diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e35d87c1..e9cc8396 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,9 +1,11 @@ name: Tests on: - - workflow_dispatch - - push - - pull_request + workflow_dispatch: + pull_request: + push: + branches: + - main jobs: test: @@ -11,7 +13,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - python-version: ['3.9', '3.10', '3.11'] + python-version: ['3.10', '3.11', '3.12', '3.13'] steps: - uses: actions/checkout@v2 diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 654cfa60..c77d8eba 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -7,19 +7,19 @@ repos: exclude: ^docs/ - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.5.0 + rev: v6.0.0 hooks: - id: trailing-whitespace - id: end-of-file-fixer exclude: ^docs/ - repo: https://github.com/asottile/add-trailing-comma - rev: v3.1.0 + rev: v3.2.0 hooks: - id: add-trailing-comma - repo: https://github.com/asottile/pyupgrade - rev: v3.15.0 + rev: v3.20.0 hooks: - id: pyupgrade diff --git a/README.md b/README.md index 3b7d15db..e2890016 100644 --- a/README.md +++ b/README.md @@ -31,54 +31,15 @@ pip install geneplexus See `example/example_run.py` for example usage of the API. +For other examples see [Package Documentation](https://pygeneplexus.readthedocs.io). + ### Command-line interface ```bash geneplexus --input_file example/input_genes.txt --output_dir example_result ``` -Full CLI options (check out with ``geneplexus --help``) - -```txt -Run the GenePlexus pipline on a input gene list. - -options: - -h, --help show this help message and exit - -i , --input_file Input gene list (.txt) file. (default: None) - -d , --gene_list_delimiter - Delimiter used in the gene list. Use 'newline' if the genes are separated - by new line, and use 'tab' if the genes are seperate by tabs. Other - generic separator are also supported, e.g. ', '. (default: newline) - -dd , --data_dir Directory in which the data are stored, if set to None, then use the - default data directory ~/.data/geneplexus (default: None) - -n , --network Network to use. The choices are: {BioGRID, STRING, IMP} (default: STRING) - -f , --feature Types of feature to use. The choices are: {SixSpeciesN2V} (default: - SixSpeciesN2V) - -s1 , --sp_trn Species of training data The choices are: {Human, Mouse, Fly, Worm, - Zebrafish, Yeast} (default: Human) - -s2 , --sp_res Species of results data The choices are: {Human, Mouse, Fly, Worm, - Zebrafish, Yeast} (default: Mouse) - -g1 , --gsc_trn Geneset collection used to generate negatives. The choices are: {GO, - Monarch, Mondo, Combined} (default: GO) - -g2 , --gsc_res Geneset collection used for model similarities. The choices are: {GO, - Monarch, Mondo, Combined} (default: GO) - -s , --small_edgelist_num_nodes - Number of nodes in the small edgelist. (default: 50) - -od , --output_dir Output directory with respect to the repo root directory. (default: - result/) - -l , --log_level Logging level. The choices are: {CRITICAL, ERROR, WARNING, INFO, DEBUG} - (default: INFO) - -ad, --auto_download_off - Turns off autodownloader which is on by default. (default: False) - -q, --quiet Suppress log messages (same as setting log_level to CRITICAL). (default: - False) - -z, --zip-output If set, then compress the output directory into a Zip file. (default: - False) - --clear-data Clear data directory and exit. (default: False) - --overwrite Overwrite existing result directory if set. (default: False) - --skip-mdl-sim Skip model similarity computation (default: False) - --skip-sm-edgelist Skip making small edgelist. (default: False) -``` +Run ``geneplexus --help`` to see full CLI options. # Dev diff --git a/docs/figures/mainfigure.png b/docs/figures/mainfigure.png index bd8180bc..85e733e5 100644 Binary files a/docs/figures/mainfigure.png and b/docs/figures/mainfigure.png differ diff --git a/docs/requirements.txt b/docs/requirements.txt index f90e9b92..b5bf23a7 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,7 +1,7 @@ -sphinx==6.2.1 # sphinx-rtd-theme 1.1.1 requires sphinx<6 and >=1.6 -sphinx_rtd_theme==1.2.2 -sphinxcontrib-napoleon==0.7 -sphinx-autodoc-typehints==1.23.0 -sphinx-copybutton==0.5.2 +sphinx>=6.2.1 # sphinx-rtd-theme 1.1.1 requires sphinx<6 and >=1.6 +sphinx_rtd_theme>=1.2.2 +sphinxcontrib-napoleon>=0.7 +sphinx-autodoc-typehints>=1.23.0 +sphinx-copybutton>=0.5.2 pillow>=6.2.0 numpy diff --git a/docs/source/conf.py b/docs/source/conf.py index 6d0d0b23..38157c7e 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -86,3 +86,12 @@ # so a file named "default.css" will overwrite the builtin "default.css". # html_static_path = ['_static'] html_static_path = [] + +# don't show properties' +def skip_all_properties(app, what, name, obj, skip, options): + # Skip anything that's a @property + if isinstance(obj, property): + return True + return skip +def setup(app): + app.connect("autodoc-skip-member", skip_all_properties) diff --git a/docs/source/geneplexus/geneplexus.rst b/docs/source/geneplexus/geneplexus.rst index ef838e40..2193fcfb 100644 --- a/docs/source/geneplexus/geneplexus.rst +++ b/docs/source/geneplexus/geneplexus.rst @@ -4,11 +4,12 @@ geneplexus.geneplexus .. autosummary:: load_genes load_negatives + cluster_input fit predict make_sim_dfs make_small_edgelist + save_class .. autoclass:: geneplexus.GenePlexus :members: - :private-members: _load_genes, _convert_to_entrez, _get_pos_and_neg_genes - :undoc-members: + :undoc-members: \ No newline at end of file diff --git a/docs/source/notes/api.rst b/docs/source/notes/api.rst index c84aa25c..651cda7c 100644 --- a/docs/source/notes/api.rst +++ b/docs/source/notes/api.rst @@ -18,8 +18,7 @@ Manual download .. code-block:: python from geneplexus.download import download_select_data - download_select_data("my_data", species = ["Human", "Mouse"]) # download just Human nd Mouse data - download_select_data("my_data") # download all data at once + download_select_data(file_loc=None, species=["Human", "Mouse"]) # download just Human nd Mouse data See :meth:`geneplexus.download.download_select_data` for more information @@ -33,16 +32,16 @@ download necessary data at initialization of the :class:`GenePlexus` object. from geneplexus import GenePlexus gp = GenePlexus(net_type="STRING", features="SixSpeciesN2V", - sp_trn = "Human", sp_res = "Human", - auto_download=True) + sp_trn="Human", sp_res="Human", + file_loc=None, auto_download=True) .. note:: The default data location is ``~/.data/geneplexus/``. You can change this by setting the ``file_loc`` argument of :class:`GenePlexus`. -Run the PyGenePlexus pipeline ------------------------------ +Loading an input gene set +------------------------- First, specify the input genes (can have mixed gene ID types, i.e. have any combination of Entrez IDs, Gene Symbols, or Ensembl IDs). @@ -58,22 +57,71 @@ Alternatively, read the gene list from file import geneplexus input_genes = geneplexus.util.read_gene_list("my_gene_list.txt") +Example running PyGenePlexus pipeline +------------------------------------- + Next, run the pipline using the :class:`GenePlexus` object. .. code-block:: python - # Instantiate GenePlexus class with default parameters - gp = geneplexus.GenePlexus() - - # Load input genes and set up positives/negatives for training - gp.load_genes(input_genes) - - # Train logistic regression model and get genome-wide gene predictions - mdl_weights, df_probs, avgps = gp.fit_and_predict() - - # Optionally, compute model similarity to models pretrained on GO and DisGeNet gene sets - df_sim, weights_dict = gp.make_sim_dfs() - - # Optionally, extract the subgraph induced by the top (50 by default) predicted genes - df_edge, isolated_genes, df_edge_sym, isolated_genes_sym = gp.make_small_edgelist() - + import geneplexus + import json + import os.path as osp + + # if you downloaded back end data, we can get a set from there to use as input + # find a set that is large enough to cluster + # replace path if didn't use deafualt file_loc + fp_base = osp.expanduser("~") + fp_full = osp.join(fp_base, + ".data", + "geneplexus", + "PreTrainedWeights__Human__Mondo__STRING__SixSpeciesN2V.json", + ) + with open (fp_full, "r") as f: + disease_gene_sets = json.load(f) + for aterm in disease_gene_sets: + num_genes = len(disease_gene_sets[aterm]["PosGenes"]) + if num_genes > 100: + input_genes = disease_gene_sets[aterm]["PosGenes"] + print(f"Disease chosen is {disease_gene_sets[aterm]['Name']}") + break + + # initialize GenePlexus + gp = geneplexus.GenePlexus(file_loc = None, + net_type = "STRING", + sp_trn = "Human", + gsc_trn = "Combined", + sp_res = ["Human", "Mouse"], + gsc_res = ["Combined", "Combined"], + input_genes = input_genes, + ) + + # do clustering and generate all results + gp.cluster_input() + gp.fit() + gp.predict() + gp.make_sim_dfs() + gp.make_small_edgelist() + + # get human gene prediction results for full input gene set model + print(gp.model_info["All-Genes"].results["Human-Combined"].df_probs) + # get similarties of trainied model to other models trained with human annotations + print(gp.model_info["All-Genes"].results["Human-Combined"].df_sim) + # get network connections for the top 50 human genes predcited using full input gene set model + print(gp.model_info["All-Genes"].results["Human-Combined"].df_edge_sym) + + # get mouse gene prediction results for cluster 1 gene set model + print(gp.model_info["Cluster-01"].results["Mouse-Combined"].df_probs) + # get similarties of trainied model to other models trained with mouse annotations + print(gp.model_info["Cluster-01"].results["Mouse-Combined"].df_sim) + # get network connections for the top 50 mouse genes predcited using cluster 1 gene set model + print(gp.model_info["Cluster-01"].results["Mouse-Combined"].df_edge_sym) + + # get log2(auPRC/prior) metric for the full input gene set model + print(gp.model_info["All-Genes"].avgps) + + # save the class. If output_dir=None will try to save to ~/.data/geneplexus_outputs/results + gp.save_class(output_dir = None) + +- For all items saved in GenePlexus class see :class:`GenePlexus`. +- For structure of save_class output see :ref:`PyGenePlexus CLI `. \ No newline at end of file diff --git a/docs/source/notes/cli.rst b/docs/source/notes/cli.rst index 04426ef9..5f642918 100644 --- a/docs/source/notes/cli.rst +++ b/docs/source/notes/cli.rst @@ -1,3 +1,5 @@ +.. _cli: + PyGenePlexus CLI ================ @@ -6,10 +8,10 @@ pipeline on a user defined geneset (a text file with gene IDs seprated by line). .. code-block:: bash - geneplexus --input_file my_gene_list.txt --output_dir my_result --data_dir my_data + geneplexus --input_file my_gene_list.txt --output_dir my_result --file_loc my_data The command above reads the gene list file ``my_gene_list.txt``, downloads the necessary -data files and saves them to the directory ``my_data/``. If ``--data_dir`` is not supplied, +data files and saves them to the directory ``my_data/``. If ``--file_loc`` is not supplied, the data files will be saved under ``~/.data/geneplexus/`` by default. Finally, all output files will be saved under ``my_result/``. @@ -19,81 +21,105 @@ output files will be saved under ``my_result/``. a number, e.g., ``my_result_1/``, to prevent overwriting. If you would like to overwrite, you can do so by specifying the ``--overwrite`` CLI option. -The output files contain the following files. - -============================= ==================================================================== -``config.yaml`` Configuration file containing the parameters used to generate the results -``df_probs.tsv`` Top predicted genes related to the input gene list. - (see :meth:`geneplexus.GenePlexus.fit_and_predict`) -``df_sim.tsv`` Similarity of model trained on user gene list to models trained on - known gene sets. (see :meth:`geneplexus.GenePlexus.make_sim_dfs`) -``df_edge.tsv`` Edgelist (Entrez ID) of subgraph induced by top predicted genes - (see :meth:`geneplexus.GenePlexus.make_small_edgelist`) -``df_edge_sym.tsv`` Edgelist (Symbol) of subgraph induced by top predicted genes - (see :meth:`geneplexus.GenePlexus.make_small_edgelist`) -``isoloated_genes.txt`` List of top predicted genes (Entrez ID) that have no edges in - the network. (see :meth:`geneplexus.GenePlexus.make_small_edgelist`) -``isoloated_genes_sym.txt`` List of top predicted genes (Symbol) that have no edges in - the network. (see :meth:`geneplexus.GenePlexus.make_small_edgelist`) -``avgps.txt`` Cross validation evaluation of the model's ability to capture the - input gene list, mesured using ``log2(auprc/prior)``. - (see :meth:`geneplexus.GenePlexus.fit_and_predict`) -``mdl_weights.txt`` The coefficients of the trained model. - (see :meth:`geneplexus.GenePlexus.fit_and_predict`) -``df_convert_out.tsv`` Table showing conversion of input genes to Entrez IDs for all networks. - (see :meth:`geneplexus.GenePlexus.load_genes`) -``df_convert_out_subset.tsv`` Table showing conversion of input genes for network used in training. - (see :meth:`geneplexus.GenePlexus.alter_validation_df`) -``pos_genes_in_net.txt`` List of positive genes used in training. - (see :meth:`geneplexus.GenePlexus._get_pos_and_neg_genes`) -``negative_genes.txt`` List of negative genes used in training. - (see :meth:`geneplexus.GenePlexus._get_pos_and_neg_genes`) -``net_genes.txt`` List of all genes in the training species network. - (see :meth:`geneplexus.GenePlexus._get_pos_and_neg_genes`) -``neutral_gene_info.json`` Information on which genes are considered neutral (i.e. not used in training). - (see :meth:`geneplexus.GenePlexus._get_pos_and_neg_genes`) -``run.log`` Run log file. -============================= ==================================================================== Full CLI options (check out with ``geneplexus --help``) .. code-block:: text - Run the GenePlexus pipline on a input gene list. + Run the GenePlexus pipline on a input gene list. options: -h, --help show this help message and exit - -i , --input_file Input gene list (.txt) file. (default: None) + -i , --input_file Input gene list file (eg. (.txt file)). (default: None) -d , --gene_list_delimiter Delimiter used in the gene list. Use 'newline' if the genes are separated - by new line, and use 'tab' if the genes are seperate by tabs. Other - generic separator are also supported, e.g. ', '. (default: newline) - -dd , --data_dir Directory in which the data are stored, if set to None, then use the + by new line, and use 'tab' if the genes are seperate by tabs. If not + newline or tab, will use argument directly, so /t, /n, , (default: + newline) + -fl , --file_loc Directory in which the data are stored, if set to None, then use the default data directory ~/.data/geneplexus (default: None) - -n , --network Network to use. The choices are: {BioGRID, STRING, IMP} (default: STRING) - -f , --feature Types of feature to use. The choices are: {SixSpeciesN2V} (default: + -n , --net_type Network to use. The choices are: {BioGRID, STRING, IMP} (default: STRING) + -f , --features Types of feature to use. The choices are: {SixSpeciesN2V} (default: SixSpeciesN2V) - -s1 , --sp_trn Species of training data The choices are: {Human, Mouse, Fly, Worm, + -st , --sp_trn Species of training data The choices are: {Human, Mouse, Fly, Worm, Zebrafish, Yeast} (default: Human) - -s2 , --sp_res Species of results data The choices are: {Human, Mouse, Fly, Worm, - Zebrafish, Yeast} (default: Mouse) - -g1 , --gsc_trn Geneset collection used to generate negatives. The choices are: {GO, - Monarch, Mondo, Combined} (default: GO) - -g2 , --gsc_res Geneset collection used for model similarities. The choices are: {GO, - Monarch, Mondo, Combined} (default: GO) - -s , --small_edgelist_num_nodes - Number of nodes in the small edgelist. (default: 50) - -od , --output_dir Output directory with respect to the repo root directory. (default: - result/) - -l , --log_level Logging level. The choices are: {CRITICAL, ERROR, WARNING, INFO, DEBUG} - (default: INFO) - -ad, --auto_download_off - Turns off autodownloader which is on by default. (default: False) - -q, --quiet Suppress log messages (same as setting log_level to CRITICAL). (default: - False) - -z, --zip-output If set, then compress the output directory into a Zip file. (default: + -sr , --sp_res Species of results data The choices are: {Human, Mouse, Fly, Worm, + Zebrafish, Yeast}. If more than one species make comma seaprated. + (default: Human) + -gt , --gsc_trn Geneset collection used to generate negatives. The choices are: {GO, + Monarch, Mondo, Combined} (default: Combined) + -gr , --gsc_res Geneset collection used for model similarities. The choices are: {GO, + Monarch, Mondo, Combined}. If more than one gsc can be comma spearated. + (default: Combined) + -in , --input_negatives + Input negative gene list (.txt) file. (default: None) + -l , --log_level Logging level. The choices are: {CRITICAL, ERROR, WARNING, INFO, DEBUG}. + Set to CRITICAL for quietest logging. (default: INFO) + -ad, --auto_download When added turns on autodownloader which is off by default. (default: False) - --clear-data Clear data directory and exit. (default: False) - --overwrite Overwrite existing result directory if set. (default: False) - --skip-mdl-sim Skip model similarity computation (default: False) - --skip-sm-edgelist Skip making small edgelist. (default: False) \ No newline at end of file + --clear-data When added will allow user to interactively clear file_loc data and exit. + (default: False) + --do_clustering When added cluster_input() function will be run. (default: False) + --skip-mdl-sim When added make_sim_dfs() will not be run (default: False) + --skip-sm-edgelist When added make_small_edgelist() will not be run (default: False) + -cm , --clust_method + Sets the clustering method in cluster_input(). The choices are: {louvain, + domino} (default: louvain) + -cmin , --clust_min_size + Sets the minimum size of clusters allowed in cluster_input(). (default: 5) + -cw, --clust_weighted + When added will set clust_weight argument to False in cluster_input(). + (default: True) + -ck , --clust_kwargs + Sets the clustering keyword arguments in cluster_input(). (default: + {'louvain_max_size': 70, 'louvain_max_tries': 3, 'louvain_res': 1, + 'louvain_seed': 123, 'domino_res': 1, 'domino_slice_thresh': 0.3, + 'domino_n_steps': 20, 'domino_module_threshold': 0.05, 'domino_seed': + 123}) + -lk , --logreg_kwargs + Set the logistic regression keyword arguments in fit(). (default: + {'max_iter': 10000, 'solver': 'lbfgs', 'penalty': 'l2', 'C': 1.0}) + -s, --scale When added, will set scale to True in fit(). See docs for more info of + when this is good to do. (default: False) + -mnp , --min_num_pos + Minimum umber of genes needed to fit a model in fit(). (default: 5) + -mnpcv , --min_num_pos_cv + Minumum number of genes needed to do cross validation in fit(). (default: + 15) + -nf , --num_folds Number of folds to do for cross validation in fit(). (default: 3) + -nv , --null_val Value to use when CV can't be done in fit(). (default: None) + -rs , --random_state + Random state value to use in fit(). (default: 0) + -cv, --cross_validate + When added, will set cross validate to False in fit(). (default: True) + -nn , --num_nodes Number of nodes in make_small_edgelist(). (default: 50) + -od , --output_dir Output directory with respect to the repo root directory used in + save_class(). if set to None, then use the default output directory + ~/.data/geneplexus_outputs/results (default: None) + -svt , --save_type Which file saving method to use in save_class(). The choices are: {all, + results_only} (default: all) + -z, --zip-output When added, zip_ouput is set to True in save_class(). (default: False) + -o, --overwrite When added, overwrite is set to True in save_class(). (default: False) + + +The output file structure is as follows. This is for `--save_type all`, if `--save_type results_only` is +used then only select files will be saved. + +* ``my_result/`` Output directory + + * ``geneplexus.log`` The logger messages. + * ``top_level_config.json`` Contains configuration infomration for GenePlexus class. + * ``df_convert_out.tsv`` Table showing conversion of input genes to Entrez IDs for all networks. (see :meth:`geneplexus.GenePlexus.load_genes`) + * ``Model Directories`` Folders containing information for each of the trained models. `All-Genes` for full input gene list and `Cluster-N` for each cluster if clustering was performed. + + * ``clf.joblib`` Serialized version of the trained model. + * ``model_level_config.json`` Contains configuration information specific to each model including evaluation metrics and positive, megative and neutral genes, and model weights. + * ``df_convert_out_for_model.tsv`` Table showing conversion of input genes for each model. (see :meth:`geneplexus.GenePlexus.fit`) + * ``Result Directories`` Folders containing results for each ``sp_res`` and ``gsc_res`` combination + + * ``df_probs.tsv`` Top predicted genes related to the input gene list. (see :meth:`geneplexus.GenePlexus.predict`) + * ``df_sim.tsv`` Similarity of model trained on user gene list to models trained on known gene sets. (see :meth:`geneplexus.GenePlexus.make_sim_dfs`) + * ``df_edge.tsv`` Edgelist (Entrez ID) of subgraph induced by top predicted genes. (see :meth:`geneplexus.GenePlexus.make_small_edgelist`) + * ``df_edge_sym.tsv`` Edgelist (Symbol) of subgraph induced by top predicted genes. (see :meth:`geneplexus.GenePlexus.make_small_edgelist`) + * ``isoloated_genes.txt`` List of top predicted genes (Entrez ID) that have no edges in the network. (see :meth:`geneplexus.GenePlexus.make_small_edgelist`) + * ``isoloated_genes_sym.txt`` List of top predicted genes (Symbol) that have no edges in the network. (see :meth:`geneplexus.GenePlexus.make_small_edgelist`) diff --git a/docs/source/notes/r.rst b/docs/source/notes/r.rst index daefe729..3a4aed63 100644 --- a/docs/source/notes/r.rst +++ b/docs/source/notes/r.rst @@ -17,5 +17,8 @@ PyGenePlexus can be run in R using the ``reticulate`` pacakge. "MKKS", "MKS1", "TRIM32", "TTC8", "WDPCP") # Note: Below need to use $ and not . to access pacakge methods gp$load_genes(input_genes) - gp$fit_and_predict() - write.csv(gp$df_probs,file="probs.csv") \ No newline at end of file + gp$fit() + gp$predict() + df_probs <- gp$model_info[["All-Genes"]]$results[["Human-Combined"]]$df_probs + + write.csv(df_probs,file="probs.csv") \ No newline at end of file diff --git a/example/example_download.py b/example/example_download.py index d21e11d2..ba007086 100755 --- a/example/example_download.py +++ b/example/example_download.py @@ -25,6 +25,6 @@ """ geneplexus.download.download_select_data( - datadir, + file_loc=datadir, species=["Human", "Mouse", "Fly", "Worm", "Zebrafish", "Yeast"], ) diff --git a/example/example_run.py b/example/example_run.py index b868e011..12d6d4af 100755 --- a/example/example_run.py +++ b/example/example_run.py @@ -8,26 +8,194 @@ import geneplexus # The first step is for a user to supply a gene list +# bardet biedl syndrome gene set input_genes = [ - "ARL6", - "BBS1", - "BBS10", - "BBS12", - "BBS2", - "BBS4", - "BBS5", - "BBS7", - "BBS9", - "CCDC28B", - "CEP290", - "KIF7", - "MKKS", - "MKS1", - "TRIM32", - "TTC8", - "WDPCP", + "6457", + "7037", + "57403", + "3134", + "50807", + "93343", + "11311", + "8766", + "5584", + "137492", + "998", + "30011", + "5337", + "3312", + "155", + "10015", + "55738", + "57132", + "153", + "116986", + "163", + "11267", + "1950", + "3559", + "6714", + "84249", + "2066", + "29924", + "1213", + "30846", + "84612", + "440073", + "2060", + "3303", + "3561", + "9101", + "51160", + "56904", + "3304", + "23527", + "5878", + "3560", + "7189", + "3949", + "92421", + "26286", + "5979", + "9922", + "11031", + "116983", + "2261", + "9230", + "5867", + "64145", + "867", + "57154", + "84313", + "3577", + "116987", + "10617", + "1436", + "200576", + "83737", + "23396", + "3310", + "5590", + "3133", + "382", + "6456", + "30845", + "868", + "2264", + "5868", + "84440", + "116984", + "5869", + "23624", + "22841", + "161", + "23096", + "5338", + "652614", + "84552", + "51028", + "55616", + "9829", + "3815", + "29082", + "9135", + "23362", + "9146", + "128866", + "156", + "8218", + "89853", + "154", + "64744", + "9525", + "84364", + "9727", + "23550", + "8853", + "1956", + "8395", + "6455", + "64411", + "5156", + "51100", + "8027", + "408", + "3305", + "51534", + "2868", + "9744", + "3106", + "51652", + "3265", + "27243", + "10938", + "60682", + "157", + "26056", + "10059", + "2321", + "80230", + "1173", + "1175", + "160", + "3306", + "3135", + "1234", + "2149", + "8411", + "3791", + "51510", + "23327", + "409", + "11059", + "3579", + "27183", + "8396", + "1601", + "1211", + "3480", + "9815", + "26119", + "64750", + "26052", + "4914", + "25978", + "8394", + "1212", + "30844", + "131890", + "79720", + "7251", + "50855", + "116985", + "5662", + "2870", + "10193", + "1785", + "155382", + "652799", + "22905", + "3105", + "55048", + "10254", + "55040", + "7852", + "1759", + "4193", + "2869", + "2065", + "6011", + "4734", + "28964", + "4233", + "80223", + "79643", + "3107", + "2263", + "56288", ] + # Set up directories homedir = pathlib.Path(__file__).absolute().parent datadir = osp.join(homedir, "data") @@ -43,33 +211,42 @@ # Run through the pipeline # First initialize the geneplexus object -myclass = geneplexus.GenePlexus( +gp = geneplexus.GenePlexus( file_loc=datadir, net_type="STRING", features="SixSpeciesN2V", sp_trn="Human", - sp_res="Mouse", + sp_res=["Human", "Mouse"], gsc_trn="Combined", - gsc_res="Combined", + gsc_res=["Combined", "Combined"], ) # Load the input genes into the class and set up positives/negatives -myclass.load_genes(input_genes) +gp.load_genes(input_genes) -# This trains the model and predcits on every gene in the network -mdl_weights, df_probs, avgps = myclass.fit_and_predict() +# Run the steps of the pipeline, including the option clustering step +gp.cluster_input() +gp.fit() +gp.predict() +gp.make_sim_dfs() +gp.make_small_edgelist() -# The makes the tables that have the model weight similarity to other models -# trained on known GO and DisGeNet sets -df_sim, sim_weights = myclass.make_sim_dfs() +# get human gene prediction results for full input gene set model +print(gp.model_info["All-Genes"].results["Human-Combined"].df_probs) +# get similarties of trainied model to other models trained with human annotations +print(gp.model_info["All-Genes"].results["Human-Combined"].df_sim) +# get network connections for the top 50 human genes predcited using full input gene set model +print(gp.model_info["All-Genes"].results["Human-Combined"].df_edge_sym) -# Return an edgelist -df_edge, isolated_genes, df_edge_sym, isolated_genes_sym = myclass.make_small_edgelist(num_nodes=50) +# get mouse gene prediction results for cluster 1 gene set model +print(gp.model_info["Cluster-01"].results["Mouse-Combined"].df_probs) +# get similarties of trainied model to other models trained with mouse annotations +print(gp.model_info["Cluster-01"].results["Mouse-Combined"].df_sim) +# get network connections for the top 50 mouse genes predcited using cluster 1 gene set model +print(gp.model_info["Cluster-01"].results["Mouse-Combined"].df_edge_sym) -# Return the validation datframwe for just the network that was used in the pipeline -df_convert_out_subset, positive_genes = myclass.alter_validation_df() +# get log2(auPRC/prior) metric for the full input gene set model +print(gp.model_info["All-Genes"].avgps) -# Save a few things for checking -df_probs.to_csv(osp.join(outdir, "df_probs.tsv"), sep="\t", header=True, index=False) -df_sim.to_csv(osp.join(outdir, "df_sim_GO.tsv"), sep="\t", header=True, index=False) -df_convert_out_subset.to_csv(osp.join(outdir, "df_convert_out_subset.tsv"), sep="\t", header=True, index=False) +# save the class. If output_dir=None will try to save to ~/.data/geneplexus_outputs/results +gp.save_class(output_dir=outdir) diff --git a/geneplexus/__init__.py b/geneplexus/__init__.py index 5daf68e5..e361305d 100644 --- a/geneplexus/__init__.py +++ b/geneplexus/__init__.py @@ -30,10 +30,9 @@ #. Genome-wide prediction of how **functionally similar** a gene is to the \ input gene list. Evaluation of the model is provided by performing \ k-fold cross validation. The default is 3-fold cross validation when a \ -minimum of 15 input genes are supplied. These parameters can be changed when accessing \ -the Python class. PyGenePlexus does not enforce a minimum or maximum number \ +minimum of 15 input genes are supplied. PyGenePlexus does not enforce a minimum or maximum number \ of genes, and we note evaluations of the model were carried out for gene sets \ -ranging between 5 and 500 genes. See :meth:`fit_and_predict` +ranging between 10 and 500 genes. See :meth:`fit` and :meth:`predict` #. (Optional) Interpretability of the model is provided by comparing the \ model trained on the user gene set to models pretrained on 1000's of known \ gene sets from [GO]_ bioloigcal proceses, [Monarch]_ phenotypes and [Mondo]_ diseases. See \ @@ -45,6 +44,7 @@ **Links to other GenePlexus products** + * `GenePlexus for post-omics and post-GWAS Data (ModGenePlexus) `_ * `Cross Species GenePlexus Paper (GenePlexusZoo) `_ * `GenePlexus Web Server `_ * `GenePlexus Web Server Paper \ @@ -103,18 +103,21 @@ gsc_trn="Combined", gsc_res="Combined", input_genes=input_genes, auto_download=True, log_level="INFO") - df_probs = gp.fit_and_predict()[1] + gp.fit() + gp.predict() + df_probs = gp.model_info["All-Genes"].results["Human-Combined"].df_probs print(df_probs.iloc[:10]) .. note:: - v2 of PyGenePlexus is signifcanlty different than v1 and uses - a different set of backend data, which only includes human data. - For information of that version see + `v3` of PyGenePlexus is signifcanlty different than `v2` and `v1` + Documentation of older stable releases can be found out + https://pygeneplexus.readthedocs.io/en/v2.0.4/ or https://pygeneplexus.readthedocs.io/en/v1.0.1/ """ + from ._config import config # noreorder from . import download from . import util diff --git a/geneplexus/_clustering/louvain.py b/geneplexus/_clustering/louvain.py index ea493de8..0c743d7d 100755 --- a/geneplexus/_clustering/louvain.py +++ b/geneplexus/_clustering/louvain.py @@ -14,7 +14,6 @@ def louvain_main( louvain_seed = kwargs["louvain_seed"] for num_try in range(louvain_max_tries): - ######## logger.info(f"On clustering try {clus_try + 1}") if num_try == 0: final_clusters, large_clusters = louvain_cluster( df_edge, @@ -39,7 +38,8 @@ def louvain_main( ) if len(large_clusters) == 0: break - final_clusters = final_clusters + large_clusters # add back in large clusters if couldn't be made smaller + # add back in large clusters if couldn't be made smaller + final_clusters = final_clusters + large_clusters return final_clusters diff --git a/geneplexus/_config/config.py b/geneplexus/_config/config.py index 20545486..b273bce0 100644 --- a/geneplexus/_config/config.py +++ b/geneplexus/_config/config.py @@ -21,21 +21,26 @@ CONFIG_PATH = pathlib.Path(__file__).parent.absolute() DATA_FILENAMES_PATH = osp.join(CONFIG_PATH, "data_filenames.txt") -LOG_LEVELS = ["CRITICAL", "ERROR", "WARNING", "INFO", "DEBUG"] - +# these used in F-strings and lists +ALL_LOG_LEVELS = ["CRITICAL", "ERROR", "WARNING", "INFO", "DEBUG"] ALL_NETWORKS = ["BioGRID", "STRING", "IMP"] ALL_FEATURES = ["SixSpeciesN2V"] ALL_GSCS = ["GO", "Monarch", "Mondo", "Combined"] ALL_SPECIES = ["Human", "Mouse", "Fly", "Worm", "Zebrafish", "Yeast"] - -DEFAULT_LOGREG_KWARGS: Dict[str, Any] = { - "max_iter": 10000, - "solver": "lbfgs", - "penalty": "l2", - "C": 1.0, -} - +ALL_CLUSTERING = ["louvain", "domino"] +ALL_SAVES = ["all", "results_only"] +# these are used for setting types in functions +# here seelction is for the res which can be different than trn LOG_LEVEL_TYPE = Literal["CRITICAL", "ERROR", "WARNING", "INFO", "DEBUG"] +NET_TYPE = Literal["BioGRID", "STRING", "IMP"] +FEATURE_TYPE = Literal["SixSpeciesN2V"] +GSC_TYPE = Literal["GO", "Monarch", "Mondo", "Combined"] +SPECIES_TYPE = Literal["Human", "Mouse", "Fly", "Worm", "Zebrafish", "Yeast"] +CLUSTERING_TYPE = Literal["louvain", "domino"] +SAVE_TYPE = Literal["all", "results_only"] +SPECIES_SELECTION_TYPE = Union[Literal["All"], SPECIES_TYPE, List[SPECIES_TYPE]] +GSC_SELECTION_TYPE = Union[GSC_TYPE, List[GSC_TYPE]] + ID_SRC_TYPE = Literal["ENSG", "ENSP", "ENST", "Entrez", "Symbol"] ID_DST_TYPE = Literal["Entrez", "ENSG", "Name", "Symbol"] @@ -49,15 +54,6 @@ ("Entrez", "Symbol"), } -NET_TYPE = Literal["BioGRID", "STRING", "IMP"] -FEATURE_TYPE = Literal["SixSpeciesN2V"] -GSC_TYPE = Literal["GO", "Monarch", "Mondo", "Combined"] -SPECIES_TYPE = Literal["Human", "Mouse", "Fly", "Worm", "Zebrafish", "Yeast"] - -NET_SELECTION_TYPE = Union[Literal["All"], NET_TYPE, List[NET_TYPE]] -FEATURE_SELECTION_TYPE = Union[Literal["All"], FEATURE_TYPE, List[FEATURE_TYPE]] -SPECIES_SELECTION_TYPE = Union[Literal["All"], SPECIES_TYPE, List[SPECIES_TYPE]] -GSC_SELECTION_TYPE = Union[GSC_TYPE, List[GSC_TYPE]] # slightly different than the others ID_CONVERSION_MAP_TYPE = Dict[str, List[str]] GSC_DATA_TYPE = Dict[str, Dict[Literal["Name", "Genes"], Union[str, np.ndarray]]] @@ -73,10 +69,64 @@ "Fly": "Combined - Gene Set Contexts Used [GO]", } +# Note here, boolean arguments need to be changed in CLI manually if changed here +DEFAULT_PARAMETERS = { + "file_loc": None, + "net_type": "STRING", + "features": "SixSpeciesN2V", + "sp_trn": "Human", + "sp_res": "Human", + "gsc_trn": "Combined", + "gsc_res": "Combined", + "input_genes": None, + "input_negatives": None, + "auto_download": False, + "log_level": "INFO", + "log_to_file": False, + "clust_method": "louvain", + "clust_min_size": 5, + "clust_weighted": True, + "scale": False, + "min_num_pos": 5, + "min_num_pos_cv": 15, + "num_folds": 3, + "null_val": None, + "random_state": 0, + "cross_validate": True, + "num_nodes": 50, + "output_dir": None, + "save_type": "all", + "zip_output": False, + "overwrite": False, +} + +DEFAULT_LOUVAIN_KWARGS = { + "louvain_max_size": 70, + "louvain_max_tries": 3, + "louvain_res": 1, + "louvain_seed": 123, +} + +DEFAULT_DOMINO_KWARGS = { + "domino_res": 1, + "domino_slice_thresh": 0.3, + "domino_n_steps": 20, + "domino_module_threshold": 0.05, + "domino_seed": 123, +} + +DEFAULT_LOGREG_KWARGS: Dict[str, Any] = { + "max_iter": 10000, + "solver": "lbfgs", + "penalty": "l2", + "C": 1.0, +} + __all__ = [ "URL_DICT", "CONFIG_PATH", "DATA_FILENAMES_PATH", + "ALL_LOG_LEVELS", "ALL_NETWORKS", "ALL_FEATURES", "ALL_GSCS", @@ -89,12 +139,16 @@ "FEATURE_TYPE", "GSC_TYPE", "SPECIES_TYPE", - "NET_SELECTION_TYPE", - "FEATURE_SELECTION_TYPE", - "GSC_SELECTION_TYPE", + "CLUSTERING_TYPE", + "SAVE_TYPE", "SPECIES_SELECTION_TYPE", + "GSC_SELECTION_TYPE", "ID_CONVERSION_MAP_TYPE", "GSC_DATA_TYPE", "PRETRAINED_DATA_TYPE", "COMBINED_CONTEXTS", + "DEFAULT_PARAMETERS", + "DEFAULT_LOUVAIN_KWARGS", + "DEFAULT_DOMINO_KWARGS", + "DEFAULT_LOGREG_KWARG", ] diff --git a/geneplexus/_geneplexus.py b/geneplexus/_geneplexus.py index 79835d3a..ed3f2726 100644 --- a/geneplexus/_geneplexus.py +++ b/geneplexus/_geneplexus.py @@ -196,19 +196,19 @@ def _run_sl( pos_genes_in_net, negative_genes, net_genes, - logreg_kwargs: Optional[Dict[str, Any]] = None, - min_num_pos_cv: int = 15, - num_folds: int = 3, - null_val: float = None, - random_state: Optional[int] = 0, - cross_validate: bool = True, - scale: bool = False, + logreg_kwargs, + min_num_pos_cv, + num_folds, + null_val, + random_state, + cross_validate, + scale, ): - if logreg_kwargs is None: - logreg_kwargs = DEFAULT_LOGREG_KWARGS - logger.info(f"Using default logistic regression settings: {logreg_kwargs}") + logreg_kwargs_defaults = DEFAULT_LOGREG_KWARGS + if isinstance(logreg_kwargs, dict): + logreg_kwargs_defaults.update(logreg_kwargs) else: - logger.info(f"Using custom logistic regression settings: {logreg_kwargs}") + logger.warning(f"logreg_kwargs not a dictionary or None, using defaults") # train the model pos_inds = [np.where(net_genes == agene)[0][0] for agene in pos_genes_in_net] neg_inds = [np.where(net_genes == agene)[0][0] for agene in negative_genes] @@ -218,7 +218,7 @@ def _run_sl( data = std_scale.transform(data) Xdata = data[pos_inds + neg_inds, :] ydata = np.array([1] * len(pos_inds) + [0] * len(neg_inds)) - clf = LogisticRegression(**logreg_kwargs) + clf = LogisticRegression(**logreg_kwargs_defaults) clf.fit(Xdata, ydata) mdl_weights = np.squeeze(clf.coef_) # validate the model @@ -236,7 +236,7 @@ def _run_sl( avgps = [] skf = StratifiedKFold(n_splits=num_folds, shuffle=True, random_state=random_state) for trn_inds, tst_inds in skf.split(Xdata, ydata): - clf_cv = LogisticRegression(**logreg_kwargs) + clf_cv = LogisticRegression(**logreg_kwargs_defaults) clf_cv.fit(Xdata[trn_inds], ydata[trn_inds]) probs_cv = clf_cv.predict_proba(Xdata[tst_inds])[:, 1] avgp = average_precision_score(ydata[tst_inds], probs_cv) @@ -248,9 +248,9 @@ def _run_sl( logger.info(f"{np.median(avgps)=:.2f}") logger.info(f"{np.mean(avgps)=:.2f}") if scale: - return mdl_weights, avgps, scale, clf, std_scale + return mdl_weights, avgps, clf, std_scale else: - return mdl_weights, avgps, scale, clf, None + return mdl_weights, avgps, clf, None def _get_predictions( @@ -300,7 +300,7 @@ def _make_prob_df(file_loc, sp_trn, sp_res, net_type, probs, pos_genes_in_net, n df_probs = df_probs.astype({"Entrez": str, "Probability": float}) df_probs = df_probs.sort_values(by=["Probability"], ascending=False).reset_index(drop=True) z = zscore(df_probs["Probability"].to_numpy()) - p = norm.sf(abs(z)) + p = norm.sf(z) rejects, padjusts, b, c = multipletests(p, method="bonferroni", is_sorted=True) df_probs["Z-score"] = z df_probs["P-adjusted"] = padjusts @@ -335,7 +335,7 @@ def _make_sim_dfs(file_loc, mdl_weights, species, gsc, net_type, features): by=["Similarity"], ascending=False, ) - p = norm.sf(abs(df_sim["Z-score"].to_numpy())) + p = norm.sf(df_sim["Z-score"].to_numpy()) rejects, padjusts, b, c = multipletests(p, method="bonferroni", is_sorted=True) df_sim["P-adjusted"] = padjusts df_sim["Rank"] = rankdata(-1 * (df_sim["Similarity"].to_numpy() + 1e-9), method="min") @@ -375,18 +375,17 @@ def _alter_validation_df(df_convert_out, pos_genes_for_model, net_type): return df_convert_out_subset -def _save_class(gp, outdir, save_type, zip_output, overwrite): - outdir = util.suffix_dir(outdir, overwrite=overwrite) - if zip_output: - zip_outpath = util.suffix_zip(f"{outdir}.zip", overwrite=overwrite) - util._save_results(gp, outdir, save_type) +def _save_class(gp, output_dir, save_type, zip_output, overwrite): + output_dir = util.suffix_dir(output_dir, overwrite=overwrite) + util._save_results(gp, output_dir, save_type) # Optionally zip the result directory if zip_output: - outpath = pathlib.Path(outdir) + outpath = pathlib.Path(output_dir) + zip_outpath = f"{outpath}.zip" logger.info("Zipping output files") shutil.make_archive(zip_outpath[:-4], "zip", outpath.parent, outpath.name) - shutil.rmtree(outdir) - logger.info(f"Removing temporary directory {outdir}") + shutil.rmtree(output_dir) + logger.info(f"Removing temporary directory {output_dir}") logger.info(f"Done! Results saved to {zip_outpath}") else: - logger.info(f"Done! Results saved to {outdir}") + logger.info(f"Done! Results saved to {output_dir}") diff --git a/geneplexus/cli.py b/geneplexus/cli.py index 3ab04f8c..77231697 100644 --- a/geneplexus/cli.py +++ b/geneplexus/cli.py @@ -35,7 +35,7 @@ def parse_args() -> argparse.Namespace: "--input_file", metavar="", required=True, - help="Input gene list (.txt) file.", + help="Input gene list file (eg. (.txt file)).", ) parser.add_argument( @@ -49,9 +49,9 @@ def parse_args() -> argparse.Namespace: ) parser.add_argument( - "-dd", - "--data_dir", - default=None, + "-fl", + "--file_loc", + default=config.DEFAULT_PARAMETERS["file_loc"], metavar="", help="Directory in which the data are stored, if set to None, then use " "the default data directory ~/.data/geneplexus", @@ -59,260 +59,273 @@ def parse_args() -> argparse.Namespace: parser.add_argument( "-n", - "--network", - default="STRING", + "--net_type", + default=config.DEFAULT_PARAMETERS["net_type"], metavar="", help=f"Network to use. {format_choices(config.ALL_NETWORKS)}", ) parser.add_argument( "-f", - "--feature", - default="SixSpeciesN2V", + "--features", + default=config.DEFAULT_PARAMETERS["features"], metavar="", help=f"Types of feature to use. {format_choices(config.ALL_FEATURES)}", ) parser.add_argument( - "-s1", + "-st", "--sp_trn", - default="Human", + default=config.DEFAULT_PARAMETERS["sp_trn"], metavar="", help=f"Species of training data {format_choices(config.ALL_SPECIES)}", ) parser.add_argument( - "-s2", + "-sr", "--sp_res", - default="Mouse", + default=config.DEFAULT_PARAMETERS["sp_res"], metavar="", help=f"Species of results data {format_choices(config.ALL_SPECIES)}. " "If more than one species make comma seaprated.", ) parser.add_argument( - "-g1", + "-gt", "--gsc_trn", - default="GO", + default=config.DEFAULT_PARAMETERS["gsc_trn"], metavar="", help=f"Geneset collection used to generate negatives. {format_choices(config.ALL_GSCS)}", ) parser.add_argument( - "-g2", + "-gr", "--gsc_res", - default="GO", + default=config.DEFAULT_PARAMETERS["gsc_res"], metavar="", help=f"Geneset collection used for model similarities. {format_choices(config.ALL_GSCS)}. " "If more than one gsc can be comma spearated.", ) - parser.add_argument( - "-od", - "--output_dir", - default="result/", - metavar="", - help="Output directory with respect to the repo root directory.", - ) - parser.add_argument( "-in", "--input_negatives", - default=None, + default=config.DEFAULT_PARAMETERS["input_negatives"], metavar="", help="Input negative gene list (.txt) file.", ) - ### pipeline control arguements ### + parser.add_argument( + "-l", + "--log_level", + default=config.DEFAULT_PARAMETERS["log_level"], + metavar="", + help=f"Logging level. {format_choices(config.ALL_LOG_LEVELS)}. Set to CRITICAL for quietest logging.", + ) parser.add_argument( - "-ado", - "--auto_download_off", + "-ad", + "--auto_download", action="store_true", - help="Turns off autodownloader which is on by default.", + help="When added turns on autodownloader which is off by default.", ) + ### pipeline control arguements ### + parser.add_argument( "--clear-data", action="store_true", - help="Clear data directory and exit.", + help="When added will allow user to interactively clear file_loc data and exit.", ) parser.add_argument( "--do_clustering", action="store_true", - help="Do clustering step.", + help="When added cluster_input() function will be run.", ) parser.add_argument( "--skip-mdl-sim", action="store_true", - help="Skip model similarity computation", + help="When added make_sim_dfs() will not be run", ) parser.add_argument( "--skip-sm-edgelist", action="store_true", - help="Skip making small edgelist.", + help="When added make_small_edgelist() will not be run", ) - ### Class methods arguements ### + ### class method arguements ### parser.add_argument( - "-l", - "--log_level", - default="INFO", + "-cm", + "--clust_method", + default=config.DEFAULT_PARAMETERS["clust_method"], metavar="", - help=f"Logging level. {format_choices(config.LOG_LEVELS)}", - ) - - parser.add_argument( - "-q", - "--quiet", - action="store_true", - help="Suppress log messages (same as setting log_level to CRITICAL).", + type=str, + help=f"Sets the clustering method in cluster_input(). {format_choices(config.ALL_CLUSTERING)}", ) parser.add_argument( "-cmin", "--clust_min_size", - default=5, - metavar="", - type=int, - help="Minimum size of clusters allowed.", - ) - - parser.add_argument( - "-cmax", - "--clust_max_size", - default=70, + default=config.DEFAULT_PARAMETERS["clust_min_size"], metavar="", type=int, - help="Maximum size of clusters allowed.", + help="Sets the minimum size of clusters allowed in cluster_input().", ) parser.add_argument( - "-ctries", - "--clust_max_tries", - default=3, - metavar="", - type=int, - help="Number of times to try to sub-cluster large clusters.", - ) - - parser.add_argument( - "-cres", - "--clust_res", - default=1, - metavar="", - type=int, - help="Cluster resolution parameter.", - ) - - parser.add_argument( - "-cweight", - "--clust_unweighted", + "-cw", + "--clust_weighted", action="store_false", - help="If set, will not use cluster weights.", + help="When added will set clust_weight argument to False in cluster_input().", ) parser.add_argument( - "-flk", - "--fit_logreg_kwargs", - default=None, + "-ck", + "--clust_kwargs", + default=config.DEFAULT_LOUVAIN_KWARGS | config.DEFAULT_DOMINO_KWARGS, metavar="", type=json.loads, - help="Logistic regression leyword arguments.", + help="Sets the clustering keyword arguments in cluster_input().", + ) + + # parser.add_argument( + # "-cmax", + # "--clust_max_size", + # default=70, + # metavar="", + # type=int, + # help="Maximum size of clusters allowed.", + # ) + + # parser.add_argument( + # "-ctries", + # "--clust_max_tries", + # default=3, + # metavar="", + # type=int, + # help="Number of times to try to sub-cluster large clusters.", + # ) + + # parser.add_argument( + # "-cres", + # "--clust_res", + # default=1, + # metavar="", + # type=int, + # help="Cluster resolution parameter.", + # ) + + parser.add_argument( + "-lk", + "--logreg_kwargs", + default=config.DEFAULT_LOGREG_KWARGS, + metavar="", + type=json.loads, + help="Set the logistic regression keyword arguments in fit().", ) parser.add_argument( - "-fs", - "--fit_scale", + "-s", + "--scale", action="store_true", - help="If set, will scale input data. See docs for more info of when this is good to do.", + help="When added, will set scale to True in fit(). See docs for more info of when this is good to do.", ) parser.add_argument( - "-fmnp", - "--fit_min_num_pos", - default=5, + "-mnp", + "--min_num_pos", + default=config.DEFAULT_PARAMETERS["min_num_pos"], metavar="", type=int, - help="Number of genes needed to fit a model.", + help="Minimum umber of genes needed to fit a model in fit().", ) parser.add_argument( - "-fmnpcv", - "--fit_min_num_pos_cv", - default=15, + "-mnpcv", + "--min_num_pos_cv", + default=config.DEFAULT_PARAMETERS["min_num_pos_cv"], metavar="", type=int, - help="Number of genes needed to do cross validation.", + help="Minumum number of genes needed to do cross validation in fit().", ) parser.add_argument( - "-fnf", - "--fit_num_folds", - default=3, + "-nf", + "--num_folds", + default=config.DEFAULT_PARAMETERS["num_folds"], metavar="", type=int, - help="Number of genes needed to do cross validation.", + help="Number of folds to do for cross validation in fit().", ) parser.add_argument( - "-fnv", - "--fit_null_val", - default=None, + "-nv", + "--null_val", + default=config.DEFAULT_PARAMETERS["null_val"], metavar="", type=float, - help="Value to use when CV can't be done.", + help="Value to use when CV can't be done in fit().", ) parser.add_argument( - "-frs", - "--fit_random_state", - default=0, + "-rs", + "--random_state", + default=config.DEFAULT_PARAMETERS["random_state"], metavar="", type=int, - help="Random state value to use when fitting.", + help="Random state value to use in fit().", ) parser.add_argument( - "-fscv", - "--fit_skip_cross_validate", + "-cv", + "--cross_validate", action="store_false", - help="If set, will not try to do CV.", + help="When added, will set cross validate to False in fit().", ) parser.add_argument( - "-s", - "--small_edgelist_num_nodes", - default=50, + "-nn", + "--num_nodes", + default=config.DEFAULT_PARAMETERS["num_nodes"], metavar="", type=int, - help="Number of nodes in the small edgelist.", + help="Number of nodes in make_small_edgelist().", ) parser.add_argument( - "-st", + "-od", + "--output_dir", + default=config.DEFAULT_PARAMETERS["output_dir"], + metavar="", + help="Output directory with respect to the repo root directory used in save_class(). " + "if set to None, then use the default output directory ~/.data/geneplexus_outputs/results", + ) + + parser.add_argument( + "-svt", "--save_type", - default="all", + default=config.DEFAULT_PARAMETERS["save_type"], metavar="", type=str, - help="Which files to save.", + help=f"Which file saving method to use in save_class(). {format_choices(config.ALL_SAVES)}", ) parser.add_argument( - "--overwrite", + "-z", + "--zip-output", action="store_true", - help="Overwrite existing result directory if set.", + help="When added, zip_ouput is set to True in save_class().", ) parser.add_argument( - "-z", - "--zip-output", + "-o", + "--overwrite", action="store_true", - help="If set, then compress the output directory into a Zip file.", + help="When added, overwrite is set to True in save_class().", ) return parser.parse_args() @@ -321,24 +334,23 @@ def parse_args() -> argparse.Namespace: def clear_data(args): """Clear data path. - If data_dir is default, then remove directly. Otherwise, prompt for + If file_loc is default, then remove directly. Otherwise, prompt for acknowledgement. """ if args.clear_data: - if args.data_dir is None: + if args.file_loc is None: shutil.rmtree(GenePlexus(log_level="CRITICAL").file_loc) else: - data_dir = normexpand(args.data_dir) - if input("Remove directory {data_dir}? [y/n]") == "y": - shutil.rmtree(data_dir) + file_loc = normexpand(args.file_loc) + if input("Remove directory {file_loc}? [y/n]") == "y": + shutil.rmtree(file_loc) exit() def main(): """Run the full GenePlexus pipeline.""" args = parse_args() - log_level = "CRITICAL" if args.quiet else args.log_level clear_data(args) # data cleared if args.clear_data is true @@ -349,15 +361,15 @@ def main(): # Create geneplexus object and auto download data files gp = GenePlexus( - file_loc=args.data_dir, - net_type=args.network, - features=args.feature, + file_loc=args.file_loc, + net_type=args.net_type, + features=args.features, sp_trn=args.sp_trn, sp_res=args.sp_res, gsc_trn=args.gsc_trn, gsc_res=args.gsc_res, - auto_download=args.auto_download_off, - log_level=log_level, + auto_download=args.auto_download, + log_level=args.log_level, log_to_file=True, ) @@ -371,21 +383,20 @@ def main(): # run the pipeline if args.do_clustering: gp.cluster_input( + clust_method=args.clust_method, clust_min_size=args.clust_min_size, - clust_max_size=args.clust_max_size, - clust_max_tries=args.clust_max_tries, - clust_res=args.clust_res, - clust_weighted=args.clust_unweighted, + clust_weighted=args.clust_weighted, + clust_kwargs=args.clust_kwargs, ) gp.fit( - logreg_kwargs=args.fit_logreg_kwargs, - scale=args.fit_scale, - min_num_pos=args.fit_min_num_pos, - min_num_pos_cv=args.fit_min_num_pos_cv, - num_folds=args.fit_num_folds, - null_val=args.fit_null_val, - random_state=args.fit_random_state, - cross_validate=args.fit_skip_cross_validate, + logreg_kwargs=args.logreg_kwargs, + scale=args.scale, + min_num_pos=args.min_num_pos, + min_num_pos_cv=args.min_num_pos_cv, + num_folds=args.num_folds, + null_val=args.null_val, + random_state=args.random_state, + cross_validate=args.cross_validate, ) gp.predict() if not args.skip_mdl_sim: @@ -394,12 +405,12 @@ def main(): logger.info("Skipping model similarity computation.") if not args.skip_sm_edgelist: gp.make_small_edgelist( - num_nodes=args.small_edgelist_num_nodes, + num_nodes=args.num_nodes, ) else: logger.info("Skipping making small edgelist.") gp.save_class( - args.output_dir, + output_dir=args.output_dir, save_type=args.save_type, zip_output=args.zip_output, overwrite=args.overwrite, diff --git a/geneplexus/download.py b/geneplexus/download.py index 06804b9b..b97d66f2 100755 --- a/geneplexus/download.py +++ b/geneplexus/download.py @@ -10,8 +10,10 @@ from typing import Union from urllib.parse import urljoin +import pystow import requests +from . import util from ._config import logger from ._config.config import ALL_SPECIES from ._config.config import LOG_LEVEL_TYPE @@ -25,7 +27,7 @@ def download_select_data( - data_dir: str, + file_loc: str = None, species: SPECIES_SELECTION_TYPE = "All", data_loc: str = "ZenodoAPI", num_retries: int = MAX_RETRY, @@ -34,7 +36,8 @@ def download_select_data( """Select species of data to download. Args: - data_dir: Location of data files. + file_loc: Location to save data files to. If not specified, set to default + data path ``~/.data/geneplexus`` species: Species of interest, accept multiple selection as a list. Do all the species if set to "All". data_loc: the remote system where to look for the data @@ -42,10 +45,14 @@ def download_select_data( log_level: Level to set the logger """ + if file_loc is None: + file_loc = str(pystow.join("geneplexus")) + else: + file_loc = util.normexpand(file_loc) species = _get_species_list(species) with stream_level_context(logger, log_level): for aspecies in species: - if not _check_all_files(data_dir, aspecies): + if not _check_all_files(file_loc, aspecies): if data_loc in ["Zenodo", "ZenodoAPI"]: logger.warning( f"Downloading {aspecies} data from Zenodo. This should take ~2 " @@ -53,13 +60,13 @@ def download_select_data( "If Zenodo download is hanging for > 5 minutes per attempt, it might be best " "to stop and restart the PyGenePlexus download function.", ) - log_path = osp.join(data_dir, "download.log") - logger.info(f"Start downloading data for {aspecies} and saving to: {data_dir}") + log_path = osp.join(file_loc, "download.log") + logger.info(f"Start downloading data for {aspecies} and saving to: {file_loc}") fn_download = f"{aspecies}_data.tar.gz" if data_loc == "ZenodoAPI": fn_download = f"{fn_download}/content" with file_handler_context(logger, log_path, "DEBUG"): - _download_and_extract(data_dir, aspecies, fn_download, data_loc, num_retries) + _download_and_extract(file_loc, aspecies, fn_download, data_loc, num_retries) logger.info("Download completed.") else: logger.warning( @@ -84,19 +91,19 @@ def _get_species_list( def _check_all_files( - data_dir: str, + file_loc: str, file_cat: str, ): fn_end = f"data_filenames_{file_cat}.txt" - fn_full = osp.join(data_dir, fn_end) + fn_full = osp.join(file_loc, fn_end) # check if filenames file is present if not osp.exists(fn_full): return False else: - # if filenames file exsists, see if all files are present in data_dir + # if filenames file exsists, see if all files are present in file_loc with open(fn_full) as file: filenames = [line.rstrip() for line in file] - files_found = [osp.basename(x) for x in os.listdir(data_dir)] + files_found = [osp.basename(x) for x in os.listdir(file_loc)] files_missing = [x for x in filenames if x not in files_found] if len(files_missing) > 0: return False @@ -104,7 +111,7 @@ def _check_all_files( return True -def _download_and_extract(data_dir, file_cat, fn_download, data_loc, num_retries): +def _download_and_extract(file_loc, file_cat, fn_download, data_loc, num_retries): url = urljoin(URL_DICT[data_loc], fn_download) num_tries = 0 while num_tries <= num_retries - 1: @@ -117,13 +124,13 @@ def _download_and_extract(data_dir, file_cat, fn_download, data_loc, num_retries with tarfile.open(fileobj=io.BytesIO(r.content), mode="r:gz") as tf: for member in tf.getmembers(): member.name = os.path.basename(member.name) - tf.extract(member, data_dir) + tf.extract(member, file_loc) logger.info(f"Downloaded {member.name}") try: - shutil.rmtree(osp.join(data_dir, f"{file_cat}_data")) + shutil.rmtree(osp.join(file_loc, f"{file_cat}_data")) except FileNotFoundError: pass - if _check_all_files(data_dir, file_cat): + if _check_all_files(file_loc, file_cat): break else: logger.warning(f"Not all files downloaded, trying again") @@ -144,7 +151,7 @@ def _download_and_extract(data_dir, file_cat, fn_download, data_loc, num_retries def download_pytest_data( - data_dir: str, + file_loc: str = None, data_loc: str = "ZenodoAPI", num_retries: int = MAX_RETRY, log_level: LOG_LEVEL_TYPE = "INFO", @@ -152,14 +159,19 @@ def download_pytest_data( """Download data for pytests. Args: - data_dir: Location of data files. + file_loc: Location to save data files to. If not specified, set to default + data path ``~/.data/geneplexus`` data_loc: the remote system where to look for the data num_retries: Number of times to retry downloading a file. log_level: Level to set the logger """ + if file_loc is None: + file_loc = str(pystow.join("geneplexus")) + else: + file_loc = util.normexpand(file_loc) with stream_level_context(logger, log_level): - if not _check_all_files(data_dir, "pytest"): + if not _check_all_files(file_loc, "pytest"): if data_loc in ["Zenodo", "ZenodoAPI"]: logger.warning( f"Downloading pytest data from Zenodo. This should take ~2 " @@ -167,13 +179,13 @@ def download_pytest_data( "If Zenodo download is hanging for > 5 minutes per attempt, it might be best " "to stop and restart the PyGenePlexus download function.", ) - log_path = osp.join(data_dir, "download.log") - logger.info(f"Start downloading pytest data and saving to: {data_dir}") + log_path = osp.join(file_loc, "download.log") + logger.info(f"Start downloading pytest data and saving to: {file_loc}") fn_download = "pytest_data.tar.gz" if data_loc == "ZenodoAPI": fn_download = f"{fn_download}/content" with file_handler_context(logger, log_path, "DEBUG"): - _download_and_extract(data_dir, "pytest", fn_download, data_loc, num_retries) + _download_and_extract(file_loc, "pytest", fn_download, data_loc, num_retries) logger.info("Download completed.") else: logger.warning( diff --git a/geneplexus/geneplexus.py b/geneplexus/geneplexus.py index 495b47e6..287912cf 100755 --- a/geneplexus/geneplexus.py +++ b/geneplexus/geneplexus.py @@ -39,18 +39,18 @@ class GenePlexus: def __init__( self, - file_loc: Optional[str] = None, - net_type: config.NET_TYPE = "STRING", - features: config.FEATURE_TYPE = "SixSpeciesN2V", - sp_trn: config.SPECIES_TYPE = "Human", - sp_res: config.SPECIES_SELECTION_TYPE = "Human", - gsc_trn: config.GSC_TYPE = "Combined", - gsc_res: config.GSC_SELECTION_TYPE = "Combined", - input_genes: Optional[List[str]] = None, - input_negatives: Optional[List[str]] = None, - auto_download: bool = False, - log_level: config.LOG_LEVEL_TYPE = "WARNING", - log_to_file: bool = False, + file_loc: Optional[str] = config.DEFAULT_PARAMETERS["file_loc"], + net_type: config.NET_TYPE = config.DEFAULT_PARAMETERS["net_type"], + features: config.FEATURE_TYPE = config.DEFAULT_PARAMETERS["features"], + sp_trn: config.SPECIES_TYPE = config.DEFAULT_PARAMETERS["sp_trn"], + sp_res: config.SPECIES_SELECTION_TYPE = config.DEFAULT_PARAMETERS["sp_res"], + gsc_trn: config.GSC_TYPE = config.DEFAULT_PARAMETERS["gsc_trn"], + gsc_res: config.GSC_SELECTION_TYPE = config.DEFAULT_PARAMETERS["gsc_res"], + input_genes: Optional[List[str]] = config.DEFAULT_PARAMETERS["input_genes"], + input_negatives: Optional[List[str]] = config.DEFAULT_PARAMETERS["input_negatives"], + auto_download: bool = config.DEFAULT_PARAMETERS["auto_download"], + log_level: config.LOG_LEVEL_TYPE = config.DEFAULT_PARAMETERS["log_level"], + log_to_file: bool = config.DEFAULT_PARAMETERS["log_to_file"], ): """Initialize the GenePlexus object. @@ -77,10 +77,41 @@ def __init__( will also create a tmp file that can be explicitly deleted with `remove_log_file`. + The following clsss attributes are set when ``__init__`` is run + + :attr:`GenePlexus._is_custom` bool + If the species, network or feature type was supplied by the user. + :attr:`GenePlexus._file_loc` str + File path set for the data. + :attr:`GenePlexus._features` str + Type of network features used. + :attr:`GenePlexus._sp_trn` str + Species used in training. + :attr:`GenePlexus._sp_res` (str, List[str]) + Species used in the results. + :attr:`GenePlexus._gsc_trn` str + Gene set collection used in training. + :attr:`GenePlexus._gsc_res` (str, List[str]) + TGene set collection(s) used in results. + :attr:`GenePlexus._net_type` str + Type of network used. + :attr:`GenePlexus.log_level` str + The verbosity of the logger. + :attr:`GenePlexus.log_to_file` bool + Whether or not the log file was saved as a file + :attr:`GenePlexus.auto_download` bool + If data was attmepted to be auto downloaded. :attr:`GenePlexus.gsc_trn_original` str - If internal data checks are run, this can different that gsc_trn. - :attr:`GenePlexus.gsc_res_original` (List[str]) - If internal data checks are run, this can different that res_trn. + If internal data checks are run, this can different than _gsc_trn. + :attr:`GenePlexus.gsc_res_original` (str, List[str]) + If internal data checks are run, this can different that _gsc_res. + :attr:`GenePlexus.sp_gsc_pairs` List[str] + The combination of all sp and gsc used, hyphen separated. + :attr:`GenePlexus.model_info[ModelName]` Class + model_info is a dictionary where each key is a different model and holds the ModelInfo class. + :attr:`GenePlexus.model_info[ModelName].results[ResultName]` Class + results is a dictionary where each key is a different result and holds ModelResults class. + """ set_stream_level(logger, log_level) @@ -118,12 +149,6 @@ def __init__( log_level=log_level, ) - if input_genes is not None: - self.load_genes(input_genes) - - if input_negatives is not None: - self.load_negatives(input_negatives) - if self._is_custom: warnings.warn( f"is_custom is set to True either manually " @@ -177,6 +202,12 @@ def __init__( # set a clus_min_size to make sure it matching min_num_pos later self.clust_min_size = None + if input_genes is not None: + self.load_genes(input_genes) + + if input_negatives is not None: + self.load_negatives(input_negatives) + @property def file_loc(self) -> str: """File location. @@ -316,7 +347,7 @@ def load_genes(self, input_genes: List[str]): Args: input_genes: Input gene list, can be mixed type. - **The following clsss attributes are set when this function is run** + The following clsss attributes are set when ``load_genes`` is run :attr:`GenePlexus.input_genes` (List[str]) Input genes converted to uppercase @@ -374,7 +405,7 @@ def load_negatives(self, input_negatives: List[str]): Args: input_negatives: Input negative gene list, can be mixed type. - **The following clsss attributes are set when this function is run** + The following clsss attributes are set when ``load_negatives`` is run :attr:`GenePlexus.input_negatives` (List[str]) Input negatives converted to uppercase @@ -455,29 +486,58 @@ def _convert_to_entrez(self, genes_to_load: List[str]): def cluster_input( self, - clust_method: str = "louvain", - clust_min_size: int = 5, - clust_weighted: bool = True, - clust_kwargs: Optional[Dict[str, Any]] = None, + clust_method: config.CLUSTERING_TYPE = config.DEFAULT_PARAMETERS["clust_method"], + clust_min_size: int = config.DEFAULT_PARAMETERS["clust_min_size"], + clust_weighted: bool = config.DEFAULT_PARAMETERS["clust_weighted"], + clust_kwargs: Optional[Dict[str, Any]] = config.DEFAULT_LOUVAIN_KWARGS | config.DEFAULT_DOMINO_KWARGS, ): """Cluster input gene list. Args: - clust_method: Clustering methos to use (either louvain or domino). + clust_method: Clustering method to use (either louvain or domino). clust_min_size: Ignore clusters if smaller than this value. clust_weighted: Whether or not to use weighted edges when building the clusters clust_kwargs: keywords args specfic to each clustering method - louvain_max_size: (kwarg) Try to recluster if a cluster is bigger than this value. - louvain_max_tries: (kwarg) The number of times to recluster any clusters that are + louvain_max_size: (clust_kwarg, int) Try to recluster if a cluster is bigger than this value. + louvain_max_tries: (clust_kwarg, int) The number of times to recluster any clusters that are bigger the `clust_max_size`. If cannot accomplished this by `clust_max_tries` the larger clusters are still retained. - louvain_res: (kwarg) Resolution parameter in clustering algorithm. - louvain_seed: (kwarg) Set seed used in clustering. Chose None to have this randomally set. - domino_res: (kwarg) resolution used to make initial slices. - domino_slice_thresh: (kwarg) threshold used for calling slice significant - domino_n_steps: (kwarg) number of steps used in pcst - domino_module_threshold: (kwarg) threshold used to consider module signifianct - domino_seed: (kwarg) random seed to be used in clustering algorithm + louvain_res: (clust_kwarg, float) Resolution parameter in clustering algorithm. + louvain_seed: (clust_kwarg, int) Set seed used in clustering. Chose None to have this randomally set. + domino_res: (clust_kwarg, float) resolution used to make initial slices. + domino_slice_thresh: (clust_kwarg, float) threshold used for calling slice significant + domino_n_steps: (clust_kwarg, int) number of steps used in pcst + domino_module_threshold: (clust_kwarg, float) threshold used to consider module signifianct + domino_seed: (clust_kwarg, int) random seed to be used in clustering algorithm + + The following clsss attributes are set when ``cluster_input`` is run + + :attr:`GenePlexus.clust_method` (str) + Clustering method used + :attr:`GenePlexus.clust_min_size` (int) + Minimum size of clusters allowed + :attr:`GenePlexus.clust_weighted` (bool) + Whether or not to use edge weights when generating clusters + :attr:`GenePlexus.clust_kwags` (dict) + Keyword arguments used for each clustering method + + :attr:`GenePlexus.num_genes_lost` (int) + Number of input_genes not in any cluster + :attr:`GenePlexus.per_genes_lost` (float) + Percentage of input_genes not in any cluster + :attr:`GenePlexus.num_genes_gained` (int) + Number of genes in clusters not in input_genes + :attr:`GenePlexus.per_genes_gained` (float) + Percentage of genes in clusters not in input_genes + :attr:`GenePlexus.genes_lost_clustered` (List[str]) + List of input_genes not in any cluster + :attr:`GenePlexus.genes_gained_clustered` (List[str]) + List of cluster genes not in input_genes + :attr:`GenePlexus.model_info[ModelName].model_genes` (List[str]) + List of genes used as positives for each clusters model + :attr:`GenePlexus.model_info[ModelName].results[ResultName]` (Class) + For each clusters model, set up a key in results dicts for ModelResults class + """ if list(self.model_info) != ["All-Genes"]: @@ -491,23 +551,15 @@ def cluster_input( del self.model_info[item] if clust_method == "louvain": - preset_kwargs = { - "louvain_max_size": 70, - "louvain_max_tries": 3, - "louvain_res": 1, - "louvain_seed": 123, - } + preset_kwargs = config.DEFAULT_LOUVAIN_KWARGS elif clust_method == "domino": - preset_kwargs = { - "domino_res": 1, - "domino_slice_thresh": 0.3, - "domino_n_steps": 20, - "domino_module_threshold": 0.05, - "domino_seed": 123, - } + preset_kwargs = config.DEFAULT_DOMINO_KWARGS preset_kwargs_keys = list(preset_kwargs.keys()) - clust_kwargs = {key: value for key, value in clust_kwargs.items() if key in preset_kwargs_keys} - preset_kwargs.update(clust_kwargs) + if isinstance(clust_kwargs, dict): + clust_kwargs = {key: value for key, value in clust_kwargs.items() if key in preset_kwargs_keys} + preset_kwargs.update(clust_kwargs) + else: + logger.warning(f"clust_kwargs not a dictionary or None, using defaults") clust_genes = _geneplexus._generate_clusters( self.file_loc, @@ -565,22 +617,20 @@ def cluster_input( def fit( self, - logreg_kwargs: Optional[Dict[str, Any]] = None, - scale: bool = False, - min_num_pos: int = 5, - min_num_pos_cv: int = 15, - num_folds: int = 3, - null_val: float = None, - random_state: Optional[int] = 0, - cross_validate: bool = True, + logreg_kwargs: Optional[Dict[str, Any]] = config.DEFAULT_LOGREG_KWARGS, + scale: bool = config.DEFAULT_PARAMETERS["scale"], + min_num_pos: int = config.DEFAULT_PARAMETERS["min_num_pos"], + min_num_pos_cv: int = config.DEFAULT_PARAMETERS["min_num_pos_cv"], + num_folds: int = config.DEFAULT_PARAMETERS["num_folds"], + null_val: float = config.DEFAULT_PARAMETERS["null_val"], + random_state: Optional[int] = config.DEFAULT_PARAMETERS["random_state"], + cross_validate: bool = config.DEFAULT_PARAMETERS["cross_validate"], ): """Fit the model. Args: logreg_kwargs: Scikit-learn logistic regression settings (see - :class:`~sklearn.linear_model.LogisticRegression`). If not set, - then use the default logistic regression settings (l2 penalty, - 10,000 max iterations, lbfgs solver). + :class:`~sklearn.linear_model.LogisticRegression`). scale: Whether to scale the data when doing model training and prediction. It is not recommended to set to ``True`` unless using custom data. min_num_pos: Minimum number of positives required for the model @@ -597,15 +647,59 @@ def fit( ``False``, then skip cross validation and return null_val as cv scores. - **The following clsss attributes are set when this function is run** + The following clsss attributes are set when ``fit`` is run + + :attr:`GenePlexus.min_num_pos` (int) + Minumum number of postivies needed to train a model. + :attr:`GenePlexus.logreg_kwargs` (dict) + Keyword arguments for LogisitcRegression function. + :attr:`GenePlexus.scale` (bool) + Whether or not scaling of the data was done in LogisticRegression. + :attr:`GenePlexus.min_num_pos_cv` (int) + The minumum number of positive genes needed for doing cross validation. + :attr:`GenePlexus.num_folds` (int) + Number of cross validation folds to do + :attr:`GenePlexus.null_vall` (None, str, int, float) + Value to fill in for avgps if cross validation couldn't be performed + :attr:`GenePlexus.random_state` (None, int) + Seed set for doing cross validation + :attr:`GenePlexus.cross_validate` (bool) + Whether or not to perform cross validation + :attr:`GenePlexus.model_info[ModelName].pos_genes_in_net` (1D array of str) + Input gene Entrez IDs that are present in the network. + :attr:`GenePlexus.model_info[ModelName].genes_not_in_net` (1D array of str) + Input gene Entrez IDs that are absent in the network. + :attr:`GenePlexus.model_info[ModelName].net_genes` (1D array of str) + All genes in the network. + :attr:`GenePlexus.model_info[ModelName].negative_genes` (1D array of str) + Negative gene Entrez IDs derived using the input genes and + the background gene set collection (gp_trn). + :attr:`GenePlexus.model_info[ModelName].neutral_gene_info` (Dict of Dicts) + Dictionary saying which genes were set to neutrals because the + term annotation matched closely enough to the positive training genes. + + :: - :attr:`GenePlexus.mdl_weights` (1D array of floats) + { + "{Term ID}" # ID of the matched term : { + "Name" : # returns string of term name + "Genes" : # returns list of genes annotated to term + "Task" : # returns type of GSC the term is from + } + "All Neutrals" : # returns list of all genes considered neutral + } + + :attr:`GenePlexus.model_info[ModelName].mdl_weights` (1D array of floats) Trained model parameters. - :attr:`GenePlexus.avgps` (1D array of floats) + :attr:`GenePlexus.model_info[ModelName].clf` (LogisticRegression) + The fit classifer from sci-kit learn LogisticRegression class. + :attr:`GenePlexusmodel_info[ModelName]..avgps` (1D array of floats) Cross validation results. Performance is measured using log2(auprc/prior). - :attr:`df_convert_out_subset` (DataFrame) - A table with the following 4 columns: + :attr:`GenePlexus.model_info[ModelName].std_scale` (StandardScale) + If scaling was performed the object returned from StandardScaler. + :attr:`GenePlexus.model_info[ModelName].df_convert_out_for_model` (DataFrame) + A table specifc to input_genes for each model with the following 4 columns: .. list-table:: @@ -641,7 +735,6 @@ def fit( ( self.model_info[model_name].mdl_weights, self.model_info[model_name].avgps, - self.model_info[model_name].scale, self.model_info[model_name].clf, self.model_info[model_name].std_scale, ) = _geneplexus._run_sl( @@ -652,13 +745,13 @@ def fit( self.model_info[model_name].pos_genes_in_net, self.model_info[model_name].negative_genes, self.model_info[model_name].net_genes, - logreg_kwargs=logreg_kwargs, - min_num_pos_cv=min_num_pos_cv, - num_folds=num_folds, - null_val=null_val, - random_state=random_state, - cross_validate=cross_validate, - scale=scale, + logreg_kwargs, + min_num_pos_cv, + num_folds, + null_val, + random_state, + cross_validate, + scale, ) # make df for genes used in training @@ -670,6 +763,7 @@ def fit( # set function arguments for saving later self.logreg_kwargs = logreg_kwargs + self.scale = scale self.min_num_pos_cv = min_num_pos_cv self.num_folds = num_folds self.null_val = null_val @@ -678,35 +772,7 @@ def fit( return self.model_info def _get_pos_and_neg_genes(self, model_name): - """Set up positive and negative splits. - - **The following clsss attributes are set when this function is run** - - :attr:`GenePlexus.pos_genes_in_net` (1D array of str) - Input gene Entrez IDs that are present in the network. - :attr:`GenePlexus.genes_not_in_net` (1D array of str) - Input gene Entrez IDs that are absent in the network. - :attr:`GenePlexus.net_genes` (1D array of str) - All genes in the network. - :attr:`GenePlexus.negative_genes` (1D array of str) - Negative gene Entrez IDs derived using the input genes and - the background gene set collection (gp_trn). - :attr:`GenePlexus.neutral_gene_info` (Dict of Dicts) - Dictionary saying which genes were set to neutrals because the - term annotation matched closely enough to the positive training genes. - - :: - - { - "{Term ID}" # ID of the matched term : { - "Name" : # returns string of term name - "Genes" : # returns list of genes annotated to term - "Task" : # returns type of GSC the term is from - } - "All Neutrals" : # returns list of all genes considered neutral - } - - """ + """Set up positive and negative splits.""" ( self.model_info[model_name].pos_genes_in_net, self.model_info[model_name].genes_not_in_net, @@ -720,7 +786,7 @@ def _get_pos_and_neg_genes(self, model_name): if len(self.model_info[model_name].pos_genes_in_net) < self.min_num_pos: raise NoPositivesError( f"There were not enough positive genes to train the model {model_name} with. " - f"This limit is set to {min_num_pos} and can be changed in fit().", + f"This limit is set to {self.min_num_pos} and can be changed in fit().", ) if (self.input_negatives == None) or (len(self.input_negatives) == 0): @@ -750,9 +816,9 @@ def _get_pos_and_neg_genes(self, model_name): def predict(self): """Predict gene scores from fit model. - **The following clsss attributes are set when this function is run** + The following clsss attributes are set when ``predict`` is run - :attr:`GenePlexus.df_probs` (DataFrame) + :attr:`GenePlexus.model_info[ModelName].results[ResultName].df_probs` (DataFrame) A table with the following 9 columns: .. list-table:: @@ -797,7 +863,7 @@ def predict(self): res_combo.split("-")[0], self.features, self.net_type, - self.model_info[model_name].scale, + self.scale, self.model_info[model_name].std_scale, self.model_info[model_name].clf, ) @@ -816,9 +882,9 @@ def predict(self): def make_sim_dfs(self): """Compute similarities bewteen the input genes and GO, Monarch and/or Mondo. - **The following clsss attributes are set when this function is run** + The following clsss attributes are set when ``make_sim_df`` is run - :attr:`GenePlexus.df_sim` (DataFrame) + :attr:`GenePlexus.model_info[ModelName].results[ResultName].df_sim` (DataFrame) A table showing how similar the coefficients of the user trained models are to the coefficients of models trained using genes annotated to gsc_res. The table has the following 7 columns: @@ -840,20 +906,6 @@ def make_sim_dfs(self): * - Rank - The rank of the term with one being the term with the highest similarity to the user model - :attr:`GenePlexus.weights` - Dictionary of pretrained model weights for gsc_res. - - :: - - { - "{Term ID}" # ID of the GSC term : { - "Name" : # returns string of term name - "PosGenes" : # returns list of genes annotated to term - "Task" : # returns type of GSC the term is from - "Weights" : # return list of coefficients from models trained using genes annotated to the term - } - } - """ for model_name in list(self.model_info): for idx, res_combo in enumerate(list(self.model_info[model_name].results)): @@ -869,24 +921,29 @@ def make_sim_dfs(self): self.model_info[model_name].results[res_combo].df_sim = df_sim return self.model_info - def make_small_edgelist(self, num_nodes: int = 50): + def make_small_edgelist( + self, + num_nodes: int = config.DEFAULT_PARAMETERS["num_nodes"], + ): """Make a subgraph induced by the top predicted genes. Args: num_nodes: Number of top genes to include. - **The following clsss attributes are set when this function is run** + The following clsss attributes are set when ``make_small_edgelist`` is run - :attr:`GenePlexus.df_edge` (DataFrame) + :attr:`GenePlexus.num_nodes` (int) + The number of nodes to include in the edgelist. + :attr:`GenePlexus.model_info[ModelName].results[ResultName].df_edge` (DataFrame) Table of edge list corresponding to the subgraph induced by the top predicted genes (in Entrez gene ID). - :attr:`GenePlexus.isolated_genes` (List[str]) + :attr:`GenePlexus.model_info[ModelName].results[ResultName].isolated_genes` (List[str]) List of top predicted genes (in Entrez gene ID) that are isolated from other top predicted genes in the network. - :attr:`GenePlexus.df_edge_sym` (DataFrame) + :attr:`GenePlexus.model_info[ModelName].results[ResultName].df_edge_sym` (DataFrame) Table of edge list corresponding to the subgraph induced by the top predicted genes (in gene symbol). - :attr:`GenePlexus.isolated_genes_sym` (List[str]) + :attr:`GenePlexus.model_info[ModelName].results[ResultName].isolated_genes_sym` (List[str]) List of top predicted genes (in gene symbol) that are isolated from other top predicted genes in the network. @@ -909,18 +966,24 @@ def make_small_edgelist(self, num_nodes: int = 50): self.num_nodes = num_nodes return self.model_info - def save_class(self, outdir: str, save_type: str = "all", zip_output: bool = False, overwrite: bool = False): - """Save all parts of the class. + def save_class( + self, + output_dir: str = config.DEFAULT_PARAMETERS["output_dir"], + save_type: config.SAVE_TYPE = config.DEFAULT_PARAMETERS["save_type"], + zip_output: bool = config.DEFAULT_PARAMETERS["zip_output"], + overwrite: bool = config.DEFAULT_PARAMETERS["overwrite"], + ): + """Save all or parts of the GenePlexus class and results. Args: - save_type: which files to save (options all or results_only) - outdir: Path to save the files to. + output_dir: Path to save the files to If None will try ~/.data/geneplexus_outputs/results. + save_type: which file saving method to use zip_output: wehter or not to compress all the results into one zip file overwrite: wether to overwrite data or make new directory with incremented index """ - _geneplexus._save_class(self, outdir, save_type, zip_output, overwrite) + _geneplexus._save_class(self, output_dir, save_type, zip_output, overwrite) def remove_log_file(self): """Remove the tmp log file. Only do when at the end of the script)""" diff --git a/geneplexus/util.py b/geneplexus/util.py index 7e4404d2..d4e53767 100755 --- a/geneplexus/util.py +++ b/geneplexus/util.py @@ -6,10 +6,10 @@ import pathlib import shutil import warnings +from collections.abc import Generator from threading import Thread from typing import Any from typing import Dict -from typing import Generator from typing import List from typing import Literal from typing import Optional @@ -18,6 +18,7 @@ import networkx as nx import numpy as np import pandas as pd +import pystow from . import config from ._config import logger @@ -547,8 +548,10 @@ def cluster_louvain( def suffix_dir(path, idx=0, overwrite=False): """Add int suffix to dir name if nonempty dir existed.""" + if path == None: + path = str(pystow.join("geneplexus_outputs", "results")) new_path = normexpand(f"{path}_{idx}" if idx > 0 else path) - if os.listdir(new_path): + if os.listdir(new_path) or osp.isfile(f"{new_path}.zip"): if overwrite: logger.warning(f"Output directory exits {path}, overwriting.") shutil.rmtree(new_path) @@ -560,20 +563,6 @@ def suffix_dir(path, idx=0, overwrite=False): return new_path -def suffix_zip(path, idx=0, overwrite=False): - """Add int suffix to file name if file existed.""" - new_path = f"_{idx}".join(osp.splitext(path)) if idx > 0 else path - if osp.isfile(new_path): - if overwrite: - logger.warning(f"Output zip file exits {path}, overwriting.") - os.remove(new_path) - else: - new_path = suffix_zip(path, idx=idx + 1) - elif path != new_path: - logger.warning(f"Output zip file exists {path}, redirecting to {new_path}") - return new_path - - def _save_results(gp, outdir, save_type): all_models = list(gp.model_info) all_results = list(gp.model_info["All-Genes"].results) diff --git a/requirements-dev.txt b/requirements-dev.txt index 5239261f..04747bae 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,8 +1,8 @@ -tox==4.24.1 -pytest==8.3.4 -pytest-cov==6.0.0 -pytest-order==1.3.0 -parameterized==0.9.0 -requests-mock==1.12.1 -pytest-mock==3.14.0 -setuptools==75.8.0 +tox>=4.24.1 +pytest>=8.3.4 +pytest-cov>=6.0.0 +pytest-order>=1.3.0 +parameterized>=0.9.0 +requests-mock>=1.12.1 +pytest-mock>=3.14.0 +setuptools>=75.8.0 diff --git a/requirements.txt b/requirements.txt index 1f6317da..188e1baf 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,9 +1,9 @@ -numpy==1.23.5 -requests==2.32.3 -scikit-learn==1.6.1 -networkx==3.3 -statsmodels==0.14.4 -tqdm==4.67.1 -pystow==0.7.0 -pyyaml==6.0.2 -pcst-fast==1.0.10 +numpy>=1.23.5 +requests>=2.32.3 +scikit-learn>=1.6.1 +networkx>=3.2 +statsmodels>=0.14.4 +tqdm>=4.67.1 +pystow>=0.7.0 +pyyaml>=6.0.2 +pcst-fast>=1.0.7 diff --git a/setup.cfg b/setup.cfg index 46fa381e..2a987ce4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -22,10 +22,10 @@ license = BSD 3-Clause License classifiers = Development Status :: 4 - Beta Programming Language :: Python - Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 - Programming Language :: Python :: 3.11 - Programming Language :: Python :: 3.12 + Programming Language :: Python :: 3.11 + Programming Language :: Python :: 3.12 + Programming Language :: Python :: 3.13 Programming Language :: Python :: 3 :: Only License :: OSI Approved :: BSD License keywords = @@ -49,7 +49,7 @@ install_requires = zip_save = false include_package_data = true -python_requires = >=3.9 +python_requires = >=3.10 packages = find: diff --git a/test/conftest.py b/test/conftest.py index d85f3338..4ba8cb3f 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -9,6 +9,8 @@ @pytest.fixture(scope="session") def data(request): pytest.DATADIR = request.config.cache.makedir("download") + pytest.RESULTSDIR = request.config.cache.makedir("results") + pytest.CLIRESULTSDIR = request.config.cache.makedir("cli_results") pytest.HOMEDIR = pathlib.Path(__file__).parent.parent pytest.ANSWERDIR = osp.join(pytest.HOMEDIR, "test", "expected_result") pytest.GENELIST_PATH = osp.join(pytest.HOMEDIR, "example", "input_genes.txt") diff --git a/test/expected_result/config.yaml b/test/expected_result/config.yaml deleted file mode 100644 index 9f1c0a41..00000000 --- a/test/expected_result/config.yaml +++ /dev/null @@ -1,194 +0,0 @@ -auto_download: false -features: SixSpeciesN2V -file_loc: /Users/mancchri/.data/geneplexus -gsc_res: Combined - Gene Set Contexts Used [GO, Monarch] -gsc_trn: Combined - Gene Set Contexts Used [GO, Monarch, Mondo] -input_genes: -- '6457' -- '7037' -- '57403' -- '3134' -- '50807' -- '93343' -- '11311' -- '8766' -- '5584' -- '137492' -- '998' -- '30011' -- '5337' -- '3312' -- '155' -- '10015' -- '55738' -- '57132' -- '153' -- '116986' -- '163' -- '11267' -- '1950' -- '3559' -- '6714' -- '84249' -- '2066' -- '29924' -- '1213' -- '30846' -- '84612' -- '440073' -- '2060' -- '3303' -- '3561' -- '9101' -- '51160' -- '56904' -- '3304' -- '23527' -- '5878' -- '3560' -- '7189' -- '3949' -- '92421' -- '26286' -- '5979' -- '9922' -- '11031' -- '116983' -- '2261' -- '9230' -- '5867' -- '64145' -- '867' -- '57154' -- '84313' -- '3577' -- '116987' -- '10617' -- '1436' -- '200576' -- '83737' -- '23396' -- '3310' -- '5590' -- '3133' -- '382' -- '6456' -- '30845' -- '868' -- '2264' -- '5868' -- '84440' -- '116984' -- '5869' -- '23624' -- '22841' -- '161' -- '23096' -- '5338' -- '652614' -- '84552' -- '51028' -- '55616' -- '9829' -- '3815' -- '29082' -- '9135' -- '23362' -- '9146' -- '128866' -- '156' -- '8218' -- '89853' -- '154' -- '64744' -- '9525' -- '84364' -- '9727' -- '23550' -- '8853' -- '1956' -- '8395' -- '6455' -- '64411' -- '5156' -- '51100' -- '8027' -- '408' -- '3305' -- '51534' -- '2868' -- '9744' -- '3106' -- '51652' -- '3265' -- '27243' -- '10938' -- '60682' -- '157' -- '26056' -- '10059' -- '2321' -- '80230' -- '1173' -- '1175' -- '160' -- '3306' -- '3135' -- '1234' -- '2149' -- '8411' -- '3791' -- '51510' -- '23327' -- '409' -- '11059' -- '3579' -- '27183' -- '8396' -- '1601' -- '1211' -- '3480' -- '9815' -- '26119' -- '64750' -- '26052' -- '4914' -- '25978' -- '8394' -- '1212' -- '30844' -- '131890' -- '79720' -- '7251' -- '50855' -- '116985' -- '5662' -- '2870' -- '10193' -- '1785' -- '155382' -- '652799' -- '22905' -- '3105' -- '55048' -- '10254' -- '55040' -- '7852' -- '1759' -- '4193' -- '2869' -- '2065' -- '6011' -- '4734' -- '28964' -- '4233' -- '80223' -- '79643' -- '3107' -- '2263' -- '56288' -input_negatives: null -log_level: INFO -net_type: STRING -sp_res: Mouse -sp_trn: Human diff --git a/test/expected_result/expected_cli/All-Genes/Human-Combined/df_edge.tsv b/test/expected_result/expected_cli/All-Genes/Human-Combined/df_edge.tsv new file mode 100644 index 00000000..2166fb13 --- /dev/null +++ b/test/expected_result/expected_cli/All-Genes/Human-Combined/df_edge.tsv @@ -0,0 +1,359 @@ +Node1 Node2 Weight +1211 8218 0.999 +1212 8218 0.999 +2060 22905 0.999 +2060 55040 0.999 +51271 137492 0.999 +7251 137492 0.999 +7251 51271 0.999 +7251 79720 0.999 +7251 9146 0.999 +8027 9146 0.999 +9146 10254 0.999 +2060 29924 0.998 +382 9266 0.998 +6456 8867 0.998 +7251 51028 0.997 +7251 8027 0.996 +8027 10254 0.994 +163 26119 0.993 +163 8218 0.992 +3267 6845 0.992 +2060 8650 0.99 +51271 79720 0.99 +2060 9146 0.989 +5878 8411 0.988 +9146 51028 0.987 +1211 1212 0.985 +8218 22905 0.984 +7251 10254 0.982 +8218 55040 0.981 +163 1212 0.979 +51028 137492 0.977 +8027 51028 0.974 +163 2060 0.973 +51028 57132 0.969 +6455 8867 0.969 +51429 257364 0.968 +5869 5878 0.966 +163 1211 0.965 +51028 51271 0.963 +51429 112574 0.962 +7251 57132 0.962 +5869 8411 0.961 +51028 79720 0.957 +57132 79720 0.957 +867 5296 0.954 +22905 55040 0.953 +9815 28964 0.952 +8867 51429 0.951 +6457 8867 0.949 +9146 57132 0.949 +8027 51271 0.944 +2060 8867 0.943 +867 6456 0.942 +8027 137492 0.941 +9146 79720 0.94 +2060 8218 0.939 +51271 57132 0.938 +57132 137492 0.938 +1212 22905 0.937 +9146 51271 0.937 +6455 6456 0.936 +8027 57132 0.934 +163 22905 0.933 +8027 79720 0.933 +2060 10254 0.931 +6455 6457 0.931 +6456 6457 0.931 +79720 137492 0.931 +9146 137492 0.928 +2060 3267 0.925 +112574 257364 0.923 +1212 55040 0.923 +1212 2060 0.921 +8218 29924 0.921 +1211 22905 0.918 +163 55040 0.918 +5296 200576 0.914 +867 6457 0.914 +10254 57132 0.908 +8218 8867 0.907 +10254 51028 0.903 +2060 8027 0.903 +8867 22905 0.903 +8867 55040 0.903 +382 9744 0.9 +867 6455 0.887 +163 130340 0.885 +1211 55040 0.883 +2060 6456 0.874 +6456 51429 0.869 +10254 51271 0.868 +867 29924 0.866 +382 200576 0.857 +10254 79720 0.852 +10254 137492 0.851 +163 8867 0.85 +2060 6457 0.842 +10938 30845 0.841 +1211 2060 0.835 +29924 55040 0.829 +8411 26060 0.829 +1212 29924 0.823 +163 382 0.822 +1211 29924 0.815 +163 29924 0.813 +6456 22905 0.801 +6295 8218 0.8 +867 9146 0.789 +6455 22905 0.783 +2060 6455 0.782 +382 10938 0.782 +7251 11021 0.782 +1211 8867 0.779 +9146 22905 0.772 +867 2060 0.766 +8867 29924 0.755 +382 2060 0.74 +3267 22905 0.738 +9744 11021 0.736 +382 8218 0.735 +1212 8867 0.731 +7039 255324 0.729 +163 8650 0.727 +7251 10043 0.727 +9146 29924 0.726 +8411 10043 0.722 +382 8411 0.72 +8218 8411 0.715 +51429 55040 0.699 +22905 51429 0.695 +382 9815 0.694 +5869 8218 0.694 +9146 200576 0.69 +6845 8218 0.686 +10938 11021 0.681 +163 6295 0.681 +867 22905 0.674 +5296 8867 0.672 +8027 22905 0.667 +10254 29924 0.665 +867 7039 0.665 +1211 51429 0.664 +163 3267 0.664 +6455 29924 0.663 +8411 10938 0.662 +382 6845 0.661 +10254 22905 0.66 +1211 5878 0.658 +4074 6845 0.658 +5878 8218 0.658 +382 7251 0.657 +6845 11021 0.657 +6845 8027 0.654 +2060 26119 0.645 +8027 29924 0.639 +6457 22905 0.636 +8218 26119 0.636 +26119 29924 0.63 +22905 26119 0.628 +2060 6845 0.625 +6845 9146 0.623 +867 10254 0.623 +8218 130340 0.618 +1212 5878 0.616 +8650 22905 0.616 +163 9146 0.615 +5878 6845 0.611 +382 28964 0.61 +8218 9146 0.609 +6456 55040 0.605 +9146 10043 0.605 +22905 29924 0.604 +8650 55040 0.603 +6845 10254 0.602 +1212 5869 0.601 +3267 8218 0.601 +5869 6455 0.6 +1211 6845 0.599 +3267 29924 0.599 +8411 200576 0.598 +1211 130340 0.597 +1212 130340 0.597 +867 255324 0.597 +3267 10254 0.595 +1211 9146 0.594 +6456 29924 0.593 +1212 6845 0.592 +2060 8411 0.592 +6845 22905 0.588 +867 8027 0.588 +163 6845 0.585 +8411 11021 0.583 +867 8650 0.583 +8650 8867 0.582 +1211 26119 0.581 +1211 6456 0.581 +7251 8411 0.581 +9146 55040 0.58 +10043 26060 0.579 +1212 3267 0.577 +6456 11021 0.577 +6455 9146 0.576 +6845 29924 0.576 +867 1211 0.575 +3267 4074 0.573 +163 6455 0.57 +163 6456 0.57 +22905 130340 0.57 +29924 130340 0.57 +55040 130340 0.57 +6845 51429 0.57 +163 51429 0.568 +6455 10254 0.566 +8027 8218 0.566 +1211 8411 0.562 +2060 7039 0.561 +1212 26119 0.56 +3267 6457 0.56 +1211 3267 0.558 +6456 130340 0.557 +8411 22905 0.555 +11021 26060 0.554 +163 8027 0.554 +8218 26060 0.552 +382 11021 0.55 +5878 51429 0.55 +8411 55040 0.548 +163 6457 0.547 +2060 130340 0.547 +5869 7251 0.547 +6457 10254 0.547 +3267 8027 0.546 +6456 10254 0.546 +4074 9146 0.544 +8867 130340 0.544 +5869 26060 0.543 +6457 29924 0.543 +3267 9146 0.542 +6455 8027 0.541 +1211 6455 0.54 +5296 110117498 0.54 +1211 6457 0.536 +1212 8650 0.536 +867 6845 0.535 +6455 6845 0.534 +7039 29924 0.532 +7039 9146 0.532 +26060 51429 0.53 +55040 200576 0.53 +867 8867 0.53 +382 1212 0.528 +867 3267 0.528 +22905 200576 0.527 +6457 6845 0.527 +7039 10254 0.526 +1211 10254 0.525 +6457 8027 0.525 +163 10254 0.524 +163 867 0.524 +6456 8027 0.524 +6457 9146 0.523 +1211 8027 0.522 +163 4074 0.522 +6457 26119 0.519 +9146 26119 0.518 +6456 6845 0.516 +163 7039 0.514 +2060 255324 0.514 +6845 7039 0.514 +3267 6455 0.513 +7039 8027 0.512 +1211 4074 0.511 +3267 7039 0.51 +5878 130340 0.508 +8650 29924 0.508 +867 26119 0.508 +6455 26119 0.507 +6456 26119 0.507 +6456 9146 0.507 +7039 26119 0.507 +51429 130340 0.506 +3267 6456 0.505 +6845 26119 0.504 +6457 7039 0.501 +382 1211 0.5 +4074 26119 0.5 +10254 255324 0.499 +10254 26119 0.499 +1211 255324 0.499 +1211 7039 0.499 +163 255324 0.499 +22905 255324 0.499 +26119 255324 0.499 +29924 255324 0.499 +3267 255324 0.499 +3267 26119 0.499 +3267 8867 0.499 +4074 130340 0.499 +4074 6456 0.499 +6455 255324 0.499 +6455 7039 0.499 +6456 255324 0.499 +6456 7039 0.499 +6457 255324 0.499 +6845 130340 0.499 +6845 255324 0.499 +7039 22905 0.499 +8027 255324 0.499 +8027 26119 0.499 +8218 51429 0.499 +9146 255324 0.499 +3267 55040 0.496 +6295 29924 0.495 +867 26060 0.492 +8867 200576 0.49 +382 30845 0.486 +4074 8027 0.485 +8218 10043 0.485 +6455 7251 0.481 +6845 7251 0.479 +10938 29924 0.476 +867 7251 0.476 +4074 10254 0.475 +6845 8411 0.472 +3267 8650 0.465 +10938 55040 0.463 +382 55040 0.462 +5878 26060 0.462 +2060 7251 0.459 +5869 22905 0.458 +382 22905 0.457 +2060 51429 0.456 +382 26060 0.451 +2060 10938 0.449 +2060 30845 0.449 +8027 11021 0.441 +10043 29924 0.437 +5296 28964 0.437 +382 8867 0.435 +8411 10254 0.432 +7251 8218 0.431 +6457 8411 0.43 +10043 51271 0.428 +2060 51028 0.428 +6455 51429 0.425 +5878 7251 0.418 +51028 200576 0.417 +5296 26060 0.417 +6456 7251 0.416 +9146 11021 0.416 +6455 8218 0.415 +30845 200576 0.412 +2060 4074 0.409 +5296 9815 0.408 +6456 8218 0.407 +867 8411 0.405 +8867 112574 0.403 +2060 26060 0.402 diff --git a/test/expected_result/expected_cli/All-Genes/Human-Combined/df_edge_sym.tsv b/test/expected_result/expected_cli/All-Genes/Human-Combined/df_edge_sym.tsv new file mode 100644 index 00000000..82793a9c --- /dev/null +++ b/test/expected_result/expected_cli/All-Genes/Human-Combined/df_edge_sym.tsv @@ -0,0 +1,359 @@ +Node1 Node2 Weight +CLTA CLTCL1 0.999 +CLTB CLTCL1 0.999 +EPS15 EPN2 0.999 +EPS15 EPN3 0.999 +HGS STAM2 0.999 +STAM HGS 0.999 +TSG101 HGS 0.999 +TSG101 UBAP1 0.999 +TSG101 VPS37A 0.999 +TSG101 VPS37B 0.999 +UBAP1 VPS37A 0.999 +ARF6 CYTH2 0.998 +EPS15 EPN1 0.998 +SH3GL2 SYNJ1 0.998 +TSG101 VPS36 0.997 +TSG101 STAM 0.996 +STAM STAM2 0.994 +AP2B1 LDLRAP1 0.993 +AGFG1 VAMP7 0.992 +AP2B1 CLTCL1 0.992 +EPS15 NUMB 0.99 +UBAP1 VPS37B 0.99 +EPS15 HGS 0.989 +RAB5C EEA1 0.988 +HGS VPS36 0.987 +CLTA CLTB 0.985 +CLTCL1 EPN2 0.984 +TSG101 STAM2 0.982 +CLTCL1 EPN3 0.981 +AP2B1 CLTB 0.979 +VPS36 VPS37A 0.977 +STAM VPS36 0.974 +AP2B1 EPS15 0.973 +SH3GL1 SYNJ1 0.969 +VPS36 CHMP1B 0.969 +SNX9 SNX33 0.968 +RAB5B RAB5C 0.966 +AP2B1 CLTA 0.965 +VPS36 UBAP1 0.963 +SNX9 SNX18 0.962 +TSG101 CHMP1B 0.962 +RAB5B EEA1 0.961 +CHMP1B VPS37B 0.957 +VPS36 VPS37B 0.957 +CBL PIK3R2 0.954 +EPN2 EPN3 0.953 +GIT2 GIT1 0.952 +SYNJ1 SNX9 0.951 +HGS CHMP1B 0.949 +SH3GL3 SYNJ1 0.949 +STAM UBAP1 0.944 +EPS15 SYNJ1 0.943 +CBL SH3GL2 0.942 +STAM VPS37A 0.941 +HGS VPS37B 0.94 +EPS15 CLTCL1 0.939 +CHMP1B VPS37A 0.938 +UBAP1 CHMP1B 0.938 +CLTB EPN2 0.937 +HGS UBAP1 0.937 +SH3GL1 SH3GL2 0.936 +STAM CHMP1B 0.934 +AP2B1 EPN2 0.933 +STAM VPS37B 0.933 +EPS15 STAM2 0.931 +SH3GL1 SH3GL3 0.931 +SH3GL2 SH3GL3 0.931 +VPS37B VPS37A 0.931 +HGS VPS37A 0.928 +EPS15 AGFG1 0.925 +CLTB EPN3 0.923 +SNX18 SNX33 0.923 +CLTB EPS15 0.921 +CLTCL1 EPN1 0.921 +AP2B1 EPN3 0.918 +CLTA EPN2 0.918 +CBL SH3GL3 0.914 +PIK3R2 PIKFYVE 0.914 +STAM2 CHMP1B 0.908 +CLTCL1 SYNJ1 0.907 +EPS15 STAM 0.903 +STAM2 VPS36 0.903 +SYNJ1 EPN2 0.903 +SYNJ1 EPN3 0.903 +ARF6 ACAP1 0.9 +CBL SH3GL1 0.887 +AP2B1 AP1S3 0.885 +CLTA EPN3 0.883 +EPS15 SH3GL2 0.874 +SH3GL2 SNX9 0.869 +STAM2 UBAP1 0.868 +CBL EPN1 0.866 +ARF6 PIKFYVE 0.857 +STAM2 VPS37B 0.852 +STAM2 VPS37A 0.851 +AP2B1 SYNJ1 0.85 +EPS15 SH3GL3 0.842 +EHD1 EHD3 0.841 +CLTA EPS15 0.835 +EEA1 APPL1 0.829 +EPN1 EPN3 0.829 +CLTB EPN1 0.823 +AP2B1 ARF6 0.822 +CLTA EPN1 0.815 +AP2B1 EPN1 0.813 +SH3GL2 EPN2 0.801 +SAG CLTCL1 0.8 +CBL HGS 0.789 +SH3GL1 EPN2 0.783 +ARF6 EHD1 0.782 +EPS15 SH3GL1 0.782 +TSG101 RAB35 0.782 +CLTA SYNJ1 0.779 +HGS EPN2 0.772 +CBL EPS15 0.766 +SYNJ1 EPN1 0.755 +ARF6 EPS15 0.74 +AGFG1 EPN2 0.738 +ACAP1 RAB35 0.736 +ARF6 CLTCL1 0.735 +CLTB SYNJ1 0.731 +TGFA EPGN 0.729 +AP2B1 NUMB 0.727 +TSG101 TOM1 0.727 +HGS EPN1 0.726 +EEA1 TOM1 0.722 +ARF6 EEA1 0.72 +CLTCL1 EEA1 0.715 +SNX9 EPN3 0.699 +EPN2 SNX9 0.695 +ARF6 GIT2 0.694 +RAB5B CLTCL1 0.694 +HGS PIKFYVE 0.69 +VAMP7 CLTCL1 0.686 +AP2B1 SAG 0.681 +EHD1 RAB35 0.681 +CBL EPN2 0.674 +PIK3R2 SYNJ1 0.672 +STAM EPN2 0.667 +CBL TGFA 0.665 +STAM2 EPN1 0.665 +AP2B1 AGFG1 0.664 +CLTA SNX9 0.664 +SH3GL1 EPN1 0.663 +EEA1 EHD1 0.662 +ARF6 VAMP7 0.661 +STAM2 EPN2 0.66 +CLTA RAB5C 0.658 +M6PR VAMP7 0.658 +RAB5C CLTCL1 0.658 +ARF6 TSG101 0.657 +VAMP7 RAB35 0.657 +VAMP7 STAM 0.654 +EPS15 LDLRAP1 0.645 +STAM EPN1 0.639 +CLTCL1 LDLRAP1 0.636 +SH3GL3 EPN2 0.636 +LDLRAP1 EPN1 0.63 +EPN2 LDLRAP1 0.628 +EPS15 VAMP7 0.625 +CBL STAM2 0.623 +VAMP7 HGS 0.623 +CLTCL1 AP1S3 0.618 +CLTB RAB5C 0.616 +NUMB EPN2 0.616 +AP2B1 HGS 0.615 +RAB5C VAMP7 0.611 +ARF6 GIT1 0.61 +CLTCL1 HGS 0.609 +HGS TOM1 0.605 +SH3GL2 EPN3 0.605 +EPN2 EPN1 0.604 +NUMB EPN3 0.603 +VAMP7 STAM2 0.602 +AGFG1 CLTCL1 0.601 +CLTB RAB5B 0.601 +RAB5B SH3GL1 0.6 +AGFG1 EPN1 0.599 +CLTA VAMP7 0.599 +EEA1 PIKFYVE 0.598 +CBL EPGN 0.597 +CLTA AP1S3 0.597 +CLTB AP1S3 0.597 +AGFG1 STAM2 0.595 +CLTA HGS 0.594 +SH3GL2 EPN1 0.593 +CLTB VAMP7 0.592 +EPS15 EEA1 0.592 +CBL STAM 0.588 +VAMP7 EPN2 0.588 +AP2B1 VAMP7 0.585 +CBL NUMB 0.583 +EEA1 RAB35 0.583 +NUMB SYNJ1 0.582 +CLTA LDLRAP1 0.581 +CLTA SH3GL2 0.581 +TSG101 EEA1 0.581 +HGS EPN3 0.58 +TOM1 APPL1 0.579 +CLTB AGFG1 0.577 +SH3GL2 RAB35 0.577 +SH3GL1 HGS 0.576 +VAMP7 EPN1 0.576 +CBL CLTA 0.575 +AGFG1 M6PR 0.573 +AP2B1 SH3GL1 0.57 +AP2B1 SH3GL2 0.57 +EPN1 AP1S3 0.57 +EPN2 AP1S3 0.57 +EPN3 AP1S3 0.57 +VAMP7 SNX9 0.57 +AP2B1 SNX9 0.568 +SH3GL1 STAM2 0.566 +STAM CLTCL1 0.566 +CLTA EEA1 0.562 +EPS15 TGFA 0.561 +AGFG1 SH3GL3 0.56 +CLTB LDLRAP1 0.56 +CLTA AGFG1 0.558 +SH3GL2 AP1S3 0.557 +EEA1 EPN2 0.555 +AP2B1 STAM 0.554 +RAB35 APPL1 0.554 +CLTCL1 APPL1 0.552 +ARF6 RAB35 0.55 +RAB5C SNX9 0.55 +EEA1 EPN3 0.548 +AP2B1 SH3GL3 0.547 +EPS15 AP1S3 0.547 +RAB5B TSG101 0.547 +SH3GL3 STAM2 0.547 +AGFG1 STAM 0.546 +SH3GL2 STAM2 0.546 +M6PR HGS 0.544 +SYNJ1 AP1S3 0.544 +RAB5B APPL1 0.543 +SH3GL3 EPN1 0.543 +AGFG1 HGS 0.542 +SH3GL1 STAM 0.541 +CLTA SH3GL1 0.54 +PIK3R2 P3R3URF 0.54 +CLTA SH3GL3 0.536 +CLTB NUMB 0.536 +CBL VAMP7 0.535 +SH3GL1 VAMP7 0.534 +TGFA EPN1 0.532 +TGFA HGS 0.532 +APPL1 SNX9 0.53 +CBL SYNJ1 0.53 +EPN3 PIKFYVE 0.53 +ARF6 CLTB 0.528 +CBL AGFG1 0.528 +EPN2 PIKFYVE 0.527 +SH3GL3 VAMP7 0.527 +TGFA STAM2 0.526 +CLTA STAM2 0.525 +SH3GL3 STAM 0.525 +AP2B1 CBL 0.524 +AP2B1 STAM2 0.524 +SH3GL2 STAM 0.524 +SH3GL3 HGS 0.523 +AP2B1 M6PR 0.522 +CLTA STAM 0.522 +SH3GL3 LDLRAP1 0.519 +HGS LDLRAP1 0.518 +SH3GL2 VAMP7 0.516 +AP2B1 TGFA 0.514 +EPS15 EPGN 0.514 +VAMP7 TGFA 0.514 +AGFG1 SH3GL1 0.513 +TGFA STAM 0.512 +CLTA M6PR 0.511 +AGFG1 TGFA 0.51 +CBL LDLRAP1 0.508 +NUMB EPN1 0.508 +RAB5C AP1S3 0.508 +SH3GL1 LDLRAP1 0.507 +SH3GL2 HGS 0.507 +SH3GL2 LDLRAP1 0.507 +TGFA LDLRAP1 0.507 +SNX9 AP1S3 0.506 +AGFG1 SH3GL2 0.505 +VAMP7 LDLRAP1 0.504 +SH3GL3 TGFA 0.501 +ARF6 CLTA 0.5 +M6PR LDLRAP1 0.5 +AGFG1 EPGN 0.499 +AGFG1 LDLRAP1 0.499 +AGFG1 SYNJ1 0.499 +AP2B1 EPGN 0.499 +CLTA EPGN 0.499 +CLTA TGFA 0.499 +CLTCL1 SNX9 0.499 +EPN1 EPGN 0.499 +EPN2 EPGN 0.499 +HGS EPGN 0.499 +LDLRAP1 EPGN 0.499 +M6PR AP1S3 0.499 +M6PR SH3GL2 0.499 +SH3GL1 EPGN 0.499 +SH3GL1 TGFA 0.499 +SH3GL2 EPGN 0.499 +SH3GL2 TGFA 0.499 +SH3GL3 EPGN 0.499 +STAM EPGN 0.499 +STAM LDLRAP1 0.499 +STAM2 EPGN 0.499 +STAM2 LDLRAP1 0.499 +TGFA EPN2 0.499 +VAMP7 AP1S3 0.499 +VAMP7 EPGN 0.499 +AGFG1 EPN3 0.496 +SAG EPN1 0.495 +CBL APPL1 0.492 +SYNJ1 PIKFYVE 0.49 +ARF6 EHD3 0.486 +CLTCL1 TOM1 0.485 +M6PR STAM 0.485 +SH3GL1 TSG101 0.481 +VAMP7 TSG101 0.479 +CBL TSG101 0.476 +EHD1 EPN1 0.476 +M6PR STAM2 0.475 +VAMP7 EEA1 0.472 +AGFG1 NUMB 0.465 +EHD1 EPN3 0.463 +ARF6 EPN3 0.462 +RAB5C APPL1 0.462 +EPS15 TSG101 0.459 +RAB5B EPN2 0.458 +ARF6 EPN2 0.457 +EPS15 SNX9 0.456 +ARF6 APPL1 0.451 +EPS15 EHD1 0.449 +EPS15 EHD3 0.449 +STAM RAB35 0.441 +PIK3R2 GIT1 0.437 +TOM1 EPN1 0.437 +ARF6 SYNJ1 0.435 +EEA1 STAM2 0.432 +TSG101 CLTCL1 0.431 +SH3GL3 EEA1 0.43 +EPS15 VPS36 0.428 +TOM1 UBAP1 0.428 +SH3GL1 SNX9 0.425 +RAB5C TSG101 0.418 +PIK3R2 APPL1 0.417 +VPS36 PIKFYVE 0.417 +HGS RAB35 0.416 +SH3GL2 TSG101 0.416 +SH3GL1 CLTCL1 0.415 +EHD3 PIKFYVE 0.412 +EPS15 M6PR 0.409 +PIK3R2 GIT2 0.408 +SH3GL2 CLTCL1 0.407 +CBL EEA1 0.405 +SYNJ1 SNX18 0.403 +EPS15 APPL1 0.402 diff --git a/test/expected_result/expected_cli/All-Genes/Human-Combined/df_probs.tsv b/test/expected_result/expected_cli/All-Genes/Human-Combined/df_probs.tsv new file mode 100644 index 00000000..c9542fc5 --- /dev/null +++ b/test/expected_result/expected_cli/All-Genes/Human-Combined/df_probs.tsv @@ -0,0 +1,18963 @@ +Entrez Symbol Name Known/Novel Class-Label Probability Z-score P-adjusted Rank +22905 EPN2 epsin 2 Known P 0.997055614194691 8.300671310176813 9.815180884417358e-13 1 +10254 STAM2 signal transducing adaptor molecule 2 Known P 0.9957368169633406 8.289301043442045 1.080036554217158e-12 2 +8027 STAM signal transducing adaptor molecule Known P 0.9957125947467427 8.289092206892287 1.081934327465551e-12 3 +29924 EPN1 epsin 1 Known P 0.9952172051354448 8.284821109043284 1.121476661756539e-12 4 +51429 SNX9 sorting nexin 9 Novel U 0.9947144344299801 8.280486373655867 1.163064668749473e-12 5 +9146 HGS hepatocyte growth factor-regulated tyrosine kinase substrate Known P 0.9941477752551394 8.275600811408328 1.2117619649731727e-12 6 +6455 SH3GL1 SH3 domain containing GRB2 like 1, endophilin A2 Known P 0.9933655452733582 8.268856663536802 1.2823029316228518e-12 7 +55040 EPN3 epsin 3 Known P 0.9907376321702873 8.246199599791593 1.5502522119879726e-12 8 +7251 TSG101 tumor susceptibility 101 Known P 0.9882138827646649 8.224440603615767 1.859261502982965e-12 9 +4074 M6PR mannose-6-phosphate receptor, cation dependent Novel U 0.9837186547753868 8.18568412152992 2.5670857439887514e-12 10 +1212 CLTB clathrin light chain B Known P 0.9825186222270477 8.175337807600334 2.797256013326165e-12 11 +6457 SH3GL3 SH3 domain containing GRB2 like 3, endophilin A3 Known P 0.9824353303029651 8.174619690082979 2.813966148476631e-12 12 +382 ARF6 ADP ribosylation factor 6 Known P 0.9800535219357903 8.15408446616675 3.335746856881941e-12 13 +867 CBL Cbl proto-oncogene Known P 0.9784172939016872 8.139977408050159 3.748329099440698e-12 14 +26060 APPL1 adaptor protein, phosphotyrosine interacting with PH domain and leucine zipper 1 Novel U 0.9775341571238898 8.132363272618164 3.991509818474063e-12 15 +10938 EHD1 EH domain containing 1 Known P 0.9754904928298892 8.114743423571834 4.615467134415026e-12 16 +6456 SH3GL2 SH3 domain containing GRB2 like 2, endophilin A1 Known P 0.9750034821837275 8.110544566599817 4.777798302173512e-12 17 +28964 GIT1 GIT ArfGAP 1 Known P 0.9722087102848572 8.086448897305415 5.824128436501872e-12 18 +1211 CLTA clathrin light chain A Known P 0.9709883513001027 8.075927335052343 6.3490230216305e-12 19 +112574 SNX18 sorting nexin 18 Novel U 0.9703664533072797 8.070565520595865 6.6341687014851784e-12 20 +110117498 P3R3URF PIK3R3 upstream open reading frame Novel U 0.9700074176309296 8.067470024707374 6.8044964718881606e-12 21 +163 AP2B1 adaptor related protein complex 2 subunit beta 1 Known P 0.9688522726856923 8.057510717975118 7.38226383931634e-12 22 +26119 LDLRAP1 low density lipoprotein receptor adaptor protein 1 Known P 0.9671489983347356 8.042825607002419 8.323391211311136e-12 23 +30845 EHD3 EH domain containing 3 Known P 0.9667480439772799 8.039368701054814 8.561578852036258e-12 24 +9266 CYTH2 cytohesin 2 Novel U 0.964840819139289 8.022925191305458 9.789724051620376e-12 25 +11021 RAB35 RAB35, member RAS oncogene family Novel U 0.9644387488727354 8.019458664330607 1.0069979023203103e-11 26 +9815 GIT2 GIT ArfGAP 2 Known P 0.9639632080999969 8.015358697102318 1.04116598896532e-11 27 +6295 SAG S-antigen visual arrestin Novel U 0.9639553547729919 8.015290988116677 1.0417397382355694e-11 28 +257364 SNX33 sorting nexin 33 Novel U 0.962215724985045 8.000292431675629 1.1768202891032147e-11 29 +79720 VPS37B VPS37B subunit of ESCRT-I Known P 0.9602669958787864 7.983491084808012 1.3486873395146382e-11 30 +51028 VPS36 vacuolar protein sorting 36 homolog Known P 0.9600078553417264 7.981256854284835 1.3733293462867961e-11 31 +130340 AP1S3 adaptor related protein complex 1 subunit sigma 3 Novel U 0.9590074116910152 7.9726313348408455 1.472693412017537e-11 32 +8650 NUMB NUMB endocytic adaptor protein Novel U 0.9589400052263332 7.972050176900214 1.479637213199929e-11 33 +5878 RAB5C RAB5C, member RAS oncogene family Known P 0.9579702546388683 7.963689283668443 1.5831777287700703e-11 34 +3267 AGFG1 ArfGAP with FG repeats 1 Novel N 0.9551234291651195 7.939144824357806 1.9301416124467812e-11 35 +9744 ACAP1 ArfGAP with coiled-coil, ankyrin repeat and PH domains 1 Known P 0.9519013605099497 7.911365133002594 2.4136885235913366e-11 36 +5869 RAB5B RAB5B, member RAS oncogene family Known P 0.9513496190132644 7.906608186417615 2.507690779041152e-11 37 +7039 TGFA transforming growth factor alpha Novel U 0.9489246812324281 7.885701113876147 2.9654142287918484e-11 38 +2060 EPS15 epidermal growth factor receptor pathway substrate 15 Known P 0.9483221141128464 7.8805059643016895 3.091356446984771e-11 39 +137492 VPS37A VPS37A subunit of ESCRT-I Known P 0.9476191989875271 7.8744456448857925 3.2449382213932216e-11 40 +255324 EPGN epithelial mitogen Novel U 0.9443452906998907 7.846219008060446 4.065148480923414e-11 41 +5296 PIK3R2 phosphoinositide-3-kinase regulatory subunit 2 Novel U 0.9442827430166892 7.8456797410490084 4.08265695921179e-11 42 +8411 EEA1 early endosome antigen 1 Known P 0.9439598700627757 7.8428960291028735 4.174223721372236e-11 43 +57132 CHMP1B charged multivesicular body protein 1B Known P 0.943352471146088 7.837659221250254 4.3519943908492216e-11 44 +10043 TOM1 target of myb1 membrane trafficking protein Novel U 0.9431130042506508 7.835594610853339 4.424110778076365e-11 45 +6845 VAMP7 vesicle associated membrane protein 7 Novel U 0.9412068466140021 7.819160302187843 5.041697866494171e-11 46 +51271 UBAP1 ubiquitin associated protein 1 Novel U 0.9411829624954398 7.818954380616033 5.049951067248597e-11 47 +8867 SYNJ1 synaptojanin 1 Novel U 0.9406601706768096 7.814447029308893 5.233971233851675e-11 48 +200576 PIKFYVE phosphoinositide kinase, FYVE-type zinc finger containing Known P 0.9393099930834311 7.80280621068183 5.74031776134781e-11 49 +8218 CLTCL1 clathrin heavy chain like 1 Known P 0.9388528714334782 7.79886504750174 5.922441461749391e-11 50 +55198 APPL2 adaptor protein, phosphotyrosine interacting with PH domain and leucine zipper 2 Novel U 0.9382784532533972 7.793912589481992 6.159378764040358e-11 51 +84364 ARFGAP2 ADP ribosylation factor GTPase activating protein 2 Known P 0.9347468231501102 7.763463953915933 7.835156982142402e-11 52 +92714 ARRDC1 arrestin domain containing 1 Novel U 0.9339906668078864 7.75694460499717 8.248461188943128e-11 53 +409 ARRB2 arrestin beta 2 Known P 0.933387789007018 7.7517467768235955 8.593293636774366e-11 54 +10015 PDCD6IP programmed cell death 6 interacting protein Known P 0.9317075609749296 7.737260364169756 9.630979892732685e-11 55 +8871 SYNJ2 synaptojanin 2 Novel U 0.9302602494339786 7.72478208632861 1.062297260472297e-10 56 +89853 MVB12B multivesicular body subunit 12B Known P 0.9287822673002329 7.712039376008614 1.17396503579973e-10 57 +9922 IQSEC1 IQ motif and Sec7 domain ArfGEF 1 Known P 0.9286331321608706 7.710753578409282 1.1858547074060963e-10 58 +9253 NUMBL NUMB like endocytic adaptor protein Novel U 0.9270320494765233 7.696949532758678 1.3212048670203187e-10 59 +55048 VPS37C VPS37C subunit of ESCRT-I Known P 0.9265544559544836 7.692831867353187 1.3644446375923043e-10 60 +53349 ZFYVE1 zinc finger FYVE-type containing 1 Novel U 0.9241887061189914 7.672435095190009 1.600026457591883e-10 61 +5293 PIK3CD phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit delta Novel U 0.9228560681972399 7.660945498251995 1.749900375703594e-10 62 +93343 MVB12A multivesicular body subunit 12A Known P 0.9217750312537971 7.65162512806552 1.8815525163402337e-10 63 +22848 AAK1 AP2 associated kinase 1 Novel U 0.921516022762442 7.649392036000061 1.9145147682561594e-10 64 +57403 RAB22A RAB22A, member RAS oncogene family Known P 0.9214629585347973 7.6489345324445095 1.9213376713633495e-10 65 +50807 ASAP1 ArfGAP with SH3 domain, ankyrin repeat and PH domain 1 Known P 0.9205125142157522 7.640740091959505 2.047674620314833e-10 66 +5868 RAB5A RAB5A, member RAS oncogene family Known P 0.9186884215949171 7.625013322783183 2.313451075990524e-10 67 +1175 AP2S1 adaptor related protein complex 2 subunit sigma 1 Known P 0.9176873975007955 7.616382798933478 2.4734340695212207e-10 68 +25978 CHMP2B charged multivesicular body protein 2B Known P 0.917196552567908 7.612150883912982 2.5558082477464794e-10 69 +408 ARRB1 arrestin beta 1 Known P 0.9167653407513122 7.6084331073986515 2.630397101283127e-10 70 +110117499 P3R3URF-PIK3R3 P3R3URF-PIK3R3 readthrough Novel U 0.9123346117049277 7.570232715489048 3.532205528068849e-10 71 +5291 PIK3CB phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit beta Novel U 0.9111706598904191 7.560197478621111 3.8157030691784795e-10 72 +5867 RAB4A RAB4A, member RAS oncogene family Known P 0.9103702845600772 7.553296887099092 4.0235099329197786e-10 73 +160 AP2A1 adaptor related protein complex 2 subunit alpha 1 Known P 0.9091039511293013 7.542378947221152 4.3752390433897183e-10 74 +9525 VPS4B vacuolar protein sorting 4 homolog B Known P 0.9085420232813274 7.537534177028076 4.5408409253518364e-10 75 +155382 VPS37D VPS37D subunit of ESCRT-I Known P 0.9077464400692651 7.530674901685504 4.785887958203522e-10 76 +27183 VPS4A vacuolar protein sorting 4 homolog A Known P 0.9072141940640852 7.526086039270913 4.957036081840454e-10 77 +84174 SLA2 Src like adaptor 2 Novel U 0.9057733296998628 7.513663347017413 5.451131636409817e-10 78 +8503 PIK3R3 phosphoinositide-3-kinase regulatory subunit 3 Novel U 0.9023110147664821 7.483812325665174 6.845000969397453e-10 79 +5295 PIK3R1 phosphoinositide-3-kinase regulatory subunit 1 Novel U 0.9004122053393214 7.467441371016441 7.752532026961436e-10 80 +100526767 RNF103-CHMP3 RNF103-CHMP3 readthrough Novel U 0.8968656830563665 7.4368643396279905 9.775227216557133e-10 81 +8906 AP1G2 adaptor related protein complex 1 subunit gamma 2 Novel U 0.8954096205642422 7.424310613759918 1.0748498638475397e-09 82 +64145 RBSN rabenosyn, RAB effector Known P 0.8947207654927998 7.41837151583212 1.1241538381162134e-09 83 +2319 FLOT2 flotillin 2 Novel U 0.8936243124429449 7.408918232686965 1.2072515712417436e-09 84 +25977 NECAP1 NECAP endocytosis associated 1 Novel U 0.8905020441050476 7.381998989170608 1.4783759078782546e-09 85 +27243 CHMP2A charged multivesicular body protein 2A Known P 0.890033420960571 7.377958663619325 1.5239271300891117e-09 86 +10565 ARFGEF1 ADP ribosylation factor guanine nucleotide exchange factor 1 Novel U 0.8851570319819364 7.335915927957231 2.087813176834267e-09 87 +30846 EHD2 EH domain containing 2 Known P 0.884482283151876 7.330098449732088 2.180475655708034e-09 88 +5294 PIK3CG phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit gamma Novel U 0.883818428246249 7.324374895594477 2.275580776285712e-09 89 +11020 IFT27 intraflagellar transport 27 Novel U 0.8803527175701833 7.294494597186468 2.8422355696864785e-09 90 +23327 NEDD4L NEDD4 like E3 ubiquitin protein ligase Known P 0.8789860781382562 7.2827118496177965 3.101951634767115e-09 91 +55014 STX17 syntaxin 17 Novel U 0.8765130406654905 7.261390076230667 3.6324772805153576e-09 92 +51510 CHMP5 charged multivesicular body protein 5 Known P 0.8741887951372311 7.241351141521694 4.2118069613627224e-09 93 +3134 HLA-F major histocompatibility complex, class I, F Known P 0.8712841868842881 7.216308496745925 5.0645415876496e-09 94 +1174 AP1S1 adaptor related protein complex 1 subunit sigma 1 Novel U 0.8712267040437298 7.215812897260058 5.083023026514828e-09 95 +2869 GRK5 G protein-coupled receptor kinase 5 Known P 0.8706731107641343 7.211039985168688 5.264433832897722e-09 96 +79643 CHMP6 charged multivesicular body protein 6 Known P 0.8702361656416613 7.20727277784305 5.412094344466693e-09 97 +150350 ENTHD1 ENTH domain containing 1 Novel U 0.8696375699782728 7.202111868950305 5.6210021481354516e-09 98 +128866 CHMP4B charged multivesicular body protein 4B Known P 0.8676355909190918 7.184851417260546 6.37884662320771e-09 99 +1785 DNM2 dynamin 2 Known P 0.8673562371681344 7.182442914583836 6.492271841121029e-09 100 +148362 BROX BRO1 domain and CAAX motif containing Novel U 0.8658031603548736 7.169052760884258 7.159904329374663e-09 101 +5288 PIK3C2G phosphatidylinositol-4-phosphate 3-kinase catalytic subunit type 2 gamma Novel U 0.8592872877655495 7.112874898519073 1.077518395856484e-08 102 +4952 OCRL OCRL inositol polyphosphate-5-phosphatase Novel U 0.8592120842099771 7.112226516443394 1.0825941312429749e-08 103 +5662 PSD pleckstrin and Sec7 domain containing Known P 0.8582947796650102 7.104317796963744 1.1464266586691923e-08 104 +390595 UBAP1L ubiquitin associated protein 1 like Novel U 0.8558797404927727 7.083496067200829 1.332671963190932e-08 105 +51160 VPS28 VPS28 subunit of ESCRT-I Known P 0.8551666172537002 7.077347736547516 1.393133372848462e-08 106 +8301 PICALM phosphatidylinositol binding clathrin assembly protein Novel U 0.8545726173587643 7.072226450966008 1.4455428458626382e-08 107 +51100 SH3GLB1 SH3 domain containing GRB2 like, endophilin B1 Known P 0.8535130380954411 7.063091082340553 1.543875680925102e-08 108 +9135 RABEP1 rabaptin, RAB GTPase binding effector protein 1 Known P 0.8516240941305824 7.04680518469313 1.735708905333054e-08 109 +10928 RALBP1 ralA binding protein 1 Novel U 0.8478983978746256 7.01468337006088 2.1850887434010522e-08 110 +26056 RAB11FIP5 RAB11 family interacting protein 5 Known P 0.8469795498921404 7.006761343534586 2.312394718050318e-08 111 +1173 AP2M1 adaptor related protein complex 2 subunit mu 1 Known P 0.8460941916746627 6.999128055528488 2.4419299038048073e-08 112 +84313 VPS25 vacuolar protein sorting 25 homolog Known P 0.8399156612057038 6.945858653841142 3.566422796997268e-08 113 +64744 SMAP2 small ArfGAP2 Known P 0.83862244376486 6.934708928243527 3.859320704843864e-08 114 +10053 AP1M2 adaptor related protein complex 1 subunit mu 2 Novel U 0.8374010605966797 6.924178535793926 4.1575379019752985e-08 115 +5287 PIK3C2B phosphatidylinositol-4-phosphate 3-kinase catalytic subunit type 2 beta Novel U 0.8354009660165456 6.906934331506656 4.695361308805549e-08 116 +55738 ARFGAP1 ADP ribosylation factor GTPase activating protein 1 Known P 0.8293638949982869 6.85488454997651 6.766602416994939e-08 117 +116985 ARAP1 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 1 Known P 0.8283283782944836 6.845956641386274 7.202382619562018e-08 118 +8905 AP1S2 adaptor related protein complex 1 subunit sigma 2 Novel U 0.8276684980282488 6.840267355374945 7.494305634494628e-08 119 +685 BTC betacellulin Novel U 0.827653150914165 6.840135037247038 7.501231147299573e-08 120 +55616 ASAP3 ArfGAP with SH3 domain, ankyrin repeat and PH domain 3 Known P 0.8274238518236594 6.838158090557198 7.605454126808351e-08 121 +9459 ARHGEF6 Rac/Cdc42 guanine nucleotide exchange factor 6 Novel U 0.8239990275248342 6.808630301999825 9.341849403710857e-08 122 +55707 NECAP2 NECAP endocytosis associated 2 Novel U 0.8231987624191566 6.80173066080118 9.800483656506625e-08 123 +115548 FCHO2 FCH and mu domain containing endocytic adaptor 2 Novel U 0.8214043499732528 6.7862597850235415 1.0910531623612887e-07 124 +55300 PI4K2B phosphatidylinositol 4-kinase type 2 beta Novel U 0.820528864688344 6.778711618425112 1.1495928388851842e-07 125 +11252 PACSIN2 protein kinase C and casein kinase substrate in neurons 2 Novel U 0.8199526835011546 6.773743960296811 1.1897866310154857e-07 126 +60682 SMAP1 small ArfGAP 1 Known P 0.8185973066489484 6.762058315248908 1.2898418826312788e-07 127 +9341 VAMP3 vesicle associated membrane protein 3 Novel U 0.8165465135029216 6.744377003418822 1.4570876210457382e-07 128 +55803 ADAP2 ArfGAP with dual PH domains 2 Novel U 0.8159353606410801 6.739107830198204 1.51091212645244e-07 129 +3949 LDLR low density lipoprotein receptor Known P 0.8152129511619615 6.732879436420872 1.5770495307470755e-07 130 +8729 GBF1 golgi brefeldin A resistant guanine nucleotide exchange factor 1 Novel U 0.8136233617131743 6.719174481935202 1.7327187938072824e-07 131 +8853 ASAP2 ArfGAP with SH3 domain, ankyrin repeat and PH domain 2 Known P 0.8124717324635332 6.7092454864560604 1.8547994439161957e-07 132 +51534 VTA1 vesicle trafficking 1 Known P 0.8099623223763789 6.6876101195023026 2.1507127813491918e-07 133 +23062 GGA2 golgi associated, gamma adaptin ear containing, ARF binding protein 2 Novel U 0.8098229550314459 6.686408536841727 2.1684372252327523e-07 134 +9026 HIP1R huntingtin interacting protein 1 related Novel U 0.8096731070848696 6.685116593636414 2.1876541102136865e-07 135 +2065 ERBB3 erb-b2 receptor tyrosine kinase 3 Known P 0.804841024484549 6.6434558540291375 2.9050948671045033e-07 136 +91782 CHMP7 charged multivesicular body protein 7 Novel U 0.8014100501105949 6.613875041403324 3.5495707939109914e-07 137 +4734 NEDD4 NEDD4 E3 ubiquitin protein ligase Known P 0.8006968455777669 6.607726009860092 3.7001319643471104e-07 138 +9559 VPS26A VPS26 retromer complex component A Novel U 0.7983842684208833 6.587787676283536 4.2325879533147074e-07 139 +55737 VPS35 VPS35 retromer complex component Novel U 0.7979866306366991 6.58435936481721 4.3314035815540725e-07 140 +58513 EPS15L1 epidermal growth factor receptor pathway substrate 15 like 1 Novel N 0.7941031024848397 6.550876771808266 5.423155306326911e-07 141 +30011 SH3KBP1 SH3 domain containing kinase binding protein 1 Known P 0.7940360731989018 6.550298865787509 5.444184371847166e-07 142 +1839 HBEGF heparin binding EGF like growth factor Novel U 0.7940052663422118 6.550033258482991 5.453876125798283e-07 143 +8322 FZD4 frizzled class receptor 4 Novel U 0.7904747199696808 6.519593966512347 6.683911989361841e-07 144 +2261 FGFR3 fibroblast growth factor receptor 3 Known P 0.790232927886871 6.51750930906043 6.777434644618279e-07 145 +1969 EPHA2 EPH receptor A2 Novel U 0.7880949880538558 6.49907664512514 7.662021190872337e-07 146 +2069 EREG epiregulin Novel U 0.787318753320906 6.492384186457028 8.010351346347014e-07 147 +2870 GRK6 G protein-coupled receptor kinase 6 Known P 0.7865901027333213 6.486101983749641 8.351391333406172e-07 148 +114822 RHPN1 rhophilin Rho GTPase binding protein 1 Novel U 0.7851658860245598 6.4738228224943875 9.059469235704895e-07 149 +26052 DNM3 dynamin 3 Known P 0.7842190941976277 6.465659872680264 9.56231920588108e-07 150 +11031 RAB31 RAB31, member RAS oncogene family Known P 0.7826320151300694 6.451976561934434 1.0467086256378384e-06 151 +7037 TFRC transferrin receptor Known P 0.782485154017339 6.450710370297832 1.0554920330367726e-06 152 +3633 INPP5B inositol polyphosphate-5-phosphatase B Novel U 0.7818579994403905 6.445303235179316 1.0938183675997345e-06 153 +9101 USP8 ubiquitin specific peptidase 8 Known P 0.7807398320147599 6.435662737321635 1.165553687680389e-06 154 +9265 CYTH3 cytohesin 3 Novel N 0.7798297956402871 6.427816681786998 1.2273127609921606e-06 155 +92421 CHMP4C charged multivesicular body protein 4C Known P 0.7790318477514979 6.4209370189242785 1.2840882323340338e-06 156 +3482 IGF2R insulin like growth factor 2 receptor Novel U 0.7756667585544519 6.39192424816078 1.5530925919154018e-06 157 +8724 SNX3 sorting nexin 3 Novel U 0.7754171471821719 6.3897721751844445 1.575107791153805e-06 158 +1759 DNM1 dynamin 1 Known P 0.7741784342928496 6.3790923711747185 1.6889507551427465e-06 159 +10059 DNM1L dynamin 1 like Known P 0.7739871260226566 6.377442969728498 1.7072348583055283e-06 160 +1398 CRK CRK proto-oncogene, adaptor protein Novel U 0.7731940813443162 6.370605580847959 1.785113727163912e-06 161 +5298 PI4KB phosphatidylinositol 4-kinase beta Novel U 0.7715564413862586 6.3564863495544826 1.9570753754427352e-06 162 +22863 ATG14 autophagy related 14 Novel U 0.7699001505461662 6.342206316055381 2.1474247446369416e-06 163 +64284 RAB17 RAB17, member RAS oncogene family Novel N 0.769692433420924 6.340415442475092 2.1725371314033453e-06 164 +51652 CHMP3 charged multivesicular body protein 3 Known P 0.7687622977451847 6.332396096906819 2.2885506777134255e-06 165 +51454 GULP1 GULP PTB domain containing engulfment adaptor 1 Novel U 0.7666870171440533 6.31450366172162 2.569634542936516e-06 166 +2264 FGFR4 fibroblast growth factor receptor 4 Known P 0.7666337670539823 6.3140445557170235 2.5772735048048396e-06 167 +23396 PIP5K1C phosphatidylinositol-4-phosphate 5-kinase type 1 gamma Known P 0.7661834611525696 6.310162155838112 2.64276483535438e-06 168 +5289 PIK3C3 phosphatidylinositol 3-kinase catalytic subunit type 3 Novel U 0.7629007444091271 6.2818595751984665 3.171839801685088e-06 169 +64750 SMURF2 SMAD specific E3 ubiquitin protein ligase 2 Known P 0.7624257448280843 6.277764273959602 3.25649720077596e-06 170 +23647 ARFIP2 ADP ribosylation factor interacting protein 2 Novel U 0.7618360244780715 6.272679885306692 3.364674802894437e-06 171 +23163 GGA3 golgi associated, gamma adaptin ear containing, ARF binding protein 3 Novel U 0.7596254632371214 6.253621101783611 3.8022916656302697e-06 172 +26286 ARFGAP3 ADP ribosylation factor GTPase activating protein 3 Known P 0.7583383946766677 6.242524389953765 4.082183087655152e-06 173 +1436 CSF1R colony stimulating factor 1 receptor Known P 0.7579261074877273 6.238969775796149 4.176020976255398e-06 174 +5872 RAB13 RAB13, member RAS oncogene family Novel U 0.7563472302440273 6.225357178669339 4.5552427693543635e-06 175 +374 AREG amphiregulin Novel U 0.754537814833442 6.209756951914774 5.031245518328079e-06 176 +11033 ADAP1 ArfGAP with dual PH domains 1 Novel U 0.753922991948841 6.204456136879399 5.203777561914721e-06 177 +162 AP1B1 adaptor related protein complex 1 subunit beta 1 Novel U 0.7527004405617351 6.193915672403201 5.5641745666093854e-06 178 +5331 PLCB3 phospholipase C beta 3 Novel U 0.7482295192013654 6.155368754644259 7.101553852768277e-06 179 +55114 ARHGAP17 Rho GTPase activating protein 17 Novel U 0.7474297818472724 6.148473663558509 7.417186714639501e-06 180 +57154 SMURF1 SMAD specific E3 ubiquitin protein ligase 1 Known P 0.7474216121174976 6.148403226644871 7.420480636202682e-06 181 +112936 VPS26B VPS26 retromer complex component B Novel U 0.7446520462658519 6.1245248761872535 8.62340595979006e-06 182 +81609 SNX27 sorting nexin 27 Novel U 0.7433312322097382 6.113137221005669 9.262112024803664e-06 183 +197259 MLKL mixed lineage kinase domain like pseudokinase Novel U 0.741923366208087 6.100999030550722 9.993689598782373e-06 184 +8674 VAMP4 vesicle associated membrane protein 4 Novel U 0.7411580937764032 6.094401085494301 1.0414682156222174e-05 185 +4914 NTRK1 neurotrophic receptor tyrosine kinase 1 Known P 0.7408776565510171 6.091983241432152 1.057324546996521e-05 186 +26088 GGA1 golgi associated, gamma adaptin ear containing, ARF binding protein 1 Novel U 0.7395532750940402 6.0805648292104415 1.135443782814196e-05 187 +5338 PLD2 phospholipase D2 Known P 0.7385527575025655 6.071938672271783 1.1981632560484103e-05 188 +8766 RAB11A RAB11A, member RAS oncogene family Known P 0.7368882841935043 6.057588092025605 1.3100625307580851e-05 189 +23527 ACAP2 ArfGAP with coiled-coil, ankyrin repeat and PH domains 2 Known P 0.736684801176039 6.055833723628723 1.3244221372076393e-05 190 +58533 SNX6 sorting nexin 6 Novel U 0.7359171276076522 6.04921507670538 1.3799902416592935e-05 191 +27128 CYTH4 cytohesin 4 Novel U 0.7343414408258572 6.035629986766183 1.5012566779660195e-05 192 +10211 FLOT1 flotillin 1 Novel U 0.7325273697293677 6.019989620110422 1.6537542950589034e-05 193 +9727 RAB11FIP3 RAB11 family interacting protein 3 Known P 0.7307924247747033 6.005031454870359 1.8136661408058107e-05 194 +5747 PTK2 protein tyrosine kinase 2 Novel U 0.7295309976621753 5.994155815769095 1.9392928765893007e-05 195 +10890 RAB10 RAB10, member RAS oncogene family Novel U 0.7291862402423837 5.991183422645545 1.9750773770192656e-05 196 +8673 VAMP8 vesicle associated membrane protein 8 Novel U 0.7264955526165265 5.967985136147314 2.2773480000067353e-05 197 +30844 EHD4 EH domain containing 4 Known P 0.7223017664377911 5.931827593238322 2.8403285267285897e-05 198 +169166 SNX31 sorting nexin 31 Novel U 0.7222061800549102 5.931003476654111 2.8546232684385266e-05 199 +1154 CISH cytokine inducible SH2 containing protein Novel U 0.7212781855910104 5.923002591960013 2.9970944657353774e-05 200 +5119 CHMP1A charged multivesicular body protein 1A Novel U 0.7193221355418622 5.906138126159913 3.3204393085926984e-05 201 +400581 GRAPL GRB2 related adaptor protein like Novel U 0.7161475258569573 5.878767611543962 3.918802207991316e-05 202 +56904 SH3GLB2 SH3 domain containing GRB2 like, endophilin B2 Known P 0.713697581179523 5.857644937181556 4.451111830445478e-05 203 +5286 PIK3C2A phosphatidylinositol-4-phosphate 3-kinase catalytic subunit type 2 alpha Novel U 0.7130878211848182 5.852387772835763 4.594162805778213e-05 204 +4068 SH2D1A SH2 domain containing 1A Novel U 0.712606245921519 5.84823577807386 4.710293705703959e-05 205 +3815 KIT KIT proto-oncogene, receptor tyrosine kinase Known P 0.7114490376171174 5.838258681689404 5.0011530096830776e-05 206 +201294 UNC13D unc-13 homolog D Novel U 0.7104679620802571 5.829800148204589 5.261366880568507e-05 207 +117157 SH2D1B SH2 domain containing 1B Novel U 0.7095443303856329 5.8218368779740235 5.518353828124712e-05 208 +23550 PSD4 pleckstrin and Sec7 domain containing 4 Known P 0.7090623857581522 5.817681698667017 5.65725453353256e-05 209 +9798 IST1 IST1 factor associated with ESCRT-III Novel U 0.701007123172941 5.748231686159274 8.550118642636464e-05 210 +27131 SNX5 sorting nexin 5 Novel U 0.6975842136507477 5.7187204062209105 0.00010175884444976518 211 +6642 SNX1 sorting nexin 1 Novel U 0.6931614739129941 5.680588895688975 0.00012726513469849473 212 +23317 DNAJC13 DnaJ heat shock protein family (Hsp40) member C13 Novel U 0.6926573551902904 5.676242538108846 0.00013053964792073062 213 +79958 DENND1C DENN domain containing 1C Novel U 0.6899691629066048 5.6530657656883 0.00014943095654702923 214 +3304 HSPA1B heat shock protein family A (Hsp70) member 1B Known P 0.6867427975966688 5.625249029888653 0.00017562655876165583 215 +138429 PIP5KL1 phosphatidylinositol-4-phosphate 5-kinase like 1 Novel U 0.6857579596322287 5.616758057902955 0.00018447520047833583 216 +5290 PIK3CA phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit alpha Novel U 0.6827185798886125 5.590553454517653 0.00021459958085819024 217 +11059 WWP1 WW domain containing E3 ubiquitin protein ligase 1 Known P 0.6826000841269946 5.589531820270547 0.00021586591410976968 218 +254122 SNX32 sorting nexin 32 Novel U 0.6818040964437384 5.582669057700939 0.00022456240226664524 219 +3107 HLA-C major histocompatibility complex, class I, C Known P 0.6806264281968871 5.572515561944767 0.00023805563664906933 220 +23624 CBLC Cbl proto-oncogene C Known P 0.6774085637950229 5.544772118376834 0.00027906114970082155 221 +27005 USP21 ubiquitin specific peptidase 21 Novel U 0.6757193318612423 5.530208076833989 0.00030325088651606707 222 +51715 RAB23 RAB23, member RAS oncogene family Novel U 0.6754740483936361 5.528093317729243 0.00030692827078360673 223 +154 ADRB2 adrenoceptor beta 2 Known P 0.6752974763751788 5.526570967742429 0.0003096022473943662 224 +6011 GRK1 G protein-coupled receptor kinase 1 Known P 0.6738401266316828 5.514006143586383 0.00033255209233602604 225 +9685 CLINT1 clathrin interactor 1 Novel U 0.6727584414276583 5.504680184295266 0.0003506443872903457 226 +5159 PDGFRB platelet derived growth factor receptor beta Novel U 0.671076282187068 5.490177121351857 0.0003806914243619695 227 +10802 SEC24A SEC24 homolog A, COPII coat complex component Novel U 0.670389640458697 5.484257106191673 0.0003936611091080989 228 +3305 HSPA1L heat shock protein family A (Hsp70) member 1 like Known P 0.6698754831423134 5.4798241989243985 0.00040365229773791695 229 +9267 CYTH1 cytohesin 1 Novel N 0.6691018176721453 5.473153891654883 0.0004191510968245936 230 +5899 RALB RAS like proto-oncogene B Novel U 0.6659947588101736 5.446365779592293 0.0004874121717896131 231 +3636 INPPL1 inositol polyphosphate phosphatase like 1 Novel U 0.6643639824992338 5.432305724566895 0.0005274328204897255 232 +164 AP1G1 adaptor related protein complex 1 subunit gamma 1 Novel U 0.6623250921330565 5.414727034867456 0.0005819653400772526 233 +5962 RDX radixin Novel U 0.6607214667916665 5.400901067204808 0.0006286565576421576 234 +857 CAV1 caveolin 1 Novel U 0.659741888009907 5.392455438285098 0.0006589421931162519 235 +3303 HSPA1A heat shock protein family A (Hsp70) member 1A Known P 0.6592591111562383 5.3882930837782075 0.000674383448041032 236 +57617 VPS18 VPS18 core subunit of CORVET and HOPS complexes Novel U 0.6582571671054528 5.379654628343264 0.0007075563247675468 237 +7010 TEK TEK receptor tyrosine kinase Novel U 0.6578626653462498 5.37625335472603 0.0007210467183791867 238 +3312 HSPA8 heat shock protein family A (Hsp70) member 8 Known P 0.6575142672613159 5.373249572900127 0.0007331674208683882 239 +8773 SNAP23 synaptosome associated protein 23 Novel U 0.6568519588900094 5.367539352508842 0.0007567553735936123 240 +23673 STX12 syntaxin 12 Novel U 0.6566000708454534 5.365367650759842 0.00076591782668706 241 +6272 SORT1 sortilin 1 Novel U 0.6565140092522926 5.364625654002042 0.0007690728777896769 242 +53917 RAB24 RAB24, member RAS oncogene family Novel U 0.6560978649042929 5.361037784597677 0.0007845073029030123 243 +116987 AGAP1 ArfGAP with GTPase domain, ankyrin repeat and PH domain 1 Known P 0.6525080000394711 5.330087066712861 0.0009307089361559858 244 +7187 TRAF3 TNF receptor associated factor 3 Novel U 0.651860424585486 5.324503869032684 0.0009597516528434172 245 +161 AP2A2 adaptor related protein complex 2 subunit alpha 2 Known P 0.6517451996354263 5.3235104347233495 0.0009650104204789148 246 +6237 RRAS RAS related Novel U 0.6511661650696655 5.318518175636931 0.0009918621243104146 247 +2263 FGFR2 fibroblast growth factor receptor 2 Known P 0.6510034670977398 5.317115443439725 0.0009995361806396554 248 +3106 HLA-B major histocompatibility complex, class I, B Known P 0.6509953085946516 5.317045103319148 0.0009999225060442261 249 +2066 ERBB4 erb-b2 receptor tyrosine kinase 4 Known P 0.6490840391537918 5.300566722239793 0.001094522338680574 250 +3105 HLA-A major histocompatibility complex, class I, A Known P 0.6484259213244655 5.294892631420931 0.0011290577698384327 251 +10640 EXOC5 exocyst complex component 5 Novel U 0.6471206550228502 5.283639024227598 0.001200699201671941 252 +8395 PIP5K1B phosphatidylinositol-4-phosphate 5-kinase type 1 beta Known P 0.646593540621117 5.279094404929824 0.001230860479739467 253 +85439 STON2 stonin 2 Novel U 0.6439928332020267 5.256671900278467 0.0013907268029149519 254 +9530 BAG4 BAG cochaperone 4 Novel U 0.6424093412523206 5.243019516566618 0.001497711886897563 255 +2868 GRK4 G protein-coupled receptor kinase 4 Known P 0.6422777421732453 5.241884909520466 0.0015069528322834566 256 +11276 SYNRG synergin gamma Novel U 0.6414509284651151 5.234756374384115 0.0015662860415994934 257 +22841 RAB11FIP2 RAB11 family interacting protein 2 Known P 0.6409012183150302 5.230016941448791 0.0016069774150122233 258 +4218 RAB8A RAB8A, member RAS oncogene family Novel U 0.6404850050701694 5.226428478036742 0.0016384649222439837 259 +156 GRK2 G protein-coupled receptor kinase 2 Known P 0.6385575122470735 5.209810223913238 0.001792230273634133 260 +64411 ARAP3 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 3 Known P 0.6371329075488954 5.197527717531795 0.001914748958001571 261 +29993 PACSIN1 protein kinase C and casein kinase substrate in neurons 1 Novel U 0.6363360430114792 5.190657394993566 0.0019867710140211137 262 +146691 TOM1L2 target of myb1 like 2 membrane trafficking protein Novel N 0.6354796892402483 5.18327417445992 0.002067087165704514 263 +131890 GRK7 G protein-coupled receptor kinase 7 Known P 0.6353859194971115 5.18246572038846 0.0020760699316885924 264 +50855 PARD6A par-6 family cell polarity regulator alpha Known P 0.632909430126413 5.161114185792173 0.002327437423319236 265 +26269 FBXO8 F-box protein 8 Novel U 0.6327133540538891 5.159423677811185 0.002348549672310275 266 +84552 PARD6G par-6 family cell polarity regulator gamma Known P 0.6321351534762228 5.154438609115271 0.0024118894338967327 267 +2321 FLT1 fms related receptor tyrosine kinase 1 Known P 0.6310725398300138 5.145277078967811 0.002532623890059668 268 +407 ARR3 arrestin 3 Novel N 0.6287812022753037 5.125521866750865 0.0028131523093622413 269 +1949 EFNB3 ephrin B3 Novel U 0.6254313071176638 5.096640094352179 0.0032779109849456287 270 +55647 RAB20 RAB20, member RAS oncogene family Novel U 0.6252994385387074 5.095503163760405 0.003297645506981686 271 +53916 RAB4B RAB4B, member RAS oncogene family Novel N 0.6251931001004876 5.094586346240641 0.0033136428480335335 272 +7409 VAV1 vav guanine nucleotide exchange factor 1 Novel U 0.6250245732802479 5.093133359494432 0.003339149221436576 273 +116983 ACAP3 ArfGAP with coiled-coil, ankyrin repeat and PH domains 3 Known P 0.6245309637764989 5.088877609188757 0.003414951660241213 274 +3133 HLA-E major histocompatibility complex, class I, E Known P 0.6244923022569541 5.088544281381308 0.003420958451512689 275 +8651 SOCS1 suppressor of cytokine signaling 1 Novel U 0.6205398403029463 5.054467362194816 0.004091938481169835 276 +8567 MADD MAP kinase activating death domain Novel U 0.6204961042403605 5.05409028322793 0.0041000302009186656 277 +9873 FCHSD2 FCH and double SH3 domains 2 Novel U 0.6177290852498238 5.030233891028533 0.00464456999688405 278 +84936 ZFYVE19 zinc finger FYVE-type containing 19 Novel U 0.6175844194254974 5.028986626497719 0.004674879875206274 279 +5341 PLEK pleckstrin Novel U 0.6166507454655786 5.020936774924469 0.004875138185020971 280 +4919 ROR1 receptor tyrosine kinase like orphan receptor 1 Novel U 0.6161057459003334 5.016237955212187 0.0049958291213909704 281 +1601 DAB2 DAB adaptor protein 2 Known P 0.6128078550103172 4.987804547717651 0.0057899807814806616 282 +9099 USP2 ubiquitin specific peptidase 2 Novel U 0.6066795896347967 4.934968516306081 0.007600319454482585 283 +8394 PIP5K1A phosphatidylinositol-4-phosphate 5-kinase type 1 alpha Known P 0.6050326026170321 4.920768697520057 0.008173092358190361 284 +7410 VAV2 vav guanine nucleotide exchange factor 2 Novel U 0.6050244430047023 4.920698347835938 0.008176030927459848 285 +23011 RAB21 RAB21, member RAS oncogene family Novel U 0.6037090291376154 4.90935725143397 0.008663300226268385 286 +6464 SHC1 SHC adaptor protein 1 Novel U 0.6008504222403882 4.884711216290232 0.009820472309630335 287 +8907 AP1M1 adaptor related protein complex 1 subunit mu 1 Novel U 0.5994025110532516 4.8722277684829125 0.010461984594558132 288 +100526783 ARPIN-AP3S2 ARPIN-AP3S2 readthrough Novel U 0.5988173721034266 4.867182879262452 0.010732517520366622 289 +9368 NHERF1 NHERF family PDZ scaffold protein 1 Novel U 0.598019134939506 4.860300722357945 0.011112450043523304 290 +11267 SNF8 SNF8 subunit of ESCRT-II Known P 0.5968459509339666 4.850185888360084 0.011694417488168634 291 +79837 PIP4K2C phosphatidylinositol-5-phosphate 4-kinase type 2 gamma Novel U 0.5945893054720813 4.8307297807663705 0.012897338144495615 292 +30849 PIK3R4 phosphoinositide-3-kinase regulatory subunit 4 Novel U 0.5935938354173956 4.822147142147497 0.013465022024006285 293 +5332 PLCB4 phospholipase C beta 4 Novel U 0.5919764946477905 4.808202924253895 0.014438912034048184 294 +9892 SNAP91 synaptosome associated protein 91 Novel U 0.591535032741563 4.804396774598951 0.014716290065155724 295 +2185 PTK2B protein tyrosine kinase 2 beta Novel U 0.5906156693367928 4.796470304259215 0.015310476694212776 296 +5898 RALA RAS like proto-oncogene A Novel U 0.5892150622942363 4.784394698331413 0.01626023539647538 297 +3268 AGFG2 ArfGAP with FG repeats 2 Novel U 0.5886385561369348 4.779424238410108 0.01666739888806675 298 +9179 AP4M1 adaptor related protein complex 4 subunit mu 1 Novel U 0.5850880479253583 4.74881284156309 0.01939947096707789 299 +3635 INPP5D inositol polyphosphate-5-phosphatase D Novel U 0.582879448029643 4.729770968159282 0.021310753433278453 300 +1796 DOK1 docking protein 1 Novel N 0.5818017920690363 4.720479747773669 0.022307753459884914 301 +51552 RAB14 RAB14, member RAS oncogene family Novel U 0.5764152258493054 4.674038419837208 0.02800062092221715 302 +60412 EXOC4 exocyst complex component 4 Novel U 0.5727147842879176 4.642134343464281 0.03269319257478352 303 +54734 RAB39A RAB39A, member RAS oncogene family Novel U 0.5714465127287153 4.6311996936352955 0.034468461560995825 304 +6814 STXBP3 syntaxin binding protein 3 Novel U 0.5695686180593034 4.615009059636806 0.03726774122103394 305 +3092 HIP1 huntingtin interacting protein 1 Novel U 0.5685140123852114 4.605916571777889 0.03893401251773866 306 +3265 HRAS HRas proto-oncogene, GTPase Known P 0.5665559183735758 4.5890344835578105 0.04221897559876514 307 +5156 PDGFRA platelet derived growth factor receptor alpha Known P 0.5651154322710636 4.576615052561189 0.0448034007444617 308 +3791 KDR kinase insert domain receptor Known P 0.5650681308452363 4.576207234121927 0.044890784242707545 309 +5335 PLCG1 phospholipase C gamma 1 Novel U 0.5635779108838606 4.563359012991701 0.04772889029351872 310 +9322 TRIP10 thyroid hormone receptor interactor 10 Novel U 0.5624261142776975 4.553428574615768 0.050039387227419546 311 +8874 ARHGEF7 Rho guanine nucleotide exchange factor 7 Novel U 0.5613091853361608 4.543798754589491 0.052381963282856984 312 +6813 STXBP2 syntaxin binding protein 2 Novel U 0.5583582108205691 4.518356354065623 0.05908704438859326 313 +1956 EGFR epidermal growth factor receptor Known P 0.5565654098838559 4.502899372227785 0.06355363431932053 314 +57561 ARRDC3 arrestin domain containing 3 Novel U 0.5559614203068154 4.497691958659788 0.0651298522040048 315 +9414 TJP2 tight junction protein 2 Novel U 0.5556625359977707 4.495115069479336 0.06592360729590277 316 +6293 VPS52 VPS52 subunit of GARP complex Novel U 0.5542337584186818 4.482796585793817 0.06984761484173405 317 +2324 FLT4 fms related receptor tyrosine kinase 4 Novel U 0.5535973366696016 4.4773095519490145 0.07166650720180949 318 +5336 PLCG2 phospholipase C gamma 2 Novel U 0.5526705942995416 4.469319462425392 0.0743963251325053 319 +5829 PXN paxillin Novel U 0.5522412885972661 4.465618119846266 0.07569432102965931 320 +378 ARF4 ADP ribosylation factor 4 Novel U 0.5520251684241163 4.463754797754695 0.07635592035098478 321 +79874 RABEP2 rabaptin, RAB GTPase binding effector protein 2 Novel U 0.5504088051786228 4.449819007775275 0.08148226035477654 322 +4893 NRAS NRAS proto-oncogene, GTPase Novel U 0.5490755115576181 4.438323757598669 0.08595680972774924 323 +80230 RUFY1 RUN and FYVE domain containing 1 Known P 0.5489116375032973 4.436910885578435 0.08652270630516395 324 +7189 TRAF6 TNF receptor associated factor 6 Known P 0.5479424674109266 4.42855499719798 0.08994295681310524 325 +1950 EGF epidermal growth factor Known P 0.5465634636709881 4.416665648343881 0.09503289121747709 326 +84612 PARD6B par-6 family cell polarity regulator beta Known P 0.5462357782485107 4.413840444764367 0.09628222516338968 327 +23355 VPS8 VPS8 subunit of CORVET complex Novel U 0.5460457487528825 4.41220206852168 0.09701390162009509 328 +8396 PIP4K2B phosphatidylinositol-5-phosphate 4-kinase type 2 beta Known P 0.5439820197925374 4.3944092280534255 0.10530964151586969 329 +5879 RAC1 Rac family small GTPase 1 Novel U 0.5416279632098192 4.374113271542478 0.11559904700688545 330 +4690 NCK1 NCK adaptor protein 1 Novel U 0.5407153708349828 4.366245178953761 0.11984040221894075 331 +57381 RHOJ ras homolog family member J Novel U 0.5398327336124511 4.358635350534615 0.12408350725702698 332 +83874 TBC1D10A TBC1 domain family member 10A Novel U 0.5378233417517175 4.341310987935051 0.1342842272352826 333 +3984 LIMK1 LIM domain kinase 1 Novel U 0.5377642091216367 4.340801164468059 0.13459620580848355 334 +55062 WIPI1 WD repeat domain, phosphoinositide interacting 1 Novel U 0.5359748391774513 4.325373763599362 0.14437045909310428 335 +441925 BECN2 beclin 2 Novel U 0.5332865901374402 4.302196501843121 0.16033625100140897 336 +9223 MAGI1 membrane associated guanylate kinase, WW and PDZ domain containing 1 Novel U 0.5332148211546149 4.3015777316041435 0.16078473438943133 337 +858 CAV2 caveolin 2 Novel U 0.5325892978944002 4.296184661200014 0.16474456008070834 338 +8239 USP9X ubiquitin specific peptidase 9 X-linked Novel U 0.5319984537489146 4.291090583525943 0.1685700600985553 339 +5921 RASA1 RAS p21 protein activator 1 Novel U 0.5310543603009552 4.28295089831076 0.1748589199355409 340 +5584 PRKCI protein kinase C iota Known P 0.529962794764359 4.27353975381141 0.18240871647650725 341 +10755 GIPC1 GIPC PDZ domain containing family member 1 Novel U 0.5273756202968629 4.251233926133342 0.20156224180756938 342 +26499 PLEK2 pleckstrin 2 Novel U 0.5270169565594927 4.248141636989078 0.20436400530380977 343 +23339 VPS39 VPS39 subunit of HOPS complex Novel U 0.5220949391915299 4.205705507297177 0.2467610031122565 344 +130162 CLHC1 clathrin heavy chain linker domain containing 1 Novel U 0.5202751331422846 4.1900156956312244 0.2644584247109765 345 +9185 REPS2 RALBP1 associated Eps domain containing 2 Novel U 0.5198827167864543 4.186632401724618 0.268429679875471 346 +3308 HSPA4 heat shock protein family A (Hsp70) member 4 Novel U 0.5190324349472022 4.179301531533052 0.2772299161138389 347 +2050 EPHB4 EPH receptor B4 Novel U 0.517179003254646 4.1633218098456934 0.29737233934256024 348 +8737 RIPK1 receptor interacting serine/threonine kinase 1 Novel U 0.5171686464193875 4.163232516376904 0.29748870572775665 349 +116986 AGAP2 ArfGAP with GTPase domain, ankyrin repeat and PH domain 2 Known P 0.516727906220496 4.159432589062073 0.3024810279204531 350 +9402 GRAP2 GRB2 related adaptor protein 2 Novel N 0.5140619764040879 4.1364477568314975 0.3344172578986314 351 +4233 MET MET proto-oncogene, receptor tyrosine kinase Known P 0.5127990253485856 4.12555897875959 0.35064092970129646 352 +56623 INPP5E inositol polyphosphate-5-phosphatase E Novel U 0.5109978432614547 4.110029737203936 0.37507610386133405 353 +1234 CCR5 C-C motif chemokine receptor 5 Known P 0.5101366501447985 4.102604793312826 0.38732228989308415 354 +57111 RAB25 RAB25, member RAS oncogene family Novel U 0.5094519471550775 4.096701493364849 0.39732854326425676 355 +3559 IL2RA interleukin 2 receptor subunit alpha Known P 0.5094197236355253 4.096423672026033 0.3978054493169755 356 +23607 CD2AP CD2 associated protein Novel U 0.5092492877953725 4.094954226293487 0.40033693519618063 357 +55165 CEP55 centrosomal protein 55 Novel U 0.5091146546464721 4.093793460424443 0.4023474404124663 358 +7186 TRAF2 TNF receptor associated factor 2 Novel U 0.506313749211149 4.069644909653011 0.44641142688026575 359 +10040 TOM1L1 target of myb1 like 1 membrane trafficking protein Novel U 0.5059064002859441 4.066132871696305 0.4531888582947426 360 +5590 PRKCZ protein kinase C zeta Known P 0.5046508119065706 4.0553075723681165 0.4746982769619767 361 +29899 GPSM2 G protein signaling modulator 2 Novel U 0.5040481611983939 4.050111702118336 0.4853626386415163 362 +5154 PDGFA platelet derived growth factor subunit A Novel U 0.503314271648111 4.043784330675471 0.49865607154830566 363 +10207 PATJ PATJ crumbs cell polarity complex component Novel U 0.502331003607189 4.035306894090613 0.5170081590411728 364 +377 ARF3 ADP ribosylation factor 3 Novel N 0.5006731327309502 4.02101323800268 0.5494082874079299 365 +64601 VPS16 VPS16 core subunit of CORVET and HOPS complexes Novel U 0.4994949887840923 4.010855640906414 0.5735919172773001 366 +6777 STAT5B signal transducer and activator of transcription 5B Novel U 0.4960355927535948 3.9810297854428844 0.6505610900537285 367 +6714 SRC SRC proto-oncogene, non-receptor tyrosine kinase Known P 0.4949018321737972 3.9712548481748815 0.6778445459825848 368 +54536 EXOC6 exocyst complex component 6 Novel U 0.49453936015619193 3.9681297252021537 0.6867932161460294 369 +9896 FIG4 FIG4 phosphoinositide 5-phosphatase Novel U 0.4940610092433404 3.964005529804524 0.6987738187705085 370 +65977 PLEKHA3 pleckstrin homology domain containing A3 Novel U 0.4930924968240808 3.955655311680664 0.7236386785351158 371 +4600 MX2 MX dynamin like GTPase 2 Novel U 0.4926812055403181 3.952109283913166 0.7344489507692058 372 +8988 HSPB3 heat shock protein family B (small) member 3 Novel U 0.49224501250689523 3.948348560869497 0.7460804782380606 373 +7405 UVRAG UV radiation resistance associated Novel U 0.4912316751136433 3.93961187551735 0.7737779434114505 374 +9140 ATG12 autophagy related 12 Novel U 0.488069674524716 3.91235007267387 0.866585053688888 375 +1362 CPD carboxypeptidase D Novel U 0.48657144494408816 3.899432795054006 0.9141418472587621 376 +55620 STAP2 signal transducing adaptor family member 2 Novel U 0.486220366603707 3.896405904884661 0.92563679092012 377 +10193 RNF41 ring finger protein 41 Known P 0.4852686747228253 3.8882007083027275 0.9574871476902167 378 +9367 RAB9A RAB9A, member RAS oncogene family Novel U 0.48367630789742483 3.874471808124599 1.0 379 +2064 ERBB2 erb-b2 receptor tyrosine kinase 2 Novel U 0.4814040628255333 3.854881205460292 1.0 380 +8417 STX7 syntaxin 7 Novel U 0.47967525854817133 3.8399759832634826 1.0 381 +80223 RAB11FIP1 RAB11 family interacting protein 1 Known P 0.4794410619787353 3.83795681200686 1.0 382 +2534 FYN FYN proto-oncogene, Src family tyrosine kinase Novel U 0.478229439158547 3.827510570295108 1.0 383 +5314 PKHD1 PKHD1 ciliary IPT domain containing fibrocystin/polyductin Novel U 0.47779293712717646 3.8237471831655574 1.0 384 +9554 SEC22B SEC22 homolog B, vesicle trafficking protein Novel U 0.47456956055733707 3.795956215369733 1.0 385 +57706 DENND1A DENN domain containing 1A Novel U 0.47442699182226655 3.794727031301663 1.0 386 +144100 PLEKHA7 pleckstrin homology domain containing A7 Novel U 0.4709674716678296 3.7649001056794567 1.0 387 +7082 TJP1 tight junction protein 1 Novel U 0.47030897466523874 3.759222745744573 1.0 388 +7294 TXK TXK tyrosine kinase Novel U 0.4702595033946584 3.758796219566905 1.0 389 +55971 BAIAP2L1 BAR/IMD domain containing adaptor protein 2 like 1 Novel U 0.4694090155983466 3.7514635736765056 1.0 390 +116984 ARAP2 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 2 Known P 0.46878362301571214 3.746071629934541 1.0 391 +2046 EPHA8 EPH receptor A8 Novel U 0.4684182486089607 3.742921483449499 1.0 392 +1147 CHUK component of inhibitor of nuclear factor kappa B kinase complex Novel U 0.4669203788961099 3.7300073084996415 1.0 393 +1176 AP3S1 adaptor related protein complex 3 subunit sigma 1 Novel U 0.466433188319297 3.725806900220533 1.0 394 +3480 IGF1R insulin like growth factor 1 receptor Known P 0.46483435492136876 3.7120222472301054 1.0 395 +22800 RRAS2 RAS related 2 Novel U 0.4642772464667284 3.7072190283736552 1.0 396 +157 GRK3 G protein-coupled receptor kinase 3 Known P 0.4633916080003128 3.699583324146853 1.0 397 +975 CD81 CD81 molecule Novel U 0.46284664177646995 3.6948847918939536 1.0 398 +9829 DNAJC6 DnaJ heat shock protein family (Hsp40) member C6 Known P 0.4625763459759686 3.6925543840981767 1.0 399 +9392 TGFBRAP1 transforming growth factor beta receptor associated protein 1 Novel U 0.46157228370451153 3.6838976660118825 1.0 400 +10239 AP3S2 adaptor related protein complex 3 subunit sigma 2 Novel U 0.45931117483814365 3.664403076308634 1.0 401 +738 VPS51 VPS51 subunit of GARP complex Novel U 0.4578690250431399 3.6519693014637364 1.0 402 +3127 HLA-DRB5 major histocompatibility complex, class II, DR beta 5 Novel U 0.45776505659407385 3.6510729172662417 1.0 403 +6844 VAMP2 vesicle associated membrane protein 2 Novel U 0.4575960965226113 3.6496161951603825 1.0 404 +22876 INPP5F inositol polyphosphate-5-phosphatase F Novel U 0.4552631664646917 3.6295023850904706 1.0 405 +3732 CD82 CD82 molecule Novel U 0.4542621721633513 3.620872118105021 1.0 406 +9610 RIN1 Ras and Rab interactor 1 Novel U 0.45386428408332435 3.617441648664424 1.0 407 +25759 SHC2 SHC adaptor protein 2 Novel U 0.4536256255580635 3.6153840077881507 1.0 408 +11154 AP4S1 adaptor related protein complex 4 subunit sigma 1 Novel U 0.4509934895753789 3.592690535665325 1.0 409 +1947 EFNB1 ephrin B1 Novel U 0.44907441613854665 3.576144870917417 1.0 410 +10413 YAP1 Yes1 associated transcriptional regulator Novel U 0.4485883248988884 3.571953940787324 1.0 411 +10628 TXNIP thioredoxin interacting protein Novel U 0.44788828809581843 3.565918437386312 1.0 412 +8615 USO1 USO1 vesicle transport factor Novel U 0.4477193670698574 3.5644620519188344 1.0 413 +10188 TNK2 tyrosine kinase non receptor 2 Novel U 0.44738914138578545 3.561614946980098 1.0 414 +3716 JAK1 Janus kinase 1 Novel U 0.44698323657616174 3.558115359746645 1.0 415 +5873 RAB27A RAB27A, member RAS oncogene family Novel U 0.44387627864301205 3.531328117861516 1.0 416 +274 BIN1 bridging integrator 1 Novel U 0.44189222621834306 3.5142222241365553 1.0 417 +125467750 EFNA4-EFNA3 EFNA4-EFNA3 readthrough Novel U 0.44155775262287067 3.5113384950037867 1.0 418 +10461 MERTK MER proto-oncogene, tyrosine kinase Novel U 0.439226380363195 3.4912381157943075 1.0 419 +85021 REPS1 RALBP1 associated Eps domain containing 1 Novel N 0.437419571514828 3.475660362022684 1.0 420 +5880 RAC2 Rac family small GTPase 2 Novel U 0.4373146834500608 3.474756049179628 1.0 421 +8517 IKBKG inhibitor of nuclear factor kappa B kinase regulatory subunit gamma Novel U 0.43609575374453824 3.4642468097353394 1.0 422 +376267 RAB15 RAB15, member RAS oncogene family Novel U 0.43545160990465087 3.458693198383291 1.0 423 +1237 CCR8 C-C motif chemokine receptor 8 Novel U 0.4343817624365702 3.4494693004341426 1.0 424 +6373 CXCL11 C-X-C motif chemokine ligand 11 Novel U 0.433846205870575 3.444851895375832 1.0 425 +9529 BAG5 BAG cochaperone 5 Novel U 0.4303611706666323 3.414804986793597 1.0 426 +8898 MTMR2 myotubularin related protein 2 Novel U 0.4302586568032242 3.413921143589158 1.0 427 +6653 SORL1 sortilin related receptor 1 Novel U 0.42804763609562047 3.394858398684991 1.0 428 +51196 PLCE1 phospholipase C epsilon 1 Novel U 0.4268385390871331 3.384433933749895 1.0 429 +3718 JAK3 Janus kinase 3 Novel U 0.4241751593214256 3.361471087277224 1.0 430 +3916 LAMP1 lysosomal associated membrane protein 1 Novel U 0.42350567215437995 3.355698973502751 1.0 431 +4040 LRP6 LDL receptor related protein 6 Novel U 0.42313357100874704 3.3524908311306088 1.0 432 +11311 VPS45 vacuolar protein sorting 45 homolog Known P 0.42299320880652425 3.3512806711144862 1.0 433 +613 BCR BCR activator of RhoGEF and GTPase Novel U 0.42160011022070004 3.3392698008062194 1.0 434 +1399 CRKL CRK like proto-oncogene, adaptor protein Novel U 0.4201516474641166 3.3267815975356756 1.0 435 +2057 EPOR erythropoietin receptor Novel U 0.4195791962690906 3.321846098260008 1.0 436 +26985 AP3M1 adaptor related protein complex 3 subunit mu 1 Novel U 0.41719464928617783 3.3012872628357433 1.0 437 +55614 KIF16B kinesin family member 16B Novel U 0.41639449783614774 3.2943886015413613 1.0 438 +89848 FCHSD1 FCH and double SH3 domains 1 Novel U 0.4160402115750061 3.2913340536594857 1.0 439 +23149 FCHO1 FCH and mu domain containing endocytic adaptor 1 Novel U 0.4156288224343002 3.287787182199326 1.0 440 +23041 MON2 MON2 homolog, regulator of endosome-to-Golgi trafficking Novel U 0.4145959576831552 3.2788821379345348 1.0 441 +8826 IQGAP1 IQ motif containing GTPase activating protein 1 Novel U 0.41318115918884096 3.2666841776462565 1.0 442 +51430 SUCO SUN domain containing ossification factor Novel U 0.4129416054568879 3.2646188185714373 1.0 443 +3996 LLGL1 LLGL scribble cell polarity complex component 1 Novel U 0.41143931218037627 3.251666505007435 1.0 444 +4599 MX1 MX dynamin like GTPase 1 Novel N 0.40869564701756333 3.228011462374281 1.0 445 +81876 RAB1B RAB1B, member RAS oncogene family Novel U 0.4082151200691872 3.2238685058633045 1.0 446 +9230 RAB11B RAB11B, member RAS oncogene family Known P 0.4047623140496087 3.194099467460163 1.0 447 +23362 PSD3 pleckstrin and Sec7 domain containing 3 Known P 0.4034884337032689 3.1831164603823936 1.0 448 +8821 INPP4B inositol polyphosphate-4-phosphatase type II B Novel U 0.4019942195680376 3.1702338027057113 1.0 449 +80762 NDFIP1 Nedd4 family interacting protein 1 Novel U 0.3991192676571055 3.145446845848468 1.0 450 +26003 GORASP2 golgi reassembly stacking protein 2 Novel U 0.39903601131339833 3.1447290350942385 1.0 451 +4645 MYO5B myosin VB Novel U 0.39798676406469474 3.135682745941609 1.0 452 +6453 ITSN1 intersectin 1 Novel U 0.39603200869162064 3.1188294424429976 1.0 453 +6775 STAT4 signal transducer and activator of transcription 4 Novel U 0.39512813355424914 3.1110365072119177 1.0 454 +7879 RAB7A RAB7A, member RAS oncogene family Novel U 0.3949364312901295 3.109383708870457 1.0 455 +113026 PLCD3 phospholipase C delta 3 Novel U 0.39463010424527345 3.1067426506961677 1.0 456 +8897 MTMR3 myotubularin related protein 3 Novel U 0.3945534023550902 3.1060813504373312 1.0 457 +2149 F2R coagulation factor II thrombin receptor Known P 0.39431509173339097 3.104026709079255 1.0 458 +83737 ITCH itchy E3 ubiquitin protein ligase Known P 0.39331180015189393 3.0953766356462915 1.0 459 +55275 VPS53 VPS53 subunit of GARP complex Novel U 0.3931890139838603 3.0943180108261186 1.0 460 +122809 SOCS4 suppressor of cytokine signaling 4 Novel U 0.3925166781159855 3.0885213364235944 1.0 461 +4036 LRP2 LDL receptor related protein 2 Novel U 0.3895922004260483 3.063307383433702 1.0 462 +25831 HECTD1 HECT domain E3 ubiquitin protein ligase 1 Novel U 0.38893334496176396 3.0576269329516346 1.0 463 +10427 SEC24B SEC24 homolog B, COPII coat complex component Novel U 0.38871950295425484 3.0557832525080624 1.0 464 +83871 RAB34 RAB34, member RAS oncogene family Novel U 0.3880846628189955 3.0503098548543197 1.0 465 +5305 PIP4K2A phosphatidylinositol-5-phosphate 4-kinase type 2 alpha Novel U 0.38772403602906447 3.0472006408707406 1.0 466 +9784 SNX17 sorting nexin 17 Novel U 0.3871945966677114 3.0426359764815785 1.0 467 +392 ARHGAP1 Rho GTPase activating protein 1 Novel U 0.38715021366771646 3.042253319818041 1.0 468 +2322 FLT3 fms related receptor tyrosine kinase 3 Novel U 0.3871424687976902 3.0421865459153272 1.0 469 +9306 SOCS6 suppressor of cytokine signaling 6 Novel U 0.3864602512791811 3.036304674940638 1.0 470 +22931 RAB18 RAB18, member RAS oncogene family Novel U 0.3860002631027175 3.032338797444917 1.0 471 +116442 RAB39B RAB39B, member RAS oncogene family Novel U 0.3850472661497778 3.024122348930499 1.0 472 +4067 LYN LYN proto-oncogene, Src family tyrosine kinase Novel U 0.3848058688666551 3.022041095320842 1.0 473 +7917 BAG6 BAG cochaperone 6 Novel U 0.3842171780802011 3.0169655832503253 1.0 474 +57537 SORCS2 sortilin related VPS10 domain containing receptor 2 Novel U 0.38272717423833147 3.004119225436439 1.0 475 +126432 RINL Ras and Rab interactor like Novel U 0.3799539906969049 2.980209684363013 1.0 476 +4902 NRTN neurturin Novel U 0.37967632569948634 2.9778157416032713 1.0 477 +7462 LAT2 linker for activation of T cells family member 2 Novel U 0.37880263395113906 2.970283038329013 1.0 478 +3577 CXCR1 C-X-C motif chemokine receptor 1 Known P 0.37850893400068697 2.967750847104127 1.0 479 +6608 SMO smoothened, frizzled class receptor Novel U 0.37805925320596734 2.9638738367041055 1.0 480 +25 ABL1 ABL proto-oncogene 1, non-receptor tyrosine kinase Novel U 0.3775749282367575 2.9596981348180877 1.0 481 +928 CD9 CD9 molecule Novel U 0.37599723750685465 2.946095767450664 1.0 482 +56288 PARD3 par-3 family cell polarity regulator Known P 0.3744590453283267 2.9328339445233516 1.0 483 +10451 VAV3 vav guanine nucleotide exchange factor 3 Novel U 0.3739459070698201 2.9284098232616915 1.0 484 +3645 INSRR insulin receptor related receptor Novel U 0.37335846855656657 2.9233451079080437 1.0 485 +10817 FRS3 fibroblast growth factor receptor substrate 3 Novel U 0.37334701896111017 2.9232463929947503 1.0 486 +23075 SWAP70 switching B cell complex subunit SWAP70 Novel U 0.3727960705426921 2.9184962840882442 1.0 487 +22872 SEC31A SEC31 homolog A, COPII coat complex component Novel U 0.37270776915620996 2.917734976516856 1.0 488 +5912 RAP2B RAP2B, member of RAS oncogene family Novel U 0.37216377436217907 2.91304481963495 1.0 489 +3118 HLA-DQA2 major histocompatibility complex, class II, DQ alpha 2 Novel U 0.37189763971266754 2.9107502880114553 1.0 490 +3120 HLA-DQB2 major histocompatibility complex, class II, DQ beta 2 Novel U 0.3702537943718069 2.896577555803673 1.0 491 +84249 PSD2 pleckstrin and Sec7 domain containing 2 Known P 0.36916565462083784 2.8871959473811595 1.0 492 +10803 CCR9 C-C motif chemokine receptor 9 Novel U 0.3686416881706099 2.8826784687593237 1.0 493 +4035 LRP1 LDL receptor related protein 1 Novel U 0.36554955048674853 2.8560190025348335 1.0 494 +64149 C17orf75 chromosome 17 open reading frame 75 Novel U 0.3648681100960846 2.850143831718953 1.0 495 +695 BTK Bruton tyrosine kinase Novel U 0.3645209181327843 2.8471504487052117 1.0 496 +6643 SNX2 sorting nexin 2 Novel U 0.36413690563872114 2.843839610326736 1.0 497 +55823 VPS11 VPS11 core subunit of CORVET and HOPS complexes Novel U 0.3634657213025148 2.8380528640783758 1.0 498 +9655 SOCS5 suppressor of cytokine signaling 5 Novel U 0.36292316196256535 2.833375083242917 1.0 499 +8835 SOCS2 suppressor of cytokine signaling 2 Novel U 0.3624931731496217 2.8296678510923536 1.0 500 +5874 RAB27B RAB27B, member RAS oncogene family Novel U 0.36153230418516114 2.8213835325001075 1.0 501 +79961 DENND2D DENN domain containing 2D Novel U 0.3610469381857213 2.8171988551695617 1.0 502 +6774 STAT3 signal transducer and activator of transcription 3 Novel U 0.3608095059225149 2.8151517867500044 1.0 503 +3266 ERAS ES cell expressed Ras Novel U 0.36046516905279763 2.8121830194806865 1.0 504 +221302 ZUP1 zinc finger containing ubiquitin peptidase 1 Novel U 0.35991282765147037 2.8074209007012003 1.0 505 +10652 YKT6 YKT6 v-SNARE homolog Novel U 0.3598375681450037 2.8067720362340087 1.0 506 +150786 RAB6D RAB6D, member RAS oncogene family Novel U 0.3590589928989728 2.800059398377319 1.0 507 +79658 ARHGAP10 Rho GTPase activating protein 10 Novel U 0.3584786187368856 2.7950555897007248 1.0 508 +51019 WASHC3 WASH complex subunit 3 Novel U 0.35707058879944326 2.7829159858414823 1.0 509 +1944 EFNA3 ephrin A3 Novel U 0.3569445969749526 2.7818297228309112 1.0 510 +3382 ICA1 islet cell autoantigen 1 Novel U 0.3569236181326163 2.781648849662936 1.0 511 +5578 PRKCA protein kinase C alpha Novel U 0.35614488195787297 2.774934824328064 1.0 512 +3561 IL2RG interleukin 2 receptor subunit gamma Known P 0.3558078511031728 2.7720290472876736 1.0 513 +2049 EPHB3 EPH receptor B3 Novel U 0.35480375149629256 2.7633720073067702 1.0 514 +26228 STAP1 signal transducing adaptor family member 1 Novel N 0.35370869798271054 2.7539307905356933 1.0 515 +917 CD3G CD3 gamma subunit of T-cell receptor complex Novel U 0.3526369849467425 2.7446908082302954 1.0 516 +10133 OPTN optineurin Novel U 0.3526113837155066 2.744470082237723 1.0 517 +4868 NPHS1 NPHS1 adhesion molecule, nephrin Novel U 0.3519402718373003 2.7386839607000977 1.0 518 +117177 RAB3IP RAB3A interacting protein Novel U 0.3516993682813884 2.7366069638555808 1.0 519 +7006 TEC tec protein tyrosine kinase Novel U 0.35161126371184137 2.7358473531796643 1.0 520 +7852 CXCR4 C-X-C motif chemokine receptor 4 Known P 0.3512043641624339 2.732339189603765 1.0 521 +660 BMX BMX non-receptor tyrosine kinase Novel U 0.3501909546387273 2.7236018823648793 1.0 522 +25930 PTPN23 protein tyrosine phosphatase non-receptor type 23 Novel U 0.35003001510247755 2.722214310862734 1.0 523 +55680 RUFY2 RUN and FYVE domain containing 2 Novel U 0.34953800431463483 2.7179723441970722 1.0 524 +100287171 WASHC1 WASH complex subunit 1 Novel U 0.34848674729339213 2.70890872739975 1.0 525 +273 AMPH amphiphysin Novel U 0.34805947747689997 2.7052249376057294 1.0 526 +4193 MDM2 MDM2 proto-oncogene Known P 0.34594498675204516 2.6869944447154936 1.0 527 +51375 SNX7 sorting nexin 7 Novel U 0.3445437523715382 2.674913430071582 1.0 528 +399665 EEIG1 estrogen-induced osteoclastogenesis regulator 1 Novel U 0.344098866093864 2.671077756532432 1.0 529 +389337 ARHGEF37 Rho guanine nucleotide exchange factor 37 Novel U 0.3428299505348668 2.660137554334007 1.0 530 +57580 PREX1 phosphatidylinositol-3,4,5-trisphosphate dependent Rac exchange factor 1 Novel U 0.34145887667086333 2.648316574447032 1.0 531 +2260 FGFR1 fibroblast growth factor receptor 1 Novel U 0.34110609050799434 2.6452749599540675 1.0 532 +3656 IRAK2 interleukin 1 receptor associated kinase 2 Novel U 0.34047717612204353 2.6398526523000907 1.0 533 +284119 CAVIN1 caveolae associated protein 1 Novel U 0.3402329233928346 2.637746779906837 1.0 534 +84251 SGIP1 SH3GL interacting endocytic adaptor 1 Novel U 0.3398756289884731 2.6346662967333385 1.0 535 +7454 WAS WASP actin nucleation promoting factor Novel U 0.3391715938734482 2.628596321108442 1.0 536 +326624 RAB37 RAB37, member RAS oncogene family Novel U 0.33807132864843603 2.6191101705539936 1.0 537 +4983 OPHN1 oligophrenin 1 Novel U 0.3374571955062977 2.613815302267362 1.0 538 +1232 CCR3 C-C motif chemokine receptor 3 Novel U 0.3373100579191941 2.6125467269531986 1.0 539 +1946 EFNA5 ephrin A5 Novel U 0.33708399311033277 2.6105976652513734 1.0 540 +5894 RAF1 Raf-1 proto-oncogene, serine/threonine kinase Novel U 0.3340090637683529 2.5840865640921145 1.0 541 +10548 TM9SF1 transmembrane 9 superfamily member 1 Novel U 0.33355712413114375 2.5801900786423984 1.0 542 +1315 COPB1 COPI coat complex subunit beta 1 Novel N 0.3335531504867907 2.5801558190950393 1.0 543 +3575 IL7R interleukin 7 receptor Novel U 0.33318389441634466 2.576972206091769 1.0 544 +84100 ARL6 ADP ribosylation factor like GTPase 6 Novel U 0.3325600642728299 2.571593733222449 1.0 545 +10311 VPS26C VPS26 endosomal protein sorting factor C Novel U 0.3310375894057279 2.5584674201514037 1.0 546 +5337 PLD1 phospholipase D1 Known P 0.3303339788304608 2.55240110477857 1.0 547 +23111 SPART spartin Novel U 0.33025271113277876 2.5517004395226843 1.0 548 +6767 ST13 ST13 Hsp70 interacting protein Novel U 0.32998294335567274 2.5493745841832705 1.0 549 +11060 WWP2 WW domain containing E3 ubiquitin protein ligase 2 Novel U 0.3297198248583886 2.547106056902613 1.0 550 +9021 SOCS3 suppressor of cytokine signaling 3 Novel U 0.32575278113145056 2.512903418125769 1.0 551 +9342 SNAP29 synaptosome associated protein 29 Novel U 0.3254439031861428 2.5102403668672815 1.0 552 +3117 HLA-DQA1 major histocompatibility complex, class II, DQ alpha 1 Novel U 0.32523295939427355 2.508421673953329 1.0 553 +2056 EPO erythropoietin Novel U 0.3243571959686701 2.5008711093108245 1.0 554 +2051 EPHB6 EPH receptor B6 Novel U 0.32419640453265364 2.499484814683635 1.0 555 +8440 NCK2 NCK adaptor protein 2 Novel U 0.3237552384945439 2.495681215913191 1.0 556 +5900 RALGDS ral guanine nucleotide dissociation stimulator Novel U 0.3230550756759137 2.489644626044526 1.0 557 +2885 GRB2 growth factor receptor bound protein 2 Novel U 0.32181761514541724 2.4789756194899044 1.0 558 +27040 LAT linker for activation of T cells Novel U 0.32163164170525876 2.4773722133180405 1.0 559 +9618 TRAF4 TNF receptor associated factor 4 Novel U 0.32135345485699107 2.474973771319743 1.0 560 +10497 UNC13B unc-13 homolog B Novel U 0.3206692325713836 2.469074615855741 1.0 561 +23236 PLCB1 phospholipase C beta 1 Novel U 0.3203875166745883 2.466645747479435 1.0 562 +11213 IRAK3 interleukin 1 receptor associated kinase 3 Novel U 0.3198474870136918 2.4619897767637604 1.0 563 +6868 ADAM17 ADAM metallopeptidase domain 17 Novel U 0.31936887715053025 2.457863348775687 1.0 564 +51655 RASD1 ras related dexamethasone induced 1 Novel N 0.3193613294509664 2.4577982748164495 1.0 565 +55824 PAG1 phosphoprotein membrane anchor with glycosphingolipid microdomains 1 Novel N 0.3187283707726034 2.452341098509137 1.0 566 +26086 GPSM1 G protein signaling modulator 1 Novel U 0.3180097312040948 2.4461452077490877 1.0 567 +85415 RHPN2 rhophilin Rho GTPase binding protein 2 Novel U 0.3155918351052617 2.4252988464380763 1.0 568 +30837 SOCS7 suppressor of cytokine signaling 7 Novel U 0.31401085544659463 2.411668122931869 1.0 569 +8976 WASL WASP like actin nucleation promoting factor Novel U 0.3130167218623595 2.403097006952825 1.0 570 +50848 F11R F11 receptor Novel U 0.31272139580212216 2.400550795906273 1.0 571 +5116 PCNT pericentrin Novel U 0.31267171349099854 2.4001224502015295 1.0 572 +25865 PRKD2 protein kinase D2 Novel U 0.312099945618318 2.395192842322316 1.0 573 +64236 PDLIM2 PDZ and LIM domain 2 Novel U 0.3119729650453907 2.394098054624864 1.0 574 +3115 HLA-DPB1 major histocompatibility complex, class II, DP beta 1 Novel U 0.3115522441604697 2.3904707277176476 1.0 575 +10981 RAB32 RAB32, member RAS oncogene family Novel U 0.31112372177747616 2.386776138678006 1.0 576 +9765 ZFYVE16 zinc finger FYVE-type containing 16 Novel U 0.31107025267447874 2.3863151444108834 1.0 577 +6259 RYK receptor like tyrosine kinase Novel U 0.3108910181704679 2.384769839287222 1.0 578 +55529 PIP4P2 phosphatidylinositol-4,5-bisphosphate 4-phosphatase 2 Novel U 0.31066870195204127 2.382853096786642 1.0 579 +6843 VAMP1 vesicle associated membrane protein 1 Novel U 0.30995123283199794 2.3766672972755982 1.0 580 +23426 GRIP1 glutamate receptor interacting protein 1 Novel U 0.3095073208864076 2.372840024129942 1.0 581 +8678 BECN1 beclin 1 Novel U 0.30918741661539717 2.3700819072606367 1.0 582 +389 RHOC ras homolog family member C Novel U 0.30897287685668 2.3682322110193663 1.0 583 +58480 RHOU ras homolog family member U Novel U 0.3089333011571472 2.3678910014314125 1.0 584 +10000 AKT3 AKT serine/threonine kinase 3 Novel U 0.3089312447080909 2.3678732713560526 1.0 585 +55593 OTUD5 OTU deubiquitinase 5 Novel U 0.308393443461223 2.3632365133451803 1.0 586 +659 BMPR2 bone morphogenetic protein receptor type 2 Novel U 0.30814889907248194 2.3611281263525647 1.0 587 +3281 HSBP1 heat shock factor binding protein 1 Novel U 0.3080531227880289 2.3603023724950276 1.0 588 +387 RHOA ras homolog family member A Novel U 0.30773642556843206 2.3575719058430096 1.0 589 +4301 AFDN afadin, adherens junction formation factor Novel U 0.30772912452089735 2.357508958442197 1.0 590 +2647 BLOC1S1 biogenesis of lysosomal organelles complex 1 subunit 1 Novel U 0.30754656427668886 2.3559349798028197 1.0 591 +3821 KLRC1 killer cell lectin like receptor C1 Novel U 0.307539633457173 2.355875224394852 1.0 592 +116988 AGAP3 ArfGAP with GTPase domain, ankyrin repeat and PH domain 3 Novel U 0.3070145039165595 2.351347717963125 1.0 593 +6416 MAP2K4 mitogen-activated protein kinase kinase 4 Novel U 0.3066817189021438 2.3484785472602367 1.0 594 +959 CD40LG CD40 ligand Novel U 0.30641685191141216 2.3461949450033757 1.0 595 +83547 RILP Rab interacting lysosomal protein Novel U 0.3064065379116542 2.3461060208491817 1.0 596 +208 AKT2 AKT serine/threonine kinase 2 Novel U 0.305704736235668 2.340055301253191 1.0 597 +9531 BAG3 BAG cochaperone 3 Novel U 0.305644069106399 2.339532247803105 1.0 598 +23265 EXOC7 exocyst complex component 7 Novel U 0.3048593847805086 2.33276693932666 1.0 599 +3315 HSPB1 heat shock protein family B (small) member 1 Novel U 0.3046469830430034 2.3309356764509483 1.0 600 +149371 EXOC8 exocyst complex component 8 Novel U 0.3046407548880484 2.3308819792021067 1.0 601 +54477 PLEKHA5 pleckstrin homology domain containing A5 Novel U 0.30347129963915187 2.320799293404598 1.0 602 +4771 NF2 NF2, moesin-ezrin-radixin like (MERLIN) tumor suppressor Novel U 0.303362941141913 2.319865059553255 1.0 603 +10484 SEC23A SEC23 homolog A, COPII coat complex component Novel U 0.3032372303780311 2.3187812197613673 1.0 604 +79917 MAGIX MAGI family member, X-linked Novel U 0.3027403217776574 2.3144970256527215 1.0 605 +54862 CC2D1A coiled-coil and C2 domain containing 1A Novel N 0.30224982965541486 2.3102681524577955 1.0 606 +5979 RET ret proto-oncogene Known P 0.30216394407983016 2.3095276732697494 1.0 607 +27111 SDCBP2 syndecan binding protein 2 Novel N 0.3020815977033642 2.308817707975008 1.0 608 +399694 SHC4 SHC adaptor protein 4 Novel U 0.30192798124513787 2.3074932738138174 1.0 609 +84932 RAB2B RAB2B, member RAS oncogene family Novel U 0.30163675015844493 2.3049823683778357 1.0 610 +23533 PIK3R5 phosphoinositide-3-kinase regulatory subunit 5 Novel U 0.30154719810819947 2.304210277965655 1.0 611 +5881 RAC3 Rac family small GTPase 3 Novel U 0.30142411662534274 2.3031491070313184 1.0 612 +79441 HAUS3 HAUS augmin like complex subunit 3 Novel U 0.29906772331631976 2.2828330039802203 1.0 613 +939 CD27 CD27 molecule Novel U 0.2989716921260558 2.282005052402675 1.0 614 +5911 RAP2A RAP2A, member of RAS oncogene family Novel U 0.2980916707301956 2.274417776841754 1.0 615 +387755 INSC INSC spindle orientation adaptor protein Novel N 0.29787003598596407 2.272506909803442 1.0 616 +51182 HSPA14 heat shock protein family A (Hsp70) member 14 Novel U 0.2977694124061259 2.2716393640463166 1.0 617 +4168 MCF2 MCF.2 cell line derived transforming sequence Novel U 0.29760555317368576 2.270226619815809 1.0 618 +5862 RAB2A RAB2A, member RAS oncogene family Novel U 0.2970540927498035 2.265472096554648 1.0 619 +51542 VPS54 VPS54 subunit of GARP complex Novel U 0.2954545108385428 2.2516809901109958 1.0 620 +2767 GNA11 G protein subunit alpha 11 Novel U 0.2941356881689158 2.240310504055178 1.0 621 +1942 EFNA1 ephrin A1 Novel U 0.29290905006065515 2.229734805117992 1.0 622 +5364 PLXNB1 plexin B1 Novel U 0.2922764643328825 2.224280844276705 1.0 623 +10947 AP3M2 adaptor related protein complex 3 subunit mu 2 Novel U 0.29006549914237767 2.2052185780239997 1.0 624 +2242 FES FES proto-oncogene, tyrosine kinase Novel U 0.28928488680191566 2.198488376961614 1.0 625 +3579 CXCR2 C-X-C motif chemokine receptor 2 Known P 0.28915721615906886 2.1973876396921845 1.0 626 +8677 STX10 syntaxin 10 Novel U 0.28874653696689717 2.193846889191344 1.0 627 +1073 CFL2 cofilin 2 Novel U 0.28829955697543114 2.1899931642916717 1.0 628 +9560 CCL4L2 C-C motif chemokine ligand 4 like 2 Novel U 0.28828552327690604 2.1898721700313613 1.0 629 +8546 AP3B1 adaptor related protein complex 3 subunit beta 1 Novel U 0.2878979869568648 2.186530950302103 1.0 630 +2017 CTTN cortactin Novel U 0.2878365463708402 2.1860012283442205 1.0 631 +29886 SNX8 sorting nexin 8 Novel U 0.28769032151040225 2.1847405222804603 1.0 632 +10617 STAMBP STAM binding protein Known P 0.2872521042282298 2.1809623467826356 1.0 633 +83452 RAB33B RAB33B, member RAS oncogene family Novel U 0.28723579776065855 2.1808217574021156 1.0 634 +2769 GNA15 G protein subunit alpha 15 Novel U 0.28706007191274024 2.1793067028391198 1.0 635 +355 FAS Fas cell surface death receptor Novel U 0.28679219656634003 2.176997163458967 1.0 636 +26281 FGF20 fibroblast growth factor 20 Novel U 0.28660104558398397 2.1753491181004128 1.0 637 +200014 CC2D1B coiled-coil and C2 domain containing 1B Novel U 0.28561042904763284 2.1668083250334966 1.0 638 +9532 BAG2 BAG cochaperone 2 Novel U 0.28524676474837385 2.163672922572684 1.0 639 +3309 HSPA5 heat shock protein family A (Hsp70) member 5 Novel U 0.2850379522417674 2.1618726049489965 1.0 640 +9641 IKBKE inhibitor of nuclear factor kappa B kinase subunit epsilon Novel U 0.28494466663522516 2.1610683249553135 1.0 641 +10618 TGOLN2 trans-golgi network protein 2 Novel U 0.284786552899693 2.1597051166434555 1.0 642 +640 BLK BLK proto-oncogene, Src family tyrosine kinase Novel U 0.28408388666713474 2.153646943104888 1.0 643 +6361 CCL17 C-C motif chemokine ligand 17 Novel U 0.28264218386623446 2.141217022106559 1.0 644 +9522 SCAMP1 secretory carrier membrane protein 1 Novel U 0.28129643285911726 2.129614368153578 1.0 645 +7525 YES1 YES proto-oncogene 1, Src family tyrosine kinase Novel U 0.28098039798185387 2.1268896120147627 1.0 646 +7188 TRAF5 TNF receptor associated factor 5 Novel U 0.28058723956167875 2.123499920256133 1.0 647 +3082 HGF hepatocyte growth factor Novel U 0.2797328472994622 2.1161336112538174 1.0 648 +1943 EFNA2 ephrin A2 Novel N 0.2796311231567598 2.115256576779983 1.0 649 +643 CXCR5 C-X-C motif chemokine receptor 5 Novel U 0.27949763908918535 2.1141057179389997 1.0 650 +29941 PKN3 protein kinase N3 Novel N 0.27836201429877155 2.1043147080167235 1.0 651 +1443 CSH2 chorionic somatomammotropin hormone 2 Novel U 0.27705303525282843 2.093029090676325 1.0 652 +84084 RAB6C RAB6C, member RAS oncogene family Novel U 0.27693773918094255 2.092035043176338 1.0 653 +9050 PSTPIP2 proline-serine-threonine phosphatase interacting protein 2 Novel U 0.275103526928593 2.076221025629424 1.0 654 +2776 GNAQ G protein subunit alpha q Novel U 0.2747105389784029 2.072832803610914 1.0 655 +8711 TNK1 tyrosine kinase non receptor 1 Novel U 0.2745391707220927 2.071355318871183 1.0 656 +23365 ARHGEF12 Rho guanine nucleotide exchange factor 12 Novel U 0.27451933733256845 2.07118432144733 1.0 657 +2580 GAK cyclin G associated kinase Novel U 0.2733983833934834 2.061519799122137 1.0 658 +81 ACTN4 actinin alpha 4 Novel U 0.2726953156372493 2.055458163769133 1.0 659 +23268 DNMBP dynamin binding protein Novel U 0.2726325177740685 2.054916739782363 1.0 660 +9110 MTMR4 myotubularin related protein 4 Novel U 0.27208134887899305 2.0501647299934893 1.0 661 +55909 BIN3 bridging integrator 3 Novel N 0.2718815790028052 2.0484423751660517 1.0 662 +100507436 MICA MHC class I polypeptide-related sequence A Novel U 0.2718486480306647 2.0481584543872002 1.0 663 +23682 RAB38 RAB38, member RAS oncogene family Novel U 0.2715864673977174 2.045898013086266 1.0 664 +9711 RUBCN rubicon autophagy regulator Novel U 0.27153202696424167 2.0454286443045757 1.0 665 +102724862 TBC1D3I TBC1 domain family member 3I Novel U 0.27122542380393105 2.0427852055472124 1.0 666 +29763 PACSIN3 protein kinase C and casein kinase substrate in neurons 3 Novel U 0.27109326858934035 2.0416458036705887 1.0 667 +2268 FGR FGR proto-oncogene, Src family tyrosine kinase Novel U 0.27082810646716055 2.039359656880566 1.0 668 +474383 F8A2 coagulation factor VIII associated 2 Novel U 0.2704597714290221 2.0361839847364056 1.0 669 +2254 FGF9 fibroblast growth factor 9 Novel U 0.2701503178941513 2.0335159709205928 1.0 670 +11336 EXOC3 exocyst complex component 3 Novel U 0.26925057348246717 2.0257586495441355 1.0 671 +6478 SIAH2 siah E3 ubiquitin protein ligase 2 Novel U 0.268838679674786 2.02220742699953 1.0 672 +51762 RAB8B RAB8B, member RAS oncogene family Novel U 0.2685308679452502 2.0195535683276185 1.0 673 +1236 CCR7 C-C motif chemokine receptor 7 Novel U 0.2684945002630846 2.019240017285109 1.0 674 +10750 GRAP GRB2 related adaptor protein Novel N 0.26752650511955123 2.010894258954493 1.0 675 +644145 EXOC1L exocyst complex component 1 like Novel U 0.26708498622227483 2.0070876179401393 1.0 676 +53358 SHC3 SHC adaptor protein 3 Novel U 0.2650978341595787 1.989955000083286 1.0 677 +203062 TSNARE1 t-SNARE domain containing 1 Novel U 0.26481278631907007 1.987497404706448 1.0 678 +23616 SH3BP1 SH3 domain binding protein 1 Novel U 0.2632064466499099 1.9736480349392012 1.0 679 +7424 VEGFC vascular endothelial growth factor C Novel U 0.26130528318740376 1.9572567845170583 1.0 680 +3316 HSPB2 heat shock protein family B (small) member 2 Novel U 0.26110035489563854 1.955489955406805 1.0 681 +3717 JAK2 Janus kinase 2 Novel U 0.26106277889440255 1.9551659866065052 1.0 682 +146433 IL34 interleukin 34 Novel U 0.2610182699456306 1.954782244051099 1.0 683 +440073 IQSEC3 IQ motif and Sec7 domain ArfGEF 3 Known P 0.26055710606050686 1.9508062299545796 1.0 684 +90268 OTULIN OTU deubiquitinase with linear linkage specificity Novel U 0.26052436996169914 1.9505239893140542 1.0 685 +23001 WDFY3 WD repeat and FYVE domain containing 3 Novel U 0.259137641868443 1.9385680434460337 1.0 686 +5007 OSBP oxysterol binding protein Novel U 0.25898117884677013 1.937219067084651 1.0 687 +9632 SEC24C SEC24 homolog C, COPII coat complex component Novel U 0.2588685947380348 1.9362484013022347 1.0 688 +64398 PALS1 protein associated with LIN7 1, MAGUK p55 family member Novel N 0.2579467538027119 1.9283005704511509 1.0 689 +94121 SYTL4 synaptotagmin like 4 Novel U 0.25748333531800965 1.924305117886019 1.0 690 +4058 LTK leukocyte receptor tyrosine kinase Novel U 0.2573048579722902 1.9227663407497748 1.0 691 +200894 ARL13B ADP ribosylation factor like GTPase 13B Novel N 0.25667980592548356 1.9173773330036576 1.0 692 +4920 ROR2 receptor tyrosine kinase like orphan receptor 2 Novel U 0.25606224640028197 1.9120529234892778 1.0 693 +55317 AP5S1 adaptor related protein complex 5 subunit sigma 1 Novel U 0.25564748453128266 1.9084769733964007 1.0 694 +80115 BAIAP2L2 BAR/IMD domain containing adaptor protein 2 like 2 Novel U 0.25555525568347515 1.907681804453607 1.0 695 +9570 GOSR2 golgi SNAP receptor complex member 2 Novel U 0.25509420795579907 1.9037067918311066 1.0 696 +10603 SH2B2 SH2B adaptor protein 2 Novel U 0.2541558890006714 1.8956168925285675 1.0 697 +51763 INPP5K inositol polyphosphate-5-phosphatase K Novel U 0.2539789380145886 1.8940912751986905 1.0 698 +9897 WASHC5 WASH complex subunit 5 Novel U 0.2535045265506813 1.890001044526053 1.0 699 +4478 MSN moesin Novel U 0.2524501706707296 1.880910710315882 1.0 700 +348110 ARPIN actin related protein 2/3 complex inhibitor Novel U 0.2518400350753174 1.8756503076555648 1.0 701 +2833 CXCR3 C-X-C motif chemokine receptor 3 Novel U 0.2514807555834912 1.872552709664543 1.0 702 +27236 ARFIP1 ADP ribosylation factor interacting protein 1 Novel U 0.25043265621761124 1.8635163172068523 1.0 703 +23557 SNAPIN SNAP associated protein Novel U 0.24958728371802238 1.8562277738416817 1.0 704 +7127 TNFAIP2 TNF alpha induced protein 2 Novel U 0.24935599303962214 1.854233656289597 1.0 705 +102 ADAM10 ADAM metallopeptidase domain 10 Novel U 0.24811997445030567 1.8435770817112052 1.0 706 +388 RHOB ras homolog family member B Novel U 0.24811565437699373 1.843539835359224 1.0 707 +10519 CIB1 calcium and integrin binding 1 Novel U 0.24784443582634358 1.841201471893635 1.0 708 +3551 IKBKB inhibitor of nuclear factor kappa B kinase subunit beta Novel U 0.2475147792772246 1.8383592738625483 1.0 709 +138799 OR13C5 olfactory receptor family 13 subfamily C member 5 Novel U 0.24706327716000978 1.8344665605765271 1.0 710 +3119 HLA-DQB1 major histocompatibility complex, class II, DQ beta 1 Novel U 0.24700115778424686 1.8339309863009436 1.0 711 +6386 SDCBP syndecan binding protein Novel U 0.24528174285138463 1.8191067161632433 1.0 712 +381 ARF5 ADP ribosylation factor 5 Novel N 0.24509097289195833 1.8174619558679572 1.0 713 +401548 SNX30 sorting nexin family member 30 Novel U 0.2450302121113745 1.8169380949848528 1.0 714 +282808 RAB40AL RAB40A like Novel U 0.24440149472655037 1.8115174858143912 1.0 715 +116841 SNAP47 synaptosome associated protein 47 Novel U 0.2443732764614617 1.811274196555646 1.0 716 +9595 CYTIP cytohesin 1 interacting protein Novel N 0.24421784179235267 1.809934086335828 1.0 717 +7337 UBE3A ubiquitin protein ligase E3A Novel U 0.2441025952758667 1.808940466087356 1.0 718 +2348 FOLR1 folate receptor alpha Novel U 0.24395838734146805 1.8076971493435805 1.0 719 +4041 LRP5 LDL receptor related protein 5 Novel U 0.24338198641753214 1.8027275967121967 1.0 720 +23130 ATG2A autophagy related 2A Novel U 0.2421347170282116 1.7919740211741542 1.0 721 +54472 TOLLIP toll interacting protein Novel U 0.24039851360091938 1.7770050057676539 1.0 722 +92359 CRB3 crumbs cell polarity complex component 3 Novel U 0.2396225258461099 1.7703146764695978 1.0 723 +7094 TLN1 talin 1 Novel U 0.23923394214977475 1.7669644265819866 1.0 724 +170680 PSORS1C2 psoriasis susceptibility 1 candidate 2 Novel U 0.23902234968289238 1.7651401409902912 1.0 725 +23092 ARHGAP26 Rho GTPase activating protein 26 Novel U 0.23895779476035997 1.764583568174708 1.0 726 +9231 DLG5 discs large MAGUK scaffold protein 5 Novel U 0.23878631890141 1.763105155717898 1.0 727 +5567 PRKACB protein kinase cAMP-activated catalytic subunit beta Novel U 0.2363333437174624 1.741956353254387 1.0 728 +9846 GAB2 GRB2 associated binding protein 2 Novel N 0.23625686364752668 1.7412969654619417 1.0 729 +153 ADRB1 adrenoceptor beta 1 Known P 0.23569796196527726 1.7364782859450152 1.0 730 +55669 MFN1 mitofusin 1 Novel U 0.23527001708878564 1.7327886759899616 1.0 731 +9993 DGCR2 DiGeorge syndrome critical region gene 2 Novel U 0.23517047591960977 1.7319304624468062 1.0 732 +115273 RAB42 RAB42, member RAS oncogene family Novel U 0.23346306550062465 1.7172096915594524 1.0 733 +84315 MON1A MON1 homolog A, secretory trafficking associated Novel U 0.2328871159954351 1.7122440309225566 1.0 734 +29760 BLNK B cell linker Novel U 0.23284888237941598 1.7119143923685485 1.0 735 +4905 NSF N-ethylmaleimide sensitive factor, vesicle fusing ATPase Novel U 0.23277192079736378 1.711250853125774 1.0 736 +9927 MFN2 mitofusin 2 Novel U 0.23272238804369186 1.7108237968596787 1.0 737 +23433 RHOQ ras homolog family member Q Novel U 0.2320206584376146 1.704773698628419 1.0 738 +1945 EFNA4 ephrin A4 Novel N 0.2314086183254402 1.6994968758065547 1.0 739 +9842 PLEKHM1 pleckstrin homology and RUN domain containing M1 Novel U 0.2309013091463188 1.6951230110861222 1.0 740 +50618 ITSN2 intersectin 2 Novel U 0.23066492760590165 1.6930850016773773 1.0 741 +55004 LAMTOR1 late endosomal/lysosomal adaptor, MAPK and MTOR activator 1 Novel U 0.22943142735367858 1.6824501394318594 1.0 742 +684 BST2 bone marrow stromal cell antigen 2 Novel U 0.22936940540754303 1.681915405164751 1.0 743 +10228 STX6 syntaxin 6 Novel U 0.2291003415239822 1.6795956185803895 1.0 744 +10717 AP4B1 adaptor related protein complex 4 subunit beta 1 Novel U 0.2286530064350361 1.6757388321387536 1.0 745 +4976 OPA1 OPA1 mitochondrial dynamin like GTPase Novel U 0.2283035695919851 1.6727260944577858 1.0 746 +5333 PLCD1 phospholipase C delta 1 Novel U 0.22785620836345946 1.6688690826486825 1.0 747 +6654 SOS1 SOS Ras/Rac guanine nucleotide exchange factor 1 Novel U 0.2277193678117842 1.6676892852274463 1.0 748 +64762 GAREM1 GRB2 associated regulator of MAPK1 subtype 1 Novel U 0.2276780250999311 1.6673328409992254 1.0 749 +9776 ATG13 autophagy related 13 Novel U 0.22691603502042557 1.6607631953802742 1.0 750 +2041 EPHA1 EPH receptor A1 Novel U 0.22672551515753991 1.659120591340938 1.0 751 +64083 GOLPH3 golgi phosphoprotein 3 Novel U 0.22623602345832708 1.6549003434876672 1.0 752 +58191 CXCL16 C-X-C motif chemokine ligand 16 Novel N 0.22621895890448931 1.6547532181190112 1.0 753 +25937 WWTR1 WW domain containing transcription regulator 1 Novel U 0.2257658445402048 1.6508466045314203 1.0 754 +4162 MCAM melanoma cell adhesion molecule Novel U 0.22559716230416912 1.6493922778377108 1.0 755 +22824 HSPA4L heat shock protein family A (Hsp70) member 4 like Novel U 0.22540801196642635 1.6477614814256614 1.0 756 +59067 IL21 interleukin 21 Novel U 0.22446351725262997 1.6396183366190498 1.0 757 +10525 HYOU1 hypoxia up-regulated 1 Novel U 0.22369504137391824 1.6329927724212527 1.0 758 +153562 MARVELD2 MARVEL domain containing 2 Novel U 0.22226093460109364 1.6206283420558214 1.0 759 +55763 EXOC1 exocyst complex component 1 Novel U 0.22134852563193555 1.6127618307348195 1.0 760 +57007 ACKR3 atypical chemokine receptor 3 Novel U 0.22048196596540834 1.6052906180906148 1.0 761 +390 RND3 Rho family GTPase 3 Novel U 0.22013336593723024 1.6022850951717695 1.0 762 +57120 GOPC golgi associated PDZ and coiled-coil motif containing Novel U 0.21829758199071633 1.5864575269580434 1.0 763 +51191 HERC5 HECT and RLD domain containing E3 ubiquitin protein ligase 5 Novel U 0.2175721931275235 1.580203445841655 1.0 764 +3310 HSPA6 heat shock protein family A (Hsp70) member 6 Known P 0.21704922387328432 1.575694564738914 1.0 765 +53342 IL17D interleukin 17D Novel U 0.2165805817905274 1.5716540759075657 1.0 766 +55667 DENND4C DENN domain containing 4C Novel U 0.2161077324142928 1.5675773130775046 1.0 767 +29127 RACGAP1 Rac GTPase activating protein 1 Novel U 0.21448298505546298 1.5535692378348904 1.0 768 +3592 IL12A interleukin 12A Novel U 0.21381067481470065 1.5477727843814981 1.0 769 +29887 SNX10 sorting nexin 10 Novel U 0.21373487975405703 1.5471193025298464 1.0 770 +5582 PRKCG protein kinase C gamma Novel U 0.2129009681523501 1.5399295715240287 1.0 771 +3064 HTT huntingtin Novel U 0.21284118743362068 1.5394141604347487 1.0 772 +9046 DOK2 docking protein 2 Novel N 0.21228568589191116 1.5346247958905528 1.0 773 +8775 NAPA NSF attachment protein alpha Novel U 0.21163774202854505 1.5290384218972695 1.0 774 +3688 ITGB1 integrin subunit beta 1 Novel U 0.21129773965791945 1.5261070253545967 1.0 775 +2044 EPHA5 EPH receptor A5 Novel U 0.20958821001172362 1.5113679831378188 1.0 776 +10507 SEMA4D semaphorin 4D Novel U 0.20957259575892176 1.511233361821516 1.0 777 +57695 USP37 ubiquitin specific peptidase 37 Novel N 0.20941256411654063 1.5098536179028745 1.0 778 +6711 SPTBN1 spectrin beta, non-erythrocytic 1 Novel U 0.20917136101709863 1.5077740384855742 1.0 779 +117583 PARD3B par-3 family cell polarity regulator beta Novel U 0.2089027311203227 1.505457993602656 1.0 780 +3920 LAMP2 lysosomal associated membrane protein 2 Novel U 0.20843804072666594 1.5014515750271846 1.0 781 +23233 EXOC6B exocyst complex component 6B Novel N 0.20841793693853383 1.5012782463091623 1.0 782 +9138 ARHGEF1 Rho guanine nucleotide exchange factor 1 Novel U 0.2082412973445452 1.499755313706767 1.0 783 +1793 DOCK1 dedicator of cytokinesis 1 Novel U 0.20824011902012315 1.4997451545536689 1.0 784 +9609 RAB36 RAB36, member RAS oncogene family Novel U 0.2082316567472546 1.4996721954228711 1.0 785 +23431 AP4E1 adaptor related protein complex 4 subunit epsilon 1 Novel U 0.2081254832442863 1.4987567999244453 1.0 786 +3140 MR1 major histocompatibility complex, class I-related Novel U 0.20803670810361086 1.4979914077891714 1.0 787 +25945 NECTIN3 nectin cell adhesion molecule 3 Novel U 0.20801014635736936 1.4977624005297325 1.0 788 +2035 EPB41 erythrocyte membrane protein band 4.1 Novel U 0.20797464791927042 1.4974563438439452 1.0 789 +29934 SNX12 sorting nexin 12 Novel U 0.20778685729942176 1.4958372705040803 1.0 790 +2829 XCR1 X-C motif chemokine receptor 1 Novel U 0.20693218788209428 1.4884685719550903 1.0 791 +84062 DTNBP1 dystrobrevin binding protein 1 Novel N 0.206271630397569 1.4827734471746035 1.0 792 +3993 LLGL2 LLGL scribble cell polarity complex component 2 Novel N 0.20619650709119122 1.4821257569829593 1.0 793 +51699 VPS29 VPS29 retromer complex component Novel U 0.20598320893568237 1.4802867654651453 1.0 794 +259217 HSPA12A heat shock protein family A (Hsp70) member 12A Novel U 0.20560773756612713 1.477049566052207 1.0 795 +26084 ARHGEF26 Rho guanine nucleotide exchange factor 26 Novel U 0.2055664214115015 1.4766933507922861 1.0 796 +6355 CCL8 C-C motif chemokine ligand 8 Novel U 0.20543652754417044 1.4755734455607195 1.0 797 +90809 PIP4P1 phosphatidylinositol-4,5-bisphosphate 4-phosphatase 1 Novel U 0.20539790966213628 1.4752404939825525 1.0 798 +55361 PI4K2A phosphatidylinositol 4-kinase type 2 alpha Novel U 0.2049275102889923 1.4711848543304744 1.0 799 +339416 ANKRD45 ankyrin repeat domain 45 Novel N 0.2047953143365713 1.4700451012247262 1.0 800 +56034 PDGFC platelet derived growth factor C Novel U 0.20476473076042795 1.4697814189768517 1.0 801 +5623 PSPN persephin Novel N 0.20381881498759527 1.4616260222334718 1.0 802 +9051 PSTPIP1 proline-serine-threonine phosphatase interacting protein 1 Novel U 0.20353203015539362 1.4591534510450412 1.0 803 +54769 DIRAS2 DIRAS family GTPase 2 Novel U 0.20350151647458928 1.4588903714134214 1.0 804 +5875 RABGGTA Rab geranylgeranyltransferase subunit alpha Novel N 0.2033220524808191 1.457343087699181 1.0 805 +414918 DENND6B DENN domain containing 6B Novel U 0.20256176891797764 1.4507881551454351 1.0 806 +4296 MAP3K11 mitogen-activated protein kinase kinase kinase 11 Novel U 0.2018312523724712 1.44448986471904 1.0 807 +7110 TMF1 TATA element modulatory factor 1 Novel U 0.20172821352874004 1.4436014952946774 1.0 808 +10787 NCKAP1 NCK associated protein 1 Novel U 0.20157678108477642 1.4422958910370758 1.0 809 +23118 TAB2 TGF-beta activated kinase 1 (MAP3K7) binding protein 2 Novel U 0.20144303089760146 1.4411427377942172 1.0 810 +1130 LYST lysosomal trafficking regulator Novel U 0.2014285942662416 1.441018269570133 1.0 811 +4534 MTM1 myotubularin 1 Novel U 0.20119337173964744 1.4389902528244023 1.0 812 +1600 DAB1 DAB adaptor protein 1 Novel N 0.20102142931490374 1.4375078177798906 1.0 813 +11188 NISCH nischarin Novel U 0.20083994349097342 1.4359431024638338 1.0 814 +84433 CARD11 caspase recruitment domain family member 11 Novel U 0.20048340837951126 1.4328691656816912 1.0 815 +55558 PLXNA3 plexin A3 Novel U 0.2004228660839266 1.4323471885094856 1.0 816 +7430 EZR ezrin Novel U 0.2001493279832065 1.4299888265919944 1.0 817 +8550 MAPKAPK5 MAPK activated protein kinase 5 Novel U 0.19996681121489687 1.4284152227885318 1.0 818 +554 AVPR2 arginine vasopressin receptor 2 Novel U 0.19993028551209893 1.428100309340418 1.0 819 +8742 TNFSF12 TNF superfamily member 12 Novel U 0.19959393506351092 1.4252003985536104 1.0 820 +10818 FRS2 fibroblast growth factor receptor substrate 2 Novel U 0.19957333443855751 1.4250227862603366 1.0 821 +10458 BAIAP2 BAR/IMD domain containing adaptor protein 2 Novel U 0.1995186149690364 1.4245510117151299 1.0 822 +5618 PRLR prolactin receptor Novel U 0.19911397734067807 1.4210623497313255 1.0 823 +1230 CCR1 C-C motif chemokine receptor 1 Novel U 0.19853024786171916 1.4160296125379703 1.0 824 +26276 VPS33B VPS33B late endosome and lysosome associated Novel U 0.1983314500851567 1.4143156388564517 1.0 825 +9462 RASAL2 RAS protein activator like 2 Novel N 0.19824235031765344 1.4135474478878667 1.0 826 +79065 ATG9A autophagy related 9A Novel U 0.19806512022654693 1.4120194241997635 1.0 827 +7316 UBC ubiquitin C Novel U 0.19777586847762763 1.409525584009226 1.0 828 +5906 RAP1A RAP1A, member of RAS oncogene family Novel U 0.19770332774729138 1.4089001599990363 1.0 829 +11316 COPE COPI coat complex subunit epsilon Novel U 0.19705468979500648 1.4033078017831928 1.0 830 +55359 STYK1 serine/threonine/tyrosine kinase 1 Novel U 0.19525910355474219 1.3878268059092616 1.0 831 +3702 ITK IL2 inducible T cell kinase Novel U 0.1952100199600096 1.3874036221542887 1.0 832 +10788 IQGAP2 IQ motif containing GTPase activating protein 2 Novel U 0.19518821482760512 1.3872156249658414 1.0 833 +6905 TBCE tubulin folding cofactor E Novel U 0.19515597055951028 1.3869376247394303 1.0 834 +85363 TRIM5 tripartite motif containing 5 Novel U 0.1951272370717612 1.386689893388347 1.0 835 +388552 BLOC1S3 biogenesis of lysosomal organelles complex 1 subunit 3 Novel U 0.1950435497876835 1.3859683671979277 1.0 836 +7335 UBE2V1 ubiquitin conjugating enzyme E2 V1 Novel U 0.19440451965118968 1.3804588446339083 1.0 837 +2241 FER FER tyrosine kinase Novel U 0.194138669232729 1.3781667635636796 1.0 838 +4046 LSP1 lymphocyte specific protein 1 Novel U 0.1937116679437849 1.3744852889321222 1.0 839 +393 ARHGAP4 Rho GTPase activating protein 4 Novel U 0.19294446479178948 1.3678706977951574 1.0 840 +3123 HLA-DRB1 major histocompatibility complex, class II, DR beta 1 Novel U 0.19293046081234771 1.3677499597637028 1.0 841 +10490 VTI1B vesicle transport through interaction with t-SNAREs 1B Novel U 0.19285603847861899 1.3671083131440376 1.0 842 +23295 MGRN1 mahogunin ring finger 1 Novel U 0.19218950432251308 1.3613616593275153 1.0 843 +5728 PTEN phosphatase and tensin homolog Novel U 0.19195362838423868 1.359328009065945 1.0 844 +7535 ZAP70 zeta chain of T cell receptor associated protein kinase 70 Novel U 0.19178035734383075 1.3578341191031704 1.0 845 +8031 NCOA4 nuclear receptor coactivator 4 Novel U 0.19167490962296166 1.3569249810762218 1.0 846 +2245 FGD1 FYVE, RhoGEF and PH domain containing 1 Novel U 0.19152399024906436 1.3556238003519496 1.0 847 +253260 RICTOR RPTOR independent companion of MTOR complex 2 Novel U 0.19138925164781026 1.3544621253049371 1.0 848 +146850 PIK3R6 phosphoinositide-3-kinase regulatory subunit 6 Novel U 0.19118309887291055 1.352684739075272 1.0 849 +8675 STX16 syntaxin 16 Novel U 0.1910188830007696 1.3512689200062455 1.0 850 +5870 RAB6A RAB6A, member RAS oncogene family Novel U 0.1909748471559688 1.3508892564087087 1.0 851 +9545 RAB3D RAB3D, member RAS oncogene family Novel U 0.1907501230867888 1.348951754154717 1.0 852 +9475 ROCK2 Rho associated coiled-coil containing protein kinase 2 Novel U 0.18861377196252935 1.330532787580847 1.0 853 +57530 CGN cingulin Novel U 0.18852251031726863 1.3297459575628572 1.0 854 +87 ACTN1 actinin alpha 1 Novel U 0.18844102903602206 1.3290434508547444 1.0 855 +171177 RHOV ras homolog family member V Novel U 0.1881661883782666 1.3266738586885254 1.0 856 +3597 IL13RA1 interleukin 13 receptor subunit alpha 1 Novel N 0.18783999427333692 1.323861512793196 1.0 857 +144717 PHETA1 PH domain containing endocytic trafficking adaptor 1 Novel U 0.1877231883447353 1.3228544477699835 1.0 858 +6477 SIAH1 siah E3 ubiquitin protein ligase 1 Novel U 0.18764196551036633 1.3221541693118737 1.0 859 +2782 GNB1 G protein subunit beta 1 Novel U 0.18762490750792113 1.3220071004273224 1.0 860 +6358 CCL14 C-C motif chemokine ligand 14 Novel N 0.1869945412171642 1.3165722748937756 1.0 861 +84708 LNX1 ligand of numb-protein X 1 Novel U 0.18644470048631104 1.3118317161309707 1.0 862 +2803 GOLGA4 golgin A4 Novel U 0.18639055291693354 1.3113648723340428 1.0 863 +64422 ATG3 autophagy related 3 Novel U 0.1861347615688037 1.3091595174943875 1.0 864 +6782 HSPA13 heat shock protein family A (Hsp70) member 13 Novel U 0.18613256114194007 1.3091405460863688 1.0 865 +6363 CCL19 C-C motif chemokine ligand 19 Novel U 0.18560778813339474 1.3046161135651857 1.0 866 +8029 CUBN cubilin Novel U 0.18553822759320965 1.3040163838438021 1.0 867 +7301 TYRO3 TYRO3 protein tyrosine kinase Novel U 0.1852428075625709 1.3014693626131637 1.0 868 +2826 CCR10 C-C motif chemokine receptor 10 Novel U 0.1846110913517225 1.2960228984810929 1.0 869 +5071 PRKN parkin RBR E3 ubiquitin protein ligase Novel U 0.1840876340027357 1.2915098091745882 1.0 870 +115761 ARL11 ADP ribosylation factor like GTPase 11 Novel U 0.18398646471466593 1.2906375584878453 1.0 871 +8767 RIPK2 receptor interacting serine/threonine kinase 2 Novel U 0.1839727767942541 1.2905195454207667 1.0 872 +6812 STXBP1 syntaxin binding protein 1 Novel U 0.18387095351132846 1.289641656190222 1.0 873 +6382 SDC1 syndecan 1 Novel U 0.1837546706183672 1.2886391006204727 1.0 874 +558 AXL AXL receptor tyrosine kinase Novel U 0.18318353423431502 1.2837149372432448 1.0 875 +285590 SH3PXD2B SH3 and PX domains 2B Novel U 0.183036669035792 1.2824487103801874 1.0 876 +55697 VAC14 VAC14 component of PIKFYVE complex Novel U 0.1829780364124564 1.2819431978185616 1.0 877 +2771 GNAI2 G protein subunit alpha i2 Novel U 0.18285898828107278 1.2809168012081276 1.0 878 +958 CD40 CD40 molecule Novel U 0.1824056171263535 1.2770079736518776 1.0 879 +1445 CSK C-terminal Src kinase Novel U 0.18213401478480268 1.2746663012584205 1.0 880 +146705 TEPSIN TEPSIN adaptor related protein complex 4 accessory protein Novel U 0.18190818172402518 1.2727192376177572 1.0 881 +122616 CLBA1 clathrin binding box of aftiphilin containing 1 Novel U 0.18190586795414077 1.2726992890008484 1.0 882 +3306 HSPA2 heat shock protein family A (Hsp70) member 2 Known P 0.1818768260779295 1.2724488988186804 1.0 883 +6503 SLA Src like adaptor Novel U 0.18181920150741535 1.2719520773804436 1.0 884 +9950 GOLGA5 golgin A5 Novel U 0.18180179929538146 1.271802040826001 1.0 885 +3654 IRAK1 interleukin 1 receptor associated kinase 1 Novel U 0.18177919945590446 1.2716071919160186 1.0 886 +23301 EHBP1 EH domain binding protein 1 Novel U 0.18176005922995034 1.2714421707366526 1.0 887 +84440 RAB11FIP4 RAB11 family interacting protein 4 Known P 0.18169721698196956 1.2709003640776997 1.0 888 +238 ALK ALK receptor tyrosine kinase Novel U 0.18155254165330814 1.2696530176034155 1.0 889 +23654 PLXNB2 plexin B2 Novel U 0.1808764643676775 1.2638240858402905 1.0 890 +54874 FNBP1L formin binding protein 1 like Novel U 0.18085583231334101 1.2636462025724802 1.0 891 +3112 HLA-DOB major histocompatibility complex, class II, DO beta Novel U 0.1806577173315927 1.2619381157392027 1.0 892 +2048 EPHB2 EPH receptor B2 Novel U 0.18050987467058122 1.2606634614932597 1.0 893 +57704 GBA2 glucosylceramidase beta 2 Novel N 0.18046785993518857 1.2603012232834356 1.0 894 +673 BRAF B-Raf proto-oncogene, serine/threonine kinase Novel U 0.1800175045376044 1.2564183966636588 1.0 895 +3799 KIF5B kinesin family member 5B Novel U 0.17961519197345552 1.2529497806729823 1.0 896 +163259 DENND2C DENN domain containing 2C Novel U 0.17939614288489908 1.251061206367784 1.0 897 +6809 STX3 syntaxin 3 Novel U 0.17901277936844406 1.2477559632759332 1.0 898 +27 ABL2 ABL proto-oncogene 2, non-receptor tyrosine kinase Novel U 0.17901083476146845 1.2477391974688166 1.0 899 +29126 CD274 CD274 molecule Novel U 0.17900639408036415 1.2477009112733046 1.0 900 +6869 TACR1 tachykinin receptor 1 Novel U 0.1789154847814932 1.2469171190782184 1.0 901 +8522 GAS7 growth arrest specific 7 Novel U 0.17886062684294404 1.246444150695365 1.0 902 +8660 IRS2 insulin receptor substrate 2 Novel U 0.17886030651610155 1.2464413889352135 1.0 903 +7046 TGFBR1 transforming growth factor beta receptor 1 Novel U 0.17860675177702537 1.2442553174553628 1.0 904 +3454 IFNAR1 interferon alpha and beta receptor subunit 1 Novel U 0.1784239424725852 1.2426791914947752 1.0 905 +3554 IL1R1 interleukin 1 receptor type 1 Novel U 0.17807456275770633 1.2396669463554502 1.0 906 +5599 MAPK8 mitogen-activated protein kinase 8 Novel U 0.17782056709315983 1.237477073350931 1.0 907 +51622 CCZ1 CCZ1 homolog, vacuolar protein trafficking and biogenesis associated Novel U 0.17775319404809306 1.2368962035440099 1.0 908 +127829 ARL8A ADP ribosylation factor like GTPase 8A Novel U 0.17736252972192787 1.2335280151017964 1.0 909 +79109 MAPKAP1 MAPK associated protein 1 Novel U 0.1769985736709833 1.230390097247104 1.0 910 +4294 MAP3K10 mitogen-activated protein kinase kinase kinase 10 Novel U 0.17696295151370744 1.230082973892379 1.0 911 +581 BAX BCL2 associated X, apoptosis regulator Novel U 0.17638805241115948 1.2251263695060803 1.0 912 +5871 MAP4K2 mitogen-activated protein kinase kinase kinase kinase 2 Novel U 0.1759300674061888 1.2211777627428486 1.0 913 +389400 GFRAL GDNF family receptor alpha like Novel U 0.17587971434036928 1.220743633996085 1.0 914 +974 CD79B CD79b molecule Novel U 0.1755418528639531 1.217830695589078 1.0 915 +11035 RIPK3 receptor interacting serine/threonine kinase 3 Novel U 0.17530741569274935 1.215809449937537 1.0 916 +3570 IL6R interleukin 6 receptor Novel U 0.17522937837986854 1.2151366360722766 1.0 917 +51277 DNAJC27 DnaJ heat shock protein family (Hsp40) member C27 Novel U 0.17510185180012658 1.2140371408709147 1.0 918 +8723 SNX4 sorting nexin 4 Novel U 0.17508176567124392 1.213863964405545 1.0 919 +221472 FGD2 FYVE, RhoGEF and PH domain containing 2 Novel U 0.1749595636330344 1.212810375774219 1.0 920 +8764 TNFRSF14 TNF receptor superfamily member 14 Novel U 0.17455988559052651 1.2093644738240823 1.0 921 +4988 OPRM1 opioid receptor mu 1 Novel U 0.17444790415894712 1.2083990041399404 1.0 922 +55293 UEVLD UEV and lactate/malate dehyrogenase domains Novel U 0.17360001027850264 1.2010887221995084 1.0 923 +10067 SCAMP3 secretory carrier membrane protein 3 Novel U 0.17339966051394734 1.199361367751767 1.0 924 +4352 MPL MPL proto-oncogene, thrombopoietin receptor Novel U 0.1731225757998729 1.1969724280176974 1.0 925 +29761 USP25 ubiquitin specific peptidase 25 Novel U 0.17259480923033663 1.1924221859284134 1.0 926 +3563 IL3RA interleukin 3 receptor subunit alpha Novel U 0.17205291703114706 1.1877501569767244 1.0 927 +185 AGTR1 angiotensin II receptor type 1 Novel U 0.17198736537777448 1.1871849906524152 1.0 928 +3690 ITGB3 integrin subunit beta 3 Novel U 0.1718772522024687 1.1862356285029685 1.0 929 +9117 SEC22C SEC22 homolog C, vesicle trafficking protein Novel U 0.1715157462969756 1.183118835053651 1.0 930 +10282 BET1 Bet1 golgi vesicular membrane trafficking protein Novel N 0.17128744592439013 1.181150499004533 1.0 931 +51062 ATL1 atlastin GTPase 1 Novel U 0.17123446092558356 1.1806936785358129 1.0 932 +5330 PLCB2 phospholipase C beta 2 Novel U 0.1711820987496875 1.1802422278559073 1.0 933 +6195 RPS6KA1 ribosomal protein S6 kinase A1 Novel U 0.1710900368830618 1.1794484985738374 1.0 934 +9907 AP5Z1 adaptor related protein complex 5 subunit zeta 1 Novel U 0.17089895723197376 1.1778010682116786 1.0 935 +10712 ENTREP3 endosomal transmembrane epsin interactor 3 Novel U 0.17086963489199714 1.1775482599566292 1.0 936 +5861 RAB1A RAB1A, member RAS oncogene family Novel U 0.1707095688711954 1.1761682196377505 1.0 937 +1978 EIF4EBP1 eukaryotic translation initiation factor 4E binding protein 1 Novel U 0.1706751681147367 1.1758716268276392 1.0 938 +338382 RAB7B RAB7B, member RAS oncogene family Novel U 0.17003279498715973 1.170333282016042 1.0 939 +1270 CNTF ciliary neurotrophic factor Novel U 0.16939236580304784 1.1648116972909763 1.0 940 +916 CD3E CD3 epsilon subunit of T-cell receptor complex Novel U 0.1690222338908733 1.1616205330479596 1.0 941 +11009 IL24 interleukin 24 Novel U 0.1689884553710004 1.1613293049715498 1.0 942 +25837 RAB26 RAB26, member RAS oncogene family Novel U 0.16892336499103736 1.1607681156056233 1.0 943 +10139 ARFRP1 ADP ribosylation factor related protein 1 Novel U 0.16812648494166574 1.1538976593280543 1.0 944 +6773 STAT2 signal transducer and activator of transcription 2 Novel U 0.16776802336984634 1.1508071131933935 1.0 945 +10232 MSLN mesothelin Novel U 0.16764499940031377 1.1497464381213636 1.0 946 +2549 GAB1 GRB2 associated binding protein 1 Novel U 0.1674659259678183 1.1482025217070873 1.0 947 +79679 VTCN1 V-set domain containing T cell activation inhibitor 1 Novel U 0.16714974413621123 1.145476498572826 1.0 948 +729092 AGAP5 ArfGAP with GTPase domain, ankyrin repeat and PH domain 5 Novel U 0.1669167633387918 1.1434678093310193 1.0 949 +2621 GAS6 growth arrest specific 6 Novel U 0.16644267127851303 1.1393803324588647 1.0 950 +4157 MC1R melanocortin 1 receptor Novel U 0.16624892683247552 1.1377099270489512 1.0 951 +54885 TBC1D8B TBC1 domain family member 8B Novel N 0.16624874885136684 1.1377083925502192 1.0 952 +132946 ARL9 ADP ribosylation factor like GTPase 9 Novel U 0.16568189984778428 1.132821193657276 1.0 953 +3594 IL12RB1 interleukin 12 receptor subunit beta 1 Novel U 0.16567985688336312 1.1328035798423195 1.0 954 +55770 EXOC2 exocyst complex component 2 Novel U 0.1655594897664596 1.1317658113417843 1.0 955 +3574 IL7 interleukin 7 Novel U 0.1654760940605763 1.1310467990494577 1.0 956 +7132 TNFRSF1A TNF receptor superfamily member 1A Novel U 0.16541920588188438 1.1305563265564875 1.0 957 +283849 EXOC3L1 exocyst complex component 3 like 1 Novel U 0.1647008472445974 1.124362857899585 1.0 958 +401258 RAB44 RAB44, member RAS oncogene family Novel U 0.16418091582761618 1.1198801681013892 1.0 959 +5058 PAK1 p21 (RAC1) activated kinase 1 Novel U 0.16379545598076284 1.1165568510894341 1.0 960 +100506658 OCLN occludin Novel U 0.16336688049909437 1.1128618042492437 1.0 961 +23286 WWC1 WW and C2 domain containing 1 Novel U 0.16311252809620935 1.110668855555781 1.0 962 +5818 NECTIN1 nectin cell adhesion molecule 1 Novel U 0.16297608446514042 1.1094924802627226 1.0 963 +4486 MST1R macrophage stimulating 1 receptor Novel U 0.16230995677754845 1.1037493308935202 1.0 964 +4145 MATK megakaryocyte-associated tyrosine kinase Novel N 0.161914055802986 1.1003359936690245 1.0 965 +1235 CCR6 C-C motif chemokine receptor 6 Novel U 0.1618694063272487 1.0999510395330645 1.0 966 +254102 EHBP1L1 EH domain binding protein 1 like 1 Novel U 0.1618402683071752 1.099699820427896 1.0 967 +284611 EEIG2 EEIG family member 2 Novel U 0.16156522209185145 1.0973284560071368 1.0 968 +6370 CCL25 C-C motif chemokine ligand 25 Novel U 0.16136355818082126 1.0955897713900618 1.0 969 +85377 MICALL1 MICAL like 1 Novel U 0.16112403761409536 1.0935246982556965 1.0 970 +9712 USP6NL USP6 N-terminal like Novel U 0.16108352211556287 1.093175386007949 1.0 971 +2059 EPS8 EGFR pathway substrate 8, signaling adaptor Novel N 0.16107101447228553 1.0930675489296582 1.0 972 +79971 WLS Wnt ligand secretion mediator Novel U 0.16066499597168588 1.0895669814873514 1.0 973 +390790 ARL5C ADP ribosylation factor like GTPase 5C Novel U 0.16042017781323306 1.0874562341359386 1.0 974 +2804 GOLGB1 golgin B1 Novel U 0.16030133090395396 1.086431572401001 1.0 975 +23551 RASD2 RASD family member 2 Novel U 0.16013506321159746 1.0849980631650646 1.0 976 +10855 HPSE heparanase Novel U 0.16006840250742746 1.0844233349436805 1.0 977 +26100 WIPI2 WD repeat domain, phosphoinositide interacting 2 Novel U 0.1600665205015666 1.0844071088642455 1.0 978 +1948 EFNB2 ephrin B2 Novel U 0.15997625649235628 1.0836288801594278 1.0 979 +10066 SCAMP2 secretory carrier membrane protein 2 Novel U 0.1599563523344945 1.083457272592594 1.0 980 +8943 AP3D1 adaptor related protein complex 3 subunit delta 1 Novel U 0.1598957568352694 1.0829348367148581 1.0 981 +29984 RHOD ras homolog family member D Novel U 0.1596407661646433 1.0807363850719716 1.0 982 +330 BIRC3 baculoviral IAP repeat containing 3 Novel U 0.15945436465943066 1.079129288254017 1.0 983 +5133 PDCD1 programmed cell death 1 Novel U 0.15941539005551156 1.0787932611287643 1.0 984 +10672 GNA13 G protein subunit alpha 13 Novel U 0.15875351136406468 1.0730867453059298 1.0 985 +431704 RGS21 regulator of G protein signaling 21 Novel N 0.15846229154330144 1.070575937001351 1.0 986 +7075 TIE1 tyrosine kinase with immunoglobulin like and EGF like domains 1 Novel N 0.1583405621547504 1.0695264234109498 1.0 987 +118987 PDZD8 PDZ domain containing 8 Novel U 0.1582237568956636 1.0685193641600892 1.0 988 +374403 TBC1D10C TBC1 domain family member 10C Novel U 0.1577392361980493 1.0643419747635783 1.0 989 +101060376 TBC1D3L TBC1 domain family member 3L Novel U 0.1575729209074946 1.0629080551505221 1.0 990 +391 RHOG ras homolog family member G Novel U 0.15733234705990162 1.060833900950379 1.0 991 +27240 SIT1 signaling threshold regulating transmembrane adaptor 1 Novel N 0.15695911393349554 1.0576159989859175 1.0 992 +79443 FYCO1 FYVE and coiled-coil domain autophagy adaptor 1 Novel U 0.15677576614424749 1.0560352303738647 1.0 993 +163486 DENND1B DENN domain containing 1B Novel U 0.15663655730797083 1.0548350143264882 1.0 994 +4293 MAP3K9 mitogen-activated protein kinase kinase kinase 9 Novel U 0.15642251430436502 1.0529896009559905 1.0 995 +51399 TRAPPC4 trafficking protein particle complex subunit 4 Novel U 0.15580196155223888 1.0476393847537282 1.0 996 +9107 MTMR6 myotubularin related protein 6 Novel U 0.15555280145624925 1.0454912025436685 1.0 997 +10273 STUB1 STIP1 homology and U-box containing protein 1 Novel U 0.15546864200055288 1.0447656054338377 1.0 998 +7855 FZD5 frizzled class receptor 5 Novel U 0.15515010694451534 1.042019293517628 1.0 999 +28954 REM1 RRAD and GEM like GTPase 1 Novel U 0.1545688690529954 1.0370080380298003 1.0 1000 +11037 STON1 stonin 1 Novel U 0.15443647882665257 1.0358666099536638 1.0 1001 +284656 EPHA10 EPH receptor A10 Novel N 0.1539997577998775 1.0321013347126546 1.0 1002 +6385 SDC4 syndecan 4 Novel U 0.15345107117946205 1.027370726337374 1.0 1003 +9043 SPAG9 sperm associated antigen 9 Novel U 0.15334336503218815 1.026442116848086 1.0 1004 +10870 HCST hematopoietic cell signal transducer Novel U 0.15329517180158853 1.0260266095405928 1.0 1005 +8825 LIN7A lin-7 homolog A, crumbs cell polarity complex component Novel N 0.1532329783543814 1.0254903966436522 1.0 1006 +9276 COPB2 COPI coat complex subunit beta 2 Novel U 0.15254987070541554 1.0196008512361672 1.0 1007 +6010 RHO rhodopsin Novel U 0.1522607821587702 1.0171084181257652 1.0 1008 +55024 BANK1 B cell scaffold protein with ankyrin repeats 1 Novel U 0.15163873666355884 1.0117453319487697 1.0 1009 +80243 PREX2 phosphatidylinositol-3,4,5-trisphosphate dependent Rac exchange factor 2 Novel U 0.15088079577366903 1.0052105972053464 1.0 1010 +58485 TRAPPC1 trafficking protein particle complex subunit 1 Novel U 0.1501726802690811 0.9991054417085106 1.0 1011 +8844 KSR1 kinase suppressor of ras 1 Novel U 0.1499677020026011 0.9973381817315375 1.0 1012 +57520 HECW2 HECT, C2 and WW domain containing E3 ubiquitin protein ligase 2 Novel U 0.14978950379635214 0.9958018112505097 1.0 1013 +379 ARL4D ADP ribosylation factor like GTPase 4D Novel U 0.14968752191169124 0.9949225546042687 1.0 1014 +221960 CCZ1B CCZ1 homolog B, vacuolar protein trafficking and biogenesis associated Novel U 0.14966131789834347 0.9946966316085247 1.0 1015 +2669 GEM GTP binding protein overexpressed in skeletal muscle Novel U 0.14951649915789242 0.9934480486816135 1.0 1016 +7164 TPD52L1 TPD52 like 1 Novel U 0.14940156676422164 0.9924571367040655 1.0 1017 +7297 TYK2 tyrosine kinase 2 Novel U 0.1492088250199403 0.9907953762822911 1.0 1018 +3135 HLA-G major histocompatibility complex, class I, G Known P 0.14920593211465225 0.9907704345369025 1.0 1019 +9363 RAB33A RAB33A, member RAS oncogene family Novel U 0.14897222223611045 0.988755459380449 1.0 1020 +6776 STAT5A signal transducer and activator of transcription 5A Novel U 0.14824104910973088 0.9824515081144014 1.0 1021 +5587 PRKD1 protein kinase D1 Novel U 0.14763921472039018 0.9772626759161764 1.0 1022 +967 CD63 CD63 molecule Novel U 0.1474674799339739 0.9757820310658742 1.0 1023 +54453 RIN2 Ras and Rab interactor 2 Novel U 0.1472262132690208 0.9737019036061615 1.0 1024 +23166 STAB1 stabilin 1 Novel U 0.14714213017923145 0.9729769648998452 1.0 1025 +64866 CDCP1 CUB domain containing protein 1 Novel U 0.14702730507346493 0.971986977925823 1.0 1026 +3603 IL16 interleukin 16 Novel U 0.14674815926377738 0.9695802680552005 1.0 1027 +9482 STX8 syntaxin 8 Novel U 0.14674677078534087 0.9695682970184079 1.0 1028 +23303 KIF13B kinesin family member 13B Novel U 0.14671882649852208 0.969327369916584 1.0 1029 +56681 SAR1A secretion associated Ras related GTPase 1A Novel U 0.1466852542812979 0.9690379205185701 1.0 1030 +135 ADORA2A adenosine A2a receptor Novel U 0.14626499901383216 0.9654146080227709 1.0 1031 +27134 TJP3 tight junction protein 3 Novel U 0.14586884465464614 0.9619990861934791 1.0 1032 +6615 SNAI1 snail family transcriptional repressor 1 Novel N 0.14570506281661397 0.9605870092339075 1.0 1033 +8500 PPFIA1 PTPRF interacting protein alpha 1 Novel U 0.14550319418284696 0.9588465595599542 1.0 1034 +2909 ARHGAP35 Rho GTPase activating protein 35 Novel U 0.14534856928142503 0.9575134309096881 1.0 1035 +2047 EPHB1 EPH receptor B1 Novel U 0.14522328589857528 0.9564332758664618 1.0 1036 +128346 C1orf162 chromosome 1 open reading frame 162 Novel U 0.14514870239779837 0.9557902397137562 1.0 1037 +1500 CTNND1 catenin delta 1 Novel U 0.14493350034280364 0.9539348333563625 1.0 1038 +11018 TMED1 transmembrane p24 trafficking protein 1 Novel N 0.14465542191696915 0.9515373261431532 1.0 1039 +6016 RIT1 Ras like without CAAX 1 Novel U 0.14453252717781512 0.9504777652559573 1.0 1040 +339122 RAB43 RAB43, member RAS oncogene family Novel U 0.1442892864646256 0.9483806181555736 1.0 1041 +3823 KLRC3 killer cell lectin like receptor C3 Novel U 0.14362096184999196 0.9426185275527479 1.0 1042 +3567 IL5 interleukin 5 Novel U 0.1435405295776936 0.9419250650792336 1.0 1043 +23167 EFR3A EFR3 homolog A Novel U 0.14351096381482656 0.9416701581064074 1.0 1044 +2042 EPHA3 EPH receptor A3 Novel U 0.1434972648893611 0.941552050157119 1.0 1045 +63916 ELMO2 engulfment and cell motility 2 Novel U 0.14344332242873278 0.94108697474515 1.0 1046 +81839 VANGL1 VANGL planar cell polarity protein 1 Novel U 0.14336030229883479 0.9403712005542012 1.0 1047 +25923 ATL3 atlastin GTPase 3 Novel U 0.14333442491468074 0.9401480936555551 1.0 1048 +1072 CFL1 cofilin 1 Novel U 0.14323131517070903 0.9392591129509841 1.0 1049 +10564 ARFGEF2 ADP ribosylation factor guanine nucleotide exchange factor 2 Novel U 0.14316507967798275 0.9386880507727329 1.0 1050 +285220 EPHA6 EPH receptor A6 Novel U 0.14310983497669094 0.938211747839698 1.0 1051 +8945 BTRC beta-transducin repeat containing E3 ubiquitin protein ligase Novel U 0.14285459714540688 0.936011165253145 1.0 1052 +9693 RAPGEF2 Rap guanine nucleotide exchange factor 2 Novel U 0.14272226264077884 0.934870217592606 1.0 1053 +9246 UBE2L6 ubiquitin conjugating enzyme E2 L6 Novel N 0.14263340916370648 0.9341041500648558 1.0 1054 +3587 IL10RA interleukin 10 receptor subunit alpha Novel U 0.14200210343705125 0.9286612250020639 1.0 1055 +7074 TIAM1 TIAM Rac1 associated GEF 1 Novel U 0.14184740477654467 0.9273274604235091 1.0 1056 +27106 ARRDC2 arrestin domain containing 2 Novel U 0.14183610669421487 0.9272300518100942 1.0 1057 +23705 CADM1 cell adhesion molecule 1 Novel U 0.14163262557957834 0.9254756998188206 1.0 1058 +2778 GNAS GNAS complex locus Novel U 0.14155230584243367 0.9247832075890133 1.0 1059 +6870 TACR3 tachykinin receptor 3 Novel U 0.14118026790007984 0.9215756101362296 1.0 1060 +55330 BLOC1S4 biogenesis of lysosomal organelles complex 1 subunit 4 Novel U 0.14094501123316233 0.9195472990430632 1.0 1061 +10663 CXCR6 C-X-C motif chemokine receptor 6 Novel U 0.14068508768501428 0.9173063176375557 1.0 1062 +6367 CCL22 C-C motif chemokine ligand 22 Novel U 0.140601610084143 0.9165865992716679 1.0 1063 +83700 JAM3 junctional adhesion molecule 3 Novel U 0.1404990513611199 0.9157023693013363 1.0 1064 +2932 GSK3B glycogen synthase kinase 3 beta Novel U 0.1401879774737307 0.9130203853012524 1.0 1065 +319100 TAAR6 trace amine associated receptor 6 Novel U 0.14013512667845077 0.9125647218943295 1.0 1066 +4593 MUSK muscle associated receptor tyrosine kinase Novel U 0.1392434107430324 0.9048766195869189 1.0 1067 +1739 DLG1 discs large MAGUK scaffold protein 1 Novel U 0.13913750385339052 0.9039635227471228 1.0 1068 +84926 SPRYD3 SPRY domain containing 3 Novel U 0.13911946878173406 0.9038080298704017 1.0 1069 +253725 WASHC2C WASH complex subunit 2C Novel U 0.13907814840198207 0.9034517781827324 1.0 1070 +3055 HCK HCK proto-oncogene, Src family tyrosine kinase Novel U 0.1389221422171496 0.9021067405289889 1.0 1071 +10134 BCAP31 B cell receptor associated protein 31 Novel U 0.1386949730736144 0.9001481575910647 1.0 1072 +57664 PLEKHA4 pleckstrin homology domain containing A4 Novel U 0.1385719763516445 0.8990877174391939 1.0 1073 +1609 DGKQ diacylglycerol kinase theta Novel U 0.1382394002105701 0.8962203475784275 1.0 1074 +6616 SNAP25 synaptosome associated protein 25 Novel U 0.13822183861965653 0.8960689369079867 1.0 1075 +57413 TMIGD3 transmembrane and immunoglobulin domain containing 3 Novel U 0.1381747429148191 0.8956628921322366 1.0 1076 +9404 LPXN leupaxin Novel U 0.13814623742905385 0.8954171265445858 1.0 1077 +23162 MAPK8IP3 mitogen-activated protein kinase 8 interacting protein 3 Novel U 0.1381321850341889 0.895295971090147 1.0 1078 +375033 PEAR1 platelet endothelial aggregation receptor 1 Novel U 0.13796506898895275 0.8938551476149194 1.0 1079 +8743 TNFSF10 TNF superfamily member 10 Novel U 0.13790702830100196 0.8933547385392996 1.0 1080 +79465 ULBP3 UL16 binding protein 3 Novel N 0.13788868701884388 0.8931966056092042 1.0 1081 +10808 HSPH1 heat shock protein family H (Hsp110) member 1 Novel U 0.13774538488092333 0.8919610983658725 1.0 1082 +942 CD86 CD86 molecule Novel N 0.13738639396950095 0.8888659884269086 1.0 1083 +8741 TNFSF13 TNF superfamily member 13 Novel U 0.13685743745060966 0.8843054869579066 1.0 1084 +26740 OR1J2 olfactory receptor family 1 subfamily J member 2 Novel U 0.13664187279234125 0.8824469543458905 1.0 1085 +57410 SCYL1 SCY1 like pseudokinase 1 Novel U 0.1362374328743745 0.8789599969606665 1.0 1086 +8718 TNFRSF25 TNF receptor superfamily member 25 Novel N 0.13619636949658845 0.8786059610654137 1.0 1087 +7049 TGFBR3 transforming growth factor beta receptor 3 Novel U 0.1360638999801876 0.8774638493746262 1.0 1088 +9644 SH3PXD2A SH3 and PX domains 2A Novel N 0.1359526938213213 0.876505063854911 1.0 1089 +4323 MMP14 matrix metallopeptidase 14 Novel U 0.13584311978122585 0.8755603499645005 1.0 1090 +3568 IL5RA interleukin 5 receptor subunit alpha Novel U 0.13566370217990323 0.8740134662317663 1.0 1091 +23221 RHOBTB2 Rho related BTB domain containing 2 Novel U 0.13522553053056635 0.870235684166306 1.0 1092 +64089 SNX16 sorting nexin 16 Novel U 0.13436998530360586 0.8628594346542874 1.0 1093 +3560 IL2RB interleukin 2 receptor subunit beta Known P 0.1342203955530542 0.8615697175361992 1.0 1094 +3071 NCKAP1L NCK associated protein 1 like Novel U 0.13406971101217666 0.8602705614704637 1.0 1095 +90410 IFT20 intraflagellar transport 20 Novel U 0.13359928373779598 0.8562146812624487 1.0 1096 +4170 MCL1 MCL1 apoptosis regulator, BCL2 family member Novel U 0.1335089974566931 0.8554362605361789 1.0 1097 +831 CAST calpastatin Novel U 0.1334347037166455 0.8547957226119375 1.0 1098 +55288 RHOT1 ras homolog family member T1 Novel U 0.1331816639231208 0.8526140908352762 1.0 1099 +9863 MAGI2 membrane associated guanylate kinase, WW and PDZ domain containing 2 Novel U 0.13310329269512428 0.8519383980559249 1.0 1100 +6093 ROCK1 Rho associated coiled-coil containing protein kinase 1 Novel U 0.13282612703015542 0.8495487603879804 1.0 1101 +1741 DLG3 discs large MAGUK scaffold protein 3 Novel N 0.13274550775633348 0.8488536856444733 1.0 1102 +79490 OR10G6 olfactory receptor family 10 subfamily G member 6 Novel U 0.13265240777922127 0.8480510060910116 1.0 1103 +64108 RTP4 receptor transporter protein 4 Novel U 0.13239039127093088 0.845791979822717 1.0 1104 +3595 IL12RB2 interleukin 12 receptor subunit beta 2 Novel U 0.13203246742333183 0.8427060697819679 1.0 1105 +126006 PCP2 Purkinje cell protein 2 Novel U 0.13190832378345904 0.84163574125441 1.0 1106 +440712 RHEX regulator of hemoglobinization and erythroid cell expansion Novel U 0.131888464613871 0.8414645215627247 1.0 1107 +7248 TSC1 TSC complex subunit 1 Novel U 0.13156977536046072 0.8387168802038867 1.0 1108 +55201 MAP1S microtubule associated protein 1S Novel U 0.1314656215871023 0.8378188981969746 1.0 1109 +64419 MTMR14 myotubularin related protein 14 Novel U 0.131350997469816 0.8368306440842114 1.0 1110 +5579 PRKCB protein kinase C beta Novel U 0.13109385049431452 0.8346136014396063 1.0 1111 +252983 STXBP4 syntaxin binding protein 4 Novel U 0.1310052161209254 0.8338494229568598 1.0 1112 +5008 OSM oncostatin M Novel U 0.1309245033579295 0.8331535421782629 1.0 1113 +29916 SNX11 sorting nexin 11 Novel U 0.13087633632301293 0.8327382607219442 1.0 1114 +4915 NTRK2 neurotrophic receptor tyrosine kinase 2 Novel U 0.13081994596083363 0.8322520802508248 1.0 1115 +59340 HRH4 histamine receptor H4 Novel U 0.13070637029991442 0.8312728656084746 1.0 1116 +26353 HSPB8 heat shock protein family B (small) member 8 Novel U 0.1305527213068445 0.8299481509418045 1.0 1117 +7332 UBE2L3 ubiquitin conjugating enzyme E2 L3 Novel U 0.13055099321578686 0.8299332518687702 1.0 1118 +373 TRIM23 tripartite motif containing 23 Novel N 0.1305292119612329 0.8297454605478536 1.0 1119 +1812 DRD1 dopamine receptor D1 Novel U 0.1305201876043052 0.8296676553000577 1.0 1120 +3643 INSR insulin receptor Novel U 0.1303956885210717 0.8285942622484589 1.0 1121 +573 BAG1 BAG cochaperone 1 Novel U 0.13029237620909748 0.8277035350644704 1.0 1122 +1490 CCN2 cellular communication network factor 2 Novel U 0.1301634279181202 0.8265917823032797 1.0 1123 +9463 PICK1 protein interacting with PRKCA 1 Novel U 0.13012536241379155 0.8262635931568959 1.0 1124 +1616 DAXX death domain associated protein Novel U 0.12999200997602625 0.8251138691879044 1.0 1125 +4082 MARCKS myristoylated alanine rich protein kinase C substrate Novel U 0.12995610054714954 0.8248042690652203 1.0 1126 +50604 IL20 interleukin 20 Novel U 0.12955725707255633 0.8213655625046192 1.0 1127 +54476 RNF216 ring finger protein 216 Novel U 0.12943366745650034 0.8203000106011129 1.0 1128 +89849 ATG16L2 autophagy related 16 like 2 Novel U 0.12921030296235048 0.8183742301875763 1.0 1129 +3977 LIFR LIF receptor subunit alpha Novel U 0.1291675718912827 0.818005815950457 1.0 1130 +3556 IL1RAP interleukin 1 receptor accessory protein Novel U 0.1287838011632259 0.8146970620046101 1.0 1131 +8436 CAVIN2 caveolae associated protein 2 Novel U 0.12873583362549543 0.8142835005520681 1.0 1132 +399 RHOH ras homolog family member H Novel U 0.1285170714519637 0.8123973999405384 1.0 1133 +6356 CCL11 C-C motif chemokine ligand 11 Novel U 0.12846253745903352 0.8119272245178214 1.0 1134 +10253 SPRY2 sprouty RTK signaling antagonist 2 Novel U 0.12821303410819232 0.8097760828693221 1.0 1135 +55435 AP1AR adaptor related protein complex 1 associated regulatory protein Novel U 0.12816875916574016 0.8093943578448981 1.0 1136 +5196 PF4 platelet factor 4 Novel U 0.12806376165641692 0.8084891014043236 1.0 1137 +919 CD247 CD247 molecule Novel U 0.1279700869978876 0.8076814671232929 1.0 1138 +65082 VPS33A VPS33A core subunit of CORVET and HOPS complexes Novel U 0.12780174877614534 0.8062301064156985 1.0 1139 +56270 WDR45B WD repeat domain 45B Novel U 0.12779182028839742 0.8061445060282522 1.0 1140 +112464 CAVIN3 caveolae associated protein 3 Novel U 0.1274629603014553 0.8033091757128434 1.0 1141 +8074 FGF23 fibroblast growth factor 23 Novel U 0.12739398648228845 0.8027145045207909 1.0 1142 +29907 SNX15 sorting nexin 15 Novel U 0.12726634996822692 0.8016140614993191 1.0 1143 +2045 EPHA7 EPH receptor A7 Novel U 0.12718818751331964 0.8009401686977472 1.0 1144 +6242 RTKN rhotekin Novel N 0.12699254519243122 0.7992534003908157 1.0 1145 +10006 ABI1 abl interactor 1 Novel U 0.1268362870751662 0.7979061906526235 1.0 1146 +1509 CTSD cathepsin D Novel U 0.1266667198443703 0.7964442338045253 1.0 1147 +79651 RHBDF2 rhomboid 5 homolog 2 Novel U 0.12650533589749283 0.7950528307297495 1.0 1148 +10163 WASF2 WASP family member 2 Novel U 0.1261448968565339 0.7919452354604365 1.0 1149 +8797 TNFRSF10A TNF receptor superfamily member 10a Novel U 0.12589948280422214 0.7898293504942631 1.0 1150 +57559 STAMBPL1 STAM binding protein like 1 Novel N 0.12588443079831807 0.789699576698903 1.0 1151 +7494 XBP1 X-box binding protein 1 Novel U 0.12579991406984023 0.7889708992923247 1.0 1152 +4287 ATXN3 ataxin 3 Novel U 0.125778540759634 0.7887866251429158 1.0 1153 +51561 IL23A interleukin 23 subunit alpha Novel U 0.1254921220216709 0.7863172103071402 1.0 1154 +83552 MFRP membrane frizzled-related protein Novel N 0.12544516333024316 0.7859123468191402 1.0 1155 +55512 SMPD3 sphingomyelin phosphodiesterase 3 Novel N 0.12531914364677813 0.7848258436170055 1.0 1156 +9235 IL32 interleukin 32 Novel N 0.12524481652144906 0.7841850178550688 1.0 1157 +27147 DENND2A DENN domain containing 2A Novel U 0.12523777337055486 0.784124293960283 1.0 1158 +135946 OR6B1 olfactory receptor family 6 subfamily B member 1 Novel U 0.12507270685868055 0.7827011409354111 1.0 1159 +5241 PGR progesterone receptor Novel U 0.12495176722145318 0.7816584363395929 1.0 1160 +5727 PTCH1 patched 1 Novel U 0.12487451720565776 0.780992410309223 1.0 1161 +3084 NRG1 neuregulin 1 Novel U 0.12477764802393884 0.780157233825424 1.0 1162 +4037 LRP3 LDL receptor related protein 3 Novel U 0.12474535197863236 0.7798787871917161 1.0 1163 +1080 CFTR CF transmembrane conductance regulator Novel U 0.12447187468282744 0.7775209495156228 1.0 1164 +10019 SH2B3 SH2B adaptor protein 3 Novel U 0.12445855235799187 0.7774060885018849 1.0 1165 +10945 KDELR1 KDEL endoplasmic reticulum protein retention receptor 1 Novel N 0.1244574064289465 0.777396208651825 1.0 1166 +51684 SUFU SUFU negative regulator of hedgehog signaling Novel U 0.12439759463071408 0.7768805296045674 1.0 1167 +57506 MAVS mitochondrial antiviral signaling protein Novel U 0.12426477429145577 0.7757353932263061 1.0 1168 +6725 SRMS src-related kinase lacking C-terminal regulatory tyrosine and N-terminal myristylation sites Novel U 0.1240479089516439 0.7738656465354805 1.0 1169 +3447 IFNA13 interferon alpha 13 Novel U 0.12404341793865935 0.7738269263938774 1.0 1170 +7293 TNFRSF4 TNF receptor superfamily member 4 Novel N 0.12403069526634221 0.7737172354009134 1.0 1171 +10563 CXCL13 C-X-C motif chemokine ligand 13 Novel U 0.12363040371890101 0.7702660439987146 1.0 1172 +57826 RAP2C RAP2C, member of RAS oncogene family Novel N 0.12352056764373821 0.7693190709220252 1.0 1173 +79767 ELMO3 engulfment and cell motility 3 Novel U 0.12323085316856945 0.7668212412471634 1.0 1174 +117584 RFFL ring finger and FYVE like domain containing E3 ubiquitin protein ligase Novel U 0.12308633944209127 0.7655752880575211 1.0 1175 +63894 VIPAS39 VPS33B interacting protein, apical-basolateral polarity regulator, spe-39 homolog Novel U 0.12291252205950941 0.7640766876994725 1.0 1176 +3459 IFNGR1 interferon gamma receptor 1 Novel U 0.12287186934366114 0.7637261924059584 1.0 1177 +9882 TBC1D4 TBC1 domain family member 4 Novel N 0.12230900898637176 0.758873382402517 1.0 1178 +9965 FGF19 fibroblast growth factor 19 Novel U 0.12219073373828133 0.7578536493556618 1.0 1179 +407977 TNFSF12-TNFSF13 TNFSF12-TNFSF13 readthrough Novel U 0.12218970283769151 0.7578447612457957 1.0 1180 +55054 ATG16L1 autophagy related 16 like 1 Novel U 0.12202896393019504 0.7564589195034538 1.0 1181 +404093 CUEDC1 CUE domain containing 1 Novel U 0.12201637441974468 0.756350376591414 1.0 1182 +11184 MAP4K1 mitogen-activated protein kinase kinase kinase kinase 1 Novel U 0.12199844555898738 0.7561957994326097 1.0 1183 +5864 RAB3A RAB3A, member RAS oncogene family Novel U 0.12199769726196294 0.7561893478443273 1.0 1184 +4043 LRPAP1 LDL receptor related protein associated protein 1 Novel U 0.12187437793394716 0.7551261262817098 1.0 1185 +8676 STX11 syntaxin 11 Novel U 0.12155733576130373 0.7523926855499338 1.0 1186 +5922 RASA2 RAS p21 protein activator 2 Novel U 0.12151840138769263 0.7520570052781029 1.0 1187 +1861 TOR1A torsin family 1 member A Novel U 0.1214275034149933 0.7512733107338075 1.0 1188 +3588 IL10RB interleukin 10 receptor subunit beta Novel U 0.1214218369232787 0.7512244559737931 1.0 1189 +54832 VPS13C vacuolar protein sorting 13 homolog C Novel U 0.12129101098150884 0.7500965146812354 1.0 1190 +7249 TSC2 TSC complex subunit 2 Novel U 0.12115458275315409 0.7489202721856721 1.0 1191 +347517 RAB41 RAB41, member RAS oncogene family Novel U 0.12109920478434281 0.7484428202608079 1.0 1192 +51735 RAPGEF6 Rap guanine nucleotide exchange factor 6 Novel U 0.12046018185960851 0.7429333598743755 1.0 1193 +56832 IFNK interferon kappa Novel U 0.11989637346683163 0.7380723761986585 1.0 1194 +5605 MAP2K2 mitogen-activated protein kinase kinase 2 Novel U 0.11983331564779594 0.7375287109519439 1.0 1195 +10256 CNKSR1 connector enhancer of kinase suppressor of Ras 1 Novel U 0.11966982147700665 0.736119114171436 1.0 1196 +64223 MLST8 MTOR associated protein, LST8 homolog Novel U 0.11941202127084055 0.7338964395716527 1.0 1197 +5987 TRIM27 tripartite motif containing 27 Novel U 0.11903778707248656 0.7306699066707605 1.0 1198 +23048 FNBP1 formin binding protein 1 Novel U 0.11903432634980926 0.7306400693773536 1.0 1199 +8324 FZD7 frizzled class receptor 7 Novel U 0.11886644737916402 0.7291926681923812 1.0 1200 +9034 CCRL2 C-C motif chemokine receptor like 2 Novel U 0.1188121479242704 0.728724514884946 1.0 1201 +5155 PDGFB platelet derived growth factor subunit B Novel U 0.11880435983103844 0.7286573683249612 1.0 1202 +221178 SPATA13 spermatogenesis associated 13 Novel U 0.11862209886985604 0.7270859700123811 1.0 1203 +10807 ENTR1 endosome associated trafficking regulator 1 Novel U 0.11852309762591746 0.7262324115396331 1.0 1204 +2931 GSK3A glycogen synthase kinase 3 alpha Novel U 0.11852209313624129 0.726223751136594 1.0 1205 +10016 PDCD6 programmed cell death 6 Novel U 0.11829859388393778 0.7242968088794356 1.0 1206 +65055 REEP1 receptor accessory protein 1 Novel U 0.11814137743086695 0.7229413366627709 1.0 1207 +112399 EGLN3 egl-9 family hypoxia inducible factor 3 Novel N 0.11808204560218645 0.7224297957663223 1.0 1208 +8763 CD164 CD164 molecule Novel N 0.11788947127023476 0.720769478722497 1.0 1209 +3593 IL12B interleukin 12B Novel U 0.11767730865532855 0.7189402774887639 1.0 1210 +4089 SMAD4 SMAD family member 4 Novel U 0.11763347135922694 0.7185623257174397 1.0 1211 +55717 WDR11 WD repeat domain 11 Novel U 0.11752337874939686 0.7176131408772402 1.0 1212 +55701 ARHGEF40 Rho guanine nucleotide exchange factor 40 Novel U 0.11751380087702122 0.7175305633883936 1.0 1213 +53832 IL20RA interleukin 20 receptor subunit alpha Novel U 0.11747118087310146 0.717163106738285 1.0 1214 +54910 SEMA4C semaphorin 4C Novel U 0.11718348484253872 0.7146826794760263 1.0 1215 +5720 PSME1 proteasome activator subunit 1 Novel U 0.11708509817221135 0.7138344196691547 1.0 1216 +2768 GNA12 G protein subunit alpha 12 Novel U 0.1168973603961377 0.7122158019321702 1.0 1217 +6396 SEC13 SEC13 homolog, nuclear pore and COPII coat complex component Novel U 0.1168228386902763 0.711573298556343 1.0 1218 +2475 MTOR mechanistic target of rapamycin kinase Novel U 0.11680172097503172 0.7113912280685896 1.0 1219 +3572 IL6ST interleukin 6 cytokine family signal transducer Novel U 0.11671757852047489 0.7106657775373887 1.0 1220 +11158 RABL2B RAB, member of RAS oncogene family like 2B Novel N 0.11624270805120612 0.7065715894607862 1.0 1221 +4038 LRP4 LDL receptor related protein 4 Novel U 0.11623573029547478 0.7065114293831113 1.0 1222 +50852 TRAT1 T cell receptor associated transmembrane adaptor 1 Novel U 0.1160013072144744 0.7044903052129979 1.0 1223 +1122 CHML CHM like Rab escort protein Novel N 0.11587016302467565 0.7033596200831845 1.0 1224 +3111 HLA-DOA major histocompatibility complex, class II, DO alpha Novel U 0.11571892023558757 0.7020556509719655 1.0 1225 +3269 HRH1 histamine receptor H1 Novel U 0.1155852763870599 0.7009034145484293 1.0 1226 +3667 IRS1 insulin receptor substrate 1 Novel U 0.11537824933174923 0.6991184905402207 1.0 1227 +2861 GPR37 G protein-coupled receptor 37 Novel U 0.1153046927564605 0.6984843082252696 1.0 1228 +10044 SH2D3C SH2 domain containing 3C Novel N 0.11515397882634988 0.6971848987745473 1.0 1229 +64343 AZI2 5-azacytidine induced 2 Novel U 0.11493924843695474 0.6953335589738231 1.0 1230 +121275 OR10AD1 olfactory receptor family 10 subfamily AD member 1 Novel U 0.11473920804958383 0.6936088718816271 1.0 1231 +112398 EGLN2 egl-9 family hypoxia inducible factor 2 Novel U 0.11460310207459776 0.6924354077561353 1.0 1232 +6364 CCL20 C-C motif chemokine ligand 20 Novel U 0.11457889626991134 0.6922267127048631 1.0 1233 +119687 OR51A7 olfactory receptor family 51 subfamily A member 7 Novel U 0.1145264647831683 0.6917746644480144 1.0 1234 +8934 RAB29 RAB29, member RAS oncogene family Novel U 0.11449471710213832 0.6915009456435309 1.0 1235 +657 BMPR1A bone morphogenetic protein receptor type 1A Novel U 0.11448444845388474 0.6914124124961499 1.0 1236 +865 CBFB core-binding factor subunit beta Novel U 0.11444771771146119 0.6910957312590396 1.0 1237 +4283 CXCL9 C-X-C motif chemokine ligand 9 Novel U 0.11424313061156606 0.6893318438008299 1.0 1238 +4087 SMAD2 SMAD family member 2 Novel U 0.11357753867271632 0.6835933134935704 1.0 1239 +9871 SEC24D SEC24 homolog D, COPII coat complex component Novel U 0.11347462917429614 0.6827060592449543 1.0 1240 +6461 SHB SH2 domain containing adaptor protein B Novel N 0.11346953168663136 0.6826621102639829 1.0 1241 +7474 WNT5A Wnt family member 5A Novel U 0.11340491879238862 0.6821050376340282 1.0 1242 +154810 AMOTL1 angiomotin like 1 Novel U 0.11310976193770383 0.6795602854260445 1.0 1243 +130399 ACVR1C activin A receptor type 1C Novel U 0.11295409448501194 0.6782181682173083 1.0 1244 +9332 CD163 CD163 molecule Novel U 0.11245904569162099 0.6739500087961535 1.0 1245 +3549 IHH Indian hedgehog signaling molecule Novel U 0.11235506035634142 0.6730534790108866 1.0 1246 +84640 USP38 ubiquitin specific peptidase 38 Novel U 0.11227719841664925 0.6723821771596687 1.0 1247 +221079 ARL5B ADP ribosylation factor like GTPase 5B Novel U 0.11226263935289552 0.6722566533608972 1.0 1248 +63971 KIF13A kinesin family member 13A Novel U 0.11225721131426546 0.672209854470512 1.0 1249 +6772 STAT1 signal transducer and activator of transcription 1 Novel U 0.11224345674783577 0.6720912668018326 1.0 1250 +196383 RILPL2 Rab interacting lysosomal protein like 2 Novel U 0.11212722040245594 0.6710891125511066 1.0 1251 +54843 SYTL2 synaptotagmin like 2 Novel U 0.11206260755503865 0.6705320403248665 1.0 1252 +9382 COG1 component of oligomeric golgi complex 1 Novel U 0.11200146795159986 0.6700049133468661 1.0 1253 +114815 SORCS1 sortilin related VPS10 domain containing receptor 1 Novel U 0.11184216350208848 0.6686314390629344 1.0 1254 +8837 CFLAR CASP8 and FADD like apoptosis regulator Novel U 0.11148480497995722 0.6655504030856182 1.0 1255 +6789 STK4 serine/threonine kinase 4 Novel U 0.11145978952211776 0.6653347274522717 1.0 1256 +10859 LILRB1 leukocyte immunoglobulin like receptor B1 Novel U 0.11144828365303105 0.6652355273649337 1.0 1257 +150946 GAREM2 GRB2 associated regulator of MAPK1 subtype 2 Novel U 0.11140580787201365 0.664869314160618 1.0 1258 +91543 RSAD2 radical S-adenosyl methionine domain containing 2 Novel U 0.11132441506261749 0.6641675702297644 1.0 1259 +3576 CXCL8 C-X-C motif chemokine ligand 8 Novel U 0.11130923261449226 0.6640366718014337 1.0 1260 +114609 TIRAP TIR domain containing adaptor protein Novel U 0.11067245387007062 0.6585465600518875 1.0 1261 +83844 USP26 ubiquitin specific peptidase 26 Novel U 0.11043261837910438 0.6564787717369558 1.0 1262 +5334 PLCL1 phospholipase C like 1 (inactive) Novel U 0.11028424278345106 0.6551995226913834 1.0 1263 +22986 SORCS3 sortilin related VPS10 domain containing receptor 3 Novel U 0.11024633634456953 0.6548727049586778 1.0 1264 +5908 RAP1B RAP1B, member of RAS oncogene family Novel U 0.11014447523680584 0.6539944896139381 1.0 1265 +3682 ITGAE integrin subunit alpha E Novel U 0.10997204983680124 0.6525078905043129 1.0 1266 +6850 SYK spleen associated tyrosine kinase Novel U 0.10993984578017786 0.652230236968921 1.0 1267 +6347 CCL2 C-C motif chemokine ligand 2 Novel U 0.10990228114138141 0.6519063661321028 1.0 1268 +8795 TNFRSF10B TNF receptor superfamily member 10b Novel U 0.1098338526465802 0.6513163965600922 1.0 1269 +351 APP amyloid beta precursor protein Novel U 0.10980074473522022 0.6510309502653585 1.0 1270 +8975 USP13 ubiquitin specific peptidase 13 Novel U 0.10953241535482902 0.6487174963428785 1.0 1271 +158158 RASEF RAS and EF-hand domain containing Novel U 0.10934800051738908 0.6471275279673805 1.0 1272 +55785 FGD6 FYVE, RhoGEF and PH domain containing 6 Novel U 0.10932200916722208 0.6469034384885961 1.0 1273 +80117 ARL14 ADP ribosylation factor like GTPase 14 Novel U 0.10929187314469051 0.6466436149112004 1.0 1274 +80329 ULBP1 UL16 binding protein 1 Novel N 0.10927409733767988 0.6464903573350304 1.0 1275 +5865 RAB3B RAB3B, member RAS oncogene family Novel U 0.10914260069575282 0.6453566334706679 1.0 1276 +5781 PTPN11 protein tyrosine phosphatase non-receptor type 11 Novel U 0.1091418263249063 0.6453499570818588 1.0 1277 +7436 VLDLR very low density lipoprotein receptor Novel U 0.10907240495831001 0.6447514272726298 1.0 1278 +5877 RABIF RAB interacting factor Novel U 0.10897887148053431 0.6439450102089154 1.0 1279 +372 ARCN1 archain 1 Novel U 0.10896542501992226 0.6438290789344456 1.0 1280 +27242 TNFRSF21 TNF receptor superfamily member 21 Novel U 0.10878909093148553 0.6423087803075633 1.0 1281 +255738 PCSK9 proprotein convertase subtilisin/kexin type 9 Novel U 0.10857647556514473 0.6404756755893116 1.0 1282 +140609 NEK7 NIMA related kinase 7 Novel U 0.10824690461759459 0.6376342155887937 1.0 1283 +26153 KIF26A kinesin family member 26A Novel U 0.10815915080279921 0.6368776290131642 1.0 1284 +3689 ITGB2 integrin subunit beta 2 Novel U 0.10802331857049886 0.6357065250134595 1.0 1285 +220972 MARCHF8 membrane associated ring-CH-type finger 8 Novel U 0.10789422623914195 0.634593530380131 1.0 1286 +5782 PTPN12 protein tyrosine phosphatase non-receptor type 12 Novel U 0.10764908999524607 0.6324800405932275 1.0 1287 +403277 OR5K3 olfactory receptor family 5 subfamily K member 3 Novel U 0.10760768091208686 0.6321230241318869 1.0 1288 +80852 GRIP2 glutamate receptor interacting protein 2 Novel U 0.10754613792848022 0.6315924193333429 1.0 1289 +83734 ATG10 autophagy related 10 Novel U 0.10752576761679185 0.6314167927306619 1.0 1290 +2081 ERN1 endoplasmic reticulum to nucleus signaling 1 Novel U 0.10743237041122326 0.6306115505642755 1.0 1291 +9321 TRIP11 thyroid hormone receptor interactor 11 Novel U 0.10738461601593365 0.6301998267607272 1.0 1292 +2800 GOLGA1 golgin A1 Novel U 0.10732965714547084 0.6297259881737566 1.0 1293 +56947 MFF mitochondrial fission factor Novel U 0.10726390710570048 0.6291591114225481 1.0 1294 +55773 TBC1D23 TBC1 domain family member 23 Novel U 0.10717750488214288 0.6284141778535557 1.0 1295 +26958 COPG2 COPI coat complex subunit gamma 2 Novel N 0.10710076232599468 0.6277525269851962 1.0 1296 +92703 TMEM183A transmembrane protein 183A Novel U 0.1070892084100163 0.6276529126522402 1.0 1297 +134957 STXBP5 syntaxin binding protein 5 Novel U 0.10698163546697992 0.6267254516091839 1.0 1298 +8470 SORBS2 sorbin and SH3 domain containing 2 Novel U 0.10696896158889675 0.6266161813051949 1.0 1299 +285598 ARL10 ADP ribosylation factor like GTPase 10 Novel U 0.10673789785443477 0.624624020394397 1.0 1300 +53834 FGFRL1 fibroblast growth factor receptor like 1 Novel U 0.10656113830529096 0.6231000535753093 1.0 1301 +8120 AP3B2 adaptor related protein complex 3 subunit beta 2 Novel U 0.10627403541602812 0.620624740196088 1.0 1302 +7048 TGFBR2 transforming growth factor beta receptor 2 Novel U 0.1062337186158674 0.6202771410649841 1.0 1303 +92552 ATXN3L ataxin 3 like Novel N 0.10621918473851019 0.620151834415627 1.0 1304 +55576 STAB2 stabilin 2 Novel U 0.10620268678319378 0.6200095940862824 1.0 1305 +4643 MYO1E myosin IE Novel U 0.10613906584409061 0.6194610737904226 1.0 1306 +55690 PACS1 phosphofurin acidic cluster sorting protein 1 Novel U 0.10605710730786498 0.6187544523357184 1.0 1307 +4803 NGF nerve growth factor Novel U 0.10562766639252144 0.6150519439908382 1.0 1308 +6346 CCL1 C-C motif chemokine ligand 1 Novel U 0.10539821696154018 0.6130737011113573 1.0 1309 +107282092 BOLA2-SMG1P6 BOLA2-SMG1P6 readthrough Novel U 0.10537029209051874 0.6128329414066052 1.0 1310 +26524 LATS2 large tumor suppressor kinase 2 Novel U 0.10498911375287215 0.6095465382587005 1.0 1311 +6452 SH3BP2 SH3 domain binding protein 2 Novel U 0.10485516631809905 0.608391684407325 1.0 1312 +3937 LCP2 lymphocyte cytosolic protein 2 Novel U 0.10474782699245926 0.6074662375420742 1.0 1313 +3600 IL15 interleukin 15 Novel U 0.10458015772836504 0.6060206443829032 1.0 1314 +346525 OR2A12 olfactory receptor family 2 subfamily A member 12 Novel U 0.10449985758698929 0.6053283211018275 1.0 1315 +4650 MYO9B myosin IXB Novel U 0.10433071045816439 0.6038699862445498 1.0 1316 +4641 MYO1C myosin IC Novel U 0.10395874981385098 0.6006630552318499 1.0 1317 +6610 SMPD2 sphingomyelin phosphodiesterase 2 Novel N 0.10345749792675127 0.5963414146322603 1.0 1318 +127833 SYT2 synaptotagmin 2 Novel U 0.10331230045877003 0.5950895664323143 1.0 1319 +10252 SPRY1 sprouty RTK signaling antagonist 1 Novel U 0.10329727510773115 0.5949600224470568 1.0 1320 +1314 COPA COPI coat complex subunit alpha Novel U 0.10324038834729202 0.5944695621818289 1.0 1321 +259173 ALS2CL ALS2 C-terminal like Novel U 0.10323045255470571 0.5943838988142982 1.0 1322 +3630 INS insulin Novel U 0.1031415691388642 0.593617573163629 1.0 1323 +255239 ANKK1 ankyrin repeat and kinase domain containing 1 Novel N 0.10309358746712596 0.593203889851991 1.0 1324 +3449 IFNA16 interferon alpha 16 Novel U 0.10305324712360428 0.5928560877372231 1.0 1325 +1639 DCTN1 dynactin subunit 1 Novel U 0.10295533374281939 0.5920119084881604 1.0 1326 +23085 ERC1 ELKS/RAB6-interacting/CAST family member 1 Novel U 0.10288995383201668 0.5914482228758081 1.0 1327 +9113 LATS1 large tumor suppressor kinase 1 Novel U 0.10270567937122316 0.5898594647848597 1.0 1328 +9912 ARHGAP44 Rho GTPase activating protein 44 Novel U 0.10253225221598117 0.588364228847691 1.0 1329 +3566 IL4R interleukin 4 receptor Novel U 0.10251223955040376 0.5881916857604903 1.0 1330 +84451 MAP3K21 mitogen-activated protein kinase kinase kinase 21 Novel U 0.10246491907804117 0.5877837031078221 1.0 1331 +90865 IL33 interleukin 33 Novel U 0.10227308972170425 0.5861298090160999 1.0 1332 +10670 RRAGA Ras related GTP binding A Novel U 0.10226669418448771 0.5860746686485472 1.0 1333 +23024 PDZRN3 PDZ domain containing ring finger 3 Novel U 0.10224203167821447 0.5858620360557508 1.0 1334 +973 CD79A CD79a molecule Novel U 0.10219930660954961 0.5854936735695152 1.0 1335 +54887 BLTP3A bridge-like lipid transfer protein family member 3A Novel U 0.10207678312268678 0.5844373135061279 1.0 1336 +27289 RND1 Rho family GTPase 1 Novel U 0.10197534706246279 0.5835627627913907 1.0 1337 +64342 HS1BP3 HCLS1 binding protein 3 Novel N 0.10188601019186207 0.5827925275923528 1.0 1338 +121268 RHEBL1 RHEB like 1 Novel U 0.10151459814006461 0.5795903263766883 1.0 1339 +22914 KLRK1 killer cell lectin like receptor K1 Novel U 0.10144540065592872 0.5789937268136194 1.0 1340 +22808 MRAS muscle RAS oncogene homolog Novel U 0.10100282691870699 0.5751779912915921 1.0 1341 +8829 NRP1 neuropilin 1 Novel U 0.1009430279464262 0.5746624228257701 1.0 1342 +89910 UBE3B ubiquitin protein ligase E3B Novel N 0.10082511460164349 0.5736458099986447 1.0 1343 +8554 PIAS1 protein inhibitor of activated STAT 1 Novel U 0.1008131134489351 0.5735423397272675 1.0 1344 +79719 AAGAB alpha and gamma adaptin binding protein Novel U 0.1006939044005731 0.5725145557398187 1.0 1345 +51479 ANKFY1 ankyrin repeat and FYVE domain containing 1 Novel U 0.10065724837250585 0.5721985186670572 1.0 1346 +26219 OR1J4 olfactory receptor family 1 subfamily J member 4 Novel U 0.10059876536905445 0.5716942960823526 1.0 1347 +8525 DGKZ diacylglycerol kinase zeta Novel U 0.10007564989375543 0.5671841543063153 1.0 1348 +3693 ITGB5 integrin subunit beta 5 Novel U 0.09986124872738149 0.5653356529658771 1.0 1349 +3700 ITIH4 inter-alpha-trypsin inhibitor heavy chain 4 Novel U 0.09970230377166744 0.563965278127613 1.0 1350 +11126 CD160 CD160 molecule Novel U 0.09965710313334059 0.5635755720362285 1.0 1351 +150 ADRA2A adrenoceptor alpha 2A Novel U 0.09939812272415126 0.5613427220866216 1.0 1352 +7292 TNFSF4 TNF superfamily member 4 Novel U 0.09932504357720641 0.5607126560129603 1.0 1353 +11127 KIF3A kinesin family member 3A Novel U 0.09921644840762746 0.5597763816450229 1.0 1354 +3337 DNAJB1 DnaJ heat shock protein family (Hsp40) member B1 Novel U 0.09900756708689137 0.5579754707269371 1.0 1355 +11140 CDC37 cell division cycle 37, HSP90 cochaperone Novel U 0.09900596440025917 0.5579616528525382 1.0 1356 +55284 UBE2W ubiquitin conjugating enzyme E2 W Novel U 0.0989822404120094 0.5577571118753508 1.0 1357 +26230 TIAM2 TIAM Rac1 associated GEF 2 Novel U 0.09884047215284067 0.5565348292658993 1.0 1358 +9372 ZFYVE9 zinc finger FYVE-type containing 9 Novel U 0.09866566676945661 0.5550277106668442 1.0 1359 +59272 ACE2 angiotensin converting enzyme 2 Novel U 0.09863772380499672 0.5547867949659947 1.0 1360 +7414 VCL vinculin Novel U 0.09855577853920018 0.5540802879248751 1.0 1361 +329 BIRC2 baculoviral IAP repeat containing 2 Novel U 0.09854454874282759 0.5539834680521166 1.0 1362 +8915 BCL10 BCL10 immune signaling adaptor Novel U 0.0985105121801519 0.5536900152095132 1.0 1363 +23208 SYT11 synaptotagmin 11 Novel U 0.09832823826191796 0.552118505185194 1.0 1364 +84196 USP48 ubiquitin specific peptidase 48 Novel U 0.09813860744957442 0.5504835662679586 1.0 1365 +3385 ICAM3 intercellular adhesion molecule 3 Novel U 0.0980983528425307 0.5501365033469046 1.0 1366 +57663 USP29 ubiquitin specific peptidase 29 Novel U 0.09800532709007297 0.5493344637357325 1.0 1367 +55754 TMEM30A transmembrane protein 30A Novel U 0.09781281634325857 0.5476746949035307 1.0 1368 +53353 LRP1B LDL receptor related protein 1B Novel U 0.09773249653330228 0.5469822020459638 1.0 1369 +143098 MPP7 MAGUK p55 scaffold protein 7 Novel U 0.0976864127822719 0.5465848820267084 1.0 1370 +2675 GFRA2 GDNF family receptor alpha 2 Novel U 0.09767529391068151 0.5464890185135262 1.0 1371 +130075 OR9A4 olfactory receptor family 9 subfamily A member 4 Novel U 0.09762381576387291 0.5460451896622734 1.0 1372 +10500 SEMA6C semaphorin 6C Novel U 0.09759100066063951 0.5457622678697317 1.0 1373 +6354 CCL7 C-C motif chemokine ligand 7 Novel U 0.09744776003646739 0.5445272909791417 1.0 1374 +135924 OR9A2 olfactory receptor family 9 subfamily A member 2 Novel U 0.09744715382748231 0.5445220644305158 1.0 1375 +23400 ATP13A2 ATPase cation transporting 13A2 Novel U 0.09741669285484292 0.5442594392325876 1.0 1376 +29 ABR ABR activator of RhoGEF and GTPase Novel U 0.09740273363405616 0.5441390870965792 1.0 1377 +27314 RAB30 RAB30, member RAS oncogene family Novel U 0.09732576647412586 0.5434754997630442 1.0 1378 +6402 SELL selectin L Novel U 0.09729977983680793 0.5432514509170043 1.0 1379 +6002 RGS12 regulator of G protein signaling 12 Novel N 0.09728450615878745 0.5431197659323945 1.0 1380 +5754 PTK7 protein tyrosine kinase 7 (inactive) Novel U 0.09720927601943628 0.5424711546594995 1.0 1381 +79890 RIN3 Ras and Rab interactor 3 Novel U 0.09664039928563319 0.5375664732962223 1.0 1382 +391114 OR6K3 olfactory receptor family 6 subfamily K member 3 Novel U 0.0964837569584646 0.5362159510176472 1.0 1383 +6376 CX3CL1 C-X3-C motif chemokine ligand 1 Novel U 0.09647817892207351 0.5361678588924021 1.0 1384 +1238 ACKR2 atypical chemokine receptor 2 Novel N 0.09617019327776996 0.5335125007805069 1.0 1385 +116835 HSPA12B heat shock protein family A (Hsp70) member 12B Novel U 0.09616256881905089 0.5334467650272893 1.0 1386 +22902 RUFY3 RUN and FYVE domain containing 3 Novel N 0.09603337613926907 0.5323329052205055 1.0 1387 +128239 IQGAP3 IQ motif containing GTPase activating protein 3 Novel U 0.09600621990785414 0.5320987724915622 1.0 1388 +3443 IFNA6 interferon alpha 6 Novel U 0.09591574853209683 0.5313187559357427 1.0 1389 +219484 OR5M8 olfactory receptor family 5 subfamily M member 8 Novel U 0.09589104156768197 0.5311057400384347 1.0 1390 +100529144 CORO7-PAM16 CORO7-PAM16 readthrough Novel U 0.09574790247794455 0.5298716385467142 1.0 1391 +6778 STAT6 signal transducer and activator of transcription 6 Novel U 0.09568383608609304 0.529319277693378 1.0 1392 +115704 EVI5L ecotropic viral integration site 5 like Novel U 0.0954897293326364 0.5276457485796096 1.0 1393 +55615 PRR5 proline rich 5 Novel U 0.09547392469438666 0.5275094858181522 1.0 1394 +29949 IL19 interleukin 19 Novel U 0.09531042825368728 0.5260998694671731 1.0 1395 +6424 SFRP4 secreted frizzled related protein 4 Novel U 0.09522396149726339 0.5253543795155274 1.0 1396 +2316 FLNA filamin A Novel U 0.09513053790832472 0.5245489098797863 1.0 1397 +8314 BAP1 BRCA1 associated protein 1 Novel U 0.0950880361477221 0.5241824726874256 1.0 1398 +129531 MITD1 microtubule interacting and trafficking domain containing 1 Novel U 0.09506391353017189 0.5239744948502217 1.0 1399 +4763 NF1 neurofibromin 1 Novel U 0.09505816701886764 0.5239249501857574 1.0 1400 +4130 MAP1A microtubule associated protein 1A Novel U 0.09490925013719585 0.5226410343375382 1.0 1401 +10580 SORBS1 sorbin and SH3 domain containing 1 Novel N 0.09484318728083542 0.5220714605772796 1.0 1402 +9108 MTMR7 myotubularin related protein 7 Novel U 0.09482525091542188 0.5219168187156225 1.0 1403 +285180 RUFY4 RUN and FYVE domain containing 4 Novel U 0.09469486305742386 0.5207926544474775 1.0 1404 +27124 INPP5J inositol polyphosphate-5-phosphatase J Novel U 0.09467688571361718 0.5206376592826367 1.0 1405 +7341 SUMO1 small ubiquitin like modifier 1 Novel U 0.09424413450801293 0.5169066106266769 1.0 1406 +6048 RNF5 ring finger protein 5 Novel U 0.09383130162688011 0.5133472916777303 1.0 1407 +282991 BLOC1S2 biogenesis of lysosomal organelles complex 1 subunit 2 Novel U 0.09364406430180468 0.5117329886763262 1.0 1408 +390714 IGHV3OR16-17 immunoglobulin heavy variable 3/OR16-17 (non-functional) Novel U 0.09359353830423636 0.5112973689648684 1.0 1409 +79705 LRRK1 leucine rich repeat kinase 1 Novel U 0.0935164783972724 0.5106329819947505 1.0 1410 +9564 BCAR1 BCAR1 scaffold protein, Cas family member Novel U 0.09345987360569787 0.5101449527789101 1.0 1411 +6622 SNCA synuclein alpha Novel U 0.093364119335348 0.509319388720244 1.0 1412 +219870 OR10G9 olfactory receptor family 10 subfamily G member 9 Novel U 0.09326203941309301 0.5084392868238249 1.0 1413 +356 FASLG Fas ligand Novel U 0.0932426977468166 0.5082725288875555 1.0 1414 +55816 DOK5 docking protein 5 Novel N 0.09322224350215923 0.5080961786404637 1.0 1415 +5609 MAP2K7 mitogen-activated protein kinase kinase 7 Novel U 0.0927783822371134 0.5042693424469759 1.0 1416 +57531 HACE1 HECT domain and ankyrin repeat containing E3 ubiquitin protein ligase 1 Novel U 0.0927532328477546 0.504052512096996 1.0 1417 +84231 TRAF7 TNF receptor associated factor 7 Novel U 0.09268526765214226 0.5034665369490183 1.0 1418 +2801 GOLGA2 golgin A2 Novel U 0.09260651936828772 0.5027875933092788 1.0 1419 +5366 PMAIP1 phorbol-12-myristate-13-acetate-induced protein 1 Novel U 0.09258795803640056 0.5026275631776614 1.0 1420 +3845 KRAS KRAS proto-oncogene, GTPase Novel U 0.09247444447386945 0.5016488839286376 1.0 1421 +54413 NLGN3 neuroligin 3 Novel U 0.09237932034552472 0.5008287527617831 1.0 1422 +8774 NAPG NSF attachment protein gamma Novel U 0.09211432453428452 0.4985440398538612 1.0 1423 +51209 RAB9B RAB9B, member RAS oncogene family Novel U 0.09208135579236865 0.4982597934355476 1.0 1424 +1420 CRYGC crystallin gamma C Novel N 0.09206730327709756 0.4981386369430039 1.0 1425 +8823 FGF16 fibroblast growth factor 16 Novel U 0.0919988379670826 0.49754834996147024 1.0 1426 +55835 CENPJ centromere protein J Novel U 0.09188330765073056 0.4965522828772758 1.0 1427 +118788 PIK3AP1 phosphoinositide-3-kinase adaptor protein 1 Novel U 0.09187575929558689 0.4964872032658298 1.0 1428 +2770 GNAI1 G protein subunit alpha i1 Novel U 0.0915439598889014 0.4936265301716125 1.0 1429 +3274 HRH2 histamine receptor H2 Novel N 0.09151580995385382 0.49338383003360137 1.0 1430 +64689 GORASP1 golgi reassembly stacking protein 1 Novel U 0.09151217886619714 0.4933525239054019 1.0 1431 +57724 EPG5 ectopic P-granules 5 autophagy tethering factor Novel U 0.0914125797815184 0.4924938110324786 1.0 1432 +23765 IL17RA interleukin 17 receptor A Novel U 0.09140448690767984 0.4924240367472376 1.0 1433 +57679 ALS2 alsin Rho guanine nucleotide exchange factor ALS2 Novel U 0.09122792283378761 0.4909017552560363 1.0 1434 +392138 OR2A25 olfactory receptor family 2 subfamily A member 25 Novel U 0.09122671784079532 0.49089136617467477 1.0 1435 +65018 PINK1 PTEN induced kinase 1 Novel U 0.09111229644426071 0.4899048598582858 1.0 1436 +23274 CLEC16A C-type lectin domain containing 16A Novel U 0.09109321618495608 0.4897403556930473 1.0 1437 +5062 PAK2 p21 (RAC1) activated kinase 2 Novel U 0.09095661127902853 0.48856258993743984 1.0 1438 +57669 EPB41L5 erythrocyte membrane protein band 4.1 like 5 Novel U 0.09091400562088543 0.4881952569722338 1.0 1439 +1742 DLG4 discs large MAGUK scaffold protein 4 Novel U 0.09087407589651926 0.487850995090349 1.0 1440 +3004 GZMM granzyme M Novel N 0.09076242289049476 0.4868883569909821 1.0 1441 +126119 JOSD2 Josephin domain containing 2 Novel N 0.09075501601848293 0.48682449720386495 1.0 1442 +23710 GABARAPL1 GABA type A receptor associated protein like 1 Novel U 0.09075401854782794 0.48681589731668157 1.0 1443 +132320 SCLT1 sodium channel and clathrin linker 1 Novel N 0.090638969451302 0.485823979162778 1.0 1444 +2120 ETV6 ETS variant transcription factor 6 Novel U 0.09052118310283143 0.48480846125904875 1.0 1445 +7133 TNFRSF1B TNF receptor superfamily member 1B Novel U 0.09044216311953943 0.4841271751097844 1.0 1446 +4646 MYO6 myosin VI Novel U 0.09043312183987233 0.48404922395930067 1.0 1447 +119016 AGAP4 ArfGAP with GTPase domain, ankyrin repeat and PH domain 4 Novel U 0.09041442882657595 0.48388805851081185 1.0 1448 +10561 IFI44 interferon induced protein 44 Novel N 0.09032890041068183 0.48315065864447854 1.0 1449 +5817 PVR PVR cell adhesion molecule Novel U 0.09021037176882485 0.4821287409139994 1.0 1450 +6504 SLAMF1 signaling lymphocytic activation molecule family member 1 Novel U 0.09016182550305538 0.481710189845151 1.0 1451 +29978 UBQLN2 ubiquilin 2 Novel U 0.09005085333807779 0.4807534217492414 1.0 1452 +30816 ERVW-1 endogenous retrovirus group W member 1, envelope Novel N 0.089942886812132 0.47982256735461015 1.0 1453 +79798 ARMC5 armadillo repeat containing 5 Novel U 0.08969344847965507 0.4776719862745796 1.0 1454 +9047 SH2D2A SH2 domain containing 2A Novel N 0.08954008941454318 0.4763497712781683 1.0 1455 +9662 CEP135 centrosomal protein 135 Novel U 0.08939583220704464 0.47510602971678223 1.0 1456 +3059 HCLS1 hematopoietic cell-specific Lyn substrate 1 Novel U 0.08934017823886645 0.47462619820971536 1.0 1457 +7334 UBE2N ubiquitin conjugating enzyme E2 N Novel U 0.08931550734054033 0.4744134932632036 1.0 1458 +2253 FGF8 fibroblast growth factor 8 Novel U 0.08896983762210206 0.47143323457950026 1.0 1459 +29933 GPR132 G protein-coupled receptor 132 Novel U 0.08889945799361218 0.47082644292904724 1.0 1460 +10048 RANBP9 RAN binding protein 9 Novel U 0.08888773572319937 0.47072537709560275 1.0 1461 +57533 TBC1D14 TBC1 domain family member 14 Novel U 0.08883943184171683 0.47030891579000933 1.0 1462 +64225 ATL2 atlastin GTPase 2 Novel U 0.08882569788425776 0.470190505805577 1.0 1463 +143279 HECTD2 HECT domain E3 ubiquitin protein ligase 2 Novel U 0.08879476978436743 0.4699238531792346 1.0 1464 +79856 SNX22 sorting nexin 22 Novel U 0.08878476322586668 0.4698375796896139 1.0 1465 +6360 CCL16 C-C motif chemokine ligand 16 Novel U 0.08866361674752538 0.4687930917729172 1.0 1466 +22879 MON1B MON1 homolog B, secretory trafficking associated Novel U 0.08862405484039067 0.46845200109880564 1.0 1467 +23307 FKBP15 FKBP prolyl isomerase family member 15 Novel U 0.08848512655737399 0.46725420389590605 1.0 1468 +6793 STK10 serine/threonine kinase 10 Novel U 0.08847886121257607 0.4672001860076029 1.0 1469 +142684 RAB40A RAB40A, member RAS oncogene family Novel U 0.08845967167518426 0.46703473968008946 1.0 1470 +127845 GOLT1A golgi transport 1A Novel U 0.08845702164137571 0.4670118918983812 1.0 1471 +27036 SIGLEC7 sialic acid binding Ig like lectin 7 Novel U 0.08844950536819345 0.46694708888780295 1.0 1472 +7128 TNFAIP3 TNF alpha induced protein 3 Novel U 0.08838326403744012 0.46637597637586653 1.0 1473 +9038 TAAR5 trace amine associated receptor 5 Novel N 0.08832911407203504 0.465909111921121 1.0 1474 +65997 RASL11B RAS like family 11 member B Novel U 0.0883197768148453 0.4658286089428809 1.0 1475 +148 ADRA1A adrenoceptor alpha 1A Novel U 0.08822433951071747 0.4650057776701236 1.0 1476 +114960 TSGA13 testis specific 13 Novel U 0.08819801355094015 0.464778803289528 1.0 1477 +8482 SEMA7A semaphorin 7A (JohnMiltonHagen blood group) Novel U 0.08803895368936392 0.4634074377680328 1.0 1478 +6359 CCL15 C-C motif chemokine ligand 15 Novel U 0.08788792914856547 0.4621053503268754 1.0 1479 +9479 MAPK8IP1 mitogen-activated protein kinase 8 interacting protein 1 Novel N 0.0876752429363973 0.46027163479754896 1.0 1480 +23228 PLCL2 phospholipase C like 2 Novel U 0.08763885494460838 0.45995790865167363 1.0 1481 +6717 SRI sorcin Novel U 0.08760580447634166 0.45967295761373667 1.0 1482 +23161 SNX13 sorting nexin 13 Novel U 0.08759903079118947 0.45961455697023607 1.0 1483 +4481 MSR1 macrophage scavenger receptor 1 Novel U 0.08759064633572002 0.4595422687572741 1.0 1484 +3320 HSP90AA1 heat shock protein 90 alpha family class A member 1 Novel U 0.08746340134776229 0.458445201354228 1.0 1485 +547 KIF1A kinesin family member 1A Novel U 0.08744895122254559 0.4583206167902337 1.0 1486 +201627 DENND6A DENN domain containing 6A Novel U 0.0874055574733041 0.4579464891443998 1.0 1487 +4921 DDR2 discoidin domain receptor tyrosine kinase 2 Novel U 0.08709648362874854 0.45528174890246054 1.0 1488 +3695 ITGB7 integrin subunit beta 7 Novel U 0.08705599821174877 0.4549326960084956 1.0 1489 +10966 RAB40B RAB40B, member RAS oncogene family Novel U 0.08695757535128204 0.45408412418130134 1.0 1490 +80381 CD276 CD276 molecule Novel U 0.08694116421991606 0.45394263242152605 1.0 1491 +27436 EML4 EMAP like 4 Novel U 0.08665224287331215 0.45145164085878864 1.0 1492 +9870 AREL1 apoptosis resistant E3 ubiquitin protein ligase 1 Novel U 0.08664878603942684 0.45142183709335804 1.0 1493 +284 ANGPT1 angiopoietin 1 Novel U 0.08657522425898552 0.4507876099011717 1.0 1494 +56923 NMUR2 neuromedin U receptor 2 Novel U 0.08652794231913573 0.4503799594640541 1.0 1495 +1540 CYLD CYLD lysine 63 deubiquitinase Novel U 0.0864507870093286 0.4497147499597753 1.0 1496 +27352 SGSM3 small G protein signaling modulator 3 Novel U 0.08642301123180167 0.4494752756935734 1.0 1497 +11152 WDR45 WD repeat domain 45 Novel U 0.08635643725902985 0.4489012952438011 1.0 1498 +6811 STX5 syntaxin 5 Novel U 0.08635622184181412 0.44889943798239357 1.0 1499 +54726 OTUD4 OTU deubiquitinase 4 Novel U 0.08635393505669045 0.448879722019846 1.0 1500 +27074 LAMP3 lysosomal associated membrane protein 3 Novel U 0.08630171928931503 0.448429533629466 1.0 1501 +55008 HERC6 HECT and RLD domain containing E3 ubiquitin protein ligase family member 6 Novel U 0.08627549016852429 0.4482033941650209 1.0 1502 +7038 TG thyroglobulin Novel U 0.08625908538312303 0.44806195711821434 1.0 1503 +4072 EPCAM epithelial cell adhesion molecule Novel U 0.08621191773924315 0.4476552921060231 1.0 1504 +23151 GRAMD4 GRAM domain containing 4 Novel N 0.08611749128108617 0.4468411760383354 1.0 1505 +55715 DOK4 docking protein 4 Novel U 0.08604528122110423 0.4462186029668954 1.0 1506 +55204 GOLPH3L golgi phosphoprotein 3 like Novel U 0.08601863181071574 0.4459888398939693 1.0 1507 +64780 MICAL1 microtubule associated monooxygenase, calponin and LIM domain containing 1 Novel U 0.08601536651976902 0.445960687553224 1.0 1508 +57732 ZFYVE28 zinc finger FYVE-type containing 28 Novel U 0.08598263833348545 0.4456785151320639 1.0 1509 +7163 TPD52 tumor protein D52 Novel U 0.0859658565006729 0.4455338272976941 1.0 1510 +79036 KXD1 KxDL motif containing 1 Novel U 0.08588404253895283 0.44482845232019824 1.0 1511 +5361 PLXNA1 plexin A1 Novel U 0.08586344265017873 0.4446508463740375 1.0 1512 +23178 PASK PAS domain containing serine/threonine kinase Novel U 0.08563367243342791 0.44266983777767616 1.0 1513 +6810 STX4 syntaxin 4 Novel U 0.08540795505070438 0.44072377147784575 1.0 1514 +596 BCL2 BCL2 apoptosis regulator Novel U 0.08508914388121863 0.4379750789958597 1.0 1515 +8643 PTCH2 patched 2 Novel U 0.08491631111704757 0.4364849677168724 1.0 1516 +3598 IL13RA2 interleukin 13 receptor subunit alpha 2 Novel U 0.08476373066429123 0.43516946567826476 1.0 1517 +8828 NRP2 neuropilin 2 Novel U 0.08471489626523195 0.43474843041223854 1.0 1518 +6357 CCL13 C-C motif chemokine ligand 13 Novel U 0.08465626267016685 0.43424290947265787 1.0 1519 +1121 CHM CHM Rab escort protein Novel U 0.08448399832427225 0.4327576989223547 1.0 1520 +5412 UBL3 ubiquitin like 3 Novel U 0.08444219187868687 0.43239725652360045 1.0 1521 +3062 HCRTR2 hypocretin receptor 2 Novel N 0.08440066035635506 0.43203918442912825 1.0 1522 +64786 TBC1D15 TBC1 domain family member 15 Novel U 0.08435007461429424 0.4316030496189127 1.0 1523 +647135 SRGAP2B SLIT-ROBO Rho GTPase activating protein 2B Novel U 0.08427477293285895 0.43095382153203 1.0 1524 +83888 FGFBP2 fibroblast growth factor binding protein 2 Novel U 0.08417244081848804 0.4300715453122515 1.0 1525 +10581 IFITM2 interferon induced transmembrane protein 2 Novel U 0.08415257341915221 0.42990025466619564 1.0 1526 +5591 PRKDC protein kinase, DNA-activated, catalytic subunit Novel U 0.08413395903276849 0.42973976711492123 1.0 1527 +1604 CD55 CD55 molecule (Cromer blood group) Novel U 0.0839614872131368 0.42825276778945603 1.0 1528 +599 BCL2L2 BCL2 like 2 Novel N 0.08380336492245162 0.4268894857176835 1.0 1529 +8600 TNFSF11 TNF superfamily member 11 Novel U 0.08377281272779881 0.426626074031431 1.0 1530 +57216 VANGL2 VANGL planar cell polarity protein 2 Novel N 0.08374268072675042 0.42636628512603447 1.0 1531 +8831 SYNGAP1 synaptic Ras GTPase activating protein 1 Novel U 0.08365902950404816 0.42564506984577455 1.0 1532 +403 ARL3 ADP ribosylation factor like GTPase 3 Novel U 0.08359541110309661 0.42509657143308227 1.0 1533 +1524 CX3CR1 C-X3-C motif chemokine receptor 1 Novel U 0.08350884149583712 0.4243501947329608 1.0 1534 +23683 PRKD3 protein kinase D3 Novel N 0.08348385535401667 0.424134771853372 1.0 1535 +6305 SBF1 SET binding factor 1 Novel N 0.08347005704181434 0.4240158070220086 1.0 1536 +55283 MCOLN3 mucolipin TRP cation channel 3 Novel N 0.0834568305229095 0.42390177201772933 1.0 1537 +7408 VASP vasodilator stimulated phosphoprotein Novel U 0.08329677029338058 0.42252178162943527 1.0 1538 +5734 PTGER4 prostaglandin E receptor 4 Novel U 0.08329554042860099 0.42251117811112393 1.0 1539 +10540 DCTN2 dynactin subunit 2 Novel U 0.08310673137821073 0.4208833241743382 1.0 1540 +22906 TRAK1 trafficking kinesin protein 1 Novel U 0.08299264411670329 0.41989969866804966 1.0 1541 +154796 AMOT angiomotin Novel U 0.0829297320051731 0.41935728966692265 1.0 1542 +126393 HSPB6 heat shock protein family B (small) member 6 Novel U 0.08286217376633327 0.41877482317588094 1.0 1543 +201163 FLCN folliculin Novel U 0.0828604989669041 0.41876038356698264 1.0 1544 +4217 MAP3K5 mitogen-activated protein kinase kinase kinase 5 Novel U 0.08280783110728035 0.41830629737538644 1.0 1545 +5229 PGGT1B protein geranylgeranyltransferase type I subunit beta Novel N 0.08278272962846012 0.4180898800954298 1.0 1546 +638 BIK BCL2 interacting killer Novel U 0.08275888156686684 0.4178842693957886 1.0 1547 +89846 FGD3 FYVE, RhoGEF and PH domain containing 3 Novel U 0.08270796093101818 0.4174452472336701 1.0 1548 +22821 RASA3 RAS p21 protein activator 3 Novel N 0.0826453150282265 0.41690513340293933 1.0 1549 +79849 NHERF4 NHERF family PDZ scaffold protein 4 Novel N 0.0826046041407186 0.4165541365711519 1.0 1550 +91683 SYT12 synaptotagmin 12 Novel U 0.08258300707472804 0.4163679332677452 1.0 1551 +6712 SPTBN2 spectrin beta, non-erythrocytic 2 Novel N 0.08253802478541185 0.41598010971480825 1.0 1552 +434 ASIP agouti signaling protein Novel N 0.0824927396727989 0.41558967531194246 1.0 1553 +2280 FKBP1A FKBP prolyl isomerase 1A Novel U 0.08241479450793773 0.4149176559187492 1.0 1554 +3601 IL15RA interleukin 15 receptor subunit alpha Novel U 0.08231684340970097 0.4140731514813421 1.0 1555 +64106 NPFFR1 neuropeptide FF receptor 1 Novel U 0.08218260099466233 0.4129157544002563 1.0 1556 +9672 SDC3 syndecan 3 Novel U 0.08217408165802575 0.41284230328308796 1.0 1557 +2150 F2RL1 F2R like trypsin receptor 1 Novel U 0.08212373748080984 0.41240825117114854 1.0 1558 +23331 TTC28 tetratricopeptide repeat domain 28 Novel N 0.08207630198195896 0.4119992767952477 1.0 1559 +5157 PDGFRL platelet derived growth factor receptor like Novel U 0.08202993398073345 0.41159950605767015 1.0 1560 +9077 DIRAS3 DIRAS family GTPase 3 Novel U 0.08181975391107649 0.4097873977232561 1.0 1561 +10758 TRAF3IP2 TRAF3 interacting protein 2 Novel U 0.0817985384689423 0.4096044846641237 1.0 1562 +440738 MAP1LC3C microtubule associated protein 1 light chain 3 gamma Novel U 0.08167373358309903 0.4085284550758696 1.0 1563 +3822 KLRC2 killer cell lectin like receptor C2 Novel U 0.0816468059540796 0.40829629328692474 1.0 1564 +219333 USP12 ubiquitin specific peptidase 12 Novel N 0.08163163001554072 0.40816545098225837 1.0 1565 +55009 FAM174C family with sequence similarity 174 member C Novel U 0.08158639846360981 0.40777547836322625 1.0 1566 +117581 TWIST2 twist family bHLH transcription factor 2 Novel U 0.08147609675136332 0.4068244907058893 1.0 1567 +729873 TBC1D3 TBC1 domain family member 3 Novel U 0.0814268172237178 0.4063996176772136 1.0 1568 +8490 RGS5 regulator of G protein signaling 5 Novel U 0.08140456795843347 0.40620779131079293 1.0 1569 +22878 TRAPPC8 trafficking protein particle complex subunit 8 Novel U 0.08139115760187332 0.40609217131442615 1.0 1570 +3578 IL9 interleukin 9 Novel N 0.0812280554260321 0.404685954194576 1.0 1571 +1129 CHRM2 cholinergic receptor muscarinic 2 Novel N 0.08118944714348085 0.4043530853802173 1.0 1572 +940 CD28 CD28 molecule Novel U 0.08105221806769104 0.40316993822278935 1.0 1573 +22853 LMTK2 lemur tyrosine kinase 2 Novel U 0.08103897099153068 0.40305572598013484 1.0 1574 +26091 HERC4 HECT and RLD domain containing E3 ubiquitin protein ligase 4 Novel N 0.08099345988979544 0.4026633431681137 1.0 1575 +93 ACVR2B activin A receptor type 2B Novel U 0.08092688850925388 0.40208938506775865 1.0 1576 +642517 AGAP9 ArfGAP with GTPase domain, ankyrin repeat and PH domain 9 Novel U 0.08076511008151104 0.4006945808995058 1.0 1577 +10871 CD300C CD300c molecule Novel U 0.08063773629138728 0.3995964030035432 1.0 1578 +51560 RAB6B RAB6B, member RAS oncogene family Novel U 0.08040097057936711 0.39755508138463114 1.0 1579 +9049 AIP aryl hydrocarbon receptor interacting protein Novel U 0.08031449810342706 0.39680954212106473 1.0 1580 +79834 PEAK1 pseudopodium enriched atypical kinase 1 Novel U 0.08022775936255042 0.3960617072025795 1.0 1581 +388761 OR14A2 olfactory receptor family 14 subfamily A member 2 Novel U 0.08021890486873264 0.3959853664626111 1.0 1582 +84868 HAVCR2 hepatitis A virus cellular receptor 2 Novel U 0.08018995168989969 0.39573574100213527 1.0 1583 +27198 HCAR1 hydroxycarboxylic acid receptor 1 Novel U 0.08016895735520516 0.3955547342637822 1.0 1584 +8936 WASF1 WASP family member 1 Novel U 0.08011567652203296 0.3950953632015618 1.0 1585 +3362 HTR6 5-hydroxytryptamine receptor 6 Novel N 0.08006206070238618 0.3946331039883218 1.0 1586 +257397 TAB3 TGF-beta activated kinase 1 (MAP3K7) binding protein 3 Novel N 0.07997461616622849 0.39387918391859805 1.0 1587 +1794 DOCK2 dedicator of cytokinesis 2 Novel U 0.0798569328077105 0.3928645539627686 1.0 1588 +26532 OR10H3 olfactory receptor family 10 subfamily H member 3 Novel U 0.0797704969669582 0.3921193305565962 1.0 1589 +474384 F8A3 coagulation factor VIII associated 3 Novel U 0.07976064796714073 0.3920344154897965 1.0 1590 +27095 TRAPPC3 trafficking protein particle complex subunit 3 Novel U 0.07959608024685652 0.39061556289359534 1.0 1591 +7323 UBE2D3 ubiquitin conjugating enzyme E2 D3 Novel U 0.07954534754773718 0.39017816106452785 1.0 1592 +50615 IL21R interleukin 21 receptor Novel U 0.07950650840615359 0.38984330185413757 1.0 1593 +5170 PDPK1 3-phosphoinositide dependent protein kinase 1 Novel U 0.07942429910698814 0.3891345183979936 1.0 1594 +9474 ATG5 autophagy related 5 Novel U 0.0793450459770643 0.3884512221297138 1.0 1595 +7041 TGFB1I1 transforming growth factor beta 1 induced transcript 1 Novel U 0.07929619585367222 0.3880300512932952 1.0 1596 +4688 NCF2 neutrophil cytosolic factor 2 Novel U 0.07926300904766773 0.38774392479304487 1.0 1597 +55691 FRMD4A FERM domain containing 4A Novel U 0.0792607892863778 0.3877247866895108 1.0 1598 +4829 NMBR neuromedin B receptor Novel U 0.07916337181867572 0.38688488305150864 1.0 1599 +598 BCL2L1 BCL2 like 1 Novel U 0.07915586372021066 0.3868201505208441 1.0 1600 +1855 DVL1 dishevelled segment polarity protein 1 Novel U 0.07914449937974025 0.3867221706499878 1.0 1601 +22899 ARHGEF15 Rho guanine nucleotide exchange factor 15 Novel U 0.07905896127320611 0.38598468723391754 1.0 1602 +10226 PLIN3 perilipin 3 Novel U 0.0790435603235563 0.385851904952211 1.0 1603 +9181 ARHGEF2 Rho/Rac guanine nucleotide exchange factor 2 Novel U 0.07894460587504173 0.38499874993530925 1.0 1604 +7483 WNT9A Wnt family member 9A Novel N 0.07891550515273268 0.38474785240006837 1.0 1605 +2848 GPR25 G protein-coupled receptor 25 Novel U 0.07881480317719586 0.3838796307391846 1.0 1606 +29775 CARD10 caspase recruitment domain family member 10 Novel U 0.07872640145856263 0.3831174581346496 1.0 1607 +133 ADM adrenomedullin Novel U 0.07868554001346945 0.3827651632413687 1.0 1608 +81327 OR4A16 olfactory receptor family 4 subfamily A member 16 Novel U 0.07867005846904113 0.3826316860961097 1.0 1609 +51326 ARL17A ADP ribosylation factor like GTPase 17A Novel U 0.07854714996924533 0.38157200656886536 1.0 1610 +7428 VHL von Hippel-Lindau tumor suppressor Novel U 0.07841171218364106 0.3804043033680402 1.0 1611 +23554 TSPAN12 tetraspanin 12 Novel N 0.07832178402235829 0.37962897024142644 1.0 1612 +7201 TRHR thyrotropin releasing hormone receptor Novel U 0.07831571951119085 0.3795766838793151 1.0 1613 +1409 CRYAA crystallin alpha A Novel U 0.07830224758819061 0.3794605330759152 1.0 1614 +8717 TRADD TNFRSF1A associated via death domain Novel U 0.07828783623792697 0.3793362828177174 1.0 1615 +8817 FGF18 fibroblast growth factor 18 Novel U 0.07821772343226212 0.37873179163212695 1.0 1616 +4277 MICB MHC class I polypeptide-related sequence B Novel U 0.07819845059629987 0.3785656271297934 1.0 1617 +51701 NLK nemo like kinase Novel U 0.0781098005892616 0.37780131385850135 1.0 1618 +8776 MTMR1 myotubularin related protein 1 Novel U 0.07808906966188366 0.37762257813754063 1.0 1619 +7837 PXDN peroxidasin Novel U 0.077989247346174 0.37676194063488305 1.0 1620 +9847 C2CD5 C2 calcium dependent domain containing 5 Novel U 0.0779015629936102 0.37600595294138817 1.0 1621 +1493 CTLA4 cytotoxic T-lymphocyte associated protein 4 Novel U 0.0777890811756479 0.3750361690787593 1.0 1622 +81392 OR2AE1 olfactory receptor family 2 subfamily AE member 1 Novel U 0.07767333592473766 0.374038248894483 1.0 1623 +6993 DYNLT1 dynein light chain Tctex-type 1 Novel U 0.07766008421828804 0.37392399673088944 1.0 1624 +391195 OR2T33 olfactory receptor family 2 subfamily T member 33 Novel U 0.07760303072754417 0.373432098967923 1.0 1625 +54329 GPR85 G protein-coupled receptor 85 Novel N 0.07759691005294499 0.3733793283818655 1.0 1626 +390067 OR52H1 olfactory receptor family 52 subfamily H member 1 Novel U 0.07755808378401842 0.37304458015559044 1.0 1627 +8784 TNFRSF18 TNF receptor superfamily member 18 Novel U 0.07751150629321016 0.3726430032628456 1.0 1628 +155 ADRB3 adrenoceptor beta 3 Known P 0.07742134462050168 0.37186565687207507 1.0 1629 +22861 NLRP1 NLR family pyrin domain containing 1 Novel U 0.07721437271334751 0.3700812083344199 1.0 1630 +29982 NRBF2 nuclear receptor binding factor 2 Novel U 0.07706603672326776 0.3688023007560002 1.0 1631 +83706 FERMT3 FERM domain containing kindlin 3 Novel U 0.0768826628089025 0.3672213069011702 1.0 1632 +10633 RASL10A RAS like family 10 member A Novel N 0.07686784360812447 0.36709354028046703 1.0 1633 +7529 YWHAB tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein beta Novel U 0.07676378666350149 0.3661963931013234 1.0 1634 +89941 RHOT2 ras homolog family member T2 Novel U 0.07676154108408678 0.3661770324018069 1.0 1635 +535 ATP6V0A1 ATPase H+ transporting V0 subunit a1 Novel U 0.07673382333651987 0.36593805845218763 1.0 1636 +6399 TRAPPC2 trafficking protein particle complex subunit 2 Novel U 0.07668283775985023 0.36549847639015504 1.0 1637 +29110 TBK1 TANK binding kinase 1 Novel U 0.07661468332309088 0.36491086966283554 1.0 1638 +6804 STX1A syntaxin 1A Novel U 0.0765891780567988 0.3646909710506847 1.0 1639 +9261 MAPKAPK2 MAPK activated protein kinase 2 Novel U 0.07658140888467035 0.3646239876226726 1.0 1640 +6009 RHEB Ras homolog, mTORC1 binding Novel U 0.0765726670755285 0.3645486184155462 1.0 1641 +85477 SCIN scinderin Novel U 0.07652973237365181 0.3641784485358173 1.0 1642 +2934 GSN gelsolin Novel U 0.07631885000223014 0.3623602851701952 1.0 1643 +1326 MAP3K8 mitogen-activated protein kinase kinase kinase 8 Novel U 0.07629494933669004 0.36215422093539906 1.0 1644 +23095 KIF1B kinesin family member 1B Novel U 0.07622754671562133 0.36157309613322686 1.0 1645 +30851 TAX1BP3 Tax1 binding protein 3 Novel U 0.07621470634220276 0.3614623903573331 1.0 1646 +80014 WWC2 WW and C2 domain containing 2 Novel N 0.07618281928273679 0.3611874698745654 1.0 1647 +6387 CXCL12 C-X-C motif chemokine ligand 12 Novel U 0.07611034700871006 0.3605626360737577 1.0 1648 +23370 ARHGEF18 Rho/Rac guanine nucleotide exchange factor 18 Novel U 0.07600228369208481 0.35963094717946514 1.0 1649 +22820 COPG1 COPI coat complex subunit gamma 1 Novel U 0.07594667220797727 0.3591514819570733 1.0 1650 +196403 DTX3 deltex E3 ubiquitin ligase 3 Novel U 0.07586937919028375 0.3584850851774784 1.0 1651 +9467 SH3BP5 SH3 domain binding protein 5 Novel N 0.07586403294033314 0.35843899144409463 1.0 1652 +91947 ARRDC4 arrestin domain containing 4 Novel U 0.07580572813552591 0.3579363052336466 1.0 1653 +3442 IFNA5 interferon alpha 5 Novel U 0.07575307965597872 0.3574823861311484 1.0 1654 +57522 SRGAP1 SLIT-ROBO Rho GTPase activating protein 1 Novel U 0.07574279208662472 0.3573936898518215 1.0 1655 +10791 VAMP5 vesicle associated membrane protein 5 Novel N 0.07572958642307957 0.3572798346560806 1.0 1656 +269 AMHR2 anti-Mullerian hormone receptor type 2 Novel N 0.07564442827414754 0.3565456271183494 1.0 1657 +5606 MAP2K3 mitogen-activated protein kinase kinase 3 Novel U 0.07563178374099903 0.3564366098174199 1.0 1658 +285 ANGPT2 angiopoietin 2 Novel U 0.0756112367374768 0.3562594598317403 1.0 1659 +10987 COPS5 COP9 signalosome subunit 5 Novel U 0.07556886747788577 0.35589416502261223 1.0 1660 +51272 BET1L Bet1 golgi vesicular membrane trafficking protein like Novel U 0.07553521051388762 0.35560398496380996 1.0 1661 +9547 CXCL14 C-X-C motif chemokine ligand 14 Novel U 0.07551300970336439 0.35541257635953294 1.0 1662 +139716 GAB3 GRB2 associated binding protein 3 Novel U 0.07549791239034893 0.3552824119401034 1.0 1663 +51554 ACKR4 atypical chemokine receptor 4 Novel U 0.07547844322950499 0.35511455478463216 1.0 1664 +7321 UBE2D1 ubiquitin conjugating enzyme E2 D1 Novel U 0.07533154322276053 0.3538480278157261 1.0 1665 +10990 LILRB5 leukocyte immunoglobulin like receptor B5 Novel N 0.07528150008602698 0.3534165711828346 1.0 1666 +9098 USP6 ubiquitin specific peptidase 6 Novel U 0.07491270116939848 0.3502368996200832 1.0 1667 +92 ACVR2A activin A receptor type 2A Novel U 0.07489992892341206 0.35012678121809127 1.0 1668 +4739 NEDD9 neural precursor cell expressed, developmentally down-regulated 9 Novel U 0.0748333148198454 0.34955245477286895 1.0 1669 +7534 YWHAZ tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein zeta Novel U 0.07479453511574995 0.34921810801433867 1.0 1670 +26984 SEC22A SEC22 homolog A, vesicle trafficking protein Novel U 0.07469746269214374 0.3483811792410935 1.0 1671 +54900 LAX1 lymphocyte transmembrane adaptor 1 Novel U 0.07457684249055076 0.3473412287217028 1.0 1672 +51026 GOLT1B golgi transport 1B Novel U 0.0744837941958606 0.34653899475829114 1.0 1673 +23545 ATP6V0A2 ATPase H+ transporting V0 subunit a2 Novel U 0.07440373910430569 0.3458487842218892 1.0 1674 +79729 SH3D21 SH3 domain containing 21 Novel U 0.07440312150717511 0.34584345948815276 1.0 1675 +402135 OR5K2 olfactory receptor family 5 subfamily K member 2 Novel U 0.0743075059505505 0.3450190913768381 1.0 1676 +10483 SEC23B SEC23 homolog B, COPII coat complex component Novel U 0.07422683665412609 0.3443235853537382 1.0 1677 +282616 IFNL2 interferon lambda 2 Novel U 0.07395325006057918 0.34196480534591234 1.0 1678 +23230 VPS13A vacuolar protein sorting 13 homolog A Novel U 0.07394588315006899 0.3419012900946509 1.0 1679 +29062 WDR91 WD repeat domain 91 Novel U 0.07392003052681385 0.3416783966769089 1.0 1680 +479 ATP12A ATPase H+/K+ transporting non-gastric alpha2 subunit Novel U 0.07385267248913813 0.3410976562591273 1.0 1681 +23380 SRGAP2 SLIT-ROBO Rho GTPase activating protein 2 Novel U 0.07378531809407074 0.3405169472468017 1.0 1682 +64283 ARHGEF28 Rho guanine nucleotide exchange factor 28 Novel U 0.07369916973247258 0.33977420239804923 1.0 1683 +645432 ARRDC5 arrestin domain containing 5 Novel U 0.07369180083335243 0.3397106700016005 1.0 1684 +8476 CDC42BPA CDC42 binding protein kinase alpha Novel U 0.07362596238446914 0.33914303101403603 1.0 1685 +334 APLP2 amyloid beta precursor like protein 2 Novel U 0.07361978942690137 0.33908980966019975 1.0 1686 +64582 GPR135 G protein-coupled receptor 135 Novel U 0.07348623433280421 0.33793833845024207 1.0 1687 +55161 TMEM33 transmembrane protein 33 Novel N 0.07342681179903354 0.33742601552222334 1.0 1688 +254973 OR1L4 olfactory receptor family 1 subfamily L member 4 Novel U 0.07342635722116216 0.3374220962907248 1.0 1689 +9826 ARHGEF11 Rho guanine nucleotide exchange factor 11 Novel U 0.07338786000600986 0.3370901850655402 1.0 1690 +8445 DYRK2 dual specificity tyrosine phosphorylation regulated kinase 2 Novel U 0.07322062121398193 0.33564830330498246 1.0 1691 +310 ANXA7 annexin A7 Novel U 0.07321291969171022 0.3355819031333629 1.0 1692 +9094 UNC119 unc-119 lipid binding chaperone Novel U 0.0730314846309231 0.3340176254816148 1.0 1693 +139341 FUNDC1 FUN14 domain containing 1 Novel U 0.07302829973659937 0.3339901662959856 1.0 1694 +84725 PLEKHA8 pleckstrin homology domain containing A8 Novel U 0.07294735912004434 0.3332923210336286 1.0 1695 +55187 VPS13D vacuolar protein sorting 13 homolog D Novel U 0.07292775222927235 0.33312327641280487 1.0 1696 +131566 DCBLD2 discoidin, CUB and LCCL domain containing 2 Novel U 0.07289173648674793 0.3328127596863373 1.0 1697 +9180 OSMR oncostatin M receptor Novel U 0.07284450591834768 0.3324055521581597 1.0 1698 +27035 NOX1 NADPH oxidase 1 Novel U 0.07272507719529851 0.33137587420268544 1.0 1699 +51421 AMOTL2 angiomotin like 2 Novel U 0.07269880982650972 0.33114940497568895 1.0 1700 +403278 OR5K4 olfactory receptor family 5 subfamily K member 4 Novel U 0.07266572352221286 0.33086414497045075 1.0 1701 +2664 GDI1 GDP dissociation inhibitor 1 Novel U 0.07256689124260224 0.3300120432565069 1.0 1702 +101060233 OPN1MW3 opsin 1, medium wave sensitive 3 Novel U 0.07249270509093347 0.329372432926391 1.0 1703 +80279 CDK5RAP3 CDK5 regulatory subunit associated protein 3 Novel U 0.07248299510857406 0.3292887164256342 1.0 1704 +9175 MAP3K13 mitogen-activated protein kinase kinase kinase 13 Novel U 0.07232098064770558 0.32789187725189833 1.0 1705 +390151 OR8H2 olfactory receptor family 8 subfamily H member 2 Novel U 0.07219553431316769 0.3268103172890113 1.0 1706 +90139 TSPAN18 tetraspanin 18 Novel U 0.07218074822918912 0.3266828361912333 1.0 1707 +115362 GBP5 guanylate binding protein 5 Novel U 0.07182528807387303 0.3236181673525006 1.0 1708 +81619 TSPAN14 tetraspanin 14 Novel U 0.07177611123178783 0.32319417964734753 1.0 1709 +11261 CHP1 calcineurin like EF-hand protein 1 Novel U 0.07173160517384189 0.3228104620157597 1.0 1710 +7314 UBB ubiquitin B Novel U 0.0716191021778765 0.3218404955628597 1.0 1711 +923 CD6 CD6 molecule Novel U 0.07159385255009823 0.3216228009878578 1.0 1712 +79930 DOK3 docking protein 3 Novel U 0.07157571207727889 0.3214663993745184 1.0 1713 +347468 OR13H1 olfactory receptor family 13 subfamily H member 1 Novel U 0.07154233415997077 0.32117862517100737 1.0 1714 +79156 PLEKHF1 pleckstrin homology and FYVE domain containing 1 Novel U 0.07152950025693132 0.32106797518074515 1.0 1715 +2043 EPHA4 EPH receptor A4 Novel U 0.07147354269983924 0.32058552622283254 1.0 1716 +91828 EXOC3L4 exocyst complex component 3 like 4 Novel U 0.0714039798068545 0.31998577621632945 1.0 1717 +405754 ERVFRD-1 endogenous retrovirus group FRD member 1, envelope Novel N 0.07131343721243277 0.31920514563494806 1.0 1718 +3606 IL18 interleukin 18 Novel U 0.07123531822383812 0.3185316275866412 1.0 1719 +5588 PRKCQ protein kinase C theta Novel U 0.07122820628500542 0.31847031062326975 1.0 1720 +390157 OR8K1 olfactory receptor family 8 subfamily K member 1 Novel U 0.07120032532813474 0.31822992953290624 1.0 1721 +6572 SLC18A3 solute carrier family 18 member A3 Novel U 0.0711679935526295 0.31795117484434293 1.0 1722 +1240 CMKLR1 chemerin chemokine-like receptor 1 Novel U 0.07116162797215195 0.31789629275463965 1.0 1723 +1606 DGKA diacylglycerol kinase alpha Novel U 0.07104508836706964 0.3168915238914281 1.0 1724 +818 CAMK2G calcium/calmodulin dependent protein kinase II gamma Novel U 0.07096721045664794 0.3162200843454605 1.0 1725 +10123 ARL4C ADP ribosylation factor like GTPase 4C Novel U 0.07095644696995126 0.31612728485223435 1.0 1726 +50619 DEF6 DEF6 guanine nucleotide exchange factor Novel U 0.07085878938601713 0.31528531100545326 1.0 1727 +7804 LRP8 LDL receptor related protein 8 Novel U 0.07067606794302207 0.313709942559397 1.0 1728 +3985 LIMK2 LIM domain kinase 2 Novel U 0.07065586446366912 0.31353575433413183 1.0 1729 +3709 ITPR2 inositol 1,4,5-trisphosphate receptor type 2 Novel N 0.07062553688476834 0.3132742792162561 1.0 1730 +10013 HDAC6 histone deacetylase 6 Novel U 0.07053281724062337 0.312474878777417 1.0 1731 +826 CAPNS1 calpain small subunit 1 Novel N 0.07048492389062248 0.31206195694880945 1.0 1732 +374383 NCR3LG1 natural killer cell cytotoxicity receptor 3 ligand 1 Novel U 0.07044121627623172 0.3116851232535684 1.0 1733 +81318 OR4A5 olfactory receptor family 4 subfamily A member 5 Novel U 0.07041091868741879 0.3114239067010658 1.0 1734 +11274 USP18 ubiquitin specific peptidase 18 Novel U 0.07040865027834199 0.31140434917117893 1.0 1735 +260425 MAGI3 membrane associated guanylate kinase, WW and PDZ domain containing 3 Novel U 0.0702182902827922 0.3097631234591607 1.0 1736 +6366 CCL21 C-C motif chemokine ligand 21 Novel U 0.07009450486506051 0.3086958834134389 1.0 1737 +64805 P2RY12 purinergic receptor P2Y12 Novel U 0.0700299881813519 0.30813964028130963 1.0 1738 +134864 TAAR1 trace amine associated receptor 1 Novel U 0.06996511485152951 0.3075803222553703 1.0 1739 +55970 GNG12 G protein subunit gamma 12 Novel N 0.0699648407691847 0.3075779592011466 1.0 1740 +57217 TTC7A tetratricopeptide repeat domain 7A Novel U 0.06994667433078171 0.3074213337204794 1.0 1741 +92140 MTDH metadherin Novel U 0.06985875609042418 0.30666332951789765 1.0 1742 +27072 VPS41 VPS41 subunit of HOPS complex Novel U 0.06981922478729924 0.30632250270220646 1.0 1743 +55681 SCYL2 SCY1 like pseudokinase 2 Novel U 0.06972809868867758 0.3055368413259187 1.0 1744 +25970 SH2B1 SH2B adaptor protein 1 Novel U 0.06966008458244584 0.3049504444855265 1.0 1745 +2921 CXCL3 C-X-C motif chemokine ligand 3 Novel U 0.06962830839593748 0.3046764799155191 1.0 1746 +7052 TGM2 transglutaminase 2 Novel U 0.06962423033067237 0.3046413200829658 1.0 1747 +23179 RGL1 ral guanine nucleotide dissociation stimulator like 1 Novel U 0.06956763342004992 0.3041533588142859 1.0 1748 +338755 OR2AG2 olfactory receptor family 2 subfamily AG member 2 Novel U 0.06956005239869138 0.30408799756471744 1.0 1749 +282618 IFNL1 interferon lambda 1 Novel U 0.06955262293737134 0.3040239430194876 1.0 1750 +153090 DAB2IP DAB2 interacting protein Novel U 0.06952019774476112 0.30374438291719125 1.0 1751 +1233 CCR4 C-C motif chemokine receptor 4 Novel U 0.06948153915655902 0.3034110803828832 1.0 1752 +8809 IL18R1 interleukin 18 receptor 1 Novel U 0.0694582970814679 0.3032106943136882 1.0 1753 +8408 ULK1 unc-51 like autophagy activating kinase 1 Novel U 0.06941391573160909 0.3028280518771196 1.0 1754 +51177 PLEKHO1 pleckstrin homology domain containing O1 Novel U 0.06940466158394534 0.3027482654438163 1.0 1755 +10276 NET1 neuroepithelial cell transforming 1 Novel U 0.06938194527270997 0.3025524123499242 1.0 1756 +56924 PAK6 p21 (RAC1) activated kinase 6 Novel N 0.0693448061537193 0.3022322102148425 1.0 1757 +29909 GPR171 G protein-coupled receptor 171 Novel U 0.06934110653882462 0.3022003132657374 1.0 1758 +5909 RAP1GAP RAP1 GTPase activating protein Novel U 0.06933831758075511 0.3021762677215031 1.0 1759 +7185 TRAF1 TNF receptor associated factor 1 Novel U 0.06928112803181592 0.3016831969063529 1.0 1760 +55088 CCDC186 coiled-coil domain containing 186 Novel U 0.06919121221145962 0.300907970179436 1.0 1761 +9578 CDC42BPB CDC42 binding protein kinase beta Novel U 0.06919117827091925 0.30090767755446846 1.0 1762 +91461 PKDCC protein kinase domain containing, cytoplasmic Novel U 0.06918708959100607 0.300872426205663 1.0 1763 +22898 DENND3 DENN domain containing 3 Novel U 0.0690279854238086 0.29950067869464025 1.0 1764 +219477 OR8J1 olfactory receptor family 8 subfamily J member 1 Novel U 0.06884463476378858 0.29791988533166885 1.0 1765 +9648 GCC2 GRIP and coiled-coil domain containing 2 Novel U 0.06879147945917302 0.2974615965383053 1.0 1766 +2533 FYB1 FYN binding protein 1 Novel U 0.0687872682638292 0.2974252888988947 1.0 1767 +5724 PTAFR platelet activating factor receptor Novel N 0.06872910897950826 0.29692385732161186 1.0 1768 +5228 PGF placental growth factor Novel N 0.06871204651371306 0.2967767499554205 1.0 1769 +64215 DNAJC1 DnaJ heat shock protein family (Hsp40) member C1 Novel U 0.06868624563125608 0.29655430263102944 1.0 1770 +7472 WNT2 Wnt family member 2 Novel U 0.06844954423298429 0.294513535505603 1.0 1771 +84067 FHIP1B FHF complex subunit HOOK interacting protein 1B Novel U 0.06833740656308987 0.2935467187824518 1.0 1772 +131450 CD200R1 CD200 receptor 1 Novel N 0.06816717570170419 0.2920790403141987 1.0 1773 +9515 STXBP5L syntaxin binding protein 5L Novel U 0.06816451549386693 0.29205610481512384 1.0 1774 +51128 SAR1B secretion associated Ras related GTPase 1B Novel U 0.06808564672940953 0.2913761224284425 1.0 1775 +8388 OR1E2 olfactory receptor family 1 subfamily E member 2 Novel N 0.0679926156386693 0.29057403679223004 1.0 1776 +3313 HSPA9 heat shock protein family A (Hsp70) member 9 Novel U 0.06791431225328584 0.28989892893115743 1.0 1777 +3440 IFNA2 interferon alpha 2 Novel U 0.06790394999723344 0.2898095887259394 1.0 1778 +9905 SGSM2 small G protein signaling modulator 2 Novel U 0.06788173738722543 0.2896180783901102 1.0 1779 +6683 SPAST spastin Novel U 0.06785082323726555 0.2893515460358054 1.0 1780 +5604 MAP2K1 mitogen-activated protein kinase kinase 1 Novel U 0.0677578543323359 0.2885499965466492 1.0 1781 +10332 CLEC4M C-type lectin domain family 4 member M Novel U 0.0676307732465991 0.28745434225846717 1.0 1782 +6098 ROS1 ROS proto-oncogene 1, receptor tyrosine kinase Novel N 0.06760087743694791 0.2871965897231227 1.0 1783 +6351 CCL4 C-C motif chemokine ligand 4 Novel U 0.06753109335683659 0.2865949327088038 1.0 1784 +10595 ERN2 endoplasmic reticulum to nucleus signaling 2 Novel U 0.06746908517050808 0.28606031707454704 1.0 1785 +2217 FCGRT Fc gamma receptor and transporter Novel U 0.06737763083681049 0.28527182575573573 1.0 1786 +84812 PLCD4 phospholipase C delta 4 Novel U 0.06713854865627292 0.28321053225312576 1.0 1787 +54566 EPB41L4B erythrocyte membrane protein band 4.1 like 4B Novel U 0.06711683316678872 0.2830233079385444 1.0 1788 +10241 CALCOCO2 calcium binding and coiled-coil domain 2 Novel U 0.06706280376610656 0.28255748295599803 1.0 1789 +79168 LILRA6 leukocyte immunoglobulin like receptor A6 Novel U 0.06703407652690625 0.28230980547799295 1.0 1790 +219965 OR5B17 olfactory receptor family 5 subfamily B member 17 Novel U 0.06702992571120757 0.28227401841343214 1.0 1791 +403253 OR4A47 olfactory receptor family 4 subfamily A member 47 Novel U 0.06697552583447164 0.28180499929955916 1.0 1792 +9856 KIAA0319 KIAA0319 Novel U 0.06688863613955176 0.2810558629014412 1.0 1793 +11214 AKAP13 A-kinase anchoring protein 13 Novel U 0.06687859574079022 0.28096929765143286 1.0 1794 +23513 SCRIB scribble planar cell polarity protein Novel U 0.06656258419724649 0.27824474268881794 1.0 1795 +22866 CNKSR2 connector enhancer of kinase suppressor of Ras 2 Novel U 0.0665566616052751 0.27819367991064775 1.0 1796 +9294 S1PR2 sphingosine-1-phosphate receptor 2 Novel U 0.06644483496715262 0.27722954480839 1.0 1797 +3581 IL9R interleukin 9 receptor Novel U 0.06624310222140097 0.2754902667193808 1.0 1798 +79955 PDZD7 PDZ domain containing 7 Novel U 0.06617187992938088 0.2748762098814689 1.0 1799 +10174 SORBS3 sorbin and SH3 domain containing 3 Novel U 0.06613063965544237 0.274520648841645 1.0 1800 +9308 CD83 CD83 molecule Novel N 0.06612038367944582 0.27443222495059183 1.0 1801 +81846 SBF2 SET binding factor 2 Novel N 0.06610030309278243 0.27425909626854295 1.0 1802 +55755 CDK5RAP2 CDK5 regulatory subunit associated protein 2 Novel U 0.06602108639711067 0.2735761141252511 1.0 1803 +54922 RASIP1 Ras interacting protein 1 Novel U 0.06599177527922989 0.27332340262368277 1.0 1804 +2920 CXCL2 C-X-C motif chemokine ligand 2 Novel U 0.06591845539245393 0.27269126096476215 1.0 1805 +81697 OR2B2 olfactory receptor family 2 subfamily B member 2 Novel U 0.06586667173196607 0.27224479806792484 1.0 1806 +551 AVP arginine vasopressin Novel U 0.06582661942599995 0.2718994793249433 1.0 1807 +90203 SNX21 sorting nexin family member 21 Novel U 0.06579029406545876 0.27158629316654725 1.0 1808 +2352 FOLR3 folate receptor gamma Novel N 0.06575192577624608 0.27125549350141737 1.0 1809 +219986 OR4D11 olfactory receptor family 4 subfamily D member 11 Novel U 0.06573286672161405 0.2710911721563863 1.0 1810 +4050 LTB lymphotoxin beta Novel N 0.06573012581716585 0.27106754091579094 1.0 1811 +57646 USP28 ubiquitin specific peptidase 28 Novel U 0.06572427208920793 0.27101707186210167 1.0 1812 +23072 HECW1 HECT, C2 and WW domain containing E3 ubiquitin protein ligase 1 Novel N 0.06562967142253204 0.27020145382179794 1.0 1813 +941 CD80 CD80 molecule Novel U 0.0655969282114778 0.2699191518616564 1.0 1814 +27006 FGF22 fibroblast growth factor 22 Novel U 0.06557750430380835 0.26975168486522727 1.0 1815 +340895 MALRD1 MAM and LDL receptor class A domain containing 1 Novel U 0.06550824433880789 0.26915454661123683 1.0 1816 +84971 ATG4D autophagy related 4D cysteine peptidase Novel U 0.06545785840091474 0.2687201344514994 1.0 1817 +1906 EDN1 endothelin 1 Novel U 0.06544572918730304 0.26861556007814646 1.0 1818 +9170 LPAR2 lysophosphatidic acid receptor 2 Novel U 0.06541029027901382 0.2683100166401876 1.0 1819 +80380 PDCD1LG2 programmed cell death 1 ligand 2 Novel U 0.06540925762155374 0.26830111338312296 1.0 1820 +5266 PI3 peptidase inhibitor 3 Novel N 0.0652779146910017 0.2671687147712653 1.0 1821 +10867 TSPAN9 tetraspanin 9 Novel U 0.06513668612464599 0.2659510852283299 1.0 1822 +79628 SH3TC2 SH3 domain and tetratricopeptide repeats 2 Novel U 0.06510758782785826 0.26570020860519267 1.0 1823 +4356 MPP3 MAGUK p55 scaffold protein 3 Novel U 0.0649744541781562 0.26455237096002576 1.0 1824 +392392 OR1K1 olfactory receptor family 1 subfamily K member 1 Novel U 0.06495716538366846 0.2644033122570082 1.0 1825 +9919 SEC16A SEC16 homolog A, endoplasmic reticulum export factor Novel U 0.06493554257141057 0.26421688697715207 1.0 1826 +114879 OSBPL5 oxysterol binding protein like 5 Novel U 0.06489480079335348 0.263865623816489 1.0 1827 +442191 OR14J1 olfactory receptor family 14 subfamily J member 1 Novel U 0.0648934236071927 0.26385375013824697 1.0 1828 +2689 GH2 growth hormone 2 Novel U 0.06479674825551215 0.2630202447978089 1.0 1829 +51285 RASL12 RAS like family 12 Novel U 0.06471303497513665 0.2622984944752537 1.0 1830 +55845 BRK1 BRICK1 subunit of SCAR/WAVE actin nucleating complex Novel U 0.0647002250643574 0.2621880513389274 1.0 1831 +80216 ALPK1 alpha kinase 1 Novel U 0.0646597723619573 0.26183928050024413 1.0 1832 +54106 TLR9 toll like receptor 9 Novel U 0.06463635546784921 0.2616373871949054 1.0 1833 +115650 TNFRSF13C TNF receptor superfamily member 13C Novel U 0.06453336096278914 0.2607494000450162 1.0 1834 +2086 ERV3-1 endogenous retrovirus group 3 member 1, envelope Novel U 0.06450854359991327 0.26053543232591264 1.0 1835 +9590 AKAP12 A-kinase anchoring protein 12 Novel N 0.06448352996707493 0.26031977242716814 1.0 1836 +1128 CHRM1 cholinergic receptor muscarinic 1 Novel N 0.06447794664638976 0.2602716347423542 1.0 1837 +127608 OR2AJ1 olfactory receptor family 2 subfamily AJ member 1 Novel U 0.0644660923205232 0.2601694303671406 1.0 1838 +8153 RND2 Rho family GTPase 2 Novel U 0.06444227964419952 0.25996412474848096 1.0 1839 +3448 IFNA14 interferon alpha 14 Novel U 0.06444140661785476 0.2599565977821131 1.0 1840 +22979 EFR3B EFR3 homolog B Novel U 0.0644142507003914 0.2597224677599644 1.0 1841 +3434 IFIT1 interferon induced protein with tetratricopeptide repeats 1 Novel U 0.06438671277830571 0.2594850442106937 1.0 1842 +2207 FCER1G Fc epsilon receptor Ig Novel U 0.06433855658911358 0.2590698562628968 1.0 1843 +92017 SNX29 sorting nexin 29 Novel U 0.06427561336881747 0.25852717905149614 1.0 1844 +7813 EVI5 ecotropic viral integration site 5 Novel U 0.06427559936009332 0.25852705827255723 1.0 1845 +3976 LIF LIF interleukin 6 family cytokine Novel U 0.06422213279223321 0.258066085862614 1.0 1846 +57521 RPTOR regulatory associated protein of MTOR complex 1 Novel U 0.0641822895770247 0.25772256983625125 1.0 1847 +9638 FEZ1 fasciculation and elongation protein zeta 1 Novel U 0.0641711421629849 0.2576264602387921 1.0 1848 +2152 F3 coagulation factor III, tissue factor Novel U 0.06415893673890306 0.2575212288020538 1.0 1849 +79778 MICALL2 MICAL like 2 Novel U 0.06407484169025199 0.25679618699008616 1.0 1850 +387680 WASHC2A WASH complex subunit 2A Novel N 0.06405117392001204 0.25659213070740056 1.0 1851 +79594 MUL1 mitochondrial E3 ubiquitin protein ligase 1 Novel U 0.0640461100870181 0.2565484718867171 1.0 1852 +84986 ARHGAP19 Rho GTPase activating protein 19 Novel U 0.06404117970443404 0.2565059636346882 1.0 1853 +26751 SH3YL1 SH3 and SYLF domain containing 1 Novel U 0.06389245396088596 0.25522369572096415 1.0 1854 +81466 OR2L5 olfactory receptor family 2 subfamily L member 5 Novel U 0.0638747621217907 0.25507116209050174 1.0 1855 +9639 ARHGEF10 Rho guanine nucleotide exchange factor 10 Novel U 0.06362171796570089 0.2528894927011372 1.0 1856 +201633 TIGIT T cell immunoreceptor with Ig and ITIM domains Novel U 0.06349080091238075 0.2517607658726347 1.0 1857 +57715 SEMA4G semaphorin 4G Novel U 0.06347777081318776 0.2516484243390896 1.0 1858 +123606 NIPA1 NIPA magnesium transporter 1 Novel U 0.0634675261166097 0.251560097695736 1.0 1859 +7412 VCAM1 vascular cell adhesion molecule 1 Novel U 0.06346434237777832 0.25153264847240875 1.0 1860 +1048 CEACAM5 CEA cell adhesion molecule 5 Novel N 0.06327736046117814 0.2499205475248313 1.0 1861 +1068 CETN1 centrin 1 Novel U 0.06314987391715185 0.24882139749917603 1.0 1862 +10798 OR5I1 olfactory receptor family 5 subfamily I member 1 Novel U 0.06303649241439972 0.2478438568292122 1.0 1863 +5568 PRKACG protein kinase cAMP-activated catalytic subunit gamma Novel N 0.06292243227721309 0.246860465180529 1.0 1864 +23220 DTX4 deltex E3 ubiquitin ligase 4 Novel U 0.06271899120399325 0.24510645841411452 1.0 1865 +5863 RGL2 ral guanine nucleotide dissociation stimulator like 2 Novel U 0.06270008935891114 0.2449434924817832 1.0 1866 +1657 DMXL1 Dmx like 1 Novel U 0.06266929759522653 0.2446780153045454 1.0 1867 +79932 KIAA0319L KIAA0319 like Novel U 0.0626551232133397 0.2445558081152804 1.0 1868 +830 CAPZA2 capping actin protein of muscle Z-line subunit alpha 2 Novel N 0.06264439369871137 0.2444633015188465 1.0 1869 +5608 MAP2K6 mitogen-activated protein kinase kinase 6 Novel U 0.06257616225723754 0.2438750308804096 1.0 1870 +2208 FCER2 Fc epsilon receptor II Novel U 0.06254246697683843 0.2435845204693069 1.0 1871 +6233 RPS27A ribosomal protein S27a Novel N 0.062460150369914695 0.2428748118384617 1.0 1872 +79827 CLMP CXADR like membrane protein Novel U 0.06234936516384811 0.24191965564515244 1.0 1873 +4194 MDM4 MDM4 regulator of p53 Novel U 0.06233079445542534 0.24175954467191027 1.0 1874 +55613 MTMR8 myotubularin related protein 8 Novel U 0.062240718163012354 0.24098293440395724 1.0 1875 +80262 PHAF1 phagosome assembly factor 1 Novel U 0.062209871296392286 0.24071698214604803 1.0 1876 +284525 SLC9C2 solute carrier family 9 member C2 (putative) Novel U 0.06202063393713795 0.23908543546111755 1.0 1877 +56413 LTB4R2 leukotriene B4 receptor 2 Novel U 0.061929526610272324 0.23829993592917414 1.0 1878 +6345 SRL sarcalumenin Novel U 0.06191128543391233 0.2381426660806799 1.0 1879 +7481 WNT11 Wnt family member 11 Novel U 0.0618020101932951 0.2372005283480644 1.0 1880 +150368 PHETA2 PH domain containing endocytic trafficking adaptor 2 Novel U 0.06170584919461382 0.23637145760201161 1.0 1881 +9371 KIF3B kinesin family member 3B Novel U 0.06165136246645691 0.23590168968172673 1.0 1882 +5029 P2RY2 purinergic receptor P2Y2 Novel N 0.06164398976391438 0.2358381244933324 1.0 1883 +654346 LGALS9C galectin 9C Novel U 0.06164348486548487 0.23583377141335846 1.0 1884 +80331 DNAJC5 DnaJ heat shock protein family (Hsp40) member C5 Novel U 0.06159356564776285 0.23540338317231768 1.0 1885 +163688 CALML6 calmodulin like 6 Novel U 0.061376438420979125 0.23353137857204725 1.0 1886 +112609 MRAP2 melanocortin 2 receptor accessory protein 2 Novel U 0.06128736711552617 0.2327634329945628 1.0 1887 +54896 SLC66A1 solute carrier family 66 member 1 Novel N 0.061279574778008765 0.23269624984164589 1.0 1888 +143872 ARHGAP42 Rho GTPase activating protein 42 Novel U 0.061140854442634764 0.2315002454997775 1.0 1889 +4651 MYO10 myosin X Novel U 0.06104658956003433 0.23068752248716456 1.0 1890 +84952 CGNL1 cingulin like 1 Novel U 0.060962504606270895 0.2299625677102334 1.0 1891 +951 CD37 CD37 molecule Novel U 0.06095581108675375 0.22990485823034135 1.0 1892 +123803 NTAN1 N-terminal asparagine amidase Novel U 0.060897846994688594 0.22940510954104154 1.0 1893 +26020 LRP10 LDL receptor related protein 10 Novel U 0.06089049043439395 0.22934168352617582 1.0 1894 +9748 SLK STE20 like kinase Novel U 0.06086840997797634 0.22915131257821997 1.0 1895 +8798 DYRK4 dual specificity tyrosine phosphorylation regulated kinase 4 Novel U 0.06085922252630471 0.22907210117737997 1.0 1896 +50616 IL22 interleukin 22 Novel U 0.06078701077694751 0.22844951354066267 1.0 1897 +26037 SIPA1L1 signal induced proliferation associated 1 like 1 Novel U 0.06074050191417965 0.22804852833791103 1.0 1898 +401427 OR2A7 olfactory receptor family 2 subfamily A member 7 Novel U 0.060638883085618 0.22717240185041632 1.0 1899 +124997 WDR81 WD repeat domain 81 Novel U 0.0606046138681142 0.22687694312897885 1.0 1900 +6372 CXCL6 C-X-C motif chemokine ligand 6 Novel U 0.060600382585646095 0.2268404623045209 1.0 1901 +9738 CCP110 centriolar coiled-coil protein 110 Novel U 0.06056841169586424 0.22656481906238624 1.0 1902 +1410 CRYAB crystallin alpha B Novel U 0.06050492482773115 0.22601745468546136 1.0 1903 +55534 MAML3 mastermind like transcriptional coactivator 3 Novel N 0.06048498404687076 0.22584553136632457 1.0 1904 +8777 MPDZ multiple PDZ domain crumbs cell polarity complex component Novel N 0.060432225904919465 0.22539066678808847 1.0 1905 +3558 IL2 interleukin 2 Novel U 0.06039869100840675 0.22510153915784467 1.0 1906 +821 CANX calnexin Novel U 0.06039286467033877 0.22505130625141667 1.0 1907 +345611 IRGM immunity related GTPase M Novel U 0.0603623627955779 0.22478832840789595 1.0 1908 +5583 PRKCH protein kinase C eta Novel U 0.060349872259934864 0.22468063882640052 1.0 1909 +1030 CDKN2B cyclin dependent kinase inhibitor 2B Novel U 0.06031386857991603 0.2243702260991701 1.0 1910 +51669 SARAF store-operated calcium entry associated regulatory factor Novel N 0.06026028795700441 0.22390827034142524 1.0 1911 +5774 PTPN3 protein tyrosine phosphatase non-receptor type 3 Novel U 0.06019748279526999 0.22336678342875602 1.0 1912 +2786 GNG4 G protein subunit gamma 4 Novel U 0.06019625974063058 0.2233562386253922 1.0 1913 +23129 PLXND1 plexin D1 Novel U 0.06014155520531364 0.22288459283833037 1.0 1914 +9766 SUSD6 sushi domain containing 6 Novel N 0.060097121075865435 0.22250149535227026 1.0 1915 +84941 HSH2D hematopoietic SH2 domain containing Novel U 0.05998152060053 0.22150482337875982 1.0 1916 +9542 NRG2 neuregulin 2 Novel N 0.059920122047411185 0.22097546381574726 1.0 1917 +2492 FSHR follicle stimulating hormone receptor Novel U 0.05983000603078839 0.22019851105779603 1.0 1918 +56882 CDC42SE1 CDC42 small effector 1 Novel N 0.05982953244115734 0.22019442791271515 1.0 1919 +966 CD59 CD59 molecule (CD59 blood group) Novel U 0.059809875858951575 0.22002495486753396 1.0 1920 +10312 TCIRG1 T cell immune regulator 1, ATPase H+ transporting V0 subunit a3 Novel U 0.05973968855649982 0.2194198213934113 1.0 1921 +4092 SMAD7 SMAD family member 7 Novel U 0.05969773217161622 0.21905808626384576 1.0 1922 +5566 PRKACA protein kinase cAMP-activated catalytic subunit alpha Novel U 0.05965542143285167 0.21869329600340107 1.0 1923 +11234 HPS5 HPS5 biogenesis of lysosomal organelles complex 2 subunit 2 Novel N 0.05956607065708162 0.21792294091824227 1.0 1924 +8995 TNFSF18 TNF superfamily member 18 Novel U 0.05951306941350626 0.21746598039208978 1.0 1925 +57449 PLEKHG5 pleckstrin homology and RhoGEF domain containing G5 Novel U 0.05937896183783995 0.21630974585486842 1.0 1926 +79310 OR5H2 olfactory receptor family 5 subfamily H member 2 Novel U 0.05936524537605367 0.21619148671278063 1.0 1927 +9938 ARHGAP25 Rho GTPase activating protein 25 Novel U 0.05935286407057161 0.21608473888035487 1.0 1928 +9630 GNA14 G protein subunit alpha 14 Novel N 0.059312505064925004 0.21573677586644857 1.0 1929 +127623 OR2B11 olfactory receptor family 2 subfamily B member 11 Novel U 0.05929138460919028 0.21555468175102657 1.0 1930 +332 BIRC5 baculoviral IAP repeat containing 5 Novel N 0.0592835433317967 0.21548707665345218 1.0 1931 +54848 ARHGEF38 Rho guanine nucleotide exchange factor 38 Novel U 0.059209312790651045 0.21484708361083094 1.0 1932 +5732 PTGER2 prostaglandin E receptor 2 Novel N 0.05917183343103956 0.2145239480250862 1.0 1933 +266747 RGL4 ral guanine nucleotide dissociation stimulator like 4 Novel U 0.05917061425263858 0.2145134366414657 1.0 1934 +7142 TNP2 transition protein 2 Novel U 0.05912833191293386 0.21414889122903671 1.0 1935 +160622 TAMALIN trafficking regulator and scaffold protein tamalin Novel U 0.05910040697085613 0.213908130911659 1.0 1936 +25924 MYRIP myosin VIIA and Rab interacting protein Novel U 0.05909115836460101 0.2138283922546875 1.0 1937 +85480 TSLP thymic stromal lymphopoietin Novel U 0.059087883478595164 0.21380015718827455 1.0 1938 +81554 RCC1L RCC1 like Novel U 0.05905500112449687 0.21351665557932595 1.0 1939 +10725 NFAT5 nuclear factor of activated T cells 5 Novel U 0.058987588477000974 0.21293544433236233 1.0 1940 +1901 S1PR1 sphingosine-1-phosphate receptor 1 Novel N 0.05897728200176435 0.21284658505229265 1.0 1941 +3398 ID2 inhibitor of DNA binding 2 Novel U 0.05881364732641762 0.21143577688442544 1.0 1942 +2036 EPB41L1 erythrocyte membrane protein band 4.1 like 1 Novel U 0.05875970308574351 0.21097068612544567 1.0 1943 +920 CD4 CD4 molecule Novel U 0.05874790604628419 0.21086897565612978 1.0 1944 +2444 FRK fyn related Src family tyrosine kinase Novel N 0.058705683707151166 0.2105049475502952 1.0 1945 +396 ARHGDIA Rho GDP dissociation inhibitor alpha Novel U 0.05868234526159773 0.2103037306044227 1.0 1946 +26000 TBC1D10B TBC1 domain family member 10B Novel U 0.058632896546096935 0.20987739888975865 1.0 1947 +26692 OR2W1 olfactory receptor family 2 subfamily W member 1 Novel U 0.05857559573399548 0.20938336879762284 1.0 1948 +80301 PLEKHO2 pleckstrin homology domain containing O2 Novel U 0.05848244446567945 0.20858024702707528 1.0 1949 +27348 TOR1B torsin family 1 member B Novel U 0.05845795390033652 0.20836909685643892 1.0 1950 +1997 ELF1 E74 like ETS transcription factor 1 Novel N 0.058434589202070585 0.20816765356770145 1.0 1951 +23259 DDHD2 DDHD domain containing 2 Novel N 0.058427893498632616 0.2081099252587114 1.0 1952 +4924 NUCB1 nucleobindin 1 Novel U 0.058366735952900366 0.20758264358773948 1.0 1953 +119749 OR4C46 olfactory receptor family 4 subfamily C member 46 Novel U 0.058303109639204605 0.2070340769537846 1.0 1954 +26225 ARL5A ADP ribosylation factor like GTPase 5A Novel U 0.058294937328300274 0.20696361778643665 1.0 1955 +8526 DGKE diacylglycerol kinase epsilon Novel U 0.058292009999456634 0.20693837925167077 1.0 1956 +84079 ANKRD27 ankyrin repeat domain 27 Novel U 0.058285446177097154 0.20688178798103965 1.0 1957 +3481 IGF2 insulin like growth factor 2 Novel U 0.05819473563102641 0.20609970937186264 1.0 1958 +8772 FADD Fas associated via death domain Novel U 0.05815350245338242 0.20574420951412162 1.0 1959 +85360 SYDE1 synapse defective Rho GTPase homolog 1 Novel U 0.05810137148872058 0.20529475226682437 1.0 1960 +3061 HCRTR1 hypocretin receptor 1 Novel N 0.05803446354351337 0.20471789240876845 1.0 1961 +23061 TBC1D9B TBC1 domain family member 9B Novel U 0.05800732474593755 0.20448390998905863 1.0 1962 +80310 PDGFD platelet derived growth factor D Novel U 0.05795727543705779 0.20405240014180862 1.0 1963 +4342 MOS MOS proto-oncogene, serine/threonine kinase Novel U 0.05792028098341927 0.20373344526718673 1.0 1964 +9827 RGP1 RGP1 homolog, RAB6A GEF complex partner 1 Novel U 0.05783120630351975 0.20296547059625517 1.0 1965 +57662 CAMSAP3 calmodulin regulated spectrin associated protein family member 3 Novel U 0.05783036494120029 0.20295821662743765 1.0 1966 +5580 PRKCD protein kinase C delta Novel U 0.057792770870933964 0.20263409204147984 1.0 1967 +80705 TSGA10 testis specific 10 Novel N 0.05779072570475469 0.20261645924363764 1.0 1968 +115653 KIR3DL3 killer cell immunoglobulin like receptor, three Ig domains and long cytoplasmic tail 3 Novel U 0.05778691132267583 0.20258357280694061 1.0 1969 +3384 ICAM2 intercellular adhesion molecule 2 Novel U 0.05777664147013835 0.20249502927659188 1.0 1970 +9048 ARTN artemin Novel N 0.05770123934366195 0.20184493518325833 1.0 1971 +23235 SIK2 salt inducible kinase 2 Novel U 0.05769137614306223 0.2017598976816536 1.0 1972 +26534 OR10G2 olfactory receptor family 10 subfamily G member 2 Novel U 0.057687034275947825 0.20172246343016734 1.0 1973 +9844 ELMO1 engulfment and cell motility 1 Novel U 0.05766615541266726 0.20154245225106004 1.0 1974 +219960 OR10Q1 olfactory receptor family 10 subfamily Q member 1 Novel U 0.05764237588406143 0.20133743242189459 1.0 1975 +25782 RAB3GAP2 RAB3 GTPase activating non-catalytic protein subunit 2 Novel U 0.0575947485143515 0.20092680379407823 1.0 1976 +57147 SCYL3 SCY1 like pseudokinase 3 Novel U 0.057517858665614804 0.20026388301402995 1.0 1977 +10325 RRAGB Ras related GTP binding B Novel N 0.057495727493372735 0.20007307480973321 1.0 1978 +140775 SMCR8 SMCR8-C9orf72 complex subunit Novel U 0.057470357262937435 0.19985434043547573 1.0 1979 +56963 RGMA repulsive guidance molecule BMP co-receptor a Novel N 0.05746592214665802 0.1998161022181836 1.0 1980 +353091 RAET1G retinoic acid early transcript 1G Novel U 0.05745860296349358 0.19975299845751288 1.0 1981 +5713 PSMD7 proteasome 26S subunit, non-ATPase 7 Novel U 0.05745067256818252 0.19968462501248635 1.0 1982 +161253 REM2 RRAD and GEM like GTPase 2 Novel U 0.05743199352647523 0.19952358002276924 1.0 1983 +10287 RGS19 regulator of G protein signaling 19 Novel N 0.05739427377990703 0.19919837189414039 1.0 1984 +23503 ZFYVE26 zinc finger FYVE-type containing 26 Novel U 0.057357512179333464 0.19888142460749003 1.0 1985 +51465 UBE2J1 ubiquitin conjugating enzyme E2 J1 Novel U 0.057295157226781405 0.19834381926081757 1.0 1986 +81573 ANKRD13C ankyrin repeat domain 13C Novel U 0.05719446833570929 0.1974757104101902 1.0 1987 +89953 KLC4 kinesin light chain 4 Novel U 0.0571834342073142 0.19738057752694216 1.0 1988 +9779 TBC1D5 TBC1 domain family member 5 Novel U 0.05716615848183306 0.19723163150090597 1.0 1989 +257068 PLCXD2 phosphatidylinositol specific phospholipase C X domain containing 2 Novel U 0.05712762380429197 0.19689939728645292 1.0 1990 +9821 RB1CC1 RB1 inducible coiled-coil 1 Novel U 0.05707613300910113 0.19645545938471365 1.0 1991 +1832 DSP desmoplakin Novel U 0.05706890187372765 0.19639311474519125 1.0 1992 +11034 DSTN destrin, actin depolymerizing factor Novel U 0.0570521330806653 0.196248539335563 1.0 1993 +3596 IL13 interleukin 13 Novel U 0.05702847911266336 0.19604460205155583 1.0 1994 +64130 LIN7B lin-7 homolog B, crumbs cell polarity complex component Novel U 0.056984091164093566 0.19566190272291756 1.0 1995 +8078 USP5 ubiquitin specific peptidase 5 Novel U 0.05688498980542355 0.19480748109154794 1.0 1996 +375790 AGRN agrin Novel U 0.05687633250931796 0.19473284052999498 1.0 1997 +611 OPN1SW opsin 1, short wave sensitive Novel U 0.056862541797908145 0.19461394123034204 1.0 1998 +597 BCL2A1 BCL2 related protein A1 Novel U 0.0568545878055052 0.1945453643384 1.0 1999 +8843 HCAR3 hydroxycarboxylic acid receptor 3 Novel U 0.05680338787801561 0.19410393420909844 1.0 2000 +4345 CD200 CD200 molecule Novel U 0.05677105398121412 0.19382516123136703 1.0 2001 +10093 ARPC4 actin related protein 2/3 complex subunit 4 Novel U 0.05674600110527917 0.1936091629906354 1.0 2002 +8437 RASAL1 RAS protein activator like 1 Novel U 0.05672934282954503 0.19346554042763944 1.0 2003 +51094 ADIPOR1 adiponectin receptor 1 Novel U 0.05671185863749895 0.1933147970665829 1.0 2004 +5297 PI4KA phosphatidylinositol 4-kinase alpha Novel U 0.056671033166980425 0.19296281233509174 1.0 2005 +9910 RABGAP1L RAB GTPase activating protein 1 like Novel N 0.056624365456508244 0.1925604575959736 1.0 2006 +89869 PLCZ1 phospholipase C zeta 1 Novel N 0.056582788665395685 0.1922019952079069 1.0 2007 +3665 IRF7 interferon regulatory factor 7 Novel U 0.0564648367816934 0.19118505010999357 1.0 2008 +8916 HERC3 HECT and RLD domain containing E3 ubiquitin protein ligase 3 Novel U 0.05643474222034176 0.19092558399822165 1.0 2009 +2693 GHSR growth hormone secretagogue receptor Novel U 0.056386975540699706 0.19051375428274042 1.0 2010 +9853 RUSC2 RUN and SH3 domain containing 2 Novel U 0.05634515382596615 0.1901531802380565 1.0 2011 +54509 RHOF ras homolog family member F, filopodia associated Novel U 0.05626807294472679 0.18948861243414536 1.0 2012 +9743 ARHGAP32 Rho GTPase activating protein 32 Novel U 0.0562415884005698 0.18926027078748797 1.0 2013 +6857 SYT1 synaptotagmin 1 Novel U 0.05621449844677369 0.18902670948392122 1.0 2014 +347168 OR1J1 olfactory receptor family 1 subfamily J member 1 Novel U 0.05619219747927776 0.18883443735683125 1.0 2015 +151636 DTX3L deltex E3 ubiquitin ligase 3L Novel U 0.05618251860427108 0.188750989054164 1.0 2016 +1846 DUSP4 dual specificity phosphatase 4 Novel U 0.05616931273164693 0.18863713205580782 1.0 2017 +55684 RABL6 RAB, member RAS oncogene family like 6 Novel U 0.05613731173492312 0.1883612292408196 1.0 2018 +150084 IGSF5 immunoglobulin superfamily member 5 Novel U 0.05611006354436955 0.18812630366828362 1.0 2019 +26280 IL1RAPL2 interleukin 1 receptor accessory protein like 2 Novel N 0.05606524145040514 0.18773986127071773 1.0 2020 +11069 RAPGEF4 Rap guanine nucleotide exchange factor 4 Novel U 0.05603967317503177 0.18751941941352218 1.0 2021 +23621 BACE1 beta-secretase 1 Novel N 0.05600897486031224 0.1872547479247054 1.0 2022 +3456 IFNB1 interferon beta 1 Novel U 0.055995437776473554 0.187138035324468 1.0 2023 +5174 PDZK1 PDZ domain containing 1 Novel U 0.0559766672665444 0.18697620172369253 1.0 2024 +10597 TRAPPC2B trafficking protein particle complex subunit 2B Novel N 0.055974253703797536 0.18695539272321804 1.0 2025 +112577516 SPADH spermadhesin family member Novel U 0.05597185623680567 0.18693472249542464 1.0 2026 +122748 OR11H6 olfactory receptor family 11 subfamily H member 6 Novel U 0.05596883625928692 0.18690868517209325 1.0 2027 +85358 SHANK3 SH3 and multiple ankyrin repeat domains 3 Novel U 0.055916936085029414 0.18646121772913796 1.0 2028 +133482 SLCO6A1 solute carrier organic anion transporter family member 6A1 Novel U 0.055873388783844166 0.18608576620536685 1.0 2029 +2701 GJA4 gap junction protein alpha 4 Novel U 0.05585452456327168 0.18592312466006042 1.0 2030 +23037 PDZD2 PDZ domain containing 2 Novel U 0.05583853019147659 0.18578522607395323 1.0 2031 +163351 GBP6 guanylate binding protein family member 6 Novel U 0.05576971526156608 0.1851919247765159 1.0 2032 +1271 CNTFR ciliary neurotrophic factor receptor Novel U 0.05570647546738457 0.1846466905957014 1.0 2033 +192683 SCAMP5 secretory carrier membrane protein 5 Novel U 0.05570437718829562 0.18462859987458208 1.0 2034 +653643 GOLGA6D golgin A6 family member D Novel U 0.05569234170980235 0.18452483365677697 1.0 2035 +10959 TMED2 transmembrane p24 trafficking protein 2 Novel U 0.05566830192091957 0.18431756994303317 1.0 2036 +8491 MAP4K3 mitogen-activated protein kinase kinase kinase kinase 3 Novel N 0.05553924263595844 0.18320486022563096 1.0 2037 +9690 UBE3C ubiquitin protein ligase E3C Novel U 0.05547234718556409 0.18262810809403338 1.0 2038 +6710 SPTB spectrin beta, erythrocytic Novel U 0.05546003837613489 0.1825219853004223 1.0 2039 +401409 RAB19 RAB19, member RAS oncogene family Novel U 0.05543774831389445 0.18232980719511271 1.0 2040 +5753 PTK6 protein tyrosine kinase 6 Novel U 0.05541212045416729 0.18210885161982637 1.0 2041 +400 ARL1 ADP ribosylation factor like GTPase 1 Novel U 0.05540802742217272 0.18207356274870512 1.0 2042 +55610 VPS50 VPS50 subunit of EARP/GARPII complex Novel U 0.05538887259022689 0.1819084156409418 1.0 2043 +83660 TLN2 talin 2 Novel U 0.05537655820765764 0.18180224479742027 1.0 2044 +2784 GNB3 G protein subunit beta 3 Novel U 0.055375389550059204 0.18179216898872128 1.0 2045 +54707 GPN2 GPN-loop GTPase 2 Novel U 0.05532665577161396 0.181372001242882 1.0 2046 +100133941 CD24 CD24 molecule Novel U 0.055268824651295116 0.1808733989953458 1.0 2047 +3802 KIR2DL1 killer cell immunoglobulin like receptor, two Ig domains and long cytoplasmic tail 1 Novel U 0.05525880258295275 0.18078699178461022 1.0 2048 +4077 NBR1 NBR1 autophagy cargo receptor Novel U 0.055165124021955156 0.17997932385769064 1.0 2049 +26737 OR1L1 olfactory receptor family 1 subfamily L member 1 Novel U 0.055062628973392425 0.17909564286909915 1.0 2050 +158506 CBLL2 Cbl proto-oncogene like 2 Novel U 0.055056348886394366 0.17904149787805124 1.0 2051 +6405 SEMA3F semaphorin 3F Novel N 0.055023394476061124 0.17875737502226366 1.0 2052 +127066 OR14C36 olfactory receptor family 14 subfamily C member 36 Novel U 0.0549567911537269 0.1781831415295329 1.0 2053 +3452 IFNA21 interferon alpha 21 Novel U 0.054930670873451104 0.17795794045474855 1.0 2054 +6865 TACR2 tachykinin receptor 2 Novel U 0.054822394549869854 0.17702441507957137 1.0 2055 +971 CD72 CD72 molecule Novel N 0.05480046514506124 0.17683534645243043 1.0 2056 +6755 SSTR5 somatostatin receptor 5 Novel U 0.054755071764550724 0.176443978596836 1.0 2057 +4671 NAIP NLR family apoptosis inhibitory protein Novel U 0.05462711221697007 0.17534075047907396 1.0 2058 +80208 SPG11 SPG11 vesicle trafficking associated, spatacsin Novel U 0.054602335983726304 0.17512713736709007 1.0 2059 +10260 DENND4A DENN domain containing 4A Novel U 0.05459220079300738 0.1750397548497914 1.0 2060 +50650 ARHGEF3 Rho guanine nucleotide exchange factor 3 Novel U 0.05454247464735577 0.17461103121714325 1.0 2061 +9651 PLCH2 phospholipase C eta 2 Novel N 0.05437167598318332 0.17313845732677005 1.0 2062 +10075 HUWE1 HECT, UBA and WWE domain containing E3 ubiquitin protein ligase 1 Novel U 0.05425978715944183 0.17217378607910774 1.0 2063 +5996 RGS1 regulator of G protein signaling 1 Novel U 0.05420509095061021 0.17170221208045797 1.0 2064 +55841 WWC3 WWC family member 3 Novel N 0.05419208079218238 0.17159004247009668 1.0 2065 +4430 MYO1B myosin IB Novel U 0.05409391851859256 0.17074371734332586 1.0 2066 +51330 TNFRSF12A TNF receptor superfamily member 12A Novel U 0.05409265937174739 0.17073286136399293 1.0 2067 +658 BMPR1B bone morphogenetic protein receptor type 1B Novel U 0.05406723172891561 0.1705136319975969 1.0 2068 +25801 GCA grancalcin Novel U 0.0539982095199831 0.1699185436037715 1.0 2069 +283514 SIAH3 siah E3 ubiquitin protein ligase family member 3 Novel U 0.05399024587643507 0.16984988350260571 1.0 2070 +7942 TFEB transcription factor EB Novel U 0.05393454386267336 0.16936963776119937 1.0 2071 +94 ACVRL1 activin A receptor like type 1 Novel U 0.05390403455354848 0.16910659582086396 1.0 2072 +4363 ABCC1 ATP binding cassette subfamily C member 1 (ABCC1 blood group) Novel U 0.053829120796504794 0.16846071229954487 1.0 2073 +259266 ASPM assembly factor for spindle microtubules Novel U 0.0538032292580299 0.16823748336666966 1.0 2074 +146 ADRA1D adrenoceptor alpha 1D Novel N 0.053786653280730304 0.16809457035562786 1.0 2075 +5118 PCOLCE procollagen C-endopeptidase enhancer Novel N 0.05376841860871132 0.16793735658557427 1.0 2076 +8326 FZD9 frizzled class receptor 9 Novel N 0.05355382945684304 0.16608723449164783 1.0 2077 +23495 TNFRSF13B TNF receptor superfamily member 13B Novel U 0.053533922505360605 0.16591560283907025 1.0 2078 +1909 EDNRA endothelin receptor type A Novel U 0.053513361583118015 0.16573833285043693 1.0 2079 +6885 MAP3K7 mitogen-activated protein kinase kinase kinase 7 Novel U 0.05351143818144016 0.16572174986891758 1.0 2080 +4070 TACSTD2 tumor associated calcium signal transducer 2 Novel U 0.05347238564140398 0.16538505080227867 1.0 2081 +23007 PLCH1 phospholipase C eta 1 Novel U 0.053439790724187294 0.16510402738628926 1.0 2082 +8808 IL1RL2 interleukin 1 receptor like 2 Novel U 0.05341645354737579 0.164902821379122 1.0 2083 +10045 SH2D3A SH2 domain containing 3A Novel N 0.053387733364178305 0.16465520473581702 1.0 2084 +390445 OR5AU1 olfactory receptor family 5 subfamily AU member 1 Novel U 0.05335715603767637 0.16439157637044113 1.0 2085 +388646 GBP7 guanylate binding protein 7 Novel U 0.053274970138299786 0.1636829946601263 1.0 2086 +8925 HERC1 HECT and RLD domain containing E3 ubiquitin protein ligase family member 1 Novel U 0.05318775854738999 0.16293108297314723 1.0 2087 +6892 TAPBP TAP binding protein Novel U 0.0531803444005073 0.16286716046431648 1.0 2088 +5972 REN renin Novel U 0.05314301302101212 0.16254530071791523 1.0 2089 +9451 EIF2AK3 eukaryotic translation initiation factor 2 alpha kinase 3 Novel U 0.05312897989096572 0.16242431135885516 1.0 2090 +1123 CHN1 chimerin 1 Novel U 0.05307825883594116 0.1619870099216148 1.0 2091 +4214 MAP3K1 mitogen-activated protein kinase kinase kinase 1 Novel U 0.053070460369522454 0.16191977392718368 1.0 2092 +9645 MICAL2 microtubule associated monooxygenase, calponin and LIM domain containing 2 Novel U 0.05306927433814473 0.1619095483270687 1.0 2093 +90 ACVR1 activin A receptor type 1 Novel U 0.05302380062995561 0.16151748791077566 1.0 2094 +81448 OR6K2 olfactory receptor family 6 subfamily K member 2 Novel U 0.052911206878924054 0.16054673899542787 1.0 2095 +56892 TCIM transcriptional and immune response regulator Novel U 0.05290555157937677 0.16049798073085994 1.0 2096 +10899 JTB jumping translocation breakpoint Novel U 0.0528581342267666 0.16008916280630137 1.0 2097 +81671 VMP1 vacuole membrane protein 1 Novel U 0.05282292618008152 0.15978560978654738 1.0 2098 +23049 SMG1 SMG1 nonsense mediated mRNA decay associated PI3K related kinase Novel U 0.05282223641202406 0.15977966281713316 1.0 2099 +51266 CLEC1B C-type lectin domain family 1 member B Novel N 0.05281958974271008 0.15975684404306895 1.0 2100 +23258 DENND5A DENN domain containing 5A Novel U 0.052757057763480025 0.15921771242647406 1.0 2101 +6362 CCL18 C-C motif chemokine ligand 18 Novel U 0.052687437275115594 0.158617465850207 1.0 2102 +9695 EDEM1 ER degradation enhancing alpha-mannosidase like protein 1 Novel U 0.05266495598695216 0.1584236390534236 1.0 2103 +54443 ANLN anillin, actin binding protein Novel U 0.05263542543518707 0.15816903565995868 1.0 2104 +51135 IRAK4 interleukin 1 receptor associated kinase 4 Novel U 0.052626370796504056 0.15809096933212188 1.0 2105 +7869 SEMA3B semaphorin 3B Novel U 0.05262019017196364 0.15803768187599035 1.0 2106 +1456 CSNK1G3 casein kinase 1 gamma 3 Novel N 0.0525457525335677 0.15739590330416126 1.0 2107 +952 CD38 CD38 molecule Novel U 0.05253938050260024 0.15734096560030517 1.0 2108 +7976 FZD3 frizzled class receptor 3 Novel N 0.05250181506274774 0.15701708785702648 1.0 2109 +353116 RILPL1 Rab interacting lysosomal protein like 1 Novel N 0.052496128226799436 0.15696805769524577 1.0 2110 +553158 PRR5-ARHGAP8 PRR5-ARHGAP8 readthrough Novel U 0.052460780793803126 0.1566633029293096 1.0 2111 +255231 MCOLN2 mucolipin TRP cation channel 2 Novel N 0.052438231082563985 0.15646888620967597 1.0 2112 +3431 SP110 SP110 nuclear body protein Novel U 0.05242991620930899 0.15639719791330434 1.0 2113 +259197 NCR3 natural cytotoxicity triggering receptor 3 Novel U 0.052329980032734494 0.15553557873706333 1.0 2114 +56894 AGPAT3 1-acylglycerol-3-phosphate O-acyltransferase 3 Novel U 0.052313325944112685 0.1553919922740704 1.0 2115 +7109 TRAPPC10 trafficking protein particle complex subunit 10 Novel N 0.05229384982103467 0.15522407509234454 1.0 2116 +10371 SEMA3A semaphorin 3A Novel U 0.05224690276205978 0.1548193118957985 1.0 2117 +1269 CNR2 cannabinoid receptor 2 Novel N 0.05223633625020113 0.1547282106594349 1.0 2118 +55898 UNC45A unc-45 myosin chaperone A Novel N 0.052229719329200404 0.15467116158854463 1.0 2119 +51284 TLR7 toll like receptor 7 Novel U 0.05207940959470767 0.15337523698892688 1.0 2120 +57705 WDFY4 WDFY family member 4 Novel U 0.05197209594087583 0.15245001145815945 1.0 2121 +51107 APH1A aph-1 homolog A, gamma-secretase subunit Novel N 0.05187967407817052 0.151653178399898 1.0 2122 +311 ANXA11 annexin A11 Novel U 0.05183843243098923 0.15129760552039448 1.0 2123 +51339 DACT1 dishevelled binding antagonist of beta catenin 1 Novel U 0.051827566552281386 0.15120392323453669 1.0 2124 +829 CAPZA1 capping actin protein of muscle Z-line subunit alpha 1 Novel U 0.0518073687673214 0.15102978410458767 1.0 2125 +1880 GPR183 G protein-coupled receptor 183 Novel U 0.05171896934558389 0.15026763130318568 1.0 2126 +57605 PITPNM2 phosphatidylinositol transfer protein membrane associated 2 Novel U 0.0517138887851061 0.15022382826324793 1.0 2127 +10298 PAK4 p21 (RAC1) activated kinase 4 Novel U 0.051696395986949785 0.15007301070293874 1.0 2128 +10456 HAX1 HCLS1 associated protein X-1 Novel U 0.05153788342350345 0.1487063638186778 1.0 2129 +128372 OR6N1 olfactory receptor family 6 subfamily N member 1 Novel U 0.05152828066081773 0.14862357173318375 1.0 2130 +81858 SHARPIN SHANK associated RH domain interactor Novel U 0.05147851204184997 0.14819448190858267 1.0 2131 +55486 PARL presenilin associated rhomboid like Novel U 0.05144738923217979 0.14792615055401723 1.0 2132 +84282 RNF135 ring finger protein 135 Novel U 0.05143980115050509 0.14786072843256018 1.0 2133 +5617 PRL prolactin Novel U 0.05133367977435607 0.1469457823556416 1.0 2134 +22926 ATF6 activating transcription factor 6 Novel U 0.051313404903606266 0.14677097861556837 1.0 2135 +7105 TSPAN6 tetraspanin 6 Novel U 0.05122919535973519 0.146044949660801 1.0 2136 +51619 UBE2D4 ubiquitin conjugating enzyme E2 D4 (putative) Novel U 0.05120874104690629 0.14586859882595518 1.0 2137 +128506 OCSTAMP osteoclast stimulatory transmembrane protein Novel U 0.05119199503811185 0.1457242198553225 1.0 2138 +4628 MYH10 myosin heavy chain 10 Novel U 0.051078407860157576 0.14474490591661535 1.0 2139 +3812 KIR3DL2 killer cell immunoglobulin like receptor, three Ig domains and long cytoplasmic tail 2 Novel U 0.05099430202441618 0.1440197711016513 1.0 2140 +7423 VEGFB vascular endothelial growth factor B Novel U 0.05098987592619777 0.14398161063532536 1.0 2141 +165829 GPR156 G protein-coupled receptor 156 Novel N 0.050950897511018375 0.14364555065055085 1.0 2142 +342898 SYCN syncollin Novel U 0.05088116732352248 0.14304435828189382 1.0 2143 +9411 ARHGAP29 Rho GTPase activating protein 29 Novel U 0.05079993989463527 0.14234404021125202 1.0 2144 +3383 ICAM1 intercellular adhesion molecule 1 Novel U 0.050758736044299174 0.1419887932045979 1.0 2145 +7066 THPO thrombopoietin Novel U 0.050748382854166746 0.14189953116297158 1.0 2146 +56850 GRIPAP1 GRIP1 associated protein 1 Novel U 0.05074079399331413 0.14183410232368068 1.0 2147 +961 CD47 CD47 molecule Novel U 0.05067966718472666 0.14130708565897854 1.0 2148 +23191 CYFIP1 cytoplasmic FMR1 interacting protein 1 Novel U 0.050632563356227234 0.14090097084349704 1.0 2149 +9986 RCE1 Ras converting CAAX endopeptidase 1 Novel N 0.05061049339049508 0.14071069034302552 1.0 2150 +2867 FFAR2 free fatty acid receptor 2 Novel U 0.0505978662722654 0.14060182318820455 1.0 2151 +10099 TSPAN3 tetraspanin 3 Novel U 0.050585869896475656 0.14049839410196036 1.0 2152 +6764 DENND2B DENN domain containing 2B Novel U 0.050576455703588465 0.1404172278076466 1.0 2153 +2788 GNG7 G protein subunit gamma 7 Novel U 0.05053066508546072 0.14002243509070303 1.0 2154 +10979 FERMT2 FERM domain containing kindlin 2 Novel U 0.05052669452804836 0.1399882021580042 1.0 2155 +51517 NCKIPSD NCK interacting protein with SH3 domain Novel U 0.050452053538615795 0.13934467035567674 1.0 2156 +1729 DIAPH1 diaphanous related formin 1 Novel U 0.05041746896171054 0.13904649270184646 1.0 2157 +28966 SNX24 sorting nexin 24 Novel U 0.05031904443938766 0.1381979065466363 1.0 2158 +9600 PITPNM1 phosphatidylinositol transfer protein membrane associated 1 Novel U 0.050310515139640265 0.13812436953057103 1.0 2159 +64787 EPS8L2 EPS8 signaling adaptor L2 Novel U 0.05029979562192361 0.13803194912445474 1.0 2160 +57448 BIRC6 baculoviral IAP repeat containing 6 Novel U 0.05027085554010541 0.13778243658243788 1.0 2161 +4192 MDK midkine Novel U 0.05022792642309827 0.13741231485374764 1.0 2162 +3451 IFNA17 interferon alpha 17 Novel N 0.050225985574000334 0.13739558144590383 1.0 2163 +54662 TBC1D13 TBC1 domain family member 13 Novel U 0.05018335523832382 0.13702803571854555 1.0 2164 +255520 ELMOD2 ELMO domain containing 2 Novel N 0.05010162152229404 0.13632335259487013 1.0 2165 +22895 RPH3A rabphilin 3A Novel U 0.050048467187226206 0.13586507216065075 1.0 2166 +2908 NR3C1 nuclear receptor subfamily 3 group C member 1 Novel U 0.050033406810039295 0.13573522619064815 1.0 2167 +4090 SMAD5 SMAD family member 5 Novel U 0.0500067233485212 0.13550516953928787 1.0 2168 +5698 PSMB9 proteasome 20S subunit beta 9 Novel U 0.049981024855056705 0.13528360498150224 1.0 2169 +51293 CD320 CD320 molecule Novel U 0.04997340263612997 0.13521788853908973 1.0 2170 +9929 JOSD1 Josephin domain containing 1 Novel U 0.04996293958158986 0.13512767928011238 1.0 2171 +7223 TRPC4 transient receptor potential cation channel subfamily C member 4 Novel N 0.049954141413884975 0.13505182416667746 1.0 2172 +140680 C20orf96 chromosome 20 open reading frame 96 Novel U 0.049890963550871976 0.13450712393747316 1.0 2173 +3339 HSPG2 heparan sulfate proteoglycan 2 Novel U 0.049845325458948764 0.13411364625485664 1.0 2174 +91 ACVR1B activin A receptor type 1B Novel U 0.04983679712091031 0.13404011753035197 1.0 2175 +10616 RBCK1 RANBP2-type and C3HC4-type zinc finger containing 1 Novel U 0.04982037275532655 0.13389851166919506 1.0 2176 +55745 AP5M1 adaptor related protein complex 5 subunit mu 1 Novel U 0.04980181320070083 0.13373849686058276 1.0 2177 +11345 GABARAPL2 GABA type A receptor associated protein like 2 Novel U 0.04975823414580859 0.13336277156605317 1.0 2178 +2346 FOLH1 folate hydrolase 1 Novel N 0.04972887136112288 0.13310961460908088 1.0 2179 +65264 UBE2Z ubiquitin conjugating enzyme E2 Z Novel N 0.04971066715209178 0.13295266348159995 1.0 2180 +666 BOK BCL2 family apoptosis regulator BOK Novel N 0.049695277252389744 0.13281997646916643 1.0 2181 +53407 STX18 syntaxin 18 Novel U 0.04969259284799959 0.1327968323548064 1.0 2182 +1040 CDS1 CDP-diacylglycerol synthase 1 Novel U 0.049603050267793755 0.13202482359041334 1.0 2183 +6753 SSTR3 somatostatin receptor 3 Novel N 0.04960245652836124 0.13201970455045922 1.0 2184 +4544 MTNR1B melatonin receptor 1B Novel U 0.04958809704060366 0.1318959014349407 1.0 2185 +80774 LIMD2 LIM domain containing 2 Novel U 0.04954239129645854 0.1315018404755399 1.0 2186 +472 ATM ATM serine/threonine kinase Novel U 0.049506393941080716 0.13119148227743155 1.0 2187 +331 XIAP X-linked inhibitor of apoptosis Novel U 0.049491112398557496 0.13105972948748232 1.0 2188 +6525 SMTN smoothelin Novel N 0.049400869514214484 0.1302816829148152 1.0 2189 +7844 RNF103 ring finger protein 103 Novel U 0.04939328895947896 0.13021632568832775 1.0 2190 +26291 FGF21 fibroblast growth factor 21 Novel U 0.049365948953787375 0.12998060851372834 1.0 2191 +64746 ACBD3 acyl-CoA binding domain containing 3 Novel U 0.04935130718024295 0.12985437161641566 1.0 2192 +84286 TMEM175 transmembrane protein 175 Novel U 0.04926981020314788 0.12915172958349333 1.0 2193 +80267 EDEM3 ER degradation enhancing alpha-mannosidase like protein 3 Novel U 0.04926277977591021 0.12909111538818613 1.0 2194 +51806 CALML5 calmodulin like 5 Novel N 0.04924642320561426 0.12895009403728402 1.0 2195 +3399 ID3 inhibitor of DNA binding 3 Novel U 0.049176090758246395 0.1283437091680476 1.0 2196 +4629 MYH11 myosin heavy chain 11 Novel U 0.049023247792733586 0.12702594382467156 1.0 2197 +85440 DOCK7 dedicator of cytokinesis 7 Novel U 0.04901507565596515 0.12695548615867008 1.0 2198 +113402 SFT2D1 SFT2 domain containing 1 Novel U 0.04900297577475319 0.1268511646803044 1.0 2199 +219438 OR5D18 olfactory receptor family 5 subfamily D member 18 Novel U 0.04897600083042442 0.12661859495322092 1.0 2200 +10225 CD96 CD96 molecule Novel U 0.04887308042469229 0.12573124666509414 1.0 2201 +51308 REEP2 receptor accessory protein 2 Novel U 0.04878860623005024 0.12500293597225062 1.0 2202 +91949 COG7 component of oligomeric golgi complex 7 Novel U 0.04869181173421143 0.1241684034072877 1.0 2203 +29911 HOOK2 hook microtubule tethering protein 2 Novel U 0.04862729502716728 0.12361216007396664 1.0 2204 +841 CASP8 caspase 8 Novel U 0.048533498083461024 0.12280347148750798 1.0 2205 +6747 SSR3 signal sequence receptor subunit 3 Novel U 0.048508119621871786 0.12258466614675648 1.0 2206 +23207 PLEKHM2 pleckstrin homology and RUN domain containing M2 Novel U 0.0484904227340288 0.12243208898753391 1.0 2207 +54664 TMEM106B transmembrane protein 106B Novel U 0.04846420458975519 0.12220604415926539 1.0 2208 +128360 OR10T2 olfactory receptor family 10 subfamily T member 2 Novel U 0.04845820997700047 0.12215436043990917 1.0 2209 +80031 SEMA6D semaphorin 6D Novel U 0.04839630416722129 0.12162062746497686 1.0 2210 +51086 TNNI3K TNNI3 interacting kinase Novel N 0.04839194212276869 0.12158301925064643 1.0 2211 +152006 RNF38 ring finger protein 38 Novel N 0.048333475581976565 0.1210789386019594 1.0 2212 +60673 ATG101 autophagy related 101 Novel U 0.04829915097844102 0.12078300235908093 1.0 2213 +144402 CPNE8 copine 8 Novel U 0.048278216536665905 0.12060251199917713 1.0 2214 +126014 OSCAR osteoclast associated Ig-like receptor Novel N 0.04820961336322391 0.12001103640130341 1.0 2215 +8792 TNFRSF11A TNF receptor superfamily member 11a Novel U 0.04810436619870569 0.11910362750992673 1.0 2216 +8398 PLA2G6 phospholipase A2 group VI Novel U 0.0480796900722189 0.11889087748781114 1.0 2217 +118813 ZFYVE27 zinc finger FYVE-type containing 27 Novel U 0.04803181126932844 0.11847808107994448 1.0 2218 +5688 PSMA7 proteasome 20S subunit alpha 7 Novel U 0.048026748302121273 0.11843442972380995 1.0 2219 +10892 MALT1 MALT1 paracaspase Novel U 0.048018937903816915 0.11836709085630687 1.0 2220 +3678 ITGA5 integrin subunit alpha 5 Novel U 0.047981773126171225 0.11804666750014224 1.0 2221 +6383 SDC2 syndecan 2 Novel U 0.047953227864700236 0.1178005589785111 1.0 2222 +5327 PLAT plasminogen activator, tissue type Novel U 0.04791465070395584 0.11746795848686106 1.0 2223 +26659 OR7A5 olfactory receptor family 7 subfamily A member 5 Novel U 0.04788548258508733 0.11721647987907932 1.0 2224 +3798 KIF5A kinesin family member 5A Novel N 0.04787418364254012 0.11711906384913276 1.0 2225 +10512 SEMA3C semaphorin 3C Novel U 0.04783232522601006 0.11675817337277461 1.0 2226 +56957 OTUD7B OTU deubiquitinase 7B Novel U 0.04781758227572832 0.11663106416055008 1.0 2227 +92344 GORAB golgin, RAB6 interacting Novel U 0.047746174173457175 0.11601540532343282 1.0 2228 +10318 TNIP1 TNFAIP3 interacting protein 1 Novel U 0.04772729838128866 0.11585266401136145 1.0 2229 +84141 EVA1A eva-1 homolog A, regulator of programmed cell death Novel U 0.0477218875693717 0.11580601364443238 1.0 2230 +1902 LPAR1 lysophosphatidic acid receptor 1 Novel U 0.04772085489971828 0.11579711028224056 1.0 2231 +7106 TSPAN4 tetraspanin 4 Novel N 0.047645007902473335 0.11514318064908285 1.0 2232 +23200 ATP11B ATPase phospholipid transporting 11B (putative) Novel N 0.04758896819126135 0.1146600233834528 1.0 2233 +970 CD70 CD70 molecule Novel U 0.04757161831719752 0.11451043807099473 1.0 2234 +2779 GNAT1 G protein subunit alpha transducin 1 Novel U 0.04750151619323491 0.11390603897977687 1.0 2235 +307 ANXA4 annexin A4 Novel U 0.047439555715617365 0.11337183467544738 1.0 2236 +55080 TAPBPL TAP binding protein like Novel U 0.047429245079417356 0.11328293952082287 1.0 2237 +91584 PLXNA4 plexin A4 Novel U 0.04742507818892707 0.113247013864321 1.0 2238 +3691 ITGB4 integrin subunit beta 4 Novel U 0.04742106841043713 0.11321244277947631 1.0 2239 +10142 AKAP9 A-kinase anchoring protein 9 Novel U 0.04738314191049669 0.11288545208645104 1.0 2240 +23473 CAPN7 calpain 7 Novel U 0.0473642295106501 0.11272239515416575 1.0 2241 +2774 GNAL G protein subunit alpha L Novel N 0.047353279234649256 0.11262798522063758 1.0 2242 +7450 VWF von Willebrand factor Novel U 0.04734449048681527 0.11255221132245104 1.0 2243 +23096 IQSEC2 IQ motif and Sec7 domain ArfGEF 2 Known P 0.047324312469719465 0.11237824262498634 1.0 2244 +219453 OR8K5 olfactory receptor family 8 subfamily K member 5 Novel U 0.04731064580516556 0.11226041281941916 1.0 2245 +2213 FCGR2B Fc gamma receptor IIb Novel U 0.04728096117344316 0.11200448099564557 1.0 2246 +56893 UBQLN4 ubiquilin 4 Novel U 0.04727234134393686 0.11193016345966281 1.0 2247 +930 CD19 CD19 molecule Novel U 0.04718248776123023 0.111155473326743 1.0 2248 +728458 OPN1MW2 opsin 1, medium wave sensitive 2 Novel U 0.04718013971618699 0.11113522919988844 1.0 2249 +9723 SEMA3E semaphorin 3E Novel U 0.04716813382686203 0.11103171809085079 1.0 2250 +64285 RHBDF1 rhomboid 5 homolog 1 Novel U 0.04716677018538037 0.11101996119069318 1.0 2251 +8744 TNFSF9 TNF superfamily member 9 Novel U 0.04713688124787996 0.1107622679049327 1.0 2252 +26999 CYFIP2 cytoplasmic FMR1 interacting protein 2 Novel U 0.047078413015705256 0.11025817267366193 1.0 2253 +374654 KIF7 kinesin family member 7 Novel U 0.04706625119617422 0.11015331718203611 1.0 2254 +122786 FRMD6 FERM domain containing 6 Novel U 0.0470266347115039 0.10981175595709013 1.0 2255 +6004 RGS16 regulator of G protein signaling 16 Novel U 0.0470174376250825 0.10973246148838171 1.0 2256 +90952 ESAM endothelial cell adhesion molecule Novel U 0.04694866408869522 0.10913951707325271 1.0 2257 +149233 IL23R interleukin 23 receptor Novel U 0.046916683015923805 0.10886378603649378 1.0 2258 +57148 RALGAPB Ral GTPase activating protein non-catalytic subunit beta Novel U 0.0468988222728444 0.10870979616749316 1.0 2259 +151 ADRA2B adrenoceptor alpha 2B Novel U 0.04687580207902429 0.10851132309081499 1.0 2260 +55018 ANKRD40CL ANKRD40 C-terminal like Novel U 0.04685545109816966 0.10833586315267546 1.0 2261 +283229 CRACR2B calcium release activated channel regulator 2B Novel N 0.04684373180472575 0.10823482298574713 1.0 2262 +79872 CBLL1 Cbl proto-oncogene like 1 Novel N 0.04684285519564784 0.10822726513014884 1.0 2263 +10125 RASGRP1 RAS guanyl releasing protein 1 Novel U 0.046667125955150456 0.1067121813173721 1.0 2264 +27201 GPR78 G protein-coupled receptor 78 Novel N 0.04666702840465392 0.10671134026680015 1.0 2265 +8444 DYRK3 dual specificity tyrosine phosphorylation regulated kinase 3 Novel U 0.04662604360490938 0.10635798184740963 1.0 2266 +1260 CNGA2 cyclic nucleotide gated channel subunit alpha 2 Novel U 0.04661385527055714 0.10625289775309775 1.0 2267 +1777 DNASE2 deoxyribonuclease 2, lysosomal Novel U 0.04657637022707957 0.10592971316279647 1.0 2268 +146713 RBFOX3 RNA binding fox-1 homolog 3 Novel U 0.0465520855606929 0.10572033819004302 1.0 2269 +8091 HMGA2 high mobility group AT-hook 2 Novel U 0.046440492040605574 0.10475821296024894 1.0 2270 +80005 DOCK5 dedicator of cytokinesis 5 Novel U 0.046401294170984174 0.10442026090633563 1.0 2271 +284433 OR10H5 olfactory receptor family 10 subfamily H member 5 Novel U 0.04637408199881905 0.10418564587333842 1.0 2272 +8224 SYN3 synapsin III Novel N 0.046340217017790376 0.10389367235526416 1.0 2273 +26128 KIFBP kinesin family binding protein Novel U 0.04622657135309461 0.10291385416174406 1.0 2274 +6374 CXCL5 C-X-C motif chemokine ligand 5 Novel U 0.04611830262006646 0.1019803942299962 1.0 2275 +57020 VPS35L VPS35 endosomal protein sorting factor like Novel U 0.046083218661664614 0.10167791106150174 1.0 2276 +3352 HTR1D 5-hydroxytryptamine receptor 1D Novel N 0.04607468725736105 0.10160435590059627 1.0 2277 +55327 LIN7C lin-7 homolog C, crumbs cell polarity complex component Novel N 0.046021968248187335 0.10114982871321043 1.0 2278 +283365 OR6C6 olfactory receptor family 6 subfamily C member 6 Novel U 0.045995476564225965 0.10092142550934143 1.0 2279 +26658 OR7C2 olfactory receptor family 7 subfamily C member 2 Novel U 0.04593420813470682 0.10039318783224242 1.0 2280 +10154 PLXNC1 plexin C1 Novel N 0.04591781693001377 0.100251867874152 1.0 2281 +11153 FICD FIC domain protein adenylyltransferase Novel U 0.04591064950737164 0.1001900725463302 1.0 2282 +977 CD151 CD151 molecule (Raph blood group) Novel U 0.04589495480251063 0.10005475759695737 1.0 2283 +2246 FGF1 fibroblast growth factor 1 Novel U 0.045879811888654934 0.09992420002101782 1.0 2284 +3467 IFNW1 interferon omega 1 Novel N 0.04585052803874826 0.09967172361558976 1.0 2285 +5064 PALM paralemmin Novel U 0.04581136169335867 0.09933404335397003 1.0 2286 +201164 PLD6 phospholipase D family member 6 Novel U 0.045704168555685404 0.09840985687669489 1.0 2287 +839 CASP6 caspase 6 Novel U 0.04570086484794512 0.09838137331809482 1.0 2288 +84144 SYDE2 synapse defective Rho GTPase homolog 2 Novel U 0.0456982666418384 0.09835897237899442 1.0 2289 +338692 ANKRD13D ankyrin repeat domain 13D Novel U 0.04566882852068347 0.09810516589400559 1.0 2290 +10634 GAS2L1 growth arrest specific 2 like 1 Novel U 0.04556337658086428 0.09719599149255852 1.0 2291 +10955 SERINC3 serine incorporator 3 Novel N 0.04555617769604017 0.09713392490741775 1.0 2292 +5132 PDC phosducin Novel N 0.04551926247916864 0.09681565318798792 1.0 2293 +9709 HERPUD1 homocysteine inducible ER protein with ubiquitin like domain 1 Novel U 0.04545098853011661 0.09622701606220112 1.0 2294 +81050 OR5AC2 olfactory receptor family 5 subfamily AC member 2 Novel U 0.045435798085161065 0.09609604868764308 1.0 2295 +79097 TRIM48 tripartite motif containing 48 Novel U 0.045405156596946 0.09583186713958294 1.0 2296 +54567 DLL4 delta like canonical Notch ligand 4 Novel U 0.04536424121500991 0.09547910721932443 1.0 2297 +26471 NUPR1 nuclear protein 1, transcriptional regulator Novel U 0.045341149957162714 0.09528002145032025 1.0 2298 +54788 DNAJB12 DnaJ heat shock protein family (Hsp40) member B12 Novel U 0.045332739382930476 0.09520750804936685 1.0 2299 +7441 VPREB1 V-set pre-B cell surrogate light chain 1 Novel U 0.0452321345180256 0.094340123646677 1.0 2300 +51513 ETV7 ETS variant transcription factor 7 Novel N 0.045175463282459326 0.0938515215710435 1.0 2301 +51366 UBR5 ubiquitin protein ligase E3 component n-recognin 5 Novel U 0.04516851488496362 0.09379161461110512 1.0 2302 +8471 IRS4 insulin receptor substrate 4 Novel U 0.04515540955839106 0.09367862449008121 1.0 2303 +55031 USP47 ubiquitin specific peptidase 47 Novel U 0.04515165879677677 0.09364628656958876 1.0 2304 +9293 GPR52 G protein-coupled receptor 52 Novel N 0.04511906392650985 0.09336526355838591 1.0 2305 +9710 GARRE1 granule associated Rac and RHOG effector 1 Novel N 0.04509730458267642 0.09317766114500631 1.0 2306 +29851 ICOS inducible T cell costimulator Novel U 0.045085516849414406 0.0930760309108799 1.0 2307 +65258 MPPE1 metallophosphoesterase 1 Novel U 0.045024357533290836 0.09254873397613503 1.0 2308 +2359 FPR3 formyl peptide receptor 3 Novel N 0.045014458795081605 0.0924633900801205 1.0 2309 +10509 SEMA4B semaphorin 4B Novel U 0.04500414969167663 0.0923745081407864 1.0 2310 +1444 CSHL1 chorionic somatomammotropin hormone like 1 Novel U 0.044969382124268896 0.09207475279876141 1.0 2311 +64840 PORCN porcupine O-acyltransferase Novel U 0.044951322409071015 0.09191904745295656 1.0 2312 +7850 IL1R2 interleukin 1 receptor type 2 Novel N 0.0449139491631866 0.09159682674734071 1.0 2313 +83417 FCRL4 Fc receptor like 4 Novel U 0.04489333800680642 0.09141912365532354 1.0 2314 +3108 HLA-DMA major histocompatibility complex, class II, DM alpha Novel U 0.04489253700484356 0.09141221766116742 1.0 2315 +6591 SNAI2 snail family transcriptional repressor 2 Novel U 0.04484956699516398 0.09104174336835125 1.0 2316 +495 ATP4A ATPase H+/K+ transporting subunit alpha Novel N 0.04483537223435815 0.090919360478274 1.0 2317 +494115 RBMXL1 RBMX like 1 Novel U 0.04480334499167389 0.09064323137863496 1.0 2318 +8325 FZD8 frizzled class receptor 8 Novel N 0.044775466200759895 0.09040286896248823 1.0 2319 +553115 PEF1 penta-EF-hand domain containing 1 Novel U 0.04475560242231261 0.09023160953462701 1.0 2320 +54622 ARL15 ADP ribosylation factor like GTPase 15 Novel U 0.04470256784740459 0.08977436163590961 1.0 2321 +25998 IBTK inhibitor of Bruton tyrosine kinase Novel U 0.044680883373170735 0.08958740472533915 1.0 2322 +55930 MYO5C myosin VC Novel U 0.044595098463890884 0.08884779345141254 1.0 2323 +81029 WNT5B Wnt family member 5B Novel N 0.04448577157408367 0.08790521041526381 1.0 2324 +7531 YWHAE tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein epsilon Novel U 0.044445948916489945 0.08756187163037388 1.0 2325 +10278 EFS embryonal Fyn-associated substrate Novel N 0.04439279808140573 0.0871036213719437 1.0 2326 +665 BNIP3L BCL2 interacting protein 3 like Novel U 0.044323170253128825 0.08650331151319426 1.0 2327 +3673 ITGA2 integrin subunit alpha 2 Novel U 0.04431634162108317 0.08644443713436867 1.0 2328 +6655 SOS2 SOS Ras/Rho guanine nucleotide exchange factor 2 Novel U 0.04430236445689705 0.08632393029585406 1.0 2329 +7324 UBE2E1 ubiquitin conjugating enzyme E2 E1 Novel U 0.0442693358013296 0.08603916732034475 1.0 2330 +151888 BTLA B and T lymphocyte associated Novel U 0.04424024375143234 0.08578834455598819 1.0 2331 +1856 DVL2 dishevelled segment polarity protein 2 Novel U 0.0442117254783512 0.0855424687200073 1.0 2332 +55200 PLEKHG6 pleckstrin homology and RhoGEF domain containing G6 Novel U 0.04412443686903967 0.08478989300390352 1.0 2333 +1497 CTNS cystinosin, lysosomal cystine transporter Novel U 0.04410173475402508 0.08459416230548907 1.0 2334 +57514 ARHGAP31 Rho GTPase activating protein 31 Novel U 0.044076307650835755 0.08437493759172536 1.0 2335 +5866 RAB3IL1 RAB3A interacting protein like 1 Novel U 0.04399240351524185 0.08365154177379804 1.0 2336 +23499 MACF1 microtubule actin crosslinking factor 1 Novel U 0.043927426006898584 0.08309132555248619 1.0 2337 +79170 PRR15L proline rich 15 like Novel U 0.043918819696487504 0.08301712457401128 1.0 2338 +22871 NLGN1 neuroligin 1 Novel U 0.04387378506289484 0.08262884972471782 1.0 2339 +51588 PIAS4 protein inhibitor of activated STAT 4 Novel U 0.043873491849766764 0.08262632173072669 1.0 2340 +644139 PIRT phosphoinositide interacting regulator of transient receptor potential channels Novel U 0.04381151733402351 0.08209199639396705 1.0 2341 +50649 ARHGEF4 Rho guanine nucleotide exchange factor 4 Novel U 0.043795556455383584 0.08195438657560898 1.0 2342 +7532 YWHAG tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein gamma Novel U 0.04379097196647217 0.08191486051312856 1.0 2343 +2780 GNAT2 G protein subunit alpha transducin 2 Novel N 0.04377768161077232 0.08180027512750979 1.0 2344 +221391 OPN5 opsin 5 Novel U 0.04375440483087781 0.0815995898441049 1.0 2345 +55607 PPP1R9A protein phosphatase 1 regulatory subunit 9A Novel U 0.04373556964566327 0.08143719863278212 1.0 2346 +23558 WBP2 WW domain binding protein 2 Novel U 0.043725103985861304 0.08134696691203318 1.0 2347 +181 AGRP agouti related neuropeptide Novel U 0.04371727511011389 0.08127946873766234 1.0 2348 +5045 FURIN furin, paired basic amino acid cleaving enzyme Novel U 0.043702586998379256 0.08115283232663358 1.0 2349 +64005 MYO1G myosin IG Novel U 0.04370164116355031 0.08114467762776366 1.0 2350 +54520 CCDC93 coiled-coil domain containing 93 Novel U 0.043677658982282284 0.08093791058927068 1.0 2351 +1740 DLG2 discs large MAGUK scaffold protein 2 Novel U 0.04366685755844167 0.08084478401358224 1.0 2352 +2251 FGF6 fibroblast growth factor 6 Novel U 0.043657924185288244 0.08076776320008561 1.0 2353 +219875 OR4D5 olfactory receptor family 4 subfamily D member 5 Novel U 0.04362359227786836 0.08047176398534829 1.0 2354 +79089 TMUB2 transmembrane and ubiquitin like domain containing 2 Novel U 0.04360781472098554 0.08033573471116105 1.0 2355 +2011 MARK2 microtubule affinity regulating kinase 2 Novel U 0.04349281536367857 0.07934424539360434 1.0 2356 +9546 APBA3 amyloid beta precursor protein binding family A member 3 Novel N 0.043412138896041876 0.0786486775425034 1.0 2357 +2250 FGF5 fibroblast growth factor 5 Novel U 0.043380925803661256 0.07837956779799686 1.0 2358 +5783 PTPN13 protein tyrosine phosphatase non-receptor type 13 Novel U 0.043357249990905136 0.07817544217519441 1.0 2359 +8573 CASK calcium/calmodulin dependent serine protein kinase Novel U 0.04334407633986966 0.07806186298152963 1.0 2360 +9666 DZIP3 DAZ interacting zinc finger protein 3 Novel U 0.04331432776769415 0.07780537988270803 1.0 2361 +22836 RHOBTB3 Rho related BTB domain containing 3 Novel U 0.04327029245222214 0.0774257208488823 1.0 2362 +6490 PMEL premelanosome protein Novel U 0.04321804916557559 0.07697529519575591 1.0 2363 +6348 CCL3 C-C motif chemokine ligand 3 Novel U 0.043183151649917095 0.07667441947962206 1.0 2364 +7376 NR1H2 nuclear receptor subfamily 1 group H member 2 Novel U 0.04314441947909533 0.07634048253845242 1.0 2365 +54708 MARCHF5 membrane associated ring-CH-type finger 5 Novel U 0.04310102870225793 0.07596638051977826 1.0 2366 +8997 KALRN kalirin RhoGEF kinase Novel U 0.04310059927633825 0.07596267814072137 1.0 2367 +6014 RIT2 Ras like without CAAX 2 Novel U 0.04300155954761363 0.07510878786390827 1.0 2368 +90167 FRMD7 FERM domain containing 7 Novel N 0.04298531115043063 0.07496869914853085 1.0 2369 +203228 C9orf72 C9orf72-SMCR8 complex subunit Novel U 0.042968476457770875 0.07482355557271117 1.0 2370 +79654 HECTD3 HECT domain E3 ubiquitin protein ligase 3 Novel U 0.042964878124573204 0.07479253184344825 1.0 2371 +680 BRS3 bombesin receptor subtype 3 Novel N 0.04295698106108548 0.07472444577521707 1.0 2372 +4314 MMP3 matrix metallopeptidase 3 Novel U 0.042956091164350715 0.07471677335750178 1.0 2373 +93035 PKHD1L1 PKHD1 like 1 Novel U 0.04289448284825605 0.07418560528221016 1.0 2374 +80231 TASL TLR adaptor interacting with endolysosomal SLC15A4 Novel U 0.04289126325185392 0.07415784690586515 1.0 2375 +102723407 LOC102723407 immunoglobulin heavy variable 4-38-2-like Novel U 0.04282984741301374 0.07362833831064507 1.0 2376 +94235 GNG8 G protein subunit gamma 8 Novel U 0.04280302311990463 0.07339706745234194 1.0 2377 +205428 DIPK2A divergent protein kinase domain 2A Novel U 0.042777997441803634 0.07318130370302359 1.0 2378 +6288 SAA1 serum amyloid A1 Novel U 0.04274138882683974 0.07286567541155096 1.0 2379 +2802 GOLGA3 golgin A3 Novel U 0.042728130358029 0.07275136494494618 1.0 2380 +3113 HLA-DPA1 major histocompatibility complex, class II, DP alpha 1 Novel U 0.04262337136696313 0.07184816493590108 1.0 2381 +373509 USP50 ubiquitin specific peptidase 50 Novel U 0.04261844631174331 0.0718057026147788 1.0 2382 +4909 NTF4 neurotrophin 4 Novel U 0.042609853509588104 0.07173161810035822 1.0 2383 +51393 TRPV2 transient receptor potential cation channel subfamily V member 2 Novel U 0.04258772705439306 0.07154085056499951 1.0 2384 +445372 TRIM6-TRIM34 TRIM6-TRIM34 readthrough Novel U 0.04258321902173255 0.07150198368495114 1.0 2385 +25778 DSTYK dual serine/threonine and tyrosine protein kinase Novel U 0.042583174209557095 0.07150159732806792 1.0 2386 +23108 RAP1GAP2 RAP1 GTPase activating protein 2 Novel U 0.04256554345479214 0.07134959034803537 1.0 2387 +321 APBA2 amyloid beta precursor protein binding family A member 2 Novel N 0.04256133238997113 0.07131328383395268 1.0 2388 +840 CASP7 caspase 7 Novel U 0.042554420215527876 0.07125368917810357 1.0 2389 +728 C5AR1 complement C5a receptor 1 Novel U 0.04249796919258542 0.07076698570842077 1.0 2390 +394 ARHGAP5 Rho GTPase activating protein 5 Novel U 0.04249719536802756 0.07076031402954577 1.0 2391 +8178 ELL elongation factor for RNA polymerase II Novel N 0.042471218678767006 0.07053635095261673 1.0 2392 +54462 CCSER2 coiled-coil serine rich protein 2 Novel U 0.042440919312258615 0.07027511907336705 1.0 2393 +401665 OR51T1 olfactory receptor family 51 subfamily T member 1 Novel U 0.04243449762124983 0.07021975321580956 1.0 2394 +64399 HHIP hedgehog interacting protein Novel N 0.04242248878516683 0.07011621670072449 1.0 2395 +399687 MYO18A myosin XVIIIA Novel U 0.04241169962210298 0.07002319583370667 1.0 2396 +4139 MARK1 microtubule affinity regulating kinase 1 Novel N 0.0423492409168777 0.06948469596319014 1.0 2397 +26258 BLOC1S6 biogenesis of lysosomal organelles complex 1 subunit 6 Novel U 0.04233734198206375 0.06938210698326354 1.0 2398 +51764 GNG13 G protein subunit gamma 13 Novel U 0.04232087688533995 0.06924014995066367 1.0 2399 +2520 GAST gastrin Novel U 0.042318891309121726 0.06922303091925633 1.0 2400 +5267 SERPINA4 serpin family A member 4 Novel U 0.042309248526187955 0.06913989379141282 1.0 2401 +968 CD68 CD68 molecule Novel U 0.04228918931372114 0.06896694939115532 1.0 2402 +122706 PSMB11 proteasome subunit beta 11 Novel N 0.0422709556075388 0.06880974394825014 1.0 2403 +170482 CLEC4C C-type lectin domain family 4 member C Novel U 0.04225165863437344 0.06864337134232709 1.0 2404 +2040 STOM stomatin Novel U 0.04220141983141925 0.06821022773507235 1.0 2405 +285489 DOK7 docking protein 7 Novel U 0.0421699059034519 0.06793852427806538 1.0 2406 +2919 CXCL1 C-X-C motif chemokine ligand 1 Novel U 0.042093311832126466 0.06727815360047429 1.0 2407 +2357 FPR1 formyl peptide receptor 1 Novel N 0.04200625777371622 0.06652760011056806 1.0 2408 +23538 OR52A1 olfactory receptor family 52 subfamily A member 1 Novel N 0.04198540066128244 0.06634777646061515 1.0 2409 +819 CAMLG calcium modulating ligand Novel U 0.04181213541268051 0.0648539364330221 1.0 2410 +84636 GPR174 G protein-coupled receptor 174 Novel U 0.04175065992973604 0.06432391360456072 1.0 2411 +2787 GNG5 G protein subunit gamma 5 Novel U 0.04168920242897816 0.06379404581301715 1.0 2412 +23043 TNIK TRAF2 and NCK interacting kinase Novel U 0.041668705040930024 0.06361732359679384 1.0 2413 +10544 PROCR protein C receptor Novel N 0.041579473657313334 0.06284799787429789 1.0 2414 +2999 GZMH granzyme H Novel U 0.04148735478915309 0.06205377714241586 1.0 2415 +23678 SGK3 serum/glucocorticoid regulated kinase family member 3 Novel U 0.04146821352147218 0.0618887469815998 1.0 2416 +91369 ANKRD40 ankyrin repeat domain 40 Novel U 0.04145485885668196 0.0617736071426552 1.0 2417 +10113 PREB prolactin regulatory element binding Novel U 0.041439874550951834 0.06164441703750735 1.0 2418 +2535 FZD2 frizzled class receptor 2 Novel U 0.04143773572315921 0.06162597671785565 1.0 2419 +7291 TWIST1 twist family bHLH transcription factor 1 Novel U 0.04136869802605998 0.06103075478978968 1.0 2420 +102723532 LOC102723532 olfactory receptor 4N4-like Novel U 0.04128224370719223 0.060285372070952296 1.0 2421 +375189 PFN4 profilin family member 4 Novel U 0.041223008557084787 0.05977466470761782 1.0 2422 +3676 ITGA4 integrin subunit alpha 4 Novel U 0.041161137524532855 0.05924123157131169 1.0 2423 +219469 OR8H1 olfactory receptor family 8 subfamily H member 1 Novel U 0.041156529075724924 0.059201498933925074 1.0 2424 +23637 RABGAP1 RAB GTPase activating protein 1 Novel U 0.04113118702115572 0.058983007483375205 1.0 2425 +6252 RTN1 reticulon 1 Novel N 0.041128806740293594 0.05896248542914071 1.0 2426 +1816 DRD5 dopamine receptor D5 Novel U 0.04106598975495192 0.058420896576942695 1.0 2427 +4210 MEFV MEFV innate immunity regulator, pyrin Novel U 0.04103283520622853 0.05813504818911296 1.0 2428 +7004 TEAD4 TEA domain transcription factor 4 Novel N 0.040972665682347614 0.05761628494062663 1.0 2429 +267 AMFR autocrine motility factor receptor Novel U 0.0409415335999178 0.057347873639161134 1.0 2430 +9351 NHERF2 NHERF family PDZ scaffold protein 2 Novel N 0.04093629412255442 0.057302700466397224 1.0 2431 +7122 CLDN5 claudin 5 Novel U 0.04093626195430359 0.057302423121568406 1.0 2432 +29109 FHOD1 formin homology 2 domain containing 1 Novel U 0.040840182170980725 0.05647405258951837 1.0 2433 +57630 SH3RF1 SH3 domain containing ring finger 1 Novel U 0.040831659318009625 0.056400571155588296 1.0 2434 +51466 EVL Enah/Vasp-like Novel U 0.04083043417569578 0.05639000835293351 1.0 2435 +4142 MAS1 MAS1 proto-oncogene, G protein-coupled receptor Novel N 0.04080121876687932 0.05613812202567119 1.0 2436 +51289 RXFP3 relaxin family peptide receptor 3 Novel U 0.04077680051272238 0.055927595299983826 1.0 2437 +92610 TIFA TRAF interacting protein with forkhead associated domain Novel U 0.040755871460817335 0.055747151409892746 1.0 2438 +55240 STEAP3 STEAP3 metalloreductase Novel U 0.040732954024927825 0.05554956428069178 1.0 2439 +7067 THRA thyroid hormone receptor alpha Novel U 0.040722390611700125 0.055458489759777324 1.0 2440 +1440 CSF3 colony stimulating factor 3 Novel U 0.040702226081845344 0.05528463734518337 1.0 2441 +10097 ACTR2 actin related protein 2 Novel U 0.04068585945633076 0.05514352930125889 1.0 2442 +8477 GPR65 G protein-coupled receptor 65 Novel U 0.04067323025057532 0.05503464414842867 1.0 2443 +6517 SLC2A4 solute carrier family 2 member 4 Novel N 0.04066850220548183 0.0549938803884138 1.0 2444 +10578 GNLY granulysin Novel U 0.04055971480765859 0.05405594868729463 1.0 2445 +222484 LNX2 ligand of numb-protein X 2 Novel U 0.04052454253109969 0.053752704066638055 1.0 2446 +1536 CYBB cytochrome b-245 beta chain Novel U 0.040510459270361586 0.05363128249607291 1.0 2447 +9516 LITAF lipopolysaccharide induced TNF factor Novel N 0.04049838881558742 0.05352721472346187 1.0 2448 +921 CD5 CD5 molecule Novel U 0.04049391760601245 0.053488665320804735 1.0 2449 +51072 MEMO1 mediator of cell motility 1 Novel U 0.040440749609582084 0.053030267102492167 1.0 2450 +5795 PTPRJ protein tyrosine phosphatase receptor type J Novel U 0.04043940491106366 0.05301867352277508 1.0 2451 +9466 IL27RA interleukin 27 receptor subunit alpha Novel N 0.04036793342087469 0.05240246817440023 1.0 2452 +55122 AKIRIN2 akirin 2 Novel U 0.04035312239431256 0.052274772029288714 1.0 2453 +10783 NEK6 NIMA related kinase 6 Novel U 0.040343697806518655 0.052193516113265725 1.0 2454 +5819 NECTIN2 nectin cell adhesion molecule 2 Novel U 0.04032799727764976 0.05205815095107664 1.0 2455 +3093 UBE2K ubiquitin conjugating enzyme E2 K Novel U 0.04032551758479286 0.052036771797001204 1.0 2456 +10084 PQBP1 polyglutamine binding protein 1 Novel U 0.04029553367414999 0.05177825968182801 1.0 2457 +653641 GOLGA6C golgin A6 family member C Novel U 0.040292434981763 0.05175154370295613 1.0 2458 +960 CD44 CD44 molecule (IN blood group) Novel U 0.04027585560939977 0.05160860142071314 1.0 2459 +823 CAPN1 calpain 1 Novel U 0.040263164870742156 0.051499185750003396 1.0 2460 +397 ARHGDIB Rho GDP dissociation inhibitor beta Novel U 0.04020143210148653 0.050966944677587944 1.0 2461 +390201 OR10V1 olfactory receptor family 10 subfamily V member 1 Novel U 0.04016147864701554 0.05062247820199073 1.0 2462 +8665 EIF3F eukaryotic translation initiation factor 3 subunit F Novel U 0.040142129798009046 0.05045565833841751 1.0 2463 +933 CD22 CD22 molecule Novel U 0.04012937669081865 0.050345704945276494 1.0 2464 +54583 EGLN1 egl-9 family hypoxia inducible factor 1 Novel U 0.04011076289911308 0.05018522252113533 1.0 2465 +81622 UNC93B1 unc-93 homolog B1, TLR signaling regulator Novel U 0.04008181447163392 0.049935638025379966 1.0 2466 +23308 ICOSLG inducible T cell costimulator ligand Novel U 0.040063588800975956 0.04977850186231045 1.0 2467 +57189 DENND11 DENN domain containing 11 Novel U 0.040050658767563675 0.04966702306534893 1.0 2468 +341359 SYT10 synaptotagmin 10 Novel U 0.040018262927243795 0.04938771602953049 1.0 2469 +997 CDC34 cell division cycle 34, ubiqiutin conjugating enzyme Novel U 0.03999327553205573 0.049172282343789044 1.0 2470 +25825 BACE2 beta-secretase 2 Novel U 0.03998208317944991 0.049075785299745774 1.0 2471 +3973 LHCGR luteinizing hormone/choriogonadotropin receptor Novel N 0.03997287257378709 0.048996374272269 1.0 2472 +5585 PKN1 protein kinase N1 Novel N 0.03988043796078832 0.0481994312848736 1.0 2473 +3394 IRF8 interferon regulatory factor 8 Novel U 0.03987194183721859 0.048126180303674215 1.0 2474 +8754 ADAM9 ADAM metallopeptidase domain 9 Novel U 0.039852881042254464 0.04796184395403165 1.0 2475 +23102 TBC1D2B TBC1 domain family member 2B Novel U 0.03980463373330569 0.04754587039953713 1.0 2476 +1364 CLDN4 claudin 4 Novel U 0.039791215530461985 0.047430182754911135 1.0 2477 +391196 OR2M7 olfactory receptor family 2 subfamily M member 7 Novel U 0.039785069446079936 0.047377193093470354 1.0 2478 +4923 NTSR1 neurotensin receptor 1 Novel N 0.03976343249101447 0.047190645878649 1.0 2479 +2827 GPR3 G protein-coupled receptor 3 Novel U 0.03970617060111948 0.04669695136188358 1.0 2480 +7225 TRPC6 transient receptor potential cation channel subfamily C member 6 Novel N 0.039683903687789915 0.04650497283940981 1.0 2481 +7965 AIMP2 aminoacyl tRNA synthetase complex interacting multifunctional protein 2 Novel N 0.0396455441866725 0.04617424894255186 1.0 2482 +390275 OR8A1 olfactory receptor family 8 subfamily A member 1 Novel U 0.03962813257328911 0.04602413133254659 1.0 2483 +57863 CADM3 cell adhesion molecule 3 Novel N 0.03962775642500727 0.04602088829700283 1.0 2484 +1840 DTX1 deltex E3 ubiquitin ligase 1 Novel U 0.03962604724545244 0.04600615227316681 1.0 2485 +100506013 APELA apelin receptor early endogenous ligand Novel U 0.03959570095780007 0.04574451585415177 1.0 2486 +9636 ISG15 ISG15 ubiquitin like modifier Novel U 0.03959105979697732 0.04570450118376942 1.0 2487 +55611 OTUB1 OTU deubiquitinase, ubiquitin aldehyde binding 1 Novel N 0.039583965884844925 0.04564333964109938 1.0 2488 +953 ENTPD1 ectonucleoside triphosphate diphosphohydrolase 1 Novel U 0.039573646644475935 0.04555437030395914 1.0 2489 +5876 RABGGTB Rab geranylgeranyltransferase subunit beta Novel N 0.039548827285791475 0.04534038537760374 1.0 2490 +2277 VEGFD vascular endothelial growth factor D Novel U 0.039530086054889675 0.04517880421165514 1.0 2491 +10197 PSME3 proteasome activator subunit 3 Novel U 0.03952870111018234 0.045166863641595584 1.0 2492 +6194 RPS6 ribosomal protein S6 Novel N 0.0395156995825204 0.04505476844306049 1.0 2493 +23358 USP24 ubiquitin specific peptidase 24 Novel U 0.039440900865688494 0.04440987676329374 1.0 2494 +1803 DPP4 dipeptidyl peptidase 4 Novel U 0.03943626564473895 0.044369913304683074 1.0 2495 +924 CD7 CD7 molecule Novel N 0.03942940084021199 0.04431072705777711 1.0 2496 +203447 NRK Nik related kinase Novel U 0.03940684603033917 0.044116266379281954 1.0 2497 +92689 FAM114A1 family with sequence similarity 114 member A1 Novel U 0.03940311307322145 0.04408408196371836 1.0 2498 +4065 LY75 lymphocyte antigen 75 Novel N 0.039400908665155034 0.04406507623098581 1.0 2499 +390433 OR4K13 olfactory receptor family 4 subfamily K member 13 Novel U 0.03940025077228516 0.04405940407969858 1.0 2500 +8115 TCL1A TCL1 family AKT coactivator A Novel N 0.039389681267372655 0.043968277038139235 1.0 2501 +64760 FHIP2B FHF complex subunit HOOK interacting protein 2B Novel U 0.03935533680072143 0.043672169541547096 1.0 2502 +283092 OR4C13 olfactory receptor family 4 subfamily C member 13 Novel U 0.03929351652153186 0.043139173985222184 1.0 2503 +51378 ANGPT4 angiopoietin 4 Novel U 0.03928576940663798 0.04307238072794627 1.0 2504 +128637 TBC1D20 TBC1 domain family member 20 Novel U 0.0392763005509772 0.042990743147902355 1.0 2505 +171222 UBE2L5 ubiquitin conjugating enzyme E2 L5 Novel U 0.039205640387419874 0.04238153280982287 1.0 2506 +7732 RNF112 ring finger protein 112 Novel N 0.0391914541598427 0.042259223490635545 1.0 2507 +8390 OR1G1 olfactory receptor family 1 subfamily G member 1 Novel U 0.03919074755636778 0.042253131371396475 1.0 2508 +253430 IPMK inositol polyphosphate multikinase Novel N 0.03919019140839461 0.042248336433517726 1.0 2509 +6720 SREBF1 sterol regulatory element binding transcription factor 1 Novel U 0.03918464118982785 0.042200484145053535 1.0 2510 +84954 MPND MPN domain containing Novel U 0.03913229227927724 0.04174914783490256 1.0 2511 +63908 NAPB NSF attachment protein beta Novel N 0.03912143590692731 0.04165554750995775 1.0 2512 +23348 DOCK9 dedicator of cytokinesis 9 Novel U 0.03908875524264972 0.0413737848090116 1.0 2513 +10579 TACC2 transforming acidic coiled-coil containing protein 2 Novel U 0.03906215197249004 0.041144419543038935 1.0 2514 +10411 RAPGEF3 Rap guanine nucleotide exchange factor 3 Novel U 0.0390618323787086 0.041141664103115774 1.0 2515 +6369 CCL24 C-C motif chemokine ligand 24 Novel U 0.03903306464731814 0.04089363751382067 1.0 2516 +2339 FNTA farnesyltransferase, CAAX box, subunit alpha Novel U 0.03901171276581738 0.04070954811616225 1.0 2517 +3627 CXCL10 C-X-C motif chemokine ligand 10 Novel U 0.0389257796854424 0.03996865935633111 1.0 2518 +26059 ERC2 ELKS/RAB6-interacting/CAST family member 2 Novel U 0.03890636606087606 0.039801281017674814 1.0 2519 +6696 SPP1 secreted phosphoprotein 1 Novel U 0.03886311523289716 0.039428385595293464 1.0 2520 +29843 SENP1 SUMO specific peptidase 1 Novel N 0.038844001365900896 0.0392635916748074 1.0 2521 +23032 USP33 ubiquitin specific peptidase 33 Novel U 0.03883557289407914 0.0391909239663063 1.0 2522 +55914 ERBIN erbb2 interacting protein Novel U 0.03880076720336401 0.03889083993677457 1.0 2523 +91937 TIMD4 T cell immunoglobulin and mucin domain containing 4 Novel U 0.03879809843205622 0.03886783060607357 1.0 2524 +390084 OR56A5 olfactory receptor family 56 subfamily A member 5 Novel U 0.0387739943180341 0.03866001230063461 1.0 2525 +1447 CSN2 casein beta Novel U 0.03870843178038741 0.03809475213544006 1.0 2526 +27237 ARHGEF16 Rho guanine nucleotide exchange factor 16 Novel U 0.038669016576804154 0.037754926294519875 1.0 2527 +10213 PSMD14 proteasome 26S subunit, non-ATPase 14 Novel U 0.0386495976806319 0.03758750250568825 1.0 2528 +117289 TAGAP T cell activation RhoGTPase activating protein Novel U 0.038602192794994473 0.037178792067559065 1.0 2529 +1452 CSNK1A1 casein kinase 1 alpha 1 Novel U 0.03854727497519833 0.03670530740689234 1.0 2530 +2033 EP300 E1A binding protein p300 Novel U 0.03853221829665849 0.03657549332549456 1.0 2531 +10900 RUNDC3A RUN domain containing 3A Novel N 0.0385296962243039 0.03655374878834025 1.0 2532 +85379 KIAA1671 KIAA1671 Novel U 0.0385117980190649 0.03639943593204722 1.0 2533 +7030 TFE3 transcription factor binding to IGHM enhancer 3 Novel U 0.03849300649929251 0.03623742119082352 1.0 2534 +2773 GNAI3 G protein subunit alpha i3 Novel U 0.03846970417974543 0.03603651571233847 1.0 2535 +3122 HLA-DRA major histocompatibility complex, class II, DR alpha Novel U 0.03845249129372564 0.03588811146893574 1.0 2536 +4158 MC2R melanocortin 2 receptor Novel U 0.03844103934107389 0.03578937623262421 1.0 2537 +3002 GZMB granzyme B Novel N 0.03843523773194017 0.03573935653151089 1.0 2538 +10673 TNFSF13B TNF superfamily member 13b Novel U 0.038429816966515935 0.03569262034848367 1.0 2539 +1388 ATF6B activating transcription factor 6 beta Novel U 0.038427003309678666 0.03566836185902118 1.0 2540 +9901 SRGAP3 SLIT-ROBO Rho GTPase activating protein 3 Novel U 0.03835660806286577 0.03506143555215974 1.0 2541 +23216 TBC1D1 TBC1 domain family member 1 Novel U 0.03834186383104719 0.03493431529091623 1.0 2542 +23150 FRMD4B FERM domain containing 4B Novel U 0.03833891533259207 0.03490889423822912 1.0 2543 +728400 USP17L28 ubiquitin specific peptidase 17 like family member 28 Novel U 0.03833439856553234 0.03486995205285967 1.0 2544 +1241 LTB4R leukotriene B4 receptor Novel N 0.03832883954101526 0.03482202384218269 1.0 2545 +391189 OR11L1 olfactory receptor family 11 subfamily L member 1 Novel U 0.03831834430466274 0.034731537121452764 1.0 2546 +9448 MAP4K4 mitogen-activated protein kinase kinase kinase kinase 4 Novel N 0.038302143919794335 0.03459186235358034 1.0 2547 +54497 HEATR5B HEAT repeat containing 5B Novel U 0.03827677847860279 0.034373169270719005 1.0 2548 +84700 MYO18B myosin XVIIIB Novel N 0.03824769191247654 0.0341223937857604 1.0 2549 +80326 WNT10A Wnt family member 10A Novel U 0.03824738484091046 0.034119746308551656 1.0 2550 +55466 DNAJA4 DnaJ heat shock protein family (Hsp40) member A4 Novel U 0.03823948550403734 0.034051640639886284 1.0 2551 +2783 GNB2 G protein subunit beta 2 Novel U 0.03820519371379005 0.033755987303152164 1.0 2552 +63940 GPSM3 G protein signaling modulator 3 Novel U 0.03818982054862983 0.03362344457082443 1.0 2553 +287 ANK2 ankyrin 2 Novel U 0.03815772138568572 0.033346695396682134 1.0 2554 +653361 NCF1 neutrophil cytosolic factor 1 Novel U 0.03811933598885998 0.033015748234940114 1.0 2555 +8291 DYSF dysferlin Novel U 0.038117029404963663 0.03299586157342479 1.0 2556 +10313 RTN3 reticulon 3 Novel U 0.038089332769328126 0.03275706964442648 1.0 2557 +79785 RERGL RERG like Novel U 0.038031725915465164 0.03226040095374226 1.0 2558 +22995 CEP152 centrosomal protein 152 Novel U 0.03801127444630222 0.03208407463611535 1.0 2559 +7184 HSP90B1 heat shock protein 90 beta family member 1 Novel U 0.03799174708184765 0.03191571566689902 1.0 2560 +2674 GFRA1 GDNF family receptor alpha 1 Novel U 0.03797959855899967 0.03181097481521132 1.0 2561 +57600 FNIP2 folliculin interacting protein 2 Novel U 0.03791835241003671 0.03128292923425932 1.0 2562 +2147 F2 coagulation factor II, thrombin Novel U 0.03786847909656683 0.03085293676565316 1.0 2563 +3915 LAMC1 laminin subunit gamma 1 Novel U 0.037814820744382784 0.030390310849873776 1.0 2564 +60592 SCOC short coiled-coil protein Novel U 0.03781308040238265 0.030375306152956864 1.0 2565 +51338 MS4A4A membrane spanning 4-domains A4A Novel U 0.03779708540076493 0.030237402136711472 1.0 2566 +84376 HOOK3 hook microtubule tethering protein 3 Novel U 0.03775165684015054 0.029845730969011688 1.0 2567 +57599 WDR48 WD repeat domain 48 Novel U 0.03769932372112786 0.02939453080858896 1.0 2568 +161514 TBC1D21 TBC1 domain family member 21 Novel U 0.037683539220135724 0.029258441664413222 1.0 2569 +388121 TNFAIP8L3 TNF alpha induced protein 8 like 3 Novel N 0.03767765345077159 0.029207696359510673 1.0 2570 +390037 OR52I1 olfactory receptor family 52 subfamily I member 1 Novel U 0.03766083928004129 0.029062729717495715 1.0 2571 +9538 EI24 EI24 autophagy associated transmembrane protein Novel N 0.03765839287955012 0.029041637600024248 1.0 2572 +56181 MTFR1L mitochondrial fission regulator 1 like Novel U 0.03764240643822382 0.028903807387995653 1.0 2573 +9886 RHOBTB1 Rho related BTB domain containing 1 Novel U 0.03758720698995902 0.02842789461273132 1.0 2574 +9736 USP34 ubiquitin specific peptidase 34 Novel U 0.03754048409946471 0.028025064128324135 1.0 2575 +9958 USP15 ubiquitin specific peptidase 15 Novel U 0.0375297834267924 0.027932806198421513 1.0 2576 +55814 BDP1 B double prime 1, subunit of RNA polymerase III transcription initiation factor IIIB Novel N 0.03743462567395538 0.027112385131469227 1.0 2577 +81631 MAP1LC3B microtubule associated protein 1 light chain 3 beta Novel U 0.037392575706555874 0.026749843162048238 1.0 2578 +3824 KLRD1 killer cell lectin like receptor D1 Novel U 0.03736467055163317 0.026509253443474674 1.0 2579 +81472 OR2C3 olfactory receptor family 2 subfamily C member 3 Novel U 0.03732060788644377 0.02612935860874308 1.0 2580 +1608 DGKG diacylglycerol kinase gamma Novel U 0.037320195484507566 0.026125803005269618 1.0 2581 +3805 KIR2DL4 killer cell immunoglobulin like receptor, two Ig domains and long cytoplasmic tail 4 Novel U 0.0373134391447864 0.026067551908774897 1.0 2582 +83988 NCALD neurocalcin delta Novel U 0.03730635359586832 0.026006462471183076 1.0 2583 +83593 RASSF5 Ras association domain family member 5 Novel U 0.03729763582017307 0.025931300473089267 1.0 2584 +757 TMEM50B transmembrane protein 50B Novel U 0.03729426565481701 0.025902243937233928 1.0 2585 +3326 HSP90AB1 heat shock protein 90 alpha family class B member 1 Novel U 0.037233316186659975 0.025376756247531797 1.0 2586 +84063 KIRREL2 kirre like nephrin family adhesion molecule 2 Novel U 0.03722098883788443 0.025270473613341754 1.0 2587 +7159 TP53BP2 tumor protein p53 binding protein 2 Novel N 0.037187043291578153 0.024977805486062897 1.0 2588 +2204 FCAR Fc alpha receptor Novel N 0.037185231075277124 0.02496218111088681 1.0 2589 +3707 ITPKB inositol-trisphosphate 3-kinase B Novel U 0.03714119616195209 0.024582525544249476 1.0 2590 +23218 NBEAL2 neurobeachin like 2 Novel N 0.03711699375562755 0.024373859792614888 1.0 2591 +84937 ZNRF1 zinc and ring finger 1 Novel U 0.03710272379185673 0.024250828525553797 1.0 2592 +388325 SCIMP SLP adaptor and CSK interacting membrane protein Novel U 0.03709077252097603 0.024147788320052356 1.0 2593 +926 CD8B CD8 subunit beta Novel U 0.037029346565836375 0.02361819250518954 1.0 2594 +114907 FBXO32 F-box protein 32 Novel N 0.03695116192871949 0.02294410845538467 1.0 2595 +5340 PLG plasminogen Novel U 0.036916178620193196 0.022642493059360943 1.0 2596 +23762 OSBP2 oxysterol binding protein 2 Novel U 0.03690212287768795 0.022521308742590566 1.0 2597 +401994 OR14I1 olfactory receptor family 14 subfamily I member 1 Novel U 0.03690019706057295 0.022504704935910204 1.0 2598 +4735 SEPTIN2 septin 2 Novel U 0.036819648435118035 0.02181023930103496 1.0 2599 +608 TNFRSF17 TNF receptor superfamily member 17 Novel N 0.03680616854428777 0.021694019801439274 1.0 2600 +4640 MYO1A myosin IA Novel U 0.03677692183156603 0.021441863581471442 1.0 2601 +2852 GPER1 G protein-coupled estrogen receptor 1 Novel U 0.03673669209583702 0.021095015093292757 1.0 2602 +11065 UBE2C ubiquitin conjugating enzyme E2 C Novel U 0.03668668223161609 0.020663845325837822 1.0 2603 +57192 MCOLN1 mucolipin TRP cation channel 1 Novel U 0.03664950363359036 0.020343302814579668 1.0 2604 +28512 NKIRAS1 NFKB inhibitor interacting Ras like 1 Novel U 0.03658489838229289 0.01978629607976351 1.0 2605 +196335 OR56B4 olfactory receptor family 56 subfamily B member 4 Novel U 0.03656855158159152 0.01964535895932056 1.0 2606 +57551 TAOK1 TAO kinase 1 Novel U 0.03653537744607752 0.01935934170016743 1.0 2607 +64798 DEPTOR DEP domain containing MTOR interacting protein Novel U 0.03652090527251361 0.019234567042060894 1.0 2608 +442184 OR2B3 olfactory receptor family 2 subfamily B member 3 Novel U 0.03651691081588406 0.019200128057614504 1.0 2609 +79180 EFHD2 EF-hand domain family member D2 Novel U 0.03649617813130649 0.0190213771866156 1.0 2610 +10631 POSTN periostin Novel N 0.03647267243096471 0.01881871822106719 1.0 2611 +57231 SNX14 sorting nexin 14 Novel U 0.03646849201099261 0.01878267591750736 1.0 2612 +387522 PEDS1-UBE2V1 PEDS1-UBE2V1 readthrough Novel U 0.03646803843593717 0.018778765331981417 1.0 2613 +3611 ILK integrin linked kinase Novel U 0.03641638112818371 0.018333391809809644 1.0 2614 +8601 RGS20 regulator of G protein signaling 20 Novel U 0.036399943268479645 0.018191669606470947 1.0 2615 +344892 RTP2 receptor transporter protein 2 Novel U 0.03639965439737883 0.018189179048112025 1.0 2616 +214 ALCAM activated leukocyte cell adhesion molecule Novel N 0.03639508768790363 0.018149806274497665 1.0 2617 +2705 GJB1 gap junction protein beta 1 Novel U 0.03633749448344506 0.01765325526480717 1.0 2618 +442186 OR2J3 olfactory receptor family 2 subfamily J member 3 Novel U 0.03631676089335789 0.017474496586781216 1.0 2619 +10746 MAP3K2 mitogen-activated protein kinase kinase kinase 2 Novel N 0.036261779650326474 0.01700046511036063 1.0 2620 +5737 PTGFR prostaglandin F receptor Novel U 0.03626089195430242 0.016992811666500594 1.0 2621 +260334 TUBB8B tubulin beta 8B Novel U 0.036256663252232944 0.016956353089451145 1.0 2622 +51014 TMED7 transmembrane p24 trafficking protein 7 Novel U 0.036204854479623946 0.016509673683579064 1.0 2623 +4647 MYO7A myosin VIIA Novel U 0.036201556490837936 0.016481239432055178 1.0 2624 +55137 FIGN fidgetin, microtubule severing factor Novel U 0.03619132125314189 0.01639299434029178 1.0 2625 +55102 ATG2B autophagy related 2B Novel U 0.036190766745536965 0.01638821354516683 1.0 2626 +10972 TMED10 transmembrane p24 trafficking protein 10 Novel U 0.036138154660490654 0.015934608224933942 1.0 2627 +26994 RNF11 ring finger protein 11 Novel U 0.03611441109189991 0.015729898432029984 1.0 2628 +30009 TBX21 T-box transcription factor 21 Novel U 0.0361007353070514 0.01561198999406969 1.0 2629 +29121 CLEC2D C-type lectin domain family 2 member D Novel N 0.03609975228264101 0.015603514657992803 1.0 2630 +10887 PROKR1 prokineticin receptor 1 Novel U 0.036094760306832376 0.01556047536800314 1.0 2631 +1435 CSF1 colony stimulating factor 1 Novel U 0.036072019959957714 0.015364415046173889 1.0 2632 +1520 CTSS cathepsin S Novel U 0.036056705130707155 0.01523237526823319 1.0 2633 +57555 NLGN2 neuroligin 2 Novel U 0.03603486907496419 0.015044111468210983 1.0 2634 +3552 IL1A interleukin 1 alpha Novel U 0.03603046122036513 0.015006108292796284 1.0 2635 +1366 CLDN7 claudin 7 Novel U 0.03598975271270707 0.014655131979346928 1.0 2636 +10980 COPS6 COP9 signalosome subunit 6 Novel N 0.035948108170450264 0.014296085461617756 1.0 2637 +4886 NPY1R neuropeptide Y receptor Y1 Novel N 0.035948079772076896 0.014295840619520463 1.0 2638 +5420 PODXL podocalyxin like Novel U 0.035942975421017764 0.01425183246446026 1.0 2639 +23025 UNC13A unc-13 homolog A Novel U 0.03593258377123473 0.014162238835478803 1.0 2640 +26497 OR10D3 olfactory receptor family 10 subfamily D member 3 Novel U 0.0359268293295775 0.014112625797934404 1.0 2641 +6846 XCL2 X-C motif chemokine ligand 2 Novel N 0.035916374029990435 0.014022483399792497 1.0 2642 +29091 STXBP6 syntaxin binding protein 6 Novel U 0.03590274101290763 0.013904943692439263 1.0 2643 +55742 PARVA parvin alpha Novel N 0.03587131604498722 0.01363400722177294 1.0 2644 +80019 UBTD1 ubiquitin domain containing 1 Novel U 0.03583176207342659 0.013292984965756066 1.0 2645 +26030 PLEKHG3 pleckstrin homology and RhoGEF domain containing G3 Novel U 0.03580157919895804 0.013032757445276613 1.0 2646 +6197 RPS6KA3 ribosomal protein S6 kinase A3 Novel U 0.035784305344473674 0.012883827550402861 1.0 2647 +85406 DNAJC14 DnaJ heat shock protein family (Hsp40) member C14 Novel U 0.03576234001139691 0.012694449160712766 1.0 2648 +662 BNIP1 BCL2 interacting protein 1 Novel U 0.03575769308849719 0.012654384811463555 1.0 2649 +1124 CHN2 chimerin 2 Novel U 0.03572862190061136 0.012403741912994598 1.0 2650 +23553 HYAL4 hyaluronidase 4 Novel N 0.03566078300336878 0.01181885567096713 1.0 2651 +94086 HSPB9 heat shock protein family B (small) member 9 Novel U 0.03564305937832405 0.01166604799176139 1.0 2652 +1015 CDH17 cadherin 17 Novel U 0.035621667790137264 0.011481616255189533 1.0 2653 +23140 ZZEF1 zinc finger ZZ-type and EF-hand domain containing 1 Novel U 0.035608227303014744 0.01136573648232119 1.0 2654 +144124 OR10A5 olfactory receptor family 10 subfamily A member 5 Novel U 0.03560684463591239 0.011353815549075786 1.0 2655 +8895 CPNE3 copine 3 Novel U 0.035603353678303716 0.0113237175793297 1.0 2656 +55243 KIRREL1 kirre like nephrin family adhesion molecule 1 Novel U 0.03560177903641086 0.011310141498103644 1.0 2657 +8321 FZD1 frizzled class receptor 1 Novel U 0.035581481722060035 0.011135144256160665 1.0 2658 +4684 NCAM1 neural cell adhesion molecule 1 Novel U 0.03557757513856673 0.011101462887042937 1.0 2659 +56243 KIAA1217 KIAA1217 Novel U 0.03555371579960809 0.010895754957403721 1.0 2660 +5534 PPP3R1 protein phosphatase 3 regulatory subunit B, alpha Novel N 0.03554649185992765 0.010833472356947876 1.0 2661 +911 CD1C CD1c molecule Novel N 0.035533855078914725 0.010724521892562462 1.0 2662 +50834 TAS2R1 taste 2 receptor member 1 Novel N 0.035519601489106184 0.010601631796800617 1.0 2663 +6422 SFRP1 secreted frizzled related protein 1 Novel U 0.03550854775001595 0.01050632983613161 1.0 2664 +7329 UBE2I ubiquitin conjugating enzyme E2 I Novel U 0.03550531695014265 0.010478474866881743 1.0 2665 +23094 SIPA1L3 signal induced proliferation associated 1 like 3 Novel U 0.03550097132766467 0.010441008237798371 1.0 2666 +4943 TBC1D25 TBC1 domain family member 25 Novel U 0.035473608370400096 0.010205093181750098 1.0 2667 +2676 GFRA3 GDNF family receptor alpha 3 Novel N 0.03539854303909587 0.00955790283347423 1.0 2668 +115827 RAB3C RAB3C, member RAS oncogene family Novel U 0.0353598950607493 0.009224691774098428 1.0 2669 +64844 MARCHF7 membrane associated ring-CH-type finger 7 Novel U 0.03535072040708428 0.00914559071376061 1.0 2670 +7042 TGFB2 transforming growth factor beta 2 Novel U 0.03534619996016451 0.00910661680176242 1.0 2671 +8760 CDS2 CDP-diacylglycerol synthase 2 Novel U 0.035297124074426915 0.008683499511388536 1.0 2672 +120776 OR2D2 olfactory receptor family 2 subfamily D member 2 Novel U 0.03526339924326111 0.008392734322605426 1.0 2673 +7786 MAP3K12 mitogen-activated protein kinase kinase kinase 12 Novel U 0.03523631995144361 0.008159264943360243 1.0 2674 +253558 LCLAT1 lysocardiolipin acyltransferase 1 Novel U 0.03523618104239824 0.00815806731201845 1.0 2675 +9063 PIAS2 protein inhibitor of activated STAT 2 Novel N 0.035192212579098124 0.007778984657190329 1.0 2676 +23555 TSPAN15 tetraspanin 15 Novel U 0.03516793036291222 0.007569630809319152 1.0 2677 +2834 PRLHR prolactin releasing hormone receptor Novel N 0.03516734078517046 0.007564547650191026 1.0 2678 +6494 SIPA1 signal-induced proliferation-associated 1 Novel U 0.03516630568866585 0.007555623364429802 1.0 2679 +81030 ZBP1 Z-DNA binding protein 1 Novel N 0.03515069793271714 0.007421058062009298 1.0 2680 +22874 PLEKHA6 pleckstrin homology domain containing A6 Novel U 0.03511666137215649 0.00712760523764106 1.0 2681 +23779 ARHGAP8 Rho GTPase activating protein 8 Novel U 0.03507057006940787 0.006730220109778635 1.0 2682 +1453 CSNK1D casein kinase 1 delta Novel U 0.035062396511819194 0.006659750193899229 1.0 2683 +55686 MREG melanoregulin Novel U 0.03506138102589818 0.006650994984597277 1.0 2684 +7353 UFD1 ubiquitin recognition factor in ER associated degradation 1 Novel U 0.034950621485042646 0.0056960600688949386 1.0 2685 +55357 TBC1D2 TBC1 domain family member 2 Novel U 0.03493801752070196 0.005587392539829568 1.0 2686 +387748 OR56B1 olfactory receptor family 56 subfamily B member 1 Novel U 0.034931303777233934 0.0055295086952129565 1.0 2687 +55540 IL17RB interleukin 17 receptor B Novel N 0.03491050668609275 0.0053502025305037625 1.0 2688 +729830 FHIP1A FHF complex subunit HOOK interacting protein 1A Novel N 0.03487356127818786 0.005031670513209967 1.0 2689 +8263 F8A1 coagulation factor VIII associated 1 Novel U 0.03487068093060125 0.005006837036485831 1.0 2690 +4751 NEK2 NIMA related kinase 2 Novel U 0.034824415253607556 0.004607948507167081 1.0 2691 +3444 IFNA7 interferon alpha 7 Novel N 0.034783351106666825 0.004253905980497693 1.0 2692 +6646 SOAT1 sterol O-acyltransferase 1 Novel U 0.03473737498733607 0.0038575139288666628 1.0 2693 +3902 LAG3 lymphocyte activating 3 Novel U 0.0347358547485363 0.0038444068944848676 1.0 2694 +147 ADRA1B adrenoceptor alpha 1B Novel U 0.03472154188395526 0.0037210057497475257 1.0 2695 +84687 PPP1R9B protein phosphatase 1 regulatory subunit 9B Novel N 0.034718417271331285 0.0036940662945129875 1.0 2696 +148252 DIRAS1 DIRAS family GTPase 1 Novel U 0.034684889439037074 0.0034049995698024324 1.0 2697 +23077 MYCBP2 MYC binding protein 2 Novel U 0.03468405196680246 0.003397779140107719 1.0 2698 +5362 PLXNA2 plexin A2 Novel U 0.03468300077646748 0.003388716098258986 1.0 2699 +728405 USP17L29 ubiquitin specific peptidase 17 like family member 29 Novel U 0.034640501707057174 0.0030223021085360475 1.0 2700 +27180 SIGLEC9 sialic acid binding Ig like lectin 9 Novel U 0.034633530213975694 0.0029621960255145803 1.0 2701 +2911 GRM1 glutamate metabotropic receptor 1 Novel N 0.03460311716034368 0.0026999839706251545 1.0 2702 +338662 OR8D4 olfactory receptor family 8 subfamily D member 4 Novel U 0.034599475274970676 0.002668584747815067 1.0 2703 +5365 PLXNB3 plexin B3 Novel U 0.034588751661411496 0.0025761290285961115 1.0 2704 +57787 MARK4 microtubule affinity regulating kinase 4 Novel U 0.0345644134570749 0.002366292467998352 1.0 2705 +6094 ROM1 retinal outer segment membrane protein 1 Novel N 0.03454822666694712 0.002226734909825301 1.0 2706 +127059 OR2M5 olfactory receptor family 2 subfamily M member 5 Novel U 0.03450120481541319 0.0018213268746901045 1.0 2707 +2854 GPR32 G protein-coupled receptor 32 Novel N 0.034491908551716514 0.0017411773298205628 1.0 2708 +811 CALR calreticulin Novel U 0.03441459341300062 0.0010745898295304059 1.0 2709 +11080 DNAJB4 DnaJ heat shock protein family (Hsp40) member B4 Novel U 0.03440696859902748 0.001008851013420829 1.0 2710 +1351 COX8A cytochrome c oxidase subunit 8A Novel U 0.034382468156893956 0.0007976156881140328 1.0 2711 +154075 SAMD3 sterile alpha motif domain containing 3 Novel U 0.034300023696254345 8.68047415997444e-05 1.0 2712 +4122 MAN2A2 mannosidase alpha class 2A member 2 Novel U 0.03425651875335245 -0.00028828158199600677 1.0 2713 +84888 SPPL2A signal peptide peptidase like 2A Novel U 0.034213583016923364 -0.0006584603813195244 1.0 2714 +2775 GNAO1 G protein subunit alpha o1 Novel N 0.034196723092146226 -0.0008038215007449231 1.0 2715 +26580 BSCL2 BSCL2 lipid droplet biogenesis associated, seipin Novel N 0.03417224769856512 -0.0010148408650870145 1.0 2716 +8838 CCN6 cellular communication network factor 6 Novel U 0.03416464762086892 -0.001080366412575679 1.0 2717 +2257 FGF12 fibroblast growth factor 12 Novel U 0.03410257316128889 -0.0016155534345554702 1.0 2718 +219954 OR9I1 olfactory receptor family 9 subfamily I member 1 Novel U 0.034097515611012444 -0.001659158087568585 1.0 2719 +6375 XCL1 X-C motif chemokine ligand 1 Novel U 0.03403956443553702 -0.002158795413978753 1.0 2720 +84466 MEGF10 multiple EGF like domains 10 Novel U 0.03402380062495826 -0.002294706171732877 1.0 2721 +3918 LAMC2 laminin subunit gamma 2 Novel U 0.03402333868341579 -0.0022986888905533946 1.0 2722 +94240 EPSTI1 epithelial stromal interaction 1 Novel U 0.034020943552453685 -0.002319338977812031 1.0 2723 +390327 OR6C70 olfactory receptor family 6 subfamily C member 70 Novel U 0.03401232323165665 -0.0023936607495534034 1.0 2724 +143458 LDLRAD3 low density lipoprotein receptor class A domain containing 3 Novel U 0.03401048129277747 -0.002409541383715756 1.0 2725 +392391 OR5C1 olfactory receptor family 5 subfamily C member 1 Novel U 0.03400384809052465 -0.0024667308265863505 1.0 2726 +57096 RPGRIP1 RPGR interacting protein 1 Novel U 0.03398718366483235 -0.00261040641264228 1.0 2727 +8842 PROM1 prominin 1 Novel N 0.03397607815491624 -0.0027061547255520244 1.0 2728 +9637 FEZ2 fasciculation and elongation protein zeta 2 Novel U 0.033969453050432176 -0.0027632743519349114 1.0 2729 +54732 TMED9 transmembrane p24 trafficking protein 9 Novel U 0.0339681758537283 -0.0027742859516339587 1.0 2730 +23371 TNS2 tensin 2 Novel U 0.03396238008800103 -0.0028242552726825093 1.0 2731 +7018 TF transferrin Novel U 0.03395828217509776 -0.0028595862255070804 1.0 2732 +91056 AP5B1 adaptor related protein complex 5 subunit beta 1 Novel U 0.03395570173444155 -0.0028818339963219805 1.0 2733 +79735 TBC1D17 TBC1 domain family member 17 Novel U 0.033938444074853406 -0.0030306242637492867 1.0 2734 +54820 NDE1 nudE neurodevelopment protein 1 Novel U 0.03391450677553493 -0.0032370043437881116 1.0 2735 +7097 TLR2 toll like receptor 2 Novel U 0.033895682981187364 -0.0033992973465366383 1.0 2736 +55850 USE1 unconventional SNARE in the ER 1 Novel U 0.03389216440607882 -0.003429633425927337 1.0 2737 +145553 MDP1 magnesium dependent phosphatase 1 Novel U 0.0338729200735097 -0.0035955521807153274 1.0 2738 +7319 UBE2A ubiquitin conjugating enzyme E2 A Novel U 0.03386512264702689 -0.0036627792091369275 1.0 2739 +59341 TRPV4 transient receptor potential cation channel subfamily V member 4 Novel U 0.033858264020025 -0.0037219121953094036 1.0 2740 +23291 FBXW11 F-box and WD repeat domain containing 11 Novel U 0.03385533593723296 -0.003747157230388019 1.0 2741 +27338 UBE2S ubiquitin conjugating enzyme E2 S Novel U 0.033811373285197836 -0.004126189782265125 1.0 2742 +84260 TCHP trichoplein keratin filament binding Novel U 0.0337970667784978 -0.004249536111295252 1.0 2743 +23359 ENTREP2 endosomal transmembrane epsin interactor 2 Novel U 0.03379163752681254 -0.0042963454602718484 1.0 2744 +85409 NKD2 NKD inhibitor of WNT signaling pathway 2 Novel U 0.033780002310180676 -0.004396660742618647 1.0 2745 +197131 UBR1 ubiquitin protein ligase E3 component n-recognin 1 Novel U 0.033775467168968655 -0.004435761344314426 1.0 2746 +5673 PSG5 pregnancy specific beta-1-glycoprotein 5 Novel N 0.03375202748095775 -0.004637851171717897 1.0 2747 +51760 SYT17 synaptotagmin 17 Novel U 0.033742949447220845 -0.004716119204560333 1.0 2748 +221955 DAGLB diacylglycerol lipase beta Novel N 0.03373605000418886 -0.004775604094071874 1.0 2749 +10267 RAMP1 receptor activity modifying protein 1 Novel U 0.03373371603551953 -0.004795726858732011 1.0 2750 +49855 SCAPER S-phase cyclin A associated protein in the ER Novel N 0.03371770958914262 -0.004933729548193877 1.0 2751 +634 CEACAM1 CEA cell adhesion molecule 1 Novel U 0.03367932089667946 -0.005264705123914692 1.0 2752 +51324 SPG21 SPG21 abhydrolase domain containing, maspardin Novel U 0.033665803121278384 -0.005381251252703224 1.0 2753 +9037 SEMA5A semaphorin 5A Novel N 0.03364290357576515 -0.005578684136546808 1.0 2754 +10392 NOD1 nucleotide binding oligomerization domain containing 1 Novel U 0.03364025554830449 -0.005601514620136666 1.0 2755 +285852 TREML4 triggering receptor expressed on myeloid cells like 4 Novel U 0.03362848544587404 -0.005702992846620953 1.0 2756 +219858 OR8B12 olfactory receptor family 8 subfamily B member 12 Novel U 0.03352545190139418 -0.006591316582458018 1.0 2757 +125058 TBC1D16 TBC1 domain family member 16 Novel U 0.03351344271427926 -0.0066948561240330285 1.0 2758 +6041 RNASEL ribonuclease L Novel U 0.03346115936111288 -0.007145627218449998 1.0 2759 +81565 NDEL1 nudE neurodevelopment protein 1 like 1 Novel U 0.033453178829717004 -0.00721443292147942 1.0 2760 +119678 OR52E2 olfactory receptor family 52 subfamily E member 2 Novel U 0.033450428144576376 -0.007238148488216148 1.0 2761 +26031 OSBPL3 oxysterol binding protein like 3 Novel N 0.03342471105070943 -0.007459873412987822 1.0 2762 +9229 DLGAP1 DLG associated protein 1 Novel U 0.03340122849867364 -0.007662332800915598 1.0 2763 +84634 KISS1R KISS1 receptor Novel N 0.03339704128881547 -0.007698433644798291 1.0 2764 +128954 GAB4 GRB2 associated binding protein family member 4 Novel U 0.03334619402340029 -0.008136823229459597 1.0 2765 +84766 CRACR2A calcium release activated channel regulator 2A Novel N 0.03333628292783077 -0.0082222736668584 1.0 2766 +5551 PRF1 perforin 1 Novel U 0.03328408126747582 -0.008672340430818696 1.0 2767 +29967 LRP12 LDL receptor related protein 12 Novel U 0.03327776415722758 -0.008726804625016227 1.0 2768 +3091 HIF1A hypoxia inducible factor 1 subunit alpha Novel U 0.03327245438459676 -0.008772583862095463 1.0 2769 +66008 TRAK2 trafficking kinesin protein 2 Novel U 0.03324717983368329 -0.00899049331675315 1.0 2770 +387082 SUMO4 small ubiquitin like modifier 4 Novel U 0.033207085825408586 -0.009336171604296 1.0 2771 +6400 SEL1L SEL1L adaptor subunit of SYVN1 ubiquitin ligase Novel U 0.03318282277428375 -0.009545360216867065 1.0 2772 +127069 OR2T10 olfactory receptor family 2 subfamily T member 10 Novel U 0.03315323717946716 -0.009800438174702174 1.0 2773 +84522 JAGN1 jagunal homolog 1 Novel U 0.03314609322368476 -0.009862031178430352 1.0 2774 +113178 SCAMP4 secretory carrier membrane protein 4 Novel U 0.03312273100873667 -0.010063453056760232 1.0 2775 +2318 FLNC filamin C Novel U 0.03311608325788339 -0.010120767933218245 1.0 2776 +391112 OR6Y1 olfactory receptor family 6 subfamily Y member 1 Novel U 0.0330946068099286 -0.010305931304778653 1.0 2777 +51311 TLR8 toll like receptor 8 Novel U 0.033063471163025285 -0.01057437333804545 1.0 2778 +808 CALM3 calmodulin 3 Novel U 0.03299589371790606 -0.011157005419759083 1.0 2779 +285659 OR2V2 olfactory receptor family 2 subfamily V member 2 Novel U 0.03299547866549364 -0.011160583874828534 1.0 2780 +27333 GOLIM4 golgi integral membrane protein 4 Novel U 0.03298830877546479 -0.011222400475704712 1.0 2781 +10749 KIF1C kinesin family member 1C Novel N 0.03298130746228111 -0.011282763658535014 1.0 2782 +3669 ISG20 interferon stimulated exonuclease gene 20 Novel N 0.032956025291748035 -0.01150073880722459 1.0 2783 +1814 DRD3 dopamine receptor D3 Novel U 0.032950688258228715 -0.011546753079354159 1.0 2784 +445328 ARHGEF35 Rho guanine nucleotide exchange factor 35 Novel U 0.03294239824964605 -0.011618227000118986 1.0 2785 +4093 SMAD9 SMAD family member 9 Novel U 0.0329211269647027 -0.011801621518887823 1.0 2786 +390271 OR8B3 olfactory receptor family 8 subfamily B member 3 Novel U 0.03290113489704476 -0.011973987017121056 1.0 2787 +302 ANXA2 annexin A2 Novel U 0.03288922187312117 -0.012076697469045697 1.0 2788 +29959 NRBP1 nuclear receptor binding protein 1 Novel N 0.032885609460799776 -0.012107842584211083 1.0 2789 +80263 TRIM45 tripartite motif containing 45 Novel U 0.03287616556447311 -0.012189264972503272 1.0 2790 +8794 TNFRSF10C TNF receptor superfamily member 10c Novel U 0.03284102342349998 -0.012492249773348075 1.0 2791 +5495 PPM1B protein phosphatase, Mg2+/Mn2+ dependent 1B Novel U 0.03278748260261867 -0.012953862370150154 1.0 2792 +127385 OR10J5 olfactory receptor family 10 subfamily J member 5 Novel U 0.03278361983832395 -0.01298716594352778 1.0 2793 +54361 WNT4 Wnt family member 4 Novel U 0.03277949354705715 -0.013022741565930971 1.0 2794 +30835 CD209 CD209 molecule Novel U 0.03275513320068341 -0.013232769028406869 1.0 2795 +5601 MAPK9 mitogen-activated protein kinase 9 Novel U 0.032739115448616414 -0.013370869192073953 1.0 2796 +859 CAV3 caveolin 3 Novel U 0.03269245698388753 -0.013773144217218676 1.0 2797 +51661 FKBP7 FKBP prolyl isomerase 7 Novel U 0.03269040369787305 -0.013790847021798785 1.0 2798 +23256 SCFD1 sec1 family domain containing 1 Novel U 0.032674966252043254 -0.013923943962416878 1.0 2799 +2289 FKBP5 FKBP prolyl isomerase 5 Novel U 0.032672451699393895 -0.013945623666970516 1.0 2800 +154661 RUNDC3B RUN domain containing 3B Novel U 0.032672400897465405 -0.013946061665674065 1.0 2801 +51668 IFT25 intraflagellar transport 25 Novel U 0.03264240370668074 -0.014204688278171684 1.0 2802 +63915 BLOC1S5 biogenesis of lysosomal organelles complex 1 subunit 5 Novel U 0.03261819512812284 -0.014413407244916182 1.0 2803 +1627 DBN1 drebrin 1 Novel N 0.03260207799102406 -0.014552364275957514 1.0 2804 +10114 HIPK3 homeodomain interacting protein kinase 3 Novel N 0.032546135627787305 -0.01503468223709243 1.0 2805 +26469 PTPN18 protein tyrosine phosphatase non-receptor type 18 Novel U 0.03254390172867961 -0.015053942232571076 1.0 2806 +2690 GHR growth hormone receptor Novel U 0.03253408698204463 -0.015138561978898292 1.0 2807 +3565 IL4 interleukin 4 Novel U 0.03252846444781217 -0.015187037750934142 1.0 2808 +94120 SYTL3 synaptotagmin like 3 Novel U 0.03247023826316652 -0.015689046122373512 1.0 2809 +10346 TRIM22 tripartite motif containing 22 Novel U 0.03245861456466221 -0.015789262098944257 1.0 2810 +54785 BORCS6 BLOC-1 related complex subunit 6 Novel U 0.03244779716833393 -0.015882526384540543 1.0 2811 +6801 STRN striatin Novel N 0.03243555906876223 -0.01598803953936757 1.0 2812 +81555 YIPF5 Yip1 domain family member 5 Novel U 0.03242418402972819 -0.016086111649970217 1.0 2813 +6423 SFRP2 secreted frizzled related protein 2 Novel N 0.03242189846735414 -0.016105817070344256 1.0 2814 +3687 ITGAX integrin subunit alpha X Novel U 0.03240534225828478 -0.01624855964574569 1.0 2815 +3301 DNAJA1 DnaJ heat shock protein family (Hsp40) member A1 Novel U 0.03239464731722257 -0.01634076815945739 1.0 2816 +10964 IFI44L interferon induced protein 44 like Novel N 0.03238664896751372 -0.016409727486536442 1.0 2817 +5141 PDE4A phosphodiesterase 4A Novel N 0.03237481096644405 -0.016511791114339813 1.0 2818 +23677 SH3BP4 SH3 domain binding protein 4 Novel U 0.03236077782884685 -0.016632780538500522 1.0 2819 +11250 GPR45 G protein-coupled receptor 45 Novel U 0.032356420322619976 -0.016670349625635527 1.0 2820 +398 ARHGDIG Rho GDP dissociation inhibitor gamma Novel N 0.032339467619309135 -0.016816510653227538 1.0 2821 +81793 TLR10 toll like receptor 10 Novel U 0.03233244220283537 -0.016877081647259554 1.0 2822 +4240 MFGE8 milk fat globule EGF and factor V/VIII domain containing Novel U 0.03231978743371103 -0.016986187199644853 1.0 2823 +55740 ENAH ENAH actin regulator Novel U 0.03223405436531442 -0.017725351517317477 1.0 2824 +23201 FAM168A family with sequence similarity 168 member A Novel N 0.032189327629355446 -0.01811097176729968 1.0 2825 +7533 YWHAH tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein eta Novel U 0.032179183872613676 -0.018198428138229764 1.0 2826 +10010 TANK TRAF family member associated NFKB activator Novel U 0.03216311084006404 -0.0183370049133257 1.0 2827 +5896 RAG1 recombination activating 1 Novel U 0.03213070816192019 -0.018616370902772905 1.0 2828 +963 CD53 CD53 molecule Novel U 0.03212482222337359 -0.018667117666315045 1.0 2829 +29919 RMC1 regulator of MON1-CCZ1 Novel N 0.03211984143619289 -0.01871006049137365 1.0 2830 +29970 SCHIP1 schwannomin interacting protein 1 Novel U 0.032105529225701895 -0.01883345599674649 1.0 2831 +9075 CLDN2 claudin 2 Novel N 0.03205710215556381 -0.019250979397284436 1.0 2832 +29965 CDIP1 cell death inducing p53 target 1 Novel N 0.03205305175873198 -0.019285900681060876 1.0 2833 +9365 KL klotho Novel U 0.03203266428557472 -0.019461675244682487 1.0 2834 +7345 UCHL1 ubiquitin C-terminal hydrolase L1 Novel U 0.032026000306960276 -0.019519130031938475 1.0 2835 +286749 STON1-GTF2A1L STON1-GTF2A1L readthrough Novel U 0.03202153075978512 -0.019557665101892392 1.0 2836 +135948 OR2F2 olfactory receptor family 2 subfamily F member 2 Novel U 0.03200578270475697 -0.01969344002010371 1.0 2837 +3953 LEPR leptin receptor Novel U 0.03199699630215906 -0.019769193698381465 1.0 2838 +54206 ERRFI1 ERBB receptor feedback inhibitor 1 Novel U 0.03198085802785681 -0.019908332967932107 1.0 2839 +8412 BCAR3 BCAR3 adaptor protein, NSP family member Novel U 0.03197335301440029 -0.01997303890059567 1.0 2840 +390261 OR6M1 olfactory receptor family 6 subfamily M member 1 Novel U 0.031960510602947745 -0.020083762247795584 1.0 2841 +4179 CD46 CD46 molecule Novel U 0.03193600731621309 -0.020295022098384026 1.0 2842 +1262 CNGA4 cyclic nucleotide gated channel subunit alpha 4 Novel U 0.031934475789971176 -0.020308226449642836 1.0 2843 +8323 FZD6 frizzled class receptor 6 Novel U 0.03193301633229921 -0.02032080944771401 1.0 2844 +3479 IGF1 insulin like growth factor 1 Novel U 0.03192446237357738 -0.020394559065921695 1.0 2845 +11337 GABARAP GABA type A receptor-associated protein Novel U 0.03192312272190315 -0.02040610913329035 1.0 2846 +79006 METRN meteorin, glial cell differentiation regulator Novel U 0.03190404862339375 -0.020570560182034993 1.0 2847 +60485 SAV1 salvador family WW domain containing protein 1 Novel U 0.03189328465657961 -0.02066336381468719 1.0 2848 +7476 WNT7A Wnt family member 7A Novel U 0.03186214771929871 -0.020931816973195197 1.0 2849 +83850 ESYT3 extended synaptotagmin 3 Novel U 0.03184762219752449 -0.021057051583269027 1.0 2850 +375743 PTAR1 protein prenyltransferase alpha subunit repeat containing 1 Novel U 0.03182605880195058 -0.021242964590632293 1.0 2851 +9076 CLDN1 claudin 1 Novel U 0.03182470965865386 -0.02125459649186962 1.0 2852 +9097 USP14 ubiquitin specific peptidase 14 Novel U 0.03181476962104737 -0.021340296458667148 1.0 2853 +324 APC APC regulator of WNT signaling pathway Novel U 0.031801327099082725 -0.02145619377532252 1.0 2854 +81027 TUBB1 tubulin beta 1 class VI Novel N 0.03172683884805513 -0.022098408713795634 1.0 2855 +10466 COG5 component of oligomeric golgi complex 5 Novel U 0.03171157439703283 -0.022230014146046733 1.0 2856 +375056 MIA3 MIA SH3 domain ER export factor 3 Novel U 0.03170009275902052 -0.022329005320465837 1.0 2857 +350383 GPR142 G protein-coupled receptor 142 Novel U 0.03167746973889826 -0.022524054086888207 1.0 2858 +7036 TFR2 transferrin receptor 2 Novel U 0.031648575689428714 -0.022773169752061378 1.0 2859 +55793 MINDY1 MINDY lysine 48 deubiquitinase 1 Novel U 0.031639153294304286 -0.022854406763558165 1.0 2860 +51474 LIMA1 LIM domain and actin binding 1 Novel U 0.031616115823913146 -0.023053028793552414 1.0 2861 +51237 MZB1 marginal zone B and B1 cell specific protein Novel U 0.03160007111919665 -0.023191361334727333 1.0 2862 +51537 MTFP1 mitochondrial fission process 1 Novel U 0.03159882125587892 -0.023202137274323492 1.0 2863 +653464 SRGAP2C SLIT-ROBO Rho GTPase activating protein 2C Novel U 0.031592767625487614 -0.023254329825707902 1.0 2864 +3605 IL17A interleukin 17A Novel U 0.03158737483852817 -0.02330082478696124 1.0 2865 +81848 SPRY4 sprouty RTK signaling antagonist 4 Novel N 0.031573914930461626 -0.02341687200127439 1.0 2866 +11113 CIT citron rho-interacting serine/threonine kinase Novel U 0.03157298425081195 -0.02342489603681969 1.0 2867 +79602 ADIPOR2 adiponectin receptor 2 Novel U 0.03155452458272414 -0.02358404965422517 1.0 2868 +343170 OR14K1 olfactory receptor family 14 subfamily K member 1 Novel U 0.031519971439294275 -0.023881956298235963 1.0 2869 +23586 RIGI RNA sensor RIG-I Novel U 0.031519359733697155 -0.023887230236971247 1.0 2870 +10288 LILRB2 leukocyte immunoglobulin like receptor B2 Novel U 0.03151739975685342 -0.023904128558394324 1.0 2871 +5610 EIF2AK2 eukaryotic translation initiation factor 2 alpha kinase 2 Novel U 0.03151159109234907 -0.0239542090887573 1.0 2872 +3433 IFIT2 interferon induced protein with tetratricopeptide repeats 2 Novel U 0.031414377211501844 -0.024792357463108424 1.0 2873 +23046 KIF21B kinesin family member 21B Novel U 0.031381883642295265 -0.025072507087524298 1.0 2874 +4993 OR2C1 olfactory receptor family 2 subfamily C member 1 Novel U 0.03136728805864765 -0.025198345749661233 1.0 2875 +10811 NOXA1 NADPH oxidase activator 1 Novel N 0.03136030199337832 -0.02525857746963344 1.0 2876 +57576 KIF17 kinesin family member 17 Novel U 0.03134044253886804 -0.02542979961783108 1.0 2877 +116449 CLNK cytokine dependent hematopoietic cell linker Novel U 0.03131559252232677 -0.02564404886685956 1.0 2878 +143503 OR51E1 olfactory receptor family 51 subfamily E member 1 Novel U 0.031307811051282546 -0.025711138332365265 1.0 2879 +124056 NOXO1 NADPH oxidase organizer 1 Novel U 0.031299386493505485 -0.025783772295169063 1.0 2880 +8519 IFITM1 interferon induced transmembrane protein 1 Novel N 0.031248987225308545 -0.02621829938471233 1.0 2881 +23760 PITPNB phosphatidylinositol transfer protein beta Novel U 0.03122244495398248 -0.026447138737381415 1.0 2882 +390075 OR52N5 olfactory receptor family 52 subfamily N member 5 Novel U 0.03122165485195193 -0.02645395075565189 1.0 2883 +83637 ZMIZ2 zinc finger MIZ-type containing 2 Novel U 0.031218261297530792 -0.026483208944879197 1.0 2884 +80183 RUBCNL rubicon like autophagy enhancer Novel U 0.031141943636258263 -0.027141196499458696 1.0 2885 +945 CD33 CD33 molecule Novel U 0.03113419206860864 -0.02720802814703394 1.0 2886 +6750 SST somatostatin Novel N 0.031114328183558335 -0.027379288493993806 1.0 2887 +339145 CIBAR2 CBY1 interacting BAR domain containing 2 Novel U 0.031089040302724857 -0.02759731287514852 1.0 2888 +388135 INSYN1 inhibitory synaptic factor 1 Novel U 0.031080926283422666 -0.027667269470115375 1.0 2889 +8938 BAIAP3 BAI1 associated protein 3 Novel U 0.031068323387579144 -0.02777592778692472 1.0 2890 +22844 FRMPD1 FERM and PDZ domain containing 1 Novel U 0.031062065127505537 -0.02782988459289982 1.0 2891 +83481 EPPK1 epiplakin 1 Novel U 0.031059445982791582 -0.027852466058273486 1.0 2892 +90417 KNSTRN kinetochore localized astrin (SPAG5) binding protein Novel U 0.03105159735395588 -0.02792013453773547 1.0 2893 +9149 DYRK1B dual specificity tyrosine phosphorylation regulated kinase 1B Novel U 0.03102901733006433 -0.02811481260379533 1.0 2894 +136 ADORA2B adenosine A2b receptor Novel U 0.031013117779843478 -0.02825189366726468 1.0 2895 +51678 PALS2 protein associated with LIN7 2, MAGUK p55 family member Novel U 0.030974625526870248 -0.028583762110057594 1.0 2896 +3589 IL11 interleukin 11 Novel U 0.03096099527598454 -0.028701277968104736 1.0 2897 +442361 OR2A2 olfactory receptor family 2 subfamily A member 2 Novel U 0.030952404288115996 -0.02877534684030011 1.0 2898 +63904 DUSP21 dual specificity phosphatase 21 Novel N 0.030941437749275897 -0.028869896987058802 1.0 2899 +6476 SI sucrase-isomaltase Novel U 0.030909186716832696 -0.029147955533614454 1.0 2900 +4804 NGFR nerve growth factor receptor Novel U 0.030900060484872337 -0.02922663911681125 1.0 2901 +4925 NUCB2 nucleobindin 2 Novel U 0.03089463443781269 -0.029273420836485035 1.0 2902 +23392 ECPAS Ecm29 proteasome adaptor and scaffold Novel U 0.030887305394170145 -0.029336609611184825 1.0 2903 +650 BMP2 bone morphogenetic protein 2 Novel U 0.03086685971840658 -0.029512885979892618 1.0 2904 +2176 FANCC FA complementation group C Novel U 0.030839307893666373 -0.02975042939360225 1.0 2905 +9218 VAPA VAMP associated protein A Novel U 0.03080179530929375 -0.030073851433084796 1.0 2906 +7275 TUB TUB bipartite transcription factor Novel U 0.03080158542944227 -0.030075660953029836 1.0 2907 +207 AKT1 AKT serine/threonine kinase 1 Novel U 0.030795110434468323 -0.030131486381086488 1.0 2908 +23175 LPIN1 lipin 1 Novel U 0.030786005113689015 -0.030209989674470236 1.0 2909 +3936 LCP1 lymphocyte cytosolic protein 1 Novel U 0.030785057103846977 -0.0302181631256384 1.0 2910 +3491 CCN1 cellular communication network factor 1 Novel U 0.030783484504253705 -0.03023172159878153 1.0 2911 +10316 NMUR1 neuromedin U receptor 1 Novel N 0.03076840615882021 -0.030361722485515493 1.0 2912 +390190 OR5B2 olfactory receptor family 5 subfamily B member 2 Novel U 0.030760868113411503 -0.030426713209577017 1.0 2913 +2034 EPAS1 endothelial PAS domain protein 1 Novel U 0.03074801530670739 -0.030537526181459412 1.0 2914 +103910 MYL12B myosin light chain 12B Novel U 0.030746027953338747 -0.030554660534914613 1.0 2915 +7791 ZYX zyxin Novel U 0.03073574096241141 -0.030643351827223612 1.0 2916 +84747 UNC119B unc-119 lipid binding chaperone B Novel U 0.030735730382468074 -0.030643443044262055 1.0 2917 +23241 PACS2 phosphofurin acidic cluster sorting protein 2 Novel U 0.030698163546277173 -0.030967332826343688 1.0 2918 +80321 CEP70 centrosomal protein 70 Novel U 0.030631307265348684 -0.03154374725077589 1.0 2919 +8312 AXIN1 axin 1 Novel U 0.03059644575565283 -0.031844312534502456 1.0 2920 +1687 GSDME gasdermin E Novel U 0.030525857693644687 -0.03245290123505743 1.0 2921 +10409 BASP1 brain abundant membrane attached signal protein 1 Novel N 0.03047140323016333 -0.03292239097916904 1.0 2922 +90993 CREB3L1 cAMP responsive element binding protein 3 like 1 Novel U 0.030466863774406775 -0.032961528779549366 1.0 2923 +10718 NRG3 neuregulin 3 Novel U 0.03045011864020826 -0.03310590020968323 1.0 2924 +64854 USP46 ubiquitin specific peptidase 46 Novel N 0.03044974327476079 -0.03310913649586833 1.0 2925 +4267 CD99 CD99 molecule (Xg blood group) Novel U 0.03043790943875771 -0.03321116421374028 1.0 2926 +30818 KCNIP3 potassium voltage-gated channel interacting protein 3 Novel N 0.03043192317061215 -0.0332627759884262 1.0 2927 +7322 UBE2D2 ubiquitin conjugating enzyme E2 D2 Novel U 0.030426180873108593 -0.03331228432278855 1.0 2928 +1781 DYNC1I2 dynein cytoplasmic 1 intermediate chain 2 Novel N 0.030344145056932524 -0.03401957206161048 1.0 2929 +10162 LPCAT3 lysophosphatidylcholine acyltransferase 3 Novel U 0.030221964256466387 -0.03507297758760263 1.0 2930 +11183 MAP4K5 mitogen-activated protein kinase kinase kinase kinase 5 Novel N 0.030205443524842536 -0.035215414287309975 1.0 2931 +51195 RAPGEFL1 Rap guanine nucleotide exchange factor like 1 Novel N 0.03020114127401468 -0.0352525069792794 1.0 2932 +26262 TSPAN17 tetraspanin 17 Novel U 0.030171225361420476 -0.035510432836055615 1.0 2933 +3109 HLA-DMB major histocompatibility complex, class II, DM beta Novel U 0.03015864050886647 -0.03561893558913637 1.0 2934 +84432 PROK1 prokineticin 1 Novel U 0.03014568261025051 -0.03573065463136905 1.0 2935 +91624 NEXN nexilin F-actin binding protein Novel N 0.030137575823621005 -0.03580054886844214 1.0 2936 +4436 MSH2 mutS homolog 2 Novel U 0.030136892025814727 -0.035806444364175065 1.0 2937 +2635 GBP3 guanylate binding protein 3 Novel U 0.0301135275460019 -0.03600788576947658 1.0 2938 +3445 IFNA8 interferon alpha 8 Novel U 0.03009314082012177 -0.03618365389030314 1.0 2939 +56479 KCNQ5 potassium voltage-gated channel subfamily Q member 5 Novel N 0.0300911120037448 -0.03620114572514602 1.0 2940 +115361 GBP4 guanylate binding protein 4 Novel U 0.03008030238707492 -0.03629434293690486 1.0 2941 +161742 SPRED1 sprouty related EVH1 domain containing 1 Novel U 0.0300795754920049 -0.03630061000407626 1.0 2942 +643834 PGA3 pepsinogen A3 Novel U 0.030063613723527203 -0.03643822749434367 1.0 2943 +10801 SEPTIN9 septin 9 Novel U 0.030036594033208686 -0.03667118300767746 1.0 2944 +4773 NFATC2 nuclear factor of activated T cells 2 Novel U 0.03001058063313686 -0.036895462594003295 1.0 2945 +390059 OR51M1 olfactory receptor family 51 subfamily M member 1 Novel U 0.030007569161314567 -0.03692142658381897 1.0 2946 +5731 PTGER1 prostaglandin E receptor 1 Novel N 0.02997742459706011 -0.03718132380533924 1.0 2947 +886 CCKAR cholecystokinin A receptor Novel N 0.029912776289056364 -0.037738701761919756 1.0 2948 +80351 TNKS2 tankyrase 2 Novel U 0.029908711326340653 -0.03777374862829602 1.0 2949 +5971 RELB RELB proto-oncogene, NF-kB subunit Novel U 0.029888655114870145 -0.037946667154880376 1.0 2950 +377630 USP17L2 ubiquitin specific peptidase 17 like family member 2 Novel U 0.02988783350113471 -0.03795375085744115 1.0 2951 +130026 ICA1L islet cell autoantigen 1 like Novel U 0.029861342710033316 -0.038182146363344265 1.0 2952 +4644 MYO5A myosin VA Novel U 0.029850952670629052 -0.03827172610813208 1.0 2953 +5729 PTGDR prostaglandin D2 receptor Novel U 0.02984888957677741 -0.038289513472887164 1.0 2954 +89870 TRIM15 tripartite motif containing 15 Novel U 0.029798922326009527 -0.03872031584017164 1.0 2955 +120065 OR5P2 olfactory receptor family 5 subfamily P member 2 Novel U 0.02979723593459236 -0.03873485539164824 1.0 2956 +123 PLIN2 perilipin 2 Novel U 0.0297298483353625 -0.03931585068011627 1.0 2957 +390429 OR4N2 olfactory receptor family 4 subfamily N member 2 Novel U 0.029710187718817203 -0.03948535850814012 1.0 2958 +171558 PTCRA pre T cell antigen receptor alpha Novel U 0.02970660641606717 -0.0395162354060876 1.0 2959 +392376 OR13C2 olfactory receptor family 13 subfamily C member 2 Novel U 0.02967876558053767 -0.03975627058250751 1.0 2960 +152831 KLB klotho beta Novel U 0.029676052032793877 -0.039779665961957054 1.0 2961 +7874 USP7 ubiquitin specific peptidase 7 Novel U 0.02966503789322114 -0.03987462650768686 1.0 2962 +92241 RCSD1 RCSD domain containing 1 Novel U 0.029646117652238284 -0.04003775104385299 1.0 2963 +1815 DRD4 dopamine receptor D4 Novel U 0.029641372811248474 -0.04007865961295346 1.0 2964 +11135 CDC42EP1 CDC42 effector protein 1 Novel U 0.029637827154356446 -0.04010922918320578 1.0 2965 +7098 TLR3 toll like receptor 3 Novel U 0.029632908437200636 -0.040151636859476966 1.0 2966 +115677 NOSTRIN nitric oxide synthase trafficking Novel U 0.029618784027259076 -0.04027341320590009 1.0 2967 +1847 DUSP5 dual specificity phosphatase 5 Novel N 0.029601798739985488 -0.04041985516246199 1.0 2968 +943 TNFRSF8 TNF receptor superfamily member 8 Novel U 0.029574603001127867 -0.040654328512503585 1.0 2969 +23432 GPR161 G protein-coupled receptor 161 Novel U 0.02956360613851261 -0.04074914010158544 1.0 2970 +2258 FGF13 fibroblast growth factor 13 Novel U 0.02953874090336605 -0.040963520560778295 1.0 2971 +11124 FAF1 Fas associated factor 1 Novel U 0.029491417052525115 -0.0413715323416545 1.0 2972 +1939 EIF2D eukaryotic translation initiation factor 2D Novel U 0.029489066085070466 -0.041391801664647204 1.0 2973 +392309 OR13J1 olfactory receptor family 13 subfamily J member 1 Novel U 0.029471046107266804 -0.04154716440678192 1.0 2974 +9781 RNF144A ring finger protein 144A Novel N 0.029439684324168408 -0.04181755611722069 1.0 2975 +92979 MARCHF9 membrane associated ring-CH-type finger 9 Novel U 0.02941841795662924 -0.04200090823963332 1.0 2976 +2054 STX2 syntaxin 2 Novel U 0.02941521652692036 -0.04202850998830041 1.0 2977 +3620 IDO1 indoleamine 2,3-dioxygenase 1 Novel U 0.029403851499066467 -0.042126495785567 1.0 2978 +3696 ITGB8 integrin subunit beta 8 Novel U 0.029398471339905103 -0.04217288187380407 1.0 2979 +54741 LEPROT leptin receptor overlapping transcript Novel U 0.029385660170921795 -0.0422833358579812 1.0 2980 +83891 SNX25 sorting nexin 25 Novel U 0.02938412356961826 -0.04229658396487045 1.0 2981 +54953 ODR4 odr-4 GPCR localization factor homolog Novel U 0.02937359651288987 -0.042387345031157556 1.0 2982 +8021 NUP214 nucleoporin 214 Novel U 0.029354288609625155 -0.04255381187305724 1.0 2983 +63892 THADA THADA armadillo repeat containing Novel N 0.029349335348034425 -0.042596517380890334 1.0 2984 +146722 CD300LF CD300 molecule like family member f Novel U 0.029348949072474758 -0.042599847730728904 1.0 2985 +1525 CXADR CXADR Ig-like cell adhesion molecule Novel U 0.029329139485353553 -0.042770639937536256 1.0 2986 +10537 UBD ubiquitin D Novel U 0.02931456363562094 -0.042896308459888274 1.0 2987 +29881 NPC1L1 NPC1 like intracellular cholesterol transporter 1 Novel U 0.0293098251085441 -0.042937162592360516 1.0 2988 +4854 NOTCH3 notch receptor 3 Novel U 0.029306475554026788 -0.04296604142786237 1.0 2989 +2641 GCG glucagon Novel N 0.029299332173619852 -0.04302762947087913 1.0 2990 +6404 SELPLG selectin P ligand Novel U 0.02928334594091755 -0.04316545788421538 1.0 2991 +6840 SVIL supervillin Novel U 0.02928114184817152 -0.043184460898351894 1.0 2992 +57162 PELI1 pellino E3 ubiquitin protein ligase 1 Novel U 0.029235218178054023 -0.04358040074889346 1.0 2993 +2103 ESRRB estrogen related receptor beta Novel N 0.029227922272754166 -0.043643303814928903 1.0 2994 +3300 DNAJB2 DnaJ heat shock protein family (Hsp40) member B2 Novel U 0.02920372764386037 -0.04385190251193218 1.0 2995 +23640 HSPBP1 HSPA (Hsp70) binding protein 1 Novel U 0.029201430137119868 -0.04387171091298387 1.0 2996 +619207 SCART1 scavenger receptor family member expressed on T cells 1 Novel U 0.029197729900706435 -0.04390361322063382 1.0 2997 +23387 SIK3 SIK family kinase 3 Novel U 0.029195052877027082 -0.043926693700760674 1.0 2998 +152273 FGD5 FYVE, RhoGEF and PH domain containing 5 Novel U 0.029179651926575147 -0.044059475989382986 1.0 2999 +2791 GNG11 G protein subunit gamma 11 Novel N 0.029175317942650467 -0.04409684227441632 1.0 3000 +7827 NPHS2 NPHS2 stomatin family member, podocin Novel U 0.029168432741843057 -0.044156204371819684 1.0 3001 +23646 PLD3 phospholipase D family member 3 Novel N 0.029159180955163434 -0.04423597044943935 1.0 3002 +387733 IFITM5 interferon induced transmembrane protein 5 Novel N 0.02910020623080067 -0.04474443250158328 1.0 3003 +26476 OR10J1 olfactory receptor family 10 subfamily J member 1 Novel N 0.029093570418402156 -0.04480164444833247 1.0 3004 +4360 MRC1 mannose receptor C-type 1 Novel U 0.029067341853476356 -0.04502777912027988 1.0 3005 +7325 UBE2E2 ubiquitin conjugating enzyme E2 E2 Novel U 0.02898487722435591 -0.04573876395327289 1.0 3006 +4286 MITF melanocyte inducing transcription factor Novel U 0.028940797197914155 -0.046118808471417104 1.0 3007 +11138 TBC1D8 TBC1 domain family member 8 Novel U 0.02893673188439911 -0.04615385836227803 1.0 3008 +51127 TRIM17 tripartite motif containing 17 Novel U 0.028935927030613897 -0.04616079756566943 1.0 3009 +6311 ATXN2 ataxin 2 Novel U 0.02893425975853208 -0.046175172276079056 1.0 3010 +8030 CCDC6 coiled-coil domain containing 6 Novel U 0.028911814663570866 -0.046368687026132734 1.0 3011 +4791 NFKB2 nuclear factor kappa B subunit 2 Novel U 0.028910762496945488 -0.04637775848525896 1.0 3012 +7016 TESK1 testis associated actin remodelling kinase 1 Novel U 0.028900849677289623 -0.0464632237872034 1.0 3013 +949 SCARB1 scavenger receptor class B member 1 Novel U 0.02890019069934485 -0.046468905293674825 1.0 3014 +100287327 USP17L17 ubiquitin specific peptidase 17 like family member 17 Novel U 0.028894670952983263 -0.04651649486009759 1.0 3015 +7113 TMPRSS2 transmembrane serine protease 2 Novel U 0.02889024413724338 -0.04655466151267436 1.0 3016 +9802 DAZAP2 DAZ associated protein 2 Novel N 0.028856571200404815 -0.04684497928442573 1.0 3017 +402 ARL2 ADP ribosylation factor like GTPase 2 Novel U 0.028853939619811905 -0.046867667968147626 1.0 3018 +8302 KLRC4 killer cell lectin like receptor C4 Novel U 0.028843609993606755 -0.04695672684879356 1.0 3019 +84668 HYCC1 hyccin PI4KA lipid kinase complex subunit 1 Novel U 0.028841792640911464 -0.046972395508391405 1.0 3020 +256148 OR4S1 olfactory receptor family 4 subfamily S member 1 Novel U 0.028838851685305773 -0.04699775152893566 1.0 3021 +81567 TXNDC5 thioredoxin domain containing 5 Novel N 0.02883870691658457 -0.04699899968061189 1.0 3022 +894 CCND2 cyclin D2 Novel U 0.028837223475800033 -0.04701178945375098 1.0 3023 +23345 SYNE1 spectrin repeat containing nuclear envelope protein 1 Novel U 0.028825005316607664 -0.04711713068872071 1.0 3024 +57085 AGTRAP angiotensin II receptor associated protein Novel U 0.02881378915094804 -0.047213833041637156 1.0 3025 +23643 LY96 lymphocyte antigen 96 Novel U 0.02879086844824846 -0.04741144833627631 1.0 3026 +124460 SNX20 sorting nexin 20 Novel U 0.028787365548510097 -0.04744164926741532 1.0 3027 +56253 CRTAM cytotoxic and regulatory T cell molecule Novel U 0.028777530267121144 -0.04752644605811635 1.0 3028 +3043 HBB hemoglobin subunit beta Novel U 0.028761295467676688 -0.04766641753794721 1.0 3029 +11318 GPR182 G protein-coupled receptor 182 Novel N 0.028761174350205004 -0.04766746177577737 1.0 3030 +137964 GPAT4 glycerol-3-phosphate acyltransferase 4 Novel U 0.02873561172573052 -0.04788785491264955 1.0 3031 +2887 GRB10 growth factor receptor bound protein 10 Novel U 0.028729339525845953 -0.047941931903415044 1.0 3032 +9053 MAP7 microtubule associated protein 7 Novel U 0.028656039815131373 -0.04857389961049979 1.0 3033 +80346 REEP4 receptor accessory protein 4 Novel U 0.02859992252710935 -0.049057725719680326 1.0 3034 +10410 IFITM3 interferon induced transmembrane protein 3 Novel N 0.028583709707360017 -0.04919750769729631 1.0 3035 +148022 TICAM1 TIR domain containing adaptor molecule 1 Novel U 0.02858131587528905 -0.04921814658591248 1.0 3036 +10124 ARL4A ADP ribosylation factor like GTPase 4A Novel U 0.028572297712211387 -0.04929589843222601 1.0 3037 +50943 FOXP3 forkhead box P3 Novel U 0.028566154545662133 -0.04934886293700406 1.0 3038 +83394 PITPNM3 PITPNM family member 3 Novel U 0.028554339035455813 -0.04945073265545629 1.0 3039 +127062 OR2M3 olfactory receptor family 2 subfamily M member 3 Novel U 0.028524468829423548 -0.04970826444422235 1.0 3040 +100130086 HSFX2 heat shock transcription factor family, X-linked 2 Novel U 0.028523809160880084 -0.04971395190482464 1.0 3041 +523 ATP6V1A ATPase H+ transporting V1 subunit A Novel U 0.028506815070091333 -0.04986046976260414 1.0 3042 +83550 GPR101 G protein-coupled receptor 101 Novel U 0.02849854605505672 -0.049931762683412824 1.0 3043 +2625 GATA3 GATA binding protein 3 Novel U 0.028496482572163705 -0.04994955340236374 1.0 3044 +84557 MAP1LC3A microtubule associated protein 1 light chain 3 alpha Novel U 0.028459831770002542 -0.05026554541895979 1.0 3045 +353514 LILRA5 leukocyte immunoglobulin like receptor A5 Novel U 0.02844722885856946 -0.05037420387017757 1.0 3046 +55326 AGPAT5 1-acylglycerol-3-phosphate O-acyltransferase 5 Novel U 0.028447191826220283 -0.050374523151775936 1.0 3047 +3659 IRF1 interferon regulatory factor 1 Novel U 0.028428801386000194 -0.050533079907660344 1.0 3048 +5770 PTPN1 protein tyrosine phosphatase non-receptor type 1 Novel U 0.028425806862363893 -0.05055889777539536 1.0 3049 +51363 CHST15 carbohydrate sulfotransferase 15 Novel N 0.028410530694366436 -0.0506906042278258 1.0 3050 +26575 RGS17 regulator of G protein signaling 17 Novel N 0.02840846266029636 -0.050708434185634595 1.0 3051 +7103 TSPAN8 tetraspanin 8 Novel U 0.028346442500114186 -0.051243153054798735 1.0 3052 +6469 SHH sonic hedgehog signaling molecule Novel U 0.02833048831721323 -0.051380705144541475 1.0 3053 +65059 RAPH1 Ras association (RalGDS/AF-6) and pleckstrin homology domains 1 Novel U 0.028318648046198835 -0.051482788343114594 1.0 3054 +25816 TNFAIP8 TNF alpha induced protein 8 Novel N 0.02829979921305119 -0.05164529722274612 1.0 3055 +790 CAD carbamoyl-phosphate synthetase 2, aspartate transcarbamylase, and dihydroorotase Novel N 0.028293273915524494 -0.05170155634404127 1.0 3056 +81469 OR2G3 olfactory receptor family 2 subfamily G member 3 Novel U 0.02829264476195499 -0.05170698071386274 1.0 3057 +388581 C1QTNF12 C1q and TNF related 12 Novel U 0.0282908071644085 -0.05172282391838129 1.0 3058 +58476 TP53INP2 tumor protein p53 inducible nuclear protein 2 Novel U 0.02826749640466694 -0.05192380216564396 1.0 3059 +1294 COL7A1 collagen type VII alpha 1 chain Novel U 0.02826505182835364 -0.05194487855561125 1.0 3060 +6388 SDF2 stromal cell derived factor 2 Novel U 0.028258055624269075 -0.0520051976893502 1.0 3061 +390148 OR5W2 olfactory receptor family 5 subfamily W member 2 Novel U 0.02824703139872239 -0.05210024519326534 1.0 3062 +5494 PPM1A protein phosphatase, Mg2+/Mn2+ dependent 1A Novel U 0.028197326528282423 -0.052528785397539884 1.0 3063 +2917 GRM7 glutamate metabotropic receptor 7 Novel N 0.02819641301196914 -0.05253666145604355 1.0 3064 +100529241 HSPE1-MOB4 HSPE1-MOB4 readthrough Novel U 0.028195893783755234 -0.052541138083039715 1.0 3065 +55353 LAPTM4B lysosomal protein transmembrane 4 beta Novel U 0.02819069913109027 -0.05258592479095132 1.0 3066 +26333 OR7A17 olfactory receptor family 7 subfamily A member 17 Novel U 0.028188361325352403 -0.05260608063764384 1.0 3067 +55016 MARCHF1 membrane associated ring-CH-type finger 1 Novel U 0.028127118675799343 -0.053134096047753016 1.0 3068 +5467 PPARD peroxisome proliferator activated receptor delta Novel N 0.0280813178990419 -0.05352897634929756 1.0 3069 +8216 LZTR1 leucine zipper like post translational regulator 1 Novel U 0.028066615560978544 -0.05365573541538534 1.0 3070 +26211 OR2F1 olfactory receptor family 2 subfamily F member 1 Novel U 0.028057149081359898 -0.053737352509920074 1.0 3071 +50488 MINK1 misshapen like kinase 1 Novel U 0.028052981865408243 -0.053773280972450425 1.0 3072 +3834 KIF25 kinesin family member 25 Novel U 0.028045942733057615 -0.053833970220581485 1.0 3073 +320 APBA1 amyloid beta precursor protein binding family A member 1 Novel N 0.028022880279997168 -0.05403280764351639 1.0 3074 +53637 S1PR5 sphingosine-1-phosphate receptor 5 Novel U 0.028022587808177506 -0.054035329246172895 1.0 3075 +255488 RNF144B ring finger protein 144B Novel U 0.028017019618016958 -0.054083336480227 1.0 3076 +50617 ATP6V0A4 ATPase H+ transporting V0 subunit a4 Novel N 0.027994600626494878 -0.05427662617440506 1.0 3077 +842 CASP9 caspase 9 Novel U 0.02799002150086676 -0.05431610599629579 1.0 3078 +10417 SPON2 spondin 2 Novel U 0.027986236087479216 -0.054348742673788426 1.0 3079 +6855 SYP synaptophysin Novel N 0.027968102519206568 -0.054505084758236115 1.0 3080 +2255 FGF10 fibroblast growth factor 10 Novel U 0.02796547250492128 -0.05452775993773233 1.0 3081 +81127 OR4K15 olfactory receptor family 4 subfamily K member 15 Novel U 0.027948700580941475 -0.05467236234117413 1.0 3082 +3298 HSF2 heat shock transcription factor 2 Novel N 0.02793951766619381 -0.05475153462604214 1.0 3083 +567 B2M beta-2-microglobulin Novel U 0.027934960377443935 -0.05479082617704151 1.0 3084 +3299 HSF4 heat shock transcription factor 4 Novel N 0.027906499607220192 -0.05503620624095747 1.0 3085 +10235 RASGRP2 RAS guanyl releasing protein 2 Novel U 0.02785332310033838 -0.0554946778337818 1.0 3086 +7311 UBA52 ubiquitin A-52 residue ribosomal protein fusion product 1 Novel N 0.027853094895143038 -0.0554966453492418 1.0 3087 +119694 OR51F2 olfactory receptor family 51 subfamily F member 2 Novel U 0.027837816399609725 -0.055628371868975145 1.0 3088 +7425 VGF VGF nerve growth factor inducible Novel U 0.027756550514148843 -0.05632902150044375 1.0 3089 +3425 IDUA alpha-L-iduronidase Novel U 0.027716014102838082 -0.05667851405177534 1.0 3090 +7542 ZFPL1 zinc finger protein like 1 Novel U 0.02764951098237787 -0.05725188363456774 1.0 3091 +403282 OR6C65 olfactory receptor family 6 subfamily C member 65 Novel U 0.027646568966735802 -0.0572772487944217 1.0 3092 +59274 TLNRD1 talin rod domain containing 1 Novel U 0.027624601171390928 -0.05746664841303501 1.0 3093 +168400 DDX53 DEAD-box helicase 53 Novel U 0.027618520785678807 -0.05751907164061966 1.0 3094 +57710 KIAA1614 KIAA1614 Novel U 0.027617018574137012 -0.057532023249491915 1.0 3095 +79317 OR4K5 olfactory receptor family 4 subfamily K member 5 Novel U 0.027610669945590704 -0.05758675918482413 1.0 3096 +57099 AVEN apoptosis and caspase activation inhibitor Novel N 0.027595849854460338 -0.05771453348187305 1.0 3097 +51527 GSKIP GSK3B interacting protein Novel U 0.027587029885817366 -0.057790576556334315 1.0 3098 +10379 IRF9 interferon regulatory factor 9 Novel N 0.02756434405789861 -0.057986166832385486 1.0 3099 +283450 HECTD4 HECT domain E3 ubiquitin protein ligase 4 Novel U 0.0275480726175855 -0.05812645421858928 1.0 3100 +399473 SPRED3 sprouty related EVH1 domain containing 3 Novel U 0.0275309643778916 -0.0582739562333477 1.0 3101 +7429 VIL1 villin 1 Novel U 0.027522022338136987 -0.05835105176763144 1.0 3102 +4851 NOTCH1 notch receptor 1 Novel U 0.027511802695110412 -0.058439162406920014 1.0 3103 +11014 KDELR2 KDEL endoplasmic reticulum protein retention receptor 2 Novel N 0.027467806490315636 -0.05881848424043791 1.0 3104 +5756 TWF1 twinfilin actin binding protein 1 Novel U 0.027443354126631972 -0.059029305048041644 1.0 3105 +54518 APBB1IP amyloid beta precursor protein binding family B member 1 interacting protein Novel U 0.027437706252688782 -0.05907799929132017 1.0 3106 +5739 PTGIR prostaglandin I2 receptor Novel N 0.0274142374319097 -0.05928034029254856 1.0 3107 +2888 GRB14 growth factor receptor bound protein 14 Novel U 0.027398567351862007 -0.059415442934305715 1.0 3108 +81399 OR4F16 olfactory receptor family 4 subfamily F member 16 Novel U 0.02738380154458191 -0.059542749212585504 1.0 3109 +7480 WNT10B Wnt family member 10B Novel U 0.027382681284470398 -0.059552407752941385 1.0 3110 +4261 CIITA class II major histocompatibility complex transactivator Novel U 0.027368629732683177 -0.05967355593862156 1.0 3111 +9703 BLTP2 bridge-like lipid transfer protein family member 2 Novel U 0.027335261280689815 -0.05996124853508112 1.0 3112 +26034 IPCEF1 interaction protein for cytohesin exchange factors 1 Novel U 0.027321341484484868 -0.06008126076439239 1.0 3113 +57574 MARCHF4 membrane associated ring-CH-type finger 4 Novel U 0.02729568501136261 -0.06030246303562769 1.0 3114 +5693 PSMB5 proteasome 20S subunit beta 5 Novel N 0.027255482927606604 -0.060649073116944945 1.0 3115 +8692 HYAL2 hyaluronidase 2 Novel U 0.027223122451485324 -0.06092807525344953 1.0 3116 +26531 OR11A1 olfactory receptor family 11 subfamily A member 1 Novel U 0.02715294859991309 -0.06153309275819923 1.0 3117 +57498 KIDINS220 kinase D interacting substrate 220 Novel U 0.027149480198344934 -0.06156299625665657 1.0 3118 +3397 ID1 inhibitor of DNA binding 1 Novel U 0.02714631237869622 -0.061590308229655374 1.0 3119 +4313 MMP2 matrix metallopeptidase 2 Novel U 0.02713938882507733 -0.06165000099327957 1.0 3120 +55254 TMEM39A transmembrane protein 39A Novel U 0.027132776513782268 -0.0617070103206962 1.0 3121 +219968 OR5B21 olfactory receptor family 5 subfamily B member 21 Novel U 0.027125319231582064 -0.06177130472905338 1.0 3122 +252995 FNDC5 fibronectin type III domain containing 5 Novel U 0.027121973996077714 -0.06180014632734528 1.0 3123 +57556 SEMA6A semaphorin 6A Novel U 0.02708936959424476 -0.06208125151679787 1.0 3124 +10728 PTGES3 prostaglandin E synthase 3 Novel U 0.027088074419586335 -0.062092418116927395 1.0 3125 +7099 TLR4 toll like receptor 4 Novel U 0.027081035969008585 -0.06215310148702104 1.0 3126 +27250 PDCD4 programmed cell death 4 Novel U 0.02707461297341685 -0.062208478592294086 1.0 3127 +56961 SHD Src homology 2 domain containing transforming protein D Novel U 0.02706406770534589 -0.06229939667121185 1.0 3128 +2828 GPR4 G protein-coupled receptor 4 Novel U 0.027060911333459173 -0.062326609945104874 1.0 3129 +23312 DMXL2 Dmx like 2 Novel U 0.027026583989930717 -0.06262256981136495 1.0 3130 +2658 GDF2 growth differentiation factor 2 Novel U 0.02701272536116535 -0.06274205467370352 1.0 3131 +23 ABCF1 ATP binding cassette subfamily F member 1 Novel N 0.02700465911464471 -0.06281159938634608 1.0 3132 +160364 CLEC12A C-type lectin domain family 12 member A Novel U 0.027001728879813038 -0.06283686297565276 1.0 3133 +1198 CLK3 CDC like kinase 3 Novel N 0.026995287910300352 -0.06289239504657981 1.0 3134 +25777 SUN2 Sad1 and UNC84 domain containing 2 Novel U 0.026993312008066317 -0.06290943067185165 1.0 3135 +148581 UBE2U ubiquitin conjugating enzyme E2 U Novel U 0.0269467095784955 -0.06331122257898654 1.0 3136 +6744 ITPRID2 ITPR interacting domain containing 2 Novel U 0.026944755930565154 -0.06332806633445237 1.0 3137 +3557 IL1RN interleukin 1 receptor antagonist Novel U 0.02693880331727344 -0.06337938794727256 1.0 3138 +79092 CARD14 caspase recruitment domain family member 14 Novel U 0.02693676992255899 -0.06339691925514217 1.0 3139 +1730 DIAPH2 diaphanous related formin 2 Novel N 0.026915085019683867 -0.06358387986132667 1.0 3140 +284948 SH2D6 SH2 domain containing 6 Novel U 0.026891044200427504 -0.06379115245863667 1.0 3141 +2037 EPB41L2 erythrocyte membrane protein band 4.1 like 2 Novel U 0.026878681680536823 -0.06389773832743396 1.0 3142 +54469 ZFAND6 zinc finger AN1-type containing 6 Novel U 0.026864770965713602 -0.06401767225984704 1.0 3143 +120793 OR56A4 olfactory receptor family 56 subfamily A member 4 Novel U 0.026817802345783417 -0.06442262134836112 1.0 3144 +390063 OR51I1 olfactory receptor family 51 subfamily I member 1 Novel U 0.026815285502101594 -0.06444432080549657 1.0 3145 +154064 RAET1L retinoic acid early transcript 1L Novel U 0.026814136339350748 -0.06445422853557681 1.0 3146 +115825 WDFY2 WD repeat and FYVE domain containing 2 Novel N 0.026807238730627958 -0.06451369761023501 1.0 3147 +25956 SEC31B SEC31 homolog B, COPII coat complex component Novel U 0.026755493507639127 -0.0649598291107013 1.0 3148 +10152 ABI2 abl interactor 2 Novel U 0.026712177441435104 -0.06533328699712435 1.0 3149 +7124 TNF tumor necrosis factor Novel U 0.02668879867468342 -0.06553485158004695 1.0 3150 +54209 TREM2 triggering receptor expressed on myeloid cells 2 Novel U 0.0266704739945766 -0.06569284137232949 1.0 3151 +5108 PCM1 pericentriolar material 1 Novel U 0.026666714545619974 -0.06572525419243289 1.0 3152 +4134 MAP4 microtubule associated protein 4 Novel U 0.026655250985396364 -0.06582408950568197 1.0 3153 +8862 APLN apelin Novel U 0.02665488469612187 -0.06582724753987713 1.0 3154 +6624 FSCN1 fascin actin-bundling protein 1 Novel U 0.02664530930043648 -0.06590980367545708 1.0 3155 +126370 OR1I1 olfactory receptor family 1 subfamily I member 1 Novel U 0.026641167695334603 -0.06594551132906674 1.0 3156 +54899 PXK PX domain containing serine/threonine kinase like Novel U 0.02660389070987981 -0.06626690210667334 1.0 3157 +1910 EDNRB endothelin receptor type B Novel U 0.026601179573717437 -0.0662902766942048 1.0 3158 +7433 VIPR1 vasoactive intestinal peptide receptor 1 Novel N 0.02658655798105355 -0.06641633959813227 1.0 3159 +2889 RAPGEF1 Rap guanine nucleotide exchange factor 1 Novel U 0.0265730920978396 -0.06653243832834048 1.0 3160 +1397 CRIP2 cysteine rich protein 2 Novel U 0.026549339687284148 -0.06673722435396226 1.0 3161 +55333 SYNJ2BP synaptojanin 2 binding protein Novel U 0.026536403975841897 -0.0668487521051631 1.0 3162 +2323 FLT3LG fms related receptor tyrosine kinase 3 ligand Novel N 0.0265347496938599 -0.06686301481890156 1.0 3163 +5094 PCBP2 poly(rC) binding protein 2 Novel U 0.026511591336652415 -0.06706267909808612 1.0 3164 +8877 SPHK1 sphingosine kinase 1 Novel U 0.026434314334577057 -0.06772893779591525 1.0 3165 +55262 TRAPPC14 trafficking protein particle complex subunit 14 Novel N 0.026401397192054116 -0.06801273934003059 1.0 3166 +81309 OR4C15 olfactory receptor family 4 subfamily C member 15 Novel U 0.026379758520620786 -0.06819930135285122 1.0 3167 +948 CD36 CD36 molecule (CD36 blood group) Novel U 0.026332922267410082 -0.06860310921595814 1.0 3168 +55072 RNF31 ring finger protein 31 Novel U 0.026326338039457733 -0.0686598764173755 1.0 3169 +8807 IL18RAP interleukin 18 receptor accessory protein Novel U 0.026304550249413066 -0.06884772408529588 1.0 3170 +4282 MIF macrophage migration inhibitory factor Novel U 0.026293704852692727 -0.06894122978171624 1.0 3171 +390038 OR51D1 olfactory receptor family 51 subfamily D member 1 Novel U 0.02628152642578664 -0.0690462284570549 1.0 3172 +8431 NR0B2 nuclear receptor subfamily 0 group B member 2 Novel U 0.02626949003124499 -0.06915000257274923 1.0 3173 +639 PRDM1 PR/SET domain 1 Novel N 0.02626259021671839 -0.06920949066517383 1.0 3174 +5063 PAK3 p21 (RAC1) activated kinase 3 Novel U 0.026261979720056183 -0.0692147541808417 1.0 3175 +2058 EPRS1 glutamyl-prolyl-tRNA synthetase 1 Novel U 0.026259545723516138 -0.06923573935523693 1.0 3176 +57799 RAB40C RAB40C, member RAS oncogene family Novel U 0.02625124990466691 -0.06930726337034457 1.0 3177 +100130827 SBK3 SH3 domain binding kinase family member 3 Novel U 0.02622096082895179 -0.06956840652551932 1.0 3178 +9489 PGS1 phosphatidylglycerophosphate synthase 1 Novel U 0.026198011546223723 -0.06976626822843068 1.0 3179 +120775 OR2D3 olfactory receptor family 2 subfamily D member 3 Novel U 0.026180917770480514 -0.0699136455394261 1.0 3180 +3439 IFNA1 interferon alpha 1 Novel U 0.02615944941136595 -0.07009873917147784 1.0 3181 +83873 GPR61 G protein-coupled receptor 61 Novel N 0.0261524977113419 -0.07015867460480645 1.0 3182 +2001 ELF5 E74 like ETS transcription factor 5 Novel U 0.02614488910508121 -0.07022427368297202 1.0 3183 +26005 C2CD3 C2 domain containing 3 centriole elongation regulator Novel U 0.02611701400703902 -0.07046460426030648 1.0 3184 +654 BMP6 bone morphogenetic protein 6 Novel U 0.026109367247068343 -0.07053053228810066 1.0 3185 +4772 NFATC1 nuclear factor of activated T cells 1 Novel N 0.026103788527253785 -0.07057863030561404 1.0 3186 +55041 PLEKHB2 pleckstrin homology domain containing B2 Novel U 0.026103430655545382 -0.07058171576612657 1.0 3187 +627 BDNF brain derived neurotrophic factor Novel U 0.026102902529744603 -0.07058626910539785 1.0 3188 +22795 NID2 nidogen 2 Novel N 0.02608770643694378 -0.07071728517395205 1.0 3189 +3446 IFNA10 interferon alpha 10 Novel U 0.026075260583561875 -0.07082458951864587 1.0 3190 +6754 SSTR4 somatostatin receptor 4 Novel N 0.026057410355868234 -0.07097848872720369 1.0 3191 +8739 HRK harakiri, BCL2 interacting protein Novel U 0.026021651171125162 -0.07128679349087862 1.0 3192 +219874 OR6T1 olfactory receptor family 6 subfamily T member 1 Novel U 0.026019139911947677 -0.07130844480012417 1.0 3193 +3257 HPS1 HPS1 biogenesis of lysosomal organelles complex 3 subunit 1 Novel U 0.02601399274442743 -0.07135282210562839 1.0 3194 +55612 FERMT1 FERM domain containing kindlin 1 Novel U 0.026009283572249155 -0.07139342314913537 1.0 3195 +309 ANXA6 annexin A6 Novel N 0.02599793076558438 -0.0714913035790439 1.0 3196 +5689 PSMB1 proteasome 20S subunit beta 1 Novel N 0.02597777027287916 -0.071665121186568 1.0 3197 +51228 GLTP glycolipid transfer protein Novel N 0.025973644174471955 -0.07170069514619468 1.0 3198 +4756 NEO1 neogenin 1 Novel N 0.02596429124562539 -0.07178133324067103 1.0 3199 +9320 TRIP12 thyroid hormone receptor interactor 12 Novel U 0.02590998810794064 -0.07224951830000594 1.0 3200 +27181 SIGLEC8 sialic acid binding Ig like lectin 8 Novel N 0.02588645260175764 -0.0724524342424094 1.0 3201 +1634 DCN decorin Novel U 0.025882896203648465 -0.0724830964201537 1.0 3202 +415117 STX19 syntaxin 19 Novel U 0.025878131375829044 -0.07252417730959157 1.0 3203 +100528064 NEDD8-MDP1 NEDD8-MDP1 readthrough Novel U 0.025865320962696677 -0.07263462477705286 1.0 3204 +140885 SIRPA signal regulatory protein alpha Novel U 0.025860583564347447 -0.07267546917798054 1.0 3205 +1903 S1PR3 sphingosine-1-phosphate receptor 3 Novel N 0.025856275537961274 -0.07271261166504889 1.0 3206 +59350 RXFP1 relaxin family peptide receptor 1 Novel U 0.02582181896521563 -0.0730096857061301 1.0 3207 +259 AMBP alpha-1-microglobulin/bikunin precursor Novel N 0.02581911862037913 -0.07303296725414749 1.0 3208 +5910 RAP1GDS1 Rap1 GTPase-GDP dissociation stimulator 1 Novel N 0.025815110494794423 -0.07306752408814834 1.0 3209 +29964 PRICKLE4 prickle planar cell polarity protein 4 Novel U 0.02579616225545892 -0.07323089001755534 1.0 3210 +3363 HTR7 5-hydroxytryptamine receptor 7 Novel N 0.02578739747744292 -0.07330645725529585 1.0 3211 +25827 FBXL2 F-box and leucine rich repeat protein 2 Novel U 0.025746304256212625 -0.0736607504516054 1.0 3212 +4856 CCN3 cellular communication network factor 3 Novel U 0.025735597860990587 -0.07375305771958306 1.0 3213 +100137049 PLA2G4B phospholipase A2 group IVB Novel U 0.02572270113205754 -0.07386424937550169 1.0 3214 +2665 GDI2 GDP dissociation inhibitor 2 Novel U 0.02572136644844804 -0.07387575660973435 1.0 3215 +10454 TAB1 TGF-beta activated kinase 1 (MAP3K7) binding protein 1 Novel U 0.02571626183405252 -0.07391976703520044 1.0 3216 +26018 LRIG1 leucine rich repeats and immunoglobulin like domains 1 Novel U 0.0256647749028945 -0.07436367162242948 1.0 3217 +4542 MYO1F myosin IF Novel U 0.02566121938444262 -0.07439432621603739 1.0 3218 +57572 DOCK6 dedicator of cytokinesis 6 Novel U 0.02564799521946226 -0.07450834092549906 1.0 3219 +54790 TET2 tet methylcytosine dioxygenase 2 Novel U 0.02564476023749304 -0.074536231951502 1.0 3220 +2209 FCGR1A Fc gamma receptor Ia Novel U 0.02562464269849467 -0.0747096792252913 1.0 3221 +8881 CDC16 cell division cycle 16 Novel U 0.025616903508627848 -0.07477640415540561 1.0 3222 +120066 OR5P3 olfactory receptor family 5 subfamily P member 3 Novel U 0.025597418886168545 -0.07494439461619973 1.0 3223 +91833 WDR20 WD repeat domain 20 Novel U 0.025596063464062083 -0.074956080651416 1.0 3224 +9124 PDLIM1 PDZ and LIM domain 1 Novel N 0.025519526288925214 -0.07561596078745547 1.0 3225 +343173 OR2T3 olfactory receptor family 2 subfamily T member 3 Novel U 0.025473889416092042 -0.0760094279594502 1.0 3226 +23232 TBC1D12 TBC1 domain family member 12 Novel U 0.02545981768898016 -0.0761307500906145 1.0 3227 +128272 ARHGEF19 Rho guanine nucleotide exchange factor 19 Novel U 0.02545920111640867 -0.07613606599091555 1.0 3228 +6856 SYPL1 synaptophysin like 1 Novel N 0.02545544937645253 -0.07616841234637244 1.0 3229 +23109 DDN dendrin Novel U 0.02543849955179349 -0.07631454855510829 1.0 3230 +5357 PLS1 plastin 1 Novel N 0.025418133649682605 -0.07649013713975965 1.0 3231 +157922 CAMSAP1 calmodulin regulated spectrin associated protein 1 Novel U 0.02540920714729711 -0.0765670987155947 1.0 3232 +353376 TICAM2 TIR domain containing adaptor molecule 2 Novel U 0.0253927855025037 -0.07670868111892865 1.0 3233 +11159 RABL2A RAB, member of RAS oncogene family like 2A Novel U 0.025391590865245086 -0.07671898091631889 1.0 3234 +55698 RADIL Rap associating with DIL domain Novel N 0.025377283538030124 -0.07684233431957799 1.0 3235 +7265 TTC1 tetratricopeptide repeat domain 1 Novel U 0.025372049463823206 -0.076887460907978 1.0 3236 +64926 RASAL3 RAS protein activator like 3 Novel U 0.02536841002907462 -0.07691883900225324 1.0 3237 +2904 GRIN2B glutamate ionotropic receptor NMDA type subunit 2B Novel N 0.02536020886745789 -0.07698954691162736 1.0 3238 +84895 MIGA2 mitoguardin 2 Novel U 0.025335766886472585 -0.07720027820277854 1.0 3239 +9262 STK17B serine/threonine kinase 17b Novel N 0.025332416229510237 -0.07722916654322463 1.0 3240 +8974 P4HA2 prolyl 4-hydroxylase subunit alpha 2 Novel U 0.025290137510789595 -0.07759368073663538 1.0 3241 +57610 RANBP10 RAN binding protein 10 Novel U 0.025244590411613897 -0.07798637390758813 1.0 3242 +728419 USP17L30 ubiquitin specific peptidase 17 like family member 30 Novel U 0.025235778103049496 -0.0780623509391927 1.0 3243 +6344 SCTR secretin receptor Novel N 0.02522832612244565 -0.07812659963880614 1.0 3244 +134860 TAAR9 trace amine associated receptor 9 Novel U 0.025218310738815492 -0.07821294921599575 1.0 3245 +1455 CSNK1G2 casein kinase 1 gamma 2 Novel N 0.02520222445526149 -0.07835164023720213 1.0 3246 +23529 CLCF1 cardiotrophin like cytokine factor 1 Novel U 0.025171456300191603 -0.07861691386817811 1.0 3247 +125972 CALR3 calreticulin 3 Novel U 0.025152459968114972 -0.07878069443850308 1.0 3248 +286362 OR13C9 olfactory receptor family 13 subfamily C member 9 Novel U 0.025147006982336007 -0.07882770841558297 1.0 3249 +4330 MN1 MN1 proto-oncogene, transcriptional regulator Novel U 0.02514558301486784 -0.07883998542796199 1.0 3250 +11230 PRAF2 PRA1 domain family member 2 Novel U 0.025123939495678028 -0.07902658923665763 1.0 3251 +10477 UBE2E3 ubiquitin conjugating enzyme E2 E3 Novel U 0.0251048677259761 -0.0791910202071359 1.0 3252 +4159 MC3R melanocortin 3 receptor Novel N 0.02510418780134786 -0.07919688230951137 1.0 3253 +401827 MSLNL mesothelin like Novel U 0.025092432467779393 -0.07929823320338063 1.0 3254 +9033 PKD2L1 polycystin 2 like 1, transient receptor potential cation channel Novel U 0.025073094889826373 -0.07946495589137496 1.0 3255 +4215 MAP3K3 mitogen-activated protein kinase kinase kinase 3 Novel U 0.025063177141815298 -0.07955046368409203 1.0 3256 +914 CD2 CD2 molecule Novel U 0.025050107278379852 -0.07966314805278446 1.0 3257 +79666 PLEKHF2 pleckstrin homology and FYVE domain containing 2 Novel U 0.02504917797730118 -0.07967116020271185 1.0 3258 +3895 KTN1 kinectin 1 Novel U 0.025043412810350503 -0.0797208657104589 1.0 3259 +969 CD69 CD69 molecule Novel U 0.025003148339232513 -0.08006801367654706 1.0 3260 +2697 GJA1 gap junction protein alpha 1 Novel U 0.024991107299597387 -0.08017182784081787 1.0 3261 +78990 OTUB2 OTU deubiquitinase, ubiquitin aldehyde binding 2 Novel N 0.024986719163383877 -0.08020966101033783 1.0 3262 +653073 GOLGA8J golgin A8 family member J Novel U 0.024983802043758902 -0.08023481152434006 1.0 3263 +5450 POU2AF1 POU class 2 homeobox associating factor 1 Novel U 0.024981720676352247 -0.0802527564381025 1.0 3264 +4140 MARK3 microtubule affinity regulating kinase 3 Novel U 0.024980583863922632 -0.08026255768748705 1.0 3265 +403274 OR5H15 olfactory receptor family 5 subfamily H member 15 Novel U 0.024976595407327946 -0.08029694494146634 1.0 3266 +57091 CASS4 Cas scaffold protein family member 4 Novel U 0.024975861361084734 -0.08030327366386777 1.0 3267 +3662 IRF4 interferon regulatory factor 4 Novel U 0.024958892484374825 -0.08044957413356432 1.0 3268 +2219 FCN1 ficolin 1 Novel U 0.024951849322702727 -0.08051029812127383 1.0 3269 +25791 NGEF neuronal guanine nucleotide exchange factor Novel U 0.024938538922799326 -0.08062505632189058 1.0 3270 +9960 USP3 ubiquitin specific peptidase 3 Novel N 0.024920542629914277 -0.08078021485989459 1.0 3271 +53831 GPR84 G protein-coupled receptor 84 Novel U 0.024909623449716065 -0.08087435669491463 1.0 3272 +122509 IFI27L1 interferon alpha inducible protein 27 like 1 Novel N 0.024902755131575836 -0.08093357323512052 1.0 3273 +24141 LAMP5 lysosomal associated membrane protein family member 5 Novel U 0.024852426742992494 -0.0813674892222945 1.0 3274 +90990 KIFC2 kinesin family member C2 Novel U 0.024830789729876054 -0.08155403693761365 1.0 3275 +10903 MTMR11 myotubularin related protein 11 Novel U 0.024829661105351116 -0.08156376759338611 1.0 3276 +6310 ATXN1 ataxin 1 Novel U 0.024827004944589413 -0.08158666819981222 1.0 3277 +90060 CCDC120 coiled-coil domain containing 120 Novel N 0.024825466951620592 -0.08159992830521431 1.0 3278 +53840 TRIM34 tripartite motif containing 34 Novel U 0.02479382286445825 -0.08187275395502683 1.0 3279 +9966 TNFSF15 TNF superfamily member 15 Novel U 0.02477153170897372 -0.08206494148595289 1.0 3280 +101929989 LITAFD LITAF domain containing Novel U 0.02476993109591402 -0.0820787414826433 1.0 3281 +221914 GPC2 glypican 2 Novel U 0.02476885456183287 -0.08208802303052705 1.0 3282 +148281 SYT6 synaptotagmin 6 Novel U 0.024764847063090175 -0.08212257446008762 1.0 3283 +442185 OR2J1 olfactory receptor family 2 subfamily J member 1 Novel U 0.02476002856738881 -0.08216411805760396 1.0 3284 +22843 PPM1E protein phosphatase, Mg2+/Mn2+ dependent 1E Novel U 0.024750032961120657 -0.08225029712042187 1.0 3285 +50506 DUOX2 dual oxidase 2 Novel U 0.02474767012847177 -0.08227066874149355 1.0 3286 +114882 OSBPL8 oxysterol binding protein like 8 Novel U 0.024740661582746824 -0.08233109428108455 1.0 3287 +26339 OR5K1 olfactory receptor family 5 subfamily K member 1 Novel U 0.024715728783051182 -0.08254605726117342 1.0 3288 +8859 STK19 serine/threonine kinase 19 Novel U 0.024711573332889977 -0.08258188428265388 1.0 3289 +79591 ARMH3 armadillo like helical domain containing 3 Novel U 0.0247068885075461 -0.08262227541519451 1.0 3290 +2532 ACKR1 atypical chemokine receptor 1 (Duffy blood group) Novel U 0.024706571240897923 -0.08262501079128573 1.0 3291 +2781 GNAZ G protein subunit alpha z Novel N 0.02467568675649735 -0.08289128737820332 1.0 3292 +283297 OR10A4 olfactory receptor family 10 subfamily A member 4 Novel U 0.02465882070463375 -0.08303670132349592 1.0 3293 +57608 JCAD junctional cadherin 5 associated Novel U 0.024657315387646 -0.08304967970657422 1.0 3294 +51306 FAM13B family with sequence similarity 13 member B Novel U 0.0246474547215137 -0.08313469535677541 1.0 3295 +718 C3 complement C3 Novel U 0.024646404257344292 -0.08314375213784649 1.0 3296 +343637 RSPO4 R-spondin 4 Novel U 0.024626114929593396 -0.08331868052176539 1.0 3297 +10613 ERLIN1 ER lipid raft associated 1 Novel U 0.024626018639406066 -0.08331951070633649 1.0 3298 +3460 IFNGR2 interferon gamma receptor 2 Novel U 0.02459727932304424 -0.08356729230993774 1.0 3299 +3831 KLC1 kinesin light chain 1 Novel U 0.024593353206728175 -0.08360114208508451 1.0 3300 +3655 ITGA6 integrin subunit alpha 6 Novel U 0.024592457550156127 -0.08360886416235677 1.0 3301 +29951 PDZRN4 PDZ domain containing ring finger 4 Novel U 0.02457862378421788 -0.08372813466499741 1.0 3302 +2862 MLNR motilin receptor Novel U 0.024574678394811075 -0.08376215060684312 1.0 3303 +2620 GAS2 growth arrest specific 2 Novel U 0.024573716122356225 -0.08377044702590064 1.0 3304 +28962 OSTM1 osteoclastogenesis associated transmembrane protein 1 Novel U 0.024545003469461632 -0.08401799874523515 1.0 3305 +7260 EIPR1 EARP complex and GARP complex interacting protein 1 Novel U 0.024540354623892483 -0.08405807967115266 1.0 3306 +5243 ABCB1 ATP binding cassette subfamily B member 1 Novel N 0.024534354710873004 -0.08410980908777195 1.0 3307 +64084 CLSTN2 calsyntenin 2 Novel U 0.02453429578949408 -0.08411031708989604 1.0 3308 +7456 WIPF1 WAS/WASL interacting protein family member 1 Novel U 0.024533351219412528 -0.0841184608845004 1.0 3309 +2358 FPR2 formyl peptide receptor 2 Novel U 0.02451090295287101 -0.08431200297895029 1.0 3310 +1508 CTSB cathepsin B Novel N 0.024500050772764303 -0.08440556715965505 1.0 3311 +132112 RTP1 receptor transporter protein 1 Novel U 0.024487849817665244 -0.08451076006618945 1.0 3312 +84993 UBL7 ubiquitin like 7 Novel U 0.02448679026678052 -0.08451989519014329 1.0 3313 +9777 TM9SF4 transmembrane 9 superfamily member 4 Novel U 0.024470524331037365 -0.08466013511762699 1.0 3314 +5395 PMS2 PMS1 homolog 2, mismatch repair system component Novel U 0.02445285145776216 -0.08481250523058448 1.0 3315 +1955 MEGF9 multiple EGF like domains 9 Novel U 0.02445280092598638 -0.08481294090011389 1.0 3316 +26146 TRAF3IP1 TRAF3 interacting protein 1 Novel U 0.02444342407378316 -0.08489378525446091 1.0 3317 +58538 MPP4 MAGUK p55 scaffold protein 4 Novel U 0.024426145340584147 -0.08504275721212153 1.0 3318 +88455 ANKRD13A ankyrin repeat domain 13A Novel U 0.02440895638379699 -0.08519095514499274 1.0 3319 +23596 OPN3 opsin 3 Novel U 0.02440342459250089 -0.08523864855916025 1.0 3320 +9493 KIF23 kinesin family member 23 Novel U 0.024399487130470306 -0.0852725961535906 1.0 3321 +4319 MMP10 matrix metallopeptidase 10 Novel U 0.02439449260725965 -0.0853156574065021 1.0 3322 +3586 IL10 interleukin 10 Novel U 0.024389521763536152 -0.08535851450211121 1.0 3323 +23526 ARHGAP45 Rho GTPase activating protein 45 Novel U 0.024377980112882783 -0.08545802308718305 1.0 3324 +3875 KRT18 keratin 18 Novel U 0.024375182378951168 -0.08548214429421865 1.0 3325 +200734 SPRED2 sprouty related EVH1 domain containing 2 Novel U 0.024359240349967757 -0.08561959159659827 1.0 3326 +4253 MIA2 MIA SH3 domain ER export factor 2 Novel U 0.024351796429808763 -0.08568377080151926 1.0 3327 +54894 RNF43 ring finger protein 43 Novel U 0.024338846082462468 -0.08579542473901237 1.0 3328 +9066 SYT7 synaptotagmin 7 Novel U 0.024308520270036976 -0.08605688462687806 1.0 3329 +6196 RPS6KA2 ribosomal protein S6 kinase A2 Novel N 0.02430728594715094 -0.08606752658162094 1.0 3330 +53905 DUOX1 dual oxidase 1 Novel U 0.024271217145027908 -0.08637850077173397 1.0 3331 +11216 AKAP10 A-kinase anchoring protein 10 Novel N 0.024251336123506183 -0.0865499088641139 1.0 3332 +85015 USP45 ubiquitin specific peptidase 45 Novel N 0.024240604311656744 -0.08664243526648625 1.0 3333 +79585 CORO7 coronin 7 Novel U 0.024195217710883076 -0.08703374466926131 1.0 3334 +1415 CRYBB2 crystallin beta B2 Novel N 0.02419373960153089 -0.08704648847641983 1.0 3335 +138805 OR13F1 olfactory receptor family 13 subfamily F member 1 Novel U 0.024175565567359114 -0.08720317944548435 1.0 3336 +29979 UBQLN1 ubiquilin 1 Novel U 0.02417435977481204 -0.08721357542036291 1.0 3337 +51248 PDZD11 PDZ domain containing 11 Novel N 0.024157081859494493 -0.08736254032649947 1.0 3338 +4627 MYH9 myosin heavy chain 9 Novel U 0.024154445478695313 -0.08738527039613302 1.0 3339 +5743 PTGS2 prostaglandin-endoperoxide synthase 2 Novel N 0.024154020348898943 -0.08738893573532748 1.0 3340 +653145 ANXA8 annexin A8 Novel U 0.024127396545476357 -0.08761847803281843 1.0 3341 +57584 ARHGAP21 Rho GTPase activating protein 21 Novel U 0.02411893972080116 -0.08769139019095794 1.0 3342 +5563 PRKAA2 protein kinase AMP-activated catalytic subunit alpha 2 Novel U 0.02410479474477032 -0.0878133438519183 1.0 3343 +22806 IKZF3 IKAROS family zinc finger 3 Novel N 0.024079377081746258 -0.0880324871754618 1.0 3344 +3357 HTR2B 5-hydroxytryptamine receptor 2B Novel U 0.024074038027247453 -0.08807851887185891 1.0 3345 +79346 OR4C5 olfactory receptor family 4 subfamily C member 5 Novel U 0.02407046412579161 -0.08810933195810958 1.0 3346 +1268 CNR1 cannabinoid receptor 1 Novel N 0.02405470802338189 -0.08824517625838567 1.0 3347 +83551 TAAR8 trace amine associated receptor 8 Novel U 0.024044569859883947 -0.08833258440607665 1.0 3348 +8572 PDLIM4 PDZ and LIM domain 4 Novel U 0.024043467790243505 -0.08834208611374955 1.0 3349 +56656 OR2S2 olfactory receptor family 2 subfamily S member 2 Novel U 0.024006677436740006 -0.08865928129937556 1.0 3350 +64135 IFIH1 interferon induced with helicase C domain 1 Novel U 0.024005188948069894 -0.08867211459384156 1.0 3351 +10203 CALCRL calcitonin receptor like receptor Novel U 0.023998219826268312 -0.08873220023241234 1.0 3352 +90678 LRSAM1 leucine rich repeat and sterile alpha motif containing 1 Novel U 0.02399370593193857 -0.08877111764998168 1.0 3353 +23325 WASHC4 WASH complex subunit 4 Novel U 0.02397462535794688 -0.08893562452835589 1.0 3354 +4790 NFKB1 nuclear factor kappa B subunit 1 Novel U 0.023961588128231785 -0.08904802753908356 1.0 3355 +4792 NFKBIA NFKB inhibitor alpha Novel U 0.02394597274679563 -0.08918265858612665 1.0 3356 +11133 KPTN kaptin, actin binding protein Novel U 0.02393540624751702 -0.08927375971402904 1.0 3357 +81558 FAM117A family with sequence similarity 117 member A Novel U 0.023934983243126717 -0.08927740672862187 1.0 3358 +79004 CUEDC2 CUE domain containing 2 Novel U 0.02392870457779439 -0.08933153946250227 1.0 3359 +9209 LRRFIP2 LRR binding FLII interacting protein 2 Novel U 0.02391835961835244 -0.08942073054163042 1.0 3360 +146223 CMTM4 CKLF like MARVEL transmembrane domain containing 4 Novel U 0.023903909396264408 -0.08954531594081976 1.0 3361 +5020 OXT oxytocin/neurophysin I prepropeptide Novel N 0.02389983608869666 -0.08958043475396031 1.0 3362 +5777 PTPN6 protein tyrosine phosphatase non-receptor type 6 Novel U 0.02389549128211448 -0.08961789434863945 1.0 3363 +27032 ATP2C1 ATPase secretory pathway Ca2+ transporting 1 Novel U 0.023887734810960966 -0.08968476827272685 1.0 3364 +8439 NSMAF neutral sphingomyelinase activation associated factor Novel N 0.02388378615844021 -0.08971881234814393 1.0 3365 +124930 ANKRD13B ankyrin repeat domain 13B Novel U 0.023877631128303278 -0.0897718791371497 1.0 3366 +976 ADGRE5 adhesion G protein-coupled receptor E5 Novel N 0.02380593802477551 -0.09038999516801174 1.0 3367 +5368 PNOC prepronociceptin Novel N 0.023774536463574435 -0.09066072983309656 1.0 3368 +101 ADAM8 ADAM metallopeptidase domain 8 Novel U 0.023768562024348152 -0.09071223962245512 1.0 3369 +338 APOB apolipoprotein B Novel U 0.02376474062943326 -0.09074518652168141 1.0 3370 +2200 FBN1 fibrillin 1 Novel U 0.023730062509764525 -0.09104417067263389 1.0 3371 +79363 CPLANE2 ciliogenesis and planar polarity effector complex subunit 2 Novel U 0.023725939556489294 -0.09107971751589376 1.0 3372 +6097 RORC RAR related orphan receptor C Novel U 0.023717957404841786 -0.09114853718823764 1.0 3373 +4088 SMAD3 SMAD family member 3 Novel U 0.023705332351041806 -0.09125738654417662 1.0 3374 +27121 DKK4 dickkopf WNT signaling pathway inhibitor 4 Novel U 0.023673430284534145 -0.09153243641307195 1.0 3375 +387357 THEMIS thymocyte selection associated Novel U 0.02366507668084112 -0.09160445863144513 1.0 3376 +57142 RTN4 reticulon 4 Novel U 0.023650674865423896 -0.09172862668311071 1.0 3377 +2487 FRZB frizzled related protein Novel U 0.023636013658351655 -0.09185503113036177 1.0 3378 +441670 OR4M1 olfactory receptor family 4 subfamily M member 1 Novel U 0.02363127671842557 -0.0918958715789052 1.0 3379 +3663 IRF5 interferon regulatory factor 5 Novel U 0.023616891486036372 -0.09201989665677053 1.0 3380 +10695 CNPY3 canopy FGF signaling regulator 3 Novel N 0.023594454846206123 -0.0922133385092687 1.0 3381 +4855 NOTCH4 notch receptor 4 Novel U 0.02359274478232077 -0.09222808215753225 1.0 3382 +11070 TMEM115 transmembrane protein 115 Novel N 0.02359262923016063 -0.0922290784129469 1.0 3383 +9855 FARP2 FERM, ARH/RhoGEF and pleckstrin domain protein 2 Novel N 0.0235823329723468 -0.09231784960151948 1.0 3384 +3441 IFNA4 interferon alpha 4 Novel N 0.02351851320201346 -0.09286808415948773 1.0 3385 +121512 FGD4 FYVE, RhoGEF and PH domain containing 4 Novel U 0.023493607913625165 -0.09308280994549148 1.0 3386 +648 BMI1 BMI1 proto-oncogene, polycomb ring finger Novel U 0.023482139414750816 -0.09318168783827808 1.0 3387 +5104 SERPINA5 serpin family A member 5 Novel N 0.023473181676099082 -0.09325891872365558 1.0 3388 +9166 EBAG9 estrogen receptor binding site associated antigen 9 Novel U 0.023469184543266054 -0.0932933807815106 1.0 3389 +60312 AFAP1 actin filament associated protein 1 Novel U 0.023467552637894122 -0.09330745057095485 1.0 3390 +441549 CDNF cerebral dopamine neurotrophic factor Novel U 0.023461873015710802 -0.09335641853785825 1.0 3391 +653437 AQP12B aquaporin 12B Novel U 0.023458947295537533 -0.09338164320315977 1.0 3392 +9020 MAP3K14 mitogen-activated protein kinase kinase kinase 14 Novel N 0.023406622753042814 -0.09383276941937918 1.0 3393 +157769 FAM91A1 family with sequence similarity 91 member A1 Novel U 0.023399780545089614 -0.09389176084553116 1.0 3394 +4012 LNPEP leucyl and cystinyl aminopeptidase Novel U 0.023395831349007454 -0.09392580960736856 1.0 3395 +9473 THEMIS2 thymocyte selection associated family member 2 Novel N 0.023386316186101447 -0.09400784643433042 1.0 3396 +728378 POTEF POTE ankyrin domain family member F Novel U 0.023380989005788486 -0.09405377575512569 1.0 3397 +9001 HAP1 huntingtin associated protein 1 Novel N 0.023380812635981324 -0.09405529636170849 1.0 3398 +154043 CNKSR3 CNKSR family member 3 Novel U 0.023380662935724245 -0.0940565870315801 1.0 3399 +3708 ITPR1 inositol 1,4,5-trisphosphate receptor type 1 Novel U 0.023375014474622712 -0.09410528633715844 1.0 3400 +84162 BLTP1 bridge-like lipid transfer protein family member 1 Novel U 0.023356118648219654 -0.09426820037827807 1.0 3401 +390077 OR52N2 olfactory receptor family 52 subfamily N member 2 Novel U 0.023346689362182097 -0.09434949680112215 1.0 3402 +5784 PTPN14 protein tyrosine phosphatase non-receptor type 14 Novel U 0.0233179463383503 -0.09459731036939659 1.0 3403 +64167 ERAP2 endoplasmic reticulum aminopeptidase 2 Novel U 0.023309369748780232 -0.09467125510386228 1.0 3404 +1020 CDK5 cyclin dependent kinase 5 Novel U 0.023279235716255342 -0.09493106152402847 1.0 3405 +100526772 STIMATE-MUSTN1 STIMATE-MUSTN1 readthrough Novel U 0.023275958819577097 -0.09495931392584446 1.0 3406 +79324 OR51G1 olfactory receptor family 51 subfamily G member 1 Novel U 0.02327030014952437 -0.09500810124988038 1.0 3407 +57213 SPRYD7 SPRY domain containing 7 Novel U 0.023266832985941403 -0.09503799407480772 1.0 3408 +25912 C1orf43 chromosome 1 open reading frame 43 Novel U 0.023257444057710408 -0.09511894254497602 1.0 3409 +55801 IL26 interleukin 26 Novel U 0.023251813974589048 -0.0951674834012252 1.0 3410 +11129 CLASRP CLK4 associating serine/arginine rich protein Novel U 0.023221020578130087 -0.09543297465574457 1.0 3411 +53833 IL20RB interleukin 20 receptor subunit beta Novel U 0.023217669027682054 -0.09546187069955121 1.0 3412 +283638 CEP170B centrosomal protein 170B Novel U 0.023217301915348963 -0.09546503582990609 1.0 3413 +11101 ATE1 arginyltransferase 1 Novel U 0.023198303986719307 -0.09562883016522336 1.0 3414 +5970 RELA RELA proto-oncogene, NF-kB subunit Novel U 0.023187106711026292 -0.09572536965462006 1.0 3415 +10810 WASF3 WASP family member 3 Novel U 0.02318437921053339 -0.09574888533040878 1.0 3416 +26130 GAPVD1 GTPase activating protein and VPS9 domains 1 Novel U 0.023143120812131355 -0.09610460263381879 1.0 3417 +6612 SUMO3 small ubiquitin like modifier 3 Novel U 0.023122765141185 -0.09628010300849599 1.0 3418 +1894 ECT2 epithelial cell transforming 2 Novel U 0.02311655045979886 -0.0963336840923444 1.0 3419 +301 ANXA1 annexin A1 Novel U 0.02310835026407299 -0.09640438367410269 1.0 3420 +51608 GET4 guided entry of tail-anchored proteins factor 4 Novel U 0.023100333505115426 -0.09647350172009866 1.0 3421 +26735 OR1L3 olfactory receptor family 1 subfamily L member 3 Novel U 0.023072280057187797 -0.09671536997564581 1.0 3422 +10868 USP20 ubiquitin specific peptidase 20 Novel U 0.023068908007581736 -0.09674444275692888 1.0 3423 +4131 MAP1B microtubule associated protein 1B Novel U 0.02303608448115863 -0.09702743717163836 1.0 3424 +64407 RGS18 regulator of G protein signaling 18 Novel N 0.02303078187815824 -0.09707315459435488 1.0 3425 +54878 DPP8 dipeptidyl peptidase 8 Novel N 0.02302511245742023 -0.09712203460751415 1.0 3426 +11342 RNF13 ring finger protein 13 Novel U 0.02301562436679851 -0.09720383802551355 1.0 3427 +441631 TSPAN11 tetraspanin 11 Novel U 0.023011762929872982 -0.09723713015471964 1.0 3428 +3297 HSF1 heat shock transcription factor 1 Novel U 0.022994744059208018 -0.09738386165701969 1.0 3429 +54810 GIPC2 GIPC PDZ domain containing family member 2 Novel U 0.022977184980175043 -0.09753525067079355 1.0 3430 +2252 FGF7 fibroblast growth factor 7 Novel U 0.022971448955309785 -0.09758470492438527 1.0 3431 +3683 ITGAL integrin subunit alpha L Novel U 0.022970340920222373 -0.09759425806431903 1.0 3432 +9290 GPR55 G protein-coupled receptor 55 Novel U 0.022953538839231857 -0.0977391204722919 1.0 3433 +256369 CCDC197 coiled-coil domain containing 197 Novel U 0.022946672947368973 -0.09779831609387593 1.0 3434 +55765 INAVA innate immunity activator Novel U 0.02291894339179233 -0.09803739184854689 1.0 3435 +119774 OR52K2 olfactory receptor family 52 subfamily K member 2 Novel U 0.02291174159567953 -0.09809948353392911 1.0 3436 +255725 OR52B2 olfactory receptor family 52 subfamily B member 2 Novel U 0.0229044191366836 -0.09816261553781788 1.0 3437 +9771 RAPGEF5 Rap guanine nucleotide exchange factor 5 Novel U 0.022844882606451813 -0.09867592130848965 1.0 3438 +5306 PITPNA phosphatidylinositol transfer protein alpha Novel N 0.02283988282678446 -0.09871902788096454 1.0 3439 +23463 ICMT isoprenylcysteine carboxyl methyltransferase Novel U 0.02282076708996799 -0.09888383792246906 1.0 3440 +219983 OR4D6 olfactory receptor family 4 subfamily D member 6 Novel U 0.02281708184561612 -0.09891561097314547 1.0 3441 +51280 GOLM1 golgi membrane protein 1 Novel U 0.02275616345333668 -0.09944083073612699 1.0 3442 +5886 RAD23A RAD23 homolog A, nucleotide excision repair protein Novel U 0.02273792258989376 -0.09959809788674585 1.0 3443 +6003 RGS13 regulator of G protein signaling 13 Novel N 0.022730555078850863 -0.09966161831561672 1.0 3444 +6368 CCL23 C-C motif chemokine ligand 23 Novel U 0.022718464421761564 -0.09976586026641547 1.0 3445 +323 APBB2 amyloid beta precursor protein binding family B member 2 Novel N 0.022715775121284917 -0.0997890465933371 1.0 3446 +5176 SERPINF1 serpin family F member 1 Novel U 0.022712035936191505 -0.09982128470460401 1.0 3447 +987 LRBA LPS responsive beige-like anchor protein Novel U 0.022697130024966386 -0.09994979891628525 1.0 3448 +780 DDR1 discoidin domain receptor tyrosine kinase 1 Novel U 0.022681666579648548 -0.1000831200165444 1.0 3449 +5685 PSMA4 proteasome 20S subunit alpha 4 Novel U 0.022658217328506144 -0.10028529229434538 1.0 3450 +1003 CDH5 cadherin 5 Novel U 0.022647996686370662 -0.10037341154764565 1.0 3451 +10460 TACC3 transforming acidic coiled-coil containing protein 3 Novel U 0.022647781396364496 -0.10037526771229116 1.0 3452 +5339 PLEC plectin Novel U 0.02264429024909592 -0.10040536731722696 1.0 3453 +10970 CKAP4 cytoskeleton associated protein 4 Novel U 0.02264129769926948 -0.1004311681673765 1.0 3454 +9807 IP6K1 inositol hexakisphosphate kinase 1 Novel U 0.022639507228839194 -0.10044660505630008 1.0 3455 +9260 PDLIM7 PDZ and LIM domain 7 Novel U 0.02262253980195475 -0.10059289302604452 1.0 3456 +367 AR androgen receptor Novel U 0.022616144802367535 -0.1006480287583215 1.0 3457 +401720 FIGNL2 fidgetin like 2 Novel N 0.02261541573186983 -0.10065431458136564 1.0 3458 +838 CASP5 caspase 5 Novel U 0.022600818370145763 -0.1007801685735344 1.0 3459 +143187 VTI1A vesicle transport through interaction with t-SNAREs 1A Novel U 0.02259980313871555 -0.10078892158869444 1.0 3460 +399979 SNX19 sorting nexin 19 Novel U 0.022591981900626282 -0.10085635391351064 1.0 3461 +7398 USP1 ubiquitin specific peptidase 1 Novel U 0.022578118614092504 -0.10097587893370515 1.0 3462 +5318 PKP2 plakophilin 2 Novel U 0.022575534138659644 -0.10099816149113133 1.0 3463 +333929 SNAI3 snail family transcriptional repressor 3 Novel U 0.0225630777071368 -0.10110555703732389 1.0 3464 +57731 SPTBN4 spectrin beta, non-erythrocytic 4 Novel N 0.022553418821074093 -0.10118883300142438 1.0 3465 +25771 TBC1D22A TBC1 domain family member 22A Novel U 0.022551481206663657 -0.101205538520781 1.0 3466 +148066 ZNRF4 zinc and ring finger 4 Novel U 0.022547296996020462 -0.10124161350634862 1.0 3467 +84253 GARNL3 GTPase activating Rap/RanGAP domain like 3 Novel U 0.022544320245478575 -0.10126727813989465 1.0 3468 +26664 OR7C1 olfactory receptor family 7 subfamily C member 1 Novel N 0.022527215949358033 -0.10141474615436866 1.0 3469 +7375 USP4 ubiquitin specific peptidase 4 Novel U 0.022503884059551327 -0.10161590657859615 1.0 3470 +1132 CHRM4 cholinergic receptor muscarinic 4 Novel N 0.02250283235644399 -0.10162497404141148 1.0 3471 +23585 TMEM50A transmembrane protein 50A Novel U 0.02250117589835621 -0.10163925551686902 1.0 3472 +2886 GRB7 growth factor receptor bound protein 7 Novel U 0.022494576625349944 -0.10169615243214385 1.0 3473 +4094 MAF MAF bZIP transcription factor Novel U 0.022476525102968315 -0.1018517871419905 1.0 3474 +3486 IGFBP3 insulin like growth factor binding protein 3 Novel U 0.022469371048508942 -0.10191346721342563 1.0 3475 +22930 RAB3GAP1 RAB3 GTPase activating protein catalytic subunit 1 Novel U 0.022468080089169524 -0.10192459747036277 1.0 3476 +1104 RCC1 regulator of chromosome condensation 1 Novel U 0.02242238992491143 -0.10231852410473856 1.0 3477 +121441 NEDD1 NEDD1 gamma-tubulin ring complex targeting factor Novel U 0.02241384171329297 -0.10239222417317716 1.0 3478 +128646 SIRPD signal regulatory protein delta Novel U 0.02238717807617571 -0.10262210990461133 1.0 3479 +793 CALB1 calbindin 1 Novel N 0.02238073266947572 -0.10267768023161143 1.0 3480 +6397 SEC14L1 SEC14 like lipid binding 1 Novel U 0.0223791921960135 -0.10269096172306962 1.0 3481 +5347 PLK1 polo like kinase 1 Novel U 0.0223683729432086 -0.10278424201464004 1.0 3482 +6001 RGS10 regulator of G protein signaling 10 Novel U 0.022362084774796866 -0.10283845668116716 1.0 3483 +54587 MXRA8 matrix remodeling associated 8 Novel U 0.022349174742599707 -0.10294976303376381 1.0 3484 +9868 TOMM70 translocase of outer mitochondrial membrane 70 Novel U 0.02232831899904569 -0.10312957488165365 1.0 3485 +6794 STK11 serine/threonine kinase 11 Novel U 0.02229747543466049 -0.10339549866870291 1.0 3486 +4900 NRGN neurogranin Novel N 0.02228100208829111 -0.10353752682722603 1.0 3487 +6336 SCN10A sodium voltage-gated channel alpha subunit 10 Novel U 0.022277553391221772 -0.10356726043951581 1.0 3488 +3672 ITGA1 integrin subunit alpha 1 Novel N 0.022256819242753308 -0.10374602393173467 1.0 3489 +63970 TP53AIP1 tumor protein p53 regulated apoptosis inducing protein 1 Novel N 0.022244619455472927 -0.10385120676969327 1.0 3490 +138804 OR13C4 olfactory receptor family 13 subfamily C member 4 Novel U 0.02223061321293094 -0.10397196431290648 1.0 3491 +5473 PPBP pro-platelet basic protein Novel N 0.02222939134590624 -0.10398249887701916 1.0 3492 +1378 CR1 complement C3b/C4b receptor 1 (Knops blood group) Novel U 0.022205751715849837 -0.10418631254364123 1.0 3493 +10971 YWHAQ tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein theta Novel N 0.022196230746623528 -0.10426839943092248 1.0 3494 +57558 USP35 ubiquitin specific peptidase 35 Novel N 0.022189636529040324 -0.10432525275988447 1.0 3495 +57589 RIC1 RIC1 homolog, RAB6A GEF complex partner 1 Novel U 0.022184307882516602 -0.10437119472190086 1.0 3496 +51347 TAOK3 TAO kinase 3 Novel U 0.022183498228341963 -0.10437817531278301 1.0 3497 +4205 MEF2A myocyte enhancer factor 2A Novel U 0.022129291749671733 -0.10484552700763151 1.0 3498 +4689 NCF4 neutrophil cytosolic factor 4 Novel U 0.022119296892051665 -0.1049316996158344 1.0 3499 +135250 RAET1E retinoic acid early transcript 1E Novel U 0.022111639610377726 -0.10499771835853891 1.0 3500 +25989 ULK3 unc-51 like kinase 3 Novel U 0.022094102388649846 -0.10514891892530734 1.0 3501 +286451 YIPF6 Yip1 domain family member 6 Novel U 0.022083674334913563 -0.10523882641804952 1.0 3502 +9287 TAAR2 trace amine associated receptor 2 Novel U 0.02208050320818784 -0.10526616690365571 1.0 3503 +390260 OR6X1 olfactory receptor family 6 subfamily X member 1 Novel U 0.022064969881365293 -0.10540009050089429 1.0 3504 +6891 TAP2 transporter 2, ATP binding cassette subfamily B member Novel U 0.022062397711168278 -0.10542226696633722 1.0 3505 +8987 STBD1 starch binding domain 1 Novel U 0.022056373323548227 -0.10547420739548377 1.0 3506 +89781 HPS4 HPS4 biogenesis of lysosomal organelles complex 3 subunit 2 Novel U 0.022038972396187975 -0.10562423287386291 1.0 3507 +23157 SEPTIN6 septin 6 Novel U 0.022032601429383056 -0.10567916140283481 1.0 3508 +623 BDKRB1 bradykinin receptor B1 Novel N 0.02202593064292852 -0.10573667488520777 1.0 3509 +5775 PTPN4 protein tyrosine phosphatase non-receptor type 4 Novel N 0.022025454718159355 -0.1057407781631359 1.0 3510 +643680 MS4A4E membrane spanning 4-domains A4E Novel U 0.02197987659145475 -0.1061337388439616 1.0 3511 +2837 UTS2R urotensin 2 receptor Novel N 0.02197956664983081 -0.1061364110659322 1.0 3512 +22936 ELL2 elongation factor for RNA polymerase II 2 Novel N 0.021977126149134895 -0.10615745231717182 1.0 3513 +391190 OR2L8 olfactory receptor family 2 subfamily L member 8 Novel U 0.021966516263805913 -0.10624892750634272 1.0 3514 +843 CASP10 caspase 10 Novel U 0.02196575143867152 -0.10625552159493858 1.0 3515 +4049 LTA lymphotoxin alpha Novel N 0.021960176508986465 -0.10630358693511355 1.0 3516 +50846 DHH desert hedgehog signaling molecule Novel U 0.021941350473369772 -0.1064658992613996 1.0 3517 +6403 SELP selectin P Novel U 0.021907263242940386 -0.1067597889458925 1.0 3518 +10657 KHDRBS1 KH RNA binding domain containing, signal transduction associated 1 Novel U 0.021905369518848528 -0.10677611605633422 1.0 3519 +1442 CSH1 chorionic somatomammotropin hormone 1 Novel U 0.021905254248988284 -0.10677710987784543 1.0 3520 +123036 TC2N tandem C2 domains, nuclear Novel U 0.021900460984886107 -0.10681843593622375 1.0 3521 +389072 PLEKHM3 pleckstrin homology domain containing M3 Novel U 0.02189646464322236 -0.10685289117285897 1.0 3522 +7392 USF2 upstream transcription factor 2, c-fos interacting Novel U 0.021881092422052602 -0.10698542576638936 1.0 3523 +57595 PDZD4 PDZ domain containing 4 Novel U 0.021878898117908732 -0.10700434438618922 1.0 3524 +10911 UTS2 urotensin 2 Novel N 0.02186792671943748 -0.10709893643120272 1.0 3525 +338674 OR5F1 olfactory receptor family 5 subfamily F member 1 Novel U 0.021865108611419857 -0.10712323329738203 1.0 3526 +27123 DKK2 dickkopf WNT signaling pathway inhibitor 2 Novel U 0.021865102362109305 -0.10712328717702797 1.0 3527 +1052 CEBPD CCAAT enhancer binding protein delta Novel N 0.021846748286851767 -0.10728153040531754 1.0 3528 +114548 NLRP3 NLR family pyrin domain containing 3 Novel U 0.021806745440590133 -0.10762642272184071 1.0 3529 +30817 ADGRE2 adhesion G protein-coupled receptor E2 Novel U 0.021805309105761728 -0.10763880636182051 1.0 3530 +10538 BATF basic leucine zipper ATF-like transcription factor Novel U 0.02180140961300311 -0.10767242659679051 1.0 3531 +259293 TAS2R30 taste 2 receptor member 30 Novel N 0.021794320369046275 -0.10773354789187735 1.0 3532 +2 A2M alpha-2-macroglobulin Novel U 0.02178353464584783 -0.10782653910142677 1.0 3533 +6613 SUMO2 small ubiquitin like modifier 2 Novel U 0.021780958349551082 -0.10784875114084078 1.0 3534 +5708 PSMD2 proteasome 26S subunit ubiquitin receptor, non-ATPase 2 Novel U 0.021779561052139934 -0.10786079821213791 1.0 3535 +2125 EVPL envoplakin Novel N 0.021776252401372764 -0.1078893243880053 1.0 3536 +64115 VSIR V-set immunoregulatory receptor Novel U 0.02177178562031557 -0.10792783560933543 1.0 3537 +283162 OR8B4 olfactory receptor family 8 subfamily B member 4 Novel U 0.02176460887851274 -0.10798971128411314 1.0 3538 +23332 CLASP1 cytoplasmic linker associated protein 1 Novel U 0.0217605577045693 -0.10802463926790842 1.0 3539 +6833 ABCC8 ATP binding cassette subfamily C member 8 Novel U 0.021744986370857648 -0.10815889054893082 1.0 3540 +3965 LGALS9 galectin 9 Novel U 0.021736073880527198 -0.10823573131710904 1.0 3541 +11015 KDELR3 KDEL endoplasmic reticulum protein retention receptor 3 Novel N 0.021734117100190638 -0.10825260207922405 1.0 3542 +54549 SDK2 sidekick cell adhesion molecule 2 Novel U 0.021730054685103053 -0.10828762698072911 1.0 3543 +7482 WNT2B Wnt family member 2B Novel U 0.021722328771755284 -0.10835423744475313 1.0 3544 +7096 TLR1 toll like receptor 1 Novel U 0.021656766084965404 -0.10891949889581469 1.0 3545 +2137 EXTL3 exostosin like glycosyltransferase 3 Novel U 0.02163220894147958 -0.10913122308285438 1.0 3546 +11344 TWF2 twinfilin actin binding protein 2 Novel U 0.021603426282993752 -0.10937937836900441 1.0 3547 +10666 CD226 CD226 molecule Novel U 0.02160339733790161 -0.10937962792474391 1.0 3548 +10219 KLRG1 killer cell lectin like receptor G1 Novel U 0.021600057455953964 -0.10940842336630582 1.0 3549 +56890 MDM1 Mdm1 nuclear protein Novel U 0.021574900392130936 -0.10962531988317109 1.0 3550 +10068 IL18BP interleukin 18 binding protein Novel U 0.021573489406031578 -0.10963748497415504 1.0 3551 +27185 DISC1 DISC1 scaffold protein Novel U 0.02157003660462066 -0.10966725397282372 1.0 3552 +81607 NECTIN4 nectin cell adhesion molecule 4 Novel U 0.021568729327379348 -0.10967852491772462 1.0 3553 +286133 SCARA5 scavenger receptor class A member 5 Novel U 0.0215620870349438 -0.10973579273337299 1.0 3554 +64127 NOD2 nucleotide binding oligomerization domain containing 2 Novel U 0.02155829130084063 -0.10976851839292194 1.0 3555 +3934 LCN2 lipocalin 2 Novel N 0.021549537888173136 -0.10984398764210061 1.0 3556 +946 SIGLEC6 sialic acid binding Ig like lectin 6 Novel N 0.02153665716788455 -0.10995504127637858 1.0 3557 +120586 OR8I2 olfactory receptor family 8 subfamily I member 2 Novel U 0.021507207626142028 -0.11020894622618374 1.0 3558 +23560 GTPBP4 GTP binding protein 4 Novel U 0.021493471523489897 -0.11032737470581512 1.0 3559 +11228 RASSF8 Ras association domain family member 8 Novel U 0.02149282126060042 -0.11033298107374291 1.0 3560 +23423 TMED3 transmembrane p24 trafficking protein 3 Novel U 0.021457588951337262 -0.11063674327803097 1.0 3561 +89790 SIGLEC10 sialic acid binding Ig like lectin 10 Novel U 0.021451863786181878 -0.11068610390252262 1.0 3562 +340527 NHSL2 NHS like 2 Novel U 0.02140414895658686 -0.11109748658274247 1.0 3563 +51029 DESI2 desumoylating isopeptidase 2 Novel U 0.02138481416535537 -0.11126418524447534 1.0 3564 +5913 RAPSN receptor associated protein of the synapse Novel U 0.02134957745398978 -0.1115679854023454 1.0 3565 +6277 S100A6 S100 calcium binding protein A6 Novel N 0.021337521518972904 -0.111671927990046 1.0 3566 +9100 USP10 ubiquitin specific peptidase 10 Novel U 0.021336882944302145 -0.11167743358572363 1.0 3567 +340980 OR52B6 olfactory receptor family 52 subfamily B member 6 Novel U 0.021335109750972036 -0.11169272151676896 1.0 3568 +283349 RASSF3 Ras association domain family member 3 Novel U 0.02131592745730774 -0.11185810539107723 1.0 3569 +10936 GPR75 G protein-coupled receptor 75 Novel U 0.02131246556339304 -0.11188795278253504 1.0 3570 +253959 RALGAPA1 Ral GTPase activating protein catalytic subunit alpha 1 Novel U 0.02129905069317247 -0.1120036116943027 1.0 3571 +10420 TESK2 testis associated actin remodelling kinase 2 Novel U 0.021297508605180877 -0.11201690710573979 1.0 3572 +55619 DOCK10 dedicator of cytokinesis 10 Novel N 0.021274806439776157 -0.11221263823860259 1.0 3573 +139562 OTUD6A OTU deubiquitinase 6A Novel N 0.021219664362478054 -0.11268805637892332 1.0 3574 +400668 PRSS57 serine protease 57 Novel N 0.02121619715138455 -0.11271794961347198 1.0 3575 +4889 NPY5R neuropeptide Y receptor Y5 Novel N 0.021206954390734264 -0.11279763787142486 1.0 3576 +80179 MYO19 myosin XIX Novel U 0.02120169330087002 -0.11284299738056697 1.0 3577 +338398 TAS2R60 taste 2 receptor member 60 Novel N 0.02120104969740426 -0.11284854633297843 1.0 3578 +81168 OR8J3 olfactory receptor family 8 subfamily J member 3 Novel U 0.02117819951722547 -0.11304555360399336 1.0 3579 +5956 OPN1LW opsin 1, long wave sensitive Novel U 0.0211737760733113 -0.11308369118571918 1.0 3580 +4161 MC5R melanocortin 5 receptor Novel N 0.02116711890821209 -0.11314108722892886 1.0 3581 +79577 CDC73 cell division cycle 73 Novel U 0.02114872590311862 -0.11329966609836778 1.0 3582 +2668 GDNF glial cell derived neurotrophic factor Novel U 0.02112462953250177 -0.1135074176425327 1.0 3583 +23053 ZSWIM8 zinc finger SWIM-type containing 8 Novel U 0.02112233593089384 -0.11352719237472468 1.0 3584 +220213 OTUD1 OTU deubiquitinase 1 Novel N 0.021114650114704488 -0.1135934571333016 1.0 3585 +135228 CD109 CD109 molecule Novel U 0.021108913787215598 -0.11364291399602179 1.0 3586 +125958 OR7D4 olfactory receptor family 7 subfamily D member 4 Novel U 0.021092194823629794 -0.11378705979112999 1.0 3587 +161291 TMEM30B transmembrane protein 30B Novel U 0.021091003322918637 -0.11379733254616653 1.0 3588 +162998 OR7D2 olfactory receptor family 7 subfamily D member 2 Novel N 0.021078112598739603 -0.11390847243093098 1.0 3589 +390066 OR52D1 olfactory receptor family 52 subfamily D member 1 Novel U 0.02107767782647708 -0.11391222090452209 1.0 3590 +1982 EIF4G2 eukaryotic translation initiation factor 4 gamma 2 Novel N 0.02107114048026813 -0.11396858390587386 1.0 3591 +9111 NMI N-myc and STAT interactor Novel U 0.02106627013102957 -0.11401057456874263 1.0 3592 +23344 ESYT1 extended synaptotagmin 1 Novel N 0.021062580592832808 -0.11404238463963758 1.0 3593 +25839 COG4 component of oligomeric golgi complex 4 Novel U 0.021045676065651303 -0.11418813030736397 1.0 3594 +4793 NFKBIB NFKB inhibitor beta Novel N 0.021045587705110662 -0.11418889212494443 1.0 3595 +22818 COPZ1 COPI coat complex subunit zeta 1 Novel N 0.021037028497486367 -0.11426268699758521 1.0 3596 +6425 SFRP5 secreted frizzled related protein 5 Novel U 0.02103118714117383 -0.11431304938672851 1.0 3597 +2151 F2RL2 coagulation factor II thrombin receptor like 2 Novel U 0.021030486937932684 -0.11431908632510776 1.0 3598 +81704 DOCK8 dedicator of cytokinesis 8 Novel U 0.021024837067022423 -0.11436779778562614 1.0 3599 +282617 IFNL3 interferon lambda 3 Novel U 0.021023271603039465 -0.11438129473771762 1.0 3600 +25894 PLEKHG4 pleckstrin homology and RhoGEF domain containing G4 Novel U 0.021008800581959555 -0.11450605945945924 1.0 3601 +6614 SIGLEC1 sialic acid binding Ig like lectin 1 Novel N 0.020998158738439986 -0.1145978101823837 1.0 3602 +550 AUP1 AUP1 lipid droplet regulating VLDL assembly factor Novel U 0.020988274985095264 -0.11468302488347547 1.0 3603 +55423 SIRPG signal regulatory protein gamma Novel U 0.020975780636332316 -0.11479074734052558 1.0 3604 +6786 STIM1 stromal interaction molecule 1 Novel U 0.020973413853596003 -0.11481115301804401 1.0 3605 +23547 LILRA4 leukocyte immunoglobulin like receptor A4 Novel U 0.02097161115837831 -0.11482669530534897 1.0 3606 +889 KRIT1 KRIT1 ankyrin repeat containing Novel U 0.020966784500229346 -0.11486830927699425 1.0 3607 +25897 RNF19A ring finger protein 19A, RBR E3 ubiquitin protein ligase Novel N 0.02094654031970778 -0.11504284841529781 1.0 3608 +57670 KIAA1549 KIAA1549 Novel N 0.020943466162360945 -0.11506935286055085 1.0 3609 +79083 MLPH melanophilin Novel N 0.020918595186375004 -0.11528378281550658 1.0 3610 +1506 CTRL chymotrypsin like Novel N 0.02091169957427517 -0.11534323467589175 1.0 3611 +4306 NR3C2 nuclear receptor subfamily 3 group C member 2 Novel N 0.020899871625692915 -0.11544521163422043 1.0 3612 +91860 CALML4 calmodulin like 4 Novel N 0.020884450115323343 -0.11557817118416996 1.0 3613 +286827 TRIM59 tripartite motif containing 59 Novel N 0.02087488816770307 -0.11566061137464191 1.0 3614 +64218 SEMA4A semaphorin 4A Novel U 0.020870858722053687 -0.1156953520237255 1.0 3615 +22839 DLGAP4 DLG associated protein 4 Novel U 0.020857178635163193 -0.11581329755257716 1.0 3616 +81285 OR51E2 olfactory receptor family 51 subfamily E member 2 Novel U 0.020836665319870433 -0.11599015708863662 1.0 3617 +147179 WIPF2 WAS/WASL interacting protein family member 2 Novel U 0.020832637363856446 -0.11602488489453901 1.0 3618 +26529 OR12D2 olfactory receptor family 12 subfamily D member 2 Novel U 0.020829661432089547 -0.11605054246885729 1.0 3619 +114884 OSBPL10 oxysterol binding protein like 10 Novel U 0.020803109313053278 -0.11627946672547451 1.0 3620 +23384 SPECC1L sperm antigen with calponin homology and coiled-coil domains 1 like Novel U 0.02079304935148255 -0.11636620064004574 1.0 3621 +7204 TRIO trio Rho guanine nucleotide exchange factor Novel U 0.020761268217624113 -0.1166402078645937 1.0 3622 +7253 TSHR thyroid stimulating hormone receptor Novel U 0.020760783989527194 -0.11664438273127642 1.0 3623 +56900 TMEM167B transmembrane protein 167B Novel U 0.020760708138625458 -0.1166450366945729 1.0 3624 +57462 MYORG myogenesis regulating glycosidase (putative) Novel N 0.02072772779788213 -0.1169293831144325 1.0 3625 +54930 HAUS4 HAUS augmin like complex subunit 4 Novel U 0.02072688804533874 -0.11693662320425266 1.0 3626 +80271 ITPKC inositol-trisphosphate 3-kinase C Novel U 0.020720697748457174 -0.11698999405235395 1.0 3627 +10422 UBAC1 UBA domain containing 1 Novel N 0.020711873429096087 -0.11706607463737734 1.0 3628 +2845 GPR22 G protein-coupled receptor 22 Novel U 0.02070884896555134 -0.11709215063785404 1.0 3629 +84818 IL17RC interleukin 17 receptor C Novel U 0.020703702243501966 -0.11713652410264451 1.0 3630 +57221 ARFGEF3 ARFGEF family member 3 Novel U 0.020703458490848845 -0.11713862566353454 1.0 3631 +10004 NAALADL1 N-acetylated alpha-linked acidic dipeptidase like 1 Novel N 0.020694861330504362 -0.1172127477529313 1.0 3632 +728379 USP17L26 ubiquitin specific peptidase 17 like family member 26 Novel U 0.020685938334863187 -0.11728967909468842 1.0 3633 +112755 STX1B syntaxin 1B Novel N 0.020654841663059434 -0.11755778509655666 1.0 3634 +150696 PROM2 prominin 2 Novel U 0.020652156301260837 -0.1175809374653997 1.0 3635 +100532731 COMMD3-BMI1 COMMD3-BMI1 readthrough Novel U 0.020636436350805278 -0.11771647007457424 1.0 3636 +51199 NIN ninein Novel N 0.020633081767601077 -0.11774539226587781 1.0 3637 +8740 TNFSF14 TNF superfamily member 14 Novel U 0.020630272301245315 -0.11776961462628925 1.0 3638 +51009 DERL2 derlin 2 Novel U 0.02062521251398717 -0.11781323856587501 1.0 3639 +100526835 FPGT-TNNI3K FPGT-TNNI3K readthrough Novel U 0.02062193834681363 -0.11784146743473552 1.0 3640 +4045 LSAMP limbic system associated membrane protein Novel N 0.020598105586872306 -0.11804694620820935 1.0 3641 +84343 HPS3 HPS3 biogenesis of lysosomal organelles complex 2 subunit 1 Novel N 0.020595502054880463 -0.11806939306546387 1.0 3642 +9419 CRIPT CXXC repeat containing interactor of PDZ3 domain Novel N 0.020584925855831653 -0.11816057782182088 1.0 3643 +26577 PCOLCE2 procollagen C-endopeptidase enhancer 2 Novel U 0.02057668776040997 -0.11823160416317519 1.0 3644 +57488 ESYT2 extended synaptotagmin 2 Novel U 0.020569273480930246 -0.11829552781521704 1.0 3645 +1795 DOCK3 dedicator of cytokinesis 3 Novel U 0.020564626526767202 -0.11833559243400908 1.0 3646 +122618 PLD4 phospholipase D family member 4 Novel U 0.02054867863226853 -0.11847309030706892 1.0 3647 +1131 CHRM3 cholinergic receptor muscarinic 3 Novel U 0.020512793453500718 -0.11878248135272429 1.0 3648 +1029 CDKN2A cyclin dependent kinase inhibitor 2A Novel U 0.02049135072697678 -0.11896735398841238 1.0 3649 +57553 MICAL3 microtubule associated monooxygenase, calponin and LIM domain containing 3 Novel U 0.020483393775503525 -0.11903595639255443 1.0 3650 +79132 DHX58 DExH-box helicase 58 Novel U 0.02047310389563737 -0.11912467259241112 1.0 3651 +23299 BICD2 BICD cargo adaptor 2 Novel U 0.020471512422023896 -0.11913839379158896 1.0 3652 +2191 FAP fibroblast activation protein alpha Novel N 0.020452917171704426 -0.11929871635756499 1.0 3653 +2830 GPR6 G protein-coupled receptor 6 Novel N 0.020442298300938324 -0.119390269016429 1.0 3654 +55846 ITFG2 integrin alpha FG-GAP repeat containing 2 Novel N 0.02041554010310355 -0.11962097002147402 1.0 3655 +55500 ETNK1 ethanolamine kinase 1 Novel U 0.02041097931165161 -0.11966029177170026 1.0 3656 +284266 SIGLEC15 sialic acid binding Ig like lectin 15 Novel U 0.02040027683729802 -0.11975256523514827 1.0 3657 +10869 USP19 ubiquitin specific peptidase 19 Novel U 0.020395424914265155 -0.11979439703290216 1.0 3658 +972 CD74 CD74 molecule Novel U 0.02037479344281199 -0.11997227527527082 1.0 3659 +317701 VN1R2 vomeronasal 1 receptor 2 Novel U 0.020370732653385 -0.120007286160827 1.0 3660 +100529257 SYNJ2BP-COX16 SYNJ2BP-COX16 readthrough Novel U 0.020369868099554034 -0.12001474007976994 1.0 3661 +54980 C2orf42 chromosome 2 open reading frame 42 Novel U 0.020351183761161004 -0.12017583073589296 1.0 3662 +2104 ESRRG estrogen related receptor gamma Novel N 0.02034900017970424 -0.12019465690796118 1.0 3663 +51592 TRIM33 tripartite motif containing 33 Novel U 0.020342271918308123 -0.12025266592171743 1.0 3664 +115098 CCDC124 coiled-coil domain containing 124 Novel U 0.02033573044935624 -0.12030906446809894 1.0 3665 +54976 ADISSP adipose secreted signaling protein Novel N 0.020318076581688303 -0.12046127072051822 1.0 3666 +79444 BIRC7 baculoviral IAP repeat containing 7 Novel U 0.02030717937942113 -0.1205552230685328 1.0 3667 +26973 CHORDC1 cysteine and histidine rich domain containing 1 Novel U 0.02029691264900911 -0.12064373968086986 1.0 3668 +119772 OR52M1 olfactory receptor family 52 subfamily M member 1 Novel U 0.020285483462889168 -0.12074227863110105 1.0 3669 +723961 INS-IGF2 INS-IGF2 readthrough Novel U 0.020274209572345853 -0.12083947867032531 1.0 3670 +1043 CD52 CD52 molecule Novel N 0.020258167901159013 -0.12097778505733453 1.0 3671 +80328 ULBP2 UL16 binding protein 2 Novel N 0.020248529920447705 -0.12106088078188343 1.0 3672 +1369 CPN1 carboxypeptidase N subunit 1 Novel N 0.02021721421123284 -0.1213308752573775 1.0 3673 +3569 IL6 interleukin 6 Novel U 0.02020780948166477 -0.12141195996184556 1.0 3674 +64718 UNKL unk like zinc finger Novel U 0.02020066286964022 -0.1214735758668819 1.0 3675 +139760 GPR119 G protein-coupled receptor 119 Novel U 0.02019326256656682 -0.12153737901861926 1.0 3676 +8541 PPFIA3 PTPRF interacting protein alpha 3 Novel U 0.020151668616583174 -0.1218959893452291 1.0 3677 +3060 HCRT hypocretin neuropeptide precursor Novel U 0.020149862967133503 -0.12191155710301947 1.0 3678 +55366 LGR4 leucine rich repeat containing G protein-coupled receptor 4 Novel U 0.020148349432583673 -0.12192460633540694 1.0 3679 +145567 TTC7B tetratricopeptide repeat domain 7B Novel U 0.020147246427111094 -0.12193411611153857 1.0 3680 +4057 LTF lactotransferrin Novel U 0.020137768110336074 -0.12201583526241838 1.0 3681 +5745 PTH1R parathyroid hormone 1 receptor Novel U 0.02013348173481684 -0.12205279108232799 1.0 3682 +23152 CIC capicua transcriptional repressor Novel N 0.02009181018395593 -0.12241207045998859 1.0 3683 +80830 APOL6 apolipoprotein L6 Novel U 0.02008230916655884 -0.12249398532869511 1.0 3684 +79982 DNAJB14 DnaJ heat shock protein family (Hsp40) member B14 Novel U 0.020076697024680738 -0.12254237150102734 1.0 3685 +25938 HEATR5A HEAT repeat containing 5A Novel U 0.020060648220002347 -0.12268073939082089 1.0 3686 +10156 RASA4 RAS p21 protein activator 4 Novel U 0.020058078151750668 -0.12270289773393345 1.0 3687 +240 ALOX5 arachidonate 5-lipoxygenase Novel U 0.02003691137132549 -0.12288539124668077 1.0 3688 +143425 SYT9 synaptotagmin 9 Novel U 0.02003621747816895 -0.12289137378143875 1.0 3689 +6925 TCF4 transcription factor 4 Novel U 0.020013498301071003 -0.12308725158392217 1.0 3690 +653125 GOLGA8K golgin A8 family member K Novel U 0.020010916996606162 -0.12310950680223108 1.0 3691 +9970 NR1I3 nuclear receptor subfamily 1 group I member 3 Novel N 0.02000011247638979 -0.12320266007392515 1.0 3692 +10396 ATP8A1 ATPase phospholipid transporting 8A1 Novel N 0.019988791268507108 -0.12330026806879034 1.0 3693 +134 ADORA1 adenosine A1 receptor Novel U 0.01997207136283159 -0.12344442198630817 1.0 3694 +348235 SKA2 spindle and kinetochore associated complex subunit 2 Novel U 0.01996851101222121 -0.12347511824131004 1.0 3695 +7003 TEAD1 TEA domain transcription factor 1 Novel N 0.019961984222767272 -0.123531390225546 1.0 3696 +3356 HTR2A 5-hydroxytryptamine receptor 2A Novel U 0.01996117732691506 -0.12353834703501505 1.0 3697 +2688 GH1 growth hormone 1 Novel U 0.019925459985274414 -0.12384629104024716 1.0 3698 +5787 PTPRB protein tyrosine phosphatase receptor type B Novel N 0.019922703758036515 -0.12387005438925303 1.0 3699 +5197 PF4V1 platelet factor 4 variant 1 Novel U 0.019907426700660022 -0.12400176850963773 1.0 3700 +135941 OR2A14 olfactory receptor family 2 subfamily A member 14 Novel U 0.019892434634014848 -0.12413102552702358 1.0 3701 +100996758 NPY4R2 neuropeptide Y receptor Y4-2 Novel U 0.019873633738443662 -0.12429312110351948 1.0 3702 +6199 RPS6KB2 ribosomal protein S6 kinase B2 Novel N 0.019838139745296055 -0.12459913946629474 1.0 3703 +89780 WNT3A Wnt family member 3A Novel U 0.01983479922513168 -0.12462794041036626 1.0 3704 +7130 TNFAIP6 TNF alpha induced protein 6 Novel U 0.019831258162335226 -0.1246584703717304 1.0 3705 +391192 OR2L3 olfactory receptor family 2 subfamily L member 3 Novel U 0.019831155499919064 -0.12465935549571129 1.0 3706 +100129515 ETDB embryonic testis differentiation homolog B Novel U 0.01982471091880134 -0.12471491870479337 1.0 3707 +84958 SYTL1 synaptotagmin like 1 Novel U 0.01981938418381984 -0.12476084418607684 1.0 3708 +6623 SNCG synuclein gamma Novel U 0.019814065955822413 -0.12480669632274317 1.0 3709 +11160 ERLIN2 ER lipid raft associated 2 Novel U 0.019791868535931265 -0.1249980756940265 1.0 3710 +10098 TSPAN5 tetraspanin 5 Novel U 0.0197715664160037 -0.12517311436818365 1.0 3711 +9317 PTER phosphotriesterase related Novel U 0.01975395027133739 -0.1253249953844102 1.0 3712 +442213 PTCHD4 patched domain containing 4 Novel U 0.01974600847600979 -0.12539346711689578 1.0 3713 +10017 BCL2L10 BCL2 like 10 Novel N 0.01971535382507116 -0.1256577621499363 1.0 3714 +10277 UBE4B ubiquitination factor E4B Novel U 0.019704482093713074 -0.12575149489555604 1.0 3715 +629 CFB complement factor B Novel U 0.01969352268966338 -0.1258459835283321 1.0 3716 +56521 DNAJC12 DnaJ heat shock protein family (Hsp40) member C12 Novel N 0.0196895918561024 -0.12587987397412304 1.0 3717 +747 DAGLA diacylglycerol lipase alpha Novel N 0.019677195594148506 -0.12598675075667853 1.0 3718 +4908 NTF3 neurotrophin 3 Novel U 0.019670866045622314 -0.12604132218990774 1.0 3719 +836 CASP3 caspase 3 Novel U 0.019643445459459622 -0.1262777341047055 1.0 3720 +127068 OR2T34 olfactory receptor family 2 subfamily T member 34 Novel U 0.01964302253479668 -0.1262813804319134 1.0 3721 +54918 CMTM6 CKLF like MARVEL transmembrane domain containing 6 Novel U 0.01961912778732512 -0.126487393642931 1.0 3722 +219493 OR5AR1 olfactory receptor family 5 subfamily AR member 1 Novel U 0.019616024360416064 -0.12651415044140538 1.0 3723 +126520 PLK5 polo like kinase 5 (inactive) Novel U 0.019613730754611387 -0.1265339252097804 1.0 3724 +223117 SEMA3D semaphorin 3D Novel U 0.019603619099044806 -0.1266211048141874 1.0 3725 +10011 SRA1 steroid receptor RNA activator 1 Novel N 0.01956327322184899 -0.12696895463860275 1.0 3726 +55764 IFT122 intraflagellar transport 122 Novel U 0.019550073536780857 -0.1270827582897417 1.0 3727 +9786 KIAA0586 KIAA0586 Novel U 0.019543346336168065 -0.12714075815774828 1.0 3728 +7431 VIM vimentin Novel U 0.019522320676645607 -0.12732203496919564 1.0 3729 +219869 OR10G8 olfactory receptor family 10 subfamily G member 8 Novel U 0.019520653660855786 -0.127336407469934 1.0 3730 +2634 GBP2 guanylate binding protein 2 Novel U 0.019508569682413268 -0.12744059183948103 1.0 3731 +23484 LEPROTL1 leptin receptor overlapping transcript like 1 Novel U 0.019497732536637016 -0.12753402639878278 1.0 3732 +50489 CD207 CD207 molecule Novel N 0.01945507462305271 -0.12790180989443484 1.0 3733 +254263 CNIH2 cornichon family AMPA receptor auxiliary protein 2 Novel U 0.019435753262643796 -0.12806839275971962 1.0 3734 +3675 ITGA3 integrin subunit alpha 3 Novel U 0.019427622341265317 -0.12813849507922334 1.0 3735 +57045 TWSG1 twisted gastrulation BMP signaling modulator 1 Novel U 0.019418829888968547 -0.12821430091615602 1.0 3736 +84301 DDI2 DNA damage inducible 1 homolog 2 Novel U 0.019411585070528165 -0.1282767635269 1.0 3737 +11211 FZD10 frizzled class receptor 10 Novel U 0.01940754032131947 -0.12831163611859558 1.0 3738 +26509 MYOF myoferlin Novel N 0.019354840118614124 -0.12876600116235795 1.0 3739 +256364 EML3 EMAP like 3 Novel U 0.01935056516347338 -0.12880285851925402 1.0 3740 +392390 OR1L6 olfactory receptor family 1 subfamily L member 6 Novel U 0.019346307428063966 -0.12883956741288852 1.0 3741 +149175 MANEAL mannosidase endo-alpha like Novel U 0.01932895718618825 -0.1289891558965083 1.0 3742 +84333 PCGF5 polycomb group ring finger 5 Novel N 0.01932305922596882 -0.12904000630723997 1.0 3743 +9289 ADGRG1 adhesion G protein-coupled receptor G1 Novel U 0.019307109056298705 -0.12917752379613276 1.0 3744 +200081 TXLNA taxilin alpha Novel U 0.019302580010075947 -0.1292165718486936 1.0 3745 +84290 CAPNS2 calpain small subunit 2 Novel U 0.019297024524614566 -0.12926446954671375 1.0 3746 +9623 TCL1B TCL1 family AKT coactivator B Novel N 0.019292793206118045 -0.12930095068179767 1.0 3747 +122740 OR4K14 olfactory receptor family 4 subfamily K member 14 Novel U 0.01929168276331171 -0.12931052458034825 1.0 3748 +1611 DAP death associated protein Novel U 0.019281037990535835 -0.12940230055842547 1.0 3749 +79589 RNF128 ring finger protein 128 Novel U 0.01926491127137171 -0.12954134020310618 1.0 3750 +147968 CAPN12 calpain 12 Novel U 0.019253933810480392 -0.12963598451645295 1.0 3751 +84258 SYT3 synaptotagmin 3 Novel U 0.019216133558226527 -0.12996188674050288 1.0 3752 +7478 WNT8A Wnt family member 8A Novel N 0.019186776325532524 -0.13021499582989923 1.0 3753 +63893 UBE2O ubiquitin conjugating enzyme E2 O Novel U 0.019185592089034916 -0.13022520595510634 1.0 3754 +81930 KIF18A kinesin family member 18A Novel U 0.019184591300668012 -0.13023383444658798 1.0 3755 +931 MS4A1 membrane spanning 4-domains A1 Novel U 0.01917935531475909 -0.13027897751709852 1.0 3756 +4991 OR1D2 olfactory receptor family 1 subfamily D member 2 Novel N 0.01916996706864438 -0.13035992010626865 1.0 3757 +9755 TBKBP1 TBK1 binding protein 1 Novel U 0.019165306891509637 -0.13040009872948208 1.0 3758 +22954 TRIM32 tripartite motif containing 32 Novel U 0.019160362243146656 -0.1304427299766975 1.0 3759 +2099 ESR1 estrogen receptor 1 Novel U 0.01914482407591457 -0.130576695306468 1.0 3760 +118426 BORCS5 BLOC-1 related complex subunit 5 Novel U 0.01913825344827824 -0.1306333452501166 1.0 3761 +528 ATP6V1C1 ATPase H+ transporting V1 subunit C1 Novel N 0.01913334886049106 -0.13067563110728908 1.0 3762 +8448 DOC2A double C2 domain alpha Novel U 0.01913192468575542 -0.1306879099066649 1.0 3763 +121364 OR10A7 olfactory receptor family 10 subfamily A member 7 Novel U 0.019109796653410085 -0.13087869103973146 1.0 3764 +91608 RASL10B RAS like family 10 member B Novel U 0.01909321260346469 -0.13102167365065853 1.0 3765 +7040 TGFB1 transforming growth factor beta 1 Novel U 0.019091606371649535 -0.1310355220905415 1.0 3766 +306 ANXA3 annexin A3 Novel U 0.019089319156787053 -0.13105524175816588 1.0 3767 +312 ANXA13 annexin A13 Novel U 0.019058465540619636 -0.1313212522086098 1.0 3768 +3782 KCNN3 potassium calcium-activated channel subfamily N member 3 Novel U 0.019044820453675875 -0.1314388959786159 1.0 3769 +2354 FOSB FosB proto-oncogene, AP-1 transcription factor subunit Novel N 0.019043905984242458 -0.13144678025463014 1.0 3770 +5834 PYGB glycogen phosphorylase B Novel U 0.019043730871977256 -0.13144829001907044 1.0 3771 +4947 OAZ2 ornithine decarboxylase antizyme 2 Novel N 0.019043202383908907 -0.13145284648170202 1.0 3772 +7415 VCP valosin containing protein Novel U 0.01904248112980718 -0.13145906491416853 1.0 3773 +80709 AKNA AT-hook transcription factor Novel N 0.01903860600178444 -0.13149247508383108 1.0 3774 +655 BMP7 bone morphogenetic protein 7 Novel U 0.01902663573596556 -0.13159567905788508 1.0 3775 +9354 UBE4A ubiquitination factor E4A Novel U 0.01902431793561645 -0.13161566242422892 1.0 3776 +27129 HSPB7 heat shock protein family B (small) member 7 Novel U 0.01900416847160851 -0.1317893849456952 1.0 3777 +171024 SYNPO2 synaptopodin 2 Novel U 0.019000126957055986 -0.13182422964917367 1.0 3778 +282770 OR10AG1 olfactory receptor family 10 subfamily AG member 1 Novel U 0.018986069885009994 -0.1319454254288381 1.0 3779 +715 C1R complement C1r Novel U 0.01898444709470573 -0.13195941663095428 1.0 3780 +55332 DRAM1 DNA damage regulated autophagy modulator 1 Novel N 0.018983180219062548 -0.1319703392456219 1.0 3781 +81099 OR4F17 olfactory receptor family 4 subfamily F member 17 Novel U 0.018972920555403762 -0.13205879493057202 1.0 3782 +255809 C19orf38 chromosome 19 open reading frame 38 Novel U 0.018960891346075818 -0.1321625070975494 1.0 3783 +1329 COX5B cytochrome c oxidase subunit 5B Novel N 0.018944866320471196 -0.13230066997143525 1.0 3784 +64855 NIBAN2 niban apoptosis regulator 2 Novel U 0.018944652572633905 -0.13230251283997196 1.0 3785 +64224 HERPUD2 HERPUD family member 2 Novel U 0.018941641406947988 -0.13232847419037336 1.0 3786 +4354 MPP1 MAGUK p55 scaffold protein 1 Novel N 0.018936469817926675 -0.13237306205059712 1.0 3787 +2288 FKBP4 FKBP prolyl isomerase 4 Novel U 0.018921637795044965 -0.13250093921956005 1.0 3788 +1870 E2F2 E2F transcription factor 2 Novel U 0.018917452271615218 -0.13253702552357216 1.0 3789 +8840 CCN4 cellular communication network factor 4 Novel U 0.01890814034415868 -0.13261731011659275 1.0 3790 +2734 GLG1 golgi glycoprotein 1 Novel U 0.018899408082930953 -0.13269259700452116 1.0 3791 +3660 IRF2 interferon regulatory factor 2 Novel N 0.018895536343718027 -0.13272597795690105 1.0 3792 +2055 CLN8 CLN8 transmembrane ER and ERGIC protein Novel N 0.01889521946177247 -0.13272871001620384 1.0 3793 +6730 SRP68 signal recognition particle 68 Novel U 0.018887985630313717 -0.13279107790054961 1.0 3794 +8111 GPR68 G protein-coupled receptor 68 Novel N 0.018882408499856142 -0.13283916221511274 1.0 3795 +5738 PTGFRN prostaglandin F2 receptor inhibitor Novel U 0.01887512695242693 -0.1329019414919749 1.0 3796 +146310 RNF151 ring finger protein 151 Novel U 0.018837438559299372 -0.13322687930081942 1.0 3797 +120146 TRIM64 tripartite motif containing 64 Novel U 0.018833279263731083 -0.1332627394762247 1.0 3798 +387496 RASL11A RAS like family 11 member A Novel U 0.018831146918613238 -0.1332811239042354 1.0 3799 +2633 GBP1 guanylate binding protein 1 Novel U 0.018820714488659906 -0.1333710691273837 1.0 3800 +2915 GRM5 glutamate metabotropic receptor 5 Novel U 0.018806790067576445 -0.13349112123098425 1.0 3801 +55561 CDC42BPG CDC42 binding protein kinase gamma Novel N 0.018803752671355034 -0.13351730873304724 1.0 3802 +10956 OS9 OS9 endoplasmic reticulum lectin Novel U 0.01880151234410015 -0.13353662415004663 1.0 3803 +11120 BTN2A1 butyrophilin subfamily 2 member A1 Novel N 0.018785767677361388 -0.13367236985546224 1.0 3804 +6249 CLIP1 CAP-Gly domain containing linker protein 1 Novel U 0.01877677393302984 -0.13374991117080856 1.0 3805 +390649 OR4F15 olfactory receptor family 4 subfamily F member 15 Novel U 0.0187657637195808 -0.13384483786669962 1.0 3806 +79694 MANEA mannosidase endo-alpha Novel U 0.018761277966781415 -0.1338835126565936 1.0 3807 +27179 IL36A interleukin 36 alpha Novel U 0.018752713289668564 -0.13395735468549333 1.0 3808 +104909134 LINC02210-CRHR1 LINC02210-CRHR1 readthrough Novel U 0.018745532765747197 -0.13401926296854133 1.0 3809 +23601 CLEC5A C-type lectin domain containing 5A Novel U 0.01874036145516276 -0.13406384842816743 1.0 3810 +102724488 SYT15B synaptotagmin 15B Novel U 0.018736819563451815 -0.134094385536179 1.0 3811 +9885 OSBPL2 oxysterol binding protein like 2 Novel U 0.018725257727163644 -0.13419406815562585 1.0 3812 +643246 MAP1LC3B2 microtubule associated protein 1 light chain 3 beta 2 Novel U 0.01871572328648332 -0.13427627118966703 1.0 3813 +27248 ERLEC1 endoplasmic reticulum lectin 1 Novel U 0.01870814082936841 -0.13434164481788827 1.0 3814 +11064 CNTRL centriolin Novel U 0.018706773604083057 -0.13435343261650615 1.0 3815 +284217 LAMA1 laminin subunit alpha 1 Novel N 0.01869879983522645 -0.13442218001498846 1.0 3816 +1613 DAPK3 death associated protein kinase 3 Novel U 0.018697843369900623 -0.13443042636675406 1.0 3817 +116379 IL22RA2 interleukin 22 receptor subunit alpha 2 Novel U 0.01869107037357863 -0.13448882107137125 1.0 3818 +113444 SMIM12 small integral membrane protein 12 Novel U 0.01868898594766981 -0.13450679235460475 1.0 3819 +219790 RTKN2 rhotekin 2 Novel U 0.01868227747444693 -0.13456463076077815 1.0 3820 +10769 PLK2 polo like kinase 2 Novel U 0.01868128725592349 -0.13457316812229939 1.0 3821 +10131 TRAP1 TNF receptor associated protein 1 Novel U 0.018670780278748345 -0.13466375606881423 1.0 3822 +25793 FBXO7 F-box protein 7 Novel U 0.018666875033633675 -0.13469742589884035 1.0 3823 +7402 UTRN utrophin Novel U 0.018665016323443268 -0.13471345113012317 1.0 3824 +3241 HPCAL1 hippocalcin like 1 Novel U 0.018652019849252983 -0.13482550275916988 1.0 3825 +54933 RHBDL2 rhomboid like 2 Novel U 0.018651054974582006 -0.13483382161373966 1.0 3826 +337 APOA4 apolipoprotein A4 Novel U 0.018616234872828312 -0.13513402989084222 1.0 3827 +2309 FOXO3 forkhead box O3 Novel U 0.018604659042816676 -0.13523383315989662 1.0 3828 +3455 IFNAR2 interferon alpha and beta receptor subunit 2 Novel U 0.01858674924829223 -0.1353882459354674 1.0 3829 +10399 RACK1 receptor for activated C kinase 1 Novel U 0.018583142942032893 -0.1354193384060316 1.0 3830 +7461 CLIP2 CAP-Gly domain containing linker protein 2 Novel U 0.018565938661008155 -0.1355676684597965 1.0 3831 +1521 CTSW cathepsin W Novel N 0.018551658502727386 -0.1356907876208072 1.0 3832 +10874 NMU neuromedin U Novel N 0.01855131635288865 -0.13569373753216368 1.0 3833 +5528 PPP2R5D protein phosphatase 2 regulatory subunit B'delta Novel U 0.018547700660640907 -0.13572491092585182 1.0 3834 +57139 RGL3 ral guanine nucleotide dissociation stimulator like 3 Novel U 0.0185287551988719 -0.13588825290792925 1.0 3835 +3710 ITPR3 inositol 1,4,5-trisphosphate receptor type 3 Novel N 0.018526825499638917 -0.13590489018504454 1.0 3836 +254879 OR2T6 olfactory receptor family 2 subfamily T member 6 Novel U 0.018524593217918574 -0.1359241362359037 1.0 3837 +344558 SH3RF3 SH3 domain containing ring finger 3 Novel U 0.018523299604009585 -0.13593528937972849 1.0 3838 +57337 SENP7 SUMO specific peptidase 7 Novel U 0.01850452998915263 -0.13609711526346496 1.0 3839 +5998 RGS3 regulator of G protein signaling 3 Novel U 0.01846086540105846 -0.1364735779991246 1.0 3840 +10401 PIAS3 protein inhibitor of activated STAT 3 Novel U 0.018457674617977142 -0.13650108795582222 1.0 3841 +3490 IGFBP7 insulin like growth factor binding protein 7 Novel N 0.01845727795732302 -0.13650450784277174 1.0 3842 +9436 NCR2 natural cytotoxicity triggering receptor 2 Novel U 0.01843727266816836 -0.13667698733270955 1.0 3843 +3685 ITGAV integrin subunit alpha V Novel U 0.018433371588466065 -0.136710621249823 1.0 3844 +11079 RER1 retention in endoplasmic reticulum sorting receptor 1 Novel N 0.018431993908045237 -0.13672249918942408 1.0 3845 +7168 TPM1 tropomyosin 1 Novel U 0.018407809491027816 -0.13693100984274978 1.0 3846 +7477 WNT7B Wnt family member 7B Novel U 0.018402851343337252 -0.13697375747704255 1.0 3847 +653720 GOLGA8M golgin A8 family member M Novel U 0.018402425472892205 -0.1369774292018836 1.0 3848 +64219 PJA1 praja ring finger ubiquitin ligase 1 Novel U 0.018401782757254858 -0.13698297049970976 1.0 3849 +58494 JAM2 junctional adhesion molecule 2 Novel U 0.018399496309336943 -0.13700268355497242 1.0 3850 +1543 CYP1A1 cytochrome P450 family 1 subfamily A member 1 Novel N 0.018389202200865703 -0.13709143621256997 1.0 3851 +6609 SMPD1 sphingomyelin phosphodiesterase 1 Novel U 0.018376982597482765 -0.1371967898989095 1.0 3852 +2793 GNGT2 G protein subunit gamma transducin 2 Novel U 0.01836673621215106 -0.13728513110218107 1.0 3853 +5995 RGR retinal G protein coupled receptor Novel N 0.018364036108818517 -0.13730841056802512 1.0 3854 +199675 MCEMP1 mast cell expressed membrane protein 1 Novel U 0.018355251013382024 -0.13738415297635656 1.0 3855 +8544 PIR pirin Novel N 0.018348736845099075 -0.137440316144713 1.0 3856 +5581 PRKCE protein kinase C epsilon Novel U 0.01834382890207519 -0.13748263092971105 1.0 3857 +7763 ZFAND5 zinc finger AN1-type containing 5 Novel U 0.01834267166864601 -0.13749260824271364 1.0 3858 +54949 SDHAF2 succinate dehydrogenase complex assembly factor 2 Novel U 0.018330577081595304 -0.13759688407643877 1.0 3859 +7289 TULP3 TUB like protein 3 Novel U 0.0183288597771532 -0.13761169015057007 1.0 3860 +2256 FGF11 fibroblast growth factor 11 Novel N 0.01832852490319431 -0.1376145773315139 1.0 3861 +114885 OSBPL11 oxysterol binding protein like 11 Novel N 0.018328503070194294 -0.13761476556896834 1.0 3862 +5125 PCSK5 proprotein convertase subtilisin/kexin type 5 Novel U 0.01832547806184878 -0.1376408462665508 1.0 3863 +624 BDKRB2 bradykinin receptor B2 Novel U 0.0183185098258616 -0.13770092426790048 1.0 3864 +10469 TIMM44 translocase of inner mitochondrial membrane 44 Novel U 0.0182913306912248 -0.13793525446142402 1.0 3865 +400499 LOC400499 putative uncharacterized protein LOC400499 Novel U 0.018265673749600215 -0.1381564607719432 1.0 3866 +79652 TMEM204 transmembrane protein 204 Novel U 0.018251863192044016 -0.1382755311790058 1.0 3867 +5663 PSEN1 presenilin 1 Novel U 0.01825101199862987 -0.13828286990851751 1.0 3868 +79629 OCEL1 occludin/ELL domain containing 1 Novel U 0.018249851873864097 -0.13829287214974073 1.0 3869 +490 ATP2B1 ATPase plasma membrane Ca2+ transporting 1 Novel N 0.018249193444130108 -0.13829854892970628 1.0 3870 +414062 CCL3L3 C-C motif chemokine ligand 3 like 3 Novel N 0.018246271310372986 -0.1383237426740237 1.0 3871 +23413 NCS1 neuronal calcium sensor 1 Novel U 0.018239864383894532 -0.13837898123631237 1.0 3872 +2247 FGF2 fibroblast growth factor 2 Novel U 0.018236000860070822 -0.13841229135811686 1.0 3873 +391107 OR10K2 olfactory receptor family 10 subfamily K member 2 Novel U 0.018231958482918805 -0.13844714349866458 1.0 3874 +11119 BTN3A1 butyrophilin subfamily 3 member A1 Novel U 0.018223658529041845 -0.1385187031647178 1.0 3875 +84898 PLXDC2 plexin domain containing 2 Novel U 0.01820855921730334 -0.1386488848165267 1.0 3876 +3458 IFNG interferon gamma Novel U 0.018199719375056083 -0.13872509923513124 1.0 3877 +6184 RPN1 ribophorin I Novel N 0.018194899072540387 -0.13876665841044858 1.0 3878 +3814 KISS1 KiSS-1 metastasis suppressor Novel N 0.0181823367012738 -0.13887496733673899 1.0 3879 +8498 RANBP3 RAN binding protein 3 Novel U 0.018162122064549233 -0.13904925175745272 1.0 3880 +6890 TAP1 transporter 1, ATP binding cassette subfamily B member Novel U 0.01816079424001585 -0.1390606998548271 1.0 3881 +9378 NRXN1 neurexin 1 Novel U 0.01815528650143442 -0.13910818589383864 1.0 3882 +9183 ZW10 zw10 kinetochore protein Novel U 0.01815252570371629 -0.13913198864812845 1.0 3883 +9751 SNPH syntaphilin Novel U 0.01815202414076213 -0.13913631297065315 1.0 3884 +9754 STARD8 StAR related lipid transfer domain containing 8 Novel U 0.018147735382845417 -0.13917328933086584 1.0 3885 +84938 ATG4C autophagy related 4C cysteine peptidase Novel U 0.018138420842678284 -0.1392535964498788 1.0 3886 +57511 COG6 component of oligomeric golgi complex 6 Novel U 0.018134682455416756 -0.13928582768248302 1.0 3887 +1365 CLDN3 claudin 3 Novel U 0.0181151855334182 -0.1394539241861461 1.0 3888 +79037 PVRIG PVR related immunoglobulin domain containing Novel U 0.01810163054522136 -0.13957079115228835 1.0 3889 +55706 NDC1 NDC1 transmembrane nucleoporin Novel U 0.018100505238975433 -0.1395804931988732 1.0 3890 +50964 SOST sclerostin Novel U 0.01808787859196114 -0.1396893562910191 1.0 3891 +79290 OR13A1 olfactory receptor family 13 subfamily A member 1 Novel U 0.018083221740540837 -0.13972950624093888 1.0 3892 +93323 HAUS8 HAUS augmin like complex subunit 8 Novel U 0.01807164555264779 -0.13982931259553744 1.0 3893 +25962 VIRMA vir like m6A methyltransferase associated Novel N 0.018069922148507916 -0.13984417125939896 1.0 3894 +84106 PRAM1 PML-RARA regulated adaptor molecule 1 Novel U 0.018066669189371852 -0.13987221727904103 1.0 3895 +5733 PTGER3 prostaglandin E receptor 3 Novel N 0.01805731119836236 -0.13995289901793925 1.0 3896 +5716 PSMD10 proteasome 26S subunit, non-ATPase 10 Novel U 0.01805443157332416 -0.1399777262650718 1.0 3897 +6338 SCNN1B sodium channel epithelial 1 subunit beta Novel U 0.018031670549766628 -0.14017396485494246 1.0 3898 +8028 MLLT10 MLLT10 histone lysine methyltransferase DOT1L cofactor Novel U 0.018009487806783304 -0.14036521768641144 1.0 3899 +10897 YIF1A Yip1 interacting factor homolog A, membrane trafficking protein Novel U 0.018008810293501182 -0.1403710589988975 1.0 3900 +5997 RGS2 regulator of G protein signaling 2 Novel U 0.018000984975073946 -0.14043852650314081 1.0 3901 +84166 NLRC5 NLR family CARD domain containing 5 Novel U 0.017998817978666485 -0.14045720968398195 1.0 3902 +9921 RNF10 ring finger protein 10 Novel U 0.017985138925376867 -0.14057514630144272 1.0 3903 +56670 SUCNR1 succinate receptor 1 Novel N 0.017976197125199878 -0.1406522397701614 1.0 3904 +23033 DOP1A DOP1 leucine zipper like protein A Novel U 0.01797593380197948 -0.14065451006250218 1.0 3905 +79908 BTNL8 butyrophilin like 8 Novel U 0.017971779215030494 -0.14069032964163064 1.0 3906 +128368 OR10Z1 olfactory receptor family 10 subfamily Z member 1 Novel U 0.017925144965847812 -0.1410923958877357 1.0 3907 +54532 USP53 ubiquitin specific peptidase 53 Novel U 0.017919881345081736 -0.14113777721754003 1.0 3908 +1437 CSF2 colony stimulating factor 2 Novel U 0.01790730063680819 -0.14124624423990106 1.0 3909 +6640 SNTA1 syntrophin alpha 1 Novel U 0.017905204844174523 -0.14126431352356278 1.0 3910 +51594 NBAS NBAS subunit of NRZ tethering complex Novel U 0.01790479391354709 -0.14126785644186163 1.0 3911 +29119 CTNNA3 catenin alpha 3 Novel N 0.017903113695842764 -0.14128234276547266 1.0 3912 +5562 PRKAA1 protein kinase AMP-activated catalytic subunit alpha 1 Novel U 0.017888051002406202 -0.14141220870547194 1.0 3913 +65078 RTN4R reticulon 4 receptor Novel U 0.01788770387659922 -0.1414152015181061 1.0 3914 +10435 CDC42EP2 CDC42 effector protein 2 Novel U 0.017874314679423183 -0.1415306390847289 1.0 3915 +2262 GPC5 glypican 5 Novel U 0.017848908438705458 -0.14174968392863757 1.0 3916 +2944 GSTM1 glutathione S-transferase mu 1 Novel N 0.017844627583912896 -0.1417865921505288 1.0 3917 +8870 IER3 immediate early response 3 Novel N 0.01783818754375368 -0.14184211620885423 1.0 3918 +7170 TPM3 tropomyosin 3 Novel U 0.01782851128126142 -0.1419255419872205 1.0 3919 +220441 RNF152 ring finger protein 152 Novel U 0.017818703282277495 -0.1420101035573622 1.0 3920 +26493 OR8B8 olfactory receptor family 8 subfamily B member 8 Novel U 0.017810412982417353 -0.14208157998943247 1.0 3921 +129303 TMEM150A transmembrane protein 150A Novel U 0.017805115911582656 -0.1421272497155069 1.0 3922 +10018 BCL2L11 BCL2 like 11 Novel U 0.017794577695961707 -0.14221810699035572 1.0 3923 +53829 P2RY13 purinergic receptor P2Y13 Novel U 0.01775798145325744 -0.1425336286119865 1.0 3924 +6921 ELOC elongin C Novel N 0.017754574812200254 -0.14256299963019087 1.0 3925 +51599 LSR lipolysis stimulated lipoprotein receptor Novel U 0.017738792431965782 -0.1426990704898421 1.0 3926 +27335 EIF3K eukaryotic translation initiation factor 3 subunit K Novel N 0.017722894052527294 -0.14283614145918366 1.0 3927 +358 AQP1 aquaporin 1 (Colton blood group) Novel U 0.017714314843146926 -0.14291010878085322 1.0 3928 +9228 DLGAP2 DLG associated protein 2 Novel U 0.017713641688857328 -0.14291591251143776 1.0 3929 +128674 PROKR2 prokineticin receptor 2 Novel N 0.017694672514346196 -0.1430794589375317 1.0 3930 +2864 FFAR1 free fatty acid receptor 1 Novel U 0.01768773178536488 -0.1431392997818824 1.0 3931 +9706 ULK2 unc-51 like autophagy activating kinase 2 Novel U 0.017681383382755572 -0.1431940337692548 1.0 3932 +1414 CRYBB1 crystallin beta B1 Novel N 0.01767468496064411 -0.14325178551781698 1.0 3933 +5479 PPIB peptidylprolyl isomerase B Novel U 0.017672281349312913 -0.1432725087202265 1.0 3934 +6320 CLEC11A C-type lectin domain containing 11A Novel N 0.017669569213056544 -0.1432958919302628 1.0 3935 +8045 RASSF7 Ras association domain family member 7 Novel U 0.017669103768077416 -0.1432999048546436 1.0 3936 +79549 OR6J1 olfactory receptor family 6 subfamily J member 1 Novel U 0.017660821915469475 -0.14337130845708668 1.0 3937 +64121 RRAGC Ras related GTP binding C Novel U 0.01765528437674768 -0.14341905142380224 1.0 3938 +253738 EBF3 EBF transcription factor 3 Novel U 0.01764065420187687 -0.14354518832089525 1.0 3939 +390181 OR5AK2 olfactory receptor family 5 subfamily AK member 2 Novel U 0.017636253654391094 -0.1435831284966121 1.0 3940 +4864 NPC1 NPC intracellular cholesterol transporter 1 Novel U 0.017617250417936603 -0.14374696859437316 1.0 3941 +114804 RNF157 ring finger protein 157 Novel U 0.01760774159923518 -0.14382895072354177 1.0 3942 +186 AGTR2 angiotensin II receptor type 2 Novel U 0.017605240669548217 -0.14385051297507648 1.0 3943 +57515 SERINC1 serine incorporator 1 Novel U 0.017604499900460212 -0.14385689965979134 1.0 3944 +58504 ARHGAP22 Rho GTPase activating protein 22 Novel U 0.01758615325391724 -0.14401507883997397 1.0 3945 +51586 MED15 mediator complex subunit 15 Novel U 0.017585520685126428 -0.14402053265478995 1.0 3946 +23326 USP22 ubiquitin specific peptidase 22 Novel U 0.017567292360352784 -0.14417769170083386 1.0 3947 +6554 SLC10A1 solute carrier family 10 member 1 Novel N 0.017566220972327264 -0.1441869288809985 1.0 3948 +8638 OASL 2'-5'-oligoadenylate synthetase like Novel U 0.017551548278717438 -0.14431343236166658 1.0 3949 +2672 GFI1 growth factor independent 1 transcriptional repressor Novel U 0.017533697745741542 -0.1444673342022747 1.0 3950 +64778 FNDC3B fibronectin type III domain containing 3B Novel U 0.01753178176973929 -0.14448385316188816 1.0 3951 +23184 MESD mesoderm development LRP chaperone Novel U 0.017520637374820777 -0.14457993672940625 1.0 3952 +8086 AAAS aladin WD repeat nucleoporin Novel U 0.017499197711052426 -0.14476478295895157 1.0 3953 +199 AIF1 allograft inflammatory factor 1 Novel U 0.017496905659013205 -0.14478454433123564 1.0 3954 +9283 GPR37L1 G protein-coupled receptor 37 like 1 Novel U 0.017495940142887887 -0.14479286871622873 1.0 3955 +5034 P4HB prolyl 4-hydroxylase subunit beta Novel U 0.017464073310897228 -0.14506761480388533 1.0 3956 +143244 EIF5AL1 eukaryotic translation initiation factor 5A like 1 Novel U 0.01745555788147934 -0.14514103223420807 1.0 3957 +283093 OR4C12 olfactory receptor family 4 subfamily C member 12 Novel U 0.01745445650603072 -0.14515052795677122 1.0 3958 +6289 SAA2 serum amyloid A2 Novel U 0.017448740463807972 -0.14519980992612544 1.0 3959 +91012 CERS5 ceramide synthase 5 Novel N 0.017432808727569915 -0.14533716848759984 1.0 3960 +2615 LRRC32 leucine rich repeat containing 32 Novel U 0.01742508384790791 -0.14540377003950106 1.0 3961 +152579 SCFD2 sec1 family domain containing 2 Novel U 0.017421216218988587 -0.14543711555418554 1.0 3962 +5540 NPY4R neuropeptide Y receptor Y4 Novel N 0.017419264330418592 -0.14545394414098403 1.0 3963 +124538 OR4D2 olfactory receptor family 4 subfamily D member 2 Novel U 0.017413009602569637 -0.14550787049319755 1.0 3964 +10190 TXNDC9 thioredoxin domain containing 9 Novel U 0.017407347809428767 -0.14555668474354508 1.0 3965 +202018 TAPT1 transmembrane anterior posterior transformation 1 Novel U 0.01740524676187635 -0.14557479933351047 1.0 3966 +83464 APH1B aph-1 homolog B, gamma-secretase subunit Novel N 0.01738851197322827 -0.14571908156746985 1.0 3967 +405 ARNT aryl hydrocarbon receptor nuclear translocator Novel U 0.01738651589673143 -0.1457362911290708 1.0 3968 +10294 DNAJA2 DnaJ heat shock protein family (Hsp40) member A2 Novel U 0.017383676754644577 -0.14576076934456747 1.0 3969 +7222 TRPC3 transient receptor potential cation channel subfamily C member 3 Novel N 0.01736563789386239 -0.14591629488997282 1.0 3970 +7087 ICAM5 intercellular adhesion molecule 5 Novel U 0.01736284786338729 -0.14594034968016037 1.0 3971 +55503 TRPV6 transient receptor potential cation channel subfamily V member 6 Novel U 0.017347112198448558 -0.14607601777480683 1.0 3972 +11255 HRH3 histamine receptor H3 Novel U 0.017342969065061473 -0.14611173860482451 1.0 3973 +339302 CPLX4 complexin 4 Novel U 0.017340269187023468 -0.14613501612824792 1.0 3974 +57113 TRPC7 transient receptor potential cation channel subfamily C member 7 Novel N 0.017325427970238266 -0.14626297256423734 1.0 3975 +2914 GRM4 glutamate metabotropic receptor 4 Novel U 0.017325284153953728 -0.1462642125042957 1.0 3976 +51257 MARCHF2 membrane associated ring-CH-type finger 2 Novel U 0.017325179157038007 -0.1462651177556184 1.0 3977 +51776 MAP3K20 mitogen-activated protein kinase kinase kinase 20 Novel U 0.017317564356383174 -0.14633077023995741 1.0 3978 +390113 OR4X1 olfactory receptor family 4 subfamily X member 1 Novel U 0.017300969885914824 -0.14647384269344912 1.0 3979 +85458 DIXDC1 DIX domain containing 1 Novel N 0.01729785882819421 -0.14650066528244898 1.0 3980 +201799 TMEM154 transmembrane protein 154 Novel U 0.017294852087317555 -0.146526588483497 1.0 3981 +3833 KIFC1 kinesin family member C1 Novel U 0.01728742440928955 -0.14659062765372785 1.0 3982 +140290 TCP10L t-complex 10 like Novel N 0.017279047144740333 -0.1466628538687729 1.0 3983 +50999 TMED5 transmembrane p24 trafficking protein 5 Novel U 0.017249851164556497 -0.14691457268830163 1.0 3984 +28996 HIPK2 homeodomain interacting protein kinase 2 Novel U 0.017244797130901678 -0.14695814702207768 1.0 3985 +7054 TH tyrosine hydroxylase Novel U 0.017243912210670627 -0.14696577653389864 1.0 3986 +728393 USP17L27 ubiquitin specific peptidase 17 like family member 27 Novel U 0.017236464431795096 -0.1470299890074945 1.0 3987 +246330 PELI3 pellino E3 ubiquitin protein ligase family member 3 Novel U 0.017223892976401083 -0.14713837625435566 1.0 3988 +162494 RHBDL3 rhomboid like 3 Novel U 0.017203283737998946 -0.14731606281015225 1.0 3989 +2785 GNG3 G protein subunit gamma 3 Novel U 0.017193276350187633 -0.14740234344983513 1.0 3990 +54756 IL17RD interleukin 17 receptor D Novel N 0.01719026142438171 -0.14742833721884221 1.0 3991 +8878 SQSTM1 sequestosome 1 Novel U 0.01718528793902853 -0.14747121708977523 1.0 3992 +6446 SGK1 serum/glucocorticoid regulated kinase 1 Novel U 0.01716356748921062 -0.1476584841708381 1.0 3993 +1915 EEF1A1 eukaryotic translation elongation factor 1 alpha 1 Novel U 0.01713507984975153 -0.14790409589309061 1.0 3994 +4633 MYL2 myosin light chain 2 Novel U 0.017128865942364877 -0.14795767030375195 1.0 3995 +147700 KLC3 kinesin light chain 3 Novel U 0.017122232922694533 -0.14801485817245225 1.0 3996 +10542 LAMTOR5 late endosomal/lysosomal adaptor, MAPK and MTOR activator 5 Novel U 0.017115275220353676 -0.14807484535592222 1.0 3997 +196528 ARID2 AT-rich interaction domain 2 Novel U 0.017111777754489816 -0.14810499943785574 1.0 3998 +56244 BTNL2 butyrophilin like 2 Novel U 0.017105554328219492 -0.14815865591742333 1.0 3999 +390054 OR52A5 olfactory receptor family 52 subfamily A member 5 Novel U 0.017100157826362435 -0.1482051829073887 1.0 4000 +79866 BORA BORA aurora kinase A activator Novel U 0.01709690023109654 -0.1482332688983255 1.0 4001 +114883 OSBPL9 oxysterol binding protein like 9 Novel N 0.01709274673918794 -0.14826907903635037 1.0 4002 +84962 AJUBA ajuba LIM protein Novel U 0.017062113007089603 -0.14853319371354218 1.0 4003 +4780 NFE2L2 NFE2 like bZIP transcription factor 2 Novel U 0.017059195002563303 -0.14855835185689326 1.0 4004 +27244 SESN1 sestrin 1 Novel N 0.01705542534236337 -0.1485908527152161 1.0 4005 +652 BMP4 bone morphogenetic protein 4 Novel U 0.017048146737580917 -0.1486536066214771 1.0 4006 +1603 DAD1 defender against cell death 1 Novel N 0.017047393406839906 -0.14866010160892565 1.0 4007 +3350 HTR1A 5-hydroxytryptamine receptor 1A Novel N 0.017027589714436544 -0.14883084299327706 1.0 4008 +51633 OTUD6B OTU deubiquitinase 6B Novel U 0.01700976770832402 -0.14898449888398635 1.0 4009 +1439 CSF2RB colony stimulating factor 2 receptor subunit beta Novel U 0.017007891017421266 -0.14900067913947657 1.0 4010 +392197 USP17L7 ubiquitin specific peptidase 17 like family member 7 Novel U 0.0170024820743152 -0.14904731339408916 1.0 4011 +4842 NOS1 nitric oxide synthase 1 Novel U 0.0169985591005651 -0.14908113607499246 1.0 4012 +187 APLNR apelin receptor Novel U 0.016997911634196325 -0.1490867183321733 1.0 4013 +23746 AIPL1 aryl hydrocarbon receptor interacting protein like 1 Novel N 0.016988002536975553 -0.14917215154041985 1.0 4014 +1427 CRYGS crystallin gamma S Novel N 0.016985841553760424 -0.14919078287735418 1.0 4015 +9825 SPATA2 spermatogenesis associated 2 Novel N 0.01695115640618731 -0.14948982762075066 1.0 4016 +115106 HAUS1 HAUS augmin like complex subunit 1 Novel U 0.01693044000795313 -0.1496684380758736 1.0 4017 +219982 OR5A1 olfactory receptor family 5 subfamily A member 1 Novel U 0.016929181313740688 -0.14967929015274542 1.0 4018 +10505 SEMA4F ssemaphorin 4F Novel N 0.016924583800945428 -0.14971892850317256 1.0 4019 +285533 RNF175 ring finger protein 175 Novel U 0.016923789405037217 -0.14972577754194416 1.0 4020 +401993 OR2T5 olfactory receptor family 2 subfamily T member 5 Novel U 0.016912800439853163 -0.14982052104178745 1.0 4021 +11167 FSTL1 follistatin like 1 Novel U 0.016909617925972474 -0.1498479597039641 1.0 4022 +25820 ARIH1 ariadne RBR E3 ubiquitin protein ligase 1 Novel U 0.01690602018751263 -0.1498789783055792 1.0 4023 +5358 PLS3 plastin 3 Novel N 0.016894765702381975 -0.14997601103726535 1.0 4024 +1308 COL17A1 collagen type XVII alpha 1 chain Novel U 0.016861413854897755 -0.15026356047472106 1.0 4025 +54861 SNRK SNF related kinase Novel N 0.016848866297804552 -0.1503717416777354 1.0 4026 +5914 RARA retinoic acid receptor alpha Novel U 0.016847400705476436 -0.1503843775669373 1.0 4027 +85451 UNK unk zinc finger Novel N 0.016843719565969674 -0.1504161152268935 1.0 4028 +23542 MAPK8IP2 mitogen-activated protein kinase 8 interacting protein 2 Novel N 0.016835948633617124 -0.15048311383101998 1.0 4029 +58985 IL22RA1 interleukin 22 receptor subunit alpha 1 Novel U 0.01683330345756304 -0.15050591973065366 1.0 4030 +4324 MMP15 matrix metallopeptidase 15 Novel U 0.01682749496460064 -0.15055599878203435 1.0 4031 +343563 OR2T29 olfactory receptor family 2 subfamily T member 29 Novel U 0.016819939689310795 -0.15062113805686603 1.0 4032 +9263 STK17A serine/threonine kinase 17a Novel N 0.016819238529721562 -0.15062718324058624 1.0 4033 +4485 MST1 macrophage stimulating 1 Novel U 0.016817118121156518 -0.15064546475528623 1.0 4034 +654483 BOLA2B bolA family member 2B Novel N 0.01681486618877047 -0.15066488022818028 1.0 4035 +9840 TESPA1 thymocyte expressed, positive selection associated 1 Novel U 0.01680466112254678 -0.1507528651907287 1.0 4036 +11142 PKIG cAMP-dependent protein kinase inhibitor gamma Novel U 0.016803935598860106 -0.15075912043425194 1.0 4037 +1756 DMD dystrophin Novel U 0.0167954089592924 -0.15083263451506085 1.0 4038 +392509 ARL13A ADP ribosylation factor like GTPase 13A Novel U 0.016789351761898427 -0.15088485782005226 1.0 4039 +25943 DNAAF9 dynein axonemal assembly factor 9 Novel U 0.01678697908398581 -0.15090531432397936 1.0 4040 +54765 TRIM44 tripartite motif containing 44 Novel U 0.016786393242908895 -0.15091036526672502 1.0 4041 +55324 ABCF3 ATP binding cassette subfamily F member 3 Novel U 0.01677852617480599 -0.1509781927239142 1.0 4042 +7475 WNT6 Wnt family member 6 Novel N 0.01677047911888212 -0.1510475719810956 1.0 4043 +6745 SSR1 signal sequence receptor subunit 1 Novel U 0.01676673805752675 -0.1510798262689198 1.0 4044 +84623 KIRREL3 kirre like nephrin family adhesion molecule 3 Novel U 0.016762758991433098 -0.1511141325608687 1.0 4045 +60672 MIIP migration and invasion inhibitory protein Novel U 0.016760321347506033 -0.15113514918192025 1.0 4046 +114876 OSBPL1A oxysterol binding protein like 1A Novel N 0.016759284824012392 -0.1511440857707448 1.0 4047 +8894 EIF2S2 eukaryotic translation initiation factor 2 subunit beta Novel N 0.016745471287541443 -0.15126318186110005 1.0 4048 +2853 GPR31 G protein-coupled receptor 31 Novel U 0.016740072977555472 -0.1513097244402004 1.0 4049 +288 ANK3 ankyrin 3 Novel U 0.016734570735422723 -0.15135716309051103 1.0 4050 +130574 LYPD6 LY6/PLAUR domain containing 6 Novel U 0.01673085197852468 -0.15138922507611988 1.0 4051 +100287478 USP17L21 ubiquitin specific peptidase 17 like family member 21 Novel U 0.016722938583233104 -0.15145745195217325 1.0 4052 +55432 YOD1 YOD1 deubiquitinase Novel U 0.01671857886600897 -0.15149504010185097 1.0 4053 +3913 LAMB2 laminin subunit beta 2 Novel N 0.016712821898333983 -0.15154467491794854 1.0 4054 +7326 UBE2G1 ubiquitin conjugating enzyme E2 G1 Novel U 0.016703311988379238 -0.1516266664555698 1.0 4055 +59277 NTN4 netrin 4 Novel U 0.016702325495653276 -0.1516351716944037 1.0 4056 +11155 LDB3 LIM domain binding 3 Novel U 0.016695509690143828 -0.1516939354867536 1.0 4057 +26259 FBXW8 F-box and WD repeat domain containing 8 Novel U 0.016694833024964557 -0.15169976948715605 1.0 4058 +83931 STK40 serine/threonine kinase 40 Novel U 0.016677260274602295 -0.1518512763709534 1.0 4059 +117283 IP6K3 inositol hexakisphosphate kinase 3 Novel U 0.016665807506092964 -0.15195001864133967 1.0 4060 +9867 PJA2 praja ring finger ubiquitin ligase 2 Novel U 0.016662210445858697 -0.1519810313955011 1.0 4061 +1417 CRYBB3 crystallin beta B3 Novel N 0.01664787640397575 -0.15210461512446416 1.0 4062 +7473 WNT3 Wnt family member 3 Novel U 0.016645735455095803 -0.15212307373148262 1.0 4063 +164153 UBL4B ubiquitin like 4B Novel U 0.01663344789043235 -0.15222901335921535 1.0 4064 +64837 KLC2 kinesin light chain 2 Novel U 0.016630959654435257 -0.1522504661696349 1.0 4065 +5915 RARB retinoic acid receptor beta Novel U 0.01662043860206095 -0.15234117546821588 1.0 4066 +2700 GJA3 gap junction protein alpha 3 Novel N 0.016612808887522004 -0.15240695653550637 1.0 4067 +6751 SSTR1 somatostatin receptor 1 Novel U 0.016607139319488148 -0.15245583781860542 1.0 4068 +23271 CAMSAP2 calmodulin regulated spectrin associated protein family member 2 Novel U 0.0166024803530914 -0.1524960060032058 1.0 4069 +9023 CH25H cholesterol 25-hydroxylase Novel N 0.01659297281867822 -0.1525779770596336 1.0 4070 +1821 DRP2 dystrophin related protein 2 Novel U 0.016589199922858216 -0.15261050581448396 1.0 4071 +115201 ATG4A autophagy related 4A cysteine peptidase Novel U 0.01658186600573263 -0.1526737366068653 1.0 4072 +54437 SEMA5B semaphorin 5B Novel U 0.01657453528846801 -0.1527369398110232 1.0 4073 +594855 CPLX3 complexin 3 Novel U 0.016571580908026892 -0.1527624115763962 1.0 4074 +343169 OR6F1 olfactory receptor family 6 subfamily F member 1 Novel U 0.01654990813397119 -0.15294926761160593 1.0 4075 +285643 KIF4B kinesin family member 4B Novel U 0.016543770297230254 -0.15300218616440533 1.0 4076 +130612 TMEM198 transmembrane protein 198 Novel U 0.016536397795103446 -0.15306574962487654 1.0 4077 +55662 HIF1AN hypoxia inducible factor 1 subunit alpha inhibitor Novel U 0.016521163370533776 -0.1531970961782284 1.0 4078 +10645 CAMKK2 calcium/calmodulin dependent protein kinase kinase 2 Novel U 0.01650860704327981 -0.1533053529948889 1.0 4079 +4091 SMAD6 SMAD family member 6 Novel U 0.016496770062475595 -0.15340740782627527 1.0 4080 +5999 RGS4 regulator of G protein signaling 4 Novel U 0.01647744398545698 -0.1535740313567276 1.0 4081 +3684 ITGAM integrin subunit alpha M Novel U 0.01647330440606884 -0.1536097215452524 1.0 4082 +54331 GNG2 G protein subunit gamma 2 Novel U 0.01647157088723281 -0.1536246674149334 1.0 4083 +1196 CLK2 CDC like kinase 2 Novel N 0.016468822475340095 -0.15364836338242127 1.0 4084 +6854 SYN2 synapsin II Novel N 0.01646212360675856 -0.15370611898031197 1.0 4085 +824 CAPN2 calpain 2 Novel U 0.016457641655720334 -0.15374476099258297 1.0 4086 +6340 SCNN1G sodium channel epithelial 1 subunit gamma Novel U 0.01644603178445918 -0.15384485775488846 1.0 4087 +10425 ARIH2 ariadne RBR E3 ubiquitin protein ligase 2 Novel U 0.01643484476825328 -0.15394130879012233 1.0 4088 +8887 TAX1BP1 Tax1 binding protein 1 Novel U 0.01642678552013383 -0.15401079316468838 1.0 4089 +8805 TRIM24 tripartite motif containing 24 Novel N 0.016423979284198875 -0.15403498767339877 1.0 4090 +643707 GOLGA6L4 golgin A6 family like 4 Novel U 0.016396726007849607 -0.1542699570941112 1.0 4091 +23786 BCL2L13 BCL2 like 13 Novel U 0.01639424674411908 -0.15429133254839017 1.0 4092 +390082 OR52E5 olfactory receptor family 52 subfamily E member 5 Novel U 0.016393052511482424 -0.15430162885725354 1.0 4093 +4626 MYH8 myosin heavy chain 8 Novel U 0.016390035391340266 -0.15432764154515707 1.0 4094 +8065 CUL5 cullin 5 Novel U 0.016387616916264863 -0.15434849289822716 1.0 4095 +85378 TUBGCP6 tubulin gamma complex component 6 Novel U 0.0163707521311363 -0.15449389592211735 1.0 4096 +3661 IRF3 interferon regulatory factor 3 Novel U 0.016369018440887468 -0.15450884326966713 1.0 4097 +8682 PEA15 proliferation and apoptosis adaptor protein 15 Novel U 0.016352925671078253 -0.1546475902133839 1.0 4098 +1485 CTAG1B cancer/testis antigen 1B Novel U 0.016351971910126523 -0.15465581324886243 1.0 4099 +27101 CACYBP calcyclin binding protein Novel U 0.016350958634748915 -0.15466454939953464 1.0 4100 +6000 RGS7 regulator of G protein signaling 7 Novel U 0.01632924163926686 -0.15485178669836935 1.0 4101 +255104 TMCO4 transmembrane and coiled-coil domains 4 Novel U 0.016323447716998486 -0.15490174012567864 1.0 4102 +7095 SEC62 SEC62 homolog, preprotein translocation factor Novel U 0.016321690364251795 -0.15491689148405424 1.0 4103 +80781 COL18A1 collagen type XVIII alpha 1 chain Novel U 0.016313470043626294 -0.15498776457654745 1.0 4104 +64853 AIDA axin interactor, dorsalization associated Novel U 0.01631128685256965 -0.15500658738270512 1.0 4105 +3184 HNRNPD heterogeneous nuclear ribonucleoprotein D Novel N 0.016310014328288238 -0.1550175586982055 1.0 4106 +9628 RGS6 regulator of G protein signaling 6 Novel U 0.016300902901767 -0.15509611463343037 1.0 4107 +440243 GOLGA6L22 golgin A6 family like 22 Novel U 0.01629343010032409 -0.15516054284395586 1.0 4108 +8590 OR6A2 olfactory receptor family 6 subfamily A member 2 Novel U 0.016280000219006354 -0.15527633117681625 1.0 4109 +11253 MAN1B1 mannosidase alpha class 1B member 1 Novel U 0.016273852973761313 -0.155329330846863 1.0 4110 +4355 MPP2 MAGUK p55 scaffold protein 2 Novel U 0.016272758746579134 -0.15533876493925725 1.0 4111 +10326 SIRPB1 signal regulatory protein beta 1 Novel N 0.016268781278569573 -0.15537305745301344 1.0 4112 +344807 CD200R1L CD200 receptor 1 like Novel U 0.016268270991210997 -0.15537745699468708 1.0 4113 +619373 MBOAT4 membrane bound O-acyltransferase domain containing 4 Novel N 0.01626097894105674 -0.1554403268228352 1.0 4114 +1102 RCBTB2 RCC1 and BTB domain containing protein 2 Novel U 0.016257333242662236 -0.15547175892035148 1.0 4115 +11236 RNF139 ring finger protein 139 Novel U 0.01625621339242215 -0.1554814139269212 1.0 4116 +79339 OR51B4 olfactory receptor family 51 subfamily B member 4 Novel U 0.016254328649787545 -0.15549766360198297 1.0 4117 +440270 GOLGA8B golgin A8 family member B Novel U 0.01624957153187116 -0.15553867801899285 1.0 4118 +100302736 TMED7-TICAM2 TMED7-TICAM2 readthrough Novel U 0.016246476532783556 -0.155565362155366 1.0 4119 +59345 GNB4 G protein subunit beta 4 Novel U 0.016243699869228106 -0.15558930170005694 1.0 4120 +26496 OR10A3 olfactory receptor family 10 subfamily A member 3 Novel U 0.01622795002548459 -0.15572509204002552 1.0 4121 +10848 PPP1R13L protein phosphatase 1 regulatory subunit 13 like Novel U 0.016223808138296037 -0.15576080212570032 1.0 4122 +55654 TMEM127 transmembrane protein 127 Novel U 0.016217967989365346 -0.1558111541051663 1.0 4123 +100423062 IGLL5 immunoglobulin lambda like polypeptide 5 Novel U 0.016205272504683888 -0.1559206106946433 1.0 4124 +467 ATF3 activating transcription factor 3 Novel U 0.01619302338476048 -0.15602621886357518 1.0 4125 +6867 TACC1 transforming acidic coiled-coil containing protein 1 Novel U 0.016189806778688906 -0.15605395145820386 1.0 4126 +2273 FHL1 four and a half LIM domains 1 Novel U 0.01618017968385727 -0.1561369533280247 1.0 4127 +390078 OR52E6 olfactory receptor family 52 subfamily E member 6 Novel U 0.01616168453975786 -0.15629641280876153 1.0 4128 +403273 OR5H14 olfactory receptor family 5 subfamily H member 14 Novel U 0.01615168930089173 -0.1563825887039515 1.0 4129 +2859 GPR35 G protein-coupled receptor 35 Novel U 0.016134027061650433 -0.1565348671335181 1.0 4130 +163786 SASS6 SAS-6 centriolar assembly protein Novel U 0.01612304553906334 -0.15662954646556468 1.0 4131 +51125 GOLGA7 golgin A7 Novel U 0.016109700110682475 -0.15674460667101026 1.0 4132 +79171 RBM42 RNA binding motif protein 42 Novel U 0.01609640372108619 -0.15685924407904028 1.0 4133 +1066 CES1 carboxylesterase 1 Novel U 0.01609044915821832 -0.15691058250051035 1.0 4134 +7849 PAX8 paired box 8 Novel U 0.01607720103322706 -0.1570248037858644 1.0 4135 +5021 OXTR oxytocin receptor Novel U 0.016074628618802163 -0.1570469823569655 1.0 4136 +55665 URGCP upregulator of cell proliferation Novel U 0.016071909734486373 -0.15707042374670807 1.0 4137 +83548 COG3 component of oligomeric golgi complex 3 Novel U 0.01607096428496359 -0.157078575123586 1.0 4138 +390144 OR5D16 olfactory receptor family 5 subfamily D member 16 Novel U 0.016061502457536826 -0.15716015210834391 1.0 4139 +10850 CCL27 C-C motif chemokine ligand 27 Novel U 0.01606021141655702 -0.15717128306915956 1.0 4140 +26224 FBXL3 F-box and leucine rich repeat protein 3 Novel U 0.016059769668065754 -0.15717509168966312 1.0 4141 +55070 DET1 DET1 partner of COP1 E3 ubiquitin ligase Novel U 0.016056116810531266 -0.1572065855110967 1.0 4142 +89858 SIGLEC12 sialic acid binding Ig like lectin 12 Novel U 0.016054346194443084 -0.15722185122194968 1.0 4143 +26191 PTPN22 protein tyrosine phosphatase non-receptor type 22 Novel U 0.01605121671293901 -0.15724883265518064 1.0 4144 +23310 NCAPD3 non-SMC condensin II complex subunit D3 Novel U 0.016035886327388556 -0.15738100655478537 1.0 4145 +5816 PVALB parvalbumin Novel U 0.01602897372262248 -0.15744060492074632 1.0 4146 +415116 PIM3 Pim-3 proto-oncogene, serine/threonine kinase Novel N 0.016025577440022146 -0.157469886631501 1.0 4147 +2355 FOSL2 FOS like 2, AP-1 transcription factor subunit Novel N 0.016018789038388402 -0.1575284141560086 1.0 4148 +58512 DLGAP3 DLG associated protein 3 Novel U 0.016017743113643304 -0.15753743179955043 1.0 4149 +81282 OR51G2 olfactory receptor family 51 subfamily G member 2 Novel U 0.016017453295121845 -0.1575399305262806 1.0 4150 +440854 CAPN14 calpain 14 Novel U 0.016014777071891813 -0.157563004105178 1.0 4151 +5957 RCVRN recoverin Novel N 0.016009041279259936 -0.1576124563565245 1.0 4152 +56302 TRPV5 transient receptor potential cation channel subfamily V member 5 Novel U 0.016005339760041298 -0.15764436972412893 1.0 4153 +84277 DNAJC30 DnaJ heat shock protein family (Hsp40) member C30 Novel U 0.015996543068826554 -0.15772021210771706 1.0 4154 +3987 LIMS1 LIM zinc finger domain containing 1 Novel U 0.015994929751022707 -0.1577341216408292 1.0 4155 +9370 ADIPOQ adiponectin, C1Q and collagen domain containing Novel U 0.01598711433266846 -0.15780150378966842 1.0 4156 +2890 GRIA1 glutamate ionotropic receptor AMPA type subunit 1 Novel N 0.015974093300725186 -0.1579137671481571 1.0 4157 +6210 RPS15A ribosomal protein S15a Novel U 0.015969309072162083 -0.1579550153048786 1.0 4158 +100431172 KLRF2 killer cell lectin like receptor F2 Novel U 0.015968854188425613 -0.1579589371734525 1.0 4159 +4543 MTNR1A melatonin receptor 1A Novel N 0.015963098072133922 -0.15800856464918342 1.0 4160 +7205 TRIP6 thyroid hormone receptor interactor 6 Novel N 0.015944745600454384 -0.1581667940519135 1.0 4161 +9908 G3BP2 G3BP stress granule assembly factor 2 Novel U 0.01592767484200192 -0.15831397291486168 1.0 4162 +1075 CTSC cathepsin C Novel U 0.01590079140398129 -0.15854575370251864 1.0 4163 +80763 SPX spexin hormone Novel N 0.01589974489661184 -0.15855477636926957 1.0 4164 +10421 CD2BP2 CD2 cytoplasmic tail binding protein 2 Novel U 0.015899617223179244 -0.15855587713059138 1.0 4165 +51161 C3orf18 chromosome 3 open reading frame 18 Novel U 0.01589673101423143 -0.15858076114218073 1.0 4166 +340061 STING1 stimulator of interferon response cGAMP interactor 1 Novel U 0.015884459544391966 -0.1586865620052592 1.0 4167 +23239 PHLPP1 PH domain and leucine rich repeat protein phosphatase 1 Novel U 0.01587536397065715 -0.15876498126260383 1.0 4168 +834 CASP1 caspase 1 Novel U 0.015865780462611872 -0.1588476073404718 1.0 4169 +50865 HEBP1 heme binding protein 1 Novel N 0.015863531860615634 -0.1588669940997626 1.0 4170 +168433 RNF133 ring finger protein 133 Novel U 0.015862423166370165 -0.1588765529227557 1.0 4171 +3358 HTR2C 5-hydroxytryptamine receptor 2C Novel U 0.015857963298094344 -0.15891500454419724 1.0 4172 +114788 CSMD3 CUB and Sushi multiple domains 3 Novel U 0.015854126717285817 -0.158948082371558 1.0 4173 +537 ATP6AP1 ATPase H+ transporting accessory protein 1 Novel U 0.01584818854831465 -0.15899927944986028 1.0 4174 +954 ENTPD2 ectonucleoside triphosphate diphosphohydrolase 2 Novel U 0.015840207989285943 -0.15906808539113151 1.0 4175 +64806 IL25 interleukin 25 Novel U 0.01583940837059208 -0.15907497945916504 1.0 4176 +64222 TOR3A torsin family 3 member A Novel U 0.01582409567711868 -0.1592070008230877 1.0 4177 +79567 RIPOR1 RHO family interacting cell polarization regulator 1 Novel U 0.01582043497922722 -0.15923856224168326 1.0 4178 +27202 C5AR2 complement C5a receptor 2 Novel U 0.015820234740465854 -0.15924028863909542 1.0 4179 +147111 NOTUM notum, palmitoleoyl-protein carboxylesterase Novel N 0.01581714076490463 -0.15926696395093692 1.0 4180 +5709 PSMD3 proteasome 26S subunit, non-ATPase 3 Novel U 0.015814363943769703 -0.15929090485422995 1.0 4181 +527 ATP6V0C ATPase H+ transporting V0 subunit c Novel U 0.015809580203443113 -0.1593321488015254 1.0 4182 +22937 SCAP SREBF chaperone Novel N 0.015796375982038376 -0.15944599156357236 1.0 4183 +10058 ABCB6 ATP binding cassette subfamily B member 6 (LAN blood group) Novel U 0.015773139983634218 -0.1596463252414293 1.0 4184 +100526664 LY75-CD302 LY75-CD302 readthrough Novel U 0.015766065334415682 -0.15970732070514232 1.0 4185 +5788 PTPRC protein tyrosine phosphatase receptor type C Novel U 0.01575300690353075 -0.15981990650587774 1.0 4186 +57805 CCAR2 cell cycle and apoptosis regulator 2 Novel U 0.01574412847751769 -0.15989645358192067 1.0 4187 +119032 BORCS7 BLOC-1 related complex subunit 7 Novel U 0.015739213919417253 -0.15993882540008736 1.0 4188 +105369274 OR4N4C olfactory receptor family 4 subfamily N member 4C Novel U 0.01573833007280093 -0.1599464456555302 1.0 4189 +9379 NRXN2 neurexin 2 Novel N 0.015737219555603518 -0.15995602019545793 1.0 4190 +1019 CDK4 cyclin dependent kinase 4 Novel U 0.01573557302656403 -0.1599702160656952 1.0 4191 +127064 OR2T12 olfactory receptor family 2 subfamily T member 12 Novel U 0.01573063598860609 -0.16001278169832395 1.0 4192 +1857 DVL3 dishevelled segment polarity protein 3 Novel U 0.01572733938295284 -0.16004120402489982 1.0 4193 +1967 EIF2B1 eukaryotic translation initiation factor 2B subunit alpha Novel U 0.015722425629756426 -0.16008356890342998 1.0 4194 +346562 GNAT3 G protein subunit alpha transducin 3 Novel U 0.015713291810412165 -0.16016231790273225 1.0 4195 +9928 KIF14 kinesin family member 14 Novel U 0.015707417370330858 -0.16021296553002023 1.0 4196 +9604 RNF14 ring finger protein 14 Novel U 0.01568643451868486 -0.16039387326503785 1.0 4197 +8972 MGAM maltase-glucoamylase Novel N 0.01567652264305535 -0.16047933042787552 1.0 4198 +7980 TFPI2 tissue factor pathway inhibitor 2 Novel U 0.01565063955536691 -0.16070248650065228 1.0 4199 +10261 IGSF6 immunoglobulin superfamily member 6 Novel N 0.01562792561224868 -0.16089831917736197 1.0 4200 +79802 HHIPL2 HHIP like 2 Novel U 0.015627636742031596 -0.16090080972810158 1.0 4201 +1510 CTSE cathepsin E Novel U 0.015623827558107213 -0.1609336513478991 1.0 4202 +59338 PLEKHA1 pleckstrin homology domain containing A1 Novel U 0.015620212054986407 -0.16096482311099258 1.0 4203 +197021 LCTL lactase like Novel U 0.015595701298750148 -0.16117614736134137 1.0 4204 +392636 AGMO alkylglycerol monooxygenase Novel U 0.015592932239094612 -0.1612000213475308 1.0 4205 +81624 DIAPH3 diaphanous related formin 3 Novel N 0.0155910479925188 -0.16121626674572528 1.0 4206 +2692 GHRHR growth hormone releasing hormone receptor Novel U 0.015588816107189308 -0.16123550937902362 1.0 4207 +5493 PPL periplakin Novel U 0.015573283496397592 -0.16136942680286318 1.0 4208 +23192 ATG4B autophagy related 4B cysteine peptidase Novel U 0.015570143282794303 -0.16139650076497408 1.0 4209 +51226 COPZ2 COPI coat complex subunit zeta 2 Novel U 0.015536805637511836 -0.16168392775538612 1.0 4210 +4007 PRICKLE3 prickle planar cell polarity protein 3 Novel N 0.015524262607888768 -0.16179206992393647 1.0 4211 +10567 RABAC1 Rab acceptor 1 Novel U 0.015517861989358315 -0.16184725410102502 1.0 4212 +1641 DCX doublecortin Novel N 0.01551540917925528 -0.16186840148021137 1.0 4213 +51065 RPS27L ribosomal protein S27 like Novel N 0.015511778492040296 -0.16189970415592492 1.0 4214 +729991 BORCS8 BLOC-1 related complex subunit 8 Novel U 0.015509430551363161 -0.16191994738296678 1.0 4215 +197358 NLRC3 NLR family CARD domain containing 3 Novel U 0.015507723138853796 -0.16193466817187674 1.0 4216 +10003 NAALAD2 N-acetylated alpha-linked acidic dipeptidase 2 Novel U 0.015492996117731441 -0.16206164004775664 1.0 4217 +81696 OR5V1 olfactory receptor family 5 subfamily V member 1 Novel U 0.015480215876688533 -0.1621718273806825 1.0 4218 +1026 CDKN1A cyclin dependent kinase inhibitor 1A Novel U 0.015475855513990345 -0.1622094210954403 1.0 4219 +10554 AGPAT1 1-acylglycerol-3-phosphate O-acyltransferase 1 Novel U 0.015461258135028135 -0.16233527523623106 1.0 4220 +79603 CERS4 ceramide synthase 4 Novel N 0.0154604473542118 -0.16234226554067363 1.0 4221 +7139 TNNT2 troponin T2, cardiac type Novel U 0.015457499477725355 -0.1623676812309369 1.0 4222 +8557 TCAP titin-cap Novel U 0.015439961337228922 -0.16251888971904702 1.0 4223 +51520 LARS1 leucyl-tRNA synthetase 1 Novel U 0.015436504514181064 -0.16254869339104047 1.0 4224 +51206 GP6 glycoprotein VI platelet Novel U 0.015422911376822232 -0.16266588926759992 1.0 4225 +5328 PLAU plasminogen activator, urokinase Novel U 0.015420182506186991 -0.1626894167563372 1.0 4226 +8499 PPFIA2 PTPRF interacting protein alpha 2 Novel U 0.015417017043724977 -0.16271670840639257 1.0 4227 +10130 PDIA6 protein disulfide isomerase family A member 6 Novel U 0.015416842946241611 -0.162718209421694 1.0 4228 +8685 MARCO macrophage receptor with collagenous structure Novel N 0.01541590838721807 -0.16272626690401534 1.0 4229 +50507 NOX4 NADPH oxidase 4 Novel N 0.015406431908201066 -0.1628079702103071 1.0 4230 +23177 CEP68 centrosomal protein 68 Novel N 0.015405571494836547 -0.16281538843141358 1.0 4231 +203100 HTRA4 HtrA serine peptidase 4 Novel N 0.015404995395808686 -0.16282035538118927 1.0 4232 +5683 PSMA2 proteasome 20S subunit alpha 2 Novel U 0.015402738651285539 -0.1628398123428589 1.0 4233 +23418 CRB1 crumbs cell polarity complex component 1 Novel U 0.015402666597560953 -0.1628404335680543 1.0 4234 +51112 TRAPPC12 trafficking protein particle complex subunit 12 Novel U 0.015395767912151637 -0.16289991192557474 1.0 4235 +10144 FAM13A family with sequence similarity 13 member A Novel U 0.015392534134860355 -0.16292779256521261 1.0 4236 +100 ADA adenosine deaminase Novel U 0.01538829018884677 -0.16296438257089 1.0 4237 +1401 CRP C-reactive protein Novel U 0.015379579639841781 -0.1630394822626687 1.0 4238 +9413 ENTREP1 endosomal transmembrane epsin interactor 1 Novel U 0.015379224988039793 -0.16304253996213205 1.0 4239 +91304 TMEM259 transmembrane protein 259 Novel U 0.015374355084527131 -0.16308452678208835 1.0 4240 +6571 SLC18A2 solute carrier family 18 member A2 Novel U 0.01535844343785512 -0.1632217121374632 1.0 4241 +10342 TFG trafficking from ER to golgi regulator Novel N 0.015340266879120528 -0.16337842487253687 1.0 4242 +79626 TNFAIP8L2 TNF alpha induced protein 8 like 2 Novel U 0.015331572734031134 -0.16345338313476795 1.0 4243 +10637 LEFTY1 left-right determination factor 1 Novel U 0.015323593420557115 -0.1635221783372473 1.0 4244 +57568 SIPA1L2 signal induced proliferation associated 1 like 2 Novel U 0.015316405236301687 -0.16358415266535475 1.0 4245 +5292 PIM1 Pim-1 proto-oncogene, serine/threonine kinase Novel U 0.015314262131440918 -0.16360262986058102 1.0 4246 +7043 TGFB3 transforming growth factor beta 3 Novel U 0.01531297201131419 -0.16361375288208277 1.0 4247 +10112 KIF20A kinesin family member 20A Novel U 0.01530963683067785 -0.16364250779037526 1.0 4248 +2865 FFAR3 free fatty acid receptor 3 Novel U 0.015299479822049124 -0.16373007841502518 1.0 4249 +26750 RPS6KC1 ribosomal protein S6 kinase C1 Novel N 0.015283506821289301 -0.16386779274659674 1.0 4250 +5710 PSMD4 proteasome 26S subunit ubiquitin receptor, non-ATPase 4 Novel U 0.01528246801550162 -0.1638767490126631 1.0 4251 +999 CDH1 cadherin 1 Novel U 0.015282431702986455 -0.16387706208807262 1.0 4252 +81470 OR2G2 olfactory receptor family 2 subfamily G member 2 Novel U 0.015280454440259947 -0.16389410944309482 1.0 4253 +160851 DGKH diacylglycerol kinase eta Novel U 0.015278321039117285 -0.1639125029758288 1.0 4254 +3240 HP haptoglobin Novel N 0.015269371281507599 -0.16398966505110055 1.0 4255 +1727 CYB5R3 cytochrome b5 reductase 3 Novel N 0.015267892630581037 -0.16400241352754785 1.0 4256 +5321 PLA2G4A phospholipase A2 group IVA Novel U 0.015255456498625721 -0.16410963405707227 1.0 4257 +7320 UBE2B ubiquitin conjugating enzyme E2 B Novel U 0.01525439047652656 -0.16411882497385952 1.0 4258 +4938 OAS1 2'-5'-oligoadenylate synthetase 1 Novel U 0.01525185359851336 -0.1641406971608781 1.0 4259 +80790 CMIP c-Maf inducing protein Novel U 0.01524517523338234 -0.16419827598428383 1.0 4260 +5413 SEPTIN5 septin 5 Novel U 0.015236506284549253 -0.16427301701209243 1.0 4261 +90864 SPSB3 splA/ryanodine receptor domain and SOCS box containing 3 Novel U 0.015226896887572382 -0.16435586629641755 1.0 4262 +374872 PEAK3 PEAK family member 3 Novel U 0.015223589463348645 -0.16438438189740223 1.0 4263 +3156 HMGCR 3-hydroxy-3-methylglutaryl-CoA reductase Novel N 0.015218538403586921 -0.16442793059118077 1.0 4264 +1528 CYB5A cytochrome b5 type A Novel N 0.015209974563627675 -0.164501765402398 1.0 4265 +4882 NPR2 natriuretic peptide receptor 2 Novel U 0.015204068546230088 -0.16455268527965763 1.0 4266 +5916 RARG retinoic acid receptor gamma Novel U 0.01520345557512048 -0.16455797012925488 1.0 4267 +158131 OR1Q1 olfactory receptor family 1 subfamily Q member 1 Novel U 0.015199063644489868 -0.1645958360130796 1.0 4268 +6620 SNCB synuclein beta Novel N 0.015195305999178241 -0.16462823328270695 1.0 4269 +94160 ABCC12 ATP binding cassette subfamily C member 12 Novel U 0.015184359696492632 -0.1647226089595253 1.0 4270 +3910 LAMA4 laminin subunit alpha 4 Novel N 0.015184092224005446 -0.16472491502557643 1.0 4271 +6904 TBCD tubulin folding cofactor D Novel U 0.015170217099462317 -0.16484454210947014 1.0 4272 +50863 NTM neurotrimin Novel N 0.015144991358902815 -0.16506203073617126 1.0 4273 +377841 ENTPD8 ectonucleoside triphosphate diphosphohydrolase 8 Novel U 0.01513515043842862 -0.16514687614534207 1.0 4274 +51384 WNT16 Wnt family member 16 Novel U 0.015122305479419923 -0.16525762145679265 1.0 4275 +26687 OR4E1 olfactory receptor family 4 subfamily E member 1 Novel U 0.015089982886226254 -0.16553629697827152 1.0 4276 +8786 RGS11 regulator of G protein signaling 11 Novel N 0.015083088617844085 -0.16559573725353363 1.0 4277 +91662 NLRP12 NLR family pyrin domain containing 12 Novel U 0.015081178058762648 -0.1656122095101111 1.0 4278 +442194 OR10C1 olfactory receptor family 10 subfamily C member 1 Novel U 0.015061469424180289 -0.16578213133497727 1.0 4279 +9358 ITGBL1 integrin subunit beta like 1 Novel U 0.015052580286447207 -0.16585877076419697 1.0 4280 +11118 BTN3A2 butyrophilin subfamily 3 member A2 Novel U 0.015049414660359585 -0.16588606382498236 1.0 4281 +6734 SRPRA SRP receptor subunit alpha Novel U 0.015043323446566724 -0.16593858040897033 1.0 4282 +22920 KIFAP3 kinesin associated protein 3 Novel U 0.01503270155897452 -0.16603015907798713 1.0 4283 +286 ANK1 ankyrin 1 Novel U 0.015031704002593863 -0.166038759704271 1.0 4284 +9364 RAB28 RAB28, member RAS oncogene family Novel N 0.01502885086881412 -0.16606335855186824 1.0 4285 +282775 OR5J2 olfactory receptor family 5 subfamily J member 2 Novel U 0.015020317611313642 -0.16613692969047122 1.0 4286 +4160 MC4R melanocortin 4 receptor Novel N 0.015015124795369874 -0.16618170056273396 1.0 4287 +9159 PCSK7 proprotein convertase subtilisin/kexin type 7 Novel N 0.015014856776789265 -0.16618401133703567 1.0 4288 +257106 ARHGAP30 Rho GTPase activating protein 30 Novel U 0.015012168662661146 -0.1662071874356228 1.0 4289 +57010 CABP4 calcium binding protein 4 Novel U 0.015006799050550586 -0.16625348259041078 1.0 4290 +112744 IL17F interleukin 17F Novel U 0.015002951062578797 -0.16628665876684742 1.0 4291 +3903 LAIR1 leukocyte associated immunoglobulin like receptor 1 Novel U 0.014998756626656434 -0.16632282191164743 1.0 4292 +10627 MYL12A myosin light chain 12A Novel U 0.014979406486546299 -0.1664896529067217 1.0 4293 +80895 ILKAP ILK associated serine/threonine phosphatase Novel U 0.014977118083529249 -0.16650938281825167 1.0 4294 +9975 NR1D2 nuclear receptor subfamily 1 group D member 2 Novel N 0.01496346324113304 -0.16662711069678776 1.0 4295 +3959 LGALS3BP galectin 3 binding protein Novel U 0.01496028580191962 -0.16665450560673395 1.0 4296 +1374 CPT1A carnitine palmitoyltransferase 1A Novel U 0.014955885742225844 -0.16669244157685717 1.0 4297 +23158 TBC1D9 TBC1 domain family member 9 Novel U 0.014945863551001796 -0.16677884984704108 1.0 4298 +85457 CIPC CLOCK interacting pacemaker Novel U 0.014929559574316706 -0.1669194177519017 1.0 4299 +4254 KITLG KIT ligand Novel U 0.014927562582699129 -0.166936635203394 1.0 4300 +322 APBB1 amyloid beta precursor protein binding family B member 1 Novel U 0.014922665911612737 -0.16697885280519142 1.0 4301 +79155 TNIP2 TNFAIP3 interacting protein 2 Novel U 0.014913123306687098 -0.16706112622886093 1.0 4302 +5721 PSME2 proteasome activator subunit 2 Novel U 0.01491257407123125 -0.16706586156912762 1.0 4303 +28514 DLL1 delta like canonical Notch ligand 1 Novel U 0.014910313569623967 -0.1670853509232286 1.0 4304 +90019 SYT8 synaptotagmin 8 Novel U 0.014910022531445589 -0.167087860165468 1.0 4305 +55861 DBNDD2 dysbindin domain containing 2 Novel U 0.01490333798191721 -0.16714549230885797 1.0 4306 +3562 IL3 interleukin 3 Novel U 0.014893190392174422 -0.16723298172675155 1.0 4307 +10499 NCOA2 nuclear receptor coactivator 2 Novel N 0.014889747822125097 -0.16726266251374702 1.0 4308 +284759 SIRPB2 signal regulatory protein beta 2 Novel U 0.014872276666313545 -0.16741329348037312 1.0 4309 +4146 MATN1 matrilin 1 Novel N 0.014869562250101527 -0.1674366963474903 1.0 4310 +132 ADK adenosine kinase Novel N 0.01485800869752587 -0.16753630754729915 1.0 4311 +54463 RETREG1 reticulophagy regulator 1 Novel U 0.014850289114425316 -0.16760286343386607 1.0 4312 +84518 CNFN cornifelin Novel U 0.014838082690559484 -0.16770810349043644 1.0 4313 +284521 OR2L13 olfactory receptor family 2 subfamily L member 13 Novel U 0.014837256190944866 -0.16771522931755453 1.0 4314 +140459 ASB6 ankyrin repeat and SOCS box containing 6 Novel U 0.01481830052377407 -0.1678786592874876 1.0 4315 +11215 AKAP11 A-kinase anchoring protein 11 Novel N 0.014809490374070493 -0.16795461770605388 1.0 4316 +837 CASP4 caspase 4 Novel U 0.014803821574005935 -0.1680034923679563 1.0 4317 +100287404 USP17L19 ubiquitin specific peptidase 17 like family member 19 Novel U 0.014802003643297585 -0.16801916601100614 1.0 4318 +545 ATR ATR serine/threonine kinase Novel U 0.01479618080622569 -0.16806936873291564 1.0 4319 +27429 HTRA2 HtrA serine peptidase 2 Novel U 0.014793800809480381 -0.16808988833758173 1.0 4320 +56907 SPIRE1 spire type actin nucleation factor 1 Novel U 0.014793271112364021 -0.1680944552242558 1.0 4321 +57586 SYT13 synaptotagmin 13 Novel U 0.014785621113742733 -0.1681604111747059 1.0 4322 +28955 DEXI Dexi homolog Novel U 0.01478502392546427 -0.1681655599495559 1.0 4323 +148109 FAM187B family with sequence similarity 187 member B Novel U 0.014780983090870652 -0.16820039879063645 1.0 4324 +10600 USP16 ubiquitin specific peptidase 16 Novel U 0.014772699621440864 -0.1682718163328234 1.0 4325 +26716 OR2H1 olfactory receptor family 2 subfamily H member 1 Novel U 0.014753192296895055 -0.16844000252407015 1.0 4326 +5346 PLIN1 perilipin 1 Novel N 0.014751822933391832 -0.1684518087577491 1.0 4327 +158880 USP51 ubiquitin specific peptidase 51 Novel N 0.014748621616118647 -0.16847940953703003 1.0 4328 +1155 TBCB tubulin folding cofactor B Novel U 0.014746729519175852 -0.16849572261868973 1.0 4329 +441308 OR4F21 olfactory receptor family 4 subfamily F member 21 Novel U 0.014741407747767294 -0.16854160530556403 1.0 4330 +5696 PSMB8 proteasome 20S subunit beta 8 Novel U 0.014730841657198786 -0.1686327029096928 1.0 4331 +441608 OR5B3 olfactory receptor family 5 subfamily B member 3 Novel U 0.014729107685450556 -0.1686476526842444 1.0 4332 +19 ABCA1 ATP binding cassette subfamily A member 1 Novel U 0.014728825036129444 -0.1686500896003199 1.0 4333 +84133 ZNRF3 zinc and ring finger 3 Novel U 0.014728513135929178 -0.16865277870853712 1.0 4334 +79571 GCC1 GRIP and coiled-coil domain containing 1 Novel U 0.014709973924809413 -0.1688126181216576 1.0 4335 +11328 FKBP9 FKBP prolyl isomerase 9 Novel U 0.014708455226232736 -0.16882571187670653 1.0 4336 +337867 UBAC2 UBA domain containing 2 Novel U 0.014702316288537421 -0.16887863992159813 1.0 4337 +7348 UPK1B uroplakin 1B Novel N 0.014687336444645592 -0.16900779155813964 1.0 4338 +7267 TTC3 tetratricopeptide repeat domain 3 Novel U 0.014684403282573552 -0.16903308038521828 1.0 4339 +126003 TRAPPC5 trafficking protein particle complex subunit 5 Novel U 0.014682925517339362 -0.1690458212254966 1.0 4340 +8454 CUL1 cullin 1 Novel U 0.0146826185095612 -0.16904846815274543 1.0 4341 +1487 CTBP1 C-terminal binding protein 1 Novel U 0.014681956991138159 -0.16905417156244415 1.0 4342 +59343 SENP2 SUMO specific peptidase 2 Novel U 0.014672957628107247 -0.16913176132049948 1.0 4343 +64096 GFRA4 GDNF family receptor alpha 4 Novel U 0.014660424986169913 -0.16923981392959764 1.0 4344 +9657 IQCB1 IQ motif containing B1 Novel N 0.014654358509494864 -0.16929211723771495 1.0 4345 +1848 DUSP6 dual specificity phosphatase 6 Novel U 0.014644993467479897 -0.16937285976822775 1.0 4346 +11148 HHLA2 HHLA2 member of B7 family Novel U 0.01464361988385351 -0.1693847023865191 1.0 4347 +182 JAG1 jagged canonical Notch ligand 1 Novel U 0.014641066863909178 -0.16940671374433525 1.0 4348 +55223 TRIM62 tripartite motif containing 62 Novel U 0.01463520127656769 -0.1694572850460057 1.0 4349 +26246 OR2L2 olfactory receptor family 2 subfamily L member 2 Novel U 0.014631012486326637 -0.16949339951546666 1.0 4350 +1310 COL19A1 collagen type XIX alpha 1 chain Novel N 0.014625522244712771 -0.16954073470097053 1.0 4351 +100128327 TRAPPC3L trafficking protein particle complex subunit 3L Novel U 0.014616917769282064 -0.16961491985880542 1.0 4352 +1999 ELF3 E74 like ETS transcription factor 3 Novel N 0.014612849122007306 -0.16964999849232387 1.0 4353 +22883 CLSTN1 calsyntenin 1 Novel N 0.014612521651477793 -0.1696528218431619 1.0 4354 +2550 GABBR1 gamma-aminobutyric acid type B receptor subunit 1 Novel N 0.014605910904762202 -0.16970981768125243 1.0 4355 +391211 OR2G6 olfactory receptor family 2 subfamily G member 6 Novel U 0.014605281387027137 -0.1697152451907981 1.0 4356 +390538 OR4M2 olfactory receptor family 4 subfamily M member 2 Novel U 0.01460252560351736 -0.16973900471411568 1.0 4357 +9626 GUCA1C guanylate cyclase activator 1C Novel N 0.014601868103178062 -0.16974467348112424 1.0 4358 +5629 PROX1 prospero homeobox 1 Novel U 0.014588468588870838 -0.16986019999889942 1.0 4359 +79792 GSDMD gasdermin D Novel U 0.014582498421322754 -0.16991167295915388 1.0 4360 +2626 GATA4 GATA binding protein 4 Novel U 0.014576620565054394 -0.16996235003976273 1.0 4361 +100271927 RASA4B RAS p21 protein activator 4B Novel U 0.014569693812413303 -0.1700220703843788 1.0 4362 +64764 CREB3L2 cAMP responsive element binding protein 3 like 2 Novel N 0.014568125425935646 -0.17003559253332656 1.0 4363 +55255 WDR41 WD repeat domain 41 Novel U 0.014554774704800539 -0.17015069837128186 1.0 4364 +29058 TMEM230 transmembrane protein 230 Novel U 0.014548783465586003 -0.1702023530050054 1.0 4365 +2155 F7 coagulation factor VII Novel U 0.014542418579280639 -0.1702572291097682 1.0 4366 +27230 SERP1 stress associated endoplasmic reticulum protein 1 Novel U 0.014530413995652471 -0.17036072896148718 1.0 4367 +2892 GRIA3 glutamate ionotropic receptor AMPA type subunit 3 Novel U 0.014527749455412608 -0.17038370181321336 1.0 4368 +115123 MARCHF3 membrane associated ring-CH-type finger 3 Novel U 0.014521700747180372 -0.1704358519272464 1.0 4369 +8822 FGF17 fibroblast growth factor 17 Novel N 0.01451986616554498 -0.17045166912950102 1.0 4370 +2811 GP1BA glycoprotein Ib platelet subunit alpha Novel U 0.014512285081642583 -0.17051703091830359 1.0 4371 +391104 VHLL VHL like Novel U 0.014497742355560854 -0.1706424138586595 1.0 4372 +9909 DENND4B DENN domain containing 4B Novel U 0.014495384913562084 -0.17066273900319312 1.0 4373 +26260 FBXO25 F-box protein 25 Novel U 0.014492884829909842 -0.17068429396047502 1.0 4374 +22837 COBLL1 cordon-bleu WH2 repeat protein like 1 Novel U 0.014490367816909627 -0.1707059948774219 1.0 4375 +79868 ALG13 ALG13 UDP-N-acetylglucosaminyltransferase subunit Novel N 0.014488635557632143 -0.170720929887574 1.0 4376 +26538 OR10H2 olfactory receptor family 10 subfamily H member 2 Novel U 0.014482287893870125 -0.17077565750483087 1.0 4377 +10602 CDC42EP3 CDC42 effector protein 3 Novel N 0.014466226575125531 -0.17091413328707925 1.0 4378 +23753 SDF2L1 stromal cell derived factor 2 like 1 Novel U 0.014464249834413564 -0.17093117614145156 1.0 4379 +139818 DOCK11 dedicator of cytokinesis 11 Novel U 0.014458329136053332 -0.17098222259348497 1.0 4380 +2488 FSHB follicle stimulating hormone subunit beta Novel U 0.014448793343313256 -0.1710644372845722 1.0 4381 +345456 PFN3 profilin 3 Novel U 0.014440630647540746 -0.17113481355319174 1.0 4382 +27077 B9D1 B9 domain containing 1 Novel U 0.014439601467253973 -0.17114368683113057 1.0 4383 +51719 CAB39 calcium binding protein 39 Novel U 0.014439489007877676 -0.17114465642150803 1.0 4384 +54869 EPS8L1 EPS8 signaling adaptor L1 Novel U 0.01441009066003715 -0.17139811999313387 1.0 4385 +219981 OR5A2 olfactory receptor family 5 subfamily A member 2 Novel U 0.014385588478791431 -0.17160937031253454 1.0 4386 +6449 SGTA small glutamine rich tetratricopeptide repeat co-chaperone alpha Novel U 0.014382862625395475 -0.17163287178755673 1.0 4387 +79184 BRCC3 BRCA1/BRCA2-containing complex subunit 3 Novel U 0.014379857648448104 -0.1716587797805455 1.0 4388 +60626 RIC8A RIC8 guanine nucleotide exchange factor A Novel U 0.014376011292624453 -0.17169194188509962 1.0 4389 +27071 DAPP1 dual adaptor of phosphotyrosine and 3-phosphoinositides 1 Novel N 0.014372706072049005 -0.1717204384869022 1.0 4390 +51083 GAL galanin and GMAP prepropeptide Novel U 0.01437082304286005 -0.17173667338915918 1.0 4391 +22797 TFEC transcription factor EC Novel N 0.014368238143476675 -0.1717589596017572 1.0 4392 +146059 CDAN1 codanin 1 Novel U 0.014359350014468163 -0.1718355903340619 1.0 4393 +157753 TMEM74 transmembrane protein 74 Novel U 0.01435724498400395 -0.17185373926347572 1.0 4394 +347733 TUBB2B tubulin beta 2B class IIb Novel U 0.0143277245109216 -0.1721082557616179 1.0 4395 +55704 CCDC88A coiled-coil domain containing 88A Novel U 0.014321755145237558 -0.17215972180844563 1.0 4396 +9914 ATP2C2 ATPase secretory pathway Ca2+ transporting 2 Novel U 0.014320463601336935 -0.17217085710529081 1.0 4397 +119692 OR51S1 olfactory receptor family 51 subfamily S member 1 Novel U 0.014318374651648117 -0.1721888673911731 1.0 4398 +5359 PLSCR1 phospholipid scramblase 1 Novel U 0.014313218866347397 -0.17223331899654715 1.0 4399 +9957 HS3ST1 heparan sulfate-glucosamine 3-sulfotransferase 1 Novel N 0.01430808115141428 -0.17227761480473364 1.0 4400 +118424 UBE2J2 ubiquitin conjugating enzyme E2 J2 Novel U 0.014307691331759097 -0.17228097571068077 1.0 4401 +387521 PEDS1 plasmanylethanolamine desaturase 1 Novel N 0.014300239691763096 -0.17234522147367742 1.0 4402 +51535 PPHLN1 periphilin 1 Novel U 0.01429872648397203 -0.1723582678888507 1.0 4403 +4318 MMP9 matrix metallopeptidase 9 Novel U 0.014289301440243783 -0.17243952773580026 1.0 4404 +7706 TRIM25 tripartite motif containing 25 Novel U 0.014282255496822431 -0.17250027570690182 1.0 4405 +8793 TNFRSF10D TNF receptor superfamily member 10d Novel N 0.014277313358955808 -0.1725428853093848 1.0 4406 +3904 LAIR2 leukocyte associated immunoglobulin like receptor 2 Novel U 0.01427416259441568 -0.172570050238449 1.0 4407 +9476 NAPSA napsin A aspartic peptidase Novel N 0.01426213125311908 -0.17267378078660867 1.0 4408 +7247 TSN translin Novel N 0.014252048198242518 -0.172760713804606 1.0 4409 +2652 OPN1MW opsin 1, medium wave sensitive Novel U 0.014252042928563614 -0.17276075923816722 1.0 4410 +23566 LPAR3 lysophosphatidic acid receptor 3 Novel N 0.014251747712356036 -0.1727633045020977 1.0 4411 +2840 GPR17 G protein-coupled receptor 17 Novel N 0.014240182573397948 -0.17286301559615536 1.0 4412 +11097 NUP42 nucleoporin 42 Novel U 0.014240069694631503 -0.1728639888023865 1.0 4413 +114880 OSBPL6 oxysterol binding protein like 6 Novel N 0.014235777920809501 -0.17290099116481294 1.0 4414 +1278 COL1A2 collagen type I alpha 2 chain Novel U 0.014226393122569526 -0.17298190402746072 1.0 4415 +4620 MYH2 myosin heavy chain 2 Novel N 0.014218343220324703 -0.17305130782475164 1.0 4416 +84875 PARP10 poly(ADP-ribose) polymerase family member 10 Novel U 0.014212925451209174 -0.1730980181745208 1.0 4417 +64800 EFCAB6 EF-hand calcium binding domain 6 Novel U 0.014206559643818919 -0.17315290222059607 1.0 4418 +54468 MIOS meiosis regulator for oocyte development Novel N 0.014201372142615968 -0.17319762727078752 1.0 4419 +11025 LILRB3 leukocyte immunoglobulin like receptor B3 Novel U 0.014200042868186618 -0.17320908786872188 1.0 4420 +6401 SELE selectin E Novel U 0.014192951200361986 -0.17327023006165615 1.0 4421 +257144 GCSAM germinal center associated signaling and motility Novel U 0.014191810067279067 -0.1732800685623932 1.0 4422 +2317 FLNB filamin B Novel U 0.014186330656921852 -0.173327310364112 1.0 4423 +85437 ZCRB1 zinc finger CCHC-type and RNA binding motif containing 1 Novel N 0.014184159942386669 -0.17334602560151421 1.0 4424 +5780 PTPN9 protein tyrosine phosphatase non-receptor type 9 Novel U 0.014180347135977963 -0.17337889845326465 1.0 4425 +2863 GPR39 G protein-coupled receptor 39 Novel U 0.01416677447014273 -0.17349591783060322 1.0 4426 +4299 AFF1 ALF transcription elongation factor 1 Novel U 0.014144980308155914 -0.1736838204354617 1.0 4427 +4621 MYH3 myosin heavy chain 3 Novel U 0.014136812786422906 -0.17375423831203796 1.0 4428 +7171 TPM4 tropomyosin 4 Novel N 0.014130595631505063 -0.17380784072192085 1.0 4429 +10475 TRIM38 tripartite motif containing 38 Novel U 0.014120192990934833 -0.173897529110111 1.0 4430 +142678 MIB2 MIB E3 ubiquitin protein ligase 2 Novel N 0.014116143498582107 -0.17393244259574497 1.0 4431 +114793 FMNL2 formin like 2 Novel U 0.01409591501757571 -0.17410684637762616 1.0 4432 +3360 HTR4 5-hydroxytryptamine receptor 4 Novel N 0.014088070454450539 -0.17417447980377432 1.0 4433 +22807 IKZF2 IKAROS family zinc finger 2 Novel U 0.014074354770961332 -0.1742927322356226 1.0 4434 +6861 SYT5 synaptotagmin 5 Novel N 0.014072792796760896 -0.1743061990998756 1.0 4435 +140711 TLDC2 TBC/LysM-associated domain containing 2 Novel U 0.014072466277732244 -0.17430901424716394 1.0 4436 +7165 TPD52L2 TPD52 like 2 Novel U 0.014070718974318578 -0.17432407896326105 1.0 4437 +29780 PARVB parvin beta Novel U 0.014069437762087338 -0.17433512518361 1.0 4438 +54429 TAS2R5 taste 2 receptor member 5 Novel N 0.014068449354715516 -0.1743436469299354 1.0 4439 +9627 SNCAIP synuclein alpha interacting protein Novel U 0.014060782542648807 -0.17440974784077412 1.0 4440 +131118 DNAJC19 DnaJ heat shock protein family (Hsp40) member C19 Novel U 0.014054124022766314 -0.17446715556451128 1.0 4441 +913 CD1E CD1e molecule Novel U 0.014051126554481017 -0.17449299882011013 1.0 4442 +26707 OR2J2 olfactory receptor family 2 subfamily J member 2 Novel U 0.014049609886219188 -0.17450607507040491 1.0 4443 +219417 OR8U1 olfactory receptor family 8 subfamily U member 1 Novel U 0.014042063981668752 -0.17457113355358483 1.0 4444 +101060351 TBC1D3K TBC1 domain family member 3K Novel U 0.014035466302939727 -0.17462801672348846 1.0 4445 +5565 PRKAB2 protein kinase AMP-activated non-catalytic subunit beta 2 Novel N 0.014033086023690756 -0.17464853876381478 1.0 4446 +3679 ITGA7 integrin subunit alpha 7 Novel U 0.014028912848867073 -0.1746845186019189 1.0 4447 +3706 ITPKA inositol-trisphosphate 3-kinase A Novel U 0.014018437753491354 -0.17477483167330143 1.0 4448 +8100 IFT88 intraflagellar transport 88 Novel U 0.013994349366503664 -0.17498251438505535 1.0 4449 +1385 CREB1 cAMP responsive element binding protein 1 Novel U 0.013991351333303882 -0.17500836251117424 1.0 4450 +11040 PIM2 Pim-2 proto-oncogene, serine/threonine kinase Novel N 0.013991328567447496 -0.1750085587914313 1.0 4451 +8751 ADAM15 ADAM metallopeptidase domain 15 Novel U 0.013989309785120951 -0.17502596411575758 1.0 4452 +1386 ATF2 activating transcription factor 2 Novel U 0.01398919338435257 -0.1750269676876132 1.0 4453 +54849 DEF8 differentially expressed in FDCP 8 homolog Novel U 0.013984255624455839 -0.17506953954457757 1.0 4454 +390152 OR8H3 olfactory receptor family 8 subfamily H member 3 Novel U 0.013982471306611618 -0.17508492338778417 1.0 4455 +4649 MYO9A myosin IXA Novel U 0.013975469034720323 -0.1751452948362986 1.0 4456 +84900 RNFT2 ring finger protein, transmembrane 2 Novel U 0.013968012659248847 -0.17520958142711776 1.0 4457 +400935 IL17REL interleukin 17 receptor E like Novel U 0.013960353114425025 -0.17527561968200897 1.0 4458 +89782 LMLN leishmanolysin like peptidase Novel U 0.013956397112162195 -0.1753097271246563 1.0 4459 +6688 SPI1 Spi-1 proto-oncogene Novel U 0.013954621949457503 -0.1753250320350475 1.0 4460 +119679 OR52J3 olfactory receptor family 52 subfamily J member 3 Novel U 0.013954144838239042 -0.1753291455421789 1.0 4461 +54888 NSUN2 NOP2/Sun RNA methyltransferase 2 Novel U 0.013950812996965368 -0.1753578716595069 1.0 4462 +54545 MTMR12 myotubularin related protein 12 Novel U 0.013939519643587089 -0.1754552395013468 1.0 4463 +23401 FRAT2 FRAT regulator of WNT signaling pathway 2 Novel U 0.013929340444684333 -0.17554300144375862 1.0 4464 +347688 TUBB8 tubulin beta 8 class VIII Novel U 0.01392568985651316 -0.17557447569943516 1.0 4465 +390648 OR4F6 olfactory receptor family 4 subfamily F member 6 Novel U 0.013924128053596002 -0.175587941086936 1.0 4466 +80124 VCPIP1 valosin containing protein interacting protein 1 Novel N 0.013920321773524622 -0.1756207576706003 1.0 4467 +127544 RNF19B ring finger protein 19B Novel U 0.013915782128847013 -0.17565989709980026 1.0 4468 +51386 EIF3L eukaryotic translation initiation factor 3 subunit L Novel U 0.013912074974136908 -0.17569185905489004 1.0 4469 +10641 NPRL2 NPR2 like, GATOR1 complex subunit Novel U 0.013911295689875798 -0.17569857780565803 1.0 4470 +2021 ENDOG endonuclease G Novel N 0.013901819103283225 -0.17578028203943352 1.0 4471 +100287144 USP17L10 ubiquitin specific peptidase 17 like family member 10 Novel U 0.013897484610266594 -0.1758176527137021 1.0 4472 +390326 OR6C76 olfactory receptor family 6 subfamily C member 76 Novel U 0.013897469092531502 -0.1758177865028722 1.0 4473 +374354 NHLRC2 NHL repeat containing 2 Novel U 0.013890121407431774 -0.17588113599851943 1.0 4474 +1051 CEBPB CCAAT enhancer binding protein beta Novel N 0.013889566860141372 -0.17588591713580043 1.0 4475 +79815 NIPAL2 NIPA like domain containing 2 Novel U 0.013887096986698884 -0.17590721162988537 1.0 4476 +138881 OR1L8 olfactory receptor family 1 subfamily L member 8 Novel U 0.013884703433561853 -0.1759278481136184 1.0 4477 +441061 MARCHF11 membrane associated ring-CH-type finger 11 Novel U 0.01387419550846144 -0.17601844423285526 1.0 4478 +10062 NR1H3 nuclear receptor subfamily 1 group H member 3 Novel U 0.013861431812905396 -0.17612848891564928 1.0 4479 +2902 GRIN1 glutamate ionotropic receptor NMDA type subunit 1 Novel U 0.013853071796731415 -0.17620056642047377 1.0 4480 +89122 TRIM4 tripartite motif containing 4 Novel N 0.013836085145636104 -0.1763470201354898 1.0 4481 +57118 CAMK1D calcium/calmodulin dependent protein kinase ID Novel U 0.01383173713309989 -0.17638450737092498 1.0 4482 +115703 ARHGAP33 Rho GTPase activating protein 33 Novel U 0.013821786101943023 -0.1764703021207545 1.0 4483 +94122 SYTL5 synaptotagmin like 5 Novel U 0.013820727853588509 -0.17647942601469088 1.0 4484 +79867 TCTN2 tectonic family member 2 Novel U 0.013812512042367903 -0.17655026022847306 1.0 4485 +115727 RASGRP4 RAS guanyl releasing protein 4 Novel U 0.01380595299589277 -0.17660681032288875 1.0 4486 +487 ATP2A1 ATPase sarcoplasmic/endoplasmic reticulum Ca2+ transporting 1 Novel U 0.013805877627556314 -0.17660746012565487 1.0 4487 +58475 MS4A7 membrane spanning 4-domains A7 Novel U 0.013795085349622946 -0.17670050784812583 1.0 4488 +84925 SLC49A4 solute carrier family 49 member 4 Novel N 0.013790147095684265 -0.17674308396456895 1.0 4489 +112 ADCY6 adenylate cyclase 6 Novel U 0.013789964458449268 -0.1767446586069994 1.0 4490 +55206 SBNO1 strawberry notch homolog 1 Novel U 0.013760474722655727 -0.17699891009763002 1.0 4491 +79056 PRRG4 proline rich and Gla domain 4 Novel U 0.013756606649045006 -0.17703225944630785 1.0 4492 +390064 OR51I2 olfactory receptor family 51 subfamily I member 2 Novel U 0.01375410228323858 -0.17705385132301454 1.0 4493 +84539 MCHR2 melanin concentrating hormone receptor 2 Novel U 0.013749795624487924 -0.17709098201874743 1.0 4494 +84902 CEP89 centrosomal protein 89 Novel N 0.013746166294917126 -0.17712227298926767 1.0 4495 +83667 SESN2 sestrin 2 Novel U 0.013744802422565967 -0.1771340318799115 1.0 4496 +55344 PLCXD1 phosphatidylinositol specific phospholipase C X domain containing 1 Novel U 0.0137414666181863 -0.1771627921659283 1.0 4497 +57524 CASKIN1 CASK interacting protein 1 Novel U 0.013739714354163548 -0.17717789965088115 1.0 4498 +55582 KIF27 kinesin family member 27 Novel U 0.013739026374673165 -0.1771838311998166 1.0 4499 +375035 SFT2D2 SFT2 domain containing 2 Novel U 0.013737861766173089 -0.17719387209842685 1.0 4500 +4625 MYH7 myosin heavy chain 7 Novel U 0.013719788380177107 -0.1773496953096754 1.0 4501 +9934 P2RY14 purinergic receptor P2Y14 Novel U 0.013718533356930398 -0.17736051573660244 1.0 4502 +572 BAD BCL2 associated agonist of cell death Novel U 0.013710168944704157 -0.1774326311428462 1.0 4503 +9741 LAPTM4A lysosomal protein transmembrane 4 alpha Novel U 0.013685986331580226 -0.17764112624355344 1.0 4504 +159090 PABIR2 PABIR family member 2 Novel U 0.013680987051328614 -0.17768422851021842 1.0 4505 +5468 PPARG peroxisome proliferator activated receptor gamma Novel U 0.013677619993604001 -0.17771325825302506 1.0 4506 +7005 TEAD3 TEA domain transcription factor 3 Novel U 0.01367728990618478 -0.17771610416588648 1.0 4507 +10650 PRELID3A PRELI domain containing 3A Novel N 0.013666648908108666 -0.17780784759965582 1.0 4508 +50937 CDON cell adhesion associated, oncogene regulated Novel U 0.013654893685776916 -0.17790919753447612 1.0 4509 +8372 HYAL3 hyaluronidase 3 Novel U 0.013650591349890438 -0.17794629095979497 1.0 4510 +200315 APOBEC3A apolipoprotein B mRNA editing enzyme catalytic subunit 3A Novel N 0.013642925507109476 -0.17801238351374818 1.0 4511 +6275 S100A4 S100 calcium binding protein A4 Novel N 0.01363615908205411 -0.17807072156291254 1.0 4512 +2121 EVC EvC ciliary complex subunit 1 Novel U 0.01363033653919292 -0.17812092174822727 1.0 4513 +140 ADORA3 adenosine A3 receptor Novel U 0.013624740847919627 -0.17816916608847178 1.0 4514 +55666 NPLOC4 NPL4 homolog, ubiquitin recognition factor Novel U 0.013623416040881388 -0.17818058816992507 1.0 4515 +22829 NLGN4Y neuroligin 4 Y-linked Novel U 0.01362303846821245 -0.17818384348609917 1.0 4516 +10079 ATP9A ATPase phospholipid transporting 9A (putative) Novel U 0.01362248856771472 -0.17818858456015377 1.0 4517 +644943 RASSF10 Ras association domain family member 10 Novel U 0.013621955514576189 -0.17819318038142545 1.0 4518 +9068 ANGPTL1 angiopoietin like 1 Novel U 0.013619419277121037 -0.17821504704574825 1.0 4519 +7479 WNT8B Wnt family member 8B Novel N 0.013605872188270923 -0.17833184590613688 1.0 4520 +10653 SPINT2 serine peptidase inhibitor, Kunitz type 2 Novel U 0.013603834355831753 -0.17834941547471292 1.0 4521 +146923 RUNDC1 RUN domain containing 1 Novel U 0.013590130388417911 -0.1784675668941396 1.0 4522 +119765 OR4B1 olfactory receptor family 4 subfamily B member 1 Novel U 0.013585410299453959 -0.17850826205883674 1.0 4523 +2856 GPR33 G protein-coupled receptor 33 Novel U 0.01358343429929616 -0.17852529852837737 1.0 4524 +2281 FKBP1B FKBP prolyl isomerase 1B Novel U 0.01357441030620857 -0.178603100639255 1.0 4525 +9201 DCLK1 doublecortin like kinase 1 Novel N 0.013571691692867432 -0.1786265396927369 1.0 4526 +9208 LRRFIP1 LRR binding FLII interacting protein 1 Novel N 0.013566898493812936 -0.17866786519029398 1.0 4527 +341152 OR2AT4 olfactory receptor family 2 subfamily AT member 4 Novel U 0.01354161378894249 -0.17888586218926594 1.0 4528 +8636 SSNA1 SS nuclear autoantigen 1 Novel U 0.013538993893952307 -0.17890845012329198 1.0 4529 +57460 PPM1H protein phosphatase, Mg2+/Mn2+ dependent 1H Novel U 0.01353566983626728 -0.17893710913289715 1.0 4530 +8594 OR5D3P olfactory receptor family 5 subfamily D member 3 pseudogene Novel U 0.013524695867011303 -0.17903172334243098 1.0 4531 +79368 FCRL2 Fc receptor like 2 Novel U 0.013502644367427988 -0.17922184463341004 1.0 4532 +58498 MYL7 myosin light chain 7 Novel U 0.013491110065325326 -0.1793212898615232 1.0 4533 +51744 CD244 CD244 molecule Novel U 0.013486748068209275 -0.1793588976677324 1.0 4534 +8496 PPFIBP1 PPFIA binding protein 1 Novel N 0.013463164616987025 -0.17956222697761337 1.0 4535 +6502 SKP2 S-phase kinase associated protein 2 Novel U 0.01345126856193258 -0.17966479112913347 1.0 4536 +3355 HTR1F 5-hydroxytryptamine receptor 1F Novel N 0.013448464853459439 -0.17968896384684044 1.0 4537 +51167 CYB5R4 cytochrome b5 reductase 4 Novel N 0.01343924081226191 -0.17976849071139187 1.0 4538 +28511 NKIRAS2 NFKB inhibitor interacting Ras like 2 Novel U 0.013432945822188503 -0.1798227641922014 1.0 4539 +6198 RPS6KB1 ribosomal protein S6 kinase B1 Novel U 0.013432299602625285 -0.17982833569980572 1.0 4540 +79784 MYH14 myosin heavy chain 14 Novel U 0.013427587381378113 -0.17986896303145297 1.0 4541 +26526 TSPAN16 tetraspanin 16 Novel U 0.013418590893051707 -0.1799465280046845 1.0 4542 +643854 CTAGE9 CTAGE family member 9 Novel U 0.0134182091154339 -0.17994981957464284 1.0 4543 +6095 RORA RAR related orphan receptor A Novel U 0.013415719715423866 -0.17997128242082627 1.0 4544 +284001 CCDC57 coiled-coil domain containing 57 Novel U 0.01341186532536937 -0.18000451379406365 1.0 4545 +149297 FAM78B family with sequence similarity 78 member B Novel U 0.01340667233704894 -0.1800492861525053 1.0 4546 +23154 NCDN neurochondrin Novel N 0.013400282151003202 -0.1801043803838986 1.0 4547 +5552 SRGN serglycin Novel N 0.01339689188638866 -0.18013361020941873 1.0 4548 +9296 ATP6V1F ATPase H+ transporting V1 subunit F Novel U 0.013381445522657773 -0.18026678403745489 1.0 4549 +284612 SYPL2 synaptophysin like 2 Novel U 0.01337430187586568 -0.18032837437716306 1.0 4550 +342096 GOLGA6A golgin A6 family member A Novel U 0.013367426277988344 -0.1803876536810378 1.0 4551 +10361 NPM2 nucleophosmin/nucleoplasmin 2 Novel N 0.013362273599801277 -0.18043207849782736 1.0 4552 +26986 PABPC1 poly(A) binding protein cytoplasmic 1 Novel N 0.013359178797946415 -0.1804587609337201 1.0 4553 +375346 STIMATE STIM activating enhancer Novel N 0.01335833699579951 -0.18046601869459547 1.0 4554 +58484 NLRC4 NLR family CARD domain containing 4 Novel U 0.013351951418524856 -0.1805210731905728 1.0 4555 +10533 ATG7 autophagy related 7 Novel U 0.0133400943260586 -0.18062330141856361 1.0 4556 +593 BCKDHA branched chain keto acid dehydrogenase E1 subunit alpha Novel N 0.013326947081770834 -0.18073665294131896 1.0 4557 +79990 PLEKHH3 pleckstrin homology, MyTH4 and FERM domain containing H3 Novel U 0.013321086646108656 -0.18078717982678466 1.0 4558 +9926 LPGAT1 lysophosphatidylglycerol acyltransferase 1 Novel U 0.01331882460177079 -0.18080668248183732 1.0 4559 +118442 GPR62 G protein-coupled receptor 62 Novel N 0.013310486562522279 -0.180878570508326 1.0 4560 +84236 RHBDD1 rhomboid domain containing 1 Novel U 0.013295884152320891 -0.18100446802692352 1.0 4561 +4245 MGAT1 alpha-1,3-mannosyl-glycoprotein 2-beta-N-acetylglucosaminyltransferase Novel U 0.01328856594509485 -0.18106756337335156 1.0 4562 +440275 EIF2AK4 eukaryotic translation initiation factor 2 alpha kinase 4 Novel U 0.013287556475517995 -0.18107626671157268 1.0 4563 +5639 PRRG2 proline rich and Gla domain 2 Novel U 0.013285404411178016 -0.18109482115269088 1.0 4564 +5265 SERPINA1 serpin family A member 1 Novel U 0.01328525401597479 -0.18109611781417578 1.0 4565 +202309 GAPT GRB2 binding adaptor protein, transmembrane Novel U 0.013281838924892422 -0.18112556168591512 1.0 4566 +100191040 C2CD4D C2 calcium dependent domain containing 4D Novel U 0.013276679771917434 -0.18117004232634765 1.0 4567 +26338 OR5L2 olfactory receptor family 5 subfamily L member 2 Novel U 0.013276193900745928 -0.18117423135911737 1.0 4568 +55291 PPP6R3 protein phosphatase 6 regulatory subunit 3 Novel N 0.013274862036802311 -0.18118571428305244 1.0 4569 +7484 WNT9B Wnt family member 9B Novel U 0.013273132103033184 -0.18120062924338207 1.0 4570 +1981 EIF4G1 eukaryotic translation initiation factor 4 gamma 1 Novel U 0.013272549123880938 -0.1812056555114878 1.0 4571 +8727 CTNNAL1 catenin alpha like 1 Novel N 0.013270936007079577 -0.18121956331161795 1.0 4572 +6915 TBXA2R thromboxane A2 receptor Novel N 0.013265584017257921 -0.18126570653241594 1.0 4573 +114 ADCY8 adenylate cyclase 8 Novel U 0.01326347070492824 -0.1812839268655431 1.0 4574 +5082 PDCL phosducin like Novel U 0.01325985198169124 -0.18131512639149439 1.0 4575 +2740 GLP1R glucagon like peptide 1 receptor Novel U 0.013259518902160662 -0.1813179981014256 1.0 4576 +675 BRCA2 BRCA2 DNA repair associated Novel U 0.013247208679153352 -0.1814241330824752 1.0 4577 +51085 MLXIPL MLX interacting protein like Novel U 0.013246486979112463 -0.1814303553596929 1.0 4578 +729852 UMAD1 UBAP1-MVB12-associated (UMA) domain containing 1 Novel U 0.01324278068719986 -0.18146230987600626 1.0 4579 +8320 EOMES eomesodermin Novel U 0.013236297433705288 -0.18151820650650416 1.0 4580 +2113 ETS1 ETS proto-oncogene 1, transcription factor Novel U 0.013210674412408875 -0.1817391203663191 1.0 4581 +25862 USP49 ubiquitin specific peptidase 49 Novel N 0.01320188268703608 -0.1818149199359354 1.0 4582 +317703 VN1R4 vomeronasal 1 receptor 4 Novel U 0.013190442900614352 -0.1819135502787294 1.0 4583 +101928917 HSFX3 heat shock transcription factor family, X-linked member 3 Novel U 0.013187754409160963 -0.18193672963049967 1.0 4584 +10297 APC2 APC regulator of WNT signaling pathway 2 Novel U 0.01318372203590634 -0.18197149552050104 1.0 4585 +26539 OR10H1 olfactory receptor family 10 subfamily H member 1 Novel U 0.013182858482049921 -0.18197894081796903 1.0 4586 +646960 PRSS56 serine protease 56 Novel N 0.013178585109827695 -0.1820157845274253 1.0 4587 +56729 RETN resistin Novel N 0.013170596790753976 -0.18208465737343338 1.0 4588 +80114 BICC1 BicC family RNA binding protein 1 Novel N 0.013156503311309348 -0.1822061670465636 1.0 4589 +5179 PENK proenkephalin Novel N 0.013155332789636447 -0.18221625892674298 1.0 4590 +9527 GOSR1 golgi SNAP receptor complex member 1 Novel U 0.01315328647575013 -0.1822339016197646 1.0 4591 +9734 HDAC9 histone deacetylase 9 Novel U 0.013150674575466934 -0.18225642062587002 1.0 4592 +23074 BLTP3B bridge-like lipid transfer protein family member 3B Novel U 0.013129788207308231 -0.1824364965097433 1.0 4593 +89891 DYNC2I2 dynein 2 intermediate chain 2 Novel U 0.013120651894351893 -0.18251526700820686 1.0 4594 +153769 SH3RF2 SH3 domain containing ring finger 2 Novel U 0.013112145680028402 -0.18258860498880167 1.0 4595 +390431 OR4K2 olfactory receptor family 4 subfamily K member 2 Novel U 0.013110525275634225 -0.18260257562033014 1.0 4596 +129642 MBOAT2 membrane bound O-acyltransferase domain containing 2 Novel U 0.013103421466647164 -0.18266382249065685 1.0 4597 +1512 CTSH cathepsin H Novel U 0.013096647781228208 -0.18272222313645747 1.0 4598 +176 ACAN aggrecan Novel U 0.01308466509069653 -0.18282553423258852 1.0 4599 +343172 OR2T8 olfactory receptor family 2 subfamily T member 8 Novel U 0.01308268873235806 -0.18284257379025343 1.0 4600 +22918 CD93 CD93 molecule Novel N 0.013077796931347058 -0.18288474940374902 1.0 4601 +338442 HCAR2 hydroxycarboxylic acid receptor 2 Novel N 0.013072588134041463 -0.18292965806242986 1.0 4602 +92609 TIMM50 translocase of inner mitochondrial membrane 50 Novel N 0.013071145375444055 -0.18294209708618303 1.0 4603 +50508 NOX3 NADPH oxidase 3 Novel U 0.013071001812579582 -0.18294333484133105 1.0 4604 +3172 HNF4A hepatocyte nuclear factor 4 alpha Novel U 0.013068943410513373 -0.18296108175494583 1.0 4605 +1301 COL11A1 collagen type XI alpha 1 chain Novel U 0.013061610681830371 -0.18302430230093839 1.0 4606 +28988 DBNL drebrin like Novel U 0.013049672498172774 -0.18312722967240136 1.0 4607 +55108 BSDC1 BSD domain containing 1 Novel U 0.013041232311174066 -0.18319999838557827 1.0 4608 +9150 CTDP1 CTD phosphatase subunit 1 Novel U 0.013024475941408853 -0.18334446668533486 1.0 4609 +23341 DNAJC16 DnaJ heat shock protein family (Hsp40) member C16 Novel U 0.013022101838769286 -0.18336493547282237 1.0 4610 +79633 FAT4 FAT atypical cadherin 4 Novel U 0.013013882978937364 -0.18343579597079968 1.0 4611 +3735 KARS1 lysyl-tRNA synthetase 1 Novel U 0.013013743768094466 -0.18343699620414758 1.0 4612 +126282 TNFAIP8L1 TNF alpha induced protein 8 like 1 Novel U 0.01300944379159013 -0.18347406928759458 1.0 4613 +342371 ATXN1L ataxin 1 like Novel U 0.01300479774691935 -0.18351412606502224 1.0 4614 +55653 BCAS4 breast carcinoma amplified sequence 4 Novel U 0.013003248667737204 -0.18352748175236794 1.0 4615 +389813 AJM1 apical junction component 1 homolog Novel U 0.01300305947114931 -0.18352911294753463 1.0 4616 +4867 NPHP1 nephrocystin 1 Novel U 0.013001006420175126 -0.18354681372566917 1.0 4617 +1826 DSCAM DS cell adhesion molecule Novel U 0.012997875430969218 -0.18357380815784463 1.0 4618 +393046 OR2A5 olfactory receptor family 2 subfamily A member 5 Novel U 0.012997537959131574 -0.18357671773690518 1.0 4619 +10974 ADIRF adipogenesis regulatory factor Novel N 0.012977146515255378 -0.1837525265348521 1.0 4620 +54491 OTULINL OTU deubiquitinase with linear linkage specificity like Novel N 0.012975454863202186 -0.18376711144192498 1.0 4621 +2898 GRIK2 glutamate ionotropic receptor kainate type subunit 2 Novel U 0.012973843023305629 -0.18378100823297214 1.0 4622 +84803 GPAT3 glycerol-3-phosphate acyltransferase 3 Novel U 0.012972124274838312 -0.18379582675704753 1.0 4623 +8832 CD84 CD84 molecule Novel U 0.012971075328366442 -0.1838048704529942 1.0 4624 +4775 NFATC3 nuclear factor of activated T cells 3 Novel N 0.012933191110019001 -0.1841314966070449 1.0 4625 +54764 ZRANB1 zinc finger RANBP2-type containing 1 Novel U 0.012929878247347185 -0.18416005909666708 1.0 4626 +64092 SAMSN1 SAM domain, SH3 domain and nuclear localization signals 1 Novel U 0.012923410415739424 -0.18421582276436943 1.0 4627 +51428 DDX41 DEAD-box helicase 41 Novel U 0.012911257215259136 -0.1843206039451735 1.0 4628 +23351 KHNYN KH and NYN domain containing Novel U 0.012908712447895734 -0.18434254415175869 1.0 4629 +26648 OR7E24 olfactory receptor family 7 subfamily E member 24 Novel U 0.012900263032195134 -0.18441539243198324 1.0 4630 +22943 DKK1 dickkopf WNT signaling pathway inhibitor 1 Novel U 0.012894322698350794 -0.1844666081751605 1.0 4631 +54801 HAUS6 HAUS augmin like complex subunit 6 Novel U 0.012884930379778874 -0.18454758587581224 1.0 4632 +65124 SOWAHC sosondowah ankyrin repeat domain family member C Novel U 0.01288096470489276 -0.1845817767128618 1.0 4633 +221424 LRRC73 leucine rich repeat containing 73 Novel U 0.012873216016043316 -0.18464858354030161 1.0 4634 +7015 TERT telomerase reverse transcriptase Novel U 0.01286786125424372 -0.18469475066024638 1.0 4635 +3897 L1CAM L1 cell adhesion molecule Novel U 0.012865603631034525 -0.18471421519767858 1.0 4636 +4149 MAX MYC associated factor X Novel U 0.012862411400899531 -0.1847417376304308 1.0 4637 +7984 ARHGEF5 Rho guanine nucleotide exchange factor 5 Novel U 0.012861809170248874 -0.18474692987907304 1.0 4638 +6262 RYR2 ryanodine receptor 2 Novel U 0.012849237775121588 -0.18485531660633286 1.0 4639 +6138 RPL15 ribosomal protein L15 Novel U 0.012841241067966459 -0.18492426177181565 1.0 4640 +9444 QKI QKI, KH domain containing RNA binding Novel N 0.012840013599137482 -0.184934844632973 1.0 4641 +1489 CTF1 cardiotrophin 1 Novel U 0.012829224129129558 -0.18502786814636882 1.0 4642 +387119 CEP85L centrosomal protein 85 like Novel N 0.012822550167656233 -0.18508540900278356 1.0 4643 +5699 PSMB10 proteasome 20S subunit beta 10 Novel U 0.012821878680598302 -0.18509119835900611 1.0 4644 +3800 KIF5C kinesin family member 5C Novel U 0.012820630941507477 -0.185101955984167 1.0 4645 +6567 SLC16A2 solute carrier family 16 member 2 Novel U 0.01281705265451187 -0.18513280688120137 1.0 4646 +1133 CHRM5 cholinergic receptor muscarinic 5 Novel N 0.012816926135711181 -0.1851338976876397 1.0 4647 +6285 S100B S100 calcium binding protein B Novel N 0.012809110927471336 -0.18520127802493674 1.0 4648 +10699 CORIN corin, serine peptidase Novel U 0.012806854834216192 -0.18522072937157266 1.0 4649 +152 ADRA2C adrenoceptor alpha 2C Novel U 0.012804421873846368 -0.1852417056124249 1.0 4650 +27190 IL17B interleukin 17B Novel N 0.012804365875567523 -0.1852421884124733 1.0 4651 +80055 PGAP1 post-GPI attachment to proteins inositol deacylase 1 Novel U 0.012803125225493848 -0.18525288491829456 1.0 4652 +7867 MAPKAPK3 MAPK activated protein kinase 3 Novel U 0.012801025090142266 -0.1852709916435431 1.0 4653 +2177 FANCD2 FA complementation group D2 Novel U 0.012782570918652003 -0.18543009787096415 1.0 4654 +57700 FHIP2A FHF complex subunit HOOK interacting protein 2A Novel U 0.012770238745315774 -0.18553642210104215 1.0 4655 +6498 SKIL SKI like proto-oncogene Novel U 0.012768143095586288 -0.18555449015262768 1.0 4656 +3811 KIR3DL1 killer cell immunoglobulin like receptor, three Ig domains and long cytoplasmic tail 1 Novel N 0.012767819551413668 -0.1855572796516164 1.0 4657 +57130 ATP13A1 ATPase 13A1 Novel U 0.012763123688341774 -0.18559776594807512 1.0 4658 +24137 KIF4A kinesin family member 4A Novel U 0.012760371540821784 -0.18562149412299986 1.0 4659 +254065 BRWD3 bromodomain and WD repeat domain containing 3 Novel U 0.01275697895058056 -0.18565074399936254 1.0 4660 +2123 EVI2A ecotropic viral integration site 2A Novel U 0.012754205186441348 -0.18567465854617268 1.0 4661 +285973 ATG9B autophagy related 9B Novel U 0.012750512889844343 -0.1857064923991516 1.0 4662 +84807 NFKBID NFKB inhibitor delta Novel U 0.01273724473645 -0.18582088636327682 1.0 4663 +26054 SENP6 SUMO specific peptidase 6 Novel U 0.012732073275768002 -0.18586547311699822 1.0 4664 +8387 OR1E1 olfactory receptor family 1 subfamily E member 1 Novel U 0.012711627155954693 -0.18604175331416722 1.0 4665 +2969 GTF2I general transcription factor IIi Novel U 0.012688556998941116 -0.18624065715823188 1.0 4666 +9074 CLDN6 claudin 6 Novel U 0.012688481556379961 -0.18624130760094063 1.0 4667 +5536 PPP5C protein phosphatase 5 catalytic subunit Novel N 0.012687129901652367 -0.1862529611549675 1.0 4668 +51098 IFT52 intraflagellar transport 52 Novel U 0.01268683063297208 -0.18625554135807937 1.0 4669 +84879 MFSD2A MFSD2 lysolipid transporter A, lysophospholipid Novel U 0.012674971851028222 -0.18635778415222984 1.0 4670 +4153 MBL2 mannose binding lectin 2 Novel U 0.012648767474903537 -0.18658371027572554 1.0 4671 +115 ADCY9 adenylate cyclase 9 Novel U 0.01264724611852405 -0.18659682694553814 1.0 4672 +124599 CD300LB CD300 molecule like family member b Novel U 0.01264168958089651 -0.18664473371501342 1.0 4673 +1674 DES desmin Novel U 0.01264029719165296 -0.18665673846958936 1.0 4674 +9663 LPIN2 lipin 2 Novel U 0.012638436885001195 -0.1866727774650742 1.0 4675 +83478 ARHGAP24 Rho GTPase activating protein 24 Novel N 0.012632941881775345 -0.18672015370374156 1.0 4676 +5161 PDHA2 pyruvate dehydrogenase E1 subunit alpha 2 Novel N 0.012629235659702656 -0.18675210761791652 1.0 4677 +6337 SCNN1A sodium channel epithelial 1 subunit alpha Novel U 0.012618838985226552 -0.18684174456826622 1.0 4678 +51377 UCHL5 ubiquitin C-terminal hydrolase L5 Novel U 0.01261426729412558 -0.18688116029193574 1.0 4679 +4853 NOTCH2 notch receptor 2 Novel U 0.012613262435208694 -0.18688982387845549 1.0 4680 +390058 OR51B6 olfactory receptor family 51 subfamily B member 6 Novel U 0.01260641576503526 -0.18694885377650677 1.0 4681 +219487 OR5M11 olfactory receptor family 5 subfamily M member 11 Novel U 0.012596802605872337 -0.1870317354972504 1.0 4682 +118568804 OR4M2B olfactory receptor family 4 subfamily M member 2B Novel U 0.012592214423220227 -0.18707129340603437 1.0 4683 +26515 TIMM10B translocase of inner mitochondrial membrane 10B Novel N 0.012589144810983997 -0.18709775866473263 1.0 4684 +84901 NFATC2IP nuclear factor of activated T cells 2 interacting protein Novel U 0.0125758285453553 -0.18721256743784048 1.0 4685 +6491 STIL STIL centriolar assembly protein Novel U 0.01256918451478022 -0.1872698502391967 1.0 4686 +822 CAPG capping actin protein, gelsolin like Novel U 0.012567830163380502 -0.18728152704310663 1.0 4687 +5147 PDE6D phosphodiesterase 6D Novel U 0.012561205614130343 -0.18733864188243246 1.0 4688 +440279 UNC13C unc-13 homolog C Novel U 0.012557897604166373 -0.18736716253349045 1.0 4689 +222584 FAM83B family with sequence similarity 83 member B Novel U 0.012539286012270948 -0.18752762599154077 1.0 4690 +54704 PDP1 pyruvate dehydrogenase phosphatase catalytic subunit 1 Novel N 0.012539116354684904 -0.18752908872740423 1.0 4691 +846 CASR calcium sensing receptor Novel U 0.012538627270802835 -0.1875333054591827 1.0 4692 +7161 TP73 tumor protein p73 Novel N 0.01253409709219961 -0.18757236327478188 1.0 4693 +3354 HTR1E 5-hydroxytryptamine receptor 1E Novel N 0.012526205609057789 -0.18764040123097595 1.0 4694 +340205 TREML1 triggering receptor expressed on myeloid cells like 1 Novel U 0.012511023950906633 -0.18777129284839159 1.0 4695 +5595 MAPK3 mitogen-activated protein kinase 3 Novel U 0.01250611759207446 -0.1878135939749728 1.0 4696 +50509 COL5A3 collagen type V alpha 3 chain Novel U 0.012494251107411257 -0.18791590317961565 1.0 4697 +25798 BRI3 brain protein I3 Novel U 0.012492039612214208 -0.18793497001542284 1.0 4698 +2524 FUT2 fucosyltransferase 2 (H blood group) Novel N 0.012485353809518795 -0.187992612963236 1.0 4699 +22862 FNDC3A fibronectin type III domain containing 3A Novel U 0.012477110877322893 -0.1880636810057796 1.0 4700 +10423 CDIPT CDP-diacylglycerol--inositol 3-phosphatidyltransferase Novel U 0.012475902685401519 -0.18807409766733021 1.0 4701 +60684 TRAPPC11 trafficking protein particle complex subunit 11 Novel U 0.01247160905598761 -0.18811111602810307 1.0 4702 +92154 MTSS2 MTSS I-BAR domain containing 2 Novel U 0.012466614853377323 -0.18815417451689617 1.0 4703 +55339 WDR33 WD repeat domain 33 Novel U 0.012457468118800231 -0.1882330348673893 1.0 4704 +414059 TBC1D3B TBC1 domain family member 3B Novel U 0.012452959320835209 -0.18827190834565935 1.0 4705 +5613 PRKX protein kinase cAMP-dependent X-linked catalytic subunit Novel U 0.01245204142979485 -0.18827982212172306 1.0 4706 +23176 SEPTIN8 septin 8 Novel U 0.012446969547571763 -0.1883235503404006 1.0 4707 +51256 TBC1D7 TBC1 domain family member 7 Novel U 0.012437949188889956 -0.18840132111654215 1.0 4708 +56477 CCL28 C-C motif chemokine ligand 28 Novel U 0.012435890007966459 -0.18841907474522646 1.0 4709 +10382 TUBB4A tubulin beta 4A class IVa Novel U 0.012419954258414375 -0.188556467908268 1.0 4710 +4610 MYCL MYCL proto-oncogene, bHLH transcription factor Novel U 0.012416187696478573 -0.1885889420543043 1.0 4711 +10344 CCL26 C-C motif chemokine ligand 26 Novel U 0.012407747087021331 -0.1886617144097896 1.0 4712 +29952 DPP7 dipeptidyl peptidase 7 Novel U 0.012404501622941929 -0.18868969580934344 1.0 4713 +10716 TBR1 T-box brain transcription factor 1 Novel U 0.012404405421318418 -0.18869052523034435 1.0 4714 +8347 H2BC4 H2B clustered histone 4 Novel N 0.01240092742953315 -0.18872051141272309 1.0 4715 +8993 PGLYRP1 peptidoglycan recognition protein 1 Novel U 0.012398170638766987 -0.18874427962029744 1.0 4716 +100049587 SIGLEC14 sialic acid binding Ig like lectin 14 Novel U 0.012393544227453215 -0.18878416712492047 1.0 4717 +7145 TNS1 tensin 1 Novel U 0.012385472104762941 -0.188853762500102 1.0 4718 +374868 ATP9B ATPase phospholipid transporting 9B (putative) Novel U 0.012385321540741302 -0.1888550606170877 1.0 4719 +4055 LTBR lymphotoxin beta receptor Novel U 0.01237636626180702 -0.18893227029553294 1.0 4720 +11314 CD300A CD300a molecule Novel U 0.01236399248933019 -0.18903895318068947 1.0 4721 +58511 DNASE2B deoxyribonuclease 2 beta Novel U 0.012362873923476885 -0.18904859711366884 1.0 4722 +343641 TGM6 transglutaminase 6 Novel N 0.012348319676189852 -0.18917407938633626 1.0 4723 +57165 GJC2 gap junction protein gamma 2 Novel U 0.012344703442161794 -0.1892052574510887 1.0 4724 +2206 MS4A2 membrane spanning 4-domains A2 Novel N 0.012342228870022683 -0.1892265924559001 1.0 4725 +26046 LTN1 listerin E3 ubiquitin protein ligase 1 Novel U 0.012339580388879558 -0.18924942685100155 1.0 4726 +391475 DYTN dystrotelin Novel U 0.012333135659654763 -0.1893049913370175 1.0 4727 +7102 TSPAN7 tetraspanin 7 Novel N 0.012332702932706694 -0.1893087221765324 1.0 4728 +5830 PEX5 peroxisomal biogenesis factor 5 Novel U 0.012325112060363845 -0.18937416835827744 1.0 4729 +7932 OR2H2 olfactory receptor family 2 subfamily H member 2 Novel N 0.012320252363881116 -0.18941606717634066 1.0 4730 +100527978 TLCD4-RWDD3 TLCD4-RWDD3 readthrough Novel U 0.012316030811218173 -0.1894524641133917 1.0 4731 +256586 LYSMD2 LysM domain containing 2 Novel U 0.012314454497786806 -0.18946605460611202 1.0 4732 +2395 FXN frataxin Novel N 0.012302757545905983 -0.1895669021509105 1.0 4733 +10384 BTN3A3 butyrophilin subfamily 3 member A3 Novel U 0.012300932599262652 -0.1895826362832078 1.0 4734 +93661 CAPZA3 capping actin protein of muscle Z-line subunit alpha 3 Novel U 0.012297380976649161 -0.18961325728808762 1.0 4735 +286410 ATP11C ATPase phospholipid transporting 11C Novel N 0.012285665702551867 -0.18971426280143766 1.0 4736 +80342 TRAF3IP3 TRAF3 interacting protein 3 Novel U 0.012285095519073044 -0.18971917874915717 1.0 4737 +8720 MBTPS1 membrane bound transcription factor peptidase, site 1 Novel U 0.012276289093432731 -0.18979510505998798 1.0 4738 +23164 MPRIP myosin phosphatase Rho interacting protein Novel U 0.012275275135087228 -0.18980384709900067 1.0 4739 +1964 EIF1AX eukaryotic translation initiation factor 1A X-linked Novel N 0.012269884262953779 -0.18985032555120943 1.0 4740 +54760 PCSK4 proprotein convertase subtilisin/kexin type 4 Novel N 0.012269679918931334 -0.18985208734292813 1.0 4741 +23086 EXPH5 exophilin 5 Novel U 0.012246050240391713 -0.19005581521061346 1.0 4742 +90249 UNC5A unc-5 netrin receptor A Novel U 0.012244529406145403 -0.1900689273787534 1.0 4743 +3162 HMOX1 heme oxygenase 1 Novel U 0.012238932189521403 -0.19011718487010557 1.0 4744 +8780 RIOK3 RIO kinase 3 Novel U 0.012237035193076362 -0.19013354019377648 1.0 4745 +90102 PHLDB2 pleckstrin homology like domain family B member 2 Novel U 0.012229630782237409 -0.1901973787614132 1.0 4746 +2735 GLI1 GLI family zinc finger 1 Novel U 0.012211615639383442 -0.19035269981808908 1.0 4747 +5189 PEX1 peroxisomal biogenesis factor 1 Novel U 0.012207707249983614 -0.190386396757181 1.0 4748 +912 CD1D CD1d molecule Novel U 0.012204662446507473 -0.19041264812233077 1.0 4749 +8128 ST8SIA2 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 2 Novel N 0.012200811817496314 -0.19044584706900183 1.0 4750 +84132 USP42 ubiquitin specific peptidase 42 Novel N 0.012200066964993162 -0.1904522689596743 1.0 4751 +146556 C16orf89 chromosome 16 open reading frame 89 Novel U 0.012197559008889379 -0.19047389179082774 1.0 4752 +6737 TRIM21 tripartite motif containing 21 Novel U 0.012192830524740652 -0.19051465933624268 1.0 4753 +114902 C1QTNF5 C1q and TNF related 5 Novel N 0.012192076481696262 -0.19052116046495327 1.0 4754 +4922 NTS neurotensin Novel U 0.012191449254203846 -0.19052656822872668 1.0 4755 +342618 SLFN14 schlafen family member 14 Novel N 0.012187505387024478 -0.1905605710463926 1.0 4756 +10501 SEMA6B semaphorin 6B Novel N 0.012186815217467938 -0.19056652147740924 1.0 4757 +5607 MAP2K5 mitogen-activated protein kinase kinase 5 Novel N 0.012184758800721653 -0.19058425127420228 1.0 4758 +10735 STAG2 STAG2 cohesin complex component Novel U 0.012184485572247505 -0.19058660696661409 1.0 4759 +29089 UBE2T ubiquitin conjugating enzyme E2 T Novel U 0.012177345962878762 -0.1906481624968919 1.0 4760 +25999 CLIP3 CAP-Gly domain containing linker protein 3 Novel U 0.012170468327990135 -0.19070745936325548 1.0 4761 +2994 GYPB glycophorin B (MNS blood group) Novel U 0.01216673906492988 -0.19073961192978445 1.0 4762 +9173 IL1RL1 interleukin 1 receptor like 1 Novel U 0.012161399696009465 -0.1907856463370286 1.0 4763 +891 CCNB1 cyclin B1 Novel U 0.012160227415037249 -0.1907957533853491 1.0 4764 +58495 OVOL2 ovo like zinc finger 2 Novel U 0.012156520143258397 -0.19082771634976986 1.0 4765 +9948 WDR1 WD repeat domain 1 Novel U 0.012145557949683508 -0.19092222903297973 1.0 4766 +5066 PAM peptidylglycine alpha-amidating monooxygenase Novel N 0.012141068885030845 -0.19096093237666065 1.0 4767 +23321 TRIM2 tripartite motif containing 2 Novel N 0.012140389633310275 -0.19096678867743178 1.0 4768 +55924 INKA2 inka box actin regulator 2 Novel U 0.01213788935396371 -0.19098834532193032 1.0 4769 +2587 GALR1 galanin receptor 1 Novel U 0.012135273996121137 -0.1910108941380561 1.0 4770 +3077 HFE homeostatic iron regulator Novel U 0.012134122704898585 -0.191020820219169 1.0 4771 +84514 GHDC GH3 domain containing Novel U 0.012126312976702948 -0.19108815330919945 1.0 4772 +1134 CHRNA1 cholinergic receptor nicotinic alpha 1 subunit Novel U 0.012109518319864778 -0.19123295170839943 1.0 4773 +4223 MEOX2 mesenchyme homeobox 2 Novel N 0.01210617478104998 -0.1912617786783525 1.0 4774 +8631 SKAP1 src kinase associated phosphoprotein 1 Novel U 0.012105718245739826 -0.19126571478629 1.0 4775 +9369 NRXN3 neurexin 3 Novel N 0.012101862722224077 -0.19129895593188398 1.0 4776 +5802 PTPRS protein tyrosine phosphatase receptor type S Novel U 0.01209812570824824 -0.1913311753244386 1.0 4777 +6241 RRM2 ribonucleotide reductase regulatory subunit M2 Novel U 0.012084293117849898 -0.19145043569193337 1.0 4778 +84892 POMGNT2 protein O-linked mannose N-acetylglucosaminyltransferase 2 (beta 1,4-) Novel N 0.012078923470702696 -0.1914967311487966 1.0 4779 +944 TNFSF8 TNF superfamily member 8 Novel U 0.012069769941522448 -0.19157565008028188 1.0 4780 +387923 SERP2 stress associated endoplasmic reticulum protein family member 2 Novel U 0.012069104508636115 -0.19158138723928692 1.0 4781 +440153 OR11H12 olfactory receptor family 11 subfamily H member 12 Novel U 0.01206825165266679 -0.1915887403028414 1.0 4782 +283159 OR8D1 olfactory receptor family 8 subfamily D member 1 Novel U 0.012064941466328295 -0.19161727971793552 1.0 4783 +23352 UBR4 ubiquitin protein ligase E3 component n-recognin 4 Novel U 0.012063245785551036 -0.19163189935943623 1.0 4784 +102723859 TBC1D3E TBC1 domain family member 3E Novel U 0.012054325168746034 -0.19170881019159475 1.0 4785 +375061 FAM89A family with sequence similarity 89 member A Novel U 0.012051687162993858 -0.19173155427107644 1.0 4786 +118429 ANTXR2 ANTXR cell adhesion molecule 2 Novel U 0.012039596597970144 -0.19183579542811388 1.0 4787 +284996 RNF149 ring finger protein 149 Novel U 0.012038991594499508 -0.19184101158316264 1.0 4788 +10106 CTDSP2 CTD small phosphatase 2 Novel N 0.012030292567891428 -0.19191601193235616 1.0 4789 +283316 CD163L1 CD163 molecule like 1 Novel U 0.012028581534016907 -0.1919307639435699 1.0 4790 +8447 DOC2B double C2 domain beta Novel U 0.012015226254297733 -0.19204590908424402 1.0 4791 +1676 DFFA DNA fragmentation factor subunit alpha Novel U 0.01200216081392105 -0.19215855531867537 1.0 4792 +2662 GDF10 growth differentiation factor 10 Novel U 0.011999320434685072 -0.19218304420049376 1.0 4793 +55664 CDC37L1 cell division cycle 37 like 1, HSP90 cochaperone Novel U 0.011990596583369002 -0.19225825858073373 1.0 4794 +57161 PELI2 pellino E3 ubiquitin protein ligase family member 2 Novel U 0.011989730976745314 -0.1922657215765338 1.0 4795 +1312 COMT catechol-O-methyltransferase Novel U 0.011989687468526087 -0.19226609669110487 1.0 4796 +54665 RSBN1 round spermatid basic protein 1 Novel U 0.011986474524358713 -0.19229379771391453 1.0 4797 +126364 LRRC25 leucine rich repeat containing 25 Novel U 0.011984119461895435 -0.19231410234282031 1.0 4798 +6550 SLC9A3 solute carrier family 9 member A3 Novel U 0.011968171609055096 -0.19245159985671467 1.0 4799 +114569 MAL2 mal, T cell differentiation protein 2 Novel U 0.011955059421540253 -0.19256464913068644 1.0 4800 +55829 SELENOS selenoprotein S Novel U 0.011952193100310596 -0.19258936167644705 1.0 4801 +3929 LBP lipopolysaccharide binding protein Novel U 0.011942770855444517 -0.19267059739246223 1.0 4802 +51379 CRLF3 cytokine receptor like factor 3 Novel U 0.011936692213084413 -0.19272300558939856 1.0 4803 +10590 SCGN secretagogin, EF-hand calcium binding protein Novel U 0.01193557908698006 -0.1927326026225247 1.0 4804 +79090 TRAPPC6A trafficking protein particle complex subunit 6A Novel U 0.011929373293560225 -0.19278610707704358 1.0 4805 +25861 WHRN whirlin Novel U 0.011928420454477931 -0.19279432216444553 1.0 4806 +566 AZU1 azurocidin 1 Novel U 0.011927600691193167 -0.19280138991298604 1.0 4807 +341418 OR6C4 olfactory receptor family 6 subfamily C member 4 Novel U 0.011926895733536835 -0.19280746784248018 1.0 4808 +80700 UBXN6 UBX domain protein 6 Novel U 0.011923225451263534 -0.1928391118946872 1.0 4809 +338322 NLRP10 NLR family pyrin domain containing 10 Novel U 0.011918622192637233 -0.1928787997839138 1.0 4810 +441323 FAM90A16 family with sequence similarity 90 member A16 Novel U 0.011911620782592763 -0.19293916380184825 1.0 4811 +1994 ELAVL1 ELAV like RNA binding protein 1 Novel U 0.011906155699915188 -0.1929862820746914 1.0 4812 +51225 ABI3 ABI family member 3 Novel U 0.011902203941295552 -0.19302035292994388 1.0 4813 +6229 RPS24 ribosomal protein S24 Novel U 0.011901218464077505 -0.19302884941337886 1.0 4814 +6997 CRIPTO cripto, EGF-CFC family member Novel U 0.011897685301788403 -0.1930593112589828 1.0 4815 +1827 RCAN1 regulator of calcineurin 1 Novel N 0.011894862144483263 -0.1930836516585761 1.0 4816 +8578 SCARF1 scavenger receptor class F member 1 Novel U 0.011894718988050633 -0.19308488590959297 1.0 4817 +2243 FGA fibrinogen alpha chain Novel U 0.01189238288067598 -0.19310502711351685 1.0 4818 +89845 ABCC10 ATP binding cassette subfamily C member 10 Novel N 0.011891670297754465 -0.19311117078571727 1.0 4819 +5796 PTPRK protein tyrosine phosphatase receptor type K Novel U 0.011890485693884774 -0.1931213840782942 1.0 4820 +51030 TVP23B trans-golgi network vesicle protein 23 homolog B Novel U 0.011880409099111387 -0.19320826139925604 1.0 4821 +719 C3AR1 complement C3a receptor 1 Novel U 0.011879514185393384 -0.19321597707186774 1.0 4822 +927 CD8B2 CD8B family member 2 Novel U 0.011879237027778025 -0.19321836664013442 1.0 4823 +54809 SAMD9 sterile alpha motif domain containing 9 Novel U 0.011872925672964711 -0.19327278121273073 1.0 4824 +9677 PPIP5K1 diphosphoinositol pentakisphosphate kinase 1 Novel N 0.01187137810976567 -0.19328612382973334 1.0 4825 +55355 HJURP Holliday junction recognition protein Novel U 0.011863198687003976 -0.19335664431334224 1.0 4826 +925 CD8A CD8 subunit alpha Novel U 0.011863038508257115 -0.19335802532555074 1.0 4827 +4353 MPO myeloperoxidase Novel U 0.011862465350265755 -0.1933629669186084 1.0 4828 +3738 KCNA3 potassium voltage-gated channel subfamily A member 3 Novel N 0.01185838060048972 -0.19339818438297232 1.0 4829 +28986 MAGEH1 MAGE family member H1 Novel N 0.011854162268360252 -0.19343455355356787 1.0 4830 +10960 LMAN2 lectin, mannose binding 2 Novel U 0.011851648724661759 -0.19345622455925546 1.0 4831 +3624 INHBA inhibin subunit beta A Novel U 0.011850886561604214 -0.19346279569623823 1.0 4832 +51361 HOOK1 hook microtubule tethering protein 1 Novel U 0.011845011099842918 -0.19351345213213889 1.0 4833 +7284 TUFM Tu translation elongation factor, mitochondrial Novel N 0.011839603563668507 -0.19356007425661667 1.0 4834 +64332 NFKBIZ NFKB inhibitor zeta Novel U 0.011837091717156354 -0.19358173062968223 1.0 4835 +11186 RASSF1 Ras association domain family member 1 Novel N 0.011836030374181723 -0.1935908812044876 1.0 4836 +54657 UGT1A4 UDP glucuronosyltransferase family 1 member A4 Novel N 0.011833154749623948 -0.19361567396070042 1.0 4837 +219699 UNC5B unc-5 netrin receptor B Novel U 0.011828376689182447 -0.19365686893776227 1.0 4838 +57817 HAMP hepcidin antimicrobial peptide Novel N 0.011828336624682126 -0.19365721436164124 1.0 4839 +5600 MAPK11 mitogen-activated protein kinase 11 Novel U 0.011825864713177814 -0.19367852642727246 1.0 4840 +79139 DERL1 derlin 1 Novel U 0.011818251913097322 -0.1937441616632708 1.0 4841 +9388 LIPG lipase G, endothelial type Novel U 0.011816271223731419 -0.19376123856173078 1.0 4842 +389289 ANXA2R annexin A2 receptor Novel U 0.011808311448212094 -0.19382986531393506 1.0 4843 +80776 B9D2 B9 domain containing 2 Novel U 0.011790309962416921 -0.1939850686236233 1.0 4844 +3001 GZMA granzyme A Novel U 0.011788352822269081 -0.19400194248792124 1.0 4845 +1677 DFFB DNA fragmentation factor subunit beta Novel U 0.01178825827956025 -0.19400275760626673 1.0 4846 +575 ADGRB1 adhesion G protein-coupled receptor B1 Novel U 0.011785817252209077 -0.19402380339816702 1.0 4847 +220164 DOK6 docking protein 6 Novel U 0.011782724066504817 -0.19405047190010313 1.0 4848 +91445 RNF185 ring finger protein 185 Novel U 0.011774392469352309 -0.19412230438480865 1.0 4849 +3725 JUN Jun proto-oncogene, AP-1 transcription factor subunit Novel U 0.011771499045570727 -0.1941472506004901 1.0 4850 +9252 RPS6KA5 ribosomal protein S6 kinase A5 Novel U 0.011770622152801346 -0.19415481090198952 1.0 4851 +391194 OR2M2 olfactory receptor family 2 subfamily M member 2 Novel U 0.0117639777599051 -0.19421209682716817 1.0 4852 +2350 FOLR2 folate receptor beta Novel U 0.011760511556673865 -0.19424198137223633 1.0 4853 +9797 TATDN2 TatD DNase domain containing 2 Novel U 0.011758294970017883 -0.1942610921050466 1.0 4854 +1282 COL4A1 collagen type IV alpha 1 chain Novel U 0.011752266299736528 -0.1943130694579902 1.0 4855 +8079 MLF2 myeloid leukemia factor 2 Novel U 0.011751507667046673 -0.19431961015722155 1.0 4856 +22981 NINL ninein like Novel U 0.01174161770546133 -0.19440487838386683 1.0 4857 +124739 USP43 ubiquitin specific peptidase 43 Novel N 0.011740173889161744 -0.194417326526805 1.0 4858 +3856 KRT8 keratin 8 Novel U 0.011731135663065932 -0.19449525135033022 1.0 4859 +10630 PDPN podoplanin Novel U 0.011723410523613297 -0.19456185514206692 1.0 4860 +374739 SPMIP8 sperm microtubule inner protein 8 Novel U 0.011717874105277956 -0.1946095884491528 1.0 4861 +9028 RHBDL1 rhomboid like 1 Novel N 0.011699311509100144 -0.1947696294810978 1.0 4862 +343413 FCRL6 Fc receptor like 6 Novel U 0.011698442253454056 -0.19477712393765395 1.0 4863 +7471 WNT1 Wnt family member 1 Novel U 0.011691570735361848 -0.194836368066868 1.0 4864 +23113 CUL9 cullin 9 Novel N 0.011687109338165603 -0.19487483287019422 1.0 4865 +25805 BAMBI BMP and activin membrane bound inhibitor Novel U 0.011685245907076825 -0.19489089880362018 1.0 4866 +1286 COL4A4 collagen type IV alpha 4 chain Novel U 0.011683154009479396 -0.1949089345054697 1.0 4867 +10886 NPFFR2 neuropeptide FF receptor 2 Novel N 0.011678226905298553 -0.19495141449210784 1.0 4868 +132430 PABPC4L poly(A) binding protein cytoplasmic 4 like Novel U 0.01167819737982394 -0.19495166905172767 1.0 4869 +6091 ROBO1 roundabout guidance receptor 1 Novel U 0.011675382085251863 -0.1949759416612392 1.0 4870 +28952 CCDC22 coiled-coil domain containing 22 Novel U 0.011673924536783708 -0.1949885081987385 1.0 4871 +9123 SLC16A3 solute carrier family 16 member 3 Novel N 0.011665392029407105 -0.19506207287000268 1.0 4872 +7266 DNAJC7 DnaJ heat shock protein family (Hsp40) member C7 Novel U 0.011661434623678434 -0.1950961924129036 1.0 4873 +11196 SEC23IP SEC23 interacting protein Novel U 0.011661181390831773 -0.19509837570912542 1.0 4874 +79541 OR2A4 olfactory receptor family 2 subfamily A member 4 Novel U 0.01165146709474351 -0.1951821294015342 1.0 4875 +6692 SPINT1 serine peptidase inhibitor, Kunitz type 1 Novel U 0.011650163595221578 -0.195193367776093 1.0 4876 +55083 KIF26B kinesin family member 26B Novel U 0.011649116153989574 -0.19520239849432153 1.0 4877 +2979 GUCA1B guanylate cyclase activator 1B Novel U 0.011648545658903893 -0.19520731712862016 1.0 4878 +145957 NRG4 neuregulin 4 Novel U 0.011647366593118417 -0.19521748267352731 1.0 4879 +3386 ICAM4 intercellular adhesion molecule 4 (Landsteiner-Wiener blood group) Novel U 0.011641620665092582 -0.1952670223091433 1.0 4880 +8036 SHOC2 SHOC2 leucine rich repeat scaffold protein Novel U 0.011637999197327775 -0.1952982454975747 1.0 4881 +124152 IQCK IQ motif containing K Novel U 0.011630811340267996 -0.19536021700470124 1.0 4882 +23511 NUP188 nucleoporin 188 Novel U 0.01163013405110092 -0.19536605638493584 1.0 4883 +4295 MLN motilin Novel U 0.011629043850779808 -0.1953754557589645 1.0 4884 +1466 CSRP2 cysteine and glycine rich protein 2 Novel U 0.011600696595824684 -0.19561985712892208 1.0 4885 +348 APOE apolipoprotein E Novel U 0.011595167030712094 -0.19566753134961556 1.0 4886 +56995 TULP4 TUB like protein 4 Novel U 0.01159353401256504 -0.1956816107330669 1.0 4887 +64743 WDR13 WD repeat domain 13 Novel U 0.01158943459372742 -0.19571695466959727 1.0 4888 +80821 DDHD1 DDHD domain containing 1 Novel U 0.011588814981356313 -0.19572229677812178 1.0 4889 +8694 DGAT1 diacylglycerol O-acyltransferase 1 Novel U 0.011578464139910658 -0.19581153857008846 1.0 4890 +1760 DMPK DM1 protein kinase Novel U 0.01157450915718961 -0.19584563722255804 1.0 4891 +219436 OR5D14 olfactory receptor family 5 subfamily D member 14 Novel U 0.011569442456264423 -0.19588932076966842 1.0 4892 +8620 NPFF neuropeptide FF-amide peptide precursor Novel N 0.011567470700698657 -0.19590632064363356 1.0 4893 +100129969 SPATA31F3 SPATA31 subfamily F member 3 Novel U 0.011564836451150418 -0.19592903233827272 1.0 4894 +26035 GLCE glucuronic acid epimerase Novel N 0.011559689868388933 -0.19597340460216556 1.0 4895 +387836 CLEC2A C-type lectin domain family 2 member A Novel N 0.011554708641270848 -0.19601635122022992 1.0 4896 +55188 RIC8B RIC8 guanine nucleotide exchange factor B Novel U 0.011543899631948223 -0.19610954319562632 1.0 4897 +728489 DNLZ DNL-type zinc finger Novel U 0.01153168481577926 -0.19621485560806978 1.0 4898 +22798 LAMB4 laminin subunit beta 4 Novel U 0.011518703399810547 -0.19632677740973153 1.0 4899 +84876 ORAI1 ORAI calcium release-activated calcium modulator 1 Novel U 0.011517884875815296 -0.19633383447349662 1.0 4900 +8202 NCOA3 nuclear receptor coactivator 3 Novel U 0.01151727664832095 -0.19633907842509257 1.0 4901 +57658 CALCOCO1 calcium binding and coiled-coil domain 1 Novel N 0.0115141470564259 -0.1963660608100808 1.0 4902 +4064 CD180 CD180 molecule Novel U 0.011503848083887918 -0.19645485540417545 1.0 4903 +129049 SGSM1 small G protein signaling modulator 1 Novel U 0.011492793413309837 -0.196550165395848 1.0 4904 +146862 UNC45B unc-45 myosin chaperone B Novel U 0.011488571041213202 -0.19658656939780594 1.0 4905 +63035 BCORL1 BCL6 corepressor like 1 Novel U 0.01147982669272602 -0.19666196049839177 1.0 4906 +6722 SRF serum response factor Novel U 0.011467687116789327 -0.1967666242125443 1.0 4907 +285525 YIPF7 Yip1 domain family member 7 Novel U 0.011460767155647223 -0.19682628600293145 1.0 4908 +84335 AKT1S1 AKT1 substrate 1 Novel U 0.01145990899459944 -0.1968336848052512 1.0 4909 +55294 FBXW7 F-box and WD repeat domain containing 7 Novel U 0.01145498946865963 -0.19687609945461093 1.0 4910 +79734 KCTD17 potassium channel tetramerization domain containing 17 Novel U 0.011452075546364047 -0.1969012224022162 1.0 4911 +150353 DNAJB7 DnaJ heat shock protein family (Hsp40) member B7 Novel U 0.011447556028660426 -0.19694018830279672 1.0 4912 +2696 GIPR gastric inhibitory polypeptide receptor Novel U 0.01144329492834348 -0.19697692620763574 1.0 4913 +56061 UBFD1 ubiquitin family domain containing 1 Novel U 0.01143902370859183 -0.19701375135914848 1.0 4914 +16 AARS1 alanyl-tRNA synthetase 1 Novel U 0.011433266602822578 -0.1970633873658526 1.0 4915 +177 AGER advanced glycosylation end-product specific receptor Novel U 0.011429894908891831 -0.1970924570806118 1.0 4916 +390081 OR52E4 olfactory receptor family 52 subfamily E member 4 Novel U 0.011423298906970015 -0.19714932579359606 1.0 4917 +81545 FBXO38 F-box protein 38 Novel U 0.011408404983307696 -0.19727773665217396 1.0 4918 +158747 MOSPD2 motile sperm domain containing 2 Novel U 0.011404193014496578 -0.19731405096018317 1.0 4919 +64388 GREM2 gremlin 2, DAN family BMP antagonist Novel N 0.01140224978761505 -0.1973308048685505 1.0 4920 +80148 SLC66A2 solute carrier family 66 member 2 Novel U 0.011401435780870592 -0.1973378229859596 1.0 4921 +7905 REEP5 receptor accessory protein 5 Novel U 0.011399676431654326 -0.19735299155728578 1.0 4922 +594857 NPS neuropeptide S Novel U 0.011395851290996148 -0.1973859707511661 1.0 4923 +9429 ABCG2 ATP binding cassette subfamily G member 2 (JR blood group) Novel N 0.011394183554544884 -0.1974003494652272 1.0 4924 +10598 AHSA1 activator of HSP90 ATPase activity 1 Novel N 0.011389014678288152 -0.19744491393682373 1.0 4925 +1039 CDR2 cerebellar degeneration related protein 2 Novel U 0.011380613589357682 -0.19751734555840375 1.0 4926 +9528 TMEM59 transmembrane protein 59 Novel U 0.01136898402616454 -0.19761761209852946 1.0 4927 +8082 SSPN sarcospan Novel N 0.011364096096063364 -0.19765975433822341 1.0 4928 +51295 ECSIT ECSIT signaling integrator Novel U 0.011351722272739827 -0.19776643766176472 1.0 4929 +90196 SYS1 SYS1 golgi trafficking protein Novel U 0.011345310865215995 -0.19782171485825734 1.0 4930 +3804 KIR2DL3 killer cell immunoglobulin like receptor, two Ig domains and long cytoplasmic tail 3 Novel N 0.011337051385933836 -0.19789292556472227 1.0 4931 +1675 CFD complement factor D Novel N 0.011333861212281655 -0.19792043026710807 1.0 4932 +9375 TM9SF2 transmembrane 9 superfamily member 2 Novel N 0.011331964798463705 -0.19793678056754624 1.0 4933 +667 DST dystonin Novel U 0.011330044440890502 -0.19795333730372552 1.0 4934 +163702 IFNLR1 interferon lambda receptor 1 Novel N 0.011327572351998445 -0.19797465089873964 1.0 4935 +25829 TMEM184B transmembrane protein 184B Novel U 0.011326078055059453 -0.19798753427032506 1.0 4936 +8856 NR1I2 nuclear receptor subfamily 1 group I member 2 Novel N 0.011325250233838841 -0.19799467149192618 1.0 4937 +1755 DMBT1 deleted in malignant brain tumors 1 Novel N 0.011317118635498743 -0.19806477964798608 1.0 4938 +100287513 USP17L22 ubiquitin specific peptidase 17 like family member 22 Novel U 0.011315357312988454 -0.1980799652324504 1.0 4939 +649 BMP1 bone morphogenetic protein 1 Novel U 0.011312423091334437 -0.19810526319492106 1.0 4940 +552 AVPR1A arginine vasopressin receptor 1A Novel U 0.011312053885954434 -0.19810844637088681 1.0 4941 +140823 ROMO1 reactive oxygen species modulator 1 Novel U 0.011310792740958687 -0.19811931957766338 1.0 4942 +219952 OR6Q1 olfactory receptor family 6 subfamily Q member 1 Novel U 0.01131021192116885 -0.19812432722840626 1.0 4943 +1395 CRHR2 corticotropin releasing hormone receptor 2 Novel U 0.011306742491819795 -0.19815423958807646 1.0 4944 +10536 P3H3 prolyl 3-hydroxylase 3 Novel N 0.011304862197631826 -0.1981704509099907 1.0 4945 +145741 C2CD4A C2 calcium dependent domain containing 4A Novel U 0.0112855344874681 -0.1983370885209211 1.0 4946 +54440 SASH3 SAM and SH3 domain containing 3 Novel U 0.01128485164607159 -0.19834297577078128 1.0 4947 +147495 APCDD1 APC down-regulated 1 Novel N 0.01128166450706258 -0.198370454309401 1.0 4948 +8788 DLK1 delta like non-canonical Notch ligand 1 Novel U 0.011273046358415926 -0.19844475735352557 1.0 4949 +27177 IL36B interleukin 36 beta Novel U 0.011267181800958216 -0.19849531977585277 1.0 4950 +79295 OR5H6 olfactory receptor family 5 subfamily H member 6 Novel U 0.011258039435884588 -0.19857414245382227 1.0 4951 +7726 TRIM26 tripartite motif containing 26 Novel U 0.011247071141687628 -0.19866870773473144 1.0 4952 +7940 LST1 leukocyte specific transcript 1 Novel U 0.011236231835331872 -0.19876216092188942 1.0 4953 +1829 DSG2 desmoglein 2 Novel U 0.0112290709095259 -0.1988239002359752 1.0 4954 +885 CCK cholecystokinin Novel N 0.01122686230732738 -0.19884294212923312 1.0 4955 +84447 SYVN1 synoviolin 1 Novel U 0.011226166918311471 -0.19884893756083347 1.0 4956 +80725 SRCIN1 SRC kinase signaling inhibitor 1 Novel U 0.011223073918977238 -0.19887560445594415 1.0 4957 +359 AQP2 aquaporin 2 Novel U 0.01122166942402236 -0.19888771358226393 1.0 4958 +55074 OXR1 oxidation resistance 1 Novel N 0.011220645815896203 -0.1988965388187367 1.0 4959 +143162 FRMPD2 FERM and PDZ domain containing 2 Novel U 0.011219716270655124 -0.19890455307375776 1.0 4960 +6853 SYN1 synapsin I Novel U 0.011209105190602989 -0.19899603856346662 1.0 4961 +3998 LMAN1 lectin, mannose binding 1 Novel U 0.01119679310930479 -0.19910218956613238 1.0 4962 +9437 NCR1 natural cytotoxicity triggering receptor 1 Novel U 0.011196532985761638 -0.1991044322718337 1.0 4963 +5167 ENPP1 ectonucleotide pyrophosphatase/phosphodiesterase 1 Novel U 0.01119217634577884 -0.19914199389047696 1.0 4964 +102723796 TLE7 TLE family member 7 Novel U 0.01119000384030515 -0.1991607245688037 1.0 4965 +6035 RNASE1 ribonuclease A family member 1, pancreatic Novel N 0.011184567659785634 -0.1992075936560719 1.0 4966 +257101 ZNF683 zinc finger protein 683 Novel U 0.011182301806345676 -0.19922712915203883 1.0 4967 +2248 FGF3 fibroblast growth factor 3 Novel U 0.011179982670892716 -0.1992471240292401 1.0 4968 +8200 GDF5 growth differentiation factor 5 Novel U 0.011179849981997059 -0.1992482680323518 1.0 4969 +2296 FOXC1 forkhead box C1 Novel U 0.011167887734188699 -0.1993514028775692 1.0 4970 +142 PARP1 poly(ADP-ribose) polymerase 1 Novel U 0.01116472184801772 -0.19937869818071377 1.0 4971 +476 ATP1A1 ATPase Na+/K+ transporting subunit alpha 1 Novel U 0.011164139222609847 -0.19938372139894361 1.0 4972 +129401 NUP35 nucleoporin 35 Novel U 0.011164124867110763 -0.19938384516767 1.0 4973 +4008 LMO7 LIM domain 7 Novel N 0.011162292582862878 -0.19939964256255155 1.0 4974 +389941 C1QL3 complement C1q like 3 Novel U 0.011160755650609798 -0.19941289352278668 1.0 4975 +27246 RNF115 ring finger protein 115 Novel U 0.011159138697849602 -0.19942683439538172 1.0 4976 +51316 PLAC8 placenta associated 8 Novel U 0.011145156599585473 -0.19954738377400918 1.0 4977 +1958 EGR1 early growth response 1 Novel U 0.011137164698321945 -0.19961628750456312 1.0 4978 +1302 COL11A2 collagen type XI alpha 2 chain Novel U 0.011133764051583315 -0.1996456068415846 1.0 4979 +157285 PRAG1 PEAK1 related, kinase-activating pseudokinase 1 Novel N 0.011123510986435629 -0.19973400563618834 1.0 4980 +23770 FKBP8 FKBP prolyl isomerase 8 Novel U 0.011121573784682566 -0.19975070759773925 1.0 4981 +647166 C13orf42 chromosome 13 open reading frame 42 Novel U 0.011100912279377744 -0.19992884478279924 1.0 4982 +3790 KCNS3 potassium voltage-gated channel modifier subfamily S member 3 Novel N 0.011099876704172125 -0.19993777319577424 1.0 4983 +59353 TMEM35A transmembrane protein 35A Novel U 0.011099428097396872 -0.19994164094630665 1.0 4984 +80007 C10orf88 chromosome 10 open reading frame 88 Novel U 0.01109939412774688 -0.1999419338222485 1.0 4985 +11251 PTGDR2 prostaglandin D2 receptor 2 Novel U 0.011097810018537527 -0.19995559152778444 1.0 4986 +79674 VEPH1 ventricular zone expressed PH domain containing 1 Novel U 0.011095493989280785 -0.19997555962431104 1.0 4987 +10681 GNB5 G protein subunit beta 5 Novel U 0.011093677345764923 -0.1999912221695806 1.0 4988 +135112 NCOA7 nuclear receptor coactivator 7 Novel N 0.01109312729715363 -0.19999596452062504 1.0 4989 +23039 XPO7 exportin 7 Novel U 0.011092780492675881 -0.19999895456285674 1.0 4990 +84960 CCDC183 coiled-coil domain containing 183 Novel U 0.011089900398889204 -0.2000237858513954 1.0 4991 +245972 ATP6V0D2 ATPase H+ transporting V0 subunit d2 Novel U 0.01108584603785427 -0.20005874131331963 1.0 4992 +9717 SEC14L5 SEC14 like lipid binding 5 Novel U 0.011080144069939924 -0.20010790193828765 1.0 4993 +23505 TMEM131 transmembrane protein 131 Novel U 0.01107901728954056 -0.2001176166945729 1.0 4994 +25844 YIPF3 Yip1 domain family member 3 Novel U 0.01106158387776681 -0.20026792224363874 1.0 4995 +119695 OR52R1 olfactory receptor family 52 subfamily R member 1 Novel U 0.011058869175569886 -0.20029132757643042 1.0 4996 +258010 SVIP small VCP interacting protein Novel U 0.011055115753268662 -0.20032368843655254 1.0 4997 +9647 PPM1F protein phosphatase, Mg2+/Mn2+ dependent 1F Novel U 0.011038937183878623 -0.2004631751180368 1.0 4998 +1033 CDKN3 cyclin dependent kinase inhibitor 3 Novel U 0.01102573623584484 -0.20057698965807969 1.0 4999 +729238 SFTPA2 surfactant protein A2 Novel U 0.01101049243511117 -0.20070841704985243 1.0 5000 +4693 NDP norrin cystine knot growth factor NDP Novel U 0.011008940821529326 -0.20072179458801784 1.0 5001 +50853 VILL villin like Novel U 0.010995606670907139 -0.2008367575600743 1.0 5002 +5315 PKM pyruvate kinase M1/2 Novel U 0.010991724318426179 -0.200870230016808 1.0 5003 +3964 LGALS8 galectin 8 Novel U 0.010978281529098797 -0.20098612963858314 1.0 5004 +55509 BATF3 basic leucine zipper ATF-like transcription factor 3 Novel N 0.010968344487207137 -0.20107180377724287 1.0 5005 +402778 IFITM10 interferon induced transmembrane protein 10 Novel U 0.01096800687180466 -0.20107471459407558 1.0 5006 +7318 UBA7 ubiquitin like modifier activating enzyme 7 Novel N 0.010967205622259115 -0.20108162272281396 1.0 5007 +7035 TFPI tissue factor pathway inhibitor Novel U 0.010962819282219698 -0.20111944040626972 1.0 5008 +10494 STK25 serine/threonine kinase 25 Novel U 0.010959251532601579 -0.20115020045325538 1.0 5009 +10806 SDCCAG8 SHH signaling and ciliogenesis regulator SDCCAG8 Novel U 0.010954124218727065 -0.20119440658669288 1.0 5010 +2249 FGF4 fibroblast growth factor 4 Novel U 0.01094868974781766 -0.20124126093422517 1.0 5011 +5706 PSMC6 proteasome 26S subunit, ATPase 6 Novel U 0.010947977781256828 -0.20124739929235214 1.0 5012 +7347 UCHL3 ubiquitin C-terminal hydrolase L3 Novel N 0.010944436074771767 -0.20127793480340275 1.0 5013 +1285 COL4A3 collagen type IV alpha 3 chain Novel U 0.010941681110394643 -0.20130168726440892 1.0 5014 +200424 TET3 tet methylcytosine dioxygenase 3 Novel U 0.010925241787091942 -0.2014434220864478 1.0 5015 +9828 ARHGEF17 Rho guanine nucleotide exchange factor 17 Novel U 0.010920792223508374 -0.2014817848639816 1.0 5016 +2342 FNTB farnesyltransferase, CAAX box, subunit beta Novel N 0.0109188913089399 -0.20149817396851544 1.0 5017 +308 ANXA5 annexin A5 Novel N 0.010918877468621423 -0.20149829329551208 1.0 5018 +6256 RXRA retinoid X receptor alpha Novel U 0.010918685425808927 -0.20149994902995758 1.0 5019 +57169 ZNFX1 zinc finger NFX1-type containing 1 Novel U 0.010912699037991769 -0.20155156183641545 1.0 5020 +79370 BCL2L14 BCL2 like 14 Novel N 0.01091110736099945 -0.20156528478906355 1.0 5021 +991 CDC20 cell division cycle 20 Novel U 0.010905042021494346 -0.2016175782928491 1.0 5022 +4928 NUP98 nucleoporin 98 and 96 precursor Novel U 0.010904825905303976 -0.20161944158060233 1.0 5023 +10109 ARPC2 actin related protein 2/3 complex subunit 2 Novel U 0.010904006425225696 -0.20162650688742312 1.0 5024 +54543 TOMM7 translocase of outer mitochondrial membrane 7 Novel U 0.010901487371238817 -0.20164822540113334 1.0 5025 +137902 PXDNL peroxidasin like Novel U 0.010895426186485398 -0.20170048308391944 1.0 5026 +57602 USP36 ubiquitin specific peptidase 36 Novel U 0.010890396032299434 -0.20174385153621202 1.0 5027 +83985 SPNS1 SPNS lysolipid transporter 1, lysophospholipid Novel U 0.010888879719543722 -0.2017569247214417 1.0 5028 +8655 DYNLL1 dynein light chain LC8-type 1 Novel N 0.010888413364602407 -0.2017609454912384 1.0 5029 +90273 CEACAM21 CEA cell adhesion molecule 21 Novel U 0.010878383325809234 -0.20184742142076528 1.0 5030 +5800 PTPRO protein tyrosine phosphatase receptor type O Novel U 0.010873633215268644 -0.2018883754223223 1.0 5031 +219956 OR9Q1 olfactory receptor family 9 subfamily Q member 1 Novel U 0.010873261516537272 -0.20189158009520164 1.0 5032 +10120 ACTR1B actin related protein 1B Novel U 0.010872332266349642 -0.20189959180636202 1.0 5033 +283694 OR4N4 olfactory receptor family 4 subfamily N member 4 Novel U 0.010871403895586357 -0.20190759593539445 1.0 5034 +57631 LRCH2 leucine rich repeats and calponin homology domain containing 2 Novel U 0.01086776271092815 -0.2019389891168557 1.0 5035 +84173 ELMOD3 ELMO domain containing 3 Novel N 0.01086657102247623 -0.20194926349053574 1.0 5036 +80336 PABPC1L poly(A) binding protein cytoplasmic 1 like Novel U 0.010859211405572743 -0.20201271585854885 1.0 5037 +4818 NKG7 natural killer cell granule protein 7 Novel N 0.010852870004824109 -0.2020673894780182 1.0 5038 +201134 CEP112 centrosomal protein 112 Novel N 0.01084015137994743 -0.2021770455751873 1.0 5039 +8165 AKAP1 A-kinase anchoring protein 1 Novel N 0.010839472308665584 -0.2021829003202709 1.0 5040 +159195 USP54 ubiquitin specific peptidase 54 Novel U 0.010836388435333402 -0.20220948853378057 1.0 5041 +27316 RBMX RNA binding motif protein X-linked Novel U 0.010835167327197826 -0.20222001655498315 1.0 5042 +9491 PSMF1 proteasome inhibitor subunit 1 Novel U 0.010832072862157718 -0.20224669608696197 1.0 5043 +50944 SHANK1 SH3 and multiple ankyrin repeat domains 1 Novel N 0.010826617195718282 -0.20229373317587732 1.0 5044 +55323 LARP6 La ribonucleoprotein 6, translational regulator Novel N 0.010824336504629415 -0.20231339659751907 1.0 5045 +9518 GDF15 growth differentiation factor 15 Novel U 0.01081857590199759 -0.20236306275310373 1.0 5046 +4839 NOP2 NOP2 nucleolar protein Novel N 0.010813038416381362 -0.2024108052619593 1.0 5047 +221491 SMIM29 small integral membrane protein 29 Novel U 0.01081175460101908 -0.20242187392570862 1.0 5048 +4956 ODF1 outer dense fiber of sperm tails 1 Novel U 0.010810862815214806 -0.20242956263040396 1.0 5049 +10999 SLC27A4 solute carrier family 27 member 4 Novel U 0.010806105955410282 -0.20247057482205222 1.0 5050 +10049 DNAJB6 DnaJ heat shock protein family (Hsp40) member B6 Novel U 0.010800907631716483 -0.20251539318045267 1.0 5051 +7287 TULP1 TUB like protein 1 Novel U 0.010788891827533323 -0.20261898977236803 1.0 5052 +29097 CNIH4 cornichon family member 4 Novel N 0.01078124464958192 -0.2026849214038643 1.0 5053 +9244 CRLF1 cytokine receptor like factor 1 Novel U 0.010779670303241031 -0.2026984949369316 1.0 5054 +83597 RTP3 receptor transporter protein 3 Novel U 0.010779550211427342 -0.20269953033185195 1.0 5055 +27063 ANKRD1 ankyrin repeat domain 1 Novel U 0.010773352477837552 -0.20275296529697903 1.0 5056 +92346 C1orf105 chromosome 1 open reading frame 105 Novel U 0.01076700061472031 -0.20280772911979347 1.0 5057 +282974 STK32C serine/threonine kinase 32C Novel U 0.010763720425790107 -0.20283600990639977 1.0 5058 +5903 RANBP2 RAN binding protein 2 Novel U 0.01075972600665464 -0.20287044856758368 1.0 5059 +26212 OR2B6 olfactory receptor family 2 subfamily B member 6 Novel U 0.010753012408378807 -0.20292833116039755 1.0 5060 +338557 FFAR4 free fatty acid receptor 4 Novel N 0.010740572619992048 -0.20303558321455656 1.0 5061 +689 BTF3 basic transcription factor 3 Novel U 0.010736753283773793 -0.20306851236432955 1.0 5062 +284434 NWD1 NACHT and WD repeat domain containing 1 Novel U 0.010736047979298922 -0.20307459328398714 1.0 5063 +5476 CTSA cathepsin A Novel U 0.01073599441213947 -0.20307505512366705 1.0 5064 +90007 MIDN midnolin Novel U 0.01072911813587082 -0.20313434027642435 1.0 5065 +40 ASIC2 acid sensing ion channel subunit 2 Novel N 0.010727949089955217 -0.2031444194330753 1.0 5066 +832 CAPZB capping actin protein of muscle Z-line subunit beta Novel U 0.010724934016642663 -0.20317041447383943 1.0 5067 +1636 ACE angiotensin I converting enzyme Novel U 0.010717106769929891 -0.2032378986031714 1.0 5068 +390195 OR5AN1 olfactory receptor family 5 subfamily AN member 1 Novel N 0.010716628941795795 -0.20324201829133037 1.0 5069 +132014 IL17RE interleukin 17 receptor E Novel U 0.010712063113914327 -0.20328138346411298 1.0 5070 +2847 MCHR1 melanin concentrating hormone receptor 1 Novel N 0.010704587600485548 -0.20334583505655188 1.0 5071 +219437 OR5L1 olfactory receptor family 5 subfamily L member 1 Novel U 0.010699417204685853 -0.20339041262918348 1.0 5072 +3190 HNRNPK heterogeneous nuclear ribonucleoprotein K Novel U 0.010695453349346769 -0.20342458777865455 1.0 5073 +23204 ARL6IP1 ADP ribosylation factor like GTPase 6 interacting protein 1 Novel U 0.010694626711753268 -0.20343171479538438 1.0 5074 +23462 HEY1 hes related family bHLH transcription factor with YRPW motif 1 Novel U 0.010694240518872711 -0.20343504443238894 1.0 5075 +2124 EVI2B ecotropic viral integration site 2B Novel N 0.010684908236487083 -0.20351550451938816 1.0 5076 +89 ACTN3 actinin alpha 3 Novel U 0.010683080745867626 -0.20353126058507023 1.0 5077 +1284 COL4A2 collagen type IV alpha 2 chain Novel U 0.010682355660983814 -0.2035375120453693 1.0 5078 +9857 CEP350 centrosomal protein 350 Novel U 0.010680068324471178 -0.20355723276182408 1.0 5079 +26341 OR5H1 olfactory receptor family 5 subfamily H member 1 Novel U 0.010679931261129644 -0.20355841448007145 1.0 5080 +55757 UGGT2 UDP-glucose glycoprotein glucosyltransferase 2 Novel U 0.010678137437175547 -0.20357388028205253 1.0 5081 +3628 INPP1 inositol polyphosphate-1-phosphatase Novel N 0.010652003368593543 -0.2037992002353996 1.0 5082 +1185 CLCN6 chloride voltage-gated channel 6 Novel N 0.010649526366216078 -0.2038205561929835 1.0 5083 +254786 OR6C3 olfactory receptor family 6 subfamily C member 3 Novel U 0.010644714807375043 -0.2038620399830098 1.0 5084 +5621 PRNP prion protein (Kanno blood group) Novel U 0.010644441766961471 -0.20386439405402076 1.0 5085 +348938 NIPAL4 NIPA like domain containing 4 Novel U 0.010637715942997927 -0.2039223820529782 1.0 5086 +6746 SSR2 signal sequence receptor subunit 2 Novel U 0.010632552013228542 -0.20396690387747235 1.0 5087 +84292 WDR83 WD repeat domain 83 Novel N 0.010629560882184875 -0.20399269249531035 1.0 5088 +126326 GIPC3 GIPC PDZ domain containing family member 3 Novel N 0.010628944392053016 -0.2039980076848421 1.0 5089 +390079 OR52E8 olfactory receptor family 52 subfamily E member 8 Novel U 0.010624262896543698 -0.2040383701085667 1.0 5090 +55752 SEPTIN11 septin 11 Novel U 0.010620935266669079 -0.20406705991649893 1.0 5091 +165140 OXER1 oxoeicosanoid receptor 1 Novel N 0.010615350509014352 -0.2041152099904252 1.0 5092 +27113 BBC3 BCL2 binding component 3 Novel N 0.010613424102872545 -0.20413181887551468 1.0 5093 +4102 MAGEA3 MAGE family member A3 Novel N 0.010610559982911705 -0.20415651244260824 1.0 5094 +10527 IPO7 importin 7 Novel U 0.010608918793434905 -0.2041706622767677 1.0 5095 +126353 MISP mitotic spindle positioning Novel U 0.0106073862505831 -0.2041838753929263 1.0 5096 +6790 AURKA aurora kinase A Novel U 0.01060307161985356 -0.20422107482062501 1.0 5097 +10952 SEC61B SEC61 translocon subunit beta Novel U 0.010602014749065672 -0.20423018683760294 1.0 5098 +6500 SKP1 S-phase kinase associated protein 1 Novel U 0.010599058455878814 -0.20425567509408518 1.0 5099 +1047 CLGN calmegin Novel N 0.010588466021027476 -0.2043469998305703 1.0 5100 +8409 UXT ubiquitously expressed prefoldin like chaperone Novel U 0.010587260877176577 -0.20435739021258867 1.0 5101 +10904 BLCAP BLCAP apoptosis inducing factor Novel U 0.010573268405001801 -0.2044780290319037 1.0 5102 +140685 ZBTB46 zinc finger and BTB domain containing 46 Novel N 0.01057180289668467 -0.20449066419678857 1.0 5103 +8790 FPGT fucose-1-phosphate guanylyltransferase Novel N 0.010571674461822346 -0.20449177152292478 1.0 5104 +134218 DNAJC21 DnaJ heat shock protein family (Hsp40) member C21 Novel U 0.01056725651805112 -0.20452986168409887 1.0 5105 +55227 LRRC1 leucine rich repeat containing 1 Novel U 0.010566964219787336 -0.2045323817904096 1.0 5106 +4340 MOG myelin oligodendrocyte glycoprotein Novel U 0.010561749863506678 -0.20457733837687475 1.0 5107 +84824 FCRLA Fc receptor like A Novel U 0.010558587625295273 -0.2046046022284266 1.0 5108 +51320 MEX3C mex-3 RNA binding family member C Novel U 0.010557174600959715 -0.20461678489246027 1.0 5109 +120892 LRRK2 leucine rich repeat kinase 2 Novel U 0.010557131661516535 -0.20461715510321807 1.0 5110 +9810 RNF40 ring finger protein 40 Novel N 0.01055462377943376 -0.204638777296185 1.0 5111 +2101 ESRRA estrogen related receptor alpha Novel N 0.010548150436315825 -0.20469458848244387 1.0 5112 +1778 DYNC1H1 dynein cytoplasmic 1 heavy chain 1 Novel U 0.010545226628338554 -0.20471979666137582 1.0 5113 +390174 OR9G1 olfactory receptor family 9 subfamily G member 1 Novel U 0.010542514264963911 -0.20474318182955645 1.0 5114 +50831 TAS2R3 taste 2 receptor member 3 Novel N 0.010541451692892738 -0.20475234300125666 1.0 5115 +338339 CLEC4D C-type lectin domain family 4 member D Novel N 0.010539974310609003 -0.20476508053985315 1.0 5116 +10827 FAM114A2 family with sequence similarity 114 member A2 Novel U 0.010539706916330889 -0.20476738593160956 1.0 5117 +91319 DERL3 derlin 3 Novel U 0.010539036953974443 -0.20477316214232183 1.0 5118 +257313 UTS2B urotensin 2B Novel U 0.010538281247618993 -0.20477967761159216 1.0 5119 +4321 MMP12 matrix metallopeptidase 12 Novel U 0.01053486117170608 -0.20480916446101718 1.0 5120 +552889 ATXN7L3B ataxin 7 like 3B Novel U 0.01053236513074311 -0.2048306845634675 1.0 5121 +6647 SOD1 superoxide dismutase 1 Novel U 0.010529426613842244 -0.20485601955824398 1.0 5122 +4636 MYL5 myosin light chain 5 Novel N 0.010528914954847726 -0.20486043092574355 1.0 5123 +80228 ORAI2 ORAI calcium release-activated calcium modulator 2 Novel U 0.010522229291325043 -0.20491807267365197 1.0 5124 +60468 BACH2 BTB domain and CNC homolog 2 Novel U 0.010512949918065728 -0.20499807659433192 1.0 5125 +9002 F2RL3 F2R like thrombin or trypsin receptor 3 Novel U 0.01050957427985024 -0.2050271803155089 1.0 5126 +286097 MICU3 mitochondrial calcium uptake family member 3 Novel U 0.010503410874311347 -0.20508031931467105 1.0 5127 +5799 PTPRN2 protein tyrosine phosphatase receptor type N2 Novel N 0.01050102404644764 -0.2051008978151525 1.0 5128 +109 ADCY3 adenylate cyclase 3 Novel N 0.010495380216177647 -0.2051495571951164 1.0 5129 +1822 ATN1 atrophin 1 Novel U 0.010489304655509865 -0.20520193882264318 1.0 5130 +55876 GSDMB gasdermin B Novel U 0.010481174669514242 -0.20527203307756176 1.0 5131 +2619 GAS1 growth arrest specific 1 Novel U 0.01047626340543779 -0.20531437649566023 1.0 5132 +107984640 LBHD2 LBH domain containing 2 Novel U 0.010473357340681418 -0.20533943169796348 1.0 5133 +682 BSG basigin (Ok blood group) Novel U 0.010464152735778234 -0.20541879098872434 1.0 5134 +80004 ESRP2 epithelial splicing regulatory protein 2 Novel N 0.010460819436510593 -0.20544752967643076 1.0 5135 +134083 OR2Y1 olfactory receptor family 2 subfamily Y member 1 Novel U 0.010459011269601644 -0.20546311913898577 1.0 5136 +148738 HJV hemojuvelin BMP co-receptor Novel U 0.010452385104916216 -0.20552024790610082 1.0 5137 +5351 PLOD1 procollagen-lysine,2-oxoglutarate 5-dioxygenase 1 Novel U 0.01044930841044478 -0.2055467742256669 1.0 5138 +2792 GNGT1 G protein subunit gamma transducin 1 Novel U 0.01044709375621122 -0.20556586829772153 1.0 5139 +23625 FAM89B family with sequence similarity 89 member B Novel U 0.010445866760677928 -0.2055764470782681 1.0 5140 +8618 CADPS calcium dependent secretion activator Novel U 0.010443675782986998 -0.2055953370184072 1.0 5141 +4137 MAPT microtubule associated protein tau Novel U 0.010438947360384834 -0.20563610403318647 1.0 5142 +80728 ARHGAP39 Rho GTPase activating protein 39 Novel U 0.010432159117832423 -0.20569463018614345 1.0 5143 +343171 OR2W3 olfactory receptor family 2 subfamily W member 3 Novel U 0.010422113188663885 -0.20578124311763094 1.0 5144 +84666 RETNLB resistin like beta Novel U 0.010420473670811595 -0.20579537853955465 1.0 5145 +338675 OR5AP2 olfactory receptor family 5 subfamily AP member 2 Novel U 0.010416630253518895 -0.20582851530899285 1.0 5146 +3146 HMGB1 high mobility group box 1 Novel U 0.010415990069273446 -0.20583403478193163 1.0 5147 +43 ACHE acetylcholinesterase (Yt blood group) Novel U 0.010414739935720292 -0.20584481305141503 1.0 5148 +23452 ANGPTL2 angiopoietin like 2 Novel N 0.010407088592747027 -0.20591078059245707 1.0 5149 +9247 GCM2 glial cells missing transcription factor 2 Novel U 0.010392963727290523 -0.20603256086619082 1.0 5150 +79789 CLMN calmin Novel U 0.010388571478492488 -0.20607042949315785 1.0 5151 +115557 ARHGEF25 Rho guanine nucleotide exchange factor 25 Novel U 0.010385785826463682 -0.20609444653371936 1.0 5152 +6339 SCNN1D sodium channel epithelial 1 subunit delta Novel U 0.010383429172688852 -0.20611476488242705 1.0 5153 +2906 GRIN2D glutamate ionotropic receptor NMDA type subunit 2D Novel U 0.010383356398104839 -0.20611539232265222 1.0 5154 +401666 OR51A4 olfactory receptor family 51 subfamily A member 4 Novel U 0.010380381567624731 -0.20614104040201228 1.0 5155 +478 ATP1A3 ATPase Na+/K+ transporting subunit alpha 3 Novel U 0.010375745543016787 -0.20618101078952009 1.0 5156 +57159 TRIM54 tripartite motif containing 54 Novel U 0.010372766741433915 -0.20620669310651474 1.0 5157 +54923 LIME1 Lck interacting transmembrane adaptor 1 Novel U 0.01037133814254937 -0.2062190100495505 1.0 5158 +51497 NELFCD negative elongation factor complex member C/D Novel N 0.010361220938837016 -0.20630623748837496 1.0 5159 +166655 TRIM60 tripartite motif containing 60 Novel N 0.010360444371005601 -0.20631293281891624 1.0 5160 +730159 TEX50 testis expressed 50 Novel U 0.010360106245031633 -0.2063158480377403 1.0 5161 +3908 LAMA2 laminin subunit alpha 2 Novel U 0.010352343704518596 -0.20638277428999086 1.0 5162 +10398 MYL9 myosin light chain 9 Novel U 0.010350141111425055 -0.20640176437458185 1.0 5163 +60343 FAM3A FAM3 metabolism regulating signaling molecule A Novel U 0.010349186449902601 -0.20640999517450598 1.0 5164 +7057 THBS1 thrombospondin 1 Novel U 0.010343176797121843 -0.20646180856437077 1.0 5165 +201931 TMEM192 transmembrane protein 192 Novel U 0.01033921599274416 -0.20649595740938495 1.0 5166 +2925 GRPR gastrin releasing peptide receptor Novel U 0.010330026836589276 -0.20657518350575876 1.0 5167 +7100 TLR5 toll like receptor 5 Novel U 0.010329338764564355 -0.20658111585249872 1.0 5168 +1630 DCC DCC netrin 1 receptor Novel U 0.010329300735629265 -0.2065814437263563 1.0 5169 +2691 GHRH growth hormone releasing hormone Novel U 0.010322107477901172 -0.2066434617963947 1.0 5170 +163590 TOR1AIP2 torsin 1A interacting protein 2 Novel U 0.010318220752106446 -0.20667697195850335 1.0 5171 +84870 RSPO3 R-spondin 3 Novel U 0.010313384072475295 -0.2067186723323057 1.0 5172 +8697 CDC23 cell division cycle 23 Novel U 0.010305993472587816 -0.20678239182613914 1.0 5173 +8038 ADAM12 ADAM metallopeptidase domain 12 Novel U 0.010303111608436173 -0.20680723837822357 1.0 5174 +5311 PKD2 polycystin 2, transient receptor potential cation channel Novel U 0.01030122881507509 -0.20682347124724473 1.0 5175 +2866 GPR42 G protein-coupled receptor 42 Novel N 0.010299433496641607 -0.20683894993417043 1.0 5176 +10023 FRAT1 FRAT regulator of WNT signaling pathway 1 Novel U 0.010293674658829084 -0.20688860087402233 1.0 5177 +54467 ANKIB1 ankyrin repeat and IBR domain containing 1 Novel U 0.010288564368829349 -0.20693266023281362 1.0 5178 +6731 SRP72 signal recognition particle 72 Novel U 0.010287505378918281 -0.20694179052022402 1.0 5179 +92521 SPECC1 sperm antigen with calponin homology and coiled-coil domains 1 Novel U 0.010284400542255549 -0.20696855947316384 1.0 5180 +283 ANG angiogenin Novel U 0.01028308958103522 -0.20697986218020606 1.0 5181 +1998 ELF2 E74 like ETS transcription factor 2 Novel N 0.010280879908043515 -0.2069989133055156 1.0 5182 +57549 IGSF9 immunoglobulin superfamily member 9 Novel U 0.010278229646127417 -0.20702176305389747 1.0 5183 +341276 OR10A2 olfactory receptor family 10 subfamily A member 2 Novel U 0.010272780554224183 -0.20706874345917067 1.0 5184 +489 ATP2A3 ATPase sarcoplasmic/endoplasmic reticulum Ca2+ transporting 3 Novel U 0.010271961718207273 -0.2070758032130911 1.0 5185 +390199 OR4D9 olfactory receptor family 4 subfamily D member 9 Novel U 0.01026984976460188 -0.20709401183171264 1.0 5186 +221002 RASGEF1A RasGEF domain family member 1A Novel U 0.010255396036190644 -0.20721862746134917 1.0 5187 +340273 ABCB5 ATP binding cassette subfamily B member 5 Novel N 0.01025488141943855 -0.20722306432973076 1.0 5188 +3590 IL11RA interleukin 11 receptor subunit alpha Novel U 0.010253716762429449 -0.207233105646571 1.0 5189 +23225 NUP210 nucleoporin 210 Novel U 0.01025090434148659 -0.2072573534805295 1.0 5190 +51129 ANGPTL4 angiopoietin like 4 Novel U 0.010250294234308 -0.20726261363818868 1.0 5191 +51667 NUB1 negative regulator of ubiquitin like proteins 1 Novel U 0.01024955086730002 -0.2072690227213757 1.0 5192 +54808 DYM dymeclin Novel U 0.010246770560192795 -0.20729299367965665 1.0 5193 +10220 GDF11 growth differentiation factor 11 Novel N 0.010246371880095593 -0.20729643097762734 1.0 5194 +222487 ADGRG3 adhesion G protein-coupled receptor G3 Novel N 0.010244971919390179 -0.20730850101103376 1.0 5195 +10555 AGPAT2 1-acylglycerol-3-phosphate O-acyltransferase 2 Novel U 0.010243967414765099 -0.20731716154295787 1.0 5196 +494470 ARK2C arkadia (RNF111) C-terminal like ring finger ubiquitin ligase 2C Novel U 0.010243300371819383 -0.2073229125834029 1.0 5197 +4033 IRAG2 inositol 1,4,5-triphosphate receptor associated 2 Novel U 0.010224527776639415 -0.20748476416257366 1.0 5198 +81873 ARPC5L actin related protein 2/3 complex subunit 5 like Novel U 0.010223547796377021 -0.20749321325293674 1.0 5199 +2303 FOXC2 forkhead box C2 Novel U 0.010221953651955577 -0.20750695747900474 1.0 5200 +22980 TCF25 transcription factor 25 Novel U 0.010219119527209062 -0.20753139243652624 1.0 5201 +3741 KCNA5 potassium voltage-gated channel subfamily A member 5 Novel U 0.010217980966315612 -0.20754120876063167 1.0 5202 +79473 OR52N1 olfactory receptor family 52 subfamily N member 1 Novel U 0.010215231707730268 -0.20756491202804467 1.0 5203 +7220 TRPC1 transient receptor potential cation channel subfamily C member 1 Novel N 0.010207990917862023 -0.20762733990567075 1.0 5204 +421 ARVCF ARVCF delta catenin family member Novel U 0.010207937576622177 -0.20762779979754087 1.0 5205 +353500 BMP8A bone morphogenetic protein 8a Novel U 0.0102067863571779 -0.20763772525980337 1.0 5206 +26470 SEZ6L2 seizure related 6 homolog like 2 Novel U 0.010203716011384914 -0.20766419684300383 1.0 5207 +54541 DDIT4 DNA damage inducible transcript 4 Novel N 0.010200519174656898 -0.20769175899239342 1.0 5208 +2595 GANC glucosidase alpha, neutral C Novel U 0.010197932307799118 -0.20771406216795452 1.0 5209 +4810 NHS NHS actin remodeling regulator Novel N 0.010173552804700683 -0.2079242547938569 1.0 5210 +1607 DGKB diacylglycerol kinase beta Novel U 0.010167828153467106 -0.2079736109874718 1.0 5211 +400793 C1orf226 chromosome 1 open reading frame 226 Novel U 0.010156111543952896 -0.20807462801437843 1.0 5212 +2197 FAU FAU ubiquitin like and ribosomal protein S30 fusion Novel N 0.01015472929506466 -0.20808654534190948 1.0 5213 +93978 CLEC6A C-type lectin domain containing 6A Novel U 0.010141235881990637 -0.20820288142615875 1.0 5214 +338917 VSX2 visual system homeobox 2 Novel U 0.010136849057119982 -0.20824070328968133 1.0 5215 +9575 CLOCK clock circadian regulator Novel U 0.010128460916297991 -0.20831302327662668 1.0 5216 +2537 IFI6 interferon alpha inducible protein 6 Novel U 0.010128411916603238 -0.20831344573702168 1.0 5217 +23435 TARDBP TAR DNA binding protein Novel U 0.010122795108476976 -0.20836187214031968 1.0 5218 +50940 PDE11A phosphodiesterase 11A Novel U 0.010122566582332423 -0.20836384242290568 1.0 5219 +5443 POMC proopiomelanocortin Novel U 0.010106109284358426 -0.20850573221706784 1.0 5220 +23198 PSME4 proteasome activator subunit 4 Novel U 0.01010466277887542 -0.20851820354532372 1.0 5221 +90427 BMF Bcl2 modifying factor Novel U 0.010101911554460608 -0.20854192376151764 1.0 5222 +51439 FAM8A1 family with sequence similarity 8 member A1 Novel U 0.010093250167865839 -0.20861659959001835 1.0 5223 +353345 GPR141 G protein-coupled receptor 141 Novel U 0.01007943466545846 -0.20873571263007676 1.0 5224 +50837 TAS2R7 taste 2 receptor member 7 Novel N 0.010078635577234162 -0.20874260212456375 1.0 5225 +810 CALML3 calmodulin like 3 Novel U 0.010075002225210591 -0.20877392777544262 1.0 5226 +286530 P2RY8 P2Y receptor family member 8 Novel U 0.01006733153923309 -0.20884006208595643 1.0 5227 +6251 RSU1 Ras suppressor protein 1 Novel U 0.010063507279349418 -0.20887303368606805 1.0 5228 +11199 ANXA10 annexin A10 Novel U 0.010063307597018394 -0.20887475528610785 1.0 5229 +6645 SNTB2 syntrophin beta 2 Novel U 0.010062366020430754 -0.20888287327172245 1.0 5230 +51348 KLRF1 killer cell lectin like receptor F1 Novel N 0.010061011072410883 -0.20889455521950898 1.0 5231 +9895 TECPR2 tectonin beta-propeller repeat containing 2 Novel U 0.010050030217866216 -0.20898922879189794 1.0 5232 +7739 ZNF185 zinc finger protein 185 with LIM domain Novel U 0.010049344719453757 -0.2089951389497377 1.0 5233 +4891 SLC11A2 solute carrier family 11 member 2 Novel U 0.010037345247394797 -0.2090985947310689 1.0 5234 +9596 OR1R1P olfactory receptor family 1 subfamily R member 1 pseudogene Novel U 0.01003731433817047 -0.20909886122095592 1.0 5235 +57379 AICDA activation induced cytidine deaminase Novel U 0.010034257068363797 -0.20912522006699807 1.0 5236 +4000 LMNA lamin A/C Novel U 0.010030083542648779 -0.20916120293038004 1.0 5237 +462 SERPINC1 serpin family C member 1 Novel U 0.010026676476992027 -0.20919057760935209 1.0 5238 +5126 PCSK2 proprotein convertase subtilisin/kexin type 2 Novel N 0.010023766131524555 -0.20921566971863836 1.0 5239 +83857 TMTC1 transmembrane O-mannosyltransferase targeting cadherins 1 Novel N 0.010022932100609443 -0.20922286047832792 1.0 5240 +387849 REP15 RAB15 effector protein Novel U 0.010016904900500818 -0.2092748251558915 1.0 5241 +526 ATP6V1B2 ATPase H+ transporting V1 subunit B2 Novel U 0.010010407708150315 -0.20933084196294582 1.0 5242 +4975 OMP olfactory marker protein Novel N 0.010007161918677792 -0.20935882616793972 1.0 5243 +121599 SPIC Spi-C transcription factor Novel U 0.01000670642051471 -0.2093627533339121 1.0 5244 +390061 OR51Q1 olfactory receptor family 51 subfamily Q member 1 Novel U 0.010004690444315964 -0.209380134464662 1.0 5245 +3842 TNPO1 transportin 1 Novel U 0.010000989677796144 -0.20941204134272723 1.0 5246 +26168 SENP3 SUMO specific peptidase 3 Novel N 0.00999076062115053 -0.20950023314336258 1.0 5247 +54863 TOR4A torsin family 4 member A Novel U 0.009988819261020715 -0.2095169709571671 1.0 5248 +57519 STARD9 StAR related lipid transfer domain containing 9 Novel U 0.009970307645965218 -0.20967657244545415 1.0 5249 +55559 HAUS7 HAUS augmin like complex subunit 7 Novel U 0.009968109025215747 -0.2096955282817084 1.0 5250 +392843 IQCA1L IQ motif containing with AAA domain 1 like Novel U 0.009957525367526008 -0.20978677734418835 1.0 5251 +256714 MAP7D2 MAP7 domain containing 2 Novel U 0.009946260125408982 -0.2098839028193239 1.0 5252 +346517 OR6V1 olfactory receptor family 6 subfamily V member 1 Novel U 0.009945702718287847 -0.2098887086131916 1.0 5253 +590 BCHE butyrylcholinesterase Novel U 0.009942992402961311 -0.2099120761237273 1.0 5254 +183 AGT angiotensinogen Novel U 0.009935205936189972 -0.2099792086608656 1.0 5255 +55749 CCAR1 cell division cycle and apoptosis regulator 1 Novel N 0.00992807687572259 -0.2100406732417394 1.0 5256 +55081 IFT57 intraflagellar transport 57 Novel N 0.009923912141420134 -0.2100765803082487 1.0 5257 +2736 GLI2 GLI family zinc finger 2 Novel U 0.009923365164562839 -0.2100812961755688 1.0 5258 +7025 NR2F1 nuclear receptor subfamily 2 group F member 1 Novel U 0.00992327131305637 -0.21008210533457872 1.0 5259 +5657 PRTN3 proteinase 3 Novel U 0.009916467244573861 -0.21014076793386896 1.0 5260 +553 AVPR1B arginine vasopressin receptor 1B Novel U 0.009910395813333342 -0.21019311395873574 1.0 5261 +57502 NLGN4X neuroligin 4 X-linked Novel U 0.009908733933575789 -0.21020744217817333 1.0 5262 +814 CAMK4 calcium/calmodulin dependent protein kinase IV Novel U 0.009901067311660374 -0.2102735414495857 1.0 5263 +696 BTN1A1 butyrophilin subfamily 1 member A1 Novel U 0.009896971399851063 -0.21030885514958966 1.0 5264 +10894 LYVE1 lymphatic vessel endothelial hyaluronan receptor 1 Novel U 0.009892814138433877 -0.21034469778716572 1.0 5265 +57104 PNPLA2 patatin like phospholipase domain containing 2 Novel U 0.009892248209918625 -0.21034957704988955 1.0 5266 +285195 SLC9A9 solute carrier family 9 member A9 Novel N 0.009879523618016648 -0.2104592845929274 1.0 5267 +3820 KLRB1 killer cell lectin like receptor B1 Novel N 0.009876135608107541 -0.21048849497906622 1.0 5268 +4609 MYC MYC proto-oncogene, bHLH transcription factor Novel U 0.009872862630494632 -0.21051671359189847 1.0 5269 +1535 CYBA cytochrome b-245 alpha chain Novel U 0.009870548990144919 -0.21053666109199873 1.0 5270 +130074 FAM168B family with sequence similarity 168 member B Novel U 0.00986339118416984 -0.2105983735078559 1.0 5271 +6927 HNF1A HNF1 homeobox A Novel U 0.009862732167510126 -0.2106040553481157 1.0 5272 +23199 GSE1 Gse1 coiled-coil protein Novel U 0.009859141742237378 -0.2106350108976664 1.0 5273 +53944 CSNK1G1 casein kinase 1 gamma 1 Novel U 0.009852881986736726 -0.21068898059675648 1.0 5274 +103 ADAR adenosine deaminase RNA specific Novel U 0.00985164944613867 -0.21069960718515704 1.0 5275 +1009 CDH11 cadherin 11 Novel U 0.009848612131563041 -0.21072579398329502 1.0 5276 +100128908 CIROP ciliated left-right organizer metallopeptidase Novel N 0.009831527737634342 -0.2108730904071526 1.0 5277 +430 ASCL2 achaete-scute family bHLH transcription factor 2 Novel N 0.009827544510356617 -0.210907432575559 1.0 5278 +26188 OR1C1 olfactory receptor family 1 subfamily C member 1 Novel U 0.009824066442104214 -0.21093741941721403 1.0 5279 +1813 DRD2 dopamine receptor D2 Novel U 0.009824054464021674 -0.21093752268858146 1.0 5280 +414060 TBC1D3C TBC1 domain family member 3C Novel U 0.009817964070972343 -0.2109900321963695 1.0 5281 +910 CD1B CD1b molecule Novel U 0.009817217376502546 -0.21099646996791555 1.0 5282 +100526739 CENPS-CORT CENPS-CORT readthrough Novel U 0.009814979537409242 -0.21101576393274613 1.0 5283 +84649 DGAT2 diacylglycerol O-acyltransferase 2 Novel U 0.009814144029091537 -0.21102296743014937 1.0 5284 +440193 CCDC88C coiled-coil domain containing 88C Novel U 0.009795517908751277 -0.2111835561480115 1.0 5285 +100131303 DPEP2NB DPEP2 neighbor Novel U 0.0097898163906948 -0.2112327128944424 1.0 5286 +57211 ADGRG6 adhesion G protein-coupled receptor G6 Novel U 0.009788753715833489 -0.21124187495236776 1.0 5287 +10626 TRIM16 tripartite motif containing 16 Novel U 0.009787774804109185 -0.2112503148301219 1.0 5288 +8407 TAGLN2 transgelin 2 Novel N 0.009783177322881755 -0.2112899529083809 1.0 5289 +51291 GMIP GEM interacting protein Novel U 0.00977741903496996 -0.21133959910715677 1.0 5290 +9478 CABP1 calcium binding protein 1 Novel U 0.009776216252450143 -0.21134996913050014 1.0 5291 +57224 NHSL1 NHS like 1 Novel U 0.00977316474734332 -0.21137627827506175 1.0 5292 +7352 UCP3 uncoupling protein 3 Novel U 0.009770992517710474 -0.21139500657517302 1.0 5293 +56889 TM9SF3 transmembrane 9 superfamily member 3 Novel U 0.009766356830021604 -0.21143497405786751 1.0 5294 +7351 UCP2 uncoupling protein 2 Novel N 0.009762730054362461 -0.21146624300934186 1.0 5295 +728369 USP17L24 ubiquitin specific peptidase 17 like family member 24 Novel U 0.009760729706900494 -0.21148348939389905 1.0 5296 +221037 JMJD1C jumonji domain containing 1C Novel U 0.00975866285530617 -0.21150130915676327 1.0 5297 +339403 RXFP4 relaxin family peptide/INSL5 receptor 4 Novel U 0.009756543157493325 -0.21151958454357497 1.0 5298 +9619 ABCG1 ATP binding cassette subfamily G member 1 Novel U 0.009753374132696509 -0.21154690690699243 1.0 5299 +25939 SAMHD1 SAM and HD domain containing deoxynucleoside triphosphate triphosphohydrolase 1 Novel U 0.009747075039002823 -0.21160121576796204 1.0 5300 +10367 MICU1 mitochondrial calcium uptake 1 Novel U 0.009741821470130266 -0.2116465104334121 1.0 5301 +84678 KDM2B lysine demethylase 2B Novel N 0.009741237078343422 -0.21165154888082163 1.0 5302 +7442 TRPV1 transient receptor potential cation channel subfamily V member 1 Novel U 0.009731249417018353 -0.21173765944476805 1.0 5303 +79876 UBA5 ubiquitin like modifier activating enzyme 5 Novel U 0.009729757685287001 -0.2117505206999171 1.0 5304 +136227 COL26A1 collagen type XXVI alpha 1 chain Novel U 0.009729306606381091 -0.21175440976440454 1.0 5305 +54585 LZTFL1 leucine zipper transcription factor like 1 Novel U 0.009729281261830007 -0.21175462827737926 1.0 5306 +27309 ZNF330 zinc finger protein 330 Novel U 0.009717748541525897 -0.2118540598677087 1.0 5307 +2810 SFN stratifin Novel U 0.009717260806746052 -0.21185826496794008 1.0 5308 +4129 MAOB monoamine oxidase B Novel N 0.009712841452413457 -0.21189636729054323 1.0 5309 +152137 CCDC50 coiled-coil domain containing 50 Novel U 0.009711409584788128 -0.2119087124156632 1.0 5310 +23304 UBR2 ubiquitin protein ligase E3 component n-recognin 2 Novel N 0.009709594236794893 -0.2119243637913325 1.0 5311 +79680 RTL10 retrotransposon Gag like 10 Novel N 0.009707153027240758 -0.21194541115413107 1.0 5312 +27141 CIDEB cell death inducing DFFA like effector b Novel U 0.009705704194450594 -0.21195790254771807 1.0 5313 +84859 LRCH3 leucine rich repeats and calponin homology domain containing 3 Novel N 0.009700929306506654 -0.2119990701724754 1.0 5314 +221823 PRPS1L1 phosphoribosyl pyrophosphate synthetase 1 like 1 Novel U 0.009698744618702774 -0.2120179058831304 1.0 5315 +135644 TRIM40 tripartite motif containing 40 Novel U 0.009694925164568787 -0.21205083604953676 1.0 5316 +1195 CLK1 CDC like kinase 1 Novel N 0.009692645588899802 -0.21207048985436913 1.0 5317 +728373 USP17L25 ubiquitin specific peptidase 17 like family member 25 Novel U 0.009689873736708716 -0.21209438791694676 1.0 5318 +5697 PYY peptide YY Novel U 0.009683999304712422 -0.2121450354745283 1.0 5319 +7317 UBA1 ubiquitin like modifier activating enzyme 1 Novel U 0.009682666549860284 -0.21215652607960436 1.0 5320 +338376 IFNE interferon epsilon Novel U 0.009677715834777459 -0.21219920963222444 1.0 5321 +51024 FIS1 fission, mitochondrial 1 Novel U 0.009676758623196892 -0.21220746241797037 1.0 5322 +820 CAMP cathelicidin antimicrobial peptide Novel U 0.009671592458515378 -0.21225200351119392 1.0 5323 +79576 NKAP NFKB activating protein Novel U 0.009667552409243278 -0.21228683558147235 1.0 5324 +5329 PLAUR plasminogen activator, urokinase receptor Novel U 0.009663873924698484 -0.21231855035115776 1.0 5325 +10077 TSPAN32 tetraspanin 32 Novel N 0.009658163469373496 -0.21236778415198673 1.0 5326 +145270 PRIMA1 proline rich membrane anchor 1 Novel U 0.009655733920719282 -0.21238873097806948 1.0 5327 +121227 LRIG3 leucine rich repeats and immunoglobulin like domains 3 Novel U 0.009650991007487808 -0.21242962292662668 1.0 5328 +2822 GPLD1 glycosylphosphatidylinositol specific phospholipase D1 Novel U 0.009650507758118484 -0.21243378935501914 1.0 5329 +114791 TUBGCP5 tubulin gamma complex component 5 Novel U 0.009650296175590604 -0.2124356135549198 1.0 5330 +284904 SEC14L4 SEC14 like lipid binding 4 Novel U 0.009645254220992373 -0.21247908374676103 1.0 5331 +3756 KCNH1 potassium voltage-gated channel subfamily H member 1 Novel U 0.009645059082648904 -0.21248076616992861 1.0 5332 +347169 OR1B1 olfactory receptor family 1 subfamily B member 1 Novel U 0.009643969755473237 -0.21249015801596408 1.0 5333 +835 CASP2 caspase 2 Novel N 0.009643860962772517 -0.21249109599338512 1.0 5334 +8548 BLZF1 basic leucine zipper nuclear factor 1 Novel U 0.009641631692148142 -0.21251031608349494 1.0 5335 +11004 KIF2C kinesin family member 2C Novel U 0.009639404102796794 -0.21252952167818245 1.0 5336 +956 ENTPD3 ectonucleoside triphosphate diphosphohydrolase 3 Novel U 0.009639039768474831 -0.2125326628573743 1.0 5337 +26511 CHIC2 cysteine rich hydrophobic domain 2 Novel U 0.009637680552675994 -0.21254438160064695 1.0 5338 +3351 HTR1B 5-hydroxytryptamine receptor 1B Novel N 0.009637274042312972 -0.21254788640877675 1.0 5339 +10404 CPQ carboxypeptidase Q Novel N 0.009631406564414767 -0.21259847401024956 1.0 5340 +126541 OR10H4 olfactory receptor family 10 subfamily H member 4 Novel U 0.009627614360575052 -0.21263116923294578 1.0 5341 +26092 TOR1AIP1 torsin 1A interacting protein 1 Novel N 0.009626436815236917 -0.21264132166902058 1.0 5342 +2175 FANCA FA complementation group A Novel U 0.00962091727184277 -0.21268890948552008 1.0 5343 +4776 NFATC4 nuclear factor of activated T cells 4 Novel N 0.009616644929684793 -0.2127257443140772 1.0 5344 +7871 SLMAP sarcolemma associated protein Novel U 0.00961383845340405 -0.21274994089497554 1.0 5345 +9625 AATK apoptosis associated tyrosine kinase Novel U 0.009609546884470887 -0.21278694149091304 1.0 5346 +51136 RNFT1 ring finger protein, transmembrane 1 Novel U 0.009606668747383619 -0.21281175590938736 1.0 5347 +92482 BBIP1 BBSome interacting protein 1 Novel N 0.009602281011787015 -0.21284958562491077 1.0 5348 +51008 ASCC1 activating signal cointegrator 1 complex subunit 1 Novel U 0.009597337444341828 -0.21289220755278326 1.0 5349 +200008 CDCP2 CUB domain containing protein 2 Novel U 0.009596953018539958 -0.21289552195457534 1.0 5350 +389208 TMPRSS11F transmembrane serine protease 11F Novel U 0.00959447505880525 -0.21291688616620083 1.0 5351 +440563 HNRNPCL2 heterogeneous nuclear ribonucleoprotein C like 2 Novel U 0.009585288007522912 -0.21299609411500675 1.0 5352 +57699 CPNE5 copine 5 Novel U 0.009581751194622309 -0.2130265874350675 1.0 5353 +10087 CERT1 ceramide transporter 1 Novel U 0.009579399929054795 -0.21304685932829825 1.0 5354 +89866 SEC16B SEC16 homolog B, endoplasmic reticulum export factor Novel U 0.009577646499965727 -0.2130619768580968 1.0 5355 +1084 CEACAM3 CEA cell adhesion molecule 3 Novel U 0.009561733098707689 -0.2131991773409762 1.0 5356 +196883 ADCY4 adenylate cyclase 4 Novel U 0.009557590699829102 -0.21323489183828612 1.0 5357 +285761 DCBLD1 discoidin, CUB and LCCL domain containing 1 Novel U 0.009552580517398115 -0.2132780881002102 1.0 5358 +3770 KCNJ14 potassium inwardly rectifying channel subfamily J member 14 Novel U 0.00955007968512514 -0.2132996495118713 1.0 5359 +93129 ORAI3 ORAI calcium release-activated calcium modulator 3 Novel U 0.00954878645746394 -0.21331079932558572 1.0 5360 +147372 CCBE1 collagen and calcium binding EGF domains 1 Novel U 0.009536537302873465 -0.2134164077934064 1.0 5361 +2798 GNRHR gonadotropin releasing hormone receptor Novel N 0.009536386975352201 -0.21341770387135814 1.0 5362 +149111 CNIH3 cornichon family AMPA receptor auxiliary protein 3 Novel U 0.009535897284614906 -0.21342192583525693 1.0 5363 +23769 FLRT1 fibronectin leucine rich transmembrane protein 1 Novel N 0.009532989218146302 -0.2134469982957114 1.0 5364 +158056 MAMDC4 MAM domain containing 4 Novel U 0.009521396978242572 -0.21354694304584093 1.0 5365 +125170 MIEF2 mitochondrial elongation factor 2 Novel U 0.009519382673690726 -0.21356430976416205 1.0 5366 +113523638 SMIM41 small integral membrane protein 41 Novel U 0.009516474500465394 -0.2135893831450404 1.0 5367 +9325 TRIP4 thyroid hormone receptor interactor 4 Novel U 0.009510366566093784 -0.21364204388874894 1.0 5368 +1287 COL4A5 collagen type IV alpha 5 chain Novel U 0.009508760882161372 -0.21365588760495433 1.0 5369 +140739 UBE2F ubiquitin conjugating enzyme E2 F (putative) Novel N 0.009507568748515043 -0.2136661658169645 1.0 5370 +390313 OR5BS1P olfactory receptor family 5 subfamily BS member 1 pseudogene Novel U 0.00950715364739162 -0.21366974469200534 1.0 5371 +5163 PDK1 pyruvate dehydrogenase kinase 1 Novel N 0.0095068067883628 -0.21367273520455976 1.0 5372 +8463 TEAD2 TEA domain transcription factor 2 Novel N 0.00949901346609205 -0.21373992684771911 1.0 5373 +3906 LALBA lactalbumin alpha Novel N 0.009498724462739645 -0.2137424185463108 1.0 5374 +9381 OTOF otoferlin Novel U 0.00949575397320514 -0.21376802919936438 1.0 5375 +5217 PFN2 profilin 2 Novel U 0.009495360378914118 -0.2137714226490683 1.0 5376 +688 KLF5 KLF transcription factor 5 Novel N 0.009492291863418236 -0.2137978784520064 1.0 5377 +24147 FJX1 four-jointed box kinase 1 Novel U 0.009481279626828008 -0.21389282259080253 1.0 5378 +4248 MGAT3 beta-1,4-mannosyl-glycoprotein 4-beta-N-acetylglucosaminyltransferase Novel N 0.009480884417383161 -0.21389622996586913 1.0 5379 +56944 OLFML3 olfactomedin like 3 Novel U 0.009479205457863654 -0.2139107054417951 1.0 5380 +100528017 SAA2-SAA4 SAA2-SAA4 readthrough Novel U 0.009474396233265844 -0.21395216910668963 1.0 5381 +63897 HEATR6 HEAT repeat containing 6 Novel U 0.00946526230201483 -0.2140309190708177 1.0 5382 +5764 PTN pleiotrophin Novel U 0.009458885559849226 -0.21408589739318462 1.0 5383 +5142 PDE4B phosphodiesterase 4B Novel U 0.009452183488602623 -0.21414368060347488 1.0 5384 +3069 HDLBP high density lipoprotein binding protein Novel U 0.009450464888274673 -0.21415849785033794 1.0 5385 +493856 CISD2 CDGSH iron sulfur domain 2 Novel U 0.00944251545734541 -0.2142270354146478 1.0 5386 +3625 INHBB inhibin subunit beta B Novel U 0.009425059873022978 -0.21437753212865293 1.0 5387 +9839 ZEB2 zinc finger E-box binding homeobox 2 Novel U 0.00942291068199228 -0.21439606179697654 1.0 5388 +100885848 PTGES3L prostaglandin E synthase 3 like Novel U 0.00941916873427752 -0.21442832372672055 1.0 5389 +80856 LNPK lunapark, ER junction formation factor Novel U 0.009415286989630262 -0.2144617909428978 1.0 5390 +10159 ATP6AP2 ATPase H+ transporting accessory protein 2 Novel U 0.009414068261402314 -0.21447229844526403 1.0 5391 +219429 OR4C11 olfactory receptor family 4 subfamily C member 11 Novel U 0.009409866358367741 -0.2145085259692237 1.0 5392 +80237 ELL3 elongation factor for RNA polymerase II 3 Novel N 0.009403515549687975 -0.2145632807010004 1.0 5393 +4601 MXI1 MAX interactor 1, dimerization protein Novel U 0.009402332615260679 -0.21457347960015516 1.0 5394 +833 CARS1 cysteinyl-tRNA synthetase 1 Novel U 0.009398881449528615 -0.2146032344965006 1.0 5395 +84669 USP32 ubiquitin specific peptidase 32 Novel N 0.009394098192543627 -0.21464447427657243 1.0 5396 +9212 AURKB aurora kinase B Novel U 0.009393642270565567 -0.21464840509654806 1.0 5397 +219431 OR4S2 olfactory receptor family 4 subfamily S member 2 Novel U 0.009391751449915367 -0.21466470717440303 1.0 5398 +162394 SLFN5 schlafen family member 5 Novel U 0.009389547732942273 -0.2146837069487401 1.0 5399 +5076 PAX2 paired box 2 Novel U 0.009389109585271092 -0.2146874845240732 1.0 5400 +2009 EML1 EMAP like 1 Novel N 0.009388977139927607 -0.2146886264273525 1.0 5401 +5887 RAD23B RAD23 homolog B, nucleotide excision repair protein Novel U 0.00938870046263591 -0.21469101185441536 1.0 5402 +65991 FUNDC2 FUN14 domain containing 2 Novel N 0.009372329773464156 -0.21483215493395022 1.0 5403 +4685 NCAM2 neural cell adhesion molecule 2 Novel N 0.009363101433127517 -0.21491171886436533 1.0 5404 +7803 PTP4A1 protein tyrosine phosphatase 4A1 Novel U 0.009361238054027034 -0.21492778434956414 1.0 5405 +4798 NFRKB nuclear factor related to kappaB binding protein Novel N 0.009360757175230576 -0.21493193033960176 1.0 5406 +8836 GGH gamma-glutamyl hydrolase Novel U 0.009360697520013096 -0.21493244466865763 1.0 5407 +3674 ITGA2B integrin subunit alpha 2b Novel N 0.009359932225154475 -0.21493904280707227 1.0 5408 +5210 PFKFB4 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 4 Novel U 0.009354699641600454 -0.2149841565435185 1.0 5409 +8924 HERC2 HECT and RLD domain containing E3 ubiquitin protein ligase 2 Novel U 0.009353361626196755 -0.21499569250346262 1.0 5410 +125962 OR7G1 olfactory receptor family 7 subfamily G member 1 Novel U 0.0093497444984913 -0.21502687827322847 1.0 5411 +284194 LGALS9B galectin 9B Novel U 0.0093470674520742 -0.21504995894939327 1.0 5412 +4322 MMP13 matrix metallopeptidase 13 Novel U 0.009345465333190391 -0.215063771928839 1.0 5413 +2158 F9 coagulation factor IX Novel U 0.009344905832764793 -0.21506859577053808 1.0 5414 +93185 IGSF8 immunoglobulin superfamily member 8 Novel U 0.009344387896544924 -0.21507306125835646 1.0 5415 +9760 TOX thymocyte selection associated high mobility group box Novel N 0.009342954199386444 -0.21508542215715218 1.0 5416 +65108 MARCKSL1 MARCKS like 1 Novel U 0.009340258436188954 -0.21510866420367805 1.0 5417 +2895 GRID2 glutamate ionotropic receptor delta type subunit 2 Novel U 0.00933832571499446 -0.2151253275352221 1.0 5418 +4052 LTBP1 latent transforming growth factor beta binding protein 1 Novel U 0.009337467506415275 -0.21513272674734316 1.0 5419 +3694 ITGB6 integrin subunit beta 6 Novel N 0.009331824844740957 -0.2151813760520322 1.0 5420 +8527 DGKD diacylglycerol kinase delta Novel U 0.009331175714036704 -0.21518697265860495 1.0 5421 +114132 SIGLEC11 sialic acid binding Ig like lectin 11 Novel U 0.009330265897508924 -0.21519481681868854 1.0 5422 +22941 SHANK2 SH3 and multiple ankyrin repeat domains 2 Novel N 0.009327363410009667 -0.2152198411789741 1.0 5423 +494513 PJVK pejvakin Novel N 0.00931890314314584 -0.21529278301461213 1.0 5424 +221035 REEP3 receptor accessory protein 3 Novel U 0.009314682602965545 -0.21532917122234718 1.0 5425 +10160 FARP1 FERM, ARH/RhoGEF and pleckstrin domain protein 1 Novel U 0.00930685389618034 -0.21539666793997744 1.0 5426 +140893 RBBP8NL RBBP8 N-terminal like Novel U 0.009303498094638516 -0.21542560063541574 1.0 5427 +113878 DTX2 deltex E3 ubiquitin ligase 2 Novel U 0.009301802096864542 -0.21544022300996524 1.0 5428 +84639 IL1F10 interleukin 1 family member 10 Novel U 0.009294843797529555 -0.21550021534053618 1.0 5429 +23023 TMCC1 transmembrane and coiled-coil domain family 1 Novel U 0.00928652832706718 -0.21557190878584728 1.0 5430 +375316 RBM44 RNA binding motif protein 44 Novel U 0.009284165780633853 -0.2155922779392559 1.0 5431 +50856 CLEC4A C-type lectin domain family 4 member A Novel U 0.009282226962782733 -0.21560899383431034 1.0 5432 +28951 TRIB2 tribbles pseudokinase 2 Novel N 0.009280935747518444 -0.21562012629775354 1.0 5433 +6923 ELOB elongin B Novel N 0.009280922202068357 -0.21562024308248498 1.0 5434 +56999 ADAMTS9 ADAM metallopeptidase with thrombospondin type 1 motif 9 Novel N 0.009277179414769686 -0.2156525122508649 1.0 5435 +79718 TBL1XR1 TBL1X/Y related 1 Novel U 0.00927472572647727 -0.2156736672015317 1.0 5436 +10692 RRH retinal pigment epithelium-derived rhodopsin homolog Novel U 0.009273875887148217 -0.21568099425653559 1.0 5437 +401081 C3orf85 chromosome 3 open reading frame 85 Novel U 0.009270316131946621 -0.21571168537810487 1.0 5438 +23190 UBXN4 UBX domain protein 4 Novel U 0.00926809584107144 -0.21573082804756116 1.0 5439 +10437 IFI30 IFI30 lysosomal thiol reductase Novel U 0.00926531679953705 -0.21575478809445983 1.0 5440 +51162 EGFL7 EGF like domain multiple 7 Novel U 0.009264861115211137 -0.21575871686547124 1.0 5441 +4292 MLH1 mutL homolog 1 Novel U 0.009256433316834229 -0.2158313787677367 1.0 5442 +4985 OPRD1 opioid receptor delta 1 Novel U 0.00925445191403126 -0.21584846181723302 1.0 5443 +140706 CCM2L CCM2 like scaffold protein Novel U 0.009252424312089122 -0.2158659431815899 1.0 5444 +221927 BRAT1 BRCA1 associated ATM activator 1 Novel U 0.009250910006493784 -0.21587899906169608 1.0 5445 +3797 KIF3C kinesin family member 3C Novel U 0.009249213238050098 -0.21589362808072435 1.0 5446 +9064 MAP3K6 mitogen-activated protein kinase kinase kinase 6 Novel N 0.009248288199985794 -0.21590160347624457 1.0 5447 +50832 TAS2R4 taste 2 receptor member 4 Novel N 0.009248160219268069 -0.21590270688688484 1.0 5448 +5825 ABCD3 ATP binding cassette subfamily D member 3 Novel U 0.009246670683106584 -0.21591554921250136 1.0 5449 +3912 LAMB1 laminin subunit beta 1 Novel N 0.009237563211875865 -0.21599407104642004 1.0 5450 +143903 LAYN layilin Novel U 0.0092354091535641 -0.2160126426789537 1.0 5451 +1387 CREBBP CREB binding protein Novel U 0.00922882104466509 -0.21606944334070724 1.0 5452 +26207 PITPNC1 phosphatidylinositol transfer protein cytoplasmic 1 Novel N 0.00922549032387246 -0.21609815979759006 1.0 5453 +3911 LAMA5 laminin subunit alpha 5 Novel U 0.009222512937697078 -0.21612382991137383 1.0 5454 +7169 TPM2 tropomyosin 2 Novel U 0.009222073974163351 -0.21612761452082452 1.0 5455 +1050 CEBPA CCAAT enhancer binding protein alpha Novel U 0.00921718505399766 -0.21616976529655219 1.0 5456 +22882 ZHX2 zinc fingers and homeoboxes 2 Novel N 0.009211349450455516 -0.21622007808706709 1.0 5457 +144125 OR2AG1 olfactory receptor family 2 subfamily AG member 1 Novel U 0.009209929010362782 -0.21623232468749298 1.0 5458 +7174 TPP2 tripeptidyl peptidase 2 Novel U 0.009206760466855765 -0.21625964290137686 1.0 5459 +83849 SYT15 synaptotagmin 15 Novel U 0.009203246020164037 -0.21628994338681934 1.0 5460 +5684 PSMA3 proteasome 20S subunit alpha 3 Novel N 0.009193191409076849 -0.21637663117115644 1.0 5461 +8927 BSN bassoon presynaptic cytomatrix protein Novel N 0.00918786036939904 -0.2164225937662161 1.0 5462 +4738 NEDD8 NEDD8 ubiquitin like modifier Novel U 0.009187463190896259 -0.2164260181178985 1.0 5463 +55869 HDAC8 histone deacetylase 8 Novel U 0.009186493625519437 -0.2164343774143007 1.0 5464 +91107 TRIM47 tripartite motif containing 47 Novel N 0.009178646299106235 -0.21650203466467385 1.0 5465 +2660 MSTN myostatin Novel U 0.009174403460686568 -0.2165386151210149 1.0 5466 +55750 AGK acylglycerol kinase Novel U 0.009172090009054619 -0.21655856099404827 1.0 5467 +5367 PMCH pro-melanin concentrating hormone Novel U 0.009168518551930953 -0.21658935300601384 1.0 5468 +390191 OR5B12 olfactory receptor family 5 subfamily B member 12 Novel U 0.009151129169203309 -0.2167392789500984 1.0 5469 +50840 TAS2R14 taste 2 receptor member 14 Novel N 0.009141479486074126 -0.21682247556931822 1.0 5470 +120425 JAML junction adhesion molecule like Novel U 0.00913945672890056 -0.21683991516356088 1.0 5471 +23098 SARM1 sterile alpha and TIR motif containing 1 Novel U 0.009137974063223803 -0.21685269825395756 1.0 5472 +23456 ABCB10 ATP binding cassette subfamily B member 10 Novel U 0.009136023199512726 -0.2168695180047356 1.0 5473 +1504 CTRB1 chymotrypsinogen B1 Novel U 0.009129857254490371 -0.21692267889854816 1.0 5474 +11141 IL1RAPL1 interleukin 1 receptor accessory protein like 1 Novel U 0.009127379645126067 -0.21694404008938706 1.0 5475 +54471 MIEF1 mitochondrial elongation factor 1 Novel U 0.009125320146810868 -0.21696179645452568 1.0 5476 +54926 UBE2R2 ubiquitin conjugating enzyme E2 R2 Novel U 0.009122610835481444 -0.21698515530890508 1.0 5477 +114757 CYGB cytoglobin Novel U 0.009120519668237742 -0.21700318471386792 1.0 5478 +79861 TUBAL3 tubulin alpha like 3 Novel U 0.00911365158403882 -0.21706239923710338 1.0 5479 +23457 ABCB9 ATP binding cassette subfamily B member 9 Novel U 0.009109892400837934 -0.21709480976594195 1.0 5480 +1786 DNMT1 DNA methyltransferase 1 Novel N 0.00910963299107453 -0.21709704631765242 1.0 5481 +55851 PSENEN presenilin enhancer, gamma-secretase subunit Novel U 0.009107720641861673 -0.21711353400819594 1.0 5482 +202333 CMYA5 cardiomyopathy associated 5 Novel U 0.009102746092254572 -0.21715642305480104 1.0 5483 +4994 OR3A1 olfactory receptor family 3 subfamily A member 1 Novel U 0.009100718017421744 -0.21717390849627694 1.0 5484 +54681 P4HTM prolyl 4-hydroxylase, transmembrane Novel N 0.009095949442879598 -0.2172150216888132 1.0 5485 +55531 ELMOD1 ELMO domain containing 1 Novel U 0.009088098145555001 -0.21728271317517103 1.0 5486 +81608 FIP1L1 factor interacting with PAPOLA and CPSF1 Novel U 0.009085783057328928 -0.21730267315841884 1.0 5487 +8648 NCOA1 nuclear receptor coactivator 1 Novel N 0.009085044909227825 -0.2173090372457855 1.0 5488 +390155 OR5T1 olfactory receptor family 5 subfamily T member 1 Novel U 0.009084260395475944 -0.217315801083625 1.0 5489 +4794 NFKBIE NFKB inhibitor epsilon Novel U 0.009083458725104132 -0.21732271284059881 1.0 5490 +4311 MME membrane metalloendopeptidase Novel U 0.009081392198081857 -0.21734052980510202 1.0 5491 +9501 RPH3AL rabphilin 3A like (without C2 domains) Novel U 0.009080065579554446 -0.21735196750466143 1.0 5492 +249 ALPL alkaline phosphatase, biomineralization associated Novel U 0.009078840607957425 -0.21736252883544793 1.0 5493 +55915 LANCL2 LanC like glutathione S-transferase 2 Novel N 0.009072236310230889 -0.2174194690723255 1.0 5494 +126259 TMIGD2 transmembrane and immunoglobulin domain containing 2 Novel U 0.00907186152157734 -0.21742270038556963 1.0 5495 +1289 COL5A1 collagen type V alpha 1 chain Novel U 0.009066936168790646 -0.21746516527222262 1.0 5496 +25992 SNED1 sushi, nidogen and EGF like domains 1 Novel U 0.009062499986384436 -0.21750341268133425 1.0 5497 +55843 ARHGAP15 Rho GTPase activating protein 15 Novel U 0.009060623048895912 -0.21751959506281157 1.0 5498 +4838 NODAL nodal growth differentiation factor Novel U 0.009059588496611638 -0.21752851465647136 1.0 5499 +9202 ZMYM4 zinc finger MYM-type containing 4 Novel U 0.009056232343713543 -0.21755745038119603 1.0 5500 +6929 TCF3 transcription factor 3 Novel U 0.009053009320261622 -0.21758523830451704 1.0 5501 +145264 SERPINA12 serpin family A member 12 Novel N 0.009048652414128359 -0.2176228022178283 1.0 5502 +6788 STK3 serine/threonine kinase 3 Novel U 0.009036476574238068 -0.21772777858870732 1.0 5503 +25893 TRIM58 tripartite motif containing 58 Novel U 0.009035712877166492 -0.21773436295149026 1.0 5504 +23193 GANAB glucosidase II alpha subunit Novel N 0.009034034295307006 -0.217748835171347 1.0 5505 +253582 TMEM244 transmembrane protein 244 Novel U 0.009027193163794411 -0.217807817316757 1.0 5506 +10251 SPRY3 sprouty RTK signaling antagonist 3 Novel N 0.009024932580326694 -0.2178273073766336 1.0 5507 +10452 TOMM40 translocase of outer mitochondrial membrane 40 Novel U 0.009023385435261516 -0.21784064638861383 1.0 5508 +3726 JUNB JunB proto-oncogene, AP-1 transcription factor subunit Novel N 0.00901600420342822 -0.21790428511394677 1.0 5509 +2719 GPC3 glypican 3 Novel U 0.009014806493356776 -0.21791461140419027 1.0 5510 +219473 OR8K3 olfactory receptor family 8 subfamily K member 3 (gene/pseudogene) Novel U 0.009008642586211495 -0.2179677547280494 1.0 5511 +440138 ALG11 ALG11 alpha-1,2-mannosyltransferase Novel U 0.009003977337564875 -0.21800797707628847 1.0 5512 +285636 RIMOC1 RAB7A interacting MON1-CCZ1 complex subunit 1 Novel U 0.008997639349439004 -0.21806262127316714 1.0 5513 +80212 CCDC92 coiled-coil domain containing 92 Novel U 0.008989549626969387 -0.2181323683882681 1.0 5514 +1290 COL5A2 collagen type V alpha 2 chain Novel U 0.00898649548229429 -0.21815870029038079 1.0 5515 +10347 ABCA7 ATP binding cassette subfamily A member 7 Novel U 0.008985733306559824 -0.2181652715366601 1.0 5516 +27295 PDLIM3 PDZ and LIM domain 3 Novel U 0.008982538384290346 -0.21819281718017317 1.0 5517 +4209 MEF2D myocyte enhancer factor 2D Novel N 0.008981961741436154 -0.21819778881865332 1.0 5518 +83638 C11orf68 chromosome 11 open reading frame 68 Novel U 0.008979264852381518 -0.21822104057197542 1.0 5519 +8569 MKNK1 MAPK interacting serine/threonine kinase 1 Novel N 0.008977592538551111 -0.21823545875080078 1.0 5520 +165055 CCDC138 coiled-coil domain containing 138 Novel U 0.00896843554853092 -0.2183144075205905 1.0 5521 +497190 CLEC18B C-type lectin domain family 18 member B Novel U 0.008965554689928072 -0.21833924540314048 1.0 5522 +54551 MAGEL2 MAGE family member L2 Novel U 0.008959468420882606 -0.21839171935502746 1.0 5523 +123879 DCUN1D3 defective in cullin neddylation 1 domain containing 3 Novel U 0.008954693936760473 -0.21843288349815654 1.0 5524 +9782 MATR3 matrin 3 Novel U 0.008952987327192179 -0.21844759736435396 1.0 5525 +53347 UBASH3A ubiquitin associated and SH3 domain containing A Novel U 0.008952822401436914 -0.21844901930381835 1.0 5526 +1612 DAPK1 death associated protein kinase 1 Novel U 0.008950280585811437 -0.21847093406142115 1.0 5527 +59286 UBL5 ubiquitin like 5 Novel U 0.008941430545532706 -0.21854723640433674 1.0 5528 +1396 CRIP1 cysteine rich protein 1 Novel U 0.008941047315728933 -0.2185505404945987 1.0 5529 +254531 LPCAT4 lysophosphatidylcholine acyltransferase 4 Novel U 0.008938452062710307 -0.218572915973076 1.0 5530 +401667 OR51A2 olfactory receptor family 51 subfamily A member 2 Novel U 0.008938238082929905 -0.21857476084135533 1.0 5531 +26136 TES testin LIM domain protein Novel N 0.008937397384338023 -0.21858200908771652 1.0 5532 +1513 CTSK cathepsin K Novel U 0.008934081818818518 -0.21861059488046555 1.0 5533 +56005 MYDGF myeloid derived growth factor Novel U 0.008933980783282324 -0.2186114659779845 1.0 5534 +64748 PLPPR2 phospholipid phosphatase related 2 Novel U 0.008932548846648158 -0.21862381169807754 1.0 5535 +56605 ERO1B endoplasmic reticulum oxidoreductase 1 beta Novel U 0.008929047133013481 -0.21865400240299304 1.0 5536 +90522 YIF1B Yip1 interacting factor homolog B, membrane trafficking protein Novel N 0.008906391916947747 -0.21884932875300173 1.0 5537 +9362 CPNE6 copine 6 Novel U 0.008906004816770438 -0.21885266621244162 1.0 5538 +51270 TFDP3 transcription factor Dp family member 3 Novel U 0.008905918849625827 -0.2188534073948929 1.0 5539 +55735 DNAJC11 DnaJ heat shock protein family (Hsp40) member C11 Novel N 0.00889609798451971 -0.2189380798928086 1.0 5540 +93627 TBCK TBC1 domain containing kinase Novel U 0.008894059346481973 -0.21895565640700934 1.0 5541 +6926 TBX3 T-box transcription factor 3 Novel U 0.00889371468141166 -0.21895862800392388 1.0 5542 +79822 ARHGAP28 Rho GTPase activating protein 28 Novel U 0.008891570672781708 -0.2189771129911719 1.0 5543 +83729 INHBE inhibin subunit beta E Novel U 0.00887491373087274 -0.21912072405433475 1.0 5544 +4935 GPR143 G protein-coupled receptor 143 Novel U 0.00887355517917707 -0.21913243707191285 1.0 5545 +871 SERPINH1 serpin family H member 1 Novel U 0.008870744549089845 -0.2191566694656614 1.0 5546 +29095 ORMDL2 ORMDL sphingolipid biosynthesis regulator 2 Novel N 0.008869957207621976 -0.219163457683204 1.0 5547 +4660 PPP1R12B protein phosphatase 1 regulatory subunit 12B Novel N 0.008869468934667106 -0.21916766742341595 1.0 5548 +6238 RRBP1 ribosome binding protein 1 Novel N 0.008868812120261506 -0.21917333027651376 1.0 5549 +585 BBS4 Bardet-Biedl syndrome 4 Novel U 0.008867892374393765 -0.21918126004433236 1.0 5550 +440163 RNASE13 ribonuclease A family member 13 (inactive) Novel U 0.008867717521177914 -0.2191827675753283 1.0 5551 +84270 CARD19 caspase recruitment domain family member 19 Novel U 0.00886454866785228 -0.21921008846037365 1.0 5552 +83786 FRMD8 FERM domain containing 8 Novel U 0.008864083244277366 -0.2192141012002139 1.0 5553 +23219 FBXO28 F-box protein 28 Novel U 0.008862980908891253 -0.21922360519906472 1.0 5554 +6932 TCF7 transcription factor 7 Novel U 0.008861733398884802 -0.21923436084913014 1.0 5555 +29888 STRN4 striatin 4 Novel U 0.008861468920571351 -0.21923664110033025 1.0 5556 +1394 CRHR1 corticotropin releasing hormone receptor 1 Novel U 0.008854847519945482 -0.21929372879317963 1.0 5557 +51473 DCDC2 doublecortin domain containing 2 Novel U 0.00885014050645844 -0.21933431122511043 1.0 5558 +4302 MLLT6 MLLT6, PHD finger containing Novel N 0.00884290240274417 -0.21939671594353777 1.0 5559 +114483833 H2BK1 H2B.K variant histone 1 Novel U 0.008837130777166042 -0.21944647713559712 1.0 5560 +23014 FBXO21 F-box protein 21 Novel U 0.008835605571283297 -0.21945962699465052 1.0 5561 +285368 PRRT3 proline rich transmembrane protein 3 Novel U 0.00882977969512321 -0.21950985591864972 1.0 5562 +390265 OR10G7 olfactory receptor family 10 subfamily G member 7 Novel U 0.008827532048720025 -0.21952923443910924 1.0 5563 +284207 METRNL meteorin like, glial cell differentiation regulator Novel U 0.00882569735857234 -0.21954505257692372 1.0 5564 +64859 NABP1 nucleic acid binding protein 1 Novel U 0.00881898388249637 -0.2196029341161677 1.0 5565 +58528 RRAGD Ras related GTP binding D Novel N 0.008818248043453148 -0.21960927829554297 1.0 5566 +10365 KLF2 KLF transcription factor 2 Novel U 0.008810545683675472 -0.21967568568788307 1.0 5567 +27087 B3GAT1 beta-1,3-glucuronyltransferase 1 Novel U 0.008809649640545375 -0.2196834110979407 1.0 5568 +3767 KCNJ11 potassium inwardly rectifying channel subfamily J member 11 Novel U 0.00880939190576297 -0.2196856332084768 1.0 5569 +2590 GALNT2 polypeptide N-acetylgalactosaminyltransferase 2 Novel N 0.008802345496062649 -0.21974638519969314 1.0 5570 +11245 GPR176 G protein-coupled receptor 176 Novel N 0.008801067024449123 -0.21975740779127362 1.0 5571 +91010 FMNL3 formin like 3 Novel U 0.008787746139331393 -0.21987225639220428 1.0 5572 +3703 STT3A STT3 oligosaccharyltransferase complex catalytic subunit A Novel U 0.008785915811396141 -0.2198880369203561 1.0 5573 +578 BAK1 BCL2 antagonist/killer 1 Novel U 0.008785473801768567 -0.21989184779229715 1.0 5574 +91582 RPS19BP1 ribosomal protein S19 binding protein 1 Novel N 0.008782649399935671 -0.2199161989218285 1.0 5575 +4015 LOX lysyl oxidase Novel U 0.008776926553072368 -0.21996553955871423 1.0 5576 +950 SCARB2 scavenger receptor class B member 2 Novel U 0.0087766877075881 -0.21996759881149397 1.0 5577 +401934 RNF223 ring finger protein 223 Novel U 0.008772155575187209 -0.22000667347213962 1.0 5578 +26033 ATRNL1 attractin like 1 Novel U 0.008765368180593551 -0.2200651923142553 1.0 5579 +79791 FBXO31 F-box protein 31 Novel U 0.008761514813286103 -0.22009841486968018 1.0 5580 +901 CCNG2 cyclin G2 Novel U 0.008756171605270698 -0.22014448237642822 1.0 5581 +122525 C14orf28 chromosome 14 open reading frame 28 Novel U 0.008754173807570402 -0.22016170677771937 1.0 5582 +1380 CR2 complement C3d receptor 2 Novel U 0.008754058260669691 -0.22016270298778887 1.0 5583 +5586 PKN2 protein kinase N2 Novel U 0.008750165800944143 -0.22019626258609687 1.0 5584 +11315 PARK7 Parkinsonism associated deglycase Novel U 0.008745346742041438 -0.22023781103936305 1.0 5585 +9248 GPR50 G protein-coupled receptor 50 Novel N 0.008743324681243449 -0.2202552446296683 1.0 5586 +102723655 LOC102723655 TP53-target gene 3 protein Novel U 0.008743096158331512 -0.22025721488438368 1.0 5587 +85481 PSKH2 protein serine kinase H2 Novel U 0.008740095754557331 -0.22028308344887068 1.0 5588 +6990 DYNLT3 dynein light chain Tctex-type 3 Novel U 0.008732005965532733 -0.22035283113778836 1.0 5589 +6672 SP100 SP100 nuclear antigen Novel U 0.008730394752311358 -0.22036672252583353 1.0 5590 +219537 SMTNL1 smoothelin like 1 Novel U 0.00872398423214713 -0.22042199207178279 1.0 5591 +1027 CDKN1B cyclin dependent kinase inhibitor 1B Novel U 0.008720862515251625 -0.22044890656093136 1.0 5592 +79899 PRR5L proline rich 5 like Novel U 0.008719912645979707 -0.22045709604353575 1.0 5593 +159091 PABIR3 PABIR family member 3 Novel U 0.008713959707582333 -0.22050842045931762 1.0 5594 +8892 EIF2B2 eukaryotic translation initiation factor 2B subunit beta Novel U 0.008713605997290392 -0.22051147004136906 1.0 5595 +10875 FGL2 fibrinogen like 2 Novel U 0.008710142315660932 -0.22054133284595726 1.0 5596 +80851 SH3BP5L SH3 binding domain protein 5 like Novel U 0.008709880789906147 -0.2205435876410988 1.0 5597 +60675 PROK2 prokineticin 2 Novel U 0.008705750966374947 -0.22057919371760623 1.0 5598 +8698 S1PR4 sphingosine-1-phosphate receptor 4 Novel U 0.008705505017458976 -0.22058131421400345 1.0 5599 +94056 SYAP1 synapse associated protein 1 Novel U 0.008700475733767088 -0.2206246751611621 1.0 5600 +8986 RPS6KA4 ribosomal protein S6 kinase A4 Novel U 0.008679687439193857 -0.22080390548455048 1.0 5601 +55179 FAIM Fas apoptotic inhibitory molecule Novel U 0.008667571724722276 -0.22090836347244233 1.0 5602 +57191 VN1R1 vomeronasal 1 receptor 1 Novel U 0.008665028849103482 -0.2209302873689836 1.0 5603 +26010 SPATS2L spermatogenesis associated serine rich 2 like Novel U 0.008659327346732176 -0.2209794439801817 1.0 5604 +8735 MYH13 myosin heavy chain 13 Novel N 0.008658502034091265 -0.22098655957357521 1.0 5605 +7177 TPSAB1 tryptase alpha/beta 1 Novel U 0.008657071246576805 -0.22099889538630932 1.0 5606 +115352 FCRL3 Fc receptor like 3 Novel U 0.00865623408876549 -0.22100611310514237 1.0 5607 +947 CD34 CD34 molecule Novel U 0.008651984237327832 -0.22104275402558154 1.0 5608 +90411 MCFD2 multiple coagulation factor deficiency 2, ER cargo receptor complex subunit Novel N 0.008649706337593533 -0.2210623933810172 1.0 5609 +50833 TAS2R16 taste 2 receptor member 16 Novel U 0.008648177011436319 -0.221075578763818 1.0 5610 +80305 TRABD TraB domain containing Novel U 0.008647769846564245 -0.22107908921492486 1.0 5611 +1819 DRG2 developmentally regulated GTP binding protein 2 Novel N 0.008647444505926543 -0.22108189420248656 1.0 5612 +9398 CD101 CD101 molecule Novel N 0.008645018844541087 -0.22110280751372594 1.0 5613 +388228 SBK1 SH3 domain binding kinase 1 Novel U 0.008642075022532664 -0.22112818824751865 1.0 5614 +10289 EIF1B eukaryotic translation initiation factor 1B Novel U 0.008638557880215105 -0.22115851197382325 1.0 5615 +153830 RNF145 ring finger protein 145 Novel U 0.008636856909332625 -0.22117317722499466 1.0 5616 +4795 NFKBIL1 NFKB inhibitor like 1 Novel U 0.008633028621429194 -0.2212061835534618 1.0 5617 +22919 MAPRE1 microtubule associated protein RP/EB family member 1 Novel U 0.00863267075331884 -0.22120926898295304 1.0 5618 +71 ACTG1 actin gamma 1 Novel U 0.008626307442995083 -0.221264131500084 1.0 5619 +54504 CPVL carboxypeptidase vitellogenic like Novel U 0.008623047945660298 -0.22129223389007752 1.0 5620 +2624 GATA2 GATA binding protein 2 Novel U 0.00861922567144398 -0.22132518837037204 1.0 5621 +374882 TMEM205 transmembrane protein 205 Novel U 0.008616220433876646 -0.2213510986103465 1.0 5622 +10121 ACTR1A actin related protein 1A Novel N 0.008612058332265712 -0.22138698297859394 1.0 5623 +497189 TIFAB TIFA inhibitor Novel U 0.008609816069591979 -0.22140631508218328 1.0 5624 +4820 NKTR natural killer cell triggering receptor Novel N 0.00860918403206755 -0.22141176431658285 1.0 5625 +4189 DNAJB9 DnaJ heat shock protein family (Hsp40) member B9 Novel U 0.00860578802474754 -0.22144104365395467 1.0 5626 +257194 NEGR1 neuronal growth regulator 1 Novel U 0.008602750651040183 -0.22146723096190835 1.0 5627 +51143 DYNC1LI1 dynein cytoplasmic 1 light intermediate chain 1 Novel U 0.00860202271716197 -0.22147350698536655 1.0 5628 +3664 IRF6 interferon regulatory factor 6 Novel U 0.00860138371144533 -0.22147901629739003 1.0 5629 +161725 OTUD7A OTU deubiquitinase 7A Novel N 0.008600628571774866 -0.22148552688087556 1.0 5630 +55236 UBA6 ubiquitin like modifier activating enzyme 6 Novel U 0.008597545374746092 -0.22151210926350393 1.0 5631 +26292 MYCBP MYC binding protein Novel N 0.008595957720861955 -0.22152579753014268 1.0 5632 +55298 RNF121 ring finger protein 121 Novel U 0.008590087499460912 -0.22157640878525856 1.0 5633 +3205 HOXA9 homeobox A9 Novel N 0.008581896251910337 -0.2216470312185838 1.0 5634 +27302 BMP10 bone morphogenetic protein 10 Novel U 0.008579765282089783 -0.22166540378920152 1.0 5635 +357 SHROOM2 shroom family member 2 Novel N 0.008577489281264231 -0.22168502677282623 1.0 5636 +56659 KCNK13 potassium two pore domain channel subfamily K member 13 Novel U 0.008577356784286321 -0.22168616912128175 1.0 5637 +126669 SHE Src homology 2 domain containing E Novel U 0.008576186489632405 -0.22169625904417287 1.0 5638 +26115 TANC2 tetratricopeptide repeat, ankyrin repeat and coiled-coil containing 2 Novel N 0.008574853247500886 -0.22170775385042282 1.0 5639 +9976 CLEC2B C-type lectin domain family 2 member B Novel U 0.008574101124358576 -0.2217142384263244 1.0 5640 +2703 GJA8 gap junction protein alpha 8 Novel U 0.00856979309915667 -0.2217513809031824 1.0 5641 +55296 TBC1D19 TBC1 domain family member 19 Novel U 0.008559086591398254 -0.22184368914141428 1.0 5642 +7178 TPT1 tumor protein, translationally-controlled 1 Novel N 0.00855500468367946 -0.22187888210242915 1.0 5643 +157680 VPS13B vacuolar protein sorting 13 homolog B Novel U 0.008552959271106692 -0.22189651702460075 1.0 5644 +6586 SLIT3 slit guidance ligand 3 Novel U 0.00855230407057221 -0.2219021659633949 1.0 5645 +59082 CARD18 caspase recruitment domain family member 18 Novel U 0.008549391367154479 -0.22192727840220783 1.0 5646 +91807 MYLK3 myosin light chain kinase 3 Novel U 0.008548288391666773 -0.221936787919819 1.0 5647 +6899 TBX1 T-box transcription factor 1 Novel U 0.008543650773194432 -0.22197677204913857 1.0 5648 +8315 BRAP BRCA1 associated protein Novel N 0.008538384883293258 -0.22202217294273233 1.0 5649 +84109 QRFPR pyroglutamylated RFamide peptide receptor Novel N 0.008535037595620992 -0.2220510322341889 1.0 5650 +664 BNIP3 BCL2 interacting protein 3 Novel U 0.008532207009719553 -0.22207543668086954 1.0 5651 +10961 ERP29 endoplasmic reticulum protein 29 Novel U 0.008527019624422257 -0.22212016073175783 1.0 5652 +81553 CYRIA CYFIP related Rac1 interactor A Novel U 0.008524706137184023 -0.2221401069117777 1.0 5653 +338667 VSIG10L2 V-set and immunoglobulin domain containing 10 like 2 Novel U 0.008523670676180999 -0.22214903434013286 1.0 5654 +80196 RNF34 ring finger protein 34 Novel U 0.008522841551214608 -0.22215618280223165 1.0 5655 +137392 CIBAR1 CBY1 interacting BAR domain containing 1 Novel N 0.008520584708799224 -0.22217564060789824 1.0 5656 +11078 TRIOBP TRIO and F-actin binding protein Novel U 0.008503595186518808 -0.22232211907739488 1.0 5657 +50674 NEUROG3 neurogenin 3 Novel U 0.008493563074498042 -0.22240861288165653 1.0 5658 +122513141 LOC122513141 ring finger protein-like Novel U 0.008491879094854892 -0.22242313163955454 1.0 5659 +56935 SMCO4 single-pass membrane protein with coiled-coil domains 4 Novel U 0.00848955741018218 -0.22244314849534952 1.0 5660 +9718 ECE2 endothelin converting enzyme 2 Novel N 0.00848867935206625 -0.22245071884411083 1.0 5661 +441294 CTAGE15 CTAGE family member 15 Novel U 0.008488367617422282 -0.22245340652495219 1.0 5662 +10148 EBI3 Epstein-Barr virus induced 3 Novel U 0.00848272895793209 -0.2225020213240327 1.0 5663 +651 BMP3 bone morphogenetic protein 3 Novel N 0.008479404813021377 -0.2225306810856711 1.0 5664 +64793 CEP85 centrosomal protein 85 Novel U 0.008472458509887235 -0.22259056998866406 1.0 5665 +6309 SC5D sterol-C5-desaturase Novel U 0.008470176048078355 -0.22261024867691268 1.0 5666 +2239 GPC4 glypican 4 Novel U 0.008461911416866558 -0.22268150380174065 1.0 5667 +8536 CAMK1 calcium/calmodulin dependent protein kinase I Novel U 0.008461486356108768 -0.22268516854570558 1.0 5668 +83698 CALN1 calneuron 1 Novel U 0.008457386783754562 -0.22272051380580904 1.0 5669 +55017 C14orf119 chromosome 14 open reading frame 119 Novel U 0.0084541034749459 -0.22274882149105407 1.0 5670 +56926 NCLN nicalin Novel U 0.008453994394671895 -0.22274976194784415 1.0 5671 +5744 PTHLH parathyroid hormone like hormone Novel N 0.008450064885430441 -0.2227836409757568 1.0 5672 +150372 NFAM1 NFAT activating protein with ITAM motif 1 Novel U 0.008445193335337475 -0.22282564199202531 1.0 5673 +139411 PTCHD1 patched domain containing 1 Novel N 0.008440528378649784 -0.2228658618230837 1.0 5674 +23780 APOL2 apolipoprotein L2 Novel N 0.008434974871699542 -0.2229137424629854 1.0 5675 +5934 RBL2 RB transcriptional corepressor like 2 Novel N 0.008433140768878758 -0.22292955553704683 1.0 5676 +282763 OR51B5 olfactory receptor family 51 subfamily B member 5 Novel U 0.008428772466489862 -0.2229672177053917 1.0 5677 +403239 OR2T27 olfactory receptor family 2 subfamily T member 27 Novel U 0.008427635247434577 -0.22297702246057854 1.0 5678 +131601 TPRA1 transmembrane protein adipocyte associated 1 Novel N 0.008427477711707093 -0.22297838068548162 1.0 5679 +79782 LRRC31 leucine rich repeat containing 31 Novel U 0.008422516769751812 -0.22302115241107093 1.0 5680 +149603 RNF187 ring finger protein 187 Novel U 0.00841369772316368 -0.22309718753585714 1.0 5681 +79931 TNIP3 TNFAIP3 interacting protein 3 Novel U 0.008412820493162474 -0.22310475074486633 1.0 5682 +64581 CLEC7A C-type lectin domain containing 7A Novel U 0.00840976165518104 -0.2231311231112321 1.0 5683 +388588 SMIM1 small integral membrane protein 1 (Vel blood group) Novel U 0.008398350337840796 -0.223229508002305 1.0 5684 +2004 ELK3 ETS transcription factor ELK3 Novel N 0.008396957697462997 -0.22324151492208372 1.0 5685 +51720 UIMC1 ubiquitin interaction motif containing 1 Novel U 0.008395096105253439 -0.223257565001255 1.0 5686 +150962 PUS10 pseudouridine synthase 10 Novel N 0.008389826153255049 -0.22330300091700966 1.0 5687 +22924 MAPRE3 microtubule associated protein RP/EB family member 3 Novel U 0.008387061482201764 -0.22332683706601153 1.0 5688 +8738 CRADD CASP2 and RIPK1 domain containing adaptor with death domain Novel U 0.00838549128263326 -0.22334037484687452 1.0 5689 +54875 CNTLN centlein Novel N 0.008385126936270419 -0.22334351612987913 1.0 5690 +2841 GPR18 G protein-coupled receptor 18 Novel U 0.008382332820868955 -0.2233676061390535 1.0 5691 +390168 OR5M1 olfactory receptor family 5 subfamily M member 1 Novel U 0.008369704565949146 -0.22347648309406942 1.0 5692 +81844 TRIM56 tripartite motif containing 56 Novel U 0.008356087968821225 -0.22359388123358923 1.0 5693 +4642 MYO1D myosin ID Novel U 0.00835122762790925 -0.2236357856077245 1.0 5694 +146857 SLFN13 schlafen family member 13 Novel N 0.0083445801062261 -0.2236930985083477 1.0 5695 +3338 DNAJC4 DnaJ heat shock protein family (Hsp40) member C4 Novel U 0.008343932617196664 -0.22369868096090184 1.0 5696 +2995 GYPC glycophorin C (Gerbich blood group) Novel N 0.00834266572859169 -0.22370960368732207 1.0 5697 +2512 FTL ferritin light chain Novel U 0.008339245298881692 -0.22373909358707747 1.0 5698 +10195 ALG3 ALG3 alpha-1,3- mannosyltransferase Novel N 0.008338931089341119 -0.22374180260572113 1.0 5699 +153478 PLEKHG4B pleckstrin homology and RhoGEF domain containing G4B Novel U 0.008332773089763816 -0.22379489499633437 1.0 5700 +23604 DAPK2 death associated protein kinase 2 Novel U 0.008329801587825585 -0.22382051437802353 1.0 5701 +5676 PSG7 pregnancy specific beta-1-glycoprotein 7 Novel N 0.008328587994508117 -0.2238309776087607 1.0 5702 +10238 DCAF7 DDB1 and CUL4 associated factor 7 Novel U 0.008328557264502335 -0.22383124255348014 1.0 5703 +113174 SAAL1 serum amyloid A like 1 Novel N 0.008322984283449242 -0.2238792910931458 1.0 5704 +284654 RSPO1 R-spondin 1 Novel U 0.008322821766068163 -0.22388069226834392 1.0 5705 +5564 PRKAB1 protein kinase AMP-activated non-catalytic subunit beta 1 Novel N 0.008321907153901709 -0.22388857777495877 1.0 5706 +440498 HSBP1L1 heat shock factor binding protein 1 like 1 Novel U 0.00832011102852515 -0.22390406341910105 1.0 5707 +7305 TYROBP transmembrane immune signaling adaptor TYROBP Novel U 0.008316886467368096 -0.22393186460004585 1.0 5708 +80128 TRIM46 tripartite motif containing 46 Novel U 0.008315966673666155 -0.22393979478027634 1.0 5709 +6795 AURKC aurora kinase C Novel U 0.008311062260417671 -0.2239820791326295 1.0 5710 +79730 NSUN7 NOP2/Sun RNA methyltransferase family member 7 Novel U 0.008289270416688045 -0.22416996175018286 1.0 5711 +1908 EDN3 endothelin 3 Novel U 0.008287428892885385 -0.22418583880568235 1.0 5712 +8416 ANXA9 annexin A9 Novel N 0.008287283340626546 -0.22418709371278062 1.0 5713 +6648 SOD2 superoxide dismutase 2 Novel U 0.008286169571804104 -0.22419669628722574 1.0 5714 +10763 NES nestin Novel U 0.008279401711881552 -0.2242550467073765 1.0 5715 +125963 OR1M1 olfactory receptor family 1 subfamily M member 1 Novel U 0.008271802063135492 -0.22432056855658816 1.0 5716 +26103 LRIT1 leucine rich repeat, Ig-like and transmembrane domains 1 Novel U 0.008271086738553132 -0.2243267358665506 1.0 5717 +2157 F8 coagulation factor VIII Novel U 0.008265220406474243 -0.2243773135891194 1.0 5718 +23623 RUSC1 RUN and SH3 domain containing 1 Novel U 0.008258194225899303 -0.22443789117099824 1.0 5719 +4001 LMNB1 lamin B1 Novel U 0.008257913646680942 -0.2244403102392804 1.0 5720 +80834 TAS1R2 taste 1 receptor member 2 Novel U 0.008255093561912763 -0.22446462414839896 1.0 5721 +341416 OR6C2 olfactory receptor family 6 subfamily C member 2 Novel U 0.008251172803615344 -0.22449842772834627 1.0 5722 +55106 SLFN12 schlafen family member 12 Novel N 0.008246058224077363 -0.22454252407022554 1.0 5723 +25780 RASGRP3 RAS guanyl releasing protein 3 Novel N 0.008242973843003812 -0.22456911666132615 1.0 5724 +401262 CRIP3 cysteine rich protein 3 Novel U 0.008241419997103773 -0.2245825134458569 1.0 5725 +51255 RNF181 ring finger protein 181 Novel U 0.008240901720250436 -0.22458698187051296 1.0 5726 +8061 FOSL1 FOS like 1, AP-1 transcription factor subunit Novel U 0.00823715560136716 -0.22461927976279727 1.0 5727 +132884 EVC2 EvC ciliary complex subunit 2 Novel U 0.008233592215204331 -0.22465000218940478 1.0 5728 +1021 CDK6 cyclin dependent kinase 6 Novel U 0.008233510290862634 -0.22465070851604474 1.0 5729 +368 ABCC6 ATP binding cassette subfamily C member 6 Novel U 0.00823286331279763 -0.22465628656321968 1.0 5730 +1259 CNGA1 cyclic nucleotide gated channel subunit alpha 1 Novel N 0.008228888453853762 -0.2246905565824087 1.0 5731 +122011 CSNK1A1L casein kinase 1 alpha 1 like Novel U 0.008218468681102481 -0.2247803926790287 1.0 5732 +7084 TK2 thymidine kinase 2 Novel U 0.008217566361993923 -0.22478817219865482 1.0 5733 +400831 C20orf202 chromosome 20 open reading frame 202 Novel U 0.008213863849989187 -0.22482009412575765 1.0 5734 +5272 SERPINB9 serpin family B member 9 Novel U 0.008213424938818152 -0.2248238782837532 1.0 5735 +6209 RPS15 ribosomal protein S15 Novel U 0.008210534713951416 -0.2248487969193683 1.0 5736 +5093 PCBP1 poly(rC) binding protein 1 Novel U 0.008208482543507431 -0.22486649010584053 1.0 5737 +10057 ABCC5 ATP binding cassette subfamily C member 5 Novel U 0.00820779822366846 -0.2248723901023798 1.0 5738 +22897 CEP164 centrosomal protein 164 Novel N 0.008204632108786384 -0.22489968737740157 1.0 5739 +5496 PPM1G protein phosphatase, Mg2+/Mn2+ dependent 1G Novel N 0.008203000728405253 -0.22491375264053556 1.0 5740 +25960 ADGRA2 adhesion G protein-coupled receptor A2 Novel N 0.008202209787125858 -0.22492057189455314 1.0 5741 +3778 KCNMA1 potassium calcium-activated channel subfamily M alpha 1 Novel U 0.008196023342067975 -0.2249739095334077 1.0 5742 +285601 GPR150 G protein-coupled receptor 150 Novel U 0.008193266325527769 -0.22499767968753687 1.0 5743 +284069 FAM171A2 family with sequence similarity 171 member A2 Novel U 0.008184757691559071 -0.22507103852957322 1.0 5744 +23112 TNRC6B trinucleotide repeat containing adaptor 6B Novel N 0.008182402251272465 -0.22509134641595624 1.0 5745 +56672 AKIP1 A-kinase interacting protein 1 Novel U 0.008178093709170456 -0.22512849334936896 1.0 5746 +125931 CEACAM20 CEA cell adhesion molecule 20 Novel U 0.008175398089590837 -0.22515173415766546 1.0 5747 +63967 CLSPN claspin Novel U 0.008173492471506836 -0.22516816381447285 1.0 5748 +22868 FASTKD2 FAST kinase domains 2 Novel N 0.008164803951931825 -0.225243073575238 1.0 5749 +387129 NPSR1 neuropeptide S receptor 1 Novel N 0.00816086245750631 -0.22527705593574524 1.0 5750 +60489 APOBEC3G apolipoprotein B mRNA editing enzyme catalytic subunit 3G Novel N 0.008157647636162398 -0.2253047731429974 1.0 5751 +56927 GPR108 G protein-coupled receptor 108 Novel U 0.008157362983644204 -0.22530722733002606 1.0 5752 +84516 DCTN5 dynactin subunit 5 Novel U 0.008153485978062952 -0.22534065368742434 1.0 5753 +7993 UBXN8 UBX domain protein 8 Novel U 0.008151063721567198 -0.22536153764274516 1.0 5754 +131405 TRIM71 tripartite motif containing 71 Novel N 0.00814353612177744 -0.22542643830787204 1.0 5755 +147906 DACT3 dishevelled binding antagonist of beta catenin 3 Novel N 0.008140489297222777 -0.22545270709814327 1.0 5756 +105372280 GNG14 G protein subunit gamma 14 Novel U 0.008138560292505292 -0.22546933838735816 1.0 5757 +348801 LNP1 leukemia NUP98 fusion partner 1 Novel U 0.008136734750954815 -0.2254850776487631 1.0 5758 +10844 TUBGCP2 tubulin gamma complex component 2 Novel U 0.00812466471281945 -0.22558914182924172 1.0 5759 +54210 TREM1 triggering receptor expressed on myeloid cells 1 Novel N 0.00812371986591381 -0.22559728801053883 1.0 5760 +9812 DELE1 DAP3 binding cell death enhancer 1 Novel U 0.008111753188811379 -0.2257004610437762 1.0 5761 +55096 EBLN2 endogenous Bornavirus like nucleoprotein 2 Novel U 0.008110666899654702 -0.22570982669694023 1.0 5762 +85479 DNAJC5B DnaJ heat shock protein family (Hsp40) member C5 beta Novel U 0.00810871424639548 -0.22572666187665555 1.0 5763 +57554 LRRC7 leucine rich repeat containing 7 Novel U 0.008107813437268277 -0.22573442837768387 1.0 5764 +121457 IKBIP IKBKB interacting protein Novel N 0.00810600236688658 -0.22575004287309366 1.0 5765 +9817 KEAP1 kelch like ECH associated protein 1 Novel U 0.008104991663215919 -0.2257587568512944 1.0 5766 +84976 DISP1 dispatched RND transporter family member 1 Novel U 0.008100178107788873 -0.22580025785527516 1.0 5767 +55312 RFK riboflavin kinase Novel N 0.00809915966092561 -0.22580903859291646 1.0 5768 +27125 AFF4 ALF transcription elongation factor 4 Novel N 0.008095965966470121 -0.22583657365059248 1.0 5769 +390036 OR52K1 olfactory receptor family 52 subfamily K member 1 Novel U 0.008095705399721395 -0.22583882017747683 1.0 5770 +4992 OR1F1 olfactory receptor family 1 subfamily F member 1 Novel U 0.008091322610801971 -0.2258766072442612 1.0 5771 +741 ZNHIT2 zinc finger HIT-type containing 2 Novel U 0.00808984314595081 -0.22588936273811766 1.0 5772 +8295 TRRAP transformation/transcription domain associated protein Novel U 0.00808088011049599 -0.22596663929091276 1.0 5773 +5652 PRSS8 serine protease 8 Novel U 0.008079612511926038 -0.2259775681384341 1.0 5774 +9258 MFHAS1 multifunctional ROCO family signaling regulator 1 Novel U 0.008075552147731094 -0.2260125753577695 1.0 5775 +1810 DR1 down-regulator of transcription 1 Novel U 0.008071646904070846 -0.22604624517525598 1.0 5776 +155051 CRYGN crystallin gamma N Novel U 0.008069990318071334 -0.22606052775352944 1.0 5777 +64771 ILRUN inflammation and lipid regulator with UBA-like and NBR1-like domains Novel U 0.008069652722315454 -0.22606343840097518 1.0 5778 +83889 WDR87 WD repeat domain 87 Novel U 0.00806230838350962 -0.226126759045899 1.0 5779 +339390 CLEC4G C-type lectin domain family 4 member G Novel U 0.008059599997625344 -0.22615010992137313 1.0 5780 +3280 HES1 hes family bHLH transcription factor 1 Novel N 0.008057708391937705 -0.226166418767581 1.0 5781 +60685 ZFAND3 zinc finger AN1-type containing 3 Novel U 0.008053274951333705 -0.22620464253771178 1.0 5782 +57707 MEAK7 MTOR associated protein, eak-7 homolog Novel U 0.008052869831353808 -0.22620813535838313 1.0 5783 +389170 LEKR1 leucine, glutamate and lysine rich 1 Novel U 0.00805190471514183 -0.22621645629544565 1.0 5784 +633 BGN biglycan Novel U 0.008048373519919055 -0.2262469011816048 1.0 5785 +6769 STAC SH3 and cysteine rich domain Novel U 0.008048178005468769 -0.2262485868474505 1.0 5786 +54557 SGTB small glutamine rich tetratricopeptide repeat co-chaperone beta Novel U 0.008040983172185847 -0.22631061850144119 1.0 5787 +4148 MATN3 matrilin 3 Novel U 0.008038078558081379 -0.22633566119666704 1.0 5788 +6708 SPTA1 spectrin alpha, erythrocytic 1 Novel U 0.008029226724409037 -0.2264119790016743 1.0 5789 +55679 LIMS2 LIM zinc finger domain containing 2 Novel N 0.008025677427475897 -0.22644257995524877 1.0 5790 +817 CAMK2D calcium/calmodulin dependent protein kinase II delta Novel U 0.008022014201456727 -0.2264741631705889 1.0 5791 +51499 TRIAP1 TP53 regulated inhibitor of apoptosis 1 Novel U 0.008018839461408562 -0.22650153480915702 1.0 5792 +7295 TXN thioredoxin Novel U 0.008016935271182857 -0.2265179521554066 1.0 5793 +23070 CMTR1 cap methyltransferase 1 Novel N 0.00801308228953241 -0.22655117138581465 1.0 5794 +51192 CKLF chemokine like factor Novel U 0.008011951066890158 -0.22656092444176068 1.0 5795 +115004 CGAS cyclic GMP-AMP synthase Novel U 0.008007787447917905 -0.22659682189223376 1.0 5796 +387597 ILDR2 immunoglobulin like domain containing receptor 2 Novel U 0.008005834364482748 -0.2266136607807946 1.0 5797 +6862 TBXT T-box transcription factor T Novel N 0.008004779326825147 -0.2266227569930833 1.0 5798 +8019 BRD3 bromodomain containing 3 Novel N 0.008001863836182154 -0.22664789346250067 1.0 5799 +220064 LTO1 LTO1 maturation factor of ABCE1 Novel N 0.008000454557327605 -0.22666004383414157 1.0 5800 +171017 ZNF384 zinc finger protein 384 Novel U 0.007987164482465989 -0.22677462679845892 1.0 5801 +23031 MAST3 microtubule associated serine/threonine kinase 3 Novel N 0.00798684858512453 -0.22677735036880606 1.0 5802 +23534 TNPO3 transportin 3 Novel U 0.007985285795174598 -0.2267908242662019 1.0 5803 +120787 OR52W1 olfactory receptor family 52 subfamily W member 1 Novel U 0.007984768555251607 -0.22679528375076138 1.0 5804 +4691 NCL nucleolin Novel U 0.007977497309489238 -0.22685797420979997 1.0 5805 +6815 STYX serine/threonine/tyrosine interacting protein Novel U 0.007976325698854002 -0.22686807547867988 1.0 5806 +283767 GOLGA6L1 golgin A6 family like 1 Novel U 0.007974228889413577 -0.22688615352893873 1.0 5807 +10665 TSBP1 testis expressed basic protein 1 Novel U 0.007961366837837778 -0.2269970462072798 1.0 5808 +3181 HNRNPA2B1 heterogeneous nuclear ribonucleoprotein A2/B1 Novel N 0.007951039719630704 -0.22708608346473272 1.0 5809 +55003 PAK1IP1 PAK1 interacting protein 1 Novel N 0.007950233805980285 -0.22709303180595805 1.0 5810 +1515 CTSV cathepsin V Novel U 0.007947383445515474 -0.2271176067428814 1.0 5811 +10888 GPR83 G protein-coupled receptor 83 Novel U 0.007946359172794027 -0.22712643770929164 1.0 5812 +4249 MGAT5 alpha-1,6-mannosylglycoprotein 6-beta-N-acetylglucosaminyltransferase Novel U 0.007945902246547305 -0.2271303771877648 1.0 5813 +10083 USH1C USH1 protein network component harmonin Novel U 0.007942850056221437 -0.22715669224007565 1.0 5814 +989 SEPTIN7 septin 7 Novel U 0.007941812689383182 -0.2271656360999598 1.0 5815 +64782 AEN apoptosis enhancing nuclease Novel N 0.007934518717731851 -0.22722852249466852 1.0 5816 +3880 KRT19 keratin 19 Novel U 0.007934148403816394 -0.22723171522808824 1.0 5817 +2010 EMD emerin Novel U 0.007932353250741231 -0.22724719248934502 1.0 5818 +63939 FAM217B family with sequence similarity 217 member B Novel U 0.007932291736789669 -0.22724772284383815 1.0 5819 +84285 EIF1AD eukaryotic translation initiation factor 1A domain containing Novel U 0.007928798501172361 -0.22727784045387855 1.0 5820 +245938 DEFB125 defensin beta 125 Novel U 0.007928231737436219 -0.2272827269176217 1.0 5821 +119504 ANAPC16 anaphase promoting complex subunit 16 Novel N 0.007918355454510844 -0.22736787721104063 1.0 5822 +27351 DESI1 desumoylating isopeptidase 1 Novel U 0.007916182827447379 -0.22738660893767723 1.0 5823 +1368 CPM carboxypeptidase M Novel N 0.007915440091628907 -0.22739301257894118 1.0 5824 +5675 PSG6 pregnancy specific beta-1-glycoprotein 6 Novel U 0.007914315251500728 -0.22740271060680123 1.0 5825 +390264 OR10G4 olfactory receptor family 10 subfamily G member 4 Novel U 0.007913767777701426 -0.22740743075860348 1.0 5826 +1615 DARS1 aspartyl-tRNA synthetase 1 Novel N 0.007908941101225739 -0.22744904488825615 1.0 5827 +5164 PDK2 pyruvate dehydrogenase kinase 2 Novel N 0.00790729593735816 -0.2274632289883984 1.0 5828 +11082 ESM1 endothelial cell specific molecule 1 Novel U 0.007904214828891002 -0.22748979336408673 1.0 5829 +716 C1S complement C1s Novel U 0.007901966512285856 -0.22750917766282275 1.0 5830 +9567 GTPBP1 GTP binding protein 1 Novel N 0.007897310900662497 -0.22754931692359212 1.0 5831 +116236 ABHD15 abhydrolase domain containing 15 Novel U 0.007895830792282918 -0.22756207796575395 1.0 5832 +6548 SLC9A1 solute carrier family 9 member A1 Novel U 0.00789402621100053 -0.2275776365141324 1.0 5833 +79583 TMEM231 transmembrane protein 231 Novel U 0.007885020367174747 -0.2276552821476207 1.0 5834 +127077 OR2T11 olfactory receptor family 2 subfamily T member 11 Novel U 0.007881967992217204 -0.22768159879176944 1.0 5835 +9943 OXSR1 oxidative stress responsive kinase 1 Novel U 0.007875818052940095 -0.22773462168893746 1.0 5836 +6331 SCN5A sodium voltage-gated channel alpha subunit 5 Novel U 0.007874215086368711 -0.22774844197688643 1.0 5837 +83982 IFI27L2 interferon alpha inducible protein 27 like 2 Novel N 0.007870767356497789 -0.22777816725028702 1.0 5838 +170679 PSORS1C1 psoriasis susceptibility 1 candidate 1 Novel U 0.007868001432192791 -0.2278020142044422 1.0 5839 +219736 STOX1 storkhead box 1 Novel U 0.007857345812865742 -0.2278938836981692 1.0 5840 +5714 PSMD8 proteasome 26S subunit, non-ATPase 8 Novel U 0.007855771603139062 -0.22790745605339052 1.0 5841 +128338 DRAM2 DNA damage regulated autophagy modulator 2 Novel N 0.00785264872751933 -0.22793438053270532 1.0 5842 +23197 FAF2 Fas associated factor family member 2 Novel U 0.00785151711818127 -0.22794413692262444 1.0 5843 +2308 FOXO1 forkhead box O1 Novel U 0.007850925220528486 -0.2279492400833165 1.0 5844 +10223 GPA33 glycoprotein A33 Novel U 0.007849684460018587 -0.2279599375412851 1.0 5845 +26189 OR1A2 olfactory receptor family 1 subfamily A member 2 Novel U 0.007848854853010869 -0.22796709015939695 1.0 5846 +1113 CHGA chromogranin A Novel U 0.007838607256560834 -0.2280554418045607 1.0 5847 +5194 PEX13 peroxisomal biogenesis factor 13 Novel U 0.007834397920558863 -0.22809173341329392 1.0 5848 +6693 SPN sialophorin Novel U 0.007832263933607886 -0.22811013199668823 1.0 5849 +51096 UTP18 UTP18 small subunit processome component Novel N 0.00782961730751596 -0.22813295039810508 1.0 5850 +117579 RLN3 relaxin 3 Novel U 0.007826924616760931 -0.2281561659549709 1.0 5851 +2935 GSPT1 G1 to S phase transition 1 Novel U 0.007825287605784633 -0.22817027976337587 1.0 5852 +151306 GPBAR1 G protein-coupled bile acid receptor 1 Novel U 0.007818643363793886 -0.22822756438749342 1.0 5853 +79595 SAP130 Sin3A associated protein 130 Novel N 0.007817778291592779 -0.2282350227756653 1.0 5854 +3626 INHBC inhibin subunit beta C Novel U 0.007813557034352735 -0.22827141716567037 1.0 5855 +8303 SNN stannin Novel N 0.0078093021390661784 -0.22830810157263345 1.0 5856 +7068 THRB thyroid hormone receptor beta Novel U 0.007809002746764256 -0.22831068284157324 1.0 5857 +131034 CPNE4 copine 4 Novel U 0.007800744738980173 -0.22838188086123143 1.0 5858 +4869 NPM1 nucleophosmin 1 Novel U 0.007797085929011857 -0.22841342600273057 1.0 5859 +1514 CTSL cathepsin L Novel U 0.007796852970332439 -0.22841543450127771 1.0 5860 +83876 MRO maestro Novel U 0.007794681812664432 -0.2284341535592357 1.0 5861 +23523 CABIN1 calcineurin binding protein 1 Novel N 0.007791137013251284 -0.22846471573656713 1.0 5862 +1298 COL9A2 collagen type IX alpha 2 chain Novel U 0.007786274738292158 -0.22850663678546593 1.0 5863 +9936 CD302 CD302 molecule Novel U 0.007786106583822257 -0.22850808656192134 1.0 5864 +55049 REX1BD required for excision 1-B domain containing Novel U 0.007785587050535958 -0.22851256581915844 1.0 5865 +7298 TYMS thymidylate synthetase Novel U 0.007783289412635152 -0.22853237535103416 1.0 5866 +26533 OR10G3 olfactory receptor family 10 subfamily G member 3 Novel U 0.007782484267264974 -0.22853931706838204 1.0 5867 +5360 PLTP phospholipid transfer protein Novel N 0.007780062013532249 -0.2285602009998809 1.0 5868 +54434 SSH1 slingshot protein phosphatase 1 Novel U 0.007778668389608617 -0.22857221639949118 1.0 5869 +83939 EIF2A eukaryotic translation initiation factor 2A Novel N 0.007773808775329727 -0.22861411450881805 1.0 5870 +631 BFSP1 beaded filament structural protein 1 Novel N 0.007773449004245106 -0.22861721634517193 1.0 5871 +146779 EFCAB3 EF-hand calcium binding domain 3 Novel U 0.007772404307777052 -0.22862622339888442 1.0 5872 +165721 DNAJB8 DnaJ heat shock protein family (Hsp40) member B8 Novel U 0.007766535090881114 -0.22867682599346426 1.0 5873 +117286 CIB3 calcium and integrin binding family member 3 Novel U 0.007766319308666794 -0.22867868640177805 1.0 5874 +2846 LPAR4 lysophosphatidic acid receptor 4 Novel U 0.00776045021194007 -0.22872928796029565 1.0 5875 +23210 JMJD6 jumonji domain containing 6, arginine demethylase and lysine hydroxylase Novel U 0.007760044404340531 -0.22873278670941347 1.0 5876 +4940 OAS3 2'-5'-oligoadenylate synthetase 3 Novel U 0.007758662920000586 -0.2287446974452428 1.0 5877 +9073 CLDN8 claudin 8 Novel U 0.007755547839854721 -0.228771554714364 1.0 5878 +8473 OGT O-linked N-acetylglucosamine (GlcNAc) transferase Novel U 0.007750246005437893 -0.22881726551058792 1.0 5879 +57060 PCBP4 poly(rC) binding protein 4 Novel N 0.00774403277766938 -0.22887083406178935 1.0 5880 +732 C8B complement C8 beta chain Novel U 0.007742806431042509 -0.22888140724766304 1.0 5881 +85464 SSH2 slingshot protein phosphatase 2 Novel U 0.007740021168634595 -0.2289054209290323 1.0 5882 +10724 OGA O-GlcNAcase Novel N 0.007735826361148938 -0.2289415872773375 1.0 5883 +51693 TRAPPC2L trafficking protein particle complex subunit 2L Novel N 0.007735762366882665 -0.22894213901634614 1.0 5884 +90627 STARD13 StAR related lipid transfer domain containing 13 Novel U 0.007730914930875516 -0.22898393212833543 1.0 5885 +152138 PYDC2 pyrin domain containing 2 Novel U 0.0077272123558133204 -0.22901585459910037 1.0 5886 +10206 TRIM13 tripartite motif containing 13 Novel U 0.007724743745208917 -0.2290371382053812 1.0 5887 +1012 CDH13 cadherin 13 Novel U 0.007724111016363472 -0.22904259340013935 1.0 5888 +10989 IMMT inner membrane mitochondrial protein Novel N 0.007718038494242025 -0.22909494883024814 1.0 5889 +146057 TTBK2 tau tubulin kinase 2 Novel U 0.007710777678780669 -0.22915754936241867 1.0 5890 +4978 OPCML opioid binding protein/cell adhesion molecule like Novel U 0.0077082572422258275 -0.22917927979620742 1.0 5891 +406 BMAL1 basic helix-loop-helix ARNT like 1 Novel N 0.007707654401225792 -0.22918447730709546 1.0 5892 +4811 NID1 nidogen 1 Novel N 0.007706201136594189 -0.22919700691066505 1.0 5893 +1565 CYP2D6 cytochrome P450 family 2 subfamily D member 6 Novel U 0.007692051525737713 -0.22931900053167578 1.0 5894 +11010 GLIPR1 GLI pathogenesis related 1 Novel U 0.007686790220537857 -0.22936436189737572 1.0 5895 +27178 IL37 interleukin 37 Novel U 0.00768624884153969 -0.22936902950166502 1.0 5896 +27332 ZNF638 zinc finger protein 638 Novel U 0.007683477655733055 -0.22939292181887955 1.0 5897 +84886 C1orf198 chromosome 1 open reading frame 198 Novel U 0.007680372174436172 -0.229419696329658 1.0 5898 +5478 PPIA peptidylprolyl isomerase A Novel U 0.0076786299207162005 -0.22943471750883915 1.0 5899 +7514 XPO1 exportin 1 Novel U 0.007678039919458907 -0.22943980431938882 1.0 5900 +22809 ATF5 activating transcription factor 5 Novel U 0.007676317157079929 -0.22945465745018404 1.0 5901 +5048 PAFAH1B1 platelet activating factor acetylhydrolase 1b regulatory subunit 1 Novel U 0.0076709302363249365 -0.22950110183481515 1.0 5902 +128989 TANGO2 transport and golgi organization 2 homolog Novel U 0.007669575771853561 -0.22951277961359434 1.0 5903 +55860 ACTR10 actin related protein 10 Novel U 0.007668239426654513 -0.22952430117354433 1.0 5904 +6441 SFTPD surfactant protein D Novel U 0.0076658905372523276 -0.2295445525802037 1.0 5905 +148823 GCSAML germinal center associated signaling and motility like Novel U 0.007664770547068997 -0.2295542087933213 1.0 5906 +8386 OR1D5 olfactory receptor family 1 subfamily D member 5 Novel N 0.007663513272560423 -0.2295650486299402 1.0 5907 +4023 LPL lipoprotein lipase Novel U 0.007662124742455427 -0.2295770201122028 1.0 5908 +3543 IGLL1 immunoglobulin lambda like polypeptide 1 Novel U 0.0076606528655081335 -0.2295897101854708 1.0 5909 +1979 EIF4EBP2 eukaryotic translation initiation factor 4E binding protein 2 Novel N 0.007651262800894555 -0.2296706684531825 1.0 5910 +165530 CLEC4F C-type lectin domain family 4 member F Novel U 0.007649376554326354 -0.2296869310947002 1.0 5911 +84272 YIPF4 Yip1 domain family member 4 Novel U 0.007647571207975749 -0.22970249623926303 1.0 5912 +1808 DPYSL2 dihydropyrimidinase like 2 Novel U 0.007645260004352504 -0.22972242273065227 1.0 5913 +22 ABCB7 ATP binding cassette subfamily B member 7 Novel U 0.00763362394375353 -0.22982274528942562 1.0 5914 +23329 TBC1D30 TBC1 domain family member 30 Novel U 0.007631804197750637 -0.22983843458339026 1.0 5915 +7167 TPI1 triosephosphate isomerase 1 Novel N 0.007628755649637432 -0.22986471823365653 1.0 5916 +9859 CEP170 centrosomal protein 170 Novel U 0.007626669278652872 -0.22988270628673868 1.0 5917 +23254 KAZN kazrin, periplakin interacting protein Novel U 0.007619116835278707 -0.2299478211456587 1.0 5918 +51132 RLIM ring finger protein, LIM domain interacting Novel U 0.007617970334217006 -0.22995770592746848 1.0 5919 +2028 ENPEP glutamyl aminopeptidase Novel N 0.0076153087087886965 -0.2299806536485802 1.0 5920 +138802 OR13C8 olfactory receptor family 13 subfamily C member 8 Novel U 0.007611822873847479 -0.23001070745225285 1.0 5921 +1119 CHKA choline kinase alpha Novel U 0.007611656838463522 -0.23001213895859673 1.0 5922 +286464 CFAP47 cilia and flagella associated protein 47 Novel N 0.0076089953737282865 -0.2300350852942619 1.0 5923 +3761 KCNJ4 potassium inwardly rectifying channel subfamily J member 4 Novel N 0.007608484665087303 -0.23003948846810368 1.0 5924 +80207 OPA3 outer mitochondrial membrane lipid metabolism regulator OPA3 Novel U 0.007608000832456638 -0.2300436599251972 1.0 5925 +23383 MAU2 MAU2 sister chromatid cohesion factor Novel U 0.007607647371914435 -0.23004670735398272 1.0 5926 +57720 GPR107 G protein-coupled receptor 107 Novel U 0.007604376610370688 -0.23007490686054383 1.0 5927 +1809 DPYSL3 dihydropyrimidinase like 3 Novel U 0.007600098192517142 -0.23011179407189156 1.0 5928 +143471 PSMA8 proteasome 20S subunit alpha 8 Novel U 0.007599680539252843 -0.23011539495071118 1.0 5929 +57492 ARID1B AT-rich interaction domain 1B Novel U 0.007598468533478499 -0.23012584449413662 1.0 5930 +80333 KCNIP4 potassium voltage-gated channel interacting protein 4 Novel U 0.007593072251363493 -0.2301723695895532 1.0 5931 +84654 SPZ1 spermatogenic leucine zipper 1 Novel U 0.007592184701652188 -0.23018002177194938 1.0 5932 +5571 PRKAG1 protein kinase AMP-activated non-catalytic subunit gamma 1 Novel U 0.007589383606316281 -0.23020417195998563 1.0 5933 +57102 FERRY3 FERRY endosomal RAB5 effector complex subunit 3 Novel U 0.007589115507108591 -0.2302064834294294 1.0 5934 +51061 TXNDC11 thioredoxin domain containing 11 Novel U 0.0075889602356100025 -0.23020782213284285 1.0 5935 +7079 TIMP4 TIMP metallopeptidase inhibitor 4 Novel U 0.007586750130500911 -0.23022687698373645 1.0 5936 +10605 PAIP1 poly(A) binding protein interacting protein 1 Novel U 0.0075862829987858905 -0.2302309044506387 1.0 5937 +4155 MBP myelin basic protein Novel U 0.00758531030974967 -0.23023929067827775 1.0 5938 +90550 MCU mitochondrial calcium uniporter Novel U 0.007583589128328064 -0.23025413017854157 1.0 5939 +203547 VMA21 vacuolar ATPase assembly factor VMA21 Novel N 0.007573890112609064 -0.2303377521282759 1.0 5940 +55600 ITLN1 intelectin 1 Novel U 0.007572839064804599 -0.23034681394127013 1.0 5941 +284358 MAMSTR MEF2 activating motif and SAP domain containing transcriptional regulator Novel U 0.007572774665643947 -0.23034736917115434 1.0 5942 +122553 TRAPPC6B trafficking protein particle complex subunit 6B Novel N 0.007572036287475947 -0.23035373524208755 1.0 5943 +8904 CPNE1 copine 1 Novel U 0.007571856261431492 -0.23035528737163105 1.0 5944 +219931 TPCN2 two pore segment channel 2 Novel U 0.007562597822387014 -0.2304351108039077 1.0 5945 +23237 ARC activity regulated cytoskeleton associated protein Novel U 0.007561556567157791 -0.23044408818831055 1.0 5946 +340348 TSPAN33 tetraspanin 33 Novel U 0.007561043567544633 -0.23044851111421435 1.0 5947 +23294 ANKS1A ankyrin repeat and sterile alpha motif domain containing 1A Novel U 0.0075605520233740274 -0.2304527490578488 1.0 5948 +529 ATP6V1E1 ATPase H+ transporting V1 subunit E1 Novel U 0.007559883511042595 -0.2304585127668885 1.0 5949 +78999 LRFN4 leucine rich repeat and fibronectin type III domain containing 4 Novel U 0.007559674136102106 -0.23046031793364527 1.0 5950 +286430 NLRP2B NLR family pyrin domain containing 2B Novel U 0.007550745816416652 -0.2305372951776852 1.0 5951 +23080 AVL9 AVL9 cell migration associated Novel N 0.007549064318351758 -0.23055179254017386 1.0 5952 +84905 ZNF341 zinc finger protein 341 Novel U 0.007540780343020644 -0.23062321444408743 1.0 5953 +9758 FRMPD4 FERM and PDZ domain containing 4 Novel N 0.007540083002819228 -0.230629226698213 1.0 5954 +3553 IL1B interleukin 1 beta Novel U 0.007537589950724208 -0.23065072103155718 1.0 5955 +3040 HBA2 hemoglobin subunit alpha 2 Novel U 0.007536283499434253 -0.23066198485535788 1.0 5956 +55784 MCTP2 multiple C2 and transmembrane domain containing 2 Novel U 0.007535625373440174 -0.23066765901657074 1.0 5957 +5726 TAS2R38 taste 2 receptor member 38 Novel N 0.00753344432193462 -0.23068646337617277 1.0 5958 +10092 ARPC5 actin related protein 2/3 complex subunit 5 Novel U 0.007531391505845207 -0.23070416212920253 1.0 5959 +51332 SPTBN5 spectrin beta, non-erythrocytic 5 Novel U 0.007529272530488797 -0.23072243128721565 1.0 5960 +525 ATP6V1B1 ATPase H+ transporting V1 subunit B1 Novel N 0.007523654137886589 -0.23077087135138105 1.0 5961 +286676 ILDR1 immunoglobulin like domain containing receptor 1 Novel N 0.007523644827738972 -0.23077095162062886 1.0 5962 +3336 HSPE1 heat shock protein family E (Hsp10) member 1 Novel U 0.007520286638972234 -0.23079990489799082 1.0 5963 +4619 MYH1 myosin heavy chain 1 Novel U 0.007517794108297503 -0.23082139473580862 1.0 5964 +80133 MROH9 maestro heat like repeat family member 9 Novel U 0.007515788579954101 -0.23083868578834235 1.0 5965 +131149 OTOL1 otolin 1 Novel U 0.00751516669328804 -0.23084404750514295 1.0 5966 +116443 GRIN3A glutamate ionotropic receptor NMDA type subunit 3A Novel N 0.007514304393843059 -0.23085148198745883 1.0 5967 +2638 GC GC vitamin D binding protein Novel N 0.007507266074433265 -0.23091216422666244 1.0 5968 +55604 CARMIL1 capping protein regulator and myosin 1 linker 1 Novel U 0.0075053094316713176 -0.23092903380265115 1.0 5969 +92840 REEP6 receptor accessory protein 6 Novel N 0.007501309491798031 -0.23096352006194953 1.0 5970 +6283 S100A12 S100 calcium binding protein A12 Novel U 0.00749618035438878 -0.2310077419173463 1.0 5971 +54436 SH3TC1 SH3 domain and tetratricopeptide repeats 1 Novel U 0.007496172612657587 -0.23100780866418696 1.0 5972 +114990 VASN vasorin Novel U 0.007493217594036766 -0.23103328593175032 1.0 5973 +11273 ATXN2L ataxin 2 like Novel N 0.007491288436201212 -0.23104991854110246 1.0 5974 +887 CCKBR cholecystokinin B receptor Novel N 0.007487701598558458 -0.23108084315920366 1.0 5975 +1088 CEACAM8 CEA cell adhesion molecule 8 Novel N 0.007484759275135445 -0.23110621097265088 1.0 5976 +114881 OSBPL7 oxysterol binding protein like 7 Novel U 0.007484520197697499 -0.23110827222526434 1.0 5977 +8521 GCM1 glial cells missing transcription factor 1 Novel N 0.00748416589187571 -0.23111132694179212 1.0 5978 +728386 USP17L5 ubiquitin specific peptidase 17 like family member 5 Novel U 0.00747398940244263 -0.23119906552398434 1.0 5979 +347 APOD apolipoprotein D Novel U 0.0074731912142681056 -0.2312059472585172 1.0 5980 +90525 SHF Src homology 2 domain containing F Novel U 0.00746543117084179 -0.23127285198164912 1.0 5981 +2623 GATA1 GATA binding protein 1 Novel U 0.007458312394841088 -0.23133422789299388 1.0 5982 +4493 MT1E metallothionein 1E Novel U 0.007455358761428429 -0.23135969321771574 1.0 5983 +729877 TBC1D3H TBC1 domain family member 3H Novel U 0.0074550993615995625 -0.23136192968377364 1.0 5984 +116255 MOGAT1 monoacylglycerol O-acyltransferase 1 Novel U 0.007455068693392369 -0.23136219409568456 1.0 5985 +4887 NPY2R neuropeptide Y receptor Y2 Novel N 0.007452156522962946 -0.23138730193923515 1.0 5986 +727 C5 complement C5 Novel U 0.007441998387468389 -0.23147488227937793 1.0 5987 +815 CAMK2A calcium/calmodulin dependent protein kinase II alpha Novel U 0.007439238778196656 -0.23149867478724603 1.0 5988 +25898 RCHY1 ring finger and CHY zinc finger domain containing 1 Novel U 0.007439131445079329 -0.2314996001805851 1.0 5989 +5352 PLOD2 procollagen-lysine,2-oxoglutarate 5-dioxygenase 2 Novel U 0.0074372705886600375 -0.23151564391599758 1.0 5990 +23231 SEL1L3 SEL1L family member 3 Novel U 0.007436391363098966 -0.2315232243301141 1.0 5991 +79752 ZFAND1 zinc finger AN1-type containing 1 Novel U 0.007434964746846733 -0.23153552417949994 1.0 5992 +8973 CHRNA6 cholinergic receptor nicotinic alpha 6 subunit Novel N 0.007431602071228332 -0.23156451614112591 1.0 5993 +10612 TRIM3 tripartite motif containing 3 Novel U 0.007431405773743479 -0.23156620855805632 1.0 5994 +100129053 KDM4F lysine demethylase 4F Novel U 0.007428418043668633 -0.23159196785378044 1.0 5995 +23620 NTSR2 neurotensin receptor 2 Novel N 0.00742384852375291 -0.2316313648581542 1.0 5996 +137994 LETM2 leucine zipper and EF-hand containing transmembrane protein 2 Novel U 0.007419019161708104 -0.23167300214196315 1.0 5997 +57105 CYSLTR2 cysteinyl leukotriene receptor 2 Novel U 0.0074162277235046105 -0.23169706906915472 1.0 5998 +9394 HS6ST1 heparan sulfate 6-O-sulfotransferase 1 Novel N 0.00741111629352983 -0.2317411382564625 1.0 5999 +2312 FLG filaggrin Novel U 0.007409701914749912 -0.23175333259810152 1.0 6000 +2114 ETS2 ETS proto-oncogene 2, transcription factor Novel N 0.007409415808290285 -0.23175579932056892 1.0 6001 +6335 SCN9A sodium voltage-gated channel alpha subunit 9 Novel U 0.0074038497480729696 -0.23180378819090333 1.0 6002 +100529261 CHURC1-FNTB CHURC1-FNTB readthrough Novel U 0.007401115447719272 -0.23182736249301394 1.0 6003 +1062 CENPE centromere protein E Novel U 0.007401017367575344 -0.23182820811004387 1.0 6004 +3752 KCND3 potassium voltage-gated channel subfamily D member 3 Novel N 0.007395838260273267 -0.23187286079058697 1.0 6005 +54221 SNTG2 syntrophin gamma 2 Novel N 0.0073935003121842055 -0.231893017864588 1.0 6006 +4862 NPAS2 neuronal PAS domain protein 2 Novel N 0.007390043768616859 -0.23192281912698587 1.0 6007 +57606 SLAIN2 SLAIN motif family member 2 Novel U 0.007389731610965511 -0.23192551045486764 1.0 6008 +129138 ANKRD54 ankyrin repeat domain 54 Novel U 0.007387033512262017 -0.2319487726374126 1.0 6009 +345930 ECT2L epithelial cell transforming 2 like Novel U 0.007386941409740842 -0.23194956671720576 1.0 6010 +64756 ATPAF1 ATP synthase mitochondrial F1 complex assembly factor 1 Novel U 0.007379035083072696 -0.23201773264974795 1.0 6011 +79630 C1orf54 chromosome 1 open reading frame 54 Novel U 0.007377519710491932 -0.2320307977290765 1.0 6012 +54879 ST7L suppression of tumorigenicity 7 like Novel U 0.007363918540622859 -0.2321480628594847 1.0 6013 +6733 SRPK2 SRSF protein kinase 2 Novel N 0.0073599332057876655 -0.23218242319860757 1.0 6014 +149041 RC3H1 ring finger and CCCH-type domains 1 Novel U 0.007359239696038736 -0.2321884024277423 1.0 6015 +27334 P2RY10 P2Y receptor family member 10 Novel U 0.007359149629736213 -0.23218917895188046 1.0 6016 +9055 PRC1 protein regulator of cytokinesis 1 Novel U 0.00735378477854497 -0.23223543305947691 1.0 6017 +3909 LAMA3 laminin subunit alpha 3 Novel U 0.007353684226880398 -0.2322362999852026 1.0 6018 +151176 ERFE erythroferrone Novel U 0.007352270162902087 -0.23224849161271832 1.0 6019 +284369 SIGLECL1 SIGLEC family like 1 Novel U 0.007345927562902061 -0.23230317557176672 1.0 6020 +10296 MAEA macrophage erythroblast attacher, E3 ubiquitin ligase Novel N 0.0073415659902176375 -0.23234077971865605 1.0 6021 +255631 COL24A1 collagen type XXIV alpha 1 chain Novel U 0.0073413998448687914 -0.23234221217308362 1.0 6022 +374955 SPATA21 spermatogenesis associated 21 Novel U 0.007337884802656073 -0.2323725177929261 1.0 6023 +1843 DUSP1 dual specificity phosphatase 1 Novel U 0.007337870855303625 -0.23237263804273692 1.0 6024 +8637 EIF4EBP3 eukaryotic translation initiation factor 4E binding protein 3 Novel U 0.007333556987422319 -0.23240983089339126 1.0 6025 +54845 ESRP1 epithelial splicing regulatory protein 1 Novel U 0.007332638263225828 -0.23241775185267255 1.0 6026 +339448 C1orf174 chromosome 1 open reading frame 174 Novel U 0.007332556479239586 -0.23241845696921062 1.0 6027 +56920 SEMA3G semaphorin 3G Novel U 0.007324396072026652 -0.23248881350656883 1.0 6028 +26996 GPR160 G protein-coupled receptor 160 Novel U 0.007323705317599166 -0.23249476898016405 1.0 6029 +59352 LGR6 leucine rich repeat containing G protein-coupled receptor 6 Novel U 0.007319609375943514 -0.23253008293749403 1.0 6030 +54629 MINDY2 MINDY lysine 48 deubiquitinase 2 Novel U 0.007318572855499584 -0.23253901950002492 1.0 6031 +51343 FZR1 fizzy and cell division cycle 20 related 1 Novel U 0.007317038501280887 -0.23255224823323536 1.0 6032 +79987 SVEP1 sushi, von Willebrand factor type A, EGF and pentraxin domain containing 1 Novel U 0.007315863560094591 -0.23256237821710876 1.0 6033 +11006 LILRB4 leukocyte immunoglobulin like receptor B4 Novel U 0.0073140282302016375 -0.23257820187061146 1.0 6034 +4680 CEACAM6 CEA cell adhesion molecule 6 Novel U 0.007310745310929216 -0.23260650619739404 1.0 6035 +439 GET3 guided entry of tail-anchored proteins factor 3, ATPase Novel U 0.007308071977203471 -0.23262955486386847 1.0 6036 +63923 TNN tenascin N Novel U 0.007306795824891983 -0.23264055745913548 1.0 6037 +9772 TMEM94 transmembrane protein 94 Novel U 0.0073051233309624555 -0.2326549771907204 1.0 6038 +9968 MED12 mediator complex subunit 12 Novel U 0.007303820812902284 -0.23266620710341582 1.0 6039 +9961 MVP major vault protein Novel U 0.00730368607360208 -0.23266736878448896 1.0 6040 +123811 CEP20 centrosomal protein 20 Novel N 0.007292925737501288 -0.23276014111424012 1.0 6041 +5047 PAEP progestagen associated endometrial protein Novel U 0.007290918462203106 -0.23277744722848415 1.0 6042 +26248 OR2K2 olfactory receptor family 2 subfamily K member 2 Novel U 0.007285450986150086 -0.23282458613627907 1.0 6043 +55658 RNF126 ring finger protein 126 Novel U 0.007284227564488112 -0.23283513410399923 1.0 6044 +113457 TUBA3D tubulin alpha 3d Novel N 0.007281496011471463 -0.23285868471940935 1.0 6045 +3489 IGFBP6 insulin like growth factor binding protein 6 Novel U 0.0072783203803649605 -0.2328860640404102 1.0 6046 +4974 OMG oligodendrocyte myelin glycoprotein Novel U 0.007275291621643875 -0.23291217707258477 1.0 6047 +9939 RBM8A RNA binding motif protein 8A Novel U 0.007271942787091868 -0.2329410497007658 1.0 6048 +4879 NPPB natriuretic peptide B Novel U 0.007271468406489069 -0.2329451396653634 1.0 6049 +138065 RNF183 ring finger protein 183 Novel U 0.007271370092521629 -0.23294598729834817 1.0 6050 +284382 ACTL9 actin like 9 Novel U 0.007270818365778206 -0.23295074411773503 1.0 6051 +9931 HELZ helicase with zinc finger Novel U 0.007268838453341804 -0.23296781431774624 1.0 6052 +4783 NFIL3 nuclear factor, interleukin 3 regulated Novel N 0.007262030409207881 -0.23302651119388806 1.0 6053 +23284 ADGRL3 adhesion G protein-coupled receptor L3 Novel N 0.007259449512633607 -0.23304876289548918 1.0 6054 +4828 NMB neuromedin B Novel N 0.007258607290933406 -0.23305602427362485 1.0 6055 +9256 TSPOAP1 TSPO associated protein 1 Novel U 0.007258541319581753 -0.23305659305845947 1.0 6056 +79781 IQCA1 IQ motif containing with AAA domain 1 Novel U 0.007257152691731462 -0.2330685653834521 1.0 6057 +9733 SART3 spliceosome associated factor 3, U4/U6 recycling protein Novel N 0.0072562171362361245 -0.2330766314570488 1.0 6058 +1022 CDK7 cyclin dependent kinase 7 Novel U 0.00725529761162069 -0.23308455931729763 1.0 6059 +56915 EXOSC5 exosome component 5 Novel U 0.0072541760823065845 -0.2330942288003304 1.0 6060 +285016 ALKAL2 ALK and LTK ligand 2 Novel U 0.007252128032466989 -0.23311188646021072 1.0 6061 +92235 STYXL2 serine/threonine/tyrosine interacting like 2 Novel U 0.007251710099471657 -0.23311548975078583 1.0 6062 +645414 PRAMEF19 PRAME family member 19 Novel U 0.007250416104306065 -0.23312664618168857 1.0 6063 +23122 CLASP2 cytoplasmic linker associated protein 2 Novel U 0.007250101251816147 -0.23312936074364501 1.0 6064 +10636 RGS14 regulator of G protein signaling 14 Novel U 0.007246604844249671 -0.23315950570126187 1.0 6065 +4034 LRCH4 leucine rich repeats and calponin homology domain containing 4 Novel N 0.007246075179205562 -0.2331640723114188 1.0 6066 +10491 CRTAP cartilage associated protein Novel U 0.007239067356147069 -0.2332244916204005 1.0 6067 +10024 TROAP trophinin associated protein Novel U 0.007235556326994505 -0.23325476264086456 1.0 6068 +112714 TUBA3E tubulin alpha 3e Novel U 0.00723018545065402 -0.23330106869545664 1.0 6069 +100506164 HSFX1 heat shock transcription factor family, X-linked 1 Novel U 0.0072268111652406845 -0.23333016075318683 1.0 6070 +83714 NRIP2 nuclear receptor interacting protein 2 Novel U 0.0072229756242791245 -0.23336322961530478 1.0 6071 +1896 EDA ectodysplasin A Novel U 0.007221915769485197 -0.23337236735947092 1.0 6072 +26064 RAI14 retinoic acid induced 14 Novel U 0.007221095667338761 -0.23337943802957326 1.0 6073 +26298 EHF ETS homologous factor Novel N 0.007207767481254281 -0.23349434957720822 1.0 6074 +79574 EPS8L3 EPS8 signaling adaptor L3 Novel N 0.0072057035188616 -0.23351214443025872 1.0 6075 +23354 HAUS5 HAUS augmin like complex subunit 5 Novel U 0.007204775499215926 -0.2335201455320624 1.0 6076 +50862 RNF141 ring finger protein 141 Novel U 0.007201120245378036 -0.23355166001369165 1.0 6077 +55320 MIS18BP1 MIS18 binding protein 1 Novel U 0.007200958820588662 -0.23355305176889796 1.0 6078 +60681 FKBP10 FKBP prolyl isomerase 10 Novel U 0.00719946223817529 -0.23356595484514509 1.0 6079 +144406 CFAP251 cilia and flagella associated protein 251 Novel N 0.0071979943019667885 -0.2335786109425674 1.0 6080 +390162 OR5M9 olfactory receptor family 5 subfamily M member 9 Novel U 0.007197893232139349 -0.23357948233573497 1.0 6081 +55741 EDEM2 ER degradation enhancing alpha-mannosidase like protein 2 Novel U 0.007195893873708469 -0.23359672019316835 1.0 6082 +25792 CIZ1 CDKN1A interacting zinc finger protein 1 Novel U 0.007193164978644835 -0.23362024789251978 1.0 6083 +253935 ANGPTL5 angiopoietin like 5 Novel U 0.007190512182708303 -0.23364311948845146 1.0 6084 +63979 FIGNL1 fidgetin like 1 Novel U 0.007183141225526826 -0.23370666962887612 1.0 6085 +134510 UBLCP1 ubiquitin like domain containing CTD phosphatase 1 Novel U 0.007182705319546784 -0.23371042787703328 1.0 6086 +79675 FASTKD1 FAST kinase domains 1 Novel N 0.007181892159118026 -0.23371743869776698 1.0 6087 +23593 HEBP2 heme binding protein 2 Novel U 0.007177523087893949 -0.23375510749477388 1.0 6088 +335 APOA1 apolipoprotein A1 Novel U 0.007175469422768316 -0.2337728135679345 1.0 6089 +5694 PSMB6 proteasome 20S subunit beta 6 Novel U 0.0071749988809993006 -0.23377687043528028 1.0 6090 +70 ACTC1 actin alpha cardiac muscle 1 Novel U 0.007174058112327157 -0.23378498145529433 1.0 6091 +85508 SCRT2 scratch family transcriptional repressor 2 Novel U 0.007169053577668916 -0.23382812902384767 1.0 6092 +1261 CNGA3 cyclic nucleotide gated channel subunit alpha 3 Novel N 0.007168912677340396 -0.23382934382342427 1.0 6093 +60385 TSKS testis specific serine kinase substrate Novel U 0.007168893865626411 -0.23382950601227384 1.0 6094 +4878 NPPA natriuretic peptide A Novel U 0.007167402421427361 -0.23384236478840717 1.0 6095 +79801 SHCBP1 SHC binding and spindle associated 1 Novel U 0.007166900619104948 -0.23384669117469184 1.0 6096 +10675 CSPG5 chondroitin sulfate proteoglycan 5 Novel N 0.007166779493839851 -0.23384773547971444 1.0 6097 +9214 FCMR Fc mu receptor Novel U 0.007165036481751643 -0.23386276319731475 1.0 6098 +26278 SACS sacsin molecular chaperone Novel U 0.007164117973164763 -0.23387068229767588 1.0 6099 +5055 SERPINB2 serpin family B member 2 Novel U 0.007161868562178128 -0.23389007603183465 1.0 6100 +84978 FRMD5 FERM domain containing 5 Novel U 0.00715489131663375 -0.2339502317108334 1.0 6101 +5143 PDE4C phosphodiesterase 4C Novel U 0.007152662649955338 -0.2339694465939057 1.0 6102 +10488 CREB3 cAMP responsive element binding protein 3 Novel U 0.007152361519912709 -0.23397204284511486 1.0 6103 +51164 DCTN4 dynactin subunit 4 Novel U 0.007152312987831181 -0.23397246127389154 1.0 6104 +10815 CPLX1 complexin 1 Novel U 0.007151774502510001 -0.23397710392978205 1.0 6105 +51567 TDP2 tyrosyl-DNA phosphodiesterase 2 Novel U 0.007151155372450476 -0.23398244187996348 1.0 6106 +10495 ENOX2 ecto-NOX disulfide-thiol exchanger 2 Novel N 0.007142226625480144 -0.23405942280792308 1.0 6107 +9659 PDE4DIP phosphodiesterase 4D interacting protein Novel U 0.007141209487863438 -0.23406819225764058 1.0 6108 +9114 ATP6V0D1 ATPase H+ transporting V0 subunit d1 Novel N 0.0071394323388583895 -0.23408351429330648 1.0 6109 +3898 LAD1 ladinin 1 Novel U 0.007135275558625758 -0.23411935278225635 1.0 6110 +25946 ZNF385A zinc finger protein 385A Novel N 0.0071322999576766775 -0.23414500750436448 1.0 6111 +1 A1BG alpha-1-B glycoprotein Novel U 0.007132294186172018 -0.234145057264514 1.0 6112 +79029 AFG2B AFG2 AAA ATPase homolog B Novel N 0.0071307784777480095 -0.23415812523938037 1.0 6113 +23415 KCNH4 potassium voltage-gated channel subfamily H member 4 Novel N 0.007129954951819665 -0.23416522542828408 1.0 6114 +672 BRCA1 BRCA1 DNA repair associated Novel U 0.007128085886427793 -0.23418133993894966 1.0 6115 +55788 LMBRD1 LMBR1 domain containing 1 Novel U 0.007127785703782945 -0.23418392802198465 1.0 6116 +11041 B4GAT1 beta-1,4-glucuronyltransferase 1 Novel U 0.007124189554628973 -0.2342149329210902 1.0 6117 +2918 GRM8 glutamate metabotropic receptor 8 Novel N 0.007123492798579507 -0.23422094013883615 1.0 6118 +10531 PITRM1 pitrilysin metallopeptidase 1 Novel U 0.007122167011819704 -0.23423237066714941 1.0 6119 +391356 PTRHD1 peptidyl-tRNA hydrolase domain containing 1 Novel U 0.0071172469236502 -0.23427479016388172 1.0 6120 +389856 USP27X ubiquitin specific peptidase 27 X-linked Novel U 0.0071127164538803194 -0.23431385048983083 1.0 6121 +286336 FAM78A family with sequence similarity 78 member A Novel U 0.0071058627301432515 -0.23437294120155236 1.0 6122 +389197 C4orf50 chromosome 4 open reading frame 50 Novel U 0.007105225185773548 -0.23437843791428914 1.0 6123 +92345 NAF1 nuclear assembly factor 1 ribonucleoprotein Novel U 0.007100549684247025 -0.2344187486597257 1.0 6124 +5924 RASGRF2 Ras protein specific guanine nucleotide releasing factor 2 Novel U 0.007094915441431299 -0.2344673253795886 1.0 6125 +114790 STK11IP serine/threonine kinase 11 interacting protein Novel N 0.007094002288714878 -0.2344751983032712 1.0 6126 +8402 SLC25A11 solute carrier family 25 member 11 Novel U 0.007088892727355096 -0.23451925137995147 1.0 6127 +64770 CCDC14 coiled-coil domain containing 14 Novel N 0.007084869898854617 -0.23455393497799926 1.0 6128 +11194 ABCB8 ATP binding cassette subfamily B member 8 Novel U 0.0070833978961136 -0.23456662613582233 1.0 6129 +140545 RNF32 ring finger protein 32 Novel U 0.007082432863066227 -0.23457494635586498 1.0 6130 +492311 IGIP IgA inducing protein Novel U 0.007077051687125927 -0.23462134121045933 1.0 6131 +10209 EIF1 eukaryotic translation initiation factor 1 Novel N 0.007076756655269055 -0.23462388488497438 1.0 6132 +896 CCND3 cyclin D3 Novel U 0.007065843528307523 -0.23471797453083748 1.0 6133 +1952 CELSR2 cadherin EGF LAG seven-pass G-type receptor 2 Novel U 0.007065624538771647 -0.2347198625916977 1.0 6134 +9903 KLHL21 kelch like family member 21 Novel U 0.007064834587714523 -0.23472667330832142 1.0 6135 +115350 FCRL1 Fc receptor like 1 Novel N 0.0070645679779633005 -0.23472897193612668 1.0 6136 +84676 TRIM63 tripartite motif containing 63 Novel U 0.007061770257270256 -0.2347530930290234 1.0 6137 +9653 HS2ST1 heparan sulfate 2-O-sulfotransferase 1 Novel U 0.00706059614313557 -0.23476321588231053 1.0 6138 +344 APOC2 apolipoprotein C2 Novel U 0.007056793152602083 -0.2347960041045843 1.0 6139 +5741 PTH parathyroid hormone Novel U 0.007056629155355483 -0.2347974180387307 1.0 6140 +205 AK4 adenylate kinase 4 Novel N 0.007056232607684101 -0.23480083695157758 1.0 6141 +124583 CANT1 calcium activated nucleotidase 1 Novel U 0.0070538370160684715 -0.2348214910104501 1.0 6142 +131544 CRYBG3 crystallin beta-gamma domain containing 3 Novel U 0.007052696861104171 -0.23483132107814733 1.0 6143 +56895 AGPAT4 1-acylglycerol-3-phosphate O-acyltransferase 4 Novel U 0.0070526702299052195 -0.2348315506842068 1.0 6144 +3003 GZMK granzyme K Novel U 0.007049009711117538 -0.23486311055862433 1.0 6145 +389384 BNIP5 BCL2 interacting protein 5 Novel U 0.007048525948715903 -0.23486728141022462 1.0 6146 +24 ABCA4 ATP binding cassette subfamily A member 4 Novel N 0.0070484053147149535 -0.23486832147971787 1.0 6147 +768206 PRCD photoreceptor disc component Novel N 0.007046258067711962 -0.23488683438722863 1.0 6148 +6907 TBL1X transducin beta like 1 X-linked Novel U 0.007044261399815416 -0.2349040490476971 1.0 6149 +6748 SSR4 signal sequence receptor subunit 4 Novel U 0.007043828142031107 -0.23490778446391986 1.0 6150 +3837 KPNB1 karyopherin subunit beta 1 Novel U 0.0070389959459482175 -0.23494944618193916 1.0 6151 +51052 PRLH prolactin releasing hormone Novel U 0.007036175607138203 -0.2349737622813288 1.0 6152 +9804 TOMM20 translocase of outer mitochondrial membrane 20 Novel U 0.0070357404609792265 -0.2349775139785409 1.0 6153 +165082 ADGRF3 adhesion G protein-coupled receptor F3 Novel N 0.007031007570035127 -0.2350183195179989 1.0 6154 +60 ACTB actin beta Novel U 0.007030180963213634 -0.2350254462694219 1.0 6155 +27330 RPS6KA6 ribosomal protein S6 kinase A6 Novel N 0.0070295976005769634 -0.23503047584381315 1.0 6156 +79400 NOX5 NADPH oxidase 5 Novel N 0.007028965676207554 -0.23503592410262472 1.0 6157 +23229 ARHGEF9 Cdc42 guanine nucleotide exchange factor 9 Novel U 0.007028421217590197 -0.2350406182584496 1.0 6158 +10269 ZMPSTE24 zinc metallopeptidase STE24 Novel U 0.007003928882077726 -0.23525178369094685 1.0 6159 +362 AQP5 aquaporin 5 Novel U 0.007002128230675955 -0.2352673083570955 1.0 6160 +78997 GDAP1L1 ganglioside induced differentiation associated protein 1 like 1 Novel U 0.007000666440275761 -0.2352799114672366 1.0 6161 +1215 CMA1 chymase 1 Novel U 0.0069989864504419845 -0.2352943958262174 1.0 6162 +11346 SYNPO synaptopodin Novel U 0.00699596645079225 -0.23532043334035535 1.0 6163 +10221 TRIB1 tribbles pseudokinase 1 Novel U 0.006990180812298984 -0.23537031534748698 1.0 6164 +8662 EIF3B eukaryotic translation initiation factor 3 subunit B Novel U 0.006989560909379824 -0.235375659961028 1.0 6165 +84034 EMILIN2 elastin microfibril interfacer 2 Novel U 0.006988479134215599 -0.23538498669592847 1.0 6166 +84465 MEGF11 multiple EGF like domains 11 Novel U 0.006985479097315003 -0.23541085209734353 1.0 6167 +23424 TDRD7 tudor domain containing 7 Novel N 0.006985243300526619 -0.23541288506519892 1.0 6168 +57144 PAK5 p21 (RAC1) activated kinase 5 Novel N 0.006983753789725385 -0.23542572717216712 1.0 6169 +1363 CPE carboxypeptidase E Novel U 0.006983122940639049 -0.23543116616021662 1.0 6170 +91523 PCED1B PC-esterase domain containing 1B Novel U 0.006978638964069057 -0.23546982563600355 1.0 6171 +6590 SLPI secretory leukocyte peptidase inhibitor Novel U 0.006973759215293573 -0.23551189733880737 1.0 6172 +10103 TSPAN1 tetraspanin 1 Novel N 0.006973575571992317 -0.23551348065523367 1.0 6173 +649330 HNRNPCL3 heterogeneous nuclear ribonucleoprotein C like 3 Novel U 0.006973450095489639 -0.23551456247529703 1.0 6174 +2335 FN1 fibronectin 1 Novel U 0.006971980132517404 -0.235527236046857 1.0 6175 +8453 CUL2 cullin 2 Novel U 0.00697028372212043 -0.23554186197891588 1.0 6176 +92912 UBE2Q2 ubiquitin conjugating enzyme E2 Q2 Novel U 0.006964959204205571 -0.2355877683453283 1.0 6177 +7224 TRPC5 transient receptor potential cation channel subfamily C member 5 Novel N 0.0069623903411247115 -0.2356099162978263 1.0 6178 +105371045 PERCC1 proline and glutamate rich with coiled coil 1 Novel U 0.006962352531999319 -0.23561024227655186 1.0 6179 +7114 TMSB4X thymosin beta 4 X-linked Novel U 0.006958647670061045 -0.2356421844640635 1.0 6180 +79144 PPDPF pancreatic progenitor cell differentiation and proliferation factor Novel U 0.006957637048832307 -0.2356508977314752 1.0 6181 +4440 MSI1 musashi RNA binding protein 1 Novel N 0.006956753858948988 -0.23565851232476678 1.0 6182 +3087 HHEX hematopoietically expressed homeobox Novel U 0.006947175551505062 -0.23574109356463907 1.0 6183 +163882 CNST consortin, connexin sorting protein Novel U 0.006945480553360531 -0.235755707320689 1.0 6184 +8815 BANF1 BAF nuclear assembly factor 1 Novel U 0.006941666280571311 -0.2357885928151241 1.0 6185 +11333 PDAP1 PDGFA associated protein 1 Novel N 0.006936350936239503 -0.23583442008970665 1.0 6186 +89932 PAPLN papilin, proteoglycan like sulfated glycoprotein Novel U 0.006926508567856815 -0.23591927798230206 1.0 6187 +64374 SIL1 SIL1 nucleotide exchange factor Novel N 0.0069261888764465965 -0.23592203426395067 1.0 6188 +283748 PLA2G4D phospholipase A2 group IVD Novel U 0.006924280823939579 -0.23593848490960942 1.0 6189 +1879 EBF1 EBF transcription factor 1 Novel U 0.0069177102216807125 -0.23599513463446128 1.0 6190 +3037 HAS2 hyaluronan synthase 2 Novel U 0.0069138412482659135 -0.23602849174097493 1.0 6191 +5230 PGK1 phosphoglycerate kinase 1 Novel U 0.006908558165447048 -0.23607404086665124 1.0 6192 +57590 WDFY1 WD repeat and FYVE domain containing 1 Novel U 0.006907567413340766 -0.23608258282856065 1.0 6193 +5031 P2RY6 pyrimidinergic receptor P2Y6 Novel U 0.006893372834650051 -0.23620496414849704 1.0 6194 +1460 CSNK2B casein kinase 2 beta Novel U 0.006891689926660235 -0.2362194736669275 1.0 6195 +290 ANPEP alanyl aminopeptidase, membrane Novel U 0.0068908996545230345 -0.23622628715180552 1.0 6196 +23412 COMMD3 COMM domain containing 3 Novel U 0.006884770330751873 -0.2362791323083809 1.0 6197 +8816 DCAF5 DDB1 and CUL4 associated factor 5 Novel U 0.006883464498817216 -0.23629039079228947 1.0 6198 +134829 CLVS2 clavesin 2 Novel U 0.006880468695519012 -0.2363162196928784 1.0 6199 +26548 ITGB1BP2 integrin subunit beta 1 binding protein 2 Novel N 0.00687996239808383 -0.23632058483465174 1.0 6200 +4059 BCAM basal cell adhesion molecule (Lutheran blood group) Novel N 0.006876277515429361 -0.23635235476688368 1.0 6201 +29992 PILRA paired immunoglobin like type 2 receptor alpha Novel N 0.006876174855712863 -0.23635323986758885 1.0 6202 +79632 FAM184A family with sequence similarity 184 member A Novel U 0.006875038137309977 -0.2363630403063037 1.0 6203 +23224 SYNE2 spectrin repeat containing nuclear envelope protein 2 Novel U 0.006874244379514163 -0.23636988384346516 1.0 6204 +6304 SATB1 SATB homeobox 1 Novel U 0.006873319062520003 -0.23637786164383337 1.0 6205 +145497 LRRC74A leucine rich repeat containing 74A Novel U 0.006871123480792758 -0.23639679127856664 1.0 6206 +3208 HPCA hippocalcin Novel N 0.006870992374915332 -0.23639792163337892 1.0 6207 +9650 MTFR1 mitochondrial fission regulator 1 Novel U 0.006870103463006388 -0.2364055855602269 1.0 6208 +1263 PLK3 polo like kinase 3 Novel U 0.006869718813924845 -0.2364089018870681 1.0 6209 +4929 NR4A2 nuclear receptor subfamily 4 group A member 2 Novel U 0.006868529622431592 -0.23641915473273353 1.0 6210 +83894 TTC29 tetratricopeptide repeat domain 29 Novel N 0.00686482820099941 -0.236451067257253 1.0 6211 +4121 MAN1A1 mannosidase alpha class 1A member 1 Novel U 0.0068605772043418495 -0.23648771805142824 1.0 6212 +7805 LAPTM5 lysosomal protein transmembrane 5 Novel U 0.006856499315040417 -0.23652287636687652 1.0 6213 +9167 COX7A2L cytochrome c oxidase subunit 7A2 like Novel U 0.006855981028540174 -0.23652734487470523 1.0 6214 +136263 SSMEM1 serine rich single-pass membrane protein 1 Novel U 0.0068527594728816504 -0.23655512014316013 1.0 6215 +79803 HPS6 HPS6 biogenesis of lysosomal organelles complex 2 subunit 3 Novel U 0.006850380640745998 -0.23657562970691765 1.0 6216 +402665 IGLON5 IgLON family member 5 Novel U 0.006837947225832626 -0.23668282681093666 1.0 6217 +56848 SPHK2 sphingosine kinase 2 Novel U 0.0068338242416572294 -0.23671837392060832 1.0 6218 +403284 OR6C68 olfactory receptor family 6 subfamily C member 68 Novel U 0.006827609938356316 -0.23677195174472146 1.0 6219 +3737 KCNA2 potassium voltage-gated channel subfamily A member 2 Novel U 0.00682724682350487 -0.2367750824100111 1.0 6220 +30836 DNTTIP2 deoxynucleotidyltransferase terminal interacting protein 2 Novel N 0.006826729179207299 -0.23677954538096466 1.0 6221 +11072 DUSP14 dual specificity phosphatase 14 Novel U 0.006826344267361724 -0.23678286397327705 1.0 6222 +2790 GNG10 G protein subunit gamma 10 Novel N 0.0068251307995041395 -0.23679332612233744 1.0 6223 +576 ADGRB2 adhesion G protein-coupled receptor B2 Novel N 0.0068220044135318325 -0.2368202808668394 1.0 6224 +11043 MID2 midline 2 Novel U 0.006820292380023599 -0.23683504149658957 1.0 6225 +81035 COLEC12 collectin subfamily member 12 Novel U 0.006816447116876869 -0.23686819418041716 1.0 6226 +5190 PEX6 peroxisomal biogenesis factor 6 Novel U 0.006812544909881045 -0.23690183781671095 1.0 6227 +9759 HDAC4 histone deacetylase 4 Novel U 0.006806590730236049 -0.2369531729341505 1.0 6228 +2923 PDIA3 protein disulfide isomerase family A member 3 Novel U 0.006805981213348105 -0.2369584280025041 1.0 6229 +81689 ISCA1 iron-sulfur cluster assembly 1 Novel N 0.0067947689293626 -0.23705509688881246 1.0 6230 +10917 BTNL3 butyrophilin like 3 Novel U 0.006794267644484771 -0.23705941881384804 1.0 6231 +8771 TNFRSF6B TNF receptor superfamily member 6b Novel N 0.006794054310824278 -0.237061258111479 1.0 6232 +91408 BTF3L4 basic transcription factor 3 like 4 Novel U 0.006786776777321166 -0.23712400278149687 1.0 6233 +80739 MPIG6B megakaryocyte and platelet inhibitory receptor G6b Novel N 0.0067858619341707406 -0.23713189027958492 1.0 6234 +64241 ABCG8 ATP binding cassette subfamily G member 8 Novel U 0.006784656165335428 -0.23714228605002796 1.0 6235 +8722 CTSF cathepsin F Novel U 0.006781941688789653 -0.23716568943732436 1.0 6236 +2812 GP1BB glycoprotein Ib platelet subunit beta Novel U 0.0067760423194155005 -0.23721655199735744 1.0 6237 +85004 RERG RAS like estrogen regulated growth inhibitor Novel N 0.006769208499161486 -0.23727547110733016 1.0 6238 +3183 HNRNPC heterogeneous nuclear ribonucleoprotein C Novel N 0.006760548820809854 -0.23735013220788048 1.0 6239 +27238 GPKOW G-patch domain and KOW motifs Novel U 0.006757577502227837 -0.2373757500087284 1.0 6240 +3174 HNF4G hepatocyte nuclear factor 4 gamma Novel N 0.006757576760055288 -0.23737575640751332 1.0 6241 +1991 ELANE elastase, neutrophil expressed Novel U 0.006756390387927155 -0.2373859849454742 1.0 6242 +23272 TASOR transcription activation suppressor Novel U 0.006754828115747161 -0.23739945437881588 1.0 6243 +10385 BTN2A2 butyrophilin subfamily 2 member A2 Novel U 0.006751845621459573 -0.23742516853318216 1.0 6244 +7058 THBS2 thrombospondin 2 Novel U 0.0067512539645320155 -0.2374302696184149 1.0 6245 +79058 ASPSCR1 ASPSCR1 tether for SLC2A4, UBX domain containing Novel U 0.006751017011149068 -0.23743231255807518 1.0 6246 +79663 HSPBAP1 HSPB1 associated protein 1 Novel U 0.006738171614472645 -0.23754306164296318 1.0 6247 +116496 NIBAN1 niban apoptosis regulator 1 Novel U 0.006738100247692873 -0.23754367694553033 1.0 6248 +257202 GPX6 glutathione peroxidase 6 Novel U 0.006724328150569011 -0.23766241575849792 1.0 6249 +89894 TMEM116 transmembrane protein 116 Novel U 0.006719860601777614 -0.23770093359899774 1.0 6250 +8493 PPM1D protein phosphatase, Mg2+/Mn2+ dependent 1D Novel U 0.006716361977618613 -0.237731097667398 1.0 6251 +55239 OGFOD1 2-oxoglutarate and iron dependent oxygenase domain containing 1 Novel N 0.0067158270004067855 -0.23773571007744174 1.0 6252 +768239 PSAPL1 prosaposin like 1 Novel U 0.006711074312969091 -0.23777668629621815 1.0 6253 +7268 TTC4 tetratricopeptide repeat domain 4 Novel N 0.00671018385918638 -0.23778436351663063 1.0 6254 +80343 SEL1L2 SEL1L2 adaptor subunit of SYVN1 ubiquitin ligase Novel U 0.006708754401231647 -0.23779668786630706 1.0 6255 +139804 RBMXL3 RBMX like 3 Novel U 0.006707914817118453 -0.23780392650397353 1.0 6256 +94134 ARHGAP12 Rho GTPase activating protein 12 Novel U 0.00670306893933716 -0.23784570618141565 1.0 6257 +146909 KIF18B kinesin family member 18B Novel U 0.006700807705532994 -0.23786520184829443 1.0 6258 +9788 MTSS1 MTSS I-BAR domain containing 1 Novel U 0.006699554743265817 -0.23787600450608573 1.0 6259 +139189 DGKK diacylglycerol kinase kappa Novel U 0.006698686921539486 -0.2378834865998239 1.0 6260 +134553 C5orf24 chromosome 5 open reading frame 24 Novel U 0.006696573942901898 -0.23790170405595976 1.0 6261 +714 C1QC complement C1q C chain Novel U 0.006678260185140089 -0.23805959967912127 1.0 6262 +25847 ANAPC13 anaphase promoting complex subunit 13 Novel U 0.006678120211660244 -0.23806080648769185 1.0 6263 +7434 VIPR2 vasoactive intestinal peptide receptor 2 Novel N 0.0066777735652584665 -0.23806379516704085 1.0 6264 +29930 PCDHB1 protocadherin beta 1 Novel U 0.006673807426396716 -0.23809799000434653 1.0 6265 +55727 BTBD7 BTB domain containing 7 Novel U 0.006673780011403401 -0.23809822636804154 1.0 6266 +11156 PTP4A3 protein tyrosine phosphatase 4A3 Novel U 0.00667223884513929 -0.23811151383262594 1.0 6267 +10668 CGRRF1 cell growth regulator with ring finger domain 1 Novel N 0.006672185685432357 -0.2381119721593747 1.0 6268 +23373 CRTC1 CREB regulated transcription coactivator 1 Novel N 0.0066652579782415546 -0.2381717007338267 1.0 6269 +80304 WDCP WD repeat and coiled coil containing Novel U 0.006663658258225073 -0.2381854930309714 1.0 6270 +79671 NLRX1 NLR family member X1 Novel U 0.00666148172181114 -0.23820425846283313 1.0 6271 +9144 SYNGR2 synaptogyrin 2 Novel U 0.006658188340158849 -0.23823265299305793 1.0 6272 +10550 ARL6IP5 ADP ribosylation factor like GTPase 6 interacting protein 5 Novel U 0.0066548132358529724 -0.23826175211102937 1.0 6273 +403244 OR2T35 olfactory receptor family 2 subfamily T member 35 Novel U 0.006651399769245179 -0.2382911819770453 1.0 6274 +54625 PARP14 poly(ADP-ribose) polymerase family member 14 Novel U 0.006649835234962023 -0.23830467091354918 1.0 6275 +79888 LPCAT1 lysophosphatidylcholine acyltransferase 1 Novel U 0.006648447968595454 -0.2383166315002452 1.0 6276 +10216 PRG4 proteoglycan 4 Novel U 0.0066469130149641375 -0.2383298654014081 1.0 6277 +643596 RNF224 ring finger protein 224 Novel U 0.006646183256194733 -0.23833615715852052 1.0 6278 +3956 LGALS1 galectin 1 Novel U 0.006644156993468552 -0.23835362697656662 1.0 6279 +202658 TRIM39-RPP21 TRIM39-RPP21 readthrough Novel U 0.00663696279255842 -0.23841565317843239 1.0 6280 +5138 PDE2A phosphodiesterase 2A Novel U 0.006635556034088959 -0.2384277818200832 1.0 6281 +8996 NOL3 nucleolar protein 3 Novel U 0.006633902850342653 -0.23844203506516912 1.0 6282 +3754 KCNF1 potassium voltage-gated channel modifier subfamily F member 1 Novel N 0.006632463334825116 -0.23845444612807867 1.0 6283 +645027 EVPLL envoplakin like Novel U 0.006631144145625679 -0.2384658197742425 1.0 6284 +29920 PYCR2 pyrroline-5-carboxylate reductase 2 Novel U 0.006630986595332688 -0.23846717812472495 1.0 6285 +5257 PHKB phosphorylase kinase regulatory subunit beta Novel U 0.006622491403878469 -0.23854042106950918 1.0 6286 +23608 MKRN1 makorin ring finger protein 1 Novel U 0.006621690349459465 -0.23854732751592617 1.0 6287 +4814 NINJ1 ninjurin 1 Novel U 0.006619491480857732 -0.23856628548908687 1.0 6288 +285782 CAGE1 cancer antigen 1 Novel U 0.006618180830251227 -0.23857758551811167 1.0 6289 +9971 NR1H4 nuclear receptor subfamily 1 group H member 4 Novel U 0.006616897940577894 -0.23858864620085374 1.0 6290 +3927 LASP1 LIM and SH3 protein 1 Novel U 0.006614749626737758 -0.23860716830630835 1.0 6291 +637 BID BH3 interacting domain death agonist Novel U 0.006613365865758236 -0.23861909867062844 1.0 6292 +22832 CEP162 centrosomal protein 162 Novel N 0.006613167733551873 -0.23862080690596707 1.0 6293 +5277 PIGA phosphatidylinositol glycan anchor biosynthesis class A Novel U 0.00661201894253434 -0.2386307114310763 1.0 6294 +10376 TUBA1B tubulin alpha 1b Novel U 0.00661113477153017 -0.23863833448329203 1.0 6295 +338751 OR52L1 olfactory receptor family 52 subfamily L member 1 Novel U 0.006610792038014764 -0.23864128942693044 1.0 6296 +8900 CCNA1 cyclin A1 Novel U 0.006602955242822455 -0.23870885588033516 1.0 6297 +92737 DNER delta/notch like EGF repeat containing Novel U 0.006601877106109991 -0.23871815124561638 1.0 6298 +5354 PLP1 proteolipid protein 1 Novel U 0.006601314523733348 -0.23872300165895563 1.0 6299 +8761 PABPC4 poly(A) binding protein cytoplasmic 4 Novel U 0.006599511475128762 -0.2387385469930544 1.0 6300 +3145 HMBS hydroxymethylbilane synthase Novel U 0.006595273492576738 -0.2387750855835885 1.0 6301 +66036 MTMR9 myotubularin related protein 9 Novel N 0.006595016386299924 -0.23877730227534147 1.0 6302 +57186 RALGAPA2 Ral GTPase activating protein catalytic subunit alpha 2 Novel U 0.006593481547436463 -0.238790535187011 1.0 6303 +705 BYSL bystin like Novel U 0.006592551086995221 -0.23879855733260816 1.0 6304 +22989 MYH15 myosin heavy chain 15 Novel U 0.006589528148216965 -0.23882462018701411 1.0 6305 +733 C8G complement C8 gamma chain Novel U 0.00658749175298655 -0.2388421773644155 1.0 6306 +1917 EEF1A2 eukaryotic translation elongation factor 1 alpha 2 Novel U 0.006585573122857675 -0.23885871920709761 1.0 6307 +10280 SIGMAR1 sigma non-opioid intracellular receptor 1 Novel U 0.00658302070253666 -0.23888072539514482 1.0 6308 +83930 STARD3NL STARD3 N-terminal like Novel U 0.006577016108346343 -0.2389324951713886 1.0 6309 +728361 OVOL3 ovo like zinc finger 3 Novel U 0.006575680695712861 -0.23894400869104326 1.0 6310 +94233 OPN4 opsin 4 Novel N 0.006573406036611401 -0.23896362010673283 1.0 6311 +83468 GLT8D2 glycosyltransferase 8 domain containing 2 Novel U 0.006571919287014174 -0.23897643840744384 1.0 6312 +729966 CIST1 colon, intestine and stomach enriched 1 Novel U 0.0065677791348341475 -0.23901213353440529 1.0 6313 +5079 PAX5 paired box 5 Novel N 0.00656552925248075 -0.23903153133254423 1.0 6314 +8532 CPZ carboxypeptidase Z Novel N 0.006563309651109844 -0.23905066805730538 1.0 6315 +2014 EMP3 epithelial membrane protein 3 (MAM blood group) Novel N 0.006562104809173365 -0.23906105583630985 1.0 6316 +26001 RNF167 ring finger protein 167 Novel U 0.006559092711698999 -0.2390870252203065 1.0 6317 +10659 CELF2 CUGBP Elav-like family member 2 Novel U 0.006553421445498689 -0.2391359211444778 1.0 6318 +7262 PHLDA2 pleckstrin homology like domain family A member 2 Novel N 0.006549479257589752 -0.2391699094839872 1.0 6319 +3899 AFF3 ALF transcription elongation factor 3 Novel U 0.0065484704040716215 -0.23917860751073822 1.0 6320 +3419 IDH3A isocitrate dehydrogenase (NAD(+)) 3 catalytic subunit alpha Novel N 0.00654806976487569 -0.23918206169945946 1.0 6321 +7107 GPR137B G protein-coupled receptor 137B Novel U 0.00654767980327109 -0.2391854238292511 1.0 6322 +158983 H2BW1 H2B.W histone 1 Novel U 0.00654597900826903 -0.2392000875640352 1.0 6323 +150681 OR6B3 olfactory receptor family 6 subfamily B member 3 Novel U 0.006540092845031855 -0.2392508362647908 1.0 6324 +7056 THBD thrombomodulin Novel U 0.006536427775037522 -0.2392824353783213 1.0 6325 +2100 ESR2 estrogen receptor 2 Novel U 0.006536036854193842 -0.23928580577837916 1.0 6326 +91663 MYADM myeloid associated differentiation marker Novel U 0.006535783171264817 -0.23928799295507355 1.0 6327 +6391 SDHC succinate dehydrogenase complex subunit C Novel U 0.006534220728615297 -0.2393014638581514 1.0 6328 +85403 EAF1 ELL associated factor 1 Novel N 0.006533815240409139 -0.23930495985355707 1.0 6329 +219482 OR5M3 olfactory receptor family 5 subfamily M member 3 Novel U 0.006533403373236519 -0.23930851084646232 1.0 6330 +4594 MMUT methylmalonyl-CoA mutase Novel U 0.006531824483254478 -0.23932212355341523 1.0 6331 +10096 ACTR3 actin related protein 3 Novel U 0.006524620970077144 -0.23938423004280315 1.0 6332 +3835 KIF22 kinesin family member 22 Novel U 0.006522582528633169 -0.23940180486203252 1.0 6333 +221184 CPNE2 copine 2 Novel U 0.006518015762753972 -0.23944117812194493 1.0 6334 +5137 PDE1C phosphodiesterase 1C Novel N 0.0065168227030180746 -0.2394514643184164 1.0 6335 +5664 PSEN2 presenilin 2 Novel U 0.006516240389019536 -0.23945648485177012 1.0 6336 +8266 UBL4A ubiquitin like 4A Novel U 0.006515055862029588 -0.23946669748151336 1.0 6337 +7982 ST7 suppression of tumorigenicity 7 Novel U 0.006513881663754238 -0.2394768210602356 1.0 6338 +91653 BOC BOC cell adhesion associated, oncogene regulated Novel U 0.00651224511313574 -0.2394909308995763 1.0 6339 +221458 KIF6 kinesin family member 6 Novel U 0.006510214122143789 -0.239508441483285 1.0 6340 +144568 A2ML1 alpha-2-macroglobulin like 1 Novel U 0.0065101288138010955 -0.23950917698574745 1.0 6341 +27065 NSG1 neuronal vesicle trafficking associated 1 Novel N 0.006509088553221345 -0.23951814579458647 1.0 6342 +57414 RHBDD2 rhomboid domain containing 2 Novel U 0.006508646903355599 -0.23952195356477096 1.0 6343 +57089 ENTPD7 ectonucleoside triphosphate diphosphohydrolase 7 Novel N 0.0065081464963379874 -0.239526267921164 1.0 6344 +391123 VSIG8 V-set and immunoglobulin domain containing 8 Novel U 0.006502725286253842 -0.23957300793791309 1.0 6345 +2212 FCGR2A Fc gamma receptor IIa Novel U 0.006502689176110066 -0.23957331926853828 1.0 6346 +80149 ZC3H12A zinc finger CCCH-type containing 12A Novel U 0.00649706789360008 -0.23962178424860547 1.0 6347 +51807 TUBA8 tubulin alpha 8 Novel N 0.006495240291843324 -0.23963754127247938 1.0 6348 +442572 SPDYE21 speedy/RINGO cell cycle regulator family member E21 Novel U 0.006493196755926871 -0.23965516001469375 1.0 6349 +7089 TLE2 TLE family member 2, transcriptional corepressor Novel N 0.006492872149373401 -0.2396579586732055 1.0 6350 +23510 KCTD2 potassium channel tetramerization domain containing 2 Novel U 0.006491129308369702 -0.23967298491576747 1.0 6351 +169355 IDO2 indoleamine 2,3-dioxygenase 2 Novel N 0.0064891145510700765 -0.23969035553754162 1.0 6352 +898 CCNE1 cyclin E1 Novel N 0.0064883076166225755 -0.23969731267976746 1.0 6353 +10090 UST uronyl 2-sulfotransferase Novel N 0.006486580445608667 -0.23971220382046587 1.0 6354 +54432 YIPF1 Yip1 domain family member 1 Novel U 0.006486225248678185 -0.23971526621986053 1.0 6355 +729759 OR4F29 olfactory receptor family 4 subfamily F member 29 Novel U 0.006485622169414318 -0.2397204657849865 1.0 6356 +3972 LHB luteinizing hormone subunit beta Novel N 0.006483183027391041 -0.23974149532216582 1.0 6357 +7328 UBE2H ubiquitin conjugating enzyme E2 H Novel U 0.006483100491975147 -0.23974220691730072 1.0 6358 +2199 FBLN2 fibulin 2 Novel U 0.0064802125558305656 -0.23976710582025282 1.0 6359 +23139 MAST2 microtubule associated serine/threonine kinase 2 Novel U 0.006476992590516386 -0.23979486737724473 1.0 6360 +100132074 FOXO6 forkhead box O6 Novel U 0.006476266970675414 -0.23980112344978097 1.0 6361 +389073 C2orf80 chromosome 2 open reading frame 80 Novel U 0.006471611727251635 -0.23984125953604604 1.0 6362 +10146 G3BP1 G3BP stress granule assembly factor 1 Novel U 0.006470849125673588 -0.23984783445381858 1.0 6363 +23215 PRRC2C proline rich coiled-coil 2C Novel N 0.006468655501295103 -0.239866747212889 1.0 6364 +51194 IPO11 importin 11 Novel U 0.006466682901118123 -0.23988375436883394 1.0 6365 +122742 OR4L1 olfactory receptor family 4 subfamily L member 1 Novel U 0.006465068474647335 -0.23989767346053364 1.0 6366 +2850 GPR27 G protein-coupled receptor 27 Novel N 0.006459780236248617 -0.23994326703604407 1.0 6367 +51629 SLC25A39 solute carrier family 25 member 39 Novel N 0.006457977911439614 -0.2399588061297985 1.0 6368 +10713 USP39 ubiquitin specific peptidase 39 Novel N 0.006457670103663297 -0.23996145995438695 1.0 6369 +23334 SZT2 SZT2 subunit of KICSTOR complex Novel U 0.006455952593105242 -0.239976267805587 1.0 6370 +55160 ARHGEF10L Rho guanine nucleotide exchange factor 10 like Novel U 0.006455039021267352 -0.23998414434280688 1.0 6371 +7812 CSDE1 cold shock domain containing E1 Novel U 0.006452390566940192 -0.24000697850670927 1.0 6372 +100527949 GIMAP1-GIMAP5 GIMAP1-GIMAP5 readthrough Novel U 0.006448050002544292 -0.24004440152655462 1.0 6373 +54850 FBXL12 F-box and leucine rich repeat protein 12 Novel U 0.006447544826753578 -0.2400487569978521 1.0 6374 +656 BMP8B bone morphogenetic protein 8b Novel N 0.006445345173973286 -0.24006772173196078 1.0 6375 +8530 CST7 cystatin F Novel N 0.006443823084952999 -0.2400808447183785 1.0 6376 +5603 MAPK13 mitogen-activated protein kinase 13 Novel U 0.006443705386759894 -0.2400818594762336 1.0 6377 +24140 FTSJ1 FtsJ RNA 2'-O-methyltransferase 1 Novel U 0.006443191719409729 -0.2400862881591619 1.0 6378 +23650 TRIM29 tripartite motif containing 29 Novel U 0.006441493874272124 -0.24010092646111608 1.0 6379 +9488 PIGB phosphatidylinositol glycan anchor biosynthesis class B Novel U 0.00643828053270357 -0.2401286309101973 1.0 6380 +124905693 LOC124905693 FAM231A/C-like protein LOC102723383 Novel U 0.006438226423681076 -0.24012909742165478 1.0 6381 +8669 EIF3J eukaryotic translation initiation factor 3 subunit J Novel N 0.006436521749060993 -0.24014379460531998 1.0 6382 +255967 PAN3 poly(A) specific ribonuclease subunit PAN3 Novel U 0.006434772941686307 -0.24015887228810945 1.0 6383 +79038 ZFYVE21 zinc finger FYVE-type containing 21 Novel U 0.006434606759253767 -0.2401603050622613 1.0 6384 +23022 PALLD palladin, cytoskeletal associated protein Novel U 0.006434344258937475 -0.24016256825977433 1.0 6385 +4595 MUTYH mutY DNA glycosylase Novel U 0.006434088063025798 -0.24016477710263728 1.0 6386 +5042 PABPC3 poly(A) binding protein cytoplasmic 3 Novel U 0.006432050878118079 -0.240182341088395 1.0 6387 +221191 PRSS54 serine protease 54 Novel U 0.0064304885767717136 -0.24019581077320024 1.0 6388 +55768 NGLY1 N-glycanase 1 Novel U 0.006430191453309711 -0.24019837248089557 1.0 6389 +3680 ITGA9 integrin subunit alpha 9 Novel N 0.006429560887484641 -0.24020380902675298 1.0 6390 +4239 MFAP4 microfibril associated protein 4 Novel U 0.006428191578357844 -0.24021561479161502 1.0 6391 +2160 F11 coagulation factor XI Novel U 0.00642573232021328 -0.24023681776384503 1.0 6392 +7918 GPANK1 G-patch domain and ankyrin repeats 1 Novel U 0.006424628157802446 -0.24024633751474475 1.0 6393 +1647 GADD45A growth arrest and DNA damage inducible alpha Novel U 0.006421818165407295 -0.24027056441050706 1.0 6394 +22888 UBOX5 U-box domain containing 5 Novel U 0.006419631105015846 -0.24028942057688707 1.0 6395 +5529 PPP2R5E protein phosphatase 2 regulatory subunit B'epsilon Novel U 0.006417384249654729 -0.24030879227722357 1.0 6396 +5589 PRKCSH PRKCSH beta subunit of glucosidase II Novel U 0.006415698472692587 -0.2403233265310567 1.0 6397 +378925 RNF148 ring finger protein 148 Novel U 0.006414211359333793 -0.24033614796800876 1.0 6398 +4332 MNDA myeloid cell nuclear differentiation antigen Novel U 0.006414042250822031 -0.24033760596992154 1.0 6399 +80206 FHOD3 formin homology 2 domain containing 3 Novel U 0.006407285764923949 -0.24039585832670898 1.0 6400 +222068 TMED4 transmembrane p24 trafficking protein 4 Novel U 0.006405081053816756 -0.24041486667216647 1.0 6401 +56269 IRGC immunity related GTPase cinema Novel U 0.006401973683724743 -0.24044165746755938 1.0 6402 +81037 CLPTM1L CLPTM1 like Novel U 0.006400617732812031 -0.24045334806198154 1.0 6403 +10814 CPLX2 complexin 2 Novel U 0.006399574973501465 -0.2404623384141141 1.0 6404 +56474 CTPS2 CTP synthase 2 Novel N 0.00639883554169338 -0.24046871356921015 1.0 6405 +55625 ZDHHC7 zinc finger DHHC-type palmitoyltransferase 7 Novel U 0.006397423229660285 -0.2404808900919896 1.0 6406 +72 ACTG2 actin gamma 2, smooth muscle Novel U 0.006396498917164161 -0.24048885923188268 1.0 6407 +4312 MMP1 matrix metallopeptidase 1 Novel U 0.0063936192572496536 -0.24051368677970808 1.0 6408 +283431 GAS2L3 growth arrest specific 2 like 3 Novel U 0.006392834620524641 -0.2405204516777843 1.0 6409 +27175 TUBG2 tubulin gamma 2 Novel U 0.006390346271143257 -0.24054190546576856 1.0 6410 +23136 EPB41L3 erythrocyte membrane protein band 4.1 like 3 Novel U 0.006385775876498059 -0.2405813100117926 1.0 6411 +8189 SYMPK symplekin scaffold protein Novel U 0.006384386454674681 -0.24059328918217854 1.0 6412 +57124 CD248 CD248 molecule Novel U 0.006383114442504604 -0.24060425608241146 1.0 6413 +284427 SLC25A41 solute carrier family 25 member 41 Novel U 0.006381896447987248 -0.24061475725894912 1.0 6414 +9217 VAPB VAMP associated protein B and C Novel U 0.006380196606956417 -0.24062941276888486 1.0 6415 +1144 CHRND cholinergic receptor nicotinic delta subunit Novel U 0.00637894459283911 -0.24064020725201773 1.0 6416 +56704 JPH1 junctophilin 1 Novel N 0.006378435427196816 -0.24064459712259637 1.0 6417 +9778 KIAA0232 KIAA0232 Novel U 0.006375829254300172 -0.24066706674892505 1.0 6418 +2596 GAP43 growth associated protein 43 Novel U 0.006375285950326682 -0.24067175094976334 1.0 6419 +23252 OTUD3 OTU deubiquitinase 3 Novel U 0.006371705546571114 -0.24070262009685528 1.0 6420 +440730 TRIM67 tripartite motif containing 67 Novel U 0.006370877306557487 -0.24070976092916177 1.0 6421 +57661 PHRF1 PHD and ring finger domains 1 Novel U 0.00637048429812718 -0.24071314932775362 1.0 6422 +8661 EIF3A eukaryotic translation initiation factor 3 subunit A Novel U 0.006370325202639247 -0.24071452100043464 1.0 6423 +219972 MPEG1 macrophage expressed 1 Novel N 0.006369026057612568 -0.240725721831866 1.0 6424 +55107 ANO1 anoctamin 1 Novel U 0.006366487496148565 -0.24074760853308297 1.0 6425 +131873 COL6A6 collagen type VI alpha 6 chain Novel U 0.006363669532069326 -0.24077190415826952 1.0 6426 +55787 TXLNG taxilin gamma Novel N 0.0063619521555464305 -0.24078671085385936 1.0 6427 +4063 LY9 lymphocyte antigen 9 Novel U 0.006359842886293208 -0.24080489632881674 1.0 6428 +8451 CUL4A cullin 4A Novel U 0.006358893924723519 -0.24081307798548993 1.0 6429 +92181 UBTD2 ubiquitin domain containing 2 Novel U 0.0063585371362185426 -0.2408161541069535 1.0 6430 +57134 MAN1C1 mannosidase alpha class 1C member 1 Novel N 0.006353196894984541 -0.24086219603501885 1.0 6431 +636 BICD1 BICD cargo adaptor 1 Novel U 0.006352355240005866 -0.2408694525270547 1.0 6432 +252839 TMEM9 transmembrane protein 9 Novel U 0.006350291065190286 -0.24088724921155055 1.0 6433 +284110 GSDMA gasdermin A Novel N 0.006349707272617538 -0.24089228249271924 1.0 6434 +57583 TMEM181 transmembrane protein 181 Novel U 0.006346647939134032 -0.24091865913115248 1.0 6435 +3925 STMN1 stathmin 1 Novel U 0.0063433362406449785 -0.24094721158354665 1.0 6436 +51447 IP6K2 inositol hexakisphosphate kinase 2 Novel U 0.006340001765676165 -0.2409759604077893 1.0 6437 +84826 SFT2D3 SFT2 domain containing 3 Novel U 0.006336412910554299 -0.24100690241997894 1.0 6438 +51501 HIKESHI heat shock protein nuclear import factor hikeshi Novel U 0.006335758914243902 -0.241012540976321 1.0 6439 +2259 FGF14 fibroblast growth factor 14 Novel N 0.006335726506805848 -0.24101282038334895 1.0 6440 +728392 LOC728392 uncharacterized LOC728392 Novel U 0.0063346181254501375 -0.2410223765087022 1.0 6441 +11047 ADRM1 ADRM1 26S proteasome ubiquitin receptor Novel N 0.006332745640510529 -0.2410385205016634 1.0 6442 +3838 KPNA2 karyopherin subunit alpha 2 Novel U 0.006332283780797855 -0.24104250251497242 1.0 6443 +9915 ARNT2 aryl hydrocarbon receptor nuclear translocator 2 Novel U 0.006332113002398818 -0.241043974914143 1.0 6444 +60401 EDA2R ectodysplasin A2 receptor Novel U 0.006330862889085785 -0.24105475300912227 1.0 6445 +221477 C6orf89 chromosome 6 open reading frame 89 Novel U 0.00632911021069805 -0.24106986406660333 1.0 6446 +57003 CCDC47 coiled-coil domain containing 47 Novel U 0.006323102375842126 -0.24112166178287572 1.0 6447 +26155 NOC2L NOC2 like nucleolar associated transcriptional repressor Novel U 0.006321334640783383 -0.24113690265437324 1.0 6448 +728310 GOLGA6L7 golgin A6 family like 7 Novel U 0.006321096839632728 -0.24113895290322765 1.0 6449 +6924 ELOA elongin A Novel N 0.006319584057443856 -0.24115199564898887 1.0 6450 +9816 URB2 URB2 ribosome biogenesis homolog Novel U 0.006319021002000642 -0.24115685014096352 1.0 6451 +9722 NOS1AP nitric oxide synthase 1 adaptor protein Novel U 0.006317430717109747 -0.24117056109133855 1.0 6452 +8516 ITGA8 integrin subunit alpha 8 Novel U 0.006316653338994576 -0.2411772634078988 1.0 6453 +6938 TCF12 transcription factor 12 Novel U 0.006314863305781274 -0.24119269652727113 1.0 6454 +163183 SYNE4 spectrin repeat containing nuclear envelope family member 4 Novel N 0.006312501731573968 -0.24121305729844406 1.0 6455 +7157 TP53 tumor protein p53 Novel U 0.0063120600719057335 -0.24121686515314258 1.0 6456 +4048 LTA4H leukotriene A4 hydrolase Novel N 0.006311651760912318 -0.24122038548575742 1.0 6457 +8841 HDAC3 histone deacetylase 3 Novel U 0.006310731503094155 -0.2412283196674561 1.0 6458 +10060 ABCC9 ATP binding cassette subfamily C member 9 Novel U 0.00630878544292998 -0.24124509800352062 1.0 6459 +283420 CLEC9A C-type lectin domain containing 9A Novel U 0.006307987563398732 -0.24125197707702553 1.0 6460 +5719 PSMD13 proteasome 26S subunit, non-ATPase 13 Novel U 0.00630712654164238 -0.24125940054350048 1.0 6461 +81552 VOPP1 VOPP1 WW domain binding protein Novel U 0.00630267724239276 -0.24129776104202777 1.0 6462 +81614 NIPA2 NIPA magnesium transporter 2 Novel U 0.0063023910292725575 -0.24130022868409 1.0 6463 +112770 GLMP glycosylated lysosomal membrane protein Novel N 0.006299194148790765 -0.2413277912107113 1.0 6464 +79774 GRTP1 growth hormone regulated TBC protein 1 Novel U 0.006298955879269161 -0.2413298454977169 1.0 6465 +79345 OR51B2 olfactory receptor family 51 subfamily B member 2 Novel U 0.006298084631545694 -0.2413373571293555 1.0 6466 +1459 CSNK2A2 casein kinase 2 alpha 2 Novel N 0.006294215943768125 -0.24137071177319216 1.0 6467 +143630 UBQLNL ubiquilin like Novel U 0.006292123517445447 -0.2413887520335492 1.0 6468 +6302 TSPAN31 tetraspanin 31 Novel N 0.006291705702802218 -0.24139235430372866 1.0 6469 +6253 RTN2 reticulon 2 Novel N 0.006290471744792205 -0.24140299311262192 1.0 6470 +80127 BBOF1 basal body orientation factor 1 Novel U 0.006286773781788204 -0.24143487581963044 1.0 6471 +5175 PECAM1 platelet and endothelial cell adhesion molecule 1 Novel U 0.006286074163210421 -0.24144090771722088 1.0 6472 +25764 HYPK huntingtin interacting protein K Novel N 0.006282188745554003 -0.24147440660096073 1.0 6473 +256987 SERINC5 serine incorporator 5 Novel N 0.006280432636947547 -0.2414895472327394 1.0 6474 +387263 C6orf120 chromosome 6 open reading frame 120 Novel U 0.006279117290950845 -0.24150088774398365 1.0 6475 +81790 RNF170 ring finger protein 170 Novel U 0.006277381681707223 -0.24151585163652012 1.0 6476 +9794 MAML1 mastermind like transcriptional coactivator 1 Novel N 0.006276602177773564 -0.24152257228123775 1.0 6477 +2817 GPC1 glypican 1 Novel N 0.006275753600005196 -0.24152988845945086 1.0 6478 +8533 COPS3 COP9 signalosome subunit 3 Novel N 0.006275048888984222 -0.24153596426253032 1.0 6479 +5355 PLP2 proteolipid protein 2 Novel N 0.006270592681742208 -0.24157438431965708 1.0 6480 +10094 ARPC3 actin related protein 2/3 complex subunit 3 Novel U 0.0062622605548706325 -0.24164622137143854 1.0 6481 +79956 ERMP1 endoplasmic reticulum metallopeptidase 1 Novel U 0.0062589085999914815 -0.2416751209021267 1.0 6482 +9456 HOMER1 homer scaffold protein 1 Novel N 0.006252876570850709 -0.24172712721412987 1.0 6483 +3933 LCN1 lipocalin 1 Novel N 0.006252119860919393 -0.24173365133592462 1.0 6484 +2194 FASN fatty acid synthase Novel U 0.006251227731727804 -0.24174134300120043 1.0 6485 +6678 SPARC secreted protein acidic and cysteine rich Novel U 0.0062506818393144445 -0.24174604951877632 1.0 6486 +6189 RPS3A ribosomal protein S3A Novel N 0.0062493967228864685 -0.24175712939991645 1.0 6487 +8174 MADCAM1 mucosal vascular addressin cell adhesion molecule 1 Novel U 0.006248548828158321 -0.24176443968916556 1.0 6488 +10161 LPAR6 lysophosphatidic acid receptor 6 Novel N 0.006248316785923624 -0.24176644028640634 1.0 6489 +174 AFP alpha fetoprotein Novel U 0.006247604169102952 -0.24177258425087497 1.0 6490 +9972 NUP153 nucleoporin 153 Novel U 0.0062406449816082175 -0.24183258423888782 1.0 6491 +11277 TREX1 three prime repair exonuclease 1 Novel U 0.006237074211252129 -0.2418633703297532 1.0 6492 +5771 PTPN2 protein tyrosine phosphatase non-receptor type 2 Novel U 0.006237007446386922 -0.24186394595601918 1.0 6493 +56300 IL36G interleukin 36 gamma Novel N 0.0062328540661415665 -0.2418997551313177 1.0 6494 +114803 MYSM1 Myb like, SWIRM and MPN domains 1 Novel U 0.0062328103831022184 -0.24190013175313443 1.0 6495 +5790 PTPRCAP protein tyrosine phosphatase receptor type C associated protein Novel N 0.006228034073062004 -0.24194131163877128 1.0 6496 +26960 NBEA neurobeachin Novel N 0.0062279830855779435 -0.24194175123727826 1.0 6497 +845 CASQ2 calsequestrin 2 Novel U 0.006218126134319477 -0.24202673485897241 1.0 6498 +2310 FOXO3B forkhead box O3B Novel U 0.006217274669090365 -0.24203407593198975 1.0 6499 +9562 MINPP1 multiple inositol-polyphosphate phosphatase 1 Novel U 0.006216464155163224 -0.24204106393539523 1.0 6500 +6248 RSC1A1 regulator of solute carriers 1 Novel U 0.00621635222672884 -0.24204202894815377 1.0 6501 +6556 SLC11A1 solute carrier family 11 member 1 Novel U 0.006214506982965902 -0.242057938076014 1.0 6502 +79101 TAF1D TATA-box binding protein associated factor, RNA polymerase I subunit D Novel U 0.006212712716921286 -0.24207340768956448 1.0 6503 +4883 NPR3 natriuretic peptide receptor 3 Novel N 0.006211613472991544 -0.2420828850348232 1.0 6504 +1965 EIF2S1 eukaryotic translation initiation factor 2 subunit alpha Novel U 0.006211128910995171 -0.24208706278028497 1.0 6505 +727957 MROH1 maestro heat like repeat family member 1 Novel U 0.0062104294200695945 -0.24209309357729705 1.0 6506 +53836 GPR87 G protein-coupled receptor 87 Novel U 0.006201803967224789 -0.24216745959598604 1.0 6507 +10100 TSPAN2 tetraspanin 2 Novel U 0.006199132004789264 -0.24219049643961524 1.0 6508 +56965 PARP6 poly(ADP-ribose) polymerase family member 6 Novel N 0.006196065198993195 -0.242216937502044 1.0 6509 +123720 WHAMM WASP homolog associated with actin, golgi membranes and microtubules Novel U 0.00619072402064965 -0.24226298750958147 1.0 6510 +9681 DEPDC5 DEP domain containing 5, GATOR1 subcomplex subunit Novel U 0.006187774521799285 -0.24228841718737068 1.0 6511 +128025 WDR64 WD repeat domain 64 Novel U 0.006186499948344044 -0.2422994061702216 1.0 6512 +84643 KIF2B kinesin family member 2B Novel U 0.006183509079388919 -0.2423251925284123 1.0 6513 +9735 KNTC1 kinetochore associated 1 Novel N 0.006182725713106203 -0.24233194647312328 1.0 6514 +4069 LYZ lysozyme Novel N 0.00618255609245937 -0.2423334088905081 1.0 6515 +9702 CEP57 centrosomal protein 57 Novel U 0.006182443962013043 -0.2423343756449519 1.0 6516 +133619 PRRC1 proline rich coiled-coil 1 Novel U 0.006178150484660875 -0.2423713926946949 1.0 6517 +79035 NABP2 nucleic acid binding protein 2 Novel U 0.006176242968967592 -0.2423878387121097 1.0 6518 +3437 IFIT3 interferon induced protein with tetratricopeptide repeats 3 Novel N 0.006174441859270683 -0.24240336732953896 1.0 6519 +79152 FA2H fatty acid 2-hydroxylase Novel N 0.006168608542550144 -0.2424536604037768 1.0 6520 +132001 TAMM41 TAM41 mitochondrial translocator assembly and maintenance homolog Novel N 0.006167632216830281 -0.24246207798579086 1.0 6521 +1411 CRYBA1 crystallin beta A1 Novel N 0.00616637560969376 -0.2424729120685319 1.0 6522 +161145 TMEM229B transmembrane protein 229B Novel U 0.0061631543863475136 -0.24250068447189185 1.0 6523 +22904 SBNO2 strawberry notch homolog 2 Novel U 0.00616261743458107 -0.2425053139059421 1.0 6524 +653319 MATCAP1 microtubule associated tyrosine carboxypeptidase 1 Novel U 0.006149969278672498 -0.24261436244120185 1.0 6525 +200933 FBXO45 F-box protein 45 Novel U 0.006149875113235991 -0.2426151743068207 1.0 6526 +27122 DKK3 dickkopf WNT signaling pathway inhibitor 3 Novel N 0.006149859491394086 -0.2426153089935679 1.0 6527 +100533464 PRH1-PRR4 PRH1-PRR4 readthrough Novel U 0.006149200632330129 -0.24262098947508523 1.0 6528 +6570 SLC18A1 solute carrier family 18 member A1 Novel U 0.006148273729987237 -0.24262898094384575 1.0 6529 +1907 EDN2 endothelin 2 Novel U 0.006145231414077191 -0.2426552108619608 1.0 6530 +3429 IFI27 interferon alpha inducible protein 27 Novel U 0.006144445005229727 -0.24266199103873523 1.0 6531 +11258 DCTN3 dynactin subunit 3 Novel U 0.006142387988731366 -0.24267972600640744 1.0 6532 +1838 DTNB dystrobrevin beta Novel N 0.006141021650929214 -0.2426915061534164 1.0 6533 +645104 CLRN2 clarin 2 Novel N 0.006140366883614155 -0.24269715135712505 1.0 6534 +102723508 KANTR KANTR integral membrane protein Novel U 0.006140256073485977 -0.2426981067281892 1.0 6535 +23385 NCSTN nicastrin Novel N 0.006140076556838507 -0.24269965446586755 1.0 6536 +2192 FBLN1 fibulin 1 Novel U 0.006139199819407936 -0.24270721342808327 1.0 6537 +3954 LETM1 leucine zipper and EF-hand containing transmembrane protein 1 Novel U 0.006137115201593461 -0.24272518636586865 1.0 6538 +3658 IREB2 iron responsive element binding protein 2 Novel N 0.0061360022156363445 -0.24273478219068817 1.0 6539 +5081 PAX7 paired box 7 Novel U 0.006133336282469773 -0.24275776705180283 1.0 6540 +79018 GID4 GID complex subunit 4 homolog Novel U 0.006131493790478524 -0.24277365245472843 1.0 6541 +57326 PBXIP1 PBX homeobox interacting protein 1 Novel N 0.006129144054103257 -0.2427939111637309 1.0 6542 +84749 USP30 ubiquitin specific peptidase 30 Novel U 0.00612885049209816 -0.2427964421656331 1.0 6543 +342527 SMTNL2 smoothelin like 2 Novel U 0.006128311498948078 -0.24280108919986923 1.0 6544 +3066 HDAC2 histone deacetylase 2 Novel U 0.006127048352292225 -0.2428119796643476 1.0 6545 +5326 PLAGL2 PLAG1 like zinc finger 2 Novel U 0.006127044397608575 -0.24281201376042155 1.0 6546 +57544 TXNDC16 thioredoxin domain containing 16 Novel U 0.0061263215504234825 -0.24281824592796605 1.0 6547 +10954 PDIA5 protein disulfide isomerase family A member 5 Novel U 0.006122578874423112 -0.242850514136766 1.0 6548 +9987 HNRNPDL heterogeneous nuclear ribonucleoprotein D like Novel N 0.006119159236314346 -0.2428799972115775 1.0 6549 +2272 FHIT fragile histidine triad diadenosine triphosphatase Novel U 0.006115815344408587 -0.2429088272257729 1.0 6550 +203190 LGI3 leucine rich repeat LGI family member 3 Novel N 0.006115376662331368 -0.24291260940859158 1.0 6551 +91862 MARVELD3 MARVEL domain containing 3 Novel U 0.006105633097108047 -0.24299661545053888 1.0 6552 +345651 ACTBL2 actin beta like 2 Novel U 0.006104639423519025 -0.24300518260057977 1.0 6553 +138883 OR1N1 olfactory receptor family 1 subfamily N member 1 Novel U 0.006103246062880508 -0.2430171957302263 1.0 6554 +29108 PYCARD PYD and CARD domain containing Novel U 0.006100981912674866 -0.2430367165414274 1.0 6555 +116254 GINM1 glycosylated integral membrane protein 1 Novel U 0.006100271917094998 -0.24304283790635878 1.0 6556 +8888 MCM3AP minichromosome maintenance complex component 3 associated protein Novel U 0.006097077841787691 -0.24307037624762282 1.0 6557 +58190 CTDSP1 CTD small phosphatase 1 Novel N 0.006096410626452088 -0.24307612877436083 1.0 6558 +5195 PEX14 peroxisomal biogenesis factor 14 Novel U 0.006094726942332456 -0.24309064498434535 1.0 6559 +10658 CELF1 CUGBP Elav-like family member 1 Novel N 0.006090155430022994 -0.2431300591665291 1.0 6560 +9344 TAOK2 TAO kinase 2 Novel U 0.006088695412305955 -0.24314264699313776 1.0 6561 +8383 OR1A1 olfactory receptor family 1 subfamily A member 1 Novel U 0.006087711253236108 -0.24315113211190173 1.0 6562 +1511 CTSG cathepsin G Novel U 0.006084512488731966 -0.243178710881988 1.0 6563 +27161 AGO2 argonaute RISC catalytic component 2 Novel U 0.006083734994608686 -0.24318541419873468 1.0 6564 +3340 NDST1 N-deacetylase and N-sulfotransferase 1 Novel N 0.006082265273384248 -0.24319808568601897 1.0 6565 +55700 MAP7D1 MAP7 domain containing 1 Novel U 0.006081959948710952 -0.243200718102052 1.0 6566 +10948 STARD3 StAR related lipid transfer domain containing 3 Novel U 0.006076201591828825 -0.243250364895469 1.0 6567 +5345 SERPINF2 serpin family F member 2 Novel U 0.006071612704646135 -0.24328992887850034 1.0 6568 +63928 CHP2 calcineurin like EF-hand protein 2 Novel U 0.006067332463603612 -0.2433268318088263 1.0 6569 +5806 PTX3 pentraxin 3 Novel U 0.006066979342130064 -0.2433298763142655 1.0 6570 +3832 KIF11 kinesin family member 11 Novel U 0.0060652209526385024 -0.24334503661113857 1.0 6571 +55063 ZCWPW1 zinc finger CW-type and PWWP domain containing 1 Novel U 0.0060638224057894255 -0.24335709445470774 1.0 6572 +23543 RBFOX2 RNA binding fox-1 homolog 2 Novel U 0.0060627735486111466 -0.24336613738079238 1.0 6573 +345557 PLCXD3 phosphatidylinositol specific phospholipase C X domain containing 3 Novel U 0.006062494909522403 -0.24336853972186986 1.0 6574 +8563 THOC5 THO complex subunit 5 Novel N 0.006054542141344645 -0.24343710605891647 1.0 6575 +10671 DCTN6 dynactin subunit 6 Novel U 0.00605132057518329 -0.24346488141792355 1.0 6576 +7957 EPM2A EPM2A glucan phosphatase, laforin Novel U 0.006044260163852263 -0.24352575412692126 1.0 6577 +51564 HDAC7 histone deacetylase 7 Novel U 0.006041952714185019 -0.24354564825284897 1.0 6578 +4624 MYH6 myosin heavy chain 6 Novel U 0.0060414016614033506 -0.24355039926154354 1.0 6579 +4281 MID1 midline 1 Novel U 0.006039363009337348 -0.24356797589669169 1.0 6580 +5244 ABCB4 ATP binding cassette subfamily B member 4 Novel U 0.006035671876799005 -0.24359979971351256 1.0 6581 +54947 LPCAT2 lysophosphatidylcholine acyltransferase 2 Novel U 0.006031309376897081 -0.24363741185458784 1.0 6582 +4133 MAP2 microtubule associated protein 2 Novel U 0.0060293312432393 -0.24365446671851335 1.0 6583 +861 RUNX1 RUNX family transcription factor 1 Novel U 0.006028693282511821 -0.24365996702095963 1.0 6584 +9768 PCLAF PCNA clamp associated factor Novel N 0.006022123335429936 -0.24371661109707574 1.0 6585 +5255 PHKA1 phosphorylase kinase regulatory subunit alpha 1 Novel U 0.006019236360747971 -0.24374150171059097 1.0 6586 +92305 TMEM129 transmembrane protein 129, E3 ubiquitin ligase Novel U 0.00601680812689245 -0.24376243720088117 1.0 6587 +83716 CRISPLD2 cysteine rich secretory protein LCCL domain containing 2 Novel N 0.00601608230670426 -0.24376869500074988 1.0 6588 +5966 REL REL proto-oncogene, NF-kB subunit Novel U 0.006010142259209506 -0.24381990827510852 1.0 6589 +254827 NAALADL2 N-acetylated alpha-linked acidic dipeptidase like 2 Novel U 0.006010138781978784 -0.24381993825472922 1.0 6590 +84969 TOX2 TOX high mobility group box family member 2 Novel N 0.006005455457423015 -0.24386031644793338 1.0 6591 +6677 SPAM1 sperm adhesion molecule 1 Novel N 0.00600334548017868 -0.2438785080269738 1.0 6592 +100101267 POM121C POM121 transmembrane nucleoporin C Novel U 0.006001905549125465 -0.243890922672505 1.0 6593 +81502 HM13 histocompatibility minor 13 Novel U 0.005998860207263719 -0.24391717867945092 1.0 6594 +154214 RNF217 ring finger protein 217 Novel U 0.00599194237956575 -0.24397682207593466 1.0 6595 +51606 ATP6V1H ATPase H+ transporting V1 subunit H Novel U 0.005986335261267245 -0.2440251649364987 1.0 6596 +10245 TIMM17B translocase of inner mitochondrial membrane 17B Novel U 0.00598393328854584 -0.24404587401131533 1.0 6597 +391109 OR10K1 olfactory receptor family 10 subfamily K member 1 Novel U 0.005980758676445435 -0.244073244546757 1.0 6598 +5209 PFKFB3 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 3 Novel U 0.005980370140006176 -0.24407659438920853 1.0 6599 +9213 XPR1 xenotropic and polytropic retrovirus receptor 1 Novel N 0.0059791832375097635 -0.24408682749984265 1.0 6600 +338321 NLRP9 NLR family pyrin domain containing 9 Novel U 0.005977268771466352 -0.24410333344105242 1.0 6601 +54714 CNGB3 cyclic nucleotide gated channel subunit beta 3 Novel N 0.005975736163816163 -0.24411654711588288 1.0 6602 +80818 ZNF436 zinc finger protein 436 Novel U 0.005974432354696516 -0.24412778815969857 1.0 6603 +2849 GPR26 G protein-coupled receptor 26 Novel N 0.005974191691706899 -0.24412986308245402 1.0 6604 +1824 DSC2 desmocollin 2 Novel U 0.005971371427367007 -0.244154178539785 1.0 6605 +50808 AK3 adenylate kinase 3 Novel U 0.005970955367769751 -0.24415776567849434 1.0 6606 +283768 GOLGA8G golgin A8 family member G Novel U 0.005970721916064 -0.24415977842776387 1.0 6607 +51440 HPCAL4 hippocalcin like 4 Novel N 0.005970369231698234 -0.24416281916459334 1.0 6608 +143496 OR52B4 olfactory receptor family 52 subfamily B member 4 Novel N 0.00596509929209219 -0.24420825497350498 1.0 6609 +122961 ISCA2 iron-sulfur cluster assembly 2 Novel N 0.0059647550326584866 -0.24421122307314466 1.0 6610 +64175 P3H1 prolyl 3-hydroxylase 1 Novel U 0.005964362520259617 -0.244214607195105 1.0 6611 +401399 PRRT4 proline rich transmembrane protein 4 Novel U 0.005963928949985116 -0.2442183453055227 1.0 6612 +3613 IMPA2 inositol monophosphatase 2 Novel N 0.005962903333740698 -0.24422718785537748 1.0 6613 +147945 NLRP4 NLR family pyrin domain containing 4 Novel U 0.0059618759504250236 -0.24423604564038065 1.0 6614 +468 ATF4 activating transcription factor 4 Novel U 0.005959413747481407 -0.24425727400176822 1.0 6615 +222183 SRRM3 serine/arginine repetitive matrix 3 Novel U 0.005957579472320443 -0.24427308856169397 1.0 6616 +399909 PCNX3 pecanex 3 Novel U 0.005956436855221485 -0.24428293985716382 1.0 6617 +81693 AMN amnion associated transmembrane protein Novel U 0.005956157940199402 -0.24428534457725426 1.0 6618 +55811 ADCY10 adenylate cyclase 10 Novel N 0.005956126684247093 -0.24428561405652396 1.0 6619 +632 BGLAP bone gamma-carboxyglutamate protein Novel N 0.005955444361339985 -0.24429149683612697 1.0 6620 +3485 IGFBP2 insulin like growth factor binding protein 2 Novel U 0.005955038198127622 -0.24429499865122986 1.0 6621 +7137 TNNI3 troponin I3, cardiac type Novel U 0.0059527562533298935 -0.24431467288196632 1.0 6622 +336 APOA2 apolipoprotein A2 Novel U 0.005952350889228666 -0.24431816780737722 1.0 6623 +2984 GUCY2C guanylate cyclase 2C Novel U 0.00594984833593555 -0.24433974405714803 1.0 6624 +143689 PIWIL4 piwi like RNA-mediated gene silencing 4 Novel N 0.005949834594197983 -0.2443398625342102 1.0 6625 +164633 CABP7 calcium binding protein 7 Novel U 0.005948189162597125 -0.24435404894266693 1.0 6626 +55832 CAND1 cullin associated and neddylation dissociated 1 Novel N 0.005946111381368423 -0.24437196293749894 1.0 6627 +2832 NPBWR2 neuropeptides B and W receptor 2 Novel N 0.005942577357734256 -0.2444024322093568 1.0 6628 +196527 ANO6 anoctamin 6 Novel U 0.005940121986351102 -0.24442360167111768 1.0 6629 +341799 OR6S1 olfactory receptor family 6 subfamily S member 1 Novel U 0.005935907530402679 -0.24445993742246472 1.0 6630 +5216 PFN1 profilin 1 Novel U 0.005935728826393398 -0.2444614781538249 1.0 6631 +9450 LY86 lymphocyte antigen 86 Novel U 0.0059315931227834325 -0.24449713492657468 1.0 6632 +259307 IL4I1 interleukin 4 induced 1 Novel U 0.00592673824452191 -0.244538992203407 1.0 6633 +128486 FITM2 fat storage inducing transmembrane protein 2 Novel U 0.005924975487192415 -0.24455419015844404 1.0 6634 +8654 PDE5A phosphodiesterase 5A Novel U 0.005924103498591525 -0.24456170817770134 1.0 6635 +220042 DDIAS DNA damage induced apoptosis suppressor Novel N 0.005920444745508696 -0.24459325282875116 1.0 6636 +151011 SEPTIN10 septin 10 Novel U 0.005919630468151208 -0.24460027327930312 1.0 6637 +2976 GTF3C2 general transcription factor IIIC subunit 2 Novel N 0.005919461344686839 -0.2446017314101327 1.0 6638 +5550 PREP prolyl endopeptidase Novel U 0.005917791747689974 -0.24461612616524941 1.0 6639 +2244 FGB fibrinogen beta chain Novel U 0.005917687314233252 -0.24461702655860085 1.0 6640 +113540 CMTM1 CKLF like MARVEL transmembrane domain containing 1 Novel U 0.0059174091400871565 -0.2446194248910849 1.0 6641 +7026 NR2F2 nuclear receptor subfamily 2 group F member 2 Novel U 0.005915399179756642 -0.2446367541548572 1.0 6642 +93349 SP140L SP140 nuclear body protein like Novel U 0.005912260283179424 -0.24466381676197177 1.0 6643 +43847 KLK14 kallikrein related peptidase 14 Novel U 0.005910960189151231 -0.2446750257754042 1.0 6644 +55743 CHFR checkpoint with forkhead and ring finger domains Novel U 0.005910359228794349 -0.24468020707196164 1.0 6645 +488 ATP2A2 ATPase sarcoplasmic/endoplasmic reticulum Ca2+ transporting 2 Novel U 0.005909382267723614 -0.2446886301317768 1.0 6646 +5144 PDE4D phosphodiesterase 4D Novel U 0.005908410574612447 -0.24469700777285433 1.0 6647 +113251 LARP4 La ribonucleoprotein 4 Novel U 0.00590788984057289 -0.24470149738261912 1.0 6648 +114483834 ABCF2-H2BK1 ABCF2-H2BK1 readthrough Novel U 0.005904608871186126 -0.24472978489808345 1.0 6649 +6510 SLC1A5 solute carrier family 1 member 5 Novel U 0.0058996111365199316 -0.24477287383918322 1.0 6650 +2872 MKNK2 MAPK interacting serine/threonine kinase 2 Novel N 0.005898988241719936 -0.24477824424780653 1.0 6651 +8605 PLA2G4C phospholipase A2 group IVC Novel U 0.005898744091069046 -0.24478034924011174 1.0 6652 +80184 CEP290 centrosomal protein 290 Novel U 0.005897862655024192 -0.244787948712344 1.0 6653 +10614 HEXIM1 HEXIM P-TEFb complex subunit 1 Novel U 0.005896350059439326 -0.24480098984926246 1.0 6654 +65117 RSRC2 arginine and serine rich coiled-coil 2 Novel U 0.0058953014092802385 -0.24481003099049087 1.0 6655 +5930 RBBP6 RB binding protein 6, ubiquitin ligase Novel U 0.0058943079759825505 -0.24481859606881332 1.0 6656 +644150 WIPF3 WAS/WASL interacting protein family member 3 Novel U 0.005894240344923479 -0.24481917916313814 1.0 6657 +57222 ERGIC1 endoplasmic reticulum-golgi intermediate compartment 1 Novel U 0.005892499104443995 -0.24483419160646944 1.0 6658 +5669 PSG1 pregnancy specific beta-1-glycoprotein 1 Novel N 0.00588803234401503 -0.2448727026499493 1.0 6659 +1182 CLCN3 chloride voltage-gated channel 3 Novel U 0.005885492355208727 -0.24489460165727542 1.0 6660 +83851 SYT16 synaptotagmin 16 Novel U 0.005882751694057271 -0.24491823080024058 1.0 6661 +133584 EGFLAM EGF like, fibronectin type III and laminin G domains Novel U 0.0058812332119691675 -0.24493132268879123 1.0 6662 +2334 AFF2 ALF transcription elongation factor 2 Novel U 0.005880288628399973 -0.24493946659968194 1.0 6663 +89927 BMERB1 bMERB domain containing 1 Novel U 0.005879102838361636 -0.24494969011904247 1.0 6664 +160518 DENND5B DENN domain containing 5B Novel U 0.005878828785647433 -0.24495205291780014 1.0 6665 +401250 MCCD1 mitochondrial coiled-coil domain 1 Novel U 0.005875644698008179 -0.24497950514844224 1.0 6666 +378108 TRIM74 tripartite motif containing 74 Novel U 0.005873366703160205 -0.24499914532391892 1.0 6667 +317 APAF1 apoptotic peptidase activating factor 1 Novel N 0.0058647487299117885 -0.24507344685581348 1.0 6668 +50839 TAS2R10 taste 2 receptor member 10 Novel N 0.005864272670547574 -0.245077551294179 1.0 6669 +256979 SUN3 Sad1 and UNC84 domain containing 3 Novel U 0.005860292244447958 -0.24511186931168372 1.0 6670 +5033 P4HA1 prolyl 4-hydroxylase subunit alpha 1 Novel U 0.005857551010692883 -0.24513550339146234 1.0 6671 +333 APLP1 amyloid beta precursor like protein 1 Novel U 0.005855461865111599 -0.2451535153662696 1.0 6672 +582 BBS1 Bardet-Biedl syndrome 1 Novel U 0.005851791092013945 -0.2451851636502142 1.0 6673 +6284 S100A13 S100 calcium binding protein A13 Novel U 0.005851700258351358 -0.24518594679029634 1.0 6674 +552900 BOLA2 bolA family member 2 Novel N 0.005851246627057173 -0.24518985786069558 1.0 6675 +137695 TMEM68 transmembrane protein 68 Novel U 0.005850163847973908 -0.24519919325107925 1.0 6676 +552891 DNAJC25-GNG10 DNAJC25-GNG10 readthrough Novel U 0.005848459951573685 -0.24521388372517064 1.0 6677 +121340 SP7 Sp7 transcription factor Novel U 0.005846776293092293 -0.24522839971411015 1.0 6678 +27130 INVS inversin Novel N 0.005845020492948764 -0.2452435376864157 1.0 6679 +1153 CIRBP cold inducible RNA binding protein Novel U 0.005842794275448031 -0.24526273145342645 1.0 6680 +8484 GALR3 galanin receptor 3 Novel N 0.005842473320123224 -0.2452654986321604 1.0 6681 +168667 BMPER BMP binding endothelial regulator Novel U 0.005841782055750168 -0.2452714585023505 1.0 6682 +55585 UBE2Q1 ubiquitin conjugating enzyme E2 Q1 Novel U 0.005838259475004558 -0.24530182911711992 1.0 6683 +158866 ZDHHC15 zinc finger DHHC-type palmitoyltransferase 15 Novel U 0.005835148003703519 -0.24532865527188383 1.0 6684 +3766 KCNJ10 potassium inwardly rectifying channel subfamily J member 10 Novel U 0.005834120098933387 -0.24533751755270797 1.0 6685 +441250 TYW1B tRNA-yW synthesizing protein 1 homolog B Novel U 0.005831013423324192 -0.24536430236048226 1.0 6686 +55805 LRP2BP LRP2 binding protein Novel U 0.005830166897643721 -0.2453716008462206 1.0 6687 +4634 MYL3 myosin light chain 3 Novel U 0.0058294392431280295 -0.2453778744611005 1.0 6688 +283116 TRIM49B tripartite motif containing 49B Novel U 0.005829343633494178 -0.24537869877814747 1.0 6689 +57628 DPP10 dipeptidyl peptidase like 10 Novel U 0.00582757621645445 -0.24539393690778225 1.0 6690 +57794 SUGP1 SURP and G-patch domain containing 1 Novel U 0.005824972195383014 -0.24541638798173154 1.0 6691 +23353 SUN1 Sad1 and UNC84 domain containing 1 Novel U 0.005823899498838189 -0.24542563644354976 1.0 6692 +9601 PDIA4 protein disulfide isomerase family A member 4 Novel U 0.005823870853105122 -0.2454258834183068 1.0 6693 +93953 GCNA germ cell nuclear acidic peptidase Novel N 0.005820952398436393 -0.24545104544264834 1.0 6694 +54328 GPR173 G protein-coupled receptor 173 Novel N 0.005816751159286041 -0.24548726724280115 1.0 6695 +1071 CETP cholesteryl ester transfer protein Novel U 0.0058118836518754515 -0.24552923340429753 1.0 6696 +80063 ATF7IP2 activating transcription factor 7 interacting protein 2 Novel U 0.005810019395410752 -0.24554530645386252 1.0 6697 +2905 GRIN2C glutamate ionotropic receptor NMDA type subunit 2C Novel N 0.005809740069901453 -0.2455477147130483 1.0 6698 +51726 DNAJB11 DnaJ heat shock protein family (Hsp40) member B11 Novel N 0.005807049235408499 -0.24557091426578975 1.0 6699 +6911 TBX6 T-box transcription factor 6 Novel N 0.005804941068435193 -0.24558909023722653 1.0 6700 +26686 OR4E2 olfactory receptor family 4 subfamily E member 2 Novel U 0.005796643171392368 -0.24566063216988432 1.0 6701 +10073 SNUPN snurportin 1 Novel N 0.005796319078596356 -0.2456634263989363 1.0 6702 +63899 NSUN3 NOP2/Sun RNA methyltransferase 3 Novel N 0.005795314026952646 -0.24567209164708784 1.0 6703 +285596 FAM153A family with sequence similarity 153 member A Novel U 0.00579489525614306 -0.2456757021610414 1.0 6704 +8549 LGR5 leucine rich repeat containing G protein-coupled receptor 5 Novel U 0.005792222162178964 -0.24569874876036413 1.0 6705 +1280 COL2A1 collagen type II alpha 1 chain Novel U 0.005789910068800024 -0.2457186829229551 1.0 6706 +6314 ATXN7 ataxin 7 Novel U 0.005783494308011017 -0.2457739976519698 1.0 6707 +3841 KPNA5 karyopherin subunit alpha 5 Novel U 0.005782117478653961 -0.24578586825395912 1.0 6708 +8313 AXIN2 axin 2 Novel U 0.0057817266430261575 -0.2457892379193117 1.0 6709 +26234 FBXL5 F-box and leucine rich repeat protein 5 Novel U 0.005779795427248884 -0.2458058882716085 1.0 6710 +11202 KLK8 kallikrein related peptidase 8 Novel U 0.0057794176275474856 -0.2458091455451871 1.0 6711 +1291 COL6A1 collagen type VI alpha 1 chain Novel U 0.00577197351798372 -0.2458733263830982 1.0 6712 +266 AMELY amelogenin Y-linked Novel U 0.005769891365519584 -0.2458912780653863 1.0 6713 +91137 SLC25A46 solute carrier family 25 member 46 Novel U 0.005765614703204244 -0.24592815014102007 1.0 6714 +91039 DPP9 dipeptidyl peptidase 9 Novel U 0.005762005533737209 -0.24595926729728615 1.0 6715 +23288 IQCE IQ motif containing E Novel N 0.005759284104690319 -0.24598273062692264 1.0 6716 +162514 TRPV3 transient receptor potential cation channel subfamily V member 3 Novel U 0.005757777077836955 -0.2459957237519398 1.0 6717 +79645 CLXN calaxin Novel U 0.0057513266784461345 -0.2460513371243946 1.0 6718 +143384 CACUL1 CDK2 associated cullin domain 1 Novel U 0.005750466453012867 -0.2460587537252152 1.0 6719 +51124 IER3IP1 immediate early response 3 interacting protein 1 Novel U 0.005745714976555276 -0.24609971950329124 1.0 6720 +140886 PABPC5 poly(A) binding protein cytoplasmic 5 Novel U 0.005744246494211485 -0.24611238030932517 1.0 6721 +780776 TVP23A trans-golgi network vesicle protein 23 homolog A Novel U 0.005742005125234357 -0.24613170470773543 1.0 6722 +6752 SSTR2 somatostatin receptor 2 Novel U 0.00574175769680062 -0.2461338379600827 1.0 6723 +1522 CTSZ cathepsin Z Novel N 0.005730289400949664 -0.2462327141024637 1.0 6724 +1869 E2F1 E2F transcription factor 1 Novel U 0.005730080180344099 -0.24623451793859188 1.0 6725 +192111 PGAM5 PGAM family member 5, mitochondrial serine/threonine protein phosphatase Novel U 0.005729207425960322 -0.24624204256019525 1.0 6726 +56987 BBX BBX high mobility group box domain containing Novel U 0.005728137165748929 -0.24625127001669112 1.0 6727 +5644 PRSS1 serine protease 1 Novel U 0.005725271381331587 -0.24627597793422 1.0 6728 +7391 USF1 upstream transcription factor 1 Novel U 0.005723527938869064 -0.24629100936237616 1.0 6729 +51090 PLLP plasmolipin Novel U 0.0057209975889865395 -0.2463128252658469 1.0 6730 +140735 DYNLL2 dynein light chain LC8-type 2 Novel U 0.005720820833834458 -0.24631434919475587 1.0 6731 +219957 OR9Q2 olfactory receptor family 9 subfamily Q member 2 Novel U 0.005720244377640016 -0.24631931922391265 1.0 6732 +144699 FBXL14 F-box and leucine rich repeat protein 14 Novel U 0.005717583313306432 -0.24634226210743712 1.0 6733 +866 SERPINA6 serpin family A member 6 Novel N 0.005713747478332195 -0.24637533350444252 1.0 6734 +7447 VSNL1 visinin like 1 Novel U 0.005713301249469247 -0.24637918075334164 1.0 6735 +6092 ROBO2 roundabout guidance receptor 2 Novel U 0.0057122931252853865 -0.24638787249199545 1.0 6736 +84441 MAML2 mastermind like transcriptional coactivator 2 Novel N 0.005710319850117385 -0.24640488546750672 1.0 6737 +7088 TLE1 TLE family member 1, transcriptional corepressor Novel N 0.00570960327079519 -0.24641106359545262 1.0 6738 +6168 RPL37A ribosomal protein L37a Novel N 0.00570850617558978 -0.2464205224150667 1.0 6739 +57019 CIAPIN1 cytokine induced apoptosis inhibitor 1 Novel U 0.005707383511169606 -0.24643020168463717 1.0 6740 +100507290 ZNF865 zinc finger protein 865 Novel U 0.00570387640549537 -0.24646043887807007 1.0 6741 +5742 PTGS1 prostaglandin-endoperoxide synthase 1 Novel N 0.00570189011100275 -0.24647756410221977 1.0 6742 +285331 CCDC66 coiled-coil domain containing 66 Novel N 0.005700573908989951 -0.24648891199377324 1.0 6743 +80311 KLHL15 kelch like family member 15 Novel U 0.005699525038135332 -0.24649795503777108 1.0 6744 +9969 MED13 mediator complex subunit 13 Novel N 0.005698080204273468 -0.24651041195382026 1.0 6745 +10218 ANGPTL7 angiopoietin like 7 Novel U 0.005694165096048382 -0.24654416682057043 1.0 6746 +10893 MMP24 matrix metallopeptidase 24 Novel U 0.005691343490088132 -0.24656849384494217 1.0 6747 +83442 SH3BGRL3 SH3 domain binding glutamate rich protein like 3 Novel N 0.005689034584845004 -0.24658840052040037 1.0 6748 +51175 TUBE1 tubulin epsilon 1 Novel N 0.005687794167658703 -0.24659909501833788 1.0 6749 +2671 GFER growth factor, augmenter of liver regeneration Novel N 0.005682791963908579 -0.24664222249051368 1.0 6750 +813 CALU calumenin Novel U 0.005681465378518567 -0.24665365990437252 1.0 6751 +5527 PPP2R5C protein phosphatase 2 regulatory subunit B'gamma Novel U 0.005680860340279965 -0.24665887635918005 1.0 6752 +2539 G6PD glucose-6-phosphate dehydrogenase Novel U 0.005679115673142392 -0.2466739183461103 1.0 6753 +79748 LMAN1L lectin, mannose binding 1 like Novel U 0.005678234921244394 -0.24668151191983742 1.0 6754 +3488 IGFBP5 insulin like growth factor binding protein 5 Novel N 0.005678113256693819 -0.24668256087441462 1.0 6755 +342667 STAC2 SH3 and cysteine rich domain 2 Novel U 0.00567744436254623 -0.24668832787535652 1.0 6756 +83460 EMC6 ER membrane protein complex subunit 6 Novel U 0.005676981786006964 -0.2466923160689254 1.0 6757 +51025 PAM16 presequence translocase associated motor 16 Novel U 0.005676220934607442 -0.24669887589719347 1.0 6758 +80178 TEDC2 tubulin epsilon and delta complex 2 Novel U 0.005675884671581874 -0.24670177505424573 1.0 6759 +325 APCS amyloid P component, serum Novel U 0.005672951130496193 -0.24672706714906414 1.0 6760 +9728 SECISBP2L SECIS binding protein 2 like Novel U 0.0056728337065187285 -0.2467280795427158 1.0 6761 +2913 GRM3 glutamate metabotropic receptor 3 Novel N 0.005672351866379761 -0.24673223382115475 1.0 6762 +84545 MRPL43 mitochondrial ribosomal protein L43 Novel U 0.005669840019934659 -0.24675389019364224 1.0 6763 +7023 TFAP4 transcription factor AP-4 Novel U 0.005669584746683796 -0.2467560910816056 1.0 6764 +3623 INHA inhibin subunit alpha Novel U 0.005669235819433709 -0.24675909942573174 1.0 6765 +374977 MROH7 maestro heat like repeat family member 7 Novel U 0.005669060811234948 -0.24676060829294302 1.0 6766 +30061 SLC40A1 solute carrier family 40 member 1 Novel U 0.005668738169450935 -0.2467633900118129 1.0 6767 +83590 TMUB1 transmembrane and ubiquitin like domain containing 1 Novel U 0.005668418778994165 -0.24676614369873284 1.0 6768 +728945 PPIAL4F peptidylprolyl isomerase A like 4F Novel U 0.00566798264486753 -0.2467699039139002 1.0 6769 +84896 ATAD1 ATPase family AAA domain containing 1 Novel U 0.0056666300920806545 -0.24678156521071978 1.0 6770 +55819 RNF130 ring finger protein 130 Novel U 0.00566574395721729 -0.24678920519472938 1.0 6771 +374768 SPEM1 spermatid maturation 1 Novel U 0.0056650102360556644 -0.2467955311143767 1.0 6772 +347273 CAVIN4 caveolae associated protein 4 Novel N 0.005664201299584546 -0.2468025055174384 1.0 6773 +83661 MS4A8 membrane spanning 4-domains A8 Novel U 0.005663653296987608 -0.24680723022837228 1.0 6774 +79647 AKIRIN1 akirin 1 Novel U 0.005663248308371732 -0.2468107219164632 1.0 6775 +26268 FBXO9 F-box protein 9 Novel U 0.005662335580774979 -0.246818591174894 1.0 6776 +2202 EFEMP1 EGF containing fibulin extracellular matrix protein 1 Novel U 0.005652725094346386 -0.2469014498521389 1.0 6777 +4654 MYOD1 myogenic differentiation 1 Novel U 0.005651697405524568 -0.24691031027112267 1.0 6778 +203197 TMEM268 transmembrane protein 268 Novel U 0.0056513869355797695 -0.24691298704811432 1.0 6779 +7070 THY1 Thy-1 cell surface antigen Novel U 0.005651074246767816 -0.2469156829555005 1.0 6780 +2642 GCGR glucagon receptor Novel U 0.005649839547855575 -0.2469263281522264 1.0 6781 +84699 CREB3L3 cAMP responsive element binding protein 3 like 3 Novel N 0.005649477754054748 -0.24692944742782133 1.0 6782 +57678 GPAM glycerol-3-phosphate acyltransferase, mitochondrial Novel U 0.005649126092345196 -0.24693247934762141 1.0 6783 +2987 GUK1 guanylate kinase 1 Novel N 0.005648874907842757 -0.24693464498364526 1.0 6784 +79745 CLIP4 CAP-Gly domain containing linker protein family member 4 Novel U 0.005648050191482697 -0.24694175543608746 1.0 6785 +359948 IRF2BP2 interferon regulatory factor 2 binding protein 2 Novel U 0.005647084575478658 -0.24695008068220436 1.0 6786 +79143 MBOAT7 membrane bound O-acyltransferase domain containing 7 Novel U 0.005646692762530894 -0.246953458773711 1.0 6787 +388743 CAPN8 calpain 8 Novel U 0.005644264343629769 -0.24697439585940784 1.0 6788 +9044 BTAF1 B-TFIID TATA-box binding protein associated factor 1 Novel U 0.005643904036090177 -0.24697750232091256 1.0 6789 +4605 MYBL2 MYB proto-oncogene like 2 Novel N 0.005640613667739926 -0.24700587087136797 1.0 6790 +81533 ITFG1 integrin alpha FG-GAP repeat containing 1 Novel U 0.005634565086828243 -0.24705801988768203 1.0 6791 +116224 PABIR1 PP2A Aalpha (PPP2R1A) and B55A (PPP2R2A) interacting phosphatase regulator 1 Novel U 0.005632227983180106 -0.24707816968117144 1.0 6792 +2649 NR6A1 nuclear receptor subfamily 6 group A member 1 Novel U 0.005627255271499602 -0.2471210428817351 1.0 6793 +2894 GRID1 glutamate ionotropic receptor delta type subunit 1 Novel U 0.005626706211320011 -0.24712577671082342 1.0 6794 +64759 TNS3 tensin 3 Novel U 0.005625535425020718 -0.24713587087253072 1.0 6795 +84206 MEX3B mex-3 RNA binding family member B Novel U 0.005624355882573819 -0.24714604052706698 1.0 6796 +84445 LZTS2 leucine zipper tumor suppressor 2 Novel U 0.005622825458009708 -0.2471592353799964 1.0 6797 +8890 EIF2B4 eukaryotic translation initiation factor 2B subunit delta Novel U 0.005619642020329627 -0.24718668200688912 1.0 6798 +10912 GADD45G growth arrest and DNA damage inducible gamma Novel U 0.005617261046161161 -0.247207210038599 1.0 6799 +8140 SLC7A5 solute carrier family 7 member 5 Novel U 0.0056169942138988155 -0.24720951058482718 1.0 6800 +9854 C2CD2L C2CD2 like Novel U 0.0056155931230324205 -0.24722159036213628 1.0 6801 +401613 SERTM2 serine rich and transmembrane domain containing 2 Novel U 0.0056143666020092445 -0.24723216505160164 1.0 6802 +90226 UCN2 urocortin 2 Novel N 0.005613120313708182 -0.2472429101684965 1.0 6803 +27166 PRELID1 PRELI domain containing 1 Novel N 0.00560867342609014 -0.24728124987467326 1.0 6804 +80013 MINDY3 MINDY lysine 48 deubiquitinase 3 Novel U 0.00560725759513445 -0.24729345673652803 1.0 6805 +65981 CAPRIN2 caprin family member 2 Novel U 0.0056065354804205785 -0.24729968258892948 1.0 6806 +10693 CCT6B chaperonin containing TCP1 subunit 6B Novel U 0.005605129772732737 -0.24731180217106227 1.0 6807 +54739 XAF1 XIAP associated factor 1 Novel N 0.005600138946964378 -0.24735483154575613 1.0 6808 +5270 SERPINE2 serpin family E member 2 Novel U 0.00559639389851773 -0.24738712020906295 1.0 6809 +23143 LRCH1 leucine rich repeats and calponin homology domain containing 1 Novel U 0.005595358582835418 -0.24739604638450732 1.0 6810 +55184 DZANK1 double zinc ribbon and ankyrin repeat domains 1 Novel U 0.005595081595527627 -0.24739843448443416 1.0 6811 +11322 TMC6 transmembrane channel like 6 Novel U 0.005594559858011417 -0.247402932745868 1.0 6812 +10447 FAM3C FAM3 metabolism regulating signaling molecule C Novel U 0.005589686438466471 -0.24744494987998022 1.0 6813 +3952 LEP leptin Novel U 0.005582039811876591 -0.24751087675780595 1.0 6814 +54521 WDR44 WD repeat domain 44 Novel U 0.005581515505800061 -0.24751539716458199 1.0 6815 +90342 FER1L5 fer-1 like family member 5 Novel U 0.005580109569987288 -0.24752751871353826 1.0 6816 +23636 NUP62 nucleoporin 62 Novel U 0.005578888370994583 -0.24753804751808317 1.0 6817 +55090 MED9 mediator complex subunit 9 Novel U 0.005578851535501269 -0.24753836510245042 1.0 6818 +80824 DUSP16 dual specificity phosphatase 16 Novel U 0.00557772442070063 -0.24754808274184134 1.0 6819 +546 ATRX ATRX chromatin remodeler Novel U 0.00557329370234275 -0.2475862830415979 1.0 6820 +6271 S100A1 S100 calcium binding protein A1 Novel U 0.0055709987870537206 -0.2476060690999469 1.0 6821 +2972 BRF1 BRF1 RNA polymerase III transcription initiation factor subunit Novel N 0.005569649027223087 -0.24761770631675123 1.0 6822 +79258 MMEL1 membrane metalloendopeptidase like 1 Novel U 0.005569437917092644 -0.24761952644378554 1.0 6823 +785 CACNB4 calcium voltage-gated channel auxiliary subunit beta 4 Novel N 0.005566725248096193 -0.24764291424694404 1.0 6824 +55340 GIMAP5 GTPase, IMAP family member 5 Novel U 0.005566462195403187 -0.2476451822068803 1.0 6825 +3375 IAPP islet amyloid polypeptide Novel U 0.005558257612163599 -0.24771591961644115 1.0 6826 +201191 SAMD14 sterile alpha motif domain containing 14 Novel U 0.005556955194801105 -0.24772714866095194 1.0 6827 +120526 DNAJC24 DnaJ heat shock protein family (Hsp40) member C24 Novel U 0.005556870326184113 -0.24772788037223376 1.0 6828 +221527 ZBTB12 zinc finger and BTB domain containing 12 Novel U 0.005555341756560185 -0.24774105923243575 1.0 6829 +81603 TRIM8 tripartite motif containing 8 Novel U 0.005555028494531739 -0.2477437600819194 1.0 6830 +340529 PABPC1L2A poly(A) binding protein cytoplasmic 1 like 2A Novel U 0.005554983018694765 -0.2477441521606894 1.0 6831 +1418 CRYGA crystallin gamma A Novel U 0.0055540337606042 -0.24775233637387492 1.0 6832 +9255 AIMP1 aminoacyl tRNA synthetase complex interacting multifunctional protein 1 Novel U 0.0055538872325709724 -0.24775359969380184 1.0 6833 +10274 STAG1 STAG1 cohesin complex component Novel U 0.005553285906343698 -0.247758784144782 1.0 6834 +84153 RNASEH2C ribonuclease H2 subunit C Novel U 0.005548472448561084 -0.24780028430690235 1.0 6835 +55316 RSAD1 radical S-adenosyl methionine domain containing 1 Novel U 0.005548055659583307 -0.24780387773410767 1.0 6836 +123228 SENP8 SUMO peptidase family member, NEDD8 specific Novel N 0.005545509591474417 -0.247825829155323 1.0 6837 +375519 GJB7 gap junction protein beta 7 Novel N 0.005543630065902865 -0.24784203385046136 1.0 6838 +29945 ANAPC4 anaphase promoting complex subunit 4 Novel U 0.005543629836244083 -0.2478420358305092 1.0 6839 +283160 OR8D2 olfactory receptor family 8 subfamily D member 2 Novel U 0.005535030057120474 -0.24791618049821934 1.0 6840 +10370 CITED2 Cbp/p300 interacting transactivator with Glu/Asp rich carboxy-terminal domain 2 Novel U 0.005534300810741936 -0.24792246783765426 1.0 6841 +150864 FAM117B family with sequence similarity 117 member B Novel U 0.005533466263194627 -0.24792966305158876 1.0 6842 +653519 GPR89A G protein-coupled receptor 89A Novel N 0.0055316455692860445 -0.2479453605181066 1.0 6843 +51012 PRELID3B PRELI domain containing 3B Novel U 0.0055306488866432935 -0.24795395361128925 1.0 6844 +6836 SURF4 surfeit 4 Novel U 0.005529367586735271 -0.24796500058756057 1.0 6845 +84203 TXNDC2 thioredoxin domain containing 2 Novel U 0.005529004895725129 -0.24796812759862003 1.0 6846 +170692 ADAMTS18 ADAM metallopeptidase with thrombospondin type 1 motif 18 Novel U 0.005524809174171373 -0.24800430182774105 1.0 6847 +51435 SCARA3 scavenger receptor class A member 3 Novel U 0.00552434366240458 -0.2480083153279447 1.0 6848 +10686 CLDN16 claudin 16 Novel N 0.0055227993159526504 -0.24802163021113668 1.0 6849 +65062 TMEM237 transmembrane protein 237 Novel U 0.005521007330275982 -0.24803708016405154 1.0 6850 +79612 NAA16 N-alpha-acetyltransferase 16, NatA auxiliary subunit Novel N 0.005514412386573873 -0.24809393975338886 1.0 6851 +116461 TSEN15 tRNA splicing endonuclease subunit 15 Novel N 0.005513486443394838 -0.24810192295253167 1.0 6852 +1464 CSPG4 chondroitin sulfate proteoglycan 4 Novel U 0.005512476186115253 -0.248110633082085 1.0 6853 +9406 ZRANB2 zinc finger RANBP2-type containing 2 Novel U 0.005512368624197737 -0.24811156044806937 1.0 6854 +1311 COMP cartilage oligomeric matrix protein Novel U 0.005510530777735297 -0.24812740579866518 1.0 6855 +138050 HGSNAT heparan-alpha-glucosaminide N-acetyltransferase Novel U 0.0055090242986304255 -0.24814039420116218 1.0 6856 +7252 TSHB thyroid stimulating hormone subunit beta Novel U 0.0055077221815663865 -0.2481516206565915 1.0 6857 +85397 RGS8 regulator of G protein signaling 8 Novel U 0.005507023646034421 -0.2481576432164918 1.0 6858 +115253422 DUS4L-BCAP29 DUS4L-BCAP29 readthrough Novel U 0.00550564971847917 -0.24816948880003267 1.0 6859 +85365 ALG2 ALG2 alpha-1,3/1,6-mannosyltransferase Novel N 0.005504682809516237 -0.2481778251936461 1.0 6860 +6532 SLC6A4 solute carrier family 6 member 4 Novel U 0.005502285271942337 -0.2481984960299762 1.0 6861 +9667 SAFB2 scaffold attachment factor B2 Novel U 0.005501872199918677 -0.24820205741073895 1.0 6862 +7343 UBTF upstream binding transcription factor Novel U 0.005501686381388923 -0.24820365948132064 1.0 6863 +96459 FNIP1 folliculin interacting protein 1 Novel U 0.005496704287868316 -0.24824661356924274 1.0 6864 +126298 IRGQ immunity related GTPase Q Novel U 0.005492502678844185 -0.24828283855833425 1.0 6865 +3796 KIF2A kinesin family member 2A Novel U 0.005491663238638706 -0.2482900759552724 1.0 6866 +59349 KLHL12 kelch like family member 12 Novel U 0.0054911653083957405 -0.2482943689576713 1.0 6867 +390323 OR6C75 olfactory receptor family 6 subfamily C member 75 Novel U 0.005488572410674867 -0.24831672412949107 1.0 6868 +3765 KCNJ9 potassium inwardly rectifying channel subfamily J member 9 Novel U 0.005487233904474594 -0.24832826432093327 1.0 6869 +23476 BRD4 bromodomain containing 4 Novel U 0.0054824175422937445 -0.24836978952388766 1.0 6870 +10742 RAI2 retinoic acid induced 2 Novel U 0.005482041761393384 -0.2483730293919806 1.0 6871 +11123 RCAN3 RCAN family member 3 Novel N 0.00548087591118179 -0.24838308099624815 1.0 6872 +114926 SMIM19 small integral membrane protein 19 Novel U 0.005480298934669977 -0.24838805551142232 1.0 6873 +166824 RASSF6 Ras association domain family member 6 Novel U 0.005479271316997367 -0.24839691531697936 1.0 6874 +132160 PPM1M protein phosphatase, Mg2+/Mn2+ dependent 1M Novel U 0.005475979069592968 -0.2484253000680654 1.0 6875 +54499 TMCO1 transmembrane and coiled-coil domains 1 Novel U 0.005475576208816623 -0.24842877341057412 1.0 6876 +114823 LENG8 leukocyte receptor cluster member 8 Novel U 0.005474784429228524 -0.24843559989223318 1.0 6877 +7416 VDAC1 voltage dependent anion channel 1 Novel U 0.0054720615470890315 -0.2484590757499901 1.0 6878 +9694 EMC2 ER membrane protein complex subunit 2 Novel U 0.005471793494651533 -0.24846138681619556 1.0 6879 +2842 GPR19 G protein-coupled receptor 19 Novel U 0.005471706512299594 -0.24846213675145418 1.0 6880 +8495 PPFIBP2 PPFIA binding protein 2 Novel U 0.0054690171596006535 -0.2484853235286205 1.0 6881 +3714 JAG2 jagged canonical Notch ligand 2 Novel U 0.005467809756469951 -0.24849573338945893 1.0 6882 +388611 CD164L2 CD164 molecule like 2 Novel U 0.005459044142135744 -0.24857130783767944 1.0 6883 +166378 AFG2A AFG2 AAA ATPase homolog A Novel N 0.0054580528481423295 -0.24857985447157416 1.0 6884 +83604 TMEM47 transmembrane protein 47 Novel U 0.0054564150229555455 -0.24859397529985308 1.0 6885 +54796 BNC2 basonuclin zinc finger protein 2 Novel N 0.005455236702712477 -0.24860413441692142 1.0 6886 +1499 CTNNB1 catenin beta 1 Novel U 0.005452950819367537 -0.2486238426046084 1.0 6887 +10426 TUBGCP3 tubulin gamma complex component 3 Novel U 0.005452940269097473 -0.24862393356581297 1.0 6888 +64641 EBF2 EBF transcription factor 2 Novel U 0.005452123196039402 -0.24863097812004104 1.0 6889 +79869 CPSF7 cleavage and polyadenylation specific factor 7 Novel U 0.005451400852077851 -0.24863720594894592 1.0 6890 +10487 CAP1 cyclase associated actin cytoskeleton regulatory protein 1 Novel U 0.005450958827528609 -0.24864101694953702 1.0 6891 +23214 XPO6 exportin 6 Novel U 0.0054493510541068655 -0.2486548786806809 1.0 6892 +60560 NAA35 N-alpha-acetyltransferase 35, NatC auxiliary subunit Novel N 0.0054461464445487474 -0.24868250784503643 1.0 6893 +100528021 ST20-MTHFS ST20-MTHFS readthrough Novel U 0.00544579055522545 -0.24868557621403037 1.0 6894 +2912 GRM2 glutamate metabotropic receptor 2 Novel N 0.005445226153134694 -0.24869044231638862 1.0 6895 +1186 CLCN7 chloride voltage-gated channel 7 Novel U 0.005443610206826008 -0.2487043745116663 1.0 6896 +10585 POMT1 protein O-mannosyltransferase 1 Novel U 0.00544141098018058 -0.24872333557177037 1.0 6897 +8811 GALR2 galanin receptor 2 Novel N 0.005439710958688298 -0.24873799263758958 1.0 6898 +5024 P2RX3 purinergic receptor P2X 3 Novel U 0.00543861542880879 -0.24874743796144214 1.0 6899 +6257 RXRB retinoid X receptor beta Novel N 0.005435341845319677 -0.24877566179795382 1.0 6900 +55504 TNFRSF19 TNF receptor superfamily member 19 Novel U 0.0054319074183418565 -0.24880527237787514 1.0 6901 +731 C8A complement C8 alpha chain Novel U 0.005430312080213509 -0.24881902689571933 1.0 6902 +4927 NUP88 nucleoporin 88 Novel U 0.005429734100090587 -0.2488240100637218 1.0 6903 +9582 APOBEC3B apolipoprotein B mRNA editing enzyme catalytic subunit 3B Novel N 0.005428908795052167 -0.24883112559156892 1.0 6904 +5480 PPIC peptidylprolyl isomerase C Novel N 0.005428865609779714 -0.2488314979217916 1.0 6905 +8237 USP11 ubiquitin specific peptidase 11 Novel N 0.005418392006665048 -0.24892179812735535 1.0 6906 +81669 CCNL2 cyclin L2 Novel N 0.005416044787115802 -0.24894203513705296 1.0 6907 +25911 DPCD deleted in primary ciliary dyskinesia homolog (mouse) Novel U 0.005408907519595589 -0.24900357047662833 1.0 6908 +130916 MTERF4 mitochondrial transcription termination factor 4 Novel U 0.005408408558330402 -0.24900787236818575 1.0 6909 +65260 COA7 cytochrome c oxidase assembly factor 7 Novel N 0.005408238549317929 -0.2490093381339405 1.0 6910 +284383 OR2Z1 olfactory receptor family 2 subfamily Z member 1 Novel U 0.0054067428241774415 -0.24902223381904276 1.0 6911 +100885850 PTGES3L-AARSD1 PTGES3L-AARSD1 readthrough Novel U 0.0054058833535068 -0.24902964391253066 1.0 6912 +5919 RARRES2 retinoic acid receptor responder 2 Novel U 0.005401381620893772 -0.24906845647549483 1.0 6913 +1496 CTNNA2 catenin alpha 2 Novel U 0.005401313527683896 -0.24906904355434267 1.0 6914 +4926 NUMA1 nuclear mitotic apparatus protein 1 Novel U 0.005399947487230676 -0.24908082113769997 1.0 6915 +10479 SLC9A6 solute carrier family 9 member A6 Novel U 0.005399772635055195 -0.24908232865972618 1.0 6916 +7798 LUZP1 leucine zipper protein 1 Novel U 0.005399033135810023 -0.24908870439624417 1.0 6917 +199953 TMEM201 transmembrane protein 201 Novel U 0.005398993252019054 -0.24908904826210232 1.0 6918 +4320 MMP11 matrix metallopeptidase 11 Novel U 0.005398433698565195 -0.24909387256099494 1.0 6919 +2957 GTF2A1 general transcription factor IIA subunit 1 Novel N 0.005398234115694703 -0.2490955933035164 1.0 6920 +221496 LEMD2 LEM domain nuclear envelope protein 2 Novel U 0.0053977753002835294 -0.24909954906978818 1.0 6921 +83999 KREMEN1 kringle containing transmembrane protein 1 Novel N 0.005395326647740471 -0.2491206606037628 1.0 6922 +2657 GDF1 growth differentiation factor 1 Novel U 0.0053951908237655785 -0.24912183163656967 1.0 6923 +6343 SCT secretin Novel U 0.005393519831609465 -0.24913623842032315 1.0 6924 +327 APEH acylaminoacyl-peptide hydrolase Novel U 0.0053929580639337175 -0.24914108180956024 1.0 6925 +5187 PER1 period circadian regulator 1 Novel N 0.005392143860693614 -0.2491481016210947 1.0 6926 +4907 NT5E 5'-nucleotidase ecto Novel N 0.005392106282560292 -0.2491484256082772 1.0 6927 +728047 GOLGA8O golgin A8 family member O Novel U 0.005391620929034741 -0.2491526101780617 1.0 6928 +1850 DUSP8 dual specificity phosphatase 8 Novel U 0.005391604372480239 -0.2491527529236153 1.0 6929 +122183 PRR20A proline rich 20A Novel U 0.005390302335326639 -0.2491639786900812 1.0 6930 +8287 USP9Y ubiquitin specific peptidase 9 Y-linked Novel N 0.005387975329038818 -0.2491840414272155 1.0 6931 +26047 CNTNAP2 contactin associated protein 2 Novel U 0.005387263763846893 -0.24919017632486243 1.0 6932 +127703 C1orf216 chromosome 1 open reading frame 216 Novel U 0.005385206289137098 -0.24920791524309355 1.0 6933 +23035 PHLPP2 PH domain and leucine rich repeat protein phosphatase 2 Novel U 0.005384970991561096 -0.24920994390689236 1.0 6934 +205564 SENP5 SUMO specific peptidase 5 Novel N 0.005384216220780022 -0.24921645130992628 1.0 6935 +752 FMNL1 formin like 1 Novel U 0.005384122513251462 -0.24921725922760268 1.0 6936 +1183 CLCN4 chloride voltage-gated channel 4 Novel U 0.00538364827196709 -0.24922134799103937 1.0 6937 +145581 LRFN5 leucine rich repeat and fibronectin type III domain containing 5 Novel U 0.005383173627155799 -0.24922544023356186 1.0 6938 +84248 FYTTD1 forty-two-three domain containing 1 Novel N 0.005382735434382153 -0.24922921819775462 1.0 6939 +57650 CIP2A cellular inhibitor of PP2A Novel U 0.0053824693285835805 -0.24923151248063416 1.0 6940 +56940 DUSP22 dual specificity phosphatase 22 Novel U 0.00538172961768868 -0.24923789004193145 1.0 6941 +3396 MRPL58 mitochondrial ribosomal protein L58 Novel U 0.0053813090286138785 -0.24924151623241209 1.0 6942 +646019 CBY3 chibby family member 3 Novel U 0.005381093023931068 -0.24924337855878123 1.0 6943 +80086 TUBA4B tubulin alpha 4b Novel U 0.005376612675026936 -0.24928200675794165 1.0 6944 +144363 ETFRF1 electron transfer flavoprotein regulatory factor 1 Novel N 0.005375310857183128 -0.24929323063358555 1.0 6945 +165904 XIRP1 xin actin binding repeat containing 1 Novel U 0.0053745035322726765 -0.24930019114226365 1.0 6946 +8502 PKP4 plakophilin 4 Novel U 0.005372519114877663 -0.24931730018265139 1.0 6947 +148345 C1orf127 chromosome 1 open reading frame 127 Novel U 0.005370295381912294 -0.24933647252875743 1.0 6948 +259294 TAS2R19 taste 2 receptor member 19 Novel N 0.005369998279276797 -0.249339034056893 1.0 6949 +101060389 TBC1D3D TBC1 domain family member 3D Novel U 0.005369991925875252 -0.24933908883397965 1.0 6950 +161198 CLEC14A C-type lectin domain containing 14A Novel U 0.005367348028378852 -0.2493618837102797 1.0 6951 +5553 PRG2 proteoglycan 2, pro eosinophil major basic protein Novel U 0.005366134409300924 -0.24937234716311565 1.0 6952 +1296 COL8A2 collagen type VIII alpha 2 chain Novel N 0.005365204129795624 -0.24938036774873848 1.0 6953 +10175 CNIH1 cornichon family member 1 Novel N 0.005365138254491694 -0.24938093570547898 1.0 6954 +221078 NSUN6 NOP2/Sun RNA methyltransferase 6 Novel N 0.0053635398931834635 -0.24939471628825627 1.0 6955 +93550 ZFAND4 zinc finger AN1-type containing 4 Novel U 0.005362948888128674 -0.24939981175324122 1.0 6956 +64777 RMND5B required for meiotic nuclear division 5 homolog B Novel U 0.0053549844529417415 -0.24946847867967575 1.0 6957 +6768 ST14 ST14 transmembrane serine protease matriptase Novel U 0.005354207868270498 -0.2494751741554049 1.0 6958 +79188 TMEM43 transmembrane protein 43 Novel U 0.005354143193971371 -0.249475731757449 1.0 6959 +23541 SEC14L2 SEC14 like lipid binding 2 Novel U 0.005354013732890438 -0.2494768479313285 1.0 6960 +4519 CYTB cytochrome b Novel U 0.005347159889347068 -0.24953593967598334 1.0 6961 +10217 CTDSPL CTD small phosphatase like Novel U 0.0053428742282972995 -0.24957288933595556 1.0 6962 +466 ATF1 activating transcription factor 1 Novel N 0.005342030146692136 -0.24958016674962347 1.0 6963 +256691 MAMDC2 MAM domain containing 2 Novel U 0.005341954876597619 -0.2495808157053776 1.0 6964 +25966 C2CD2 C2 calcium dependent domain containing 2 Novel U 0.005340500660809711 -0.24959335350952622 1.0 6965 +23347 SMCHD1 structural maintenance of chromosomes flexible hinge domain containing 1 Novel U 0.005338494855551702 -0.24961064694953308 1.0 6966 +56998 CTNNBIP1 catenin beta interacting protein 1 Novel U 0.00533774393837645 -0.24961712112795514 1.0 6967 +80204 FBXO11 F-box protein 11 Novel U 0.0053306090000769975 -0.24967863638570092 1.0 6968 +83732 RIOK1 RIO kinase 1 Novel N 0.005329908951322207 -0.24968467199214603 1.0 6969 +57228 SMAGP small cell adhesion glycoprotein Novel U 0.005327649739256944 -0.24970415022820974 1.0 6970 +8818 DPM2 dolichyl-phosphate mannosyltransferase subunit 2, regulatory Novel U 0.0053275571317013826 -0.24970494866225507 1.0 6971 +7936 NELFE negative elongation factor complex member E Novel N 0.005327259710444004 -0.24970751293745114 1.0 6972 +55109 AGGF1 angiogenic factor with G-patch and FHA domains 1 Novel U 0.005324475318664273 -0.24973151911253025 1.0 6973 +2646 GCKR glucokinase regulator Novel N 0.00532051152517133 -0.2497656937287828 1.0 6974 +90324 CCDC97 coiled-coil domain containing 97 Novel U 0.005319763137893082 -0.24977214609520598 1.0 6975 +440295 GOLGA6L9 golgin A6 family like 9 Novel U 0.005316013424967913 -0.24980447497422126 1.0 6976 +4973 OLR1 oxidized low density lipoprotein receptor 1 Novel N 0.005314084803234263 -0.2498211029614666 1.0 6977 +23042 PDXDC1 pyridoxal dependent decarboxylase domain containing 1 Novel U 0.005312977799203536 -0.24983064721194467 1.0 6978 +2000 ELF4 E74 like ETS transcription factor 4 Novel U 0.0053117452391199015 -0.24984127396834394 1.0 6979 +55813 UTP6 UTP6 small subunit processome component Novel N 0.005308653431167018 -0.24986793059172868 1.0 6980 +2267 FGL1 fibrinogen like 1 Novel N 0.005306757232886444 -0.24988427903386945 1.0 6981 +387990 TOMM20L translocase of outer mitochondrial membrane 20 like Novel U 0.005303470576041053 -0.2499126155848641 1.0 6982 +11098 PRSS23 serine protease 23 Novel U 0.00530208855209738 -0.24992453097299192 1.0 6983 +51433 ANAPC5 anaphase promoting complex subunit 5 Novel U 0.0053018518388348685 -0.24992657184240716 1.0 6984 +57620 STIM2 stromal interaction molecule 2 Novel N 0.005295921801698267 -0.24997769881051676 1.0 6985 +9730 DCAF1 DDB1 and CUL4 associated factor 1 Novel U 0.0052947498628134314 -0.24998780290946435 1.0 6986 +8358 H3C2 H3 clustered histone 2 Novel U 0.005294291328659422 -0.24999175625082282 1.0 6987 +5027 P2RX7 purinergic receptor P2X 7 Novel U 0.0052939162800975026 -0.2499949898049175 1.0 6988 +619189 SERINC4 serine incorporator 4 Novel U 0.005292627793962072 -0.25000609873864565 1.0 6989 +5690 PSMB2 proteasome 20S subunit beta 2 Novel U 0.005292612648082303 -0.2500062293217928 1.0 6990 +347148 QRFP pyroglutamylated RFamide peptide Novel N 0.005292570455138316 -0.2500065930964626 1.0 6991 +5087 PBX1 PBX homeobox 1 Novel U 0.005291365572536103 -0.2500169812260747 1.0 6992 +8443 GNPAT glyceronephosphate O-acyltransferase Novel U 0.005290285287068101 -0.25002629511726954 1.0 6993 +390083 OR56A3 olfactory receptor family 56 subfamily A member 3 Novel U 0.005289960494039252 -0.25002909538351503 1.0 6994 +414899 BLID BH3-like motif containing, cell death inducer Novel N 0.005288964810394318 -0.2500376798636437 1.0 6995 +27031 NPHP3 nephrocystin 3 Novel U 0.005285355280414443 -0.2500688001281413 1.0 6996 +57369 GJD2 gap junction protein delta 2 Novel U 0.005280566811845922 -0.2501100848408939 1.0 6997 +2838 GPR15 G protein-coupled receptor 15 Novel U 0.005280158954649322 -0.25011360126101123 1.0 6998 +8220 ESS2 ess-2 splicing factor homolog Novel U 0.005279822524852695 -0.2501165018559126 1.0 6999 +51388 NIP7 nucleolar pre-rRNA processing protein NIP7 Novel U 0.005278774376730151 -0.2501255386687353 1.0 7000 +5281 PIGF phosphatidylinositol glycan anchor biosynthesis class F Novel U 0.00527645915293004 -0.25014549982086104 1.0 7001 +151449 GDF7 growth differentiation factor 7 Novel U 0.00527359634355612 -0.25017018208847464 1.0 7002 +5793 PTPRG protein tyrosine phosphatase receptor type G Novel U 0.005269350742047975 -0.25020678636732024 1.0 7003 +55505 NOP10 NOP10 ribonucleoprotein Novel U 0.005268242972487301 -0.2502163372179636 1.0 7004 +79664 ICE2 interactor of little elongation complex ELL subunit 2 Novel N 0.005268216558819563 -0.25021656494853545 1.0 7005 +50626 ZFTRAF1 zinc finger TRAF-type containing 1 Novel U 0.005267722435560689 -0.25022082512828087 1.0 7006 +3727 JUND JunD proto-oncogene, AP-1 transcription factor subunit Novel N 0.005266174554460696 -0.2502341704861283 1.0 7007 +2903 GRIN2A glutamate ionotropic receptor NMDA type subunit 2A Novel U 0.005265146649370801 -0.25024303276970933 1.0 7008 +3785 KCNQ2 potassium voltage-gated channel subfamily Q member 2 Novel N 0.005264706918735161 -0.25024682399287834 1.0 7009 +12 SERPINA3 serpin family A member 3 Novel U 0.005264323351374875 -0.2502501309934494 1.0 7010 +2130 EWSR1 EWS RNA binding protein 1 Novel U 0.005261456965114526 -0.25027484409988476 1.0 7011 +11331 PHB2 prohibitin 2 Novel U 0.005261454648931189 -0.25027486406930977 1.0 7012 +259289 TAS2R43 taste 2 receptor member 43 Novel N 0.0052608256487297125 -0.250280287116839 1.0 7013 +66037 BOLL boule homolog, RNA binding protein Novel N 0.005260632047618238 -0.2502819562864621 1.0 7014 +340156 MYLK4 myosin light chain kinase family member 4 Novel U 0.005258880005056812 -0.250297061862043 1.0 7015 +5920 PLAAT4 phospholipase A and acyltransferase 4 Novel U 0.005258818521045393 -0.25029759195840134 1.0 7016 +4852 NPY neuropeptide Y Novel U 0.005257906245208041 -0.2503054573219006 1.0 7017 +25851 TECPR1 tectonin beta-propeller repeat containing 1 Novel U 0.00525520115676072 -0.2503287797678809 1.0 7018 +2670 GFAP glial fibrillary acidic protein Novel U 0.005254735811627894 -0.2503327918314175 1.0 7019 +122042 RXFP2 relaxin family peptide receptor 2 Novel U 0.005254692721578743 -0.2503331633406539 1.0 7020 +388795 EFCAB8 EF-hand calcium binding domain 8 Novel U 0.005254377537604517 -0.25033588076056673 1.0 7021 +79145 CHCHD7 coiled-coil-helix-coiled-coil-helix domain containing 7 Novel U 0.005253882736146777 -0.2503401467875355 1.0 7022 +51761 ATP8A2 ATPase phospholipid transporting 8A2 Novel N 0.005252274002740402 -0.25035401679537356 1.0 7023 +2063 NR2F6 nuclear receptor subfamily 2 group F member 6 Novel N 0.005249233572425348 -0.25038023045646474 1.0 7024 +1069 CETN2 centrin 2 Novel U 0.005246399361614459 -0.250404666156007 1.0 7025 +5672 PSG4 pregnancy specific beta-1-glycoprotein 4 Novel N 0.005246155417072839 -0.250406769371301 1.0 7026 +200539 ANKRD23 ankyrin repeat domain 23 Novel U 0.005245623112117295 -0.2504113587419676 1.0 7027 +55139 ANKZF1 ankyrin repeat and zinc finger peptidyl tRNA hydrolase 1 Novel U 0.005244024277992278 -0.2504251434012268 1.0 7028 +338773 TMEM119 transmembrane protein 119 Novel N 0.005242290311924931 -0.25044009312679955 1.0 7029 +6392 SDHD succinate dehydrogenase complex subunit D Novel U 0.0052409546376468745 -0.25045160890227375 1.0 7030 +51163 DBR1 debranching RNA lariats 1 Novel U 0.00524080291910514 -0.2504529169731789 1.0 7031 +3681 ITGAD integrin subunit alpha D Novel N 0.005239698906766457 -0.2504624354302024 1.0 7032 +284021 MILR1 mast cell immunoglobulin like receptor 1 Novel U 0.005237801209376887 -0.25047879679720286 1.0 7033 +26015 RPAP1 RNA polymerase II associated protein 1 Novel U 0.005234954853995114 -0.25050333720352413 1.0 7034 +4700 NDUFA6 NADH:ubiquinone oxidoreductase subunit A6 Novel U 0.005232065398589578 -0.2505282492050799 1.0 7035 +4327 MMP19 matrix metallopeptidase 19 Novel U 0.00523139652049059 -0.2505340160676557 1.0 7036 +962 CD48 CD48 molecule Novel N 0.0052313396801660205 -0.25053450612756506 1.0 7037 +5510 PPP1R7 protein phosphatase 1 regulatory subunit 7 Novel N 0.0052303517110826305 -0.25054302409510154 1.0 7038 +10910 SUGT1 SGT1 homolog, MIS12 kinetochore complex assembly cochaperone Novel U 0.005229228372174318 -0.25055270917990263 1.0 7039 +6329 SCN4A sodium voltage-gated channel alpha subunit 4 Novel U 0.0052270830425793936 -0.25057120555610696 1.0 7040 +1277 COL1A1 collagen type I alpha 1 chain Novel U 0.005225371573170989 -0.2505859613223607 1.0 7041 +9686 VGLL4 vestigial like family member 4 Novel N 0.005225056878101283 -0.2505886745270882 1.0 7042 +10052 GJC1 gap junction protein gamma 1 Novel U 0.00522428815866287 -0.25059530219118337 1.0 7043 +132204 SYNPR synaptoporin Novel U 0.005224286346023867 -0.2505953178192029 1.0 7044 +51133 KCTD3 potassium channel tetramerization domain containing 3 Novel U 0.005223085802295334 -0.2506056685403719 1.0 7045 +80155 NAA15 N-alpha-acetyltransferase 15, NatA auxiliary subunit Novel N 0.005222394111115942 -0.2506116320903558 1.0 7046 +27229 TUBGCP4 tubulin gamma complex component 4 Novel U 0.005220451566981868 -0.2506283801122832 1.0 7047 +226 ALDOA aldolase, fructose-bisphosphate A Novel U 0.005219461162268954 -0.2506369190790732 1.0 7048 +136541 PRSS58 serine protease 58 Novel U 0.0052181556225120015 -0.2506481750439149 1.0 7049 +126208 ZNF787 zinc finger protein 787 Novel U 0.005203516007638151 -0.2507743933298295 1.0 7050 +400916 CHCHD10 coiled-coil-helix-coiled-coil-helix domain containing 10 Novel U 0.005203356807389678 -0.2507757659057239 1.0 7051 +7093 TLL2 tolloid like 2 Novel N 0.005197327159087214 -0.2508277516908667 1.0 7052 +51706 CYB5R1 cytochrome b5 reductase 1 Novel N 0.005196943134835882 -0.2508310626306128 1.0 7053 +11262 SP140 SP140 nuclear body protein Novel N 0.005194551617329354 -0.25085168156376164 1.0 7054 +6330 SCN4B sodium voltage-gated channel beta subunit 4 Novel U 0.005190970923776936 -0.2508825532093934 1.0 7055 +6181 RPLP2 ribosomal protein lateral stalk subunit P2 Novel U 0.005190248603390745 -0.25088878083503874 1.0 7056 +6860 SYT4 synaptotagmin 4 Novel U 0.005189638471839542 -0.2508940412028311 1.0 7057 +10913 EDAR ectodysplasin A receptor Novel U 0.005187410823904802 -0.2509132473026068 1.0 7058 +3914 LAMB3 laminin subunit beta 3 Novel U 0.005184063842265021 -0.2509421039555448 1.0 7059 +84617 TUBB6 tubulin beta 6 class V Novel N 0.005182728362877904 -0.25095361805072885 1.0 7060 +124905556 LOC124905556 FAM231A/C-like protein LOC102723383 Novel U 0.005178348738923323 -0.25099137783015346 1.0 7061 +22953 P2RX2 purinergic receptor P2X 2 Novel N 0.005175619169566451 -0.2510149113430552 1.0 7062 +30850 CDR2L cerebellar degeneration related protein 2 like Novel U 0.005174547093211005 -0.25102415445779014 1.0 7063 +2181 ACSL3 acyl-CoA synthetase long chain family member 3 Novel U 0.005171903802165647 -0.2510469441054546 1.0 7064 +6900 CNTN2 contactin 2 Novel U 0.005169905764613978 -0.25106417057467095 1.0 7065 +54101 RIPK4 receptor interacting serine/threonine kinase 4 Novel U 0.005169858850015444 -0.25106457505800356 1.0 7066 +22994 CEP131 centrosomal protein 131 Novel U 0.0051696924217047285 -0.25106600995204187 1.0 7067 +23406 COTL1 coactosin like F-actin binding protein 1 Novel U 0.005166639150999948 -0.2510923343190496 1.0 7068 +8227 AKAP17A A-kinase anchoring protein 17A Novel N 0.005165513480673691 -0.25110203950462373 1.0 7069 +27013 CNPPD1 cyclin Pas1/PHO80 domain containing 1 Novel U 0.005165125725851074 -0.25110538260821547 1.0 7070 +23609 MKRN2 makorin ring finger protein 2 Novel U 0.005161618631358484 -0.25113561970524356 1.0 7071 +1780 DYNC1I1 dynein cytoplasmic 1 intermediate chain 1 Novel U 0.005158021197841006 -0.2511666356777388 1.0 7072 +583 BBS2 Bardet-Biedl syndrome 2 Novel U 0.0051570770140629335 -0.2511747761417526 1.0 7073 +29766 TMOD3 tropomodulin 3 Novel U 0.00515388606745045 -0.25120228750836593 1.0 7074 +94107 TMEM203 transmembrane protein 203 Novel N 0.0051525205770733135 -0.25121406034913535 1.0 7075 +387104 MTCL3 MTCL family member 3 Novel U 0.005151521146144971 -0.25122267713719654 1.0 7076 +117854 TRIM6 tripartite motif containing 6 Novel U 0.005150215739467738 -0.2512339319546656 1.0 7077 +57636 ARHGAP23 Rho GTPase activating protein 23 Novel U 0.005148524943444857 -0.25124850948130667 1.0 7078 +6261 RYR1 ryanodine receptor 1 Novel U 0.005148329521607483 -0.25125019434867213 1.0 7079 +8492 PRSS12 serine protease 12 Novel N 0.00514826291395641 -0.2512507686194859 1.0 7080 +9360 PPIG peptidylprolyl isomerase G Novel N 0.0051460542116872334 -0.2512698113755224 1.0 7081 +375616 KCP kielin cysteine rich BMP regulator Novel U 0.005142078352773202 -0.2513040900161487 1.0 7082 +9156 EXO1 exonuclease 1 Novel U 0.0051395053361409405 -0.25132627377929767 1.0 7083 +219578 ZNF804B zinc finger protein 804B Novel U 0.005139287265710017 -0.2513281539159158 1.0 7084 +6291 SAA4 serum amyloid A4, constitutive Novel U 0.005138415959708007 -0.2513356660500142 1.0 7085 +9699 RIMS2 regulating synaptic membrane exocytosis 2 Novel U 0.005136080639624073 -0.251355800466158 1.0 7086 +9270 ITGB1BP1 integrin subunit beta 1 binding protein 1 Novel U 0.00513598944681879 -0.25135658670265876 1.0 7087 +108 ADCY2 adenylate cyclase 2 Novel U 0.005135539037425772 -0.2513604699948107 1.0 7088 +7840 ALMS1 ALMS1 centrosome and basal body associated protein Novel U 0.005133721637088811 -0.25137613906516043 1.0 7089 +6169 RPL38 ribosomal protein L38 Novel N 0.005131050329801276 -0.25139917026030384 1.0 7090 +121130 OR10P1 olfactory receptor family 10 subfamily P member 1 Novel U 0.005127804534593836 -0.25142715451474246 1.0 7091 +8839 CCN5 cellular communication network factor 5 Novel N 0.005121687794131415 -0.251479891181875 1.0 7092 +55193 PBRM1 polybromo 1 Novel U 0.005121386334340851 -0.2514824902760701 1.0 7093 +10962 MLLT11 MLLT11 transcription factor 7 cofactor Novel U 0.005120702370493643 -0.2514883872033572 1.0 7094 +23266 ADGRL2 adhesion G protein-coupled receptor L2 Novel U 0.005120598658611716 -0.25148928137551124 1.0 7095 +284532 OR14A16 olfactory receptor family 14 subfamily A member 16 Novel U 0.005119414202206528 -0.2514994933966943 1.0 7096 +4502 MT2A metallothionein 2A Novel N 0.005116645797317457 -0.25152336173768736 1.0 7097 +7179 TPTE transmembrane phosphatase with tensin homology Novel N 0.005116417498698292 -0.251525330058619 1.0 7098 +51773 RSF1 remodeling and spacing factor 1 Novel U 0.005116383749703808 -0.25152562103213655 1.0 7099 +55281 TMEM140 transmembrane protein 140 Novel U 0.005108985412587731 -0.25158940723399065 1.0 7100 +80757 TMEM121 transmembrane protein 121 Novel U 0.005105854001912969 -0.2516164052999418 1.0 7101 +29117 BRD7 bromodomain containing 7 Novel N 0.005105468304450551 -0.2516197306656025 1.0 7102 +57546 PDP2 pyruvate dehydrogenase phosphatase catalytic subunit 2 Novel U 0.005104692950785908 -0.2516264155279689 1.0 7103 +79760 GEMIN7 gem nuclear organelle associated protein 7 Novel N 0.005104427231731255 -0.2516287064764605 1.0 7104 +1120 CHKB choline kinase beta Novel U 0.005092251327540805 -0.25173368340171587 1.0 7105 +30001 ERO1A endoplasmic reticulum oxidoreductase 1 alpha Novel U 0.005089559823759332 -0.2517568887248584 1.0 7106 +23368 PPP1R13B protein phosphatase 1 regulatory subunit 13B Novel N 0.005087840969090442 -0.25177170816457134 1.0 7107 +56624 ASAH2 N-acylsphingosine amidohydrolase 2 Novel U 0.005086150939000992 -0.25178627908756845 1.0 7108 +100287441 USP17L20 ubiquitin specific peptidase 17 like family member 20 Novel U 0.005085666492936234 -0.2517904558335033 1.0 7109 +3400 ID4 inhibitor of DNA binding 4 Novel N 0.00508327986866586 -0.2518110325786653 1.0 7110 +55248 PACC1 proton activated chloride channel 1 Novel N 0.005081573857274168 -0.25182574128756685 1.0 7111 +58497 PRUNE1 prune exopolyphosphatase 1 Novel U 0.005079452553471661 -0.2518440305207307 1.0 7112 +4618 MYF6 myogenic factor 6 Novel U 0.005078867398155847 -0.2518490755510537 1.0 7113 +58477 SRPRB SRP receptor subunit beta Novel U 0.005078817186114069 -0.2518495084639343 1.0 7114 +253782 CERS6 ceramide synthase 6 Novel N 0.0050762451546417136 -0.25187168373333557 1.0 7115 +84628 NTNG2 netrin G2 Novel U 0.005069868026723687 -0.251926665381542 1.0 7116 +653 BMP5 bone morphogenetic protein 5 Novel U 0.005069120133988718 -0.2519331134841642 1.0 7117 +53904 MYO3A myosin IIIA Novel U 0.005066093242908224 -0.2519592104141123 1.0 7118 +84455 EFCAB7 EF-hand calcium binding domain 7 Novel U 0.005062426415542456 -0.2519908246791623 1.0 7119 +83694 RPS6KL1 ribosomal protein S6 kinase like 1 Novel U 0.005061117110182657 -0.252002113109881 1.0 7120 +2205 FCER1A Fc epsilon receptor Ia Novel U 0.005060290995990472 -0.2520092356140047 1.0 7121 +392188 USP17L8 ubiquitin specific peptidase 17 like family member 8 Novel U 0.00505908271415484 -0.2520196530507685 1.0 7122 +114904 C1QTNF6 C1q and TNF related 6 Novel U 0.005058274457953881 -0.2520266215887488 1.0 7123 +56851 EMC7 ER membrane protein complex subunit 7 Novel U 0.005058123225299316 -0.25202792547048325 1.0 7124 +538 ATP7A ATPase copper transporting alpha Novel U 0.005057834326293721 -0.2520304162694286 1.0 7125 +200150 PLD5 phospholipase D family member 5 Novel U 0.005057503872227071 -0.2520332653434122 1.0 7126 +81797 OR12D3 olfactory receptor family 12 subfamily D member 3 Novel U 0.0050533546153576255 -0.2520690389682236 1.0 7127 +5222 PGA5 pepsinogen A5 Novel U 0.005050024713820113 -0.2520977483617391 1.0 7128 +134391 GPR151 G protein-coupled receptor 151 Novel U 0.0050498715420257585 -0.2520990689621443 1.0 7129 +11231 SEC63 SEC63 homolog, protein translocation regulator Novel U 0.005046986114657797 -0.25212394623519097 1.0 7130 +497661 C18orf32 chromosome 18 open reading frame 32 Novel N 0.005045363940930324 -0.2521379321213705 1.0 7131 +3026 HABP2 hyaluronan binding protein 2 Novel U 0.005044940367166261 -0.25214158404492987 1.0 7132 +115426 UHRF2 ubiquitin like with PHD and ring finger domains 2 Novel U 0.005044929387370799 -0.2521416787093712 1.0 7133 +8506 CNTNAP1 contactin associated protein 1 Novel U 0.00504486271479503 -0.25214225353994585 1.0 7134 +645073 GAGE12G G antigen 12G Novel U 0.005044802285940301 -0.2521427745390657 1.0 7135 +27445 PCLO piccolo presynaptic cytomatrix protein Novel N 0.005043049325060678 -0.2521578880321055 1.0 7136 +10268 RAMP3 receptor activity modifying protein 3 Novel U 0.005041944753603371 -0.2521674113096789 1.0 7137 +128864 C20orf144 chromosome 20 open reading frame 144 Novel U 0.005041085449222462 -0.25217481996946756 1.0 7138 +8622 PDE8B phosphodiesterase 8B Novel N 0.0050400628618982955 -0.2521836364048975 1.0 7139 +7072 TIA1 TIA1 cytotoxic granule associated RNA binding protein Novel N 0.005038292233835395 -0.2521989022189928 1.0 7140 +51442 VGLL1 vestigial like family member 1 Novel U 0.00503714307872184 -0.2522088098832267 1.0 7141 +23071 ERP44 endoplasmic reticulum protein 44 Novel U 0.005037130351843086 -0.25220891961048625 1.0 7142 +333926 PPM1J protein phosphatase, Mg2+/Mn2+ dependent 1J Novel U 0.0050370346600205704 -0.25220974463613877 1.0 7143 +259230 SGMS1 sphingomyelin synthase 1 Novel U 0.005035292350754398 -0.2522247662942223 1.0 7144 +4224 MEP1A meprin A subunit alpha Novel N 0.005033929156149778 -0.25223651934154256 1.0 7145 +107986096 MDFIC2 MyoD family inhibitor domain containing 2 Novel U 0.005033696720961985 -0.2522385233267049 1.0 7146 +9585 KIF20B kinesin family member 20B Novel U 0.005029020089281607 -0.25227884381598265 1.0 7147 +9701 PPP6R2 protein phosphatase 6 regulatory subunit 2 Novel U 0.0050287238878382 -0.2522813975743154 1.0 7148 +1135 CHRNA2 cholinergic receptor nicotinic alpha 2 subunit Novel N 0.005028544764367923 -0.2522829419221401 1.0 7149 +7280 TUBB2A tubulin beta 2A class IIa Novel N 0.005027595015097787 -0.25229113037012585 1.0 7150 +54531 MIER2 MIER family member 2 Novel U 0.005025676715873732 -0.2523076693598478 1.0 7151 +196500 PIANP PILR alpha associated neural protein Novel U 0.005021021899688741 -0.2523478017625906 1.0 7152 +59307 SIGIRR single Ig and TIR domain containing Novel U 0.005020190704865401 -0.2523549680703635 1.0 7153 +55131 RBM28 RNA binding motif protein 28 Novel U 0.005019962494273293 -0.2523569356323528 1.0 7154 +712 C1QA complement C1q A chain Novel U 0.0050166310105293835 -0.2523856586671684 1.0 7155 +51016 EMC9 ER membrane protein complex subunit 9 Novel U 0.005016185020822497 -0.252389503854137 1.0 7156 +10950 BTG3 BTG anti-proliferation factor 3 Novel N 0.005016177556157876 -0.2523895682121943 1.0 7157 +64132 XYLT2 xylosyltransferase 2 Novel U 0.00501588813389153 -0.252392063522534 1.0 7158 +57509 MTUS1 microtubule associated scaffold protein 1 Novel U 0.005002160933873933 -0.25251041524637086 1.0 7159 +91179 SCARF2 scavenger receptor class F member 2 Novel U 0.004999440534110212 -0.25253386970184244 1.0 7160 +9093 DNAJA3 DnaJ heat shock protein family (Hsp40) member A3 Novel N 0.004997754942094011 -0.2525484023611282 1.0 7161 +4659 PPP1R12A protein phosphatase 1 regulatory subunit 12A Novel U 0.004996272009920903 -0.25256118774917496 1.0 7162 +56946 EMSY EMSY transcriptional repressor, BRCA2 interacting Novel U 0.004994788253656548 -0.2525739802422846 1.0 7163 +7051 TGM1 transglutaminase 1 Novel U 0.004994173062105264 -0.2525792842358515 1.0 7164 +83473 KATNAL2 katanin catalytic subunit A1 like 2 Novel U 0.0049930101991746065 -0.2525893100846956 1.0 7165 +9814 SFI1 SFI1 centrin binding protein Novel U 0.004992038390381398 -0.25259768872314836 1.0 7166 +339344 MYPOP Myb related transcription factor, partner of profilin Novel U 0.004991679834670135 -0.2526007800809245 1.0 7167 +3198 HOXA1 homeobox A1 Novel U 0.0049911600928179405 -0.25260526113635307 1.0 7168 +91875 TTC5 tetratricopeptide repeat domain 5 Novel U 0.0049894928340889055 -0.2526196357316391 1.0 7169 +112942 CFAP36 cilia and flagella associated protein 36 Novel U 0.004988745476434834 -0.2526260792209573 1.0 7170 +23336 SYNM synemin Novel N 0.004988597147337928 -0.25262735806910486 1.0 7171 +221935 SDK1 sidekick cell adhesion molecule 1 Novel U 0.00498433600231158 -0.25266409635941467 1.0 7172 +5054 SERPINE1 serpin family E member 1 Novel U 0.004984240271314445 -0.2526649217228188 1.0 7173 +57121 LPAR5 lysophosphatidic acid receptor 5 Novel U 0.004983040774032935 -0.2526752634218413 1.0 7174 +9746 CLSTN3 calsyntenin 3 Novel U 0.0049813028861766155 -0.2526902469598802 1.0 7175 +5961 PRPH2 peripherin 2 Novel U 0.004981233575568565 -0.2526908445347631 1.0 7176 +440093 H3-5 H3.5 histone Novel N 0.004979615105634376 -0.2527047984879687 1.0 7177 +23530 NNT nicotinamide nucleotide transhydrogenase Novel U 0.004976131823947348 -0.2527348302782639 1.0 7178 +754 PTTG1IP PTTG1 interacting protein Novel U 0.004972270183072103 -0.25276812416586214 1.0 7179 +83543 AIF1L allograft inflammatory factor 1 like Novel U 0.004970434585151412 -0.25278395013021804 1.0 7180 +57827 C6orf47 chromosome 6 open reading frame 47 Novel U 0.004967444668162323 -0.2528097282808485 1.0 7181 +23567 ZNF346 zinc finger protein 346 Novel U 0.004964688289290796 -0.2528334929371932 1.0 7182 +55729 ATF7IP activating transcription factor 7 interacting protein Novel U 0.0049629198179894415 -0.2528487401563495 1.0 7183 +3801 KIFC3 kinesin family member C3 Novel U 0.004961817579373939 -0.25285824332087375 1.0 7184 +4718 NDUFC2 NADH:ubiquinone oxidoreductase subunit C2 Novel N 0.004959114131386892 -0.2528815516233069 1.0 7185 +55626 AMBRA1 autophagy and beclin 1 regulator 1 Novel U 0.004958388534425279 -0.25288780749858425 1.0 7186 +51741 WWOX WW domain containing oxidoreductase Novel U 0.004956540767880786 -0.2529037383770962 1.0 7187 +23141 ANKLE2 ankyrin repeat and LEM domain containing 2 Novel U 0.004955746415231727 -0.25291058704290054 1.0 7188 +9497 SLC4A7 solute carrier family 4 member 7 Novel U 0.004954186115229908 -0.2529240394727246 1.0 7189 +9605 VPS9D1 VPS9 domain containing 1 Novel N 0.004952979059345482 -0.2529344463397118 1.0 7190 +8663 EIF3C eukaryotic translation initiation factor 3 subunit C Novel U 0.00495255386705145 -0.25293811221774204 1.0 7191 +253943 YTHDF3 YTH N6-methyladenosine RNA binding protein F3 Novel N 0.004952328169971355 -0.2529400581089988 1.0 7192 +9698 PUM1 pumilio RNA binding family member 1 Novel U 0.004952204185799428 -0.2529411270626425 1.0 7193 +54464 XRN1 5'-3' exoribonuclease 1 Novel N 0.004949526742776458 -0.2529642111582218 1.0 7194 +4099 MAG myelin associated glycoprotein Novel N 0.004946537060167698 -0.2529899872880967 1.0 7195 +51294 PCDH12 protocadherin 12 Novel N 0.004945546588885905 -0.25299852682882323 1.0 7196 +83933 HDAC10 histone deacetylase 10 Novel U 0.004944556107748133 -0.2530070664545249 1.0 7197 +3758 KCNJ1 potassium inwardly rectifying channel subfamily J member 1 Novel U 0.004941432013957563 -0.2530340014365364 1.0 7198 +3728 JUP junction plakoglobin Novel U 0.004941305088134306 -0.25303509575219896 1.0 7199 +55068 ENOX1 ecto-NOX disulfide-thiol exchanger 1 Novel U 0.004940212998936328 -0.2530445114115467 1.0 7200 +441864 TARM1 T cell-interacting, activating receptor on myeloid cells 1 Novel U 0.00493981374718728 -0.25304795363812493 1.0 7201 +727832 GOLGA6L6 golgin A6 family like 6 Novel U 0.004939333104872076 -0.2530520975892934 1.0 7202 +9445 ITM2B integral membrane protein 2B Novel N 0.004935847659003137 -0.25308214803850376 1.0 7203 +4208 MEF2C myocyte enhancer factor 2C Novel U 0.004935164067086329 -0.2530880417591206 1.0 7204 +7466 WFS1 wolframin ER transmembrane glycoprotein Novel U 0.0049319594753184145 -0.2531156707700944 1.0 7205 +388428 PVALEF parvalbumin like EF-hand containing Novel U 0.004929184883965205 -0.25313959244889084 1.0 7206 +8935 SKAP2 src kinase associated phosphoprotein 2 Novel N 0.0049273179023174365 -0.25315568899415153 1.0 7207 +2495 FTH1 ferritin heavy chain 1 Novel N 0.004927277049216028 -0.2531560412171081 1.0 7208 +5680 PSG11 pregnancy specific beta-1-glycoprotein 11 Novel N 0.004924827005662195 -0.2531771647439526 1.0 7209 +7226 TRPM2 transient receptor potential cation channel subfamily M member 2 Novel U 0.004923538794669919 -0.2531882713054805 1.0 7210 +152110 NEK10 NIMA related kinase 10 Novel U 0.004918151686341825 -0.2532347173073096 1.0 7211 +493829 TRIM72 tripartite motif containing 72 Novel U 0.004917720541100601 -0.2532384345098314 1.0 7212 +4939 OAS2 2'-5'-oligoadenylate synthetase 2 Novel U 0.004916668060210743 -0.25324750867845 1.0 7213 +727924 LINC02203 long intergenic non-protein coding RNA 2203 Novel U 0.004916505641105734 -0.25324890900634184 1.0 7214 +55192 DNAJC17 DnaJ heat shock protein family (Hsp40) member C17 Novel U 0.004911322385921908 -0.2532935974486539 1.0 7215 +9851 KIAA0753 KIAA0753 Novel N 0.004905647616705162 -0.25334252357476245 1.0 7216 +27189 IL17C interleukin 17C Novel N 0.004905023033374317 -0.2533479085413827 1.0 7217 +1281 COL3A1 collagen type III alpha 1 chain Novel U 0.004902440010950339 -0.25337017857141036 1.0 7218 +6276 S100A5 S100 calcium binding protein A5 Novel U 0.004901108345203366 -0.2533816597865545 1.0 7219 +57534 MIB1 MIB E3 ubiquitin protein ligase 1 Novel U 0.004899140344216085 -0.25339862728969126 1.0 7220 +63924 CIDEC cell death inducing DFFA like effector c Novel U 0.0048990512568335125 -0.25339939537388073 1.0 7221 +2936 GSR glutathione-disulfide reductase Novel N 0.00489857082279379 -0.25340353752936173 1.0 7222 +84919 PPP1R15B protein phosphatase 1 regulatory subunit 15B Novel U 0.004897256273488771 -0.25341487117177375 1.0 7223 +51208 CLDN18 claudin 18 Novel U 0.004895051984541884 -0.2534338758774941 1.0 7224 +5046 PCSK6 proprotein convertase subtilisin/kexin type 6 Novel U 0.004890895063858444 -0.25346971557736786 1.0 7225 +6007 RHD Rh blood group D antigen Novel N 0.004888872757337928 -0.2534871512862177 1.0 7226 +56886 UGGT1 UDP-glucose glycoprotein glucosyltransferase 1 Novel U 0.004885967486981171 -0.2535121996394502 1.0 7227 +344561 GPR148 G protein-coupled receptor 148 Novel U 0.004882481122459893 -0.25354225800900027 1.0 7228 +390093 OR10A6 olfactory receptor family 10 subfamily A member 6 (gene/pseudogene) Novel U 0.004881889123892592 -0.2535473620397465 1.0 7229 +909 CD1A CD1a molecule Novel U 0.004879117123692917 -0.25357126137840896 1.0 7230 +54212 SNTG1 syntrophin gamma 1 Novel N 0.004878915839110404 -0.25357299679257145 1.0 7231 +51172 NAGPA N-acetylglucosamine-1-phosphodiester alpha-N-acetylglucosaminidase Novel U 0.004876743367245691 -0.2535917271811318 1.0 7232 +4585 MUC4 mucin 4, cell surface associated Novel N 0.00487601169756321 -0.25359803541355286 1.0 7233 +6462 SHBG sex hormone binding globulin Novel U 0.004875477488886457 -0.253602641197522 1.0 7234 +51371 POMP proteasome maturation protein Novel U 0.00487286128485128 -0.25362519730926186 1.0 7235 +83540 NUF2 NUF2 component of NDC80 kinetochore complex Novel U 0.00487253928811272 -0.253627973466747 1.0 7236 +80727 TTYH3 tweety family member 3 Novel N 0.004872504192583254 -0.25362827604967764 1.0 7237 +29956 CERS2 ceramide synthase 2 Novel N 0.0048711745863338545 -0.253639739508463 1.0 7238 +4539 ND4L NADH dehydrogenase subunit 4L Novel U 0.004867869985467043 -0.2536682307673271 1.0 7239 +9162 DGKI diacylglycerol kinase iota Novel U 0.004866068408140441 -0.2536837634165167 1.0 7240 +6709 SPTAN1 spectrin alpha, non-erythrocytic 1 Novel N 0.004865027891561926 -0.25369273443249885 1.0 7241 +57545 CC2D2A coiled-coil and C2 domain containing 2A Novel U 0.004863142191448937 -0.2537089923626467 1.0 7242 +83541 FAM110A family with sequence similarity 110 member A Novel N 0.004861104927457291 -0.25372655703024194 1.0 7243 +6156 RPL30 ribosomal protein L30 Novel N 0.004858934188867898 -0.25374527247503215 1.0 7244 +283652 SLC24A5 solute carrier family 24 member 5 Novel N 0.004857687681464981 -0.2537560194809563 1.0 7245 +80173 IFT74 intraflagellar transport 74 Novel N 0.0048566035985131255 -0.25376536611289646 1.0 7246 +204851 HIPK1 homeodomain interacting protein kinase 1 Novel U 0.004853439456294192 -0.2537926463802194 1.0 7247 +56103 PCDHGB2 protocadherin gamma subfamily B, 2 Novel U 0.004851976878745375 -0.25380525627691547 1.0 7248 +1001 CDH3 cadherin 3 Novel U 0.0048508382405730134 -0.2538150732672961 1.0 7249 +1191 CLU clusterin Novel U 0.004849741855733973 -0.25382452596234845 1.0 7250 +5636 PRPSAP2 phosphoribosyl pyrophosphate synthetase associated protein 2 Novel N 0.0048458649997936065 -0.25385795102958875 1.0 7251 +56992 KIF15 kinesin family member 15 Novel U 0.004843510221055604 -0.2538782532123019 1.0 7252 +8565 YARS1 tyrosyl-tRNA synthetase 1 Novel U 0.004840624990265106 -0.25390312879051774 1.0 7253 +64400 AKTIP AKT interacting protein Novel U 0.004839607473064949 -0.2539119015128878 1.0 7254 +827 CAPN6 calpain 6 Novel U 0.004838355732514741 -0.25392269363740877 1.0 7255 +134728 IRAK1BP1 interleukin 1 receptor associated kinase 1 binding protein 1 Novel U 0.0048359992872648834 -0.25394301018827786 1.0 7256 +7027 TFDP1 transcription factor Dp-1 Novel U 0.004835027624158737 -0.25395138757066127 1.0 7257 +94031 HTRA3 HtrA serine peptidase 3 Novel N 0.004834926288434617 -0.25395226125630876 1.0 7258 +11137 PWP1 PWP1 homolog, endonuclein Novel N 0.004833906797360826 -0.2539610509968141 1.0 7259 +5122 PCSK1 proprotein convertase subtilisin/kexin type 1 Novel N 0.0048320079928377 -0.2539774219091817 1.0 7260 +51115 RMDN1 regulator of microtubule dynamics 1 Novel U 0.004828392555908374 -0.25400859310159246 1.0 7261 +354 KLK3 kallikrein related peptidase 3 Novel U 0.004827962565144841 -0.25401230035056044 1.0 7262 +10482 NXF1 nuclear RNA export factor 1 Novel N 0.004827190021815156 -0.2540189609830776 1.0 7263 +222663 SCUBE3 signal peptide, CUB domain and EGF like domain containing 3 Novel U 0.004824931756208898 -0.254038431059061 1.0 7264 +729233 PRR20B proline rich 20B Novel U 0.0048239763737630125 -0.25404666807456666 1.0 7265 +401397 SMIM30 small integral membrane protein 30 Novel U 0.004822973852440897 -0.2540553115070586 1.0 7266 +7991 TUSC3 tumor suppressor candidate 3 Novel N 0.004822381008300016 -0.25406042282808183 1.0 7267 +7278 TUBA3C tubulin alpha 3c Novel U 0.004821069270491126 -0.25407173223063334 1.0 7268 +51335 NGRN neugrin, neurite outgrowth associated Novel N 0.004820611024825703 -0.25407568308473133 1.0 7269 +3039 HBA1 hemoglobin subunit alpha 1 Novel U 0.004820243260412417 -0.2540788538371224 1.0 7270 +2581 GALC galactosylceramidase Novel N 0.004820098613460016 -0.25408010093894523 1.0 7271 +283685 GOLGA6L2 golgin A6 family like 2 Novel U 0.004816866629634135 -0.25410796611587244 1.0 7272 +8714 ABCC3 ATP binding cassette subfamily C member 3 Novel N 0.004814888155212554 -0.2541250239177593 1.0 7273 +6203 RPS9 ribosomal protein S9 Novel N 0.004814475404933041 -0.25412858252454235 1.0 7274 +6258 RXRG retinoid X receptor gamma Novel U 0.004813925756992271 -0.25413332142112793 1.0 7275 +2013 EMP2 epithelial membrane protein 2 Novel U 0.004813283762131689 -0.2541388565046371 1.0 7276 +142891 SAMD8 sterile alpha motif domain containing 8 Novel N 0.004812875381975264 -0.2541423774335543 1.0 7277 +729384 TRIM49D2 tripartite motif containing 49D2 Novel U 0.004810151792129441 -0.2541658593929389 1.0 7278 +27020 NPTN neuroplastin Novel U 0.004809936150797783 -0.2541677185866054 1.0 7279 +22838 RNF44 ring finger protein 44 Novel U 0.004809833191892137 -0.2541686062668281 1.0 7280 +51303 FKBP11 FKBP prolyl isomerase 11 Novel U 0.0048090139944332545 -0.25417566913699075 1.0 7281 +143686 SESN3 sestrin 3 Novel N 0.004808882811808852 -0.254176800153492 1.0 7282 +9911 TMCC2 transmembrane and coiled-coil domain family 2 Novel N 0.004807352421696161 -0.25418999470939174 1.0 7283 +219899 TBCEL tubulin folding cofactor E like Novel U 0.00480239672125825 -0.25423272124422003 1.0 7284 +6514 SLC2A2 solute carrier family 2 member 2 Novel N 0.004802089542095987 -0.25423536964909016 1.0 7285 +92291 CAPN13 calpain 13 Novel U 0.004801249236065157 -0.2542426145109099 1.0 7286 +8452 CUL3 cullin 3 Novel U 0.004801090905928277 -0.254243979584968 1.0 7287 +54868 TMEM104 transmembrane protein 104 Novel U 0.004800496190094895 -0.25424910704315207 1.0 7288 +113277 TMEM106A transmembrane protein 106A Novel U 0.004798569324283286 -0.25426571989137414 1.0 7289 +4750 NEK1 NIMA related kinase 1 Novel U 0.004796786490678654 -0.25428109093792056 1.0 7290 +401447 USP17L1 ubiquitin specific peptidase 17 like family member 1 Novel U 0.004796657436102702 -0.25428220360703835 1.0 7291 +644538 SMIM10 small integral membrane protein 10 Novel U 0.004795666042724053 -0.25429075109780214 1.0 7292 +9774 BCLAF1 BCL2 associated transcription factor 1 Novel N 0.004793893799122532 -0.2543060308405778 1.0 7293 +54828 BCAS3 BCAS3 microtubule associated cell migration factor Novel N 0.004790860028685101 -0.25433218708223926 1.0 7294 +221895 JAZF1 JAZF zinc finger 1 Novel U 0.004788757856129379 -0.2543503113716394 1.0 7295 +6695 SPOCK1 SPARC (osteonectin), cwcv and kazal like domains proteoglycan 1 Novel U 0.004787456577359286 -0.2543615305995544 1.0 7296 +4982 TNFRSF11B TNF receptor superfamily member 11b Novel U 0.0047857446845875635 -0.2543762900159174 1.0 7297 +1845 DUSP3 dual specificity phosphatase 3 Novel U 0.004784002889213913 -0.2543913072433766 1.0 7298 +55920 RCC2 regulator of chromosome condensation 2 Novel U 0.004782463539465263 -0.25440457904651975 1.0 7299 +9353 SLIT2 slit guidance ligand 2 Novel U 0.004782341423451586 -0.25440563189347387 1.0 7300 +59342 SCPEP1 serine carboxypeptidase 1 Novel U 0.004782000835510924 -0.25440856833862246 1.0 7301 +342510 CD300E CD300e molecule Novel U 0.004781563863852051 -0.2544123357747368 1.0 7302 +9182 RASSF9 Ras association domain family member 9 Novel U 0.00478155858601391 -0.2544123812786445 1.0 7303 +6741 SSB small RNA binding exonuclease protection factor La Novel U 0.004778572090483144 -0.2544381299305068 1.0 7304 +8626 TP63 tumor protein p63 Novel U 0.004778424270765007 -0.2544394043869463 1.0 7305 +100129361 SMIM10L1 small integral membrane protein 10 like 1 Novel U 0.004777977732922092 -0.25444325429977627 1.0 7306 +81300 OR4P4 olfactory receptor family 4 subfamily P member 4 Novel U 0.004777391920507241 -0.2544483049954064 1.0 7307 +221188 ADGRG5 adhesion G protein-coupled receptor G5 Novel N 0.004777129553977972 -0.25445056703944857 1.0 7308 +6513 SLC2A1 solute carrier family 2 member 1 Novel U 0.004776650033172132 -0.2544547013213061 1.0 7309 +85300 ATCAY ATCAY kinesin light chain interacting caytaxin Novel N 0.004773636212782311 -0.25448068555975334 1.0 7310 +2002 ELK1 ETS transcription factor ELK1 Novel N 0.0047718681039383305 -0.25449592965391293 1.0 7311 +5718 PSMD12 proteasome 26S subunit, non-ATPase 12 Novel U 0.004770089850349607 -0.25451126121296175 1.0 7312 +10266 RAMP2 receptor activity modifying protein 2 Novel U 0.004768752954142609 -0.2545227875235339 1.0 7313 +341405 ANKRD33 ankyrin repeat domain 33 Novel U 0.004767937583830331 -0.2545298173972081 1.0 7314 +23101 MCF2L2 MCF.2 cell line derived transforming sequence-like 2 Novel U 0.0047656660752810045 -0.2545494016497999 1.0 7315 +5256 PHKA2 phosphorylase kinase regulatory subunit alpha 2 Novel U 0.004765030416327358 -0.25455488210705557 1.0 7316 +114905 C1QTNF7 C1q and TNF related 7 Novel U 0.004759981027378216 -0.2545984163955986 1.0 7317 +6687 SPG7 SPG7 matrix AAA peptidase subunit, paraplegin Novel N 0.0047591500697049885 -0.2546055806587357 1.0 7318 +10682 EBP EBP cholestenol delta-isomerase Novel U 0.004757678576264985 -0.254618267425521 1.0 7319 +57418 WDR18 WD repeat domain 18 Novel U 0.004756661680887668 -0.25462703478672455 1.0 7320 +54205 CYCS cytochrome c, somatic Novel N 0.004753950288063904 -0.2546504115871121 1.0 7321 +5371 PML PML nuclear body scaffold Novel U 0.004753391336170238 -0.2546552306995365 1.0 7322 +54822 TRPM7 transient receptor potential cation channel subfamily M member 7 Novel N 0.004752703059424355 -0.25466116481131806 1.0 7323 +102723713 LOC102723713 TP53-target gene 3 protein Novel U 0.004752649365598928 -0.2546616277430733 1.0 7324 +4501 MT1X metallothionein 1X Novel N 0.004751768733867095 -0.2546692202807645 1.0 7325 +55279 ZNF654 zinc finger protein 654 Novel U 0.004751625345651698 -0.25467045653014153 1.0 7326 +113523636 SMIM40 small integral membrane protein 40 Novel U 0.004747939052789931 -0.2547022386207498 1.0 7327 +5074 PAWR pro-apoptotic WT1 regulator Novel U 0.0047471734370593 -0.2547088395256249 1.0 7328 +111 ADCY5 adenylate cyclase 5 Novel U 0.004747153437254256 -0.25470901195783247 1.0 7329 +7126 TNFAIP1 TNF alpha induced protein 1 Novel U 0.004745211012050825 -0.25472575895437627 1.0 7330 +92255 LMBRD2 LMBR1 domain containing 2 Novel U 0.004743503246172318 -0.25474048278992695 1.0 7331 +80764 THAP7 THAP domain containing 7 Novel N 0.0047428363649806935 -0.2547462324357777 1.0 7332 +55929 DMAP1 DNA methyltransferase 1 associated protein 1 Novel U 0.004740883979192404 -0.2547630653094404 1.0 7333 +55337 SHFL shiftless antiviral inhibitor of ribosomal frameshifting Novel U 0.004739725891694068 -0.2547730499859663 1.0 7334 +128408 BHLHE23 basic helix-loop-helix family member e23 Novel U 0.004738067993644006 -0.2547873438763386 1.0 7335 +93663 ARHGAP18 Rho GTPase activating protein 18 Novel U 0.004737824277108337 -0.254789445125835 1.0 7336 +5933 RBL1 RB transcriptional corepressor like 1 Novel N 0.00473711857231249 -0.25479552949693773 1.0 7337 +5711 PSMD5 proteasome 26S subunit, non-ATPase 5 Novel N 0.004733573312281822 -0.2548260956455727 1.0 7338 +2182 ACSL4 acyl-CoA synthetase long chain family member 4 Novel N 0.004733244120983387 -0.25482893383235455 1.0 7339 +1419 CRYGB crystallin gamma B Novel N 0.004733141172390682 -0.2548298214236622 1.0 7340 +440672 NUDT4B nudix hydrolase 4B Novel U 0.004731779830339074 -0.25484155849883644 1.0 7341 +79962 DNAJC22 DnaJ heat shock protein family (Hsp40) member C22 Novel U 0.00473077947048162 -0.2548501832958406 1.0 7342 +54872 PIGG phosphatidylinositol glycan anchor biosynthesis class G (EMM blood group) Novel U 0.004729550740195814 -0.2548607770328933 1.0 7343 +84298 LLPH LLP homolog, long-term synaptic facilitation factor Novel U 0.004728837466151181 -0.25486692666374605 1.0 7344 +51001 MTERF3 mitochondrial transcription termination factor 3 Novel N 0.004728746685480721 -0.25486770934694625 1.0 7345 +166 TLE5 TLE family member 5, transcriptional modulator Novel U 0.004727977291359262 -0.25487434282795246 1.0 7346 +4535 ND1 NADH dehydrogenase subunit 1 Novel N 0.0047276340350330265 -0.25487730227910604 1.0 7347 +2022 ENG endoglin Novel U 0.004727539187735905 -0.2548781200235187 1.0 7348 +84959 UBASH3B ubiquitin associated and SH3 domain containing B Novel U 0.004725798588838634 -0.2548931269353242 1.0 7349 +6662 SOX9 SRY-box transcription factor 9 Novel U 0.004725430778567266 -0.2548962980830896 1.0 7350 +79586 CHPF chondroitin polymerizing factor Novel N 0.004724073534924279 -0.25490799982303713 1.0 7351 +11266 DUSP12 dual specificity phosphatase 12 Novel N 0.0047218346803999355 -0.2549273025426039 1.0 7352 +126382 NR2C2AP nuclear receptor 2C2 associated protein Novel U 0.004714835919285171 -0.2549876437222759 1.0 7353 +3958 LGALS3 galectin 3 Novel U 0.004712938385024837 -0.2550040036828259 1.0 7354 +113263 GLCCI1 glucocorticoid induced 1 Novel U 0.004712739895886616 -0.25500571499552194 1.0 7355 +80312 TET1 tet methylcytosine dioxygenase 1 Novel N 0.004707402672836391 -0.25505173090172906 1.0 7356 +5594 MAPK1 mitogen-activated protein kinase 1 Novel U 0.004706486227384044 -0.2550596322143746 1.0 7357 +1672 DEFB1 defensin beta 1 Novel U 0.004705787445938234 -0.255065656894469 1.0 7358 +56241 SUSD2 sushi domain containing 2 Novel U 0.004702709718198244 -0.25509219212256073 1.0 7359 +81562 LMAN2L lectin, mannose binding 2 like Novel U 0.0047012375727235045 -0.25510488451099034 1.0 7360 +29904 EEF2K eukaryotic elongation factor 2 kinase Novel U 0.0047002810292191095 -0.25511313153678766 1.0 7361 +26058 GIGYF2 GRB10 interacting GYF protein 2 Novel U 0.004699170656412878 -0.25512270483181876 1.0 7362 +9452 ITM2A integral membrane protein 2A Novel U 0.004698856488788452 -0.2551254134890742 1.0 7363 +54982 CLN6 CLN6 transmembrane ER protein Novel U 0.004696549015951024 -0.2551453078147682 1.0 7364 +2220 FCN2 ficolin 2 Novel U 0.00469372213793993 -0.25516968029315124 1.0 7365 +4969 OGN osteoglycin Novel U 0.004691790838524528 -0.2551863313665504 1.0 7366 +165631 PARP15 poly(ADP-ribose) polymerase family member 15 Novel N 0.004689386927479685 -0.2552070571529994 1.0 7367 +774 CACNA1B calcium voltage-gated channel subunit alpha1 B Novel U 0.00468938568257864 -0.2552070678861558 1.0 7368 +101059918 GOLGA8R golgin A8 family member R Novel U 0.004685665834034435 -0.2552391392836043 1.0 7369 +5797 PTPRM protein tyrosine phosphatase receptor type M Novel U 0.004684637493573481 -0.2552480053208216 1.0 7370 +721 C4B complement C4B (Chido/Rodgers blood group) Novel U 0.0046825604280563244 -0.2552659131450073 1.0 7371 +199786 NIBAN3 niban apoptosis regulator 3 Novel U 0.004681841225967343 -0.255272113885647 1.0 7372 +2737 GLI3 GLI family zinc finger 3 Novel U 0.004676459432706513 -0.2553185140625903 1.0 7373 +9092 SART1 spliceosome associated factor 1, recruiter of U4/U6.U5 tri-snRNP Novel U 0.004676454629592377 -0.2553185554735727 1.0 7374 +728734 NPIPB8 nuclear pore complex interacting protein family member B8 Novel U 0.004675320551251596 -0.25532833315047876 1.0 7375 +26595 OR8B2 olfactory receptor family 8 subfamily B member 2 Novel U 0.004673759975508292 -0.25534178795766166 1.0 7376 +138240 C9orf57 chromosome 9 open reading frame 57 Novel U 0.004673051103999135 -0.2553478996311989 1.0 7377 +84957 RELT RELT TNF receptor Novel N 0.00467106561068171 -0.25536501794786093 1.0 7378 +6102 RP2 RP2 activator of ARL3 GTPase Novel U 0.0046691157199148575 -0.2553818293102112 1.0 7379 +147991 DPY19L3 dpy-19 like C-mannosyltransferase 3 Novel U 0.004667615372152072 -0.25539476485015034 1.0 7380 +83648 FAM167A family with sequence similarity 167 member A Novel U 0.004663576331715362 -0.2554295882225583 1.0 7381 +23300 ATMIN ATM interactor Novel N 0.004659566692929796 -0.25546415810291456 1.0 7382 +10492 SYNCRIP synaptotagmin binding cytoplasmic RNA interacting protein Novel U 0.004658970418240406 -0.25546929900107873 1.0 7383 +3960 LGALS4 galectin 4 Novel N 0.00465831279142945 -0.25547496885848725 1.0 7384 +22900 CARD8 caspase recruitment domain family member 8 Novel U 0.004655512051064391 -0.25549911598607333 1.0 7385 +200844 CFAP20DC CFAP20 domain containing Novel U 0.004649808381925628 -0.25554829127847833 1.0 7386 +116832 RPL39L ribosomal protein L39 like Novel U 0.004648968523845766 -0.2555555322782017 1.0 7387 +4607 MYBPC3 myosin binding protein C3 Novel U 0.0046472765800413445 -0.25557011970066457 1.0 7388 +283284 IGSF22 immunoglobulin superfamily member 22 Novel U 0.004645410175210229 -0.25558621127278824 1.0 7389 +90693 CCDC126 coiled-coil domain containing 126 Novel U 0.00463933602188719 -0.2556385807666187 1.0 7390 +9715 FAM131B family with sequence similarity 131 member B Novel U 0.004638642820485543 -0.2556445573372774 1.0 7391 +692094 MSMP microseminoprotein, prostate associated Novel U 0.004638456545901808 -0.25564616333981716 1.0 7392 +64240 ABCG5 ATP binding cassette subfamily G member 5 Novel U 0.004636685821134581 -0.25566142998766767 1.0 7393 +10816 SPINT3 serine peptidase inhibitor, Kunitz type 3 Novel U 0.004633561014179794 -0.2556883711183631 1.0 7394 +55716 LMBR1L limb development membrane protein 1 like Novel U 0.0046279355878372525 -0.2557368718252883 1.0 7395 +8288 EPX eosinophil peroxidase Novel U 0.004627713813812703 -0.25573878389315896 1.0 7396 +57582 KCNT1 potassium sodium-activated channel subfamily T member 1 Novel N 0.004625265625542557 -0.25575989142431443 1.0 7397 +3938 LCT lactase Novel N 0.004622184971247177 -0.2557864518842725 1.0 7398 +152789 JAKMIP1 janus kinase and microtubule interacting protein 1 Novel N 0.004621719979989926 -0.25579046089680196 1.0 7399 +91147 TMEM67 transmembrane protein 67 Novel U 0.004621210258155784 -0.25579485556269677 1.0 7400 +23131 GPATCH8 G-patch domain containing 8 Novel U 0.0046208940015615 -0.25579758223041194 1.0 7401 +64420 SUSD1 sushi domain containing 1 Novel U 0.004620405456612866 -0.255801794315671 1.0 7402 +254251 LCORL ligand dependent nuclear receptor corepressor like Novel U 0.004619649422768909 -0.25580831260844716 1.0 7403 +643155 SMIM15 small integral membrane protein 15 Novel U 0.004617034278238819 -0.2558308595854579 1.0 7404 +728113 ANXA8L1 annexin A8 like 1 Novel U 0.004614673031397524 -0.25585121753418116 1.0 7405 +4899 NRF1 nuclear respiratory factor 1 Novel N 0.004613354818700822 -0.2558625827612368 1.0 7406 +1495 CTNNA1 catenin alpha 1 Novel N 0.0046092908623339614 -0.2558976209511808 1.0 7407 +4316 MMP7 matrix metallopeptidase 7 Novel U 0.004608549428360086 -0.25590401336833846 1.0 7408 +23670 CEMIP2 cell migration inducing hyaluronidase 2 Novel U 0.004604913030253561 -0.25593536528161376 1.0 7409 +346389 MACC1 MET transcriptional regulator MACC1 Novel N 0.004601691952803472 -0.25596313642710167 1.0 7410 +190 NR0B1 nuclear receptor subfamily 0 group B member 1 Novel U 0.004601074443695312 -0.2559684604019357 1.0 7411 +6468 FBXW4 F-box and WD repeat domain containing 4 Novel N 0.0045965643761350095 -0.2560073448262683 1.0 7412 +55532 SLC30A10 solute carrier family 30 member 10 Novel U 0.004596556579031536 -0.2560074120505118 1.0 7413 +402055 SRRD SRR1 domain containing Novel U 0.004594706436964575 -0.25602336341005255 1.0 7414 +10677 AVIL advillin Novel U 0.004594198761242031 -0.2560277404349984 1.0 7415 +146439 BICDL2 BICD family like cargo adaptor 2 Novel U 0.004593841967400284 -0.25603081660247395 1.0 7416 +327657 SERPINA9 serpin family A member 9 Novel U 0.004592046755142641 -0.256046294373984 1.0 7417 +387715 ARMS2 age-related maculopathy susceptibility 2 Novel N 0.004591403984201709 -0.2560518361486208 1.0 7418 +113419 TEX261 testis expressed 261 Novel U 0.0045904131483348945 -0.25606037883268795 1.0 7419 +59339 PLEKHA2 pleckstrin homology domain containing A2 Novel U 0.004587012627876018 -0.25608969708096396 1.0 7420 +392433 MAGEB6B MAGE family member B6B Novel U 0.0045843731046499 -0.2561124542436423 1.0 7421 +221785 ZSCAN25 zinc finger and SCAN domain containing 25 Novel U 0.004583047696876311 -0.25612388150445226 1.0 7422 +65125 WNK1 WNK lysine deficient protein kinase 1 Novel U 0.0045816866754537005 -0.2561356158152613 1.0 7423 +55907 CMAS cytidine monophosphate N-acetylneuraminic acid synthetase Novel U 0.004578302146087413 -0.2561647961932235 1.0 7424 +728597 DCDC2C doublecortin domain containing 2C Novel U 0.004576238931960759 -0.256182584594953 1.0 7425 +5162 PDHB pyruvate dehydrogenase E1 subunit beta Novel N 0.004573838616236646 -0.25620327938364534 1.0 7426 +2990 GUSB glucuronidase beta Novel U 0.0045738057195160746 -0.2562035630091176 1.0 7427 +3784 KCNQ1 potassium voltage-gated channel subfamily Q member 1 Novel U 0.004570214102147229 -0.2562345288365566 1.0 7428 +64699 TMPRSS3 transmembrane serine protease 3 Novel N 0.004568341605008329 -0.2562506729346964 1.0 7429 +9622 KLK4 kallikrein related peptidase 4 Novel N 0.004564974693927912 -0.2562797014131816 1.0 7430 +23322 RPGRIP1L RPGRIP1 like Novel U 0.004564397011959983 -0.25628468201058285 1.0 7431 +123041 SLC24A4 solute carrier family 24 member 4 Novel N 0.004561429638245382 -0.25631026579998933 1.0 7432 +192668 CYS1 cystin 1 Novel U 0.004561337690754689 -0.25631105854315706 1.0 7433 +9455 HOMER2 homer scaffold protein 2 Novel N 0.004560678601579558 -0.2563167410086226 1.0 7434 +2875 GPT glutamic--pyruvic transaminase Novel U 0.004556565171715099 -0.25635220574394496 1.0 7435 +9900 SV2A synaptic vesicle glycoprotein 2A Novel U 0.004555045158466531 -0.25636531083369324 1.0 7436 +1975 EIF4B eukaryotic translation initiation factor 4B Novel N 0.004554935436494458 -0.25636625682300795 1.0 7437 +346528 OR2A1 olfactory receptor family 2 subfamily A member 1 Novel U 0.004552866398041607 -0.25638409544029817 1.0 7438 +55758 RCOR3 REST corepressor 3 Novel U 0.004548228974321495 -0.2564240778905235 1.0 7439 +339488 TFAP2E transcription factor AP-2 epsilon Novel U 0.00454709685555069 -0.2564338386726161 1.0 7440 +3957 LGALS2 galectin 2 Novel N 0.004542610300982708 -0.2564725203751139 1.0 7441 +22884 WDR37 WD repeat domain 37 Novel U 0.00454001587089829 -0.2564948887585039 1.0 7442 +266722 HS6ST3 heparan sulfate 6-O-sulfotransferase 3 Novel U 0.004539870106009421 -0.25649614549883337 1.0 7443 +4881 NPR1 natriuretic peptide receptor 1 Novel U 0.0045393604022500745 -0.2565005400088928 1.0 7444 +1844 DUSP2 dual specificity phosphatase 2 Novel N 0.004536252948977413 -0.2565273315214438 1.0 7445 +64900 LPIN3 lipin 3 Novel U 0.004534812475388287 -0.2565397508445538 1.0 7446 +11237 RNF24 ring finger protein 24 Novel U 0.004534531411148215 -0.256542174094545 1.0 7447 +4124 MAN2A1 mannosidase alpha class 2A member 1 Novel U 0.004533385540451057 -0.2565520534415443 1.0 7448 +5654 HTRA1 HtrA serine peptidase 1 Novel U 0.004533257103112021 -0.256553160789034 1.0 7449 +7092 TLL1 tolloid like 1 Novel U 0.004531821368242886 -0.25656553925634834 1.0 7450 +6934 TCF7L2 transcription factor 7 like 2 Novel U 0.004531065888399481 -0.256572052772701 1.0 7451 +6583 SLC22A4 solute carrier family 22 member 4 Novel U 0.004530948102701993 -0.25657306828499216 1.0 7452 +29966 STRN3 striatin 3 Novel U 0.0045301041874567715 -0.25658034426435544 1.0 7453 +10072 DPP3 dipeptidyl peptidase 3 Novel N 0.00452848797081682 -0.2565942787903467 1.0 7454 +777 CACNA1E calcium voltage-gated channel subunit alpha1 E Novel N 0.004528467686272588 -0.25659445367748857 1.0 7455 +8728 ADAM19 ADAM metallopeptidase domain 19 Novel U 0.004527702933999879 -0.2566010471378933 1.0 7456 +55208 DCUN1D2 defective in cullin neddylation 1 domain containing 2 Novel N 0.004525949090175565 -0.2566161682434124 1.0 7457 +10320 IKZF1 IKAROS family zinc finger 1 Novel U 0.00451813213881121 -0.2566835636093963 1.0 7458 +1293 COL6A3 collagen type VI alpha 3 chain Novel U 0.004511184861026815 -0.25674346091552597 1.0 7459 +6279 S100A8 S100 calcium binding protein A8 Novel U 0.004511115843422346 -0.2567440559642215 1.0 7460 +116444 GRIN3B glutamate ionotropic receptor NMDA type subunit 3B Novel U 0.0045106273439087805 -0.2567482676577533 1.0 7461 +124989 EFCAB13 EF-hand calcium binding domain 13 Novel U 0.0045080555132009596 -0.25677044119622416 1.0 7462 +10940 POP1 POP1 homolog, ribonuclease P/MRP subunit Novel N 0.0045073769195876435 -0.25677629182299566 1.0 7463 +5465 PPARA peroxisome proliferator activated receptor alpha Novel U 0.004506982585599359 -0.2567796916501433 1.0 7464 +9750 RIPOR2 RHO family interacting cell polarization regulator 2 Novel U 0.004505682067957524 -0.25679090431584306 1.0 7465 +54542 RC3H2 ring finger and CCCH-type domains 2 Novel U 0.004504350049177626 -0.25680238857472926 1.0 7466 +100505385 IQCJ-SCHIP1 IQCJ-SCHIP1 readthrough Novel U 0.004502529943459134 -0.2568180809700518 1.0 7467 +101928677 ETDA embryonic testis differentiation homolog A Novel U 0.004494806181034471 -0.25688467288947414 1.0 7468 +91544 UBXN11 UBX domain protein 11 Novel U 0.004494190026659529 -0.25688998518421235 1.0 7469 +24139 EML2 EMAP like 2 Novel U 0.0044937155735386885 -0.25689407577403833 1.0 7470 +2071 ERCC3 ERCC excision repair 3, TFIIH core complex helicase subunit Novel U 0.004493173160323679 -0.2568987522950292 1.0 7471 +25836 NIPBL NIPBL cohesin loading factor Novel U 0.004493086159631448 -0.25689950238841225 1.0 7472 +91050 CCDC149 coiled-coil domain containing 149 Novel U 0.00449192960075731 -0.2569094738856074 1.0 7473 +3475 IFRD1 interferon related developmental regulator 1 Novel N 0.004490432767213248 -0.2569223791270266 1.0 7474 +55889 GOLGA6B golgin A6 family member B Novel U 0.004489006750309022 -0.2569346738090171 1.0 7475 +9495 AKAP5 A-kinase anchoring protein 5 Novel U 0.0044881249784519284 -0.2569422761765198 1.0 7476 +445815 PALM2AKAP2 PALM2 and AKAP2 fusion Novel U 0.004484388682216649 -0.2569744893809347 1.0 7477 +8509 NDST2 N-deacetylase and N-sulfotransferase 2 Novel N 0.00448394007946661 -0.2569783570967629 1.0 7478 +373863 DND1 DND microRNA-mediated repression inhibitor 1 Novel N 0.0044799705276970915 -0.2570125813591165 1.0 7479 +5660 PSAP prosaposin Novel U 0.004476276993428143 -0.2570444258829247 1.0 7480 +27347 STK39 serine/threonine kinase 39 Novel U 0.004475562766068271 -0.25705058373297013 1.0 7481 +27345 KCNMB4 potassium calcium-activated channel subfamily M regulatory beta subunit 4 Novel U 0.0044723489730285676 -0.2570782920744976 1.0 7482 +4343 MOV10 Mov10 RNA helicase Novel N 0.0044684571022021264 -0.2571118465954975 1.0 7483 +728833 FAM72D family with sequence similarity 72 member D Novel U 0.004468183053432139 -0.25711420936024937 1.0 7484 +541565 C8orf58 chromosome 8 open reading frame 58 Novel U 0.004467687326369846 -0.25711848336749776 1.0 7485 +374986 MIGA1 mitoguardin 1 Novel U 0.004467532113886675 -0.2571198215620983 1.0 7486 +100652824 KIAA2012 KIAA2012 Novel U 0.004466796669237454 -0.257126162341129 1.0 7487 +26039 SS18L1 SS18L1 subunit of BAF chromatin remodeling complex Novel U 0.004466263950715342 -0.25713075527744017 1.0 7488 +6948 TCN2 transcobalamin 2 Novel U 0.004464410398276122 -0.25714673604016836 1.0 7489 +23028 KDM1A lysine demethylase 1A Novel U 0.0044642672041874856 -0.25714797061584377 1.0 7490 +140710 MTCL2 microtubule crosslinking factor 2 Novel U 0.004463396721321351 -0.2571554756531162 1.0 7491 +339834 IHO1 interactor of HORMAD1 1 Novel U 0.00446312044024258 -0.2571578576641522 1.0 7492 +8425 LTBP4 latent transforming growth factor beta binding protein 4 Novel U 0.004460642766357071 -0.2571792194112733 1.0 7493 +1000 CDH2 cadherin 2 Novel U 0.004460181330934017 -0.25718319776648685 1.0 7494 +55069 TMEM248 transmembrane protein 248 Novel U 0.004453744205728652 -0.2572386966929709 1.0 7495 +23065 EMC1 ER membrane protein complex subunit 1 Novel U 0.004452629041443678 -0.25724831129866754 1.0 7496 +1716 DGUOK deoxyguanosine kinase Novel U 0.004450903944462061 -0.2572631845576933 1.0 7497 +80176 SPSB1 splA/ryanodine receptor domain and SOCS box containing 1 Novel U 0.0044504817633909954 -0.2572668244738793 1.0 7498 +55055 ZWILCH zwilch kinetochore protein Novel N 0.004449215420381485 -0.2572777424963421 1.0 7499 +93659 CGB5 chorionic gonadotropin subunit beta 5 Novel U 0.004448624828224934 -0.2572828344014446 1.0 7500 +51710 ZNF44 zinc finger protein 44 Novel U 0.004445936569206506 -0.25730601174923173 1.0 7501 +6641 SNTB1 syntrophin beta 1 Novel N 0.004444960112963822 -0.25731443045657365 1.0 7502 +6046 BRD2 bromodomain containing 2 Novel U 0.004444605807533786 -0.2573174851697239 1.0 7503 +80332 ADAM33 ADAM metallopeptidase domain 33 Novel U 0.004437678978279228 -0.25737720617487786 1.0 7504 +57176 VARS2 valyl-tRNA synthetase 2, mitochondrial Novel N 0.004437381176910534 -0.25737977372727755 1.0 7505 +7277 TUBA4A tubulin alpha 4a Novel N 0.004435445491594139 -0.25739646261457483 1.0 7506 +7091 TLE4 TLE family member 4, transcriptional corepressor Novel U 0.004435161326605464 -0.25739891259827297 1.0 7507 +9924 PAN2 poly(A) specific ribonuclease subunit PAN2 Novel N 0.004432033198909352 -0.25742588235938535 1.0 7508 +10923 SUB1 SUB1 regulator of transcription Novel N 0.004430734082559951 -0.25743708294357 1.0 7509 +91404 SESTD1 SEC14 and spectrin domain containing 1 Novel U 0.004429512342315605 -0.25744761641462116 1.0 7510 +10231 RCAN2 regulator of calcineurin 2 Novel U 0.004427161714298138 -0.25746788281109023 1.0 7511 +163732 CITED4 Cbp/p300 interacting transactivator with Glu/Asp rich carboxy-terminal domain 4 Novel U 0.00442584951153378 -0.25747919622234566 1.0 7512 +1749 DLX5 distal-less homeobox 5 Novel U 0.004424736949657066 -0.2574887883908735 1.0 7513 +768 CA9 carbonic anhydrase 9 Novel U 0.0044241770655549986 -0.2574936155405139 1.0 7514 +121260 SLC15A4 solute carrier family 15 member 4 Novel U 0.0044230034578526915 -0.2575037340274958 1.0 7515 +5105 PCK1 phosphoenolpyruvate carboxykinase 1 Novel U 0.004417550980898828 -0.25755074361764124 1.0 7516 +57205 ATP10D ATPase phospholipid transporting 10D (putative) Novel N 0.004416120666663785 -0.2575630753499048 1.0 7517 +83641 FAM107B family with sequence similarity 107 member B Novel U 0.0044155224464871665 -0.25756823302146536 1.0 7518 +4608 MYBPH myosin binding protein H Novel N 0.004414392017564519 -0.2575779792342035 1.0 7519 +223082 ZNRF2 zinc and ring finger 2 Novel U 0.004412268738882792 -0.25759628549417246 1.0 7520 +8048 CSRP3 cysteine and glycine rich protein 3 Novel U 0.004411759691912019 -0.2576006743416015 1.0 7521 +50836 TAS2R8 taste 2 receptor member 8 Novel N 0.004410653370380002 -0.2576102127077843 1.0 7522 +6017 RLBP1 retinaldehyde binding protein 1 Novel U 0.004410593880336261 -0.25761072561276266 1.0 7523 +491 ATP2B2 ATPase plasma membrane Ca2+ transporting 2 Novel N 0.004410181320343365 -0.2576142825789526 1.0 7524 +7283 TUBG1 tubulin gamma 1 Novel U 0.004409918643128719 -0.2576165473016292 1.0 7525 +200312 RNF215 ring finger protein 215 Novel U 0.004409644309964249 -0.25761891251834335 1.0 7526 +9683 N4BP1 NEDD4 binding protein 1 Novel U 0.004407546151327389 -0.25763700220096164 1.0 7527 +4752 NEK3 NIMA related kinase 3 Novel U 0.004407477449109715 -0.2576375945304886 1.0 7528 +4591 TRIM37 tripartite motif containing 37 Novel U 0.004407395766152433 -0.2576382987759859 1.0 7529 +116840 CNTROB centrobin, centriole duplication and spindle assembly protein Novel U 0.004406375629608058 -0.25764709408154135 1.0 7530 +51013 EXOSC1 exosome component 1 Novel N 0.004405785669751428 -0.2576521805351471 1.0 7531 +6515 SLC2A3 solute carrier family 2 member 3 Novel U 0.004404404412117742 -0.25766408931638435 1.0 7532 +11221 DUSP10 dual specificity phosphatase 10 Novel U 0.0044032898263267955 -0.2576736989344823 1.0 7533 +6440 SFTPC surfactant protein C Novel U 0.004402026466578612 -0.2576845912361776 1.0 7534 +4437 MSH3 mutS homolog 3 Novel U 0.004396591011607004 -0.2577314540679934 1.0 7535 +23138 N4BP3 NEDD4 binding protein 3 Novel N 0.004391504244460511 -0.2577753106199321 1.0 7536 +55633 TBC1D22B TBC1 domain family member 22B Novel U 0.004388047083674996 -0.25780511720379645 1.0 7537 +3161 HMMR hyaluronan mediated motility receptor Novel U 0.004387758308781383 -0.2578076069326863 1.0 7538 +153020 RASGEF1B RasGEF domain family member 1B Novel U 0.0043856215554841675 -0.2578260293666724 1.0 7539 +64708 COPS7B COP9 signalosome subunit 7B Novel N 0.004385292145171514 -0.257828869441728 1.0 7540 +2821 GPI glucose-6-phosphate isomerase Novel U 0.0043840789792422945 -0.25783932898765427 1.0 7541 +2857 GPR34 G protein-coupled receptor 34 Novel U 0.004383452359914286 -0.25784473150801995 1.0 7542 +55847 CISD1 CDGSH iron sulfur domain 1 Novel N 0.004382924125664027 -0.25784928578230953 1.0 7543 +58492 ZNF77 zinc finger protein 77 Novel U 0.004380545210400369 -0.2578697960627713 1.0 7544 +137835 TMEM71 transmembrane protein 71 Novel U 0.004378695191152386 -0.25788574636340433 1.0 7545 +414325 DEFB103A defensin beta 103A Novel U 0.004378050665489139 -0.2578913032667207 1.0 7546 +23020 SNRNP200 small nuclear ribonucleoprotein U5 subunit 200 Novel N 0.004377982870890077 -0.25789188777103733 1.0 7547 +124446 TMEM219 transmembrane protein 219 Novel U 0.004376791296003405 -0.2579021611655925 1.0 7548 +202052 DNAJC18 DnaJ heat shock protein family (Hsp40) member C18 Novel U 0.0043757439893175425 -0.2579111907238053 1.0 7549 +56888 KCMF1 potassium channel modulatory factor 1 Novel U 0.004375582442497445 -0.25791258353112323 1.0 7550 +7069 THRSP thyroid hormone responsive Novel U 0.0043754131233884 -0.2579140433487414 1.0 7551 +133558 MROH2B maestro heat like repeat family member 2B Novel U 0.004371097754596436 -0.25795124913978884 1.0 7552 +127002 ATXN7L2 ataxin 7 like 2 Novel U 0.004370253066150886 -0.2579585317854491 1.0 7553 +3250 HPR haptoglobin-related protein Novel U 0.004369454256987182 -0.25796541887396096 1.0 7554 +22999 RIMS1 regulating synaptic membrane exocytosis 1 Novel U 0.004368198402672095 -0.2579762464661056 1.0 7555 +79895 ATP8B4 ATPase phospholipid transporting 8B4 (putative) Novel U 0.004364023251646093 -0.2580122433424222 1.0 7556 +79865 TREML2 triggering receptor expressed on myeloid cells like 2 Novel N 0.0043596410712188295 -0.25805002516297304 1.0 7557 +51528 JKAMP JNK1/MAPK8 associated membrane protein Novel U 0.004359409505473548 -0.25805202165206775 1.0 7558 +11030 RBPMS RNA binding protein, mRNA processing factor Novel N 0.004358417329626915 -0.2580605758890314 1.0 7559 +340371 NRBP2 nuclear receptor binding protein 2 Novel U 0.004355268730520625 -0.25808772214838677 1.0 7560 +5245 PHB1 prohibitin 1 Novel U 0.004352590507294641 -0.25811081297063815 1.0 7561 +643847 PGA4 pepsinogen A4 Novel U 0.004349592110115752 -0.2581366642348737 1.0 7562 +2132 EXT2 exostosin glycosyltransferase 2 Novel U 0.00434796299138849 -0.25815070999871914 1.0 7563 +57402 S100A14 S100 calcium binding protein A14 Novel U 0.00434505346289169 -0.2581757950643339 1.0 7564 +2896 GRN granulin precursor Novel U 0.004343140657375189 -0.2581922866889881 1.0 7565 +79621 RNASEH2B ribonuclease H2 subunit B Novel U 0.004339816096313544 -0.2582209500385526 1.0 7566 +159013 CXorf38 chromosome X open reading frame 38 Novel U 0.004334782790056021 -0.258264345667043 1.0 7567 +25963 TMEM87A transmembrane protein 87A Novel U 0.004333824225317605 -0.2582726101193024 1.0 7568 +2741 GLRA1 glycine receptor alpha 1 Novel U 0.004333377380285727 -0.25827646268062177 1.0 7569 +63982 ANO3 anoctamin 3 Novel N 0.004332597700175693 -0.25828318484427826 1.0 7570 +119764 OR4X2 olfactory receptor family 4 subfamily X member 2 Novel U 0.004329717671651543 -0.2583080155701434 1.0 7571 +150356 CHADL chondroadherin like Novel U 0.004329038724403483 -0.25831386924584554 1.0 7572 +2814 GP5 glycoprotein V platelet Novel U 0.004328456229524776 -0.2583188913386928 1.0 7573 +139324 HDX highly divergent homeobox Novel U 0.004327232148891089 -0.25832944498786575 1.0 7574 +107987155 OOSP4B oocyte secreted protein family member 4B Novel U 0.0043265937190452766 -0.2583349493349069 1.0 7575 +219479 OR8U3 olfactory receptor family 8 subfamily U member 3 Novel U 0.004326053144193018 -0.2583396100060959 1.0 7576 +79989 IFT56 intraflagellar transport 56 Novel U 0.004324293676520406 -0.25835477959871656 1.0 7577 +203068 TUBB tubulin beta class I Novel U 0.0043240548053078654 -0.2583568390733176 1.0 7578 +3178 HNRNPA1 heterogeneous nuclear ribonucleoprotein A1 Novel U 0.004319405099189846 -0.25839692741862447 1.0 7579 +6228 RPS23 ribosomal protein S23 Novel U 0.0043191748912050085 -0.2583989122015235 1.0 7580 +10656 KHDRBS3 KH RNA binding domain containing, signal transduction associated 3 Novel U 0.004317867828298344 -0.2584101812984966 1.0 7581 +7536 SF1 splicing factor 1 Novel N 0.004316679272470899 -0.2584204286636456 1.0 7582 +728239 MAGED4 MAGE family member D4 Novel U 0.004316575357324014 -0.258421324588288 1.0 7583 +285704 RGMB repulsive guidance molecule BMP co-receptor b Novel U 0.004316282978408253 -0.25842384538995544 1.0 7584 +57648 NHSL3 NHS like 3 Novel U 0.004314908167654848 -0.25843569858816096 1.0 7585 +201595 STT3B STT3 oligosaccharyltransferase complex catalytic subunit B Novel U 0.004313904251108601 -0.258444354049849 1.0 7586 +727897 MUC5B mucin 5B, oligomeric mucus/gel-forming Novel U 0.004308360220657839 -0.258492152986268 1.0 7587 +387338 NSUN4 NOP2/Sun RNA methyltransferase 4 Novel N 0.004304801378595862 -0.25852283623502653 1.0 7588 +56163 RNF17 ring finger protein 17 Novel U 0.004302753089472588 -0.2585404959579376 1.0 7589 +1359 CPA3 carboxypeptidase A3 Novel N 0.004301991142840398 -0.2585470652289671 1.0 7590 +6161 RPL32 ribosomal protein L32 Novel N 0.004301949463220108 -0.2585474245779169 1.0 7591 +5140 PDE3B phosphodiesterase 3B Novel U 0.004300119511670517 -0.25856320186098664 1.0 7592 +64151 NCAPG non-SMC condensin I complex subunit G Novel U 0.004297468146470751 -0.2585860611215431 1.0 7593 +388125 C2CD4B C2 calcium dependent domain containing 4B Novel U 0.004297210693488953 -0.2585882808024805 1.0 7594 +50838 TAS2R13 taste 2 receptor member 13 Novel U 0.004296340956789443 -0.2585957794065323 1.0 7595 +10800 CYSLTR1 cysteinyl leukotriene receptor 1 Novel N 0.004296253642571984 -0.25859653220303397 1.0 7596 +57465 TBC1D24 TBC1 domain family member 24 Novel U 0.004294582969490813 -0.25861093623582077 1.0 7597 +5611 DNAJC3 DnaJ heat shock protein family (Hsp40) member C3 Novel U 0.0042941608943300345 -0.2586145752388806 1.0 7598 +7272 TTK TTK protein kinase Novel N 0.00429321807147851 -0.25862270396940157 1.0 7599 +150468 CKAP2L cytoskeleton associated protein 2 like Novel U 0.004291951425234258 -0.2586336246062617 1.0 7600 +7090 TLE3 TLE family member 3, transcriptional corepressor Novel N 0.004290652222178132 -0.25864482593800525 1.0 7601 +9818 NUP58 nucleoporin 58 Novel U 0.0042902969392883145 -0.25864788907851505 1.0 7602 +8989 TRPA1 transient receptor potential cation channel subfamily A member 1 Novel U 0.004289585281169899 -0.2586540247773457 1.0 7603 +49856 WRAP73 WD repeat containing, antisense to TP73 Novel U 0.00428954047723141 -0.25865441106321235 1.0 7604 +1773 DNASE1 deoxyribonuclease 1 Novel U 0.004289179492559159 -0.25865752336274794 1.0 7605 +160897 GPR180 G protein-coupled receptor 180 Novel U 0.004288444752570333 -0.258663858066412 1.0 7606 +10021 HCN4 hyperpolarization activated cyclic nucleotide gated potassium channel 4 Novel U 0.004285798954112942 -0.25868666933221685 1.0 7607 +1060 CENPC centromere protein C Novel U 0.004284283729416805 -0.2586997331365293 1.0 7608 +79102 RNF26 ring finger protein 26 Novel U 0.004282313787647415 -0.25871671737249635 1.0 7609 +222643 UNC5CL unc-5 family C-terminal like Novel U 0.004280081662958203 -0.258735962069481 1.0 7610 +80213 TM2D3 TM2 domain containing 3 Novel N 0.0042798695209201225 -0.2587377910933077 1.0 7611 +390197 OR4D10 olfactory receptor family 4 subfamily D member 10 Novel U 0.004279024122219923 -0.2587450798625665 1.0 7612 +2893 GRIA4 glutamate ionotropic receptor AMPA type subunit 4 Novel N 0.004278631700519077 -0.2587484632025562 1.0 7613 +7022 TFAP2C transcription factor AP-2 gamma Novel N 0.004277098616556391 -0.2587616809840075 1.0 7614 +56967 C14orf132 chromosome 14 open reading frame 132 Novel U 0.004275355928181145 -0.2587767059106536 1.0 7615 +346689 KLRG2 killer cell lectin like receptor G2 Novel U 0.004274876828970123 -0.2587808365576494 1.0 7616 +2153 F5 coagulation factor V Novel U 0.004271849684070088 -0.25880693567595203 1.0 7617 +5188 GATB glutamyl-tRNA amidotransferase subunit B Novel N 0.004270412860433328 -0.2588193235302881 1.0 7618 +132864 CPEB2 cytoplasmic polyadenylation element binding protein 2 Novel N 0.004267083723902425 -0.2588480263281504 1.0 7619 +864 RUNX3 RUNX family transcription factor 3 Novel U 0.004266320911276562 -0.25885460306551267 1.0 7620 +50835 TAS2R9 taste 2 receptor member 9 Novel U 0.004264847678407435 -0.2588673048291244 1.0 7621 +3692 EIF6 eukaryotic translation initiation factor 6 Novel N 0.00426461710754322 -0.25886929274065856 1.0 7622 +375593 TRIM73 tripartite motif containing 73 Novel U 0.004264224842845164 -0.25887267472701814 1.0 7623 +2900 GRIK4 glutamate ionotropic receptor kainate type subunit 4 Novel N 0.004262736008525922 -0.2588855110015653 1.0 7624 +646862 RNF225 ring finger protein 225 Novel U 0.004262677548777873 -0.25888601502364905 1.0 7625 +113246 C12orf57 chromosome 12 open reading frame 57 Novel U 0.004261495317005202 -0.25889620786473033 1.0 7626 +51142 CHCHD2 coiled-coil-helix-coiled-coil-helix domain containing 2 Novel N 0.004258748603870989 -0.25891988918604153 1.0 7627 +8481 OFD1 OFD1 centriole and centriolar satellite protein Novel U 0.004256272622383292 -0.25894123634182575 1.0 7628 +126637 TCHHL1 trichohyalin like 1 Novel U 0.004252916302719111 -0.2589701735043567 1.0 7629 +56928 SPPL2B signal peptide peptidase like 2B Novel N 0.004252497859074403 -0.2589737811975946 1.0 7630 +8994 LIMD1 LIM domain containing 1 Novel U 0.004251865817139786 -0.2589792304700175 1.0 7631 +28956 LAMTOR2 late endosomal/lysosomal adaptor, MAPK and MTOR activator 2 Novel U 0.004251861230675058 -0.2589792700131149 1.0 7632 +140876 RIPOR3 RIPOR family member 3 Novel U 0.004250415188619433 -0.25899173734584147 1.0 7633 +27030 MLH3 mutL homolog 3 Novel U 0.004249574261939525 -0.25899898755870787 1.0 7634 +9675 TTI1 TELO2 interacting protein 1 Novel U 0.004249285995713592 -0.25900147290202036 1.0 7635 +126129 CPT1C carnitine palmitoyltransferase 1C Novel N 0.004248803831776778 -0.25900562997214543 1.0 7636 +64210 MMS19 MMS19 homolog, cytosolic iron-sulfur assembly component Novel N 0.00424820950945643 -0.25901075403758034 1.0 7637 +1852 DUSP9 dual specificity phosphatase 9 Novel N 0.004244723723574716 -0.2590408074182769 1.0 7638 +51279 C1RL complement C1r subcomponent like Novel U 0.004244040529851256 -0.25904669770579236 1.0 7639 +64801 ARV1 ARV1 homolog, fatty acid homeostasis modulator Novel U 0.004243196618343063 -0.2590539736529362 1.0 7640 +11099 PTPN21 protein tyrosine phosphatase non-receptor type 21 Novel N 0.004239813016800134 -0.25908314603148896 1.0 7641 +3762 KCNJ5 potassium inwardly rectifying channel subfamily J member 5 Novel U 0.004239525981267444 -0.2590856207641404 1.0 7642 +51738 GHRL ghrelin and obestatin prepropeptide Novel U 0.004239176098921069 -0.2590886373428149 1.0 7643 +84722 PSRC1 proline and serine rich coiled-coil 1 Novel U 0.004237943707236034 -0.25909926264733285 1.0 7644 +346007 EYS eyes shut homolog Novel N 0.004237710222982358 -0.2591012756772207 1.0 7645 +7846 TUBA1A tubulin alpha 1a Novel U 0.00423577757227572 -0.2591179384010399 1.0 7646 +389874 ZCCHC13 zinc finger CCHC-type containing 13 Novel U 0.004235721205645858 -0.25911842437689825 1.0 7647 +3195 TLX1 T cell leukemia homeobox 1 Novel U 0.00423550317881539 -0.2591203041376066 1.0 7648 +2702 GJA5 gap junction protein alpha 5 Novel U 0.0042347030215969025 -0.25912720284863483 1.0 7649 +22925 PLA2R1 phospholipase A2 receptor 1 Novel U 0.0042336396639357345 -0.259136370793452 1.0 7650 +4060 LUM lumican Novel N 0.004231517500940333 -0.25915466743431437 1.0 7651 +11100 HNRNPUL1 heterogeneous nuclear ribonucleoprotein U like 1 Novel N 0.004230669734875408 -0.25916197661426843 1.0 7652 +138716 RPP25L ribonuclease P/MRP subunit p25 like Novel U 0.00422867001383565 -0.2591792175980047 1.0 7653 +4741 NEFM neurofilament medium chain Novel N 0.004226747753228766 -0.2591957907415589 1.0 7654 +92799 SHKBP1 SH3KBP1 binding protein 1 Novel U 0.004226076182143786 -0.25920158082223704 1.0 7655 +9314 KLF4 KLF transcription factor 4 Novel U 0.004225461938200197 -0.2592068766458199 1.0 7656 +26608 TBL2 transducin beta like 2 Novel U 0.004223577506931618 -0.25922312363637895 1.0 7657 +202374 STK32A serine/threonine kinase 32A Novel U 0.00422165580709437 -0.25923969194514873 1.0 7658 +9563 H6PD hexose-6-phosphate dehydrogenase/glucose 1-dehydrogenase Novel N 0.004221261621546474 -0.25924309049248867 1.0 7659 +5805 PTS 6-pyruvoyltetrahydropterin synthase Novel U 0.004220760194986606 -0.2592474136390635 1.0 7660 +129880 BBS5 Bardet-Biedl syndrome 5 Novel N 0.004219816394016269 -0.25925555080262597 1.0 7661 +9472 AKAP6 A-kinase anchoring protein 6 Novel N 0.0042153251456017145 -0.2592942729740346 1.0 7662 +6159 RPL29 ribosomal protein L29 Novel N 0.004212775635475858 -0.25931625407126846 1.0 7663 +10733 PLK4 polo like kinase 4 Novel U 0.004211551618611777 -0.2593268071706393 1.0 7664 +146456 TMED6 transmembrane p24 trafficking protein 6 Novel U 0.004210374817504392 -0.25933695319018396 1.0 7665 +53371 NUP54 nucleoporin 54 Novel N 0.004210097249922418 -0.2593393462930575 1.0 7666 +28981 IFT81 intraflagellar transport 81 Novel N 0.00420922524130826 -0.2593468644848631 1.0 7667 +9670 IPO13 importin 13 Novel U 0.004209078108600805 -0.25934813301810644 1.0 7668 +148223 C19orf25 chromosome 19 open reading frame 25 Novel U 0.004206995651362185 -0.25936608732806704 1.0 7669 +2526 FUT4 fucosyltransferase 4 Novel U 0.004205492291282777 -0.25937904883927965 1.0 7670 +51283 BFAR bifunctional apoptosis regulator Novel U 0.00420464165657912 -0.2593863827517603 1.0 7671 +56891 LGALS14 galectin 14 Novel U 0.0042005876153472475 -0.25942133545644025 1.0 7672 +1389 CREBL2 cAMP responsive element binding protein like 2 Novel N 0.004199989945764016 -0.25942648838095284 1.0 7673 +83854 ANGPTL6 angiopoietin like 6 Novel N 0.0041994330939754704 -0.2594312893869127 1.0 7674 +11052 CPSF6 cleavage and polyadenylation specific factor 6 Novel U 0.004198532540516073 -0.2594390536836513 1.0 7675 +7327 UBE2G2 ubiquitin conjugating enzyme E2 G2 Novel U 0.004195545914610282 -0.25946480345956724 1.0 7676 +2038 EPB42 erythrocyte membrane protein band 4.2 Novel U 0.00419546258291798 -0.259465521919954 1.0 7677 +140691 TRIM69 tripartite motif containing 69 Novel N 0.004190310505235297 -0.2595099415593783 1.0 7678 +145508 CEP128 centrosomal protein 128 Novel N 0.0041884485872858345 -0.2595259944469795 1.0 7679 +29903 CCDC106 coiled-coil domain containing 106 Novel U 0.004187944926411377 -0.25953033685713195 1.0 7680 +3487 IGFBP4 insulin like growth factor binding protein 4 Novel N 0.004184768828403939 -0.25955772020361 1.0 7681 +149428 BNIPL BCL2 interacting protein like Novel N 0.004184269835530733 -0.2595620223676821 1.0 7682 +9232 PTTG1 PTTG1 regulator of sister chromatid separation, securin Novel N 0.004183667849411542 -0.2595672125080487 1.0 7683 +51141 INSIG2 insulin induced gene 2 Novel U 0.004182685320196874 -0.2595756835746994 1.0 7684 +9620 CELSR1 cadherin EGF LAG seven-pass G-type receptor 1 Novel N 0.004179035684553736 -0.25960714961797027 1.0 7685 +92483 LDHAL6B lactate dehydrogenase A like 6B Novel N 0.004177642696269685 -0.2596191595372904 1.0 7686 +11104 KATNA1 katanin catalytic subunit A1 Novel N 0.004177139853118044 -0.2596234948972866 1.0 7687 +55858 TMEM165 transmembrane protein 165 Novel U 0.004175367887668487 -0.259638772241921 1.0 7688 +57097 PARP11 poly(ADP-ribose) polymerase family member 11 Novel N 0.0041749411672751145 -0.25964245129475677 1.0 7689 +162979 ZNF296 zinc finger protein 296 Novel U 0.00417386929869669 -0.2596516926181017 1.0 7690 +3508 IGHMBP2 immunoglobulin mu DNA binding protein 2 Novel U 0.0041711080839813815 -0.25967549896761377 1.0 7691 +65266 WNK4 WNK lysine deficient protein kinase 4 Novel U 0.0041706767842369505 -0.259679217502215 1.0 7692 +3416 IDE insulin degrading enzyme Novel U 0.004168841166391249 -0.25969504363835827 1.0 7693 +84168 ANTXR1 ANTXR cell adhesion molecule 1 Novel U 0.004168140306736339 -0.2597010862361364 1.0 7694 +57001 SDHAF3 succinate dehydrogenase complex assembly factor 3 Novel U 0.004166207523507251 -0.2597177501025238 1.0 7695 +146206 CARMIL2 capping protein regulator and myosin 1 linker 2 Novel U 0.004159600330523296 -0.25977471530142604 1.0 7696 +389658 ALKAL1 ALK and LTK ligand 1 Novel U 0.004159190693636198 -0.2597782470654911 1.0 7697 +390321 OR6C1 olfactory receptor family 6 subfamily C member 1 Novel U 0.004158064357833506 -0.2597879579885997 1.0 7698 +10589 DRAP1 DR1 associated protein 1 Novel N 0.004157169175204706 -0.25979567597967806 1.0 7699 +23240 TMEM131L transmembrane 131 like Novel U 0.00415318673983097 -0.2598300113205303 1.0 7700 +5128 CDK17 cyclin dependent kinase 17 Novel N 0.0041519223583008176 -0.25984091243171753 1.0 7701 +167691 LCA5 lebercilin LCA5 Novel U 0.004151444049313313 -0.2598450362656476 1.0 7702 +4147 MATN2 matrilin 2 Novel U 0.004150246673076137 -0.2598553596776741 1.0 7703 +94005 PIGS phosphatidylinositol glycan anchor biosynthesis class S Novel U 0.004148896802504014 -0.2598669978492577 1.0 7704 +23430 TPSD1 tryptase delta 1 Novel U 0.004148170910171664 -0.2598732562711313 1.0 7705 +7306 TYRP1 tyrosinase related protein 1 Novel N 0.004147452647508485 -0.2598794489123288 1.0 7706 +392862 GRID2IP Grid2 interacting protein Novel U 0.004146726200308448 -0.259885712118102 1.0 7707 +645051 GAGE13 G antigen 13 Novel U 0.004145088938048986 -0.2598998280929936 1.0 7708 +3760 KCNJ3 potassium inwardly rectifying channel subfamily J member 3 Novel U 0.004144422922776251 -0.25990557027315625 1.0 7709 +92558 BICDL1 BICD family like cargo adaptor 1 Novel U 0.00413998123093621 -0.25994386518292284 1.0 7710 +10009 ZBTB33 zinc finger and BTB domain containing 33 Novel N 0.004139170176814922 -0.2599508578437172 1.0 7711 +168537 GIMAP7 GTPase, IMAP family member 7 Novel N 0.004138869441103677 -0.25995345069512166 1.0 7712 +5030 P2RY4 pyrimidinergic receptor P2Y4 Novel N 0.004133763892554995 -0.25999746917457084 1.0 7713 +6497 SKI SKI proto-oncogene Novel U 0.004132551338779329 -0.26000792344269624 1.0 7714 +2005 ELK4 ETS transcription factor ELK4 Novel N 0.004131535466460543 -0.2600166819834017 1.0 7715 +391004 PRAMEF17 PRAME family member 17 Novel U 0.0041266002879730675 -0.2600592315842443 1.0 7716 +50717 DCAF8 DDB1 and CUL4 associated factor 8 Novel N 0.004126112254885785 -0.26006343925639125 1.0 7717 +1307 COL16A1 collagen type XVI alpha 1 chain Novel U 0.0041257122617565055 -0.26006688787492327 1.0 7718 +492 ATP2B3 ATPase plasma membrane Ca2+ transporting 3 Novel N 0.00412389115405801 -0.26008258890901126 1.0 7719 +93432 MGAM2 maltase-glucoamylase 2 (putative) Novel U 0.004123009643981405 -0.26009018901952263 1.0 7720 +2835 GPR12 G protein-coupled receptor 12 Novel N 0.0041223515070992565 -0.26009586327460915 1.0 7721 +9168 TMSB10 thymosin beta 10 Novel U 0.004118605056823211 -0.26012816402406064 1.0 7722 +7916 PRRC2A proline rich coiled-coil 2A Novel U 0.0041183830678272 -0.2601300779453496 1.0 7723 +63901 FAM111A FAM111 trypsin like peptidase A Novel N 0.004118136381035764 -0.26013220480348354 1.0 7724 +90485 ZNF835 zinc finger protein 835 Novel U 0.004117543294791995 -0.2601373182118439 1.0 7725 +23741 EID1 EP300 interacting inhibitor of differentiation 1 Novel N 0.004116232723147951 -0.26014861756007845 1.0 7726 +5655 KLK10 kallikrein related peptidase 10 Novel U 0.004114143659628784 -0.26016662882737124 1.0 7727 +196740 VSTM4 V-set and transmembrane domain containing 4 Novel U 0.004113668440884993 -0.2601707260181643 1.0 7728 +5715 PSMD9 proteasome 26S subunit, non-ATPase 9 Novel N 0.004112860469288164 -0.26017769210237474 1.0 7729 +55789 DEPDC1B DEP domain containing 1B Novel U 0.004110221196707946 -0.2602004471040607 1.0 7730 +102724657 MSANTD5 Myb/SANT DNA binding domain containing 5 Novel U 0.004107863563953581 -0.2602207738932308 1.0 7731 +6606 SMN1 survival of motor neuron 1, telomeric Novel U 0.004106660406900232 -0.2602311471456878 1.0 7732 +9697 TRAM2 translocation associated membrane protein 2 Novel U 0.004105871391529518 -0.2602379497951093 1.0 7733 +1875 E2F5 E2F transcription factor 5 Novel U 0.004103916307839225 -0.2602548059292586 1.0 7734 +922 CD5L CD5 molecule like Novel U 0.004103706806018513 -0.26025661218993784 1.0 7735 +100271849 MEF2B myocyte enhancer factor 2B Novel N 0.0040998088598253905 -0.2602902190908928 1.0 7736 +6903 TBCC tubulin folding cofactor C Novel U 0.004096361364390132 -0.2603199423430607 1.0 7737 +166863 RBM46 RNA binding motif protein 46 Novel U 0.0040960217339171085 -0.2603228705332159 1.0 7738 +8455 ATRN attractin Novel U 0.004094775102069073 -0.2603336186120678 1.0 7739 +8449 DHX16 DEAH-box helicase 16 Novel N 0.004094473039545989 -0.2603362229028385 1.0 7740 +200726 FAM237A family with sequence similarity 237 member A Novel U 0.004090527509170517 -0.260370240060073 1.0 7741 +283232 TMEM80 transmembrane protein 80 Novel U 0.004090363465112054 -0.260371654397817 1.0 7742 +169026 SLC30A8 solute carrier family 30 member 8 Novel U 0.004087165903784769 -0.26039922279448 1.0 7743 +346702 PRSS51 serine protease 51 Novel U 0.004086959025897672 -0.2604010064324055 1.0 7744 +152559 PAQR3 progestin and adipoQ receptor family member 3 Novel U 0.004085446874791499 -0.26041404373716454 1.0 7745 +124274 GPR139 G protein-coupled receptor 139 Novel N 0.004085213694424051 -0.2604160541470381 1.0 7746 +6549 SLC9A2 solute carrier family 9 member A2 Novel N 0.0040843654215505665 -0.26042336769654073 1.0 7747 +347744 C6orf52 chromosome 6 open reading frame 52 Novel U 0.004079370000880819 -0.26046643668707026 1.0 7748 +170591 S100Z S100 calcium binding protein Z Novel U 0.004078512545058044 -0.2604738294091556 1.0 7749 +221938 MMD2 monocyte to macrophage differentiation associated 2 Novel U 0.004076576100269443 -0.2604905248443901 1.0 7750 +29990 PILRB paired immunoglobin like type 2 receptor beta Novel U 0.004074284136167944 -0.2605102854585021 1.0 7751 +55039 TRMT12 tRNA methyltransferase 12 homolog Novel U 0.004073535926931701 -0.2605167362899015 1.0 7752 +7508 XPC XPC complex subunit, DNA damage recognition and repair factor Novel U 0.004073008396833247 -0.2605212844932094 1.0 7753 +140803 TRPM6 transient receptor potential cation channel subfamily M member 6 Novel N 0.004072192999270717 -0.26052831460182685 1.0 7754 +80194 TMEM134 transmembrane protein 134 Novel U 0.004071021177388955 -0.26053841769200975 1.0 7755 +221061 FAM171A1 family with sequence similarity 171 member A1 Novel U 0.004070477504499057 -0.2605431050735326 1.0 7756 +83723 TLCD3B TLC domain containing 3B Novel N 0.004070226858004761 -0.26054526607101464 1.0 7757 +27296 TP53TG5 TP53 target 5 Novel U 0.0040681640793065596 -0.2605630507186131 1.0 7758 +219447 OR5AS1 olfactory receptor family 5 subfamily AS member 1 Novel U 0.0040668717787899255 -0.26057419253877034 1.0 7759 +2353 FOS Fos proto-oncogene, AP-1 transcription factor subunit Novel U 0.004065809968223854 -0.26058334714500625 1.0 7760 +8435 SOAT2 sterol O-acyltransferase 2 Novel U 0.004065368185358612 -0.26058715606187177 1.0 7761 +130355 C2orf76 chromosome 2 open reading frame 76 Novel U 0.0040653087943180385 -0.26058766811327505 1.0 7762 +246 ALOX15 arachidonate 15-lipoxygenase Novel U 0.004064226561721451 -0.2605969987920176 1.0 7763 +137886 UBXN2B UBX domain protein 2B Novel U 0.0040641113901824675 -0.2605979917658329 1.0 7764 +23367 LARP1 La ribonucleoprotein 1, translational regulator Novel U 0.0040630524046622865 -0.26060712201538644 1.0 7765 +50613 UBQLN3 ubiquilin 3 Novel U 0.00406261662976805 -0.26061087913336184 1.0 7766 +161582 DNAAF4 dynein axonemal assembly factor 4 Novel U 0.0040613963905926035 -0.2606213996626557 1.0 7767 +6143 RPL19 ribosomal protein L19 Novel N 0.004060977959541794 -0.26062500724731286 1.0 7768 +11116 CEP43 centrosomal protein 43 Novel U 0.00406095819071707 -0.26062517768807875 1.0 7769 +5499 PPP1CA protein phosphatase 1 catalytic subunit alpha Novel N 0.004058044012744087 -0.2606503028400564 1.0 7770 +64423 INF2 inverted formin 2 Novel N 0.0040558492403704035 -0.2606692254967906 1.0 7771 +259285 TAS2R39 taste 2 receptor member 39 Novel N 0.0040552782804613 -0.2606741481386548 1.0 7772 +64417 TMEM267 transmembrane protein 267 Novel U 0.004055263776007947 -0.26067427319161934 1.0 7773 +1325 CORT cortistatin Novel N 0.0040547413117749745 -0.26067877771858305 1.0 7774 +147670 SMIM17 small integral membrane protein 17 Novel U 0.004053435842109678 -0.2606900330791159 1.0 7775 +26579 MYEOV myeloma overexpressed Novel U 0.004052977029767178 -0.2606939888189305 1.0 7776 +158293 FAM120AOS family with sequence similarity 120 member A opposite strand Novel U 0.0040515336259268914 -0.26070643340577065 1.0 7777 +23324 MAN2B2 mannosidase alpha class 2B member 2 Novel U 0.00405050874809377 -0.2607152695892689 1.0 7778 +54103 GSAP gamma-secretase activating protein Novel N 0.0040469838543350884 -0.2607456601461302 1.0 7779 +83940 TATDN1 TatD DNase domain containing 1 Novel U 0.004045694896113709 -0.2607567731500391 1.0 7780 +3276 PRMT1 protein arginine methyltransferase 1 Novel U 0.004042979922584015 -0.260780180822179 1.0 7781 +400797 CLEC20A C-type lectin domain containing 20A Novel U 0.0040410038626994445 -0.2607972178066656 1.0 7782 +54795 TRPM4 transient receptor potential cation channel subfamily M member 4 Novel U 0.0040401538487764305 -0.2608045463669652 1.0 7783 +81501 DCSTAMP dendrocyte expressed seven transmembrane protein Novel U 0.004040050463613544 -0.2608054377222475 1.0 7784 +57103 TIGAR TP53 induced glycolysis regulatory phosphatase Novel U 0.004037565008623842 -0.26082686655567117 1.0 7785 +9052 GPRC5A G protein-coupled receptor class C group 5 member A Novel N 0.004037318407557971 -0.2608289926747055 1.0 7786 +1650 DDOST dolichyl-diphosphooligosaccharide--protein glycosyltransferase non-catalytic subunit Novel N 0.004036956577529225 -0.26083211226264646 1.0 7787 +55252 ASXL2 ASXL transcriptional regulator 2 Novel N 0.004036638092350395 -0.26083485814453666 1.0 7788 +126374 WTIP WT1 interacting protein Novel U 0.004036075665685723 -0.26083970721537486 1.0 7789 +9040 UBE2M ubiquitin conjugating enzyme E2 M Novel N 0.004034555810260306 -0.26085281094442014 1.0 7790 +54957 TXNL4B thioredoxin like 4B Novel U 0.0040336587395364614 -0.26086054521407703 1.0 7791 +84078 KBTBD7 kelch repeat and BTB domain containing 7 Novel U 0.0040321175425594635 -0.26087383294345856 1.0 7792 +54540 FAM193B family with sequence similarity 193 member B Novel U 0.004031498175291094 -0.2608791729387821 1.0 7793 +8882 ZPR1 ZPR1 zinc finger Novel U 0.0040313209563180305 -0.26088070086661386 1.0 7794 +85369 STRIP1 striatin interacting protein 1 Novel U 0.004029600812075319 -0.2608955314246382 1.0 7795 +7703 PCGF2 polycomb group ring finger 2 Novel U 0.004029418586057973 -0.26089710252167575 1.0 7796 +55212 BBS7 Bardet-Biedl syndrome 7 Novel U 0.00402816381978135 -0.2609079207330852 1.0 7797 +164668 APOBEC3H apolipoprotein B mRNA editing enzyme catalytic subunit 3H Novel U 0.004027787514421141 -0.26091116512291074 1.0 7798 +55023 PHIP pleckstrin homology domain interacting protein Novel U 0.00402565649919658 -0.2609295380849879 1.0 7799 +26157 GIMAP2 GTPase, IMAP family member 2 Novel U 0.004024239086375959 -0.26094175858519875 1.0 7800 +10985 GCN1 GCN1 activator of EIF2AK4 Novel U 0.004023475212122511 -0.2609483444755897 1.0 7801 +23026 MYO16 myosin XVI Novel U 0.004023163285870394 -0.260951033808418 1.0 7802 +6667 SP1 Sp1 transcription factor Novel U 0.0040181848722983474 -0.2609939561689481 1.0 7803 +378951 RBMY1J RNA binding motif protein Y-linked family 1 member J Novel U 0.004017302743195107 -0.261001561616518 1.0 7804 +25975 EGFL6 EGF like domain multiple 6 Novel U 0.004016924956714902 -0.26100481877610754 1.0 7805 +196996 GRAMD2A GRAM domain containing 2A Novel U 0.004016770278544818 -0.2610061523640239 1.0 7806 +7076 TIMP1 TIMP metallopeptidase inhibitor 1 Novel U 0.004016487373785465 -0.2610085914824099 1.0 7807 +54751 FBLIM1 filamin binding LIM protein 1 Novel U 0.004016015290288491 -0.261012661642063 1.0 7808 +388531 RGS9BP regulator of G protein signaling 9 binding protein Novel N 0.0040148924810355265 -0.26102234216033754 1.0 7809 +27329 ANGPTL3 angiopoietin like 3 Novel U 0.004013024089192631 -0.2610384508638697 1.0 7810 +27199 OXGR1 oxoglutarate receptor 1 Novel N 0.00401200517379179 -0.2610472356410987 1.0 7811 +1413 CRYBA4 crystallin beta A4 Novel N 0.004011614864455217 -0.26105060076892916 1.0 7812 +5310 PKD1 polycystin 1, transient receptor potential channel interacting Novel U 0.004010004108038312 -0.2610644882185458 1.0 7813 +51119 SBDS SBDS ribosome maturation factor Novel U 0.004009709988256188 -0.26106702402943105 1.0 7814 +161882 ZFPM1 zinc finger protein, FOG family member 1 Novel U 0.004009675708642685 -0.2610673195777836 1.0 7815 +5792 PTPRF protein tyrosine phosphatase receptor type F Novel U 0.004006663457652658 -0.2610932902853454 1.0 7816 +84910 TMEM87B transmembrane protein 87B Novel U 0.004004367561843811 -0.2611130847974366 1.0 7817 +84675 TRIM55 tripartite motif containing 55 Novel U 0.004003772088892664 -0.26111821878325864 1.0 7818 +121129 OR2AP1 olfactory receptor family 2 subfamily AP member 1 Novel U 0.004003166418978025 -0.2611234406841839 1.0 7819 +84674 CARD6 caspase recruitment domain family member 6 Novel U 0.004002548351214494 -0.2611287694755739 1.0 7820 +3780 KCNN1 potassium calcium-activated channel subfamily N member 1 Novel N 0.004002471585122645 -0.26112943132935984 1.0 7821 +374897 SBSN suprabasin Novel U 0.004002005787017074 -0.26113344729828897 1.0 7822 +10444 ZER1 zyg-11 related cell cycle regulator Novel U 0.004001760176292543 -0.26113556487890294 1.0 7823 +26693 OR2V1 olfactory receptor family 2 subfamily V member 1 Novel U 0.004001501963632799 -0.26113779110955143 1.0 7824 +57396 CLK4 CDC like kinase 4 Novel N 0.004000734795185682 -0.26114440540147354 1.0 7825 +8545 CGGBP1 CGG triplet repeat binding protein 1 Novel N 0.003998847625488796 -0.26116067600192466 1.0 7826 +10363 HMG20A high mobility group 20A Novel U 0.003998820280492444 -0.26116091176212725 1.0 7827 +5279 PIGC phosphatidylinositol glycan anchor biosynthesis class C Novel U 0.003998633189196817 -0.26116252480610735 1.0 7828 +100534592 URGCP-MRPS24 URGCP-MRPS24 readthrough Novel U 0.003998572851055334 -0.26116304502312526 1.0 7829 +178 AGL amylo-alpha-1, 6-glucosidase, 4-alpha-glucanotransferase Novel U 0.003998449755242971 -0.2611641063176042 1.0 7830 +57614 RELCH RAB11 binding and LisH domain, coiled-coil and HEAT repeat containing Novel U 0.003998189821276823 -0.26116634738883054 1.0 7831 +169522 KCNV2 potassium voltage-gated channel modifier subfamily V member 2 Novel N 0.0039979868448804835 -0.26116809738929486 1.0 7832 +1731 SEPTIN1 septin 1 Novel U 0.003996067115013892 -0.2611846487135796 1.0 7833 +404672 GTF2H5 general transcription factor IIH subunit 5 Novel U 0.003994325825705383 -0.2611996615778998 1.0 7834 +345778 MTX3 metaxin 3 Novel N 0.003994281965076275 -0.2612000397308412 1.0 7835 +139596 UPRT uracil phosphoribosyltransferase homolog Novel U 0.0039940274997515915 -0.2612022336531119 1.0 7836 +360 AQP3 aquaporin 3 (Gill blood group) Novel U 0.003993986089216263 -0.2612025906820934 1.0 7837 +95681 CEP41 centrosomal protein 41 Novel N 0.003991048012382984 -0.2612279218827416 1.0 7838 +259295 TAS2R20 taste 2 receptor member 20 Novel U 0.003990142994113031 -0.2612357246737125 1.0 7839 +3852 KRT5 keratin 5 Novel U 0.003988698912137571 -0.2612481751072268 1.0 7840 +1267 CNP 2',3'-cyclic nucleotide 3' phosphodiesterase Novel N 0.0039872603057667655 -0.2612605783317511 1.0 7841 +80274 SCUBE1 signal peptide, CUB domain and EGF like domain containing 1 Novel U 0.0039868136798138065 -0.2612644290042389 1.0 7842 +384 ARG2 arginase 2 Novel N 0.003981643362481885 -0.26130900590034534 1.0 7843 +81618 ITM2C integral membrane protein 2C Novel U 0.003979669120737866 -0.2613260272093797 1.0 7844 +6141 RPL18 ribosomal protein L18 Novel U 0.003977355102117206 -0.26134597797081643 1.0 7845 +64359 NXN nucleoredoxin Novel N 0.003977067296221114 -0.2613484593453057 1.0 7846 +83439 TCF7L1 transcription factor 7 like 1 Novel U 0.003976699178235913 -0.2613516331460858 1.0 7847 +727936 GXYLT2 glucoside xylosyltransferase 2 Novel N 0.003976588861317934 -0.2613525842648423 1.0 7848 +3739 KCNA4 potassium voltage-gated channel subfamily A member 4 Novel N 0.003973977280693624 -0.26137510051494645 1.0 7849 +1831 TSC22D3 TSC22 domain family member 3 Novel U 0.003973874926860779 -0.2613759829784163 1.0 7850 +676 BRDT bromodomain testis associated Novel N 0.003971063630016168 -0.26140022112074324 1.0 7851 +3373 HYAL1 hyaluronidase 1 Novel U 0.00397026635839696 -0.2614070949530163 1.0 7852 +151393 RMDN2 regulator of microtubule dynamics 2 Novel U 0.003966339528888987 -0.26144095087708574 1.0 7853 +55635 DEPDC1 DEP domain containing 1 Novel N 0.003965376776545545 -0.26144925143359604 1.0 7854 +84276 NICN1 nicolin 1, tubulin polyglutamylase complex subunit Novel U 0.00396522645264903 -0.2614505474802963 1.0 7855 +653489 RGPD3 RANBP2 like and GRIP domain containing 3 Novel U 0.003964889563304824 -0.26145345203727643 1.0 7856 +170622 COMMD6 COMM domain containing 6 Novel U 0.003963189901608053 -0.2614681060010487 1.0 7857 +441328 FAM90A10 family with sequence similarity 90 member A10 Novel U 0.003962702784117874 -0.26147230577919717 1.0 7858 +10369 CACNG2 calcium voltage-gated channel auxiliary subunit gamma 2 Novel N 0.003961032483888024 -0.26148670659737383 1.0 7859 +3744 KCNA10 potassium voltage-gated channel subfamily A member 10 Novel N 0.003958271336582455 -0.26151051236569967 1.0 7860 +22801 ITGA11 integrin subunit alpha 11 Novel N 0.0039581962716988975 -0.2615111595521876 1.0 7861 +79412 KREMEN2 kringle containing transmembrane protein 2 Novel U 0.003956753186765798 -0.2615236013895074 1.0 7862 +1649 DDIT3 DNA damage inducible transcript 3 Novel U 0.0039544321402281675 -0.26154361274349675 1.0 7863 +84955 NUDCD1 NudC domain containing 1 Novel U 0.003951454824990104 -0.2615692822456806 1.0 7864 +100996521 CTXND2 cortexin domain containing 2 Novel U 0.003950440504619547 -0.2615780274059627 1.0 7865 +6988 TCTA T cell leukemia translocation altered Novel U 0.003949929884307232 -0.26158242981826174 1.0 7866 +388551 CEACAM16 CEA cell adhesion molecule 16, tectorial membrane component Novel N 0.003949860391431563 -0.26158302896460034 1.0 7867 +130271 PLEKHH2 pleckstrin homology, MyTH4 and FERM domain containing H2 Novel U 0.003945703453838084 -0.26161886881026736 1.0 7868 +340267 COL28A1 collagen type XXVIII alpha 1 chain Novel U 0.003941433605342572 -0.2616556821392287 1.0 7869 +148930 KNCN kinocilin Novel U 0.003940686876291489 -0.261662120208924 1.0 7870 +11334 TUSC2 tumor suppressor 2, mitochondrial calcium regulator Novel U 0.0039403130846712145 -0.2616653429260519 1.0 7871 +54971 BANP BTG3 associated nuclear protein Novel U 0.0039391706580418325 -0.2616751925793513 1.0 7872 +114625 ERMAP erythroblast membrane associated protein (Scianna blood group) Novel U 0.003936913910891014 -0.26169464956367594 1.0 7873 +84056 KATNAL1 katanin catalytic subunit A1 like 1 Novel N 0.0039343633905411755 -0.2617166393707522 1.0 7874 +3290 HSD11B1 hydroxysteroid 11-beta dehydrogenase 1 Novel N 0.003934146522907795 -0.2617185091372175 1.0 7875 +255411 SPMIP11 sperm microtubule inner protein 11 Novel U 0.003934063071078717 -0.2617192286333868 1.0 7876 +26270 FBXO6 F-box protein 6 Novel U 0.003933012075454694 -0.2617282899964972 1.0 7877 +23580 CDC42EP4 CDC42 effector protein 4 Novel U 0.003932900232708976 -0.2617292542704742 1.0 7878 +9793 CKAP5 cytoskeleton associated protein 5 Novel U 0.003927089508713702 -0.26177935255713863 1.0 7879 +140730 RIMS4 regulating synaptic membrane exocytosis 4 Novel U 0.0039264485549306135 -0.2617848786647958 1.0 7880 +6050 RNH1 ribonuclease/angiogenin inhibitor 1 Novel U 0.0039248638099639 -0.2617985418516373 1.0 7881 +3612 IMPA1 inositol monophosphatase 1 Novel U 0.00392455120560327 -0.2618012370309101 1.0 7882 +55093 NTAQ1 N-terminal glutamine amidase 1 Novel U 0.003922755388180261 -0.2618167200199709 1.0 7883 +84823 LMNB2 lamin B2 Novel U 0.003921541121987493 -0.26182718905203334 1.0 7884 +8085 KMT2D lysine methyltransferase 2D Novel U 0.003919993147594847 -0.26184053521422157 1.0 7885 +284111 SLC13A5 solute carrier family 13 member 5 Novel U 0.0039194059195046625 -0.26184559811537184 1.0 7886 +727909 GOLGA8Q golgin A8 family member Q Novel U 0.003918802991002818 -0.2618507963806737 1.0 7887 +4435 CITED1 Cbp/p300 interacting transactivator with Glu/Asp rich carboxy-terminal domain 1 Novel U 0.0039151448147505385 -0.2618823360584668 1.0 7888 +9572 NR1D1 nuclear receptor subfamily 1 group D member 1 Novel U 0.003914884013806162 -0.26188458460451447 1.0 7889 +133418 EMB embigin Novel U 0.0039146101582507795 -0.2618869457034291 1.0 7890 +9513 FXR2 FMR1 autosomal homolog 2 Novel U 0.003914285038038271 -0.2618897487905521 1.0 7891 +5702 PSMC3 proteasome 26S subunit, ATPase 3 Novel U 0.003910413861020727 -0.2619231248958552 1.0 7892 +79415 CYBC1 cytochrome b-245 chaperone 1 Novel U 0.0039097982492447576 -0.2619284325124709 1.0 7893 +1559 CYP2C9 cytochrome P450 family 2 subfamily C member 9 Novel N 0.00390892943746878 -0.26193592314211456 1.0 7894 +390142 OR5D13 olfactory receptor family 5 subfamily D member 13 Novel U 0.003908646845993971 -0.26193835955945693 1.0 7895 +5130 PCYT1A phosphate cytidylyltransferase 1A, choline Novel U 0.003906664315514758 -0.26195545233143325 1.0 7896 +139231 FAM199X family with sequence similarity 199, X-linked Novel U 0.0039058943797069226 -0.26196209048269387 1.0 7897 +2331 FMOD fibromodulin Novel U 0.0039043866827576804 -0.2619750893850729 1.0 7898 +79886 CAAP1 caspase activity and apoptosis inhibitor 1 Novel N 0.00390131438218038 -0.26200157782182637 1.0 7899 +3759 KCNJ2 potassium inwardly rectifying channel subfamily J member 2 Novel U 0.0039009918981158386 -0.2620043581808872 1.0 7900 +81831 NETO2 neuropilin and tolloid like 2 Novel U 0.0038987355978632467 -0.2620238113121919 1.0 7901 +85476 GFM1 G elongation factor mitochondrial 1 Novel N 0.003894521786334414 -0.2620601415075501 1.0 7902 +10383 TUBB4B tubulin beta 4B class IVb Novel N 0.0038909793421254184 -0.262090683379031 1.0 7903 +4711 NDUFB5 NADH:ubiquinone oxidoreductase subunit B5 Novel N 0.0038881292774464024 -0.26211525576577965 1.0 7904 +64781 CERK ceramide kinase Novel N 0.0038874049529576335 -0.262121500670185 1.0 7905 +10331 B3GNT3 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 3 Novel N 0.003887204230759715 -0.2621232312356394 1.0 7906 +3745 KCNB1 potassium voltage-gated channel subfamily B member 1 Novel U 0.0038862248585643036 -0.26213167508343477 1.0 7907 +285203 EOGT EGF domain specific O-linked N-acetylglucosamine transferase Novel U 0.003885652669207296 -0.262136608325223 1.0 7908 +51168 MYO15A myosin XVA Novel N 0.003885494550194677 -0.2621379715790323 1.0 7909 +25928 SOSTDC1 sclerostin domain containing 1 Novel U 0.0038841944430440273 -0.26214918070560256 1.0 7910 +131578 LRRC15 leucine rich repeat containing 15 Novel U 0.0038840308151005267 -0.2621505914557305 1.0 7911 +4821 NKX2-2 NK2 homeobox 2 Novel N 0.003881958158287904 -0.26216846126941296 1.0 7912 +100132994 CXorf49B chromosome X open reading frame 49B Novel U 0.0038807065849073763 -0.26217925195264796 1.0 7913 +151648 SGO1 shugoshin 1 Novel U 0.0038792371723332586 -0.2621919207788435 1.0 7914 +729920 CRPPA CDP-L-ribitol pyrophosphorylase A Novel U 0.0038786455069485274 -0.2621970219369914 1.0 7915 +55213 RCBTB1 RCC1 and BTB domain containing protein 1 Novel U 0.003878186729042632 -0.2622009773799041 1.0 7916 +81559 TRIM11 tripartite motif containing 11 Novel U 0.003878132103697561 -0.26220144834293707 1.0 7917 +10535 RNASEH2A ribonuclease H2 subunit A Novel U 0.003877695521320957 -0.26220521242277867 1.0 7918 +166336 PRICKLE2 prickle planar cell polarity protein 2 Novel U 0.003876828298596844 -0.2622126893521028 1.0 7919 +255189 PLA2G4F phospholipase A2 group IVF Novel U 0.0038759806532544373 -0.2622199974912242 1.0 7920 +84873 ADGRG7 adhesion G protein-coupled receptor G7 Novel N 0.003875941924599842 -0.26222033139784956 1.0 7921 +81605 URM1 ubiquitin related modifier 1 Novel N 0.003875249263597886 -0.2622263033093472 1.0 7922 +3704 ITPA inosine triphosphatase Novel N 0.003871947214057312 -0.2622547725714561 1.0 7923 +5153 PDE1B phosphodiesterase 1B Novel U 0.003871757030153768 -0.26225641227895663 1.0 7924 +25843 MOB4 MOB family member 4, phocein Novel U 0.0038665821181504117 -0.26230102878891615 1.0 7925 +4648 MYO7B myosin VIIB Novel N 0.0038651625419197653 -0.2623132679413871 1.0 7926 +3746 KCNC1 potassium voltage-gated channel subfamily C member 1 Novel U 0.0038648340955593627 -0.2623160997055409 1.0 7927 +90527 DUOXA1 dual oxidase maturation factor 1 Novel N 0.0038621597020383393 -0.2623391575092463 1.0 7928 +4016 LOXL1 lysyl oxidase like 1 Novel N 0.0038611026652656233 -0.26234827095729474 1.0 7929 +10403 NDC80 NDC80 kinetochore complex component Novel U 0.003860595698256801 -0.26235264187192736 1.0 7930 +9122 SLC16A4 solute carrier family 16 member 4 Novel U 0.0038569492206418764 -0.262384080687644 1.0 7931 +653075 GOLGA8T golgin A8 family member T Novel U 0.0038568032868549454 -0.262385338884161 1.0 7932 +89872 AQP10 aquaporin 10 Novel U 0.0038555424801652834 -0.2623962091741659 1.0 7933 +10107 TRIM10 tripartite motif containing 10 Novel U 0.0038544368523408395 -0.26240574155941393 1.0 7934 +128125814 LOC128125814 uncharacterized LOC128125814 Novel U 0.003853554409058794 -0.26241334971573743 1.0 7935 +51475 CABP2 calcium binding protein 2 Novel N 0.0038528279499130285 -0.2624196130245031 1.0 7936 +286204 CRB2 crumbs cell polarity complex component 2 Novel N 0.0038520224090107967 -0.2624265581520075 1.0 7937 +27085 MTBP MDM2 binding protein Novel N 0.0038519378223802058 -0.26242728743208876 1.0 7938 +130106 CIB4 calcium and integrin binding family member 4 Novel U 0.0038505520832381253 -0.26243923485152193 1.0 7939 +8672 EIF4G3 eukaryotic translation initiation factor 4 gamma 3 Novel N 0.0038503390811422218 -0.2624410712905043 1.0 7940 +480 ATP1A4 ATPase Na+/K+ transporting subunit alpha 4 Novel N 0.003848439238773811 -0.26245745115085684 1.0 7941 +160857 CCDC122 coiled-coil domain containing 122 Novel U 0.0038479793018116235 -0.2624614165867987 1.0 7942 +79812 MMRN2 multimerin 2 Novel U 0.0038463277657187194 -0.2624756556263205 1.0 7943 +80025 PANK2 pantothenate kinase 2 Novel U 0.0038457265350200207 -0.2624808392536825 1.0 7944 +6038 RNASE4 ribonuclease A family member 4 Novel N 0.003845519586175887 -0.2624826235033778 1.0 7945 +286256 LCN12 lipocalin 12 Novel U 0.0038416384800387033 -0.26251608521451636 1.0 7946 +2039 DMTN dematin actin binding protein Novel U 0.003840450376660514 -0.2625263286787862 1.0 7947 +222194 RSBN1L round spermatid basic protein 1 like Novel U 0.003837793739981372 -0.262549233388427 1.0 7948 +92259 KGD4 alpha-ketoglutarate dehydrogenase subunit 4 Novel U 0.0038376103786666635 -0.2625508142736515 1.0 7949 +51185 CRBN cereblon Novel U 0.0038374984523971505 -0.26255177926774514 1.0 7950 +79025 FNDC11 fibronectin type III domain containing 11 Novel U 0.0038366216638735995 -0.2625593386704689 1.0 7951 +10300 KATNB1 katanin regulatory subunit B1 Novel U 0.003833376501317077 -0.2625873174703846 1.0 7952 +775 CACNA1C calcium voltage-gated channel subunit alpha1 C Novel U 0.003828881386024375 -0.262626072980835 1.0 7953 +1007 CDH9 cadherin 9 Novel U 0.0038264549828167936 -0.2626469926878381 1.0 7954 +6943 TCF21 transcription factor 21 Novel N 0.003826282062225639 -0.26264848355633447 1.0 7955 +1638 DCT dopachrome tautomerase Novel N 0.0038240402295697568 -0.26266781195244127 1.0 7956 +51441 YTHDF2 YTH N6-methyladenosine RNA binding protein F2 Novel U 0.003823638612165174 -0.26267127457497863 1.0 7957 +100130988 SPMIP7 sperm microtubule inner protein 7 Novel U 0.0038217320256347556 -0.26268771258143514 1.0 7958 +5173 PDYN prodynorphin Novel N 0.0038184021498808853 -0.262716421752652 1.0 7959 +27075 TSPAN13 tetraspanin 13 Novel U 0.0038181654348606827 -0.26271846263722154 1.0 7960 +221806 VWDE von Willebrand factor D and EGF domains Novel U 0.003816711117089355 -0.26273100132064003 1.0 7961 +9785 DHX38 DEAH-box helicase 38 Novel N 0.003816580498184569 -0.262732127476923 1.0 7962 +80199 FUZ fuzzy planar cell polarity protein Novel U 0.00381353806061049 -0.26275835844398815 1.0 7963 +153443 SRFBP1 serum response factor binding protein 1 Novel U 0.0038135123890751218 -0.26275857977612144 1.0 7964 +9790 BMS1 BMS1 ribosome biogenesis factor Novel N 0.003807793593643756 -0.26280788548279904 1.0 7965 +440533 PSG8 pregnancy specific beta-1-glycoprotein 8 Novel U 0.0038061086460093765 -0.26282241258642164 1.0 7966 +3249 HPN hepsin Novel U 0.003804174200566266 -0.2628390907839104 1.0 7967 +64773 PCED1A PC-esterase domain containing 1A Novel U 0.0038029107310312508 -0.2628499840321542 1.0 7968 +4151 MB myoglobin Novel N 0.0038019726562345656 -0.26285807182639725 1.0 7969 +54968 TMEM70 transmembrane protein 70 Novel U 0.0038019541414290514 -0.2628582314553927 1.0 7970 +79020 C7orf25 chromosome 7 open reading frame 25 Novel U 0.0038014671239855807 -0.262862430370969 1.0 7971 +101929926 TEX51 testis expressed 51 Novel U 0.003797888489600159 -0.2628932842630923 1.0 7972 +9832 JAKMIP2 janus kinase and microtubule interacting protein 2 Novel U 0.003795645735658585 -0.26291262060224274 1.0 7973 +9881 TRANK1 tetratricopeptide repeat and ankyrin repeat containing 1 Novel N 0.003795403538600409 -0.26291470875126854 1.0 7974 +25909 AHCTF1 AT-hook containing transcription factor 1 Novel U 0.0037953950862133377 -0.262914781625167 1.0 7975 +4779 NFE2L1 NFE2 like bZIP transcription factor 1 Novel N 0.003794981098162028 -0.2629183509036402 1.0 7976 +64599 GIGYF1 GRB10 interacting GYF protein 1 Novel U 0.0037949184181423675 -0.26291889131161617 1.0 7977 +83953 FCAMR Fc alpha and mu receptor Novel U 0.0037945887974590252 -0.2629217332004235 1.0 7978 +9869 SETDB1 SET domain bifurcated histone lysine methyltransferase 1 Novel U 0.0037928018653440175 -0.26293713958307396 1.0 7979 +5192 PEX10 peroxisomal biogenesis factor 10 Novel U 0.003792369457590485 -0.2629408676705911 1.0 7980 +3836 KPNA1 karyopherin subunit alpha 1 Novel U 0.0037912883326789463 -0.2629501887992116 1.0 7981 +1375 CPT1B carnitine palmitoyltransferase 1B Novel U 0.0037890841597975587 -0.2629691925042507 1.0 7982 +7468 NSD2 nuclear receptor binding SET domain protein 2 Novel U 0.0037873482161775475 -0.2629841592796782 1.0 7983 +100289279 CNTNAP3C contactin associated protein family member 3C Novel U 0.003781108968286742 -0.2630379521684229 1.0 7984 +8800 PEX11A peroxisomal biogenesis factor 11 alpha Novel U 0.0037805115267671844 -0.2630431031266402 1.0 7985 +55364 IMPACT impact RWD domain protein Novel U 0.0037799219922496235 -0.2630481859131025 1.0 7986 +10914 PAPOLA poly(A) polymerase alpha Novel N 0.0037772899175026174 -0.26307087885727 1.0 7987 +8450 CUL4B cullin 4B Novel U 0.003777199307475639 -0.2630716600692343 1.0 7988 +100507096 GIMD1 GIMAP family P-loop NTPase domain containing 1 Novel U 0.0037770795010101024 -0.26307269300397007 1.0 7989 +2564 GABRE gamma-aminobutyric acid type A receptor subunit epsilon Novel U 0.003774811213123771 -0.2630922494889897 1.0 7990 +100329135 TRPC5OS TRPC5 opposite strand Novel U 0.003774720510813616 -0.2630930314965913 1.0 7991 +23439 ATP1B4 ATPase Na+/K+ transporting family member beta 4 Novel N 0.003773238012691142 -0.2631058131423862 1.0 7992 +3872 KRT17 keratin 17 Novel U 0.0037728754333853673 -0.2631089391903647 1.0 7993 +3283 HSD3B1 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 1 Novel N 0.003770017569204153 -0.2631335788220379 1.0 7994 +140465 MYL6B myosin light chain 6B Novel U 0.003768996167517537 -0.26314238503526316 1.0 7995 +1791 DNTT DNA nucleotidylexotransferase Novel N 0.0037688379783571975 -0.26314374889386466 1.0 7996 +2305 FOXM1 forkhead box M1 Novel U 0.0037684415688510405 -0.2631471666154932 1.0 7997 +84951 TNS4 tensin 4 Novel N 0.00376539000233334 -0.26317347628952065 1.0 7998 +595 CCND1 cyclin D1 Novel U 0.003764734022700033 -0.2631791319454668 1.0 7999 +5028 P2RY1 purinergic receptor P2Y1 Novel U 0.0037634533035923083 -0.2631901739142555 1.0 8000 +4846 NOS3 nitric oxide synthase 3 Novel U 0.0037625572229435713 -0.2631978996477874 1.0 8001 +6721 SREBF2 sterol regulatory element binding transcription factor 2 Novel U 0.0037620705845943974 -0.26320209529492855 1.0 8002 +343578 ARHGAP40 Rho GTPase activating protein 40 Novel U 0.003757284263801073 -0.26324336149021965 1.0 8003 +347862 GATD1 glutamine amidotransferase class 1 domain containing 1 Novel U 0.0037553643743140634 -0.2632599141907028 1.0 8004 +100529215 ZNF559-ZNF177 ZNF559-ZNF177 readthrough Novel U 0.003755129650643378 -0.26326193790646535 1.0 8005 +30820 KCNIP1 potassium voltage-gated channel interacting protein 1 Novel N 0.0037550913906046843 -0.2632622677728276 1.0 8006 +687 KLF9 KLF transcription factor 9 Novel U 0.0037545704561068502 -0.2632667591108824 1.0 8007 +57674 RNF213 ring finger protein 213 Novel U 0.0037541583885570403 -0.2632703118313785 1.0 8008 +203245 NAIF1 nuclear apoptosis inducing factor 1 Novel N 0.003753213352960902 -0.2632784596395074 1.0 8009 +22870 PPP6R1 protein phosphatase 6 regulatory subunit 1 Novel N 0.0037512482793811194 -0.2632954019034312 1.0 8010 +5631 PRPS1 phosphoribosyl pyrophosphate synthetase 1 Novel U 0.003749905974073307 -0.26330697484961774 1.0 8011 +81792 ADAMTS12 ADAM metallopeptidase with thrombospondin type 1 motif 12 Novel U 0.0037497140198172406 -0.26330862982055675 1.0 8012 +2592 GALT galactose-1-phosphate uridylyltransferase Novel U 0.0037496680495174347 -0.26330902616243423 1.0 8013 +54963 UCKL1 uridine-cytidine kinase 1 like 1 Novel N 0.003748899233562804 -0.2633156546586627 1.0 8014 +9689 BZW1 basic leucine zipper and W2 domains 1 Novel N 0.003745854274178997 -0.26334190736800067 1.0 8015 +136853 SSC4D scavenger receptor cysteine rich family member with 4 domains Novel U 0.0037447141821576944 -0.2633517368930226 1.0 8016 +4297 KMT2A lysine methyltransferase 2A Novel U 0.0037446958477534526 -0.2633518949666534 1.0 8017 +534 ATP6V1G2 ATPase H+ transporting V1 subunit G2 Novel U 0.0037436343251480556 -0.2633610470901804 1.0 8018 +57818 G6PC2 glucose-6-phosphatase catalytic subunit 2 Novel U 0.00374360425192305 -0.26336130637233673 1.0 8019 +57655 GRAMD1A GRAM domain containing 1A Novel U 0.00374290132070186 -0.26336736683052625 1.0 8020 +79624 ARMT1 acidic residue methyltransferase 1 Novel N 0.0037428382578233842 -0.2633679105393939 1.0 8021 +3751 KCND2 potassium voltage-gated channel subfamily D member 2 Novel N 0.00374072531588065 -0.26338612767915803 1.0 8022 +3215 HOXB5 homeobox B5 Novel N 0.0037404228584256853 -0.2633887353749107 1.0 8023 +389541 LAMTOR4 late endosomal/lysosomal adaptor, MAPK and MTOR activator 4 Novel U 0.0037389701804774584 -0.2634012599202755 1.0 8024 +56901 NDUFA4L2 NDUFA4 mitochondrial complex associated like 2 Novel U 0.003737329020395992 -0.2634154095009974 1.0 8025 +3764 KCNJ8 potassium inwardly rectifying channel subfamily J member 8 Novel U 0.003733947659098583 -0.26344456256483784 1.0 8026 +26273 FBXO3 F-box protein 3 Novel U 0.0037318657522083538 -0.2634625121298628 1.0 8027 +57178 ZMIZ1 zinc finger MIZ-type containing 1 Novel U 0.0037306789191164993 -0.263472744642112 1.0 8028 +56654 NPDC1 neural proliferation, differentiation and control 1 Novel U 0.003730245011882234 -0.2634764856576938 1.0 8029 +51566 ARMCX3 armadillo repeat containing X-linked 3 Novel U 0.0037293189521845982 -0.26348446986142443 1.0 8030 +116143 DNAAF10 dynein axonemal assembly factor 10 Novel U 0.0037291990090286757 -0.2634855039746629 1.0 8031 +2571 GAD1 glutamate decarboxylase 1 Novel N 0.0037280642560195715 -0.26349528746835316 1.0 8032 +6263 RYR3 ryanodine receptor 3 Novel U 0.0037263543042032757 -0.26351003015039154 1.0 8033 +1938 EEF2 eukaryotic translation elongation factor 2 Novel N 0.003726067445984118 -0.2635125033542999 1.0 8034 +203260 CCDC107 coiled-coil domain containing 107 Novel U 0.00372516051261745 -0.26352032265664943 1.0 8035 +80018 NAA25 N-alpha-acetyltransferase 25, NatB auxiliary subunit Novel U 0.0037251300772588474 -0.26352058506101095 1.0 8036 +222545 GPRC6A G protein-coupled receptor class C group 6 member A Novel N 0.003723812376057931 -0.26353194587810624 1.0 8037 +6146 RPL22 ribosomal protein L22 Novel N 0.0037212586773620426 -0.2635539630879109 1.0 8038 +10336 PCGF3 polycomb group ring finger 3 Novel U 0.0037205192539542073 -0.2635603381705826 1.0 8039 +54778 RNF111 ring finger protein 111 Novel N 0.0037187593943860046 -0.2635755111420072 1.0 8040 +27346 TMEM97 transmembrane protein 97 Novel U 0.0037161922505576147 -0.26359764427163584 1.0 8041 +1054 CEBPG CCAAT enhancer binding protein gamma Novel U 0.0037109466728966014 -0.26364287003930187 1.0 8042 +51066 SSUH2 ssu-2 homolog Novel N 0.0037099168991481905 -0.2636517484338856 1.0 8043 +84930 MASTL microtubule associated serine/threonine kinase like Novel U 0.003707542595894773 -0.26367221895100446 1.0 8044 +30968 STOML2 stomatin like 2 Novel U 0.0037060186771342707 -0.26368535771288315 1.0 8045 +55602 CDKN2AIP CDKN2A interacting protein Novel N 0.003704324026495869 -0.26369996847284144 1.0 8046 +3757 KCNH2 potassium voltage-gated channel subfamily H member 2 Novel U 0.0037020654151329376 -0.26371944152983323 1.0 8047 +9447 AIM2 absent in melanoma 2 Novel U 0.0037020367857060975 -0.26371968836400295 1.0 8048 +26519 TIMM10 translocase of inner mitochondrial membrane 10 Novel U 0.003701104349244201 -0.2637277275462464 1.0 8049 +29103 DNAJC15 DnaJ heat shock protein family (Hsp40) member C15 Novel U 0.0036966353695906734 -0.2637662577232023 1.0 8050 +4335 MNT MAX network transcriptional repressor Novel N 0.0036953277223443818 -0.2637775318581731 1.0 8051 +9096 TBX18 T-box transcription factor 18 Novel U 0.003695283212221017 -0.26377791561085545 1.0 8052 +671 BPI bactericidal permeability increasing protein Novel U 0.003694456586001545 -0.2637850425295219 1.0 8053 +255426 RASGEF1C RasGEF domain family member 1C Novel U 0.003692221429790446 -0.26380431336336196 1.0 8054 +11338 U2AF2 U2 small nuclear RNA auxiliary factor 2 Novel U 0.003691361780467812 -0.26381172499713273 1.0 8055 +3099 HK2 hexokinase 2 Novel U 0.003690733755431791 -0.26381713963708336 1.0 8056 +735 C9 complement C9 Novel U 0.003690732537765706 -0.2638171501354283 1.0 8057 +9091 PIGQ phosphatidylinositol glycan anchor biosynthesis class Q Novel U 0.0036882653944048925 -0.26383842109158323 1.0 8058 +80006 TRAPPC13 trafficking protein particle complex subunit 13 Novel U 0.003687409684079429 -0.26384579876452413 1.0 8059 +101929355 CFAP97D2 CFAP97 domain containing 2 Novel U 0.0036871753268830493 -0.26384781932065715 1.0 8060 +122526777 LCE7A late cornified envelope 7A Novel U 0.003686540606748311 -0.2638532916837031 1.0 8061 +79544 OR4K1 olfactory receptor family 4 subfamily K member 1 Novel U 0.003685843199777678 -0.26385930451349243 1.0 8062 +93986 FOXP2 forkhead box P2 Novel U 0.0036853966027592853 -0.2638631549365153 1.0 8063 +84443 FRMPD3 FERM and PDZ domain containing 3 Novel U 0.003684421138996089 -0.26387156508700244 1.0 8064 +8625 RFXANK regulatory factor X associated ankyrin containing protein Novel U 0.0036802847146023723 -0.2639072280741294 1.0 8065 +794 CALB2 calbindin 2 Novel U 0.003679951701268219 -0.2639100992133353 1.0 8066 +7044 LEFTY2 left-right determination factor 2 Novel U 0.0036787066374155512 -0.2639208337734103 1.0 8067 +54658 UGT1A1 UDP glucuronosyltransferase family 1 member A1 Novel U 0.0036767601780584003 -0.2639376155511947 1.0 8068 +64478 CSMD1 CUB and Sushi multiple domains 1 Novel U 0.0036766375812207937 -0.26393867254366576 1.0 8069 +3234 HOXD8 homeobox D8 Novel N 0.003675990993726588 -0.2639442472234586 1.0 8070 +9569 GTF2IRD1 GTF2I repeat domain containing 1 Novel U 0.0036756983360573875 -0.26394677042845305 1.0 8071 +84439 HHIPL1 HHIP like 1 Novel U 0.0036739734595002955 -0.2639616417870459 1.0 8072 +1659 DHX8 DEAH-box helicase 8 Novel N 0.0036720984788742505 -0.26397780729705295 1.0 8073 +22796 COG2 component of oligomeric golgi complex 2 Novel U 0.0036717441432292477 -0.2639808622707074 1.0 8074 +4216 MAP3K4 mitogen-activated protein kinase kinase kinase 4 Novel U 0.003671533295400495 -0.2639826801362567 1.0 8075 +5859 QARS1 glutaminyl-tRNA synthetase 1 Novel U 0.003671292885252634 -0.26398475287908774 1.0 8076 +9211 LGI1 leucine rich glioma inactivated 1 Novel N 0.0036708179610270143 -0.2639888475306352 1.0 8077 +404636 DENND10 DENN domain containing 10 Novel U 0.0036695294931849264 -0.2639999563066437 1.0 8078 +9737 GPRASP1 G protein-coupled receptor associated sorting protein 1 Novel U 0.0036684828014050437 -0.26400898056332506 1.0 8079 +58508 KMT2C lysine methyltransferase 2C Novel U 0.003668381162745086 -0.26400985686079276 1.0 8080 +4917 NTN3 netrin 3 Novel U 0.0036676137856946527 -0.26401647295122893 1.0 8081 +84939 PWWP3A PWWP domain containing 3A, DNA repair factor Novel N 0.003664677733573638 -0.2640417866954267 1.0 8082 +2027 ENO3 enolase 3 Novel U 0.003663751524917531 -0.2640497721834317 1.0 8083 +171023 ASXL1 ASXL transcriptional regulator 1 Novel U 0.003663070414281841 -0.26405564451120095 1.0 8084 +79777 ACBD4 acyl-CoA binding domain containing 4 Novel U 0.0036616365611344573 -0.26406800675488534 1.0 8085 +6495 SIX1 SIX homeobox 1 Novel U 0.0036602080137134664 -0.2640803232542181 1.0 8086 +130120 REG3G regenerating family member 3 gamma Novel N 0.003659761202675605 -0.2640841755224514 1.0 8087 +257160 RNF214 ring finger protein 214 Novel U 0.0036595547174978946 -0.26408595577455657 1.0 8088 +93643 TJAP1 tight junction associated protein 1 Novel U 0.0036582886424843626 -0.26409687148643995 1.0 8089 +48 ACO1 aconitase 1 Novel N 0.0036580926357438794 -0.26409856139666127 1.0 8090 +83743 GRWD1 glutamate rich WD repeat containing 1 Novel U 0.003657863367295584 -0.26410053807916334 1.0 8091 +160760 PPTC7 protein phosphatase targeting COQ7 Novel N 0.0036571233425650596 -0.2641069183462555 1.0 8092 +25926 NOL11 nucleolar protein 11 Novel N 0.0036557981058965706 -0.26411834413184954 1.0 8093 +2907 GRINA glutamate ionotropic receptor NMDA type subunit associated protein 1 Novel U 0.0036545590605437457 -0.26412902680225797 1.0 8094 +995 CDC25C cell division cycle 25C Novel U 0.0036541893538545415 -0.2641322143003585 1.0 8095 +509 ATP5F1C ATP synthase F1 subunit gamma Novel N 0.0036533635731164182 -0.2641393339295431 1.0 8096 +23589 CARHSP1 calcium regulated heat stable protein 1 Novel N 0.0036531659970997473 -0.26414103736958416 1.0 8097 +11016 ATF7 activating transcription factor 7 Novel N 0.003652224980846099 -0.2641491505241703 1.0 8098 +55831 EMC3 ER membrane protein complex subunit 3 Novel U 0.0036521686561106527 -0.2641496361388278 1.0 8099 +1992 SERPINB1 serpin family B member 1 Novel N 0.003652090788002413 -0.2641503074938623 1.0 8100 +165324 UBXN2A UBX domain protein 2A Novel U 0.0036470779965586918 -0.26419352624989695 1.0 8101 +266812 NAP1L5 nucleosome assembly protein 1 like 5 Novel U 0.0036448420530824097 -0.26421280387129686 1.0 8102 +161424 NOP9 NOP9 nucleolar protein Novel U 0.0036428493770757305 -0.2642299841149107 1.0 8103 +55605 KIF21A kinesin family member 21A Novel U 0.003641937288479209 -0.2642378478640768 1.0 8104 +5225 PGC progastricsin Novel U 0.0036412020738178993 -0.264244186660222 1.0 8105 +26233 FBXL6 F-box and leucine rich repeat protein 6 Novel N 0.003639871264478352 -0.26425566049168303 1.0 8106 +64981 MRPL34 mitochondrial ribosomal protein L34 Novel U 0.0036395817034848604 -0.26425815699808575 1.0 8107 +6496 SIX3 SIX homeobox 3 Novel U 0.003639400911367888 -0.2642597157324724 1.0 8108 +4778 NFE2 nuclear factor, erythroid 2 Novel U 0.003638543279294478 -0.2642671099741368 1.0 8109 +153579 BTNL9 butyrophilin like 9 Novel U 0.00363816980114651 -0.26427032998860234 1.0 8110 +6939 TCF15 transcription factor 15 Novel N 0.0036381639653451942 -0.26427038030309796 1.0 8111 +84268 RPAIN RPA interacting protein Novel U 0.003638069195121492 -0.26427119738300714 1.0 8112 +9671 WSCD2 WSC domain containing 2 Novel U 0.003637809188113169 -0.26427343908398077 1.0 8113 +1288 COL4A6 collagen type IV alpha 6 chain Novel U 0.003633150102385714 -0.26431360829741407 1.0 8114 +23759 PPIL2 peptidylprolyl isomerase like 2 Novel U 0.0036329547687912202 -0.26431529240397633 1.0 8115 +9877 ZC3H11A zinc finger CCCH-type containing 11A Novel N 0.0036321956188450867 -0.26432183756283323 1.0 8116 +158835 AWAT2 acyl-CoA wax alcohol acyltransferase 2 Novel U 0.003631851012730293 -0.2643248086514513 1.0 8117 +10611 PDLIM5 PDZ and LIM domain 5 Novel U 0.003630431290571154 -0.26433704906207317 1.0 8118 +5470 PPEF2 protein phosphatase with EF-hand domain 2 Novel U 0.0036295368244006563 -0.26434476087606706 1.0 8119 +90799 CEP95 centrosomal protein 95 Novel U 0.0036289800811190208 -0.2643495609465134 1.0 8120 +387509 GPR153 G protein-coupled receptor 153 Novel U 0.0036262475217920457 -0.2643731202380237 1.0 8121 +30811 HUNK hormonally up-regulated Neu-associated kinase Novel N 0.0036261926983227203 -0.2643735929092234 1.0 8122 +51438 MAGEC2 MAGE family member C2 Novel U 0.0036254466226884273 -0.2643800253453588 1.0 8123 +153770 PLAC8L1 PLAC8 like 1 Novel U 0.0036254130924164387 -0.2643803144331178 1.0 8124 +128061 C1orf131 chromosome 1 open reading frame 131 Novel N 0.0036232644142253742 -0.26439883967989486 1.0 8125 +115330 GPR146 G protein-coupled receptor 146 Novel U 0.0036227199256833693 -0.26440353409372086 1.0 8126 +10922 FASTK Fas activated serine/threonine kinase Novel N 0.0036206120796217767 -0.26442170729835496 1.0 8127 +79933 SYNPO2L synaptopodin 2 like Novel U 0.003620187831478699 -0.2644253650362041 1.0 8128 +1977 EIF4E eukaryotic translation initiation factor 4E Novel U 0.0036188390588879626 -0.26443699374132773 1.0 8129 +2078 ERG ETS transcription factor ERG Novel N 0.0036183962483649222 -0.26444081151834475 1.0 8130 +7134 TNNC1 troponin C1, slow skeletal and cardiac type Novel U 0.0036182089116914614 -0.2644424266778976 1.0 8131 +80339 PNPLA3 patatin like phospholipase domain containing 3 Novel U 0.003617699874431313 -0.26444681544160453 1.0 8132 +3098 HK1 hexokinase 1 Novel U 0.003617424169900387 -0.2644491924818213 1.0 8133 +23556 PIGN phosphatidylinositol glycan anchor biosynthesis class N Novel U 0.0036173846691532237 -0.2644495330451928 1.0 8134 +283471 TMPRSS12 transmembrane serine protease 12 Novel U 0.0036157074064697924 -0.26446399389151665 1.0 8135 +92579 G6PC3 glucose-6-phosphatase catalytic subunit 3 Novel U 0.0036150366157749626 -0.26446977724390935 1.0 8136 +113791 PIK3IP1 phosphoinositide-3-kinase interacting protein 1 Novel U 0.0036147186297377934 -0.2644725188223527 1.0 8137 +1316 KLF6 KLF transcription factor 6 Novel U 0.0036139866803820476 -0.2644788294660311 1.0 8138 +7009 TMBIM6 transmembrane BAX inhibitor motif containing 6 Novel U 0.003613454832016839 -0.26448341490011534 1.0 8139 +3191 HNRNPL heterogeneous nuclear ribonucleoprotein L Novel N 0.0036123420295153382 -0.2644930091432366 1.0 8140 +4833 NME4 NME/NM23 nucleoside diphosphate kinase 4 Novel N 0.0036107851719765585 -0.2645064318931963 1.0 8141 +117195 MRGPRX3 MAS related GPR family member X3 Novel U 0.003610255069755299 -0.264511002272561 1.0 8142 +341277 OVCH2 ovochymase 2 Novel U 0.003605854287944628 -0.2645489444685555 1.0 8143 +222223 ELAPOR2 endosome-lysosome associated apoptosis and autophagy regulator family member 2 Novel U 0.0036051459324322487 -0.26455505169332616 1.0 8144 +93408 MYL10 myosin light chain 10 Novel U 0.003602814537264595 -0.2645751522700412 1.0 8145 +65268 WNK2 WNK lysine deficient protein kinase 2 Novel U 0.0036017491266130933 -0.2645843379151136 1.0 8146 +56977 STOX2 storkhead box 2 Novel U 0.0036003067847392672 -0.2645967733460034 1.0 8147 +9861 PSMD6 proteasome 26S subunit, non-ATPase 6 Novel U 0.0035999205442020263 -0.26460010339388934 1.0 8148 +2752 GLUL glutamate-ammonia ligase Novel U 0.003598207073040041 -0.26461487641865084 1.0 8149 +6206 RPS12 ribosomal protein S12 Novel U 0.00359785569725776 -0.26461790587327333 1.0 8150 +90121 TSR2 TSR2 ribosome maturation factor Novel U 0.0035978135368627067 -0.26461826936731625 1.0 8151 +84305 PYM1 PYM homolog 1, exon junction complex associated factor Novel U 0.0035966614525297777 -0.2646282022863844 1.0 8152 +116068 LYSMD3 LysM domain containing 3 Novel U 0.0035943454356364736 -0.2646481702763173 1.0 8153 +23581 CASP14 caspase 14 Novel U 0.0035939554853814627 -0.2646515323082562 1.0 8154 +3855 KRT7 keratin 7 Novel U 0.0035912481738060308 -0.2646748739213678 1.0 8155 +25807 RHBDD3 rhomboid domain containing 3 Novel U 0.0035895228434376625 -0.2646897491925828 1.0 8156 +202559 KHDRBS2 KH RNA binding domain containing, signal transduction associated 2 Novel U 0.0035889459377934467 -0.26469472309675823 1.0 8157 +22865 SLITRK3 SLIT and NTRK like family member 3 Novel U 0.0035887476778800275 -0.26469643243314805 1.0 8158 +10592 SMC2 structural maintenance of chromosomes 2 Novel U 0.0035884073005342564 -0.2646993670626119 1.0 8159 +6294 SAFB scaffold attachment factor B Novel N 0.0035879668231352134 -0.2647031647241467 1.0 8160 +27044 SND1 staphylococcal nuclease and tudor domain containing 1 Novel N 0.0035862744425687264 -0.2647177559122386 1.0 8161 +100505576 LASP1NB LASP1 neighbor Novel U 0.0035837651820756393 -0.264739389989438 1.0 8162 +27252 KLHL20 kelch like family member 20 Novel U 0.0035767858345455315 -0.2647995637911154 1.0 8163 +55584 CHRNA9 cholinergic receptor nicotinic alpha 9 subunit Novel N 0.0035766839964754154 -0.2648004418078366 1.0 8164 +3981 LIG4 DNA ligase 4 Novel U 0.0035742092039831677 -0.26482177871246537 1.0 8165 +64170 CARD9 caspase recruitment domain family member 9 Novel U 0.003574053318747658 -0.26482312270733105 1.0 8166 +149461 CLDN19 claudin 19 Novel U 0.003573723917440979 -0.26482596270473985 1.0 8167 +10360 NPM3 nucleophosmin/nucleoplasmin 3 Novel U 0.003571429904161102 -0.26484574098624153 1.0 8168 +389421 LIN28B lin-28 homolog B Novel U 0.003571050520640433 -0.2648490119150259 1.0 8169 +9080 CLDN9 claudin 9 Novel N 0.003568793111402541 -0.26486847460766294 1.0 8170 +7080 NKX2-1 NK2 homeobox 1 Novel U 0.0035660769163646066 -0.2648918928112736 1.0 8171 +729438 CASTOR2 cytosolic arginine sensor for mTORC1 subunit 2 Novel N 0.0035643848692800888 -0.26490648112418586 1.0 8172 +285753 CEP57L1 centrosomal protein 57 like 1 Novel U 0.0035635896168007505 -0.26491333754805196 1.0 8173 +54893 MTMR10 myotubularin related protein 10 Novel U 0.003561939891089982 -0.2649275609790122 1.0 8174 +286077 FAM83H family with sequence similarity 83 member H Novel N 0.0035607388344772463 -0.2649379161221121 1.0 8175 +1501 CTNND2 catenin delta 2 Novel U 0.0035596024658985227 -0.2649477135447499 1.0 8176 +100170229 SRRM5 serine/arginine repetitive matrix 5 Novel U 0.003558322391254886 -0.2649587499571661 1.0 8177 +100526773 EPPIN-WFDC6 EPPIN-WFDC6 readthrough Novel U 0.003556973407643629 -0.2649703804816442 1.0 8178 +2694 CBLIF cobalamin binding intrinsic factor Novel U 0.003555131156221277 -0.26498626381045826 1.0 8179 +51621 KLF13 KLF transcription factor 13 Novel N 0.0035540366053106866 -0.2649957006939399 1.0 8180 +266727 MDGA1 MAM domain containing glycosylphosphatidylinositol anchor 1 Novel N 0.003552275326766053 -0.2650108858993458 1.0 8181 +1142 CHRNB3 cholinergic receptor nicotinic beta 3 subunit Novel N 0.003551839099682584 -0.26501464691595855 1.0 8182 +93621 MRFAP1 Morf4 family associated protein 1 Novel U 0.0035509933609213155 -0.26502193861712 1.0 8183 +80201 HKDC1 hexokinase domain containing 1 Novel N 0.0035506787056472015 -0.265024651478742 1.0 8184 +84909 AOPEP aminopeptidase O (putative) Novel N 0.003548454929474891 -0.2650438241973651 1.0 8185 +645836 USP17L3 ubiquitin specific peptidase 17 like family member 3 Novel U 0.003548446438570384 -0.26504389740334916 1.0 8186 +6910 TBX5 T-box transcription factor 5 Novel U 0.003547738560923965 -0.2650500005081055 1.0 8187 +286527 TMSB15B thymosin beta 15B Novel N 0.003547350830124136 -0.2650533434045801 1.0 8188 +150160 CCT8L2 chaperonin containing TCP1 subunit 8 like 2 Novel U 0.003546696113789468 -0.2650589881687514 1.0 8189 +9891 NUAK1 NUAK family kinase 1 Novel N 0.0035463457017936633 -0.26506200931390145 1.0 8190 +54546 RNF186 ring finger protein 186 Novel U 0.003544068124156665 -0.2650816458923126 1.0 8191 +92935 MARS2 methionyl-tRNA synthetase 2, mitochondrial Novel N 0.003542964428556198 -0.265091161618516 1.0 8192 +642612 TRIM49C tripartite motif containing 49C Novel U 0.003542491531545591 -0.26509523879203506 1.0 8193 +7841 MOGS mannosyl-oligosaccharide glucosidase Novel U 0.0035421411342292275 -0.2650982598106234 1.0 8194 +4606 MYBPC2 myosin binding protein C2 Novel U 0.003541232278264231 -0.26510609568902826 1.0 8195 +117155 CATSPER2 cation channel sperm associated 2 Novel N 0.003536714406035696 -0.2651450474028254 1.0 8196 +27327 TNRC6A trinucleotide repeat containing adaptor 6A Novel N 0.003536520168707673 -0.26514672205771317 1.0 8197 +102724536 PRR33 proline rich 33 Novel U 0.0035358872183567248 -0.2651521791622241 1.0 8198 +8293 SERF1A small EDRK-rich factor 1A Novel N 0.003535083473838516 -0.26515910880185434 1.0 8199 +404734 ANKHD1-EIF4EBP3 ANKHD1-EIF4EBP3 readthrough Novel U 0.003534868128088043 -0.2651609654471102 1.0 8200 +389203 SMIM20 small integral membrane protein 20 Novel N 0.003534610199048714 -0.2651631892324702 1.0 8201 +100653515 CEP295NL CEP295 N-terminal like Novel U 0.0035325634419905772 -0.2651808357463838 1.0 8202 +915 CD3D CD3 delta subunit of T-cell receptor complex Novel U 0.0035309915523130684 -0.26519438809885015 1.0 8203 +23532 PRAME PRAME nuclear receptor transcriptional regulator Novel U 0.0035293036225624197 -0.265208940913368 1.0 8204 +390883 OR7G3 olfactory receptor family 7 subfamily G member 3 Novel U 0.0035275931755771243 -0.26522368786460215 1.0 8205 +10643 IGF2BP3 insulin like growth factor 2 mRNA binding protein 3 Novel N 0.003527199793638975 -0.26522707948346447 1.0 8206 +8787 RGS9 regulator of G protein signaling 9 Novel N 0.0035259620859034472 -0.2652377506213453 1.0 8207 +100288687 DUX4 double homeobox 4 Novel N 0.003525330342423856 -0.26524319732058016 1.0 8208 +84152 PPP1R1B protein phosphatase 1 regulatory inhibitor subunit 1B Novel U 0.003523187598109194 -0.26526167140728807 1.0 8209 +1802 DPH2 diphthamide biosynthesis 2 Novel U 0.0035222552824175127 -0.26526970954828766 1.0 8210 +4745 NELL1 neural EGFL like 1 Novel U 0.0035201349171949925 -0.26528799068930164 1.0 8211 +10468 FST follistatin Novel N 0.003518430130752785 -0.265302688837063 1.0 8212 +4843 NOS2 nitric oxide synthase 2 Novel U 0.003517482811089859 -0.2653108563377178 1.0 8213 +1593 CYP27A1 cytochrome P450 family 27 subfamily A member 1 Novel U 0.0035166125157441016 -0.26531835975824675 1.0 8214 +64208 POPDC3 popeye domain containing 3 Novel N 0.003516499185866721 -0.2653193368538186 1.0 8215 +11024 LILRA1 leukocyte immunoglobulin like receptor A1 Novel N 0.003514106209931869 -0.26533996836109075 1.0 8216 +339500 ZNF678 zinc finger protein 678 Novel U 0.003513519663551897 -0.26534502538474386 1.0 8217 +79689 STEAP4 STEAP4 metalloreductase Novel U 0.0035121037230619423 -0.2653572331909696 1.0 8218 +100505573 INAFM2 InaF motif containing 2 Novel U 0.0035076241009509585 -0.2653958551239416 1.0 8219 +51134 CEP83 centrosomal protein 83 Novel U 0.0035061761293626197 -0.2654083390925096 1.0 8220 +4300 MLLT3 MLLT3 super elongation complex subunit Novel U 0.0035061446914824972 -0.2654086101403053 1.0 8221 +150290 DUSP18 dual specificity phosphatase 18 Novel N 0.003504306527290945 -0.26542445823026445 1.0 8222 +5546 PRCC proline rich mitotic checkpoint control factor Novel U 0.003504246998167508 -0.265424971472176 1.0 8223 +110806290 MYOCOS myocilin opposite strand Novel U 0.0035040395046502353 -0.26542676041787666 1.0 8224 +6663 SOX10 SRY-box transcription factor 10 Novel U 0.0035032000293996734 -0.2654339981169628 1.0 8225 +56246 MRAP melanocortin 2 receptor accessory protein Novel U 0.003503040695786601 -0.26543537184268606 1.0 8226 +7681 MKRN3 makorin ring finger protein 3 Novel U 0.0035019774004948923 -0.26544453924977274 1.0 8227 +55901 THSD1 thrombospondin type 1 domain containing 1 Novel U 0.003497670958940375 -0.2654816680729068 1.0 8228 +10744 PTTG2 pituitary tumor-transforming 2 Novel U 0.0034976514572524903 -0.2654818362105005 1.0 8229 +79968 WDR76 WD repeat domain 76 Novel N 0.0034971966542328885 -0.2654857573831582 1.0 8230 +860 RUNX2 RUNX family transcription factor 2 Novel U 0.00349688867589855 -0.26548841267824586 1.0 8231 +122876 GPHB5 glycoprotein hormone subunit beta 5 Novel N 0.0034961690748584757 -0.26549461685851994 1.0 8232 +80746 TSEN2 tRNA splicing endonuclease subunit 2 Novel N 0.003495779617355301 -0.2654979746421031 1.0 8233 +54538 ROBO4 roundabout guidance receptor 4 Novel U 0.003494115187911785 -0.26551232484415394 1.0 8234 +1306 COL15A1 collagen type XV alpha 1 chain Novel U 0.0034930047929934427 -0.26552189832982886 1.0 8235 +9464 HAND2 heart and neural crest derivatives expressed 2 Novel U 0.0034925125016140425 -0.2655261427156692 1.0 8236 +23234 DNAJC9 DnaJ heat shock protein family (Hsp40) member C9 Novel N 0.003491083419030114 -0.26553846382901325 1.0 8237 +1959 EGR2 early growth response 2 Novel N 0.003491063450173568 -0.26553863599439237 1.0 8238 +10577 NPC2 NPC intracellular cholesterol transporter 2 Novel U 0.0034889261497995194 -0.26555706314510785 1.0 8239 +1373 CPS1 carbamoyl-phosphate synthase 1 Novel U 0.0034887797580772473 -0.26555832528980333 1.0 8240 +27336 HTATSF1 HIV-1 Tat specific factor 1 Novel N 0.003487357105194656 -0.26557059096822727 1.0 8241 +3182 HNRNPAB heterogeneous nuclear ribonucleoprotein A/B Novel N 0.0034849968273564596 -0.2655909405625019 1.0 8242 +9982 FGFBP1 fibroblast growth factor binding protein 1 Novel U 0.0034837887126492892 -0.26560135655833517 1.0 8243 +1953 MEGF6 multiple EGF like domains 6 Novel U 0.00348144171803108 -0.2656215916287461 1.0 8244 +441381 LRRC24 leucine rich repeat containing 24 Novel U 0.0034795862389208187 -0.2656375890026432 1.0 8245 +9284 NPIPA1 nuclear pore complex interacting protein family member A1 Novel U 0.003478919583016277 -0.2656433367061376 1.0 8246 +79068 FTO FTO alpha-ketoglutarate dependent dioxygenase Novel N 0.0034772262094741337 -0.2656579364553622 1.0 8247 +383 ARG1 arginase 1 Novel U 0.003475839562652332 -0.2656698917005325 1.0 8248 +23504 RIMBP2 RIMS binding protein 2 Novel U 0.003475606310792887 -0.2656719027267883 1.0 8249 +10307 APBB3 amyloid beta precursor protein binding family B member 3 Novel U 0.003474877982861992 -0.2656781821476483 1.0 8250 +51329 ARL6IP4 ADP ribosylation factor like GTPase 6 interacting protein 4 Novel U 0.0034743744258050988 -0.26568252366271744 1.0 8251 +7071 KLF10 KLF transcription factor 10 Novel N 0.0034726616297697096 -0.2656972908667437 1.0 8252 +347487 CXorf66 chromosome X open reading frame 66 Novel U 0.0034723951906896677 -0.2656995880230742 1.0 8253 +84695 LOXL3 lysyl oxidase like 3 Novel N 0.0034721843959182627 -0.26570140543117926 1.0 8254 +124903857 LOC124903857 FAM231A/C-like protein LOC102723383 Novel U 0.0034713279246525747 -0.26570878966471423 1.0 8255 +102723971 LOC102723971 lipocalin 1-like Novel U 0.003470107998519168 -0.26571930749505523 1.0 8256 +1723 DHODH dihydroorotate dehydrogenase (quinone) Novel U 0.0034700924013723908 -0.2657194419688886 1.0 8257 +23125 CAMTA2 calmodulin binding transcription activator 2 Novel N 0.0034682203815179662 -0.26573558195202746 1.0 8258 +5343 PLGLB1 plasminogen like B1 Novel U 0.003468057019612714 -0.26573699040845494 1.0 8259 +6689 SPIB Spi-B transcription factor Novel U 0.0034674355248761105 -0.26574234874615954 1.0 8260 +10920 COPS8 COP9 signalosome subunit 8 Novel U 0.0034670136139889904 -0.2657459863329021 1.0 8261 +152185 SPICE1 spindle and centriole associated protein 1 Novel U 0.003464982052233786 -0.26576350183755715 1.0 8262 +1595 CYP51A1 cytochrome P450 family 51 subfamily A member 1 Novel N 0.003463980150456964 -0.2657721399285189 1.0 8263 +5313 PKLR pyruvate kinase L/R Novel N 0.0034630822785106227 -0.26577988110607137 1.0 8264 +90379 DCAF15 DDB1 and CUL4 associated factor 15 Novel U 0.0034606675013703412 -0.2658007005766748 1.0 8265 +85013 TMEM128 transmembrane protein 128 Novel U 0.0034603171689716232 -0.2658037210355631 1.0 8266 +154141 MBOAT1 membrane bound O-acyltransferase domain containing 1 Novel U 0.003459279961311371 -0.2658126635230631 1.0 8267 +10393 ANAPC10 anaphase promoting complex subunit 10 Novel U 0.0034591503210851813 -0.26581378124147825 1.0 8268 +64174 DPEP2 dipeptidase 2 Novel N 0.003459048801520993 -0.26581465651213865 1.0 8269 +9510 ADAMTS1 ADAM metallopeptidase with thrombospondin type 1 motif 1 Novel U 0.00345832996460612 -0.26582085410435874 1.0 8270 +147685 C19orf18 chromosome 19 open reading frame 18 Novel U 0.003458081162457716 -0.2658229992004541 1.0 8271 +10953 TOMM34 translocase of outer mitochondrial membrane 34 Novel U 0.0034575838077678177 -0.26582728724061033 1.0 8272 +1209 CLPTM1 CLPTM1 regulator of GABA type A receptor forward trafficking Novel U 0.0034567970043981925 -0.2658340708188343 1.0 8273 +166968 MIER3 MIER family member 3 Novel U 0.0034544077575649973 -0.2658546701749316 1.0 8274 +1432 MAPK14 mitogen-activated protein kinase 14 Novel U 0.0034538765903223455 -0.26585924973658526 1.0 8275 +170506 DHX36 DEAH-box helicase 36 Novel U 0.0034527481097302334 -0.2658689791514129 1.0 8276 +105378696 TMEM275 transmembrane protein 275 Novel U 0.0034479135488596708 -0.2659106612579089 1.0 8277 +54577 UGT1A7 UDP glucuronosyltransferase family 1 member A7 Novel N 0.0034471831455951535 -0.2659169585716612 1.0 8278 +26133 TRPC4AP transient receptor potential cation channel subfamily C member 4 associated protein Novel U 0.003444570129414031 -0.2659394871986976 1.0 8279 +25796 PGLS 6-phosphogluconolactonase Novel N 0.003443779426674899 -0.2659463043960939 1.0 8280 +4880 NPPC natriuretic peptide C Novel U 0.003442169679662358 -0.2659601831429345 1.0 8281 +27133 KCNH5 potassium voltage-gated channel subfamily H member 5 Novel U 0.0034420841389004365 -0.26596092064924454 1.0 8282 +220988 HNRNPA3 heterogeneous nuclear ribonucleoprotein A3 Novel N 0.0034415987125496258 -0.26596510584690614 1.0 8283 +386653 IL31 interleukin 31 Novel U 0.0034415200541891944 -0.2659657840152536 1.0 8284 +10215 OLIG2 oligodendrocyte transcription factor 2 Novel U 0.003441235943063005 -0.2659682335345659 1.0 8285 +10002 NR2E3 nuclear receptor subfamily 2 group E member 3 Novel N 0.0034392860479637018 -0.2659850449342692 1.0 8286 +9071 CLDN10 claudin 10 Novel U 0.0034370445760946197 -0.26600437021978246 1.0 8287 +2897 GRIK1 glutamate ionotropic receptor kainate type subunit 1 Novel N 0.0034368898451847215 -0.2660057042624054 1.0 8288 +26253 CLEC4E C-type lectin domain family 4 member E Novel U 0.0034357360784787964 -0.2660156516863795 1.0 8289 +9997 SCO2 synthesis of cytochrome C oxidase 2 Novel N 0.003435667655885657 -0.26601624160506915 1.0 8290 +51780 KDM3B lysine demethylase 3B Novel U 0.0034355837599531367 -0.2660169649301627 1.0 8291 +219428 OR4C16 olfactory receptor family 4 subfamily C member 16 Novel U 0.0034342292919484893 -0.2660286427394047 1.0 8292 +5746 PTH2R parathyroid hormone 2 receptor Novel N 0.0034326022912059048 -0.26604267024263345 1.0 8293 +25822 DNAJB5 DnaJ heat shock protein family (Hsp40) member B5 Novel U 0.0034325736045004826 -0.2660429175706416 1.0 8294 +23160 WDR43 WD repeat domain 43 Novel N 0.003432417995327425 -0.26604425918538116 1.0 8295 +83606 GUCD1 guanylyl cyclase domain containing 1 Novel U 0.0034317035136439407 -0.26605041922812706 1.0 8296 +30819 KCNIP2 potassium voltage-gated channel interacting protein 2 Novel N 0.0034315004314430337 -0.26605217014080607 1.0 8297 +51360 MBTPS2 membrane bound transcription factor peptidase, site 2 Novel U 0.0034297279564040853 -0.26606745187896447 1.0 8298 +2235 FECH ferrochelatase Novel U 0.003429366497401624 -0.2660705682680302 1.0 8299 +22909 FAN1 FANCD2 and FANCI associated nuclease 1 Novel U 0.003428006521108556 -0.26608229356805174 1.0 8300 +80135 RPF1 ribosome production factor 1 homolog Novel U 0.0034273323570054182 -0.26608810600494004 1.0 8301 +55075 UACA uveal autoantigen with coiled-coil domains and ankyrin repeats Novel U 0.0034266725735484496 -0.26609379445629144 1.0 8302 +56344 CABP5 calcium binding protein 5 Novel U 0.0034255212667838784 -0.26610372067140287 1.0 8303 +29988 SLC2A8 solute carrier family 2 member 8 Novel N 0.00342471271554146 -0.26611069175314045 1.0 8304 +432 ASGR1 asialoglycoprotein receptor 1 Novel U 0.003423454590369405 -0.26612153892391993 1.0 8305 +151742 PPM1L protein phosphatase, Mg2+/Mn2+ dependent 1L Novel N 0.003423414643508766 -0.26612188333354553 1.0 8306 +162427 RETREG3 reticulophagy regulator family member 3 Novel U 0.0034230960977100246 -0.26612462973808204 1.0 8307 +9126 SMC3 structural maintenance of chromosomes 3 Novel U 0.003422766478692598 -0.26612747161252637 1.0 8308 +728498 GOLGA8H golgin A8 family member H Novel U 0.003422674762034419 -0.26612826236552667 1.0 8309 +23120 ATP10B ATPase phospholipid transporting 10B (putative) Novel U 0.003421762285902654 -0.26613612945590315 1.0 8310 +100874261 CCDC200 coiled-coil domain containing 200 Novel U 0.0034205203709171228 -0.2661468368674079 1.0 8311 +23471 TRAM1 translocation associated membrane protein 1 Novel U 0.0034197684710254835 -0.2661533195185104 1.0 8312 +5670 PSG2 pregnancy specific beta-1-glycoprotein 2 Novel U 0.003419698004771644 -0.2661539270570181 1.0 8313 +9649 RALGPS1 Ral GEF with PH domain and SH3 binding motif 1 Novel U 0.0034186231244363817 -0.26616319434681024 1.0 8314 +29085 PHPT1 phosphohistidine phosphatase 1 Novel U 0.0034181229876021966 -0.2661675063737643 1.0 8315 +7135 TNNI1 troponin I1, slow skeletal type Novel U 0.003417363736571588 -0.26617405240414066 1.0 8316 +339366 ADAMTSL5 ADAMTS like 5 Novel U 0.0034160209739803704 -0.2661856292928849 1.0 8317 +154091 SLC2A12 solute carrier family 2 member 12 Novel N 0.0034145429890111993 -0.2661983720276511 1.0 8318 +10397 NDRG1 N-myc downstream regulated 1 Novel N 0.0034135845896975975 -0.2662066350536683 1.0 8319 +353149 TBC1D26 TBC1 domain family member 26 Novel U 0.003413240953068199 -0.2662095977836796 1.0 8320 +85359 DGCR6L DiGeorge syndrome critical region gene 6 like Novel U 0.0034103057051644106 -0.26623490459416216 1.0 8321 +80777 CYB5B cytochrome b5 type B Novel N 0.003409510949459523 -0.26624175673499073 1.0 8322 +27079 RPUSD2 RNA pseudouridine synthase domain containing 2 Novel N 0.003408756909063351 -0.26624825784086925 1.0 8323 +5649 RELN reelin Novel N 0.0034067939136547313 -0.2662651821874364 1.0 8324 +7913 DEK DEK proto-oncogene Novel U 0.003406298483177965 -0.26626945363761495 1.0 8325 +84366 PRAC1 PRAC1 small nuclear protein Novel U 0.003405860939176469 -0.2662732260082925 1.0 8326 +60678 EEFSEC eukaryotic elongation factor, selenocysteine-tRNA specific Novel U 0.0034032254493826207 -0.26629594839595033 1.0 8327 +720 C4A complement C4A (Chido/Rodgers blood group) Novel U 0.003403210000931299 -0.26629608158777696 1.0 8328 +57140 RNPEPL1 arginyl aminopeptidase like 1 Novel N 0.003402779727986938 -0.2662997912696218 1.0 8329 +9134 CCNE2 cyclin E2 Novel U 0.0034019421821011573 -0.2663070123343143 1.0 8330 +136991 ASZ1 ankyrin repeat, SAM and basic leucine zipper domain containing 1 Novel U 0.0034013909059265124 -0.2663117652690349 1.0 8331 +2618 GART phosphoribosylglycinamide formyltransferase, phosphoribosylglycinamide synthetase, phosphoribosylaminoimidazole synthetase Novel N 0.003400955217014556 -0.2663155216456973 1.0 8332 +6300 MAPK12 mitogen-activated protein kinase 12 Novel N 0.003400457114465433 -0.26631981613366723 1.0 8333 +24145 PANX1 pannexin 1 Novel U 0.003400189224213454 -0.26632212580155873 1.0 8334 +3638 INSIG1 insulin induced gene 1 Novel U 0.003399382266796946 -0.2663290831418163 1.0 8335 +32 ACACB acetyl-CoA carboxylase beta Novel U 0.0033992870641142265 -0.266329903950255 1.0 8336 +646643 SBK2 SH3 domain binding kinase family member 2 Novel U 0.0033992425647765834 -0.2663302876099462 1.0 8337 +146325 PRR35 proline rich 35 Novel U 0.0033929048214974243 -0.26638492969583133 1.0 8338 +26190 FBXW2 F-box and WD repeat domain containing 2 Novel N 0.003392674157844777 -0.26638691840735895 1.0 8339 +10644 IGF2BP2 insulin like growth factor 2 mRNA binding protein 2 Novel N 0.0033924430071063066 -0.26638891131839176 1.0 8340 +3776 KCNK2 potassium two pore domain channel subfamily K member 2 Novel U 0.0033916299972267744 -0.26639592084113606 1.0 8341 +56776 FMN2 formin 2 Novel U 0.0033899680219961243 -0.26641024988371353 1.0 8342 +3840 KPNA4 karyopherin subunit alpha 4 Novel U 0.0033883221553006756 -0.2664244400434229 1.0 8343 +10457 GPNMB glycoprotein nmb Novel U 0.003385872627402733 -0.2664455591244399 1.0 8344 +81442 OR6N2 olfactory receptor family 6 subfamily N member 2 Novel U 0.003384838931306045 -0.2664544713363119 1.0 8345 +2739 GLO1 glyoxalase I Novel N 0.0033842071201809145 -0.2664599186187659 1.0 8346 +3768 KCNJ12 potassium inwardly rectifying channel subfamily J member 12 Novel U 0.003379947037462966 -0.26649664775017734 1.0 8347 +6317 SERPINB3 serpin family B member 3 Novel U 0.0033798678703126817 -0.26649733030515543 1.0 8348 +26525 IL36RN interleukin 36 receptor antagonist Novel U 0.003376161575729043 -0.2665292848444976 1.0 8349 +7360 UGP2 UDP-glucose pyrophosphorylase 2 Novel N 0.003375673467631247 -0.2665334931633623 1.0 8350 +140690 CTCFL CCCTC-binding factor like Novel U 0.00337524015025493 -0.26653722909336913 1.0 8351 +6676 SPAG4 sperm associated antigen 4 Novel U 0.003375055406423637 -0.2665388218982291 1.0 8352 +100133315 XNDC1N XRCC1 N-terminal domain containing 1, N-terminal like Novel U 0.0033737902344182957 -0.26654972982465186 1.0 8353 +89796 NAV1 neuron navigator 1 Novel U 0.0033733205940597094 -0.26655377892031235 1.0 8354 +130132 RFTN2 raftlin family member 2 Novel U 0.0033729096564341504 -0.2665573218989469 1.0 8355 +83878 USHBP1 USH1 protein network component harmonin binding protein 1 Novel U 0.003372644144403024 -0.2665596110625449 1.0 8356 +81786 TRIM7 tripartite motif containing 7 Novel N 0.003372525783992323 -0.2665606315298378 1.0 8357 +9019 MPZL1 myelin protein zero like 1 Novel U 0.003372116459395729 -0.26656416060142946 1.0 8358 +157807 CLVS1 clavesin 1 Novel U 0.0033716265051557453 -0.26656838483716794 1.0 8359 +83742 MARVELD1 MARVEL domain containing 1 Novel U 0.0033709642777144475 -0.2665740943598054 1.0 8360 +11130 ZWINT ZW10 interacting kinetochore protein Novel U 0.0033698967727077635 -0.26658329806176817 1.0 8361 +25896 INTS7 integrator complex subunit 7 Novel U 0.003368175718031879 -0.26659813646926916 1.0 8362 +283234 CCDC88B coiled-coil domain containing 88B Novel U 0.0033675576216364816 -0.2666034655075143 1.0 8363 +2162 F13A1 coagulation factor XIII A chain Novel U 0.003366806489763474 -0.26660994153699485 1.0 8364 +26164 MTG2 mitochondrial ribosome associated GTPase 2 Novel N 0.0033664945967358203 -0.266612630583372 1.0 8365 +26297 SERGEF secretion regulating guanine nucleotide exchange factor Novel U 0.003366031370852135 -0.26661662437539 1.0 8366 +9236 CCPG1 cell cycle progression 1 Novel N 0.0033658470363742234 -0.2666182136509302 1.0 8367 +79148 MMP28 matrix metallopeptidase 28 Novel U 0.0033654825942535864 -0.2666213557595293 1.0 8368 +79026 AHNAK AHNAK nucleoprotein Novel N 0.0033653466140425 -0.26662252813935683 1.0 8369 +9586 CREB5 cAMP responsive element binding protein 5 Novel N 0.00336098144744125 -0.26666016327189884 1.0 8370 +79927 FAM110D family with sequence similarity 110 member D Novel U 0.003360145351791263 -0.2666673718331015 1.0 8371 +6839 SUV39H1 SUV39H1 histone lysine methyltransferase Novel U 0.0033598714998353536 -0.26666973290098256 1.0 8372 +6901 TAFAZZIN tafazzin, phospholipid-lysophospholipid transacylase Novel U 0.003357824369324761 -0.26668738263468916 1.0 8373 +29765 TMOD4 tropomodulin 4 Novel U 0.0033572860457862057 -0.26669202389573937 1.0 8374 +245806 VGLL2 vestigial like family member 2 Novel U 0.0033569414984706294 -0.2666949944774086 1.0 8375 +10135 NAMPT nicotinamide phosphoribosyltransferase Novel U 0.0033562142233753488 -0.2667012648210416 1.0 8376 +160335 TMTC2 transmembrane O-mannosyltransferase targeting cadherins 2 Novel N 0.003355961032679241 -0.26670344775385424 1.0 8377 +92105 INTS4 integrator complex subunit 4 Novel N 0.0033559426978339926 -0.26670360583128727 1.0 8378 +128 ADH5 alcohol dehydrogenase 5 (class III), chi polypeptide Novel U 0.003355392260335797 -0.26670835153519573 1.0 8379 +4744 NEFH neurofilament heavy chain Novel U 0.0033551269609792887 -0.2667106388651782 1.0 8380 +8289 ARID1A AT-rich interaction domain 1A Novel U 0.003354909890433513 -0.26671251038109217 1.0 8381 +158219 TTC39B tetratricopeptide repeat domain 39B Novel U 0.0033534117397613886 -0.266725426978387 1.0 8382 +31 ACACA acetyl-CoA carboxylase alpha Novel N 0.0033520058855652387 -0.2667375478236697 1.0 8383 +474 ATOH1 atonal bHLH transcription factor 1 Novel N 0.003351582364252981 -0.26674119929500567 1.0 8384 +6649 SOD3 superoxide dismutase 3 Novel U 0.0033477718476736603 -0.2667740524045468 1.0 8385 +146225 CMTM2 CKLF like MARVEL transmembrane domain containing 2 Novel U 0.00334670239943437 -0.2667832728604673 1.0 8386 +23180 RFTN1 raftlin, lipid raft linker 1 Novel U 0.0033463369427270844 -0.26678642371652245 1.0 8387 +201158 TVP23C trans-golgi network vesicle protein 23 homolog C Novel U 0.003346052709873875 -0.2667888742853278 1.0 8388 +4118 MAL mal, T cell differentiation protein Novel U 0.003343989123094686 -0.2668066658999536 1.0 8389 +245812 CNPY4 canopy FGF signaling regulator 4 Novel U 0.003340894036482824 -0.2668333507909342 1.0 8390 +80012 PHC3 polyhomeotic homolog 3 Novel U 0.003339114098445668 -0.2668486968727826 1.0 8391 +285282 RABL3 RAB, member of RAS oncogene family like 3 Novel U 0.003338157012918636 -0.26685694857173353 1.0 8392 +84662 GLIS2 GLIS family zinc finger 2 Novel N 0.0033380000074976534 -0.266858302224496 1.0 8393 +90933 TRIM41 tripartite motif containing 41 Novel U 0.0033368401273156123 -0.266868302356993 1.0 8394 +106865373 GET1-SH3BGR GET1-SH3BGR readthrough Novel U 0.00333673576255776 -0.2668692021580437 1.0 8395 +79646 PANK3 pantothenate kinase 3 Novel N 0.003335828597275935 -0.2668770234598949 1.0 8396 +23127 COLGALT2 collagen beta(1-O)galactosyltransferase 2 Novel N 0.0033335242925791497 -0.26689689047084836 1.0 8397 +9902 MRC2 mannose receptor C type 2 Novel N 0.00333191846351845 -0.2669107354383055 1.0 8398 +4152 MBD1 methyl-CpG binding domain protein 1 Novel N 0.003330756795787634 -0.2669207509825018 1.0 8399 +11235 PDCD10 programmed cell death 10 Novel U 0.0033302192821857233 -0.2669253852605258 1.0 8400 +58 ACTA1 actin alpha 1, skeletal muscle Novel U 0.003327140473041919 -0.26695192981215077 1.0 8401 +900 CCNG1 cyclin G1 Novel U 0.00332671292947391 -0.26695561596214673 1.0 8402 +5150 PDE7A phosphodiesterase 7A Novel N 0.0033259717656176483 -0.26696200605043285 1.0 8403 +8913 CACNA1G calcium voltage-gated channel subunit alpha1 G Novel U 0.0033244669221186166 -0.2669749803512362 1.0 8404 +1837 DTNA dystrobrevin alpha Novel U 0.003322748017925741 -0.26698980021792973 1.0 8405 +1045 CDX2 caudal type homeobox 2 Novel N 0.0033223462320583876 -0.2669932642929016 1.0 8406 +1407 CRY1 cryptochrome circadian regulator 1 Novel N 0.0033201204798498723 -0.26701245404830504 1.0 8407 +7336 UBE2V2 ubiquitin conjugating enzyme E2 V2 Novel U 0.0033199754371890087 -0.2670137045618053 1.0 8408 +285242 HTR3E 5-hydroxytryptamine receptor 3E Novel N 0.003319242227872611 -0.2670200260684795 1.0 8409 +1462 VCAN versican Novel N 0.0033179942485557327 -0.267030785764796 1.0 8410 +2977 GUCY1A2 guanylate cyclase 1 soluble subunit alpha 2 Novel N 0.003317743916724048 -0.2670329440493531 1.0 8411 +54830 NUP62CL nucleoporin 62 C-terminal like Novel U 0.0033168026485235072 -0.2670410593761484 1.0 8412 +10446 LRRN2 leucine rich repeat neuronal 2 Novel N 0.0033156948866883175 -0.26705061016018505 1.0 8413 +260429 PRSS33 serine protease 33 Novel N 0.0033144450397218656 -0.26706138595880546 1.0 8414 +6037 RNASE3 ribonuclease A family member 3 Novel N 0.0033141803302109626 -0.26706366820331934 1.0 8415 +56970 ATXN7L3 ataxin 7 like 3 Novel N 0.0033134775691674428 -0.26706972719428906 1.0 8416 +55603 TENT5A terminal nucleotidyltransferase 5A Novel U 0.003311583514137473 -0.26708605715797806 1.0 8417 +79003 MIS12 MIS12 kinetochore complex component Novel U 0.0033115415168285343 -0.26708641924594234 1.0 8418 +390667 PTX4 pentraxin 4 Novel U 0.0033098516058422695 -0.2671009891420682 1.0 8419 +54606 DDX56 DEAD-box helicase 56 Novel U 0.003309596807186889 -0.2671031859382143 1.0 8420 +5526 PPP2R5B protein phosphatase 2 regulatory subunit B'beta Novel U 0.0033088901394470217 -0.2671092786115261 1.0 8421 +441459 ANKRD18B ankyrin repeat domain 18B Novel U 0.0033086380998595243 -0.267111451619832 1.0 8422 +338761 C1QL4 complement C1q like 4 Novel U 0.0033076582733076987 -0.26711989938494957 1.0 8423 +3083 HGFAC HGF activator Novel N 0.0033070549855077646 -0.26712510074800977 1.0 8424 +51310 SLC22A17 solute carrier family 22 member 17 Novel N 0.0033036864623431582 -0.26715414312539226 1.0 8425 +1527 TEX28 testis expressed 28 Novel U 0.0032999454759691047 -0.26718639676675043 1.0 8426 +10038 PARP2 poly(ADP-ribose) polymerase 2 Novel N 0.0032996247431034253 -0.26718916202750975 1.0 8427 +7784 ZP3 zona pellucida glycoprotein 3 Novel U 0.0032991954883350083 -0.26719286293095273 1.0 8428 +402317 OR2A42 olfactory receptor family 2 subfamily A member 42 Novel U 0.0032980941730487686 -0.2672023581348142 1.0 8429 +2186 BPTF bromodomain PHD finger transcription factor Novel U 0.003297113160461379 -0.2672108161255679 1.0 8430 +7257 TSNAX translin associated factor X Novel N 0.003297085151766229 -0.2672110576079787 1.0 8431 +83877 TM2D2 TM2 domain containing 2 Novel U 0.003297022514620834 -0.2672115976463058 1.0 8432 +23047 PDS5B PDS5 cohesin associated factor B Novel U 0.0032959413140255375 -0.2672209194274486 1.0 8433 +84328 LZIC leucine zipper and CTNNBIP1 domain containing Novel U 0.0032956811711168195 -0.2672231623001139 1.0 8434 +440348 NPIPB15 nuclear pore complex interacting protein family member B15 Novel U 0.0032949474660182777 -0.2672294880812702 1.0 8435 +8073 PTP4A2 protein tyrosine phosphatase 4A2 Novel U 0.0032946076706061086 -0.2672324176934803 1.0 8436 +2491 CENPI centromere protein I Novel N 0.0032936466728175295 -0.2672407031227547 1.0 8437 +9631 NUP155 nucleoporin 155 Novel U 0.003293536108168709 -0.26724165637737085 1.0 8438 +89795 NAV3 neuron navigator 3 Novel U 0.0032935154542548728 -0.2672418344491046 1.0 8439 +8861 LDB1 LIM domain binding 1 Novel N 0.0032934223693619497 -0.2672426369986068 1.0 8440 +80758 PRR7 proline rich 7, synaptic Novel N 0.0032912227068242245 -0.26726160181684105 1.0 8441 +9210 BMP15 bone morphogenetic protein 15 Novel N 0.003290061058907113 -0.26727161719020964 1.0 8442 +400720 ZNF772 zinc finger protein 772 Novel U 0.003289928546432063 -0.26727275967227676 1.0 8443 +9801 MRPL19 mitochondrial ribosomal protein L19 Novel U 0.003289589133415059 -0.2672756859875926 1.0 8444 +1728 NQO1 NAD(P)H quinone dehydrogenase 1 Novel U 0.003287482420512615 -0.26729384942247475 1.0 8445 +1024 CDK8 cyclin dependent kinase 8 Novel N 0.0032871246222856403 -0.2672969342494529 1.0 8446 +6531 SLC6A3 solute carrier family 6 member 3 Novel U 0.0032859025548921837 -0.2673074705410837 1.0 8447 +1446 CSN1S1 casein alpha s1 Novel U 0.003285062537691346 -0.26731471291269954 1.0 8448 +57539 WDR35 WD repeat domain 35 Novel U 0.003284819251762626 -0.2673168104496344 1.0 8449 +124044 SPATA2L spermatogenesis associated 2 like Novel U 0.003283521636170874 -0.26732799809474517 1.0 8450 +64839 FBXL17 F-box and leucine rich repeat protein 17 Novel U 0.0032817876747734975 -0.26734294778005485 1.0 8451 +401992 OR2T2 olfactory receptor family 2 subfamily T member 2 Novel U 0.003281175340860738 -0.26734822713593553 1.0 8452 +201292 TRIM65 tripartite motif containing 65 Novel U 0.0032811671936603766 -0.2673482973786075 1.0 8453 +130617 ZFAND2B zinc finger AN1-type containing 2B Novel U 0.0032799633260943433 -0.26735867675688774 1.0 8454 +54840 APTX aprataxin Novel N 0.0032799315210839917 -0.26735895096996815 1.0 8455 +55303 GIMAP4 GTPase, IMAP family member 4 Novel U 0.0032798527133688932 -0.2673596304260059 1.0 8456 +7350 UCP1 uncoupling protein 1 Novel N 0.0032792956678754856 -0.26736443310202984 1.0 8457 +340706 VWA2 von Willebrand factor A domain containing 2 Novel N 0.0032792071340162596 -0.26736519641391016 1.0 8458 +3950 LECT2 leukocyte cell derived chemotaxin 2 Novel N 0.0032785885973843454 -0.26737052924774 1.0 8459 +26689 OR4D1 olfactory receptor family 4 subfamily D member 1 Novel U 0.003278564581242371 -0.26737073630757735 1.0 8460 +153222 CREBRF CREB3 regulatory factor Novel N 0.003278444592207898 -0.2673717708163667 1.0 8461 +6124 RPL4 ribosomal protein L4 Novel N 0.0032778042058218765 -0.26737729203209976 1.0 8462 +25824 PRDX5 peroxiredoxin 5 Novel N 0.003273893439941172 -0.2674110094604836 1.0 8463 +1244 ABCC2 ATP binding cassette subfamily C member 2 Novel U 0.0032738243882373596 -0.2674116048031732 1.0 8464 +23761 PISD phosphatidylserine decarboxylase Novel U 0.0032733332929653553 -0.2674158388765411 1.0 8465 +8341 H2BC15 H2B clustered histone 15 Novel U 0.0032730694419325405 -0.26741811371951923 1.0 8466 +388585 HES5 hes family bHLH transcription factor 5 Novel N 0.003271386729045271 -0.26743262155583514 1.0 8467 +51531 TRMO tRNA methyltransferase O Novel N 0.0032708411982680765 -0.26743732495549455 1.0 8468 +5973 RENBP renin binding protein Novel N 0.003270508549253784 -0.2674401929536459 1.0 8469 +55917 CTTNBP2NL CTTNBP2 N-terminal like Novel U 0.003270349548436541 -0.2674415638101052 1.0 8470 +10752 CHL1 cell adhesion molecule L1 like Novel N 0.003270334379566605 -0.26744169459146655 1.0 8471 +4086 SMAD1 SMAD family member 1 Novel U 0.003270307175454377 -0.2674419291370092 1.0 8472 +56990 CDC42SE2 CDC42 small effector 2 Novel N 0.00327015102932166 -0.2674432753812509 1.0 8473 +9792 SERTAD2 SERTA domain containing 2 Novel N 0.003269972663965473 -0.2674448131928476 1.0 8474 +79659 DYNC2H1 dynein cytoplasmic 2 heavy chain 1 Novel U 0.003269268527621739 -0.26745088404123546 1.0 8475 +1295 COL8A1 collagen type VIII alpha 1 chain Novel U 0.0032683534294627326 -0.2674587737379296 1.0 8476 +149069 DCDC2B doublecortin domain containing 2B Novel U 0.0032682126454935552 -0.2674599875342915 1.0 8477 +64098 PARVG parvin gamma Novel N 0.003268125163712279 -0.26746074177547724 1.0 8478 +10293 TRAIP TRAF interacting protein Novel U 0.0032671799342220654 -0.2674688912553016 1.0 8479 +60370 AVPI1 arginine vasopressin induced 1 Novel U 0.0032669211198723376 -0.2674711226735373 1.0 8480 +100528020 FAM187A family with sequence similarity 187 member A Novel U 0.0032649948019537263 -0.2674877307979934 1.0 8481 +1783 DYNC1LI2 dynein cytoplasmic 1 light intermediate chain 2 Novel U 0.0032649770060710574 -0.2674878842286557 1.0 8482 +26683 OR4F3 olfactory receptor family 4 subfamily F member 3 Novel U 0.003264187357599141 -0.26749469233648226 1.0 8483 +2117 ETV3 ETS variant transcription factor 3 Novel U 0.00326365581137455 -0.26749927516560246 1.0 8484 +221294 NT5DC1 5'-nucleotidase domain containing 1 Novel U 0.003260155831545583 -0.2675294509221749 1.0 8485 +150379 PNPLA5 patatin like phospholipase domain containing 5 Novel N 0.0032595738295636742 -0.2675344687654166 1.0 8486 +1272 CNTN1 contactin 1 Novel U 0.003254672023695267 -0.26757673063773546 1.0 8487 +7485 GET1 guided entry of tail-anchored proteins factor 1 Novel U 0.0032523889178370955 -0.2675964148787803 1.0 8488 +54431 DNAJC10 DnaJ heat shock protein family (Hsp40) member C10 Novel U 0.0032522590864553238 -0.2675975342452805 1.0 8489 +2591 GALNT3 polypeptide N-acetylgalactosaminyltransferase 3 Novel U 0.003251375237335527 -0.2676051545223075 1.0 8490 +2300 FOXL1 forkhead box L1 Novel N 0.003251281515965746 -0.2676059625593187 1.0 8491 +388323 GLTPD2 glycolipid transfer protein domain containing 2 Novel U 0.003249883655206798 -0.2676180144876284 1.0 8492 +9319 TRIP13 thyroid hormone receptor interactor 13 Novel U 0.00324921574221217 -0.26762377302936935 1.0 8493 +81887 LAS1L LAS1 like ribosome biogenesis factor Novel U 0.0032477813679886165 -0.26763613976561323 1.0 8494 +5577 PRKAR2B protein kinase cAMP-dependent type II regulatory subunit beta Novel U 0.003247030226277357 -0.26764261587991617 1.0 8495 +84814 PLPP7 phospholipid phosphatase 7 (inactive) Novel U 0.0032466264304266117 -0.26764609728435057 1.0 8496 +101060301 HNRNPCL4 heterogeneous nuclear ribonucleoprotein C like 4 Novel U 0.003245682579699038 -0.2676542348769048 1.0 8497 +3054 HCFC1 host cell factor C1 Novel U 0.0032454508745967596 -0.26765623256749294 1.0 8498 +27197 GPR82 G protein-coupled receptor 82 Novel U 0.0032450355223662968 -0.26765981360750196 1.0 8499 +1116 CHI3L1 chitinase 3 like 1 Novel U 0.003243280291878529 -0.26767494666840963 1.0 8500 +55800 SCN3B sodium voltage-gated channel beta subunit 3 Novel U 0.0032406913446924915 -0.26769726777992525 1.0 8501 +3164 NR4A1 nuclear receptor subfamily 4 group A member 1 Novel U 0.00324057132311569 -0.2676983025692846 1.0 8502 +6886 TAL1 TAL bHLH transcription factor 1, erythroid differentiation factor Novel U 0.0032403315500788305 -0.26770036981913936 1.0 8503 +9858 PPP1R26 protein phosphatase 1 regulatory subunit 26 Novel U 0.0032403218515953984 -0.26770045343649984 1.0 8504 +10224 ZNF443 zinc finger protein 443 Novel N 0.0032402872859992097 -0.26770075145050776 1.0 8505 +699 BUB1 BUB1 mitotic checkpoint serine/threonine kinase Novel U 0.003240281501813612 -0.26770080131998847 1.0 8506 +55233 MOB1A MOB kinase activator 1A Novel N 0.0032400444649075587 -0.26770284497975944 1.0 8507 +5707 PSMD1 proteasome 26S subunit, non-ATPase 1 Novel U 0.0032376301067376465 -0.26772366083812843 1.0 8508 +199800 ADM5 adrenomedullin 5 (putative) Novel U 0.003235957890882139 -0.2677380781722441 1.0 8509 +55565 ZNF821 zinc finger protein 821 Novel U 0.003235791890578518 -0.26773950937613605 1.0 8510 +148170 CDC42EP5 CDC42 effector protein 5 Novel U 0.0032356922618153117 -0.2677403683448882 1.0 8511 +94030 LRRC4B leucine rich repeat containing 4B Novel U 0.0032356696228731515 -0.26774056353092957 1.0 8512 +221074 SLC39A12 solute carrier family 39 member 12 Novel U 0.003233923328980849 -0.26775561954324195 1.0 8513 +245802 MS4A6E membrane spanning 4-domains A6E Novel U 0.003233322638951923 -0.2677607985091144 1.0 8514 +642597 AKAIN1 A-kinase anchor inhibitor 1 Novel N 0.003232752410348111 -0.2677657148458878 1.0 8515 +55057 CRYBG2 crystallin beta-gamma domain containing 2 Novel U 0.0032325367388528876 -0.2677675742996154 1.0 8516 +2695 GIP gastric inhibitory polypeptide Novel U 0.003230358700555416 -0.2677863526802581 1.0 8517 +5208 PFKFB2 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 Novel N 0.003229032589897092 -0.26779778600112536 1.0 8518 +51368 TEX264 testis expressed 264, ER-phagy receptor Novel U 0.003229022090432039 -0.26779787652430465 1.0 8519 +117145 THEM4 thioesterase superfamily member 4 Novel N 0.003228653210927909 -0.26780105689066824 1.0 8520 +84254 CAMKK1 calcium/calmodulin dependent protein kinase kinase 1 Novel U 0.0032279554545581015 -0.2678070727328705 1.0 8521 +51322 WAC WW domain containing adaptor with coiled-coil Novel U 0.003227644068116832 -0.2678097574116146 1.0 8522 +2067 ERCC1 ERCC excision repair 1, endonuclease non-catalytic subunit Novel U 0.003225852995110353 -0.267825199495766 1.0 8523 +23411 SIRT1 sirtuin 1 Novel U 0.0032251511133559586 -0.26783125090577353 1.0 8524 +4105 MAGEA6 MAGE family member A6 Novel N 0.0032249418260299127 -0.26783305531714535 1.0 8525 +7349 UCN urocortin Novel U 0.003223207254781634 -0.26784801026040317 1.0 8526 +84261 FBXW9 F-box and WD repeat domain containing 9 Novel U 0.003223035640959573 -0.26784948986233575 1.0 8527 +64231 MS4A6A membrane spanning 4-domains A6A Novel U 0.0032219675161440572 -0.2678586989081009 1.0 8528 +26099 SZRD1 SUZ RNA binding domain containing 1 Novel U 0.003221000709536022 -0.26786703441924165 1.0 8529 +23002 DAAM1 dishevelled associated activator of morphogenesis 1 Novel U 0.003220690270336464 -0.2678697109311572 1.0 8530 +8404 SPARCL1 SPARC like 1 Novel U 0.0032190568320643663 -0.26788379393679823 1.0 8531 +148266 ZNF569 zinc finger protein 569 Novel U 0.0032176137078375943 -0.2678962361128961 1.0 8532 +122526780 LOC122526780 uncharacterized LOC122526780 Novel U 0.0032175097814710345 -0.2678971321342711 1.0 8533 +170572 HTR3C 5-hydroxytryptamine receptor 3C Novel N 0.0032168381730435544 -0.2679029225369048 1.0 8534 +7136 TNNI2 troponin I2, fast skeletal type Novel U 0.0032152606177061824 -0.2679165237369592 1.0 8535 +257019 FRMD3 FERM domain containing 3 Novel U 0.00321449280150001 -0.26792314361366193 1.0 8536 +387332 TBPL2 TATA-box binding protein like 2 Novel U 0.0032137906462486663 -0.26792919738167664 1.0 8537 +28984 RGCC regulator of cell cycle Novel U 0.003212912924468462 -0.2679367648306541 1.0 8538 +10330 CNPY2 canopy FGF signaling regulator 2 Novel U 0.0032124598448569795 -0.2679406711446136 1.0 8539 +54675 CRLS1 cardiolipin synthase 1 Novel U 0.0032098711542588505 -0.2679629900439067 1.0 8540 +149095 DCST1 DC-STAMP domain containing 1 Novel U 0.003209112421463903 -0.26796953160621356 1.0 8541 +1163 CKS1B CDC28 protein kinase regulatory subunit 1B Novel U 0.003208177528657675 -0.2679775919663072 1.0 8542 +4494 MT1F metallothionein 1F Novel U 0.0032080577282672393 -0.26797862484866536 1.0 8543 +140576 S100A16 S100 calcium binding protein A16 Novel U 0.0032080434647463896 -0.2679787478243835 1.0 8544 +2521 FUS FUS RNA binding protein Novel U 0.003207067194409851 -0.2679871649288995 1.0 8545 +78992 YIPF2 Yip1 domain family member 2 Novel U 0.003206063706431508 -0.26799581669560607 1.0 8546 +730005 SEC14L6 SEC14 like lipid binding 6 Novel U 0.003205698821926687 -0.26799896261830636 1.0 8547 +10898 CPSF4 cleavage and polyadenylation specific factor 4 Novel U 0.003204527363669508 -0.2680090625734292 1.0 8548 +54715 RBFOX1 RNA binding fox-1 homolog 1 Novel U 0.003204417614737526 -0.268010008795184 1.0 8549 +23063 WAPL WAPL cohesin release factor Novel U 0.00320413188318396 -0.26801247228532593 1.0 8550 +100507341 SMIM18 small integral membrane protein 18 Novel U 0.003203994296477155 -0.26801365851586867 1.0 8551 +9227 LRAT lecithin retinol acyltransferase Novel U 0.003203886389591932 -0.2680145888560592 1.0 8552 +90231 KIAA2013 KIAA2013 Novel U 0.0032034824660583014 -0.2680180713613365 1.0 8553 +139741 ACTRT1 actin related protein T1 Novel N 0.003203240598545724 -0.2680201566691208 1.0 8554 +51752 ERAP1 endoplasmic reticulum aminopeptidase 1 Novel U 0.00320275589174916 -0.2680243356630056 1.0 8555 +4616 GADD45B growth arrest and DNA damage inducible beta Novel U 0.003198520098549783 -0.2680608553776102 1.0 8556 +138009 DCAF4L2 DDB1 and CUL4 associated factor 4 like 2 Novel U 0.003198430382888659 -0.26806162887862534 1.0 8557 +51362 CDC40 cell division cycle 40 Novel U 0.003195368408814804 -0.26808802828342165 1.0 8558 +51493 RTCB RNA 2',3'-cyclic phosphate and 5'-OH ligase Novel N 0.0031949666526261437 -0.26809149210251293 1.0 8559 +646864 ZNF723 zinc finger protein 723 Novel U 0.003194912545008687 -0.2680919586018566 1.0 8560 +2015 ADGRE1 adhesion G protein-coupled receptor E1 Novel N 0.0031929643973338654 -0.2681087549358 1.0 8561 +4056 LTC4S leukotriene C4 synthase Novel U 0.0031924259615823338 -0.2681133971643162 1.0 8562 +1353 COX11 cytochrome c oxidase copper chaperone COX11 Novel N 0.00319202389062194 -0.26811686369727317 1.0 8563 +160287 LDHAL6A lactate dehydrogenase A like 6A Novel U 0.00319061976654206 -0.268128969626022 1.0 8564 +2899 GRIK3 glutamate ionotropic receptor kainate type subunit 3 Novel N 0.0031902992809538103 -0.26813173275483093 1.0 8565 +8850 KAT2B lysine acetyltransferase 2B Novel U 0.003190262176185826 -0.26813205266080214 1.0 8566 +5151 PDE8A phosphodiesterase 8A Novel U 0.0031877292356632604 -0.26815389089997965 1.0 8567 +653820 FAM72B family with sequence similarity 72 member B Novel U 0.0031875602152673715 -0.2681553481421843 1.0 8568 +7389 UROD uroporphyrinogen decarboxylase Novel U 0.003186318273607505 -0.268166055783667 1.0 8569 +166647 ADGRA3 adhesion G protein-coupled receptor A3 Novel U 0.00318597188243743 -0.2681690422624862 1.0 8570 +6135 RPL11 ribosomal protein L11 Novel U 0.0031838741486482675 -0.2681871282821975 1.0 8571 +29895 MYL11 myosin light chain 11 Novel U 0.003183316695335014 -0.26819193447431955 1.0 8572 +23263 MCF2L MCF.2 cell line derived transforming sequence like Novel U 0.0031830890757419245 -0.26819389694089585 1.0 8573 +100132399 GAGE12D G antigen 12D Novel U 0.003182281256879061 -0.26820086170828067 1.0 8574 +64598 MOSPD3 motile sperm domain containing 3 Novel U 0.003182063978338925 -0.26820273501745845 1.0 8575 +5444 PON1 paraoxonase 1 Novel U 0.003181883711040749 -0.2682042892270178 1.0 8576 +57467 HHATL hedgehog acyltransferase like Novel U 0.003179470134172809 -0.2682250983492399 1.0 8577 +6827 SUPT4H1 SPT4 homolog, DSIF elongation factor subunit Novel N 0.00317909584538629 -0.2682283253527833 1.0 8578 +79935 CCNP cyclin P Novel U 0.0031786322904584835 -0.26823232198171915 1.0 8579 +9334 B4GALT5 beta-1,4-galactosyltransferase 5 Novel N 0.0031783695818215435 -0.2682345869753092 1.0 8580 +400891 LRRC74B leucine rich repeat containing 74B Novel U 0.003178169440022494 -0.2682363125367419 1.0 8581 +114088 TRIM9 tripartite motif containing 9 Novel U 0.003177369651233342 -0.268243208071285 1.0 8582 +150094 SIK1 salt inducible kinase 1 Novel U 0.003175273866596615 -0.2682612772859996 1.0 8583 +2799 GNS glucosamine (N-acetyl)-6-sulfatase Novel U 0.0031748136687088546 -0.268265244971562 1.0 8584 +8558 CDK10 cyclin dependent kinase 10 Novel U 0.003174813216523362 -0.2682652488701671 1.0 8585 +1488 CTBP2 C-terminal binding protein 2 Novel U 0.0031743793535027676 -0.2682689895045522 1.0 8586 +57505 AARS2 alanyl-tRNA synthetase 2, mitochondrial Novel N 0.0031727172507020804 -0.26828331964699953 1.0 8587 +5576 PRKAR2A protein kinase cAMP-dependent type II regulatory subunit alpha Novel U 0.0031688803010023275 -0.2683164006548277 1.0 8588 +55196 RESF1 retroelement silencing factor 1 Novel U 0.0031687244775396957 -0.26831774411710646 1.0 8589 +694 BTG1 BTG anti-proliferation factor 1 Novel U 0.003167755464693383 -0.2683260986497595 1.0 8590 +205717 USF3 upstream transcription factor family member 3 Novel U 0.003165770265997714 -0.26834321442628273 1.0 8591 +65263 PYCR3 pyrroline-5-carboxylate reductase 3 Novel N 0.003165543754070472 -0.2683451673429026 1.0 8592 +92312 MEX3A mex-3 RNA binding family member A Novel U 0.0031629423054434745 -0.26836759623802203 1.0 8593 +221710 SMIM13 small integral membrane protein 13 Novel U 0.0031627179795568 -0.2683695303072681 1.0 8594 +645811 CCDC154 coiled-coil domain containing 154 Novel U 0.003162335966857454 -0.26837282390402767 1.0 8595 +51705 EMCN endomucin Novel U 0.0031607223522505763 -0.2683867359960848 1.0 8596 +55247 NEIL3 nei like DNA glycosylase 3 Novel N 0.0031602636329936154 -0.2683906909333444 1.0 8597 +26610 ELP4 elongator acetyltransferase complex subunit 4 Novel U 0.003159090274893582 -0.26840080726833176 1.0 8598 +55840 EAF2 ELL associated factor 2 Novel N 0.0031589552824558905 -0.26840197113187897 1.0 8599 +5519 PPP2R1B protein phosphatase 2 scaffold subunit Abeta Novel U 0.003158838257441298 -0.26840298008579466 1.0 8600 +9687 GREB1 growth regulating estrogen receptor binding 1 Novel U 0.003158757046681705 -0.2684036802601477 1.0 8601 +440387 CTRB2 chymotrypsinogen B2 Novel U 0.003158690197647601 -0.2684042566120922 1.0 8602 +10208 USPL1 ubiquitin specific peptidase like 1 Novel U 0.0031576457539913482 -0.26841326148613864 1.0 8603 +211 ALAS1 5'-aminolevulinate synthase 1 Novel U 0.003154726792677916 -0.268438427878616 1.0 8604 +23516 SLC39A14 solute carrier family 39 member 14 Novel U 0.003154094856661151 -0.2684438762378475 1.0 8605 +27235 COQ2 coenzyme Q2, polyprenyltransferase Novel U 0.0031530758116901487 -0.26845266213219093 1.0 8606 +81853 TMEM14B transmembrane protein 14B Novel N 0.0031529246988097064 -0.2684539649812695 1.0 8607 +79649 MAP7D3 MAP7 domain containing 3 Novel U 0.0031515416632135456 -0.2684658890915559 1.0 8608 +5624 PROC protein C, inactivator of coagulation factors Va and VIIIa Novel U 0.003151443527802547 -0.2684667351850816 1.0 8609 +147699 PPM1N protein phosphatase, Mg2+/Mn2+ dependent 1N (putative) Novel U 0.0031511868718007707 -0.2684689479947008 1.0 8610 +4897 NRCAM neuronal cell adhesion molecule Novel U 0.0031466475594019777 -0.26850808455909425 1.0 8611 +9806 SPOCK2 SPARC (osteonectin), cwcv and kazal like domains proteoglycan 2 Novel N 0.003145688714710196 -0.26851635142502606 1.0 8612 +2118 ETV4 ETS variant transcription factor 4 Novel N 0.003145132956552753 -0.2685211430020327 1.0 8613 +3651 PDX1 pancreatic and duodenal homeobox 1 Novel U 0.0031439345569188523 -0.268531475237473 1.0 8614 +79831 KDM8 lysine demethylase 8 Novel N 0.0031434331512894247 -0.2685357982035919 1.0 8615 +84210 ANKRD20A1 ankyrin repeat domain 20 family member A1 Novel U 0.0031423947883009087 -0.2685447506519792 1.0 8616 +57619 SHROOM3 shroom family member 3 Novel U 0.0031407170058578337 -0.2685592159795119 1.0 8617 +8241 RBM10 RNA binding motif protein 10 Novel U 0.0031399019657972326 -0.26856624300585696 1.0 8618 +3021 H3-3B H3.3 histone B Novel U 0.0031386662103067525 -0.2685768973120776 1.0 8619 +26289 AK5 adenylate kinase 5 Novel N 0.0031380261706108457 -0.2685824155387544 1.0 8620 +22826 DNAJC8 DnaJ heat shock protein family (Hsp40) member C8 Novel U 0.0031376973265435522 -0.2685852507318155 1.0 8621 +51434 ANAPC7 anaphase promoting complex subunit 7 Novel U 0.0031374226408023152 -0.2685876189883388 1.0 8622 +10514 MYBBP1A MYB binding protein 1a Novel N 0.0031365211662541053 -0.26859539122642373 1.0 8623 +84928 TMEM209 transmembrane protein 209 Novel U 0.0031361126495930034 -0.26859891333224245 1.0 8624 +27328 PCDH11X protocadherin 11 X-linked Novel U 0.0031360013678365744 -0.2685998727695413 1.0 8625 +84066 TEX35 testis expressed 35 Novel U 0.003135670643480617 -0.26860272417387665 1.0 8626 +9883 POM121 POM121 transmembrane nucleoporin Novel U 0.003135308460114128 -0.2686058468081876 1.0 8627 +152007 GLIPR2 GLI pathogenesis related 2 Novel U 0.003134964214980323 -0.26860881478453796 1.0 8628 +80008 TMEM156 transmembrane protein 156 Novel U 0.0031349207725433225 -0.26860918933195477 1.0 8629 +9348 NDST3 N-deacetylase and N-sulfotransferase 3 Novel N 0.003134908271177357 -0.268609297114912 1.0 8630 +124626 ZPBP2 zona pellucida binding protein 2 Novel U 0.0031343308447904267 -0.2686142755087719 1.0 8631 +50813 COPS7A COP9 signalosome subunit 7A Novel N 0.0031341981072776854 -0.2686154199310453 1.0 8632 +5620 PRM2 protamine 2 Novel U 0.003134047850055703 -0.26861671540289805 1.0 8633 +26263 FBXO22 F-box protein 22 Novel U 0.0031333271846208637 -0.26862292876005855 1.0 8634 +246269 AFG1L AFG1 like ATPase Novel N 0.0031330175688665547 -0.26862559817248083 1.0 8635 +10846 PDE10A phosphodiesterase 10A Novel U 0.0031323350459794654 -0.2686314826762501 1.0 8636 +256223 CDRT15L2 CMT1A duplicated region transcript 15 like 2 Novel U 0.003130297558855186 -0.26864904926762667 1.0 8637 +9612 NCOR2 nuclear receptor corepressor 2 Novel N 0.003130230673462649 -0.26864962593304254 1.0 8638 +83658 DYNLRB1 dynein light chain roadblock-type 1 Novel U 0.0031300809370720752 -0.26865091691444604 1.0 8639 +84033 OBSCN obscurin, cytoskeletal calmodulin and titin-interacting RhoGEF Novel U 0.003128646102419581 -0.26866328762036756 1.0 8640 +9499 MYOT myotilin Novel U 0.003127608809932925 -0.26867223083921493 1.0 8641 +345630 FBLL1 fibrillarin like 1 Novel U 0.0031270647232413476 -0.2686769217884094 1.0 8642 +6443 SGCB sarcoglycan beta Novel N 0.0031253176257120467 -0.26869198472943445 1.0 8643 +9791 PTDSS1 phosphatidylserine synthase 1 Novel U 0.00312507490873388 -0.2686940773610515 1.0 8644 +100131439 CD300LD CD300 molecule like family member d Novel U 0.0031231026842678433 -0.26871108127773147 1.0 8645 +23480 SEC61G SEC61 translocon subunit gamma Novel U 0.0031217232095280714 -0.2687229746874022 1.0 8646 +100287178 USP17L11 ubiquitin specific peptidase 17 like family member 11 Novel U 0.0031198130258388206 -0.268739443707463 1.0 8647 +55818 KDM3A lysine demethylase 3A Novel U 0.003118003517085907 -0.2687550447389866 1.0 8648 +6829 SUPT5H SPT5 homolog, DSIF elongation factor subunit Novel U 0.0031166734895974185 -0.2687665118295667 1.0 8649 +10436 EMG1 EMG1 N1-specific pseudouridine methyltransferase Novel U 0.00311520476421268 -0.2687791747310254 1.0 8650 +144448 TSPAN19 tetraspanin 19 Novel U 0.0031141844804677726 -0.26878797130569887 1.0 8651 +79829 NAA40 N-alpha-acetyltransferase 40, NatD catalytic subunit Novel U 0.0031136994303662593 -0.268792153259454 1.0 8652 +157313 CDCA2 cell division cycle associated 2 Novel N 0.0031126416967571535 -0.2688012727154128 1.0 8653 +94032 CAMK2N2 calcium/calmodulin dependent protein kinase II inhibitor 2 Novel U 0.0031126270965994426 -0.2688013985935111 1.0 8654 +4836 NMT1 N-myristoyltransferase 1 Novel U 0.0031114645646532924 -0.26881142158870797 1.0 8655 +374819 LRRC37A3 leucine rich repeat containing 37 member A3 Novel U 0.0031088412997389192 -0.26883403857719057 1.0 8656 +150726 FBXO41 F-box protein 41 Novel U 0.003107319379166384 -0.2688471601113033 1.0 8657 +6319 SCD stearoyl-CoA desaturase Novel N 0.0031066834690827772 -0.26885264273372467 1.0 8658 +102724631 POTEB3 POTE ankyrin domain family member B3 Novel U 0.0031066463075991673 -0.26885296312868073 1.0 8659 +9441 MED26 mediator complex subunit 26 Novel N 0.003105989591958104 -0.2688586251302608 1.0 8660 +6118 RPA2 replication protein A2 Novel U 0.0031054945717541764 -0.2688628930431924 1.0 8661 +114897 C1QTNF1 C1q and TNF related 1 Novel U 0.003104435486823038 -0.2688720241498368 1.0 8662 +6427 SRSF2 serine and arginine rich splicing factor 2 Novel U 0.003102898010797789 -0.26888527979830934 1.0 8663 +79946 C10orf95 chromosome 10 open reading frame 95 Novel U 0.003098720981235117 -0.2689212928707951 1.0 8664 +9454 HOMER3 homer scaffold protein 3 Novel U 0.003098675058937644 -0.2689216887988111 1.0 8665 +10171 RCL1 RNA terminal phosphate cyclase like 1 Novel N 0.003098230888957791 -0.26892551829664935 1.0 8666 +347404 LANCL3 LanC like family member 3 Novel U 0.003098204500581653 -0.26892574580916473 1.0 8667 +29980 DONSON DNA replication fork stabilization factor DONSON Novel U 0.003098075487076335 -0.268926858124184 1.0 8668 +124602 KIF19 kinesin family member 19 Novel U 0.003097954005034602 -0.2689279055052258 1.0 8669 +51604 PIGT phosphatidylinositol glycan anchor biosynthesis class T Novel U 0.0030971153121019143 -0.2689351364594062 1.0 8670 +7571 ZNF23 zinc finger protein 23 Novel U 0.0030944085351111423 -0.2689584734634922 1.0 8671 +375387 NRROS negative regulator of reactive oxygen species Novel N 0.003093323025772579 -0.26896783239330274 1.0 8672 +84767 TRIM51 tripartite motif-containing 51 Novel U 0.003092889609583769 -0.2689715691752407 1.0 8673 +11036 GTF2A1L general transcription factor IIA subunit 1 like Novel N 0.003092730234573614 -0.26897294325787696 1.0 8674 +23366 MATCAP2 microtubule associated tyrosine carboxypeptidase 2 Novel U 0.0030921527389787657 -0.2689779222484264 1.0 8675 +10462 CLEC10A C-type lectin domain containing 10A Novel U 0.0030912826370775226 -0.2689854240011359 1.0 8676 +59284 CACNG7 calcium voltage-gated channel auxiliary subunit gamma 7 Novel U 0.0030911753650027705 -0.26898634886818457 1.0 8677 +2275 FHL3 four and a half LIM domains 3 Novel N 0.003090048899499134 -0.26899606090953515 1.0 8678 +26229 B3GAT3 beta-1,3-glucuronyltransferase 3 Novel U 0.0030893508749203413 -0.2690020790641533 1.0 8679 +2815 GP9 glycoprotein IX platelet Novel U 0.003089212691567353 -0.2690032704387971 1.0 8680 +4547 MTTP microsomal triglyceride transfer protein Novel U 0.0030890353897996617 -0.2690047990804588 1.0 8681 +5274 SERPINI1 serpin family I member 1 Novel N 0.003088798249888605 -0.2690068436283075 1.0 8682 +100128731 OST4 oligosaccharyltransferase complex subunit 4, non-catalytic Novel N 0.0030883132384467277 -0.2690110252487511 1.0 8683 +653061 GOLGA8S golgin A8 family member S Novel U 0.0030881816515590976 -0.2690121597506863 1.0 8684 +54834 GDAP2 ganglioside induced differentiation associated protein 2 Novel N 0.0030870811285528886 -0.2690216481237515 1.0 8685 +978 CDA cytidine deaminase Novel N 0.0030853884574330625 -0.2690362418169055 1.0 8686 +64344 HIF3A hypoxia inducible factor 3 subunit alpha Novel U 0.0030850046790987426 -0.2690395506364302 1.0 8687 +2629 GBA1 glucosylceramidase beta 1 Novel U 0.0030828499836961067 -0.26905812776176663 1.0 8688 +1421 CRYGD crystallin gamma D Novel N 0.003082817153678735 -0.2690584108121443 1.0 8689 +121278 TPH2 tryptophan hydroxylase 2 Novel U 0.0030826669806185143 -0.26905970555838016 1.0 8690 +153241 CEP120 centrosomal protein 120 Novel U 0.0030812569087685236 -0.2690718627669854 1.0 8691 +7138 TNNT1 troponin T1, slow skeletal type Novel U 0.0030807321733475643 -0.2690763868754379 1.0 8692 +285877 POM121L12 POM121 transmembrane nucleoporin like 12 Novel U 0.003080220009229937 -0.2690808025979546 1.0 8693 +388512 CLEC17A C-type lectin domain containing 17A Novel U 0.0030794426595576576 -0.26908750466928893 1.0 8694 +63933 MCUR1 mitochondrial calcium uniporter regulator 1 Novel N 0.003078964290312263 -0.2690916290227441 1.0 8695 +84101 USP44 ubiquitin specific peptidase 44 Novel U 0.003078115455604518 -0.26909894741621004 1.0 8696 +10584 COLEC10 collectin subfamily member 10 Novel U 0.0030777227609569634 -0.26910233310946285 1.0 8697 +7432 VIP vasoactive intestinal peptide Novel U 0.0030770877125953083 -0.26910780830238096 1.0 8698 +285141 ERICH2 glutamate rich 2 Novel U 0.0030767699022178963 -0.26911054836633946 1.0 8699 +26232 FBXO2 F-box protein 2 Novel N 0.0030759474180332255 -0.2691176395736476 1.0 8700 +26959 HBP1 HMG-box transcription factor 1 Novel U 0.003075747999979146 -0.2691193588951723 1.0 8701 +9241 NOG noggin Novel U 0.0030747107925963666 -0.26912830138028004 1.0 8702 +51816 ADA2 adenosine deaminase 2 Novel U 0.0030735629654427936 -0.2691381975952487 1.0 8703 +149420 PDIK1L PDLIM1 interacting kinase 1 like Novel U 0.0030731864235759225 -0.2691414440241624 1.0 8704 +9481 SLC25A27 solute carrier family 25 member 27 Novel U 0.0030728263916663923 -0.26914454810926897 1.0 8705 +1655 DDX5 DEAD-box helicase 5 Novel U 0.0030725259607152604 -0.26914713833312487 1.0 8706 +10642 IGF2BP1 insulin like growth factor 2 mRNA binding protein 1 Novel N 0.0030718277065338705 -0.2691531584673065 1.0 8707 +338599 DUSP29 dual specificity phosphatase 29 Novel N 0.0030711275622249267 -0.26915919489759027 1.0 8708 +4017 LOXL2 lysyl oxidase like 2 Novel U 0.0030702104607678044 -0.2691671018661086 1.0 8709 +23335 WDR7 WD repeat domain 7 Novel U 0.003070145929968658 -0.2691676582309397 1.0 8710 +5539 PPY pancreatic polypeptide Novel U 0.003069723892473986 -0.26917129690925384 1.0 8711 +84085 FBXO30 F-box protein 30 Novel U 0.003067461355503921 -0.2691908038116308 1.0 8712 +129446 XIRP2 xin actin binding repeat containing 2 Novel U 0.003067278141347824 -0.26919238342809865 1.0 8713 +646754 TRIM64C tripartite motif containing 64C Novel U 0.003066653207660069 -0.2691977714153892 1.0 8714 +5828 PEX2 peroxisomal biogenesis factor 2 Novel U 0.0030653103673365448 -0.2692093489743177 1.0 8715 +105371346 CPHXL cytoplasmic polyadenylated homeobox like Novel U 0.0030648828783368543 -0.2692130346538423 1.0 8716 +54806 AHI1 Abelson helper integration site 1 Novel N 0.0030646361304860073 -0.26921516203841184 1.0 8717 +2983 GUCY1B1 guanylate cyclase 1 soluble subunit beta 1 Novel N 0.003064506857733443 -0.26921627658858166 1.0 8718 +2139 EYA2 EYA transcriptional coactivator and phosphatase 2 Novel N 0.0030637988983261396 -0.2692223803982554 1.0 8719 +151556 GPR155 G protein-coupled receptor 155 Novel U 0.003063191912721686 -0.26922761364265624 1.0 8720 +202915 TMEM184A transmembrane protein 184A Novel U 0.0030627781009329364 -0.26923118140144753 1.0 8721 +5824 PEX19 peroxisomal biogenesis factor 19 Novel U 0.0030622534205826564 -0.2692357050350975 1.0 8722 +55775 TDP1 tyrosyl-DNA phosphodiesterase 1 Novel U 0.003058676537796307 -0.2692665438254687 1.0 8723 +8872 CDC123 cell division cycle 123 Novel N 0.0030582077669926385 -0.26927058542409243 1.0 8724 +51319 RSRC1 arginine and serine rich coiled-coil 1 Novel U 0.0030579401547989648 -0.2692728926946502 1.0 8725 +8726 EED embryonic ectoderm development Novel U 0.003057660054267781 -0.2692753076358378 1.0 8726 +283807 FBXL22 F-box and leucine rich repeat protein 22 Novel U 0.0030570933508683013 -0.2692801935793767 1.0 8727 +118812 MORN4 MORN repeat containing 4 Novel U 0.0030566328848647814 -0.26928416357655127 1.0 8728 +259292 TAS2R46 taste 2 receptor member 46 Novel N 0.0030563355220375376 -0.26928672734798054 1.0 8729 +150274 HSCB HscB mitochondrial iron-sulfur cluster cochaperone Novel U 0.0030561556301706037 -0.26928827832068647 1.0 8730 +5211 PFKL phosphofructokinase, liver type Novel N 0.0030561327684740904 -0.2692884754272478 1.0 8731 +84918 LRP11 LDL receptor related protein 11 Novel U 0.0030522645997365107 -0.2693218255960803 1.0 8732 +51691 LSM8 LSM8 homolog, U6 small nuclear RNA associated Novel N 0.0030511937882048558 -0.269331057805891 1.0 8733 +55891 LENEP lens epithelial protein Novel N 0.0030509337259138716 -0.2693332999834948 1.0 8734 +284366 KLK9 kallikrein related peptidase 9 Novel U 0.0030481463924504695 -0.26935733152087166 1.0 8735 +8858 PROZ protein Z, vitamin K dependent plasma glycoprotein Novel N 0.003048122624972148 -0.26935753643680693 1.0 8736 +126549 ANKLE1 ankyrin repeat and LEM domain containing 1 Novel U 0.003047217475640828 -0.2693653403577489 1.0 8737 +9373 PLAA phospholipase A2 activating protein Novel U 0.003045621676954385 -0.2693790988463842 1.0 8738 +60496 AASDHPPT aminoadipate-semialdehyde dehydrogenase-phosphopantetheinyl transferase Novel N 0.003045018695808396 -0.26938429756556787 1.0 8739 +730130 TMEM229A transmembrane protein 229A Novel U 0.00304392865402684 -0.26939369557271686 1.0 8740 +5573 PRKAR1A protein kinase cAMP-dependent type I regulatory subunit alpha Novel U 0.0030434973647589505 -0.2693974140169926 1.0 8741 +94137 RP1L1 RP1 like 1 Novel N 0.0030416159463529276 -0.26941363503157134 1.0 8742 +83741 TFAP2D transcription factor AP-2 delta Novel U 0.0030413737296723082 -0.26941572334977587 1.0 8743 +7750 ZMYM2 zinc finger MYM-type containing 2 Novel N 0.003041178787424453 -0.269417404082267 1.0 8744 +23315 SLC9A8 solute carrier family 9 member A8 Novel N 0.0030400539036503577 -0.2694271024864288 1.0 8745 +84219 WDR24 WD repeat domain 24 Novel U 0.003039878989994045 -0.26942861053852396 1.0 8746 +5937 RBMS1 RNA binding motif single stranded interacting protein 1 Novel N 0.003038033176752359 -0.26944452457625595 1.0 8747 +10906 TRAFD1 TRAF-type zinc finger domain containing 1 Novel U 0.0030378929573757108 -0.26944573350487355 1.0 8748 +23338 JADE2 jade family PHD finger 2 Novel N 0.0030374573192541504 -0.2694494894436368 1.0 8749 +64430 PCNX4 pecanex 4 Novel U 0.0030366489251241126 -0.2694564591707994 1.0 8750 +9025 RNF8 ring finger protein 8 Novel U 0.003035805784009109 -0.26946372847584854 1.0 8751 +5077 PAX3 paired box 3 Novel U 0.0030334346370678653 -0.2694841717802083 1.0 8752 +1138 CHRNA5 cholinergic receptor nicotinic alpha 5 subunit Novel N 0.0030333796773627394 -0.26948464562599145 1.0 8753 +54619 CCNJ cyclin J Novel U 0.003032712849834774 -0.26949039480917053 1.0 8754 +2556 GABRA3 gamma-aminobutyric acid type A receptor subunit alpha3 Novel U 0.00303254898013311 -0.2694918076436635 1.0 8755 +51176 LEF1 lymphoid enhancer binding factor 1 Novel U 0.0030305116796227505 -0.26950937262611185 1.0 8756 +9991 PTBP3 polypyrimidine tract binding protein 3 Novel N 0.0030301619142808676 -0.26951238819600937 1.0 8757 +27288 RBMXL2 RBMX like 2 Novel U 0.0030295169681454656 -0.2695179487245082 1.0 8758 +1678 TIMM8A translocase of inner mitochondrial membrane 8A Novel U 0.0030272046510732196 -0.26953788481571445 1.0 8759 +79747 ADGB androglobin Novel U 0.003026062508285141 -0.26954773202182086 1.0 8760 +6659 SOX4 SRY-box transcription factor 4 Novel U 0.00302471201274882 -0.2695593755816548 1.0 8761 +340307 CTAGE6 CTAGE family member 6 Novel U 0.003024171094886745 -0.26956403921016964 1.0 8762 +604 BCL6 BCL6 transcription repressor Novel U 0.003023952603361611 -0.26956592297733334 1.0 8763 +3361 HTR5A 5-hydroxytryptamine receptor 5A Novel N 0.003023823980627188 -0.2695670319232455 1.0 8764 +1718 DHCR24 24-dehydrocholesterol reductase Novel U 0.0030223857339551343 -0.269579432046557 1.0 8765 +965 CD58 CD58 molecule Novel U 0.0030209904003854213 -0.2695914621862134 1.0 8766 +389332 SMIM32 small integral membrane protein 32 Novel U 0.003020765618684481 -0.26959340018535083 1.0 8767 +5530 PPP3CA protein phosphatase 3 catalytic subunit alpha Novel U 0.003020326448394789 -0.26959718657738824 1.0 8768 +135892 TRIM50 tripartite motif containing 50 Novel U 0.003019782242537564 -0.2696018785539925 1.0 8769 +5692 PSMB4 proteasome 20S subunit beta 4 Novel U 0.003018636002265604 -0.26961176108735285 1.0 8770 +10299 MARCHF6 membrane associated ring-CH-type finger 6 Novel U 0.003017413734954304 -0.26962229910261426 1.0 8771 +23114 NFASC neurofascin Novel U 0.0030165576520090553 -0.26962967998816906 1.0 8772 +64129 TINAGL1 tubulointerstitial nephritis antigen like 1 Novel U 0.0030163963908361874 -0.2696310703327238 1.0 8773 +53632 PRKAG3 protein kinase AMP-activated non-catalytic subunit gamma 3 Novel N 0.003015991912514585 -0.2696345576212134 1.0 8774 +6876 TAGLN transgelin Novel N 0.003015377162317604 -0.26963985780955835 1.0 8775 +128611 ZNF831 zinc finger protein 831 Novel U 0.003014071081040252 -0.2696511184432235 1.0 8776 +6015 RING1 ring finger protein 1 Novel N 0.003014004979710922 -0.2696516883486859 1.0 8777 +85414 SLC45A3 solute carrier family 45 member 3 Novel N 0.003012188005920792 -0.26966735374147927 1.0 8778 +4602 MYB MYB proto-oncogene, transcription factor Novel U 0.003009610850887635 -0.26968957318465614 1.0 8779 +26494 OR8G1 olfactory receptor family 8 subfamily G member 1 Novel U 0.003009593382933108 -0.2696897237880223 1.0 8780 +3421 IDH3G isocitrate dehydrogenase (NAD(+)) 3 non-catalytic subunit gamma Novel N 0.00300761426538382 -0.2697067871347597 1.0 8781 +5224 PGAM2 phosphoglycerate mutase 2 Novel U 0.003005981165863564 -0.2697208672197859 1.0 8782 +123355 LRRC28 leucine rich repeat containing 28 Novel U 0.003005923052113748 -0.26972136825877857 1.0 8783 +9994 CASP8AP2 caspase 8 associated protein 2 Novel U 0.0030037265385473894 -0.26974030592754394 1.0 8784 +100526694 MSANTD3-TMEFF1 MSANTD3-TMEFF1 readthrough Novel U 0.0030035116840058927 -0.2697421583377462 1.0 8785 +4111 MAGEA12 MAGE family member A12 Novel U 0.0030012426759913656 -0.26976172103149104 1.0 8786 +84631 SLITRK2 SLIT and NTRK like family member 2 Novel U 0.003000525786603357 -0.2697679018327297 1.0 8787 +3163 HMOX2 heme oxygenase 2 Novel N 0.0030003493845586265 -0.26976942271725496 1.0 8788 +64753 CCDC136 coiled-coil domain containing 136 Novel U 0.003000349042633967 -0.2697694256652249 1.0 8789 +8504 PEX3 peroxisomal biogenesis factor 3 Novel U 0.003000222168334824 -0.26977051953666226 1.0 8790 +26508 HEYL hes related family bHLH transcription factor with YRPW motif like Novel U 0.0029997420816666297 -0.269774658697212 1.0 8791 +50939 IMPG2 interphotoreceptor matrix proteoglycan 2 Novel N 0.002997282139551619 -0.26979586756642626 1.0 8792 +23189 KANK1 KN motif and ankyrin repeat domains 1 Novel U 0.0029972124502136268 -0.26979646840660293 1.0 8793 +11096 ADAMTS5 ADAM metallopeptidase with thrombospondin type 1 motif 5 Novel U 0.002996726297618512 -0.26980065986572105 1.0 8794 +339766 MROH2A maestro heat like repeat family member 2A Novel U 0.002996081186805798 -0.2698062218140173 1.0 8795 +8328 GFI1B growth factor independent 1B transcriptional repressor Novel N 0.0029960441449639005 -0.26980654117745906 1.0 8796 +79005 SCNM1 sodium channel modifier 1 Novel U 0.0029959995692060543 -0.2698069254960218 1.0 8797 +8658 TNKS tankyrase Novel U 0.0029958921532963396 -0.26980785160317156 1.0 8798 +55336 FBXL8 F-box and leucine rich repeat protein 8 Novel U 0.002995805183873639 -0.2698086014269583 1.0 8799 +366 AQP9 aquaporin 9 Novel N 0.002995720191441236 -0.2698093342057387 1.0 8800 +56667 MUC13 mucin 13, cell surface associated Novel N 0.0029941051309232535 -0.2698232587639996 1.0 8801 +116512 MRGPRD MAS related GPR family member D Novel U 0.002993186560553159 -0.2698311783970367 1.0 8802 +4635 MYL4 myosin light chain 4 Novel U 0.002992399047456232 -0.26983796809431265 1.0 8803 +9646 CTR9 CTR9 homolog, Paf1/RNA polymerase II complex component Novel N 0.0029923516465992102 -0.26983837677001726 1.0 8804 +81572 PDRG1 p53 and DNA damage regulated 1 Novel U 0.0029911702673472247 -0.26984856226092574 1.0 8805 +128553 TSHZ2 teashirt zinc finger homeobox 2 Novel U 0.002990587492615018 -0.2698535867665843 1.0 8806 +51043 ZBTB7B zinc finger and BTB domain containing 7B Novel N 0.002990205108880882 -0.2698568835622924 1.0 8807 +440699 LRRC52 leucine rich repeat containing 52 Novel N 0.002990076059701634 -0.26985799618488143 1.0 8808 +2878 GPX3 glutathione peroxidase 3 Novel U 0.0029884780569054553 -0.2698717736766774 1.0 8809 +112479 ERI2 ERI1 exoribonuclease family member 2 Novel U 0.0029880553821014376 -0.269875417849678 1.0 8810 +5017 OVOL1 ovo like transcriptional repressor 1 Novel U 0.002987596684053668 -0.26987937260407835 1.0 8811 +100128553 CTAGE4 CTAGE family member 4 Novel U 0.0029872515571990367 -0.26988234818235624 1.0 8812 +9953 HS3ST3B1 heparan sulfate-glucosamine 3-sulfotransferase 3B1 Novel N 0.0029867430500235314 -0.2698867323758354 1.0 8813 +345222 MSANTD1 Myb/SANT DNA binding domain containing 1 Novel U 0.0029858287942585698 -0.2698946148096654 1.0 8814 +7203 CCT3 chaperonin containing TCP1 subunit 3 Novel U 0.0029853947376964544 -0.2698983571127064 1.0 8815 +85569 GALP galanin like peptide Novel U 0.002984071589806321 -0.2699097648894917 1.0 8816 +27232 GNMT glycine N-methyltransferase Novel U 0.0029822081486419027 -0.2699258309097868 1.0 8817 +57180 ACTR3B actin related protein 3B Novel U 0.0029813635771988754 -0.2699331125466871 1.0 8818 +27120 DKKL1 dickkopf like acrosomal protein 1 Novel N 0.0029794536101483316 -0.2699495796989551 1.0 8819 +340595 RTL4 retrotransposon Gag like 4 Novel U 0.0029790749578373623 -0.2699528443234729 1.0 8820 +23479 ISCU iron-sulfur cluster assembly enzyme Novel U 0.0029786570339457538 -0.2699564475355585 1.0 8821 +54961 SSH3 slingshot protein phosphatase 3 Novel U 0.0029785369257349166 -0.26995748307185 1.0 8822 +81890 QTRT1 queuine tRNA-ribosyltransferase catalytic subunit 1 Novel N 0.00297766573705037 -0.26996499419447306 1.0 8823 +139378 ADGRG4 adhesion G protein-coupled receptor G4 Novel N 0.0029770468885430027 -0.2699703297171978 1.0 8824 +3720 JARID2 jumonji and AT-rich interaction domain containing 2 Novel U 0.0029765952750293837 -0.26997422339090954 1.0 8825 +199857 ALG14 ALG14 UDP-N-acetylglucosaminyltransferase subunit Novel U 0.002976081584528948 -0.26997865227343243 1.0 8826 +652968 CASTOR1 cytosolic arginine sensor for mTORC1 subunit 1 Novel N 0.0029757582011851564 -0.26998144038580413 1.0 8827 +3052 HCCS holocytochrome c synthase Novel U 0.0029753804193175214 -0.2699846975056254 1.0 8828 +6555 SLC10A2 solute carrier family 10 member 2 Novel U 0.0029740220304074363 -0.269996409119716 1.0 8829 +113730 KLHDC7B kelch domain containing 7B Novel U 0.0029736142720598693 -0.26999992468758716 1.0 8830 +8290 H3-4 H3.4 histone, cluster member Novel N 0.0029728216398199727 -0.27000675852054945 1.0 8831 +100507679 MUC22 mucin 22 Novel U 0.002971569746816088 -0.2700175519594794 1.0 8832 +55194 EVA1B eva-1 homolog B Novel U 0.0029704906833892685 -0.2700268553146086 1.0 8833 +79007 DBNDD1 dysbindin domain containing 1 Novel U 0.0029701601106670848 -0.2700297054116039 1.0 8834 +1983 EIF5 eukaryotic translation initiation factor 5 Novel N 0.0029699975399321205 -0.2700311070468029 1.0 8835 +4613 MYCN MYCN proto-oncogene, bHLH transcription factor Novel U 0.002968409868636987 -0.2700447954635539 1.0 8836 +10878 CFHR3 complement factor H related 3 Novel N 0.0029681405584848003 -0.2700471173733911 1.0 8837 +11074 TRIM31 tripartite motif containing 31 Novel U 0.0029678553078282995 -0.2700495767173855 1.0 8838 +83605 CCM2 CCM2 scaffold protein Novel U 0.002967176794113026 -0.27005542665530047 1.0 8839 +339768 ESPNL espin like Novel U 0.002966021006877802 -0.2700653914996607 1.0 8840 +26205 GMEB2 glucocorticoid modulatory element binding protein 2 Novel N 0.0029653626087876596 -0.2700710680068027 1.0 8841 +9535 GMFG glia maturation factor gamma Novel N 0.0029620910576198148 -0.2700992743212615 1.0 8842 +8542 APOL1 apolipoprotein L1 Novel U 0.0029620147675107162 -0.27009993207126964 1.0 8843 +79710 MORC4 MORC family CW-type zinc finger 4 Novel U 0.0029619876104760067 -0.2701001662109243 1.0 8844 +390072 OR52N4 olfactory receptor family 52 subfamily N member 4 Novel U 0.002959522250469078 -0.2701214217915471 1.0 8845 +3097 HIVEP2 HIVEP zinc finger 2 Novel U 0.002959025194154844 -0.2701257072591995 1.0 8846 +9955 HS3ST3A1 heparan sulfate-glucosamine 3-sulfotransferase 3A1 Novel N 0.002958987306024292 -0.27012603391908335 1.0 8847 +121274 ZNF641 zinc finger protein 641 Novel U 0.0029584273056984544 -0.27013086207076964 1.0 8848 +22803 XRN2 5'-3' exoribonuclease 2 Novel N 0.002957069726736829 -0.270142566701732 1.0 8849 +91522 COL23A1 collagen type XXIII alpha 1 chain Novel U 0.0029554171703345994 -0.27015681453804896 1.0 8850 +80205 CHD9 chromodomain helicase DNA binding protein 9 Novel U 0.002952947088286179 -0.2701781108306705 1.0 8851 +6605 SMARCE1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily e, member 1 Novel U 0.002952157950159403 -0.2701849145384572 1.0 8852 +26245 OR2M4 olfactory receptor family 2 subfamily M member 4 Novel U 0.002951401944084724 -0.2701914325918151 1.0 8853 +8514 KCNAB2 potassium voltage-gated channel subfamily A regulatory beta subunit 2 Novel U 0.0029499301853552853 -0.27020412164584495 1.0 8854 +110806277 PNMA8C PNMA family member 8C Novel U 0.002949405739371247 -0.27020864325886074 1.0 8855 +251 ALPG alkaline phosphatase, germ cell Novel U 0.002948504649239247 -0.27021641218262654 1.0 8856 +111216277 TEX54 testis expressed 54 Novel U 0.002947643666136396 -0.2702238353158428 1.0 8857 +400673 VMAC vimentin type intermediate filament associated coiled-coil protein Novel U 0.0029476229960879504 -0.2702240135266842 1.0 8858 +55601 DDX60 DExD/H-box helicase 60 Novel U 0.002947304601084697 -0.2702267586311082 1.0 8859 +22856 CHSY1 chondroitin sulfate synthase 1 Novel U 0.002946780912760826 -0.2702312737118095 1.0 8860 +79016 DDA1 DET1 and DDB1 associated 1 Novel U 0.002946028435100601 -0.2702377613442562 1.0 8861 +2195 FAT1 FAT atypical cadherin 1 Novel N 0.0029459555968065283 -0.27023838933377 1.0 8862 +7153 TOP2A DNA topoisomerase II alpha Novel U 0.002945860218383348 -0.27023921165738923 1.0 8863 +24142 NAA80 N-alpha-acetyltransferase 80, NatH catalytic subunit Novel U 0.0029455161449174413 -0.27024217815367135 1.0 8864 +2706 GJB2 gap junction protein beta 2 Novel U 0.002943987809922392 -0.2702553549909748 1.0 8865 +164684 WBP2NL WBP2 N-terminal like Novel N 0.002943535660002457 -0.27025925328941797 1.0 8866 +9141 PDCD5 programmed cell death 5 Novel U 0.002943114247779456 -0.2702628865768309 1.0 8867 +56937 PMEPA1 prostate transmembrane protein, androgen induced 1 Novel U 0.0029427941829779968 -0.2702656460777446 1.0 8868 +1670 DEFA5 defensin alpha 5 Novel U 0.00294143447524945 -0.27027736906228494 1.0 8869 +401387 LRRD1 leucine rich repeats and death domain containing 1 Novel U 0.0029380329079182798 -0.27030669633637394 1.0 8870 +644096 SDHAF1 succinate dehydrogenase complex assembly factor 1 Novel N 0.0029377884724249965 -0.2703088037845032 1.0 8871 +81629 TSSK3 testis specific serine kinase 3 Novel U 0.0029377156289799476 -0.2703094318184272 1.0 8872 +5284 PIGR polymeric immunoglobulin receptor Novel U 0.0029343262881277657 -0.2703386536795505 1.0 8873 +4326 MMP17 matrix metallopeptidase 17 Novel N 0.002932465419065344 -0.2703546975239681 1.0 8874 +9732 DOCK4 dedicator of cytokinesis 4 Novel U 0.002932158769681293 -0.27035734136125245 1.0 8875 +7059 THBS3 thrombospondin 3 Novel U 0.00293062757019152 -0.27037054289535417 1.0 8876 +6732 SRPK1 SRSF protein kinase 1 Novel U 0.0029294607508678462 -0.27038060285500987 1.0 8877 +171425 CLYBL citramalyl-CoA lyase Novel U 0.0029283582292625675 -0.2703901084593855 1.0 8878 +5036 PA2G4 proliferation-associated 2G4 Novel N 0.0029268291981529118 -0.2704032912983764 1.0 8879 +29090 TIMM21 translocase of inner mitochondrial membrane 21 Novel U 0.002925159111567998 -0.27041769027457163 1.0 8880 +642489 FKBP1C FKBP prolyl isomerase family member 1C Novel U 0.0029248483025513176 -0.27042036997493746 1.0 8881 +4653 MYOC myocilin Novel U 0.002924469701811189 -0.2704236341548272 1.0 8882 +201243 SPEM2 SPEM family member 2 Novel U 0.002923682413180228 -0.27043042191682615 1.0 8883 +139105 BEND2 BEN domain containing 2 Novel U 0.002921919390790817 -0.27044562215712875 1.0 8884 +338440 ANO9 anoctamin 9 Novel N 0.002921775435275654 -0.27044686329759104 1.0 8885 +10572 SIVA1 SIVA1 apoptosis inducing factor Novel U 0.002921536199713733 -0.27044892591350106 1.0 8886 +23328 SASH1 SAM and SH3 domain containing 1 Novel U 0.002920093956380846 -0.270461360494801 1.0 8887 +284086 NEK8 NIMA related kinase 8 Novel U 0.0029181439859767614 -0.27047817254375917 1.0 8888 +23054 NCOA6 nuclear receptor coactivator 6 Novel N 0.002917995497224379 -0.2704794527684075 1.0 8889 +81929 SEH1L SEH1 like nucleoporin Novel U 0.002917751508585878 -0.2704815563638914 1.0 8890 +4536 ND2 NADH dehydrogenase subunit 2 Novel N 0.002915004601419846 -0.2705052393580856 1.0 8891 +5682 PSMA1 proteasome 20S subunit alpha 1 Novel U 0.0029139008480430265 -0.270514755582419 1.0 8892 +51102 MECR mitochondrial trans-2-enoyl-CoA reductase Novel N 0.0029128217489990927 -0.2705240592446281 1.0 8893 +5090 PBX3 PBX homeobox 3 Novel N 0.0029124159362611153 -0.270527558038048 1.0 8894 +416 ARSF arylsulfatase F Novel U 0.002911114738435658 -0.27053877656808306 1.0 8895 +2891 GRIA2 glutamate ionotropic receptor AMPA type subunit 2 Novel N 0.0029101194401782286 -0.2705473577255185 1.0 8896 +984 CDK11B cyclin dependent kinase 11B Novel N 0.002907747240813499 -0.27056781010355196 1.0 8897 +26127 FGFR1OP2 FGFR1 oncogene partner 2 Novel U 0.0029072064494328346 -0.27057247264158274 1.0 8898 +343071 PRAMEF10 PRAME family member 10 Novel U 0.0029054401236861395 -0.27058770136242244 1.0 8899 +51075 TMX2 thioredoxin related transmembrane protein 2 Novel N 0.002905243742452714 -0.27058939450140745 1.0 8900 +389762 SPATA31D3 SPATA31 subfamily D member 3 Novel U 0.0029047466022826766 -0.270593680692039 1.0 8901 +5598 MAPK7 mitogen-activated protein kinase 7 Novel U 0.0029027894031039645 -0.27061055506528303 1.0 8902 +84134 TOMM40L translocase of outer mitochondrial membrane 40 like Novel U 0.0029021847524036337 -0.270615768178854 1.0 8903 +139221 PWWP3B PWWP domain containing 3B Novel U 0.0029015344466225518 -0.2706213749165801 1.0 8904 +4538 ND4 NADH dehydrogenase subunit 4 Novel N 0.0029013376347006873 -0.27062307176882927 1.0 8905 +10321 CRISP3 cysteine rich secretory protein 3 Novel U 0.0029013350015823607 -0.2706230944707708 1.0 8906 +7288 TULP2 TUB like protein 2 Novel N 0.002900501239843602 -0.2706302829097041 1.0 8907 +55177 RMDN3 regulator of microtubule dynamics 3 Novel N 0.002898765738633036 -0.27064524587081257 1.0 8908 +91754 NEK9 NIMA related kinase 9 Novel U 0.00289867537522666 -0.2706460249564894 1.0 8909 +91647 ATPAF2 ATP synthase mitochondrial F1 complex assembly factor 2 Novel U 0.0028985012449330772 -0.2706475262546704 1.0 8910 +100141515 C17orf99 chromosome 17 open reading frame 99 Novel U 0.00289848340624285 -0.2706476800544065 1.0 8911 +85417 CCNB3 cyclin B3 Novel U 0.0028974328564859474 -0.27065673757338676 1.0 8912 +283987 HID1 HID1 domain containing Novel N 0.002896260482739201 -0.2706668454215809 1.0 8913 +9355 LHX2 LIM homeobox 2 Novel U 0.0028943894566172525 -0.27068297683706205 1.0 8914 +6049 RNF6 ring finger protein 6 Novel U 0.002894087350693504 -0.27068558150202005 1.0 8915 +80232 WDR26 WD repeat domain 26 Novel U 0.0028927258189970517 -0.2706973202122543 1.0 8916 +493869 GPX8 glutathione peroxidase 8 (putative) Novel N 0.0028919133752527714 -0.27070432485395346 1.0 8917 +114899 C1QTNF3 C1q and TNF related 3 Novel U 0.0028913085436698136 -0.2707095395270392 1.0 8918 +51496 CTDSPL2 CTD small phosphatase like 2 Novel U 0.00289062801540847 -0.2707154068337547 1.0 8919 +100271846 ERVV-2 endogenous retrovirus group V member 2, envelope Novel U 0.0028900421785234996 -0.2707204577403588 1.0 8920 +55113 XKR8 XK related 8 Novel U 0.002889756384042753 -0.2707229217730396 1.0 8921 +114841037 CIMIP3 ciliary microtubule inner protein 3 Novel U 0.0028896651271154337 -0.2707237085623809 1.0 8922 +9465 AKAP7 A-kinase anchoring protein 7 Novel U 0.002889615982958338 -0.27072413226828607 1.0 8923 +5858 PZP PZP alpha-2-macroglobulin like Novel N 0.00288848427116116 -0.2707338895415764 1.0 8924 +343035 RD3 RD3 regulator of GUCY2D Novel U 0.0028871975842310253 -0.27074498296310623 1.0 8925 +340990 OTOG otogelin Novel N 0.0028869015265299783 -0.2707475354821363 1.0 8926 +116447 TOP1MT DNA topoisomerase I mitochondrial Novel U 0.002886309909117703 -0.27075263622668033 1.0 8927 +83482 SCRT1 scratch family transcriptional repressor 1 Novel N 0.0028859566715807466 -0.27075568173278275 1.0 8928 +10257 ABCC4 ATP binding cassette subfamily C member 4 (PEL blood group) Novel U 0.002883874990941027 -0.270773629347145 1.0 8929 +6047 RNF4 ring finger protein 4 Novel U 0.0028836923426533573 -0.27077520408486816 1.0 8930 +1954 MEGF8 multiple EGF like domains 8 Novel U 0.0028830776225670304 -0.2707805040136082 1.0 8931 +6611 SMS spermine synthase Novel U 0.0028813318277090953 -0.2707955557233988 1.0 8932 +25950 RWDD3 RWD domain containing 3 Novel U 0.00288056367788732 -0.27080217847643334 1.0 8933 +7358 UGDH UDP-glucose 6-dehydrogenase Novel U 0.0028797839830975802 -0.27080890076665376 1.0 8934 +57187 THOC2 THO complex subunit 2 Novel U 0.002879117175946381 -0.27081464977415054 1.0 8935 +55367 PIDD1 p53-induced death domain protein 1 Novel U 0.002878871058489203 -0.27081677172365853 1.0 8936 +10882 C1QL1 complement C1q like 1 Novel U 0.0028787568054011495 -0.27081775677887066 1.0 8937 +145748 LYSMD4 LysM domain containing 4 Novel U 0.002878574187199986 -0.2708193312571972 1.0 8938 +9439 MED23 mediator complex subunit 23 Novel N 0.0028773008176030375 -0.27083030986074974 1.0 8939 +259296 TAS2R50 taste 2 receptor member 50 Novel N 0.0028771429318512 -0.2708316711034559 1.0 8940 +10905 MAN1A2 mannosidase alpha class 1A member 2 Novel N 0.0028754693402625042 -0.27084610029872275 1.0 8941 +10181 RBM5 RNA binding motif protein 5 Novel N 0.0028754624481614277 -0.2708461597203122 1.0 8942 +8243 SMC1A structural maintenance of chromosomes 1A Novel U 0.0028738639919919833 -0.27085994112095385 1.0 8943 +4725 NDUFS5 NADH:ubiquinone oxidoreductase subunit S5 Novel N 0.0028732349628292266 -0.2708653644181784 1.0 8944 +26578 OSTF1 osteoclast stimulating factor 1 Novel N 0.002869640731512796 -0.2708963527822747 1.0 8945 +53635 PTOV1 PTOV1 extended AT-hook containing adaptor protein Novel U 0.0028696281157598647 -0.27089646155144137 1.0 8946 +92691 TMEM169 transmembrane protein 169 Novel U 0.0028689349909738517 -0.2709024374615435 1.0 8947 +8497 PPFIA4 PTPRF interacting protein alpha 4 Novel U 0.002868380026798534 -0.2709072221930789 1.0 8948 +150275 CCDC117 coiled-coil domain containing 117 Novel N 0.00286800020991986 -0.2709104968581435 1.0 8949 +4863 NPAT nuclear protein, coactivator of histone transcription Novel N 0.002867998197797629 -0.27091051420604656 1.0 8950 +255057 CBARP CACN subunit beta associated regulatory protein Novel U 0.0028679008554154837 -0.2709113534623198 1.0 8951 +10753 CAPN9 calpain 9 Novel N 0.002867664595921864 -0.2709133904194784 1.0 8952 +9577 BABAM2 BRISC and BRCA1 A complex member 2 Novel U 0.00286761713789758 -0.27091379958806167 1.0 8953 +1299 COL9A3 collagen type IX alpha 3 chain Novel U 0.0028675095309005135 -0.27091472734270816 1.0 8954 +63973 NEUROG2 neurogenin 2 Novel U 0.0028667637236032156 -0.270921157465324 1.0 8955 +26095 PTPN20 protein tyrosine phosphatase non-receptor type 20 Novel U 0.0028666592914704703 -0.2709220578472605 1.0 8956 +151887 CCDC80 coiled-coil domain containing 80 Novel U 0.0028665629616645596 -0.27092288837341094 1.0 8957 +132625 ZFP42 ZFP42 zinc finger protein Novel U 0.0028660235238735145 -0.27092753924120555 1.0 8958 +6909 TBX2 T-box transcription factor 2 Novel U 0.0028630820582238176 -0.2709528996591934 1.0 8959 +5627 PROS1 protein S Novel N 0.00286281970676568 -0.27095516157329697 1.0 8960 +23390 ZDHHC17 zinc finger DHHC-type palmitoyltransferase 17 Novel U 0.002862192689233918 -0.2709605675268537 1.0 8961 +752014 CEMP1 cementum protein 1 Novel N 0.0028621467630943003 -0.27096096348799553 1.0 8962 +9583 ENTPD4 ectonucleoside triphosphate diphosphohydrolase 4 Novel N 0.0028621104215646445 -0.2709612768135591 1.0 8963 +5671 PSG3 pregnancy specific beta-1-glycoprotein 3 Novel N 0.002861876450284284 -0.2709632940424422 1.0 8964 +701 BUB1B BUB1 mitotic checkpoint serine/threonine kinase B Novel U 0.0028617648583500496 -0.2709642561539992 1.0 8965 +400120 SERTM1 serine rich and transmembrane domain containing 1 Novel U 0.002860141776010835 -0.27097824987395147 1.0 8966 +88 ACTN2 actinin alpha 2 Novel U 0.0028598650476891266 -0.27098063574097947 1.0 8967 +740 MRPL49 mitochondrial ribosomal protein L49 Novel U 0.0028592147958075133 -0.2709862420140008 1.0 8968 +24138 IFIT5 interferon induced protein with tetratricopeptide repeats 5 Novel N 0.0028590924197006784 -0.27098729710339864 1.0 8969 +440026 TMEM41B transmembrane protein 41B Novel U 0.0028587910388674356 -0.2709898955168478 1.0 8970 +7458 EIF4H eukaryotic translation initiation factor 4H Novel U 0.00285852942875796 -0.27099215103926977 1.0 8971 +1297 COL9A1 collagen type IX alpha 1 chain Novel U 0.002858021370544047 -0.27099653136193924 1.0 8972 +91607 SLFN11 schlafen family member 11 Novel N 0.0028574627403199025 -0.27100134770102735 1.0 8973 +7077 TIMP2 TIMP metallopeptidase inhibitor 2 Novel N 0.0028571685464032835 -0.27100388415107757 1.0 8974 +139886 SPIN4 spindlin family member 4 Novel U 0.0028561349770606106 -0.27101279527011524 1.0 8975 +2986 GUCY2F guanylate cyclase 2F, retinal Novel U 0.0028556018356911297 -0.27101739185208723 1.0 8976 +55964 SEPTIN3 septin 3 Novel U 0.0028553510264547003 -0.2710195542526822 1.0 8977 +4638 MYLK myosin light chain kinase Novel U 0.00285414257633412 -0.27102997314034744 1.0 8978 +341116 MS4A10 membrane spanning 4-domains A10 Novel U 0.0028536155645484864 -0.27103451687492053 1.0 8979 +92335 STRADA STE20 related adaptor alpha Novel U 0.0028534932048690847 -0.27103557182268606 1.0 8980 +283375 SLC39A5 solute carrier family 39 member 5 Novel U 0.00285312718567913 -0.2710387275282949 1.0 8981 +1482 NKX2-5 NK2 homeobox 5 Novel U 0.002849453760514944 -0.2710703986775467 1.0 8982 +10776 ARPP19 cAMP regulated phosphoprotein 19 Novel N 0.002849267025305027 -0.2710720086514647 1.0 8983 +54956 PARP16 poly(ADP-ribose) polymerase family member 16 Novel U 0.002848733113869497 -0.2710766118727108 1.0 8984 +4656 MYOG myogenin Novel N 0.002848618122444735 -0.2710776032936364 1.0 8985 +9980 DOP1B DOP1 leucine zipper like protein B Novel N 0.0028465250075847596 -0.2710956494903516 1.0 8986 +157855 KCNU1 potassium calcium-activated channel subfamily U member 1 Novel N 0.0028462720027964384 -0.27109783082032407 1.0 8987 +8369 H4C7 H4 clustered histone 7 Novel U 0.002845732811153355 -0.2711024795659062 1.0 8988 +10394 PRG3 proteoglycan 3, pro eosinophil major basic protein 2 Novel U 0.0028450246839689824 -0.27110858482210265 1.0 8989 +5701 PSMC2 proteasome 26S subunit, ATPase 2 Novel U 0.002844681656400844 -0.27111154230097384 1.0 8990 +84790 TUBA1C tubulin alpha 1c Novel U 0.0028439179174535546 -0.27111812702479643 1.0 8991 +79641 ROGDI rogdi atypical leucine zipper Novel N 0.0028432366098193186 -0.2711240010510269 1.0 8992 +8547 FCN3 ficolin 3 Novel U 0.002842928398782013 -0.2711266583524084 1.0 8993 +57504 MTA3 metastasis associated 1 family member 3 Novel N 0.002842000427200073 -0.27113465903982126 1.0 8994 +259286 TAS2R40 taste 2 receptor member 40 Novel N 0.0028406965728332207 -0.2711459004737445 1.0 8995 +3698 ITIH2 inter-alpha-trypsin inhibitor heavy chain 2 Novel U 0.002838674526660759 -0.27116333393795294 1.0 8996 +7162 TPBG trophoblast glycoprotein Novel U 0.0028383302182847293 -0.27116630245955836 1.0 8997 +2119 ETV5 ETS variant transcription factor 5 Novel N 0.0028368664550223613 -0.2711789225791143 1.0 8998 +84920 ALG10 ALG10 alpha-1,2-glucosyltransferase Novel U 0.002836643719978263 -0.2711808429326018 1.0 8999 +26050 SLITRK5 SLIT and NTRK like family member 5 Novel U 0.0028366365094631045 -0.27118090509946013 1.0 9000 +1200 TPP1 tripeptidyl peptidase 1 Novel N 0.002836033153788963 -0.27118610704771107 1.0 9001 +25758 KIAA1549L KIAA1549 like Novel U 0.002835568319590884 -0.2711901147061243 1.0 9002 +533 ATP6V0B ATPase H+ transporting V0 subunit b Novel U 0.0028330915590421696 -0.2712114685787346 1.0 9003 +55315 SLC29A3 solute carrier family 29 member 3 Novel U 0.002833078055414322 -0.2712115850028875 1.0 9004 +4931 NVL nuclear VCP like Novel U 0.0028327922909749015 -0.2712140487765612 1.0 9005 +5537 PPP6C protein phosphatase 6 catalytic subunit Novel U 0.002828439723046378 -0.27125157528719684 1.0 9006 +2218 FKTN fukutin Novel U 0.002827206377597747 -0.27126220881477314 1.0 9007 +343450 KCNT2 potassium sodium-activated channel subfamily T member 2 Novel N 0.0028267515318601494 -0.2712661303557323 1.0 9008 +222255 ATXN7L1 ataxin 7 like 1 Novel U 0.0028264116682002478 -0.2712690605563535 1.0 9009 +400566 LIAT1 ligand of ATE1 Novel U 0.0028243545272632307 -0.27128679659689775 1.0 9010 +131408 FAM131A family with sequence similarity 131 member A Novel U 0.0028241027480475633 -0.27128896736035735 1.0 9011 +148137 PROSER3 proline and serine rich 3 Novel U 0.002823823287651212 -0.2712913767824981 1.0 9012 +64101 LRRC4 leucine rich repeat containing 4 Novel U 0.0028237996761766777 -0.2712915803534164 1.0 9013 +779 CACNA1S calcium voltage-gated channel subunit alpha1 S Novel U 0.002823008544367548 -0.2712984012501231 1.0 9014 +50 ACO2 aconitase 2 Novel N 0.002822768401078096 -0.2713004716921825 1.0 9015 +5635 PRPSAP1 phosphoribosyl pyrophosphate synthetase associated protein 1 Novel N 0.0028217365676818157 -0.27130936784442083 1.0 9016 +8464 SUPT3H SPT3 homolog, SAGA and STAGA complex component Novel N 0.0028216795947491407 -0.27130985904763677 1.0 9017 +642446 TRIM64B tripartite motif containing 64B Novel U 0.002819525253034722 -0.27132843312358146 1.0 9018 +728492 SERF1B small EDRK-rich factor 1B Novel N 0.002818527684878189 -0.27133703385139335 1.0 9019 +10126 DNAL4 dynein axonemal light chain 4 Novel U 0.002818323935630291 -0.27133879051514764 1.0 9020 +54915 YTHDF1 YTH N6-methyladenosine RNA binding protein F1 Novel N 0.002817959306242978 -0.2713419342383028 1.0 9021 +3080 CFHR2 complement factor H related 2 Novel U 0.0028175156457671056 -0.27134575934335337 1.0 9022 +112441434 SHLD3 shieldin complex subunit 3 Novel U 0.0028174325955158393 -0.27134647537724155 1.0 9023 +56834 GPR137 G protein-coupled receptor 137 Novel U 0.002813564469830867 -0.2713798251748876 1.0 9024 +3736 KCNA1 potassium voltage-gated channel subfamily A member 1 Novel N 0.002813174209125199 -0.27138318988343724 1.0 9025 +5686 PSMA5 proteasome 20S subunit alpha 5 Novel U 0.002812256347173328 -0.27139110340870887 1.0 9026 +800 CALD1 caldesmon 1 Novel U 0.0028120787087084816 -0.2713926349532706 1.0 9027 +165 AEBP1 AE binding protein 1 Novel U 0.002811970694788803 -0.2713935662162795 1.0 9028 +284098 PIGW phosphatidylinositol glycan anchor biosynthesis class W Novel U 0.0028099305553343974 -0.27141115567523594 1.0 9029 +1652 DDT D-dopachrome tautomerase Novel U 0.0028099045957861593 -0.27141137949052824 1.0 9030 +26049 FAM169A family with sequence similarity 169 member A Novel U 0.0028093089206475464 -0.2714165152195488 1.0 9031 +91419 ATP23 ATP23 metallopeptidase and ATP synthase assembly factor homolog Novel N 0.0028085772416312003 -0.2714228235324435 1.0 9032 +2997 GYS1 glycogen synthase 1 Novel N 0.0028082093678295336 -0.27142599522794775 1.0 9033 +441478 NRARP NOTCH regulated ankyrin repeat protein Novel U 0.002806662162215805 -0.2714393347619591 1.0 9034 +5356 PLRG1 pleiotropic regulator 1 Novel N 0.00280608706186679 -0.271444293101431 1.0 9035 +105376230 TEX53 testis expressed 53 Novel U 0.0028049240595940544 -0.2714543201516399 1.0 9036 +53630 BCO1 beta-carotene oxygenase 1 Novel N 0.002801918785092191 -0.27148023071005256 1.0 9037 +5798 PTPRN protein tyrosine phosphatase receptor type N Novel U 0.002801745929302555 -0.2714817210198501 1.0 9038 +7296 TXNRD1 thioredoxin reductase 1 Novel U 0.0028010644432971336 -0.27148759658394245 1.0 9039 +51304 ZDHHC3 zinc finger DHHC-type palmitoyltransferase 3 Novel U 0.0027994666017647873 -0.27150137268537095 1.0 9040 +5803 PTPRZ1 protein tyrosine phosphatase receptor type Z1 Novel N 0.0027982610970493523 -0.271511766178653 1.0 9041 +2115 ETV1 ETS variant transcription factor 1 Novel N 0.0027976668691570877 -0.27151688942995783 1.0 9042 +729431 GAGE12E G antigen 12E Novel U 0.002797181977846701 -0.2715210700146644 1.0 9043 +9423 NTN1 netrin 1 Novel U 0.0027969152647153534 -0.2715233695337816 1.0 9044 +8575 PRKRA protein activator of interferon induced protein kinase EIF2AK2 Novel N 0.0027967623489423736 -0.27152468792684864 1.0 9045 +10517 FBXW10 F-box and WD repeat domain containing 10 Novel U 0.002796644548452082 -0.2715257035666788 1.0 9046 +152098 ZCWPW2 zinc finger CW-type and PWWP domain containing 2 Novel U 0.0027953577939655934 -0.27153679757065896 1.0 9047 +1591 CYP24A1 cytochrome P450 family 24 subfamily A member 1 Novel U 0.002794427642905012 -0.2715448170488706 1.0 9048 +140469 MYO3B myosin IIIB Novel U 0.0027924255038691372 -0.2715620788798306 1.0 9049 +144455 E2F7 E2F transcription factor 7 Novel U 0.0027912600519428093 -0.2715721270502042 1.0 9050 +55809 TRERF1 transcriptional regulating factor 1 Novel U 0.002791173965538119 -0.2715728692608794 1.0 9051 +285126 DNAJC5G DnaJ heat shock protein family (Hsp40) member C5 gamma Novel U 0.002790677550084374 -0.27157714920322856 1.0 9052 +2567 GABRG3 gamma-aminobutyric acid type A receptor subunit gamma3 Novel U 0.0027904146140811806 -0.2715794161571009 1.0 9053 +10229 COQ7 coenzyme Q7, hydroxylase Novel N 0.002789934119262904 -0.27158355883659596 1.0 9054 +51244 CCDC174 coiled-coil domain containing 174 Novel U 0.0027897332441042897 -0.27158529072083076 1.0 9055 +90141 EFCAB11 EF-hand calcium binding domain 11 Novel U 0.002789142961295813 -0.2715903799588286 1.0 9056 +1017 CDK2 cyclin dependent kinase 2 Novel U 0.002787970891853403 -0.2716004851834038 1.0 9057 +340146 SLC35D3 solute carrier family 35 member D3 Novel N 0.0027879131851099304 -0.2716009827133122 1.0 9058 +59348 ZNF350 zinc finger protein 350 Novel N 0.0027874796250027586 -0.2716047207360702 1.0 9059 +100151643 KRTAP20-4 keratin associated protein 20-4 Novel U 0.0027866407637183355 -0.2716119531417279 1.0 9060 +28959 TMEM176B transmembrane protein 176B Novel N 0.002786165150900437 -0.2716160537301076 1.0 9061 +1984 EIF5A eukaryotic translation initiation factor 5A Novel U 0.0027857818453576777 -0.27161935847336793 1.0 9062 +4676 NAP1L4 nucleosome assembly protein 1 like 4 Novel N 0.002785179349926696 -0.2716245530048652 1.0 9063 +64321 SOX17 SRY-box transcription factor 17 Novel U 0.0027844167894220534 -0.2716311275685154 1.0 9064 +55624 POMGNT1 protein O-linked mannose N-acetylglucosaminyltransferase 1 (beta 1,2-) Novel U 0.002783935609973211 -0.271635276150686 1.0 9065 +10518 CIB2 calcium and integrin binding family member 2 Novel U 0.0027838703754299913 -0.27163583858298346 1.0 9066 +1811 SLC26A3 solute carrier family 26 member 3 Novel U 0.002781231430984556 -0.2716585907555916 1.0 9067 +440689 H2BC18 H2B clustered histone 18 Novel U 0.0027810512907742555 -0.2716601438694381 1.0 9068 +84280 BTBD10 BTB domain containing 10 Novel U 0.002780966585128291 -0.27166087417563356 1.0 9069 +22881 ANKRD6 ankyrin repeat domain 6 Novel U 0.002780790282915448 -0.27166239419943883 1.0 9070 +9519 TBPL1 TATA-box binding protein like 1 Novel N 0.0027801595113409487 -0.27166783251920495 1.0 9071 +93974 ATP5IF1 ATP synthase inhibitory factor subunit 1 Novel U 0.002779470026855211 -0.27167377704375045 1.0 9072 +63943 FKBPL FKBP prolyl isomerase like Novel U 0.0027782637378039486 -0.2716841772993364 1.0 9073 +51078 THAP4 THAP domain containing 4 Novel N 0.00277751561826766 -0.27169062735737026 1.0 9074 +169792 GLIS3 GLIS family zinc finger 3 Novel U 0.00277716642482246 -0.27169363799654933 1.0 9075 +55573 CDV3 CDV3 homolog Novel U 0.0027767866239564324 -0.2716969125235579 1.0 9076 +9761 MLEC malectin Novel N 0.0027764359599471286 -0.27169993584149127 1.0 9077 +23548 TTC33 tetratricopeptide repeat domain 33 Novel U 0.002776240940555077 -0.27170161723909614 1.0 9078 +6318 SERPINB4 serpin family B member 4 Novel U 0.0027759129777183756 -0.2717044448344563 1.0 9079 +64375 IKZF4 IKAROS family zinc finger 4 Novel U 0.0027737404346455815 -0.27172317583695105 1.0 9080 +10381 TUBB3 tubulin beta 3 class III Novel U 0.0027722209347978 -0.27173627650031457 1.0 9081 +84135 UTP15 UTP15 small subunit processome component Novel N 0.002771714337793515 -0.2717406442248812 1.0 9082 +5134 PDCD2 programmed cell death 2 Novel N 0.0027716681370166273 -0.27174104255386167 1.0 9083 +6414 SELENOP selenoprotein P Novel N 0.0027708985700227186 -0.27174767752532125 1.0 9084 +57478 USP31 ubiquitin specific peptidase 31 Novel N 0.002770285088187185 -0.27175296677824134 1.0 9085 +57470 LRRC47 leucine rich repeat containing 47 Novel U 0.0027701693217231683 -0.2717539648813186 1.0 9086 +347735 SERINC2 serine incorporator 2 Novel U 0.0027700883473565766 -0.2717546630175634 1.0 9087 +4100 MAGEA1 MAGE family member A1 Novel U 0.0027699079424854086 -0.27175621841323505 1.0 9088 +283659 PRTG protogenin Novel U 0.002769849196278582 -0.27175672490507885 1.0 9089 +81688 C6orf62 chromosome 6 open reading frame 62 Novel U 0.0027683479095960833 -0.2717696685400969 1.0 9090 +285855 RPL7L1 ribosomal protein L7 like 1 Novel U 0.0027678164123197853 -0.27177425094719987 1.0 9091 +414189 AGAP6 ArfGAP with GTPase domain, ankyrin repeat and PH domain 6 Novel U 0.002765704873138835 -0.27179245599278046 1.0 9092 +9899 SV2B synaptic vesicle glycoprotein 2B Novel U 0.002764960190861278 -0.2717988764158199 1.0 9093 +64427 TTC31 tetratricopeptide repeat domain 31 Novel U 0.0027646105276956496 -0.2718018911047849 1.0 9094 +6150 MRPL23 mitochondrial ribosomal protein L23 Novel N 0.0027631695248702204 -0.27181431499080866 1.0 9095 +51290 ERGIC2 ERGIC and golgi 2 Novel N 0.0027630254368762146 -0.27181555727346296 1.0 9096 +112268164 CPHXL2 cytoplasmic polyadenylated homeobox like 2 Novel U 0.0027624997858596402 -0.27182008927590107 1.0 9097 +41 ASIC1 acid sensing ion channel subunit 1 Novel U 0.002760096744692519 -0.2718408075625302 1.0 9098 +57194 ATP10A ATPase phospholipid transporting 10A (putative) Novel U 0.002760020269301841 -0.27184146690997957 1.0 9099 +7001 PRDX2 peroxiredoxin 2 Novel N 0.0027585072959552116 -0.2718545113038445 1.0 9100 +486 FXYD2 FXYD domain containing ion transport regulator 2 Novel U 0.0027581739848368198 -0.27185738501045514 1.0 9101 +23421 ITGB3BP integrin subunit beta 3 binding protein Novel N 0.0027577520098882105 -0.27186102314951627 1.0 9102 +55719 SLF2 SMC5-SMC6 complex localization factor 2 Novel U 0.0027569632473934944 -0.2718678236187181 1.0 9103 +53942 CNTN5 contactin 5 Novel U 0.002755595726075506 -0.27187961396963894 1.0 9104 +2529 FUT7 fucosyltransferase 7 Novel U 0.0027554852516155294 -0.2718805664466744 1.0 9105 +114294 LACTB lactamase beta Novel N 0.0027514030948943267 -0.2719157615545119 1.0 9106 +84502 JPH4 junctophilin 4 Novel N 0.0027504537048249783 -0.2719239469055782 1.0 9107 +28978 TMEM14A transmembrane protein 14A Novel N 0.002748299708376431 -0.27194251800474606 1.0 9108 +341 APOC1 apolipoprotein C1 Novel U 0.002746254883977978 -0.2719601478558585 1.0 9109 +7173 TPO thyroid peroxidase Novel U 0.0027459773333092003 -0.2719625408129116 1.0 9110 +4143 MAT1A methionine adenosyltransferase 1A Novel U 0.0027455039313960703 -0.271966622339546 1.0 9111 +8531 YBX3 Y-box binding protein 3 Novel U 0.002745453022418877 -0.27196706126119075 1.0 9112 +9805 SCRN1 secernin 1 Novel U 0.002743424856753008 -0.2719845474858013 1.0 9113 +3547 IGSF1 immunoglobulin superfamily member 1 Novel N 0.0027431559095613535 -0.2719868662663037 1.0 9114 +57560 IFT80 intraflagellar transport 80 Novel U 0.0027429728886723863 -0.27198844421648144 1.0 9115 +57862 ZNF410 zinc finger protein 410 Novel N 0.0027428191251812417 -0.2719897699183155 1.0 9116 +9890 PLPPR4 phospholipid phosphatase related 4 Novel N 0.002741852291018367 -0.2719981056670257 1.0 9117 +110599563 LY6G6F-LY6G6D LY6G6F-LY6G6D readthrough Novel U 0.0027416777780144355 -0.27199961026481845 1.0 9118 +6444 SGCD sarcoglycan delta Novel U 0.0027411718250896396 -0.2720039724363285 1.0 9119 +9081 PRY PTPN13 like Y-linked Novel N 0.00274032171774665 -0.2720113018020666 1.0 9120 +340152 ZC3H12D zinc finger CCCH-type containing 12D Novel U 0.0027398707424456928 -0.2720151899733038 1.0 9121 +5168 ENPP2 ectonucleotide pyrophosphatase/phosphodiesterase 2 Novel U 0.0027392209082739314 -0.2720207926449585 1.0 9122 +79805 VASH2 vasohibin 2 Novel U 0.0027375463308902085 -0.2720352303394488 1.0 9123 +4097 MAFG MAF bZIP transcription factor G Novel U 0.0027356947496422817 -0.27205119410716805 1.0 9124 +347736 NME9 NME/NM23 family member 9 Novel U 0.0027344818969914694 -0.2720616509521036 1.0 9125 +54344 DPM3 dolichyl-phosphate mannosyltransferase subunit 3, regulatory Novel U 0.002734073746984897 -0.2720651698967391 1.0 9126 +25906 ANAPC15 anaphase promoting complex subunit 15 Novel N 0.002734014080449153 -0.2720656843233776 1.0 9127 +100131801 PET100 PET100 cytochrome c oxidase chaperone Novel N 0.0027339651323791373 -0.27206610633867984 1.0 9128 +90199 WFDC8 WAP four-disulfide core domain 8 Novel U 0.0027339141240731823 -0.27206654611670683 1.0 9129 +26287 ANKRD2 ankyrin repeat domain 2 Novel N 0.0027337409723374446 -0.2720680389780612 1.0 9130 +80143 SIKE1 suppressor of IKBKE 1 Novel U 0.002733620708317006 -0.27206907585769546 1.0 9131 +9032 TM4SF5 transmembrane 4 L six family member 5 Novel N 0.0027326669013798175 -0.2720772992896466 1.0 9132 +3772 KCNJ15 potassium inwardly rectifying channel subfamily J member 15 Novel N 0.002731593861175887 -0.27208655071438864 1.0 9133 +4084 MXD1 MAX dimerization protein 1 Novel N 0.002731192240661697 -0.272090013363736 1.0 9134 +5791 PTPRE protein tyrosine phosphatase receptor type E Novel N 0.0027307881955493402 -0.27209349691722795 1.0 9135 +83752 LONP2 lon peptidase 2, peroxisomal Novel U 0.0027288919694056523 -0.27210984559959595 1.0 9136 +5317 PKP1 plakophilin 1 Novel U 0.002728834628508858 -0.27211033997528605 1.0 9137 +115024 NT5C3B 5'-nucleotidase, cytosolic IIIB Novel U 0.002728557667152506 -0.27211272785146756 1.0 9138 +1519 CTSO cathepsin O Novel N 0.002727434249668837 -0.27212241361372136 1.0 9139 +9576 SPAG6 sperm associated antigen 6 Novel U 0.0027245900117903463 -0.27214693576357635 1.0 9140 +144165 PRICKLE1 prickle planar cell polarity protein 1 Novel U 0.002723834394973455 -0.2721534504608725 1.0 9141 +5626 PROP1 PROP paired-like homeobox 1 Novel U 0.002723443939008887 -0.27215681685288473 1.0 9142 +79850 TLCD3A TLC domain containing 3A Novel U 0.002723187047452652 -0.2721590316933825 1.0 9143 +390443 RNASE9 ribonuclease A family member 9 (inactive) Novel U 0.0027228580873296876 -0.2721618678870401 1.0 9144 +11187 PKP3 plakophilin 3 Novel U 0.0027210800786339672 -0.27217719733469625 1.0 9145 +26277 TINF2 TERF1 interacting nuclear factor 2 Novel U 0.002721024335614621 -0.2721776779339753 1.0 9146 +80298 MTERF2 mitochondrial transcription termination factor 2 Novel U 0.002721000236302256 -0.2721778857108823 1.0 9147 +10051 SMC4 structural maintenance of chromosomes 4 Novel U 0.0027207904790440577 -0.27217969417386556 1.0 9148 +25921 ZDHHC5 zinc finger DHHC-type palmitoyltransferase 5 Novel U 0.0027205726972905327 -0.27218157182159536 1.0 9149 +5325 PLAGL1 PLAG1 like zinc finger 1 Novel U 0.002718724525741731 -0.2721975061919306 1.0 9150 +261734 NPHP4 nephrocystin 4 Novel U 0.0027179711509312137 -0.272204001559333 1.0 9151 +286144 TRIQK triple QxxK/R motif containing Novel U 0.002717632123641567 -0.27220692454902545 1.0 9152 +414 ARSD arylsulfatase D Novel U 0.0027174683758659952 -0.2722083363323089 1.0 9153 +83795 KCNK16 potassium two pore domain channel subfamily K member 16 Novel N 0.002716816220664221 -0.27221395901517503 1.0 9154 +9696 CROCC ciliary rootlet coiled-coil, rootletin Novel U 0.0027156363053754775 -0.2722241318842398 1.0 9155 +5597 MAPK6 mitogen-activated protein kinase 6 Novel N 0.0027142305148499797 -0.2722362521805735 1.0 9156 +128366 OR6P1 olfactory receptor family 6 subfamily P member 1 Novel U 0.0027139490081856494 -0.2722386792450115 1.0 9157 +388341 LRRC75A leucine rich repeat containing 75A Novel U 0.002712862244751621 -0.2722480489872499 1.0 9158 +79178 THTPA thiamine triphosphatase Novel N 0.0027121912611390536 -0.2722538340029204 1.0 9159 +140700 SAMD10 sterile alpha motif domain containing 10 Novel U 0.002711556740187069 -0.27225930464867343 1.0 9160 +55905 RNF114 ring finger protein 114 Novel U 0.0027109186756914976 -0.2722648058457765 1.0 9161 +11077 HSF2BP heat shock transcription factor 2 binding protein Novel N 0.0027089979226216625 -0.2722813659918069 1.0 9162 +22822 PHLDA1 pleckstrin homology like domain family A member 1 Novel U 0.002708162250596805 -0.2722885709006432 1.0 9163 +4054 LTBP3 latent transforming growth factor beta binding protein 3 Novel U 0.0027078552800559154 -0.2722912175068436 1.0 9164 +134265 AFAP1L1 actin filament associated protein 1 like 1 Novel U 0.0027078176546144516 -0.27229154190190247 1.0 9165 +100287932 TIMM23 translocase of inner mitochondrial membrane 23 Novel U 0.0027063128349683083 -0.27230451599705346 1.0 9166 +10262 SF3B4 splicing factor 3b subunit 4 Novel U 0.002706137432973348 -0.2723060282594552 1.0 9167 +642475 MROH6 maestro heat like repeat family member 6 Novel U 0.002705158019990125 -0.27231447245891055 1.0 9168 +145773 FAM81A family with sequence similarity 81 member A Novel U 0.0027047517420515366 -0.27231797526314794 1.0 9169 +124936 CYB5D2 cytochrome b5 domain containing 2 Novel U 0.0027045297690572547 -0.27231988904647486 1.0 9170 +54906 TASOR2 transcription activation suppressor family member 2 Novel U 0.002704203587333028 -0.2723227012856275 1.0 9171 +23255 MTCL1 microtubule crosslinking factor 1 Novel U 0.002700435773187346 -0.2723551862278347 1.0 9172 +57214 CEMIP cell migration inducing hyaluronidase 1 Novel U 0.0026998134471996438 -0.2723605517323323 1.0 9173 +144983 HNRNPA1L2 heterogeneous nuclear ribonucleoprotein A1 like 2 Novel U 0.0026972622446060812 -0.2723825474215054 1.0 9174 +63036 CELA2A chymotrypsin like elastase 2A Novel U 0.0026968636211510072 -0.27238598423112503 1.0 9175 +151827 LRRC34 leucine rich repeat containing 34 Novel U 0.0026967960070682605 -0.2723865671790851 1.0 9176 +83852 SETDB2 SET domain bifurcated histone lysine methyltransferase 2 Novel U 0.002696443596532047 -0.2723896055550399 1.0 9177 +154790 CLEC2L C-type lectin domain family 2 member L Novel U 0.0026954843361191964 -0.27239787600519166 1.0 9178 +5763 PTMS parathymosin Novel N 0.0026950881799562934 -0.2724012915425721 1.0 9179 +140901 STK35 serine/threonine kinase 35 Novel U 0.0026949086296607547 -0.27240283957035377 1.0 9180 +4128 MAOA monoamine oxidase A Novel U 0.002694888178613902 -0.2724030158930304 1.0 9181 +10432 RBM14 RNA binding motif protein 14 Novel U 0.002693256695648246 -0.2724170820406168 1.0 9182 +3131 HLF HLF transcription factor, PAR bZIP family member Novel N 0.0026897454049232836 -0.2724473553162782 1.0 9183 +7707 ZNF148 zinc finger protein 148 Novel U 0.002689143399262326 -0.272452545625128 1.0 9184 +55696 RBM22 RNA binding motif protein 22 Novel U 0.0026885048154202946 -0.2724580512998775 1.0 9185 +3430 IFI35 interferon induced protein 35 Novel U 0.002688125135843184 -0.2724613247811701 1.0 9186 +7543 ZFX zinc finger protein X-linked Novel N 0.0026877242297940443 -0.2724647812706181 1.0 9187 +4957 ODF2 outer dense fiber of sperm tails 2 Novel N 0.0026877014296400378 -0.27246497784657875 1.0 9188 +57541 ZNF398 zinc finger protein 398 Novel U 0.0026870294204330934 -0.2724707717046106 1.0 9189 +493 ATP2B4 ATPase plasma membrane Ca2+ transporting 4 Novel U 0.0026849172300354093 -0.27248898236478286 1.0 9190 +8510 MMP23B matrix metallopeptidase 23B Novel U 0.002684658964382573 -0.2724912090523216 1.0 9191 +27136 MORC1 MORC family CW-type zinc finger 1 Novel U 0.0026836866854867236 -0.2724995917438557 1.0 9192 +84991 RBM17 RNA binding motif protein 17 Novel N 0.002683354855383699 -0.27250245268160433 1.0 9193 +148932 MOB3C MOB kinase activator 3C Novel U 0.0026831378877513632 -0.27250432331023006 1.0 9194 +6520 SLC3A2 solute carrier family 3 member 2 Novel U 0.0026831130171401578 -0.27250453773704 1.0 9195 +9203 ZMYM3 zinc finger MYM-type containing 3 Novel U 0.002682931216020658 -0.2725061051707381 1.0 9196 +6492 SIM1 SIM bHLH transcription factor 1 Novel U 0.002682772798992416 -0.272507470993947 1.0 9197 +54946 SLC41A3 solute carrier family 41 member 3 Novel N 0.0026814641294336927 -0.27251875394298314 1.0 9198 +64784 CRTC3 CREB regulated transcription coactivator 3 Novel N 0.0026796243600884025 -0.2725346158720873 1.0 9199 +65267 WNK3 WNK lysine deficient protein kinase 3 Novel U 0.002678846168887769 -0.2725413251988219 1.0 9200 +1258 CNGB1 cyclic nucleotide gated channel subunit beta 1 Novel N 0.002678055183516267 -0.27254814483298817 1.0 9201 +1264 CNN1 calponin 1 Novel N 0.0026778171772124573 -0.2725501968506104 1.0 9202 +114928 GPRASP2 G protein-coupled receptor associated sorting protein 2 Novel U 0.002677500934620915 -0.2725529233975983 1.0 9203 +653140 FAM228A family with sequence similarity 228 member A Novel U 0.0026771143375947204 -0.27255625651902304 1.0 9204 +5111 PCNA proliferating cell nuclear antigen Novel U 0.0026759114806379053 -0.2725666271841394 1.0 9205 +200916 RPL22L1 ribosomal protein L22 like 1 Novel U 0.002675260600183283 -0.27257223887652515 1.0 9206 +9616 RNF7 ring finger protein 7 Novel N 0.0026750044284154168 -0.2725744475112275 1.0 9207 +148327 CREB3L4 cAMP responsive element binding protein 3 like 4 Novel N 0.0026745323453384786 -0.2725785176672592 1.0 9208 +23731 TMEM245 transmembrane protein 245 Novel U 0.002673310101491822 -0.27258905548021567 1.0 9209 +11161 ERG28 ergosterol biosynthesis 28 homolog Novel U 0.0026730908046282845 -0.272590946190761 1.0 9210 +9016 SLC25A14 solute carrier family 25 member 14 Novel N 0.0026721166972974103 -0.27259934464650315 1.0 9211 +5704 PSMC4 proteasome 26S subunit, ATPase 4 Novel N 0.0026711194688501774 -0.2726079424454452 1.0 9212 +728229 TMEM191B transmembrane protein 191B Novel U 0.00266907485853253 -0.27262557045081837 1.0 9213 +55362 TMEM63B transmembrane protein 63B Novel U 0.0026689448006769903 -0.27262669176990617 1.0 9214 +1523 CUX1 cut like homeobox 1 Novel U 0.002668135096518 -0.2726336727917381 1.0 9215 +84679 SLC9A7 solute carrier family 9 member A7 Novel U 0.0026679012902116675 -0.2726356885982655 1.0 9216 +92104 IFT70A intraflagellar transport 70A Novel U 0.0026672377841517442 -0.27264140914476204 1.0 9217 +1292 COL6A2 collagen type VI alpha 2 chain Novel U 0.0026672216820467307 -0.27264154797219103 1.0 9218 +6928 HNF1B HNF1 homeobox B Novel U 0.0026663159364994572 -0.2726493570335247 1.0 9219 +79676 OGFOD2 2-oxoglutarate and iron dependent oxygenase domain containing 2 Novel U 0.002666101793244045 -0.27265120331123566 1.0 9220 +57458 TMCC3 transmembrane and coiled-coil domain family 3 Novel U 0.0026660940018600927 -0.2726512704861673 1.0 9221 +84142 ABRAXAS1 abraxas 1, BRCA1 A complex subunit Novel U 0.0026655327566553508 -0.272656109370819 1.0 9222 +83881 MIXL1 Mix paired-like homeobox Novel U 0.0026641344161189955 -0.2726681654356229 1.0 9223 +23081 KDM4C lysine demethylase 4C Novel U 0.0026640696094948155 -0.2726687241785332 1.0 9224 +23030 KDM4B lysine demethylase 4B Novel N 0.0026637621658769308 -0.27267137486345894 1.0 9225 +340252 ZNF680 zinc finger protein 680 Novel U 0.0026637479023137126 -0.27267149783954236 1.0 9226 +284417 TMEM150B transmembrane protein 150B Novel U 0.002662879421479746 -0.27267898561590515 1.0 9227 +2140 EYA3 EYA transcriptional coactivator and phosphatase 3 Novel N 0.0026623425989379173 -0.27268361393582025 1.0 9228 +4837 NNMT nicotinamide N-methyltransferase Novel N 0.0026622712799596803 -0.2726842288262572 1.0 9229 +7764 ZNF217 zinc finger protein 217 Novel N 0.002660501888344226 -0.2726994839800805 1.0 9230 +996 CDC27 cell division cycle 27 Novel U 0.0026603111673497606 -0.27270112831821486 1.0 9231 +54438 GFOD1 Gfo/Idh/MocA-like oxidoreductase domain containing 1 Novel U 0.002658893560956154 -0.2727133504873528 1.0 9232 +283310 OTOGL otogelin like Novel N 0.0026562878058949573 -0.27273581651123197 1.0 9233 +55646 LYAR Ly1 antibody reactive Novel U 0.0026545941569770105 -0.27275041863466254 1.0 9234 +9500 MAGED1 MAGE family member D1 Novel N 0.00265381573282805 -0.27275712996980644 1.0 9235 +388364 TMIGD1 transmembrane and immunoglobulin domain containing 1 Novel N 0.0026536729311386286 -0.27275836116233576 1.0 9236 +1471 CST3 cystatin C Novel U 0.0026532623042027858 -0.2727619014622985 1.0 9237 +27315 PGAP2 post-GPI attachment to proteins 2 Novel U 0.002653159351753327 -0.2727627890868578 1.0 9238 +10061 ABCF2 ATP binding cassette subfamily F member 2 Novel U 0.002653155171870861 -0.2727628251245272 1.0 9239 +113 ADCY7 adenylate cyclase 7 Novel N 0.0026519379913401858 -0.2727733192831205 1.0 9240 +22983 MAST1 microtubule associated serine/threonine kinase 1 Novel N 0.0026516741031863823 -0.2727755944461444 1.0 9241 +79086 SMIM7 small integral membrane protein 7 Novel U 0.002650709837779583 -0.27278390804782465 1.0 9242 +1441 CSF3R colony stimulating factor 3 receptor Novel U 0.002650644339396613 -0.27278447275486783 1.0 9243 +5695 PSMB7 proteasome 20S subunit beta 7 Novel U 0.0026501790032839112 -0.2727884847406356 1.0 9244 +10169 SERF2 small EDRK-rich factor 2 Novel N 0.002650120610840796 -0.2727889881824368 1.0 9245 +3697 ITIH1 inter-alpha-trypsin inhibitor heavy chain 1 Novel U 0.0026486149436038397 -0.2728019695852567 1.0 9246 +79811 SLTM SAFB like transcription modulator Novel U 0.002645939617562466 -0.27282503542886766 1.0 9247 +1143 CHRNB4 cholinergic receptor nicotinic beta 4 subunit Novel N 0.0026450171536671033 -0.27283298863068983 1.0 9248 +63925 ZNF335 zinc finger protein 335 Novel U 0.0026449035715429814 -0.27283396790105596 1.0 9249 +5691 PSMB3 proteasome 20S subunit beta 3 Novel U 0.0026448574368359806 -0.27283436566040203 1.0 9250 +80022 MYO15B myosin XVB Novel U 0.0026440215459637055 -0.2728415724560738 1.0 9251 +340900 EBLN1 endogenous Bornavirus like nucleoprotein 1 Novel U 0.0026439599150663204 -0.2728421038188381 1.0 9252 +54973 INTS11 integrator complex subunit 11 Novel N 0.0026439238392477883 -0.27284241485352156 1.0 9253 +29923 HILPDA hypoxia inducible lipid droplet associated Novel U 0.0026410500795822295 -0.27286719153120353 1.0 9254 +84811 BUD13 BUD13 homolog Novel N 0.0026404550484916025 -0.2728723217074392 1.0 9255 +3426 CFI complement factor I Novel U 0.002640204320092634 -0.2728744834110783 1.0 9256 +5198 PFAS phosphoribosylformylglycinamidine synthase Novel N 0.0026398409378278276 -0.27287761638192426 1.0 9257 +347240 KIF24 kinesin family member 24 Novel U 0.0026389222556803494 -0.2728855369786718 1.0 9258 +128312 H2BC26 H2B clustered histone 26 Novel U 0.0026385673767458095 -0.2728885966364026 1.0 9259 +50945 TBX22 T-box transcription factor 22 Novel U 0.002638490915662494 -0.27288925586049817 1.0 9260 +3090 HIC1 HIC ZBTB transcriptional repressor 1 Novel N 0.0026374234162704325 -0.2728984595140534 1.0 9261 +4289 MKLN1 muskelin 1 Novel U 0.002637279485643539 -0.2728997004399366 1.0 9262 +92340 PRR29 proline rich 29 Novel U 0.0026371258612673193 -0.27290102494236435 1.0 9263 +54939 COMMD4 COMM domain containing 4 Novel U 0.002636077506656075 -0.2729100635354696 1.0 9264 +79870 BAALC BAALC binder of MAP3K1 and KLF4 Novel U 0.0026353609142120305 -0.27291624177654805 1.0 9265 +170575 GIMAP1 GTPase, IMAP family member 1 Novel U 0.0026350945824968833 -0.2729185380072112 1.0 9266 +11227 GALNT5 polypeptide N-acetylgalactosaminyltransferase 5 Novel N 0.002635054283701593 -0.2729188854511098 1.0 9267 +2224 FDPS farnesyl diphosphate synthase Novel N 0.002633584381041533 -0.2729315585026766 1.0 9268 +7175 TPR translocated promoter region, nuclear basket protein Novel U 0.0026333847707208833 -0.2729332794818649 1.0 9269 +64220 STRA6 signaling receptor and transporter of retinol STRA6 Novel U 0.002632493485082592 -0.272940963874282 1.0 9270 +1823 DSC1 desmocollin 1 Novel U 0.0026300112590337842 -0.272962364868764 1.0 9271 +2023 ENO1 enolase 1 Novel N 0.002629343015861755 -0.2729681262571935 1.0 9272 +391714 TRIM75 tripartite motif containing 75 Novel U 0.0026281789940699562 -0.27297816209738435 1.0 9273 +58488 PCTP phosphatidylcholine transfer protein Novel N 0.002627714216817435 -0.2729821692648304 1.0 9274 +64714 PDIA2 protein disulfide isomerase family A member 2 Novel U 0.0026265183319146316 -0.2729924798190276 1.0 9275 +23066 CAND2 cullin associated and neddylation dissociated 2 (putative) Novel U 0.002626505568316521 -0.2729925898628702 1.0 9276 +259290 TAS2R31 taste 2 receptor member 31 Novel N 0.002626240671130609 -0.27299487372546066 1.0 9277 +5521 PPP2R2B protein phosphatase 2 regulatory subunit Bbeta Novel N 0.0026243086946290627 -0.2730115306364897 1.0 9278 +51074 APIP APAF1 interacting protein Novel U 0.002624045942071158 -0.27301379600875286 1.0 9279 +84553 FAXC failed axon connections homolog, metaxin like GST domain containing Novel U 0.002623523716114942 -0.27301829848136716 1.0 9280 +5593 PRKG2 protein kinase cGMP-dependent 2 Novel U 0.0026232599938449726 -0.2730205722141914 1.0 9281 +116511 MAS1L MAS1 proto-oncogene like, G protein-coupled receptor Novel U 0.002623225203917624 -0.27302087216231397 1.0 9282 +1031 CDKN2C cyclin dependent kinase inhibitor 2C Novel U 0.002622822588828419 -0.27302434338658327 1.0 9283 +161436 EML5 EMAP like 5 Novel U 0.002621277201288875 -0.27303766724571454 1.0 9284 +5201 PFDN1 prefoldin subunit 1 Novel U 0.0026196930006101033 -0.27305132573987184 1.0 9285 +10210 TOPORS TOP1 binding arginine/serine rich protein, E3 ubiquitin ligase Novel U 0.0026195976977753314 -0.27305214741179085 1.0 9286 +57482 CRACD capping protein inhibiting regulator of actin dynamics Novel U 0.0026193007302107952 -0.27305470777538593 1.0 9287 +55655 NLRP2 NLR family pyrin domain containing 2 Novel U 0.0026190303444708547 -0.273057038958612 1.0 9288 +60561 RINT1 RAD50 interactor 1 Novel U 0.002615118836324863 -0.27309076278658034 1.0 9289 +23612 PHLDA3 pleckstrin homology like domain family A member 3 Novel U 0.0026141815324054844 -0.2730988439345548 1.0 9290 +57643 ZSWIM5 zinc finger SWIM-type containing 5 Novel U 0.0026127233813126407 -0.2731114156677001 1.0 9291 +8646 CHRD chordin Novel U 0.002612513265428244 -0.27311322722264875 1.0 9292 +727910 TLCD2 TLC domain containing 2 Novel U 0.0026119531393853338 -0.2731180564582292 1.0 9293 +6128 RPL6 ribosomal protein L6 Novel N 0.00261112096589153 -0.27312523120379983 1.0 9294 +84867 PTPN5 protein tyrosine phosphatase non-receptor type 5 Novel N 0.0026111026519578524 -0.27312538910093964 1.0 9295 +84061 MAGT1 magnesium transporter 1 Novel U 0.002610466587774777 -0.2731308730519596 1.0 9296 +7021 TFAP2B transcription factor AP-2 beta Novel U 0.0026104280688583844 -0.27313120515028627 1.0 9297 +89857 KLHL6 kelch like family member 6 Novel U 0.0026090665235436166 -0.27314294397793343 1.0 9298 +6239 RREB1 ras responsive element binding protein 1 Novel U 0.002608608187275735 -0.2731468956131781 1.0 9299 +142679 DUSP19 dual specificity phosphatase 19 Novel U 0.0026078853382505577 -0.2731531277965873 1.0 9300 +51512 GTSE1 G2 and S-phase expressed 1 Novel U 0.002606142195580605 -0.27316815664002353 1.0 9301 +645191 LINGO3 leucine rich repeat and Ig domain containing 3 Novel U 0.0026060208594364683 -0.27316920276318074 1.0 9302 +80125 CCDC33 coiled-coil domain containing 33 Novel U 0.002605931758053589 -0.2731699709680766 1.0 9303 +123346 HIGD2B HIG1 hypoxia inducible domain family member 2B Novel U 0.0026053620977505676 -0.27317488240513427 1.0 9304 +27148 STK36 serine/threonine kinase 36 Novel U 0.002603929153303887 -0.27318723681427887 1.0 9305 +53335 BCL11A BCL11 transcription factor A Novel U 0.0026038857457781625 -0.27318761106070133 1.0 9306 +10076 PTPRU protein tyrosine phosphatase receptor type U Novel U 0.0026036801640648886 -0.2731893835234121 1.0 9307 +59351 PBOV1 prostate and breast cancer overexpressed 1 Novel U 0.0026032428381601892 -0.2731931540137258 1.0 9308 +9749 PHACTR2 phosphatase and actin regulator 2 Novel U 0.0026025570718574164 -0.273199066481234 1.0 9309 +54487 DGCR8 DGCR8 microprocessor complex subunit Novel U 0.0026020176110207525 -0.27320371754772094 1.0 9310 +1454 CSNK1E casein kinase 1 epsilon Novel U 0.0026018829352077674 -0.2732048786814267 1.0 9311 +119 ADD2 adducin 2 Novel U 0.00259979031923849 -0.27322292057685876 1.0 9312 +164118 TTC24 tetratricopeptide repeat domain 24 Novel U 0.002599060007957048 -0.2732292170975611 1.0 9313 +246184 CDC26 cell division cycle 26 Novel U 0.00259698644091449 -0.2732470947589679 1.0 9314 +90293 KLHL13 kelch like family member 13 Novel U 0.002596485517023558 -0.27325141357168475 1.0 9315 +348487 FAM131C family with sequence similarity 131 member C Novel U 0.002594997620897954 -0.2732642417574131 1.0 9316 +378884 NHLRC1 NHL repeat containing E3 ubiquitin protein ligase 1 Novel U 0.002593976643423475 -0.2732730443132109 1.0 9317 +440686 H3-7 H3.7 histone (putative) Novel U 0.0025930740159783305 -0.2732808264912209 1.0 9318 +25789 TMEM59L transmembrane protein 59 like Novel U 0.0025922927253128193 -0.27328756254059455 1.0 9319 +10767 HBS1L HBS1 like translational GTPase Novel U 0.002592259637186526 -0.2732878478163085 1.0 9320 +85366 MYLK2 myosin light chain kinase 2 Novel U 0.0025920859476454517 -0.27328934531445614 1.0 9321 +83875 BCO2 beta-carotene oxygenase 2 Novel N 0.0025909632812820453 -0.27329902460078054 1.0 9322 +3843 IPO5 importin 5 Novel U 0.0025900657214172505 -0.2733067630876613 1.0 9323 +170690 ADAMTS16 ADAM metallopeptidase with thrombospondin type 1 motif 16 Novel U 0.0025891060572738054 -0.2733150370186549 1.0 9324 +79922 MRM1 mitochondrial rRNA methyltransferase 1 Novel N 0.0025878830917424405 -0.2733255810537564 1.0 9325 +1468 SLC25A10 solute carrier family 25 member 10 Novel N 0.002587118658546572 -0.27333217176317803 1.0 9326 +6326 SCN2A sodium voltage-gated channel alpha subunit 2 Novel U 0.0025862014976115147 -0.2733400792444969 1.0 9327 +153129 SLC38A9 solute carrier family 38 member 9 Novel N 0.0025856637432620055 -0.2733447155981731 1.0 9328 +4849 CNOT3 CCR4-NOT transcription complex subunit 3 Novel U 0.002585580097952327 -0.2733454367624731 1.0 9329 +9640 ZNF592 zinc finger protein 592 Novel N 0.002583798816001925 -0.27336079443113087 1.0 9330 +23531 MMD monocyte to macrophage differentiation associated Novel U 0.002583466087931321 -0.2733636631108816 1.0 9331 +7767 ZNF224 zinc finger protein 224 Novel N 0.00258301679245156 -0.2733675367992138 1.0 9332 +4990 SIX6 SIX homeobox 6 Novel N 0.0025816323276632103 -0.27337947323155853 1.0 9333 +5949 RBP3 retinol binding protein 3 Novel N 0.002580846628599898 -0.2733862472887909 1.0 9334 +54986 ULK4 unc-51 like kinase 4 Novel U 0.0025807525795771414 -0.27338705815072595 1.0 9335 +27132 CPNE7 copine 7 Novel N 0.0025782966089410303 -0.2734082327790627 1.0 9336 +11325 DDX42 DEAD-box helicase 42 Novel N 0.002577785556512269 -0.2734126389169377 1.0 9337 +79572 ATP13A3 ATPase 13A3 Novel N 0.002577391446514087 -0.27341603681291105 1.0 9338 +84914 ZNF587 zinc finger protein 587 Novel U 0.002577377379813528 -0.27341615809170483 1.0 9339 +221303 FAM162B family with sequence similarity 162 member B Novel U 0.002576510343559997 -0.27342363341333653 1.0 9340 +113146 AHNAK2 AHNAK nucleoprotein 2 Novel U 0.002575599699308568 -0.27343148470980055 1.0 9341 +9132 KCNQ4 potassium voltage-gated channel subfamily Q member 4 Novel N 0.002575038142409947 -0.27343632628178166 1.0 9342 +29102 DROSHA drosha ribonuclease III Novel N 0.002574879915666722 -0.2734376904644113 1.0 9343 +6282 S100A11 S100 calcium binding protein A11 Novel N 0.0025740572821462415 -0.2734447829592471 1.0 9344 +607 BCL9 BCL9 transcription coactivator Novel N 0.002574010113394426 -0.2734451896338116 1.0 9345 +644 BLVRA biliverdin reductase A Novel U 0.0025728566123753814 -0.2734551347671145 1.0 9346 +441027 TMEM150C transmembrane protein 150C Novel U 0.0025720686745223623 -0.27346192812650766 1.0 9347 +22859 ADGRL1 adhesion G protein-coupled receptor L1 Novel N 0.0025711654701701457 -0.27346971527843417 1.0 9348 +80028 FBXL18 F-box and leucine rich repeat protein 18 Novel U 0.0025695288539629565 -0.27348382568326046 1.0 9349 +2313 FLI1 Fli-1 proto-oncogene, ETS transcription factor Novel U 0.0025689625666158477 -0.2734887080397229 1.0 9350 +92106 OXNAD1 oxidoreductase NAD binding domain containing 1 Novel U 0.0025686113573900604 -0.27349173605834626 1.0 9351 +64232 MS4A5 membrane spanning 4-domains A5 Novel U 0.0025668288979568297 -0.2735071038789012 1.0 9352 +54112 GPR88 G protein-coupled receptor 88 Novel N 0.0025659643305657297 -0.27351455791475543 1.0 9353 +30012 TLX3 T cell leukemia homeobox 3 Novel U 0.0025659137989073803 -0.2735149935832724 1.0 9354 +10054 UBA2 ubiquitin like modifier activating enzyme 2 Novel N 0.0025635615706443597 -0.27353527377656967 1.0 9355 +55159 RFWD3 ring finger and WD repeat domain 3 Novel U 0.0025624799003377743 -0.27354459960741956 1.0 9356 +51665 ASB1 ankyrin repeat and SOCS box containing 1 Novel N 0.0025615650338155008 -0.2735524873070126 1.0 9357 +3619 INCENP inner centromere protein Novel U 0.0025609619077384977 -0.27355768727574714 1.0 9358 +144245 ALG10B ALG10 alpha-1,2-glucosyltransferase B Novel U 0.002560281653636802 -0.273563552218742 1.0 9359 +90488 TMEM263 transmembrane protein 263 Novel U 0.0025597508430642386 -0.27356812870529523 1.0 9360 +8639 AOC3 amine oxidase copper containing 3 Novel N 0.0025588678569147083 -0.2735757415420563 1.0 9361 +2159 F10 coagulation factor X Novel U 0.0025586421704141956 -0.27357768734209914 1.0 9362 +283989 TSEN54 tRNA splicing endonuclease subunit 54 Novel N 0.0025553554515808604 -0.27360602442753496 1.0 9363 +10982 MAPRE2 microtubule associated protein RP/EB family member 2 Novel N 0.0025552335116590407 -0.27360707575627885 1.0 9364 +10465 PPIH peptidylprolyl isomerase H Novel N 0.002554236638905729 -0.27361567048853663 1.0 9365 +8233 ZRSR2 zinc finger CCCH-type, RNA binding motif and serine/arginine rich 2 Novel N 0.0025529983118614693 -0.27362634696590815 1.0 9366 +140564 APOBEC3D apolipoprotein B mRNA editing enzyme catalytic subunit 3D Novel N 0.0025529197545030675 -0.273627024263447 1.0 9367 +10105 PPIF peptidylprolyl isomerase F Novel N 0.002552916423445095 -0.2736270529828109 1.0 9368 +23590 PDSS1 decaprenyl diphosphate synthase subunit 1 Novel U 0.0025526299083094063 -0.2736295232287584 1.0 9369 +8603 FAM193A family with sequence similarity 193 member A Novel U 0.002552616182316162 -0.2736296415700778 1.0 9370 +1936 EEF1D eukaryotic translation elongation factor 1 delta Novel U 0.0025522772338908597 -0.273632563879826 1.0 9371 +84684 INSM2 INSM transcriptional repressor 2 Novel U 0.002552237133678048 -0.27363290961160713 1.0 9372 +55839 CENPN centromere protein N Novel U 0.002551832468943384 -0.27363639850729327 1.0 9373 +81341 OR10W1 olfactory receptor family 10 subfamily W member 1 Novel U 0.0025500359674719745 -0.2736518873940104 1.0 9374 +84182 MINDY4 MINDY lysine 48 deubiquitinase 4 Novel U 0.002549656074717029 -0.2736551627132571 1.0 9375 +51729 WBP11 WW domain binding protein 11 Novel U 0.002548976772313998 -0.27366101945099697 1.0 9376 +152405 TEX55 testis expressed 55 Novel U 0.0025478855875732264 -0.27367042731239105 1.0 9377 +2729 GCLC glutamate-cysteine ligase catalytic subunit Novel U 0.002547218829181853 -0.27367617589949556 1.0 9378 +728317 PWWP4 PWWP domain containing 4 Novel U 0.0025471601428977346 -0.27367668187470406 1.0 9379 +4694 NDUFA1 NADH:ubiquinone oxidoreductase subunit A1 Novel N 0.0025466474882889327 -0.27368110182608574 1.0 9380 +56660 KCNK12 potassium two pore domain channel subfamily K member 12 Novel U 0.002546639274592531 -0.2736811726420662 1.0 9381 +2901 GRIK5 glutamate ionotropic receptor kainate type subunit 5 Novel U 0.002546612744059752 -0.2736814013802127 1.0 9382 +93380 MMGT1 membrane magnesium transporter 1 Novel U 0.0025464902355553645 -0.27368245761110177 1.0 9383 +154743 BMT2 base methyltransferase of 25S rRNA 2 homolog Novel N 0.002546297897604181 -0.27368411589014285 1.0 9384 +9833 MELK maternal embryonic leucine zipper kinase Novel U 0.002545602072116211 -0.27369011508487195 1.0 9385 +128710 SLX4IP SLX4 interacting protein Novel U 0.0025448541763385436 -0.2736965632137274 1.0 9386 +10390 CEPT1 choline/ethanolamine phosphotransferase 1 Novel N 0.0025442491272815856 -0.27370177976180743 1.0 9387 +80835 TAS1R1 taste 1 receptor member 1 Novel N 0.002543740036079467 -0.2737061689905856 1.0 9388 +389827 MYMK myomaker, myoblast fusion factor Novel U 0.002541922062855782 -0.2737218430001896 1.0 9389 +5515 PPP2CA protein phosphatase 2 catalytic subunit alpha Novel U 0.002540842147037578 -0.2737311537043769 1.0 9390 +64857 PLEKHG2 pleckstrin homology and RhoGEF domain containing G2 Novel U 0.00254054548857159 -0.27373371140301866 1.0 9391 +5269 SERPINB6 serpin family B member 6 Novel U 0.0025404864899078927 -0.27373422007146847 1.0 9392 +84701 COX4I2 cytochrome c oxidase subunit 4I2 Novel U 0.002538515466353514 -0.2737512136342551 1.0 9393 +1594 CYP27B1 cytochrome P450 family 27 subfamily B member 1 Novel U 0.0025379405685079 -0.27375617022780446 1.0 9394 +55105 GPATCH2 G-patch domain containing 2 Novel U 0.0025374406985224428 -0.2737604799540704 1.0 9395 +374946 DRAXIN dorsal inhibitory axon guidance protein Novel U 0.0025358103172541425 -0.2737745366031589 1.0 9396 +10345 TRDN triadin Novel U 0.0025356785890272133 -0.27377567232367833 1.0 9397 +101929469 TEX52 testis expressed 52 Novel U 0.0025354856169454727 -0.2737773360699993 1.0 9398 +341880 SLC35F4 solute carrier family 35 member F4 Novel U 0.002534465972963901 -0.27378612712882877 1.0 9399 +27286 SRPX2 sushi repeat containing protein X-linked 2 Novel U 0.002533497884088295 -0.2737944736952887 1.0 9400 +93487 MAPK1IP1L mitogen-activated protein kinase 1 interacting protein 1 like Novel U 0.002532738977358696 -0.27380101675720697 1.0 9401 +80177 MYCT1 MYC target 1 Novel U 0.0025313095649097824 -0.2738133407145461 1.0 9402 +6999 TDO2 tryptophan 2,3-dioxygenase Novel U 0.0025307559427699146 -0.27381811387546195 1.0 9403 +602 BCL3 BCL3 transcription coactivator Novel U 0.0025302603342163567 -0.2738223868609642 1.0 9404 +7629 ZNF76 zinc finger protein 76 Novel N 0.0025280529013412163 -0.27384141867267325 1.0 9405 +5139 PDE3A phosphodiesterase 3A Novel U 0.002526180119929952 -0.2738575652217225 1.0 9406 +440603 BCL2L15 BCL2 like 15 Novel U 0.0025261684149187813 -0.273857666138752 1.0 9407 +5569 PKIA cAMP-dependent protein kinase inhibitor alpha Novel U 0.002524639725779008 -0.27387084602938305 1.0 9408 +119682 OR51L1 olfactory receptor family 51 subfamily L member 1 Novel U 0.002523978774806811 -0.273876544546694 1.0 9409 +140801 RPL10L ribosomal protein L10 like Novel N 0.002523678893069173 -0.273879130035399 1.0 9410 +54461 FBXW5 F-box and WD repeat domain containing 5 Novel U 0.0025235579990077754 -0.273880172347054 1.0 9411 +344658 SAMD7 sterile alpha motif domain containing 7 Novel U 0.0025234930830304344 -0.2738807320327738 1.0 9412 +401944 LDLRAD2 low density lipoprotein receptor class A domain containing 2 Novel U 0.002522163572270822 -0.2738921946682754 1.0 9413 +283848 CES4A carboxylesterase 4A Novel U 0.002522002683288692 -0.2738935818039154 1.0 9414 +26036 ZNF451 zinc finger protein 451 Novel U 0.0025215495158111218 -0.2738974888754295 1.0 9415 +24148 PRPF6 pre-mRNA processing factor 6 Novel N 0.0025213816772788732 -0.27389893592796694 1.0 9416 +26160 IFT172 intraflagellar transport 172 Novel N 0.0025206004687770536 -0.2739056712689504 1.0 9417 +89839 ARHGAP11B Rho GTPase activating protein 11B Novel U 0.002518254397707573 -0.2739258983768064 1.0 9418 +57823 SLAMF7 SLAM family member 7 Novel U 0.0025165909668613744 -0.2739402399692563 1.0 9419 +25802 LMOD1 leiomodin 1 Novel U 0.0025161089438547274 -0.27394439582432456 1.0 9420 +5252 PHF1 PHD finger protein 1 Novel N 0.002516104067689261 -0.2739444378651332 1.0 9421 +26227 PHGDH phosphoglycerate dehydrogenase Novel U 0.00251582131494077 -0.27394687567292797 1.0 9422 +120114 FAT3 FAT atypical cadherin 3 Novel U 0.0025153487617167137 -0.27395094988242447 1.0 9423 +58505 OSTC oligosaccharyltransferase complex non-catalytic subunit Novel N 0.0025148869059186812 -0.2739549318619826 1.0 9424 +84966 IGSF21 immunoglobin superfamily member 21 Novel U 0.002514800742821683 -0.2739556747338755 1.0 9425 +51523 CXXC5 CXXC finger protein 5 Novel N 0.0025140889582165025 -0.27396181152323645 1.0 9426 +2922 GRP gastrin releasing peptide Novel N 0.00251358734575464 -0.27396613627260147 1.0 9427 +56903 PAPOLB poly(A) polymerase beta Novel U 0.0025128785159501035 -0.2739722475865742 1.0 9428 +56648 EIF5A2 eukaryotic translation initiation factor 5A2 Novel U 0.002512876092945908 -0.273972268476976 1.0 9429 +3730 ANOS1 anosmin 1 Novel N 0.0025118252117207695 -0.2739813288537741 1.0 9430 +728763 CROCC2 ciliary rootlet coiled-coil, rootletin family member 2 Novel U 0.002511006858750556 -0.27398838444301354 1.0 9431 +84069 PLEKHN1 pleckstrin homology domain containing N1 Novel N 0.0025108731973445043 -0.2739895368308127 1.0 9432 +127255 LRRIQ3 leucine rich repeats and IQ motif containing 3 Novel U 0.002509048334494293 -0.2740052702406713 1.0 9433 +389840 MAP3K15 mitogen-activated protein kinase kinase kinase 15 Novel U 0.0025089623173901498 -0.27400601185385837 1.0 9434 +4953 ODC1 ornithine decarboxylase 1 Novel U 0.0025081297604868896 -0.2740131899050682 1.0 9435 +57393 CLTRN collectrin, amino acid transport regulator Novel U 0.0025074010832370586 -0.27401947233764934 1.0 9436 +9573 GDF3 growth differentiation factor 3 Novel U 0.002506828710411873 -0.27402440716124415 1.0 9437 +256949 KANK3 KN motif and ankyrin repeat domains 3 Novel U 0.0025059877139854427 -0.27403165797544377 1.0 9438 +51200 CPA4 carboxypeptidase A4 Novel U 0.002505467528573834 -0.274036142855106 1.0 9439 +10516 FBLN5 fibulin 5 Novel U 0.0025046939114142285 -0.2740428127458566 1.0 9440 +57182 ANKRD50 ankyrin repeat domain containing 50 Novel U 0.0025041697779169987 -0.2740473316647067 1.0 9441 +29974 A1CF APOBEC1 complementation factor Novel N 0.0025039054192578718 -0.27404961088428376 1.0 9442 +11326 VSIG4 V-set and immunoglobulin domain containing 4 Novel U 0.0025039023859017087 -0.2740496370369537 1.0 9443 +51645 PPIL1 peptidylprolyl isomerase like 1 Novel U 0.0025033424581440834 -0.27405446456297894 1.0 9444 +4071 TM4SF1 transmembrane 4 L six family member 1 Novel U 0.002501705849597873 -0.2740685749017547 1.0 9445 +80736 SLC44A4 solute carrier family 44 member 4 Novel U 0.0025011402713060868 -0.2740734511449588 1.0 9446 +3036 HAS1 hyaluronan synthase 1 Novel U 0.0024998382447072084 -0.2740846768204251 1.0 9447 +200162 SPAG17 sperm associated antigen 17 Novel N 0.0024985610860678246 -0.27409568809194373 1.0 9448 +84310 C7orf50 chromosome 7 open reading frame 50 Novel U 0.0024973863773642925 -0.2741058160714218 1.0 9449 +83938 LRMDA leucine rich melanocyte differentiation associated Novel N 0.0024961028501326887 -0.27411688225099645 1.0 9450 +113091 PTH2 parathyroid hormone 2 Novel U 0.0024938750615994213 -0.27413608956296964 1.0 9451 +55116 TMEM39B transmembrane protein 39B Novel U 0.002493463657684776 -0.2741396365618062 1.0 9452 +6499 SKIC2 SKI2 subunit of superkiller complex Novel U 0.002492694926035594 -0.27414626433117883 1.0 9453 +23052 ENDOD1 endonuclease domain containing 1 Novel U 0.002489794368359738 -0.2741712720531167 1.0 9454 +81578 COL21A1 collagen type XXI alpha 1 chain Novel U 0.0024886792651040053 -0.27418088613263786 1.0 9455 +23764 MAFF MAF bZIP transcription factor F Novel N 0.0024886087748503417 -0.27418149387806473 1.0 9456 +50484 RRM2B ribonucleotide reductase regulatory TP53 inducible subunit M2B Novel U 0.0024858905017745452 -0.2742049299978829 1.0 9457 +1105 CHD1 chromodomain helicase DNA binding protein 1 Novel U 0.0024856288815447714 -0.2742071856075589 1.0 9458 +9592 IER2 immediate early response 2 Novel N 0.0024845948153609013 -0.2742161010102095 1.0 9459 +9331 B4GALT6 beta-1,4-galactosyltransferase 6 Novel N 0.0024840761052688015 -0.2742205731701178 1.0 9460 +6121 RPE65 retinoid isomerohydrolase RPE65 Novel U 0.0024838006418416766 -0.2742229481316112 1.0 9461 +6619 SNAPC3 small nuclear RNA activating complex polypeptide 3 Novel N 0.0024834919307918737 -0.27422560974394766 1.0 9462 +60313 GPBP1L1 GC-rich promoter binding protein 1 like 1 Novel U 0.0024831847950599764 -0.2742282577743745 1.0 9463 +773 CACNA1A calcium voltage-gated channel subunit alpha1 A Novel U 0.002482141066995173 -0.27423725647881003 1.0 9464 +57513 CASKIN2 CASK interacting protein 2 Novel U 0.002481584764585766 -0.27424205274819086 1.0 9465 +23015 GOLGA8A golgin A8 family member A Novel U 0.0024762918982178354 -0.27428768622463756 1.0 9466 +8242 KDM5C lysine demethylase 5C Novel U 0.002474777936207131 -0.2743007391424621 1.0 9467 +90362 FAM110B family with sequence similarity 110 member B Novel U 0.0024745667561689912 -0.2743025598722192 1.0 9468 +89882 TPD52L3 TPD52 like 3 Novel U 0.002473637373042237 -0.27431057272954007 1.0 9469 +3169 FOXA1 forkhead box A1 Novel U 0.0024730698053227 -0.27431546612498237 1.0 9470 +5261 PHKG2 phosphorylase kinase catalytic subunit gamma 2 Novel U 0.0024723541672986055 -0.2743216361373436 1.0 9471 +57587 CFAP97 cilia and flagella associated protein 97 Novel U 0.0024722673126252506 -0.27432238497179656 1.0 9472 +669 BPGM bisphosphoglycerate mutase Novel N 0.002472240106226809 -0.2743226195370503 1.0 9473 +983 CDK1 cyclin dependent kinase 1 Novel U 0.0024720968027974084 -0.2743238550554284 1.0 9474 +3982 LIM2 lens intrinsic membrane protein 2 Novel N 0.0024720782711300485 -0.27432401482980145 1.0 9475 +26272 FBXO4 F-box protein 4 Novel U 0.0024719908648303712 -0.2743247684202079 1.0 9476 +147710 IGSF23 immunoglobulin superfamily member 23 Novel N 0.002469862078064885 -0.274343122169192 1.0 9477 +55290 BRF2 BRF2 RNA polymerase III transcription initiation factor subunit Novel N 0.0024696980285551433 -0.2743445365539352 1.0 9478 +4800 NFYA nuclear transcription factor Y subunit alpha Novel N 0.0024676698974107607 -0.2743620224809121 1.0 9479 +1798 DPAGT1 dolichyl-phosphate N-acetylglucosaminephosphotransferase 1 Novel U 0.0024673655599613486 -0.2743646463854025 1.0 9480 +6191 RPS4X ribosomal protein S4 X-linked Novel N 0.0024673293302229465 -0.274364958747136 1.0 9481 +5678 PSG9 pregnancy specific beta-1-glycoprotein 9 Novel U 0.0024668948918357653 -0.274368704342156 1.0 9482 +9376 SLC22A8 solute carrier family 22 member 8 Novel N 0.0024661598693104863 -0.274375041481763 1.0 9483 +84904 ARHGEF39 Rho guanine nucleotide exchange factor 39 Novel N 0.0024651642986945233 -0.2743836249873905 1.0 9484 +63978 PRDM14 PR/SET domain 14 Novel U 0.00246353488121311 -0.27439767332700293 1.0 9485 +6872 TAF1 TATA-box binding protein associated factor 1 Novel U 0.002462269052848463 -0.27440858691235503 1.0 9486 +653857 ACTR3C actin related protein 3C Novel U 0.002462102206919563 -0.27441002540696974 1.0 9487 +3783 KCNN4 potassium calcium-activated channel subfamily N member 4 Novel U 0.0024619380683169752 -0.27441144055984434 1.0 9488 +6770 STAR steroidogenic acute regulatory protein Novel U 0.002461824509527202 -0.27441241962902885 1.0 9489 +29116 MYLIP myosin regulatory light chain interacting protein Novel U 0.002455873595133359 -0.27446372659447077 1.0 9490 +100505478 TEX48 testis expressed 48 Novel U 0.0024556155609142187 -0.27446595128665885 1.0 9491 +23469 PHF3 PHD finger protein 3 Novel U 0.002455342534904293 -0.274468305233486 1.0 9492 +55012 PPP2R3C protein phosphatase 2 regulatory subunit B''gamma Novel U 0.002454868923456955 -0.27447238856666023 1.0 9493 +2030 SLC29A1 solute carrier family 29 member 1 (Augustine blood group) Novel N 0.002454443828014647 -0.27447605360966454 1.0 9494 +4708 NDUFB2 NADH:ubiquinone oxidoreductase subunit B2 Novel N 0.0024525731445820347 -0.2744921820705829 1.0 9495 +8106 PABPN1 poly(A) binding protein nuclear 1 Novel N 0.0024524429319001144 -0.2744933047245364 1.0 9496 +390892 OR7A10 olfactory receptor family 7 subfamily A member 10 Novel U 0.0024518593107325155 -0.2744983365279023 1.0 9497 +80024 SLC8B1 solute carrier family 8 member B1 Novel U 0.0024515914287209567 -0.27450064612474745 1.0 9498 +4857 NOVA1 NOVA alternative splicing regulator 1 Novel N 0.002451238321015491 -0.2745036905114824 1.0 9499 +100132463 CLDN24 claudin 24 Novel U 0.002450175112565081 -0.2745128571698499 1.0 9500 +100129924 TMEM269 transmembrane protein 269 Novel U 0.0024494568871323524 -0.27451904949005784 1.0 9501 +167359 NIM1K NIM1 serine/threonine protein kinase Novel N 0.0024491807151768943 -0.27452143056026607 1.0 9502 +107 ADCY1 adenylate cyclase 1 Novel N 0.0024482547481172595 -0.2745294139653001 1.0 9503 +1673 DEFB4A defensin beta 4A Novel U 0.002447677569428396 -0.274534390223583 1.0 9504 +84002 B3GNT5 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 5 Novel N 0.0024472084248168165 -0.2745384350450643 1.0 9505 +9197 SLC33A1 solute carrier family 33 member 1 Novel N 0.002447198475750763 -0.2745385208228716 1.0 9506 +6235 RPS29 ribosomal protein S29 Novel U 0.002447025390435869 -0.2745400131115658 1.0 9507 +5260 PHKG1 phosphorylase kinase catalytic subunit gamma 1 Novel U 0.0024460564496857754 -0.2745483670226272 1.0 9508 +6208 RPS14 ribosomal protein S14 Novel U 0.0024442285728809004 -0.2745641264178819 1.0 9509 +11200 CHEK2 checkpoint kinase 2 Novel U 0.0024437585130024963 -0.27456817913051407 1.0 9510 +25834 MGAT4C MGAT4 family member C Novel U 0.0024427717954004463 -0.27457668630816096 1.0 9511 +85443 DCLK3 doublecortin like kinase 3 Novel U 0.0024402428897187115 -0.27459848976017376 1.0 9512 +4303 FOXO4 forkhead box O4 Novel U 0.002439726802643731 -0.27460293930522994 1.0 9513 +26502 NARF nuclear prelamin A recognition factor Novel U 0.0024394434571770266 -0.2746053822232601 1.0 9514 +252969 NEIL2 nei like DNA glycosylase 2 Novel N 0.002439040143230343 -0.27460885947286495 1.0 9515 +283971 CLEC18C C-type lectin domain family 18 member C Novel U 0.0024388509016765878 -0.2746104910557136 1.0 9516 +85313 PPIL4 peptidylprolyl isomerase like 4 Novel U 0.002438738832745539 -0.27461145727979136 1.0 9517 +388595 TMEM82 transmembrane protein 82 Novel U 0.0024386472527470494 -0.27461224685455365 1.0 9518 +7538 ZFP36 ZFP36 ring finger protein Novel U 0.0024378204798772276 -0.2746193750375946 1.0 9519 +84239 ATP13A4 ATPase 13A4 Novel N 0.0024375141481962513 -0.2746220161357401 1.0 9520 +25814 ATXN10 ataxin 10 Novel N 0.0024374460099424746 -0.2746226036029427 1.0 9521 +9520 NPEPPS aminopeptidase puromycin sensitive Novel U 0.002434071324046776 -0.2746516991135094 1.0 9522 +9580 SOX13 SRY-box transcription factor 13 Novel N 0.002433936826586684 -0.274652858709511 1.0 9523 +6834 SURF1 SURF1 cytochrome c oxidase assembly factor Novel N 0.0024323004159403794 -0.27466696734205426 1.0 9524 +5925 RB1 RB transcriptional corepressor 1 Novel U 0.0024318454917319943 -0.2746708895595646 1.0 9525 +778 CACNA1F calcium voltage-gated channel subunit alpha1 F Novel U 0.0024311723965660583 -0.27467669278040296 1.0 9526 +729422 GAGE12C G antigen 12C Novel U 0.002429984076236411 -0.27468693811516204 1.0 9527 +285172 HYCC2 hyccin PI4KA lipid kinase complex subunit 2 Novel U 0.0024299093506441527 -0.274687582376384 1.0 9528 +54940 OCIAD1 OCIA domain containing 1 Novel U 0.0024296460944726013 -0.2746898520906501 1.0 9529 +79022 TMEM106C transmembrane protein 106C Novel U 0.002429531001254484 -0.27469084438920693 1.0 9530 +7299 TYR tyrosinase Novel U 0.0024283991578672066 -0.2747006027970269 1.0 9531 +53373 TPCN1 two pore segment channel 1 Novel U 0.002428210979539424 -0.2747022252130661 1.0 9532 +3622 ING2 inhibitor of growth family member 2 Novel N 0.002428046249999228 -0.2747036454608241 1.0 9533 +414301 DDI1 DNA damage inducible 1 homolog 1 Novel U 0.002428042289502138 -0.2747036796070198 1.0 9534 +79901 CYBRD1 cytochrome b reductase 1 Novel U 0.0024274363895418383 -0.2747089034913284 1.0 9535 +4477 MSMB microseminoprotein beta Novel U 0.002426032070889963 -0.27472101109761765 1.0 9536 +127124 ATP6V1G3 ATPase H+ transporting V1 subunit G3 Novel U 0.0024260214930460393 -0.27472110229655555 1.0 9537 +399939 TRIM49D1 tripartite motif containing 49D1 Novel U 0.0024248974955195083 -0.27473079305976167 1.0 9538 +6888 TALDO1 transaldolase 1 Novel N 0.002424627357241029 -0.2747331221094508 1.0 9539 +23788 MTCH2 mitochondrial carrier 2 Novel U 0.002424623075937414 -0.2747331590215422 1.0 9540 +11197 WIF1 WNT inhibitory factor 1 Novel U 0.0024245140037060246 -0.27473409940899135 1.0 9541 +79966 SCD5 stearoyl-CoA desaturase 5 Novel N 0.0024240178979893865 -0.27473837668088175 1.0 9542 +654502 IQCJ IQ motif containing J Novel U 0.0024220085847483225 -0.27475570036564656 1.0 9543 +9860 LRIG2 leucine rich repeats and immunoglobulin like domains 2 Novel N 0.0024217327197110852 -0.27475807878969966 1.0 9544 +121725057 TMEM217B transmembrane protein 217B Novel U 0.002421459431071707 -0.2747604350008377 1.0 9545 +79892 MCMBP minichromosome maintenance complex binding protein Novel U 0.0024195541883276785 -0.2747768614215786 1.0 9546 +57172 CAMK1G calcium/calmodulin dependent protein kinase IG Novel U 0.002418128143683827 -0.2747891563427316 1.0 9547 +6621 SNAPC4 small nuclear RNA activating complex polypeptide 4 Novel N 0.0024179202096783247 -0.2747909490861872 1.0 9548 +100188893 TOMM6 translocase of outer mitochondrial membrane 6 Novel U 0.0024175972556405288 -0.27479373349721375 1.0 9549 +79754 ASB13 ankyrin repeat and SOCS box containing 13 Novel U 0.002417586430992671 -0.27479382682401987 1.0 9550 +7490 WT1 WT1 transcription factor Novel U 0.002417225230687437 -0.27479694098267715 1.0 9551 +9415 FADS2 fatty acid desaturase 2 Novel N 0.0024155409962428776 -0.274811461937395 1.0 9552 +653269 POTEI POTE ankyrin domain family member I Novel U 0.0024155245461513386 -0.2748116037650575 1.0 9553 +64754 SMYD3 SET and MYND domain containing 3 Novel U 0.0024133443941483693 -0.2748304003694231 1.0 9554 +57654 UVSSA UV stimulated scaffold protein A Novel N 0.0024126949215145517 -0.27483599992400803 1.0 9555 +3818 KLKB1 kallikrein B1 Novel U 0.002412289307551548 -0.27483949700365085 1.0 9556 +132789 GNPDA2 glucosamine-6-phosphate deaminase 2 Novel N 0.002411963212246519 -0.27484230849772356 1.0 9557 +10147 SUGP2 SURP and G-patch domain containing 2 Novel U 0.002410937533363842 -0.2748511515876263 1.0 9558 +55733 HHAT hedgehog acyltransferase Novel U 0.002410286436505525 -0.27485676514577856 1.0 9559 +7781 SLC30A3 solute carrier family 30 member 3 Novel U 0.002410209276540157 -0.27485743039542165 1.0 9560 +84288 EFCAB2 EF-hand calcium binding domain 2 Novel U 0.0024098912501069676 -0.2748601723221471 1.0 9561 +2070 EYA4 EYA transcriptional coactivator and phosphatase 4 Novel U 0.002408637600135916 -0.27487098090911105 1.0 9562 +56160 NSMCE3 NSE3 homolog, SMC5-SMC6 complex component Novel U 0.0024081360569421025 -0.2748753050612681 1.0 9563 +132321 C4orf33 chromosome 4 open reading frame 33 Novel U 0.0024080470235051045 -0.27487607268035535 1.0 9564 +139422 MAGEB10 MAGE family member B10 Novel U 0.0024070197671714087 -0.27488492937055875 1.0 9565 +206358 SLC36A1 solute carrier family 36 member 1 Novel U 0.00240644766374182 -0.27488986187150705 1.0 9566 +2843 GPR20 G protein-coupled receptor 20 Novel U 0.002406438892389395 -0.27488993749542734 1.0 9567 +23318 TUT4 terminal uridylyl transferase 4 Novel N 0.0024055053699162427 -0.27489798604092797 1.0 9568 +344905 ATP13A5 ATPase 13A5 Novel N 0.0024054906706385114 -0.2748981127736088 1.0 9569 +93190 CFAP107 cilia and flagella associated protein 107 Novel U 0.002405256262691169 -0.27490013376730116 1.0 9570 +57095 PITHD1 PITH domain containing 1 Novel N 0.0024047606616999367 -0.27490440668760335 1.0 9571 +8468 FKBP6 FKBP prolyl isomerase family member 6 (inactive) Novel U 0.002403126848437943 -0.2749184929262927 1.0 9572 +5481 PPID peptidylprolyl isomerase D Novel U 0.002403036671960846 -0.2749192704003224 1.0 9573 +326625 MMAB metabolism of cobalamin associated B Novel U 0.0024023532058897925 -0.27492516303593556 1.0 9574 +1736 DKC1 dyskerin pseudouridine synthase 1 Novel U 0.002402266126018448 -0.27492591381197673 1.0 9575 +123099 DEGS2 delta 4-desaturase, sphingolipid 2 Novel N 0.002400219194367451 -0.2749435618311767 1.0 9576 +6013 RLN1 relaxin 1 Novel U 0.0024002065135743586 -0.27494367116109975 1.0 9577 +389207 GRXCR1 glutaredoxin and cysteine rich domain containing 1 Novel N 0.002400183090148557 -0.2749438731107194 1.0 9578 +6906 SERPINA7 serpin family A member 7 Novel N 0.0023999235278486003 -0.27494611097755334 1.0 9579 +22854 NTNG1 netrin G1 Novel U 0.0023986154749028998 -0.2749573886103404 1.0 9580 +145873 MESP2 mesoderm posterior bHLH transcription factor 2 Novel U 0.002398252511779433 -0.27496051796747784 1.0 9581 +22903 BTBD3 BTB domain containing 3 Novel U 0.0023966732299099775 -0.2749741340531643 1.0 9582 +2091 FBL fibrillarin Novel N 0.0023964699587534825 -0.2749758865949606 1.0 9583 +200316 APOBEC3F apolipoprotein B mRNA editing enzyme catalytic subunit 3F Novel N 0.0023957359766737284 -0.2749822147641643 1.0 9584 +147339 ARK2N arkadia (RNF111) N-terminal like PKA signaling regulator 2N Novel N 0.002394892831364686 -0.2749894841053731 1.0 9585 +284004 HEXD hexosaminidase D Novel U 0.0023941748224781236 -0.27499567455858615 1.0 9586 +4707 NDUFB1 NADH:ubiquinone oxidoreductase subunit B1 Novel N 0.002393575231928424 -0.2750008440450847 1.0 9587 +25873 RPL36 ribosomal protein L36 Novel N 0.002393403077364222 -0.2750023283091308 1.0 9588 +8342 H2BC14 H2B clustered histone 14 Novel U 0.002393237948652834 -0.2750037519984208 1.0 9589 +90070 LACRT lacritin Novel U 0.00239278871771896 -0.2750076251302581 1.0 9590 +3101 HK3 hexokinase 3 Novel N 0.0023920141865680818 -0.27501430290116224 1.0 9591 +126147 NTN5 netrin 5 Novel U 0.0023917549405960583 -0.2750165380407134 1.0 9592 +51765 STK26 serine/threonine kinase 26 Novel U 0.002390082327067759 -0.2750309588034424 1.0 9593 +5145 PDE6A phosphodiesterase 6A Novel N 0.002389603852351682 -0.2750350840662336 1.0 9594 +5025 P2RX4 purinergic receptor P2X 4 Novel U 0.0023894621568629 -0.275036305721439 1.0 9595 +7123 CLEC3B C-type lectin domain family 3 member B Novel N 0.0023888802758166585 -0.27504132252201036 1.0 9596 +64065 PERP p53 apoptosis effector related to PMP22 Novel U 0.002386767057633999 -0.2750595420434306 1.0 9597 +8013 NR4A3 nuclear receptor subfamily 4 group A member 3 Novel U 0.002386562276801147 -0.2750613076011952 1.0 9598 +1889 ECE1 endothelin converting enzyme 1 Novel U 0.0023860448595963654 -0.2750657686142241 1.0 9599 +51121 RPL26L1 ribosomal protein L26 like 1 Novel U 0.0023855165640795676 -0.27507032341673504 1.0 9600 +1184 CLCN5 chloride voltage-gated channel 5 Novel N 0.0023835925744765066 -0.2750869114671659 1.0 9601 +90313 TP53I13 tumor protein p53 inducible protein 13 Novel N 0.0023818520365034334 -0.2751019178537015 1.0 9602 +51703 ACSL5 acyl-CoA synthetase long chain family member 5 Novel N 0.0023801875460055222 -0.2751162685821447 1.0 9603 +10439 OLFM1 olfactomedin 1 Novel N 0.0023793204154052604 -0.27512374471720513 1.0 9604 +726 CAPN5 calpain 5 Novel U 0.002378959912578636 -0.27512685286241495 1.0 9605 +55588 MED29 mediator complex subunit 29 Novel U 0.002378034047263325 -0.27513483539024053 1.0 9606 +7851 MALL mal, T cell differentiation protein like Novel U 0.0023775987870062703 -0.2751385880711714 1.0 9607 +401137 PRR27 proline rich 27 Novel U 0.0023775245302958795 -0.2751392282898373 1.0 9608 +219743 TYSND1 trypsin like peroxisomal matrix peptidase 1 Novel N 0.0023773226433838664 -0.27514096889710066 1.0 9609 +7140 TNNT3 troponin T3, fast skeletal type Novel U 0.0023764225584895445 -0.2751487291540144 1.0 9610 +51526 OSER1 oxidative stress responsive serine rich 1 Novel U 0.0023759471597454224 -0.27515282789671536 1.0 9611 +3755 KCNG1 potassium voltage-gated channel modifier subfamily G member 1 Novel N 0.002375813652970494 -0.2751539789513322 1.0 9612 +78989 COLEC11 collectin subfamily member 11 Novel U 0.0023746986873990775 -0.27516359184378125 1.0 9613 +21 ABCA3 ATP binding cassette subfamily A member 3 Novel U 0.00237422818806424 -0.2751676483452726 1.0 9614 +23064 SETX senataxin Novel U 0.0023740535825598364 -0.2751691537405761 1.0 9615 +51696 HECA hdc homolog, cell cycle regulator Novel N 0.002373634608273678 -0.2751727660088425 1.0 9616 +93622 MRFAP1L2 Morf4 family associated protein 1 like 2 Novel N 0.0023710685737253745 -0.27519488957459715 1.0 9617 +283948 NHLRC4 NHL repeat containing 4 Novel U 0.0023707808781032783 -0.2751973699983377 1.0 9618 +27127 SMC1B structural maintenance of chromosomes 1B Novel U 0.0023704406189959245 -0.27520030360838604 1.0 9619 +554226 ANKRD30BL ankyrin repeat domain 30B like Novel U 0.0023703602020171168 -0.2752009969390038 1.0 9620 +6947 TCN1 transcobalamin 1 Novel N 0.0023683251536746057 -0.27521854250394917 1.0 9621 +644974 ALG1L2 ALG1 chitobiosyldiphosphodolichol beta-mannosyltransferase like 2 Novel U 0.002367843889857642 -0.27522269181351594 1.0 9622 +4225 MEP1B meprin A subunit beta Novel U 0.0023674144137551334 -0.2752263946252338 1.0 9623 +133746 JMY junction mediating and regulatory protein, p53 cofactor Novel N 0.002366079970466201 -0.27523789978749597 1.0 9624 +440184 CCDC196 coiled-coil domain containing 196 Novel U 0.002365613076406821 -0.2752419252054039 1.0 9625 +5592 PRKG1 protein kinase cGMP-dependent 1 Novel U 0.0023644851952453944 -0.2752516494521233 1.0 9626 +7166 TPH1 tryptophan hydroxylase 1 Novel U 0.002363408482738323 -0.27526093253834083 1.0 9627 +147687 ZNF417 zinc finger protein 417 Novel U 0.0023627507370169404 -0.27526660342095877 1.0 9628 +10683 DLL3 delta like canonical Notch ligand 3 Novel U 0.002362707400171697 -0.2752669770579957 1.0 9629 +80823 GPRASP3 G protein-coupled receptor associated sorting protein family member 3 Novel U 0.0023625229962824395 -0.2752685669319793 1.0 9630 +79882 ZC3H14 zinc finger CCCH-type containing 14 Novel N 0.002362033316331949 -0.2752727888028776 1.0 9631 +9221 NOLC1 nucleolar and coiled-body phosphoprotein 1 Novel N 0.002361718949113026 -0.2752754991809758 1.0 9632 +56922 MCCC1 methylcrotonyl-CoA carboxylase subunit 1 Novel U 0.002360736722090698 -0.27528396764221646 1.0 9633 +79135 APOO apolipoprotein O Novel N 0.002359878326993278 -0.27529136846244073 1.0 9634 +4681 NBL1 NBL1, DAN family BMP antagonist Novel U 0.002359826369858675 -0.27529181642097833 1.0 9635 +387694 SH2D4B SH2 domain containing 4B Novel U 0.0023594555104720248 -0.275295013857284 1.0 9636 +132332 SMIM43 small integral membrane protein 43 Novel U 0.0023592196685196134 -0.27529704721452986 1.0 9637 +10400 PEMT phosphatidylethanolamine N-methyltransferase Novel U 0.002358910844905955 -0.2752997097973574 1.0 9638 +22849 CPEB3 cytoplasmic polyadenylation element binding protein 3 Novel N 0.0023584624116059975 -0.2753035760522388 1.0 9639 +2746 GLUD1 glutamate dehydrogenase 1 Novel U 0.0023577952285209823 -0.2753093283009221 1.0 9640 +53842 CLDN22 claudin 22 Novel U 0.002357032852067639 -0.2753159012777382 1.0 9641 +29929 ALG6 ALG6 alpha-1,3-glucosyltransferase Novel N 0.0023534650660437403 -0.2753466616386034 1.0 9642 +255762 PDZD9 PDZ domain containing 9 Novel U 0.002353252871128811 -0.27534849111831805 1.0 9643 +29099 COMMD9 COMM domain containing 9 Novel U 0.0023523683133043487 -0.27535611750558014 1.0 9644 +84513 PLPP5 phospholipid phosphatase 5 Novel N 0.002351085218075902 -0.2753671799605556 1.0 9645 +86 ACTL6A actin like 6A Novel N 0.0023506415571728327 -0.2753710050692893 1.0 9646 +3484 IGFBP1 insulin like growth factor binding protein 1 Novel N 0.0023503786924639757 -0.2753732714084837 1.0 9647 +9894 TELO2 telomere maintenance 2 Novel U 0.002350139097170101 -0.27537533712589274 1.0 9648 +91526 ANKRD44 ankyrin repeat domain 44 Novel U 0.002349824389663145 -0.2753780504378504 1.0 9649 +389136 VGLL3 vestigial like family member 3 Novel U 0.0023492534513211965 -0.27538297289376906 1.0 9650 +10168 ZNF197 zinc finger protein 197 Novel U 0.002348847778114039 -0.27538647048419684 1.0 9651 +339501 PRSS38 serine protease 38 Novel U 0.0023482104339618676 -0.27539196547071926 1.0 9652 +442862 PRY2 PTPN13 like Y-linked 2 Novel N 0.0023473898825073294 -0.27539904001461873 1.0 9653 +170370 FAM170B family with sequence similarity 170 member B Novel U 0.0023468862978171436 -0.27540338176793366 1.0 9654 +6434 TRA2B transformer 2 beta homolog Novel N 0.002346799353166479 -0.27540413137814346 1.0 9655 +25770 C22orf31 chromosome 22 open reading frame 31 Novel U 0.002346540304808449 -0.27540636481392716 1.0 9656 +2978 GUCA1A guanylate cyclase activator 1A Novel N 0.002344895117222242 -0.2754205491185642 1.0 9657 +23404 EXOSC2 exosome component 2 Novel U 0.0023444050430987333 -0.27542477438790175 1.0 9658 +26009 ZZZ3 zinc finger ZZ-type containing 3 Novel U 0.0023429533790151544 -0.2754372901920354 1.0 9659 +90355 MACIR macrophage immunometabolism regulator Novel U 0.002341888505464869 -0.2754464712063852 1.0 9660 +28991 COMMD5 COMM domain containing 5 Novel U 0.00234134760349886 -0.275451134697849 1.0 9661 +10486 CAP2 cyclase associated actin cytoskeleton regulatory protein 2 Novel U 0.0023409966502864607 -0.2754541605092031 1.0 9662 +6895 TARBP2 TARBP2 subunit of RISC loading complex Novel U 0.0023406618802670085 -0.2754570467940129 1.0 9663 +2314 FLII FLII actin remodeling protein Novel U 0.0023393565091230565 -0.27546830130512484 1.0 9664 +641455 POTEM POTE ankyrin domain family member M Novel U 0.002338600142478383 -0.275474822467207 1.0 9665 +728642 CDK11A cyclin dependent kinase 11A Novel N 0.0023385264720157772 -0.27547545763142367 1.0 9666 +153743 PPP1R2B PPP1R2 family member B Novel U 0.002338083733432087 -0.27547927478820156 1.0 9667 +10136 CELA3A chymotrypsin like elastase 3A Novel U 0.002337186868455826 -0.2754870072839657 1.0 9668 +388559 ZNF888 zinc finger protein 888 Novel U 0.002334425406987663 -0.2755108157609054 1.0 9669 +54854 FAM83E family with sequence similarity 83 member E Novel U 0.0023338120974726144 -0.27551610352813094 1.0 9670 +729533 FAM72A family with sequence similarity 72 member A Novel U 0.0023322547197077697 -0.2755295307633208 1.0 9671 +442197 OR2I1P olfactory receptor family 2 subfamily I member 1 pseudogene Novel U 0.002331149384946981 -0.2755390606218636 1.0 9672 +11340 EXOSC8 exosome component 8 Novel N 0.0023307203440165046 -0.2755427596816612 1.0 9673 +170589 GPHA2 glycoprotein hormone subunit alpha 2 Novel N 0.0023305505882573485 -0.27554422326394323 1.0 9674 +2332 FMR1 fragile X messenger ribonucleoprotein 1 Novel U 0.002329177556289619 -0.2755560611260021 1.0 9675 +5068 REG3A regenerating family member 3 alpha Novel U 0.002328942921716958 -0.2755580840735887 1.0 9676 +50486 G0S2 G0/G1 switch 2 Novel U 0.002327968905107164 -0.2755664817471614 1.0 9677 +4507 MTAP methylthioadenosine phosphorylase Novel U 0.0023278609418170312 -0.2755674125736579 1.0 9678 +10189 ALYREF Aly/REF export factor Novel N 0.002326919775244431 -0.2755755270242481 1.0 9679 +284565 NBPF15 NBPF member 15 Novel U 0.0023263489625219157 -0.27558044839711443 1.0 9680 +10248 POP7 POP7 homolog, ribonuclease P/MRP subunit Novel N 0.0023252979727395613 -0.27558950970985974 1.0 9681 +84624 FNDC1 fibronectin type III domain containing 1 Novel U 0.0023249665061191786 -0.27559236751377214 1.0 9682 +1555 CYP2B6 cytochrome P450 family 2 subfamily B member 6 Novel N 0.0023245318082739564 -0.27559611534576 1.0 9683 +27037 TRMT2A tRNA methyltransferase 2 homolog A Novel U 0.002323923980509828 -0.2756013558510042 1.0 9684 +10443 N4BP2L2 NEDD4 binding protein 2 like 2 Novel N 0.002323213926577469 -0.27560747771903293 1.0 9685 +27319 BHLHE22 basic helix-loop-helix family member e22 Novel U 0.00232240517988098 -0.2756144504859159 1.0 9686 +118461 C10orf71 chromosome 10 open reading frame 71 Novel U 0.0023214852948343022 -0.2756223814536927 1.0 9687 +6650 CAPN15 calpain 15 Novel N 0.002320533344044688 -0.2756305888825066 1.0 9688 +23767 FLRT3 fibronectin leucine rich transmembrane protein 3 Novel U 0.002319844746910036 -0.2756365257565822 1.0 9689 +643226 GRXCR2 glutaredoxin and cysteine rich domain containing 2 Novel N 0.0023194096215015106 -0.27564027727489027 1.0 9690 +10738 RFPL3 ret finger protein like 3 Novel U 0.002318691756244837 -0.27564646648977026 1.0 9691 +51171 HSD17B14 hydroxysteroid 17-beta dehydrogenase 14 Novel N 0.002318619234506943 -0.27564709175003343 1.0 9692 +7403 KDM6A lysine demethylase 6A Novel N 0.002318202754346803 -0.2756506825147074 1.0 9693 +196 AHR aryl hydrocarbon receptor Novel U 0.002317950010307539 -0.27565286159658126 1.0 9694 +23135 KDM6B lysine demethylase 6B Novel N 0.0023170565590661463 -0.27566056466016653 1.0 9695 +85441 HELZ2 helicase with zinc finger 2 Novel N 0.0023165634035813387 -0.2756648164960596 1.0 9696 +7112 TMPO thymopoietin Novel N 0.00231631411455967 -0.2756669657898275 1.0 9697 +10625 IVNS1ABP influenza virus NS1A binding protein Novel U 0.002315687048108224 -0.27567237216515483 1.0 9698 +84524 ZC3H8 zinc finger CCCH-type containing 8 Novel U 0.0023139325831292345 -0.2756874986260797 1.0 9699 +63935 PCIF1 phosphorylated CTD interacting factor 1 Novel N 0.00231333492311765 -0.27569265146806854 1.0 9700 +157567 ANKRD46 ankyrin repeat domain 46 Novel U 0.0023131398081059837 -0.2756943336900765 1.0 9701 +57540 DISP3 dispatched RND transporter family member 3 Novel N 0.0023130608099473223 -0.27569501478806047 1.0 9702 +3850 KRT3 keratin 3 Novel U 0.002312897986389989 -0.2756964186030167 1.0 9703 +92370 PXYLP1 2-phosphoxylose phosphatase 1 Novel N 0.0023122598121824603 -0.27570192074602273 1.0 9704 +29927 SEC61A1 SEC61 translocon subunit alpha 1 Novel U 0.0023122100213374634 -0.2757023500274734 1.0 9705 +11057 ABHD2 abhydrolase domain containing 2, acylglycerol lipase Novel U 0.002311803102359682 -0.27570585835855477 1.0 9706 +29781 NCAPH2 non-SMC condensin II complex subunit H2 Novel U 0.0023116467292524597 -0.27570720655970127 1.0 9707 +9682 KDM4A lysine demethylase 4A Novel N 0.0023112749560013465 -0.275710411875067 1.0 9708 +152404 IGSF11 immunoglobulin superfamily member 11 Novel N 0.002310760266120405 -0.2757148493739432 1.0 9709 +54145 H2BC12L H2B clustered histone 12 like Novel N 0.0023104823415426375 -0.2757172455547254 1.0 9710 +55149 MTPAP mitochondrial poly(A) polymerase Novel N 0.0023098155487499576 -0.2757229944384274 1.0 9711 +55968 NSFL1C NSFL1 cofactor Novel U 0.0023082735488826225 -0.2757362890900841 1.0 9712 +6878 TAF6 TATA-box binding protein associated factor 6 Novel N 0.002308051605511007 -0.27573820261801335 1.0 9713 +441317 FAM90A7 family with sequence similarity 90 member A7 Novel U 0.002307604508514407 -0.27574205735169555 1.0 9714 +84689 MS4A14 membrane spanning 4-domains A14 Novel U 0.002307121060133699 -0.2757462254959034 1.0 9715 +84064 HDHD2 haloacid dehalogenase like hydrolase domain containing 2 Novel U 0.002306866698025322 -0.27574841852827464 1.0 9716 +79697 RIOX1 ribosomal oxygenase 1 Novel U 0.0023060597506452483 -0.27575537578200116 1.0 9717 +5549 PRELP proline and arginine rich end leucine rich repeat protein Novel N 0.0023048077310297284 -0.2757661703125379 1.0 9718 +5801 PTPRR protein tyrosine phosphatase receptor type R Novel U 0.002304278735666363 -0.27577073114891215 1.0 9719 +389125 MUSTN1 musculoskeletal, embryonic nuclear protein 1 Novel U 0.0023038533316432895 -0.2757743988524054 1.0 9720 +85444 LRRCC1 leucine rich repeat and coiled-coil centrosomal protein 1 Novel U 0.0023037494237120827 -0.27577529471483647 1.0 9721 +56951 C5orf15 chromosome 5 open reading frame 15 Novel U 0.0023034710217823954 -0.275777695011201 1.0 9722 +84548 TMEM185A transmembrane protein 185A Novel N 0.0023030341209526782 -0.27578146183664803 1.0 9723 +100532726 NDUFC2-KCTD14 NDUFC2-KCTD14 readthrough Novel U 0.0023025145925057366 -0.2757859410521617 1.0 9724 +80021 TMEM62 transmembrane protein 62 Novel U 0.002302174887441128 -0.2757888698854228 1.0 9725 +157695 TDRP testis development related protein Novel N 0.002301958430358568 -0.2757907361122443 1.0 9726 +4246 SCGB2A1 secretoglobin family 2A member 1 Novel U 0.002301312802298815 -0.27579630252008647 1.0 9727 +1642 DDB1 damage specific DNA binding protein 1 Novel U 0.002300441619854302 -0.2758038135889099 1.0 9728 +57117 INTS12 integrator complex subunit 12 Novel N 0.002300037408284176 -0.27580729857754976 1.0 9729 +4968 OGG1 8-oxoguanine DNA glycosylase Novel U 0.002299777149880582 -0.2758095424459766 1.0 9730 +51251 NT5C3A 5'-nucleotidase, cytosolic IIIA Novel N 0.0022997581491731546 -0.2758097062642699 1.0 9731 +5518 PPP2R1A protein phosphatase 2 scaffold subunit Aalpha Novel U 0.002297188680491349 -0.2758318594380742 1.0 9732 +932 MS4A3 membrane spanning 4-domains A3 Novel U 0.0022945210292978284 -0.2758548591114922 1.0 9733 +125488 TTC39C tetratricopeptide repeat domain 39C Novel U 0.002294358978213511 -0.27585625626642213 1.0 9734 +2948 GSTM4 glutathione S-transferase mu 4 Novel N 0.0022938758783257553 -0.27586042140603023 1.0 9735 +56658 TRIM39 tripartite motif containing 39 Novel U 0.002293670725629333 -0.2758621901698889 1.0 9736 +57048 PLSCR3 phospholipid scramblase 3 Novel U 0.00229303922661926 -0.2758676347613822 1.0 9737 +59283 CACNG8 calcium voltage-gated channel auxiliary subunit gamma 8 Novel U 0.0022928123732973136 -0.2758695906214029 1.0 9738 +1082 CGB3 chorionic gonadotropin subunit beta 3 Novel N 0.0022911575372068426 -0.27588385811249533 1.0 9739 +23528 ZNF281 zinc finger protein 281 Novel N 0.0022882342542385027 -0.27590906176496066 1.0 9740 +100287364 USP17L18 ubiquitin specific peptidase 17 like family member 18 Novel U 0.0022881852891673033 -0.27590948392684195 1.0 9741 +6599 SMARCC1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin subfamily c member 1 Novel U 0.002288031630134913 -0.2759108087280646 1.0 9742 +10963 STIP1 stress induced phosphoprotein 1 Novel U 0.002287990047159427 -0.27591116724377246 1.0 9743 +5504 PPP1R2 protein phosphatase 1 regulatory inhibitor subunit 2 Novel N 0.0022871868042268154 -0.27591809255888494 1.0 9744 +100133053 CXorf51B chromosome X open reading frame 51B Novel U 0.002286603760562944 -0.2759231193831902 1.0 9745 +28983 TMPRSS11E transmembrane serine protease 11E Novel N 0.0022858734642009246 -0.27592941577526187 1.0 9746 +3743 KCNA7 potassium voltage-gated channel subfamily A member 7 Novel U 0.0022845370681531035 -0.27594093777361445 1.0 9747 +22933 SIRT2 sirtuin 2 Novel U 0.0022840182218968135 -0.27594541110748877 1.0 9748 +54836 BSPRY B-box and SPRY domain containing Novel U 0.002283826879221428 -0.275947060805566 1.0 9749 +347731 LRRTM3 leucine rich repeat transmembrane neuronal 3 Novel N 0.0022831356578456845 -0.2759530203050464 1.0 9750 +23399 CTDNEP1 CTD nuclear envelope phosphatase 1 Novel U 0.0022825299888855643 -0.2759582421977422 1.0 9751 +4904 YBX1 Y-box binding protein 1 Novel N 0.002281766463460821 -0.2759648250806386 1.0 9752 +85459 CEP295 centrosomal protein 295 Novel U 0.002281629518464791 -0.27596600577854713 1.0 9753 +1849 DUSP7 dual specificity phosphatase 7 Novel U 0.002280879734137084 -0.27597247018990384 1.0 9754 +1974 EIF4A2 eukaryotic translation initiation factor 4A2 Novel N 0.0022799676597973256 -0.2759803338161524 1.0 9755 +3188 HNRNPH2 heterogeneous nuclear ribonucleoprotein H2 Novel U 0.002278527727404694 -0.2759927484732317 1.0 9756 +23768 FLRT2 fibronectin leucine rich transmembrane protein 2 Novel U 0.0022783117950852046 -0.27599461017570637 1.0 9757 +65998 ZFTA zinc finger translocation associated Novel U 0.0022778856675403024 -0.2759982841171838 1.0 9758 +550631 CCDC157 coiled-coil domain containing 157 Novel U 0.002277819497887721 -0.2759988546117085 1.0 9759 +84319 CMSS1 cms1 ribosomal small subunit homolog Novel U 0.002277215654232506 -0.27600406076718303 1.0 9760 +246778 IL27 interleukin 27 Novel U 0.00227670776835786 -0.27600843960399607 1.0 9761 +7580 ZNF32 zinc finger protein 32 Novel U 0.0022764485249370577 -0.27601067472155144 1.0 9762 +102723502 LOC102723502 POTE ankyrin domain family member B-like Novel U 0.002275931437549836 -0.2760151328909941 1.0 9763 +138151 NACC2 NACC family member 2 Novel U 0.002275554137078126 -0.2760183858603669 1.0 9764 +132612 ADAD1 adenosine deaminase domain containing 1 Novel U 0.0022752607063073753 -0.27602091573080667 1.0 9765 +56052 ALG1 ALG1 chitobiosyldiphosphodolichol beta-mannosyltransferase Novel U 0.002274285729489547 -0.2760293216829996 1.0 9766 +23078 VWA8 von Willebrand factor A domain containing 8 Novel N 0.0022736192555591196 -0.2760350678175687 1.0 9767 +10110 SGK2 serum/glucocorticoid regulated kinase 2 Novel N 0.002272514240124581 -0.27604459492297817 1.0 9768 +7444 VRK2 VRK serine/threonine kinase 2 Novel U 0.002272032125886568 -0.2760487515646154 1.0 9769 +286262 TPRN taperin Novel N 0.0022719571625711833 -0.27604939787541355 1.0 9770 +90134 KCNH7 potassium voltage-gated channel subfamily H member 7 Novel U 0.002271383262871855 -0.27605434586325067 1.0 9771 +57659 ZBTB4 zinc finger and BTB domain containing 4 Novel N 0.002270995525189167 -0.2760576888190671 1.0 9772 +359710 BPIFB3 BPI fold containing family B member 3 Novel U 0.0022699567267196515 -0.2760666450220385 1.0 9773 +51700 CYB5R2 cytochrome b5 reductase 2 Novel N 0.0022695246996881457 -0.2760703698270867 1.0 9774 +7768 ZNF225 zinc finger protein 225 Novel U 0.002269282346841485 -0.2760724593192732 1.0 9775 +4524 MTHFR methylenetetrahydrofolate reductase Novel U 0.002268405396482967 -0.2760800201172886 1.0 9776 +3417 IDH1 isocitrate dehydrogenase (NADP(+)) 1 Novel U 0.0022678215721716223 -0.2760850536720978 1.0 9777 +55273 TMEM100 transmembrane protein 100 Novel U 0.002267427105351274 -0.2760884546444829 1.0 9778 +11166 SOX21 SRY-box transcription factor 21 Novel N 0.0022651473049096374 -0.2761081103872364 1.0 9779 +54492 NEURL1B neuralized E3 ubiquitin protein ligase 1B Novel U 0.002263991103779742 -0.27611807880007 1.0 9780 +51663 ZFR zinc finger RNA binding protein Novel N 0.0022626689103548573 -0.27612947834774765 1.0 9781 +645545 IGBP1C IGBP1 family member C Novel U 0.0022625870502384804 -0.2761301841206565 1.0 9782 +22846 VASH1 vasohibin 1 Novel U 0.0022624742310706574 -0.27613115681304656 1.0 9783 +440087 SMCO3 single-pass membrane protein with coiled-coil domains 3 Novel U 0.002261553360785396 -0.2761390962752494 1.0 9784 +116071 BATF2 basic leucine zipper ATF-like transcription factor 2 Novel U 0.002261051045684373 -0.2761434270825545 1.0 9785 +115207 KCTD12 potassium channel tetramerization domain containing 12 Novel U 0.0022596244482877403 -0.2761557267693731 1.0 9786 +63877 FAM204A family with sequence similarity 204 member A Novel U 0.0022589634404354825 -0.2761614257770866 1.0 9787 +56109 PCDHGA6 protocadherin gamma subfamily A, 6 Novel U 0.002257232084474087 -0.2761763529991234 1.0 9788 +11157 LSM6 LSM6 homolog, U6 small nuclear RNA and mRNA degradation associated Novel N 0.002257221022111708 -0.2761764483754314 1.0 9789 +1006 CDH8 cadherin 8 Novel N 0.0022570842236061097 -0.2761776278103442 1.0 9790 +140733 MACROD2 mono-ADP ribosylhydrolase 2 Novel N 0.0022567135090951315 -0.2761808239975761 1.0 9791 +256297 PTF1A pancreas associated transcription factor 1a Novel U 0.0022564743827534154 -0.2761828856718229 1.0 9792 +10957 PNRC1 proline rich nuclear receptor coactivator 1 Novel U 0.002255599956065314 -0.27619042471152316 1.0 9793 +90187 EMILIN3 elastin microfibril interfacer 3 Novel U 0.002254751634591359 -0.27619773868004416 1.0 9794 +100287399 POTEB2 POTE ankyrin domain family member B2 Novel U 0.0022547295599454416 -0.27619792900089574 1.0 9795 +642515 PRRT1B proline rich transmembrane protein 1B Novel U 0.0022541493556425696 -0.2762029313450981 1.0 9796 +5271 SERPINB8 serpin family B member 8 Novel U 0.0022538923346693564 -0.2762051473013895 1.0 9797 +3094 HINT1 histidine triad nucleotide binding protein 1 Novel N 0.002252282759707002 -0.276219024564866 1.0 9798 +9187 SLC24A1 solute carrier family 24 member 1 Novel U 0.002252264176112365 -0.27621918478694024 1.0 9799 +498 ATP5F1A ATP synthase F1 subunit alpha Novel U 0.0022519102644253225 -0.2762222361053587 1.0 9800 +63898 SH2D4A SH2 domain containing 4A Novel U 0.0022518629081710543 -0.27622264439651206 1.0 9801 +825 CAPN3 calpain 3 Novel U 0.002251283966931998 -0.2762276358509641 1.0 9802 +219 ALDH1B1 aldehyde dehydrogenase 1 family member B1 Novel U 0.0022498439516955163 -0.2762400512222977 1.0 9803 +5837 PYGM glycogen phosphorylase, muscle associated Novel U 0.0022498180767950558 -0.2762402743077827 1.0 9804 +3329 HSPD1 heat shock protein family D (Hsp60) member 1 Novel U 0.0022490696540003836 -0.2762467269804177 1.0 9805 +11177 BAZ1A bromodomain adjacent to zinc finger domain 1A Novel N 0.0022490663300261606 -0.2762467556387077 1.0 9806 +8666 EIF3G eukaryotic translation initiation factor 3 subunit G Novel U 0.0022484929884969305 -0.27625169881417283 1.0 9807 +83759 RBM4B RNA binding motif protein 4B Novel U 0.002248354267572957 -0.2762528948235894 1.0 9808 +58517 RBM25 RNA binding motif protein 25 Novel N 0.002248066143583064 -0.27625537894058627 1.0 9809 +10983 CCNI cyclin I Novel U 0.002247608728354341 -0.27625932263491276 1.0 9810 +577 ADGRB3 adhesion G protein-coupled receptor B3 Novel N 0.002247043637718502 -0.2762641946736964 1.0 9811 +64328 XPO4 exportin 4 Novel U 0.0022468252755872232 -0.27626607732526587 1.0 9812 +25878 MXRA5 matrix remodeling associated 5 Novel U 0.0022467243033175315 -0.2762669478773203 1.0 9813 +400954 EML6 EMAP like 6 Novel U 0.002245048726206665 -0.2762813941911526 1.0 9814 +11178 LZTS1 leucine zipper tumor suppressor 1 Novel U 0.0022435908533214146 -0.276293963525677 1.0 9815 +23544 SEZ6L seizure related 6 homolog like Novel U 0.002242953523962012 -0.27629945838466063 1.0 9816 +147007 TMEM199 transmembrane protein 199 Novel U 0.0022427665748052422 -0.27630107020316297 1.0 9817 +164284 APCDD1L APC down-regulated 1 like Novel U 0.002242647996636124 -0.2763020925479024 1.0 9818 +155435 RBM33 RNA binding motif protein 33 Novel N 0.0022425855123308883 -0.2763026312684883 1.0 9819 +5378 PMS1 PMS1 homolog 1, mismatch repair system component Novel U 0.002242450472432338 -0.2763037955412286 1.0 9820 +64428 CIAO3 cytosolic iron-sulfur assembly component 3 Novel N 0.0022422475296096944 -0.2763055452522308 1.0 9821 +6633 SNRPD2 small nuclear ribonucleoprotein D2 polypeptide Novel N 0.002242221070339106 -0.27630577337597645 1.0 9822 +6566 SLC16A1 solute carrier family 16 member 1 Novel U 0.0022411339490473713 -0.27631514620355463 1.0 9823 +5204 PFDN5 prefoldin subunit 5 Novel U 0.002239622380360796 -0.2763281784868699 1.0 9824 +57727 NCOA5 nuclear receptor coactivator 5 Novel U 0.0022390355072567448 -0.27633323832743817 1.0 9825 +9875 URB1 URB1 ribosome biogenesis homolog Novel U 0.0022385951579912146 -0.27633703488424505 1.0 9826 +7216 TRO trophinin Novel N 0.0022377429761486585 -0.2763443821356845 1.0 9827 +1937 EEF1G eukaryotic translation elongation factor 1 gamma Novel U 0.0022348608184355476 -0.27636923121876616 1.0 9828 +56911 MAP3K7CL MAP3K7 C-terminal like Novel U 0.0022342057271142876 -0.2763748792159573 1.0 9829 +389610 XKR5 XK related 5 Novel U 0.0022324510512830315 -0.2763900074947861 1.0 9830 +6830 SUPT6H SPT6 homolog, histone chaperone and transcription elongation factor Novel N 0.002231981165923923 -0.27639405870276623 1.0 9831 +5836 PYGL glycogen phosphorylase L Novel U 0.0022319059249775925 -0.27639470740721356 1.0 9832 +79053 ALG8 ALG8 alpha-1,3-glucosyltransferase Novel U 0.0022306724969125037 -0.2764053416470837 1.0 9833 +55120 FANCL FA complementation group L Novel U 0.0022302390829584155 -0.27640907840975454 1.0 9834 +729442 GAGE12H G antigen 12H Novel U 0.002230226440810467 -0.276409187406491 1.0 9835 +29960 MRM2 mitochondrial rRNA methyltransferase 2 Novel N 0.0022299526808273757 -0.2764115476814105 1.0 9836 +91978 TPGS1 tubulin polyglutamylase complex subunit 1 Novel U 0.0022292903040667185 -0.27641725849143384 1.0 9837 +126295 ZNF57 zinc finger protein 57 Novel U 0.0022285454630433044 -0.2764236802831316 1.0 9838 +157570 ESCO2 establishment of sister chromatid cohesion N-acetyltransferase 2 Novel U 0.002226350256443238 -0.27644260668363296 1.0 9839 +1303 COL12A1 collagen type XII alpha 1 chain Novel U 0.0022255241359082547 -0.2764497292424422 1.0 9840 +2287 FKBP3 FKBP prolyl isomerase 3 Novel U 0.0022252653361107717 -0.2764519605352129 1.0 9841 +221264 AK9 adenylate kinase 9 Novel N 0.002224704549334346 -0.2764567954674358 1.0 9842 +1457 CSNK2A1 casein kinase 2 alpha 1 Novel U 0.0022245532590752827 -0.27645809984581865 1.0 9843 +166614 DCLK2 doublecortin like kinase 2 Novel U 0.0022237266996982664 -0.2764652261881898 1.0 9844 +55591 VEZT vezatin, adherens junctions transmembrane protein Novel U 0.002223102652766536 -0.27647060653014094 1.0 9845 +55285 RBM41 RNA binding motif protein 41 Novel U 0.00222122501212342 -0.2764867949740023 1.0 9846 +729250 PRR20E proline rich 20E Novel U 0.002220805961921744 -0.2764904078967891 1.0 9847 +81857 MED25 mediator complex subunit 25 Novel U 0.0022207078877296096 -0.27649125346250447 1.0 9848 +7771 ZNF112 zinc finger protein 112 Novel U 0.0022202604392704437 -0.27649511122638953 1.0 9849 +241 ALOX5AP arachidonate 5-lipoxygenase activating protein Novel U 0.0022194022726100856 -0.27650251007709925 1.0 9850 +23549 DNPEP aspartyl aminopeptidase Novel N 0.00221814223323908 -0.27651337375151713 1.0 9851 +80144 FRAS1 Fraser extracellular matrix complex subunit 1 Novel U 0.0022173780843892108 -0.2765199620093945 1.0 9852 +55567 DNAH3 dynein axonemal heavy chain 3 Novel U 0.002215907222794934 -0.27653264332859906 1.0 9853 +7419 VDAC3 voltage dependent anion channel 3 Novel N 0.0022157776205899596 -0.27653376071920693 1.0 9854 +388820 SMIM34 small integral membrane protein 34 Novel U 0.002214707010567125 -0.27654299119167014 1.0 9855 +24144 TFIP11 tuftelin interacting protein 11 Novel U 0.0022144942522578444 -0.2765448255287987 1.0 9856 +2188 FANCF FA complementation group F Novel U 0.0022141035689185982 -0.2765481938811659 1.0 9857 +388021 TMEM179 transmembrane protein 179 Novel U 0.002212926427612224 -0.2765583428338023 1.0 9858 +100142659 CTAGE8 CTAGE family member 8 Novel U 0.0022118652798950086 -0.27656749172515793 1.0 9859 +7307 U2AF1 U2 small nuclear RNA auxiliary factor 1 Novel N 0.002210927418922225 -0.27657557767587665 1.0 9860 +7371 UCK2 uridine-cytidine kinase 2 Novel N 0.002210240524842003 -0.27658149986673736 1.0 9861 +23397 NCAPH non-SMC condensin I complex subunit H Novel U 0.0022099630226323935 -0.2765838924059904 1.0 9862 +55507 GPRC5D G protein-coupled receptor class C group 5 member D Novel U 0.002209810440124935 -0.276585207925744 1.0 9863 +113130 CDCA5 cell division cycle associated 5 Novel U 0.0022092332258152117 -0.2765901844911391 1.0 9864 +266655 BRD3OS BRD3 opposite strand Novel U 0.002208587894414706 -0.2765957483412759 1.0 9865 +5813 PURA purine rich element binding protein A Novel U 0.002208312096773123 -0.27659812618426427 1.0 9866 +11027 LILRA2 leukocyte immunoglobulin like receptor A2 Novel U 0.0022082713527036345 -0.27659847746718097 1.0 9867 +390664 C1QTNF8 C1q and TNF related 8 Novel N 0.00220804329507351 -0.2766004437103788 1.0 9868 +390205 LRRC10B leucine rich repeat containing 10B Novel U 0.0022073381060871027 -0.27660652363433014 1.0 9869 +3671 ISLR immunoglobulin superfamily containing leucine rich repeat Novel N 0.0022066146075431898 -0.27661276141769126 1.0 9870 +677 ZFP36L1 ZFP36 ring finger protein like 1 Novel U 0.00220655058395137 -0.2766133134095359 1.0 9871 +11132 CAPN10 calpain 10 Novel U 0.0022058039198074413 -0.2766197509196215 1.0 9872 +2274 FHL2 four and a half LIM domains 2 Novel N 0.002205331215130149 -0.2766238264349015 1.0 9873 +1058 CENPA centromere protein A Novel U 0.002204336553525343 -0.2766324021033125 1.0 9874 +11146 GLMN glomulin, FKBP associated protein Novel U 0.0022037874416912726 -0.27663713637775 1.0 9875 +114932 MRFAP1L1 Morf4 family associated protein 1 like 1 Novel U 0.002203767570523919 -0.27663730770088274 1.0 9876 +285193 DUSP28 dual specificity phosphatase 28 Novel N 0.0022034498955191164 -0.2766400465977001 1.0 9877 +9069 CLDN12 claudin 12 Novel U 0.002203145371786593 -0.2766426721082665 1.0 9878 +4509 ATP8 ATP synthase F0 subunit 8 Novel N 0.00220211445552433 -0.2766515603532555 1.0 9879 +124535 HSF5 heat shock transcription factor 5 Novel U 0.0022015821715162726 -0.2766561495433193 1.0 9880 +160418 TMTC3 transmembrane O-mannosyltransferase targeting cadherins 3 Novel U 0.0022015737241507486 -0.2766562223739235 1.0 9881 +131 ADH7 alcohol dehydrogenase 7 (class IV), mu or sigma polypeptide Novel N 0.002201442020675917 -0.276657357881038 1.0 9882 +10014 HDAC5 histone deacetylase 5 Novel U 0.0022014256763894036 -0.2766574987964819 1.0 9883 +284040 CDRT4 CMT1A duplicated region transcript 4 Novel U 0.0022009279104344037 -0.2766617903824401 1.0 9884 +4683 NBN nibrin Novel U 0.00219932956924069 -0.2766755707917962 1.0 9885 +441933 OR13G1 olfactory receptor family 13 subfamily G member 1 Novel U 0.0021983819044101736 -0.2766837412683805 1.0 9886 +651746 ANKRD33B ankyrin repeat domain 33B Novel U 0.002198381240871574 -0.27668374698920756 1.0 9887 +56104 PCDHGB1 protocadherin gamma subfamily B, 1 Novel U 0.0021978302795178373 -0.2766884972096384 1.0 9888 +79033 ERI3 ERI1 exoribonuclease family member 3 Novel U 0.0021971984149084037 -0.27669394495321775 1.0 9889 +259287 TAS2R41 taste 2 receptor member 41 Novel N 0.00219704165913838 -0.27669529645356594 1.0 9890 +7045 TGFBI transforming growth factor beta induced Novel U 0.0021968498944757767 -0.276696949789888 1.0 9891 +23405 DICER1 dicer 1, ribonuclease III Novel U 0.002196764027603877 -0.27669769010781864 1.0 9892 +147664 ERVV-1 endogenous retrovirus group V member 1, envelope Novel U 0.0021946727396637273 -0.2767157205533894 1.0 9893 +24149 ZNF318 zinc finger protein 318 Novel U 0.0021934890751846192 -0.27672592574682775 1.0 9894 +140902 R3HDML R3H domain containing like Novel U 0.0021924077916568125 -0.2767352482429893 1.0 9895 +9184 BUB3 BUB3 mitotic checkpoint protein Novel U 0.002192014816743164 -0.2767386363526107 1.0 9896 +79568 MAIP1 matrix AAA peptidase interacting protein 1 Novel U 0.002191709718689061 -0.27674126681480227 1.0 9897 +54510 PCDH18 protocadherin 18 Novel U 0.0021914951259505715 -0.27674311696781895 1.0 9898 +4541 ND6 NADH dehydrogenase subunit 6 Novel N 0.002190542969438649 -0.27675132617030773 1.0 9899 +79657 RPAP3 RNA polymerase II associated protein 3 Novel U 0.0021903011771528627 -0.27675341082950966 1.0 9900 +2712 GK2 glycerol kinase 2 Novel U 0.002189694349048803 -0.2767586427159902 1.0 9901 +11013 TMSB15A thymosin beta 15A Novel U 0.0021896564336119527 -0.2767589696113007 1.0 9902 +79047 KCTD15 potassium channel tetramerization domain containing 15 Novel U 0.0021895208897773763 -0.27676013822882334 1.0 9903 +128387 TATDN3 TatD DNase domain containing 3 Novel U 0.002189464407442206 -0.27676062520225747 1.0 9904 +11145 PLAAT3 phospholipase A and acyltransferase 3 Novel U 0.0021882913747019775 -0.276770738732092 1.0 9905 +50640 PNPLA8 patatin like phospholipase domain containing 8 Novel U 0.002187598094539435 -0.2767767159818031 1.0 9906 +112441438 SCYGR7 small cysteine and glycine repeat containing 7 Novel U 0.00218509366057548 -0.2767983084461432 1.0 9907 +91074 ANKRD30A ankyrin repeat domain 30A Novel U 0.0021843137580315505 -0.27680503252755684 1.0 9908 +165257 C1QL2 complement C1q like 2 Novel U 0.0021817476808057095 -0.27682715646126416 1.0 9909 +378949 RBMY1D RNA binding motif protein Y-linked family 1 member D Novel U 0.0021808966813075545 -0.2768344935188915 1.0 9910 +57538 ALPK3 alpha kinase 3 Novel U 0.0021808913995757765 -0.27683453905636884 1.0 9911 +9311 ASIC3 acid sensing ion channel subunit 3 Novel N 0.002180321942787257 -0.2768394487387867 1.0 9912 +285381 DPH3 diphthamide biosynthesis 3 Novel U 0.0021800107882866066 -0.27684213141780967 1.0 9913 +6445 SGCG sarcoglycan gamma Novel N 0.0021784927553316212 -0.2768552194340718 1.0 9914 +221830 POLR1F RNA polymerase I subunit F Novel U 0.0021784105054846303 -0.2768559285671189 1.0 9915 +57493 HEG1 heart development protein with EGF like domains 1 Novel U 0.0021783697099645185 -0.27685628029362713 1.0 9916 +133874 C5orf58 chromosome 5 open reading frame 58 Novel U 0.0021774210869254136 -0.27686445903159307 1.0 9917 +29125 C11orf21 chromosome 11 open reading frame 21 Novel U 0.002175862502247625 -0.27687789667241747 1.0 9918 +6164 RPL34 ribosomal protein L34 Novel N 0.0021758165079611906 -0.27687829322110036 1.0 9919 +9361 LONP1 lon peptidase 1, mitochondrial Novel U 0.0021754633237994745 -0.2768813382670177 1.0 9920 +51559 NT5DC3 5'-nucleotidase domain containing 3 Novel U 0.002173591887711129 -0.2768974732171039 1.0 9921 +654429 LRTM2 leucine rich repeats and transmembrane domains 2 Novel U 0.0021735733936215436 -0.2768976326674929 1.0 9922 +6670 SP3 Sp3 transcription factor Novel N 0.0021733592430044964 -0.2768994790086736 1.0 9923 +11095 ADAMTS8 ADAM metallopeptidase with thrombospondin type 1 motif 8 Novel N 0.0021728238696100965 -0.2769040948344824 1.0 9924 +1620 BRINP1 BMP/retinoic acid inducible neural specific 1 Novel N 0.002172008180350486 -0.276911127458023 1.0 9925 +9536 PTGES prostaglandin E synthase Novel N 0.002171503158173444 -0.27691548160491036 1.0 9926 +57453 DSCAML1 DS cell adhesion molecule like 1 Novel N 0.0021710908048105312 -0.2769190367895997 1.0 9927 +54908 SPDL1 spindle apparatus coiled-coil protein 1 Novel U 0.002170914785518469 -0.27692055437414853 1.0 9928 +64768 IPPK inositol-pentakisphosphate 2-kinase Novel N 0.0021701300479273662 -0.27692732014186133 1.0 9929 +579 NKX3-2 NK3 homeobox 2 Novel N 0.002169138969699729 -0.2769358649154894 1.0 9930 +4632 MYL1 myosin light chain 1 Novel U 0.0021682320015511463 -0.276943684517718 1.0 9931 +1141 CHRNB2 cholinergic receptor nicotinic beta 2 subunit Novel N 0.0021678675879819777 -0.276946826380155 1.0 9932 +81926 ABHD17A abhydrolase domain containing 17A, depalmitoylase Novel U 0.0021655818323811334 -0.27696653346647143 1.0 9933 +284680 SPATA46 spermatogenesis associated 46 Novel U 0.002164811032368775 -0.27697317906863933 1.0 9934 +54626 HES2 hes family bHLH transcription factor 2 Novel U 0.002164346064400341 -0.27697718788037967 1.0 9935 +7385 UQCRC2 ubiquinol-cytochrome c reductase core protein 2 Novel N 0.002161920910997386 -0.2769980968119492 1.0 9936 +250 ALPP alkaline phosphatase, placental Novel U 0.002161161129698196 -0.2770046474141392 1.0 9937 +2597 GAPDH glyceraldehyde-3-phosphate dehydrogenase Novel U 0.0021607721324717077 -0.2770080012293575 1.0 9938 +128367 OR10X1 olfactory receptor family 10 subfamily X member 1 Novel U 0.0021602707803749983 -0.27701232373393364 1.0 9939 +100862671 TMEM265 transmembrane protein 265 Novel U 0.002160050521392955 -0.2770142227395708 1.0 9940 +4135 MAP6 microtubule associated protein 6 Novel U 0.00216001765742659 -0.27701450608264633 1.0 9941 +7273 TTN titin Novel U 0.002159603926247707 -0.277018073146444 1.0 9942 +57685 CACHD1 cache domain containing 1 Novel U 0.002159281502026552 -0.2770208529895534 1.0 9943 +2548 GAA alpha glucosidase Novel U 0.002159272043592213 -0.277020934537284 1.0 9944 +8649 LAMTOR3 late endosomal/lysosomal adaptor, MAPK and MTOR activator 3 Novel N 0.002159067978272589 -0.2770226939261122 1.0 9945 +3641 INSL4 insulin like 4 Novel N 0.002158656066624881 -0.277026245302468 1.0 9946 +8260 NAA10 N-alpha-acetyltransferase 10, NatA catalytic subunit Novel U 0.0021585967939554227 -0.27702675633331175 1.0 9947 +11046 SLC35D2 solute carrier family 35 member D2 Novel N 0.0021581450112169156 -0.2770306514660288 1.0 9948 +1178 CLC Charcot-Leyden crystal galectin Novel U 0.002157728696678075 -0.27703424080276656 1.0 9949 +65983 GRAMD2B GRAM domain containing 2B Novel U 0.0021567387225458617 -0.27704277605722133 1.0 9950 +374659 HDDC3 HD domain containing 3 Novel U 0.0021567255009574703 -0.2770428900497162 1.0 9951 +284293 HMSD histocompatibility minor serpin domain containing Novel N 0.0021564003778148533 -0.27704569316210176 1.0 9952 +51562 MBIP MAP3K12 binding inhibitory protein 1 Novel U 0.002155807833854691 -0.27705080189505854 1.0 9953 +6760 SS18 SS18 subunit of BAF chromatin remodeling complex Novel N 0.002155642983033347 -0.27705222318846556 1.0 9954 +56165 TDRD1 tudor domain containing 1 Novel U 0.0021547739208870775 -0.27705971597672535 1.0 9955 +317649 EIF4E3 eukaryotic translation initiation factor 4E family member 3 Novel U 0.002154250920857144 -0.27706422512316675 1.0 9956 +6301 SARS1 seryl-tRNA synthetase 1 Novel U 0.002154022831433722 -0.2770661916404767 1.0 9957 +10747 MASP2 MBL associated serine protease 2 Novel N 0.002153220337601162 -0.27707311049707745 1.0 9958 +138639 PTPDC1 protein tyrosine phosphatase domain containing 1 Novel U 0.002153013854821238 -0.2770748907285096 1.0 9959 +339855 KY kyphoscoliosis peptidase Novel U 0.0021529835786867043 -0.27707515176008984 1.0 9960 +8460 TPST1 tyrosylprotein sulfotransferase 1 Novel U 0.002152858532554717 -0.27707622986962865 1.0 9961 +6553 SLC9A5 solute carrier family 9 member A5 Novel N 0.002152735141208604 -0.27707729371210926 1.0 9962 +1111 CHEK1 checkpoint kinase 1 Novel U 0.002152626350419903 -0.27707823167304546 1.0 9963 +3991 LIPE lipase E, hormone sensitive type Novel N 0.0021524886635596154 -0.277079418767081 1.0 9964 +5994 RFXAP regulatory factor X associated protein Novel U 0.002151281152141203 -0.277089829561543 1.0 9965 +1018 CDK3 cyclin dependent kinase 3 Novel U 0.0021506210590868063 -0.2770955206821488 1.0 9966 +56342 PPAN peter pan homolog Novel U 0.0021502683918671293 -0.2770985612711499 1.0 9967 +3670 ISL1 ISL LIM homeobox 1 Novel U 0.002149696392637207 -0.2771034928737206 1.0 9968 +51593 SRRT serrate, RNA effector molecule Novel N 0.0021476945536921133 -0.2771207521173895 1.0 9969 +10916 MAGED2 MAGE family member D2 Novel N 0.002147639473280035 -0.27712122700387115 1.0 9970 +10988 METAP2 methionyl aminopeptidase 2 Novel N 0.0021474264024608164 -0.2771230640353649 1.0 9971 +4858 NOVA2 NOVA alternative splicing regulator 2 Novel U 0.002147380446578467 -0.2771234602529395 1.0 9972 +4010 LMX1B LIM homeobox transcription factor 1 beta Novel U 0.0021463130036412713 -0.2771326634197581 1.0 9973 +29124 LGALS13 galectin 13 Novel N 0.002146216189680737 -0.27713349812014176 1.0 9974 +347730 LRRTM1 leucine rich repeat transmembrane neuronal 1 Novel U 0.0021458251174262762 -0.2771368698256171 1.0 9975 +121665 SPPL3 signal peptide peptidase like 3 Novel U 0.002144128805363313 -0.2771514949098702 1.0 9976 +1392 CRH corticotropin releasing hormone Novel U 0.0021436908913849513 -0.27715527047037525 1.0 9977 +26166 RGS22 regulator of G protein signaling 22 Novel U 0.0021432570134778542 -0.2771590112331072 1.0 9978 +84916 UTP4 UTP4 small subunit processome component Novel N 0.002140112422256303 -0.277186122937705 1.0 9979 +10615 SPAG5 sperm associated antigen 5 Novel U 0.002140020168464063 -0.2771869183217111 1.0 9980 +83449 PMFBP1 polyamine modulated factor 1 binding protein 1 Novel N 0.00213948238252838 -0.2771915549477136 1.0 9981 +148229 ATP8B3 ATPase phospholipid transporting 8B3 Novel U 0.0021386501712676214 -0.27719873001889933 1.0 9982 +11280 SCN11A sodium voltage-gated channel alpha subunit 11 Novel U 0.002137121525648703 -0.2772119095343069 1.0 9983 +23137 SMC5 structural maintenance of chromosomes 5 Novel U 0.0021361270164293477 -0.2772204838888972 1.0 9984 +200186 CRTC2 CREB regulated transcription coactivator 2 Novel U 0.002135819630081493 -0.2772231340800583 1.0 9985 +5376 PMP22 peripheral myelin protein 22 Novel U 0.002134791087282574 -0.27723200186177166 1.0 9986 +55128 TRIM68 tripartite motif containing 68 Novel U 0.002134703522903043 -0.2772327568150943 1.0 9987 +4438 MSH4 mutS homolog 4 Novel N 0.0021342042453187456 -0.27723706143385846 1.0 9988 +286343 LURAP1L leucine rich adaptor protein 1 like Novel U 0.0021341076039912686 -0.2772378946458526 1.0 9989 +129521 NMS neuromedin S Novel U 0.002133874475259255 -0.27723990461054127 1.0 9990 +9543 IGDCC3 immunoglobulin superfamily DCC subclass member 3 Novel U 0.0021335672597344486 -0.27724255332891823 1.0 9991 +100506540 MISFA mitochondrial sheath formation associated Novel U 0.002132417403493981 -0.277252467038054 1.0 9992 +6137 RPL13 ribosomal protein L13 Novel N 0.002132348997093916 -0.27725305681713197 1.0 9993 +284340 CXCL17 C-X-C motif chemokine ligand 17 Novel U 0.0021315968372381403 -0.2772595417095658 1.0 9994 +55911 APOBR apolipoprotein B receptor Novel U 0.002130485964415011 -0.2772691193155898 1.0 9995 +4758 NEU1 neuraminidase 1 Novel U 0.0021301493766305033 -0.27727202127261436 1.0 9996 +85461 TANC1 tetratricopeptide repeat, ankyrin repeat and coiled-coil containing 1 Novel U 0.0021299946860677695 -0.27727335496737643 1.0 9997 +100130733 LRRC70 leucine rich repeat containing 70 Novel U 0.0021293666256148483 -0.27727876991268074 1.0 9998 +221443 OARD1 O-acyl-ADP-ribose deacylase 1 Novel N 0.002128738062502787 -0.27728418919175857 1.0 9999 +25934 NIPSNAP3A nipsnap homolog 3A Novel U 0.002128729757060197 -0.27728426079874663 1.0 10000 +1473 CST5 cystatin D Novel U 0.0021277171159464507 -0.2772929914809897 1.0 10001 +3251 HPRT1 hypoxanthine phosphoribosyltransferase 1 Novel U 0.0021264911431331784 -0.27730356144395674 1.0 10002 +23013 SPEN spen family transcriptional repressor Novel U 0.002126350170583867 -0.277304776866199 1.0 10003 +84186 ZCCHC7 zinc finger CCHC-type containing 7 Novel U 0.002126053826251885 -0.2773073318564734 1.0 10004 +54516 MTRF1L mitochondrial translation release factor 1 like Novel U 0.002125920592340462 -0.2773084805585444 1.0 10005 +392255 GDF6 growth differentiation factor 6 Novel U 0.0021256669735962045 -0.27731066718185743 1.0 10006 +91283 MSANTD3 Myb/SANT DNA binding domain containing 3 Novel U 0.0021256058797477417 -0.27731119391434994 1.0 10007 +51144 HSD17B12 hydroxysteroid 17-beta dehydrogenase 12 Novel N 0.002123400395740896 -0.27733020892351207 1.0 10008 +56134 PCDHAC2 protocadherin alpha subfamily C, 2 Novel N 0.0021224528977033847 -0.277338377962058 1.0 10009 +28982 FLVCR1 FLVCR choline and heme transporter 1 Novel U 0.002121592472663879 -0.27734579628382267 1.0 10010 +1757 SARDH sarcosine dehydrogenase Novel N 0.002121152264186154 -0.27734959162680006 1.0 10011 +56853 CELF4 CUGBP Elav-like family member 4 Novel N 0.002120983848691036 -0.2773510436537351 1.0 10012 +9988 DMTF1 cyclin D binding myb like transcription factor 1 Novel U 0.0021196813854723008 -0.2773622730936044 1.0 10013 +51690 LSM7 LSM7 homolog, U6 small nuclear RNA and mRNA degradation associated Novel N 0.002119271355471738 -0.27736580824697354 1.0 10014 +6390 SDHB succinate dehydrogenase complex iron sulfur subunit B Novel U 0.0021192491555117967 -0.2773659996482444 1.0 10015 +55515 ASIC4 acid sensing ion channel subunit family member 4 Novel U 0.0021185161449020413 -0.2773723194417306 1.0 10016 +253559 CADM2 cell adhesion molecule 2 Novel U 0.0021177756208904733 -0.2773787040134713 1.0 10017 +161247 FITM1 fat storage inducing transmembrane protein 1 Novel U 0.0021176983820846607 -0.2773793699428526 1.0 10018 +647042 GOLGA6L10 golgin A6 family like 10 Novel U 0.00211701149331832 -0.27738529208789875 1.0 10019 +26022 TMEM98 transmembrane protein 98 Novel N 0.0021169473623831557 -0.27738584500522473 1.0 10020 +56649 TMPRSS4 transmembrane serine protease 4 Novel U 0.002116882827712568 -0.2773864014034343 1.0 10021 +100419780 ZNF722 zinc finger protein 722 Novel U 0.0021165108112927524 -0.2773896088153263 1.0 10022 +3617 IMPG1 interphotoreceptor matrix proteoglycan 1 Novel N 0.0021155792999204208 -0.27739764002173023 1.0 10023 +10762 NUP50 nucleoporin 50 Novel U 0.0021152787584646157 -0.27740023119832363 1.0 10024 +110806297 FAM240B family with sequence similarity 240 member B Novel U 0.0021141967891466613 -0.27740955960715824 1.0 10025 +27069 GHITM growth hormone inducible transmembrane protein Novel N 0.0021134196375731805 -0.27741625997054525 1.0 10026 +55147 RBM23 RNA binding motif protein 23 Novel N 0.002113057972239102 -0.2774193781385391 1.0 10027 +81849 ST6GALNAC5 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 5 Novel U 0.00211238340640336 -0.2774251940390432 1.0 10028 +158763 ARHGAP36 Rho GTPase activating protein 36 Novel U 0.002112054157432211 -0.2774280327230616 1.0 10029 +6728 SRP19 signal recognition particle 19 Novel U 0.0021117554356052943 -0.2774306082113707 1.0 10030 +148014 TTC9B tetratricopeptide repeat domain 9B Novel U 0.002111587947257362 -0.27743205224472606 1.0 10031 +51259 TMEM216 transmembrane protein 216 Novel U 0.0021103957346125723 -0.2774423311378368 1.0 10032 +54495 TMX3 thioredoxin related transmembrane protein 3 Novel U 0.0021103197221042595 -0.27744298649445587 1.0 10033 +1486 CTBS chitobiase Novel U 0.0021098179879205123 -0.27744731229326974 1.0 10034 +441168 CALHM6 calcium homeostasis modulator family member 6 Novel U 0.002109230863539916 -0.2774523743002676 1.0 10035 +10838 ZNF275 zinc finger protein 275 Novel U 0.0021083989198029556 -0.2774595470649449 1.0 10036 +399671 HEATR4 HEAT repeat containing 4 Novel U 0.0021083953713974426 -0.27745957765821294 1.0 10037 +710 SERPING1 serpin family G member 1 Novel U 0.002107750762478992 -0.2774651352793302 1.0 10038 +119587 CPXM2 carboxypeptidase X, M14 family member 2 Novel U 0.0021072455305997293 -0.27746949123420606 1.0 10039 +133522 PPARGC1B PPARG coactivator 1 beta Novel U 0.002107166663471657 -0.2774701712024843 1.0 10040 +10766 TOB2 transducer of ERBB2, 2 Novel N 0.002107144770793333 -0.27747035995446695 1.0 10041 +145258 GSC goosecoid homeobox Novel U 0.00210661008292492 -0.2774749698698802 1.0 10042 +55916 NXT2 nuclear transport factor 2 like export factor 2 Novel U 0.002106325456619154 -0.2774774238309133 1.0 10043 +9356 SLC22A6 solute carrier family 22 member 6 Novel N 0.002105931526465218 -0.2774808201763245 1.0 10044 +5207 PFKFB1 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 Novel N 0.002104043823022429 -0.27749709537856976 1.0 10045 +4053 LTBP2 latent transforming growth factor beta binding protein 2 Novel U 0.0021039715884983165 -0.27749771816256347 1.0 10046 +151613 TTC14 tetratricopeptide repeat domain 14 Novel U 0.002103625681829665 -0.2775007004641595 1.0 10047 +2738 GLI4 GLI family zinc finger 4 Novel U 0.0021031930855178555 -0.2775044301773685 1.0 10048 +9275 BCL7B BAF chromatin remodeling complex subunit BCL7B Novel U 0.002102349078761524 -0.27751170694571264 1.0 10049 +51056 LAP3 leucine aminopeptidase 3 Novel U 0.0021016693543574705 -0.27751756732181637 1.0 10050 +257629 ANKS4B ankyrin repeat and sterile alpha motif domain containing 4B Novel N 0.002100209207067452 -0.2775301562655636 1.0 10051 +4799 NFX1 nuclear transcription factor, X-box binding 1 Novel U 0.0020999752966402306 -0.2775321729697895 1.0 10052 +285556 C4orf54 chromosome 4 open reading frame 54 Novel U 0.0020999464620153362 -0.27753242157311414 1.0 10053 +146227 BEAN1 brain expressed associated with NEDD4 1 Novel N 0.002099568591260817 -0.2775356794592911 1.0 10054 +3075 CFH complement factor H Novel U 0.0020989786244562107 -0.27754076597280014 1.0 10055 +2707 GJB3 gap junction protein beta 3 Novel U 0.0020988203669510337 -0.27754213042064996 1.0 10056 +23097 CDK19 cyclin dependent kinase 19 Novel U 0.0020985242215360903 -0.2775446836959224 1.0 10057 +101060226 NBPF19 NBPF member 19 Novel U 0.002098122823204097 -0.27754814442968284 1.0 10058 +57698 SHTN1 shootin 1 Novel N 0.0020980836821859155 -0.277548481891581 1.0 10059 +6227 RPS21 ribosomal protein S21 Novel N 0.0020961832658983027 -0.2775648667000895 1.0 10060 +111064649 SMIM33 small integral membrane protein 33 Novel U 0.002096084575970067 -0.2775657175744934 1.0 10061 +84530 SRRM4 serine/arginine repetitive matrix 4 Novel N 0.0020956637876454027 -0.27756934548284545 1.0 10062 +3068 HDGF heparin binding growth factor Novel N 0.002093629563147942 -0.2775868839448506 1.0 10063 +8612 PLPP2 phospholipid phosphatase 2 Novel N 0.002093312693230671 -0.27758961590044917 1.0 10064 +54974 THG1L tRNA-histidine guanylyltransferase 1 like Novel U 0.0020929402717643412 -0.2775928268045285 1.0 10065 +347549 CENPVL3 centromere protein V like 3 Novel U 0.0020924483346327263 -0.2775970681361527 1.0 10066 +3017 H2BC5 H2B clustered histone 5 Novel U 0.0020901940522855696 -0.27761650386969333 1.0 10067 +6158 RPL28 ribosomal protein L28 Novel N 0.0020901044014840376 -0.27761727681150894 1.0 10068 +571 BACH1 BTB domain and CNC homolog 1 Novel N 0.0020895584068414776 -0.27762198421047374 1.0 10069 +79625 NDNF neuron derived neurotrophic factor Novel U 0.002089532480754373 -0.27762220773727436 1.0 10070 +348995 NUP43 nucleoporin 43 Novel U 0.002089518953523484 -0.2776223243649255 1.0 10071 +79741 CCDC7 coiled-coil domain containing 7 Novel U 0.0020890943080224857 -0.27762598552867324 1.0 10072 +283208 P4HA3 prolyl 4-hydroxylase subunit alpha 3 Novel U 0.0020882290282310256 -0.2776334457066257 1.0 10073 +55870 ASH1L ASH1 like histone lysine methyltransferase Novel U 0.002087630527444738 -0.27763860579751704 1.0 10074 +133060 OTOP1 otopetrin 1 Novel N 0.0020867062401274524 -0.2776465747203259 1.0 10075 +5653 KLK6 kallikrein related peptidase 6 Novel U 0.0020860234786338446 -0.2776524612812876 1.0 10076 +10081 PDCD7 programmed cell death 7 Novel N 0.0020855695252032652 -0.27765637512904845 1.0 10077 +92822 ZNF276 zinc finger protein 276 Novel U 0.0020831801760474067 -0.2776769753673404 1.0 10078 +1004 CDH6 cadherin 6 Novel N 0.0020828386995468888 -0.27767991947338055 1.0 10079 +84418 CYSTM1 cysteine rich transmembrane module containing 1 Novel U 0.00208190070825258 -0.27768800654769166 1.0 10080 +10055 SAE1 SUMO1 activating enzyme subunit 1 Novel N 0.002081017546881585 -0.27769562089515865 1.0 10081 +57761 TRIB3 tribbles pseudokinase 3 Novel U 0.002080010964727158 -0.2777042993389059 1.0 10082 +388630 TRABD2B TraB domain containing 2B Novel U 0.0020790104567673788 -0.277712925412803 1.0 10083 +84519 ACRBP acrosin binding protein Novel U 0.002078346693224142 -0.2777186481792421 1.0 10084 +105372267 NFILZ NFIL3 like basic leucine zipper Novel U 0.00207811382259356 -0.277720655918659 1.0 10085 +84435 ADGRA1 adhesion G protein-coupled receptor A1 Novel U 0.0020771563280463637 -0.27772891114405673 1.0 10086 +116843 SLC18B1 solute carrier family 18 member B1 Novel U 0.0020770794652504323 -0.2777295738315958 1.0 10087 +548645 DNAJC25 DnaJ heat shock protein family (Hsp40) member C25 Novel U 0.002076142249635786 -0.2777376542182338 1.0 10088 +91748 MIDEAS mitotic deacetylase associated SANT domain protein Novel U 0.002076054117247877 -0.27773841406875116 1.0 10089 +389158 PLSCR5 phospholipid scramblase family member 5 Novel U 0.002075883373473898 -0.2777398861693951 1.0 10090 +3786 KCNQ3 potassium voltage-gated channel subfamily Q member 3 Novel N 0.0020738784921298225 -0.27775717164369834 1.0 10091 +56675 NRIP3 nuclear receptor interacting protein 3 Novel U 0.002073088873057115 -0.2777639794980539 1.0 10092 +27033 ZBTB32 zinc finger and BTB domain containing 32 Novel N 0.0020715697736437087 -0.27777707670899465 1.0 10093 +646424 SPINK8 serine peptidase inhibitor Kazal type 8 (putative) Novel U 0.002071421224766768 -0.27777835745201856 1.0 10094 +1911 PHC1 polyhomeotic homolog 1 Novel N 0.0020712808292846397 -0.2777795678989638 1.0 10095 +28316 CDH20 cadherin 20 Novel U 0.002071129338801024 -0.27778087400362156 1.0 10096 +374786 EFCAB5 EF-hand calcium binding domain 5 Novel U 0.0020704592453984426 -0.2777866513441736 1.0 10097 +79885 HDAC11 histone deacetylase 11 Novel N 0.0020700918961894027 -0.27778981851680046 1.0 10098 +29801 ZDHHC8 zinc finger DHHC-type palmitoyltransferase 8 Novel U 0.002068913461169902 -0.27779997862343614 1.0 10099 +51286 CEND1 cell cycle exit and neuronal differentiation 1 Novel U 0.0020677861050618445 -0.2778096983433059 1.0 10100 +605 BCL7A BAF chromatin remodeling complex subunit BCL7A Novel U 0.0020666831831419935 -0.2778192073990714 1.0 10101 +27294 DHDH dihydrodiol dehydrogenase Novel U 0.002066476673731813 -0.27782098786010145 1.0 10102 +7518 XRCC4 X-ray repair cross complementing 4 Novel U 0.002065513081139757 -0.2778292956609785 1.0 10103 +55651 NHP2 NHP2 ribonucleoprotein Novel U 0.0020645951935377143 -0.27783720940739814 1.0 10104 +55182 RNF220 ring finger protein 220 Novel U 0.0020638522567537013 -0.27784361478132563 1.0 10105 +6523 SLC5A1 solute carrier family 5 member 1 Novel U 0.0020631779976126186 -0.27784942803760204 1.0 10106 +27115 PDE7B phosphodiesterase 7B Novel N 0.0020623872079091263 -0.2778562459847785 1.0 10107 +283417 DPY19L2 dpy-19 like 2 Novel N 0.0020617299278048768 -0.2778619128529877 1.0 10108 +8331 H2AC14 H2A clustered histone 14 Novel U 0.0020617090426361304 -0.2778620929185306 1.0 10109 +80975 TMPRSS5 transmembrane serine protease 5 Novel N 0.0020615382294994623 -0.27786356561719844 1.0 10110 +349667 RTN4RL2 reticulon 4 receptor like 2 Novel U 0.0020613956570260114 -0.2778647948334977 1.0 10111 +84271 POLDIP3 DNA polymerase delta interacting protein 3 Novel N 0.0020611338096301456 -0.2778670524017303 1.0 10112 +57125 PLXDC1 plexin domain containing 1 Novel U 0.002061099572637447 -0.27786734758261933 1.0 10113 +26517 TIMM13 translocase of inner mitochondrial membrane 13 Novel U 0.0020610439140416113 -0.27786782745402466 1.0 10114 +80833 APOL3 apolipoprotein L3 Novel N 0.002060798384962652 -0.27786994433071543 1.0 10115 +57569 ARHGAP20 Rho GTPase activating protein 20 Novel U 0.0020606342995277377 -0.2778713590251946 1.0 10116 +81542 TMX1 thioredoxin related transmembrane protein 1 Novel U 0.002060569477396385 -0.27787191790180293 1.0 10117 +169044 COL22A1 collagen type XXII alpha 1 chain Novel U 0.0020599274674458173 -0.27787745311541334 1.0 10118 +388650 DIPK1A divergent protein kinase domain 1A Novel U 0.0020562694872860734 -0.2779089911025565 1.0 10119 +3050 HBZ hemoglobin subunit zeta Novel N 0.002055992000633401 -0.27791138350768235 1.0 10120 +79183 TTPAL alpha tocopherol transfer protein like Novel U 0.002053849758555737 -0.27792985326425634 1.0 10121 +64963 MRPS11 mitochondrial ribosomal protein S11 Novel U 0.0020535292276950773 -0.27793261678339015 1.0 10122 +25799 ZNF324 zinc finger protein 324 Novel U 0.002052644566060059 -0.27794024406567513 1.0 10123 +200895 DHFR2 dihydrofolate reductase 2 Novel N 0.0020519449663185434 -0.27794627580086495 1.0 10124 +8910 SGCE sarcoglycan epsilon Novel U 0.0020516913694300057 -0.27794846223574454 1.0 10125 +116135 LRRC3B leucine rich repeat containing 3B Novel U 0.0020505283721218856 -0.27795848924315014 1.0 10126 +10498 CARM1 coactivator associated arginine methyltransferase 1 Novel U 0.0020499216727172006 -0.27796372002002406 1.0 10127 +84218 TBC1D3F TBC1 domain family member 3F Novel U 0.0020494219062965656 -0.2779680288533856 1.0 10128 +151473 SLC16A14 solute carrier family 16 member 14 Novel U 0.002049268553067089 -0.27796935101806897 1.0 10129 +8529 CYP4F2 cytochrome P450 family 4 subfamily F member 2 Novel U 0.0020488366617044105 -0.277973074653422 1.0 10130 +64968 MRPS6 mitochondrial ribosomal protein S6 Novel U 0.0020477689768729395 -0.2779822799057792 1.0 10131 +51809 GALNT7 polypeptide N-acetylgalactosaminyltransferase 7 Novel N 0.0020475800964324564 -0.27798390837521947 1.0 10132 +391712 TRIM61 tripartite motif containing 61 Novel U 0.00204725013157337 -0.2779867532314049 1.0 10133 +100130742 LRRC69 leucine rich repeat containing 69 Novel U 0.0020456669535391207 -0.2780004029086336 1.0 10134 +23067 SETD1B SET domain containing 1B, histone lysine methyltransferase Novel U 0.0020451997626468733 -0.27800443088574384 1.0 10135 +23005 MAPKBP1 mitogen-activated protein kinase binding protein 1 Novel U 0.0020446031617421968 -0.27800957459643655 1.0 10136 +1825 DSC3 desmocollin 3 Novel U 0.0020432647625093633 -0.27802111386563816 1.0 10137 +118491 CFAP70 cilia and flagella associated protein 70 Novel N 0.0020425094762968003 -0.2780276257125649 1.0 10138 +79147 FKRP fukutin related protein Novel U 0.002042044928870636 -0.27803163089851834 1.0 10139 +57185 NIPAL3 NIPA like domain containing 3 Novel U 0.0020411475286499295 -0.27803936800899653 1.0 10140 +342035 GLDN gliomedin Novel U 0.002041074976823386 -0.27803999352867487 1.0 10141 +134359 POC5 POC5 centriolar protein Novel U 0.0020408983295305484 -0.27804151652765435 1.0 10142 +51657 STYXL1 serine/threonine/tyrosine interacting like 1 Novel U 0.0020400554069713514 -0.2780487839483821 1.0 10143 +56984 PSMG2 proteasome assembly chaperone 2 Novel U 0.0020395526272468318 -0.27805311876152905 1.0 10144 +22880 MORC2 MORC family CW-type zinc finger 2 Novel U 0.002039525780875455 -0.2780533502227394 1.0 10145 +55253 TYW1 tRNA-yW synthesizing protein 1 homolog Novel U 0.0020394897561336815 -0.2780536608170547 1.0 10146 +493861 EID3 EP300 interacting inhibitor of differentiation 3 Novel U 0.0020393300614881997 -0.278055037655489 1.0 10147 +9700 ESPL1 extra spindle pole bodies like 1, separase Novel U 0.0020392497424105314 -0.27805573014203305 1.0 10148 +135932 TMEM139 transmembrane protein 139 Novel U 0.002038560241327906 -0.27806167480967187 1.0 10149 +1136 CHRNA3 cholinergic receptor nicotinic alpha 3 subunit Novel N 0.002037497938585165 -0.2780708336593046 1.0 10150 +29100 TMEM208 transmembrane protein 208 Novel U 0.0020373819959844746 -0.2780718332809784 1.0 10151 +166785 MMAA metabolism of cobalamin associated A Novel U 0.0020358156700486666 -0.27808533766456395 1.0 10152 +7552 ZNF711 zinc finger protein 711 Novel N 0.002035363324304003 -0.278089237651348 1.0 10153 +54442 KCTD5 potassium channel tetramerization domain containing 5 Novel U 0.00203474733147094 -0.27809454855332155 1.0 10154 +122402 TDRD9 tudor domain containing 9 Novel N 0.0020339720390021125 -0.2781012328880763 1.0 10155 +3889 KRT83 keratin 83 Novel U 0.0020338712217994456 -0.2781021021031903 1.0 10156 +79650 USB1 U6 snRNA biogenesis phosphodiesterase 1 Novel U 0.0020327000937064984 -0.278112199211738 1.0 10157 +64783 RBM15 RNA binding motif protein 15 Novel N 0.002032573717958134 -0.27811328878482294 1.0 10158 +132720 FAM241A family with sequence similarity 241 member A Novel U 0.002032242800560795 -0.2781161418535021 1.0 10159 +23012 STK38L serine/threonine kinase 38 like Novel N 0.0020314000715144455 -0.2781234076058212 1.0 10160 +57126 CD177 CD177 molecule Novel U 0.002031158162867228 -0.27812549326825586 1.0 10161 +92369 SPSB4 splA/ryanodine receptor domain and SOCS box containing 4 Novel U 0.0020304531213340693 -0.2781315719209103 1.0 10162 +349136 WDR86 WD repeat domain 86 Novel U 0.0020303266975917073 -0.2781326619077848 1.0 10163 +20 ABCA2 ATP binding cassette subfamily A member 2 Novel U 0.002029313404026897 -0.2781413982152615 1.0 10164 +51651 PTRH2 peptidyl-tRNA hydrolase 2 Novel U 0.002029001161587168 -0.27814409027416276 1.0 10165 +140461 ASB8 ankyrin repeat and SOCS box containing 8 Novel U 0.002028905245717914 -0.27814491723147783 1.0 10166 +5778 PTPN7 protein tyrosine phosphatase non-receptor type 7 Novel N 0.0020288658714942833 -0.2781452567040021 1.0 10167 +7755 ZNF205 zinc finger protein 205 Novel N 0.0020288274401737616 -0.27814558804710393 1.0 10168 +105372481 ERVK3-1 endogenous retrovirus group K3 member 1 Novel U 0.002028427551114394 -0.2781490357683769 1.0 10169 +3273 HRG histidine rich glycoprotein Novel U 0.00202834726334317 -0.27814972798500637 1.0 10170 +6996 TDG thymine DNA glycosylase Novel N 0.00202797855166761 -0.2781529069044033 1.0 10171 +401505 TOMM5 translocase of outer mitochondrial membrane 5 Novel U 0.0020271300622766225 -0.2781602223206536 1.0 10172 +79598 CEP97 centrosomal protein 97 Novel U 0.0020268305587847783 -0.278162804548239 1.0 10173 +84817 TXNDC17 thioredoxin domain containing 17 Novel U 0.002026593079492933 -0.2781648520221251 1.0 10174 +168417 ZNF679 zinc finger protein 679 Novel U 0.0020255869903320236 -0.2781735262154329 1.0 10175 +3866 KRT15 keratin 15 Novel N 0.002025529754545383 -0.27817401968489536 1.0 10176 +80198 MUS81 MUS81 structure-specific endonuclease subunit Novel N 0.002024773272164129 -0.278180541844823 1.0 10177 +50632 CALY calcyon neuron specific vesicular protein Novel U 0.0020238064903844305 -0.27818887714190144 1.0 10178 +51079 NDUFA13 NADH:ubiquinone oxidoreductase subunit A13 Novel U 0.002023072815641531 -0.2781952026613406 1.0 10179 +84327 ZBED3 zinc finger BED-type containing 3 Novel N 0.0020225940871509635 -0.27819933011209796 1.0 10180 +64327 LMBR1 limb development membrane protein 1 Novel U 0.002022392466457155 -0.27820106842410935 1.0 10181 +54 ACP5 acid phosphatase 5, tartrate resistant Novel U 0.002022322104027336 -0.27820167506747817 1.0 10182 +5098 PCDHGC3 protocadherin gamma subfamily C, 3 Novel U 0.002021953501018073 -0.27820485304998743 1.0 10183 +55226 NAT10 N-acetyltransferase 10 Novel U 0.0020214913711864217 -0.2782088373921798 1.0 10184 +23450 SF3B3 splicing factor 3b subunit 3 Novel U 0.002021241709509972 -0.2782109898988633 1.0 10185 +29093 MRPL22 mitochondrial ribosomal protein L22 Novel U 0.002020813232506249 -0.27821468409665673 1.0 10186 +79924 ADM2 adrenomedullin 2 Novel U 0.002020701945603711 -0.2782156435783237 1.0 10187 +51397 COMMD10 COMM domain containing 10 Novel U 0.0020206577269917605 -0.27821602481768376 1.0 10188 +4076 CAPRIN1 cell cycle associated protein 1 Novel U 0.002020244479301716 -0.2782195877129884 1.0 10189 +29855 UBN1 ubinuclein 1 Novel N 0.0020189101339147786 -0.2782310920311694 1.0 10190 +5532 PPP3CB protein phosphatase 3 catalytic subunit beta Novel U 0.0020186635362653064 -0.27823321812074864 1.0 10191 +84572 GNPTG N-acetylglucosamine-1-phosphate transferase subunit gamma Novel U 0.002016829026221444 -0.278249034705763 1.0 10192 +2796 GNRH1 gonadotropin releasing hormone 1 Novel N 0.002016055991410062 -0.2782556995756852 1.0 10193 +29991 OBP2A odorant binding protein 2A Novel N 0.0020157024157978496 -0.27825874799656913 1.0 10194 +727800 RNF208 ring finger protein 208 Novel U 0.0020155239048822997 -0.2782602870631342 1.0 10195 +65250 CPLANE1 ciliogenesis and planar polarity effector complex subunit 1 Novel U 0.0020153112879803484 -0.27826212018109203 1.0 10196 +1406 CRX cone-rod homeobox Novel N 0.0020152041879802586 -0.27826304356456555 1.0 10197 +10772 SRSF10 serine and arginine rich splicing factor 10 Novel N 0.0020150280096467607 -0.27826456252032095 1.0 10198 +1032 CDKN2D cyclin dependent kinase inhibitor 2D Novel U 0.0020143560666357253 -0.2782703558076318 1.0 10199 +110599583 EEF1AKMT4-ECE2 EEF1AKMT4-ECE2 readthrough Novel U 0.0020134453220601333 -0.2782782079690601 1.0 10200 +9470 EIF4E2 eukaryotic translation initiation factor 4E family member 2 Novel U 0.002012561521796239 -0.27828582782486644 1.0 10201 +574537 UGT2A2 UDP glucuronosyltransferase family 2 member A2 Novel N 0.0020124955081338787 -0.2782863969744911 1.0 10202 +4163 MCC MCC regulator of WNT signaling pathway Novel U 0.002012003786176985 -0.2782906364509446 1.0 10203 +26586 CKAP2 cytoskeleton associated protein 2 Novel U 0.0020117053710042468 -0.27829320929537515 1.0 10204 +64779 MTHFSD methenyltetrahydrofolate synthetase domain containing Novel U 0.002011588378244234 -0.2782942179712017 1.0 10205 +554251 FBXO48 F-box protein 48 Novel U 0.0020113948822144275 -0.2782958862348428 1.0 10206 +110806299 ETDC embryonic testis differentiation homolog C Novel U 0.0020113413374206602 -0.2782963478816926 1.0 10207 +51704 GPRC5B G protein-coupled receptor class C group 5 member B Novel N 0.0020104950778363703 -0.278303644073231 1.0 10208 +1806 DPYD dihydropyrimidine dehydrogenase Novel U 0.00200986139230532 -0.27830910751624005 1.0 10209 +7274 TTPA alpha tocopherol transfer protein Novel U 0.0020098142580571026 -0.27830951389332503 1.0 10210 +11017 SNRNP27 small nuclear ribonucleoprotein U4/U6.U5 subunit 27 Novel U 0.002008506788803719 -0.27832078649369535 1.0 10211 +1618 DAZL deleted in azoospermia like Novel N 0.0020069442471448602 -0.2783342582504015 1.0 10212 +29123 ANKRD11 ankyrin repeat domain containing 11 Novel U 0.00200639658014725 -0.2783389800679005 1.0 10213 +5789 PTPRD protein tyrosine phosphatase receptor type D Novel U 0.0020055714809003415 -0.278346093821476 1.0 10214 +54829 ASPN asporin Novel U 0.00200522491792847 -0.2783490817815179 1.0 10215 +51234 EMC4 ER membrane protein complex subunit 4 Novel U 0.0020050452038948632 -0.27835063122099923 1.0 10216 +79095 BBLN bublin coiled coil protein Novel N 0.0020043210359017207 -0.27835687477614707 1.0 10217 +7716 VEZF1 vascular endothelial zinc finger 1 Novel U 0.002004316619886742 -0.2783569128496788 1.0 10218 +2128 EVX1 even-skipped homeobox 1 Novel U 0.0020040894494800826 -0.27835887144350696 1.0 10219 +7148 TNXB tenascin XB Novel U 0.0020039806463091918 -0.2783598095111987 1.0 10220 +339745 SPOPL speckle type BTB/POZ protein like Novel U 0.0020036262891304888 -0.2783628646705101 1.0 10221 +124491 TMEM170A transmembrane protein 170A Novel U 0.002003534264209994 -0.2783636580812539 1.0 10222 +386724 AMIGO3 adhesion molecule with Ig like domain 3 Novel U 0.0020026003689172355 -0.2783717098410913 1.0 10223 +1053 CEBPE CCAAT enhancer binding protein epsilon Novel U 0.002001676312466066 -0.278379676773443 1.0 10224 +5005 ORM2 orosomucoid 2 Novel U 0.0020005781334796776 -0.27838914493708555 1.0 10225 +8458 TTF2 transcription termination factor 2 Novel N 0.002000107111019483 -0.27839320594880373 1.0 10226 +64146 PDF peptide deformylase, mitochondrial Novel N 0.001999597736570927 -0.27839759761964616 1.0 10227 +7799 PRDM2 PR/SET domain 2 Novel N 0.001999401560577579 -0.2783992889891139 1.0 10228 +6036 RNASE2 ribonuclease A family member 2 Novel U 0.001998918167679993 -0.2784034566549633 1.0 10229 +161176 SYNE3 spectrin repeat containing nuclear envelope family member 3 Novel U 0.001998598502051713 -0.2784062127143279 1.0 10230 +49861 CLDN20 claudin 20 Novel U 0.0019984074252393505 -0.2784078601202154 1.0 10231 +54928 BPNT2 3'(2'), 5'-bisphosphate nucleotidase 2 Novel U 0.0019973982364244218 -0.278416561037793 1.0 10232 +8893 EIF2B5 eukaryotic translation initiation factor 2B subunit epsilon Novel U 0.001997151059899817 -0.27841869211825665 1.0 10233 +342865 VSTM2B V-set and transmembrane domain containing 2B Novel U 0.0019963230886198393 -0.27842583063362375 1.0 10234 +79677 SMC6 structural maintenance of chromosomes 6 Novel U 0.001995860966304659 -0.2784298149110114 1.0 10235 +10739 RFPL2 ret finger protein like 2 Novel U 0.001995811675103734 -0.27843023988468346 1.0 10236 +51314 NME8 NME/NM23 family member 8 Novel N 0.001995644151286165 -0.2784316842238472 1.0 10237 +56950 SMYD2 SET and MYND domain containing 2 Novel N 0.0019951985134583857 -0.2784355263770217 1.0 10238 +83416 FCRL5 Fc receptor like 5 Novel U 0.0019951242760407888 -0.27843616642935093 1.0 10239 +503582 ARGFX arginine-fifty homeobox Novel U 0.0019948830607897147 -0.2784382461135359 1.0 10240 +55351 STK32B serine/threonine kinase 32B Novel U 0.001994502461273223 -0.27844152752626466 1.0 10241 +51232 CRIM1 cysteine rich transmembrane BMP regulator 1 Novel U 0.001993917142111835 -0.2784465739692142 1.0 10242 +64410 KLHL25 kelch like family member 25 Novel U 0.001993714930896669 -0.2784483173725203 1.0 10243 +11329 STK38 serine/threonine kinase 38 Novel U 0.001993396297577222 -0.27845106453163354 1.0 10244 +1327 COX4I1 cytochrome c oxidase subunit 4I1 Novel N 0.001993327675002567 -0.2784516561745028 1.0 10245 +6222 RPS18 ribosomal protein S18 Novel N 0.001993178239139853 -0.2784529445648469 1.0 10246 +283875 GREP1 glycine rich extracellular protein 1 Novel U 0.001992109995642435 -0.27846215463385116 1.0 10247 +643866 CBLN3 cerebellin 3 precursor Novel U 0.001991037896685327 -0.2784713979434507 1.0 10248 +2627 GATA6 GATA binding protein 6 Novel U 0.0019907343113555937 -0.278474015363395 1.0 10249 +56975 FAM20C FAM20C golgi associated secretory pathway kinase Novel U 0.001989406865026263 -0.2784854602000096 1.0 10250 +1758 DMP1 dentin matrix acidic phosphoprotein 1 Novel U 0.001989069029422295 -0.2784883729153523 1.0 10251 +51751 HIGD1B HIG1 hypoxia inducible domain family member 1B Novel U 0.0019889984235534615 -0.27848898165757785 1.0 10252 +54512 EXOSC4 exosome component 4 Novel N 0.0019888530661258635 -0.2784902348849007 1.0 10253 +23568 ARL2BP ADP ribosylation factor like GTPase 2 binding protein Novel U 0.0019886984309263798 -0.2784915681023377 1.0 10254 +317671 RFESD Rieske Fe-S domain containing Novel U 0.0019884511818098944 -0.27849369980866645 1.0 10255 +27255 CNTN6 contactin 6 Novel N 0.0019875121328894875 -0.27850179600150654 1.0 10256 +221476 PI16 peptidase inhibitor 16 Novel U 0.0019859761739361497 -0.2785150385702487 1.0 10257 +112616 CMTM7 CKLF like MARVEL transmembrane domain containing 7 Novel U 0.0019853095600793134 -0.2785207859112206 1.0 10258 +100533496 TVP23C-CDRT4 TVP23C-CDRT4 readthrough Novel U 0.0019850193881841994 -0.2785232876846304 1.0 10259 +8801 SUCLG2 succinate-CoA ligase GDP-forming subunit beta Novel U 0.0019847331781680036 -0.2785257552999309 1.0 10260 +548596 CKMT1A creatine kinase, mitochondrial 1A Novel U 0.0019842639545919745 -0.27852980080221956 1.0 10261 +11103 KRR1 KRR1 small subunit processome component homolog Novel N 0.0019840758085425464 -0.27853142293996463 1.0 10262 +79024 SMIM2 small integral membrane protein 2 Novel U 0.001984054099740375 -0.27853161010662325 1.0 10263 +8379 MAD1L1 mitotic arrest deficient 1 like 1 Novel U 0.0019830927136185584 -0.27853989888398817 1.0 10264 +129293 TRABD2A TraB domain containing 2A Novel N 0.001983023904550557 -0.278540492134746 1.0 10265 +83856 FSD1L fibronectin type III and SPRY domain containing 1 like Novel U 0.001982983721668714 -0.27854083857927436 1.0 10266 +643236 TMEM72 transmembrane protein 72 Novel U 0.0019821205778654703 -0.2785482803413891 1.0 10267 +6738 RO60 Ro60, Y RNA binding protein Novel U 0.0019819374585250543 -0.27854985914038516 1.0 10268 +9238 TBRG4 transforming growth factor beta regulator 4 Novel N 0.001981310764122813 -0.27855526230801797 1.0 10269 +29882 ANAPC2 anaphase promoting complex subunit 2 Novel U 0.0019812847263572186 -0.2785554867976764 1.0 10270 +22911 WDR47 WD repeat domain 47 Novel U 0.001980168807264447 -0.2785651079110952 1.0 10271 +130560 SPATA3 spermatogenesis associated 3 Novel U 0.001979350161132302 -0.27857216602788726 1.0 10272 +6480 ST6GAL1 ST6 beta-galactoside alpha-2,6-sialyltransferase 1 Novel U 0.001979256822486333 -0.2785729707651706 1.0 10273 +4716 NDUFB10 NADH:ubiquinone oxidoreductase subunit B10 Novel U 0.0019787864510823865 -0.2785770261636808 1.0 10274 +122481 AK7 adenylate kinase 7 Novel N 0.0019782240563299054 -0.27858187495938186 1.0 10275 +3035 HARS1 histidyl-tRNA synthetase 1 Novel U 0.0019776933560144592 -0.2785864504953319 1.0 10276 +91433 RCCD1 RCC1 domain containing 1 Novel U 0.001976801112392214 -0.2785941431471939 1.0 10277 +51321 AMZ2 archaelysin family metallopeptidase 2 Novel U 0.0019765000252494743 -0.2785967390285333 1.0 10278 +2965 GTF2H1 general transcription factor IIH subunit 1 Novel U 0.001975839000784141 -0.27860243817947966 1.0 10279 +29915 HCFC2 host cell factor C2 Novel U 0.0019755517255587683 -0.2786049149786881 1.0 10280 +8864 PER2 period circadian regulator 2 Novel N 0.001975199241761359 -0.2786079539862785 1.0 10281 +167465 ZNF366 zinc finger protein 366 Novel N 0.001974069162283016 -0.27861769718621465 1.0 10282 +54997 TESC tescalcin Novel U 0.0019740418386655707 -0.2786179327620948 1.0 10283 +255308 EIF2S3B eukaryotic translation initiation factor 2 subunit gamma B Novel U 0.0019731055400593316 -0.2786260052425666 1.0 10284 +4488 MSX2 msh homeobox 2 Novel U 0.001972237672560415 -0.27863348773094204 1.0 10285 +83942 TSSK1B testis specific serine kinase 1B Novel N 0.0019721378798793496 -0.27863434811294385 1.0 10286 +201161 CENPV centromere protein V Novel U 0.0019716869616004952 -0.2786382357925539 1.0 10287 +24150 TP53TG3 TP53 target 3 Novel U 0.001971416255422938 -0.27864056973849527 1.0 10288 +26051 PPP1R16B protein phosphatase 1 regulatory subunit 16B Novel U 0.001971310233105713 -0.2786414838305164 1.0 10289 +729540 RGPD6 RANBP2 like and GRIP domain containing 6 Novel U 0.001971078089221795 -0.27864348530414573 1.0 10290 +2077 ERF ETS2 repressor factor Novel U 0.0019708652800227763 -0.27864532008003007 1.0 10291 +4103 MAGEA4 MAGE family member A4 Novel N 0.001970572333309151 -0.2786478457770773 1.0 10292 +140767 NRSN1 neurensin 1 Novel U 0.00197002792474727 -0.2786525395013391 1.0 10293 +54877 ZCCHC2 zinc finger CCHC-type containing 2 Novel U 0.001969973273634943 -0.2786530106865295 1.0 10294 +7417 VDAC2 voltage dependent anion channel 2 Novel N 0.0019694492922344435 -0.278657528294048 1.0 10295 +1025 CDK9 cyclin dependent kinase 9 Novel U 0.0019688504684774325 -0.27866269116949427 1.0 10296 +54663 WDR74 WD repeat domain 74 Novel N 0.0019682785503020595 -0.27866762207323736 1.0 10297 +83463 MXD3 MAX dimerization protein 3 Novel U 0.0019669636388330914 -0.2786789588381163 1.0 10298 +729246 PRR20D proline rich 20D Novel U 0.001966268473442801 -0.2786849523416849 1.0 10299 +27350 APOBEC3C apolipoprotein B mRNA editing enzyme catalytic subunit 3C Novel N 0.0019661960215180455 -0.2786855770000405 1.0 10300 +55249 YY1AP1 YY1 associated protein 1 Novel U 0.001964898864716203 -0.27869676068960486 1.0 10301 +129285 PPP1R21 protein phosphatase 1 regulatory subunit 21 Novel N 0.0019645663202346323 -0.2786996277865071 1.0 10302 +2926 GRSF1 G-rich RNA sequence binding factor 1 Novel N 0.001964491760450931 -0.27870027061817837 1.0 10303 +80864 EGFL8 EGF like domain multiple 8 Novel U 0.0019631639232501187 -0.2787117188247674 1.0 10304 +54970 TTC12 tetratricopeptide repeat domain 12 Novel N 0.001961708369027001 -0.27872426816849544 1.0 10305 +1266 CNN3 calponin 3 Novel U 0.001960904518329408 -0.27873119872357194 1.0 10306 +55578 SUPT20H SPT20 homolog, SAGA complex component Novel U 0.001960649097319238 -0.2787334008854709 1.0 10307 +796 CALCA calcitonin related polypeptide alpha Novel U 0.001959599930453999 -0.2787424464815818 1.0 10308 +6160 RPL31 ribosomal protein L31 Novel U 0.001959526316574293 -0.278743081157958 1.0 10309 +6950 TCP1 t-complex 1 Novel U 0.001958219801894085 -0.27875434552829004 1.0 10310 +253714 MMS22L MMS22 like, DNA repair protein Novel N 0.0019579447795985373 -0.27875671668648183 1.0 10311 +64949 MRPS26 mitochondrial ribosomal protein S26 Novel U 0.0019577040687630103 -0.27875879202175 1.0 10312 +245711 SPDYA speedy/RINGO cell cycle regulator family member A Novel U 0.0019575915149727453 -0.27875976242613587 1.0 10313 +10809 STARD10 StAR related lipid transfer domain containing 10 Novel U 0.0019575003945292713 -0.2787605480387552 1.0 10314 +7704 ZBTB16 zinc finger and BTB domain containing 16 Novel U 0.0019568776087131637 -0.2787659175077527 1.0 10315 +83986 FAM234A family with sequence similarity 234 member A Novel U 0.0019562282218944975 -0.27877151632246566 1.0 10316 +51106 TFB1M transcription factor B1, mitochondrial Novel N 0.0019555337393390108 -0.2787775039388413 1.0 10317 +10861 SLC26A1 solute carrier family 26 member 1 Novel N 0.0019547581955075234 -0.27878419044076813 1.0 10318 +285672 SREK1IP1 SREK1 interacting protein 1 Novel U 0.0019541681254661805 -0.2787892778443528 1.0 10319 +64221 ROBO3 roundabout guidance receptor 3 Novel N 0.0019539672093478832 -0.27879101008172946 1.0 10320 +8813 DPM1 dolichyl-phosphate mannosyltransferase subunit 1, catalytic Novel U 0.0019531206164767549 -0.2787983091467651 1.0 10321 +25903 OLFML2B olfactomedin like 2B Novel U 0.0019517479507722571 -0.27881014385101444 1.0 10322 +401474 SAMD12 sterile alpha motif domain containing 12 Novel N 0.0019505839555593917 -0.2788201794620497 1.0 10323 +64123 ADGRL4 adhesion G protein-coupled receptor L4 Novel N 0.001950228340853475 -0.2788232454633765 1.0 10324 +55132 LARP1B La ribonucleoprotein 1B Novel U 0.0019497970785226641 -0.27882696367540893 1.0 10325 +11081 KERA keratocan Novel U 0.0019493264481344002 -0.2788310213068028 1.0 10326 +64755 RUSF1 RUS family member 1 Novel U 0.0019486327482047176 -0.27883700217561785 1.0 10327 +473 RERE arginine-glutamic acid dipeptide repeats Novel U 0.0019484392413844072 -0.2788386705322914 1.0 10328 +23261 CAMTA1 calmodulin binding transcription activator 1 Novel U 0.00194805438062522 -0.27884198868415255 1.0 10329 +57082 KNL1 kinetochore scaffold 1 Novel U 0.0019478476586904097 -0.278843770977505 1.0 10330 +9770 RASSF2 Ras association domain family member 2 Novel U 0.0019468697886738376 -0.27885220187397347 1.0 10331 +83483 PLVAP plasmalemma vesicle associated protein Novel U 0.00194675003379793 -0.27885323436391923 1.0 10332 +155185 AMZ1 archaelysin family metallopeptidase 1 Novel U 0.001946668776015118 -0.2788539349436921 1.0 10333 +10949 HNRNPA0 heterogeneous nuclear ribonucleoprotein A0 Novel N 0.001943320408171103 -0.2788828035480594 1.0 10334 +4191 MDH2 malate dehydrogenase 2 Novel U 0.001942692131808505 -0.27888822035487104 1.0 10335 +79906 MORN1 MORN repeat containing 1 Novel U 0.0019424137272909575 -0.2788906206735473 1.0 10336 +23598 PATZ1 POZ/BTB and AT hook containing zinc finger 1 Novel N 0.001942217479206143 -0.27889231266456577 1.0 10337 +10085 EDIL3 EGF like repeats and discoidin domains 3 Novel U 0.0019419919324895369 -0.2788942572594345 1.0 10338 +55627 SMPD4 sphingomyelin phosphodiesterase 4 Novel U 0.0019419859156215122 -0.278894309135032 1.0 10339 +220202 ATOH7 atonal bHLH transcription factor 7 Novel U 0.0019409929553319894 -0.2789028701352225 1.0 10340 +199221 DZIP1L DAZ interacting zinc finger protein 1 like Novel U 0.001940459425164849 -0.2789074700692892 1.0 10341 +55325 UFSP2 UFM1 specific peptidase 2 Novel U 0.0019402742975456683 -0.278909066183051 1.0 10342 +2297 FOXD1 forkhead box D1 Novel U 0.0019392111054602104 -0.27891823270032484 1.0 10343 +1145 CHRNE cholinergic receptor nicotinic epsilon subunit Novel U 0.0019391457388817919 -0.2789187962709895 1.0 10344 +7528 YY1 YY1 transcription factor Novel U 0.001939137628667335 -0.27891886619478024 1.0 10345 +3839 KPNA3 karyopherin subunit alpha 3 Novel N 0.0019389908304745748 -0.2789201318439401 1.0 10346 +23019 CNOT1 CCR4-NOT transcription complex subunit 1 Novel U 0.001938966916377345 -0.27892033802397886 1.0 10347 +9526 MPDU1 mannose-P-dolichol utilization defect 1 Novel U 0.0019379288482977838 -0.2789292879297512 1.0 10348 +79137 RETREG2 reticulophagy regulator family member 2 Novel U 0.001937515011753673 -0.27893285590197564 1.0 10349 +2747 GLUD2 glutamate dehydrogenase 2 Novel N 0.0019373202969126728 -0.2789345346738344 1.0 10350 +55890 GPRC5C G protein-coupled receptor class C group 5 member C Novel U 0.0019364075001539072 -0.2789424045285589 1.0 10351 +222256 CDHR3 cadherin related family member 3 Novel U 0.0019363679702975698 -0.2789427453429008 1.0 10352 +79993 ELOVL7 ELOVL fatty acid elongase 7 Novel N 0.001935853828881249 -0.2789471781130826 1.0 10353 +3775 KCNK1 potassium two pore domain channel subfamily K member 1 Novel N 0.0019353061025358215 -0.27895190044226037 1.0 10354 +51614 ERGIC3 ERGIC and golgi 3 Novel U 0.0019348575685530635 -0.27895576756519813 1.0 10355 +55670 PEX26 peroxisomal biogenesis factor 26 Novel U 0.0019342774139164496 -0.2789607694811932 1.0 10356 +150684 COMMD1 copper metabolism domain containing 1 Novel U 0.0019341976106901498 -0.2789614575202243 1.0 10357 +390937 ERFL ETS repressor factor like Novel U 0.0019336247620850128 -0.2789663964458485 1.0 10358 +6193 RPS5 ribosomal protein S5 Novel N 0.00193349430728014 -0.27896752118731216 1.0 10359 +123264 SLC51B SLC51 subunit beta Novel U 0.0019323533164934928 -0.2789773584612142 1.0 10360 +653192 TRIM43B tripartite motif containing 43B Novel U 0.001932351451103726 -0.2789773745440348 1.0 10361 +283489 CHAMP1 chromosome alignment maintaining phosphoprotein 1 Novel U 0.001931201838484596 -0.2789872861527419 1.0 10362 +90161 HS6ST2 heparan sulfate 6-O-sulfotransferase 2 Novel U 0.0019307498472144015 -0.27899118308335547 1.0 10363 +641654 HEPN1 hepatocellular carcinoma, down-regulated 1 Novel U 0.0019306219811742714 -0.2789922855052805 1.0 10364 +84881 RPUSD4 RNA pseudouridine synthase D4 Novel N 0.0019303947248309008 -0.27899424484002877 1.0 10365 +80131 LRRC8E leucine rich repeat containing 8 VRAC subunit E Novel U 0.0019298869823614095 -0.27899862244044643 1.0 10366 +729974 RFPL4AL1 ret finger protein like 4A like 1 Novel U 0.0019296928752091727 -0.2790002959729983 1.0 10367 +23524 SRRM2 serine/arginine repetitive matrix 2 Novel U 0.001928805287401465 -0.2790079484838501 1.0 10368 +5268 SERPINB5 serpin family B member 5 Novel U 0.0019286757695954517 -0.27900906514679585 1.0 10369 +349149 GJC3 gap junction protein gamma 3 Novel U 0.0019277482374762203 -0.2790170620452955 1.0 10370 +66005 CHID1 chitinase domain containing 1 Novel N 0.001926486452999671 -0.27902794076548015 1.0 10371 +3753 KCNE1 potassium voltage-gated channel subfamily E regulatory subunit 1 Novel U 0.0019264214383995105 -0.2790285013014958 1.0 10372 +79618 HMBOX1 homeobox containing 1 Novel U 0.001925432622749439 -0.2790370265678715 1.0 10373 +541468 LURAP1 leucine rich adaptor protein 1 Novel U 0.0019249851835464785 -0.27904088425195234 1.0 10374 +388886 LRRC75B leucine rich repeat containing 75B Novel U 0.0019243364780795547 -0.2790464771922588 1.0 10375 +105376752 NPIPA9 nuclear pore complex interacting protein family, member A9 Novel U 0.0019242202025986671 -0.2790474796839239 1.0 10376 +90416 CCDC32 coiled-coil domain containing 32 Novel U 0.0019241625244116047 -0.2790479769676276 1.0 10377 +126074 SWSAP1 SWIM-type zinc finger 7 associated protein 1 Novel N 0.0019235078794464747 -0.27905362111647264 1.0 10378 +268 AMH anti-Mullerian hormone Novel N 0.0019232786812448243 -0.27905559719332956 1.0 10379 +100134444 KCNJ18 potassium inwardly rectifying channel subfamily J member 18 Novel U 0.001923222060498042 -0.2790560853601064 1.0 10380 +79158 GNPTAB N-acetylglucosamine-1-phosphate transferase subunits alpha and beta Novel U 0.0019232193598380277 -0.27905610864437175 1.0 10381 +27102 EIF2AK1 eukaryotic translation initiation factor 2 alpha kinase 1 Novel N 0.0019227295068434324 -0.27906033200720337 1.0 10382 +7263 TST thiosulfate sulfurtransferase Novel N 0.001922539067732987 -0.27906197391501986 1.0 10383 +4325 MMP16 matrix metallopeptidase 16 Novel N 0.0019221761083629814 -0.27906510323979605 1.0 10384 +105378803 LRRC53 leucine rich repeat containing 53 Novel U 0.001922051103149656 -0.2790661809965466 1.0 10385 +11173 ADAMTS7 ADAM metallopeptidase with thrombospondin type 1 motif 7 Novel U 0.0019210989755858844 -0.2790743899494533 1.0 10386 +439921 MXRA7 matrix remodeling associated 7 Novel U 0.0019210048868103034 -0.27907520115412504 1.0 10387 +54039 PCBP3 poly(rC) binding protein 3 Novel U 0.0019208982744664592 -0.27907612033317536 1.0 10388 +4948 OCA2 OCA2 melanosomal transmembrane protein Novel U 0.0019207984781650733 -0.27907698074639053 1.0 10389 +79691 QTRT2 queuine tRNA-ribosyltransferase accessory subunit 2 Novel N 0.0019205760679285766 -0.2790788982994861 1.0 10390 +10661 KLF1 KLF transcription factor 1 Novel U 0.0019197838680803487 -0.2790857284044996 1.0 10391 +92999 ZBTB47 zinc finger and BTB domain containing 47 Novel U 0.0019190114816886826 -0.2790923876839452 1.0 10392 +204 AK2 adenylate kinase 2 Novel U 0.0019184875482033585 -0.27909690487835365 1.0 10393 +55746 NUP133 nucleoporin 133 Novel U 0.001917867023824102 -0.27910225484993373 1.0 10394 +51406 NOL7 nucleolar protein 7 Novel N 0.001917626628065723 -0.27910432746870306 1.0 10395 +55035 NOL8 nucleolar protein 8 Novel N 0.0019171752861578005 -0.2791082188007135 1.0 10396 +80122 MAP3K19 mitogen-activated protein kinase kinase kinase 19 Novel U 0.0019170013044275405 -0.27910971881802704 1.0 10397 +6217 RPS16 ribosomal protein S16 Novel N 0.0019168675288842064 -0.27911087218988295 1.0 10398 +221154 MICU2 mitochondrial calcium uptake 2 Novel N 0.0019166385226269955 -0.2791128466118536 1.0 10399 +4637 MYL6 myosin light chain 6 Novel U 0.001916553771916336 -0.27911357730658304 1.0 10400 +138046 RALYL RALY RNA binding protein like Novel U 0.0019159654039190275 -0.27911865003566416 1.0 10401 +342574 KRT27 keratin 27 Novel U 0.0019157147964173292 -0.279120810696964 1.0 10402 +84858 ZNF503 zinc finger protein 503 Novel N 0.001915039371167615 -0.27912663400707266 1.0 10403 +79411 GLB1L galactosidase beta 1 like Novel U 0.0019145276724835568 -0.2791310457167634 1.0 10404 +80145 THOC7 THO complex subunit 7 Novel N 0.0019143966211410334 -0.2791321756013923 1.0 10405 +5555 PRH2 proline rich protein HaeIII subfamily 2 Novel U 0.0019141571124474059 -0.27913424057216046 1.0 10406 +6671 SP4 Sp4 transcription factor Novel N 0.0019138618221224372 -0.2791367864751085 1.0 10407 +5091 PC pyruvate carboxylase Novel U 0.0019135871733419402 -0.2791391544129676 1.0 10408 +9215 LARGE1 LARGE xylosyl- and glucuronyltransferase 1 Novel U 0.0019134648813805154 -0.2791402087768894 1.0 10409 +5067 CNTN3 contactin 3 Novel U 0.0019129594929761342 -0.27914456608127697 1.0 10410 +783 CACNB2 calcium voltage-gated channel auxiliary subunit beta 2 Novel U 0.001912698902974374 -0.27914681280864184 1.0 10411 +54539 NDUFB11 NADH:ubiquinone oxidoreductase subunit B11 Novel U 0.0019122664860096155 -0.27915054097557535 1.0 10412 +101060321 TBC1D3G TBC1 domain family member 3G Novel U 0.0019119878720311185 -0.27915294310016 1.0 10413 +10412 NSA2 NSA2 ribosome biogenesis factor Novel U 0.0019119521072193358 -0.2791532514534383 1.0 10414 +27092 CACNG4 calcium voltage-gated channel auxiliary subunit gamma 4 Novel U 0.001911150620227222 -0.27916016162936835 1.0 10415 +6736 SRY sex determining region Y Novel U 0.0019098316006008814 -0.27917153381352483 1.0 10416 +10022 INSL5 insulin like 5 Novel U 0.0019097404271882729 -0.27917231988282787 1.0 10417 +282679 AQP11 aquaporin 11 Novel U 0.0019095146851705607 -0.279174266161523 1.0 10418 +5078 PAX4 paired box 4 Novel U 0.0019094379326251116 -0.2791749278985161 1.0 10419 +23381 SMG5 SMG5 nonsense mediated mRNA decay factor Novel N 0.001909317286918425 -0.2791759680689326 1.0 10420 +55508 SLC35E3 solute carrier family 35 member E3 Novel U 0.001909062754723425 -0.2791781625677387 1.0 10421 +114787 GPRIN1 G protein regulated inducer of neurite outgrowth 1 Novel U 0.0019088792425986925 -0.2791797447532011 1.0 10422 +4085 MAD2L1 mitotic arrest deficient 2 like 1 Novel U 0.0019084155170994604 -0.2791837428527517 1.0 10423 +59084 ENPP5 ectonucleotide pyrophosphatase/phosphodiesterase family member 5 Novel U 0.0019081010845249128 -0.27918645379432616 1.0 10424 +81537 SGPP1 sphingosine-1-phosphate phosphatase 1 Novel U 0.0019080847763731069 -0.27918659439822757 1.0 10425 +173 AFM afamin Novel U 0.0019079848443290161 -0.2791874559817748 1.0 10426 +51131 PHF11 PHD finger protein 11 Novel U 0.0019077756853196134 -0.27918925928683974 1.0 10427 +482 ATP1B2 ATPase Na+/K+ transporting subunit beta 2 Novel U 0.0019075559701384733 -0.27919115360399166 1.0 10428 +8926 SNURF SNRPN upstream open reading frame Novel U 0.0019074116954031122 -0.2791923974966729 1.0 10429 +140766 ADAMTS14 ADAM metallopeptidase with thrombospondin type 1 motif 14 Novel N 0.0019072467545114891 -0.27919381956663836 1.0 10430 +105180391 SPDYE15 speedy/RINGO cell cycle regulator family member E15 Novel U 0.0019063464150704263 -0.2792015820181763 1.0 10431 +55526 DHTKD1 dehydrogenase E1 and transketolase domain containing 1 Novel N 0.0019055314451218938 -0.2792086084400366 1.0 10432 +7866 IFRD2 interferon related developmental regulator 2 Novel N 0.0019053079011062564 -0.2792105357682296 1.0 10433 +643338 C15orf62 chromosome 15 open reading frame 62 Novel U 0.0019051993266299392 -0.2792114718641865 1.0 10434 +6665 SOX15 SRY-box transcription factor 15 Novel N 0.0019046695432713967 -0.2792160394944143 1.0 10435 +641 BLM BLM RecQ like helicase Novel U 0.001904538200096959 -0.2792171718951289 1.0 10436 +11094 CACFD1 calcium channel flower domain containing 1 Novel U 0.0019041461645636964 -0.27922055190569967 1.0 10437 +7586 ZKSCAN1 zinc finger with KRAB and SCAN domains 1 Novel U 0.0019041060305684215 -0.27922089792874294 1.0 10438 +391253 SPINT4 serine peptidase inhibitor, Kunitz type 4 Novel U 0.0019040121985102823 -0.27922170692007525 1.0 10439 +6595 SMARCA2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 2 Novel U 0.0019036177402482195 -0.27922510781867343 1.0 10440 +4622 MYH4 myosin heavy chain 4 Novel N 0.0019033997519952647 -0.27922698724677825 1.0 10441 +3065 HDAC1 histone deacetylase 1 Novel U 0.0019033246250628824 -0.2792276349682322 1.0 10442 +1352 COX10 cytochrome c oxidase assembly factor heme A:farnesyltransferase COX10 Novel N 0.0019026225316182614 -0.2792336882033682 1.0 10443 +222234 FAM185A family with sequence similarity 185 member A Novel U 0.001902487434875249 -0.27923485296620404 1.0 10444 +388468 POTEC POTE ankyrin domain family member C Novel U 0.0019023579742599216 -0.2792359691360692 1.0 10445 +257240 KLHL34 kelch like family member 34 Novel U 0.0019020028132531197 -0.2792390312257409 1.0 10446 +196483 EEF2KMT eukaryotic elongation factor 2 lysine methyltransferase Novel N 0.0019018784233979717 -0.27924010367706126 1.0 10447 +2538 G6PC1 glucose-6-phosphatase catalytic subunit 1 Novel U 0.001901056810556925 -0.2792471873719109 1.0 10448 +776 CACNA1D calcium voltage-gated channel subunit alpha1 D Novel U 0.001901026254572417 -0.2792474508162721 1.0 10449 +2813 GP2 glycoprotein 2 Novel U 0.0019009707315578463 -0.2792479295187372 1.0 10450 +2180 ACSL1 acyl-CoA synthetase long chain family member 1 Novel U 0.0019001651977649386 -0.2792548745849472 1.0 10451 +84665 MYPN myopalladin Novel U 0.001899670535790955 -0.2792591394093296 1.0 10452 +388695 LYSMD1 LysM domain containing 1 Novel U 0.0018984099165410024 -0.2792700080832866 1.0 10453 +7384 UQCRC1 ubiquinol-cytochrome c reductase core protein 1 Novel N 0.0018978246121620923 -0.2792750543987861 1.0 10454 +11272 PRR4 proline rich 4 Novel N 0.0018975626596038327 -0.2792773128736967 1.0 10455 +9446 GSTO1 glutathione S-transferase omega 1 Novel U 0.0018974896610598868 -0.279277942244836 1.0 10456 +5936 RBM4 RNA binding motif protein 4 Novel U 0.0018972815973524841 -0.2792797361065417 1.0 10457 +84759 PCGF1 polycomb group ring finger 1 Novel N 0.001897026501385978 -0.27928193546601354 1.0 10458 +26953 RANBP6 RAN binding protein 6 Novel U 0.0018967322668009688 -0.27928447226669423 1.0 10459 +1990 CELA1 chymotrypsin like elastase 1 Novel U 0.001895530637807931 -0.27929483234468216 1.0 10460 +513 ATP5F1D ATP synthase F1 subunit delta Novel U 0.001895316086037678 -0.2792966821444832 1.0 10461 +83937 RASSF4 Ras association domain family member 4 Novel U 0.0018946390384759297 -0.27930251944167056 1.0 10462 +51138 COPS4 COP9 signalosome subunit 4 Novel N 0.0018941562361528342 -0.279306682015767 1.0 10463 +253512 SLC25A30 solute carrier family 25 member 30 Novel N 0.0018939046932850967 -0.27930885074150696 1.0 10464 +221400 TDRD6 tudor domain containing 6 Novel U 0.0018937791750467615 -0.27930993292140244 1.0 10465 +3640 INSL3 insulin like 3 Novel U 0.001893073621532988 -0.2793160159881974 1.0 10466 +51 ACOX1 acyl-CoA oxidase 1 Novel U 0.0018930523031161534 -0.27931619978907285 1.0 10467 +64651 CSRNP1 cysteine and serine rich nuclear protein 1 Novel U 0.0018910106926312551 -0.2793338019308047 1.0 10468 +152189 CMTM8 CKLF like MARVEL transmembrane domain containing 8 Novel U 0.0018902128586991257 -0.27934068061116796 1.0 10469 +4760 NEUROD1 neuronal differentiation 1 Novel U 0.0018895727171309219 -0.27934619971615654 1.0 10470 +4898 NRDC nardilysin convertase Novel U 0.0018895297076335655 -0.27934657053090006 1.0 10471 +4255 MGMT O-6-methylguanine-DNA methyltransferase Novel U 0.0018892434632508874 -0.2793490384424978 1.0 10472 +51282 SCAND1 SCAN domain containing 1 Novel U 0.0018885226957216581 -0.279355252679885 1.0 10473 +29098 RANGRF RAN guanine nucleotide release factor Novel U 0.00188830040640417 -0.2793571691904539 1.0 10474 +122394733 TMSB15C thymosin beta 15C Novel N 0.00188761233617386 -0.2793631015217212 1.0 10475 +57510 XPO5 exportin 5 Novel U 0.0018870578185633694 -0.27936788240311117 1.0 10476 +728689 EIF3CL eukaryotic translation initiation factor 3 subunit C like Novel U 0.0018864475844634074 -0.2793731436550476 1.0 10477 +23187 PHLDB1 pleckstrin homology like domain family B member 1 Novel U 0.0018861957717478232 -0.2793753147073332 1.0 10478 +84293 PRXL2A peroxiredoxin like 2A Novel N 0.0018861606365647107 -0.2793756176321455 1.0 10479 +340526 RTL5 retrotransposon Gag like 5 Novel U 0.0018858838143155363 -0.2793780043089874 1.0 10480 +259249 MRGPRX1 MAS related GPR family member X1 Novel N 0.0018855736919451017 -0.2793806780892991 1.0 10481 +57719 ANO8 anoctamin 8 Novel N 0.0018855727702603812 -0.27938068603578314 1.0 10482 +253143 PRR14L proline rich 14 like Novel U 0.001885497657479175 -0.27938133363522993 1.0 10483 +26520 TIMM9 translocase of inner mitochondrial membrane 9 Novel U 0.001884590851188546 -0.27938915184196866 1.0 10484 +54674 LRRN3 leucine rich repeat neuronal 3 Novel U 0.0018845420255240582 -0.27938957280192794 1.0 10485 +2874 GPS2 G protein pathway suppressor 2 Novel N 0.0018842977797420947 -0.27939167861442415 1.0 10486 +136288 C7orf57 chromosome 7 open reading frame 57 Novel U 0.0018834079512804087 -0.27939935044350983 1.0 10487 +56666 PANX2 pannexin 2 Novel U 0.0018826935349260457 -0.279405509923008 1.0 10488 +285600 KIAA0825 KIAA0825 Novel N 0.0018826646760522626 -0.2794057587353992 1.0 10489 +151649 PP2D1 protein phosphatase 2C like domain containing 1 Novel U 0.0018821902775759058 -0.2794098488540971 1.0 10490 +10857 PGRMC1 progesterone receptor membrane component 1 Novel U 0.001881601980915871 -0.2794149209681301 1.0 10491 +11319 ECD ecdysoneless cell cycle regulator Novel N 0.0018815824680698447 -0.2794150892019258 1.0 10492 +11339 OIP5 Opa interacting protein 5 Novel U 0.001881375264845441 -0.27941687564481016 1.0 10493 +644815 FAM83G family with sequence similarity 83 member G Novel U 0.0018808638796960118 -0.279421284651301 1.0 10494 +122060 SLAIN1 SLAIN motif family member 1 Novel U 0.0018799505906117512 -0.2794291587507055 1.0 10495 +7621 ZNF70 zinc finger protein 70 Novel U 0.00187942752294472 -0.2794336684802933 1.0 10496 +7060 THBS4 thrombospondin 4 Novel U 0.0018790392652741485 -0.2794370159192864 1.0 10497 +284697 BTBD8 BTB domain containing 8 Novel U 0.0018783307309184546 -0.2794431246859895 1.0 10498 +57708 MIER1 MIER1 transcriptional regulator Novel N 0.0018782684128598424 -0.2794436619732478 1.0 10499 +8576 STK16 serine/threonine kinase 16 Novel U 0.0018774964808421582 -0.27945031733521974 1.0 10500 +9656 MDC1 mediator of DNA damage checkpoint 1 Novel N 0.0018770174026614662 -0.27945444780089845 1.0 10501 +149345 SHISA4 shisa family member 4 Novel U 0.0018765625706472914 -0.27945836922353856 1.0 10502 +1379 CR1L complement C3b/C4b receptor 1 like Novel U 0.0018762035496347174 -0.2794614645930004 1.0 10503 +79929 MAP6D1 MAP6 domain containing 1 Novel U 0.0018760349913930752 -0.27946291785065236 1.0 10504 +115992 RNF166 ring finger protein 166 Novel U 0.001875679887270992 -0.2794659794498814 1.0 10505 +5923 RASGRF1 Ras protein specific guanine nucleotide releasing factor 1 Novel U 0.0018749468181388973 -0.2794722997479293 1.0 10506 +254272 TBC1D28 TBC1 domain family member 28 Novel U 0.0018740072362536774 -0.2794804005358292 1.0 10507 +2189 FANCG FA complementation group G Novel U 0.0018738728525920724 -0.279481559150695 1.0 10508 +554282 FAM72C family with sequence similarity 72 member C Novel U 0.001872386927891409 -0.27949437033939994 1.0 10509 +5935 RBM3 RNA binding motif protein 3 Novel N 0.0018721499739572248 -0.2794964132838128 1.0 10510 +5202 PFDN2 prefoldin subunit 2 Novel U 0.001872148599095063 -0.27949642513745426 1.0 10511 +50628 GEMIN4 gem nuclear organelle associated protein 4 Novel U 0.001871918728280698 -0.2794984070133725 1.0 10512 +80832 APOL4 apolipoprotein L4 Novel N 0.0018718309745296652 -0.2794991635993984 1.0 10513 +80256 ATOSB atos homolog B Novel U 0.0018709809509720738 -0.2795064922427644 1.0 10514 +7380 UPK3A uroplakin 3A Novel N 0.0018709077832618228 -0.27950712307240383 1.0 10515 +387837 CLEC12B C-type lectin domain family 12 member B Novel U 0.0018705380582591713 -0.27951031072839727 1.0 10516 +259232 NALCN sodium leak channel, non-selective Novel U 0.001870373552507622 -0.27951172904671795 1.0 10517 +653781 POTEJ POTE ankyrin domain family member J Novel U 0.0018694748693952117 -0.2795194772178964 1.0 10518 +92856 IMP4 IMP U3 small nucleolar ribonucleoprotein 4 Novel N 0.0018680381895966093 -0.2795318638321038 1.0 10519 +5032 P2RY11 purinergic receptor P2Y11 Novel U 0.0018670478389752618 -0.27954040233253286 1.0 10520 +8715 NOL4 nucleolar protein 4 Novel U 0.0018666332067455425 -0.27954397716491547 1.0 10521 +51585 PCF11 PCF11 cleavage and polyadenylation factor subunit Novel N 0.0018665197021298307 -0.27954495576702776 1.0 10522 +5687 PSMA6 proteasome 20S subunit alpha 6 Novel U 0.0018663781230425533 -0.279546176418655 1.0 10523 +5166 PDK4 pyruvate dehydrogenase kinase 4 Novel U 0.0018660191689289418 -0.27954927121133444 1.0 10524 +54386 TERF2IP TERF2 interacting protein Novel U 0.0018660071565714254 -0.27954937477821024 1.0 10525 +170850 KCNG3 potassium voltage-gated channel modifier subfamily G member 3 Novel N 0.0018656902373043504 -0.27955210715928774 1.0 10526 +2806 GOT2 glutamic-oxaloacetic transaminase 2 Novel N 0.00186490259704055 -0.2795588979529576 1.0 10527 +645382 PRAMEF33 PRAME family member 33 Novel U 0.0018648619195879583 -0.27955924866152376 1.0 10528 +110806278 SPRR5 small proline rich protein 5 Novel U 0.0018646417657219234 -0.2795611467608828 1.0 10529 +64924 SLC30A5 solute carrier family 30 member 5 Novel U 0.0018641189842469245 -0.2795656540230103 1.0 10530 +246213 SLC17A8 solute carrier family 17 member 8 Novel U 0.0018632261500734332 -0.2795733517664246 1.0 10531 +27324 TOX3 TOX high mobility group box family member 3 Novel N 0.001862910167170446 -0.27957607607445717 1.0 10532 +2146 EZH2 enhancer of zeste 2 polycomb repressive complex 2 subunit Novel U 0.001862658513365064 -0.27957824575666756 1.0 10533 +285367 RPUSD3 RNA pseudouridine synthase D3 Novel N 0.001862402382776124 -0.27958045403633786 1.0 10534 +246744 STH saitohin Novel N 0.0018622205252397516 -0.279582021956445 1.0 10535 +440435 GPR179 G protein-coupled receptor 179 Novel U 0.0018619233577606368 -0.2795845840436424 1.0 10536 +5253 PHF2 PHD finger protein 2 Novel N 0.00186172391404995 -0.27958630358637054 1.0 10537 +79648 MCPH1 microcephalin 1 Novel N 0.0018616362641678981 -0.27958705927686983 1.0 10538 +5983 RFC3 replication factor C subunit 3 Novel U 0.0018616045194688833 -0.2795873329699643 1.0 10539 +317762 CCDC85C coiled-coil domain containing 85C Novel U 0.0018604687229481606 -0.27959712546049276 1.0 10540 +81490 PTDSS2 phosphatidylserine synthase 2 Novel U 0.0018601397617499338 -0.279599961663421 1.0 10541 +1081 CGA glycoprotein hormones, alpha polypeptide Novel U 0.0018600738107552616 -0.27960053027274395 1.0 10542 +728194 RSPH10B2 radial spoke head 10 homolog B2 Novel U 0.00185948321004899 -0.27960562225155955 1.0 10543 +51676 ASB2 ankyrin repeat and SOCS box containing 2 Novel U 0.0018585730453976853 -0.27961346941305776 1.0 10544 +10558 SPTLC1 serine palmitoyltransferase long chain base subunit 1 Novel U 0.0018584907944665626 -0.27961417855545195 1.0 10545 +81627 TRMT1L tRNA methyltransferase 1 like Novel U 0.0018581839626134913 -0.2796168239659284 1.0 10546 +200845 KCTD6 potassium channel tetramerization domain containing 6 Novel U 0.0018569477799816718 -0.2796274819548311 1.0 10547 +81034 SLC25A32 solute carrier family 25 member 32 Novel N 0.0018566854210310155 -0.2796297439335329 1.0 10548 +79727 LIN28A lin-28 homolog A Novel N 0.0018559977054624977 -0.27963567320701466 1.0 10549 +728537 C2orf92 chromosome 2 open reading frame 92 Novel U 0.0018559373631558736 -0.2796361934599431 1.0 10550 +10549 PRDX4 peroxiredoxin 4 Novel N 0.001855425786510538 -0.27964060411745323 1.0 10551 +343099 CCDC18 coiled-coil domain containing 18 Novel U 0.0018547330834599734 -0.27964657639148116 1.0 10552 +2173 FABP7 fatty acid binding protein 7 Novel N 0.0018536014798740295 -0.2796563327318073 1.0 10553 +10552 ARPC1A actin related protein 2/3 complex subunit 1A Novel U 0.0018533127801895041 -0.2796588218122673 1.0 10554 +84324 SARNP SAP domain containing ribonucleoprotein Novel N 0.0018525579031690386 -0.2796653301312648 1.0 10555 +6231 RPS26 ribosomal protein S26 Novel U 0.0018523427549206066 -0.2796671850737185 1.0 10556 +163782 KANK4 KN motif and ankyrin repeat domains 4 Novel U 0.0018521236267207723 -0.27966907433009697 1.0 10557 +25891 PAMR1 peptidase domain containing associated with muscle regeneration 1 Novel U 0.0018507923026138712 -0.2796805525997248 1.0 10558 +89765 RSPH1 radial spoke head component 1 Novel N 0.001850423014416627 -0.2796837364897155 1.0 10559 +64080 RBKS ribokinase Novel N 0.0018500524299083173 -0.2796869315561041 1.0 10560 +222537 HS3ST5 heparan sulfate-glucosamine 3-sulfotransferase 5 Novel N 0.0018499370199337947 -0.2796879265856378 1.0 10561 +253769 WDR27 WD repeat domain 27 Novel U 0.0018496172868797455 -0.2796906832263268 1.0 10562 +606495 CYB5RL cytochrome b5 reductase like Novel N 0.0018489300127768726 -0.27969660869362667 1.0 10563 +92092 ZC3HAV1L zinc finger CCCH-type containing, antiviral 1 like Novel U 0.0018482278177081241 -0.27970266280493483 1.0 10564 +83932 SPRTN SprT-like N-terminal domain Novel U 0.0018481626438950224 -0.27970322471363585 1.0 10565 +100310812 SPDYE2B speedy/RINGO cell cycle regulator family member E2B Novel U 0.0018467779641917867 -0.27971516299891097 1.0 10566 +3777 KCNK3 potassium two pore domain channel subfamily K member 3 Novel N 0.0018466450164127404 -0.2797163092340362 1.0 10567 +374860 ANKRD30B ankyrin repeat domain 30B Novel U 0.0018465709144952131 -0.27971694811812525 1.0 10568 +55959 SULF2 sulfatase 2 Novel U 0.0018464583478614168 -0.27971791863324413 1.0 10569 +10891 PPARGC1A PPARG coactivator 1 alpha Novel U 0.001845903236787572 -0.2797227046312937 1.0 10570 +22877 MLXIP MLX interacting protein Novel N 0.0018455509471702 -0.2797257419647231 1.0 10571 +83715 ESPN espin Novel U 0.00184538253909633 -0.2797271939276744 1.0 10572 +80306 MED28 mediator complex subunit 28 Novel U 0.0018439489823021866 -0.2797395536162917 1.0 10573 +84330 ZNF414 zinc finger protein 414 Novel U 0.0018437066374065276 -0.27974164303992705 1.0 10574 +220929 ZNF438 zinc finger protein 438 Novel U 0.0018436453705432919 -0.2797421712641001 1.0 10575 +267012 DAOA D-amino acid oxidase activator Novel U 0.001843174164705871 -0.27974623385684083 1.0 10576 +101059953 NPIPA8 nuclear pore complex interacting protein family member A8 Novel U 0.0018428903381624835 -0.27974868092256705 1.0 10577 +29802 VPREB3 V-set pre-B cell surrogate light chain 3 Novel U 0.0018427081188699798 -0.279750251961625 1.0 10578 +84458 LCOR ligand dependent nuclear receptor corepressor Novel U 0.0018425791696359067 -0.2797513637225173 1.0 10579 +283358 B4GALNT3 beta-1,4-N-acetyl-galactosaminyltransferase 3 Novel U 0.0018424328089185797 -0.2797526255998976 1.0 10580 +5095 PCCA propionyl-CoA carboxylase subunit alpha Novel U 0.0018422067409300674 -0.27975457468901344 1.0 10581 +1339 COX6A2 cytochrome c oxidase subunit 6A2 Novel N 0.0018418212449712197 -0.279757898317372 1.0 10582 +6183 MRPS12 mitochondrial ribosomal protein S12 Novel U 0.0018416007670329269 -0.279759799210783 1.0 10583 +9866 TRIM66 tripartite motif containing 66 Novel U 0.0018415352955281049 -0.279760363686091 1.0 10584 +8857 FCGBP Fc gamma binding protein Novel U 0.0018407611503637046 -0.2797670381291376 1.0 10585 +51302 CYP39A1 cytochrome P450 family 39 subfamily A member 1 Novel N 0.0018403904225472586 -0.2797702344310851 1.0 10586 +4747 NEFL neurofilament light chain Novel U 0.0018403459246587404 -0.2797706180782824 1.0 10587 +5948 RBP2 retinol binding protein 2 Novel N 0.0018396225035431793 -0.27977685519408 1.0 10588 +221504 ZBTB9 zinc finger and BTB domain containing 9 Novel U 0.0018385325577007876 -0.2797862523740709 1.0 10589 +8318 CDC45 cell division cycle 45 Novel U 0.0018378139866480632 -0.27979244767410877 1.0 10590 +219285 SAMD9L sterile alpha motif domain containing 9 like Novel U 0.001836668202008446 -0.2798023262791463 1.0 10591 +1762 DMWD DM1 locus, WD repeat containing Novel U 0.0018359982882217602 -0.27980810207110496 1.0 10592 +23194 FBXL7 F-box and leucine rich repeat protein 7 Novel U 0.0018358338000780358 -0.27980952023761635 1.0 10593 +285527 FRYL FRY like transcription coactivator Novel U 0.0018354896743066312 -0.27981248718486046 1.0 10594 +2266 FGG fibrinogen gamma chain Novel U 0.0018354492591099371 -0.27981283563233644 1.0 10595 +5015 OTX2 orthodenticle homeobox 2 Novel U 0.0018343583532067487 -0.2798222410896781 1.0 10596 +9274 BCL7C BAF chromatin remodeling complex subunit BCL7C Novel U 0.0018342570839739536 -0.2798231142020578 1.0 10597 +9024 BRSK2 BR serine/threonine kinase 2 Novel U 0.0018342217899516887 -0.2798234184963327 1.0 10598 +83983 TSSK6 testis specific serine kinase 6 Novel N 0.0018339375452831664 -0.2798258691670061 1.0 10599 +260436 FDCSP follicular dendritic cell secreted protein Novel U 0.0018339050845351229 -0.27982614903365643 1.0 10600 +23619 ZIM2 zinc finger imprinted 2 Novel U 0.0018339045711678072 -0.2798261534597526 1.0 10601 +137868 SGCZ sarcoglycan zeta Novel N 0.0018324561181544098 -0.27983864157902033 1.0 10602 +55224 ETNK2 ethanolamine kinase 2 Novel U 0.0018314974080403874 -0.2798469072846638 1.0 10603 +57722 IGDCC4 immunoglobulin superfamily DCC subclass member 4 Novel U 0.0018311755424527565 -0.2798496823114057 1.0 10604 +64834 ELOVL1 ELOVL fatty acid elongase 1 Novel U 0.0018309714651485011 -0.27985144180356164 1.0 10605 +22974 TPX2 TPX2 microtubule nucleation factor Novel U 0.0018309229810261687 -0.2798518598188488 1.0 10606 +146760 RTN4RL1 reticulon 4 receptor like 1 Novel U 0.0018306569251834797 -0.27985415367102395 1.0 10607 +79887 PLBD1 phospholipase B domain containing 1 Novel U 0.0018302728184968267 -0.2798574653215022 1.0 10608 +170960 ZNF721 zinc finger protein 721 Novel U 0.001829889109488135 -0.2798607735433225 1.0 10609 +81847 RNF146 ring finger protein 146 Novel U 0.0018293788596619757 -0.2798651727614031 1.0 10610 +1690 COCH cochlin Novel U 0.0018283238393638948 -0.27987426882402333 1.0 10611 +1830 DSG3 desmoglein 3 Novel N 0.001828095656682764 -0.2798762361453727 1.0 10612 +10046 MAMLD1 mastermind like domain containing 1 Novel N 0.001827293472645451 -0.2798831523310135 1.0 10613 +26137 ZBTB20 zinc finger and BTB domain containing 20 Novel U 0.001827161978830731 -0.2798842860305026 1.0 10614 +93649 MYOCD myocardin Novel U 0.0018267236208086464 -0.27988806541941696 1.0 10615 +54575 UGT1A10 UDP glucuronosyltransferase family 1 member A10 Novel N 0.0018264517995703 -0.2798904089790717 1.0 10616 +11198 SUPT16H SPT16 homolog, facilitates chromatin remodeling subunit Novel U 0.0018261114134941103 -0.2798933436838064 1.0 10617 +102724127 TP53TG3F TP53 target 3 family member F Novel U 0.001825449652242925 -0.27989904918709524 1.0 10618 +10978 CLP1 cleavage factor polyribonucleotide kinase subunit 1 Novel N 0.0018248587323170216 -0.2799041439181249 1.0 10619 +9486 CHST10 carbohydrate sulfotransferase 10 Novel N 0.0018232958798873277 -0.2799176183542022 1.0 10620 +84461 NEURL4 neuralized E3 ubiquitin protein ligase 4 Novel U 0.0018219958114479458 -0.2799288271470157 1.0 10621 +139065 SLITRK4 SLIT and NTRK like family member 4 Novel N 0.001821553040114487 -0.2799326445861521 1.0 10622 +57338 JPH3 junctophilin 3 Novel N 0.0018201575238217117 -0.2799446763011909 1.0 10623 +83401 ELOVL3 ELOVL fatty acid elongase 3 Novel N 0.0018198698154014412 -0.27994715683527344 1.0 10624 +1893 ECM1 extracellular matrix protein 1 Novel U 0.0018192317003199116 -0.2799526584685132 1.0 10625 +51571 CYRIB CYFIP related Rac1 interactor B Novel U 0.001819228938187183 -0.27995268228277753 1.0 10626 +164312 LRRN4 leucine rich repeat neuronal 4 Novel U 0.0018189515335976752 -0.27995507398037983 1.0 10627 +1192 CLIC1 chloride intracellular channel 1 Novel N 0.0018176272144306146 -0.2799664918555569 1.0 10628 +23582 CCNDBP1 cyclin D1 binding protein 1 Novel U 0.0018171949495419614 -0.2799702187113367 1.0 10629 +29086 BABAM1 BRISC and BRCA1 A complex member 1 Novel U 0.001816292283419509 -0.27997800122281064 1.0 10630 +92597 MOB1B MOB kinase activator 1B Novel N 0.001816119479398437 -0.2799794910862754 1.0 10631 +1381 CRABP1 cellular retinoic acid binding protein 1 Novel N 0.0018160101877535803 -0.2799804333654403 1.0 10632 +23357 ANGEL1 angel homolog 1 Novel U 0.0018159387508256632 -0.2799810492728034 1.0 10633 +64425 POLR1E RNA polymerase I subunit E Novel N 0.0018156926731399542 -0.2799831708794139 1.0 10634 +29950 SERTAD1 SERTA domain containing 1 Novel U 0.0018152777521952595 -0.2799867482010088 1.0 10635 +54458 PRR13 proline rich 13 Novel U 0.0018148873458309835 -0.27999011416538244 1.0 10636 +112950 MED8 mediator complex subunit 8 Novel U 0.001814187797913886 -0.279996145453758 1.0 10637 +4051 CYP4F3 cytochrome P450 family 4 subfamily F member 3 Novel N 0.0018141010358667259 -0.27999689348961615 1.0 10638 +199990 FAAP20 FA core complex associated protein 20 Novel N 0.0018138340488709492 -0.27999919536990864 1.0 10639 +3371 TNC tenascin C Novel U 0.0018137792555110671 -0.27999966778151403 1.0 10640 +10128 LRPPRC leucine rich pentatricopeptide repeat containing Novel U 0.0018124365431131466 -0.280011244237507 1.0 10641 +129881 CFAP210 cilia and flagella associated protein 210 Novel U 0.0018118546926495218 -0.28001626077440434 1.0 10642 +128153 SPATA17 spermatogenesis associated 17 Novel U 0.001810608725185568 -0.2800270031251397 1.0 10643 +2558 GABRA5 gamma-aminobutyric acid type A receptor subunit alpha5 Novel U 0.001810161259568099 -0.28003086103695835 1.0 10644 +57407 NMRAL1 NmrA like redox sensor 1 Novel U 0.0018092832554834166 -0.2800384309198788 1.0 10645 +248 ALPI alkaline phosphatase, intestinal Novel U 0.0018088228780345874 -0.2800424001535619 1.0 10646 +378948 RBMY1B RNA binding motif protein Y-linked family 1 member B Novel N 0.001808590804098921 -0.28004440102411876 1.0 10647 +5146 PDE6C phosphodiesterase 6C Novel N 0.0018084359151170043 -0.2800457364295903 1.0 10648 +4942 OAT ornithine aminotransferase Novel N 0.0018083532772977596 -0.28004644890761565 1.0 10649 +3705 ITPK1 inositol-tetrakisphosphate 1-kinase Novel U 0.0018074954702017427 -0.2800538446582715 1.0 10650 +64579 NDST4 N-deacetylase and N-sulfotransferase 4 Novel U 0.0018072008146014938 -0.2800563850888169 1.0 10651 +283248 RCOR2 REST corepressor 2 Novel U 0.001807056028808209 -0.28005763338768347 1.0 10652 +83440 ADPGK ADP dependent glucokinase Novel N 0.0018068686992547315 -0.2800592484858499 1.0 10653 +26007 TKFC triokinase and FMN cyclase Novel U 0.0018066855717161344 -0.2800608273555282 1.0 10654 +132200 C3orf49 chromosome 3 open reading frame 49 Novel U 0.001806610521606698 -0.2800614744146382 1.0 10655 +266743 NPAS4 neuronal PAS domain protein 4 Novel N 0.001806490564647208 -0.28006250864688687 1.0 10656 +127943 FCRLB Fc receptor like B Novel U 0.0018063180085726301 -0.2800639963726327 1.0 10657 +11091 WDR5 WD repeat domain 5 Novel U 0.0018061386145581406 -0.28006554305300696 1.0 10658 +215 ABCD1 ATP binding cassette subfamily D member 1 Novel U 0.0018060409812907946 -0.28006638481720353 1.0 10659 +9509 ADAMTS2 ADAM metallopeptidase with thrombospondin type 1 motif 2 Novel U 0.001805094023490053 -0.28007454919799313 1.0 10660 +345193 LRIT3 leucine rich repeat, Ig-like and transmembrane domains 3 Novel U 0.0018045392632169038 -0.28007933217154635 1.0 10661 +55521 TRIM36 tripartite motif containing 36 Novel U 0.0018041214435409111 -0.2800829344851167 1.0 10662 +5148 PDE6G phosphodiesterase 6G Novel N 0.0018040469962852445 -0.2800835763466057 1.0 10663 +79140 CCDC28B coiled-coil domain containing 28B Novel U 0.0018037703832235468 -0.2800859612198971 1.0 10664 +114805 GALNT13 polypeptide N-acetylgalactosaminyltransferase 13 Novel N 0.0018032574874326016 -0.28009038325067753 1.0 10665 +6202 RPS8 ribosomal protein S8 Novel N 0.001801054531376454 -0.2801093764646212 1.0 10666 +5127 CDK16 cyclin dependent kinase 16 Novel U 0.001800942368664463 -0.2801103434972497 1.0 10667 +353088 ZNF429 zinc finger protein 429 Novel U 0.0018009270509306867 -0.2801104755620696 1.0 10668 +114784 CSMD2 CUB and Sushi multiple domains 2 Novel U 0.0018004634214938515 -0.2801144728333995 1.0 10669 +83890 SPATA9 spermatogenesis associated 9 Novel U 0.0018003974833706083 -0.2801150413317489 1.0 10670 +122830 NAA30 N-alpha-acetyltransferase 30, NatC catalytic subunit Novel U 0.0018000508918380946 -0.28011802953803194 1.0 10671 +4802 NFYC nuclear transcription factor Y subunit gamma Novel U 0.0018000323462131502 -0.2801181894327431 1.0 10672 +4256 MGP matrix Gla protein Novel U 0.0017997264642923292 -0.280120826653194 1.0 10673 +10534 ZNRD2 zinc ribbon domain containing 2 Novel N 0.0017987632603308579 -0.2801291311034169 1.0 10674 +100996746 SPDYE11 speedy/RINGO cell cycle regulator family member E11 Novel U 0.0017980099898084801 -0.28013562557167876 1.0 10675 +9407 TMPRSS11D transmembrane serine protease 11D Novel N 0.0017975313007361263 -0.2801397526825843 1.0 10676 +10095 ARPC1B actin related protein 2/3 complex subunit 1B Novel U 0.0017975146439062487 -0.2801398962926816 1.0 10677 +8633 UNC5C unc-5 netrin receptor C Novel N 0.0017970551293987158 -0.28014385808634856 1.0 10678 +408050 NOMO3 NODAL modulator 3 Novel U 0.001795458285024705 -0.28015762559058255 1.0 10679 +283337 ZNF740 zinc finger protein 740 Novel U 0.0017948841844772582 -0.28016257531007077 1.0 10680 +7617 ZNF66 zinc finger protein 66 Novel U 0.0017928803018924097 -0.28017985217337715 1.0 10681 +203069 R3HCC1 R3H domain and coiled-coil containing 1 Novel U 0.0017925596895031594 -0.2801826163954255 1.0 10682 +389015 SLC9A4 solute carrier family 9 member A4 Novel N 0.0017923604538342052 -0.28018433414448146 1.0 10683 +81532 MOB2 MOB kinase activator 2 Novel U 0.001791747576568012 -0.28018961818498944 1.0 10684 +343930 MSGN1 mesogenin 1 Novel U 0.0017911823851536304 -0.2801944910926548 1.0 10685 +130576 LYPD6B LY6/PLAUR domain containing 6B Novel U 0.001789832927044393 -0.2802061257081095 1.0 10686 +3931 LCAT lecithin-cholesterol acyltransferase Novel U 0.0017897446414660363 -0.28020688687938805 1.0 10687 +9941 EXOG exo/endonuclease G Novel U 0.0017897065434156155 -0.2802072153491369 1.0 10688 +79960 JADE1 jade family PHD finger 1 Novel N 0.0017896570438668733 -0.2802076421191202 1.0 10689 +57026 PDXP pyridoxal phosphatase Novel U 0.0017895990791789297 -0.280208141872947 1.0 10690 +152002 XXYLT1 xyloside xylosyltransferase 1 Novel N 0.001789292056715337 -0.2802107889268091 1.0 10691 +147746 HIPK4 homeodomain interacting protein kinase 4 Novel U 0.0017886798875227775 -0.28021606686252265 1.0 10692 +11189 CELF3 CUGBP Elav-like family member 3 Novel N 0.001788348432367865 -0.2802189245675833 1.0 10693 +225 ABCD2 ATP binding cassette subfamily D member 2 Novel N 0.0017879669086401317 -0.280222213948579 1.0 10694 +100529251 CKLF-CMTM1 CKLF-CMTM1 readthrough Novel U 0.001786583475921301 -0.2802341414827357 1.0 10695 +55848 PLGRKT plasminogen receptor with a C-terminal lysine Novel U 0.0017858315478903413 -0.2802406243764468 1.0 10696 +125875 CLDND2 claudin domain containing 2 Novel U 0.0017853955430294985 -0.280244383477124 1.0 10697 +22985 ACIN1 apoptotic chromatin condensation inducer 1 Novel U 0.0017850243940771063 -0.28024758340997696 1.0 10698 +55556 ENOSF1 enolase superfamily member 1 Novel N 0.0017847733829503246 -0.28024974755120885 1.0 10699 +84146 ZNF644 zinc finger protein 644 Novel N 0.0017844647180769826 -0.280252408765426 1.0 10700 +10522 DEAF1 DEAF1 transcription factor Novel U 0.0017823867993546358 -0.2802703239456862 1.0 10701 +80142 PTGES2 prostaglandin E synthase 2 Novel N 0.0017819755521153355 -0.28027386959371575 1.0 10702 +3067 HDC histidine decarboxylase Novel N 0.0017818900801894245 -0.28027460650654273 1.0 10703 +4733 DRG1 developmentally regulated GTP binding protein 1 Novel U 0.0017802728139853928 -0.28028855008155473 1.0 10704 +110806296 C1orf232 chromosome 1 open reading frame 230 Novel U 0.0017802150029142603 -0.2802890485109443 1.0 10705 +347516 DGAT2L6 diacylglycerol O-acyltransferase 2 like 6 Novel U 0.0017799556815338495 -0.2802912843006436 1.0 10706 +51239 ANKRD39 ankyrin repeat domain 39 Novel U 0.0017793905983395557 -0.28029615627526844 1.0 10707 +3046 HBE1 hemoglobin subunit epsilon 1 Novel N 0.001777785767595428 -0.2803099926355452 1.0 10708 +2710 GK glycerol kinase Novel U 0.0017771275579507957 -0.28031566751796755 1.0 10709 +2880 GPX5 glutathione peroxidase 5 Novel N 0.0017768899658818038 -0.28031771596418376 1.0 10710 +5506 PPP1R3A protein phosphatase 1 regulatory subunit 3A Novel U 0.0017768529550182 -0.2803180350605401 1.0 10711 +8214 DGCR6 DiGeorge syndrome critical region gene 6 Novel U 0.0017766712604553201 -0.2803196015755396 1.0 10712 +3516 RBPJ recombination signal binding protein for immunoglobulin kappa J region Novel U 0.0017764532237947875 -0.2803214814209997 1.0 10713 +6528 SLC5A5 solute carrier family 5 member 5 Novel U 0.0017762567213968426 -0.2803231756046282 1.0 10714 +414328 IDNK IDNK gluconokinase Novel U 0.0017760236340988648 -0.28032518521208527 1.0 10715 +100288332 NPIPA5 nuclear pore complex interacting protein family member A5 Novel U 0.001774166310182471 -0.2803411984913372 1.0 10716 +57728 WDR19 WD repeat domain 19 Novel U 0.0017739763318395507 -0.28034283642655683 1.0 10717 +79772 MCTP1 multiple C2 and transmembrane domain containing 1 Novel U 0.0017733128016121742 -0.2803485571814178 1.0 10718 +9416 DDX23 DEAD-box helicase 23 Novel N 0.0017709262145057581 -0.2803691336061635 1.0 10719 +100008586 GAGE12F G antigen 12F Novel U 0.0017701448289466114 -0.2803758704736811 1.0 10720 +65979 PHACTR4 phosphatase and actin regulator 4 Novel U 0.0017694881525898902 -0.28038153213656364 1.0 10721 +1656 DDX6 DEAD-box helicase 6 Novel U 0.0017694110758899517 -0.28038219666831765 1.0 10722 +124790 HEXIM2 HEXIM P-TEFb complex subunit 2 Novel U 0.0017690950261994576 -0.28038492155217165 1.0 10723 +105371242 PPIAL4H peptidylprolyl isomerase A like 4H Novel U 0.0017678024779977707 -0.2803960655077937 1.0 10724 +55030 FBXO34 F-box protein 34 Novel U 0.0017677276031454717 -0.2803967110558902 1.0 10725 +6506 SLC1A2 solute carrier family 1 member 2 Novel U 0.0017665928021824968 -0.28040649496302406 1.0 10726 +54948 MRPL16 mitochondrial ribosomal protein L16 Novel U 0.0017660164064186722 -0.28041146447116655 1.0 10727 +89832 CHRFAM7A CHRNA7 (exons 5-10) and FAM7A (exons A-E) fusion Novel U 0.0017659745846729383 -0.2804118250454785 1.0 10728 +5411 PNN pinin, desmosome associated protein Novel N 0.0017647887983349218 -0.280422048532936 1.0 10729 +166379 BBS12 Bardet-Biedl syndrome 12 Novel N 0.0017643879168424855 -0.2804255048106637 1.0 10730 +132724 TMPRSS11B transmembrane serine protease 11B Novel U 0.0017642876403797852 -0.2804263693636829 1.0 10731 +4185 ADAM11 ADAM metallopeptidase domain 11 Novel N 0.001763820378488024 -0.2804303979529293 1.0 10732 +6144 RPL21 ribosomal protein L21 Novel N 0.0017638096211966645 -0.2804304906990082 1.0 10733 +22794 CASC3 CASC3 exon junction complex subunit Novel N 0.00176378589789072 -0.2804306952341028 1.0 10734 +4841 NONO non-POU domain containing octamer binding Novel U 0.001763589864748666 -0.28043238537195037 1.0 10735 +127687 C1orf122 chromosome 1 open reading frame 122 Novel U 0.0017635002240745878 -0.28043315822645015 1.0 10736 +79722 ANKRD55 ankyrin repeat domain 55 Novel U 0.0017634235199355363 -0.280433819546098 1.0 10737 +55142 HAUS2 HAUS augmin like complex subunit 2 Novel U 0.0017629829694894433 -0.2804376178374222 1.0 10738 +6182 MRPL12 mitochondrial ribosomal protein L12 Novel N 0.0017629618804804077 -0.2804377996604138 1.0 10739 +64600 PLA2G2F phospholipase A2 group IIF Novel U 0.0017622824743719076 -0.2804436572922705 1.0 10740 +79981 FRMD1 FERM domain containing 1 Novel U 0.0017608035050352528 -0.2804564085139523 1.0 10741 +8928 FOXH1 forkhead box H1 Novel U 0.0017607287347895617 -0.2804570531601626 1.0 10742 +51155 JPT1 Jupiter microtubule associated homolog 1 Novel U 0.0017607030190087258 -0.2804572748737668 1.0 10743 +5700 PSMC1 proteasome 26S subunit, ATPase 1 Novel N 0.001760698658379532 -0.28045731246977923 1.0 10744 +353164 TAS2R42 taste 2 receptor member 42 Novel N 0.0017605803971465737 -0.28045833208199183 1.0 10745 +5596 MAPK4 mitogen-activated protein kinase 4 Novel N 0.0017604010050325232 -0.28045987874598116 1.0 10746 +8702 B4GALT4 beta-1,4-galactosyltransferase 4 Novel N 0.001760202167583063 -0.2804615930617103 1.0 10747 +79608 RIC3 RIC3 acetylcholine receptor chaperone Novel U 0.0017598883237560628 -0.28046429892728325 1.0 10748 +6945 MLX MAX dimerization protein MLX Novel U 0.001759475780956227 -0.2804678557452399 1.0 10749 +203859 ANO5 anoctamin 5 Novel U 0.0017592803064621287 -0.28046954106659555 1.0 10750 +54502 RBM47 RNA binding motif protein 47 Novel U 0.0017586315850257098 -0.280475134144586 1.0 10751 +56180 MOSPD1 motile sperm domain containing 1 Novel U 0.0017583796490926054 -0.2804773062592155 1.0 10752 +57689 LRRC4C leucine rich repeat containing 4C Novel U 0.001757288417585223 -0.280486714523817 1.0 10753 +6323 SCN1A sodium voltage-gated channel alpha subunit 1 Novel U 0.0017560932911282333 -0.2804970185389262 1.0 10754 +230 ALDOC aldolase, fructose-bisphosphate C Novel N 0.0017559480628429674 -0.28049827065282334 1.0 10755 +84171 LOXL4 lysyl oxidase like 4 Novel U 0.0017550648697024056 -0.28050588527419784 1.0 10756 +364 AQP7 aquaporin 7 Novel N 0.0017547834309726278 -0.28050831175292484 1.0 10757 +11162 NUDT6 nudix hydrolase 6 Novel N 0.0017540952238366688 -0.28051424526455093 1.0 10758 +124 ADH1A alcohol dehydrogenase 1A (class I), alpha polypeptide Novel N 0.0017537460377970522 -0.2805172558398813 1.0 10759 +51759 C9orf78 chromosome 9 open reading frame 78 Novel N 0.0017535279722832448 -0.2805191359341056 1.0 10760 +23349 PHF24 PHD finger protein 24 Novel U 0.0017534465836509805 -0.2805198376420225 1.0 10761 +93145 OLFM2 olfactomedin 2 Novel U 0.001752328311639732 -0.2805294790415854 1.0 10762 +1890 TYMP thymidine phosphorylase Novel U 0.001751789841360443 -0.28053412156778934 1.0 10763 +8613 PLPP3 phospholipid phosphatase 3 Novel U 0.0017511459429747132 -0.28053967306291067 1.0 10764 +8345 H2BC9 H2B clustered histone 9 Novel U 0.0017511388610222953 -0.28053973412134037 1.0 10765 +81493 SYNC syncoilin, intermediate filament protein Novel U 0.0017510850969717027 -0.28054019765855553 1.0 10766 +5984 RFC4 replication factor C subunit 4 Novel U 0.001750948913209463 -0.28054137179333893 1.0 10767 +152100 CMC1 C-X9-C motif containing 1 Novel U 0.0017506361060630631 -0.28054406872096854 1.0 10768 +59 ACTA2 actin alpha 2, smooth muscle Novel U 0.0017497713839344027 -0.28055152409092277 1.0 10769 +29106 SCG3 secretogranin III Novel U 0.0017490914763259283 -0.280557386046559 1.0 10770 +6883 TAF12 TATA-box binding protein associated factor 12 Novel N 0.0017485763060597315 -0.28056182768717003 1.0 10771 +5037 PEBP1 phosphatidylethanolamine binding protein 1 Novel U 0.0017480364931307891 -0.28056648178928906 1.0 10772 +85301 COL27A1 collagen type XXVII alpha 1 chain Novel U 0.0017470221577231134 -0.28057522707921656 1.0 10773 +22823 MTF2 metal response element binding transcription factor 2 Novel U 0.0017466996152641992 -0.2805780079417358 1.0 10774 +84698 CAPS2 calcyphosine 2 Novel U 0.001746638239506414 -0.2805785371047644 1.0 10775 +57156 TMEM63C transmembrane protein 63C Novel N 0.0017463042998021995 -0.28058141623084987 1.0 10776 +119392 SFR1 SWI5 dependent homologous recombination repair protein 1 Novel N 0.0017458949861589286 -0.28058494520800537 1.0 10777 +79991 STN1 STN1 subunit of CST complex Novel U 0.0017456930805159144 -0.2805866859767618 1.0 10778 +127343 DMBX1 diencephalon/mesencephalon homeobox 1 Novel U 0.001745606848414496 -0.28058742944358966 1.0 10779 +26267 FBXO10 F-box protein 10 Novel U 0.001745557896610007 -0.2805878514910894 1.0 10780 +8574 AKR7A2 aldo-keto reductase family 7 member A2 Novel N 0.0017454362588670475 -0.2805889002145395 1.0 10781 +221687 RNF182 ring finger protein 182 Novel N 0.001745170043187832 -0.2805911954447764 1.0 10782 +8555 CDC14B cell division cycle 14B Novel U 0.0017429132729995078 -0.28061065262772333 1.0 10783 +8745 ADAM23 ADAM metallopeptidase domain 23 Novel N 0.0017417910424301127 -0.28062032815676496 1.0 10784 +5414 SEPTIN4 septin 4 Novel N 0.001741588444644704 -0.28062207489296154 1.0 10785 +64895 PAPOLG poly(A) polymerase gamma Novel U 0.0017414920857317948 -0.2806229056700636 1.0 10786 +144321 GLIPR1L2 GLIPR1 like 2 Novel U 0.0017389525292502996 -0.28064480095001737 1.0 10787 +7372 UMPS uridine monophosphate synthetase Novel U 0.0017387002413890465 -0.28064697609886374 1.0 10788 +402569 KPNA7 karyopherin subunit alpha 7 Novel N 0.0017381184134195986 -0.2806519924418231 1.0 10789 +81569 ACTL8 actin like 8 Novel U 0.0017376652264714972 -0.28065589968120624 1.0 10790 +3014 H2AX H2A.X variant histone Novel N 0.0017370827326366508 -0.2806609217650536 1.0 10791 +9688 NUP93 nucleoporin 93 Novel U 0.0017365753809127995 -0.2806652959965817 1.0 10792 +201299 RDM1 RAD52 motif containing 1 Novel U 0.0017338676685490675 -0.2806886410651675 1.0 10793 +60491 NIF3L1 NGG1 interacting factor 3 like 1 Novel N 0.0017334812908116016 -0.2806919722959519 1.0 10794 +127435 PODN podocan Novel N 0.0017330803526476133 -0.28069542906228434 1.0 10795 +340075 ARSI arylsulfatase family member I Novel N 0.0017327181038921935 -0.2806985522603587 1.0 10796 +5158 PDE6B phosphodiesterase 6B Novel U 0.0017320935676998033 -0.2807039368205657 1.0 10797 +127247 ASB17 ankyrin repeat and SOCS box containing 17 Novel U 0.0017317199561901868 -0.28070715798483453 1.0 10798 +1201 CLN3 CLN3 lysosomal/endosomal transmembrane protein, battenin Novel U 0.001731542616809535 -0.2807086869507837 1.0 10799 +387921 NHLRC3 NHL repeat containing 3 Novel U 0.0017313329523887682 -0.280710494613351 1.0 10800 +93107 KCNG4 potassium voltage-gated channel modifier subfamily G member 4 Novel N 0.0017307943638297293 -0.2807151381593268 1.0 10801 +55656 INTS8 integrator complex subunit 8 Novel N 0.0017304547721671384 -0.28071806601487037 1.0 10802 +23279 NUP160 nucleoporin 160 Novel N 0.0017295912239209846 -0.28072551126396833 1.0 10803 +51076 CUTC cutC copper transporter Novel U 0.0017295728721544391 -0.28072566948729155 1.0 10804 +26528 DAZAP1 DAZ associated protein 1 Novel U 0.0017290851142513894 -0.2807298747868841 1.0 10805 +153657 TTC23L tetratricopeptide repeat domain 23 like Novel U 0.0017290418525838967 -0.28073024777576144 1.0 10806 +80059 LRRTM4 leucine rich repeat transmembrane neuronal 4 Novel U 0.0017286583898718957 -0.28073355387408705 1.0 10807 +23645 PPP1R15A protein phosphatase 1 regulatory subunit 15A Novel U 0.0017282288476257199 -0.2807372572560754 1.0 10808 +164656 TMPRSS6 transmembrane serine protease 6 Novel U 0.00172805171410592 -0.28073878444715517 1.0 10809 +9731 CEP104 centrosomal protein 104 Novel N 0.0017276364483166037 -0.28074236474189507 1.0 10810 +80003 PCNX2 pecanex 2 Novel U 0.0017275775650707655 -0.2807428724152473 1.0 10811 +100287205 USP17L12 ubiquitin specific peptidase 17 like family member 12 Novel U 0.001727458726084089 -0.28074389700867597 1.0 10812 +92211 CDHR1 cadherin related family member 1 Novel N 0.0017263782017405218 -0.280753212959383 1.0 10813 +340385 ZNF517 zinc finger protein 517 Novel U 0.0017261042387658183 -0.2807555749844341 1.0 10814 +55586 MIOX myo-inositol oxygenase Novel N 0.0017260857784670656 -0.2807557341434889 1.0 10815 +55437 STRADB STE20 related adaptor beta Novel U 0.0017259104658013044 -0.28075724563572163 1.0 10816 +100820829 MYZAP myocardial zonula adherens protein Novel U 0.001725222465561086 -0.28076317736355577 1.0 10817 +10632 ATP5MG ATP synthase membrane subunit g Novel N 0.0017251791299230327 -0.28076355099018474 1.0 10818 +7975 MAFK MAF bZIP transcription factor K Novel N 0.0017247619855760533 -0.2807671474812747 1.0 10819 +55051 NRDE2 NRDE-2, necessary for RNA interference, domain containing Novel U 0.001724242405421545 -0.28077162714259524 1.0 10820 +5451 POU2F1 POU class 2 homeobox 1 Novel N 0.0017240342571411527 -0.2807734217334634 1.0 10821 +9015 TAF1A TATA-box binding protein associated factor, RNA polymerase I subunit A Novel N 0.0017240054319171815 -0.2807736702557362 1.0 10822 +200558 APLF aprataxin and PNKP like factor Novel N 0.0017239475379556795 -0.2807741693997813 1.0 10823 +1804 DPP6 dipeptidyl peptidase like 6 Novel U 0.0017237410712154018 -0.28077594949292445 1.0 10824 +2709 GJB5 gap junction protein beta 5 Novel N 0.0017235196593793883 -0.2807778584381162 1.0 10825 +84975 MFSD5 major facilitator superfamily domain containing 5 Novel U 0.001722959066436369 -0.2807826916991667 1.0 10826 +55125 CEP192 centrosomal protein 192 Novel U 0.001722836264618725 -0.280783750458913 1.0 10827 +6223 RPS19 ribosomal protein S19 Novel U 0.001722696448382055 -0.280784955911781 1.0 10828 +81557 MAGED4B MAGE family member D4B Novel U 0.0017223377692846538 -0.28078804833335475 1.0 10829 +6588 SLN sarcolipin Novel U 0.0017220183205370904 -0.2807908025228401 1.0 10830 +245973 ATP6V1C2 ATPase H+ transporting V1 subunit C2 Novel U 0.0017217256874549132 -0.28079332551585273 1.0 10831 +56902 PNO1 partner of NOB1 homolog Novel N 0.001721283527927928 -0.28079713768018066 1.0 10832 +151835 CPNE9 copine family member 9 Novel U 0.0017210340505564188 -0.2807992885978433 1.0 10833 +375607 NAT16 N-acetyltransferase 16 (putative) Novel U 0.0017207861793105295 -0.28080142566798166 1.0 10834 +80273 GRPEL1 GrpE like 1, mitochondrial Novel U 0.001720738905153598 -0.2808018332513168 1.0 10835 +54776 PPP1R12C protein phosphatase 1 regulatory subunit 12C Novel U 0.0017201709252034692 -0.28080673020088526 1.0 10836 +6039 RNASE6 ribonuclease A family member k6 Novel N 0.0017200636515169309 -0.28080765508183025 1.0 10837 +9352 TXNL1 thioredoxin like 1 Novel U 0.0017198103687601838 -0.2808098388083616 1.0 10838 +24146 CLDN15 claudin 15 Novel U 0.0017196275202034238 -0.28081141527274367 1.0 10839 +1028 CDKN1C cyclin dependent kinase inhibitor 1C Novel U 0.0017193154067642947 -0.2808141062194412 1.0 10840 +85016 CFAP300 cilia and flagella associated protein 300 Novel N 0.0017192423720829941 -0.2808147359021457 1.0 10841 +729978 NPIPB2 nuclear pore complex interacting protein family member B2 Novel U 0.0017187093972659748 -0.2808193310481532 1.0 10842 +60680 CELF5 CUGBP Elav-like family member 5 Novel N 0.0017182218238151119 -0.28082353475745536 1.0 10843 +51367 POP5 POP5 homolog, ribonuclease P/MRP subunit Novel N 0.0017179474340219864 -0.2808259004624045 1.0 10844 +115265 DDIT4L DNA damage inducible transcript 4 like Novel U 0.0017179025201690243 -0.2808262876959201 1.0 10845 +2745 GLRX glutaredoxin Novel N 0.0017176097062560661 -0.2808288122480005 1.0 10846 +145942 TMCO5A transmembrane and coiled-coil domains 5A Novel U 0.001717393016693627 -0.2808306804791925 1.0 10847 +57151 LYZL6 lysozyme like 6 Novel U 0.0017165668318326168 -0.2808378035926012 1.0 10848 +28976 ACAD9 acyl-CoA dehydrogenase family member 9 Novel U 0.0017164966330653014 -0.2808384088249219 1.0 10849 +7342 UBP1 upstream binding protein 1 Novel N 0.0017163776139134702 -0.28083943497167946 1.0 10850 +23644 EDC4 enhancer of mRNA decapping 4 Novel U 0.0017159978207328605 -0.2808427094324267 1.0 10851 +5648 MASP1 MBL associated serine protease 1 Novel U 0.0017153385077665782 -0.28084839382735116 1.0 10852 +7762 ZNF215 zinc finger protein 215 Novel U 0.0017144397501224523 -0.28085614264111924 1.0 10853 +27165 GLS2 glutaminase 2 Novel N 0.0017137945427972273 -0.2808617054215169 1.0 10854 +125111 GJD3 gap junction protein delta 3 Novel U 0.0017128743952891429 -0.2808696386521558 1.0 10855 +2557 GABRA4 gamma-aminobutyric acid type A receptor subunit alpha4 Novel N 0.001711764074470364 -0.28087921149896694 1.0 10856 +7469 NELFA negative elongation factor complex member A Novel U 0.0017106740834052323 -0.2808886090688545 1.0 10857 +26472 PPP1R14B protein phosphatase 1 regulatory inhibitor subunit 14B Novel U 0.0017100508911990367 -0.2808939820416232 1.0 10858 +388931 MFSD2B MFSD2 lysolipid transporter B, sphingolipid Novel N 0.001709816790368315 -0.28089600038744983 1.0 10859 +6303 SAT1 spermidine/spermine N1-acetyltransferase 1 Novel U 0.0017092530412243653 -0.28090086086030025 1.0 10860 +2584 GALK1 galactokinase 1 Novel N 0.0017090819198214223 -0.2809023362167457 1.0 10861 +84947 SERAC1 serine active site containing 1 Novel U 0.0017087476328856376 -0.2809052183365557 1.0 10862 +6234 RPS28 ribosomal protein S28 Novel U 0.0017081855186549823 -0.2809100647136833 1.0 10863 +199870 FAM76A family with sequence similarity 76 member A Novel U 0.0017081820906987878 -0.28091009426847413 1.0 10864 +376497 SLC27A1 solute carrier family 27 member 1 Novel U 0.0017072712969870487 -0.2809179468535392 1.0 10865 +83872 HMCN1 hemicentin 1 Novel U 0.0017070306673730887 -0.28092002148853995 1.0 10866 +4540 ND5 NADH dehydrogenase subunit 5 Novel N 0.0017069137001453842 -0.28092102994423473 1.0 10867 +155038 GIMAP8 GTPase, IMAP family member 8 Novel U 0.0017066426028473987 -0.2809233672622969 1.0 10868 +100129654 TCF24 transcription factor 24 Novel U 0.001706037248908015 -0.2809285864389801 1.0 10869 +1114 CHGB chromogranin B Novel U 0.0017055691738912747 -0.28093262203874153 1.0 10870 +55668 GPATCH2L G-patch domain containing 2 like Novel U 0.001704231296074988 -0.28094415681244905 1.0 10871 +55 ACP3 acid phosphatase 3 Novel U 0.0017041038472800116 -0.28094525563701395 1.0 10872 +55135 WRAP53 WD repeat containing antisense to TP53 Novel U 0.0017035295803043667 -0.2809502067913952 1.0 10873 +79969 ATAT1 alpha tubulin acetyltransferase 1 Novel N 0.001703369630158569 -0.2809515858326752 1.0 10874 +6045 RNF2 ring finger protein 2 Novel U 0.0017032070256545503 -0.28095298775902067 1.0 10875 +4796 TONSL tonsoku like, DNA repair protein Novel U 0.0017030811616793452 -0.2809540729197538 1.0 10876 +654463 FER1L6 fer-1 like family member 6 Novel U 0.0017027692070542637 -0.28095676249720514 1.0 10877 +3748 KCNC3 potassium voltage-gated channel subfamily C member 3 Novel U 0.0017026601547181102 -0.2809577027131236 1.0 10878 +55112 DYNC2I1 dynein 2 intermediate chain 1 Novel U 0.00170262510928504 -0.2809580048641384 1.0 10879 +119467 CLRN3 clarin 3 Novel U 0.0017024186201421803 -0.28095978515042985 1.0 10880 +25871 NEPRO nucleolus and neural progenitor protein Novel N 0.001701793485143392 -0.28096517487336264 1.0 10881 +51147 ING4 inhibitor of growth family member 4 Novel U 0.0017010112705150696 -0.2809719188888613 1.0 10882 +161003 STOML3 stomatin like 3 Novel U 0.0017009562674353167 -0.2809723931086073 1.0 10883 +102724473 GAGE10 G antigen 10 Novel U 0.001700120569458429 -0.280979598241194 1.0 10884 +90850 ZNF598 zinc finger protein 598, E3 ubiquitin ligase Novel U 0.0016991228830163711 -0.2809881999888275 1.0 10885 +147657 ZNF480 zinc finger protein 480 Novel U 0.0016983677168877277 -0.28099471080042737 1.0 10886 +8317 CDC7 cell division cycle 7 Novel U 0.0016975620969142957 -0.2810016566096595 1.0 10887 +375298 CERKL ceramide kinase like Novel N 0.0016974598357699113 -0.28100253827399774 1.0 10888 +85364 ZCCHC3 zinc finger CCHC-type containing 3 Novel U 0.001696456718211595 -0.281011186847056 1.0 10889 +9158 FIBP FGF1 intracellular binding protein Novel U 0.0016957132816738452 -0.2810175965297075 1.0 10890 +54941 RNF125 ring finger protein 125 Novel U 0.0016954871433221704 -0.281019546225473 1.0 10891 +100996331 POTEB POTE ankyrin domain family member B Novel U 0.0016949907827137423 -0.28102382569496254 1.0 10892 +51070 NOSIP nitric oxide synthase interacting protein Novel N 0.0016948366230068218 -0.2810251548128479 1.0 10893 +53938 PPIL3 peptidylprolyl isomerase like 3 Novel N 0.0016941734469714512 -0.28103087251397363 1.0 10894 +64397 ZNF106 zinc finger protein 106 Novel U 0.001694066326879459 -0.28103179607067336 1.0 10895 +728780 ANKDD1B ankyrin repeat and death domain containing 1B Novel U 0.0016938652183994202 -0.2810335299665342 1.0 10896 +440353 NPIPB12 nuclear pore complex interacting protein family member B12 Novel U 0.001693811202513165 -0.2810339956749995 1.0 10897 +55145 THAP1 THAP domain containing 1 Novel N 0.0016936321143068347 -0.28103553971878925 1.0 10898 +55827 DCAF6 DDB1 and CUL4 associated factor 6 Novel N 0.001692177479911167 -0.28104808113204605 1.0 10899 +85449 KIAA1755 KIAA1755 Novel U 0.0016920494205676733 -0.2810491852205737 1.0 10900 +388939 PCARE photoreceptor cilium actin regulator Novel N 0.0016903356569819019 -0.2810639607665237 1.0 10901 +10623 POLR3C RNA polymerase III subunit C Novel U 0.0016900435694002524 -0.2810664790563975 1.0 10902 +9865 TRIL TLR4 interactor with leucine rich repeats Novel U 0.0016898373545663808 -0.2810682569776806 1.0 10903 +147912 SIX5 SIX homeobox 5 Novel U 0.001689121187608923 -0.28107443155034373 1.0 10904 +9843 HEPH hephaestin Novel U 0.0016891182297585534 -0.2810744570520258 1.0 10905 +55028 MTNAP1 mitochondrial nucleoid associated protein 1 Novel U 0.0016888728179101033 -0.28107657291799093 1.0 10906 +196394 AMN1 antagonist of mitotic exit network 1 homolog Novel U 0.00168872413424302 -0.28107785482313424 1.0 10907 +2648 KAT2A lysine acetyltransferase 2A Novel U 0.0016885149316524094 -0.281079658503943 1.0 10908 +283985 FADS6 fatty acid desaturase 6 Novel U 0.0016878805437806716 -0.2810851280023189 1.0 10909 +10847 SRCAP Snf2 related CREBBP activator protein Novel U 0.0016876077209406638 -0.2810874801974771 1.0 10910 +9271 PIWIL1 piwi like RNA-mediated gene silencing 1 Novel N 0.0016875477879367698 -0.28108799692152253 1.0 10911 +63941 NECAB3 N-terminal EF-hand calcium binding protein 3 Novel N 0.0016868640284360237 -0.28109389208699687 1.0 10912 +3763 KCNJ6 potassium inwardly rectifying channel subfamily J member 6 Novel U 0.0016868471491446992 -0.2810940376150887 1.0 10913 +10799 RPP40 ribonuclease P/MRP subunit p40 Novel N 0.0016857947455949404 -0.2811031111169046 1.0 10914 +91746 YTHDC1 YTH N6-methyladenosine RNA binding protein C1 Novel N 0.001684163701552551 -0.2811171734802287 1.0 10915 +8940 TOP3B DNA topoisomerase III beta Novel U 0.001684066440731261 -0.2811180120333092 1.0 10916 +8970 H2BC11 H2B clustered histone 11 Novel N 0.0016836862574768669 -0.28112128985715334 1.0 10917 +339967 TMPRSS11A transmembrane serine protease 11A Novel U 0.0016835955108361709 -0.2811220722469594 1.0 10918 +140679 SLC32A1 solute carrier family 32 member 1 Novel U 0.001682991860066618 -0.2811272767394328 1.0 10919 +9172 MYOM2 myomesin 2 Novel U 0.0016825303917386777 -0.2811312553783422 1.0 10920 +728743 LOC728743 zinc finger domain-containing protein LOC728743 Novel U 0.0016815089422529796 -0.2811400620036765 1.0 10921 +139322 APOOL apolipoprotein O like Novel N 0.001680698075731104 -0.2811470530470461 1.0 10922 +55790 CSGALNACT1 chondroitin sulfate N-acetylgalactosaminyltransferase 1 Novel U 0.001680024830307626 -0.2811528575633591 1.0 10923 +11190 CEP250 centrosomal protein 250 Novel U 0.001680017422707057 -0.28115292142942766 1.0 10924 +80233 FAAP100 FA core complex associated protein 100 Novel U 0.0016789094366930339 -0.2811624741462656 1.0 10925 +79616 CCNJL cyclin J like Novel U 0.0016788329855704236 -0.2811631332844831 1.0 10926 +157574 FBXO16 F-box protein 16 Novel U 0.0016784909787679752 -0.28116608196262444 1.0 10927 +5634 PRPS2 phosphoribosyl pyrophosphate synthetase 2 Novel N 0.0016784888230059402 -0.281166100548946 1.0 10928 +64066 MMP27 matrix metallopeptidase 27 Novel U 0.0016777118177944191 -0.28117279965044484 1.0 10929 +51246 SHISA5 shisa family member 5 Novel U 0.001677676677769068 -0.28117310261700545 1.0 10930 +163589 TDRD5 tudor domain containing 5 Novel U 0.0016772724419346816 -0.2811765878148444 1.0 10931 +51317 PHF21A PHD finger protein 21A Novel U 0.0016772244988543473 -0.28117700116543276 1.0 10932 +29107 NXT1 nuclear transport factor 2 like export factor 1 Novel N 0.001676715696275958 -0.28118138790578534 1.0 10933 +5324 PLAG1 PLAG1 zinc finger Novel U 0.0016763643811790545 -0.2811844168371971 1.0 10934 +23186 RCOR1 REST corepressor 1 Novel N 0.001676144442670014 -0.2811863130798139 1.0 10935 +123722 FSD2 fibronectin type III and SPRY domain containing 2 Novel U 0.0016749503951841728 -0.28119660779236355 1.0 10936 +132228 LSMEM2 leucine rich single-pass membrane protein 2 Novel U 0.0016748033805324572 -0.28119787530776635 1.0 10937 +22998 LIMCH1 LIM and calponin homology domains 1 Novel U 0.0016748029576636278 -0.2811978789536122 1.0 10938 +5705 PSMC5 proteasome 26S subunit, ATPase 5 Novel U 0.0016747412797070988 -0.281198410722106 1.0 10939 +1469 CST1 cystatin SN Novel N 0.0016731513491465807 -0.2812121186175528 1.0 10940 +3795 KHK ketohexokinase Novel N 0.0016728742560479317 -0.2812145076295761 1.0 10941 +6176 RPLP1 ribosomal protein lateral stalk subunit P1 Novel N 0.0016724659797110058 -0.28121802766339327 1.0 10942 +10418 SPON1 spondin 1 Novel U 0.001672106354980096 -0.28122112823793016 1.0 10943 +389075 RESP18 regulated endocrine specific protein 18 Novel U 0.0016716325628967636 -0.28122521312849275 1.0 10944 +100287284 MANSC4 MANSC domain containing 4 Novel U 0.001671257320938394 -0.2812284483499925 1.0 10945 +10150 MBNL2 muscleblind like splicing regulator 2 Novel N 0.0016709729725803615 -0.2812308999146452 1.0 10946 +92170 MTG1 mitochondrial ribosome associated GTPase 1 Novel N 0.001670279640696654 -0.2812368776102804 1.0 10947 +8000 PSCA prostate stem cell antigen Novel U 0.001670023881452637 -0.28123908268832815 1.0 10948 +23269 MGA MAX dimerization protein MGA Novel U 0.001669395108034444 -0.2812445037806012 1.0 10949 +340554 ZC3H12B zinc finger CCCH-type containing 12B Novel U 0.0016685406604544785 -0.2812518705665362 1.0 10950 +23408 SIRT5 sirtuin 5 Novel N 0.0016681663930085925 -0.2812550973860872 1.0 10951 +10541 ANP32B acidic nuclear phosphoprotein 32 family member B Novel U 0.0016669238633471354 -0.28126581009713997 1.0 10952 +123920 CMTM3 CKLF like MARVEL transmembrane domain containing 3 Novel U 0.0016652917029030068 -0.2812798820857388 1.0 10953 +134266 GRPEL2 GrpE like 2, mitochondrial Novel U 0.0016652178212477873 -0.28128051907079354 1.0 10954 +9837 GINS1 GINS complex subunit 1 Novel U 0.0016646649874775706 -0.28128528543462716 1.0 10955 +7086 TKT transketolase Novel U 0.0016637923376877622 -0.28129280915445326 1.0 10956 +256158 HMCN2 hemicentin 2 Novel U 0.0016620119562273559 -0.28130815905936146 1.0 10957 +7809 BSND barttin CLCNK type accessory subunit beta Novel N 0.0016619804498643933 -0.2813084306975953 1.0 10958 +253650 ANKRD18A ankyrin repeat domain 18A Novel U 0.0016618380956369856 -0.2813096580322439 1.0 10959 +55026 TMEM255A transmembrane protein 255A Novel U 0.0016614898959106368 -0.2813126601038827 1.0 10960 +140628 GATA5 GATA binding protein 5 Novel U 0.0016604231388680525 -0.28132185735712756 1.0 10961 +374395 TMEM179B transmembrane protein 179B Novel U 0.001659402472002784 -0.2813306572349477 1.0 10962 +9923 ZBTB40 zinc finger and BTB domain containing 40 Novel N 0.0016585756535310865 -0.2813377858111541 1.0 10963 +55728 N4BP2 NEDD4 binding protein 2 Novel U 0.0016575356318700182 -0.28134675256010927 1.0 10964 +7143 TNR tenascin R Novel N 0.0016573294255362145 -0.2813485304081074 1.0 10965 +51555 PEX5L peroxisomal biogenesis factor 5 like Novel U 0.0016566400432474816 -0.28135447405154157 1.0 10966 +158038 LINGO2 leucine rich repeat and Ig domain containing 2 Novel U 0.0016563122773589772 -0.2813572999488746 1.0 10967 +129450 TYW5 tRNA-yW synthesizing protein 5 Novel N 0.0016560243759301207 -0.2813597821470182 1.0 10968 +6247 RS1 retinoschisin 1 Novel U 0.0016559189684569125 -0.2813606909380421 1.0 10969 +10723 SLC12A7 solute carrier family 12 member 7 Novel N 0.00165552200090391 -0.28136411347098 1.0 10970 +7357 UGCG UDP-glucose ceramide glucosyltransferase Novel N 0.0016554582957603466 -0.28136466271726096 1.0 10971 +9830 TRIM14 tripartite motif containing 14 Novel U 0.0016553848925392714 -0.28136529557740275 1.0 10972 +6863 TAC1 tachykinin precursor 1 Novel N 0.0016552581491908066 -0.2813663883198234 1.0 10973 +26261 FBXO24 F-box protein 24 Novel U 0.0016537097442450405 -0.281379738194109 1.0 10974 +100131755 ARMCX4 armadillo repeat containing X-linked 4 Novel U 0.0016534733576912303 -0.2813817762467417 1.0 10975 +60559 SPCS3 signal peptidase complex subunit 3 Novel U 0.0016529548870177653 -0.28138624634245574 1.0 10976 +168975 CNBD1 cyclic nucleotide binding domain containing 1 Novel U 0.0016522868016532798 -0.28139200637031686 1.0 10977 +102157402 AK6 adenylate kinase 6 Novel N 0.0016513635773844995 -0.2813999661278463 1.0 10978 +91181 NUP210L nucleoporin 210 like Novel U 0.001650830984860309 -0.28140455797784186 1.0 10979 +4331 MNAT1 MNAT1 component of CDK activating kinase Novel N 0.0016503272738927982 -0.28140890081988135 1.0 10980 +4110 MAGEA11 MAGE family member A11 Novel U 0.001649830466721848 -0.2814131841394965 1.0 10981 +55129 ANO10 anoctamin 10 Novel N 0.0016497297629324552 -0.2814140523767959 1.0 10982 +84504 NKX6-2 NK6 homeobox 2 Novel N 0.0016496984536239058 -0.2814143223160868 1.0 10983 +129684 CNTNAP5 contactin associated protein family member 5 Novel U 0.001648018899797583 -0.2814288029159446 1.0 10984 +56107 PCDHGA9 protocadherin gamma subfamily A, 9 Novel U 0.0016478291244108214 -0.2814304391013383 1.0 10985 +54958 TMEM160 transmembrane protein 160 Novel U 0.0016477767528248364 -0.2814308906331491 1.0 10986 +9813 EFCAB14 EF-hand calcium binding domain 14 Novel U 0.001647617758798419 -0.28143226143106 1.0 10987 +1582 CYP8B1 cytochrome P450 family 8 subfamily B member 1 Novel N 0.001647092215340665 -0.2814367925061588 1.0 10988 +376940 ZC3H6 zinc finger CCCH-type containing 6 Novel U 0.0016462463313951742 -0.28144408545905425 1.0 10989 +117159 DCD dermcidin Novel U 0.0016460450111102287 -0.2814458211810322 1.0 10990 +1571 CYP2E1 cytochrome P450 family 2 subfamily E member 1 Novel N 0.0016443356189464158 -0.28146055903791783 1.0 10991 +94097 SFXN5 sideroflexin 5 Novel U 0.0016441621352222063 -0.28146205476157543 1.0 10992 +4712 NDUFB6 NADH:ubiquinone oxidoreductase subunit B6 Novel N 0.0016439474891933134 -0.2814639053740457 1.0 10993 +387712 ENO4 enolase 4 Novel U 0.0016436933939780283 -0.28146609610534623 1.0 10994 +8747 ADAM21 ADAM metallopeptidase domain 21 Novel N 0.0016429547069628906 -0.2814724648390651 1.0 10995 +6949 TCOF1 treacle ribosome biogenesis factor 1 Novel U 0.001642579482907084 -0.28147569990621446 1.0 10996 +115416 MALSU1 mitochondrial assembly of ribosomal large subunit 1 Novel N 0.0016420686328370588 -0.2814801042994142 1.0 10997 +1558 CYP2C8 cytochrome P450 family 2 subfamily C member 8 Novel N 0.0016420458476292933 -0.2814803007465129 1.0 10998 +9453 GGPS1 geranylgeranyl diphosphate synthase 1 Novel U 0.001642003279250421 -0.28148066775806774 1.0 10999 +401251 SAPCD1 suppressor APC domain containing 1 Novel U 0.0016414624621222769 -0.28148533051808533 1.0 11000 +219348 PLAC9 placenta associated 9 Novel U 0.0016412331029921265 -0.2814873079824186 1.0 11001 +84108 PCGF6 polycomb group ring finger 6 Novel N 0.001641221834998495 -0.2814874051316165 1.0 11002 +3699 ITIH3 inter-alpha-trypsin inhibitor heavy chain 3 Novel U 0.001641117714292294 -0.28148830282852844 1.0 11003 +4617 MYF5 myogenic factor 5 Novel N 0.0016398490218028023 -0.2814992411074898 1.0 11004 +10101 NUBP2 NUBP iron-sulfur cluster assembly factor 2, cytosolic Novel U 0.001639736348214239 -0.28150021254473995 1.0 11005 +1101 CHAD chondroadherin Novel U 0.001637989131446538 -0.281515276513802 1.0 11006 +85455 DISP2 dispatched RND transporter family member 2 Novel U 0.0016378344876673478 -0.28151660980521065 1.0 11007 +168374 ZNF92 zinc finger protein 92 Novel U 0.0016372614391326663 -0.2815215504545663 1.0 11008 +203286 ANKS6 ankyrin repeat and sterile alpha motif domain containing 6 Novel U 0.001637193663276846 -0.28152213479728444 1.0 11009 +112840 WDR89 WD repeat domain 89 Novel U 0.0016365589558745028 -0.2815276070505556 1.0 11010 +645402 USP17L4 ubiquitin specific peptidase 17 like family member 4 Novel U 0.0016360457913433034 -0.2815320313983323 1.0 11011 +11051 NUDT21 nudix hydrolase 21 Novel U 0.0016355716690904067 -0.281536119135516 1.0 11012 +1725 DHPS deoxyhypusine synthase Novel U 0.001635031308633621 -0.2815407779582528 1.0 11013 +205327 C2orf69 chromosome 2 open reading frame 69 Novel N 0.0016349044249228477 -0.28154187191083435 1.0 11014 +219771 CCNY cyclin Y Novel U 0.0016340493016190351 -0.2815492445226539 1.0 11015 +389761 SPATA31D4 SPATA31 subfamily D member 4 Novel U 0.001633824532832595 -0.2815511824104464 1.0 11016 +55554 KLK15 kallikrein related peptidase 15 Novel U 0.0016337372473527803 -0.28155193495918096 1.0 11017 +246100 CTAG1A cancer/testis antigen 1A Novel U 0.001633065764237923 -0.2815577242814075 1.0 11018 +1801 DPH1 diphthamide biosynthesis 1 Novel U 0.0016327591877790019 -0.28156036748995367 1.0 11019 +27239 GPR162 G protein-coupled receptor 162 Novel U 0.0016317049034927102 -0.28156945720690524 1.0 11020 +284114 TMEM102 transmembrane protein 102 Novel U 0.0016316512546399149 -0.28156991975092016 1.0 11021 +7013 TERF1 telomeric repeat binding factor 1 Novel U 0.0016306686289173505 -0.28157839164963244 1.0 11022 +23016 EXOSC7 exosome component 7 Novel N 0.0016303168513856008 -0.2815814245680161 1.0 11023 +7047 TGM4 transglutaminase 4 Novel U 0.0016301751620086589 -0.2815826461705271 1.0 11024 +3978 LIG1 DNA ligase 1 Novel U 0.0016301422634647116 -0.28158292981172 1.0 11025 +64421 DCLRE1C DNA cross-link repair 1C Novel U 0.0016291339758876732 -0.28159162295909984 1.0 11026 +151195 CCNYL1 cyclin Y like 1 Novel U 0.0016286944526475405 -0.28159541239416813 1.0 11027 +51122 COMMD2 COMM domain containing 2 Novel U 0.0016281003316690524 -0.281600534723695 1.0 11028 +55695 NSUN5 NOP2/Sun RNA methyltransferase 5 Novel N 0.0016279723110752496 -0.2816016384781347 1.0 11029 +7227 TRPS1 transcriptional repressor GATA binding 1 Novel U 0.001627942754788006 -0.28160189330341157 1.0 11030 +85465 SELENOI selenoprotein I Novel U 0.001627696650944488 -0.28160401513554667 1.0 11031 +89970 RSPRY1 ring finger and SPRY domain containing 1 Novel U 0.0016276766318798642 -0.2816041877338045 1.0 11032 +9674 KIAA0040 KIAA0040 Novel U 0.001627137994354523 -0.28160883170195283 1.0 11033 +116173 CMTM5 CKLF like MARVEL transmembrane domain containing 5 Novel U 0.0016268093916583328 -0.28161166481398603 1.0 11034 +51389 RWDD1 RWD domain containing 1 Novel U 0.0016253488084455327 -0.28162425751612635 1.0 11035 +728888 NPIPB11 nuclear pore complex interacting protein family member B11 Novel U 0.0016249926690964933 -0.2816273280407658 1.0 11036 +283149 BCL9L BCL9 like Novel U 0.001624035152559361 -0.281635583455754 1.0 11037 +346606 MOGAT3 monoacylglycerol O-acyltransferase 3 Novel U 0.0016235612658925707 -0.28163966916178634 1.0 11038 +55289 ACOXL acyl-CoA oxidase like Novel U 0.0016234206815265082 -0.28164088123723113 1.0 11039 +220134 SKA1 spindle and kinetochore associated complex subunit 1 Novel U 0.001622875594076738 -0.281645580814657 1.0 11040 +57758 SCUBE2 signal peptide, CUB domain and EGF like domain containing 2 Novel U 0.0016225581580687628 -0.28164831765091664 1.0 11041 +55352 COPRS coordinator of PRMT5 and differentiation stimulator Novel N 0.0016225536523326125 -0.2816483564979969 1.0 11042 +90120 TMEM250 transmembrane protein 250 Novel N 0.001622532328080417 -0.2816485403491831 1.0 11043 +6218 RPS17 ribosomal protein S17 Novel U 0.001622495351028166 -0.28164885915402826 1.0 11044 +7979 SEM1 SEM1 26S proteasome subunit Novel N 0.0016222080390519938 -0.281651336270091 1.0 11045 +326 AIRE autoimmune regulator Novel U 0.0016210078811962356 -0.2816616836643828 1.0 11046 +2554 GABRA1 gamma-aminobutyric acid type A receptor subunit alpha1 Novel U 0.0016206817248608323 -0.28166449568464086 1.0 11047 +7078 TIMP3 TIMP metallopeptidase inhibitor 3 Novel U 0.001620110453853252 -0.28166942100870096 1.0 11048 +5612 THAP12 THAP domain containing 12 Novel N 0.0016199535618680143 -0.2816707736834551 1.0 11049 +4705 NDUFA10 NADH:ubiquinone oxidoreductase subunit A10 Novel N 0.0016195412762871112 -0.2816743282837487 1.0 11050 +390999 PRAMEF12 PRAME family member 12 Novel U 0.0016189018225769068 -0.2816798414582358 1.0 11051 +816 CAMK2B calcium/calmodulin dependent protein kinase II beta Novel U 0.0016182709766234355 -0.28168528041927476 1.0 11052 +117196 MRGPRX4 MAS related GPR family member X4 Novel U 0.0016177116057237778 -0.28169010314424076 1.0 11053 +56265 CPXM1 carboxypeptidase X, M14 family member 1 Novel U 0.0016175465444537257 -0.2816915262520723 1.0 11054 +345757 FAM174A family with sequence similarity 174 member A Novel U 0.0016174876632590528 -0.28169203390774 1.0 11055 +10664 CTCF CCCTC-binding factor Novel U 0.0016173604722575284 -0.2816931305096885 1.0 11056 +6607 SMN2 survival of motor neuron 2, centromeric Novel N 0.0016157710339422362 -0.2817068341611474 1.0 11057 +2998 GYS2 glycogen synthase 2 Novel N 0.0016150646864307092 -0.2817129240735483 1.0 11058 +14 AAMP angio associated migratory cell protein Novel U 0.0016150254718320476 -0.2817132621698349 1.0 11059 +150678 COPS9 COP9 signalosome subunit 9 Novel U 0.0016147082930925633 -0.28171599678800424 1.0 11060 +102288414 C11orf98 chromosome 11 open reading frame 98 Novel U 0.0016143494879655455 -0.2817190902961668 1.0 11061 +55502 HES6 hes family bHLH transcription factor 6 Novel N 0.0016141891341596823 -0.28172047281768053 1.0 11062 +6557 SLC12A1 solute carrier family 12 member 1 Novel U 0.0016140720451132057 -0.28172148232365957 1.0 11063 +2079 ERH ERH mRNA splicing and mitosis factor Novel N 0.0016139905572917397 -0.2817221848867555 1.0 11064 +10071 MUC12 mucin 12, cell surface associated Novel U 0.0016137857261662141 -0.28172395087812807 1.0 11065 +23729 SHPK sedoheptulokinase Novel U 0.0016129326972386818 -0.2817313054328754 1.0 11066 +200205 IBA57 iron-sulfur cluster assembly factor IBA57 Novel N 0.0016128140541582458 -0.2817323283372603 1.0 11067 +23361 ZNF629 zinc finger protein 629 Novel U 0.0016120932622896837 -0.28173854278449373 1.0 11068 +140460 ASB7 ankyrin repeat and SOCS box containing 7 Novel U 0.0016117503719937584 -0.28174149907984586 1.0 11069 +8348 H2BC17 H2B clustered histone 17 Novel U 0.0016117423576765158 -0.28174156817684015 1.0 11070 +84197 POMK protein O-mannose kinase Novel N 0.0016115855520171716 -0.2817429201073188 1.0 11071 +197135 PATL2 PAT1 homolog 2 Novel N 0.0016114515067608011 -0.2817440758045581 1.0 11072 +1305 COL13A1 collagen type XIII alpha 1 chain Novel U 0.0016110678601095514 -0.2817473834887516 1.0 11073 +57088 PLSCR4 phospholipid scramblase 4 Novel U 0.0016104359971857462 -0.281752831217798 1.0 11074 +56897 WRNIP1 WRN helicase interacting protein 1 Novel N 0.0016092778169251162 -0.28176281669409203 1.0 11075 +23708 GSPT2 G1 to S phase transition 2 Novel U 0.001608566753438999 -0.2817689472661848 1.0 11076 +729665 CCDC175 coiled-coil domain containing 175 Novel U 0.0016084640521447393 -0.28176983272536077 1.0 11077 +10813 UTP14A UTP14A small subunit processome component Novel U 0.0016076441548929581 -0.281776901628924 1.0 11078 +117246 FTSJ3 FtsJ RNA 2'-O-methyltransferase 3 Novel N 0.0016060506564834827 -0.2817906402852742 1.0 11079 +285311 PRR23E PRR23 family member E Novel U 0.00160601437776129 -0.281790953069331 1.0 11080 +162466 PHOSPHO1 phosphoethanolamine/phosphocholine phosphatase 1 Novel U 0.0016053935421186083 -0.2817963057245292 1.0 11081 +5988 RFPL1 ret finger protein like 1 Novel U 0.0016052506136486695 -0.28179753801012136 1.0 11082 +7368 UGT8 UDP glycosyltransferase 8 Novel N 0.0016050439525115438 -0.28179931977929484 1.0 11083 +22915 MMRN1 multimerin 1 Novel U 0.0016045954725529919 -0.28180318643645236 1.0 11084 +6565 SLC15A2 solute carrier family 15 member 2 Novel U 0.001604406495616787 -0.2818048157378493 1.0 11085 +55215 FANCI FA complementation group I Novel U 0.0016042463400022006 -0.2818061965506184 1.0 11086 +158833 AWAT1 acyl-CoA wax alcohol acyltransferase 1 Novel N 0.0016042151867074427 -0.2818064651448061 1.0 11087 +54762 GRAMD1C GRAM domain containing 1C Novel U 0.0016040870056462477 -0.2818075702827466 1.0 11088 +114799 ESCO1 establishment of sister chromatid cohesion N-acetyltransferase 1 Novel U 0.0016036929202661546 -0.28181096796647037 1.0 11089 +162083 C16orf82 chromosome 16 open reading frame 82 Novel U 0.0016032449158642314 -0.28181483052352396 1.0 11090 +81551 STMN4 stathmin 4 Novel U 0.0016021461169534697 -0.281824304031965 1.0 11091 +9013 TAF1C TATA-box binding protein associated factor, RNA polymerase I subunit C Novel N 0.0016020082186344433 -0.28182549294913306 1.0 11092 +127534 GJB4 gap junction protein beta 4 Novel N 0.0016016593172952902 -0.28182850106986307 1.0 11093 +55759 WDR12 WD repeat domain 12 Novel N 0.0016013968636784273 -0.281830763864748 1.0 11094 +79848 CSPP1 centrosome and spindle pole associated protein 1 Novel U 0.0016011134078273226 -0.2818332077344786 1.0 11095 +60492 CCDC90B coiled-coil domain containing 90B Novel U 0.001600575721116798 -0.28183784350499214 1.0 11096 +84501 SPIRE2 spire type actin nucleation factor 2 Novel U 0.0016002290414482959 -0.28184083247115665 1.0 11097 +6573 SLC19A1 solute carrier family 19 member 1 Novel U 0.0015999187578093546 -0.2818435076418761 1.0 11098 +6749 SSRP1 structure specific recognition protein 1 Novel U 0.0015994440617820857 -0.2818476003259671 1.0 11099 +11131 CAPN11 calpain 11 Novel U 0.001599321866796303 -0.28184865385379454 1.0 11100 +257415 FAM133B family with sequence similarity 133 member B Novel U 0.0015989183880804527 -0.28185213252398883 1.0 11101 +80045 GPR157 G protein-coupled receptor 157 Novel U 0.001598736006685037 -0.2818537049606486 1.0 11102 +197 AHSG alpha 2-HS glycoprotein Novel U 0.0015982594862818237 -0.2818578133739515 1.0 11103 +54978 SLC35F6 solute carrier family 35 member F6 Novel N 0.001598126209906808 -0.2818589624421307 1.0 11104 +100130519 TMEM221 transmembrane protein 221 Novel U 0.0015972925819639357 -0.2818661497275167 1.0 11105 +84283 TMEM79 transmembrane protein 79 Novel U 0.0015966491278851544 -0.2818716973919593 1.0 11106 +114836 SLAMF6 SLAM family member 6 Novel U 0.0015965881053450486 -0.281872223509653 1.0 11107 +374928 ZNF773 zinc finger protein 773 Novel U 0.0015955109280284794 -0.28188151060331595 1.0 11108 +55228 PNMA8A PNMA family member 8A Novel U 0.0015945120149970938 -0.2818901229262279 1.0 11109 +146330 FBXL16 F-box and leucine rich repeat protein 16 Novel U 0.0015941146872828626 -0.2818935485643658 1.0 11110 +645974 PABPC1L2B poly(A) binding protein cytoplasmic 1 like 2B Novel U 0.0015939619976164847 -0.28189486500801086 1.0 11111 +1951 CELSR3 cadherin EGF LAG seven-pass G-type receptor 3 Novel U 0.0015936389065847652 -0.2818976506001572 1.0 11112 +92285 ZNF585B zinc finger protein 585B Novel U 0.0015920176363948282 -0.2819116286963122 1.0 11113 +80817 CEP44 centrosomal protein 44 Novel N 0.0015914246914152282 -0.2819167408867361 1.0 11114 +2975 GTF3C1 general transcription factor IIIC subunit 1 Novel N 0.001591050578648391 -0.2819199663726915 1.0 11115 +2201 FBN2 fibrillin 2 Novel U 0.0015908392851505819 -0.2819217880806632 1.0 11116 +8876 VNN1 vanin 1 Novel N 0.0015906865432184082 -0.281923104974928 1.0 11117 +65061 CDK15 cyclin dependent kinase 15 Novel U 0.0015901011580109826 -0.28192815198730625 1.0 11118 +25915 NDUFAF3 NADH:ubiquinone oxidoreductase complex assembly factor 3 Novel N 0.001589491592108886 -0.28193340747824486 1.0 11119 +346171 ZFP57 ZFP57 zinc finger protein Novel U 0.0015893837785460976 -0.2819343370138379 1.0 11120 +7922 SLC39A7 solute carrier family 39 member 7 Novel U 0.0015883361248529549 -0.2819433695638414 1.0 11121 +92715 DPH7 diphthamide biosynthesis 7 Novel N 0.0015882063906888073 -0.28194448809216094 1.0 11122 +84517 ACTRT3 actin related protein T3 Novel U 0.0015881632323157167 -0.28194486019046555 1.0 11123 +54842 MFSD6 major facilitator superfamily domain containing 6 Novel U 0.0015876474728127546 -0.28194930691129594 1.0 11124 +55879 GABRQ gamma-aminobutyric acid type A receptor subunit theta Novel N 0.001587475729959401 -0.28195078762569686 1.0 11125 +25972 UNC50 unc-50 inner nuclear membrane RNA binding protein Novel U 0.001587441056881025 -0.28195108656638335 1.0 11126 +7264 GFUS GDP-L-fucose synthase Novel U 0.0015863340116742215 -0.28196063117186904 1.0 11127 +374407 DNAJB13 DnaJ heat shock protein family (Hsp40) member B13 Novel N 0.0015860627132135924 -0.281962970224294 1.0 11128 +7515 XRCC1 X-ray repair cross complementing 1 Novel N 0.0015858624058402312 -0.28196469721325784 1.0 11129 +51547 SIRT7 sirtuin 7 Novel U 0.0015852816335012322 -0.2819697044548941 1.0 11130 +23089 PEG10 paternally expressed 10 Novel U 0.0015852795302195842 -0.2819697225887457 1.0 11131 +477 ATP1A2 ATPase Na+/K+ transporting subunit alpha 2 Novel U 0.001585249896402584 -0.28196997808246055 1.0 11132 +79954 NOL10 nucleolar protein 10 Novel U 0.0015840375921072909 -0.28198043019964236 1.0 11133 +151903 CCDC12 coiled-coil domain containing 12 Novel U 0.001583997004670187 -0.2819807801321225 1.0 11134 +284403 WDR62 WD repeat domain 62 Novel U 0.00158317680959091 -0.2819878516034634 1.0 11135 +54936 ADPRS ADP-ribosylserine hydrolase Novel N 0.001582837598219092 -0.2819907761802561 1.0 11136 +23277 CLUH clustered mitochondria homolog Novel U 0.0015823707593804752 -0.28199480112206743 1.0 11137 +6518 SLC2A5 solute carrier family 2 member 5 Novel U 0.0015820102837504483 -0.28199790903279653 1.0 11138 +222389 BEND7 BEN domain containing 7 Novel U 0.0015809687252104567 -0.28200688903225213 1.0 11139 +229 ALDOB aldolase, fructose-bisphosphate B Novel N 0.0015802289802822984 -0.28201326688697376 1.0 11140 +112869 SGF29 SAGA complex associated factor 29 Novel U 0.0015797100306446678 -0.28201774111217043 1.0 11141 +91703 ACY3 aminoacylase 3 Novel U 0.0015790555182669233 -0.28202338411788747 1.0 11142 +55795 PCID2 PCI domain containing 2 Novel N 0.0015789714951580326 -0.2820241085394568 1.0 11143 +2572 GAD2 glutamate decarboxylase 2 Novel N 0.0015787280931721375 -0.28202620707700116 1.0 11144 +27163 NAAA N-acylethanolamine acid amidase Novel U 0.0015784927497325117 -0.28202823613622213 1.0 11145 +8329 H2AC13 H2A clustered histone 13 Novel U 0.0015773890260614564 -0.28203775210444154 1.0 11146 +9409 PEX16 peroxisomal biogenesis factor 16 Novel U 0.001576915684581289 -0.28204183311004133 1.0 11147 +404552 SCGB1D4 secretoglobin family 1D member 4 Novel U 0.0015752808829099117 -0.2820559278704944 1.0 11148 +10660 LBX1 ladybird homeobox 1 Novel N 0.001575101911823693 -0.2820574709045103 1.0 11149 +55751 TMEM184C transmembrane protein 184C Novel U 0.0015748164970832215 -0.2820599316631865 1.0 11150 +54498 SMOX spermine oxidase Novel N 0.0015748011632492154 -0.28206006386681765 1.0 11151 +8292 COLQ collagen like tail subunit of asymmetric acetylcholinesterase Novel N 0.0015744372398368634 -0.28206320150327235 1.0 11152 +374899 ZNF829 zinc finger protein 829 Novel U 0.001573929792855316 -0.28206757655608317 1.0 11153 +728568 UQCC6 ubiquinol-cytochrome c reductase complex assembly factor 6 Novel N 0.0015739155428842226 -0.2820676994149795 1.0 11154 +203562 TMEM31 transmembrane protein 31 Novel U 0.0015726439198453723 -0.28207866296024187 1.0 11155 +340419 RSPO2 R-spondin 2 Novel U 0.0015718109535502363 -0.2820858445411033 1.0 11156 +29954 POMT2 protein O-mannosyltransferase 2 Novel U 0.0015715949073825811 -0.28208770722514215 1.0 11157 +348093 RBPMS2 RNA binding protein, mRNA processing factor 2 Novel N 0.0015713289731623813 -0.28209000002872536 1.0 11158 +3000 GUCY2D guanylate cyclase 2D, retinal Novel U 0.0015708765860331369 -0.28209390037231463 1.0 11159 +342538 NACA2 nascent polypeptide associated complex subunit alpha 2 Novel U 0.001570150313103067 -0.2821001620755855 1.0 11160 +4201 MEA1 male-enhanced antigen 1 Novel N 0.0015698390790170166 -0.28210284544076947 1.0 11161 +170961 ANKRD24 ankyrin repeat domain 24 Novel U 0.0015697419481436325 -0.28210368287347887 1.0 11162 +26512 INTS6 integrator complex subunit 6 Novel N 0.0015696611131126113 -0.282104379808415 1.0 11163 +196264 MPZL3 myelin protein zero like 3 Novel U 0.0015664817103889744 -0.2821317916471463 1.0 11164 +8689 KRT36 keratin 36 Novel U 0.0015661254027635714 -0.2821348636226131 1.0 11165 +56105 PCDHGA11 protocadherin gamma subfamily A, 11 Novel U 0.0015660798887415087 -0.2821352560306033 1.0 11166 +3749 KCNC4 potassium voltage-gated channel subfamily C member 4 Novel N 0.001565776799498593 -0.2821378691734387 1.0 11167 +23036 ZNF292 zinc finger protein 292 Novel U 0.001565533191617992 -0.2821399694861443 1.0 11168 +84128 WDR75 WD repeat domain 75 Novel N 0.001564856971509397 -0.2821457996492833 1.0 11169 +51073 MRPL4 mitochondrial ribosomal protein L4 Novel U 0.001564835180414727 -0.28214598752544273 1.0 11170 +3995 FADS3 fatty acid desaturase 3 Novel U 0.0015645955475375474 -0.28214805356688355 1.0 11171 +100289462 DEFB4B defensin beta 4B Novel U 0.0015645555839363375 -0.2821483981208412 1.0 11172 +26589 MRPL46 mitochondrial ribosomal protein L46 Novel U 0.001564223416790365 -0.2821512619644712 1.0 11173 +29953 TRHDE thyrotropin releasing hormone degrading enzyme Novel N 0.0015639602281070134 -0.28215353109687463 1.0 11174 +56942 CMC2 C-X9-C motif containing 2 Novel U 0.00156391319786691 -0.2821539365772335 1.0 11175 +23270 TSPYL4 TSPY like 4 Novel U 0.0015638936940848807 -0.2821541047328822 1.0 11176 +85320 ABCC11 ATP binding cassette subfamily C member 11 Novel N 0.001562769198268737 -0.2821637997921891 1.0 11177 +54989 ZNF770 zinc finger protein 770 Novel U 0.001561966593556994 -0.2821707196047563 1.0 11178 +149013 NBPF12 NBPF member 12 Novel U 0.0015618360361255297 -0.28217184523103506 1.0 11179 +5409 PNMT phenylethanolamine N-methyltransferase Novel N 0.0015617717809671512 -0.28217239921937576 1.0 11180 +643376 BTBD18 BTB domain containing 18 Novel U 0.001560593597286872 -0.2821825571590414 1.0 11181 +3420 IDH3B isocitrate dehydrogenase (NAD(+)) 3 non-catalytic subunit beta Novel N 0.0015600781388592268 -0.28218700128409235 1.0 11182 +6757 SSX2 SSX family member 2 Novel U 0.001559022495573019 -0.2821961027179259 1.0 11183 +57475 PLEKHH1 pleckstrin homology, MyTH4 and FERM domain containing H1 Novel U 0.00155896118948049 -0.28219663128032196 1.0 11184 +64788 LMF1 lipase maturation factor 1 Novel N 0.001558902581932378 -0.28219713657669265 1.0 11185 +404037 HAPLN4 hyaluronan and proteoglycan link protein 4 Novel U 0.0015588880202778877 -0.282197262122828 1.0 11186 +51307 FAM53C family with sequence similarity 53 member C Novel U 0.0015588484056514537 -0.2821976036680318 1.0 11187 +56113 PCDHGA2 protocadherin gamma subfamily A, 2 Novel U 0.0015568641094991557 -0.28221471166310186 1.0 11188 +128178 EDARADD EDAR associated via death domain Novel U 0.001556673720014726 -0.28221635314305804 1.0 11189 +55234 SMU1 SMU1 DNA replication regulator and spliceosomal factor Novel N 0.0015561336308603433 -0.2822210096267083 1.0 11190 +10929 SRSF8 serine and arginine rich splicing factor 8 Novel U 0.001555904171175708 -0.28222298795799167 1.0 11191 +11122 PTPRT protein tyrosine phosphatase receptor type T Novel U 0.00155552546521104 -0.2822262530450953 1.0 11192 +51203 NUSAP1 nucleolar and spindle associated protein 1 Novel U 0.0015553161453419656 -0.28222805773704307 1.0 11193 +80317 ZKSCAN3 zinc finger with KRAB and SCAN domains 3 Novel U 0.0015546863551295247 -0.28223348759580547 1.0 11194 +50651 SLC45A1 solute carrier family 45 member 1 Novel N 0.0015545228290675505 -0.282234897467542 1.0 11195 +150737 IFT70B intraflagellar transport 70B Novel U 0.0015543688954205324 -0.2822362246364081 1.0 11196 +3868 KRT16 keratin 16 Novel U 0.001554285121697794 -0.2822369469078462 1.0 11197 +6059 ABCE1 ATP binding cassette subfamily E member 1 Novel U 0.0015531727805280127 -0.2822465371735063 1.0 11198 +401 PHOX2A paired like homeobox 2A Novel N 0.0015528888782838193 -0.2822489848919018 1.0 11199 +6780 STAU1 staufen double-stranded RNA binding protein 1 Novel N 0.001551536416064522 -0.2822606454078754 1.0 11200 +56256 SERTAD4 SERTA domain containing 4 Novel U 0.001551032296265516 -0.2822649917747351 1.0 11201 +57622 LRFN1 leucine rich repeat and fibronectin type III domain containing 1 Novel U 0.001550686058937432 -0.28226797692717565 1.0 11202 +105378952 KLF18 KLF transcription factor 18 Novel U 0.0015500475818821225 -0.2822734816812427 1.0 11203 +115209 OMA1 OMA1 zinc metallopeptidase Novel N 0.0015496631016894157 -0.282276796551976 1.0 11204 +27159 CHIA chitinase acidic Novel U 0.0015488972022434783 -0.2822833999029577 1.0 11205 +25987 TSKU tsukushi, small leucine rich proteoglycan Novel U 0.0015482899139571116 -0.28228863575698954 1.0 11206 +90806 ANGEL2 angel homolog 2 Novel N 0.0015472038432325001 -0.282297999526899 1.0 11207 +100528062 ARMCX5-GPRASP2 ARMCX5-GPRASP2 readthrough Novel U 0.001546684761614629 -0.28230247488998894 1.0 11208 +339479 BRINP3 BMP/retinoic acid inducible neural specific 3 Novel U 0.0015459942151932243 -0.2823084285702193 1.0 11209 +4801 NFYB nuclear transcription factor Y subunit beta Novel N 0.0015454231108381197 -0.2823133524574527 1.0 11210 +54880 BCOR BCL6 corepressor Novel U 0.001545179504131111 -0.28231545276004 1.0 11211 +7779 SLC30A1 solute carrier family 30 member 1 Novel N 0.0015448335244998283 -0.28231843569069753 1.0 11212 +10902 BRD8 bromodomain containing 8 Novel N 0.001544565628549938 -0.2823207454077147 1.0 11213 +389692 MAFA MAF bZIP transcription factor A Novel U 0.0015445186701562679 -0.2823211502686355 1.0 11214 +7064 THOP1 thimet oligopeptidase 1 Novel U 0.0015439546214341352 -0.2823260133243575 1.0 11215 +80139 ZNF703 zinc finger protein 703 Novel U 0.0015439311596021936 -0.2823262156051031 1.0 11216 +55246 CCDC25 coiled-coil domain containing 25 Novel N 0.0015431181786314395 -0.28233322487860474 1.0 11217 +6874 TAF4 TATA-box binding protein associated factor 4 Novel N 0.0015428943671847472 -0.28233515451250657 1.0 11218 +23521 RPL13A ribosomal protein L13a Novel U 0.001542878184393608 -0.28233529403558666 1.0 11219 +55922 NKRF NFKB repressing factor Novel N 0.0015418167487720096 -0.28234444540916587 1.0 11220 +56910 STARD7 StAR related lipid transfer domain containing 7 Novel N 0.0015416214900344518 -0.28234612887033456 1.0 11221 +9603 NFE2L3 NFE2 like bZIP transcription factor 3 Novel N 0.0015414900998914143 -0.28234726167599805 1.0 11222 +55731 FAM222B family with sequence similarity 222 member B Novel U 0.0015413499658530065 -0.2823484698688555 1.0 11223 +11151 CORO1A coronin 1A Novel U 0.0015409772715240559 -0.2823516831254729 1.0 11224 +10025 MED16 mediator complex subunit 16 Novel N 0.0015407958175984657 -0.28235324756577124 1.0 11225 +9131 AIFM1 apoptosis inducing factor mitochondria associated 1 Novel U 0.0015407515923470138 -0.2823536288623751 1.0 11226 +26040 SETBP1 SET binding protein 1 Novel U 0.0015406289960898608 -0.28235468584984164 1.0 11227 +150590 C2orf15 chromosome 2 open reading frame 15 Novel U 0.0015405141848388202 -0.2823556757173645 1.0 11228 +50512 PODXL2 podocalyxin like 2 Novel U 0.0015402010096720207 -0.28235837581795353 1.0 11229 +2617 GARS1 glycyl-tRNA synthetase 1 Novel N 0.001539419624331771 -0.28236511268358383 1.0 11230 +4489 MT1A metallothionein 1A Novel U 0.0015388555950228411 -0.2823699755719311 1.0 11231 +51020 HDDC2 HD domain containing 2 Novel U 0.0015387985327766386 -0.282370467545181 1.0 11232 +11169 WDHD1 WD repeat and HMG-box DNA binding protein 1 Novel U 0.001537638212447865 -0.2823804714724886 1.0 11233 +55783 CMTR2 cap methyltransferase 2 Novel N 0.0015369212145082516 -0.2823866532096259 1.0 11234 +55969 RAB5IF RAB5 interacting factor Novel U 0.0015365601950962221 -0.2823897658086773 1.0 11235 +643311 CT47B1 cancer/testis antigen family 47 member B1 Novel U 0.0015353128722142945 -0.28240051984541226 1.0 11236 +2566 GABRG2 gamma-aminobutyric acid type A receptor subunit gamma2 Novel U 0.0015350565183455255 -0.28240273005013294 1.0 11237 +54332 GDAP1 ganglioside induced differentiation associated protein 1 Novel U 0.0015345911083443273 -0.28240674267294474 1.0 11238 +7150 TOP1 DNA topoisomerase I Novel U 0.0015344527492112876 -0.2824079355631105 1.0 11239 +10 NAT2 N-acetyltransferase 2 Novel N 0.0015344033198389257 -0.28240836172805456 1.0 11240 +6096 RORB RAR related orphan receptor B Novel N 0.00153437938664654 -0.28240856807272585 1.0 11241 +10768 AHCYL1 adenosylhomocysteinase like 1 Novel U 0.0015339880942483101 -0.2824119416762135 1.0 11242 +8566 PDXK pyridoxal kinase Novel U 0.0015332076750915566 -0.28241867021170497 1.0 11243 +51616 TAF9B TATA-box binding protein associated factor 9b Novel N 0.0015326477027992125 -0.282423498121695 1.0 11244 +3207 HOXA11 homeobox A11 Novel U 0.001532341859116457 -0.28242613501246894 1.0 11245 +11330 CTRC chymotrypsin C Novel U 0.0015318267501002682 -0.2824305761250011 1.0 11246 +65056 GPBP1 GC-rich promoter binding protein 1 Novel U 0.0015317211879258624 -0.28243148624981146 1.0 11247 +148811 PM20D1 peptidase M20 domain containing 1 Novel N 0.001531492617898235 -0.28243345691074395 1.0 11248 +8647 ABCB11 ATP binding cassette subfamily B member 11 Novel U 0.001530604600295226 -0.2824411131271594 1.0 11249 +2661 GDF9 growth differentiation factor 9 Novel U 0.0015301168579788563 -0.2824453182923684 1.0 11250 +375449 MAST4 microtubule associated serine/threonine kinase family member 4 Novel U 0.0015300451805160473 -0.2824459362735498 1.0 11251 +647174 SERPINE3 serpin family E member 3 Novel U 0.0015299494136989669 -0.28244676194578255 1.0 11252 +3203 HOXA6 homeobox A6 Novel U 0.0015295590068913729 -0.2824501279139783 1.0 11253 +5717 PSMD11 proteasome 26S subunit, non-ATPase 11 Novel U 0.0015295493780748343 -0.28245021093069217 1.0 11254 +4686 NCBP1 nuclear cap binding protein subunit 1 Novel U 0.0015295003316142042 -0.28245063379428825 1.0 11255 +6559 SLC12A3 solute carrier family 12 member 3 Novel U 0.0015293562934813605 -0.28245187564705493 1.0 11256 +653598 PPIAL4C peptidylprolyl isomerase A like 4C Novel U 0.001529341546572309 -0.28245200279039845 1.0 11257 +162963 ZNF610 zinc finger protein 610 Novel U 0.0015291269852918644 -0.2824538526721935 1.0 11258 +133686 NADK2 NAD kinase 2, mitochondrial Novel N 0.0015287912846413466 -0.2824567469806199 1.0 11259 +347853 TBX10 T-box transcription factor 10 Novel N 0.0015282654766180374 -0.2824612803367221 1.0 11260 +8190 MIA MIA SH3 domain containing Novel U 0.0015278792562851487 -0.28246461021041225 1.0 11261 +11107 PRDM5 PR/SET domain 5 Novel U 0.0015278048597960356 -0.28246525163420755 1.0 11262 +9507 ADAMTS4 ADAM metallopeptidase with thrombospondin type 1 motif 4 Novel U 0.0015268597041913112 -0.2824734004770138 1.0 11263 +113201 GOLM2 golgi membrane protein 2 Novel U 0.0015268508264151572 -0.28247347701848696 1.0 11264 +154865 IQUB IQ motif and ubiquitin domain containing Novel N 0.0015263430312881805 -0.2824778550729013 1.0 11265 +80755 AARSD1 alanyl-tRNA synthetase domain containing 1 Novel U 0.0015255977332937537 -0.28248428080446336 1.0 11266 +790955 UQCC3 ubiquinol-cytochrome c reductase complex assembly factor 3 Novel N 0.001525544813403411 -0.28248473706358684 1.0 11267 +9086 EIF1AY eukaryotic translation initiation factor 1A Y-linked Novel U 0.0015254994719539963 -0.2824851279837084 1.0 11268 +6729 SRP54 signal recognition particle 54 Novel U 0.0015252326520774483 -0.28248742842315 1.0 11269 +8125 ANP32A acidic nuclear phosphoprotein 32 family member A Novel N 0.0015252206909232902 -0.2824875315485661 1.0 11270 +152926 PPM1K protein phosphatase, Mg2+/Mn2+ dependent 1K Novel N 0.0015239525814818608 -0.2824984648006652 1.0 11271 +25766 PRPF40B pre-mRNA processing factor 40 homolog B Novel U 0.0015237848970071314 -0.2824999105249658 1.0 11272 +100131137 BSPH1 binder of sperm protein homolog 1 Novel U 0.001523501310106471 -0.2825023555245657 1.0 11273 +1583 CYP11A1 cytochrome P450 family 11 subfamily A member 1 Novel N 0.0015231859126013567 -0.2825050747854766 1.0 11274 +2203 FBP1 fructose-bisphosphatase 1 Novel U 0.0015231825093585828 -0.28250510412719587 1.0 11275 +161142 GARIN2 golgi associated RAB2 interactor family member 2 Novel U 0.0015230173887095396 -0.2825065277469749 1.0 11276 +1355 COX15 cytochrome c oxidase assembly homolog COX15 Novel U 0.0015226722900635128 -0.28250950308204675 1.0 11277 +3148 HMGB2 high mobility group box 2 Novel U 0.0015222048965912581 -0.2825135328057399 1.0 11278 +126567 C2CD4C C2 calcium dependent domain containing 4C Novel U 0.0015213679701514696 -0.2825207485297584 1.0 11279 +3359 HTR3A 5-hydroxytryptamine receptor 3A Novel N 0.001521216693388924 -0.2825220527917784 1.0 11280 +5424 POLD1 DNA polymerase delta 1, catalytic subunit Novel U 0.0015212064013544165 -0.28252214152655486 1.0 11281 +25879 DCAF13 DDB1 and CUL4 associated factor 13 Novel U 0.0015206735781183895 -0.28252673536567746 1.0 11282 +7581 ZNF33A zinc finger protein 33A Novel U 0.0015205764941235303 -0.2825275723942145 1.0 11283 +54505 DHX29 DExH-box helicase 29 Novel N 0.0015190926262721686 -0.2825403658493933 1.0 11284 +10489 LRRC41 leucine rich repeat containing 41 Novel U 0.0015183390048609325 -0.2825468633429117 1.0 11285 +23559 WBP1 WW domain binding protein 1 Novel U 0.0015183064401148591 -0.28254714410620124 1.0 11286 +23478 SEC11A SEC11 homolog A, signal peptidase complex subunit Novel N 0.0015182119646469062 -0.2825479586448164 1.0 11287 +80168 MOGAT2 monoacylglycerol O-acyltransferase 2 Novel U 0.0015180129963488424 -0.2825496740886822 1.0 11288 +64110 MAGEF1 MAGE family member F1 Novel U 0.001517951976628089 -0.28255020018206833 1.0 11289 +23148 NACAD NAC alpha domain containing Novel U 0.0015177122904638564 -0.2825522666829338 1.0 11290 +445582 POTEE POTE ankyrin domain family member E Novel U 0.001517084194100281 -0.28255768193784886 1.0 11291 +100125288 ZGLP1 zinc finger GATA like protein 1 Novel U 0.001516872374998467 -0.28255950817741765 1.0 11292 +90668 CARMIL3 capping protein regulator and myosin 1 linker 3 Novel U 0.001516840644052226 -0.2825597817519399 1.0 11293 +112441437 SCYGR5 small cysteine and glycine repeat containing 5 Novel U 0.0015164084428575997 -0.2825635080585693 1.0 11294 +56980 PRDM10 PR/SET domain 10 Novel N 0.0015160338540274934 -0.28256673764899676 1.0 11295 +81610 FAM83D family with sequence similarity 83 member D Novel U 0.0015155633510528959 -0.282570794181869 1.0 11296 +11309 SLCO2B1 solute carrier organic anion transporter family member 2B1 Novel N 0.0015149134669949515 -0.282576397283627 1.0 11297 +254048 UBN2 ubinuclein 2 Novel U 0.0015148953514979786 -0.28257655346990623 1.0 11298 +1874 E2F4 E2F transcription factor 4 Novel N 0.0015148445172094589 -0.2825769917476081 1.0 11299 +124637 CYB5D1 cytochrome b5 domain containing 1 Novel U 0.0015142095955109262 -0.2825824658484754 1.0 11300 +1776 DNASE1L3 deoxyribonuclease 1L3 Novel U 0.0015139578490236784 -0.28258463632976055 1.0 11301 +25794 FSCN2 fascin actin-bundling protein 2, retinal Novel N 0.001513092550406092 -0.28259209667002616 1.0 11302 +63827 BCAN brevican Novel U 0.0015130856862966182 -0.28259215585028047 1.0 11303 +2916 GRM6 glutamate metabotropic receptor 6 Novel U 0.0015128682795082023 -0.28259403026517577 1.0 11304 +79077 DCTPP1 dCTP pyrophosphatase 1 Novel N 0.001512395874701394 -0.28259810319506407 1.0 11305 +285588 EFCAB9 EF-hand calcium binding domain 9 Novel U 0.0015123302479570337 -0.2825986690087999 1.0 11306 +125988 MICOS13 mitochondrial contact site and cristae organizing system subunit 13 Novel N 0.001511021644340982 -0.2826099513892985 1.0 11307 +84303 CHCHD6 coiled-coil-helix-coiled-coil-helix domain containing 6 Novel N 0.0015109153162594332 -0.2826108681175263 1.0 11308 +346 APOC4 apolipoprotein C4 Novel N 0.0015105212556738889 -0.28261426558747904 1.0 11309 +1584 CYP11B1 cytochrome P450 family 11 subfamily B member 1 Novel U 0.0015103008066899677 -0.28261616623125424 1.0 11310 +23302 WSCD1 WSC domain containing 1 Novel U 0.0015097090734724854 -0.2826212679742354 1.0 11311 +728661 SLC35E2B solute carrier family 35 member E2B Novel U 0.0015089084544974225 -0.28262817066638773 1.0 11312 +51626 DYNC2LI1 dynein cytoplasmic 2 light intermediate chain 1 Novel U 0.0015085496644402646 -0.28263126404462263 1.0 11313 +56949 XAB2 XPA binding protein 2 Novel N 0.0015078514303221797 -0.28263728400582455 1.0 11314 +79796 ALG9 ALG9 alpha-1,2-mannosyltransferase Novel U 0.0015075365983714503 -0.28263999839069837 1.0 11315 +199731 CADM4 cell adhesion molecule 4 Novel U 0.0015074766094598118 -0.28264051559676334 1.0 11316 +51193 ZNF639 zinc finger protein 639 Novel U 0.0015065575448180595 -0.2826484394912596 1.0 11317 +151987 PPP4R2 protein phosphatase 4 regulatory subunit 2 Novel N 0.0015064977976618312 -0.2826489546129833 1.0 11318 +79949 PLEKHS1 pleckstrin homology domain containing S1 Novel U 0.0015050501057973587 -0.28266143616985756 1.0 11319 +23172 ABRAXAS2 abraxas 2, BRISC complex subunit Novel U 0.0015048196137912764 -0.28266342340150097 1.0 11320 +84961 FBXL20 F-box and leucine rich repeat protein 20 Novel U 0.0015047653009529452 -0.2826638916701963 1.0 11321 +219623 TMEM26 transmembrane protein 26 Novel U 0.00150434507902267 -0.2826675146952691 1.0 11322 +2116 ETV2 ETS variant transcription factor 2 Novel U 0.0015042201398990668 -0.28266859188221427 1.0 11323 +63027 SLC22A23 solute carrier family 22 member 23 Novel U 0.0015040889359873792 -0.28266972308224797 1.0 11324 +9399 STOML1 stomatin like 1 Novel U 0.001503734648067034 -0.28267277764443494 1.0 11325 +126961 H3C14 H3 clustered histone 14 Novel N 0.0015035291160410528 -0.2826745496787571 1.0 11326 +84894 LINGO1 leucine rich repeat and Ig domain containing 1 Novel U 0.0015031424452809695 -0.28267788343589295 1.0 11327 +6482 ST3GAL1 ST3 beta-galactoside alpha-2,3-sialyltransferase 1 Novel U 0.0015026797861359441 -0.2826818723416634 1.0 11328 +643699 GOLGA8N golgin A8 family member N Novel U 0.0015019236330552287 -0.28268839166246246 1.0 11329 +653567 TMEM236 transmembrane protein 236 Novel U 0.0015016627961564166 -0.28269064051849824 1.0 11330 +128653 C20orf141 chromosome 20 open reading frame 141 Novel U 0.0015013578479377591 -0.28269326968885444 1.0 11331 +79799 UGT2A3 UDP glucuronosyltransferase family 2 member A3 Novel N 0.0015006419959109258 -0.28269944154628196 1.0 11332 +25941 TPGS2 tubulin polyglutamylase complex subunit 2 Novel U 0.0015005917006398976 -0.2826998751767397 1.0 11333 +152206 CCDC13 coiled-coil domain containing 13 Novel N 0.0015005807980624346 -0.282699969175431 1.0 11334 +343521 DYNLT4 dynein light chain Tctex-type 4 Novel U 0.0014998413019572257 -0.2827063448848772 1.0 11335 +79587 CARS2 cysteinyl-tRNA synthetase 2, mitochondrial Novel N 0.00149979553852365 -0.2827067394432173 1.0 11336 +127814297 LOC127814297 RBM27-POU4F3 Novel U 0.0014996425466721117 -0.2827080584922104 1.0 11337 +85450 ITPRIP inositol 1,4,5-trisphosphate receptor interacting protein Novel U 0.0014995470691843609 -0.2827088816699341 1.0 11338 +129804 FBLN7 fibulin 7 Novel U 0.001499308197504575 -0.2827109411485636 1.0 11339 +84933 C8orf76 chromosome 8 open reading frame 76 Novel U 0.001499177926006211 -0.2827120643096145 1.0 11340 +65992 DDRGK1 DDRGK domain containing 1 Novel U 0.0014988858129402981 -0.2827145828192058 1.0 11341 +23552 CDK20 cyclin dependent kinase 20 Novel U 0.001498776809021566 -0.28271552261768407 1.0 11342 +220032 GDPD4 glycerophosphodiester phosphodiesterase domain containing 4 Novel U 0.0014978587621134905 -0.28272343773759157 1.0 11343 +8433 UTF1 undifferentiated embryonic cell transcription factor 1 Novel N 0.0014974440419837944 -0.28272701332782096 1.0 11344 +9242 MSC musculin Novel N 0.0014971422366414084 -0.28272961540125824 1.0 11345 +10042 HMGXB4 HMG-box containing 4 Novel U 0.0014967504991152442 -0.28273299284250286 1.0 11346 +79019 CENPM centromere protein M Novel U 0.0014956950847615925 -0.2827420923025499 1.0 11347 +85463 ZC3H12C zinc finger CCCH-type containing 12C Novel U 0.0014953601004626046 -0.2827449804348123 1.0 11348 +55299 BRIX1 biogenesis of ribosomes BRX1 Novel U 0.0014949526398522622 -0.28274849343568415 1.0 11349 +54576 UGT1A8 UDP glucuronosyltransferase family 1 member A8 Novel N 0.0014946050061310611 -0.28275149062739946 1.0 11350 +654364 NME1-NME2 NME1-NME2 readthrough Novel U 0.0014942171874167327 -0.282754834281846 1.0 11351 +79701 OGFOD3 2-oxoglutarate and iron dependent oxygenase domain containing 3 Novel U 0.0014934052574469775 -0.2827618344939382 1.0 11352 +126755 LRRC38 leucine rich repeat containing 38 Novel N 0.0014933276666028836 -0.282762503458486 1.0 11353 +29989 OBP2B odorant binding protein 2B Novel N 0.0014927720590655997 -0.28276729373689163 1.0 11354 +126321 MFSD12 major facilitator superfamily domain containing 12 Novel N 0.0014927433845584451 -0.2827675409597301 1.0 11355 +84167 C19orf44 chromosome 19 open reading frame 44 Novel U 0.0014918360496125468 -0.28277536372437306 1.0 11356 +2819 GPD1 glycerol-3-phosphate dehydrogenase 1 Novel U 0.0014912626899618528 -0.2827803070560759 1.0 11357 +6327 SCN2B sodium voltage-gated channel beta subunit 2 Novel U 0.0014911280598363641 -0.282781467795878 1.0 11358 +57593 EBF4 EBF family member 4 Novel N 0.0014911044105704468 -0.2827816716926221 1.0 11359 +6165 RPL35A ribosomal protein L35a Novel U 0.0014908725382028695 -0.2827836708253205 1.0 11360 +125206 SLC5A10 solute carrier family 5 member 10 Novel N 0.0014907907545369634 -0.2827843759390967 1.0 11361 +4713 NDUFB7 NADH:ubiquinone oxidoreductase subunit B7 Novel N 0.0014907221276639938 -0.2827849676190247 1.0 11362 +728276 CLEC19A C-type lectin domain containing 19A Novel U 0.001489687531002163 -0.28279388759529417 1.0 11363 +28227 PPP2R3B protein phosphatase 2 regulatory subunit B''beta Novel N 0.0014891880963419754 -0.2827981935683186 1.0 11364 +9878 TOX4 TOX high mobility group box family member 4 Novel U 0.0014891678224302838 -0.28279836836379 1.0 11365 +6428 SRSF3 serine and arginine rich splicing factor 3 Novel N 0.0014885494072597553 -0.28280370015041695 1.0 11366 +88745 RRP36 ribosomal RNA processing 36 Novel N 0.00148805811795856 -0.2828079358966452 1.0 11367 +79847 MFSD13A major facilitator superfamily domain containing 13A Novel U 0.0014879912389561987 -0.28280851250696687 1.0 11368 +51647 CIAO2B cytosolic iron-sulfur assembly component 2B Novel U 0.0014877978653699505 -0.28281017971493705 1.0 11369 +219995 MS4A15 membrane spanning 4-domains A15 Novel U 0.0014876979247132815 -0.28281104137273927 1.0 11370 +5129 CDK18 cyclin dependent kinase 18 Novel U 0.0014876549888172708 -0.28281141155291445 1.0 11371 +91289 LMF2 lipase maturation factor 2 Novel U 0.0014872305155314049 -0.282815071231876 1.0 11372 +5905 RANGAP1 Ran GTPase activating protein 1 Novel U 0.001486518648244635 -0.2828212087340923 1.0 11373 +220002 CYB561A3 cytochrome b561 family member A3 Novel U 0.0014864299301823084 -0.2828219736341155 1.0 11374 +58490 RPRD1B regulation of nuclear pre-mRNA domain containing 1B Novel N 0.001483733203284119 -0.28284522398937434 1.0 11375 +30834 POLR1H RNA polymerase I subunit H Novel N 0.0014828807182968664 -0.28285257385443474 1.0 11376 +717 C2 complement C2 Novel U 0.0014825469875227111 -0.2828554511791891 1.0 11377 +54556 ING3 inhibitor of growth family member 3 Novel N 0.0014823985881109556 -0.28285673063356975 1.0 11378 +57645 POGK pogo transposable element derived with KRAB domain Novel U 0.001481740112531571 -0.28286240780880034 1.0 11379 +84188 FAR1 fatty acyl-CoA reductase 1 Novel U 0.0014814777365863222 -0.28286466993402426 1.0 11380 +79733 E2F8 E2F transcription factor 8 Novel U 0.0014812587091453846 -0.2828665583216903 1.0 11381 +51422 PRKAG2 protein kinase AMP-activated non-catalytic subunit gamma 2 Novel U 0.0014801517183767668 -0.2828761024578266 1.0 11382 +8192 CLPP caseinolytic mitochondrial matrix peptidase proteolytic subunit Novel N 0.001479842461143065 -0.2828787687791937 1.0 11383 +4284 MIP major intrinsic protein of lens fiber Novel U 0.0014787642410932589 -0.282888064862984 1.0 11384 +3750 KCND1 potassium voltage-gated channel subfamily D member 1 Novel U 0.0014784338820368025 -0.28289091311781867 1.0 11385 +2068 ERCC2 ERCC excision repair 2, TFIIH core complex helicase subunit Novel U 0.0014778320425368448 -0.28289610199407905 1.0 11386 +101059938 NPIPA7 nuclear pore complex interacting protein family member A7 Novel U 0.001477504729488973 -0.28289892398715855 1.0 11387 +171586 ABHD3 abhydrolase domain containing 3, phospholipase Novel U 0.0014774378649803424 -0.2828995004725197 1.0 11388 +1633 DCK deoxycytidine kinase Novel N 0.0014760622314307055 -0.28291136076462287 1.0 11389 +199746 U2AF1L4 U2 small nuclear RNA auxiliary factor 1 like 4 Novel U 0.0014760384260521944 -0.28291156600732204 1.0 11390 +1350 COX7C cytochrome c oxidase subunit 7C Novel N 0.0014752221131114063 -0.28291860400805113 1.0 11391 +10648 SCGB1D1 secretoglobin family 1D member 1 Novel U 0.0014747058270519627 -0.2829230552686906 1.0 11392 +164832 LONRF2 LON peptidase N-terminal domain and ring finger 2 Novel U 0.0014745932892641631 -0.28292402553510804 1.0 11393 +28985 MCTS1 MCTS1 re-initiation and release factor Novel U 0.001474365396321317 -0.2829259903584225 1.0 11394 +3206 HOXA10 homeobox A10 Novel N 0.0014736776392049779 -0.28293191999011685 1.0 11395 +27145 FILIP1 filamin A interacting protein 1 Novel U 0.001472832208319931 -0.2829392090368636 1.0 11396 +5725 PTBP1 polypyrimidine tract binding protein 1 Novel U 0.0014720010657327505 -0.28294637489427227 1.0 11397 +5570 PKIB cAMP-dependent protein kinase inhibitor beta Novel U 0.0014715801178956855 -0.28295000417789157 1.0 11398 +9550 ATP6V1G1 ATPase H+ transporting V1 subunit G1 Novel N 0.001470292051266177 -0.2829611094947678 1.0 11399 +220001 VWCE von Willebrand factor C and EGF domains Novel U 0.0014700798836953758 -0.2829629387387298 1.0 11400 +283869 NPW neuropeptide W Novel N 0.001469931205364469 -0.2829642205978662 1.0 11401 +6585 SLIT1 slit guidance ligand 1 Novel U 0.0014693368988237905 -0.2829693445272536 1.0 11402 +7639 ZNF85 zinc finger protein 85 Novel U 0.001469237936555062 -0.282970197749694 1.0 11403 +27340 UTP20 UTP20 small subunit processome component Novel N 0.001468988326478653 -0.2829723498114977 1.0 11404 +140688 NOL4L nucleolar protein 4 like Novel U 0.0014689366948188703 -0.2829727949638909 1.0 11405 +54102 CLIC6 chloride intracellular channel 6 Novel U 0.0014679973157912096 -0.2829808940028149 1.0 11406 +129831 RBM45 RNA binding motif protein 45 Novel U 0.001466961028370237 -0.282989828556293 1.0 11407 +441150 C6orf226 chromosome 6 open reading frame 226 Novel U 0.001466854403128082 -0.2829907478465487 1.0 11408 +79039 DDX54 DEAD-box helicase 54 Novel U 0.0014667389691508594 -0.2829917430830264 1.0 11409 +26279 PLA2G2D phospholipase A2 group IID Novel U 0.0014665621487658562 -0.2829932675743536 1.0 11410 +84256 FLYWCH1 FLYWCH-type zinc finger 1 Novel N 0.0014662365592942057 -0.2829960747072856 1.0 11411 +5002 SLC22A18 solute carrier family 22 member 18 Novel U 0.001466117285580248 -0.28299710304880005 1.0 11412 +8985 PLOD3 procollagen-lysine,2-oxoglutarate 5-dioxygenase 3 Novel U 0.0014657628223650556 -0.2830001591223257 1.0 11413 +729 C6 complement C6 Novel N 0.0014657155233804855 -0.2830005669197172 1.0 11414 +25806 VAX2 ventral anterior homeobox 2 Novel N 0.0014649176497185605 -0.28300744594261856 1.0 11415 +84660 CCDC62 coiled-coil domain containing 62 Novel U 0.0014644064520265853 -0.28301185333290857 1.0 11416 +8562 DENR density regulated re-initiation and release factor Novel U 0.001464235540828358 -0.2830133268770332 1.0 11417 +91442 FAAP24 FA core complex associated protein 24 Novel N 0.0014638169992610825 -0.2830169354145296 1.0 11418 +4692 NDN necdin, MAGE family member Novel U 0.001463805543482038 -0.2830170341827559 1.0 11419 +56938 BMAL2 basic helix-loop-helix ARNT like 2 Novel N 0.001463779269070223 -0.2830172607127057 1.0 11420 +266977 ADGRF1 adhesion G protein-coupled receptor F1 Novel N 0.001463742814561621 -0.2830175750123392 1.0 11421 +91373 UAP1L1 UDP-N-acetylglucosamine pyrophosphorylase 1 like 1 Novel U 0.0014632659292696977 -0.2830216865716011 1.0 11422 +84448 ABLIM2 actin binding LIM protein family member 2 Novel U 0.0014628254416415966 -0.28302548432132774 1.0 11423 +54927 CHCHD3 coiled-coil-helix-coiled-coil-helix domain containing 3 Novel U 0.0014627402647597566 -0.28302621869037486 1.0 11424 +5049 PAFAH1B2 platelet activating factor acetylhydrolase 1b catalytic subunit 2 Novel U 0.001462722265994502 -0.2830263738702289 1.0 11425 +1774 DNASE1L1 deoxyribonuclease 1 like 1 Novel N 0.0014615019609693113 -0.28303689496725914 1.0 11426 +126695 KDF1 keratinocyte differentiation factor 1 Novel U 0.0014612386707842009 -0.2830391649747797 1.0 11427 +56650 CLDND1 claudin domain containing 1 Novel U 0.0014611132152318094 -0.2830402466142161 1.0 11428 +2029 ENSA endosulfine alpha Novel U 0.0014610139313261075 -0.2830411026097122 1.0 11429 +346288 SEPTIN14 septin 14 Novel N 0.0014597838637925907 -0.283051707876106 1.0 11430 +84437 MSANTD4 Myb/SANT DNA binding domain containing 4 with coiled-coils Novel U 0.0014596335894731017 -0.28305300349536827 1.0 11431 +57633 LRRN1 leucine rich repeat neuronal 1 Novel U 0.001459486329311176 -0.2830542731274851 1.0 11432 +51455 REV1 REV1 DNA directed polymerase Novel N 0.0014581721523300043 -0.2830656035598347 1.0 11433 +285051 STPG4 sperm-tail PG-rich repeat containing 4 Novel U 0.0014581577841208582 -0.28306572743814334 1.0 11434 +390792 KRT39 keratin 39 Novel U 0.0014573742288900074 -0.2830724830119074 1.0 11435 +7743 ZNF189 zinc finger protein 189 Novel U 0.001457323643031369 -0.2830729191477227 1.0 11436 +27097 TAF5L TATA-box binding protein associated factor 5 like Novel N 0.0014572654642581362 -0.2830734207473274 1.0 11437 +3045 HBD hemoglobin subunit delta Novel N 0.0014571960707700513 -0.28307401903677665 1.0 11438 +10158 PDZK1IP1 PDZK1 interacting protein 1 Novel U 0.0014567840793615716 -0.28307757110080556 1.0 11439 +63891 RNF123 ring finger protein 123 Novel U 0.0014567756355911658 -0.28307764390041373 1.0 11440 +9031 BAZ1B bromodomain adjacent to zinc finger domain 1B Novel U 0.0014564895601000196 -0.2830801103558803 1.0 11441 +343069 HNRNPCL1 heterogeneous nuclear ribonucleoprotein C like 1 Novel U 0.0014563162285064375 -0.2830816047679141 1.0 11442 +51529 ANAPC11 anaphase promoting complex subunit 11 Novel U 0.0014562223747871706 -0.28308241394600203 1.0 11443 +57158 JPH2 junctophilin 2 Novel N 0.0014558625610504787 -0.2830855161500891 1.0 11444 +10720 UGT2B11 UDP glucuronosyltransferase family 2 member B11 Novel N 0.0014548263120856247 -0.2830944503720103 1.0 11445 +56833 SLAMF8 SLAM family member 8 Novel U 0.0014546519659496115 -0.2830959535311189 1.0 11446 +116969 ART5 ADP-ribosyltransferase 5 Novel U 0.001453598691133443 -0.28310503454472746 1.0 11447 +22852 ANKRD26 ankyrin repeat domain containing 26 Novel N 0.0014532825624666555 -0.2831077601094909 1.0 11448 +57198 ATP8B2 ATPase phospholipid transporting 8B2 Novel N 0.001452787492127095 -0.2831120284546766 1.0 11449 +100507050 TPBGL trophoblast glycoprotein like Novel U 0.001451663077536316 -0.28312172281368314 1.0 11450 +2650 GCNT1 glucosaminyl (N-acetyl) transferase 1 Novel U 0.001451487770358744 -0.28312323425859837 1.0 11451 +9420 CYP7B1 cytochrome P450 family 7 subfamily B member 1 Novel N 0.0014510790201470542 -0.283126758378019 1.0 11452 +2026 ENO2 enolase 2 Novel N 0.001450924114401261 -0.28312809392802357 1.0 11453 +56262 LRRC8A leucine rich repeat containing 8 VRAC subunit A Novel U 0.0014508417373982401 -0.2831288041573711 1.0 11454 +126661 CCDC163 CCDC163 homolog Novel U 0.0014508406958233149 -0.2831288131375118 1.0 11455 +8535 CBX4 chromobox 4 Novel N 0.0014503752773140247 -0.2831328258336778 1.0 11456 +10198 MPHOSPH9 M-phase phosphoprotein 9 Novel U 0.001449047072459211 -0.2831442772100673 1.0 11457 +65980 BRD9 bromodomain containing 9 Novel U 0.0014489088656391004 -0.2831454687870375 1.0 11458 +129787 TMEM18 transmembrane protein 18 Novel N 0.0014488326240532565 -0.28314612611869294 1.0 11459 +94241 TP53INP1 tumor protein p53 inducible nuclear protein 1 Novel N 0.0014487943784686833 -0.2831464558604362 1.0 11460 +147660 ZNF578 zinc finger protein 578 Novel U 0.0014487762409126856 -0.2831466122369016 1.0 11461 +100500938 CCDC179 coiled-coil domain containing 179 Novel U 0.0014485265281788614 -0.2831487651837862 1.0 11462 +387723 C10orf143 chromosome 10 open reading frame 143 Novel U 0.0014484453142065536 -0.2831494653858383 1.0 11463 +55972 SLC25A40 solute carrier family 25 member 40 Novel U 0.0014481061366172388 -0.2831523896713686 1.0 11464 +7111 TMOD1 tropomodulin 1 Novel U 0.0014471924608218311 -0.28316026710487835 1.0 11465 +79695 GALNT12 polypeptide N-acetylgalactosaminyltransferase 12 Novel N 0.0014470732894829757 -0.283161294563746 1.0 11466 +10138 YAF2 YY1 associated factor 2 Novel N 0.0014467870352780701 -0.283163762560028 1.0 11467 +100505989 SMIM31 small integral membrane protein 31 Novel U 0.0014452366700197956 -0.28317712933552913 1.0 11468 +5300 PIN1 peptidylprolyl cis/trans isomerase, NIMA-interacting 1 Novel U 0.0014447795179905445 -0.2831810707606302 1.0 11469 +440400 RNASEK ribonuclease K Novel U 0.0014442015876718782 -0.28318605349923565 1.0 11470 +151525 WDSUB1 WD repeat, sterile alpha motif and U-box domain containing 1 Novel U 0.001443243197384986 -0.28319431644742726 1.0 11471 +9177 HTR3B 5-hydroxytryptamine receptor 3B Novel N 0.001442867452149517 -0.28319755600802843 1.0 11472 +11011 TLK2 tousled like kinase 2 Novel U 0.0014427549218388408 -0.28319852620998043 1.0 11473 +6881 TAF10 TATA-box binding protein associated factor 10 Novel N 0.0014413684094843726 -0.2832104802958145 1.0 11474 +9442 MED27 mediator complex subunit 27 Novel U 0.0014410652092142536 -0.2832130943958925 1.0 11475 +55722 CEP72 centrosomal protein 72 Novel U 0.0014406034478751664 -0.2832170755610545 1.0 11476 +79731 NARS2 asparaginyl-tRNA synthetase 2, mitochondrial Novel N 0.0014399228614799288 -0.28322294336898285 1.0 11477 +60493 FASTKD5 FAST kinase domains 5 Novel N 0.0014395837016132548 -0.28322586750171386 1.0 11478 +10599 SLCO1B1 solute carrier organic anion transporter family member 1B1 Novel U 0.0014395810803995027 -0.28322589010101784 1.0 11479 +221322 TBC1D32 TBC1 domain family member 32 Novel U 0.0014394049537487658 -0.2832274086111803 1.0 11480 +121549 ASCL4 achaete-scute family bHLH transcription factor 4 Novel U 0.001439208101808594 -0.28322910580845506 1.0 11481 +157657 CFAP418 cilia and flagella associated protein 418 Novel N 0.0014389933086566412 -0.28323095768937534 1.0 11482 +1139 CHRNA7 cholinergic receptor nicotinic alpha 7 subunit Novel U 0.0014389921169687772 -0.283230967963744 1.0 11483 +2232 FDXR ferredoxin reductase Novel N 0.0014386010352540662 -0.28323433975078266 1.0 11484 +22850 ADNP2 ADNP homeobox 2 Novel U 0.0014385727371103157 -0.28323458372873084 1.0 11485 +65009 NDRG4 NDRG family member 4 Novel U 0.0014380331943929197 -0.2832392355011685 1.0 11486 +151188 ARL6IP6 ADP ribosylation factor like GTPase 6 interacting protein 6 Novel U 0.0014379042092412693 -0.2832403475717311 1.0 11487 +114987 WDR31 WD repeat domain 31 Novel U 0.0014378594236877853 -0.2832407336990878 1.0 11488 +23613 ZMYND8 zinc finger MYND-type containing 8 Novel N 0.0014374767073219003 -0.2832440333626452 1.0 11489 +7411 VBP1 VHL binding protein 1 Novel U 0.001437153665471172 -0.28324681853076805 1.0 11490 +10924 SMPDL3A sphingomyelin phosphodiesterase acid like 3A Novel N 0.001436857977449675 -0.28324936786253396 1.0 11491 +4066 LYL1 LYL1 basic helix-loop-helix family member Novel N 0.0014357399208680573 -0.2832590074047285 1.0 11492 +5106 PCK2 phosphoenolpyruvate carboxykinase 2, mitochondrial Novel U 0.001435547625943275 -0.2832606653128091 1.0 11493 +80853 KDM7A lysine demethylase 7A Novel U 0.0014348385201502524 -0.2832667790062702 1.0 11494 +2683 B4GALT1 beta-1,4-galactosyltransferase 1 Novel U 0.0014343456125339913 -0.2832710287051164 1.0 11495 +2166 FAAH fatty acid amide hydrolase Novel N 0.001433934326911797 -0.28327457468407163 1.0 11496 +163223 ZNF676 zinc finger protein 676 Novel U 0.0014338333833848228 -0.2832754449883152 1.0 11497 +4704 NDUFA9 NADH:ubiquinone oxidoreductase subunit A9 Novel N 0.001433589827663673 -0.2832775448513179 1.0 11498 +344838 PAQR9 progestin and adipoQ receptor family member 9 Novel U 0.0014330069930436242 -0.2832825698733112 1.0 11499 +22984 PDCD11 programmed cell death 11 Novel U 0.0014328281506037416 -0.28328411179817775 1.0 11500 +284805 C20orf203 chromosome 20 open reading frame 203 Novel U 0.0014311109055267033 -0.28329891736048163 1.0 11501 +120939 TMEM52B transmembrane protein 52B Novel U 0.0014304801566235607 -0.2833043554847822 1.0 11502 +111064647 CSNKA2IP casein kinase 2 subunit alpha' interacting protein Novel U 0.0014303491633175926 -0.2833054848690377 1.0 11503 +53405 CLIC5 chloride intracellular channel 5 Novel N 0.0014303151808744063 -0.2833057778552786 1.0 11504 +81570 CLPB ClpB family mitochondrial disaggregase Novel U 0.0014299932882450644 -0.2833085531151659 1.0 11505 +83992 CTTNBP2 cortactin binding protein 2 Novel U 0.0014297430650627785 -0.2833107104629811 1.0 11506 +284415 VSTM1 V-set and transmembrane domain containing 1 Novel U 0.0014292532736597436 -0.28331493329478913 1.0 11507 +8634 RTCA RNA 3'-terminal phosphate cyclase Novel U 0.0014290368670259557 -0.28331679908665686 1.0 11508 +55856 ACOT13 acyl-CoA thioesterase 13 Novel U 0.001428952816789668 -0.2833175237421103 1.0 11509 +284739 C20orf204 chromosome 20 open reading frame 204 Novel U 0.0014286148455914772 -0.2833204376265049 1.0 11510 +54994 GID8 GID complex subunit 8 homolog Novel U 0.0014286022703846922 -0.2833205460460951 1.0 11511 +65249 ZSWIM4 zinc finger SWIM-type containing 4 Novel U 0.001428246413458609 -0.2833236141357702 1.0 11512 +111188157 LYNX1-SLURP2 LYNX1-SLURP2 readthrough Novel U 0.0014275949156810448 -0.2833292311505257 1.0 11513 +26094 DCAF4 DDB1 and CUL4 associated factor 4 Novel U 0.0014267339048708865 -0.28333665452262585 1.0 11514 +197335 WDR90 WD repeat domain 90 Novel N 0.001426234988845359 -0.2833409560241408 1.0 11515 +55640 FLVCR2 FLVCR choline and putative heme transporter 2 Novel N 0.001425506560402832 -0.2833472363115813 1.0 11516 +28972 SPCS1 signal peptidase complex subunit 1 Novel U 0.0014253051013168605 -0.28334897323025937 1.0 11517 +100129480 MKRN2OS MKRN2 opposite strand Novel U 0.0014251305271704754 -0.28335047835520366 1.0 11518 +54914 FOCAD focadhesin Novel U 0.0014249855748106341 -0.28335172809015613 1.0 11519 +10129 FRY FRY microtubule binding protein Novel U 0.0014246653001433764 -0.2833544894004687 1.0 11520 +1871 E2F3 E2F transcription factor 3 Novel U 0.0014238676320229126 -0.2833613666512544 1.0 11521 +7584 ZNF35 zinc finger protein 35 Novel N 0.0014234340686794134 -0.28336510470191517 1.0 11522 +54960 GEMIN8 gem nuclear organelle associated protein 8 Novel N 0.0014231581078639685 -0.28336748395173866 1.0 11523 +160492 LMNTD1 lamin tail domain containing 1 Novel U 0.0014230121817133694 -0.28336874208241747 1.0 11524 +51151 SLC45A2 solute carrier family 45 member 2 Novel U 0.0014228787402107616 -0.2833698925742763 1.0 11525 +51451 LCMT1 leucine carboxyl methyltransferase 1 Novel U 0.0014227707792437805 -0.28337082338074326 1.0 11526 +57171 DOLPP1 dolichyldiphosphatase 1 Novel U 0.0014217007097874193 -0.2833800491926075 1.0 11527 +8204 NRIP1 nuclear receptor interacting protein 1 Novel U 0.001421332079309181 -0.28338322741194594 1.0 11528 +83546 RTBDN retbindin Novel U 0.00142132609735904 -0.2833832789864921 1.0 11529 +7862 BRPF1 bromodomain and PHD finger containing 1 Novel U 0.0014212240188742134 -0.28338415907599546 1.0 11530 +642799 NPIPA2 nuclear pore complex interacting protein family member A2 Novel U 0.0014211046680647934 -0.2833851880822035 1.0 11531 +283578 TMED8 transmembrane p24 trafficking protein family member 8 Novel U 0.0014210578776976245 -0.2833855914944511 1.0 11532 +27154 BRPF3 bromodomain and PHD finger containing 3 Novel N 0.001420895199831615 -0.28338699405330126 1.0 11533 +5522 PPP2R2C protein phosphatase 2 regulatory subunit Bgamma Novel U 0.0014207218115100428 -0.2833884889544264 1.0 11534 +26354 GNL3 G protein nucleolar 3 Novel U 0.0014197980593183938 -0.28339645326354546 1.0 11535 +28998 MRPL13 mitochondrial ribosomal protein L13 Novel U 0.001418962919320035 -0.28340365358541186 1.0 11536 +2742 GLRA2 glycine receptor alpha 2 Novel N 0.0014185753173298983 -0.28340699537132863 1.0 11537 +10771 ZMYND11 zinc finger MYND-type containing 11 Novel U 0.0014183094609861817 -0.2834092875034846 1.0 11538 +22987 SV2C synaptic vesicle glycoprotein 2C Novel U 0.001418202546890821 -0.28341020928414434 1.0 11539 +55171 TBCCD1 TBCC domain containing 1 Novel U 0.0014174807969187244 -0.2834164319918536 1.0 11540 +55219 MACO1 macoilin 1 Novel N 0.001416956274855701 -0.2834209542607992 1.0 11541 +6188 RPS3 ribosomal protein S3 Novel U 0.0014165180434554054 -0.2834247325580192 1.0 11542 +54584 GNB1L G protein subunit beta 1 like Novel N 0.001415702661427105 -0.2834317625327053 1.0 11543 +2996 GYPE glycophorin E (MNS blood group) Novel U 0.0014156922335347344 -0.28343185243880675 1.0 11544 +23626 SPO11 SPO11 initiator of meiotic double strand breaks Novel N 0.0014147113116668444 -0.2834403096474047 1.0 11545 +768211 RELL1 RELT like 1 Novel U 0.0014143173215610523 -0.2834437065097026 1.0 11546 +2959 GTF2B general transcription factor IIB Novel U 0.001413975117182708 -0.2834466568912829 1.0 11547 +3827 KNG1 kininogen 1 Novel U 0.001413766758618499 -0.28344845329515395 1.0 11548 +256380 SCML4 Scm polycomb group protein like 4 Novel U 0.0014136530211290121 -0.2834494339050328 1.0 11549 +7761 ZNF214 zinc finger protein 214 Novel U 0.001412462891699492 -0.28345969483729805 1.0 11550 +100287238 USP17L13 ubiquitin specific peptidase 17 like family member 13 Novel U 0.0014122166849568094 -0.2834618175565984 1.0 11551 +5888 RAD51 RAD51 recombinase Novel U 0.0014116626702567927 -0.28346659410204783 1.0 11552 +6908 TBP TATA-box binding protein Novel U 0.0014108131658443915 -0.2834739182695027 1.0 11553 +9039 UBA3 ubiquitin like modifier activating enzyme 3 Novel N 0.0014100610924332685 -0.28348040241663713 1.0 11554 +94015 TTYH2 tweety family member 2 Novel U 0.0014098361501195462 -0.2834823418005289 1.0 11555 +6442 SGCA sarcoglycan alpha Novel N 0.0014097514763022124 -0.28348307183230753 1.0 11556 +149466 C1orf210 chromosome 1 open reading frame 210 Novel U 0.0014096459986233777 -0.28348398122862295 1.0 11557 +5681 PSKH1 protein serine kinase H1 Novel U 0.001409578422980453 -0.2834845638451667 1.0 11558 +54514 DDX4 DEAD-box helicase 4 Novel N 0.0014094560303062624 -0.2834856190774032 1.0 11559 +92129 RIPPLY1 ripply transcriptional repressor 1 Novel U 0.001409053218715343 -0.28348909199585015 1.0 11560 +5641 LGMN legumain Novel U 0.0014089905006277872 -0.28348963273203587 1.0 11561 +139599 MAGEE2 MAGE family member E2 Novel U 0.0014088712161501144 -0.2834906611663518 1.0 11562 +1968 EIF2S3 eukaryotic translation initiation factor 2 subunit gamma Novel U 0.0014085117198780065 -0.2834937606333562 1.0 11563 +6418 SET SET nuclear proto-oncogene Novel U 0.001408019181373131 -0.28349800714983686 1.0 11564 +85462 FHDC1 FH2 domain containing 1 Novel U 0.0014080180710428914 -0.28349801672276487 1.0 11565 +653499 LGALS7B galectin 7B Novel N 0.0014079909169143734 -0.28349825083736324 1.0 11566 +26271 FBXO5 F-box protein 5 Novel U 0.001407733136736774 -0.28350047333928285 1.0 11567 +58157 NGB neuroglobin Novel N 0.0014076237456789383 -0.28350141647555616 1.0 11568 +133690 CAPSL calcyphosine like Novel U 0.0014069799312730995 -0.2835069672466285 1.0 11569 +2637 GBX2 gastrulation brain homeobox 2 Novel N 0.0014064989607743823 -0.283511114027295 1.0 11570 +51230 PHF20 PHD finger protein 20 Novel U 0.001406454940036132 -0.2835114935606485 1.0 11571 +51260 PBDC1 polysaccharide biosynthesis domain containing 1 Novel U 0.001405496762082155 -0.28351975467817064 1.0 11572 +100129250 SMIM27 small integral membrane protein 27 Novel U 0.0014051378599020368 -0.2835228490230954 1.0 11573 +167826 OLIG3 oligodendrocyte transcription factor 3 Novel U 0.0014050923854 -0.28352324109035604 1.0 11574 +55893 ZNF395 zinc finger protein 395 Novel N 0.0014049154649821687 -0.28352476644413577 1.0 11575 +1008 CDH10 cadherin 10 Novel U 0.0014047176928808545 -0.2835264715747587 1.0 11576 +64663 SPANXC SPANX family member C Novel U 0.001404478896285547 -0.28352853040603276 1.0 11577 +84262 PSMG3 proteasome assembly chaperone 3 Novel N 0.0014042734607106165 -0.2835303016087834 1.0 11578 +219681 ARMC3 armadillo repeat containing 3 Novel U 0.0014041357802268353 -0.2835314886478426 1.0 11579 +55301 OLAH oleoyl-ACP hydrolase Novel N 0.0014040368785201963 -0.28353234134813515 1.0 11580 +100144748 KLLN killin, p53 regulated DNA replication inhibitor Novel U 0.0014040225287323212 -0.2835324650676213 1.0 11581 +286151 FBXO43 F-box protein 43 Novel N 0.0014038825159406831 -0.28353367221512615 1.0 11582 +9350 CER1 cerberus 1, DAN family BMP antagonist Novel U 0.0014036632224157582 -0.283535562896887 1.0 11583 +79012 CAMKV CaM kinase like vesicle associated Novel U 0.0014014790866328692 -0.28355439384818565 1.0 11584 +57567 ZNF319 zinc finger protein 319 Novel U 0.001401441259245635 -0.2835547199843592 1.0 11585 +54954 FAM120C family with sequence similarity 120 member C Novel U 0.0014008537387518209 -0.2835597854065242 1.0 11586 +54913 RPP25 ribonuclease P and MRP subunit p25 Novel N 0.0014006607550665602 -0.2835614492528872 1.0 11587 +84300 UQCC2 ubiquinol-cytochrome c reductase complex assembly factor 2 Novel N 0.0014005024012137316 -0.28356281453141696 1.0 11588 +23460 ABCA6 ATP binding cassette subfamily A member 6 Novel U 0.0014004725969062094 -0.28356307149504895 1.0 11589 +283373 ANKRD52 ankyrin repeat domain 52 Novel U 0.0014000504986954449 -0.2835667106968387 1.0 11590 +375611 SLC26A5 solute carrier family 26 member 5 Novel N 0.0013996016161565636 -0.2835705808249208 1.0 11591 +90025 UBE3D ubiquitin protein ligase E3D Novel U 0.0013981379239788798 -0.28358320033160633 1.0 11592 +64386 MMP25 matrix metallopeptidase 25 Novel U 0.0013981046936931481 -0.2835834868329755 1.0 11593 +10765 KDM5B lysine demethylase 5B Novel N 0.0013980177595979881 -0.28358423635217894 1.0 11594 +90423 ATP6V1E2 ATPase H+ transporting V1 subunit E2 Novel U 0.0013979291203660754 -0.28358500057255037 1.0 11595 +147381 CBLN2 cerebellin 2 precursor Novel U 0.0013979255954589117 -0.2835850309632228 1.0 11596 +441531 PGAM4 phosphoglycerate mutase family member 4 Novel N 0.0013978692452245197 -0.2835855167977244 1.0 11597 +4586 MUC5AC mucin 5AC, oligomeric mucus/gel-forming Novel U 0.0013975673143052463 -0.2835881199538473 1.0 11598 +54920 DUS2 dihydrouridine synthase 2 Novel N 0.0013975242506976315 -0.28358849123511287 1.0 11599 +56674 TMEM9B TMEM9 domain family member B Novel U 0.0013971706167933745 -0.2835915401585731 1.0 11600 +23082 PPRC1 PPARG related coactivator 1 Novel U 0.0013962265494831495 -0.2835996796184367 1.0 11601 +11073 TOPBP1 DNA topoisomerase II binding protein 1 Novel U 0.0013961258436640572 -0.2836005478732355 1.0 11602 +168620 BHLHA15 basic helix-loop-helix family member a15 Novel U 0.0013960524413072772 -0.2836011807259256 1.0 11603 +8349 H2BC21 H2B clustered histone 21 Novel N 0.0013959804137554637 -0.2836018017254674 1.0 11604 +390243 IZUMO1R IZUMO1 receptor, JUNO Novel U 0.0013948264359669113 -0.2836117509693314 1.0 11605 +80020 FOXRED2 FAD dependent oxidoreductase domain containing 2 Novel U 0.001393801794348608 -0.2836205851162576 1.0 11606 +123745 PLA2G4E phospholipase A2 group IVE Novel U 0.001393082882789539 -0.28362678335203717 1.0 11607 +26523 AGO1 argonaute RISC component 1 Novel U 0.0013923338750314127 -0.28363324106804827 1.0 11608 +124590 USH1G USH1 protein network component sans Novel U 0.0013919944740605477 -0.28363616727950597 1.0 11609 +55119 PRPF38B pre-mRNA processing factor 38B Novel U 0.0013916501082384038 -0.28363913629639426 1.0 11610 +54852 PAQR5 progestin and adipoQ receptor family member 5 Novel U 0.0013915125272696337 -0.28364032247746546 1.0 11611 +392517 NCBP2L nuclear cap binding protein subunit 2 like Novel U 0.001391052289424241 -0.2836442905075304 1.0 11612 +84792 FAM220A family with sequence similarity 220 member A Novel U 0.001390884969762822 -0.28364573308652213 1.0 11613 +9947 MAGEC1 MAGE family member C1 Novel U 0.001390728350747561 -0.28364708340781253 1.0 11614 +66000 TMEM108 transmembrane protein 108 Novel U 0.0013895800763577427 -0.2836569834787155 1.0 11615 +9045 RPL14 ribosomal protein L14 Novel N 0.001388948562476747 -0.2836624281984214 1.0 11616 +50859 SPOCK3 SPARC (osteonectin), cwcv and kazal like domains proteoglycan 3 Novel N 0.0013886517176320856 -0.28366498750396313 1.0 11617 +220296 HEPACAM hepatic and glial cell adhesion molecule Novel U 0.0013875749155868298 -0.2836742713621515 1.0 11618 +140947 DCANP1 dendritic cell associated nuclear protein 1 Novel U 0.0013874782099678215 -0.2836751051284476 1.0 11619 +5630 PRPH peripherin Novel U 0.0013869120845429672 -0.28367998608886585 1.0 11620 +81556 INTS14 integrator complex subunit 14 Novel U 0.0013865673913187877 -0.28368295792851445 1.0 11621 +51156 SERPINA10 serpin family A member 10 Novel N 0.0013862905139687325 -0.2836853450804193 1.0 11622 +57446 NDRG3 NDRG family member 3 Novel U 0.0013858059428622804 -0.28368952290442545 1.0 11623 +140731 ANKRD60 ankyrin repeat domain 60 Novel U 0.0013857403751232106 -0.2836900882094357 1.0 11624 +400224 PLEKHD1 pleckstrin homology and coiled-coil domain containing D1 Novel U 0.0013855616198953232 -0.2836916293823871 1.0 11625 +51382 ATP6V1D ATPase H+ transporting V1 subunit D Novel U 0.0013844034891929227 -0.28370161443140524 1.0 11626 +127262 TPRG1L tumor protein p63 regulated 1 like Novel U 0.0013838007024101935 -0.2837068114748483 1.0 11627 +1617 DAZ1 deleted in azoospermia 1 Novel N 0.0013834312919652684 -0.28370999641882105 1.0 11628 +55544 RBM38 RNA binding motif protein 38 Novel N 0.0013832255739075928 -0.2837117700570517 1.0 11629 +90780 PYGO2 pygopus family PHD finger 2 Novel U 0.0013827406108032985 -0.2837159512607434 1.0 11630 +30815 ST6GALNAC6 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 6 Novel N 0.00138263145378519 -0.28371689237919767 1.0 11631 +26118 WSB1 WD repeat and SOCS box containing 1 Novel U 0.001382611935013024 -0.2837170606640868 1.0 11632 +49860 CRNN cornulin Novel U 0.0013824180854409083 -0.2837187319758616 1.0 11633 +51808 PHAX phosphorylated adaptor for RNA export Novel N 0.00138235580237983 -0.283719268961382 1.0 11634 +399668 SMIM10L2A small integral membrane protein 10 like 2A Novel U 0.0013823265801685542 -0.283719520906358 1.0 11635 +7290 HIRA histone cell cycle regulator Novel U 0.0013820558509860352 -0.28372185505064107 1.0 11636 +53344 CHIC1 cysteine rich hydrophobic domain 1 Novel U 0.001380820785144255 -0.2837325034109214 1.0 11637 +10243 GPHN gephyrin Novel U 0.0013805749056241138 -0.28373462330900895 1.0 11638 +100113407 TMEM170B transmembrane protein 170B Novel N 0.0013805485473557875 -0.2837348505619439 1.0 11639 +84659 RNASE7 ribonuclease A family member 7 Novel N 0.001379655596121012 -0.2837425493146249 1.0 11640 +136157 SSU72L6 SSU72 like 6 Novel U 0.0013792566416824961 -0.2837459889778826 1.0 11641 +8405 SPOP speckle type BTB/POZ protein Novel U 0.0013791192656276816 -0.2837471733922482 1.0 11642 +158471 PRUNE2 prune homolog 2 with BCH domain Novel U 0.0013782782388514503 -0.28375442446811455 1.0 11643 +645142 PPIAL4D peptidylprolyl isomerase A like 4D Novel U 0.0013780640409046105 -0.2837562712173583 1.0 11644 +6175 RPLP0 ribosomal protein lateral stalk subunit P0 Novel N 0.0013774673872159506 -0.28376141538313837 1.0 11645 +115560 ZNF501 zinc finger protein 501 Novel U 0.0013771246188373214 -0.28376437062735677 1.0 11646 +445 ASS1 argininosuccinate synthase 1 Novel U 0.0013765078137327961 -0.28376968853248663 1.0 11647 +7547 ZIC3 Zic family member 3 Novel U 0.0013763200355741728 -0.2837713074983896 1.0 11648 +23498 HAAO 3-hydroxyanthranilate 3,4-dioxygenase Novel U 0.0013759991213127558 -0.2837740743230876 1.0 11649 +708 C1QBP complement C1q binding protein Novel U 0.001375489256689295 -0.28377847022006825 1.0 11650 +9973 CCS copper chaperone for superoxide dismutase Novel N 0.0013753489343037474 -0.28377968003679716 1.0 11651 +26145 IRF2BP1 interferon regulatory factor 2 binding protein 1 Novel U 0.001375268311420863 -0.2837803751426569 1.0 11652 +100288966 LOC100288966 POTE ankyrin domain family member D-like Novel U 0.0013744158944189724 -0.28378772442156824 1.0 11653 +122945 NOXRED1 NADP dependent oxidoreductase domain containing 1 Novel U 0.0013739097247284836 -0.2837920884619659 1.0 11654 +116448 OLIG1 oligodendrocyte transcription factor 1 Novel U 0.0013731557846166852 -0.28379858870322316 1.0 11655 +85302 FBF1 Fas binding factor 1 Novel U 0.0013730025411605713 -0.28379990992147414 1.0 11656 +7593 MZF1 myeloid zinc finger 1 Novel N 0.0013721058035811781 -0.2838076413188614 1.0 11657 +100288695 LIMS4 LIM zinc finger domain containing 4 Novel U 0.001371554328921098 -0.28381239596486274 1.0 11658 +51503 CWC15 CWC15 spliceosome associated protein homolog Novel N 0.0013714754766658327 -0.28381307580491216 1.0 11659 +54935 DUSP23 dual specificity phosphatase 23 Novel N 0.0013710961606514035 -0.2838163461516784 1.0 11660 +390437 OR4N5 olfactory receptor family 4 subfamily N member 5 Novel U 0.0013708748997440642 -0.2838182537956092 1.0 11661 +2589 GALNT1 polypeptide N-acetylgalactosaminyltransferase 1 Novel U 0.0013706444643438076 -0.2838202405392145 1.0 11662 +5645 PRSS2 serine protease 2 Novel U 0.0013699967268338495 -0.28382582513409177 1.0 11663 +271 AMPD2 adenosine monophosphate deaminase 2 Novel U 0.0013699057078559113 -0.2838266098719063 1.0 11664 +60558 GUF1 GTP binding elongation factor GUF1 Novel U 0.001369391483418562 -0.28383104335787 1.0 11665 +844 CASQ1 calsequestrin 1 Novel U 0.0013691083256706074 -0.2838334846574464 1.0 11666 +2517 FUCA1 alpha-L-fucosidase 1 Novel U 0.0013689922904873667 -0.2838344850773386 1.0 11667 +285513 GPRIN3 GPRIN family member 3 Novel U 0.0013686170305611224 -0.28383772045375194 1.0 11668 +4674 NAP1L2 nucleosome assembly protein 1 like 2 Novel U 0.0013680943876032638 -0.28384222652162705 1.0 11669 +285888 CNPY1 canopy FGF signaling regulator 1 Novel U 0.0013676687500311945 -0.28384589623870843 1.0 11670 +54529 ASNSD1 asparagine synthetase domain containing 1 Novel U 0.0013650658343498066 -0.28386833778232246 1.0 11671 +84417 ECRG4 ECRG4 augurin precursor Novel U 0.0013650169389865616 -0.2838687593432031 1.0 11672 +220107 DLEU7 deleted in lymphocytic leukemia 7 Novel U 0.001364555740543358 -0.28387273565524884 1.0 11673 +5342 PLGLB2 plasminogen like B2 Novel U 0.001364535544872081 -0.28387290977615526 1.0 11674 +10907 TXNL4A thioredoxin like 4A Novel U 0.0013644982110437342 -0.2838732316570149 1.0 11675 +9874 TLK1 tousled like kinase 1 Novel U 0.0013643412060597804 -0.28387458530600945 1.0 11676 +11260 XPOT exportin for tRNA Novel N 0.0013643042648256135 -0.28387490380204206 1.0 11677 +25890 ABI3BP ABI family member 3 binding protein Novel U 0.0013642050323943394 -0.2838757593537414 1.0 11678 +147650 SPACA6 sperm acrosome associated 6 Novel U 0.001364066177350263 -0.2838769565195005 1.0 11679 +8609 KLF7 KLF transcription factor 7 Novel U 0.0013639985639223085 -0.2838775394618152 1.0 11680 +8428 STK24 serine/threonine kinase 24 Novel U 0.001362951179770522 -0.2838865696879156 1.0 11681 +5831 PYCR1 pyrroline-5-carboxylate reductase 1 Novel U 0.001362371542263536 -0.283891567145377 1.0 11682 +58473 PLEKHB1 pleckstrin homology domain containing B1 Novel U 0.0013620856709184266 -0.28389403184075884 1.0 11683 +126075 CCDC159 coiled-coil domain containing 159 Novel U 0.0013617949298858978 -0.2838965385210976 1.0 11684 +7544 ZFY zinc finger protein Y-linked Novel U 0.001361552674400847 -0.283898627173862 1.0 11685 +729264 TP53TG3D TP53 target 3D Novel U 0.0013603475350344235 -0.2839090175172166 1.0 11686 +746 TMEM258 transmembrane protein 258 Novel N 0.0013602699247763387 -0.2839096866491459 1.0 11687 +1390 CREM cAMP responsive element modulator Novel N 0.0013599067719645623 -0.28391281764171794 1.0 11688 +2570 GABRR2 gamma-aminobutyric acid type A receptor subunit rho2 Novel N 0.0013598822624359675 -0.2839130289553839 1.0 11689 +200909 HTR3D 5-hydroxytryptamine receptor 3D Novel N 0.001358646123413968 -0.28392368656829614 1.0 11690 +100132963 SMIM9 small integral membrane protein 9 Novel U 0.0013585061559922703 -0.28392489332463516 1.0 11691 +28971 AAMDC adipogenesis associated Mth938 domain containing Novel U 0.0013584315622533882 -0.28392553644905766 1.0 11692 +51617 NSG2 neuronal vesicle trafficking associated 2 Novel U 0.0013581648635728719 -0.2839278358435841 1.0 11693 +91298 RLIG1 RNA 5'-phosphate and 3'-OH ligase 1 Novel N 0.0013576176623422255 -0.2839325536453827 1.0 11694 +81576 YJU2B YJU2 splicing factor homolog B Novel U 0.0013570172916904898 -0.2839377298576826 1.0 11695 +26011 TENM4 teneurin transmembrane protein 4 Novel N 0.001355995514223536 -0.28394653931077113 1.0 11696 +728927 ZNF736 zinc finger protein 736 Novel U 0.0013558491655155992 -0.2839478010846102 1.0 11697 +1089 CEACAM4 CEA cell adhesion molecule 4 Novel U 0.001355380059303235 -0.28395184557502523 1.0 11698 +285498 RNF212 ring finger protein 212 Novel N 0.0013547659055208462 -0.28395714062126576 1.0 11699 +5993 RFX5 regulatory factor X5 Novel U 0.001354538880274389 -0.28395909796356705 1.0 11700 +317754 POTED POTE ankyrin domain family member D Novel U 0.0013543230026225373 -0.2839609591947141 1.0 11701 +8611 PLPP1 phospholipid phosphatase 1 Novel U 0.0013542494644506046 -0.28396159321836095 1.0 11702 +149840 SHLD1 shieldin complex subunit 1 Novel U 0.001354029386112215 -0.28396349066654364 1.0 11703 +51327 AHSP alpha hemoglobin stabilizing protein Novel U 0.001353984763162119 -0.28396387539198364 1.0 11704 +60528 ELAC2 elaC ribonuclease Z 2 Novel N 0.0013537918575684624 -0.2839655385650647 1.0 11705 +94103 ORMDL3 ORMDL sphingolipid biosynthesis regulator 3 Novel U 0.001353709832304372 -0.28396624576182666 1.0 11706 +84706 GPT2 glutamic--pyruvic transaminase 2 Novel U 0.0013533945504341349 -0.283968964025769 1.0 11707 +147199 SCGB1C1 secretoglobin family 1C member 1 Novel U 0.0013533079656115846 -0.2839697105336507 1.0 11708 +80235 PIGZ phosphatidylinositol glycan anchor biosynthesis class Z Novel U 0.0013530483023142367 -0.2839719492712533 1.0 11709 +342184 FMN1 formin 1 Novel U 0.00135274281077563 -0.28397458312594803 1.0 11710 +9148 NEURL1 neuralized E3 ubiquitin protein ligase 1 Novel U 0.001351438430991602 -0.28398582908985764 1.0 11711 +84125 LRRIQ1 leucine rich repeats and IQ motif containing 1 Novel U 0.001351151459250822 -0.28398830327251473 1.0 11712 +120406 NXPE2 neurexophilin and PC-esterase domain family member 2 Novel U 0.0013504023404513146 -0.2839947619458907 1.0 11713 +201255 LRRC45 leucine rich repeat containing 45 Novel U 0.001349796613629637 -0.2839999843374511 1.0 11714 +93426 SYCE1 synaptonemal complex central element protein 1 Novel U 0.0013495018407571845 -0.28400252577908164 1.0 11715 +55744 COA1 cytochrome c oxidase assembly factor 1 Novel N 0.0013485615543867451 -0.28401063264083776 1.0 11716 +29128 UHRF1 ubiquitin like with PHD and ring finger domains 1 Novel U 0.0013484019498443886 -0.2840120087024305 1.0 11717 +1581 CYP7A1 cytochrome P450 family 7 subfamily A member 1 Novel U 0.0013479371793104382 -0.28401601581195113 1.0 11718 +79813 EHMT1 euchromatic histone lysine methyltransferase 1 Novel U 0.0013476356616900988 -0.28401861540473683 1.0 11719 +84619 ZGPAT zinc finger CCCH-type and G-patch domain containing Novel U 0.0013474784583177115 -0.2840199707641759 1.0 11720 +170825 GSX2 GS homeobox 2 Novel N 0.0013472766029837301 -0.28402171109918317 1.0 11721 +283518 KCNRG potassium channel regulator Novel U 0.001347146407125526 -0.2840228336080877 1.0 11722 +9095 TBX19 T-box transcription factor 19 Novel N 0.0013465454855191986 -0.2840280145705497 1.0 11723 +55034 MOCOS molybdenum cofactor sulfurase Novel U 0.0013463570417902168 -0.28402963927479696 1.0 11724 +7443 VRK1 VRK serine/threonine kinase 1 Novel U 0.0013460296845300638 -0.2840324616490612 1.0 11725 +8869 ST3GAL5 ST3 beta-galactoside alpha-2,3-sialyltransferase 5 Novel N 0.0013457707340059127 -0.28403469424135114 1.0 11726 +132243 H1-8 H1.8 linker histone Novel U 0.0013451543485298097 -0.2840400085285729 1.0 11727 +133383 SETD9 SET domain containing 9 Novel N 0.0013442249276234286 -0.28404802171161825 1.0 11728 +149628 PYHIN1 pyrin and HIN domain family member 1 Novel U 0.0013440084433314614 -0.28404988817303095 1.0 11729 +993 CDC25A cell division cycle 25A Novel U 0.0013435750301725152 -0.28405362492884634 1.0 11730 +158135 TTLL11 tubulin tyrosine ligase like 11 Novel U 0.0013426632665896833 -0.2840614858758437 1.0 11731 +57495 NWD2 NACHT and WD repeat domain containing 2 Novel U 0.0013420902104392099 -0.28406642659086034 1.0 11732 +9887 SMG7 SMG7 nonsense mediated mRNA decay factor Novel N 0.001342062516496493 -0.28406666535957187 1.0 11733 +144195 SLC2A14 solute carrier family 2 member 14 Novel N 0.001342004342372619 -0.28406716691909123 1.0 11734 +345079 SOWAHB sosondowah ankyrin repeat domain family member B Novel U 0.001341934300022657 -0.2840677708028293 1.0 11735 +4487 MSX1 msh homeobox 1 Novel U 0.0013417404834992922 -0.28406944182966787 1.0 11736 +57472 CNOT6 CCR4-NOT transcription complex subunit 6 Novel U 0.0013414649339104758 -0.28407181753402105 1.0 11737 +54490 UGT2B28 UDP glucuronosyltransferase family 2 member B28 Novel N 0.0013413827449521892 -0.2840725261421043 1.0 11738 +84542 SANBR SANT and BTB domain regulator of CSR Novel U 0.0013412576285147043 -0.28407360485779565 1.0 11739 +90987 ZNF251 zinc finger protein 251 Novel U 0.0013408544505314982 -0.28407708093516504 1.0 11740 +4123 MAN2C1 mannosidase alpha class 2C member 1 Novel U 0.0013406311610162532 -0.28407900606913333 1.0 11741 +8556 CDC14A cell division cycle 14A Novel N 0.0013406251551989106 -0.28407905784945525 1.0 11742 +168544 ZNF467 zinc finger protein 467 Novel U 0.001340569806324032 -0.28407953505054107 1.0 11743 +79364 ZXDC ZXD family zinc finger C Novel N 0.001340446277835105 -0.2840806000754252 1.0 11744 +653509 SFTPA1 surfactant protein A1 Novel N 0.0013399464320144306 -0.2840849095933497 1.0 11745 +1118 CHIT1 chitinase 1 Novel N 0.001339248083915816 -0.284090930537257 1.0 11746 +79613 TANGO6 transport and golgi organization 6 homolog Novel U 0.001339080357451048 -0.28409237662358283 1.0 11747 +64093 SMOC1 SPARC related modular calcium binding 1 Novel U 0.0013386831235020747 -0.2840958014533054 1.0 11748 +516 ATP5MC1 ATP synthase membrane subunit c locus 1 Novel U 0.0013385894034652916 -0.28409660947882387 1.0 11749 +26135 SERBP1 SERPINE1 mRNA binding protein 1 Novel U 0.0013382938002525022 -0.284099158079395 1.0 11750 +391747 TAF11L6 TATA-box binding protein associated factor 11 like 6 Novel U 0.0013381824785821516 -0.2841001178608194 1.0 11751 +55272 IMP3 IMP U3 small nucleolar ribonucleoprotein 3 Novel N 0.0013375069287444887 -0.2841059422450874 1.0 11752 +1300 COL10A1 collagen type X alpha 1 chain Novel U 0.00133743260680097 -0.2841065830261733 1.0 11753 +2187 FANCB FA complementation group B Novel U 0.0013371476111399638 -0.28410904017167443 1.0 11754 +134549 SHROOM1 shroom family member 1 Novel U 0.0013370802109547528 -0.2841096212754754 1.0 11755 +121506 ERP27 endoplasmic reticulum protein 27 Novel U 0.0013366855697732772 -0.2841130237511489 1.0 11756 +10204 NUTF2 nuclear transport factor 2 Novel U 0.0013365121567128497 -0.2841145188655648 1.0 11757 +57128 LYRM4 LYR motif containing 4 Novel N 0.0013346578299913447 -0.2841305063039183 1.0 11758 +65083 NOL6 nucleolar protein 6 Novel N 0.0013345604363173855 -0.2841313460024139 1.0 11759 +51231 VRK3 VRK serine/threonine kinase 3 Novel N 0.001334528383970145 -0.28413162234795736 1.0 11760 +7024 TFCP2 transcription factor CP2 Novel N 0.0013343946295877721 -0.28413277553736993 1.0 11761 +56255 TMX4 thioredoxin related transmembrane protein 4 Novel U 0.001333821515806306 -0.2841377167492634 1.0 11762 +54929 TMEM161A transmembrane protein 161A Novel U 0.0013338070630649365 -0.2841378413563831 1.0 11763 +256130 TMEM196 transmembrane protein 196 Novel N 0.0013329749419542366 -0.2841450156503226 1.0 11764 +80341 BPIFB2 BPI fold containing family B member 2 Novel U 0.0013329400174760446 -0.2841453167585014 1.0 11765 +56952 PRTFDC1 phosphoribosyl transferase domain containing 1 Novel N 0.0013325138304844139 -0.2841489912125104 1.0 11766 +56122 PCDHB14 protocadherin beta 14 Novel U 0.0013322519626360718 -0.284151248957078 1.0 11767 +90874 ZNF697 zinc finger protein 697 Novel U 0.0013316580433804387 -0.28415636954741214 1.0 11768 +427 ASAH1 N-acylsphingosine amidohydrolase 1 Novel U 0.0013312448704878106 -0.2841599317978363 1.0 11769 +10667 FARS2 phenylalanyl-tRNA synthetase 2, mitochondrial Novel N 0.0013310877244349561 -0.28416128666308377 1.0 11770 +7978 MTERF1 mitochondrial transcription termination factor 1 Novel U 0.0013306864174278087 -0.2841647466094692 1.0 11771 +53346 TM6SF1 transmembrane 6 superfamily member 1 Novel U 0.0013305730185585668 -0.2841657242998678 1.0 11772 +56896 DPYSL5 dihydropyrimidinase like 5 Novel U 0.001329228854123753 -0.2841773132748792 1.0 11773 +27107 ZBTB11 zinc finger and BTB domain containing 11 Novel U 0.0013292159986032397 -0.28417742411124874 1.0 11774 +126248 WDR88 WD repeat domain 88 Novel U 0.0013291455612201787 -0.2841780314008414 1.0 11775 +1828 DSG1 desmoglein 1 Novel U 0.0013290255910143576 -0.2841790657472959 1.0 11776 +55650 PIGV phosphatidylinositol glycan anchor biosynthesis class V Novel U 0.001328306358965884 -0.2841852667462371 1.0 11777 +729447 GAGE2A G antigen 2A Novel U 0.0013281146341289926 -0.2841869197391942 1.0 11778 +4951 OCM2 oncomodulin 2 Novel U 0.0013279213891587796 -0.28418858583827616 1.0 11779 +89797 NAV2 neuron navigator 2 Novel U 0.0013277840555295014 -0.2841897698868618 1.0 11780 +64112 MOAP1 modulator of apoptosis 1 Novel U 0.0013270794610729915 -0.284195844684958 1.0 11781 +10309 CCNO cyclin O Novel U 0.0013266803130433478 -0.28419928601729927 1.0 11782 +389792 IER5L immediate early response 5 like Novel U 0.0013262242876349811 -0.28420321772901935 1.0 11783 +617 BCS1L BCS1 homolog, ubiquinol-cytochrome c reductase complex chaperone Novel N 0.0013254406091472363 -0.2842099743654667 1.0 11784 +8076 MFAP5 microfibril associated protein 5 Novel U 0.0013243923533706916 -0.2842190121064493 1.0 11785 +57030 SLC17A7 solute carrier family 17 member 7 Novel N 0.0013241335196209597 -0.28422124369194585 1.0 11786 +64072 CDH23 cadherin related 23 Novel U 0.001323928612337389 -0.2842230103399299 1.0 11787 +10349 ABCA10 ATP binding cassette subfamily A member 10 Novel U 0.0013237848847571778 -0.28422424951520664 1.0 11788 +57477 SHROOM4 shroom family member 4 Novel N 0.0013237000777608474 -0.28422498069521396 1.0 11789 +64838 FNDC4 fibronectin type III domain containing 4 Novel U 0.0013230719018338941 -0.2842303966361001 1.0 11790 +51067 YARS2 tyrosyl-tRNA synthetase 2 Novel N 0.001323028691176966 -0.28423076918518 1.0 11791 +9551 ATP5MF ATP synthase membrane subunit f Novel N 0.001322324171785117 -0.2842368433360917 1.0 11792 +29914 UBIAD1 UbiA prenyltransferase domain containing 1 Novel U 0.0013219232419455584 -0.2842403000306535 1.0 11793 +10635 RAD51AP1 RAD51 associated protein 1 Novel U 0.0013217405300166708 -0.2842418753170718 1.0 11794 +25959 KANK2 KN motif and ankyrin repeat domains 2 Novel U 0.001320743014541595 -0.28425047559068023 1.0 11795 +83445 GSG1 germ cell associated 1 Novel U 0.0013202717827161853 -0.2842545384074813 1.0 11796 +26521 TIMM8B translocase of inner mitochondrial membrane 8 homolog B Novel U 0.0013198149078707613 -0.28425847744278826 1.0 11797 +6546 SLC8A1 solute carrier family 8 member A1 Novel U 0.001319677935149846 -0.28425965837973227 1.0 11798 +79087 ALG12 ALG12 alpha-1,6-mannosyltransferase Novel U 0.0013196719089356625 -0.28425971033590947 1.0 11799 +23262 PPIP5K2 diphosphoinositol pentakisphosphate kinase 2 Novel N 0.0013191801245108156 -0.2842639503509426 1.0 11800 +164237 WFDC13 WAP four-disulfide core domain 13 Novel U 0.0013191598905537936 -0.284264124801937 1.0 11801 +81621 KAZALD1 Kazal type serine peptidase inhibitor domain 1 Novel U 0.001319147928749337 -0.2842642279329598 1.0 11802 +23515 MORC3 MORC family CW-type zinc finger 3 Novel N 0.001318668046249713 -0.2842683653332305 1.0 11803 +56164 STK31 serine/threonine kinase 31 Novel U 0.0013183836193526397 -0.2842708175750228 1.0 11804 +3291 HSD11B2 hydroxysteroid 11-beta dehydrogenase 2 Novel N 0.0013181521490493744 -0.2842728132412456 1.0 11805 +10881 ACTL7A actin like 7A Novel N 0.0013179186050460453 -0.2842748267862767 1.0 11806 +220323 OAF out at first homolog Novel U 0.0013179057043150165 -0.2842749380124374 1.0 11807 +414332 LCN10 lipocalin 10 Novel U 0.0013173269100809888 -0.2842799281994571 1.0 11808 +256302 NATD1 N-acetyltransferase domain containing 1 Novel U 0.001317214427960343 -0.2842808979859293 1.0 11809 +143506 SSU72L3 SSU72 like 3 Novel U 0.0013168004615374458 -0.284284467077929 1.0 11810 +30000 TNPO2 transportin 2 Novel N 0.0013167934428759515 -0.2842845275906836 1.0 11811 +8630 HSD17B6 hydroxysteroid 17-beta dehydrogenase 6 Novel N 0.001316503454102798 -0.28428702778527193 1.0 11812 +123775 C16orf46 chromosome 16 open reading frame 46 Novel U 0.0013162225664372746 -0.28428944951289126 1.0 11813 +57497 LRFN2 leucine rich repeat and fibronectin type III domain containing 2 Novel U 0.001315310222479301 -0.28429731546370574 1.0 11814 +124540 MSI2 musashi RNA binding protein 2 Novel U 0.0013151286333863412 -0.2842988810693758 1.0 11815 +3008 H1-4 H1.4 linker histone, cluster member Novel U 0.0013151149784940404 -0.2842989987976846 1.0 11816 +6507 SLC1A3 solute carrier family 1 member 3 Novel U 0.0013144176412372545 -0.28430501102642247 1.0 11817 +401145 CCSER1 coiled-coil serine rich protein 1 Novel U 0.0013142107365003786 -0.28430679489583854 1.0 11818 +84769 MPV17L2 MPV17 mitochondrial inner membrane protein like 2 Novel N 0.0013141794353450293 -0.284307064764835 1.0 11819 +3226 HOXC10 homeobox C10 Novel N 0.0013141365151967787 -0.2843074348092378 1.0 11820 +23250 ATP11A ATPase phospholipid transporting 11A Novel N 0.0013140841789502952 -0.2843078860363623 1.0 11821 +100288072 SDR42E2 short chain dehydrogenase/reductase family 42E, member 2 Novel U 0.0013138572326795786 -0.2843098426977589 1.0 11822 +120071 LARGE2 LARGE xylosyl- and glucuronyltransferase 2 Novel N 0.0013135717603258302 -0.28431230395315915 1.0 11823 +23506 BICRAL BICRA like chromatin remodeling complex associated protein Novel U 0.0013133803489609544 -0.28431395424345624 1.0 11824 +7692 ZNF133 zinc finger protein 133 Novel N 0.0013126210347693768 -0.28432050081838717 1.0 11825 +1140 CHRNB1 cholinergic receptor nicotinic beta 1 subunit Novel U 0.0013125136851980623 -0.2843214263535875 1.0 11826 +3861 KRT14 keratin 14 Novel U 0.0013118356794831532 -0.2843272719116785 1.0 11827 +5053 PAH phenylalanine hydroxylase Novel N 0.0013116713885887902 -0.2843286883775662 1.0 11828 +10553 HTATIP2 HIV-1 Tat interactive protein 2 Novel U 0.0013113768335219985 -0.2843312279413429 1.0 11829 +51032 CELA2B chymotrypsin like elastase 2B Novel U 0.0013110280176391377 -0.28433423532529484 1.0 11830 +283008 NUTM2E NUT family member 2E Novel U 0.001311007086339281 -0.2843344157885661 1.0 11831 +170371 TMEM273 transmembrane protein 273 Novel U 0.0013107587976403886 -0.28433655645785666 1.0 11832 +56941 HMCES 5-hydroxymethylcytosine binding, ES cell specific Novel N 0.0013107581886648962 -0.2843365617082573 1.0 11833 +10939 AFG3L2 AFG3 like matrix AAA peptidase subunit 2 Novel N 0.0013103264269453704 -0.28434028422586666 1.0 11834 +79884 MAP9 microtubule associated protein 9 Novel U 0.001310234273896218 -0.28434107874129655 1.0 11835 +8344 H2BC6 H2B clustered histone 6 Novel N 0.0013098505342166776 -0.2843443872275516 1.0 11836 +54600 UGT1A9 UDP glucuronosyltransferase family 1 member A9 Novel N 0.0013098341854089264 -0.2843445281819762 1.0 11837 +64693 CTAGE1 cutaneous T cell lymphoma-associated antigen 1 Novel U 0.0013097581219044883 -0.28434518397826825 1.0 11838 +84164 ASCC2 activating signal cointegrator 1 complex subunit 2 Novel U 0.0013087300945037242 -0.2843540473163762 1.0 11839 +29066 ZC3H7A zinc finger CCCH-type containing 7A Novel N 0.001308304368255351 -0.28435771779799757 1.0 11840 +23213 SULF1 sulfatase 1 Novel U 0.0013075755284777271 -0.2843640016318437 1.0 11841 +683 BST1 bone marrow stromal cell antigen 1 Novel U 0.0013073814305905257 -0.2843656750845153 1.0 11842 +904 CCNT1 cyclin T1 Novel U 0.0013072858360641518 -0.28436649927131025 1.0 11843 +79414 LRFN3 leucine rich repeat and fibronectin type III domain containing 3 Novel U 0.0013071605523514228 -0.2843675794291976 1.0 11844 +58526 MID1IP1 MID1 interacting protein 1 Novel U 0.0013061080193993862 -0.28437665404668033 1.0 11845 +64976 MRPL40 mitochondrial ribosomal protein L40 Novel N 0.001306053426966598 -0.28437712472595367 1.0 11846 +6847 SYCP1 synaptonemal complex protein 1 Novel U 0.0013059914736175216 -0.2843776588687979 1.0 11847 +1463 NCAN neurocan Novel U 0.0013058298580516006 -0.2843790522688212 1.0 11848 +127396 ZNF684 zinc finger protein 684 Novel U 0.0013055027224984207 -0.2843818727315957 1.0 11849 +101927685 HSFX4 heat shock transcription factor family, X-linked member 4 Novel U 0.0013053763132764094 -0.28438296259328016 1.0 11850 +54682 MANSC1 MANSC domain containing 1 Novel U 0.0013051334163085245 -0.2843850567767136 1.0 11851 +8001 GLRA3 glycine receptor alpha 3 Novel U 0.0013050117681619499 -0.28438610558986044 1.0 11852 +100506144 TMEM35B transmembrane protein 35B Novel U 0.0013048653495110144 -0.2843873679667267 1.0 11853 +130497 OSR1 odd-skipped related transcription factor 1 Novel U 0.0013040124341809668 -0.2843947215420711 1.0 11854 +10694 CCT8 chaperonin containing TCP1 subunit 8 Novel U 0.0013037558472532022 -0.2843969337561553 1.0 11855 +2653 GCSH glycine cleavage system protein H Novel N 0.0013035198299964604 -0.2843989686248215 1.0 11856 +79959 CEP76 centrosomal protein 76 Novel U 0.0013029969412861077 -0.2844034768114995 1.0 11857 +9913 SUPT7L SPT7 like, STAGA complex subunit gamma Novel N 0.001302850332720345 -0.2844047408257533 1.0 11858 +23305 ACSL6 acyl-CoA synthetase long chain family member 6 Novel N 0.0013027000270907532 -0.28440603671496173 1.0 11859 +54659 UGT1A3 UDP glucuronosyltransferase family 1 member A3 Novel U 0.0013022490741266617 -0.2844099246936173 1.0 11860 +5507 PPP1R3C protein phosphatase 1 regulatory subunit 3C Novel U 0.0013020039019089897 -0.28441203849355917 1.0 11861 +6130 RPL7A ribosomal protein L7a Novel N 0.0013018478853111545 -0.2844133836209906 1.0 11862 +283953 TMEM114 transmembrane protein 114 Novel U 0.0013017722245389012 -0.28441403594504877 1.0 11863 +57496 MRTFB myocardin related transcription factor B Novel N 0.0013016616672433634 -0.28441498913626717 1.0 11864 +9278 ZBTB22 zinc finger and BTB domain containing 22 Novel U 0.001301493253445565 -0.28441644114856846 1.0 11865 +272 AMPD3 adenosine monophosphate deaminase 3 Novel U 0.0013014448599736306 -0.28441685838229547 1.0 11866 +646457 C19orf67 chromosome 19 open reading frame 67 Novel U 0.0013008300770492496 -0.2844221588528061 1.0 11867 +5453 POU3F1 POU class 3 homeobox 1 Novel N 0.0012996809499438283 -0.28443206627556233 1.0 11868 +23211 ZC3H4 zinc finger CCCH-type containing 4 Novel N 0.0012989497987784357 -0.2844383700374875 1.0 11869 +3018 H2BC3 H2B clustered histone 3 Novel U 0.0012988547670891096 -0.2844391893716734 1.0 11870 +92960 PEX11G peroxisomal biogenesis factor 11 gamma Novel U 0.0012985505172596575 -0.2844418125207312 1.0 11871 +646962 HRCT1 histidine rich carboxyl terminus 1 Novel U 0.001298522168769389 -0.28444205693275165 1.0 11872 +23420 NOMO1 NODAL modulator 1 Novel U 0.001297531065746182 -0.2844506019201596 1.0 11873 +256536 TCERG1L transcription elongation regulator 1 like Novel U 0.0012966013888587357 -0.28445861731019534 1.0 11874 +53616 ADAM22 ADAM metallopeptidase domain 22 Novel N 0.0012965094695096718 -0.2844594098107346 1.0 11875 +27012 KCNV1 potassium voltage-gated channel modifier subfamily V member 1 Novel N 0.0012964875749391217 -0.28445959857903136 1.0 11876 +131474 CHCHD4 coiled-coil-helix-coiled-coil-helix domain containing 4 Novel U 0.0012963603144190623 -0.28446069578034744 1.0 11877 +29998 BICRA BRD4 interacting chromatin remodeling complex associated protein Novel U 0.0012963518087044075 -0.2844607691140201 1.0 11878 +80712 ESX1 ESX homeobox 1 Novel N 0.0012961979932611014 -0.2844620952637698 1.0 11879 +23784 POTEH POTE ankyrin domain family member H Novel U 0.0012961084499107604 -0.2844628672791741 1.0 11880 +5396 PRRX1 paired related homeobox 1 Novel U 0.0012958654313097655 -0.284464962511291 1.0 11881 +283209 PGM2L1 phosphoglucomutase 2 like 1 Novel U 0.0012956637425914496 -0.2844667014097889 1.0 11882 +90507 SCRN2 secernin 2 Novel U 0.0012951393059608015 -0.28447122294216265 1.0 11883 +55103 RALGPS2 Ral GEF with PH domain and SH3 binding motif 2 Novel U 0.0012941932907372077 -0.2844793791963401 1.0 11884 +11180 WDR6 WD repeat domain 6 Novel N 0.001293501701404198 -0.2844853418682356 1.0 11885 +9133 CCNB2 cyclin B2 Novel U 0.0012934794183566815 -0.28448553398586207 1.0 11886 +114801 TMEM200A transmembrane protein 200A Novel U 0.0012933533860748927 -0.28448662059768315 1.0 11887 +6668 SP2 Sp2 transcription factor Novel N 0.0012933216148067425 -0.2844868945198486 1.0 11888 +23170 TTLL12 tubulin tyrosine ligase like 12 Novel U 0.0012927371182535504 -0.2844919338705216 1.0 11889 +9568 GABBR2 gamma-aminobutyric acid type B receptor subunit 2 Novel U 0.0012925702336573901 -0.28449337269851355 1.0 11890 +7832 BTG2 BTG anti-proliferation factor 2 Novel N 0.0012925223220982963 -0.2844937857773354 1.0 11891 +9457 FHL5 four and a half LIM domains 5 Novel U 0.0012922462453026987 -0.28449616602710437 1.0 11892 +78987 CRELD1 cysteine rich with EGF like domains 1 Novel N 0.001292001906329176 -0.2844982726430697 1.0 11893 +116931 MED12L mediator complex subunit 12L Novel U 0.0012916644474541322 -0.28450118211037073 1.0 11894 +339976 TRIML1 tripartite motif family like 1 Novel U 0.0012916298289055309 -0.2845014805809182 1.0 11895 +114898 C1QTNF2 C1q and TNF related 2 Novel U 0.0012912407439054053 -0.2845048351528938 1.0 11896 +96626 LIMS3 LIM zinc finger domain containing 3 Novel U 0.0012911011125746358 -0.2845060390115597 1.0 11897 +642843 CPSF4L cleavage and polyadenylation specific factor 4 like Novel U 0.0012902040822333957 -0.2845137729330501 1.0 11898 +57405 SPC25 SPC25 component of NDC80 kinetochore complex Novel U 0.0012898146869682445 -0.28451713018003605 1.0 11899 +3209 HOXA13 homeobox A13 Novel U 0.0012894423137302061 -0.2845203406683058 1.0 11900 +6324 SCN1B sodium voltage-gated channel beta subunit 1 Novel U 0.0012894029536185258 -0.28452068001916114 1.0 11901 +65065 NBEAL1 neurobeachin like 1 Novel U 0.0012887869793058067 -0.28452599076145796 1.0 11902 +55705 IPO9 importin 9 Novel U 0.0012887864253365163 -0.2845259955376118 1.0 11903 +57703 CWC22 CWC22 spliceosome associated protein homolog Novel N 0.0012887576940409811 -0.28452624325006237 1.0 11904 +729597 SPDYE6 speedy/RINGO cell cycle regulator family member E6 Novel U 0.0012886705533899786 -0.2845269945501271 1.0 11905 +23398 PPWD1 peptidylprolyl isomerase domain and WD repeat containing 1 Novel N 0.001288432225951003 -0.2845290493364786 1.0 11906 +51337 THEM6 thioesterase superfamily member 6 Novel U 0.0012883985553673622 -0.2845293396339618 1.0 11907 +54346 UNC93A unc-93 homolog A Novel U 0.0012882607517768349 -0.28453052773440973 1.0 11908 +81544 GDPD5 glycerophosphodiester phosphodiesterase domain containing 5 Novel U 0.0012880647249251624 -0.2845322178180236 1.0 11909 +899 CCNF cyclin F Novel U 0.0012868779097940362 -0.2845424501754209 1.0 11910 +388336 SHISA6 shisa family member 6 Novel U 0.0012864991150545533 -0.2845457160279138 1.0 11911 +101927367 SMIM36 small integral membrane protein 36 Novel U 0.001286024777858715 -0.28454980561826987 1.0 11912 +9403 SELENOF selenoprotein F Novel U 0.001285971391631107 -0.2845502658980107 1.0 11913 +3292 HSD17B1 hydroxysteroid 17-beta dehydrogenase 1 Novel N 0.0012853873143268296 -0.2845553016340477 1.0 11914 +5199 CFP complement factor properdin Novel N 0.0012849719033015312 -0.2845588831809677 1.0 11915 +147463 ANKRD29 ankyrin repeat domain 29 Novel U 0.001284907837295696 -0.284559435538493 1.0 11916 +85315 PAQR8 progestin and adipoQ receptor family member 8 Novel U 0.0012844770257663728 -0.2845631498638528 1.0 11917 +4288 MKI67 marker of proliferation Ki-67 Novel N 0.001284423986280467 -0.2845636071540926 1.0 11918 +83989 ARB2A ARB2 cotranscriptional regulator A Novel U 0.001283936737767252 -0.2845678080618817 1.0 11919 +120534 ARL14EP ADP ribosylation factor like GTPase 14 effector protein Novel U 0.0012836514937480826 -0.284570267348651 1.0 11920 +112488745 TAF11L9 TATA-box binding protein associated factor 11 like 9 Novel U 0.0012836177339080434 -0.2845705584156756 1.0 11921 +196463 PLBD2 phospholipase B domain containing 2 Novel U 0.0012834662412084129 -0.2845718645394391 1.0 11922 +23451 SF3B1 splicing factor 3b subunit 1 Novel U 0.0012826479899383173 -0.28457891925185125 1.0 11923 +5917 RARS1 arginyl-tRNA synthetase 1 Novel N 0.0012825449468340134 -0.28457980765800894 1.0 11924 +57532 NUFIP2 nuclear FMR1 interacting protein 2 Novel U 0.001282406242996511 -0.2845810035201112 1.0 11925 +84467 FBN3 fibrillin 3 Novel U 0.0012813981397555162 -0.28458969507820203 1.0 11926 +85445 CNTNAP4 contactin associated protein family member 4 Novel U 0.0012811560047967746 -0.28459178269182545 1.0 11927 +1087 CEACAM7 CEA cell adhesion molecule 7 Novel U 0.0012808874440758341 -0.28459409814029546 1.0 11928 +126792 B3GALT6 beta-1,3-galactosyltransferase 6 Novel U 0.0012806213519424262 -0.28459639230535805 1.0 11929 +216 ALDH1A1 aldehyde dehydrogenase 1 family member A1 Novel N 0.0012805706613301378 -0.28459682934432734 1.0 11930 +2562 GABRB3 gamma-aminobutyric acid type A receptor subunit beta3 Novel U 0.0012799300302495788 -0.2846023526697419 1.0 11931 +2196 FAT2 FAT atypical cadherin 2 Novel N 0.0012795627384512675 -0.28460551934739103 1.0 11932 +26249 KLHL3 kelch like family member 3 Novel U 0.0012793958671185029 -0.28460695806103015 1.0 11933 +483 ATP1B3 ATPase Na+/K+ transporting subunit beta 3 Novel U 0.0012793416154385025 -0.28460742580243703 1.0 11934 +50861 STMN3 stathmin 3 Novel N 0.0012785522316302365 -0.2846142316284145 1.0 11935 +7373 COL14A1 collagen type XIV alpha 1 chain Novel U 0.0012783380498788222 -0.2846160782380262 1.0 11936 +131076 MIX23 mitochondrial matrix import factor 23 Novel U 0.0012781614307838178 -0.2846176009938926 1.0 11937 +7182 NR2C2 nuclear receptor subfamily 2 group C member 2 Novel N 0.001277569664754085 -0.28462270301977094 1.0 11938 +8480 RAE1 ribonucleic acid export 1 Novel U 0.0012770791599578891 -0.2846269320022368 1.0 11939 +23438 HARS2 histidyl-tRNA synthetase 2, mitochondrial Novel N 0.0012769104686366846 -0.28462838640726007 1.0 11940 +51390 AIG1 androgen induced 1 Novel N 0.0012768588053481745 -0.2846288318323465 1.0 11941 +795 S100G S100 calcium binding protein G Novel U 0.0012768048371010524 -0.2846292971300817 1.0 11942 +347734 SLC35B2 solute carrier family 35 member B2 Novel N 0.0012763922703928937 -0.2846328541541686 1.0 11943 +7638 ZNF221 zinc finger protein 221 Novel U 0.0012763505721461663 -0.2846332136637099 1.0 11944 +163479 FNDC7 fibronectin type III domain containing 7 Novel U 0.0012756265924679898 -0.28463945559526366 1.0 11945 +23248 RPRD2 regulation of nuclear pre-mRNA domain containing 2 Novel U 0.0012755100695531474 -0.28464046022022876 1.0 11946 +242 ALOX12B arachidonate 12-lipoxygenase, 12R type Novel U 0.0012747654069531337 -0.2846468804736144 1.0 11947 +27152 INTU inturned planar cell polarity protein Novel U 0.0012747426263422564 -0.28464707688108015 1.0 11948 +440 ASNS asparagine synthetase (glutamine-hydrolyzing) Novel U 0.0012744059765780237 -0.284649979372475 1.0 11949 +91966 EOLA1 endothelium and lymphocyte associated ASCH domain 1 Novel N 0.0012735079912150646 -0.2846577215278709 1.0 11950 +1149 CIDEA cell death inducing DFFA like effector a Novel U 0.0012733369809510506 -0.28465919592611044 1.0 11951 +256815 C10orf67 chromosome 10 open reading frame 67 Novel U 0.0012732090108439971 -0.28466029924526876 1.0 11952 +84866 TMEM25 transmembrane protein 25 Novel U 0.0012731244463611209 -0.28466102833439916 1.0 11953 +135295 SRSF12 serine and arginine rich splicing factor 12 Novel N 0.0012727523336842756 -0.2846642365761899 1.0 11954 +7073 TIAL1 TIA1 cytotoxic granule associated RNA binding protein like 1 Novel N 0.001272659784123398 -0.28466503451022274 1.0 11955 +29944 PNMA3 PNMA family member 3 Novel U 0.001272529971995515 -0.2846661537107218 1.0 11956 +51398 WDR83OS WD repeat domain 83 opposite strand Novel U 0.001272199807894727 -0.28466900028470826 1.0 11957 +130502 TTC32 tetratricopeptide repeat domain 32 Novel U 0.0012717966848967248 -0.2846724758880119 1.0 11958 +5191 PEX7 peroxisomal biogenesis factor 7 Novel U 0.001270958548418755 -0.2846797020446099 1.0 11959 +9326 ZNHIT3 zinc finger HIT-type containing 3 Novel N 0.0012704091951064051 -0.28468443840099933 1.0 11960 +1646 AKR1C2 aldo-keto reductase family 1 member C2 Novel U 0.0012695146148199495 -0.2846921511988661 1.0 11961 +139735 ZFP92 ZFP92 zinc finger protein Novel U 0.0012693395220319751 -0.2846936607953797 1.0 11962 +8560 DEGS1 delta 4-desaturase, sphingolipid 1 Novel U 0.0012690143167759817 -0.2846964646157217 1.0 11963 +54700 RRN3 RRN3 homolog, RNA polymerase I transcription factor Novel U 0.0012684953437507836 -0.2847009390425588 1.0 11964 +64429 ZDHHC6 zinc finger DHHC-type palmitoyltransferase 6 Novel N 0.001268002860179054 -0.28470518508542264 1.0 11965 +163050 ZNF564 zinc finger protein 564 Novel U 0.0012673044854191965 -0.284711206259195 1.0 11966 +1588 CYP19A1 cytochrome P450 family 19 subfamily A member 1 Novel U 0.0012672510186814284 -0.2847116672330698 1.0 11967 +2560 GABRB1 gamma-aminobutyric acid type A receptor subunit beta1 Novel N 0.0012667453008889317 -0.28471602737734103 1.0 11968 +9739 SETD1A SET domain containing 1A, histone lysine methyltransferase Novel U 0.0012660783216390339 -0.28472177786862024 1.0 11969 +81691 REXO5 RNA exonuclease 5 Novel U 0.0012659403641404078 -0.28472296729601676 1.0 11970 +4665 NAB2 NGFI-A binding protein 2 Novel U 0.0012657033132829297 -0.2847250110760727 1.0 11971 +84570 COL25A1 collagen type XXV alpha 1 chain Novel U 0.0012656128898955656 -0.28472579067888726 1.0 11972 +6142 RPL18A ribosomal protein L18a Novel N 0.001265385468189495 -0.28472775143934215 1.0 11973 +255061 TAC4 tachykinin precursor 4 Novel U 0.0012638334127579162 -0.284741132787001 1.0 11974 +9721 GPRIN2 G protein regulated inducer of neurite outgrowth 2 Novel U 0.0012637268181230033 -0.2847420518133703 1.0 11975 +80036 TRPM3 transient receptor potential cation channel subfamily M member 3 Novel U 0.0012636796125790695 -0.28474245880514526 1.0 11976 +26251 KCNG2 potassium voltage-gated channel modifier subfamily G member 2 Novel N 0.0012633110456106167 -0.2847456364769217 1.0 11977 +2230 FDX1 ferredoxin 1 Novel N 0.001262718741678238 -0.2847507431404323 1.0 11978 +9789 SPCS2 signal peptidase complex subunit 2 Novel N 0.0012626127845632336 -0.28475165667029984 1.0 11979 +57037 ANKMY2 ankyrin repeat and MYND domain containing 2 Novel U 0.001262547037019195 -0.2847522235255336 1.0 11980 +126204 NLRP13 NLR family pyrin domain containing 13 Novel U 0.001262457183111041 -0.2847529982184724 1.0 11981 +100996492 CTXND1 cortexin domain containing 1 Novel U 0.0012617723519348927 -0.2847589026236046 1.0 11982 +9112 MTA1 metastasis associated 1 Novel U 0.0012617248114886424 -0.28475931250280484 1.0 11983 +283537 SLC46A3 solute carrier family 46 member 3 Novel N 0.0012611532984173799 -0.2847642399138641 1.0 11984 +3170 FOXA2 forkhead box A2 Novel U 0.0012608950466000415 -0.28476646648211745 1.0 11985 +100303755 PET117 PET117 cytochrome c oxidase chaperone Novel N 0.001260189843309904 -0.2847725465293912 1.0 11986 +5889 RAD51C RAD51 paralog C Novel U 0.0012600541952258121 -0.2847737160457213 1.0 11987 +84934 RITA1 RBPJ interacting and tubulin associated 1 Novel U 0.0012597814217067105 -0.28477606781564974 1.0 11988 +100507650 RNF212B ring finger protein 212B Novel U 0.001259459807086746 -0.2847788406786251 1.0 11989 +6535 SLC6A8 solute carrier family 6 member 8 Novel U 0.001259446088120632 -0.28477895895935873 1.0 11990 +5251 PHEX phosphate regulating endopeptidase X-linked Novel U 0.0012586465856527869 -0.284785852025327 1.0 11991 +908 CCT6A chaperonin containing TCP1 subunit 6A Novel U 0.0012576178750916024 -0.2847947212534354 1.0 11992 +643136 ZC3H11B zinc finger CCCH-type containing 11B Novel U 0.0012575343627004914 -0.2847954412717521 1.0 11993 +2131 EXT1 exostosin glycosyltransferase 1 Novel U 0.0012573732165278963 -0.28479683062480965 1.0 11994 +160728 SLC5A8 solute carrier family 5 member 8 Novel N 0.0012567279487168575 -0.28480239392669754 1.0 11995 +10351 ABCA8 ATP binding cassette subfamily A member 8 Novel U 0.0012565916882538999 -0.28480356872277107 1.0 11996 +90701 SEC11C SEC11 homolog C, signal peptidase complex subunit Novel N 0.001256531602903701 -0.2848040867602998 1.0 11997 +126433 FBXO27 F-box protein 27 Novel U 0.001256414356874968 -0.28480509761973183 1.0 11998 +140738 TMEM37 transmembrane protein 37 Novel U 0.0012559277357903922 -0.28480929311802294 1.0 11999 +644672 CLDN25 claudin 25 Novel U 0.001255454471297314 -0.2848133734598636 1.0 12000 +11168 PSIP1 PC4 and SRSF1 interacting protein 1 Novel N 0.0012552481014720845 -0.2848151527174349 1.0 12001 +3921 RPSA ribosomal protein SA Novel N 0.0012552362573797868 -0.2848152548335794 1.0 12002 +9848 MFAP3L microfibril associated protein 3 like Novel U 0.0012551348648973753 -0.28481612900857955 1.0 12003 +80017 DGLUCY D-glutamate cyclase Novel U 0.0012532146329013276 -0.28483268466207096 1.0 12004 +222166 MTURN maturin, neural progenitor differentiation regulator homolog Novel U 0.0012521398325576877 -0.2848419512621997 1.0 12005 +84274 COQ5 coenzyme Q5, methyltransferase Novel N 0.0012504240088766667 -0.2848567445696615 1.0 12006 +3788 KCNS2 potassium voltage-gated channel modifier subfamily S member 2 Novel U 0.0012503613911755518 -0.2848572844403459 1.0 12007 +29101 SSU72 SSU72 homolog, RNA polymerase II CTD phosphatase Novel N 0.0012502544719345376 -0.2848582062653699 1.0 12008 +23659 PLA2G15 phospholipase A2 group XV Novel U 0.001250114723555909 -0.2848594111331866 1.0 12009 +9508 ADAMTS3 ADAM metallopeptidase with thrombospondin type 1 motif 3 Novel U 0.0012496512416548913 -0.2848634071325078 1.0 12010 +10620 ARID3B AT-rich interaction domain 3B Novel U 0.0012495163178989038 -0.28486457040390234 1.0 12011 +344022 NOTO notochord homeobox Novel U 0.0012494420185045333 -0.2848652109905764 1.0 12012 +147040 KCTD11 potassium channel tetramerization domain containing 11 Novel U 0.0012494274136195178 -0.2848653369094321 1.0 12013 +92922 CCDC102A coiled-coil domain containing 102A Novel U 0.0012488524240695995 -0.284870294293628 1.0 12014 +6598 SMARCB1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily b, member 1 Novel U 0.001248807054760034 -0.2848706854539512 1.0 12015 +140856 SCP2D1 SCP2 sterol binding domain containing 1 Novel U 0.0012483254154645042 -0.28487483800077945 1.0 12016 +54617 INO80 INO80 complex ATPase subunit Novel U 0.001248239264472318 -0.2848755807683084 1.0 12017 +23008 KLHDC10 kelch domain containing 10 Novel U 0.001248145529735732 -0.284876388920564 1.0 12018 +6431 SRSF6 serine and arginine rich splicing factor 6 Novel N 0.0012479781392450708 -0.2848778321102238 1.0 12019 +89885 FATE1 fetal and adult testis expressed 1 Novel N 0.0012477181667530674 -0.28488007351360833 1.0 12020 +1063 CENPF centromere protein F Novel U 0.0012473050353813638 -0.28488363540605177 1.0 12021 +51201 ZDHHC2 zinc finger DHHC-type palmitoyltransferase 2 Novel U 0.0012470348677287376 -0.28488596470899574 1.0 12022 +10368 CACNG3 calcium voltage-gated channel auxiliary subunit gamma 3 Novel U 0.0012462849757181823 -0.2848924300487611 1.0 12023 +55825 PECR peroxisomal trans-2-enoyl-CoA reductase Novel N 0.001245622936597448 -0.2848981379477562 1.0 12024 +728090 CT47A2 cancer/testis antigen family 47 member A2 Novel U 0.0012454253527649467 -0.284899841455183 1.0 12025 +80023 NRSN2 neurensin 2 Novel U 0.0012447770442388995 -0.28490543097318644 1.0 12026 +5023 P2RX1 purinergic receptor P2X 1 Novel N 0.0012447482007642756 -0.2849056796528108 1.0 12027 +7568 ZNF20 zinc finger protein 20 Novel U 0.0012446824674928734 -0.28490624638499024 1.0 12028 +127540 HMGB4 high mobility group box 4 Novel U 0.0012442768229091166 -0.28490974372863576 1.0 12029 +90861 JPT2 Jupiter microtubule associated homolog 2 Novel U 0.00124382051180755 -0.2849136779035154 1.0 12030 +1743 DLST dihydrolipoamide S-succinyltransferase Novel U 0.0012434520614265552 -0.28491685457011034 1.0 12031 +339 APOBEC1 apolipoprotein B mRNA editing enzyme catalytic subunit 1 Novel N 0.0012434139343591405 -0.2849171832900349 1.0 12032 +3033 HADH hydroxyacyl-CoA dehydrogenase Novel U 0.0012429791526248526 -0.28492093184528866 1.0 12033 +405753 DUOXA2 dual oxidase maturation factor 2 Novel U 0.0012429563060661207 -0.2849211288213367 1.0 12034 +4537 ND3 NADH dehydrogenase subunit 3 Novel N 0.001242874985854387 -0.28492182993935267 1.0 12035 +4677 NARS1 asparaginyl-tRNA synthetase 1 Novel U 0.0012427625482373187 -0.2849227993421287 1.0 12036 +23564 DDAH2 DDAH family member 2, ADMA-independent Novel N 0.001242652206949968 -0.2849237506709905 1.0 12037 +2956 MSH6 mutS homolog 6 Novel U 0.001241984973637892 -0.2849295033527161 1.0 12038 +118932 ANKRD22 ankyrin repeat domain 22 Novel U 0.001241955451663238 -0.2849297578821604 1.0 12039 +51204 TACO1 translational activator of cytochrome c oxidase I Novel N 0.001241829113304194 -0.28493084713288597 1.0 12040 +89887 ZNF628 zinc finger protein 628 Novel U 0.0012411126311725716 -0.28493702442288443 1.0 12041 +284252 KCTD1 potassium channel tetramerization domain containing 1 Novel U 0.0012402825198757402 -0.2849441813888229 1.0 12042 +10319 LAMC3 laminin subunit gamma 3 Novel N 0.001240255858565605 -0.2849444112544918 1.0 12043 +55761 TTC17 tetratricopeptide repeat domain 17 Novel U 0.001239833768771958 -0.2849480503837118 1.0 12044 +222235 FBXL13 F-box and leucine rich repeat protein 13 Novel U 0.0012395754402175672 -0.28495027761356845 1.0 12045 +5501 PPP1CC protein phosphatase 1 catalytic subunit gamma Novel N 0.0012393366932079376 -0.28495233601733 1.0 12046 +5320 PLA2G2A phospholipase A2 group IIA Novel U 0.001239326168069348 -0.2849524267618586 1.0 12047 +26747 NUFIP1 nuclear FMR1 interacting protein 1 Novel N 0.0012392658799126471 -0.2849529465479231 1.0 12048 +23264 ZC3H7B zinc finger CCCH-type containing 7B Novel N 0.001238627509105915 -0.2849584503859473 1.0 12049 +163126 EID2 EP300 interacting inhibitor of differentiation 2 Novel U 0.0012385931288940862 -0.2849587468016279 1.0 12050 +113230 MISP3 MISP family member 3 Novel U 0.0012383641660108807 -0.2849607208496412 1.0 12051 +84312 BRMS1L BRMS1 like transcriptional repressor Novel U 0.0012378169520019025 -0.2849654387616106 1.0 12052 +7572 ZNF24 zinc finger protein 24 Novel N 0.0012372952833472196 -0.28496993642934143 1.0 12053 +339761 CYP27C1 cytochrome P450 family 27 subfamily C member 1 Novel N 0.0012371793674913504 -0.28497093582042954 1.0 12054 +3263 HPX hemopexin Novel U 0.0012368887826597504 -0.2849734411540516 1.0 12055 +9391 CIAO1 cytosolic iron-sulfur assembly component 1 Novel N 0.001236547213388877 -0.28497638605992937 1.0 12056 +1876 E2F6 E2F transcription factor 6 Novel N 0.0012361810649434773 -0.2849795428799391 1.0 12057 +6522 SLC4A2 solute carrier family 4 member 2 Novel N 0.0012360702085750534 -0.28498049864967256 1.0 12058 +1960 EGR3 early growth response 3 Novel U 0.0012357879698786987 -0.2849829320254669 1.0 12059 +728062 CT47A6 cancer/testis antigen family 47 member A6 Novel U 0.0012351790072729902 -0.2849881823149684 1.0 12060 +285429 DCAF4L1 DDB1 and CUL4 associated factor 4 like 1 Novel U 0.0012344772950621324 -0.2849942322632234 1.0 12061 +165918 RNF168 ring finger protein 168 Novel U 0.0012342787187782124 -0.28499594432726305 1.0 12062 +100288413 ERVMER34-1 endogenous retrovirus group MER34 member 1, envelope Novel U 0.0012341317662045892 -0.2849972113074475 1.0 12063 +10395 DLC1 DLC1 Rho GTPase activating protein Novel U 0.00123394150710933 -0.2849988516632281 1.0 12064 +142686 ASB14 ankyrin repeat and SOCS box containing 14 Novel U 0.0012338964660921201 -0.28499923999311494 1.0 12065 +23313 KIAA0930 KIAA0930 Novel U 0.0012335197494727564 -0.2850024879286912 1.0 12066 +5533 PPP3CC protein phosphatase 3 catalytic subunit gamma Novel N 0.0012334351363986406 -0.28500321743676044 1.0 12067 +6278 S100A7 S100 calcium binding protein A7 Novel U 0.0012328243504874665 -0.2850084834462445 1.0 12068 +90317 ZNF616 zinc finger protein 616 Novel U 0.0012327842252744894 -0.28500882939356953 1.0 12069 +80169 CTC1 CST telomere replication complex component 1 Novel U 0.0012326304533576968 -0.28501015516804695 1.0 12070 +126308 MOB3A MOB kinase activator 3A Novel U 0.0012324431397848536 -0.2850117701284333 1.0 12071 +84243 ZDHHC18 zinc finger DHHC-type palmitoyltransferase 18 Novel U 0.0012323415464811297 -0.28501264603485343 1.0 12072 +8863 PER3 period circadian regulator 3 Novel N 0.0012322419128637588 -0.2850135050454567 1.0 12073 +135398 C6orf141 chromosome 6 open reading frame 141 Novel U 0.0012312949878875341 -0.2850216691432433 1.0 12074 +10975 UQCR11 ubiquinol-cytochrome c reductase, complex III subunit XI Novel N 0.0012310412268557074 -0.2850238569933162 1.0 12075 +51274 KLF3 KLF transcription factor 3 Novel N 0.001230427395543207 -0.28502914925931994 1.0 12076 +3891 KRT85 keratin 85 Novel N 0.001230011350949851 -0.28503273626867026 1.0 12077 +56159 TEX11 testis expressed 11 Novel N 0.0012299035801205248 -0.2850336654358284 1.0 12078 +4781 NFIB nuclear factor I B Novel N 0.0012293938176698065 -0.2850380604519069 1.0 12079 +5757 PTMA prothymosin alpha Novel N 0.0012292271786011242 -0.285039497163036 1.0 12080 +26576 SRPK3 SRSF protein kinase 3 Novel U 0.0012289485532470134 -0.28504189938569774 1.0 12081 +2012 EMP1 epithelial membrane protein 1 Novel N 0.0012285233981628025 -0.2850455649429162 1.0 12082 +563 AZGP1 alpha-2-glycoprotein 1, zinc-binding Novel N 0.0012273382434840165 -0.2850557829844008 1.0 12083 +54474 KRT20 keratin 20 Novel N 0.0012273337800824697 -0.2850558214664851 1.0 12084 +84632 AFAP1L2 actin filament associated protein 1 like 2 Novel U 0.0012272276283518198 -0.28505673667426923 1.0 12085 +54964 C1orf56 chromosome 1 open reading frame 56 Novel N 0.0012265866422239442 -0.28506226306079324 1.0 12086 +100532724 NPHP3-ACAD11 NPHP3-ACAD11 readthrough (NMD candidate) Novel U 0.0012262822692015308 -0.28506488727198315 1.0 12087 +100289255 TMEM238L transmembrane protein 238 like Novel N 0.0012260514212931442 -0.28506687757210747 1.0 12088 +225689 MAPK15 mitogen-activated protein kinase 15 Novel U 0.0012252570874219176 -0.2850737260760151 1.0 12089 +150763 GPAT2 glycerol-3-phosphate acyltransferase 2, mitochondrial Novel U 0.0012251943663561737 -0.28507426683787784 1.0 12090 +29901 SAC3D1 SAC3 domain containing 1 Novel U 0.00122499534005577 -0.2850759827818221 1.0 12091 +56138 PCDHA11 protocadherin alpha 11 Novel U 0.001224361628717831 -0.2850814464473303 1.0 12092 +51247 PAIP2 poly(A) binding protein interacting protein 2 Novel N 0.0012243491005379016 -0.2850815544614693 1.0 12093 +90853 SPOCD1 SPOC domain containing 1 Novel U 0.0012236651894410033 -0.2850874509339594 1.0 12094 +339804 C2orf74 chromosome 2 open reading frame 74 Novel U 0.0012233948287351923 -0.28508978190134887 1.0 12095 +6280 S100A9 S100 calcium binding protein A9 Novel U 0.0012231687662827627 -0.28509173094273427 1.0 12096 +9517 SPTLC2 serine palmitoyltransferase long chain base subunit 2 Novel U 0.0012227296367492472 -0.2850955169833844 1.0 12097 +6155 RPL27 ribosomal protein L27 Novel U 0.0012226106104005995 -0.2850965431921908 1.0 12098 +3742 KCNA6 potassium voltage-gated channel subfamily A member 6 Novel N 0.0012213937122610961 -0.2851070349160936 1.0 12099 +1434 CSE1L chromosome segregation 1 like Novel U 0.0012208853843752392 -0.28511141756379227 1.0 12100 +3096 HIVEP1 HIVEP zinc finger 1 Novel U 0.0012207777685198425 -0.28511234539481256 1.0 12101 +23481 PES1 pescadillo ribosomal biogenesis factor 1 Novel N 0.0012202438740120478 -0.285116948470113 1.0 12102 +203 AK1 adenylate kinase 1 Novel N 0.0012201459575658618 -0.28511779267579096 1.0 12103 +259282 BOD1L1 biorientation of chromosomes in cell division 1 like 1 Novel N 0.0012200796330317173 -0.28511836450565714 1.0 12104 +51506 UFC1 ubiquitin-fold modifier conjugating enzyme 1 Novel U 0.0012198134771172087 -0.2851206592206209 1.0 12105 +4666 NACA nascent polypeptide associated complex subunit alpha Novel U 0.001219649908155421 -0.28512206946222657 1.0 12106 +57680 CHD8 chromodomain helicase DNA binding protein 8 Novel U 0.0012195415878612527 -0.2851230033667027 1.0 12107 +5445 PON2 paraoxonase 2 Novel U 0.0012194622218666448 -0.2851236876360558 1.0 12108 +643037 C11orf97 chromosome 11 open reading frame 97 Novel U 0.0012192905909862118 -0.2851251673850605 1.0 12109 +22996 TTC39A tetratricopeptide repeat domain 39A Novel U 0.0012192721775707213 -0.2851253261399021 1.0 12110 +4675 NAP1L3 nucleosome assembly protein 1 like 3 Novel U 0.001219107141360989 -0.2851267490316712 1.0 12111 +126820 DNAI3 dynein axonemal intermediate chain 3 Novel U 0.0012188741394227368 -0.28512875790318276 1.0 12112 +79042 TSEN34 tRNA splicing endonuclease subunit 34 Novel N 0.0012186669044910343 -0.28513054461943776 1.0 12113 +64848 YTHDC2 YTH N6-methyladenosine RNA binding protein C2 Novel U 0.0012185707986094203 -0.2851313732149813 1.0 12114 +10687 PNMA2 PNMA family member 2 Novel U 0.0012184868284452891 -0.28513209718007704 1.0 12115 +728072 CT47A5 cancer/testis antigen family 47 member A5 Novel U 0.0012184776547117307 -0.2851321762732045 1.0 12116 +53345 TM6SF2 transmembrane 6 superfamily member 2 Novel N 0.001218347764125062 -0.2851332961501512 1.0 12117 +79683 ZDHHC14 zinc finger DHHC-type palmitoyltransferase 14 Novel N 0.001218112435378462 -0.28513532508269335 1.0 12118 +124857 WFIKKN2 WAP, follistatin/kazal, immunoglobulin, kunitz and netrin domain containing 2 Novel U 0.0012175161866313123 -0.2851404657571915 1.0 12119 +414152 C10orf105 chromosome 10 open reading frame 105 Novel U 0.0012174588678563413 -0.285140959942154 1.0 12120 +196385 DNAH10 dynein axonemal heavy chain 10 Novel N 0.0012167075596805125 -0.28514743749166355 1.0 12121 +100129842 ZNF737 zinc finger protein 737 Novel U 0.001216552548769215 -0.28514877394837307 1.0 12122 +51099 ABHD5 abhydrolase domain containing 5, lysophosphatidic acid acyltransferase Novel U 0.0012164633155401735 -0.28514954329000625 1.0 12123 +107986818 FAM237B family with sequence similarity 237 member B Novel U 0.0012159753492133481 -0.2851537503865649 1.0 12124 +55033 FKBP14 FKBP prolyl isomerase 14 Novel U 0.001214899440379647 -0.2851630265437562 1.0 12125 +83756 TAS1R3 taste 1 receptor member 3 Novel N 0.0012147463416587443 -0.28516434651414435 1.0 12126 +340168 DPPA5 developmental pluripotency associated 5 Novel U 0.0012144757674115178 -0.28516667932262274 1.0 12127 +337876 CHSY3 chondroitin sulfate synthase 3 Novel N 0.0012140554827772634 -0.28517030288831 1.0 12128 +8704 B4GALT2 beta-1,4-galactosyltransferase 2 Novel U 0.0012140342549492996 -0.28517048590815597 1.0 12129 +3185 HNRNPF heterogeneous nuclear ribonucleoprotein F Novel N 0.0012124274742339376 -0.2851843390804888 1.0 12130 +256051 ZNF549 zinc finger protein 549 Novel U 0.0012121706089780122 -0.28518655369423335 1.0 12131 +7545 ZIC1 Zic family member 1 Novel U 0.001211982109759162 -0.28518817887689724 1.0 12132 +60314 MYG1 MYG1 exonuclease Novel U 0.0012118476676227425 -0.28518933799591506 1.0 12133 +11093 ADAMTS13 ADAM metallopeptidase with thrombospondin type 1 motif 13 Novel U 0.0012108401820724295 -0.2851980242284656 1.0 12134 +342945 ZSCAN22 zinc finger and SCAN domain containing 22 Novel U 0.001210233090585327 -0.2852032583857542 1.0 12135 +8419 BFSP2 beaded filament structural protein 2 Novel N 0.0012101659907838445 -0.2852038368997385 1.0 12136 +114971 PTPMT1 protein tyrosine phosphatase mitochondrial 1 Novel N 0.0012101110752964397 -0.28520431036428995 1.0 12137 +83987 CCDC8 coiled-coil domain containing 8 Novel U 0.0012096979460003293 -0.28520787223883826 1.0 12138 +5833 PCYT2 phosphate cytidylyltransferase 2, ethanolamine Novel U 0.0012096517682984146 -0.2852082703688733 1.0 12139 +84329 HVCN1 hydrogen voltage gated channel 1 Novel U 0.0012096056788772713 -0.2852086677377786 1.0 12140 +78986 DUSP26 dual specificity phosphatase 26 Novel U 0.0012095815970689524 -0.2852088753637711 1.0 12141 +9145 SYNGR1 synaptogyrin 1 Novel U 0.001208860620620364 -0.28521509140239704 1.0 12142 +89822 KCNK17 potassium two pore domain channel subfamily K member 17 Novel N 0.0012086560625712353 -0.28521685503938843 1.0 12143 +23774 BRD1 bromodomain containing 1 Novel U 0.0012084578221178163 -0.2852185642080001 1.0 12144 +751071 CSKMT citrate synthase lysine methyltransferase Novel N 0.0012084375985659881 -0.28521873856928415 1.0 12145 +112611 RWDD2A RWD domain containing 2A Novel U 0.001207867215963501 -0.2852236562337871 1.0 12146 +55154 MSTO1 misato mitochondrial distribution and morphology regulator 1 Novel U 0.001207515383898195 -0.2852266896223424 1.0 12147 +158584 FAAH2 fatty acid amide hydrolase 2 Novel N 0.001207212915635227 -0.2852292974112784 1.0 12148 +6651 SON SON DNA and RNA binding protein Novel U 0.0012066488839584612 -0.28523416032004045 1.0 12149 +8820 HESX1 HESX homeobox 1 Novel U 0.0012064612406299177 -0.28523577812347967 1.0 12150 +27430 MAT2B methionine adenosyltransferase 2 non-catalytic beta subunit Novel N 0.0012062099930807838 -0.28523794430307287 1.0 12151 +29028 ATAD2 ATPase family AAA domain containing 2 Novel N 0.0012052980348842965 -0.28524580692796964 1.0 12152 +136332 LRGUK leucine rich repeats and guanylate kinase domain containing Novel U 0.0012047236443601958 -0.285250759147548 1.0 12153 +100271715 ARHGEF33 Rho guanine nucleotide exchange factor 33 Novel U 0.00120455530167075 -0.2852522105467748 1.0 12154 +11179 ZNF277 zinc finger protein 277 Novel U 0.001204540532882897 -0.28525233787875065 1.0 12155 +10781 ZNF266 zinc finger protein 266 Novel U 0.0012041725640354192 -0.2852555103937108 1.0 12156 +11083 DIDO1 death inducer-obliterator 1 Novel U 0.0012040914351093483 -0.28525620986252026 1.0 12157 +10165 SLC25A13 solute carrier family 25 member 13 Novel U 0.0012040463859960616 -0.28525659826220906 1.0 12158 +79845 RNF122 ring finger protein 122 Novel U 0.0012040256303793642 -0.2852567772107938 1.0 12159 +6781 STC1 stanniocalcin 1 Novel U 0.0012040027441319022 -0.2852569745290259 1.0 12160 +89886 SLAMF9 SLAM family member 9 Novel U 0.0012035537564446365 -0.2852608455636652 1.0 12161 +80227 PAAF1 proteasomal ATPase associated factor 1 Novel U 0.0012030904748446566 -0.28526483983605216 1.0 12162 +8515 ITGA10 integrin subunit alpha 10 Novel N 0.00120227422550355 -0.2852718772884442 1.0 12163 +55214 P3H2 prolyl 3-hydroxylase 2 Novel N 0.0012015317781141214 -0.2852782784429611 1.0 12164 +58509 CACTIN cactin, spliceosome C complex subunit Novel U 0.001201373099701157 -0.28527964651974924 1.0 12165 +221908 PPP1R35 protein phosphatase 1 regulatory subunit 35 Novel U 0.0012009783739850134 -0.2852830497242548 1.0 12166 +79923 NANOG Nanog homeobox Novel N 0.0012008990474737336 -0.2852837336531947 1.0 12167 +128706665 LOC128706665 uncharacterized LOC128706665 Novel U 0.001200517072523814 -0.2852870269244902 1.0 12168 +1622 DBI diazepam binding inhibitor, acyl-CoA binding protein Novel U 0.0012004304433094722 -0.28528777381510434 1.0 12169 +643418 LIPN lipase family member N Novel U 0.0012002251502249302 -0.28528954378934646 1.0 12170 +79607 FAM118B family with sequence similarity 118 member B Novel U 0.0011988258802700209 -0.2853016078673131 1.0 12171 +284106 CISD3 CDGSH iron sulfur domain 3 Novel N 0.0011986728167576318 -0.2853029275341443 1.0 12172 +79071 ELOVL6 ELOVL fatty acid elongase 6 Novel N 0.001198199509256642 -0.285307008246786 1.0 12173 +518 ATP5MC3 ATP synthase membrane subunit c locus 3 Novel N 0.0011978494226814922 -0.2853100265862586 1.0 12174 +6664 SOX11 SRY-box transcription factor 11 Novel U 0.0011973214489229517 -0.2853145786146682 1.0 12175 +6426 SRSF1 serine and arginine rich splicing factor 1 Novel N 0.0011969020882034082 -0.2853181942146451 1.0 12176 +4018 LPA lipoprotein(a) Novel N 0.0011968582040970707 -0.28531857257000004 1.0 12177 +339324 ZNF260 zinc finger protein 260 Novel U 0.0011964808464806458 -0.285321826032057 1.0 12178 +1797 DXO decapping exoribonuclease Novel N 0.0011959412579656337 -0.2853264781993477 1.0 12179 +51412 ACTL6B actin like 6B Novel U 0.0011957430708441938 -0.28532818690814743 1.0 12180 +2873 GPS1 G protein pathway suppressor 1 Novel N 0.0011950948173627255 -0.28533377595157333 1.0 12181 +5902 RANBP1 RAN binding protein 1 Novel N 0.001195041762967081 -0.2853342333703604 1.0 12182 +647589 ANHX anomalous homeobox Novel U 0.0011948223653064454 -0.28533612494994753 1.0 12183 +580 BARD1 BRCA1 associated RING domain 1 Novel U 0.0011946714312786307 -0.28533742625701336 1.0 12184 +58506 SCAF1 SR-related CTD associated factor 1 Novel U 0.0011943839586091899 -0.2853399047585243 1.0 12185 +56006 SMG9 SMG9 nonsense mediated mRNA decay factor Novel U 0.0011929421624847472 -0.2853523354841297 1.0 12186 +343 AQP8 aquaporin 8 Novel N 0.0011929287142808667 -0.2853524514304341 1.0 12187 +79957 PAQR6 progestin and adipoQ receptor family member 6 Novel U 0.0011923616740351914 -0.28535734027815796 1.0 12188 +79644 SRD5A3 steroid 5 alpha-reductase 3 Novel U 0.001191851865896199 -0.28536173568814677 1.0 12189 +158724 FAM47A family with sequence similarity 47 member A Novel U 0.0011917673639258474 -0.2853624642383133 1.0 12190 +22992 KDM2A lysine demethylase 2A Novel N 0.0011916618468733454 -0.2853633739740964 1.0 12191 +23038 WDTC1 WD and tetratricopeptide repeats 1 Novel U 0.0011915013717737537 -0.2853647575413676 1.0 12192 +56955 MEPE matrix extracellular phosphoglycoprotein Novel N 0.0011904426289260613 -0.285373885698673 1.0 12193 +10471 PFDN6 prefoldin subunit 6 Novel U 0.0011898613849185488 -0.2853788970068911 1.0 12194 +57057 TBX20 T-box transcription factor 20 Novel U 0.001189813751657628 -0.28537930768631115 1.0 12195 +8804 CREG1 cellular repressor of E1A stimulated genes 1 Novel N 0.0011897695646874526 -0.2853796886528655 1.0 12196 +5432 POLR2C RNA polymerase II subunit C Novel N 0.001189741212377351 -0.28537993309781934 1.0 12197 +653308 ASAH2B N-acylsphingosine amidohydrolase 2B Novel U 0.0011897402594098075 -0.2853799413140143 1.0 12198 +79841 AGBL2 AGBL carboxypeptidase 2 Novel U 0.0011895826484973832 -0.285381300187139 1.0 12199 +4222 MEOX1 mesenchyme homeobox 1 Novel U 0.0011893847686880417 -0.2853830062463877 1.0 12200 +162540 SPPL2C signal peptide peptidase like 2C Novel N 0.0011892270693786029 -0.28538436588164434 1.0 12201 +1010 CDH12 cadherin 12 Novel U 0.0011884185609939372 -0.2853913365938755 1.0 12202 +200407 CREG2 cellular repressor of E1A stimulated genes 2 Novel U 0.0011883470104846932 -0.285391953480502 1.0 12203 +147841 SPC24 SPC24 component of NDC80 kinetochore complex Novel U 0.0011882581489141978 -0.28539271961780877 1.0 12204 +5525 PPP2R5A protein phosphatase 2 regulatory subunit B'alpha Novel U 0.0011881193260540174 -0.2853939165060882 1.0 12205 +10116 FEM1B fem-1 homolog B Novel U 0.0011877000598889047 -0.2853975312908457 1.0 12206 +642658 SCX scleraxis bHLH transcription factor Novel N 0.0011876285250023715 -0.285398148042778 1.0 12207 +642623 UBTFL1 upstream binding transcription factor like 1 Novel U 0.0011872142737641776 -0.28540171959036814 1.0 12208 +57623 ZFAT zinc finger and AT-hook domain containing Novel U 0.0011870738636382012 -0.2854029301635682 1.0 12209 +57084 SLC17A6 solute carrier family 17 member 6 Novel U 0.001186674061927636 -0.28540637713174655 1.0 12210 +10227 MFSD10 major facilitator superfamily domain containing 10 Novel N 0.0011865534281799974 -0.2854074171990558 1.0 12211 +221749 PXDC1 PX domain containing 1 Novel U 0.0011864511501969862 -0.28540829900857156 1.0 12212 +10056 FARSB phenylalanyl-tRNA synthetase subunit beta Novel U 0.0011864451914541598 -0.28540835038303136 1.0 12213 +100506049 LRRC72 leucine rich repeat containing 72 Novel U 0.0011862970333726885 -0.2854096277567361 1.0 12214 +27299 ADAMDEC1 ADAM like decysin 1 Novel U 0.0011860286200673581 -0.28541194193423375 1.0 12215 +340596 LHFPL1 LHFPL tetraspan subfamily member 1 Novel U 0.0011852610672299316 -0.2854185595402517 1.0 12216 +64860 ARMCX5 armadillo repeat containing X-linked 5 Novel U 0.001184677337475106 -0.28542359227982345 1.0 12217 +9787 DLGAP5 DLG associated protein 5 Novel U 0.0011845790906666607 -0.2854244393337839 1.0 12218 +25800 SLC39A6 solute carrier family 39 member 6 Novel U 0.0011832843022722076 -0.2854356026036635 1.0 12219 +93664 CADPS2 calcium dependent secretion activator 2 Novel U 0.0011830473020860179 -0.28543764594684706 1.0 12220 +55450 CAMK2N1 calcium/calmodulin dependent protein kinase II inhibitor 1 Novel U 0.0011828199867363106 -0.2854396057903299 1.0 12221 +9422 ZNF264 zinc finger protein 264 Novel U 0.001182489123650683 -0.2854424583907501 1.0 12222 +124976 SPNS2 SPNS lysolipid transporter 2, sphingosine-1-phosphate Novel N 0.00118181268791761 -0.28544829041293757 1.0 12223 +645426 TMEM191C transmembrane protein 191C Novel U 0.0011812091015070685 -0.2854534943505272 1.0 12224 +27443 CECR2 CECR2 histone acetyl-lysine reader Novel U 0.001181040206110922 -0.28545495051502223 1.0 12225 +26045 LRRTM2 leucine rich repeat transmembrane neuronal 2 Novel U 0.0011809545149195962 -0.2854556893182886 1.0 12226 +610 HCN2 hyperpolarization activated cyclic nucleotide gated potassium and sodium channel 2 Novel U 0.001180823813342651 -0.28545681618734564 1.0 12227 +55596 ZCCHC8 zinc finger CCHC-type containing 8 Novel N 0.0011805580092902833 -0.2854591078686616 1.0 12228 +140032 RPS4Y2 ribosomal protein S4 Y-linked 2 Novel N 0.0011805521759124644 -0.2854591581622626 1.0 12229 +51755 CDK12 cyclin dependent kinase 12 Novel U 0.0011804689254649448 -0.2854598759221817 1.0 12230 +9725 TMEM63A transmembrane protein 63A Novel N 0.0011803379403690062 -0.2854610052356528 1.0 12231 +83892 KCTD10 potassium channel tetramerization domain containing 10 Novel U 0.0011798271336956308 -0.2854654092547 1.0 12232 +91869 RFT1 RFT1 homolog Novel N 0.0011793615891830375 -0.28546942303722794 1.0 12233 +144608 C12orf60 chromosome 12 open reading frame 60 Novel U 0.0011792598224580578 -0.2854703004388332 1.0 12234 +122953 JDP2 Jun dimerization protein 2 Novel N 0.0011791173237012582 -0.28547152901956996 1.0 12235 +9169 SCAF11 SR-related CTD associated factor 11 Novel N 0.0011789479554762212 -0.28547298926065123 1.0 12236 +2677 GGCX gamma-glutamyl carboxylase Novel U 0.0011788318625047967 -0.2854739901787755 1.0 12237 +4958 OMD osteomodulin Novel U 0.0011786620744506963 -0.28547545403949465 1.0 12238 +110806298 C17orf113 chromosome 17 open reading frame 113 Novel U 0.001178352967282995 -0.28547811906703857 1.0 12239 +130752 MDH1B malate dehydrogenase 1B Novel U 0.0011779161607700416 -0.28548188507931527 1.0 12240 +5651 TMPRSS15 transmembrane serine protease 15 Novel U 0.0011771497195128548 -0.28548849310162805 1.0 12241 +7857 SCG2 secretogranin II Novel U 0.001176857393191595 -0.2854910134498418 1.0 12242 +4946 OAZ1 ornithine decarboxylase antizyme 1 Novel U 0.0011763076937530848 -0.28549575279042516 1.0 12243 +23165 NUP205 nucleoporin 205 Novel U 0.001176145514295782 -0.28549715105214774 1.0 12244 +105378220 MARCOL MARCO like Novel U 0.0011761408021946662 -0.2854971916784437 1.0 12245 +8518 ELP1 elongator acetyltransferase complex subunit 1 Novel U 0.0011760367924013638 -0.2854980884190985 1.0 12246 +2167 FABP4 fatty acid binding protein 4 Novel U 0.0011756154094128082 -0.28550172145446095 1.0 12247 +7516 XRCC2 X-ray repair cross complementing 2 Novel U 0.0011755217616730505 -0.28550252885665656 1.0 12248 +79879 CCDC134 coiled-coil domain containing 134 Novel N 0.0011752586832072137 -0.28550479703879833 1.0 12249 +124512 METTL23 methyltransferase 23, arginine Novel N 0.0011748010751639528 -0.2855087423955129 1.0 12250 +4125 MAN2B1 mannosidase alpha class 2B member 1 Novel U 0.0011746310807782977 -0.28551020803515964 1.0 12251 +10944 C11orf58 chromosome 11 open reading frame 58 Novel U 0.0011741132602348999 -0.2855146725256508 1.0 12252 +319 APOF apolipoprotein F Novel N 0.0011740661970080428 -0.28551507829041134 1.0 12253 +54952 TRNAU1AP tRNA selenocysteine 1 associated protein 1 Novel U 0.001173981464386263 -0.28551580882918404 1.0 12254 +4241 MELTF melanotransferrin Novel U 0.0011737023498316313 -0.28551821526958304 1.0 12255 +126068 ZNF441 zinc finger protein 441 Novel U 0.0011736750104888928 -0.2855184509810419 1.0 12256 +260434 PYDC1 pyrin domain containing 1 Novel U 0.0011734699786206595 -0.2855202187031568 1.0 12257 +64919 BCL11B BCL11 transcription factor B Novel U 0.001172975542986052 -0.2855244815761103 1.0 12258 +84154 RPF2 ribosome production factor 2 homolog Novel N 0.0011728364453391401 -0.285525680833517 1.0 12259 +541578 EOLA2 endothelium and lymphocyte associated ASCH domain 2 Novel U 0.0011717589955236626 -0.28553497027658226 1.0 12260 +27344 PCSK1N proprotein convertase subtilisin/kexin type 1 inhibitor Novel U 0.001171114907736554 -0.2855405234046644 1.0 12261 +9720 CCDC144A coiled-coil domain containing 144A Novel U 0.001170499672856709 -0.2855458277717969 1.0 12262 +9194 SLC16A7 solute carrier family 16 member 7 Novel N 0.001170481546082801 -0.2855459840553024 1.0 12263 +79713 IGFLR1 IGF like family receptor 1 Novel U 0.0011702385195977896 -0.28554807935539284 1.0 12264 +27158 NDOR1 NADPH dependent diflavin oxidoreductase 1 Novel N 0.0011696410309559979 -0.28555323071988364 1.0 12265 +51334 PRR16 proline rich 16 Novel U 0.0011695576978702324 -0.2855539491922845 1.0 12266 +22916 NCBP2 nuclear cap binding protein subunit 2 Novel N 0.001169263745331994 -0.2855564835612441 1.0 12267 +6601 SMARCC2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin subfamily c member 2 Novel U 0.001169204885891674 -0.28555699102935245 1.0 12268 +391002 PRAMEF8 PRAME family member 8 Novel U 0.0011690778550037845 -0.2855580862508501 1.0 12269 +5940 RBMY1A1 RNA binding motif protein Y-linked family 1 member A1 Novel N 0.0011688775258493565 -0.28555981342760367 1.0 12270 +55621 TRMT1 tRNA methyltransferase 1 Novel U 0.0011688545617764333 -0.2855600114168231 1.0 12271 +199720 GGN gametogenetin Novel N 0.0011688021680846148 -0.2855604631392237 1.0 12272 +261729 STEAP2 STEAP2 metalloreductase Novel U 0.0011687887949687354 -0.28556057843814225 1.0 12273 +79668 PARP8 poly(ADP-ribose) polymerase family member 8 Novel N 0.0011686741740446255 -0.28556156666472443 1.0 12274 +51250 MTRES1 mitochondrial transcription rescue factor 1 Novel U 0.0011680784780002578 -0.28556670257398803 1.0 12275 +64063 PRSS22 serine protease 22 Novel N 0.0011679993842985516 -0.2855673844957149 1.0 12276 +79750 ZNF385D zinc finger protein 385D Novel U 0.0011673375848746835 -0.28557309032811695 1.0 12277 +285386 TPRG1 tumor protein p63 regulated 1 Novel U 0.0011670698011370718 -0.2855753990776741 1.0 12278 +221421 RSPH9 radial spoke head component 9 Novel N 0.0011667756409638624 -0.285577935236799 1.0 12279 +395 ARHGAP6 Rho GTPase activating protein 6 Novel U 0.0011664879876509145 -0.285580415295763 1.0 12280 +116328 C8orf34 chromosome 8 open reading frame 34 Novel U 0.001166189588833488 -0.2855829879991831 1.0 12281 +10629 TAF6L TATA-box binding protein associated factor 6 like Novel N 0.0011661755507192185 -0.28558310903151457 1.0 12282 +8883 NAE1 NEDD8 activating enzyme E1 subunit 1 Novel U 0.0011660649504297732 -0.2855840625934133 1.0 12283 +4784 NFIX nuclear factor I X Novel U 0.0011656698514473844 -0.2855874690161063 1.0 12284 +57476 GRAMD1B GRAM domain containing 1B Novel U 0.0011655366761602075 -0.2855886172127371 1.0 12285 +57002 YAE1 YAE1 maturation factor of ABCE1 Novel N 0.0011651757273020967 -0.28559172920349407 1.0 12286 +4831 NME2 NME/NM23 nucleoside diphosphate kinase 2 Novel N 0.0011645617096296443 -0.2855970230762364 1.0 12287 +4126 MANBA mannosidase beta Novel N 0.0011637929355162763 -0.2856036512117222 1.0 12288 +147948 ZNF582 zinc finger protein 582 Novel U 0.0011637259478921812 -0.28560422875854735 1.0 12289 +79413 ZBED2 zinc finger BED-type containing 2 Novel N 0.0011632281248441317 -0.28560852083674443 1.0 12290 +1738 DLD dihydrolipoamide dehydrogenase Novel N 0.0011630319541820874 -0.2856102121602473 1.0 12291 +122665 RNASE8 ribonuclease A family member 8 Novel N 0.0011626958901861837 -0.2856131096013266 1.0 12292 +154664 ABCA13 ATP binding cassette subfamily A member 13 Novel N 0.0011619712718565832 -0.2856193570391378 1.0 12293 +2946 GSTM2 glutathione S-transferase mu 2 Novel U 0.001161954089347796 -0.28561950518147805 1.0 12294 +5890 RAD51B RAD51 paralog B Novel U 0.0011618648537061488 -0.285620274543912 1.0 12295 +51126 NAA20 N-alpha-acetyltransferase 20, NatB catalytic subunit Novel U 0.0011616271709480428 -0.28562232377202196 1.0 12296 +348327 ZNF530 zinc finger protein 530 Novel U 0.0011611816478009583 -0.2856261649364546 1.0 12297 +1628 DBP D-box binding PAR bZIP transcription factor Novel N 0.001160999169094166 -0.2856277382121033 1.0 12298 +201626 PDE12 phosphodiesterase 12 Novel U 0.0011609587059211533 -0.2856280870732164 1.0 12299 +54749 EPDR1 ependymin related 1 Novel U 0.0011605122837347757 -0.28563193598889103 1.0 12300 +4298 MLLT1 MLLT1 super elongation complex subunit Novel U 0.0011604661703215227 -0.28563233356464895 1.0 12301 +23205 ACSBG1 acyl-CoA synthetase bubblegum family member 1 Novel N 0.0011600869102157535 -0.2856356034293877 1.0 12302 +255743 NPNT nephronectin Novel U 0.0011597157867507927 -0.28563880314249585 1.0 12303 +84444 DOT1L DOT1 like histone lysine methyltransferase Novel U 0.0011596627054638966 -0.2856392607931311 1.0 12304 +79836 LONRF3 LON peptidase N-terminal domain and ring finger 3 Novel U 0.0011594878976131802 -0.28564076793300275 1.0 12305 +10322 SMYD5 SMYD family member 5 Novel N 0.0011590605256647896 -0.28564445260334675 1.0 12306 +22990 PCNX1 pecanex 1 Novel U 0.0011588997311629367 -0.2856458389244067 1.0 12307 +55183 RIF1 replication timing regulatory factor 1 Novel U 0.0011585395311503187 -0.28564894445884664 1.0 12308 +4512 COX1 cytochrome c oxidase subunit I Novel U 0.001158431646950008 -0.2856498746034548 1.0 12309 +60506 NYX nyctalopin Novel U 0.001158159167484282 -0.28565222383814487 1.0 12310 +730087 ZNF726 zinc finger protein 726 Novel U 0.0011580138286361344 -0.2856534769052815 1.0 12311 +84667 HES7 hes family bHLH transcription factor 7 Novel U 0.0011571905304997923 -0.2856605751302321 1.0 12312 +114134 SLC2A13 solute carrier family 2 member 13 Novel N 0.0011571730869133017 -0.28566072552350447 1.0 12313 +1995 ELAVL3 ELAV like RNA binding protein 3 Novel U 0.0011570609714483264 -0.2856616921487836 1.0 12314 +56169 GSDMC gasdermin C Novel U 0.001156455436325154 -0.285666912887578 1.0 12315 +100526740 ATP5MF-PTCD1 ATP5MF-PTCD1 readthrough Novel U 0.0011561489718788722 -0.28566955513038544 1.0 12316 +2639 GCDH glutaryl-CoA dehydrogenase Novel N 0.0011558570790225074 -0.2856720717413973 1.0 12317 +6597 SMARCA4 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 4 Novel U 0.00115575915597768 -0.28567291600396677 1.0 12318 +6101 RP1 RP1 axonemal microtubule associated Novel N 0.0011554473700296504 -0.28567560412713616 1.0 12319 +283600 SLC25A47 solute carrier family 25 member 47 Novel U 0.0011548312965275584 -0.28568091572461335 1.0 12320 +400757 C1orf141 chromosome 1 open reading frame 141 Novel U 0.0011545278733706235 -0.28568353174635336 1.0 12321 +54942 ABITRAM actin binding transcription modulator Novel U 0.001154472617694441 -0.28568400814390854 1.0 12322 +79446 WDR25 WD repeat domain 25 Novel U 0.001154254366605118 -0.2856858898381082 1.0 12323 +9477 MED20 mediator complex subunit 20 Novel N 0.0011542398468041744 -0.285686015023395 1.0 12324 +4759 NEU2 neuraminidase 2 Novel N 0.0011542094675776498 -0.28568627694380294 1.0 12325 +57412 AS3MT arsenite methyltransferase Novel N 0.0011531524855723533 -0.28569538991966337 1.0 12326 +110599564 EEF1AKMT4 EEF1A lysine methyltransferase 4 Novel U 0.0011530445081466467 -0.28569632086803237 1.0 12327 +254228 CALHM5 calcium homeostasis modulator family member 5 Novel U 0.0011529837998148428 -0.28569684427671815 1.0 12328 +23171 GPD1L glycerol-3-phosphate dehydrogenase 1 like Novel U 0.001152533869311892 -0.2857007234400262 1.0 12329 +2170 FABP3 fatty acid binding protein 3 Novel N 0.0011525271510066605 -0.285700781363201 1.0 12330 +387804 VSTM5 V-set and transmembrane domain containing 5 Novel U 0.0011518994040093044 -0.2857061936059872 1.0 12331 +55857 KIZ kizuna centrosomal protein Novel N 0.0011517641992878872 -0.28570735929977986 1.0 12332 +100509620 AQP7B aquaporin 7B Novel U 0.0011514193340690518 -0.2857103326223138 1.0 12333 +8929 PHOX2B paired like homeobox 2B Novel U 0.0011513664942726367 -0.28571078819089185 1.0 12334 +2794 GNL1 G protein nucleolar 1 (putative) Novel N 0.001151157168474112 -0.2857125929339616 1.0 12335 +55157 DARS2 aspartyl-tRNA synthetase 2, mitochondrial Novel N 0.0011510786166084135 -0.285713270184144 1.0 12336 +339983 NAT8L N-acetyltransferase 8 like Novel N 0.0011504432528755156 -0.28571874809609665 1.0 12337 +153339 TMEM167A transmembrane protein 167A Novel U 0.0011499142437907403 -0.28572330905077264 1.0 12338 +25976 TIPARP TCDD inducible poly(ADP-ribose) polymerase Novel U 0.001148944468308551 -0.2857316701586391 1.0 12339 +10086 HHLA1 HHLA1 neighbor of OC90 Novel U 0.0011485313959174572 -0.2857352315425697 1.0 12340 +10178 TENM1 teneurin transmembrane protein 1 Novel N 0.001148409614194559 -0.2857362815073709 1.0 12341 +114900 C1QTNF4 C1q and TNF related 4 Novel U 0.001147866578474559 -0.28574096339540955 1.0 12342 +100533106 ZHX1-C8orf76 ZHX1-C8orf76 readthrough Novel U 0.0011473623184265328 -0.28574531097145345 1.0 12343 +101059915 LOC101059915 chromosome X open reading frame 49-like Novel U 0.0011471374279793298 -0.2857472499081679 1.0 12344 +429 ASCL1 achaete-scute family bHLH transcription factor 1 Novel U 0.0011470947560368481 -0.28574761781261643 1.0 12345 +79786 KLHL36 kelch like family member 36 Novel U 0.0011470300579908476 -0.2857481756193988 1.0 12346 +256957 HEATR9 HEAT repeat containing 9 Novel U 0.0011469873727038935 -0.28574854363889934 1.0 12347 +145781 GCOM1 GCOM1, MYZAP-POLR2M combined locus Novel U 0.0011467665876278917 -0.28575044718035775 1.0 12348 +2315 MLANA melan-A Novel U 0.0011467532666146994 -0.2857505620300629 1.0 12349 +10797 MTHFD2 methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 2, methenyltetrahydrofolate cyclohydrolase Novel N 0.001146671144467902 -0.285751270062118 1.0 12350 +55806 HR HR lysine demethylase and nuclear receptor corepressor Novel U 0.0011462230852357855 -0.28575513309190076 1.0 12351 +27010 TPK1 thiamin pyrophosphokinase 1 Novel N 0.0011458576806728782 -0.28575828349838295 1.0 12352 +286053 NSMCE2 NSE2 (MMS21) homolog, SMC5-SMC6 complex SUMO ligase Novel U 0.0011456401265675488 -0.2857601591833996 1.0 12353 +10200 MPHOSPH6 M-phase phosphoprotein 6 Novel N 0.0011454572776858835 -0.28576173565058294 1.0 12354 +79809 TTC21B tetratricopeptide repeat domain 21B Novel U 0.001145448836469795 -0.28576180842816856 1.0 12355 +9918 NCAPD2 non-SMC condensin I complex subunit D2 Novel U 0.0011454011992370929 -0.28576221914183214 1.0 12356 +222236 NAPEPLD N-acyl phosphatidylethanolamine phospholipase D Novel U 0.0011451249717511754 -0.28576460069080695 1.0 12357 +8642 DCHS1 dachsous cadherin-related 1 Novel U 0.0011444458108861414 -0.2857704562082494 1.0 12358 +55269 PSPC1 paraspeckle component 1 Novel U 0.0011441448506472431 -0.28577305099546274 1.0 12359 +79858 NEK11 NIMA related kinase 11 Novel N 0.0011440231945764592 -0.28577409987692975 1.0 12360 +255275 MYADML2 myeloid associated differentiation marker like 2 Novel U 0.0011437823443694844 -0.28577617641381603 1.0 12361 +56259 CTNNBL1 catenin beta like 1 Novel U 0.0011437045068822744 -0.28577684750484544 1.0 12362 +219749 ZNF25 zinc finger protein 25 Novel U 0.0011436873556024169 -0.28577699537793927 1.0 12363 +25875 LETMD1 LETM1 domain containing 1 Novel U 0.001143502591246095 -0.2857785883597598 1.0 12364 +29118 DDX25 DEAD-box helicase 25 Novel U 0.0011432509457943473 -0.2857807579699478 1.0 12365 +540 ATP7B ATPase copper transporting beta Novel U 0.0011430996298853885 -0.28578206256947614 1.0 12366 +27241 BBS9 Bardet-Biedl syndrome 9 Novel U 0.001142990229266721 -0.28578300578818 1.0 12367 +51179 HAO2 hydroxyacid oxidase 2 Novel N 0.0011424204576758702 -0.2857879181847273 1.0 12368 +255877 BCL6B BCL6B transcription repressor Novel U 0.0011422611349740921 -0.2857892918163767 1.0 12369 +116159 CYYR1 cysteine and tyrosine rich 1 Novel U 0.0011413098092277103 -0.28579749385625886 1.0 12370 +51264 MRPL27 mitochondrial ribosomal protein L27 Novel U 0.001140562732835313 -0.28580393492062484 1.0 12371 +647087 STMP1 short transmembrane mitochondrial protein 1 Novel N 0.001140555263502251 -0.2858039993189321 1.0 12372 +169436 STKLD1 serine/threonine kinase like domain containing 1 Novel U 0.0011402805901876984 -0.2858063674683163 1.0 12373 +60495 HPSE2 heparanase 2 (inactive) Novel N 0.0011390175904168259 -0.28581725666639723 1.0 12374 +8668 EIF3I eukaryotic translation initiation factor 3 subunit I Novel N 0.001138859809568952 -0.28581861700465344 1.0 12375 +51318 MRPL35 mitochondrial ribosomal protein L35 Novel U 0.0011388425717701212 -0.2858187656236875 1.0 12376 +5075 PAX1 paired box 1 Novel U 0.0011385535693185227 -0.2858212573145127 1.0 12377 +1103 CHAT choline O-acetyltransferase Novel U 0.0011374674961328447 -0.2858306211056408 1.0 12378 +126133 ALDH16A1 aldehyde dehydrogenase 16 family member A1 Novel U 0.0011374438873221209 -0.28583082465359255 1.0 12379 +164091 PAQR7 progestin and adipoQ receptor family member 7 Novel U 0.0011373870018017626 -0.2858313151031661 1.0 12380 +126402 TEKTL1 tektin like 1 Novel U 0.0011364799650643268 -0.28583913529674687 1.0 12381 +3769 KCNJ13 potassium inwardly rectifying channel subfamily J member 13 Novel N 0.0011362699537106184 -0.28584094595046394 1.0 12382 +7566 ZNF18 zinc finger protein 18 Novel U 0.0011361298685100478 -0.28584215372225646 1.0 12383 +6125 RPL5 ribosomal protein L5 Novel U 0.0011357402992605505 -0.28584551246928225 1.0 12384 +112268293 TMA7B translation machinery associated 7 homolog B Novel U 0.001135684567114457 -0.28584599297481544 1.0 12385 +130367 SGPP2 sphingosine-1-phosphate phosphatase 2 Novel N 0.0011354488012363067 -0.2858480256761723 1.0 12386 +390637 GDPGP1 GDP-D-glucose phosphorylase 1 Novel N 0.0011349834879727614 -0.2858520374649416 1.0 12387 +266629 SEC14L3 SEC14 like lipid binding 3 Novel U 0.0011348498527088506 -0.2858531896273512 1.0 12388 +51557 LGSN lengsin, lens protein with glutamine synthetase domain Novel U 0.0011348386332831074 -0.28585328635781154 1.0 12389 +126859 AXDND1 axonemal dynein light chain domain containing 1 Novel U 0.0011347685219062946 -0.28585389083667795 1.0 12390 +81491 GPR63 G protein-coupled receptor 63 Novel U 0.0011344964468469484 -0.28585623658469983 1.0 12391 +54033 RBM11 RNA binding motif protein 11 Novel N 0.0011344532368561704 -0.28585660912803634 1.0 12392 +25855 BRMS1 BRMS1 transcriptional repressor and anoikis regulator Novel U 0.0011341062019748214 -0.2858596011567375 1.0 12393 +51333 ZNF771 zinc finger protein 771 Novel U 0.0011340531683281614 -0.28586005839663314 1.0 12394 +339829 CCDC39 coiled-coil domain 39 molecular ruler complex subunit Novel U 0.0011340477601961723 -0.2858601050238946 1.0 12395 +4115 MAGEB4 MAGE family member B4 Novel U 0.0011333931543463238 -0.28586574883549953 1.0 12396 +6837 MED22 mediator complex subunit 22 Novel U 0.0011329011143378467 -0.2858699910540966 1.0 12397 +4173 MCM4 minichromosome maintenance complex component 4 Novel U 0.0011324525663144634 -0.28587385829808826 1.0 12398 +55709 KBTBD4 kelch repeat and BTB domain containing 4 Novel U 0.0011322503081856617 -0.28587560210586943 1.0 12399 +222658 KCTD20 potassium channel tetramerization domain containing 20 Novel U 0.0011315809948330051 -0.2858813727210693 1.0 12400 +55304 SPTLC3 serine palmitoyltransferase long chain base subunit 3 Novel N 0.0011313253759822146 -0.2858835765886896 1.0 12401 +6832 SUPV3L1 Suv3 like RNA helicase Novel U 0.0011298612790563707 -0.2858961995849901 1.0 12402 +54821 ERCC6L ERCC excision repair 6 like, spindle assembly checkpoint helicase Novel U 0.0011297038525173082 -0.285897556868504 1.0 12403 +10153 CEBPZ CCAAT enhancer binding protein zeta Novel N 0.0011294169608123596 -0.28590003036111655 1.0 12404 +8467 SMARCA5 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 5 Novel N 0.0011290696523446424 -0.2859030247485958 1.0 12405 +1193 CLIC2 chloride intracellular channel 2 Novel U 0.0011280720226732111 -0.28591162600677034 1.0 12406 +360205 PRAC2 PRAC2 small nuclear protein Novel U 0.0011274610331370705 -0.28591689377184665 1.0 12407 +51802 ASIC5 acid sensing ion channel subunit family member 5 Novel U 0.0011267109427846153 -0.28592336082165526 1.0 12408 +645745 MT1HL1 metallothionein 1H like 1 Novel U 0.0011265894529193425 -0.28592440827014914 1.0 12409 +10389 SCML2 Scm polycomb group protein like 2 Novel N 0.00112603939890262 -0.28592915066779756 1.0 12410 +51149 MRNIP MRN complex interacting protein Novel U 0.0011256631864679399 -0.28593239425644756 1.0 12411 +339965 CCDC158 coiled-coil domain containing 158 Novel U 0.0011256260158435867 -0.2859327147302122 1.0 12412 +9652 SKIC3 SKI3 subunit of superkiller complex Novel U 0.0011254749389968508 -0.28593401726861917 1.0 12413 +404785 POTEG POTE ankyrin domain family member G Novel U 0.0011254396740469975 -0.28593432131224067 1.0 12414 +57824 HMHB1 histocompatibility minor HB-1 Novel U 0.0011253960196457161 -0.28593469768714874 1.0 12415 +79096 CSTPP1 centriolar satellite-associated tubulin polyglutamylase complex regulator 1 Novel N 0.0011252376483458614 -0.2859360631161015 1.0 12416 +90338 ZNF160 zinc finger protein 160 Novel U 0.0011250043696108187 -0.28593807437407043 1.0 12417 +494118 SPANXN1 SPANX family member N1 Novel U 0.0011248937070038646 -0.28593902847325164 1.0 12418 +128344 CIMAP3 ciliary microtubule associated protein 3 Novel U 0.0011247781903077996 -0.28594002442290595 1.0 12419 +8508 NIPSNAP1 nipsnap homolog 1 Novel U 0.0011243455848864564 -0.2859437542146545 1.0 12420 +64794 DDX31 DEAD-box helicase 31 Novel N 0.001124278262839149 -0.28594433464477437 1.0 12421 +6328 SCN3A sodium voltage-gated channel alpha subunit 3 Novel U 0.0011241800825328146 -0.2859451811253739 1.0 12422 +84940 CORO6 coronin 6 Novel U 0.0011239414191473705 -0.2859472388081532 1.0 12423 +91689 SMDT1 single-pass membrane protein with aspartate rich tail 1 Novel N 0.0011234426279578262 -0.2859515392333704 1.0 12424 +55176 SEC61A2 SEC61 translocon subunit alpha 2 Novel U 0.0011232659667234268 -0.2859530623525498 1.0 12425 +126205 NLRP8 NLR family pyrin domain containing 8 Novel U 0.001123088697621084 -0.28595459071258084 1.0 12426 +56110 PCDHGA5 protocadherin gamma subfamily A, 5 Novel U 0.001122848676045994 -0.2859566601052563 1.0 12427 +4504 MT3 metallothionein 3 Novel U 0.0011218717159202233 -0.28596508315692426 1.0 12428 +57611 ISLR2 immunoglobulin superfamily containing leucine rich repeat 2 Novel U 0.0011214071225974474 -0.28596908873858423 1.0 12429 +10480 EIF3M eukaryotic translation initiation factor 3 subunit M Novel N 0.0011209311352541236 -0.2859731925560076 1.0 12430 +110806279 SMIM28 small integral membrane protein 28 Novel U 0.0011207274507397246 -0.2859749486616495 1.0 12431 +154807 VKORC1L1 vitamin K epoxide reductase complex subunit 1 like 1 Novel N 0.0011207033516701325 -0.28597515643646343 1.0 12432 +474170 LRRC37A2 leucine rich repeat containing 37 member A2 Novel U 0.0011206756911837164 -0.2859753949167249 1.0 12433 +1360 CPB1 carboxypeptidase B1 Novel N 0.0011202216383302721 -0.2859793096216792 1.0 12434 +282973 JAKMIP3 Janus kinase and microtubule interacting protein 3 Novel U 0.0011201928852941734 -0.2859795575215703 1.0 12435 +94033 FTMT ferritin mitochondrial Novel N 0.0011194617559155682 -0.2859858610956563 1.0 12436 +5457 POU4F1 POU class 4 homeobox 1 Novel U 0.0011194009948647804 -0.2859863849588691 1.0 12437 +26073 POLDIP2 DNA polymerase delta interacting protein 2 Novel N 0.0011193019676887998 -0.28598723874091997 1.0 12438 +79665 DHX40 DEAH-box helicase 40 Novel U 0.00111885577304368 -0.2859910856948034 1.0 12439 +5447 POR cytochrome p450 oxidoreductase Novel U 0.001118286039000427 -0.2859959977676268 1.0 12440 +8880 FUBP1 far upstream element binding protein 1 Novel N 0.0011180563367352327 -0.28599797819036565 1.0 12441 +123624 AGBL1 AGBL carboxypeptidase 1 Novel N 0.0011179649644027906 -0.28599876597469465 1.0 12442 +9584 RBM39 RNA binding motif protein 39 Novel N 0.0011174358260214352 -0.28600332804412626 1.0 12443 +54069 MIS18A MIS18 kinetochore protein A Novel U 0.0011166475516419263 -0.28601012430494793 1.0 12444 +202151 RANBP3L RAN binding protein 3 like Novel U 0.0011166458535288829 -0.28601013894555966 1.0 12445 +11193 WBP4 WW domain binding protein 4 Novel N 0.0011162869162429185 -0.2860132335931564 1.0 12446 +131831 ERICH6 glutamate rich 6 Novel U 0.0011159899423038961 -0.28601579401171023 1.0 12447 +642987 TMEM232 transmembrane protein 232 Novel U 0.0011159154078979239 -0.28601643662458254 1.0 12448 +1750 DLX6 distal-less homeobox 6 Novel N 0.0011158452640952345 -0.286017041383015 1.0 12449 +114825 PWWP2A PWWP domain containing 2A Novel N 0.0011152441046002714 -0.2860222243964801 1.0 12450 +3346 HTN1 histatin 1 Novel U 0.0011146647156928388 -0.28602721971059214 1.0 12451 +84065 TMEM222 transmembrane protein 222 Novel N 0.0011140615471968048 -0.28603242004505064 1.0 12452 +4832 NME3 NME/NM23 nucleoside diphosphate kinase 3 Novel U 0.0011138181403637462 -0.2860345186243858 1.0 12453 +7108 TM7SF2 transmembrane 7 superfamily member 2 Novel N 0.0011137285625149192 -0.28603529093722546 1.0 12454 +56929 FEM1C fem-1 homolog C Novel U 0.0011136692011731084 -0.28603580273257506 1.0 12455 +51634 RBMX2 RNA binding motif protein X-linked 2 Novel N 0.0011136249589273589 -0.2860361841756985 1.0 12456 +1576 CYP3A4 cytochrome P450 family 3 subfamily A member 4 Novel N 0.001112547553871059 -0.2860454732328639 1.0 12457 +11317 RBPJL recombination signal binding protein for immunoglobulin kappa J region like Novel N 0.001112540472478266 -0.2860455342864686 1.0 12458 +1768 DNAH6 dynein axonemal heavy chain 6 Novel U 0.0011125048674460603 -0.28604584126217625 1.0 12459 +403313 PLPP6 phospholipid phosphatase 6 Novel U 0.0011122967153970773 -0.28604763588553606 1.0 12460 +10155 TRIM28 tripartite motif containing 28 Novel U 0.001111485316252686 -0.28605463152101424 1.0 12461 +728130 NUTM2D NUT family member 2D Novel U 0.001111045009204887 -0.2860584277138327 1.0 12462 +57491 AHRR aryl hydrocarbon receptor repressor Novel U 0.001110700715901653 -0.28606139610548514 1.0 12463 +142689 ASB12 ankyrin repeat and SOCS box containing 12 Novel N 0.00111044128207823 -0.28606363286463365 1.0 12464 +7776 ZNF236 zinc finger protein 236 Novel U 0.001109978257451947 -0.28606762492147186 1.0 12465 +55313 CPPED1 calcineurin like phosphoesterase domain containing 1 Novel U 0.0011096188750462923 -0.2860707234067545 1.0 12466 +399512 SLC25A35 solute carrier family 25 member 35 Novel U 0.0011095803660685763 -0.2860710554193929 1.0 12467 +55282 LRRC36 leucine rich repeat containing 36 Novel U 0.0011095698282101035 -0.28607114627358854 1.0 12468 +10526 IPO8 importin 8 Novel U 0.001109425128793835 -0.2860723938277388 1.0 12469 +728215 NALF1 NALCN channel auxiliary factor 1 Novel U 0.0011093853392217458 -0.2860727368812706 1.0 12470 +255758 DYNLT2B dynein light chain Tctex-type 2B Novel U 0.0011093201521728908 -0.28607329890408617 1.0 12471 +57380 MRS2 magnesium transporter MRS2 Novel N 0.0011088904148045572 -0.2860770039683581 1.0 12472 +22944 KIN Kin17 DNA and RNA binding protein Novel N 0.001108855075368054 -0.2860773086541808 1.0 12473 +390212 GPR152 G protein-coupled receptor 152 Novel U 0.0011088121310880977 -0.2860776789066397 1.0 12474 +23467 NPTXR neuronal pentraxin receptor Novel U 0.0011088006838278343 -0.2860777776014197 1.0 12475 +22893 BAHD1 bromo adjacent homology domain containing 1 Novel N 0.0011080908775977618 -0.286083897333835 1.0 12476 +23309 SIN3B SIN3 transcription regulator family member B Novel N 0.001107998734340591 -0.28608469176484147 1.0 12477 +6875 TAF4B TATA-box binding protein associated factor 4b Novel N 0.00110779831713806 -0.2860864197007189 1.0 12478 +339230 CCDC137 coiled-coil domain containing 137 Novel U 0.0011075347450599574 -0.28608869213863475 1.0 12479 +113000 RPUSD1 RNA pseudouridine synthase domain containing 1 Novel U 0.0011072272371658296 -0.2860913433777306 1.0 12480 +9496 TBX4 T-box transcription factor 4 Novel U 0.0011071267188743218 -0.28609221001572394 1.0 12481 +100507043 TUNAR TCL1 upstream neural differentiation-associated RNA Novel U 0.0011069339825073674 -0.28609387172978407 1.0 12482 +9537 TP53I11 tumor protein p53 inducible protein 11 Novel N 0.0011062586914065608 -0.2860996938833018 1.0 12483 +256933 NPB neuropeptide B Novel N 0.0011061487470720192 -0.28610064178975786 1.0 12484 +1973 EIF4A1 eukaryotic translation initiation factor 4A1 Novel N 0.0011060093550284476 -0.2861018435853625 1.0 12485 +54627 MAP10 microtubule associated protein 10 Novel U 0.0011058244342635646 -0.2861034379156898 1.0 12486 +100996939 PYURF PIGY upstream open reading frame Novel N 0.0011047171746708863 -0.28611298436954496 1.0 12487 +115399 LRRC56 leucine rich repeat containing 56 Novel N 0.001104267983374235 -0.28611685715964225 1.0 12488 +729240 PRR20C proline rich 20C Novel U 0.0011042214694153756 -0.2861172581887819 1.0 12489 +8356 H3C12 H3 clustered histone 12 Novel U 0.0011041517234037913 -0.286117859517581 1.0 12490 +79998 ANKRD53 ankyrin repeat domain 53 Novel U 0.0011037724324797805 -0.28612112964802533 1.0 12491 +144577 KICS2 KICSTOR subunit 2 Novel U 0.001103762251886462 -0.2861212174219899 1.0 12492 +2138 EYA1 EYA transcriptional coactivator and phosphatase 1 Novel U 0.0011035455839760152 -0.2861230854665051 1.0 12493 +23787 MTCH1 mitochondrial carrier 1 Novel U 0.0011033511504781879 -0.286124761812709 1.0 12494 +6505 SLC1A1 solute carrier family 1 member 1 Novel U 0.0011032874075312213 -0.2861253113849194 1.0 12495 +79600 TCTN1 tectonic family member 1 Novel U 0.0011030954082378557 -0.2861269667441562 1.0 12496 +6018 RLF RLF zinc finger Novel U 0.001102850326186667 -0.2861290797667102 1.0 12497 +54932 EXD3 exonuclease 3'-5' domain containing 3 Novel U 0.0011027578076442655 -0.28612987743331125 1.0 12498 +192286 HIGD2A HIG1 hypoxia inducible domain family member 2A Novel N 0.0011025888822792465 -0.2861313338561888 1.0 12499 +23409 SIRT4 sirtuin 4 Novel U 0.0011025344193763328 -0.28613180341869504 1.0 12500 +80157 CWH43 cell wall biogenesis 43 C-terminal homolog Novel U 0.0011022661700706283 -0.28613411618223805 1.0 12501 +7104 TM4SF4 transmembrane 4 L six family member 4 Novel U 0.0011019201684694497 -0.2861370993023133 1.0 12502 +4508 ATP6 ATP synthase F0 subunit 6 Novel N 0.0011016741318326834 -0.28613922055501245 1.0 12503 +79027 ZNF655 zinc finger protein 655 Novel N 0.0011016063734390412 -0.28613980474717704 1.0 12504 +10205 MPZL2 myelin protein zero like 2 Novel N 0.001101243764769544 -0.2861429310483206 1.0 12505 +51538 ZCCHC17 zinc finger CCHC-type containing 17 Novel U 0.0011010325113013282 -0.2861447524111694 1.0 12506 +54780 NSMCE4A NSE4 homolog A, SMC5-SMC6 complex component Novel N 0.0011009937644851312 -0.28614508647437853 1.0 12507 +100506374 EDDM13 epididymal protein 13 Novel U 0.001100898038877989 -0.28614591179131177 1.0 12508 +175 AGA aspartylglucosaminidase Novel U 0.0011007622017324189 -0.28614708293767216 1.0 12509 +136319 MTPN myotrophin Novel U 0.0011004724513430657 -0.2861495810769882 1.0 12510 +100129792 CCDC152 coiled-coil domain containing 152 Novel U 0.0011001094354418967 -0.2861527108891587 1.0 12511 +204801 NLRP11 NLR family pyrin domain containing 11 Novel U 0.0010994599132696653 -0.2861583108708488 1.0 12512 +9742 IFT140 intraflagellar transport 140 Novel U 0.00109925956714563 -0.2861600381939091 1.0 12513 +6902 TBCA tubulin folding cofactor A Novel U 0.0010992475970339566 -0.28616014139655416 1.0 12514 +168455 CCDC71L coiled-coil domain containing 71 like Novel U 0.001098939916468778 -0.28616279412436707 1.0 12515 +3853 KRT6A keratin 6A Novel N 0.0010984469792647195 -0.28616704407831023 1.0 12516 +8406 SRPX sushi repeat containing protein X-linked Novel U 0.0010983879010587941 -0.2861675534325488 1.0 12517 +410 ARSA arylsulfatase A Novel U 0.001098381186638848 -0.2861676113222258 1.0 12518 +9328 GTF3C5 general transcription factor IIIC subunit 5 Novel N 0.0010983532084072115 -0.28616785254198945 1.0 12519 +94274 PPP1R14A protein phosphatase 1 regulatory inhibitor subunit 14A Novel U 0.0010980405434350513 -0.28617054824383625 1.0 12520 +342931 RFPL4A ret finger protein like 4A Novel U 0.0010979735327121673 -0.28617112598981204 1.0 12521 +284361 EMC10 ER membrane protein complex subunit 10 Novel U 0.0010978899409419952 -0.2861718466925107 1.0 12522 +2760 GM2A ganglioside GM2 activator Novel U 0.0010970415119910394 -0.2861791615876656 1.0 12523 +10669 CGREF1 cell growth regulator with EF-hand domain 1 Novel N 0.0010969493806975983 -0.2861799559155245 1.0 12524 +65084 TMEM135 transmembrane protein 135 Novel U 0.00109690199935314 -0.28618036442299777 1.0 12525 +65220 NADK NAD kinase Novel U 0.0010961657266703806 -0.2861867123410806 1.0 12526 +26585 GREM1 gremlin 1, DAN family BMP antagonist Novel U 0.0010961138343336104 -0.2861871597409511 1.0 12527 +2805 GOT1 glutamic-oxaloacetic transaminase 1 Novel N 0.00109590338597488 -0.286188974162392 1.0 12528 +7286 TUFT1 tuftelin 1 Novel U 0.001095832629740399 -0.2861895842010242 1.0 12529 +120103 SLC36A4 solute carrier family 36 member 4 Novel U 0.0010956399197223526 -0.2861912456879121 1.0 12530 +6170 RPL39 ribosomal protein L39 Novel N 0.0010955121026080014 -0.28619234768801405 1.0 12531 +1408 CRY2 cryptochrome circadian regulator 2 Novel U 0.0010954099258275037 -0.28619322862499263 1.0 12532 +127579 DCST2 DC-STAMP domain containing 2 Novel U 0.0010953397425044343 -0.28619383372415774 1.0 12533 +9783 RIMS3 regulating synaptic membrane exocytosis 3 Novel U 0.001095192731200037 -0.28619510121070096 1.0 12534 +91368 CDKN2AIPNL CDKN2A interacting protein N-terminal like Novel U 0.0010951566907185855 -0.2861954119407189 1.0 12535 +152519 NIPAL1 NIPA like domain containing 1 Novel U 0.0010951356992079059 -0.2861955929231095 1.0 12536 +9340 GLP2R glucagon like peptide 2 receptor Novel N 0.0010949989014123588 -0.28619677235190044 1.0 12537 +65986 ZBTB10 zinc finger and BTB domain containing 10 Novel U 0.0010948776563834512 -0.28619781768949004 1.0 12538 +10069 RWDD2B RWD domain containing 2B Novel U 0.0010948358093425727 -0.28619817848188894 1.0 12539 +23617 TSSK2 testis specific serine kinase 2 Novel U 0.001094568476679569 -0.2862004833424187 1.0 12540 +221393 ADGRF4 adhesion G protein-coupled receptor F4 Novel N 0.0010943922666475008 -0.2862020025714695 1.0 12541 +26123 TCTN3 tectonic family member 3 Novel U 0.0010937132582504415 -0.28620785677437965 1.0 12542 +100131608 PRR23D1 proline rich 23 domain containing 1 Novel U 0.0010936497698078424 -0.2862084041523312 1.0 12543 +2326 FMO1 flavin containing dimethylaniline monoxygenase 1 Novel N 0.001092916567174136 -0.2862147256013892 1.0 12544 +9380 GRHPR glyoxylate and hydroxypyruvate reductase Novel N 0.0010921127494979955 -0.2862216558717648 1.0 12545 +80258 EFHC2 EF-hand domain containing 2 Novel U 0.0010920814550223748 -0.28622192568317073 1.0 12546 +5322 PLA2G5 phospholipase A2 group V Novel U 0.0010916947354856806 -0.2862252598608436 1.0 12547 +51778 MYOZ2 myozenin 2 Novel U 0.0010911415233250696 -0.2862300294870435 1.0 12548 +8483 CILP cartilage intermediate layer protein Novel U 0.001090536191173611 -0.2862352484758779 1.0 12549 +150383 CDPF1 cysteine rich DPF motif domain containing 1 Novel U 0.0010904609013433983 -0.28623589760178714 1.0 12550 +128853 DUSP15 dual specificity phosphatase 15 Novel N 0.0010902861469044328 -0.28623740428115896 1.0 12551 +653583 PHLDB3 pleckstrin homology like domain family B member 3 Novel U 0.0010900473720483832 -0.2862394629250038 1.0 12552 +23519 ANP32D acidic nuclear phosphoprotein 32 family member D Novel U 0.0010900131514614676 -0.2862397579644471 1.0 12553 +151246 SGO2 shugoshin 2 Novel U 0.001089996161647012 -0.2862399044454357 1.0 12554 +23369 PUM2 pumilio RNA binding family member 2 Novel U 0.0010899815819223305 -0.28624003014736665 1.0 12555 +7453 WARS1 tryptophanyl-tRNA synthetase 1 Novel U 0.001089519824251613 -0.2862440112809011 1.0 12556 +645121 CCNI2 cyclin I family member 2 Novel U 0.0010894194290629743 -0.28624487685753913 1.0 12557 +374969 SVBP small vasohibin binding protein Novel U 0.001089314858469163 -0.2862457784332446 1.0 12558 +2733 GLE1 GLE1 RNA export mediator Novel U 0.0010891230824159243 -0.2862474318677733 1.0 12559 +9684 LRRC14 leucine rich repeat containing 14 Novel U 0.0010890025733585656 -0.28624847086004107 1.0 12560 +150082 LCA5L lebercilin LCA5 like Novel U 0.0010887695562062484 -0.2862504798627237 1.0 12561 +56252 YLPM1 YLP motif containing 1 Novel U 0.0010882152136772606 -0.28625525923461437 1.0 12562 +140870 WFDC6 WAP four-disulfide core domain 6 Novel U 0.0010878499987104463 -0.28625840800645697 1.0 12563 +10352 WARS2 tryptophanyl tRNA synthetase 2, mitochondrial Novel U 0.0010876472162623244 -0.2862601563347591 1.0 12564 +9349 RPL23 ribosomal protein L23 Novel U 0.001086561676275289 -0.2862695155288114 1.0 12565 +55643 BTBD2 BTB domain containing 2 Novel U 0.0010863682585016204 -0.28627118311775196 1.0 12566 +5097 PCDH1 protocadherin 1 Novel N 0.001086245361403115 -0.2862722426989808 1.0 12567 +653275 CFC1B cryptic, EGF-CFC family member 1B Novel U 0.0010857870319054062 -0.2862761942758551 1.0 12568 +81626 SHCBP1L SHC binding and spindle associated 1 like Novel U 0.0010857158458649613 -0.286276808020143 1.0 12569 +730 C7 complement C7 Novel N 0.0010857120497850803 -0.28627684074878373 1.0 12570 +4515 MTCP1 mature T cell proliferation 1 Novel N 0.0010852233047676466 -0.2862810545589749 1.0 12571 +50487 PLA2G3 phospholipase A2 group III Novel U 0.001084564217776129 -0.286286737005614 1.0 12572 +22887 FOXJ3 forkhead box J3 Novel N 0.0010844105696061247 -0.28628806171318444 1.0 12573 +65217 PCDH15 protocadherin related 15 Novel U 0.0010842583770399134 -0.28628937387098385 1.0 12574 +7363 UGT2B4 UDP glucuronosyltransferase family 2 member B4 Novel N 0.0010841716545554702 -0.28629012156574435 1.0 12575 +124401 ANKS3 ankyrin repeat and sterile alpha motif domain containing 3 Novel U 0.0010839611166998302 -0.2862919367588001 1.0 12576 +7356 SCGB1A1 secretoglobin family 1A member 1 Novel N 0.0010837781651065652 -0.2862935141115315 1.0 12577 +81025 GJA9 gap junction protein alpha 9 Novel U 0.0010837166721898001 -0.286294044284669 1.0 12578 +386618 KCTD4 potassium channel tetramerization domain containing 4 Novel U 0.0010835660872625416 -0.2862953425818966 1.0 12579 +1361 CPB2 carboxypeptidase B2 Novel U 0.0010832513905587374 -0.2862980558007127 1.0 12580 +64682 ANAPC1 anaphase promoting complex subunit 1 Novel U 0.0010826584688606884 -0.28630316779041015 1.0 12581 +3422 IDI1 isopentenyl-diphosphate delta isomerase 1 Novel U 0.0010825332177979673 -0.28630424766679907 1.0 12582 +7101 NR2E1 nuclear receptor subfamily 2 group E member 1 Novel N 0.0010823005035093959 -0.2863062540582831 1.0 12583 +10734 STAG3 STAG3 cohesin complex component Novel U 0.0010821156807511686 -0.286307847543627 1.0 12584 +1586 CYP17A1 cytochrome P450 family 17 subfamily A member 1 Novel N 0.0010814848235183503 -0.2863132866019129 1.0 12585 +91752 ZNF804A zinc finger protein 804A Novel U 0.0010814210974510788 -0.28631383602859173 1.0 12586 +313 AOAH acyloxyacyl hydrolase Novel N 0.0010811447514685083 -0.28631621859920847 1.0 12587 +11279 KLF8 KLF transcription factor 8 Novel N 0.0010810615929586374 -0.2863169355664693 1.0 12588 +57642 COL20A1 collagen type XX alpha 1 chain Novel U 0.001080852805365352 -0.28631873566929794 1.0 12589 +10557 RPP38 ribonuclease P/MRP subunit p38 Novel N 0.0010805160033112622 -0.2863216394736894 1.0 12590 +64067 NPAS3 neuronal PAS domain protein 3 Novel U 0.0010803907018472486 -0.28632271978462287 1.0 12591 +1046 CDX4 caudal type homeobox 4 Novel N 0.0010802589537550838 -0.2863238556764144 1.0 12592 +100506581 C16orf95 chromosome 16 open reading frame 95 Novel U 0.0010795894632122831 -0.2863296278192936 1.0 12593 +84107 ZIC4 Zic family member 4 Novel U 0.0010790963785997246 -0.2863338790441478 1.0 12594 +56147 PCDHA1 protocadherin alpha 1 Novel U 0.001078386402358631 -0.2863400002423462 1.0 12595 +55245 UQCC1 ubiquinol-cytochrome c reductase complex assembly factor 1 Novel N 0.0010781794937094573 -0.28634178414549283 1.0 12596 +340481 ZDHHC21 zinc finger DHHC-type palmitoyltransferase 21 Novel N 0.0010781343389238793 -0.2863421734562559 1.0 12597 +94027 CGB7 chorionic gonadotropin subunit beta 7 Novel N 0.001077776775304374 -0.2863452562605201 1.0 12598 +23742 NPAP1 nuclear pore associated protein 1 Novel U 0.0010775908823576286 -0.2863468589727023 1.0 12599 +5069 PAPPA pappalysin 1 Novel N 0.0010775312957510541 -0.2863473727102159 1.0 12600 +8939 FUBP3 far upstream element binding protein 3 Novel N 0.0010775164202000388 -0.2863475009626711 1.0 12601 +10609 P3H4 prolyl 3-hydroxylase family member 4 (inactive) Novel U 0.00107736565759569 -0.28634880079177627 1.0 12602 +9468 PCYT1B phosphate cytidylyltransferase 1B, choline Novel U 0.0010773399617653345 -0.2863490223333735 1.0 12603 +84985 FAM83A family with sequence similarity 83 member A Novel U 0.0010772387792509443 -0.2863498946980936 1.0 12604 +84309 NUDT16L1 nudix hydrolase 16 like 1 Novel N 0.001076894091105281 -0.2863528664939568 1.0 12605 +11172 INSL6 insulin like 6 Novel U 0.001076306518011158 -0.28635793236962553 1.0 12606 +869 CBLN1 cerebellin 1 precursor Novel N 0.0010760231841443427 -0.28636037518764496 1.0 12607 +729428 GAGE12B G antigen 12B Novel U 0.0010739398913765122 -0.2863783367012831 1.0 12608 +100507747 C13orf46 chromosome 13 open reading frame 46 Novel U 0.0010735964826171602 -0.28638129746666846 1.0 12609 +1376 CPT2 carnitine palmitoyltransferase 2 Novel U 0.001073448207053855 -0.28638257585326565 1.0 12610 +157310 PEBP4 phosphatidylethanolamine binding protein 4 Novel U 0.0010734177660920504 -0.2863828383059363 1.0 12611 +346157 ZNF391 zinc finger protein 391 Novel U 0.0010733494762865414 -0.28638342707977166 1.0 12612 +990 CDC6 cell division cycle 6 Novel U 0.001072834448449613 -0.286387867492401 1.0 12613 +4664 NAB1 NGFI-A binding protein 1 Novel U 0.0010727108226787545 -0.28638893335602017 1.0 12614 +401115 NICOL1 NELL2 interacting cell ontogeny regulator 1 Novel U 0.0010725796118246694 -0.2863900646159091 1.0 12615 +10849 POLR1G RNA polymerase I subunit G Novel U 0.0010723271317728729 -0.2863922414217636 1.0 12616 +10608 MXD4 MAX dimerization protein 4 Novel U 0.0010720606076777212 -0.28639453931106845 1.0 12617 +9318 COPS2 COP9 signalosome subunit 2 Novel N 0.001071918029608927 -0.28639576857560906 1.0 12618 +56829 ZC3HAV1 zinc finger CCCH-type containing, antiviral 1 Novel N 0.0010718064310067854 -0.2863967307446547 1.0 12619 +56261 GPCPD1 glycerophosphocholine phosphodiesterase 1 Novel U 0.00107170630421664 -0.28639759400724296 1.0 12620 +6603 SMARCD2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 2 Novel U 0.0010703062604889924 -0.28640966475644175 1.0 12621 +23436 CELA3B chymotrypsin like elastase 3B Novel U 0.0010702868310499736 -0.28640983227112776 1.0 12622 +10513 APPBP2 amyloid beta precursor protein binding protein 2 Novel U 0.0010701152368796619 -0.28641131170362893 1.0 12623 +5723 PSPH phosphoserine phosphatase Novel U 0.0010701060686353857 -0.28641139074942956 1.0 12624 +84187 TMEM164 transmembrane protein 164 Novel N 0.0010699124870421585 -0.2864130597507723 1.0 12625 +83549 UCK1 uridine-cytidine kinase 1 Novel N 0.0010698066807926076 -0.2864139719799239 1.0 12626 +81575 APOLD1 apolipoprotein L domain containing 1 Novel U 0.0010697580999210743 -0.2864143908293531 1.0 12627 +170954 PPP1R18 protein phosphatase 1 regulatory subunit 18 Novel U 0.0010692291755779557 -0.2864189510534125 1.0 12628 +55425 GPALPP1 GPALPP motifs containing 1 Novel U 0.001069180367092357 -0.2864193718652605 1.0 12629 +7399 USH2A usherin Novel U 0.0010686769046857846 -0.28642371256428356 1.0 12630 +79165 LENG1 leukocyte receptor cluster member 1 Novel U 0.0010683595777175416 -0.28642644846043597 1.0 12631 +8225 GTPBP6 GTP binding protein 6 (putative) Novel U 0.0010682441626696198 -0.28642744353371097 1.0 12632 +9330 GTF3C3 general transcription factor IIIC subunit 3 Novel N 0.0010682011960902757 -0.2864278139784285 1.0 12633 +140825 NEURL2 neuralized E3 ubiquitin protein ligase 2 Novel U 0.0010677089744732958 -0.2864320577627985 1.0 12634 +23243 ANKRD28 ankyrin repeat domain 28 Novel U 0.0010669365106647254 -0.28643871770970897 1.0 12635 +10621 POLR3F RNA polymerase III subunit F Novel U 0.0010666934767515376 -0.28644081307384295 1.0 12636 +64137 ABCG4 ATP binding cassette subfamily G member 4 Novel U 0.001066390546219482 -0.28644342484832175 1.0 12637 +29071 C1GALT1C1 C1GALT1 specific chaperone 1 Novel U 0.0010661099166553306 -0.28644584435066994 1.0 12638 +10607 TBL3 transducin beta like 3 Novel N 0.001065414217160525 -0.2864518424591245 1.0 12639 +23569 PADI4 peptidyl arginine deiminase 4 Novel N 0.001065362201502563 -0.2864522909222326 1.0 12640 +374569 ASPG asparaginase Novel N 0.0010650789933031616 -0.286454732656786 1.0 12641 +162333 MARCHF10 membrane associated ring-CH-type finger 10 Novel U 0.00106506527015525 -0.2864548509735738 1.0 12642 +8736 MYOM1 myomesin 1 Novel U 0.0010647718651726008 -0.28645738062167647 1.0 12643 +92815 H2AC25 H2A clustered histone 25 Novel U 0.001064771352436612 -0.2864573850423294 1.0 12644 +219770 GJD4 gap junction protein delta 4 Novel U 0.0010645675993735297 -0.28645914173897713 1.0 12645 +389257 LRRC14B leucine rich repeat containing 14B Novel U 0.0010645186145011416 -0.2864595640715782 1.0 12646 +23090 ZNF423 zinc finger protein 423 Novel U 0.001064450835754241 -0.2864601484392224 1.0 12647 +285313 IGSF10 immunoglobulin superfamily member 10 Novel U 0.0010641310810353393 -0.2864629052666991 1.0 12648 +646892 SH2D7 SH2 domain containing 7 Novel U 0.0010640292156716548 -0.2864637835187371 1.0 12649 +83461 CDCA3 cell division cycle associated 3 Novel U 0.0010633083910088137 -0.2864699982487127 1.0 12650 +51569 UFM1 ubiquitin fold modifier 1 Novel U 0.00106275864794291 -0.2864747379654382 1.0 12651 +1465 CSRP1 cysteine and glycine rich protein 1 Novel U 0.0010627243717818407 -0.2864750334840249 1.0 12652 +30062 RAX retina and anterior neural fold homeobox Novel N 0.0010626729242680004 -0.2864754770487681 1.0 12653 +3284 HSD3B2 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 2 Novel N 0.0010623672318674404 -0.2864781126352332 1.0 12654 +729956 SHISA7 shisa family member 7 Novel U 0.0010621995189304982 -0.28647955860492635 1.0 12655 +6727 SRP14 signal recognition particle 14 Novel U 0.0010620037473039734 -0.28648124648806694 1.0 12656 +63974 NEUROD6 neuronal differentiation 6 Novel U 0.0010618318756117362 -0.2864827283132774 1.0 12657 +79794 SPRING1 SREBF pathway regulator in golgi 1 Novel N 0.0010618024781024688 -0.2864829817696191 1.0 12658 +6638 SNRPN small nuclear ribonucleoprotein polypeptide N Novel U 0.001061721860799821 -0.28648367682736775 1.0 12659 +57167 SALL4 spalt like transcription factor 4 Novel U 0.0010613992493916416 -0.2864864582843465 1.0 12660 +79094 CHAC1 ChaC glutathione specific gamma-glutamylcyclotransferase 1 Novel U 0.0010606837432867034 -0.28649262715934115 1.0 12661 +128218 TMEM125 transmembrane protein 125 Novel U 0.0010606773294595687 -0.2864926824573988 1.0 12662 +6019 RLN2 relaxin 2 Novel U 0.0010605793414924574 -0.28649352727970834 1.0 12663 +51236 HGH1 HGH1 homolog Novel U 0.0010603099685808934 -0.28649584973063774 1.0 12664 +6941 TCF19 transcription factor 19 Novel U 0.0010600280603265957 -0.28649828025746166 1.0 12665 +25828 TXN2 thioredoxin 2 Novel N 0.0010598235302600595 -0.28650004365319565 1.0 12666 +51463 GPR89B G protein-coupled receptor 89B Novel U 0.0010594421390309524 -0.2865033318918287 1.0 12667 +117178 SSX2IP SSX family member 2 interacting protein Novel N 0.0010589048345552195 -0.2865079643668307 1.0 12668 +4860 PNP purine nucleoside phosphorylase Novel U 0.0010587877623099405 -0.28650897372795486 1.0 12669 +64114 TMBIM1 transmembrane BAX inhibitor motif containing 1 Novel U 0.0010587104087610168 -0.2865096406466162 1.0 12670 +348094 ANKDD1A ankyrin repeat and death domain containing 1A Novel U 0.001058549311580879 -0.2865110295772758 1.0 12671 +57119 EPPIN epididymal peptidase inhibitor Novel U 0.0010585368719971048 -0.28651113682756585 1.0 12672 +57348 TTYH1 tweety family member 1 Novel N 0.0010584463770036971 -0.2865119170477458 1.0 12673 +54867 TMEM214 transmembrane protein 214 Novel U 0.0010584238550985314 -0.28651211122473 1.0 12674 +25803 SPDEF SAM pointed domain containing ETS transcription factor Novel N 0.001057706574147531 -0.28651829540190504 1.0 12675 +10743 RAI1 retinoic acid induced 1 Novel U 0.0010576927904139646 -0.2865184142410439 1.0 12676 +341032 POU2AF2 POU class 2 homeobox associating factor 2 Novel U 0.001056636051681856 -0.2865275251194772 1.0 12677 +5981 RFC1 replication factor C subunit 1 Novel U 0.00105627094036389 -0.28653067299769114 1.0 12678 +9541 CIR1 corepressor interacting with RBPJ, CIR1 Novel N 0.0010561044175202566 -0.2865321087067634 1.0 12679 +57146 LDAF1 lipid droplet assembly factor 1 Novel N 0.0010558174874424292 -0.28653458253021524 1.0 12680 +5927 KDM5A lysine demethylase 5A Novel U 0.0010552062434641626 -0.2865398524890138 1.0 12681 +401152 C4orf3 chromosome 4 open reading frame 3 Novel U 0.0010550198142137439 -0.2865414598250425 1.0 12682 +6307 MSMO1 methylsterol monooxygenase 1 Novel U 0.0010549621585617865 -0.2865419569144554 1.0 12683 +116966 WDR17 WD repeat domain 17 Novel U 0.0010546396286798378 -0.2865447376685399 1.0 12684 +130535 KCTD18 potassium channel tetramerization domain containing 18 Novel U 0.0010545927699487907 -0.2865451416702 1.0 12685 +64795 RMND5A required for meiotic nuclear division 5 homolog A Novel U 0.0010544039811474341 -0.2865467693495558 1.0 12686 +140458 ASB5 ankyrin repeat and SOCS box containing 5 Novel U 0.0010542873727072148 -0.2865477747118946 1.0 12687 +11259 FILIP1L filamin A interacting protein 1 like Novel U 0.0010540068635662096 -0.28655019317599123 1.0 12688 +90637 ZFAND2A zinc finger AN1-type containing 2A Novel U 0.0010537860051450878 -0.2865520973498089 1.0 12689 +728096 CT47A1 cancer/testis antigen family 47 member A1 Novel U 0.0010528961883642313 -0.28655976907818603 1.0 12690 +9397 NMT2 N-myristoyltransferase 2 Novel U 0.0010528730399652754 -0.2865599686566082 1.0 12691 +874 CBR3 carbonyl reductase 3 Novel N 0.0010526200971639871 -0.2865621494521474 1.0 12692 +93474 ZNF670 zinc finger protein 670 Novel N 0.0010520710923361157 -0.2865668828040102 1.0 12693 +343263 MYBPHL myosin binding protein H like Novel U 0.001050859650103751 -0.2865773274887489 1.0 12694 +6509 SLC1A4 solute carrier family 1 member 4 Novel U 0.0010504526805449235 -0.2865808362559246 1.0 12695 +283219 KCTD21 potassium channel tetramerization domain containing 21 Novel U 0.001050355880246455 -0.2865816708385181 1.0 12696 +6341 SCO1 synthesis of cytochrome C oxidase 1 Novel N 0.001050145355402348 -0.2865834859193924 1.0 12697 +100131017 ZNF316 zinc finger protein 316 Novel U 0.0010496059206208208 -0.28658813676124 1.0 12698 +84647 PLA2G12B phospholipase A2 group XIIB Novel U 0.001049560855155379 -0.28658852530191203 1.0 12699 +113115 MTFR2 mitochondrial fission regulator 2 Novel U 0.0010491520056276665 -0.286592050277605 1.0 12700 +84727 SPSB2 splA/ryanodine receptor domain and SOCS box containing 2 Novel U 0.0010482401438225934 -0.28659991207144453 1.0 12701 +29994 BAZ2B bromodomain adjacent to zinc finger domain 2B Novel N 0.001048091831704456 -0.28660119077320634 1.0 12702 +28992 MACROD1 mono-ADP ribosylhydrolase 1 Novel N 0.0010477729619689188 -0.28660393997062694 1.0 12703 +10908 PNPLA6 patatin like phospholipase domain containing 6 Novel U 0.0010472232836248048 -0.28660867912934085 1.0 12704 +118 ADD1 adducin 1 Novel U 0.0010469396790990884 -0.28661112428089863 1.0 12705 +55211 DPPA4 developmental pluripotency associated 4 Novel U 0.0010467246840797678 -0.28661297790225765 1.0 12706 +23500 DAAM2 dishevelled associated activator of morphogenesis 2 Novel U 0.0010465453176676785 -0.2866145243446525 1.0 12707 +10279 PRSS16 serine protease 16 Novel U 0.0010463990329941607 -0.2866157855664064 1.0 12708 +10864 SLC22A7 solute carrier family 22 member 7 Novel N 0.0010460321046116825 -0.2866189491107953 1.0 12709 +5205 ATP8B1 ATPase phospholipid transporting 8B1 Novel U 0.0010460127150506246 -0.2866191162816657 1.0 12710 +254225 RNF169 ring finger protein 169 Novel N 0.0010458586750997961 -0.28662044436705064 1.0 12711 +81579 PLA2G12A phospholipase A2 group XIIA Novel U 0.0010454973415208427 -0.2866235596747532 1.0 12712 +55297 CCDC91 coiled-coil domain containing 91 Novel U 0.001045322313897176 -0.2866250687094401 1.0 12713 +57282 SLC4A10 solute carrier family 4 member 10 Novel N 0.0010453059807061281 -0.28662520952922227 1.0 12714 +23417 MLYCD malonyl-CoA decarboxylase Novel N 0.001045085154008331 -0.2866271134295312 1.0 12715 +2569 GABRR1 gamma-aminobutyric acid type A receptor subunit rho1 Novel N 0.0010446287191219802 -0.2866310486716453 1.0 12716 +1161 ERCC8 ERCC excision repair 8, CSA ubiquitin ligase complex subunit Novel U 0.0010442621783528288 -0.28663420887415053 1.0 12717 +1746 DLX2 distal-less homeobox 2 Novel N 0.0010440170037792382 -0.2866363226944044 1.0 12718 +115294 PCMTD1 protein-L-isoaspartate (D-aspartate) O-methyltransferase domain containing 1 Novel N 0.0010440087049237 -0.28663639424460086 1.0 12719 +116337 PANX3 pannexin 3 Novel U 0.0010434189032269637 -0.2866414793346004 1.0 12720 +389383 CLPSL2 colipase like 2 Novel U 0.0010433687612458303 -0.2866419116434395 1.0 12721 +4584 MUC3A mucin 3A, cell surface associated Novel U 0.0010432492565760193 -0.28664294197618473 1.0 12722 +158248 TTC16 tetratricopeptide repeat domain 16 Novel U 0.0010428125253278662 -0.28664670733955133 1.0 12723 +3074 HEXB hexosaminidase subunit beta Novel U 0.001042800908354873 -0.2866468074975426 1.0 12724 +643008 SMIM5 small integral membrane protein 5 Novel U 0.0010427778563971782 -0.28664700624447775 1.0 12725 +26995 TRUB2 TruB pseudouridine synthase family member 2 Novel N 0.0010424960420497155 -0.2866494359616656 1.0 12726 +55572 FOXRED1 FAD dependent oxidoreductase domain containing 1 Novel N 0.0010419695828666961 -0.28665397493186784 1.0 12727 +85865 GTPBP10 GTP binding protein 10 Novel U 0.0010416952535454572 -0.2866563401154469 1.0 12728 +862 RUNX1T1 RUNX1 partner transcriptional co-repressor 1 Novel N 0.0010416753243378566 -0.2866565119389849 1.0 12729 +28958 COA3 cytochrome c oxidase assembly factor 3 Novel U 0.0010415704699258943 -0.28665741596168376 1.0 12730 +79934 COQ8B coenzyme Q8B Novel N 0.0010414818545206007 -0.28665817997662935 1.0 12731 +85019 TMEM241 transmembrane protein 241 Novel N 0.0010414120980791009 -0.28665878139535206 1.0 12732 +79631 EFL1 elongation factor like GTPase 1 Novel U 0.0010410805266828271 -0.28666164010261014 1.0 12733 +9762 LZTS3 leucine zipper tumor suppressor family member 3 Novel U 0.001040999430895791 -0.28666233928570495 1.0 12734 +30848 CTAG2 cancer/testis antigen 2 Novel U 0.0010409097599455306 -0.28666311240123676 1.0 12735 +25973 PARS2 prolyl-tRNA synthetase 2, mitochondrial Novel U 0.001040835025847563 -0.2866637567357924 1.0 12736 +6281 S100A10 S100 calcium binding protein A10 Novel U 0.0010398677295580165 -0.28667209646881747 1.0 12737 +22869 ZNF510 zinc finger protein 510 Novel U 0.0010397540183843712 -0.28667307685180915 1.0 12738 +5531 PPP4C protein phosphatase 4 catalytic subunit Novel N 0.0010396907763073214 -0.2866736221056722 1.0 12739 +55506 MACROH2A2 macroH2A.2 histone Novel U 0.0010396155034423657 -0.2866742710853122 1.0 12740 +4107 MAGEA8 MAGE family member A8 Novel U 0.0010395609775046815 -0.286674741191285 1.0 12741 +203328 SUSD3 sushi domain containing 3 Novel U 0.0010389889561344453 -0.2866796729847427 1.0 12742 +84908 FAM136A family with sequence similarity 136 member A Novel U 0.001038770235046479 -0.28668155873112705 1.0 12743 +64710 NUCKS1 nuclear casein kinase and cyclin dependent kinase substrate 1 Novel U 0.001038706338067124 -0.2866821096313576 1.0 12744 +10117 ENAM enamelin Novel N 0.001037961587139626 -0.28668853064627586 1.0 12745 +23493 HEY2 hes related family bHLH transcription factor with YRPW motif 2 Novel U 0.0010379073190494358 -0.28668899852916635 1.0 12746 +139067 SPANXN3 SPANX family member N3 Novel U 0.0010375664386902447 -0.2866919374954581 1.0 12747 +2516 NR5A1 nuclear receptor subfamily 5 group A member 1 Novel U 0.0010375139017903651 -0.28669239045255485 1.0 12748 +6657 SOX2 SRY-box transcription factor 2 Novel U 0.0010374313572270506 -0.2866931021265561 1.0 12749 +441518 RTL8B retrotransposon Gag like 8B Novel U 0.0010370390661288429 -0.28669648434052974 1.0 12750 +55471 NDUFAF7 NADH:ubiquinone oxidoreductase complex assembly factor 7 Novel N 0.0010368435619003134 -0.28669816991824654 1.0 12751 +139425 DCAF8L1 DDB1 and CUL4 associated factor 8 like 1 Novel U 0.0010359634459379586 -0.28670575800913084 1.0 12752 +56993 TOMM22 translocase of outer mitochondrial membrane 22 Novel U 0.0010355791415029498 -0.286709071364535 1.0 12753 +212 ALAS2 5'-aminolevulinate synthase 2 Novel U 0.00103510570956301 -0.2867131531500513 1.0 12754 +399693 CCDC187 coiled-coil domain containing 187 Novel U 0.0010348563811751067 -0.2867153027832228 1.0 12755 +57135 DAZ4 deleted in azoospermia 4 Novel N 0.0010348079920591258 -0.28671571997939416 1.0 12756 +64843 ISL2 ISL LIM homeobox 2 Novel N 0.0010346760011305683 -0.28671685796484686 1.0 12757 +145788 PIERCE2 piercer of microtubule wall 2 Novel U 0.0010345378602708375 -0.2867180489731268 1.0 12758 +146198 ZFP90 ZFP90 zinc finger protein Novel N 0.0010344017714053713 -0.2867192222897392 1.0 12759 +79085 SLC25A23 solute carrier family 25 member 23 Novel N 0.0010342654685699846 -0.2867203974511349 1.0 12760 +10691 GMEB1 glucocorticoid modulatory element binding protein 1 Novel U 0.0010341813695683073 -0.2867211225270287 1.0 12761 +5511 PPP1R8 protein phosphatase 1 regulatory subunit 8 Novel N 0.0010330991731073826 -0.28673045289422056 1.0 12762 +6185 RPN2 ribophorin II Novel N 0.0010327617151885714 -0.28673336235327723 1.0 12763 +5052 PRDX1 peroxiredoxin 1 Novel U 0.0010325006767034261 -0.2867356129473288 1.0 12764 +339287 MSL1 MSL complex subunit 1 Novel U 0.0010318450378869626 -0.2867412656648563 1.0 12765 +167838 TXLNB taxilin beta Novel U 0.001031108643389714 -0.2867476146331865 1.0 12766 +23133 PHF8 PHD finger protein 8 Novel N 0.0010308622263908063 -0.2867497391652517 1.0 12767 +85236 H2BC12 H2B clustered histone 12 Novel N 0.0010299135202906872 -0.2867579186193443 1.0 12768 +11012 KLK11 kallikrein related peptidase 11 Novel U 0.0010296922476280934 -0.2867598263646254 1.0 12769 +8364 H4C3 H4 clustered histone 3 Novel U 0.0010296346766956084 -0.2867603227236129 1.0 12770 +8434 RECK reversion inducing cysteine rich protein with kazal motifs Novel N 0.0010288363363327702 -0.28676720577026693 1.0 12771 +11117 EMILIN1 elastin microfibril interfacer 1 Novel U 0.0010284210134328064 -0.28677078655739735 1.0 12772 +58472 SQOR sulfide quinone oxidoreductase Novel N 0.001028271510527524 -0.28677207552576206 1.0 12773 +102724101 TP53TG3E TP53 target 3 family member E Novel U 0.0010279432750162835 -0.2867749054720388 1.0 12774 +3217 HOXB7 homeobox B7 Novel N 0.0010275983818126926 -0.2867778790358488 1.0 12775 +128859 BPIFB6 BPI fold containing family B member 6 Novel U 0.0010272972722039746 -0.286780475110883 1.0 12776 +124045 SPATA33 spermatogenesis associated 33 Novel U 0.0010268243859464273 -0.28678455219169247 1.0 12777 +146050 ZSCAN29 zinc finger and SCAN domain containing 29 Novel U 0.00102598757002916 -0.28679176696281955 1.0 12778 +10865 ARID5A AT-rich interaction domain 5A Novel N 0.0010257442644772835 -0.2867938646689393 1.0 12779 +10930 APOBEC2 apolipoprotein B mRNA editing enzyme catalytic subunit 2 Novel N 0.0010257180515723843 -0.28679409066859524 1.0 12780 +25932 CLIC4 chloride intracellular channel 4 Novel N 0.0010256534255212533 -0.2867946478546599 1.0 12781 +22885 ABLIM3 actin binding LIM protein family member 3 Novel N 0.0010256253627629764 -0.28679488980318646 1.0 12782 +196120 SSU72L5 SSU72 like 5 Novel U 0.001025467307875985 -0.28679625250412416 1.0 12783 +284323 ZNF780A zinc finger protein 780A Novel U 0.0010254270253703573 -0.2867965998075783 1.0 12784 +1472 CST4 cystatin S Novel N 0.001025262486399503 -0.2867980184123057 1.0 12785 +9512 PMPCB peptidase, mitochondrial processing subunit beta Novel U 0.0010251888282549082 -0.2867986534703202 1.0 12786 +55897 MESP1 mesoderm posterior bHLH transcription factor 1 Novel N 0.0010246936892987662 -0.28680292240709704 1.0 12787 +102800317 TPTEP2-CSNK1E TPTEP2-CSNK1E readthrough Novel U 0.0010240070575621145 -0.28680884233611165 1.0 12788 +257000 TINCR TINCR ubiquitin domain containing Novel U 0.0010234257234196268 -0.2868138544214459 1.0 12789 +9524 TECR trans-2,3-enoyl-CoA reductase Novel N 0.0010234122200501834 -0.28681397084337096 1.0 12790 +1041 CDSN corneodesmosin Novel U 0.001022678027051955 -0.2868203008310492 1.0 12791 +784 CACNB3 calcium voltage-gated channel auxiliary subunit beta 3 Novel N 0.0010222286566367019 -0.28682417516545233 1.0 12792 +221395 ADGRF5 adhesion G protein-coupled receptor F5 Novel N 0.0010219551866851753 -0.28682653293980837 1.0 12793 +3073 HEXA hexosaminidase subunit alpha Novel N 0.0010217772876650608 -0.2868280667307979 1.0 12794 +256329 LMNTD2 lamin tail domain containing 2 Novel U 0.001021696166434771 -0.2868287661332567 1.0 12795 +6898 TAT tyrosine aminotransferase Novel U 0.0010213382000182987 -0.2868318524103133 1.0 12796 +8602 NOP14 NOP14 nucleolar protein Novel U 0.0010213175688054848 -0.28683203028632576 1.0 12797 +27019 DNAI1 dynein axonemal intermediate chain 1 Novel N 0.0010209601515873403 -0.28683511182836213 1.0 12798 +463 ZFHX3 zinc finger homeobox 3 Novel U 0.001020683950168117 -0.2868374931525979 1.0 12799 +284390 ZNF763 zinc finger protein 763 Novel U 0.0010205160987979214 -0.28683894031582025 1.0 12800 +84696 ABHD1 abhydrolase domain containing 1 Novel U 0.0010193177648987863 -0.28684927198451543 1.0 12801 +80320 SP6 Sp6 transcription factor Novel N 0.001018520393903072 -0.2868561466735824 1.0 12802 +55321 TMEM74B transmembrane protein 74B Novel U 0.0010179709853056834 -0.2868608835066225 1.0 12803 +29926 GMPPA GDP-mannose pyrophosphorylase A Novel U 0.0010178244389924703 -0.28686214698415385 1.0 12804 +388272 C16orf87 chromosome 16 open reading frame 87 Novel U 0.001017757508053817 -0.2868627240422544 1.0 12805 +10523 CHERP calcium homeostasis endoplasmic reticulum protein Novel N 0.0010177269791087355 -0.28686298725348996 1.0 12806 +54014 BRWD1 bromodomain and WD repeat domain containing 1 Novel U 0.0010177078225497211 -0.28686315241548793 1.0 12807 +56128 PCDHB8 protocadherin beta 8 Novel U 0.0010176167673230884 -0.2868639374658276 1.0 12808 +5428 POLG DNA polymerase gamma, catalytic subunit Novel U 0.0010163763403668907 -0.2868746320479981 1.0 12809 +9254 CACNA2D2 calcium voltage-gated channel auxiliary subunit alpha2delta 2 Novel N 0.001015636613734399 -0.28688100974498015 1.0 12810 +4025 LPO lactoperoxidase Novel N 0.0010155595252662544 -0.28688167437819606 1.0 12811 +6332 SCN7A sodium voltage-gated channel alpha subunit 7 Novel N 0.0010151141280326955 -0.2868855144570407 1.0 12812 +126206 NLRP5 NLR family pyrin domain containing 5 Novel N 0.0010150350195516698 -0.28688619650619035 1.0 12813 +23087 TRIM35 tripartite motif containing 35 Novel N 0.0010150247286461916 -0.2868862852312328 1.0 12814 +645832 SEBOX SEBOX homeobox Novel U 0.001014954410837965 -0.2868868914898878 1.0 12815 +283991 UBALD2 UBA like domain containing 2 Novel U 0.001014836860237723 -0.28688790497524236 1.0 12816 +7029 TFDP2 transcription factor Dp-2 Novel N 0.0010147951775944448 -0.2868882643502554 1.0 12817 +140732 SUN5 Sad1 and UNC84 domain containing 5 Novel N 0.0010146842113369036 -0.2868892210674192 1.0 12818 +10250 SRRM1 serine and arginine repetitive matrix 1 Novel N 0.0010142212758817372 -0.2868932123554513 1.0 12819 +51768 TM7SF3 transmembrane 7 superfamily member 3 Novel U 0.0010132177448294 -0.2869018644935286 1.0 12820 +5464 PPA1 inorganic pyrophosphatase 1 Novel U 0.0010130937546064414 -0.2869029334993425 1.0 12821 +163227 ZNF100 zinc finger protein 100 Novel U 0.001013069436501188 -0.2869031431626149 1.0 12822 +6652 SORD sorbitol dehydrogenase Novel U 0.0010130062182723235 -0.28690368821086615 1.0 12823 +79903 NAA60 N-alpha-acetyltransferase 60, NatF catalytic subunit Novel N 0.0010130005974168992 -0.286903736672164 1.0 12824 +8875 VNN2 vanin 2 Novel N 0.0010125148547767315 -0.2869079245967758 1.0 12825 +433 ASGR2 asialoglycoprotein receptor 2 Novel N 0.001012503263796408 -0.2869080245306663 1.0 12826 +401466 RBIS ribosomal biogenesis factor Novel N 0.0010124775494084937 -0.2869082462322611 1.0 12827 +100130890 TSTD3 thiosulfate sulfurtransferase like domain containing 3 Novel U 0.0010120012704483113 -0.286912352563916 1.0 12828 +202500 TCTE1 t-complex-associated-testis-expressed 1 Novel U 0.0010116862881594541 -0.2869150682449592 1.0 12829 +10214 SSX3 SSX family member 3 Novel U 0.0010116793046312988 -0.28691512845480494 1.0 12830 +93624 TADA2B transcriptional adaptor 2B Novel U 0.001011266115812626 -0.28691869084253857 1.0 12831 +26019 UPF2 UPF2 regulator of nonsense mediated mRNA decay Novel N 0.0010109197554353327 -0.2869216770558719 1.0 12832 +2553 GABPB1 GA binding protein transcription factor subunit beta 1 Novel N 0.0010108784766094082 -0.28692203294929514 1.0 12833 +116 ADCYAP1 adenylate cyclase activating polypeptide 1 Novel U 0.001010788424839997 -0.2869228093481333 1.0 12834 +53354 PANK1 pantothenate kinase 1 Novel N 0.001010346731053292 -0.2869266174969909 1.0 12835 +114515518 CCDC201 coiled-coil domain containing 201 Novel U 0.0010102891925540683 -0.2869271135763487 1.0 12836 +521 ATP5ME ATP synthase membrane subunit e Novel N 0.0010102190689189059 -0.28692771816090296 1.0 12837 +10921 RNPS1 RNA binding protein with serine rich domain 1 Novel N 0.001010090035297719 -0.2869288306493551 1.0 12838 +376132 LRRC10 leucine rich repeat containing 10 Novel U 0.0010097857227159524 -0.28693145433944417 1.0 12839 +8785 MATN4 matrilin 4 Novel U 0.0010091579954236436 -0.28693686641233956 1.0 12840 +26147 PHF19 PHD finger protein 19 Novel N 0.0010086176585362822 -0.28694152503186793 1.0 12841 +166012 CHST13 carbohydrate sulfotransferase 13 Novel N 0.0010083862119451784 -0.28694352049365174 1.0 12842 +1654 DDX3X DEAD-box helicase 3 X-linked Novel U 0.0010082036127698072 -0.28694509480794367 1.0 12843 +5165 PDK3 pyruvate dehydrogenase kinase 3 Novel U 0.0010081469138471326 -0.28694558364872913 1.0 12844 +29893 PSMC3IP PSMC3 interacting protein Novel U 0.0010081276512502522 -0.2869457497249532 1.0 12845 +8350 H3C1 H3 clustered histone 1 Novel U 0.0010076747466753655 -0.2869496545298007 1.0 12846 +79161 TMEM243 transmembrane protein 243 Novel U 0.0010076135150777028 -0.2869501824499248 1.0 12847 +1393 CRHBP corticotropin releasing hormone binding protein Novel U 0.001007220847686458 -0.28695356790818205 1.0 12848 +280664 WFDC10B WAP four-disulfide core domain 10B Novel U 0.001007078209146433 -0.2869547976940871 1.0 12849 +4714 NDUFB8 NADH:ubiquinone oxidoreductase subunit B8 Novel N 0.00100693845817888 -0.28695600258422466 1.0 12850 +26090 ABHD12 abhydrolase domain containing 12, lysophospholipase Novel U 0.0010056895638758591 -0.2869667701692721 1.0 12851 +101410538 MMP24OS MMP24 opposite strand Novel U 0.0010055839598371319 -0.28696768065502387 1.0 12852 +3988 LIPA lipase A, lysosomal acid type Novel U 0.0010055559998533397 -0.2869679217174602 1.0 12853 +1548 CYP2A6 cytochrome P450 family 2 subfamily A member 6 Novel U 0.0010043314645369775 -0.28697847928676823 1.0 12854 +56156 TEX13B testis expressed 13B Novel U 0.0010036898480806722 -0.2869840111077913 1.0 12855 +388327 C17orf100 chromosome 17 open reading frame 100 Novel U 0.001003475465819706 -0.2869858594461351 1.0 12856 +58529 MYOZ1 myozenin 1 Novel U 0.001003188503316857 -0.28698833354914555 1.0 12857 +57419 SLC24A3 solute carrier family 24 member 3 Novel N 0.0010031248222650134 -0.2869888825877151 1.0 12858 +65121 PRAMEF1 PRAME family member 1 Novel U 0.001002499573325443 -0.28699427329301047 1.0 12859 +79738 BBS10 Bardet-Biedl syndrome 10 Novel U 0.0010023283772588227 -0.2869957492931833 1.0 12860 +653604 H3C13 H3 clustered histone 13 Novel N 0.001002319761131793 -0.28699582357879766 1.0 12861 +7200 TRH thyrotropin releasing hormone Novel N 0.0010020951863014007 -0.28699775979436043 1.0 12862 +80303 EFHD1 EF-hand domain family member D1 Novel N 0.0010018636981650444 -0.28699975561433466 1.0 12863 +35 ACADS acyl-CoA dehydrogenase short chain Novel N 0.0010018582230318814 -0.28699980281925974 1.0 12864 +221091 LRRN4CL LRRN4 C-terminal like Novel U 0.0010017545171734186 -0.2870006969394813 1.0 12865 +79980 DSN1 DSN1 component of MIS12 kinetochore complex Novel U 0.0010015050906081846 -0.2870028474191077 1.0 12866 +81894 SLC25A28 solute carrier family 25 member 28 Novel U 0.0010014132827684359 -0.2870036389582477 1.0 12867 +284023 RNF227 ring finger protein 227 Novel U 0.0010013992431790308 -0.28700376000329736 1.0 12868 +5406 PNLIP pancreatic lipase Novel U 0.0010013108841004888 -0.2870045218082721 1.0 12869 +3321 IGSF3 immunoglobulin superfamily member 3 Novel U 0.0010010329974752298 -0.28700691766183933 1.0 12870 +79228 THOC6 THO complex subunit 6 Novel U 0.0010004132702343444 -0.2870122607607359 1.0 12871 +147658 ZNF534 zinc finger protein 534 Novel U 0.000999698049562249 -0.28701842717481585 1.0 12872 +63977 PRDM15 PR/SET domain 15 Novel U 0.0009996617820148834 -0.2870187398625267 1.0 12873 +2563 GABRD gamma-aminobutyric acid type A receptor subunit delta Novel U 0.000999604188977412 -0.2870192364120967 1.0 12874 +4317 MMP8 matrix metallopeptidase 8 Novel U 0.0009995377849856177 -0.2870198089270224 1.0 12875 +4358 MPV17 mitochondrial inner membrane protein MPV17 Novel U 0.0009993875092639333 -0.287021104558374 1.0 12876 +23244 PDS5A PDS5 cohesin associated factor A Novel U 0.0009993727842692686 -0.28702123151277836 1.0 12877 +8337 H2AC18 H2A clustered histone 18 Novel U 0.0009988329244294224 -0.28702588601934886 1.0 12878 +7369 UMOD uromodulin Novel U 0.0009985899262628306 -0.28702798107528654 1.0 12879 +84000 TMPRSS13 transmembrane serine protease 13 Novel U 0.000998525148866668 -0.2870285395662018 1.0 12880 +4729 NDUFV2 NADH:ubiquinone oxidoreductase core subunit V2 Novel N 0.0009982450961321867 -0.2870309540953009 1.0 12881 +53919 SLCO1C1 solute carrier organic anion transporter family member 1C1 Novel N 0.000998137824321613 -0.2870318789600718 1.0 12882 +83259 PCDH11Y protocadherin 11 Y-linked Novel U 0.0009979892178694162 -0.287033160199492 1.0 12883 +10998 SLC27A5 solute carrier family 27 member 5 Novel N 0.000997859888839905 -0.28703427523486447 1.0 12884 +143 PARP4 poly(ADP-ribose) polymerase family member 4 Novel N 0.0009977895289527935 -0.2870348818563108 1.0 12885 +63931 MRPS14 mitochondrial ribosomal protein S14 Novel N 0.0009976398576818327 -0.287036172276273 1.0 12886 +28974 C19orf53 chromosome 19 open reading frame 53 Novel U 0.0009973561013750206 -0.28703861873644093 1.0 12887 +7579 ZSCAN20 zinc finger and SCAN domain containing 20 Novel U 0.000997332979250871 -0.28703881808832976 1.0 12888 +1346 COX7A1 cytochrome c oxidase subunit 7A1 Novel N 0.0009972557044023737 -0.2870394843284601 1.0 12889 +80119 PIF1 PIF1 5'-to-3' DNA helicase Novel U 0.000996780634005276 -0.28704358024025334 1.0 12890 +6634 SNRPD3 small nuclear ribonucleoprotein D3 polypeptide Novel N 0.0009966947947981253 -0.2870443203196669 1.0 12891 +23060 ZNF609 zinc finger protein 609 Novel N 0.0009966588946369777 -0.28704462983988605 1.0 12892 +404217 CTXN1 cortexin 1 Novel U 0.0009961260162464367 -0.28704922415453404 1.0 12893 +25821 MTO1 mitochondrial tRNA translation optimization 1 Novel N 0.000996073614392861 -0.28704967594730274 1.0 12894 +1164 CKS2 CDC28 protein kinase regulatory subunit 2 Novel U 0.0009958103830234055 -0.28705194544773277 1.0 12895 +2730 GCLM glutamate-cysteine ligase modifier subunit Novel N 0.0009956051875820355 -0.28705371458012524 1.0 12896 +401661 OR51C1P olfactory receptor family 51 subfamily C member 1 pseudogene Novel U 0.0009950931915732888 -0.28705812885325854 1.0 12897 +6880 TAF9 TATA-box binding protein associated factor 9 Novel U 0.0009949803906502239 -0.28705910138834784 1.0 12898 +11238 CA5B carbonic anhydrase 5B Novel U 0.0009947451650494698 -0.28706112943159806 1.0 12899 +1371 CPOX coproporphyrinogen oxidase Novel U 0.0009947022438177788 -0.287061499485342 1.0 12900 +84614 ZBTB37 zinc finger and BTB domain containing 37 Novel U 0.000994583187057706 -0.28706252595634635 1.0 12901 +159989 DEUP1 deuterosome assembly protein 1 Novel U 0.0009944906171513637 -0.28706332406579155 1.0 12902 +22894 DIS3 DIS3 homolog, exosome endoribonuclease and 3'-5' exoribonuclease Novel N 0.0009941596039622505 -0.28706617796035816 1.0 12903 +54578 UGT1A6 UDP glucuronosyltransferase family 1 member A6 Novel N 0.0009940787031740496 -0.2870668754622326 1.0 12904 +55454 CSGALNACT2 chondroitin sulfate N-acetylgalactosaminyltransferase 2 Novel N 0.0009940732518191695 -0.2870669224621486 1.0 12905 +11056 DDX52 DExD-box helicase 52 Novel U 0.0009938677548500248 -0.28706869419422143 1.0 12906 +1891 ECH1 enoyl-CoA hydratase 1 Novel U 0.000993835411258104 -0.2870689730507875 1.0 12907 +7881 KCNAB1 potassium voltage-gated channel subfamily A regulatory beta subunit 1 Novel U 0.0009937309873486806 -0.28706987336182505 1.0 12908 +148867 SLC30A7 solute carrier family 30 member 7 Novel U 0.000993492282533325 -0.2870719314018004 1.0 12909 +92591 ASB16 ankyrin repeat and SOCS box containing 16 Novel U 0.0009932844148852324 -0.28707372357314265 1.0 12910 +55689 YEATS2 YEATS domain containing 2 Novel U 0.000992931295517626 -0.28707676806042504 1.0 12911 +55175 KLHL11 kelch like family member 11 Novel U 0.0009928852974327859 -0.28707716464185656 1.0 12912 +55111 PLEKHJ1 pleckstrin homology domain containing J1 Novel U 0.0009928501810140332 -0.2870774674048883 1.0 12913 +5152 PDE9A phosphodiesterase 9A Novel N 0.0009928243266067688 -0.28707769031368724 1.0 12914 +338567 KCNK18 potassium two pore domain channel subfamily K member 18 Novel U 0.0009926765833605884 -0.2870789641108089 1.0 12915 +142683 ITLN2 intelectin 2 Novel U 0.000992471010167273 -0.2870807365000632 1.0 12916 +167555 FAM151B family with sequence similarity 151 member B Novel U 0.0009921877345908966 -0.2870831788155203 1.0 12917 +54855 TENT5C terminal nucleotidyltransferase 5C Novel N 0.0009920136371753658 -0.28708467983023683 1.0 12918 +6561 SLC13A1 solute carrier family 13 member 1 Novel U 0.0009917192326602139 -0.2870872180960033 1.0 12919 +26151 NAT9 N-acetyltransferase 9 (putative) Novel U 0.0009917102250020635 -0.2870872957572793 1.0 12920 +64772 ENGASE endo-beta-N-acetylglucosaminidase Novel U 0.0009916831358819476 -0.28708752931139514 1.0 12921 +79819 DNAI4 dynein axonemal intermediate chain 4 Novel U 0.000991531643398186 -0.28708883543329755 1.0 12922 +340533 NEXMIF neurite extension and migration factor Novel U 0.0009914832077098212 -0.2870892530310018 1.0 12923 +2122 MECOM MDS1 and EVI1 complex locus Novel U 0.0009911802051762876 -0.28709186542625537 1.0 12924 +102723547 CSAG2 CSAG family member 2 Novel N 0.0009909836881387955 -0.2870935597361015 1.0 12925 +29968 PSAT1 phosphoserine aminotransferase 1 Novel U 0.0009907860689310829 -0.28709526354852255 1.0 12926 +79699 ZYG11B zyg-11 family member B, cell cycle regulator Novel U 0.000990710632137821 -0.28709591394150236 1.0 12927 +1769 DNAH8 dynein axonemal heavy chain 8 Novel N 0.0009905355275771144 -0.28709742363951685 1.0 12928 +56146 PCDHA2 protocadherin alpha 2 Novel U 0.0009895274897636945 -0.28710611463351116 1.0 12929 +4552 MTRR 5-methyltetrahydrofolate-homocysteine methyltransferase reductase Novel U 0.0009893686366430096 -0.28710748421657584 1.0 12930 +51341 ZBTB7A zinc finger and BTB domain containing 7A Novel U 0.0009887903069211467 -0.28711247039871357 1.0 12931 +254187 TSGA10IP testis specific 10 interacting protein Novel U 0.0009884104035124768 -0.2871157458098134 1.0 12932 +55802 DCP1A decapping mRNA 1A Novel N 0.0009879338770215724 -0.28711985427560255 1.0 12933 +4154 MBNL1 muscleblind like splicing regulator 1 Novel N 0.000987286210518279 -0.28712543825828196 1.0 12934 +11061 CNMD chondromodulin Novel U 0.0009871305995709458 -0.2871267798883188 1.0 12935 +345062 PRSS48 serine protease 48 Novel U 0.0009871093680485837 -0.2871269629400167 1.0 12936 +255043 TMEM86B transmembrane protein 86B Novel U 0.0009870016230873677 -0.28712789188414795 1.0 12937 +23514 SPIDR scaffold protein involved in DNA repair Novel U 0.0009866678282540531 -0.28713076976120083 1.0 12938 +388677 NOTCH2NLA notch 2 N-terminal like A Novel U 0.0009860515246234091 -0.2871360833427761 1.0 12939 +127933 UHMK1 U2AF homology motif kinase 1 Novel U 0.0009860308009910685 -0.28713626201560144 1.0 12940 +129607 CMPK2 cytidine/uridine monophosphate kinase 2 Novel U 0.0009859221768750309 -0.28713719853953695 1.0 12941 +9669 EIF5B eukaryotic translation initiation factor 5B Novel N 0.0009855645384733984 -0.2871402819885498 1.0 12942 +55001 TTC22 tetratricopeptide repeat domain 22 Novel U 0.0009853545999982966 -0.2871420920139298 1.0 12943 +80704 SLC19A3 solute carrier family 19 member 3 Novel N 0.0009853282927779865 -0.2871423188267444 1.0 12944 +2107 ETF1 eukaryotic translation termination factor 1 Novel U 0.0009848472728719623 -0.28714646603338556 1.0 12945 +91894 C11orf52 chromosome 11 open reading frame 52 Novel U 0.0009847675742141366 -0.28714715317085926 1.0 12946 +339977 LRRC66 leucine rich repeat containing 66 Novel U 0.0009846824524070074 -0.2871478870650691 1.0 12947 +728586 CCDC192 coiled-coil domain containing 192 Novel U 0.0009846463440056344 -0.28714819838067185 1.0 12948 +10295 BCKDK branched chain keto acid dehydrogenase kinase Novel N 0.0009844322032274522 -0.2871500446370249 1.0 12949 +11054 OGFR opioid growth factor receptor Novel U 0.0009839217252328577 -0.287154445822304 1.0 12950 +2559 GABRA6 gamma-aminobutyric acid type A receptor subunit alpha6 Novel N 0.0009837086707167497 -0.28715628271323734 1.0 12951 +388389 CCDC103 coiled-coil domain containing 103 Novel U 0.0009835471801603547 -0.2871576750354668 1.0 12952 +284353 NKPD1 NTPase KAP family P-loop domain containing 1 Novel U 0.0009832015913288452 -0.28716065459676815 1.0 12953 +56203 LMOD3 leiomodin 3 Novel U 0.0009828134359167301 -0.28716400115412005 1.0 12954 +729359 PLIN4 perilipin 4 Novel N 0.0009826890395706227 -0.2871650736614036 1.0 12955 +84891 ZSCAN10 zinc finger and SCAN domain containing 10 Novel U 0.0009826295268245823 -0.2871655867621142 1.0 12956 +375704 ENHO energy homeostasis associated Novel U 0.0009825121792557887 -0.28716659849699366 1.0 12957 +6205 RPS11 ribosomal protein S11 Novel N 0.0009822531599854073 -0.28716883168199253 1.0 12958 +1431 CS citrate synthase Novel N 0.0009821364962766116 -0.2871698375208401 1.0 12959 +29940 DSE dermatan sulfate epimerase Novel U 0.00098196403164772 -0.2871713244581692 1.0 12960 +9054 NFS1 NFS1 cysteine desulfurase Novel N 0.0009817736692989073 -0.28717296570417034 1.0 12961 +5730 PTGDS prostaglandin D2 synthase Novel N 0.0009813380725477447 -0.28717672128625055 1.0 12962 +102723555 SPDYE16 speedy/RINGO cell cycle regulator family member E16 Novel U 0.00098066322594154 -0.2871825396074717 1.0 12963 +64897 C12orf43 chromosome 12 open reading frame 43 Novel U 0.0009805852527660197 -0.2871832118683642 1.0 12964 +196441 ZFC3H1 zinc finger C3H1-type containing Novel U 0.0009803786892992362 -0.2871849927954539 1.0 12965 +84630 TTBK1 tau tubulin kinase 1 Novel U 0.0009796438467560872 -0.28719132838331 1.0 12966 +9189 ZBED1 zinc finger BED-type containing 1 Novel U 0.000979392100157937 -0.2871934988655513 1.0 12967 +1345 COX6C cytochrome c oxidase subunit 6C Novel N 0.0009791187419566103 -0.2871958556764312 1.0 12968 +3892 KRT86 keratin 86 Novel U 0.0009788407510171856 -0.2871982524293633 1.0 12969 +1347 COX7A2 cytochrome c oxidase subunit 7A2 Novel U 0.0009782703945405442 -0.28720316986861716 1.0 12970 +414149 ACBD7 acyl-CoA binding domain containing 7 Novel U 0.000978038494886322 -0.28720516923657274 1.0 12971 +653404 FOXD4L6 forkhead box D4 like 6 Novel U 0.000977394876285619 -0.287210718319473 1.0 12972 +100127983 C8orf88 chromosome 8 open reading frame 88 Novel U 0.0009771048638899846 -0.2872132187177271 1.0 12973 +5968 REG1B regenerating family member 1 beta Novel U 0.0009769898715814725 -0.2872142101462721 1.0 12974 +128869 PIGU phosphatidylinositol glycan anchor biosynthesis class U Novel U 0.0009768803918071057 -0.2872151540474322 1.0 12975 +64091 POPDC2 popeye domain containing 2 Novel U 0.0009764532874389675 -0.28721883641078105 1.0 12976 +100131897 INSYN2B inhibitory synaptic factor family member 2B Novel U 0.0009764395060196528 -0.2872189552299671 1.0 12977 +51351 ZNF117 zinc finger protein 117 Novel U 0.0009763061981585934 -0.28722010456960934 1.0 12978 +146664 MGAT5B alpha-1,6-mannosylglycoprotein 6-beta-N-acetylglucosaminyltransferase B Novel N 0.0009762900160691023 -0.2872202440866401 1.0 12979 +120 ADD3 adducin 3 Novel N 0.0009762119998201241 -0.28722091671889877 1.0 12980 +9617 MTRF1 mitochondrial translation release factor 1 Novel U 0.0009761951212999911 -0.2872210622403417 1.0 12981 +341883 LRRC9 leucine rich repeat containing 9 Novel U 0.000976025571952235 -0.2872225240430077 1.0 12982 +5080 PAX6 paired box 6 Novel U 0.0009758562733630233 -0.28722398368371016 1.0 12983 +760 CA2 carbonic anhydrase 2 Novel U 0.0009756172556313389 -0.2872260444215544 1.0 12984 +283254 HARBI1 harbinger transposase derived 1 Novel U 0.0009750153986715914 -0.28723123344834783 1.0 12985 +4722 NDUFS3 NADH:ubiquinone oxidoreductase core subunit S3 Novel U 0.0009742030345873059 -0.2872382374032429 1.0 12986 +9752 PCDHA9 protocadherin alpha 9 Novel U 0.0009739261732945401 -0.28724062441670667 1.0 12987 +23414 ZFPM2 zinc finger protein, FOG family member 2 Novel U 0.0009734065579985822 -0.28724510438100603 1.0 12988 +3854 KRT6B keratin 6B Novel N 0.000973233732983369 -0.28724659442547584 1.0 12989 +170062 FAM47B family with sequence similarity 47 member B Novel U 0.0009729559406812815 -0.28724898946581756 1.0 12990 +56647 BCCIP BRCA2 and CDKN1A interacting protein Novel U 0.0009728202944576652 -0.2872501589661072 1.0 12991 +8148 TAF15 TATA-box binding protein associated factor 15 Novel U 0.0009725884564013081 -0.28725215780298474 1.0 12992 +440957 UQCC5 ubiquinol-cytochrome c reductase complex assembly factor 5 Novel N 0.0009725326691571511 -0.2872526387835566 1.0 12993 +388849 CCDC188 coiled-coil domain containing 188 Novel U 0.0009719698796731259 -0.2872574909825124 1.0 12994 +1356 CP ceruloplasmin Novel N 0.0009718294201895985 -0.28725870198125825 1.0 12995 +389432 SAMD5 sterile alpha motif domain containing 5 Novel U 0.000971506976209522 -0.28726148199472307 1.0 12996 +51300 TIMMDC1 translocase of inner mitochondrial membrane domain containing 1 Novel N 0.0009708267303156496 -0.2872673468669526 1.0 12997 +8427 ZNF282 zinc finger protein 282 Novel N 0.0009707936604185616 -0.28726763198549987 1.0 12998 +54793 KCTD9 potassium channel tetramerization domain containing 9 Novel U 0.0009705713387796961 -0.2872695487747338 1.0 12999 +6286 S100P S100 calcium binding protein P Novel N 0.0009702529091900431 -0.2872722941773511 1.0 13000 +55676 SLC30A6 solute carrier family 30 member 6 Novel N 0.0009698566114484969 -0.2872757109353793 1.0 13001 +3858 KRT10 keratin 10 Novel U 0.0009698497046803126 -0.287275770483424 1.0 13002 +54901 CDKAL1 CDK5 regulatory subunit associated protein 1 like 1 Novel U 0.000969557595044188 -0.2872782889634447 1.0 13003 +4047 LSS lanosterol synthase Novel U 0.0009690126833598723 -0.2872829870254745 1.0 13004 +57697 FANCM FA complementation group M Novel U 0.0009689484524531776 -0.28728354080472457 1.0 13005 +100288287 KRTAP22-2 keratin associated protein 22-2 Novel U 0.0009688848312472947 -0.28728408932732047 1.0 13006 +6334 SCN8A sodium voltage-gated channel alpha subunit 8 Novel U 0.0009682449715642643 -0.2872896060019812 1.0 13007 +85329 LGALS12 galectin 12 Novel N 0.0009680793021924874 -0.28729103435267994 1.0 13008 +5236 PGM1 phosphoglucomutase 1 Novel U 0.0009677951085761133 -0.28729348458319737 1.0 13009 +114908 TMEM123 transmembrane protein 123 Novel U 0.0009676474264284331 -0.2872947578535464 1.0 13010 +388284 C16orf86 chromosome 16 open reading frame 86 Novel U 0.0009676012142111974 -0.28729515628116203 1.0 13011 +79839 CCDC102B coiled-coil domain containing 102B Novel N 0.0009674289123572152 -0.2872966418150956 1.0 13012 +100127206 MINAR2 membrane integral NOTCH2 associated receptor 2 Novel U 0.0009671159394964542 -0.2872993401714638 1.0 13013 +80772 CPTP ceramide-1-phosphate transfer protein Novel U 0.0009670585684863002 -0.2872998348067821 1.0 13014 +8087 FXR1 FMR1 autosomal homolog 1 Novel U 0.0009670240444489254 -0.2873001324624826 1.0 13015 +23029 RBM34 RNA binding motif protein 34 Novel U 0.000966938678650689 -0.28730086846030917 1.0 13016 +51309 ARMCX1 armadillo repeat containing X-linked 1 Novel U 0.0009664349781490482 -0.2873052112121151 1.0 13017 +151963 MB21D2 Mab-21 domain containing 2 Novel U 0.0009663738361834689 -0.2873057383594588 1.0 13018 +79605 PGBD5 piggyBac transposable element derived 5 Novel N 0.0009657069545035977 -0.287311488009519 1.0 13019 +199964 TMEM61 transmembrane protein 61 Novel U 0.0009653254574218116 -0.28731477716078146 1.0 13020 +125 ADH1B alcohol dehydrogenase 1B (class I), beta polypeptide Novel U 0.000964740615609563 -0.2873198194881726 1.0 13021 +2301 FOXE3 forkhead box E3 Novel U 0.0009647295431515202 -0.2873199149515223 1.0 13022 +84181 CHD6 chromodomain helicase DNA binding protein 6 Novel N 0.0009639410072235187 -0.28732671346733524 1.0 13023 +220416 LRRC63 leucine rich repeat containing 63 Novel U 0.0009633905328011301 -0.28733145948959277 1.0 13024 +57473 ZNF512B zinc finger protein 512B Novel N 0.0009633192115289225 -0.2873320743998076 1.0 13025 +3219 HOXB9 homeobox B9 Novel U 0.0009632594510952963 -0.28733258963600494 1.0 13026 +5523 PPP2R3A protein phosphatase 2 regulatory subunit B''alpha Novel U 0.0009632020006970698 -0.2873330849557829 1.0 13027 +79780 CCDC82 coiled-coil domain containing 82 Novel U 0.0009629016447750623 -0.28733567453276065 1.0 13028 +646000 SLC35G4 solute carrier family 35 member G4 Novel U 0.0009628590902567987 -0.28733604142481345 1.0 13029 +79823 CAMKMT calmodulin-lysine N-methyltransferase Novel U 0.0009627290109198512 -0.2873371629291074 1.0 13030 +389493 NUPR2 nuclear protein 2, transcriptional regulator Novel N 0.0009623337461001216 -0.2873405707815993 1.0 13031 +51174 TUBD1 tubulin delta 1 Novel U 0.0009616882215130746 -0.28734613629733147 1.0 13032 +6580 SLC22A1 solute carrier family 22 member 1 Novel U 0.0009611353169284234 -0.2873509032717054 1.0 13033 +27173 SLC39A1 solute carrier family 39 member 1 Novel N 0.0009609940666324391 -0.2873521210885946 1.0 13034 +5441 POLR2L RNA polymerase II, I and III subunit L Novel N 0.0009605864426885248 -0.28735563549767856 1.0 13035 +158427 TSTD2 thiosulfate sulfurtransferase like domain containing 2 Novel U 0.0009605741068717432 -0.2873557418533213 1.0 13036 +25819 NOCT nocturnin Novel N 0.0009604990043482506 -0.28735638936432933 1.0 13037 +3992 FADS1 fatty acid desaturase 1 Novel U 0.0009602041570476562 -0.28735893144765645 1.0 13038 +154150 HDGFL1 HDGF like 1 Novel U 0.0009597345583632113 -0.2873629801840153 1.0 13039 +56121 PCDHB15 protocadherin beta 15 Novel U 0.000959698273487972 -0.2873632930211218 1.0 13040 +51299 NRN1 neuritin 1 Novel U 0.0009594542575959691 -0.287365396851577 1.0 13041 +1179 CLCA1 chloride channel accessory 1 Novel N 0.0009591636870788715 -0.2873679020617838 1.0 13042 +81602 CDADC1 cytidine and dCMP deaminase domain containing 1 Novel N 0.0009559870421666717 -0.28739529012350756 1.0 13043 +6666 SOX12 SRY-box transcription factor 12 Novel U 0.0009557939545708027 -0.28739695486575606 1.0 13044 +54851 ANKRD49 ankyrin repeat domain 49 Novel N 0.000955724588010305 -0.28739755292304386 1.0 13045 +7941 PLA2G7 phospholipase A2 group VII Novel U 0.0009550187937871306 -0.28740363806516167 1.0 13046 +10317 B3GALT5 beta-1,3-galactosyltransferase 5 Novel N 0.000954962834623383 -0.2874041205279717 1.0 13047 +55005 RMND1 required for meiotic nuclear division 1 homolog Novel U 0.0009545205589351883 -0.2874079336938061 1.0 13048 +56137 PCDHA12 protocadherin alpha 12 Novel U 0.0009543758515849855 -0.2874091813163603 1.0 13049 +3047 HBG1 hemoglobin subunit gamma 1 Novel U 0.0009538474856404498 -0.2874137367260776 1.0 13050 +2330 FMO5 flavin containing dimethylaniline monoxygenase 5 Novel N 0.0009535749514023591 -0.2874160864329983 1.0 13051 +3418 IDH2 isocitrate dehydrogenase (NADP(+)) 2 Novel U 0.0009530097643541887 -0.28742095930301953 1.0 13052 +54494 C11orf71 chromosome 11 open reading frame 71 Novel U 0.0009528994395540356 -0.28742191048973376 1.0 13053 +80344 DCAF11 DDB1 and CUL4 associated factor 11 Novel U 0.0009528410200396382 -0.28742241416493525 1.0 13054 +10919 EHMT2 euchromatic histone lysine methyltransferase 2 Novel N 0.0009520543506210291 -0.28742919658827454 1.0 13055 +494197 SPANXN5 SPANX family member N5 Novel U 0.0009514794645765854 -0.28743415308007786 1.0 13056 +1265 CNN2 calponin 2 Novel U 0.0009512703316522793 -0.28743595616024503 1.0 13057 +147138 TMC8 transmembrane channel like 8 Novel U 0.0009512223664903039 -0.2874363697012145 1.0 13058 +753 LDLRAD4 low density lipoprotein receptor class A domain containing 4 Novel U 0.0009509109546549969 -0.28743905459889824 1.0 13059 +25817 TAFA5 TAFA chemokine like family member 5 Novel N 0.0009508377798466301 -0.28743968548973553 1.0 13060 +84970 C1orf94 chromosome 1 open reading frame 94 Novel U 0.0009508145634782165 -0.28743988565416956 1.0 13061 +112163659 TMDD1 transmembrane and death domain 1 Novel U 0.0009504683896211834 -0.28744287025938214 1.0 13062 +84844 PHF5A PHD finger protein 5A Novel N 0.0009504557683621786 -0.28744297907602057 1.0 13063 +10380 BPNT1 3'(2'), 5'-bisphosphate nucleotidase 1 Novel N 0.0009503809227195165 -0.2874436243722805 1.0 13064 +7125 TNNC2 troponin C2, fast skeletal type Novel U 0.000949958939300858 -0.28744726258436776 1.0 13065 +51548 SIRT6 sirtuin 6 Novel U 0.0009498084198670604 -0.2874485603169307 1.0 13066 +220081 ERICH6B glutamate rich 6B Novel U 0.0009495743094210009 -0.28745057874565794 1.0 13067 +115861 NXNL1 nucleoredoxin like 1 Novel N 0.0009494291927667076 -0.28745182989710694 1.0 13068 +57717 PCDHB16 protocadherin beta 16 Novel U 0.0009493921578410013 -0.2874521492009193 1.0 13069 +84076 TKTL2 transketolase like 2 Novel U 0.0009489817099622765 -0.28745568795710635 1.0 13070 +221143 EEF1AKMT1 EEF1A lysine methyltransferase 1 Novel N 0.0009487999126034939 -0.28745725535838074 1.0 13071 +80070 ADAMTS20 ADAM metallopeptidase with thrombospondin type 1 motif 20 Novel U 0.0009482092419705463 -0.2874623479400827 1.0 13072 +728082 CT47A3 cancer/testis antigen family 47 member A3 Novel U 0.000947921837346791 -0.2874648258549245 1.0 13073 +6660 SOX5 SRY-box transcription factor 5 Novel U 0.0009478182948442761 -0.287465718566741 1.0 13074 +10242 KCNMB2 potassium calcium-activated channel subfamily M regulatory beta subunit 2 Novel N 0.0009475663507452147 -0.2874678907517748 1.0 13075 +100505591 LRRC3C leucine rich repeat containing 3C Novel U 0.0009471777820296458 -0.28747124087250286 1.0 13076 +29995 LMCD1 LIM and cysteine rich domains 1 Novel N 0.0009470849476610704 -0.28747204126206066 1.0 13077 +256764 WDR72 WD repeat domain 72 Novel N 0.0009470097062524291 -0.2874726899704939 1.0 13078 +10730 YME1L1 YME1 like 1 ATPase Novel U 0.0009468988315288809 -0.2874736458984796 1.0 13079 +25841 ABTB2 ankyrin repeat and BTB domain containing 2 Novel U 0.0009465876587084512 -0.2874763287354501 1.0 13080 +23410 SIRT3 sirtuin 3 Novel N 0.0009463107877341715 -0.28747871583238505 1.0 13081 +85235 H2AC12 H2A clustered histone 12 Novel U 0.000945727001568191 -0.2874837490583166 1.0 13082 +338872 C1QTNF9 C1q and TNF related 9 Novel U 0.0009455626866890836 -0.28748516573099336 1.0 13083 +56098 PCDHGC4 protocadherin gamma subfamily C, 4 Novel U 0.0009455224962395468 -0.287485512240768 1.0 13084 +30833 NT5C 5', 3'-nucleotidase, cytosolic Novel N 0.0009453365744319872 -0.2874871152017794 1.0 13085 +54363 HAO1 hydroxyacid oxidase 1 Novel N 0.0009453328521145327 -0.28748714729446306 1.0 13086 +11005 SPINK5 serine peptidase inhibitor Kazal type 5 Novel U 0.0009452720610604443 -0.28748767141635506 1.0 13087 +84922 FIZ1 FLT3 interacting zinc finger 1 Novel U 0.0009451088427846312 -0.28748907863445333 1.0 13088 +164127 CCDC185 coiled-coil domain containing 185 Novel U 0.0009450619673259487 -0.2874894827803341 1.0 13089 +348262 MCRIP1 MAPK regulated corepressor interacting protein 1 Novel N 0.000944626417529052 -0.287493237957589 1.0 13090 +3483 IGFALS insulin like growth factor binding protein acid labile subunit Novel U 0.0009446202439337561 -0.2874932911844411 1.0 13091 +23247 KATNIP katanin interacting protein Novel N 0.0009443552490594707 -0.28749557588927094 1.0 13092 +341676 NEK5 NIMA related kinase 5 Novel U 0.0009442936663819859 -0.28749610683629795 1.0 13093 +285362 SUMF1 sulfatase modifying factor 1 Novel U 0.0009442148435100818 -0.2874967864230131 1.0 13094 +7553 ZNF7 zinc finger protein 7 Novel U 0.0009441571506467014 -0.28749728383325146 1.0 13095 +55652 SLC48A1 solute carrier family 48 member 1 Novel U 0.00094260015402117 -0.28751070778237464 1.0 13096 +375759 C9orf50 chromosome 9 open reading frame 50 Novel U 0.0009425879652075554 -0.28751081287060104 1.0 13097 +23379 ICE1 interactor of little elongation complex ELL subunit 1 Novel U 0.0009424047978488146 -0.2875123920835964 1.0 13098 +4212 MEIS2 Meis homeobox 2 Novel U 0.0009423818833515509 -0.28751258964538967 1.0 13099 +100505841 ZNF475 zinc finger protein 475 Novel U 0.0009415150697502959 -0.28752006304738154 1.0 13100 +146547 PRSS36 serine protease 36 Novel U 0.0009413509023777347 -0.28752147844830195 1.0 13101 +23395 LARS2 leucyl-tRNA synthetase 2, mitochondrial Novel U 0.000941283296080058 -0.2875220613291416 1.0 13102 +23314 SATB2 SATB homeobox 2 Novel U 0.0009411662327902396 -0.2875230706130546 1.0 13103 +285521 COX18 cytochrome c oxidase assembly factor COX18 Novel U 0.0009407274870062178 -0.2875268533451339 1.0 13104 +7737 RNF113A ring finger protein 113A Novel U 0.0009406144374511971 -0.2875278280238519 1.0 13105 +386746 MRGPRG MAS related GPR family member G Novel U 0.0009400143046675685 -0.2875330021853256 1.0 13106 +79711 IPO4 importin 4 Novel U 0.0009397465326872594 -0.28753531083351497 1.0 13107 +6871 TADA2A transcriptional adaptor 2A Novel U 0.0009396900548427705 -0.28753579776823185 1.0 13108 +1188 CLCNKB chloride voltage-gated channel Kb Novel U 0.0009388078036819733 -0.2875434042681447 1.0 13109 +51213 LUZP4 leucine zipper protein 4 Novel U 0.0009385243092401122 -0.28754584847059306 1.0 13110 +55683 KANSL3 KAT8 regulatory NSL complex subunit 3 Novel U 0.0009382058595838992 -0.2875485940462181 1.0 13111 +6421 SFPQ splicing factor proline and glutamine rich Novel U 0.0009381057810770234 -0.28754945689252265 1.0 13112 +23093 TTLL5 tubulin tyrosine ligase like 5 Novel N 0.0009379716840462311 -0.2875506130361452 1.0 13113 +725 C4BPB complement component 4 binding protein beta Novel U 0.0009379348128957707 -0.2875509309279375 1.0 13114 +55156 ARMC1 armadillo repeat containing 1 Novel U 0.0009379079489281384 -0.28755116254085744 1.0 13115 +2304 FOXE1 forkhead box E1 Novel U 0.0009378408942000655 -0.2875517406662325 1.0 13116 +23276 KLHL18 kelch like family member 18 Novel U 0.0009375608772053184 -0.2875541548871945 1.0 13117 +25914 RTTN rotatin Novel N 0.0009374976032472646 -0.28755470041592573 1.0 13118 +116154 PHACTR3 phosphatase and actin regulator 3 Novel U 0.0009373381813158329 -0.2875560749031029 1.0 13119 +23576 DDAH1 dimethylarginine dimethylaminohydrolase 1 Novel N 0.0009372532791828871 -0.28755680690334906 1.0 13120 +285423 IQCM IQ motif containing M Novel U 0.0009369778962927953 -0.2875591811704768 1.0 13121 +84861 KLHL22 kelch like family member 22 Novel U 0.0009369382722889965 -0.28755952279652935 1.0 13122 +26574 AATF apoptosis antagonizing transcription factor Novel N 0.000936876171438645 -0.2875600582110845 1.0 13123 +10440 TIMM17A translocase of inner mitochondrial membrane 17A Novel U 0.0009367268455686188 -0.2875613456531053 1.0 13124 +2165 F13B coagulation factor XIII B chain Novel U 0.0009361669400268462 -0.28756617298759235 1.0 13125 +2583 B4GALNT1 beta-1,4-N-acetyl-galactosaminyltransferase 1 Novel N 0.0009360661289283157 -0.2875670421500783 1.0 13126 +2744 GLS glutaminase Novel U 0.000936021315280049 -0.28756742851965966 1.0 13127 +80335 WDR82 WD repeat domain 82 Novel N 0.0009358097163764021 -0.28756925286074714 1.0 13128 +57575 PCDH10 protocadherin 10 Novel U 0.0009353421468084396 -0.2875732841026837 1.0 13129 +55101 DMAC2 distal membrane arm assembly component 2 Novel N 0.0009353272715504161 -0.28757341235261286 1.0 13130 +11285 B4GALT7 beta-1,4-galactosyltransferase 7 Novel U 0.0009353181879924794 -0.28757349066827365 1.0 13131 +83707 TRPT1 tRNA phosphotransferase 1 Novel U 0.0009351839787339475 -0.28757464777948943 1.0 13132 +25818 KLK5 kallikrein related peptidase 5 Novel U 0.0009349849145254231 -0.287576364050266 1.0 13133 +116844 LRG1 leucine rich alpha-2-glycoprotein 1 Novel U 0.0009348223862361738 -0.28757776531951096 1.0 13134 +9498 SLC4A8 solute carrier family 4 member 8 Novel N 0.00093434201215961 -0.2875819069580079 1.0 13135 +4901 NRL neural retina leucine zipper Novel N 0.0009343378234493508 -0.28758194307178775 1.0 13136 +4520 MTF1 metal regulatory transcription factor 1 Novel N 0.0009339393012511522 -0.2875853790084015 1.0 13137 +7486 WRN WRN RecQ like helicase Novel U 0.0009330909060268407 -0.2875926936127755 1.0 13138 +100288797 TMEM239 transmembrane protein 239 Novel U 0.0009327202314096032 -0.28759588945605574 1.0 13139 +84899 TMTC4 transmembrane O-mannosyltransferase targeting cadherins 4 Novel N 0.0009319179336107278 -0.28760280662251403 1.0 13140 +29946 SERTAD3 SERTA domain containing 3 Novel N 0.0009318852914013609 -0.28760308805366847 1.0 13141 +11176 BAZ2A bromodomain adjacent to zinc finger domain 2A Novel U 0.0009317029788008629 -0.2876046598971994 1.0 13142 +7083 TK1 thymidine kinase 1 Novel U 0.0009315684094122538 -0.28760582011334673 1.0 13143 +22948 CCT5 chaperonin containing TCP1 subunit 5 Novel U 0.0009306311831538729 -0.2876139005917518 1.0 13144 +57494 RIMKLB ribosomal modification protein rimK like family member B Novel N 0.000930522851405472 -0.2876148345949829 1.0 13145 +137075 CLDN23 claudin 23 Novel U 0.0009303796091792855 -0.28761606958568553 1.0 13146 +23546 SYNGR4 synaptogyrin 4 Novel U 0.0009303504464155259 -0.2876163210181232 1.0 13147 +104326056 ZNF511-PRAP1 ZNF511-PRAP1 readthrough Novel U 0.000930234850614311 -0.28761731764979787 1.0 13148 +29072 SETD2 SET domain containing 2, histone lysine methyltransferase Novel U 0.000929029165825354 -0.2876277126956189 1.0 13149 +170082 TCEANC transcription elongation factor A N-terminal and central domain containing Novel U 0.0009288038385205477 -0.2876296553987861 1.0 13150 +246175 CNOT6L CCR4-NOT transcription complex subunit 6 like Novel U 0.0009286746761627437 -0.28763076899716605 1.0 13151 +57184 FAM219B family with sequence similarity 219 member B Novel U 0.0009285559748743233 -0.2876317924034024 1.0 13152 +23633 KPNA6 karyopherin subunit alpha 6 Novel U 0.0009285141898466732 -0.28763215266114234 1.0 13153 +654231 OCM oncomodulin Novel U 0.0009285121238541211 -0.28763217047349876 1.0 13154 +3632 INPP5A inositol polyphosphate-5-phosphatase A Novel N 0.0009283258738745947 -0.28763377626390857 1.0 13155 +728403 TSPY8 testis specific protein Y-linked 8 Novel U 0.0009277294411127663 -0.287638918524925 1.0 13156 +1734 DIO2 iodothyronine deiodinase 2 Novel N 0.0009276191567040646 -0.28763986936339647 1.0 13157 +80067 DCAF17 DDB1 and CUL4 associated factor 17 Novel U 0.0009272436611357673 -0.28764310677144356 1.0 13158 +8334 H2AC6 H2A clustered histone 6 Novel N 0.0009272131380401308 -0.287643369932247 1.0 13159 +64393 ZMAT3 zinc finger matrin-type 3 Novel U 0.0009268812911880667 -0.2876462310144008 1.0 13160 +8710 SERPINB7 serpin family B member 7 Novel U 0.0009268752889910234 -0.2876462827635095 1.0 13161 +23174 ZCCHC14 zinc finger CCHC-type containing 14 Novel U 0.0009267486661636841 -0.2876473744668338 1.0 13162 +8624 PSMG1 proteasome assembly chaperone 1 Novel N 0.0009265810975368728 -0.28764881919232915 1.0 13163 +6139 RPL17 ribosomal protein L17 Novel N 0.0009265569677504545 -0.2876490272319741 1.0 13164 +6432 SRSF7 serine and arginine rich splicing factor 7 Novel N 0.0009261410231963124 -0.28765261337881687 1.0 13165 +1789 DNMT3B DNA methyltransferase 3 beta Novel U 0.0009258412907385976 -0.287655197580476 1.0 13166 +253012 HEPACAM2 HEPACAM family member 2 Novel N 0.0009257783625035061 -0.2876557401284895 1.0 13167 +4761 NEUROD2 neuronal differentiation 2 Novel N 0.0009256813146253917 -0.28765657684563906 1.0 13168 +57094 CPA6 carboxypeptidase A6 Novel N 0.0009256717412777272 -0.2876566593841172 1.0 13169 +378950 RBMY1E RNA binding motif protein Y-linked family 1 member E Novel U 0.0009251058601604496 -0.2876615382381902 1.0 13170 +9978 RBX1 ring-box 1 Novel U 0.000924970460853533 -0.2876627056096395 1.0 13171 +64983 MRPL32 mitochondrial ribosomal protein L32 Novel U 0.000924881821179741 -0.2876634698338208 1.0 13172 +9343 EFTUD2 elongation factor Tu GTP binding domain containing 2 Novel U 0.0009247382255577049 -0.2876647078713944 1.0 13173 +54470 ARMCX6 armadillo repeat containing X-linked 6 Novel U 0.0009240990389895982 -0.287670218742664 1.0 13174 +342979 PALM3 paralemmin 3 Novel U 0.0009240895589338975 -0.2876703004768074 1.0 13175 +4850 CNOT4 CCR4-NOT transcription complex subunit 4 Novel U 0.0009240851620816176 -0.2876703383851242 1.0 13176 +58503 OPRPN opiorphin prepropeptide Novel N 0.0009235655918441836 -0.28767481796094263 1.0 13177 +10678 B3GNT2 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 2 Novel N 0.0009235527152071048 -0.2876749289793728 1.0 13178 +57804 POLD4 DNA polymerase delta 4, accessory subunit Novel N 0.0009233315890439971 -0.28767683546158007 1.0 13179 +4351 MPI mannose phosphate isomerase Novel U 0.0009225919322041724 -0.28768321255683094 1.0 13180 +6940 ZNF354A zinc finger protein 354A Novel N 0.0009222825304350371 -0.28768588012433843 1.0 13181 +57136 APMAP adipocyte plasma membrane associated protein Novel U 0.0009221989542068868 -0.2876866006930386 1.0 13182 +2877 GPX2 glutathione peroxidase 2 Novel U 0.0009216551244962084 -0.2876912894266223 1.0 13183 +23594 ORC6 origin recognition complex subunit 6 Novel U 0.0009213723028511248 -0.28769372782842245 1.0 13184 +25927 CNRIP1 cannabinoid receptor interacting protein 1 Novel U 0.00092105252239331 -0.28769648487781224 1.0 13185 +54890 ALKBH5 alkB homolog 5, RNA demethylase Novel N 0.0009207938534064516 -0.2876987150427736 1.0 13186 +92949 ADAMTSL1 ADAMTS like 1 Novel U 0.0009207667058481259 -0.28769894910072585 1.0 13187 +160140 C11orf65 chromosome 11 open reading frame 65 Novel U 0.0009203655080818771 -0.2877024081052697 1.0 13188 +57179 KIAA1191 KIAA1191 Novel U 0.0009200941214867515 -0.2877047479175634 1.0 13189 +338707 B4GALNT4 beta-1,4-N-acetyl-galactosaminyltransferase 4 Novel U 0.0009199075121252843 -0.28770635680645446 1.0 13190 +80308 FLAD1 flavin adenine dinucleotide synthetase 1 Novel N 0.0009196447809497936 -0.287708621994365 1.0 13191 +7155 TOP2B DNA topoisomerase II beta Novel U 0.0009195188641503824 -0.2877097076105322 1.0 13192 +9729 KIAA0408 KIAA0408 Novel U 0.0009188787840377254 -0.28771522618566986 1.0 13193 +64792 IFT22 intraflagellar transport 22 Novel U 0.000918687089129369 -0.28771687892059217 1.0 13194 +4826 NNAT neuronatin Novel N 0.0009186470073734185 -0.287717224493244 1.0 13195 +141 ADPRH ADP-ribosylarginine hydrolase Novel N 0.0009185223677284084 -0.28771829909817626 1.0 13196 +3248 HPGD 15-hydroxyprostaglandin dehydrogenase Novel U 0.0009183081863298614 -0.28772014570474563 1.0 13197 +23394 ADNP activity dependent neuroprotector homeobox Novel U 0.0009182341778626575 -0.2877207837831346 1.0 13198 +10078 TSSC4 tumor suppressing subtransferable candidate 4 Novel N 0.0009177365240172269 -0.2877250744025184 1.0 13199 +22938 SNW1 SNW domain containing 1 Novel U 0.0009176768762995505 -0.2877255886669132 1.0 13200 +9705 ST18 ST18 C2H2C-type zinc finger transcription factor Novel U 0.0009172908714146017 -0.2877289166830771 1.0 13201 +727851 RGPD8 RANBP2 like and GRIP domain containing 8 Novel U 0.0009171573049120757 -0.287730068252647 1.0 13202 +5520 PPP2R2A protein phosphatase 2 regulatory subunit Balpha Novel N 0.0009171349921895121 -0.2877302606261227 1.0 13203 +730291 ZNF735 zinc finger protein 735 Novel U 0.0009170326861521514 -0.2877311426775145 1.0 13204 +123688 HYKK hydroxylysine kinase Novel N 0.0009159514214289472 -0.2877404650115485 1.0 13205 +360023 ZBTB41 zinc finger and BTB domain containing 41 Novel U 0.000915711804638326 -0.28774253091429586 1.0 13206 +26284 ERAL1 Era like 12S mitochondrial rRNA chaperone 1 Novel N 0.000915668262937752 -0.28774290631753285 1.0 13207 +5213 PFKM phosphofructokinase, muscle Novel U 0.0009150003546260526 -0.28774866481889905 1.0 13208 +57461 ISY1 ISY1 splicing factor homolog Novel N 0.0009144897921721984 -0.28775306673236 1.0 13209 +7920 ABHD16A abhydrolase domain containing 16A, phospholipase Novel N 0.0009140454513308005 -0.2877568977033143 1.0 13210 +55334 SLC39A9 solute carrier family 39 member 9 Novel N 0.0009139433438593932 -0.2877577780427311 1.0 13211 +64319 FBRS fibrosin Novel U 0.0009137108589771444 -0.2877597824563438 1.0 13212 +23603 CORO1C coronin 1C Novel U 0.0009136621458400872 -0.28776020244612593 1.0 13213 +121273 C12orf54 chromosome 12 open reading frame 54 Novel U 0.0009129280550333676 -0.2877665315527403 1.0 13214 +161829 EXD1 exonuclease 3'-5' domain containing 1 Novel U 0.0009127366639161997 -0.28776818166846785 1.0 13215 +5932 RBBP8 RB binding protein 8, endonuclease Novel U 0.0009121111838849804 -0.28777357436616474 1.0 13216 +23649 POLA2 DNA polymerase alpha 2, accessory subunit Novel N 0.0009118692929184127 -0.2877756598761622 1.0 13217 +22913 RALY RALY heterogeneous nuclear ribonucleoprotein Novel N 0.0009117873740621609 -0.28777636615550833 1.0 13218 +51385 ZNF589 zinc finger protein 589 Novel N 0.00091150689520797 -0.2877787843584813 1.0 13219 +64901 RANBP17 RAN binding protein 17 Novel U 0.0009113215989002166 -0.28778038192662453 1.0 13220 +204219 CERS3 ceramide synthase 3 Novel U 0.0009112426687842024 -0.28778106243796553 1.0 13221 +727837 SSX2B SSX family member 2B Novel U 0.0009112177892953408 -0.2877812769413159 1.0 13222 +404550 C16orf74 chromosome 16 open reading frame 74 Novel U 0.0009102402076197263 -0.2877897053517967 1.0 13223 +1070 CETN3 centrin 3 Novel N 0.0009092791231110137 -0.28779799152874563 1.0 13224 +9884 LRRC37A leucine rich repeat containing 37A Novel U 0.0009091276502296166 -0.28779929748164246 1.0 13225 +10391 CORO2B coronin 2B Novel U 0.000909008891073652 -0.28780032138679507 1.0 13226 +53336 CPXCR1 CPX chromosome region candidate 1 Novel U 0.0009077469077937767 -0.2878112018210013 1.0 13227 +5459 POU4F3 POU class 4 homeobox 3 Novel N 0.0009077420056200188 -0.2878112440860454 1.0 13228 +3028 HSD17B10 hydroxysteroid 17-beta dehydrogenase 10 Novel U 0.0009076809910102579 -0.28781177013536613 1.0 13229 +7448 VTN vitronectin Novel U 0.0009076626899124953 -0.28781192792183863 1.0 13230 +5232 PGK2 phosphoglycerate kinase 2 Novel N 0.000907494506345004 -0.28781337794916456 1.0 13231 +51660 MPC1 mitochondrial pyruvate carrier 1 Novel N 0.000907377602077974 -0.2878143858620317 1.0 13232 +1767 DNAH5 dynein axonemal heavy chain 5 Novel N 0.0009072167403743393 -0.28781577276248477 1.0 13233 +1549 CYP2A7 cytochrome P450 family 2 subfamily A member 7 Novel U 0.0009071613520718341 -0.2878162503035036 1.0 13234 +28969 BZW2 basic leucine zipper and W2 domains 2 Novel N 0.0009069197363174697 -0.2878183334407055 1.0 13235 +6419 SETMAR SET domain and mariner transposase fusion gene Novel N 0.0009067873117670689 -0.2878194751647132 1.0 13236 +64645 MFSD14A major facilitator superfamily domain containing 14A Novel U 0.0009065026101819338 -0.287821929774782 1.0 13237 +4141 MARS1 methionyl-tRNA synthetase 1 Novel U 0.0009063753476900187 -0.28782302699309886 1.0 13238 +9992 KCNE2 potassium voltage-gated channel subfamily E regulatory subunit 2 Novel U 0.0009062985896978241 -0.28782368877705206 1.0 13239 +9942 XYLB xylulokinase Novel N 0.000906232607420943 -0.2878242576560807 1.0 13240 +8623 ASMTL acetylserotonin O-methyltransferase like Novel U 0.0009060936382229923 -0.28782545580603963 1.0 13241 +133121 ENPP6 ectonucleotide pyrophosphatase/phosphodiesterase 6 Novel U 0.0009055148050750906 -0.2878304463285628 1.0 13242 +101929796 NOTCH2NLR notch 2 N-terminal like R Novel U 0.0009051986856149688 -0.2878331718139492 1.0 13243 +56899 ANKS1B ankyrin repeat and sterile alpha motif domain containing 1B Novel U 0.0009049788713365544 -0.28783506698548755 1.0 13244 +2797 GNRH2 gonadotropin releasing hormone 2 Novel N 0.0009049098522923894 -0.28783566204659566 1.0 13245 +64324 NSD1 nuclear receptor binding SET domain protein 1 Novel U 0.0009047159543813672 -0.2878373337751338 1.0 13246 +1108 CHD4 chromodomain helicase DNA binding protein 4 Novel U 0.0009043450516528872 -0.2878405315851195 1.0 13247 +389677 RBM12B RNA binding motif protein 12B Novel U 0.0009042523825733466 -0.2878413305496057 1.0 13248 +3948 LDHC lactate dehydrogenase C Novel U 0.0009040755148035437 -0.2878428554494703 1.0 13249 +55152 DALRD3 DALR anticodon binding domain containing 3 Novel U 0.0009039830314745675 -0.28784365281247193 1.0 13250 +93099 DMKN dermokine Novel U 0.0009031208454488515 -0.2878510863169216 1.0 13251 +150297 C22orf42 chromosome 22 open reading frame 42 Novel U 0.0009027122454177571 -0.28785460914153094 1.0 13252 +8851 CDK5R1 cyclin dependent kinase 5 regulatory subunit 1 Novel U 0.0009026255213241234 -0.28785535685016533 1.0 13253 +5010 CLDN11 claudin 11 Novel U 0.0009017853973790698 -0.2878626001420972 1.0 13254 +81033 KCNH6 potassium voltage-gated channel subfamily H member 6 Novel U 0.0009015893242252697 -0.2878642906249138 1.0 13255 +23676 SMPX small muscle protein X-linked Novel N 0.0009014650292789931 -0.28786536225795895 1.0 13256 +81539 SLC38A1 solute carrier family 38 member 1 Novel U 0.0009012017874254303 -0.2878676318487798 1.0 13257 +23333 DPY19L1 dpy-19 like C-mannosyltransferase 1 Novel U 0.0009009654770321079 -0.28786966924478 1.0 13258 +387893 KMT5A lysine methyltransferase 5A Novel U 0.0009007961044640204 -0.2878711295233057 1.0 13259 +222962 SLC29A4 solute carrier family 29 member 4 Novel U 0.0009007820783446756 -0.2878712504522207 1.0 13260 +100131244 ANKRD63 ankyrin repeat domain 63 Novel U 0.0009007075296390949 -0.28787189318837975 1.0 13261 +1834 DSPP dentin sialophosphoprotein Novel N 0.0009002168500326287 -0.2878761236780064 1.0 13262 +93082 NEURL3 neuralized E3 ubiquitin protein ligase 3 Novel U 0.0009001887105399446 -0.2878763662881136 1.0 13263 +158399 ZNF483 zinc finger protein 483 Novel U 0.0009001102053674936 -0.28787704313572104 1.0 13264 +65243 ZFP69B ZFP69 zinc finger protein B Novel U 0.0008999723317520123 -0.28787823183990274 1.0 13265 +10562 OLFM4 olfactomedin 4 Novel U 0.0008998418810283259 -0.28787935654617963 1.0 13266 +440335 SMIM22 small integral membrane protein 22 Novel U 0.0008996140696441234 -0.28788132066632033 1.0 13267 +81488 POLR2M RNA polymerase II subunit M Novel U 0.0008993557739928814 -0.2878835476124962 1.0 13268 +9312 KCNB2 potassium voltage-gated channel subfamily B member 2 Novel N 0.0008989833063224589 -0.28788675891493304 1.0 13269 +8992 ATP6V0E1 ATPase H+ transporting V0 subunit e1 Novel N 0.0008987424736466046 -0.2878888353006714 1.0 13270 +93034 NT5C1B 5'-nucleotidase, cytosolic IB Novel N 0.000898694630772389 -0.2878892477873132 1.0 13271 +412 STS steroid sulfatase Novel U 0.0008986783038029262 -0.28788938855345475 1.0 13272 +55015 PRPF39 pre-mRNA processing factor 39 Novel U 0.0008982174218079833 -0.28789336213718025 1.0 13273 +53820 RIPPLY3 ripply transcriptional repressor 3 Novel U 0.0008981106301301471 -0.2878942828623935 1.0 13274 +9824 ARHGAP11A Rho GTPase activating protein 11A Novel U 0.0008980164017493921 -0.28789509527069834 1.0 13275 +51449 PCYOX1 prenylcysteine oxidase 1 Novel U 0.0008978049061150352 -0.28789691872142964 1.0 13276 +9022 CLIC3 chloride intracellular channel 3 Novel N 0.0008971413837875956 -0.28790263940817973 1.0 13277 +9240 PNMA1 PNMA family member 1 Novel U 0.0008969164676209681 -0.2879045785666392 1.0 13278 +442721 LMOD2 leiomodin 2 Novel U 0.0008968456606645016 -0.2879051890425809 1.0 13279 +619279 ZNF704 zinc finger protein 704 Novel U 0.0008966321338440147 -0.28790703000557827 1.0 13280 +122769 LRR1 leucine rich repeat protein 1 Novel U 0.0008965787310802509 -0.28790749042788877 1.0 13281 +9946 CRYZL1 crystallin zeta like 1 Novel U 0.0008965535264000467 -0.2879077077349395 1.0 13282 +2645 GCK glucokinase Novel U 0.0008964571086179387 -0.28790853901959385 1.0 13283 +9587 MAD2L1BP MAD2L1 binding protein Novel U 0.0008961588902676106 -0.2879111101670817 1.0 13284 +2135 EXTL2 exostosin like glycosyltransferase 2 Novel N 0.0008958603076327463 -0.2879136844553196 1.0 13285 +79915 ATAD5 ATPase family AAA domain containing 5 Novel U 0.0008958403057685626 -0.28791385690528043 1.0 13286 +955 ENTPD6 ectonucleoside triphosphate diphosphohydrolase 6 Novel U 0.0008953798885805983 -0.28791782648158226 1.0 13287 +539 ATP5PO ATP synthase peripheral stalk subunit OSCP Novel N 0.0008945725795320662 -0.28792478685350376 1.0 13288 +29890 RBM15B RNA binding motif protein 15B Novel N 0.0008940859576208534 -0.2879289823589218 1.0 13289 +10493 VAT1 vesicle amine transport 1 Novel N 0.0008937964327942034 -0.28793147855350504 1.0 13290 +440804 RIMBP3B RIMS binding protein 3B Novel U 0.0008933316644007415 -0.28793548564457105 1.0 13291 +1534 CYB561 cytochrome b561 Novel N 0.0008928753579264171 -0.28793941977955595 1.0 13292 +6920 TCEA3 transcription elongation factor A3 Novel U 0.0008928284264554794 -0.2879398244083572 1.0 13293 +142680 SLC34A3 solute carrier family 34 member 3 Novel N 0.0008927567168788222 -0.2879404426664144 1.0 13294 +51372 TMA7 translation machinery associated 7 homolog Novel U 0.0008927073205917818 -0.28794086854610684 1.0 13295 +51010 EXOSC3 exosome component 3 Novel N 0.0008926702518198439 -0.2879411881417312 1.0 13296 +3980 LIG3 DNA ligase 3 Novel N 0.0008921723360091624 -0.2879454810196993 1.0 13297 +54535 CCHCR1 coiled-coil alpha-helical rod protein 1 Novel U 0.0008919457707009342 -0.28794743439655374 1.0 13298 +57016 AKR1B10 aldo-keto reductase family 1 member B10 Novel N 0.0008919195771142818 -0.2879476602296537 1.0 13299 +203523 ZNF449 zinc finger protein 449 Novel U 0.0008914492716193246 -0.2879517150599167 1.0 13300 +55693 KDM4D lysine demethylase 4D Novel U 0.0008913976677247604 -0.2879521599729267 1.0 13301 +10942 PRSS21 serine protease 21 Novel U 0.0008913651002762749 -0.2879524407595157 1.0 13302 +84734 FAM167B family with sequence similarity 167 member B Novel U 0.0008912869543067365 -0.28795311451018546 1.0 13303 +64856 VWA1 von Willebrand factor A domain containing 1 Novel U 0.0008911625540712274 -0.2879541870510022 1.0 13304 +118856 MMP21 matrix metallopeptidase 21 Novel N 0.0008909385416927974 -0.287956118417276 1.0 13305 +9196 KCNAB3 potassium voltage-gated channel subfamily A regulatory beta subunit 3 Novel N 0.0008907481574281838 -0.28795775985222843 1.0 13306 +1719 DHFR dihydrofolate reductase Novel N 0.0008902010795014657 -0.2879624765909382 1.0 13307 +51727 CMPK1 cytidine/uridine monophosphate kinase 1 Novel N 0.0008894604148897304 -0.28796886237489067 1.0 13308 +160777 CCDC60 coiled-coil domain containing 60 Novel U 0.0008892000820969671 -0.2879711068846782 1.0 13309 +338657 CENATAC centrosomal AT-AC splicing factor Novel U 0.0008889028295506009 -0.2879736697052995 1.0 13310 +81577 GFOD2 Gfo/Idh/MocA-like oxidoreductase domain containing 2 Novel U 0.0008888707827584418 -0.2879739460029487 1.0 13311 +143662 MUC15 mucin 15, cell surface associated Novel U 0.0008883713259105474 -0.28797825216726874 1.0 13312 +388567 ZNF749 zinc finger protein 749 Novel U 0.0008883587324256058 -0.28797836074444766 1.0 13313 +11022 TDRKH tudor and KH domain containing Novel U 0.0008882115918754625 -0.28797962934530824 1.0 13314 +6005 RHAG Rh associated glycoprotein Novel N 0.0008881079386336548 -0.2879805230118851 1.0 13315 +57829 ZP4 zona pellucida glycoprotein 4 Novel U 0.0008879642104693445 -0.2879817621921978 1.0 13316 +55623 THUMPD1 THUMP domain containing 1 Novel N 0.000887935077715743 -0.287982013365897 1.0 13317 +286148 DPY19L4 dpy-19 like 4 Novel U 0.0008875930398519242 -0.28798496231184 1.0 13318 +9967 THRAP3 thyroid hormone receptor associated protein 3 Novel N 0.0008873030278752676 -0.28798746270648173 1.0 13319 +390245 KDM4E lysine demethylase 4E Novel U 0.0008871586760972724 -0.2879887072634011 1.0 13320 +2823 GPM6A glycoprotein M6A Novel N 0.0008869789999964259 -0.28799025637583775 1.0 13321 +401207 C5orf63 chromosome 5 open reading frame 63 Novel U 0.0008869060976969674 -0.2879908849171864 1.0 13322 +138474 TAF1L TATA-box binding protein associated factor 1 like Novel N 0.0008867915827718392 -0.2879918722298777 1.0 13323 +55852 TEX2 testis expressed 2 Novel U 0.000886606078347054 -0.28799347159234234 1.0 13324 +57528 KCTD16 potassium channel tetramerization domain containing 16 Novel U 0.000886530253543475 -0.2879941253306285 1.0 13325 +390980 ZNF805 zinc finger protein 805 Novel U 0.0008863469197803591 -0.28799570597831153 1.0 13326 +345 APOC3 apolipoprotein C3 Novel U 0.0008861926720836679 -0.2879970358548179 1.0 13327 +55753 OGDHL oxoglutarate dehydrogenase L Novel N 0.0008860267361624911 -0.2879984665036241 1.0 13328 +127707 KLHDC7A kelch domain containing 7A Novel U 0.0008853201353653632 -0.28800455859977603 1.0 13329 +23376 UFL1 UFM1 specific ligase 1 Novel U 0.0008851758419936519 -0.2880058026531343 1.0 13330 +23203 PMPCA peptidase, mitochondrial processing subunit alpha Novel U 0.0008849926007638304 -0.2880073825030235 1.0 13331 +92675 DTD1 D-aminoacyl-tRNA deacylase 1 Novel U 0.0008849825625334884 -0.288007469049578 1.0 13332 +124912 SPACA3 sperm acrosome associated 3 Novel U 0.0008848424393976143 -0.2880086771484372 1.0 13333 +339221 ENPP7 ectonucleotide pyrophosphatase/phosphodiesterase 7 Novel N 0.000884841365132135 -0.2880086864104259 1.0 13334 +84525 HOPX HOP homeobox Novel N 0.0008847305101263762 -0.2880096421684108 1.0 13335 +126731 CCSAP centriole, cilia and spindle associated protein Novel U 0.0008846884937967601 -0.2880100044203655 1.0 13336 +9724 UTP14C UTP14C small subunit processome component Novel U 0.0008846313632118693 -0.28801049698281067 1.0 13337 +3857 KRT9 keratin 9 Novel U 0.0008837361633405746 -0.2880182151225486 1.0 13338 +85478 CCDC65 coiled-coil domain containing 65 Novel U 0.0008835862298245505 -0.2880195078035075 1.0 13339 +221692 PHACTR1 phosphatase and actin regulator 1 Novel U 0.0008830125696285834 -0.2880244537264199 1.0 13340 +114991 ZNF618 zinc finger protein 618 Novel U 0.000882909431720035 -0.2880253429499508 1.0 13341 +57696 DDX55 DEAD-box helicase 55 Novel U 0.0008828432153504869 -0.28802591384725484 1.0 13342 +400736 PRAMEF13 PRAME family member 13 Novel U 0.0008825054224776648 -0.2880288261941827 1.0 13343 +7569 ZNF182 zinc finger protein 182 Novel U 0.0008821199895695786 -0.2880321492789368 1.0 13344 +94039 ZNF101 zinc finger protein 101 Novel U 0.0008819788834255374 -0.28803336585299194 1.0 13345 +345274 SLC10A6 solute carrier family 10 member 6 Novel N 0.00088197633649917 -0.2880333878118128 1.0 13346 +79833 GEMIN6 gem nuclear organelle associated protein 6 Novel N 0.0008813991316486766 -0.2880383642956533 1.0 13347 +54457 TAF7L TATA-box binding protein associated factor 7 like Novel U 0.000880763106196387 -0.2880438479127483 1.0 13348 +6524 SLC5A2 solute carrier family 5 member 2 Novel U 0.0008803122534422085 -0.28804773502742465 1.0 13349 +256646 NUTM1 NUT midline carcinoma family member 1 Novel U 0.0008801767300171951 -0.28804890346898226 1.0 13350 +5372 PMM1 phosphomannomutase 1 Novel N 0.0008800263593860715 -0.2880501999186141 1.0 13351 +56547 MMP26 matrix metallopeptidase 26 Novel U 0.000879948418196109 -0.28805087190373685 1.0 13352 +401562 LCNL1 lipocalin like 1 Novel U 0.0008795719131935265 -0.28805411801481795 1.0 13353 +84968 PNMA6A PNMA family member 6A Novel U 0.0008792826036743223 -0.2880566123530862 1.0 13354 +2290 FOXG1 forkhead box G1 Novel U 0.0008789468016176772 -0.2880595075358052 1.0 13355 +57101 ANO2 anoctamin 2 Novel N 0.0008788591915565582 -0.2880602628829806 1.0 13356 +168451 THAP5 THAP domain containing 5 Novel N 0.0008788552378572738 -0.2880602969705677 1.0 13357 +9984 THOC1 THO complex subunit 1 Novel U 0.000878647612038779 -0.2880620870569291 1.0 13358 +123591 TMEM266 transmembrane protein 266 Novel U 0.0008778585129873818 -0.2880688904278198 1.0 13359 +7728 ZNF175 zinc finger protein 175 Novel N 0.0008775295790359175 -0.2880717263958347 1.0 13360 +159163 RBMY1F RNA binding motif protein Y-linked family 1 member F Novel U 0.0008773429982700853 -0.28807333503818294 1.0 13361 +344805 TMPRSS7 transmembrane serine protease 7 Novel U 0.0008773361778375966 -0.2880733938418677 1.0 13362 +4513 COX2 cytochrome c oxidase subunit II Novel U 0.0008773159104194564 -0.28807356858135363 1.0 13363 +147409 DSG4 desmoglein 4 Novel U 0.0008772514200169294 -0.2880741245978975 1.0 13364 +63929 XPNPEP3 X-prolyl aminopeptidase 3 Novel N 0.0008771986642667586 -0.28807457944185455 1.0 13365 +5426 POLE DNA polymerase epsilon, catalytic subunit Novel U 0.0008771724521417087 -0.28807480543478686 1.0 13366 +6433 SFSWAP splicing factor SWAP Novel U 0.0008771693145529338 -0.2880748324861185 1.0 13367 +26038 CHD5 chromodomain helicase DNA binding protein 5 Novel N 0.0008770787290809892 -0.28807561348637684 1.0 13368 +84057 MND1 meiotic nuclear divisions 1 Novel U 0.000876661812127352 -0.28807920801695086 1.0 13369 +79187 FSD1 fibronectin type III and SPRY domain containing 1 Novel U 0.0008764394736714978 -0.28808112495117577 1.0 13370 +4257 MGST1 microsomal glutathione S-transferase 1 Novel U 0.0008762898601606904 -0.28808241487314756 1.0 13371 +388536 ZNF790 zinc finger protein 790 Novel U 0.0008762816791812868 -0.288082485407052 1.0 13372 +79883 PODNL1 podocan like 1 Novel U 0.0008762522151716952 -0.28808273943673923 1.0 13373 +283464 GXYLT1 glucoside xylosyltransferase 1 Novel N 0.0008760602833929114 -0.288084394213886 1.0 13374 +23116 TOGARAM1 TOG array regulator of axonemal microtubules 1 Novel U 0.0008760438459190945 -0.28808453593276234 1.0 13375 +5458 POU4F2 POU class 4 homeobox 2 Novel U 0.000875297731755131 -0.28809096870108875 1.0 13376 +54579 UGT1A5 UDP glucuronosyltransferase family 1 member A5 Novel U 0.000875262390904379 -0.28809127339910456 1.0 13377 +253314 EIF4E1B eukaryotic translation initiation factor 4E family member 1B Novel U 0.0008747799782499623 -0.2880954326135968 1.0 13378 +4669 NAGLU N-acetyl-alpha-glucosaminidase Novel U 0.0008747626035560549 -0.2880955824128984 1.0 13379 +5442 POLRMT RNA polymerase mitochondrial Novel N 0.0008746932969287406 -0.2880961799534606 1.0 13380 +57683 ZDBF2 zinc finger DBF-type containing 2 Novel U 0.0008744312571648719 -0.28809843918023137 1.0 13381 +5019 OXCT1 3-oxoacid CoA-transferase 1 Novel N 0.000874404701253401 -0.2880986681371852 1.0 13382 +2631 NIPSNAP2 nipsnap homolog 2 Novel N 0.0008743694864426652 -0.28809897174852256 1.0 13383 +84464 SLX4 SLX4 structure-specific endonuclease subunit Novel U 0.0008740832004264417 -0.288101440019072 1.0 13384 +129563 DIS3L2 DIS3 like 3'-5' exoribonuclease 2 Novel U 0.0008733871875487314 -0.28810744082941825 1.0 13385 +27098 CLUL1 clusterin like 1 Novel U 0.0008730503507397104 -0.28811034493345605 1.0 13386 +84626 KRBA1 KRAB-A domain containing 1 Novel U 0.0008730017193554955 -0.2881107642183901 1.0 13387 +344758 GPR149 G protein-coupled receptor 149 Novel U 0.0008721753099509707 -0.28811788926774434 1.0 13388 +146822 CDRT15 CMT1A duplicated region transcript 15 Novel U 0.0008717421560529874 -0.288121623788291 1.0 13389 +60487 TRMT11 tRNA methyltransferase 11 homolog Novel U 0.0008716700935814736 -0.2881222450888997 1.0 13390 +3053 SERPIND1 serpin family D member 1 Novel U 0.0008715769062269381 -0.2881230485217946 1.0 13391 +7559 ZNF12 zinc finger protein 12 Novel N 0.0008713982839105682 -0.2881245885488235 1.0 13392 +5893 RAD52 RAD52 homolog, DNA repair protein Novel N 0.0008708915150229215 -0.28812895775531594 1.0 13393 +199745 THAP8 THAP domain containing 8 Novel U 0.0008708575143266141 -0.2881292508989297 1.0 13394 +30813 VSX1 visual system homeobox 1 Novel U 0.0008707518505362177 -0.28813016189984203 1.0 13395 +8748 ADAM20 ADAM metallopeptidase domain 20 Novel N 0.0008706692505055107 -0.28813087405206617 1.0 13396 +91750 LIN52 lin-52 DREAM MuvB core complex component Novel U 0.0008706555474833532 -0.28813099219533583 1.0 13397 +2178 FANCE FA complementation group E Novel U 0.0008700915487123998 -0.28813585482039406 1.0 13398 +54985 HCFC1R1 host cell factor C1 regulator 1 Novel U 0.0008698807103733179 -0.28813767260412626 1.0 13399 +84317 CCDC115 coiled-coil domain containing 115 Novel U 0.0008698642200456566 -0.2881378147786924 1.0 13400 +342850 ANKRD62 ankyrin repeat domain 62 Novel U 0.0008697866134221801 -0.28813848387928515 1.0 13401 +10935 PRDX3 peroxiredoxin 3 Novel U 0.0008695210791121652 -0.28814077323496495 1.0 13402 +131583 FAM43A family with sequence similarity 43 member A Novel U 0.0008692650785655336 -0.28814298039345015 1.0 13403 +9188 DDX21 DExD-box helicase 21 Novel N 0.0008687556106696803 -0.2881473728699666 1.0 13404 +55222 LRRC20 leucine rich repeat containing 20 Novel U 0.0008684278858198738 -0.2881501984134765 1.0 13405 +4753 NELL2 neural EGFL like 2 Novel N 0.0008682675173933115 -0.28815158106104544 1.0 13406 +400569 MED11 mediator complex subunit 11 Novel N 0.000868217235200919 -0.2881520145787432 1.0 13407 +4439 MSH5 mutS homolog 5 Novel N 0.0008681404511776094 -0.28815267658712873 1.0 13408 +170261 ZCCHC12 zinc finger CCHC-type containing 12 Novel U 0.0008681050715044939 -0.28815298161985914 1.0 13409 +5500 PPP1CB protein phosphatase 1 catalytic subunit beta Novel U 0.0008679694910877633 -0.28815415055278193 1.0 13410 +51202 DDX47 DEAD-box helicase 47 Novel U 0.0008679644975270711 -0.2881541936057363 1.0 13411 +10328 EMC8 ER membrane protein complex subunit 8 Novel U 0.0008679359122097762 -0.28815444005960705 1.0 13412 +64376 IKZF5 IKAROS family zinc finger 5 Novel N 0.0008678150381326873 -0.28815548219896336 1.0 13413 +84436 ZNF528 zinc finger protein 528 Novel U 0.0008677073369482534 -0.2881564107656645 1.0 13414 +390992 HES3 hes family bHLH transcription factor 3 Novel U 0.0008676380359956543 -0.28815700825730106 1.0 13415 +729767 CEACAM18 CEA cell adhesion molecule 18 Novel U 0.0008675223683652643 -0.288158005508265 1.0 13416 +9989 PPP4R1 protein phosphatase 4 regulatory subunit 1 Novel U 0.0008673619577343598 -0.28815938851970685 1.0 13417 +100507607 NPIPB9 nuclear pore complex interacting protein family member B9 Novel U 0.0008670094007339129 -0.2881624281584314 1.0 13418 +6569 SLC34A1 solute carrier family 34 member 1 Novel N 0.0008654398084606509 -0.2881759607033804 1.0 13419 +374655 ZNF710 zinc finger protein 710 Novel U 0.0008653375649393298 -0.28817684221577794 1.0 13420 +56994 CHPT1 choline phosphotransferase 1 Novel U 0.0008649919182504381 -0.288179822275908 1.0 13421 +80831 APOL5 apolipoprotein L5 Novel U 0.0008649810345939545 -0.28817991611146837 1.0 13422 +283820 NOMO2 NODAL modulator 2 Novel U 0.0008648826092653431 -0.28818076470457515 1.0 13423 +221833 SP8 Sp8 transcription factor Novel U 0.0008646715341616157 -0.2881825845296198 1.0 13424 +93611 FBXO44 F-box protein 44 Novel U 0.0008645944202497656 -0.2881832493822035 1.0 13425 +10272 FSTL3 follistatin like 3 Novel U 0.0008639382080032099 -0.2881889070436701 1.0 13426 +283999 TMEM235 transmembrane protein 235 Novel U 0.0008633974756883633 -0.28819356907245336 1.0 13427 +84964 ALKBH6 alkB homolog 6 Novel U 0.0008633185688541527 -0.28819424938306587 1.0 13428 +55124 PIWIL2 piwi like RNA-mediated gene silencing 2 Novel N 0.0008631622458849594 -0.28819559715193754 1.0 13429 +57709 SLC7A14 solute carrier family 7 member 14 Novel N 0.0008625816568192309 -0.28820060281344767 1.0 13430 +57409 MIF4GD MIF4G domain containing Novel N 0.0008623639668349575 -0.28820247966997103 1.0 13431 +475 ATOX1 antioxidant 1 copper chaperone Novel N 0.0008619708147100708 -0.2882058693074536 1.0 13432 +114770 PGLYRP2 peptidoglycan recognition protein 2 Novel U 0.0008615868593299062 -0.2882091796534136 1.0 13433 +1059 CENPB centromere protein B Novel U 0.0008604883609590391 -0.28821865057069146 1.0 13434 +55830 GLT8D1 glycosyltransferase 8 domain containing 1 Novel U 0.0008604276897323066 -0.2882191736594686 1.0 13435 +25852 ARMC8 armadillo repeat containing 8 Novel U 0.0008603980711562581 -0.28821942902178055 1.0 13436 +10863 ADAM28 ADAM metallopeptidase domain 28 Novel N 0.0008597741968334578 -0.28822480787555016 1.0 13437 +94081 SFXN1 sideroflexin 1 Novel N 0.0008596681187050098 -0.2882257224487586 1.0 13438 +114336 CGB2 chorionic gonadotropin subunit beta 2 Novel U 0.0008595697036495299 -0.28822657095329357 1.0 13439 +55308 DDX19A DEAD-box helicase 19A Novel U 0.0008594849474522549 -0.28822730169532695 1.0 13440 +728819 C1GALT1C1L C1GALT1 specific chaperone 1 like Novel U 0.0008585347058510632 -0.2882354943880406 1.0 13441 +54187 NANS N-acetylneuraminate synthase Novel U 0.0008583686629861988 -0.2882369259588826 1.0 13442 +2134 EXTL1 exostosin like glycosyltransferase 1 Novel N 0.0008576982494464368 -0.28824270605955954 1.0 13443 +10521 DDX17 DEAD-box helicase 17 Novel U 0.0008574484043303568 -0.2882448601478035 1.0 13444 +55191 NADSYN1 NAD synthetase 1 Novel N 0.0008574394554685229 -0.28824493730215567 1.0 13445 +6051 RNPEP arginyl aminopeptidase Novel N 0.0008569481235403522 -0.2882491734159007 1.0 13446 +83998 REG4 regenerating family member 4 Novel U 0.0008567996974830951 -0.2882504531000108 1.0 13447 +10880 ACTL7B actin like 7B Novel U 0.0008565429566806097 -0.2882526666407558 1.0 13448 +3550 IK IK cytokine Novel N 0.0008562376249213459 -0.28825529911788184 1.0 13449 +163049 ZNF791 zinc finger protein 791 Novel U 0.0008555350406856377 -0.28826135658446855 1.0 13450 +22845 DOLK dolichol kinase Novel U 0.000855096630407002 -0.28826513642392293 1.0 13451 +5050 PAFAH1B3 platelet activating factor acetylhydrolase 1b catalytic subunit 3 Novel N 0.0008549709651877592 -0.2882662198710429 1.0 13452 +115701 ALPK2 alpha kinase 2 Novel U 0.0008548149927228436 -0.2882675646179738 1.0 13453 +23253 ANKRD12 ankyrin repeat domain 12 Novel U 0.0008547727257085901 -0.2882679290312549 1.0 13454 +348980 HCN1 hyperpolarization activated cyclic nucleotide gated potassium channel 1 Novel U 0.0008547286871713108 -0.28826830871806614 1.0 13455 +4695 NDUFA2 NADH:ubiquinone oxidoreductase subunit A2 Novel N 0.0008545850537744088 -0.2882695470813232 1.0 13456 +11075 STMN2 stathmin 2 Novel U 0.0008545379083062922 -0.28826995355514273 1.0 13457 +27343 POLL DNA polymerase lambda Novel N 0.000854477964543099 -0.2882704703719516 1.0 13458 +59285 CACNG6 calcium voltage-gated channel auxiliary subunit gamma 6 Novel U 0.0008542771024412869 -0.2882722021436146 1.0 13459 +10445 MCRS1 microspherule protein 1 Novel U 0.0008542447319835728 -0.28827248123180926 1.0 13460 +25842 ASF1A anti-silencing function 1A histone chaperone Novel N 0.0008542372841304535 -0.288272545444923 1.0 13461 +51042 ZNF593 zinc finger protein 593 Novel U 0.0008542348909002472 -0.28827256607862256 1.0 13462 +474344 GIMAP6 GTPase, IMAP family member 6 Novel U 0.0008539281827682968 -0.2882752104224133 1.0 13463 +55190 NUDT11 nudix hydrolase 11 Novel U 0.0008536533107723056 -0.2882775802847682 1.0 13464 +5646 PRSS3 serine protease 3 Novel N 0.0008533460667991346 -0.28828022924841823 1.0 13465 +54902 TTC19 tetratricopeptide repeat domain 19 Novel U 0.0008531155769416505 -0.2882822164615371 1.0 13466 +6129 RPL7 ribosomal protein L7 Novel N 0.0008528601015511776 -0.28828441909228636 1.0 13467 +54733 SLC35F2 solute carrier family 35 member F2 Novel U 0.0008526645269429061 -0.28828610527679577 1.0 13468 +155061 ZNF746 zinc finger protein 746 Novel U 0.0008523383953920252 -0.28828891708336923 1.0 13469 +133396 IL31RA interleukin 31 receptor A Novel U 0.0008522965323128013 -0.28828927801404597 1.0 13470 +10082 GPC6 glypican 6 Novel U 0.0008521267030290536 -0.2882907422302345 1.0 13471 +65999 LRRC61 leucine rich repeat containing 61 Novel U 0.0008519684788814435 -0.2882921063904856 1.0 13472 +23429 RYBP RING1 and YY1 binding protein Novel U 0.0008519166870524407 -0.2882925529238088 1.0 13473 +1592 CYP26A1 cytochrome P450 family 26 subfamily A member 1 Novel N 0.0008518119291967564 -0.28829345611402896 1.0 13474 +8577 TMEFF1 transmembrane protein with EGF like and two follistatin like domains 1 Novel U 0.000851439151322734 -0.2882966700909465 1.0 13475 +2551 GABPA GA binding protein transcription factor subunit alpha Novel N 0.0008513934149025428 -0.2882970644163854 1.0 13476 +26098 EDRF1 erythroid differentiation regulatory factor 1 Novel N 0.0008508240434274669 -0.2883019733632567 1.0 13477 +222950 NYAP1 neuronal tyrosine phosphorylated phosphoinositide-3-kinase adaptor 1 Novel U 0.0008507295913945328 -0.28830278769982237 1.0 13478 +200931 SLC51A solute carrier family 51 member A Novel U 0.0008506344606184179 -0.2883036078883042 1.0 13479 +286826 LIN9 lin-9 DREAM MuvB core complex component Novel U 0.0008502048059746268 -0.28830731223935047 1.0 13480 +5826 ABCD4 ATP binding cassette subfamily D member 4 Novel U 0.0008497701476155538 -0.2883110597309009 1.0 13481 +7556 ZNF10 zinc finger protein 10 Novel U 0.0008492972472923093 -0.2883151369329805 1.0 13482 +283554 GPR137C G protein-coupled receptor 137C Novel U 0.0008492536607728838 -0.28831551272263195 1.0 13483 +54853 WDR55 WD repeat domain 55 Novel U 0.000849142918508111 -0.2883164675085985 1.0 13484 +3990 LIPC lipase C, hepatic type Novel U 0.0008485511069868053 -0.28832156992669133 1.0 13485 +64506 CPEB1 cytoplasmic polyadenylation element binding protein 1 Novel N 0.0008484663087288168 -0.2883223010313593 1.0 13486 +199777 ZNF626 zinc finger protein 626 Novel U 0.000848351340029853 -0.28832329225634995 1.0 13487 +64403 CDH24 cadherin 24 Novel N 0.0008480155869553016 -0.2883261870167604 1.0 13488 +10651 MTX2 metaxin 2 Novel U 0.0008476096447907469 -0.28832968692605665 1.0 13489 +10335 IRAG1 inositol 1,4,5-triphosphate receptor associated 1 Novel U 0.0008475208649168135 -0.2883304523590006 1.0 13490 +3222 HOXC5 homeobox C5 Novel U 0.0008467015918075607 -0.2883375158813977 1.0 13491 +2879 GPX4 glutathione peroxidase 4 Novel U 0.0008465662562790558 -0.2883386827029691 1.0 13492 +374875 HSD11B1L hydroxysteroid 11-beta dehydrogenase 1 like Novel U 0.0008464842590266603 -0.28833938965822276 1.0 13493 +56985 ADPRM ADP-ribose/CDP-alcohol diphosphatase, manganese dependent Novel U 0.0008462804189374155 -0.2883411471051834 1.0 13494 +619208 FAM229B family with sequence similarity 229 member B Novel U 0.0008462531787121218 -0.2883413819620819 1.0 13495 +145483 FAM161B FAM161 centrosomal protein B Novel U 0.0008460999313344279 -0.2883427032141435 1.0 13496 +79853 TM4SF20 transmembrane 4 L six family member 20 Novel N 0.0008459808460451377 -0.28834372993111806 1.0 13497 +2172 FABP6 fatty acid binding protein 6 Novel N 0.0008459563283777322 -0.28834394131495444 1.0 13498 +9678 PHF14 PHD finger protein 14 Novel U 0.000845810228779747 -0.2883452009410436 1.0 13499 +55127 HEATR1 HEAT repeat containing 1 Novel N 0.0008457852801380252 -0.28834541604060876 1.0 13500 +65095 KRI1 KRI1 homolog Novel U 0.0008451678509482915 -0.2883507393264106 1.0 13501 +100507003 GFY golgi associated olfactory signaling regulator Novel U 0.0008445603680320053 -0.2883559768584821 1.0 13502 +4234 METTL1 methyltransferase 1, tRNA methylguanosine Novel N 0.0008441902899970071 -0.28835916755821256 1.0 13503 +391003 PRAMEF18 PRAME family member 18 Novel U 0.0008438317883217822 -0.28836225845010655 1.0 13504 +7745 ZKSCAN8 zinc finger with KRAB and SCAN domains 8 Novel U 0.0008434468912380454 -0.2883655769151468 1.0 13505 +8604 SLC25A12 solute carrier family 25 member 12 Novel U 0.0008430167478874932 -0.28836928547967344 1.0 13506 +3216 HOXB6 homeobox B6 Novel U 0.0008426063363850379 -0.28837282392223534 1.0 13507 +2237 FEN1 flap structure-specific endonuclease 1 Novel U 0.000841893652342228 -0.2883789684662727 1.0 13508 +4717 NDUFC1 NADH:ubiquinone oxidoreductase subunit C1 Novel N 0.0008418518271155351 -0.28837932907059644 1.0 13509 +100129543 ZNF730 zinc finger protein 730 Novel U 0.0008415163208825273 -0.28838222170281447 1.0 13510 +58478 ENOPH1 enolase-phosphatase 1 Novel N 0.000840352630922331 -0.28839225468205454 1.0 13511 +359845 RFLNB refilin B Novel U 0.0008403149941857838 -0.2883925791744961 1.0 13512 +1770 DNAH9 dynein axonemal heavy chain 9 Novel N 0.0008401252184722917 -0.28839421536270676 1.0 13513 +55766 H2AJ H2A.J histone Novel U 0.0008400725863875908 -0.28839466914045797 1.0 13514 +23185 LARP4B La ribonucleoprotein 4B Novel N 0.0008398024886327339 -0.2883969978407647 1.0 13515 +2193 FARSA phenylalanyl-tRNA synthetase subunit alpha Novel U 0.000839743398251261 -0.2883975072999771 1.0 13516 +55837 EAPP E2F associated phosphoprotein Novel N 0.0008395860188765576 -0.2883988641768543 1.0 13517 +388523 ZNF728 zinc finger protein 728 Novel U 0.0008393574661180169 -0.288400834688898 1.0 13518 +147645 VSIG10L V-set and immunoglobulin domain containing 10 like Novel U 0.0008393226590509032 -0.28840113478479446 1.0 13519 +9056 SLC7A7 solute carrier family 7 member 7 Novel U 0.0008392356020002 -0.28840188536408295 1.0 13520 +220382 FAM181B family with sequence similarity 181 member B Novel U 0.0008390683384849901 -0.2884033274589992 1.0 13521 +83447 SLC25A31 solute carrier family 25 member 31 Novel U 0.0008389674539103786 -0.2884041972549735 1.0 13522 +10036 CHAF1A chromatin assembly factor 1 subunit A Novel N 0.0008389445739887597 -0.2884043945186662 1.0 13523 +10877 CFHR4 complement factor H related 4 Novel U 0.0008388703407370122 -0.28840503453507876 1.0 13524 +22934 RPIA ribose 5-phosphate isomerase A Novel N 0.0008388569304411935 -0.2884051501545514 1.0 13525 +6511 SLC1A6 solute carrier family 1 member 6 Novel U 0.0008385857980732654 -0.28840748777497593 1.0 13526 +401190 RGS7BP regulator of G protein signaling 7 binding protein Novel U 0.0008380399656547096 -0.288412193775295 1.0 13527 +1635 DCTD dCMP deaminase Novel N 0.0008380124003558475 -0.28841243143487844 1.0 13528 +30008 EFEMP2 EGF containing fibulin extracellular matrix protein 2 Novel U 0.0008379706902948021 -0.28841279104627915 1.0 13529 +163175 LGI4 leucine rich repeat LGI family member 4 Novel U 0.0008378997532751049 -0.2884134026435862 1.0 13530 +10184 LHFPL2 LHFPL tetraspan subfamily member 2 Novel U 0.0008377491417304032 -0.28841470117030127 1.0 13531 +8681 JMJD7-PLA2G4B JMJD7-PLA2G4B readthrough Novel U 0.0008374666543498882 -0.28841713669017444 1.0 13532 +55628 ZNF407 zinc finger protein 407 Novel N 0.0008371542895678382 -0.2884198298038738 1.0 13533 +9127 P2RX6 purinergic receptor P2X 6 Novel N 0.0008367270712736884 -0.2884235131494579 1.0 13534 +55937 APOM apolipoprotein M Novel U 0.000836676666662973 -0.28842394772260904 1.0 13535 +163154 PRR22 proline rich 22 Novel U 0.0008361756517615677 -0.2884282673199904 1.0 13536 +51123 ZNF706 zinc finger protein 706 Novel U 0.0008357176814681006 -0.2884322157999155 1.0 13537 +55732 FIRRM FIGNL1 interacting regulator of recombination and mitosis Novel U 0.0008356740731561909 -0.28843259177745517 1.0 13538 +23051 ZHX3 zinc fingers and homeoboxes 3 Novel N 0.0008348918057164827 -0.28843933624827744 1.0 13539 +5827 PXMP2 peroxisomal membrane protein 2 Novel U 0.0008347540629571063 -0.28844052382425783 1.0 13540 +10302 SNAPC5 small nuclear RNA activating complex polypeptide 5 Novel N 0.0008347463435995411 -0.28844059037819986 1.0 13541 +239 ALOX12 arachidonate 12-lipoxygenase, 12S type Novel N 0.0008339161894640413 -0.2884477477134803 1.0 13542 +57038 RARS2 arginyl-tRNA synthetase 2, mitochondrial Novel U 0.0008339007054413625 -0.2884478812119922 1.0 13543 +7709 ZBTB17 zinc finger and BTB domain containing 17 Novel N 0.0008338667743740399 -0.28844817375528614 1.0 13544 +10362 HMG20B high mobility group 20B Novel U 0.0008336615805545726 -0.2884499428736951 1.0 13545 +84314 TMEM107 transmembrane protein 107 Novel U 0.0008334617155429228 -0.2884516660487514 1.0 13546 +23217 ZFR2 zinc finger RNA binding protein 2 Novel U 0.000833311935244678 -0.2884529574087135 1.0 13547 +10587 TXNRD2 thioredoxin reductase 2 Novel U 0.0008331784940259335 -0.2884541078981249 1.0 13548 +389396 GLYATL3 glycine-N-acyltransferase like 3 Novel U 0.0008329743395738041 -0.28845586805542633 1.0 13549 +2993 GYPA glycophorin A (MNS blood group) Novel U 0.0008329713444113571 -0.2884558938788017 1.0 13550 +54839 LRRC49 leucine rich repeat containing 49 Novel U 0.0008327903811718015 -0.28845745408855494 1.0 13551 +343068 PRAMEF5 PRAME family member 5 Novel U 0.0008326257857282274 -0.2884588731801729 1.0 13552 +642968 FAM163B family with sequence similarity 163 member B Novel U 0.0008324805863679871 -0.2884601250446874 1.0 13553 +163404 PLPPR5 phospholipid phosphatase related 5 Novel U 0.0008320431076054075 -0.2884638968528949 1.0 13554 +6718 AKR1D1 aldo-keto reductase family 1 member D1 Novel U 0.0008320149749326318 -0.28846413940420285 1.0 13555 +729262 NUTM2B NUT family member 2B Novel U 0.000831288551710113 -0.2884704024032493 1.0 13556 +51524 TMEM138 transmembrane protein 138 Novel N 0.0008312655488589416 -0.288470600726803 1.0 13557 +27022 FOXD3 forkhead box D3 Novel U 0.0008311513309260596 -0.28847158547891794 1.0 13558 +126375 ZNF792 zinc finger protein 792 Novel U 0.000831113454298579 -0.28847191203962586 1.0 13559 +1117 CHI3L2 chitinase 3 like 2 Novel U 0.0008310864257281842 -0.2884721450717005 1.0 13560 +64921 CASD1 CAS1 domain containing 1 Novel N 0.0008308908408245279 -0.28847383134497356 1.0 13561 +132299 OCIAD2 OCIA domain containing 2 Novel U 0.000830818977806401 -0.2884744509259562 1.0 13562 +83941 TM2D1 TM2 domain containing 1 Novel U 0.0008307858496796899 -0.2884747365465415 1.0 13563 +344148 NCKAP5 NCK associated protein 5 Novel U 0.0008307785428288027 -0.2884747995439771 1.0 13564 +84911 ZNF382 zinc finger protein 382 Novel U 0.0008304342281608338 -0.28847776811982967 1.0 13565 +57624 NYAP2 neuronal tyrosine-phosphorylated phosphoinositide-3-kinase adaptor 2 Novel U 0.0008303451962718445 -0.2884785357255705 1.0 13566 +259236 TMIE transmembrane inner ear Novel N 0.0008300679948336052 -0.28848092567166456 1.0 13567 +6563 SLC14A1 solute carrier family 14 member 1 (Kidd blood group) Novel N 0.0008297975022436365 -0.28848325777611905 1.0 13568 +197322 ACSF3 acyl-CoA synthetase family member 3 Novel N 0.0008295223203930289 -0.28848563030994573 1.0 13569 +8195 MKKS MKKS centrosomal shuttling protein Novel N 0.0008295208580931131 -0.2884856429174488 1.0 13570 +56849 TCEAL7 transcription elongation factor A like 7 Novel U 0.0008290307475132709 -0.28848986850110175 1.0 13571 +285382 C3orf70 chromosome 3 open reading frame 70 Novel U 0.0008286345233355693 -0.28849328462488494 1.0 13572 +363 AQP6 aquaporin 6 Novel N 0.0008286177835984413 -0.2884934289497832 1.0 13573 +51490 SPOUT1 SPOUT domain containing methyltransferase 1 Novel U 0.0008284840643945563 -0.28849458183589755 1.0 13574 +83690 CRISPLD1 cysteine rich secretory protein LCCL domain containing 1 Novel N 0.0008283289462736013 -0.2884959192169359 1.0 13575 +729020 RPEL1 ribulose-5-phosphate-3-epimerase like 1 Novel U 0.0008281019015924365 -0.28849787672679733 1.0 13576 +375248 ANKRD36 ankyrin repeat domain 36 Novel U 0.0008279366992110113 -0.288499301051248 1.0 13577 +91694 LONRF1 LON peptidase N-terminal domain and ring finger 1 Novel U 0.0008278772538765516 -0.28849981357075655 1.0 13578 +79816 TLE6 TLE family member 6, subcortical maternal complex member Novel N 0.0008277732453290426 -0.28850071030067054 1.0 13579 +8941 CDK5R2 cyclin dependent kinase 5 regulatory subunit 2 Novel U 0.0008277379782596075 -0.2885010143625664 1.0 13580 +23389 MED13L mediator complex subunit 13L Novel U 0.0008273888726478353 -0.2885040242444725 1.0 13581 +25813 SAMM50 SAMM50 sorting and assembly machinery component Novel U 0.0008272823093971332 -0.2885049430002568 1.0 13582 +26149 ZNF658 zinc finger protein 658 Novel N 0.0008268512381021001 -0.2885086595652372 1.0 13583 +63910 SLC17A9 solute carrier family 17 member 9 Novel N 0.000826601128976263 -0.2885108159296926 1.0 13584 +2329 FMO4 flavin containing dimethylaniline monoxygenase 4 Novel U 0.0008266000215589894 -0.28851082547750595 1.0 13585 +55066 PDPR pyruvate dehydrogenase phosphatase regulatory subunit Novel U 0.0008261979995319201 -0.28851429158857467 1.0 13586 +26330 GAPDHS glyceraldehyde-3-phosphate dehydrogenase, spermatogenic Novel N 0.0008258412259880992 -0.2885173675810478 1.0 13587 +94101 ORMDL1 ORMDL sphingolipid biosynthesis regulator 1 Novel N 0.0008253083501871715 -0.2885219618733688 1.0 13588 +118738 ZNF488 zinc finger protein 488 Novel U 0.0008252648781940095 -0.28852233667560984 1.0 13589 +201798 TIGD4 tigger transposable element derived 4 Novel U 0.0008242251428627486 -0.2885313009559169 1.0 13590 +51340 CRNKL1 crooked neck pre-mRNA splicing factor 1 Novel N 0.0008241748388183708 -0.28853173466201576 1.0 13591 +131675794 NPIPA6 nuclear pore complex interacting protein family, member A6 Novel U 0.0008241368378464775 -0.28853206229478323 1.0 13592 +873 CBR1 carbonyl reductase 1 Novel N 0.0008238965857421331 -0.2885341336750114 1.0 13593 +57404 CYP20A1 cytochrome P450 family 20 subfamily A member 1 Novel U 0.0008238321926172626 -0.28853468885285694 1.0 13594 +54991 C1orf159 chromosome 1 open reading frame 159 Novel U 0.0008234988795352027 -0.28853756257639773 1.0 13595 +84273 NOA1 nitric oxide associated 1 Novel N 0.0008234727727757881 -0.28853778766089977 1.0 13596 +6618 SNAPC2 small nuclear RNA activating complex polypeptide 2 Novel N 0.0008230380578304455 -0.28854153564031965 1.0 13597 +83886 PRSS27 serine protease 27 Novel U 0.000822327560816641 -0.28854766132846127 1.0 13598 +7699 ZNF140 zinc finger protein 140 Novel N 0.0008222882768380809 -0.28854800002292014 1.0 13599 +94239 H2AZ2 H2A.Z variant histone 2 Novel U 0.0008222326525871629 -0.28854847959821406 1.0 13600 +56102 PCDHGB3 protocadherin gamma subfamily B, 3 Novel U 0.000822017361886219 -0.28855033576884975 1.0 13601 +93058 COQ10A coenzyme Q10A Novel U 0.000821710240506305 -0.28855298367553817 1.0 13602 +4682 NUBP1 NUBP iron-sulfur cluster assembly factor 1, cytosolic Novel N 0.0008216681964518512 -0.28855334616652795 1.0 13603 +8914 TIMELESS timeless circadian regulator Novel N 0.0008213351985840801 -0.28855621717238744 1.0 13604 +23195 MDN1 midasin AAA ATPase 1 Novel N 0.0008212890412627924 -0.28855661512670694 1.0 13605 +64802 NMNAT1 nicotinamide nucleotide adenylyltransferase 1 Novel N 0.0008209680390126641 -0.2885593827100167 1.0 13606 +90233 ZNF551 zinc finger protein 551 Novel U 0.0008208293988881184 -0.2885605780228053 1.0 13607 +55277 FGGY FGGY carbohydrate kinase domain containing Novel N 0.0008205782251988449 -0.28856274356560135 1.0 13608 +85452 CFAP74 cilia and flagella associated protein 74 Novel N 0.0008203473350635218 -0.28856473422979345 1.0 13609 +9745 ZNF536 zinc finger protein 536 Novel N 0.0008199942151535947 -0.28856777872175154 1.0 13610 +57464 STRIP2 striatin interacting protein 2 Novel U 0.0008194651465577877 -0.2885723401895135 1.0 13611 +349565 NMNAT3 nicotinamide nucleotide adenylyltransferase 3 Novel N 0.0008188103095107157 -0.28857798599443024 1.0 13612 +5516 PPP2CB protein phosphatase 2 catalytic subunit beta Novel U 0.0008186982212385455 -0.2885789523852613 1.0 13613 +124404 SEPTIN12 septin 12 Novel N 0.0008185403290589852 -0.28858031368338527 1.0 13614 +6543 SLC8A2 solute carrier family 8 member A2 Novel N 0.0008179878701325573 -0.28858507681543033 1.0 13615 +146540 ZNF785 zinc finger protein 785 Novel U 0.000817489136797911 -0.28858937674184026 1.0 13616 +27109 DMAC2L distal membrane arm assembly component 2 like Novel U 0.0008165814500450288 -0.28859720253965554 1.0 13617 +377677 CA13 carbonic anhydrase 13 Novel U 0.0008164193194730123 -0.28859860037990415 1.0 13618 +1358 CPA2 carboxypeptidase A2 Novel N 0.0008160889500309385 -0.28860144872428045 1.0 13619 +115752 DIS3L DIS3 like exosome 3'-5' exoribonuclease Novel N 0.0008159128513966757 -0.28860296699289334 1.0 13620 +89777 SERPINB12 serpin family B member 12 Novel U 0.0008156727550655906 -0.2886050370300921 1.0 13621 +420 ART4 ADP-ribosyltransferase 4 (inactive) (Dombrock blood group) Novel U 0.0008154091520832863 -0.28860730973445453 1.0 13622 +285671 RNF180 ring finger protein 180 Novel U 0.000815362108910494 -0.2886077153263151 1.0 13623 +23584 VSIG2 V-set and immunoglobulin domain containing 2 Novel U 0.0008153193209727368 -0.2886080842308394 1.0 13624 +54480 CHPF2 chondroitin polymerizing factor 2 Novel N 0.0008149849776941591 -0.2886109668364197 1.0 13625 +57801 HES4 hes family bHLH transcription factor 4 Novel U 0.0008149342194354197 -0.288611404458616 1.0 13626 +26504 CNNM4 cyclin and CBS domain divalent metal cation transport mediator 4 Novel N 0.0008147920605064146 -0.2886126301094614 1.0 13627 +6407 SEMG2 semenogelin 2 Novel N 0.0008147152342709272 -0.2886132924817874 1.0 13628 +134353 LSM11 LSM11, U7 small nuclear RNA associated Novel U 0.0008146427660662362 -0.2886139172805037 1.0 13629 +254240 BPIFC BPI fold containing family C Novel U 0.0008146366081298095 -0.2886139703723498 1.0 13630 +143570 XRRA1 X-ray radiation resistance associated 1 Novel N 0.0008145925736457682 -0.28861435002421537 1.0 13631 +4698 NDUFA5 NADH:ubiquinone oxidoreductase subunit A5 Novel N 0.0008145511135486484 -0.28861470748050344 1.0 13632 +113622 ADPRHL1 ADP-ribosylhydrolase like 1 Novel U 0.0008145439637998737 -0.2886147691234526 1.0 13633 +84299 MIEN1 migration and invasion enhancer 1 Novel U 0.0008140980520845278 -0.28861861363800195 1.0 13634 +1660 DHX9 DExH-box helicase 9 Novel U 0.0008139957974530271 -0.28861949524618813 1.0 13635 +6201 RPS7 ribosomal protein S7 Novel U 0.0008139199865298558 -0.2886201488648017 1.0 13636 +128977 C22orf39 chromosome 22 open reading frame 39 Novel U 0.0008133121397364718 -0.2886253895341103 1.0 13637 +200185 KRTCAP2 keratinocyte associated protein 2 Novel N 0.0008131994078856903 -0.2886263614736795 1.0 13638 +957 ENTPD5 ectonucleoside triphosphate diphosphohydrolase 5 (inactive) Novel U 0.0008124167304933582 -0.28863310947898807 1.0 13639 +206338 LVRN laeverin Novel U 0.000811821285398264 -0.2886382432246437 1.0 13640 +94234 FOXQ1 forkhead box Q1 Novel N 0.0008111299737515844 -0.2886442035024125 1.0 13641 +54977 SLC25A38 solute carrier family 25 member 38 Novel N 0.0008111105072530201 -0.28864437133661464 1.0 13642 +389852 SPACA5 sperm acrosome associated 5 Novel U 0.0008109202364424445 -0.2886460117934011 1.0 13643 +8912 CACNA1H calcium voltage-gated channel subunit alpha1 H Novel U 0.0008108761570333253 -0.2886463918325968 1.0 13644 +57215 THAP11 THAP domain containing 11 Novel N 0.0008107748415299671 -0.28864726534390717 1.0 13645 +56606 SLC2A9 solute carrier family 2 member 9 Novel N 0.0008103501934412816 -0.28865092652996516 1.0 13646 +54680 ZNHIT6 zinc finger HIT-type containing 6 Novel U 0.0008098085865608543 -0.2886555960989856 1.0 13647 +10111 RAD50 RAD50 double strand break repair protein Novel U 0.000809403551117471 -0.28865908819080904 1.0 13648 +387758 FIBIN fin bud initiation factor homolog Novel U 0.0008089690107479771 -0.2886628346650893 1.0 13649 +50511 SYCP3 synaptonemal complex protein 3 Novel U 0.0008087936436185635 -0.288664346626891 1.0 13650 +5308 PITX2 paired like homeodomain 2 Novel U 0.0008083345045166474 -0.28866830518392544 1.0 13651 +126917 IFFO2 intermediate filament family orphan 2 Novel U 0.0008080678848399299 -0.28867060389730526 1.0 13652 +130733 TMEM178A transmembrane protein 178A Novel U 0.0008073622036132163 -0.28867668806520214 1.0 13653 +389114 ZNF662 zinc finger protein 662 Novel U 0.0008071689690854196 -0.2886783540742528 1.0 13654 +79057 PRRG3 proline rich and Gla domain 3 Novel U 0.0008070182561766692 -0.28867965347489766 1.0 13655 +10350 ABCA9 ATP binding cassette subfamily A member 9 Novel U 0.0008068949211126515 -0.28868071683213126 1.0 13656 +255626 H2BC1 H2B clustered histone 1 Novel N 0.0008067895066358815 -0.2886816256835378 1.0 13657 +765 CA6 carbonic anhydrase 6 Novel N 0.0008064401238347898 -0.2886846379552855 1.0 13658 +51222 ZNF219 zinc finger protein 219 Novel N 0.0008064177403195318 -0.2886848309391141 1.0 13659 +10008 KCNE3 potassium voltage-gated channel subfamily E regulatory subunit 3 Novel U 0.0008063848394588813 -0.2886851146002809 1.0 13660 +3142 HLX H2.0 like homeobox Novel N 0.0008063845304272769 -0.28868511726465695 1.0 13661 +285343 TCAIM T cell activation inhibitor, mitochondrial Novel U 0.0008063139989477219 -0.28868572536552095 1.0 13662 +64131 XYLT1 xylosyltransferase 1 Novel U 0.000806297143485164 -0.2886858706881684 1.0 13663 +346653 GARIN1A golgi associated RAB2 interactor 1A Novel U 0.0008062524979508531 -0.2886862556083226 1.0 13664 +51754 TMEM8B transmembrane protein 8B Novel N 0.0008054933544029417 -0.28869280071201603 1.0 13665 +391769 H3Y1 H3.Y histone 1 Novel U 0.0008048369379311983 -0.28869846013424966 1.0 13666 +402381 SOHLH1 spermatogenesis and oogenesis specific basic helix-loop-helix 1 Novel N 0.0008047692839633163 -0.2886990434260873 1.0 13667 +112752 IFT43 intraflagellar transport 43 Novel U 0.000804565435932665 -0.28870080094151634 1.0 13668 +10594 PRPF8 pre-mRNA processing factor 8 Novel N 0.0008045323346458363 -0.28870108633069635 1.0 13669 +145376 PPP1R36 protein phosphatase 1 regulatory subunit 36 Novel U 0.0008042426682382266 -0.28870358374594746 1.0 13670 +9421 HAND1 heart and neural crest derivatives expressed 1 Novel U 0.0008042403770186257 -0.2887036035001427 1.0 13671 +51181 DCXR dicarbonyl and L-xylulose reductase Novel N 0.000804203744424598 -0.28870391933517436 1.0 13672 +56953 NT5M 5',3'-nucleotidase, mitochondrial Novel N 0.0008041713355601021 -0.2887041987545006 1.0 13673 +400735 PRAMEF4 PRAME family member 4 Novel U 0.0008036559735691729 -0.2887086420481037 1.0 13674 +3009 H1-5 H1.5 linker histone, cluster member Novel U 0.0008033103608875608 -0.28871162181503335 1.0 13675 +116228 COX20 cytochrome c oxidase assembly factor COX20 Novel N 0.0008032355498801584 -0.2887122668126786 1.0 13676 +51084 CRYL1 crystallin lambda 1 Novel U 0.0008027144682858213 -0.28871675941895447 1.0 13677 +80789 INTS5 integrator complex subunit 5 Novel N 0.0008026401698612704 -0.2887173999972671 1.0 13678 +391723 HELT helt bHLH transcription factor Novel U 0.0008025394757675883 -0.288718268150973 1.0 13679 +8833 GMPS guanine monophosphate synthase Novel N 0.0008023881294168916 -0.28871957301296075 1.0 13680 +127665 ZNF648 zinc finger protein 648 Novel U 0.0008016443635854305 -0.28872598553468204 1.0 13681 +112495 GTF3C6 general transcription factor IIIC subunit 6 Novel N 0.0008014971645482639 -0.28872725463979987 1.0 13682 +57542 KLHL42 kelch like family member 42 Novel U 0.0008013462777749948 -0.2887285555394515 1.0 13683 +63906 GPATCH3 G-patch domain containing 3 Novel U 0.0008012330895169736 -0.2887295314140244 1.0 13684 +221662 RBM24 RNA binding motif protein 24 Novel N 0.0008011494780023559 -0.2887302522869537 1.0 13685 +1653 DDX1 DEAD-box helicase 1 Novel U 0.0008008003583224188 -0.2887332622901512 1.0 13686 +55328 RNLS renalase, FAD dependent amine oxidase Novel N 0.0008007712620559396 -0.28873351314926965 1.0 13687 +65109 UPF3B UPF3B regulator of nonsense mediated mRNA decay Novel U 0.0008007559608486109 -0.28873364507160354 1.0 13688 +1146 CHRNG cholinergic receptor nicotinic gamma subunit Novel U 0.0008005275863137986 -0.2887356140470567 1.0 13689 +8683 SRSF9 serine and arginine rich splicing factor 9 Novel N 0.0008001371472719523 -0.2887389802931664 1.0 13690 +90665 TBL1Y transducin beta like 1 Y-linked Novel N 0.0008000363088562275 -0.28873984969117283 1.0 13691 +152940 SPMIP2 sperm microtubule inner protein 2 Novel U 0.0008000293116031211 -0.28873991001935095 1.0 13692 +374877 SAXO5 stabilizer of axonemal microtubules 5 Novel U 0.0007995728294612404 -0.2887438456688879 1.0 13693 +431705 ASTL astacin like metalloendopeptidase Novel N 0.0007994079041563904 -0.28874526760446895 1.0 13694 +55148 UBR7 ubiquitin protein ligase E3 component n-recognin 7 Novel U 0.0007990970275252014 -0.2887479478877863 1.0 13695 +10127 ZNF263 zinc finger protein 263 Novel N 0.0007989703559287187 -0.2887490400115833 1.0 13696 +80352 RNF39 ring finger protein 39 Novel U 0.0007986868279623647 -0.2887514845030696 1.0 13697 +10199 MPHOSPH10 M-phase phosphoprotein 10 Novel N 0.0007984754533324201 -0.2887533069105378 1.0 13698 +10926 DBF4 DBF4-CDC7 kinase regulatory subunit Novel N 0.0007984576094274761 -0.28875346075523356 1.0 13699 +6147 RPL23A ribosomal protein L23a Novel N 0.0007984207280207837 -0.28875377873545194 1.0 13700 +3049 HBQ1 hemoglobin subunit theta 1 Novel U 0.0007983162978652317 -0.28875467910034164 1.0 13701 +10786 SLC17A3 solute carrier family 17 member 3 Novel N 0.0007983061752568777 -0.28875476637437764 1.0 13702 +114789 SLC25A25 solute carrier family 25 member 25 Novel U 0.0007982109512417799 -0.28875558736673756 1.0 13703 +283871 PGP phosphoglycolate phosphatase Novel U 0.0007981634457023361 -0.2887559969449821 1.0 13704 +93973 ACTR8 actin related protein 8 Novel N 0.0007981134880051929 -0.2887564276649809 1.0 13705 +90326 THAP3 THAP domain containing 3 Novel N 0.0007979829483795021 -0.2887575531377437 1.0 13706 +23242 COBL cordon-bleu WH2 repeat protein Novel U 0.0007978421131631933 -0.28875876737594275 1.0 13707 +8462 KLF11 KLF transcription factor 11 Novel U 0.0007970214119930548 -0.2887658432106444 1.0 13708 +91977 MYOZ3 myozenin 3 Novel U 0.0007968415080380938 -0.2887673942875696 1.0 13709 +57053 CHRNA10 cholinergic receptor nicotinic alpha 10 subunit Novel N 0.0007965336888384824 -0.2887700482106462 1.0 13710 +116534 MRGPRE MAS related GPR family member E Novel U 0.0007959339321166717 -0.28877521912982984 1.0 13711 +8456 FOXN1 forkhead box N1 Novel N 0.0007957479462358968 -0.28877682264326093 1.0 13712 +54345 SOX18 SRY-box transcription factor 18 Novel N 0.0007957096557361078 -0.2887771527722494 1.0 13713 +56139 PCDHA10 protocadherin alpha 10 Novel U 0.0007954644707928121 -0.2887792666819077 1.0 13714 +729515 TMEM242 transmembrane protein 242 Novel N 0.0007953571482723453 -0.2887801919838839 1.0 13715 +201232 SLC16A13 solute carrier family 16 member 13 Novel U 0.0007952539341491251 -0.28878108186451446 1.0 13716 +171482 FAM9A family with sequence similarity 9 member A Novel U 0.0007951979197273766 -0.288781564803742 1.0 13717 +10244 RABEPK Rab9 effector protein with kelch motifs Novel U 0.0007951393661273805 -0.2887820696349886 1.0 13718 +284307 ZIK1 zinc finger protein interacting with K protein 1 Novel U 0.0007950462997166457 -0.28878287202514297 1.0 13719 +79048 SECISBP2 SECIS binding protein 2 Novel N 0.0007949646758874047 -0.28878357576085634 1.0 13720 +101928527 PIGBOS1 PIGB opposite strand 1 Novel N 0.0007945985900036216 -0.2887867320414789 1.0 13721 +284352 PPP1R37 protein phosphatase 1 regulatory subunit 37 Novel U 0.0007945899971026917 -0.288786806126845 1.0 13722 +9925 ZBTB5 zinc finger and BTB domain containing 5 Novel N 0.0007945013330886082 -0.2887875705608807 1.0 13723 +22873 DZIP1 DAZ interacting zinc finger protein 1 Novel U 0.0007944587896331348 -0.2887879373575535 1.0 13724 +84779 NAA11 N-alpha-acetyltransferase 11, NatA catalytic subunit Novel N 0.0007933898621094452 -0.2887971533240232 1.0 13725 +3236 HOXD10 homeobox D10 Novel N 0.0007931510336752196 -0.28879921242980267 1.0 13726 +9679 FAM53B family with sequence similarity 53 member B Novel U 0.0007928172879554759 -0.2888020898834133 1.0 13727 +100130771 EFCAB10 EF-hand calcium binding domain 10 Novel U 0.0007927340614735732 -0.2888028074367082 1.0 13728 +124925 SEZ6 seizure related 6 homolog Novel U 0.0007920366092049126 -0.28880882065704333 1.0 13729 +9315 NREP neuronal regeneration related protein Novel U 0.0007919055379946653 -0.2888099507129657 1.0 13730 +51267 CLEC1A C-type lectin domain family 1 member A Novel N 0.0007918802721879006 -0.288810168547031 1.0 13731 +440561 PRAMEF6 PRAME family member 6 Novel U 0.000791873631859081 -0.28881022579791693 1.0 13732 +117608 ZNF354B zinc finger protein 354B Novel U 0.0007916297108326811 -0.28881232881047 1.0 13733 +402635 GRIFIN galectin-related inter-fiber protein Novel U 0.0007913576294095144 -0.2888146746133587 1.0 13734 +386617 KCTD8 potassium channel tetramerization domain containing 8 Novel U 0.0007912909609863497 -0.28881524940813086 1.0 13735 +3070 HELLS helicase, lymphoid specific Novel U 0.0007899217515885207 -0.2888270543131603 1.0 13736 +3428 IFI16 interferon gamma inducible protein 16 Novel U 0.0007899112942377695 -0.2888271444732429 1.0 13737 +3159 HMGA1 high mobility group AT-hook 1 Novel U 0.0007899085262215423 -0.28882716833823296 1.0 13738 +219988 PATL1 PAT1 homolog 1, processing body mRNA decay factor Novel N 0.0007897545696101812 -0.28882849570509056 1.0 13739 +84265 POLR3GL RNA polymerase III subunit GL Novel N 0.000789180217959656 -0.2888334475895128 1.0 13740 +11185 INMT indolethylamine N-methyltransferase Novel N 0.0007886509540817855 -0.288838010740937 1.0 13741 +7748 ZNF195 zinc finger protein 195 Novel U 0.0007885386920073891 -0.2888389786302378 1.0 13742 +169841 ZNF169 zinc finger protein 169 Novel U 0.0007881104623570799 -0.2888426706954257 1.0 13743 +105373377 PNMA6F PNMA family member 6F Novel U 0.0007877592637863701 -0.2888456986221842 1.0 13744 +51296 SLC15A3 solute carrier family 15 member 3 Novel U 0.0007877112588893273 -0.2888461125057372 1.0 13745 +10576 CCT2 chaperonin containing TCP1 subunit 2 Novel U 0.0007876000880571337 -0.2888470709866812 1.0 13746 +90827 ZNF479 zinc finger protein 479 Novel U 0.0007875969813882731 -0.2888470977714308 1.0 13747 +8438 RAD54L RAD54 like Novel U 0.000787573695587251 -0.2888472985344916 1.0 13748 +112885 PHF21B PHD finger protein 21B Novel U 0.0007874649985825776 -0.2888482356868506 1.0 13749 +55343 SLC35C1 solute carrier family 35 member C1 Novel U 0.0007874005727957269 -0.2888487911462978 1.0 13750 +5223 PGAM1 phosphoglycerate mutase 1 Novel N 0.0007867330741094374 -0.2888545461159988 1.0 13751 +734 OSGIN2 oxidative stress induced growth inhibitor family member 2 Novel U 0.0007864567991098 -0.2888569280746225 1.0 13752 +124751 KRBA2 KRAB-A domain containing 2 Novel U 0.0007864438992219018 -0.288857039293514 1.0 13753 +100131378 C11orf91 chromosome 11 open reading frame 91 Novel U 0.0007864056728620962 -0.28885736886950714 1.0 13754 +501 ALDH7A1 aldehyde dehydrogenase 7 family member A1 Novel U 0.0007862852690890575 -0.28885840695404574 1.0 13755 +53838 C11orf24 chromosome 11 open reading frame 24 Novel U 0.0007861847229361398 -0.2888592738322516 1.0 13756 +1400 CRMP1 collapsin response mediator protein 1 Novel U 0.0007857952539577163 -0.28886263171477083 1.0 13757 +79685 SAP30L SAP30 like Novel U 0.000785741853884048 -0.28886309211388816 1.0 13758 +221150 SKA3 spindle and kinetochore associated complex subunit 3 Novel U 0.0007856773723565959 -0.2888636480539138 1.0 13759 +57649 PHF12 PHD finger protein 12 Novel N 0.0007855694369613529 -0.288864578639909 1.0 13760 +341640 FREM2 FRAS1 related extracellular matrix 2 Novel U 0.000785460824492477 -0.2888655150634262 1.0 13761 +55867 SLC22A11 solute carrier family 22 member 11 Novel N 0.0007852884117974443 -0.28886700155299744 1.0 13762 +9849 ZNF518A zinc finger protein 518A Novel U 0.0007852497273050187 -0.2888673350788701 1.0 13763 +5089 PBX2 PBX homeobox 2 Novel N 0.0007852087769676453 -0.2888676881401654 1.0 13764 +139285 AMER1 APC membrane recruitment protein 1 Novel U 0.000784939196301632 -0.28887001238229015 1.0 13765 +146853 C17orf50 chromosome 17 open reading frame 50 Novel U 0.0007848700093260343 -0.2888706088912518 1.0 13766 +1667 DEFA1 defensin alpha 1 Novel U 0.0007848076229546098 -0.28887114676748243 1.0 13767 +56172 ANKH ANKH inorganic pyrophosphate transport regulator Novel U 0.000784700436687708 -0.288872070894722 1.0 13768 +90459 ERI1 exoribonuclease 1 Novel U 0.0007846814890414187 -0.2888722342555383 1.0 13769 +51312 SLC25A37 solute carrier family 25 member 37 Novel U 0.0007845348280604113 -0.28887349872170043 1.0 13770 +7401 CLRN1 clarin 1 Novel U 0.0007843497046408549 -0.28887509479925433 1.0 13771 +4861 NPAS1 neuronal PAS domain protein 1 Novel N 0.0007842572283761264 -0.28887589210135023 1.0 13772 +85025 TMEM60 transmembrane protein 60 Novel U 0.0007837670794985106 -0.2888801180151949 1.0 13773 +84693 MCEE methylmalonyl-CoA epimerase Novel N 0.0007835599498462953 -0.2888819038237623 1.0 13774 +116179 TGM7 transglutaminase 7 Novel U 0.0007834808056499208 -0.2888825861808388 1.0 13775 +56143 PCDHA5 protocadherin alpha 5 Novel U 0.0007834551976669286 -0.2888828069650429 1.0 13776 +23144 ZC3H3 zinc finger CCCH-type containing 3 Novel U 0.0007833826764907177 -0.2888834322204634 1.0 13777 +3275 PRMT2 protein arginine methyltransferase 2 Novel U 0.0007829370149423752 -0.28888727457814933 1.0 13778 +51111 KMT5B lysine methyltransferase 5B Novel U 0.000782364691856947 -0.28889220897290324 1.0 13779 +388789 SMIM26 small integral membrane protein 26 Novel U 0.0007823520498204627 -0.2888923179686787 1.0 13780 +79031 PDCL3 phosducin like 3 Novel U 0.0007815618551212752 -0.28889913078590984 1.0 13781 +60598 KCNK15 potassium two pore domain channel subfamily K member 15 Novel U 0.0007813411978136242 -0.28890103322578864 1.0 13782 +92293 TMEM132C transmembrane protein 132C Novel U 0.0007811314272222931 -0.2889028418037261 1.0 13783 +84830 ADTRP androgen dependent TFPI regulating protein Novel U 0.000781121615837301 -0.28890292639448933 1.0 13784 +55631 LRRC40 leucine rich repeat containing 40 Novel U 0.0007810689734068063 -0.2889033802614387 1.0 13785 +285095 FAM240C family with sequence similarity 240 member C Novel U 0.0007810409010289702 -0.2889036222929022 1.0 13786 +400746 NCMAP non-compact myelin associated protein Novel U 0.0007807261916196313 -0.28890633562126156 1.0 13787 +6713 SQLE squalene epoxidase Novel N 0.0007804507256259315 -0.2889087106048832 1.0 13788 +56852 RAD18 RAD18 E3 ubiquitin protein ligase Novel U 0.0007802417192227069 -0.2889105125942243 1.0 13789 +10568 SLC34A2 solute carrier family 34 member 2 Novel U 0.0007800543644125403 -0.2889121279101463 1.0 13790 +160298 C11orf42 chromosome 11 open reading frame 42 Novel U 0.0007799869463584152 -0.2889127091680075 1.0 13791 +10736 SIX2 SIX homeobox 2 Novel N 0.0007797343567574319 -0.28891488691836165 1.0 13792 +10528 NOP56 NOP56 ribonucleoprotein Novel N 0.0007797155650699835 -0.28891504893454856 1.0 13793 +10149 ADGRG2 adhesion G protein-coupled receptor G2 Novel N 0.0007790932569306572 -0.2889204142851628 1.0 13794 +100132406 NBPF10 NBPF member 10 Novel U 0.0007790482213433833 -0.28892080256823444 1.0 13795 +231 AKR1B1 aldo-keto reductase family 1 member B Novel U 0.000778995669418894 -0.28892125565486876 1.0 13796 +79723 SUV39H2 SUV39H2 histone lysine methyltransferase Novel N 0.0007784233218648545 -0.2889261902605835 1.0 13797 +55143 CDCA8 cell division cycle associated 8 Novel U 0.0007783553395296209 -0.28892677638350406 1.0 13798 +197258 FCSK fucose kinase Novel N 0.0007781755531119335 -0.28892832644705885 1.0 13799 +54503 ZDHHC13 zinc finger DHHC-type palmitoyltransferase 13 Novel U 0.0007777729076039726 -0.28893179793358925 1.0 13800 +57565 KLHL14 kelch like family member 14 Novel U 0.0007776776758520553 -0.2889326189926537 1.0 13801 +7019 TFAM transcription factor A, mitochondrial Novel N 0.0007775950422712214 -0.28893333143413674 1.0 13802 +51643 TMBIM4 transmembrane BAX inhibitor motif containing 4 Novel N 0.0007774137368813147 -0.2889348945938058 1.0 13803 +9589 WTAP WT1 associated protein Novel N 0.0007772800418289406 -0.28893604727169325 1.0 13804 +1412 CRYBA2 crystallin beta A2 Novel N 0.0007772743598616656 -0.2889360962598788 1.0 13805 +340578 DCAF12L2 DDB1 and CUL4 associated factor 12 like 2 Novel U 0.0007772487528448031 -0.2889363170357533 1.0 13806 +1159 CKMT1B creatine kinase, mitochondrial 1B Novel U 0.0007772162685000216 -0.2889365971058475 1.0 13807 +80000 GREB1L GREB1 like retinoic acid receptor coactivator Novel U 0.000777209030233478 -0.28893665951196984 1.0 13808 +54407 SLC38A2 solute carrier family 38 member 2 Novel N 0.0007768795339660394 -0.28893950032810123 1.0 13809 +157724 SLC7A13 solute carrier family 7 member 13 Novel U 0.0007766917389214143 -0.28894111943959017 1.0 13810 +3381 IBSP integrin binding sialoprotein Novel U 0.0007763078136388843 -0.2889444295260575 1.0 13811 +1337 COX6A1 cytochrome c oxidase subunit 6A1 Novel N 0.0007762523887052857 -0.28894490738289835 1.0 13812 +84650 EBPL EBP like Novel U 0.0007759013976490021 -0.2889479335205309 1.0 13813 +29796 UQCR10 ubiquinol-cytochrome c reductase, complex III subunit X Novel U 0.0007758438793702339 -0.28894842942555415 1.0 13814 +55760 DHX32 DEAH-box helicase 32 (putative) Novel U 0.0007757751127095 -0.28894902231068953 1.0 13815 +10551 AGR2 anterior gradient 2, protein disulphide isomerase family member Novel U 0.0007750342009547114 -0.2889554102254338 1.0 13816 +199223 TTC21A tetratricopeptide repeat domain 21A Novel N 0.0007750341571418696 -0.28895541060317476 1.0 13817 +79896 THNSL1 threonine synthase like 1 Novel U 0.000774990687305832 -0.28895578538681765 1.0 13818 +23196 FAM120A family with sequence similarity 120 member A Novel U 0.0007749284427457032 -0.2889563220403946 1.0 13819 +85407 NKD1 NKD inhibitor of WNT signaling pathway 1 Novel U 0.0007749076365593558 -0.28895650142497536 1.0 13820 +146183 OTOA otoancorin Novel N 0.0007747620856130553 -0.2889577563207574 1.0 13821 +63976 PRDM16 PR/SET domain 16 Novel U 0.0007746847087200711 -0.2889584234406841 1.0 13822 +65080 MRPL44 mitochondrial ribosomal protein L44 Novel N 0.0007740766070378511 -0.2889636663075664 1.0 13823 +8621 CDK13 cyclin dependent kinase 13 Novel U 0.0007739857237008905 -0.28896444987592584 1.0 13824 +755 CFAP410 cilia and flagella associated protein 410 Novel U 0.000773445327349242 -0.28896910900813716 1.0 13825 +3177 SLC29A2 solute carrier family 29 member 2 Novel N 0.0007733093783692701 -0.28897028111869955 1.0 13826 +440050 KRTAP5-7 keratin associated protein 5-7 Novel U 0.0007731922374579282 -0.28897129107184166 1.0 13827 +256394 SERPINA11 serpin family A member 11 Novel U 0.0007730810265887935 -0.2889722498979718 1.0 13828 +148304 C1orf74 chromosome 1 open reading frame 74 Novel U 0.0007728276981706739 -0.28897443401818157 1.0 13829 +100526842 RPL17-C18orf32 RPL17-C18orf32 readthrough Novel U 0.0007727669423693367 -0.28897495783613514 1.0 13830 +11171 STRAP serine/threonine kinase receptor associated protein Novel U 0.0007727548832285306 -0.2889750618063621 1.0 13831 +7007 TECTA tectorin alpha Novel N 0.0007726401280976348 -0.2889760511900342 1.0 13832 +219793 TBATA thymus, brain and testes associated Novel U 0.0007722207654851882 -0.28897966680633125 1.0 13833 +210 ALAD aminolevulinate dehydratase Novel U 0.0007719056705241322 -0.28898238345879973 1.0 13834 +653619 PRAMEF15 PRAME family member 15 Novel U 0.0007716123413942006 -0.28898491245292335 1.0 13835 +139728 PNCK pregnancy up-regulated nonubiquitous CaM kinase Novel U 0.000771314169538289 -0.28898748319955064 1.0 13836 +26266 SLC13A4 solute carrier family 13 member 4 Novel N 0.0007712317841884498 -0.2889881935008619 1.0 13837 +57463 AMIGO1 adhesion molecule with Ig like domain 1 Novel U 0.0007707249820596384 -0.28899256299394954 1.0 13838 +7181 NR2C1 nuclear receptor subfamily 2 group C member 1 Novel N 0.0007702157982328015 -0.2889969530213097 1.0 13839 +6818 SULT1A3 sulfotransferase family 1A member 3 Novel N 0.0007700830739665045 -0.28899809732937626 1.0 13840 +8708 B3GALT1 beta-1,3-galactosyltransferase 1 Novel N 0.0007698481580469717 -0.2890001227026495 1.0 13841 +55168 MRPS18A mitochondrial ribosomal protein S18A Novel U 0.000769457017701875 -0.2890034949951815 1.0 13842 +283629 TSSK4 testis specific serine kinase 4 Novel U 0.0007694030319711359 -0.2890039604436552 1.0 13843 +147323 STARD6 StAR related lipid transfer domain containing 6 Novel U 0.0007687139620640094 -0.2890099013938306 1.0 13844 +23517 MTREX Mtr4 exosome RNA helicase Novel N 0.0007682164196432398 -0.28901419105254506 1.0 13845 +6604 SMARCD3 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 3 Novel U 0.0007675708289119006 -0.28901975713855305 1.0 13846 +388697 HRNR hornerin Novel N 0.0007674969782926034 -0.28902039385602557 1.0 13847 +55266 TMEM19 transmembrane protein 19 Novel U 0.0007673369029959068 -0.2890217739763184 1.0 13848 +115482686 H2AL3 H2A.L variant histone 3 Novel U 0.0007673061665189357 -0.2890220389768305 1.0 13849 +7789 ZXDA zinc finger X-linked duplicated A Novel N 0.0007670048097589134 -0.2890246371827277 1.0 13850 +196477 CCER1 coiled-coil glutamate rich protein 1 Novel U 0.0007669743745170825 -0.2890248995860825 1.0 13851 +7625 ZNF74 zinc finger protein 74 Novel N 0.0007669165779283284 -0.28902539789060944 1.0 13852 +3211 HOXB1 homeobox B1 Novel U 0.0007663908213386268 -0.2890299308032668 1.0 13853 +65008 MRPL1 mitochondrial ribosomal protein L1 Novel U 0.0007663352435264683 -0.2890304099781799 1.0 13854 +9949 AMMECR1 AMMECR nuclear protein 1 Novel U 0.0007661447189998739 -0.2890320526224283 1.0 13855 +55180 LINS1 lines homolog 1 Novel N 0.0007659531935177619 -0.2890337038966093 1.0 13856 +56131 PCDHB4 protocadherin beta 4 Novel U 0.0007655600619223496 -0.2890370933570931 1.0 13857 +387787 LIPT2 lipoyl(octanoyl) transferase 2 Novel N 0.0007655182453970514 -0.289037453886396 1.0 13858 +254359 ZDHHC24 zinc finger DHHC-type containing 24 Novel U 0.0007653367411152887 -0.28903901876084986 1.0 13859 +79902 NUP85 nucleoporin 85 Novel U 0.0007650825780604458 -0.28904121007704237 1.0 13860 +25886 POC1A POC1 centriolar protein A Novel U 0.0007646156159326501 -0.2890452360818154 1.0 13861 +134147 CMBL carboxymethylenebutenolidase homolog Novel N 0.0007641228715901816 -0.2890494843729649 1.0 13862 +221336 BEND6 BEN domain containing 6 Novel U 0.0007640567132198276 -0.2890500547702176 1.0 13863 +4830 NME1 NME/NM23 nucleoside diphosphate kinase 1 Novel U 0.0007639402641303507 -0.289051058758683 1.0 13864 +51659 GINS2 GINS complex subunit 2 Novel U 0.0007638828940665026 -0.2890515533858425 1.0 13865 +126789 PUSL1 pseudouridine synthase like 1 Novel U 0.0007637221466823271 -0.28905293930066817 1.0 13866 +55010 PARPBP PARP1 binding protein Novel N 0.0007633794293749733 -0.28905589410456567 1.0 13867 +255220 TXNDC8 thioredoxin domain containing 8 Novel U 0.0007631086257158747 -0.2890582288909631 1.0 13868 +79862 ZNF669 zinc finger protein 669 Novel U 0.0007625122887930582 -0.2890633703256848 1.0 13869 +145501 ISM2 isthmin 2 Novel U 0.0007624926229233273 -0.28906353987880423 1.0 13870 +2632 GBE1 1,4-alpha-glucan branching enzyme 1 Novel U 0.0007618044948071995 -0.2890694727091454 1.0 13871 +1717 DHCR7 7-dehydrocholesterol reductase Novel U 0.0007617974620016093 -0.28906953334384616 1.0 13872 +84541 KBTBD8 kelch repeat and BTB domain containing 8 Novel N 0.0007617585082956482 -0.2890698691907956 1.0 13873 +79174 CRELD2 cysteine rich with EGF like domains 2 Novel U 0.0007616632799140659 -0.289070690220802 1.0 13874 +54165 DCUN1D1 defective in cullin neddylation 1 domain containing 1 Novel N 0.0007615869849882713 -0.28907134801233825 1.0 13875 +7712 ZNF157 zinc finger protein 157 Novel U 0.0007615503310718085 -0.28907166403120543 1.0 13876 +54807 ZNF586 zinc finger protein 586 Novel U 0.000760948016455635 -0.28907685700377267 1.0 13877 +114785 MBD6 methyl-CpG binding domain protein 6 Novel U 0.0007609319211884995 -0.28907699577224755 1.0 13878 +270 AMPD1 adenosine monophosphate deaminase 1 Novel U 0.0007608816659331394 -0.2890774290577024 1.0 13879 +84950 PRPF38A pre-mRNA processing factor 38A Novel N 0.000760623537609448 -0.28907965456123125 1.0 13880 +84720 PIGO phosphatidylinositol glycan anchor biosynthesis class O Novel U 0.000759888378314469 -0.28908599288002484 1.0 13881 +5740 PTGIS prostaglandin I2 synthase Novel U 0.0007596057584639613 -0.28908842954201386 1.0 13882 +4522 MTHFD1 methylenetetrahydrofolate dehydrogenase, cyclohydrolase and formyltetrahydrofolate synthetase 1 Novel U 0.0007594881350421545 -0.28908944365521366 1.0 13883 +440503 PLIN5 perilipin 5 Novel U 0.0007594834119494901 -0.2890894843762754 1.0 13884 +84193 SETD3 SET domain containing 3, actin N3(tau)-histidine methyltransferase Novel U 0.0007594300087753046 -0.2890899448021244 1.0 13885 +285093 RTP5 receptor transporter protein 5 (putative) Novel U 0.0007591681361862231 -0.2890922025875653 1.0 13886 +10804 GJB6 gap junction protein beta 6 Novel U 0.0007587623408940019 -0.2890957012305731 1.0 13887 +101929983 PRAMEF27 PRAME family member 27 Novel U 0.0007586934207506938 -0.28909629543898835 1.0 13888 +84681 HINT2 histidine triad nucleotide binding protein 2 Novel U 0.000758598624749547 -0.28909711274114275 1.0 13889 +5929 RBBP5 RB binding protein 5, histone lysine methyltransferase complex subunit Novel N 0.0007585642073293217 -0.28909740947762275 1.0 13890 +80316 PPP1R2C PPP1R2C family member C Novel U 0.0007585589856114332 -0.28909745449767876 1.0 13891 +9764 KIAA0513 KIAA0513 Novel U 0.0007584975265289005 -0.2890979843791079 1.0 13892 +6917 TCEA1 transcription elongation factor A1 Novel N 0.0007583209107165564 -0.2890995071066722 1.0 13893 +6447 SCG5 secretogranin V Novel U 0.0007579581769432991 -0.2891026344864222 1.0 13894 +84629 TNRC18 trinucleotide repeat containing 18 Novel U 0.000757591855978046 -0.2891057927938454 1.0 13895 +25797 QPCT glutaminyl-peptide cyclotransferase Novel N 0.0007575700649964459 -0.2891059806690299 1.0 13896 +642778 NPIPA3 nuclear pore complex interacting protein family member A3 Novel U 0.0007575412793581459 -0.2891062288500071 1.0 13897 +8854 ALDH1A2 aldehyde dehydrogenase 1 family member A2 Novel U 0.0007570534700558479 -0.28911043459274827 1.0 13898 +9533 POLR1C RNA polymerase I and III subunit C Novel U 0.0007569381604694125 -0.2891114287567666 1.0 13899 +4808 NHLH2 nescient helix-loop-helix 2 Novel U 0.0007566550888441638 -0.2891138693138194 1.0 13900 +285175 UNC80 unc-80 homolog, NALCN channel complex subunit Novel U 0.0007563949255245048 -0.28911611236246154 1.0 13901 +5814 PURB purine rich element binding protein B Novel U 0.0007563556077707452 -0.2891164513481199 1.0 13902 +57535 ELAPOR1 endosome-lysosome associated apoptosis and autophagy regulator 1 Novel U 0.000756265745668342 -0.28911722611170704 1.0 13903 +6877 TAF5 TATA-box binding protein associated factor 5 Novel N 0.000756197656716399 -0.28911781315384427 1.0 13904 +255313 CT47A11 cancer/testis antigen family 47 member A11 Novel U 0.0007557307371465703 -0.2891218387916955 1.0 13905 +8911 CACNA1I calcium voltage-gated channel subunit alpha1 I Novel U 0.0007557054042285669 -0.28912205720437334 1.0 13906 +29880 ALG5 ALG5 dolichyl-phosphate beta-glucosyltransferase Novel N 0.0007556673213969295 -0.2891223855429105 1.0 13907 +147920 IGFL2 IGF like family member 2 Novel U 0.000755343690795561 -0.28912517578706154 1.0 13908 +3747 KCNC2 potassium voltage-gated channel subfamily C member 2 Novel U 0.0007552132636764862 -0.2891263002898266 1.0 13909 +136259 KLF14 KLF transcription factor 14 Novel N 0.0007551936459068217 -0.28912646942824194 1.0 13910 +55170 PRMT6 protein arginine methyltransferase 6 Novel N 0.0007551820362681385 -0.28912656952299903 1.0 13911 +84131 CEP78 centrosomal protein 78 Novel U 0.0007549586523465613 -0.28912849547090996 1.0 13912 +100289187 TMEM225B transmembrane protein 225B Novel U 0.000754564478189972 -0.2891318939200375 1.0 13913 +4495 MT1G metallothionein 1G Novel N 0.000753868965252196 -0.2891378904200544 1.0 13914 +57819 LSM2 LSM2 homolog, U6 small nuclear RNA and mRNA degradation associated Novel N 0.000753816182368758 -0.28913834549794615 1.0 13915 +84874 ZNF514 zinc finger protein 514 Novel U 0.0007535858755888429 -0.2891403311326261 1.0 13916 +339451 KLHL17 kelch like family member 17 Novel U 0.0007530571431925264 -0.28914488970177876 1.0 13917 +63826 SRR serine racemase Novel N 0.0007526678041167271 -0.2891482464643173 1.0 13918 +401236 STMND1 stathmin domain containing 1 Novel U 0.0007526322156526058 -0.28914855329718 1.0 13919 +285346 ZNF852 zinc finger protein 852 Novel U 0.0007525318143021994 -0.2891494189269428 1.0 13920 +203238 CCDC171 coiled-coil domain containing 171 Novel U 0.0007514512008623875 -0.2891587356458104 1.0 13921 +78995 HROB homologous recombination factor with OB-fold Novel N 0.0007514507838420099 -0.28915873924123264 1.0 13922 +84833 ATP5MK ATP synthase membrane subunit k Novel U 0.0007512630493211001 -0.28916035783090466 1.0 13923 +131540 ZDHHC19 zinc finger DHHC-type palmitoyltransferase 19 Novel N 0.0007509082620287555 -0.28916341669852447 1.0 13924 +10237 SLC35B1 solute carrier family 35 member B1 Novel U 0.0007508419352872698 -0.28916398854742165 1.0 13925 +55013 MCUB mitochondrial calcium uniporter dominant negative subunit beta Novel U 0.0007504318313904737 -0.28916752433790155 1.0 13926 +388112 NANOGP8 Nanog homeobox retrogene P8 Novel N 0.000750310894580642 -0.2891685670181204 1.0 13927 +5892 RAD51D RAD51 paralog D Novel U 0.0007501737469593337 -0.28916974946300217 1.0 13928 +293 SLC25A6 solute carrier family 25 member 6 Novel U 0.0007500198176655166 -0.2891710765943362 1.0 13929 +1912 PHC2 polyhomeotic homolog 2 Novel U 0.0007498985670966545 -0.2891721219796896 1.0 13930 +84294 UTP23 UTP23 small subunit processome component Novel U 0.0007498252154985184 -0.2891727543947542 1.0 13931 +2588 GALNS galactosamine (N-acetyl)-6-sulfatase Novel U 0.0007496790732245882 -0.28917401438878226 1.0 13932 +64761 PARP12 poly(ADP-ribose) polymerase family member 12 Novel N 0.0007492852561986122 -0.2891774097588389 1.0 13933 +56914 OTOR otoraplin Novel N 0.0007491571246909531 -0.2891785144695439 1.0 13934 +643909 SPDYE9 speedy/RINGO cell cycle regulator family member E9 Novel U 0.0007489452356076144 -0.289180341312472 1.0 13935 +7752 ZNF200 zinc finger protein 200 Novel U 0.0007488964701252922 -0.289180761753559 1.0 13936 +389434 IYD iodotyrosine deiodinase Novel U 0.0007488599512593474 -0.28918107660806186 1.0 13937 +283238 SLC22A24 solute carrier family 22 member 24 Novel U 0.000748859395634177 -0.2891810813984923 1.0 13938 +220108 FAM124A family with sequence similarity 124 member A Novel U 0.000748806571739181 -0.2891815368299732 1.0 13939 +84159 ARID5B AT-rich interaction domain 5B Novel U 0.0007485635668018992 -0.28918363194428576 1.0 13940 +57585 CRAMP1 cramped chromatin regulator homolog 1 Novel U 0.0007482931217105665 -0.28918596363922144 1.0 13941 +79768 KATNBL1 katanin regulatory subunit B1 like 1 Novel U 0.000748278492971534 -0.28918608976373916 1.0 13942 +54478 PIMREG PICALM interacting mitotic regulator Novel U 0.0007482554071478922 -0.2891862888026561 1.0 13943 +10474 TADA3 transcriptional adaptor 3 Novel U 0.0007481894915886417 -0.28918685710646574 1.0 13944 +442425 FOXB2 forkhead box B2 Novel U 0.0007480164307692922 -0.2891883491839668 1.0 13945 +9708 PCDHGA8 protocadherin gamma subfamily A, 8 Novel U 0.000747398368546064 -0.28919367792758993 1.0 13946 +219539 YPEL4 yippee like 4 Novel U 0.0007469291656059039 -0.2891977232519624 1.0 13947 +286514 MAGEB18 MAGE family member B18 Novel U 0.0007467990939560394 -0.2891988446899807 1.0 13948 +27094 KCNMB3 potassium calcium-activated channel subfamily M regulatory beta subunit 3 Novel N 0.0007464537386524948 -0.2892018222378752 1.0 13949 +1842 ECM2 extracellular matrix protein 2 Novel N 0.0007462132018212005 -0.2892038960729322 1.0 13950 +2824 GPM6B glycoprotein M6B Novel U 0.000746063442486686 -0.2892051872521514 1.0 13951 +135114 HINT3 histidine triad nucleotide binding protein 3 Novel U 0.0007460519079001529 -0.2892052866998317 1.0 13952 +400745 SH2D5 SH2 domain containing 5 Novel U 0.0007454018565273424 -0.28921089124412747 1.0 13953 +3192 HNRNPU heterogeneous nuclear ribonucleoprotein U Novel U 0.0007450877456723524 -0.28921359941193414 1.0 13954 +222826 FAM217A family with sequence similarity 217 member A Novel U 0.0007448173318122777 -0.2892159308376035 1.0 13955 +91612 CHURC1 churchill domain containing 1 Novel U 0.0007447199265216778 -0.2892167706362543 1.0 13956 +26285 CLDN17 claudin 17 Novel U 0.0007446521061373523 -0.28921735536288357 1.0 13957 +3187 HNRNPH1 heterogeneous nuclear ribonucleoprotein H1 Novel U 0.0007440026327464627 -0.2892229549239958 1.0 13958 +57616 TSHZ3 teashirt zinc finger homeobox 3 Novel N 0.0007439317693276324 -0.2892235658867387 1.0 13959 +64105 CENPK centromere protein K Novel U 0.0007438021390758375 -0.2892246835191577 1.0 13960 +10201 NME6 NME/NM23 nucleoside diphosphate kinase 6 Novel N 0.0007434906066749418 -0.2892273694563211 1.0 13961 +56114 PCDHGA1 protocadherin gamma subfamily A, 1 Novel U 0.0007433587214586036 -0.2892285065303553 1.0 13962 +57562 CEP126 centrosomal protein 126 Novel N 0.0007432940347995843 -0.2892290642389626 1.0 13963 +200942 KLHDC8B kelch domain containing 8B Novel U 0.0007430231051874835 -0.2892314001112883 1.0 13964 +340277 FAM221A family with sequence similarity 221 member A Novel U 0.0007426603914569673 -0.2892345273182359 1.0 13965 +30812 SOX8 SRY-box transcription factor 8 Novel N 0.0007426501109643617 -0.2892346159535017 1.0 13966 +55006 TRMT61B tRNA methyltransferase 61B Novel N 0.0007425733680304265 -0.2892352776076272 1.0 13967 +6006 RHCE Rh blood group CcEe antigens Novel N 0.0007423524408054189 -0.28923718237465096 1.0 13968 +5471 PPAT phosphoribosyl pyrophosphate amidotransferase Novel U 0.0007421839977684014 -0.2892386346390438 1.0 13969 +728036 CT47A10 cancer/testis antigen family 47 member A10 Novel U 0.0007419376443945624 -0.28924075862255316 1.0 13970 +29925 GMPPB GDP-mannose pyrophosphorylase B Novel U 0.0007419103313467371 -0.28924099410730525 1.0 13971 +79898 ZNF613 zinc finger protein 613 Novel U 0.0007417321854809507 -0.28924253002652284 1.0 13972 +84560 MT4 metallothionein 4 Novel U 0.0007416803996458404 -0.2892429765081686 1.0 13973 +219670 ENKUR enkurin, TRPC channel interacting protein Novel N 0.0007416303672817906 -0.2892434078719227 1.0 13974 +100133251 PRR23D2 proline rich 23 domain containing 2 Novel U 0.0007416074948092351 -0.2892436050713918 1.0 13975 +64168 NECAB1 N-terminal EF-hand calcium binding protein 1 Novel U 0.0007414973060152684 -0.28924455508550223 1.0 13976 +8459 TPST2 tyrosylprotein sulfotransferase 2 Novel U 0.0007410558655976767 -0.2892483610498887 1.0 13977 +80854 SETD7 SET domain containing 7, histone lysine methyltransferase Novel N 0.0007408668125427608 -0.28924999100755794 1.0 13978 +11284 PNKP polynucleotide kinase 3'-phosphatase Novel U 0.0007406495413064005 -0.2892518642537648 1.0 13979 +1788 DNMT3A DNA methyltransferase 3 alpha Novel U 0.0007405812919179356 -0.2892524526791367 1.0 13980 +91452 ACBD5 acyl-CoA binding domain containing 5 Novel U 0.0007402143726640925 -0.2892556161448213 1.0 13981 +142940 TRUB1 TruB pseudouridine synthase family member 1 Novel N 0.0007396776315328322 -0.2892602437628393 1.0 13982 +55553 SOX6 SRY-box transcription factor 6 Novel U 0.000739616488356413 -0.28926077092062247 1.0 13983 +11000 SLC27A3 solute carrier family 27 member 3 Novel N 0.0007384449861226709 -0.2892708712548978 1.0 13984 +25876 SPEF1 sperm flagellar 1 Novel N 0.0007382985054989754 -0.2892721341660742 1.0 13985 +387700 SLC16A12 solute carrier family 16 member 12 Novel N 0.0007382529609574576 -0.2892725268371939 1.0 13986 +7367 UGT2B17 UDP glucuronosyltransferase family 2 member B17 Novel N 0.0007381474842572589 -0.2892734362250717 1.0 13987 +54511 HMGCLL1 3-hydroxy-3-methylglutaryl-CoA lyase like 1 Novel N 0.0007380972226256332 -0.28927386956550083 1.0 13988 +4238 MFAP3 microfibril associated protein 3 Novel U 0.0007376540775296245 -0.2892776902271037 1.0 13989 +352909 DNAAF3 dynein axonemal assembly factor 3 Novel N 0.0007376132420815929 -0.28927804229785825 1.0 13990 +6992 PPP1R11 protein phosphatase 1 regulatory inhibitor subunit 11 Novel U 0.0007375019236847813 -0.2892790020510592 1.0 13991 +89792 GAL3ST3 galactose-3-O-sulfotransferase 3 Novel U 0.0007371133915271411 -0.28928235185659595 1.0 13992 +283571 PROX2 prospero homeobox 2 Novel U 0.0007367812313454231 -0.2892852156401823 1.0 13993 +1503 CTPS1 CTP synthase 1 Novel U 0.0007364287065923298 -0.28928825500088 1.0 13994 +137362 GOT1L1 glutamic-oxaloacetic transaminase 1 like 1 Novel U 0.0007363767640956569 -0.2892887028332139 1.0 13995 +161394 SAMD15 sterile alpha motif domain containing 15 Novel U 0.0007362425629813965 -0.28928985987421235 1.0 13996 +6887 TAL2 TAL bHLH transcription factor 2 Novel U 0.0007357586233598624 -0.28929403225374845 1.0 13997 +148534 TLCD4 TLC domain containing 4 Novel U 0.0007356789474465684 -0.2892947191951257 1.0 13998 +60490 PPCDC phosphopantothenoylcysteine decarboxylase Novel N 0.0007350813580806918 -0.2892998714280289 1.0 13999 +6154 RPL26 ribosomal protein L26 Novel U 0.0007347859585834348 -0.2893024182722269 1.0 14000 +8277 TKTL1 transketolase like 1 Novel N 0.0007346984728359932 -0.2893031725476078 1.0 14001 +643853 TMPPE transmembrane protein with metallophosphoesterase domain Novel U 0.0007333974505008163 -0.28931438956461936 1.0 14002 +28232 SLCO3A1 solute carrier organic anion transporter family member 3A1 Novel U 0.0007333134919528235 -0.2893151134295643 1.0 14003 +84059 ADGRV1 adhesion G protein-coupled receptor V1 Novel U 0.0007331758017675445 -0.28931630055226687 1.0 14004 +8942 KYNU kynureninase Novel U 0.0007329348697063452 -0.28931837779487524 1.0 14005 +337963 KRTAP23-1 keratin associated protein 23-1 Novel U 0.0007326188028983006 -0.2893211028263115 1.0 14006 +28 ABO ABO, alpha 1-3-N-acetylgalactosaminyltransferase and alpha 1-3-galactosyltransferase Novel U 0.0007325874878502789 -0.28932137281508635 1.0 14007 +29844 TFPT TCF3 fusion partner Novel N 0.0007325824038133322 -0.28932141664809935 1.0 14008 +727857 BHLHA9 basic helix-loop-helix family member a9 Novel U 0.0007323947683938541 -0.2893230343833491 1.0 14009 +129807 NEU4 neuraminidase 4 Novel N 0.0007323409182034887 -0.28932349866323503 1.0 14010 +1877 E4F1 E4F transcription factor 1 Novel N 0.0007313169031757564 -0.28933232740788883 1.0 14011 +56133 PCDHB2 protocadherin beta 2 Novel U 0.0007311608381814578 -0.28933367295257983 1.0 14012 +781 CACNA2D1 calcium voltage-gated channel auxiliary subunit alpha2delta 1 Novel U 0.0007309270334910274 -0.2893356887451754 1.0 14013 +4009 LMX1A LIM homeobox transcription factor 1 alpha Novel N 0.0007307232868326671 -0.28933744538660355 1.0 14014 +84694 GJA10 gap junction protein alpha 10 Novel U 0.0007307034599482912 -0.28933761632794197 1.0 14015 +51603 METTL13 methyltransferase 13, eEF1A N-terminus and K55 Novel N 0.000730398009265512 -0.28934024983039025 1.0 14016 +55374 TMCO6 transmembrane and coiled-coil domains 6 Novel U 0.000730345119955911 -0.28934070582585586 1.0 14017 +60481 ELOVL5 ELOVL fatty acid elongase 5 Novel N 0.0007299566611513953 -0.2893440549989644 1.0 14018 +55071 C9orf40 chromosome 9 open reading frame 40 Novel U 0.0007297898870285129 -0.2893454928744895 1.0 14019 +57480 PLEKHG1 pleckstrin homology and RhoGEF domain containing G1 Novel U 0.0007295892384458305 -0.2893472228052559 1.0 14020 +55748 CNDP2 carnosine dipeptidase 2 Novel U 0.0007295568820232131 -0.28934750177244434 1.0 14021 +54897 CASZ1 castor zinc finger 1 Novel U 0.0007293751004847498 -0.2893490690373207 1.0 14022 +4807 NHLH1 nescient helix-loop-helix 1 Novel N 0.0007291098084256307 -0.2893513563043873 1.0 14023 +51507 RTF2 replication termination factor 2 Novel N 0.0007288941262170339 -0.28935321585048235 1.0 14024 +79573 TTC13 tetratricopeptide repeat domain 13 Novel U 0.000728626053735726 -0.2893555270894994 1.0 14025 +57529 RTL9 retrotransposon Gag like 9 Novel U 0.0007286112783393428 -0.289355654478452 1.0 14026 +130540 FLACC1 flagellum associated containing coiled-coil domains 1 Novel U 0.0007281812772103176 -0.28935936181678806 1.0 14027 +54898 ELOVL2 ELOVL fatty acid elongase 2 Novel N 0.0007281396859870876 -0.2893597204036054 1.0 14028 +27440 HDHD5 haloacid dehalogenase like hydrolase domain containing 5 Novel U 0.0007278167806140178 -0.2893625043950596 1.0 14029 +139135 PASD1 PAS domain containing repressor 1 Novel N 0.0007275890016800677 -0.28936446823542417 1.0 14030 +84224 NBPF3 NBPF member 3 Novel U 0.0007273563724254119 -0.28936647389377174 1.0 14031 +6547 SLC8A3 solute carrier family 8 member A3 Novel N 0.0007271756624125896 -0.2893680319202815 1.0 14032 +252884 ZNF396 zinc finger protein 396 Novel U 0.0007270920612333428 -0.28936875270410234 1.0 14033 +163051 ZNF709 zinc finger protein 709 Novel U 0.0007268725609092778 -0.28937064516882216 1.0 14034 +81611 ANP32E acidic nuclear phosphoprotein 32 family member E Novel U 0.0007268709981505465 -0.28937065864245043 1.0 14035 +255783 INAFM1 InaF motif containing 1 Novel U 0.0007268491976087147 -0.28937084660006035 1.0 14036 +195977 ANTXRL ANTXR like Novel U 0.0007268172855413533 -0.2893711217361536 1.0 14037 +3104 ZBTB48 zinc finger and BTB domain containing 48 Novel U 0.0007267901742530188 -0.289371355481397 1.0 14038 +8644 AKR1C3 aldo-keto reductase family 1 member C3 Novel U 0.0007267198186022535 -0.2893719620663188 1.0 14039 +254956 MORN5 MORN repeat containing 5 Novel U 0.0007267085556999338 -0.28937205917162095 1.0 14040 +388633 LDLRAD1 low density lipoprotein receptor class A domain containing 1 Novel U 0.0007264889865946416 -0.2893739522293515 1.0 14041 +51278 IER5 immediate early response 5 Novel U 0.0007262391316943054 -0.2893761064019524 1.0 14042 +11218 DDX20 DEAD-box helicase 20 Novel N 0.0007255655159232312 -0.28938191411128916 1.0 14043 +57175 CORO1B coronin 1B Novel U 0.0007255389811242491 -0.28938214288621755 1.0 14044 +85376 RIMBP3 RIMS binding protein 3 Novel U 0.0007255092743654468 -0.2893823990088143 1.0 14045 +8653 DDX3Y DEAD-box helicase 3 Y-linked Novel N 0.0007254438793138163 -0.28938296282496623 1.0 14046 +10933 MORF4L1 mortality factor 4 like 1 Novel N 0.0007252067319571537 -0.2893850074370086 1.0 14047 +80760 ITIH5 inter-alpha-trypsin inhibitor heavy chain 5 Novel U 0.0007246653451927538 -0.289389675108256 1.0 14048 +285800 PRR18 proline rich 18 Novel U 0.0007245915923529232 -0.2893903109827039 1.0 14049 +149951 COMMD7 COMM domain containing 7 Novel U 0.0007244925361566525 -0.2893911650149588 1.0 14050 +55672 NBPF1 NBPF member 1 Novel U 0.0007243595170766554 -0.289392311864819 1.0 14051 +282809 POC1B POC1 centriolar protein B Novel N 0.0007242686016630227 -0.28939309570973365 1.0 14052 +347344 ZNF81 zinc finger protein 81 Novel U 0.0007242323674402853 -0.2893934081101298 1.0 14053 +148870 CCDC27 coiled-coil domain containing 27 Novel U 0.0007237053426877031 -0.2893979519565 1.0 14054 +166929 SGMS2 sphingomyelin synthase 2 Novel U 0.0007234392324132665 -0.289400246277969 1.0 14055 +8799 PEX11B peroxisomal biogenesis factor 11 beta Novel U 0.0007232048806331192 -0.28940226678740494 1.0 14056 +222546 RFX6 regulatory factor X6 Novel U 0.0007229403755202335 -0.28940454726966164 1.0 14057 +51118 UTP11 UTP11 small subunit processome component Novel N 0.0007229176369694783 -0.28940474331449784 1.0 14058 +95 ACY1 aminoacylase 1 Novel N 0.0007228017970217585 -0.2894057420511291 1.0 14059 +4697 NDUFA4 NDUFA4 mitochondrial complex associated Novel U 0.0007225642146538363 -0.2894077904137056 1.0 14060 +140597 TCEAL2 transcription elongation factor A like 2 Novel U 0.0007223487307827719 -0.2894096482497951 1.0 14061 +79937 CNTNAP3 contactin associated protein family member 3 Novel U 0.0007219915957876079 -0.2894127273585912 1.0 14062 +6617 SNAPC1 small nuclear RNA activating complex polypeptide 1 Novel U 0.0007211582684892579 -0.289419912051912 1.0 14063 +135886 TMEM270 transmembrane protein 270 Novel U 0.0007210778948820008 -0.28942060500859346 1.0 14064 +23168 RTF1 RTF1 homolog, Paf1/RNA polymerase II complex component Novel N 0.0007205927421717931 -0.2894247878470094 1.0 14065 +83592 AKR1E2 aldo-keto reductase family 1 member E2 Novel U 0.0007205090998041568 -0.289425508985944 1.0 14066 +27034 ACAD8 acyl-CoA dehydrogenase family member 8 Novel N 0.0007204609888441375 -0.2894259237839397 1.0 14067 +55638 SYBU syntabulin Novel U 0.0007203913363759485 -0.2894265243062362 1.0 14068 +134701 RIPPLY2 ripply transcriptional repressor 2 Novel U 0.0007203618764339556 -0.28942677830085384 1.0 14069 +728588 MS4A18 membrane spanning 4-domains A18 Novel U 0.000720041276363229 -0.28942954241669566 1.0 14070 +79977 GRHL2 grainyhead like transcription factor 2 Novel U 0.0007199721568677083 -0.2894301383438648 1.0 14071 +10845 CLPX caseinolytic mitochondrial matrix peptidase chaperone subunit X Novel U 0.0007192169296508589 -0.28943664968214844 1.0 14072 +221223 CES5A carboxylesterase 5A Novel U 0.0007190382885611314 -0.2894381898710355 1.0 14073 +81617 CAB39L calcium binding protein 39 like Novel U 0.0007188752618269635 -0.28943959543772024 1.0 14074 +161497 STRC stereocilin Novel N 0.0007187920049271144 -0.28944031325326935 1.0 14075 +2982 GUCY1A1 guanylate cyclase 1 soluble subunit alpha 1 Novel U 0.0007187406226852009 -0.28944075625525795 1.0 14076 +55906 ZC4H2 zinc finger C4H2-type containing Novel U 0.0007187282389102872 -0.28944086302438105 1.0 14077 +23034 SAMD4A sterile alpha motif domain containing 4A Novel N 0.0007186967933409105 -0.28944113413847117 1.0 14078 +80347 COASY Coenzyme A synthase Novel N 0.0007182840273785919 -0.28944469288046654 1.0 14079 +6103 RPGR retinitis pigmentosa GTPase regulator Novel U 0.0007180383252985685 -0.2894468112487196 1.0 14080 +9945 GFPT2 glutamine-fructose-6-phosphate transaminase 2 Novel N 0.0007177681259782548 -0.2894491408246927 1.0 14081 +6204 RPS10 ribosomal protein S10 Novel U 0.0007177068128484776 -0.2894496694477618 1.0 14082 +91057 CCDC34 coiled-coil domain containing 34 Novel N 0.0007176771537177158 -0.28944992515972406 1.0 14083 +23508 TTC9 tetratricopeptide repeat domain 9 Novel U 0.0007176023060116862 -0.28945057047377376 1.0 14084 +29943 PADI1 peptidyl arginine deiminase 1 Novel U 0.0007175594317482259 -0.2894509401225719 1.0 14085 +474381 H2AB2 H2A.B variant histone 2 Novel N 0.0007173843817908641 -0.28945244934981307 1.0 14086 +389903 CSAG3 CSAG family member 3 Novel N 0.0007173483450054577 -0.28945276004796483 1.0 14087 +84618 NT5C1A 5'-nucleotidase, cytosolic IA Novel N 0.00071726245646175 -0.28945350055274316 1.0 14088 +8424 BBOX1 gamma-butyrobetaine hydroxylase 1 Novel N 0.000717048514488144 -0.2894553450950638 1.0 14089 +2731 GLDC glycine decarboxylase Novel N 0.0007168986509562427 -0.2894566371726411 1.0 14090 +56140 PCDHA8 protocadherin alpha 8 Novel U 0.000716603779041759 -0.2894591794681817 1.0 14091 +389058 SP5 Sp5 transcription factor Novel U 0.00071639198663599 -0.28946100547758535 1.0 14092 +55796 MBNL3 muscleblind like splicing regulator 3 Novel N 0.0007163605498273737 -0.28946127651614295 1.0 14093 +65122 PRAMEF2 PRAME family member 2 Novel U 0.0007163308120918426 -0.2894615329058115 1.0 14094 +641776 SPDYE14 speedy/RINGO cell cycle regulator family member E14 Novel U 0.0007162004197927818 -0.2894626571083691 1.0 14095 +51725 FBXO40 F-box protein 40 Novel U 0.00071612515050282 -0.2894633060571867 1.0 14096 +256643 BCLAF3 BCLAF1 and THRAP3 family member 3 Novel U 0.0007160669617383219 -0.28946380774293295 1.0 14097 +4285 MIPEP mitochondrial intermediate peptidase Novel U 0.0007158644918835394 -0.2894655533761508 1.0 14098 +29078 NDUFAF4 NADH:ubiquinone oxidoreductase complex assembly factor 4 Novel N 0.0007157273961099045 -0.28946673537401785 1.0 14099 +23592 LEMD3 LEM domain containing 3 Novel U 0.0007152687915656552 -0.28947068932225933 1.0 14100 +54020 SLC37A1 solute carrier family 37 member 1 Novel N 0.0007151319999917973 -0.2894718686974088 1.0 14101 +1002 CDH4 cadherin 4 Novel N 0.000715030708249234 -0.2894727420038608 1.0 14102 +284541 CYP4A22 cytochrome P450 family 4 subfamily A member 22 Novel N 0.0007149193447545327 -0.28947370214588203 1.0 14103 +728132 TSPY9 testis specific protein Y-linked 9 Novel U 0.0007147458246525195 -0.2894751981831778 1.0 14104 +55181 SMG8 SMG8 nonsense mediated mRNA decay factor Novel N 0.0007145643640272019 -0.2894767626812391 1.0 14105 +10773 ZBTB6 zinc finger and BTB domain containing 6 Novel U 0.0007143894642603309 -0.2894782706135838 1.0 14106 +2295 FOXF2 forkhead box F2 Novel U 0.0007143720064031367 -0.28947842112989375 1.0 14107 +286887 KRT6C keratin 6C Novel U 0.000713914294132652 -0.28948236738522365 1.0 14108 +56925 LXN latexin Novel U 0.0007136016468284348 -0.28948506293474285 1.0 14109 +3175 ONECUT1 one cut homeobox 1 Novel U 0.000713574748803708 -0.2894852948412926 1.0 14110 +51188 SS18L2 SS18 like 2 Novel U 0.0007135725727685243 -0.289485313602403 1.0 14111 +27245 AHDC1 AT-hook DNA binding motif containing 1 Novel U 0.0007132392987721406 -0.28948818698895895 1.0 14112 +728343 NXF2B nuclear RNA export factor 2B Novel U 0.0007131426105747573 -0.28948902060505116 1.0 14113 +54998 AURKAIP1 aurora kinase A interacting protein 1 Novel N 0.00071234189673095 -0.2894959241151328 1.0 14114 +116064 LRRC58 leucine rich repeat containing 58 Novel U 0.0007120566050425743 -0.28949838381289145 1.0 14115 +101929726 MYMX myomixer, myoblast fusion factor Novel N 0.000711982460481274 -0.28949902306464215 1.0 14116 +594 BCKDHB branched chain keto acid dehydrogenase E1 subunit beta Novel N 0.0007113216193505463 -0.28950472063493354 1.0 14117 +3242 HPD 4-hydroxyphenylpyruvate dioxygenase Novel N 0.0007111659513401151 -0.28950606275695084 1.0 14118 +203430 RTL3 retrotransposon Gag like 3 Novel U 0.0007108944197006034 -0.28950840381977294 1.0 14119 +10202 DHRS2 dehydrogenase/reductase 2 Novel N 0.0007104912867637895 -0.2895118795087661 1.0 14120 +26093 CCDC9 coiled-coil domain containing 9 Novel U 0.0007104419345130782 -0.2895123050087908 1.0 14121 +8343 H2BC7 H2B clustered histone 7 Novel N 0.0007102546207109897 -0.28951391997115367 1.0 14122 +47 ACLY ATP citrate lyase Novel N 0.0007102494088509067 -0.28951396490621867 1.0 14123 +100631383 FAM47E-STBD1 FAM47E-STBD1 readthrough Novel U 0.0007101262576496249 -0.28951502667824397 1.0 14124 +654790 PCP4L1 Purkinje cell protein 4 like 1 Novel U 0.0007096662963039266 -0.289518992324413 1.0 14125 +10793 ZNF273 zinc finger protein 273 Novel U 0.0007094780610637488 -0.2895206152311335 1.0 14126 +3013 H2AC7 H2A clustered histone 7 Novel U 0.0007094167439148577 -0.28952114388885414 1.0 14127 +79948 PLPPR3 phospholipid phosphatase related 3 Novel U 0.000709245467842251 -0.28952262057881417 1.0 14128 +27091 CACNG5 calcium voltage-gated channel auxiliary subunit gamma 5 Novel U 0.0007089183942789163 -0.2895254405071311 1.0 14129 +284099 C17orf78 chromosome 17 open reading frame 78 Novel U 0.0007085789939044137 -0.28952836671344717 1.0 14130 +51545 ZNF581 zinc finger protein 581 Novel U 0.0007084438755203803 -0.2895295316628652 1.0 14131 +131965 METTL6 methyltransferase 6, tRNA N3-cytidine Novel N 0.0007079519369766743 -0.289533773006664 1.0 14132 +55791 LRIF1 ligand dependent nuclear receptor interacting factor 1 Novel U 0.0007076797626530268 -0.28953611961051234 1.0 14133 +100507027 MRLN myoregulin Novel U 0.0007075451445318209 -0.2895372802468172 1.0 14134 +28957 MRPS28 mitochondrial ribosomal protein S28 Novel N 0.000707504322509879 -0.2895376322018161 1.0 14135 +55854 ZC3H15 zinc finger CCCH-type containing 15 Novel U 0.0007072609457479814 -0.28953973052188686 1.0 14136 +1545 CYP1B1 cytochrome P450 family 1 subfamily B member 1 Novel U 0.0007066936009662024 -0.28954462199522796 1.0 14137 +6173 RPL36A ribosomal protein L36a Novel N 0.0007063264614114545 -0.2895477873602796 1.0 14138 +347442 DCAF8L2 DDB1 and CUL4 associated factor 8 like 2 Novel U 0.0007062670338525264 -0.28954829972653295 1.0 14139 +81563 C1orf21 chromosome 1 open reading frame 21 Novel U 0.0007061161857312424 -0.289549600292939 1.0 14140 +151112 ZSWIM2 zinc finger SWIM-type containing 2 Novel U 0.0007060096082525446 -0.28955051917139274 1.0 14141 +9313 MMP20 matrix metallopeptidase 20 Novel N 0.0007058532293502146 -0.2895518674225029 1.0 14142 +64078 SLC28A3 solute carrier family 28 member 3 Novel N 0.0007053099823171596 -0.2895565511324181 1.0 14143 +84450 ZNF512 zinc finger protein 512 Novel U 0.0007050049430350844 -0.28955918108789525 1.0 14144 +8228 PNPLA4 patatin like phospholipase domain containing 4 Novel N 0.000704742230906386 -0.2895614461115901 1.0 14145 +7626 ZNF75D zinc finger protein 75D Novel U 0.0007047280448743914 -0.28956156841922304 1.0 14146 +147694 ZNF548 zinc finger protein 548 Novel U 0.0007044814413474579 -0.2895636945594759 1.0 14147 +79000 AUNIP aurora kinase A and ninein interacting protein Novel N 0.0007042717483170106 -0.2895655024687071 1.0 14148 +875 CBS cystathionine beta-synthase Novel U 0.0007042215727212379 -0.2895659350673614 1.0 14149 +6342 SCP2 sterol carrier protein 2 Novel U 0.0007040614562720099 -0.2895673155424587 1.0 14150 +29889 GNL2 G protein nucleolar 2 Novel U 0.0007040576268771012 -0.28956734855833144 1.0 14151 +4188 MDFI MyoD family inhibitor Novel U 0.0007040215153823328 -0.2895676599006045 1.0 14152 +10424 PGRMC2 progesterone receptor membrane component 2 Novel N 0.0007036455079577791 -0.28957090172171984 1.0 14153 +51258 MRPL51 mitochondrial ribosomal protein L51 Novel U 0.0007036338425693656 -0.28957100229713406 1.0 14154 +26025 PCDHGA12 protocadherin gamma subfamily A, 12 Novel U 0.0007035456751647635 -0.2895717624495546 1.0 14155 +6873 TAF2 TATA-box binding protein associated factor 2 Novel U 0.0007033529253578368 -0.28957342427949007 1.0 14156 +257407 C2orf72 chromosome 2 open reading frame 72 Novel U 0.0007031904469562081 -0.28957482511861926 1.0 14157 +9933 PUM3 pumilio RNA binding family member 3 Novel N 0.000703118045194828 -0.28957544934448154 1.0 14158 +79891 ZNF671 zinc finger protein 671 Novel U 0.0007030406489956567 -0.2895761166308603 1.0 14159 +196410 TMT1B thiol methyltransferase 1B Novel U 0.0007028620379095652 -0.2895776565610652 1.0 14160 +100528030 POC1B-GALNT4 POC1B-GALNT4 readthrough Novel U 0.0007027722572565909 -0.2895784306224203 1.0 14161 +668 FOXL2 forkhead box L2 Novel U 0.0007025513760253667 -0.28958033499289965 1.0 14162 +51305 KCNK9 potassium two pore domain channel subfamily K member 9 Novel U 0.000701532281243461 -0.28958912131669745 1.0 14163 +6187 RPS2 ribosomal protein S2 Novel U 0.0007010539485542469 -0.28959324535497644 1.0 14164 +84661 DPY30 dpy-30 histone methyltransferase complex regulatory subunit Novel U 0.0007010370140811762 -0.2895933913588285 1.0 14165 +729355 TP53TG3B TP53 target 3B Novel U 0.0007009792745449657 -0.28959388917146583 1.0 14166 +254778 VXN vexin Novel U 0.0007007804395080105 -0.28959560346639507 1.0 14167 +10529 NEBL nebulette Novel U 0.0007006612868783841 -0.2895966307639574 1.0 14168 +79843 FAM124B family with sequence similarity 124 member B Novel U 0.0007002416103071153 -0.28960024908711146 1.0 14169 +58986 PGAP6 post-GPI attachment to proteins 6 Novel U 0.0006999509760089135 -0.2896027548472195 1.0 14170 +11044 TENT4A terminal nucleotidyltransferase 4A Novel U 0.0006995463713008098 -0.2896062432253748 1.0 14171 +51639 SF3B6 splicing factor 3b subunit 6 Novel N 0.0006995082657054589 -0.2896065717601738 1.0 14172 +2328 FMO3 flavin containing dimethylaniline monoxygenase 3 Novel U 0.0006993348088800862 -0.2896080672519178 1.0 14173 +441151 TMEM151B transmembrane protein 151B Novel U 0.000699211994180669 -0.2896091261227268 1.0 14174 +100288323 KRTAP21-3 keratin associated protein 21-3 Novel U 0.0006988902628929539 -0.2896118999915759 1.0 14175 +5901 RAN RAN, member RAS oncogene family Novel U 0.0006986314371995919 -0.28961413150761284 1.0 14176 +261726 TIPRL TOR signaling pathway regulator Novel U 0.0006985868485022075 -0.2896145159377364 1.0 14177 +26002 MOXD1 monooxygenase DBH like 1 Novel U 0.000697785299425427 -0.2896214266489416 1.0 14178 +29114 TAGLN3 transgelin 3 Novel N 0.0006976695318092462 -0.2896224247619524 1.0 14179 +11343 MGLL monoglyceride lipase Novel N 0.0006976458731367968 -0.2896226287397967 1.0 14180 +4604 MYBPC1 myosin binding protein C1 Novel U 0.0006975979664772589 -0.28962304177637604 1.0 14181 +254428 SLC41A1 solute carrier family 41 member 1 Novel U 0.000697576664449878 -0.28962322543594676 1.0 14182 +5238 PGM3 phosphoglucomutase 3 Novel U 0.0006972961125229682 -0.28962564426893034 1.0 14183 +1644 DDC dopa decarboxylase Novel U 0.000696960460335443 -0.28962853815952366 1.0 14184 +64499 TPSB2 tryptase beta 2 Novel U 0.0006965988600047578 -0.28963165576707817 1.0 14185 +7465 WEE1 WEE1 G2 checkpoint kinase Novel U 0.0006965686581669843 -0.2896319161580944 1.0 14186 +134111 UBE2QL1 ubiquitin conjugating enzyme E2 QL1 Novel U 0.0006964927901432907 -0.2896325702690112 1.0 14187 +118611 C10orf90 chromosome 10 open reading frame 90 Novel U 0.0006964420608810057 -0.2896330076412089 1.0 14188 +8366 H4C2 H4 clustered histone 2 Novel U 0.0006964096745664453 -0.28963328686611656 1.0 14189 +5989 RFX1 regulatory factor X1 Novel N 0.0006963505948577739 -0.28963379623331137 1.0 14190 +126767 AADACL3 arylacetamide deacetylase like 3 Novel U 0.0006961931085349119 -0.28963515403226286 1.0 14191 +374864 CCDC178 coiled-coil domain containing 178 Novel U 0.0006961330361917989 -0.28963567195764844 1.0 14192 +144132 DNHD1 dynein heavy chain domain 1 Novel N 0.0006959216964250386 -0.2896374940645369 1.0 14193 +9836 LCMT2 leucine carboxyl methyltransferase 2 Novel N 0.000695835651850824 -0.2896382359145626 1.0 14194 +11219 TREX2 three prime repair exonuclease 2 Novel N 0.0006956374267245738 -0.2896399449510281 1.0 14195 +79758 DHRS12 dehydrogenase/reductase 12 Novel U 0.0006955917527923637 -0.2896403387377147 1.0 14196 +100507537 STRIT1 small transmembrane regulator of ion transport 1 Novel U 0.0006952017941402536 -0.2896437008420509 1.0 14197 +3081 HGD homogentisate 1,2-dioxygenase Novel U 0.0006950177139595889 -0.2896452879251179 1.0 14198 +25957 PNISR PNN interacting serine and arginine rich protein Novel U 0.0006947375740603658 -0.28964770320572475 1.0 14199 +341208 HEPHL1 hephaestin like 1 Novel U 0.0006946577353763988 -0.289648391550461 1.0 14200 +53826 FXYD6 FXYD domain containing ion transport regulator 6 Novel U 0.0006946510429370724 -0.2896484492506278 1.0 14201 +8667 EIF3H eukaryotic translation initiation factor 3 subunit H Novel U 0.0006945859093198794 -0.28964901081277195 1.0 14202 +8802 SUCLG1 succinate-CoA ligase GDP/ADP-forming subunit alpha Novel N 0.0006940011015447434 -0.2896540528467055 1.0 14203 +134429 STARD4 StAR related lipid transfer domain containing 4 Novel U 0.0006936043298548084 -0.28965747369097183 1.0 14204 +80820 EEPD1 endonuclease/exonuclease/phosphatase family domain containing 1 Novel N 0.0006935939753961619 -0.28965756296395023 1.0 14205 +9 NAT1 N-acetyltransferase 1 Novel N 0.00069347169940415 -0.28965861719018865 1.0 14206 +196513 DCP1B decapping mRNA 1B Novel U 0.000693102784266144 -0.28966179786377655 1.0 14207 +5542 PRB1 proline rich protein BstNI subfamily 1 Novel U 0.0006927532526056922 -0.2896648114189442 1.0 14208 +6133 RPL9 ribosomal protein L9 Novel U 0.0006926396066964048 -0.2896657912392465 1.0 14209 +219557 TEX47 testis expressed 47 Novel U 0.0006925305957232705 -0.2896667310985456 1.0 14210 +133688 UGT3A1 UDP glycosyltransferase family 3 member A1 Novel U 0.0006923775278145375 -0.28966805080328073 1.0 14211 +2161 F12 coagulation factor XII Novel U 0.0006921051383488734 -0.28967039926201776 1.0 14212 +23386 NUDCD3 NudC domain containing 3 Novel N 0.0006919139817192774 -0.2896720473560651 1.0 14213 +149986 LSM14B LSM family member 14B Novel U 0.0006918916870825111 -0.2896722395736106 1.0 14214 +1745 DLX1 distal-less homeobox 1 Novel U 0.000691760032862874 -0.2896733746560618 1.0 14215 +110091775 CFAP298-TCP10L CFAP298-TCP10L readthrough Novel U 0.0006916223067331982 -0.28967456208866593 1.0 14216 +125228 FAM210A family with sequence similarity 210 member A Novel U 0.0006915861253780479 -0.2896748740332538 1.0 14217 +114800 CCDC85A coiled-coil domain containing 85A Novel U 0.0006913534307235674 -0.2896768802554587 1.0 14218 +130013 ACMSD aminocarboxymuconate semialdehyde decarboxylase Novel N 0.0006912818732811418 -0.289677497201861 1.0 14219 +988 CDC5L cell division cycle 5 like Novel N 0.0006911499192574865 -0.28967863486913087 1.0 14220 +112939 NACC1 nucleus accumbens associated 1 Novel N 0.0006909863691362359 -0.28968004494829913 1.0 14221 +153642 ARSK arylsulfatase family member K Novel U 0.0006909365303068805 -0.28968047464345625 1.0 14222 +440574 MICOS10 mitochondrial contact site and cristae organizing system subunit 10 Novel N 0.0006908646797723932 -0.28968109411680876 1.0 14223 +57657 HCN3 hyperpolarization activated cyclic nucleotide gated potassium channel 3 Novel N 0.0006905385948676859 -0.2896839055212131 1.0 14224 +25940 FAM98A family with sequence similarity 98 member A Novel N 0.0006903016415590656 -0.28968594846023255 1.0 14225 +343472 BARHL2 BarH like homeobox 2 Novel U 0.0006902331969000549 -0.28968653856916743 1.0 14226 +2963 GTF2F2 general transcription factor IIF subunit 2 Novel N 0.0006898642173876352 -0.2896897197977719 1.0 14227 +9125 CNOT9 CCR4-NOT transcription complex subunit 9 Novel U 0.000689764592570123 -0.28969057873250553 1.0 14228 +128414 NKAIN4 sodium/potassium transporting ATPase interacting 4 Novel U 0.0006896952913294439 -0.28969117622662577 1.0 14229 +253832 ZDHHC20 zinc finger DHHC-type palmitoyltransferase 20 Novel U 0.0006896044440096633 -0.28969195948445603 1.0 14230 +50801 KCNK4 potassium two pore domain channel subfamily K member 4 Novel U 0.0006895150906956266 -0.2896927298614254 1.0 14231 +374291 NDUFS7 NADH:ubiquinone oxidoreductase core subunit S7 Novel N 0.0006893693164136412 -0.28969398668273943 1.0 14232 +6157 RPL27A ribosomal protein L27a Novel N 0.0006891509157673488 -0.28969586966637356 1.0 14233 +150365 MEI1 meiotic double-stranded break formation protein 1 Novel U 0.0006889149658670216 -0.28969790395431333 1.0 14234 +1996 ELAVL4 ELAV like RNA binding protein 4 Novel N 0.0006882898007533692 -0.28970329393688726 1.0 14235 +5349 FXYD3 FXYD domain containing ion transport regulator 3 Novel N 0.0006879061679229722 -0.2897066015019217 1.0 14236 +56971 CEACAM19 CEA cell adhesion molecule 19 Novel U 0.00068763729911419 -0.28970891960663087 1.0 14237 +9333 TGM5 transglutaminase 5 Novel U 0.0006869118273756403 -0.28971517440227323 1.0 14238 +401124 DTHD1 death domain containing 1 Novel U 0.0006867658654976391 -0.2897164328409828 1.0 14239 +191 AHCY adenosylhomocysteinase Novel N 0.0006864050461587109 -0.289719543715065 1.0 14240 +101927581 CCDC182 coiled-coil domain containing 182 Novel U 0.0006862950336326323 -0.2897204922094475 1.0 14241 +11335 CBX3 chromobox 3 Novel N 0.0006862566581731543 -0.28972082307093255 1.0 14242 +492307 PPDPFL pancreatic progenitor cell differentiation and proliferation factor like Novel U 0.0006861986479314443 -0.28972132321751 1.0 14243 +54534 MRPL50 mitochondrial ribosomal protein L50 Novel U 0.0006861141183591241 -0.2897220520056522 1.0 14244 +79759 ZNF668 zinc finger protein 668 Novel U 0.0006861029170945684 -0.2897221485795324 1.0 14245 +54883 CWC25 CWC25 spliceosome associated protein homolog Novel N 0.0006858852298095855 -0.2897240254127833 1.0 14246 +7499 XG Xg glycoprotein (Xg blood group) Novel U 0.0006857886129438874 -0.28972485841387546 1.0 14247 +129080 EMID1 EMI domain containing 1 Novel U 0.0006855361301371868 -0.2897270352434819 1.0 14248 +55692 LUC7L LUC7 like Novel U 0.0006850806598547127 -0.2897309621690763 1.0 14249 +79159 NOL12 nucleolar protein 12 Novel U 0.0006849468382379547 -0.2897321159381631 1.0 14250 +55076 TMEM45A transmembrane protein 45A Novel U 0.0006847452062116557 -0.28973385434787985 1.0 14251 +64925 CCDC71 coiled-coil domain containing 71 Novel U 0.0006846557833335259 -0.2897346253246094 1.0 14252 +348378 SHISAL2A shisa like 2A Novel U 0.0006846123530087135 -0.2897349997675987 1.0 14253 +201625 DNAH12 dynein axonemal heavy chain 12 Novel U 0.0006845290418502816 -0.2897357180509487 1.0 14254 +7592 ZNF41 zinc finger protein 41 Novel U 0.0006842864586691868 -0.28973780952900835 1.0 14255 +29105 CFAP20 cilia and flagella associated protein 20 Novel U 0.0006841765673459774 -0.2897387569784168 1.0 14256 +6398 SECTM1 secreted and transmembrane 1 Novel N 0.0006838403908277434 -0.28974165538962926 1.0 14257 +389118 CDHR4 cadherin related family member 4 Novel U 0.0006837585334571811 -0.28974236113886453 1.0 14258 +57786 RBAK RB associated KRAB zinc finger Novel N 0.0006836867287906842 -0.2897429802167572 1.0 14259 +1005 CDH7 cadherin 7 Novel U 0.0006835316900933116 -0.2897443169130297 1.0 14260 +91734 IDI2 isopentenyl-diphosphate delta isomerase 2 Novel N 0.0006834808945170094 -0.28974475485696666 1.0 14261 +57190 SELENON selenoprotein N Novel U 0.0006833379015349123 -0.2897459876987629 1.0 14262 +11341 SCRG1 stimulator of chondrogenesis 1 Novel N 0.0006828561058709727 -0.2897501415937518 1.0 14263 +284546 C1orf185 chromosome 1 open reading frame 185 Novel U 0.0006823535635536047 -0.28975447436004687 1.0 14264 +284339 TMEM145 transmembrane protein 145 Novel U 0.0006819695365383861 -0.2897577853236223 1.0 14265 +283130 SLC25A45 solute carrier family 25 member 45 Novel U 0.000681930524584342 -0.2897581216727689 1.0 14266 +6448 SGSH N-sulfoglucosamine sulfohydrolase Novel U 0.0006818807455218565 -0.2897585508526343 1.0 14267 +653121 ZBTB8A zinc finger and BTB domain containing 8A Novel N 0.0006818668725999263 -0.28975867046072795 1.0 14268 +54522 ANKRD16 ankyrin repeat domain 16 Novel U 0.00068165784665309 -0.2897604726185681 1.0 14269 +158830 CXorf65 chromosome X open reading frame 65 Novel U 0.0006812781216517338 -0.2897637464914946 1.0 14270 +2582 GALE UDP-galactose-4-epimerase Novel N 0.0006811913774340972 -0.28976449437363205 1.0 14271 +11068 CYB561D2 cytochrome b561 family member D2 Novel N 0.000680477897035412 -0.2897706457836064 1.0 14272 +337985 KRTAP20-3 keratin associated protein 20-3 Novel U 0.0006804474993712631 -0.2897709078629779 1.0 14273 +5212 VIT vitrin Novel U 0.0006802739869036538 -0.2897724038344522 1.0 14274 +8543 LMO4 LIM domain only 4 Novel U 0.0006801926438721722 -0.28977310514921306 1.0 14275 +1544 CYP1A2 cytochrome P450 family 1 subfamily A member 2 Novel N 0.000680089401257353 -0.28977399527548947 1.0 14276 +54466 SPIN2A spindlin family member 2A Novel U 0.000679970479190859 -0.289775020585207 1.0 14277 +10969 EBNA1BP2 EBNA1 binding protein 2 Novel U 0.0006799172600581618 -0.28977547942430654 1.0 14278 +63922 CHTF18 chromosome transmission fidelity factor 18 Novel U 0.0006794811877054219 -0.28977923910687825 1.0 14279 +55037 PTCD3 pentatricopeptide repeat domain 3 Novel N 0.0006794355657421353 -0.2897796324455047 1.0 14280 +8553 BHLHE40 basic helix-loop-helix family member e40 Novel U 0.0006793596775105026 -0.2897802867306481 1.0 14281 +219902 TLCD5 TLC domain containing 5 Novel U 0.0006791501241173425 -0.2897820934359693 1.0 14282 +219738 FAM241B family with sequence similarity 241 member B Novel U 0.000678790600637637 -0.28978519313754925 1.0 14283 +200350 FOXD4L1 forkhead box D4 like 1 Novel U 0.000678756908610912 -0.2897854836199082 1.0 14284 +255027 MPV17L MPV17 mitochondrial inner membrane protein like Novel N 0.0006786646921538408 -0.2897862786820218 1.0 14285 +10840 ALDH1L1 aldehyde dehydrogenase 1 family member L1 Novel N 0.0006785186773517035 -0.2897875375770271 1.0 14286 +1645 AKR1C1 aldo-keto reductase family 1 member C1 Novel U 0.0006780438672398762 -0.2897916312447203 1.0 14287 +401647 GOLGA7B golgin A7 family member B Novel U 0.0006780072394957158 -0.2897919470379378 1.0 14288 +51530 ZC3HC1 zinc finger C3HC-type containing 1 Novel U 0.0006778689310847513 -0.28979313949079333 1.0 14289 +3199 HOXA2 homeobox A2 Novel U 0.0006775831443643147 -0.28979560345656713 1.0 14290 +55776 SAYSD1 SAYSVFN motif domain containing 1 Novel U 0.0006773349401589946 -0.2897977433973799 1.0 14291 +9121 SLC16A5 solute carrier family 16 member 5 Novel U 0.0006771045396022358 -0.2897997298405752 1.0 14292 +728049 CT47A8 cancer/testis antigen family 47 member A8 Novel U 0.0006768074239864958 -0.2898022914806225 1.0 14293 +388324 INCA1 inhibitor of CDK, cyclin A1 interacting protein 1 Novel U 0.0006765974654196228 -0.2898041016792276 1.0 14294 +51477 ISYNA1 inositol-3-phosphate synthase 1 Novel N 0.0006765186040847439 -0.2898047815975587 1.0 14295 +1158 CKM creatine kinase, M-type Novel U 0.0006763917737875065 -0.2898058750896251 1.0 14296 +57684 ZBTB26 zinc finger and BTB domain containing 26 Novel U 0.0006761084212421881 -0.2898083180686848 1.0 14297 +653282 CT47A7 cancer/testis antigen family 47 member A7 Novel U 0.0006759447077079742 -0.2898097295567497 1.0 14298 +4588 MUC6 mucin 6, oligomeric mucus/gel-forming Novel U 0.0006759252073194287 -0.2898098976831409 1.0 14299 +353174 ZACN zinc activated ion channel Novel N 0.0006758795703572582 -0.28981029115108314 1.0 14300 +56996 SLC12A9 solute carrier family 12 member 9 Novel U 0.0006758570491054254 -0.2898104853224345 1.0 14301 +1585 CYP11B2 cytochrome P450 family 11 subfamily B member 2 Novel N 0.0006757471040259393 -0.2898114332353131 1.0 14302 +728358 DEFA1B defensin alpha 1B Novel U 0.0006757246852915374 -0.2898116265227905 1.0 14303 +147807 ZNF524 zinc finger protein 524 Novel U 0.000675720309299874 -0.2898116642512534 1.0 14304 +1553 CYP2A13 cytochrome P450 family 2 subfamily A member 13 Novel N 0.0006755303037026915 -0.28981330242145104 1.0 14305 +54766 BTG4 BTG anti-proliferation factor 4 Novel N 0.0006755236614169685 -0.2898133596892088 1.0 14306 +1013 CDH15 cadherin 15 Novel N 0.0006753798532012776 -0.2898145995597 1.0 14307 +113612 CYP2U1 cytochrome P450 family 2 subfamily U member 1 Novel N 0.000674870941816953 -0.2898189872381441 1.0 14308 +5423 POLB DNA polymerase beta Novel N 0.0006748461475310255 -0.2898192010069008 1.0 14309 +56033 BARX1 BARX homeobox 1 Novel U 0.0006747169511522812 -0.28982031489859894 1.0 14310 +51117 COQ4 coenzyme Q4 Novel N 0.0006746895873038605 -0.2898205508213383 1.0 14311 +57592 ZNF687 zinc finger protein 687 Novel U 0.0006744077285009889 -0.289822980921807 1.0 14312 +6602 SMARCD1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 1 Novel U 0.000674172193384154 -0.2898250116336103 1.0 14313 +7407 VARS1 valyl-tRNA synthetase 1 Novel N 0.0006740625830781996 -0.2898259566601739 1.0 14314 +286499 FAM133A family with sequence similarity 133 member A Novel U 0.0006729736267312372 -0.28983534530903754 1.0 14315 +131096 KCNH8 potassium voltage-gated channel subfamily H member 8 Novel U 0.0006728097241113081 -0.2898367584273417 1.0 14316 +146802 SLC47A2 solute carrier family 47 member 2 Novel N 0.0006723751273349318 -0.2898405053879449 1.0 14317 +57017 COQ9 coenzyme Q9 Novel N 0.0006723327462163081 -0.289840870784999 1.0 14318 +390598 SKOR1 SKI family transcriptional corepressor 1 Novel U 0.0006722915047138991 -0.2898412263566303 1.0 14319 +54455 FBXO42 F-box protein 42 Novel U 0.000671879559841542 -0.289844778019439 1.0 14320 +26175 LYSET lysosomal enzyme trafficking factor Novel U 0.0006716824944071341 -0.2898464770573958 1.0 14321 +84498 FAM120B family with sequence similarity 120 member B Novel U 0.0006716771326891281 -0.28984652328449 1.0 14322 +54454 ATAD2B ATPase family AAA domain containing 2B Novel U 0.0006716453034282267 -0.2898467977066512 1.0 14323 +29935 RPA4 replication protein A4 Novel N 0.0006713621766022794 -0.28984923873962753 1.0 14324 +148213 ZNF681 zinc finger protein 681 Novel U 0.0006707240684582694 -0.2898547403130541 1.0 14325 +79050 NOC4L nucleolar complex associated 4 homolog Novel U 0.000670170233954805 -0.28985951530490395 1.0 14326 +51373 MRPS17 mitochondrial ribosomal protein S17 Novel U 0.0006698607781131132 -0.28986218333860847 1.0 14327 +57168 ASPHD2 aspartate beta-hydroxylase domain containing 2 Novel U 0.0006698233127380881 -0.2898625063536234 1.0 14328 +359787 DPPA3 developmental pluripotency associated 3 Novel U 0.0006697471014550478 -0.2898631634240173 1.0 14329 +43849 KLK12 kallikrein related peptidase 12 Novel N 0.0006697277031170029 -0.28986333067056025 1.0 14330 +51460 SFMBT1 Scm like with four mbt domains 1 Novel N 0.00066972349748221 -0.28986336693025827 1.0 14331 +339291 LRRC30 leucine rich repeat containing 30 Novel U 0.0006686696315790192 -0.28987245304003856 1.0 14332 +10406 WFDC2 WAP four-disulfide core domain 2 Novel N 0.000668604009950724 -0.28987301880966526 1.0 14333 +29068 ZBTB44 zinc finger and BTB domain containing 44 Novel U 0.0006683416388995246 -0.2898752808926942 1.0 14334 +64111 NPVF neuropeptide VF precursor Novel U 0.0006683090931107352 -0.2898755614925399 1.0 14335 +7693 ZNF134 zinc finger protein 134 Novel U 0.0006681858844628934 -0.2898766237598519 1.0 14336 +8896 BUD31 BUD31 homolog Novel U 0.0006681796118072756 -0.2898766778407718 1.0 14337 +441584 SSU72L4 SSU72 like 4 Novel U 0.0006681428634896057 -0.2898769946735374 1.0 14338 +64118 DUS1L dihydrouridine synthase 1 like Novel N 0.0006679292239522082 -0.2898788366083455 1.0 14339 +10873 ME3 malic enzyme 3 Novel N 0.0006678663839897141 -0.2898793783952997 1.0 14340 +100507421 TMEM178B transmembrane protein 178B Novel U 0.00066783611033592 -0.2898796394054918 1.0 14341 +8170 SLC14A2 solute carrier family 14 member 2 Novel N 0.000667824707530375 -0.28987973771699677 1.0 14342 +57718 PPP4R4 protein phosphatase 4 regulatory subunit 4 Novel U 0.000667808865650238 -0.2898798743008464 1.0 14343 +29928 TIMM22 translocase of inner mitochondrial membrane 22 Novel U 0.0006676232020057618 -0.28988147503605455 1.0 14344 +84915 FAM222A family with sequence similarity 222 member A Novel U 0.0006673578144066603 -0.28988376312683767 1.0 14345 +4242 MFNG MFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase Novel U 0.0006672786628743549 -0.28988444554716236 1.0 14346 +54676 GTPBP2 GTP binding protein 2 Novel U 0.0006672540114920764 -0.28988465808384745 1.0 14347 +6533 SLC6A6 solute carrier family 6 member 6 Novel U 0.0006672290095884621 -0.2898848736426204 1.0 14348 +4548 MTR 5-methyltetrahydrofolate-homocysteine methyltransferase Novel U 0.0006668909176751616 -0.2898877885677838 1.0 14349 +23251 MINAR1 membrane integral NOTCH2 associated receptor 1 Novel U 0.0006667069186778411 -0.2898893749509129 1.0 14350 +145389 SLC38A6 solute carrier family 38 member 6 Novel U 0.0006663856879408751 -0.2898921445041663 1.0 14351 +390231 TRIM77 tripartite motif containing 77 Novel U 0.0006662475231684848 -0.2898933357186139 1.0 14352 +55117 SLC6A15 solute carrier family 6 member 15 Novel N 0.000666220084715956 -0.289893572284567 1.0 14353 +55958 KLHL9 kelch like family member 9 Novel U 0.0006658233011988645 -0.28989699323080353 1.0 14354 +441869 ANKRD65 ankyrin repeat domain 65 Novel U 0.0006654139938893778 -0.2899005221533511 1.0 14355 +57210 SLC45A4 solute carrier family 45 member 4 Novel U 0.0006654128629776061 -0.28990053190372683 1.0 14356 +64216 TFB2M transcription factor B2, mitochondrial Novel N 0.0006651289308865207 -0.28990297987945307 1.0 14357 +438 ASMT acetylserotonin O-methyltransferase Novel N 0.0006649227104097281 -0.28990475784938774 1.0 14358 +155368 METTL27 methyltransferase like 27 Novel U 0.000664822916572154 -0.28990561824136063 1.0 14359 +64282 TENT4B terminal nucleotidyltransferase 4B Novel U 0.0006645473448540263 -0.289907994136506 1.0 14360 +85352 SHISAL1 shisa like 1 Novel U 0.0006642143369230156 -0.2899108652291276 1.0 14361 +10428 CFDP1 craniofacial development protein 1 Novel U 0.0006641566108015593 -0.28991136292610703 1.0 14362 +84688 SPMIP6 sperm microtubule inner protein 6 Novel U 0.0006640968152395662 -0.2899118784651704 1.0 14363 +124093 CCDC78 coiled-coil domain containing 78 Novel U 0.0006639927113590395 -0.2899127760170166 1.0 14364 +10140 TOB1 transducer of ERBB2, 1 Novel N 0.0006638689153686835 -0.28991384334821624 1.0 14365 +79682 CENPU centromere protein U Novel U 0.000663704734174542 -0.28991525886830216 1.0 14366 +283377 SPRYD4 SPRY domain containing 4 Novel U 0.00066339717910011 -0.28991791051417215 1.0 14367 +129685 TAF8 TATA-box binding protein associated factor 8 Novel N 0.0006631960508401234 -0.2899196445805697 1.0 14368 +100381270 ZBED6 zinc finger BED-type containing 6 Novel U 0.0006631716582079964 -0.28991985488639 1.0 14369 +347541 MAGEB5 MAGE family member B5 Novel U 0.0006631466961440331 -0.2899200701016777 1.0 14370 +8756 ADAM7 ADAM metallopeptidase domain 7 Novel U 0.0006626942668691343 -0.2899239708086339 1.0 14371 +8310 ACOX3 acyl-CoA oxidase 3, pristanoyl Novel U 0.0006622880716370165 -0.28992747289980136 1.0 14372 +113189 CHST14 carbohydrate sulfotransferase 14 Novel U 0.0006620856679392247 -0.2899292179626339 1.0 14373 +22828 SCAF8 SR-related CTD associated factor 8 Novel N 0.0006620057720524839 -0.289929906800555 1.0 14374 +117143 TADA1 transcriptional adaptor 1 Novel U 0.0006619051266661 -0.28993077453432153 1.0 14375 +3020 H3-3A H3.3 histone A Novel U 0.0006617498877490074 -0.28993211295682725 1.0 14376 +9282 MED14 mediator complex subunit 14 Novel N 0.0006612691440038071 -0.2899362577824942 1.0 14377 +57447 NDRG2 NDRG family member 2 Novel U 0.0006610068191428206 -0.2899385194672852 1.0 14378 +84984 CEP19 centrosomal protein 19 Novel U 0.0006609517558407751 -0.2899389942062494 1.0 14379 +503618 DEFB104B defensin beta 104B Novel U 0.0006607824355135544 -0.2899404540343703 1.0 14380 +147929 ZNF565 zinc finger protein 565 Novel U 0.0006606469271061951 -0.2899416223464503 1.0 14381 +653505 PPIAL4A peptidylprolyl isomerase A like 4A Novel U 0.000660480819247239 -0.28994305447765156 1.0 14382 +285848 PNPLA1 patatin like phospholipase domain containing 1 Novel U 0.0006603201420482879 -0.2899444397873616 1.0 14383 +64100 ELSPBP1 epididymal sperm binding protein 1 Novel U 0.0006602466870872046 -0.28994507309358997 1.0 14384 +10826 FAXDC2 fatty acid hydroxylase domain containing 2 Novel N 0.0006602247738754209 -0.2899452620226058 1.0 14385 +4014 LORICRIN loricrin cornified envelope precursor protein Novel U 0.0006599966512856678 -0.28994722882586565 1.0 14386 +144110 TMEM86A transmembrane protein 86A Novel U 0.0006599440636887327 -0.2899476822200569 1.0 14387 +55892 MYNN myoneurin Novel U 0.0006598416393417639 -0.28994856529147794 1.0 14388 +7587 ZNF37A zinc finger protein 37A Novel U 0.0006598381649090164 -0.2899485952469754 1.0 14389 +122416 ANKRD9 ankyrin repeat domain 9 Novel U 0.0006597414280852614 -0.28994942928230927 1.0 14390 +23057 NMNAT2 nicotinamide nucleotide adenylyltransferase 2 Novel N 0.0006595815896682967 -0.2899508073602974 1.0 14391 +155066 ATP6V0E2 ATPase H+ transporting V0 subunit e2 Novel N 0.0006593970195580926 -0.28995239866738726 1.0 14392 +80714 PBX4 PBX homeobox 4 Novel N 0.0006593197337576975 -0.28995306500194146 1.0 14393 +285613 RELL2 RELT like 2 Novel U 0.0006592996103021788 -0.2899532385002257 1.0 14394 +5638 PRRG1 proline rich and Gla domain 1 Novel U 0.000659005005811381 -0.289955778490121 1.0 14395 +6120 RPE ribulose-5-phosphate-3-epimerase Novel N 0.0006588738074612037 -0.28995690964220505 1.0 14396 +2074 ERCC6 ERCC excision repair 6, chromatin remodeling factor Novel U 0.0006586158288658263 -0.28995913385482214 1.0 14397 +493911 PHOSPHO2 phosphatase, orphan 2 Novel U 0.0006586095983315223 -0.289959187572585 1.0 14398 +100507170 CT47A12 cancer/testis antigen family 47 member A12 Novel U 0.0006585637335066126 -0.28995958300509017 1.0 14399 +54439 RBM27 RNA binding motif protein 27 Novel U 0.0006583742818607968 -0.28996121639928835 1.0 14400 +7388 UQCRH ubiquinol-cytochrome c reductase hinge protein Novel N 0.0006581302867613366 -0.2899633200504766 1.0 14401 +89766 UMODL1 uromodulin like 1 Novel U 0.0006571416903703718 -0.2899718434264673 1.0 14402 +118427 OLFM3 olfactomedin 3 Novel U 0.0006569783529933044 -0.2899732516714203 1.0 14403 +8538 BARX2 BARX homeobox 2 Novel N 0.0006569121020288955 -0.28997382286699064 1.0 14404 +139420 PPP4R3C protein phosphatase 4 regulatory subunit 3C Novel U 0.0006567796184226457 -0.2899749651001598 1.0 14405 +79080 CCDC86 coiled-coil domain containing 86 Novel U 0.0006562186378298647 -0.28997980170340804 1.0 14406 +81628 TSC22D4 TSC22 domain family member 4 Novel U 0.0006561332300895744 -0.2899805380628462 1.0 14407 +80071 CCDC15 coiled-coil domain containing 15 Novel U 0.0006555981593287133 -0.28998515127944113 1.0 14408 +114798 SLITRK1 SLIT and NTRK like family member 1 Novel U 0.0006555692834435032 -0.28998540023849956 1.0 14409 +55794 DDX28 DEAD-box helicase 28 Novel N 0.0006552280209149072 -0.2899883424997392 1.0 14410 +199713 NLRP7 NLR family pyrin domain containing 7 Novel U 0.000654559448245556 -0.289994106728994 1.0 14411 +84295 PHF6 PHD finger protein 6 Novel U 0.0006542608204221885 -0.2899966814068333 1.0 14412 +391746 TAF11L4 TATA-box binding protein associated factor 11 like 4 Novel U 0.0006539327209531388 -0.2899995101801958 1.0 14413 +641700 ECSCR endothelial cell surface expressed chemotaxis and apoptosis regulator Novel U 0.0006536237873952193 -0.2900021737109293 1.0 14414 +132949 AASDH aminoadipate-semialdehyde dehydrogenase Novel U 0.000653386398098889 -0.2900042204089016 1.0 14415 +4967 OGDH oxoglutarate dehydrogenase Novel U 0.000653125029857213 -0.29000647384601325 1.0 14416 +246176 GAS2L2 growth arrest specific 2 like 2 Novel U 0.0006530752415449534 -0.2900069031056274 1.0 14417 +84658 ADGRE3 adhesion G protein-coupled receptor E3 Novel N 0.000652841844829618 -0.2900089153807863 1.0 14418 +81789 TIGD6 tigger transposable element derived 6 Novel U 0.0006527285568186858 -0.2900098921153984 1.0 14419 +79078 C1orf50 chromosome 1 open reading frame 50 Novel U 0.0006525041953663845 -0.29001182649128043 1.0 14420 +6493 SIM2 SIM bHLH transcription factor 2 Novel U 0.0006518184524358645 -0.2900177387572802 1.0 14421 +55660 PRPF40A pre-mRNA processing factor 40 homolog A Novel U 0.0006515638423019463 -0.2900199339280519 1.0 14422 +6429 SRSF4 serine and arginine rich splicing factor 4 Novel N 0.0006514287079977471 -0.2900210990147288 1.0 14423 +196051 PLPP4 phospholipid phosphatase 4 Novel U 0.0006512450955405563 -0.29002268206522697 1.0 14424 +94115 CGB8 chorionic gonadotropin subunit beta 8 Novel U 0.0006512437836715673 -0.29002269337576053 1.0 14425 +9940 DLEC1 DLEC1 cilia and flagella associated protein Novel U 0.0006508468440801021 -0.2900261156676226 1.0 14426 +26154 ABCA12 ATP binding cassette subfamily A member 12 Novel U 0.0006506657031147002 -0.2900276774096738 1.0 14427 +158431 ZNF782 zinc finger protein 782 Novel U 0.0006504427468867294 -0.2900295996701411 1.0 14428 +152217 NCBP2AS2 NCBP2 antisense 2 (head to head) Novel U 0.0006496946187480758 -0.29003604980234193 1.0 14429 +54084 TSPEAR thrombospondin type laminin G domain and EAR repeats Novel U 0.0006495967479004777 -0.2900368936148828 1.0 14430 +127018 LYPLAL1 lysophospholipase like 1 Novel U 0.0006494557470047502 -0.2900381092815192 1.0 14431 +83642 SELENOO selenoprotein O Novel N 0.0006490921636459187 -0.29004124398613634 1.0 14432 +11275 KLHL2 kelch like family member 2 Novel U 0.0006490879297558535 -0.2900412804894427 1.0 14433 +23105 FSTL4 follistatin like 4 Novel U 0.0006488851604929596 -0.2900430287040658 1.0 14434 +3614 IMPDH1 inosine monophosphate dehydrogenase 1 Novel N 0.000648757274979331 -0.29004413129388545 1.0 14435 +55511 SAGE1 sarcoma antigen 1 Novel U 0.0006485518914820298 -0.2900459020476387 1.0 14436 +3295 HSD17B4 hydroxysteroid 17-beta dehydrogenase 4 Novel N 0.0006485222035730856 -0.29004615800771766 1.0 14437 +282969 FUOM fucose mutarotase Novel U 0.0006484113313975128 -0.2900471139137355 1.0 14438 +7915 ALDH5A1 aldehyde dehydrogenase 5 family member A1 Novel N 0.0006482269790618297 -0.29004870334324 1.0 14439 +7539 ZFP37 ZFP37 zinc finger protein Novel U 0.0006481519497097372 -0.2900493502233865 1.0 14440 +2764 GMFB glia maturation factor beta Novel N 0.0006479905192268454 -0.29005074202768055 1.0 14441 +285237 C3orf38 chromosome 3 open reading frame 38 Novel N 0.0006479328451361355 -0.29005123927606674 1.0 14442 +5184 PEPD peptidase D Novel U 0.0006478114694766486 -0.29005228573991326 1.0 14443 +55997 CFC1 cryptic, EGF-CFC family member 1 Novel N 0.0006477495521877062 -0.290052819571858 1.0 14444 +7597 ZBTB25 zinc finger and BTB domain containing 25 Novel U 0.0006476873860389819 -0.2900533555493958 1.0 14445 +1572 CYP2F1 cytochrome P450 family 2 subfamily F member 1 Novel N 0.000646983339861638 -0.29005942562039666 1.0 14446 +10775 POP4 POP4 homolog, ribonuclease P/MRP subunit Novel N 0.0006469260481427237 -0.2900599195720901 1.0 14447 +91464 ISX intestine specific homeobox Novel U 0.000646873527555802 -0.29006037238854143 1.0 14448 +29767 TMOD2 tropomodulin 2 Novel N 0.0006468466016267202 -0.29006060453567406 1.0 14449 +10726 NUDC nuclear distribution C, dynein complex regulator Novel U 0.0006467426503922753 -0.2900615007714524 1.0 14450 +158787 RIBC1 RIB43A domain with coiled-coils 1 Novel U 0.0006467263167659353 -0.2900616415949875 1.0 14451 +1807 DPYS dihydropyrimidinase Novel N 0.0006461415603103493 -0.2900666831864595 1.0 14452 +85012 TCEAL3 transcription elongation factor A like 3 Novel U 0.0006459463967800577 -0.29006836582678025 1.0 14453 +54207 KCNK10 potassium two pore domain channel subfamily K member 10 Novel U 0.000645932449600573 -0.2900684860750998 1.0 14454 +6690 SPINK1 serine peptidase inhibitor Kazal type 1 Novel U 0.0006457552342649683 -0.29007001397157045 1.0 14455 +8899 PRP4K pre-mRNA processing factor kinase PRP4K Novel N 0.0006456860094030304 -0.29007061080717655 1.0 14456 +54149 C21orf91 chromosome 21 open reading frame 91 Novel U 0.0006454820376878189 -0.29007236938897607 1.0 14457 +204474 PDILT protein disulfide isomerase like, testis expressed Novel U 0.0006454814723064967 -0.29007237426352106 1.0 14458 +3713 IVL involucrin Novel N 0.0006451495122127936 -0.29007523632200966 1.0 14459 +284076 TTLL6 tubulin tyrosine ligase like 6 Novel U 0.0006450789553695526 -0.2900758446415515 1.0 14460 +256471 MFSD8 major facilitator superfamily domain containing 8 Novel N 0.0006449937296736013 -0.29007657943145904 1.0 14461 +8309 ACOX2 acyl-CoA oxidase 2 Novel N 0.0006449133795788658 -0.29007727218542273 1.0 14462 +150677 OTOS otospiralin Novel U 0.0006448154527774788 -0.29007811648038007 1.0 14463 +80270 HSD3B7 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 7 Novel N 0.0006446695285572062 -0.29007937459441624 1.0 14464 +55636 CHD7 chromodomain helicase DNA binding protein 7 Novel U 0.0006446339511414785 -0.290079681332023 1.0 14465 +388403 YPEL2 yippee like 2 Novel U 0.0006439891796361498 -0.2900852403549147 1.0 14466 +5439 POLR2J RNA polymerase II subunit J Novel N 0.0006439847372370173 -0.29008527865592254 1.0 14467 +51573 GDE1 glycerophosphodiester phosphodiesterase 1 Novel U 0.0006437892465479434 -0.29008696411690627 1.0 14468 +158046 NXNL2 nucleoredoxin like 2 Novel U 0.0006436717712633779 -0.29008797695291205 1.0 14469 +390916 NUDT19 nudix hydrolase 19 Novel N 0.0006436537142169139 -0.29008813263524885 1.0 14470 +51006 SLC35C2 solute carrier family 35 member C2 Novel U 0.0006434288109802736 -0.29009007168222994 1.0 14471 +64766 S100PBP S100P binding protein Novel U 0.0006431205211813172 -0.2900927296626703 1.0 14472 +11224 RPL35 ribosomal protein L35 Novel U 0.0006430501204746395 -0.29009333663605047 1.0 14473 +23223 RRP12 ribosomal RNA processing 12 homolog Novel U 0.0006429302163271509 -0.29009437041297015 1.0 14474 +4762 NEUROG1 neurogenin 1 Novel U 0.0006427069426488822 -0.29009629541039694 1.0 14475 +222171 PRR15 proline rich 15 Novel U 0.0006425773304663212 -0.2900974128870285 1.0 14476 +6785 ELOVL4 ELOVL fatty acid elongase 4 Novel U 0.0006423142134613653 -0.29009968140144277 1.0 14477 +85413 SLC22A16 solute carrier family 22 member 16 Novel U 0.0006420034093174482 -0.29010236105979703 1.0 14478 +9898 UBAP2L ubiquitin associated protein 2 like Novel U 0.0006419678019634452 -0.29010266805552243 1.0 14479 +81606 LBH LBH regulator of WNT signaling pathway Novel N 0.0006416799746166258 -0.2901051496149534 1.0 14480 +3202 HOXA5 homeobox A5 Novel U 0.000641594916695045 -0.29010588295836154 1.0 14481 +10290 SPEG striated muscle enriched protein kinase Novel U 0.0006415346811494165 -0.29010640229082935 1.0 14482 +125336 LOXHD1 lipoxygenase homology PLAT domains 1 Novel N 0.0006412166880081384 -0.29010914393052206 1.0 14483 +3646 EIF3E eukaryotic translation initiation factor 3 subunit E Novel U 0.0006410641297794457 -0.2901104592409516 1.0 14484 +6944 VPS72 vacuolar protein sorting 72 homolog Novel N 0.000640865353792603 -0.2901121730267688 1.0 14485 +57455 REXO1 RNA exonuclease 1 homolog Novel U 0.0006407394790788109 -0.2901132582800867 1.0 14486 +93594 TBC1D31 TBC1 domain family member 31 Novel N 0.000640735786055899 -0.29011329012020176 1.0 14487 +661 POLR3D RNA polymerase III subunit D Novel U 0.0006405621194464926 -0.29011478742063956 1.0 14488 +55276 PGM2 phosphoglucomutase 2 Novel U 0.0006404392611858646 -0.29011584666702006 1.0 14489 +57149 LYRM1 LYR motif containing 1 Novel U 0.0006404379604245795 -0.29011585788178634 1.0 14490 +1537 CYC1 cytochrome c1 Novel N 0.000640236002495353 -0.2901175991013385 1.0 14491 +79023 NUP37 nucleoporin 37 Novel N 0.0006401054402611188 -0.2901187247690252 1.0 14492 +1820 ARID3A AT-rich interaction domain 3A Novel U 0.0006399309736288269 -0.2901202289670159 1.0 14493 +22978 NT5C2 5'-nucleotidase, cytosolic II Novel U 0.0006394063604834101 -0.29012475202124605 1.0 14494 +79712 GTDC1 glycosyltransferase like domain containing 1 Novel U 0.0006393948722230466 -0.29012485106951635 1.0 14495 +5449 POU1F1 POU class 1 homeobox 1 Novel U 0.0006388756035012441 -0.2901293280457592 1.0 14496 +647219 ASCL5 achaete-scute family bHLH transcription factor 5 Novel U 0.0006387880942018171 -0.2901300825241981 1.0 14497 +80174 DBF4B DBF4B-CDC7 kinase regulatory subunit Novel U 0.0006387682314849954 -0.29013025377447293 1.0 14498 +388701 CFAP141 cilia and flagella associated protein 141 Novel U 0.0006386444057868705 -0.2901313213618039 1.0 14499 +9917 FAM20B FAM20B glycosaminoglycan xylosylkinase Novel U 0.0006386254022798035 -0.29013148520423476 1.0 14500 +3476 IGBP1 immunoglobulin binding protein 1 Novel U 0.000638456241293491 -0.2901329436585671 1.0 14501 +3816 KLK1 kallikrein 1 Novel N 0.0006382340440956324 -0.29013485937490874 1.0 14502 +55714 TENM3 teneurin transmembrane protein 3 Novel N 0.0006380766572587828 -0.29013621631612224 1.0 14503 +4720 NDUFS2 NADH:ubiquinone oxidoreductase core subunit S2 Novel N 0.0006376797764416291 -0.29013963810125015 1.0 14504 +124402 UBALD1 UBA like domain containing 1 Novel U 0.000637485955425709 -0.2901413091668222 1.0 14505 +388566 ZNF470 zinc finger protein 470 Novel U 0.0006374701149092231 -0.2901414457389148 1.0 14506 +143684 FAM76B family with sequence similarity 76 member B Novel U 0.0006372867056118741 -0.2901430270378309 1.0 14507 +57143 ADCK1 aarF domain containing kinase 1 Novel N 0.0006369989989156459 -0.2901455075570493 1.0 14508 +51522 TMEM14C transmembrane protein 14C Novel U 0.0006367287830137516 -0.2901478372759837 1.0 14509 +727866 FAM156B family with sequence similarity 156 member B Novel U 0.0006366046874421256 -0.2901489071900816 1.0 14510 +8161 COIL coilin Novel U 0.000636540645583348 -0.2901494593394182 1.0 14511 +171568 POLR3H RNA polymerase III subunit H Novel N 0.0006363982626801591 -0.2901506869213006 1.0 14512 +93109 TMEM44 transmembrane protein 44 Novel U 0.000636073742009162 -0.2901534848393599 1.0 14513 +56986 DTWD1 DTW domain containing 1 Novel N 0.0006359045785888404 -0.29015494331467745 1.0 14514 +26167 PCDHB5 protocadherin beta 5 Novel U 0.0006355095586300881 -0.29015834905605287 1.0 14515 +53827 FXYD5 FXYD domain containing ion transport regulator 5 Novel U 0.0006351782896252044 -0.2901612051561848 1.0 14516 +64847 SPATA20 spermatogenesis associated 20 Novel U 0.0006349887864934984 -0.29016283899427864 1.0 14517 +23657 SLC7A11 solute carrier family 7 member 11 Novel N 0.0006349819849138359 -0.2901628976354201 1.0 14518 +124923 RSKR ribosomal protein S6 kinase related Novel U 0.0006348793878631528 -0.29016378219583977 1.0 14519 +169981 SPIN3 spindlin family member 3 Novel U 0.000634729183861807 -0.2901650772088405 1.0 14520 +9716 AQR aquarius intron-binding spliceosomal factor Novel N 0.0006343097121514806 -0.29016869376574606 1.0 14521 +29777 ABT1 activator of basal transcription 1 Novel N 0.0006338834372309875 -0.2901723689778508 1.0 14522 +548644 POLR2J3 RNA polymerase II subunit J3 Novel U 0.0006335986458286905 -0.2901748243622958 1.0 14523 +9427 ECEL1 endothelin converting enzyme like 1 Novel U 0.000633284091339793 -0.29017753635497845 1.0 14524 +2687 GGT5 gamma-glutamyltransferase 5 Novel N 0.0006330669083851724 -0.2901794088400471 1.0 14525 +375057 STUM stum, mechanosensory transduction mediator homolog Novel U 0.0006329140849821684 -0.29018072643672854 1.0 14526 +55164 SHQ1 SHQ1, H/ACA ribonucleoprotein assembly factor Novel U 0.0006328394521043561 -0.29018136989859494 1.0 14527 +646174 C16orf90 chromosome 16 open reading frame 90 Novel U 0.0006324999702075896 -0.290184296807771 1.0 14528 +360200 TMPRSS9 transmembrane serine protease 9 Novel U 0.0006324940894279413 -0.2901843475100561 1.0 14529 +79596 OBI1 ORC ubiquitin ligase 1 Novel U 0.0006322943755537069 -0.2901860693820519 1.0 14530 +124641 OVCA2 OVCA2 serine hydrolase domain containing Novel U 0.0006321540032941162 -0.2901872796287795 1.0 14531 +8632 DNAH17 dynein axonemal heavy chain 17 Novel N 0.0006319686785978846 -0.2901888774416795 1.0 14532 +390033 SSU72L1 SSU72 like 1 Novel U 0.0006317292110466338 -0.2901909420577306 1.0 14533 +4710 NDUFB4 NADH:ubiquinone oxidoreductase subunit B4 Novel N 0.0006316688756710666 -0.2901914622509017 1.0 14534 +116369 SLC26A8 solute carrier family 26 member 8 Novel N 0.0006309306232774005 -0.29019782723744697 1.0 14535 +93517 SDR42E1 short chain dehydrogenase/reductase family 42E, member 1 Novel U 0.0006308862954544069 -0.2901982094183913 1.0 14536 +4782 NFIC nuclear factor I C Novel N 0.0006304765373402625 -0.2902017422276389 1.0 14537 +5214 PFKP phosphofructokinase, platelet Novel U 0.000629893938325917 -0.29020676521831174 1.0 14538 +118881 COMTD1 catechol-O-methyltransferase domain containing 1 Novel U 0.0006297071204984326 -0.29020837590453313 1.0 14539 +130 ADH6 alcohol dehydrogenase 6 (class V) Novel N 0.0006293719196411979 -0.29021126590389457 1.0 14540 +349334 FOXD4L4 forkhead box D4 like 4 Novel U 0.0006293611748225747 -0.29021135854243735 1.0 14541 +27257 LSM1 LSM1 homolog, mRNA degradation associated Novel N 0.0006292849483954038 -0.2902120157433994 1.0 14542 +10927 SPIN1 spindlin 1 Novel U 0.0006292588365911019 -0.2902122408713969 1.0 14543 +443 ASPA aspartoacylase Novel U 0.000628950664397618 -0.29021489783787885 1.0 14544 +130888 FBXO36 F-box protein 36 Novel U 0.0006284884752728652 -0.29021888269127816 1.0 14545 +7546 ZIC2 Zic family member 2 Novel U 0.0006283280039344517 -0.2902202662261216 1.0 14546 +150165 XKR3 XK related 3 Novel U 0.0006280439818644389 -0.2902227149776187 1.0 14547 +150223 YDJC YdjC chitooligosaccharide deacetylase homolog Novel U 0.0006279385217868009 -0.2902236242221819 1.0 14548 +56136 PCDHA13 protocadherin alpha 13 Novel U 0.0006278865075102207 -0.29022407267338024 1.0 14549 +27067 STAU2 staufen double-stranded RNA binding protein 2 Novel U 0.0006277710205973283 -0.29022506836625306 1.0 14550 +150248 C22orf15 chromosome 22 open reading frame 15 Novel U 0.0006277433056150061 -0.2902253073163616 1.0 14551 +79001 VKORC1 vitamin K epoxide reductase complex subunit 1 Novel U 0.0006276924770109218 -0.290225745545054 1.0 14552 +6625 SNRNP70 small nuclear ribonucleoprotein U1 subunit 70 Novel U 0.0006276107992882631 -0.29022644974541995 1.0 14553 +140456 ASB11 ankyrin repeat and SOCS box containing 11 Novel U 0.0006271675652912363 -0.29023027117350025 1.0 14554 +51224 ELOA2 elongin A2 Novel N 0.0006270579431702138 -0.29023121630192966 1.0 14555 +54677 CROT carnitine O-octanoyltransferase Novel N 0.0006270480574179432 -0.2902313015338649 1.0 14556 +4175 MCM6 minichromosome maintenance complex component 6 Novel U 0.0006269361373157775 -0.29023226647478556 1.0 14557 +94025 MUC16 mucin 16, cell surface associated Novel U 0.0006269058130713951 -0.2902325279211543 1.0 14558 +1404 HAPLN1 hyaluronan and proteoglycan link protein 1 Novel U 0.0006268384082575226 -0.2902331090648621 1.0 14559 +56934 CA10 carbonic anhydrase 10 Novel U 0.0006264240331283845 -0.2902366816806021 1.0 14560 +256309 CCDC110 coiled-coil domain containing 110 Novel U 0.0006261392223791366 -0.2902391372318506 1.0 14561 +283078 MKX mohawk homeobox Novel U 0.0006261281633562561 -0.29023923257936646 1.0 14562 +7464 CORO2A coronin 2A Novel N 0.000626118961697626 -0.2902393119132553 1.0 14563 +125704 DIPK1C divergent protein kinase domain 1C Novel U 0.0006258914811771073 -0.29024127318079046 1.0 14564 +139081 MAGEC3 MAGE family member C3 Novel U 0.0006258283231456653 -0.29024181771003793 1.0 14565 +8537 BCAS1 brain enriched myelin associated protein 1 Novel U 0.0006257973075304401 -0.2902420851171947 1.0 14566 +54802 TRIT1 tRNA isopentenyltransferase 1 Novel N 0.0006254969511667159 -0.29024467469798076 1.0 14567 +170689 ADAMTS15 ADAM metallopeptidase with thrombospondin type 1 motif 15 Novel U 0.0006254213337147228 -0.2902453266485449 1.0 14568 +113455421 DERPC DERPC proline and glycine rich nuclear protein Novel U 0.0006253041773009317 -0.29024633673534433 1.0 14569 +2494 NR5A2 nuclear receptor subfamily 5 group A member 2 Novel N 0.0006252981015758002 -0.29024638911838985 1.0 14570 +54552 GNL3L G protein nucleolar 3 like Novel U 0.000625273417732409 -0.2902466019349448 1.0 14571 +57512 GPR158 G protein-coupled receptor 158 Novel U 0.0006252397300984862 -0.29024689237943024 1.0 14572 +10449 ACAA2 acetyl-CoA acyltransferase 2 Novel N 0.0006250664830927204 -0.29024838606217374 1.0 14573 +9819 TSC22D2 TSC22 domain family member 2 Novel N 0.0006249473849520009 -0.2902494128899493 1.0 14574 +25870 SUMF2 sulfatase modifying factor 2 Novel U 0.0006249117340998587 -0.29024972026070245 1.0 14575 +146542 ZNF688 zinc finger protein 688 Novel U 0.0006248451616416237 -0.29025029422809434 1.0 14576 +342372 PKD1L3 polycystin 1 like 3, transient receptor potential channel interacting Novel N 0.0006246149442460424 -0.2902522790921299 1.0 14577 +283897 C16orf54 chromosome 16 open reading frame 54 Novel U 0.0006242122350444952 -0.29025575112780705 1.0 14578 +137970 UNC5D unc-5 netrin receptor D Novel N 0.0006241672390891969 -0.2902561390691839 1.0 14579 +6232 RPS27 ribosomal protein S27 Novel U 0.0006239876645082604 -0.2902576873063469 1.0 14580 +9147 NEMF nuclear export mediator factor Novel U 0.000623878230399363 -0.29025863081379333 1.0 14581 +92736 OTOP2 otopetrin 2 Novel U 0.0006224251636013248 -0.2902711587117024 1.0 14582 +54921 CHTF8 chromosome transmission fidelity factor 8 Novel U 0.0006221224082487351 -0.29027376897583734 1.0 14583 +140890 SREK1 splicing regulatory glutamic acid and lysine rich protein 1 Novel U 0.0006221007383898183 -0.29027395580673915 1.0 14584 +378807 CATSPER4 cation channel sperm associated 4 Novel U 0.000621506820101329 -0.2902790763887348 1.0 14585 +652991 SKOR2 SKI family transcriptional corepressor 2 Novel U 0.0006214178253017787 -0.2902798436747018 1.0 14586 +4736 RPL10A ribosomal protein L10a Novel N 0.000621336028055793 -0.2902805489055613 1.0 14587 +57666 FBRSL1 fibrosin like 1 Novel U 0.0006211160347369712 -0.29028244562073136 1.0 14588 +55713 ZNF334 zinc finger protein 334 Novel U 0.0006209944401685523 -0.2902834939719437 1.0 14589 +5239 PGM5 phosphoglucomutase 5 Novel U 0.0006209006507082462 -0.2902843025960106 1.0 14590 +11165 NUDT3 nudix hydrolase 3 Novel N 0.0006208796165028964 -0.2902844839465016 1.0 14591 +220992 ZNF485 zinc finger protein 485 Novel U 0.0006208090778262421 -0.29028509210941666 1.0 14592 +138162 PIERCE1 piercer of microtubule wall 1 Novel U 0.0006207614769487015 -0.29028550250963714 1.0 14593 +84851 TRIM52 tripartite motif containing 52 Novel U 0.0006207422382771828 -0.290285668379584 1.0 14594 +27089 UQCRQ ubiquinol-cytochrome c reductase complex III subunit VII Novel N 0.000620556200037505 -0.29028727234443763 1.0 14595 +170384 FUT11 fucosyltransferase 11 Novel U 0.0006200628109902221 -0.290291526194035 1.0 14596 +150159 SLC9B1 solute carrier family 9 member B1 Novel N 0.0006197964866436114 -0.29029382236116885 1.0 14597 +8539 API5 apoptosis inhibitor 5 Novel N 0.0006197185948301813 -0.2902944939205823 1.0 14598 +84321 THOC3 THO complex subunit 3 Novel N 0.0006196186646174621 -0.29029535548834007 1.0 14599 +7511 XPNPEP1 X-prolyl aminopeptidase 1 Novel N 0.0006195692517264144 -0.2902957815111872 1.0 14600 +388730 TMEM81 transmembrane protein 81 Novel U 0.0006195619878767872 -0.29029584413787907 1.0 14601 +8721 EDF1 endothelial differentiation related factor 1 Novel U 0.0006194721820104535 -0.29029661841661597 1.0 14602 +11144 DMC1 DNA meiotic recombinase 1 Novel U 0.000619145820322947 -0.29029943220735704 1.0 14603 +51031 GLOD4 glyoxalase domain containing 4 Novel U 0.0006188845135181269 -0.29030168511477894 1.0 14604 +55084 SOBP sine oculis binding protein homolog Novel U 0.0006188221413509042 -0.29030222286854523 1.0 14605 +284958 NT5DC4 5'-nucleotidase domain containing 4 Novel U 0.0006180800844415515 -0.29030862065646224 1.0 14606 +2971 GTF3A general transcription factor IIIA Novel N 0.0006180792173895265 -0.2903086281319199 1.0 14607 +26112 CCDC69 coiled-coil domain containing 69 Novel U 0.0006180293748546863 -0.2903090578590245 1.0 14608 +3787 KCNS1 potassium voltage-gated channel modifier subfamily S member 1 Novel N 0.000617942728966242 -0.29030980489339764 1.0 14609 +6582 SLC22A2 solute carrier family 22 member 2 Novel U 0.0006178432465356703 -0.2903106626005145 1.0 14610 +23635 SSBP2 single stranded DNA binding protein 2 Novel U 0.0006174778773226937 -0.29031381270222045 1.0 14611 +192134 B3GNT6 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 6 Novel N 0.000617319778314073 -0.2903151757835614 1.0 14612 +27018 BEX3 brain expressed X-linked 3 Novel U 0.000617294907902722 -0.2903153902086482 1.0 14613 +7711 ZNF155 zinc finger protein 155 Novel U 0.0006165947773076062 -0.2903214265206956 1.0 14614 +165186 TOGARAM2 TOG array regulator of axonemal microtubules 2 Novel U 0.0006165025913145934 -0.29032222132015745 1.0 14615 +5498 PPOX protoporphyrinogen oxidase Novel U 0.0006164500239166732 -0.29032267454019894 1.0 14616 +389549 FEZF1 FEZ family zinc finger 1 Novel N 0.0006163100721578307 -0.29032388116149765 1.0 14617 +2565 GABRG1 gamma-aminobutyric acid type A receptor subunit gamma1 Novel U 0.0006162685836923593 -0.290324238862369 1.0 14618 +642659 HNRNPA1L3 heterogeneous nuclear ribonucleoprotein A1 like 3 Novel U 0.0006157747298705234 -0.2903284967191106 1.0 14619 +471 ATIC 5-aminoimidazole-4-carboxamide ribonucleotide formyltransferase/IMP cyclohydrolase Novel N 0.0006151939358465435 -0.2903335041477081 1.0 14620 +256710 GLIPR1L1 GLIPR1 like 1 Novel U 0.0006151678655842575 -0.2903337289175431 1.0 14621 +54972 TMEM132A transmembrane protein 132A Novel U 0.0006149472369905035 -0.29033563110985944 1.0 14622 +79770 TXNDC15 thioredoxin domain containing 15 Novel U 0.0006148506871879316 -0.29033646353275383 1.0 14623 +391742 TAF11L2 TATA-box binding protein associated factor 11 like 2 Novel U 0.0006148420667455385 -0.29033653785557395 1.0 14624 +79707 NOL9 nucleolar protein 9 Novel N 0.0006147665459805843 -0.29033718897253197 1.0 14625 +388946 TMEM247 transmembrane protein 247 Novel U 0.0006146863333237285 -0.29033788054154824 1.0 14626 +5393 EXOSC9 exosome component 9 Novel U 0.0006142375842024485 -0.2903417495193446 1.0 14627 +55345 ZGRF1 zinc finger GRF-type containing 1 Novel N 0.0006137477327594419 -0.29034597286879893 1.0 14628 +55216 NKAPD1 NKAP domain containing 1 Novel U 0.0006136257011522667 -0.2903470249880259 1.0 14629 +144423 GLT1D1 glycosyltransferase 1 domain containing 1 Novel U 0.0006134108642501342 -0.29034887724614694 1.0 14630 +92747 BPIFB1 BPI fold containing family B member 1 Novel U 0.0006131431924783972 -0.29035118503036855 1.0 14631 +5273 SERPINB10 serpin family B member 10 Novel U 0.000613078436929218 -0.29035174333292574 1.0 14632 +11149 BVES blood vessel epicardial substance Novel U 0.0006126983165010907 -0.29035502061510104 1.0 14633 +339487 ZBTB8OS zinc finger and BTB domain containing 8 opposite strand Novel N 0.0006123154479488647 -0.2903583215907626 1.0 14634 +5502 PPP1R1A protein phosphatase 1 regulatory inhibitor subunit 1A Novel U 0.0006122006539690751 -0.290359311309378 1.0 14635 +85027 SMIM3 small integral membrane protein 3 Novel U 0.0006121121840638648 -0.2903600740698663 1.0 14636 +55833 UBAP2 ubiquitin associated protein 2 Novel U 0.0006119753563880775 -0.2903612537562756 1.0 14637 +151194 METTL21A methyltransferase 21A, HSPA lysine Novel N 0.0006117847226791789 -0.29036289734186044 1.0 14638 +54798 DCHS2 dachsous cadherin-related 2 Novel U 0.0006117817839246122 -0.2903629226789043 1.0 14639 +9937 DCLRE1A DNA cross-link repair 1A Novel U 0.0006116579254539914 -0.2903639905487897 1.0 14640 +80095 ZNF606 zinc finger protein 606 Novel U 0.0006116488952820312 -0.29036406840417295 1.0 14641 +8507 ENC1 ectodermal-neural cortex 1 Novel U 0.0006116353511750726 -0.2903641851773244 1.0 14642 +90634 N4BP2L1 NEDD4 binding protein 2 like 1 Novel U 0.000611561088474964 -0.2903648254476317 1.0 14643 +641339 ZNF674 zinc finger protein 674 Novel U 0.0006112232312068552 -0.29036773834975604 1.0 14644 +116441 TM4SF18 transmembrane 4 L six family member 18 Novel U 0.0006111745968750016 -0.29036815766010377 1.0 14645 +22834 ZNF652 zinc finger protein 652 Novel U 0.0006108766735906426 -0.290370726263623 1.0 14646 +8340 H2BC13 H2B clustered histone 13 Novel U 0.0006105863540530665 -0.290373229309961 1.0 14647 +54979 PLAAT2 phospholipase A and acyltransferase 2 Novel U 0.0006105313517217299 -0.29037370352325437 1.0 14648 +782 CACNB1 calcium voltage-gated channel auxiliary subunit beta 1 Novel U 0.0006104961941862018 -0.2903740066407824 1.0 14649 +3652 IPP intracisternal A particle-promoted polypeptide Novel U 0.0006103985398498909 -0.29037484858662915 1.0 14650 +388591 RNF207 ring finger protein 207 Novel N 0.0006103881333359031 -0.29037493830841277 1.0 14651 +257 ALX3 ALX homeobox 3 Novel U 0.000610170402365775 -0.2903768155183037 1.0 14652 +55844 PPP2R2D protein phosphatase 2 regulatory subunit Bdelta Novel U 0.0006097928962487756 -0.2903800702606873 1.0 14653 +5149 PDE6H phosphodiesterase 6H Novel N 0.0006096536457303081 -0.29038127083610576 1.0 14654 +80011 PSME3IP1 proteasome activator subunit 3 interacting protein 1 Novel U 0.0006095056263421972 -0.29038254701403876 1.0 14655 +7379 UPK2 uroplakin 2 Novel N 0.0006090107835163942 -0.2903868133976703 1.0 14656 +90673 PPP1R3E protein phosphatase 1 regulatory subunit 3E Novel U 0.0006086359722352751 -0.29039004490600245 1.0 14657 +55038 CDCA4 cell division cycle associated 4 Novel U 0.0006080041998552351 -0.29039549185440816 1.0 14658 +6726 SRP9 signal recognition particle 9 Novel U 0.0006079571959153984 -0.29039589710801406 1.0 14659 +3007 H1-3 H1.3 linker histone, cluster member Novel U 0.0006077395959157154 -0.29039777318871784 1.0 14660 +253639 ZNF620 zinc finger protein 620 Novel U 0.0006077319095948089 -0.29039783945782793 1.0 14661 +64747 MFSD1 major facilitator superfamily domain containing 1 Novel U 0.0006077262226104909 -0.29039788848926895 1.0 14662 +10973 ASCC3 activating signal cointegrator 1 complex subunit 3 Novel U 0.0006076602770673644 -0.2903984570515903 1.0 14663 +55734 ZFP64 ZFP64 zinc finger protein Novel N 0.0006076250623681425 -0.2903987606619662 1.0 14664 +147837 ZNF563 zinc finger protein 563 Novel U 0.0006074810961681135 -0.2904000018945501 1.0 14665 +375444 C5orf34 chromosome 5 open reading frame 34 Novel U 0.0006071070924020562 -0.2904032264407342 1.0 14666 +3141 HLCS holocarboxylase synthetase Novel U 0.000606987318472715 -0.29040425909495277 1.0 14667 +221301 CALHM4 calcium homeostasis modulator family member 4 Novel U 0.0006066955753130235 -0.2904067744153257 1.0 14668 +79098 C1orf116 chromosome 1 open reading frame 116 Novel U 0.000606450639053265 -0.2904088861809105 1.0 14669 +2271 FH fumarate hydratase Novel U 0.0006063224862467515 -0.29040999107524773 1.0 14670 +140686 WFDC3 WAP four-disulfide core domain 3 Novel U 0.000606119799440236 -0.2904117385789571 1.0 14671 +8701 DNAH11 dynein axonemal heavy chain 11 Novel U 0.000605496492078363 -0.29041711254456287 1.0 14672 +9904 RBM19 RNA binding motif protein 19 Novel U 0.0006053045358259378 -0.29041876753271384 1.0 14673 +51207 DUSP13B dual specificity phosphatase 13B Novel N 0.0006052369521344121 -0.2904193502186502 1.0 14674 +158 ADSL adenylosuccinate lyase Novel U 0.0006051251056543885 -0.29042031452482325 1.0 14675 +55552 ZNF823 zinc finger protein 823 Novel U 0.00060508396696864 -0.2904206692100007 1.0 14676 +389668 XKR9 XK related 9 Novel U 0.0006050116502399457 -0.2904212927027372 1.0 14677 +79846 CFAP69 cilia and flagella associated protein 69 Novel N 0.0006047590565670356 -0.2904234704881982 1.0 14678 +257218 SHPRH SNF2 histone linker PHD RING helicase Novel U 0.0006046614253028557 -0.29042431223512416 1.0 14679 +84220 RGPD5 RANBP2 like and GRIP domain containing 5 Novel U 0.0006045922103594102 -0.29042490898521606 1.0 14680 +388555 IGFL3 IGF like family member 3 Novel U 0.0006045176934107948 -0.29042555144757637 1.0 14681 +56943 ENY2 ENY2 transcription and export complex 2 subunit Novel N 0.0006043832774293405 -0.290426710341094 1.0 14682 +100130361 CXorf49 chromosome X open reading frame 49 Novel U 0.0006040618068059821 -0.2904294819625747 1.0 14683 +84705 GTPBP3 GTP binding protein 3, mitochondrial Novel N 0.0006040231500421202 -0.29042981524938005 1.0 14684 +126526 C19orf47 chromosome 19 open reading frame 47 Novel U 0.0006039463726849515 -0.2904304772002922 1.0 14685 +91942 NDUFAF2 NADH:ubiquinone oxidoreductase complex assembly factor 2 Novel N 0.0006037144027629392 -0.29043247717407517 1.0 14686 +26053 AUTS2 activator of transcription and developmental regulator AUTS2 Novel N 0.0006035200476327549 -0.29043415284461715 1.0 14687 +84733 CBX2 chromobox 2 Novel N 0.0006034410617194094 -0.29043483383702573 1.0 14688 +10236 HNRNPR heterogeneous nuclear ribonucleoprotein R Novel N 0.0006034059296737825 -0.2904351367347876 1.0 14689 +27000 DNAJC2 DnaJ heat shock protein family (Hsp40) member C2 Novel U 0.000603282965371904 -0.2904361968954234 1.0 14690 +7741 ZSCAN26 zinc finger and SCAN domain containing 26 Novel U 0.0006032277390527537 -0.2904366730398712 1.0 14691 +1621 DBH dopamine beta-hydroxylase Novel N 0.0006027102182946117 -0.2904411349457055 1.0 14692 +389816 LRRC26 leucine rich repeat containing 26 Novel N 0.000602324482163388 -0.2904444606447569 1.0 14693 +117194 MRGPRX2 MAS related GPR family member X2 Novel U 0.0006022553841985286 -0.29044505638629514 1.0 14694 +439996 IFIT1B interferon induced protein with tetratricopeptide repeats 1B Novel U 0.0006022274178592925 -0.2904452975035262 1.0 14695 +54558 SPATA6 spermatogenesis associated 6 Novel U 0.0006021419319540947 -0.2904460345368783 1.0 14696 +23466 CBX6 chromobox 6 Novel N 0.0006020967065375814 -0.29044642445659963 1.0 14697 +55287 TMEM40 transmembrane protein 40 Novel U 0.00060195541818552 -0.2904476426015966 1.0 14698 +441024 MTHFD2L methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 2 like Novel N 0.0006016694395429102 -0.2904501082220648 1.0 14699 +84331 MCRIP2 MAPK regulated corepressor interacting protein 2 Novel U 0.0006014401052127533 -0.29045208547258017 1.0 14700 +199699 DAND5 DAN domain BMP antagonist family member 5 Novel U 0.0006013618559828847 -0.2904527601135289 1.0 14701 +92283 ZNF461 zinc finger protein 461 Novel U 0.0006012698615415434 -0.2904535532614908 1.0 14702 +84320 ACBD6 acyl-CoA binding domain containing 6 Novel U 0.0006011494780438129 -0.29045459117122174 1.0 14703 +10247 RIDA reactive intermediate imine deaminase A homolog Novel N 0.0006010191452412392 -0.2904557148608189 1.0 14704 +11174 ADAMTS6 ADAM metallopeptidase with thrombospondin type 1 motif 6 Novel U 0.0006009886604409147 -0.2904559776914518 1.0 14705 +7772 ZNF229 zinc finger protein 229 Novel U 0.0006008053853956935 -0.2904575578328871 1.0 14706 +23562 CLDN14 claudin 14 Novel N 0.0005998466378873537 -0.29046582386093295 1.0 14707 +79800 CARF calcium responsive transcription factor Novel N 0.0005996166201261122 -0.2904678070037822 1.0 14708 +6759 SSX4 SSX family member 4 Novel U 0.0005995037645397097 -0.2904687800101622 1.0 14709 +92002 CCNQ cyclin Q Novel U 0.0005993787006374246 -0.290469858272911 1.0 14710 +55280 CWF19L1 CWF19 like cell cycle control factor 1 Novel N 0.0005990548499176438 -0.2904726504148557 1.0 14711 +100037417 DDTL D-dopachrome tautomerase like Novel U 0.0005986625710570026 -0.2904760325233208 1.0 14712 +84075 FSCB fibrous sheath CABYR binding protein Novel U 0.0005985097803890025 -0.290477349837771 1.0 14713 +111064650 C19orf85 chromosome 19 open reading frame 85 Novel U 0.0005984023125297423 -0.2904782763928138 1.0 14714 +83450 DRC3 dynein regulatory complex subunit 3 Novel U 0.0005983435758105154 -0.29047878280285844 1.0 14715 +460 ASTN1 astrotactin 1 Novel U 0.0005982378083010728 -0.2904796946980047 1.0 14716 +1551 CYP3A7 cytochrome P450 family 3 subfamily A member 7 Novel N 0.00059812210280574 -0.29048069227542855 1.0 14717 +79905 TMC7 transmembrane channel like 7 Novel U 0.000597989282264757 -0.29048183741354605 1.0 14718 +23363 OBSL1 obscurin like cytoskeletal adaptor 1 Novel U 0.0005978326854914831 -0.2904831875430729 1.0 14719 +767 CA8 carbonic anhydrase 8 Novel N 0.0005976371252128668 -0.2904848736040364 1.0 14720 +56906 THAP10 THAP domain containing 10 Novel U 0.0005972647391939772 -0.2904880842024987 1.0 14721 +79054 TRPM8 transient receptor potential cation channel subfamily M member 8 Novel N 0.0005972347050626776 -0.290488343147601 1.0 14722 +91614 DEPDC7 DEP domain containing 7 Novel U 0.0005971586806759838 -0.29048899860663185 1.0 14723 +79072 FASTKD3 FAST kinase domains 3 Novel N 0.0005971001053544946 -0.29048950362515447 1.0 14724 +4580 MTX1 metaxin 1 Novel N 0.0005968019977227987 -0.2904920738180601 1.0 14725 +26121 PRPF31 pre-mRNA processing factor 31 Novel N 0.0005967413621167177 -0.2904925965997269 1.0 14726 +10463 SLC30A9 solute carrier family 30 member 9 Novel U 0.0005965595715032874 -0.29049416394284494 1.0 14727 +57122 NUP107 nucleoporin 107 Novel U 0.0005965130601537955 -0.2904945649494874 1.0 14728 +5463 POU6F1 POU class 6 homeobox 1 Novel N 0.0005964176670462812 -0.2904953873997105 1.0 14729 +127602 DNAH14 dynein axonemal heavy chain 14 Novel U 0.0005964112350247243 -0.29049544285463486 1.0 14730 +162417 NAGS N-acetylglutamate synthase Novel N 0.0005964014345103771 -0.2904955273516748 1.0 14731 +1761 DMRT1 doublesex and mab-3 related transcription factor 1 Novel N 0.0005959491799081666 -0.2904994265526564 1.0 14732 +84923 VCF1 VCP nuclear cofactor family member 1 Novel U 0.0005957754243919636 -0.2905009246196215 1.0 14733 +414919 C8orf82 chromosome 8 open reading frame 82 Novel U 0.0005952554460886321 -0.29050540771365946 1.0 14734 +2171 FABP5 fatty acid binding protein 5 Novel N 0.0005951276245451013 -0.29050650975194847 1.0 14735 +27293 SMPDL3B sphingomyelin phosphodiesterase acid like 3B Novel U 0.0005948695055908259 -0.2905087351746971 1.0 14736 +6882 TAF11 TATA-box binding protein associated factor 11 Novel U 0.0005947744270799139 -0.2905095549125644 1.0 14737 +51057 WDPCP WD repeat containing planar cell polarity effector Novel N 0.0005947286165782606 -0.29050994987671097 1.0 14738 +100129239 CXorf51A chromosome X open reading frame 51A Novel U 0.0005945776548810905 -0.2905112514223336 1.0 14739 +9852 EPM2AIP1 EPM2A interacting protein 1 Novel U 0.0005944663401919397 -0.2905122111435683 1.0 14740 +171546 SPTSSA serine palmitoyltransferase small subunit A Novel N 0.0005938808772121605 -0.29051725882647594 1.0 14741 +25840 TMT1A thiol methyltransferase 1A Novel N 0.0005938156804107295 -0.29051782093337525 1.0 14742 +348174 CLEC18A C-type lectin domain family 18 member A Novel U 0.0005935612159845294 -0.2905200148478995 1.0 14743 +392307 FAM221B family with sequence similarity 221 member B Novel U 0.0005935558830950996 -0.2905200608264426 1.0 14744 +4236 MFAP1 microfibril associated protein 1 Novel N 0.0005934755482935963 -0.2905207534485527 1.0 14745 +136306 SVOPL SVOP like Novel U 0.0005932916477405656 -0.2905223389829252 1.0 14746 +162989 DEDD2 death effector domain containing 2 Novel U 0.0005931828996550575 -0.29052327657568755 1.0 14747 +51101 ZC2HC1A zinc finger C2HC-type containing 1A Novel U 0.0005929816103095288 -0.2905250120309153 1.0 14748 +2651 GCNT2 glucosaminyl (N-acetyl) transferase 2 (I blood group) Novel U 0.0005928368843438381 -0.29052625981396657 1.0 14749 +84302 PGAP4 post-GPI attachment to proteins GalNAc transferase 4 Novel U 0.0005924758407910897 -0.2905293726211518 1.0 14750 +90135 BTBD6 BTB domain containing 6 Novel U 0.0005924477323023852 -0.2905296149639521 1.0 14751 +23464 GCAT glycine C-acetyltransferase Novel U 0.0005922383767645781 -0.29053141996342485 1.0 14752 +84105 PCBD2 pterin-4 alpha-carbinolamine dehydratase 2 Novel N 0.0005921949140986839 -0.29053179468524903 1.0 14753 +159371 SLC35G1 solute carrier family 35 member G1 Novel N 0.0005921554371012178 -0.2905321350438579 1.0 14754 +10137 RBM12 RNA binding motif protein 12 Novel N 0.0005916995553905536 -0.2905360655166604 1.0 14755 +33 ACADL acyl-CoA dehydrogenase long chain Novel U 0.000590805580565923 -0.2905437730944203 1.0 14756 +84103 C4orf17 chromosome 4 open reading frame 17 Novel U 0.0005907777865976833 -0.2905440127255213 1.0 14757 +136242 PRSS37 serine protease 37 Novel N 0.0005906511499190086 -0.2905451045482676 1.0 14758 +64102 TNMD tenomodulin Novel U 0.0005902702998117239 -0.2905483881215136 1.0 14759 +440519 ZNF724 zinc finger protein 724 Novel U 0.0005899399261897527 -0.29055123650192766 1.0 14760 +441495 CENPVL2 centromere protein V like 2 Novel U 0.0005898212398073998 -0.2905522597796485 1.0 14761 +79726 WDR59 WD repeat domain 59 Novel N 0.0005896124289727628 -0.290554060082857 1.0 14762 +28999 KLF15 KLF transcription factor 15 Novel U 0.0005893744974427547 -0.29055611145580235 1.0 14763 +124411 KRBOX5 KRAB box domain containing 5 Novel U 0.0005891544683168479 -0.29055800847969016 1.0 14764 +112577461 OOSP3 oocyte secreted protein family member 3 Novel U 0.0005887791438104092 -0.2905612444128941 1.0 14765 +120227 CYP2R1 cytochrome P450 family 2 subfamily R member 1 Novel N 0.0005887458424373057 -0.29056153152715686 1.0 14766 +55671 PPP4R3A protein phosphatase 4 regulatory subunit 3A Novel U 0.0005887197176747838 -0.29056175676687623 1.0 14767 +503542 SPRN shadow of prion protein Novel U 0.0005884111529777262 -0.29056441711740405 1.0 14768 +100529097 RPL36A-HNRNPH2 RPL36A-HNRNPH2 readthrough Novel U 0.0005882180311708933 -0.290566082154609 1.0 14769 +55510 DDX43 DEAD-box helicase 43 Novel U 0.0005881239850413763 -0.2905668929915994 1.0 14770 +117245 PLAAT5 phospholipase A and acyltransferase 5 Novel U 0.0005880499105107114 -0.29056753163956733 1.0 14771 +2966 GTF2H2 general transcription factor IIH subunit 2 Novel U 0.0005877127992804387 -0.29057043810958133 1.0 14772 +23403 FBXO46 F-box protein 46 Novel U 0.0005874245263455424 -0.2905729235107365 1.0 14773 +30 ACAA1 acetyl-CoA acyltransferase 1 Novel N 0.0005870493998819642 -0.29057615773647544 1.0 14774 +154467 CCDC167 coiled-coil domain containing 167 Novel U 0.000586927001438959 -0.2905772130184489 1.0 14775 +1557 CYP2C19 cytochrome P450 family 2 subfamily C member 19 Novel N 0.0005868468535271846 -0.29057790402925293 1.0 14776 +5348 FXYD1 FXYD domain containing ion transport regulator 1 Novel N 0.0005867171938046895 -0.29057902191575924 1.0 14777 +26872 STEAP1 STEAP family member 1 Novel U 0.000586656661224854 -0.2905795438091652 1.0 14778 +4673 NAP1L1 nucleosome assembly protein 1 like 1 Novel N 0.0005865376830698701 -0.2905805696024605 1.0 14779 +10450 PPIE peptidylprolyl isomerase E Novel N 0.0005864848984460988 -0.2905810246953569 1.0 14780 +80318 GKAP1 G kinase anchoring protein 1 Novel U 0.0005864533435671846 -0.2905812967518805 1.0 14781 +2531 KDSR 3-ketodihydrosphingosine reductase Novel U 0.000586136976037595 -0.290584024376046 1.0 14782 +56135 PCDHAC1 protocadherin alpha subfamily C, 1 Novel U 0.0005861303328161385 -0.29058408165187133 1.0 14783 +203569 PAGE2 PAGE family member 2 Novel U 0.000585970028855006 -0.290585463743639 1.0 14784 +57062 DDX24 DEAD-box helicase 24 Novel U 0.0005859411846839741 -0.29058571242926756 1.0 14785 +58155 PTBP2 polypyrimidine tract binding protein 2 Novel N 0.0005858650550616644 -0.29058636879560773 1.0 14786 +8175 SF3A2 splicing factor 3a subunit 2 Novel N 0.0005855854246408438 -0.29058877968364744 1.0 14787 +105 ADARB2 adenosine deaminase RNA specific B2 (inactive) Novel U 0.0005855781631178959 -0.2905888422902793 1.0 14788 +7158 TP53BP1 tumor protein p53 binding protein 1 Novel U 0.0005853648162335623 -0.29059068170192215 1.0 14789 +51380 CSAD cysteine sulfinic acid decarboxylase Novel U 0.000585227744112305 -0.2905918634958656 1.0 14790 +7678 ZNF124 zinc finger protein 124 Novel U 0.000584962693166151 -0.29059414868412986 1.0 14791 +5218 CDK14 cyclin dependent kinase 14 Novel N 0.0005848716495337118 -0.29059493363450795 1.0 14792 +2525 FUT3 fucosyltransferase 3 (Lewis blood group) Novel U 0.0005847895457260948 -0.29059564150844824 1.0 14793 +112724 RDH13 retinol dehydrogenase 13 Novel N 0.0005847741720073067 -0.2905957740559537 1.0 14794 +4715 NDUFB9 NADH:ubiquinone oxidoreductase subunit B9 Novel N 0.0005845435550326222 -0.2905977623650382 1.0 14795 +3792 KEL Kell metallo-endopeptidase (Kell blood group) Novel N 0.0005844520223634302 -0.29059855153174174 1.0 14796 +5438 POLR2I RNA polymerase II subunit I Novel N 0.0005843250974275849 -0.2905996458397533 1.0 14797 +6656 SOX1 SRY-box transcription factor 1 Novel U 0.0005841986166766949 -0.2906007363181379 1.0 14798 +168507 PKD1L1 polycystin 1 like 1, transient receptor potential channel interacting Novel N 0.0005836904612520968 -0.2906051174789282 1.0 14799 +170691 ADAMTS17 ADAM metallopeptidase with thrombospondin type 1 motif 17 Novel U 0.0005836131500019617 -0.2906057840329024 1.0 14800 +1589 CYP21A2 cytochrome P450 family 21 subfamily A member 2 Novel N 0.0005828957241230454 -0.2906119694596016 1.0 14801 +3779 KCNMB1 potassium calcium-activated channel subfamily M regulatory beta subunit 1 Novel N 0.0005823312906644932 -0.29061683583240344 1.0 14802 +11108 PRDM4 PR/SET domain 4 Novel U 0.0005813381005043152 -0.2906253988144685 1.0 14803 +22901 ARSG arylsulfatase G Novel U 0.0005813356480205391 -0.2906254199590342 1.0 14804 +57579 FAM135A family with sequence similarity 135 member A Novel U 0.0005812825199991304 -0.29062587801260015 1.0 14805 +79611 ACSS3 acyl-CoA synthetase short chain family member 3 Novel N 0.0005811562337348933 -0.2906269668141802 1.0 14806 +6192 RPS4Y1 ribosomal protein S4 Y-linked 1 Novel N 0.0005808573098488269 -0.2906295440445817 1.0 14807 +203427 SLC25A43 solute carrier family 25 member 43 Novel U 0.0005807714140046891 -0.290630284612302 1.0 14808 +5547 PRCP prolylcarboxypeptidase Novel U 0.0005807641452965303 -0.2906303472808826 1.0 14809 +167153 TENT2 terminal nucleotidyltransferase 2 Novel N 0.0005807484786258572 -0.29063048235412975 1.0 14810 +6171 RPL41 ribosomal protein L41 Novel N 0.0005806849721342596 -0.29063102988769424 1.0 14811 +8559 PRPF18 pre-mRNA processing factor 18 Novel N 0.000580609369999332 -0.2906316817061993 1.0 14812 +84230 LRRC8C leucine rich repeat containing 8 VRAC subunit C Novel U 0.0005804632852122912 -0.29063294120459304 1.0 14813 +56954 NIT2 nitrilase family member 2 Novel N 0.0005804569764439729 -0.2906329955968657 1.0 14814 +81796 SLCO5A1 solute carrier organic anion transporter family member 5A1 Novel U 0.0005803940583098473 -0.2906335380577918 1.0 14815 +54838 WBP1L WW domain binding protein 1 like Novel U 0.000580321638688772 -0.29063416243763496 1.0 14816 +440560 PRAMEF11 PRAME family member 11 Novel U 0.0005802675269174398 -0.290634628972792 1.0 14817 +112858 TP53RK TP53 regulating kinase Novel U 0.0005801722034201837 -0.29063545082285674 1.0 14818 +648791 PPP1R3G protein phosphatase 1 regulatory subunit 3G Novel U 0.0005801019452086604 -0.2906360565676872 1.0 14819 +64061 TSPYL2 TSPY like 2 Novel N 0.0005800652683986543 -0.2906363727839355 1.0 14820 +55778 ZNF839 zinc finger protein 839 Novel U 0.0005800414601595376 -0.2906365780512979 1.0 14821 +5832 ALDH18A1 aldehyde dehydrogenase 18 family member A1 Novel U 0.0005799313934184199 -0.29063752701310597 1.0 14822 +200373 CFAP221 cilia and flagella associated protein 221 Novel N 0.0005798656849550207 -0.2906380935313984 1.0 14823 +350 APOH apolipoprotein H Novel U 0.0005798334942248796 -0.290638371070037 1.0 14824 +93650 ACP4 acid phosphatase 4 Novel U 0.0005797356826432009 -0.2906392143716052 1.0 14825 +93377 OPALIN oligodendrocytic myelin paranodal and inner loop protein Novel U 0.0005793960903132979 -0.29064214223290213 1.0 14826 +26012 NSMF NMDA receptor synaptonuclear signaling and neuronal migration factor Novel N 0.0005792185379331733 -0.2906436730352676 1.0 14827 +10283 CWC27 CWC27 spliceosome associated cyclophilin Novel U 0.0005784524917239601 -0.29065027765159746 1.0 14828 +219970 GLYATL2 glycine-N-acyltransferase like 2 Novel N 0.000578370863720766 -0.29065098142329737 1.0 14829 +167227 DCP2 decapping mRNA 2 Novel N 0.000578339432690761 -0.29065125241203343 1.0 14830 +113452 TMEM54 transmembrane protein 54 Novel U 0.0005782625140331432 -0.29065191558119485 1.0 14831 +340602 EZHIP EZH inhibitory protein Novel N 0.0005781123177554893 -0.29065321052760434 1.0 14832 +23306 NEMP1 nuclear envelope integral membrane protein 1 Novel U 0.0005779481345020274 -0.29065462606544507 1.0 14833 +440077 ZNF705A zinc finger protein 705A Novel U 0.0005776123524188243 -0.2906575210759592 1.0 14834 +84267 QNG1 Q-nucleotide N-glycosylase 1 Novel N 0.0005772883122702919 -0.2906603148511006 1.0 14835 +148741 ANKRD35 ankyrin repeat domain 35 Novel U 0.000577219676830549 -0.29066090660488875 1.0 14836 +80153 EDC3 enhancer of mRNA decapping 3 Novel U 0.0005769012411362471 -0.2906636520601384 1.0 14837 +6627 SNRPA1 small nuclear ribonucleoprotein polypeptide A' Novel N 0.0005768321340914685 -0.290664247879961 1.0 14838 +56931 DUS3L dihydrouridine synthase 3 like Novel N 0.000576602606739766 -0.2906662267946491 1.0 14839 +55195 CCDC198 coiled-coil domain containing 198 Novel U 0.0005765764358509733 -0.290666452432055 1.0 14840 +5100 PCDH8 protocadherin 8 Novel N 0.0005763875422549355 -0.2906680810149186 1.0 14841 +284359 IZUMO1 izumo sperm-oocyte fusion 1 Novel U 0.0005761579159818037 -0.29067006078247704 1.0 14842 +200030 NBPF11 NBPF member 11 Novel U 0.0005760863697876861 -0.2906706776318999 1.0 14843 +25769 SLC24A2 solute carrier family 24 member 2 Novel U 0.0005760027448602984 -0.29067139862047 1.0 14844 +126328 NDUFA11 NADH:ubiquinone oxidoreductase subunit A11 Novel N 0.0005756695906366856 -0.2906742709743817 1.0 14845 +79623 GALNT14 polypeptide N-acetylgalactosaminyltransferase 14 Novel N 0.0005756460379687936 -0.2906744740382871 1.0 14846 +5545 PRB4 proline rich protein BstNI subfamily 4 Novel U 0.0005751991415588135 -0.2906783270425728 1.0 14847 +122622 ADSS1 adenylosuccinate synthase 1 Novel N 0.000575162225219165 -0.2906786453239724 1.0 14848 +285315 C3orf33 chromosome 3 open reading frame 33 Novel U 0.0005749432991571178 -0.29068053283758066 1.0 14849 +134285 TMEM171 transmembrane protein 171 Novel U 0.0005747457896331669 -0.2906822357043419 1.0 14850 +25790 CFAP45 cilia and flagella associated protein 45 Novel N 0.0005744868202216083 -0.29068446845947327 1.0 14851 +994 CDC25B cell division cycle 25B Novel U 0.0005742211525965759 -0.2906867589645544 1.0 14852 +140453 MUC17 mucin 17, cell surface associated Novel N 0.0005742093575561071 -0.290686860657789 1.0 14853 +10524 KAT5 lysine acetyltransferase 5 Novel U 0.0005741940791879186 -0.29068699238321083 1.0 14854 +162993 ZNF846 zinc finger protein 846 Novel U 0.0005740893031576294 -0.2906878957301268 1.0 14855 +692312 PPAN-P2RY11 PPAN-P2RY11 readthrough Novel U 0.0005737607802313994 -0.2906907281544078 1.0 14856 +64073 C19orf33 chromosome 19 open reading frame 33 Novel U 0.000573712813140366 -0.29069114171200905 1.0 14857 +81833 SPACA1 sperm acrosome associated 1 Novel N 0.0005735830279231244 -0.29069226068049275 1.0 14858 +2622 GAS8 growth arrest specific 8 Novel U 0.0005735457483830423 -0.2906925820932955 1.0 14859 +65987 KCTD14 potassium channel tetramerization domain containing 14 Novel U 0.0005735250280486396 -0.29069276073768713 1.0 14860 +4176 MCM7 minichromosome maintenance complex component 7 Novel U 0.000573327075361676 -0.2906944674252644 1.0 14861 +10291 SF3A1 splicing factor 3a subunit 1 Novel N 0.000573275303103038 -0.2906949137898579 1.0 14862 +80152 CENPT centromere protein T Novel U 0.0005730908028674531 -0.2906965044945102 1.0 14863 +51654 CDK5RAP1 CDK5 regulatory subunit associated protein 1 Novel U 0.0005730550133800227 -0.29069681306053435 1.0 14864 +79642 ARSJ arylsulfatase family member J Novel U 0.0005729626939909462 -0.2906976090100963 1.0 14865 +728340 GTF2H2C GTF2H2 family member C Novel U 0.0005727646930952195 -0.2906993161133148 1.0 14866 +27249 MMADHC metabolism of cobalamin associated D Novel N 0.000572268242675108 -0.29070359635713316 1.0 14867 +23492 CBX7 chromobox 7 Novel N 0.0005721902222651384 -0.2907042690252667 1.0 14868 +93166 PRDM6 PR/SET domain 6 Novel N 0.0005720962602343416 -0.2907050791371836 1.0 14869 +144233 BCDIN3D BCDIN3 domain containing RNA methyltransferase Novel N 0.0005718907008317593 -0.2907068514075385 1.0 14870 +79918 SETD6 SET domain containing 6, protein lysine methyltransferase Novel U 0.000571846514772788 -0.2907072323662367 1.0 14871 +140625 ACTRT2 actin related protein T2 Novel U 0.0005717669198661825 -0.29070791860919903 1.0 14872 +5462 POU5F1B POU class 5 homeobox 1B Novel U 0.0005717428378629027 -0.2907081262368724 1.0 14873 +653220 XAGE1A X antigen family member 1A Novel U 0.0005715223042598095 -0.29071002761020837 1.0 14874 +23461 ABCA5 ATP binding cassette subfamily A member 5 Novel U 0.000571292284065606 -0.2907120107740339 1.0 14875 +166752 FREM3 FRAS1 related extracellular matrix 3 Novel U 0.0005708565284382337 -0.2907157677258963 1.0 14876 +84255 SLC37A3 solute carrier family 37 member 3 Novel N 0.0005708419647080867 -0.29071589328992725 1.0 14877 +26254 OPTC opticin Novel U 0.0005704614498881627 -0.29071917397242814 1.0 14878 +4728 NDUFS8 NADH:ubiquinone oxidoreductase core subunit S8 Novel N 0.0005701549566914814 -0.2907218164631127 1.0 14879 +54866 PPP1R14D protein phosphatase 1 regulatory inhibitor subunit 14D Novel U 0.0005701511381349176 -0.2907218493855405 1.0 14880 +7780 SLC30A2 solute carrier family 30 member 2 Novel U 0.0005699647531352364 -0.29072345634005287 1.0 14881 +4336 MOBP myelin associated oligodendrocyte basic protein Novel N 0.0005697299969612961 -0.29072548033604845 1.0 14882 +339229 OXLD1 oxidoreductase like domain containing 1 Novel U 0.0005696008253411676 -0.29072659401428536 1.0 14883 +1137 CHRNA4 cholinergic receptor nicotinic alpha 4 subunit Novel N 0.0005695052797195114 -0.2907274177794388 1.0 14884 +81928 CABLES2 Cdk5 and Abl enzyme substrate 2 Novel U 0.0005688058651501672 -0.2907334479181307 1.0 14885 +9990 SLC12A6 solute carrier family 12 member 6 Novel U 0.0005686905470854878 -0.29073444215524585 1.0 14886 +56141 PCDHA7 protocadherin alpha 7 Novel U 0.0005686688642465522 -0.2907346290980574 1.0 14887 +11244 ZHX1 zinc fingers and homeoboxes 1 Novel N 0.0005685895278977886 -0.29073531311181305 1.0 14888 +54905 CYP2W1 cytochrome P450 family 2 subfamily W member 1 Novel N 0.0005685675773364809 -0.29073550236284507 1.0 14889 +152015 ROPN1B rhophilin associated tail protein 1B Novel N 0.0005684389001190179 -0.29073661177849325 1.0 14890 +644844 PHGR1 proline, histidine and glycine rich 1 Novel U 0.0005680481117707539 -0.2907399810362161 1.0 14891 +435 ASL argininosuccinate lyase Novel N 0.0005677662270493209 -0.29074241136014684 1.0 14892 +474382 H2AB1 H2A.B variant histone 1 Novel N 0.0005671457681980805 -0.2907477607667644 1.0 14893 +319101 KRT73 keratin 73 Novel U 0.0005671412181558626 -0.290747799995838 1.0 14894 +90957 DHX57 DExH-box helicase 57 Novel U 0.0005670042496102012 -0.29074898089678425 1.0 14895 +642273 FAM110C family with sequence similarity 110 member C Novel U 0.0005669281380262162 -0.29074963710760343 1.0 14896 +83855 KLF16 KLF transcription factor 16 Novel U 0.0005668366879942327 -0.29075042556183417 1.0 14897 +55319 TMA16 translation machinery associated 16 homolog Novel N 0.0005667399952546073 -0.2907512592170882 1.0 14898 +253982 ASPHD1 aspartate beta-hydroxylase domain containing 1 Novel U 0.0005666338418200135 -0.2907521744395632 1.0 14899 +114786 XKR4 XK related 4 Novel U 0.0005664252369047258 -0.29075397296739797 1.0 14900 +9615 GDA guanine deaminase Novel N 0.00056617513271489 -0.29075612928929667 1.0 14901 +9935 MAFB MAF bZIP transcription factor B Novel U 0.0005661324065473869 -0.2907564976612567 1.0 14902 +221 ALDH3B1 aldehyde dehydrogenase 3 family member B1 Novel N 0.0005654318676387075 -0.2907625374936589 1.0 14903 +56652 TWNK twinkle mtDNA helicase Novel U 0.0005651139123191161 -0.29076527880726466 1.0 14904 +6658 SOX3 SRY-box transcription factor 3 Novel U 0.0005650421370802736 -0.2907658976314411 1.0 14905 +154881 KCTD7 potassium channel tetramerization domain containing 7 Novel N 0.0005647439358676027 -0.29076846863117334 1.0 14906 +51649 MRPS23 mitochondrial ribosomal protein S23 Novel N 0.0005646059834521533 -0.29076965801474425 1.0 14907 +4357 MPST mercaptopyruvate sulfurtransferase Novel N 0.0005638654160398661 -0.2907760429606727 1.0 14908 +8703 B4GALT3 beta-1,4-galactosyltransferase 3 Novel N 0.0005638180272325132 -0.2907764515324888 1.0 14909 +130827 TMEM182 transmembrane protein 182 Novel U 0.0005635558622384552 -0.29077871183895604 1.0 14910 +6519 SLC3A1 solute carrier family 3 member 1 Novel U 0.0005635358428543937 -0.29077888443996797 1.0 14911 +9154 SLC28A1 solute carrier family 28 member 1 Novel U 0.000563468799493459 -0.290779462467339 1.0 14912 +419 ART3 ADP-ribosyltransferase 3 (inactive) Novel U 0.0005633293808286719 -0.2907806644924637 1.0 14913 +29842 TFCP2L1 transcription factor CP2 like 1 Novel N 0.0005632731971328989 -0.2907811488911202 1.0 14914 +83943 IMMP2L inner mitochondrial membrane peptidase subunit 2 Novel U 0.0005631463012678624 -0.2907822429484921 1.0 14915 +343990 CRACDL CRACD like Novel U 0.0005629757258084106 -0.29078371359797955 1.0 14916 +144811 LACC1 laccase domain containing 1 Novel U 0.0005628625122325125 -0.29078468969083554 1.0 14917 +132660 LIN54 lin-54 DREAM MuvB core complex component Novel N 0.0005626697655446606 -0.2907863514938793 1.0 14918 +57223 PPP4R3B protein phosphatase 4 regulatory subunit 3B Novel N 0.0005625975909081947 -0.29078697376153995 1.0 14919 +79797 ZNF408 zinc finger protein 408 Novel N 0.0005625169114463601 -0.2907876693552061 1.0 14920 +80765 STARD5 StAR related lipid transfer domain containing 5 Novel U 0.0005621918346294082 -0.2907904720681859 1.0 14921 +8607 RUVBL1 RuvB like AAA ATPase 1 Novel U 0.000562180964926244 -0.2907905657834451 1.0 14922 +79088 ZNF426 zinc finger protein 426 Novel U 0.0005621141638327212 -0.2907911417220606 1.0 14923 +284467 TAFA3 TAFA chemokine like family member 3 Novel U 0.0005617975099784052 -0.2907938718148304 1.0 14924 +52 ACP1 acid phosphatase 1 Novel U 0.0005617306999587152 -0.2907944478304046 1.0 14925 +146429 SLC22A31 solute carrier family 22 member 31 Novel U 0.0005617016757173196 -0.29079469806854474 1.0 14926 +730249 ACOD1 aconitate decarboxylase 1 Novel U 0.0005616096001218442 -0.29079549191619275 1.0 14927 +5169 ENPP3 ectonucleotide pyrophosphatase/phosphodiesterase 3 Novel N 0.0005615114210974224 -0.2907963383857401 1.0 14928 +100529240 ZNF816-ZNF321P ZNF816-ZNF321P readthrough Novel U 0.0005613587767022812 -0.29079765443907035 1.0 14929 +57035 RSRP1 arginine and serine rich protein 1 Novel N 0.0005612545837763608 -0.29079855275863875 1.0 14930 +8513 LIPF lipase F, gastric type Novel U 0.0005606442191478735 -0.29080381513595227 1.0 14931 +493860 CCDC73 coiled-coil domain containing 73 Novel U 0.00056062284888801 -0.2908039993838025 1.0 14932 +5026 P2RX5 purinergic receptor P2X 5 Novel N 0.0005603569562137326 -0.2908062918291895 1.0 14933 +5469 MED1 mediator complex subunit 1 Novel U 0.0005603293574570112 -0.29080652977723637 1.0 14934 +84334 COA8 cytochrome c oxidase assembly factor 8 Novel N 0.0005602775593350426 -0.29080697636481573 1.0 14935 +56144 PCDHA4 protocadherin alpha 4 Novel U 0.00056017048103499 -0.2908078995611981 1.0 14936 +10841 FTCD formimidoyltransferase cyclodeaminase Novel U 0.0005601379780861294 -0.29080817979169105 1.0 14937 +6594 SMARCA1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 1 Novel N 0.0005598114475414658 -0.29081099503826696 1.0 14938 +5575 PRKAR1B protein kinase cAMP-dependent type I regulatory subunit beta Novel U 0.0005597266453089197 -0.29081172617720236 1.0 14939 +29115 SAP30BP SAP30 binding protein Novel U 0.0005594757391762877 -0.2908138894132068 1.0 14940 +5226 PGD phosphogluconate dehydrogenase Novel N 0.0005593795709487707 -0.29081471854627766 1.0 14941 +29113 C6orf15 chromosome 6 open reading frame 15 Novel U 0.0005592460231291119 -0.29081586995476966 1.0 14942 +25907 TMEM158 transmembrane protein 158 Novel U 0.0005590807688991424 -0.29081729472624257 1.0 14943 +84641 MFSD14B major facilitator superfamily domain containing 14B Novel U 0.0005589039610447017 -0.29081881910953516 1.0 14944 +116150 NUS1 NUS1 dehydrodolichyl diphosphate synthase subunit Novel U 0.0005588736077749314 -0.2908190808061519 1.0 14945 +23246 BOP1 BOP1 ribosomal biogenesis factor Novel N 0.0005584019386174553 -0.29082314739349646 1.0 14946 +5016 OVGP1 oviductal glycoprotein 1 Novel N 0.0005580113427477379 -0.29082651499172807 1.0 14947 +55781 RIOK2 RIO kinase 2 Novel U 0.0005576207219931622 -0.29082988280450933 1.0 14948 +339669 CIMIP4 ciliary microtubule inner protein 4 Novel U 0.0005575988040650429 -0.29083007177418796 1.0 14949 +277 AMY1B amylase alpha 1B Novel N 0.0005572217802437432 -0.2908333223583655 1.0 14950 +3817 KLK2 kallikrein related peptidase 2 Novel U 0.0005571363392139128 -0.29083405900481585 1.0 14951 +6521 SLC4A1 solute carrier family 4 member 1 (Diego blood group) Novel U 0.0005570865691487919 -0.29083448810710877 1.0 14952 +4824 NKX3-1 NK3 homeobox 1 Novel U 0.000556929142915536 -0.29083584538798607 1.0 14953 +548313 SSX4B SSX family member 4B Novel U 0.0005568054207164251 -0.2908369120829801 1.0 14954 +83853 ROPN1L rhophilin associated tail protein 1 like Novel N 0.0005567489365481964 -0.2908373990722184 1.0 14955 +729440 CCDC61 coiled-coil domain containing 61 Novel U 0.0005566081416012599 -0.2908386129632272 1.0 14956 +51081 MRPS7 mitochondrial ribosomal protein S7 Novel N 0.0005563780724699253 -0.29084059654897376 1.0 14957 +5980 REV3L REV3 like, DNA directed polymerase zeta catalytic subunit Novel U 0.0005562383635250365 -0.29084180107680474 1.0 14958 +51071 DERA deoxyribose-phosphate aldolase Novel N 0.0005561875973474898 -0.2908422387672746 1.0 14959 +139793 PAGE3 PAGE family member 3 Novel U 0.0005560822604001977 -0.2908431469502456 1.0 14960 +170392 OIT3 oncoprotein induced transcript 3 Novel U 0.0005560463092877864 -0.290843456909751 1.0 14961 +3213 HOXB3 homeobox B3 Novel N 0.0005559336112623652 -0.2908444285576882 1.0 14962 +29894 CPSF1 cleavage and polyadenylation specific factor 1 Novel N 0.0005556438031347349 -0.29084692719480604 1.0 14963 +474343 SPIN2B spindlin family member 2B Novel U 0.0005556070859605965 -0.2908472437590615 1.0 14964 +100129583 FAM47E family with sequence similarity 47 member E Novel N 0.0005553802562685468 -0.2908491994153525 1.0 14965 +3890 KRT84 keratin 84 Novel U 0.0005549619116808514 -0.2908528062545512 1.0 14966 +6758 SSX5 SSX family member 5 Novel U 0.000554854552063694 -0.29085373187636365 1.0 14967 +7032 TFF2 trefoil factor 2 Novel U 0.0005542402816874858 -0.2908590279278405 1.0 14968 +151050 KANSL1L KAT8 regulatory NSL complex subunit 1 like Novel U 0.0005540389296670277 -0.29086076392343235 1.0 14969 +84864 RIOX2 ribosomal oxygenase 2 Novel U 0.0005538614238935589 -0.29086229432396954 1.0 14970 +23491 CES3 carboxylesterase 3 Novel U 0.0005537919445393903 -0.29086289335372995 1.0 14971 +7644 ZNF91 zinc finger protein 91 Novel N 0.0005533854442232723 -0.2908663980752384 1.0 14972 +2110 ETFDH electron transfer flavoprotein dehydrogenase Novel N 0.0005533820879767634 -0.29086642701177023 1.0 14973 +3015 H2AZ1 H2A.Z variant histone 1 Novel U 0.0005531249271213262 -0.29086864417408337 1.0 14974 +7675 ZNF121 zinc finger protein 121 Novel U 0.0005526164797355546 -0.29087302785207375 1.0 14975 +51114 ZDHHC9 zinc finger DHHC-type palmitoyltransferase 9 Novel U 0.0005524278673846539 -0.2908746540101277 1.0 14976 +93589 CACNA2D4 calcium voltage-gated channel auxiliary subunit alpha2delta 4 Novel U 0.0005523628829965803 -0.2908752142856639 1.0 14977 +6542 SLC7A2 solute carrier family 7 member 2 Novel N 0.0005522349049473637 -0.2908763176732971 1.0 14978 +7988 ZNF212 zinc finger protein 212 Novel U 0.0005518550108008217 -0.2908795930045417 1.0 14979 +4598 MVK mevalonate kinase Novel U 0.0005517639590381406 -0.29088037802501626 1.0 14980 +151871 DPPA2 developmental pluripotency associated 2 Novel U 0.0005516525609190412 -0.2908813384655584 1.0 14981 +339559 ZFP69 ZFP69 zinc finger protein Novel U 0.0005511795563152048 -0.2908854165667134 1.0 14982 +163071 ZNF114 zinc finger protein 114 Novel U 0.0005510962225465349 -0.290886135045002 1.0 14983 +79746 ECHDC3 enoyl-CoA hydratase domain containing 3 Novel N 0.0005507738438266919 -0.290888914495813 1.0 14984 +64978 MRPL38 mitochondrial ribosomal protein L38 Novel U 0.0005507726610737992 -0.2908889246931471 1.0 14985 +374286 FBXW10B F-box and WD repeat domain containing 10B Novel U 0.0005505089353899826 -0.29089119845540445 1.0 14986 +5092 PCBD1 pterin-4 alpha-carbinolamine dehydratase 1 Novel N 0.0005504216448508069 -0.2908919510477593 1.0 14987 +149499 LRRC71 leucine rich repeat containing 71 Novel U 0.0005504200447128695 -0.2908919648436596 1.0 14988 +100131827 ZNF717 zinc finger protein 717 Novel U 0.0005502649484420017 -0.2908933020363132 1.0 14989 +201266 SLC39A11 solute carrier family 39 member 11 Novel U 0.0005502233440239505 -0.29089366073689227 1.0 14990 +23017 FAIM2 Fas apoptotic inhibitory molecule 2 Novel U 0.0005500167651752265 -0.2908954417966002 1.0 14991 +2020 EN2 engrailed homeobox 2 Novel U 0.0005499865292088842 -0.29089570248186264 1.0 14992 +10472 ZBTB18 zinc finger and BTB domain containing 18 Novel U 0.0005496845943141846 -0.29089830567226044 1.0 14993 +83860 TAF3 TATA-box binding protein associated factor 3 Novel U 0.0005495572890670468 -0.2908994032591997 1.0 14994 +56001 NXF2 nuclear RNA export factor 2 Novel U 0.0005495342461322148 -0.2908996019283424 1.0 14995 +653067 XAGE1B X antigen family member 1B Novel U 0.0005494397565267362 -0.290900416588847 1.0 14996 +79442 LRRC2 leucine rich repeat containing 2 Novel U 0.0005492420737199698 -0.29090212094959966 1.0 14997 +60509 AGBL5 AGBL carboxypeptidase 5 Novel N 0.0005492018207250699 -0.2909024679986213 1.0 14998 +29803 REPIN1 replication initiator 1 Novel U 0.0005491635418012379 -0.29090279802780544 1.0 14999 +100287482 SMKR1 small lysine rich protein 1 Novel U 0.0005491180617037102 -0.2909031901433086 1.0 15000 +93100 NAPRT nicotinate phosphoribosyltransferase Novel N 0.0005490608076385473 -0.29090368377036296 1.0 15001 +51350 KRT76 keratin 76 Novel U 0.0005489164822642026 -0.2909049280996381 1.0 15002 +1562 CYP2C18 cytochrome P450 family 2 subfamily C member 18 Novel N 0.0005488748098852617 -0.29090528738615523 1.0 15003 +6117 RPA1 replication protein A1 Novel U 0.0005482744708622382 -0.290910463325762 1.0 15004 +284325 ACTMAP actin maturation protease Novel N 0.0005481565652310152 -0.29091147987208515 1.0 15005 +23443 SLC35A3 solute carrier family 35 member A3 Novel U 0.000548101128681237 -0.29091195782907725 1.0 15006 +221981 THSD7A thrombospondin type 1 domain containing 7A Novel U 0.0005479130201664315 -0.2909135796432103 1.0 15007 +143879 KBTBD3 kelch repeat and BTB domain containing 3 Novel U 0.0005478048175040702 -0.2909145125335009 1.0 15008 +55140 ELP3 elongator acetyltransferase complex subunit 3 Novel N 0.0005477937141474222 -0.290914608263249 1.0 15009 +400961 PAIP2B poly(A) binding protein interacting protein 2B Novel N 0.0005477475940129498 -0.2909150058969552 1.0 15010 +55146 ZDHHC4 zinc finger DHHC-type palmitoyltransferase 4 Novel U 0.000547590782892257 -0.2909163578745199 1.0 15011 +23704 KCNE4 potassium voltage-gated channel subfamily E regulatory subunit 4 Novel U 0.0005475317820339896 -0.29091686656189064 1.0 15012 +5538 PPT1 palmitoyl-protein thioesterase 1 Novel U 0.0005474364413283705 -0.2909176885603206 1.0 15013 +114571 SLC22A9 solute carrier family 22 member 9 Novel N 0.0005470390011402458 -0.29092111516817404 1.0 15014 +27043 PELP1 proline, glutamate and leucine rich protein 1 Novel N 0.0005469711794744694 -0.2909216999058516 1.0 15015 +57730 ANKRD36B ankyrin repeat domain 36B Novel U 0.0005469435833362869 -0.29092193783132225 1.0 15016 +84179 SLC49A3 solute carrier family 49 member 3 Novel U 0.000546851301842478 -0.29092273345416286 1.0 15017 +400818 NBPF9 NBPF member 9 Novel U 0.0005464707150364351 -0.290926014757306 1.0 15018 +1577 CYP3A5 cytochrome P450 family 3 subfamily A member 5 Novel U 0.0005464692713606986 -0.29092602720423705 1.0 15019 +374879 ZNF699 zinc finger protein 699 Novel U 0.0005459622649349156 -0.29093039845871066 1.0 15020 +201895 SMIM14 small integral membrane protein 14 Novel U 0.0005458943551999851 -0.2909309839556936 1.0 15021 +147183 KRT25 keratin 25 Novel N 0.0005457617421408251 -0.2909321273049662 1.0 15022 +23512 SUZ12 SUZ12 polycomb repressive complex 2 subunit Novel U 0.0005456325441359355 -0.2909332412106845 1.0 15023 +90624 LYRM7 LYR motif containing 7 Novel N 0.0005454888777532091 -0.2909344798583352 1.0 15024 +151126 ZNF385B zinc finger protein 385B Novel N 0.0005453980424077826 -0.2909352630129263 1.0 15025 +79912 PYROXD1 pyridine nucleotide-disulphide oxidoreductase domain 1 Novel U 0.0005453734776064544 -0.2909354748031369 1.0 15026 +7270 TTF1 transcription termination factor 1 Novel U 0.0005453418743814557 -0.29093574727648563 1.0 15027 +114781 BTBD9 BTB domain containing 9 Novel U 0.000545141412584772 -0.29093747559684013 1.0 15028 +646480 FABP9 fatty acid binding protein 9 Novel U 0.0005449541031564709 -0.2909390905214935 1.0 15029 +387911 C1QTNF9B C1q and TNF related 9B Novel U 0.000544825789776914 -0.29094019680024247 1.0 15030 +10566 AKAP3 A-kinase anchoring protein 3 Novel N 0.0005447433810408993 -0.2909409073031822 1.0 15031 +3860 KRT13 keratin 13 Novel U 0.0005446594312832134 -0.29094163109233984 1.0 15032 +64769 MEAF6 MYST/Esa1 associated factor 6 Novel N 0.0005445439269326459 -0.290942626935555 1.0 15033 +797 CALCB calcitonin related polypeptide beta Novel N 0.0005443706930828004 -0.29094412050487206 1.0 15034 +881 CCIN calicin Novel U 0.0005440258385243017 -0.2909470937354959 1.0 15035 +100129520 TEX13C TEX13 family member C Novel U 0.0005439494049746735 -0.29094775272220447 1.0 15036 +79728 PALB2 partner and localizer of BRCA2 Novel U 0.0005437817531238405 -0.2909491981652318 1.0 15037 +27306 HPGDS hematopoietic prostaglandin D synthase Novel N 0.0005435999260737004 -0.29095076582249596 1.0 15038 +6787 NEK4 NIMA related kinase 4 Novel N 0.0005435117221399962 -0.2909515262898593 1.0 15039 +140689 CBLN4 cerebellin 4 precursor Novel U 0.0005433882031574806 -0.290952591232782 1.0 15040 +116028 RMI2 RecQ mediated genome instability 2 Novel N 0.0005433506623026468 -0.29095291489856073 1.0 15041 +4835 NQO2 N-ribosyldihydronicotinamide:quinone dehydrogenase 2 Novel U 0.000543186586286028 -0.2909543295118382 1.0 15042 +57466 SCAF4 SR-related CTD associated factor 4 Novel N 0.0005428929260096087 -0.29095686136100574 1.0 15043 +64320 RNF25 ring finger protein 25 Novel U 0.0005428519387077425 -0.29095721474099767 1.0 15044 +55311 ZNF444 zinc finger protein 444 Novel U 0.0005428059763902092 -0.2909576110140544 1.0 15045 +80325 ABTB1 ankyrin repeat and BTB domain containing 1 Novel U 0.0005424739690536934 -0.29096047347985604 1.0 15046 +84929 FIBCD1 fibrinogen C domain containing 1 Novel U 0.0005424301198359029 -0.29096085153441253 1.0 15047 +53918 PELO pelota mRNA surveillance and ribosome rescue factor Novel U 0.0005423742252249534 -0.29096133344066805 1.0 15048 +22864 R3HDM2 R3H domain containing 2 Novel U 0.0005420386907969479 -0.29096422631597474 1.0 15049 +8355 H3C8 H3 clustered histone 8 Novel U 0.0005418192803935449 -0.2909661180054261 1.0 15050 +54881 TEX10 testis expressed 10 Novel U 0.0005417467001498386 -0.29096674377010856 1.0 15051 +343702 XKR7 XK related 7 Novel U 0.0005417128628363897 -0.2909670355050852 1.0 15052 +171392 ZNF675 zinc finger protein 675 Novel U 0.0005416212970035111 -0.2909678249577159 1.0 15053 +9058 SLC13A2 solute carrier family 13 member 2 Novel N 0.0005415828218859781 -0.2909681566784222 1.0 15054 +3157 HMGCS1 3-hydroxy-3-methylglutaryl-CoA synthase 1 Novel N 0.0005415802815889431 -0.2909681785800869 1.0 15055 +57333 RCN3 reticulocalbin 3 Novel U 0.0005415394443929834 -0.2909685306659116 1.0 15056 +55974 SLC50A1 solute carrier family 50 member 1 Novel N 0.0005412664732440173 -0.29097088413974426 1.0 15057 +3201 HOXA4 homeobox A4 Novel N 0.0005411601371341543 -0.29097180093718966 1.0 15058 +10520 ZNF211 zinc finger protein 211 Novel U 0.0005405827779296442 -0.2909767787518234 1.0 15059 +284613 CYB561D1 cytochrome b561 family member D1 Novel U 0.0005405081711370674 -0.29097742198879084 1.0 15060 +4005 LMO2 LIM domain only 2 Novel N 0.0005402173875639118 -0.2909799290359018 1.0 15061 +442319 ZNF727 zinc finger protein 727 Novel U 0.0005401380778556921 -0.2909806128199709 1.0 15062 +353299 RGSL1 regulator of G protein signaling like 1 Novel U 0.0005401127108066123 -0.2909808315269165 1.0 15063 +2568 GABRP gamma-aminobutyric acid type A receptor subunit pi Novel U 0.0005399958572395255 -0.29098183900266417 1.0 15064 +28960 DCPS decapping enzyme, scavenger Novel U 0.0005399339550347195 -0.2909823727045581 1.0 15065 +3155 HMGCL 3-hydroxy-3-methylglutaryl-CoA lyase Novel N 0.0005399054999846851 -0.2909826180353043 1.0 15066 +163033 ZNF579 zinc finger protein 579 Novel N 0.0005398435446266369 -0.2909831521954693 1.0 15067 +100130311 C17orf107 chromosome 17 open reading frame 107 Novel U 0.0005397226211354702 -0.2909841947608587 1.0 15068 +25823 TPSG1 tryptase gamma 1 Novel U 0.0005395212097699184 -0.29098593126810585 1.0 15069 +54107 POLE3 DNA polymerase epsilon 3, accessory subunit Novel N 0.00053945489684366 -0.29098650299789236 1.0 15070 +4062 LY6H lymphocyte antigen 6 family member H Novel N 0.0005391022847060274 -0.2909895431119929 1.0 15071 +114327 EFHC1 EF-hand domain containing 1 Novel U 0.0005388977008823347 -0.2909913069712047 1.0 15072 +50804 MYEF2 myelin expression factor 2 Novel U 0.0005388522219307121 -0.29099169907682826 1.0 15073 +127 ADH4 alcohol dehydrogenase 4 (class II), pi polypeptide Novel N 0.0005387734815097245 -0.29099237795267674 1.0 15074 +4211 MEIS1 Meis homeobox 1 Novel U 0.0005387457706436243 -0.29099261686729644 1.0 15075 +3888 KRT82 keratin 82 Novel U 0.0005383844033560462 -0.2909957324656245 1.0 15076 +7701 ZNF142 zinc finger protein 142 Novel N 0.0005379108195753189 -0.29099981556026566 1.0 15077 +55220 KLHDC8A kelch domain containing 8A Novel U 0.0005379096850384737 -0.29099982534189567 1.0 15078 +389084 SNORC secondary ossification center associated regulator of chondrocyte maturation Novel U 0.000537469281110546 -0.291003622369985 1.0 15079 +80097 MZT2B mitotic spindle organizing protein 2B Novel U 0.0005373801814918627 -0.29100439055967053 1.0 15080 +29789 OLA1 Obg like ATPase 1 Novel N 0.0005372382405417066 -0.29100561433116884 1.0 15081 +152573 SHISA3 shisa family member 3 Novel U 0.000536860642320072 -0.2910088698676505 1.0 15082 +84281 C2orf88 chromosome 2 open reading frame 88 Novel U 0.0005368079624945328 -0.2910093240570086 1.0 15083 +6897 TARS1 threonyl-tRNA synthetase 1 Novel U 0.0005367593545725141 -0.29100974313965877 1.0 15084 +29883 CNOT7 CCR4-NOT transcription complex subunit 7 Novel U 0.0005367336205071053 -0.291009965010907 1.0 15085 +201305 SPNS3 SPNS lysolipid transporter 3, sphingosine-1-phosphate (putative) Novel U 0.0005364614610233267 -0.2910123114868105 1.0 15086 +158067 AK8 adenylate kinase 8 Novel U 0.0005362999203924999 -0.2910137042407664 1.0 15087 +79753 SNIP1 Smad nuclear interacting protein 1 Novel U 0.0005361896300449301 -0.29101465513044095 1.0 15088 +432355 SLURP2 secreted LY6/PLAUR domain containing 2 Novel U 0.0005360973319212479 -0.2910154508966592 1.0 15089 +125893 ZNF816 zinc finger protein 816 Novel U 0.0005360829336960515 -0.2910155750337571 1.0 15090 +202051 SPATA24 spermatogenesis associated 24 Novel U 0.0005360123615337125 -0.2910161834853755 1.0 15091 +64943 NT5DC2 5'-nucleotidase domain containing 2 Novel U 0.0005359853202791643 -0.29101641662680905 1.0 15092 +55799 CACNA2D3 calcium voltage-gated channel auxiliary subunit alpha2delta 3 Novel U 0.0005355649561979358 -0.29102004087746386 1.0 15093 +4061 LY6E lymphocyte antigen 6 family member E Novel N 0.0005352582029279137 -0.2910226856104213 1.0 15094 +285966 TCAF2 TRPM8 channel associated factor 2 Novel U 0.0005351943138269722 -0.29102323644272654 1.0 15095 +113278 SLC52A3 solute carrier family 52 member 3 Novel N 0.0005351341301905205 -0.29102375532764935 1.0 15096 +56913 C1GALT1 core 1 synthase, glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase 1 Novel U 0.0005349941440620135 -0.29102496224527274 1.0 15097 +6716 SRD5A2 steroid 5 alpha-reductase 2 Novel N 0.0005349744560929055 -0.29102513198892627 1.0 15098 +678 ZFP36L2 ZFP36 ring finger protein like 2 Novel U 0.0005346767901848099 -0.291027698373426 1.0 15099 +114112 TXNRD3 thioredoxin reductase 3 Novel U 0.0005345623382043774 -0.29102868514342745 1.0 15100 +10455 ECI2 enoyl-CoA delta isomerase 2 Novel U 0.0005345240319542027 -0.2910290154082109 1.0 15101 +57054 DAZ3 deleted in azoospermia 3 Novel N 0.0005343949517888745 -0.2910301282979525 1.0 15102 +219844 HYLS1 HYLS1 centriolar and ciliogenesis associated Novel U 0.0005339305179165868 -0.29103413250487914 1.0 15103 +9087 TMSB4Y thymosin beta 4 Y-linked Novel U 0.0005333271504847308 -0.2910393345545015 1.0 15104 +55762 ZNF701 zinc finger protein 701 Novel U 0.0005330249633889735 -0.29104193991929966 1.0 15105 +23509 POFUT1 protein O-fucosyltransferase 1 Novel U 0.0005328636162886367 -0.2910433310046948 1.0 15106 +25979 DHRS7B dehydrogenase/reductase 7B Novel N 0.0005325530130103625 -0.29104600893124694 1.0 15107 +84671 ZNF347 zinc finger protein 347 Novel U 0.0005325087203686762 -0.29104639080886874 1.0 15108 +94059 LENG9 leukocyte receptor cluster member 9 Novel U 0.0005322621027671968 -0.2910485170704681 1.0 15109 +5976 UPF1 UPF1 RNA helicase and ATPase Novel U 0.0005321805998886412 -0.2910492197633816 1.0 15110 +2016 EMX1 empty spiracles homeobox 1 Novel U 0.000532076673064104 -0.2910501157887051 1.0 15111 +653486 SCGB1C2 secretoglobin family 1C member 2 Novel U 0.0005320034818638631 -0.291050746820868 1.0 15112 +54904 NSD3 nuclear receptor binding SET domain protein 3 Novel N 0.0005319101257061328 -0.29105155170913255 1.0 15113 +7276 TTR transthyretin Novel U 0.0005315194244940295 -0.291054920215594 1.0 15114 +199920 FYB2 FYN binding protein 2 Novel U 0.0005313733887722539 -0.29105617929096206 1.0 15115 +81875 ISG20L2 interferon stimulated exonuclease gene 20 like 2 Novel U 0.000531058985293822 -0.29105888998167867 1.0 15116 +54967 CT55 cancer/testis antigen 55 Novel N 0.0005309691144395445 -0.2910596648207217 1.0 15117 +7008 TEF TEF transcription factor, PAR bZIP family member Novel U 0.0005309502602536588 -0.29105982737575103 1.0 15118 +79817 MOB3B MOB kinase activator 3B Novel N 0.0005308742090636612 -0.29106048306587173 1.0 15119 +646103 TAF11L3 TATA-box binding protein associated factor 11 like 3 Novel U 0.0005308444177001693 -0.2910607399179042 1.0 15120 +120376 POU2AF3 POU class 2 homeobox associating factor 3 Novel U 0.0005307001199142883 -0.29106198400932 1.0 15121 +55904 KMT2E lysine methyltransferase 2E (inactive) Novel U 0.000530420592426475 -0.2910643940099028 1.0 15122 +57634 EP400 E1A binding protein p400 Novel N 0.0005299342825004668 -0.29106858682547976 1.0 15123 +64965 MRPS9 mitochondrial ribosomal protein S9 Novel U 0.000529926676519465 -0.29106865240192376 1.0 15124 +51605 TRMT6 tRNA methyltransferase 6 non-catalytic subunit Novel N 0.0005294141785322742 -0.2910730710029618 1.0 15125 +10761 PLAC1 placenta enriched 1 Novel U 0.0005291360792294279 -0.2910754686901702 1.0 15126 +64881 PCDH20 protocadherin 20 Novel U 0.0005290416980821666 -0.2910762824155812 1.0 15127 +51714 SELENOT selenoprotein T Novel N 0.0005290147809341216 -0.2910765144870064 1.0 15128 +56099 PCDHGB7 protocadherin gamma subfamily B, 7 Novel U 0.0005289215005283436 -0.2910773187221607 1.0 15129 +60529 ALX4 ALX homeobox 4 Novel U 0.0005287897384535342 -0.2910784547345062 1.0 15130 +27304 MOCS3 molybdenum cofactor synthesis 3 Novel N 0.0005286471093684666 -0.29107968443889354 1.0 15131 +10438 C1D C1D nuclear receptor corepressor Novel N 0.0005286107478210874 -0.2910799979370438 1.0 15132 +84232 MAF1 MAF1 homolog, negative regulator of RNA polymerase III Novel N 0.0005285830468128917 -0.29108023676667166 1.0 15133 +51035 UBXN1 UBX domain protein 1 Novel U 0.0005285605797195745 -0.29108043047108484 1.0 15134 +1669 DEFA4 defensin alpha 4 Novel N 0.0005282038529680959 -0.2910835060601286 1.0 15135 +107984345 SMIM38 small integral membrane protein 38 Novel U 0.0005282035335158635 -0.2910835088143482 1.0 15136 +374920 ZSWIM9 zinc finger SWIM-type containing 9 Novel U 0.0005280707095382466 -0.29108465398209526 1.0 15137 +90835 CFAP119 cilia and flagella associated protein 119 Novel U 0.0005280588142940164 -0.2910847565392561 1.0 15138 +84189 SLITRK6 SLIT and NTRK like family member 6 Novel U 0.0005279730833539115 -0.2910854956852243 1.0 15139 +55780 ERMARD ER membrane associated RNA degradation Novel U 0.0005277789486760026 -0.2910871694550941 1.0 15140 +11001 SLC27A2 solute carrier family 27 member 2 Novel U 0.0005270384805623283 -0.29109355354490035 1.0 15141 +55007 FAM118A family with sequence similarity 118 member A Novel U 0.0005269428208651292 -0.2910943782935782 1.0 15142 +27297 CRCP CGRP receptor component Novel N 0.0005269209718692294 -0.29109456666894423 1.0 15143 +5350 PLN phospholamban Novel U 0.0005268488118385058 -0.29109518881067875 1.0 15144 +394263 MUC21 mucin 21, cell surface associated Novel U 0.0005268457904128374 -0.29109521486048756 1.0 15145 +8796 SCEL sciellin Novel U 0.0005267183306455988 -0.29109631377965195 1.0 15146 +79660 PPP1R3B protein phosphatase 1 regulatory subunit 3B Novel U 0.0005261933110346175 -0.29110084033830397 1.0 15147 +5967 REG1A regenerating family member 1 alpha Novel U 0.0005261024698144728 -0.2911016235435451 1.0 15148 +10286 BCAS2 BCAS2 pre-mRNA processing factor Novel N 0.0005253051230431439 -0.29110849802375677 1.0 15149 +60484 HAPLN2 hyaluronan and proteoglycan link protein 2 Novel U 0.0005252102041655367 -0.29110931638531445 1.0 15150 +90441 ZNF622 zinc finger protein 622 Novel U 0.0005247551294506707 -0.2911132399004457 1.0 15151 +1470 CST2 cystatin SA Novel N 0.0005246716753786106 -0.2911139594159534 1.0 15152 +1833 EPYC epiphycan Novel N 0.0005246505975316409 -0.29111414114270906 1.0 15153 +729857 RGPD2 RANBP2 like and GRIP domain containing 2 Novel U 0.0005244222956312628 -0.29111610949193034 1.0 15154 +57110 PLAAT1 phospholipase A and acyltransferase 1 Novel U 0.000524344812976272 -0.29111677752370474 1.0 15155 +10780 ZNF234 zinc finger protein 234 Novel U 0.0005242462214475426 -0.2911176275497382 1.0 15156 +286006 LSMEM1 leucine rich single-pass membrane protein 1 Novel U 0.0005238439162917532 -0.29112109610185627 1.0 15157 +65975 STK33 serine/threonine kinase 33 Novel U 0.0005237769958082659 -0.2911216730698155 1.0 15158 +140606 SELENOM selenoprotein M Novel U 0.0005234206800985459 -0.29112474511498293 1.0 15159 +27233 SULT1C4 sulfotransferase family 1C member 4 Novel N 0.0005232573983684769 -0.2911261528801644 1.0 15160 +84988 PPP1R16A protein phosphatase 1 regulatory subunit 16A Novel U 0.0005229810341681625 -0.29112853560784907 1.0 15161 +8814 CDKL1 cyclin dependent kinase like 1 Novel N 0.0005228907477950334 -0.29112931402936876 1.0 15162 +84077 C3orf20 chromosome 3 open reading frame 20 Novel U 0.0005225211782540512 -0.2911325003450192 1.0 15163 +9726 ZNF646 zinc finger protein 646 Novel U 0.0005224850404764229 -0.291132811913895 1.0 15164 +51495 HACD3 3-hydroxyacyl-CoA dehydratase 3 Novel N 0.0005218285401245095 -0.29113847205931787 1.0 15165 +6474 SHOX2 SHOX homeobox 2 Novel N 0.0005217764276121987 -0.29113892135747466 1.0 15166 +159296 NKX2-3 NK2 homeobox 3 Novel U 0.0005216345743172377 -0.2911401443732367 1.0 15167 +399664 MEX3D mex-3 RNA binding family member D Novel U 0.0005214981630922522 -0.29114132046913443 1.0 15168 +7652 ZNF99 zinc finger protein 99 Novel U 0.0005211016780727003 -0.29114473884181635 1.0 15169 +84752 B3GNT9 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 9 Novel U 0.0005209108352306201 -0.2911463842304836 1.0 15170 +51611 DPH5 diphthamide biosynthesis 5 Novel U 0.0005208997729788449 -0.291146479605838 1.0 15171 +7378 UPP1 uridine phosphorylase 1 Novel N 0.0005208242863342101 -0.2911471304286211 1.0 15172 +26257 NKX2-8 NK2 homeobox 8 Novel N 0.0005206060091922796 -0.2911490123474384 1.0 15173 +5250 SLC25A3 solute carrier family 25 member 3 Novel N 0.0005205273878772139 -0.29114969019639203 1.0 15174 +729528 PRAMEF14 PRAME family member 14 Novel U 0.0005203356602622244 -0.29115134321330094 1.0 15175 +55314 TMEM144 transmembrane protein 144 Novel U 0.0005202795443328525 -0.2911518270276962 1.0 15176 +10143 CLEC3A C-type lectin domain family 3 member A Novel N 0.0005202751776649494 -0.29115186467577253 1.0 15177 +11243 PMF1 polyamine modulated factor 1 Novel U 0.0005200486435940182 -0.29115381778330857 1.0 15178 +55133 SRBD1 S1 RNA binding domain 1 Novel U 0.0005196620407423443 -0.2911571509549588 1.0 15179 +4706 NDUFAB1 NADH:ubiquinone oxidoreductase subunit AB1 Novel N 0.0005193625983786111 -0.29115973265551626 1.0 15180 +56142 PCDHA6 protocadherin alpha 6 Novel U 0.0005193405231092191 -0.29115992298174326 1.0 15181 +7050 TGIF1 TGFB induced factor homeobox 1 Novel U 0.000519267176596353 -0.2911605553529642 1.0 15182 +1370 CPN2 carboxypeptidase N subunit 2 Novel U 0.0005190213700470893 -0.29116267462191914 1.0 15183 +55231 CCDC87 coiled-coil domain containing 87 Novel U 0.000519016600695232 -0.29116271574181346 1.0 15184 +55100 WDR70 WD repeat domain 70 Novel U 0.0005188562409549684 -0.29116409831449175 1.0 15185 +84316 NAA38 N-alpha-acetyltransferase 38, NatC auxiliary subunit Novel N 0.0005187819028492463 -0.29116473923492325 1.0 15186 +219854 TMEM218 transmembrane protein 218 Novel U 0.0005187666331105552 -0.2911648708859442 1.0 15187 +11023 VAX1 ventral anterior homeobox 1 Novel N 0.0005185704232285786 -0.29116656254758944 1.0 15188 +374907 B3GNT8 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 8 Novel N 0.000518494768500591 -0.2911672148195358 1.0 15189 +129868 TRIM43 tripartite motif containing 43 Novel U 0.0005182877581749575 -0.2911689995993058 1.0 15190 +1787 TRDMT1 tRNA aspartic acid methyltransferase 1 Novel N 0.0005180682120638388 -0.2911708924587877 1.0 15191 +10020 GNE glucosamine (UDP-N-acetyl)-2-epimerase/N-acetylmannosamine kinase Novel U 0.0005180640712438202 -0.29117092815967255 1.0 15192 +144347 RFLNA refilin A Novel U 0.0005179961479881484 -0.2911715137732272 1.0 15193 +375190 FAM228B family with sequence similarity 228 member B Novel U 0.0005179131922928096 -0.29117222899188305 1.0 15194 +283677 REC114 REC114 meiotic recombination protein Novel N 0.0005178614839956673 -0.2911726748050202 1.0 15195 +29896 TRA2A transformer 2 alpha homolog Novel N 0.0005178223005307651 -0.291173012632881 1.0 15196 +6913 TBX15 T-box transcription factor 15 Novel U 0.0005177423736191233 -0.2911737017382893 1.0 15197 +3887 KRT81 keratin 81 Novel U 0.0005175305930658439 -0.2911755276455045 1.0 15198 +641371 ACOT1 acyl-CoA thioesterase 1 Novel N 0.0005173742561288933 -0.2911768755348019 1.0 15199 +25936 NSL1 NSL1 component of MIS12 kinetochore complex Novel U 0.0005172051056565459 -0.291178333898486 1.0 15200 +375686 SPATC1 spermatogenesis and centriole associated 1 Novel U 0.0005171196826740153 -0.2911790703893381 1.0 15201 +3615 IMPDH2 inosine monophosphate dehydrogenase 2 Novel U 0.000516962241299495 -0.29118042780075876 1.0 15202 +4670 HNRNPM heterogeneous nuclear ribonucleoprotein M Novel N 0.0005166425692307644 -0.29118318391565096 1.0 15203 +23360 FNBP4 formin binding protein 4 Novel U 0.0005164188562390182 -0.29118511270070435 1.0 15204 +153643 FAM81B family with sequence similarity 81 member B Novel U 0.0005163093617179516 -0.29118605672900594 1.0 15205 +7386 UQCRFS1 ubiquinol-cytochrome c reductase, Rieske iron-sulfur polypeptide 1 Novel N 0.0005162733634361676 -0.29118636709519125 1.0 15206 +146212 KCTD19 potassium channel tetramerization domain containing 19 Novel U 0.0005160441661802584 -0.2911883431638943 1.0 15207 +55663 ZNF446 zinc finger protein 446 Novel U 0.0005159784994717988 -0.29118890932218844 1.0 15208 +104 ADARB1 adenosine deaminase RNA specific B1 Novel U 0.0005159117189656934 -0.2911894850833055 1.0 15209 +4490 MT1B metallothionein 1B Novel U 0.000515826756037932 -0.29119021760770597 1.0 15210 +56919 DHX33 DEAH-box helicase 33 Novel U 0.0005158053758674805 -0.2911904019410023 1.0 15211 +341350 OVCH1 ovochymase 1 Novel U 0.0005147256067343284 -0.2911997113805158 1.0 15212 +8819 SAP30 Sin3A associated protein 30 Novel U 0.0005143233768096095 -0.2912031792840146 1.0 15213 +84893 FBH1 F-box DNA helicase 1 Novel N 0.0005143035289251346 -0.2912033504064095 1.0 15214 +55251 PCMTD2 protein-L-isoaspartate (D-aspartate) O-methyltransferase domain containing 2 Novel U 0.0005142719600270741 -0.29120362258380184 1.0 15215 +80129 CCDC170 coiled-coil domain containing 170 Novel N 0.0005141738795896631 -0.2912044682033621 1.0 15216 +92667 MGME1 mitochondrial genome maintenance exonuclease 1 Novel U 0.0005140533243890365 -0.29120550759346303 1.0 15217 +23142 DCUN1D4 defective in cullin neddylation 1 domain containing 4 Novel N 0.0005138929736757959 -0.29120689008831313 1.0 15218 +644591 PPIAL4G peptidylprolyl isomerase A like 4G Novel U 0.0005136986245894904 -0.29120856570674664 1.0 15219 +123263 MTFMT mitochondrial methionyl-tRNA formyltransferase Novel N 0.0005136025781159491 -0.291209393790092 1.0 15220 +84102 SLC41A2 solute carrier family 41 member 2 Novel N 0.0005135105043785408 -0.2912101876217203 1.0 15221 +25929 GEMIN5 gem nuclear organelle associated protein 5 Novel N 0.0005134524079196516 -0.29121068851163584 1.0 15222 +79091 METTL22 methyltransferase 22, Kin17 lysine Novel N 0.0005133241397628526 -0.29121179440048806 1.0 15223 +8050 PDHX pyruvate dehydrogenase complex component X Novel N 0.0005130203615536054 -0.29121441348338056 1.0 15224 +10885 WDR3 WD repeat domain 3 Novel N 0.000512905734343465 -0.291215401764159 1.0 15225 +25994 HIGD1A HIG1 hypoxia inducible domain family member 1A Novel N 0.0005128683016483472 -0.2912157244974177 1.0 15226 +7756 ZNF207 zinc finger protein 207 Novel U 0.0005127481657988025 -0.2912167602720017 1.0 15227 +51444 RNF138 ring finger protein 138 Novel N 0.0005125627877831011 -0.29121835854460587 1.0 15228 +36 ACADSB acyl-CoA dehydrogenase short/branched chain Novel N 0.0005125091413691923 -0.29121882106759345 1.0 15229 +5136 PDE1A phosphodiesterase 1A Novel U 0.0005119498417748811 -0.2912236431777866 1.0 15230 +164781 DAW1 dynein assembly factor with WD repeats 1 Novel N 0.0005118646184549281 -0.291224377947209 1.0 15231 +57609 DIP2B disco interacting protein 2 homolog B Novel N 0.0005117354373154122 -0.2912254917075191 1.0 15232 +143282 FGFBP3 fibroblast growth factor binding protein 3 Novel N 0.0005117277004400542 -0.29122555841249426 1.0 15233 +440695 ETV3L ETS variant transcription factor 3 like Novel U 0.0005112928104616573 -0.29122930790099566 1.0 15234 +5860 QDPR quinoid dihydropteridine reductase Novel U 0.0005111816227328869 -0.29123026652761674 1.0 15235 +10745 PHTF1 putative homeodomain transcription factor 1 Novel U 0.0005111700499087694 -0.2912303663049699 1.0 15236 +153527 ZMAT2 zinc finger matrin-type 2 Novel N 0.0005111280317812878 -0.29123072857242527 1.0 15237 +54757 FAM20A FAM20A golgi associated secretory pathway pseudokinase Novel U 0.0005109254505179434 -0.2912324751661737 1.0 15238 +81706 PPP1R14C protein phosphatase 1 regulatory inhibitor subunit 14C Novel U 0.0005108397116231039 -0.29123321438072514 1.0 15239 +390928 ACP7 acid phosphatase 7, tartrate resistant (putative) Novel U 0.0005107585399249325 -0.2912339142183026 1.0 15240 +51218 GLRX5 glutaredoxin 5 Novel N 0.000510713160728357 -0.29123430546386864 1.0 15241 +8446 DUSP11 dual specificity phosphatase 11 Novel N 0.0005105535247069381 -0.2912356817968642 1.0 15242 +201562 HACD2 3-hydroxyacyl-CoA dehydratase 2 Novel N 0.0005104920927617495 -0.29123621144432343 1.0 15243 +220388 CCDC89 coiled-coil domain containing 89 Novel U 0.0005104638966417044 -0.29123645454265445 1.0 15244 +644070 GSG1L2 GSG1 like 2 Novel U 0.0005101101989450301 -0.2912395040161133 1.0 15245 +55036 CCDC40 coiled-coil domain 40 molecular ruler complex subunit Novel U 0.0005098542665274334 -0.29124171058721077 1.0 15246 +2307 FOXS1 forkhead box S1 Novel U 0.0005095798074676584 -0.29124407688935583 1.0 15247 +474354 LRRC18 leucine rich repeat containing 18 Novel U 0.0005092333892023041 -0.29124706360178226 1.0 15248 +11182 SLC2A6 solute carrier family 2 member 6 Novel N 0.0005091678250324434 -0.29124762887601996 1.0 15249 +4603 MYBL1 MYB proto-oncogene like 1 Novel N 0.0005087443018462641 -0.29125128036351233 1.0 15250 +3621 ING1 inhibitor of growth family member 1 Novel U 0.0005085837876503998 -0.29125266426785956 1.0 15251 +15 AANAT aralkylamine N-acetyltransferase Novel N 0.0005085004715476446 -0.2912533825938381 1.0 15252 +342346 C16orf96 chromosome 16 open reading frame 96 Novel U 0.0005084788675462766 -0.2912535688569362 1.0 15253 +100131187 TSTD1 thiosulfate sulfurtransferase like domain containing 1 Novel N 0.0005080985001197232 -0.2912568482686565 1.0 15254 +79581 SLC52A2 solute carrier family 52 member 2 Novel N 0.000508063147200478 -0.2912571530707232 1.0 15255 +8034 SLC25A16 solute carrier family 25 member 16 Novel N 0.0005080083925042159 -0.29125762514898257 1.0 15256 +166979 CDC20B cell division cycle 20B Novel N 0.0005078760679273106 -0.2912587660110493 1.0 15257 +54517 PUS7 pseudouridine synthase 7 Novel U 0.0005077267066925906 -0.2912600537579737 1.0 15258 +6166 RPL36AL ribosomal protein L36a like Novel U 0.0005076938098125888 -0.2912603373848206 1.0 15259 +644596 SMIM10L2B small integral membrane protein 10 like 2B Novel U 0.0005076815792187816 -0.291260442833263 1.0 15260 +4848 CNOT2 CCR4-NOT transcription complex subunit 2 Novel U 0.0005075193947357455 -0.29126184113831594 1.0 15261 +28513 CDH19 cadherin 19 Novel U 0.000507219387385402 -0.29126442771001526 1.0 15262 +23275 POFUT2 protein O-fucosyltransferase 2 Novel U 0.0005071823126903053 -0.2912647473567072 1.0 15263 +79736 TEFM transcription elongation factor, mitochondrial Novel N 0.0005070508625736383 -0.291265880679445 1.0 15264 +171389 NLRP6 NLR family pyrin domain containing 6 Novel U 0.0005070154672032047 -0.29126618584751285 1.0 15265 +2673 GFPT1 glutamine--fructose-6-phosphate transaminase 1 Novel U 0.0005068937197513468 -0.2912672355168396 1.0 15266 +167410 LIX1 limb and CNS expressed 1 Novel U 0.0005067656662987265 -0.2912683395545779 1.0 15267 +275 AMT aminomethyltransferase Novel N 0.0005066370377577753 -0.2912694485505521 1.0 15268 +342897 NCCRP1 NCCRP1, F-box associated domain containing Novel N 0.0005065939429548645 -0.29126982010077396 1.0 15269 +9277 WDR46 WD repeat domain 46 Novel N 0.0005064007022617351 -0.2912714861629803 1.0 15270 +50809 HP1BP3 heterochromatin protein 1 binding protein 3 Novel U 0.0005059763245220976 -0.2912751450181714 1.0 15271 +79973 ZNF442 zinc finger protein 442 Novel U 0.0005059116794487702 -0.2912757023682396 1.0 15272 +7381 UQCRB ubiquinol-cytochrome c reductase binding protein Novel N 0.0005055229312879219 -0.29127905403609 1.0 15273 +60677 CELF6 CUGBP Elav-like family member 6 Novel N 0.0005055126712907905 -0.29127914249465003 1.0 15274 +375748 ERCC6L2 ERCC excision repair 6 like 2 Novel U 0.0005054947267242298 -0.29127929720721946 1.0 15275 +221092 HNRNPUL2 heterogeneous nuclear ribonucleoprotein U like 2 Novel U 0.0005053242727828563 -0.29128076680901527 1.0 15276 +644100 ARL14EPL ADP ribosylation factor like GTPase 14 effector protein like Novel U 0.0005052352900480446 -0.2912815339909637 1.0 15277 +93979 CPA5 carboxypeptidase A5 Novel U 0.0005051367596375489 -0.29128238349005436 1.0 15278 +148003 LGALS16 galectin 16 Novel N 0.0005048190977531966 -0.29128512227375114 1.0 15279 +11076 TPPP tubulin polymerization promoting protein Novel U 0.0005046003580088298 -0.29128700818098524 1.0 15280 +114108587 ATF7-NPFF ATF7-NPFF readthrough Novel U 0.0005045902991782347 -0.29128709490514887 1.0 15281 +2958 GTF2A2 general transcription factor IIA subunit 2 Novel N 0.0005045090348613933 -0.2912877955412562 1.0 15282 +56339 METTL3 methyltransferase 3, N6-adenosine-methyltransferase complex catalytic subunit Novel U 0.0005044850676514052 -0.2912880021792169 1.0 15283 +85014 TMEM141 transmembrane protein 141 Novel U 0.0005043300216444693 -0.2912893389385102 1.0 15284 +3930 LBR lamin B receptor Novel U 0.0005040220565061551 -0.29129199411982576 1.0 15285 +196374 KRT78 keratin 78 Novel U 0.0005038702256778635 -0.2912933031588313 1.0 15286 +1106 CHD2 chromodomain helicase DNA binding protein 2 Novel U 0.0005038351662723904 -0.2912936054303119 1.0 15287 +257236 CFAP184 cilia and flagella associated protein 184 Novel U 0.0005038172395514837 -0.2912937599890216 1.0 15288 +27231 NMRK2 nicotinamide riboside kinase 2 Novel N 0.0005036826608566117 -0.29129492028540466 1.0 15289 +347454 SOWAHD sosondowah ankyrin repeat domain family member D Novel U 0.0005034578849259163 -0.2912968582347928 1.0 15290 +132954 PDCL2 phosducin like 2 Novel U 0.0005034513420310763 -0.29129691464563273 1.0 15291 +728075 CT47A4 cancer/testis antigen family 47 member A4 Novel U 0.000503094743025849 -0.29129998913328736 1.0 15292 +51747 LUC7L3 LUC7 like 3 pre-mRNA splicing factor Novel N 0.0005030597726404232 -0.29130029063726437 1.0 15293 +27303 RBMS3 RNA binding motif single stranded interacting protein 3 Novel N 0.0005027992271909046 -0.2913025369805135 1.0 15294 +90381 TICRR TOPBP1 interacting checkpoint and replication regulator Novel N 0.000502685617469065 -0.2913035164888187 1.0 15295 +57716 PRX periaxin Novel N 0.0005026767922932478 -0.29130359257678784 1.0 15296 +57547 ZNF624 zinc finger protein 624 Novel U 0.0005026117687536131 -0.29130415318987685 1.0 15297 +115908 CTHRC1 collagen triple helix repeat containing 1 Novel U 0.0005024095223084485 -0.2913058968969252 1.0 15298 +7517 XRCC3 X-ray repair cross complementing 3 Novel U 0.0005021731616189145 -0.291307934726564 1.0 15299 +140883 ZNF280B zinc finger protein 280B Novel U 0.0005020898546167237 -0.29130865297408026 1.0 15300 +205860 TRIML2 tripartite motif family like 2 Novel U 0.0005018051642814457 -0.2913111074871562 1.0 15301 +728524 SPDYE8 speedy/RINGO cell cycle regulator family member E8 Novel U 0.0005011493286299773 -0.29131676190173494 1.0 15302 +122405565 SMIM44 small integral membrane protein 44 Novel U 0.0005011237133702096 -0.29131698274867723 1.0 15303 +219654 ZCCHC24 zinc finger CCHC-type containing 24 Novel U 0.000500508204997736 -0.2913222894737796 1.0 15304 +84948 TIGD5 tigger transposable element derived 5 Novel U 0.0005004087269836887 -0.29132314714281854 1.0 15305 +116285 ACSM1 acyl-CoA synthetase medium chain family member 1 Novel N 0.0005002686474136158 -0.2913243548660666 1.0 15306 +64207 IRF2BPL interferon regulatory factor 2 binding protein like Novel N 0.0005002181170505315 -0.2913247905234162 1.0 15307 +541465 CT45A6 cancer/testis antigen family 45 member A6 Novel U 0.0005001683897393011 -0.29132521925709814 1.0 15308 +135458 HUS1B HUS1 checkpoint clamp component B Novel U 0.0004997408876870097 -0.2913289050491582 1.0 15309 +253980 KCTD13 potassium channel tetramerization domain containing 13 Novel U 0.0004995141232696859 -0.29133086014267046 1.0 15310 +3204 HOXA7 homeobox A7 Novel U 0.0004993151579857269 -0.29133257556054953 1.0 15311 +23293 SMG6 SMG6 nonsense mediated mRNA decay factor Novel N 0.0004992457147417647 -0.2913331742789787 1.0 15312 +4144 MAT2A methionine adenosyltransferase 2A Novel U 0.0004990919240796962 -0.29133450021507223 1.0 15313 +26505 CNNM3 cyclin and CBS domain divalent metal cation transport mediator 3 Novel U 0.000498948186613894 -0.2913357394755795 1.0 15314 +375775 PNPLA7 patatin like phospholipase domain containing 7 Novel U 0.00049870694299189 -0.29133781940437004 1.0 15315 +7172 TPMT thiopurine S-methyltransferase Novel N 0.0004984994757353376 -0.2913396081236588 1.0 15316 +65993 MRPS34 mitochondrial ribosomal protein S34 Novel N 0.0004984747005788422 -0.29133982172748735 1.0 15317 +85456 TNKS1BP1 tankyrase 1 binding protein 1 Novel U 0.0004982713430578875 -0.2913415750138917 1.0 15318 +56130 PCDHB6 protocadherin beta 6 Novel U 0.0004982457290048572 -0.29134179585042985 1.0 15319 +7541 ZBTB14 zinc finger and BTB domain containing 14 Novel N 0.0004981785123950789 -0.29134237537149954 1.0 15320 +57591 MRTFA myocardin related transcription factor A Novel U 0.000497946640966584 -0.29134437449610145 1.0 15321 +57563 KLHL8 kelch like family member 8 Novel U 0.0004975221744523091 -0.2913480341166804 1.0 15322 +8891 EIF2B3 eukaryotic translation initiation factor 2B subunit gamma Novel U 0.0004973647878442347 -0.2913493910559215 1.0 15323 +11240 PADI2 peptidyl arginine deiminase 2 Novel U 0.0004973566507333676 -0.2913494612116049 1.0 15324 +55657 ZNF692 zinc finger protein 692 Novel N 0.000496708346901533 -0.2913550506891363 1.0 15325 +114335 CGB1 chorionic gonadotropin subunit beta 1 Novel U 0.0004963417144320749 -0.29135821168225357 1.0 15326 +84549 MAK16 MAK16 homolog Novel U 0.0004960974441268919 -0.29136031770618154 1.0 15327 +7554 ZNF8 zinc finger protein 8 Novel U 0.000496083342988985 -0.29136043928188354 1.0 15328 +1800 DPEP1 dipeptidase 1 Novel N 0.0004960307666930377 -0.2913608925786411 1.0 15329 +9775 EIF4A3 eukaryotic translation initiation factor 4A3 Novel U 0.000495774375826532 -0.291363103102345 1.0 15330 +64785 GINS3 GINS complex subunit 3 Novel U 0.0004957219787363364 -0.2913635548540453 1.0 15331 +723790 H2AC19 H2A clustered histone 19 Novel U 0.0004955265757601655 -0.29136523955879523 1.0 15332 +6558 SLC12A2 solute carrier family 12 member 2 Novel U 0.0004955259470980081 -0.29136524497892824 1.0 15333 +613212 CTXN3 cortexin 3 Novel U 0.0004954647233118857 -0.2913657728317037 1.0 15334 +1805 DPT dermatopontin Novel U 0.0004953308466343628 -0.29136692707550765 1.0 15335 +26301 GBGT1 globoside alpha-1,3-N-acetylgalactosaminyltransferase 1 (FORS blood group) Novel N 0.0004950839924990436 -0.29136905537642943 1.0 15336 +54969 HPF1 histone PARylation factor 1 Novel N 0.0004944993758537394 -0.2913740957624999 1.0 15337 +11321 GPN1 GPN-loop GTPase 1 Novel U 0.0004942423701369306 -0.2913763115872552 1.0 15338 +9767 JADE3 jade family PHD finger 3 Novel N 0.0004942245158230857 -0.29137646552169333 1.0 15339 +84691 GARIN1B golgi associated RAB2 interactor 1B Novel U 0.0004938055887957399 -0.2913800773825087 1.0 15340 +280 AMY2B amylase alpha 2B Novel U 0.0004937833924519332 -0.29138026875260237 1.0 15341 +56254 RNF20 ring finger protein 20 Novel U 0.0004937367706710519 -0.29138067071135054 1.0 15342 +7507 XPA XPA, DNA damage recognition and repair factor Novel U 0.0004936639715623333 -0.2913812983630202 1.0 15343 +148545 NBPF4 NBPF member 4 Novel U 0.000493581552910091 -0.29138200895145455 1.0 15344 +81931 ZNF93 zinc finger protein 93 Novel N 0.0004935237199236082 -0.2913825075697916 1.0 15345 +1180 CLCN1 chloride voltage-gated channel 1 Novel U 0.0004929732773333905 -0.2913872533176019 1.0 15346 +51692 CPSF3 cleavage and polyadenylation specific factor 3 Novel U 0.0004929392896132876 -0.2913875463493388 1.0 15347 +377007 KLHL30 kelch like family member 30 Novel U 0.0004927694059217454 -0.2913890110346148 1.0 15348 +57468 SLC12A5 solute carrier family 12 member 5 Novel U 0.0004927403340032477 -0.29138926168381235 1.0 15349 +100996717 NOTCH2NLC notch 2 N-terminal like C Novel U 0.0004926729746888886 -0.2913898424352373 1.0 15350 +1448 CSN3 casein kappa Novel U 0.0004926687447454 -0.2913898789045175 1.0 15351 +55902 ACSS2 acyl-CoA synthetase short chain family member 2 Novel N 0.0004924362233818672 -0.2913918836326607 1.0 15352 +100272147 CMC4 C-X9-C motif containing 4 Novel U 0.0004923221282466529 -0.2913928673260517 1.0 15353 +10586 MAB21L2 mab-21 like 2 Novel N 0.0004920401311686901 -0.29139529861868607 1.0 15354 +100316904 SAP25 Sin3A associated protein 25 Novel U 0.0004919714060180676 -0.29139589114593395 1.0 15355 +378708 CENPS centromere protein S Novel U 0.0004917833574284325 -0.2913975124434105 1.0 15356 +84074 QRICH2 glutamine rich 2 Novel N 0.0004917292013424024 -0.2913979793606354 1.0 15357 +57451 TENM2 teneurin transmembrane protein 2 Novel U 0.000491679638456792 -0.29139840667668987 1.0 15358 +57459 GATAD2B GATA zinc finger domain containing 2B Novel U 0.0004916752237590623 -0.29139844473886467 1.0 15359 +11283 CYP4F8 cytochrome P450 family 4 subfamily F member 8 Novel N 0.0004913465622248143 -0.2914012783581816 1.0 15360 +9061 PAPSS1 3'-phosphoadenosine 5'-phosphosulfate synthase 1 Novel N 0.0004911643413785644 -0.29140284941063543 1.0 15361 +100288814 CLDN34 claudin 34 Novel U 0.0004910280833353089 -0.2914040241858471 1.0 15362 +4514 COX3 cytochrome c oxidase subunit III Novel N 0.0004908072792110353 -0.29140592789153397 1.0 15363 +25809 TTLL1 TTL family tubulin polyglutamylase complex subunit L1 Novel N 0.0004907729803418937 -0.2914062236059028 1.0 15364 +114026 ZIM3 zinc finger imprinted 3 Novel U 0.0004905343869856935 -0.2914082806849113 1.0 15365 +3214 HOXB4 homeobox B4 Novel N 0.0004900524668346098 -0.2914124356531903 1.0 15366 +390927 ZNF793 zinc finger protein 793 Novel U 0.0004899600776042028 -0.29141323220490284 1.0 15367 +195814 SDR16C5 short chain dehydrogenase/reductase family 16C member 5 Novel N 0.0004899515408456642 -0.2914133058062264 1.0 15368 +7180 CRISP2 cysteine rich secretory protein 2 Novel U 0.0004898436308922122 -0.2914142361728702 1.0 15369 +9553 MRPL33 mitochondrial ribosomal protein L33 Novel U 0.000489806881267535 -0.2914145530169044 1.0 15370 +7782 SLC30A4 solute carrier family 30 member 4 Novel U 0.0004896679635064525 -0.2914157507233903 1.0 15371 +10196 PRMT3 protein arginine methyltransferase 3 Novel U 0.0004895727013587141 -0.2914165720445182 1.0 15372 +124944 C17orf49 chromosome 17 open reading frame 49 Novel U 0.0004895724641790901 -0.29141657408940846 1.0 15373 +57711 ZNF529 zinc finger protein 529 Novel U 0.000489283543495327 -0.29141906507525644 1.0 15374 +54475 NLE1 notchless homolog 1 Novel U 0.0004892423285386692 -0.2914194204180184 1.0 15375 +219402 MTIF3 mitochondrial translational initiation factor 3 Novel U 0.0004890415387495253 -0.29142115156622367 1.0 15376 +29035 HAPSTR1 HUWE1 associated protein modifying stress responses Novel N 0.000489037248871574 -0.2914211885522405 1.0 15377 +200159 SPMIP3 sperm microtubule inner protein 3 Novel U 0.000488836559283305 -0.2914229188365444 1.0 15378 +89958 SAPCD2 suppressor APC domain containing 2 Novel U 0.0004886790015050836 -0.2914242772515622 1.0 15379 +84889 SLC7A3 solute carrier family 7 member 3 Novel U 0.0004884925752500194 -0.2914258845617658 1.0 15380 +84883 AIFM2 apoptosis inducing factor mitochondria associated 2 Novel N 0.0004884752534849276 -0.2914260339047313 1.0 15381 +149281 NTMT2 N-terminal Xaa-Pro-Lys N-methyltransferase 2 Novel N 0.000488198204470486 -0.2914284225366741 1.0 15382 +4199 ME1 malic enzyme 1 Novel U 0.00048812365855177336 -0.2914290652488057 1.0 15383 +151056 PLB1 phospholipase B1 Novel U 0.00048788263742745834 -0.29143114325928904 1.0 15384 +402682 UFSP1 UFM1 specific peptidase 1 (inactive) Novel U 0.00048766575716872694 -0.29143301313460623 1.0 15385 +337974 KRTAP19-7 keratin associated protein 19-7 Novel U 0.00048757628832209583 -0.2914337845076623 1.0 15386 +2052 EPHX1 epoxide hydrolase 1 Novel N 0.00048748991913475796 -0.2914345291564031 1.0 15387 +392465 GLOD5 glyoxalase domain containing 5 Novel U 0.00048743348906858094 -0.29143501567919 1.0 15388 +79974 CPED1 cadherin like and PC-esterase domain containing 1 Novel U 0.0004873259149934305 -0.29143594314999377 1.0 15389 +11269 DDX19B DEAD-box helicase 19B Novel N 0.00048729553408450357 -0.2914362050849068 1.0 15390 +79009 DDX50 DExD-box helicase 50 Novel U 0.00048707236473356666 -0.2914381291828552 1.0 15391 +1152 CKB creatine kinase B Novel U 0.00048674164264303005 -0.2914409805676588 1.0 15392 +23632 CA14 carbonic anhydrase 14 Novel U 0.0004866003463578912 -0.2914421987810524 1.0 15393 +79365 BHLHE41 basic helix-loop-helix family member e41 Novel N 0.0004865398403323267 -0.29144272044551556 1.0 15394 +80010 RMI1 RecQ mediated genome instability 1 Novel N 0.00048643850513043103 -0.29144359412666065 1.0 15395 +55975 KLHL7 kelch like family member 7 Novel N 0.00048634065002789076 -0.29144443780345247 1.0 15396 +200958 MUC20 mucin 20, cell surface associated Novel U 0.0004862321363537667 -0.2914453733751915 1.0 15397 +27156 RSPH14 radial spoke head 14 homolog Novel U 0.0004861102327699795 -0.29144642439063995 1.0 15398 +374378 GALNT18 polypeptide N-acetylgalactosaminyltransferase 18 Novel N 0.00048597835232059737 -0.291447561423575 1.0 15399 +54995 OXSM 3-oxoacyl-ACP synthase, mitochondrial Novel N 0.0004855204015875197 -0.2914515097348564 1.0 15400 +22827 PUF60 poly(U) binding splicing factor 60 Novel U 0.00048548728446586384 -0.2914517952605594 1.0 15401 +283576 ZDHHC22 zinc finger DHHC-type palmitoyltransferase 22 Novel U 0.00048524406524403155 -0.29145389222236795 1.0 15402 +25900 IFFO1 intermediate filament family orphan 1 Novel U 0.00048523300026659155 -0.2914539876212222 1.0 15403 +80032 ZNF556 zinc finger protein 556 Novel U 0.00048506981670991007 -0.2914553945399828 1.0 15404 +124961 ZFP3 ZFP3 zinc finger protein Novel U 0.00048498311635861494 -0.29145614204391807 1.0 15405 +84717 HDGFL2 HDGF like 2 Novel N 0.0004848241317581315 -0.29145751276056137 1.0 15406 +1208 CLPS colipase Novel U 0.0004847426296098007 -0.29145821544717915 1.0 15407 +135152 B3GAT2 beta-1,3-glucuronyltransferase 2 Novel U 0.00048436785116627384 -0.2914614466723956 1.0 15408 +55144 LRRC8D leucine rich repeat containing 8 VRAC subunit D Novel U 0.00048428386396284843 -0.291462170784399 1.0 15409 +100128927 ZBTB42 zinc finger and BTB domain containing 42 Novel U 0.0004841965377805869 -0.2914629236840576 1.0 15410 +65110 UPF3A UPF3A regulator of nonsense mediated mRNA decay Novel N 0.00048404443900330424 -0.2914642350332375 1.0 15411 +7365 UGT2B10 UDP glucuronosyltransferase family 2 member B10 Novel N 0.00048395551255793766 -0.29146500172987555 1.0 15412 +353324 SPATA12 spermatogenesis associated 12 Novel U 0.0004839360438574645 -0.29146516958306184 1.0 15413 +134637 ADAT2 adenosine deaminase tRNA specific 2 Novel U 0.00048373879607368196 -0.29146687019317924 1.0 15414 +112488740 TAF11L14 TATA-box binding protein associated factor 11 like 14 Novel U 0.00048328593664518835 -0.2914707746087884 1.0 15415 +514 ATP5F1E ATP synthase F1 subunit epsilon Novel U 0.00048315979656537615 -0.29147186215001103 1.0 15416 +54988 ACSM5 acyl-CoA synthetase medium chain family member 5 Novel U 0.0004831413972170459 -0.29147202078356993 1.0 15417 +2561 GABRB2 gamma-aminobutyric acid type A receptor subunit beta2 Novel U 0.00048303295969051905 -0.2914729556987876 1.0 15418 +84872 ZC3H10 zinc finger CCCH-type containing 10 Novel N 0.00048285385223890883 -0.29147449990850427 1.0 15419 +2762 GMDS GDP-mannose 4,6-dehydratase Novel N 0.0004826460669663232 -0.29147629136963016 1.0 15420 +201501 ZBTB7C zinc finger and BTB domain containing 7C Novel N 0.0004823389306911055 -0.29147893940474134 1.0 15421 +55166 CENPQ centromere protein Q Novel U 0.0004821247888493907 -0.2914807856702638 1.0 15422 +79635 CCDC121 coiled-coil domain containing 121 Novel U 0.00048187097981758044 -0.2914829739341779 1.0 15423 +201965 RWDD4 RWD domain containing 4 Novel U 0.00048184884524381987 -0.29148316477170905 1.0 15424 +283742 FAM98B family with sequence similarity 98 member B Novel N 0.00048123914065042626 -0.2914884214584017 1.0 15425 +344657 LRRIQ4 leucine rich repeats and IQ motif containing 4 Novel U 0.0004811509674379114 -0.29148918166089627 1.0 15426 +79133 NDUFAF5 NADH:ubiquinone oxidoreductase complex assembly factor 5 Novel N 0.00048114835278150153 -0.2914892042036649 1.0 15427 +23091 ZC3H13 zinc finger CCCH-type containing 13 Novel U 0.000481043131007088 -0.29149011139365055 1.0 15428 +146754 DNAH2 dynein axonemal heavy chain 2 Novel N 0.00048089344769135765 -0.291491401917459 1.0 15429 +57821 CCDC181 coiled-coil domain containing 181 Novel U 0.00048059705330703937 -0.2914939573392693 1.0 15430 +201140 DHRS7C dehydrogenase/reductase 7C Novel U 0.0004803140401299874 -0.2914963973923996 1.0 15431 +5992 RFX4 regulatory factor X4 Novel N 0.00048017409516161707 -0.29149760395515295 1.0 15432 +145226 RDH12 retinol dehydrogenase 12 Novel N 0.0004799839609519128 -0.2914992432342084 1.0 15433 +339896 GADL1 glutamate decarboxylase like 1 Novel U 0.000479954632644779 -0.2914994960939104 1.0 15434 +124801 LSM12 LSM12 homolog Novel U 0.00047983227977033404 -0.2915005509830057 1.0 15435 +119180 LYZL2 lysozyme like 2 Novel U 0.0004798265302849351 -0.2915006005533119 1.0 15436 +9027 NAT8 N-acetyltransferase 8 (putative) Novel N 0.0004797975253444712 -0.2915008506250453 1.0 15437 +415 ARSL arylsulfatase L Novel U 0.00047918629366411434 -0.2915061204778151 1.0 15438 +5475 PPEF1 protein phosphatase with EF-hand domain 1 Novel N 0.00047875294850030937 -0.29150985664739715 1.0 15439 +4885 NPTX2 neuronal pentraxin 2 Novel U 0.0004784610882501404 -0.2915123729772884 1.0 15440 +64172 OSGEPL1 O-sialoglycoprotein endopeptidase like 1 Novel N 0.0004781469998368347 -0.2915150809516097 1.0 15441 +202865 C7orf33 chromosome 7 open reading frame 33 Novel U 0.00047811328982831663 -0.2915153715890022 1.0 15442 +51227 PIGP phosphatidylinositol glycan anchor biosynthesis class P Novel U 0.0004777999252119352 -0.29151807332296764 1.0 15443 +90113 VWA5B2 von Willebrand factor A domain containing 5B2 Novel U 0.00047764838356360775 -0.2915193798687519 1.0 15444 +506 ATP5F1B ATP synthase F1 subunit beta Novel U 0.00047742195092986746 -0.2915213321017274 1.0 15445 +169611 OLFML2A olfactomedin like 2A Novel U 0.0004773913204381563 -0.291521596188467 1.0 15446 +100128569 TEKTIP1 tektin bundle interacting protein 1 Novel U 0.000477349582829529 -0.2915219560373745 1.0 15447 +9128 PRPF4 pre-mRNA splicing tri-snRNP complex factor PRPF4 Novel N 0.0004772709680427577 -0.29152263383004323 1.0 15448 +400506 KNOP1 lysine rich nucleolar protein 1 Novel U 0.00047679471219507353 -0.29152673996242917 1.0 15449 +81543 LRRC3 leucine rich repeat containing 3 Novel U 0.0004767859509236767 -0.29152681549943393 1.0 15450 +170685 NUDT10 nudix hydrolase 10 Novel U 0.00047657879168839525 -0.2915286015630575 1.0 15451 +23416 KCNH3 potassium voltage-gated channel subfamily H member 3 Novel N 0.00047655152544109886 -0.29152883664430973 1.0 15452 +201254 CENPX centromere protein X Novel U 0.0004764278817818944 -0.2915299026621567 1.0 15453 +7355 SLC35A2 solute carrier family 35 member A2 Novel U 0.0004761865959528417 -0.29153198295484345 1.0 15454 +2528 FUT6 fucosyltransferase 6 Novel N 0.00047506529838133266 -0.2915416504398624 1.0 15455 +170394 PWWP2B PWWP domain containing 2B Novel U 0.0004749990315803956 -0.2915422217719705 1.0 15456 +7818 DAP3 death associated protein 3 Novel N 0.00047491300544186293 -0.2915429634630493 1.0 15457 +152518 NFXL1 nuclear transcription factor, X-box binding like 1 Novel U 0.0004748606947858656 -0.29154341446954035 1.0 15458 +348654 GEN1 GEN1 Holliday junction 5' flap endonuclease Novel U 0.00047453052130637835 -0.29154626112438714 1.0 15459 +57798 GATAD1 GATA zinc finger domain containing 1 Novel N 0.00047426292005186654 -0.2915485683006308 1.0 15460 +79637 ARMC7 armadillo repeat containing 7 Novel U 0.00047425887895244357 -0.2915486031417551 1.0 15461 +6584 SLC22A5 solute carrier family 22 member 5 Novel U 0.00047406990032617665 -0.2915502324577233 1.0 15462 +9704 DHX34 DExH-box helicase 34 Novel N 0.00047381593222869055 -0.29155242209305304 1.0 15463 +8848 TSC22D1 TSC22 domain family member 1 Novel N 0.0004737276394304208 -0.29155318332657953 1.0 15464 +22993 HMGXB3 HMG-box containing 3 Novel U 0.0004737056302184587 -0.29155337308327955 1.0 15465 +155054 ZNF425 zinc finger protein 425 Novel N 0.00047349036091227107 -0.2915552290694562 1.0 15466 +23382 AHCYL2 adenosylhomocysteinase like 2 Novel U 0.0004734677486853788 -0.2915554240251667 1.0 15467 +399888 FAM180B family with sequence similarity 180 member B Novel U 0.0004732659867348913 -0.29155716355505 1.0 15468 +7567 ZNF19 zinc finger protein 19 Novel U 0.0004730378617194999 -0.291559130379223 1.0 15469 +10233 LRRC23 leucine rich repeat containing 23 Novel U 0.0004730212715886662 -0.29155927341426147 1.0 15470 +116115 ZNF526 zinc finger protein 526 Novel U 0.00047292238336098236 -0.2915601259983426 1.0 15471 +91574 MTRFR mitochondrial translation release factor in rescue Novel U 0.00047288675915498784 -0.29156043313936075 1.0 15472 +79690 GAL3ST4 galactose-3-O-sulfotransferase 4 Novel N 0.0004727821698781824 -0.2915613348761453 1.0 15473 +653550 TP53TG3C TP53 target 3C Novel U 0.0004723739776227805 -0.29156485418503725 1.0 15474 +4825 NKX6-1 NK6 homeobox 1 Novel N 0.0004719309101578989 -0.2915686741773283 1.0 15475 +105180390 SPDYE13 speedy/RINGO cell cycle regulator family member E13 Novel U 0.00047160432436666366 -0.29157148990022325 1.0 15476 +344191 EVX2 even-skipped homeobox 2 Novel U 0.000471466186244267 -0.29157268088490274 1.0 15477 +729627 PRR23A proline rich 23A Novel U 0.00047109527605434474 -0.2915758787592187 1.0 15478 +706 TSPO translocator protein Novel U 0.00047085448639301694 -0.2915779547740989 1.0 15479 +64852 TUT1 terminal uridylyl transferase 1, U6 snRNA-specific Novel N 0.00047084245691655284 -0.29157805848856905 1.0 15480 +54876 DCAF16 DDB1 and CUL4 associated factor 16 Novel U 0.00047034651844809046 -0.2915823343184968 1.0 15481 +10795 ZNF268 zinc finger protein 268 Novel N 0.00047007134772565146 -0.2915847067563799 1.0 15482 +759 CA1 carbonic anhydrase 1 Novel U 0.0004700344426588431 -0.2915850249405886 1.0 15483 +2720 GLB1 galactosidase beta 1 Novel U 0.0004698202224871842 -0.29158687188144783 1.0 15484 +55687 TRMU tRNA mitochondrial 2-thiouridylase Novel U 0.0004697440812196395 -0.29158752834818963 1.0 15485 +9920 KBTBD11 kelch repeat and BTB domain containing 11 Novel U 0.00046967933521527446 -0.29158808656845436 1.0 15486 +150709 ANKAR ankyrin and armadillo repeat containing Novel U 0.00046959643248458603 -0.2915888013304652 1.0 15487 +6564 SLC15A1 solute carrier family 15 member 1 Novel U 0.00046924557693121143 -0.29159182629983305 1.0 15488 +121601 ANO4 anoctamin 4 Novel N 0.0004691939258252112 -0.29159227161988566 1.0 15489 +8732 RNGTT RNA guanylyltransferase and 5'-phosphatase Novel N 0.0004691922660796067 -0.291592285929705 1.0 15490 +388969 C2orf68 chromosome 2 open reading frame 68 Novel U 0.00046841200415948355 -0.29159901310955033 1.0 15491 +23132 RAD54L2 RAD54 like 2 Novel U 0.0004683645013933678 -0.291599422663884 1.0 15492 +109703458 HTD2 hydroxyacyl-thioester dehydratase type 2 Novel N 0.0004683392974336772 -0.2915996399647227 1.0 15493 +30832 ZNF354C zinc finger protein 354C Novel U 0.0004679196217003406 -0.29160325828065237 1.0 15494 +8659 ALDH4A1 aldehyde dehydrogenase 4 family member A1 Novel U 0.00046760521392866277 -0.29160596900838404 1.0 15495 +8092 ALX1 ALX homeobox 1 Novel U 0.00046735628262490415 -0.2916081152180174 1.0 15496 +57489 ODF2L outer dense fiber of sperm tails 2 like Novel U 0.00046706767517692293 -0.29161060350324214 1.0 15497 +3078 CFHR1 complement factor H related 1 Novel U 0.00046676579801053456 -0.29161320619592407 1.0 15498 +6530 SLC6A2 solute carrier family 6 member 2 Novel N 0.0004667034786518098 -0.2916137434943916 1.0 15499 +6451 SH3BGRL SH3 domain binding glutamate rich protein like Novel U 0.00046668280298334844 -0.29161392175368706 1.0 15500 +342977 NANOS3 nanos C2HC-type zinc finger 3 Novel N 0.00046659490168179447 -0.2916146796118485 1.0 15501 +57129 MRPL47 mitochondrial ribosomal protein L47 Novel U 0.0004663866536929629 -0.2916164750623724 1.0 15502 +2073 ERCC5 ERCC excision repair 5, endonuclease Novel U 0.0004662062758757795 -0.2916180302247929 1.0 15503 +60686 C14orf93 chromosome 14 open reading frame 93 Novel U 0.0004661673322046283 -0.2916183659852253 1.0 15504 +7031 TFF1 trefoil factor 1 Novel N 0.0004660798157410536 -0.2916191205254312 1.0 15505 +200172 SLFNL1 schlafen like 1 Novel U 0.0004660270132918356 -0.29161957577201314 1.0 15506 +905 CCNT2 cyclin T2 Novel U 0.00046584041622296904 -0.2916211845549212 1.0 15507 +84750 FUT10 fucosyltransferase 10 Novel N 0.00046582304253563943 -0.2916213343455443 1.0 15508 +57153 SLC44A2 solute carrier family 44 member 2 (CTL2 blood group) Novel U 0.00046577332466315904 -0.2916217629978482 1.0 15509 +26156 RSL1D1 ribosomal L1 domain containing 1 Novel N 0.0004655734218100935 -0.2916234864991617 1.0 15510 +2713 GK3 glycerol kinase 3 Novel U 0.0004655505840817401 -0.2916236833990768 1.0 15511 +57526 PCDH19 protocadherin 19 Novel U 0.000465034091538671 -0.29162813643995505 1.0 15512 +92906 HNRNPLL heterogeneous nuclear ribonucleoprotein L like Novel N 0.0004647420551300896 -0.2916306542886302 1.0 15513 +23173 METAP1 methionyl aminopeptidase 1 Novel N 0.00046385894023585894 -0.2916382682353888 1.0 15514 +390259 BSX brain specific homeobox Novel U 0.0004638399734702874 -0.29163843176104576 1.0 15515 +2961 GTF2E2 general transcription factor IIE subunit 2 Novel U 0.00046364500999678747 -0.29164011267653794 1.0 15516 +80309 SPHKAP SPHK1 interactor, AKAP domain containing Novel U 0.0004628224558056201 -0.29164720448742065 1.0 15517 +57115 PGLYRP4 peptidoglycan recognition protein 4 Novel U 0.00046267249909618004 -0.29164849736834614 1.0 15518 +284346 ZNF575 zinc finger protein 575 Novel U 0.0004626216782765966 -0.2916489355299229 1.0 15519 +3848 KRT1 keratin 1 Novel U 0.00046238874258075247 -0.2916509438303127 1.0 15520 +440836 CIMAP1B ciliary microtubule associated protein 1B Novel U 0.00046214315634215394 -0.29165306119981643 1.0 15521 +79724 ZNF768 zinc finger protein 768 Novel U 0.00046206158824555637 -0.29165376445502 1.0 15522 +8505 PARG poly(ADP-ribose) glycohydrolase Novel N 0.0004620134433712746 -0.29165417954541406 1.0 15523 +56171 DNAH7 dynein axonemal heavy chain 7 Novel N 0.000461673131584198 -0.29165711360965085 1.0 15524 +100130348 TMEM262 transmembrane protein 262 Novel U 0.00046159573050277126 -0.29165778093812295 1.0 15525 +25980 AAR2 AAR2 splicing factor Novel U 0.00046159550169702076 -0.2916577829108162 1.0 15526 +2950 GSTP1 glutathione S-transferase pi 1 Novel U 0.0004614226972494262 -0.2916592727779583 1.0 15527 +80315 CPEB4 cytoplasmic polyadenylation element binding protein 4 Novel U 0.00046122831236385006 -0.2916609487050422 1.0 15528 +138311 DIPK1B divergent protein kinase domain 1B Novel U 0.00046108348396159464 -0.29166219737127025 1.0 15529 +10039 PARP3 poly(ADP-ribose) polymerase family member 3 Novel U 0.0004610171858126754 -0.291662768973651 1.0 15530 +11086 ADAM29 ADAM metallopeptidase domain 29 Novel N 0.00046101385370916307 -0.29166279770202935 1.0 15531 +347252 IGFBPL1 insulin like growth factor binding protein like 1 Novel U 0.0004607926811473177 -0.2916647045842723 1.0 15532 +7512 XPNPEP2 X-prolyl aminopeptidase 2 Novel U 0.0004607437423618488 -0.29166512651952603 1.0 15533 +56676 ASCL3 achaete-scute family bHLH transcription factor 3 Novel U 0.0004606859995439504 -0.2916656243604571 1.0 15534 +9401 RECQL4 RecQ like helicase 4 Novel U 0.00046062605624707173 -0.2916661411732455 1.0 15535 +25920 NELFB negative elongation factor complex member B Novel N 0.00046055443243414704 -0.29166675869187403 1.0 15536 +54825 CDHR2 cadherin related family member 2 Novel U 0.0004603810447580325 -0.2916682535874342 1.0 15537 +4815 NINJ2 ninjurin 2 Novel N 0.0004602284035781752 -0.2916695696130433 1.0 15538 +81494 CFHR5 complement factor H related 5 Novel U 0.0004600974850240936 -0.2916706983528109 1.0 15539 +3849 KRT2 keratin 2 Novel U 0.000459934655825907 -0.29167210221640083 1.0 15540 +55365 TMEM176A transmembrane protein 176A Novel U 0.0004598891446262008 -0.29167249460005756 1.0 15541 +140836 BANF2 BANF family member 2 Novel U 0.00045974305229755537 -0.2916737541634727 1.0 15542 +4809 SNU13 small nuclear ribonucleoprotein 13 Novel N 0.00045934222098832406 -0.2916772100085361 1.0 15543 +84279 PRADC1 protease associated domain containing 1 Novel U 0.0004592537978431871 -0.2916779723658734 1.0 15544 +284274 SMIM21 small integral membrane protein 21 Novel U 0.000459048918729132 -0.29167973877098846 1.0 15545 +284013 VMO1 vitelline membrane outer layer 1 homolog Novel U 0.00045901741829353874 -0.29168001035811836 1.0 15546 +144097 SPINDOC spindlin interactor and repressor of chromatin binding Novel N 0.00045901160006877386 -0.29168006052107437 1.0 15547 +8534 CHST1 carbohydrate sulfotransferase 1 Novel N 0.0004589783047804725 -0.2916803475828758 1.0 15548 +220074 LRTOMT leucine rich transmembrane and O-methyltransferase domain containing Novel N 0.0004589280686988178 -0.2916807807030209 1.0 15549 +56311 ANKRD7 ankyrin repeat domain 7 Novel U 0.0004588644567605414 -0.2916813291457143 1.0 15550 +54738 FEV FEV transcription factor, ETS family member Novel U 0.00045877376929866426 -0.2916821110252987 1.0 15551 +10777 ARPP21 cAMP regulated phosphoprotein 21 Novel U 0.00045853154986941484 -0.291684199367201 1.0 15552 +29104 N6AMT1 N-6 adenine-specific DNA methyltransferase 1 Novel N 0.0004583069429138053 -0.2916861358597375 1.0 15553 +220965 FAM13C family with sequence similarity 13 member C Novel U 0.00045796089152787706 -0.2916891194090417 1.0 15554 +345462 ZNF879 zinc finger protein 879 Novel U 0.0004577036195409678 -0.2916913375294965 1.0 15555 +79134 TMEM185B transmembrane protein 185B Novel U 0.0004576933150031377 -0.29169142637207285 1.0 15556 +55379 LRRC59 leucine rich repeat containing 59 Novel U 0.00045756950063544316 -0.2916924938617163 1.0 15557 +647264 LOC647264 keratin-associated protein 21-1 Novel U 0.00045749859708207153 -0.29169310517048697 1.0 15558 +127281 PRXL2B peroxiredoxin like 2B Novel U 0.0004574274149316172 -0.2916937188812366 1.0 15559 +7633 ZNF79 zinc finger protein 79 Novel U 0.0004574264070943271 -0.2916937275705017 1.0 15560 +51450 PRRX2 paired related homeobox 2 Novel U 0.0004572509591496984 -0.2916952402290675 1.0 15561 +9611 NCOR1 nuclear receptor corepressor 1 Novel U 0.0004571243089273002 -0.2916963321685836 1.0 15562 +23539 SLC16A8 solute carrier family 16 member 8 Novel N 0.0004569471380553112 -0.2916978596817026 1.0 15563 +126969 SLC44A3 solute carrier family 44 member 3 Novel U 0.0004568544864298814 -0.2916986584957048 1.0 15564 +254170 FBXO33 F-box protein 33 Novel U 0.0004566731285749346 -0.29170022210771146 1.0 15565 +56731 SLC2A4RG SLC2A4 regulator Novel N 0.00045654077907477183 -0.29170136318465884 1.0 15566 +57050 UTP3 UTP3 small subunit processome component Novel N 0.0004563081293729806 -0.2917033690192954 1.0 15567 +79669 C3orf52 chromosome 3 open reading frame 52 Novel N 0.00045586276973803695 -0.2917072087739762 1.0 15568 +83591 THAP2 THAP domain containing 2 Novel U 0.0004558446909938708 -0.291707364643384 1.0 15569 +10556 RPP30 ribonuclease P/MRP subunit p30 Novel N 0.00045562164167294196 -0.29170928770647037 1.0 15570 +6224 RPS20 ribosomal protein S20 Novel U 0.00045560632448554987 -0.2917094197665795 1.0 15571 +286205 SCAI suppressor of cancer cell invasion Novel N 0.000455535304521313 -0.29171003207900903 1.0 15572 +27247 NFU1 NFU1 iron-sulfur cluster scaffold Novel N 0.0004554715523780708 -0.2917105817305069 1.0 15573 +343070 PRAMEF9 PRAME family member 9 Novel U 0.0004553610498931244 -0.2917115344491651 1.0 15574 +5954 RCN1 reticulocalbin 1 Novel U 0.000455214387736592 -0.29171279892546215 1.0 15575 +84058 WDR54 WD repeat domain 54 Novel U 0.0004550149583880284 -0.2917145183443645 1.0 15576 +9951 HS3ST4 heparan sulfate-glucosamine 3-sulfotransferase 4 Novel U 0.00045438451444955116 -0.2917199538393529 1.0 15577 +146845 CFAP52 cilia and flagella associated protein 52 Novel N 0.0004543758001641472 -0.29172002897125876 1.0 15578 +79709 COLGALT1 collagen beta(1-O)galactosyltransferase 1 Novel U 0.00045376981770698207 -0.2917252535668302 1.0 15579 +83480 PUS3 pseudouridine synthase 3 Novel U 0.0004535369396206118 -0.29172726137052873 1.0 15580 +10270 AKAP8 A-kinase anchoring protein 8 Novel N 0.0004534579882225968 -0.29172794206535674 1.0 15581 +55677 IWS1 interacts with SUPT6H, CTD assembly factor 1 Novel U 0.0004529960969779786 -0.2917319243505246 1.0 15582 +124817 CNTD1 cyclin N-terminal domain containing 1 Novel U 0.0004529110189201758 -0.29173265786754105 1.0 15583 +10575 CCT4 chaperonin containing TCP1 subunit 4 Novel U 0.0004528897792564666 -0.2917328409894312 1.0 15584 +53940 FTHL17 ferritin heavy chain like 17 Novel U 0.00045278373833368163 -0.2917337552418638 1.0 15585 +9862 MED24 mediator complex subunit 24 Novel N 0.00045249517988467364 -0.29173624310463436 1.0 15586 +84365 NIFK nucleolar protein interacting with the FHA domain of MKI67 Novel U 0.00045243557817179386 -0.2917367569723899 1.0 15587 +192669 AGO3 argonaute RISC catalytic component 3 Novel N 0.00045242591722190445 -0.2917368402661477 1.0 15588 +444882 IGFL4 IGF like family member 4 Novel U 0.00045225383843253576 -0.2917383238768863 1.0 15589 +7570 ZNF22 zinc finger protein 22 Novel U 0.00045213229934041807 -0.291739371749799 1.0 15590 +9083 BPY2 basic charge Y-linked 2 Novel N 0.00045196687561830566 -0.2917407979825814 1.0 15591 +55258 THNSL2 threonine synthase like 2 Novel U 0.0004517637228485122 -0.2917425495036838 1.0 15592 +25849 PARM1 prostate androgen-regulated mucin-like protein 1 Novel U 0.0004517331323587822 -0.2917428132455385 1.0 15593 +286436 H2BW2 H2B.W histone 2 Novel U 0.0004516866530871219 -0.2917432139756158 1.0 15594 +116092 DNTTIP1 deoxynucleotidyltransferase terminal interacting protein 1 Novel U 0.00045146673878242204 -0.29174511000955017 1.0 15595 +55225 RAVER2 ribonucleoprotein, PTB binding 2 Novel U 0.00045144434819606346 -0.2917453030543437 1.0 15596 +10467 ZNHIT1 zinc finger HIT-type containing 1 Novel N 0.00045086780019205094 -0.29175027387505453 1.0 15597 +166815 TIGD2 tigger transposable element derived 2 Novel U 0.0004507134075466278 -0.29175160500126457 1.0 15598 +100101467 ZSCAN30 zinc finger and SCAN domain containing 30 Novel U 0.00045070328618825874 -0.2917516922645236 1.0 15599 +25983 NGDN neuroguidin Novel N 0.0004506538751856468 -0.2917521182710892 1.0 15600 +79661 NEIL1 nei like DNA glycosylase 1 Novel N 0.0004505094699469992 -0.29175336328893 1.0 15601 +81856 ZNF611 zinc finger protein 611 Novel U 0.0004504818572380786 -0.29175360135726847 1.0 15602 +7773 ZNF230 zinc finger protein 230 Novel U 0.000450277861806558 -0.29175536014354275 1.0 15603 +10314 LANCL1 LanC like glutathione S-transferase 1 Novel N 0.00045025762073332197 -0.291755534655891 1.0 15604 +152815 THAP6 THAP domain containing 6 Novel U 0.0004499972951018864 -0.29175777910393574 1.0 15605 +284695 ZNF326 zinc finger protein 326 Novel N 0.00044989288141826153 -0.29175867932680954 1.0 15606 +9136 RRP9 ribosomal RNA processing 9, U3 small nucleolar RNA binding protein Novel N 0.00044959801461704705 -0.2917612215782652 1.0 15607 +90649 ZNF486 zinc finger protein 486 Novel U 0.0004495570915187959 -0.2917615744047131 1.0 15608 +55138 FAM90A1 family with sequence similarity 90 member A1 Novel U 0.00044924011984363583 -0.2917643072376371 1.0 15609 +219927 MRPL21 mitochondrial ribosomal protein L21 Novel U 0.00044912289488313384 -0.2917653179154253 1.0 15610 +8351 H3C4 H3 clustered histone 4 Novel U 0.0004490138395512939 -0.29176625815717167 1.0 15611 +2530 FUT8 fucosyltransferase 8 Novel U 0.00044893170854981936 -0.291766966265569 1.0 15612 +408187 SPINK14 serine peptidase inhibitor Kazal type 14 (putative) Novel U 0.000448476009229176 -0.29177089516586047 1.0 15613 +84140 FAM161A FAM161 centrosomal protein A Novel N 0.0004484049162947039 -0.2917715081074171 1.0 15614 +79755 ZNF750 zinc finger protein 750 Novel U 0.00044815532843845774 -0.2917736599776454 1.0 15615 +130557 ZNF513 zinc finger protein 513 Novel N 0.00044810695422593696 -0.2917740770453237 1.0 15616 +9324 HMGN3 high mobility group nucleosomal binding domain 3 Novel U 0.0004480676594635746 -0.2917744158327572 1.0 15617 +55608 ANKRD10 ankyrin repeat domain 10 Novel U 0.0004478334406597516 -0.29177643519571195 1.0 15618 +27258 LSM3 LSM3 homolog, U6 small nuclear RNA and mRNA degradation associated Novel N 0.0004478243504424777 -0.2917765135687875 1.0 15619 +1668 DEFA3 defensin alpha 3 Novel U 0.0004478230385613298 -0.2917765248794259 1.0 15620 +6132 RPL8 ribosomal protein L8 Novel U 0.00044775331968322613 -0.29177712597428845 1.0 15621 +100289087 TSPY10 testis specific protein Y-linked 10 Novel U 0.0004476823810150807 -0.291777737585808 1.0 15622 +27290 SPINK4 serine peptidase inhibitor Kazal type 4 Novel U 0.00044766486123338004 -0.2917778886360122 1.0 15623 +148641 SLC35F3 solute carrier family 35 member F3 Novel N 0.0004476620927131655 -0.29177791250534746 1.0 15624 +2169 FABP2 fatty acid binding protein 2 Novel N 0.00044722642288396396 -0.2917816687174842 1.0 15625 +8226 PUDP pseudouridine 5'-phosphatase Novel U 0.00044710744475140966 -0.2917826945105861 1.0 15626 +9440 MED17 mediator complex subunit 17 Novel N 0.00044695660724731524 -0.291783994985454 1.0 15627 +317781 DDX51 DEAD-box helicase 51 Novel U 0.0004468419260386009 -0.29178498373179157 1.0 15628 +23283 CSTF2T cleavage stimulation factor subunit 2 tau variant Novel U 0.000446832251788007 -0.29178506714022395 1.0 15629 +728957 ZNF705D zinc finger protein 705D Novel U 0.00044660774028099293 -0.29178700280983194 1.0 15630 +9410 SNRNP40 small nuclear ribonucleoprotein U5 subunit 40 Novel N 0.0004465479760832994 -0.2917875180784819 1.0 15631 +9070 ASH2L ASH2 like, histone lysine methyltransferase complex subunit Novel N 0.0004464584421027319 -0.2917882900131028 1.0 15632 +3423 IDS iduronate 2-sulfatase Novel U 0.00044629401882840554 -0.29178970762033013 1.0 15633 +89778 SERPINB11 serpin family B member 11 Novel U 0.0004462923514094239 -0.29178972199630704 1.0 15634 +150280 HORMAD2 HORMA domain containing 2 Novel U 0.00044612375501261995 -0.2917911755829211 1.0 15635 +57181 SLC39A10 solute carrier family 39 member 10 Novel N 0.0004459439594677385 -0.29179272572516773 1.0 15636 +401546 C9orf152 chromosome 9 open reading frame 152 Novel U 0.00044582855391615714 -0.2917937207165682 1.0 15637 +10285 SMNDC1 survival motor neuron domain containing 1 Novel N 0.00044576802568760306 -0.2917942425724588 1.0 15638 +120224 TMEM45B transmembrane protein 45B Novel U 0.0004457637716498801 -0.2917942792494721 1.0 15639 +729967 MORN2 MORN repeat containing 2 Novel U 0.00044571763476688564 -0.2917946770275789 1.0 15640 +6821 SUOX sulfite oxidase Novel U 0.00044552694357031565 -0.29179632110880493 1.0 15641 +375323 LHFPL4 LHFPL tetraspan subfamily member 4 Novel U 0.0004452288210104466 -0.29179889143041676 1.0 15642 +7390 UROS uroporphyrinogen III synthase Novel U 0.0004451394135829401 -0.29179966227393583 1.0 15643 +163087 ZNF383 zinc finger protein 383 Novel U 0.0004450183250502774 -0.2918007062622626 1.0 15644 +90594 ZNF439 zinc finger protein 439 Novel U 0.0004449231204137209 -0.2918015270875467 1.0 15645 +6240 RRM1 ribonucleotide reductase catalytic subunit M1 Novel U 0.00044483719448936007 -0.29180226791460956 1.0 15646 +50485 SMARCAL1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a like 1 Novel U 0.000444585786288289 -0.29180443547929463 1.0 15647 +22997 IGSF9B immunoglobulin superfamily member 9B Novel U 0.00044455483367988766 -0.29180470234322586 1.0 15648 +83640 RAMAC RNA guanine-7 methyltransferase activating subunit Novel N 0.00044447057812687296 -0.2918054287688574 1.0 15649 +63932 STEEP1 STING1 ER exit protein 1 Novel U 0.00044434853313645665 -0.2918064810034707 1.0 15650 +6322 SCML1 Scm polycomb group protein like 1 Novel U 0.0004443361147347948 -0.291806588071135 1.0 15651 +148113 CILP2 cartilage intermediate layer protein 2 Novel U 0.00044422604437320204 -0.2918075370641577 1.0 15652 +728577 CNTNAP3B contactin associated protein family member 3B Novel U 0.00044404156995106204 -0.29180912754625427 1.0 15653 +56 ACRV1 acrosomal vesicle protein 1 Novel U 0.00044403514783466797 -0.29180918291577934 1.0 15654 +55632 G2E3 G2/M-phase specific E3 ubiquitin protein ligase Novel U 0.0004439999398839827 -0.29180948646797145 1.0 15655 +130813 C2orf50 chromosome 2 open reading frame 50 Novel U 0.00044375081606530065 -0.29181163433740964 1.0 15656 +256006 ANKRD31 ankyrin repeat domain 31 Novel U 0.00044360725812684677 -0.29181287205008705 1.0 15657 +64318 NOC3L NOC3 like DNA replication regulator Novel U 0.00044358230467933204 -0.2918130871910863 1.0 15658 +4150 MAZ MYC associated zinc finger protein Novel U 0.0004435361678991529 -0.29181348496830667 1.0 15659 +6936 GCFC2 GC-rich sequence DNA-binding factor 2 Novel N 0.0004435312722139502 -0.2918135271774085 1.0 15660 +54813 KLHL28 kelch like family member 28 Novel U 0.0004434916715887041 -0.2918138686018983 1.0 15661 +84340 GFM2 GTP dependent ribosome recycling factor mitochondrial 2 Novel U 0.00044334472236800366 -0.2918151355531749 1.0 15662 +373156 GSTK1 glutathione S-transferase kappa 1 Novel U 0.0004432915172518129 -0.2918155942714284 1.0 15663 +1665 DHX15 DEAH-box helicase 15 Novel N 0.0004432549668060967 -0.29181590939820246 1.0 15664 +643988 FNDC10 fibronectin type III domain containing 10 Novel U 0.00044284686472874585 -0.2918194279296068 1.0 15665 +51478 HSD17B7 hydroxysteroid 17-beta dehydrogenase 7 Novel N 0.00044277069130946306 -0.29182008467355103 1.0 15666 +83666 PARP9 poly(ADP-ribose) polymerase family member 9 Novel U 0.0004427552565381827 -0.2918202177474325 1.0 15667 +34 ACADM acyl-CoA dehydrogenase medium chain Novel U 0.00044253899913344717 -0.29182208225269285 1.0 15668 +4892 NRAP nebulin related anchoring protein Novel U 0.0004425095138375015 -0.2918223364659045 1.0 15669 +399697 CTXN2 cortexin 2 Novel U 0.0004420418077951673 -0.2918263688844813 1.0 15670 +253152 EPHX4 epoxide hydrolase 4 Novel U 0.00044190967889056875 -0.2918275080595213 1.0 15671 +23446 SLC44A1 solute carrier family 44 member 1 Novel U 0.0004417962070865853 -0.2918284863787408 1.0 15672 +93183 PIGM phosphatidylinositol glycan anchor biosynthesis class M Novel U 0.00044169172168328157 -0.29182938721995977 1.0 15673 +119391 GSTO2 glutathione S-transferase omega 2 Novel N 0.00044158962622031057 -0.2918302674558435 1.0 15674 +8479 HIRIP3 HIRA interacting protein 3 Novel N 0.0004414414026837532 -0.291831545393882 1.0 15675 +360226 PRSS41 serine protease 41 Novel U 0.0004412489785131002 -0.291833204416281 1.0 15676 +55739 NAXD NAD(P)HX dehydratase Novel U 0.00044121046814966854 -0.2918335364408666 1.0 15677 +23287 AGTPBP1 ATP/GTP binding carboxypeptidase 1 Novel N 0.0004404867670645541 -0.2918397759704762 1.0 15678 +1109 AKR1C4 aldo-keto reductase family 1 member C4 Novel U 0.0004400200004298065 -0.2918438002897679 1.0 15679 +1663 DDX11 DEAD/H-box helicase 11 Novel U 0.00043988817021708943 -0.2918449368895777 1.0 15680 +9540 TP53I3 tumor protein p53 inducible protein 3 Novel N 0.0004397427910842449 -0.2918461903040366 1.0 15681 +125113 KRT222 keratin 222 Novel U 0.00043963016628433086 -0.2918471613206459 1.0 15682 +63905 MANBAL mannosidase beta like Novel U 0.0004395950790483298 -0.29184746383207283 1.0 15683 +51002 TPRKB TP53RK binding protein Novel U 0.00043944836056151066 -0.2918487287940324 1.0 15684 +285025 CCDC141 coiled-coil domain containing 141 Novel N 0.00043923140790915686 -0.2918505992935053 1.0 15685 +291 SLC25A4 solute carrier family 25 member 4 Novel U 0.0004390016812026521 -0.2918525799269696 1.0 15686 +81892 SLIRP SRA stem-loop interacting RNA binding protein Novel U 0.0004389183040216071 -0.2918532987795464 1.0 15687 +9557 CHD1L chromodomain helicase DNA binding protein 1 like Novel N 0.0004387673335834143 -0.29185460040053146 1.0 15688 +51023 MRPS18C mitochondrial ribosomal protein S18C Novel U 0.0004387541561042188 -0.2918547140127304 1.0 15689 +22927 HABP4 hyaluronan binding protein 4 Novel U 0.00043855140921104604 -0.2918564620344885 1.0 15690 +442590 SPDYE5 speedy/RINGO cell cycle regulator family member E5 Novel U 0.00043839373391807895 -0.2918578214626826 1.0 15691 +23316 CUX2 cut like homeobox 2 Novel N 0.00043810920113695985 -0.29186027461737474 1.0 15692 +84266 ALKBH7 alkB homolog 7 Novel N 0.0004380396581226515 -0.2918608741959934 1.0 15693 +522 ATP5PF ATP synthase peripheral stalk subunit F6 Novel N 0.00043790866037205466 -0.2918620036185691 1.0 15694 +1643 DDB2 damage specific DNA binding protein 2 Novel U 0.00043777044089792324 -0.2918631953046384 1.0 15695 +138241 C9orf85 chromosome 9 open reading frame 85 Novel U 0.0004376666629867243 -0.29186409004607666 1.0 15696 +114771 PGLYRP3 peptidoglycan recognition protein 3 Novel U 0.00043760459180900194 -0.2918646252048035 1.0 15697 +158809 MAGEB6 MAGE family member B6 Novel U 0.0004374349753540893 -0.2918660875860469 1.0 15698 +3212 HOXB2 homeobox B2 Novel N 0.00043729275663460733 -0.2918673137523875 1.0 15699 +55278 QRSL1 glutaminyl-tRNA amidotransferase subunit QRSL1 Novel N 0.0004369691409003289 -0.29187010386835893 1.0 15700 +388951 TSPYL6 TSPY like 6 Novel U 0.00043692280942554413 -0.2918705033241767 1.0 15701 +131177 FAM3D FAM3 metabolism regulating signaling molecule D Novel U 0.00043666386565211526 -0.291872735858264 1.0 15702 +401138 AMTN amelotin Novel N 0.0004366545827045017 -0.2918728158930016 1.0 15703 +51018 RRP15 ribosomal RNA processing 15 homolog Novel U 0.0004366171175257259 -0.2918731389063246 1.0 15704 +9753 ZSCAN12 zinc finger and SCAN domain containing 12 Novel U 0.0004364199476304847 -0.29187483884491083 1.0 15705 +51666 ASB4 ankyrin repeat and SOCS box containing 4 Novel U 0.0004363123163188604 -0.29187576680919 1.0 15706 +8803 SUCLA2 succinate-CoA ligase ADP-forming subunit beta Novel N 0.0004362374313726518 -0.29187641244431306 1.0 15707 +100526761 CCDC169-SOHLH2 CCDC169-SOHLH2 readthrough Novel U 0.000436177574021231 -0.291876928516106 1.0 15708 +340745 LRIT2 leucine rich repeat, Ig-like and transmembrane domains 2 Novel U 0.0004361549837516662 -0.29187712328250714 1.0 15709 +9153 SLC28A2 solute carrier family 28 member 2 Novel N 0.0004361108160229363 -0.29187750408316765 1.0 15710 +64858 DCLRE1B DNA cross-link repair 1B Novel U 0.00043607222792760146 -0.29187783677793394 1.0 15711 +1573 CYP2J2 cytochrome P450 family 2 subfamily J member 2 Novel N 0.0004357439426946667 -0.2918806671528959 1.0 15712 +6578 SLCO2A1 solute carrier organic anion transporter family member 2A1 Novel U 0.00043567670213454806 -0.29188124688045813 1.0 15713 +4174 MCM5 minichromosome maintenance complex component 5 Novel U 0.00043567145564348735 -0.29188129211410085 1.0 15714 +7702 ZNF143 zinc finger protein 143 Novel N 0.00043558667761374367 -0.29188202304436706 1.0 15715 +153768 PRELID2 PRELI domain containing 2 Novel U 0.00043558271270434796 -0.2918820572286043 1.0 15716 +3024 H1-1 H1.1 linker histone, cluster member Novel U 0.0004354565912663838 -0.29188314460910264 1.0 15717 +56106 PCDHGA10 protocadherin gamma subfamily A, 10 Novel U 0.00043542644711046187 -0.29188340450280365 1.0 15718 +55720 TSR1 TSR1 ribosome maturation factor Novel U 0.0004354249666352384 -0.2918834172670086 1.0 15719 +84191 CIAO2A cytosolic iron-sulfur assembly component 2A Novel N 0.00043540250510338153 -0.29188361092347254 1.0 15720 +11102 RPP14 ribonuclease P/MRP subunit p14 Novel N 0.0004346744875741935 -0.2918898876681439 1.0 15721 +152330 CNTN4 contactin 4 Novel N 0.00043463707537744374 -0.291890210224672 1.0 15722 +197370 NSMCE1 NSE1 homolog, SMC5-SMC6 complex component Novel N 0.00043437098301381564 -0.29189250439171954 1.0 15723 +150921 TCF23 transcription factor 23 Novel N 0.00043404464323852746 -0.2918953179935402 1.0 15724 +79873 NUDT18 nudix hydrolase 18 Novel N 0.00043394985245295945 -0.29189613525072744 1.0 15725 +1539 CYLC2 cylicin 2 Novel U 0.0004338932119871908 -0.2918966235875153 1.0 15726 +340120 ANKRD34B ankyrin repeat domain 34B Novel U 0.00043374438124459027 -0.29189790676069877 1.0 15727 +647024 C6orf132 chromosome 6 open reading frame 132 Novel U 0.00043374302773534803 -0.2918979184302418 1.0 15728 +342900 LEUTX leucine twenty homeobox Novel U 0.0004336878033117963 -0.29189839455834643 1.0 15729 +55341 LSG1 large 60S subunit nuclear export GTPase 1 Novel N 0.0004335866887385214 -0.2918992663372989 1.0 15730 +653784 MZT2A mitotic spindle organizing protein 2A Novel U 0.00043343105136848446 -0.2919006081951442 1.0 15731 +57577 CCDC191 coiled-coil domain containing 191 Novel U 0.0004334168404229804 -0.2919007307175738 1.0 15732 +169693 TMEM252 transmembrane protein 252 Novel U 0.00043309413233242217 -0.2919035130081184 1.0 15733 +284161 GDPD1 glycerophosphodiester phosphodiesterase domain containing 1 Novel N 0.00043239322578392253 -0.2919095560101988 1.0 15734 +144501 KRT80 keratin 80 Novel U 0.0004322997560329601 -0.29191036187782937 1.0 15735 +1014 CDH16 cadherin 16 Novel U 0.0004322533721899458 -0.29191076178515 1.0 15736 +338811 TAFA2 TAFA chemokine like family member 2 Novel U 0.0004321079457213103 -0.2919120156077237 1.0 15737 +8886 DDX18 DEAD-box helicase 18 Novel U 0.0004321044700248239 -0.2919120455741166 1.0 15738 +57486 NLN neurolysin Novel N 0.00043191321152521463 -0.2919136945464561 1.0 15739 +25902 MTHFD1L methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1 like Novel N 0.0004319009759640536 -0.29191380003772555 1.0 15740 +26235 FBXL4 F-box and leucine rich repeat protein 4 Novel U 0.0004317635211785088 -0.2919149851308835 1.0 15741 +4702 NDUFA8 NADH:ubiquinone oxidoreductase subunit A8 Novel N 0.0004317415936938162 -0.291915174182956 1.0 15742 +1384 CRAT carnitine O-acetyltransferase Novel N 0.000431585083477256 -0.2919165235662172 1.0 15743 +84083 ZRANB3 zinc finger RANBP2-type containing 3 Novel U 0.00043140155626193087 -0.2919181058817861 1.0 15744 +54805 CNNM2 cyclin and CBS domain divalent metal cation transport mediator 2 Novel N 0.0004313455820746528 -0.29191858847412444 1.0 15745 +8705 B3GALT4 beta-1,3-galactosyltransferase 4 Novel N 0.0004307660493394293 -0.2919235850282757 1.0 15746 +148479 PHF13 PHD finger protein 13 Novel U 0.0004307211842459138 -0.2919239718414023 1.0 15747 +8733 GPAA1 glycosylphosphatidylinositol anchor attachment 1 Novel U 0.00043067765265327764 -0.2919243471574917 1.0 15748 +38 ACAT1 acetyl-CoA acetyltransferase 1 Novel N 0.00043041608253654973 -0.29192660233510836 1.0 15749 +145864 HAPLN3 hyaluronan and proteoglycan link protein 3 Novel U 0.0004302967982621333 -0.29192763076767186 1.0 15750 +165215 FAM171B family with sequence similarity 171 member B Novel U 0.00043027814321764985 -0.2919277916057648 1.0 15751 +5394 EXOSC10 exosome component 10 Novel N 0.0004297177610913502 -0.29193262304921797 1.0 15752 +79670 TUT7 terminal uridylyl transferase 7 Novel N 0.00042959945428088257 -0.29193364305438607 1.0 15753 +196541 METTL21C methyltransferase 21C, AARS1 lysine Novel N 0.00042955798809705937 -0.29193400056315183 1.0 15754 +90576 ZNF799 zinc finger protein 799 Novel U 0.00042937142922894086 -0.2919356090167047 1.0 15755 +201516 ZSCAN4 zinc finger and SCAN domain containing 4 Novel U 0.0004293652164743801 -0.29193566258117604 1.0 15756 +4101 MAGEA2 MAGE family member A2 Novel U 0.00042936032235224147 -0.2919357047768016 1.0 15757 +64418 TMEM168 transmembrane protein 168 Novel U 0.0004291007633397468 -0.2919379426152921 1.0 15758 +440350 NPIPB7 nuclear pore complex interacting protein family member B7 Novel U 0.00042903198996703773 -0.2919385355582961 1.0 15759 +57408 LRTM1 leucine rich repeats and transmembrane domains 1 Novel U 0.00042896633997802574 -0.29193910157244013 1.0 15760 +6152 RPL24 ribosomal protein L24 Novel N 0.0004288161138883947 -0.29194039677587935 1.0 15761 +9956 HS3ST2 heparan sulfate-glucosamine 3-sulfotransferase 2 Novel N 0.000428812991626259 -0.2919404236950694 1.0 15762 +30814 PLA2G2E phospholipase A2 group IIE Novel U 0.00042879533661340955 -0.29194057591119527 1.0 15763 +9295 SRSF11 serine and arginine rich splicing factor 11 Novel U 0.00042876925575581037 -0.29194080077237977 1.0 15764 +79825 EFCC1 EF-hand and coiled-coil domain containing 1 Novel U 0.00042875618080546806 -0.29194091350060614 1.0 15765 +79177 ZNF576 zinc finger protein 576 Novel U 0.0004286763658105153 -0.29194160164110305 1.0 15766 +149076 ZNF362 zinc finger protein 362 Novel U 0.0004286490294441734 -0.29194183732690027 1.0 15767 +83744 ZNF484 zinc finger protein 484 Novel U 0.0004286227039986368 -0.29194206429684727 1.0 15768 +387914 SHISA2 shisa family member 2 Novel U 0.00042860882396765536 -0.29194218396623295 1.0 15769 +57157 PHTF2 putative homeodomain transcription factor 2 Novel U 0.00042857920028343703 -0.291942439372586 1.0 15770 +10234 LRRC17 leucine rich repeat containing 17 Novel U 0.00042854593658547043 -0.2919427261620252 1.0 15771 +83607 AMMECR1L AMMECR1 like Novel U 0.00042849112741618776 -0.2919431987099344 1.0 15772 +8209 GATD3 glutamine amidotransferase class 1 domain containing 3 Novel U 0.00042841761604322555 -0.2919438325025287 1.0 15773 +115817 DHRS1 dehydrogenase/reductase 1 Novel U 0.0004283276362860499 -0.2919446082804993 1.0 15774 +283385 MORN3 MORN repeat containing 3 Novel U 0.0004282394439774756 -0.2919453686476343 1.0 15775 +55756 INTS9 integrator complex subunit 9 Novel U 0.00042822220642126937 -0.2919455172645765 1.0 15776 +158376 SPAAR small regulatory polypeptide of amino acid response Novel N 0.0004282161862237742 -0.2919455691688797 1.0 15777 +84878 ZBTB45 zinc finger and BTB domain containing 45 Novel U 0.0004280274418795637 -0.29194719646493955 1.0 15778 +2109 ETFB electron transfer flavoprotein subunit beta Novel N 0.00042801691222728923 -0.29194728724838387 1.0 15779 +166793 ZBTB49 zinc finger and BTB domain containing 49 Novel N 0.00042785712183497507 -0.29194866491231813 1.0 15780 +646603 C4orf51 chromosome 4 open reading frame 51 Novel U 0.00042781494372345354 -0.29194902855910704 1.0 15781 +5985 RFC5 replication factor C subunit 5 Novel U 0.0004277901409181211 -0.2919492424013154 1.0 15782 +613037 NPIPB13 nuclear pore complex interacting protein family, member B13 Novel U 0.00042773998034151435 -0.29194967487047907 1.0 15783 +56145 PCDHA3 protocadherin alpha 3 Novel U 0.00042761594281310754 -0.29195074428414597 1.0 15784 +27433 TOR2A torsin family 2 member A Novel U 0.0004275296373424705 -0.2919514883835408 1.0 15785 +27292 DIMT1 DIM1 rRNA methyltransferase and ribosome maturation factor Novel N 0.0004274871873210288 -0.29195185437465393 1.0 15786 +6596 HLTF helicase like transcription factor Novel N 0.0004273105777044745 -0.2919533770488001 1.0 15787 +29997 NOP53 NOP53 ribosome biogenesis factor Novel U 0.00042724645674267986 -0.2919539298801388 1.0 15788 +51184 GPN3 GPN-loop GTPase 3 Novel U 0.0004272157824982648 -0.2919541943441008 1.0 15789 +30827 CXXC1 CXXC finger protein 1 Novel N 0.00042688476021158963 -0.29195704831710373 1.0 15790 +2542 SLC37A4 solute carrier family 37 member 4 Novel U 0.00042665661882654245 -0.29195901528241086 1.0 15791 +84070 FAM186B family with sequence similarity 186 member B Novel U 0.0004265234851240185 -0.2919601631205115 1.0 15792 +54555 DDX49 DEAD-box helicase 49 Novel N 0.0004263920675605352 -0.29196129616258565 1.0 15793 +91768 CABLES1 Cdk5 and Abl enzyme substrate 1 Novel U 0.0004263369400137495 -0.2919617714554484 1.0 15794 +163933 FAM43B family with sequence similarity 43 member B Novel U 0.00042618795628711977 -0.29196305594761335 1.0 15795 +728042 CT47A9 cancer/testis antigen family 47 member A9 Novel U 0.0004261446746144993 -0.29196342910896883 1.0 15796 +54903 MKS1 MKS transition zone complex subunit 1 Novel U 0.00042604347692757645 -0.2919643016045018 1.0 15797 +1629 DBT dihydrolipoamide branched chain transacylase E2 Novel N 0.0004258639210104712 -0.29196584968075096 1.0 15798 +84419 C15orf48 chromosome 15 open reading frame 48 Novel U 0.00042572937601137223 -0.2919670096866193 1.0 15799 +728911 CT45A2 cancer/testis antigen family 45 member A2 Novel U 0.000425559936717216 -0.2919684705404368 1.0 15800 +83650 SLC35G5 solute carrier family 35 member G5 Novel U 0.00042522643473380555 -0.2919713458926273 1.0 15801 +253827 MSRB3 methionine sulfoxide reductase B3 Novel N 0.00042507244106862696 -0.29197267357895157 1.0 15802 +169966 TENT5D terminal nucleotidyltransferase 5D Novel U 0.00042500135115137923 -0.2919732864944946 1.0 15803 +25904 CNOT10 CCR4-NOT transcription complex subunit 10 Novel U 0.0004249827463873397 -0.291973446899085 1.0 15804 +80829 ZFP91 ZFP91 zinc finger protein, atypical E3 ubiquitin ligase Novel U 0.0004248946053352977 -0.2919742068243018 1.0 15805 +83448 PUS7L pseudouridine synthase 7 like Novel N 0.00042478332079007254 -0.2919751662856448 1.0 15806 +11163 NUDT4 nudix hydrolase 4 Novel N 0.0004245658434532987 -0.2919770413087864 1.0 15807 +79807 GSTCD glutathione S-transferase C-terminal domain containing Novel U 0.00042456239192937846 -0.2919770710667709 1.0 15808 +9191 DEDD death effector domain containing Novel U 0.00042446788534565756 -0.29197788587365675 1.0 15809 +6529 SLC6A1 solute carrier family 6 member 1 Novel U 0.0004242747378830858 -0.29197955113205765 1.0 15810 +117247 SLC16A10 solute carrier family 16 member 10 Novel N 0.0004242383198579946 -0.29197986511714147 1.0 15811 +57647 DHX37 DEAH-box helicase 37 Novel U 0.00042410357773841717 -0.2919810268225224 1.0 15812 +10825 NEU3 neuraminidase 3 Novel U 0.0004239464912796225 -0.29198238117396813 1.0 15813 +100130933 SMIM6 small integral membrane protein 6 Novel U 0.00042387886743037106 -0.29198296420613207 1.0 15814 +146712 B3GNTL1 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase like 1 Novel U 0.000423837913788966 -0.2919833172959138 1.0 15815 +283951 UQCC4 ubiquinol-cytochrome c reductase complex assembly factor 4 Novel U 0.00042370110735311323 -0.29198449679919886 1.0 15816 +4496 MT1H metallothionein 1H Novel U 0.0004233650108856404 -0.2919873945202381 1.0 15817 +375337 TOPAZ1 testis and ovary specific TOPAZ 1 Novel U 0.00042334284785867444 -0.2919875856030841 1.0 15818 +26256 CABYR calcium binding tyrosine phosphorylation regulated Novel U 0.0004232703398421807 -0.29198821074504555 1.0 15819 +51427 ZNF107 zinc finger protein 107 Novel U 0.00042320620596738375 -0.2919887636877162 1.0 15820 +221656 KDM1B lysine demethylase 1B Novel U 0.00042315639319219245 -0.29198919315824223 1.0 15821 +255252 LRRC57 leucine rich repeat containing 57 Novel U 0.0004229852808027328 -0.2919906684369762 1.0 15822 +84337 ELOF1 elongation factor 1 Novel U 0.0004226216419627112 -0.29199380361993527 1.0 15823 +23630 KCNE5 potassium voltage-gated channel subfamily E regulatory subunit 5 Novel U 0.0004225868006661371 -0.29199410401094755 1.0 15824 +10284 SAP18 Sin3A associated protein 18 Novel N 0.0004225559949689178 -0.29199436960825553 1.0 15825 +84284 NTPCR nucleoside-triphosphatase, cancer-related Novel U 0.00042247393510206867 -0.2919950771033519 1.0 15826 +404281 YY2 YY2 transcription factor Novel N 0.00042247029814138575 -0.2919951084601155 1.0 15827 +49 ACR acrosin Novel U 0.0004224331839469901 -0.2919954284473584 1.0 15828 +148979 GLIS1 GLIS family zinc finger 1 Novel U 0.0004221609922837013 -0.29199777520070375 1.0 15829 +29074 MRPL18 mitochondrial ribosomal protein L18 Novel N 0.0004220323594538293 -0.2919988842336557 1.0 15830 +27090 ST6GALNAC4 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 4 Novel U 0.0004218251795838373 -0.2920006704751854 1.0 15831 +27042 UTP25 UTP25 small subunit processome component Novel N 0.000421695749849677 -0.29200178637880264 1.0 15832 +408263 FNDC9 fibronectin type III domain containing 9 Novel U 0.00042169506495667023 -0.2920017922837408 1.0 15833 +3237 HOXD11 homeobox D11 Novel U 0.0004215911597705377 -0.29200268812250463 1.0 15834 +6470 SHMT1 serine hydroxymethyltransferase 1 Novel U 0.0004213322715521089 -0.29200492017761365 1.0 15835 +441234 ZNF716 zinc finger protein 716 Novel U 0.00042094432253774816 -0.2920082649554673 1.0 15836 +51004 COQ6 coenzyme Q6, monooxygenase Novel U 0.00042070536858386737 -0.29201032514343883 1.0 15837 +11254 SLC6A14 solute carrier family 6 member 14 Novel U 0.0004206924071547992 -0.29201043689291956 1.0 15838 +883 KYAT1 kynurenine aminotransferase 1 Novel N 0.00042068021250284013 -0.2920105420314823 1.0 15839 +55150 C19orf73 chromosome 19 open reading frame 73 Novel U 0.00042046985442507293 -0.29201235567454825 1.0 15840 +55821 ALLC allantoicase Novel U 0.0004204040619335099 -0.2920129229173058 1.0 15841 +112849 L3HYPDH trans-L-3-hydroxyproline dehydratase Novel U 0.00042028105110964597 -0.29201398347903995 1.0 15842 +728118 NUTM2A NUT family member 2A Novel U 0.0004201839697124885 -0.2920148204851804 1.0 15843 +142685 ASB15 ankyrin repeat and SOCS box containing 15 Novel U 0.0004201822790816168 -0.2920148350612832 1.0 15844 +283643 TEDC1 tubulin epsilon and delta complex 1 Novel U 0.000420088208900506 -0.292015646105639 1.0 15845 +6119 RPA3 replication protein A3 Novel U 0.0004199702079121446 -0.2920166634741023 1.0 15846 +5794 PTPRH protein tyrosine phosphatase receptor type H Novel N 0.0004198431315380588 -0.29201775908776806 1.0 15847 +165545 DQX1 DEAQ-box RNA dependent ATPase 1 Novel U 0.00041981123479990713 -0.2920180340916975 1.0 15848 +1632 ECI1 enoyl-CoA delta isomerase 1 Novel U 0.00041959090888054744 -0.29201993367444773 1.0 15849 +79570 NKAIN1 sodium/potassium transporting ATPase interacting 1 Novel U 0.0004195161736344123 -0.2920205780189025 1.0 15850 +284058 KANSL1 KAT8 regulatory NSL complex subunit 1 Novel U 0.00041927052995174006 -0.29202269588367147 1.0 15851 +79830 ZMYM1 zinc finger MYM-type containing 1 Novel U 0.00041915625723722085 -0.29202368110809696 1.0 15852 +2483 FRG1 FSHD region gene 1 Novel N 0.0004189723480461936 -0.2920252667169436 1.0 15853 +79639 TMEM53 transmembrane protein 53 Novel U 0.0004186451024476532 -0.29202808812849557 1.0 15854 +7555 CNBP CCHC-type zinc finger nucleic acid binding protein Novel U 0.00041839934346956026 -0.2920302069873064 1.0 15855 +10654 PMVK phosphomevalonate kinase Novel N 0.0004182557581272742 -0.2920314449362512 1.0 15856 +1382 CRABP2 cellular retinoic acid binding protein 2 Novel N 0.00041821362765693664 -0.2920318081722924 1.0 15857 +146562 DNAAF8 dynein axonemal assembly factor 8 Novel U 0.00041817714873346233 -0.29203212268242346 1.0 15858 +645359 PRAMEF26 PRAME family member 26 Novel U 0.00041810091657081303 -0.2920327799328351 1.0 15859 +55172 DNAAF2 dynein axonemal assembly factor 2 Novel N 0.00041809388952072566 -0.2920328405179136 1.0 15860 +27287 VENTX VENT homeobox Novel N 0.00041754130738126904 -0.2920376047122637 1.0 15861 +6167 RPL37 ribosomal protein L37 Novel N 0.00041754118643497505 -0.2920376057550257 1.0 15862 +28234 SLCO1B3 solute carrier organic anion transporter family member 1B3 Novel U 0.0004175340221239759 -0.2920376675235259 1.0 15863 +22976 PAXIP1 PAX interacting protein 1 Novel U 0.0004174033443484602 -0.2920387941873742 1.0 15864 +79609 VCPKMT valosin containing protein lysine methyltransferase Novel N 0.0004172250112228888 -0.2920403317210884 1.0 15865 +10464 PIBF1 progesterone immunomodulatory binding factor 1 Novel U 0.0004169937446023582 -0.29204232563122096 1.0 15866 +138428 PTRH1 peptidyl-tRNA hydrolase 1 homolog Novel U 0.00041646163772279587 -0.29204691329413696 1.0 15867 +27068 PPA2 inorganic pyrophosphatase 2 Novel U 0.00041643229390591425 -0.29204716628755933 1.0 15868 +140596 DEFB104A defensin beta 104A Novel U 0.0004164047838929972 -0.2920474034704843 1.0 15869 +4237 MFAP2 microfibril associated protein 2 Novel U 0.00041625117318086176 -0.2920487278551044 1.0 15870 +10570 DPYSL4 dihydropyrimidinase like 4 Novel N 0.0004162390657666975 -0.2920488322415296 1.0 15871 +284402 SCGB2B2 secretoglobin family 2B member 2 Novel U 0.0004161733319012779 -0.29204939897883053 1.0 15872 +6581 SLC22A3 solute carrier family 22 member 3 Novel U 0.0004160946071489799 -0.2920500777195883 1.0 15873 +3223 HOXC6 homeobox C6 Novel U 0.000415971829596761 -0.2920511362701256 1.0 15874 +11281 POU6F2 POU class 6 homeobox 2 Novel U 0.000415944886231523 -0.29205136856758745 1.0 15875 +100287520 GLYATL1B glycine-N-acyltransferase like 1B Novel U 0.0004159212252967586 -0.2920515725649367 1.0 15876 +51205 ACP6 acid phosphatase 6, lysophosphatidic Novel U 0.00041590407804299094 -0.2920517204033189 1.0 15877 +23181 DIP2A disco interacting protein 2 homolog A Novel N 0.0004158650680454813 -0.29205205673559687 1.0 15878 +55721 IQCC IQ motif containing C Novel U 0.0004154828136267116 -0.2920553524163874 1.0 15879 +5460 POU5F1 POU class 5 homeobox 1 Novel N 0.00041541726342833433 -0.29205591757016713 1.0 15880 +120400 NXPE1 neurexophilin and PC-esterase domain family member 1 Novel U 0.0004153941451908047 -0.29205611688854677 1.0 15881 +8089 YEATS4 YEATS domain containing 4 Novel N 0.0004153846878639419 -0.29205619842672903 1.0 15882 +201514 ZNF584 zinc finger protein 584 Novel U 0.00041495546365866664 -0.2920598990666659 1.0 15883 +1735 DIO3 iodothyronine deiodinase 3 Novel N 0.000414879662417022 -0.29206055260180824 1.0 15884 +643394 SPINK9 serine peptidase inhibitor Kazal type 9 Novel U 0.000414774441741273 -0.29206145978232156 1.0 15885 +54507 ADAMTSL4 ADAMTS like 4 Novel U 0.00041448285868399645 -0.29206397372234033 1.0 15886 +222967 RSPH10B radial spoke head 10 homolog B Novel U 0.0004142610831073911 -0.2920658858035924 1.0 15887 +353355 ZNF233 zinc finger protein 233 Novel U 0.00041411982619184563 -0.29206710367755334 1.0 15888 +219621 CABCOCO1 ciliary associated calcium binding coiled-coil 1 Novel U 0.0004140903429458672 -0.2920673578730908 1.0 15889 +64928 MRPL14 mitochondrial ribosomal protein L14 Novel U 0.0004140869628511316 -0.2920673870152347 1.0 15890 +155184 SLC2A7 solute carrier family 2 member 7 Novel N 0.0004140863701126935 -0.2920673921256444 1.0 15891 +3975 LHX1 LIM homeobox 1 Novel N 0.0004136157459122136 -0.2920714497036891 1.0 15892 +127733 UBXN10 UBX domain protein 10 Novel N 0.00041355841506473547 -0.29207194399273706 1.0 15893 +90378 SAMD1 sterile alpha motif domain containing 1 Novel U 0.0004134473079888421 -0.29207290192399366 1.0 15894 +129530 LYG1 lysozyme g1 Novel U 0.0004133820734056523 -0.2920734643566357 1.0 15895 +79070 POGLUT2 protein O-glucosyltransferase 2 Novel N 0.0004133650725122093 -0.29207361093314393 1.0 15896 +138715 ARID3C AT-rich interaction domain 3C Novel U 0.0004132597163466374 -0.2920745192818091 1.0 15897 +25917 THUMPD3 THUMP domain containing 3 Novel N 0.0004131671985880217 -0.29207531694165256 1.0 15898 +407738 TAFA1 TAFA chemokine like family member 1 Novel U 0.00041311992340282 -0.29207572453385316 1.0 15899 +29957 SLC25A24 solute carrier family 25 member 24 Novel U 0.0004131145799118761 -0.29207577060379925 1.0 15900 +51635 DHRS7 dehydrogenase/reductase 7 Novel U 0.0004131060826826424 -0.2920758438643131 1.0 15901 +25833 POU2F3 POU class 2 homeobox 3 Novel U 0.0004130757331416111 -0.2920761055287818 1.0 15902 +3239 HOXD13 homeobox D13 Novel U 0.00041297190943921083 -0.2920770006650178 1.0 15903 +23732 FRRS1L ferric chelate reductase 1 like Novel U 0.0004127537117276481 -0.29207888189901066 1.0 15904 +83740 H2AB3 H2A.B variant histone 3 Novel N 0.0004125722772190102 -0.292080446171902 1.0 15905 +79169 C1orf35 chromosome 1 open reading frame 35 Novel U 0.0004123028156878495 -0.29208276938688243 1.0 15906 +83879 CDCA7 cell division cycle associated 7 Novel U 0.0004122625095391065 -0.29208311689418026 1.0 15907 +51241 COX16 cytochrome c oxidase assembly factor COX16 Novel N 0.00041200014230838853 -0.29208537894427017 1.0 15908 +91252 SLC39A13 solute carrier family 39 member 13 Novel N 0.0004117961017227618 -0.2920871381198494 1.0 15909 +29800 ZDHHC1 zinc finger DHHC-type containing 1 Novel N 0.00041165696189606447 -0.2920883377409172 1.0 15910 +53981 CPSF2 cleavage and polyadenylation specific factor 2 Novel N 0.00041158575723987894 -0.29208895164570436 1.0 15911 +130749 CPO carboxypeptidase O Novel U 0.00041152382606200435 -0.2920894855973952 1.0 15912 +162239 ZFP1 ZFP1 zinc finger protein Novel U 0.00041139637785467785 -0.29209058441689356 1.0 15913 +22982 DIP2C disco interacting protein 2 homolog C Novel U 0.0004113526898625486 -0.29209096108141175 1.0 15914 +5275 SERPINB13 serpin family B member 13 Novel N 0.0004112767095215626 -0.29209161616069385 1.0 15915 +10434 LYPLA1 lysophospholipase 1 Novel N 0.00041120805122226426 -0.29209220811157 1.0 15916 +26468 LHX6 LIM homeobox 6 Novel U 0.0004111197686652169 -0.2920929692567998 1.0 15917 +79149 ZSCAN5A zinc finger and SCAN domain containing 5A Novel U 0.0004108281386880909 -0.2920954836013472 1.0 15918 +55421 NCBP3 nuclear cap binding subunit 3 Novel N 0.00041067760995360994 -0.2920967814140978 1.0 15919 +26993 AKAP8L A-kinase anchoring protein 8 like Novel U 0.00041022306310525613 -0.29210070037812524 1.0 15920 +442247 RFPL4B ret finger protein like 4B Novel U 0.0004100783079507464 -0.2921019484128336 1.0 15921 +285755 PPIL6 peptidylprolyl isomerase like 6 Novel U 0.0004099827649084435 -0.2921027721557486 1.0 15922 +6483 ST3GAL2 ST3 beta-galactoside alpha-2,3-sialyltransferase 2 Novel U 0.00040992701031999186 -0.2921032528547729 1.0 15923 +100310846 ANKRD61 ankyrin repeat domain 61 Novel U 0.0004097885193713232 -0.2921044468814127 1.0 15924 +27434 POLM DNA polymerase mu Novel N 0.0004097184334757022 -0.2921050511405881 1.0 15925 +55859 BEX1 brain expressed X-linked 1 Novel U 0.00040971597231355666 -0.2921050723599761 1.0 15926 +91664 ZNF845 zinc finger protein 845 Novel U 0.0004096551744833659 -0.29210559654028956 1.0 15927 +23600 AMACR alpha-methylacyl-CoA racemase Novel N 0.0004096420292564194 -0.2921057098744194 1.0 15928 +64902 AGXT2 alanine--glyoxylate aminotransferase 2 Novel N 0.00040959984909047736 -0.29210607353892093 1.0 15929 +10915 TCERG1 transcription elongation regulator 1 Novel N 0.00040945698906020184 -0.29210730523444717 1.0 15930 +390031 SSU72L2 SSU72 like 2 Novel U 0.0004091598703699795 -0.2921098669010017 1.0 15931 +59269 HIVEP3 HIVEP zinc finger 3 Novel N 0.00040907283709451725 -0.2921106172753074 1.0 15932 +5650 KLK7 kallikrein related peptidase 7 Novel U 0.000409069767807842 -0.2921106437377592 1.0 15933 +140894 CNBD2 cyclic nucleotide binding domain containing 2 Novel U 0.0004089959612619667 -0.2921112800752442 1.0 15934 +653427 FOXD4L5 forkhead box D4 like 5 Novel U 0.00040881626293448543 -0.29211282937931204 1.0 15935 +159 ADSS2 adenylosuccinate synthase 2 Novel N 0.00040876818968297744 -0.2921132438521965 1.0 15936 +146395 GSG1L GSG1 like Novel U 0.00040876368454736457 -0.2921132826940991 1.0 15937 +137735 ABRA actin binding Rho activating protein Novel U 0.00040869718686061755 -0.29211385601683404 1.0 15938 +7498 XDH xanthine dehydrogenase Novel U 0.0004086792697647272 -0.29211401049255975 1.0 15939 +444 ASPH aspartate beta-hydroxylase Novel U 0.0004086700507493155 -0.29211408997609356 1.0 15940 +57570 TRMT5 tRNA methyltransferase 5 Novel N 0.00040860933861865546 -0.2921146134175318 1.0 15941 +342909 ZNF284 zinc finger protein 284 Novel U 0.0004085153368826803 -0.2921154238717747 1.0 15942 +57415 CEP15 centrosomal protein 15 Novel U 0.00040838625827236666 -0.2921165367481094 1.0 15943 +25888 ZNF473 zinc finger protein 473 Novel N 0.00040837764976635235 -0.29211661096801766 1.0 15944 +81832 NETO1 neuropilin and tolloid like 1 Novel U 0.0004083084734427464 -0.2921172073851411 1.0 15945 +5939 RBMS2 RNA binding motif single stranded interacting protein 2 Novel N 0.00040815742990271117 -0.29211850963638786 1.0 15946 +340562 SATL1 spermidine/spermine N1-acetyl transferase like 1 Novel U 0.00040814044856844837 -0.2921186560442628 1.0 15947 +112488739 TAF11L12 TATA-box binding protein associated factor 11 like 12 Novel U 0.00040806373624508634 -0.2921193174344733 1.0 15948 +51050 PI15 peptidase inhibitor 15 Novel U 0.00040786809529045297 -0.2921210041910008 1.0 15949 +23099 ZBTB43 zinc finger and BTB domain containing 43 Novel U 0.00040770260953196973 -0.2921224309586418 1.0 15950 +4482 MSRA methionine sulfoxide reductase A Novel N 0.0004076896937572193 -0.29212254231450496 1.0 15951 +6541 SLC7A1 solute carrier family 7 member 1 Novel U 0.0004074972940925774 -0.2921242011256206 1.0 15952 +58496 LY6G5B lymphocyte antigen 6 family member G5B Novel U 0.00040742594397092855 -0.29212481628456655 1.0 15953 +57471 ERMN ermin Novel U 0.00040733076454339736 -0.29212563689250604 1.0 15954 +100126572 GJE1 gap junction protein epsilon 1 Novel U 0.00040730579271414693 -0.29212585219198706 1.0 15955 +9249 DHRS3 dehydrogenase/reductase 3 Novel N 0.0004070861292955916 -0.2921277460628578 1.0 15956 +140467 ZNF358 zinc finger protein 358 Novel U 0.0004069217257097663 -0.2921291635003368 1.0 15957 +112812 FDX2 ferredoxin 2 Novel U 0.0004069122043455093 -0.29212924559062997 1.0 15958 +6792 CDKL5 cyclin dependent kinase like 5 Novel U 0.000406897731473671 -0.2921293703713084 1.0 15959 +440307 TTLL13 tubulin tyrosine ligase like 13 Novel U 0.0004068588316240912 -0.29212970575392455 1.0 15960 +58527 ABRACL ABRA C-terminal like Novel U 0.00040685282093925904 -0.2921297575762124 1.0 15961 +79814 AGMAT agmatinase (putative) Novel N 0.00040675780811316644 -0.29213057674776527 1.0 15962 +54811 ZNF562 zinc finger protein 562 Novel U 0.00040668732816711775 -0.2921311844043231 1.0 15963 +283927 NUDT7 nudix hydrolase 7 Novel U 0.000406617904709875 -0.2921317829521572 1.0 15964 +126626 GABPB2 GA binding protein transcription factor subunit beta 2 Novel N 0.00040658495613207486 -0.29213206702472666 1.0 15965 +51742 ARID4B AT-rich interaction domain 4B Novel U 0.0004065654844649048 -0.29213223490349094 1.0 15966 +158062 LCN6 lipocalin 6 Novel U 0.00040649526921745415 -0.2921328402778983 1.0 15967 +113235 SLC46A1 solute carrier family 46 member 1 Novel U 0.0004064745242822853 -0.2921330191343901 1.0 15968 +8370 H4C14 H4 clustered histone 14 Novel U 0.00040646733960160875 -0.29213308107851144 1.0 15969 +729396 GAGE12J G antigen 12J Novel U 0.0004063267186876686 -0.29213429346906095 1.0 15970 +4709 NDUFB3 NADH:ubiquinone oxidoreductase subunit B3 Novel N 0.00040603917316033017 -0.2921367725987304 1.0 15971 +10180 RBM6 RNA binding motif protein 6 Novel N 0.0004058965278458035 -0.29213800244304317 1.0 15972 +4774 NFIA nuclear factor I A Novel U 0.00040578336144698416 -0.29213897812915274 1.0 15973 +79739 TTLL7 tubulin tyrosine ligase like 7 Novel N 0.0004056370599530555 -0.29214023949592705 1.0 15974 +2717 GLA galactosidase alpha Novel U 0.00040540981487763165 -0.2921421987335265 1.0 15975 +347365 ITIH6 inter-alpha-trypsin inhibitor heavy chain family member 6 Novel U 0.0004050249747903043 -0.2921455167071612 1.0 15976 +54414 SIAE sialic acid acetylesterase Novel N 0.00040497618441374543 -0.2921459373628787 1.0 15977 +7919 DDX39B DExD-box helicase 39B Novel N 0.0004049467973085147 -0.29214619072952 1.0 15978 +26503 SLC17A5 solute carrier family 17 member 5 Novel N 0.00040471748209853104 -0.292148167815187 1.0 15979 +55095 SAMD4B sterile alpha motif domain containing 4B Novel U 0.00040450581613928695 -0.2921499927344074 1.0 15980 +344018 FIGLA folliculogenesis specific bHLH transcription factor Novel N 0.0004044722281979922 -0.29215028231937357 1.0 15981 +55812 SPATA7 spermatogenesis associated 7 Novel U 0.0004041505822259171 -0.2921530554526572 1.0 15982 +56062 KLHL4 kelch like family member 4 Novel U 0.0004037185210528823 -0.2921567805520632 1.0 15983 +276 AMY1A amylase alpha 1A Novel N 0.0004034587081953672 -0.2921590205791279 1.0 15984 +56956 LHX9 LIM homeobox 9 Novel U 0.00040339451882382576 -0.29215957400027454 1.0 15985 +54550 NECAB2 N-terminal EF-hand calcium binding protein 2 Novel U 0.00040338088680096594 -0.29215969153141 1.0 15986 +25774 GSTT4 glutathione S-transferase theta 4 Novel U 0.00040281795108527 -0.2921645449911306 1.0 15987 +5554 PRH1 proline rich protein HaeIII subfamily 1 Novel U 0.0004027918812959831 -0.29216476975688754 1.0 15988 +22929 SEPHS1 selenophosphate synthetase 1 Novel N 0.0004026038553181774 -0.29216639085941176 1.0 15989 +2072 ERCC4 ERCC excision repair 4, endonuclease catalytic subunit Novel U 0.00040251471869190333 -0.2921671593681654 1.0 15990 +3048 HBG2 hemoglobin subunit gamma 2 Novel U 0.0004024454525476194 -0.2921677565596953 1.0 15991 +9337 CNOT8 CCR4-NOT transcription complex subunit 8 Novel N 0.0004023191556983017 -0.29216884545253674 1.0 15992 +257044 CATSPERE catsper channel auxiliary subunit epsilon Novel U 0.00040214993363977506 -0.292170304433415 1.0 15993 +6415 SELENOW selenoprotein W Novel U 0.0004020231969990772 -0.2921713971180033 1.0 15994 +114794 ELFN2 extracellular leucine rich repeat and fibronectin type III domain containing 2 Novel U 0.00040190966775860063 -0.2921723759324228 1.0 15995 +55363 HEMGN hemogen Novel U 0.0004018073302651834 -0.29217325825501905 1.0 15996 +131616 TMEM42 transmembrane protein 42 Novel U 0.0004017084474319236 -0.2921741107925911 1.0 15997 +399474 TMEM200B transmembrane protein 200B Novel U 0.00040164516488556804 -0.2921746563953681 1.0 15998 +6954 TCP11 t-complex 11 Novel U 0.00040163069273473794 -0.2921747811698302 1.0 15999 +84992 PIGY phosphatidylinositol glycan anchor biosynthesis class Y Novel U 0.00040134055274954625 -0.29217728266812243 1.0 16000 +146894 CD300LG CD300 molecule like family member g Novel U 0.0004011547199649795 -0.2921788848616048 1.0 16001 +54623 PAF1 PAF1 homolog, Paf1/RNA polymerase II complex component Novel N 0.00040101635113569775 -0.29218007783536853 1.0 16002 +56108 PCDHGA7 protocadherin gamma subfamily A, 7 Novel U 0.0004010005098561451 -0.29218021441404013 1.0 16003 +124222 PAQR4 progestin and adipoQ receptor family member 4 Novel U 0.00040097515741386 -0.2921804329950504 1.0 16004 +148523 CIART circadian associated repressor of transcription Novel U 0.0004007178187645874 -0.2921826516902477 1.0 16005 +5918 RARRES1 retinoic acid receptor responder 1 Novel U 0.00040059090050376334 -0.2921837459407092 1.0 16006 +79875 THSD4 thrombospondin type 1 domain containing 4 Novel U 0.00040055941103325895 -0.29218401743330147 1.0 16007 +9435 CHST2 carbohydrate sulfotransferase 2 Novel N 0.00040054820457693463 -0.29218411405194344 1.0 16008 +8570 KHSRP KH-type splicing regulatory protein Novel U 0.00040040264804340557 -0.2921853689958968 1.0 16009 +139628 FOXR2 forkhead box R2 Novel U 0.00040039100761792294 -0.2921854693560883 1.0 16010 +26122 EPC2 enhancer of polycomb homolog 2 Novel N 0.0004002845588543983 -0.2921863871247991 1.0 16011 +3038 HAS3 hyaluronan synthase 3 Novel U 0.00040027499115418867 -0.29218646961458666 1.0 16012 +220047 CCDC83 coiled-coil domain containing 83 Novel U 0.00040015470251910024 -0.292187506706441 1.0 16013 +57578 UNC79 unc-79 homolog, NALCN channel complex subunit Novel U 0.0003999364673680971 -0.29218938826322527 1.0 16014 +10459 MAD2L2 mitotic arrest deficient 2 like 2 Novel U 0.00039952543216264304 -0.2921929320831639 1.0 16015 +51068 NMD3 NMD3 ribosome export adaptor Novel U 0.00039952277987729905 -0.29219295495035763 1.0 16016 +100287045 FAM90A26 family with sequence similarity 90 member A26 Novel U 0.00039911638468688915 -0.2921964587655044 1.0 16017 +113655 MFSD3 major facilitator superfamily domain containing 3 Novel U 0.00039873839573299454 -0.29219971767076014 1.0 16018 +57188 ADAMTSL3 ADAMTS like 3 Novel U 0.0003982596334936663 -0.292203845412489 1.0 16019 +57864 SLC46A2 solute carrier family 46 member 2 Novel U 0.00039824266857690764 -0.29220399167881717 1.0 16020 +51533 PHF7 PHD finger protein 7 Novel U 0.00039813199624548734 -0.2922049458618398 1.0 16021 +123904 NRN1L neuritin 1 like Novel U 0.0003974996597969674 -0.2922103976734715 1.0 16022 +90288 EFCAB12 EF-hand calcium binding domain 12 Novel U 0.000397306175520923 -0.29221206583577525 1.0 16023 +25942 SIN3A SIN3 transcription regulator family member A Novel U 0.00039708222349396264 -0.2922139966817172 1.0 16024 +147923 ZNF420 zinc finger protein 420 Novel U 0.0003970208783916166 -0.292214525580444 1.0 16025 +57691 KIAA1586 KIAA1586 Novel N 0.0003968485317162094 -0.2922160115008141 1.0 16026 +388662 SLC6A17 solute carrier family 6 member 17 Novel U 0.0003968356842361246 -0.29221612226786153 1.0 16027 +2294 FOXF1 forkhead box F1 Novel U 0.00039666246650141014 -0.2922176156982389 1.0 16028 +340485 ACER2 alkaline ceramidase 2 Novel U 0.00039640855872527834 -0.2922198048134964 1.0 16029 +55217 TMLHE trimethyllysine hydroxylase, epsilon Novel N 0.00039568009789873917 -0.292226085380142 1.0 16030 +115948 ODAD3 outer dynein arm docking complex subunit 3 Novel N 0.00039566049461591473 -0.29222625439365624 1.0 16031 +54993 ZSCAN2 zinc finger and SCAN domain containing 2 Novel U 0.0003954378697422306 -0.29222817379728816 1.0 16032 +5452 POU2F2 POU class 2 homeobox 2 Novel N 0.0003953455785221116 -0.2922289695039859 1.0 16033 +51088 KLHL5 kelch like family member 5 Novel U 0.00039474501563435227 -0.2922341473736861 1.0 16034 +147686 ZNF418 zinc finger protein 418 Novel U 0.0003941111662295258 -0.29223961222956474 1.0 16035 +59335 PRDM12 PR/SET domain 12 Novel U 0.00039410096923959856 -0.2922397001448959 1.0 16036 +125919 ZNF543 zinc finger protein 543 Novel U 0.000393764883442695 -0.29224259777393685 1.0 16037 +54148 MRPL39 mitochondrial ribosomal protein L39 Novel U 0.00039376231567325314 -0.2922426199124603 1.0 16038 +81794 ADAMTS10 ADAM metallopeptidase with thrombospondin type 1 motif 10 Novel U 0.0003937391759733476 -0.29224281941588187 1.0 16039 +25984 KRT23 keratin 23 Novel U 0.000392979013989962 -0.2922493733002147 1.0 16040 +5446 PON3 paraoxonase 3 Novel U 0.0003929722062834355 -0.29224943199418013 1.0 16041 +9120 SLC16A6 solute carrier family 16 member 6 Novel U 0.00039296755371951136 -0.29224947210716457 1.0 16042 +649137 ZSCAN5C zinc finger and SCAN domain containing 5C Novel U 0.0003924064821833272 -0.29225430949449904 1.0 16043 +79947 DHDDS dehydrodolichyl diphosphate synthase subunit Novel U 0.0003923289880450096 -0.2922549776252792 1.0 16044 +54886 PLPPR1 phospholipid phosphatase related 1 Novel U 0.0003919065780266388 -0.2922586195153789 1.0 16045 +644186 SYCE3 synaptonemal complex central element protein 3 Novel U 0.00039171895542049775 -0.29226023714015587 1.0 16046 +100190949 C5orf52 chromosome 5 open reading frame 52 Novel U 0.00039162436378869516 -0.2922610526803003 1.0 16047 +122651 RNASE11 ribonuclease A family member 11 (inactive) Novel U 0.00039155134590874844 -0.2922616822181486 1.0 16048 +7455 ZAN zonadhesin Novel U 0.0003914830230999122 -0.29226227127652854 1.0 16049 +353189 SLCO4C1 solute carrier organic anion transporter family member 4C1 Novel N 0.0003913781437605416 -0.2922631755141439 1.0 16050 +125115 KRT40 keratin 40 Novel U 0.0003912744813765803 -0.29226406925954157 1.0 16051 +347732 CATSPER3 cation channel sperm associated 3 Novel U 0.00039127122515185154 -0.2922640973337161 1.0 16052 +5883 RAD9A RAD9 checkpoint clamp component A Novel U 0.00039114606674700044 -0.2922651764112373 1.0 16053 +55609 ZNF280C zinc finger protein 280C Novel U 0.00039088835071502006 -0.29226739836011295 1.0 16054 +57721 METTL14 methyltransferase 14, N6-adenosine-methyltransferase non-catalytic subunit Novel N 0.0003907963752600967 -0.2922681913443797 1.0 16055 +54823 SWT1 SWT1 RNA endoribonuclease homolog Novel U 0.00039072436955973666 -0.2922688121555249 1.0 16056 +7694 ZNF135 zinc finger protein 135 Novel U 0.00039063630737270875 -0.29226957140079174 1.0 16057 +54816 ZNF280D zinc finger protein 280D Novel U 0.0003904462093141286 -0.2922712103681632 1.0 16058 +113675 SDSL serine dehydratase like Novel U 0.00039036646688253384 -0.292271897883041 1.0 16059 +56478 EIF4ENIF1 eukaryotic translation initiation factor 4E nuclear import factor 1 Novel U 0.00039029606492463 -0.2922725048672088 1.0 16060 +440822 PIWIL3 piwi like RNA-mediated gene silencing 3 Novel U 0.0003902462177421026 -0.2922729346343844 1.0 16061 +146434 ZNF597 zinc finger protein 597 Novel U 0.00039019535239097813 -0.29227337317989854 1.0 16062 +49854 ZBTB21 zinc finger and BTB domain containing 21 Novel N 0.00039018716008412695 -0.29227344381146486 1.0 16063 +10005 ACOT8 acyl-CoA thioesterase 8 Novel U 0.00039018419975147335 -0.2922734693345484 1.0 16064 +283212 KLHL35 kelch like family member 35 Novel U 0.00039003906212298136 -0.2922747206668305 1.0 16065 +57484 RNF150 ring finger protein 150 Novel U 0.00038959084008281954 -0.29227858510029453 1.0 16066 +80863 PRRT1 proline rich transmembrane protein 1 Novel U 0.0003894138562129376 -0.2922801110011385 1.0 16067 +200010 SLC5A9 solute carrier family 5 member 9 Novel N 0.0003891518100093221 -0.2922823702834308 1.0 16068 +51103 NDUFAF1 NADH:ubiquinone oxidoreductase complex assembly factor 1 Novel N 0.0003891434589691857 -0.292282442283547 1.0 16069 +85446 ZFHX2 zinc finger homeobox 2 Novel U 0.0003890687016402628 -0.29228308681839277 1.0 16070 +29088 MRPL15 mitochondrial ribosomal protein L15 Novel U 0.0003886221402481217 -0.292286936934257 1.0 16071 +58487 CREBZF CREB/ATF bZIP transcription factor Novel U 0.0003884319359894677 -0.2922885768172531 1.0 16072 +9555 MACROH2A1 macroH2A.1 histone Novel U 0.00038809367360368975 -0.2922914932121781 1.0 16073 +219527 LRRC55 leucine rich repeat containing 55 Novel N 0.0003880684534649264 -0.29229171065250786 1.0 16074 +3347 HTN3 histatin 3 Novel N 0.0003879058212133205 -0.29229311281808457 1.0 16075 +83693 HSDL1 hydroxysteroid dehydrogenase like 1 Novel U 0.0003878876369309055 -0.2922932695974108 1.0 16076 +257062 CATSPERD cation channel sperm associated auxiliary subunit delta Novel U 0.00038739023831599545 -0.2922975580162751 1.0 16077 +285268 ZNF621 zinc finger protein 621 Novel U 0.0003873516495177511 -0.29229789071710166 1.0 16078 +158511 CSAG1 chondrosarcoma associated gene 1 Novel N 0.00038695952009766365 -0.292301271537136 1.0 16079 +80209 PROSER1 proline and serine rich 1 Novel U 0.0003869426663797476 -0.2923014168447418 1.0 16080 +196743 PAOX polyamine oxidase Novel N 0.00038681051520248914 -0.2923025562118098 1.0 16081 +8335 H2AC4 H2A clustered histone 4 Novel N 0.0003867735228787526 -0.292302875148321 1.0 16082 +731220 RFX8 regulatory factor X8 Novel U 0.0003867652276160246 -0.29230294666754136 1.0 16083 +57615 ZNF492 zinc finger protein 492 Novel U 0.00038638858885870294 -0.2923061939318149 1.0 16084 +65988 ZNF747 zinc finger protein 747 Novel U 0.0003863159542449648 -0.2923068201652591 1.0 16085 +3149 HMGB3 high mobility group box 3 Novel N 0.00038606310328618453 -0.29230900016896033 1.0 16086 +55900 ZNF302 zinc finger protein 302 Novel U 0.00038598264382623564 -0.2923096938658375 1.0 16087 +115950 ZNF653 zinc finger protein 653 Novel N 0.00038532987631961486 -0.2923153218278089 1.0 16088 +100289635 ZNF605 zinc finger protein 605 Novel U 0.00038529496726028207 -0.29231562280305107 1.0 16089 +6473 SHOX SHOX homeobox Novel U 0.00038500473306807406 -0.2923181251135674 1.0 16090 +84240 ZCCHC9 zinc finger CCHC-type containing 9 Novel U 0.00038477115074717733 -0.29232013898896086 1.0 16091 +7634 ZNF80 zinc finger protein 80 Novel U 0.00038473303637035216 -0.292320467599471 1.0 16092 +8930 MBD4 methyl-CpG binding domain 4, DNA glycosylase Novel U 0.0003847181041896259 -0.2923205963401702 1.0 16093 +5514 PPP1R10 protein phosphatase 1 regulatory subunit 10 Novel U 0.00038467077049194476 -0.29232100443684755 1.0 16094 +758 MPPED1 metallophosphoesterase domain containing 1 Novel U 0.0003846192957814702 -0.2923214482360718 1.0 16095 +85460 ZNF518B zinc finger protein 518B Novel U 0.0003844660226395083 -0.29232276971026505 1.0 16096 +127550 A3GALT2 alpha 1,3-galactosyltransferase 2 Novel U 0.0003842388682310199 -0.29232472816616195 1.0 16097 +3012 H2AC8 H2A clustered histone 8 Novel N 0.0003839043541966645 -0.2923276122439464 1.0 16098 +730262 PPIAL4E peptidylprolyl isomerase A like 4E Novel U 0.00038384300901418445 -0.29232814114336403 1.0 16099 +391013 PLA2G2C phospholipase A2 group IIC Novel U 0.00038375866481833303 -0.29232886833324706 1.0 16100 +51574 LARP7 La ribonucleoprotein 7, transcriptional regulator Novel U 0.00038362014887727465 -0.2923300625753636 1.0 16101 +29947 DNMT3L DNA methyltransferase 3 like Novel N 0.0003835744563941157 -0.29233045652199086 1.0 16102 +147949 ZNF583 zinc finger protein 583 Novel U 0.0003835699619344518 -0.2923304952718487 1.0 16103 +7366 UGT2B15 UDP glucuronosyltransferase family 2 member B15 Novel N 0.00038325934322919376 -0.2923331733314075 1.0 16104 +25925 ZNF521 zinc finger protein 521 Novel U 0.00038303753195530226 -0.2923350857204306 1.0 16105 +140612 ZFP28 ZFP28 zinc finger protein Novel U 0.00038296969176905066 -0.2923356706177861 1.0 16106 +51087 YBX2 Y-box binding protein 2 Novel N 0.00038271250079440795 -0.29233788803977784 1.0 16107 +254427 PROSER2 proline and serine rich 2 Novel U 0.0003826007039801044 -0.29233885191774817 1.0 16108 +10741 RBBP9 RB binding protein 9, serine hydrolase Novel U 0.0003825558019161626 -0.29233923904962245 1.0 16109 +9204 ZMYM6 zinc finger MYM-type containing 6 Novel U 0.00038253055738329475 -0.2923394567002707 1.0 16110 +771 CA12 carbonic anhydrase 12 Novel N 0.0003824375765703046 -0.29234025835242755 1.0 16111 +89801 PPP1R3F protein phosphatase 1 regulatory subunit 3F Novel U 0.0003824038242824954 -0.2923405493543391 1.0 16112 +7439 BEST1 bestrophin 1 Novel U 0.00038225395430869976 -0.2923418414874564 1.0 16113 +81932 HDHD3 haloacid dehalogenase like hydrolase domain containing 3 Novel U 0.000382240634617389 -0.29234195632576465 1.0 16114 +25949 SYF2 SYF2 pre-mRNA splicing factor Novel N 0.0003822312249556584 -0.29234203745299275 1.0 16115 +8208 CHAF1B chromatin assembly factor 1 subunit B Novel N 0.00038221124139413003 -0.29234220974515374 1.0 16116 +26173 INTS1 integrator complex subunit 1 Novel N 0.0003821559391635655 -0.2923426865440865 1.0 16117 +57571 CARNS1 carnosine synthase 1 Novel N 0.00038194934252727724 -0.2923444677571535 1.0 16118 +128434 VSTM2L V-set and transmembrane domain containing 2 like Novel N 0.00038149256163740573 -0.29234840598240425 1.0 16119 +23059 CLUAP1 clusterin associated protein 1 Novel U 0.00038140366875014195 -0.2923491723897147 1.0 16120 +391059 FRRS1 ferric chelate reductase 1 Novel U 0.00038117241934708715 -0.2923511661514034 1.0 16121 +7733 ZNF180 zinc finger protein 180 Novel U 0.0003810890453551406 -0.29235188497648473 1.0 16122 +80162 PGGHG protein-glucosylgalactosylhydroxylysine glucosidase Novel N 0.00038102223979003344 -0.2923524609536528 1.0 16123 +283383 ADGRD1 adhesion G protein-coupled receptor D1 Novel N 0.00038092645398037355 -0.29235328678963385 1.0 16124 +84289 ING5 inhibitor of growth family member 5 Novel N 0.0003808292176944685 -0.29235412513117776 1.0 16125 +6723 SRM spermidine synthase Novel N 0.0003807932814871434 -0.292354434962176 1.0 16126 +149647 GARIN4 golgi associated RAB2 interactor family member 4 Novel U 0.00038066250637461415 -0.2923555624652344 1.0 16127 +64326 COP1 COP1 E3 ubiquitin ligase Novel U 0.0003805615942673238 -0.292356432498587 1.0 16128 +284371 ZNF841 zinc finger protein 841 Novel U 0.0003803848565505366 -0.2923579562771742 1.0 16129 +515 ATP5PB ATP synthase peripheral stalk-membrane subunit b Novel N 0.0003802662609521628 -0.29235897877218336 1.0 16130 +128861 BPIFA3 BPI fold containing family A member 3 Novel U 0.00038016425192006126 -0.29235985826288646 1.0 16131 +63875 MRPL17 mitochondrial ribosomal protein L17 Novel U 0.00038005773763165454 -0.29236077659653287 1.0 16132 +151242 PPP1R1C protein phosphatase 1 regulatory inhibitor subunit 1C Novel U 0.00037989207165552174 -0.2923622049179554 1.0 16133 +388753 COA6 cytochrome c oxidase assembly factor 6 Novel U 0.00037973186779697546 -0.2923635861466692 1.0 16134 +441521 CT45A5 cancer/testis antigen family 45 member A5 Novel U 0.00037962652014577426 -0.292364494421926 1.0 16135 +9205 ZMYM5 zinc finger MYM-type containing 5 Novel N 0.00037962205433395723 -0.29236453292479087 1.0 16136 +92162 TMEM88 transmembrane protein 88 Novel U 0.00037923745369464754 -0.29236784883397793 1.0 16137 +51249 TMEM69 transmembrane protein 69 Novel U 0.0003791287236297822 -0.2923687862713718 1.0 16138 +284129 SLC26A11 solute carrier family 26 member 11 Novel N 0.00037910013684941217 -0.2923690327378567 1.0 16139 +254863 TMEM256 transmembrane protein 256 Novel U 0.0003788272419736164 -0.2923713855540855 1.0 16140 +645369 TMEM200C transmembrane protein 200C Novel U 0.0003787728705855699 -0.29237185432757856 1.0 16141 +222698 NKAPL NFKB activating protein like Novel U 0.0003785686533064805 -0.29237361502655473 1.0 16142 +9143 SYNGR3 synaptogyrin 3 Novel U 0.00037846168801327625 -0.29237453724862666 1.0 16143 +27151 CPAMD8 C3 and PZP like alpha-2-macroglobulin domain containing 8 Novel N 0.0003783627020072446 -0.2923753906757228 1.0 16144 +353238 PADI6 peptidyl arginine deiminase 6 Novel N 0.00037823769456747777 -0.2923764684516691 1.0 16145 +389643 NUGGC nuclear GTPase, germinal center associated Novel U 0.00037813802943997496 -0.29237732773394304 1.0 16146 +80221 ACSF2 acyl-CoA synthetase family member 2 Novel N 0.0003780866689820105 -0.2923777705481171 1.0 16147 +9377 COX5A cytochrome c oxidase subunit 5A Novel U 0.00037784785786236855 -0.2923798295046155 1.0 16148 +10047 CST8 cystatin 8 Novel U 0.0003775105670030435 -0.29238273752333627 1.0 16149 +29122 PRSS50 serine protease 50 Novel N 0.0003771422976669594 -0.2923859126290174 1.0 16150 +1107 CHD3 chromodomain helicase DNA binding protein 3 Novel N 0.00037711080376376035 -0.292386184159827 1.0 16151 +57795 BRINP2 BMP/retinoic acid inducible neural specific 2 Novel U 0.0003770581177778531 -0.29238663840229784 1.0 16152 +6894 TARBP1 TAR (HIV-1) RNA binding protein 1 Novel N 0.00037691930078776967 -0.2923878352399671 1.0 16153 +5977 DPF2 double PHD fingers 2 Novel U 0.00037689020948300744 -0.2923880860563072 1.0 16154 +9060 PAPSS2 3'-phosphoadenosine 5'-phosphosulfate synthase 2 Novel N 0.00037661498866369453 -0.2923904589261101 1.0 16155 +147741 ZNF560 zinc finger protein 560 Novel U 0.00037633558681626474 -0.2923928678434599 1.0 16156 +25948 KBTBD2 kelch repeat and BTB domain containing 2 Novel U 0.0003762477938144287 -0.29239362476789427 1.0 16157 +56898 BDH2 3-hydroxybutyrate dehydrogenase 2 Novel N 0.00037606051127370615 -0.29239523946073115 1.0 16158 +7011 TEP1 telomerase associated protein 1 Novel U 0.0003760308915699755 -0.2923954948327656 1.0 16159 +166348 KBTBD12 kelch repeat and BTB domain containing 12 Novel U 0.00037597553177829286 -0.2923959721279728 1.0 16160 +84987 COX14 cytochrome c oxidase assembly factor COX14 Novel U 0.0003758991712570133 -0.29239663048505327 1.0 16161 +54753 ZNF853 zinc finger protein 853 Novel U 0.0003756150602861443 -0.29239908000302633 1.0 16162 +117144 CATSPER1 cation channel sperm associated 1 Novel N 0.0003755873510781371 -0.2923993189033505 1.0 16163 +388394 RPRML reprimo like Novel U 0.0003755570726571415 -0.29239957995464394 1.0 16164 +6697 SPR sepiapterin reductase Novel N 0.0003755108576588327 -0.2923999784062371 1.0 16165 +23483 TGDS TDP-glucose 4,6-dehydratase Novel U 0.0003754804630441784 -0.29240024045931684 1.0 16166 +722 C4BPA complement component 4 binding protein alpha Novel U 0.0003754172177314301 -0.292400785741077 1.0 16167 +51092 SIDT2 SID1 transmembrane family member 2 Novel N 0.00037531831460700996 -0.2924016384535933 1.0 16168 +6297 SALL2 spalt like transcription factor 2 Novel N 0.00037523704983122747 -0.2924023390936574 1.0 16169 +344065 ZNF892 zinc finger protein 892 Novel U 0.0003748262213260847 -0.2924058811314891 1.0 16170 +114131 UCN3 urocortin 3 Novel N 0.00037471360915850206 -0.2924068520391863 1.0 16171 +51091 SEPSECS Sep (O-phosphoserine) tRNA:Sec (selenocysteine) tRNA synthase Novel N 0.00037470753366168234 -0.29240690442026335 1.0 16172 +51733 UPB1 beta-ureidopropionase 1 Novel U 0.0003745897618415694 -0.292407919812908 1.0 16173 +56000 NXF3 nuclear RNA export factor 3 Novel N 0.0003745793323631969 -0.2924080097326835 1.0 16174 +3712 IVD isovaleryl-CoA dehydrogenase Novel N 0.00037454235066807705 -0.2924083285775581 1.0 16175 +63934 ZNF667 zinc finger protein 667 Novel U 0.00037425381154750336 -0.2924108162736848 1.0 16176 +29902 FAM216A family with sequence similarity 216 member A Novel U 0.0003742422698687837 -0.2924109157825119 1.0 16177 +646498 C3orf84 chromosome 3 open reading frame 84 Novel U 0.0003741423695134294 -0.2924117770928485 1.0 16178 +2962 GTF2F1 general transcription factor IIF subunit 1 Novel U 0.0003736595819471289 -0.29241593953971645 1.0 16179 +5172 SLC26A4 solute carrier family 26 member 4 Novel U 0.00037355592770632986 -0.29241683321490625 1.0 16180 +2555 GABRA2 gamma-aminobutyric acid type A receptor subunit alpha2 Novel U 0.00037355203942958176 -0.2924168667384402 1.0 16181 +100289678 ZNF783 zinc finger protein 783 Novel U 0.0003733630996526182 -0.29241849571946155 1.0 16182 +55810 FOXJ2 forkhead box J2 Novel U 0.00037333440220687665 -0.2924187431400695 1.0 16183 +400823 FAM177B family with sequence similarity 177 member B Novel U 0.0003725851459156523 -0.29242520299885705 1.0 16184 +83643 CCDC3 coiled-coil domain containing 3 Novel N 0.0003720449131949355 -0.29242986072029237 1.0 16185 +96764 TGS1 trimethylguanosine synthase 1 Novel N 0.0003719363240546702 -0.29243079694267743 1.0 16186 +10102 TSFM Ts translation elongation factor, mitochondrial Novel U 0.00037180308928972257 -0.29243194565210734 1.0 16187 +152485 ZNF827 zinc finger protein 827 Novel U 0.0003717851807381509 -0.29243210005416653 1.0 16188 +11320 MGAT4A alpha-1,3-mannosyl-glycoprotein 4-beta-N-acetylglucosaminyltransferase A Novel U 0.0003717322025915824 -0.2924325568155574 1.0 16189 +55174 INTS10 integrator complex subunit 10 Novel N 0.00037172508553078455 -0.29243261817668076 1.0 16190 +9152 SLC6A5 solute carrier family 6 member 5 Novel U 0.0003714417921750777 -0.2924350606454258 1.0 16191 +116238 TLCD1 TLC domain containing 1 Novel U 0.0003713122935906938 -0.2924361771426486 1.0 16192 +84318 CCDC77 coiled-coil domain containing 77 Novel U 0.00037110491034648654 -0.29243796513760856 1.0 16193 +401036 ASB18 ankyrin repeat and SOCS box containing 18 Novel U 0.00037100750409898995 -0.2924388049445094 1.0 16194 +57573 ZNF471 zinc finger protein 471 Novel U 0.0003708277287498811 -0.2924403549126342 1.0 16195 +222229 LRWD1 leucine rich repeats and WD repeat domain containing 1 Novel U 0.00037082718443979515 -0.2924403596055095 1.0 16196 +402117 VWC2L von Willebrand factor C domain containing 2 like Novel U 0.0003706149302912373 -0.2924421895959184 1.0 16197 +163081 ZNF567 zinc finger protein 567 Novel U 0.0003705751227906359 -0.2924425328040243 1.0 16198 +3293 HSD17B3 hydroxysteroid 17-beta dehydrogenase 3 Novel N 0.0003704820892639931 -0.29244333491066216 1.0 16199 +57456 KIAA1143 KIAA1143 Novel U 0.00037031277074120266 -0.2924447947232258 1.0 16200 +157869 SBSPON somatomedin B and thrombospondin type 1 domain containing Novel U 0.0003702825513566181 -0.29244505526552533 1.0 16201 +3221 HOXC4 homeobox C4 Novel N 0.0003700699837486259 -0.2924468879584857 1.0 16202 +57335 ZNF286A zinc finger protein 286A Novel U 0.0003699773418491666 -0.29244768668863363 1.0 16203 +22847 ZNF507 zinc finger protein 507 Novel U 0.0003696850336118008 -0.29245020688093354 1.0 16204 +5433 POLR2D RNA polymerase II subunit D Novel N 0.00036929421805625376 -0.29245357637322933 1.0 16205 +8725 URI1 URI1 prefoldin like chaperone Novel U 0.0003690506312633444 -0.2924556765041233 1.0 16206 +140578 CHODL chondrolectin Novel U 0.00036899858295734607 -0.29245612524871284 1.0 16207 +55163 PNPO pyridoxamine 5'-phosphate oxidase Novel N 0.00036885957772636726 -0.2924573237093376 1.0 16208 +10941 UGT2A1 UDP glucuronosyltransferase family 2 member A1 complex locus Novel N 0.0003686681528681708 -0.2924589741159699 1.0 16209 +360030 NANOGNB NANOG neighbor homeobox Novel U 0.0003686398603856729 -0.2924592180451085 1.0 16210 +50805 IRX4 iroquois homeobox 4 Novel U 0.0003684986805298973 -0.2924604352546837 1.0 16211 +54865 GPATCH4 G-patch domain containing 4 (gene/pseudogene) Novel U 0.0003683880235469504 -0.2924613893053764 1.0 16212 +6703 SPRR2D small proline rich protein 2D Novel U 0.0003683869330623023 -0.29246139870720184 1.0 16213 +23587 ELP5 elongator acetyltransferase complex subunit 5 Novel U 0.00036834790966090014 -0.2924617351550441 1.0 16214 +116039 OSR2 odd-skipped related transciption factor 2 Novel U 0.00036826323797752844 -0.2924624651684244 1.0 16215 +80319 CXXC4 CXXC finger protein 4 Novel N 0.00036825006059609144 -0.29246257877978044 1.0 16216 +9480 ONECUT2 one cut homeobox 2 Novel N 0.00036824427888759097 -0.2924626286279044 1.0 16217 +56683 CFAP298 cilia and flagella associated protein 298 Novel U 0.0003680750957127716 -0.2924640872735392 1.0 16218 +4338 MOCS2 molybdenum cofactor synthesis 2 Novel N 0.00036780236475771267 -0.29246643867649347 1.0 16219 +64094 SMOC2 SPARC related modular calcium binding 2 Novel U 0.00036777536597055457 -0.2924666714517861 1.0 16220 +56112 PCDHGA3 protocadherin gamma subfamily A, 3 Novel U 0.000367758353773076 -0.29246681812575426 1.0 16221 +245928 DEFB114 defensin beta 114 Novel U 0.00036775572112196227 -0.29246684082366764 1.0 16222 +56123 PCDHB13 protocadherin beta 13 Novel U 0.00036761888384947755 -0.29246802059281674 1.0 16223 +118472 ZNF511 zinc finger protein 511 Novel U 0.0003675444234977461 -0.292468662567216 1.0 16224 +80219 COQ10B coenzyme Q10B Novel U 0.0003675021322631592 -0.2924690271893174 1.0 16225 +130940 CCDC148 coiled-coil domain containing 148 Novel U 0.00036715914834098645 -0.2924719842918864 1.0 16226 +5178 PEG3 paternally expressed 3 Novel U 0.0003670757200008559 -0.2924727035855412 1.0 16227 +63951 DMRTA1 DMRT like family A1 Novel U 0.0003669953801449905 -0.2924733962512285 1.0 16228 +91775 NXPE3 neurexophilin and PC-esterase domain family member 3 Novel U 0.00036686833643446586 -0.29247449158327904 1.0 16229 +1478 CSTF2 cleavage stimulation factor subunit 2 Novel U 0.0003667738853179681 -0.29247530591194343 1.0 16230 +11332 ACOT7 acyl-CoA thioesterase 7 Novel N 0.0003666780253062882 -0.2924761323876715 1.0 16231 +221613 H2AC1 H2A clustered histone 1 Novel U 0.0003665720807293121 -0.29247704580943995 1.0 16232 +90826 PRMT9 protein arginine methyltransferase 9 Novel N 0.00036654029401120964 -0.2924773198648102 1.0 16233 +26150 RIBC2 RIB43A domain with coiled-coils 2 Novel U 0.0003663580095145366 -0.29247889146603856 1.0 16234 +728858 C12orf71 chromosome 12 open reading frame 71 Novel U 0.00036633726201079403 -0.29247907034467585 1.0 16235 +51728 POLR3K RNA polymerase III subunit K Novel N 0.0003662042653764142 -0.2924802170010168 1.0 16236 +83443 SF3B5 splicing factor 3b subunit 5 Novel N 0.00036619060007154656 -0.2924803348190996 1.0 16237 +6389 SDHA succinate dehydrogenase complex flavoprotein subunit A Novel U 0.0003660946321886441 -0.29248116222486037 1.0 16238 +54882 ANKHD1 ankyrin repeat and KH domain containing 1 Novel U 0.00036588801691923633 -0.29248294359857635 1.0 16239 +63926 ANKEF1 ankyrin repeat and EF-hand domain containing 1 Novel U 0.00036584626573783464 -0.2924833035645042 1.0 16240 +51022 GLRX2 glutaredoxin 2 Novel N 0.00036582826252638947 -0.29248345878269194 1.0 16241 +7574 ZNF26 zinc finger protein 26 Novel U 0.000365821268697644 -0.29248351908134623 1.0 16242 +55622 TTC27 tetratricopeptide repeat domain 27 Novel U 0.0003656447899044157 -0.2924850406275736 1.0 16243 +4678 NASP nuclear autoantigenic sperm protein Novel N 0.00036541241270787836 -0.29248704411275306 1.0 16244 +284418 GARIN5B golgi associated RAB2 interactor family member 5B Novel U 0.0003652835274483898 -0.292488155322076 1.0 16245 +158405 KIAA1958 KIAA1958 Novel U 0.0003652282465037933 -0.29248863193748775 1.0 16246 +8707 B3GALT2 beta-1,3-galactosyltransferase 2 Novel N 0.00036515521903162274 -0.2924892615580373 1.0 16247 +213 ALB albumin Novel U 0.0003649652880214812 -0.2924908990851682 1.0 16248 +6406 SEMG1 semenogelin 1 Novel U 0.00036479321876255763 -0.2924923826137382 1.0 16249 +221481 ARMC12 armadillo repeat containing 12 Novel N 0.0003646975975250794 -0.29249320703082815 1.0 16250 +51297 BPIFA1 BPI fold containing family A member 1 Novel N 0.000364647639562656 -0.29249363775311416 1.0 16251 +374462 PTPRQ protein tyrosine phosphatase receptor type Q Novel N 0.00036448056499324114 -0.29249507821899756 1.0 16252 +389362 PSMG4 proteasome assembly chaperone 4 Novel U 0.0003644513553670535 -0.29249533005546874 1.0 16253 +79153 GDPD3 glycerophosphodiester phosphodiesterase domain containing 3 Novel N 0.00036443353443729016 -0.2924954837020795 1.0 16254 +220 ALDH1A3 aldehyde dehydrogenase 1 family member A3 Novel U 0.0003642832495118693 -0.2924967794127829 1.0 16255 +11201 POLI DNA polymerase iota Novel N 0.0003641786238763951 -0.2924976814630408 1.0 16256 +284498 C1orf167 chromosome 1 open reading frame 167 Novel U 0.00036387042773762773 -0.29250033863597164 1.0 16257 +3200 HOXA3 homeobox A3 Novel U 0.00036368588384908657 -0.29250192971698624 1.0 16258 +92400 RBM18 RNA binding motif protein 18 Novel U 0.00036366731850958305 -0.2925020897816703 1.0 16259 +11067 DEPP1 DEPP autophagy regulator 1 Novel N 0.00036364038495327426 -0.29250232199456255 1.0 16260 +118980 SFXN2 sideroflexin 2 Novel N 0.00036339569455140616 -0.2925044316404357 1.0 16261 +10329 RXYLT1 ribitol xylosyltransferase 1 Novel N 0.0003630601512282334 -0.29250732459243384 1.0 16262 +5013 OTX1 orthodenticle homeobox 1 Novel N 0.00036284136064557794 -0.29250921093798016 1.0 16263 +257169 C9orf43 chromosome 9 open reading frame 43 Novel U 0.0003626934941956235 -0.2925104857973271 1.0 16264 +5959 RDH5 retinol dehydrogenase 5 Novel U 0.00036239741633552024 -0.29251303849016236 1.0 16265 +9757 KMT2B lysine methyltransferase 2B Novel U 0.0003621753615014874 -0.2925149529790866 1.0 16266 +79154 DHRS11 dehydrogenase/reductase 11 Novel N 0.00036213430222708555 -0.2925153069796037 1.0 16267 +142910 LIPJ lipase family member J Novel U 0.0003619920938799268 -0.2925165330565173 1.0 16268 +317749 DHRS4L2 dehydrogenase/reductase 4 like 2 Novel U 0.0003614214619492702 -0.2925214528706515 1.0 16269 +122704 MRPL52 mitochondrial ribosomal protein L52 Novel U 0.00036133787656826626 -0.29252217351826476 1.0 16270 +219855 SLC37A2 solute carrier family 37 member 2 Novel N 0.0003610749568389354 -0.29252444033182884 1.0 16271 +90480 GADD45GIP1 GADD45G interacting protein 1 Novel U 0.00036087117999068617 -0.292526197233545 1.0 16272 +284716 RIMKLA ribosomal modification protein rimK like family member A Novel N 0.000360805120784497 -0.29252676677583456 1.0 16273 +161779 PGBD4 piggyBac transposable element derived 4 Novel U 0.0003607728211802551 -0.2925270452531523 1.0 16274 +1579 CYP4A11 cytochrome P450 family 4 subfamily A member 11 Novel U 0.0003606916099045428 -0.29252774543195526 1.0 16275 +122773 KLHDC1 kelch domain containing 1 Novel U 0.0003606458783218834 -0.2925281397156865 1.0 16276 +11278 KLF12 KLF transcription factor 12 Novel N 0.00036063348169586236 -0.29252824659560783 1.0 16277 +131920 TMEM207 transmembrane protein 207 Novel U 0.0003605735961288574 -0.29252876291066693 1.0 16278 +197257 LDHD lactate dehydrogenase D Novel N 0.00036043956333245745 -0.2925299185004802 1.0 16279 +23169 SLC35D1 solute carrier family 35 member D1 Novel N 0.0003603925909997179 -0.2925303234815794 1.0 16280 +196951 FAM227B family with sequence similarity 227 member B Novel U 0.00036025553790710745 -0.29253150511146364 1.0 16281 +11164 NUDT5 nudix hydrolase 5 Novel N 0.00036023747822580413 -0.2925316608165172 1.0 16282 +79172 CENPO centromere protein O Novel U 0.000360094574426248 -0.29253289288940887 1.0 16283 +149563 SRARP steroid receptor associated and regulated protein Novel N 0.0003598399477618548 -0.29253508820270124 1.0 16284 +23107 MRPS27 mitochondrial ribosomal protein S27 Novel N 0.0003597996470646436 -0.2925354356629976 1.0 16285 +56242 ZNF253 zinc finger protein 253 Novel U 0.00035976086506383836 -0.2925357700295577 1.0 16286 +57092 PCNP PEST proteolytic signal containing nuclear protein Novel U 0.00035961496030748107 -0.2925370279757819 1.0 16287 +123207 C15orf40 chromosome 15 open reading frame 40 Novel U 0.0003593603237865748 -0.29253922337405414 1.0 16288 +80210 ARMC9 armadillo repeat containing 9 Novel N 0.0003593006052155858 -0.29253973824932455 1.0 16289 +6691 SPINK2 serine peptidase inhibitor Kazal type 2 Novel N 0.00035914983921197315 -0.29254103810773713 1.0 16290 +51060 TXNDC12 thioredoxin domain containing 12 Novel N 0.0003591425458044665 -0.292541100989268 1.0 16291 +56129 PCDHB7 protocadherin beta 7 Novel U 0.00035867715252652755 -0.2925451134678969 1.0 16292 +55256 ADI1 acireductone dioxygenase 1 Novel N 0.00035858168428586567 -0.292545936565895 1.0 16293 +50624 CUZD1 CUB and zona pellucida like domains 1 Novel U 0.00035852340642143 -0.2925464390198338 1.0 16294 +57613 FAM234B family with sequence similarity 234 member B Novel U 0.00035823528163059936 -0.2925489231437361 1.0 16295 +100137047 JMJD7 jumonji domain containing 7 Novel N 0.0003581597268942743 -0.2925495745535849 1.0 16296 +79871 RPAP2 RNA polymerase II associated protein 2 Novel U 0.0003580581640023339 -0.29255045019780396 1.0 16297 +84456 L3MBTL3 L3MBTL histone methyl-lysine binding protein 3 Novel U 0.0003577723228808106 -0.29255291463260724 1.0 16298 +5544 PRB3 proline rich protein BstNI subfamily 3 Novel U 0.00035750158575351045 -0.29255524884538786 1.0 16299 +116151 FAM210B family with sequence similarity 210 member B Novel U 0.00035743034959125834 -0.2925558630218107 1.0 16300 +4723 NDUFV1 NADH:ubiquinone oxidoreductase core subunit V1 Novel N 0.0003573977569664588 -0.29255614402546215 1.0 16301 +63876 PKNOX2 PBX/knotted 1 homeobox 2 Novel U 0.00035734390294411004 -0.29255660833838626 1.0 16302 +26065 LSM14A LSM14A mRNA processing body assembly factor Novel U 0.0003572968903305638 -0.2925570136667743 1.0 16303 +5558 PRIM2 DNA primase subunit 2 Novel U 0.0003572846276123531 -0.29255711939218354 1.0 16304 +221545 C6orf136 chromosome 6 open reading frame 136 Novel U 0.00035711152276457454 -0.2925586118492842 1.0 16305 +5096 PCCB propionyl-CoA carboxylase subunit beta Novel U 0.0003570616954992486 -0.2925590414447398 1.0 16306 +6674 SPAG1 sperm associated antigen 1 Novel N 0.00035698740764594046 -0.2925596819319104 1.0 16307 +374355 CCDC172 coiled-coil domain containing 172 Novel U 0.00035674660335448043 -0.2925617580729271 1.0 16308 +79820 CATSPERB cation channel sperm associated auxiliary subunit beta Novel U 0.0003567230134188671 -0.29256196145814345 1.0 16309 +79979 TRMT2B tRNA methyltransferase 2 homolog B Novel U 0.00035663193863630366 -0.29256274667708837 1.0 16310 +144404 TMEM120B transmembrane protein 120B Novel U 0.00035592747342361994 -0.29256882036088383 1.0 16311 +4112 MAGEB1 MAGE family member B1 Novel U 0.00035591123926751903 -0.292568960326817 1.0 16312 +5001 ORC5 origin recognition complex subunit 5 Novel N 0.0003558363928788041 -0.2925696056295091 1.0 16313 +60386 SLC25A19 solute carrier family 25 member 19 Novel U 0.00035569630522936936 -0.292570813422415 1.0 16314 +84529 CDIN1 CDAN1 interacting nuclease 1 Novel N 0.0003556900625312946 -0.2925708672450502 1.0 16315 +132158 GLYCTK glycerate kinase Novel U 0.0003556641078875615 -0.29257109101805734 1.0 16316 +3642 INSM1 INSM transcriptional repressor 1 Novel U 0.00035551512440712126 -0.2925723755080997 1.0 16317 +11282 MGAT4B alpha-1,3-mannosyl-glycoprotein 4-beta-N-acetylglucosaminyltransferase B Novel U 0.0003553657643081264 -0.2925736632452323 1.0 16318 +282890 ZNF311 zinc finger protein 311 Novel U 0.000355299493644922 -0.2925742346106397 1.0 16319 +79008 SLX1B SLX1 homolog B, structure-specific endonuclease subunit Novel U 0.00035522448587957487 -0.29257488130467185 1.0 16320 +3158 HMGCS2 3-hydroxy-3-methylglutaryl-CoA synthase 2 Novel N 0.0003551352017669583 -0.2925756510850077 1.0 16321 +6707 SPRR3 small proline rich protein 3 Novel U 0.00035508741544236077 -0.292576063084096 1.0 16322 +29958 DMGDH dimethylglycine dehydrogenase Novel N 0.000355049702998464 -0.29257638822926324 1.0 16323 +1892 ECHS1 enoyl-CoA hydratase, short chain 1 Novel N 0.0003549518707932949 -0.29257723170864086 1.0 16324 +342933 ZSCAN5B zinc finger and SCAN domain containing 5B Novel U 0.0003548629951984232 -0.29257799796686157 1.0 16325 +51646 YPEL5 yippee like 5 Novel U 0.00035485262379804464 -0.2925780873859064 1.0 16326 +22921 MSRB2 methionine sulfoxide reductase B2 Novel N 0.00035430721322600705 -0.29258278974919366 1.0 16327 +127253 TYW3 tRNA-yW synthesizing protein 3 homolog Novel U 0.0003541304011047573 -0.2925843141692734 1.0 16328 +58524 DMRT3 doublesex and mab-3 related transcription factor 3 Novel U 0.00035386870626216406 -0.2925865704222383 1.0 16329 +57226 LYRM2 LYR motif containing 2 Novel N 0.0003538347991847924 -0.29258686275869816 1.0 16330 +149478 BTBD19 BTB domain containing 19 Novel U 0.00035380610248448246 -0.2925871101728792 1.0 16331 +25988 HINFP histone H4 transcription factor Novel N 0.00035375750343520564 -0.2925875291790313 1.0 16332 +338699 ANKRD42 ankyrin repeat domain 42 Novel U 0.0003531059619739479 -0.29259314657041424 1.0 16333 +10026 PIGK phosphatidylinositol glycan anchor biosynthesis class K Novel U 0.0003530933138251461 -0.29259325561888827 1.0 16334 +26017 FAM32A family with sequence similarity 32 member A Novel U 0.00035291450982171367 -0.2925947972123675 1.0 16335 +284406 ZFP82 ZFP82 zinc finger protein Novel U 0.0003526534797070496 -0.2925970477342514 1.0 16336 +152687 ZNF595 zinc finger protein 595 Novel U 0.00035252062007975555 -0.2925981932093591 1.0 16337 +2108 ETFA electron transfer flavoprotein subunit alpha Novel N 0.00035244488229211403 -0.2925988461974204 1.0 16338 +9719 ADAMTSL2 ADAMTS like 2 Novel U 0.0003523279988539502 -0.29259985393070737 1.0 16339 +55238 SLC38A7 solute carrier family 38 member 7 Novel N 0.0003522554895121154 -0.2926004790840955 1.0 16340 +387882 C12orf75 chromosome 12 open reading frame 75 Novel U 0.00035195301452996676 -0.2926030869309622 1.0 16341 +339541 ARMH1 armadillo like helical domain containing 1 Novel U 0.0003518918046125288 -0.292603614664166 1.0 16342 +83699 SH3BGRL2 SH3 domain binding glutamate rich protein like 2 Novel U 0.0003518149650275393 -0.29260427715158743 1.0 16343 +87178 PNPT1 polyribonucleotide nucleotidyltransferase 1 Novel U 0.0003518060887197376 -0.2926043536804009 1.0 16344 +121793 TEX29 testis expressed 29 Novel U 0.00035161933449596826 -0.29260596381825044 1.0 16345 +27341 RRP7A ribosomal RNA processing 7 homolog A Novel U 0.0003515289737578814 -0.29260674288092203 1.0 16346 +8403 SOX14 SRY-box transcription factor 14 Novel N 0.0003514028424379237 -0.2926078303466199 1.0 16347 +318 NUDT2 nudix hydrolase 2 Novel N 0.0003513993763280619 -0.29260786023036 1.0 16348 +167 CRISP1 cysteine rich secretory protein 1 Novel U 0.00035123190871225743 -0.2926093040849692 1.0 16349 +55577 NAGK N-acetylglucosamine kinase Novel U 0.00035120450081756063 -0.29260954038746206 1.0 16350 +54934 KANSL2 KAT8 regulatory NSL complex subunit 2 Novel U 0.0003511073065614202 -0.2926103783666382 1.0 16351 +339665 SLC35E4 solute carrier family 35 member E4 Novel U 0.0003510124067530539 -0.29261119656378676 1.0 16352 +339318 ZNF181 zinc finger protein 181 Novel U 0.00035090418920038726 -0.292612129582457 1.0 16353 +388569 ZNF324B zinc finger protein 324B Novel U 0.0003508533892660907 -0.2926125675639673 1.0 16354 +114795 TMEM132B transmembrane protein 132B Novel U 0.0003507733903005445 -0.2926132572906024 1.0 16355 +51095 TRNT1 tRNA nucleotidyl transferase 1 Novel U 0.00035068348442551204 -0.2926140324315838 1.0 16356 +120379 PIH1D2 PIH1 domain containing 2 Novel U 0.0003505741171125658 -0.29261497536313585 1.0 16357 +3006 H1-2 H1.2 linker histone, cluster member Novel U 0.0003503775896394831 -0.29261666976295453 1.0 16358 +400713 ZNF880 zinc finger protein 880 Novel U 0.00035026225438142847 -0.2926176641483057 1.0 16359 +10481 HOXB13 homeobox B13 Novel U 0.00035005943654660817 -0.29261941278170106 1.0 16360 +100130958 SYCE1L synaptonemal complex central element protein 1 like Novel U 0.0003499958697739135 -0.29261996083499076 1.0 16361 +5437 POLR2H RNA polymerase II, I and III subunit H Novel N 0.00034991185306059623 -0.2926206852014194 1.0 16362 +100130274 CCDC166 coiled-coil domain containing 166 Novel U 0.00034945832678021826 -0.29262459536642166 1.0 16363 +162966 ZNF600 zinc finger protein 600 Novel U 0.00034940846034286864 -0.29262502529960643 1.0 16364 +283899 INO80E INO80 complex subunit E Novel N 0.00034913563671609856 -0.2926273775015479 1.0 16365 +1993 ELAVL2 ELAV like RNA binding protein 2 Novel N 0.0003491297443107446 -0.2926274283040663 1.0 16366 +217 ALDH2 aldehyde dehydrogenase 2 family member Novel U 0.0003489925296433844 -0.29262861132699863 1.0 16367 +10170 DHRS9 dehydrogenase/reductase 9 Novel N 0.0003489407449470889 -0.29262905779882586 1.0 16368 +56916 SMARCAD1 SWI/SNF-related, matrix-associated actin-dependent regulator of chromatin, subfamily a, containing DEAD/H box 1 Novel U 0.0003488813584345474 -0.2926295698111898 1.0 16369 +55032 SLC35A5 solute carrier family 35 member A5 Novel U 0.00034861419568256696 -0.2926318732067987 1.0 16370 +160419 C12orf50 chromosome 12 open reading frame 50 Novel U 0.0003483128928575636 -0.2926344709476847 1.0 16371 +3218 HOXB8 homeobox B8 Novel U 0.0003481253646433584 -0.29263608775864325 1.0 16372 +285605 DTWD2 DTW domain containing 2 Novel N 0.0003480853301880177 -0.29263643292348357 1.0 16373 +11019 LIAS lipoic acid synthetase Novel N 0.0003479860843459076 -0.29263728859080707 1.0 16374 +121214 SDR9C7 short chain dehydrogenase/reductase family 9C member 7 Novel U 0.00034789083193422285 -0.2926381098279937 1.0 16375 +64975 MRPL41 mitochondrial ribosomal protein L41 Novel N 0.00034787088555992884 -0.29263828179953766 1.0 16376 +145853 C15orf61 chromosome 15 open reading frame 61 Novel U 0.00034768850003039184 -0.2926398542718405 1.0 16377 +29841 GRHL1 grainyhead like transcription factor 1 Novel N 0.0003476033461945286 -0.2926405884421923 1.0 16378 +729993 SHISA9 shisa family member 9 Novel U 0.00034712429605650134 -0.2926447186660957 1.0 16379 +1841 DTYMK deoxythymidylate kinase Novel N 0.0003471064462895768 -0.2926448725613317 1.0 16380 +5982 RFC2 replication factor C subunit 2 Novel U 0.000347096002556581 -0.29264496260400624 1.0 16381 +4731 NDUFV3 NADH:ubiquinone oxidoreductase subunit V3 Novel N 0.0003469573564682606 -0.2926461579682127 1.0 16382 +84269 CHCHD5 coiled-coil-helix-coiled-coil-helix domain containing 5 Novel U 0.0003468496404717009 -0.2926470866626195 1.0 16383 +51148 CERCAM cerebral endothelial cell adhesion molecule Novel N 0.0003468330835346365 -0.2926472294114715 1.0 16384 +389333 PROB1 proline rich basic protein 1 Novel U 0.0003467812123341033 -0.2926476766291118 1.0 16385 +2145 EZH1 enhancer of zeste 1 polycomb repressive complex 2 subunit Novel N 0.0003466658823285101 -0.29264867096917785 1.0 16386 +29083 GTPBP8 GTP binding protein 8 (putative) Novel U 0.00034660543166187 -0.29264919215635327 1.0 16387 +100130613 PRR32 proline rich 32 Novel U 0.0003464364567113106 -0.29265064900674215 1.0 16388 +10007 GNPDA1 glucosamine-6-phosphate deaminase 1 Novel N 0.00034635448416679417 -0.29265135574897205 1.0 16389 +8270 LAGE3 L antigen family member 3 Novel U 0.0003462971879059276 -0.29265184973982483 1.0 16390 +79810 PTCD2 pentatricopeptide repeat domain 2 Novel U 0.0003461075160835047 -0.2926534850323184 1.0 16391 +58189 WFDC1 WAP four-disulfide core domain 1 Novel U 0.00034607357844210755 -0.292653777632292 1.0 16392 +55022 PID1 phosphotyrosine interaction domain containing 1 Novel U 0.00034604216564048274 -0.2926540484638686 1.0 16393 +122970 ACOT4 acyl-CoA thioesterase 4 Novel N 0.0003459938545958203 -0.292654464986933 1.0 16394 +338645 LUZP2 leucine zipper protein 2 Novel U 0.0003459033929307109 -0.2926552449197665 1.0 16395 +442117 GALNTL6 polypeptide N-acetylgalactosaminyltransferase like 6 Novel N 0.0003458456367415124 -0.29265574287598084 1.0 16396 +246721 POLR2J2 RNA polymerase II subunit J2 Novel U 0.0003457851676747133 -0.2926562642217968 1.0 16397 +63946 DMRTC2 DMRT like family C2 Novel U 0.0003457274672880061 -0.29265676169689914 1.0 16398 +9219 MTA2 metastasis associated 1 family member 2 Novel N 0.0003456621382305878 -0.29265732494406915 1.0 16399 +4200 ME2 malic enzyme 2 Novel N 0.0003456241179236026 -0.29265765274353783 1.0 16400 +7364 UGT2B7 UDP glucuronosyltransferase family 2 member B7 Novel N 0.00034559690060467763 -0.2926578874029446 1.0 16401 +114826 SMYD4 SET and MYND domain containing 4 Novel N 0.00034555044962726936 -0.29265828788907755 1.0 16402 +64288 ZSCAN31 zinc finger and SCAN domain containing 31 Novel U 0.0003452832687619512 -0.292660591440854 1.0 16403 +80323 CCDC68 coiled-coil domain containing 68 Novel N 0.0003452783136782124 -0.29266063416207183 1.0 16404 +93233 ODAD1 outer dynein arm docking complex subunit 1 Novel U 0.0003452077068399224 -0.2926612429126558 1.0 16405 +338324 S100A7A S100 calcium binding protein A7A Novel U 0.00034519273870909235 -0.2926613719633058 1.0 16406 +89978 DPH6 diphthamine biosynthesis 6 Novel N 0.0003448184162378748 -0.2926645992572684 1.0 16407 +100861540 CYP3A7-CYP3A51P CYP3A7-CYP3A51P readthrough Novel U 0.00034479989653743724 -0.2926647589284664 1.0 16408 +1477 CSTF1 cleavage stimulation factor subunit 1 Novel U 0.0003447427256758775 -0.29266525183816466 1.0 16409 +155006 TMEM213 transmembrane protein 213 Novel U 0.0003446903382407872 -0.29266570350662163 1.0 16410 +57713 SFMBT2 Scm like with four mbt domains 2 Novel N 0.0003445978856022069 -0.2926665006050201 1.0 16411 +220963 SLC16A9 solute carrier family 16 member 9 Novel N 0.0003444532148187163 -0.2926677479123073 1.0 16412 +116085 SLC22A12 solute carrier family 22 member 12 Novel N 0.0003444422631117871 -0.2926678423345778 1.0 16413 +89874 SLC25A21 solute carrier family 25 member 21 Novel N 0.0003440948254080163 -0.29267083783629083 1.0 16414 +80731 THSD7B thrombospondin type 1 domain containing 7B Novel U 0.0003437998333281714 -0.2926733811678605 1.0 16415 +55061 SUSD4 sushi domain containing 4 Novel U 0.00034362152181855425 -0.2926749185152085 1.0 16416 +90589 ZNF625 zinc finger protein 625 Novel U 0.00034347742761535097 -0.2926761608513967 1.0 16417 +7014 TERF2 telomeric repeat binding factor 2 Novel U 0.0003433880360605868 -0.2926769315580659 1.0 16418 +56548 CHST7 carbohydrate sulfotransferase 7 Novel N 0.00034316174937812946 -0.29267888253269403 1.0 16419 +116211 TM4SF19 transmembrane 4 L six family member 19 Novel U 0.0003426099327539502 -0.2926836401270053 1.0 16420 +730094 MOSMO modulator of smoothened Novel U 0.00034221381099420784 -0.2926870553677721 1.0 16421 +3227 HOXC11 homeobox C11 Novel N 0.0003420697658038888 -0.29268829728138623 1.0 16422 +84735 CNDP1 carnosine dipeptidase 1 Novel N 0.00034195023616480976 -0.2926893278294089 1.0 16423 +56287 GKN1 gastrokine 1 Novel U 0.0003418503752831323 -0.2926901887994155 1.0 16424 +116033993 FOXL3 forkhead box L3 Novel U 0.00034148477292455186 -0.29269334091123156 1.0 16425 +126868 MAB21L3 mab-21 like 3 Novel U 0.000341457861179575 -0.2926935729360731 1.0 16426 +1340 COX6B1 cytochrome c oxidase subunit 6B1 Novel U 0.000341412670131221 -0.2926939625594827 1.0 16427 +51673 TPPP3 tubulin polymerization promoting protein family member 3 Novel N 0.0003412423030899444 -0.29269543141205234 1.0 16428 +9823 ARMCX2 armadillo repeat containing X-linked 2 Novel U 0.00034122070728748557 -0.29269561760446194 1.0 16429 +124935 SLC43A2 solute carrier family 43 member 2 Novel U 0.00034121431296078435 -0.2926956727343929 1.0 16430 +59336 PRDM13 PR/SET domain 13 Novel N 0.00034099748529323935 -0.2926975421562849 1.0 16431 +340665 CYP26C1 cytochrome P450 family 26 subfamily C member 1 Novel U 0.00034093549643117324 -0.2926980766053113 1.0 16432 +653149 NBPF6 NBPF member 6 Novel U 0.00034075905302747536 -0.29269959784642097 1.0 16433 +255101 CFAP65 cilia and flagella associated protein 65 Novel N 0.00034064817934028094 -0.29270055376547155 1.0 16434 +84446 BRSK1 BR serine/threonine kinase 1 Novel U 0.000340548713836586 -0.29270141132665 1.0 16435 +254158 CXorf58 chromosome X open reading frame 58 Novel U 0.000340540209863888 -0.29270148464530393 1.0 16436 +55630 SLC39A4 solute carrier family 39 member 4 Novel U 0.0003405329159675882 -0.292701547531049 1.0 16437 +143379 SPMIP5 sperm microtubule inner protein 5 Novel U 0.0003404819296940358 -0.2927019871191194 1.0 16438 +154215 NKAIN2 sodium/potassium transporting ATPase interacting 2 Novel U 0.0003403165891417286 -0.2927034126348371 1.0 16439 +131375 LYZL4 lysozyme like 4 Novel U 0.0003399457553465107 -0.2927066098505013 1.0 16440 +65989 DLK2 delta like non-canonical Notch ligand 2 Novel U 0.00033968433932721404 -0.29270886369953697 1.0 16441 +7705 ZNF146 zinc finger protein 146 Novel N 0.00033966354174123876 -0.292709043009968 1.0 16442 +1962 EHHADH enoyl-CoA hydratase and 3-hydroxyacyl CoA dehydrogenase Novel N 0.00033959478526372945 -0.2927096358073067 1.0 16443 +10721 POLQ DNA polymerase theta Novel U 0.00033955603428170554 -0.2927099699064322 1.0 16444 +6296 ACSM3 acyl-CoA synthetase medium chain family member 3 Novel U 0.00033943946976815144 -0.2927109748900487 1.0 16445 +23468 CBX5 chromobox 5 Novel N 0.000339382566259102 -0.29271146549471533 1.0 16446 +115196 ZNF554 zinc finger protein 554 Novel U 0.00033913252207683567 -0.2927136212992471 1.0 16447 +162461 TMEM92 transmembrane protein 92 Novel U 0.00033899541245322357 -0.29271480341652434 1.0 16448 +3376 IARS1 isoleucyl-tRNA synthetase 1 Novel N 0.00033892763555421027 -0.29271538776823663 1.0 16449 +10179 RBM7 RNA binding motif protein 7 Novel N 0.0003387622437506906 -0.29271681372582664 1.0 16450 +374618 TEX9 testis expressed 9 Novel U 0.00033862017833981674 -0.29271803857038725 1.0 16451 +60526 LDAH lipid droplet associated hydrolase Novel U 0.0003384683702823232 -0.29271934741307 1.0 16452 +642574 IQANK1 IQ motif and ankyrin repeat containing 1 Novel U 0.00033801398109232914 -0.29272326501781526 1.0 16453 +496 ATP4B ATPase H+/K+ transporting subunit beta Novel U 0.00033799193954302525 -0.292723455053318 1.0 16454 +255919 CNEP1R1 CTD nuclear envelope phosphatase 1 regulatory subunit 1 Novel N 0.00033786417250878796 -0.29272455662164454 1.0 16455 +65123 INTS3 integrator complex subunit 3 Novel U 0.0003378029231354775 -0.29272508469502484 1.0 16456 +8338 H2AC20 H2A clustered histone 20 Novel U 0.0003377817830117586 -0.29272526695871154 1.0 16457 +64816 CYP3A43 cytochrome P450 family 3 subfamily A member 43 Novel N 0.000337724638522586 -0.2927257596410352 1.0 16458 +55244 SLC47A1 solute carrier family 47 member 1 Novel U 0.00033770811218994146 -0.2927259021260252 1.0 16459 +51409 HEMK1 HemK methyltransferase family member 1 Novel U 0.0003376553355171257 -0.2927263571503709 1.0 16460 +8540 AGPS alkylglycerone phosphate synthase Novel N 0.0003375300543471988 -0.292727437286335 1.0 16461 +100533181 FXYD6-FXYD2 FXYD6-FXYD2 readthrough Novel U 0.0003374766356095021 -0.2927278978463679 1.0 16462 +6694 SPP2 secreted phosphoprotein 2 Novel N 0.0003373700749287226 -0.2927288165799951 1.0 16463 +84081 NSRP1 nuclear speckle splicing regulatory protein 1 Novel N 0.0003372301505618235 -0.29273002296512884 1.0 16464 +79064 TMEM223 transmembrane protein 223 Novel N 0.0003371555051756369 -0.2927306665348386 1.0 16465 +79075 DSCC1 DNA replication and sister chromatid cohesion 1 Novel U 0.0003369580944374678 -0.2927323685498989 1.0 16466 +5955 RCN2 reticulocalbin 2 Novel U 0.00033693941146901177 -0.29273252962874385 1.0 16467 +340811 AKR1C8 aldo-keto reductase family 1 member C8 Novel U 0.00033691808175850135 -0.29273271352699004 1.0 16468 +57018 CCNL1 cyclin L1 Novel N 0.0003369093928256807 -0.2927327884403137 1.0 16469 +23119 HIC2 HIC ZBTB transcriptional repressor 2 Novel U 0.0003368874230005324 -0.29273297785743263 1.0 16470 +84839 RAX2 retina and anterior neural fold homeobox 2 Novel N 0.00033654703876819544 -0.2927359125462703 1.0 16471 +100505993 TMEM210 transmembrane protein 210 Novel U 0.00033635057503613884 -0.29273760639653335 1.0 16472 +51097 SCCPDH saccharopine dehydrogenase (putative) Novel U 0.0003362550366683999 -0.2927384300991457 1.0 16473 +7775 ZNF232 zinc finger protein 232 Novel U 0.0003362479312169571 -0.29273849136017677 1.0 16474 +55659 ZNF416 zinc finger protein 416 Novel U 0.0003360481539615323 -0.29274021377862575 1.0 16475 +91151 TIGD7 tigger transposable element derived 7 Novel U 0.0003359565999334615 -0.2927410031294789 1.0 16476 +100293516 ZNF587B zinc finger protein 587B Novel U 0.0003357534593806267 -0.29274275454525045 1.0 16477 +83719 YPEL3 yippee like 3 Novel N 0.00033566998890651974 -0.2927434742021715 1.0 16478 +25953 PNKD PNKD metallo-beta-lactamase domain containing Novel U 0.00033556772110643216 -0.2927443559238932 1.0 16479 +57332 CBX8 chromobox 8 Novel N 0.0003354824780176625 -0.2927450908637562 1.0 16480 +112488746 TAF11L11 TATA-box binding protein associated factor 11 like 11 Novel U 0.00033526564772030806 -0.2927469603083217 1.0 16481 +646066 TAF11L5 TATA-box binding protein associated factor 11 like 5 Novel U 0.0003352539541826905 -0.2927470611264298 1.0 16482 +158931 TCEAL6 transcription elongation factor A like 6 Novel U 0.0003351759554486619 -0.29274773360767997 1.0 16483 +11212 PLPBP pyridoxal phosphate binding protein Novel U 0.0003350776394938853 -0.29274858125779896 1.0 16484 +51582 AZIN1 antizyme inhibitor 1 Novel U 0.0003350282213162882 -0.29274900732622516 1.0 16485 +161753 CIMAP1C ciliary microtubule associated protein 1C Novel U 0.00033500314819371235 -0.2927492234990262 1.0 16486 +57047 PLSCR2 phospholipid scramblase 2 Novel U 0.0003346533023448656 -0.29275223976303016 1.0 16487 +102723631 CT45A10 cancer/testis antigen family 45 member A10 Novel U 0.0003342349110694392 -0.29275584700475626 1.0 16488 +375567 VWC2 von Willebrand factor C domain containing 2 Novel U 0.0003342270630596506 -0.29275591466789846 1.0 16489 +9424 KCNK6 potassium two pore domain channel subfamily K member 6 Novel N 0.00033366655884919016 -0.2927607471639239 1.0 16490 +29785 CYP2S1 cytochrome P450 family 2 subfamily S member 1 Novel N 0.00033360507567236513 -0.29276127725308665 1.0 16491 +55203 LGI2 leucine rich repeat LGI family member 2 Novel U 0.00033360358606969464 -0.2927612900959857 1.0 16492 +763 CA5A carbonic anhydrase 5A Novel N 0.0003332157396585853 -0.2927646339892254 1.0 16493 +220359 TIGD3 tigger transposable element derived 3 Novel U 0.0003331542554087954 -0.2927651640876389 1.0 16494 +4726 NDUFS6 NADH:ubiquinone oxidoreductase subunit S6 Novel N 0.00033303730655625944 -0.2927661723849086 1.0 16495 +91603 ZNF830 zinc finger protein 830 Novel U 0.0003328869389308219 -0.2927674688086263 1.0 16496 +728116 ZBTB8B zinc finger and BTB domain containing 8B Novel U 0.00033276305935058215 -0.2927685368605124 1.0 16497 +128209 KLF17 KLF transcription factor 17 Novel U 0.00033270984420170544 -0.2927689956652647 1.0 16498 +66002 CYP4F12 cytochrome P450 family 4 subfamily F member 12 Novel N 0.00033263907286354015 -0.29276960583411626 1.0 16499 +57688 ZSWIM6 zinc finger SWIM-type containing 6 Novel U 0.000332625838411397 -0.2927697199375185 1.0 16500 +83858 ATAD3B ATPase family AAA domain containing 3B Novel U 0.00033258851951306016 -0.29277004168965615 1.0 16501 +84233 TMEM126A transmembrane protein 126A Novel N 0.0003324237510428215 -0.2927714622730571 1.0 16502 +79684 MSANTD2 Myb/SANT DNA binding domain containing 2 Novel U 0.0003324207253255745 -0.2927714883598666 1.0 16503 +85294 KRTAP2-4 keratin associated protein 2-4 Novel U 0.00033231721638263826 -0.2927723807823427 1.0 16504 +83539 CHST9 carbohydrate sulfotransferase 9 Novel N 0.0003323057745823865 -0.2927724794300481 1.0 16505 +55094 GPATCH1 G-patch domain containing 1 Novel N 0.00033218531349858053 -0.29277351800870255 1.0 16506 +90523 MLIP muscular LMNA interacting protein Novel U 0.0003321468660763911 -0.29277384949062807 1.0 16507 +9607 CARTPT CART prepropeptide Novel U 0.0003321455376939217 -0.29277386094353575 1.0 16508 +79142 PHF23 PHD finger protein 23 Novel U 0.0003321044103752943 -0.29277421553070937 1.0 16509 +59271 EVA1C eva-1 homolog C Novel U 0.0003318114682966241 -0.2927767411877954 1.0 16510 +81615 TMEM163 transmembrane protein 163 Novel N 0.00033179694928178277 -0.2927768663663047 1.0 16511 +1737 DLAT dihydrolipoamide S-acetyltransferase Novel U 0.0003315076445724797 -0.29277936066310345 1.0 16512 +55702 YJU2 YJU2 splicing factor homolog Novel U 0.00033130992754306054 -0.29278106531891335 1.0 16513 +51109 RDH11 retinol dehydrogenase 11 Novel N 0.00033120403222986394 -0.29278197831594455 1.0 16514 +8789 FBP2 fructose-bisphosphatase 2 Novel N 0.00033117498600515756 -0.29278222874361814 1.0 16515 +55634 KRBOX4 KRAB box domain containing 4 Novel U 0.0003309297253655428 -0.2927843433059069 1.0 16516 +341947 COX8C cytochrome c oxidase subunit 8C Novel U 0.0003304664065534007 -0.2927883378991257 1.0 16517 +3233 HOXD4 homeobox D4 Novel N 0.0003301966420886954 -0.2927906637259066 1.0 16518 +287015 TRIM42 tripartite motif containing 42 Novel U 0.00033016988310828637 -0.29279089443365874 1.0 16519 +388610 TRNP1 TMF1 regulated nuclear protein 1 Novel U 0.0003301387199888402 -0.2927911631125519 1.0 16520 +29079 MED4 mediator complex subunit 4 Novel N 0.0003300494375274271 -0.2927919328786515 1.0 16521 +646817 SETSIP SET like protein Novel N 0.00032974462710316376 -0.29279456086098654 1.0 16522 +64922 LRRC19 leucine rich repeat containing 19 Novel N 0.0003295862211910724 -0.2927959265883554 1.0 16523 +1357 CPA1 carboxypeptidase A1 Novel N 0.00032957761801937174 -0.2927960007622729 1.0 16524 +2302 FOXJ1 forkhead box J1 Novel N 0.00032953441496537476 -0.2927963732458026 1.0 16525 +6545 SLC7A4 solute carrier family 7 member 4 Novel U 0.0003295182807583586 -0.2927965123500052 1.0 16526 +55349 CHDH choline dehydrogenase Novel N 0.0003293005958115807 -0.29279838916309686 1.0 16527 +143241 DYDC1 DPY30 domain containing 1 Novel U 0.00032927377196814885 -0.2927986204300782 1.0 16528 +643382 TMEM253 transmembrane protein 253 Novel U 0.00032910828701315483 -0.2928000471907917 1.0 16529 +55777 MBD5 methyl-CpG binding domain protein 5 Novel U 0.0003289598514474417 -0.2928013269568809 1.0 16530 +3294 HSD17B2 hydroxysteroid 17-beta dehydrogenase 2 Novel U 0.00032856538675968966 -0.29280472791087936 1.0 16531 +203074 PRSS55 serine protease 55 Novel U 0.0003284775779286121 -0.29280548497178854 1.0 16532 +3196 TLX2 T cell leukemia homeobox 2 Novel N 0.0003284358723166058 -0.29280584454483105 1.0 16533 +169200 TMEM64 transmembrane protein 64 Novel U 0.00032832146251580887 -0.2928068309511725 1.0 16534 +116519 APOA5 apolipoprotein A5 Novel U 0.00032816745325445207 -0.29280815877196226 1.0 16535 +55501 CHST12 carbohydrate sulfotransferase 12 Novel N 0.00032800674078303766 -0.2928095443857808 1.0 16536 +113829 SLC35A4 solute carrier family 35 member A4 Novel U 0.0003279434580186258 -0.2928100899904378 1.0 16537 +4247 MGAT2 alpha-1,6-mannosyl-glycoprotein 2-beta-N-acetylglucosaminyltransferase Novel U 0.0003277075231650698 -0.29281212414864893 1.0 16538 +2937 GSS glutathione synthetase Novel U 0.00032770734086939586 -0.2928121257203465 1.0 16539 +54465 ETAA1 ETAA1 activator of ATR kinase Novel U 0.0003276541020495069 -0.2928125847291831 1.0 16540 +728712 SPANXA2 SPANX family member A2 Novel N 0.0003275913532990434 -0.29281312572973495 1.0 16541 +728741 NPIPB6 nuclear pore complex interacting protein family member B6 Novel U 0.00032757984198531463 -0.2928132249767643 1.0 16542 +4350 MPG N-methylpurine DNA glycosylase Novel N 0.0003274930493980441 -0.29281397327592995 1.0 16543 +328 APEX1 apurinic/apyrimidinic endodeoxyribonuclease 1 Novel U 0.00032748169982238447 -0.29281407112850316 1.0 16544 +219938 SPATA19 spermatogenesis associated 19 Novel U 0.00032742672383604364 -0.292814545114658 1.0 16545 +101669762 BLACAT1 BLACAT1 overlapping LEMD1 locus Novel U 0.00032724349703722145 -0.2928161248401276 1.0 16546 +9469 CHST3 carbohydrate sulfotransferase 3 Novel U 0.0003272271170428754 -0.2928162660634335 1.0 16547 +1428 CRYM crystallin mu Novel N 0.00032712475741924037 -0.2928171485768297 1.0 16548 +5456 POU3F4 POU class 3 homeobox 4 Novel U 0.00032697027055425814 -0.292818480515372 1.0 16549 +54873 PALMD palmdelphin Novel U 0.0003268697310439562 -0.29281934733630727 1.0 16550 +51069 MRPL2 mitochondrial ribosomal protein L2 Novel U 0.00032670190197803554 -0.29282079430722896 1.0 16551 +6835 SURF2 surfeit 2 Novel U 0.00032649414441981094 -0.29282258552941004 1.0 16552 +10324 KLHL41 kelch like family member 41 Novel U 0.000326423672846214 -0.29282319311378313 1.0 16553 +57479 PRR12 proline rich 12 Novel U 0.00032624266372543586 -0.2928247537191103 1.0 16554 +285989 ZNF789 zinc finger protein 789 Novel U 0.0003260288603176886 -0.29282659706675845 1.0 16555 +79714 CCDC51 coiled-coil domain containing 51 Novel U 0.00032601487240398473 -0.2928267176662761 1.0 16556 +642636 RAD21L1 RAD21 cohesin complex component like 1 Novel U 0.0003257559331481363 -0.29282895016141414 1.0 16557 +63874 ABHD4 abhydrolase domain containing 4, N-acyl phospholipase B Novel U 0.0003257226156619848 -0.29282923741459865 1.0 16558 +83787 ARMC10 armadillo repeat containing 10 Novel U 0.000325514239605667 -0.29283103396928134 1.0 16559 +7258 TSPY1 testis specific protein Y-linked 1 Novel N 0.0003254943560716004 -0.2928312053990362 1.0 16560 +653656 MBD3L4 methyl-CpG binding domain protein 3 like 4 Novel U 0.00032538996399993834 -0.2928321054355782 1.0 16561 +342926 ZNF677 zinc finger protein 677 Novel U 0.00032537187413106595 -0.2928322614008998 1.0 16562 +83758 RBP5 retinol binding protein 5 Novel U 0.00032532493178753644 -0.29283266612344117 1.0 16563 +53615 MBD3 methyl-CpG binding domain protein 3 Novel N 0.0003252977507011125 -0.2928329004704624 1.0 16564 +11055 ZPBP zona pellucida binding protein Novel N 0.0003252917488588624 -0.2928329522165123 1.0 16565 +8382 NME5 NME/NM23 family member 5 Novel N 0.0003251370329014071 -0.29283428613021983 1.0 16566 +83446 CCDC70 coiled-coil domain containing 70 Novel U 0.0003250957324355705 -0.2928346422102158 1.0 16567 +80222 TARS2 threonyl-tRNA synthetase 2, mitochondrial Novel N 0.0003250035272023125 -0.29283543717556115 1.0 16568 +2882 GPX7 glutathione peroxidase 7 Novel N 0.0003247808096206767 -0.2928373573784927 1.0 16569 +51263 MRPL30 mitochondrial ribosomal protein L30 Novel U 0.00032463727829479673 -0.2928385948617246 1.0 16570 +50636 ANO7 anoctamin 7 Novel N 0.00032445820284499554 -0.29284013879553145 1.0 16571 +4113 MAGEB2 MAGE family member B2 Novel U 0.0003243589546076387 -0.292840994483506 1.0 16572 +503841 DEFB106B defensin beta 106B Novel N 0.000324308548295333 -0.29284142907132765 1.0 16573 +22955 SCMH1 Scm polycomb group protein homolog 1 Novel U 0.0003241725513215148 -0.29284260159567843 1.0 16574 +339210 C17orf67 chromosome 17 open reading frame 67 Novel U 0.00032406479829721446 -0.2928435306093271 1.0 16575 +200879 LIPH lipase H Novel U 0.00032394959578972715 -0.2928445238501434 1.0 16576 +89890 KBTBD6 kelch repeat and BTB domain containing 6 Novel U 0.00032386878422695193 -0.29284522058274354 1.0 16577 +199704 ZNF585A zinc finger protein 585A Novel U 0.0003238460192453658 -0.29284541685545834 1.0 16578 +90204 ZSWIM1 zinc finger SWIM-type containing 1 Novel U 0.0003237401180884595 -0.29284632990287224 1.0 16579 +23518 R3HDM1 R3H domain containing 1 Novel U 0.00032368750907554677 -0.29284678348170545 1.0 16580 +168850 ZNF800 zinc finger protein 800 Novel U 0.0003235883117046126 -0.29284763873112524 1.0 16581 +65265 C8orf33 chromosome 8 open reading frame 33 Novel U 0.000323536291929937 -0.29284808722972644 1.0 16582 +2515 ADAM2 ADAM metallopeptidase domain 2 Novel U 0.0003235057442473707 -0.29284835060251085 1.0 16583 +115072896 SLCO1B3-SLCO1B7 SLCO1B3-SLCO1B7 readthrough Novel U 0.0003234982331716746 -0.2928484153607103 1.0 16584 +56132 PCDHB3 protocadherin beta 3 Novel U 0.0003233451348125442 -0.2928497353279794 1.0 16585 +201456 FBXO15 F-box protein 15 Novel U 0.00032333685062426495 -0.2928498067517193 1.0 16586 +100132247 NPIPB5 nuclear pore complex interacting protein family member B5 Novel U 0.0003232183706892915 -0.2928508282495139 1.0 16587 +5822 PWP2 PWP2 small subunit processome component Novel N 0.00032275410991884103 -0.2928548309640094 1.0 16588 +26152 ZNF337 zinc finger protein 337 Novel U 0.0003226590263050877 -0.29285565074587183 1.0 16589 +56063 TMEM234 transmembrane protein 234 Novel U 0.00032232389144225336 -0.2928585401762497 1.0 16590 +342132 ZNF774 zinc finger protein 774 Novel U 0.0003221506576692178 -0.2928600337449046 1.0 16591 +54554 WDR5B WD repeat domain 5B Novel U 0.0003221243533029396 -0.2928602605331126 1.0 16592 +399947 C11orf87 chromosome 11 open reading frame 87 Novel U 0.00032192287535512035 -0.29286199761441173 1.0 16593 +9668 ZNF432 zinc finger protein 432 Novel N 0.0003216761368057963 -0.2928641249187864 1.0 16594 +118672 PSTK phosphoseryl-tRNA kinase Novel U 0.00032160488965919453 -0.2928647391899129 1.0 16595 +9130 FAM50A family with sequence similarity 50 member A Novel N 0.000321566812244291 -0.2928650674817487 1.0 16596 +60437 CDH26 cadherin 26 Novel U 0.0003213956377275416 -0.2928665432961251 1.0 16597 +145282 MIPOL1 mirror-image polydactyly 1 Novel U 0.0003206362538237165 -0.2928730904720937 1.0 16598 +121006 FAM186A family with sequence similarity 186 member A Novel U 0.00032062276020794337 -0.29287320680992557 1.0 16599 +84296 GINS4 GINS complex subunit 4 Novel U 0.0003204812268794736 -0.2928744270670343 1.0 16600 +65251 ZNF649 zinc finger protein 649 Novel U 0.0003204725145816877 -0.29287450218180355 1.0 16601 +23212 RRS1 ribosome biogenesis regulator 1 homolog Novel U 0.0003202875567221275 -0.2928760968319498 1.0 16602 +118430 MUCL1 mucin like 1 Novel U 0.0003200263553065096 -0.2928783488307382 1.0 16603 +55808 ST6GALNAC1 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 1 Novel N 0.0003196819397509343 -0.29288131827641295 1.0 16604 +10089 KCNK7 potassium two pore domain channel subfamily K member 7 Novel N 0.00031949828431433123 -0.29288290169746645 1.0 16605 +144535 CFAP54 cilia and flagella associated protein 54 Novel U 0.00031938717280738166 -0.29288385966692626 1.0 16606 +6756 SSX1 SSX family member 1 Novel N 0.00031901093459172546 -0.29288710347785196 1.0 16607 +54799 MBTD1 mbt domain containing 1 Novel N 0.00031894113121855435 -0.29288770530120517 1.0 16608 +51540 SCLY selenocysteine lyase Novel N 0.00031890055049979836 -0.2928880551757618 1.0 16609 +205251 MTLN mitoregulin Novel N 0.00031863813614329363 -0.29289031763215573 1.0 16610 +152877 FAM53A family with sequence similarity 53 member A Novel U 0.0003184797698463125 -0.29289168301797525 1.0 16611 +100101490 MCTS2 MCTS family member 2 Novel U 0.0003183396238691503 -0.29289289131376495 1.0 16612 +121256 TMEM132D transmembrane protein 132D Novel U 0.000318176636594893 -0.2928942965402385 1.0 16613 +79716 NPEPL1 aminopeptidase like 1 Novel U 0.00031809120047763536 -0.2928950331443342 1.0 16614 +157638 LRATD2 LRAT domain containing 2 Novel U 0.0003180133592301172 -0.2928957042677838 1.0 16615 +23671 TMEFF2 transmembrane protein with EGF like and two follistatin like domains 2 Novel U 0.00031788698186678305 -0.29289679385479245 1.0 16616 +51157 ZNF580 zinc finger protein 580 Novel U 0.00031786519581398516 -0.2928969816874824 1.0 16617 +4817 NIT1 nitrilase 1 Novel U 0.0003178607095174396 -0.29289702036696025 1.0 16618 +3110 MNX1 motor neuron and pancreas homeobox 1 Novel U 0.0003178419242581313 -0.29289718232772566 1.0 16619 +54754 NUTM2F NUT family member 2F Novel U 0.00031751194647358985 -0.2929000272953505 1.0 16620 +10157 AASS aminoadipate-semialdehyde synthase Novel U 0.00031743232194183434 -0.29290071379373184 1.0 16621 +353144 LCE3C late cornified envelope 3C Novel N 0.0003172870058947041 -0.292901966664285 1.0 16622 +196446 MYRFL myelin regulatory factor like Novel U 0.00031728547488960116 -0.2929019798641431 1.0 16623 +55888 ZKSCAN7 zinc finger with KRAB and SCAN domains 7 Novel U 0.0003172575002650997 -0.2929022210528071 1.0 16624 +5885 RAD21 RAD21 cohesin complex component Novel U 0.0003169998483440418 -0.29290444244893804 1.0 16625 +162605 KRT28 keratin 28 Novel U 0.0003168752751856596 -0.29290551648064295 1.0 16626 +399949 HOATZ HOATZ cilia and flagella associated protein Novel U 0.0003167554888407953 -0.2929065492419044 1.0 16627 +8749 ADAM18 ADAM metallopeptidase domain 18 Novel U 0.00031655700728064156 -0.29290826048926466 1.0 16628 +222865 TMEM130 transmembrane protein 130 Novel U 0.00031643291771725056 -0.29290933035156136 1.0 16629 +115019 SLC26A9 solute carrier family 26 member 9 Novel U 0.00031584801058147827 -0.29291437324215186 1.0 16630 +29942 PURG purine rich element binding protein G Novel U 0.0003158180083082299 -0.2929146319125838 1.0 16631 +728269 MAGEA9B MAGE family member A9B Novel U 0.00031580886787722614 -0.2929147107185868 1.0 16632 +56979 PRDM9 PR/SET domain 9 Novel N 0.00031571292152412334 -0.2929155379387243 1.0 16633 +647286 RD3L RD3 like Novel U 0.00031563295498988225 -0.29291622738574663 1.0 16634 +341019 DCDC1 doublecortin domain containing 1 Novel U 0.00031562394606970046 -0.2929163050579035 1.0 16635 +56884 FSTL5 follistatin like 5 Novel U 0.00031561943204118966 -0.2929163439764779 1.0 16636 +112483 SAT2 spermidine/spermine N1-acetyltransferase family member 2 Novel N 0.0003152105297438823 -0.2929198694071342 1.0 16637 +401551 WDR38 WD repeat domain 38 Novel U 0.00031516940733697455 -0.29292022395196055 1.0 16638 +3042 HBM hemoglobin subunit mu Novel U 0.00031507134853400417 -0.29292106938499524 1.0 16639 +30014 SPANXA1 sperm protein associated with the nucleus, X-linked, family member A1 Novel N 0.00031505806237095574 -0.2929211839342331 1.0 16640 +2967 GTF2H3 general transcription factor IIH subunit 3 Novel N 0.0003148832821382413 -0.2929226908359908 1.0 16641 +55723 ASF1B anti-silencing function 1B histone chaperone Novel N 0.0003148790989439804 -0.2929227269022134 1.0 16642 +649238 PNMA6E PNMA family member 6E Novel U 0.0003146477630898077 -0.2929247214092572 1.0 16643 +283298 OLFML1 olfactomedin like 1 Novel U 0.0003145836793093796 -0.29292527392002954 1.0 16644 +6539 SLC6A12 solute carrier family 6 member 12 Novel U 0.0003145206277647158 -0.2929258175311805 1.0 16645 +10308 ZNF267 zinc finger protein 267 Novel U 0.00031439754352581247 -0.29292687872587664 1.0 16646 +124842 TMEM132E transmembrane protein 132E Novel N 0.00031426575427633945 -0.29292801497251386 1.0 16647 +256227 STEAP1B STEAP family member 1B Novel U 0.00031415688554572475 -0.29292895360544147 1.0 16648 +150465 TTL tubulin tyrosine ligase Novel U 0.00031411543505814523 -0.29292931097887903 1.0 16649 +265 AMELX amelogenin X-linked Novel N 0.00031373255101568306 -0.2929326120880927 1.0 16650 +54931 TRMT10C tRNA methyltransferase 10C, mitochondrial RNase P subunit Novel N 0.00031365797232758423 -0.2929332550827519 1.0 16651 +143941 TTC36 tetratricopeptide repeat domain 36 Novel U 0.00031359683516921143 -0.2929337821886493 1.0 16652 +2222 FDFT1 farnesyl-diphosphate farnesyltransferase 1 Novel U 0.0003135631449680767 -0.29293407265526855 1.0 16653 +387264 KRTAP5-1 keratin associated protein 5-1 Novel U 0.00031336621587198135 -0.2929357705177581 1.0 16654 +115939 TSR3 TSR3 ribosome maturation factor Novel N 0.00031335678912515057 -0.2929358517922887 1.0 16655 +56655 POLE4 DNA polymerase epsilon 4, accessory subunit Novel N 0.0003132445748450483 -0.2929368192695216 1.0 16656 +118460 EXOSC6 exosome component 6 Novel N 0.0003130983635618929 -0.2929380798585262 1.0 16657 +338323 NLRP14 NLR family pyrin domain containing 14 Novel N 0.0003130763291472646 -0.2929382698325159 1.0 16658 +348013 TMEM255B transmembrane protein 255B Novel U 0.0003129186683677219 -0.29293962913557964 1.0 16659 +124872 B4GALNT2 beta-1,4-N-acetyl-galactosaminyltransferase 2 (SID blood group) Novel N 0.00031285640638804634 -0.2929401659393426 1.0 16660 +8971 H1-10 H1.10 linker histone Novel U 0.0003128310014373504 -0.29294038497306435 1.0 16661 +23507 LRRC8B leucine rich repeat containing 8 VRAC subunit B Novel N 0.0003123499326135211 -0.2929445326014599 1.0 16662 +27300 ZNF544 zinc finger protein 544 Novel U 0.00031211861213822694 -0.29294652697591167 1.0 16663 +11062 DUS4L dihydrouridine synthase 4 like Novel N 0.0003118682823032001 -0.2929486852432543 1.0 16664 +440515 ZNF506 zinc finger protein 506 Novel U 0.0003117793528814764 -0.2929494519655536 1.0 16665 +646951 MINDY4B MINDY family member 4B Novel U 0.000311665870096253 -0.29295043037945007 1.0 16666 +126410 CYP4F22 cytochrome P450 family 4 subfamily F member 22 Novel U 0.0003115178896819212 -0.2929517062213631 1.0 16667 +64122 FN3K fructosamine 3 kinase Novel N 0.0003114981725990644 -0.29295187621602636 1.0 16668 +64409 GALNT17 polypeptide N-acetylgalactosaminyltransferase 17 Novel U 0.00031141515037399255 -0.2929525920082813 1.0 16669 +387763 C11orf96 chromosome 11 open reading frame 96 Novel U 0.00031133650074570196 -0.29295327010134287 1.0 16670 +55699 IARS2 isoleucyl-tRNA synthetase 2, mitochondrial Novel U 0.00031131642156030165 -0.2929534432179437 1.0 16671 +53841 CDHR5 cadherin related family member 5 Novel U 0.0003113139065741789 -0.2929534649013855 1.0 16672 +84935 MEDAG mesenteric estrogen dependent adipogenesis Novel U 0.00031113453958784085 -0.29295501134873125 1.0 16673 +55086 RADX RPA1 related single stranded DNA binding protein, X-linked Novel N 0.00031078698940309766 -0.2929580078202209 1.0 16674 +2992 GYG1 glycogenin 1 Novel N 0.0003106147689519643 -0.29295949265232396 1.0 16675 +441161 OOEP oocyte expressed protein Novel U 0.0003104395750648267 -0.2929610031204837 1.0 16676 +8353 H3C6 H3 clustered histone 6 Novel U 0.00031026415409429747 -0.29296251554648695 1.0 16677 +338785 KRT79 keratin 79 Novel U 0.0003100989421782808 -0.2929639399531419 1.0 16678 +79634 SCRN3 secernin 3 Novel U 0.0003096613042438647 -0.2929677131336804 1.0 16679 +51027 BOLA1 bolA family member 1 Novel U 0.0003094513293390985 -0.2929695234731458 1.0 16680 +284370 ZNF615 zinc finger protein 615 Novel U 0.00030945100293528594 -0.2929695262872998 1.0 16681 +8608 RDH16 retinol dehydrogenase 16 Novel N 0.00030935318945025237 -0.29297036960527817 1.0 16682 +84068 SLC10A7 solute carrier family 10 member 7 Novel U 0.0003092339021356152 -0.29297139806405353 1.0 16683 +57209 ZNF248 zinc finger protein 248 Novel U 0.0003091932216298446 -0.2929717487989433 1.0 16684 +55884 WSB2 WD repeat and SOCS box containing 2 Novel U 0.0003090417553081881 -0.292973054695284 1.0 16685 +140462 ASB9 ankyrin repeat and SOCS box containing 9 Novel U 0.0003085613179456993 -0.29297719687941287 1.0 16686 +340390 WDR97 WD repeat domain 97 Novel U 0.0003085002702417628 -0.2929777232140614 1.0 16687 +126638 RPTN repetin Novel U 0.00030830363054999184 -0.2929794185813953 1.0 16688 +78988 MRPL57 mitochondrial ribosomal protein L57 Novel U 0.0003080626910204954 -0.29298149588839306 1.0 16689 +6274 S100A3 S100 calcium binding protein A3 Novel U 0.00030806067082800304 -0.2929815133058754 1.0 16690 +9310 ZNF235 zinc finger protein 235 Novel U 0.00030789212994976236 -0.29298296641382543 1.0 16691 +8022 LHX3 LIM homeobox 3 Novel U 0.0003074983096831122 -0.29298636181182214 1.0 16692 +54537 SHLD2 shieldin complex subunit 2 Novel U 0.0003074897769111072 -0.29298643537877495 1.0 16693 +51686 OAZ3 ornithine decarboxylase antizyme 3 Novel N 0.0003073669624580485 -0.29298749424745996 1.0 16694 +64946 CENPH centromere protein H Novel U 0.00030728357998991487 -0.2929882131456204 1.0 16695 +7374 UNG uracil DNA glycosylase Novel U 0.0003069525075015051 -0.2929910675514474 1.0 16696 +148423 C1orf52 chromosome 1 open reading frame 52 Novel U 0.0003068525486264412 -0.2929919293663231 1.0 16697 +54892 NCAPG2 non-SMC condensin II complex subunit G2 Novel U 0.0003065301340763779 -0.29299470912605124 1.0 16698 +55871 ZNG1A Zn regulated GTPase metalloprotein activator 1A Novel N 0.0003062886041036126 -0.29299679152367053 1.0 16699 +135935 NOBOX NOBOX oogenesis homeobox Novel N 0.0003062869141705313 -0.2929968060937571 1.0 16700 +10991 SLC38A3 solute carrier family 38 member 3 Novel U 0.000306278689260728 -0.29299687700641613 1.0 16701 +353 APRT adenine phosphoribosyltransferase Novel N 0.00030611986577357126 -0.2929982463339896 1.0 16702 +84946 LTV1 LTV1 ribosome biogenesis factor Novel U 0.0003059693881878808 -0.29299954370575093 1.0 16703 +6136 RPL12 ribosomal protein L12 Novel N 0.0003059684021942703 -0.2929995522066866 1.0 16704 +4259 MGST3 microsomal glutathione S-transferase 3 Novel N 0.0003057708869579278 -0.2930012551226982 1.0 16705 +6487 ST3GAL3 ST3 beta-galactoside alpha-2,3-sialyltransferase 3 Novel U 0.00030576991798868415 -0.29300126347685496 1.0 16706 +374918 IGFL1 IGF like family member 1 Novel U 0.00030571147393745104 -0.2930017673636055 1.0 16707 +55027 HEATR3 HEAT repeat containing 3 Novel U 0.0003055716220315306 -0.29300297312400286 1.0 16708 +7727 ZNF174 zinc finger protein 174 Novel N 0.00030545356851383076 -0.29300399094535806 1.0 16709 +494119 SPANXN2 SPANX family member N2 Novel U 0.0003052322309638143 -0.29300589925007864 1.0 16710 +6819 SULT1C2 sulfotransferase family 1C member 2 Novel N 0.0003051386525674905 -0.29300670605441637 1.0 16711 +51426 POLK DNA polymerase kappa Novel U 0.00030506916193719135 -0.29300730518139606 1.0 16712 +6122 RPL3 ribosomal protein L3 Novel N 0.00030501661844114825 -0.29300775819536284 1.0 16713 +85453 TSPYL5 TSPY like 5 Novel U 0.0003048275557676122 -0.2930093882359609 1.0 16714 +441457 NUTM2G NUT family member 2G Novel U 0.0003048247229923361 -0.2930094126592837 1.0 16715 +26085 KLK13 kallikrein related peptidase 13 Novel U 0.00030463725372961183 -0.29301102896198067 1.0 16716 +254773 LYG2 lysozyme g2 Novel N 0.0003045457604908612 -0.2930118177887269 1.0 16717 +2644 GCHFR GTP cyclohydrolase I feedback regulator Novel N 0.00030412444386210545 -0.29301545025195547 1.0 16718 +85007 PHYKPL 5-phosphohydroxy-L-lysine phospho-lyase Novel N 0.0003041054888835098 -0.2930156136759887 1.0 16719 +55356 SLC22A15 solute carrier family 22 member 15 Novel U 0.00030374151246249806 -0.2930187517694679 1.0 16720 +27076 LYPD3 LY6/PLAUR domain containing 3 Novel N 0.0003037221166447497 -0.2930189189942816 1.0 16721 +54860 MS4A12 membrane spanning 4-domains A12 Novel U 0.0003035584572415426 -0.29302033001564554 1.0 16722 +134492 NUDCD2 NudC domain containing 2 Novel U 0.0003033467244429672 -0.2930221555111342 1.0 16723 +4701 NDUFA7 NADH:ubiquinone oxidoreductase subunit A7 Novel U 0.00030333600237368444 -0.29302224795353915 1.0 16724 +60482 SLC5A7 solute carrier family 5 member 7 Novel U 0.0003031469020366362 -0.29302387831886045 1.0 16725 +7691 ZNF132 zinc finger protein 132 Novel U 0.00030225130103894693 -0.29303159991698763 1.0 16726 +728695 SPANXB1 SPANX family member B1 Novel U 0.0003021324612070099 -0.2930326245177039 1.0 16727 +5431 POLR2B RNA polymerase II subunit B Novel N 0.00030190818607767886 -0.29303455814933566 1.0 16728 +387707 CC2D2B coiled-coil and C2 domain containing 2B Novel U 0.00030189640976459564 -0.29303465968110853 1.0 16729 +284312 ZSCAN1 zinc finger and SCAN domain containing 1 Novel U 0.0003017302029933056 -0.29303609266510167 1.0 16730 +114821 SCAND3 SCAN domain containing 3 Novel N 0.0003016015462194364 -0.2930372019044914 1.0 16731 +2098 ESD esterase D Novel U 0.0003014230794326894 -0.2930387405905914 1.0 16732 +6100 RP9 RP9 pre-mRNA splicing factor Novel N 0.00030112800124646404 -0.29304128466454393 1.0 16733 +4521 NUDT1 nudix hydrolase 1 Novel N 0.0003006322238581729 -0.29304555910568775 1.0 16734 +10591 DNPH1 2'-deoxynucleoside 5'-phosphate N-hydrolase 1 Novel N 0.0003004972360402381 -0.29304672292940476 1.0 16735 +167127 UGT3A2 UDP glycosyltransferase family 3 member A2 Novel N 0.0003003248920769921 -0.29304820882639154 1.0 16736 +3176 HNMT histamine N-methyltransferase Novel U 0.00030031567567703445 -0.29304828828737567 1.0 16737 +1961 EGR4 early growth response 4 Novel N 0.0003003017303018701 -0.29304840852013897 1.0 16738 +347475 CCDC160 coiled-coil domain containing 160 Novel U 0.00029974720676510303 -0.29305318945262343 1.0 16739 +125965 COX6B2 cytochrome c oxidase subunit 6B2 Novel U 0.00029971565404533784 -0.2930534614905314 1.0 16740 +139604 MAGEB16 MAGE family member B16 Novel U 0.0002995667795312435 -0.2930547450410993 1.0 16741 +8933 RTL8C retrotransposon Gag like 8C Novel U 0.0002993951892224841 -0.29305622444030743 1.0 16742 +7690 ZNF131 zinc finger protein 131 Novel U 0.0002993781337564921 -0.29305637148732344 1.0 16743 +148398 SAMD11 sterile alpha motif domain containing 11 Novel U 0.000299355634380073 -0.2930565654700717 1.0 16744 +58491 ZNF71 zinc finger protein 71 Novel U 0.0002991634060723526 -0.2930582228038003 1.0 16745 +3228 HOXC12 homeobox C12 Novel U 0.00029899641892921835 -0.29305966251592097 1.0 16746 +28990 ASTE1 asteroid homolog 1 Novel U 0.00029891712033227127 -0.293060346204192 1.0 16747 +8834 TMEM11 transmembrane protein 11 Novel N 0.00029881945253385585 -0.29306118826610494 1.0 16748 +93210 PGAP3 post-GPI attachment to proteins phospholipase 3 Novel U 0.00029848927210794813 -0.29306403498084166 1.0 16749 +5625 PRODH proline dehydrogenase 1 Novel N 0.00029836006057707456 -0.29306514900317676 1.0 16750 +1671 DEFA6 defensin alpha 6 Novel U 0.00029834584967830085 -0.2930652715252035 1.0 16751 +9079 LDB2 LIM domain binding 2 Novel U 0.0002983338388032919 -0.2930653750792976 1.0 16752 +8363 H4C11 H4 clustered histone 11 Novel U 0.00029827415550418484 -0.2930658896504646 1.0 16753 +9879 DDX46 DEAD-box helicase 46 Novel N 0.00029822657055929514 -0.2930662999133186 1.0 16754 +57452 GALNT16 polypeptide N-acetylgalactosaminyltransferase 16 Novel N 0.00029788704062470807 -0.2930692272366621 1.0 16755 +64087 MCCC2 methylcrotonyl-CoA carboxylase subunit 2 Novel U 0.0002976856626428942 -0.2930709634560849 1.0 16756 +2168 FABP1 fatty acid binding protein 1 Novel N 0.0002976837884566107 -0.29307097961474626 1.0 16757 +5004 ORM1 orosomucoid 1 Novel U 0.000297549952185383 -0.2930721335101796 1.0 16758 +79762 C1orf115 chromosome 1 open reading frame 115 Novel N 0.0002975332036095696 -0.29307227791128226 1.0 16759 +11085 ADAM30 ADAM metallopeptidase domain 30 Novel U 0.0002973716243125206 -0.2930736709986065 1.0 16760 +79369 B3GNT4 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 4 Novel N 0.00029733610532582856 -0.293073977232456 1.0 16761 +548593 SLX1A SLX1 homolog A, structure-specific endonuclease subunit Novel U 0.0002973324214094943 -0.2930740089940569 1.0 16762 +83444 INO80B INO80 complex subunit B Novel N 0.0002970814551450117 -0.2930761727484998 1.0 16763 +387273 KRTAP5-10 keratin associated protein 5-10 Novel U 0.0002970274482957584 -0.2930766383790508 1.0 16764 +91156 IGFN1 immunoglobulin like and fibronectin type III domain containing 1 Novel U 0.00029695762148868634 -0.2930772404044439 1.0 16765 +83657 DYNLRB2 dynein light chain roadblock-type 2 Novel U 0.0002968428345912944 -0.29307823006199696 1.0 16766 +353322 ANKRD37 ankyrin repeat domain 37 Novel U 0.00029659291999523617 -0.2930803847492761 1.0 16767 +892 CCNC cyclin C Novel U 0.0002965722677641126 -0.293080562806502 1.0 16768 +151516 ASPRV1 aspartic peptidase retroviral like 1 Novel U 0.0002963047928560278 -0.2930828688934254 1.0 16769 +6919 TCEA2 transcription elongation factor A2 Novel U 0.0002962406983003283 -0.29308342149709876 1.0 16770 +388335 TMEM220 transmembrane protein 220 Novel U 0.0002961463160534735 -0.2930842352319902 1.0 16771 +400451 FAM174B family with sequence similarity 174 member B Novel U 0.0002960247888095069 -0.29308528300275166 1.0 16772 +10164 CHST4 carbohydrate sulfotransferase 4 Novel N 0.00029598077724908795 -0.29308566245697676 1.0 16773 +11136 SLC7A9 solute carrier family 7 member 9 Novel N 0.00029571043351291575 -0.2930879932780592 1.0 16774 +90580 TIMM29 translocase of inner mitochondrial membrane 29 Novel U 0.0002956884316450025 -0.2930881829714411 1.0 16775 +266740 MAGEA2B MAGE family member A2B Novel U 0.0002956053473593406 -0.2930888992987634 1.0 16776 +51187 RSL24D1 ribosomal L24 domain containing 1 Novel U 0.0002952588644844907 -0.29309188656823326 1.0 16777 +116412 ZNF837 zinc finger protein 837 Novel U 0.00029517463969624713 -0.2930926127286203 1.0 16778 +169270 ZNF596 zinc finger protein 596 Novel U 0.000295009358308502 -0.2930940377342393 1.0 16779 +80218 NAA50 N-alpha-acetyltransferase 50, NatE catalytic subunit Novel U 0.0002949260280758778 -0.2930947561820412 1.0 16780 +26024 PTCD1 pentatricopeptide repeat domain 1 Novel N 0.000294765829082289 -0.2930961373688108 1.0 16781 +56981 PRDM11 PR/SET domain 11 Novel N 0.0002942219525294782 -0.2931008265062531 1.0 16782 +84651 SPINK7 serine peptidase inhibitor Kazal type 7 Novel U 0.00029414810955607937 -0.293101463157805 1.0 16783 +26061 HACL1 2-hydroxyacyl-CoA lyase 1 Novel U 0.00029414745544255723 -0.29310146879737187 1.0 16784 +55011 PIH1D1 PIH1 domain containing 1 Novel U 0.0002940468241223418 -0.2931023364098642 1.0 16785 +79084 WDR77 WD repeat domain 77 Novel U 0.0002937780887795332 -0.2931046533638706 1.0 16786 +118471 PRAP1 proline rich acidic protein 1 Novel U 0.0002936005823223017 -0.29310618377030295 1.0 16787 +54937 SOHLH2 spermatogenesis and oogenesis specific basic helix-loop-helix 2 Novel U 0.0002935503646493224 -0.29310661673173405 1.0 16788 +57481 KIAA1210 KIAA1210 Novel U 0.0002934002064399815 -0.2931079113499301 1.0 16789 +2941 GSTA4 glutathione S-transferase alpha 4 Novel N 0.00029339747999482523 -0.2931079348565071 1.0 16790 +151258 SLC38A11 solute carrier family 38 member 11 Novel U 0.00029320067405236836 -0.2931096316572036 1.0 16791 +23117 NPIPB3 nuclear pore complex interacting protein family member B3 Novel U 0.00029315366095123183 -0.29311003698979554 1.0 16792 +8352 H3C3 H3 clustered histone 3 Novel U 0.00029313117096201117 -0.29311023089161015 1.0 16793 +83538 ODAD4 outer dynein arm docking complex subunit 4 Novel U 0.0002931081868683855 -0.293110429053442 1.0 16794 +653808 ZG16 zymogen granule protein 16 Novel U 0.00029310085128888283 -0.29311049229856684 1.0 16795 +54621 VSIG10 V-set and immunoglobulin domain containing 10 Novel U 0.00029278768707829067 -0.2931131923046948 1.0 16796 +10343 PKDREJ polycystin family receptor for egg jelly Novel N 0.0002927411622082304 -0.29311359342790755 1.0 16797 +4109 MAGEA10 MAGE family member A10 Novel U 0.00029265517353589806 -0.29311433479596427 1.0 16798 +3955 LFNG LFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase Novel U 0.00029263201880999607 -0.2931145344289354 1.0 16799 +55153 SDAD1 SDA1 domain containing 1 Novel U 0.00029257150065568796 -0.29311505619796896 1.0 16800 +292 SLC25A5 solute carrier family 25 member 5 Novel N 0.00029218970073438235 -0.2931183479602212 1.0 16801 +26097 CHTOP chromatin target of PRMT1 Novel N 0.0002916727954868895 -0.2931228045593108 1.0 16802 +64377 CHST8 carbohydrate sulfotransferase 8 Novel N 0.00029102037379615957 -0.2931284295397633 1.0 16803 +26032 SUSD5 sushi domain containing 5 Novel U 0.000291015047324099 -0.29312847546297777 1.0 16804 +128966690 LOC128966690 maFF-interacting protein Novel U 0.0002909532969841664 -0.2931290078555392 1.0 16805 +9581 PREPL prolyl endopeptidase like Novel U 0.00029087312707568833 -0.293129699055992 1.0 16806 +115509 ZNF689 zinc finger protein 689 Novel U 0.0002908709427599371 -0.29312971788849496 1.0 16807 +89884 LHX4 LIM homeobox 4 Novel U 0.000290538847519814 -0.29313258111217466 1.0 16808 +284349 ZNF283 zinc finger protein 283 Novel U 0.0002904362955005453 -0.29313346528434725 1.0 16809 +8635 RNASET2 ribonuclease T2 Novel N 0.00029040083770557815 -0.29313377099062043 1.0 16810 +57626 KLHL1 kelch like family member 1 Novel U 0.00029039695148123614 -0.2931338044964591 1.0 16811 +25853 DCAF12 DDB1 and CUL4 associated factor 12 Novel U 0.0002902898092947116 -0.29313472824365117 1.0 16812 +79157 MFSD11 major facilitator superfamily domain containing 11 Novel U 0.00029019763370355096 -0.2931355229534314 1.0 16813 +375484 SIMC1 SUMO interacting motifs containing 1 Novel U 0.00029009320764951987 -0.2931364232829591 1.0 16814 +6942 TCF20 transcription factor 20 Novel U 0.00028970004474042376 -0.29313981301341985 1.0 16815 +155465 AGR3 anterior gradient 3, protein disulphide isomerase family member Novel U 0.0002896936838347974 -0.2931398678552044 1.0 16816 +6512 SLC1A7 solute carrier family 1 member 7 Novel U 0.00028938160560970373 -0.29314255849829723 1.0 16817 +90075 ZNF30 zinc finger protein 30 Novel U 0.0002891524705550495 -0.29314453403072016 1.0 16818 +65244 SPATS2 spermatogenesis associated serine rich 2 Novel U 0.00028882937719327357 -0.2931473196429555 1.0 16819 +79751 SLC25A22 solute carrier family 25 member 22 Novel N 0.00028882449111294857 -0.293147361769247 1.0 16820 +100996693 SPEGNB SPEG neighbor Novel U 0.00028866799873207756 -0.2931487109987344 1.0 16821 +340024 SLC6A19 solute carrier family 6 member 19 Novel U 0.0002886649727339097 -0.29314873708796596 1.0 16822 +387032 ZKSCAN4 zinc finger with KRAB and SCAN domains 4 Novel U 0.0002882527223621599 -0.293152291384697 1.0 16823 +140432 RNF113B ring finger protein 113B Novel U 0.000288198329828564 -0.29315276034050053 1.0 16824 +79742 DIPK2B divergent protein kinase domain 2B Novel U 0.000288159704771994 -0.29315309335393536 1.0 16825 +115749 C12orf56 chromosome 12 open reading frame 56 Novel U 0.0002881531152898643 -0.29315315016643667 1.0 16826 +124783 SPATA32 spermatogenesis associated 32 Novel U 0.0002880358924890541 -0.2931541608256047 1.0 16827 +5018 OXA1L OXA1L mitochondrial inner membrane protein Novel U 0.00028784535645916644 -0.293155803569031 1.0 16828 +128077 LIX1L limb and CNS expressed 1 like Novel U 0.00028772633882632906 -0.29315682970269225 1.0 16829 +84787 KMT5C lysine methyltransferase 5C Novel N 0.00028766916621276973 -0.2931573226274958 1.0 16830 +222662 LHFPL5 LHFPL tetraspan subfamily member 5 Novel N 0.0002876281209031444 -0.2931576765076128 1.0 16831 +84707 BEX2 brain expressed X-linked 2 Novel N 0.00028753976868558406 -0.29315843825343424 1.0 16832 +388962 BOLA3 bolA family member 3 Novel N 0.00028720324005881894 -0.29316133970041885 1.0 16833 +154007 SNRNP48 small nuclear ribonucleoprotein U11/U12 subunit 48 Novel N 0.0002869390929014805 -0.2931636170964922 1.0 16834 +7562 ZNF708 zinc finger protein 708 Novel U 0.0002868428549570869 -0.29316444683064063 1.0 16835 +79698 ZMAT4 zinc finger matrin-type 4 Novel U 0.0002867493392352353 -0.2931652530946182 1.0 16836 +375287 RBM43 RNA binding motif protein 43 Novel U 0.00028644907250178694 -0.2931678419026394 1.0 16837 +374393 FAM111B FAM111 trypsin like peptidase B Novel N 0.00028634045914325743 -0.293168778333827 1.0 16838 +6230 RPS25 ribosomal protein S25 Novel N 0.0002862710462543967 -0.2931693767905438 1.0 16839 +149685 ADIG adipogenin Novel U 0.00028617941276477116 -0.2931701668264902 1.0 16840 +120237 DBX1 developing brain homeobox 1 Novel U 0.00028615779018975796 -0.2931703532497246 1.0 16841 +55079 FEZF2 FEZ family zinc finger 2 Novel U 0.00028613398912365374 -0.29317055845524354 1.0 16842 +56948 SDR39U1 short chain dehydrogenase/reductase family 39U member 1 Novel U 0.00028591938018232506 -0.2931724087479561 1.0 16843 +81031 SLC2A10 solute carrier family 2 member 10 Novel U 0.00028582165221255725 -0.293173251328648 1.0 16844 +28231 SLCO4A1 solute carrier organic anion transporter family member 4A1 Novel U 0.00028578799274270523 -0.29317354153031155 1.0 16845 +80185 TTI2 TELO2 interacting protein 2 Novel U 0.00028574016150127696 -0.293173953916659 1.0 16846 +254528 MEIOB meiosis specific with OB-fold Novel N 0.0002856179839221774 -0.29317500729441137 1.0 16847 +97 ACYP1 acylphosphatase 1 Novel N 0.00028539984493437906 -0.29317688802210595 1.0 16848 +164045 HFM1 helicase for meiosis 1 Novel N 0.00028527878896457133 -0.2931779317296857 1.0 16849 +79864 JHY junctional cadherin complex regulator Novel U 0.00028520445555214814 -0.2931785726096531 1.0 16850 +140683 BPIFA2 BPI fold containing family A member 2 Novel U 0.00028519488084154554 -0.29317865515988206 1.0 16851 +64426 SUDS3 SDS3 homolog, SIN3A corepressor complex component Novel N 0.0002851433302267601 -0.2931790996135301 1.0 16852 +3167 HMX2 H6 family homeobox 2 Novel U 0.000284926047041225 -0.2931809729627591 1.0 16853 +8645 KCNK5 potassium two pore domain channel subfamily K member 5 Novel N 0.0002848685586845054 -0.2931814686098036 1.0 16854 +57109 REXO4 REX4 homolog, 3'-5' exonuclease Novel N 0.0002848627728213314 -0.29318151849374785 1.0 16855 +8968 H3C7 H3 clustered histone 7 Novel U 0.00028476602419808667 -0.29318235263081327 1.0 16856 +102723737 CT45A8 cancer/testis antigen family 45 member A8 Novel U 0.00028473239707696836 -0.2931826425535759 1.0 16857 +84890 ADO 2-aminoethanethiol dioxygenase Novel N 0.0002843683659232132 -0.29318578111894406 1.0 16858 +267002 PGBD2 piggyBac transposable element derived 2 Novel U 0.0002843298828104806 -0.29318611290858254 1.0 16859 +3005 H1-0 H1.0 linker histone Novel U 0.0002839440985716436 -0.293189439022403 1.0 16860 +127700 OSCP1 organic solute carrier partner 1 Novel N 0.0002837150066461388 -0.29319141418297956 1.0 16861 +50814 NSDHL NAD(P) dependent steroid dehydrogenase-like Novel U 0.000283673410571972 -0.29319177281162023 1.0 16862 +6879 TAF7 TATA-box binding protein associated factor 7 Novel U 0.00028364870053754557 -0.29319198585398626 1.0 16863 +57107 PDSS2 decaprenyl diphosphate synthase subunit 2 Novel N 0.0002834168549718984 -0.29319398475560654 1.0 16864 +442868 BPY2C basic charge Y-linked 2C Novel N 0.0002831642828853898 -0.29319616235495627 1.0 16865 +5304 PIP prolactin induced protein Novel N 0.0002831132405284635 -0.2931966024265603 1.0 16866 +55209 SETD5 SET domain containing 5 Novel U 0.00028280197742320987 -0.293199286041939 1.0 16867 +148789 B3GALNT2 beta-1,3-N-acetylgalactosaminyltransferase 2 Novel N 0.00028275562118029013 -0.29319968571130006 1.0 16868 +51575 ESF1 ESF1 nucleolar pre-rRNA processing protein homolog Novel U 0.000282742993419835 -0.293199794583992 1.0 16869 +84804 MFSD9 major facilitator superfamily domain containing 9 Novel U 0.0002825583309685183 -0.2932013866872186 1.0 16870 +646 BNC1 basonuclin zinc finger protein 1 Novel N 0.00028250050155827997 -0.2932018852747224 1.0 16871 +9084 VCY variable charge Y-linked Novel N 0.0002823743037139611 -0.293202973313973 1.0 16872 +1666 DECR1 2,4-dienoyl-CoA reductase 1 Novel N 0.0002822548272414128 -0.2932040034036101 1.0 16873 +8693 GALNT4 polypeptide N-acetylgalactosaminyltransferase 4 Novel N 0.00028221302223248096 -0.29320436383362236 1.0 16874 +27301 APEX2 apurinic/apyrimidinic endodeoxyribonuclease 2 Novel U 0.00028186393194701314 -0.2932073735833898 1.0 16875 +57106 NAT14 N-acetyltransferase 14 (putative) Novel U 0.0002818322916647266 -0.2932076463762351 1.0 16876 +84871 AGBL4 AGBL carboxypeptidase 4 Novel U 0.0002817417039740625 -0.29320842739562253 1.0 16877 +163059 ZNF433 zinc finger protein 433 Novel U 0.0002816703726061632 -0.2932090423928793 1.0 16878 +203259 FAM219A family with sequence similarity 219 member A Novel U 0.000281534308582123 -0.29321021549531656 1.0 16879 +126668 TDRD10 tudor domain containing 10 Novel U 0.0002814730921233835 -0.29321074328491753 1.0 16880 +29948 OSGIN1 oxidative stress induced growth inhibitor 1 Novel N 0.00028144410997004137 -0.2932109931601874 1.0 16881 +3150 HMGN1 high mobility group nucleosome binding domain 1 Novel N 0.0002809734800066228 -0.2932150507879183 1.0 16882 +112802 KRT71 keratin 71 Novel N 0.0002808853603497419 -0.29321581052867257 1.0 16883 +6632 SNRPD1 small nuclear ribonucleoprotein D1 polypeptide Novel N 0.0002807941436088417 -0.2932165969715389 1.0 16884 +7903 ST8SIA4 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 4 Novel N 0.00028078977579974436 -0.29321663462945424 1.0 16885 +100526737 RBM14-RBM4 RBM14-RBM4 readthrough Novel U 0.00028077845122685414 -0.29321673226646117 1.0 16886 +64405 CDH22 cadherin 22 Novel U 0.0002807351983035052 -0.29321710517994926 1.0 16887 +1044 CDX1 caudal type homeobox 1 Novel N 0.00028050921430216094 -0.29321905354495337 1.0 16888 +101928603 ARMH2 armadillo like helical domain containing 2 Novel U 0.00028048270634295535 -0.29321928208847736 1.0 16889 +10172 ZNF256 zinc finger protein 256 Novel N 0.000280436812542298 -0.29321967777080254 1.0 16890 +3225 HOXC9 homeobox C9 Novel U 0.00028041057010929916 -0.2932199040250408 1.0 16891 +349633 PLET1 placenta expressed transcript 1 Novel U 0.0002803092268143991 -0.2932207777759612 1.0 16892 +13 AADAC arylacetamide deacetylase Novel N 0.00028022503148466426 -0.2932215036823661 1.0 16893 +79828 METTL8 methyltransferase 8, tRNA N3-cytidine Novel N 0.0002801585185651918 -0.29322207713643295 1.0 16894 +353497 POLN DNA polymerase nu Novel N 0.00027988890507396136 -0.2932244016615667 1.0 16895 +80255 SLC35F5 solute carrier family 35 member F5 Novel U 0.0002797669753044879 -0.2932254529027802 1.0 16896 +56126 PCDHB10 protocadherin beta 10 Novel U 0.00027964553331362104 -0.2932264999385155 1.0 16897 +340096 H3Y2 H3.Y histone 2 Novel U 0.0002795591730275519 -0.29322724451051235 1.0 16898 +284254 DYNAP dynactin associated protein Novel U 0.0002795187472444063 -0.29322759304926144 1.0 16899 +80167 ABHD18 abhydrolase domain containing 18 Novel U 0.0002794513496876668 -0.29322817413040053 1.0 16900 +11007 CCDC85B coiled-coil domain containing 85B Novel N 0.0002794382808760507 -0.29322828680570073 1.0 16901 +29094 LGALSL galectin like Novel U 0.0002793207434527321 -0.2932293001774479 1.0 16902 +57673 BEND3 BEN domain containing 3 Novel U 0.0002790737580317856 -0.2932314296102742 1.0 16903 +55274 PHF10 PHD finger protein 10 Novel U 0.0002790445483098576 -0.29323168144757095 1.0 16904 +57597 BAHCC1 BAH domain and coiled-coil containing 1 Novel U 0.000279012455600368 -0.29323195814110536 1.0 16905 +28977 MRPL42 mitochondrial ribosomal protein L42 Novel U 0.00027900648896471067 -0.29323200958361473 1.0 16906 +85395 SLX9 SLX9 ribosome biogenesis factor Novel U 0.0002789229019575931 -0.2932327302452478 1.0 16907 +64711 HS3ST6 heparan sulfate-glucosamine 3-sulfotransferase 6 Novel N 0.00027889187064827784 -0.2932329977877143 1.0 16908 +56111 PCDHGA4 protocadherin gamma subfamily A, 4 Novel U 0.0002788163046364405 -0.2932336492947771 1.0 16909 +140831 ZSWIM3 zinc finger SWIM-type containing 3 Novel U 0.0002787508867366954 -0.29323421330791855 1.0 16910 +26290 GALNT8 polypeptide N-acetylgalactosaminyltransferase 8 Novel N 0.0002786554962195665 -0.29323503573580806 1.0 16911 +259215 LY6G6F lymphocyte antigen 6 family member G6F Novel U 0.0002786385473021983 -0.2932351818641944 1.0 16912 +151230 KLHL23 kelch like family member 23 Novel U 0.000278485273721198 -0.29323650334217294 1.0 16913 +5073 PARN poly(A)-specific ribonuclease Novel U 0.0002783884547163144 -0.29323733808604735 1.0 16914 +5435 POLR2F RNA polymerase II, I and III subunit F Novel N 0.0002783035313473813 -0.2932380702693837 1.0 16915 +554313 H4C15 H4 clustered histone 15 Novel U 0.0002778801853606765 -0.2932417202291163 1.0 16916 +6820 SULT2B1 sulfotransferase family 2B member 1 Novel U 0.0002777782010730937 -0.29324259950647985 1.0 16917 +79672 FN3KRP fructosamine 3 kinase related protein Novel N 0.0002775463236892397 -0.2932445986824271 1.0 16918 +90529 STPG1 sperm tail PG-rich repeat containing 1 Novel N 0.0002773114409443345 -0.2932466237696789 1.0 16919 +25832 NBPF14 NBPF member 14 Novel U 0.00027723415819353396 -0.2932472900779405 1.0 16920 +411 ARSB arylsulfatase B Novel U 0.000277159379123313 -0.29324793480023315 1.0 16921 +152586 MGAT4D MGAT4 family member D Novel U 0.0002771301345943229 -0.29324818693762567 1.0 16922 +51301 GCNT4 glucosaminyl (N-acetyl) transferase 4 Novel N 0.0002768042847504786 -0.29325099631540713 1.0 16923 +284309 ZNF776 zinc finger protein 776 Novel U 0.00027664670409483953 -0.2932523549276671 1.0 16924 +340719 NANOS1 nanos C2HC-type zinc finger 1 Novel N 0.0002764846654230356 -0.29325375197558007 1.0 16925 +11226 GALNT6 polypeptide N-acetylgalactosaminyltransferase 6 Novel N 0.0002764207110015596 -0.293254303371059 1.0 16926 +347411 MPC1L mitochondrial pyruvate carrier 1 like Novel N 0.0002762232900698147 -0.29325600547400527 1.0 16927 +727764 MAFIP MAFF interacting protein Novel U 0.0002758895158263594 -0.29325888317353865 1.0 16928 +5083 PAX9 paired box 9 Novel U 0.00027576715903679383 -0.2932599380963889 1.0 16929 +55863 TMEM126B transmembrane protein 126B Novel U 0.0002754747895123168 -0.29326245881708757 1.0 16930 +333932 H3C15 H3 clustered histone 15 Novel N 0.0002754173211697533 -0.29326295429157617 1.0 16931 +51253 MRPL37 mitochondrial ribosomal protein L37 Novel U 0.000275415596207589 -0.2932629691636728 1.0 16932 +284018 C17orf58 chromosome 17 open reading frame 58 Novel U 0.000275026134625955 -0.2932663269824192 1.0 16933 +481 ATP1B1 ATPase Na+/K+ transporting subunit beta 1 Novel U 0.00027499936358791753 -0.2932665577941286 1.0 16934 +8884 SLC5A6 solute carrier family 5 member 6 Novel U 0.00027477443863846527 -0.29326849702831087 1.0 16935 +22802 CLCA4 chloride channel accessory 4 Novel U 0.0002742238453337335 -0.29327324407553573 1.0 16936 +79925 SPEF2 sperm flagellar 2 Novel N 0.00027416381511959775 -0.29327376163769814 1.0 16937 +11313 LYPLA2 lysophospholipase 2 Novel N 0.0002740499712595139 -0.2932747431646717 1.0 16938 +285641 SLC36A3 solute carrier family 36 member 3 Novel U 0.0002740406684292163 -0.2932748233708318 1.0 16939 +22932 POMZP3 POM121 and ZP3 fusion Novel U 0.0002740297956546025 -0.2932749171125721 1.0 16940 +112488738 TAF11L10 TATA-box binding protein associated factor 11 like 10 Novel U 0.000273962859870648 -0.2932754942124473 1.0 16941 +5810 RAD1 RAD1 checkpoint DNA exonuclease Novel U 0.0002738885276128344 -0.29327613508246 1.0 16942 +7589 ZSCAN21 zinc finger and SCAN domain containing 21 Novel N 0.0002735566145216572 -0.2932789967357071 1.0 16943 +51365 PLA1A phospholipase A1 member A Novel U 0.0002735524867981271 -0.2932790323236781 1.0 16944 +57763 ANKRA2 ankyrin repeat family A member 2 Novel U 0.00027343808965683077 -0.2932800186208732 1.0 16945 +51265 CDKL3 cyclin dependent kinase like 3 Novel N 0.0002734266540354521 -0.2932801172153063 1.0 16946 +55629 PNRC2 proline rich nuclear receptor coactivator 2 Novel N 0.0002732792949362046 -0.29328138770043044 1.0 16947 +57692 MAGEE1 MAGE family member E1 Novel U 0.00027320546744787457 -0.2932820242184748 1.0 16948 +133022 TRAM1L1 translocation associated membrane protein 1 like 1 Novel U 0.0002731572006314277 -0.29328244036021706 1.0 16949 +8852 AKAP4 A-kinase anchoring protein 4 Novel N 0.00027312370754423756 -0.29328272912738007 1.0 16950 +26998 FETUB fetuin B Novel U 0.00027310189467459405 -0.29328291719127664 1.0 16951 +646486 FABP12 fatty acid binding protein 12 Novel U 0.00027299637936284535 -0.2932838269120515 1.0 16952 +165100 TEX44 testis expressed 44 Novel U 0.00027293723653293165 -0.29328433682345834 1.0 16953 +3171 FOXA3 forkhead box A3 Novel N 0.00027290976618294375 -0.2932845736644216 1.0 16954 +8664 EIF3D eukaryotic translation initiation factor 3 subunit D Novel U 0.00027267747878762996 -0.2932865763753624 1.0 16955 +390940 PINLYP phospholipase A2 inhibitor and LY6/PLAUR domain containing Novel U 0.0002725448073040736 -0.29328772022835226 1.0 16956 +10943 MSL3 MSL complex subunit 3 Novel U 0.00027238949121407104 -0.29328905931621924 1.0 16957 +10992 SF3B2 splicing factor 3b subunit 2 Novel U 0.00027223671647705203 -0.2932903764933174 1.0 16958 +4204 MECP2 methyl-CpG binding protein 2 Novel U 0.00027217019856036885 -0.2932909499904687 1.0 16959 +115572 TENT5B terminal nucleotidyltransferase 5B Novel N 0.00027209338155206923 -0.29329161228324074 1.0 16960 +339105 PRSS53 serine protease 53 Novel U 0.0002720835355603254 -0.29329169717237286 1.0 16961 +286075 ZNF707 zinc finger protein 707 Novel U 0.0002720646088250263 -0.293291860352901 1.0 16962 +390874 ONECUT3 one cut homeobox 3 Novel U 0.0002719946042771699 -0.2932924639107209 1.0 16963 +53339 BTBD1 BTB domain containing 1 Novel U 0.00027198671688115144 -0.2932925319134391 1.0 16964 +84897 TBRG1 transforming growth factor beta regulator 1 Novel N 0.00027191617288823024 -0.29329314012218954 1.0 16965 +284306 ZNF547 zinc finger protein 547 Novel U 0.0002718268326544539 -0.2932939103863848 1.0 16966 +199974 CYP4Z1 cytochrome P450 family 4 subfamily Z member 1 Novel N 0.00027182298934860105 -0.29329394352219346 1.0 16967 +10606 PAICS phosphoribosylaminoimidazole carboxylase and phosphoribosylaminoimidazolesuccinocarboxamide synthase Novel N 0.00027149337091666596 -0.2932967853915899 1.0 16968 +7783 ZP2 zona pellucida glycoprotein 2 Novel N 0.0002713905369387161 -0.293297671994724 1.0 16969 +64116 SLC39A8 solute carrier family 39 member 8 Novel U 0.0002711355151521956 -0.29329987071463864 1.0 16970 +115708 TRMT61A tRNA methyltransferase 61A Novel N 0.00027095227106624224 -0.2933014505891526 1.0 16971 +115290 FBXO17 F-box protein 17 Novel U 0.0002708069225176901 -0.293302703739923 1.0 16972 +79844 ZDHHC11 zinc finger DHHC-type containing 11 Novel N 0.0002707947055857641 -0.29330280907057693 1.0 16973 +171019 ADAMTS19 ADAM metallopeptidase with thrombospondin type 1 motif 19 Novel U 0.0002707333735621806 -0.29330333785654256 1.0 16974 +56964 WDR93 WD repeat domain 93 Novel U 0.00027072546949487693 -0.29330340600299554 1.0 16975 +341392 ACSM4 acyl-CoA synthetase medium chain family member 4 Novel U 0.000270531098658225 -0.293305081808954 1.0 16976 +255798 SMCO1 single-pass membrane protein with coiled-coil domains 1 Novel U 0.0002704664486989448 -0.2933056392011474 1.0 16977 +51650 MRPS33 mitochondrial ribosomal protein S33 Novel U 0.00027033159318769564 -0.2933068018841566 1.0 16978 +100526794 NT5C1B-RDH14 NT5C1B-RDH14 readthrough Novel U 0.00027027790894980304 -0.293307264733251 1.0 16979 +80034 CSRNP3 cysteine and serine rich nuclear protein 3 Novel U 0.00026983981363438086 -0.2933110418571888 1.0 16980 +64951 MRPS24 mitochondrial ribosomal protein S24 Novel U 0.00026952149162147546 -0.29331378633231225 1.0 16981 +80264 ZNF430 zinc finger protein 430 Novel U 0.00026935753320836783 -0.2933151999316481 1.0 16982 +79073 TMEM109 transmembrane protein 109 Novel U 0.0002689739045238016 -0.29331850746093846 1.0 16983 +65005 MRPL9 mitochondrial ribosomal protein L9 Novel U 0.00026897379529429585 -0.29331850840268187 1.0 16984 +51734 MSRB1 methionine sulfoxide reductase B1 Novel N 0.0002687708771118833 -0.2933202579012435 1.0 16985 +113510 HELQ helicase, POLQ like Novel N 0.0002687347949043935 -0.2933205689910106 1.0 16986 +124454 EARS2 glutamyl-tRNA synthetase 2, mitochondrial Novel U 0.0002687215828546173 -0.29332068290126645 1.0 16987 +64062 RBM26 RNA binding motif protein 26 Novel U 0.0002685277539955612 -0.29332235403445966 1.0 16988 +9811 CTIF cap binding complex dependent translation initiation factor Novel N 0.0002683537201338265 -0.2933238545012348 1.0 16989 +59344 ALOXE3 arachidonate lipoxygenase 3 Novel U 0.00026835089949858905 -0.2933238788198899 1.0 16990 +79944 L2HGDH L-2-hydroxyglutarate dehydrogenase Novel U 0.00026829364333820016 -0.29332437246500864 1.0 16991 +55118 CRTAC1 cartilage acidic protein 1 Novel U 0.00026816997743286903 -0.29332543867465494 1.0 16992 +80737 VWA7 von Willebrand factor A domain containing 7 Novel U 0.0002676474727201875 -0.29332994355062236 1.0 16993 +116541 MRPL54 mitochondrial ribosomal protein L54 Novel U 0.0002676473888744554 -0.2933299442735146 1.0 16994 +3238 HOXD12 homeobox D12 Novel U 0.00026736067647775106 -0.2933324162201863 1.0 16995 +58500 ZNF250 zinc finger protein 250 Novel U 0.0002671143309628207 -0.29333454013593857 1.0 16996 +5440 POLR2K RNA polymerase II, I and III subunit K Novel N 0.0002670783193486892 -0.29333485061707126 1.0 16997 +83595 SOX7 SRY-box transcription factor 7 Novel N 0.0002670552756801974 -0.2933350492925394 1.0 16998 +6628 SNRPB small nuclear ribonucleoprotein polypeptides B and B1 Novel U 0.00026665646138492526 -0.2933384877475248 1.0 16999 +51313 GASK1B golgi associated kinase 1B Novel U 0.00026661836899426444 -0.29333881616847696 1.0 17000 +126 ADH1C alcohol dehydrogenase 1C (class I), gamma polypeptide Novel U 0.00026658347645069935 -0.2933391170013252 1.0 17001 +22875 ENPP4 ectonucleotide pyrophosphatase/phosphodiesterase 4 Novel N 0.0002664632250044612 -0.29334015377254863 1.0 17002 +127294 MYOM3 myomesin 3 Novel U 0.00026645994175813196 -0.29334018207969514 1.0 17003 +8706 B3GALNT1 beta-1,3-N-acetylgalactosaminyltransferase 1 (Globoside blood group) Novel N 0.00026617224748464466 -0.29334266249180846 1.0 17004 +79706 PRKRIP1 PRKR interacting protein 1 Novel N 0.0002661125220070445 -0.2933431774266256 1.0 17005 +83959 SLC4A11 solute carrier family 4 member 11 Novel U 0.0002659489722063757 -0.29334458750302994 1.0 17006 +80723 SLC35G2 solute carrier family 35 member G2 Novel U 0.000265901201470824 -0.29334499936771424 1.0 17007 +79863 RBFA ribosome binding factor A Novel U 0.00026586921131524564 -0.29334527517706016 1.0 17008 +22977 AKR7A3 aldo-keto reductase family 7 member A3 Novel N 0.00026577267060438176 -0.29334610752156864 1.0 17009 +200634 KRTCAP3 keratinocyte associated protein 3 Novel U 0.0002657449269489923 -0.29334634671888754 1.0 17010 +80224 NUBPL NUBP iron-sulfur cluster assembly factor, mitochondrial Novel N 0.0002656057029509116 -0.29334754706565536 1.0 17011 +92797 HELB DNA helicase B Novel N 0.0002655360876256986 -0.2933481472677166 1.0 17012 +149954 BPIFB4 BPI fold containing family B member 4 Novel U 0.0002654171228804704 -0.29334917294539703 1.0 17013 +100130301 C8orf89 chromosome 8 open reading frame 89 Novel U 0.0002651743378266885 -0.29335126616394125 1.0 17014 +84885 ZDHHC12 zinc finger DHHC-type palmitoyltransferase 12 Novel U 0.00026509726484163506 -0.29335193066366666 1.0 17015 +160428 ALDH1L2 aldehyde dehydrogenase 1 family member L2 Novel N 0.00026493599151315305 -0.2933533211130234 1.0 17016 +440051 KRTAP5-11 keratin associated protein 5-11 Novel U 0.00026480585995303143 -0.2933544430675696 1.0 17017 +100529063 BCL2L2-PABPN1 BCL2L2-PABPN1 readthrough Novel U 0.00026476357631263834 -0.2933548076241962 1.0 17018 +170712 COX7B2 cytochrome c oxidase subunit 7B2 Novel U 0.00026457500420787593 -0.2933564334352602 1.0 17019 +56978 PRDM8 PR/SET domain 8 Novel N 0.00026434917671669004 -0.29335838045088153 1.0 17020 +80896 NPL N-acetylneuraminate pyruvate lyase Novel N 0.0002643096557534968 -0.29335872118854944 1.0 17021 +4884 NPTX1 neuronal pentraxin 1 Novel N 0.0002641229949809222 -0.2933603305206914 1.0 17022 +441054 CFAP96 cilia and flagella associated protein 96 Novel U 0.00026409583537925036 -0.2933605646824777 1.0 17023 +3364 HUS1 HUS1 checkpoint clamp component Novel U 0.00026404877462505607 -0.29336097042591963 1.0 17024 +57693 ZNF317 zinc finger protein 317 Novel U 0.00026400577011558636 -0.2933613411976591 1.0 17025 +339175 METTL2A methyltransferase 2A, tRNA N3-cytidine Novel N 0.00026388563593703795 -0.29336237695783635 1.0 17026 +389812 LCN15 lipocalin 15 Novel U 0.0002638296642048941 -0.2933628595290072 1.0 17027 +55151 TMEM38B transmembrane protein 38B Novel N 0.0002635858417117812 -0.2933649616920363 1.0 17028 +2018 EMX2 empty spiracles homeobox 2 Novel N 0.00026349597470645485 -0.29336573649789494 1.0 17029 +4114 MAGEB3 MAGE family member B3 Novel U 0.00026349273261355147 -0.29336576445022927 1.0 17030 +9390 SLC22A13 solute carrier family 22 member 13 Novel U 0.00026349192089676713 -0.2933657714486033 1.0 17031 +8629 JRK Jrk helix-turn-helix protein Novel U 0.0002634536797883792 -0.2933661011517542 1.0 17032 +644054 FAM25C family with sequence similarity 25 member C Novel U 0.0002633628859884443 -0.2933668839481528 1.0 17033 +27253 PCDH17 protocadherin 17 Novel U 0.0002633381961290757 -0.29336709681657563 1.0 17034 +56101 PCDHGB5 protocadherin gamma subfamily B, 5 Novel U 0.0002632717128221435 -0.2933676700153322 1.0 17035 +254394 MCM9 minichromosome maintenance 9 homologous recombination repair factor Novel U 0.0002632031011949471 -0.2933682615638158 1.0 17036 +101060211 CT45A7 cancer/testis antigen family 45 member A7 Novel U 0.00026310915282968985 -0.2933690715579126 1.0 17037 +102723526 LINC02218 long intergenic non-protein coding RNA 2218 Novel U 0.00026299948087398265 -0.2933700171160015 1.0 17038 +27023 FOXB1 forkhead box B1 Novel U 0.000262919501626438 -0.29337070667263404 1.0 17039 +51003 MED31 mediator complex subunit 31 Novel U 0.0002628780197872413 -0.29337106431637566 1.0 17040 +644994 SMIM23 small integral membrane protein 23 Novel U 0.00026287768104263565 -0.2933710672369282 1.0 17041 +641649 TMEM91 transmembrane protein 91 Novel U 0.0002627365435008078 -0.2933722840816854 1.0 17042 +114984 FLYWCH2 FLYWCH family member 2 Novel U 0.0002625166720471442 -0.2933741797461713 1.0 17043 +55530 SVOP SV2 related protein Novel U 0.00026248273036301884 -0.293374472381 1.0 17044 +115286 SLC25A26 solute carrier family 25 member 26 Novel U 0.0002624796132865033 -0.29337449925548126 1.0 17045 +4337 MOCS1 molybdenum cofactor synthesis 1 Novel N 0.00026240679960187573 -0.29337512703281987 1.0 17046 +10856 RUVBL2 RuvB like AAA ATPase 2 Novel U 0.0002623459794933441 -0.29337565140521044 1.0 17047 +160762 CCDC63 coiled-coil domain containing 63 Novel U 0.000262169408832728 -0.2933771737434903 1.0 17048 +84071 ARMC2 armadillo repeat containing 2 Novel N 0.00026183121746788525 -0.29338008952609457 1.0 17049 +285190 RGPD4 RANBP2 like and GRIP domain containing 4 Novel U 0.0002618033435956435 -0.29338032984610346 1.0 17050 +50810 HDGFL3 HDGF like 3 Novel U 0.0002617153546879456 -0.2933810884595782 1.0 17051 +57604 TRMT9B tRNA methyltransferase 9B (putative) Novel N 0.00026169107470594633 -0.29338129779416366 1.0 17052 +84263 HSDL2 hydroxysteroid dehydrogenase like 2 Novel U 0.00026154129586008145 -0.2933825891416037 1.0 17053 +4258 MGST2 microsomal glutathione S-transferase 2 Novel N 0.00026149151250848333 -0.2933830183584486 1.0 17054 +9118 INA internexin neuronal intermediate filament protein alpha Novel U 0.0002611628567294342 -0.2933858519281459 1.0 17055 +57536 KIAA1328 KIAA1328 Novel U 0.00026104234883416746 -0.2933868909103945 1.0 17056 +256356 GK5 glycerol kinase 5 Novel U 0.0002609803468433935 -0.29338742547261254 1.0 17057 +10559 SLC35A1 solute carrier family 35 member A1 Novel U 0.00026025678509548976 -0.29339366380089926 1.0 17058 +1479 CSTF3 cleavage stimulation factor subunit 3 Novel N 0.0002601798378171172 -0.29339432721682007 1.0 17059 +147965 FAM98C family with sequence similarity 98 member C Novel U 0.0002600165814957886 -0.2933957347629352 1.0 17060 +154791 FMC1 formation of mitochondrial complex V assembly factor 1 homolog Novel N 0.00025959301520442747 -0.29339938662206727 1.0 17061 +79230 ZNF557 zinc finger protein 557 Novel U 0.0002595039390320081 -0.2934001546096063 1.0 17062 +25981 DNAH1 dynein axonemal heavy chain 1 Novel U 0.00025939623719341016 -0.2934010831819474 1.0 17063 +90506 LRRC46 leucine rich repeat containing 46 Novel U 0.0002592928038111144 -0.2934019749529627 1.0 17064 +390594 KBTBD13 kelch repeat and BTB domain containing 13 Novel U 0.000259224204493729 -0.29340256639531487 1.0 17065 +388015 RTL1 retrotransposon Gag like 1 Novel U 0.00025912624252922444 -0.2934034109934379 1.0 17066 +107983988 SPEM3 SPEM family member 3 Novel U 0.000259006701928088 -0.29340444163597207 1.0 17067 +150572 SMYD1 SET and MYND domain containing 1 Novel N 0.0002589786368469989 -0.2934046836045252 1.0 17068 +54981 NMRK1 nicotinamide riboside kinase 1 Novel N 0.00025888230768060944 -0.2934055141251618 1.0 17069 +145482 PTGR2 prostaglandin reductase 2 Novel N 0.0002586897461933383 -0.2934071743314628 1.0 17070 +151313 FAHD2B fumarylacetoacetate hydrolase domain containing 2B Novel U 0.00025867379999099484 -0.29340731181474655 1.0 17071 +10573 MRPL28 mitochondrial ribosomal protein L28 Novel U 0.0002586432414508342 -0.29340757528114186 1.0 17072 +118663 BTBD16 BTB domain containing 16 Novel U 0.00025861918026531767 -0.2934077827293308 1.0 17073 +6526 SLC5A3 solute carrier family 5 member 3 Novel N 0.00025850557514961534 -0.29340876219792333 1.0 17074 +100533467 BIVM-ERCC5 BIVM-ERCC5 readthrough Novel U 0.00025846326169983526 -0.2934091270115573 1.0 17075 +10212 DDX39A DExD-box helicase 39A Novel N 0.0002584169008779577 -0.2934095267203967 1.0 17076 +90050 FAM181A family with sequence similarity 181 member A Novel U 0.0002583753244319489 -0.2934098851798094 1.0 17077 +192670 AGO4 argonaute RISC component 4 Novel N 0.00025809295646505166 -0.29341231967013487 1.0 17078 +54586 EQTN equatorin Novel U 0.00025802290422944995 -0.29341292363910393 1.0 17079 +7062 TCHH trichohyalin Novel N 0.0002579994161327223 -0.2934131261462965 1.0 17080 +7802 DNALI1 dynein axonemal light intermediate chain 1 Novel N 0.00025784046467847236 -0.2934144965771632 1.0 17081 +154313 CFAP206 cilia and flagella associated protein 206 Novel U 0.0002576025099906936 -0.29341654814976775 1.0 17082 +55779 CFAP44 cilia and flagella associated protein 44 Novel N 0.00025753268214165673 -0.2934171501841444 1.0 17083 +84221 SPATC1L spermatogenesis and centriole associated 1 like Novel U 0.0002574990291499042 -0.29341744032995565 1.0 17084 +3344 FOXN2 forkhead box N2 Novel U 0.00025738110886063003 -0.29341845700265606 1.0 17085 +388722 C1orf53 chromosome 1 open reading frame 53 Novel U 0.00025732165963306694 -0.29341896955572977 1.0 17086 +341567 H1-7 H1.7 linker histone Novel U 0.0002571143001309128 -0.2934207573459931 1.0 17087 +728294 D2HGDH D-2-hydroxyglutarate dehydrogenase Novel U 0.00025696917556393694 -0.2934220085656629 1.0 17088 +22907 DHX30 DExH-box helicase 30 Novel U 0.000256957078113763 -0.2934221128661816 1.0 17089 +7504 XK X-linked Kx blood group antigen, Kell and VPS13A binding protein Novel N 0.0002569116051025181 -0.293422504920589 1.0 17090 +8332 H2AC16 H2A clustered histone 16 Novel U 0.0002565615821408526 -0.2934255227116056 1.0 17091 +6635 SNRPE small nuclear ribonucleoprotein polypeptide E Novel N 0.0002563176354897992 -0.29342762594508653 1.0 17092 +255349 LHFPL7 LHFPL tetraspan subfamily member 7 Novel U 0.00025622543168769504 -0.29342842089809285 1.0 17093 +9425 CDYL chromodomain Y like Novel U 0.00025615292795760767 -0.2934290460030982 1.0 17094 +344387 CDKL4 cyclin dependent kinase like 4 Novel U 0.00025609295572758396 -0.29342956306533935 1.0 17095 +65985 AACS acetoacetyl-CoA synthetase Novel N 0.0002559613640233189 -0.2934306976088022 1.0 17096 +123283 TARS3 threonyl-tRNA synthetase 3 Novel U 0.00025586254217206455 -0.293431549620606 1.0 17097 +345051 REELD1 reeler domain containing 1 Novel U 0.00025563335259868876 -0.2934335256230726 1.0 17098 +8361 H4C6 H4 clustered histone 6 Novel U 0.00025559830010184057 -0.2934338278349892 1.0 17099 +8991 SELENBP1 selenium binding protein 1 Novel N 0.00025550704929524647 -0.29343461457155956 1.0 17100 +7695 ZNF136 zinc finger protein 136 Novel N 0.00025549145108507933 -0.29343474905456113 1.0 17101 +7053 TGM3 transglutaminase 3 Novel U 0.00025540821961492167 -0.29343546665086323 1.0 17102 +7994 KAT6A lysine acetyltransferase 6A Novel U 0.00025506078806589416 -0.2934384620995119 1.0 17103 +100287898 TTC34 tetratricopeptide repeat domain 34 Novel U 0.00025456939829804527 -0.29344269871193296 1.0 17104 +55178 MRM3 mitochondrial rRNA methyltransferase 3 Novel N 0.00025442391144311644 -0.2934439530551387 1.0 17105 +135138 PACRG parkin coregulated Novel U 0.0002542338008192485 -0.2934455921308443 1.0 17106 +51514 DTL denticleless E3 ubiquitin protein ligase homolog Novel U 0.00025411680259020505 -0.2934466008538231 1.0 17107 +92399 MRRF mitochondrial ribosome recycling factor Novel U 0.0002540520920652165 -0.2934471587681956 1.0 17108 +100996763 NOTCH2NLB notch 2 N-terminal like B Novel U 0.00025391441666145013 -0.29344834576345646 1.0 17109 +3189 HNRNPH3 heterogeneous nuclear ribonucleoprotein H3 Novel N 0.0002537602131841485 -0.2934496752587167 1.0 17110 +80816 ASXL3 ASXL transcriptional regulator 3 Novel U 0.0002535569927367599 -0.2934514273633146 1.0 17111 +100131211 NEMP2 nuclear envelope integral membrane protein 2 Novel U 0.00025353518426857164 -0.2934516153892632 1.0 17112 +4004 LMO1 LIM domain only 1 Novel U 0.00025334640863656854 -0.29345324295507685 1.0 17113 +390010 NKX1-2 NK1 homeobox 2 Novel U 0.0002532854496736597 -0.2934537685246274 1.0 17114 +25858 CATSPERZ catsper channel auxiliary subunit zeta Novel U 0.00025327368736581123 -0.2934538699356514 1.0 17115 +90407 TMEM41A transmembrane protein 41A Novel U 0.0002532519671656478 -0.29345405720058 1.0 17116 +79939 SLC35E1 solute carrier family 35 member E1 Novel U 0.0002532042797230926 -0.29345446834713756 1.0 17117 +284184 NDUFAF8 NADH:ubiquinone oxidoreductase complex assembly factor 8 Novel N 0.0002529089953711941 -0.29345701419858755 1.0 17118 +57055 DAZ2 deleted in azoospermia 2 Novel N 0.0002528305288043693 -0.2934576907133491 1.0 17119 +55617 TASP1 taspase 1 Novel U 0.00025265043638744434 -0.29345924341513574 1.0 17120 +613227 HIGD1C HIG1 hypoxia inducible domain family member 1C Novel U 0.00025240210741692105 -0.29346138443163605 1.0 17121 +5101 PCDH9 protocadherin 9 Novel U 0.00025238401336230966 -0.29346154043304573 1.0 17122 +137209 ZNF572 zinc finger protein 572 Novel U 0.0002522209080479699 -0.29346294667722483 1.0 17123 +254439 C11orf86 chromosome 11 open reading frame 86 Novel U 0.0002522013270397184 -0.29346311549869447 1.0 17124 +91120 ZNF682 zinc finger protein 682 Novel U 0.0002521191972187972 -0.2934638235969134 1.0 17125 +27291 R3HCC1L R3H domain and coiled-coil containing 1 like Novel U 0.00025211338439973756 -0.2934638737132631 1.0 17126 +90390 MED30 mediator complex subunit 30 Novel N 0.0002520719571247697 -0.2934642308865687 1.0 17127 +65010 SLC26A6 solute carrier family 26 member 6 Novel U 0.00025207106716083997 -0.2934642385595657 1.0 17128 +10782 ZNF274 zinc finger protein 274 Novel N 0.00025186683960350353 -0.2934659993471579 1.0 17129 +339345 NANOS2 nanos C2HC-type zinc finger 2 Novel N 0.0002517663545429397 -0.29346686569864416 1.0 17130 +84503 ZNF527 zinc finger protein 527 Novel U 0.0002516857958368177 -0.2934675602511915 1.0 17131 +285971 ZNF775 zinc finger protein 775 Novel U 0.0002515238906853726 -0.2934689561479328 1.0 17132 +284451 CIMAP1D CIMAP1 family member D Novel U 0.00025148219858076276 -0.29346931560451855 1.0 17133 +64081 PBLD phenazine biosynthesis like protein domain containing Novel U 0.00025111922886387637 -0.2934724450185024 1.0 17134 +54456 MOV10L1 Mov10 like RNA helicase 1 Novel N 0.0002509550044209316 -0.2934738609114662 1.0 17135 +92196 DAPL1 death associated protein like 1 Novel U 0.00025077432271412056 -0.29347541869393023 1.0 17136 +7549 ZNF2 zinc finger protein 2 Novel U 0.00025072987384024934 -0.2934758019185382 1.0 17137 +93587 TRMT10A tRNA methyltransferase 10A Novel U 0.00025072542413871355 -0.2934758402825051 1.0 17138 +5009 OTC ornithine transcarbamylase Novel U 0.0002506413457925602 -0.2934765651803133 1.0 17139 +58515 SELENOK selenoprotein K Novel N 0.00025052681898615406 -0.2934775525954414 1.0 17140 +6838 SURF6 surfeit 6 Novel U 0.00025041911354043014 -0.2934784811988821 1.0 17141 +255649 OOSP1 oocyte secreted protein 1 Novel U 0.00025041639314646313 -0.29347850465328756 1.0 17142 +2743 GLRB glycine receptor beta Novel U 0.0002502293977376588 -0.2934801168705608 1.0 17143 +200728 TMEM17 transmembrane protein 17 Novel N 0.00025020389760061125 -0.2934803367249502 1.0 17144 +6484 ST3GAL4 ST3 beta-galactoside alpha-2,3-sialyltransferase 4 Novel U 0.00025010922499851514 -0.29348115296319566 1.0 17145 +145814 PGPEP1L pyroglutamyl-peptidase I like Novel U 0.0002500676680947947 -0.29348151125412075 1.0 17146 +140809 SRXN1 sulfiredoxin 1 Novel N 0.00024991057042729963 -0.29348286570220444 1.0 17147 +7923 HSD17B8 hydroxysteroid 17-beta dehydrogenase 8 Novel U 0.0002497242837126424 -0.29348447180933335 1.0 17148 +218 ALDH3A1 aldehyde dehydrogenase 3 family member A1 Novel N 0.0002496694805173343 -0.2934849443057367 1.0 17149 +29080 CCDC59 coiled-coil domain containing 59 Novel U 0.00024926547613245023 -0.29348842750808873 1.0 17150 +255119 CFAP299 cilia and flagella associated protein 299 Novel U 0.00024921905388724874 -0.2934888277465013 1.0 17151 +126299 ZNF428 zinc finger protein 428 Novel U 0.0002488832105477443 -0.29349172328514855 1.0 17152 +643836 ZFP62 ZFP62 zinc finger protein Novel U 0.00024878281903599253 -0.29349258883008555 1.0 17153 +100170841 EPOP elongin BC and polycomb repressive complex 2 associated protein Novel U 0.0002485918400188807 -0.29349423539281233 1.0 17154 +55342 STRBP spermatid perinuclear RNA binding protein Novel U 0.00024821812258681274 -0.29349745747031225 1.0 17155 +64446 DNAI2 dynein axonemal intermediate chain 2 Novel N 0.00024818656399481077 -0.2934977295588489 1.0 17156 +112937 GLB1L3 galactosidase beta 1 like 3 Novel U 0.00024809516654941157 -0.2934985175596942 1.0 17157 +128308 MRPL55 mitochondrial ribosomal protein L55 Novel U 0.00024804355212261817 -0.2934989625635098 1.0 17158 +147872 KASH5 KASH domain containing 5 Novel N 0.0002479478988525892 -0.2934997872567746 1.0 17159 +2593 GAMT guanidinoacetate N-methyltransferase Novel N 0.00024787869646855285 -0.29350038389858313 1.0 17160 +51804 SIX4 SIX homeobox 4 Novel N 0.00024770028073591276 -0.2935019221445102 1.0 17161 +2327 FMO2 flavin containing dimethylaniline monoxygenase 2 Novel N 0.0002476497031505359 -0.293502358208996 1.0 17162 +55250 ELP2 elongator acetyltransferase complex subunit 2 Novel N 0.0002476013636290776 -0.29350277497757854 1.0 17163 +441282 AKR1B15 aldo-keto reductase family 1 member B15 Novel N 0.0002475993966034662 -0.2935027919366723 1.0 17164 +138255 CFAP95 cilia and flagella associated protein 95 Novel U 0.00024759597290322877 -0.2935028214547696 1.0 17165 +5986 RFNG RFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase Novel U 0.00024758963223132463 -0.2935028761221051 1.0 17166 +29999 FSCN3 fascin actin-bundling protein 3 Novel U 0.00024744870909608544 -0.2935040911183143 1.0 17167 +25874 MPC2 mitochondrial pyruvate carrier 2 Novel N 0.00024725377605911905 -0.29350577177139203 1.0 17168 +10622 POLR3G RNA polymerase III subunit G Novel U 0.00024722272598682156 -0.29350603947562715 1.0 17169 +130814 SLC66A3 solute carrier family 66 member 3 Novel U 0.0002471391835477238 -0.29350675975300844 1.0 17170 +10050 SLC17A4 solute carrier family 17 member 4 Novel N 0.0002470765741262676 -0.29350729955230825 1.0 17171 +56125 PCDHB11 protocadherin beta 11 Novel U 0.0002469117181023759 -0.29350872089057 1.0 17172 +25830 SULT4A1 sulfotransferase family 4A member 1 Novel U 0.0002468870492414776 -0.29350893357795044 1.0 17173 +29985 SLC39A3 solute carrier family 39 member 3 Novel N 0.00024656588925689785 -0.2935117025211985 1.0 17174 +83902 KRTAP17-1 keratin associated protein 17-1 Novel U 0.00024646064137520495 -0.2935126099362731 1.0 17175 +195828 ZNF367 zinc finger protein 367 Novel N 0.0002464499699266459 -0.2935127019422416 1.0 17176 +123096 SLC25A29 solute carrier family 25 member 29 Novel N 0.0002464158908896611 -0.29351299576128476 1.0 17177 +1854 DUT deoxyuridine triphosphatase Novel U 0.0002463527319601964 -0.29351354029827464 1.0 17178 +51104 ABHD17B abhydrolase domain containing 17B, depalmitoylase Novel N 0.0002463240115341847 -0.2935137879170115 1.0 17179 +162517 FBXO39 F-box protein 39 Novel U 0.00024631715571641336 -0.2935138470257773 1.0 17180 +80108 ZFP2 ZFP2 zinc finger protein Novel U 0.00024588140259063806 -0.2935176039560717 1.0 17181 +254552 NUDT8 nudix hydrolase 8 Novel U 0.0002457191177201562 -0.2935190031266344 1.0 17182 +161931 ADAD2 adenosine deaminase domain containing 2 Novel U 0.0002456891826679259 -0.2935192612175074 1.0 17183 +133308 SLC9B2 solute carrier family 9 member B2 Novel N 0.0002456833238274301 -0.2935193117306398 1.0 17184 +128822 CST9 cystatin 9 Novel N 0.0002456284103777167 -0.2935197851776229 1.0 17185 +338328 GPIHBP1 glycosylphosphatidylinositol anchored high density lipoprotein binding protein 1 Novel U 0.0002456247571566757 -0.2935198166745784 1.0 17186 +440829 SHISA8 shisa family member 8 Novel U 0.00024517434490811663 -0.29352369999134986 1.0 17187 +1016 CDH18 cadherin 18 Novel U 0.00024495871549080574 -0.29352555908229455 1.0 17188 +84690 SPATA22 spermatogenesis associated 22 Novel U 0.000244743148286249 -0.2935274176368599 1.0 17189 +314 AOC2 amine oxidase copper containing 2 Novel N 0.0002445877481196774 -0.29352875744960943 1.0 17190 +284131 ENDOV endonuclease V Novel U 0.00024450092231648255 -0.2935295060351526 1.0 17191 +55769 ZNF83 zinc finger protein 83 Novel U 0.0002444733965416556 -0.2935297433539719 1.0 17192 +113802 HENMT1 HEN methyltransferase 1 Novel N 0.00024388868589769828 -0.29353478455047005 1.0 17193 +441273 SPDYE2 speedy/RINGO cell cycle regulator family member E2 Novel U 0.00024368586150326783 -0.2935365332404204 1.0 17194 +3881 KRT31 keratin 31 Novel N 0.00024366560942898732 -0.29353670784761626 1.0 17195 +92745 SLC38A5 solute carrier family 38 member 5 Novel N 0.0002436227652892964 -0.29353707723669653 1.0 17196 +79074 C2orf49 chromosome 2 open reading frame 49 Novel U 0.0002435267282409889 -0.2935379052387803 1.0 17197 +51154 MRTO4 MRT4 homolog, ribosome maturation factor Novel U 0.0002430852471190216 -0.29354171155410747 1.0 17198 +254268 AKNAD1 AKNA domain containing 1 Novel U 0.00024284122859169032 -0.29354381540728375 1.0 17199 +78991 PCYOX1L prenylcysteine oxidase 1 like Novel U 0.0002428179537686625 -0.29354401607569564 1.0 17200 +121391 KRT74 keratin 74 Novel U 0.0002427092700469724 -0.2935449531135328 1.0 17201 +79081 LBHD1 LBH domain containing 1 Novel U 0.0002424337698912083 -0.29354732839168934 1.0 17202 +58531 PRM3 protamine 3 Novel U 0.0002423133798437466 -0.2935483663578901 1.0 17203 +284391 ZNF844 zinc finger protein 844 Novel U 0.00024230982734884502 -0.2935483969864156 1.0 17204 +79921 TCEAL4 transcription elongation factor A like 4 Novel U 0.00024225652110212645 -0.29354885657658564 1.0 17205 +282966 C10orf53 chromosome 10 open reading frame 53 Novel U 0.00024206675431378416 -0.2935504926878464 1.0 17206 +83695 RHNO1 RAD9-HUS1-RAD1 interacting nuclear orphan 1 Novel U 0.0002417725411075107 -0.2935530293042062 1.0 17207 +219409 GSX1 GS homeobox 1 Novel N 0.00024174860545996487 -0.2935532356700451 1.0 17208 +51110 LACTB2 lactamase beta 2 Novel U 0.00024171559717673743 -0.2935535202573765 1.0 17209 +112488747 TAF11L13 TATA-box binding protein associated factor 11 like 13 Novel U 0.00024158583837982783 -0.2935546389980722 1.0 17210 +5524 PTPA protein phosphatase 2 phosphatase activator Novel U 0.00024125161304831415 -0.293557520586749 1.0 17211 +100507588 TGFBR3L transforming growth factor beta receptor 3 like Novel U 0.00024100573614397605 -0.2935596404622839 1.0 17212 +10246 SLC17A2 solute carrier family 17 member 2 Novel N 0.00024081624522177025 -0.2935612741951111 1.0 17213 +158358 BRD10 bromodomain containing 10 Novel U 0.00024063095872420547 -0.29356287167867384 1.0 17214 +493901 RNASE12 ribonuclease A family member 12 (inactive) Novel U 0.00024053126219108397 -0.2935637312317175 1.0 17215 +100170765 ERICH4 glutamate rich 4 Novel U 0.0002404607139271954 -0.29356433947729077 1.0 17216 +388698 FLG2 filaggrin 2 Novel U 0.00024034197324554525 -0.29356536322316357 1.0 17217 +4668 NAGA alpha-N-acetylgalactosaminidase Novel U 0.00024022735871831417 -0.2935663513945938 1.0 17218 +247 ALOX15B arachidonate 15-lipoxygenase type B Novel U 0.0002402191967635534 -0.2935664217644736 1.0 17219 +135927 LLCFC1 LLLL and CFNLAS motif containing 1 Novel U 0.00023986646246277672 -0.2935694629318275 1.0 17220 +283106 CSNK2A3 casein kinase 2 alpha 3 Novel U 0.00023960374646091537 -0.29357172798891557 1.0 17221 +4499 MT1M metallothionein 1M Novel U 0.00023958979310685966 -0.2935718482904705 1.0 17222 +153364 MBLAC2 metallo-beta-lactamase domain containing 2 Novel U 0.00023950784513659961 -0.2935725548208286 1.0 17223 +124808 CCDC43 coiled-coil domain containing 43 Novel U 0.00023946952253617467 -0.293572885226579 1.0 17224 +5978 REST RE1 silencing transcription factor Novel U 0.00023937088689379843 -0.2935737356329468 1.0 17225 +5950 RBP4 retinol binding protein 4 Novel U 0.00023846243729390055 -0.29358156800779595 1.0 17226 +100288801 FRG2C FSHD region gene 2 family member C Novel U 0.00023828024954012075 -0.2935831387749367 1.0 17227 +11232 POLG2 DNA polymerase gamma 2, accessory subunit Novel U 0.00023814544835852104 -0.2935843009895323 1.0 17228 +3608 ILF2 interleukin enhancer binding factor 2 Novel N 0.0002381138524034237 -0.2935845734002021 1.0 17229 +10965 ACOT2 acyl-CoA thioesterase 2 Novel N 0.0002379649600989865 -0.29358585710415297 1.0 17230 +56097 PCDHGC5 protocadherin gamma subfamily C, 5 Novel U 0.00023788743973004352 -0.29358652546108555 1.0 17231 +25854 FAM149A family with sequence similarity 149 member A Novel U 0.00023788709258367436 -0.29358652845407546 1.0 17232 +10569 SLU7 SLU7 homolog, splicing factor Novel U 0.00023773551410755653 -0.29358783531737764 1.0 17233 +131368 ZPLD1 zona pellucida like domain containing 1 Novel U 0.00023772916009679137 -0.29358789009971686 1.0 17234 +54777 CFAP46 cilia and flagella associated protein 46 Novel U 0.00023754170275281592 -0.29358950629965397 1.0 17235 +253461 ZBTB38 zinc finger and BTB domain containing 38 Novel N 0.00023716135474387528 -0.2935927855439615 1.0 17236 +51400 PPME1 protein phosphatase methylesterase 1 Novel N 0.00023701835015656805 -0.29359401848581435 1.0 17237 +100506564 SPMAP2L sperm microtubule associated protein 2 like Novel U 0.00023699647348155272 -0.2935942070998213 1.0 17238 +375341 C3orf62 chromosome 3 open reading frame 62 Novel U 0.00023691496418525758 -0.29359490984806663 1.0 17239 +222659 PXT1 peroxisomal testis enriched protein 1 Novel U 0.00023681541259981375 -0.29359576815141564 1.0 17240 +127428 TCEANC2 transcription elongation factor A N-terminal and central domain containing 2 Novel U 0.00023681019804604775 -0.2935958131097048 1.0 17241 +219287 AMER2 APC membrane recruitment protein 2 Novel N 0.0002367693263193471 -0.29359616549324297 1.0 17242 +729201 SPACA5B sperm acrosome associated 5B Novel U 0.00023655799628304842 -0.2935979875162384 1.0 17243 +54360 CYTL1 cytokine like 1 Novel N 0.00023653563803730714 -0.29359818028220097 1.0 17244 +23660 ZKSCAN5 zinc finger with KRAB and SCAN domains 5 Novel U 0.00023625189848947156 -0.29360062659787817 1.0 17245 +2299 FOXI1 forkhead box I1 Novel U 0.00023613507251224594 -0.2936016338357545 1.0 17246 +51491 NOP16 NOP16 nucleolar protein Novel U 0.00023609155534649108 -0.2936020090274598 1.0 17247 +51170 HSD17B11 hydroxysteroid 17-beta dehydrogenase 11 Novel N 0.00023604706825562728 -0.293602392581563 1.0 17248 +401097 C3orf80 chromosome 3 open reading frame 80 Novel U 0.00023597089635940942 -0.2936030493123758 1.0 17249 +340351 AGBL3 AGBL carboxypeptidase 3 Novel U 0.0002356004086081424 -0.2936062435445547 1.0 17250 +54433 GAR1 GAR1 ribonucleoprotein Novel U 0.00023555294435739468 -0.2936066527668207 1.0 17251 +79575 ABHD8 abhydrolase domain containing 8 Novel U 0.00023525194651271569 -0.2936092478782596 1.0 17252 +8269 TMEM187 transmembrane protein 187 Novel U 0.00023482348561890723 -0.29361294193715826 1.0 17253 +79656 BEND5 BEN domain containing 5 Novel N 0.00023478850715088727 -0.29361324351082085 1.0 17254 +84913 ATOH8 atonal bHLH transcription factor 8 Novel U 0.00023467988770295537 -0.2936141799945094 1.0 17255 +9692 PRORP protein only RNase P catalytic subunit Novel U 0.00023416494703148763 -0.2936186196556248 1.0 17256 +164395 TTLL9 tubulin tyrosine ligase like 9 Novel U 0.00023411561377522782 -0.2936190449918852 1.0 17257 +28973 MRPS18B mitochondrial ribosomal protein S18B Novel U 0.00023408190455779946 -0.29361933562245707 1.0 17258 +55082 ARGLU1 arginine and glutamate rich 1 Novel U 0.00023407903621410533 -0.2936193603524399 1.0 17259 +9521 EEF1E1 eukaryotic translation elongation factor 1 epsilon 1 Novel N 0.00023406010727351813 -0.2936195235519814 1.0 17260 +56905 C15orf39 chromosome 15 open reading frame 39 Novel U 0.00023386393958974792 -0.2936212148498066 1.0 17261 +344752 AADACL2 arylacetamide deacetylase like 2 Novel U 0.00023383505208039493 -0.29362146390908483 1.0 17262 +81623 DEFB126 defensin beta 126 Novel N 0.00023370099708936535 -0.29362261969025344 1.0 17263 +284615 ANKRD34A ankyrin repeat domain 34A Novel U 0.00023367550736375412 -0.2936228394548786 1.0 17264 +2938 GSTA1 glutathione S-transferase alpha 1 Novel N 0.000233522915443236 -0.2936241550557887 1.0 17265 +121053 NOPCHAP1 NOP protein chaperone 1 Novel N 0.00023340715691757888 -0.2936251530904238 1.0 17266 +55771 PRR11 proline rich 11 Novel N 0.00023338496924482806 -0.2936253443857582 1.0 17267 +9014 TAF1B TATA-box binding protein associated factor, RNA polymerase I subunit B Novel N 0.00023325232221301504 -0.2936264880279326 1.0 17268 +54919 DNAAF5 dynein axonemal assembly factor 5 Novel N 0.00023315536612525525 -0.2936273239536938 1.0 17269 +84247 RTL6 retrotransposon Gag like 6 Novel U 0.000233096195076412 -0.29362783410839555 1.0 17270 +27283 TINAG tubulointerstitial nephritis antigen Novel N 0.0002330862405058142 -0.2936279199336614 1.0 17271 +5427 POLE2 DNA polymerase epsilon 2, accessory subunit Novel N 0.0002329859583680505 -0.2936287845356093 1.0 17272 +137682 NDUFAF6 NADH:ubiquinone oxidoreductase complex assembly factor 6 Novel N 0.00023268604005402454 -0.29363137033966474 1.0 17273 +285267 ZNF619 zinc finger protein 619 Novel U 0.00023266906202962307 -0.293631516719003 1.0 17274 +222894 FERD3L Fer3 like bHLH transcription factor Novel U 0.0002325763143413783 -0.29363231636122955 1.0 17275 +51637 RTRAF RNA transcription, translation and transport factor Novel U 0.00023255028164225898 -0.29363254080720635 1.0 17276 +81566 CSRNP2 cysteine and serine rich nuclear protein 2 Novel U 0.000232515439857371 -0.29363284120242883 1.0 17277 +7582 ZNF33B zinc finger protein 33B Novel U 0.00023208168617498275 -0.2936365808941333 1.0 17278 +55568 GALNT10 polypeptide N-acetylgalactosaminyltransferase 10 Novel N 0.00023189676149333428 -0.2936381752582297 1.0 17279 +80726 IQCN IQ motif containing N Novel N 0.00023181951978954295 -0.29363884121259654 1.0 17280 +57325 KAT14 lysine acetyltransferase 14 Novel U 0.00023171256345788828 -0.2936397633574047 1.0 17281 +55644 OSGEP O-sialoglycoprotein endopeptidase Novel U 0.00023161850982292246 -0.2936405742591047 1.0 17282 +441581 FRG2B FSHD region gene 2 family member B Novel U 0.00023148204275821082 -0.2936417508364355 1.0 17283 +51602 NOP58 NOP58 ribonucleoprotein Novel N 0.00023147157644276084 -0.2936418410738091 1.0 17284 +670 BPHL biphenyl hydrolase like Novel N 0.00023131396391421413 -0.2936431999608674 1.0 17285 +199692 ZNF627 zinc finger protein 627 Novel U 0.0002312463357718446 -0.29364378303004535 1.0 17286 +54108 CHRAC1 chromatin accessibility complex subunit 1 Novel N 0.00023107990909218846 -0.29364521791002124 1.0 17287 +127731 VWA5B1 von Willebrand factor A domain containing 5B1 Novel U 0.00023105223765747447 -0.29364545648467555 1.0 17288 +4232 MEST mesoderm specific transcript Novel N 0.00023100398911951963 -0.2936458724688261 1.0 17289 +84865 CCDC142 coiled-coil domain containing 142 Novel U 0.00023078617810571236 -0.2936477503688292 1.0 17290 +150221 RIMBP3C RIMS binding protein 3C Novel U 0.00023062710253789968 -0.29364912186976505 1.0 17291 +54827 NXPE4 neurexophilin and PC-esterase domain family member 4 Novel U 0.00023026984873640913 -0.29365220200287306 1.0 17292 +55536 CDCA7L cell division cycle associated 7 like Novel N 0.000230200045496378 -0.2936528038250783 1.0 17293 +554235 ASPDH aspartate dehydrogenase domain containing Novel U 0.00023013295571993513 -0.2936533822526297 1.0 17294 +159963 SLC5A12 solute carrier family 5 member 12 Novel N 0.00023009356036370133 -0.2936537219073529 1.0 17295 +347051 SLC10A5 solute carrier family 10 member 5 Novel U 0.00022997436237049904 -0.29365474959602605 1.0 17296 +79066 METTL16 methyltransferase 16, RNA N6-adenosine Novel N 0.00022992863266149547 -0.2936551438636032 1.0 17297 +146167 SLC38A8 solute carrier family 38 member 8 Novel N 0.00022989191679765485 -0.2936554604165617 1.0 17298 +374454 KRT77 keratin 77 Novel U 0.00022964817932252782 -0.2936575618465917 1.0 17299 +8690 JRKL JRK like Novel N 0.00022944767618727704 -0.2936592905233547 1.0 17300 +105375355 UPK3B uroplakin 3B Novel N 0.00022942495366576581 -0.29365948642999173 1.0 17301 +84326 METTL26 methyltransferase like 26 Novel U 0.00022939524714995599 -0.29365974255049343 1.0 17302 +11143 KAT7 lysine acetyltransferase 7 Novel U 0.00022938542620845812 -0.29365982722364997 1.0 17303 +64432 MRPS25 mitochondrial ribosomal protein S25 Novel N 0.0002293351810861849 -0.2936602604217404 1.0 17304 +51601 LIPT1 lipoyltransferase 1 Novel N 0.00022920371139315452 -0.2936613939132596 1.0 17305 +257177 CFAP126 cilia and flagella associated protein 126 Novel U 0.00022919695535784606 -0.29366145216173156 1.0 17306 +53822 FXYD7 FXYD domain containing ion transport regulator 7 Novel U 0.00022913562777909284 -0.29366198090937534 1.0 17307 +387640 SKIDA1 SKI/DACH domain containing 1 Novel U 0.00022902224950931623 -0.29366295842217155 1.0 17308 +653689 GSTT2B glutathione S-transferase theta 2B Novel U 0.00022884541231042908 -0.293664483058463 1.0 17309 +387601 SLC22A25 solute carrier family 22 member 25 Novel U 0.0002288089886386241 -0.29366479709223103 1.0 17310 +284297 SSC5D scavenger receptor cysteine rich family member with 5 domains Novel U 0.00022856759159126154 -0.29366687834380806 1.0 17311 +7738 ZNF184 zinc finger protein 184 Novel U 0.000228492432878843 -0.2936675263392598 1.0 17312 +9534 ZNF254 zinc finger protein 254 Novel N 0.00022844648460385253 -0.293667922491246 1.0 17313 +863 CBFA2T3 CBFA2/RUNX1 partner transcriptional co-repressor 3 Novel U 0.00022836665688220862 -0.2936686107414685 1.0 17314 +153733 CCDC112 coiled-coil domain containing 112 Novel U 0.0002282539017003273 -0.2936695828821913 1.0 17315 +2981 GUCA2B guanylate cyclase activator 2B Novel U 0.00022812709214176504 -0.29367067619545517 1.0 17316 +431707 LHX8 LIM homeobox 8 Novel U 0.0002281261200214522 -0.2936706845767795 1.0 17317 +283635 FAM177A1 family with sequence similarity 177 member A1 Novel U 0.00022811618081063678 -0.2936707702696179 1.0 17318 +136647 MPLKIP M-phase specific PLK1 interacting protein Novel U 0.00022808920223040249 -0.2936710028706927 1.0 17319 +339398 LINGO4 leucine rich repeat and Ig domain containing 4 Novel U 0.00022780393477625917 -0.29367346235951114 1.0 17320 +728395 TSPY4 testis specific protein Y-linked 4 Novel U 0.00022779463064979974 -0.29367354257684636 1.0 17321 +401494 HACD4 3-hydroxyacyl-CoA dehydratase 4 Novel N 0.000227574840628976 -0.29367543753924313 1.0 17322 +64863 METTL4 methyltransferase 4, N6-adenosine Novel N 0.00022742407225135263 -0.29367673741812367 1.0 17323 +26206 SPAG8 sperm associated antigen 8 Novel U 0.0002270587286492985 -0.29367988729902006 1.0 17324 +144348 ZNF664 zinc finger protein 664 Novel U 0.0002270212104882197 -0.2936802107691402 1.0 17325 +4597 MVD mevalonate diphosphate decarboxylase Novel N 0.00022691173718004424 -0.2936811546145508 1.0 17326 +10690 FUT9 fucosyltransferase 9 Novel U 0.00022669454662610234 -0.29368302716513844 1.0 17327 +8273 SLC10A3 solute carrier family 10 member 3 Novel U 0.00022665603332612487 -0.2936833592150421 1.0 17328 +120356740 TOMT transmembrane O-methyltransferase Novel U 0.00022665526499169678 -0.29368336583938676 1.0 17329 +400986 ANKRD36C ankyrin repeat domain 36C Novel U 0.0002265989830754673 -0.29368385108487 1.0 17330 +84656 GLYR1 glyoxylate reductase 1 homolog Novel N 0.00022651946473594537 -0.2936845366676944 1.0 17331 +729458 MBD3L2B methyl-CpG binding domain protein 3 like 2B Novel U 0.00022644844779435812 -0.2936851489540636 1.0 17332 +10858 CYP46A1 cytochrome P450 family 46 subfamily A member 1 Novel N 0.00022638974629188074 -0.29368565506048017 1.0 17333 +51105 PHF20L1 PHD finger protein 20 like 1 Novel U 0.00022616247580999567 -0.2936876145171264 1.0 17334 +66035 SLC2A11 solute carrier family 2 member 11 Novel N 0.0002261304248573536 -0.293687890850646 1.0 17335 +7156 TOP3A DNA topoisomerase III alpha Novel U 0.00022609275564693435 -0.29368821562306746 1.0 17336 +54065 SMIM11 small integral membrane protein 11 Novel U 0.0002260247328252572 -0.2936888020950497 1.0 17337 +64841 GNPNAT1 glucosamine-phosphate N-acetyltransferase 1 Novel U 0.0002259421295497288 -0.29368951427524964 1.0 17338 +342908 ZNF404 zinc finger protein 404 Novel U 0.00022589493533289913 -0.2936899211693657 1.0 17339 +125997 MBD3L2 methyl-CpG binding domain protein 3 like 2 Novel N 0.00022588612252749245 -0.293689997150681 1.0 17340 +57523 NYNRIN NYN domain and retroviral integrase containing Novel U 0.00022571187867463107 -0.29369149942793543 1.0 17341 +51642 MRPL48 mitochondrial ribosomal protein L48 Novel U 0.000225558743609095 -0.293692819711676 1.0 17342 +5203 PFDN4 prefoldin subunit 4 Novel U 0.0002255241818428811 -0.293693117692663 1.0 17343 +158401 SHOC1 shortage in chiasmata 1 Novel N 0.000225488817597545 -0.29369342259237974 1.0 17344 +84620 ST6GAL2 ST6 beta-galactoside alpha-2,6-sialyltransferase 2 Novel N 0.00022547019866526292 -0.29369358311912436 1.0 17345 +116138 KLHDC3 kelch domain containing 3 Novel U 0.00022539256821507583 -0.2936942524251438 1.0 17346 +8641 PCDHGB4 protocadherin gamma subfamily B, 4 Novel U 0.0002252997102271504 -0.2936950530183404 1.0 17347 +1610 DAO D-amino acid oxidase Novel U 0.00022512961969202382 -0.2936965194869586 1.0 17348 +2306 FOXD2 forkhead box D2 Novel N 0.00022493985228444474 -0.2936981556035582 1.0 17349 +11063 SOX30 SRY-box transcription factor 30 Novel N 0.00022484465218369242 -0.29369897638973597 1.0 17350 +79894 ZNF672 zinc finger protein 672 Novel U 0.00022472748924790633 -0.293699986532766 1.0 17351 +100131980 ZNF705G zinc finger protein 705G Novel U 0.00022464670069363108 -0.2937006830669939 1.0 17352 +55167 MSL2 MSL complex subunit 2 Novel U 0.00022460978501661746 -0.2937010013426805 1.0 17353 +151651 EFHB EF-hand domain family member B Novel U 0.0002245978001753934 -0.29370110467231925 1.0 17354 +1349 COX7B cytochrome c oxidase subunit 7B Novel U 0.00022440494756002297 -0.2937027673886377 1.0 17355 +79002 TRIR telomerase RNA component interacting RNase Novel N 0.00022440375218725465 -0.2937027776947764 1.0 17356 +541466 CT45A1 cancer/testis antigen family 45 member A1 Novel U 0.0002242891631962265 -0.2937037656460413 1.0 17357 +163859 SDE2 SDE2 telomere maintenance homolog Novel U 0.00022412959188267714 -0.2937051414211454 1.0 17358 +8367 H4C5 H4 clustered histone 5 Novel U 0.000224103108290804 -0.2937053697545818 1.0 17359 +100132396 ZNF705B zinc finger protein 705B Novel U 0.0002239005715890262 -0.29370711596413396 1.0 17360 +404203 SPINK6 serine peptidase inhibitor Kazal type 6 Novel U 0.00022381902468960262 -0.29370781903658194 1.0 17361 +762 CA4 carbonic anhydrase 4 Novel N 0.0002235531587544276 -0.29371011125143254 1.0 17362 +203522 INTS6L integrator complex subunit 6 like Novel U 0.0002233302673604891 -0.29371203295292064 1.0 17363 +23536 ADAT1 adenosine deaminase tRNA specific 1 Novel N 0.00022292926236046315 -0.293715490295493 1.0 17364 +54097 FAM3B FAM3 metabolism regulating signaling molecule B Novel U 0.00022285015723196337 -0.29371617231573827 1.0 17365 +168090 C6orf118 chromosome 6 open reading frame 118 Novel U 0.0002227027413947357 -0.29371744329003996 1.0 17366 +653082 ZDHHC11B zinc finger DHHC-type containing 11B Novel U 0.00022260693445415338 -0.29371826930820527 1.0 17367 +5619 PRM1 protamine 1 Novel U 0.00022260543339006888 -0.2937182822499211 1.0 17368 +2527 FUT5 fucosyltransferase 5 Novel N 0.00022259897289282884 -0.2937183379503541 1.0 17369 +81620 CDT1 chromatin licensing and DNA replication factor 1 Novel U 0.00022252873626658147 -0.29371894350908295 1.0 17370 +121642 ALKBH2 alkB homolog 2, alpha-ketoglutarate dependent dioxygenase Novel N 0.00022236687377724806 -0.29372033903800454 1.0 17371 +29986 SLC39A2 solute carrier family 39 member 2 Novel N 0.0002220586924322227 -0.29372299608338825 1.0 17372 +643677 CCDC168 coiled-coil domain containing 168 Novel U 0.0002220045108803893 -0.2937234632201715 1.0 17373 +84680 ACCS 1-aminocyclopropane-1-carboxylate synthase homolog (inactive) Novel U 0.00022199122623951583 -0.29372357775628566 1.0 17374 +267020 ATP5MGL ATP synthase membrane subunit g like Novel U 0.00022189282118288816 -0.2937244261746136 1.0 17375 +144108 SPTY2D1 SPT2 chromatin protein domain containing 1 Novel N 0.00022183642400481018 -0.2937249124138493 1.0 17376 +254042 METAP1D methionyl aminopeptidase type 1D, mitochondrial Novel N 0.00022177349744979068 -0.2937254549473778 1.0 17377 +55703 POLR3B RNA polymerase III subunit B Novel U 0.00022156994591008628 -0.2937272099065525 1.0 17378 +29937 NENF neudesin neurotrophic factor Novel U 0.0002215105119550165 -0.29372772232795147 1.0 17379 +2980 GUCA2A guanylate cyclase activator 2A Novel U 0.00022147540861837734 -0.2937280249781932 1.0 17380 +643904 RNF222 ring finger protein 222 Novel U 0.00022143430659266449 -0.293728379347299 1.0 17381 +6472 SHMT2 serine hydroxymethyltransferase 2 Novel U 0.00022127264445563703 -0.2937297731488443 1.0 17382 +100506243 KRBOX1 KRAB box domain containing 1 Novel U 0.00022114327398262918 -0.29373088854152996 1.0 17383 +9665 MARF1 meiosis regulator and mRNA stability factor 1 Novel U 0.00022078357484137104 -0.2937339897576101 1.0 17384 +641372 ACOT6 acyl-CoA thioesterase 6 Novel N 0.0002206736464702584 -0.2937349375264343 1.0 17385 +86614 HSFY1 heat shock transcription factor Y-linked 1 Novel N 0.00022066262891375744 -0.29373503251643973 1.0 17386 +161823 ADAL adenosine deaminase like Novel U 0.00022033305383044273 -0.29373787401209756 1.0 17387 +317662 FAM149B1 family with sequence similarity 149 member B1 Novel U 0.000220296267448233 -0.2937381911730439 1.0 17388 +55205 ZNF532 zinc finger protein 532 Novel U 0.00022026469597056673 -0.29373846337267684 1.0 17389 +390616 ANKRD34C ankyrin repeat domain 34C Novel U 0.0002202248385483297 -0.2937388070111918 1.0 17390 +4998 ORC1 origin recognition complex subunit 1 Novel U 0.0002201885768012463 -0.29373911964889443 1.0 17391 +345275 HSD17B13 hydroxysteroid 17-beta dehydrogenase 13 Novel N 0.00022015815524341516 -0.29373938193426996 1.0 17392 +54925 ZSCAN32 zinc finger and SCAN domain containing 32 Novel U 0.00022015069330095848 -0.29373944626885756 1.0 17393 +11249 NXPH2 neurexophilin 2 Novel U 0.0002199781258450074 -0.29374093409273017 1.0 17394 +79034 INTS15 integrator complex subunit 15 Novel U 0.0002197663588818873 -0.29374275988277515 1.0 17395 +1318 SLC31A2 solute carrier family 31 member 2 Novel N 0.00021970959101025832 -0.2937432493180174 1.0 17396 +100507203 SMLR1 small leucine rich protein 1 Novel U 0.00021959378701659666 -0.29374424774466373 1.0 17397 +9841 ZBTB24 zinc finger and BTB domain containing 24 Novel U 0.00021957016262468508 -0.29374445142695166 1.0 17398 +9889 ZBED4 zinc finger BED-type containing 4 Novel U 0.00021933281133685 -0.29374649779722634 1.0 17399 +139170 DCAF12L1 DDB1 and CUL4 associated factor 12 like 1 Novel U 0.00021921932203631302 -0.29374747626729586 1.0 17400 +642 BLMH bleomycin hydrolase Novel U 0.00021918249599625953 -0.29374779377016 1.0 17401 +169714 QSOX2 quiescin sulfhydryl oxidase 2 Novel U 0.00021913436335072172 -0.29374820875512164 1.0 17402 +112488736 TAF11L7 TATA-box binding protein associated factor 11 like 7 Novel U 0.000219092435758 -0.29374857024201395 1.0 17403 +4724 NDUFS4 NADH:ubiquinone oxidoreductase subunit S4 Novel N 0.00021881184070322317 -0.2937509894468329 1.0 17404 +7141 TNP1 transition protein 1 Novel U 0.00021855526677029745 -0.2937532015488795 1.0 17405 +55052 MRPL20 mitochondrial ribosomal protein L20 Novel U 0.00021827366360055764 -0.2937556294453576 1.0 17406 +8879 SGPL1 sphingosine-1-phosphate lyase 1 Novel N 0.00021823967417387792 -0.29375592249180804 1.0 17407 +338094 FAM151A family with sequence similarity 151 member A Novel U 0.000218196729755288 -0.29375629274546233 1.0 17408 +58486 ZBED5 zinc finger BED-type containing 5 Novel U 0.00021803179726955055 -0.2937577147429548 1.0 17409 +81889 FAHD1 fumarylacetoacetate hydrolase domain containing 1 Novel U 0.0002179226437229436 -0.2937586558314788 1.0 17410 +125476 INO80C INO80 complex subunit C Novel N 0.00021785894999147974 -0.29375920497936814 1.0 17411 +84250 SLF1 SMC5-SMC6 complex localization factor 1 Novel U 0.00021777092159529853 -0.2937599639333006 1.0 17412 +761 CA3 carbonic anhydrase 3 Novel U 0.00021776426646621063 -0.29376002131178997 1.0 17413 +196472 GARIN6 golgi associated RAB2 interactor family member 6 Novel U 0.0002176141724461939 -0.2937613153765653 1.0 17414 +284348 LYPD5 LY6/PLAUR domain containing 5 Novel U 0.00021747423394042408 -0.2937625218836 1.0 17415 +130589 GALM galactose mutarotase Novel U 0.00021738077939827363 -0.29376332762010493 1.0 17416 +388419 BTBD17 BTB domain containing 17 Novel U 0.00021715350912588627 -0.2937652870749449 1.0 17417 +79717 PPCS phosphopantothenoylcysteine synthetase Novel N 0.00021699329971874124 -0.293766668351497 1.0 17418 +728137 TSPY3 testis specific protein Y-linked 3 Novel U 0.00021687807779955658 -0.2937676617596751 1.0 17419 +84547 PGBD1 piggyBac transposable element derived 1 Novel U 0.00021682624390271382 -0.2937681086556944 1.0 17420 +153218 SPINK13 serine peptidase inhibitor Kazal type 13 Novel U 0.00021673211259053525 -0.29376892022710366 1.0 17421 +8687 KRT38 keratin 38 Novel U 0.00021664654147063038 -0.2937696579951509 1.0 17422 +147407 SLC25A52 solute carrier family 25 member 52 Novel N 0.00021664130810993636 -0.29376970311558764 1.0 17423 +8969 H2AC11 H2A clustered histone 11 Novel U 0.00021655279885246387 -0.2937704662153592 1.0 17424 +162655 ZNF519 zinc finger protein 519 Novel U 0.00021650731326952212 -0.29377085837815603 1.0 17425 +27039 PKD2L2 polycystin 2 like 2, transient receptor potential cation channel Novel U 0.0002164043587131886 -0.2937717460208802 1.0 17426 +54859 ELP6 elongator acetyltransferase complex subunit 6 Novel U 0.0002160202000121196 -0.29377505811981075 1.0 17427 +8568 RRP1 ribosomal RNA processing 1 Novel U 0.0002156760352935953 -0.29377802540284514 1.0 17428 +786 CACNG1 calcium voltage-gated channel auxiliary subunit gamma 1 Novel U 0.00021566814389770115 -0.29377809344004907 1.0 17429 +87769 GGACT gamma-glutamylamine cyclotransferase Novel N 0.00021563936165408854 -0.2937783415917583 1.0 17430 +152992 TRMT44 tRNA methyltransferase 44 homolog Novel U 0.00021560847488030232 -0.29377860788808363 1.0 17431 +8908 GYG2 glycogenin 2 Novel N 0.0002152119510482385 -0.29378202659539515 1.0 17432 +10732 TCFL5 transcription factor like 5 Novel N 0.00021518909555281787 -0.29378222364849255 1.0 17433 +8330 H2AC15 H2A clustered histone 15 Novel U 0.00021518827871295904 -0.2937822306910362 1.0 17434 +100287226 ZNF729 zinc finger protein 729 Novel U 0.0002149351196308563 -0.2937844133512826 1.0 17435 +23350 U2SURP U2 snRNP associated SURP domain containing Novel U 0.00021472063867622397 -0.29378626254053297 1.0 17436 +57474 ZNF490 zinc finger protein 490 Novel U 0.00021450616567509853 -0.29378811166121066 1.0 17437 +51082 POLR1D RNA polymerase I and III subunit D Novel U 0.00021441118594290454 -0.29378893054743804 1.0 17438 +93273 LEMD1 LEM domain containing 1 Novel U 0.00021441072771338955 -0.2937889344981529 1.0 17439 +79877 DCAKD dephospho-CoA kinase domain containing Novel N 0.00021437388916778767 -0.2937892521088361 1.0 17440 +64396 GMCL2 germ cell-less 2, spermatogenesis associated Novel U 0.0002141220497814076 -0.2937914233910692 1.0 17441 +58158 NEUROD4 neuronal differentiation 4 Novel U 0.0002141146642335439 -0.293791487067006 1.0 17442 +27284 SULT1B1 sulfotransferase family 1B member 1 Novel N 0.0002140078621740729 -0.2937924078817265 1.0 17443 +23126 POGZ pogo transposable element derived with ZNF domain Novel U 0.00021388716294201267 -0.29379344851362243 1.0 17444 +10327 AKR1A1 aldo-keto reductase family 1 member A1 Novel N 0.0002138666327846034 -0.2937936255183661 1.0 17445 +51116 MRPS2 mitochondrial ribosomal protein S2 Novel U 0.00021382374767684804 -0.29379399526066047 1.0 17446 +417 ART1 ADP-ribosyltransferase 1 Novel U 0.00021378315263469747 -0.29379434525870896 1.0 17447 +653423 SPAG11A sperm associated antigen 11A Novel U 0.0002137128120014274 -0.29379495171415454 1.0 17448 +136371 ASB10 ankyrin repeat and SOCS box containing 10 Novel U 0.00021363963834427702 -0.29379558259506633 1.0 17449 +11092 SPACA9 sperm acrosome associated 9 Novel N 0.00021354966534631602 -0.2937963583147611 1.0 17450 +442867 BPY2B basic charge Y-linked 2B Novel N 0.00021334868597963497 -0.2937980910974459 1.0 17451 +2184 FAH fumarylacetoacetate hydrolase Novel U 0.00021331060943917526 -0.2937984193817425 1.0 17452 +113179 ADAT3 adenosine deaminase tRNA specific 3 Novel U 0.00021315733456008832 -0.2937997408709127 1.0 17453 +58530 LY6G6D lymphocyte antigen 6 family member G6D Novel U 0.00021310738536619537 -0.29380017151759913 1.0 17454 +125061 AFMID arylformamidase Novel U 0.00021305421725656247 -0.2938006299167934 1.0 17455 +653247 PRB2 proline rich protein BstNI subfamily 2 Novel U 0.0002127101915090967 -0.2938035960016618 1.0 17456 +83608 C18orf21 chromosome 18 open reading frame 21 Novel U 0.00021270889268243964 -0.2938036071997483 1.0 17457 +195827 PRXL2C peroxiredoxin like 2C Novel U 0.0002124861026173786 -0.2938055280276098 1.0 17458 +80195 TMEM254 transmembrane protein 254 Novel U 0.00021225200393872978 -0.293807546354882 1.0 17459 +5309 PITX3 paired like homeodomain 3 Novel U 0.00021207897034985481 -0.2938090381976102 1.0 17460 +448834 KPRP keratinocyte proline rich protein Novel U 0.00021207616098235674 -0.29380906241911825 1.0 17461 +729747 ZNF878 zinc finger protein 878 Novel U 0.0002120732574887143 -0.29380908745215323 1.0 17462 +134145 ATPSCKMT ATP synthase c subunit lysine N-methyltransferase Novel N 0.00021196668265859354 -0.2938100063077717 1.0 17463 +113828 FAM83F family with sequence similarity 83 member F Novel U 0.0002117990208274089 -0.2938114518368466 1.0 17464 +9654 TTLL4 tubulin tyrosine ligase like 4 Novel U 0.0002117983444569051 -0.2938114576683064 1.0 17465 +349075 ZNF713 zinc finger protein 713 Novel U 0.0002116808154236171 -0.2938124709677173 1.0 17466 +3231 HOXD1 homeobox D1 Novel U 0.00021137894159650006 -0.29381507363160897 1.0 17467 +285148 IAH1 isoamyl acetate hydrolyzing esterase 1 (putative) Novel U 0.00021132748767538898 -0.29381551725159366 1.0 17468 +6779 STATH statherin Novel N 0.00021132534656544344 -0.29381553571158936 1.0 17469 +79447 PAGR1 PAXIP1 associated glutamate rich protein 1 Novel N 0.00021127057173703136 -0.293816007963422 1.0 17470 +57834 CYP4F11 cytochrome P450 family 4 subfamily F member 11 Novel U 0.00021103187492262887 -0.29381806593441556 1.0 17471 +286046 XKR6 XK related 6 Novel U 0.00021073739088288185 -0.29382060488581874 1.0 17472 +56917 MEIS3 Meis homeobox 3 Novel U 0.00021060442741199577 -0.29382175125623416 1.0 17473 +91300 R3HDM4 R3H domain containing 4 Novel U 0.0002104250145986985 -0.293823298098686 1.0 17474 +37 ACADVL acyl-CoA dehydrogenase very long chain Novel U 0.00021032686720275968 -0.29382414429554227 1.0 17475 +635 BHMT betaine--homocysteine S-methyltransferase Novel N 0.00021015701531613292 -0.2938256087066059 1.0 17476 +22949 PTGR1 prostaglandin reductase 1 Novel N 0.00021004469803286667 -0.2938265770719007 1.0 17477 +50515 CHST11 carbohydrate sulfotransferase 11 Novel U 0.00021000708972471164 -0.29382690131924133 1.0 17478 +123872 DNAAF1 dynein axonemal assembly factor 1 Novel U 0.0002099361572225717 -0.2938275128775995 1.0 17479 +23658 LSM5 LSM5 homolog, U6 small nuclear RNA and mRNA degradation associated Novel N 0.00020948581109998644 -0.29383139562425303 1.0 17480 +646627 LYPD8 LY6/PLAUR domain containing 8 Novel U 0.00020939497805538655 -0.2938321787590071 1.0 17481 +8368 H4C13 H4 clustered histone 13 Novel U 0.00020938821511366714 -0.293832237067024 1.0 17482 +121355 GTSF1 gametocyte specific factor 1 Novel U 0.0002093668265937194 -0.29383242147230715 1.0 17483 +727940 RHOXF2B Rhox homeobox family member 2B Novel N 0.00020934396588784436 -0.29383261857032755 1.0 17484 +283152 DRC12 dynein regulatory complex subunit 12 homolog Novel U 0.0002088115026186579 -0.293837209305926 1.0 17485 +57552 NCEH1 neutral cholesterol ester hydrolase 1 Novel U 0.00020877999200345345 -0.29383748098082135 1.0 17486 +3235 HOXD9 homeobox D9 Novel N 0.00020872422848130685 -0.29383796175686927 1.0 17487 +53343 NUDT9 nudix hydrolase 9 Novel N 0.00020871160913070263 -0.29383807055705397 1.0 17488 +112970 KTI12 KTI12 chromatin associated homolog Novel U 0.0002084097126263509 -0.2938406734164619 1.0 17489 +51631 LUC7L2 LUC7 like 2, pre-mRNA splicing factor Novel U 0.0002083174306738581 -0.2938414690432571 1.0 17490 +100131390 SP9 Sp9 transcription factor Novel U 0.00020830348596739994 -0.293841589270255 1.0 17491 +4116 MAGOH mago homolog, exon junction complex subunit Novel N 0.00020810163976490127 -0.29384332952653336 1.0 17492 +200403 VWA3B von Willebrand factor A domain containing 3B Novel N 0.00020776641549211715 -0.2938462197277765 1.0 17493 +8731 RNMT RNA guanine-7 methyltransferase Novel N 0.00020765117455813864 -0.2938472132998943 1.0 17494 +389320 SPMIP10 sperm microtubule inner protein 10 Novel U 0.00020751286153666663 -0.2938484057925002 1.0 17495 +55571 CNOT11 CCR4-NOT transcription complex subunit 11 Novel U 0.00020748611830931262 -0.29384863636443437 1.0 17496 +3883 KRT33A keratin 33A Novel U 0.00020744217846129014 -0.29384901520037704 1.0 17497 +6575 SLC20A2 solute carrier family 20 member 2 Novel N 0.000207195501565168 -0.2938511419731967 1.0 17498 +100996928 FMC1-LUC7L2 FMC1-LUC7L2 readthrough Novel U 0.00020698822951121338 -0.29385292900950827 1.0 17499 +245934 DEFB121 defensin beta 121 Novel U 0.00020698410738163674 -0.29385296454924986 1.0 17500 +8581 LY6D lymphocyte antigen 6 family member D Novel U 0.00020684970755466107 -0.29385412330348853 1.0 17501 +5316 PKNOX1 PBX/knotted 1 homeobox 1 Novel N 0.00020674822139892814 -0.2938549982861115 1.0 17502 +92749 DRC1 dynein regulatory complex subunit 1 Novel N 0.00020660516582163562 -0.29385623166758446 1.0 17503 +151647 TAFA4 TAFA chemokine like family member 4 Novel U 0.0002065959737893933 -0.2938563109184775 1.0 17504 +84569 LYZL1 lysozyme like 1 Novel U 0.0002065325937700206 -0.2938568573616371 1.0 17505 +55422 ZNF331 zinc finger protein 331 Novel U 0.00020653153318567782 -0.29385686650567117 1.0 17506 +119395 CALHM3 calcium homeostasis modulator 3 Novel U 0.00020653106457691855 -0.29385687054587273 1.0 17507 +83903 HASPIN histone H3 associated protein kinase Novel U 0.00020647979034691343 -0.2938573126166156 1.0 17508 +79818 ZNF552 zinc finger protein 552 Novel U 0.00020638947690235018 -0.29385809127153695 1.0 17509 +23378 RRP8 ribosomal RNA processing 8 Novel U 0.0002060349287109783 -0.29386114807770125 1.0 17510 +286753 TRARG1 trafficking regulator of GLUT4 (SLC2A4) 1 Novel U 0.00020582977259623486 -0.29386291687103155 1.0 17511 +284071 MEIOC meiosis specific with coiled-coil domain Novel U 0.00020577102060631987 -0.29386342341273536 1.0 17512 +117532 TMC2 transmembrane channel like 2 Novel N 0.00020576786363199565 -0.2938634506312033 1.0 17513 +222008 VSTM2A V-set and transmembrane domain containing 2A Novel N 0.00020571997158843824 -0.29386386354176813 1.0 17514 +64776 CFAP68 cilia and flagella associated protein 68 Novel U 0.0002056092293682162 -0.2938648183273507 1.0 17515 +80724 ACAD10 acyl-CoA dehydrogenase family member 10 Novel N 0.00020556833822893633 -0.29386517087825814 1.0 17516 +246329 STAC3 SH3 and cysteine rich domain 3 Novel N 0.00020548004555079547 -0.29386593211074885 1.0 17517 +222 ALDH3B2 aldehyde dehydrogenase 3 family member B2 Novel N 0.00020535934447636061 -0.2938669727585292 1.0 17518 +54797 MED18 mediator complex subunit 18 Novel U 0.0002052304857236819 -0.2938680837393185 1.0 17519 +147015 DHRS13 dehydrogenase/reductase 13 Novel U 0.00020481361872187295 -0.29387167783922324 1.0 17520 +162387 MFSD6L major facilitator superfamily domain containing 6 like Novel U 0.00020471902007559417 -0.2938724934398443 1.0 17521 +9119 KRT75 keratin 75 Novel U 0.00020461794522245652 -0.2938733648763419 1.0 17522 +7770 ZNF227 zinc finger protein 227 Novel U 0.000204536283021505 -0.29387406894288437 1.0 17523 +54826 GIN1 gypsy retrotransposon integrase 1 Novel U 0.00020446280235960338 -0.2938747024706973 1.0 17524 +11170 FAM107A family with sequence similarity 107 member A Novel U 0.0002044406961514884 -0.29387489306366854 1.0 17525 +7884 SLBP stem-loop histone mRNA binding protein Novel N 0.00020433325874589774 -0.29387581935614915 1.0 17526 +3882 KRT32 keratin 32 Novel N 0.00020391899328446602 -0.2938793910263677 1.0 17527 +10794 ZNF460 zinc finger protein 460 Novel U 0.00020383179614508532 -0.29388014281345803 1.0 17528 +117248 GALNT15 polypeptide N-acetylgalactosaminyltransferase 15 Novel N 0.0002038086769231089 -0.29388034214032516 1.0 17529 +400258 C14orf180 chromosome 14 open reading frame 180 Novel U 0.00020373813090785397 -0.29388095036651146 1.0 17530 +285676 ZNF454 zinc finger protein 454 Novel U 0.0002037300080244571 -0.29388102039952996 1.0 17531 +90843 TCEAL8 transcription elongation factor A like 8 Novel U 0.00020339516207116488 -0.2938839073390181 1.0 17532 +26057 ANKRD17 ankyrin repeat domain 17 Novel U 0.0002033724310770947 -0.29388410331870285 1.0 17533 +80324 PUS1 pseudouridine synthase 1 Novel U 0.00020336997986823843 -0.29388412445227663 1.0 17534 +56127 PCDHB9 protocadherin beta 9 Novel U 0.0002033439548433048 -0.2938843488320889 1.0 17535 +55020 TTC38 tetratricopeptide repeat domain 38 Novel U 0.00020316593263154453 -0.29388588368519925 1.0 17536 +138199 CARNMT1 carnosine N-methyltransferase 1 Novel N 0.00020273541858079882 -0.29388959544578963 1.0 17537 +151531 UPP2 uridine phosphorylase 2 Novel N 0.00020268317450927552 -0.2938900458782097 1.0 17538 +55335 NIPSNAP3B nipsnap homolog 3B Novel U 0.00020262572001055433 -0.2938905412333409 1.0 17539 +6574 SLC20A1 solute carrier family 20 member 1 Novel N 0.0002022198098387921 -0.29389404086680515 1.0 17540 +171484 FAM9C family with sequence similarity 9 member C Novel U 0.000202190963669253 -0.2938942895696642 1.0 17541 +83639 TEX101 testis expressed 101 Novel U 0.00020214827596574445 -0.29389465760999944 1.0 17542 +58493 INIP INTS3 and NABP interacting protein Novel U 0.00020212257826836912 -0.2938948791676936 1.0 17543 +84126 ATRIP ATR interacting protein Novel U 0.00020201821034088925 -0.2938957789960719 1.0 17544 +116372 LYPD1 LY6/PLAUR domain containing 1 Novel U 0.00020190053599583883 -0.2938967935483164 1.0 17545 +27153 ZNF777 zinc finger protein 777 Novel U 0.0002017949612017214 -0.29389770378193003 1.0 17546 +283237 TTC9C tetratricopeptide repeat domain 9C Novel U 0.00020160039109733921 -0.29389938130591386 1.0 17547 +90333 ZNF468 zinc finger protein 468 Novel U 0.00020149345508891565 -0.2939003032755013 1.0 17548 +26952 SMR3A submaxillary gland androgen regulated protein 3A Novel U 0.00020141239019034674 -0.29390100219228527 1.0 17549 +146861 SLC35G3 solute carrier family 35 member G3 Novel U 0.0002013826678680897 -0.2939012584490653 1.0 17550 +352999 C6orf58 chromosome 6 open reading frame 58 Novel U 0.0002013468877719619 -0.2939015669341205 1.0 17551 +54857 GDPD2 glycerophosphodiester phosphodiesterase domain containing 2 Novel U 0.00020119297650554127 -0.2939028939100279 1.0 17552 +157697 ERICH1 glutamate rich 1 Novel U 0.00020112217827240606 -0.2939035043107597 1.0 17553 +283521 TMEM272 transmembrane protein 272 Novel U 0.00020093027409578718 -0.29390515884992896 1.0 17554 +340393 TMEM249 transmembrane protein 249 Novel U 0.0002008089812687792 -0.2939062045996192 1.0 17555 +2820 GPD2 glycerol-3-phosphate dehydrogenase 2 Novel N 0.0002003389896339989 -0.29391025672387566 1.0 17556 +170463 SSBP4 single stranded DNA binding protein 4 Novel U 0.00020029171351111465 -0.2939106643241607 1.0 17557 +23209 MLC1 modulator of VRAC current 1 Novel U 0.00020020063696158915 -0.2939114495583398 1.0 17558 +85002 FAM86B1 family with sequence similarity 86 member B1 Novel U 0.00020010989242644035 -0.29391223192999244 1.0 17559 +347902 AMIGO2 adhesion molecule with Ig like domain 2 Novel U 0.00020004680044225697 -0.29391277588980064 1.0 17560 +84869 CBR4 carbonyl reductase 4 Novel U 0.00020002896307448772 -0.29391292967813487 1.0 17561 +92565 FANK1 fibronectin type III and ankyrin repeat domains 1 Novel U 0.00020002644058160325 -0.29391295142629764 1.0 17562 +148203 ZNF738 zinc finger protein 738 Novel U 0.00019998399315373754 -0.2939133173950498 1.0 17563 +9200 HACD1 3-hydroxyacyl-CoA dehydratase 1 Novel U 0.00019997602016951668 -0.2939133861356834 1.0 17564 +84163 GTF2IRD2 GTF2I repeat domain containing 2 Novel U 0.00019992767825608592 -0.29391380292488883 1.0 17565 +84709 MGARP mitochondria localized glutamic acid rich protein Novel U 0.00019991374760016252 -0.29391392303074726 1.0 17566 +25850 ZNF345 zinc finger protein 345 Novel N 0.0001997603951764999 -0.2939152451884831 1.0 17567 +9374 PPT2 palmitoyl-protein thioesterase 2 Novel N 0.00019972786897593406 -0.2939155256194452 1.0 17568 +119710 IFTAP intraflagellar transport associated protein Novel U 0.00019969701159032303 -0.2939157916623946 1.0 17569 +5434 POLR2E RNA polymerase II, I and III subunit E Novel N 0.00019969362716656244 -0.2939158208418621 1.0 17570 +51015 ISOC1 isochorismatase domain containing 1 Novel U 0.0001995674558365161 -0.2939169086525147 1.0 17571 +6698 SPRR1A small proline rich protein 1A Novel N 0.00019955550874069133 -0.2939170116567241 1.0 17572 +148206 ZNF714 zinc finger protein 714 Novel U 0.0001994611857056355 -0.29391782488110946 1.0 17573 +90871 DMAC1 distal membrane arm assembly component 1 Novel N 0.00019944937764743427 -0.293917926686579 1.0 17574 +2356 FPGS folylpolyglutamate synthase Novel N 0.000199236964749865 -0.2939197580456734 1.0 17575 +8564 KMO kynurenine 3-monooxygenase Novel N 0.00019923293565852774 -0.2939197927832677 1.0 17576 +117166 WFIKKN1 WAP, follistatin/kazal, immunoglobulin, kunitz and netrin domain containing 1 Novel U 0.0001991114334515478 -0.293920840338168 1.0 17577 +11248 NXPH3 neurexophilin 3 Novel U 0.00019908382118394974 -0.29392107840270154 1.0 17578 +25880 TMEM186 transmembrane protein 186 Novel N 0.00019903282980659806 -0.2939215180347753 1.0 17579 +57469 PNMA8B PNMA family member 8B Novel U 0.00019896554394889727 -0.2939220981528794 1.0 17580 +83451 ABHD11 abhydrolase domain containing 11 Novel U 0.0001987234648016337 -0.29392418528531333 1.0 17581 +5422 POLA1 DNA polymerase alpha 1, catalytic subunit Novel U 0.00019857716314814427 -0.29392544665346326 1.0 17582 +284459 ZNF875 zinc finger protein 875 Novel U 0.00019842088068584336 -0.29392679407309696 1.0 17583 +337973 KRTAP19-6 keratin associated protein 19-6 Novel U 0.0001983779147908076 -0.2939271645119146 1.0 17584 +55110 MAGOHB mago homolog B, exon junction complex subunit Novel N 0.00019792410259672404 -0.2939310771419774 1.0 17585 +645 BLVRB biliverdin reductase B Novel N 0.00019790730987260586 -0.29393122192371335 1.0 17586 +80110 ZNF614 zinc finger protein 614 Novel U 0.0001979039449794611 -0.2939312509347938 1.0 17587 +9673 SLC25A44 solute carrier family 25 member 44 Novel N 0.00019790256753339955 -0.2939312628107128 1.0 17588 +83862 TMEM120A transmembrane protein 120A Novel U 0.00019784222203794808 -0.29393178309113444 1.0 17589 +100526760 ABHD14A-ACY1 ABHD14A-ACY1 readthrough Novel U 0.00019771884170000407 -0.293932846838706 1.0 17590 +28987 NOB1 NIN1 (RPN12) binding protein 1 homolog Novel N 0.00019762054019709877 -0.2939336943642254 1.0 17591 +340543 TCEAL5 transcription elongation factor A like 5 Novel U 0.00019740635575804974 -0.293935540997009 1.0 17592 +55197 RPRD1A regulation of nuclear pre-mRNA domain containing 1A Novel N 0.00019713290980190085 -0.29393789856448416 1.0 17593 +9633 TESMIN testis expressed metallothionein like protein Novel U 0.000196902143676233 -0.2939398881595029 1.0 17594 +50700 RDH8 retinol dehydrogenase 8 Novel N 0.00019680201293016244 -0.2939407514561979 1.0 17595 +5051 PAFAH2 platelet activating factor acetylhydrolase 2 Novel U 0.00019680159607813317 -0.2939407550501687 1.0 17596 +145407 ARMH4 armadillo like helical domain containing 4 Novel N 0.00019676392283841617 -0.2939410798573294 1.0 17597 +220082 CBY2 chibby family member 2 Novel U 0.00019673053904196912 -0.2939413676822211 1.0 17598 +84072 HORMAD1 HORMA domain containing 1 Novel U 0.00019669031562916304 -0.293941714476195 1.0 17599 +1733 DIO1 iodothyronine deiodinase 1 Novel N 0.0001966737378129948 -0.29394185740506024 1.0 17600 +9747 TCAF1 TRPM8 channel associated factor 1 Novel U 0.00019666520356784043 -0.29394193098471405 1.0 17601 +392617 ELFN1 extracellular leucine rich repeat and fibronectin type III domain containing 1 Novel U 0.0001964510492334152 -0.29394377735794486 1.0 17602 +6299 SALL1 spalt like transcription factor 1 Novel U 0.00019599528829319728 -0.2939477067895014 1.0 17603 +147744 TMEM190 transmembrane protein 190 Novel U 0.0001959334339950501 -0.2939482400783588 1.0 17604 +201725 C4orf46 chromosome 4 open reading frame 46 Novel U 0.0001958149562779464 -0.2939492615570316 1.0 17605 +54758 KLHDC4 kelch domain containing 4 Novel U 0.00019559086879919322 -0.29395119357079746 1.0 17606 +90639 COX19 cytochrome c oxidase assembly factor COX19 Novel N 0.00019545199381187643 -0.2939523909085011 1.0 17607 +100132015 TEX13D TEX13 family member D Novel U 0.00019541620021641578 -0.29395269950994346 1.0 17608 +60436 TGIF2 TGFB induced factor homeobox 2 Novel N 0.0001952612587954386 -0.2939540353675286 1.0 17609 +1475 CSTA cystatin A Novel U 0.0001951371730429009 -0.2939551051969693 1.0 17610 +8999 CDKL2 cyclin dependent kinase like 2 Novel N 0.00019504520924332942 -0.2939558980807472 1.0 17611 +146852 ODF4 outer dense fiber of sperm tails 4 Novel U 0.00019503850490175604 -0.29395595588353157 1.0 17612 +163747 CIMAP2 ciliary microtubule associated protein 2 Novel U 0.0001949951630737738 -0.29395632956352813 1.0 17613 +66004 LYNX1 Ly6/neurotoxin 1 Novel U 0.00019489978928069777 -0.29395715184722804 1.0 17614 +84223 IQCG IQ motif containing G Novel U 0.00019484251908822407 -0.2939576456133271 1.0 17615 +135656 MUCL3 mucin like 3 Novel U 0.00019477835365525642 -0.29395819882808266 1.0 17616 +2947 GSTM3 glutathione S-transferase mu 3 Novel U 0.0001945567574272869 -0.2939601093630455 1.0 17617 +388799 FAM209B family with sequence similarity 209 member B Novel U 0.0001945049266033274 -0.2939605562325714 1.0 17618 +90321 ZNF766 zinc finger protein 766 Novel U 0.00019438486877121485 -0.293961591334513 1.0 17619 +56124 PCDHB12 protocadherin beta 12 Novel U 0.00019432971273408717 -0.2939620668730107 1.0 17620 +124245 ZC3H18 zinc finger CCCH-type containing 18 Novel N 0.0001943193743732284 -0.2939621560071989 1.0 17621 +1429 CRYZ crystallin zeta Novel U 0.00019412653126947584 -0.293963818641511 1.0 17622 +64763 ZNF574 zinc finger protein 574 Novel U 0.00019411696221003985 -0.29396390114301735 1.0 17623 +98 ACYP2 acylphosphatase 2 Novel N 0.0001941010341672006 -0.2939640384697355 1.0 17624 +9514 GAL3ST1 galactose-3-O-sulfotransferase 1 Novel N 0.00019408913350823796 -0.2939641410735805 1.0 17625 +728621 CCDC30 coiled-coil domain containing 30 Novel U 0.00019405629714793003 -0.29396442417864505 1.0 17626 +145447 ABHD12B abhydrolase domain containing 12B Novel U 0.00019368496169735623 -0.2939676257194284 1.0 17627 +283150 FOXR1 forkhead box R1 Novel N 0.0001936322246132584 -0.29396808040245226 1.0 17628 +80778 ZNF34 zinc finger protein 34 Novel U 0.00019356292579035216 -0.29396867787572717 1.0 17629 +57406 ABHD6 abhydrolase domain containing 6, acylglycerol lipase Novel N 0.0001934880277300474 -0.29396932362391603 1.0 17630 +7718 ZNF165 zinc finger protein 165 Novel U 0.00019335319208758906 -0.29397048613562266 1.0 17631 +116729 PPP1R27 protein phosphatase 1 regulatory subunit 27 Novel U 0.00019321153536916165 -0.2939717074565619 1.0 17632 +4171 MCM2 minichromosome maintenance complex component 2 Novel U 0.00019287128251432962 -0.2939746410127029 1.0 17633 +140862 ISM1 isthmin 1 Novel U 0.0001927290770602639 -0.29397586706467316 1.0 17634 +1476 CSTB cystatin B Novel N 0.0001926713125845194 -0.29397636509233155 1.0 17635 +151354 LRATD1 LRAT domain containing 1 Novel N 0.00019263378892263447 -0.29397668860987797 1.0 17636 +79175 ZNF343 zinc finger protein 343 Novel U 0.0001925509112198965 -0.29397740315610543 1.0 17637 +84060 RBM48 RNA binding motif protein 48 Novel U 0.00019248555792791215 -0.2939779666122185 1.0 17638 +9658 ZNF516 zinc finger protein 516 Novel U 0.0001923575893606769 -0.29397906991810097 1.0 17639 +26140 TTLL3 tubulin tyrosine ligase like 3 Novel N 0.00019217495120628196 -0.2939806445684581 1.0 17640 +83697 SLC4A9 solute carrier family 4 member 9 Novel N 0.00019192667317235662 -0.2939827851457986 1.0 17641 +137872 ADHFE1 alcohol dehydrogenase iron containing 1 Novel N 0.0001917491431804876 -0.29398431575513945 1.0 17642 +56257 MEPCE methylphosphate capping enzyme Novel U 0.00019173981870277237 -0.2939843961479369 1.0 17643 +8336 H2AC17 H2A clustered histone 17 Novel U 0.0001914950580558981 -0.2939865063994411 1.0 17644 +64927 TTC23 tetratricopeptide repeat domain 23 Novel U 0.00019135807204909914 -0.293987687450932 1.0 17645 +4361 MRE11 MRE11 homolog, double strand break repair nuclease Novel U 0.00019129192017903302 -0.2939882577921412 1.0 17646 +162962 ZNF836 zinc finger protein 836 Novel U 0.0001912326197372773 -0.2939887690624292 1.0 17647 +53828 FXYD4 FXYD domain containing ion transport regulator 4 Novel U 0.00019123142323067613 -0.2939887793783435 1.0 17648 +388561 ZNF761 zinc finger protein 761 Novel U 0.0001911716825499094 -0.29398929444423766 1.0 17649 +440567 UQCRHL ubiquinol-cytochrome c reductase hinge protein like Novel U 0.00019092601892639442 -0.29399141248093047 1.0 17650 +7760 ZNF213 zinc finger protein 213 Novel U 0.00019089092497355886 -0.29399171505026794 1.0 17651 +163255 ZNF540 zinc finger protein 540 Novel N 0.0001908449495686672 -0.2939921114361599 1.0 17652 +7259 TSPYL1 TSPY like 1 Novel U 0.00019080042949001517 -0.2939924952746737 1.0 17653 +91227 GGTLC2 gamma-glutamyltransferase light chain 2 Novel U 0.00019066082811154008 -0.2939936988751 1.0 17654 +1207 CLNS1A chloride nucleotide-sensitive channel 1A Novel N 0.0001906576608766372 -0.2939937261820315 1.0 17655 +6975 TECTB tectorin beta Novel U 0.0001904870875651916 -0.2939951968129995 1.0 17656 +5429 POLH DNA polymerase eta Novel U 0.00019043959405090163 -0.2939956062875668 1.0 17657 +6637 SNRPG small nuclear ribonucleoprotein polypeptide G Novel N 0.0001901230139271616 -0.29399833574465417 1.0 17658 +10240 MRPS31 mitochondrial ribosomal protein S31 Novel U 0.0001899928821264589 -0.2939994577012745 1.0 17659 +284486 THEM5 thioesterase superfamily member 5 Novel N 0.0001899893934381034 -0.2939994877796795 1.0 17660 +64969 MRPS5 mitochondrial ribosomal protein S5 Novel U 0.0001895690398975964 -0.2940031119394554 1.0 17661 +54858 PGPEP1 pyroglutamyl-peptidase I Novel U 0.00018953522963898186 -0.29400340344117354 1.0 17662 +79692 ZNF322 zinc finger protein 322 Novel U 0.00018948279850370474 -0.2940038554864001 1.0 17663 +54984 PINX1 PIN2 (TERF1) interacting telomerase inhibitor 1 Novel U 0.00018944146304155393 -0.29400421186812364 1.0 17664 +8193 DPF1 double PHD fingers 1 Novel N 0.00018923652423663865 -0.2940059787878751 1.0 17665 +647310 TEX22 testis expressed 22 Novel U 0.00018888246020148488 -0.2940090314197924 1.0 17666 +204962 SLC44A5 solute carrier family 44 member 5 Novel U 0.000188822656733033 -0.2940095470270228 1.0 17667 +84225 ZMYND15 zinc finger MYND-type containing 15 Novel N 0.00018857360090387363 -0.29401169431027613 1.0 17668 +57501 CFAP92 cilia and flagella associated protein 92 (putative) Novel U 0.00018846177812656618 -0.2940126584120916 1.0 17669 +3224 HOXC8 homeobox C8 Novel U 0.00018829354156877994 -0.29401410889628365 1.0 17670 +64412 GZF1 GDNF inducible zinc finger protein 1 Novel N 0.00018817667097934378 -0.2940151165187928 1.0 17671 +255022 CALHM1 calcium homeostasis modulator 1 Novel U 0.000187897433733094 -0.29401752401700154 1.0 17672 +9588 PRDX6 peroxiredoxin 6 Novel U 0.0001878123426380906 -0.29401825764642076 1.0 17673 +27254 CSDC2 cold shock domain containing C2 Novel U 0.00018767004460477208 -0.2940194844965811 1.0 17674 +64979 MRPL36 mitochondrial ribosomal protein L36 Novel U 0.00018765666837993665 -0.29401959982230413 1.0 17675 +55885 LMO3 LIM domain only 3 Novel U 0.0001876332243264063 -0.29401980194976973 1.0 17676 +51233 DRICH1 aspartate rich 1 Novel U 0.00018752222400517842 -0.29402075896062024 1.0 17677 +54987 CZIB CXXC motif containing zinc binding protein Novel U 0.00018728600801885 -0.2940227955426722 1.0 17678 +79190 IRX6 iroquois homeobox 6 Novel U 0.00018721410649323198 -0.2940234154556547 1.0 17679 +1317 SLC31A1 solute carrier family 31 member 1 Novel U 0.0001871332706797143 -0.2940241123973372 1.0 17680 +148753 FAM163A family with sequence similarity 163 member A Novel U 0.0001871045358895406 -0.2940243601399174 1.0 17681 +80745 THUMPD2 THUMP domain containing 2 Novel U 0.00018696006651060246 -0.29402560571075614 1.0 17682 +221120 ALKBH3 alkB homolog 3, alpha-ketoglutarate dependent dioxygenase Novel N 0.00018694978284776242 -0.2940256943733547 1.0 17683 +50614 GALNT9 polypeptide N-acetylgalactosaminyltransferase 9 Novel N 0.00018690436942401484 -0.29402608591401697 1.0 17684 +10476 ATP5PD ATP synthase peripheral stalk subunit d Novel N 0.00018665299326242344 -0.2940282532024674 1.0 17685 +7404 UTY ubiquitously transcribed tetratricopeptide repeat containing, Y-linked Novel U 0.00018662107208238616 -0.29402852841712734 1.0 17686 +339327 ZNF546 zinc finger protein 546 Novel U 0.00018649148391191355 -0.294029645686734 1.0 17687 +402415 XKRX XK related X-linked Novel U 0.00018638782132457504 -0.2940305394338852 1.0 17688 +3884 KRT33B keratin 33B Novel N 0.00018625577110447484 -0.29403167793053137 1.0 17689 +51005 AMDHD2 amidohydrolase domain containing 2 Novel N 0.00018625496856527866 -0.2940316848497791 1.0 17690 +3885 KRT34 keratin 34 Novel N 0.00018614193846445233 -0.294032659360769 1.0 17691 +148254 ZNF555 zinc finger protein 555 Novel U 0.00018613210578846313 -0.2940327441350968 1.0 17692 +79943 ZNF696 zinc finger protein 696 Novel U 0.00018599474478828078 -0.29403392841966597 1.0 17693 +84287 ZDHHC16 zinc finger DHHC-type palmitoyltransferase 16 Novel N 0.00018595975766884983 -0.29403423006791846 1.0 17694 +2636 GBX1 gastrulation brain homeobox 1 Novel U 0.00018582012188244064 -0.2940354339649994 1.0 17695 +118487 CHCHD1 coiled-coil-helix-coiled-coil-helix domain containing 1 Novel U 0.00018564545245324462 -0.294036939911443 1.0 17696 +284428 MBD3L5 methyl-CpG binding domain protein 3 like 5 Novel U 0.00018550831574231486 -0.29403812226225884 1.0 17697 +110599588 ASDURF ASNSD1 upstream open reading frame Novel U 0.00018537988462339407 -0.2940392295561206 1.0 17698 +79582 SPAG16 sperm associated antigen 16 Novel N 0.00018521944575312132 -0.29404061281103366 1.0 17699 +441873 PRAMEF25 PRAME family member 25 Novel U 0.00018521743542335874 -0.2940406301434826 1.0 17700 +84336 TMEM101 transmembrane protein 101 Novel U 0.00018518438424729576 -0.2940409151006229 1.0 17701 +170302 ARX aristaless related homeobox Novel U 0.0001850973154595798 -0.2940416657811044 1.0 17702 +374470 C12orf42 chromosome 12 open reading frame 42 Novel U 0.00018498238960596653 -0.2940426566366956 1.0 17703 +57093 TRIM49 tripartite motif containing 49 Novel U 0.0001848534064779857 -0.29404376868981075 1.0 17704 +79838 TMC5 transmembrane channel like 5 Novel U 0.00018484171605252802 -0.29404386948108674 1.0 17705 +54962 TIPIN TIMELESS interacting protein Novel N 0.00018482041396538322 -0.29404405314117266 1.0 17706 +5557 PRIM1 DNA primase subunit 1 Novel U 0.00018472918476456236 -0.29404483969146467 1.0 17707 +84306 PDCD2L programmed cell death 2 like Novel U 0.0001846909360389287 -0.29404516946028914 1.0 17708 +5926 ARID4A AT-rich interaction domain 4A Novel N 0.00018465142350947242 -0.294045510125244 1.0 17709 +150472 ZNG1B Zn regulated GTPase metalloprotein activator 1B Novel U 0.00018453435999397626 -0.29404651941110266 1.0 17710 +84842 HPDL 4-hydroxyphenylpyruvate dioxygenase like Novel U 0.0001844742469766696 -0.2940470376871687 1.0 17711 +63948 DMRTB1 DMRT like family B with proline rich C-terminal 1 Novel U 0.00018446273148487987 -0.29404713697022006 1.0 17712 +2949 GSTM5 glutathione S-transferase mu 5 Novel N 0.0001844068709821094 -0.2940476185824053 1.0 17713 +9796 PHYHIP phytanoyl-CoA 2-hydroxylase interacting protein Novel N 0.0001843779246108466 -0.294047868149173 1.0 17714 +55257 MRGBP MRG domain binding protein Novel N 0.00018424864199434324 -0.2940489827843867 1.0 17715 +4528 MTIF2 mitochondrial translational initiation factor 2 Novel N 0.00018412925191115358 -0.29405001212920107 1.0 17716 +126069 ZNF491 zinc finger protein 491 Novel U 0.00018403263524376372 -0.29405084512858354 1.0 17717 +165679 SPTSSB serine palmitoyltransferase small subunit B Novel N 0.0001839860410681679 -0.29405124684932743 1.0 17718 +57343 ZNF304 zinc finger protein 304 Novel U 0.00018385419659102225 -0.2940523835721207 1.0 17719 +122455342 LOC122455342 testis-specific serine/proline-rich protein Novel U 0.00018376857426235523 -0.2940531217816743 1.0 17720 +197320 ZNF778 zinc finger protein 778 Novel U 0.00018362887899915186 -0.29405432619154603 1.0 17721 +80313 LRRC27 leucine rich repeat containing 27 Novel U 0.0001835164800669313 -0.2940552952607931 1.0 17722 +114034 TOE1 target of EGR1, exonuclease Novel N 0.00018348863041739937 -0.2940555353719611 1.0 17723 +149465 CFAP57 cilia and flagella associated protein 57 Novel U 0.00018346431555721934 -0.29405574500725556 1.0 17724 +27439 TMEM121B transmembrane protein 121B Novel U 0.00018301915329991438 -0.29405958306020674 1.0 17725 +28989 NTMT1 N-terminal Xaa-Pro-Lys N-methyltransferase 1 Novel U 0.0001829386454776962 -0.29406027717404853 1.0 17726 +7033 TFF3 trefoil factor 3 Novel U 0.0001829328234469911 -0.2940603273698183 1.0 17727 +278 AMY1C amylase alpha 1C Novel N 0.00018282653460062882 -0.29406124375977216 1.0 17728 +56945 MRPS22 mitochondrial ribosomal protein S22 Novel U 0.0001828076718413812 -0.29406140638871836 1.0 17729 +342357 ZKSCAN2 zinc finger with KRAB and SCAN domains 2 Novel U 0.00018277185567890878 -0.2940617151847266 1.0 17730 +55237 VRTN vertebrae development associated Novel U 0.00018265995138775574 -0.2940626799893296 1.0 17731 +83475 DOHH deoxyhypusine hydroxylase Novel U 0.00018260114187272544 -0.29406318702699735 1.0 17732 +84967 LSM10 LSM10, U7 small nuclear RNA associated Novel U 0.00018259965567107438 -0.29406319984057383 1.0 17733 +6207 RPS13 ribosomal protein S13 Novel N 0.00018252996298990368 -0.2940638007095744 1.0 17734 +25974 MMACHC metabolism of cobalamin associated C Novel U 0.00018248718577396804 -0.2940641695216585 1.0 17735 +10901 DHRS4 dehydrogenase/reductase 4 Novel N 0.00018233941414168864 -0.2940654435635164 1.0 17736 +84332 DYDC2 DPY30 domain containing 2 Novel U 0.00018222416084834846 -0.29406643724219284 1.0 17737 +442444 FAM47C family with sequence similarity 47 member C Novel U 0.00018186598261660326 -0.294069525345456 1.0 17738 +3032 HADHB hydroxyacyl-CoA dehydrogenase trifunctional multienzyme complex subunit beta Novel U 0.00018183328599375852 -0.29406980724574683 1.0 17739 +57822 GRHL3 grainyhead like transcription factor 3 Novel U 0.00018177290673738095 -0.29407032781724474 1.0 17740 +56100 PCDHGB6 protocadherin gamma subfamily B, 6 Novel U 0.00018155576850543452 -0.2940721999167282 1.0 17741 +57116 ZNF695 zinc finger protein 695 Novel U 0.0001814542260345689 -0.294073075384883 1.0 17742 +55218 EXD2 exonuclease 3'-5' domain containing 2 Novel N 0.00018129619645425237 -0.29407443786763426 1.0 17743 +342918 C19orf81 chromosome 19 open reading frame 81 Novel U 0.00018128912551036372 -0.2940744988311517 1.0 17744 +8354 H3C11 H3 clustered histone 11 Novel U 0.00018121442782763778 -0.29407514285174635 1.0 17745 +64077 LHPP phospholysine phosphohistidine inorganic pyrophosphate phosphatase Novel N 0.0001811558052584985 -0.2940756482776237 1.0 17746 +63917 GALNT11 polypeptide N-acetylgalactosaminyltransferase 11 Novel N 0.00018105995855560166 -0.29407647463860764 1.0 17747 +353137 LCE1F late cornified envelope 1F Novel U 0.00018068831427408232 -0.29407967884203695 1.0 17748 +92126 DSEL dermatan sulfate epimerase like Novel N 0.000180645598456959 -0.29408004712475927 1.0 17749 +145645 TERB2 telomere repeat binding bouquet formation protein 2 Novel N 0.00018054982153105318 -0.2940808728841472 1.0 17750 +25788 RAD54B RAD54 homolog B Novel U 0.0001804655443038266 -0.29408159949664714 1.0 17751 +744 MPPED2 metallophosphoesterase domain containing 2 Novel U 0.0001803910058697914 -0.29408224214424816 1.0 17752 +23522 KAT6B lysine acetyltransferase 6B Novel U 0.0001803623595330178 -0.2940824891242102 1.0 17753 +642938 INSYN2A inhibitory synaptic factor 2A Novel U 0.0001803093124854447 -0.29408294647964445 1.0 17754 +51504 TRMT112 tRNA methyltransferase activator subunit 11-2 Novel N 0.0001800904492089987 -0.2940848334519344 1.0 17755 +64577 ALDH8A1 aldehyde dehydrogenase 8 family member A1 Novel N 0.0001798620546085362 -0.29408680260038744 1.0 17756 +160065 PATE1 prostate and testis expressed 1 Novel U 0.00017968390321770018 -0.2940883385672403 1.0 17757 +201229 LYRM9 LYR motif containing 9 Novel U 0.00017966904392377863 -0.2940884666795318 1.0 17758 +353141 LCE2D late cornified envelope 2D Novel U 0.0001794165427943326 -0.2940906436671114 1.0 17759 +23155 CLCC1 chloride channel CLIC like 1 Novel N 0.00017924424133499093 -0.29409212919764255 1.0 17760 +164592 CCDC116 coiled-coil domain containing 116 Novel U 0.00017920370282372702 -0.294092478708299 1.0 17761 +3232 HOXD3 homeobox D3 Novel N 0.000178806039715221 -0.2940959072381039 1.0 17762 +55089 SLC38A4 solute carrier family 38 member 4 Novel U 0.00017876110107390325 -0.2940962946853371 1.0 17763 +148156 ZNF558 zinc finger protein 558 Novel U 0.00017866566176704679 -0.2940971175338768 1.0 17764 +83887 TTLL2 tubulin tyrosine ligase like 2 Novel U 0.00017850978047070562 -0.2940984614947802 1.0 17765 +9963 SLC23A1 solute carrier family 23 member 1 Novel N 0.00017850211044986457 -0.2940985276233561 1.0 17766 +391365 SULT6B1 sulfotransferase family 6B member 1 Novel U 0.00017841087545605243 -0.2940993142235934 1.0 17767 +439915 KRTAP5-5 keratin associated protein 5-5 Novel U 0.00017830264655829988 -0.29410024734007756 1.0 17768 +222696 ZSCAN23 zinc finger and SCAN domain containing 23 Novel U 0.00017818182402462484 -0.29410128903504235 1.0 17769 +440590 ZYG11A zyg-11 family member A, cell cycle regulator Novel U 0.0001781586064788707 -0.2941014892096271 1.0 17770 +401024 FSIP2 fibrous sheath interacting protein 2 Novel U 0.0001779742038082587 -0.2941030790731039 1.0 17771 +140832 WFDC10A WAP four-disulfide core domain 10A Novel U 0.00017795843875183652 -0.2941032149946029 1.0 17772 +51550 CINP cyclin dependent kinase 2 interacting protein Novel N 0.00017794065264206194 -0.2941033683410064 1.0 17773 +9880 ZBTB39 zinc finger and BTB domain containing 39 Novel U 0.00017789511726257594 -0.29410376093313373 1.0 17774 +8357 H3C10 H3 clustered histone 10 Novel U 0.0001778439862546179 -0.29410420176905994 1.0 17775 +5454 POU3F2 POU class 3 homeobox 2 Novel N 0.00017751956072303282 -0.2941069988668563 1.0 17776 +387695 GPR15LG G protein-coupled receptor 15 ligand Novel U 0.00017745280566268257 -0.29410757440858787 1.0 17777 +56603 CYP26B1 cytochrome P450 family 26 subfamily B member 1 Novel U 0.00017734797348895894 -0.29410847823955544 1.0 17778 +344787 ZNF860 zinc finger protein 860 Novel U 0.00017729727643043858 -0.2941089153341021 1.0 17779 +8346 H2BC10 H2B clustered histone 10 Novel N 0.0001772833416703739 -0.2941090354753453 1.0 17780 +280658 SSX7 SSX family member 7 Novel U 0.00017725895179552796 -0.29410924575739317 1.0 17781 +79590 MRPL24 mitochondrial ribosomal protein L24 Novel U 0.00017723666376699877 -0.2941094379179645 1.0 17782 +23563 CHST5 carbohydrate sulfotransferase 5 Novel N 0.00017703172470152394 -0.2941112048399624 1.0 17783 +130951 M1AP meiosis 1 associated protein Novel N 0.00017670640742073964 -0.2941140096261478 1.0 17784 +7673 ZNF222 zinc finger protein 222 Novel U 0.0001765866927113711 -0.29411504176979 1.0 17785 +644168 DRGX dorsal root ganglia homeobox Novel U 0.000176550241485037 -0.29411535604112476 1.0 17786 +94104 PAXBP1 PAX3 and PAX7 binding protein 1 Novel U 0.00017649585380628455 -0.2941158249550714 1.0 17787 +9129 PRPF3 pre-mRNA processing factor 3 Novel N 0.0001764287258168824 -0.2941164037120832 1.0 17788 +5121 PCP4 Purkinje cell protein 4 Novel N 0.00017635939663987566 -0.294117001447062 1.0 17789 +54815 GATAD2A GATA zinc finger domain containing 2A Novel N 0.00017624932587103235 -0.29411795044359584 1.0 17790 +388963 C2orf81 chromosome 2 open reading frame 81 Novel U 0.00017623291388273448 -0.29411809194274385 1.0 17791 +643414 LIPK lipase family member K Novel N 0.00017623202713355939 -0.29411809958802426 1.0 17792 +387775 SLC22A10 solute carrier family 22 member 10 Novel U 0.00017620823037165788 -0.29411830475643364 1.0 17793 +646625 URAD ureidoimidazoline (2-oxo-4-hydroxy-4-carboxy-5-) decarboxylase Novel U 0.0001761982001031724 -0.2941183912343435 1.0 17794 +200504 GKN2 gastrokine 2 Novel U 0.0001760615490860989 -0.2941195693976553 1.0 17795 +29015 SLC43A3 solute carrier family 43 member 3 Novel N 0.00017593987496089528 -0.29412061843478204 1.0 17796 +55322 C5orf22 chromosome 5 open reading frame 22 Novel U 0.00017582607691595946 -0.29412159956675143 1.0 17797 +163131 ZNF780B zinc finger protein 780B Novel U 0.00017581734250330373 -0.29412167487218827 1.0 17798 +116362 RBP7 retinol binding protein 7 Novel U 0.00017546969687610853 -0.2941246721665535 1.0 17799 +158297 SAXO1 stabilizer of axonemal microtubules 1 Novel U 0.00017546265557956655 -0.29412473287446067 1.0 17800 +55862 ECHDC1 ethylmalonyl-CoA decarboxylase 1 Novel U 0.00017540687616045557 -0.29412521378756734 1.0 17801 +344167 FOXI3 forkhead box I3 Novel N 0.00017533358337832247 -0.2941258456955383 1.0 17802 +729085 GASK1A golgi associated kinase 1A Novel U 0.00017517272558426958 -0.29412723256228424 1.0 17803 +389161 ANKUB1 ankyrin repeat and ubiquitin domain containing 1 Novel U 0.00017506483161680626 -0.29412816279110177 1.0 17804 +283129 MAJIN membrane anchored junction protein Novel U 0.00017493948493217773 -0.2941292434919136 1.0 17805 +23639 DNAAF11 dynein axonemal assembly factor 11 Novel U 0.00017492830908183093 -0.29412933984668016 1.0 17806 +161502 CFAP161 cilia and flagella associated protein 161 Novel U 0.00017481871699307397 -0.29413028471618063 1.0 17807 +56204 ATOSA atos homolog A Novel U 0.00017472244372233382 -0.2941311147549021 1.0 17808 +127254 ERICH3 glutamate rich 3 Novel N 0.00017455734121749506 -0.29413253821824725 1.0 17809 +9502 XAGE2 X antigen family member 2 Novel U 0.00017451863082555496 -0.2941328719674176 1.0 17810 +100526693 ARPC4-TTLL3 ARPC4-TTLL3 readthrough Novel U 0.00017447346922686683 -0.29413326133692114 1.0 17811 +1747 DLX3 distal-less homeobox 3 Novel N 0.0001742510465961 -0.2941351789968764 1.0 17812 +9506 PAGE4 PAGE family member 4 Novel N 0.00017413558913603505 -0.29413617443581597 1.0 17813 +118670 FAM24A family with sequence similarity 24 member A Novel U 0.00017398520904476976 -0.29413747096701015 1.0 17814 +25913 POT1 protection of telomeres 1 Novel U 0.0001739432758963999 -0.29413783250180164 1.0 17815 +157773 C8orf48 chromosome 8 open reading frame 48 Novel U 0.00017390353778705064 -0.29413817511163737 1.0 17816 +788 SLC25A20 solute carrier family 25 member 20 Novel U 0.00017378897271025457 -0.2941391628567211 1.0 17817 +340542 BEX5 brain expressed X-linked 5 Novel U 0.00017370508918495255 -0.29413988607484337 1.0 17818 +8099 CDK2AP1 cyclin dependent kinase 2 associated protein 1 Novel N 0.00017360238649116085 -0.2941407715460857 1.0 17819 +148808 MFSD4A major facilitator superfamily domain containing 4A Novel U 0.0001734488759444867 -0.29414209506710987 1.0 17820 +55092 TMEM51 transmembrane protein 51 Novel U 0.00017296438330597887 -0.2941462722145893 1.0 17821 +149699 GTSF1L gametocyte specific factor 1 like Novel U 0.00017284175654565858 -0.29414732946504485 1.0 17822 +84775 ZNF607 zinc finger protein 607 Novel U 0.00017271349481247695 -0.2941484352985146 1.0 17823 +58510 PRODH2 proline dehydrogenase 2 Novel N 0.00017265670077669973 -0.29414892495933603 1.0 17824 +57701 NCKAP5L NCK associated protein 5 like Novel U 0.0001725505612443638 -0.2941498400619501 1.0 17825 +221044 UCMA upper zone of growth plate and cartilage matrix associated Novel U 0.0001724523292146974 -0.2941506869884924 1.0 17826 +29922 NME7 NME/NM23 family member 7 Novel U 0.00017241542349999805 -0.294151005178287 1.0 17827 +84229 DRC7 dynein regulatory complex subunit 7 Novel U 0.00017225113536123568 -0.2941524216204168 1.0 17828 +646262 LACTBL1 lactamase beta like 1 Novel U 0.00017220040452135138 -0.2941528590062161 1.0 17829 +131669 UROC1 urocanate hydratase 1 Novel N 0.00017192678393324607 -0.2941552180793146 1.0 17830 +54737 MPHOSPH8 M-phase phosphoprotein 8 Novel U 0.00017185406773249405 -0.29415584501617714 1.0 17831 +119559 SFXN4 sideroflexin 4 Novel U 0.00017183440477191363 -0.2941560145442147 1.0 17832 +8812 CCNK cyclin K Novel U 0.00017181215138322372 -0.2941562064061318 1.0 17833 +11181 TREH trehalase Novel N 0.00017177867037351775 -0.2941564950691665 1.0 17834 +100529209 RNASEK-C17orf49 RNASEK-C17orf49 readthrough Novel U 0.00017171026581177845 -0.29415708483239494 1.0 17835 +147011 PROCA1 protein interacting with cyclin A1 Novel U 0.0001716636299712846 -0.2941574869123609 1.0 17836 +63947 DMRTC1 DMRT like family C1 Novel U 0.00017156667233336143 -0.2941583228514871 1.0 17837 +91646 TDRD12 tudor domain containing 12 Novel U 0.00017152706290966726 -0.2941586643518344 1.0 17838 +353513 VCY1B variable charge Y-linked 1B Novel U 0.0001713502571314279 -0.29416018871722666 1.0 17839 +219293 ATAD3C ATPase family AAA domain containing 3C Novel U 0.00017131638862490154 -0.2941604807211405 1.0 17840 +493753 COA5 cytochrome c oxidase assembly factor 5 Novel N 0.0001712755067212515 -0.29416083319242115 1.0 17841 +5436 POLR2G RNA polymerase II subunit G Novel N 0.00017127513007676214 -0.2941608364397349 1.0 17842 +55957 LIN37 lin-37 DREAM MuvB core complex component Novel U 0.0001711627335672872 -0.2941618054880938 1.0 17843 +123103 KLHL33 kelch like family member 33 Novel U 0.0001710097053145882 -0.29416312485092666 1.0 17844 +6540 SLC6A13 solute carrier family 6 member 13 Novel U 0.00017054874741137042 -0.29416709908911015 1.0 17845 +6508 SLC4A3 solute carrier family 4 member 3 Novel U 0.00017053960870086035 -0.29416717788027963 1.0 17846 +403314 APOBEC4 apolipoprotein B mRNA editing enzyme catalytic polypeptide like 4 Novel U 0.00017023115267627239 -0.29416983729386653 1.0 17847 +57687 VAT1L vesicle amine transport 1 like Novel U 0.0001701809473666877 -0.29417027014870417 1.0 17848 +79842 ZBTB3 zinc finger and BTB domain containing 3 Novel U 0.00016983624544658778 -0.2941732420633264 1.0 17849 +11264 PXMP4 peroxisomal membrane protein 4 Novel U 0.00016975802892852052 -0.294173916422244 1.0 17850 +64395 GMCL1 germ cell-less 1, spermatogenesis associated Novel U 0.0001695486865631619 -0.29417572130814795 1.0 17851 +56475 RPRM reprimo, TP53 dependent G2 arrest mediator homolog Novel N 0.00016944462427547256 -0.29417661850139337 1.0 17852 +285231 FBXW12 F-box and WD repeat domain containing 12 Novel U 0.000169397146123729 -0.2941770278435095 1.0 17853 +51059 FAM135B family with sequence similarity 135 member B Novel U 0.0001693761558532969 -0.29417720881520704 1.0 17854 +23475 QPRT quinolinate phosphoribosyltransferase Novel N 0.00016937255589065563 -0.29417723985298483 1.0 17855 +8294 H4C9 H4 clustered histone 9 Novel U 0.0001693257424457439 -0.2941776434642018 1.0 17856 +200523 SPMIP9 sperm microtubule inner protein 9 Novel U 0.00016895933946477443 -0.2941808024787394 1.0 17857 +51281 ANKMY1 ankyrin repeat and MYND domain containing 1 Novel U 0.00016872023749282128 -0.2941828639428775 1.0 17858 +729330 OC90 otoconin 90 Novel U 0.00016865416892254077 -0.2941834335659015 1.0 17859 +643641 ZNF862 zinc finger protein 862 Novel U 0.00016863746466949515 -0.2941835775848668 1.0 17860 +113835 ZNF257 zinc finger protein 257 Novel U 0.00016851814920202147 -0.29418460628636733 1.0 17861 +100533952 RBAK-RBAKDN RBAK-RBAKDN readthrough Novel U 0.0001684826863712393 -0.2941849120360577 1.0 17862 +55388 MCM10 minichromosome maintenance 10 replication initiation factor Novel U 0.00016837105131784058 -0.294185874519375 1.0 17863 +84460 ZMAT1 zinc finger matrin-type 1 Novel U 0.00016823161417188015 -0.2941870767038387 1.0 17864 +389206 BEND4 BEN domain containing 4 Novel U 0.00016808313071093906 -0.2941883568828658 1.0 17865 +4172 MCM3 minichromosome maintenance complex component 3 Novel U 0.00016802478014294226 -0.29418885996363253 1.0 17866 +100287718 ANKRD66 ankyrin repeat domain 66 Novel U 0.0001680013780007085 -0.2941890617297517 1.0 17867 +401089 FOXL2NB FOXL2 neighbor Novel U 0.00016797274888180608 -0.29418930856126646 1.0 17868 +284992 CCDC150 coiled-coil domain containing 150 Novel U 0.00016764868447449022 -0.2941921025455598 1.0 17869 +29799 YPEL1 yippee like 1 Novel U 0.0001676044213611119 -0.2941924841685975 1.0 17870 +89876 CFAP91 cilia and flagella associated protein 91 Novel N 0.00016760131140088763 -0.2941925109817242 1.0 17871 +10419 PRMT5 protein arginine methyltransferase 5 Novel U 0.0001674507959310726 -0.29419380868011097 1.0 17872 +6705 SPRR2F small proline rich protein 2F Novel U 0.00016728764246154687 -0.2941952153394693 1.0 17873 +124565 SLC38A10 solute carrier family 38 member 10 Novel U 0.00016710987552302618 -0.2941967479916917 1.0 17874 +121504 H4C16 H4 histone 16 Novel U 0.00016691013275726927 -0.29419847011278133 1.0 17875 +55259 DNAI7 dynein axonemal intermediate chain 7 Novel U 0.00016661636470397822 -0.2942010028911681 1.0 17876 +152816 ODAPH odontogenesis associated phosphoprotein Novel N 0.00016660546233602855 -0.294201096888053 1.0 17877 +51093 METTL25B methyltransferase like 25B Novel U 0.00016657980314144336 -0.2942013181137879 1.0 17878 +54847 SIDT1 SID1 transmembrane family member 1 Novel U 0.00016652432261212975 -0.29420179644995803 1.0 17879 +8399 PLA2G10 phospholipase A2 group X Novel U 0.00016644955456122885 -0.2942024410772455 1.0 17880 +26507 CNNM1 cyclin and CBS domain divalent metal cation transport mediator 1 Novel U 0.00016617894288012357 -0.29420477420846736 1.0 17881 +389799 CFAP77 cilia and flagella associated protein 77 Novel U 0.00016612319677190485 -0.2942052548343777 1.0 17882 +146177 VWA3A von Willebrand factor A domain containing 3A Novel U 0.00016605199848293396 -0.2942058686842686 1.0 17883 +441519 CT45A3 cancer/testis antigen family 45 member A3 Novel U 0.0001658430762218032 -0.2942076699481623 1.0 17884 +54496 PRMT7 protein arginine methyltransferase 7 Novel U 0.00016580858102070015 -0.2942079673552453 1.0 17885 +1763 DNA2 DNA replication helicase/nuclease 2 Novel U 0.00016579479467712516 -0.29420808621688677 1.0 17886 +58499 ZNF462 zinc finger protein 462 Novel U 0.00016573152449392455 -0.2942086317130725 1.0 17887 +55002 TMCO3 transmembrane and coiled-coil domains 3 Novel U 0.0001656975344492208 -0.29420892476485133 1.0 17888 +6538 SLC6A11 solute carrier family 6 member 11 Novel U 0.00016546488110202748 -0.2942109306309173 1.0 17889 +126272 EID2B EP300 interacting inhibitor of differentiation 2B Novel N 0.00016521958758812662 -0.2942130454766382 1.0 17890 +84944 MAEL maelstrom spermatogenic transposon silencer Novel U 0.0001651823450078126 -0.2942133665707851 1.0 17891 +54800 KLHL24 kelch like family member 24 Novel U 0.0001651577804751845 -0.2942135783586791 1.0 17892 +5884 RAD17 RAD17 checkpoint clamp loader component Novel N 0.00016481951257637996 -0.29421649480113576 1.0 17893 +7561 ZNF14 zinc finger protein 14 Novel U 0.00016474999185132192 -0.2942170941875833 1.0 17894 +10785 WDR4 WD repeat domain 4 Novel U 0.00016474305350805754 -0.29421715400785875 1.0 17895 +84527 ZNF559 zinc finger protein 559 Novel U 0.00016466397159829938 -0.29421783582791905 1.0 17896 +7594 ZNF43 zinc finger protein 43 Novel U 0.00016462804939957628 -0.29421814553813946 1.0 17897 +26974 ZNF285 zinc finger protein 285 Novel U 0.00016460562918141277 -0.29421833883840937 1.0 17898 +4589 MUC7 mucin 7, secreted Novel U 0.00016460427540324806 -0.294218350510271 1.0 17899 +135154 SDHAF4 succinate dehydrogenase complex assembly factor 4 Novel N 0.00016440380011839513 -0.2942200789469164 1.0 17900 +123876 ACSM2A acyl-CoA synthetase medium chain family member 2A Novel N 0.0001643270702572667 -0.2942207404883322 1.0 17901 +6568 SLC17A1 solute carrier family 17 member 1 Novel N 0.00016427112162296733 -0.2942212228603605 1.0 17902 +284338 PRR19 proline rich 19 Novel U 0.00016423236303473177 -0.29422155702506453 1.0 17903 +64648 SPANXD SPANX family member D Novel U 0.00016412136681213105 -0.2942225140005779 1.0 17904 +256435 ST6GALNAC3 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 3 Novel U 0.0001640186098467237 -0.2942233999397335 1.0 17905 +622 BDH1 3-hydroxybutyrate dehydrogenase 1 Novel U 0.00016392423654254068 -0.2942242135975239 1.0 17906 +387856 CCDC184 coiled-coil domain containing 184 Novel U 0.00016385734987843934 -0.2942247902739027 1.0 17907 +10430 TMEM147 transmembrane protein 147 Novel U 0.00016380486012320894 -0.29422524282453266 1.0 17908 +7627 ZNF75A zinc finger protein 75A Novel U 0.00016370412177048598 -0.29422611135982657 1.0 17909 +27143 PALD1 phosphatase domain containing paladin 1 Novel U 0.00016367363119048798 -0.2942263742402901 1.0 17910 +8932 MBD2 methyl-CpG binding domain protein 2 Novel N 0.0001636238144587096 -0.2942268037449286 1.0 17911 +55815 TSNAXIP1 translin associated factor X interacting protein 1 Novel U 0.00016361692977057593 -0.2942268631026059 1.0 17912 +134121 CFAP90 cilia and flagella associated protein 90 Novel U 0.0001635971446791937 -0.29422703368361797 1.0 17913 +197407 ZNF48 zinc finger protein 48 Novel U 0.00016349833629709882 -0.2942278855792948 1.0 17914 +1775 DNASE1L2 deoxyribonuclease 1 like 2 Novel N 0.00016320428419801348 -0.29423042080663764 1.0 17915 +84259 DCUN1D5 defective in cullin neddylation 1 domain containing 5 Novel N 0.00016317774894641647 -0.2942306495854683 1.0 17916 +29906 ST8SIA5 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 5 Novel N 0.00016315137811639835 -0.2942308769467064 1.0 17917 +64211 LHX5 LIM homeobox 5 Novel U 0.00016303352672852084 -0.29423189302536 1.0 17918 +5768 QSOX1 quiescin sulfhydryl oxidase 1 Novel U 0.00016300181643072654 -0.29423216642185773 1.0 17919 +58516 SINHCAF SIN3-HDAC complex associated factor Novel N 0.00016299754876060798 -0.2942322032164053 1.0 17920 +8139 GAN gigaxonin Novel N 0.00016292562806673747 -0.2942328232946506 1.0 17921 +2960 GTF2E1 general transcription factor IIE subunit 1 Novel N 0.00016271256089874607 -0.2942346602946646 1.0 17922 +122258 SPACA7 sperm acrosome associated 7 Novel U 0.00016270849947686467 -0.294234695311003 1.0 17923 +80150 ASRGL1 asparaginase and isoaspartyl peptidase 1 Novel N 0.00016267483290281252 -0.29423498557391675 1.0 17924 +129025 ZNF280A zinc finger protein 280A Novel U 0.0001626285378572647 -0.2942353847156528 1.0 17925 +644019 ZNG1F Zn regulated GTPase metalloprotein activator 1F Novel U 0.00016255158144008633 -0.2942360482103656 1.0 17926 +26 AOC1 amine oxidase copper containing 1 Novel N 0.00016251725745631204 -0.29423634414126504 1.0 17927 +9487 PIGL phosphatidylinositol glycan anchor biosynthesis class L Novel U 0.00016247413400957117 -0.29423671593844536 1.0 17928 +441525 SPANXN4 SPANX family member N4 Novel U 0.00016235353412551753 -0.2942377557137931 1.0 17929 +55130 ODAD2 outer dynein arm docking complex subunit 2 Novel U 0.0001622724489397359 -0.29423845480548716 1.0 17930 +100128071 FAM229A family with sequence similarity 229 member A Novel U 0.000162266882091206 -0.2942385028011541 1.0 17931 +56157 TEX13A testis expressed 13A Novel U 0.00016216647546763113 -0.29423936847638066 1.0 17932 +121643 FOXN4 forkhead box N4 Novel U 0.0001621215795466341 -0.2942397555552923 1.0 17933 +11066 SNRNP35 small nuclear ribonucleoprotein U11/U12 subunit 35 Novel N 0.0001619689629497974 -0.29424107136895417 1.0 17934 +1491 CTH cystathionine gamma-lyase Novel U 0.00016177749616089258 -0.29424272213710023 1.0 17935 +56983 POGLUT1 protein O-glucosyltransferase 1 Novel U 0.00016175470463049947 -0.2942429186387107 1.0 17936 +84627 ZNF469 zinc finger protein 469 Novel U 0.00016161774393708055 -0.29424409947195734 1.0 17937 +440145 MZT1 mitotic spindle organizing protein 1 Novel N 0.0001615451277357116 -0.29424472554665576 1.0 17938 +643664 SLC35G6 solute carrier family 35 member G6 Novel U 0.0001612942590063822 -0.2942468884601803 1.0 17939 +125150 ZSWIM7 zinc finger SWIM-type containing 7 Novel N 0.00016128622759915484 -0.29424695770451925 1.0 17940 +84645 C22orf23 chromosome 22 open reading frame 23 Novel U 0.0001612338836780564 -0.2942474089978118 1.0 17941 +387266 KRTAP5-3 keratin associated protein 5-3 Novel U 0.00016074885334603102 -0.29425159078112056 1.0 17942 +200765 TIGD1 tigger transposable element derived 1 Novel U 0.00016062803524701224 -0.29425263243785105 1.0 17943 +100506127 GVQW3 GVQW motif containing 3 Novel U 0.00016053003411635106 -0.29425347737365276 1.0 17944 +284485 RIIAD1 regulatory subunit of type II PKA R-subunit domain containing 1 Novel U 0.0001604512288158918 -0.29425415680887224 1.0 17945 +2928 GSC2 goosecoid homeobox 2 Novel N 0.00016037315780845029 -0.29425482991324164 1.0 17946 +221786 FAM200A family with sequence similarity 200 member A Novel U 0.00016031209774238156 -0.2942553563544728 1.0 17947 +79744 ZNF419 zinc finger protein 419 Novel U 0.0001601544107903514 -0.2942567158831877 1.0 17948 +517 ATP5MC2 ATP synthase membrane subunit c locus 2 Novel U 0.00016005019845555826 -0.2942576143700934 1.0 17949 +254050 LRRC43 leucine rich repeat containing 43 Novel U 0.00016000145660034044 -0.2942580346074747 1.0 17950 +643669 CCER2 coiled-coil glutamate rich protein 2 Novel U 0.0001599141916487955 -0.29425878697922075 1.0 17951 +140838 NANP N-acetylneuraminic acid phosphatase Novel N 0.0001598964908270091 -0.29425893959029725 1.0 17952 +388553 MEIOSIN meiosis initiator Novel U 0.00015963534847919213 -0.294261191079821 1.0 17953 +127003 CFAP276 cilia and flagella associated protein 276 Novel U 0.00015947999986164898 -0.2942625304481306 1.0 17954 +22890 ZBTB1 zinc finger and BTB domain containing 1 Novel U 0.00015937110672231493 -0.29426346929150266 1.0 17955 +342892 ZNF850 zinc finger protein 850 Novel U 0.00015935205535211075 -0.2942636335465949 1.0 17956 +134548 SOWAHA sosondowah ankyrin repeat domain family member A Novel U 0.00015931542234243117 -0.29426394938521017 1.0 17957 +85280 KRTAP9-4 keratin associated protein 9-4 Novel U 0.0001590706726063557 -0.2942660595426448 1.0 17958 +353143 LCE3B late cornified envelope 3B Novel N 0.00015903847586693385 -0.29426633713309347 1.0 17959 +29087 THYN1 thymocyte nuclear protein 1 Novel U 0.00015894074934475684 -0.2942671797013047 1.0 17960 +340359 KLHL38 kelch like family member 38 Novel U 0.00015860582224682646 -0.2942700673403971 1.0 17961 +57835 SLC4A5 solute carrier family 4 member 5 Novel N 0.00015855987567152944 -0.2942704634777291 1.0 17962 +245932 DEFB119 defensin beta 119 Novel U 0.00015846644179886123 -0.294271269036028 1.0 17963 +64090 GAL3ST2 galactose-3-O-sulfotransferase 2 Novel U 0.00015829477831904987 -0.2942727490660946 1.0 17964 +2298 FOXD4 forkhead box D4 Novel U 0.0001582898772211164 -0.2942727913218633 1.0 17965 +10994 ILVBL ilvB acetolactate synthase like Novel N 0.0001582310611624045 -0.2942732984159487 1.0 17966 +112488737 TAF11L8 TATA-box binding protein associated factor 11 like 8 Novel U 0.00015809195309984266 -0.2942744977631559 1.0 17967 +389524 GTF2IRD2B GTF2I repeat domain containing 2B Novel U 0.0001580153268932938 -0.2942751584108935 1.0 17968 +51805 COQ3 coenzyme Q3, methyltransferase Novel N 0.00015791819763036628 -0.2942759958297181 1.0 17969 +90592 ZNF700 zinc finger protein 700 Novel U 0.000157479223455709 -0.29427978053091164 1.0 17970 +51058 ZNF691 zinc finger protein 691 Novel U 0.0001573535135690096 -0.29428086436314066 1.0 17971 +91661 ZNF765 zinc finger protein 765 Novel U 0.00015731304046960964 -0.29428121330983603 1.0 17972 +170626 XAGE3 X antigen family member 3 Novel U 0.00015691842365475917 -0.29428461557542795 1.0 17973 +51046 ST8SIA3 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 3 Novel N 0.0001567690207815223 -0.29428590368134694 1.0 17974 +392399 LCN9 lipocalin 9 Novel U 0.0001567504727752129 -0.2942860635965895 1.0 17975 +549 AUH AU RNA binding methylglutaconyl-CoA hydratase Novel N 0.00015670427793627038 -0.29428646187437474 1.0 17976 +128497 SPATA25 spermatogenesis associated 25 Novel U 0.00015668802667292322 -0.2942866019878013 1.0 17977 +9085 CDY1 chromodomain Y-linked 1 Novel N 0.00015655398141222154 -0.294287757685078 1.0 17978 +55065 SLC52A1 solute carrier family 52 member 1 Novel N 0.00015652140797623533 -0.2942880385232894 1.0 17979 +121551 ABTB3 ankyrin repeat and BTB domain containing 3 Novel U 0.00015642244879557102 -0.2942888917191054 1.0 17980 +51315 KRCC1 lysine rich coiled-coil 1 Novel U 0.00015635219240815347 -0.29428949744820904 1.0 17981 +2547 XRCC6 X-ray repair cross complementing 6 Novel U 0.00015617443104139233 -0.29429103005239343 1.0 17982 +100130705 SPMIP1 sperm microtubule inner protein 1 Novel U 0.00015604000359943385 -0.2942921890447201 1.0 17983 +55064 SPATA6L spermatogenesis associated 6 like Novel U 0.00015598921829435128 -0.2942926269001017 1.0 17984 +3859 KRT12 keratin 12 Novel U 0.00015558933408082253 -0.2942960745795954 1.0 17985 +4013 VWA5A von Willebrand factor A domain containing 5A Novel U 0.00015558505288845842 -0.2942961114907277 1.0 17986 +84692 CCDC54 coiled-coil domain containing 54 Novel U 0.00015539497395583186 -0.2942977502932011 1.0 17987 +6636 SNRPF small nuclear ribonucleoprotein polypeptide F Novel N 0.00015538657568384405 -0.2942978227005359 1.0 17988 +285349 ZNF660 zinc finger protein 660 Novel U 0.0001553209924928152 -0.2942983881387682 1.0 17989 +6991 DYNLT2 dynein light chain Tctex-type 2 Novel U 0.00015527244068008032 -0.2942988067376613 1.0 17990 +55295 KLHL26 kelch like family member 26 Novel U 0.00015526523783733018 -0.2942988688383705 1.0 17991 +60676 PAPPA2 pappalysin 2 Novel N 0.0001551809931871419 -0.29429959517000115 1.0 17992 +93134 ZNF561 zinc finger protein 561 Novel U 0.0001549780402579029 -0.29430134496813937 1.0 17993 +196792 FAM24B family with sequence similarity 24 member B Novel U 0.00015497631758445995 -0.29430135982050337 1.0 17994 +83884 SLC25A2 solute carrier family 25 member 2 Novel N 0.00015475020245312056 -0.29430330931607024 1.0 17995 +643965 TMEM88B transmembrane protein 88B Novel U 0.0001547488406457026 -0.2943033210571576 1.0 17996 +127898561 MIURF mitochondrial elongation factor 1 upstream open reading frame Novel U 0.00015472001379963663 -0.2943035695934156 1.0 17997 +353132 LCE1B late cornified envelope 1B Novel U 0.00015471044185043904 -0.2943036521198366 1.0 17998 +84311 MRPL45 mitochondrial ribosomal protein L45 Novel U 0.0001545062495623075 -0.29430541260334847 1.0 17999 +203111 ERICH5 glutamate rich 5 Novel U 0.00015443641804051018 -0.29430601466939044 1.0 18000 +79893 GGNBP2 gametogenetin binding protein 2 Novel U 0.0001542655706610051 -0.29430748766328957 1.0 18001 +79913 ACTR5 actin related protein 5 Novel U 0.0001541952356019696 -0.29430809407067576 1.0 18002 +84532 ACSS1 acyl-CoA synthetase short chain family member 1 Novel N 0.00015403582162552495 -0.2943094684892675 1.0 18003 +5990 RFX2 regulatory factor X2 Novel U 0.00015394741640031742 -0.2943102306921046 1.0 18004 +84148 KAT8 lysine acetyltransferase 8 Novel N 0.0001539401264362878 -0.29431029354394683 1.0 18005 +6799 SULT1A2 sulfotransferase family 1A member 2 Novel N 0.00015393142610736367 -0.2943103685555242 1.0 18006 +84129 ACAD11 acyl-CoA dehydrogenase family member 11 Novel N 0.00015387817642430762 -0.29431082765801964 1.0 18007 +148268 ZNF570 zinc finger protein 570 Novel U 0.00015374375925803564 -0.29431198656175245 1.0 18008 +224 ALDH3A2 aldehyde dehydrogenase 3 family member A2 Novel U 0.0001536966038457748 -0.2943123931213074 1.0 18009 +9389 SLC22A14 solute carrier family 22 member 14 Novel U 0.0001534844035758025 -0.2943142226471916 1.0 18010 +115353 LRRC42 leucine rich repeat containing 42 Novel U 0.0001534761946580756 -0.2943142934219718 1.0 18011 +79041 TMEM38A transmembrane protein 38A Novel U 0.00015338767973831173 -0.29431505657056184 1.0 18012 +221409 SPATS1 spermatogenesis associated serine rich 1 Novel U 0.00015331058255183604 -0.2943157212789445 1.0 18013 +80146 UXS1 UDP-glucuronate decarboxylase 1 Novel N 0.0001530576349865527 -0.2943179021155575 1.0 18014 +54742 LY6K lymphocyte antigen 6 family member K Novel U 0.00015288187120787798 -0.2943194174971479 1.0 18015 +22835 ZFP30 ZFP30 zinc finger protein Novel U 0.00015282283661688175 -0.2943199264753518 1.0 18016 +83893 SPATA16 spermatogenesis associated 16 Novel N 0.0001527719147623066 -0.2943203655080215 1.0 18017 +55270 NUDT15 nudix hydrolase 15 Novel U 0.00015266450221740398 -0.2943212915861608 1.0 18018 +339453 TMEM240 transmembrane protein 240 Novel N 0.0001526196950291647 -0.29432167790004576 1.0 18019 +80775 TMEM177 transmembrane protein 177 Novel U 0.00015240982022573648 -0.2943234873764681 1.0 18020 +84215 ZNF541 zinc finger protein 541 Novel U 0.0001519512417760015 -0.2943274410997307 1.0 18021 +729025 SLC15A5 solute carrier family 15 member 5 Novel U 0.0001518294048894747 -0.2943284915401358 1.0 18022 +26063 DECR2 2,4-dienoyl-CoA reductase 2 Novel N 0.00015146957496198153 -0.2943315938838149 1.0 18023 +79776 ZFHX4 zinc finger homeobox 4 Novel N 0.00015134918584266792 -0.2943326318420135 1.0 18024 +340260 UNCX UNC homeobox Novel U 0.00015112093483329948 -0.29433459975246806 1.0 18025 +147808 ZNF784 zinc finger protein 784 Novel U 0.00015094748700672018 -0.2943360951666272 1.0 18026 +202243 CCDC125 coiled-coil domain containing 125 Novel U 0.00015086074365230066 -0.29433684304132224 1.0 18027 +283459 GATC glutamyl-tRNA amidotransferase subunit C Novel N 0.00015058760652394688 -0.29433919794617847 1.0 18028 +729475 RAD51AP2 RAD51 associated protein 2 Novel U 0.00015046793199893584 -0.2943402297433634 1.0 18029 +153396 TMEM161B transmembrane protein 161B Novel U 0.00015039204023355515 -0.29434088405897374 1.0 18030 +339778 CIMIP2C ciliary microtubule inner protein 2C Novel U 0.00014989140817366238 -0.29434520035561257 1.0 18031 +445571 ZNG1C Zn regulated GTPase metalloprotein activator 1C Novel U 0.0001498667829376285 -0.2943454126668727 1.0 18032 +91133 L3MBTL4 L3MBTL histone methyl-lysine binding protein 4 Novel U 0.00014975610709384548 -0.2943463668801778 1.0 18033 +23245 ASTN2 astrotactin 2 Novel U 0.0001496903491377932 -0.2943469338251808 1.0 18034 +64960 MRPS15 mitochondrial ribosomal protein S15 Novel U 0.0001495487104293856 -0.29434815499084316 1.0 18035 +92292 GLYATL1 glycine-N-acyltransferase like 1 Novel N 0.00014948504890933024 -0.2943487038610156 1.0 18036 +2628 GATM glycine amidinotransferase Novel N 0.0001494791708577656 -0.29434875453978 1.0 18037 +91272 BOD1 biorientation of chromosomes in cell division 1 Novel U 0.00014938316431472361 -0.2943495822788567 1.0 18038 +221937 FOXK1 forkhead box K1 Novel N 0.00014931816918441212 -0.29435014264700926 1.0 18039 +5000 ORC4 origin recognition complex subunit 4 Novel U 0.00014921498951110464 -0.2943510322306232 1.0 18040 +55260 TMEM143 transmembrane protein 143 Novel U 0.0001490374784331319 -0.29435256267689425 1.0 18041 +116225 ZMYND19 zinc finger MYND-type containing 19 Novel U 0.00014894481472496344 -0.29435336159507014 1.0 18042 +7596 ZNF45 zinc finger protein 45 Novel U 0.0001488874618419634 -0.2943538560741017 1.0 18043 +1662 DDX10 DEAD-box helicase 10 Novel U 0.00014888223688421496 -0.29435390112209076 1.0 18044 +10610 ST6GALNAC2 ST6 N-acetylgalactosaminide alpha-2,6-sialyltransferase 2 Novel U 0.00014888179572578026 -0.29435390492562397 1.0 18045 +203054 ADCK5 aarF domain containing kinase 5 Novel U 0.00014885864158974238 -0.2943541045535095 1.0 18046 +29057 FAM156A family with sequence similarity 156 member A Novel U 0.00014863986576292698 -0.2943559907718355 1.0 18047 +51458 RHCG Rh family C glycoprotein Novel N 0.00014857141146931255 -0.294356580963837 1.0 18048 +84838 ZNF496 zinc finger protein 496 Novel U 0.00014811296947903004 -0.29436053351058794 1.0 18049 +388818 KRTAP26-1 keratin associated protein 26-1 Novel U 0.00014792442957040915 -0.29436215904406665 1.0 18050 +401498 TMEM215 transmembrane protein 215 Novel U 0.0001478692972241212 -0.2943626343783091 1.0 18051 +55527 FEM1A fem-1 homolog A Novel U 0.0001478197201229427 -0.2943630618169259 1.0 18052 +54482 TRMT13 tRNA methyltransferase 13 homolog Novel U 0.00014772912504199006 -0.2943638429000301 1.0 18053 +131377 KLHL40 kelch like family member 40 Novel U 0.0001476817618084619 -0.2943642512513565 1.0 18054 +6701 SPRR2B small proline rich protein 2B Novel U 0.00014765895529129052 -0.29436444788217836 1.0 18055 +221468 TMEM217 transmembrane protein 217 Novel U 0.00014764975780881485 -0.29436452718006173 1.0 18056 +613211 DEFB134 defensin beta 134 Novel U 0.00014764468170765278 -0.29436457094465485 1.0 18057 +51268 PIPOX pipecolic acid and sarcosine oxidase Novel N 0.0001473800202705521 -0.2943668527746911 1.0 18058 +9400 RECQL5 RecQ like helicase 5 Novel U 0.00014721798259157491 -0.29436824981404425 1.0 18059 +10574 CCT7 chaperonin containing TCP1 subunit 7 Novel U 0.00014710251783746345 -0.2943692453158709 1.0 18060 +2940 GSTA3 glutathione S-transferase alpha 3 Novel U 0.00014706414610415547 -0.2943695761452299 1.0 18061 +26355 FAM162A family with sequence similarity 162 member A Novel N 0.00014696196616956208 -0.2943704571094022 1.0 18062 +8284 KDM5D lysine demethylase 5D Novel N 0.0001467951305846945 -0.2943718955148338 1.0 18063 +144193 AMDHD1 amidohydrolase domain containing 1 Novel N 0.00014669529866666187 -0.29437275623512477 1.0 18064 +39 ACAT2 acetyl-CoA acetyltransferase 2 Novel U 0.00014644309032810438 -0.2943749306983508 1.0 18065 +5373 PMM2 phosphomannomutase 2 Novel U 0.00014641411483586923 -0.2943751805161906 1.0 18066 +7757 ZNF208 zinc finger protein 208 Novel U 0.00014632581300860422 -0.2943759418275622 1.0 18067 +10560 SLC19A2 solute carrier family 19 member 2 Novel N 0.00014629364609014238 -0.29437621916090373 1.0 18068 +26043 UBXN7 UBX domain protein 7 Novel U 0.0001462392336821629 -0.2943766882880582 1.0 18069 +586 BCAT1 branched chain amino acid transaminase 1 Novel N 0.00014619356578786545 -0.2943770820226878 1.0 18070 +6576 SLC25A1 solute carrier family 25 member 1 Novel U 0.00014613091883354385 -0.29437762214558444 1.0 18071 +115795 FANCD2OS FANCD2 opposite strand Novel U 0.00014609568855225265 -0.2943779258903042 1.0 18072 +84245 MRI1 methylthioribose-1-phosphate isomerase 1 Novel N 0.00014604383952610732 -0.2943783729167638 1.0 18073 +84765 ZNF577 zinc finger protein 577 Novel U 0.00014602688791348728 -0.29437851906838775 1.0 18074 +4696 NDUFA3 NADH:ubiquinone oxidoreductase subunit A3 Novel N 0.0001460215356518749 -0.2943785652139519 1.0 18075 +8362 H4C12 H4 clustered histone 12 Novel U 0.00014586622155133452 -0.2943799042846663 1.0 18076 +55210 ATAD3A ATPase family AAA domain containing 3A Novel U 0.00014567401300826934 -0.29438156144799016 1.0 18077 +55346 TCP11L1 t-complex 11 like 1 Novel U 0.0001456609041081394 -0.2943816744689213 1.0 18078 +5375 PMP2 peripheral myelin protein 2 Novel U 0.00014545075374335979 -0.29438348632114936 1.0 18079 +64591 TSPY2 testis specific protein Y-linked 2 Novel U 0.00014537827993204588 -0.2943841111682042 1.0 18080 +27349 MCAT malonyl-CoA-acyl carrier protein transacylase Novel N 0.00014490633429832712 -0.2943881801392424 1.0 18081 +55954 ZMAT5 zinc finger matrin-type 5 Novel N 0.00014487852040082655 -0.29438841994216736 1.0 18082 +170959 ZNF431 zinc finger protein 431 Novel U 0.00014481242372555713 -0.29438898980750394 1.0 18083 +26275 HIBCH 3-hydroxyisobutyryl-CoA hydrolase Novel N 0.00014477046053001802 -0.2943893516013529 1.0 18084 +57621 ZBTB2 zinc finger and BTB domain containing 2 Novel N 0.00014409411778231184 -0.2943951828218489 1.0 18085 +79897 RPP21 ribonuclease P/MRP subunit p21 Novel N 0.00014396559355788017 -0.29439629091843794 1.0 18086 +115111 SLC26A7 solute carrier family 26 member 7 Novel N 0.00014393989759179353 -0.2943965124612054 1.0 18087 +2585 GALK2 galactokinase 2 Novel N 0.0001439387930540702 -0.29439652198419214 1.0 18088 +7710 ZNF154 zinc finger protein 154 Novel U 0.00014372590957305827 -0.2943983574005132 1.0 18089 +113746 CIMAP1A ciliary microtubule associated protein 1A Novel U 0.00014355230711309098 -0.2943998541478741 1.0 18090 +570 BAAT bile acid-CoA:amino acid N-acyltransferase Novel N 0.00014352302263718225 -0.29440010662967675 1.0 18091 +54856 GON4L gon-4 like Novel U 0.00014348891519318 -0.2944004006936365 1.0 18092 +148198 ZNF98 zinc finger protein 98 Novel U 0.000143228889769996 -0.2944026425533774 1.0 18093 +401541 CENPP centromere protein P Novel U 0.00014318140774050494 -0.29440305192892624 1.0 18094 +728226 GGTLC3 gamma-glutamyltransferase light chain family member 3 Novel U 0.00014315298023921463 -0.2944032970221556 1.0 18095 +25884 CHRDL2 chordin like 2 Novel U 0.00014311779000106086 -0.29440360042163566 1.0 18096 +84304 NUDT22 nudix hydrolase 22 Novel U 0.00014310347088852173 -0.29440372387664837 1.0 18097 +1602 DACH1 dachshund family transcription factor 1 Novel N 0.00014286542657985528 -0.29440577622193687 1.0 18098 +345643 MCIDAS multiciliate differentiation and DNA synthesis associated cell cycle protein Novel U 0.00014269098901262161 -0.2944072801693375 1.0 18099 +9412 MED21 mediator complex subunit 21 Novel N 0.0001423805393330953 -0.2944099567716081 1.0 18100 +26071 RTL8A retrotransposon Gag like 8A Novel U 0.0001423241395335884 -0.294410443033445 1.0 18101 +114824 PNMA5 PNMA family member 5 Novel U 0.00014231850182769317 -0.2944104916400225 1.0 18102 +56751 BARHL1 BarH like homeobox 1 Novel U 0.00014229317327410892 -0.29441071001507163 1.0 18103 +100527963 PMF1-BGLAP PMF1-BGLAP readthrough Novel U 0.00014224828436833006 -0.2944110970335002 1.0 18104 +6579 SLCO1A2 solute carrier organic anion transporter family member 1A2 Novel N 0.00014221769135165828 -0.2944113607971415 1.0 18105 +114659 LRRC37B leucine rich repeat containing 37B Novel U 0.00014207397010423153 -0.2944125999178189 1.0 18106 +345895 RSPH4A radial spoke head component 4A Novel N 0.00014186663512963239 -0.2944143874966131 1.0 18107 +54965 PIGX phosphatidylinositol glycan anchor biosynthesis class X Novel U 0.00014144105522585017 -0.2944180567164961 1.0 18108 +101060684 NBPF26 NBPF member 26 Novel U 0.00014139503727476406 -0.2944184534692084 1.0 18109 +5303 PIN4 peptidylprolyl cis/trans isomerase, NIMA-interacting 4 Novel U 0.00014111764029306104 -0.2944208451012186 1.0 18110 +348751 FTCDNL1 formiminotransferase cyclodeaminase N-terminal like Novel U 0.0001410381276570152 -0.2944215306348693 1.0 18111 +286380 FOXD4L3 forkhead box D4 like 3 Novel U 0.0001410348459543176 -0.29442155892870714 1.0 18112 +8528 DDO D-aspartate oxidase Novel N 0.00014089523281295648 -0.2944227626305494 1.0 18113 +389124 IQCF5 IQ motif containing F5 Novel U 0.00014087270842707062 -0.2944229568289216 1.0 18114 +119548 PNLIPRP3 pancreatic lipase related protein 3 Novel U 0.00014084894657898883 -0.2944231616963147 1.0 18115 +201780 SLC10A4 solute carrier family 10 member 4 Novel U 0.00014049200112910664 -0.29442623917090927 1.0 18116 +286257 PAXX PAXX non-homologous end joining factor Novel N 0.0001402135532629807 -0.29442863986332385 1.0 18117 +245927 DEFB113 defensin beta 113 Novel U 0.00014021124300899154 -0.29442865978162774 1.0 18118 +51252 FAM178B family with sequence similarity 178 member B Novel U 0.00014011506771681564 -0.29442948897560794 1.0 18119 +153745 GARIN3 golgi associated RAB2 interactor family member 3 Novel U 0.00014009159848204825 -0.29442969132017843 1.0 18120 +56245 EPCIP exosomal polycystin 1 interacting protein Novel U 0.0001399785068037557 -0.29443066636207044 1.0 18121 +102723680 CT45A9 cancer/testis antigen family 45 member A9 Novel U 0.00013991993716596003 -0.29443117133159 1.0 18122 +26873 OPLAH 5-oxoprolinase, ATP-hydrolysing Novel N 0.00013978952781058538 -0.29443229568120194 1.0 18123 +10946 SF3A3 splicing factor 3a subunit 3 Novel N 0.00013965516691393583 -0.2944334540997953 1.0 18124 +4661 MYT1 myelin transcription factor 1 Novel U 0.00013946893164008958 -0.2944350597634172 1.0 18125 +286319 TUSC1 tumor suppressor candidate 1 Novel U 0.0001392861999940261 -0.29443663521983104 1.0 18126 +90557 CCDC74A coiled-coil domain containing 74A Novel U 0.00013912183053616797 -0.2944380523630692 1.0 18127 +260293 CYP4X1 cytochrome P450 family 4 subfamily X member 1 Novel U 0.00013887603199885822 -0.2944401715629475 1.0 18128 +79192 IRX1 iroquois homeobox 1 Novel N 0.00013857082753542308 -0.29444280294256786 1.0 18129 +83990 BRIP1 BRCA1 interacting helicase 1 Novel U 0.0001383490336927949 -0.2944447151813039 1.0 18130 +100288842 B3GALT9 beta-1,3-galactosyltransferase 9 Novel U 0.00013834165648263306 -0.29444477878535563 1.0 18131 +348793 WDR53 WD repeat domain 53 Novel U 0.00013827549417254394 -0.2944453492165755 1.0 18132 +79783 SUGCT succinyl-CoA:glutarate-CoA transferase Novel U 0.00013825763457948502 -0.2944455031965294 1.0 18133 +10265 IRX5 iroquois homeobox 5 Novel U 0.00013825068023787493 -0.2944455631547377 1.0 18134 +389766 C9orf153 chromosome 9 open reading frame 153 Novel U 0.00013809981731813996 -0.2944468638487314 1.0 18135 +143678 FREY1 Frey regulator of sperm-oocyte fusion 1 Novel U 0.0001380889112799197 -0.2944469578772603 1.0 18136 +282996 RBM20 RNA binding motif protein 20 Novel U 0.00013806391077191452 -0.29444717342400073 1.0 18137 +55599 RNPC3 RNA binding region (RNP1, RRM) containing 3 Novel N 0.0001379612096279095 -0.29444805888188125 1.0 18138 +124773 CHCT1 CHD1 helical C-terminal domain containing 1 Novel U 0.00013780714832963982 -0.2944493871513174 1.0 18139 +63920 FAM200C family with sequence similarity 200 member C Novel U 0.00013775302513389888 -0.29444985378497224 1.0 18140 +7520 XRCC5 X-ray repair cross complementing 5 Novel U 0.00013769671874894437 -0.29445033924141745 1.0 18141 +4250 SCGB2A2 secretoglobin family 2A member 2 Novel U 0.00013743195054160434 -0.29445262199199407 1.0 18142 +56154 TEX15 testis expressed 15, meiosis and synapsis associated Novel N 0.00013725898234566344 -0.29445411327092436 1.0 18143 +219990 OOSP2 oocyte secreted protein 2 Novel N 0.00013722444837186167 -0.29445441101229375 1.0 18144 +51702 PADI3 peptidyl arginine deiminase 3 Novel U 0.0001372047132076336 -0.29445458116284906 1.0 18145 +338596 ST8SIA6 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 6 Novel U 0.00013719455662255178 -0.294454668729822 1.0 18146 +22858 CILK1 ciliogenesis associated kinase 1 Novel U 0.00013703147562608178 -0.2944560747643398 1.0 18147 +81851 KRTAP1-1 keratin associated protein 1-1 Novel U 0.0001368271836493855 -0.294457836107336 1.0 18148 +1187 CLCNKA chloride voltage-gated channel Ka Novel N 0.00013679011846904853 -0.29445815567199457 1.0 18149 +8487 GEMIN2 gem nuclear organelle associated protein 2 Novel U 0.00013631771034742073 -0.29446222863046223 1.0 18150 +353133 LCE1C late cornified envelope 1C Novel U 0.0001360516956082013 -0.29446452212825586 1.0 18151 +256472 TMEM151A transmembrane protein 151A Novel N 0.00013597114626446674 -0.29446521660008357 1.0 18152 +222553 SLC35F1 solute carrier family 35 member F1 Novel U 0.00013590234013027765 -0.29446580982554693 1.0 18153 +207063 DHRSX dehydrogenase/reductase X-linked Novel N 0.00013586456518533633 -0.29446613550957906 1.0 18154 +6822 SULT2A1 sulfotransferase family 2A member 1 Novel N 0.0001358017483467051 -0.2944666770971664 1.0 18155 +134187 POU5F2 POU domain class 5, transcription factor 2 Novel U 0.00013579492760773204 -0.29446673590349354 1.0 18156 +91893 FDXACB1 ferredoxin-fold anticodon binding domain containing 1 Novel U 0.0001357265944589057 -0.2944673250510217 1.0 18157 +390748 PABPN1L PABPN1 like, cytoplasmic Novel U 0.00013542897388578605 -0.2944698910446572 1.0 18158 +146956 EME1 essential meiotic structure-specific endonuclease 1 Novel N 0.000135326104740466 -0.2944707779509937 1.0 18159 +51364 ZMYND10 zinc finger MYND-type containing 10 Novel N 0.00013531283101239053 -0.29447089239302104 1.0 18160 +3963 LGALS7 galectin 7 Novel U 0.0001353022165271074 -0.2944709839078696 1.0 18161 +64799 IQCH IQ motif containing H Novel U 0.0001352930973297696 -0.2944710625308024 1.0 18162 +159119 HSFY2 heat shock transcription factor Y-linked 2 Novel U 0.00013487476675266594 -0.294474669249206 1.0 18163 +138307 LCN8 lipocalin 8 Novel U 0.00013483268324195237 -0.2944750320803757 1.0 18164 +92086 GGTLC1 gamma-glutamyltransferase light chain 1 Novel U 0.000134706590334648 -0.29447611921489136 1.0 18165 +317761 C14orf39 chromosome 14 open reading frame 39 Novel U 0.00013444106524365562 -0.2944784084910876 1.0 18166 +23040 MYT1L myelin transcription factor 1 like Novel N 0.00013418366429225644 -0.29448062772343475 1.0 18167 +8909 ENDOU endonuclease, poly(U) specific Novel N 0.00013399870734180793 -0.294482222365743 1.0 18168 +60488 MRPS35 mitochondrial ribosomal protein S35 Novel U 0.0001339081933602228 -0.2944830027496332 1.0 18169 +115584 SLC5A11 solute carrier family 5 member 11 Novel N 0.00013369892319494716 -0.29448480701305013 1.0 18170 +2053 EPHX2 epoxide hydrolase 2 Novel U 0.00013351237351756016 -0.29448641538736325 1.0 18171 +157848 NKX6-3 NK6 homeobox 3 Novel N 0.00013346590107258938 -0.2944868160585829 1.0 18172 +221357 GSTA5 glutathione S-transferase alpha 5 Novel U 0.00013337321160561798 -0.29448761519884337 1.0 18173 +132989 C4orf36 chromosome 4 open reading frame 36 Novel U 0.0001332859026018978 -0.29448836795039385 1.0 18174 +2939 GSTA2 glutathione S-transferase alpha 2 Novel U 0.000133262001747141 -0.29448857401626 1.0 18175 +79788 ZNF665 zinc finger protein 665 Novel U 0.00013312786957063306 -0.29448973046289817 1.0 18176 +54763 ROPN1 rhophilin associated tail protein 1 Novel U 0.00013300544764406348 -0.29449078594733974 1.0 18177 +90737 PAGE5 PAGE family member 5 Novel U 0.00013294988735158375 -0.2944912649712036 1.0 18178 +51750 RTEL1 regulator of telomere elongation helicase 1 Novel U 0.00013294117684559478 -0.2944913400705244 1.0 18179 +54716 SLC6A20 solute carrier family 6 member 20 Novel U 0.000132938969830657 -0.2944913590987328 1.0 18180 +51146 A4GNT alpha-1,4-N-acetylglucosaminyltransferase Novel N 0.00013291911603082102 -0.2944915302721282 1.0 18181 +57232 ZNF630 zinc finger protein 630 Novel U 0.00013284580852525503 -0.2944921623070401 1.0 18182 +441376 AARD alanine and arginine rich domain containing protein Novel U 0.0001327981986758361 -0.2944925727846133 1.0 18183 +54916 TMEM260 transmembrane protein 260 Novel N 0.00013268125395463098 -0.29449358104626394 1.0 18184 +84216 TMEM117 transmembrane protein 117 Novel N 0.00013266978106621922 -0.29449367996200193 1.0 18185 +9962 SLC23A2 solute carrier family 23 member 2 Novel N 0.00013263849460556102 -0.2944939497043053 1.0 18186 +728318 KRTAP9-1 keratin associated protein 9-1 Novel U 0.0001323730701558416 -0.29449623811280323 1.0 18187 +84945 ABHD13 abhydrolase domain containing 13 Novel U 0.00013237178310528122 -0.2944962492093599 1.0 18188 +80217 CFAP43 cilia and flagella associated protein 43 Novel N 0.0001323645741857485 -0.2944963113624612 1.0 18189 +9338 TCEAL1 transcription elongation factor A like 1 Novel U 0.00013229957842210668 -0.29449687173607414 1.0 18190 +56158 TEX12 testis expressed 12 Novel U 0.00013228496209225844 -0.2944969977536037 1.0 18191 +101060200 ZNF891 zinc finger protein 891 Novel U 0.00013222291624760246 -0.29449753269391654 1.0 18192 +5407 PNLIPRP1 pancreatic lipase related protein 1 Novel U 0.00013178096418113886 -0.29450134306958325 1.0 18193 +9088 PKMYT1 protein kinase, membrane associated tyrosine/threonine 1 Novel U 0.0001317088624953893 -0.29450196470828516 1.0 18194 +9780 PIEZO1 piezo type mechanosensitive ion channel component 1 (Er blood group) Novel U 0.00013167943824574983 -0.2945022183951742 1.0 18195 +144453 BEST3 bestrophin 3 Novel U 0.00013166623849198398 -0.2945023321994176 1.0 18196 +4913 NTHL1 nth like DNA glycosylase 1 Novel U 0.00013149170885749486 -0.29450383694059395 1.0 18197 +54784 ALKBH4 alkB homolog 4, lysine demethylase Novel U 0.00013131420727655494 -0.29450536730498444 1.0 18198 +79191 IRX3 iroquois homeobox 3 Novel U 0.00013124877918085996 -0.2945059314060322 1.0 18199 +100505876 CEBPZOS CEBPZ opposite strand Novel U 0.0001308514607973794 -0.29450935696372327 1.0 18200 +5928 RBBP4 RB binding protein 4, chromatin remodeling factor Novel N 0.00013074519721520774 -0.29451027313585704 1.0 18201 +79725 THAP9 THAP domain containing 9 Novel N 0.0001303672458666098 -0.2945135317168915 1.0 18202 +84449 ZNF333 zinc finger protein 333 Novel U 0.00013030953363427148 -0.2945140292941232 1.0 18203 +54938 SARS2 seryl-tRNA synthetase 2, mitochondrial Novel N 0.00013015839056428345 -0.2945153324034868 1.0 18204 +83479 DDX59 DEAD-box helicase 59 Novel U 0.00013009484035894945 -0.2945158803139378 1.0 18205 +51000 SLC35B3 solute carrier family 35 member B3 Novel N 0.00012983682614452547 -0.2945181048336513 1.0 18206 +440023 KRTAP5-6 keratin associated protein 5-6 Novel U 0.00012976240675143674 -0.29451874645491766 1.0 18207 +84520 GON7 GON7 subunit of KEOPS complex Novel U 0.00012960051295806218 -0.29452014225373313 1.0 18208 +348158 ACSM2B acyl-CoA synthetase medium chain family member 2B Novel N 0.0001292864292630783 -0.2945228501873746 1.0 18209 +2954 GSTZ1 glutathione S-transferase zeta 1 Novel N 0.00012924603722537528 -0.29452319843518077 1.0 18210 +51108 METTL9 methyltransferase 9, His-X-His N1(pi)-histidine Novel U 0.00012924472383274194 -0.2945232097588507 1.0 18211 +143884 CWF19L2 CWF19 like cell cycle control factor 2 Novel U 0.000129083056809658 -0.2945246036025221 1.0 18212 +55967 NDUFA12 NADH:ubiquinone oxidoreductase subunit A12 Novel N 0.00012897200265814016 -0.29452556107748085 1.0 18213 +203102 ADAM32 ADAM metallopeptidase domain 32 Novel U 0.00012895432613109628 -0.2945257134790955 1.0 18214 +10647 SCGB1D2 secretoglobin family 1D member 2 Novel U 0.0001288798272878875 -0.2945263557853565 1.0 18215 +196294 IMMP1L inner mitochondrial membrane peptidase subunit 1 Novel U 0.00012863781098337163 -0.29452844237597947 1.0 18216 +55329 MNS1 meiosis specific nuclear structural 1 Novel N 0.0001285260192309358 -0.29452940621030804 1.0 18217 +347527 ARSH arylsulfatase family member H Novel U 0.00012849640393114352 -0.29452966154437304 1.0 18218 +150209 AIFM3 apoptosis inducing factor mitochondria associated 3 Novel N 0.00012845732636384158 -0.2945299984592171 1.0 18219 +79919 MAB21L4 mab-21 like 4 Novel U 0.00012823597460143155 -0.2945319068864726 1.0 18220 +401067 IQCF3 IQ motif containing F3 Novel U 0.0001282356075395671 -0.2945319100511679 1.0 18221 +23076 RRP1B ribosomal RNA processing 1B Novel U 0.00012797544134346376 -0.2945341531246099 1.0 18222 +152065 C3orf22 chromosome 3 open reading frame 22 Novel U 0.0001275837643010479 -0.2945375300443822 1.0 18223 +162282 ANKFN1 ankyrin repeat and fibronectin type III domain containing 1 Novel U 0.0001275368355789424 -0.2945379346494838 1.0 18224 +55711 FAR2 fatty acyl-CoA reductase 2 Novel N 0.00012736513589984704 -0.2945394149916496 1.0 18225 +10186 LHFPL6 LHFPL tetraspan subfamily member 6 Novel U 0.00012719609255857413 -0.29454087243168225 1.0 18226 +64434 NOM1 nucleolar protein with MIF4G domain 1 Novel U 0.0001271134013409049 -0.2945415853700925 1.0 18227 +27285 TEKT2 tektin 2 Novel U 0.0001270454841024398 -0.2945421709317686 1.0 18228 +5307 PITX1 paired like homeodomain 1 Novel U 0.00012698693066721034 -0.29454267576159454 1.0 18229 +285955 SPDYE1 speedy/RINGO cell cycle regulator family member E1 Novel U 0.00012697869651860928 -0.2945427467539077 1.0 18230 +6450 SH3BGR SH3 domain binding glutamate rich protein Novel U 0.0001267654604061477 -0.2945445852105093 1.0 18231 +1474 CST6 cystatin E/M Novel U 0.00012644018762198372 -0.2945473896130585 1.0 18232 +100129128 KHDC1L KH domain containing 1 like Novel U 0.0001264356944737669 -0.2945474283516094 1.0 18233 +353274 ZNF445 zinc finger protein 445 Novel N 0.00012626357907891955 -0.2945489122779493 1.0 18234 +90316 TGIF2LX TGFB induced factor homeobox 2 like X-linked Novel U 0.00012613064627097268 -0.2945500583839982 1.0 18235 +387718 TEX36 testis expressed 36 Novel U 0.00012610178399137246 -0.29455030722575326 1.0 18236 +56155 TEX14 testis expressed 14, intercellular bridge forming factor Novel N 0.0001258919052418632 -0.29455211673619747 1.0 18237 +402573 SPACDR sperm acrosome developmental regulator Novel N 0.0001258894554942774 -0.29455213785717255 1.0 18238 +441272 SPDYE3 speedy/RINGO cell cycle regulator family member E3 Novel U 0.00012577023744070613 -0.2945531657188002 1.0 18239 +255403 ZNF718 zinc finger protein 718 Novel U 0.00012556960116462724 -0.29455489554346276 1.0 18240 +339168 TMEM95 transmembrane protein 95 Novel U 0.00012553218709822534 -0.2945552181161104 1.0 18241 +5455 POU3F3 POU class 3 homeobox 3 Novel U 0.00012551703351224773 -0.2945553487656981 1.0 18242 +7637 ZNF84 zinc finger protein 84 Novel U 0.00012504664389565947 -0.29455940432123207 1.0 18243 +79269 DCAF10 DDB1 and CUL4 associated factor 10 Novel U 0.00012504613581719595 -0.29455940870172936 1.0 18244 +84307 ZNF397 zinc finger protein 397 Novel U 0.00012498330834253687 -0.2945599503810173 1.0 18245 +84124 ZNF394 zinc finger protein 394 Novel U 0.0001249431824441164 -0.2945602963342519 1.0 18246 +123169 LEO1 LEO1 homolog, Paf1/RNA polymerase II complex component Novel N 0.00012465618592546551 -0.2945627707305362 1.0 18247 +6534 SLC6A7 solute carrier family 6 member 7 Novel N 0.00012432790706393205 -0.29456560105056595 1.0 18248 +84808 PERM1 PPARGC1 and ESRR induced regulator, muscle 1 Novel N 0.00012408634340481192 -0.2945676837386186 1.0 18249 +7697 ZNF138 zinc finger protein 138 Novel U 0.0001237739690935994 -0.2945703769344755 1.0 18250 +388381 SPMAP1 sperm microtubule associated protein 1 Novel U 0.00012371655556737006 -0.2945708719363544 1.0 18251 +112476 PRRT2 proline rich transmembrane protein 2 Novel U 0.00012351650405243204 -0.2945725967193851 1.0 18252 +120863 DEPDC4 DEP domain containing 4 Novel U 0.00012323771899771035 -0.2945750003189366 1.0 18253 +25804 LSM4 LSM4 homolog, U6 small nuclear RNA and mRNA degradation associated Novel N 0.00012318142369476857 -0.29457548567983605 1.0 18254 +157506 RDH10 retinol dehydrogenase 10 Novel N 0.00012317728868764503 -0.2945755213306039 1.0 18255 +9245 GCNT3 glucosaminyl (N-acetyl) transferase 3, mucin type Novel N 0.00012310569622631844 -0.29457613857892845 1.0 18256 +153328 SLC25A48 solute carrier family 25 member 48 Novel U 0.0001230327066045119 -0.29457676787314374 1.0 18257 +84561 SLC12A8 solute carrier family 12 member 8 Novel U 0.0001227208465902168 -0.2945794566348898 1.0 18258 +442038 SULT1C3 sulfotransferase family 1C member 3 Novel N 0.00012269335687579972 -0.2945796936428073 1.0 18259 +121536 AEBP2 AE binding protein 2 Novel U 0.00012260513123086897 -0.29458045429735813 1.0 18260 +81616 ACSBG2 acyl-CoA synthetase bubblegum family member 2 Novel N 0.000122576951617611 -0.2945806972533726 1.0 18261 +117531 TMC1 transmembrane channel like 1 Novel N 0.00012257118526172106 -0.294580746969131 1.0 18262 +116842 LEAP2 liver enriched antimicrobial peptide 2 Novel U 0.00012255815923820136 -0.29458085927552535 1.0 18263 +158586 ZXDB zinc finger X-linked duplicated B Novel U 0.00012240652375397596 -0.29458216663033404 1.0 18264 +283461 REDIC1 regulator of DNA class I crossover intermediates 1 Novel U 0.00012234963848203225 -0.29458265707776593 1.0 18265 +9104 RGN regucalcin Novel U 0.00012229142629742906 -0.29458315896543324 1.0 18266 +440955 TMEM89 transmembrane protein 89 Novel U 0.00012221840513495158 -0.29458378853158257 1.0 18267 +56341 PRMT8 protein arginine methyltransferase 8 Novel U 0.00012182968026598275 -0.2945871399986175 1.0 18268 +54460 MRPS21 mitochondrial ribosomal protein S21 Novel U 0.00012164419849428575 -0.2945887391657741 1.0 18269 +1181 CLCN2 chloride voltage-gated channel 2 Novel U 0.00012100176010856825 -0.29459427807322147 1.0 18270 +100134934 TEN1 TEN1 subunit of CST complex Novel U 0.00012091947227728782 -0.2945949875337575 1.0 18271 +83659 TEKT1 tektin 1 Novel U 0.00012036294975878226 -0.29459978570085166 1.0 18272 +4108 MAGEA9 MAGE family member A9 Novel U 0.00011989650870819812 -0.29460380721305623 1.0 18273 +153572 IRX2 iroquois homeobox 2 Novel N 0.00011956597119789825 -0.29460665700646543 1.0 18274 +253017 TECRL trans-2,3-enoyl-CoA reductase like Novel U 0.00011924558182967332 -0.2946094193056947 1.0 18275 +353140 LCE2C late cornified envelope 2C Novel U 0.00011923839045642468 -0.2946094813075173 1.0 18276 +340547 VSIG1 V-set and immunoglobulin domain containing 1 Novel U 0.00011918320642711718 -0.294609957087355 1.0 18277 +84816 RTN4IP1 reticulon 4 interacting protein 1 Novel N 0.00011911171915950965 -0.2946105734287315 1.0 18278 +90353 CTU1 cytosolic thiouridylase subunit 1 Novel U 0.00011911107045465274 -0.2946105790216665 1.0 18279 +133923 ZNF474 zinc finger protein 474 Novel U 0.00011906660388862779 -0.29461096239881085 1.0 18280 +28965 SLC27A6 solute carrier family 27 member 6 Novel N 0.00011863115713767703 -0.29461471668763506 1.0 18281 +84528 RHOXF2 Rhox homeobox family member 2 Novel N 0.00011851365792469311 -0.2946157297299444 1.0 18282 +168002 DACT2 dishevelled binding antagonist of beta catenin 2 Novel U 0.00011829494294591113 -0.29461761542365716 1.0 18283 +140807 KRT72 keratin 72 Novel U 0.00011806506038529349 -0.29461959740084803 1.0 18284 +84246 MED10 mediator complex subunit 10 Novel U 0.0001180426539071834 -0.2946197905826554 1.0 18285 +26027 ACOT11 acyl-CoA thioesterase 11 Novel U 0.00011781564503745305 -0.29462174778376155 1.0 18286 +100527943 TGIF2-RAB5IF TGIF2-RAB5IF readthrough Novel U 0.00011764152666758618 -0.29462324897914 1.0 18287 +57677 ZFP14 ZFP14 zinc finger protein Novel U 0.00011748039810532157 -0.29462463818036666 1.0 18288 +8187 ZNF239 zinc finger protein 239 Novel N 0.00011727947522867412 -0.29462637047601176 1.0 18289 +79840 NHEJ1 non-homologous end joining factor 1 Novel U 0.00011724454936636339 -0.2946266715961241 1.0 18290 +3229 HOXC13 homeobox C13 Novel N 0.00011681773176996388 -0.29463035148701466 1.0 18291 +148418 SAMD13 sterile alpha motif domain containing 13 Novel U 0.0001166496047791852 -0.2946318010265534 1.0 18292 +146279 TEKT5 tektin 5 Novel U 0.00011662748721040327 -0.29463199171747284 1.0 18293 +198437 LKAAEAR1 LKAAEAR motif containing 1 Novel U 0.00011658521732221563 -0.29463235615553207 1.0 18294 +9831 ZNF623 zinc finger protein 623 Novel U 0.00011647865196536919 -0.29463327492947494 1.0 18295 +8688 KRT37 keratin 37 Novel U 0.00011642429279049356 -0.2946337435976698 1.0 18296 +79627 OGFRL1 opioid growth factor receptor like 1 Novel U 0.00011599058850232868 -0.2946374828635123 1.0 18297 +3010 H1-6 H1.6 linker histone, cluster member Novel U 0.00011591592727383008 -0.2946381265698097 1.0 18298 +644414 DEFB131A defensin beta 131A Novel U 0.00011575678893325065 -0.29463949861195315 1.0 18299 +10402 ST3GAL6 ST3 beta-galactoside alpha-2,3-sialyltransferase 6 Novel N 0.00011544285434829859 -0.29464220526001345 1.0 18300 +445329 SULT1A4 sulfotransferase family 1A member 4 Novel N 0.00011536429224416753 -0.29464288259846855 1.0 18301 +81872 KRTAP2-1 keratin associated protein 2-1 Novel U 0.00011509434800413811 -0.29464520997521737 1.0 18302 +10951 CBX1 chromobox 1 Novel N 0.00011496634765342322 -0.2946463135551273 1.0 18303 +58489 ABHD17C abhydrolase domain containing 17C, depalmitoylase Novel N 0.00011486566520346854 -0.29464718160844455 1.0 18304 +159686 CFAP58 cilia and flagella associated protein 58 Novel U 0.00011448715304108117 -0.2946504450246441 1.0 18305 +245930 DEFB116 defensin beta 116 Novel U 0.00011425527508638387 -0.29465244420551295 1.0 18306 +285335 SLC9C1 solute carrier family 9 member C1 Novel U 0.00011418719397783043 -0.2946530311800269 1.0 18307 +256126 SYCE2 synaptonemal complex central element protein 2 Novel U 0.00011411593268987247 -0.29465364557307583 1.0 18308 +162681 C18orf54 chromosome 18 open reading frame 54 Novel U 0.00011389330030878319 -0.2946555650414343 1.0 18309 +64431 ACTR6 actin related protein 6 Novel U 0.00011387574309765961 -0.29465571641434357 1.0 18310 +92595 ZNF764 zinc finger protein 764 Novel U 0.00011384299073820824 -0.29465599879517834 1.0 18311 +27112 NALF2 NALCN channel auxiliary factor 2 Novel U 0.00011379052643390946 -0.2946564511263781 1.0 18312 +10263 CDK2AP2 cyclin dependent kinase 2 associated protein 2 Novel N 0.00011353056302944188 -0.2946586924514127 1.0 18313 +56301 SLC7A10 solute carrier family 7 member 10 Novel N 0.00011349652262613457 -0.29465898593736806 1.0 18314 +100529239 RPS10-NUDT3 RPS10-NUDT3 readthrough Novel U 0.00011347328616105101 -0.2946591862750695 1.0 18315 +199834 LCE4A late cornified envelope 4A Novel U 0.0001132904568225736 -0.2946607625737574 1.0 18316 +2968 GTF2H4 general transcription factor IIH subunit 4 Novel N 0.00011317978761910555 -0.29466171672981173 1.0 18317 +26240 FAM50B family with sequence similarity 50 member B Novel U 0.00011311132676974018 -0.2946623069783349 1.0 18318 +203076 C8orf74 chromosome 8 open reading frame 74 Novel U 0.00011286711221739475 -0.2946644125215789 1.0 18319 +25895 EEF1AKMT3 EEF1A lysine methyltransferase 3 Novel N 0.00011281537789183227 -0.2946648585591251 1.0 18320 +7746 ZSCAN9 zinc finger and SCAN domain containing 9 Novel U 0.0001127394268875766 -0.2946655133854749 1.0 18321 +284257 BOD1L2 biorientation of chromosomes in cell division 1 like 2 Novel U 0.00011269724926424364 -0.2946658770280548 1.0 18322 +51186 TCEAL9 transcription elongation factor A like 9 Novel U 0.00011267520577363258 -0.29466606708029486 1.0 18323 +550643 NBDY negative regulator of P-body association Novel U 0.00011252426647790769 -0.2946673684327791 1.0 18324 +85291 KRTAP4-2 keratin associated protein 4-2 Novel U 0.00011245524391479981 -0.2946679635242264 1.0 18325 +245909 DEFB106A defensin beta 106A Novel N 0.00011237380394896907 -0.2946686656747257 1.0 18326 +57507 ZNF608 zinc finger protein 608 Novel U 0.00011232527404115304 -0.2946690840847612 1.0 18327 +6783 SULT1E1 sulfotransferase family 1E member 1 Novel N 0.00011232046785256227 -0.29466912552225066 1.0 18328 +7753 ZNF202 zinc finger protein 202 Novel N 0.00011223227363887158 -0.29466988590581095 1.0 18329 +65982 ZSCAN18 zinc finger and SCAN domain containing 18 Novel U 0.0001121467452714227 -0.2946706233052596 1.0 18330 +55726 INTS13 integrator complex subunit 13 Novel N 0.00011196397781358695 -0.2946721990704316 1.0 18331 +55718 POLR3E RNA polymerase III subunit E Novel U 0.00011187399503888353 -0.2946729748744184 1.0 18332 +126306 JSRP1 junctional sarcoplasmic reticulum protein 1 Novel N 0.00011174795594593294 -0.2946740615449632 1.0 18333 +353333 KRTAP10-10 keratin associated protein 10-10 Novel U 0.00011167636094817092 -0.29467467881515613 1.0 18334 +113177 IZUMO4 IZUMO family member 4 Novel U 0.00011132512308236751 -0.2946777070807049 1.0 18335 +3851 KRT4 keratin 4 Novel U 0.00011126335560577926 -0.2946782396210133 1.0 18336 +730755 KRTAP2-3 keratin associated protein 2-3 Novel U 0.00011100169996854488 -0.29468049553596165 1.0 18337 +91975 ZNF300 zinc finger protein 300 Novel N 0.0001109118703829437 -0.29468127001919886 1.0 18338 +151790 WDR49 WD repeat domain 49 Novel U 0.00011080269525853526 -0.2946822112937601 1.0 18339 +1580 CYP4B1 cytochrome P450 family 4 subfamily B member 1 Novel N 0.00011068399210431047 -0.29468323471608293 1.0 18340 +2766 GMPR guanosine monophosphate reductase Novel U 0.00011062242769300414 -0.29468376550562453 1.0 18341 +149473 CCDC24 coiled-coil domain containing 24 Novel U 0.00011040191241434077 -0.2946856667209728 1.0 18342 +1160 CKMT2 creatine kinase, mitochondrial 2 Novel N 0.00011032994607413352 -0.2946862871927668 1.0 18343 +3151 HMGN2 high mobility group nucleosomal binding domain 2 Novel N 0.00011012702408718857 -0.29468803672413 1.0 18344 +63950 DMRTA2 DMRT like family A2 Novel U 0.00010993627215370941 -0.2946896813290111 1.0 18345 +28968 SLC6A16 solute carrier family 6 member 16 Novel U 0.00010931896766114083 -0.294695003539712 1.0 18346 +162967 ZNF320 zinc finger protein 320 Novel U 0.00010929853540033845 -0.2946951797004211 1.0 18347 +255394 TCP11L2 t-complex 11 like 2 Novel U 0.0001092569289400802 -0.2946955384186074 1.0 18348 +55520 ELAC1 elaC ribonuclease Z 1 Novel U 0.00010900909963770091 -0.29469767512712164 1.0 18349 +64849 SLC13A3 solute carrier family 13 member 3 Novel N 0.00010898383289960256 -0.29469789296921656 1.0 18350 +91851 CHRDL1 chordin like 1 Novel U 0.00010897068893456682 -0.2946980062924666 1.0 18351 +134288 TMEM174 transmembrane protein 174 Novel U 0.00010877139798144884 -0.29469972451816573 1.0 18352 +94026 POM121L2 POM121 transmembrane nucleoporin like 2 Novel U 0.00010873785285226346 -0.2947000137340189 1.0 18353 +54996 MTARC2 mitochondrial amidoxime reducing component 2 Novel N 0.00010871699242857841 -0.29470019358621746 1.0 18354 +128876 FAM83C family with sequence similarity 83 member C Novel U 0.00010865911601764473 -0.2947006925789469 1.0 18355 +84942 WDR73 WD repeat domain 73 Novel U 0.00010861460595418256 -0.29470107633111275 1.0 18356 +10884 MRPS30 mitochondrial ribosomal protein S30 Novel N 0.00010841444699211247 -0.2947028020405198 1.0 18357 +222642 TSPO2 translocator protein 2 Novel U 0.00010831549695749274 -0.2947036551574814 1.0 18358 +65003 MRPL11 mitochondrial ribosomal protein L11 Novel U 0.00010815761900666915 -0.29470501633292956 1.0 18359 +7576 ZNF28 zinc finger protein 28 Novel U 0.00010809645862129531 -0.2947055436390831 1.0 18360 +79953 SYNDIG1 synapse differentiation inducing 1 Novel U 0.00010797067768004363 -0.29470662808392284 1.0 18361 +81888 HYI hydroxypyruvate isomerase (putative) Novel U 0.00010795865728446084 -0.29470673172010037 1.0 18362 +494143 CHAC2 ChaC glutathione specific gamma-glutamylcyclotransferase 2 Novel N 0.00010791233588188061 -0.2947071310890787 1.0 18363 +55286 C4orf19 chromosome 4 open reading frame 19 Novel U 0.0001076416182501048 -0.29470946513377483 1.0 18364 +338879 RNASE10 ribonuclease A family member 10 (inactive) Novel U 0.00010756212847090512 -0.2947101504703608 1.0 18365 +8671 SLC4A4 solute carrier family 4 member 4 Novel U 0.00010753020450013462 -0.29471042570908157 1.0 18366 +728279 KRTAP2-2 keratin associated protein 2-2 Novel U 0.00010744733699404376 -0.2947111401673967 1.0 18367 +5319 PLA2G1B phospholipase A2 group IB Novel U 0.00010738564491756356 -0.29471167205762844 1.0 18368 +375612 LHFPL3 LHFPL tetraspan subfamily member 3 Novel U 0.0001073003467102995 -0.29471240747270633 1.0 18369 +200232 FAM209A family with sequence similarity 209 member A Novel U 0.00010712484706608028 -0.2947139205770102 1.0 18370 +114792 KLHL32 kelch like family member 32 Novel U 0.00010711845436933587 -0.294713975692888 1.0 18371 +6884 TAF13 TATA-box binding protein associated factor 13 Novel N 0.00010668737575009844 -0.2947176923210154 1.0 18372 +57150 SMIM8 small integral membrane protein 8 Novel U 0.00010644671109888669 -0.2947197672580966 1.0 18373 +340204 CLPSL1 colipase like 1 Novel U 0.00010598215687654686 -0.2947237725026446 1.0 18374 +100129216 DEFB131B defensin beta 131B Novel U 0.00010586777492978234 -0.29472475866883713 1.0 18375 +353131 LCE1A late cornified envelope 1A Novel U 0.00010585497720261884 -0.29472486900693 1.0 18376 +745 MYRF myelin regulatory factor Novel U 0.00010575724004282818 -0.2947257116668555 1.0 18377 +145173 B3GLCT beta 3-glucosyltransferase Novel U 0.00010549156003482609 -0.2947280022786989 1.0 18378 +1836 SLC26A2 solute carrier family 26 member 2 Novel U 0.00010524771880385981 -0.29473010460328003 1.0 18379 +146849 CCDC42 coiled-coil domain containing 42 Novel U 0.00010512793037696567 -0.2947311373824921 1.0 18380 +51287 COA4 cytochrome c oxidase assembly factor 4 homolog Novel U 0.00010509856208633074 -0.29473139058691966 1.0 18381 +389558 FAM180A family with sequence similarity 180 member A Novel U 0.00010481777568354036 -0.29473381144148275 1.0 18382 +138724 SPATA31G1 SPATA31 subfamily G member 1 Novel U 0.00010467221505678186 -0.29473506642072667 1.0 18383 +11128 POLR3A RNA polymerase III subunit A Novel U 0.00010448983613371993 -0.29473663883607054 1.0 18384 +100507055 LRCOL1 leucine rich colipase like 1 Novel U 0.00010409158439692766 -0.29474007244084865 1.0 18385 +196074 METTL15 methyltransferase 15, mitochondrial 12S rRNA N4-cytidine Novel N 0.00010395285270548022 -0.2947412685430991 1.0 18386 +6699 SPRR1B small proline rich protein 1B Novel N 0.00010380841011687754 -0.29474251388295974 1.0 18387 +89944 GLB1L2 galactosidase beta 1 like 2 Novel U 0.00010371992590108485 -0.29474327676682954 1.0 18388 +326340 ZAR1 zygote arrest 1 Novel U 0.00010370057798390972 -0.29474344357865917 1.0 18389 +5283 PIGH phosphatidylinositol glycan anchor biosynthesis class H Novel U 0.00010366732066152005 -0.2947437303131301 1.0 18390 +643161 FAM25A family with sequence similarity 25 member A Novel U 0.00010349907373851069 -0.294745180886688 1.0 18391 +284439 SLC25A42 solute carrier family 25 member 42 Novel U 0.00010349421119927895 -0.29474522281001536 1.0 18392 +51298 SPMAP2 sperm microtubule associated protein 2 Novel N 0.0001034418234950724 -0.29474567448079253 1.0 18393 +728464 METTL24 methyltransferase like 24 Novel U 0.00010342784730920007 -0.29474579497919634 1.0 18394 +245911 DEFB108B defensin beta 108B Novel U 0.00010338478588013741 -0.29474616624167915 1.0 18395 +2519 FUCA2 alpha-L-fucosidase 2 Novel N 0.00010321374607804958 -0.2947476408945869 1.0 18396 +78994 PRR14 proline rich 14 Novel U 0.00010305174741954036 -0.2947490375975175 1.0 18397 +401612 SLC25A53 solute carrier family 25 member 53 Novel U 0.0001027696307044568 -0.29475146992162665 1.0 18398 +60625 DHX35 DEAH-box helicase 35 Novel N 0.00010248057816548873 -0.29475396204428983 1.0 18399 +93081 TEX30 testis expressed 30 Novel U 0.00010242895794335383 -0.29475440709807116 1.0 18400 +5509 PPP1R3D protein phosphatase 1 regulatory subunit 3D Novel U 0.00010212099501541908 -0.29475706226032944 1.0 18401 +6700 SPRR2A small proline rich protein 2A Novel N 0.00010209202558946055 -0.2947573120258677 1.0 18402 +6123 RPL3L ribosomal protein L3 like Novel U 0.00010202050530736483 -0.29475792865188494 1.0 18403 +494188 FBXO47 F-box protein 47 Novel U 0.00010200506227665545 -0.2947580617969767 1.0 18404 +9552 SPAG7 sperm associated antigen 7 Novel U 0.00010198276888795981 -0.2947582540037617 1.0 18405 +124995 MRPL10 mitochondrial ribosomal protein L10 Novel U 0.0001019042014622255 -0.294758931388098 1.0 18406 +113451 AZIN2 antizyme inhibitor 2 Novel U 0.00010174496514065836 -0.29476030427500366 1.0 18407 +245929 DEFB115 defensin beta 115 Novel U 0.00010173013736745907 -0.2947604321155331 1.0 18408 +29070 CFAP263 cilia and flagella associated protein 263 Novel N 0.00010172808870253619 -0.2947604497784961 1.0 18409 +80741 LY6G5C lymphocyte antigen 6 family member G5C Novel U 0.00010172016087436125 -0.294760518129808 1.0 18410 +6626 SNRPA small nuclear ribonucleoprotein polypeptide A Novel N 0.0001015821952561496 -0.29476170762720916 1.0 18411 +92342 METTL18 methyltransferase 18, RPL3 N3(tau)-histidine Novel N 0.00010155090743288998 -0.2947619773812604 1.0 18412 +57665 RDH14 retinol dehydrogenase 14 Novel U 0.00010154044911370622 -0.2947620675496926 1.0 18413 +54729 NKX1-1 NK1 homeobox 1 Novel U 0.00010130989985837874 -0.29476405527492155 1.0 18414 +26609 VCX variable charge X-linked Novel N 0.00010107950958898632 -0.2947660416294223 1.0 18415 +144715 RAD9B RAD9 checkpoint clamp component B Novel U 0.00010106530051286978 -0.29476616413573464 1.0 18416 +101928601 MEI4 meiotic double-stranded break formation protein 4 Novel U 0.00010090411964946606 -0.29476755378788577 1.0 18417 +100134938 UPK3BL1 uroplakin 3B like 1 Novel U 0.00010083949272759987 -0.29476811098145755 1.0 18418 +653657 MBD3L3 methyl-CpG binding domain protein 3 like 3 Novel U 0.0001007122718669708 -0.2947692078408422 1.0 18419 +51077 FCF1 FCF1 rRNA-processing protein Novel N 0.00010052069842135175 -0.2947708595285499 1.0 18420 +84080 ENKD1 enkurin domain containing 1 Novel U 0.0001005107088769169 -0.29477094565534945 1.0 18421 +128602 CIMIP1 ciliary microtubule inner protein 1 Novel U 0.00010044372698206567 -0.2947715231527787 1.0 18422 +9556 ATP5MJ ATP synthase membrane subunit j Novel U 0.00010011693764975019 -0.2947743406305427 1.0 18423 +503497 MS4A13 membrane spanning 4-domains A13 Novel U 9.998918932453296e-05 -0.2947754420375658 1.0 18424 +127670 TEDDM1 transmembrane epididymal protein 1 Novel U 9.996217172713081e-05 -0.29477567497503465 1.0 18425 +4999 ORC2 origin recognition complex subunit 2 Novel N 9.994343677969202e-05 -0.29477583650202643 1.0 18426 +91392 ZNF502 zinc finger protein 502 Novel U 9.985628807857056e-05 -0.2947765878714969 1.0 18427 +283847 TERB1 telomere repeat binding bouquet formation protein 1 Novel N 9.966400093003349e-05 -0.2947782457125331 1.0 18428 +167681 PRSS35 serine protease 35 Novel U 9.966130068945645e-05 -0.29477826899318227 1.0 18429 +5425 POLD2 DNA polymerase delta 2, accessory subunit Novel N 9.966119907332605e-05 -0.2947782698692854 1.0 18430 +56673 C11orf16 chromosome 11 open reading frame 16 Novel U 9.941593140783531e-05 -0.29478038449214916 1.0 18431 +30010 NXPH1 neurexophilin 1 Novel U 9.917110407684635e-05 -0.2947824953185834 1.0 18432 +280636 SELENOH selenoprotein H Novel U 9.900595476788635e-05 -0.29478391918545943 1.0 18433 +11222 MRPL3 mitochondrial ribosomal protein L3 Novel N 9.874507000764044e-05 -0.2947861684541419 1.0 18434 +171483 FAM9B family with sequence similarity 9 member B Novel U 9.862370370524266e-05 -0.29478721483731446 1.0 18435 +646799 ZAR1L zygote arrest 1 like Novel U 9.795375118455689e-05 -0.2947929909632258 1.0 18436 +386685 KRTAP10-12 keratin associated protein 10-12 Novel U 9.787311992974324e-05 -0.2947936861412658 1.0 18437 +64745 METTL17 methyltransferase like 17 Novel U 9.762302059092324e-05 -0.2947958424213405 1.0 18438 +133015 PACRGL parkin coregulated like Novel U 9.742352845305683e-05 -0.294797562381593 1.0 18439 +337969 KRTAP19-2 keratin associated protein 19-2 Novel U 9.720907870296804e-05 -0.29479941130180737 1.0 18440 +9443 MED7 mediator complex subunit 7 Novel N 9.709379192890098e-05 -0.2948004052691444 1.0 18441 +22917 ZP1 zona pellucida glycoprotein 1 Novel N 9.687221097130908e-05 -0.2948023156724508 1.0 18442 +85438 CABS1 calcium binding protein, spermatid associated 1 Novel U 9.668637276329144e-05 -0.29480391791269245 1.0 18443 +54870 QRICH1 glutamine rich 1 Novel U 9.663441302071253e-05 -0.2948043658937153 1.0 18444 +162968 ZNF497 zinc finger protein 497 Novel U 9.651916203010083e-05 -0.2948053595525383 1.0 18445 +7620 ZNF69 zinc finger protein 69 Novel U 9.650520560557452e-05 -0.29480547988056577 1.0 18446 +9057 SLC7A6 solute carrier family 7 member 6 Novel N 9.647929468688654e-05 -0.2948057032765889 1.0 18447 +10842 PPP1R17 protein phosphatase 1 regulatory subunit 17 Novel U 9.646052311372143e-05 -0.29480586511935664 1.0 18448 +7565 ZNF17 zinc finger protein 17 Novel U 9.629478208865333e-05 -0.29480729408782813 1.0 18449 +386679 KRTAP10-2 keratin associated protein 10-2 Novel U 9.619439014954464e-05 -0.29480815963644963 1.0 18450 +148103 ZNF599 zinc finger protein 599 Novel U 9.6164927024609e-05 -0.2948084136585096 1.0 18451 +766 CA7 carbonic anhydrase 7 Novel U 9.615819003676512e-05 -0.29480847174276015 1.0 18452 +117285 DEFB118 defensin beta 118 Novel U 9.614027354463083e-05 -0.2948086262132804 1.0 18453 +254173 TTLL10 tubulin tyrosine ligase like 10 Novel N 9.605618878428793e-05 -0.29480935116638973 1.0 18454 +54841 BIVM basic, immunoglobulin-like variable motif containing Novel U 9.596226633395173e-05 -0.29481016093705603 1.0 18455 +6715 SRD5A1 steroid 5 alpha-reductase 1 Novel N 9.574391019876145e-05 -0.2948120435369291 1.0 18456 +51053 GMNN geminin DNA replication inhibitor Novel U 9.535670242663083e-05 -0.2948153819240186 1.0 18457 +79696 ZC2HC1C zinc finger C2HC-type containing 1C Novel U 9.533515329308342e-05 -0.29481556771406314 1.0 18458 +126017 ZNF813 zinc finger protein 813 Novel U 9.501513732093904e-05 -0.2948183267939855 1.0 18459 +22889 KHDC4 KH domain containing 4, pre-mRNA splicing factor Novel N 9.478076021079171e-05 -0.29482034752180897 1.0 18460 +64180 DPEP3 dipeptidase 3 Novel U 9.47685023103763e-05 -0.2948204532056806 1.0 18461 +51011 FAHD2A fumarylacetoacetate hydrolase domain containing 2A Novel U 9.457668349920767e-05 -0.29482210700885514 1.0 18462 +220869 ZNG1E Zn regulated GTPase metalloprotein activator 1E Novel U 9.446367531899142e-05 -0.2948230813308523 1.0 18463 +390110 ACCSL 1-aminocyclopropane-1-carboxylate synthase homolog (inactive) like Novel U 9.43784288271947e-05 -0.29482381630005516 1.0 18464 +114827 FHAD1 forkhead associated phosphopeptide binding domain 1 Novel U 9.432737049088834e-05 -0.29482425650942856 1.0 18465 +389151 PRR23B proline rich 23B Novel U 9.421321694700683e-05 -0.29482524070640126 1.0 18466 +100033411 DUXB double homeobox B Novel U 9.420499926446986e-05 -0.2948253115567489 1.0 18467 +64757 MTARC1 mitochondrial amidoxime reducing component 1 Novel N 9.41770783918239e-05 -0.29482555228198093 1.0 18468 +122664 TPPP2 tubulin polymerization promoting protein family member 2 Novel U 9.412074647101697e-05 -0.29482603795858836 1.0 18469 +90736 VCF2 VCP nuclear cofactor family member 2 Novel U 9.402420810618102e-05 -0.2948268702828701 1.0 18470 +317772 H2AC21 H2A clustered histone 21 Novel U 9.401964498075634e-05 -0.2948269096247431 1.0 18471 +140701 ABHD16B abhydrolase domain containing 16B Novel U 9.38834577594841e-05 -0.29482808378934927 1.0 18472 +8614 STC2 stanniocalcin 2 Novel N 9.371028815863639e-05 -0.2948295768047311 1.0 18473 +132141 IQCF1 IQ motif containing F1 Novel U 9.362793371864173e-05 -0.29483028683954715 1.0 18474 +338661 TMEM225 transmembrane protein 225 Novel U 9.361464236347294e-05 -0.2948304014335499 1.0 18475 +56936 CCDC177 coiled-coil domain containing 177 Novel U 9.342409317427014e-05 -0.2948320442904318 1.0 18476 +189 AGXT alanine--glyoxylate aminotransferase Novel U 9.32351437579774e-05 -0.2948336733545605 1.0 18477 +728591 CCDC169 coiled-coil domain containing 169 Novel U 9.30496797031402e-05 -0.2948352723689678 1.0 18478 +503835 DUXA double homeobox A Novel U 9.298343964957262e-05 -0.2948358434704682 1.0 18479 +140873 C20orf173 chromosome 20 open reading frame 173 Novel U 9.288058426653421e-05 -0.29483673025815055 1.0 18480 +124975 GGT6 gamma-glutamyltransferase 6 Novel U 9.266515988210351e-05 -0.2948385875813644 1.0 18481 +9985 REC8 REC8 meiotic recombination protein Novel U 9.26311249844246e-05 -0.29483888101985195 1.0 18482 +170958 ZNF525 zinc finger protein 525 Novel U 9.252524068535508e-05 -0.29483979392192267 1.0 18483 +317719 KLHL10 kelch like family member 10 Novel N 9.23708053675797e-05 -0.2948411254160407 1.0 18484 +84457 PHYHIPL phytanoyl-CoA 2-hydroxylase interacting protein like Novel U 9.234005518562595e-05 -0.294841390534713 1.0 18485 +55786 ZNF415 zinc finger protein 415 Novel U 9.228797647735787e-05 -0.29484183954142157 1.0 18486 +653333 FAM86B2 family with sequence similarity 86 member B2 Novel U 9.219160552626534e-05 -0.29484267042231316 1.0 18487 +11270 NRM nurim Novel U 9.188118211860372e-05 -0.2948453467980758 1.0 18488 +91687 CENPL centromere protein L Novel U 9.150360154458873e-05 -0.29484860218240505 1.0 18489 +93010 B3GNT7 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 7 Novel N 9.132054148026667e-05 -0.29485018047034073 1.0 18490 +283933 ZNF843 zinc finger protein 843 Novel U 9.129706667753797e-05 -0.29485038286291654 1.0 18491 +126070 ZNF440 zinc finger protein 440 Novel U 9.126047627917284e-05 -0.29485069833415006 1.0 18492 +150483 TEKT4 tektin 4 Novel U 9.125939221088286e-05 -0.2948507076806555 1.0 18493 +136051 ZNF786 zinc finger protein 786 Novel U 9.114670746651141e-05 -0.2948516792140877 1.0 18494 +399967 PATE2 prostate and testis expressed 2 Novel U 9.113883351699397e-05 -0.2948517471008743 1.0 18495 +3030 HADHA hydroxyacyl-CoA dehydrogenase trifunctional multienzyme complex subunit alpha Novel U 9.101647367175851e-05 -0.2948528020500696 1.0 18496 +388558 ZNF808 zinc finger protein 808 Novel U 9.09152252289474e-05 -0.2948536749832043 1.0 18497 +84138 SLC7A6OS solute carrier family 7 member 6 opposite strand Novel N 9.080190113824257e-05 -0.29485465202888517 1.0 18498 +374887 YJEFN3 YjeF N-terminal domain containing 3 Novel U 9.073343868977061e-05 -0.29485524229119536 1.0 18499 +6706 SPRR2G small proline rich protein 2G Novel U 9.055228993349815e-05 -0.29485680410041704 1.0 18500 +254295 PHYHD1 phytanoyl-CoA dioxygenase domain containing 1 Novel U 9.040437707102246e-05 -0.2948580793599186 1.0 18501 +7564 ZNF16 zinc finger protein 16 Novel U 9.035731708854627e-05 -0.29485848509670703 1.0 18502 +118490 MSS51 MSS51 mitochondrial translational activator Novel U 9.027774776213771e-05 -0.2948591711191248 1.0 18503 +1748 DLX4 distal-less homeobox 4 Novel U 9.025202100206597e-05 -0.2948593929273886 1.0 18504 +79673 ZNF329 zinc finger protein 329 Novel U 9.017377566301664e-05 -0.29486006753479194 1.0 18505 +115811 IQCD IQ motif containing D Novel U 9.01705711135584e-05 -0.29486009516343814 1.0 18506 +254910 LCE5A late cornified envelope 5A Novel U 9.015645854227885e-05 -0.29486021683771524 1.0 18507 +53947 A4GALT alpha 1,4-galactosyltransferase (P1PK blood group) Novel U 9.010621444668106e-05 -0.29486065002695405 1.0 18508 +51292 GMPR2 guanosine monophosphate reductase 2 Novel N 8.984758011829307e-05 -0.2948628798931008 1.0 18509 +284422 SMIM24 small integral membrane protein 24 Novel U 8.981472394807546e-05 -0.2948631631689603 1.0 18510 +284067 CFAP97D1 CFAP97 domain containing 1 Novel U 8.979440787806998e-05 -0.29486333832790773 1.0 18511 +7766 ZNF223 zinc finger protein 223 Novel U 8.970977307209292e-05 -0.2948640680233424 1.0 18512 +256281 NUDT14 nudix hydrolase 14 Novel N 8.967859046518464e-05 -0.2948643368702505 1.0 18513 +91749 MFSD4B major facilitator superfamily domain containing 4B Novel U 8.94720176085136e-05 -0.29486611787829686 1.0 18514 +5991 RFX3 regulatory factor X3 Novel N 8.932243783434043e-05 -0.29486740750940166 1.0 18515 +112487 DTD2 D-aminoacyl-tRNA deacylase 2 Novel N 8.931478689237143e-05 -0.29486747347348535 1.0 18516 +23641 LDOC1 LDOC1 regulator of NFKB signaling Novel U 8.91636953800081e-05 -0.2948687761383349 1.0 18517 +353332 KRTAP12-1 keratin associated protein 12-1 Novel U 8.885155205663141e-05 -0.29487146734268527 1.0 18518 +387103 CENPW centromere protein W Novel U 8.876040881322414e-05 -0.29487225315187865 1.0 18519 +116540 MRPL53 mitochondrial ribosomal protein L53 Novel U 8.865924099002994e-05 -0.29487312538993565 1.0 18520 +206412 C6orf163 chromosome 6 open reading frame 163 Novel U 8.864666906881111e-05 -0.29487323378119873 1.0 18521 +647309 GMNC geminin coiled-coil domain containing Novel U 8.857886767146052e-05 -0.2948738183441281 1.0 18522 +10194 TSHZ1 teashirt zinc finger homeobox 1 Novel U 8.851790505308758e-05 -0.294874343945195 1.0 18523 +8339 H2BC8 H2B clustered histone 8 Novel N 8.843979797590183e-05 -0.2948750173605468 1.0 18524 +118924 FRA10AC1 FRA10A associated CGG repeat 1 Novel U 8.835005338842508e-05 -0.29487579111095613 1.0 18525 +386681 KRTAP10-8 keratin associated protein 10-8 Novel U 8.820727549093316e-05 -0.29487702209835864 1.0 18526 +374900 ZNF568 zinc finger protein 568 Novel U 8.810789943949305e-05 -0.2948778788883072 1.0 18527 +5891 MOK MOK protein kinase Novel N 8.805830468360943e-05 -0.29487830647913743 1.0 18528 +153201 SLC36A2 solute carrier family 36 member 2 Novel N 8.801312166499936e-05 -0.29487869603331696 1.0 18529 +10407 SPAG11B sperm associated antigen 11B Novel N 8.799325562040793e-05 -0.29487886731228286 1.0 18530 +3270 HRC histidine rich calcium binding protein Novel N 8.756030314247757e-05 -0.2948826000962473 1.0 18531 +27146 FAM184B family with sequence similarity 184 member B Novel U 8.748246241990059e-05 -0.294883271215171 1.0 18532 +157378 TMEM65 transmembrane protein 65 Novel U 8.741443005885795e-05 -0.2948838577693988 1.0 18533 +131870 NUDT16 nudix hydrolase 16 Novel N 8.741131605393543e-05 -0.2948838846173977 1.0 18534 +122046 TEX26 testis expressed 26 Novel U 8.704544390156427e-05 -0.2948870390552934 1.0 18535 +64850 ETNPPL ethanolamine-phosphate phospho-lyase Novel U 8.68899452360654e-05 -0.2948883797172705 1.0 18536 +728656 DMRTC1B DMRT like family C1B Novel U 8.662515437817561e-05 -0.29489066266313324 1.0 18537 +81492 RSPH6A radial spoke head 6 homolog A Novel U 8.644872796710005e-05 -0.29489218375773774 1.0 18538 +54814 QPCTL glutaminyl-peptide cyclotransferase like Novel N 8.642249028089594e-05 -0.29489240997105054 1.0 18539 +147719 LYPD4 LY6/PLAUR domain containing 4 Novel U 8.626543937729869e-05 -0.29489376401595024 1.0 18540 +285555 STPG2 sperm tail PG-rich repeat containing 2 Novel U 8.610815093426659e-05 -0.29489512010884233 1.0 18541 +8360 H4C4 H4 clustered histone 4 Novel U 8.598388907228349e-05 -0.2948961914566448 1.0 18542 +55798 METTL2B methyltransferase 2B, tRNA N3-cytidine Novel N 8.567290741353094e-05 -0.2948988726454778 1.0 18543 +84190 METTL25 methyltransferase like 25 Novel U 8.565234062535278e-05 -0.2948990499660407 1.0 18544 +389860 PAGE2B PAGE family member 2B Novel U 8.562104837658183e-05 -0.29489931975824746 1.0 18545 +353288 KRT26 keratin 26 Novel U 8.528225140278185e-05 -0.29490224076222704 1.0 18546 +54819 ZCCHC10 zinc finger CCHC-type containing 10 Novel U 8.510962405752454e-05 -0.2949037291024469 1.0 18547 +284723 SLC25A34 solute carrier family 25 member 34 Novel U 8.5054404766532e-05 -0.29490420518630006 1.0 18548 +55347 ABHD10 abhydrolase domain containing 10, depalmitoylase Novel N 8.492375318028925e-05 -0.29490533162435256 1.0 18549 +79983 POF1B POF1B actin binding protein Novel U 8.491165114019772e-05 -0.29490543596444413 1.0 18550 +149643 SPATA45 spermatogenesis associated 45 Novel U 8.477037525779229e-05 -0.29490665400193156 1.0 18551 +162073 ITPRIPL2 ITPRIP like 2 Novel U 8.470636649079579e-05 -0.2949072058659611 1.0 18552 +7769 ZNF226 zinc finger protein 226 Novel U 8.468576526479976e-05 -0.29490738348343637 1.0 18553 +107983993 UPK3BL2 uroplakin 3B like 2 Novel U 8.448919862196741e-05 -0.2949090782209646 1.0 18554 +85442 KNDC1 kinase non-catalytic C-lobe domain containing 1 Novel U 8.444077228026355e-05 -0.2949094957380848 1.0 18555 +646851 FAM227A family with sequence similarity 227 member A Novel U 8.43436382681572e-05 -0.2949103331978553 1.0 18556 +26108 PYGO1 pygopus family PHD finger 1 Novel U 8.422993514916703e-05 -0.2949113135114022 1.0 18557 +10714 POLD3 DNA polymerase delta 3, accessory subunit Novel N 8.42182903140151e-05 -0.29491141390961245 1.0 18558 +23583 SMUG1 single-strand-selective monofunctional uracil-DNA glycosylase 1 Novel N 8.408827279692071e-05 -0.2949125348809145 1.0 18559 +2019 EN1 engrailed homeobox 1 Novel U 8.386310059201812e-05 -0.29491447624685774 1.0 18560 +100129271 KPLCE KPRP N-terminal and LCE C-terminal like protein Novel U 8.380326536162568e-05 -0.29491499212792993 1.0 18561 +23597 ACOT9 acyl-CoA thioesterase 9 Novel U 8.375988336042332e-05 -0.29491536615428776 1.0 18562 +197342 EME2 essential meiotic structure-specific endonuclease subunit 2 Novel N 8.374649229028958e-05 -0.29491548160800246 1.0 18563 +124220 ZG16B zymogen granule protein 16B Novel N 8.371208887263805e-05 -0.2949157782237566 1.0 18564 +389730 SPATA31A6 SPATA31 subfamily A member 6 Novel U 8.369959327773082e-05 -0.2949158859569575 1.0 18565 +64789 EXO5 exonuclease 5 Novel N 8.360788552574998e-05 -0.2949166766331713 1.0 18566 +389857 CENPVL1 centromere protein V like 1 Novel U 8.351771826933903e-05 -0.29491745402770303 1.0 18567 +29063 ZCCHC4 zinc finger CCHC-type containing 4 Novel N 8.3419392448548e-05 -0.2949183017628838 1.0 18568 +54768 HYDIN HYDIN axonemal central pair apparatus protein Novel N 8.333514982639504e-05 -0.2949190280770294 1.0 18569 +91409 CCDC74B coiled-coil domain containing 74B Novel U 8.298988461243684e-05 -0.2949220048481991 1.0 18570 +387778 SPDYC speedy/RINGO cell cycle regulator family member C Novel U 8.289579970841883e-05 -0.2949228160194914 1.0 18571 +286183 NKAIN3 sodium/potassium transporting ATPase interacting 3 Novel U 8.270767150667384e-05 -0.2949244380033592 1.0 18572 +91801 ALKBH8 alkB homolog 8, tRNA methyltransferase Novel U 8.237017062224834e-05 -0.29492734783285224 1.0 18573 +10588 MTHFS methenyltetrahydrofolate synthetase Novel U 8.224629067343764e-05 -0.294928415887916 1.0 18574 +259240 WFDC9 WAP four-disulfide core domain 9 Novel U 8.173518660516616e-05 -0.29493282247101105 1.0 18575 +80314 EPC1 enhancer of polycomb homolog 1 Novel U 8.169094403117987e-05 -0.2949332039169645 1.0 18576 +389152 PRR23C proline rich 23C Novel U 8.129562694494691e-05 -0.2949366122200822 1.0 18577 +389376 SFTA2 surfactant associated 2 Novel U 8.109199615594812e-05 -0.29493836786252015 1.0 18578 +255374 MBLAC1 metallo-beta-lactamase domain containing 1 Novel U 8.103199327497291e-05 -0.2949388851890244 1.0 18579 +100132386 KRTAP4-9 keratin associated protein 4-9 Novel N 8.09813131995025e-05 -0.29493932213714846 1.0 18580 +93436 ARMC6 armadillo repeat containing 6 Novel U 8.093911952792248e-05 -0.2949396859180914 1.0 18581 +6631 SNRPC small nuclear ribonucleoprotein polypeptide C Novel N 8.073972256837587e-05 -0.2949414050577455 1.0 18582 +60494 CCDC81 coiled-coil domain containing 81 Novel U 8.062390682804225e-05 -0.29494240358566803 1.0 18583 +847 CAT catalase Novel U 8.045310549357562e-05 -0.2949438761825809 1.0 18584 +83733 SLC25A18 solute carrier family 25 member 18 Novel N 8.042716448195485e-05 -0.2949440998380561 1.0 18585 +6489 ST8SIA1 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 1 Novel N 8.042462837702746e-05 -0.2949441217035778 1.0 18586 +8712 PAGE1 PAGE family member 1 Novel U 7.990652830633714e-05 -0.2949485886040679 1.0 18587 +441476 STPG3 sperm-tail PG-rich repeat containing 3 Novel U 7.957921714901394e-05 -0.2949514105808476 1.0 18588 +246243 RNASEH1 ribonuclease H1 Novel U 7.943536466883838e-05 -0.29495265083297373 1.0 18589 +388533 KRTDAP keratinocyte differentiation associated protein Novel U 7.942587887773664e-05 -0.29495273261656596 1.0 18590 +23743 BHMT2 betaine--homocysteine S-methyltransferase 2 Novel N 7.941135230880784e-05 -0.29495285786020425 1.0 18591 +128817 CSTL1 cystatin like 1 Novel U 7.918330176848693e-05 -0.2949548240422759 1.0 18592 +55268 ECHDC2 enoyl-CoA hydratase domain containing 2 Novel U 7.91829959517275e-05 -0.2949548266789346 1.0 18593 +54752 FNDC8 fibronectin type III domain containing 8 Novel U 7.917795590658387e-05 -0.2949548701326637 1.0 18594 +6742 SSBP1 single stranded DNA binding protein 1 Novel U 7.895299517552781e-05 -0.2949568096753441 1.0 18595 +503834 DPRX divergent-paired related homeobox Novel U 7.884705014655143e-05 -0.29495772310100954 1.0 18596 +51021 MRPS16 mitochondrial ribosomal protein S16 Novel U 7.854109902295068e-05 -0.2949603609181057 1.0 18597 +78996 CYREN cell cycle regulator of NHEJ Novel N 7.852544981868356e-05 -0.2949604958407628 1.0 18598 +730051 ZNF814 zinc finger protein 814 Novel U 7.85118776312479e-05 -0.29496061285601555 1.0 18599 +285440 CYP4V2 cytochrome P450 family 4 subfamily V member 2 Novel U 7.848858584388786e-05 -0.2949608136706887 1.0 18600 +134526 ACOT12 acyl-CoA thioesterase 12 Novel U 7.847989241576109e-05 -0.29496088862276953 1.0 18601 +6527 SLC5A4 solute carrier family 5 member 4 Novel U 7.845464049960568e-05 -0.29496110633707423 1.0 18602 +80349 SKIC8 SKI8 subunit of superkiller complex Novel U 7.842616543065183e-05 -0.2949613518404174 1.0 18603 +8359 H4C1 H4 clustered histone 1 Novel U 7.83871090432425e-05 -0.2949616885726549 1.0 18604 +613209 DEFB135 defensin beta 135 Novel U 7.821582598307527e-05 -0.29496316532285954 1.0 18605 +26048 ZNF500 zinc finger protein 500 Novel U 7.81471065446287e-05 -0.29496375780085876 1.0 18606 +654254 ZNF732 zinc finger protein 732 Novel U 7.80925539047902e-05 -0.2949642281370494 1.0 18607 +123970 C16orf78 chromosome 16 open reading frame 78 Novel U 7.780548007268913e-05 -0.29496670319990664 1.0 18608 +55173 MRPS10 mitochondrial ribosomal protein S10 Novel U 7.766684028447033e-05 -0.2949678985097956 1.0 18609 +84924 ZNF566 zinc finger protein 566 Novel U 7.757319089483868e-05 -0.2949687059262159 1.0 18610 +143888 POGLUT3 protein O-glucosyltransferase 3 Novel N 7.727151837046141e-05 -0.29497130685453693 1.0 18611 +728299 KRTAP19-8 keratin associated protein 19-8 Novel U 7.723695635424435e-05 -0.29497160483767937 1.0 18612 +51063 CALHM2 calcium homeostasis modulator family member 2 Novel N 7.713309391873807e-05 -0.2949725003078604 1.0 18613 +111216276 PMIS2 PMIS2 transmembrane protein Novel U 7.70169815386122e-05 -0.29497350139332057 1.0 18614 +117154 DACH2 dachshund family transcription factor 2 Novel U 7.644624798620291e-05 -0.2949784220836065 1.0 18615 +6536 SLC6A9 solute carrier family 6 member 9 Novel U 7.632477197525416e-05 -0.2949794694126526 1.0 18616 +343066 AADACL4 arylacetamide deacetylase like 4 Novel U 7.593307279385258e-05 -0.2949828465233004 1.0 18617 +10249 GLYAT glycine-N-acyltransferase Novel N 7.591800423544111e-05 -0.2949829764398065 1.0 18618 +2765 GML glycosylphosphatidylinositol anchored molecule like Novel N 7.591777486405046e-05 -0.29498297841737653 1.0 18619 +64064 OXCT2 3-oxoacid CoA-transferase 2 Novel U 7.583389470085094e-05 -0.2949837016065118 1.0 18620 +8501 SLC43A1 solute carrier family 43 member 1 Novel U 7.575188931911924e-05 -0.29498440863185416 1.0 18621 +133957 CCDC127 coiled-coil domain containing 127 Novel U 7.554415017461087e-05 -0.2949861996952778 1.0 18622 +154288 KHDC3L KH domain containing 3 like, subcortical maternal complex member Novel U 7.552679065654182e-05 -0.2949863493637379 1.0 18623 +26074 CFAP61 cilia and flagella associated protein 61 Novel N 7.54266662594231e-05 -0.29498721260569416 1.0 18624 +253175 CDY1B chromodomain Y-linked 1B Novel N 7.54002321349634e-05 -0.29498744051263764 1.0 18625 +128240 NAXE NAD(P)HX epimerase Novel U 7.524719464053716e-05 -0.2949887599551498 1.0 18626 +25885 POLR1A RNA polymerase I subunit A Novel U 7.517785313374296e-05 -0.29498935779643226 1.0 18627 +494551 WEE2 WEE2 oocyte meiosis inhibiting kinase Novel N 7.447390308258594e-05 -0.29499542703866244 1.0 18628 +375307 CATIP ciliogenesis associated TTC17 interacting protein Novel U 7.427837879736904e-05 -0.29499711278930185 1.0 18629 +10539 GLRX3 glutaredoxin 3 Novel N 7.413186254595432e-05 -0.2949983760076496 1.0 18630 +5264 PHYH phytanoyl-CoA 2-hydroxylase Novel N 7.399185746474262e-05 -0.2949995830886775 1.0 18631 +23428 SLC7A8 solute carrier family 7 member 8 Novel U 7.345686089297756e-05 -0.29500419566563674 1.0 18632 +114818 KLHL29 kelch like family member 29 Novel U 7.27371591883274e-05 -0.29501040071381 1.0 18633 +56267 KYAT3 kynurenine aminotransferase 3 Novel U 7.261121208844324e-05 -0.2950114865912187 1.0 18634 +101928108 LY6L lymphocyte antigen 6 family member L Novel U 7.240462330455861e-05 -0.2950132677365846 1.0 18635 +728255 KRTAP1-4 keratin associated protein 1-4 Novel U 7.226817922354285e-05 -0.2950144441157569 1.0 18636 +79173 BRME1 break repair meiotic recombinase recruitment factor 1 Novel U 7.186801925230781e-05 -0.29501789417274926 1.0 18637 +164714 TTLL8 tubulin tyrosine ligase like 8 Novel U 7.183678258533532e-05 -0.2950181634857467 1.0 18638 +100132916 SHISAL2B shisa like 2B Novel U 7.156275584590579e-05 -0.2950205260605579 1.0 18639 +386683 KRTAP12-3 keratin associated protein 12-3 Novel U 7.152079247418993e-05 -0.2950208878559258 1.0 18640 +23595 ORC3 origin recognition complex subunit 3 Novel N 7.119768096190502e-05 -0.29502367362464926 1.0 18641 +90956 ADCK2 aarF domain containing kinase 2 Novel N 7.118756151587901e-05 -0.2950237608714207 1.0 18642 +5965 RECQL RecQ like helicase Novel U 7.109008352647205e-05 -0.29502460129685826 1.0 18643 +128488 WFDC12 WAP four-disulfide core domain 12 Novel U 7.104812423151589e-05 -0.2950249630570776 1.0 18644 +140258 KRTAP13-1 keratin associated protein 13-1 Novel U 7.103704839129845e-05 -0.29502505854958744 1.0 18645 +54831 BEST2 bestrophin 2 Novel U 7.09321760500323e-05 -0.29502596272686726 1.0 18646 +254013 ETFBKMT electron transfer flavoprotein subunit beta lysine methyltransferase Novel N 7.081846519872138e-05 -0.2950269431070799 1.0 18647 +3166 HMX1 H6 family homeobox 1 Novel U 7.076089667384133e-05 -0.2950274394453098 1.0 18648 +440097 DBX2 developing brain homeobox 2 Novel U 7.050816837236432e-05 -0.2950296183914972 1.0 18649 +11247 NXPH4 neurexophilin 4 Novel U 7.045010405219303e-05 -0.29503011900432263 1.0 18650 +223 ALDH9A1 aldehyde dehydrogenase 9 family member A1 Novel U 7.039286042638327e-05 -0.295030612541372 1.0 18651 +79740 ZBBX zinc finger B-box domain containing Novel U 7.035283154650396e-05 -0.29503095765814247 1.0 18652 +7700 ZNF141 zinc finger protein 141 Novel N 6.988646446455301e-05 -0.29503497853261196 1.0 18653 +388564 TMEM238 transmembrane protein 238 Novel U 6.981708515361089e-05 -0.2950355766998302 1.0 18654 +151295 SLC23A3 solute carrier family 23 member 3 Novel N 6.965908484229127e-05 -0.2950369389302332 1.0 18655 +26013 L3MBTL1 L3MBTL histone methyl-lysine binding protein 1 Novel N 6.937847807369318e-05 -0.2950393582360451 1.0 18656 +92304 SCGB3A1 secretoglobin family 3A member 1 Novel U 6.896978508070357e-05 -0.29504288186214356 1.0 18657 +84622 ZNF594 zinc finger protein 594 Novel U 6.889966181714996e-05 -0.2950434864434939 1.0 18658 +81850 KRTAP1-3 keratin associated protein 1-3 Novel U 6.889590942120589e-05 -0.29504351879550506 1.0 18659 +83544 DNAL1 dynein axonemal light chain 1 Novel N 6.817451815865906e-05 -0.2950497384105302 1.0 18660 +83900 KRTAP9-3 keratin associated protein 9-3 Novel U 6.793054566886325e-05 -0.2950518418667849 1.0 18661 +54884 RETSAT retinol saturase Novel U 6.767671800851928e-05 -0.29505403029130856 1.0 18662 +100131902 KRTAP25-1 keratin associated protein 25-1 Novel U 6.75441630940941e-05 -0.29505517313927493 1.0 18663 +266675 BEST4 bestrophin 4 Novel U 6.747707461470366e-05 -0.29505575155564356 1.0 18664 +137814 NKX2-6 NK2 homeobox 6 Novel U 6.721292818994558e-05 -0.29505802894540084 1.0 18665 +144809 FAM216B family with sequence similarity 216 member B Novel U 6.720992435521744e-05 -0.29505805484354597 1.0 18666 +440956 IQCF6 IQ motif containing F6 Novel U 6.699908364810572e-05 -0.2950598726476946 1.0 18667 +388333 SPDYE4 speedy/RINGO cell cycle regulator family member E4 Novel U 6.650463873014646e-05 -0.29506413560068634 1.0 18668 +55966 AJAP1 adherens junctions associated protein 1 Novel U 6.637853607268266e-05 -0.2950652228192649 1.0 18669 +57336 ZNF287 zinc finger protein 287 Novel U 6.634575822990661e-05 -0.2950655054198092 1.0 18670 +158521 FMR1NB FMR1 neighbor Novel U 6.616066279077095e-05 -0.29506710125612456 1.0 18671 +337978 KRTAP21-2 keratin associated protein 21-2 Novel U 6.610354768673951e-05 -0.29506759368509844 1.0 18672 +203413 CT83 cancer/testis antigen 83 Novel U 6.610161919225481e-05 -0.2950676103119886 1.0 18673 +133491 C5orf47 chromosome 5 open reading frame 47 Novel U 6.609224243095686e-05 -0.2950676911555592 1.0 18674 +27164 SALL3 spalt like transcription factor 3 Novel U 6.609023361981169e-05 -0.29506770847491504 1.0 18675 +200035 NUDT17 nudix hydrolase 17 Novel U 6.578627180877823e-05 -0.2950703291407661 1.0 18676 +51481 VCX3A variable charge X-linked 3A Novel N 6.544766482998807e-05 -0.2950732485066667 1.0 18677 +146378 C16orf92 chromosome 16 open reading frame 92 Novel U 6.543337420813737e-05 -0.2950733717160414 1.0 18678 +1538 CYLC1 cylicin 1 Novel U 6.531047032079188e-05 -0.2950744313558015 1.0 18679 +200132 DYNLT5 dynein light chain Tctex-type family member 5 Novel U 6.519247277471764e-05 -0.29507544869458646 1.0 18680 +6704 SPRR2E small proline rich protein 2E Novel N 6.487976046027777e-05 -0.2950781448046039 1.0 18681 +245913 DEFB110 defensin beta 110 Novel U 6.477921182970423e-05 -0.29507901170417133 1.0 18682 +6629 SNRPB2 small nuclear ribonucleoprotein polypeptide B2 Novel N 6.44750237664708e-05 -0.2950816343206998 1.0 18683 +192666 KRT24 keratin 24 Novel U 6.446068064827897e-05 -0.2950817579826819 1.0 18684 +129852 C2orf73 chromosome 2 open reading frame 73 Novel U 6.436323948182031e-05 -0.2950825980906433 1.0 18685 +100133093 FAM25G family with sequence similarity 25 member G Novel U 6.41803604426364e-05 -0.29508417481783555 1.0 18686 +284443 ZNF493 zinc finger protein 493 Novel U 6.415252131308979e-05 -0.2950844148383035 1.0 18687 +117156 SCGB3A2 secretoglobin family 3A member 2 Novel U 6.405403672942302e-05 -0.29508526394228923 1.0 18688 +124359 CDYL2 chromodomain Y like 2 Novel U 6.37794156169678e-05 -0.295087631641603 1.0 18689 +770 CA11 carbonic anhydrase 11 Novel U 6.365773611952543e-05 -0.29508868072504746 1.0 18690 +653240 KRTAP4-11 keratin associated protein 4-11 Novel U 6.364134471002304e-05 -0.2950888220467714 1.0 18691 +56912 IFT46 intraflagellar transport 46 Novel U 6.350414887449592e-05 -0.29509000490734144 1.0 18692 +400629 TEX19 testis expressed 19 Novel N 6.343083097944134e-05 -0.29509063703182836 1.0 18693 +112703 GARIN5A golgi associated RAB2 interactor 5A Novel U 6.312900114064326e-05 -0.29509323931646625 1.0 18694 +258 AMBN ameloblastin Novel N 6.292281038564985e-05 -0.2950950170301487 1.0 18695 +587 BCAT2 branched chain amino acid transaminase 2 Novel N 6.288301683541285e-05 -0.2950953601179788 1.0 18696 +54059 YBEY ybeY metalloendoribonuclease Novel U 6.262585525044828e-05 -0.29509757728658176 1.0 18697 +503614 DEFB107B defensin beta 107B Novel N 6.258496191114851e-05 -0.29509792985645716 1.0 18698 +8846 ALKBH1 alkB homolog 1, histone H2A dioxygenase Novel N 6.24585145538602e-05 -0.2950990200469323 1.0 18699 +337960 KRTAP13-3 keratin associated protein 13-3 Novel U 6.216318574370528e-05 -0.2951015662816878 1.0 18700 +3034 HAL histidine ammonia-lyase Novel N 6.214290960616458e-05 -0.2951017410963498 1.0 18701 +149018 LELP1 late cornified envelope like proline rich 1 Novel U 6.207978783756145e-05 -0.29510228531295013 1.0 18702 +646658 SYNDIG1L synapse differentiation inducing 1 like Novel U 6.194561550835013e-05 -0.29510344210577255 1.0 18703 +28970 C11orf54 chromosome 11 open reading frame 54 Novel U 6.182216116225689e-05 -0.2951045064914198 1.0 18704 +80164 PRR36 proline rich 36 Novel U 6.163189351237625e-05 -0.2951061469209557 1.0 18705 +316 AOX1 aldehyde oxidase 1 Novel N 6.132926160047068e-05 -0.2951087561208228 1.0 18706 +340654 LIPM lipase family member M Novel N 6.112924786290237e-05 -0.29511048057814854 1.0 18707 +7643 ZNF90 zinc finger protein 90 Novel U 6.108166832879581e-05 -0.2951108907943525 1.0 18708 +401565 CIMIP2A ciliary microtubule inner protein 2A Novel U 6.0893488002992957e-05 -0.29511251322761795 1.0 18709 +386672 KRTAP10-4 keratin associated protein 10-4 Novel U 5.9834818491590514e-05 -0.29512164075264036 1.0 18710 +9329 GTF3C4 general transcription factor IIIC subunit 4 Novel N 5.975782480600426e-05 -0.29512230456867 1.0 18711 +90655 TGIF2LY TGFB induced factor homeobox 2 like Y-linked Novel U 5.9754909915917716e-05 -0.2951223296999616 1.0 18712 +79763 ISOC2 isochorismatase domain containing 2 Novel N 5.967861317690574e-05 -0.29512298750713084 1.0 18713 +2686 GGT7 gamma-glutamyltransferase 7 Novel N 5.959581811392579e-05 -0.2951237013408636 1.0 18714 +158800 RHOXF1 Rhox homeobox family member 1 Novel N 5.9388862168450675e-05 -0.29512548565178454 1.0 18715 +4081 MAB21L1 mab-21 like 1 Novel U 5.93672357579344e-05 -0.2951256721080875 1.0 18716 +353267 RAMACL RNA guanine-7 methyltransferase activating subunit like Novel U 5.9348545299872634e-05 -0.2951258332515055 1.0 18717 +286234 SPATA31E1 SPATA31 subfamily E member 1 Novel U 5.930645507868585e-05 -0.29512619614053076 1.0 18718 +100129278 TDRD15 tudor domain containing 15 Novel U 5.9264790103164664e-05 -0.29512655536321786 1.0 18719 +4166 CHST6 carbohydrate sulfotransferase 6 Novel U 5.9248653323046805e-05 -0.295126694489605 1.0 18720 +65990 ANTKMT adenine nucleotide translocase lysine methyltransferase Novel N 5.9226211559492295e-05 -0.2951268879756327 1.0 18721 +27339 PRPF19 pre-mRNA processing factor 19 Novel U 5.8963283308845985e-05 -0.295129154862665 1.0 18722 +57594 HOMEZ homeobox and leucine zipper encoding Novel U 5.886487926496939e-05 -0.29513000327226124 1.0 18723 +645864 MAGEB17 MAGE family member B17 Novel U 5.878831859709254e-05 -0.2951306633549446 1.0 18724 +337977 KRTAP21-1 keratin associated protein 21-1 Novel U 5.873469014732976e-05 -0.2951311257230508 1.0 18725 +100132476 KRTAP4-7 keratin associated protein 4-7 Novel U 5.865221196132932e-05 -0.29513183682476707 1.0 18726 +80345 ZSCAN16 zinc finger and SCAN domain containing 16 Novel U 5.8536962771718045e-05 -0.2951328304680624 1.0 18727 +100129669 IZUMO3 IZUMO family member 3 Novel U 5.8337161237022696e-05 -0.2951345530958398 1.0 18728 +100534599 ISY1-RAB43 ISY1-RAB43 readthrough Novel U 5.8332166814913035e-05 -0.29513459615622106 1.0 18729 +220136 CFAP53 cilia and flagella associated protein 53 Novel N 5.7960295691506566e-05 -0.2951378023154118 1.0 18730 +10063 COX17 cytochrome c oxidase copper chaperone COX17 Novel N 5.7545234806577155e-05 -0.2951413808435287 1.0 18731 +128229 TSACC TSSK6 activating cochaperone Novel U 5.74718300334769e-05 -0.29514201371705157 1.0 18732 +84217 ZMYND12 zinc finger MYND-type containing 12 Novel U 5.690546022757562e-05 -0.29514689678444855 1.0 18733 +140880 CST11 cystatin 11 Novel N 5.682624111448941e-05 -0.295147579787434 1.0 18734 +348807 CFAP100 cilia and flagella associated protein 100 Novel U 5.681666176016761e-05 -0.2951476623776998 1.0 18735 +54955 AIRIM AFG2 interacting ribosome maturation factor Novel N 5.654857850983305e-05 -0.29514997370956414 1.0 18736 +84836 ABHD14B abhydrolase domain containing 14B Novel N 5.6375936244918765e-05 -0.2951514621784167 1.0 18737 +389123 IQCF2 IQ motif containing F2 Novel U 5.619742924222016e-05 -0.2951530012112464 1.0 18738 +154197 PNLDC1 PARN like ribonuclease domain containing exonuclease 1 Novel N 5.616355614361247e-05 -0.2951532932547517 1.0 18739 +57828 CATSPERG cation channel sperm associated auxiliary subunit gamma Novel U 5.612178821181318e-05 -0.2951536533650964 1.0 18740 +55331 ACER3 alkaline ceramidase 3 Novel U 5.607504710772871e-05 -0.2951540563526128 1.0 18741 +10388 SYCP2 synaptonemal complex protein 2 Novel N 5.548347916122764e-05 -0.2951591566706781 1.0 18742 +730112 CIMIP2B ciliary microtubule inner protein 2B Novel U 5.5380132285240537e-05 -0.2951600476958624 1.0 18743 +135293 PM20D2 peptidase M20 domain containing 2 Novel N 5.515427031850866e-05 -0.2951619950087214 1.0 18744 +112267897 LOC112267897 keratin-associated protein 21-1-like Novel U 5.5091971285955864e-05 -0.29516253213194293 1.0 18745 +386684 KRTAP12-4 keratin associated protein 12-4 Novel U 5.505751050527239e-05 -0.29516282924226356 1.0 18746 +84648 LCE3D late cornified envelope 3D Novel U 5.501660234195225e-05 -0.2951631819399471 1.0 18747 +339456 TMEM52 transmembrane protein 52 Novel U 5.475802201374642e-05 -0.2951654113405207 1.0 18748 +253190 SERHL2 serine hydrolase like 2 Novel U 5.4474683006841555e-05 -0.2951678542028564 1.0 18749 +64184 EDDM3B epididymal protein 3B Novel U 5.4345731706918257e-05 -0.2951689659815598 1.0 18750 +448831 FRG2 FSHD region gene 2 Novel U 5.416824154355679e-05 -0.29517049624751146 1.0 18751 +23440 OTP orthopedia homeobox Novel N 5.40705756333307e-05 -0.29517133829314496 1.0 18752 +26239 LCE2B late cornified envelope 2B Novel U 5.4059655950698386e-05 -0.2951714324393118 1.0 18753 +127795 C1orf87 chromosome 1 open reading frame 87 Novel U 5.337866777221643e-05 -0.2951773037112924 1.0 18754 +9139 CBFA2T2 CBFA2/RUNX1 partner transcriptional co-repressor 2 Novel U 5.293945480737574e-05 -0.295181090471262 1.0 18755 +245910 DEFB107A defensin beta 107A Novel N 5.257467137376476e-05 -0.29518423552255724 1.0 18756 +127391 TMCO2 transmembrane and coiled-coil domains 2 Novel U 5.236240280999947e-05 -0.2951860656372496 1.0 18757 +353135 LCE1E late cornified envelope 1E Novel U 5.2056746679682525e-05 -0.29518870091100374 1.0 18758 +346673 STRA8 stimulated by retinoic acid 8 Novel U 5.20441269517135e-05 -0.295188809714442 1.0 18759 +389336 C5orf46 chromosome 5 open reading frame 46 Novel U 5.196124269537592e-05 -0.29518952431717266 1.0 18760 +3607 FOXK2 forkhead box K2 Novel N 5.1793564897731155e-05 -0.2951909699839054 1.0 18761 +151254 C2CD6 C2 calcium dependent domain containing 6 Novel N 5.177191790760023e-05 -0.29519115661763956 1.0 18762 +10001 MED6 mediator complex subunit 6 Novel N 5.1112634485513006e-05 -0.295196840757843 1.0 18763 +389177 TMEM212 transmembrane protein 212 Novel U 5.058868371148451e-05 -0.29520135810130943 1.0 18764 +83746 L3MBTL2 L3MBTL histone methyl-lysine binding protein 2 Novel U 5.0546990292012354e-05 -0.2952017175692316 1.0 18765 +440585 CFAP144 cilia and flagella associated protein 144 Novel U 5.054201741540544e-05 -0.29520176044385416 1.0 18766 +63895 PIEZO2 piezo type mechanosensitive ion channel component 2 Novel U 5.0480073035149696e-05 -0.2952022945093719 1.0 18767 +57127 RHBG Rh family B glycoprotein Novel N 5.042746126279168e-05 -0.29520274811199626 1.0 18768 +79852 EPHX3 epoxide hydrolase 3 Novel N 5.029204600471903e-05 -0.29520391562097154 1.0 18769 +83899 KRTAP9-2 keratin associated protein 9-2 Novel U 5.014864680658491e-05 -0.2952051519650384 1.0 18770 +360203 GLT6D1 glycosyltransferase 6 domain containing 1 Novel U 5.010709565342759e-05 -0.29520551020638386 1.0 18771 +1036 CDO1 cysteine dioxygenase type 1 Novel N 4.97442981158856e-05 -0.29520863813589004 1.0 18772 +386676 KRTAP10-9 keratin associated protein 10-9 Novel U 4.971832683589731e-05 -0.2952088620523299 1.0 18773 +158234 TRMT10B tRNA methyltransferase 10B Novel U 4.880890859816976e-05 -0.2952167027784784 1.0 18774 +80740 LY6G6C lymphocyte antigen 6 family member G6C Novel U 4.8785802597711064e-05 -0.29521690199135364 1.0 18775 +245908 DEFB105A defensin beta 105A Novel U 4.872295811048483e-05 -0.2952174438173187 1.0 18776 +54093 SETD4 SET domain containing 4 Novel U 4.854973866261697e-05 -0.29521893726246634 1.0 18777 +83594 NUDT12 nudix hydrolase 12 Novel N 4.8415554563716336e-05 -0.29522009415676354 1.0 18778 +79693 YRDC yrdC N6-threonylcarbamoyltransferase domain containing Novel U 4.826631033484881e-05 -0.29522138089489924 1.0 18779 +84912 SLC35B4 solute carrier family 35 member B4 Novel N 4.8211804301559425e-05 -0.29522185082926244 1.0 18780 +80759 KHDC1 KH domain containing 1 Novel U 4.795420075381919e-05 -0.2952240718083334 1.0 18781 +128821 CST9L cystatin 9 like Novel U 4.784329238973866e-05 -0.29522502802635747 1.0 18782 +448835 LCE6A late cornified envelope 6A Novel U 4.776184560256806e-05 -0.2952257302356682 1.0 18783 +220004 SAXO4 stabilizer of axonemal microtubules 4 Novel U 4.751650825861469e-05 -0.2952278454592784 1.0 18784 +84515 MCM8 minichromosome maintenance 8 homologous recombination repair factor Novel U 4.745584785742521e-05 -0.295228368454721 1.0 18785 +387885 CFAP73 cilia and flagella associated protein 73 Novel U 4.741543773823929e-05 -0.2952287168584202 1.0 18786 +84172 POLR1B RNA polymerase I subunit B Novel U 4.739000544860299e-05 -0.29522893612784995 1.0 18787 +126123 IZUMO2 IZUMO family member 2 Novel U 4.708563099125947e-05 -0.29523156035141135 1.0 18788 +728637 MEIKIN meiotic kinetochore factor Novel U 4.695678806087983e-05 -0.29523267119578567 1.0 18789 +399818 EEF1AKMT2 EEF1A lysine methyltransferase 2 Novel N 4.688917313905027e-05 -0.2952332541509801 1.0 18790 +337880 KRTAP11-1 keratin associated protein 11-1 Novel U 4.6842171265955834e-05 -0.29523365938676727 1.0 18791 +125981 ACER1 alkaline ceramidase 1 Novel U 4.6682958308812185e-05 -0.29523503207223195 1.0 18792 +85509 MBD3L1 methyl-CpG binding domain protein 3 like 1 Novel U 4.62454221176789e-05 -0.29523880437557093 1.0 18793 +54058 C21orf58 chromosome 21 open reading frame 58 Novel U 4.587285213904475e-05 -0.295242016560078 1.0 18794 +10655 DMRT2 doublesex and mab-3 related transcription factor 2 Novel U 4.58482479461453e-05 -0.2952422286899107 1.0 18795 +149483 CCDC17 coiled-coil domain containing 17 Novel U 4.581719083860786e-05 -0.29524249645480155 1.0 18796 +79366 HMGN5 high mobility group nucleosome binding domain 5 Novel N 4.571578245101438e-05 -0.2952433707669313 1.0 18797 +10166 SLC25A15 solute carrier family 25 member 15 Novel N 4.555181181314442e-05 -0.2952447844716654 1.0 18798 +80742 PRR3 proline rich 3 Novel U 4.5516736736516265e-05 -0.29524508687825796 1.0 18799 +57639 CCDC146 coiled-coil domain containing 146 Novel U 4.5471438004007554e-05 -0.2952454774300874 1.0 18800 +401265 KLHL31 kelch like family member 31 Novel U 4.519991742440034e-05 -0.2952478183975543 1.0 18801 +53340 SPA17 sperm autoantigenic protein 17 Novel N 4.466177268776182e-05 -0.29525245811702905 1.0 18802 +504180 DEFB105B defensin beta 105B Novel U 4.451080527289641e-05 -0.2952537597119479 1.0 18803 +388960 C2orf78 chromosome 2 open reading frame 78 Novel U 4.4292236798820795e-05 -0.2952556441425419 1.0 18804 +6430 SRSF5 serine and arginine rich splicing factor 5 Novel N 4.417250976648426e-05 -0.2952566763924289 1.0 18805 +10876 EDDM3A epididymal protein 3A Novel N 4.389794490159001e-05 -0.29525904360679334 1.0 18806 +158798 AKAP14 A-kinase anchoring protein 14 Novel U 4.38709208703739e-05 -0.29525927659973256 1.0 18807 +9635 CLCA2 chloride channel accessory 2 Novel N 4.381510252832952e-05 -0.2952597578484209 1.0 18808 +259239 WFDC11 WAP four-disulfide core domain 11 Novel U 4.3576417583775377e-05 -0.2952618157170762 1.0 18809 +54951 COMMD8 COMM domain containing 8 Novel U 4.333325594548593e-05 -0.295263912182417 1.0 18810 +22928 SEPHS2 selenophosphate synthetase 2 Novel N 4.328947015044203e-05 -0.29526428969016194 1.0 18811 +85285 KRTAP4-1 keratin associated protein 4-1 Novel U 4.311566407781778e-05 -0.29526578819300897 1.0 18812 +84275 SLC25A33 solute carrier family 25 member 33 Novel N 4.305969131907848e-05 -0.29526627077303086 1.0 18813 +85354 KRTAP4-16 keratin associated protein 4-16 Novel U 4.305054618130479e-05 -0.2952663496196142 1.0 18814 +83901 KRTAP9-8 keratin associated protein 9-8 Novel U 4.253886275267328e-05 -0.2952707611977772 1.0 18815 +140881 DEFB129 defensin beta 129 Novel U 4.25274659067355e-05 -0.29527085945790027 1.0 18816 +337968 KRTAP6-3 keratin associated protein 6-3 Novel U 4.249271839608766e-05 -0.29527115904031903 1.0 18817 +353134 LCE1D late cornified envelope 1D Novel N 4.206588117607661e-05 -0.2952748391003984 1.0 18818 +644524 NKX2-4 NK2 homeobox 4 Novel U 4.196654905642146e-05 -0.29527569551158045 1.0 18819 +10473 HMGN4 high mobility group nucleosomal binding domain 4 Novel U 4.173541085405173e-05 -0.29527768831453083 1.0 18820 +57152 SLURP1 secreted LY6/PLAUR domain containing 1 Novel U 4.1599402195605256e-05 -0.29527886093962286 1.0 18821 +55894 DEFB103B defensin beta 103B Novel U 4.1598475013052076e-05 -0.29527886893350747 1.0 18822 +171169 SPACA4 sperm acrosome associated 4 Novel U 4.129460582634332e-05 -0.29528148880077987 1.0 18823 +3029 HAGH hydroxyacylglutathione hydrolase Novel N 4.1202318834179154e-05 -0.29528228447102556 1.0 18824 +83896 KRTAP3-1 keratin associated protein 3-1 Novel U 4.079512481607384e-05 -0.29528579517342063 1.0 18825 +100533177 KRTAP29-1 keratin associated like protein 29-1 Novel U 4.075812018553869e-05 -0.29528611421603734 1.0 18826 +23627 PRND prion like protein doppel Novel U 4.059541820678426e-05 -0.29528751698278016 1.0 18827 +85416 ZIC5 Zic family member 5 Novel U 4.0588315659221904e-05 -0.2952875782187749 1.0 18828 +399968 PATE4 prostate and testis expressed 4 Novel U 4.0541427971442604e-05 -0.29528798247009114 1.0 18829 +284273 PTGR3 prostaglandin reductase 3 Novel U 4.0250412632570944e-05 -0.2952904915154153 1.0 18830 +4117 MAK male germ cell associated kinase Novel U 4.016002116848224e-05 -0.29529127084299717 1.0 18831 +132203 SNTN sentan, cilia apical structure protein Novel U 4.010245626000511e-05 -0.29529176715004757 1.0 18832 +153918 ZC2HC1B zinc finger C2HC-type containing 1B Novel U 4.001359173376875e-05 -0.2952925333128378 1.0 18833 +140850 DEFB127 defensin beta 127 Novel N 3.992405884980965e-05 -0.2952933052380041 1.0 18834 +399814 C10orf120 chromosome 10 open reading frame 120 Novel U 3.9586563898248364e-05 -0.29529621501634584 1.0 18835 +23588 KLHDC2 kelch domain containing 2 Novel U 3.9582700767600654e-05 -0.29529624832307777 1.0 18836 +342125 TMC3 transmembrane channel like 3 Novel U 3.9455117850113844e-05 -0.295297348304006 1.0 18837 +51166 AADAT aminoadipate aminotransferase Novel N 3.932746841682365e-05 -0.29529844885841305 1.0 18838 +386674 KRTAP10-6 keratin associated protein 10-6 Novel U 3.918973674118597e-05 -0.2952996363388328 1.0 18839 +29081 METTL5 methyltransferase 5, N6-adenosine Novel U 3.907988356884618e-05 -0.29530058345931615 1.0 18840 +246777 SPESP1 sperm equatorial segment protein 1 Novel U 3.899291197163402e-05 -0.2953013333018508 1.0 18841 +56271 BEX4 brain expressed X-linked 4 Novel U 3.865438270866609e-05 -0.2953042519977094 1.0 18842 +353145 LCE3E late cornified envelope 3E Novel U 3.785857753052398e-05 -0.29531111318677566 1.0 18843 +25961 NUDT13 nudix hydrolase 13 Novel N 3.779296408606298e-05 -0.29531167888584386 1.0 18844 +85474 LBX2 ladybird homeobox 2 Novel U 3.779111203862388e-05 -0.29531169485363096 1.0 18845 +25864 ABHD14A abhydrolase domain containing 14A Novel U 3.776483109452695e-05 -0.2953119214399001 1.0 18846 +147798 TMC4 transmembrane channel like 4 Novel U 3.7750934375788984e-05 -0.29531204125316257 1.0 18847 +149708 WFDC5 WAP four-disulfide core domain 5 Novel U 3.770414527039199e-05 -0.2953124446545316 1.0 18848 +18 ABAT 4-aminobutyrate aminotransferase Novel N 3.712830260315532e-05 -0.29531740939404433 1.0 18849 +337959 KRTAP13-2 keratin associated protein 13-2 Novel U 3.695587725058892e-05 -0.29531889599274497 1.0 18850 +338949 TMEM202 transmembrane protein 202 Novel U 3.6627267488135754e-05 -0.2953217291657013 1.0 18851 +201973 PRIMPOL primase and DNA directed polymerase Novel N 3.63773821978164e-05 -0.2953238836003152 1.0 18852 +340784 HMX3 H6 family homeobox 3 Novel U 3.619998640634072e-05 -0.29532541305262133 1.0 18853 +348303 SELENOV selenoprotein V Novel U 3.61922817719365e-05 -0.2953254794796248 1.0 18854 +643812 KRTAP27-1 keratin associated protein 27-1 Novel U 3.619057182074424e-05 -0.2953254942223015 1.0 18855 +112817 HOGA1 4-hydroxy-2-oxoglutarate aldolase 1 Novel N 3.6026332941032075e-05 -0.29532691023973473 1.0 18856 +259308 SPATA31F1 SPATA31 subfamily F member 1 Novel U 3.566302003029436e-05 -0.29533004261263107 1.0 18857 +348932 SLC6A18 solute carrier family 6 member 18 Novel N 3.561214694374212e-05 -0.2953304812248377 1.0 18858 +54891 INO80D INO80 complex subunit D Novel N 3.558706612490091e-05 -0.2953306974639936 1.0 18859 +425054 VCX3B variable charge X-linked 3B Novel U 3.5574791550458976e-05 -0.2953308032916236 1.0 18860 +727905 SPATA31A5 SPATA31 subfamily A member 5 Novel U 3.534036039467665e-05 -0.29533282448541204 1.0 18861 +400830 DEFB132 defensin beta 132 Novel N 3.5231973319917775e-05 -0.29533375896565006 1.0 18862 +414157 C10orf62 chromosome 10 open reading frame 62 Novel U 3.4603231299080875e-05 -0.2953391797872247 1.0 18863 +132671 SPATA18 spermatogenesis associated 18 Novel U 3.457899458065451e-05 -0.2953393887488048 1.0 18864 +85293 KRTAP3-3 keratin associated protein 3-3 Novel U 3.456645355690829e-05 -0.2953394968736793 1.0 18865 +8520 HAT1 histone acetyltransferase 1 Novel U 3.4540002430458685e-05 -0.29533972492720867 1.0 18866 +2678 GGT1 gamma-glutamyltransferase 1 Novel N 3.446201278855072e-05 -0.29534039733006934 1.0 18867 +10993 SDS serine dehydratase Novel N 3.433282148798518e-05 -0.2953415111779849 1.0 18868 +389763 SPATA31D1 SPATA31 subfamily D member 1 Novel U 3.4315803129271894e-05 -0.2953416579050734 1.0 18869 +337967 KRTAP6-2 keratin associated protein 6-2 Novel U 3.407692968235354e-05 -0.2953437173989385 1.0 18870 +339512 CCDC190 coiled-coil domain containing 190 Novel U 3.365255094111729e-05 -0.29534737626276514 1.0 18871 +3846 KRTAP5-9 keratin associated protein 5-9 Novel N 3.31265421003364e-05 -0.2953519113502541 1.0 18872 +245936 DEFB123 defensin beta 123 Novel U 3.301059167482636e-05 -0.29535291103939115 1.0 18873 +101928147 C21orf140 chromosome 21 open reading frame 140 Novel U 3.288139146398806e-05 -0.29535402496412844 1.0 18874 +54959 ODAM odontogenic, ameloblast associated Novel U 3.282484075474002e-05 -0.29535451252706296 1.0 18875 +353323 KRTAP12-2 keratin associated protein 12-2 Novel U 3.2783254549868333e-05 -0.2953548710706136 1.0 18876 +23474 ETHE1 ETHE1 persulfide dioxygenase Novel U 3.266615311400613e-05 -0.29535588068341007 1.0 18877 +112441428 SCYGR1 small cysteine and glycine repeat containing 1 Novel U 3.2625964327056155e-05 -0.2953562271788504 1.0 18878 +337878 KRTAP7-1 keratin associated protein 7-1 Novel U 3.251433976842355e-05 -0.29535718957168505 1.0 18879 +337966 KRTAP6-1 keratin associated protein 6-1 Novel U 3.2494563030047875e-05 -0.29535736008068003 1.0 18880 +386680 KRTAP10-5 keratin associated protein 10-5 Novel U 3.2413298419872936e-05 -0.29535806071931636 1.0 18881 +245937 DEFB124 defensin beta 124 Novel U 3.201326009001029e-05 -0.295361509727554 1.0 18882 +163778 SPRR4 small proline rich protein 4 Novel U 3.126890797063182e-05 -0.29536792730407047 1.0 18883 +100505753 KRTAP16-1 keratin associated protein 16-1 Novel U 3.117090766819329e-05 -0.29536877223273145 1.0 18884 +613210 DEFB136 defensin beta 136 Novel N 3.109458489635421e-05 -0.29536943026434775 1.0 18885 +353139 LCE2A late cornified envelope 2A Novel U 3.085390495648151e-05 -0.29537150533324313 1.0 18886 +85290 KRTAP4-3 keratin associated protein 4-3 Novel N 3.057246766157411e-05 -0.2953739317995991 1.0 18887 +100507608 KRTAP9-6 keratin associated protein 9-6 Novel U 3.054281122077154e-05 -0.29537418748836936 1.0 18888 +1112 FOXN3 forkhead box N3 Novel U 2.9865962666390233e-05 -0.295380023069776 1.0 18889 +79017 GGCT gamma-glutamylcyclotransferase Novel N 2.981916909494733e-05 -0.29538042650964996 1.0 18890 +84616 KRTAP4-4 keratin associated protein 4-4 Novel U 2.941189995084375e-05 -0.29538393785975836 1.0 18891 +84264 HAGHL hydroxyacylglutathione hydrolase like Novel U 2.930425733239558e-05 -0.2953848659215216 1.0 18892 +64518 TEKT3 tektin 3 Novel N 2.9205594238329536e-05 -0.2953857165645694 1.0 18893 +4184 SMCP sperm mitochondria associated cysteine rich protein Novel U 2.9108977873289023e-05 -0.2953865495613451 1.0 18894 +283726 SAXO2 stabilizer of axonemal microtubules 2 Novel U 2.8872110161144225e-05 -0.29538859176237786 1.0 18895 +92014 SLC25A51 solute carrier family 25 member 51 Novel N 2.815531640190006e-05 -0.2953947717391345 1.0 18896 +387890 TMEM233 transmembrane protein 233 Novel U 2.783020787957207e-05 -0.29539757472546835 1.0 18897 +399823 FOXI2 forkhead box I2 Novel U 2.7388557345434418e-05 -0.29540138250141545 1.0 18898 +283870 BRICD5 BRICHOS domain containing 5 Novel U 2.7332529319783332e-05 -0.2954018655579318 1.0 18899 +440021 KRTAP5-2 keratin associated protein 5-2 Novel U 2.728974427177893e-05 -0.2954022344375416 1.0 18900 +139212 DNAAF6 dynein axonemal assembly factor 6 Novel N 2.6681735256211344e-05 -0.2954074765054803 1.0 18901 +157777 MCMDC2 minichromosome maintenance domain containing 2 Novel U 2.5964144672002853e-05 -0.2954136633522183 1.0 18902 +337972 KRTAP19-5 keratin associated protein 19-5 Novel U 2.5782880796890415e-05 -0.29541522615395943 1.0 18903 +161835 FSIP1 fibrous sheath interacting protein 1 Novel U 2.4961061180238515e-05 -0.2954223116315651 1.0 18904 +4329 ALDH6A1 aldehyde dehydrogenase 6 family member A1 Novel N 2.481583316422585e-05 -0.2954235637431409 1.0 18905 +286207 CFAP157 cilia and flagella associated protein 157 Novel U 2.4219518372036762e-05 -0.2954287049870591 1.0 18906 +387267 KRTAP5-4 keratin associated protein 5-4 Novel U 2.4051322885883717e-05 -0.2954301551171441 1.0 18907 +386682 KRTAP10-3 keratin associated protein 10-3 Novel U 2.3144867487149514e-05 -0.2954379702986002 1.0 18908 +221711 SYCP2L synaptonemal complex protein 2 like Novel U 2.31330750334061e-05 -0.29543807196953287 1.0 18909 +57508 INTS2 integrator complex subunit 2 Novel N 2.305415664876597e-05 -0.29543875237972955 1.0 18910 +55186 SLC25A36 solute carrier family 25 member 36 Novel N 2.286458218407918e-05 -0.2954403868328345 1.0 18911 +574414 PRR9 proline rich 9 Novel U 2.251798731061711e-05 -0.2954433750679222 1.0 18912 +132851 SPATA4 spermatogenesis associated 4 Novel U 2.242247300596017e-05 -0.2954441985630699 1.0 18913 +150771 ITPRIPL1 ITPRIP like 1 Novel U 2.2386521337675984e-05 -0.29544450852736787 1.0 18914 +337979 KRTAP22-1 keratin associated protein 22-1 Novel U 2.16151452801475e-05 -0.2954511590960212 1.0 18915 +126823 KLHDC9 kelch domain containing 9 Novel U 2.1463405081495803e-05 -0.29545246735364566 1.0 18916 +54544 CRCT1 cysteine rich C-terminal 1 Novel U 2.112059987026684e-05 -0.2954554229154236 1.0 18917 +136895 SPMIP4 sperm microtubule inner protein 4 Novel U 2.1042628114486515e-05 -0.2954560951640755 1.0 18918 +337976 KRTAP20-2 keratin associated protein 20-2 Novel U 2.06125171772481e-05 -0.2954598034491444 1.0 18919 +100169851 PATE3 prostate and testis expressed 3 Novel U 2.0420723302114703e-05 -0.29546145703732807 1.0 18920 +54596 L1TD1 LINE1 type transposase domain containing 1 Novel U 2.0274750674910995e-05 -0.29546271556871395 1.0 18921 +83895 KRTAP1-5 keratin associated protein 1-5 Novel U 2.021938913010479e-05 -0.29546319287903605 1.0 18922 +284827 KRTAP13-4 keratin associated protein 13-4 Novel U 2.017860755859423e-05 -0.2954635444852837 1.0 18923 +245940 DEFB130A defensin beta 130A Novel U 2.0017667467471652e-05 -0.2954649320615698 1.0 18924 +25763 H2AP H2A.P histone Novel U 1.9534659869671504e-05 -0.2954690964054821 1.0 18925 +100505724 KRTAP9-7 keratin associated protein 9-7 Novel U 1.9415532981546074e-05 -0.2954701234811091 1.0 18926 +728224 KRTAP4-8 keratin associated protein 4-8 Novel N 1.934687853368598e-05 -0.29547071539877934 1.0 18927 +85289 KRTAP4-5 keratin associated protein 4-5 Novel N 1.923600456831017e-05 -0.2954716713202283 1.0 18928 +11112 HIBADH 3-hydroxyisobutyrate dehydrogenase Novel N 1.9230869937288547e-05 -0.2954717155894479 1.0 18929 +337970 KRTAP19-3 keratin associated protein 19-3 Novel U 1.921438214543986e-05 -0.295471857742151 1.0 18930 +643803 KRTAP24-1 keratin associated protein 24-1 Novel U 1.9007618834540743e-05 -0.29547364039223545 1.0 18931 +137797 LYPD2 LY6/PLAUR domain containing 2 Novel U 1.8616935750066774e-05 -0.29547700874240607 1.0 18932 +10478 SLC25A17 solute carrier family 25 member 17 Novel N 1.8170134954230578e-05 -0.2954808609223358 1.0 18933 +57830 KRTAP5-8 keratin associated protein 5-8 Novel U 1.7933913847646406e-05 -0.295482897548533 1.0 18934 +81871 KRTAP4-6 keratin associated protein 4-6 Novel U 1.7695873790056812e-05 -0.29548494985717 1.0 18935 +84795 PYROXD2 pyridine nucleotide-disulphide oxidoreductase domain 2 Novel N 1.7251247830873653e-05 -0.29548878328632266 1.0 18936 +337879 KRTAP8-1 keratin associated protein 8-1 Novel U 1.7226224361314497e-05 -0.29548899903103065 1.0 18937 +337975 KRTAP20-1 keratin associated protein 20-1 Novel U 1.7058132169523744e-05 -0.29549044827054316 1.0 18938 +337971 KRTAP19-4 keratin associated protein 19-4 Novel U 1.643915468324973e-05 -0.2954957849052846 1.0 18939 +254950 KRTAP15-1 keratin associated protein 15-1 Novel U 1.6345710313362677e-05 -0.29549659055408733 1.0 18940 +353142 LCE3A late cornified envelope 3A Novel N 1.6234300594342404e-05 -0.2954975510946405 1.0 18941 +83897 KRTAP3-2 keratin associated protein 3-2 Novel U 1.6138285341464012e-05 -0.2954983789088108 1.0 18942 +120935 CCDC38 coiled-coil domain containing 38 Novel U 1.6080984473040674e-05 -0.29549887293938853 1.0 18943 +83755 KRTAP4-12 keratin associated protein 4-12 Novel U 1.6043428157811704e-05 -0.29549919673846203 1.0 18944 +386677 KRTAP10-1 keratin associated protein 10-1 Novel U 1.5943089193718735e-05 -0.2955000618303492 1.0 18945 +644041 C18orf63 chromosome 18 open reading frame 63 Novel U 1.5533385193301814e-05 -0.2955035941730448 1.0 18946 +5931 RBBP7 RB binding protein 7, chromatin remodeling factor Novel U 1.5437971358285268e-05 -0.295504416801974 1.0 18947 +644890 MEIG1 meiosis/spermiogenesis associated 1 Novel U 1.495785086167081e-05 -0.2955085562541821 1.0 18948 +81870 KRTAP9-9 keratin associated protein 9-9 Novel U 1.4655852123306813e-05 -0.2955111599950205 1.0 18949 +386678 KRTAP10-11 keratin associated protein 10-11 Novel U 1.2752063385494482e-05 -0.295527573879764 1.0 18950 +348180 CTU2 cytosolic thiouridylase subunit 2 Novel N 1.270714451793614e-05 -0.295527961156514 1.0 18951 +374973 TEX38 testis expressed 38 Novel U 1.259431576450206e-05 -0.2955289339315482 1.0 18952 +26165 SPATA31A7 SPATA31 subfamily A member 7 Novel U 1.130531919763066e-05 -0.29554004726606026 1.0 18953 +100133267 DEFB130B defensin beta 130B Novel U 1.1289353573894052e-05 -0.29554018491678935 1.0 18954 +727830 SPATA31A3 SPATA31 subfamily A member 3 Novel U 1.0292833888877663e-05 -0.29554877660500023 1.0 18955 +286187 PPP1R42 protein phosphatase 1 regulatory subunit 42 Novel U 1.0108214222614544e-05 -0.2955503683393473 1.0 18956 +386675 KRTAP10-7 keratin associated protein 10-7 Novel U 9.633323300117818e-06 -0.29555446270376534 1.0 18957 +339779 PRR30 proline rich 30 Novel U 8.413547769924675e-06 -0.29556497923565145 1.0 18958 +51480 VCX2 variable charge X-linked 2 Novel U 7.7748213323276e-06 -0.29557048613981635 1.0 18959 +245939 DEFB128 defensin beta 128 Novel N 7.600745729211552e-06 -0.29557198696647297 1.0 18960 +388649 C1orf146 chromosome 1 open reading frame 146 Novel U 6.2694870108934545e-06 -0.2955834646723404 1.0 18961 +337882 KRTAP19-1 keratin associated protein 19-1 Novel U 5.1369470633111305e-06 -0.29559322908569047 1.0 18962 diff --git a/test/expected_result/expected_cli/All-Genes/Human-Combined/df_sim.tsv b/test/expected_result/expected_cli/All-Genes/Human-Combined/df_sim.tsv new file mode 100644 index 00000000..44b97d5c --- /dev/null +++ b/test/expected_result/expected_cli/All-Genes/Human-Combined/df_sim.tsv @@ -0,0 +1,8703 @@ +Task ID Name Similarity Z-score P-adjusted Rank +Biological Process GO:0031623 receptor internalization 0.41706455769162043 4.102707779511066 0.17766997870631301 1 +Biological Process GO:0006898 receptor-mediated endocytosis 0.4037700845748504 3.9447895725298974 0.347514737881891 2 +Biological Process GO:0036258 multivesicular body assembly 0.3999849589015627 3.8998280118667688 0.4188318012456652 3 +Biological Process GO:0036257 multivesicular body organization 0.39714653875094963 3.866111879086853 0.4811519589762517 4 +Biological Process GO:0006897 endocytosis 0.39696261907985886 3.863927191929106 0.4854780182886709 5 +Biological Process GO:1903543 positive regulation of exosomal secretion 0.3669528008971865 3.5074559999071764 1.0 6 +Biological Process GO:1903541 regulation of exosomal secretion 0.35130900399205134 3.3216313842238194 1.0 7 +Biological Process GO:0046755 viral budding 0.34985559085719675 3.30436703728482 1.0 8 +Biological Process GO:0060627 regulation of vesicle-mediated transport 0.34214901028468536 3.2128245312165093 1.0 9 +Biological Process GO:0006906 vesicle fusion 0.33839117067743574 3.1681870876948772 1.0 10 +Biological Process GO:0090174 organelle membrane fusion 0.33449346559855897 3.121888254187802 1.0 11 +Biological Process GO:0000281 mitotic cytokinesis 0.3321947696828167 3.0945832279396353 1.0 12 +Disease MONDO:0000621 immune system cancer 0.3314673336921097 3.085942390026238 1.0 13 +Biological Process GO:0045921 positive regulation of exocytosis 0.3313322346265539 3.0843376177265007 1.0 14 +Disease MONDO:0020076 myeloproliferative neoplasm 0.3299433457039711 3.067839720711416 1.0 15 +Disease MONDO:0021138 bone marrow cancer 0.3299433457039711 3.067839720711416 1.0 15 +Disease MONDO:0005374 bone marrow neoplasm 0.3299433457039711 3.067839720711416 1.0 15 +Disease MONDO:0005170 myeloid neoplasm 0.3299433457039711 3.067839720711416 1.0 15 +Biological Process GO:0039702 viral budding via host ESCRT complex 0.32883988987657564 3.054732336596629 1.0 19 +Biological Process GO:0051701 biological process involved in interaction with host 0.3264232409203799 3.0260262068603594 1.0 20 +Biological Process GO:0032456 endocytic recycling 0.32129400754068904 2.9650986822120164 1.0 21 +Biological Process GO:0030100 regulation of endocytosis 0.3166631369897598 2.910090953230101 1.0 22 +Biological Process GO:0036465 synaptic vesicle recycling 0.31642399711562774 2.907250333687759 1.0 23 +Biological Process GO:0061640 cytoskeleton-dependent cytokinesis 0.31551813184726907 2.896490026175815 1.0 24 +Disease MONDO:0005059 leukemia 0.31497522451843385 2.8900411093083656 1.0 25 +Biological Process GO:0007173 epidermal growth factor receptor signaling pathway 0.314766530465317 2.8875621400113967 1.0 26 +Biological Process GO:0042060 wound healing 0.31465596927798534 2.8862488405438835 1.0 27 +Biological Process GO:0098657 import into cell 0.31427836923672214 2.881763523905266 1.0 28 +Disease MONDO:0000637 musculoskeletal system cancer 0.3140929346587247 2.8795608419476992 1.0 29 +Disease MONDO:0002129 bone cancer 0.3140929346587247 2.8795608419476992 1.0 29 +Biological Process GO:0032506 cytokinetic process 0.3133497416969815 2.8707328350813373 1.0 31 +Biological Process GO:2000641 regulation of early endosome to late endosome transport 0.312373571305271 2.8591374091766752 1.0 32 +Biological Process GO:0016236 macroautophagy 0.3123698393573995 2.8590930792877627 1.0 33 +Biological Process GO:0010324 membrane invagination 0.3122613720753351 2.8578046522437366 1.0 34 +Biological Process GO:0046761 viral budding from plasma membrane 0.3109224303971152 2.841900052849713 1.0 35 +Biological Process GO:0046753 non-lytic viral release 0.3109224303971152 2.841900052849713 1.0 35 +Biological Process GO:0043162 ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway 0.31018235088464974 2.8331090290456467 1.0 37 +Biological Process GO:0000910 cytokinesis 0.30821409733240634 2.8097291576416032 1.0 38 +Biological Process GO:0090169 regulation of spindle assembly 0.30703993246088224 2.795781857166982 1.0 39 +Biological Process GO:0016197 endosomal transport 0.3066320610453239 2.7909369624458376 1.0 40 +Biological Process GO:1901673 regulation of mitotic spindle assembly 0.3060896644087693 2.78449411182927 1.0 41 +Disease MONDO:0015756 myeloid hemopathy 0.3035292923861519 2.754080769723485 1.0 42 +Biological Process GO:0051668 localization within membrane 0.30251006477168896 2.7419738892199885 1.0 43 +Biological Process GO:0002407 dendritic cell chemotaxis 0.301698874289134 2.7323381747843647 1.0 44 +Biological Process GO:0036336 dendritic cell migration 0.301698874289134 2.7323381747843647 1.0 44 +Biological Process GO:0061952 midbody abscission 0.3009716640582838 2.7237000185561677 1.0 46 +Disease MONDO:0004643 myeloid leukemia 0.30095041595061434 2.7234476232159817 1.0 47 +Biological Process GO:0045807 positive regulation of endocytosis 0.3008125772580674 2.7218103082965825 1.0 48 +Biological Process GO:0008333 endosome to lysosome transport 0.3005364857249715 2.7185307590067205 1.0 49 +Biological Process GO:0019221 cytokine-mediated signaling pathway 0.3005137243005138 2.718260387754914 1.0 50 +Biological Process GO:0007176 regulation of epidermal growth factor-activated receptor activity 0.3003297414221463 2.716074949790442 1.0 51 +Biological Process GO:0009611 response to wounding 0.2997608013218278 2.7093168030227717 1.0 52 +Biological Process GO:0043491 phosphatidylinositol 3-kinase/protein kinase B signal transduction 0.2991222922695824 2.7017322824640257 1.0 53 +Biological Process GO:0051301 cell division 0.29857380012706214 2.695217026467848 1.0 54 +Biological Process GO:0018108 peptidyl-tyrosine phosphorylation 0.2982694321278041 2.6916015955829153 1.0 55 +Biological Process GO:1902774 late endosome to lysosome transport 0.2981630857859925 2.690338362097061 1.0 56 +Biological Process GO:0038128 ERBB2 signaling pathway 0.2975107749173911 2.682589896861991 1.0 57 +Biological Process GO:0006623 protein targeting to vacuole 0.2970271134728849 2.676844731376193 1.0 58 +Biological Process GO:0072666 establishment of protein localization to vacuole 0.2970271134728849 2.676844731376193 1.0 58 +Biological Process GO:0051223 regulation of protein transport 0.29586224136915074 2.6630078149096024 1.0 60 +Biological Process GO:0006622 protein targeting to lysosome 0.29585384909178747 2.6629081273641044 1.0 61 +Biological Process GO:0043112 receptor metabolic process 0.29557988428308235 2.6596538403392147 1.0 62 +Disease MONDO:0021581 connective tissue neoplasm 0.2952838669193546 2.656137602357868 1.0 63 +Biological Process GO:0016050 vesicle organization 0.2950572457641364 2.6534456862374074 1.0 64 +Biological Process GO:1904375 regulation of protein localization to cell periphery 0.29495524989045807 2.6522341297244654 1.0 65 +Biological Process GO:0030168 platelet activation 0.2943331750982956 2.644844823286848 1.0 66 +Biological Process GO:0061025 membrane fusion 0.29377040319865333 2.6381599454018576 1.0 67 +Biological Process GO:0070201 regulation of establishment of protein localization 0.29322798300857866 2.6317168150051424 1.0 68 +Biological Process GO:0044409 symbiont entry into host 0.2928981471272516 2.6277988642507406 1.0 69 +Biological Process GO:0061162 establishment of monopolar cell polarity 0.29201054237733126 2.6172554640434336 1.0 70 +Biological Process GO:0072583 clathrin-dependent endocytosis 0.2917851488193163 2.6145781299186286 1.0 71 +Biological Process GO:0060396 growth hormone receptor signaling pathway 0.29165618030838925 2.6130461793235398 1.0 72 +Biological Process GO:0071378 cellular response to growth hormone stimulus 0.29165618030838925 2.6130461793235398 1.0 72 +Biological Process GO:0045920 negative regulation of exocytosis 0.29160601210742776 2.6124502570727124 1.0 74 +Disease MONDO:0019060 bone neoplasm 0.2909935152460963 2.6051747219481913 1.0 75 +Biological Process GO:0019068 virion assembly 0.29052708950679595 2.5996342905378436 1.0 76 +Biological Process GO:0038083 peptidyl-tyrosine autophosphorylation 0.28953200422555003 2.5878141843909153 1.0 77 +Biological Process GO:0017157 regulation of exocytosis 0.2894326662748288 2.5866341999774454 1.0 78 +Biological Process GO:0019058 viral life cycle 0.28930320257555464 2.5850963672947245 1.0 79 +Biological Process GO:0061919 process utilizing autophagic mechanism 0.288895370199196 2.580251936300149 1.0 80 +Biological Process GO:0006914 autophagy 0.288895370199196 2.580251936300149 1.0 80 +Biological Process GO:0072657 protein localization to membrane 0.28876836682046747 2.578743328499509 1.0 82 +Disease MONDO:0044881 hematopoietic and lymphoid cell neoplasm 0.28845994995415936 2.575079803205777 1.0 83 +Biological Process GO:0070527 platelet aggregation 0.28802356131687823 2.56989616707811 1.0 84 +Biological Process GO:0046326 positive regulation of glucose import 0.2874112370817621 2.5626226824915954 1.0 85 +Biological Process GO:1903671 negative regulation of sprouting angiogenesis 0.2863789968259365 2.55036123151554 1.0 86 +Biological Process GO:0043954 cellular component maintenance 0.2862702434066551 2.5490694055947123 1.0 87 +Biological Process GO:0007034 vacuolar transport 0.2850553047376527 2.53463777415541 1.0 88 +Biological Process GO:0006895 Golgi to endosome transport 0.28486305733329353 2.532354166138264 1.0 89 +Biological Process GO:0031294 lymphocyte costimulation 0.2845032231612217 2.5280798811203447 1.0 90 +Biological Process GO:0051051 negative regulation of transport 0.2841333613786938 2.5236864832763954 1.0 91 +Biological Process GO:0071985 multivesicular body sorting pathway 0.2834588200753112 2.5156739541427244 1.0 92 +Biological Process GO:0002092 positive regulation of receptor internalization 0.28299190113887884 2.5101276642973644 1.0 93 +Biological Process GO:0007032 endosome organization 0.2822812507358452 2.501686213744807 1.0 94 +Disease MONDO:0010643 acute leukemia 0.28190074450812963 2.497166376012373 1.0 95 +Disease MONDO:0018874 acute myeloid leukemia 0.28190074450812963 2.497166376012373 1.0 95 +Biological Process GO:0001778 plasma membrane repair 0.2817237477600474 2.495063922695634 1.0 97 +Biological Process GO:0031295 T cell costimulation 0.2812263225078233 2.4891552640185712 1.0 98 +Biological Process GO:0051896 regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction 0.2808143421537306 2.4842615613303676 1.0 99 +Biological Process GO:0030866 cortical actin cytoskeleton organization 0.28025689036789503 2.477639878340422 1.0 100 +Biological Process GO:0061462 protein localization to lysosome 0.27935031054805604 2.4668710830390355 1.0 101 +Biological Process GO:0051224 negative regulation of protein transport 0.279092133646321 2.463804332439155 1.0 102 +Biological Process GO:0038084 vascular endothelial growth factor signaling pathway 0.27909207833448924 2.46380367541836 1.0 103 +Disease MONDO:0002334 hematopoietic and lymphoid system neoplasm 0.27896309133259223 2.462271505178551 1.0 104 +Biological Process GO:0032386 regulation of intracellular transport 0.2789212747005607 2.461774786918684 1.0 105 +Biological Process GO:0034331 cell junction maintenance 0.2780201708220259 2.4510710375070213 1.0 106 +Biological Process GO:0007041 lysosomal transport 0.2779924858642373 2.4507421821356257 1.0 107 +Biological Process GO:0001919 regulation of receptor recycling 0.2776717765122607 2.446932640728351 1.0 108 +Biological Process GO:0097352 autophagosome maturation 0.2775775542525776 2.4458134229770203 1.0 109 +Biological Process GO:0010828 positive regulation of glucose transmembrane transport 0.2775106828876792 2.4450190924345176 1.0 110 +Biological Process GO:0018212 peptidyl-tyrosine modification 0.27743657906665975 2.4441388512663975 1.0 111 +Biological Process GO:1903530 regulation of secretion by cell 0.277357315391633 2.4431973188469462 1.0 112 +Biological Process GO:0034109 homotypic cell-cell adhesion 0.27681513740772146 2.436757065492643 1.0 113 +Biological Process GO:1904950 negative regulation of establishment of protein localization 0.27672847033962644 2.4357275919755152 1.0 114 +Biological Process GO:0006909 phagocytosis 0.2765054963808471 2.433078999025298 1.0 115 +Biological Process GO:0032801 receptor catabolic process 0.2758992746071536 2.4258780024386892 1.0 116 +Biological Process GO:0060416 response to growth hormone 0.27586726991609023 2.425497835177955 1.0 117 +Biological Process GO:0038127 ERBB signaling pathway 0.275491538066176 2.4210347098233043 1.0 118 +Biological Process GO:1902410 mitotic cytokinetic process 0.2752118528793759 2.4177124733698 1.0 119 +Biological Process GO:0097242 amyloid-beta clearance 0.2748380407250566 2.413272151091559 1.0 120 +Biological Process GO:1903670 regulation of sprouting angiogenesis 0.2735517054965415 2.3979924366508585 1.0 121 +Biological Process GO:0051897 positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction 0.2730470717064659 2.3919981514609985 1.0 122 +Biological Process GO:0051057 positive regulation of small GTPase mediated signal transduction 0.2721136886636635 2.3809109744626067 1.0 123 +Biological Process GO:0048284 organelle fusion 0.27196731363493 2.379172260797057 1.0 124 +Biological Process GO:0072665 protein localization to vacuole 0.27196092218392254 2.3790963400385405 1.0 125 +Biological Process GO:0098876 vesicle-mediated transport to the plasma membrane 0.2716329332279792 2.375200327960645 1.0 126 +Biological Process GO:0070507 regulation of microtubule cytoskeleton organization 0.27162239440626834 2.3750751427191044 1.0 127 +Biological Process GO:0030859 polarized epithelial cell differentiation 0.27107629884392725 2.368588354465985 1.0 128 +Biological Process GO:0043473 pigmentation 0.2705881997160846 2.3627904760227425 1.0 129 +Biological Process GO:0046718 symbiont entry into host cell 0.27025964687942183 2.358887765895862 1.0 130 +Biological Process GO:0006892 post-Golgi vesicle-mediated transport 0.2700485442355449 2.3563801861883236 1.0 131 +Biological Process GO:0051493 regulation of cytoskeleton organization 0.26967292565216283 2.35191840626854 1.0 132 +Biological Process GO:0032388 positive regulation of intracellular transport 0.269424127611421 2.348963062333562 1.0 133 +Biological Process GO:0060236 regulation of mitotic spindle organization 0.26927835499017805 2.3472315043566914 1.0 134 +Biological Process GO:0002429 immune response-activating cell surface receptor signaling pathway 0.2689003459010253 2.3427413288486236 1.0 135 +Biological Process GO:0043405 regulation of MAP kinase activity 0.26889765569731705 2.3427093733027142 1.0 136 +Biological Process GO:0051046 regulation of secretion 0.26852626278560954 2.33829778796291 1.0 137 +Biological Process GO:1903532 positive regulation of secretion by cell 0.26769115586088155 2.3283779824142234 1.0 138 +Biological Process GO:0045197 establishment or maintenance of epithelial cell apical/basal polarity 0.2676734942436082 2.328168189148428 1.0 139 +Biological Process GO:0061339 establishment or maintenance of monopolar cell polarity 0.26701899531769135 2.320393733106126 1.0 140 +Phenotype HP:0007206 Hemimegalencephaly 0.2664360861087929 2.313469654483865 1.0 141 +Biological Process GO:0002757 immune response-activating signaling pathway 0.266060882157535 2.309012799765782 1.0 142 +Biological Process GO:0008286 insulin receptor signaling pathway 0.2655909859587744 2.30343114455284 1.0 143 +Biological Process GO:0043122 regulation of canonical NF-kappaB signal transduction 0.26520094981846 2.2987981058911866 1.0 144 +Biological Process GO:0007265 Ras protein signal transduction 0.2650485035413873 2.2969872749898927 1.0 145 +Biological Process GO:0048013 ephrin receptor signaling pathway 0.26496359144969595 2.2959786479346387 1.0 146 +Biological Process GO:0048008 platelet-derived growth factor receptor signaling pathway 0.26441605072941765 2.289474693393826 1.0 147 +Biological Process GO:0048260 positive regulation of receptor-mediated endocytosis 0.2642504387901319 2.2875074743640105 1.0 148 +Biological Process GO:0035089 establishment of apical/basal cell polarity 0.26403884279537615 2.2849940343951807 1.0 149 +Biological Process GO:0032006 regulation of TOR signaling 0.26398136078905 2.284311235212921 1.0 150 +Biological Process GO:0030865 cortical cytoskeleton organization 0.2636806197270307 2.280738886849616 1.0 151 +Biological Process GO:0030010 establishment of cell polarity 0.26359912790835016 2.279770887457941 1.0 152 +Biological Process GO:0010640 regulation of platelet-derived growth factor receptor signaling pathway 0.2628752751488036 2.2711726129041514 1.0 153 +Biological Process GO:0007169 cell surface receptor protein tyrosine kinase signaling pathway 0.26204798596005596 2.2613456702194403 1.0 154 +Biological Process GO:0045732 positive regulation of protein catabolic process 0.2618408827831824 2.25888559812296 1.0 155 +Biological Process GO:0031529 ruffle organization 0.2616759958997983 2.256926991659204 1.0 156 +Phenotype HP:0025539 Abnormal B cell subset distribution 0.26161118932496574 2.256157187695688 1.0 157 +Biological Process GO:0099003 vesicle-mediated transport in synapse 0.26151116877389513 2.254969095023823 1.0 158 +Biological Process GO:0099504 synaptic vesicle cycle 0.26151116877389513 2.254969095023823 1.0 158 +Biological Process GO:0071345 cellular response to cytokine stimulus 0.26118175370708707 2.25105614290861 1.0 160 +Biological Process GO:0043123 positive regulation of canonical NF-kappaB signal transduction 0.26113734314118364 2.250528612642695 1.0 161 +Biological Process GO:0040011 locomotion 0.2606379940132447 2.244597101235729 1.0 162 +Biological Process GO:0090224 regulation of spindle organization 0.26057677754186614 2.243869942264259 1.0 163 +Biological Process GO:0006935 chemotaxis 0.2603798574659175 2.241530829985099 1.0 164 +Biological Process GO:0042330 taxis 0.2603798574659175 2.241530829985099 1.0 164 +Biological Process GO:0042058 regulation of epidermal growth factor receptor signaling pathway 0.2603132823921066 2.240740018932001 1.0 166 +Biological Process GO:1902115 regulation of organelle assembly 0.2603103327189855 2.2407049812824176 1.0 167 +Biological Process GO:0043087 regulation of GTPase activity 0.26015941922231245 2.2389123574909706 1.0 168 +Biological Process GO:0044089 positive regulation of cellular component biogenesis 0.2600290732061127 2.237364044219387 1.0 169 +Biological Process GO:0001961 positive regulation of cytokine-mediated signaling pathway 0.2598155850065359 2.234828127722909 1.0 170 +Biological Process GO:0034139 regulation of toll-like receptor 3 signaling pathway 0.25964375020246455 2.232786990483579 1.0 171 +Biological Process GO:0051047 positive regulation of secretion 0.25933997042368984 2.2291785467671654 1.0 172 +Phenotype HP:0001067 Neurofibroma 0.2592853189252089 2.22852936973148 1.0 173 +Biological Process GO:2000008 regulation of protein localization to cell surface 0.25907270279182426 2.226003812060675 1.0 174 +Biological Process GO:0002764 immune response-regulating signaling pathway 0.2589452301074826 2.2244896296200847 1.0 175 +Biological Process GO:0046777 protein autophosphorylation 0.2585316997976195 2.2195775158046396 1.0 176 +Biological Process GO:0038093 Fc receptor signaling pathway 0.2585237654541963 2.219483267820838 1.0 177 +Biological Process GO:0007259 cell surface receptor signaling pathway via JAK-STAT 0.2584906441071788 2.219089836378474 1.0 178 +Biological Process GO:0016241 regulation of macroautophagy 0.25830315051607866 2.216862696463493 1.0 179 +Biological Process GO:0019882 antigen processing and presentation 0.25826003844124856 2.216350590305046 1.0 180 +Disease MONDO:0003225 bone marrow disorder 0.25804685567808106 2.2138183019305457 1.0 181 +Biological Process GO:0061245 establishment or maintenance of bipolar cell polarity 0.2580373480561675 2.21370536578091 1.0 182 +Biological Process GO:0035088 establishment or maintenance of apical/basal cell polarity 0.2580373480561675 2.21370536578091 1.0 182 +Biological Process GO:1900274 regulation of phospholipase C activity 0.25767417395141046 2.209391407420809 1.0 184 +Biological Process GO:0045744 negative regulation of G protein-coupled receptor signaling pathway 0.257374757752594 2.2058347964259313 1.0 185 +Biological Process GO:0043406 positive regulation of MAP kinase activity 0.2571698130267974 2.2034003634594064 1.0 186 +Biological Process GO:0098927 vesicle-mediated transport between endosomal compartments 0.2570162446328188 2.2015762035086457 1.0 187 +Biological Process GO:0045022 early endosome to late endosome transport 0.2570162446328188 2.2015762035086457 1.0 187 +Biological Process GO:0032886 regulation of microtubule-based process 0.25644553776660683 2.194797070237817 1.0 189 +Biological Process GO:0060326 cell chemotaxis 0.25643951697486833 2.1947255523500746 1.0 190 +Biological Process GO:0051495 positive regulation of cytoskeleton organization 0.2560774682171244 2.1904249614082225 1.0 191 +Biological Process GO:0002726 positive regulation of T cell cytokine production 0.25605358267796563 2.1901412373761677 1.0 192 +Biological Process GO:0097696 cell surface receptor signaling pathway via STAT 0.25586344869343414 2.187882733585933 1.0 193 +Biological Process GO:0051222 positive regulation of protein transport 0.2553836053858106 2.182182921783972 1.0 194 +Biological Process GO:0031397 negative regulation of protein ubiquitination 0.2552726743537639 2.18086522912135 1.0 195 +Biological Process GO:0034260 negative regulation of GTPase activity 0.2550742401265893 2.1785081310187127 1.0 196 +Biological Process GO:0048268 clathrin coat assembly 0.25497761672433894 2.1773603913300636 1.0 197 +Biological Process GO:0038096 Fc-gamma receptor signaling pathway involved in phagocytosis 0.2546524122021969 2.173497454108877 1.0 198 +Biological Process GO:0002431 Fc receptor mediated stimulatory signaling pathway 0.2546524122021969 2.173497454108877 1.0 198 +Biological Process GO:0002433 immune response-regulating cell surface receptor signaling pathway involved in phagocytosis 0.2546524122021969 2.173497454108877 1.0 198 +Biological Process GO:0002861 regulation of inflammatory response to antigenic stimulus 0.25457416974916225 2.172568052260115 1.0 201 +Biological Process GO:0090160 Golgi to lysosome transport 0.2544028370083127 2.1705328787715166 1.0 202 +Biological Process GO:0006896 Golgi to vacuole transport 0.2544028370083127 2.1705328787715166 1.0 202 +Biological Process GO:0090316 positive regulation of intracellular protein transport 0.2541689395341673 2.16775453100173 1.0 204 +Biological Process GO:0061097 regulation of protein tyrosine kinase activity 0.25415234942374254 2.167557465614566 1.0 205 +Phenotype HP:0030374 Decreased proportion of memory B cells 0.2541501448070669 2.167531278107213 1.0 206 +Phenotype HP:0030373 Abnormal proportion of memory B cells 0.2541501448070669 2.167531278107213 1.0 206 +Biological Process GO:1904951 positive regulation of establishment of protein localization 0.2540322280433429 2.1661306055317184 1.0 208 +Biological Process GO:0000045 autophagosome assembly 0.2538436319402264 2.163890369443669 1.0 209 +Biological Process GO:0010863 positive regulation of phospholipase C activity 0.2538289367605615 2.163715812964178 1.0 210 +Biological Process GO:0030890 positive regulation of B cell proliferation 0.2537186063511989 2.162405254789438 1.0 211 +Biological Process GO:0031396 regulation of protein ubiquitination 0.2535554392303534 2.1604670765001686 1.0 212 +Disease MONDO:0020683 acute disease 0.2535529837270959 2.160437908840175 1.0 213 +Biological Process GO:1905475 regulation of protein localization to membrane 0.25301170972455456 2.1540083934155265 1.0 214 +Biological Process GO:0051048 negative regulation of secretion 0.25292280339524575 2.1529523208664 1.0 215 +Biological Process GO:0010517 regulation of phospholipase activity 0.25250802971364694 2.148025437677743 1.0 216 +Biological Process GO:0031334 positive regulation of protein-containing complex assembly 0.2524875588656492 2.1477822750053464 1.0 217 +Biological Process GO:1903829 positive regulation of protein localization 0.2524637901960951 2.1474999392072034 1.0 218 +Biological Process GO:0060191 regulation of lipase activity 0.25235915249844454 2.1462570018263474 1.0 219 +Biological Process GO:1990778 protein localization to cell periphery 0.251994512211561 2.1419256274430247 1.0 220 +Biological Process GO:0061099 negative regulation of protein tyrosine kinase activity 0.2519496063356801 2.1413922136446932 1.0 221 +Biological Process GO:1903076 regulation of protein localization to plasma membrane 0.25149270461249773 2.135964913122302 1.0 222 +Biological Process GO:0002720 positive regulation of cytokine production involved in immune response 0.2513255467238664 2.133979330555505 1.0 223 +Biological Process GO:0031468 nuclear membrane reassembly 0.25116887618472483 2.132118321818212 1.0 224 +Biological Process GO:1902905 positive regulation of supramolecular fiber organization 0.2511247648940722 2.131594346489043 1.0 225 +Biological Process GO:1902903 regulation of supramolecular fiber organization 0.2508935469545508 2.128847827532602 1.0 226 +Biological Process GO:0002768 immune response-regulating cell surface receptor signaling pathway 0.25004599490661605 2.118780192767578 1.0 227 +Biological Process GO:0072659 protein localization to plasma membrane 0.2496824118704417 2.114461376921541 1.0 228 +Biological Process GO:0007179 transforming growth factor beta receptor signaling pathway 0.24908917283901688 2.1074145956515347 1.0 229 +Biological Process GO:1903533 regulation of protein targeting 0.2488648474346068 2.104749949573904 1.0 230 +Biological Process GO:0001775 cell activation 0.2486883040729675 2.1026528818014825 1.0 231 +Disease MONDO:0005626 epithelial neoplasm 0.24858821608146597 2.1014639880394324 1.0 232 +Biological Process GO:0050851 antigen receptor-mediated signaling pathway 0.24834878264814342 2.098619881458484 1.0 233 +Biological Process GO:1903321 negative regulation of protein modification by small protein conjugation or removal 0.24797129156536546 2.094135859081661 1.0 234 +Biological Process GO:1905037 autophagosome organization 0.24775113132459126 2.0915206888401454 1.0 235 +Biological Process GO:0042026 protein refolding 0.24768188021874293 2.0906980905791257 1.0 236 +Biological Process GO:0035025 positive regulation of Rho protein signal transduction 0.24756279736541098 2.0892835666250575 1.0 237 +Biological Process GO:0050730 regulation of peptidyl-tyrosine phosphorylation 0.2468358566998674 2.0806486124244636 1.0 238 +Biological Process GO:0002862 negative regulation of inflammatory response to antigenic stimulus 0.2467906210675257 2.0801112816187732 1.0 239 +Biological Process GO:0048010 vascular endothelial growth factor receptor signaling pathway 0.24645054158699176 2.0760716524190825 1.0 240 +Biological Process GO:0071350 cellular response to interleukin-15 0.24633680584945306 2.074720644102767 1.0 241 +Biological Process GO:0070672 response to interleukin-15 0.24633680584945306 2.074720644102767 1.0 241 +Biological Process GO:0035723 interleukin-15-mediated signaling pathway 0.24633680584945306 2.074720644102767 1.0 241 +Biological Process GO:0042059 negative regulation of epidermal growth factor receptor signaling pathway 0.2457309888983391 2.0675244561953248 1.0 244 +Biological Process GO:0001881 receptor recycling 0.2455456953657994 2.0653234496441915 1.0 245 +Biological Process GO:0043434 response to peptide hormone 0.24550700177371243 2.0648638283692176 1.0 246 +Biological Process GO:0038094 Fc-gamma receptor signaling pathway 0.2455055972740291 2.064847145040006 1.0 247 +Biological Process GO:0006605 protein targeting 0.2454910276358082 2.064674079802746 1.0 248 +Biological Process GO:1903320 regulation of protein modification by small protein conjugation or removal 0.24536286357336579 2.063151684837367 1.0 249 +Biological Process GO:0030947 regulation of vascular endothelial growth factor receptor signaling pathway 0.24511209825076463 2.060172972573225 1.0 250 +Biological Process GO:1901874 negative regulation of post-translational protein modification 0.2449374776306137 2.058098744057814 1.0 251 +Biological Process GO:0002696 positive regulation of leukocyte activation 0.244653462287294 2.0547250719026073 1.0 252 +Biological Process GO:1903531 negative regulation of secretion by cell 0.24462489254441988 2.0543857066243474 1.0 253 +Biological Process GO:0051251 positive regulation of lymphocyte activation 0.24447727755307735 2.052632264080848 1.0 254 +Biological Process GO:0070102 interleukin-6-mediated signaling pathway 0.24444012385493008 2.052190934413805 1.0 255 +Phenotype HP:0100621 Dysgerminoma 0.24421420224674917 2.0495073278527274 1.0 256 +Biological Process GO:1901873 regulation of post-translational protein modification 0.2441242137665297 2.0484384009896317 1.0 257 +Biological Process GO:1903828 negative regulation of protein localization 0.2440159309861627 2.047152165546354 1.0 258 +Biological Process GO:0010827 regulation of glucose transmembrane transport 0.2439844512719026 2.046778234214998 1.0 259 +Biological Process GO:0042176 regulation of protein catabolic process 0.24394105656505027 2.046262770816155 1.0 260 +Biological Process GO:0042147 retrograde transport, endosome to Golgi 0.2437674978231168 2.044201155805819 1.0 261 +Biological Process GO:1901184 regulation of ERBB signaling pathway 0.24367936828157832 2.0431543103190073 1.0 262 +Biological Process GO:0016482 cytosolic transport 0.24300095887038065 2.0350958339225005 1.0 263 +Biological Process GO:0051580 regulation of neurotransmitter uptake 0.2429064893802826 2.0339736794482555 1.0 264 +Biological Process GO:0050867 positive regulation of cell activation 0.24275642192168 2.032191105307815 1.0 265 +Biological Process GO:0002090 regulation of receptor internalization 0.24243895140562244 2.028420036366244 1.0 266 +Biological Process GO:0031116 positive regulation of microtubule polymerization 0.24232104153682676 2.0270194456920554 1.0 267 +Biological Process GO:0050870 positive regulation of T cell activation 0.2419793690751011 2.022960894288277 1.0 268 +Biological Process GO:0001819 positive regulation of cytokine production 0.2419550943085449 2.0226725468242015 1.0 269 +Biological Process GO:1903729 regulation of plasma membrane organization 0.24176674430151757 2.0204352339849945 1.0 270 +Biological Process GO:0032509 endosome transport via multivesicular body sorting pathway 0.24163170503899467 2.0188311720547194 1.0 271 +Biological Process GO:0032816 positive regulation of natural killer cell activation 0.24146313470876168 2.0168288118207482 1.0 272 +Phenotype HP:0002958 Immune dysregulation 0.24125518511739863 2.0143586856019744 1.0 273 +Biological Process GO:0090162 establishment of epithelial cell polarity 0.24101731619229416 2.0115331630093074 1.0 274 +Phenotype HP:0001050 Plethora 0.24077482355811464 2.0086527177551465 1.0 275 +Biological Process GO:0046425 regulation of receptor signaling pathway via JAK-STAT 0.24051472143084707 2.0055630983915727 1.0 276 +Biological Process GO:0070723 response to cholesterol 0.24019882332857345 2.0018107073444336 1.0 277 +Biological Process GO:0001738 morphogenesis of a polarized epithelium 0.24008484424285825 2.0004568084203163 1.0 278 +Biological Process GO:0071709 membrane assembly 0.24004937184715647 2.0000354500800985 1.0 279 +Biological Process GO:0016032 viral process 0.23991998699465356 1.9984985539776114 1.0 280 +Biological Process GO:0046324 regulation of glucose import 0.23937684549418747 1.9920468555058255 1.0 281 +Biological Process GO:0045954 positive regulation of natural killer cell mediated cytotoxicity 0.2393354155864328 1.9915547309446977 1.0 282 +Biological Process GO:0032970 regulation of actin filament-based process 0.23914103315487578 1.9892457620378066 1.0 283 +Biological Process GO:0010518 positive regulation of phospholipase activity 0.23912207113293094 1.9890205219338952 1.0 284 +Biological Process GO:0043254 regulation of protein-containing complex assembly 0.23903542400653555 1.9879912852939587 1.0 285 +Biological Process GO:0030595 leukocyte chemotaxis 0.23874790027816406 1.9845759388375663 1.0 286 +Biological Process GO:0033157 regulation of intracellular protein transport 0.2385774132209364 1.9825508107896614 1.0 287 +Biological Process GO:1904377 positive regulation of protein localization to cell periphery 0.23803543576242925 1.9761129393734789 1.0 288 +Biological Process GO:1901699 cellular response to nitrogen compound 0.23801995546387988 1.975929056870654 1.0 289 +Biological Process GO:0032956 regulation of actin cytoskeleton organization 0.23764516129425006 1.9714770697377246 1.0 290 +Biological Process GO:0002717 positive regulation of natural killer cell mediated immunity 0.23742468042655562 1.9688580909339661 1.0 291 +Phenotype HP:0012062 Bone cyst 0.23730130701331298 1.967392601625943 1.0 292 +Biological Process GO:0090141 positive regulation of mitochondrial fission 0.2372277307119759 1.9665186265927541 1.0 293 +Biological Process GO:0051898 negative regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction 0.2371170550450663 1.9652039672812271 1.0 294 +Biological Process GO:0002252 immune effector process 0.2368870779832395 1.9624721880725666 1.0 295 +Biological Process GO:0045089 positive regulation of innate immune response 0.23679788792839795 1.9614127452937955 1.0 296 +Biological Process GO:0048193 Golgi vesicle transport 0.23679724586413542 1.9614051185427228 1.0 297 +Biological Process GO:0090050 positive regulation of cell migration involved in sprouting angiogenesis 0.23633431553577422 1.9559062073207514 1.0 298 +Biological Process GO:0002478 antigen processing and presentation of exogenous peptide antigen 0.23625380758907522 1.9549498948382051 1.0 299 +Biological Process GO:0048259 regulation of receptor-mediated endocytosis 0.23595077324972002 1.951350305813174 1.0 300 +Biological Process GO:0019884 antigen processing and presentation of exogenous antigen 0.23592711450943593 1.951069275808278 1.0 301 +Biological Process GO:0043410 positive regulation of MAPK cascade 0.23576532723456978 1.9491474879995527 1.0 302 +Biological Process GO:0045806 negative regulation of endocytosis 0.23557762501345514 1.946917869875957 1.0 303 +Biological Process GO:0006887 exocytosis 0.23548949348501458 1.9458710007877578 1.0 304 +Disease MONDO:0024276 glandular cell neoplasm 0.23520618281247596 1.9425056990542509 1.0 305 +Disease MONDO:0004970 adenocarcinoma 0.23520618281247596 1.9425056990542509 1.0 305 +Biological Process GO:0071902 positive regulation of protein serine/threonine kinase activity 0.23515930829217224 1.941948900741565 1.0 307 +Biological Process GO:0031113 regulation of microtubule polymerization 0.2348029517908562 1.9377159251855103 1.0 308 +Biological Process GO:0110053 regulation of actin filament organization 0.23480143510354357 1.9376979092371642 1.0 309 +Phenotype HP:0100646 Thyroiditis 0.23469436966565826 1.9364261339789801 1.0 310 +Biological Process GO:2000810 regulation of bicellular tight junction assembly 0.23457414917963681 1.9349980966714344 1.0 311 +Biological Process GO:0030593 neutrophil chemotaxis 0.23448189221293725 1.9339022236244356 1.0 312 +Biological Process GO:0045785 positive regulation of cell adhesion 0.2343567705646039 1.9324159679311277 1.0 313 +Phenotype HP:0001920 Renal artery stenosis 0.23434443448224396 1.9322694339549147 1.0 314 +Biological Process GO:1990858 cellular response to lectin 0.23404597632067803 1.9287242029916858 1.0 315 +Biological Process GO:1990840 response to lectin 0.23404597632067803 1.9287242029916858 1.0 315 +Biological Process GO:0002223 stimulatory C-type lectin receptor signaling pathway 0.23404597632067803 1.9287242029916858 1.0 315 +Biological Process GO:1903747 regulation of establishment of protein localization to mitochondrion 0.2337544688920804 1.925261536209671 1.0 318 +Biological Process GO:2000060 positive regulation of ubiquitin-dependent protein catabolic process 0.2333274909932712 1.9201896854030769 1.0 319 +Disease MONDO:0002514 hepatobiliary neoplasm 0.2332573926696867 1.9193570234784092 1.0 320 +Disease MONDO:0024477 liver and intrahepatic bile duct neoplasm 0.2332573926696867 1.9193570234784092 1.0 320 +Biological Process GO:0050878 regulation of body fluid levels 0.23320088040979403 1.918685743415159 1.0 322 +Biological Process GO:0043300 regulation of leukocyte degranulation 0.23307739116115123 1.9172188781580075 1.0 323 +Biological Process GO:0050900 leukocyte migration 0.2328881673630192 1.9149711860037784 1.0 324 +Biological Process GO:1903305 regulation of regulated secretory pathway 0.23277565236668796 1.913634678244271 1.0 325 +Biological Process GO:0035020 regulation of Rac protein signal transduction 0.23274976621554277 1.9133271899716193 1.0 326 +Biological Process GO:1903432 regulation of TORC1 signaling 0.23271538749190213 1.91291882279919 1.0 327 +Biological Process GO:0030101 natural killer cell activation 0.23258866141103396 1.9114135088771809 1.0 328 +Disease MONDO:0006181 digestive system carcinoma 0.2325478999622662 1.9109293245964787 1.0 329 +Biological Process GO:0090150 establishment of protein localization to membrane 0.2324125367008678 1.9093214140502386 1.0 330 +Biological Process GO:2001243 negative regulation of intrinsic apoptotic signaling pathway 0.23219672132029 1.906757854167838 1.0 331 +Biological Process GO:0002443 leukocyte mediated immunity 0.23199153956400054 1.9043206056380255 1.0 332 +Biological Process GO:0046641 positive regulation of alpha-beta T cell proliferation 0.2319867775729737 1.9042640403963635 1.0 333 +Biological Process GO:0044403 biological process involved in symbiotic interaction 0.2319834971775333 1.9042250742664848 1.0 334 +Biological Process GO:0071375 cellular response to peptide hormone stimulus 0.23191717056125094 1.9034372145125524 1.0 335 +Biological Process GO:0051656 establishment of organelle localization 0.2318660237390361 1.9028296677232956 1.0 336 +Biological Process GO:0050931 pigment cell differentiation 0.23179713050985407 1.9020113204950897 1.0 337 +Biological Process GO:0050709 negative regulation of protein secretion 0.23177908951778026 1.9017970208312043 1.0 338 +Biological Process GO:1990000 amyloid fibril formation 0.2317161149481518 1.901048978315056 1.0 339 +Biological Process GO:1903052 positive regulation of proteolysis involved in protein catabolic process 0.23167115755698797 1.90051495259318 1.0 340 +Biological Process GO:0007264 small GTPase-mediated signal transduction 0.23153797646671315 1.8989329629351266 1.0 341 +Biological Process GO:0010506 regulation of autophagy 0.2315082713677672 1.898580111346159 1.0 342 +Biological Process GO:0010968 regulation of microtubule nucleation 0.23149788105319868 1.898456690144565 1.0 343 +Biological Process GO:0002718 regulation of cytokine production involved in immune response 0.23128275729917103 1.895901345738155 1.0 344 +Biological Process GO:2000785 regulation of autophagosome assembly 0.23124089084217747 1.8954040356331958 1.0 345 +Biological Process GO:1903307 positive regulation of regulated secretory pathway 0.23096354995733204 1.8921096459366147 1.0 346 +Phenotype HP:0010828 Hemifacial spasm 0.23079649548362802 1.8901252917825382 1.0 347 +Phenotype HP:0012209 Juvenile myelomonocytic leukemia 0.23077794450934097 1.8899049343022956 1.0 348 +Biological Process GO:0032885 regulation of polysaccharide biosynthetic process 0.23068533979519723 1.8888049305423018 1.0 349 +Biological Process GO:2000272 negative regulation of signaling receptor activity 0.23066517977397982 1.8885654600213273 1.0 350 +Biological Process GO:0002711 positive regulation of T cell mediated immunity 0.23028884369709712 1.8840951573653555 1.0 351 +Biological Process GO:1903214 regulation of protein targeting to mitochondrion 0.2301262321660944 1.8821635786420121 1.0 352 +Biological Process GO:0061951 establishment of protein localization to plasma membrane 0.2301121158321101 1.8819958979725815 1.0 353 +Biological Process GO:0060193 positive regulation of lipase activity 0.2300038550115696 1.8807099233787858 1.0 354 +Phenotype HP:0032169 Severe infection 0.22996255808642618 1.8802193784496861 1.0 355 +Biological Process GO:0015031 protein transport 0.22975681747691745 1.877775491589977 1.0 356 +Biological Process GO:0007163 establishment or maintenance of cell polarity 0.22934282839377917 1.8728579282428062 1.0 357 +Biological Process GO:0050871 positive regulation of B cell activation 0.22933116100890572 1.8727193373800324 1.0 358 +Disease MONDO:0002082 endocrine gland neoplasm 0.2293255571068391 1.8726527715102392 1.0 359 +Phenotype HP:0100661 Trigeminal neuralgia 0.2292754626275908 1.8720577249617176 1.0 360 +Phenotype HP:0031911 Abnormal fifth cranial nerve physiology 0.2292754626275908 1.8720577249617176 1.0 360 +Phenotype HP:0033345 Neuralgia 0.2292754626275908 1.8720577249617176 1.0 360 +Phenotype HP:0012156 Hemophagocytosis 0.2290342390850193 1.8691923545939004 1.0 363 +Biological Process GO:0050708 regulation of protein secretion 0.22903093316591805 1.8691530852815847 1.0 364 +Biological Process GO:0043547 positive regulation of GTPase activity 0.2288741764558314 1.8672910529639652 1.0 365 +Biological Process GO:0032273 positive regulation of protein polymerization 0.22796721625184646 1.8565177392749925 1.0 366 +Biological Process GO:1904894 positive regulation of receptor signaling pathway via STAT 0.22796099780312318 1.8564438735216107 1.0 367 +Biological Process GO:0051648 vesicle localization 0.22746608164945892 1.850565019135566 1.0 368 +Biological Process GO:0035891 exit from host cell 0.2274166280607537 1.8499775853961076 1.0 369 +Biological Process GO:0019076 viral release from host cell 0.2274166280607537 1.8499775853961076 1.0 369 +Biological Process GO:0048753 pigment granule organization 0.2273634044127686 1.8493453690619226 1.0 371 +Biological Process GO:0032438 melanosome organization 0.2273634044127686 1.8493453690619226 1.0 371 +Phenotype HP:0012658 Abnormal brain FDG positron emission tomography 0.22735756420990627 1.8492759962965393 1.0 373 +Phenotype HP:0012657 Abnormal brain positron emission tomography 0.22735756420990627 1.8492759962965393 1.0 373 +Biological Process GO:0141091 transforming growth factor beta receptor superfamily signaling pathway 0.2273177885255494 1.84880352140416 1.0 375 +Disease MONDO:0021069 malignant endocrine neoplasm 0.2271146923812446 1.8463910467861968 1.0 376 +Biological Process GO:1904892 regulation of receptor signaling pathway via STAT 0.22698418255991815 1.8448407877577808 1.0 377 +Phenotype HP:0010975 Abnormal B cell count 0.22693706127934465 1.8442810583067928 1.0 378 +Phenotype HP:0001442 Typified by somatic mosaicism 0.22646498156021733 1.8386734661786985 1.0 379 +Phenotype HP:0001482 Subcutaneous nodule 0.2263151409329438 1.836893586450925 1.0 380 +Biological Process GO:0090066 regulation of anatomical structure size 0.22623708897700923 1.835966447419216 1.0 381 +Biological Process GO:0060760 positive regulation of response to cytokine stimulus 0.22612679489738807 1.8346563207867859 1.0 382 +Biological Process GO:0050732 negative regulation of peptidyl-tyrosine phosphorylation 0.22588422841698952 1.8317749983513782 1.0 383 +Phenotype HP:0001520 Large for gestational age 0.22566983820855935 1.8292283673557574 1.0 384 +Biological Process GO:0030225 macrophage differentiation 0.2248429057624941 1.8194056622338488 1.0 385 +Phenotype HP:0032255 Opportunistic fungal infection 0.2245745938490461 1.816218523043658 1.0 386 +Biological Process GO:0045860 positive regulation of protein kinase activity 0.224434382954387 1.8145530299557175 1.0 387 +Biological Process GO:0002250 adaptive immune response 0.22421530662147815 1.8119507348981319 1.0 388 +Biological Process GO:1905898 positive regulation of response to endoplasmic reticulum stress 0.22386348192778038 1.807771590353444 1.0 389 +Disease MONDO:0004992 cancer 0.22380024146408073 1.8070203894184096 1.0 390 +Biological Process GO:0050865 regulation of cell activation 0.22375952606905347 1.8065367521863989 1.0 391 +Biological Process GO:0032271 regulation of protein polymerization 0.2236241079943273 1.8049281905408363 1.0 392 +Biological Process GO:2001233 regulation of apoptotic signaling pathway 0.22360887665775775 1.8047472653292944 1.0 393 +Biological Process GO:0002715 regulation of natural killer cell mediated immunity 0.2235305644210701 1.803817034556418 1.0 394 +Biological Process GO:0042269 regulation of natural killer cell mediated cytotoxicity 0.2234607858775537 1.8029881711346725 1.0 395 +Biological Process GO:0031110 regulation of microtubule polymerization or depolymerization 0.22343587500774809 1.8026922677273325 1.0 396 +Biological Process GO:0090557 establishment of endothelial intestinal barrier 0.22343044322095795 1.8026277463263662 1.0 397 +Biological Process GO:0071900 regulation of protein serine/threonine kinase activity 0.22338149671147034 1.8020463359200733 1.0 398 +Biological Process GO:0097529 myeloid leukocyte migration 0.2233541618562388 1.8017216392368471 1.0 399 +Biological Process GO:0033674 positive regulation of kinase activity 0.2232622961355225 1.8006304135996123 1.0 400 +Biological Process GO:0045217 cell-cell junction maintenance 0.22311157366578438 1.7988400589188545 1.0 401 +Biological Process GO:0030888 regulation of B cell proliferation 0.22304275658179074 1.7980226161801693 1.0 402 +Biological Process GO:1903039 positive regulation of leukocyte cell-cell adhesion 0.22292688026956586 1.796646181078348 1.0 403 +Biological Process GO:0060070 canonical Wnt signaling pathway 0.22291629567411486 1.7965204521140963 1.0 404 +Biological Process GO:0006886 intracellular protein transport 0.22288318513034722 1.7961271489979793 1.0 405 +Biological Process GO:2000811 negative regulation of anoikis 0.2228285818747031 1.7954785450141348 1.0 406 +Phenotype HP:0001054 Numerous nevi 0.22246365979300753 1.7911438233352057 1.0 407 +Biological Process GO:0050863 regulation of T cell activation 0.22243493971681993 1.790802672324852 1.0 408 +Biological Process GO:0031329 regulation of cellular catabolic process 0.2223523192023511 1.7898212657365518 1.0 409 +Biological Process GO:0016239 positive regulation of macroautophagy 0.222187068606978 1.7878583389251859 1.0 410 +Biological Process GO:0048661 positive regulation of smooth muscle cell proliferation 0.22211432202745585 1.7869942197305966 1.0 411 +Phenotype HP:0002512 Brain stem compression 0.22194488903263232 1.7849816123477413 1.0 412 +Biological Process GO:0002708 positive regulation of lymphocyte mediated immunity 0.22172925282765654 1.7824201808001425 1.0 413 +Biological Process GO:0002683 negative regulation of immune system process 0.22166307744651703 1.7816341174906711 1.0 414 +Phenotype HP:0002202 Pleural effusion 0.22162022858668262 1.7811251379277502 1.0 415 +Biological Process GO:0032535 regulation of cellular component size 0.22154279140723176 1.7802053015096275 1.0 416 +Biological Process GO:0071763 nuclear membrane organization 0.22129363417175174 1.7772456908851375 1.0 417 +Biological Process GO:0044091 membrane biogenesis 0.22095942000998892 1.7732757327897901 1.0 418 +Biological Process GO:0071560 cellular response to transforming growth factor beta stimulus 0.22089126876428422 1.7724661992016073 1.0 419 +Biological Process GO:0034762 regulation of transmembrane transport 0.22079920951283272 1.7713726747123282 1.0 420 +Biological Process GO:0051090 regulation of DNA-binding transcription factor activity 0.22076216334767973 1.7709326223744053 1.0 421 +Biological Process GO:0031343 positive regulation of cell killing 0.22060394990050236 1.7690532862262849 1.0 422 +Biological Process GO:0051249 regulation of lymphocyte activation 0.2205629222311185 1.768565939647838 1.0 423 +Biological Process GO:0043393 regulation of protein binding 0.22044344245204994 1.7671467008171382 1.0 424 +Biological Process GO:0002694 regulation of leukocyte activation 0.22037967183322493 1.7663892024421013 1.0 425 +Phenotype HP:0002728 Chronic mucocutaneous candidiasis 0.22025266601515225 1.764880565665747 1.0 426 +Phenotype HP:0012177 Abnormal natural killer cell physiology 0.22013614178687302 1.763496434302428 1.0 427 +Phenotype HP:0012178 Reduced natural killer cell activity 0.22013614178687302 1.763496434302428 1.0 427 +Biological Process GO:0051640 organelle localization 0.22009399865640333 1.762995837735577 1.0 429 +Biological Process GO:0051347 positive regulation of transferase activity 0.21974252223439206 1.758820830131089 1.0 430 +Biological Process GO:0046426 negative regulation of receptor signaling pathway via JAK-STAT 0.21958453936854194 1.7569442329399354 1.0 431 +Biological Process GO:0001910 regulation of leukocyte mediated cytotoxicity 0.21926807630389789 1.7531851309954352 1.0 432 +Biological Process GO:0032878 regulation of establishment or maintenance of cell polarity 0.2192373395421886 1.7528200248152277 1.0 433 +Phenotype HP:0012691 Focal T2 hypointense thalamic lesion 0.2188018322292763 1.7476468574863513 1.0 434 +Phenotype HP:0011752 Neoplasm of the posterior pituitary 0.2188018322292763 1.7476468574863513 1.0 434 +Phenotype HP:0100010 Spinal meningioma 0.2188018322292763 1.7476468574863513 1.0 434 +Phenotype HP:0030591 Abnormal kinetic perimetry test 0.2188018322292763 1.7476468574863513 1.0 434 +Phenotype HP:0100009 Intracranial meningioma 0.2188018322292763 1.7476468574863513 1.0 434 +Biological Process GO:0071349 cellular response to interleukin-12 0.2187086037366226 1.7465394441823328 1.0 439 +Biological Process GO:0070671 response to interleukin-12 0.2187086037366226 1.7465394441823328 1.0 439 +Biological Process GO:0098930 axonal transport 0.21827712624402473 1.7414141450158818 1.0 441 +Biological Process GO:0031341 regulation of cell killing 0.21820966267233144 1.7406127799535152 1.0 442 +Biological Process GO:1900076 regulation of cellular response to insulin stimulus 0.2181105005940076 1.739434884637779 1.0 443 +Biological Process GO:1902414 protein localization to cell junction 0.21804072851705114 1.7386060980289724 1.0 444 +Biological Process GO:0048638 regulation of developmental growth 0.21801871360660274 1.738344594233047 1.0 445 +Biological Process GO:0071621 granulocyte chemotaxis 0.21800466238943883 1.7381776870528274 1.0 446 +Biological Process GO:0043536 positive regulation of blood vessel endothelial cell migration 0.2179973897648655 1.73809129928683 1.0 447 +Biological Process GO:0006900 vesicle budding from membrane 0.21786935212056768 1.7365704059775573 1.0 448 +Phenotype HP:0033993 Viral encephalitis 0.21766304870521413 1.7341198338367458 1.0 449 +Biological Process GO:0031112 positive regulation of microtubule polymerization or depolymerization 0.21764636949053584 1.7339217100259925 1.0 450 +Biological Process GO:0046427 positive regulation of receptor signaling pathway via JAK-STAT 0.21751946886648188 1.7324143227952709 1.0 451 +Biological Process GO:0032008 positive regulation of TOR signaling 0.21742115021332764 1.7312464460932346 1.0 452 +Biological Process GO:1901185 negative regulation of ERBB signaling pathway 0.21734852232752333 1.7303837368002593 1.0 453 +Phenotype HP:0033836 Abnormal intrarenal artery morphology 0.21727840966525624 1.7295509045537576 1.0 454 +Phenotype HP:0008776 Abnormal renal artery morphology 0.21727840966525624 1.7295509045537576 1.0 454 +Biological Process GO:0032881 regulation of polysaccharide metabolic process 0.2172302922945053 1.7289793430599778 1.0 456 +Biological Process GO:0071360 cellular response to exogenous dsRNA 0.21715836566041102 1.7281249635753158 1.0 457 +Biological Process GO:0046640 regulation of alpha-beta T cell proliferation 0.2171041977500111 1.727481530833669 1.0 458 +Biological Process GO:0051044 positive regulation of membrane protein ectodomain proteolysis 0.21671456957871682 1.7228533382261313 1.0 459 +Biological Process GO:0008361 regulation of cell size 0.21655572506426723 1.720966505954529 1.0 460 +Disease MONDO:0016537 lymphoproliferative syndrome 0.21588419818421523 1.7129897836048704 1.0 461 +Biological Process GO:0007596 blood coagulation 0.21577975153111684 1.7117491155439697 1.0 462 +Biological Process GO:0002724 regulation of T cell cytokine production 0.21569822922891047 1.7107807540541737 1.0 463 +Biological Process GO:0032231 regulation of actin filament bundle assembly 0.21567451966493234 1.7104991203407618 1.0 464 +Biological Process GO:0033059 cellular pigmentation 0.21565621786087408 1.7102817226254845 1.0 465 +Biological Process GO:0043001 Golgi to plasma membrane protein transport 0.2152866236074249 1.705891502621834 1.0 466 +Biological Process GO:0046856 phosphatidylinositol dephosphorylation 0.21521416329444 1.7050307838401744 1.0 467 +Biological Process GO:0090140 regulation of mitochondrial fission 0.2151237949049576 1.703957344230384 1.0 468 +Biological Process GO:0071559 response to transforming growth factor beta 0.21494028334090742 1.7017775047662267 1.0 469 +Phenotype HP:0002383 Infectious encephalitis 0.2146962858084418 1.698879183599501 1.0 470 +Biological Process GO:0051261 protein depolymerization 0.21468031950201882 1.698689528059166 1.0 471 +Biological Process GO:0032436 positive regulation of proteasomal ubiquitin-dependent protein catabolic process 0.214664734863804 1.6985044061591315 1.0 472 +Phenotype HP:0020072 Persistent EBV viremia 0.21463993919754332 1.6982098711954365 1.0 473 +Biological Process GO:1901800 positive regulation of proteasomal protein catabolic process 0.21461513333848925 1.6979152151567927 1.0 474 +Biological Process GO:0071402 cellular response to lipoprotein particle stimulus 0.21445412286095034 1.6960026545239042 1.0 475 +Biological Process GO:0042306 regulation of protein import into nucleus 0.21444633761764365 1.6959101776236836 1.0 476 +Biological Process GO:0007178 cell surface receptor protein serine/threonine kinase signaling pathway 0.21417899727245482 1.6927345791930326 1.0 477 +Biological Process GO:0007009 plasma membrane organization 0.214065178402283 1.6913825833869347 1.0 478 +Biological Process GO:0007599 hemostasis 0.21399438035306606 1.6905416097814443 1.0 479 +Phenotype HP:0100735 Hypertensive crisis 0.2138134399780246 1.688392312148806 1.0 480 +Phenotype HP:0012569 Delayed menarche 0.21380893556244418 1.6883388065133658 1.0 481 +Biological Process GO:0002824 positive regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains 0.21372281978960983 1.6873158815490326 1.0 482 +Biological Process GO:0002253 activation of immune response 0.21363211010885352 1.6862383879157723 1.0 483 +Biological Process GO:0001911 negative regulation of leukocyte mediated cytotoxicity 0.21327960523049616 1.6820511638074254 1.0 484 +Biological Process GO:0046605 regulation of centrosome cycle 0.21320474759525077 1.6811619684679056 1.0 485 +Phenotype HP:0100651 Type I diabetes mellitus 0.213179439026841 1.6808613410034376 1.0 486 +Biological Process GO:0010634 positive regulation of epithelial cell migration 0.2130490023254208 1.6793119505287724 1.0 487 +Biological Process GO:0016055 Wnt signaling pathway 0.2128014280187015 1.6763711427007135 1.0 488 +Phenotype HP:0011370 Recurrent cutaneous fungal infections 0.21275986042836692 1.6758773826790483 1.0 489 +Phenotype HP:0010614 Fibroma 0.2127365328667744 1.6756002865754587 1.0 490 +Biological Process GO:0097191 extrinsic apoptotic signaling pathway 0.21264836225333206 1.67455295321663 1.0 491 +Biological Process GO:0050853 B cell receptor signaling pathway 0.2126401477981209 1.6744553779289988 1.0 492 +Biological Process GO:0070665 positive regulation of leukocyte proliferation 0.21216043640986693 1.6687571331293642 1.0 493 +Biological Process GO:0031669 cellular response to nutrient levels 0.2121454862584673 1.6685795479718037 1.0 494 +Biological Process GO:0031342 negative regulation of cell killing 0.21200528353176407 1.6669141519068091 1.0 495 +Biological Process GO:0033628 regulation of cell adhesion mediated by integrin 0.211834838993329 1.6648895289177683 1.0 496 +Phenotype HP:0011450 Unusual CNS infection 0.21175262255559635 1.6639129221491449 1.0 497 +Phenotype HP:0002846 Abnormal B cell morphology 0.2116547693446389 1.6627505741955235 1.0 498 +Biological Process GO:1903037 regulation of leukocyte cell-cell adhesion 0.21159079017571292 1.6619905985611232 1.0 499 +Biological Process GO:0032570 response to progesterone 0.21157958140851219 1.6618574553817538 1.0 500 +Biological Process GO:0033993 response to lipid 0.2113219426773998 1.6587970974338444 1.0 501 +Phenotype HP:0004377 Hematological neoplasm 0.21106301378409742 1.6557214143129881 1.0 502 +Biological Process GO:0048639 positive regulation of developmental growth 0.21097688434208461 1.6546983269795161 1.0 503 +Biological Process GO:0008277 regulation of G protein-coupled receptor signaling pathway 0.21097224371455026 1.6546432033523475 1.0 504 +Biological Process GO:2000369 regulation of clathrin-dependent endocytosis 0.2108763868739829 1.6535045692555828 1.0 505 +Biological Process GO:0099024 plasma membrane invagination 0.2108749576294442 1.653487591994964 1.0 506 +Biological Process GO:2001234 negative regulation of apoptotic signaling pathway 0.21075346523152305 1.6520444463002808 1.0 507 +Biological Process GO:0032367 intracellular cholesterol transport 0.21074230574794717 1.6519118885357376 1.0 508 +Biological Process GO:0032366 intracellular sterol transport 0.21074230574794717 1.6519118885357376 1.0 508 +Biological Process GO:2000209 regulation of anoikis 0.21048067948222626 1.6488041647155505 1.0 510 +Biological Process GO:0090382 phagosome maturation 0.21014016798868018 1.644759403855532 1.0 511 +Phenotype HP:0009098 Chronic oral candidiasis 0.21003909916260433 1.6435588592641517 1.0 512 +Biological Process GO:0043302 positive regulation of leukocyte degranulation 0.20957262659718845 1.6380178716304665 1.0 513 +Biological Process GO:0038095 Fc-epsilon receptor signaling pathway 0.20952506941184568 1.63745296429097 1.0 514 +Phenotype HP:0030517 Heteronymous hemianopia 0.20944779503333533 1.6365350617014687 1.0 515 +Phenotype HP:0030521 Bitemporal hemianopia 0.20944779503333533 1.6365350617014687 1.0 515 +Biological Process GO:0051650 establishment of vesicle localization 0.20938342083568706 1.635770393724094 1.0 517 +Biological Process GO:0022409 positive regulation of cell-cell adhesion 0.2092287006799214 1.6339325525875736 1.0 518 +Biological Process GO:0050817 coagulation 0.2090891164489167 1.6322745033148047 1.0 519 +Phenotype HP:0011110 Recurrent tonsillitis 0.20898643599958044 1.6310548150797932 1.0 520 +Biological Process GO:0035924 cellular response to vascular endothelial growth factor stimulus 0.2089198031102114 1.6302633172654226 1.0 521 +Biological Process GO:0008088 axo-dendritic transport 0.20887269110544104 1.6297036979969282 1.0 522 +Biological Process GO:0044088 regulation of vacuole organization 0.20860718011389334 1.6265498295170924 1.0 523 +Phenotype HP:0040186 Maculopapular exanthema 0.2084602762664337 1.6248048342859391 1.0 524 +Biological Process GO:0035459 vesicle cargo loading 0.20837259223780769 1.623763280817826 1.0 525 +Biological Process GO:0002263 cell activation involved in immune response 0.20828534745255234 1.6227269448957502 1.0 526 +Phenotype HP:0004420 Arterial thrombosis 0.20806366534729992 1.6200936972090016 1.0 527 +Phenotype HP:0005415 Decreased proportion of CD8-positive T cells 0.20803322501794552 1.6197321121962418 1.0 528 +Phenotype HP:0012316 Fibrous tissue neoplasm 0.20782885268130502 1.6173044783460437 1.0 529 +Biological Process GO:1903902 positive regulation of viral life cycle 0.20777236552856537 1.6166334965177482 1.0 530 +Phenotype HP:0005547 Myeloproliferative disorder 0.20757466981559825 1.6142851708454617 1.0 531 +Biological Process GO:2000786 positive regulation of autophagosome assembly 0.20715366286764547 1.609284245892411 1.0 532 +Biological Process GO:0002709 regulation of T cell mediated immunity 0.20713135835270768 1.6090193020337398 1.0 533 +Biological Process GO:0031400 negative regulation of protein modification process 0.20685558421326156 1.6057435228997647 1.0 534 +Biological Process GO:0010824 regulation of centrosome duplication 0.20684689204733475 1.6056402731322945 1.0 535 +Biological Process GO:0071359 cellular response to dsRNA 0.2067268660129873 1.604214545616151 1.0 536 +Biological Process GO:0001914 regulation of T cell mediated cytotoxicity 0.20653203099738593 1.601900200696223 1.0 537 +Biological Process GO:0030838 positive regulation of actin filament polymerization 0.20645213582602884 1.600951167056729 1.0 538 +Biological Process GO:0051092 positive regulation of NF-kappaB transcription factor activity 0.2062889659235423 1.5990129557257764 1.0 539 +Biological Process GO:0032410 negative regulation of transporter activity 0.20623212259177492 1.5983377430300423 1.0 540 +Phenotype HP:0002113 Pulmonary infiltrates 0.20622096824998637 1.5982052463421454 1.0 541 +Biological Process GO:0045862 positive regulation of proteolysis 0.2061317274922665 1.597145201289966 1.0 542 +Biological Process GO:0031331 positive regulation of cellular catabolic process 0.20605498207483763 1.5962335819570346 1.0 543 +Biological Process GO:1903146 regulation of autophagy of mitochondrion 0.20603145645668486 1.5959541332414533 1.0 544 +Biological Process GO:2001236 regulation of extrinsic apoptotic signaling pathway 0.20590725852856928 1.594478849945416 1.0 545 +Biological Process GO:0048066 developmental pigmentation 0.20569376287469965 1.5919428449032278 1.0 546 +Biological Process GO:0034394 protein localization to cell surface 0.20566848728133102 1.5916426091323101 1.0 547 +Biological Process GO:0006968 cellular defense response 0.20552900040843303 1.589985716326406 1.0 548 +Biological Process GO:0070528 protein kinase C signaling 0.20541943557193143 1.588684251997843 1.0 549 +Biological Process GO:0034446 substrate adhesion-dependent cell spreading 0.2052034412998358 1.5861185671551306 1.0 550 +Biological Process GO:0002758 innate immune response-activating signaling pathway 0.20512410586456875 1.5851761823327009 1.0 551 +Biological Process GO:1903050 regulation of proteolysis involved in protein catabolic process 0.20512004160026476 1.5851279050278428 1.0 552 +Biological Process GO:0010256 endomembrane system organization 0.20510307019183416 1.5849263103978215 1.0 553 +Biological Process GO:0002218 activation of innate immune response 0.20501460464501042 1.58387547367708 1.0 554 +Phenotype HP:0410241 Abnormal circulating IgE level 0.20500065831956382 1.5837098124516098 1.0 555 +Biological Process GO:2001239 regulation of extrinsic apoptotic signaling pathway in absence of ligand 0.20498499538687953 1.58352376053185 1.0 556 +Phenotype HP:0040218 Reduced natural killer cell count 0.20489605606707495 1.5824672961055957 1.0 557 +Biological Process GO:1901096 regulation of autophagosome maturation 0.2048500732326164 1.581921089670348 1.0 558 +Phenotype HP:0006562 Viral hepatitis 0.20480543723288125 1.5813908815919175 1.0 559 +Phenotype HP:0007715 Weak extraocular muscles 0.20470011399123167 1.580139800986567 1.0 560 +Biological Process GO:0030879 mammary gland development 0.2046464188261674 1.5795019837435647 1.0 561 +Biological Process GO:0034763 negative regulation of transmembrane transport 0.20447459750263797 1.5774610066326573 1.0 562 +Biological Process GO:0032984 protein-containing complex disassembly 0.20435843278357235 1.576081145694342 1.0 563 +Biological Process GO:0050731 positive regulation of peptidyl-tyrosine phosphorylation 0.20434635644234622 1.5759376970494374 1.0 564 +Biological Process GO:0006998 nuclear envelope organization 0.2043354336002723 1.5758079502275586 1.0 565 +Disease MONDO:0017755 inborn disorder of bilirubin metabolism 0.20423197116388458 1.574578973170646 1.0 566 +Disease MONDO:0024431 bilirubin metabolism disease 0.20423197116388458 1.574578973170646 1.0 566 +Biological Process GO:0071404 cellular response to low-density lipoprotein particle stimulus 0.20399235851629482 1.5717327377956123 1.0 568 +Biological Process GO:0055094 response to lipoprotein particle 0.20399235851629482 1.5717327377956123 1.0 568 +Biological Process GO:1903034 regulation of response to wounding 0.2039613201571291 1.5713640490943726 1.0 570 +Biological Process GO:0051091 positive regulation of DNA-binding transcription factor activity 0.20390041298706807 1.570640564154138 1.0 571 +Phenotype HP:0020064 Abnormal eosinophil count 0.20381084988903786 1.5695766901872361 1.0 572 +Biological Process GO:0032868 response to insulin 0.20358795611606784 1.5669290497229975 1.0 573 +Phenotype HP:0012144 Abnormal monocyte morphology 0.20354603736196675 1.5664311184076016 1.0 574 +Phenotype HP:0012310 Abnormal monocyte count 0.20354603736196675 1.5664311184076016 1.0 574 +Phenotype HP:3000062 Abnormal internal carotid artery morphology 0.20349524056744706 1.5658277294172684 1.0 576 +Biological Process GO:1904646 cellular response to amyloid-beta 0.20344019986426776 1.5651739292191926 1.0 577 +Biological Process GO:0030301 cholesterol transport 0.20326854929596128 1.5631349804217358 1.0 578 +Biological Process GO:0032387 negative regulation of intracellular transport 0.2030910969385442 1.5610271151560915 1.0 579 +Biological Process GO:0046488 phosphatidylinositol metabolic process 0.203065653424654 1.5607248847436823 1.0 580 +Biological Process GO:0006612 protein targeting to membrane 0.20298858821873855 1.5598094668078297 1.0 581 +Disease MONDO:0004993 carcinoma 0.20284216257571197 1.5580701519211304 1.0 582 +Biological Process GO:1990266 neutrophil migration 0.20283251946289904 1.5579556063448026 1.0 583 +Biological Process GO:1901524 regulation of mitophagy 0.20279356926668723 1.5574929370014365 1.0 584 +Biological Process GO:0042119 neutrophil activation 0.20259257756107618 1.5551054599281144 1.0 585 +Phenotype HP:0002253 Colonic diverticula 0.2023070336884154 1.551713631159198 1.0 586 +Phenotype HP:0030388 Decreased proportion of class-switched memory B cells 0.20226930192359616 1.5512654349355375 1.0 587 +Phenotype HP:0030386 Abnormal proportion of class-switched memory B cells 0.20226930192359616 1.5512654349355375 1.0 587 +Phenotype HP:0001061 Acne 0.20220208709522414 1.5504670245671215 1.0 589 +Biological Process GO:0032418 lysosome localization 0.20219505069775245 1.5503834428213408 1.0 590 +Biological Process GO:1990849 vacuolar localization 0.20219505069775245 1.5503834428213408 1.0 590 +Biological Process GO:0061136 regulation of proteasomal protein catabolic process 0.2020945458042922 1.549189596895393 1.0 592 +Biological Process GO:0002703 regulation of leukocyte mediated immunity 0.20203660405794954 1.5485013366979845 1.0 593 +Phenotype HP:0030448 Soft tissue sarcoma 0.20191096939870334 1.5470089872119546 1.0 594 +Biological Process GO:0051588 regulation of neurotransmitter transport 0.20190610924456176 1.5469512559411513 1.0 595 +Biological Process GO:0097530 granulocyte migration 0.20186767472494271 1.5464947120547474 1.0 596 +Biological Process GO:0002821 positive regulation of adaptive immune response 0.20181199233740776 1.5458332896183173 1.0 597 +Phenotype HP:0100765 Abnormality of the tonsils 0.20177307901403285 1.545371058268412 1.0 598 +Biological Process GO:0002702 positive regulation of production of molecular mediator of immune response 0.20165942344894405 1.544021002279385 1.0 599 +Biological Process GO:2000273 positive regulation of signaling receptor activity 0.20142205156298065 1.5412013837589793 1.0 600 +Biological Process GO:1903358 regulation of Golgi organization 0.2012893171584208 1.5396247000507424 1.0 601 +Phenotype HP:0009720 Adenoma sebaceum 0.20127830463290175 1.5394938879253557 1.0 602 +Biological Process GO:0031647 regulation of protein stability 0.20125807243998595 1.5392535601139037 1.0 603 +Biological Process GO:0071363 cellular response to growth factor stimulus 0.20125198189603366 1.5391812136754974 1.0 604 +Phenotype HP:0410067 Increased level of L-fucose in urine 0.20107637588265648 1.5370952801808744 1.0 605 +Biological Process GO:0031670 cellular response to nutrient 0.20104855430720936 1.5367648019985944 1.0 606 +Phenotype HP:0011730 Abnormal central sensory function 0.2010057942828144 1.5362568776661585 1.0 607 +Phenotype HP:0010562 Keloids 0.20093655241731379 1.5354343891664755 1.0 608 +Biological Process GO:0002444 myeloid leukocyte mediated immunity 0.20090484036139244 1.5350576979680506 1.0 609 +Biological Process GO:0032946 positive regulation of mononuclear cell proliferation 0.20088448123226876 1.5348158623466859 1.0 610 +Phenotype HP:0040270 Impaired glucose tolerance 0.20087211933168625 1.534669021689089 1.0 611 +Phenotype HP:0003745 Sporadic 0.2007601319078286 1.5333387806915926 1.0 612 +Biological Process GO:0070848 response to growth factor 0.20048661039957327 1.5300897594046956 1.0 613 +Biological Process GO:0010811 positive regulation of cell-substrate adhesion 0.2004316663509218 1.529437107316033 1.0 614 +Biological Process GO:0015918 sterol transport 0.20041548873156168 1.5292449416980252 1.0 615 +Phenotype HP:0001879 Abnormal eosinophil morphology 0.20035202136842334 1.5284910455412841 1.0 616 +Disease MONDO:0004805 leukocyte disorder 0.20027202249806475 1.5275407801146978 1.0 617 +Biological Process GO:0002700 regulation of production of molecular mediator of immune response 0.2002476231414232 1.527250952709092 1.0 618 +Biological Process GO:0002756 MyD88-independent toll-like receptor signaling pathway 0.20018186867635723 1.5264698892451236 1.0 619 +Biological Process GO:0070098 chemokine-mediated signaling pathway 0.1999952105983931 1.5242526739608664 1.0 620 +Biological Process GO:2000106 regulation of leukocyte apoptotic process 0.19985869079673846 1.52263102546789 1.0 621 +Biological Process GO:0001912 positive regulation of leukocyte mediated cytotoxicity 0.19985680833372577 1.5226086646581714 1.0 622 +Biological Process GO:0043299 leukocyte degranulation 0.19969891230569725 1.5207330989688281 1.0 623 +Biological Process GO:0002833 positive regulation of response to biotic stimulus 0.19959236620638676 1.5194674926664071 1.0 624 +Biological Process GO:0070661 leukocyte proliferation 0.19956390192208684 1.5191293800762982 1.0 625 +Disease MONDO:0003900 connective tissue disorder 0.1995250240154962 1.5186675694241536 1.0 626 +Biological Process GO:1902992 negative regulation of amyloid precursor protein catabolic process 0.199503723886177 1.5184145561455518 1.0 627 +Biological Process GO:0002224 toll-like receptor signaling pathway 0.19929088344587498 1.515886334048267 1.0 628 +Biological Process GO:0051491 positive regulation of filopodium assembly 0.19924220195413334 1.5153080716514435 1.0 629 +Biological Process GO:0031667 response to nutrient levels 0.19916771376913833 1.5144232648213891 1.0 630 +Biological Process GO:0072594 establishment of protein localization to organelle 0.1991658138289929 1.5144006964098016 1.0 631 +Phenotype HP:0033835 Abnormal renal vascular morphology 0.19916220931166562 1.514357880202769 1.0 632 +Biological Process GO:0030832 regulation of actin filament length 0.19908904584486375 1.5134888090186465 1.0 633 +Biological Process GO:0008064 regulation of actin polymerization or depolymerization 0.19908904584486375 1.5134888090186465 1.0 633 +Phenotype HP:0012505 Enlarged pituitary gland 0.19908636712122574 1.513456989838586 1.0 635 +Biological Process GO:0050671 positive regulation of lymphocyte proliferation 0.19902417942866668 1.5127182942303459 1.0 636 +Biological Process GO:0001909 leukocyte mediated cytotoxicity 0.1990113643808935 1.512566070870387 1.0 637 +Biological Process GO:1901342 regulation of vasculature development 0.19887554880692315 1.510952787535791 1.0 638 +Biological Process GO:0061098 positive regulation of protein tyrosine kinase activity 0.1988576181059465 1.510739797963111 1.0 639 +Biological Process GO:0032757 positive regulation of interleukin-8 production 0.19877416232633482 1.5097484696898704 1.0 640 +Biological Process GO:0010810 regulation of cell-substrate adhesion 0.1987548310167625 1.5095188430082076 1.0 641 +Phenotype HP:0001355 Megalencephaly 0.19865772404224114 1.5083653592133188 1.0 642 +Biological Process GO:0002763 positive regulation of myeloid leukocyte differentiation 0.1983915041554849 1.505203070131983 1.0 643 +Biological Process GO:0051133 regulation of NK T cell activation 0.198313741668245 1.5042793695499848 1.0 644 +Phenotype HP:0008240 Secondary growth hormone deficiency 0.1982739259019075 1.5038064185443771 1.0 645 +Biological Process GO:0032465 regulation of cytokinesis 0.19808010572350987 1.5015041283535222 1.0 646 +Biological Process GO:0043535 regulation of blood vessel endothelial cell migration 0.19791518929501906 1.499545170938643 1.0 647 +Biological Process GO:0090049 regulation of cell migration involved in sprouting angiogenesis 0.19790027266662125 1.4993679839835756 1.0 648 +Biological Process GO:0032677 regulation of interleukin-8 production 0.19774870703828773 1.4975676138556153 1.0 649 +Biological Process GO:1904294 positive regulation of ERAD pathway 0.19770436162543603 1.4970408575092848 1.0 650 +Biological Process GO:1905897 regulation of response to endoplasmic reticulum stress 0.19767001631754444 1.4966328872653483 1.0 651 +Biological Process GO:0002220 innate immune response activating cell surface receptor signaling pathway 0.19757987844646518 1.4955621858650814 1.0 652 +Phenotype HP:0001048 Cavernous hemangioma 0.19750639171540607 1.4946892747911462 1.0 653 +Biological Process GO:0034764 positive regulation of transmembrane transport 0.19748011752665084 1.4943771772193457 1.0 654 +Biological Process GO:0010469 regulation of signaling receptor activity 0.1973952881249652 1.493369532396131 1.0 655 +Biological Process GO:0009725 response to hormone 0.19737573450397483 1.4931372649914985 1.0 656 +Biological Process GO:0007187 G protein-coupled receptor signaling pathway, coupled to cyclic nucleotide second messenger 0.19726529121833414 1.491825366017519 1.0 657 +Biological Process GO:0032092 positive regulation of protein binding 0.19704772408750915 1.4892409979950976 1.0 658 +Phenotype HP:0010615 Angiofibromas 0.19702292227206009 1.4889463899883575 1.0 659 +Phenotype HP:0002754 Osteomyelitis 0.19693678706170592 1.4879232341357258 1.0 660 +Biological Process GO:0071417 cellular response to organonitrogen compound 0.19684943486457696 1.4868856223232598 1.0 661 +Disease MONDO:0017290 familial intrahepatic cholestasis 0.19679363718294018 1.4862228303675058 1.0 662 +Disease MONDO:0001751 cholestasis 0.19679363718294018 1.4862228303675058 1.0 662 +Disease MONDO:0015762 progressive familial intrahepatic cholestasis 0.19679363718294018 1.4862228303675058 1.0 662 +Disease MONDO:0019072 intrahepatic cholestasis 0.19679363718294018 1.4862228303675058 1.0 662 +Phenotype HP:0010534 Transient global amnesia 0.19676612671602778 1.4858960476834637 1.0 666 +Biological Process GO:0045953 negative regulation of natural killer cell mediated cytotoxicity 0.196729434798115 1.4854602032662694 1.0 667 +Biological Process GO:0002716 negative regulation of natural killer cell mediated immunity 0.196729434798115 1.4854602032662694 1.0 667 +Phenotype HP:0034274 Gastrointestinal ulcer 0.19668788071850785 1.4849666037315847 1.0 669 +Biological Process GO:0010821 regulation of mitochondrion organization 0.19666899315514774 1.4847422480828973 1.0 670 +Disease MONDO:0021117 lung neoplasm 0.19663784909304893 1.484372303790893 1.0 671 +Disease MONDO:0020641 respiratory tract neoplasm 0.19663784909304893 1.484372303790893 1.0 671 +Disease MONDO:0008903 lung cancer 0.19663784909304893 1.484372303790893 1.0 671 +Disease MONDO:0000376 respiratory system cancer 0.19663784909304893 1.484372303790893 1.0 671 +Biological Process GO:0002446 neutrophil mediated immunity 0.19660915222664888 1.4840314284776652 1.0 675 +Biological Process GO:0051056 regulation of small GTPase mediated signal transduction 0.19659046448665285 1.4838094464279232 1.0 676 +Biological Process GO:0051302 regulation of cell division 0.19654078323124324 1.4832193083528036 1.0 677 +Disease MONDO:0004335 digestive system disorder 0.19650170735903427 1.4827551461689197 1.0 678 +Phenotype HP:0000873 Diabetes insipidus 0.19639862553416154 1.4815306902003929 1.0 679 +Biological Process GO:0050857 positive regulation of antigen receptor-mediated signaling pathway 0.19628751255364618 1.4802108362655133 1.0 680 +Biological Process GO:0010595 positive regulation of endothelial cell migration 0.1962815262399512 1.480139727924714 1.0 681 +Biological Process GO:0002449 lymphocyte mediated immunity 0.19622559307324539 1.479475326611523 1.0 682 +Biological Process GO:0032870 cellular response to hormone stimulus 0.19621470626753257 1.4793460078470395 1.0 683 +Disease MONDO:0015977 agammaglobulinemia 0.19612053365455606 1.478227379823397 1.0 684 +Biological Process GO:0022407 regulation of cell-cell adhesion 0.19610914051621886 1.4780920465941447 1.0 685 +Biological Process GO:0050854 regulation of antigen receptor-mediated signaling pathway 0.19605434785290632 1.4774411927340452 1.0 686 +Phenotype HP:0010183 Abnormality of the middle phalanges of the toes 0.19583704816161784 1.4748600014882973 1.0 687 +Phenotype HP:0100620 Germinoma 0.1958239270464891 1.474704142511674 1.0 688 +Phenotype HP:0045026 Abnormal mediastinum morphology 0.19576789039436637 1.4740385119484525 1.0 689 +Biological Process GO:0019886 antigen processing and presentation of exogenous peptide antigen via MHC class II 0.19574691838986458 1.4737893962957573 1.0 690 +Biological Process GO:2001242 regulation of intrinsic apoptotic signaling pathway 0.19566552924547942 1.4728226165192182 1.0 691 +Biological Process GO:0065005 protein-lipid complex assembly 0.19553916989675846 1.4713216588197249 1.0 692 +Biological Process GO:0031349 positive regulation of defense response 0.195396578267791 1.469627886213674 1.0 693 +Biological Process GO:0061041 regulation of wound healing 0.1952854557895849 1.4683079194606121 1.0 694 +Biological Process GO:0034498 early endosome to Golgi transport 0.1950955919644669 1.4660526247550703 1.0 695 +Biological Process GO:0101024 mitotic nuclear membrane organization 0.1950726276986462 1.4657798440550611 1.0 696 +Biological Process GO:0007084 mitotic nuclear membrane reassembly 0.1950726276986462 1.4657798440550611 1.0 696 +Biological Process GO:0050678 regulation of epithelial cell proliferation 0.19494896795736094 1.4643109536035177 1.0 698 +Biological Process GO:0032147 activation of protein kinase activity 0.19488367231015302 1.4635353402008517 1.0 699 +Biological Process GO:0110020 regulation of actomyosin structure organization 0.19476741608956594 1.4621543923630347 1.0 700 +Phenotype HP:0006520 Progressive pulmonary function impairment 0.19467368693724307 1.4610410319803642 1.0 701 +Biological Process GO:0046626 regulation of insulin receptor signaling pathway 0.19464977540885786 1.4607569992356584 1.0 702 +Biological Process GO:0030705 cytoskeleton-dependent intracellular transport 0.19447783261788998 1.4587145792755372 1.0 703 +Phenotype HP:0040307 Male sexual dysfunction 0.19434181424167818 1.4570988869574444 1.0 704 +Phenotype HP:0032158 Unusual infection by anatomical site 0.19432745781898586 1.4569283543977618 1.0 705 +Disease MONDO:0002516 digestive system cancer 0.19431015775114258 1.4567228557916516 1.0 706 +Biological Process GO:0002706 regulation of lymphocyte mediated immunity 0.1943038917163562 1.4566484247879063 1.0 707 +Biological Process GO:0033138 positive regulation of peptidyl-serine phosphorylation 0.19418852472264114 1.4552780396186507 1.0 708 +Disease MONDO:0002149 reproductive system cancer 0.1941801744917533 1.4551788515216042 1.0 709 +Biological Process GO:0030516 regulation of axon extension 0.19410808238562682 1.4543225064797969 1.0 710 +Phenotype HP:0001053 Hypopigmented skin patches 0.19410598525255207 1.4542975957148454 1.0 711 +Biological Process GO:0046635 positive regulation of alpha-beta T cell activation 0.19409975271147228 1.4542235625656101 1.0 712 +Phenotype HP:0012056 Cutaneous melanoma 0.19390617292820178 1.451924127904802 1.0 713 +Phenotype HP:0002858 Meningioma 0.19390162671514832 1.4518701257786817 1.0 714 +Biological Process GO:1901654 response to ketone 0.19377122973917693 1.4503212071821867 1.0 715 +Biological Process GO:0070374 positive regulation of ERK1 and ERK2 cascade 0.19360009898040031 1.4482884329347259 1.0 716 +Biological Process GO:0045765 regulation of angiogenesis 0.1932392360038635 1.4440019272778226 1.0 717 +Biological Process GO:0046330 positive regulation of JNK cascade 0.19310012036012036 1.442349444112075 1.0 718 +Biological Process GO:0061387 regulation of extent of cell growth 0.19302684527336633 1.4414790470519623 1.0 719 +Biological Process GO:0046649 lymphocyte activation 0.19294270373618472 1.4404795730173274 1.0 720 +Biological Process GO:0045742 positive regulation of epidermal growth factor receptor signaling pathway 0.19277899548005195 1.4385349668603606 1.0 721 +Biological Process GO:2001240 negative regulation of extrinsic apoptotic signaling pathway in absence of ligand 0.19271879862876862 1.437819919431472 1.0 722 +Biological Process GO:1901099 negative regulation of signal transduction in absence of ligand 0.19271879862876862 1.437819919431472 1.0 722 +Biological Process GO:0051492 regulation of stress fiber assembly 0.1927048690686386 1.437654457352573 1.0 724 +Biological Process GO:0034332 adherens junction organization 0.19265012543501125 1.437004185890881 1.0 725 +Biological Process GO:0034067 protein localization to Golgi apparatus 0.19262731502705788 1.4367332327893279 1.0 726 +Phenotype HP:0005306 Capillary hemangioma 0.19253815155013654 1.435674105715998 1.0 727 +Biological Process GO:0051043 regulation of membrane protein ectodomain proteolysis 0.19242870224517172 1.4343740137271268 1.0 728 +Biological Process GO:0045216 cell-cell junction organization 0.19242470737088957 1.4343265606706415 1.0 729 +Biological Process GO:0019079 viral genome replication 0.19237942586661771 1.4337886849758912 1.0 730 +Biological Process GO:0043331 response to dsRNA 0.19214301851949922 1.4309805237162294 1.0 731 +Biological Process GO:0032413 negative regulation of ion transmembrane transporter activity 0.19207283363668282 1.4301468335989755 1.0 732 +Disease MONDO:0003996 basal ganglia disorder 0.19205277551493438 1.429908573489372 1.0 733 +Biological Process GO:0032869 cellular response to insulin stimulus 0.19204255835804762 1.4297872091388009 1.0 734 +Biological Process GO:0001916 positive regulation of T cell mediated cytotoxicity 0.1918161688922566 1.4270980451378563 1.0 735 +Biological Process GO:0001933 negative regulation of protein phosphorylation 0.19176059849075977 1.426437952925963 1.0 736 +Biological Process GO:0003018 vascular process in circulatory system 0.19169486075655684 1.4256570881993094 1.0 737 +Phenotype HP:0002354 Memory impairment 0.1913635379637788 1.4217214751887042 1.0 738 +Disease MONDO:0005180 Parkinson disease 0.19118705262795388 1.4196250966750807 1.0 739 +Biological Process GO:0030036 actin cytoskeleton organization 0.1910697567885702 1.4182317997403975 1.0 740 +Phenotype HP:0030014 Female sexual dysfunction 0.19105796730523195 1.4180917585327726 1.0 741 +Biological Process GO:0043330 response to exogenous dsRNA 0.1907789277879558 1.4147771916553868 1.0 742 +Biological Process GO:0071354 cellular response to interleukin-6 0.1905472581002564 1.4120253066147361 1.0 743 +Biological Process GO:0050727 regulation of inflammatory response 0.19050755789957075 1.4115537283540553 1.0 744 +Biological Process GO:0031333 negative regulation of protein-containing complex assembly 0.19048620681540407 1.4113001098090336 1.0 745 +Disease MONDO:0021248 nervous system neoplasm 0.19047537629146172 1.411171459586748 1.0 746 +Phenotype HP:0012202 Increased serum bile acid concentration 0.1903580810717238 1.4097781700125183 1.0 747 +Biological Process GO:0070372 regulation of ERK1 and ERK2 cascade 0.19029114431519978 1.408983062716534 1.0 748 +Biological Process GO:0010632 regulation of epithelial cell migration 0.1902656130884951 1.4086797904087247 1.0 749 +Biological Process GO:0050764 regulation of phagocytosis 0.19023887511610937 1.408362183789765 1.0 750 +Phenotype HP:0010054 Abnormality of the first metatarsal bone 0.1901879426717381 1.4077571834846283 1.0 751 +Biological Process GO:0042509 regulation of tyrosine phosphorylation of STAT protein 0.1900936248584194 1.4066368307008175 1.0 752 +Biological Process GO:1904645 response to amyloid-beta 0.19008322173855752 1.406513257391731 1.0 753 +Biological Process GO:0046822 regulation of nucleocytoplasmic transport 0.19000850087436816 1.4056256866852257 1.0 754 +Biological Process GO:0090083 regulation of inclusion body assembly 0.18996012919442817 1.4050511043834153 1.0 755 +Biological Process GO:0006893 Golgi to plasma membrane transport 0.1899215968000767 1.4045933978934153 1.0 756 +Phenotype HP:0008237 Hypothalamic hypothyroidism 0.1898605005459295 1.4038676669205934 1.0 757 +Biological Process GO:0007266 Rho protein signal transduction 0.1898146122071369 1.4033225829507494 1.0 758 +Biological Process GO:0001954 positive regulation of cell-matrix adhesion 0.189775562355597 1.4028587298530073 1.0 759 +Phenotype HP:4000054 Exanthem 0.18962602448273258 1.4010824463891114 1.0 760 +Phenotype HP:0001581 Recurrent skin infections 0.18962079116292407 1.401020282475321 1.0 761 +Biological Process GO:0001959 regulation of cytokine-mediated signaling pathway 0.18961696352985213 1.4009748159911368 1.0 762 +Phenotype HP:0005214 Intestinal obstruction 0.18956027773577755 1.4003014746046119 1.0 763 +Biological Process GO:0043255 regulation of carbohydrate biosynthetic process 0.18947404618097097 1.3992771743257935 1.0 764 +Biological Process GO:1902991 regulation of amyloid precursor protein catabolic process 0.18944690919622165 1.3989548280442334 1.0 765 +Phenotype HP:0030142 Abnormal bowel sounds 0.18926692654826027 1.396816906758889 1.0 766 +Biological Process GO:1901186 positive regulation of ERBB signaling pathway 0.18916079537843555 1.3955562291903743 1.0 767 +Phenotype HP:0040313 Oligoarthritis 0.18915729053495212 1.3955145969576568 1.0 768 +Biological Process GO:0046854 phosphatidylinositol phosphate biosynthetic process 0.18913051191170094 1.3951965074679789 1.0 769 +Disease MONDO:0002211 B cell deficiency 0.18903330488412728 1.3940418351943529 1.0 770 +Biological Process GO:1900227 positive regulation of NLRP3 inflammasome complex assembly 0.18881551010039344 1.3914547630001404 1.0 771 +Biological Process GO:0141087 positive regulation of inflammasome-mediated signaling pathway 0.18881551010039344 1.3914547630001404 1.0 771 +Phenotype HP:0001012 Multiple lipomas 0.18865199338472594 1.389512432053825 1.0 773 +Biological Process GO:1900024 regulation of substrate adhesion-dependent cell spreading 0.1884537073673529 1.3871570944591753 1.0 774 +Disease MONDO:0005020 intestinal disorder 0.18842808432411418 1.3868527315099919 1.0 775 +Phenotype HP:0040089 Abnormal natural killer cell count 0.18837598587018478 1.386233880777153 1.0 776 +Biological Process GO:1903725 regulation of phospholipid metabolic process 0.1883733428044344 1.386202485158796 1.0 777 +Phenotype HP:0032140 Decreased specific antibody response to vaccination 0.1883339517232574 1.385734578769736 1.0 778 +Phenotype HP:0100326 Immunologic hypersensitivity 0.18823617568656692 1.3845731475295306 1.0 779 +Disease MONDO:0045024 cancer or benign tumor 0.1882051003866937 1.38420402002863 1.0 780 +Disease MONDO:0023370 neoplastic disease or syndrome 0.1882051003866937 1.38420402002863 1.0 780 +Phenotype HP:0200117 Recurrent upper and lower respiratory tract infections 0.18817203593784926 1.383811264450393 1.0 782 +Biological Process GO:0062208 positive regulation of pattern recognition receptor signaling pathway 0.18798819548843082 1.381627518326137 1.0 783 +Phenotype HP:0004311 Abnormal macrophage morphology 0.1879149791983803 1.380757819681818 1.0 784 +Biological Process GO:0045936 negative regulation of phosphate metabolic process 0.1878452886592611 1.3799300016190341 1.0 785 +Phenotype HP:0200036 Skin nodule 0.1877242526237055 1.3784922768181216 1.0 786 +Biological Process GO:0062207 regulation of pattern recognition receptor signaling pathway 0.1876856352957128 1.3780335614450905 1.0 787 +Biological Process GO:0001938 positive regulation of endothelial cell proliferation 0.1876587223296846 1.3777138761666752 1.0 788 +Biological Process GO:0002495 antigen processing and presentation of peptide antigen via MHC class II 0.18761632942518247 1.3772103126625859 1.0 789 +Biological Process GO:0002504 antigen processing and presentation of peptide or polysaccharide antigen via MHC class II 0.18761632942518247 1.3772103126625859 1.0 789 +Disease MONDO:0021223 digestive system neoplasm 0.18761242654770616 1.3771639523888306 1.0 791 +Biological Process GO:0070663 regulation of leukocyte proliferation 0.18760292773244114 1.3770511208488423 1.0 792 +Biological Process GO:0009408 response to heat 0.1875941848061604 1.376947268125241 1.0 793 +Biological Process GO:0071468 cellular response to acidic pH 0.18756941023689 1.3766529837618404 1.0 794 +Biological Process GO:0045639 positive regulation of myeloid cell differentiation 0.187482488469349 1.375620484801021 1.0 795 +Biological Process GO:1902117 positive regulation of organelle assembly 0.18734536925588263 1.373991716203493 1.0 796 +Biological Process GO:0050864 regulation of B cell activation 0.18734513447461087 1.3739889273575459 1.0 797 +Biological Process GO:0032496 response to lipopolysaccharide 0.18719310027970892 1.3721829913683674 1.0 798 +Phenotype HP:0005244 Gastrointestinal infarctions 0.18706017782015905 1.3706040738516463 1.0 799 +Biological Process GO:0046578 regulation of Ras protein signal transduction 0.18701489186723186 1.370066145313608 1.0 800 +Disease MONDO:0024654 skull disorder 0.1869048289824763 1.3687587649260506 1.0 801 +Biological Process GO:2000058 regulation of ubiquitin-dependent protein catabolic process 0.18689367838567839 1.3686263127229712 1.0 802 +Phenotype HP:0002488 Acute leukemia 0.18684856594020405 1.3680904451907065 1.0 803 +Biological Process GO:0006661 phosphatidylinositol biosynthetic process 0.1868308933716788 1.3678805218406236 1.0 804 +Biological Process GO:1904035 regulation of epithelial cell apoptotic process 0.18682281897927444 1.367784610287021 1.0 805 +Phenotype HP:0005558 Chronic leukemia 0.1867265210329917 1.3666407365223843 1.0 806 +Biological Process GO:0002237 response to molecule of bacterial origin 0.18671410393718457 1.3664932402291088 1.0 807 +Phenotype HP:0100796 Orchitis 0.18663899192691313 1.3656010232995146 1.0 808 +Biological Process GO:0008283 cell population proliferation 0.18651930357449076 1.3641793069332429 1.0 809 +Phenotype HP:0001413 Micronodular cirrhosis 0.1864998198965645 1.3639478703462877 1.0 810 +Biological Process GO:0043304 regulation of mast cell degranulation 0.18643994039967804 1.3632365926070205 1.0 811 +Biological Process GO:0036230 granulocyte activation 0.18640452173069733 1.3628158724588832 1.0 812 +Phenotype HP:0001909 Leukemia 0.18637735490176532 1.3624931716736304 1.0 813 +Phenotype HP:0010310 Chylothorax 0.18634963358863055 1.36216388445578 1.0 814 +Phenotype HP:0002009 Potter facies 0.1863353579508511 1.3619943114985185 1.0 815 +Phenotype HP:0031020 Bone marrow hypercellularity 0.1863009695416319 1.361585829276084 1.0 816 +Phenotype HP:0000670 Carious teeth 0.18629530029615715 1.3615184872255612 1.0 817 +Disease MONDO:0006130 central nervous system neoplasm 0.18623025143796812 1.360745805302693 1.0 818 +Biological Process GO:0010563 negative regulation of phosphorus metabolic process 0.18622088175745932 1.3606345076880422 1.0 819 +Biological Process GO:0070266 necroptotic process 0.18621063464071386 1.360512787459722 1.0 820 +Biological Process GO:2000114 regulation of establishment of cell polarity 0.18616014528168845 1.359913050337469 1.0 821 +Biological Process GO:0031648 protein destabilization 0.1860997477484645 1.359195619111046 1.0 822 +Biological Process GO:0002705 positive regulation of leukocyte mediated immunity 0.18601733293282563 1.3582166559133277 1.0 823 +Disease MONDO:0005154 liver disorder 0.18598390597534986 1.357819594281547 1.0 824 +Biological Process GO:0050777 negative regulation of immune response 0.18590667310865938 1.3569021847895988 1.0 825 +Phenotype HP:0030766 Ear pain 0.18588341296142363 1.3566258894664727 1.0 826 +Biological Process GO:1903708 positive regulation of hemopoiesis 0.18579158158889608 1.3555350718337018 1.0 827 +Biological Process GO:1902107 positive regulation of leukocyte differentiation 0.18579158158889608 1.3555350718337018 1.0 827 +Biological Process GO:0010970 transport along microtubule 0.18568151222169105 1.354227614444462 1.0 829 +Phenotype HP:0025269 Panic attack 0.18554116767465723 1.352560533768718 1.0 830 +Biological Process GO:0045055 regulated exocytosis 0.18545286311953313 1.3515116093855564 1.0 831 +Biological Process GO:1903078 positive regulation of protein localization to plasma membrane 0.18542211510449624 1.3511463695328594 1.0 832 +Disease MONDO:0002515 hepatobiliary disorder 0.18538015364147198 1.350647930900136 1.0 833 +Biological Process GO:0010543 regulation of platelet activation 0.18531475129508368 1.3498710500727964 1.0 834 +Phenotype HP:0001065 Striae distensae 0.18528585359589833 1.3495277891702282 1.0 835 +Biological Process GO:0048002 antigen processing and presentation of peptide antigen 0.18523418028581662 1.348913988502446 1.0 836 +Disease MONDO:0021118 intestinal neoplasm 0.18511087681001503 1.347449329945307 1.0 837 +Biological Process GO:0030029 actin filament-based process 0.18503672958217943 1.346568573169948 1.0 838 +Biological Process GO:0032940 secretion by cell 0.1847525446406204 1.3431928864445042 1.0 839 +Phenotype HP:0000267 Cranial asymmetry 0.18469381300932475 1.3424952436100852 1.0 840 +Phenotype HP:0011043 Abnormal circulating adrenocorticotropin concentration 0.18460461180114973 1.3414356683466035 1.0 841 +Biological Process GO:0002698 negative regulation of immune effector process 0.1845792286383381 1.34113415481361 1.0 842 +Biological Process GO:0042326 negative regulation of phosphorylation 0.18457450103853767 1.3410779980876346 1.0 843 +Biological Process GO:0010975 regulation of neuron projection development 0.18435472952083654 1.3384674452875303 1.0 844 +Phenotype HP:0011974 Myelofibrosis 0.18433457592383518 1.3382280510765134 1.0 845 +Disease MONDO:0002887 bile duct disorder 0.18430036270359884 1.3378216498338829 1.0 846 +Biological Process GO:0071300 cellular response to retinoic acid 0.18418330213396628 1.3364311475475417 1.0 847 +Phenotype HP:0002733 Abnormal lymph node morphology 0.18409586598104677 1.33539253846743 1.0 848 +Biological Process GO:0045321 leukocyte activation 0.18407539852341825 1.3351494160674846 1.0 849 +Phenotype HP:0000956 Acanthosis nigricans 0.1840413311187995 1.3347447468935623 1.0 850 +Biological Process GO:1904707 positive regulation of vascular associated smooth muscle cell proliferation 0.18396141693191959 1.3337954873784548 1.0 851 +Phenotype HP:0011381 Aplasia of the semicircular canal 0.1838629229559856 1.3326255281073107 1.0 852 +Biological Process GO:1900027 regulation of ruffle assembly 0.18380842841465395 1.331978215484857 1.0 853 +Phenotype HP:0031691 Severe viral infection 0.1837786651741986 1.3316246732628092 1.0 854 +Phenotype HP:0009728 Neoplasm of striated muscle 0.1836548376526691 1.330153789836057 1.0 855 +Biological Process GO:0050852 T cell receptor signaling pathway 0.18365418332948125 1.3301460174675166 1.0 856 +Phenotype HP:0004808 Acute myeloid leukemia 0.1835589160444645 1.3290143863978483 1.0 857 +Disease MONDO:0024634 large intestine disorder 0.1834307540660023 1.3274920161869985 1.0 858 +Disease MONDO:0005814 intestinal cancer 0.1834307540660023 1.3274920161869985 1.0 858 +Disease MONDO:0005335 colorectal neoplasm 0.1834307540660023 1.3274920161869985 1.0 858 +Disease MONDO:0005575 colorectal cancer 0.1834307540660023 1.3274920161869985 1.0 858 +Phenotype HP:0001904 Neutropenia in presence of anti-neutropil antibodies 0.1831965864881756 1.3247104599945334 1.0 862 +Phenotype HP:0032170 Severe varicella zoster infection 0.18311105989480492 1.3236945335899533 1.0 863 +Biological Process GO:0039531 regulation of cytoplasmic pattern recognition receptor signaling pathway 0.18304024103390382 1.3228533127731732 1.0 864 +Biological Process GO:2001135 regulation of endocytic recycling 0.18292468797547412 1.321480717436891 1.0 865 +Phenotype HP:0002721 Immunodeficiency 0.1828553471314378 1.3206570532221007 1.0 866 +Biological Process GO:1904705 regulation of vascular associated smooth muscle cell proliferation 0.18278876149833845 1.3198661167406471 1.0 867 +Biological Process GO:0070741 response to interleukin-6 0.18264228892476242 1.3181262443900936 1.0 868 +Biological Process GO:0016079 synaptic vesicle exocytosis 0.18260081078374413 1.3176335468908407 1.0 869 +Biological Process GO:0010508 positive regulation of autophagy 0.18255472943535722 1.3170861702593173 1.0 870 +Phenotype HP:0003765 Psoriasiform dermatitis 0.1824140809911664 1.3154154797455813 1.0 871 +Biological Process GO:0050856 regulation of T cell receptor signaling pathway 0.18241179371983574 1.315388310426102 1.0 872 +Phenotype HP:0012176 Abnormal natural killer cell morphology 0.18239935495048454 1.3152405566839462 1.0 873 +Biological Process GO:0030833 regulation of actin filament polymerization 0.18239603756480305 1.3152011511660227 1.0 874 +Biological Process GO:0007229 integrin-mediated signaling pathway 0.1823522565674327 1.3146810992208386 1.0 875 +Phenotype HP:0000727 Frontal lobe dementia 0.18218711938634669 1.3127195195994446 1.0 876 +Biological Process GO:0008593 regulation of Notch signaling pathway 0.18218190571134663 1.3126575890362278 1.0 877 +Disease MONDO:0004868 biliary tract disorder 0.18212482041766798 1.3119795021994238 1.0 878 +Biological Process GO:2001237 negative regulation of extrinsic apoptotic signaling pathway 0.18212422982812249 1.3119724868900342 1.0 879 +Biological Process GO:0007612 learning 0.18204911548037916 1.311080242194814 1.0 880 +Biological Process GO:1905476 negative regulation of protein localization to membrane 0.18200533840745736 1.3105602368661355 1.0 881 +Biological Process GO:0045672 positive regulation of osteoclast differentiation 0.18196278682977263 1.3100547885649374 1.0 882 +Biological Process GO:0060284 regulation of cell development 0.1819249553620399 1.3096054080216588 1.0 883 +Biological Process GO:1905477 positive regulation of protein localization to membrane 0.1818860526424525 1.3091433026286903 1.0 884 +Phenotype HP:0001869 Deep plantar creases 0.18187130538651564 1.308968127561955 1.0 885 +Biological Process GO:0031032 actomyosin structure organization 0.1817172779326237 1.3071385146746413 1.0 886 +Phenotype HP:0012191 B-cell lymphoma 0.1816139898131841 1.3059116082390803 1.0 887 +Biological Process GO:0046824 positive regulation of nucleocytoplasmic transport 0.18137797545471723 1.303108115089443 1.0 888 +Phenotype HP:0006515 Interstitial pneumonitis 0.18132550240846168 1.302484814767066 1.0 889 +Biological Process GO:0010803 regulation of tumor necrosis factor-mediated signaling pathway 0.18125392802536067 1.3016346194907418 1.0 890 +Biological Process GO:0046903 secretion 0.18124251719845474 1.3014990761480816 1.0 891 +Phenotype HP:0008200 Primary hyperparathyroidism 0.18114308659886136 1.3003179912063214 1.0 892 +Biological Process GO:0060759 regulation of response to cytokine stimulus 0.18111834607889676 1.3000241112971085 1.0 893 +Phenotype HP:0005464 Craniofacial osteosclerosis 0.18108820431690897 1.2996660728125025 1.0 894 +Phenotype HP:0006707 Abnormality of the hepatic vasculature 0.18108310400590877 1.2996054888419213 1.0 895 +Biological Process GO:0032233 positive regulation of actin filament bundle assembly 0.18096289299565038 1.2981775640920903 1.0 896 +Phenotype HP:0000989 Pruritus 0.18096243530710798 1.298172127445347 1.0 897 +Phenotype HP:0005407 Decreased proportion of CD4-positive helper T cells 0.18088727173227181 1.2972792980068153 1.0 898 +Phenotype HP:0500267 Abnormal proportion of CD4-positive helper T cells 0.18088727173227181 1.2972792980068153 1.0 898 +Biological Process GO:0150105 protein localization to cell-cell junction 0.18080042122248652 1.296247645480218 1.0 900 +Biological Process GO:1905330 regulation of morphogenesis of an epithelium 0.1807924141494942 1.2961525335792794 1.0 901 +Biological Process GO:1900746 regulation of vascular endothelial growth factor signaling pathway 0.18066683707686604 1.2946608681350604 1.0 902 +Biological Process GO:2001235 positive regulation of apoptotic signaling pathway 0.18058932254518223 1.2937401128895554 1.0 903 +Phenotype HP:0012504 Abnormal size of pituitary gland 0.1805452379721708 1.2932164549255016 1.0 904 +Biological Process GO:1900026 positive regulation of substrate adhesion-dependent cell spreading 0.18053918819982429 1.293144592792026 1.0 905 +Phenotype HP:0011376 Abnormal morphology of the vestibule of the inner ear 0.18049352359422877 1.2926021664337335 1.0 906 +Biological Process GO:0043114 regulation of vascular permeability 0.18038893584685556 1.2913598223865261 1.0 907 +Biological Process GO:0010594 regulation of endothelial cell migration 0.1803688637410621 1.2911213961676455 1.0 908 +Phenotype HP:0031692 Severe cytomegalovirus infection 0.1803165918560432 1.290500485336114 1.0 909 +Phenotype HP:0200039 Pustule 0.18024439566519201 1.2896429039254067 1.0 910 +Biological Process GO:0034605 cellular response to heat 0.18019224209018436 1.2890233984376354 1.0 911 +Phenotype HP:0002665 Lymphoma 0.1801484968020558 1.2885037706641644 1.0 912 +Biological Process GO:0045840 positive regulation of mitotic nuclear division 0.18002356754002968 1.2870198002288293 1.0 913 +Phenotype HP:0000857 Neonatal insulin-dependent diabetes mellitus 0.1799862742300089 1.2865768121841623 1.0 914 +Biological Process GO:0042102 positive regulation of T cell proliferation 0.17988606154005193 1.28538643719331 1.0 915 +Phenotype HP:0011897 Neutrophilia 0.17980531196337857 1.2844272545126016 1.0 916 +Phenotype HP:0010976 B lymphocytopenia 0.17961038111850758 1.282111771286078 1.0 917 +Phenotype HP:0002859 Rhabdomyosarcoma 0.17939249561240622 1.2795236214475327 1.0 918 +Biological Process GO:0002460 adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains 0.17935744451526303 1.2791072674961608 1.0 919 +Phenotype HP:0003207 Arterial calcification 0.17932583596772167 1.278731805820533 1.0 920 +Disease MONDO:0005070 neoplasm 0.1790296097561208 1.275213087042741 1.0 921 +Biological Process GO:0071875 adrenergic receptor signaling pathway 0.1790217682948616 1.275119942358383 1.0 922 +Phenotype HP:0011380 Abnormal semicircular canal morphology 0.1789786233922792 1.2746074462559542 1.0 923 +Phenotype HP:0004306 Abnormal endocardium morphology 0.17893377809802047 1.274074752075547 1.0 924 +Biological Process GO:0036314 response to sterol 0.17886311904608376 1.2732354295472432 1.0 925 +Biological Process GO:0034110 regulation of homotypic cell-cell adhesion 0.17877349459411074 1.2721708267884173 1.0 926 +Biological Process GO:0006903 vesicle targeting 0.17874145521108864 1.2717902474397518 1.0 927 +Biological Process GO:0032434 regulation of proteasomal ubiquitin-dependent protein catabolic process 0.17865171582146622 1.270724279395717 1.0 928 +Biological Process GO:0050679 positive regulation of epithelial cell proliferation 0.17863302774744416 1.2705022933782513 1.0 929 +Phenotype HP:0030984 Abnormal serum bile acid concentration 0.17842399229648165 1.268019268791902 1.0 930 +Biological Process GO:0120035 regulation of plasma membrane bounded cell projection organization 0.17838073308359936 1.2675054148562264 1.0 931 +Biological Process GO:0071218 cellular response to misfolded protein 0.17833962399256453 1.2670171011118736 1.0 932 +Phenotype HP:0010619 Fibroadenoma of the breast 0.17824233343867346 1.2658614366720922 1.0 933 +Phenotype HP:0002720 Decreased circulating IgA level 0.17774706902706694 1.259978445509108 1.0 934 +Biological Process GO:0050670 regulation of lymphocyte proliferation 0.1776273238211049 1.2585560538088865 1.0 935 +Biological Process GO:0070424 regulation of nucleotide-binding domain, leucine rich repeat containing receptor signaling pathway 0.17748475779826933 1.2568625853649034 1.0 936 +Biological Process GO:0007033 vacuole organization 0.17746828551768945 1.2566669196178506 1.0 937 +Biological Process GO:0007346 regulation of mitotic cell cycle 0.17743207394114058 1.2562367809286124 1.0 938 +Phenotype HP:0010997 Chromosomal breakage induced by ionizing radiation 0.17731849817511913 1.254887672831655 1.0 939 +Biological Process GO:0043433 negative regulation of DNA-binding transcription factor activity 0.17730222460695155 1.2546943674871227 1.0 940 +Biological Process GO:0099643 signal release from synapse 0.17707345531721796 1.2519769347818348 1.0 941 +Biological Process GO:0007269 neurotransmitter secretion 0.17707345531721796 1.2519769347818348 1.0 941 +Phenotype HP:0001004 Lymphedema 0.1770695790839829 1.2519308910013145 1.0 943 +Biological Process GO:1901343 negative regulation of vasculature development 0.17705491881722835 1.2517567492343251 1.0 944 +Biological Process GO:0090287 regulation of cellular response to growth factor stimulus 0.1770413183640731 1.2515951964478746 1.0 945 +Phenotype HP:0031466 Impairment in personality functioning 0.17700074611805194 1.251113259609266 1.0 946 +Biological Process GO:0050714 positive regulation of protein secretion 0.17688401095858486 1.2497266227028776 1.0 947 +Biological Process GO:0002819 regulation of adaptive immune response 0.1768045646294205 1.2487829206288898 1.0 948 +Phenotype HP:0100658 Cellulitis 0.17680096159608294 1.2487401220494077 1.0 949 +Phenotype HP:0032135 Decreased circulating IgG subclass level 0.17678632996367982 1.2485663204151487 1.0 950 +Phenotype HP:0100723 Gastrointestinal stroma tumor 0.17664882320779984 1.2469329484006555 1.0 951 +Phenotype HP:0011915 Cardiovascular calcification 0.17660454644312307 1.2464070074906797 1.0 952 +Phenotype HP:0005406 Recurrent bacterial skin infections 0.17657325779373645 1.2460353457206645 1.0 953 +Biological Process GO:0070972 protein localization to endoplasmic reticulum 0.17657000777266374 1.2459967403922738 1.0 954 +Biological Process GO:1904893 negative regulation of receptor signaling pathway via STAT 0.17653633509724065 1.2455967600034035 1.0 955 +Biological Process GO:0002719 negative regulation of cytokine production involved in immune response 0.17647627613153727 1.2448833504463854 1.0 956 +Biological Process GO:0031346 positive regulation of cell projection organization 0.1764420529090045 1.2444768303916212 1.0 957 +Biological Process GO:0046328 regulation of JNK cascade 0.17640862448342676 1.2440797513210125 1.0 958 +Biological Process GO:0009595 detection of biotic stimulus 0.17634959500894598 1.243378570560619 1.0 959 +Phenotype HP:0001974 Leukocytosis 0.17634298193486753 1.2433000172556532 1.0 960 +Phenotype HP:0030783 Increased circulating interleukin 6 concentration 0.17628276257139996 1.2425847024161092 1.0 961 +Phenotype HP:6000441 Abnormal circulating interleukin 6 concentration 0.17628276257139996 1.2425847024161092 1.0 961 +Biological Process GO:0050862 positive regulation of T cell receptor signaling pathway 0.1762689104817835 1.2424201605695868 1.0 963 +Biological Process GO:0032944 regulation of mononuclear cell proliferation 0.1761663028072391 1.2412013367888897 1.0 964 +Biological Process GO:1990869 cellular response to chemokine 0.17614334021872302 1.2409285760127193 1.0 965 +Biological Process GO:1990868 response to chemokine 0.17614334021872302 1.2409285760127193 1.0 965 +Disease MONDO:0042489 disease susceptibility 0.17602706808684032 1.239547439172807 1.0 967 +Disease MONDO:0020573 inherited disease susceptibility 0.17602706808684032 1.239547439172807 1.0 967 +Biological Process GO:0048261 negative regulation of receptor-mediated endocytosis 0.1759772186411236 1.2389553032515526 1.0 969 +Disease MONDO:0021060 RASopathy 0.17592564908855113 1.238342735065846 1.0 970 +Biological Process GO:0007188 adenylate cyclase-modulating G protein-coupled receptor signaling pathway 0.17585889108935127 1.2375497511361562 1.0 971 +Phenotype HP:0003174 Abnormal ischium morphology 0.17583220136076716 1.2372327175804976 1.0 972 +Biological Process GO:0090288 negative regulation of cellular response to growth factor stimulus 0.17581752381322557 1.237058370543929 1.0 973 +Phenotype HP:0001933 Subcutaneous hemorrhage 0.17575860476223992 1.2363585014474285 1.0 974 +Biological Process GO:1903077 negative regulation of protein localization to plasma membrane 0.1757241996403166 1.2359498207033797 1.0 975 +Phenotype HP:0007461 Hemangiomatosis 0.17550828842805577 1.2333851224857157 1.0 976 +Biological Process GO:0051258 protein polymerization 0.17547030670460073 1.2329339571320088 1.0 977 +Phenotype HP:0002239 Gastrointestinal hemorrhage 0.17541165540482473 1.2322372685143863 1.0 978 +Biological Process GO:1902904 negative regulation of supramolecular fiber organization 0.1753810053383531 1.2318731921423076 1.0 979 +Phenotype HP:0020071 Viremia 0.17519591309232996 1.229674576570155 1.0 980 +Phenotype HP:0032248 Persistent viremia 0.17519591309232996 1.229674576570155 1.0 980 +Biological Process GO:0032088 negative regulation of NF-kappaB transcription factor activity 0.1751649803852362 1.229307142855527 1.0 982 +Phenotype HP:0012311 Monocytosis 0.17516029981939274 1.22925154482173 1.0 983 +Biological Process GO:0044788 modulation by host of viral process 0.17515491164955455 1.2291875415240978 1.0 984 +Biological Process GO:2000353 positive regulation of endothelial cell apoptotic process 0.1751149982554122 1.22871343084802 1.0 985 +Biological Process GO:0010447 response to acidic pH 0.17511207488732128 1.2286787056623574 1.0 986 +Phenotype HP:0025540 Abnormal T cell subset distribution 0.17506167892468905 1.2280800779478123 1.0 987 +Disease MONDO:0005586 head and neck neoplasm 0.17504574210927193 1.227890772715965 1.0 988 +Biological Process GO:0090303 positive regulation of wound healing 0.17504510076048718 1.2278831544636846 1.0 989 +Biological Process GO:1903036 positive regulation of response to wounding 0.17504510076048718 1.2278831544636846 1.0 989 +Phenotype HP:0006481 Abnormality of primary teeth 0.17499677077212727 1.2273090673947062 1.0 991 +Phenotype HP:0003613 Antiphospholipid antibody positivity 0.17495485579626535 1.2268111809590698 1.0 992 +Biological Process GO:0033630 positive regulation of cell adhesion mediated by integrin 0.17493618687886991 1.226589422493317 1.0 993 +Biological Process GO:1904292 regulation of ERAD pathway 0.1749239514412786 1.2264440840245352 1.0 994 +Biological Process GO:0010575 positive regulation of vascular endothelial growth factor production 0.17491874290252685 1.2263822144721699 1.0 995 +Phenotype HP:0001645 Sudden cardiac death 0.17490506854138343 1.2262197837707487 1.0 996 +Biological Process GO:1901222 regulation of non-canonical NF-kappaB signal transduction 0.17486564517605607 1.2257514938948748 1.0 997 +Phenotype HP:0002843 Abnormal T cell morphology 0.17474619552518522 1.2243326129415368 1.0 998 +Biological Process GO:2000351 regulation of endothelial cell apoptotic process 0.1747382624049647 1.2242383794875302 1.0 999 +Biological Process GO:0090023 positive regulation of neutrophil chemotaxis 0.1746126174783832 1.222745908041106 1.0 1000 +Phenotype HP:0006740 Transitional cell carcinoma of the bladder 0.17459523623565687 1.2225394452003198 1.0 1001 +Phenotype HP:0007924 Slow decrease in visual acuity 0.17453163297337748 1.2217839347675938 1.0 1002 +Biological Process GO:0071216 cellular response to biotic stimulus 0.17441063946378732 1.2203467151107474 1.0 1003 +Phenotype HP:0011839 Abnormal T cell count 0.17434180050392123 1.2195290125198273 1.0 1004 +Phenotype HP:0003496 Increased circulating IgM level 0.17432366655963139 1.2193136087243857 1.0 1005 +Phenotype HP:0002249 Melena 0.17418294438418092 1.2176420423949466 1.0 1006 +Biological Process GO:0008015 blood circulation 0.17415613616786818 1.2173236013845141 1.0 1007 +Biological Process GO:0043065 positive regulation of apoptotic process 0.17415179169464579 1.2172719956220643 1.0 1008 +Biological Process GO:0050921 positive regulation of chemotaxis 0.17411717997374754 1.2168608607950746 1.0 1009 +Biological Process GO:0007080 mitotic metaphase chromosome alignment 0.1740643751669878 1.2162336196603383 1.0 1010 +Phenotype HP:0010497 Sirenomelia 0.17401030566920905 1.2155913559115912 1.0 1011 +Biological Process GO:0010720 positive regulation of cell development 0.17386188629719368 1.2138283585438825 1.0 1012 +Biological Process GO:0061635 regulation of protein complex stability 0.1738563509633535 1.2137626071607774 1.0 1013 +Biological Process GO:0051785 positive regulation of nuclear division 0.17382557556452516 1.2133970420301088 1.0 1014 +Biological Process GO:2000181 negative regulation of blood vessel morphogenesis 0.17376635961932552 1.2126936462799736 1.0 1015 +Biological Process GO:0043271 negative regulation of monoatomic ion transport 0.17373065878661198 1.2122695744540097 1.0 1016 +Biological Process GO:2000377 regulation of reactive oxygen species metabolic process 0.1737154566121356 1.2120889956439707 1.0 1017 +Biological Process GO:0071396 cellular response to lipid 0.17367786398351515 1.2116424521476388 1.0 1018 +Phenotype HP:0003466 Paradoxical increased cortisol secretion on dexamethasone suppression test 0.1735981773992109 1.2106958962064405 1.0 1019 +Biological Process GO:0010921 regulation of phosphatase activity 0.17359562273224216 1.2106655506317348 1.0 1020 +Biological Process GO:1901888 regulation of cell junction assembly 0.1735092239126813 1.2096392635009474 1.0 1021 +Biological Process GO:0071219 cellular response to molecule of bacterial origin 0.17333285566678514 1.207544275838352 1.0 1022 +Biological Process GO:0031344 regulation of cell projection organization 0.17328700971505928 1.2069996953626685 1.0 1023 +Phenotype HP:0006519 Alveolar cell carcinoma 0.17324414193578597 1.2064904910654657 1.0 1024 +Phenotype HP:0000995 Melanocytic nevus 0.17321550519035256 1.2061503298982725 1.0 1025 +Phenotype HP:0100007 Neoplasm of the peripheral nervous system 0.1730370285867875 1.2040302981395463 1.0 1026 +Phenotype HP:0000725 Psychotic episodes 0.17302662507847044 1.2039067202162008 1.0 1027 +Biological Process GO:0006511 ubiquitin-dependent protein catabolic process 0.17300418879378898 1.2036402111325317 1.0 1028 +Biological Process GO:0051894 positive regulation of focal adhesion assembly 0.17291171152471152 1.2025417212269176 1.0 1029 +Biological Process GO:0031348 negative regulation of defense response 0.17278289093960864 1.2010115277665954 1.0 1030 +Biological Process GO:0072678 T cell migration 0.17271563219740937 1.2002125957684164 1.0 1031 +Phenotype HP:0100761 Visceral angiomatosis 0.17269596969413314 1.1999790350071233 1.0 1032 +Phenotype HP:0009658 Aplasia/Hypoplasia of the phalanges of the thumb 0.17265967242996894 1.1995478784787836 1.0 1033 +Phenotype HP:0012111 Abnormality of circulating glucocorticoid level 0.17264204160594143 1.1993384509901144 1.0 1034 +Biological Process GO:0005979 regulation of glycogen biosynthetic process 0.17260554304186826 1.1989049033237122 1.0 1035 +Biological Process GO:0010962 regulation of glucan biosynthetic process 0.17260554304186826 1.1989049033237122 1.0 1035 +Biological Process GO:0002221 pattern recognition receptor signaling pathway 0.17256639891782155 1.198439930411359 1.0 1037 +Biological Process GO:0032102 negative regulation of response to external stimulus 0.1725598246185478 1.198361837692351 1.0 1038 +Biological Process GO:0050766 positive regulation of phagocytosis 0.17251819512940259 1.1978673424065573 1.0 1039 +Phenotype HP:0025439 Pharyngitis 0.17241851754102167 1.1966833236120504 1.0 1040 +Biological Process GO:0033135 regulation of peptidyl-serine phosphorylation 0.17232024019253367 1.195515937546896 1.0 1041 +Biological Process GO:0035023 regulation of Rho protein signal transduction 0.17220064818637548 1.1940953656283324 1.0 1042 +Biological Process GO:0071222 cellular response to lipopolysaccharide 0.17217922096355198 1.193840842671375 1.0 1043 +Phenotype HP:0001880 Eosinophilia 0.17215476496294024 1.193550342421187 1.0 1044 +Biological Process GO:1902624 positive regulation of neutrophil migration 0.17215221512233925 1.193520054176421 1.0 1045 +Phenotype HP:0100707 Abnormal astrocyte morphology 0.17214567561803196 1.1934423747689198 1.0 1046 +Biological Process GO:0034643 establishment of mitochondrion localization, microtubule-mediated 0.172140599135435 1.1933820738436824 1.0 1047 +Biological Process GO:0047497 mitochondrion transport along microtubule 0.172140599135435 1.1933820738436824 1.0 1047 +Biological Process GO:0002822 regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains 0.17204897843927103 1.1922937587270548 1.0 1049 +Disease MONDO:0037821 porphyrin metabolism disease 0.17204364835067176 1.1922304453465806 1.0 1050 +Disease MONDO:0017754 inborn disorder of porphyrin metabolism 0.17204364835067176 1.1922304453465806 1.0 1050 +Biological Process GO:0045912 negative regulation of carbohydrate metabolic process 0.17187929988784378 1.1902782345036276 1.0 1052 +Phenotype HP:0010053 Abnormality of the distal phalanx of the hallux 0.17162144537508417 1.187215313396537 1.0 1053 +Biological Process GO:0051496 positive regulation of stress fiber assembly 0.17161113907862924 1.1870928902028923 1.0 1054 +Biological Process GO:0042531 positive regulation of tyrosine phosphorylation of STAT protein 0.1715211495756379 1.186023951190816 1.0 1055 +Biological Process GO:2000107 negative regulation of leukocyte apoptotic process 0.17144243356012634 1.185088924137009 1.0 1056 +Disease MONDO:0021094 immunodeficiency disease 0.171436593317273 1.185019550896593 1.0 1057 +Phenotype HP:0032309 Abnormal granulocyte count 0.17142571882971092 1.184890378453085 1.0 1058 +Biological Process GO:0002228 natural killer cell mediated immunity 0.1713513997520314 1.1840075803618362 1.0 1059 +Disease MONDO:0005165 benign neoplasm 0.17133708842755047 1.1838375835006065 1.0 1060 +Biological Process GO:0071276 cellular response to cadmium ion 0.17118782415063938 1.1820645499422922 1.0 1061 +Phenotype HP:0005932 Abnormal renal corticomedullary differentiation 0.1711668699726494 1.18181564604156 1.0 1062 +Biological Process GO:0050847 progesterone receptor signaling pathway 0.17111634321408153 1.181215464669382 1.0 1063 +Biological Process GO:0042307 positive regulation of protein import into nucleus 0.1711120578145976 1.1811645606134817 1.0 1064 +Disease MONDO:0015541 hereditary hemophagocytic lymphohistiocytosis 0.17105812285720456 1.1805238950007642 1.0 1065 +Disease MONDO:0015540 hemophagocytic syndrome 0.17105812285720456 1.1805238950007642 1.0 1065 +Phenotype HP:0012030 Increased urinary cortisol level 0.17102294595162648 1.1801060466357145 1.0 1067 +Phenotype HP:0008388 Abnormal toenail morphology 0.1710029923597186 1.179869028182313 1.0 1068 +Phenotype HP:0000854 Thyroid adenoma 0.17099695395104286 1.1797973010320366 1.0 1069 +Phenotype HP:0033678 Acute coronary syndrome 0.17093426658850341 1.1790526701011483 1.0 1070 +Phenotype HP:0001658 Myocardial infarction 0.17093426658850341 1.1790526701011483 1.0 1070 +Biological Process GO:0051098 regulation of binding 0.17083325994753606 1.1778528641746815 1.0 1072 +Phenotype HP:0031364 Ecchymosis 0.17083266005652387 1.177845738377954 1.0 1073 +Biological Process GO:0042267 natural killer cell mediated cytotoxicity 0.17078836072867032 1.1773195294516086 1.0 1074 +Phenotype HP:0009926 Epiphora 0.170612803574828 1.175234176334265 1.0 1075 +Biological Process GO:0045648 positive regulation of erythrocyte differentiation 0.17058480347712857 1.1749015775779883 1.0 1076 +Phenotype HP:0008000 Decreased corneal reflex 0.1705539241983407 1.1745347785107203 1.0 1077 +Disease MONDO:0021350 neoplasm of thorax 0.1704831186607948 1.1736937159552225 1.0 1078 +Biological Process GO:0050855 regulation of B cell receptor signaling pathway 0.17042205719965797 1.1729683982706718 1.0 1079 +Phenotype HP:0100827 Lymphocytosis 0.17042143303453616 1.1729609841342836 1.0 1080 +Phenotype HP:5200202 Abnormal interpretation of external stimuli 0.17032569821844745 1.1718237995035268 1.0 1081 +Phenotype HP:5200204 Disturbed perception with a stimulus 0.17032569821844745 1.1718237995035268 1.0 1081 +Phenotype HP:0010524 Disturbed sensory perception 0.17032569821844745 1.1718237995035268 1.0 1081 +Biological Process GO:0140029 exocytic process 0.1701327961058009 1.1695324145434416 1.0 1084 +Biological Process GO:2000108 positive regulation of leukocyte apoptotic process 0.1699606126314419 1.1674871356291339 1.0 1085 +Phenotype HP:0002716 Lymphadenopathy 0.16992559629446458 1.1670711945758903 1.0 1086 +Biological Process GO:1901797 negative regulation of signal transduction by p53 class mediator 0.16985327009740003 1.1662120688882547 1.0 1087 +Phenotype HP:0000040 Long penis 0.16982937458523817 1.1659282263920268 1.0 1088 +Phenotype HP:0002862 Bladder carcinoma 0.16974956354902004 1.164980192150566 1.0 1089 +Biological Process GO:0090110 COPII-coated vesicle cargo loading 0.16973852465329597 1.1648490667870797 1.0 1090 +Biological Process GO:0034103 regulation of tissue remodeling 0.16972513591115512 1.164690028806857 1.0 1091 +Biological Process GO:0048041 focal adhesion assembly 0.16918842963107772 1.1583147710075505 1.0 1092 +Phenotype HP:0003072 Hypercalcemia 0.16916161771473437 1.157996286046358 1.0 1093 +Phenotype HP:0000712 Emotional lability 0.16911520009764092 1.1574449150518586 1.0 1094 +Biological Process GO:0099175 regulation of postsynapse organization 0.16910420556965822 1.1573143167099476 1.0 1095 +Biological Process GO:0002639 positive regulation of immunoglobulin production 0.16910050097107443 1.1572703116891545 1.0 1096 +Biological Process GO:0010574 regulation of vascular endothelial growth factor production 0.16909926485061277 1.157255628450097 1.0 1097 +Phenotype HP:0004398 Peptic ulcer 0.1690854039479076 1.1570909819174278 1.0 1098 +Biological Process GO:1900077 negative regulation of cellular response to insulin stimulus 0.16885060606190028 1.1543019386183389 1.0 1099 +Biological Process GO:0046627 negative regulation of insulin receptor signaling pathway 0.16885060606190028 1.1543019386183389 1.0 1099 +Phenotype HP:0045027 Abnormality of the thoracic cavity 0.16883568955603745 1.1541247531188012 1.0 1101 +Phenotype HP:0410243 Abnormal circulating IgM level 0.1688291322053349 1.1540468617231516 1.0 1102 +Phenotype HP:0012115 Hepatitis 0.168819158109768 1.153928384572959 1.0 1103 +Biological Process GO:0070861 regulation of protein exit from endoplasmic reticulum 0.1687549910141899 1.1531661766545347 1.0 1104 +Phenotype HP:0011892 Decreased circulating vitamin K concentration 0.16869132289322342 1.1524098957988307 1.0 1105 +Phenotype HP:0100831 Abnormality of vitamin K metabolism 0.16869132289322342 1.1524098957988307 1.0 1105 +Disease MONDO:0003274 thoracic cancer 0.16867861261506834 1.1522589169432675 1.0 1107 +Biological Process GO:0043068 positive regulation of programmed cell death 0.1685832227724593 1.1511258300750085 1.0 1108 +Phenotype HP:0009851 Aplasia/Hypoplasia of the proximal phalanges of the hand 0.16855866430247202 1.1508341126438228 1.0 1109 +Biological Process GO:0098586 cellular response to virus 0.16855529557555526 1.1507940972697774 1.0 1110 +Biological Process GO:0010639 negative regulation of organelle organization 0.16850568230777352 1.150204766784714 1.0 1111 +Biological Process GO:0002699 positive regulation of immune effector process 0.16850271232310587 1.150169487864718 1.0 1112 +Biological Process GO:1900101 regulation of endoplasmic reticulum unfolded protein response 0.16848768356298038 1.1499909689545422 1.0 1113 +Phenotype HP:0003739 Myoclonic spasms 0.16847291731185865 1.1498155682537776 1.0 1114 +Biological Process GO:0043154 negative regulation of cysteine-type endopeptidase activity involved in apoptotic process 0.16846581472573519 1.1497312002870521 1.0 1115 +Phenotype HP:0002204 Pulmonary embolism 0.16842720883070528 1.1492726207203046 1.0 1116 +Phenotype HP:0012475 Decreased circulating level of specific antibody 0.16841235079329908 1.149096129737485 1.0 1117 +Biological Process GO:0002701 negative regulation of production of molecular mediator of immune response 0.16836442976881205 1.1485269005399665 1.0 1118 +Phenotype HP:0000978 Bruising susceptibility 0.1683625419096384 1.1485044756320277 1.0 1119 +Phenotype HP:0003418 Back pain 0.16829812662325083 1.1477393195826564 1.0 1120 +Phenotype HP:0031845 Abnormal libido 0.1681404396827303 1.1458662375362578 1.0 1121 +Biological Process GO:0035967 cellular response to topologically incorrect protein 0.16810370100012795 1.1454298376253735 1.0 1122 +Biological Process GO:1903900 regulation of viral life cycle 0.1679947407574418 1.1441355549557186 1.0 1123 +Biological Process GO:0002573 myeloid leukocyte differentiation 0.1679932895626789 1.1441183169596787 1.0 1124 +Disease MONDO:0005571 polycythemia 0.16790705450948962 1.1430939751253717 1.0 1125 +Disease MONDO:0001115 familial polycythemia 0.16790705450948962 1.1430939751253717 1.0 1125 +Phenotype HP:0001973 Autoimmune thrombocytopenia 0.16785411310905518 1.1424651114646425 1.0 1127 +Phenotype HP:0031589 Suicidal ideation 0.16771492928638287 1.140811818436469 1.0 1128 +Biological Process GO:1905562 regulation of vascular endothelial cell proliferation 0.16768452772710973 1.1404506939535597 1.0 1129 +Biological Process GO:0032091 negative regulation of protein binding 0.1676753394033308 1.140341550582206 1.0 1130 +Phenotype HP:0002576 Intussusception 0.16766869791613737 1.140262659772464 1.0 1131 +Biological Process GO:0003013 circulatory system process 0.16766821853833325 1.1402569654901389 1.0 1132 +Phenotype HP:0100000 Early onset of sexual maturation 0.16759314562537964 1.13936521297747 1.0 1133 +Biological Process GO:0046651 lymphocyte proliferation 0.16757020112981347 1.139092667118144 1.0 1134 +Biological Process GO:0046634 regulation of alpha-beta T cell activation 0.16750316639965346 1.1382963960437393 1.0 1135 +Phenotype HP:0005404 Increased B cell count 0.16742086874047069 1.1373188244872934 1.0 1136 +Phenotype HP:0031863 Bloodstream infectious agent 0.1673475749513168 1.1364482052709939 1.0 1137 +Phenotype HP:0430150 Positive blood infectious agent test 0.1673475749513168 1.1364482052709939 1.0 1137 +Phenotype HP:0430030 Positive infectious agent test 0.1673475749513168 1.1364482052709939 1.0 1137 +Biological Process GO:0043518 negative regulation of DNA damage response, signal transduction by p53 class mediator 0.1673099016887345 1.1360007039653104 1.0 1140 +Phenotype HP:0100817 Renovascular hypertension 0.16729036564408628 1.1357686453410043 1.0 1141 +Biological Process GO:0046888 negative regulation of hormone secretion 0.16726181194405443 1.1354294706274146 1.0 1142 +Biological Process GO:0072676 lymphocyte migration 0.16717718845444884 1.1344242717278699 1.0 1143 +Phenotype HP:0004796 Gastrointestinal obstruction 0.16707936492398812 1.1332622763336004 1.0 1144 +Biological Process GO:0048660 regulation of smooth muscle cell proliferation 0.16706915685004675 1.133141019874665 1.0 1145 +Biological Process GO:0002755 MyD88-dependent toll-like receptor signaling pathway 0.16702460446902045 1.1326118050598606 1.0 1146 +Biological Process GO:0030099 myeloid cell differentiation 0.16701037980361733 1.1324428375772353 1.0 1147 +Phenotype HP:0001433 Hepatosplenomegaly 0.16699896943950399 1.13230729973185 1.0 1148 +Biological Process GO:0051438 regulation of ubiquitin-protein transferase activity 0.16696995747738852 1.1319626815587158 1.0 1149 +Phenotype HP:0002103 Abnormal pleura morphology 0.16693327022941262 1.1315268926132993 1.0 1150 +Phenotype HP:0001409 Portal hypertension 0.16684198545927198 1.13044256778909 1.0 1151 +Phenotype HP:0011133 Increased sensitivity to ionizing radiation 0.1668296879072717 1.130296491495198 1.0 1152 +Biological Process GO:0035966 response to topologically incorrect protein 0.1668058613414093 1.1300134679765927 1.0 1153 +Biological Process GO:1900103 positive regulation of endoplasmic reticulum unfolded protein response 0.16676408570099954 1.1295172366351134 1.0 1154 +Disease MONDO:0021100 breast neoplasm 0.1665867398901295 1.1274106369810895 1.0 1155 +Phenotype HP:0000826 Precocious puberty 0.1665123592533373 1.1265271076608092 1.0 1156 +Phenotype HP:0001890 Autoimmune hemolytic anemia 0.1664087644811405 1.125296558654899 1.0 1157 +Biological Process GO:0051900 regulation of mitochondrial depolarization 0.1663873914118369 1.1250426789597459 1.0 1158 +Biological Process GO:0150115 cell-substrate junction organization 0.16635677018667416 1.1246789451787382 1.0 1159 +Biological Process GO:0007044 cell-substrate junction assembly 0.16635677018667416 1.1246789451787382 1.0 1159 +Biological Process GO:0033137 negative regulation of peptidyl-serine phosphorylation 0.16634890692139748 1.1245855414956736 1.0 1161 +Biological Process GO:0040008 regulation of growth 0.16633921410066344 1.1244704054645225 1.0 1162 +Biological Process GO:1904262 negative regulation of TORC1 signaling 0.1663367142607779 1.124440711152533 1.0 1163 +Biological Process GO:1902230 negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage 0.16629605209283116 1.12395770617763 1.0 1164 +Phenotype HP:0033401 Tissue ischemia 0.16625070491342098 1.1234190503616972 1.0 1165 +Phenotype HP:0002637 Cerebral ischemia 0.16625070491342098 1.1234190503616972 1.0 1165 +Biological Process GO:0002274 myeloid leukocyte activation 0.16623383965917582 1.1232187166826348 1.0 1167 +Biological Process GO:0032365 intracellular lipid transport 0.16620939585237826 1.1229283612764929 1.0 1168 +Biological Process GO:0003254 regulation of membrane depolarization 0.1661155334154436 1.1218134176744854 1.0 1169 +Phenotype HP:0004934 Vascular calcification 0.16608053410681156 1.1213976788921953 1.0 1170 +Phenotype HP:0032218 Decreased proportion of CD4-positive T cells 0.16606320588394385 1.1211918458470342 1.0 1171 +Biological Process GO:0042129 regulation of T cell proliferation 0.16597548314494737 1.1201498325583445 1.0 1172 +Phenotype HP:0011991 Abnormal neutrophil count 0.16595807948886288 1.1199431034808067 1.0 1173 +Biological Process GO:0032814 regulation of natural killer cell activation 0.16595085461692127 1.119857282943756 1.0 1174 +Phenotype HP:0009660 Short phalanx of the thumb 0.16592757093556243 1.1195807080708888 1.0 1175 +Biological Process GO:1904376 negative regulation of protein localization to cell periphery 0.1657823753308213 1.1178560041762047 1.0 1176 +Biological Process GO:0050920 regulation of chemotaxis 0.16578179734946408 1.1178491386329974 1.0 1177 +Biological Process GO:1904263 positive regulation of TORC1 signaling 0.16576131341903855 1.1176058205611705 1.0 1178 +Phenotype HP:0003212 Increased circulating IgE level 0.16569091918095724 1.1167696436204249 1.0 1179 +Biological Process GO:0014070 response to organic cyclic compound 0.16567193686440274 1.1165441624472858 1.0 1180 +Phenotype HP:0040088 Abnormal lymphocyte count 0.16565412977759264 1.1163326412236985 1.0 1181 +Phenotype HP:0010816 Epidermal nevus 0.16560871614457962 1.1157931960396037 1.0 1182 +Biological Process GO:1905564 positive regulation of vascular endothelial cell proliferation 0.16555701847155668 1.115179105976976 1.0 1183 +Phenotype HP:0001978 Extramedullary hematopoiesis 0.16544964600706313 1.1139036837076586 1.0 1184 +Phenotype HP:0002920 Decreased circulating ACTH concentration 0.16534020586343467 1.1126037005415887 1.0 1185 +Phenotype HP:0000831 Insulin-resistant diabetes mellitus 0.16529355834812132 1.1120495987044035 1.0 1186 +Biological Process GO:0045725 positive regulation of glycogen biosynthetic process 0.1652459991042241 1.111484666912398 1.0 1187 +Phenotype HP:0012126 Stomach cancer 0.16520931208557055 1.1110488806909833 1.0 1188 +Biological Process GO:0097190 apoptotic signaling pathway 0.16520815041454728 1.1110350817985049 1.0 1189 +Biological Process GO:0097435 supramolecular fiber organization 0.16512401191578752 1.1100356438557204 1.0 1190 +Biological Process GO:0071622 regulation of granulocyte chemotaxis 0.16509191279930735 1.1096543549640354 1.0 1191 +Phenotype HP:0011731 Abnormality of circulating cortisol level 0.1650708610797056 1.109404292416676 1.0 1192 +Biological Process GO:0019941 modification-dependent protein catabolic process 0.16503353314435798 1.1089608930755643 1.0 1193 +Phenotype HP:0011054 Agenesis of molar 0.16483252806506998 1.1065732571432139 1.0 1194 +Biological Process GO:0042391 regulation of membrane potential 0.16475437656498793 1.1056449356777862 1.0 1195 +Biological Process GO:0046794 transport of virus 0.1647477442722498 1.105566154084249 1.0 1196 +Phenotype HP:0004381 Supravalvular aortic stenosis 0.16472431578551305 1.1052878591427906 1.0 1197 +Biological Process GO:1904063 negative regulation of cation transmembrane transport 0.16471355587084058 1.1051600476516978 1.0 1198 +Phenotype HP:0410240 Abnormal circulating IgA level 0.1647132541404428 1.105156463551524 1.0 1199 +Biological Process GO:0002275 myeloid cell activation involved in immune response 0.16468260125430167 1.1047923536860418 1.0 1200 +Phenotype HP:0012031 Lipomatous tumor 0.1645135952909238 1.1027848187900486 1.0 1201 +Phenotype HP:0200013 Neoplasm of fatty tissue 0.1645135952909238 1.1027848187900486 1.0 1201 +Phenotype HP:0001342 Cerebral hemorrhage 0.1644938089343828 1.1025497868395382 1.0 1203 +Biological Process GO:0032729 positive regulation of type II interferon production 0.16449377712485547 1.1025494089905268 1.0 1204 +Biological Process GO:0043632 modification-dependent macromolecule catabolic process 0.16449058796164617 1.102511526561388 1.0 1205 +Biological Process GO:0043281 regulation of cysteine-type endopeptidase activity involved in apoptotic process 0.1644807625782706 1.1023948158868135 1.0 1206 +Biological Process GO:0016525 negative regulation of angiogenesis 0.16435861617582637 1.1009439016088447 1.0 1207 +Phenotype HP:0003154 Increased circulating ACTH level 0.16433260855140164 1.1006349704175955 1.0 1208 +Biological Process GO:0072599 establishment of protein localization to endoplasmic reticulum 0.16423588121895205 1.0994859961955754 1.0 1209 +Biological Process GO:0043542 endothelial cell migration 0.16419303505042682 1.0989770486013315 1.0 1210 +Phenotype HP:0011750 Neoplasm of the anterior pituitary 0.16413009402120138 1.0982294044943761 1.0 1211 +Phenotype HP:0040277 Neoplasm of the pituitary gland 0.16413009402120138 1.0982294044943761 1.0 1211 +Biological Process GO:0140962 multicellular organismal-level chemical homeostasis 0.16412410358631135 1.0981582472000206 1.0 1213 +Biological Process GO:0062098 regulation of programmed necrotic cell death 0.1640387293098282 1.0971441300893903 1.0 1214 +Biological Process GO:0002886 regulation of myeloid leukocyte mediated immunity 0.16401761054692665 1.0968932711691621 1.0 1215 +Phenotype HP:0012760 Reduced social reciprocity 0.16386894128707108 1.0951273055123514 1.0 1216 +Phenotype HP:0001136 Retinal arteriolar tortuosity 0.1638472098701953 1.0948691691907357 1.0 1217 +Phenotype HP:0009594 Retinal hamartoma 0.1638274249356303 1.0946341541311464 1.0 1218 +Biological Process GO:0045599 negative regulation of fat cell differentiation 0.16377667921764738 1.094031371852718 1.0 1219 +Phenotype HP:0031392 Abnormal proportion of CD4-positive T cells 0.1637350429805764 1.0935367964117853 1.0 1220 +Phenotype HP:0004315 Decreased circulating IgG level 0.1637326869270258 1.0935088100636996 1.0 1221 +Disease MONDO:0024582 male reproductive system neoplasm 0.163711235705561 1.0932540020392278 1.0 1222 +Disease MONDO:0023603 hereditary disorder of connective tissue 0.16370818539944487 1.0932177690220657 1.0 1223 +Biological Process GO:1900017 positive regulation of cytokine production involved in inflammatory response 0.16370648130107723 1.0931975269142082 1.0 1224 +Biological Process GO:0002752 cell surface pattern recognition receptor signaling pathway 0.1635474247889832 1.091308176431647 1.0 1225 +Phenotype HP:0005266 Intestinal polyp 0.16350961564471933 1.0908590610573707 1.0 1226 +Biological Process GO:0032409 regulation of transporter activity 0.1633123335795592 1.0885156488945877 1.0 1227 +Biological Process GO:0072384 organelle transport along microtubule 0.1632742437928123 1.0880631999126287 1.0 1228 +Biological Process GO:0106027 neuron projection organization 0.16327320282965496 1.0880508348467928 1.0 1229 +Biological Process GO:1902235 regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway 0.16324745526386697 1.0877449927583056 1.0 1230 +Phenotype HP:0011055 Agenesis of permanent molar 0.163208502589548 1.0872822939787794 1.0 1231 +Phenotype HP:0011056 Agenesis of first permanent molar tooth 0.163208502589548 1.0872822939787794 1.0 1231 +Phenotype HP:0011053 Agenesis of mandibular premolar 0.163208502589548 1.0872822939787794 1.0 1231 +Disease MONDO:0018997 Noonan syndrome 0.163124625941527 1.0862859664262148 1.0 1234 +Phenotype HP:0100280 Crohn's disease 0.16311255856882234 1.086142624313763 1.0 1235 +Biological Process GO:1904779 regulation of protein localization to centrosome 0.16310621210058174 1.0860672378823928 1.0 1236 +Biological Process GO:0099111 microtubule-based transport 0.16305265199098185 1.0854310248937742 1.0 1237 +Biological Process GO:0032943 mononuclear cell proliferation 0.16295443422882205 1.0842643466239592 1.0 1238 +Phenotype HP:0012246 Oculomotor nerve palsy 0.16294324477554611 1.0841314328647664 1.0 1239 +Phenotype HP:0005222 Bowel diverticulosis 0.16287642995239582 1.0833377739526018 1.0 1240 +Biological Process GO:1902430 negative regulation of amyloid-beta formation 0.162776958869007 1.0821562081246623 1.0 1241 +Biological Process GO:0071364 cellular response to epidermal growth factor stimulus 0.1627641195368692 1.0820036963032287 1.0 1242 +Biological Process GO:0051282 regulation of sequestering of calcium ion 0.1627630734460599 1.0819912703286532 1.0 1243 +Biological Process GO:0034766 negative regulation of monoatomic ion transmembrane transport 0.16276223728064942 1.0819813379498968 1.0 1244 +Biological Process GO:0010660 regulation of muscle cell apoptotic process 0.16271603167549287 1.0814324853361292 1.0 1245 +Phenotype HP:0006753 Neoplasm of the stomach 0.16270689807036554 1.0813239919394888 1.0 1246 +Biological Process GO:0002285 lymphocyte activation involved in immune response 0.16266954452871862 1.0808802884343205 1.0 1247 +Biological Process GO:0010762 regulation of fibroblast migration 0.16264651316626466 1.080606710727922 1.0 1248 +Phenotype HP:0002185 Neurofibrillary tangles 0.1625746359325052 1.0797529180444239 1.0 1249 +Phenotype HP:0100785 Insomnia 0.1625478566809938 1.079434821091966 1.0 1250 +Phenotype HP:0011112 Abnormal circulating cytokine concentration 0.16250280108807658 1.07889962888198 1.0 1251 +Phenotype HP:0012032 Lipoma 0.16239567079441475 1.077627083235391 1.0 1252 +Biological Process GO:0099518 vesicle cytoskeletal trafficking 0.16226265243578086 1.076047026582785 1.0 1253 +Biological Process GO:0032148 activation of protein kinase B activity 0.16216910176128596 1.0749357862464173 1.0 1254 +Phenotype HP:0005195 Polyarticular arthropathy 0.16216123597830778 1.0748423526568716 1.0 1255 +Biological Process GO:0048858 cell projection morphogenesis 0.1621097873488324 1.074231220854428 1.0 1256 +Biological Process GO:0120039 plasma membrane bounded cell projection morphogenesis 0.1621097873488324 1.074231220854428 1.0 1256 +Phenotype HP:0010927 Abnormal blood inorganic cation concentration 0.16204251656660895 1.0734321458389957 1.0 1258 +Phenotype HP:0200042 Skin ulcer 0.16202019065946416 1.0731669478733021 1.0 1259 +Phenotype HP:0030532 Visual acuity test abnormality 0.1619547216113697 1.0723892747307089 1.0 1260 +Biological Process GO:0050926 regulation of positive chemotaxis 0.16184228121250988 1.071053653076189 1.0 1261 +Phenotype HP:0012028 Hepatocellular adenoma 0.16183157865667008 1.070926522921162 1.0 1262 +Biological Process GO:0044090 positive regulation of vacuole organization 0.1618112267634999 1.0706847732519666 1.0 1263 +Biological Process GO:0031929 TOR signaling 0.16180771332737853 1.0706430389517234 1.0 1264 +Biological Process GO:0071356 cellular response to tumor necrosis factor 0.16180176540086422 1.0705723865924952 1.0 1265 +Phenotype HP:0010982 Polygenic inheritance 0.16179856545756133 1.0705343761121704 1.0 1266 +Phenotype HP:0005584 Renal cell carcinoma 0.16176653013826192 1.0701538450343762 1.0 1267 +Biological Process GO:0051279 regulation of release of sequestered calcium ion into cytosol 0.1617459070531867 1.0699088740160518 1.0 1268 +Phenotype HP:0008969 Leg muscle stiffness 0.16171638400047206 1.0695581848606144 1.0 1269 +Phenotype HP:0011111 Abnormal immune serum protein physiology 0.1616825464686097 1.06915624622691 1.0 1270 +Biological Process GO:0010712 regulation of collagen metabolic process 0.1615567628386384 1.067662127194273 1.0 1271 +Biological Process GO:0006469 negative regulation of protein kinase activity 0.1615395264665933 1.067457385197782 1.0 1272 +Biological Process GO:0051085 chaperone cofactor-dependent protein refolding 0.1614901917253727 1.066871363186454 1.0 1273 +Phenotype HP:0004425 Flat forehead 0.16142772402179395 1.066129341471359 1.0 1274 +Biological Process GO:0051494 negative regulation of cytoskeleton organization 0.16142151254416248 1.0660555585239906 1.0 1275 +Biological Process GO:1904037 positive regulation of epithelial cell apoptotic process 0.16139543414603896 1.0657457866483824 1.0 1276 +Biological Process GO:0001936 regulation of endothelial cell proliferation 0.16137935423422034 1.0655547816479953 1.0 1277 +Biological Process GO:0071467 cellular response to pH 0.1613244756718013 1.0649029074365994 1.0 1278 +Biological Process GO:0050927 positive regulation of positive chemotaxis 0.16131170416596174 1.0647512012888705 1.0 1279 +Biological Process GO:0034599 cellular response to oxidative stress 0.16121748436424443 1.0636320127344514 1.0 1280 +Phenotype HP:0011063 Abnormal incisor morphology 0.16117606763617265 1.0631400447279968 1.0 1281 +Biological Process GO:0022406 membrane docking 0.16117405911884153 1.0631161865838767 1.0 1282 +Biological Process GO:2001238 positive regulation of extrinsic apoptotic signaling pathway 0.16117300488303188 1.063103663859032 1.0 1283 +Phenotype HP:0001875 Neutropenia 0.16116785915404563 1.0630425403915593 1.0 1284 +Biological Process GO:0009615 response to virus 0.1611247508066096 1.062530478508909 1.0 1285 +Phenotype HP:0001287 Meningitis 0.16104544544832955 1.0615884509555351 1.0 1286 +Biological Process GO:2001028 positive regulation of endothelial cell chemotaxis 0.16098724487143057 1.0608971162431002 1.0 1287 +Phenotype HP:0100776 Recurrent pharyngitis 0.1609789322022508 1.0607983743222607 1.0 1288 +Phenotype HP:0002840 Lymphadenitis 0.16079365834727588 1.0585976015107967 1.0 1289 +Phenotype HP:0025409 Abnormal spleen physiology 0.16069405991128494 1.0574145229268115 1.0 1290 +Phenotype HP:0001971 Hypersplenism 0.16069405991128494 1.0574145229268115 1.0 1290 +Biological Process GO:0098780 response to mitochondrial depolarisation 0.16057132999966384 1.0559566774435094 1.0 1292 +Biological Process GO:0045621 positive regulation of lymphocyte differentiation 0.16055292440155078 1.0557380468120507 1.0 1293 +Phenotype HP:0002588 Duodenal ulcer 0.16053714013636222 1.055550553645891 1.0 1294 +Biological Process GO:0001558 regulation of cell growth 0.160528337299078 1.0554459892702994 1.0 1295 +Phenotype HP:0000168 Abnormality of the gingiva 0.1605256771574688 1.0554143908165998 1.0 1296 +Biological Process GO:0099174 regulation of presynapse organization 0.1605156384474854 1.055295146144994 1.0 1297 +Phenotype HP:0410242 Abnormal circulating IgG level 0.16046419663312883 1.0546840952958407 1.0 1298 +Biological Process GO:0070873 regulation of glycogen metabolic process 0.16029068838265959 1.0526230800476335 1.0 1299 +Biological Process GO:2000516 positive regulation of CD4-positive, alpha-beta T cell activation 0.16028093613696326 1.052507238137926 1.0 1300 +Biological Process GO:0048812 neuron projection morphogenesis 0.16021130019774632 1.0516800686392929 1.0 1301 +Biological Process GO:0022898 regulation of transmembrane transporter activity 0.16015371030222503 1.0509959878967863 1.0 1302 +Phenotype HP:0002829 Arthralgia 0.16012282670044242 1.0506291374788876 1.0 1303 +Biological Process GO:0008360 regulation of cell shape 0.1600895372539607 1.0502337092694642 1.0 1304 +Phenotype HP:0006716 Hereditary nonpolyposis colorectal carcinoma 0.16006530943486275 1.0499459194700937 1.0 1305 +Phenotype HP:0000138 Ovarian cyst 0.15997784291278505 1.048906949650375 1.0 1306 +Phenotype HP:0032046 Focal cortical dysplasia 0.15997214714208308 1.048839292520323 1.0 1307 +Phenotype HP:0002099 Asthma 0.15994008113847202 1.048458396959376 1.0 1308 +Biological Process GO:0046686 response to cadmium ion 0.15992118563964874 1.0482339470494035 1.0 1309 +Biological Process GO:0060263 regulation of respiratory burst 0.15990548999478305 1.0480475065584693 1.0 1310 +Biological Process GO:0002704 negative regulation of leukocyte mediated immunity 0.15986579095759845 1.0475759421184192 1.0 1311 +Phenotype HP:0003172 Abnormal pubic bone morphology 0.15981677013979456 1.0469936490418643 1.0 1312 +Biological Process GO:0050688 regulation of defense response to virus 0.15978354836433273 1.0465990246616739 1.0 1313 +Phenotype HP:0004844 Coombs-positive hemolytic anemia 0.15972921714058586 1.0459536520047932 1.0 1314 +Phenotype HP:0025615 Abscess 0.15970916233571408 1.0457154312946613 1.0 1315 +Biological Process GO:0006939 smooth muscle contraction 0.15968772706432532 1.0454608127329375 1.0 1316 +Biological Process GO:1902547 regulation of cellular response to vascular endothelial growth factor stimulus 0.15966587934201382 1.0452012948788825 1.0 1317 +Phenotype HP:0030078 Lung adenocarcinoma 0.15963239331485657 1.0448035315887432 1.0 1318 +Biological Process GO:0010544 negative regulation of platelet activation 0.1596296374402688 1.0447707959722399 1.0 1319 +Biological Process GO:0051402 neuron apoptotic process 0.15962840533562828 1.0447561604350555 1.0 1320 +Biological Process GO:0050821 protein stabilization 0.15960601200426727 1.0444901615717832 1.0 1321 +Phenotype HP:0034221 Abnormal temporal lobe morphology 0.15955479140372464 1.043881738407725 1.0 1322 +Biological Process GO:0002697 regulation of immune effector process 0.1594480443374845 1.0426137449225317 1.0 1323 +Phenotype HP:0006392 Increased density of long bones 0.15936795792272695 1.0416624396010663 1.0 1324 +Biological Process GO:0002366 leukocyte activation involved in immune response 0.15931897993635502 1.0410806552970575 1.0 1325 +Phenotype HP:0008202 Reduced circulating prolactin concentration 0.1593054367678941 1.0409197829660213 1.0 1326 +Phenotype HP:0006731 Follicular thyroid carcinoma 0.15920089467698295 1.0396779812484394 1.0 1327 +Biological Process GO:0045667 regulation of osteoblast differentiation 0.15915418163035366 1.039123100998464 1.0 1328 +Biological Process GO:0043267 negative regulation of potassium ion transport 0.15911976353494506 1.0387142661490574 1.0 1329 +Biological Process GO:0000280 nuclear division 0.1590275341335451 1.037618720536072 1.0 1330 +Phenotype HP:0020100 Unusual fungal infection 0.1589799818884231 1.0370538718789168 1.0 1331 +Biological Process GO:1903861 positive regulation of dendrite extension 0.15890726194435467 1.0361900690731802 1.0 1332 +Biological Process GO:1903859 regulation of dendrite extension 0.15890726194435467 1.0361900690731802 1.0 1332 +Phenotype HP:0100545 Arterial stenosis 0.15888908850785066 1.0359741961700428 1.0 1334 +Phenotype HP:0031393 Abnormal proportion of CD8-positive T cells 0.15886630579430716 1.0357035720361374 1.0 1335 +Phenotype HP:0004390 Hamartomatous polyposis 0.15882499539395023 1.0352128670419085 1.0 1336 +Phenotype HP:0200008 Intestinal polyposis 0.15881757603670177 1.0351247363139482 1.0 1337 +Phenotype HP:0012324 Myeloid leukemia 0.1588143034537669 1.0350858629848037 1.0 1338 +Biological Process GO:0150117 positive regulation of cell-substrate junction organization 0.1588047705510618 1.0349726265376504 1.0 1339 +Biological Process GO:0045747 positive regulation of Notch signaling pathway 0.15860005471591176 1.032540912445366 1.0 1340 +Phenotype HP:0010624 Aplastic/hypoplastic toenail 0.15857721519426704 1.0322696135172504 1.0 1341 +Biological Process GO:1902105 regulation of leukocyte differentiation 0.15845532914096028 1.0308217917927522 1.0 1342 +Phenotype HP:0010286 Abnormal salivary gland morphology 0.15845334884471252 1.0307982688723634 1.0 1343 +Phenotype HP:0030846 Abnormality of venous physiology 0.15843034588299476 1.0305250285236998 1.0 1344 +Biological Process GO:0009266 response to temperature stimulus 0.15841566575236687 1.0303506508039781 1.0 1345 +Phenotype HP:0001531 Failure to thrive in infancy 0.158359269388345 1.0296807474081557 1.0 1346 +Biological Process GO:0051281 positive regulation of release of sequestered calcium ion into cytosol 0.15835746490232883 1.0296593128470646 1.0 1347 +Phenotype HP:0006721 Acute lymphoblastic leukemia 0.15835272131314715 1.0296029661914547 1.0 1348 +Phenotype HP:0001899 Increased hematocrit 0.15834279012253116 1.0294849986871024 1.0 1349 +Biological Process GO:0051303 establishment of chromosome localization 0.15827979617991983 1.0287367260492564 1.0 1350 +Phenotype HP:0030080 Burkitt lymphoma 0.15817398141691064 1.027479806914532 1.0 1351 +Biological Process GO:0032965 regulation of collagen biosynthetic process 0.1581493723617109 1.0271874886076302 1.0 1352 +Biological Process GO:0090313 regulation of protein targeting to membrane 0.15807121363513976 1.0262590813024566 1.0 1353 +Biological Process GO:0010507 negative regulation of autophagy 0.1579218541209222 1.0244849164691723 1.0 1354 +Biological Process GO:0002690 positive regulation of leukocyte chemotaxis 0.15791583546934662 1.024413424003325 1.0 1355 +Phenotype HP:0008255 Transient neonatal diabetes mellitus 0.15781428558226096 1.0232071651356849 1.0 1356 +Phenotype HP:0009725 Bladder neoplasm 0.1577270768744763 1.0221712577593234 1.0 1357 +Phenotype HP:0020061 Abnormal hemoglobin concentration 0.15771559928001766 1.022034921319252 1.0 1358 +Biological Process GO:0050728 negative regulation of inflammatory response 0.15767504749659744 1.0215532275453536 1.0 1359 +Biological Process GO:0051489 regulation of filopodium assembly 0.15752908203314342 1.0198193788950631 1.0 1360 +Phenotype HP:0011051 Agenesis of premolar 0.157496381960765 1.019430951557417 1.0 1361 +Phenotype HP:0011076 Abnormality of premolar 0.157496381960765 1.019430951557417 1.0 1361 +Biological Process GO:0042110 T cell activation 0.15748123371804756 1.019251013374998 1.0 1363 +Biological Process GO:0002688 regulation of leukocyte chemotaxis 0.15746914556004388 1.0191074243646714 1.0 1364 +Biological Process GO:0140014 mitotic nuclear division 0.1574537350449713 1.018924370783868 1.0 1365 +Phenotype HP:0031404 Impaired antigen-specific response 0.1572830958083593 1.0168974350753437 1.0 1366 +Biological Process GO:0040007 growth 0.1572555278958463 1.016569970024564 1.0 1367 +Biological Process GO:0048589 developmental growth 0.1572555278958463 1.016569970024564 1.0 1367 +Phenotype HP:0005403 T lymphocytopenia 0.15719384778997025 1.0158373037774102 1.0 1369 +Phenotype HP:0004363 Abnormal circulating calcium concentration 0.15719126346949064 1.0158066059639037 1.0 1370 +Phenotype HP:0012539 Non-Hodgkin lymphoma 0.15716964659285482 1.0155498302068746 1.0 1371 +Biological Process GO:2001026 regulation of endothelial cell chemotaxis 0.15712252532350246 1.0149901008891768 1.0 1372 +Biological Process GO:0046631 alpha-beta T cell activation 0.15701817619357628 1.013750591255869 1.0 1373 +Biological Process GO:0001952 regulation of cell-matrix adhesion 0.15679542296973126 1.0111046203023826 1.0 1374 +Biological Process GO:0034330 cell junction organization 0.15679414372408473 1.0110894248014393 1.0 1375 +Phenotype HP:0002841 Recurrent fungal infections 0.15677419060342856 1.0108524119457942 1.0 1376 +Biological Process GO:0090314 positive regulation of protein targeting to membrane 0.1567243887605152 1.0102608414737522 1.0 1377 +Biological Process GO:0031589 cell-substrate adhesion 0.1567113063608555 1.0101054423782692 1.0 1378 +Biological Process GO:0050792 regulation of viral process 0.1567066433003158 1.0100500522809703 1.0 1379 +Biological Process GO:0051100 negative regulation of binding 0.1566165282690133 1.0089796221826617 1.0 1380 +Phenotype HP:0040216 Hypoinsulinemia 0.1565999648917764 1.008782874345284 1.0 1381 +Biological Process GO:0043534 blood vessel endothelial cell migration 0.15657015397219043 1.0084287657673714 1.0 1382 +Biological Process GO:1902236 negative regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway 0.15655942713680204 1.008301347208077 1.0 1383 +Phenotype HP:0000979 Purpura 0.15653924328191005 1.008061593579143 1.0 1384 +Phenotype HP:0002960 Autoimmunity 0.15643827469729787 1.0068622397045417 1.0 1385 +Phenotype HP:0009125 Lipodystrophy 0.15641151719851454 1.00654440114155 1.0 1386 +Phenotype HP:0200034 Papule 0.1563961123087233 1.00636141438057 1.0 1387 +Biological Process GO:0010976 positive regulation of neuron projection development 0.15622347131557102 1.0043107008358816 1.0 1388 +Biological Process GO:0090630 activation of GTPase activity 0.15622031330521247 1.0042731884554306 1.0 1389 +Biological Process GO:0032369 negative regulation of lipid transport 0.15617789789063463 1.003769357565732 1.0 1390 +Biological Process GO:0051310 metaphase chromosome alignment 0.1561630732891348 1.0035932637508438 1.0 1391 +Biological Process GO:0045927 positive regulation of growth 0.15615682169932643 1.0035190043315612 1.0 1392 +Phenotype HP:0008291 Pituitary corticotropic cell adenoma 0.15609364480201215 1.0027685584689177 1.0 1393 +Biological Process GO:0045940 positive regulation of steroid metabolic process 0.15597348329827665 1.001341221781604 1.0 1394 +Biological Process GO:0032967 positive regulation of collagen biosynthetic process 0.15595631719223024 1.001137314438764 1.0 1395 +Biological Process GO:0048762 mesenchymal cell differentiation 0.1559559825745349 1.001133339687301 1.0 1396 +Biological Process GO:0032373 positive regulation of sterol transport 0.1559367075655017 1.0009043817707794 1.0 1397 +Biological Process GO:0032376 positive regulation of cholesterol transport 0.1559367075655017 1.0009043817707794 1.0 1397 +Phenotype HP:0000682 Abnormal dental enamel morphology 0.15590821455097914 1.0005659279091355 1.0 1399 +Biological Process GO:0034198 cellular response to amino acid starvation 0.15584857894647075 0.99985754724196 1.0 1400 +Biological Process GO:0007189 adenylate cyclase-activating G protein-coupled receptor signaling pathway 0.15584676561176736 0.9998360075718654 1.0 1401 +Biological Process GO:1900180 regulation of protein localization to nucleus 0.15579982661491887 0.9992784433754733 1.0 1402 +Biological Process GO:1905332 positive regulation of morphogenesis of an epithelium 0.15576117487037588 0.9988193191859466 1.0 1403 +Biological Process GO:0046883 regulation of hormone secretion 0.155724357348056 0.9983819827786158 1.0 1404 +Phenotype HP:0100014 Epiretinal membrane 0.15571811357811882 0.9983078162475602 1.0 1405 +Biological Process GO:0033673 negative regulation of kinase activity 0.15570649187149765 0.9981697679732467 1.0 1406 +Biological Process GO:0000423 mitophagy 0.1556754399567889 0.9978009182526848 1.0 1407 +Phenotype HP:0005565 Reduced renal corticomedullary differentiation 0.15566012203535906 0.99761896454413 1.0 1408 +Phenotype HP:0005764 Polyarticular arthritis 0.15558863738760265 0.9967698351878012 1.0 1409 +Biological Process GO:0035567 non-canonical Wnt signaling pathway 0.15558589768785602 0.9967372917039148 1.0 1410 +Biological Process GO:0045730 respiratory burst 0.15554676574827897 0.9962724635246086 1.0 1411 +Biological Process GO:0034612 response to tumor necrosis factor 0.15549903880789806 0.9957055397523424 1.0 1412 +Biological Process GO:0022411 cellular component disassembly 0.155498317190633 0.9956969680320777 1.0 1413 +Phenotype HP:0001681 Angina pectoris 0.15548109129022936 0.9954923504228286 1.0 1414 +Biological Process GO:0002521 leukocyte differentiation 0.1554759642963992 0.9954314495006371 1.0 1415 +Phenotype HP:0100584 Endocarditis 0.1554598116188327 0.9952395801533647 1.0 1416 +Biological Process GO:0032007 negative regulation of TOR signaling 0.15534442043793228 0.9938689076769768 1.0 1417 +Biological Process GO:0007249 canonical NF-kappaB signal transduction 0.15533581931271068 0.993766739335209 1.0 1418 +Biological Process GO:0043524 negative regulation of neuron apoptotic process 0.1552386378307975 0.9926123705053421 1.0 1419 +Biological Process GO:0010959 regulation of metal ion transport 0.15520454471649292 0.992207395939288 1.0 1420 +Biological Process GO:0006954 inflammatory response 0.15516521002246564 0.9917401593441719 1.0 1421 +Biological Process GO:0071108 protein K48-linked deubiquitination 0.1551476719556042 0.9915318336701607 1.0 1422 +Phenotype HP:0006335 Persistence of primary teeth 0.15508572790148023 0.9907960321175545 1.0 1423 +Biological Process GO:0009267 cellular response to starvation 0.15503206004774106 0.990158539291733 1.0 1424 +Phenotype HP:0030588 Abnormal visual field test 0.1549730052570215 0.9894570578127629 1.0 1425 +Phenotype HP:0002850 Decreased circulating total IgM 0.15494550368384252 0.989130380772805 1.0 1426 +Phenotype HP:0100585 Telangiectasia of the skin 0.1548594036988009 0.9881076433435401 1.0 1427 +Phenotype HP:0031690 Opportunistic infection 0.15477845009888946 0.9871460371757439 1.0 1428 +Biological Process GO:0034765 regulation of monoatomic ion transmembrane transport 0.15475803422094847 0.986903527464372 1.0 1429 +Phenotype HP:0010526 Dysgraphia 0.15463358610509015 0.9854252723168446 1.0 1430 +Biological Process GO:0050858 negative regulation of antigen receptor-mediated signaling pathway 0.15462329413227005 0.9853030192662895 1.0 1431 +Biological Process GO:0071624 positive regulation of granulocyte chemotaxis 0.15459336931381418 0.9849475577422951 1.0 1432 +Biological Process GO:0002707 negative regulation of lymphocyte mediated immunity 0.15458443639514585 0.9848414481968607 1.0 1433 +Biological Process GO:1901990 regulation of mitotic cell cycle phase transition 0.15452755327667278 0.9841657628953173 1.0 1434 +Phenotype HP:0430048 Intracranial calcification 0.1544573669405901 0.9833320555154608 1.0 1435 +Phenotype HP:0002514 Cerebral calcification 0.1544573669405901 0.9833320555154608 1.0 1435 +Biological Process GO:0043269 regulation of monoatomic ion transport 0.15427963964622748 0.981220924415278 1.0 1437 +Phenotype HP:3000050 Abnormal odontoid tissue morphology 0.1541832936889591 0.9800764803528417 1.0 1438 +Biological Process GO:0048278 vesicle docking 0.1541511570641234 0.9796947459186972 1.0 1439 +Biological Process GO:0010738 regulation of protein kinase A signaling 0.15402811068095146 0.9782331412326475 1.0 1440 +Phenotype HP:0012740 Papilloma 0.1539456400188548 0.9772535146635866 1.0 1441 +Biological Process GO:0045746 negative regulation of Notch signaling pathway 0.15391187786714788 0.9768524714319705 1.0 1442 +Biological Process GO:0046474 glycerophospholipid biosynthetic process 0.15390089938139084 0.9767220636474052 1.0 1443 +Biological Process GO:1903035 negative regulation of response to wounding 0.15385197673064466 0.976140936646828 1.0 1444 +Phenotype HP:0100552 Neoplasm of the tracheobronchial system 0.153808551578411 0.9756251116029627 1.0 1445 +Biological Process GO:0031175 neuron projection development 0.15380056713781243 0.9755302685405863 1.0 1446 +Phenotype HP:0001010 Hypopigmentation of the skin 0.15371384606699545 0.9745001535529056 1.0 1447 +Phenotype HP:0025104 Capillary malformation 0.1536926799795686 0.9742487324889869 1.0 1448 +Biological Process GO:0061028 establishment of endothelial barrier 0.15368940947543508 0.9742098838528543 1.0 1449 +Phenotype HP:0001888 Lymphopenia 0.1536877959557863 0.9741907176830011 1.0 1450 +Biological Process GO:1902254 negative regulation of intrinsic apoptotic signaling pathway by p53 class mediator 0.15360499048445841 0.9732071140873209 1.0 1451 +Phenotype HP:0001874 Abnormality of neutrophils 0.15359324458501222 0.9730675905903284 1.0 1452 +Biological Process GO:0034614 cellular response to reactive oxygen species 0.15352438008794012 0.9722495846560752 1.0 1453 +Phenotype HP:0009592 Astrocytoma 0.1534929628910513 0.9718763959364111 1.0 1454 +Phenotype HP:0001699 Sudden death 0.153482701603618 0.9717545073817799 1.0 1455 +Biological Process GO:1903038 negative regulation of leukocyte cell-cell adhesion 0.1533949773486809 0.9707124760860117 1.0 1456 +Biological Process GO:0060560 developmental growth involved in morphogenesis 0.15327738808061198 0.9693156936629272 1.0 1457 +Disease MONDO:0006054 reproductive system neoplasm 0.15327677328161926 0.9693083907819683 1.0 1458 +Phenotype HP:0002963 Abnormal delayed hypersensitivity skin test 0.15326507374835008 0.9691694180449401 1.0 1459 +Biological Process GO:0001837 epithelial to mesenchymal transition 0.15322746979861357 0.9687227400708947 1.0 1460 +Biological Process GO:1904018 positive regulation of vasculature development 0.1531721977216488 0.9680661915026487 1.0 1461 +Biological Process GO:0045787 positive regulation of cell cycle 0.15315364704157175 0.9678458375171752 1.0 1462 +Phenotype HP:0000676 Abnormality of the incisor 0.15292135363133608 0.9650865435973819 1.0 1463 +Phenotype HP:0002037 Inflammation of the large intestine 0.15292002697056706 0.9650707848765906 1.0 1464 +Phenotype HP:0002717 Adrenal overactivity 0.15276690631027345 0.9632519433239429 1.0 1465 +Disease MONDO:0015356 hereditary neoplastic syndrome 0.15272744615749778 0.9627832164688954 1.0 1466 +Phenotype HP:0003040 Arthropathy 0.15260438084871364 0.9613213869752345 1.0 1467 +Phenotype HP:0012118 Laryngeal carcinoma 0.15257559988932856 0.9609795127646984 1.0 1468 +Phenotype HP:0004924 Abnormal oral glucose tolerance 0.15242029477057883 0.9591347231538174 1.0 1469 +Biological Process GO:0022408 negative regulation of cell-cell adhesion 0.1523896123791334 0.9587702628100039 1.0 1470 +Phenotype HP:0009733 Glioma 0.15236698589581255 0.9585014944545426 1.0 1471 +Phenotype HP:0000751 Personality changes 0.1523195970455583 0.957938586680965 1.0 1472 +Phenotype HP:0005550 Chronic lymphatic leukemia 0.15218895523303788 0.956386759797057 1.0 1473 +Biological Process GO:0031503 protein-containing complex localization 0.1520990224163612 0.9553184941325507 1.0 1474 +Phenotype HP:0002594 Pancreatic hypoplasia 0.15208968207262663 0.955207544994349 1.0 1475 +Biological Process GO:0070875 positive regulation of glycogen metabolic process 0.1519863097764922 0.9539796386671335 1.0 1476 +Biological Process GO:1901890 positive regulation of cell junction assembly 0.15195635064552082 0.9536237695624193 1.0 1477 +Biological Process GO:1902003 regulation of amyloid-beta formation 0.1519178748378439 0.9531667352364163 1.0 1478 +Biological Process GO:0030097 hemopoiesis 0.15184448891803726 0.9522950216474878 1.0 1479 +Biological Process GO:0002637 regulation of immunoglobulin production 0.15179634148369148 0.9517231030437308 1.0 1480 +Phenotype HP:0007112 Temporal cortical atrophy 0.15178909732562496 0.9516370534167238 1.0 1481 +Biological Process GO:0007200 phospholipase C-activating G protein-coupled receptor signaling pathway 0.15174375739475054 0.9510984837024186 1.0 1482 +Biological Process GO:2000401 regulation of lymphocyte migration 0.15171237188599696 0.9507256713898112 1.0 1483 +Biological Process GO:0003014 renal system process 0.15163397959780356 0.9497944897262794 1.0 1484 +Phenotype HP:0000183 Difficulty in tongue movements 0.15160266288302982 0.9494224945819686 1.0 1485 +Biological Process GO:0042130 negative regulation of T cell proliferation 0.15157894827480467 0.9491408009505412 1.0 1486 +Phenotype HP:0003118 Increased circulating cortisol level 0.15152238203347257 0.9484688796695421 1.0 1487 +Phenotype HP:0046506 Pain in head and neck region 0.15147737997094568 0.947934323319525 1.0 1488 +Phenotype HP:0005293 Venous insufficiency 0.1514561926338418 0.9476826498416246 1.0 1489 +Biological Process GO:0098813 nuclear chromosome segregation 0.1514160847097481 0.947206228444328 1.0 1490 +Biological Process GO:0051851 modulation by host of symbiont process 0.15138986640917784 0.9468947947395259 1.0 1491 +Biological Process GO:0050803 regulation of synapse structure or activity 0.15128229980977026 0.9456170664414348 1.0 1492 +Biological Process GO:0050807 regulation of synapse organization 0.15128229980977026 0.9456170664414348 1.0 1492 +Biological Process GO:0050729 positive regulation of inflammatory response 0.1512801777891971 0.945591860050693 1.0 1494 +Biological Process GO:0052372 modulation by symbiont of entry into host 0.1512797583212412 0.9455868774066345 1.0 1495 +Biological Process GO:0051952 regulation of amine transport 0.1512748245226977 0.9455282713518663 1.0 1496 +Phenotype HP:0002633 Vasculitis 0.1512130786716086 0.9447948241511483 1.0 1497 +Biological Process GO:0048199 vesicle targeting, to, from or within Golgi 0.15116633364951837 0.9442395640811218 1.0 1498 +Phenotype HP:0100013 Neoplasm of the breast 0.1511062277717764 0.9435255972801307 1.0 1499 +Phenotype HP:0012029 Abnormal urine hormone level 0.15110171603882638 0.9434720047254213 1.0 1500 +Biological Process GO:0021700 developmental maturation 0.1510850127833686 0.9432735953466161 1.0 1501 +Biological Process GO:0071674 mononuclear cell migration 0.15099680152348582 0.9422257791696315 1.0 1502 +Phenotype HP:0100705 Abnormal glial cell morphology 0.15095020705831885 0.9416723074878441 1.0 1503 +Phenotype HP:0002516 Increased intracranial pressure 0.15086025256936975 0.9406037843895627 1.0 1504 +Phenotype HP:0012640 Abnormality of intracranial pressure 0.15086025256936975 0.9406037843895627 1.0 1504 +Biological Process GO:1904036 negative regulation of epithelial cell apoptotic process 0.15083809381635105 0.9403405719617428 1.0 1506 +Phenotype HP:0001015 Prominent superficial veins 0.15079322756680824 0.9398076288642964 1.0 1507 +Phenotype HP:0033429 Neuroinflammation 0.1507148009043866 0.9388760388869907 1.0 1508 +Phenotype HP:0100653 Optic neuritis 0.1507148009043866 0.9388760388869907 1.0 1508 +Biological Process GO:1905953 negative regulation of lipid localization 0.15067112804045568 0.9383572714033058 1.0 1510 +Phenotype HP:0001783 Broad metatarsal 0.15063872233051212 0.9379723406455923 1.0 1511 +Phenotype HP:0030358 Non-small cell lung carcinoma 0.1506232682423938 0.9377887694829943 1.0 1512 +Phenotype HP:0006191 Deep palmar crease 0.15061037216703688 0.9376355836380517 1.0 1513 +Biological Process GO:0002710 negative regulation of T cell mediated immunity 0.15058365274124452 0.9373181973245337 1.0 1514 +Biological Process GO:0043903 regulation of biological process involved in symbiotic interaction 0.1505725532841251 0.937186352583387 1.0 1515 +Biological Process GO:0032272 negative regulation of protein polymerization 0.15054154980089307 0.9368180781554221 1.0 1516 +Biological Process GO:0007584 response to nutrient 0.150495651633205 0.9362728774331852 1.0 1517 +Disease MONDO:0021058 neoplastic syndrome 0.15042011448564274 0.9353756105164199 1.0 1518 +Disease MONDO:0009453 immune deficiency disease 0.15039226405140693 0.9350447895354351 1.0 1519 +Disease MONDO:0003778 inborn error of immunity 0.15039226405140693 0.9350447895354351 1.0 1519 +Phenotype HP:0005353 Recurrent herpes 0.15035828507375548 0.9346411707399672 1.0 1521 +Phenotype HP:0025667 Fetal neck anomaly 0.15035334091182584 0.9345824415838664 1.0 1522 +Phenotype HP:0025323 Abnormal arterial physiology 0.1503297501595331 0.9343022191733439 1.0 1523 +Biological Process GO:2000116 regulation of cysteine-type endopeptidase activity 0.1503035422249872 0.9339909086012126 1.0 1524 +Phenotype HP:0011324 Multiple suture craniosynostosis 0.1502064099516781 0.9328371242950388 1.0 1525 +Phenotype HP:0011472 Abnormal small intestinal villus morphology 0.15017587954149414 0.9324744692584455 1.0 1526 +Phenotype HP:0011473 Villous atrophy 0.15017587954149414 0.9324744692584455 1.0 1526 +Phenotype HP:0025383 Dorsocervical fat pad 0.1501683132457894 0.9323845931241534 1.0 1528 +Phenotype HP:0100957 Abnormal renal medulla morphology 0.15014954084793686 0.9321616054672851 1.0 1529 +Biological Process GO:0050868 negative regulation of T cell activation 0.15005204012981577 0.9310034445947315 1.0 1530 +Phenotype HP:0030355 Abnormal circulating interferon-gamma concentration 0.15004049952573317 0.9308663596957516 1.0 1531 +Phenotype HP:0011116 Abnormal circulating interferon concentration 0.15004049952573317 0.9308663596957516 1.0 1531 +Biological Process GO:0007190 activation of adenylate cyclase activity 0.1498917106327493 0.9290989729785536 1.0 1533 +Biological Process GO:0097300 programmed necrotic cell death 0.1498222592310201 0.9282739955058045 1.0 1534 +Phenotype HP:0001800 Hypoplastic toenails 0.14981152835957434 0.9281465290042609 1.0 1535 +Biological Process GO:1904427 positive regulation of calcium ion transmembrane transport 0.14977820134859254 0.9277506545854658 1.0 1536 +Biological Process GO:0006874 intracellular calcium ion homeostasis 0.14974520133357483 0.9273586643835092 1.0 1537 +Phenotype HP:0002035 Rectal prolapse 0.14964989363232273 0.9262265532301727 1.0 1538 +Biological Process GO:0051788 response to misfolded protein 0.14960046548018946 0.925639421638667 1.0 1539 +Biological Process GO:0010714 positive regulation of collagen metabolic process 0.14952058193127904 0.9246905260562379 1.0 1540 +Biological Process GO:0001525 angiogenesis 0.1494123838123138 0.9234052962621988 1.0 1541 +Biological Process GO:0043507 positive regulation of JUN kinase activity 0.14939341252923666 0.923179946150061 1.0 1542 +Biological Process GO:0050000 chromosome localization 0.14935715533581007 0.9227492656013995 1.0 1543 +Biological Process GO:0033209 tumor necrosis factor-mediated signaling pathway 0.14935678806483565 0.9227449029784324 1.0 1544 +Biological Process GO:0022008 neurogenesis 0.14933911373339281 0.9225349586875583 1.0 1545 +Biological Process GO:0043243 positive regulation of protein-containing complex disassembly 0.14927830566992406 0.9218126509835494 1.0 1546 +Biological Process GO:1902622 regulation of neutrophil migration 0.1492700598796548 0.9217147034828831 1.0 1547 +Biological Process GO:0140895 cell surface toll-like receptor signaling pathway 0.14923141470889578 0.9212556573799542 1.0 1548 +Biological Process GO:0070849 response to epidermal growth factor 0.14914908366477997 0.920277689261063 1.0 1549 +Disease MONDO:0000270 lower respiratory tract disorder 0.14909071092924986 0.9195843095648136 1.0 1550 +Phenotype HP:0012510 Extra-axial cerebrospinal fluid accumulation 0.14905321578069974 0.9191389239840901 1.0 1551 +Biological Process GO:0030193 regulation of blood coagulation 0.14894172905237713 0.917814630491278 1.0 1552 +Biological Process GO:1900046 regulation of hemostasis 0.14894172905237713 0.917814630491278 1.0 1552 +Phenotype HP:0001402 Hepatocellular carcinoma 0.148922385275005 0.9175848557110353 1.0 1554 +Phenotype HP:0100243 Leiomyosarcoma 0.14890840181869014 0.9174187534270826 1.0 1555 +Phenotype HP:0002891 Uterine leiomyosarcoma 0.14890840181869014 0.9174187534270826 1.0 1555 +Biological Process GO:2000117 negative regulation of cysteine-type endopeptidase activity 0.14890309635288346 0.9173557325280945 1.0 1557 +Phenotype HP:0031381 Decreased lymphocyte proliferation in response to mitogen 0.14888751521939525 0.9171706522589045 1.0 1558 +Biological Process GO:0015850 organic hydroxy compound transport 0.14888238154382594 0.9171096719677708 1.0 1559 +Biological Process GO:0045577 regulation of B cell differentiation 0.14888198247161077 0.9171049315942246 1.0 1560 +Phenotype HP:0007807 Optic nerve compression 0.1488439192320028 0.9166527979520719 1.0 1561 +Biological Process GO:0045619 regulation of lymphocyte differentiation 0.1488366169934927 0.9165660584173544 1.0 1562 +Biological Process GO:0032673 regulation of interleukin-4 production 0.1488177241113855 0.9163416395900063 1.0 1563 +Phenotype HP:0004332 Abnormal lymphocyte morphology 0.14870577373480276 0.91501183865803 1.0 1564 +Biological Process GO:0010799 regulation of peptidyl-threonine phosphorylation 0.14860647409683303 0.913832309342026 1.0 1565 +Biological Process GO:0006826 iron ion transport 0.14859839847208034 0.9137363831499914 1.0 1566 +Biological Process GO:1990928 response to amino acid starvation 0.14854105223897607 0.9130551967479874 1.0 1567 +Phenotype HP:0003678 Rapidly progressive 0.14848666664380317 0.9124091782409076 1.0 1568 +Phenotype HP:0011065 Conical incisor 0.1484560656759253 0.9120456850857658 1.0 1569 +Disease MONDO:0005557 calcium metabolic disease 0.14840447553901837 0.9114328723893396 1.0 1570 +Phenotype HP:0000632 Lacrimation abnormality 0.1483647216887981 0.9109606568534367 1.0 1571 +Biological Process GO:0010984 regulation of lipoprotein particle clearance 0.14835703977744297 0.9108694073803109 1.0 1572 +Phenotype HP:0012189 Hodgkin lymphoma 0.14826729522780813 0.9098033780431429 1.0 1573 +Biological Process GO:0055074 calcium ion homeostasis 0.14816996344081423 0.9086472238165448 1.0 1574 +Phenotype HP:0030344 Decreased circulating luteinizing hormone level 0.1481334802623373 0.9082138589077254 1.0 1575 +Phenotype HP:0011104 Abnormality of blood volume homeostasis 0.14810058810847382 0.9078231499329321 1.0 1576 +Phenotype HP:0011106 Hypovolemia 0.14810058810847382 0.9078231499329321 1.0 1576 +Biological Process GO:0010035 response to inorganic substance 0.14802046746701203 0.9068714380500545 1.0 1578 +Phenotype HP:0000668 Hypodontia 0.14801115954782762 0.9067608740664038 1.0 1579 +Biological Process GO:0051235 maintenance of location 0.1479898247284267 0.9065074487221673 1.0 1580 +Biological Process GO:2000406 positive regulation of T cell migration 0.14797457195005181 0.9063262688144502 1.0 1581 +Biological Process GO:0046579 positive regulation of Ras protein signal transduction 0.14795855681754433 0.9061360332941755 1.0 1582 +Phenotype HP:0002729 Follicular hyperplasia 0.14794198300025574 0.9059391614447942 1.0 1583 +Disease MONDO:0007179 autoimmune disease 0.14791801751875144 0.9056544878187425 1.0 1584 +Phenotype HP:0030341 Decreased circulating follicle stimulating hormone concentration 0.1477598644170307 0.9037758684832575 1.0 1585 +Biological Process GO:0022604 regulation of cell morphogenesis 0.14775459297523263 0.9037132517379646 1.0 1586 +Biological Process GO:0045047 protein targeting to ER 0.14772610698305555 0.9033748812911501 1.0 1587 +Biological Process GO:2001258 negative regulation of cation channel activity 0.14770332478335213 0.9031042632608866 1.0 1588 +Biological Process GO:0043523 regulation of neuron apoptotic process 0.1476194676438286 0.9021081674397275 1.0 1589 +Disease MONDO:0021095 parkinsonian disorder 0.14759202577569308 0.9017821996052664 1.0 1590 +Biological Process GO:0050818 regulation of coagulation 0.1475050905937323 0.900749541301455 1.0 1591 +Biological Process GO:2000403 positive regulation of lymphocyte migration 0.14749325345792785 0.9006089340546984 1.0 1592 +Biological Process GO:0010759 positive regulation of macrophage chemotaxis 0.1474473989403846 0.9000642518300768 1.0 1593 +Phenotype HP:0011999 Paranoia 0.14734922656473526 0.8988981126832706 1.0 1594 +Phenotype HP:0004823 Anisopoikilocytosis 0.14733030440909156 0.8986733461306419 1.0 1595 +Phenotype HP:0000698 Conical tooth 0.14727390456430123 0.8980034013885617 1.0 1596 +Biological Process GO:0006457 protein folding 0.1472559456532172 0.8977900767225284 1.0 1597 +Phenotype HP:0100684 Salivary gland neoplasm 0.1472163512042427 0.8973197546320221 1.0 1598 +Biological Process GO:0000819 sister chromatid segregation 0.14716966798622033 0.8967652287007233 1.0 1599 +Biological Process GO:0045766 positive regulation of angiogenesis 0.1470888445781262 0.8958051690145495 1.0 1600 +Biological Process GO:0140352 export from cell 0.1470856776259304 0.8957675504186138 1.0 1601 +Biological Process GO:0051348 negative regulation of transferase activity 0.14707318243912226 0.8956191265225103 1.0 1602 +Phenotype HP:0006342 Peg-shaped maxillary lateral incisors 0.14695561218772601 0.8942225699886976 1.0 1603 +Phenotype HP:0007392 Excessive wrinkled skin 0.14695294764285205 0.8941909192308811 1.0 1604 +Phenotype HP:0001528 Hemihypertrophy 0.14694435710376286 0.8940888766363344 1.0 1605 +Phenotype HP:0100710 Impulsivity 0.14693867605087196 0.894021394331589 1.0 1606 +Phenotype HP:0002141 Gait imbalance 0.14691741021728089 0.8937687884342987 1.0 1607 +Phenotype HP:0100242 Sarcoma 0.14687404240331503 0.8932536444822198 1.0 1608 +Biological Process GO:0007409 axonogenesis 0.14686871983686367 0.8931904204534709 1.0 1609 +Biological Process GO:1902548 negative regulation of cellular response to vascular endothelial growth factor stimulus 0.14681722681911635 0.8925787613855798 1.0 1610 +Biological Process GO:0090022 regulation of neutrophil chemotaxis 0.14680519543082515 0.8924358467134637 1.0 1611 +Phenotype HP:0009124 Abnormal adipose tissue morphology 0.146762109878957 0.891924055607637 1.0 1612 +Phenotype HP:0002024 Malabsorption 0.14672233651399846 0.8914516082661974 1.0 1613 +Phenotype HP:0001369 Arthritis 0.14669434103804446 0.891119064409257 1.0 1614 +Biological Process GO:0000070 mitotic sister chromatid segregation 0.14668191451225587 0.8909714561020828 1.0 1615 +Phenotype HP:0002076 Migraine 0.14666584031262042 0.8907805189537813 1.0 1616 +Biological Process GO:0002820 negative regulation of adaptive immune response 0.14664491061245477 0.890531905812532 1.0 1617 +Biological Process GO:0060348 bone development 0.1466010776072333 0.8900112360928393 1.0 1618 +Biological Process GO:0044772 mitotic cell cycle phase transition 0.14658788980679727 0.8898545849957563 1.0 1619 +Biological Process GO:0032528 microvillus organization 0.14651392918842943 0.888976044858266 1.0 1620 +Biological Process GO:0030033 microvillus assembly 0.14651392918842943 0.888976044858266 1.0 1620 +Biological Process GO:0060349 bone morphogenesis 0.1465075390614462 0.888900139827152 1.0 1622 +Biological Process GO:0060544 regulation of necroptotic process 0.14641474964077084 0.887797942033289 1.0 1623 +Biological Process GO:0050919 negative chemotaxis 0.14632656876965655 0.8867504868288522 1.0 1624 +Biological Process GO:1903169 regulation of calcium ion transmembrane transport 0.14632606915945356 0.886744552216269 1.0 1625 +Phenotype HP:0003109 Hyperphosphaturia 0.1462938995377716 0.8863624258295626 1.0 1626 +Phenotype HP:0100520 Oliguria 0.1462813594605551 0.8862134687033912 1.0 1627 +Biological Process GO:0042177 negative regulation of protein catabolic process 0.14626998567950356 0.8860783654093772 1.0 1628 +Biological Process GO:0071071 regulation of phospholipid biosynthetic process 0.14621618131848813 0.8854392510838456 1.0 1629 +Phenotype HP:0004387 Enterocolitis 0.146154072943527 0.8847014976485474 1.0 1630 +Biological Process GO:1904062 regulation of monoatomic cation transmembrane transport 0.1461269578143971 0.8843794109786475 1.0 1631 +Phenotype HP:0000870 Increased circulating prolactin concentration 0.14612198117584363 0.8843202960494392 1.0 1632 +Phenotype HP:0002608 Celiac disease 0.14611785642249175 0.8842713002262993 1.0 1633 +Phenotype HP:0010651 Abnormal meningeal morphology 0.1461127170763752 0.884210252577652 1.0 1634 +Biological Process GO:0050433 regulation of catecholamine secretion 0.1460576793039322 0.8835564871922852 1.0 1635 +Biological Process GO:1902993 positive regulation of amyloid precursor protein catabolic process 0.14603459894214565 0.8832823274480219 1.0 1636 +Phenotype HP:0100806 Sepsis 0.14600979261080782 0.882987665799362 1.0 1637 +Biological Process GO:0071825 protein-lipid complex organization 0.14600960353259596 0.8829854198365522 1.0 1638 +Biological Process GO:1900225 regulation of NLRP3 inflammasome complex assembly 0.14600659821168982 0.8829497211755574 1.0 1639 +Phenotype HP:0100742 Vascular neoplasm 0.14600545637917328 0.8829361579344946 1.0 1640 +Biological Process GO:0043666 regulation of phosphoprotein phosphatase activity 0.1459602981584619 0.8823997466617376 1.0 1641 +Phenotype HP:0002226 White eyebrow 0.14594247366615976 0.8821880186872643 1.0 1642 +Phenotype HP:0007301 Oromotor apraxia 0.14594036860415338 0.8821630137386129 1.0 1643 +Phenotype HP:0012174 Glioblastoma multiforme 0.1459316025271853 0.882058886019906 1.0 1644 +Phenotype HP:0100614 Myositis 0.14591506219785777 0.8818624119567869 1.0 1645 +Biological Process GO:0048666 neuron development 0.14582465603660422 0.880788523675558 1.0 1646 +Disease MONDO:0005275 lung disorder 0.145739788270544 0.8797804231416738 1.0 1647 +Phenotype HP:0009834 Abnormal proximal phalanx morphology of the hand 0.1457276466827836 0.8796361994667535 1.0 1648 +Phenotype HP:0012288 Neoplasm of head and neck 0.1456931453806538 0.8792263762475108 1.0 1649 +Biological Process GO:0042149 cellular response to glucose starvation 0.14566105123281514 0.8788451463757622 1.0 1650 +Biological Process GO:0007498 mesoderm development 0.14565582130630228 0.8787830227691852 1.0 1651 +Biological Process GO:0045165 cell fate commitment 0.14562457117114636 0.8784118184899034 1.0 1652 +Phenotype HP:0008069 Neoplasm of the skin 0.14558718872673038 0.87796777166361 1.0 1653 +Biological Process GO:0051651 maintenance of location in cell 0.14550731047074072 0.8770189389530637 1.0 1654 +Biological Process GO:0140056 organelle localization by membrane tethering 0.14547639060110518 0.8766516577279975 1.0 1655 +Phenotype HP:0012732 Anorectal anomaly 0.14541128824286242 0.8758783403055137 1.0 1656 +Phenotype HP:0000691 Microdontia 0.14539414288381491 0.8756746794056006 1.0 1657 +Biological Process GO:0050860 negative regulation of T cell receptor signaling pathway 0.14537198223984538 0.8754114445161485 1.0 1658 +Phenotype HP:0031123 Recurrent gastroenteritis 0.14523302806273053 0.8737608793294138 1.0 1659 +Biological Process GO:0006858 extracellular transport 0.14521469655960695 0.8735431288342179 1.0 1660 +Biological Process GO:0044794 positive regulation by host of viral process 0.14512351342363827 0.8724600112700529 1.0 1661 +Phenotype HP:0100879 Enlarged ovaries 0.1450283950611122 0.87133014917404 1.0 1662 +Phenotype HP:0002888 Ependymoma 0.1450051264154404 0.8710537529023639 1.0 1663 +Biological Process GO:1902229 regulation of intrinsic apoptotic signaling pathway in response to DNA damage 0.14499333260117686 0.8709136602499055 1.0 1664 +Biological Process GO:0009895 negative regulation of catabolic process 0.14480798310908805 0.8687119889840759 1.0 1665 +Biological Process GO:0034391 regulation of smooth muscle cell apoptotic process 0.14480493661539884 0.8686758012527718 1.0 1666 +Phenotype HP:0002999 Patellar dislocation 0.14475231993031834 0.8680507947186863 1.0 1667 +Phenotype HP:0002893 Pituitary adenoma 0.14470730620216077 0.8675160997986435 1.0 1668 +Phenotype HP:0034318 Unusual virus reactivation 0.14466296495579034 0.8669893929438006 1.0 1669 +Phenotype HP:0034317 Unusual viral infection 0.14466296495579034 0.8669893929438006 1.0 1669 +Phenotype HP:0001635 Congestive heart failure 0.1445034454552041 0.8650945428591189 1.0 1671 +Biological Process GO:0050892 intestinal absorption 0.1444999081080789 0.8650525245323618 1.0 1672 +Biological Process GO:0018105 peptidyl-serine phosphorylation 0.14446592338755126 0.8646488375202223 1.0 1673 +Phenotype HP:0001695 Cardiac arrest 0.14444157100891952 0.8643595681422279 1.0 1674 +Biological Process GO:0002687 positive regulation of leukocyte migration 0.14442530479025273 0.8641663500986347 1.0 1675 +Biological Process GO:0120034 positive regulation of plasma membrane bounded cell projection assembly 0.14438552568199814 0.8636938345355358 1.0 1676 +Biological Process GO:0035303 regulation of dephosphorylation 0.144353446910515 0.8633127873116043 1.0 1677 +Phenotype HP:0007495 Prematurely aged appearance 0.1443411361186513 0.863166553748186 1.0 1678 +Phenotype HP:0003247 Overgrowth of external genitalia 0.144293322742707 0.8625986032523282 1.0 1679 +Biological Process GO:0019724 B cell mediated immunity 0.14428417735748877 0.8624899699260481 1.0 1680 +Phenotype HP:0009891 Underdeveloped supraorbital ridges 0.1442170194741914 0.8616922359788793 1.0 1681 +Phenotype HP:0001081 Cholelithiasis 0.14418395893703817 0.8612995268656097 1.0 1682 +Disease MONDO:0021066 urinary system neoplasm 0.14418388804282045 0.8612986847496681 1.0 1683 +Disease MONDO:0006295 malignant urinary system neoplasm 0.14418388804282045 0.8612986847496681 1.0 1683 +Phenotype HP:0001878 Hemolytic anemia 0.14416860842645074 0.8611171860472169 1.0 1685 +Phenotype HP:0012135 Abnormal granulocytopoietic cell morphology 0.1441568551358079 0.8609775747540017 1.0 1686 +Phenotype HP:0011134 Low-grade fever 0.1440832896951567 0.8601037287293135 1.0 1687 +Biological Process GO:0048285 organelle fission 0.14407004535673473 0.8599464060465806 1.0 1688 +Phenotype HP:0200153 Agenesis of lateral incisor 0.14388660768209882 0.8577674442767639 1.0 1689 +Phenotype HP:0000876 Oligomenorrhea 0.143873831864483 0.8576156869116626 1.0 1690 +Phenotype HP:0000710 Hyperorality 0.14384889792241173 0.8573195094407481 1.0 1691 +Biological Process GO:0006888 endoplasmic reticulum to Golgi vesicle-mediated transport 0.1437782950236377 0.8564808539269765 1.0 1692 +Biological Process GO:0010922 positive regulation of phosphatase activity 0.14375066614079968 0.8561526646410716 1.0 1693 +Phenotype HP:0030016 Dyspareunia 0.1436968645817105 0.8555135835981804 1.0 1694 +Biological Process GO:0034142 toll-like receptor 4 signaling pathway 0.14363413796639457 0.8547684864037536 1.0 1695 +Biological Process GO:0009887 animal organ morphogenesis 0.14357624833555171 0.8540808452595571 1.0 1696 +Disease MONDO:0020297 Noonan syndrome and Noonan-related syndrome 0.14353016835111343 0.8535334848296777 1.0 1697 +Phenotype HP:0011107 Recurrent aphthous stomatitis 0.1435278932013354 0.8535064594958865 1.0 1698 +Biological Process GO:0043266 regulation of potassium ion transport 0.1434587329735909 0.8526849407291109 1.0 1699 +Phenotype HP:0005208 Secretory diarrhea 0.14334873199405473 0.8513782956818083 1.0 1700 +Phenotype HP:0001548 Overgrowth 0.14334594104916376 0.8513451434832147 1.0 1701 +Disease MONDO:0002657 breast disorder 0.1431092374012195 0.8485334626184718 1.0 1702 +Biological Process GO:0031111 negative regulation of microtubule polymerization or depolymerization 0.14310648220798083 0.848500735095364 1.0 1703 +Phenotype HP:0002974 Radioulnar synostosis 0.14308635752029042 0.8482616842831796 1.0 1704 +Phenotype HP:0001231 Abnormal fingernail morphology 0.1430605152937735 0.8479547177685905 1.0 1705 +Phenotype HP:0011304 Broad thumb 0.14304499463317955 0.8477703558258017 1.0 1706 +Biological Process GO:0061564 axon development 0.1430084271458678 0.8473359894557053 1.0 1707 +Biological Process GO:0002042 cell migration involved in sprouting angiogenesis 0.14290547754493477 0.8461131041073372 1.0 1708 +Phenotype HP:0034251 Abnormal corneal reflex 0.14289719260070344 0.8460146915168976 1.0 1709 +Phenotype HP:0001001 Abnormality of subcutaneous fat tissue 0.14285289253481315 0.8454884738237934 1.0 1710 +Phenotype HP:0000828 Abnormality of the parathyroid gland 0.14279366742332322 0.8447849691920114 1.0 1711 +Phenotype HP:0000711 Restlessness 0.1426943747954612 0.8436055231454705 1.0 1712 +Biological Process GO:1903672 positive regulation of sprouting angiogenesis 0.14264597476259078 0.8430306040537853 1.0 1713 +Disease MONDO:0000824 congenital diarrhea 0.14263127107935714 0.842855946564776 1.0 1714 +Disease MONDO:0001673 diarrheal disease 0.14263127107935714 0.842855946564776 1.0 1714 +Biological Process GO:0045649 regulation of macrophage differentiation 0.14262986790412047 0.8428392789679854 1.0 1716 +Biological Process GO:0098609 cell-cell adhesion 0.14262575263424893 0.8427903957942297 1.0 1717 +Phenotype HP:0002227 White eyelashes 0.14261300091437312 0.8426389246737854 1.0 1718 +Phenotype HP:0002243 Protein-losing enteropathy 0.14251632598820874 0.8414905729590673 1.0 1719 +Biological Process GO:0034143 regulation of toll-like receptor 4 signaling pathway 0.142466102448771 0.8408939933709488 1.0 1720 +Phenotype HP:0007925 Lacrimal duct aplasia 0.14246034969178478 0.8408256593301423 1.0 1721 +Biological Process GO:0001885 endothelial cell development 0.14245332053237014 0.8407421635615177 1.0 1722 +Biological Process GO:0048699 generation of neurons 0.1424178176952282 0.8403204436230926 1.0 1723 +Phenotype HP:0002923 Rheumatoid factor positive 0.14236413475865017 0.8396827716359874 1.0 1724 +Biological Process GO:1901796 regulation of signal transduction by p53 class mediator 0.14231914119854672 0.8391483162818842 1.0 1725 +Phenotype HP:5200269 Abnormal thought pattern 0.14228491101467988 0.8387417135370138 1.0 1726 +Phenotype HP:0031983 Abnormal pulmonary thoracic imaging finding 0.142247090293934 0.8382924606516632 1.0 1727 +Phenotype HP:0100654 Retrobulbar optic neuritis 0.14220312460047502 0.8377702147966568 1.0 1728 +Phenotype HP:0001058 Poor wound healing 0.14219250524518312 0.8376440729381368 1.0 1729 +Phenotype HP:0000474 Thickened nuchal skin fold 0.14218441971780815 0.8375480291179466 1.0 1730 +Disease MONDO:0002531 skin neoplasm 0.14217232633001964 0.8374043779856966 1.0 1731 +Biological Process GO:0008625 extrinsic apoptotic signaling pathway via death domain receptors 0.14204193523846986 0.8358555292872187 1.0 1732 +Biological Process GO:0032722 positive regulation of chemokine production 0.14200518132951867 0.8354189485103695 1.0 1733 +Phenotype HP:0100568 Neoplasm of the endocrine system 0.14192846660098313 0.8345076937150141 1.0 1734 +Biological Process GO:0010715 regulation of extracellular matrix disassembly 0.14190102741331267 0.8341817577204186 1.0 1735 +Phenotype HP:0001269 Hemiparesis 0.14188172925788956 0.8339525248598384 1.0 1736 +Phenotype HP:0100749 Chest pain 0.14180593214927617 0.8330521699994804 1.0 1737 +Biological Process GO:0090109 regulation of cell-substrate junction assembly 0.1417986562309913 0.8329657431091783 1.0 1738 +Biological Process GO:0051893 regulation of focal adhesion assembly 0.1417986562309913 0.8329657431091783 1.0 1738 +Biological Process GO:0006890 retrograde vesicle-mediated transport, Golgi to endoplasmic reticulum 0.14178706032559796 0.8328280013143771 1.0 1740 +Biological Process GO:0045446 endothelial cell differentiation 0.14175731892373966 0.832474718501789 1.0 1741 +Biological Process GO:0051881 regulation of mitochondrial membrane potential 0.14168608512133396 0.8316285688083371 1.0 1742 +Phenotype HP:0031943 Akathisia 0.14160352784806385 0.8306479134297028 1.0 1743 +Phenotype HP:0012452 Restless legs 0.14160352784806385 0.8306479134297028 1.0 1743 +Biological Process GO:0045123 cellular extravasation 0.14160162813794352 0.8306253477504653 1.0 1745 +Biological Process GO:0071675 regulation of mononuclear cell migration 0.14158681694828767 0.830449413247972 1.0 1746 +Biological Process GO:0043149 stress fiber assembly 0.14155919016860086 0.8301212489443183 1.0 1747 +Biological Process GO:0030038 contractile actin filament bundle assembly 0.14155919016860086 0.8301212489443183 1.0 1747 +Phenotype HP:0002797 Osteolysis 0.14154492505019334 0.8299518009412645 1.0 1749 +Biological Process GO:0006986 response to unfolded protein 0.14150307081273605 0.8294546359858906 1.0 1750 +Biological Process GO:0045879 negative regulation of smoothened signaling pathway 0.1414582322942035 0.8289220222908492 1.0 1751 +Biological Process GO:0061138 morphogenesis of a branching epithelium 0.14142218475991974 0.8284938321752888 1.0 1752 +Biological Process GO:0048754 branching morphogenesis of an epithelial tube 0.14142218475991974 0.8284938321752888 1.0 1752 +Phenotype HP:0040085 Abnormal circulating aldosterone 0.14129574505321063 0.8269919199445934 1.0 1754 +Phenotype HP:0008675 Enlarged polycystic ovaries 0.14129084054084196 0.8269336617652301 1.0 1755 +Phenotype HP:0002617 Vascular dilatation 0.14122407998368602 0.8261406474508959 1.0 1756 +Disease MONDO:0016419 hereditary breast carcinoma 0.14116384327747067 0.8254251266057726 1.0 1757 +Disease MONDO:0007254 breast cancer 0.14116384327747067 0.8254251266057726 1.0 1757 +Disease MONDO:0004989 breast carcinoma 0.14116384327747067 0.8254251266057726 1.0 1757 +Biological Process GO:1904996 positive regulation of leukocyte adhesion to vascular endothelial cell 0.1411628343430229 0.8254131419925012 1.0 1760 +Biological Process GO:0014033 neural crest cell differentiation 0.14107853474949106 0.8244117904877922 1.0 1761 +Phenotype HP:0430050 Anti-thyroid antibody positivity 0.14104353280561877 0.8239960204028389 1.0 1762 +Biological Process GO:0000902 cell morphogenesis 0.14101324266282744 0.8236362193790003 1.0 1763 +Disease MONDO:0044986 lymphoid system disorder 0.14101195357783558 0.8236209070015353 1.0 1764 +Disease MONDO:0005833 lymphatic system disorder 0.14101195357783558 0.8236209070015353 1.0 1764 +Phenotype HP:0030212 Collectionism 0.14095353195394433 0.8229269465855941 1.0 1766 +Biological Process GO:1903140 regulation of establishment of endothelial barrier 0.14094234990254906 0.8227941207495341 1.0 1767 +Biological Process GO:1901550 regulation of endothelial cell development 0.14094234990254906 0.8227941207495341 1.0 1767 +Biological Process GO:0043116 negative regulation of vascular permeability 0.14084647155454622 0.8216552311770073 1.0 1769 +Biological Process GO:1903131 mononuclear cell differentiation 0.1408165192519899 0.8212994431835228 1.0 1770 +Biological Process GO:0050866 negative regulation of cell activation 0.14080535322076537 0.8211668076428296 1.0 1771 +Biological Process GO:1905952 regulation of lipid localization 0.14077925061431062 0.8208567482089082 1.0 1772 +Biological Process GO:0070050 neuron cellular homeostasis 0.1407559039744517 0.8205794254844065 1.0 1773 +Phenotype HP:0011895 Anemia due to reduced life span of red cells 0.14069793028373234 0.8198907858361806 1.0 1774 +Phenotype HP:0011040 Abnormal intrahepatic bile duct morphology 0.1406482682435437 0.819300876008786 1.0 1775 +Phenotype HP:0011971 Dermatographic urticaria 0.1406432870302996 0.8192417067391812 1.0 1776 +Biological Process GO:0034383 low-density lipoprotein particle clearance 0.14062968442465484 0.8190801283844149 1.0 1777 +Biological Process GO:0141085 regulation of inflammasome-mediated signaling pathway 0.14061921612850736 0.8189557808797611 1.0 1778 +Biological Process GO:0048667 cell morphogenesis involved in neuron differentiation 0.14052179415747434 0.8177985554033562 1.0 1779 +Biological Process GO:0006901 vesicle coating 0.14040339681860248 0.8163921743229055 1.0 1780 +Biological Process GO:0045017 glycerolipid biosynthetic process 0.14021201808993722 0.8141188848574485 1.0 1781 +Phenotype HP:0000421 Epistaxis 0.1402101566502224 0.8140967737726703 1.0 1782 +Phenotype HP:0011407 Proportionate tall stature 0.14018763914262655 0.8138292998837852 1.0 1783 +Phenotype HP:0000787 Nephrolithiasis 0.14012704112114582 0.8131094871604985 1.0 1784 +Phenotype HP:0000722 Compulsive behaviors 0.1399779547586475 0.8113385669559676 1.0 1785 +Disease MONDO:0000652 integumentary system benign neoplasm 0.13996407758739737 0.811173727177622 1.0 1786 +Biological Process GO:0060306 regulation of membrane repolarization 0.1399570330974086 0.8110900493049937 1.0 1787 +Biological Process GO:0051346 negative regulation of hydrolase activity 0.13993010849667298 0.8107702258238745 1.0 1788 +Phenotype HP:0002890 Thyroid carcinoma 0.13974863707396523 0.808614620149199 1.0 1789 +Phenotype HP:0012721 Venous malformation 0.13969003186858409 0.8079184790631804 1.0 1790 +Phenotype HP:0003177 Squared iliac bones 0.13960088240762936 0.8068595184783077 1.0 1791 +Phenotype HP:0011117 Abnormal circulating interleukin concentration 0.13958739656850694 0.8066993271329913 1.0 1792 +Biological Process GO:0032368 regulation of lipid transport 0.13953787645323235 0.8061111031586391 1.0 1793 +Biological Process GO:0050767 regulation of neurogenesis 0.13947067664434876 0.8053128711989996 1.0 1794 +Biological Process GO:0000079 regulation of cyclin-dependent protein serine/threonine kinase activity 0.1394578670626445 0.8051607127676617 1.0 1795 +Phenotype HP:0011334 Facial shape deformation 0.1394503478872412 0.8050713963511901 1.0 1796 +Biological Process GO:0010894 negative regulation of steroid biosynthetic process 0.13942199072597594 0.8047345562205017 1.0 1797 +Biological Process GO:0051150 regulation of smooth muscle cell differentiation 0.1393802479559414 0.8042387153292995 1.0 1798 +Phenotype HP:0100625 Enlarged thorax 0.13937270112635503 0.8041490704230138 1.0 1799 +Biological Process GO:0042593 glucose homeostasis 0.13936232940906335 0.8040258701289041 1.0 1800 +Phenotype HP:0008245 Pituitary hypothyroidism 0.1392759699701971 0.803000050781129 1.0 1801 +Phenotype HP:0004313 Decreased circulating antibody level 0.13916094350983588 0.8016337106324006 1.0 1802 +Biological Process GO:0031330 negative regulation of cellular catabolic process 0.1391201824668793 0.8011495311721205 1.0 1803 +Biological Process GO:2000010 positive regulation of protein localization to cell surface 0.13903817514394845 0.8001754083706514 1.0 1804 +Biological Process GO:0043525 positive regulation of neuron apoptotic process 0.13898765947781488 0.799575358759794 1.0 1805 +Phenotype HP:0010668 Abnormal zygomatic bone morphology 0.13892077962082983 0.798780927344162 1.0 1806 +Phenotype HP:0004950 Peripheral arterial stenosis 0.1389122087460335 0.7986791183316341 1.0 1807 +Biological Process GO:0008543 fibroblast growth factor receptor signaling pathway 0.13890491124591797 0.7985924350818681 1.0 1808 +Biological Process GO:0006997 nucleus organization 0.1388729972088043 0.7982133446527662 1.0 1809 +Phenotype HP:0100634 Neuroendocrine neoplasm 0.13884371318338484 0.7978654947796034 1.0 1810 +Phenotype HP:0100751 Esophageal neoplasm 0.13870163266526625 0.7961777933963918 1.0 1811 +Phenotype HP:0010009 Abnormal 1st metacarpal morphology 0.13854379406464923 0.7943029098577268 1.0 1812 +Phenotype HP:0003596 Middle age onset 0.1384806628413351 0.7935530065330346 1.0 1813 +Phenotype HP:0000147 Polycystic ovaries 0.13846954306577497 0.7934209204395833 1.0 1814 +Phenotype HP:0100031 Neoplasm of the thyroid gland 0.13846303614266187 0.7933436280473267 1.0 1815 +Biological Process GO:0010721 negative regulation of cell development 0.13846207860932291 0.7933322540013842 1.0 1816 +Phenotype HP:0031284 Flushing 0.13845141268403804 0.7932055589618751 1.0 1817 +Phenotype HP:0000843 Hyperparathyroidism 0.1384241774163697 0.7928820452280806 1.0 1818 +Biological Process GO:0062197 cellular response to chemical stress 0.13835337378312773 0.7920410052928296 1.0 1819 +Biological Process GO:0090317 negative regulation of intracellular protein transport 0.13833440003322206 0.791815625878505 1.0 1820 +Phenotype HP:0002863 Myelodysplasia 0.13823705165500533 0.7906592745733059 1.0 1821 +Phenotype HP:0002867 Abnormal ilium morphology 0.13821320336479248 0.7903759930023176 1.0 1822 +Phenotype HP:0033222 Decreased CD4:CD8 ratio 0.13813169514097623 0.7894077987424755 1.0 1823 +Phenotype HP:0006344 Abnormal primary molar morphology 0.13811355019306348 0.7891922642406581 1.0 1824 +Phenotype HP:0002896 Neoplasm of the liver 0.13808896396949044 0.7889002171389046 1.0 1825 +Phenotype HP:0004375 Neoplasm of the nervous system 0.13802930497448584 0.7881915586280577 1.0 1826 +Biological Process GO:1900181 negative regulation of protein localization to nucleus 0.1379933938577842 0.7877649889467769 1.0 1827 +Biological Process GO:0048146 positive regulation of fibroblast proliferation 0.13790668826415786 0.7867350578046818 1.0 1828 +Phenotype HP:0010181 Duplication of phalanx of toe 0.13781339694043226 0.7856268981626827 1.0 1829 +Phenotype HP:0010066 Duplication of phalanx of hallux 0.13781339694043226 0.7856268981626827 1.0 1829 +Phenotype HP:0100872 Abnormality of the plantar skin of foot 0.13780716049527042 0.7855528186388652 1.0 1831 +Phenotype HP:0012122 Anterior uveitis 0.13777161206605093 0.7851305571356051 1.0 1832 +Phenotype HP:0010653 Abnormality of the falx cerebri 0.13774840004584066 0.7848548334886564 1.0 1833 +Phenotype HP:0010652 Abnormal dura mater morphology 0.13774840004584066 0.7848548334886564 1.0 1833 +Phenotype HP:0031850 Abnormal hematocrit 0.13767178127327018 0.7839447185048467 1.0 1835 +Biological Process GO:0045762 positive regulation of adenylate cyclase activity 0.13766925584796463 0.7839147202768151 1.0 1836 +Phenotype HP:0007565 Multiple cafe-au-lait spots 0.13765118784937003 0.7837000998163622 1.0 1837 +Disease MONDO:0021148 female reproductive system neoplasm 0.13759420522798071 0.7830232325708649 1.0 1838 +Phenotype HP:0006289 Agenesis of central incisor 0.1375784575165212 0.7828361736076477 1.0 1839 +Phenotype HP:0045081 Abnormality of body mass index 0.13747213983255324 0.7815732805335752 1.0 1840 +Biological Process GO:0051443 positive regulation of ubiquitin-protein transferase activity 0.13743825611911564 0.7811707933326962 1.0 1841 +Biological Process GO:0051654 establishment of mitochondrion localization 0.13742406074840852 0.7810021738266946 1.0 1842 +Biological Process GO:0048871 multicellular organismal-level homeostasis 0.1374067877158548 0.7807969963588812 1.0 1843 +Phenotype HP:0010057 Abnormal hallux phalanx morphology 0.13736575113191873 0.7803095438890545 1.0 1844 +Phenotype HP:0100538 Abnormality of the supraorbital ridges 0.1372238604754078 0.7786240977742083 1.0 1845 +Biological Process GO:0007030 Golgi organization 0.1372169893390961 0.7785424790807304 1.0 1846 +Phenotype HP:0002953 Vertebral compression fracture 0.13719262047792968 0.7782530139151859 1.0 1847 +Biological Process GO:0045737 positive regulation of cyclin-dependent protein serine/threonine kinase activity 0.13714486666679404 0.7776857709590476 1.0 1848 +Phenotype HP:0011078 Abnormality of canine 0.13710869454309815 0.777256100909954 1.0 1849 +Phenotype HP:0007773 Vitreoretinopathy 0.137106864869456 0.7772343671580113 1.0 1850 +Biological Process GO:0042953 lipoprotein transport 0.13705032293952701 0.776562734659663 1.0 1851 +Phenotype HP:0006482 Abnormal dental morphology 0.1370140078678448 0.7761313666049775 1.0 1852 +Biological Process GO:0046596 regulation of viral entry into host cell 0.13700682177663404 0.7760460067242784 1.0 1853 +Biological Process GO:0033623 regulation of integrin activation 0.137004596336471 0.776019571865431 1.0 1854 +Phenotype HP:0001176 Large hands 0.13696695576437945 0.7755724588732701 1.0 1855 +Phenotype HP:0002619 Varicose veins 0.13685042554678717 0.7741882563659827 1.0 1856 +Phenotype HP:0002135 Basal ganglia calcification 0.13679083649612678 0.7734804286880186 1.0 1857 +Biological Process GO:0003158 endothelium development 0.1367624396167706 0.7731431167665606 1.0 1858 +Phenotype HP:0010766 Ectopic calcification 0.13675112934185096 0.7730087678292177 1.0 1859 +Biological Process GO:0006942 regulation of striated muscle contraction 0.1367488119399961 0.7729812406047418 1.0 1860 +Phenotype HP:0000600 Abnormality of the pharynx 0.1367239537332895 0.7726859627552628 1.0 1861 +Phenotype HP:0030057 Autoimmune antibody positivity 0.13668150865126316 0.7721817794612057 1.0 1862 +Biological Process GO:0034112 positive regulation of homotypic cell-cell adhesion 0.13663337464774394 0.771610020395328 1.0 1863 +Biological Process GO:0060485 mesenchyme development 0.13660734367830818 0.7713008119007024 1.0 1864 +Biological Process GO:0048514 blood vessel morphogenesis 0.13660278338760812 0.77124664255346 1.0 1865 +Biological Process GO:0022617 extracellular matrix disassembly 0.13658222650629315 0.7710024579355461 1.0 1866 +Phenotype HP:0003074 Hyperglycemia 0.1365139259382976 0.7701911506246871 1.0 1867 +Biological Process GO:0043124 negative regulation of canonical NF-kappaB signal transduction 0.13641654116395685 0.7690343669886545 1.0 1868 +Biological Process GO:0001764 neuron migration 0.13641651279382216 0.7690340299944193 1.0 1869 +Phenotype HP:0008404 Nail dystrophy 0.1363691321433267 0.7684712196215577 1.0 1870 +Biological Process GO:0045646 regulation of erythrocyte differentiation 0.13634757704890244 0.7682151777436367 1.0 1871 +Biological Process GO:0038061 non-canonical NF-kappaB signal transduction 0.13633135368674165 0.7680224687704315 1.0 1872 +Phenotype HP:0000158 Macroglossia 0.13631980146918787 0.7678852459210018 1.0 1873 +Phenotype HP:0100835 Benign neoplasm of the central nervous system 0.13623361746948537 0.7668615105248004 1.0 1874 +Phenotype HP:0011496 Corneal neovascularization 0.13618536331050535 0.7662883241940164 1.0 1875 +Phenotype HP:0008843 Hip osteoarthritis 0.13617133758413402 0.7661217198058083 1.0 1876 +Phenotype HP:0006094 Finger joint hypermobility 0.13611526698888854 0.7654556860496932 1.0 1877 +Phenotype HP:0007394 Prominent superficial blood vessels 0.13607353075011697 0.7649599227400039 1.0 1878 +Phenotype HP:0000212 Gingival overgrowth 0.13604890621988852 0.7646674206131973 1.0 1879 +Phenotype HP:0009883 Duplication of the distal phalanx of hand 0.13602550740202468 0.7643894780930175 1.0 1880 +Biological Process GO:1901017 negative regulation of potassium ion transmembrane transporter activity 0.1359717884132815 0.7637513778607892 1.0 1881 +Biological Process GO:0007043 cell-cell junction assembly 0.13595548032646254 0.763557662486955 1.0 1882 +Biological Process GO:1905207 regulation of cardiocyte differentiation 0.13593937787989852 0.7633663898079202 1.0 1883 +Biological Process GO:0051099 positive regulation of binding 0.13592241092589652 0.7631648480897646 1.0 1884 +Biological Process GO:0034249 negative regulation of amide metabolic process 0.1358749249438279 0.7626007865373323 1.0 1885 +Phenotype HP:0004798 Recurrent infection of the gastrointestinal tract 0.1358188355447426 0.7619345294200774 1.0 1886 +Biological Process GO:2000047 regulation of cell-cell adhesion mediated by cadherin 0.13577804734551435 0.7614500273844163 1.0 1887 +Phenotype HP:0000802 Impotence 0.13577152280977378 0.7613725257808186 1.0 1888 +Biological Process GO:1900182 positive regulation of protein localization to nucleus 0.13575144435016795 0.7611340240882696 1.0 1889 +Phenotype HP:0001953 Diabetic ketoacidosis 0.1357142189996633 0.7606918432997338 1.0 1890 +Biological Process GO:1901224 positive regulation of non-canonical NF-kappaB signal transduction 0.13567311819730254 0.7602036280122766 1.0 1891 +Biological Process GO:0035872 nucleotide-binding domain, leucine rich repeat containing receptor signaling pathway 0.1356549982738554 0.7599883907632127 1.0 1892 +Phenotype HP:0007605 Excessive wrinkling of palmar skin 0.1356439914096811 0.7598576458860274 1.0 1893 +Phenotype HP:0002671 Basal cell carcinoma 0.13562359620704467 0.7596153817659627 1.0 1894 +Phenotype HP:0004295 Abnormal gastric mucosa morphology 0.13527760716747272 0.755505555954557 1.0 1895 +Biological Process GO:0072593 reactive oxygen species metabolic process 0.1352616176568372 0.7553156247833184 1.0 1896 +Biological Process GO:0032232 negative regulation of actin filament bundle assembly 0.13520399366972335 0.7546311390843218 1.0 1897 +Phenotype HP:0025085 Bloody diarrhea 0.1351813976598164 0.7543627327068676 1.0 1898 +Phenotype HP:0005263 Gastritis 0.13517176141977139 0.7542482687686142 1.0 1899 +Phenotype HP:0001956 Truncal obesity 0.13513009542243415 0.7537533398207886 1.0 1900 +Phenotype HP:0032436 Abnormal circulating C-reactive protein concentration 0.13509989525286004 0.7533946075425116 1.0 1901 +Phenotype HP:0500011 Moon facies 0.13509146164376695 0.7532944290386581 1.0 1902 +Biological Process GO:0048525 negative regulation of viral process 0.13508108470260394 0.7531711666928682 1.0 1903 +Phenotype HP:0001377 Limited elbow extension 0.13504421271110567 0.7527331832741883 1.0 1904 +Phenotype HP:0002529 Neuronal loss in central nervous system 0.1350362302520408 0.7526383637494316 1.0 1905 +Biological Process GO:0090181 regulation of cholesterol metabolic process 0.13497359603899262 0.7518943641540079 1.0 1906 +Biological Process GO:0140894 endolysosomal toll-like receptor signaling pathway 0.13496169015503212 0.7517529402832721 1.0 1907 +Phenotype HP:0100605 Neoplasm of the larynx 0.13490114066712477 0.7510337040653362 1.0 1908 +Phenotype HP:0001028 Hemangioma 0.13489730048231863 0.7509880884855583 1.0 1909 +Biological Process GO:0090201 negative regulation of release of cytochrome c from mitochondria 0.1348909469773043 0.7509126184679732 1.0 1910 +Phenotype HP:0002039 Anorexia 0.13487971151044253 0.7507791581370655 1.0 1911 +Phenotype HP:0003002 Breast carcinoma 0.13478982831287978 0.7497114818724876 1.0 1912 +Biological Process GO:0045655 regulation of monocyte differentiation 0.1347112893735819 0.7487785582159284 1.0 1913 +Biological Process GO:0032735 positive regulation of interleukin-12 production 0.13468157135860703 0.7484255532040976 1.0 1914 +Biological Process GO:0097305 response to alcohol 0.13464355148319707 0.7479739346629449 1.0 1915 +Phenotype HP:0007379 Neoplasm of the genitourinary tract 0.13463009652041225 0.7478141100817588 1.0 1916 +Phenotype HP:0000738 Hallucinations 0.13460764456067198 0.7475474148021299 1.0 1917 +Phenotype HP:0002304 Akinesia 0.1345828031484858 0.7472523364461195 1.0 1918 +Biological Process GO:0032649 regulation of type II interferon production 0.13457235690182623 0.7471282508559894 1.0 1919 +Phenotype HP:0100728 Germ cell neoplasia 0.1345630146299741 0.7470172788146713 1.0 1920 +Biological Process GO:0031281 positive regulation of cyclase activity 0.13454513067953355 0.7468048445675591 1.0 1921 +Biological Process GO:0007202 activation of phospholipase C activity 0.13452690405544987 0.7465883398765245 1.0 1922 +Biological Process GO:0010310 regulation of hydrogen peroxide metabolic process 0.13445041159590587 0.7456797253001762 1.0 1923 +Biological Process GO:0099177 regulation of trans-synaptic signaling 0.13444677393039806 0.7456365153429597 1.0 1924 +Biological Process GO:0050804 modulation of chemical synaptic transmission 0.13444677393039806 0.7456365153429597 1.0 1924 +Biological Process GO:1903573 negative regulation of response to endoplasmic reticulum stress 0.13444343231158373 0.7455968219721177 1.0 1926 +Phenotype HP:0009768 Broad phalanges of the hand 0.1344373482525174 0.7455245525643358 1.0 1927 +Biological Process GO:0032412 regulation of monoatomic ion transmembrane transporter activity 0.134432786157062 0.7454703617793331 1.0 1928 +Phenotype HP:0000799 Renal steatosis 0.1344089786995275 0.7451875652387252 1.0 1929 +Biological Process GO:0010876 lipid localization 0.13439838619654487 0.7450617423449732 1.0 1930 +Biological Process GO:0051702 biological process involved in interaction with symbiont 0.13439132570506618 0.744977874398878 1.0 1931 +Phenotype HP:0002580 Volvulus 0.13431391228820855 0.7440583202443759 1.0 1932 +Phenotype HP:0010885 Avascular necrosis 0.13430846021414466 0.7439935578613214 1.0 1933 +Phenotype HP:0004926 Orthostatic hypotension due to autonomic dysfunction 0.1342561998550249 0.743372783940016 1.0 1934 +Biological Process GO:0071677 positive regulation of mononuclear cell migration 0.13419340305201244 0.7426268530220492 1.0 1935 +Biological Process GO:0000302 response to reactive oxygen species 0.13412606754921508 0.7418270092242141 1.0 1936 +Phenotype HP:0100721 Mediastinal lymphadenopathy 0.13410066428214595 0.7415252568830882 1.0 1937 +Phenotype HP:0001733 Pancreatitis 0.1340638349072678 0.7410877796853151 1.0 1938 +Phenotype HP:0100238 Synostosis involving bones of the upper limbs 0.13400723273243487 0.740415431568745 1.0 1939 +Phenotype HP:0002362 Shuffling gait 0.1339529618735712 0.7397707759552579 1.0 1940 +Phenotype HP:0012888 Abnormal uterine cervix morphology 0.13392948194404597 0.7394918699513794 1.0 1941 +Biological Process GO:0032655 regulation of interleukin-12 production 0.13391003025202475 0.7392608133085353 1.0 1942 +Phenotype HP:0004150 Abnormal 3rd finger morphology 0.13390310544079964 0.7391785570383735 1.0 1943 +Phenotype HP:0030141 Abnormality of the posterior hairline 0.133880453363876 0.738909484669671 1.0 1944 +Phenotype HP:0002162 Low posterior hairline 0.133880453363876 0.738909484669671 1.0 1944 +Phenotype HP:0033763 Death in adulthood 0.1338607401645806 0.7386753217164462 1.0 1946 +Phenotype HP:0010182 Abnormality of the distal phalanges of the toes 0.13381529546033577 0.7381355074531731 1.0 1947 +Biological Process GO:0042594 response to starvation 0.13380822542380844 0.7380515261263554 1.0 1948 +Phenotype HP:0031365 Macular purpura 0.13380127128744168 0.7379689215179219 1.0 1949 +Phenotype HP:0002248 Hematemesis 0.1337483962677718 0.7373408463601461 1.0 1950 +Biological Process GO:0071407 cellular response to organic cyclic compound 0.1337476389123291 0.7373318501244542 1.0 1951 +Biological Process GO:0007589 body fluid secretion 0.13373296585135552 0.737157556381519 1.0 1952 +Biological Process GO:0150116 regulation of cell-substrate junction organization 0.13370851207634726 0.73686708256813 1.0 1953 +Phenotype HP:0010702 Increased circulating antibody level 0.13368449057870557 0.7365817435551989 1.0 1954 +Phenotype HP:0100800 Aplasia/Hypoplasia of the pancreas 0.13367615448663572 0.7364827234058979 1.0 1955 +Biological Process GO:0045939 negative regulation of steroid metabolic process 0.1336663146834981 0.736365841446388 1.0 1956 +Biological Process GO:0033688 regulation of osteoblast proliferation 0.13364163635071347 0.7360727002266944 1.0 1957 +Biological Process GO:0051646 mitochondrion localization 0.13355942496395645 0.7350961534560121 1.0 1958 +Phenotype HP:0001592 Selective tooth agenesis 0.13354472248404758 0.7349215102606789 1.0 1959 +Phenotype HP:0004443 Lambdoidal craniosynostosis 0.13353361290748822 0.7347895453159108 1.0 1960 +Biological Process GO:0009268 response to pH 0.1334481710658324 0.7337746256333522 1.0 1961 +Phenotype HP:0011037 Decreased urine output 0.13320391229546125 0.7308732013559373 1.0 1962 +Phenotype HP:0000871 Panhypopituitarism 0.13316989681535385 0.7304691489665734 1.0 1963 +Phenotype HP:0012671 Abulia 0.13310682430475085 0.7297199430599728 1.0 1964 +Biological Process GO:0007098 centrosome cycle 0.13305106857118632 0.7290576493837891 1.0 1965 +Phenotype HP:0001279 Syncope 0.13303849236126353 0.7289082630557879 1.0 1966 +Phenotype HP:0025129 Abnormal small intestinal mucosa morphology 0.133024279584262 0.7287394367893694 1.0 1967 +Phenotype HP:0100570 Carcinoid tumor 0.13299737953945567 0.7284199049955017 1.0 1968 +Phenotype HP:0001085 Papilledema 0.13292242246083974 0.7275295284193407 1.0 1969 +Biological Process GO:0010758 regulation of macrophage chemotaxis 0.13286900137104896 0.7268949667755175 1.0 1970 +Phenotype HP:0001891 Iron deficiency anemia 0.13283901697078349 0.7265387975098581 1.0 1971 +Phenotype HP:0002724 Recurrent Aspergillus infections 0.1327346909032039 0.7252995618223013 1.0 1972 +Biological Process GO:0030855 epithelial cell differentiation 0.1327223069449741 0.7251524591532599 1.0 1973 +Phenotype HP:0410299 Decreased specific antibody response to polysaccharide vaccine 0.13262571644667742 0.7240051103137493 1.0 1974 +Biological Process GO:0050848 regulation of calcium-mediated signaling 0.13258338336834496 0.7235022574539528 1.0 1975 +Phenotype HP:0100613 Death in early adulthood 0.13256213980761777 0.7232499161245547 1.0 1976 +Phenotype HP:0040086 Abnormal prolactin level 0.13253039256519028 0.7228728069637244 1.0 1977 +Phenotype HP:0100685 Abnormal Sharpey fiber morphology 0.13251544258404335 0.722695223828508 1.0 1978 +Phenotype HP:0001187 Hyperextensibility of the finger joints 0.13244220032256238 0.7218252166829272 1.0 1979 +Phenotype HP:0001047 Atopic dermatitis 0.1324163636588278 0.721518316245768 1.0 1980 +Biological Process GO:0051170 import into nucleus 0.13238782688200046 0.7211793425542186 1.0 1981 +Phenotype HP:0030794 Abnormal circulating C-peptide concentration 0.13235611100556088 0.7208026059738228 1.0 1982 +Phenotype HP:0002028 Chronic diarrhea 0.13234127577153854 0.7206263858606692 1.0 1983 +Phenotype HP:0200035 Skin plaque 0.13233794309847646 0.7205867987518162 1.0 1984 +Biological Process GO:0045834 positive regulation of lipid metabolic process 0.13229286929809414 0.7200513902647191 1.0 1985 +Phenotype HP:0011751 Abnormal posterior pituitary morphogenesis 0.13220797577149557 0.7190429837346518 1.0 1986 +Phenotype HP:0032064 Gastrointestinal eosinophilia 0.13219315968555545 0.7188669910717165 1.0 1987 +Biological Process GO:0050687 negative regulation of defense response to virus 0.13209038388885097 0.7176461702543679 1.0 1988 +Biological Process GO:0023061 signal release 0.13196749931849228 0.7161864876594844 1.0 1989 +Biological Process GO:0031398 positive regulation of protein ubiquitination 0.13193789702415348 0.7158348572335584 1.0 1990 +Phenotype HP:0000685 Hypoplasia of teeth 0.13184771836922182 0.7147636713828897 1.0 1991 +Phenotype HP:0001833 Long foot 0.13181702888281077 0.7143991267616295 1.0 1992 +Phenotype HP:0004936 Venous thrombosis 0.1318130412180385 0.7143517593432032 1.0 1993 +Biological Process GO:0044406 adhesion of symbiont to host 0.13177641306195897 0.7139166723200244 1.0 1994 +Biological Process GO:0008654 phospholipid biosynthetic process 0.13162130672628136 0.7120742439509956 1.0 1995 +Biological Process GO:0016049 cell growth 0.1315985276356253 0.7118036628515063 1.0 1996 +Biological Process GO:0032653 regulation of interleukin-10 production 0.13157854820312997 0.7115663374510598 1.0 1997 +Phenotype HP:0000217 Xerostomia 0.13156280425504152 0.7113793231909913 1.0 1998 +Phenotype HP:0006336 Short dental root 0.1315214317660811 0.7108878806781824 1.0 1999 +Biological Process GO:0050773 regulation of dendrite development 0.13150845877954687 0.7107337812449304 1.0 2000 +Phenotype HP:0000741 Apathy 0.13149262923903404 0.7105457502764847 1.0 2001 +Phenotype HP:0004416 Precocious atherosclerosis 0.13148928707123075 0.7105060503844852 1.0 2002 +Biological Process GO:0033500 carbohydrate homeostasis 0.13138246458926628 0.7092371610746991 1.0 2003 +Biological Process GO:0050850 positive regulation of calcium-mediated signaling 0.1313057854779902 0.7083263293584462 1.0 2004 +Biological Process GO:0050891 multicellular organismal-level water homeostasis 0.13114450559911872 0.7064105686457183 1.0 2005 +Biological Process GO:0043244 regulation of protein-containing complex disassembly 0.13094986693211363 0.7040985560497565 1.0 2006 +Biological Process GO:0032469 endoplasmic reticulum calcium ion homeostasis 0.1309458528891997 0.704050875298955 1.0 2007 +Biological Process GO:0042063 gliogenesis 0.1309300831011443 0.7038635540992123 1.0 2008 +Biological Process GO:0010800 positive regulation of peptidyl-threonine phosphorylation 0.13074823516863088 0.7017034760582461 1.0 2009 +Phenotype HP:0025474 Erythematous plaque 0.13072922269206222 0.7014776366298142 1.0 2010 +Phenotype HP:0012091 Abnormality of pancreas physiology 0.13070616575547045 0.701203755141389 1.0 2011 +Biological Process GO:0010888 negative regulation of lipid storage 0.13069426526860028 0.7010623953799127 1.0 2012 +Phenotype HP:0100764 Lymphangioma 0.13063877931051504 0.7004033062278648 1.0 2013 +Biological Process GO:0090398 cellular senescence 0.130623700200025 0.7002241892316108 1.0 2014 +Biological Process GO:0090330 regulation of platelet aggregation 0.13057463781198353 0.6996414023635888 1.0 2015 +Phenotype HP:0011064 Abnormal number of incisors 0.13052443887056986 0.699045114962744 1.0 2016 +Phenotype HP:0009105 Abnormal ossification of the pubic bone 0.13051449310785235 0.6989269743638941 1.0 2017 +Phenotype HP:0000476 Cystic hygroma 0.13050034502583552 0.6987589165759174 1.0 2018 +Biological Process GO:0046823 negative regulation of nucleocytoplasmic transport 0.1304333577046739 0.6979632086486156 1.0 2019 +Biological Process GO:2001244 positive regulation of intrinsic apoptotic signaling pathway 0.13040855544850571 0.6976685954067996 1.0 2020 +Biological Process GO:0051148 negative regulation of muscle cell differentiation 0.13039067073952282 0.6974561521493533 1.0 2021 +Phenotype HP:0004408 Abnormality of the sense of smell 0.13036343335930156 0.6971326133216295 1.0 2022 +Biological Process GO:0019218 regulation of steroid metabolic process 0.1303555711904283 0.6970392226621768 1.0 2023 +Biological Process GO:0002064 epithelial cell development 0.1302866699060321 0.6962207797502257 1.0 2024 +Biological Process GO:0007052 mitotic spindle organization 0.13021852686638669 0.6954113436375996 1.0 2025 +Biological Process GO:0031115 negative regulation of microtubule polymerization 0.13020238254219496 0.6952195735157687 1.0 2026 +Phenotype HP:0100825 Cheilitis 0.1300723413562026 0.693674881165403 1.0 2027 +Biological Process GO:0002286 T cell activation involved in immune response 0.13006915354029958 0.6936370147402223 1.0 2028 +Phenotype HP:0004963 Calcification of the aorta 0.1299967677368925 0.6927771810195075 1.0 2029 +Biological Process GO:0048646 anatomical structure formation involved in morphogenesis 0.12999642288940083 0.6927730847535563 1.0 2030 +Biological Process GO:0070498 interleukin-1-mediated signaling pathway 0.12981439628008573 0.6906108843027808 1.0 2031 +Phenotype HP:0010280 Stomatitis 0.12981171116979284 0.6905789892589326 1.0 2032 +Phenotype HP:0031908 Micrographia 0.12979935411141008 0.6904322061193355 1.0 2033 +Phenotype HP:0002102 Pleuritis 0.12979697792514733 0.6904039806251191 1.0 2034 +Biological Process GO:0070141 response to UV-A 0.12977919433415086 0.6901927384962148 1.0 2035 +Phenotype HP:0100256 Senile plaques 0.12976821721286846 0.6900623469195418 1.0 2036 +Biological Process GO:0060391 positive regulation of SMAD protein signal transduction 0.12973638077884453 0.689684178297621 1.0 2037 +Phenotype HP:0012285 Abnormal hypothalamus physiology 0.129689023851158 0.6891216497158029 1.0 2038 +Biological Process GO:0007162 negative regulation of cell adhesion 0.12956408393333063 0.6876375527056865 1.0 2039 +Phenotype HP:0011077 Abnormality of molar 0.1295590225923854 0.6875774316403405 1.0 2040 +Phenotype HP:0004406 Spontaneous, recurrent epistaxis 0.12951243870542395 0.6870240856116149 1.0 2041 +Phenotype HP:0006297 Enamel hypoplasia 0.129461010898534 0.6864132011499519 1.0 2042 +Phenotype HP:0004947 Arteriovenous fistula 0.1293686067785098 0.6853155801443109 1.0 2043 +Phenotype HP:0002718 Recurrent bacterial infections 0.12936024592644135 0.685216265883724 1.0 2044 +Biological Process GO:1904994 regulation of leukocyte adhesion to vascular endothelial cell 0.12935863603371234 0.6851971427961848 1.0 2045 +Phenotype HP:0010654 Aplasia of the falx cerebri 0.1293314460259034 0.684874166680977 1.0 2046 +Phenotype HP:0100660 Dyskinesia 0.12927557320519212 0.6842104821868109 1.0 2047 +Phenotype HP:0000635 Blue irides 0.12924364042589476 0.6838311691289506 1.0 2048 +Biological Process GO:0008630 intrinsic apoptotic signaling pathway in response to DNA damage 0.12924347499190325 0.6838292040236709 1.0 2049 +Biological Process GO:0051349 positive regulation of lyase activity 0.12917453883369956 0.6830103468637008 1.0 2050 +Phenotype HP:0030692 Brain neoplasm 0.1291271407452057 0.6824473293538272 1.0 2051 +Phenotype HP:0000713 Agitation 0.12909254833701367 0.6820364239325394 1.0 2052 +Biological Process GO:0070486 leukocyte aggregation 0.12902069332510413 0.6811828952109648 1.0 2053 +Phenotype HP:0002427 Expressive aphasia 0.12901491536575493 0.6811142618042535 1.0 2054 +Biological Process GO:0032755 positive regulation of interleukin-6 production 0.12883171511449676 0.6789381202646014 1.0 2055 +Phenotype HP:0011772 Abnormal thyroid morphology 0.12880781032071809 0.6786541675168223 1.0 2056 +Biological Process GO:0032642 regulation of chemokine production 0.1287805013315051 0.678329778082724 1.0 2057 +Biological Process GO:0051341 regulation of oxidoreductase activity 0.12877317328016147 0.6782427319306361 1.0 2058 +Phenotype HP:0009145 Abnormal cerebral artery morphology 0.12877282497844855 0.6782385946337678 1.0 2059 +Biological Process GO:1904029 regulation of cyclin-dependent protein kinase activity 0.1287381469138995 0.6778266717446798 1.0 2060 +Biological Process GO:0006606 protein import into nucleus 0.12868524331965747 0.6771982571642612 1.0 2061 +Biological Process GO:0120032 regulation of plasma membrane bounded cell projection assembly 0.12864449842956815 0.6767142695755817 1.0 2062 +Phenotype HP:0001262 Excessive daytime somnolence 0.12859081838915531 0.6760766319905329 1.0 2063 +Phenotype HP:0001394 Cirrhosis 0.1285801557796893 0.6759499763379301 1.0 2064 +Phenotype HP:0001019 Erythroderma 0.12856360794158694 0.6757534130819376 1.0 2065 +Biological Process GO:0032675 regulation of interleukin-6 production 0.1284995047079447 0.6749919637465961 1.0 2066 +Biological Process GO:0002065 columnar/cuboidal epithelial cell differentiation 0.12849372878286003 0.6749233545038668 1.0 2067 +Biological Process GO:2000379 positive regulation of reactive oxygen species metabolic process 0.12846055662711575 0.674529319530775 1.0 2068 +Biological Process GO:0031345 negative regulation of cell projection organization 0.12845632280888863 0.6744790281820892 1.0 2069 +Biological Process GO:1905063 regulation of vascular associated smooth muscle cell differentiation 0.12835612549097108 0.6732888357877849 1.0 2070 +Phenotype HP:0000991 Xanthomatosis 0.12834678514005615 0.6731778865642913 1.0 2071 +Biological Process GO:0050770 regulation of axonogenesis 0.12833030841304915 0.6729821680004183 1.0 2072 +Phenotype HP:0002199 Hypocalcemic seizures 0.12832320178421586 0.6728977520124225 1.0 2073 +Phenotype HP:4000074 Involuntary vocalization 0.12819713229175178 0.671400237366292 1.0 2074 +Phenotype HP:4000072 Abnormal language feature 0.12819713229175178 0.671400237366292 1.0 2074 +Biological Process GO:0010977 negative regulation of neuron projection development 0.12817601449346572 0.671149389904235 1.0 2076 +Disease MONDO:0016056 isolated congenital microcephaly 0.1281566985817748 0.6709199461260843 1.0 2077 +Phenotype HP:0001876 Pancytopenia 0.1281283709476181 0.6705834567327285 1.0 2078 +Biological Process GO:1901380 negative regulation of potassium ion transmembrane transport 0.12807421493913362 0.6699401653678126 1.0 2079 +Phenotype HP:0000726 Dementia 0.12806616626842549 0.6698445593490071 1.0 2080 +Biological Process GO:0010801 negative regulation of peptidyl-threonine phosphorylation 0.12802572459557549 0.6693641735219272 1.0 2081 +Phenotype HP:0001704 Tricuspid valve prolapse 0.12801031925987316 0.6691811814641988 1.0 2082 +Biological Process GO:0032715 negative regulation of interleukin-6 production 0.12800228222445198 0.6690857136549814 1.0 2083 +Biological Process GO:0010875 positive regulation of cholesterol efflux 0.1279817510155885 0.668841833986912 1.0 2084 +Phenotype HP:0031434 Abnormal prosody 0.12792897868449893 0.6682149786139547 1.0 2085 +Phenotype HP:0001701 Pericarditis 0.1277776172063385 0.6664170334808783 1.0 2086 +Biological Process GO:0007254 JNK cascade 0.12777694412858975 0.6664090383365571 1.0 2087 +Phenotype HP:0410134 Physical urticaria 0.12770273851225522 0.6655275879942566 1.0 2088 +Biological Process GO:2000479 regulation of cAMP-dependent protein kinase activity 0.12769651304301133 0.665453638847722 1.0 2089 +Biological Process GO:0051444 negative regulation of ubiquitin-protein transferase activity 0.12768134849583135 0.6652735069929798 1.0 2090 +Phenotype HP:0008948 Proximal upper limb amyotrophy 0.12763588333359321 0.6647334497197287 1.0 2091 +Biological Process GO:0140131 positive regulation of lymphocyte chemotaxis 0.12761022987936266 0.6644287255340178 1.0 2092 +Biological Process GO:0006937 regulation of muscle contraction 0.12759542442894745 0.6642528592050115 1.0 2093 +Biological Process GO:1905523 positive regulation of macrophage migration 0.12756027635806566 0.6638353533524857 1.0 2094 +Biological Process GO:0001944 vasculature development 0.12754532375133498 0.6636577390293107 1.0 2095 +Phenotype HP:0000744 Low frustration tolerance 0.1274464872699671 0.6624837113123149 1.0 2096 +Phenotype HP:0100019 Cortical cataract 0.12736684148615807 0.6615376400192099 1.0 2097 +Phenotype HP:0006486 Abnormal dental root morphology 0.12735431154679178 0.661388803315346 1.0 2098 +Phenotype HP:0000520 Proptosis 0.12720531802338653 0.6596189858986419 1.0 2099 +Phenotype HP:0012222 Arachnoid hemangiomatosis 0.12719901924470456 0.6595441659470055 1.0 2100 +Phenotype HP:0008391 Dystrophic fingernails 0.12716690906809358 0.6591627456777165 1.0 2101 +Biological Process GO:0050680 negative regulation of epithelial cell proliferation 0.12716230565923792 0.6591080641520853 1.0 2102 +Phenotype HP:0100529 Abnormal blood phosphate concentration 0.127101051106143 0.6583804528274981 1.0 2103 +Biological Process GO:1902850 microtubule cytoskeleton organization involved in mitosis 0.12706747211840597 0.6579815853064539 1.0 2104 +Phenotype HP:0012591 Abnormal urinary electrolyte concentration 0.12706119368851987 0.6579070070676954 1.0 2105 +Biological Process GO:1903894 regulation of IRE1-mediated unfolded protein response 0.12704078651706363 0.6576646007761772 1.0 2106 +Phenotype HP:0011071 Abnormal permanent molar morphology 0.12701919485099744 0.6574081244825354 1.0 2107 +Phenotype HP:0000679 Taurodontia 0.12701919485099744 0.6574081244825354 1.0 2107 +Phenotype HP:0012145 Abnormality of multiple cell lineages in the bone marrow 0.12698019837273455 0.6569449053784938 1.0 2109 +Phenotype HP:0005562 Multiple renal cysts 0.12696805211288875 0.6568006262062748 1.0 2110 +Phenotype HP:0000557 Buphthalmos 0.12686493770042595 0.6555757831465298 1.0 2111 +Phenotype HP:0002183 Phonophobia 0.12678683577987426 0.6546480506108379 1.0 2112 +Biological Process GO:0055088 lipid homeostasis 0.12677869545708265 0.654551355904082 1.0 2113 +Phenotype HP:0001094 Iridocyclitis 0.12672258228866418 0.6538848164431462 1.0 2114 +Phenotype HP:0012714 Severe hearing impairment 0.1266629273943316 0.6531762066420728 1.0 2115 +Phenotype HP:0002539 Cortical dysplasia 0.12658416590352584 0.6522406394106403 1.0 2116 +Biological Process GO:0016242 negative regulation of macroautophagy 0.12649611022874419 0.6511946713490332 1.0 2117 +Phenotype HP:0100315 Lewy bodies 0.12647779240198598 0.6509770833083458 1.0 2118 +Biological Process GO:0030307 positive regulation of cell growth 0.12646472697730338 0.6508218858498831 1.0 2119 +Biological Process GO:1902253 regulation of intrinsic apoptotic signaling pathway by p53 class mediator 0.1264567636020133 0.6507272930114696 1.0 2120 +Phenotype HP:0003453 Antineutrophil antibody positivity 0.12645513434631395 0.6507079399211669 1.0 2121 +Biological Process GO:0051220 cytoplasmic sequestering of protein 0.12644178584437848 0.6505493799336429 1.0 2122 +Biological Process GO:0014015 positive regulation of gliogenesis 0.12642715431916907 0.6503755795726827 1.0 2123 +Phenotype HP:0001386 Joint swelling 0.12637850578880694 0.6497977087071299 1.0 2124 +Biological Process GO:0002837 regulation of immune response to tumor cell 0.1263426899505109 0.6493722707890146 1.0 2125 +Phenotype HP:0030875 Abnormality of pulmonary circulation 0.12624409405784875 0.6482011009014865 1.0 2126 +Biological Process GO:0060491 regulation of cell projection assembly 0.12623125578371597 0.6480486016475503 1.0 2127 +Biological Process GO:0050849 negative regulation of calcium-mediated signaling 0.12612568659806678 0.646794599599951 1.0 2128 +Phenotype HP:0012094 Abnormal pancreas size 0.12611414716138958 0.6466575285679793 1.0 2129 +Biological Process GO:0051926 negative regulation of calcium ion transport 0.12604576859689187 0.6458452947767956 1.0 2130 +Biological Process GO:0052548 regulation of endopeptidase activity 0.12601273783012068 0.6454529392905793 1.0 2131 +Biological Process GO:0071901 negative regulation of protein serine/threonine kinase activity 0.12596390052842443 0.6448728261074596 1.0 2132 +Biological Process GO:0030522 intracellular receptor signaling pathway 0.12592614651154566 0.6444243655630313 1.0 2133 +Biological Process GO:2000404 regulation of T cell migration 0.12584238713121487 0.643429430973032 1.0 2134 +Phenotype HP:0001003 Multiple lentigines 0.12583135899920483 0.6432984334661672 1.0 2135 +Phenotype HP:0000089 Renal hypoplasia 0.12582361355347726 0.6432064293009156 1.0 2136 +Phenotype HP:0000182 Movement abnormality of the tongue 0.12575928186471752 0.6424422662647593 1.0 2137 +Phenotype HP:0012594 Moderate albuminuria 0.1257421259168532 0.6422384795857385 1.0 2138 +Biological Process GO:0090559 regulation of membrane permeability 0.12557138218049257 0.6402103025784587 1.0 2139 +Biological Process GO:0034620 cellular response to unfolded protein 0.1255705996026808 0.6402010067392198 1.0 2140 +Biological Process GO:1905954 positive regulation of lipid localization 0.12550285230633107 0.639396271457618 1.0 2141 +Biological Process GO:0032481 positive regulation of type I interferon production 0.12548911810703933 0.639233129969616 1.0 2142 +Phenotype HP:0032445 Pulmonary cyst 0.1254508559180494 0.6387786331101019 1.0 2143 +Biological Process GO:0032370 positive regulation of lipid transport 0.12538129083727378 0.6379523053024413 1.0 2144 +Biological Process GO:0035295 tube development 0.12535550054414157 0.6376459556778127 1.0 2145 +Biological Process GO:1900034 regulation of cellular response to heat 0.12530983173873544 0.6371034794321305 1.0 2146 +Biological Process GO:0051480 regulation of cytosolic calcium ion concentration 0.1252725671173256 0.6366608321647144 1.0 2147 +Biological Process GO:0010718 positive regulation of epithelial to mesenchymal transition 0.12525641316181946 0.6364689476374543 1.0 2148 +Phenotype HP:0025234 Parasomnia 0.12519393665622158 0.6357268213677024 1.0 2149 +Phenotype HP:0007033 Cerebellar dysplasia 0.12518231744709785 0.6355888027598762 1.0 2150 +Phenotype HP:0009738 Abnormal antihelix morphology 0.1251276767686138 0.6349397542493678 1.0 2151 +Phenotype HP:0010663 Abnormal thalamus morphology 0.12511226163599143 0.6347566458190659 1.0 2152 +Biological Process GO:0048732 gland development 0.12508945588688325 0.6344857480575379 1.0 2153 +Biological Process GO:0032656 regulation of interleukin-13 production 0.12507897980519123 0.6343613080724056 1.0 2154 +Phenotype HP:0003237 Increased circulating IgG level 0.12505441336420864 0.6340694959578672 1.0 2155 +Phenotype HP:0000272 Malar flattening 0.12504195330312418 0.6339214893021651 1.0 2156 +Phenotype HP:0010797 Hemangioblastoma 0.12503770395522884 0.6338710134845396 1.0 2157 +Phenotype HP:0011070 Abnormal molar morphology 0.12502539663677625 0.633724821179985 1.0 2158 +Phenotype HP:0005561 Abnormal bone marrow cell morphology 0.12498242019260852 0.6332143261084027 1.0 2159 +Phenotype HP:0004437 Cranial hyperostosis 0.12497244610522795 0.6330958490554516 1.0 2160 +Phenotype HP:0001931 Hypochromic anemia 0.1249593361275001 0.632940122374284 1.0 2161 +Biological Process GO:0055082 intracellular chemical homeostasis 0.12489187898318832 0.632138833659476 1.0 2162 +Phenotype HP:0007499 Recurrent staphylococcal infections 0.12487463205624993 0.6319339662868376 1.0 2163 +Biological Process GO:0008589 regulation of smoothened signaling pathway 0.12484568139527041 0.631590076278362 1.0 2164 +Phenotype HP:0010880 Increased nuchal translucency 0.12483667739521087 0.6314831223936481 1.0 2165 +Biological Process GO:0002753 cytoplasmic pattern recognition receptor signaling pathway 0.12483620331609468 0.6314774910517109 1.0 2166 +Phenotype HP:0002034 Abnormal rectum morphology 0.12476656154223498 0.6306502522463581 1.0 2167 +Biological Process GO:0043409 negative regulation of MAPK cascade 0.12470366188271464 0.6299030995488475 1.0 2168 +Disease MONDO:0003381 pituitary gland disorder 0.12469820423627631 0.6298382709744235 1.0 2169 +Biological Process GO:0045620 negative regulation of lymphocyte differentiation 0.12464823388434321 0.6292446988704233 1.0 2170 +Biological Process GO:2000352 negative regulation of endothelial cell apoptotic process 0.12457915400729425 0.6284241345482245 1.0 2171 +Biological Process GO:0042632 cholesterol homeostasis 0.12457448141416949 0.6283686312182518 1.0 2172 +Biological Process GO:0055092 sterol homeostasis 0.12457448141416949 0.6283686312182518 1.0 2172 +Phenotype HP:0033028 Anti-U1 ribonucleoprotein antibody positivity 0.12456896057672007 0.6283030520303149 1.0 2174 +Phenotype HP:0033476 Extractable nuclear antigen positivity 0.12456896057672007 0.6283030520303149 1.0 2174 +Phenotype HP:0002583 Colitis 0.1245050974697286 0.627544455035928 1.0 2176 +Phenotype HP:0000155 Oral ulcer 0.12449807772788968 0.6274610711338405 1.0 2177 +Biological Process GO:0003073 regulation of systemic arterial blood pressure 0.12444556537654794 0.6268373039265646 1.0 2178 +Biological Process GO:1901987 regulation of cell cycle phase transition 0.1244428251523555 0.6268047542130561 1.0 2179 +Phenotype HP:0033796 Abnormal leukocyte physiology 0.12443644327482328 0.6267289471729268 1.0 2180 +Phenotype HP:0031409 Abnormal lymphocyte physiology 0.12443644327482328 0.6267289471729268 1.0 2180 +Phenotype HP:0006009 Broad phalanx 0.12438796762743587 0.6261531298952933 1.0 2182 +Biological Process GO:0002836 positive regulation of response to tumor cell 0.12437100003406609 0.6259515805824167 1.0 2183 +Biological Process GO:0002839 positive regulation of immune response to tumor cell 0.12437100003406609 0.6259515805824167 1.0 2183 +Phenotype HP:0011008 Temporal pattern 0.12434587873626513 0.6256531776091718 1.0 2185 +Phenotype HP:0009914 Cyclopia 0.12427766664179452 0.6248429212298016 1.0 2186 +Biological Process GO:0071478 cellular response to radiation 0.12415381613161425 0.6233717647326931 1.0 2187 +Biological Process GO:0055080 monoatomic cation homeostasis 0.12406612552070495 0.6223301330770231 1.0 2188 +Biological Process GO:0006911 phagocytosis, engulfment 0.12398609773811353 0.6213795242168967 1.0 2189 +Biological Process GO:0002685 regulation of leukocyte migration 0.12396520518998588 0.6211313523855945 1.0 2190 +Phenotype HP:0040220 Abnormal size of the dental root 0.12395670860692942 0.6210304258464261 1.0 2191 +Biological Process GO:2000402 negative regulation of lymphocyte migration 0.12389757110310562 0.6203279618610413 1.0 2192 +Phenotype HP:0001102 Angioid streaks of the fundus 0.12388073692326085 0.6201279972987954 1.0 2193 +Disease MONDO:0015225 arthrogryposis syndrome 0.12373267135430654 0.6183692025756398 1.0 2194 +Disease MONDO:0005144 familial amyotrophic lateral sclerosis 0.12366564076317144 0.6175729806665825 1.0 2195 +Disease MONDO:0004976 amyotrophic lateral sclerosis 0.12366564076317144 0.6175729806665825 1.0 2195 +Biological Process GO:0048662 negative regulation of smooth muscle cell proliferation 0.1236584512773633 0.6174875804632074 1.0 2197 +Biological Process GO:0006458 'de novo' protein folding 0.12362773441396968 0.617122710644855 1.0 2198 +Biological Process GO:0030182 neuron differentiation 0.12362680625250666 0.6171116854923168 1.0 2199 +Biological Process GO:0043117 positive regulation of vascular permeability 0.12362410585266581 0.6170796088317937 1.0 2200 +Phenotype HP:0000967 Petechiae 0.1235959730063102 0.6167454332225211 1.0 2201 +Phenotype HP:0004904 Maturity-onset diabetes of the young 0.12357845609273532 0.6165373588175189 1.0 2202 +Phenotype HP:0100334 Unilateral cleft palate 0.12357548179903466 0.6165020287127364 1.0 2203 +Phenotype HP:0031446 Erosion of oral mucosa 0.12357345687746146 0.6164779757110637 1.0 2204 +Biological Process GO:0051283 negative regulation of sequestering of calcium ion 0.12356545692737186 0.6163829484194221 1.0 2205 +Biological Process GO:0051209 release of sequestered calcium ion into cytosol 0.12356545692737186 0.6163829484194221 1.0 2205 +Biological Process GO:0051924 regulation of calcium ion transport 0.12354736944067946 0.6161680964698809 1.0 2207 +Biological Process GO:0002686 negative regulation of leukocyte migration 0.12353507444665135 0.6160220505608246 1.0 2208 +Phenotype HP:0410151 Eosinophilic infiltration of the esophagus 0.12351622602825052 0.6157981598949708 1.0 2209 +Phenotype HP:0000957 Cafe-au-lait spot 0.12348381371204586 0.6154131506648803 1.0 2210 +Phenotype HP:0002244 Abnormal small intestine morphology 0.12344095799557198 0.6149040896554663 1.0 2211 +Phenotype HP:0012599 Abnormal urine phosphate concentration 0.12343079520376288 0.6147833710796853 1.0 2212 +Phenotype HP:0000627 Posterior embryotoxon 0.12337123316016485 0.6140758642047216 1.0 2213 +Phenotype HP:0008048 Abnormal line of Schwalbe morphology 0.12337123316016485 0.6140758642047216 1.0 2213 +Biological Process GO:2000514 regulation of CD4-positive, alpha-beta T cell activation 0.12333307741751465 0.6136226317665173 1.0 2215 +Phenotype HP:0020129 Abnormal urine protein level 0.12333037991319529 0.6135905895004045 1.0 2216 +Biological Process GO:0032733 positive regulation of interleukin-10 production 0.12329132902270246 0.6131267240614751 1.0 2217 +Biological Process GO:1902017 regulation of cilium assembly 0.12324713595148307 0.6126017773030245 1.0 2218 +Biological Process GO:0046827 positive regulation of protein export from nucleus 0.12315857935983698 0.6115498591076751 1.0 2219 +Biological Process GO:0045669 positive regulation of osteoblast differentiation 0.1230146396513827 0.6098400733589027 1.0 2220 +Phenotype HP:0000188 Short upper lip 0.12299812804654597 0.6096439404992327 1.0 2221 +Phenotype HP:0011459 Esophageal carcinoma 0.12296029855975821 0.6091945834865801 1.0 2222 +Phenotype HP:0000554 Uveitis 0.12287416185996702 0.6081714099416925 1.0 2223 +Biological Process GO:0051151 negative regulation of smooth muscle cell differentiation 0.12287321542321217 0.6081601677063638 1.0 2224 +Biological Process GO:0140888 interferon-mediated signaling pathway 0.12285455736213258 0.6079385381972021 1.0 2225 +Biological Process GO:0007018 microtubule-based movement 0.12284377532035229 0.6078104638695786 1.0 2226 +Phenotype HP:0010675 Abnormal foot bone ossification 0.12284147166273607 0.6077830999058429 1.0 2227 +Biological Process GO:0071326 cellular response to monosaccharide stimulus 0.12280039920478436 0.6072952213070393 1.0 2228 +Biological Process GO:0071333 cellular response to glucose stimulus 0.12280039920478436 0.6072952213070393 1.0 2228 +Biological Process GO:0071331 cellular response to hexose stimulus 0.12280039920478436 0.6072952213070393 1.0 2228 +Phenotype HP:0030670 Hamartoma of the orbital region 0.1227935835127224 0.6072142612072815 1.0 2231 +Phenotype HP:0010568 Hamartoma of the eye 0.1227935835127224 0.6072142612072815 1.0 2231 +Phenotype HP:0012433 Abnormal social behavior 0.12273990208822139 0.6065766071813614 1.0 2233 +Phenotype HP:0100833 Neoplasm of the small intestine 0.12271274034867563 0.6062539668503095 1.0 2234 +Biological Process GO:0071322 cellular response to carbohydrate stimulus 0.12270899695071036 0.6062095009516235 1.0 2235 +Biological Process GO:0048545 response to steroid hormone 0.12270700922658695 0.6061858897993211 1.0 2236 +Phenotype HP:0012335 Abnormality of folate metabolism 0.12267609263145363 0.6058186474703822 1.0 2237 +Biological Process GO:0061045 negative regulation of wound healing 0.12266028740495138 0.6056309053155602 1.0 2238 +Biological Process GO:0050672 negative regulation of lymphocyte proliferation 0.12265662411003564 0.6055873909197916 1.0 2239 +Biological Process GO:0051960 regulation of nervous system development 0.12263457401857947 0.6053254692267734 1.0 2240 +Phenotype HP:0005372 Abnormality of B cell physiology 0.12256385750955157 0.6044854641952414 1.0 2241 +Phenotype HP:0100579 Mucosal telangiectasiae 0.12251259441812934 0.6038765363038835 1.0 2242 +Phenotype HP:0001457 Abnormality of the musculature of the upper arm 0.12248711149772695 0.6035738378017885 1.0 2243 +Phenotype HP:0005523 Lymphoproliferative disorder 0.12247039731253406 0.6033752985942825 1.0 2244 +Biological Process GO:0048247 lymphocyte chemotaxis 0.12245650532413555 0.6032102828106537 1.0 2245 +Biological Process GO:1903706 regulation of hemopoiesis 0.12235822799976193 0.6020428970319415 1.0 2246 +Phenotype HP:0002446 Astrocytosis 0.12232605870942614 0.6016607745811258 1.0 2247 +Phenotype HP:0006479 Abnormal dental pulp morphology 0.12231324789180742 0.6015086014689954 1.0 2248 +Biological Process GO:0002091 negative regulation of receptor internalization 0.12226910297934668 0.6009842267636641 1.0 2249 +Disease MONDO:0015131 combined immunodeficiency 0.12225638606359657 0.6008331690635245 1.0 2250 +Phenotype HP:0031860 Abnormal heart rate variability 0.12225471861254578 0.6008133622702911 1.0 2251 +Biological Process GO:0044770 cell cycle phase transition 0.12222686285336659 0.6004824780370434 1.0 2252 +Phenotype HP:0003712 Skeletal muscle hypertrophy 0.12220853762867934 0.6002648021201628 1.0 2253 +Biological Process GO:0010719 negative regulation of epithelial to mesenchymal transition 0.12218783919706155 0.6000189360990205 1.0 2254 +Phenotype HP:5200010 Abnormal Intonation 0.12215129740645791 0.5995848749669002 1.0 2255 +Phenotype HP:0004385 Protracted diarrhea 0.12213592255227634 0.5994022449834758 1.0 2256 +Phenotype HP:0006913 Frontal cortical atrophy 0.12208663736977221 0.5988168116546458 1.0 2257 +Biological Process GO:0045185 maintenance of protein location 0.12207290423777306 0.5986536828444634 1.0 2258 +Biological Process GO:0065002 intracellular protein transmembrane transport 0.12207279307433849 0.5986523623912108 1.0 2259 +Phenotype HP:0000225 Gingival bleeding 0.12200441819523389 0.5978401723769158 1.0 2260 +Phenotype HP:0006783 Posterior pharyngeal cleft 0.12195686591366384 0.5972753232868128 1.0 2261 +Phenotype HP:0000558 Rieger anomaly 0.12191684900032884 0.5967999829594995 1.0 2262 +Phenotype HP:0000076 Vesicoureteral reflux 0.12190682289119326 0.5966808879668825 1.0 2263 +Phenotype HP:0009466 Radial deviation of finger 0.12190191582691146 0.5966225994746559 1.0 2264 +Biological Process GO:0045668 negative regulation of osteoblast differentiation 0.12189144504099758 0.5964982223953479 1.0 2265 +Biological Process GO:0010498 proteasomal protein catabolic process 0.12187531604046598 0.5963066342953925 1.0 2266 +Phenotype HP:0003179 Protrusio acetabuli 0.12183995604107578 0.5958866110531392 1.0 2267 +Phenotype HP:0011787 Central hypothyroidism 0.12183710309229967 0.5958527223422911 1.0 2268 +Biological Process GO:0045913 positive regulation of carbohydrate metabolic process 0.1218132370639291 0.5955692300688524 1.0 2269 +Biological Process GO:0090100 positive regulation of transmembrane receptor protein serine/threonine kinase signaling pathway 0.12180814565081599 0.5955087517916947 1.0 2270 +Phenotype HP:0001100 Heterochromia iridis 0.1216917094458001 0.5941256660114386 1.0 2271 +Phenotype HP:0200064 Asymmetry of iris pigmentation 0.1216917094458001 0.5941256660114386 1.0 2271 +Phenotype HP:0010701 Abnormal immunoglobulin level 0.12166339177318852 0.5937892949461528 1.0 2273 +Biological Process GO:1901875 positive regulation of post-translational protein modification 0.1216400973588555 0.5935125925818068 1.0 2274 +Phenotype HP:0100338 Non-midline cleft palate 0.12162274903815529 0.5933065208048323 1.0 2275 +Disease MONDO:0016660 autosomal recessive primary microcephaly 0.12161264754314227 0.5931865303421585 1.0 2276 +Biological Process GO:0034975 protein folding in endoplasmic reticulum 0.12158382131471801 0.592844118403994 1.0 2277 +Biological Process GO:0010907 positive regulation of glucose metabolic process 0.12156890742423265 0.5926669639711801 1.0 2278 +Phenotype HP:0005469 Flat occiput 0.12154800044325387 0.592418620699464 1.0 2279 +Phenotype HP:0006554 Acute hepatic failure 0.12149370274345628 0.591773646256331 1.0 2280 +Phenotype HP:0005245 Intestinal hypoplasia 0.12148108762076437 0.5916237977035635 1.0 2281 +Phenotype HP:0011869 Abnormal platelet function 0.12146196501072803 0.5913966500563259 1.0 2282 +Biological Process GO:0048524 positive regulation of viral process 0.12144969313646792 0.5912508787750999 1.0 2283 +Phenotype HP:0012806 Proboscis 0.12144106186179593 0.591148352303521 1.0 2284 +Biological Process GO:0035239 tube morphogenesis 0.12136928559970994 0.5902957590105885 1.0 2285 +Biological Process GO:0051250 negative regulation of lymphocyte activation 0.12132383725645257 0.5897559015213575 1.0 2286 +Biological Process GO:0044872 lipoprotein localization 0.1212979881220917 0.5894488529520437 1.0 2287 +Biological Process GO:0002834 regulation of response to tumor cell 0.12128691548332537 0.5893173267723171 1.0 2288 +Biological Process GO:0043201 response to L-leucine 0.1211925609301826 0.5881965375750363 1.0 2289 +Biological Process GO:0071233 cellular response to L-leucine 0.1211925609301826 0.5881965375750363 1.0 2289 +Biological Process GO:1902004 positive regulation of amyloid-beta formation 0.12116066384211654 0.5878176484749517 1.0 2291 +Phenotype HP:0002672 Gastrointestinal carcinoma 0.12111259198823543 0.5872466276526529 1.0 2292 +Phenotype HP:0006749 Malignant gastrointestinal tract tumors 0.12111259198823543 0.5872466276526529 1.0 2292 +Phenotype HP:0100337 Bilateral cleft palate 0.12110564158693193 0.5871640674111144 1.0 2294 +Biological Process GO:0031122 cytoplasmic microtubule organization 0.12106700188606201 0.5867050862821842 1.0 2295 +Phenotype HP:0200063 Colorectal polyposis 0.12092133057150811 0.5849747316753572 1.0 2296 +Phenotype HP:0002384 Focal impaired awareness seizure 0.12084426657494918 0.5840593281048284 1.0 2297 +Biological Process GO:0032732 positive regulation of interleukin-1 production 0.12079947534387281 0.5835272761131525 1.0 2298 +Biological Process GO:0003180 aortic valve morphogenesis 0.12079217343886273 0.58344054053991 1.0 2299 +Biological Process GO:0003176 aortic valve development 0.12079217343886273 0.58344054053991 1.0 2299 +Phenotype HP:0009726 Renal neoplasm 0.12070457152774616 0.5823999625034476 1.0 2301 +Disease MONDO:0005086 renal cell carcinoma 0.12070023036375577 0.5823483960496624 1.0 2302 +Disease MONDO:0005206 renal carcinoma 0.12070023036375577 0.5823483960496624 1.0 2302 +Biological Process GO:0007040 lysosome organization 0.12069837568029129 0.5823263652189062 1.0 2304 +Biological Process GO:0080171 lytic vacuole organization 0.12069837568029129 0.5823263652189062 1.0 2304 +Biological Process GO:0042982 amyloid precursor protein metabolic process 0.1206845271073077 0.5821618651446568 1.0 2306 +Biological Process GO:1901623 regulation of lymphocyte chemotaxis 0.1206819851208818 0.5821316701955961 1.0 2307 +Phenotype HP:0410294 Decreased specific antibody response to protein vaccine 0.12061408346345714 0.5813251013381944 1.0 2308 +Phenotype HP:0002451 Limb dystonia 0.120555900813475 0.5806339795703823 1.0 2309 +Phenotype HP:0000262 Turricephaly 0.12052335519518831 0.5802473869134349 1.0 2310 +Biological Process GO:0032945 negative regulation of mononuclear cell proliferation 0.12047502948410027 0.5796733506519687 1.0 2311 +Biological Process GO:0070555 response to interleukin-1 0.12045935064354862 0.5794871097708362 1.0 2312 +Biological Process GO:0000165 MAPK cascade 0.12045702481759613 0.5794594824808381 1.0 2313 +Biological Process GO:0032760 positive regulation of tumor necrosis factor production 0.12038329394307157 0.5785836713522734 1.0 2314 +Phenotype HP:0002837 Recurrent bronchitis 0.12037370879581233 0.5784698143189382 1.0 2315 +Biological Process GO:0071634 regulation of transforming growth factor beta production 0.12033969912596842 0.5780658309467055 1.0 2316 +Disease MONDO:0019313 lymphatic malformation 0.1203333670622928 0.5779906156197525 1.0 2317 +Disease MONDO:0019175 primary lymphedema 0.1203333670622928 0.5779906156197525 1.0 2317 +Disease MONDO:0019297 lymphedema 0.1203333670622928 0.5779906156197525 1.0 2317 +Biological Process GO:0060828 regulation of canonical Wnt signaling pathway 0.12027025707773709 0.5772409645793456 1.0 2320 +Biological Process GO:0002695 negative regulation of leukocyte activation 0.12024289171940683 0.5769159055655018 1.0 2321 +Biological Process GO:0048588 developmental cell growth 0.12018418019109534 0.57621850152409 1.0 2322 +Biological Process GO:0051928 positive regulation of calcium ion transport 0.12016786231321619 0.5760246698472887 1.0 2323 +Biological Process GO:0032743 positive regulation of interleukin-2 production 0.12009402660498758 0.575147613453084 1.0 2324 +Biological Process GO:0010038 response to metal ion 0.12000300216919346 0.5740663810066512 1.0 2325 +Biological Process GO:0035150 regulation of tube size 0.11999432982277358 0.573963366664908 1.0 2326 +Biological Process GO:0097746 blood vessel diameter maintenance 0.11999432982277358 0.573963366664908 1.0 2326 +Biological Process GO:0035296 regulation of tube diameter 0.11999432982277358 0.573963366664908 1.0 2326 +Phenotype HP:0045073 Serositis 0.11993090063291223 0.5732099239488866 1.0 2329 +Phenotype HP:0008625 Severe sensorineural hearing impairment 0.1199249413525677 0.5731391367233502 1.0 2330 +Biological Process GO:0044827 modulation by host of viral genome replication 0.11989706840911218 0.5728080483669239 1.0 2331 +Biological Process GO:0010633 negative regulation of epithelial cell migration 0.11982216011053293 0.5719182512237243 1.0 2332 +Biological Process GO:0006869 lipid transport 0.11980284273462694 0.5716887900529158 1.0 2333 +Phenotype HP:0011767 Abnormality of the parathyroid physiology 0.11978372421526062 0.571461690996643 1.0 2334 +Disease MONDO:0015517 common variable immunodeficiency 0.11976838969901193 0.5712795401667721 1.0 2335 +Disease MONDO:0016463 syndromic agammaglobulinemia 0.11976838969901193 0.5712795401667721 1.0 2335 +Biological Process GO:0045580 regulation of T cell differentiation 0.11976233366649236 0.5712076036719211 1.0 2337 +Phenotype HP:0410019 Epigastric pain 0.1197438368296676 0.5709878892627428 1.0 2338 +Biological Process GO:0010717 regulation of epithelial to mesenchymal transition 0.11973774731248732 0.570915555020833 1.0 2339 +Phenotype HP:0001500 Broad finger 0.11973758143203217 0.5709135846122414 1.0 2340 +Biological Process GO:0055117 regulation of cardiac muscle contraction 0.11972169220823692 0.5707248446967871 1.0 2341 +Biological Process GO:0046620 regulation of organ growth 0.11970326409101795 0.5705059465724539 1.0 2342 +Biological Process GO:0090114 COPII-coated vesicle budding 0.11967171305319468 0.5701311680251823 1.0 2343 +Phenotype HP:0001025 Urticaria 0.11966203816705234 0.5700162450298197 1.0 2344 +Biological Process GO:0001568 blood vessel development 0.11966151946942105 0.5700100836874951 1.0 2345 +Biological Process GO:0070585 protein localization to mitochondrion 0.11961039481012192 0.5694028001601127 1.0 2346 +Biological Process GO:0010819 regulation of T cell chemotaxis 0.11959695748456345 0.5692431850824652 1.0 2347 +Phenotype HP:0006256 Abnormality of hand joint mobility 0.11958862555210859 0.5691442143430907 1.0 2348 +Biological Process GO:0046339 diacylglycerol metabolic process 0.11950954048399809 0.5682048035033156 1.0 2349 +Biological Process GO:0002891 positive regulation of immunoglobulin mediated immune response 0.11949508605715864 0.5680331068027862 1.0 2350 +Biological Process GO:0002714 positive regulation of B cell mediated immunity 0.11949508605715864 0.5680331068027862 1.0 2350 +Phenotype HP:0002788 Recurrent upper respiratory tract infections 0.11949494690845042 0.5680314539268645 1.0 2352 +Disease MONDO:0020022 central nervous system malformation 0.11943765167234854 0.5673508732920173 1.0 2353 +Biological Process GO:0001763 morphogenesis of a branching structure 0.1194374619445524 0.56734861961313 1.0 2354 +Phenotype HP:0009485 Radial deviation of the hand or of fingers of the hand 0.11941153718097397 0.5670406726832473 1.0 2355 +Biological Process GO:0048145 regulation of fibroblast proliferation 0.11937030455890107 0.5665508915772425 1.0 2356 +Phenotype HP:5200065 Tactile sensory seeking 0.11936545883351779 0.5664933316982363 1.0 2357 +Disease MONDO:0019290 hypopigmentation of the skin 0.11935552167716224 0.5663752933299326 1.0 2358 +Biological Process GO:0034341 response to type II interferon 0.1193514199955652 0.5663265715642994 1.0 2359 +Phenotype HP:0100743 Neoplasm of the rectum 0.1193069288400701 0.5657980840160834 1.0 2360 +Biological Process GO:0010745 negative regulation of macrophage derived foam cell differentiation 0.11930002298071618 0.5657160528654499 1.0 2361 +Biological Process GO:0006109 regulation of carbohydrate metabolic process 0.11928593597976411 0.5655487206280191 1.0 2362 +Biological Process GO:0070670 response to interleukin-4 0.11922082673433021 0.5647753213961346 1.0 2363 +Biological Process GO:0071353 cellular response to interleukin-4 0.11922082673433021 0.5647753213961346 1.0 2363 +Biological Process GO:0045824 negative regulation of innate immune response 0.1190394686205325 0.5626210616597112 1.0 2365 +Biological Process GO:1904888 cranial skeletal system development 0.11902979577230355 0.5625061628716734 1.0 2366 +Phenotype HP:0000283 Broad face 0.11900705675867262 0.5622360578265486 1.0 2367 +Biological Process GO:0034381 plasma lipoprotein particle clearance 0.11899352904928473 0.5620753691258882 1.0 2368 +Biological Process GO:0035330 regulation of hippo signaling 0.11893106360689898 0.5613333742703418 1.0 2369 +Phenotype HP:0008163 Decreased circulating cortisol level 0.1188914259854632 0.5608625393563774 1.0 2370 +Phenotype HP:0000964 Eczematoid dermatitis 0.11882033173948159 0.5600180473818942 1.0 2371 +Phenotype HP:0430046 Small joint hypermobilty 0.11877791994457354 0.5595142594883911 1.0 2372 +Biological Process GO:0034250 positive regulation of amide metabolic process 0.11877483118492216 0.5594775697014656 1.0 2373 +Biological Process GO:0035331 negative regulation of hippo signaling 0.11873362576337021 0.558988111696456 1.0 2374 +Phenotype HP:0008661 Urethral stenosis 0.11871097532407338 0.5587190587802798 1.0 2375 +Biological Process GO:0010838 positive regulation of keratinocyte proliferation 0.118660784178801 0.5581228639857868 1.0 2376 +Biological Process GO:0060586 multicellular organismal-level iron ion homeostasis 0.11863052779632821 0.5577634639834046 1.0 2377 +Biological Process GO:0050768 negative regulation of neurogenesis 0.11860056898400906 0.5574075986637961 1.0 2378 +Biological Process GO:0051961 negative regulation of nervous system development 0.11860056898400906 0.5574075986637961 1.0 2378 +Phenotype HP:0001051 Seborrheic dermatitis 0.11859911060841744 0.557390275370386 1.0 2380 +Phenotype HP:0004422 Biparietal narrowing 0.1185648261002028 0.5569830273345344 1.0 2381 +Biological Process GO:1904407 positive regulation of nitric oxide metabolic process 0.11856467002748106 0.5569811734269624 1.0 2382 +Biological Process GO:0045429 positive regulation of nitric oxide biosynthetic process 0.11856467002748106 0.5569811734269624 1.0 2382 +Phenotype HP:0010863 Receptive language delay 0.11855827626883608 0.5569052252572068 1.0 2384 +Biological Process GO:0050801 monoatomic ion homeostasis 0.11853308649472472 0.5566060088890974 1.0 2385 +Phenotype HP:0002699 Abnormal foramen magnum morphology 0.11849845017492744 0.5561945818644406 1.0 2386 +Phenotype HP:0004432 Agammaglobulinemia 0.11848982955646359 0.5560921819724762 1.0 2387 +Biological Process GO:0043367 CD4-positive, alpha-beta T cell differentiation 0.11848773974814486 0.5560673582145335 1.0 2388 +Phenotype HP:0011766 Abnormal parathyroid morphology 0.11845981458465993 0.5557356495632418 1.0 2389 +Phenotype HP:0008422 Vertebral wedging 0.1184417961596248 0.5555216179615996 1.0 2390 +Biological Process GO:1902751 positive regulation of cell cycle G2/M phase transition 0.11842839199419675 0.5553623967760825 1.0 2391 +Biological Process GO:1905521 regulation of macrophage migration 0.11839047095300592 0.5549119522357749 1.0 2392 +Phenotype HP:0200043 Verrucae 0.1183747599075482 0.5547253288091306 1.0 2393 +Phenotype HP:0005249 Functional intestinal obstruction 0.11835140759775609 0.5544479387344095 1.0 2394 +Biological Process GO:0051058 negative regulation of small GTPase mediated signal transduction 0.11831959861392283 0.5540700961791821 1.0 2395 +Phenotype HP:0100314 Cerebral inclusion bodies 0.11828693606599061 0.5536821145751285 1.0 2396 +Biological Process GO:0052547 regulation of peptidase activity 0.11822793059339431 0.5529812189207735 1.0 2397 +Biological Process GO:1904031 positive regulation of cyclin-dependent protein kinase activity 0.1182278573465102 0.552980348858718 1.0 2398 +Biological Process GO:0046632 alpha-beta T cell differentiation 0.11821391308925289 0.5528147122002045 1.0 2399 +Biological Process GO:0061572 actin filament bundle organization 0.11818956463606145 0.5525254894504962 1.0 2400 +Biological Process GO:0043506 regulation of JUN kinase activity 0.11806298972092799 0.5510219711484842 1.0 2401 +Biological Process GO:0006979 response to oxidative stress 0.11798312516827614 0.5500733012128382 1.0 2402 +Biological Process GO:0034138 toll-like receptor 3 signaling pathway 0.11796678913721392 0.549879253903714 1.0 2403 +Biological Process GO:0007224 smoothened signaling pathway 0.11792792701665222 0.5494176307656862 1.0 2404 +Phenotype HP:0000935 Thickened cortex of long bones 0.11791806689938855 0.5493005075051232 1.0 2405 +Phenotype HP:0100039 Thickened cortex of bones 0.11791806689938855 0.5493005075051232 1.0 2405 +Phenotype HP:0001300 Parkinsonism 0.11790676776531628 0.5491662909041747 1.0 2407 +Biological Process GO:0048705 skeletal system morphogenesis 0.11788866870705439 0.5489513015019125 1.0 2408 +Phenotype HP:0031979 Abnormal urine carbohydrate level 0.11783079572879596 0.5482638581651996 1.0 2409 +Biological Process GO:0071676 negative regulation of mononuclear cell migration 0.1177813259624868 0.5476762322603066 1.0 2410 +Phenotype HP:0100702 Arachnoid cyst 0.1177720258868884 0.547565761446579 1.0 2411 +Phenotype HP:0002171 Gliosis 0.11776832238021695 0.5475217693960508 1.0 2412 +Phenotype HP:0010787 Genital neoplasm 0.11775710693813035 0.547388546929146 1.0 2413 +Biological Process GO:0071774 response to fibroblast growth factor 0.11775288322109367 0.5473383755673049 1.0 2414 +Biological Process GO:0044344 cellular response to fibroblast growth factor stimulus 0.11775288322109367 0.5473383755673049 1.0 2414 +Biological Process GO:1902895 positive regulation of miRNA transcription 0.11770331527463951 0.5467495834309767 1.0 2416 +Phenotype HP:0010788 Testicular neoplasm 0.11763938545895847 0.5459901940383838 1.0 2417 +Phenotype HP:0010500 Hyperextensibility of the knee 0.1175640791903404 0.5450956696138237 1.0 2418 +Phenotype HP:0002169 Clonus 0.11755795278149206 0.5450228971547676 1.0 2419 +Phenotype HP:0002679 Abnormal sella turcica morphology 0.11752991386770362 0.5446898373221379 1.0 2420 +Phenotype HP:0002148 Hypophosphatemia 0.11752505072688224 0.5446320705741019 1.0 2421 +Phenotype HP:0002722 Recurrent abscess formation 0.11745309361601597 0.5437773290715437 1.0 2422 +Phenotype HP:0000485 Megalocornea 0.11744728478725475 0.5437083289829674 1.0 2423 +Phenotype HP:0002107 Pneumothorax 0.11730242686352665 0.5419876362273215 1.0 2424 +Disease MONDO:0021440 benign neoplasm of skin 0.11729457118597086 0.5418943226748899 1.0 2425 +Biological Process GO:2000630 positive regulation of miRNA metabolic process 0.11721313716888149 0.5409270098785816 1.0 2426 +Phenotype HP:0005344 Abnormal carotid artery morphology 0.11721293468628202 0.5409246046919471 1.0 2427 +Disease MONDO:0017761 disorder of mineral absorption and transport 0.11719307379550303 0.5406886873875667 1.0 2428 +Phenotype HP:0030255 Large intestinal polyposis 0.1171724017002912 0.5404431342030422 1.0 2429 +Phenotype HP:0004288 Pseudoepiphyses of hand bones 0.11709401179463352 0.5395119808404267 1.0 2430 +Phenotype HP:0004447 Poikilocytosis 0.11706053013379059 0.5391142694154889 1.0 2431 +Phenotype HP:0002577 Abnormal stomach morphology 0.1170260169442664 0.5387043049920033 1.0 2432 +Phenotype HP:0003261 Increased circulating IgA level 0.11696149098797681 0.5379378343517984 1.0 2433 +Phenotype HP:0001436 Abnormality of the foot musculature 0.11694116196427895 0.5376963563372997 1.0 2434 +Biological Process GO:1990138 neuron projection extension 0.11690939403372047 0.5373190014328042 1.0 2435 +Biological Process GO:0032890 regulation of organic acid transport 0.1168490178578171 0.5366018238990053 1.0 2436 +Biological Process GO:0007160 cell-matrix adhesion 0.11679957811694774 0.5360145546508654 1.0 2437 +Biological Process GO:1902175 regulation of oxidative stress-induced intrinsic apoptotic signaling pathway 0.11676171108663247 0.5355647516779634 1.0 2438 +Phenotype HP:0100669 Abnormal pigmentation of the oral mucosa 0.11672659441443511 0.5351476187942572 1.0 2439 +Biological Process GO:0045666 positive regulation of neuron differentiation 0.11672360190399367 0.5351120723021823 1.0 2440 +Phenotype HP:0100639 Erectile dysfunction 0.11670196475248096 0.5348550557103208 1.0 2441 +Phenotype HP:0011227 Elevated circulating C-reactive protein concentration 0.11668264067939083 0.5346255149871072 1.0 2442 +Phenotype HP:0000293 Full cheeks 0.1166479630404691 0.5342135971538271 1.0 2443 +Biological Process GO:0002474 antigen processing and presentation of peptide antigen via MHC class I 0.1166137997694009 0.5338077892316692 1.0 2444 +Disease MONDO:0044334 connective and soft tissue neoplasm 0.11660015009718183 0.5336456517972795 1.0 2445 +Biological Process GO:1902806 regulation of cell cycle G1/S phase transition 0.11659286954233772 0.5335591698316753 1.0 2446 +Phenotype HP:0004942 Aortic aneurysm 0.11657181756005075 0.5333091041640134 1.0 2447 +Phenotype HP:0010754 Abnormality of the temporomandibular joint 0.11654667743614855 0.5330104775651968 1.0 2448 +Biological Process GO:1905314 semi-lunar valve development 0.11653833696740745 0.5329114054276697 1.0 2449 +Biological Process GO:0032371 regulation of sterol transport 0.1165317576756627 0.5328332534056669 1.0 2450 +Biological Process GO:0032374 regulation of cholesterol transport 0.1165317576756627 0.5328332534056669 1.0 2450 +Biological Process GO:0002761 regulation of myeloid leukocyte differentiation 0.11652511120617315 0.5327543034137924 1.0 2452 +Phenotype HP:0030356 Increased circulating interferon-gamma concentration 0.11650568637047798 0.5325235657834295 1.0 2453 +Phenotype HP:0002018 Nausea 0.11647842210935566 0.5321997076513106 1.0 2454 +Phenotype HP:0001041 Facial erythema 0.11645401487184859 0.5319097866329576 1.0 2455 +Biological Process GO:1904064 positive regulation of cation transmembrane transport 0.11642961888805814 0.5316199992917151 1.0 2456 +Phenotype HP:0100733 Neoplasm of the parathyroid gland 0.11641931427399543 0.531497596082342 1.0 2457 +Phenotype HP:0010529 Echolalia 0.11634146117978383 0.5305728192267386 1.0 2458 +Biological Process GO:0002673 regulation of acute inflammatory response 0.11631374788037285 0.5302436271997907 1.0 2459 +Phenotype HP:0001792 Small nail 0.1162577387241226 0.5295783232458933 1.0 2460 +Phenotype HP:0009765 Low hanging columella 0.11625636727738486 0.5295620325356192 1.0 2461 +Phenotype HP:0010786 Urinary tract neoplasm 0.11624009801753166 0.5293687783673371 1.0 2462 +Phenotype HP:0005086 Knee osteoarthritis 0.11623283278068941 0.529282478356397 1.0 2463 +Biological Process GO:0050769 positive regulation of neurogenesis 0.11619442466911589 0.5288262481575806 1.0 2464 +Biological Process GO:0043588 skin development 0.11617569760635238 0.5286037990129125 1.0 2465 +Biological Process GO:0051783 regulation of nuclear division 0.11612035358368566 0.5279463958386846 1.0 2466 +Phenotype HP:0002901 Hypocalcemia 0.11610647937416851 0.5277815912412414 1.0 2467 +Biological Process GO:0045071 negative regulation of viral genome replication 0.11610440767227104 0.527756982560162 1.0 2468 +Phenotype HP:0006485 Agenesis of incisor 0.11607069521896252 0.5273565296702537 1.0 2469 +Disease MONDO:0006573 lipodystrophy 0.11595489256113012 0.5259809694710701 1.0 2470 +Disease MONDO:0020087 hereditary lipodystrophy 0.11595489256113012 0.5259809694710701 1.0 2470 +Biological Process GO:0031023 microtubule organizing center organization 0.11594994788246327 0.5259222341769137 1.0 2472 +Disease MONDO:0021163 kidney neoplasm 0.11594427158959453 0.5258548084140228 1.0 2473 +Disease MONDO:0002367 kidney cancer 0.11594427158959453 0.5258548084140228 1.0 2473 +Phenotype HP:0012696 Abnormal thalamic MRI signal intensity 0.11591868687524287 0.5255509007539709 1.0 2475 +Phenotype HP:0010784 Uterine neoplasm 0.11591836309617232 0.5255470547489559 1.0 2476 +Biological Process GO:1903322 positive regulation of protein modification by small protein conjugation or removal 0.11589355465142959 0.5252523679962465 1.0 2477 +Biological Process GO:2001138 regulation of phospholipid transport 0.11588072179165743 0.5250999330567148 1.0 2478 +Phenotype HP:0010584 Pseudoepiphyses 0.1158273580167749 0.524466052227202 1.0 2479 +Disease MONDO:0001149 microcephaly 0.1156944655776112 0.5228874913072048 1.0 2480 +Phenotype HP:0002097 Emphysema 0.11565212406684133 0.5223845382828223 1.0 2481 +Phenotype HP:0033331 Acute phase response 0.11555945295613035 0.5212837458321631 1.0 2482 +Phenotype HP:0004866 Impaired ADP-induced platelet aggregation 0.11555477440632167 0.5212281717458064 1.0 2483 +Phenotype HP:0001437 Abnormality of the musculature of the lower limbs 0.11553294283765636 0.5209688457726045 1.0 2484 +Disease MONDO:0015979 hereditary predisposition to infections 0.11552526734690405 0.5208776725665166 1.0 2485 +Phenotype HP:0012377 Hemianopia 0.11551690644156098 0.520778357673108 1.0 2486 +Phenotype HP:0031377 Abnormal cell proliferation 0.11547966535052345 0.5203359899108797 1.0 2487 +Phenotype HP:0031378 Abnormal lymphocyte proliferation 0.11547966535052345 0.5203359899108797 1.0 2487 +Biological Process GO:0071248 cellular response to metal ion 0.11547820743169357 0.5203186720431073 1.0 2489 +Biological Process GO:1903522 regulation of blood circulation 0.11547488235322734 0.5202791751465514 1.0 2490 +Phenotype HP:0002905 Hyperphosphatemia 0.11542663746136461 0.5197060988950862 1.0 2491 +Biological Process GO:0034329 cell junction assembly 0.11541903365774675 0.51961577722359 1.0 2492 +Phenotype HP:0012614 Abnormal urine cytology 0.11538361167020861 0.5191950176560163 1.0 2493 +Phenotype HP:0000790 Hematuria 0.11538361167020861 0.5191950176560163 1.0 2493 +Biological Process GO:0048872 homeostasis of number of cells 0.11528545608188245 0.5180290779171863 1.0 2495 +Biological Process GO:0032507 maintenance of protein location in cell 0.11519397084170424 0.5169423718125299 1.0 2496 +Biological Process GO:0050810 regulation of steroid biosynthetic process 0.11519181505499332 0.5169167643312079 1.0 2497 +Phenotype HP:0010644 Midnasal stenosis 0.11517745511135324 0.5167461899479983 1.0 2498 +Phenotype HP:0010641 Abnormality of the midnasal cavity 0.11517745511135324 0.5167461899479983 1.0 2498 +Biological Process GO:0008016 regulation of heart contraction 0.11517426134444941 0.5167082528339405 1.0 2500 +Biological Process GO:0150077 regulation of neuroinflammatory response 0.1151445391322441 0.5163551979653682 1.0 2501 +Biological Process GO:0045581 negative regulation of T cell differentiation 0.11499797613951002 0.5146142515721513 1.0 2502 +Biological Process GO:0046928 regulation of neurotransmitter secretion 0.11499044818520054 0.5145248308755697 1.0 2503 +Phenotype HP:0010662 Abnormality of the diencephalon 0.11497682590945824 0.5143630188698336 1.0 2504 +Biological Process GO:0002823 negative regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains 0.11496025554392242 0.5141661880220478 1.0 2505 +Biological Process GO:0033344 cholesterol efflux 0.11492399170740697 0.5137354285635513 1.0 2506 +Disease MONDO:0002245 blood platelet disease 0.11488714632900698 0.5132977612681751 1.0 2507 +Biological Process GO:0051497 negative regulation of stress fiber assembly 0.11485885764864834 0.5129617345869473 1.0 2508 +Biological Process GO:0016601 Rac protein signal transduction 0.1148532841461638 0.512895529818151 1.0 2509 +Phenotype HP:0010465 Precocious puberty in females 0.11482759315607527 0.512590359763293 1.0 2510 +Biological Process GO:0043280 positive regulation of cysteine-type endopeptidase activity involved in apoptotic process 0.11471019938153937 0.5111958995073183 1.0 2511 +Biological Process GO:0090068 positive regulation of cell cycle process 0.11470162112537308 0.5110940028152939 1.0 2512 +Phenotype HP:0100574 Biliary tract neoplasm 0.11468708837571062 0.5109213757582423 1.0 2513 +Phenotype HP:0100767 Abnormal placenta morphology 0.11463558847233013 0.5103096348994569 1.0 2514 +Phenotype HP:0033020 Female reproductive system neoplasm 0.1145802479941671 0.5096522738285649 1.0 2515 +Phenotype HP:0000706 Eruption failure 0.11454774979224502 0.5092662444062199 1.0 2516 +Biological Process GO:1905606 regulation of presynapse assembly 0.11453760620397002 0.5091457539393414 1.0 2517 +Phenotype HP:0004331 Decreased skull ossification 0.11444969100014779 0.5081014544599978 1.0 2518 +Biological Process GO:0071806 protein transmembrane transport 0.11442049916795038 0.5077546997026924 1.0 2519 +Phenotype HP:0012842 Skin appendage neoplasm 0.11440428797662505 0.5075621353005803 1.0 2520 +Phenotype HP:0002666 Pheochromocytoma 0.11438843068642812 0.5073737747079127 1.0 2521 +Phenotype HP:0045042 Decreased circulating complement C4 concentration 0.11438093343686684 0.507284718737239 1.0 2522 +Biological Process GO:0032768 regulation of monooxygenase activity 0.11436238855251246 0.5070644335961737 1.0 2523 +Phenotype HP:0000606 Abnormality of the periorbital region 0.11431173072562228 0.5064626953308213 1.0 2524 +Phenotype HP:0001395 Hepatic fibrosis 0.11429930949323863 0.5063151499012812 1.0 2525 +Phenotype HP:0100834 Neoplasm of the large intestine 0.11422865342005051 0.5054758627559995 1.0 2526 +Phenotype HP:0002897 Parathyroid adenoma 0.11417989249390004 0.5048966567986976 1.0 2527 +Biological Process GO:2001198 regulation of dendritic cell differentiation 0.1141026518118069 0.5039791544716017 1.0 2528 +Phenotype HP:0033040 Anti-Sm antibody positivity 0.11408958263282665 0.5038239124177685 1.0 2529 +Phenotype HP:0032235 Anti-La/SS-B antibody positivity 0.11408958263282665 0.5038239124177685 1.0 2529 +Phenotype HP:0012085 Pyuria 0.11408958263282665 0.5038239124177685 1.0 2529 +Biological Process GO:2000045 regulation of G1/S transition of mitotic cell cycle 0.11398795415677898 0.5026167200322778 1.0 2532 +Phenotype HP:0100725 Lichenification 0.11394194811511871 0.5020702379306194 1.0 2533 +Phenotype HP:0012219 Erythema nodosum 0.11394114755083351 0.5020607284393158 1.0 2534 +Biological Process GO:1903587 regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis 0.11392347565733185 0.5018508131074909 1.0 2535 +Phenotype HP:0006713 Aplasia/Hypoplasia of the scapulae 0.11392214968600967 0.5018350625762837 1.0 2536 +Biological Process GO:0043407 negative regulation of MAP kinase activity 0.11385202870015587 0.5010021314581776 1.0 2537 +Phenotype HP:0100026 Arteriovenous malformation 0.11382238560690794 0.5006500164029984 1.0 2538 +Phenotype HP:0002703 Abnormality of skull ossification 0.11370780944709313 0.49928902514280943 1.0 2539 +Phenotype HP:0004259 Abnormality of the hamate bone 0.11370088430262204 0.49920676491418997 1.0 2540 +Phenotype HP:0001241 Capitate-hamate fusion 0.11370088430262204 0.49920676491418997 1.0 2540 +Phenotype HP:0004262 Abnormality of the capitate bone 0.11370088430262204 0.49920676491418997 1.0 2540 +Biological Process GO:0007088 regulation of mitotic nuclear division 0.11368574412670573 0.4990269225531515 1.0 2543 +Phenotype HP:0045056 Abnormal circulating alpha-fetoprotein concentration 0.11354255573426364 0.4973260613007828 1.0 2544 +Phenotype HP:0002757 Recurrent fractures 0.11353731768638009 0.49726384122462136 1.0 2545 +Biological Process GO:1903557 positive regulation of tumor necrosis factor superfamily cytokine production 0.11353326347504122 0.49721568333376454 1.0 2546 +Biological Process GO:0002262 myeloid cell homeostasis 0.11350305213386513 0.49685681835377477 1.0 2547 +Biological Process GO:0071786 endoplasmic reticulum tubular network organization 0.11347345618555993 0.49650526330911715 1.0 2548 +Phenotype HP:5200300 Abnormal movement during sleep 0.11346512008028475 0.4964062430029569 1.0 2549 +Phenotype HP:0004409 Hyposmia 0.11335182657955267 0.4950604877901638 1.0 2550 +Phenotype HP:0025318 Ovarian carcinoma 0.11333379004309807 0.49484624105228686 1.0 2551 +Disease MONDO:0020249 hereditary optic neuropathy 0.11323634170149266 0.49368870233341855 1.0 2552 +Phenotype HP:0100848 Neoplasm of the male external genitalia 0.11315738183819457 0.49275077873719997 1.0 2553 +Biological Process GO:1903020 positive regulation of glycoprotein metabolic process 0.11315398116592179 0.4927103839007043 1.0 2554 +Phenotype HP:0002869 Flared iliac wing 0.11311667395669756 0.4922672307545498 1.0 2555 +Phenotype HP:0034058 Abnormal fetal morphology 0.11301511145686138 0.4910608220665348 1.0 2556 +Phenotype HP:0100560 Upper limb asymmetry 0.11300832586854836 0.49098021955372423 1.0 2557 +Biological Process GO:0043062 extracellular structure organization 0.11298676692887955 0.49072413200012116 1.0 2558 +Phenotype HP:0011034 Amyloidosis 0.1129652210522174 0.49046819961525434 1.0 2559 +Phenotype HP:0010294 Palate fistula 0.112819592846791 0.4887383570795758 1.0 2560 +Phenotype HP:0030339 Decreased circulating gonadotropin concentration 0.11279321072241877 0.48842497739610713 1.0 2561 +Phenotype HP:0025502 Overweight 0.11279315199109718 0.48842427975695163 1.0 2562 +Phenotype HP:0001804 Hypoplastic fingernail 0.11278691552868758 0.48835020002825685 1.0 2563 +Phenotype HP:0007311 Short stepped shuffling gait 0.11277892084460772 0.48825523528883596 1.0 2564 +Phenotype HP:0000863 Central diabetes insipidus 0.11274163798688419 0.48781237140163103 1.0 2565 +Biological Process GO:0032479 regulation of type I interferon production 0.11268904811095048 0.48718768331960866 1.0 2566 +Biological Process GO:0061077 chaperone-mediated protein folding 0.11268389865491335 0.48712651558041586 1.0 2567 +Phenotype HP:0000591 Abnormal sclera morphology 0.11267743145984532 0.48704969509716917 1.0 2568 +Biological Process GO:0060562 epithelial tube morphogenesis 0.11265087769710813 0.48673427660986024 1.0 2569 +Phenotype HP:0100774 Hyperostosis 0.1126397832029633 0.48660249082133555 1.0 2570 +Biological Process GO:0019722 calcium-mediated signaling 0.11263188011192438 0.48650861406852897 1.0 2571 +Phenotype HP:0100832 Vitreous floaters 0.1125432242760519 0.48545551700206924 1.0 2572 +Phenotype HP:0100615 Ovarian neoplasm 0.11252559733266432 0.4852461356095254 1.0 2573 +Phenotype HP:0005340 Spastic/hyperactive bladder 0.11249470220255331 0.48487914825254425 1.0 2574 +Biological Process GO:0034145 positive regulation of toll-like receptor 4 signaling pathway 0.11238741938104224 0.4836047908061 1.0 2575 +Phenotype HP:0002758 Osteoarthritis 0.11235871428221689 0.48326381770412735 1.0 2576 +Biological Process GO:1901379 regulation of potassium ion transmembrane transport 0.11234471791807177 0.4830975620946994 1.0 2577 +Phenotype HP:0007440 Generalized hyperpigmentation 0.11231320432482139 0.4827232283322462 1.0 2578 +Phenotype HP:0100686 Enthesitis 0.1123111467711283 0.4826987877104083 1.0 2579 +Phenotype HP:0002783 Recurrent lower respiratory tract infections 0.11229296533689914 0.4824828198064082 1.0 2580 +Phenotype HP:0002381 Aphasia 0.11227870089179648 0.4823133798011964 1.0 2581 +Phenotype HP:0009468 Deviation of the 2nd finger 0.11227716338966831 0.48229511660436436 1.0 2582 +Biological Process GO:0050890 cognition 0.11224868119316755 0.4819567912444363 1.0 2583 +Biological Process GO:0008544 epidermis development 0.11220577056163605 0.4814470779273033 1.0 2584 +Phenotype HP:0001802 Absent toenail 0.11220330999156025 0.4814178500811819 1.0 2585 +Biological Process GO:0045582 positive regulation of T cell differentiation 0.11220296575674038 0.4814137610928439 1.0 2586 +Phenotype HP:0031652 Abnormal aortic valve physiology 0.11220284959896332 0.48141238131436603 1.0 2587 +Biological Process GO:0036296 response to increased oxygen levels 0.11219690483692923 0.48134176654437055 1.0 2588 +Biological Process GO:0036295 cellular response to increased oxygen levels 0.11219690483692923 0.48134176654437055 1.0 2588 +Biological Process GO:0035304 regulation of protein dephosphorylation 0.1121217324972148 0.48044883299235874 1.0 2590 +Phenotype HP:0004429 Recurrent viral infections 0.11210636105506988 0.48026624353876257 1.0 2591 +Biological Process GO:1902176 negative regulation of oxidative stress-induced intrinsic apoptotic signaling pathway 0.11210115838884127 0.48020444374307847 1.0 2592 +Phenotype HP:0009932 Single naris 0.1120721900187639 0.4798603433773396 1.0 2593 +Biological Process GO:0075294 positive regulation by symbiont of entry into host 0.11202195636843171 0.47926364368710733 1.0 2594 +Biological Process GO:0046598 positive regulation of viral entry into host cell 0.11202195636843171 0.47926364368710733 1.0 2594 +Phenotype HP:0100679 Lack of skin elasticity 0.11199091223242752 0.4788948863657753 1.0 2596 +Biological Process GO:0007059 chromosome segregation 0.11195222673146943 0.47843536120115904 1.0 2597 +Biological Process GO:0048863 stem cell differentiation 0.11193952844200039 0.4782845247530302 1.0 2598 +Biological Process GO:0071214 cellular response to abiotic stimulus 0.11192804015840552 0.47814806134220833 1.0 2599 +Biological Process GO:0104004 cellular response to environmental stimulus 0.11192804015840552 0.47814806134220833 1.0 2599 +Biological Process GO:0002483 antigen processing and presentation of endogenous peptide antigen 0.11189169894241013 0.47771638273267647 1.0 2601 +Phenotype HP:0011002 Osteopetrosis 0.11185580609275603 0.47729003003625625 1.0 2602 +Phenotype HP:0030347 Abnormal circulating androgen level 0.11182410486683603 0.4769134674818458 1.0 2603 +Phenotype HP:0001653 Mitral regurgitation 0.11181679967252045 0.4768266928366356 1.0 2604 +Phenotype HP:0000934 Chondrocalcinosis 0.11181303083917815 0.47678192480419085 1.0 2605 +Phenotype HP:0011001 Increased bone mineral density 0.11174469023278999 0.47597014189786335 1.0 2606 +Phenotype HP:0012700 Abnormal large intestine physiology 0.11173431174852178 0.4758468612223207 1.0 2607 +Biological Process GO:0007613 memory 0.11172765891714909 0.47576783566090924 1.0 2608 +Biological Process GO:0051354 negative regulation of oxidoreductase activity 0.11169643865350598 0.4753969862099611 1.0 2609 +Biological Process GO:1902902 negative regulation of autophagosome assembly 0.11167944638836336 0.475195143833787 1.0 2610 +Phenotype HP:0100530 Abnormal circulating calcium-phosphate regulating hormone concentration 0.11149748544775528 0.47303372342779987 1.0 2611 +Disease MONDO:0017436 lethal congenital contracture syndrome 0.1114768749632371 0.47278890208501057 1.0 2612 +Phenotype HP:0012780 Neoplasm of the ear 0.11142543969668439 0.47217792901385086 1.0 2613 +Disease MONDO:0005516 osteochondrodysplasia 0.11133614780940093 0.47111727661988867 1.0 2614 +Biological Process GO:0098581 detection of external biotic stimulus 0.11132916430287798 0.4710343231384788 1.0 2615 +Phenotype HP:0000882 Hypoplastic scapulae 0.11132911847897753 0.47103377881993885 1.0 2616 +Biological Process GO:0018107 peptidyl-threonine phosphorylation 0.11132133093298957 0.4709412745673521 1.0 2617 +Phenotype HP:0040012 Chromosome breakage 0.11128670666903473 0.47052999074784563 1.0 2618 +Phenotype HP:0012592 Albuminuria 0.11128350019661437 0.4704919027114932 1.0 2619 +Phenotype HP:0009714 Abnormal epididymis morphology 0.11125947577080764 0.4702065289163959 1.0 2620 +Phenotype HP:0030146 Abnormal liver parenchyma morphology 0.11125190701686105 0.4701166235819138 1.0 2621 +Biological Process GO:0043516 regulation of DNA damage response, signal transduction by p53 class mediator 0.11124464230628661 0.4700303298222382 1.0 2622 +Phenotype HP:0009699 Osteolytic defects of the hand bones 0.11117813582988034 0.46924033360242073 1.0 2623 +Phenotype HP:0009771 Osteolytic defects of the phalanges of the hand 0.11117813582988034 0.46924033360242073 1.0 2623 +Biological Process GO:0120031 plasma membrane bounded cell projection assembly 0.11116658637644583 0.46910314358654187 1.0 2625 +Phenotype HP:0005420 Recurrent gram-negative bacterial infections 0.11116516057815007 0.46908620726207034 1.0 2626 +Biological Process GO:0007631 feeding behavior 0.11116003214120185 0.4690252891978217 1.0 2627 +Biological Process GO:0010743 regulation of macrophage derived foam cell differentiation 0.11111251315252757 0.4684608355769005 1.0 2628 +Phenotype HP:0010026 Aplasia/Hypoplasia of the 1st metacarpal 0.11110748220881794 0.46840107558467897 1.0 2629 +Phenotype HP:0045039 Osteolysis involving bones of the upper limbs 0.11109885247399043 0.46829856740412046 1.0 2630 +Phenotype HP:3000036 Abnormal head blood vessel morphology 0.11096158644220078 0.46666805482725887 1.0 2631 +Phenotype HP:0001161 Hand polydactyly 0.1109611345804783 0.46666268739431205 1.0 2632 +Phenotype HP:0100502 Decreased circulating vitamin B12 concentration 0.11089932286212145 0.46592845779020503 1.0 2633 +Biological Process GO:1902743 regulation of lamellipodium organization 0.11086858298330426 0.4655633145834761 1.0 2634 +Biological Process GO:0036503 ERAD pathway 0.11086586516641483 0.465531031034793 1.0 2635 +Phenotype HP:0031657 Abnormal heart sound 0.11086263517429229 0.4654926636199977 1.0 2636 +Biological Process GO:0070536 protein K63-linked deubiquitination 0.11082382631194365 0.4650316731088848 1.0 2637 +Phenotype HP:0004100 Abnormal 2nd finger morphology 0.11078468057528101 0.4645666810410967 1.0 2638 +Biological Process GO:0034976 response to endoplasmic reticulum stress 0.11077601189765729 0.46446371027909567 1.0 2639 +Phenotype HP:0000336 Prominent supraorbital ridges 0.11074290493100458 0.4640704496536869 1.0 2640 +Biological Process GO:0046486 glycerolipid metabolic process 0.11064223606448653 0.4628746559761395 1.0 2641 +Biological Process GO:0002294 CD4-positive, alpha-beta T cell differentiation involved in immune response 0.11062220034764825 0.46263666200293774 1.0 2642 +Biological Process GO:0042093 T-helper cell differentiation 0.11062220034764825 0.46263666200293774 1.0 2642 +Phenotype HP:0002967 Cubitus valgus 0.11059845521258937 0.4623546057589567 1.0 2644 +Biological Process GO:0030308 negative regulation of cell growth 0.11058088795390808 0.4621459333303349 1.0 2645 +Phenotype HP:0002134 Abnormal basal ganglia morphology 0.11051909689860961 0.46141194917206846 1.0 2646 +Biological Process GO:0098771 inorganic ion homeostasis 0.11051579019754221 0.4613726705711791 1.0 2647 +Biological Process GO:0051216 cartilage development 0.11050980165114299 0.4613015357092345 1.0 2648 +Phenotype HP:0000121 Nephrocalcinosis 0.11050408213747331 0.4612335965486836 1.0 2649 +Biological Process GO:0061178 regulation of insulin secretion involved in cellular response to glucose stimulus 0.11039807064035911 0.45997434051073305 1.0 2650 +Biological Process GO:0043270 positive regulation of monoatomic ion transport 0.11038597896963542 0.4598307097746128 1.0 2651 +Phenotype HP:0001293 Cranial nerve compression 0.1103667589095979 0.4596024045689431 1.0 2652 +Phenotype HP:0012733 Macule 0.1102737949243644 0.45849813321249644 1.0 2653 +Phenotype HP:0012490 Panniculitis 0.1102608599335142 0.45834448511042875 1.0 2654 +Phenotype HP:0100797 Toenail dysplasia 0.11025164120080566 0.4582349805270441 1.0 2655 +Biological Process GO:0008217 regulation of blood pressure 0.11023305417243567 0.4580141947788978 1.0 2656 +Biological Process GO:0035306 positive regulation of dephosphorylation 0.11018883940342739 0.45748899028357504 1.0 2657 +Biological Process GO:0010596 negative regulation of endothelial cell migration 0.11017424821383215 0.4573156690486255 1.0 2658 +Biological Process GO:0030031 cell projection assembly 0.11013753740866516 0.4568796002794546 1.0 2659 +Phenotype HP:0003016 Metaphyseal widening 0.11010965784677285 0.45654843330602246 1.0 2660 +Phenotype HP:0040319 Dark urine 0.11010022222044324 0.45643635235489133 1.0 2661 +Biological Process GO:0002293 alpha-beta T cell differentiation involved in immune response 0.11008904160986421 0.4563035436335462 1.0 2662 +Biological Process GO:0002287 alpha-beta T cell activation involved in immune response 0.11008904160986421 0.4563035436335462 1.0 2662 +Biological Process GO:0002292 T cell differentiation involved in immune response 0.11008904160986421 0.4563035436335462 1.0 2662 +Biological Process GO:0002347 response to tumor cell 0.11007415929495734 0.45612676427078547 1.0 2665 +Disease MONDO:0018778 intermediate Charcot-Marie-Tooth disease 0.11001039752771957 0.45536937103919983 1.0 2666 +Phenotype HP:0031481 Abnormal mitral valve physiology 0.11000955902024012 0.455359410840211 1.0 2667 +Phenotype HP:0100766 Abnormal lymphatic vessel morphology 0.11000793845041812 0.455340160924977 1.0 2668 +Phenotype HP:0000093 Proteinuria 0.10999953748649816 0.45524037019634095 1.0 2669 +Phenotype HP:0000169 Gingival fibromatosis 0.10986254037946797 0.45361305203835206 1.0 2670 +Phenotype HP:0100578 Lipoatrophy 0.10983507108184254 0.4532867583830911 1.0 2671 +Phenotype HP:0100533 Inflammatory abnormality of the eye 0.10979828659306867 0.4528498143642597 1.0 2672 +Phenotype HP:0030878 Abnormality on pulmonary function testing 0.10975761208107104 0.45236666276072623 1.0 2673 +Phenotype HP:0000689 Dental malocclusion 0.1097057162349 0.45175021870121973 1.0 2674 +Phenotype HP:0002339 Abnormal caudate nucleus morphology 0.10964142078901129 0.45098648617548376 1.0 2675 +Phenotype HP:0010051 Deviation of the hallux 0.10958261679156944 0.4502879837408421 1.0 2676 +Biological Process GO:0043242 negative regulation of protein-containing complex disassembly 0.10952733934282755 0.449631371364019 1.0 2677 +Phenotype HP:0012743 Abdominal obesity 0.1094873997494602 0.44915694948082513 1.0 2678 +Biological Process GO:0046463 acylglycerol biosynthetic process 0.1094786100750944 0.4490525414607702 1.0 2679 +Biological Process GO:0046460 neutral lipid biosynthetic process 0.1094786100750944 0.4490525414607702 1.0 2679 +Phenotype HP:0005616 Accelerated skeletal maturation 0.10942061512113344 0.44836364923743577 1.0 2681 +Biological Process GO:0046839 phospholipid dephosphorylation 0.10940208739977697 0.4481435679667934 1.0 2682 +Phenotype HP:0001636 Tetralogy of Fallot 0.10935994610104338 0.4476429931581933 1.0 2683 +Biological Process GO:0032526 response to retinoic acid 0.10933383794484997 0.4473328678017813 1.0 2684 +Biological Process GO:0032717 negative regulation of interleukin-8 production 0.1093099565426967 0.4470491929110869 1.0 2685 +Phenotype HP:0002692 Hypoplastic facial bones 0.1092060875034161 0.4458153860275813 1.0 2686 +Phenotype HP:0100700 Abnormal arachnoid mater morphology 0.1091871704934545 0.44559068059786316 1.0 2687 +Phenotype HP:0000914 Shield chest 0.10918018556999509 0.4455077102853941 1.0 2688 +Biological Process GO:0030198 extracellular matrix organization 0.10914629642598983 0.4451051585775955 1.0 2689 +Phenotype HP:0002063 Rigidity 0.10912398933453238 0.4448401841137725 1.0 2690 +Phenotype HP:0003452 Increased circulating iron concentration 0.10911464837141993 0.44472922761829964 1.0 2691 +Phenotype HP:0000859 Hyperaldosteronism 0.10910520479074781 0.4446170521816258 1.0 2692 +Phenotype HP:0025021 Abnormal erythrocyte sedimentation rate 0.10909703226630607 0.4445199749680338 1.0 2693 +Biological Process GO:0045761 regulation of adenylate cyclase activity 0.1090744525410916 0.44425176202806416 1.0 2694 +Biological Process GO:0045664 regulation of neuron differentiation 0.10906925438086879 0.4441900157569048 1.0 2695 +Biological Process GO:0061515 myeloid cell development 0.10905293681077444 0.4439961877361209 1.0 2696 +Phenotype HP:0003584 Late onset 0.10905041344918587 0.4439662140219216 1.0 2697 +Phenotype HP:0012092 Abnormality of exocrine pancreas physiology 0.10903544838377333 0.443788451708474 1.0 2698 +Biological Process GO:0006913 nucleocytoplasmic transport 0.10903049374451612 0.4437295980975889 1.0 2699 +Biological Process GO:0071869 response to catecholamine 0.10900729924698793 0.4434540825935664 1.0 2700 +Biological Process GO:0071867 response to monoamine 0.10900729924698793 0.4434540825935664 1.0 2700 +Biological Process GO:0071868 cellular response to monoamine stimulus 0.10900729924698793 0.4434540825935664 1.0 2700 +Biological Process GO:0071870 cellular response to catecholamine stimulus 0.10900729924698793 0.4434540825935664 1.0 2700 +Biological Process GO:0007051 spindle organization 0.10900229441305098 0.44339463274590263 1.0 2704 +Biological Process GO:0072359 circulatory system development 0.1089806562361435 0.4431376039739041 1.0 2705 +Biological Process GO:0097006 regulation of plasma lipoprotein particle levels 0.10897867979630771 0.44311412686184914 1.0 2706 +Phenotype HP:0000372 Abnormal auditory canal morphology 0.10887574787093957 0.44189145147242337 1.0 2707 +Phenotype HP:0032040 Abnormal ocular adnexa physiology 0.1088320985128568 0.44137296320261643 1.0 2708 +Phenotype HP:0031879 Abnormal eyelid physiology 0.1088320985128568 0.44137296320261643 1.0 2708 +Phenotype HP:0034261 Aplasia/Hypoplasia of facial bones 0.10877573464679646 0.44070344583336113 1.0 2710 +Biological Process GO:1901655 cellular response to ketone 0.10876288968261083 0.44055086711172875 1.0 2711 +Phenotype HP:0000488 Retinopathy 0.10875815115309773 0.440494580557319 1.0 2712 +Phenotype HP:0001361 Nystagmus-induced head nodding 0.10872497304573392 0.44010047488800047 1.0 2713 +Phenotype HP:0040171 Decreased serum testosterone concentration 0.10869155300802125 0.43970349545252585 1.0 2714 +Phenotype HP:0000107 Renal cyst 0.10868663902338782 0.4396451247570024 1.0 2715 +Phenotype HP:0011390 Abnormal inner ear morphology 0.108678990479394 0.43955427163759614 1.0 2716 +Phenotype HP:0002139 Arrhinencephaly 0.10867680838833016 0.43952835170039783 1.0 2717 +Biological Process GO:0045861 negative regulation of proteolysis 0.1086470963356354 0.43917541751142525 1.0 2718 +Phenotype HP:0003482 EMG 0.10863955639022993 0.4390858543787828 1.0 2719 +Phenotype HP:0034902 Abnormal circulating calcitonin concentration 0.10858273028158272 0.4384108462676328 1.0 2720 +Phenotype HP:0003528 Elevated circulating calcitonin concentration 0.10858273028158272 0.4384108462676328 1.0 2720 +Phenotype HP:0025634 Abnormal ureter physiology 0.10858262246774819 0.43840956560255595 1.0 2722 +Phenotype HP:0010741 Pedal edema 0.10857846921632974 0.4383602312655437 1.0 2723 +Biological Process GO:0030003 intracellular monoatomic cation homeostasis 0.10847522865640857 0.4371338897650357 1.0 2724 +Phenotype HP:0001944 Dehydration 0.10844969958973993 0.4368306431151832 1.0 2725 +Phenotype HP:0007126 Proximal amyotrophy 0.10831514989988567 0.43523239656678436 1.0 2726 +Biological Process GO:0030217 T cell differentiation 0.10831468114609621 0.43522682848166394 1.0 2727 +Phenotype HP:0001620 High pitched voice 0.10826236790258259 0.4346054263738497 1.0 2728 +Phenotype HP:0008320 Impaired collagen-induced platelet aggregation 0.10826112021475343 0.4345906057319842 1.0 2729 +Phenotype HP:0031913 Rhombencephalosynapsis 0.10822120094855003 0.4341164253047139 1.0 2730 +Biological Process GO:0070228 regulation of lymphocyte apoptotic process 0.10817783863092034 0.4336013466407847 1.0 2731 +Phenotype HP:0002690 Large sella turcica 0.1081667768866641 0.43346994987133863 1.0 2732 +Phenotype HP:0030872 Abnormal cardiac ventricular function 0.1081605787390123 0.4333963252639414 1.0 2733 +Phenotype HP:0000529 Progressive visual loss 0.10813161917602376 0.4330523295130801 1.0 2734 +Biological Process GO:0002825 regulation of T-helper 1 type immune response 0.10811520161530663 0.43285731375512704 1.0 2735 +Phenotype HP:0003484 Upper limb muscle weakness 0.10808483817447356 0.4324966420615577 1.0 2736 +Phenotype HP:0100678 Premature skin wrinkling 0.10806578094901353 0.43227027108406574 1.0 2737 +Biological Process GO:0032727 positive regulation of interferon-alpha production 0.10802847732789667 0.43182716055919285 1.0 2738 +Phenotype HP:0000988 Skin rash 0.1080109692899246 0.4316191915829105 1.0 2739 +Disease MONDO:0002468 hyperimmunoglobulin syndrome 0.1080099133432163 0.4316066485351811 1.0 2740 +Biological Process GO:0090090 negative regulation of canonical Wnt signaling pathway 0.10798297184226391 0.4312866243050808 1.0 2741 +Phenotype HP:0000391 Thickened helices 0.10797711876156035 0.4312170985704463 1.0 2742 +Biological Process GO:0034767 positive regulation of monoatomic ion transmembrane transport 0.10797452447374456 0.43118628236008094 1.0 2743 +Biological Process GO:0045229 external encapsulating structure organization 0.10793301006992428 0.430693154113658 1.0 2744 +Phenotype HP:0000737 Irritability 0.10789862899423819 0.4302847590024908 1.0 2745 +Biological Process GO:0034504 protein localization to nucleus 0.10789460935037809 0.4302370117209315 1.0 2746 +Biological Process GO:0051339 regulation of lyase activity 0.10789114295623814 0.43019583620818547 1.0 2747 +Biological Process GO:0046599 regulation of centriole replication 0.10779871603118973 0.4290979443133938 1.0 2748 +Phenotype HP:0100240 Synostosis of joints 0.10777876898806049 0.4288610036495647 1.0 2749 +Biological Process GO:0006650 glycerophospholipid metabolic process 0.10777001500458505 0.42875701958323564 1.0 2750 +Phenotype HP:0100006 Neoplasm of the central nervous system 0.10776347307207323 0.4286793113323419 1.0 2751 +Disease MONDO:0021227 adrenal gland neoplasm 0.10776213530736034 0.4286634207135135 1.0 2752 +Phenotype HP:0001009 Telangiectasia 0.10776087205746654 0.4286484152178879 1.0 2753 +Phenotype HP:0002465 Poor speech 0.10774026677754533 0.4284036556978286 1.0 2754 +Biological Process GO:1902932 positive regulation of alcohol biosynthetic process 0.10772674347829614 0.4282430193829371 1.0 2755 +Biological Process GO:0046039 GTP metabolic process 0.10771913174492986 0.4281526035180387 1.0 2756 +Phenotype HP:0030349 Decreased circulating androgen concentration 0.10767834502979046 0.4276681191111055 1.0 2757 +Biological Process GO:0002507 tolerance induction 0.10765293078942473 0.4273662364238344 1.0 2758 +Biological Process GO:0043277 apoptotic cell clearance 0.10749493519568365 0.42548948804461184 1.0 2759 +Phenotype HP:0100281 Chronic colitis 0.10746966993672713 0.42518937503085913 1.0 2760 +Phenotype HP:0100279 Ulcerative colitis 0.10746966993672713 0.42518937503085913 1.0 2760 +Phenotype HP:0001609 Hoarse voice 0.10745900468782643 0.42506268802576963 1.0 2762 +Biological Process GO:1902166 negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator 0.1074440768075614 0.42488536741555993 1.0 2763 +Phenotype HP:0012190 T-cell lymphoma 0.10743085704878919 0.4247283367018418 1.0 2764 +Phenotype HP:0011840 Abnormality of T cell physiology 0.10742420929367047 0.4246493714386398 1.0 2765 +Phenotype HP:0002894 Neoplasm of the pancreas 0.10738323093206559 0.4241626105619334 1.0 2766 +Phenotype HP:0030087 Abnormal circulating testosterone concentration 0.10738276726940577 0.4241571029517227 1.0 2767 +Biological Process GO:0051084 'de novo' post-translational protein folding 0.10732861324557763 0.42351383516151847 1.0 2768 +Phenotype HP:0000717 Autism 0.10731622861366441 0.423366724490138 1.0 2769 +Phenotype HP:0000690 Agenesis of maxillary lateral incisor 0.10730590336970425 0.4232440762288259 1.0 2770 +Phenotype HP:0030223 Perseverative thought 0.1071649119607746 0.4215693118133913 1.0 2771 +Phenotype HP:0030247 Splanchnic vein thrombosis 0.10714787092056899 0.42136689006333566 1.0 2772 +Phenotype HP:0025426 Abnormal bronchus morphology 0.10713672378173733 0.42123447893565846 1.0 2773 +Biological Process GO:0050996 positive regulation of lipid catabolic process 0.1071233684069689 0.4210758373092873 1.0 2774 +Biological Process GO:0010837 regulation of keratinocyte proliferation 0.10705992027184286 0.4203221695522128 1.0 2775 +Phenotype HP:0001739 Abnormal nasopharynx morphology 0.10704094010443888 0.42009671390772707 1.0 2776 +Phenotype HP:0002659 Increased susceptibility to fractures 0.10703169789092959 0.4199869304079897 1.0 2777 +Biological Process GO:1903350 response to dopamine 0.10697495045026195 0.4193128567532994 1.0 2778 +Biological Process GO:1903351 cellular response to dopamine 0.10697495045026195 0.4193128567532994 1.0 2778 +Phenotype HP:0012387 Bronchitis 0.10696381149406609 0.4191805428229433 1.0 2780 +Phenotype HP:0000872 Hashimoto thyroiditis 0.10696043982321202 0.41914049247938107 1.0 2781 +Phenotype HP:0030140 Oral cavity bleeding 0.10694964991602407 0.41901232472262623 1.0 2782 +Phenotype HP:0012114 Endometrial carcinoma 0.10692252657152967 0.4186901404666376 1.0 2783 +Biological Process GO:0003015 heart process 0.10687042138217617 0.4180712097271606 1.0 2784 +Phenotype HP:0005622 Broad long bones 0.10685135458774753 0.41784472508481313 1.0 2785 +Phenotype HP:0006532 Recurrent pneumonia 0.10679969617445717 0.41723110136835195 1.0 2786 +Biological Process GO:0003091 renal water homeostasis 0.10679925683058145 0.4172258826284671 1.0 2787 +Phenotype HP:0003565 Elevated erythrocyte sedimentation rate 0.10677510989607142 0.4169390536155064 1.0 2788 +Biological Process GO:1905906 regulation of amyloid fibril formation 0.10669836494897633 0.4160274398694278 1.0 2789 +Phenotype HP:0006315 Solitary median maxillary central incisor 0.10664968826415544 0.41544923457154304 1.0 2790 +Biological Process GO:0009755 hormone-mediated signaling pathway 0.10663026063094039 0.4152184637108807 1.0 2791 +Phenotype HP:0003077 Hyperlipidemia 0.10662841126723444 0.4151964960707994 1.0 2792 +Phenotype HP:0031065 Abnormal ovarian morphology 0.10662516849795733 0.41515797688275824 1.0 2793 +Biological Process GO:0007015 actin filament organization 0.10660637680797758 0.4149347600646351 1.0 2794 +Biological Process GO:0042359 vitamin D metabolic process 0.10657883048841377 0.414607551505391 1.0 2795 +Phenotype HP:0001281 Tetany 0.10652874524062161 0.414012614612588 1.0 2796 +Biological Process GO:0050901 leukocyte tethering or rolling 0.1065019736656404 0.4136946088456831 1.0 2797 +Phenotype HP:0011951 Aspiration pneumonia 0.10649210976946699 0.4135774406973953 1.0 2798 +Phenotype HP:0000348 High forehead 0.10648960211770331 0.41354765359212414 1.0 2799 +Disease MONDO:0017198 osteopetrosis 0.1064840858727314 0.413482128955865 1.0 2800 +Biological Process GO:0009617 response to bacterium 0.10647766884312626 0.41340590436234503 1.0 2801 +Phenotype HP:0011365 Patchy hypopigmentation of hair 0.10644191094945421 0.41298115473860925 1.0 2802 +Phenotype HP:0100571 Cardiac diverticulum 0.106439150999868 0.41294837071729573 1.0 2803 +Phenotype HP:0040140 Degeneration of the striatum 0.10640736080104285 0.412570751299516 1.0 2804 +Biological Process GO:0071695 anatomical structure maturation 0.10634792871286969 0.4118647880981904 1.0 2805 +Biological Process GO:1903707 negative regulation of hemopoiesis 0.10634579958521428 0.41183949728607455 1.0 2806 +Biological Process GO:0070371 ERK1 and ERK2 cascade 0.10633592646859313 0.4117222196128314 1.0 2807 +Biological Process GO:0072655 establishment of protein localization to mitochondrion 0.10627822075427407 0.4110367631184075 1.0 2808 +Biological Process GO:0097581 lamellipodium organization 0.10627401688865634 0.4109868275613598 1.0 2809 +Phenotype HP:0011280 Abnormality of urine calcium concentration 0.10625160249296384 0.4107205784857299 1.0 2810 +Disease MONDO:0021143 melanocytic neoplasm 0.10622421935510129 0.4103953082779684 1.0 2811 +Disease MONDO:0021583 melanocytic skin neoplasm 0.10622421935510129 0.4103953082779684 1.0 2811 +Disease MONDO:0005073 melanocytic nevus 0.10622421935510129 0.4103953082779684 1.0 2811 +Phenotype HP:0003401 Paresthesia 0.10622350594095198 0.41038683399829556 1.0 2814 +Phenotype HP:0002172 Postural instability 0.10616518266036856 0.40969404175191654 1.0 2815 +Phenotype HP:0003458 EMG 0.1061565745242512 0.40959179013132474 1.0 2816 +Phenotype HP:0033754 Abnormal left ventricular end-diastolic volume 0.10612402167957247 0.4092051116357838 1.0 2817 +Phenotype HP:0033755 Increased left ventricular end-diastolic volume 0.10612402167957247 0.4092051116357838 1.0 2817 +Biological Process GO:0016925 protein sumoylation 0.10606981743041666 0.4085612472447499 1.0 2819 +Biological Process GO:0042771 intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator 0.10600877399675879 0.4078361436993476 1.0 2820 +Biological Process GO:0090257 regulation of muscle system process 0.10592222208940982 0.4068080381174794 1.0 2821 +Biological Process GO:0033619 membrane protein proteolysis 0.10590369387312015 0.40658795096778005 1.0 2822 +Phenotype HP:0002164 Nail dysplasia 0.10588476312777406 0.4063630823824955 1.0 2823 +Phenotype HP:0010785 Gonadal neoplasm 0.10586520627339469 0.4061307765700984 1.0 2824 +Phenotype HP:0000618 Blindness 0.105848891598046 0.405936982934509 1.0 2825 +Phenotype HP:0100523 Liver abscess 0.10584100187048318 0.4058432649195604 1.0 2826 +Biological Process GO:0051169 nuclear transport 0.10582767872480481 0.40568500612597025 1.0 2827 +Biological Process GO:0010817 regulation of hormone levels 0.10582081335624849 0.40560345594469144 1.0 2828 +Phenotype HP:0025435 Increased circulating lactate dehydrogenase concentration 0.10581629778595625 0.40554981780816773 1.0 2829 +Biological Process GO:0099173 postsynapse organization 0.10576738433304744 0.404968800063969 1.0 2830 +Phenotype HP:0010931 Abnormal blood sodium concentration 0.10572126550808691 0.404420978267507 1.0 2831 +Phenotype HP:0030352 Abnormal serum insulin-like growth factor 1 level 0.10572089377499005 0.40441656264128273 1.0 2832 +Biological Process GO:0048771 tissue remodeling 0.10572000434531381 0.4044059975637145 1.0 2833 +Biological Process GO:0042542 response to hydrogen peroxide 0.10567848630384347 0.40391282610751766 1.0 2834 +Phenotype HP:0010640 Abnormal nasal cavity morphology 0.10562570461301357 0.4032858595550202 1.0 2835 +Phenotype HP:0004395 Malnutrition 0.10556534502433257 0.4025688790523028 1.0 2836 +Phenotype HP:0025452 Pyoderma gangrenosum 0.10554544325624993 0.40233247618746104 1.0 2837 +Phenotype HP:0002108 Spontaneous pneumothorax 0.10552580394439393 0.4020991909051183 1.0 2838 +Phenotype HP:0001955 Unexplained fevers 0.10552484202968193 0.40208776481509934 1.0 2839 +Biological Process GO:0006644 phospholipid metabolic process 0.10549881239541525 0.4017785721802604 1.0 2840 +Phenotype HP:0031013 Ankylosis 0.105495997292812 0.4017451330246302 1.0 2841 +Biological Process GO:0007411 axon guidance 0.10548033943682367 0.40155914140833004 1.0 2842 +Biological Process GO:0097485 neuron projection guidance 0.10548033943682367 0.40155914140833004 1.0 2842 +Biological Process GO:1903170 negative regulation of calcium ion transmembrane transport 0.10537993443550642 0.4003664820497609 1.0 2844 +Disease MONDO:0006424 soft tissue neoplasm 0.10537658452713394 0.40032669021152206 1.0 2845 +Phenotype HP:0009602 Abnormality of thumb phalanx 0.10537523861086673 0.40031070276457337 1.0 2846 +Biological Process GO:0032731 positive regulation of interleukin-1 beta production 0.10534866424786182 0.39999503957728183 1.0 2847 +Phenotype HP:0001233 2-3 finger syndactyly 0.10534804806745401 0.39998772028720364 1.0 2848 +Phenotype HP:0002150 Hypercalciuria 0.10529297963210038 0.3993335906728954 1.0 2849 +Phenotype HP:0001998 Neonatal hypoglycemia 0.10526895987524298 0.3990482723378454 1.0 2850 +Phenotype HP:0010696 Polar cataract 0.10526892342391714 0.3990478393512976 1.0 2851 +Phenotype HP:0003540 Impaired platelet aggregation 0.10526339588071076 0.39898218050912354 1.0 2852 +Phenotype HP:0003715 Myofibrillar myopathy 0.10523676365994938 0.398665830059307 1.0 2853 +Phenotype HP:0011867 Abnormal iliac wing morphology 0.10519293602759794 0.3981452241611733 1.0 2854 +Phenotype HP:0001407 Hepatic cysts 0.10518356348592628 0.3980338925602408 1.0 2855 +Phenotype HP:0000998 Hypertrichosis 0.1051442085060047 0.3975664149994222 1.0 2856 +Biological Process GO:0034248 regulation of amide metabolic process 0.1051205666711057 0.3972855858048988 1.0 2857 +Phenotype HP:0002270 Abnormality of the autonomic nervous system 0.10508387351824777 0.3968497267184263 1.0 2858 +Biological Process GO:1902745 positive regulation of lamellipodium organization 0.10507978875746904 0.39680120594648904 1.0 2859 +Biological Process GO:0032930 positive regulation of superoxide anion generation 0.10507267908168216 0.3967167537652992 1.0 2860 +Phenotype HP:0000704 Periodontitis 0.10501353476467823 0.3960142088496526 1.0 2861 +Phenotype HP:0000944 Abnormal metaphysis morphology 0.10499926828125272 0.3958447446322523 1.0 2862 +Biological Process GO:0018126 protein hydroxylation 0.10492166169995021 0.3949228959766804 1.0 2863 +Phenotype HP:0002574 Episodic abdominal pain 0.10489771456641928 0.3946384402967653 1.0 2864 +Biological Process GO:1901861 regulation of muscle tissue development 0.10479206827373855 0.3933835223344052 1.0 2865 +Phenotype HP:0000134 Female hypogonadism 0.10460642761279948 0.3911783924235916 1.0 2866 +Biological Process GO:0001935 endothelial cell proliferation 0.10457865033387193 0.3908484404168797 1.0 2867 +Biological Process GO:0032693 negative regulation of interleukin-10 production 0.10456164714488203 0.39064646828194355 1.0 2868 +Biological Process GO:0070664 negative regulation of leukocyte proliferation 0.10454956247085745 0.39050292065601266 1.0 2869 +Biological Process GO:0060271 cilium assembly 0.10453197322958274 0.3902939871074723 1.0 2870 +Biological Process GO:0045724 positive regulation of cilium assembly 0.10452255876352035 0.3901821575082697 1.0 2871 +Biological Process GO:2000392 regulation of lamellipodium morphogenesis 0.10451655870332788 0.3901108858798982 1.0 2872 +Phenotype HP:0002155 Hypertriglyceridemia 0.1044740629302352 0.3896061004527413 1.0 2873 +Phenotype HP:0100803 Abnormality of the periungual region 0.10443443648624362 0.3891353983098864 1.0 2874 +Phenotype HP:0000359 Abnormality of the inner ear 0.10443240194973402 0.3891112310973304 1.0 2875 +Phenotype HP:0010994 Abnormal corpus striatum morphology 0.10441203495362639 0.38886930202811043 1.0 2876 +Biological Process GO:0050772 positive regulation of axonogenesis 0.10437247176210951 0.3883993512288631 1.0 2877 +Phenotype HP:0031292 Cutaneous abscess 0.10437167475068665 0.38838988394018337 1.0 2878 +Biological Process GO:0010952 positive regulation of peptidase activity 0.10432512287668871 0.38783691817698257 1.0 2879 +Biological Process GO:0072089 stem cell proliferation 0.10426050251726648 0.3870693261705296 1.0 2880 +Phenotype HP:0002861 Melanoma 0.10420211912917154 0.3863758199379427 1.0 2881 +Phenotype HP:0011193 EEG with focal spikes 0.10416493120047687 0.3859340836638366 1.0 2882 +Phenotype HP:0004386 Gastrointestinal inflammation 0.10415873913119711 0.38586053125829367 1.0 2883 +Phenotype HP:0002170 Intracranial hemorrhage 0.1041110903935688 0.3852945364162953 1.0 2884 +Phenotype HP:0001928 Abnormality of coagulation 0.10410872244488933 0.385266408772093 1.0 2885 +Phenotype HP:0002900 Hypokalemia 0.1041075721009651 0.38525274442839696 1.0 2886 +Phenotype HP:0004890 Elevated pulmonary artery pressure 0.10408409017053133 0.3849738146567551 1.0 2887 +Disease MONDO:0002406 dermatitis 0.10407430108390847 0.38485753513263354 1.0 2888 +Biological Process GO:0071383 cellular response to steroid hormone stimulus 0.10399957211462008 0.3839698681498264 1.0 2889 +Phenotype HP:0002613 Biliary cirrhosis 0.10398701357120721 0.3838206916732082 1.0 2890 +Biological Process GO:0051260 protein homooligomerization 0.10395040013302148 0.38338577947631847 1.0 2891 +Biological Process GO:1900015 regulation of cytokine production involved in inflammatory response 0.10392612991985817 0.38309748609965455 1.0 2892 +Disease MONDO:0018614 undetermined early-onset epileptic encephalopathy 0.10384808599481521 0.3821704424627758 1.0 2893 +Phenotype HP:0100526 Neoplasm of the lung 0.1038342485149969 0.38200607415852994 1.0 2894 +Biological Process GO:0060048 cardiac muscle contraction 0.10382548844775075 0.38190201782621835 1.0 2895 +Biological Process GO:0086004 regulation of cardiac muscle cell contraction 0.10380356891551001 0.3816416469789558 1.0 2896 +Biological Process GO:0090130 tissue migration 0.10380199280751756 0.38162292520292224 1.0 2897 +Biological Process GO:0010631 epithelial cell migration 0.10380199280751756 0.38162292520292224 1.0 2897 +Biological Process GO:0090132 epithelium migration 0.10380199280751756 0.38162292520292224 1.0 2897 +Phenotype HP:0002043 Esophageal stricture 0.10380152284953681 0.38161734281383275 1.0 2900 +Biological Process GO:0039532 negative regulation of cytoplasmic pattern recognition receptor signaling pathway 0.10376443449824535 0.38117678936847305 1.0 2901 +Phenotype HP:0031058 Impairment of activities of daily living 0.10374847513287377 0.380987216277317 1.0 2902 +Phenotype HP:0001216 Delayed ossification of carpal bones 0.10373035562310617 0.3807719839421395 1.0 2903 +Biological Process GO:0051225 spindle assembly 0.10371075451370115 0.3805391524470592 1.0 2904 +Biological Process GO:0010332 response to gamma radiation 0.1036952998418248 0.3803555743502997 1.0 2905 +Phenotype HP:0040327 Abnormal morphology of the olfactory bulb 0.10365743706012054 0.3799058218444623 1.0 2906 +Phenotype HP:0100606 Neoplasm of the respiratory system 0.10357403791264996 0.37891516627529215 1.0 2907 +Phenotype HP:0030917 Low APGAR score 0.10353858596652998 0.37849405084513654 1.0 2908 +Biological Process GO:0014902 myotube differentiation 0.10350998118175647 0.37815426932218044 1.0 2909 +Phenotype HP:0011885 Hemorrhage of the eye 0.10350823698399547 0.37813355089425793 1.0 2910 +Biological Process GO:0014013 regulation of gliogenesis 0.1034577098607875 0.3775333651907077 1.0 2911 +Phenotype HP:0000327 Hypoplasia of the maxilla 0.10345681914241145 0.37752278480533724 1.0 2912 +Phenotype HP:0009832 Abnormal distal phalanx morphology of finger 0.1033998111278096 0.37684561592693144 1.0 2913 +Phenotype HP:0100576 Amaurosis fugax 0.10337509967904246 0.3765520813395177 1.0 2914 +Phenotype HP:0010807 Open bite 0.1033599588114491 0.37637223076240334 1.0 2915 +Phenotype HP:0011360 Acquired abnormal hair pattern 0.10331461500003936 0.37583361495321516 1.0 2916 +Biological Process GO:0001503 ossification 0.10329267807890852 0.3755730375522725 1.0 2917 +Phenotype HP:0007642 Congenital stationary night blindness 0.1032528596018798 0.37510005434775845 1.0 2918 +Biological Process GO:0032652 regulation of interleukin-1 production 0.10324887300275987 0.37505269958766807 1.0 2919 +Phenotype HP:0012086 Abnormal urinary color 0.10323794844426348 0.37492293237729 1.0 2920 +Biological Process GO:0090263 positive regulation of canonical Wnt signaling pathway 0.10321490355137752 0.3746491939498503 1.0 2921 +Phenotype HP:0002726 Recurrent Staphylococcus aureus infections 0.10319059571868594 0.37436045371016297 1.0 2922 +Biological Process GO:0035821 modulation of process of another organism 0.10314280089817818 0.37379272362479 1.0 2923 +Biological Process GO:0043297 apical junction assembly 0.10313382378491343 0.37368608911448 1.0 2924 +Phenotype HP:0010669 Hypoplasia of the zygomatic bone 0.10311511994622069 0.3734639158366014 1.0 2925 +Biological Process GO:0018209 peptidyl-serine modification 0.10310567008663685 0.3733516658159652 1.0 2926 +Biological Process GO:0071241 cellular response to inorganic substance 0.10307851099752241 0.37302905696802346 1.0 2927 +Phenotype HP:0009792 Teratoma 0.1030712988576521 0.3729433876686978 1.0 2928 +Phenotype HP:0005989 Redundant neck skin 0.10300541658225248 0.3721608060115261 1.0 2929 +Biological Process GO:0010950 positive regulation of endopeptidase activity 0.10299605122752953 0.37204955978065996 1.0 2930 +Phenotype HP:0031865 Abnormal liver physiology 0.10294749878749831 0.37147283032271566 1.0 2931 +Disease MONDO:0019751 autoinflammatory syndrome 0.10293716142081788 0.37135003806184586 1.0 2932 +Phenotype HP:0011044 Abnormal number of permanent teeth 0.10292725139159808 0.3712323219228326 1.0 2933 +Biological Process GO:0090092 regulation of transmembrane receptor protein serine/threonine kinase signaling pathway 0.10292080902169254 0.3711557963249201 1.0 2934 +Biological Process GO:0002009 morphogenesis of an epithelium 0.10288875087398275 0.37077499408018266 1.0 2935 +Biological Process GO:0071357 cellular response to type I interferon 0.10284910492144905 0.3703040602053919 1.0 2936 +Biological Process GO:0031279 regulation of cyclase activity 0.10283966262890998 0.3701919000697878 1.0 2937 +Phenotype HP:0008372 Abnormal circulating vitamin A concentration 0.10283759634300649 0.3701673557225148 1.0 2938 +Phenotype HP:0002092 Pulmonary arterial hypertension 0.10281141869051236 0.369856404855298 1.0 2939 +Phenotype HP:0033578 Pre-capillary pulmonary hypertension 0.10281141869051236 0.369856404855298 1.0 2939 +Phenotype HP:0001591 Bell-shaped thorax 0.1027821288280325 0.3695084856466978 1.0 2941 +Phenotype HP:0000796 Urethral obstruction 0.10273022424053635 0.3688919377534872 1.0 2942 +Phenotype HP:0003139 Panhypogammaglobulinemia 0.10271137547471698 0.3686680429608272 1.0 2943 +Biological Process GO:0002396 MHC protein complex assembly 0.102708199128144 0.36863031277391795 1.0 2944 +Biological Process GO:0002501 peptide antigen assembly with MHC protein complex 0.102708199128144 0.36863031277391795 1.0 2944 +Phenotype HP:0000641 Dysmetric saccades 0.10269827033341283 0.3685123737290489 1.0 2946 +Phenotype HP:0002691 Platybasia 0.10269411248891225 0.36846298483317674 1.0 2947 +Phenotype HP:0010059 Broad hallux phalanx 0.10267234790704338 0.36820445456166934 1.0 2948 +Phenotype HP:0007460 Autoamputation of digits 0.10266931577276195 0.3681684373983832 1.0 2949 +Biological Process GO:0045736 negative regulation of cyclin-dependent protein serine/threonine kinase activity 0.10265709816996738 0.36802331077997713 1.0 2950 +Biological Process GO:0090199 regulation of release of cytochrome c from mitochondria 0.10264269430959616 0.3678522147325106 1.0 2951 +Biological Process GO:0090051 negative regulation of cell migration involved in sprouting angiogenesis 0.10262983471932763 0.3676994622751637 1.0 2952 +Phenotype HP:0006254 Elevated circulating alpha-fetoprotein concentration 0.10261420576609992 0.36751381397988836 1.0 2953 +Biological Process GO:0021953 central nervous system neuron differentiation 0.10261396219817753 0.3675109207618387 1.0 2954 +Phenotype HP:0008386 Aplasia/Hypoplasia of the nails 0.10257466666357051 0.36704414932133095 1.0 2955 +Biological Process GO:0009749 response to glucose 0.10255034522322182 0.366755247443285 1.0 2956 +Biological Process GO:0009746 response to hexose 0.10255034522322182 0.366755247443285 1.0 2956 +Biological Process GO:0034284 response to monosaccharide 0.10255034522322182 0.366755247443285 1.0 2956 +Phenotype HP:0009778 Short thumb 0.10253350607358036 0.366555223847381 1.0 2959 +Biological Process GO:0051988 regulation of attachment of spindle microtubules to kinetochore 0.10250717275074539 0.366242423852268 1.0 2960 +Phenotype HP:0033834 Malaise 0.10249157000885056 0.3660570869079319 1.0 2961 +Biological Process GO:0060047 heart contraction 0.10247218076255693 0.36582677202576147 1.0 2962 +Phenotype HP:0000220 Velopharyngeal insufficiency 0.10245693612368034 0.36564568880295745 1.0 2963 +Biological Process GO:0030098 lymphocyte differentiation 0.10244688123723145 0.3655262519794397 1.0 2964 +Biological Process GO:2001140 positive regulation of phospholipid transport 0.10244327604815318 0.3654834277930227 1.0 2965 +Phenotype HP:0000395 Prominent antihelix 0.1024291277038083 0.365315366888986 1.0 2966 +Biological Process GO:0045058 T cell selection 0.10240861559502668 0.3650717141009631 1.0 2967 +Phenotype HP:0012294 Abnormal occipital bone morphology 0.1023537239078759 0.3644196839876307 1.0 2968 +Phenotype HP:0010647 Abnormal elasticity of skin 0.10234286552429017 0.3642907028349735 1.0 2969 +Biological Process GO:0071480 cellular response to gamma radiation 0.10230331266588621 0.36382087477745884 1.0 2970 +Phenotype HP:0007720 Flat cornea 0.10228976709603965 0.363659973921598 1.0 2971 +Biological Process GO:0032516 positive regulation of phosphoprotein phosphatase activity 0.1022710618016367 0.36343778335208654 1.0 2972 +Phenotype HP:0011217 Abnormal shape of the occiput 0.1022697991251037 0.36342278466711897 1.0 2973 +Biological Process GO:0050746 regulation of lipoprotein metabolic process 0.10226849924058634 0.3634073440076464 1.0 2974 +Phenotype HP:0100780 Conjunctival hamartoma 0.1022659525149141 0.3633770927635166 1.0 2975 +Phenotype HP:0004905 Reduced circulating vitamin A concentration 0.10226314458649466 0.3633437388263251 1.0 2976 +Phenotype HP:0000326 Abnormal maxilla morphology 0.10222856795602842 0.36293302082052525 1.0 2977 +Biological Process GO:0097553 calcium ion transmembrane import into cytosol 0.10221832386568885 0.36281133654132386 1.0 2978 +Biological Process GO:0060324 face development 0.10219185045797285 0.36249687254997404 1.0 2979 +Biological Process GO:0045596 negative regulation of cell differentiation 0.10216984069821466 0.36223542993644803 1.0 2980 +Phenotype HP:0005595 Generalized hyperkeratosis 0.10216870406923029 0.362221928505467 1.0 2981 +Phenotype HP:0010161 Abnormal toe phalanx morphology 0.10213373260907666 0.36180652052092577 1.0 2982 +Biological Process GO:1901163 regulation of trophoblast cell migration 0.10207786355562232 0.36114288077606704 1.0 2983 +Biological Process GO:1900047 negative regulation of hemostasis 0.10207046608540282 0.36105501003286433 1.0 2984 +Biological Process GO:0030195 negative regulation of blood coagulation 0.10207046608540282 0.36105501003286433 1.0 2984 +Biological Process GO:0071346 cellular response to type II interferon 0.10206633512963892 0.36100594053446267 1.0 2986 +Phenotype HP:0001639 Hypertrophic cardiomyopathy 0.10205839439653475 0.3609116166509275 1.0 2987 +Phenotype HP:0001806 Onycholysis 0.10204145519162855 0.3607104045500058 1.0 2988 +Biological Process GO:0060429 epithelium development 0.10201055831662509 0.36034339646634483 1.0 2989 +Phenotype HP:0000757 Lack of insight 0.10196202711173818 0.3597669192497556 1.0 2990 +Biological Process GO:0019883 antigen processing and presentation of endogenous antigen 0.1018996018132875 0.3590254012433623 1.0 2991 +Biological Process GO:0050819 negative regulation of coagulation 0.10188777782366609 0.358884950153351 1.0 2992 +Biological Process GO:0010591 regulation of lamellipodium assembly 0.10188585572431841 0.35886211852399946 1.0 2993 +Phenotype HP:0002300 Mutism 0.1018809902881922 0.3588043245112181 1.0 2994 +Phenotype HP:0002110 Bronchiectasis 0.10183081619183365 0.3582083322320019 1.0 2995 +Phenotype HP:0200160 Agenesis of maxillary incisor 0.1017887341539152 0.3577084613521389 1.0 2996 +Phenotype HP:0001977 Abnormal thrombosis 0.1017844304466956 0.35765733982806486 1.0 2997 +Phenotype HP:0009773 Symphalangism affecting the phalanges of the hand 0.10175010926734118 0.3572496561946087 1.0 2998 +Phenotype HP:0001052 Nevus flammeus 0.10173361368397982 0.3570537136458025 1.0 2999 +Phenotype HP:4000079 Sensory seeking 0.10172152564903492 0.35691012609722816 1.0 3000 +Biological Process GO:0051642 centrosome localization 0.10171305112510298 0.356809461587052 1.0 3001 +Biological Process GO:0061842 microtubule organizing center localization 0.10171305112510298 0.356809461587052 1.0 3001 +Biological Process GO:0062013 positive regulation of small molecule metabolic process 0.10170781251583394 0.3567472348424811 1.0 3003 +Biological Process GO:0010874 regulation of cholesterol efflux 0.10169896023483349 0.35664208315042034 1.0 3004 +Phenotype HP:0004279 Short palm 0.10166513052059212 0.35624023737821414 1.0 3005 +Biological Process GO:1905145 cellular response to acetylcholine 0.10160776181061204 0.35555878398496543 1.0 3006 +Biological Process GO:0095500 acetylcholine receptor signaling pathway 0.10160776181061204 0.35555878398496543 1.0 3006 +Phenotype HP:0002374 Diminished movement 0.10158348178939236 0.3552703741034456 1.0 3008 +Biological Process GO:0048675 axon extension 0.10153706278700647 0.35471898665377016 1.0 3009 +Phenotype HP:0002105 Hemoptysis 0.10150885029331147 0.3543838649547265 1.0 3010 +Phenotype HP:0002100 Recurrent aspiration pneumonia 0.10150126007347426 0.3542937046379726 1.0 3011 +Phenotype HP:0012340 Decreased resting energy expenditure 0.10149395468789102 0.3542069277207921 1.0 3012 +Biological Process GO:0098926 postsynaptic signal transduction 0.10148764696060553 0.354132001473298 1.0 3013 +Biological Process GO:0030834 regulation of actin filament depolymerization 0.101462090751542 0.35382843241289974 1.0 3014 +Phenotype HP:0040217 Elevated hemoglobin A1c 0.10127454277502701 0.35160064648155404 1.0 3015 +Phenotype HP:0000389 Chronic otitis media 0.10122673815184036 0.35103279995520137 1.0 3016 +Biological Process GO:0051154 negative regulation of striated muscle cell differentiation 0.10120564069342775 0.35078219410003764 1.0 3017 +Phenotype HP:0100333 Unilateral cleft lip 0.10116952006276958 0.35035313571024923 1.0 3018 +Phenotype HP:0011902 Abnormal hemoglobin 0.10114130848565928 0.35001802489884365 1.0 3019 +Phenotype HP:0004428 Elfin facies 0.10112403902672606 0.34981288988023 1.0 3020 +Disease MONDO:0019050 inherited hemoglobinopathy 0.10106513176648257 0.34911316083988986 1.0 3021 +Disease MONDO:0044348 hemoglobinopathy 0.10106513176648257 0.34911316083988986 1.0 3021 +Disease MONDO:0044347 erythrocyte disorder 0.10106513176648257 0.34911316083988986 1.0 3021 +Phenotype HP:0001738 Exocrine pancreatic insufficiency 0.10104836403454187 0.3489139855781131 1.0 3024 +Phenotype HP:0045040 Abnormal circulating lactate dehydrogenase concentration 0.1010326894332535 0.3487277950530082 1.0 3025 +Phenotype HP:0012768 Neonatal asphyxia 0.10100688448803163 0.3484212713837442 1.0 3026 +Phenotype HP:0001162 Postaxial hand polydactyly 0.10097112238878247 0.34799647180412147 1.0 3027 +Phenotype HP:0033151 Abnormal pharynx morphology 0.1008495605543156 0.3465525013084321 1.0 3028 +Phenotype HP:0005474 Decreased calvarial ossification 0.1008429289084134 0.34647372739832594 1.0 3029 +Phenotype HP:0000855 Insulin resistance 0.10081792654222632 0.34617673715253955 1.0 3030 +Biological Process GO:1901020 negative regulation of calcium ion transmembrane transporter activity 0.10077319018411546 0.3456453369685922 1.0 3031 +Phenotype HP:0008066 Abnormal blistering of the skin 0.10077063974812073 0.3456150416514502 1.0 3032 +Biological Process GO:0070830 bicellular tight junction assembly 0.10076437982155595 0.34554068320412695 1.0 3033 +Phenotype HP:0002730 Chronic noninfectious lymphadenopathy 0.10069851705707578 0.3447583333071301 1.0 3034 +Phenotype HP:0001541 Ascites 0.10065446493930696 0.34423506086220723 1.0 3035 +Biological Process GO:0007204 positive regulation of cytosolic calcium ion concentration 0.10061562901409538 0.34377374888526757 1.0 3036 +Biological Process GO:0051963 regulation of synapse assembly 0.10049903471296584 0.342388785162608 1.0 3037 +Phenotype HP:0001723 Restrictive cardiomyopathy 0.10049384822059548 0.34232717748786573 1.0 3038 +Biological Process GO:0051606 detection of stimulus 0.10044353072489898 0.3417294818416839 1.0 3039 +Phenotype HP:0020073 Hypopigmented macule 0.10041777692145937 0.341423565659342 1.0 3040 +Biological Process GO:1903901 negative regulation of viral life cycle 0.10041145178189514 0.3413484325803464 1.0 3041 +Phenotype HP:0000137 Abnormality of the ovary 0.1004039712880358 0.34125957564203635 1.0 3042 +Biological Process GO:0070301 cellular response to hydrogen peroxide 0.10038516360145788 0.3410361688085529 1.0 3043 +Biological Process GO:0034314 Arp2/3 complex-mediated actin nucleation 0.10035212907775615 0.34064376869569135 1.0 3044 +Phenotype HP:0000982 Palmoplantar keratoderma 0.10034095480196015 0.340511035221975 1.0 3045 +Biological Process GO:2000649 regulation of sodium ion transmembrane transporter activity 0.10031791258482148 0.3402373285783609 1.0 3046 +Phenotype HP:0001641 Abnormal pulmonary valve morphology 0.10030486885788803 0.3400823888562982 1.0 3047 +Biological Process GO:0051276 chromosome organization 0.10030128613293754 0.34003983150969874 1.0 3048 +Biological Process GO:1901201 regulation of extracellular matrix assembly 0.10028731424031045 0.33987386658484436 1.0 3049 +Biological Process GO:0034101 erythrocyte homeostasis 0.10027342934817773 0.3397089350941063 1.0 3050 +Phenotype HP:0001832 Abnormal metatarsal morphology 0.10025793906403091 0.3395249339775062 1.0 3051 +Biological Process GO:0016579 protein deubiquitination 0.10025026698280826 0.33943380127146716 1.0 3052 +Biological Process GO:0006873 intracellular monoatomic ion homeostasis 0.10022952735523483 0.3391874459047605 1.0 3053 +Biological Process GO:0051607 defense response to virus 0.10022007804472377 0.33907520240627753 1.0 3054 +Biological Process GO:0098900 regulation of action potential 0.10019877343813155 0.338822135944453 1.0 3055 +Phenotype HP:0011993 Impaired neutrophil bactericidal activity 0.100175252911898 0.33854274771316073 1.0 3056 +Phenotype HP:0030151 Cholangitis 0.10013108875782706 0.3380181444466405 1.0 3057 +Phenotype HP:0000419 Abnormal nasal septum morphology 0.10006265421488014 0.3372052457162561 1.0 3058 +Biological Process GO:1902931 negative regulation of alcohol biosynthetic process 0.10005388835742102 0.3371011206049832 1.0 3059 +Phenotype HP:0007400 Irregular hyperpigmentation 0.10004640527356534 0.33701223290143917 1.0 3060 +Disease MONDO:0700007 idiopathic disease 0.10004493669453873 0.3369947884066739 1.0 3061 +Phenotype HP:0034674 Abnormal ankle physiology 0.10004291933447862 0.3369708252243251 1.0 3062 +Biological Process GO:0032647 regulation of interferon-alpha production 0.10002037741765935 0.3367030613908319 1.0 3063 +Biological Process GO:0060765 regulation of androgen receptor signaling pathway 0.09999148232333 0.3363598314300081 1.0 3064 +Phenotype HP:0008065 Aplasia/Hypoplasia of the skin 0.09997804503004826 0.3362002167357593 1.0 3065 +Biological Process GO:0034114 regulation of heterotypic cell-cell adhesion 0.09990492383586536 0.3353316476863308 1.0 3066 +Biological Process GO:1902930 regulation of alcohol biosynthetic process 0.09989422839425743 0.33520460203760444 1.0 3067 +Biological Process GO:0003170 heart valve development 0.09989228517866966 0.33518151957929987 1.0 3068 +Biological Process GO:0003179 heart valve morphogenesis 0.09989228517866966 0.33518151957929987 1.0 3068 +Phenotype HP:0009617 Abnormality of the distal phalanx of the thumb 0.09981886719981348 0.3343094251774146 1.0 3070 +Biological Process GO:0030397 membrane disassembly 0.09981127786421506 0.33421927536407836 1.0 3071 +Biological Process GO:0051081 nuclear membrane disassembly 0.09981127786421506 0.33421927536407836 1.0 3071 +Biological Process GO:0055123 digestive system development 0.09980514440839938 0.33414641919772237 1.0 3073 +Biological Process GO:0048565 digestive tract development 0.09980514440839938 0.33414641919772237 1.0 3073 +Biological Process GO:0030837 negative regulation of actin filament polymerization 0.09978959206566484 0.3339616809190841 1.0 3075 +Phenotype HP:0033072 Abnormal macroscopic urine appearance 0.09977224145094898 0.3337555818926779 1.0 3076 +Phenotype HP:0002818 Abnormal morphology of the radius 0.09975089178529872 0.33350198019748295 1.0 3077 +Phenotype HP:0001291 Abnormal cranial nerve morphology 0.09974435762861977 0.3334243643117077 1.0 3078 +Biological Process GO:0006919 activation of cysteine-type endopeptidase activity involved in apoptotic process 0.0997116569367471 0.3330359296154081 1.0 3079 +Phenotype HP:0002643 Neonatal respiratory distress 0.09969709744329325 0.3328629848826163 1.0 3080 +Biological Process GO:0050673 epithelial cell proliferation 0.09969589882125829 0.33284874706807893 1.0 3081 +Biological Process GO:0070304 positive regulation of stress-activated protein kinase signaling cascade 0.099681004395339 0.33267182384483207 1.0 3082 +Phenotype HP:0031064 Impaired continence 0.09962346074501305 0.33198829242521055 1.0 3083 +Phenotype HP:5200242 Cognitive distortion 0.09958612218108409 0.3315447668326487 1.0 3084 +Phenotype HP:0010055 Broad hallux 0.09955642173017842 0.33119197045536025 1.0 3085 +Biological Process GO:0045930 negative regulation of mitotic cell cycle 0.09954139125669748 0.3310134311931164 1.0 3086 +Phenotype HP:0001621 Weak voice 0.09939765624795194 0.32930607696687886 1.0 3087 +Phenotype HP:0001897 Normocytic anemia 0.09937621298189558 0.3290513634406115 1.0 3088 +Phenotype HP:0001426 Non-Mendelian inheritance 0.09937015821511852 0.32897944198086465 1.0 3089 +Phenotype HP:5200329 Problematic alcohol consumption 0.09933424805058 0.32855288360983986 1.0 3090 +Phenotype HP:0430037 Abnormal alcohol consumption 0.09933424805058 0.32855288360983986 1.0 3090 +Phenotype HP:0030955 Addictive alcohol use 0.09933424805058 0.32855288360983986 1.0 3090 +Phenotype HP:0007340 Lower limb muscle weakness 0.09932875352998716 0.3284876170263039 1.0 3093 +Biological Process GO:2000378 negative regulation of reactive oxygen species metabolic process 0.09932605244943704 0.3284555322799857 1.0 3094 +Disease MONDO:0100455 neonatal-onset developmental and epileptic encephalopathy 0.09925728596162742 0.3276386905473419 1.0 3095 +Phenotype HP:0033726 Lupus nephritis 0.09924174871780433 0.32745413162090536 1.0 3096 +Phenotype HP:0000643 Blepharospasm 0.09921650856158837 0.3271543167896939 1.0 3097 +Biological Process GO:0031952 regulation of protein autophosphorylation 0.09920947963426396 0.3270708237779497 1.0 3098 +Biological Process GO:1902916 positive regulation of protein polyubiquitination 0.09915750074697038 0.3264533933156681 1.0 3099 +Phenotype HP:0030796 Increased C-peptide level 0.0991309612849457 0.3261381446991662 1.0 3100 +Biological Process GO:0033273 response to vitamin 0.09907382807140186 0.3254594886469354 1.0 3101 +Biological Process GO:1901028 regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway 0.09904242819893494 0.32508650571516673 1.0 3102 +Phenotype HP:0004389 Intestinal pseudo-obstruction 0.09903650065703229 0.3250160954942538 1.0 3103 +Biological Process GO:0051294 establishment of spindle orientation 0.09901163989579231 0.3247207873007872 1.0 3104 +Biological Process GO:0016045 detection of bacterium 0.09898551499202157 0.32441046300851967 1.0 3105 +Biological Process GO:1902116 negative regulation of organelle assembly 0.09897735813223907 0.3243135718673563 1.0 3106 +Biological Process GO:0030001 metal ion transport 0.09896531739767522 0.3241705461756754 1.0 3107 +Biological Process GO:0019216 regulation of lipid metabolic process 0.09894444209999931 0.3239225792536152 1.0 3108 +Biological Process GO:0043949 regulation of cAMP-mediated signaling 0.09891658908330503 0.3235917275969347 1.0 3109 +Phenotype HP:0000191 Accessory oral frenulum 0.09891397727662621 0.32356070328900777 1.0 3110 +Biological Process GO:1904030 negative regulation of cyclin-dependent protein kinase activity 0.09889140051877199 0.323292525596784 1.0 3111 +Biological Process GO:0007602 phototransduction 0.09888759451565454 0.3232473160437018 1.0 3112 +Phenotype HP:0001419 X-linked recessive inheritance 0.098885632664657 0.32322401222495134 1.0 3113 +Phenotype HP:0032260 Opportunistic bacterial infection 0.09884157935033544 0.32270072556679397 1.0 3114 +Phenotype HP:0033118 Abnormal right ventricular function 0.09882153752677403 0.3224626590549697 1.0 3115 +Biological Process GO:0060340 positive regulation of type I interferon-mediated signaling pathway 0.09879433303262941 0.3221395108640324 1.0 3116 +Phenotype HP:0004372 Reduced consciousness 0.09879151774350814 0.3221060694928506 1.0 3117 +Biological Process GO:1904706 negative regulation of vascular associated smooth muscle cell proliferation 0.0987022396873839 0.3210455813921135 1.0 3118 +Biological Process GO:0044790 suppression of viral release by host 0.09869598409269165 0.32097127440087553 1.0 3119 +Biological Process GO:0002832 negative regulation of response to biotic stimulus 0.09867672973683628 0.3207425618128285 1.0 3120 +Phenotype HP:0003457 EMG abnormality 0.0986499607451321 0.32042458673134266 1.0 3121 +Biological Process GO:0032740 positive regulation of interleukin-17 production 0.09862170554059979 0.3200889576922346 1.0 3122 +Phenotype HP:0040087 Abnormal blood folate concentration 0.09859741408891998 0.3198004120341591 1.0 3123 +Phenotype HP:0100273 Neoplasm of the colon 0.09858812028783037 0.31969001575209366 1.0 3124 +Phenotype HP:0006323 Premature loss of primary teeth 0.09855090425981805 0.3192479457006485 1.0 3125 +Phenotype HP:0002133 Status epilepticus 0.09842011262063266 0.3176943391028638 1.0 3126 +Phenotype HP:0000044 Hypogonadotropic hypogonadism 0.09840973264050867 0.31757104065882 1.0 3127 +Biological Process GO:0008053 mitochondrial fusion 0.09828178370134155 0.3160512010321614 1.0 3128 +Biological Process GO:0051298 centrosome duplication 0.09826128478816765 0.3158077049879743 1.0 3129 +Phenotype HP:0011195 EEG with focal sharp slow waves 0.09824186345650743 0.3155770089802401 1.0 3130 +Phenotype HP:0007417 Discoid lupus rash 0.09822466885800296 0.31537276319014845 1.0 3131 +Phenotype HP:0010930 Abnormal blood monovalent inorganic cation concentration 0.09820249087215593 0.3151093223054549 1.0 3132 +Phenotype HP:0010920 Zonular cataract 0.09819569935134254 0.31502864932352426 1.0 3133 +Biological Process GO:1901879 regulation of protein depolymerization 0.09818866493042844 0.31494509105625423 1.0 3134 +Biological Process GO:0010656 negative regulation of muscle cell apoptotic process 0.09816913898408186 0.3147131523844785 1.0 3135 +Phenotype HP:0004334 Dermal atrophy 0.09814299520465175 0.3144026038779637 1.0 3136 +Phenotype HP:0000677 Oligodontia 0.09811835397431257 0.3141099033791327 1.0 3137 +Phenotype HP:0100744 Abnormality of the humeroradial joint 0.09800287740487534 0.31273821661624324 1.0 3138 +Biological Process GO:0042113 B cell activation 0.09799541621713981 0.31264958900544615 1.0 3139 +Biological Process GO:0040001 establishment of mitotic spindle localization 0.09794007363493917 0.3119922029417737 1.0 3140 +Phenotype HP:0002145 Frontotemporal dementia 0.09789942225324144 0.3115093260911737 1.0 3141 +Phenotype HP:0009088 Speech articulation difficulties 0.0978722700293928 0.31118679879219263 1.0 3142 +Phenotype HP:0000179 Thick lower lip vermilion 0.09787127096749781 0.3111749314498968 1.0 3143 +Phenotype HP:0000746 Delusion 0.09786563925684222 0.31110803525618097 1.0 3144 +Disease MONDO:0021003 polydactyly 0.09780734696639892 0.31041561112573396 1.0 3145 +Phenotype HP:0010851 EEG with burst suppression 0.09780367058621664 0.3103719412968157 1.0 3146 +Biological Process GO:0042104 positive regulation of activated T cell proliferation 0.09775555946020653 0.30980045398109973 1.0 3147 +Phenotype HP:0003028 Abnormality of the ankle 0.0977521878022628 0.3097604037908928 1.0 3148 +Phenotype HP:0002180 Neurodegeneration 0.09774606784384887 0.30968770795322864 1.0 3149 +Biological Process GO:0007031 peroxisome organization 0.0976467522888872 0.3085079895674655 1.0 3150 +Phenotype HP:0009823 Aplasia involving bones of the upper limbs 0.0976199442453689 0.30818955060956943 1.0 3151 +Phenotype HP:0009802 Aplasia of the phalanges of the hand 0.0976199442453689 0.30818955060956943 1.0 3151 +Phenotype HP:0007374 Atrophy/Degeneration involving the caudate nucleus 0.09759905398934332 0.30794140600496855 1.0 3153 +Phenotype HP:0002366 Abnormal lower motor neuron morphology 0.09758603948391054 0.3077868133900796 1.0 3154 +Phenotype HP:0010996 Abnormal circulating monocarboxylic acid concentration 0.09752549665720323 0.3070676562971122 1.0 3155 +Phenotype HP:0002645 Wormian bones 0.0975183905109156 0.3069832460410282 1.0 3156 +Phenotype HP:0001399 Hepatic failure 0.09747879767130885 0.30651294306737337 1.0 3157 +Phenotype HP:0030348 Increased circulating androgen concentration 0.09742959018750408 0.30592843268142195 1.0 3158 +Phenotype HP:0200097 Oral mucosal blisters 0.09739753969408305 0.30554772135804303 1.0 3159 +Phenotype HP:0011662 Tricuspid atresia 0.09738604511239246 0.30541118313538224 1.0 3160 +Phenotype HP:0002340 Caudate atrophy 0.09737776211286409 0.30531279364506864 1.0 3161 +Phenotype HP:0005376 Recurrent Haemophilus influenzae infections 0.09729751627975358 0.3043595946749992 1.0 3162 +Phenotype HP:0004490 Calvarial hyperostosis 0.09726347309170413 0.3039552131572458 1.0 3163 +Phenotype HP:0004493 Craniofacial hyperostosis 0.09724614054804237 0.30374932878759475 1.0 3164 +Biological Process GO:0006816 calcium ion transport 0.09719486965221891 0.30314030819176935 1.0 3165 +Phenotype HP:0030148 Heart murmur 0.09717371615306991 0.3028890366575276 1.0 3166 +Phenotype HP:0003493 Antinuclear antibody positivity 0.09716624259284712 0.30280026208031924 1.0 3167 +Biological Process GO:0030218 erythrocyte differentiation 0.0971413634099445 0.3025047350653989 1.0 3168 +Phenotype HP:0002003 Large forehead 0.0971369645775535 0.30245248359834964 1.0 3169 +Phenotype HP:0010765 Palmar hyperkeratosis 0.09706788113889975 0.3016318769696798 1.0 3170 +Phenotype HP:0033799 Abnormal circulating sex hormone concentration 0.09705539988122447 0.30148361853057976 1.0 3171 +Biological Process GO:0072332 intrinsic apoptotic signaling pathway by p53 class mediator 0.0970386197100932 0.3012842955100575 1.0 3172 +Phenotype HP:0000490 Deeply set eye 0.09698071523005958 0.3005964779799628 1.0 3173 +Phenotype HP:0002071 Abnormality of extrapyramidal motor function 0.09688536626018118 0.2994638766178446 1.0 3174 +Phenotype HP:0010318 Aplasia/Hypoplasia of the abdominal wall musculature 0.09686829501157412 0.2992610960377285 1.0 3175 +Biological Process GO:0046597 negative regulation of viral entry into host cell 0.09682858953344642 0.2987894550890287 1.0 3176 +Biological Process GO:0046887 positive regulation of hormone secretion 0.09673601861142522 0.2976898527282747 1.0 3177 +Biological Process GO:1903426 regulation of reactive oxygen species biosynthetic process 0.09672141835016435 0.29751642373567583 1.0 3178 +Phenotype HP:0001034 Hypermelanotic macule 0.09653998487124005 0.2953612687756843 1.0 3179 +Phenotype HP:0000246 Sinusitis 0.09652577345228575 0.29519245864081023 1.0 3180 +Phenotype HP:0009882 Short distal phalanx of finger 0.09651787667867473 0.29509865692947995 1.0 3181 +Phenotype HP:0100838 Recurrent cutaneous abscess formation 0.09646967917464 0.29452614357364554 1.0 3182 +Biological Process GO:0010951 negative regulation of endopeptidase activity 0.09643558996053869 0.2941212153360996 1.0 3183 +Phenotype HP:0031803 Fundus hemorrhage 0.09641028004387442 0.29382057185641003 1.0 3184 +Phenotype HP:0000573 Retinal hemorrhage 0.09641028004387442 0.29382057185641003 1.0 3184 +Phenotype HP:0020085 Infection following live vaccination 0.09639726449415165 0.2936659668369376 1.0 3186 +Phenotype HP:0200055 Small hand 0.09635992280878258 0.2932224041663945 1.0 3187 +Phenotype HP:0100512 Decreased circulating vitamin D concentration 0.09632914432955197 0.29285680244521206 1.0 3188 +Biological Process GO:1903115 regulation of actin filament-based movement 0.09631960272049622 0.29274346257979844 1.0 3189 +Biological Process GO:1902106 negative regulation of leukocyte differentiation 0.09629315294225227 0.2924292792707912 1.0 3190 +Phenotype HP:0001488 Bilateral ptosis 0.09626740271977074 0.29212340562480826 1.0 3191 +Phenotype HP:0001900 Increased circulating hemoglobin concentration 0.09620500704223856 0.2913822394700677 1.0 3192 +Phenotype HP:0000445 Wide nose 0.09619693835690135 0.2912863957077798 1.0 3193 +Phenotype HP:0200020 Corneal erosion 0.09618736605190148 0.2911726912210371 1.0 3194 +Biological Process GO:0071482 cellular response to light stimulus 0.09615435208885481 0.29078053533761994 1.0 3195 +Phenotype HP:0002186 Apraxia 0.09614670115936774 0.2906896538821666 1.0 3196 +Biological Process GO:1901799 negative regulation of proteasomal protein catabolic process 0.09612460319890592 0.2904271635778559 1.0 3197 +Disease MONDO:0100241 inherited thrombocytopenia 0.09601158026206413 0.2890846222543275 1.0 3198 +Disease MONDO:0002049 thrombocytopenia 0.09601158026206413 0.2890846222543275 1.0 3198 +Disease MONDO:0042973 familial osteosclerosis 0.09599299445687914 0.2888638510357666 1.0 3200 +Disease MONDO:0002933 osteosclerosis 0.09599299445687914 0.2888638510357666 1.0 3200 +Biological Process GO:0001501 skeletal system development 0.0959646316174213 0.2885269434567496 1.0 3202 +Biological Process GO:1902749 regulation of cell cycle G2/M phase transition 0.09595181913287398 0.28837475054403205 1.0 3203 +Phenotype HP:0007372 Atrophy/Degeneration involving the corticospinal tracts 0.09590806757901504 0.28785504834317327 1.0 3204 +Phenotype HP:0000916 Broad clavicles 0.09590131438372618 0.2877748306104324 1.0 3205 +Biological Process GO:1901016 regulation of potassium ion transmembrane transporter activity 0.09589112886591145 0.28765384208412154 1.0 3206 +Phenotype HP:0010547 Muscle flaccidity 0.09585463817848527 0.28722038798035704 1.0 3207 +Phenotype HP:0000446 Narrow nasal bridge 0.0958239243230169 0.2868555538916012 1.0 3208 +Phenotype HP:0006159 Mesoaxial hand polydactyly 0.09579566717618326 0.28651990178089504 1.0 3209 +Phenotype HP:0011203 EEG with abnormally slow frequencies 0.0957883635741108 0.2864331460491216 1.0 3210 +Phenotype HP:0030666 Retinal neovascularization 0.09577202249601091 0.2862390387888332 1.0 3211 +Biological Process GO:0002791 regulation of peptide secretion 0.09574131103917727 0.2858742331922255 1.0 3212 +Biological Process GO:0090087 regulation of peptide transport 0.09574131103917727 0.2858742331922255 1.0 3212 +Biological Process GO:0044782 cilium organization 0.0957345643440205 0.28579409267121 1.0 3214 +Phenotype HP:0002668 Paraganglioma 0.09572679749891322 0.2857018343137354 1.0 3215 +Phenotype HP:0006528 Chronic lung disease 0.09566615255543665 0.2849814642281986 1.0 3216 +Biological Process GO:1903051 negative regulation of proteolysis involved in protein catabolic process 0.09564932217646827 0.28478154481460805 1.0 3217 +Phenotype HP:0011514 Abnormality of binocular vision 0.09564276207572908 0.28470362075268785 1.0 3218 +Phenotype HP:0000651 Diplopia 0.09564276207572908 0.28470362075268785 1.0 3218 +Phenotype HP:0001642 Pulmonic stenosis 0.0956346314976172 0.2846070417979694 1.0 3220 +Phenotype HP:0012896 Abnormal motor evoked potentials 0.09562864745982347 0.28453596049143004 1.0 3221 +Biological Process GO:1902018 negative regulation of cilium assembly 0.09561389377236462 0.28436070902795363 1.0 3222 +Phenotype HP:0012398 Peripheral edema 0.09551191763852784 0.28314938699443415 1.0 3223 +Phenotype HP:0031035 Chronic infection 0.09544730770655374 0.2823819188502732 1.0 3224 +Biological Process GO:0010389 regulation of G2/M transition of mitotic cell cycle 0.09544450381483083 0.2823486128629232 1.0 3225 +Disease MONDO:0017305 syndromic oculocutaneous albinism 0.09543188653711066 0.2821987387116836 1.0 3226 +Biological Process GO:0002040 sprouting angiogenesis 0.09541420297862002 0.2819886848174556 1.0 3227 +Biological Process GO:1902165 regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator 0.09541095310908765 0.2819500812891347 1.0 3228 +Phenotype HP:0100608 Metrorrhagia 0.0953401242759564 0.28110874201736263 1.0 3229 +Biological Process GO:0010971 positive regulation of G2/M transition of mitotic cell cycle 0.09532988862427871 0.28098715797668455 1.0 3230 +Biological Process GO:0030216 keratinocyte differentiation 0.09530539938939431 0.28069626295366873 1.0 3231 +Phenotype HP:0006101 Finger syndactyly 0.09529394090301735 0.2805601534886697 1.0 3232 +Phenotype HP:0009997 Duplication of phalanx of hand 0.09527455303875754 0.28032985502296803 1.0 3233 +Phenotype HP:0009835 Aplasia/Hypoplasia of the distal phalanges of the hand 0.09526600812653152 0.2802283544064568 1.0 3234 +Phenotype HP:0000972 Palmoplantar hyperkeratosis 0.09524686133541216 0.28000091952457357 1.0 3235 +Biological Process GO:0090161 Golgi ribbon formation 0.09521410307795464 0.27961180103630545 1.0 3236 +Phenotype HP:0001410 Decreased liver function 0.09517267856023759 0.2791197405006619 1.0 3237 +Biological Process GO:1903555 regulation of tumor necrosis factor superfamily cytokine production 0.09514565457991386 0.27879873654054005 1.0 3238 +Biological Process GO:2000050 regulation of non-canonical Wnt signaling pathway 0.0951150773066256 0.27843552484123896 1.0 3239 +Phenotype HP:0025420 Diffuse alveolar hemorrhage 0.09511190269358138 0.278397815246026 1.0 3240 +Biological Process GO:0032689 negative regulation of type II interferon production 0.09510818136898513 0.27835361154553534 1.0 3241 +Biological Process GO:0051653 spindle localization 0.09510687867653667 0.27833813753209363 1.0 3242 +Biological Process GO:0000132 establishment of mitotic spindle orientation 0.09508838240963202 0.2781184298927031 1.0 3243 +Biological Process GO:0002712 regulation of B cell mediated immunity 0.0950500726782959 0.27766336830211635 1.0 3244 +Biological Process GO:0090276 regulation of peptide hormone secretion 0.09504812325406631 0.2776402120945495 1.0 3245 +Phenotype HP:0007376 Abnormal choroid plexus morphology 0.09503745993390444 0.2775135479999564 1.0 3246 +Phenotype HP:0003829 Typified by incomplete penetrance 0.09501880873565727 0.2772920000108504 1.0 3247 +Biological Process GO:1904659 glucose transmembrane transport 0.09501669581516947 0.277266901715341 1.0 3248 +Biological Process GO:0034116 positive regulation of heterotypic cell-cell adhesion 0.095013112954897 0.27722434276132135 1.0 3249 +Phenotype HP:0002321 Vertigo 0.09500024036861554 0.27707143593102246 1.0 3250 +Phenotype HP:0007190 Neuronal loss in the cerebral cortex 0.09498454309717108 0.27688497611879576 1.0 3251 +Phenotype HP:0000260 Wide anterior fontanel 0.09491599048762123 0.27607067493597287 1.0 3252 +Phenotype HP:0000592 Blue sclerae 0.09491575079130099 0.27606782770669347 1.0 3253 +Phenotype HP:0000825 Hyperinsulinemic hypoglycemia 0.09489419177848435 0.2758117392842051 1.0 3254 +Biological Process GO:1901223 negative regulation of non-canonical NF-kappaB signal transduction 0.09487277122024484 0.2755572954924123 1.0 3255 +Phenotype HP:0031685 Abnormal stool composition 0.09482108872158967 0.27494338567829296 1.0 3256 +Phenotype HP:0030126 Abnormal endometrium morphology 0.09482028997243941 0.27493389774804333 1.0 3257 +Phenotype HP:0000858 Irregular menstruation 0.09478975786685973 0.2745712225727164 1.0 3258 +Phenotype HP:0008921 Neonatal short-limb short stature 0.09474046953393656 0.2739857518216793 1.0 3259 +Biological Process GO:0030111 regulation of Wnt signaling pathway 0.09466467100720644 0.2730853801162421 1.0 3260 +Phenotype HP:0004756 Ventricular tachycardia 0.09462737937945676 0.2726424120544082 1.0 3261 +Biological Process GO:0006654 phosphatidic acid biosynthetic process 0.09462592161097305 0.27262509597252077 1.0 3262 +Biological Process GO:0051962 positive regulation of nervous system development 0.09460024920624832 0.27232014668363846 1.0 3263 +Phenotype HP:0001022 Albinism 0.09456478976904437 0.27189894227075007 1.0 3264 +Biological Process GO:0015919 peroxisomal membrane transport 0.0945344143920398 0.27153812879353995 1.0 3265 +Biological Process GO:0043574 peroxisomal transport 0.0945344143920398 0.27153812879353995 1.0 3265 +Biological Process GO:0010906 regulation of glucose metabolic process 0.09452407428450604 0.2714153039754835 1.0 3267 +Biological Process GO:0002230 positive regulation of defense response to virus by host 0.0944881785474525 0.2709889169811308 1.0 3268 +Phenotype HP:0003270 Abdominal distention 0.09444605499245373 0.27048855294122853 1.0 3269 +Biological Process GO:0050999 regulation of nitric-oxide synthase activity 0.0943798018988018 0.26970156652480026 1.0 3270 +Phenotype HP:0005107 Abnormal sacrum morphology 0.09434603023683952 0.2693004103257532 1.0 3271 +Phenotype HP:0009826 Limb undergrowth 0.09432388520432844 0.2690373608767849 1.0 3272 +Biological Process GO:0060337 type I interferon-mediated signaling pathway 0.09431915600438912 0.2689811851435826 1.0 3273 +Phenotype HP:0000975 Hyperhidrosis 0.09430119287713101 0.2687678103957864 1.0 3274 +Disease MONDO:0000009 inherited bleeding disorder, platelet-type 0.09423882871984601 0.268027018653847 1.0 3275 +Phenotype HP:0040071 Abnormal morphology of ulna 0.09421107934409678 0.267697398094636 1.0 3276 +Biological Process GO:0034377 plasma lipoprotein particle assembly 0.0941901240353229 0.26744848076190364 1.0 3277 +Phenotype HP:0005374 Cellular immunodeficiency 0.09418110438807792 0.26734134101232354 1.0 3278 +Biological Process GO:0043555 regulation of translation in response to stress 0.09415406710837948 0.26702017907577114 1.0 3279 +Biological Process GO:0010592 positive regulation of lamellipodium assembly 0.09415328344212459 0.2670108703074765 1.0 3280 +Phenotype HP:0001297 Stroke 0.09408504711819443 0.2662003261188208 1.0 3281 +Phenotype HP:0002216 Premature graying of hair 0.09407539530103093 0.26608567714799036 1.0 3282 +Phenotype HP:0009800 Maternal diabetes 0.09404797264602816 0.2657599375364492 1.0 3283 +Disease MONDO:0019054 congenital limb malformation 0.09403558289607372 0.26561276607049006 1.0 3284 +Phenotype HP:0004586 Biconcave vertebral bodies 0.0940182429746722 0.26540679406446394 1.0 3285 +Phenotype HP:0100544 Neoplasm of the heart 0.09401372433486643 0.26535311946676804 1.0 3286 +Phenotype HP:0005268 Miscarriage 0.09399978613850024 0.26518755480246226 1.0 3287 +Disease MONDO:0015160 multiple congenital anomalies/dysmorphic syndrome-variable intellectual disability syndrome 0.09397755799898 0.2649235181680855 1.0 3288 +Phenotype HP:0100758 Gangrene 0.09395932546520924 0.26470694327891825 1.0 3289 +Phenotype HP:0002607 Bowel incontinence 0.0939487249346993 0.26458102503029907 1.0 3290 +Phenotype HP:0045008 Abnormal shape of the radius 0.09392814724732046 0.26433659326785586 1.0 3291 +Phenotype HP:0002986 Radial bowing 0.09392814724732046 0.26433659326785586 1.0 3291 +Phenotype HP:0000011 Neurogenic bladder 0.09390619674671896 0.2640758545633671 1.0 3293 +Phenotype HP:0000132 Menorrhagia 0.09388252993769097 0.26379472871401305 1.0 3294 +Phenotype HP:0011890 Prolonged bleeding following procedure 0.09387734263150604 0.26373311137238614 1.0 3295 +Phenotype HP:0001406 Intrahepatic cholestasis 0.0938343753581744 0.26322272523644796 1.0 3296 +Biological Process GO:0061448 connective tissue development 0.09374452607881756 0.26215545186878925 1.0 3297 +Biological Process GO:0034121 regulation of toll-like receptor signaling pathway 0.09373922873539664 0.26209252745144324 1.0 3298 +Phenotype HP:0012432 Chronic fatigue 0.09373586917728338 0.26205262098889787 1.0 3299 +Phenotype HP:0000337 Broad forehead 0.09372970446701745 0.2619793935670058 1.0 3300 +Phenotype HP:0005294 Arterial dissection 0.09372445847699362 0.2619170791502457 1.0 3301 +Phenotype HP:0025155 Abnormality of hepatobiliary system physiology 0.09371917785821637 0.2618543533963381 1.0 3302 +Biological Process GO:2001056 positive regulation of cysteine-type endopeptidase activity 0.0937160120518229 0.2618167484107989 1.0 3303 +Biological Process GO:0061512 protein localization to cilium 0.09369291337731744 0.2615423711391685 1.0 3304 +Phenotype HP:0010732 Nodular changes affecting the eyelids 0.09363662148769203 0.2608737087409563 1.0 3305 +Phenotype HP:0002839 Urinary bladder sphincter dysfunction 0.09359691986465535 0.26040211358489956 1.0 3306 +Phenotype HP:0007556 Plantar hyperkeratosis 0.09355396340897149 0.2598918559462343 1.0 3307 +Phenotype HP:0001278 Orthostatic hypotension 0.09354978795241853 0.25984225784585235 1.0 3308 +Biological Process GO:0032928 regulation of superoxide anion generation 0.09354641929769603 0.2598022433293654 1.0 3309 +Phenotype HP:0030402 Abnormal platelet aggregation 0.09354131802134524 0.25974164789188137 1.0 3310 +Phenotype HP:0001090 Abnormally large globe 0.09352565159675574 0.259555554493576 1.0 3311 +Biological Process GO:0032728 positive regulation of interferon-beta production 0.09347149320475756 0.25891223481612685 1.0 3312 +Phenotype HP:0002254 Intermittent diarrhea 0.0934499050111619 0.2586557997701762 1.0 3313 +Phenotype HP:0000268 Dolichocephaly 0.09342637271237553 0.25837627169878524 1.0 3314 +Biological Process GO:0032663 regulation of interleukin-2 production 0.09342041457858774 0.25830549809260644 1.0 3315 +Phenotype HP:0002902 Hyponatremia 0.09335875758494538 0.2575731063837866 1.0 3316 +Disease MONDO:0005015 diabetes mellitus 0.09333974223679231 0.2573472328452807 1.0 3317 +Phenotype HP:0007676 Hypoplasia of the iris 0.09333302342445593 0.2572674235299446 1.0 3318 +Phenotype HP:0045082 Decreased body mass index 0.09332007430934264 0.2571136076530217 1.0 3319 +Phenotype HP:0002425 Anarthria 0.09328963368093468 0.25675201908795847 1.0 3320 +Phenotype HP:0000894 Short clavicles 0.09324427622758025 0.2562132412331273 1.0 3321 +Biological Process GO:0032680 regulation of tumor necrosis factor production 0.09322716164341027 0.2560099458921527 1.0 3322 +Phenotype HP:0040160 Generalized osteoporosis 0.0932041633449564 0.25573676093600195 1.0 3323 +Biological Process GO:0050796 regulation of insulin secretion 0.09316688318676447 0.25529392911514415 1.0 3324 +Phenotype HP:0032443 Past medical history 0.09315669467549736 0.2551729050311525 1.0 3325 +Phenotype HP:0002686 Pregnancy history 0.09315669467549736 0.2551729050311525 1.0 3325 +Phenotype HP:0006725 Pancreatic adenocarcinoma 0.09300703604274685 0.25339518712269304 1.0 3327 +Phenotype HP:0025517 Hypoplastic hippocampus 0.0929891834771297 0.25318312567975265 1.0 3328 +Phenotype HP:0040072 Abnormal forearm bone morphology 0.09284711618152641 0.2514955813599981 1.0 3329 +Biological Process GO:0007611 learning or memory 0.09284006286194879 0.2514117986052263 1.0 3330 +Biological Process GO:0030177 positive regulation of Wnt signaling pathway 0.09276072947888947 0.2504694381599165 1.0 3331 +Phenotype HP:0001350 Slurred speech 0.09272439240350894 0.25003780873461834 1.0 3332 +Biological Process GO:0010613 positive regulation of cardiac muscle hypertrophy 0.09267980730480496 0.2495082052833519 1.0 3333 +Biological Process GO:0014742 positive regulation of muscle hypertrophy 0.09267980730480496 0.2495082052833519 1.0 3333 +Phenotype HP:0031394 Abnormal CD4:CD8 ratio 0.09267787782449233 0.24948528597931477 1.0 3335 +Phenotype HP:0000020 Urinary incontinence 0.09263122142659563 0.24893107863049163 1.0 3336 +Phenotype HP:0011042 Abnormal blood potassium concentration 0.0926232742797074 0.24883667856091515 1.0 3337 +Phenotype HP:0001123 Visual field defect 0.092536919470394 0.24781091420521673 1.0 3338 +Phenotype HP:0001822 Hallux valgus 0.09252263290928608 0.24764121149535584 1.0 3339 +Phenotype HP:0002630 Fat malabsorption 0.09251803969302741 0.24758665104234084 1.0 3340 +Biological Process GO:0051604 protein maturation 0.0924992679373412 0.24736367101343582 1.0 3341 +Phenotype HP:0000723 Restrictive behavior 0.09246324110662818 0.24693572682494158 1.0 3342 +Biological Process GO:0001816 cytokine production 0.0924186361128766 0.24640588705063937 1.0 3343 +Biological Process GO:0061337 cardiac conduction 0.09237315467424068 0.24586563643843207 1.0 3344 +Biological Process GO:0033144 negative regulation of intracellular steroid hormone receptor signaling pathway 0.09233867145067187 0.2454560279651149 1.0 3345 +Phenotype HP:0000307 Pointed chin 0.09231338574727088 0.2451556721023237 1.0 3346 +Biological Process GO:0070646 protein modification by small protein removal 0.09231115720603733 0.2451292004074551 1.0 3347 +Biological Process GO:0030336 negative regulation of cell migration 0.09228030691374711 0.24476274565588085 1.0 3348 +Biological Process GO:0032495 response to muramyl dipeptide 0.09225532961840477 0.2444660532137617 1.0 3349 +Phenotype HP:0009027 Foot dorsiflexor weakness 0.09220976769897382 0.24392484661159258 1.0 3350 +Phenotype HP:0001114 Xanthelasma 0.09211366292907097 0.2427832674897956 1.0 3351 +Phenotype HP:0010508 Metatarsus valgus 0.09210513535684439 0.24268197284621734 1.0 3352 +Biological Process GO:0099054 presynapse assembly 0.09209130794193376 0.2425177240978321 1.0 3353 +Biological Process GO:0099172 presynapse organization 0.09209130794193376 0.2425177240978321 1.0 3353 +Biological Process GO:0008637 apoptotic mitochondrial changes 0.09204465295852327 0.24196353355096276 1.0 3355 +Biological Process GO:0046890 regulation of lipid biosynthetic process 0.09202325543431877 0.24170936336862234 1.0 3356 +Biological Process GO:0030261 chromosome condensation 0.09195402584959667 0.2408870207459895 1.0 3357 +Phenotype HP:0000495 Recurrent corneal erosions 0.09194933505968872 0.24083130126579033 1.0 3358 +Phenotype HP:0003651 Foam cells 0.0919277805121077 0.24057526588353886 1.0 3359 +Biological Process GO:0010885 regulation of cholesterol storage 0.09190351818112186 0.24028706613520617 1.0 3360 +Phenotype HP:0003076 Glycosuria 0.0918691105223407 0.23987835525712814 1.0 3361 +Disease MONDO:0017739 disorder of lysosomal-related organelles 0.09186153807275954 0.2397884060241041 1.0 3362 +Phenotype HP:0000684 Delayed eruption of teeth 0.0918446329012429 0.23958759818830877 1.0 3363 +Phenotype HP:0003003 Colon cancer 0.09182834618165026 0.23939413662476397 1.0 3364 +Phenotype HP:0100260 Mesoaxial polydactyly 0.09181999192334034 0.2392949006880426 1.0 3365 +Phenotype HP:0011421 Death in adolescence 0.09180245051723368 0.23908653534885532 1.0 3366 +Phenotype HP:0001680 Coarctation of aorta 0.09176271601549624 0.23861454964362627 1.0 3367 +Phenotype HP:0100592 Peritoneal abscess 0.09173670769871378 0.23830561022821592 1.0 3368 +Biological Process GO:0002027 regulation of heart rate 0.0917116097720122 0.2380074848682377 1.0 3369 +Biological Process GO:0086065 cell communication involved in cardiac conduction 0.09169874610298967 0.23785468396147025 1.0 3370 +Biological Process GO:0045598 regulation of fat cell differentiation 0.09165698277000045 0.23735859881350785 1.0 3371 +Phenotype HP:0011482 Abnormal lacrimal gland morphology 0.09163389521194387 0.23708435358845495 1.0 3372 +Disease MONDO:0003382 eyelid disorder 0.09160839541255728 0.23678145458958966 1.0 3373 +Biological Process GO:0060325 face morphogenesis 0.09158540459312114 0.2365083584728431 1.0 3374 +Biological Process GO:2000146 negative regulation of cell motility 0.0915241720933595 0.23578100910845678 1.0 3375 +Phenotype HP:0000245 Abnormal paranasal sinus morphology 0.09150389151920413 0.23554010660114905 1.0 3376 +Phenotype HP:0011891 Post-partum hemorrhage 0.09150223676693792 0.23552045065024502 1.0 3377 +Biological Process GO:0019915 lipid storage 0.09148336930624634 0.23529633379081547 1.0 3378 +Phenotype HP:0002973 Abnormal forearm morphology 0.09144144005837274 0.23479827782529425 1.0 3379 +Disease MONDO:0003182 anterior horn disorder 0.09141862637726117 0.2345272858435786 1.0 3380 +Disease MONDO:0002545 spinal cord disorder 0.09141862637726117 0.2345272858435786 1.0 3380 +Phenotype HP:0005421 Decreased circulating complement C3 concentration 0.09139767213634908 0.2342783811954272 1.0 3382 +Phenotype HP:0000322 Short philtrum 0.09139762314918765 0.2342777993021373 1.0 3383 +Biological Process GO:0098543 detection of other organism 0.09138175874527421 0.23408935420929083 1.0 3384 +Disease MONDO:0005495 adrenal gland disorder 0.09133647143081525 0.23355140949831685 1.0 3385 +Phenotype HP:0004275 Duplication of hand bones 0.09131226987857433 0.2332639317094283 1.0 3386 +Phenotype HP:0009142 Duplication of bones involving the upper extremities 0.09131226987857433 0.2332639317094283 1.0 3386 +Biological Process GO:0040013 negative regulation of locomotion 0.0913038889183081 0.23316437859390438 1.0 3388 +Disease MONDO:0018542 severe congenital neutropenia 0.09129350023805971 0.2330409768055585 1.0 3389 +Phenotype HP:0001030 Fragile skin 0.09127609351636923 0.2328342113132643 1.0 3390 +Biological Process GO:0002520 immune system development 0.09121829944761228 0.2321477053019256 1.0 3391 +Phenotype HP:0012163 Carotid artery dilatation 0.09120359034025527 0.2319729833825452 1.0 3392 +Biological Process GO:1904666 regulation of ubiquitin protein ligase activity 0.09119536026832531 0.23187522259194523 1.0 3393 +Phenotype HP:0000269 Prominent occiput 0.09114153449138185 0.23123585387762158 1.0 3394 +Biological Process GO:0045786 negative regulation of cell cycle 0.09108511979343636 0.23056573270255243 1.0 3395 +Phenotype HP:0000768 Pectus carinatum 0.09108347926039628 0.2305462456545207 1.0 3396 +Phenotype HP:0010566 Hamartoma 0.09105781072449215 0.23024134232136798 1.0 3397 +Biological Process GO:0007610 behavior 0.09101454543427812 0.22972741619619483 1.0 3398 +Phenotype HP:0000776 Congenital diaphragmatic hernia 0.09101453528448655 0.2297272956320423 1.0 3399 +Phenotype HP:0009591 Abnormality of the vestibulocochlear nerve 0.09099079194201187 0.2294452606812467 1.0 3400 +Phenotype HP:0030498 Macular thickening 0.0909010929008286 0.22837977191556372 1.0 3401 +Phenotype HP:0100513 Decreased circulating vitamin E concentration 0.0908158975162543 0.22736777976988978 1.0 3402 +Phenotype HP:0010747 Medial flaring of the eyebrow 0.09079548289103645 0.2271252849389718 1.0 3403 +Phenotype HP:0002761 Generalized joint hypermobility 0.09077918806195684 0.22693172704700307 1.0 3404 +Biological Process GO:1900120 regulation of receptor binding 0.09077407701359885 0.2268710155328725 1.0 3405 +Biological Process GO:0090277 positive regulation of peptide hormone secretion 0.09076468373577196 0.22675943761781936 1.0 3406 +Biological Process GO:0002793 positive regulation of peptide secretion 0.09076468373577196 0.22675943761781936 1.0 3406 +Disease MONDO:0004139 normocytic anemia 0.09073455071190051 0.22640150292880207 1.0 3408 +Disease MONDO:0003664 hemolytic anemia 0.09073455071190051 0.22640150292880207 1.0 3408 +Phenotype HP:0010874 Tendon xanthomatosis 0.09070981108838871 0.22610763366809075 1.0 3410 +Biological Process GO:0008645 hexose transmembrane transport 0.09070781857139343 0.2260839655837288 1.0 3411 +Biological Process GO:2000725 regulation of cardiac muscle cell differentiation 0.09066921896540814 0.2256254607213069 1.0 3412 +Phenotype HP:5200060 Auditory hypersensitivity 0.09064593895428952 0.22534892944533502 1.0 3413 +Phenotype HP:0000368 Low-set, posteriorly rotated ears 0.09063116742761612 0.22517346607900612 1.0 3414 +Phenotype HP:0002435 Meningocele 0.09055222536952978 0.22423575398173823 1.0 3415 +Phenotype HP:0001934 Persistent bleeding after trauma 0.09049160544055745 0.22351568103062894 1.0 3416 +Phenotype HP:0001069 Episodic hyperhidrosis 0.09044578109040291 0.22297135714889837 1.0 3417 +Biological Process GO:0030178 negative regulation of Wnt signaling pathway 0.09040121553563774 0.22244198585002684 1.0 3418 +Phenotype HP:0031819 Increased waist to hip ratio 0.09037951609032957 0.22218422930221532 1.0 3419 +Phenotype HP:0031818 Abnormal waist to hip ratio 0.09037951609032957 0.22218422930221532 1.0 3419 +Phenotype HP:0000987 Atypical scarring of skin 0.09036074228221602 0.22196122489358178 1.0 3421 +Phenotype HP:0011108 Recurrent sinusitis 0.09036047806867509 0.2219580864368503 1.0 3422 +Phenotype HP:0033019 Male reproductive system neoplasm 0.09027757628893918 0.2209733388431357 1.0 3423 +Phenotype HP:0001697 Abnormal pericardium morphology 0.09024893159231617 0.2206330832278516 1.0 3424 +Biological Process GO:0008154 actin polymerization or depolymerization 0.09022222248886269 0.22031581952808693 1.0 3425 +Biological Process GO:0035710 CD4-positive, alpha-beta T cell activation 0.09018862934416061 0.21991678384373778 1.0 3426 +Phenotype HP:0001837 Broad toe 0.0901738875293957 0.21974167340988493 1.0 3427 +Phenotype HP:0009110 Diaphragmatic eventration 0.09016620747623183 0.21965044600925718 1.0 3428 +Phenotype HP:0100514 Abnormal circulating vitamin E concentration 0.09012156011964756 0.21912010302865847 1.0 3429 +Phenotype HP:0002524 Cataplexy 0.090114199297057 0.21903266760378692 1.0 3430 +Biological Process GO:0035455 response to interferon-alpha 0.09010840665645026 0.2189638598059699 1.0 3431 +Phenotype HP:0001829 Foot polydactyly 0.090105339211207 0.21892742320193356 1.0 3432 +Biological Process GO:0001667 ameboidal-type cell migration 0.09010277595428884 0.21889697559163768 1.0 3433 +Phenotype HP:0011120 Concave nasal ridge 0.09009469017181304 0.21880092874123583 1.0 3434 +Biological Process GO:0010948 negative regulation of cell cycle process 0.09002288291769744 0.21794796730992705 1.0 3435 +Biological Process GO:0009612 response to mechanical stimulus 0.08999624895122305 0.21763159612368366 1.0 3436 +Phenotype HP:0100750 Atelectasis 0.08997190202452376 0.2173423915063903 1.0 3437 +Phenotype HP:0000403 Recurrent otitis media 0.0899347355291743 0.21690090982796578 1.0 3438 +Biological Process GO:0007159 leukocyte cell-cell adhesion 0.08991106530776438 0.21661974344468227 1.0 3439 +Phenotype HP:0002187 Intellectual disability, profound 0.08989178618168914 0.21639073662393613 1.0 3440 +Phenotype HP:0000280 Coarse facial features 0.08964804437469787 0.21349545308856552 1.0 3441 +Phenotype HP:0001087 Developmental glaucoma 0.08964724421523762 0.21348594840596913 1.0 3442 +Phenotype HP:0009895 Abnormality of the crus of the helix 0.08963271518971228 0.21331336558602632 1.0 3443 +Biological Process GO:0036315 cellular response to sterol 0.08956524655970521 0.21251194043855273 1.0 3444 +Biological Process GO:0030509 BMP signaling pathway 0.08942395837643846 0.2108336507934394 1.0 3445 +Phenotype HP:0000360 Tinnitus 0.08941420832640812 0.21071783496491844 1.0 3446 +Biological Process GO:0046636 negative regulation of alpha-beta T cell activation 0.0893953400739198 0.21049370870014275 1.0 3447 +Phenotype HP:0009136 Duplication involving bones of the feet 0.08938921063092198 0.21042090019998572 1.0 3448 +Biological Process GO:1901019 regulation of calcium ion transmembrane transporter activity 0.08936797488842307 0.2101686517392994 1.0 3449 +Phenotype HP:0100769 Synovitis 0.08934311286142738 0.20987332851057172 1.0 3450 +Phenotype HP:0000274 Small face 0.08933950252959955 0.2098304432360783 1.0 3451 +Phenotype HP:0007343 Abnormal morphology of the limbic system 0.08930027639618288 0.2093644961766081 1.0 3452 +Phenotype HP:0100649 Neoplasm of the oral cavity 0.08927216317110132 0.20903055363835601 1.0 3453 +Phenotype HP:0030200 Fatiguable weakness of proximal limb muscles 0.08925513857897038 0.208828327266518 1.0 3454 +Biological Process GO:0000768 syncytium formation by plasma membrane fusion 0.0892421403694702 0.20867392822262923 1.0 3455 +Phenotype HP:0004278 Synostosis involving bones of the hand 0.08923238645643872 0.20855806650750497 1.0 3456 +Phenotype HP:0012437 Abnormal gallbladder morphology 0.08914833261355282 0.2075596341482959 1.0 3457 +Phenotype HP:0002040 Esophageal varix 0.08914698675468213 0.20754364738313108 1.0 3458 +Biological Process GO:0048864 stem cell development 0.08911176061655546 0.2071252142099639 1.0 3459 +Phenotype HP:0001396 Cholestasis 0.0891101927014748 0.20710658975331478 1.0 3460 +Biological Process GO:1902041 regulation of extrinsic apoptotic signaling pathway via death domain receptors 0.08910873504203298 0.20708927496667984 1.0 3461 +Phenotype HP:0007513 Generalized hypopigmentation 0.08905638462510235 0.2064674312949683 1.0 3462 +Phenotype HP:0002314 Degeneration of the lateral corticospinal tracts 0.08901076580776834 0.2059255488318792 1.0 3463 +Phenotype HP:0010946 Dilatation of the renal pelvis 0.08899935208726795 0.2057899711176986 1.0 3464 +Phenotype HP:0001097 Keratoconjunctivitis sicca 0.08896645451453211 0.20539919777490834 1.0 3465 +Phenotype HP:0002585 Abnormal peritoneum morphology 0.08896629991508131 0.20539736136756404 1.0 3466 +Phenotype HP:0100842 Septo-optic dysplasia 0.08890449648848897 0.2046632302570619 1.0 3467 +Biological Process GO:1903798 regulation of miRNA processing 0.08888269278058847 0.20440423522755258 1.0 3468 +Biological Process GO:0070920 regulation of regulatory ncRNA processing 0.08888269278058847 0.20440423522755258 1.0 3468 +Biological Process GO:2000191 regulation of fatty acid transport 0.0888444954986557 0.20395050936558 1.0 3470 +Phenotype HP:0009833 Abnormal middle phalanx morphology of the hand 0.08882893115733148 0.2037656285618675 1.0 3471 +Phenotype HP:0000960 Sacral dimple 0.08881302479462472 0.20357668506210025 1.0 3472 +Phenotype HP:0000962 Hyperkeratosis 0.08878686497546984 0.20326594602794631 1.0 3473 +Phenotype HP:0003307 Hyperlordosis 0.08875622677370376 0.2029020105906011 1.0 3474 +Biological Process GO:0043009 chordate embryonic development 0.0886715962704604 0.2018967283796613 1.0 3475 +Phenotype HP:0011702 Abnormal electrophysiology of sinoatrial node origin 0.08862009440681495 0.2012849642358971 1.0 3476 +Phenotype HP:0033479 Abnormal circulating bilirubin concentration 0.08858469177523942 0.20086443458784578 1.0 3477 +Phenotype HP:0000075 Renal duplication 0.08857521154856396 0.20075182385215026 1.0 3478 +Phenotype HP:0000912 Sprengel anomaly 0.08856327106671835 0.2006099890109356 1.0 3479 +Phenotype HP:0012332 Abnormal autonomic nervous system physiology 0.08854568349738567 0.2004010753225345 1.0 3480 +Phenotype HP:0100012 Neoplasm of the eye 0.08853895599985473 0.20032116284024012 1.0 3481 +Phenotype HP:0008053 Aplasia/Hypoplasia of the iris 0.08853565241775319 0.20028192128794178 1.0 3482 +Phenotype HP:0008055 Aplasia/Hypoplasia affecting the uvea 0.08853565241775319 0.20028192128794178 1.0 3482 +Phenotype HP:0010301 Spinal dysraphism 0.08847772089959993 0.19959378258593344 1.0 3484 +Biological Process GO:0007218 neuropeptide signaling pathway 0.08847380687432749 0.1995472898932427 1.0 3485 +Biological Process GO:0019934 cGMP-mediated signaling 0.0884636286405035 0.19942638788971073 1.0 3486 +Phenotype HP:0002132 Porencephalic cyst 0.08845910377800204 0.1993726393758139 1.0 3487 +Biological Process GO:0046688 response to copper ion 0.08844954038814123 0.199259040787422 1.0 3488 +Phenotype HP:0003481 Segmental peripheral demyelination/remyelination 0.08844641654475272 0.19922193425883133 1.0 3489 +Phenotype HP:0003010 Prolonged bleeding time 0.08837907563987146 0.19842202629242067 1.0 3490 +Biological Process GO:0050691 regulation of defense response to virus by host 0.08837870870259046 0.19841766763322585 1.0 3491 +Biological Process GO:0045589 regulation of regulatory T cell differentiation 0.08836407975713056 0.19824389791578306 1.0 3492 +Phenotype HP:0001522 Death in infancy 0.08833662772144701 0.19791780930624947 1.0 3493 +Biological Process GO:0048469 cell maturation 0.0882883781619831 0.19734467761075097 1.0 3494 +Phenotype HP:0012841 Retinal vascular tortuosity 0.08828612701901273 0.1973179374414779 1.0 3495 +Phenotype HP:0001844 Abnormal hallux morphology 0.08826618760085836 0.19708108735080274 1.0 3496 +Phenotype HP:0001582 Redundant skin 0.088252553003766 0.196919128986088 1.0 3497 +Biological Process GO:0051353 positive regulation of oxidoreductase activity 0.08821561781747289 0.19648039490894992 1.0 3498 +Phenotype HP:0002615 Hypotension 0.08814291820147935 0.19561683356995727 1.0 3499 +Biological Process GO:0098901 regulation of cardiac muscle cell action potential 0.08812808251529569 0.19544060808581204 1.0 3500 +Biological Process GO:0006991 response to sterol depletion 0.08811796176145081 0.1953203888573821 1.0 3501 +Phenotype HP:0001057 Aplasia cutis congenita 0.0881147678184463 0.19528244965151484 1.0 3502 +Phenotype HP:0000311 Round face 0.0880727163318702 0.19478294167533083 1.0 3503 +Phenotype HP:0003368 Abnormal femoral head morphology 0.0880708754210946 0.19476107444326068 1.0 3504 +Phenotype HP:0002509 Limb hypertonia 0.08806419464395498 0.19468171692846023 1.0 3505 +Phenotype HP:0001710 Conotruncal defect 0.08802483109701964 0.19421413760449235 1.0 3506 +Phenotype HP:0100561 Spinal cord lesion 0.08795762628987647 0.19341584627309857 1.0 3507 +Phenotype HP:0002586 Peritonitis 0.08795298131118734 0.19336067096080073 1.0 3508 +Biological Process GO:0061756 leukocyte adhesion to vascular endothelial cell 0.08794937598839236 0.1933178451860318 1.0 3509 +Phenotype HP:0030166 Night sweats 0.08792827929902791 0.1930672484659955 1.0 3510 +Biological Process GO:0001818 negative regulation of cytokine production 0.08788224875955675 0.19252047536744427 1.0 3511 +Phenotype HP:0031165 Multifocal seizures 0.08785636437524325 0.19221300808207714 1.0 3512 +Phenotype HP:0011958 Retinal perforation 0.08784412098561367 0.19206757515512382 1.0 3513 +Biological Process GO:0002689 negative regulation of leukocyte chemotaxis 0.08783455284036734 0.19195392007995352 1.0 3514 +Phenotype HP:0000907 Anterior rib cupping 0.08777520464168509 0.19124895335873454 1.0 3515 +Biological Process GO:0017015 regulation of transforming growth factor beta receptor signaling pathway 0.08775566546678082 0.1910168575517272 1.0 3516 +Biological Process GO:0030949 positive regulation of vascular endothelial growth factor receptor signaling pathway 0.08765956752186788 0.1898753595004743 1.0 3517 +Phenotype HP:0100034 Motor tics 0.08765622924159944 0.18983570578650144 1.0 3518 +Phenotype HP:0000586 Shallow orbits 0.08763210766483964 0.18954917798521081 1.0 3519 +Phenotype HP:3000030 Abnormal morphology of bony orbit of skull 0.08763210766483964 0.18954917798521081 1.0 3519 +Phenotype HP:0001647 Bicuspid aortic valve 0.08760451900230803 0.1892214664556351 1.0 3521 +Phenotype HP:0000709 Psychosis 0.0875753157602096 0.18887457616598505 1.0 3522 +Phenotype HP:0010781 Skin dimple 0.08756571392402313 0.1887605208934686 1.0 3523 +Phenotype HP:0006292 Abnormality of dental eruption 0.08755237096601853 0.18860202675944743 1.0 3524 +Phenotype HP:0012338 Abnormal energy expenditure 0.08754517254123151 0.1885165203745406 1.0 3525 +Phenotype HP:0011732 Abnormal adrenal morphology 0.08753456307878182 0.1883904960280041 1.0 3526 +Phenotype HP:0031071 Abnormal endocrine morphology 0.08753456307878182 0.1883904960280041 1.0 3526 +Phenotype HP:0040133 Abnormal circulating ferritin concentration 0.08751627852284061 0.18817330319423609 1.0 3528 +Biological Process GO:0010635 regulation of mitochondrial fusion 0.08740080909791392 0.18680170129731197 1.0 3529 +Phenotype HP:0007477 Abnormal dermatoglyphics 0.08728135488339483 0.18538276613474408 1.0 3530 +Phenotype HP:0001702 Abnormal tricuspid valve morphology 0.08726616649597196 0.18520235109402092 1.0 3531 +Biological Process GO:0032695 negative regulation of interleukin-12 production 0.08725741710113499 0.18509842153376765 1.0 3532 +Biological Process GO:0003205 cardiac chamber development 0.08725388423099656 0.18505645638683338 1.0 3533 +Phenotype HP:0002955 Granulomatosis 0.08723663171354401 0.18485152260735319 1.0 3534 +Biological Process GO:0030970 retrograde protein transport, ER to cytosol 0.08720162281035593 0.1844356698562678 1.0 3535 +Biological Process GO:1903513 endoplasmic reticulum to cytosol transport 0.08720162281035593 0.1844356698562678 1.0 3535 +Disease MONDO:0011060 early-onset non-syndromic cataract 0.08716037705143098 0.1839457327043555 1.0 3537 +Phenotype HP:0030060 Nervous tissue neoplasm 0.08715079820003946 0.1838319504563941 1.0 3538 +Phenotype HP:0030061 Neuroectodermal neoplasm 0.08715079820003946 0.1838319504563941 1.0 3538 +Phenotype HP:0000113 Polycystic kidney dysplasia 0.08713920286090227 0.1836942153878584 1.0 3540 +Biological Process GO:1900025 negative regulation of substrate adhesion-dependent cell spreading 0.08704737146722796 0.1826033975038962 1.0 3541 +Biological Process GO:0120192 tight junction assembly 0.08702779217277545 0.18237082513741434 1.0 3542 +Biological Process GO:0120193 tight junction organization 0.08702779217277545 0.18237082513741434 1.0 3542 +Phenotype HP:0001218 Autoamputation 0.08700873952840937 0.18214450857638073 1.0 3544 +Phenotype HP:0003021 Metaphyseal cupping 0.08700596554741324 0.18211155788316702 1.0 3545 +Biological Process GO:0007006 mitochondrial membrane organization 0.08698270505491978 0.1818352584589023 1.0 3546 +Phenotype HP:0002996 Limited elbow movement 0.08697184200923136 0.18170622192752547 1.0 3547 +Phenotype HP:0008873 Disproportionate short-limb short stature 0.08694358551189563 0.1813705775318707 1.0 3548 +Phenotype HP:0006530 Abnormal pulmonary interstitial morphology 0.08689687382209665 0.18081571339898458 1.0 3549 +Phenotype HP:0032794 Myoclonic seizure 0.08689053440179595 0.18074041068646682 1.0 3550 +Biological Process GO:0019229 regulation of vasoconstriction 0.08687860657488056 0.180598726166658 1.0 3551 +Disease MONDO:0003785 leukopenia 0.08686115533493788 0.1803914318649478 1.0 3552 +Disease MONDO:0015134 constitutional neutropenia 0.08686115533493788 0.1803914318649478 1.0 3552 +Disease MONDO:0001475 neutropenia 0.08686115533493788 0.1803914318649478 1.0 3552 +Disease MONDO:0001609 agranulocytosis 0.08686115533493788 0.1803914318649478 1.0 3552 +Biological Process GO:0048729 tissue morphogenesis 0.08682299054385534 0.17993809194507066 1.0 3556 +Phenotype HP:0410043 Abnormal neural tube morphology 0.08681014099704709 0.17978545878882174 1.0 3557 +Phenotype HP:0045005 Neural tube defect 0.08681014099704709 0.17978545878882174 1.0 3557 +Phenotype HP:0001901 Polycythemia 0.08680637807827685 0.17974076101253578 1.0 3559 +Phenotype HP:0011733 Abnormality of adrenal physiology 0.08677855295022152 0.1794102406306505 1.0 3560 +Phenotype HP:0002367 Visual hallucination 0.08664151331284242 0.17778241727652613 1.0 3561 +Phenotype HP:5200005 Abnormal pitch 0.08660906077223696 0.17739693024147138 1.0 3562 +Phenotype HP:0010767 Sacrococcygeal pilonidal abnormality 0.08660852148517317 0.17739052432787009 1.0 3563 +Phenotype HP:0003045 Abnormal patella morphology 0.0865330016959297 0.17649346360164384 1.0 3564 +Phenotype HP:0004970 Ascending tubular aorta aneurysm 0.08650115201833353 0.17611513766614126 1.0 3565 +Disease MONDO:0021179 proteostasis deficiencies 0.0864716664849976 0.17576489418410213 1.0 3566 +Phenotype HP:0100262 Synostosis involving digits 0.08645576051170101 0.17557595530993797 1.0 3567 +Phenotype HP:0003170 Abnormal acetabulum morphology 0.0864444719544325 0.17544186434540035 1.0 3568 +Phenotype HP:0003422 Vertebral segmentation defect 0.08641195978328198 0.17505566898977706 1.0 3569 +Biological Process GO:0001937 negative regulation of endothelial cell proliferation 0.08640085703831091 0.17492378519393192 1.0 3570 +Phenotype HP:0001751 Abnormal vestibular function 0.0863847755085978 0.17473276097540877 1.0 3571 +Phenotype HP:0006744 Adrenocortical carcinoma 0.08637006685126991 0.1745580444016928 1.0 3572 +Phenotype HP:0000585 Band keratopathy 0.08636726423876406 0.17452475360950429 1.0 3573 +Phenotype HP:0000519 Developmental cataract 0.08632268355012174 0.17399520254309148 1.0 3574 +Disease MONDO:0002280 anemia 0.08628587789613351 0.17355800711356686 1.0 3575 +Phenotype HP:0025143 Chills 0.08627729377062754 0.1734560407026758 1.0 3576 +Phenotype HP:0001080 Biliary tract abnormality 0.08626743564192219 0.1733389410631741 1.0 3577 +Biological Process GO:0043537 negative regulation of blood vessel endothelial cell migration 0.08624743040627592 0.17310130916037159 1.0 3578 +Phenotype HP:0004326 Cachexia 0.08620604673134447 0.17260973377516717 1.0 3579 +Disease MONDO:0005087 respiratory system disorder 0.0861892522713581 0.17241024102468586 1.0 3580 +Phenotype HP:0012440 Abnormal biliary tract morphology 0.08615410254683042 0.17199271552935125 1.0 3581 +Phenotype HP:0000022 Abnormal male internal genitalia morphology 0.08615335871073815 0.17198387988306812 1.0 3582 +Phenotype HP:0008846 Severe intrauterine growth retardation 0.0861324920158566 0.17173601514917652 1.0 3583 +Phenotype HP:0000829 Hypoparathyroidism 0.08611980406689845 0.171585301530657 1.0 3584 +Biological Process GO:0048167 regulation of synaptic plasticity 0.08610649116072677 0.1714271643668992 1.0 3585 +Phenotype HP:0012393 Allergy 0.08609219200201967 0.17125731201663827 1.0 3586 +Biological Process GO:0070302 regulation of stress-activated protein kinase signaling cascade 0.0860609732349007 0.1708864803421304 1.0 3587 +Phenotype HP:0002696 Abnormal parietal bone morphology 0.08605590405770891 0.170826266194043 1.0 3588 +Biological Process GO:0071479 cellular response to ionizing radiation 0.08605095325424339 0.1707674581465541 1.0 3589 +Biological Process GO:0042730 fibrinolysis 0.08604325786655775 0.17067604859503097 1.0 3590 +Phenotype HP:0000570 Abnormal saccadic eye movements 0.08603953540800768 0.17063183142488622 1.0 3591 +Phenotype HP:0011036 Abnormality of renal excretion 0.08603573312250934 0.1705866660314889 1.0 3592 +Disease MONDO:0002356 pancreas disorder 0.0860019564652712 0.17018545049612963 1.0 3593 +Biological Process GO:0051147 regulation of muscle cell differentiation 0.08597486701888557 0.16986366889833654 1.0 3594 +Phenotype HP:0000973 Cutis laxa 0.0859515110405108 0.16958623524640923 1.0 3595 +Biological Process GO:1902042 negative regulation of extrinsic apoptotic signaling pathway via death domain receptors 0.08591373960683335 0.16913756781678943 1.0 3596 +Biological Process GO:0042752 regulation of circadian rhythm 0.08589721728505118 0.1689413076560377 1.0 3597 +Phenotype HP:0003043 Abnormal shoulder morphology 0.08587342238281115 0.16865866025331383 1.0 3598 +Biological Process GO:1903779 regulation of cardiac conduction 0.08583631301459371 0.16821785715870236 1.0 3599 +Phenotype HP:0008915 Childhood-onset truncal obesity 0.08582372170359709 0.16806829145281357 1.0 3600 +Phenotype HP:0030858 Addictive behavior 0.0857948359643036 0.1677251726156481 1.0 3601 +Phenotype HP:0003107 Abnormal circulating cholesterol concentration 0.0857864823597767 0.16762594444487897 1.0 3602 +Biological Process GO:0034113 heterotypic cell-cell adhesion 0.08577812906144411 0.16752671991123436 1.0 3603 +Phenotype HP:0009836 Broad distal phalanx of finger 0.08572071605037446 0.16684474028813273 1.0 3604 +Biological Process GO:1903053 regulation of extracellular matrix organization 0.08568439374813952 0.16641328634543123 1.0 3605 +Phenotype HP:0002021 Pyloric stenosis 0.08566149104561915 0.1661412369241964 1.0 3606 +Phenotype HP:0002756 Pathologic fracture 0.0855718686109056 0.165076658127358 1.0 3607 +Phenotype HP:0003444 EMG 0.08556230386028352 0.16496304337518286 1.0 3608 +Phenotype HP:0000522 Alacrima 0.08547381735352844 0.16391195768219943 1.0 3609 +Phenotype HP:0003124 Hypercholesterolemia 0.08546648770796383 0.16382489259318064 1.0 3610 +Phenotype HP:0008207 Primary adrenal insufficiency 0.08546280727425226 0.16378117461447328 1.0 3611 +Biological Process GO:0060323 head morphogenesis 0.08544591733380968 0.16358054770077138 1.0 3612 +Biological Process GO:0010171 body morphogenesis 0.08544591733380968 0.16358054770077138 1.0 3612 +Phenotype HP:0000589 Coloboma 0.08539190435597344 0.16293895532334543 1.0 3614 +Biological Process GO:0006879 intracellular iron ion homeostasis 0.08532397028160066 0.16213200140169343 1.0 3615 +Phenotype HP:0003027 Mesomelia 0.08532015609745569 0.162086694670394 1.0 3616 +Phenotype HP:0011097 Epileptic spasm 0.08531741081316391 0.16205408485056855 1.0 3617 +Disease MONDO:0021154 dermis disorder 0.08531070266662844 0.1619744022287945 1.0 3618 +Phenotype HP:0005317 Increased pulmonary vascular resistance 0.08530638417527647 0.16192310509161761 1.0 3619 +Disease MONDO:0015168 arthrogryposis multiplex congenita 0.08529702573114717 0.1618119409481384 1.0 3620 +Phenotype HP:0004050 Absent hand 0.08529094922289027 0.1617397612325372 1.0 3621 +Phenotype HP:0002895 Papillary thyroid carcinoma 0.0852374502208666 0.1611042741093805 1.0 3622 +Phenotype HP:0100008 Schwannoma 0.08523133187876808 0.16103159747109566 1.0 3623 +Biological Process GO:0090279 regulation of calcium ion import 0.08523004645848686 0.16101632862484325 1.0 3624 +Phenotype HP:0009711 Retinal capillary hemangioma 0.08513608636258474 0.15990022498220058 1.0 3625 +Phenotype HP:0003394 Muscle spasm 0.08507716567142865 0.159200336402959 1.0 3626 +Phenotype HP:0002414 Spina bifida 0.08507311504102666 0.1591522210482092 1.0 3627 +Phenotype HP:0005089 Abnormal metaphyseal trabeculation 0.08498577337723734 0.15811473435586612 1.0 3628 +Biological Process GO:0042073 intraciliary transport 0.08497294961793611 0.15796240751614704 1.0 3629 +Phenotype HP:0100648 Neoplasm of the tongue 0.08490844016360333 0.15719613289419782 1.0 3630 +Phenotype HP:0025710 Late young adult onset 0.08487198173000754 0.15676306191709186 1.0 3631 +Phenotype HP:0003115 Abnormal EKG 0.08481687473098609 0.15610847422481222 1.0 3632 +Phenotype HP:0004421 Elevated systolic blood pressure 0.08480832880370703 0.1560069615510081 1.0 3633 +Phenotype HP:0003639 Elevated urinary epinephrine level 0.08480784260188534 0.15600118620968856 1.0 3634 +Phenotype HP:0000740 Episodic paroxysmal anxiety 0.08480784260188534 0.15600118620968856 1.0 3634 +Phenotype HP:0003574 Positive regitine blocking test 0.08480784260188534 0.15600118620968856 1.0 3634 +Phenotype HP:0006737 Extraadrenal pheochromocytoma 0.08480784260188534 0.15600118620968856 1.0 3634 +Phenotype HP:0002864 Paraganglioma of head and neck 0.08480784260188534 0.15600118620968856 1.0 3634 +Phenotype HP:0002640 Hypertension associated with pheochromocytoma 0.08480784260188534 0.15600118620968856 1.0 3634 +Phenotype HP:0008629 Pulsatile tinnitus 0.08480784260188534 0.15600118620968856 1.0 3634 +Phenotype HP:0030088 Increased serum testosterone level 0.08478561439496612 0.1557371487747141 1.0 3641 +Phenotype HP:0034915 Abnormal anus morphology 0.08476328690548618 0.15547193201327536 1.0 3642 +Phenotype HP:0008762 Repetitive compulsive behavior 0.08471269685026983 0.1548709987727721 1.0 3643 +Phenotype HP:0006706 Cystic liver disease 0.08470137037927727 0.15473645745061076 1.0 3644 +Phenotype HP:0000141 Amenorrhea 0.08466880763507734 0.1543496613637501 1.0 3645 +Phenotype HP:0001096 Keratoconjunctivitis 0.08462639586021192 0.1538458737083231 1.0 3646 +Phenotype HP:0100665 Angioedema 0.08461631690085292 0.15372615093509015 1.0 3647 +Phenotype HP:0031567 Abnormal aortic valve cusp morphology 0.08460766858495694 0.1536234220395782 1.0 3648 +Phenotype HP:0004378 Abnormality of the anus 0.08458706863706433 0.15337872585594362 1.0 3649 +Phenotype HP:0100792 Acantholysis 0.0845714936104468 0.1531937181271287 1.0 3650 +Phenotype HP:0000887 Cupped ribs 0.08455530824658786 0.15300146051620328 1.0 3651 +Biological Process GO:0045637 regulation of myeloid cell differentiation 0.08454554006714432 0.15288542933770943 1.0 3652 +Phenotype HP:0001648 Cor pulmonale 0.08452307730984066 0.15261860579937955 1.0 3653 +Biological Process GO:0006626 protein targeting to mitochondrion 0.08450468042042725 0.15240007861408394 1.0 3654 +Biological Process GO:0045839 negative regulation of mitotic nuclear division 0.084491212926038 0.15224010517641567 1.0 3655 +Biological Process GO:0010893 positive regulation of steroid biosynthetic process 0.08448312957912618 0.15214408725682532 1.0 3656 +Biological Process GO:0051293 establishment of spindle localization 0.0844779801286687 0.15208291958391026 1.0 3657 +Biological Process GO:0090307 mitotic spindle assembly 0.08447336441210296 0.15202809186132268 1.0 3658 +Phenotype HP:0001230 Broad metacarpals 0.08439553810856326 0.1511036332383286 1.0 3659 +Biological Process GO:0051403 stress-activated MAPK cascade 0.08437281780793238 0.15083375047530456 1.0 3660 +Biological Process GO:1905144 response to acetylcholine 0.0843507714245012 0.15057187282800777 1.0 3661 +Phenotype HP:0030063 Neuroepithelial neoplasm 0.08432294482073754 0.15024133491694236 1.0 3662 +Biological Process GO:0007076 mitotic chromosome condensation 0.08426711734650316 0.1495781890702476 1.0 3663 +Phenotype HP:0046504 Decreased libido 0.08426615883312805 0.14956680338295963 1.0 3664 +Phenotype HP:0000460 Narrow nose 0.08422816027842528 0.1491154380995196 1.0 3665 +Phenotype HP:0010522 Dyslexia 0.08407609371968372 0.14730911767693952 1.0 3666 +Biological Process GO:1903844 regulation of cellular response to transforming growth factor beta stimulus 0.08397957223285857 0.14616258858919723 1.0 3667 +Phenotype HP:0001646 Abnormal aortic valve morphology 0.08397745382053945 0.14613742505904875 1.0 3668 +Phenotype HP:0025300 Malar rash 0.08393474226058184 0.1456300764107322 1.0 3669 +Biological Process GO:1903376 regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway 0.08393388698946014 0.14561991708506086 1.0 3670 +Phenotype HP:0004478 Ethmoidal encephalocele 0.08387248090340027 0.1448905057783372 1.0 3671 +Phenotype HP:0100820 Glomerulopathy 0.08386269420105785 0.1447742545758564 1.0 3672 +Phenotype HP:0030405 Pancreatic endocrine tumor 0.08385816130459522 0.1447204106306679 1.0 3673 +Phenotype HP:0001927 Acanthocytosis 0.08385357485984435 0.14466593061291053 1.0 3674 +Phenotype HP:0002570 Steatorrhea 0.0838418410259073 0.1445265504358943 1.0 3675 +Phenotype HP:0100511 Abnormality of vitamin D metabolism 0.0838281913516189 0.14436441297692398 1.0 3676 +Phenotype HP:0005978 Type II diabetes mellitus 0.0837973493016193 0.14399805613127997 1.0 3677 +Biological Process GO:0003007 heart morphogenesis 0.08379368340473814 0.14395451082810273 1.0 3678 +Phenotype HP:0009789 Perianal abscess 0.08368173705777171 0.1426247577618657 1.0 3679 +Phenotype HP:0005425 Recurrent sinopulmonary infections 0.08358533049635386 0.14147959381391487 1.0 3680 +Phenotype HP:0001917 Renal amyloidosis 0.08354210879714918 0.14096618548391704 1.0 3681 +Phenotype HP:0002748 Rickets 0.0835321137462055 0.14084745941558416 1.0 3682 +Phenotype HP:0007350 Hyperreflexia in upper limbs 0.08352002275286119 0.14070383672570508 1.0 3683 +Biological Process GO:0042116 macrophage activation 0.08351840125903687 0.14068457583472288 1.0 3684 +Phenotype HP:0000963 Thin skin 0.08351223259202667 0.14061130141270117 1.0 3685 +Biological Process GO:2000679 positive regulation of transcription regulatory region DNA binding 0.08348365745829733 0.14027187209924522 1.0 3686 +Phenotype HP:0001915 Aplastic anemia 0.08342435876605125 0.13956749343951358 1.0 3687 +Biological Process GO:0015914 phospholipid transport 0.08341179655523534 0.13941827339970123 1.0 3688 +Biological Process GO:1902305 regulation of sodium ion transmembrane transport 0.08338948534650048 0.13915325002885795 1.0 3689 +Phenotype HP:0002292 Frontal balding 0.0833165352494516 0.13828671335426568 1.0 3690 +Phenotype HP:0004400 Abnormality of the pylorus 0.08330583276939507 0.13815958409942924 1.0 3691 +Phenotype HP:0000775 Abnormality of the diaphragm 0.08323599866301279 0.1373300606749837 1.0 3692 +Phenotype HP:0010314 Premature thelarche 0.08321209447397782 0.13704611511064388 1.0 3693 +Phenotype HP:0011031 Abnormality of iron homeostasis 0.08321061487362003 0.13702853969915532 1.0 3694 +Phenotype HP:0040157 Abnormal intermamillary distance 0.0831842948309538 0.13671589745233506 1.0 3695 +Phenotype HP:0006610 Wide intermamillary distance 0.0831842948309538 0.13671589745233506 1.0 3695 +Phenotype HP:0008366 Foot joint contracture 0.08317769944768438 0.13663755428738888 1.0 3697 +Phenotype HP:0012769 Abnormal arm span 0.08317373762871028 0.13659049387790295 1.0 3698 +Phenotype HP:0001821 Broad nail 0.08316839389355468 0.13652701839700634 1.0 3699 +Phenotype HP:0010048 Aplasia of metacarpal bones 0.08315243362184133 0.1363374345398826 1.0 3700 +Phenotype HP:0040188 Osteochondrosis 0.08310360925274274 0.1357574749764374 1.0 3701 +Phenotype HP:0009943 Complete duplication of thumb phalanx 0.08305062362664806 0.13512808598184145 1.0 3702 +Phenotype HP:0009803 Short phalanx of finger 0.08303802636392899 0.1349784495785035 1.0 3703 +Phenotype HP:5200430 Abnormal psychotic pattern 0.08301623438552141 0.13471959387760665 1.0 3704 +Disease MONDO:0005554 rheumatic disorder 0.08301138895739213 0.13466203752952788 1.0 3705 +Biological Process GO:0030032 lamellipodium assembly 0.08301093855285546 0.1346566874057417 1.0 3706 +Phenotype HP:0012049 Laryngeal dystonia 0.08299678350648554 0.1344885468917973 1.0 3707 +Phenotype HP:0003764 Nevus 0.08295605309783038 0.13400473132062446 1.0 3708 +Phenotype HP:0003281 Increased circulating ferritin concentration 0.0828366464283008 0.13258636092052795 1.0 3709 +Biological Process GO:1901881 positive regulation of protein depolymerization 0.08278743399296085 0.13200179171783732 1.0 3710 +Phenotype HP:0010548 Percussion myotonia 0.08276665916132697 0.131755018180207 1.0 3711 +Phenotype HP:0031654 Abnormal pulmonary valve physiology 0.0827100262772279 0.13108230528406245 1.0 3712 +Phenotype HP:0000719 Inappropriate behavior 0.08267254948414304 0.13063713773846794 1.0 3713 +Phenotype HP:0002725 Systemic lupus erythematosus 0.08266043498427578 0.13049323582669536 1.0 3714 +Biological Process GO:0032651 regulation of interleukin-1 beta production 0.08263867028938998 0.13023470421271802 1.0 3715 +Phenotype HP:0011898 Abnormality of circulating fibrinogen 0.08252845631223926 0.12892552907632615 1.0 3716 +Phenotype HP:0031137 Storage in hepatocytes 0.08250917074695607 0.1286964457675414 1.0 3717 +Phenotype HP:0001788 Premature rupture of membranes 0.08250592374463872 0.12865787629739273 1.0 3718 +Biological Process GO:0045926 negative regulation of growth 0.08247124874720346 0.12824598984097157 1.0 3719 +Phenotype HP:0032148 Episodic pain 0.0824523389998637 0.12802137068020208 1.0 3720 +Disease MONDO:0004689 inborn metal metabolism disorder 0.08241244754838228 0.12754752064970512 1.0 3721 +Phenotype HP:0006561 Lipid accumulation in hepatocytes 0.08241001217319999 0.12751859208076247 1.0 3722 +Biological Process GO:0000041 transition metal ion transport 0.08236081981969545 0.12693426141986394 1.0 3723 +Biological Process GO:0018394 peptidyl-lysine acetylation 0.08234622275657066 0.12676087041627843 1.0 3724 +Biological Process GO:0007193 adenylate cyclase-inhibiting G protein-coupled receptor signaling pathway 0.08233951000421968 0.12668113308439138 1.0 3725 +Phenotype HP:0004396 Poor appetite 0.08231638813416309 0.1264064802847416 1.0 3726 +Disease MONDO:0005552 ocular vascular disorder 0.0822418635050528 0.12552124055379002 1.0 3727 +Phenotype HP:0010109 Short hallux 0.08223732266697592 0.12546730227425124 1.0 3728 +Phenotype HP:0100542 Abnormal localization of kidney 0.08223451670557291 0.12543397170223614 1.0 3729 +Phenotype HP:0001785 Ankle swelling 0.08222281800882691 0.12529500890183645 1.0 3730 +Phenotype HP:0040223 Pulmonary hemorrhage 0.08220838296071298 0.12512354239121828 1.0 3731 +Phenotype HP:0002301 Hemiplegia 0.08216611905766102 0.12462151122899258 1.0 3732 +Biological Process GO:0035329 hippo signaling 0.08216564547108685 0.1246158857377085 1.0 3733 +Biological Process GO:0006836 neurotransmitter transport 0.08215397053637319 0.12447720519426694 1.0 3734 +Phenotype HP:0008034 Abnormal iris pigmentation 0.08214515688132296 0.1243725123199982 1.0 3735 +Phenotype HP:0003256 Abnormality of the coagulation cascade 0.08212337606556619 0.12411378921448775 1.0 3736 +Phenotype HP:0005262 Abnormal synovial membrane morphology 0.08210543837685502 0.12390071663810406 1.0 3737 +Biological Process GO:0006891 intra-Golgi vesicle-mediated transport 0.08210479975745855 0.12389313080682297 1.0 3738 +Disease MONDO:0015362 neuronopathy, distal hereditary motor, autosomal dominant 0.08203789084985247 0.12309835431380858 1.0 3739 +Phenotype HP:0031547 Abnormal QT interval 0.08202869688761183 0.1229891439660692 1.0 3740 +Biological Process GO:0046889 positive regulation of lipid biosynthetic process 0.08201947970368073 0.12287965777981497 1.0 3741 +Biological Process GO:0051146 striated muscle cell differentiation 0.0819228289676669 0.1217315934074509 1.0 3742 +Phenotype HP:0000646 Amblyopia 0.08191458878988911 0.12163371257468346 1.0 3743 +Phenotype HP:0008775 Abnormal prostate morphology 0.08190651849037833 0.12153784963845808 1.0 3744 +Biological Process GO:0030656 regulation of vitamin metabolic process 0.08188913611353399 0.12133137332606725 1.0 3745 +Phenotype HP:0005112 Abdominal aortic aneurysm 0.0818859610463436 0.12129365833628566 1.0 3746 +Phenotype HP:0007902 Vitreous hemorrhage 0.0818854823835139 0.1212879725467736 1.0 3747 +Phenotype HP:0002232 Patchy alopecia 0.08187345494282972 0.1211451047662504 1.0 3748 +Phenotype HP:0003587 Insidious onset 0.08186486684139427 0.12104309112733849 1.0 3749 +Phenotype HP:0002101 Abnormal lung lobation 0.08185519839239219 0.1209282445954537 1.0 3750 +Phenotype HP:0008544 Abnormally folded helix 0.0818023292264094 0.12030023897061544 1.0 3751 +Phenotype HP:0012727 Thoracic aortic aneurysm 0.08180152438249733 0.12029067864382567 1.0 3752 +Phenotype HP:0005769 Fifth finger distal phalanx clinodactyly 0.08177166426107818 0.11993598562264808 1.0 3753 +Phenotype HP:0007420 Spontaneous hematomas 0.08176723951175058 0.1198834263016416 1.0 3754 +Biological Process GO:0014911 positive regulation of smooth muscle cell migration 0.08176502232342375 0.11985708946211164 1.0 3755 +Biological Process GO:0033143 regulation of intracellular steroid hormone receptor signaling pathway 0.0817200139817178 0.11932245852495668 1.0 3756 +Phenotype HP:0001660 Truncus arteriosus 0.08162355939948096 0.11817672416240078 1.0 3757 +Phenotype HP:0003498 Disproportionate short stature 0.08156544682656708 0.11748643480403226 1.0 3758 +Biological Process GO:0051125 regulation of actin nucleation 0.08154346761784237 0.11722535509051638 1.0 3759 +Biological Process GO:0071772 response to BMP 0.081543212017545 0.11722231894607422 1.0 3760 +Biological Process GO:0071773 cellular response to BMP stimulus 0.081543212017545 0.11722231894607422 1.0 3760 +Biological Process GO:1902914 regulation of protein polyubiquitination 0.08153956408677643 0.11717898705310607 1.0 3762 +Phenotype HP:0031650 Abnormal atrioventricular valve physiology 0.08152262535945509 0.11697778062516917 1.0 3763 +Phenotype HP:0001634 Mitral valve prolapse 0.08147015774770061 0.11635454485643457 1.0 3764 +Phenotype HP:0009811 Abnormality of the elbow 0.08143842773839305 0.11597764039897056 1.0 3765 +Phenotype HP:0000572 Visual loss 0.08140179414214821 0.1155424887548667 1.0 3766 +Phenotype HP:0004431 Reduced circulating complement concentration 0.08138593654150905 0.1153541244746155 1.0 3767 +Phenotype HP:0002904 Hyperbilirubinemia 0.08136127287140238 0.11506115742533035 1.0 3768 +Phenotype HP:0005257 Thoracic hypoplasia 0.08133740952782109 0.11477769704312243 1.0 3769 +Phenotype HP:0040126 Abnormal circulating vitamin B12 concentration 0.08132329117710102 0.11460999241792502 1.0 3770 +Biological Process GO:0032660 regulation of interleukin-17 production 0.08121104387190015 0.11327666442364519 1.0 3771 +Disease MONDO:0003689 familial hemolytic anemia 0.0811949035000965 0.11308494125019913 1.0 3772 +Phenotype HP:0007598 Bilateral single transverse palmar creases 0.08111029681455717 0.11207994195751281 1.0 3773 +Phenotype HP:0010173 Aplasia/Hypoplasia of the phalanges of the toes 0.08104713265401342 0.11132964738841422 1.0 3774 +Phenotype HP:0005162 Abnormal left ventricular function 0.08101661216545031 0.11096711020565093 1.0 3775 +Biological Process GO:0062012 regulation of small molecule metabolic process 0.08101124771315149 0.11090338863646768 1.0 3776 +Biological Process GO:0006801 superoxide metabolic process 0.08100707862547718 0.11085386618871877 1.0 3777 +Disease MONDO:0001933 endocrine pancreas disorder 0.08098582753625905 0.11060143543224968 1.0 3778 +Phenotype HP:0008067 Abnormally lax or hyperextensible skin 0.08092205168075361 0.10984387485337997 1.0 3779 +Phenotype HP:0012735 Cough 0.08089972639059884 0.10957868421659349 1.0 3780 +Phenotype HP:0002406 Limb dysmetria 0.080764902518351 0.10797718079659115 1.0 3781 +Phenotype HP:0006709 Aplasia/Hypoplasia of the nipples 0.0807612165335645 0.10793339687952033 1.0 3782 +Phenotype HP:0011546 Abnormal atrioventricular connection 0.08076029973809962 0.10792250673782683 1.0 3783 +Biological Process GO:0045745 positive regulation of G protein-coupled receptor signaling pathway 0.08074760273316384 0.10777168554800771 1.0 3784 +Phenotype HP:0000098 Tall stature 0.0807442075632484 0.10773135607118436 1.0 3785 +Phenotype HP:0010679 Elevated tissue non-specific alkaline phosphatase 0.0807421274278759 0.1077066472131936 1.0 3786 +Phenotype HP:0001397 Hepatic steatosis 0.08074160500994154 0.10770044167930265 1.0 3787 +Phenotype HP:0004426 Abnormal cheek morphology 0.08072212753290964 0.10746907874958149 1.0 3788 +Phenotype HP:0030318 Angular cheilitis 0.08069830941568457 0.10718615558799294 1.0 3789 +Phenotype HP:0002871 Central apnea 0.08067883203367698 0.1069547937870168 1.0 3790 +Phenotype HP:0008897 Postnatal growth retardation 0.08066860973160506 0.10683336831943792 1.0 3791 +Phenotype HP:0010958 Bilateral renal agenesis 0.0806646260414875 0.10678604811389025 1.0 3792 +Phenotype HP:0003031 Ulnar bowing 0.08064379713930403 0.10653863230001717 1.0 3793 +Phenotype HP:0012725 Cutaneous syndactyly 0.08058677381466484 0.10586128156155374 1.0 3794 +Phenotype HP:0004188 Abnormal 4th finger morphology 0.08058476448194973 0.10583741373190673 1.0 3795 +Phenotype HP:0002246 Abnormal duodenum morphology 0.08057810148718558 0.10575826744479647 1.0 3796 +Biological Process GO:0051865 protein autoubiquitination 0.08056359230036703 0.10558592027864583 1.0 3797 +Phenotype HP:0001120 Abnormality of corneal size 0.08053629333896761 0.10526164995978636 1.0 3798 +Biological Process GO:0009792 embryo development ending in birth or egg hatching 0.08053087788810442 0.10519732260489251 1.0 3799 +Phenotype HP:0000331 Short chin 0.08052513889730761 0.10512915208556815 1.0 3800 +Phenotype HP:0011425 Fetal ultrasound soft marker 0.08052079903965781 0.10507760114913081 1.0 3801 +Biological Process GO:0070979 protein K11-linked ubiquitination 0.08050016639620394 0.10483251659174386 1.0 3802 +Phenotype HP:0000541 Retinal detachment 0.08045022576304439 0.10423929750176636 1.0 3803 +Biological Process GO:0060390 regulation of SMAD protein signal transduction 0.08038997347042875 0.10352359151381234 1.0 3804 +Phenotype HP:0009767 Aplasia/Hypoplasia of the phalanges of the hand 0.08038851345648257 0.10350624875923123 1.0 3805 +Biological Process GO:0009314 response to radiation 0.08027636698815965 0.10217411855435042 1.0 3806 +Biological Process GO:0050808 synapse organization 0.08023141387436994 0.10164014364120118 1.0 3807 +Phenotype HP:0009139 Osteolysis involving bones of the lower limbs 0.08020560275623057 0.10133354664702565 1.0 3808 +Phenotype HP:0005264 Abnormality of the gallbladder 0.08018400054812269 0.10107694512989397 1.0 3809 +Biological Process GO:0051452 intracellular pH reduction 0.0801772237447046 0.1009964469683309 1.0 3810 +Phenotype HP:0100277 Periauricular skin pits 0.08014640150560659 0.10063032544619538 1.0 3811 +Biological Process GO:0042692 muscle cell differentiation 0.08014539203361148 0.10061833444767557 1.0 3812 +Phenotype HP:0001611 Hypernasal speech 0.08014268339716235 0.10058615994871994 1.0 3813 +Phenotype HP:0002521 Hypsarrhythmia 0.08014123201711432 0.10056891975177339 1.0 3814 +Biological Process GO:0022600 digestive system process 0.08013972538319569 0.10055102322252274 1.0 3815 +Phenotype HP:0010743 Short metatarsal 0.08008598755619223 0.09991269922029158 1.0 3816 +Phenotype HP:0008905 Rhizomelia 0.0800844750077555 0.0998947324355231 1.0 3817 +Phenotype HP:0012132 Erythroid hyperplasia 0.08006022657209111 0.09960669774256566 1.0 3818 +Biological Process GO:0033627 cell adhesion mediated by integrin 0.08005710041228209 0.09956956369840754 1.0 3819 +Biological Process GO:0030316 osteoclast differentiation 0.08005602122991251 0.09955674464621099 1.0 3820 +Disease MONDO:0005453 congenital heart disease 0.08005173453823522 0.09950582524101056 1.0 3821 +Biological Process GO:0014032 neural crest cell development 0.08000108192441302 0.09890414889901089 1.0 3822 +Disease MONDO:0019181 non-syndromic X-linked intellectual disability 0.0799937302018846 0.09881682156909619 1.0 3823 +Phenotype HP:0031072 Abnormal endocrine physiology 0.07992877049574343 0.09804519863754141 1.0 3824 +Phenotype HP:0030345 Abnormal circulating luteinizing hormone concentration 0.07992494857416599 0.09799979999726204 1.0 3825 +Phenotype HP:0000396 Overfolded helix 0.07988961400178085 0.09758007878932123 1.0 3826 +Biological Process GO:0043030 regulation of macrophage activation 0.07982612130818145 0.09682588174506425 1.0 3827 +Biological Process GO:0080164 regulation of nitric oxide metabolic process 0.07975382096765837 0.09596706319398303 1.0 3828 +Biological Process GO:0030279 negative regulation of ossification 0.07974818678675133 0.09590013765742111 1.0 3829 +Phenotype HP:0032152 Keratosis pilaris 0.0797234718778107 0.0956065619683866 1.0 3830 +Phenotype HP:0008997 Proximal muscle weakness in upper limbs 0.07972006237781826 0.09556606227195033 1.0 3831 +Disease MONDO:0015974 severe combined immunodeficiency 0.0796936900449976 0.0952527988972856 1.0 3832 +Biological Process GO:0070936 protein K48-linked ubiquitination 0.07964815714336282 0.09471193698258931 1.0 3833 +Biological Process GO:1990776 response to angiotensin 0.07963182602465757 0.09451794802482638 1.0 3834 +Phenotype HP:0008062 Aplasia/Hypoplasia affecting the anterior segment of the eye 0.0796267723225682 0.09445791769751972 1.0 3835 +Phenotype HP:0008214 Decreased serum estradiol 0.07962299510549153 0.09441305007900731 1.0 3836 +Biological Process GO:0071347 cellular response to interleukin-1 0.0796069731276291 0.09422273324628258 1.0 3837 +Biological Process GO:0044070 regulation of monoatomic anion transport 0.07955172074861261 0.09356641865983073 1.0 3838 +Phenotype HP:0034241 Prenatal death 0.07955075633691777 0.09355496290943711 1.0 3839 +Phenotype HP:0009553 Abnormality of the hairline 0.07954520019800437 0.09348896439356999 1.0 3840 +Phenotype HP:0008193 Primary gonadal insufficiency 0.07954364571952155 0.09347049954335426 1.0 3841 +Phenotype HP:0500093 Food allergy 0.07952552083488973 0.0932552033629297 1.0 3842 +Biological Process GO:0002526 acute inflammatory response 0.07949913793671759 0.09294181448788992 1.0 3843 +Phenotype HP:0010450 Esophageal stenosis 0.07946698193722679 0.09255984991218447 1.0 3844 +Phenotype HP:0025380 Increased circulating androstenedione concentration 0.07945699084124125 0.09244117082276473 1.0 3845 +Phenotype HP:0001773 Short foot 0.0794442445452398 0.09228976412973366 1.0 3846 +Biological Process GO:0050795 regulation of behavior 0.07944177755184689 0.09226045998433281 1.0 3847 +Phenotype HP:0002331 Recurrent paroxysmal headache 0.07943389643427945 0.09216684424309005 1.0 3848 +Disease MONDO:0011348 non-syndromic polydactyly 0.07943200536468087 0.09214438120016526 1.0 3849 +Biological Process GO:0060966 regulation of gene silencing by regulatory ncRNA 0.07942495705248687 0.09206065792552744 1.0 3850 +Biological Process GO:1900368 regulation of post-transcriptional gene silencing by regulatory ncRNA 0.07942495705248687 0.09206065792552744 1.0 3850 +Biological Process GO:0060964 regulation of miRNA-mediated gene silencing 0.07942495705248687 0.09206065792552744 1.0 3850 +Biological Process GO:0060147 regulation of post-transcriptional gene silencing 0.07942495705248687 0.09206065792552744 1.0 3850 +Biological Process GO:0051453 regulation of intracellular pH 0.07940283567673057 0.0917978894829793 1.0 3854 +Phenotype HP:0003445 EMG 0.07939093518025908 0.0916565296074539 1.0 3855 +Biological Process GO:0140253 cell-cell fusion 0.07937803232297069 0.09150326320343628 1.0 3856 +Phenotype HP:0009723 Abnormality of the subungual region 0.0792899342964436 0.0904567920672324 1.0 3857 +Phenotype HP:0006705 Abnormal atrioventricular valve morphology 0.07928454780874228 0.09039280875083865 1.0 3858 +Biological Process GO:0051017 actin filament bundle assembly 0.07927046294729523 0.09022550192748732 1.0 3859 +Phenotype HP:0010995 Abnormal circulating dicarboxylic acid concentration 0.07926540604068033 0.09016543353527037 1.0 3860 +Biological Process GO:0060766 negative regulation of androgen receptor signaling pathway 0.07921769160704317 0.08959865832417929 1.0 3861 +Biological Process GO:0140042 lipid droplet formation 0.07918026354199936 0.08915406959391685 1.0 3862 +Phenotype HP:0002653 Bone pain 0.07917596229126755 0.08910297724919754 1.0 3863 +Phenotype HP:0006494 Aplasia/Hypoplasia involving bones of the feet 0.0791605334901273 0.08891970645760341 1.0 3864 +Phenotype HP:0003396 Syringomyelia 0.07911500534088678 0.08837890099415367 1.0 3865 +Phenotype HP:0100255 Metaphyseal dysplasia 0.07909307744468408 0.08811843079568965 1.0 3866 +Phenotype HP:0001818 Paronychia 0.07906972336379492 0.0878410196830178 1.0 3867 +Biological Process GO:0034389 lipid droplet organization 0.07906456132160522 0.08777970243939344 1.0 3868 +Phenotype HP:0031108 Triceps weakness 0.07905626122538822 0.08768110986631089 1.0 3869 +Biological Process GO:0048640 negative regulation of developmental growth 0.07905478621915685 0.08766358902608659 1.0 3870 +Phenotype HP:0009104 Aplasia/Hypoplasia of the pubic bone 0.07902243626353966 0.0872793205453341 1.0 3871 +Phenotype HP:0012590 Abnormal urine output 0.07901450534127086 0.08718511319966525 1.0 3872 +Biological Process GO:0008643 carbohydrate transport 0.07890928910055428 0.08593530360335251 1.0 3873 +Biological Process GO:0034219 carbohydrate transmembrane transport 0.07890928910055428 0.08593530360335251 1.0 3873 +Phenotype HP:0009731 Cerebral hamartoma 0.07890897216286397 0.08593153886357384 1.0 3875 +Biological Process GO:0051781 positive regulation of cell division 0.07890646527973 0.08590176088845963 1.0 3876 +Biological Process GO:1901203 positive regulation of extracellular matrix assembly 0.07885112369266745 0.08524438664552057 1.0 3877 +Biological Process GO:0007507 heart development 0.07884341747500834 0.08515284845031387 1.0 3878 +Phenotype HP:0010628 Facial palsy 0.07883681216085292 0.08507438732148169 1.0 3879 +Phenotype HP:0002623 Overriding aorta 0.07870285821053447 0.08348321725655816 1.0 3880 +Phenotype HP:0011185 EEG with focal epileptiform discharges 0.07870103658667782 0.08346157912387633 1.0 3881 +Biological Process GO:0070293 renal absorption 0.07861242482933772 0.08240900564362712 1.0 3882 +Biological Process GO:2000628 regulation of miRNA metabolic process 0.07859537185013044 0.08220644207631243 1.0 3883 +Biological Process GO:0035456 response to interferon-beta 0.07858840198137151 0.08212365059088571 1.0 3884 +Biological Process GO:0032725 positive regulation of granulocyte macrophage colony-stimulating factor production 0.07858529093836897 0.08208669611149505 1.0 3885 +Phenotype HP:0000889 Abnormal clavicle morphology 0.07858001461879738 0.08202402142563976 1.0 3886 +Phenotype HP:0012762 Cerebral white matter atrophy 0.07857703635966462 0.08198864421752934 1.0 3887 +Phenotype HP:0000926 Platyspondyly 0.07856351734089861 0.08182805874829556 1.0 3888 +Phenotype HP:0040130 Abnormal circulating iron concentration 0.07850656666804168 0.08115157100297875 1.0 3889 +Phenotype HP:0005181 Premature coronary artery atherosclerosis 0.07849828134367487 0.08105315389710539 1.0 3890 +Biological Process GO:0035458 cellular response to interferon-beta 0.07849279790554098 0.08098801895639805 1.0 3891 +Disease MONDO:0015967 monogenic diabetes 0.07846210967979828 0.08062348930996867 1.0 3892 +Biological Process GO:0030511 positive regulation of transforming growth factor beta receptor signaling pathway 0.07845801423093168 0.0805748415797341 1.0 3893 +Biological Process GO:1903846 positive regulation of cellular response to transforming growth factor beta stimulus 0.07845801423093168 0.0805748415797341 1.0 3893 +Biological Process GO:0014074 response to purine-containing compound 0.07844490777335955 0.08041915671268549 1.0 3895 +Phenotype HP:0004944 Dilatation of the cerebral artery 0.07843839974751876 0.08034185122169402 1.0 3896 +Phenotype HP:0010972 Anemia of inadequate production 0.07837342566212535 0.07957005748639918 1.0 3897 +Phenotype HP:0006892 Frontotemporal cerebral atrophy 0.07836639101874299 0.07948649657654307 1.0 3898 +Disease MONDO:0020605 X-linked recessive disease 0.07828682638171691 0.07854138918432789 1.0 3899 +Phenotype HP:0000597 Ophthalmoparesis 0.07825020443635966 0.07810637593512404 1.0 3900 +Biological Process GO:0045931 positive regulation of mitotic cell cycle 0.07824127472136277 0.07800030444445456 1.0 3901 +Biological Process GO:0031579 membrane raft organization 0.07823547791022345 0.07793144710702643 1.0 3902 +Disease MONDO:0020070 neonatal epilepsy syndrome 0.07822885685830439 0.07785279903739598 1.0 3903 +Biological Process GO:0160049 negative regulation of cGAS/STING signaling pathway 0.07822016505320484 0.07774955355600725 1.0 3904 +Phenotype HP:0006500 Abnormal lower limb epiphysis morphology 0.07818520135966067 0.07733423782702445 1.0 3905 +Phenotype HP:0010780 Hyperacusis 0.07816348070327095 0.07707622932368689 1.0 3906 +Phenotype HP:0011219 Short face 0.07814780396867993 0.0768900134581773 1.0 3907 +Phenotype HP:0000130 Abnormality of the uterus 0.07808373552793557 0.07612897740977115 1.0 3908 +Biological Process GO:0046902 regulation of mitochondrial membrane permeability 0.07807675175239082 0.07604602073278968 1.0 3909 +Biological Process GO:0030041 actin filament polymerization 0.07804650253032697 0.07568670578522153 1.0 3910 +Phenotype HP:0100244 Fibrosarcoma 0.0780434579614454 0.0756505409177173 1.0 3911 +Phenotype HP:0007328 Impaired pain sensation 0.07798509007740728 0.07495721884984546 1.0 3912 +Biological Process GO:0090322 regulation of superoxide metabolic process 0.07797643021453404 0.07485435279373079 1.0 3913 +Phenotype HP:0002624 Abnormal venous morphology 0.07796831499503543 0.07475795627607838 1.0 3914 +Phenotype HP:0008765 Auditory hallucination 0.07796637070090173 0.07473486100628168 1.0 3915 +Phenotype HP:0011948 Recurrent acute respiratory tract infection 0.07794114684237363 0.07443523976692021 1.0 3916 +Phenotype HP:0100836 Malignant neoplasm of the central nervous system 0.07792030615024337 0.07418768390633433 1.0 3917 +Disease MONDO:0021635 neurocristopathy 0.0779133638152737 0.07410521948062569 1.0 3918 +Phenotype HP:0010034 Short 1st metacarpal 0.07789054135855422 0.07383412325797822 1.0 3919 +Biological Process GO:0009205 purine ribonucleoside triphosphate metabolic process 0.07786429630211456 0.07352237173396757 1.0 3920 +Phenotype HP:0031941 Abnormal portal venous system morphology 0.07783735125352886 0.07320230536335637 1.0 3921 +Phenotype HP:0011119 Abnormal nasal dorsum morphology 0.07781025633584027 0.07288045877477 1.0 3922 +Phenotype HP:0011563 Abnormal ventriculoarterial connection 0.07778561088672487 0.07258770816326661 1.0 3923 +Phenotype HP:0034644 Abnormal liver metabolite concentration 0.07778484189734736 0.072578573734048 1.0 3924 +Phenotype HP:0025133 Abnormal serum estradiol 0.07778343480767302 0.07256185963966603 1.0 3925 +Biological Process GO:0045540 regulation of cholesterol biosynthetic process 0.07777637828712192 0.07247803886217685 1.0 3926 +Biological Process GO:0106118 regulation of sterol biosynthetic process 0.07777637828712192 0.07247803886217685 1.0 3926 +Phenotype HP:0011545 Abnormal connection of the cardiac segments 0.07776098895229344 0.07229523687059736 1.0 3928 +Biological Process GO:0045591 positive regulation of regulatory T cell differentiation 0.07765129815339433 0.07099227629951398 1.0 3929 +Phenotype HP:0012757 Abnormal neuron morphology 0.07760760533110989 0.07047327174081484 1.0 3930 +Phenotype HP:0030242 Portal vein thrombosis 0.07754792327844351 0.06976433933986537 1.0 3931 +Phenotype HP:0003805 Rimmed vacuoles 0.0775373606484242 0.06963887129167697 1.0 3932 +Phenotype HP:0002230 Generalized hirsutism 0.0775177488442712 0.06940591275918723 1.0 3933 +Biological Process GO:0002028 regulation of sodium ion transport 0.07748632389848942 0.06903263199440983 1.0 3934 +Phenotype HP:0000774 Narrow chest 0.0774712901418122 0.06885405373276644 1.0 3935 +Biological Process GO:0030512 negative regulation of transforming growth factor beta receptor signaling pathway 0.07744993250207721 0.06860035731752119 1.0 3936 +Biological Process GO:0032467 positive regulation of cytokinesis 0.07744472074833142 0.06853844957589547 1.0 3937 +Biological Process GO:1900044 regulation of protein K63-linked ubiquitination 0.07744209564698312 0.06850726734742912 1.0 3938 +Biological Process GO:0070232 regulation of T cell apoptotic process 0.07742386368819221 0.06829069928815161 1.0 3939 +Phenotype HP:0100607 Dysmenorrhea 0.07742186733891654 0.0682669856821025 1.0 3940 +Phenotype HP:0000630 Abnormal retinal artery morphology 0.07741193236618915 0.06814897325199447 1.0 3941 +Disease MONDO:0019312 Hermansky-Pudlak syndrome 0.0773884812364678 0.06787040934617053 1.0 3942 +Phenotype HP:0100323 Juvenile aseptic necrosis 0.07736139650524332 0.06754868375735111 1.0 3943 +Disease MONDO:0018943 myofibrillar myopathy 0.07734650411855626 0.06737178475709482 1.0 3944 +Phenotype HP:0012804 Corneal ulceration 0.07732415168064855 0.06710627164611704 1.0 3945 +Biological Process GO:0009880 embryonic pattern specification 0.07731668850285378 0.06701762039643012 1.0 3946 +Phenotype HP:3000022 Abnormality of cartilage of external ear 0.07730683609843192 0.06690058875274722 1.0 3947 +Phenotype HP:0033747 Abnormal exteroceptive sensation 0.07730551447642164 0.06688488988477882 1.0 3948 +Phenotype HP:0002389 Cavum septum pellucidum 0.0772934909171199 0.06674206820920088 1.0 3949 +Phenotype HP:0007020 Progressive spastic paraplegia 0.07726315075014178 0.06638167297378163 1.0 3950 +Biological Process GO:0051259 protein complex oligomerization 0.07725008425043567 0.06622646274566758 1.0 3951 +Phenotype HP:0006499 Abnormal femoral epiphysis morphology 0.07722389961575349 0.0659154289406309 1.0 3952 +Phenotype HP:0010944 Abnormal renal pelvis morphology 0.07721993176903641 0.0658682969306871 1.0 3953 +Biological Process GO:0051784 negative regulation of nuclear division 0.0772018678406492 0.06565372481813406 1.0 3954 +Phenotype HP:0100631 Neoplasm of the adrenal gland 0.07710376398017915 0.06448839952789615 1.0 3955 +Phenotype HP:0010827 Abnormal seventh cranial physiology 0.07710151047278002 0.06446163127279014 1.0 3956 +Biological Process GO:0002548 monocyte chemotaxis 0.07710102419464804 0.06445585502501992 1.0 3957 +Phenotype HP:0008221 Adrenal hyperplasia 0.07709273091912039 0.06435734347139731 1.0 3958 +Biological Process GO:0003081 regulation of systemic arterial blood pressure by renin-angiotensin 0.077082274459229 0.0642331365635405 1.0 3959 +Phenotype HP:0000049 Shawl scrotum 0.07705790736086415 0.063943692337409 1.0 3960 +Biological Process GO:0086069 bundle of His cell to Purkinje myocyte communication 0.07705524395278474 0.06391205508299007 1.0 3961 +Phenotype HP:0001838 Rocker bottom foot 0.07704757844438137 0.06382100045209 1.0 3962 +Phenotype HP:0000974 Hyperextensible skin 0.07703331500184518 0.06365157235584958 1.0 3963 +Phenotype HP:0040049 Macular edema 0.07702096381180257 0.0635048589232463 1.0 3964 +Phenotype HP:0010783 Erythema 0.07697694733553906 0.06298200984542957 1.0 3965 +Phenotype HP:0012093 Abnormality of endocrine pancreas physiology 0.07697275201733167 0.06293217581867218 1.0 3966 +Phenotype HP:0004921 Abnormal magnesium concentration 0.0769352670550224 0.06248691123506348 1.0 3967 +Biological Process GO:0070168 negative regulation of biomineral tissue development 0.07688824853570664 0.06192840243219192 1.0 3968 +Phenotype HP:0010553 Oculogyric crisis 0.07688518202657357 0.06189197694772694 1.0 3969 +Phenotype HP:0011900 Hypofibrinogenemia 0.0768605102666513 0.06159891380368404 1.0 3970 +Phenotype HP:0003236 Elevated circulating creatine kinase concentration 0.07685399108934166 0.06152147585013073 1.0 3971 +Phenotype HP:0002673 Coxa valga 0.07681838265360941 0.061098501560375114 1.0 3972 +Biological Process GO:0090136 epithelial cell-cell adhesion 0.07679788781250507 0.06085505388620758 1.0 3973 +Biological Process GO:0045923 positive regulation of fatty acid metabolic process 0.07679189813066944 0.06078390553699795 1.0 3974 +Phenotype HP:0034376 Atrioventricular valve regurgitation 0.07678532531299309 0.060705830417123165 1.0 3975 +Biological Process GO:0002244 hematopoietic progenitor cell differentiation 0.07678384655739634 0.06068826504011641 1.0 3976 +Phenotype HP:0010579 Cone-shaped epiphysis 0.07675983293594679 0.060403019584419966 1.0 3977 +Phenotype HP:0010574 Abnormality of the epiphysis of the femoral head 0.07675773921379736 0.06037814933609564 1.0 3978 +Phenotype HP:0010580 Enlarged epiphyses 0.07675018640299092 0.060288433381973545 1.0 3979 +Phenotype HP:0011318 Bicoronal synostosis 0.07673447770855901 0.06010183788195541 1.0 3980 +Biological Process GO:0051000 positive regulation of nitric-oxide synthase activity 0.07671761391299858 0.05990152152985864 1.0 3981 +Phenotype HP:0001718 Mitral stenosis 0.07670008956285279 0.059693358789656266 1.0 3982 +Phenotype HP:0005048 Synostosis of carpal bones 0.0766122809537999 0.05865032549474136 1.0 3983 +Phenotype HP:0100027 Recurrent pancreatitis 0.07660639574363937 0.058580418110815984 1.0 3984 +Phenotype HP:0000952 Jaundice 0.07657873815893157 0.05825188789016545 1.0 3985 +Phenotype HP:0006298 Prolonged bleeding after dental extraction 0.07655338959465086 0.05795078533532198 1.0 3986 +Biological Process GO:0015749 monosaccharide transmembrane transport 0.07653072966983732 0.057681619745572635 1.0 3987 +Phenotype HP:0001655 Patent foramen ovale 0.07647360867003583 0.057003108774104076 1.0 3988 +Phenotype HP:0100335 Non-midline cleft of the upper lip 0.07645347817421166 0.056763988970086846 1.0 3989 +Disease MONDO:0800064 osteogenesis imperfecta and a reduction of bone mineral density. 0.07643507132475491 0.05654534347456013 1.0 3990 +Phenotype HP:0003220 Abnormality of chromosome stability 0.07641771060268099 0.056339124388047106 1.0 3991 +Biological Process GO:0072663 establishment of protein localization to peroxisome 0.0764077942617244 0.05622133327515945 1.0 3992 +Biological Process GO:0072662 protein localization to peroxisome 0.0764077942617244 0.05622133327515945 1.0 3992 +Phenotype HP:0025691 Impaired fasting glucose 0.0763916448182187 0.056029502343631486 1.0 3994 +Biological Process GO:0006611 protein export from nucleus 0.0763823048838379 0.05591855806793274 1.0 3995 +Phenotype HP:0002548 Parkinsonism with favorable response to dopaminergic medication 0.07635647459722861 0.055611733381363986 1.0 3996 +Phenotype HP:0001964 Aplasia/Hypoplasia of metatarsal bones 0.07635144946482708 0.055552042418681835 1.0 3997 +Phenotype HP:0000834 Abnormality of the adrenal glands 0.07633809415785064 0.055393401597576886 1.0 3998 +Biological Process GO:1901880 negative regulation of protein depolymerization 0.07633035624767293 0.05530148694324544 1.0 3999 +Phenotype HP:0030880 Raynaud phenomenon 0.07631839842846067 0.0551594461603713 1.0 4000 +Biological Process GO:0000226 microtubule cytoskeleton organization 0.07630117411015258 0.054954847344021486 1.0 4001 +Phenotype HP:0002031 Abnormal esophagus morphology 0.07628230707044192 0.05473073548520768 1.0 4002 +Biological Process GO:0014910 regulation of smooth muscle cell migration 0.07625502707773457 0.054406690485683015 1.0 4003 +Biological Process GO:0010466 negative regulation of peptidase activity 0.07622373444597397 0.05403498141109599 1.0 4004 +Phenotype HP:0005750 Lower-limb joint contracture 0.0762122789215961 0.053898907130160406 1.0 4005 +Biological Process GO:0045933 positive regulation of muscle contraction 0.07618044735549356 0.05352079633177351 1.0 4006 +Phenotype HP:0020110 Bone fracture 0.07615020889276614 0.053161609188827716 1.0 4007 +Phenotype HP:0007109 Periventricular cysts 0.07613861380603848 0.053023877118535075 1.0 4008 +Biological Process GO:0044843 cell cycle G1/S phase transition 0.07613471044981734 0.052977511158016265 1.0 4009 +Phenotype HP:0011448 Ankle clonus 0.07611362205616745 0.05272701297850562 1.0 4010 +Phenotype HP:0000126 Hydronephrosis 0.07604330272647553 0.0518917258359818 1.0 4011 +Phenotype HP:0100508 Abnormality of vitamin metabolism 0.07601098977994614 0.051507896967144355 1.0 4012 +Phenotype HP:0002885 Medulloblastoma 0.07600656173645481 0.0514552985164617 1.0 4013 +Phenotype HP:0430106 Abnormal brain-evoked potentials 0.07600307315924415 0.05141385950243049 1.0 4014 +Biological Process GO:0032648 regulation of interferon-beta production 0.07595482877268978 0.050840789253263345 1.0 4015 +Phenotype HP:0004418 Thrombophlebitis 0.07593484017375474 0.05060335496939502 1.0 4016 +Biological Process GO:0009199 ribonucleoside triphosphate metabolic process 0.07591990232719703 0.05042591597472158 1.0 4017 +Biological Process GO:0050918 positive chemotaxis 0.07589265691080882 0.050102281689504646 1.0 4018 +Phenotype HP:0002363 Abnormal brainstem morphology 0.07587283900293218 0.04986687495690919 1.0 4019 +Biological Process GO:0018205 peptidyl-lysine modification 0.07586936415701939 0.04982559904990155 1.0 4020 +Phenotype HP:0002492 Abnormal corticospinal tract morphology 0.07586338798505832 0.04975461117754175 1.0 4021 +Phenotype HP:0002219 Facial hypertrichosis 0.07584554145045697 0.04954262137393549 1.0 4022 +Phenotype HP:0410018 Recurrent ear infections 0.07581980179624837 0.049236873263029904 1.0 4023 +Phenotype HP:0003366 Abnormal femoral neck/head morphology 0.07581601188851672 0.04919185489875563 1.0 4024 +Phenotype HP:0002982 Tibial bowing 0.07579781515867512 0.04897570530604393 1.0 4025 +Phenotype HP:0002023 Anal atresia 0.07575572826500054 0.048475776747151866 1.0 4026 +Biological Process GO:0010812 negative regulation of cell-substrate adhesion 0.07557741827497855 0.04635772410499157 1.0 4027 +Phenotype HP:0002647 Aortic dissection 0.075562922940557 0.04618554148433878 1.0 4028 +Phenotype HP:0000664 Synophrys 0.07554759461009275 0.046003464132219014 1.0 4029 +Phenotype HP:0010721 Abnormal hair whorl 0.07553246361677435 0.04582373084653717 1.0 4030 +Phenotype HP:0005272 Prominent nasolabial fold 0.07552362161664428 0.04571870127564678 1.0 4031 +Biological Process GO:0070373 negative regulation of ERK1 and ERK2 cascade 0.07549441239229937 0.04537173992596834 1.0 4032 +Biological Process GO:0010883 regulation of lipid storage 0.07545172996852012 0.04486473737132575 1.0 4033 +Phenotype HP:0002943 Thoracic scoliosis 0.07543772073611321 0.044698328906435866 1.0 4034 +Phenotype HP:0003041 Humeroradial synostosis 0.07540091712116104 0.04426115769757154 1.0 4035 +Phenotype HP:0003938 Synostosis involving the elbow 0.07540091712116104 0.04426115769757154 1.0 4035 +Phenotype HP:0005830 Flexion contracture of toe 0.07538169586438837 0.04403283827650052 1.0 4037 +Phenotype HP:0010981 Hypolipoproteinemia 0.07534412817208758 0.0435865909858819 1.0 4038 +Phenotype HP:0001810 Dystrophic toenail 0.07534116935141033 0.043551444677184636 1.0 4039 +Phenotype HP:0006979 Sleep-wake cycle disturbance 0.07530819746456952 0.04315978859537124 1.0 4040 +Phenotype HP:0004442 Sagittal craniosynostosis 0.07527491503090922 0.04276444368764609 1.0 4041 +Biological Process GO:0070588 calcium ion transmembrane transport 0.07521542646405732 0.04205780960515053 1.0 4042 +Phenotype HP:0000842 Hyperinsulinemia 0.0751672726851299 0.04148581563737207 1.0 4043 +Phenotype HP:0005339 Abnormality of complement system 0.0750865906430116 0.04052743516490112 1.0 4044 +Biological Process GO:0050994 regulation of lipid catabolic process 0.07504266031121787 0.04000560935292498 1.0 4045 +Phenotype HP:0010174 Broad phalanx of the toes 0.07502465872702735 0.039791777795012286 1.0 4046 +Biological Process GO:0000422 autophagy of mitochondrion 0.07502227647527304 0.03976348025194205 1.0 4047 +Phenotype HP:0031073 Abnormal response to endocrine stimulation test 0.07501729007519264 0.03970424937057723 1.0 4048 +Phenotype HP:0009601 Aplasia/Hypoplasia of the thumb 0.07501254510704558 0.0396478863349469 1.0 4049 +Phenotype HP:0004327 Abnormal vitreous humor morphology 0.07500272347520631 0.03953122022294205 1.0 4050 +Phenotype HP:0100539 Periorbital edema 0.07500183151798523 0.039520625121968876 1.0 4051 +Phenotype HP:0011703 Sinus tachycardia 0.07497536890428358 0.03920628934716269 1.0 4052 +Phenotype HP:0100874 Thick hair 0.07496091866588228 0.0390346423989354 1.0 4053 +Phenotype HP:0009701 Metacarpal synostosis 0.07494121699273038 0.03880061635883958 1.0 4054 +Biological Process GO:0035308 negative regulation of protein dephosphorylation 0.0749365665612487 0.03874537627562416 1.0 4055 +Biological Process GO:0007292 female gamete generation 0.07493448429010163 0.038720642047866155 1.0 4056 +Disease MONDO:0100118 hereditary skin disorder 0.07493434211735428 0.03871895325093932 1.0 4057 +Biological Process GO:0031998 regulation of fatty acid beta-oxidation 0.07491191045522672 0.038452499076209824 1.0 4058 +Phenotype HP:0001805 Onychogryposis 0.07487909866947962 0.0380627447529267 1.0 4059 +Biological Process GO:0006940 regulation of smooth muscle contraction 0.07486666526439456 0.03791505473012876 1.0 4060 +Phenotype HP:0007362 Aplasia/Hypoplasia of the brainstem 0.07486391873214271 0.037882430086427665 1.0 4061 +Phenotype HP:0002365 Hypoplasia of the brainstem 0.07486391873214271 0.037882430086427665 1.0 4061 +Biological Process GO:0090200 positive regulation of release of cytochrome c from mitochondria 0.07481193206365144 0.03726490719530163 1.0 4063 +Phenotype HP:0002599 Head titubation 0.07478915816598919 0.03699438778071429 1.0 4064 +Phenotype HP:0000117 Renal phosphate wasting 0.07476546074355694 0.03671289829047982 1.0 4065 +Phenotype HP:0003561 Birth length less than 3rd percentile 0.07475442649694841 0.03658182815144517 1.0 4066 +Phenotype HP:0007076 Extrapyramidal muscular rigidity 0.07474375242118991 0.03645503629665275 1.0 4067 +Phenotype HP:0000823 Delayed puberty 0.07473786011416639 0.03638504461274285 1.0 4068 +Phenotype HP:0100276 Skin pit 0.0747257011912712 0.036240615022674436 1.0 4069 +Phenotype HP:0003175 Hypoplastic ischia 0.07469630517655723 0.03589143488629386 1.0 4070 +Phenotype HP:0009237 Short 5th finger 0.07468284127652458 0.03573150414413846 1.0 4071 +Phenotype HP:0004225 Abnormality of the distal phalanx of the 5th finger 0.07467900026782193 0.035685878777717804 1.0 4072 +Phenotype HP:0002984 Hypoplasia of the radius 0.07462424468523865 0.03503546538052548 1.0 4073 +Phenotype HP:0012334 Extrahepatic cholestasis 0.07460326527011962 0.03478626170092037 1.0 4074 +Phenotype HP:0008362 Aplasia/Hypoplasia of the hallux 0.07459450078325847 0.0346821528702757 1.0 4075 +Disease MONDO:0021002 syndactyly 0.07458558618476552 0.03457626094078 1.0 4076 +Phenotype HP:0008376 Nasal dysarthria 0.07457560299999755 0.03445767582464397 1.0 4077 +Phenotype HP:0010442 Polydactyly 0.07455867353990686 0.034256579477372553 1.0 4078 +Phenotype HP:0006758 Malignant genitourinary tract tumor 0.07453468899213023 0.03397167937288007 1.0 4079 +Phenotype HP:0002857 Genu valgum 0.07453115705111202 0.03392972526248699 1.0 4080 +Biological Process GO:0043370 regulation of CD4-positive, alpha-beta T cell differentiation 0.07452859523270006 0.03389929473946627 1.0 4081 +Biological Process GO:0008631 intrinsic apoptotic signaling pathway in response to oxidative stress 0.0745260820630601 0.033869442090181515 1.0 4082 +Phenotype HP:0000491 Keratitis 0.07451043252599798 0.03368354929012625 1.0 4083 +Biological Process GO:0097035 regulation of membrane lipid distribution 0.07449479064702358 0.03349774745655539 1.0 4084 +Phenotype HP:0002578 Gastroparesis 0.07447973729079271 0.03331893638189698 1.0 4085 +Biological Process GO:0043457 regulation of cellular respiration 0.0744427012497837 0.03287900430347201 1.0 4086 +Disease MONDO:0002279 iron metabolism disease 0.07440572298036907 0.032439758464097024 1.0 4087 +Phenotype HP:0002803 Congenital contracture 0.07440104417332294 0.03238418132214892 1.0 4088 +Phenotype HP:0001417 X-linked inheritance 0.07440080490719114 0.03238133920285673 1.0 4089 +Phenotype HP:0003180 Flat acetabular roof 0.0743977750673509 0.03234534929405716 1.0 4090 +Phenotype HP:0001181 Adducted thumb 0.07435375881053707 0.0318225028229703 1.0 4091 +Phenotype HP:0000506 Telecanthus 0.07432328027883128 0.03146046402413096 1.0 4092 +Biological Process GO:0007417 central nervous system development 0.07422846619038836 0.030334216243421815 1.0 4093 +Phenotype HP:0010636 Schizencephaly 0.07421931068408416 0.030225462693968183 1.0 4094 +Phenotype HP:0010230 Cone-shaped epiphyses of the phalanges of the hand 0.07420133089581482 0.030011890038590543 1.0 4095 +Phenotype HP:0001325 Hypoglycemic coma 0.07419926287887035 0.02998732512917228 1.0 4096 +Phenotype HP:0011145 Symptomatic seizures 0.07419585284962593 0.029946819146024053 1.0 4097 +Phenotype HP:0031538 Abnormal dermoepidermal junction morphology 0.07415882807819096 0.02950702093307176 1.0 4098 +Phenotype HP:0000771 Gynecomastia 0.07414209133660277 0.02930821378974983 1.0 4099 +Phenotype HP:0000509 Conjunctivitis 0.07412701582166137 0.02912913950316826 1.0 4100 +Biological Process GO:0045069 regulation of viral genome replication 0.07410731779942681 0.028895156830441426 1.0 4101 +Biological Process GO:0046825 regulation of protein export from nucleus 0.07404115152897772 0.028109201742174683 1.0 4102 +Biological Process GO:0006972 hyperosmotic response 0.0740223854534714 0.027886289185204364 1.0 4103 +Biological Process GO:0071474 cellular hyperosmotic response 0.0740223854534714 0.027886289185204364 1.0 4103 +Biological Process GO:0045600 positive regulation of fat cell differentiation 0.07401830383326369 0.027837805718494712 1.0 4105 +Phenotype HP:0000836 Hyperthyroidism 0.07397251032644758 0.0272938482089145 1.0 4106 +Phenotype HP:0003127 Hypocalciuria 0.07396151584971411 0.02716325047576658 1.0 4107 +Biological Process GO:0043032 positive regulation of macrophage activation 0.07395147704325022 0.02704400465811864 1.0 4108 +Disease MONDO:0016340 familial restrictive cardiomyopathy 0.073883667774441 0.026238533237551435 1.0 4109 +Disease MONDO:0005201 restrictive cardiomyopathy 0.073883667774441 0.026238533237551435 1.0 4109 +Phenotype HP:0031295 Left atrial enlargement 0.07384534313282243 0.02578329453538985 1.0 4111 +Phenotype HP:0005113 Aortic arch aneurysm 0.07381208401553874 0.025388226590907604 1.0 4112 +Phenotype HP:0003083 Dislocated radial head 0.07378641233377614 0.025083285889720548 1.0 4113 +Phenotype HP:0011877 Increased mean platelet volume 0.07375172920159911 0.024671302804886743 1.0 4114 +Disease MONDO:0019019 osteogenesis imperfecta 0.07373378608993575 0.024458165812043662 1.0 4115 +Phenotype HP:0002595 Ileus 0.07364924178432475 0.023453907498435445 1.0 4116 +Biological Process GO:0099536 synaptic signaling 0.07358545528820304 0.022696220525158916 1.0 4117 +Phenotype HP:0000853 Goiter 0.07351374209363992 0.021844376378886306 1.0 4118 +Phenotype HP:0002611 Cholestatic liver disease 0.07349018951412145 0.02156460740311196 1.0 4119 +Biological Process GO:0006509 membrane protein ectodomain proteolysis 0.07346825947835378 0.02130411178985634 1.0 4120 +Biological Process GO:0031114 regulation of microtubule depolymerization 0.07344851041265454 0.021069522798071266 1.0 4121 +Biological Process GO:0007026 negative regulation of microtubule depolymerization 0.07344851041265454 0.021069522798071266 1.0 4121 +Phenotype HP:0034675 Toe joint contracture 0.07340902514695535 0.020600497639524314 1.0 4123 +Biological Process GO:0044057 regulation of system process 0.07340218702857004 0.020519271149008412 1.0 4124 +Phenotype HP:0011035 Abnormal renal cortex morphology 0.07339369057091938 0.020418346099470963 1.0 4125 +Biological Process GO:0072595 maintenance of protein localization in organelle 0.07339051109383066 0.020380578726775667 1.0 4126 +Biological Process GO:0070207 protein homotrimerization 0.07338840328048202 0.020355541096345 1.0 4127 +Biological Process GO:0070206 protein trimerization 0.07338840328048202 0.020355541096345 1.0 4127 +Phenotype HP:0006262 Aplasia/Hypoplasia of the 5th finger 0.07335799413534683 0.019994326504882788 1.0 4129 +Phenotype HP:0031105 Abnormal uterus morphology 0.07333275922983196 0.019694574044048466 1.0 4130 +Phenotype HP:0000824 Decreased response to growth hormone stimulation test 0.073292213373235 0.0192129506718344 1.0 4131 +Phenotype HP:0002573 Hematochezia 0.07327126137885953 0.01896407270913584 1.0 4132 +Phenotype HP:0001018 Abnormal palmar dermatoglyphics 0.07327072911368027 0.018957750204888414 1.0 4133 +Phenotype HP:0004388 Microcolon 0.07324621501655615 0.01866655985611712 1.0 4134 +Phenotype HP:0100811 Aplasia/Hypoplasia of the colon 0.07324621501655615 0.01866655985611712 1.0 4134 +Biological Process GO:0048608 reproductive structure development 0.07324318996067991 0.018630626773564887 1.0 4136 +Phenotype HP:0011817 Basal encephalocele 0.07323155017383254 0.018492363733545538 1.0 4137 +Phenotype HP:0000444 Convex nasal ridge 0.07318704093028316 0.017963661326637903 1.0 4138 +Biological Process GO:0070534 protein K63-linked ubiquitination 0.07316069003972159 0.01765065265353809 1.0 4139 +Phenotype HP:0002652 Skeletal dysplasia 0.07314776012313418 0.017497064826027687 1.0 4140 +Phenotype HP:0001518 Small for gestational age 0.0731198305612012 0.017165303927834403 1.0 4141 +Phenotype HP:0011960 Substantia nigra gliosis 0.07311565079444438 0.01711565462875812 1.0 4142 +Biological Process GO:0030194 positive regulation of blood coagulation 0.07308823531949349 0.016790000305359622 1.0 4143 +Biological Process GO:1900048 positive regulation of hemostasis 0.07308823531949349 0.016790000305359622 1.0 4143 +Biological Process GO:0050820 positive regulation of coagulation 0.07308823531949349 0.016790000305359622 1.0 4143 +Biological Process GO:0035305 negative regulation of dephosphorylation 0.07302077978152421 0.015988730671467877 1.0 4146 +Phenotype HP:0003956 Bowed forearm bones 0.07299983388020659 0.015739925085068853 1.0 4147 +Biological Process GO:0045670 regulation of osteoclast differentiation 0.07297851207413086 0.015486654319427806 1.0 4148 +Phenotype HP:0000633 Decreased lacrimation 0.07297023705138106 0.015388359581163297 1.0 4149 +Biological Process GO:0018210 peptidyl-threonine modification 0.07295892836740259 0.015254029541791949 1.0 4150 +Biological Process GO:0140694 non-membrane-bounded organelle assembly 0.07284273829091081 0.013873867395656167 1.0 4151 +Phenotype HP:0003292 Decreased serum leptin 0.07282002381451669 0.013604053815744404 1.0 4152 +Phenotype HP:0003173 Hypoplastic pubic bone 0.07281986953735953 0.01360222123676042 1.0 4153 +Biological Process GO:0062014 negative regulation of small molecule metabolic process 0.07280130497444814 0.013381702344239844 1.0 4154 +Phenotype HP:0001596 Alopecia 0.07279983441989679 0.013364234383232447 1.0 4155 +Phenotype HP:0009370 Type A brachydactyly 0.07276584130884567 0.012960447704380651 1.0 4156 +Phenotype HP:0034281 Phalangeal cone-shaped epiphyses 0.0727422214817377 0.012679879929085338 1.0 4157 +Biological Process GO:1903659 regulation of complement-dependent cytotoxicity 0.07273891093416118 0.012640555637493054 1.0 4158 +Phenotype HP:0025579 Abnormal left atrium morphology 0.07273793359843284 0.012628946369153978 1.0 4159 +Phenotype HP:0011933 Elongated superior cerebellar peduncle 0.07272002694761714 0.0124162424759636 1.0 4160 +Phenotype HP:0003103 Abnormal cortical bone morphology 0.07271828465198682 0.012395546642472843 1.0 4161 +Phenotype HP:0001649 Tachycardia 0.07266695681174884 0.011785849633241757 1.0 4162 +Phenotype HP:0001633 Abnormal mitral valve morphology 0.07261875797247197 0.01121332041675288 1.0 4163 +Phenotype HP:0007763 Retinal telangiectasia 0.07260269178737166 0.011022478468991343 1.0 4164 +Phenotype HP:0008282 Unconjugated hyperbilirubinemia 0.0725850657690319 0.01081310806461465 1.0 4165 +Phenotype HP:0012108 Open angle glaucoma 0.07255485144284901 0.010454207627264718 1.0 4166 +Phenotype HP:0006489 Abnormal femoral metaphysis morphology 0.07252750849740353 0.010129414844549003 1.0 4167 +Phenotype HP:0000148 Vaginal atresia 0.07251691471706989 0.010003576777801582 1.0 4168 +Phenotype HP:0001827 Genital tract atresia 0.07251691471706989 0.010003576777801582 1.0 4168 +Disease MONDO:0019171 familial long QT syndrome 0.07251638856979636 0.009997326945009138 1.0 4170 +Disease MONDO:0002442 long QT syndrome 0.07251638856979636 0.009997326945009138 1.0 4170 +Biological Process GO:0030534 adult behavior 0.07250812267836615 0.00989914067299254 1.0 4172 +Phenotype HP:0002842 Recurrent Burkholderia cepacia infections 0.0724903282316679 0.009687769594791265 1.0 4173 +Biological Process GO:0007586 digestion 0.07247199242299074 0.009469967956139297 1.0 4174 +Biological Process GO:0045428 regulation of nitric oxide biosynthetic process 0.07242804821273297 0.008947977289028367 1.0 4175 +Phenotype HP:0002067 Bradykinesia 0.07234750215554853 0.00799121211163113 1.0 4176 +Phenotype HP:0001104 Macular hypoplasia 0.07230502235467706 0.007486616410273346 1.0 4177 +Phenotype HP:0011451 Primary microcephaly 0.07229941563363795 0.007420017055356244 1.0 4178 +Phenotype HP:6000531 Abnormal urinary organic compound level 0.07229870146621431 0.007411533827925152 1.0 4179 +Biological Process GO:0045104 intermediate filament cytoskeleton organization 0.0722977729405645 0.007400504349399263 1.0 4180 +Biological Process GO:0045103 intermediate filament-based process 0.0722977729405645 0.007400504349399263 1.0 4180 +Biological Process GO:1904385 cellular response to angiotensin 0.07229561285516617 0.007374845806181034 1.0 4182 +Phenotype HP:0006824 Cranial nerve paralysis 0.07227769030453302 0.007161953047238475 1.0 4183 +Phenotype HP:0040214 Abnormal circulating insulin concentration 0.07215713578516081 0.005729947929358265 1.0 4184 +Biological Process GO:0033198 response to ATP 0.07211885577887289 0.005275239427327436 1.0 4185 +Phenotype HP:0006476 Abnormality of the pancreatic islet cells 0.07209760728854409 0.005022839541727672 1.0 4186 +Phenotype HP:0005216 Impaired mastication 0.07209378490374996 0.004977435399135567 1.0 4187 +Biological Process GO:0043113 receptor clustering 0.07202208714501435 0.004125774607117125 1.0 4188 +Phenotype HP:0000125 Pelvic kidney 0.07200175066980263 0.0038842080799187184 1.0 4189 +Disease MONDO:0800066 polydactyly-syndactyly-triphalangism 0.07195583029846786 0.00333874361198509 1.0 4190 +Phenotype HP:0001519 Disproportionate tall stature 0.07193602346327643 0.003103468406121074 1.0 4191 +Phenotype HP:0003470 Paralysis 0.07193351316743424 0.003073649893201469 1.0 4192 +Biological Process GO:0035994 response to muscle stretch 0.0719190205761111 0.0029014998564036026 1.0 4193 +Biological Process GO:0009144 purine nucleoside triphosphate metabolic process 0.07190831491993921 0.0027743328741265953 1.0 4194 +Disease MONDO:0015364 hereditary sensory and autonomic neuropathy 0.07189742495488871 0.00264497658149602 1.0 4195 +Disease MONDO:0002321 sensory peripheral neuropathy 0.07189742495488871 0.00264497658149602 1.0 4195 +Phenotype HP:0001289 Confusion 0.07189698707746106 0.002639775260793446 1.0 4197 +Phenotype HP:0006510 Chronic pulmonary obstruction 0.07188962933367904 0.0025523764075047048 1.0 4198 +Biological Process GO:0086091 regulation of heart rate by cardiac conduction 0.07188242337505013 0.0024667805319658477 1.0 4199 +Phenotype HP:0001357 Plagiocephaly 0.07183139545545036 0.0018606461257057378 1.0 4200 +Phenotype HP:0000458 Anosmia 0.07181753585897022 0.0016960151090115424 1.0 4201 +Phenotype HP:0007385 Aplasia cutis congenita of scalp 0.07180261972745772 0.0015188340561890854 1.0 4202 +Biological Process GO:1905710 positive regulation of membrane permeability 0.07174842597922215 0.0008750944001846842 1.0 4203 +Phenotype HP:0011386 Narrow internal auditory canal 0.07173162488989104 0.0006755229031275849 1.0 4204 +Disease MONDO:0005129 cataract 0.07173112676864046 0.0006696059770440928 1.0 4205 +Biological Process GO:0032355 response to estradiol 0.07172919942809985 0.0006467120902580822 1.0 4206 +Disease MONDO:0005385 vascular disorder 0.07162820650461643 -0.0005529308932739626 1.0 4207 +Biological Process GO:2000134 negative regulation of G1/S transition of mitotic cell cycle 0.07160883495205661 -0.0007830356006827599 1.0 4208 +Biological Process GO:1901992 positive regulation of mitotic cell cycle phase transition 0.07160859121846119 -0.0007859307866770703 1.0 4209 +Phenotype HP:0040148 Cortical myoclonus 0.07160363068880682 -0.0008448543665598672 1.0 4210 +Biological Process GO:0050922 negative regulation of chemotaxis 0.07157075249747946 -0.0012353974875693489 1.0 4211 +Biological Process GO:0120033 negative regulation of plasma membrane bounded cell projection assembly 0.0715402232138026 -0.0015980391429643176 1.0 4212 +Phenotype HP:0009821 Forearm undergrowth 0.07153464998442782 -0.001664240667630196 1.0 4213 +Phenotype HP:0040202 Abnormal consumption behavior 0.07151813818764696 -0.0018603758073057741 1.0 4214 +Biological Process GO:0043627 response to estrogen 0.07146580270043157 -0.002482042136610356 1.0 4215 +Phenotype HP:0003834 Shoulder dislocation 0.07145228394048353 -0.002642624531478657 1.0 4216 +Phenotype HP:0000602 Ophthalmoplegia 0.07141279947731582 -0.0031116401571669424 1.0 4217 +Phenotype HP:0030895 Abnormal gastrointestinal motility 0.07141245464262747 -0.0031157362710341357 1.0 4218 +Disease MONDO:0005093 skin disorder 0.0714078096488242 -0.0031709117628649607 1.0 4219 +Phenotype HP:0006480 Premature loss of teeth 0.0713727434355248 -0.0035874452712802867 1.0 4220 +Phenotype HP:0012125 Prostate cancer 0.07133383618157196 -0.004049604525643094 1.0 4221 +Phenotype HP:0100787 Prostate neoplasm 0.07133383618157196 -0.004049604525643094 1.0 4221 +Phenotype HP:0005948 Multiple pulmonary cysts 0.07129861645667324 -0.004467961519374663 1.0 4223 +Biological Process GO:0019432 triglyceride biosynthetic process 0.07129749107372352 -0.004481329364495392 1.0 4224 +Disease MONDO:0003240 thyroid gland disorder 0.07127035627769995 -0.0048036496473079365 1.0 4225 +Phenotype HP:0011682 Perimembranous ventricular septal defect 0.07123693223847705 -0.005200676614664136 1.0 4226 +Biological Process GO:0051055 negative regulation of lipid biosynthetic process 0.07115572697469663 -0.006165272168094511 1.0 4227 +Phenotype HP:0030010 Hydrometrocolpos 0.07113864564016081 -0.006368172553769761 1.0 4228 +Phenotype HP:0009193 Pseudoepiphyses of the metacarpals 0.07113609291672085 -0.006398495042296917 1.0 4229 +Phenotype HP:0003298 Spina bifida occulta 0.0710974641925356 -0.006857345784836706 1.0 4230 +Biological Process GO:0003206 cardiac chamber morphogenesis 0.07103770229874418 -0.007567226577437324 1.0 4231 +Phenotype HP:0000012 Urinary urgency 0.07103048553374347 -0.007652950816307562 1.0 4232 +Biological Process GO:0034340 response to type I interferon 0.0710124396047761 -0.007867309123011854 1.0 4233 +Biological Process GO:0050869 negative regulation of B cell activation 0.07097558218211575 -0.008305119485960941 1.0 4234 +Phenotype HP:0000637 Long palpebral fissure 0.07095223979962495 -0.00858239163937676 1.0 4235 +Disease MONDO:0018134 disorder of melanin metabolism 0.07095102410697629 -0.008596832226952535 1.0 4236 +Phenotype HP:0005819 Short middle phalanx of finger 0.07095017415029803 -0.00860692842508418 1.0 4237 +Phenotype HP:0001959 Polydipsia 0.07094469270874582 -0.008672039649424892 1.0 4238 +Phenotype HP:0001708 Right ventricular failure 0.07083251933283619 -0.010004489475686018 1.0 4239 +Disease MONDO:0018911 maturity-onset diabetes of the young 0.07080512427125996 -0.010329901319108362 1.0 4240 +Phenotype HP:0011486 Abnormality of corneal thickness 0.0707972982429722 -0.010422862683137626 1.0 4241 +Phenotype HP:0000029 Testicular atrophy 0.07078534714488605 -0.010564823629212416 1.0 4242 +Disease MONDO:0024257 hereditary motor neuron disease 0.07072603859549831 -0.01126931937685895 1.0 4243 +Disease MONDO:0020128 motor neuron disorder 0.07072603859549831 -0.01126931937685895 1.0 4243 +Biological Process GO:0046677 response to antibiotic 0.07072303218862774 -0.011305030937466537 1.0 4245 +Phenotype HP:0001430 Abnormal calf musculature morphology 0.07066525034719673 -0.011991391706690693 1.0 4246 +Phenotype HP:0030082 Abnormal drinking behavior 0.07066246737330084 -0.012024449221934344 1.0 4247 +Phenotype HP:0008052 Retinal fold 0.0706489812633685 -0.012184643784062636 1.0 4248 +Phenotype HP:0045037 Abnormality of jaw muscles 0.07058298653457928 -0.01296856121719913 1.0 4249 +Phenotype HP:0009942 Duplication of thumb phalanx 0.07057329139374091 -0.013083724807676021 1.0 4250 +Biological Process GO:1902893 regulation of miRNA transcription 0.07055817144657617 -0.013263326881781114 1.0 4251 +Phenotype HP:0003037 Enlarged joints 0.07053697496464373 -0.01351510898639549 1.0 4252 +Biological Process GO:0006949 syncytium formation 0.07053009972905411 -0.013596776373086915 1.0 4253 +Phenotype HP:0009702 Carpal synostosis 0.07053000457171243 -0.013597906698196162 1.0 4254 +Biological Process GO:0009411 response to UV 0.07051804963331898 -0.013739913261305704 1.0 4255 +Disease MONDO:0020071 infantile epilepsy syndrome 0.0705092798162108 -0.013844085407212664 1.0 4256 +Phenotype HP:0002047 Malignant hyperthermia 0.07048863388539517 -0.014089327798334524 1.0 4257 +Phenotype HP:0031910 Abnormal cranial nerve physiology 0.07042409421190277 -0.014855961378134984 1.0 4258 +Phenotype HP:0010760 Absent toe 0.07038707692378432 -0.01529567070062001 1.0 4259 +Phenotype HP:0010819 Atonic seizure 0.07036725235315788 -0.015531156576592736 1.0 4260 +Phenotype HP:0000072 Hydroureter 0.07033360188545767 -0.015930873171347542 1.0 4261 +Phenotype HP:0011039 Abnormal helix morphology 0.07028415982568881 -0.016518169964501856 1.0 4262 +Biological Process GO:0071492 cellular response to UV-A 0.0702474972514111 -0.016953665823750713 1.0 4263 +Phenotype HP:0009929 Abnormal columella morphology 0.07018476297460285 -0.017698854025103548 1.0 4264 +Phenotype HP:0010532 Paroxysmal vertigo 0.07014597656953814 -0.01815957777769357 1.0 4265 +Phenotype HP:0025132 Abnormal circulating estrogen level 0.07010594686752791 -0.018635070015100945 1.0 4266 +Biological Process GO:0032703 negative regulation of interleukin-2 production 0.0701006831623312 -0.01869759486128636 1.0 4267 +Biological Process GO:0016486 peptide hormone processing 0.07007671942288618 -0.01898224779431219 1.0 4268 +Phenotype HP:0011298 Prominent digit pad 0.07007234558621 -0.01903420235012371 1.0 4269 +Phenotype HP:0011124 Abnormal epidermal morphology 0.07004225636251094 -0.01939161675942577 1.0 4270 +Phenotype HP:0001539 Omphalocele 0.07000263802794748 -0.01986222257455569 1.0 4271 +Phenotype HP:0002816 Genu recurvatum 0.06995080177721935 -0.02047795873045397 1.0 4272 +Biological Process GO:0031954 positive regulation of protein autophosphorylation 0.0699447131197024 -0.020550282760865183 1.0 4273 +Phenotype HP:0001958 Nonketotic hypoglycemia 0.06992625750011328 -0.020769507571705235 1.0 4274 +Phenotype HP:0030854 Scleral staphyloma 0.06991864271788995 -0.020859959652408125 1.0 4275 +Disease MONDO:0015338 syndromic craniosynostosis 0.06991135499926848 -0.02094652671283814 1.0 4276 +Biological Process GO:0043467 regulation of generation of precursor metabolites and energy 0.06990042879942027 -0.021076313419990274 1.0 4277 +Phenotype HP:0002983 Micromelia 0.06986936473348726 -0.02144530747869405 1.0 4278 +Disease MONDO:0001336 familial hyperlipidemia 0.06986927172951762 -0.021446412225004652 1.0 4279 +Disease MONDO:0021187 hyperlipidemia 0.06986927172951762 -0.021446412225004652 1.0 4279 +Phenotype HP:0000349 Widow's peak 0.06984293736552971 -0.02175922458743778 1.0 4281 +Phenotype HP:0007361 Abnormal pons morphology 0.06981005458210243 -0.022149822255639894 1.0 4282 +Phenotype HP:0002091 Restrictive ventilatory defect 0.06979680991746362 -0.02230714881333474 1.0 4283 +Phenotype HP:0000206 Glossitis 0.0697915601160024 -0.022369508504198794 1.0 4284 +Biological Process GO:0006941 striated muscle contraction 0.06978934111148427 -0.022395866917330996 1.0 4285 +Biological Process GO:0045087 innate immune response 0.06978871359525074 -0.022403320859851354 1.0 4286 +Phenotype HP:0100518 Dysuria 0.06977586989266682 -0.022555884595565977 1.0 4287 +Phenotype HP:0033811 Abnormal circulating androstenedione concentration 0.06976320149962956 -0.02270636591936163 1.0 4288 +Biological Process GO:0046638 positive regulation of alpha-beta T cell differentiation 0.06972775008039955 -0.023127475090862222 1.0 4289 +Biological Process GO:0035871 protein K11-linked deubiquitination 0.069705135118861 -0.023396106584998726 1.0 4290 +Phenotype HP:0007549 Desquamation of skin soon after birth 0.06969265957251536 -0.02354429718215221 1.0 4291 +Phenotype HP:0000614 Abnormal nasolacrimal system morphology 0.06968360052639355 -0.023651904930721862 1.0 4292 +Phenotype HP:0001152 Saccadic smooth pursuit 0.06962652409965475 -0.02432988644170883 1.0 4293 +Phenotype HP:0004379 Abnormality of alkaline phosphatase level 0.06959456150611598 -0.024709553647605353 1.0 4294 +Phenotype HP:0100519 Anuria 0.06955821711260834 -0.025141270001170668 1.0 4295 +Phenotype HP:0003019 Abnormality of the wrist 0.06952472611672056 -0.025539092312303963 1.0 4296 +Phenotype HP:0000610 Abnormal choroid morphology 0.06949972672525317 -0.025836047222925405 1.0 4297 +Phenotype HP:0002804 Arthrogryposis multiplex congenita 0.06947969503997742 -0.026073993307269897 1.0 4298 +Phenotype HP:0004809 Neonatal alloimmune thrombocytopenia 0.06939919211691126 -0.02703024611666592 1.0 4299 +Phenotype HP:0004308 Ventricular arrhythmia 0.06939422364898218 -0.027089263991230184 1.0 4300 +Phenotype HP:0006887 Intellectual disability, progressive 0.06937255721665458 -0.027346628394828584 1.0 4301 +Biological Process GO:0032780 negative regulation of ATP-dependent activity 0.06927188565854525 -0.028542454044404156 1.0 4302 +Phenotype HP:0001894 Thrombocytosis 0.06923320044038228 -0.029001975849842647 1.0 4303 +Biological Process GO:0043388 positive regulation of DNA binding 0.06913259665513283 -0.030196996460480595 1.0 4304 +Phenotype HP:0007185 Loss of consciousness 0.06912581645830795 -0.030277534930577076 1.0 4305 +Phenotype HP:0000883 Thin ribs 0.06906750904066916 -0.030970138749197407 1.0 4306 +Phenotype HP:0200040 Epidermoid cyst 0.06906186766363331 -0.031037149764871434 1.0 4307 +Phenotype HP:0040189 Scaling skin 0.06901936375428952 -0.031542031838369726 1.0 4308 +Biological Process GO:0002889 regulation of immunoglobulin mediated immune response 0.06896750147373598 -0.03215807718917329 1.0 4309 +Biological Process GO:0045010 actin nucleation 0.06893484698943964 -0.03254596300944464 1.0 4310 +Phenotype HP:0000612 Iris coloboma 0.06887567706716435 -0.033248812076937265 1.0 4311 +Phenotype HP:0000324 Facial asymmetry 0.0688694747305183 -0.0333224864432424 1.0 4312 +Phenotype HP:0000847 Abnormality of renin-angiotensin system 0.0688349396947262 -0.033732710367305886 1.0 4313 +Disease MONDO:0002118 urinary system disorder 0.0688038949222688 -0.03410147524873835 1.0 4314 +Phenotype HP:0002475 Myelomeningocele 0.06879530780622034 -0.03420347718274507 1.0 4315 +Phenotype HP:0033383 Decreased compound muscle action potential amplitude 0.06878911878977845 -0.034276993325197375 1.0 4316 +Phenotype HP:0000230 Gingivitis 0.06868468397133198 -0.035517520808356205 1.0 4317 +Phenotype HP:0002138 Subarachnoid hemorrhage 0.0686757268329391 -0.03562391804743913 1.0 4318 +Biological Process GO:0046879 hormone secretion 0.06864054884186432 -0.03604177930654541 1.0 4319 +Phenotype HP:0003758 Reduced subcutaneous adipose tissue 0.06863820038686552 -0.03606967539534331 1.0 4320 +Phenotype HP:0012143 Abnormal megakaryocyte morphology 0.06853453241091922 -0.03730109395093506 1.0 4321 +Biological Process GO:0014706 striated muscle tissue development 0.06851949994628459 -0.037479656865069266 1.0 4322 +Biological Process GO:0048738 cardiac muscle tissue development 0.06851949994628459 -0.037479656865069266 1.0 4322 +Phenotype HP:0000099 Glomerulonephritis 0.06851043978749982 -0.03758727783038985 1.0 4324 +Phenotype HP:0010490 Abnormality of the palmar creases 0.06850346144316022 -0.03767016999287933 1.0 4325 +Biological Process GO:0034204 lipid translocation 0.0684788509057137 -0.03796250590662785 1.0 4326 +Biological Process GO:0045332 phospholipid translocation 0.0684788509057137 -0.03796250590662785 1.0 4326 +Biological Process GO:0072006 nephron development 0.06845799980022826 -0.03821018546210288 1.0 4328 +Phenotype HP:0000239 Large fontanelles 0.0684291246595623 -0.03855317840362425 1.0 4329 +Phenotype HP:0002002 Deep philtrum 0.0684030074617007 -0.038863411161361376 1.0 4330 +Phenotype HP:0200041 Skin erosion 0.06836906565423184 -0.03926658843135185 1.0 4331 +Phenotype HP:0001618 Dysphonia 0.06835843556899568 -0.03939285774535981 1.0 4332 +Biological Process GO:0045601 regulation of endothelial cell differentiation 0.0683416941464775 -0.03959172049104089 1.0 4333 +Biological Process GO:0019081 viral translation 0.06831571399532821 -0.0399003253413844 1.0 4334 +Phenotype HP:0410011 Abnormality of masticatory muscle 0.0683122213691334 -0.039941812451215364 1.0 4335 +Disease MONDO:0019588 hearing loss, autosomal recessive 0.06829850696075446 -0.04010471885314548 1.0 4336 +Phenotype HP:0002211 White forelock 0.06828517258956812 -0.04026311098876996 1.0 4337 +Phenotype HP:0005916 Abnormal metacarpal morphology 0.06825347753728728 -0.040639600209696786 1.0 4338 +Phenotype HP:0100670 Coarse metaphyseal trabecularization 0.06822102656469087 -0.0410250686191786 1.0 4339 +Biological Process GO:0045778 positive regulation of ossification 0.06820567338686989 -0.04120744112026653 1.0 4340 +Phenotype HP:0006580 Portal fibrosis 0.06817811819496411 -0.0415347550694966 1.0 4341 +Phenotype HP:0002323 Anencephaly 0.0681184640381095 -0.04224335611044868 1.0 4342 +Phenotype HP:0033282 Abnormal glomerular basement membrane morphology 0.06811596087264615 -0.04227308992526614 1.0 4343 +Phenotype HP:0006748 Adrenal pheochromocytoma 0.06810688754190763 -0.042380867353449175 1.0 4344 +Phenotype HP:0100642 Neoplasm of the adrenal medulla 0.06810688754190763 -0.042380867353449175 1.0 4344 +Biological Process GO:0010224 response to UV-B 0.06810449037824828 -0.04240934202736819 1.0 4346 +Phenotype HP:0033454 Tube feeding 0.06810309412869109 -0.04242592735757525 1.0 4347 +Biological Process GO:0030501 positive regulation of bone mineralization 0.0680960206121447 -0.04250995002174896 1.0 4348 +Biological Process GO:0010560 positive regulation of glycoprotein biosynthetic process 0.06808093075538513 -0.042689194667410696 1.0 4349 +Biological Process GO:0072001 renal system development 0.06808052382832663 -0.042694028344600086 1.0 4350 +Phenotype HP:0001677 Coronary artery atherosclerosis 0.06804174706467137 -0.04315463757184716 1.0 4351 +Biological Process GO:0000018 regulation of DNA recombination 0.06802078801748912 -0.043403599311209275 1.0 4352 +Phenotype HP:0020206 Simple ear 0.06798110319236317 -0.04387499493352591 1.0 4353 +Biological Process GO:0006839 mitochondrial transport 0.06796162358412927 -0.04410638317869917 1.0 4354 +Phenotype HP:0007550 Hypohidrosis or hyperhidrosis 0.06792223568775757 -0.04457425173709529 1.0 4355 +Phenotype HP:0009062 Infantile axial hypotonia 0.0678534007932492 -0.045391906037722536 1.0 4356 +Biological Process GO:0016558 protein import into peroxisome matrix 0.06783824374153491 -0.0455719488576837 1.0 4357 +Biological Process GO:0032770 positive regulation of monooxygenase activity 0.06781402271666337 -0.04585965795193393 1.0 4358 +Phenotype HP:0010937 Abnormal nasal skeleton morphology 0.06780641153829325 -0.04595006722431842 1.0 4359 +Phenotype HP:0005289 Abnormal nasolabial region morphology 0.06778782038049891 -0.04617090202377231 1.0 4360 +Phenotype HP:0003233 Decreased HDL cholesterol concentration 0.06765569829488427 -0.04774031231025875 1.0 4361 +Phenotype HP:0000527 Long eyelashes 0.06763870019052898 -0.04794222404743625 1.0 4362 +Phenotype HP:0004220 Short middle phalanx of the 5th finger 0.06763379446113871 -0.04800049668317305 1.0 4363 +Phenotype HP:0005871 Metaphyseal chondrodysplasia 0.06761134324216878 -0.048267183163572265 1.0 4364 +Phenotype HP:0012506 Small pituitary gland 0.06761093225166726 -0.048272065108310974 1.0 4365 +Phenotype HP:0100643 Abnormality of nail color 0.06750988967059579 -0.04947229794878565 1.0 4366 +Phenotype HP:0025352 Typically de novo 0.06744022920229398 -0.050299758815799206 1.0 4367 +Disease MONDO:0000462 eye adnexa disorder 0.06743837337161185 -0.050321803273763684 1.0 4368 +Phenotype HP:0001657 Prolonged QT interval 0.06742790050722203 -0.050446205042218216 1.0 4369 +Biological Process GO:0072091 regulation of stem cell proliferation 0.06738222372318414 -0.0509887760619625 1.0 4370 +Phenotype HP:0006710 Aplasia/Hypoplasia of the clavicles 0.06734791149562336 -0.051396353361667126 1.0 4371 +Biological Process GO:0030641 regulation of cellular pH 0.06731924376564469 -0.05173688257833396 1.0 4372 +Phenotype HP:0001682 Subvalvular aortic stenosis 0.06729115078855918 -0.05207058460105719 1.0 4373 +Biological Process GO:1901532 regulation of hematopoietic progenitor cell differentiation 0.06724142239768727 -0.052661282574085234 1.0 4374 +Phenotype HP:0000270 Delayed cranial suture closure 0.06723461353987492 -0.05274216149330762 1.0 4375 +Phenotype HP:0010660 Abnormal hand bone ossification 0.06722989958624082 -0.052798156123493555 1.0 4376 +Biological Process GO:0032024 positive regulation of insulin secretion 0.06721408392635653 -0.05298602221109354 1.0 4377 +Biological Process GO:0051054 positive regulation of DNA metabolic process 0.06717707790053473 -0.0534255977545504 1.0 4378 +Phenotype HP:0000034 Hydrocele testis 0.0671744653703209 -0.053456630656977484 1.0 4379 +Phenotype HP:0004948 Vascular tortuosity 0.06715181674238979 -0.05372566205687199 1.0 4380 +Phenotype HP:0000571 Hypometric saccades 0.06713502966109841 -0.05392506715963141 1.0 4381 +Biological Process GO:0006885 regulation of pH 0.06710259843904587 -0.05431030096256305 1.0 4382 +Biological Process GO:0071453 cellular response to oxygen levels 0.06707479729989507 -0.054640536392592205 1.0 4383 +Phenotype HP:0031526 Subretinal fluid 0.06705851651489458 -0.05483392746216983 1.0 4384 +Phenotype HP:0100712 Abnormal lumbar spine morphology 0.06704561477441051 -0.054987180600243504 1.0 4385 +Biological Process GO:0051703 biological process involved in intraspecies interaction between organisms 0.06703683203684752 -0.05509150622158647 1.0 4386 +Biological Process GO:0035176 social behavior 0.06703683203684752 -0.05509150622158647 1.0 4386 +Phenotype HP:0005659 Thoracic kyphoscoliosis 0.06701648709128138 -0.05533317336376754 1.0 4388 +Phenotype HP:0001707 Abnormal right ventricle morphology 0.06701008368884542 -0.05540923608715523 1.0 4389 +Biological Process GO:0040036 regulation of fibroblast growth factor receptor signaling pathway 0.0669560755758063 -0.05605077067815883 1.0 4390 +Biological Process GO:0071542 dopaminergic neuron differentiation 0.06692321686056069 -0.05644108245281246 1.0 4391 +Phenotype HP:0006488 Bowing of the arm 0.06686606321461852 -0.05711998121099176 1.0 4392 +Phenotype HP:0006579 Prolonged neonatal jaundice 0.06684420385030587 -0.05737963735438921 1.0 4393 +Phenotype HP:0000649 Abnormality of visual evoked potentials 0.06682445798982095 -0.057614188273082304 1.0 4394 +Biological Process GO:0010744 positive regulation of macrophage derived foam cell differentiation 0.0668047071771336 -0.05784879801644042 1.0 4395 +Biological Process GO:0030278 regulation of ossification 0.06679908404129664 -0.057915592354296844 1.0 4396 +Biological Process GO:1904152 regulation of retrograde protein transport, ER to cytosol 0.06679061802826647 -0.058016155767849326 1.0 4397 +Phenotype HP:4000059 Abnormal lung development 0.06675611704462381 -0.05842597520394739 1.0 4398 +Phenotype HP:0005349 Hypoplasia of the epiglottis 0.06671502454206135 -0.05891409190237048 1.0 4399 +Phenotype HP:0001607 Subglottic stenosis 0.06671169841314895 -0.05895360127663615 1.0 4400 +Phenotype HP:0025100 Abnormal hippocampus morphology 0.06660829467607421 -0.06018188107460696 1.0 4401 +Phenotype HP:0005521 Disseminated intravascular coagulation 0.06657656007199508 -0.06055884011099865 1.0 4402 +Biological Process GO:0032645 regulation of granulocyte macrophage colony-stimulating factor production 0.06649011336364252 -0.06158569608810692 1.0 4403 +Phenotype HP:0001761 Pes cavus 0.0664694862516253 -0.061830714940403576 1.0 4404 +Phenotype HP:0008517 Aplasia/Hypoplasia of the sacrum 0.0664047522055955 -0.06259965737158331 1.0 4405 +Phenotype HP:0011103 Abnormal left ventricular outflow tract morphology 0.06638466152968137 -0.06283830417537406 1.0 4406 +Phenotype HP:0011026 Aplasia/Hypoplasia of the vagina 0.06637074804431942 -0.06300357531037273 1.0 4407 +Phenotype HP:0003347 Impaired lymphocyte transformation with phytohemagglutinin 0.06636463697282902 -0.06307616558484404 1.0 4408 +Phenotype HP:0010990 Abnormality of the common coagulation pathway 0.06636122860976568 -0.06311665177628434 1.0 4409 +Biological Process GO:0000082 G1/S transition of mitotic cell cycle 0.06634921590272869 -0.06325934454339209 1.0 4410 +Phenotype HP:0003144 Increased serum serotonin 0.06633670501782096 -0.063407954909145 1.0 4411 +Disease MONDO:0005497 bone development disease 0.06630700582494997 -0.06376073634288672 1.0 4412 +Phenotype HP:0500018 Abnormal cardiac exercise stress test 0.06628855022780422 -0.0639799608871334 1.0 4413 +Phenotype HP:0040163 Abnormal pelvis bone morphology 0.06628184507810286 -0.06405960791105668 1.0 4414 +Phenotype HP:0009894 Thickened ears 0.06626713146760366 -0.0642343833209466 1.0 4415 +Phenotype HP:0033800 Blistering by anatomical location 0.0662548481219466 -0.06438029086499557 1.0 4416 +Phenotype HP:0012408 Medullary nephrocalcinosis 0.06618988910509904 -0.065151905608786 1.0 4417 +Biological Process GO:2000278 regulation of DNA biosynthetic process 0.06616679730924424 -0.06542620117246392 1.0 4418 +Phenotype HP:0011030 Abnormal blood transition element cation concentration 0.06615860320539202 -0.06552353471677175 1.0 4419 +Phenotype HP:0000015 Bladder diverticulum 0.06614842240375918 -0.06564446722198411 1.0 4420 +Biological Process GO:1900226 negative regulation of NLRP3 inflammasome complex assembly 0.06606892377155182 -0.06658879057691303 1.0 4421 +Phenotype HP:0011979 Elevated urinary dopamine level 0.06605521263569969 -0.06675165810618075 1.0 4422 +Phenotype HP:0000540 Hypermetropia 0.06604519457606073 -0.06687065748296835 1.0 4423 +Phenotype HP:0031379 Abnormal T cell proliferation 0.06601258733487692 -0.06725798212660954 1.0 4424 +Phenotype HP:0001271 Polyneuropathy 0.06600253996888017 -0.06737732961854498 1.0 4425 +Phenotype HP:0100498 Deviation of toes 0.06598753333446039 -0.06755558570884493 1.0 4426 +Phenotype HP:0002247 Duodenal atresia 0.06595974046585174 -0.06788572289735868 1.0 4427 +Phenotype HP:0031888 Abnormal HDL cholesterol concentration 0.06595557378561678 -0.06793521674837392 1.0 4428 +Biological Process GO:0042743 hydrogen peroxide metabolic process 0.06594137806753553 -0.06810384038065419 1.0 4429 +Phenotype HP:0010622 Neoplasm of the skeletal system 0.06592182302742566 -0.0683361246422771 1.0 4430 +Biological Process GO:0055062 phosphate ion homeostasis 0.06588282027594272 -0.06879941826267254 1.0 4431 +Phenotype HP:0031605 Abnormality of fundus pigmentation 0.0658698665028048 -0.0689532894698738 1.0 4432 +Disease MONDO:0002908 glucose metabolism disease 0.06585525169220363 -0.06912689128660124 1.0 4433 +Biological Process GO:0098727 maintenance of cell number 0.06584825972154462 -0.06920994530912905 1.0 4434 +Phenotype HP:0009541 Abnormality of the phalanges of the 2nd finger 0.06582691492984027 -0.06946348910922784 1.0 4435 +Biological Process GO:0034453 microtubule anchoring 0.06580993257053547 -0.06966521381905047 1.0 4436 +Biological Process GO:0071827 plasma lipoprotein particle organization 0.06580683866394443 -0.06970196474382438 1.0 4437 +Biological Process GO:1901991 negative regulation of mitotic cell cycle phase transition 0.06576504023081009 -0.0701984668283539 1.0 4438 +Phenotype HP:0011273 Anisocytosis 0.06574739574032407 -0.07040805665385322 1.0 4439 +Phenotype HP:0004401 Meconium ileus 0.06573778712044798 -0.07052219250632875 1.0 4440 +Phenotype HP:0010676 Mechanical ileus 0.06573778712044798 -0.07052219250632875 1.0 4440 +Phenotype HP:0003345 Elevated urinary norepinephrine level 0.06573601356401115 -0.07054325967085819 1.0 4442 +Phenotype HP:0012469 Infantile spasms 0.06572694393939216 -0.07065099307595397 1.0 4443 +Biological Process GO:0032480 negative regulation of type I interferon production 0.06569020204656395 -0.07108743111945987 1.0 4444 +Phenotype HP:0100798 Fingernail dysplasia 0.06566712983368794 -0.07136149406700691 1.0 4445 +Biological Process GO:0045091 regulation of single stranded viral RNA replication via double stranded DNA intermediate 0.06558787603704253 -0.07230290914624814 1.0 4446 +Phenotype HP:0030137 Prolonged bleeding following circumcision 0.0655709355695614 -0.07250413624464802 1.0 4447 +Phenotype HP:0002866 Hypoplastic iliac wing 0.06556460994400826 -0.072579275096456 1.0 4448 +Phenotype HP:0030319 Weakness of facial musculature 0.06553624764074262 -0.07291617630632162 1.0 4449 +Biological Process GO:1905508 protein localization to microtubule organizing center 0.06551517511870253 -0.07316648595514434 1.0 4450 +Biological Process GO:0071539 protein localization to centrosome 0.06551517511870253 -0.07316648595514434 1.0 4450 +Disease MONDO:0009332 congenital hematological disorder 0.06546763075215023 -0.07373124102682324 1.0 4452 +Phenotype HP:0006349 Agenesis of permanent teeth 0.065411726231138 -0.07439530207255629 1.0 4453 +Biological Process GO:0060993 kidney morphogenesis 0.06540538857258249 -0.0744705838582092 1.0 4454 +Phenotype HP:0012872 Abnormal vas deferens morphology 0.06529594415736806 -0.07577061776425127 1.0 4455 +Phenotype HP:0012873 Absent vas deferens 0.06529594415736806 -0.07577061776425127 1.0 4455 +Phenotype HP:0000773 Short ribs 0.06518717268453889 -0.0770626581338855 1.0 4457 +Biological Process GO:0051180 vitamin transport 0.06516667985169178 -0.07730608195299857 1.0 4458 +Phenotype HP:5200029 Social disinhibition 0.06510237657942275 -0.07806990744428016 1.0 4459 +Phenotype HP:5200123 Abnormal response to social norms 0.06510237657942275 -0.07806990744428016 1.0 4459 +Disease MONDO:0019722 glomerular disorder 0.0650738510190485 -0.07840874790135341 1.0 4461 +Phenotype HP:0008365 Abnormal talus morphology 0.06506636973593838 -0.07849761421476742 1.0 4462 +Biological Process GO:0032874 positive regulation of stress-activated MAPK cascade 0.06504308212131027 -0.07877423580891699 1.0 4463 +Phenotype HP:0000338 Hypomimic face 0.06501269818186084 -0.07913515099500479 1.0 4464 +Phenotype HP:0005968 Temperature instability 0.06496634367218579 -0.07968577236894561 1.0 4465 +Phenotype HP:0010537 Wide cranial sutures 0.06496498075078405 -0.07970196181113924 1.0 4466 +Phenotype HP:0025235 NREM parasomnia 0.06495851927912177 -0.07977871430899336 1.0 4467 +Phenotype HP:0025337 Red eye 0.06495127430609982 -0.07986477361643679 1.0 4468 +Disease MONDO:0015925 interstitial lung disease 0.06495015997811338 -0.07987801014533583 1.0 4469 +Biological Process GO:0070482 response to oxygen levels 0.06494487719504205 -0.07994076160777941 1.0 4470 +Phenotype HP:0008730 Female external genitalia in individual with 46,XY karyotype 0.06491893715667119 -0.08024888997906343 1.0 4471 +Phenotype HP:0000830 Anterior hypopituitarism 0.06489541436872914 -0.08052830507602729 1.0 4472 +Phenotype HP:0008850 Severe postnatal growth retardation 0.0648809809433385 -0.08069975231115031 1.0 4473 +Biological Process GO:0009743 response to carbohydrate 0.06488077765689604 -0.08070216704622213 1.0 4474 +Biological Process GO:0046546 development of primary male sexual characteristics 0.06486599283980476 -0.08087778828258789 1.0 4475 +Biological Process GO:0008584 male gonad development 0.06486599283980476 -0.08087778828258789 1.0 4475 +Disease MONDO:0100284 X-linked intellectual disability 0.0648648228762525 -0.0808916856777523 1.0 4477 +Biological Process GO:0046676 negative regulation of insulin secretion 0.06485574092213131 -0.08099956553866193 1.0 4478 +Phenotype HP:0003199 Decreased muscle mass 0.06484097978096226 -0.08117490554092738 1.0 4479 +Phenotype HP:0025487 Abnormal bladder morphology 0.06481727918456137 -0.08145643273310256 1.0 4480 +Biological Process GO:0042044 fluid transport 0.06480823366935828 -0.08156387975484956 1.0 4481 +Biological Process GO:0006833 water transport 0.06480823366935828 -0.08156387975484956 1.0 4481 +Phenotype HP:0010844 EEG with multifocal slow activity 0.06477676162642554 -0.08193771996245465 1.0 4483 +Phenotype HP:0006704 Abnormal coronary artery morphology 0.06472744265470876 -0.08252355465595934 1.0 4484 +Disease MONDO:0001531 blood coagulation disease 0.06470958077812694 -0.08273572669905904 1.0 4485 +Phenotype HP:0040252 Abnormal size of the clitoris 0.06469254835471805 -0.08293804609461924 1.0 4486 +Phenotype HP:0008665 Clitoral hypertrophy 0.06469254835471805 -0.08293804609461924 1.0 4486 +Phenotype HP:0040253 Increased size of the clitoris 0.06469254835471805 -0.08293804609461924 1.0 4486 +Biological Process GO:0046473 phosphatidic acid metabolic process 0.06467524640601952 -0.08314356704244123 1.0 4489 +Phenotype HP:0002445 Tetraplegia 0.06462300499239704 -0.08376411591993055 1.0 4490 +Phenotype HP:0009825 Aplasia involving bones of the extremities 0.06461560447669856 -0.08385202283881137 1.0 4491 +Phenotype HP:0012185 Constrictive median neuropathy 0.06461369431684771 -0.08387471264502211 1.0 4492 +Biological Process GO:0098773 skin epidermis development 0.0646092137930756 -0.08392793448196242 1.0 4493 +Phenotype HP:0009917 Persistent pupillary membrane 0.06459918907251894 -0.08404701298036482 1.0 4494 +Phenotype HP:0000532 Abnormal chorioretinal morphology 0.06459591479305282 -0.0840859064617313 1.0 4495 +Biological Process GO:0032435 negative regulation of proteasomal ubiquitin-dependent protein catabolic process 0.06456970070545487 -0.08439729012280277 1.0 4496 +Phenotype HP:0002062 Abnormal pyramidal tract morphology 0.06454368351313344 -0.08470633496617463 1.0 4497 +Biological Process GO:0030901 midbrain development 0.06453418903274866 -0.0848191150143506 1.0 4498 +Phenotype HP:0004309 Ventricular preexcitation 0.06453258498863323 -0.08483816862921756 1.0 4499 +Phenotype HP:0000303 Mandibular prognathia 0.06448660283006502 -0.08538436703591157 1.0 4500 +Phenotype HP:0002503 Spinocerebellar tract degeneration 0.06448044285620913 -0.08545753819642533 1.0 4501 +Phenotype HP:0000777 Abnormal thymus morphology 0.06447951777686822 -0.08546852673802066 1.0 4502 +Phenotype HP:0200021 Down-sloping shoulders 0.0644638270555119 -0.08565490874511995 1.0 4503 +Phenotype HP:0007957 Corneal opacity 0.06444585718060258 -0.0858683636447937 1.0 4504 +Phenotype HP:0030237 Hand muscle weakness 0.06441676776545047 -0.08621390184270532 1.0 4505 +Phenotype HP:0005261 Joint hemorrhage 0.06441277996813533 -0.08626127083554018 1.0 4506 +Phenotype HP:0001194 Abnormalities of placenta or umbilical cord 0.064412257347505 -0.0862674787771523 1.0 4507 +Biological Process GO:0009141 nucleoside triphosphate metabolic process 0.0644046120414481 -0.08635829343477158 1.0 4508 +Phenotype HP:0000568 Microphthalmia 0.06439436758730399 -0.08647998203542 1.0 4509 +Phenotype HP:0011863 Abnormal sternal ossification 0.06435548871426022 -0.08694180416756418 1.0 4510 +Phenotype HP:0002908 Conjugated hyperbilirubinemia 0.06435492886811423 -0.08694845429192676 1.0 4511 +Phenotype HP:0002317 Unsteady gait 0.06434341432871338 -0.08708522958196079 1.0 4512 +Biological Process GO:0007029 endoplasmic reticulum organization 0.064331494108958 -0.08722682374022919 1.0 4513 +Disease MONDO:0017688 disorder of glycolysis 0.06433059448864664 -0.08723750986710954 1.0 4514 +Phenotype HP:0003015 Flared metaphysis 0.0643078339840456 -0.08750787019241259 1.0 4515 +Biological Process GO:1900121 negative regulation of receptor binding 0.06425939978036654 -0.08808319518155486 1.0 4516 +Biological Process GO:0032350 regulation of hormone metabolic process 0.0642488292568213 -0.08820875699287722 1.0 4517 +Phenotype HP:0000149 Ovarian gonadoblastoma 0.0642071592697786 -0.08870373333236146 1.0 4518 +Phenotype HP:0012870 Vanishing testis 0.0642071592697786 -0.08870373333236146 1.0 4518 +Phenotype HP:0000030 Testicular gonadoblastoma 0.0642071592697786 -0.08870373333236146 1.0 4518 +Phenotype HP:0001803 Nail pits 0.06418979698670357 -0.0889099709612036 1.0 4521 +Phenotype HP:0004722 Thickened glomerular basement membrane 0.06418979117988488 -0.08891003993741559 1.0 4522 +Phenotype HP:0002868 Narrow iliac wing 0.0641630383100047 -0.08922782351604801 1.0 4523 +Biological Process GO:0006515 protein quality control for misfolded or incompletely synthesized proteins 0.06410716688873486 -0.08989149138696893 1.0 4524 +Phenotype HP:0001552 Barrel-shaped chest 0.06405376466701829 -0.09052582890664497 1.0 4525 +Phenotype HP:0005920 Abnormal epiphysis morphology of the phalanges of the hand 0.06400602531752342 -0.09109290008039214 1.0 4526 +Phenotype HP:0001211 Abnormal fingertip morphology 0.06398744205833917 -0.09131364105631999 1.0 4527 +Disease MONDO:0016342 familial isolated arrhythmogenic right ventricular dysplasia 0.06396627060016724 -0.09156512591655645 1.0 4528 +Disease MONDO:0016587 arrhythmogenic right ventricular cardiomyopathy 0.06396627060016724 -0.09156512591655645 1.0 4528 +Phenotype HP:0005914 Aplasia/Hypoplasia involving the metacarpal bones 0.06393768194631044 -0.09190471582865127 1.0 4530 +Disease MONDO:0020246 inherited vitreoretinopathy 0.06390933053739123 -0.09224148763018017 1.0 4531 +Disease MONDO:0020049 autosomal anomaly 0.06386527384093221 -0.09276481446300856 1.0 4532 +Disease MONDO:0004884 eye degenerative disorder 0.06379546981259487 -0.09359398060583149 1.0 4533 +Biological Process GO:0034220 monoatomic ion transmembrane transport 0.0637830875224994 -0.09374106345996375 1.0 4534 +Phenotype HP:0030353 Decreased serum insulin-like growth factor 1 0.06374395522534293 -0.09420589588677182 1.0 4535 +Biological Process GO:0009913 epidermal cell differentiation 0.06373488401046523 -0.09431364818173266 1.0 4536 +Phenotype HP:0034784 Vasculitis by anatomical site 0.06364297299406185 -0.09540541186313267 1.0 4537 +Phenotype HP:0004446 Stomatocytosis 0.06362056276565276 -0.0956716114377468 1.0 4538 +Phenotype HP:0000599 Abnormality of the frontal hairline 0.06357687386611055 -0.09619056940020884 1.0 4539 +Biological Process GO:0060041 retina development in camera-type eye 0.06355172351009775 -0.09648931754100354 1.0 4540 +Phenotype HP:0003306 Spinal rigidity 0.06354757732681204 -0.09653856791930304 1.0 4541 +Biological Process GO:0051004 regulation of lipoprotein lipase activity 0.06353898699046434 -0.0966406081055879 1.0 4542 +Biological Process GO:0034644 cellular response to UV 0.06351161840093145 -0.09696570550122567 1.0 4543 +Phenotype HP:0200136 Oral-pharyngeal dysphagia 0.06349366681193347 -0.09717894319196556 1.0 4544 +Phenotype HP:0003187 Breast hypoplasia 0.06349115506819103 -0.09720877890374731 1.0 4545 +Phenotype HP:0004362 Abnormal enteric ganglion morphology 0.06345710517363301 -0.09761324008466597 1.0 4546 +Phenotype HP:0002251 Aganglionic megacolon 0.06345710517363301 -0.09761324008466597 1.0 4546 +Phenotype HP:0009998 Complete duplication of phalanx of hand 0.06345570278278845 -0.09762989836406637 1.0 4548 +Phenotype HP:0000248 Brachycephaly 0.06342713409673062 -0.0979692510889494 1.0 4549 +Phenotype HP:0011481 Abnormal lacrimal duct morphology 0.0634267941669393 -0.09797328894006788 1.0 4550 +Phenotype HP:0100259 Postaxial polydactyly 0.06336072926554981 -0.09875803991742375 1.0 4551 +Phenotype HP:0006505 Abnormal limb epiphysis morphology 0.06333534491415438 -0.09905956756899272 1.0 4552 +Biological Process GO:0030500 regulation of bone mineralization 0.06332914044363669 -0.09913326728246125 1.0 4553 +Phenotype HP:0000194 Open mouth 0.06332792038828527 -0.0991477596923387 1.0 4554 +Disease MONDO:0015244 autosomal recessive cerebellar ataxia 0.06329943346981315 -0.09948614114213548 1.0 4555 +Biological Process GO:0099537 trans-synaptic signaling 0.06326559937393994 -0.09988803896149218 1.0 4556 +Biological Process GO:0031018 endocrine pancreas development 0.06325948032376327 -0.09996072401067312 1.0 4557 +Phenotype HP:0002749 Osteomalacia 0.06321694529440869 -0.10046597574277029 1.0 4558 +Phenotype HP:0001716 Wolff-Parkinson-White syndrome 0.06311829149743375 -0.10163783344584194 1.0 4559 +Biological Process GO:0035051 cardiocyte differentiation 0.06311049389978796 -0.10173045709690125 1.0 4560 +Phenotype HP:0007678 Lacrimal duct stenosis 0.06309783674442959 -0.10188080493409035 1.0 4561 +Biological Process GO:0140448 signaling receptor ligand precursor processing 0.0630967145067286 -0.10189413541841946 1.0 4562 +Biological Process GO:0030048 actin filament-based movement 0.06306176000643893 -0.10230934194546153 1.0 4563 +Biological Process GO:0046321 positive regulation of fatty acid oxidation 0.06304523091925007 -0.10250568246899884 1.0 4564 +Phenotype HP:0046503 Increased libido 0.0630366185190856 -0.10260798474001272 1.0 4565 +Phenotype HP:0030019 Increased female libido 0.0630366185190856 -0.10260798474001272 1.0 4565 +Phenotype HP:0040075 Hypopituitarism 0.06297763998502892 -0.10330856040531375 1.0 4567 +Phenotype HP:0001972 Macrocytic anemia 0.06297211937678193 -0.1033741368706729 1.0 4568 +Phenotype HP:0010950 Abnormal fourth ventricle morphology 0.06290152347110589 -0.10421270931703103 1.0 4569 +Phenotype HP:0002198 Dilated fourth ventricle 0.06290152347110589 -0.10421270931703103 1.0 4569 +Biological Process GO:0055001 muscle cell development 0.06286338235520494 -0.10466576801160545 1.0 4571 +Biological Process GO:0001836 release of cytochrome c from mitochondria 0.06284142833424156 -0.10492654853266212 1.0 4572 +Phenotype HP:0003995 Abnormality of the radial head 0.0628406560824778 -0.10493572171408869 1.0 4573 +Phenotype HP:0003326 Myalgia 0.06282522358795073 -0.10511903637752482 1.0 4574 +Phenotype HP:0009113 Diaphragmatic weakness 0.0628234016695094 -0.10514067800942663 1.0 4575 +Phenotype HP:0002621 Atherosclerosis 0.06282223497310624 -0.10515453659580754 1.0 4576 +Biological Process GO:0043647 inositol phosphate metabolic process 0.06281693894126505 -0.10521744543357262 1.0 4577 +Phenotype HP:0001698 Pericardial effusion 0.06276750879209358 -0.1058046007468677 1.0 4578 +Phenotype HP:0010185 Aplasia/Hypoplasia of the distal phalanges of the toes 0.06274839435824442 -0.10603165127338408 1.0 4579 +Phenotype HP:0003508 Proportionate short stature 0.06274665618775122 -0.1060522981064931 1.0 4580 +Phenotype HP:0012675 Iron accumulation in brain 0.06274369533161761 -0.10608746859332933 1.0 4581 +Disease MONDO:0021166 inflammatory disease 0.06268131814564715 -0.10682841509632093 1.0 4582 +Phenotype HP:0012450 Chronic constipation 0.06264534308332159 -0.10725574435477205 1.0 4583 +Phenotype HP:0007354 Amyotrophic lateral sclerosis 0.06263963712241527 -0.10732352252901907 1.0 4584 +Biological Process GO:0042634 regulation of hair cycle 0.0626307806081925 -0.10742872450535011 1.0 4585 +Phenotype HP:0002575 Tracheoesophageal fistula 0.06262735724559876 -0.10746938886849566 1.0 4586 +Biological Process GO:0003230 cardiac atrium development 0.06262413356162477 -0.10750768135203934 1.0 4587 +Biological Process GO:0016540 protein autoprocessing 0.06262096517602633 -0.10754531697462745 1.0 4588 +Phenotype HP:0000236 Abnormality of the anterior fontanelle 0.06258859955438278 -0.10792977154404794 1.0 4589 +Phenotype HP:0100033 Tics 0.06256674395015216 -0.10818938302336537 1.0 4590 +Biological Process GO:0071229 cellular response to acid chemical 0.06253572144281394 -0.10855788342890095 1.0 4591 +Phenotype HP:0002494 Abnormal rapid eye movement sleep 0.06245576513460216 -0.10950764328164087 1.0 4592 +Biological Process GO:0035794 positive regulation of mitochondrial membrane permeability 0.062450146379043336 -0.10957438558842664 1.0 4593 +Phenotype HP:0001840 Metatarsus adductus 0.062292419669982 -0.11144794002486286 1.0 4594 +Phenotype HP:0000275 Narrow face 0.06227162462515712 -0.1116949536645908 1.0 4595 +Biological Process GO:0003151 outflow tract morphogenesis 0.062227553605758934 -0.11221845063224532 1.0 4596 +Phenotype HP:0005387 Combined immunodeficiency 0.06219987217232681 -0.11254726413962347 1.0 4597 +Phenotype HP:0001007 Hirsutism 0.062189204778547724 -0.1126739766226199 1.0 4598 +Phenotype HP:0002612 Congenital hepatic fibrosis 0.06217668829920109 -0.11282265344183466 1.0 4599 +Phenotype HP:0002480 Hepatic encephalopathy 0.06217313668020574 -0.11286484129679507 1.0 4600 +Biological Process GO:0001101 response to acid chemical 0.06215775634762388 -0.11304753635531811 1.0 4601 +Phenotype HP:0012575 Abnormal nephron morphology 0.06215453093929735 -0.11308584932155866 1.0 4602 +Phenotype HP:0004404 Abnormal nipple morphology 0.06213970968013449 -0.11326190343454558 1.0 4603 +Biological Process GO:0046661 male sex differentiation 0.062137643528509034 -0.11328644618679891 1.0 4604 +Phenotype HP:0012286 Abnormal hypothalamus morphology 0.062114942680630114 -0.11355609788058957 1.0 4605 +Phenotype HP:0025276 Abnormality of skin adnexa physiology 0.062113370715848326 -0.11357477044155509 1.0 4606 +Biological Process GO:0061061 muscle structure development 0.06208902897966739 -0.1138639134033512 1.0 4607 +Phenotype HP:0000086 Ectopic kidney 0.06207499122018545 -0.11403066072669003 1.0 4608 +Disease MONDO:0018949 distal myopathy 0.06201682546602694 -0.1147215817977051 1.0 4609 +Phenotype HP:0003367 Abnormal femoral neck morphology 0.062015927836647444 -0.11473224427533005 1.0 4610 +Phenotype HP:0000363 Abnormal earlobe morphology 0.06198713477237916 -0.11507426227354657 1.0 4611 +Phenotype HP:0003510 Severe short stature 0.06196721000887595 -0.11531093828915953 1.0 4612 +Biological Process GO:0001508 action potential 0.06194781202096977 -0.11554135700844836 1.0 4613 +Phenotype HP:0012043 Pendular nystagmus 0.061935012861451644 -0.11569339163999907 1.0 4614 +Phenotype HP:0004467 Preauricular pit 0.061918654290510355 -0.11588770668875147 1.0 4615 +Phenotype HP:0001664 Torsade de pointes 0.06190959711407529 -0.11599529222827418 1.0 4616 +Phenotype HP:0003419 Low back pain 0.06190321696587442 -0.11607107872656604 1.0 4617 +Biological Process GO:0043401 steroid hormone mediated signaling pathway 0.06187957530442989 -0.11635190586071296 1.0 4618 +Phenotype HP:0002442 Dyscalculia 0.06185267241600423 -0.11667147143247195 1.0 4619 +Biological Process GO:0006476 protein deacetylation 0.06178953255090813 -0.11742147740844633 1.0 4620 +Phenotype HP:0011876 Abnormal platelet volume 0.06165816101610044 -0.11898197228800834 1.0 4621 +Phenotype HP:0007054 Proximal hyperreflexia 0.06160851733466555 -0.11957166404121172 1.0 4622 +Phenotype HP:0000965 Cutis marmorata 0.061584955308997436 -0.1198515452229382 1.0 4623 +Biological Process GO:0051592 response to calcium ion 0.061579182030882085 -0.11992012302368081 1.0 4624 +Phenotype HP:0004213 Abnormal 5th finger phalanx morphology 0.06157668759269053 -0.11994975317172626 1.0 4625 +Phenotype HP:0003165 Elevated circulating parathyroid hormone level 0.06149155329698219 -0.12096101967418778 1.0 4626 +Phenotype HP:0010303 Abnormal spinal meningeal morphology 0.061491418866147396 -0.1209626165089181 1.0 4627 +Phenotype HP:0000418 Narrow nasal ridge 0.061486825695848735 -0.12101717641599774 1.0 4628 +Phenotype HP:0010979 Abnormality of lipoprotein cholesterol concentration 0.061482479317651384 -0.12106880480666497 1.0 4629 +Phenotype HP:0000919 Abnormality of the costochondral junction 0.06145714198514152 -0.1213697739450806 1.0 4630 +Biological Process GO:0061458 reproductive system development 0.06145140888342204 -0.12143787451108481 1.0 4631 +Phenotype HP:0031938 Abnormal conus terminalis morphology 0.06138661415974511 -0.12220753770081995 1.0 4632 +Phenotype HP:0001688 Sinus bradycardia 0.06132849556537345 -0.12289789858498774 1.0 4633 +Phenotype HP:0003155 Elevated circulating alkaline phosphatase concentration 0.06129604388218712 -0.12328337543520167 1.0 4634 +Phenotype HP:0002033 Poor suck 0.06129307901944281 -0.12331859351450537 1.0 4635 +Biological Process GO:0071168 protein localization to chromatin 0.061244852910190106 -0.12389144665700848 1.0 4636 +Disease MONDO:0001941 blindness (disorder) 0.06120821483695593 -0.12432665148096553 1.0 4637 +Phenotype HP:0004568 Beaking of vertebral bodies 0.06120214550266179 -0.12439874598075369 1.0 4638 +Phenotype HP:0009106 Abnormal pelvis bone ossification 0.06119275555845016 -0.12451028429750596 1.0 4639 +Biological Process GO:0001822 kidney development 0.061187033389840106 -0.12457825499472781 1.0 4640 +Biological Process GO:0003231 cardiac ventricle development 0.06117239345375014 -0.12475215526421123 1.0 4641 +Biological Process GO:0000338 protein deneddylation 0.061152675326925476 -0.12498637674902136 1.0 4642 +Disease MONDO:0016297 prelingual non-syndromic genetic hearing loss 0.06113205812185918 -0.12523127792174446 1.0 4643 +Phenotype HP:0030197 Fatigable weakness of skeletal muscles 0.06109128854331658 -0.12571555877185983 1.0 4644 +Disease MONDO:0015161 multiple congenital anomalies/dysmorphic syndrome without intellectual disability 0.061041437299507395 -0.12630771605172955 1.0 4645 +Biological Process GO:0010923 negative regulation of phosphatase activity 0.06101262122105444 -0.12665000742360638 1.0 4646 +Phenotype HP:0410263 Brain imaging abnormality 0.061001325562350606 -0.12678418274244102 1.0 4647 +Biological Process GO:0051205 protein insertion into membrane 0.06099085071981203 -0.126908608008307 1.0 4648 +Phenotype HP:0025723 Abnormal fetal skin morphology 0.060977692770635694 -0.12706490451763275 1.0 4649 +Phenotype HP:0011146 Dialeptic seizure 0.06095084473913459 -0.12738381847220534 1.0 4650 +Disease MONDO:0001071 intellectual disability 0.06093320970023708 -0.12759329602714697 1.0 4651 +Phenotype HP:0001095 Hypertensive retinopathy 0.0609300407412362 -0.12763093846088763 1.0 4652 +Phenotype HP:0001896 Reticulocytopenia 0.06088715306959214 -0.1281403790493292 1.0 4653 +Phenotype HP:0009005 Weakness of the intrinsic hand muscles 0.060870419250791286 -0.12833915147436387 1.0 4654 +Phenotype HP:0011911 Abnormal metacarpophalangeal joint morphology 0.060850472754665264 -0.12857608564062312 1.0 4655 +Phenotype HP:0011474 Childhood onset sensorineural hearing impairment 0.06083591736316307 -0.12874898164844126 1.0 4656 +Phenotype HP:0032245 Abnormal metabolism 0.06082505000103522 -0.1288780694525815 1.0 4657 +Biological Process GO:0043161 proteasome-mediated ubiquitin-dependent protein catabolic process 0.06082314188578797 -0.12890073497199794 1.0 4658 +Phenotype HP:0001537 Umbilical hernia 0.06081404859992523 -0.12900874943683593 1.0 4659 +Biological Process GO:0032070 regulation of deoxyribonuclease activity 0.06081383867804446 -0.12901124299086592 1.0 4660 +Disease MONDO:0015469 craniosynostosis 0.0607778781300784 -0.12943839984070735 1.0 4661 +Phenotype HP:0001831 Short toe 0.060721413233677635 -0.13010911729740282 1.0 4662 +Biological Process GO:0035270 endocrine system development 0.06071313846830162 -0.13020740897845648 1.0 4663 +Biological Process GO:0060338 regulation of type I interferon-mediated signaling pathway 0.06065058755839481 -0.13095041905871788 1.0 4664 +Phenotype HP:0001414 Microvesicular hepatic steatosis 0.06062258287490385 -0.131283072287253 1.0 4665 +Biological Process GO:0072698 protein localization to microtubule cytoskeleton 0.06061702844414285 -0.13134905051285653 1.0 4666 +Phenotype HP:0032324 Non-periodic recurrent fever 0.060603677438923365 -0.13150764023560366 1.0 4667 +Phenotype HP:0001558 Decreased fetal movement 0.06059444359333732 -0.13161732433708562 1.0 4668 +Biological Process GO:0140374 antiviral innate immune response 0.06058523055463805 -0.13172676128426347 1.0 4669 +Disease MONDO:0019254 inborn disorder of purine or pyrimidine metabolism 0.06052849533581117 -0.13240068976199476 1.0 4670 +Biological Process GO:0030851 granulocyte differentiation 0.060501482221289704 -0.1327215646528414 1.0 4671 +Phenotype HP:0002356 Writer's cramp 0.060490956789457706 -0.1328465908428989 1.0 4672 +Phenotype HP:0031801 Vocal cord dysfunction 0.0604843023756938 -0.13292563520072168 1.0 4673 +Phenotype HP:0001605 Vocal cord paralysis 0.0604843023756938 -0.13292563520072168 1.0 4673 +Phenotype HP:0033683 Jaw hyperreflexia 0.060474730640558416 -0.13303933291833725 1.0 4675 +Phenotype HP:0001017 Anemic pallor 0.06046142572856994 -0.13319737512330526 1.0 4676 +Phenotype HP:0030346 Abnormal circulating follicle-stimulating hormone concentration 0.060447131254054653 -0.13336717183246138 1.0 4677 +Phenotype HP:0000021 Megacystis 0.060446664117415394 -0.13337272070828662 1.0 4678 +Phenotype HP:0000453 Choanal atresia 0.06042752352660352 -0.13360008193990688 1.0 4679 +Biological Process GO:0018208 peptidyl-proline modification 0.060401490191494434 -0.13390931853514895 1.0 4680 +Biological Process GO:0045727 positive regulation of translation 0.060378989104810765 -0.13417659736846582 1.0 4681 +Phenotype HP:0030187 Titubation 0.06036623369827143 -0.13432811228088956 1.0 4682 +Phenotype HP:0100555 Asymmetric growth 0.060359995898470964 -0.1344022078957624 1.0 4683 +Biological Process GO:2001257 regulation of cation channel activity 0.06034653003807766 -0.1345621619240335 1.0 4684 +Biological Process GO:0050954 sensory perception of mechanical stimulus 0.06032480981639854 -0.13482016526366744 1.0 4685 +Biological Process GO:0007605 sensory perception of sound 0.06032480981639854 -0.13482016526366744 1.0 4685 +Biological Process GO:0002792 negative regulation of peptide secretion 0.060291526111950655 -0.13521552526642458 1.0 4687 +Biological Process GO:0009636 response to toxic substance 0.060253662019964516 -0.13566529333642643 1.0 4688 +Biological Process GO:0044380 protein localization to cytoskeleton 0.06023047706416551 -0.1359406954991566 1.0 4689 +Biological Process GO:0034063 stress granule assembly 0.06022485727639437 -0.13600745006706147 1.0 4690 +Phenotype HP:0031504 Foamy urine 0.06022197145410735 -0.1360417292654344 1.0 4691 +Biological Process GO:2000773 negative regulation of cellular senescence 0.06019631982430207 -0.13634643177973596 1.0 4692 +Phenotype HP:0001056 Milia 0.06013119929494448 -0.13711996504754503 1.0 4693 +Biological Process GO:0032872 regulation of stress-activated MAPK cascade 0.06012200201407891 -0.13722921481552272 1.0 4694 +Disease MONDO:0019040 chromosomal disorder 0.0601089830724888 -0.13738386012524245 1.0 4695 +Phenotype HP:0008968 Muscle hypertrophy of the lower extremities 0.060053679626894674 -0.13804078130529945 1.0 4696 +Phenotype HP:0100641 Neoplasm of the adrenal cortex 0.06002652584880752 -0.13836332706628027 1.0 4697 +Phenotype HP:0002681 Deformed sella turcica 0.059948385914281754 -0.1392915111504144 1.0 4698 +Phenotype HP:0002579 Gastrointestinal dysmotility 0.05989575861273255 -0.13991664379207014 1.0 4699 +Disease MONDO:0002243 hemorrhagic disease 0.059881035399761307 -0.14009153326478554 1.0 4700 +Phenotype HP:0007787 Posterior subcapsular cataract 0.05986309370983234 -0.14030465336957712 1.0 4701 +Disease MONDO:0019707 primary osteolysis 0.059860989196950376 -0.140329651795462 1.0 4702 +Phenotype HP:5200024 Abnormal relationship 0.05979019756128856 -0.14117054921763034 1.0 4703 +Phenotype HP:0007305 CNS demyelination 0.059723536579376235 -0.14196238072887085 1.0 4704 +Biological Process GO:0032069 regulation of nuclease activity 0.0597033084999673 -0.1422026596780909 1.0 4705 +Biological Process GO:0046006 regulation of activated T cell proliferation 0.059685450186546696 -0.14241478939623162 1.0 4706 +Phenotype HP:0007928 Abnormal flash visual evoked potentials 0.0596781722548978 -0.1425012402022493 1.0 4707 +Biological Process GO:0001890 placenta development 0.05960111175530802 -0.1434166022340804 1.0 4708 +Disease MONDO:0045012 steroid metabolism disease 0.05955725357390518 -0.1439375710086801 1.0 4709 +Phenotype HP:0003038 Fibular hypoplasia 0.05954974304137439 -0.14402678476091516 1.0 4710 +Biological Process GO:0051131 chaperone-mediated protein complex assembly 0.05954743491016434 -0.14405420186417053 1.0 4711 +Phenotype HP:0000946 Hypoplastic ilia 0.059533319382500394 -0.14422187295573657 1.0 4712 +Phenotype HP:0001817 Absent fingernail 0.059522892473586664 -0.14434572884273184 1.0 4713 +Phenotype HP:0011328 Abnormality of fontanelles 0.059518307791064706 -0.14440018792787843 1.0 4714 +Phenotype HP:0004673 Decreased facial expression 0.0595062184408397 -0.14454379109998855 1.0 4715 +Phenotype HP:0006640 Multiple rib fractures 0.059462021070893156 -0.14506878892080755 1.0 4716 +Biological Process GO:0098916 anterograde trans-synaptic signaling 0.05939234202854682 -0.14589647041934084 1.0 4717 +Biological Process GO:0007268 chemical synaptic transmission 0.05939234202854682 -0.14589647041934084 1.0 4717 +Biological Process GO:0007600 sensory perception 0.05937258732186701 -0.14613112641743217 1.0 4719 +Phenotype HP:0012463 Elevated transferrin saturation 0.059339212444781686 -0.14652756941304687 1.0 4720 +Phenotype HP:0005227 Adenomatous colonic polyposis 0.059305708479221564 -0.14692554578424577 1.0 4721 +Phenotype HP:0009890 High anterior hairline 0.05928519746237704 -0.14716918560170963 1.0 4722 +Biological Process GO:1902807 negative regulation of cell cycle G1/S phase transition 0.05923387208376363 -0.14777885337056879 1.0 4723 +Biological Process GO:0007020 microtubule nucleation 0.059230117604720856 -0.1478234508956738 1.0 4724 +Phenotype HP:0100321 Abnormal dentate nucleus morphology 0.059210234162382025 -0.14805963607843226 1.0 4725 +Disease MONDO:0005044 hypertensive disorder 0.05920473532735615 -0.14812495391089872 1.0 4726 +Phenotype HP:0007021 Pain insensitivity 0.059204612887065244 -0.14812640831612656 1.0 4727 +Phenotype HP:0008059 Aplasia/Hypoplasia of the macula 0.059119145380912896 -0.14914163285403664 1.0 4728 +Phenotype HP:0009073 Progressive proximal muscle weakness 0.05911821249929994 -0.14915271407480787 1.0 4729 +Phenotype HP:0000415 Abnormal choanae morphology 0.05909819377456471 -0.14939050620755878 1.0 4730 +Biological Process GO:1903059 regulation of protein lipidation 0.05909011918666085 -0.1494864200833995 1.0 4731 +Biological Process GO:0043200 response to amino acid 0.05907901988571751 -0.14961826296941097 1.0 4732 +Biological Process GO:0097193 intrinsic apoptotic signaling pathway 0.05905042453888931 -0.14995793238386992 1.0 4733 +Biological Process GO:0032515 negative regulation of phosphoprotein phosphatase activity 0.05903185492808305 -0.15017851123773696 1.0 4734 +Phenotype HP:0002200 Pseudobulbar signs 0.05901656582717696 -0.1503601226021165 1.0 4735 +Biological Process GO:1904752 regulation of vascular associated smooth muscle cell migration 0.05900208014644426 -0.1505321905515657 1.0 4736 +Biological Process GO:0141086 negative regulation of inflammasome-mediated signaling pathway 0.05899805494453869 -0.15058000385428788 1.0 4737 +Disease MONDO:0001377 vitreous syneresis 0.05895670037115941 -0.15107123355712504 1.0 4738 +Disease MONDO:0020248 vitreoretinal degeneration 0.05895670037115941 -0.15107123355712504 1.0 4738 +Biological Process GO:1900117 regulation of execution phase of apoptosis 0.058920631787830025 -0.15149967370346992 1.0 4740 +Phenotype HP:0030842 Choking episodes 0.058919395118351536 -0.15151436346401598 1.0 4741 +Phenotype HP:0000551 Color vision defect 0.058903563510757984 -0.15170241898625023 1.0 4742 +Phenotype HP:0006487 Bowing of the long bones 0.058846178555162054 -0.15238406535281226 1.0 4743 +Phenotype HP:0000526 Aniridia 0.05879817852586533 -0.15295423300782227 1.0 4744 +Disease MONDO:0016761 spondyloepiphyseal dysplasia 0.05878329634949331 -0.1531310107249988 1.0 4745 +Phenotype HP:0007648 Punctate cataract 0.058762056229926474 -0.15338331117862333 1.0 4746 +Phenotype HP:0030991 Sclerosing cholangitis 0.05870947838231022 -0.1540078563824505 1.0 4747 +Biological Process GO:0050886 endocrine process 0.05870178204246457 -0.15409927724419265 1.0 4748 +Phenotype HP:0000402 Stenosis of the external auditory canal 0.058678138343498 -0.1543801285810157 1.0 4749 +Phenotype HP:0002979 Bowing of the legs 0.05863257377813036 -0.15492136661290562 1.0 4750 +Phenotype HP:0030195 Fatigable weakness of swallowing muscles 0.05863002444653065 -0.1549516488115073 1.0 4751 +Phenotype HP:0033603 Glomerular subepithelial deposits 0.05862641340694019 -0.15499454249314887 1.0 4752 +Disease MONDO:0000425 X-linked disease 0.05860101677362295 -0.15529621603534874 1.0 4753 +Phenotype HP:0006501 Aplasia/Hypoplasia of the radius 0.05852546001101211 -0.15619371594918546 1.0 4754 +Phenotype HP:0000574 Thick eyebrow 0.05850941264274123 -0.1563843343815103 1.0 4755 +Phenotype HP:0000282 Facial edema 0.058494167538281516 -0.1565654231347368 1.0 4756 +Biological Process GO:0071230 cellular response to amino acid stimulus 0.058486392078625604 -0.15665778382000287 1.0 4757 +Phenotype HP:0002375 Hypokinesia 0.05848031107049556 -0.1567300169872822 1.0 4758 +Phenotype HP:0000456 Bifid nasal tip 0.05847134521863118 -0.15683651772921053 1.0 4759 +Phenotype HP:0030890 Hyperintensity of cerebral white matter on MRI 0.05844971095499263 -0.15709350001750053 1.0 4760 +Phenotype HP:0031817 Decreased circulating parathyroid hormone level 0.058448664216870894 -0.1571059336811675 1.0 4761 +Phenotype HP:0001055 Erysipelas 0.05839987261194102 -0.15768550405590767 1.0 4762 +Biological Process GO:0045995 regulation of embryonic development 0.05838113508021636 -0.1579080775559795 1.0 4763 +Biological Process GO:0051289 protein homotetramerization 0.0583766937777811 -0.15796083350283635 1.0 4764 +Phenotype HP:0012471 Thick vermilion border 0.05836775787232207 -0.158066978526821 1.0 4765 +Disease MONDO:0018762 non-acquired combined pituitary hormone deficiency 0.058349913976101675 -0.15827893699045714 1.0 4766 +Biological Process GO:0006984 ER-nucleus signaling pathway 0.05824856691262603 -0.15948278662077395 1.0 4767 +Phenotype HP:0006711 Aplasia/Hypoplasia involving bones of the thorax 0.05823366238294281 -0.15965982986143487 1.0 4768 +Phenotype HP:0007665 Curly eyelashes 0.05816651898256442 -0.1604573917734597 1.0 4769 +Disease MONDO:0017757 disorder of metabolite absorption and transport 0.058150293078959914 -0.16065013093516747 1.0 4770 +Biological Process GO:0032925 regulation of activin receptor signaling pathway 0.05812176188989837 -0.16098903825252148 1.0 4771 +Phenotype HP:0100704 Cerebral visual impairment 0.058119291879278556 -0.16101837823800866 1.0 4772 +Phenotype HP:0000455 Broad nasal tip 0.05810535935246042 -0.16118387555666977 1.0 4773 +Phenotype HP:0003388 Easy fatigability 0.058069247120377976 -0.1616128341840977 1.0 4774 +Biological Process GO:0090101 negative regulation of transmembrane receptor protein serine/threonine kinase signaling pathway 0.05806893831477933 -0.16161650232694288 1.0 4775 +Disease MONDO:0020119 X-linked syndromic intellectual disability 0.05804149037718087 -0.16194254225743188 1.0 4776 +Phenotype HP:0003022 Hypoplasia of the ulna 0.05799741242462464 -0.16246612158050416 1.0 4777 +Disease MONDO:0019006 familial idiopathic steroid-resistant nephrotic syndrome 0.05798570704684469 -0.16260516374146913 1.0 4778 +Disease MONDO:0018170 idiopathic nephrotic syndrome 0.05798570704684469 -0.16260516374146913 1.0 4778 +Biological Process GO:1900102 negative regulation of endoplasmic reticulum unfolded protein response 0.05796634189063987 -0.1628351924698674 1.0 4780 +Phenotype HP:0005994 Nodular goiter 0.057965038909362665 -0.16285066991415717 1.0 4781 +Phenotype HP:0009824 Upper limb undergrowth 0.057946910626618386 -0.1630660064590115 1.0 4782 +Phenotype HP:0003341 Lamina lucida cleavage 0.057938364312206 -0.16316752373137325 1.0 4783 +Phenotype HP:0001991 Aplasia/Hypoplasia of toe 0.05793045621121018 -0.16326145999488045 1.0 4784 +Phenotype HP:0005019 Diaphyseal undertubulation 0.057914926854334636 -0.1634459252363245 1.0 4785 +Disease MONDO:0002525 inherited lipid metabolism disorder 0.057889956670375664 -0.16374253320597895 1.0 4786 +Biological Process GO:0046931 pore complex assembly 0.05787847764788634 -0.16387888660889224 1.0 4787 +Phenotype HP:0010609 Skin tags 0.05779295870635326 -0.16489472212122974 1.0 4788 +Biological Process GO:0003279 cardiac septum development 0.05775089297225511 -0.16539439933639874 1.0 4789 +Biological Process GO:2000648 positive regulation of stem cell proliferation 0.05771345889784141 -0.16583905944887467 1.0 4790 +Phenotype HP:0001191 Abnormal carpal morphology 0.05765586301743608 -0.16652321128273995 1.0 4791 +Biological Process GO:0010212 response to ionizing radiation 0.0576288547117203 -0.16684402905225768 1.0 4792 +Disease MONDO:0001411 synostosis 0.057519796838809145 -0.1681394714211309 1.0 4793 +Phenotype HP:0009023 Abdominal wall muscle weakness 0.05751064710654252 -0.16824815638376248 1.0 4794 +Biological Process GO:1903319 positive regulation of protein maturation 0.057474388200518534 -0.1686788572754875 1.0 4795 +Phenotype HP:0009843 Aplasia/Hypoplasia of the middle phalanges of the hand 0.05746777507900669 -0.16875741114389028 1.0 4796 +Phenotype HP:0100598 Pulmonary edema 0.057454329376682045 -0.16891712572483383 1.0 4797 +Phenotype HP:0007375 Abnormal septum pellucidum morphology 0.05745335949462327 -0.16892864645486652 1.0 4798 +Biological Process GO:0043583 ear development 0.05745029424741799 -0.16896505694954053 1.0 4799 +Disease MONDO:0005240 kidney disorder 0.057448643992416226 -0.16898465947975375 1.0 4800 +Biological Process GO:0046683 response to organophosphorus 0.05744678855922214 -0.16900669921616224 1.0 4801 +Phenotype HP:0004373 Focal dystonia 0.057431040637324515 -0.16919376067906558 1.0 4802 +Phenotype HP:0000162 Glossoptosis 0.05742527183726143 -0.16926228528732906 1.0 4803 +Biological Process GO:1901989 positive regulation of cell cycle phase transition 0.05740177943063529 -0.16954133950027053 1.0 4804 +Phenotype HP:0500015 Abnormal cardiac test 0.0573655343349726 -0.16997187634581823 1.0 4805 +Phenotype HP:0040084 Abnormal circulating renin 0.05735971435199694 -0.17004100892956978 1.0 4806 +Phenotype HP:0002448 Progressive encephalopathy 0.05732485496382411 -0.17045508566870501 1.0 4807 +Biological Process GO:1904355 positive regulation of telomere capping 0.057313472203768034 -0.17059029561969474 1.0 4808 +Phenotype HP:0032016 Abnormal sputum 0.05729996548905181 -0.17075073493545087 1.0 4809 +Phenotype HP:0000161 Median cleft upper lip 0.05729896115126254 -0.17076266494738074 1.0 4810 +Biological Process GO:0090025 regulation of monocyte chemotaxis 0.05729512590842256 -0.17080822182408484 1.0 4811 +Phenotype HP:0006490 Abnormal lower-limb metaphysis morphology 0.05729462336434743 -0.17081419128662592 1.0 4812 +Phenotype HP:0007772 Impaired smooth pursuit 0.057279457866004746 -0.17099433443974055 1.0 4813 +Biological Process GO:0098655 monoatomic cation transmembrane transport 0.057257152112833776 -0.17125929300674692 1.0 4814 +Phenotype HP:0008061 Aplasia/Hypoplasia of the retina 0.05723188987159755 -0.17155937017455267 1.0 4815 +Biological Process GO:0001678 intracellular glucose homeostasis 0.05717839400306424 -0.1721948200765894 1.0 4816 +Phenotype HP:0011505 Cystoid macular edema 0.05712820691642195 -0.17279096666070343 1.0 4817 +Phenotype HP:0010991 Abnormal morphology of the abdominal musculature 0.057120935195008826 -0.17287734369852517 1.0 4818 +Phenotype HP:0032261 Nontuberculous mycobacterial pulmonary infection 0.05705782940981918 -0.17362694485682278 1.0 4819 +Phenotype HP:0003376 Steppage gait 0.05704872285141438 -0.17373511697936006 1.0 4820 +Phenotype HP:0007024 Pseudobulbar paralysis 0.05701215971418727 -0.17416943167703905 1.0 4821 +Phenotype HP:0008887 Adipose tissue loss 0.056997153718684856 -0.17434768017796834 1.0 4822 +Biological Process GO:0046637 regulation of alpha-beta T cell differentiation 0.056944546565177556 -0.1749725734913992 1.0 4823 +Phenotype HP:0011220 Prominent forehead 0.05694145248770188 -0.17500932644602385 1.0 4824 +Biological Process GO:0036294 cellular response to decreased oxygen levels 0.05690580706350623 -0.17543274010270798 1.0 4825 +Biological Process GO:0071456 cellular response to hypoxia 0.05690580706350623 -0.17543274010270798 1.0 4825 +Disease MONDO:0019064 hereditary spastic paraplegia 0.05688139024446848 -0.17572277493513483 1.0 4827 +Disease MONDO:0003757 paraplegia 0.05688139024446848 -0.17572277493513483 1.0 4827 +Disease MONDO:0019288 skin pigmentation disorder 0.056860725605827445 -0.17596823954689061 1.0 4829 +Phenotype HP:0000095 Abnormal renal glomerulus morphology 0.056810755715819616 -0.17656180616391798 1.0 4830 +Phenotype HP:0000105 Enlarged kidney 0.05675176006066984 -0.1772625852018762 1.0 4831 +Phenotype HP:0011344 Severe global developmental delay 0.05675116639597322 -0.17726963703940415 1.0 4832 +Phenotype HP:0003698 Difficulty standing 0.056744211828220426 -0.17735224677205047 1.0 4833 +Biological Process GO:0010001 glial cell differentiation 0.056680517527819774 -0.17810883859978546 1.0 4834 +Phenotype HP:0030065 Primitive neuroectodermal tumor 0.05663977705277734 -0.1785927737443943 1.0 4835 +Phenotype HP:0010577 Absent epiphyses 0.05663712798863518 -0.17862424061456156 1.0 4836 +Phenotype HP:0006934 Congenital nystagmus 0.056632686027859314 -0.17867700438150777 1.0 4837 +Phenotype HP:0004430 Severe combined immunodeficiency 0.05662526127586909 -0.17876519919083025 1.0 4838 +Phenotype HP:0031508 Abnormal circulating thyroid hormone concentration 0.05661195419898102 -0.17892326711152684 1.0 4839 +Phenotype HP:0012331 Abnormal autonomic nervous system morphology 0.056610462058289235 -0.1789409914831917 1.0 4840 +Phenotype HP:0025028 Abnormal enteric nervous system morphology 0.056610462058289235 -0.1789409914831917 1.0 4840 +Phenotype HP:0011100 Intestinal atresia 0.056581652234161894 -0.17928320856315205 1.0 4842 +Phenotype HP:0009700 Finger symphalangism 0.05653923443651998 -0.17978706776004277 1.0 4843 +Biological Process GO:0010232 vascular transport 0.05653558256040436 -0.1798304465177589 1.0 4844 +Biological Process GO:0150104 transport across blood-brain barrier 0.05653558256040436 -0.1798304465177589 1.0 4844 +Phenotype HP:0011931 Abnormal cerebellar peduncle morphology 0.05653263874088188 -0.17986541463545588 1.0 4846 +Phenotype HP:0100699 Scarring 0.05651555333659419 -0.18006836336361995 1.0 4847 +Phenotype HP:0001138 Optic neuropathy 0.056501037016152056 -0.1802407952664153 1.0 4848 +Phenotype HP:0000567 Chorioretinal coloboma 0.056432886386306946 -0.1810503215391189 1.0 4849 +Biological Process GO:0007005 mitochondrion organization 0.05642548964391214 -0.18113818363686657 1.0 4850 +Phenotype HP:0001820 Leukonychia 0.05642458112512605 -0.18114897546415057 1.0 4851 +Phenotype HP:0003324 Generalized muscle weakness 0.05641503095499245 -0.1812624170222038 1.0 4852 +Biological Process GO:0042417 dopamine metabolic process 0.05641105031440696 -0.1813097010039288 1.0 4853 +Disease MONDO:0000577 congenital anemia 0.056392033044670886 -0.18153559736793062 1.0 4854 +Phenotype HP:0000027 Azoospermia 0.05637834481478454 -0.1816981928090144 1.0 4855 +Phenotype HP:0010951 Abnormal third ventricle morphology 0.056371698400617176 -0.18177714214374513 1.0 4856 +Phenotype HP:0007082 Dilated third ventricle 0.056371698400617176 -0.18177714214374513 1.0 4856 +Phenotype HP:0005435 Impaired T cell function 0.056363070461818876 -0.18187962899019655 1.0 4858 +Phenotype HP:0002208 Coarse hair 0.056347285401655234 -0.18206713159945662 1.0 4859 +Phenotype HP:0003336 Abnormal enchondral ossification 0.05633907311116426 -0.18216468117349027 1.0 4860 +Disease MONDO:0100172 intellectual disability, autosomal dominant 0.05633018148325131 -0.18227030024728313 1.0 4861 +Phenotype HP:0032677 Generalized-onset motor seizure 0.056286022033071204 -0.182794847638704 1.0 4862 +Phenotype HP:0007269 Spinal muscular atrophy 0.05624520348502349 -0.1832797101723789 1.0 4863 +Phenotype HP:0001849 Foot oligodactyly 0.056216768555728436 -0.18361747406948636 1.0 4864 +Disease MONDO:0015909 aplastic anemia 0.05609591724225016 -0.18505300465187063 1.0 4865 +Phenotype HP:0001059 Pterygium 0.0560837517658056 -0.1851975120881806 1.0 4866 +Phenotype HP:0012131 Abnormal number of erythroid precursors 0.0560816116812658 -0.1852229330514896 1.0 4867 +Phenotype HP:0005117 Elevated diastolic blood pressure 0.05606208195620166 -0.18545491660870733 1.0 4868 +Biological Process GO:0009410 response to xenobiotic stimulus 0.05602690800225241 -0.18587272991287637 1.0 4869 +Phenotype HP:0001719 Double outlet right ventricle 0.05601147037705778 -0.186056105520873 1.0 4870 +Phenotype HP:0000325 Triangular face 0.05599759658202175 -0.1862209051949083 1.0 4871 +Biological Process GO:0097306 cellular response to alcohol 0.05598030698642853 -0.18642627940654716 1.0 4872 +Phenotype HP:0002944 Thoracolumbar scoliosis 0.05597101609762001 -0.18653664109512377 1.0 4873 +Phenotype HP:0010302 Spinal cord tumor 0.05596938024616749 -0.18655607253298523 1.0 4874 +Biological Process GO:0035627 ceramide transport 0.05593931011718334 -0.1869132601259918 1.0 4875 +Phenotype HP:0004347 Weakness of muscles of respiration 0.05592974844036902 -0.1870268383659858 1.0 4876 +Phenotype HP:0000523 Subcapsular cataract 0.05591748421315723 -0.18717251881185865 1.0 4877 +Phenotype HP:0012230 Rhegmatogenous retinal detachment 0.05591029269763803 -0.18725794312512734 1.0 4878 +Phenotype HP:0010841 Multifocal epileptiform discharges 0.055886214793218314 -0.18754395216515687 1.0 4879 +Biological Process GO:0019217 regulation of fatty acid metabolic process 0.055815135665744475 -0.1883882645546637 1.0 4880 +Disease MONDO:0021568 renal tubule disorder 0.05576231004767329 -0.18901575289626263 1.0 4881 +Disease MONDO:0015962 inherited renal tubular disease 0.05576231004767329 -0.18901575289626263 1.0 4881 +Phenotype HP:0011932 Abnormal superior cerebellar peduncle morphology 0.05575303462832937 -0.18912593083102736 1.0 4883 +Phenotype HP:0005116 Arterial tortuosity 0.055745816498327105 -0.18921167128404887 1.0 4884 +Disease MONDO:0016298 postlingual non-syndromic genetic hearing loss 0.05574192849189852 -0.1892578549122785 1.0 4885 +Phenotype HP:0000426 Prominent nasal bridge 0.055732313701810865 -0.18937206405752302 1.0 4886 +Phenotype HP:0000544 External ophthalmoplegia 0.05571851091273572 -0.18953602028827704 1.0 4887 +Phenotype HP:0005346 Abnormal facial expression 0.05569646730303235 -0.18979786498788817 1.0 4888 +Phenotype HP:0000023 Inguinal hernia 0.0556930609025974 -0.18983832786627544 1.0 4889 +Disease MONDO:0016296 holoprosencephaly 0.05566869848419953 -0.19012771650148685 1.0 4890 +Phenotype HP:0200037 Skin vesicle 0.055581821462213354 -0.19115968395287944 1.0 4891 +Phenotype HP:0001937 Microangiopathic hemolytic anemia 0.055531607362235946 -0.19175615141450475 1.0 4892 +Phenotype HP:0000221 Furrowed tongue 0.05551488386834502 -0.19195480119524588 1.0 4893 +Phenotype HP:0012764 Orthopnea 0.05544610466963795 -0.19277179391410143 1.0 4894 +Biological Process GO:0016311 dephosphorylation 0.055438284158814466 -0.1928646897390111 1.0 4895 +Biological Process GO:0051168 nuclear export 0.05542709657612532 -0.19299758127846553 1.0 4896 +Phenotype HP:0009134 Osteolysis involving bones of the feet 0.0553551372280241 -0.19385234935598675 1.0 4897 +Phenotype HP:0011198 EEG with generalized epileptiform discharges 0.05533818060551776 -0.19405376835162033 1.0 4898 +Phenotype HP:0003375 Narrow greater sciatic notch 0.055308791855369854 -0.19440286219595784 1.0 4899 +Phenotype HP:0002937 Hemivertebrae 0.05529226200034165 -0.19459921184026377 1.0 4900 +Phenotype HP:0000869 Secondary amenorrhea 0.05525818183674913 -0.19500403257147175 1.0 4901 +Phenotype HP:0002898 Embryonal neoplasm 0.05525597643486335 -0.19503022940593193 1.0 4902 +Phenotype HP:0012040 Corneal stromal edema 0.05523639918291612 -0.19526277751054436 1.0 4903 +Biological Process GO:0032963 collagen metabolic process 0.055187563277814156 -0.1958428741042391 1.0 4904 +Phenotype HP:0002917 Hypomagnesemia 0.05514990786956986 -0.1962901633274263 1.0 4905 +Biological Process GO:0006639 acylglycerol metabolic process 0.05513433008048674 -0.19647520387014883 1.0 4906 +Biological Process GO:0006638 neutral lipid metabolic process 0.05513433008048674 -0.19647520387014883 1.0 4906 +Phenotype HP:0002326 Transient ischemic attack 0.055120358561979055 -0.19664116435103124 1.0 4908 +Disease MONDO:0021181 inherited blood coagulation disorder 0.055110432351170635 -0.19675907270281132 1.0 4909 +Phenotype HP:0003473 Fatigable weakness 0.055103771521589406 -0.1968381932708275 1.0 4910 +Phenotype HP:0003084 Fractures of the long bones 0.055095258924484414 -0.19693931003264017 1.0 4911 +Biological Process GO:0002011 morphogenesis of an epithelial sheet 0.05508455341198715 -0.1970664753082802 1.0 4912 +Biological Process GO:1903008 organelle disassembly 0.05506516346619206 -0.19729679849946857 1.0 4913 +Phenotype HP:0100775 Dural ectasia 0.05504449158333391 -0.19754234916155278 1.0 4914 +Phenotype HP:0009465 Ulnar deviation of finger 0.05501728198045863 -0.19786555803647338 1.0 4915 +Phenotype HP:0000189 Narrow palate 0.05499210090367701 -0.19816467109347694 1.0 4916 +Phenotype HP:0004552 Scarring alopecia of scalp 0.05498841407208099 -0.19820846506936232 1.0 4917 +Phenotype HP:0002948 Vertebral fusion 0.05498368406640419 -0.19826465037350566 1.0 4918 +Phenotype HP:0003334 Elevated circulating catecholamine level 0.054869623853328386 -0.19961951296780436 1.0 4919 +Phenotype HP:0012099 Abnormality of circulating catecholamine level 0.054869623853328386 -0.19961951296780436 1.0 4919 +Phenotype HP:0008046 Abnormal retinal vascular morphology 0.0548547707034317 -0.19979594589441269 1.0 4921 +Phenotype HP:0030966 Abnormal pulmonary artery morphology 0.05485421383638189 -0.19980256063162413 1.0 4922 +Phenotype HP:0100755 Abnormality of salivation 0.054846928465085765 -0.19988909980938407 1.0 4923 +Biological Process GO:0021782 glial cell development 0.054836031905922566 -0.20001853443008716 1.0 4924 +Phenotype HP:0005924 Abnormal hand epiphysis morphology 0.054798524686439865 -0.2004640633952092 1.0 4925 +Phenotype HP:0000150 Gonadoblastoma 0.05478039451376182 -0.20067942238961448 1.0 4926 +Phenotype HP:0003687 Centrally nucleated skeletal muscle fibers 0.05473986403729325 -0.20116086306919548 1.0 4927 +Phenotype HP:0008981 Calf muscle hypertrophy 0.054732834784598894 -0.20124435994584192 1.0 4928 +Disease MONDO:0005503 developmental disorder of mental health 0.0547133273963718 -0.20147607817526328 1.0 4929 +Disease MONDO:0005084 mental disorder 0.0547133273963718 -0.20147607817526328 1.0 4929 +Disease MONDO:0016139 qualitative or quantitative protein defects in neuromuscular diseases 0.054699406694036945 -0.20164143503697043 1.0 4931 +Disease MONDO:0018102 corneal dystrophy 0.05469924816131111 -0.2016433181656655 1.0 4932 +Biological Process GO:0000209 protein polyubiquitination 0.05465260357422708 -0.20219738521992098 1.0 4933 +Phenotype HP:0010693 Pulverulent cataract 0.05465103535758398 -0.20221601325867522 1.0 4934 +Phenotype HP:0002697 Parietal foramina 0.05464619908748791 -0.2022734608231886 1.0 4935 +Phenotype HP:0007380 Facial telangiectasia 0.054617689533694946 -0.2026121111463172 1.0 4936 +Phenotype HP:0000502 Abnormal conjunctiva morphology 0.05458843122303336 -0.2029596555670996 1.0 4937 +Biological Process GO:0044743 protein transmembrane import into intracellular organelle 0.05457635350397805 -0.20310312057852842 1.0 4938 +Phenotype HP:0031263 Abnormal renal corpuscle morphology 0.05456112648132949 -0.2032839945472221 1.0 4939 +Disease MONDO:0018634 hereditary amyloidosis 0.05452775914752106 -0.20368034794013115 1.0 4940 +Disease MONDO:0019065 amyloidosis 0.05452775914752106 -0.20368034794013115 1.0 4940 +Biological Process GO:0032682 negative regulation of chemokine production 0.054509166283928545 -0.20390120300188397 1.0 4942 +Phenotype HP:0031964 Elevated circulating alanine aminotransferase concentration 0.05446002708596176 -0.20448490225549476 1.0 4943 +Biological Process GO:1903018 regulation of glycoprotein metabolic process 0.05442749151277293 -0.20487137559189222 1.0 4944 +Disease MONDO:0000833 bone remodeling disease 0.054374861808240915 -0.20549653677734459 1.0 4945 +Phenotype HP:0002209 Sparse scalp hair 0.05436596854451303 -0.20560217528214147 1.0 4946 +Phenotype HP:0006492 Aplasia/Hypoplasia of the fibula 0.054355055724842005 -0.20573180305305203 1.0 4947 +Disease MONDO:0015229 Bardet-Biedl syndrome 0.0542849190490573 -0.20656492054377595 1.0 4948 +Biological Process GO:0009952 anterior/posterior pattern specification 0.05427590179480879 -0.20667203186818203 1.0 4949 +Biological Process GO:0016358 dendrite development 0.05426078884044894 -0.2068515508783552 1.0 4950 +Phenotype HP:0003323 Progressive muscle weakness 0.054238200920501134 -0.20711986115934644 1.0 4951 +Biological Process GO:0019827 stem cell population maintenance 0.05421282781903025 -0.20742125517884907 1.0 4952 +Phenotype HP:0034398 Toe deformity 0.05416795435366062 -0.20795428398939028 1.0 4953 +Phenotype HP:0003839 Abnormal upper limb epiphysis morphology 0.05407419949942138 -0.20906794967190348 1.0 4954 +Phenotype HP:0025245 Cutaneous cyst 0.05407202665104327 -0.2090937598199928 1.0 4955 +Biological Process GO:0048609 multicellular organismal reproductive process 0.05407044162405317 -0.20911258754021123 1.0 4956 +Phenotype HP:0012535 Abnormal synaptic transmission 0.054006482131336964 -0.20987232945103787 1.0 4957 +Phenotype HP:0030191 Abnormal peripheral nervous system synaptic transmission 0.054006482131336964 -0.20987232945103787 1.0 4957 +Phenotype HP:0003398 Abnormal synaptic transmission at the neuromuscular junction 0.054006482131336964 -0.20987232945103787 1.0 4957 +Biological Process GO:0016064 immunoglobulin mediated immune response 0.05395254305634001 -0.21051304397465423 1.0 4960 +Phenotype HP:0100626 Chronic hepatic failure 0.053945030320847964 -0.21060228389473282 1.0 4961 +Phenotype HP:0004414 Abnormality of the pulmonary artery 0.053941323900998595 -0.21064631054940283 1.0 4962 +Phenotype HP:0007371 Corpus callosum atrophy 0.053879503876662405 -0.21138063881596564 1.0 4963 +Phenotype HP:0010625 Anterior pituitary dysgenesis 0.053861016889450664 -0.211600236226658 1.0 4964 +Biological Process GO:2000142 regulation of DNA-templated transcription initiation 0.053812861899468656 -0.21217224457993092 1.0 4965 +Phenotype HP:0010845 EEG with generalized slow activity 0.053786307533076116 -0.21248767023775117 1.0 4966 +Biological Process GO:1901021 positive regulation of calcium ion transmembrane transporter activity 0.0537712387275473 -0.21266666482667226 1.0 4967 +Phenotype HP:0001954 Recurrent fever 0.05371170641255707 -0.21337381857079743 1.0 4968 +Phenotype HP:0002308 Chiari malformation 0.053589624492707655 -0.2148239668931946 1.0 4969 +Disease MONDO:0019270 erythrokeratoderma 0.05358812727048656 -0.214841751625732 1.0 4970 +Phenotype HP:0006429 Broad femoral neck 0.05355321600889473 -0.21525644454252596 1.0 4971 +Phenotype HP:0031273 Shock 0.0535421940813503 -0.21538736834973551 1.0 4972 +Phenotype HP:0032466 Aplasia of the olfactory bulb 0.05348582110699618 -0.21605699391172706 1.0 4973 +Phenotype HP:0011950 Bronchiolitis 0.053478604610071034 -0.2161427149662656 1.0 4974 +Phenotype HP:0100759 Clubbing of fingers 0.05346768710051841 -0.216272398445867 1.0 4975 +Phenotype HP:0002505 Loss of ambulation 0.05346604123390486 -0.21629194884867423 1.0 4976 +Disease MONDO:0044137 vitreous body disorder 0.053458979344064184 -0.216375833405192 1.0 4977 +Disease MONDO:0004860 vitreous disorder 0.053458979344064184 -0.216375833405192 1.0 4977 +Biological Process GO:1903556 negative regulation of tumor necrosis factor superfamily cytokine production 0.05345161627578365 -0.21646329550545942 1.0 4979 +Phenotype HP:0003282 Low alkaline phosphatase 0.0533846810715245 -0.21725838436288775 1.0 4980 +Phenotype HP:0011519 Anomalous trichromacy 0.053340753985431366 -0.2177801716208562 1.0 4981 +Phenotype HP:0005528 Bone marrow hypocellularity 0.05333159834565748 -0.2178889267557275 1.0 4982 +Disease MONDO:0016333 familial dilated cardiomyopathy 0.053306181090508664 -0.21819084525405602 1.0 4983 +Disease MONDO:0005021 dilated cardiomyopathy 0.053306181090508664 -0.21819084525405602 1.0 4983 +Phenotype HP:0002144 Tethered cord 0.05328530176235968 -0.21843886005203245 1.0 4985 +Phenotype HP:0006503 Aplasia/hypoplasia involving forearm bones 0.05324013276158823 -0.21897539937557742 1.0 4986 +Phenotype HP:0001562 Oligohydramnios 0.05319150026970243 -0.21955307972832072 1.0 4987 +Phenotype HP:0010543 Opsoclonus 0.053180163977638695 -0.21968773770993427 1.0 4988 +Phenotype HP:0001557 Prenatal movement abnormality 0.053155198031661355 -0.21998429533878508 1.0 4989 +Phenotype HP:0006872 Cerebral hypoplasia 0.0531538303824074 -0.22000054094070307 1.0 4990 +Phenotype HP:0005184 Prolonged QTc interval 0.05313827834104967 -0.2201852756394412 1.0 4991 +Disease MONDO:0019694 spondylodysplastic dysplasia 0.05311394308431849 -0.22047434163518695 1.0 4992 +Phenotype HP:0000996 Facial capillary hemangioma 0.05307418896554805 -0.22094656036105922 1.0 4993 +Biological Process GO:0035307 positive regulation of protein dephosphorylation 0.05306430515537808 -0.2210639650574677 1.0 4994 +Phenotype HP:0009161 Aplasia/Hypoplasia of the middle phalanx of the 5th finger 0.052983515705188555 -0.22202362137516188 1.0 4995 +Phenotype HP:0004219 Abnormality of the middle phalanx of the 5th finger 0.052983515705188555 -0.22202362137516188 1.0 4995 +Phenotype HP:5200293 Disturbance during transitions between sleep and wake states 0.052978582484007 -0.22208222057174457 1.0 4997 +Phenotype HP:0005743 Avascular necrosis of the capital femoral epiphysis 0.052927594019545054 -0.22268788631071967 1.0 4998 +Phenotype HP:0002126 Polymicrogyria 0.052924436715387047 -0.2227253903025776 1.0 4999 +Phenotype HP:0000383 Abnormal periauricular region morphology 0.05292036954394497 -0.22277370213983336 1.0 5000 +Phenotype HP:0000617 Abnormality of ocular smooth pursuit 0.052919312194292356 -0.2227862618524166 1.0 5001 +Phenotype HP:0000010 Recurrent urinary tract infections 0.052912656260552526 -0.2228653242652514 1.0 5002 +Biological Process GO:0070862 negative regulation of protein exit from endoplasmic reticulum 0.05291044451676208 -0.22289159643193462 1.0 5003 +Phenotype HP:0011760 Pituitary growth hormone cell adenoma 0.052873718455451746 -0.22332784642098402 1.0 5004 +Phenotype HP:0002418 Abnormal midbrain morphology 0.05285908231036518 -0.22350170165908828 1.0 5005 +Phenotype HP:0033804 Subepidermal blistering 0.05285476346126916 -0.2235530030457228 1.0 5006 +Phenotype HP:0034242 Abnormal fetal genitourinary system morphology 0.0528442050178356 -0.22367842136361285 1.0 5007 +Phenotype HP:0009067 Progressive spinal muscular atrophy 0.05280513553130273 -0.22414250769533542 1.0 5008 +Phenotype HP:0001387 Joint stiffness 0.05279061131428198 -0.22431503339752584 1.0 5009 +Disease MONDO:0004588 night blindness 0.052648145399951884 -0.22600731270407176 1.0 5010 +Disease MONDO:0004587 hereditary night blindness 0.052648145399951884 -0.22600731270407176 1.0 5010 +Disease MONDO:0016293 congenital stationary night blindness 0.052648145399951884 -0.22600731270407176 1.0 5010 +Phenotype HP:0011704 Sick sinus syndrome 0.052638963547662065 -0.22611637920393518 1.0 5013 +Phenotype HP:0007485 Absence of subcutaneous fat 0.052632882209809106 -0.2261886162878234 1.0 5014 +Phenotype HP:0001363 Craniosynostosis 0.05255779078242284 -0.22708058872391318 1.0 5015 +Phenotype HP:0002176 Spinal cord compression 0.0525561895932537 -0.227099608426342 1.0 5016 +Phenotype HP:0004312 Abnormal reticulocyte morphology 0.052555113958553945 -0.22711238533759376 1.0 5017 +Phenotype HP:0001199 Triphalangeal thumb 0.052542235866013365 -0.22726535757391206 1.0 5018 +Phenotype HP:0011794 Embryonal renal neoplasm 0.052541792403848264 -0.2272706252328378 1.0 5019 +Phenotype HP:0003311 Hypoplasia of the odontoid process 0.052531366172145044 -0.22739447307559782 1.0 5020 +Biological Process GO:0003208 cardiac ventricle morphogenesis 0.0525066527175051 -0.2276880314897427 1.0 5021 +Biological Process GO:0035751 regulation of lysosomal lumen pH 0.052483173929423366 -0.2279669239350011 1.0 5022 +Phenotype HP:0001370 Rheumatoid arthritis 0.052420858607756915 -0.22870713558375064 1.0 5023 +Disease MONDO:0002409 auditory system disorder 0.05239191479817784 -0.229050944207965 1.0 5024 +Disease MONDO:0037940 inherited auditory system disease 0.05239191479817784 -0.229050944207965 1.0 5024 +Disease MONDO:0005365 hearing loss disorder 0.05239191479817784 -0.229050944207965 1.0 5024 +Disease MONDO:0021945 hearing disorder 0.05239191479817784 -0.229050944207965 1.0 5024 +Phenotype HP:0010536 Central sleep apnea 0.052360773606795474 -0.22942085440020552 1.0 5028 +Biological Process GO:1902652 secondary alcohol metabolic process 0.0523503819737432 -0.2295442912633898 1.0 5029 +Biological Process GO:0048806 genitalia development 0.05234589757713837 -0.22959755910371768 1.0 5030 +Biological Process GO:0051591 response to cAMP 0.05232274404753734 -0.22987258797080887 1.0 5031 +Phenotype HP:0040135 Abnormal transferrin saturation 0.052305109429085395 -0.2300820605314939 1.0 5032 +Phenotype HP:0011990 Abnormality of neutrophil physiology 0.052303497842089985 -0.2301012037443519 1.0 5033 +Phenotype HP:0000718 Aggressive behavior 0.052299137373189586 -0.23015299951123186 1.0 5034 +Biological Process GO:0045833 negative regulation of lipid metabolic process 0.05229859693322114 -0.23015941911959453 1.0 5035 +Biological Process GO:0140861 DNA repair-dependent chromatin remodeling 0.052268759282607435 -0.23051384522163415 1.0 5036 +Phenotype HP:0032599 Abnormal renal tubular epithelial morphology 0.052250841790316915 -0.23072667789512674 1.0 5037 +Phenotype HP:0000092 Renal tubular atrophy 0.052250841790316915 -0.23072667789512674 1.0 5037 +Disease MONDO:0000473 arterial disorder 0.05223637944258708 -0.2308984686838383 1.0 5039 +Phenotype HP:0032449 Abnormal dermoepidermal hemidesmosome morphology 0.05218125182033595 -0.23155330134885393 1.0 5040 +Disease MONDO:0018993 Charcot-Marie-Tooth disease type 2 0.05217568331402167 -0.23161944677071386 1.0 5041 +Phenotype HP:0000892 Bifid ribs 0.052174608095991615 -0.23163221873256062 1.0 5042 +Phenotype HP:0000980 Pallor 0.05216415158886256 -0.23175642620152928 1.0 5043 +Biological Process GO:2000059 negative regulation of ubiquitin-dependent protein catabolic process 0.052138708528936095 -0.23205865122153657 1.0 5044 +Biological Process GO:1902808 positive regulation of cell cycle G1/S phase transition 0.05213229235774475 -0.23213486561840074 1.0 5045 +Phenotype HP:0003782 Eunuchoid habitus 0.05207045209979244 -0.23286943422968046 1.0 5046 +Phenotype HP:0001454 Abnormality of the upper arm 0.052029439910633135 -0.23335659692650373 1.0 5047 +Biological Process GO:0032527 protein exit from endoplasmic reticulum 0.052001898943933256 -0.23368374190183086 1.0 5048 +Phenotype HP:0012090 Abnormal pancreas morphology 0.05196798691694615 -0.23408656542479886 1.0 5049 +Phenotype HP:0004415 Pulmonary artery stenosis 0.051956135897676115 -0.2342273375861012 1.0 5050 +Phenotype HP:0001770 Toe syndactyly 0.051926347993041855 -0.23458117278124213 1.0 5051 +Phenotype HP:0004374 Hemiplegia/hemiparesis 0.05191882612586374 -0.23467052117192191 1.0 5052 +Disease MONDO:0100191 inherited kidney disorder 0.051879496668081226 -0.23513769556838002 1.0 5053 +Disease MONDO:0017763 disorder of iron metabolism and transport 0.051794317327132466 -0.23614949714007963 1.0 5054 +Phenotype HP:0000414 Bulbous nose 0.05173075870822341 -0.23690447727717556 1.0 5055 +Biological Process GO:1900087 positive regulation of G1/S transition of mitotic cell cycle 0.05171708845864287 -0.23706685913945647 1.0 5056 +Biological Process GO:0043922 negative regulation by host of viral transcription 0.05170558323450669 -0.2372035237782536 1.0 5057 +Phenotype HP:0001142 Lenticonus 0.051695607990886794 -0.2373220145655769 1.0 5058 +Phenotype HP:0004359 Abnormal circulating fatty-acid concentration 0.05166926639614211 -0.23763491281844995 1.0 5059 +Phenotype HP:0030157 Flank pain 0.05164911946632922 -0.23787422783336498 1.0 5060 +Phenotype HP:0012048 Oromandibular dystonia 0.0516280435083597 -0.23812457829582584 1.0 5061 +Phenotype HP:0008187 Absence of secondary sex characteristics 0.051623872184741626 -0.23817412730320045 1.0 5062 +Biological Process GO:1901798 positive regulation of signal transduction by p53 class mediator 0.05161936732366601 -0.2382276382304491 1.0 5063 +Phenotype HP:0031432 Restricted or repetitive behaviors or interests 0.05160440851448378 -0.2384053262293553 1.0 5064 +Phenotype HP:0010049 Short metacarpal 0.05160050304638264 -0.23845171727581024 1.0 5065 +Biological Process GO:0030968 endoplasmic reticulum unfolded protein response 0.05158621739914804 -0.23862140913024021 1.0 5066 +Biological Process GO:0072337 modified amino acid transport 0.05157052701238196 -0.23880778716291412 1.0 5067 +Phenotype HP:0034391 Elbow contracture 0.051554331090230665 -0.2390001701903628 1.0 5068 +Phenotype HP:0009046 Difficulty running 0.05155432520180392 -0.2390002401359549 1.0 5069 +Phenotype HP:0002791 Hypoventilation 0.051532088152380306 -0.23926438260649016 1.0 5070 +Biological Process GO:0042987 amyloid precursor protein catabolic process 0.05150445821725236 -0.23959258439200568 1.0 5071 +Phenotype HP:0001919 Acute kidney injury 0.05149132555374247 -0.23974858054590756 1.0 5072 +Phenotype HP:0001362 Calvarial skull defect 0.051476234742001026 -0.23992783653530766 1.0 5073 +Phenotype HP:0008155 Mucopolysacchariduria 0.05142484002949832 -0.24053832788576981 1.0 5074 +Phenotype HP:0003541 Urinary glycosaminoglycan excretion 0.05142484002949832 -0.24053832788576981 1.0 5074 +Biological Process GO:0051101 regulation of DNA binding 0.05141684699372351 -0.24063327304582302 1.0 5076 +Disease MONDO:0015547 hereditary dementia 0.051413152741281 -0.2406771551701263 1.0 5077 +Disease MONDO:0001627 dementia 0.051413152741281 -0.2406771551701263 1.0 5077 +Disease MONDO:0002039 cognitive disorder 0.051413152741281 -0.2406771551701263 1.0 5077 +Disease MONDO:0019497 nonsyndromic genetic hearing loss 0.051342531397053026 -0.2415160297879563 1.0 5080 +Biological Process GO:1903317 regulation of protein maturation 0.05130397679040155 -0.24197400012644116 1.0 5081 +Phenotype HP:0009906 Aplasia/Hypoplasia of the earlobes 0.05126445363328058 -0.24244347537769467 1.0 5082 +Phenotype HP:0001830 Postaxial foot polydactyly 0.05124752635274732 -0.24264454583512468 1.0 5083 +Phenotype HP:0004935 Pulmonary artery atresia 0.05122329574554618 -0.2429323687529387 1.0 5084 +Phenotype HP:0002342 Intellectual disability, moderate 0.05120144575716312 -0.2431919135244919 1.0 5085 +Phenotype HP:0000103 Polyuria 0.051197617740119994 -0.24323738456967242 1.0 5086 +Biological Process GO:0015844 monoamine transport 0.0511952831175162 -0.24326511635056594 1.0 5087 +Biological Process GO:0045911 positive regulation of DNA recombination 0.051125160552948135 -0.24409806622140676 1.0 5088 +Phenotype HP:0003953 Absent forearm bone 0.05107820958918352 -0.24465577256663926 1.0 5089 +Phenotype HP:0009822 Aplasia involving forearm bones 0.05107820958918352 -0.24465577256663926 1.0 5089 +Phenotype HP:0001446 Abnormality of the musculature of the upper limbs 0.05105907255344122 -0.24488309156941693 1.0 5091 +Phenotype HP:0030949 Glomerular deposits 0.051052257474288654 -0.24496404438873928 1.0 5092 +Phenotype HP:0000846 Adrenal insufficiency 0.05088171357505322 -0.2469898476336128 1.0 5093 +Phenotype HP:0000171 Microglossia 0.050874944593386484 -0.24707025288461532 1.0 5094 +Phenotype HP:0001659 Aortic regurgitation 0.05086219013632898 -0.2472217565186329 1.0 5095 +Disease MONDO:0000226 mineral metabolism disease 0.050832269042504374 -0.24757717379964844 1.0 5096 +Phenotype HP:0000675 Macrodontia of permanent maxillary central incisor 0.05082482277732636 -0.24766562415306145 1.0 5097 +Phenotype HP:0001948 Alkalosis 0.0507801126746823 -0.24819671246182548 1.0 5098 +Phenotype HP:0010565 Aplasia/Hypoplasia of the Epiglottis 0.050775858241820626 -0.2482472486811503 1.0 5099 +Biological Process GO:2000736 regulation of stem cell differentiation 0.050774465931253454 -0.24826378722212125 1.0 5100 +Phenotype HP:0005930 Abnormal epiphysis morphology 0.05076793243054978 -0.2483413953159037 1.0 5101 +Phenotype HP:0001799 Short nail 0.050727428228947935 -0.24882252388985965 1.0 5102 +Phenotype HP:0004840 Hypochromic microcytic anemia 0.05067476532945392 -0.24944807938118888 1.0 5103 +Phenotype HP:0034295 Reduced cerebral white matter volume 0.05067451254806121 -0.24945108204131267 1.0 5104 +Phenotype HP:0045025 Narrow palpebral fissure 0.05066611656861797 -0.24955081356191391 1.0 5105 +Phenotype HP:0012650 Perisylvian polymicrogyria 0.05063738385897654 -0.24989211463856673 1.0 5106 +Biological Process GO:0006584 catecholamine metabolic process 0.05063408025175142 -0.24993135648929504 1.0 5107 +Biological Process GO:0009712 catechol-containing compound metabolic process 0.05063408025175142 -0.24993135648929504 1.0 5107 +Phenotype HP:0010627 Anterior pituitary hypoplasia 0.05063335019115256 -0.24994002850357852 1.0 5109 +Phenotype HP:0032011 Heterophoria 0.05058525323137686 -0.25051134754588367 1.0 5110 +Phenotype HP:5200297 Abnormal hypnopompia 0.05056225019098559 -0.25078458882906934 1.0 5111 +Biological Process GO:0070613 regulation of protein processing 0.05056090822888559 -0.2508005293064999 1.0 5112 +Biological Process GO:0009988 cell-cell recognition 0.05052735278961484 -0.2511991171074273 1.0 5113 +Biological Process GO:0005513 detection of calcium ion 0.050415441978308606 -0.2525284480638378 1.0 5114 +Phenotype HP:0001882 Leukopenia 0.0503607509783357 -0.2531780943174252 1.0 5115 +Phenotype HP:0001563 Fetal polyuria 0.05033837403974872 -0.2534438984593679 1.0 5116 +Biological Process GO:0048147 negative regulation of fibroblast proliferation 0.05030897737277795 -0.2537930863435715 1.0 5117 +Phenotype HP:0007333 Hypoplasia of the frontal lobes 0.05028662286015362 -0.25405862409904073 1.0 5118 +Phenotype HP:0200085 Limb tremor 0.05027985851810102 -0.25413897423845366 1.0 5119 +Biological Process GO:0045738 negative regulation of DNA repair 0.050271688473979115 -0.2542360219896022 1.0 5120 +Biological Process GO:0085020 protein K6-linked ubiquitination 0.050262915205877334 -0.25434023512808684 1.0 5121 +Disease MONDO:0018307 neurodegeneration with brain iron accumulation 0.05021485016595573 -0.25491117501086596 1.0 5122 +Disease MONDO:0002283 neuroaxonal dystrophy 0.05021485016595573 -0.25491117501086596 1.0 5122 +Biological Process GO:0141193 nuclear receptor signaling pathway 0.05018401596770661 -0.25527743858960533 1.0 5124 +Biological Process GO:0030518 intracellular steroid hormone receptor signaling pathway 0.05018401596770661 -0.25527743858960533 1.0 5124 +Phenotype HP:0007906 Ocular hypertension 0.0501667114124853 -0.2554829904989705 1.0 5126 +Phenotype HP:0000193 Bifid uvula 0.050165595057356405 -0.25549625110725194 1.0 5127 +Phenotype HP:0007302 Bipolar affective disorder 0.050165384223133436 -0.2554987554985256 1.0 5128 +Phenotype HP:0001604 Vocal cord paresis 0.050156420360766174 -0.2556052326082411 1.0 5129 +Phenotype HP:0010535 Sleep apnea 0.05012906653337057 -0.25593015465204416 1.0 5130 +Phenotype HP:0006000 Ureteral obstruction 0.0501198703285779 -0.2560393916379055 1.0 5131 +Biological Process GO:0009581 detection of external stimulus 0.05011479473959213 -0.2560996819483951 1.0 5132 +Disease MONDO:0000591 intrinsic cardiomyopathy 0.05010909233603822 -0.2561674178666829 1.0 5133 +Phenotype HP:0034670 Abnormal knee physiology 0.05007000613987289 -0.2566317026835333 1.0 5134 +Biological Process GO:0009187 cyclic nucleotide metabolic process 0.05006027393274082 -0.2567473065654448 1.0 5135 +Biological Process GO:0052652 cyclic purine nucleotide metabolic process 0.05006027393274082 -0.2567473065654448 1.0 5135 +Phenotype HP:0008368 Tarsal synostosis 0.05002736637010452 -0.2571381985731235 1.0 5137 +Phenotype HP:0008527 Congenital sensorineural hearing impairment 0.04996574531693998 -0.25787016336349644 1.0 5138 +Biological Process GO:0098662 inorganic cation transmembrane transport 0.04993095128212666 -0.2582834638036944 1.0 5139 +Phenotype HP:0030167 Antimitochondrial antibody positivity 0.04992769638706285 -0.2583221270277179 1.0 5140 +Biological Process GO:0007035 vacuolar acidification 0.04991077592821125 -0.2585231164539008 1.0 5141 +Phenotype HP:0000300 Oval face 0.049873204068475285 -0.25896941324733797 1.0 5142 +Phenotype HP:0009049 Peroneal muscle atrophy 0.04986058340356436 -0.25911932763327394 1.0 5143 +Disease MONDO:0100510 spondyloepimetaphyseal dysplasia 0.04985754061829395 -0.25915547131417893 1.0 5144 +Phenotype HP:0030182 Tetraplegia/tetraparesis 0.04982935545483813 -0.259490268371371 1.0 5145 +Phenotype HP:0012181 Entrapment neuropathy 0.04980923787759595 -0.25972923472219867 1.0 5146 +Phenotype HP:0000581 Blepharophimosis 0.04975386816302829 -0.26038694307730104 1.0 5147 +Phenotype HP:0031374 Ankle weakness 0.04974759665807915 -0.2604614390582958 1.0 5148 +Phenotype HP:0000091 Abnormal renal tubule morphology 0.049730430591035435 -0.26066534593784274 1.0 5149 +Phenotype HP:0030089 Abnormal muscle fiber protein expression 0.04972534423934816 -0.26072576409292686 1.0 5150 +Phenotype HP:0003974 Absent radius 0.04969225453120962 -0.2611188197133242 1.0 5151 +Phenotype HP:0011062 Misalignment of incisors 0.04965566333646976 -0.2615534676917634 1.0 5152 +Biological Process GO:2001267 regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway 0.04965475152205423 -0.26156429866613407 1.0 5153 +Phenotype HP:0001923 Reticulocytosis 0.04965295372737233 -0.26158565374430776 1.0 5154 +Phenotype HP:0000601 Hypotelorism 0.04959683659656422 -0.26225224027243166 1.0 5155 +Phenotype HP:0008944 Distal lower limb amyotrophy 0.049573795416031685 -0.26252593460273477 1.0 5156 +Phenotype HP:0500022 Abnormal circulating dehydroepiandrosterone concentration 0.04951023935085097 -0.2632808844054055 1.0 5157 +Phenotype HP:0001345 Psychotic mentation 0.04949979337738286 -0.26340496675043473 1.0 5158 +Phenotype HP:0001640 Cardiomegaly 0.049462185021860616 -0.26385169705854233 1.0 5159 +Phenotype HP:0009144 Supernumerary bones of the axial skeleton 0.049435286133511225 -0.2641712151154531 1.0 5160 +Phenotype HP:0009879 Simplified gyral pattern 0.049423204784908026 -0.26431472324041405 1.0 5161 +Phenotype HP:0012633 Asymmetry of intraocular pressure 0.04941990432927912 -0.26435392765495236 1.0 5162 +Phenotype HP:0008947 Infantile muscular hypotonia 0.04935318728288651 -0.26514642512731246 1.0 5163 +Disease MONDO:0002259 gonadal disorder 0.04934596030015359 -0.2652322707373673 1.0 5164 +Phenotype HP:0004846 Prolonged bleeding after surgery 0.04931024473377743 -0.26565651757692993 1.0 5165 +Biological Process GO:0051972 regulation of telomerase activity 0.049276204737248475 -0.2660608611842533 1.0 5166 +Biological Process GO:0031293 membrane protein intracellular domain proteolysis 0.04926174515688353 -0.2662326191008609 1.0 5167 +Biological Process GO:0051262 protein tetramerization 0.04922220191071447 -0.2667023329795821 1.0 5168 +Biological Process GO:0030575 nuclear body organization 0.049211371557980055 -0.2668309811681767 1.0 5169 +Biological Process GO:0001906 cell killing 0.04919753304137664 -0.2669953617878595 1.0 5170 +Phenotype HP:0000699 Diastema 0.049172528443153896 -0.2672923785468493 1.0 5171 +Biological Process GO:0086019 cell-cell signaling involved in cardiac conduction 0.04916413986550372 -0.26739202214535845 1.0 5172 +Phenotype HP:5200283 Sleep-related breathing disorders 0.04915767947277816 -0.26746876182707835 1.0 5173 +Phenotype HP:0001320 Cerebellar vermis hypoplasia 0.049078720822080424 -0.26840667101944116 1.0 5174 +Phenotype HP:0002991 Abnormal fibula morphology 0.04900122655345496 -0.2693271855705003 1.0 5175 +Phenotype HP:0012146 Abnormality of von Willebrand factor 0.04899336989513059 -0.2694205107729773 1.0 5176 +Phenotype HP:0001239 Wrist flexion contracture 0.04899313271988359 -0.26942332805572455 1.0 5177 +Phenotype HP:0010045 Aplasia/Hypoplasia of the 5th metacarpal 0.048947681717710134 -0.26996321712885196 1.0 5178 +Biological Process GO:0042742 defense response to bacterium 0.04891246682036632 -0.27038151677854216 1.0 5179 +Phenotype HP:0002667 Nephroblastoma 0.04890819974255156 -0.27043220320075967 1.0 5180 +Phenotype HP:0009924 Aplasia/Hypoplasia involving the nose 0.04888425900145377 -0.27071658294825 1.0 5181 +Phenotype HP:0000294 Low anterior hairline 0.04885748409693713 -0.27103462826499336 1.0 5182 +Phenotype HP:0001572 Macrodontia 0.04885696565619102 -0.27104078655591113 1.0 5183 +Phenotype HP:0011715 Trifascicular block 0.04881846395878786 -0.27149812841265375 1.0 5184 +Phenotype HP:0005815 Supernumerary ribs 0.048771643977580825 -0.2720542788834671 1.0 5185 +Phenotype HP:0001561 Polyhydramnios 0.048754540375977484 -0.27225744376818245 1.0 5186 +Phenotype HP:0000629 Periorbital fullness 0.04874631577584354 -0.2723551395621324 1.0 5187 +Phenotype HP:0004969 Peripheral pulmonary artery stenosis 0.048719843164350185 -0.2726695940955631 1.0 5188 +Phenotype HP:0011800 Midface retrusion 0.04870883931179859 -0.27280030319923115 1.0 5189 +Phenotype HP:0005003 Aplasia/Hypoplasia of the capital femoral epiphysis 0.04866480396446726 -0.27332337643675453 1.0 5190 +Phenotype HP:0031546 Cardiac conduction abnormality 0.04865899720636435 -0.27339235192904604 1.0 5191 +Biological Process GO:0010972 negative regulation of G2/M transition of mitotic cell cycle 0.048489272458387966 -0.2754084248975153 1.0 5192 +Phenotype HP:0008994 Proximal muscle weakness in lower limbs 0.048486146415500087 -0.27544555755282735 1.0 5193 +Biological Process GO:0006298 mismatch repair 0.048464559156300435 -0.27570198149956854 1.0 5194 +Biological Process GO:0002026 regulation of the force of heart contraction 0.04841437902549883 -0.27629804545882947 1.0 5195 +Phenotype HP:0000123 Nephritis 0.04841007757304128 -0.27634914019974516 1.0 5196 +Biological Process GO:0008203 cholesterol metabolic process 0.04832042044565166 -0.2774141310930353 1.0 5197 +Phenotype HP:0200026 Ocular pain 0.04829943812792803 -0.2776633692511873 1.0 5198 +Phenotype HP:0006257 Abnormality of carpal bone ossification 0.048276258898520386 -0.2779387033930603 1.0 5199 +Phenotype HP:0006536 Airway obstruction 0.04827617683301788 -0.27793967820694704 1.0 5200 +Biological Process GO:0042886 amide transport 0.048240892515670986 -0.2783588024611416 1.0 5201 +Phenotype HP:0003075 Hypoproteinemia 0.04822407555443653 -0.2785585624923735 1.0 5202 +Phenotype HP:0002949 Fused cervical vertebrae 0.04820613873879498 -0.2787716246980123 1.0 5203 +Biological Process GO:0010955 negative regulation of protein processing 0.04820508253882361 -0.2787841707541236 1.0 5204 +Biological Process GO:1903318 negative regulation of protein maturation 0.04820508253882361 -0.2787841707541236 1.0 5204 +Biological Process GO:0042908 xenobiotic transport 0.04819188162640453 -0.27894097760170794 1.0 5206 +Phenotype HP:0000142 Abnormal vagina morphology 0.04818713935674601 -0.27899730858338107 1.0 5207 +Biological Process GO:0001649 osteoblast differentiation 0.04814945561662409 -0.2794449343463676 1.0 5208 +Phenotype HP:0001808 Fragile nails 0.0481198201069436 -0.2797969593202504 1.0 5209 +Biological Process GO:0010611 regulation of cardiac muscle hypertrophy 0.048115938371380174 -0.2798430684600987 1.0 5210 +Biological Process GO:0014743 regulation of muscle hypertrophy 0.048115938371380174 -0.2798430684600987 1.0 5210 +Phenotype HP:0006495 Aplasia/Hypoplasia of the ulna 0.04811089602329255 -0.27990296391905967 1.0 5212 +Disease MONDO:0031520 familial severe combined immunodeficiency 0.048091472928301626 -0.28013368087249213 1.0 5213 +Phenotype HP:0034237 Open neural tube defect 0.048088088538198015 -0.28017388230147644 1.0 5214 +Phenotype HP:0001212 Prominent fingertip pads 0.048081194091495805 -0.2802557778870914 1.0 5215 +Biological Process GO:2000780 negative regulation of double-strand break repair 0.04802894484208031 -0.2808764198419349 1.0 5216 +Biological Process GO:0043502 regulation of muscle adaptation 0.04801602572858632 -0.2810298793450561 1.0 5217 +Phenotype HP:0009748 Large earlobe 0.04800093216906265 -0.2812091679739476 1.0 5218 +Phenotype HP:0001841 Preaxial foot polydactyly 0.04795556999271677 -0.2817480019307645 1.0 5219 +Phenotype HP:0020049 Exodeviation 0.047943817823708046 -0.281887599900665 1.0 5220 +Phenotype HP:0000667 Phthisis bulbi 0.04792997685707201 -0.28205200962302485 1.0 5221 +Phenotype HP:0004319 Decreased circulating aldosterone level 0.047898012913363375 -0.2824316928668946 1.0 5222 +Phenotype HP:0000378 Cupped ear 0.04787370275339964 -0.2827204607510507 1.0 5223 +Biological Process GO:0072331 signal transduction by p53 class mediator 0.04783510218505771 -0.28317897704481204 1.0 5224 +Disease MONDO:0015802 autosomal dominant non-syndromic intellectual disability 0.04777799484751932 -0.2838573257292856 1.0 5225 +Biological Process GO:1905709 negative regulation of membrane permeability 0.047762258822181325 -0.2840442458790772 1.0 5226 +Phenotype HP:0003749 Pelvic girdle muscle weakness 0.04771589449509095 -0.2845949838690442 1.0 5227 +Phenotype HP:0001082 Cholecystitis 0.04768311910685208 -0.2849843058450513 1.0 5228 +Phenotype HP:0012438 Abnormal gallbladder physiology 0.04768311910685208 -0.2849843058450513 1.0 5228 +Phenotype HP:0030638 Congenital stationary night blindness with normal fundus 0.047673648726645035 -0.2850967996196139 1.0 5230 +Phenotype HP:0010808 Protruding tongue 0.04766933805863294 -0.28514800382736116 1.0 5231 +Phenotype HP:0007894 Hypopigmentation of the fundus 0.047667900172562616 -0.2851650837362883 1.0 5232 +Phenotype HP:0000579 Nasolacrimal duct obstruction 0.04766686034478229 -0.28517743531556455 1.0 5233 +Biological Process GO:0030212 hyaluronan metabolic process 0.04765142688330992 -0.28536076146484646 1.0 5234 +Disease MONDO:0019216 inborn disorder of amino acid transport 0.04763407704014211 -0.28556685132643034 1.0 5235 +Biological Process GO:0051560 mitochondrial calcium ion homeostasis 0.04761724369288056 -0.2857668059988484 1.0 5236 +Phenotype HP:0100266 Synostosis of carpals/tarsals 0.04759800150092819 -0.2859953740981493 1.0 5237 +Biological Process GO:0060322 head development 0.0475683256145496 -0.2863478786860575 1.0 5238 +Phenotype HP:0011073 Abnormality of dental color 0.04755017037129006 -0.28656353548100316 1.0 5239 +Phenotype HP:0025125 White lesion of the oral mucosa 0.047533049865771226 -0.28676690115863457 1.0 5240 +Phenotype HP:0002745 Oral leukoplakia 0.047533049865771226 -0.28676690115863457 1.0 5240 +Phenotype HP:0010476 Aplasia/Hypoplasia of the bladder 0.04753260182561048 -0.28677222319721557 1.0 5242 +Phenotype HP:0002066 Gait ataxia 0.047519178988692956 -0.2869316661717507 1.0 5243 +Phenotype HP:0010646 Cervical spine instability 0.04749986417365837 -0.2871610969232852 1.0 5244 +Phenotype HP:0100540 Palpebral edema 0.04749409946576011 -0.2872295729228278 1.0 5245 +Biological Process GO:0036293 response to decreased oxygen levels 0.04748937785019913 -0.2872856585651014 1.0 5246 +Biological Process GO:0001666 response to hypoxia 0.04748937785019913 -0.2872856585651014 1.0 5246 +Phenotype HP:0030830 Crackles 0.04748899137453044 -0.2872902493107523 1.0 5248 +Biological Process GO:0046034 ATP metabolic process 0.0474646805587563 -0.28757902498494275 1.0 5249 +Biological Process GO:0035148 tube formation 0.047407027643959765 -0.2882638543010006 1.0 5250 +Biological Process GO:0007219 Notch signaling pathway 0.047269643690830865 -0.28989576760478797 1.0 5251 +Phenotype HP:0012116 Abnormal circulating albumin concentration 0.047268071265324396 -0.28991444563846497 1.0 5252 +Phenotype HP:0003073 Hypoalbuminemia 0.047268071265324396 -0.28991444563846497 1.0 5252 +Disease MONDO:0000167 Huntington disease and related disorders 0.047246367054963434 -0.2901722587878873 1.0 5254 +Phenotype HP:0000954 Single transverse palmar crease 0.047232329538070106 -0.2903390032296408 1.0 5255 +Biological Process GO:0032720 negative regulation of tumor necrosis factor production 0.047189996643771104 -0.2908418539033985 1.0 5256 +Phenotype HP:0000059 Hypoplastic labia majora 0.0471898389830302 -0.2908437266742332 1.0 5257 +Phenotype HP:0000178 Abnormal lower lip morphology 0.04718884190902706 -0.29085557040338444 1.0 5258 +Phenotype HP:0002828 Multiple joint contractures 0.047179339487394945 -0.2909684447815521 1.0 5259 +Phenotype HP:0001807 Ridged nail 0.04716346671569294 -0.2911569892710543 1.0 5260 +Biological Process GO:0060021 roof of mouth development 0.04712832293398139 -0.2915744441747334 1.0 5261 +Phenotype HP:0004440 Coronal craniosynostosis 0.047119530128409526 -0.29167888938877434 1.0 5262 +Biological Process GO:0010608 post-transcriptional regulation of gene expression 0.04711079870113122 -0.2917826055216414 1.0 5263 +Phenotype HP:0100671 Abnormal trabecular bone morphology 0.047096713307498206 -0.291949918666556 1.0 5264 +Disease MONDO:0016789 pyruvate metabolism disorder 0.04708345286376092 -0.2921074326560443 1.0 5265 +Phenotype HP:0002875 Exertional dyspnea 0.04704640487790979 -0.29254750662110385 1.0 5266 +Phenotype HP:0004930 Abnormality of the pulmonary vasculature 0.047013998163092485 -0.29293244931519546 1.0 5267 +Phenotype HP:0002438 Cerebellar malformation 0.04700425620208826 -0.2930481690583365 1.0 5268 +Phenotype HP:0000678 Dental crowding 0.046955494582483714 -0.2936273832528226 1.0 5269 +Biological Process GO:2000243 positive regulation of reproductive process 0.04682722591859845 -0.29515102072492977 1.0 5270 +Phenotype HP:0000742 Self-mutilation 0.04678573644154682 -0.29564385287909123 1.0 5271 +Phenotype HP:0002530 Axial dystonia 0.04670168435767308 -0.29664226434389973 1.0 5272 +Phenotype HP:0030192 Fatigable weakness of bulbar muscles 0.04668092724796158 -0.29688882737193106 1.0 5273 +Phenotype HP:0006986 Upper limb spasticity 0.04666553886572178 -0.29707161804819976 1.0 5274 +Biological Process GO:0009416 response to light stimulus 0.04665868761617742 -0.29715300051699883 1.0 5275 +Phenotype HP:0002558 Supernumerary nipple 0.04665577967644419 -0.2971875424371372 1.0 5276 +Phenotype HP:0002634 Arteriosclerosis 0.04665417245926606 -0.2972066337431836 1.0 5277 +Phenotype HP:0040273 Adenocarcinoma of the intestines 0.046653381036264596 -0.29721603464988056 1.0 5278 +Biological Process GO:0032926 negative regulation of activin receptor signaling pathway 0.04660791915142115 -0.29775605299264624 1.0 5279 +Phenotype HP:0010305 Absence of the sacrum 0.04659498079360469 -0.29790974108917406 1.0 5280 +Disease MONDO:0005217 familial cardiomyopathy 0.04657470423522059 -0.2981505958952007 1.0 5281 +Disease MONDO:0004994 cardiomyopathy 0.04657470423522059 -0.2981505958952007 1.0 5281 +Biological Process GO:0099623 regulation of cardiac muscle cell membrane repolarization 0.04647910925549115 -0.29928611948178285 1.0 5283 +Phenotype HP:0008669 Abnormal spermatogenesis 0.04647811972061566 -0.2992978736575151 1.0 5284 +Phenotype HP:0000680 Delayed eruption of primary teeth 0.04647327066522755 -0.2993554730919355 1.0 5285 +Disease MONDO:0019713 non-syndromic limb reduction defect 0.04642236134580957 -0.2999601987076485 1.0 5286 +Phenotype HP:0002206 Pulmonary fibrosis 0.04639702198322049 -0.3002611919603308 1.0 5287 +Phenotype HP:0003416 Spinal canal stenosis 0.04639419407921186 -0.30029478317726993 1.0 5288 +Phenotype HP:0003351 Decreased circulating renin level 0.046362419894399376 -0.30067221237283137 1.0 5289 +Biological Process GO:0071637 regulation of monocyte chemotactic protein-1 production 0.04634387007144036 -0.3008925561770405 1.0 5290 +Phenotype HP:0011969 Elevated circulating luteinizing hormone level 0.046303876002600775 -0.30136762514634496 1.0 5291 +Biological Process GO:1902750 negative regulation of cell cycle G2/M phase transition 0.04626162721353444 -0.3018694767773107 1.0 5292 +Phenotype HP:0002557 Hypoplastic nipples 0.04621301846872938 -0.3024468750506982 1.0 5293 +Biological Process GO:0046785 microtubule polymerization 0.04620300499505947 -0.30256581995311865 1.0 5294 +Phenotype HP:0010881 Abnormality of the umbilical cord 0.046195779141417925 -0.30265165215127793 1.0 5295 +Biological Process GO:0010954 positive regulation of protein processing 0.046186002385575686 -0.30276778520439995 1.0 5296 +Disease MONDO:0018894 distal hereditary motor neuropathy 0.046171267827951445 -0.30294280943441215 1.0 5297 +Phenotype HP:0001969 Abnormal tubulointerstitial morphology 0.04614341184419746 -0.3032736963352685 1.0 5298 +Phenotype HP:0003006 Neuroblastoma 0.046130915563036834 -0.30342213323062234 1.0 5299 +Phenotype HP:0004376 Neuroblastic tumor 0.046130915563036834 -0.30342213323062234 1.0 5299 +Phenotype HP:0010550 Paraplegia 0.046125606030752775 -0.3034852024332032 1.0 5301 +Biological Process GO:0035094 response to nicotine 0.046077822071972974 -0.3040528034976974 1.0 5302 +Phenotype HP:0012579 Minimal change glomerulonephritis 0.046057549948061105 -0.30429360562890967 1.0 5303 +Phenotype HP:0100018 Nuclear cataract 0.04601637858908891 -0.3047826590220573 1.0 5304 +Disease MONDO:0019716 overgrowth syndrome 0.04601015186753776 -0.3048566230441056 1.0 5305 +Disease MONDO:0018800 Kallmann syndrome 0.04599646747672037 -0.30501917288286423 1.0 5306 +Phenotype HP:0003162 Fasting hypoglycemia 0.04597529192592664 -0.3052707063572496 1.0 5307 +Biological Process GO:0006775 fat-soluble vitamin metabolic process 0.04596485179598808 -0.30539471928999745 1.0 5308 +Biological Process GO:1905048 regulation of metallopeptidase activity 0.045942022978409436 -0.30566589107001874 1.0 5309 +Phenotype HP:0012227 Urethral stricture 0.045917800258609254 -0.3059536202974544 1.0 5310 +Phenotype HP:0000219 Thin upper lip vermilion 0.04590460559835052 -0.30611035287884236 1.0 5311 +Phenotype HP:0001836 Camptodactyly of toe 0.04588322238728215 -0.306364353042802 1.0 5312 +Biological Process GO:1901889 negative regulation of cell junction assembly 0.04584785583112294 -0.3067844541695414 1.0 5313 +Biological Process GO:0030813 positive regulation of nucleotide catabolic process 0.045782375761763916 -0.30756225822806676 1.0 5314 +Biological Process GO:0033123 positive regulation of purine nucleotide catabolic process 0.045782375761763916 -0.30756225822806676 1.0 5314 +Biological Process GO:0045821 positive regulation of glycolytic process 0.045782375761763916 -0.30756225822806676 1.0 5314 +Phenotype HP:0000789 Infertility 0.045731442951702284 -0.30816726287705126 1.0 5317 +Biological Process GO:0032239 regulation of nucleobase-containing compound transport 0.045605402890047886 -0.30966442792973403 1.0 5318 +Phenotype HP:0025179 Ground-glass opacification 0.04547995216290224 -0.311154592580963 1.0 5319 +Phenotype HP:0100692 Increased corneal curvature 0.04547903308474266 -0.31116550983761254 1.0 5320 +Phenotype HP:0007086 Social and occupational deterioration 0.04541055853145748 -0.31197888383022243 1.0 5321 +Phenotype HP:0002781 Upper airway obstruction 0.04538257375552668 -0.31231130058709167 1.0 5322 +Phenotype HP:0025404 Abnormal visual fixation 0.04530733174594337 -0.31320506171163504 1.0 5323 +Phenotype HP:0000696 Delayed eruption of permanent teeth 0.045288779479113916 -0.31342543454532396 1.0 5324 +Phenotype HP:0002236 Frontal upsweep of hair 0.04520270140663085 -0.3144479116865785 1.0 5325 +Phenotype HP:0001644 Dilated cardiomyopathy 0.04520229352617233 -0.31445275668871636 1.0 5326 +Biological Process GO:0015833 peptide transport 0.045180054850172735 -0.314716918480511 1.0 5327 +Phenotype HP:0000399 Prelingual sensorineural hearing impairment 0.04517477650038226 -0.3147796172822919 1.0 5328 +Phenotype HP:0045049 Abnormal DLCO 0.045161821979858185 -0.3149334973673088 1.0 5329 +Phenotype HP:0045051 Decreased DLCO 0.045161821979858185 -0.3149334973673088 1.0 5329 +Phenotype HP:0000410 Mixed hearing impairment 0.045152898447169965 -0.31503949542151405 1.0 5331 +Phenotype HP:0100716 Self-injurious behavior 0.045142089729598656 -0.3151678866171361 1.0 5332 +Biological Process GO:0031146 SCF-dependent proteasomal ubiquitin-dependent protein catabolic process 0.045122931899364116 -0.3153954526269896 1.0 5333 +Phenotype HP:0040170 Abnormality of hair growth 0.04508593238880776 -0.31583495077896 1.0 5334 +Disease MONDO:0006496 palsy 0.04506574561167187 -0.316074739119726 1.0 5335 +Biological Process GO:0009583 detection of light stimulus 0.04505275952690335 -0.31622899414016475 1.0 5336 +Biological Process GO:0008406 gonad development 0.04502321497187711 -0.3165799387105001 1.0 5337 +Phenotype HP:0025389 Pulmonary interstitial high-resolution computed tomography abnormality 0.045014493739824024 -0.3166835337395316 1.0 5338 +Phenotype HP:0000498 Blepharitis 0.0450135432590979 -0.31669482401111454 1.0 5339 +Biological Process GO:2000637 positive regulation of miRNA-mediated gene silencing 0.044997719229941335 -0.3168827895129944 1.0 5340 +Biological Process GO:0060148 positive regulation of post-transcriptional gene silencing 0.044997719229941335 -0.3168827895129944 1.0 5340 +Biological Process GO:1900370 positive regulation of post-transcriptional gene silencing by RNA 0.044997719229941335 -0.3168827895129944 1.0 5340 +Phenotype HP:0002350 Cerebellar cyst 0.044997635322559404 -0.3168837862056193 1.0 5343 +Disease MONDO:0100062 developmental and epileptic encephalopathy 0.04497374977767454 -0.3171675103056912 1.0 5344 +Disease MONDO:0005579 epilepsy, idiopathic generalized 0.04497374977767454 -0.3171675103056912 1.0 5344 +Phenotype HP:0001650 Aortic valve stenosis 0.044942727640851055 -0.3175360063100729 1.0 5346 +Phenotype HP:0001305 Dandy-Walker malformation 0.044925521542334756 -0.317740388702889 1.0 5347 +Phenotype HP:0030483 Reduced amplitude of dark-adapted bright flash electroretinogram a-wave 0.04487279046854431 -0.3183667540016142 1.0 5348 +Phenotype HP:0000215 Thick upper lip vermilion 0.044858438933445766 -0.3185372285040847 1.0 5349 +Biological Process GO:0003229 ventricular cardiac muscle tissue development 0.04480384893408418 -0.31918567502336875 1.0 5350 +Phenotype HP:0030329 Retinal thinning 0.044756001462019857 -0.3197540305294962 1.0 5351 +Biological Process GO:0090278 negative regulation of peptide hormone secretion 0.04475404101381164 -0.3197773176852339 1.0 5352 +Phenotype HP:0009999 Partial duplication of the phalanx of hand 0.0447448168996305 -0.31988688619236316 1.0 5353 +Phenotype HP:0005599 Hypopigmentation of hair 0.04470635241576948 -0.3203437860085828 1.0 5354 +Phenotype HP:0002835 Aspiration 0.04467918089615164 -0.32066654251207977 1.0 5355 +Phenotype HP:0003133 Abnormality of the spinocerebellar tracts 0.04467118519413138 -0.320761519343091 1.0 5356 +Disease MONDO:0006617 vesiculobullous skin disease 0.04463096579660708 -0.32123926487592364 1.0 5357 +Disease MONDO:0021084 vision disorder 0.04454941939480328 -0.3222079126324397 1.0 5358 +Phenotype HP:0007987 Progressive visual field defects 0.04444966874980072 -0.32339279922897196 1.0 5359 +Phenotype HP:0003130 Abnormal peripheral myelination 0.04444885254611575 -0.3234024944926601 1.0 5360 +Phenotype HP:0001935 Microcytic anemia 0.044331659638992216 -0.3247945687479771 1.0 5361 +Phenotype HP:0011976 Elevated urinary catecholamine level 0.044238479737862324 -0.3259014048582817 1.0 5362 +Phenotype HP:0011281 Abnormality of urine catecholamine level 0.044238479737862324 -0.3259014048582817 1.0 5362 +Phenotype HP:0012179 Craniofacial dystonia 0.04422561605949327 -0.32605420587607165 1.0 5364 +Phenotype HP:0034238 Closed neural tube defect 0.044202081928552794 -0.3263337557106786 1.0 5365 +Phenotype HP:0012515 Hip flexor weakness 0.04418722383658391 -0.32651024734162015 1.0 5366 +Phenotype HP:0003819 Death in childhood 0.04413057155093725 -0.3271831906987676 1.0 5367 +Phenotype HP:0000615 Abnormal pupil morphology 0.04408516678381258 -0.3277225305695355 1.0 5368 +Phenotype HP:0100779 Urogenital sinus anomaly 0.04407463913763243 -0.3278475830626955 1.0 5369 +Phenotype HP:0004380 Aortic valve calcification 0.04403491106879098 -0.32831949235486235 1.0 5370 +Phenotype HP:0001435 Abnormality of the shoulder girdle musculature 0.04402296204846812 -0.32846142862025585 1.0 5371 +Phenotype HP:0002444 Hypothalamic hamartoma 0.04392454860543393 -0.32963043128251235 1.0 5372 +Phenotype HP:0004341 Abnormality of vitamin B12 metabolism 0.04390988971590537 -0.32980455669014247 1.0 5373 +Phenotype HP:0011493 Central opacification of the cornea 0.04389895751764805 -0.32993441464931056 1.0 5374 +Phenotype HP:0004361 Abnormal circulating leptin concentration 0.04385943544946247 -0.33040387696566076 1.0 5375 +Biological Process GO:1904353 regulation of telomere capping 0.04385867027520185 -0.3304129660770685 1.0 5376 +Phenotype HP:0000071 Ureteral stenosis 0.04384946578255555 -0.33052230151007944 1.0 5377 +Phenotype HP:0002329 Drowsiness 0.043780042805615205 -0.3313469413393846 1.0 5378 +Phenotype HP:0000154 Wide mouth 0.04373227082618214 -0.33191440010738155 1.0 5379 +Phenotype HP:0003380 Decreased number of peripheral myelinated nerve fibers 0.04372417941537998 -0.3320105138137768 1.0 5380 +Phenotype HP:0006817 Aplasia/Hypoplasia of the cerebellar vermis 0.04365875017007892 -0.3327877141594634 1.0 5381 +Phenotype HP:0000085 Horseshoe kidney 0.04363339544505884 -0.3330888898945604 1.0 5382 +Phenotype HP:0025633 Abnormal ureter morphology 0.04356816869284519 -0.3338636849290317 1.0 5383 +Phenotype HP:0003487 Babinski sign 0.04356099209382447 -0.3339489320568886 1.0 5384 +Phenotype HP:0031828 Abnormal superficial reflex 0.04356099209382447 -0.3339489320568886 1.0 5384 +Phenotype HP:0011363 Abnormality of hair growth rate 0.04355658228051351 -0.3340013139606369 1.0 5386 +Phenotype HP:0002217 Slow-growing hair 0.04355658228051351 -0.3340013139606369 1.0 5386 +Phenotype HP:0001750 Single ventricle 0.043540658922204045 -0.3341904593424255 1.0 5388 +Phenotype HP:0012501 Abnormal brainstem white matter morphology 0.0435112590953215 -0.33453968476159557 1.0 5389 +Biological Process GO:0006470 protein dephosphorylation 0.04347591668470041 -0.33495949907590894 1.0 5390 +Phenotype HP:0002566 Intestinal malrotation 0.04343938902581701 -0.33539339234459437 1.0 5391 +Phenotype HP:0009085 Alveolar ridge overgrowth 0.0433622015632017 -0.3363102625048913 1.0 5392 +Phenotype HP:0005913 Abnormal metacarpal epiphysis morphology 0.04333950790835517 -0.33657982875635056 1.0 5393 +Phenotype HP:0000160 Narrow mouth 0.04331200090611542 -0.3369065702853284 1.0 5394 +Biological Process GO:0001990 regulation of systemic arterial blood pressure by hormone 0.043267108588826986 -0.3374398230281149 1.0 5395 +Biological Process GO:0003044 regulation of systemic arterial blood pressure mediated by a chemical signal 0.043267108588826986 -0.3374398230281149 1.0 5395 +Phenotype HP:0009376 Aplasia/Hypoplasia of the phalanges of the 5th finger 0.04325659981204455 -0.3375646513814067 1.0 5397 +Biological Process GO:0045945 positive regulation of transcription by RNA polymerase III 0.043253657430686654 -0.3375996024158864 1.0 5398 +Phenotype HP:0000400 Macrotia 0.04323558269645089 -0.33781430288555536 1.0 5399 +Phenotype HP:0000110 Renal dysplasia 0.04322384681280611 -0.33795370740999536 1.0 5400 +Biological Process GO:0006684 sphingomyelin metabolic process 0.043220085517574613 -0.3379983859010997 1.0 5401 +Phenotype HP:0001600 Abnormality of the larynx 0.0431987537802615 -0.3382517746348007 1.0 5402 +Phenotype HP:0010042 Aplasia/Hypoplasia of the 4th metacarpal 0.043155342211747216 -0.3387674383246515 1.0 5403 +Phenotype HP:0004912 Hypophosphatemic rickets 0.04312609976760884 -0.3391147942751671 1.0 5404 +Disease MONDO:0019287 ectodermal dysplasia syndrome 0.043030658465663785 -0.3402484924024061 1.0 5405 +Biological Process GO:0010644 cell communication by electrical coupling 0.04302511002256815 -0.34031439950361303 1.0 5406 +Biological Process GO:0051384 response to glucocorticoid 0.043003836411463436 -0.3405670977859867 1.0 5407 +Phenotype HP:0002486 Myotonia 0.04299703772152874 -0.3406478559262212 1.0 5408 +Phenotype HP:0002589 Gastrointestinal atresia 0.04293841934378262 -0.34134415347998703 1.0 5409 +Biological Process GO:0086026 atrial cardiac muscle cell to AV node cell signaling 0.04291138850891174 -0.3416652388617483 1.0 5410 +Biological Process GO:0086014 atrial cardiac muscle cell action potential 0.04291138850891174 -0.3416652388617483 1.0 5410 +Phenotype HP:0001133 Constriction of peripheral visual field 0.04288281116923509 -0.3420046943785176 1.0 5412 +Phenotype HP:0001259 Coma 0.04288230967300122 -0.34201065139429143 1.0 5413 +Biological Process GO:0071493 cellular response to UV-B 0.042876941654556244 -0.34207441532389027 1.0 5414 +Phenotype HP:0009797 Cholesteatoma 0.04284835190985847 -0.34241401819352385 1.0 5415 +Phenotype HP:0100799 Neoplasm of the middle ear 0.04284835190985847 -0.34241401819352385 1.0 5415 +Phenotype HP:0000977 Soft skin 0.042838921356534776 -0.3425260388850276 1.0 5417 +Phenotype HP:0006703 Aplasia/Hypoplasia of the lungs 0.042813353567251244 -0.342829745500902 1.0 5418 +Phenotype HP:0003141 Increased LDL cholesterol concentration 0.04279904463937234 -0.3429997138941292 1.0 5419 +Biological Process GO:0010565 regulation of cellular ketone metabolic process 0.042796640718946954 -0.34302826882819604 1.0 5420 +Phenotype HP:0003552 Muscle stiffness 0.04277765390352761 -0.3432538034410362 1.0 5421 +Phenotype HP:0200114 Metabolic alkalosis 0.0427590552431345 -0.3434747273600012 1.0 5422 +Biological Process GO:0090505 epiboly involved in wound healing 0.04273638185106943 -0.34374405292030347 1.0 5423 +Biological Process GO:0044319 wound healing, spreading of cells 0.04273638185106943 -0.34374405292030347 1.0 5423 +Phenotype HP:0003811 Neonatal death 0.042710706642485 -0.34404903551479277 1.0 5425 +Phenotype HP:0032581 Abnormal renal insterstitial morphology 0.04270861054512265 -0.34407393397704944 1.0 5426 +Phenotype HP:0000321 Square face 0.04270349160438747 -0.34413473924066856 1.0 5427 +Phenotype HP:0001809 Split nail 0.04270095663968121 -0.3441648507823338 1.0 5428 +Biological Process GO:0007157 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules 0.042699848712066446 -0.34417801128451025 1.0 5429 +Biological Process GO:0086066 atrial cardiac muscle cell to AV node cell communication 0.04265304153615079 -0.34473400964785483 1.0 5430 +Phenotype HP:0030179 Abnormal peripheral action potential amplitude 0.04262246821453475 -0.3450971744072746 1.0 5431 +Phenotype HP:0008275 Abnormal light-adapted electroretinogram 0.042604169839931094 -0.34531453138582485 1.0 5432 +Biological Process GO:0006516 glycoprotein catabolic process 0.04259383575230924 -0.34543728469644464 1.0 5433 +Disease MONDO:0015150 complex hereditary spastic paraplegia 0.0425680163603398 -0.34574397997119116 1.0 5434 +Phenotype HP:0002778 Abnormal tracheal morphology 0.04256695278869327 -0.3457566135916394 1.0 5435 +Phenotype HP:0002705 High, narrow palate 0.04255541719215983 -0.3458936390085189 1.0 5436 +Phenotype HP:0001943 Hypoglycemia 0.04255441951088912 -0.3459054899510892 1.0 5437 +Phenotype HP:0012165 Oligodactyly 0.0425051858777844 -0.34649031095112254 1.0 5438 +Biological Process GO:0009798 axis specification 0.04249800121857783 -0.3465756538217807 1.0 5439 +Biological Process GO:0006936 muscle contraction 0.042497061390134316 -0.34658681756037835 1.0 5440 +Phenotype HP:0001667 Right ventricular hypertrophy 0.04248958596431196 -0.3466756142980842 1.0 5441 +Phenotype HP:0000902 Rib fusion 0.042487554951382456 -0.34669973965584494 1.0 5442 +Biological Process GO:0045740 positive regulation of DNA replication 0.042473138611991645 -0.3468709839351656 1.0 5443 +Biological Process GO:1903055 positive regulation of extracellular matrix organization 0.04246862262080864 -0.34692462707123417 1.0 5444 +Phenotype HP:0033801 Blistering by histological location 0.04246113092959858 -0.34701361701711303 1.0 5445 +Phenotype HP:0002411 Myokymia 0.04244825960718257 -0.34716650883460437 1.0 5446 +Disease MONDO:0000508 syndromic intellectual disability 0.04244395195010209 -0.3472176772770439 1.0 5447 +Phenotype HP:0004482 Relative macrocephaly 0.042360438036175396 -0.34820969609790614 1.0 5448 +Phenotype HP:0006844 Absent patellar reflexes 0.04235640673354513 -0.34825758186799866 1.0 5449 +Phenotype HP:0004719 Hyperechogenic kidneys 0.042346796721845714 -0.3483717342532274 1.0 5450 +Disease MONDO:0015127 pituitary deficiency 0.04230901723931291 -0.3488204972910594 1.0 5451 +Disease MONDO:0005564 embryonal neoplasm 0.04227088043375615 -0.3492735047852726 1.0 5452 +Phenotype HP:0034378 Urethrovesical occlusion 0.04220713603518811 -0.35003069170336565 1.0 5453 +Biological Process GO:0071320 cellular response to cAMP 0.042200953785614836 -0.3501041274656667 1.0 5454 +Phenotype HP:0003090 Hypoplasia of the capital femoral epiphysis 0.04218274167115177 -0.3503204598043824 1.0 5455 +Phenotype HP:0003700 Generalized amyotrophy 0.042166471794653826 -0.35051372129747005 1.0 5456 +Phenotype HP:0011710 Bundle branch block 0.04210798405414928 -0.3512084670786478 1.0 5457 +Phenotype HP:0000124 Renal tubular dysfunction 0.04210731351254504 -0.351216432097413 1.0 5458 +Disease MONDO:0021189 intestinal motility disease 0.04207758968853759 -0.3515695061117536 1.0 5459 +Biological Process GO:0006110 regulation of glycolytic process 0.04206800839963676 -0.35168331731363406 1.0 5460 +Biological Process GO:0033121 regulation of purine nucleotide catabolic process 0.04206800839963676 -0.35168331731363406 1.0 5460 +Biological Process GO:0030811 regulation of nucleotide catabolic process 0.04206800839963676 -0.35168331731363406 1.0 5460 +Phenotype HP:0025401 Staring gaze 0.04205194862926476 -0.35187408306413803 1.0 5463 +Phenotype HP:0001765 Hammertoe 0.042044952080890874 -0.3519571914629859 1.0 5464 +Phenotype HP:0003560 Muscular dystrophy 0.04201028682621566 -0.35236896219017255 1.0 5465 +Biological Process GO:2000573 positive regulation of DNA biosynthetic process 0.042008814797275584 -0.3523864476646851 1.0 5466 +Phenotype HP:0003657 Vascular granular osmiophilic material deposition 0.0420032767120091 -0.352452231730568 1.0 5467 +Phenotype HP:0032792 Tonic seizure 0.04200199618707878 -0.3524674424274654 1.0 5468 +Phenotype HP:0002663 Delayed epiphyseal ossification 0.04199035884853697 -0.35260567638532253 1.0 5469 +Phenotype HP:0006538 Recurrent bronchopulmonary infections 0.04197455760299573 -0.35279337125235666 1.0 5470 +Phenotype HP:0011712 Right bundle branch block 0.04191857482952255 -0.35345836181881746 1.0 5471 +Phenotype HP:0010656 Abnormal epiphyseal ossification 0.0418395877949711 -0.35439660816837676 1.0 5472 +Phenotype HP:0001331 Absent septum pellucidum 0.04181392679277662 -0.3547014220124681 1.0 5473 +Phenotype HP:0003701 Proximal muscle weakness 0.04178173982775035 -0.3550837544118396 1.0 5474 +Phenotype HP:0010758 Abnormality of the premaxilla 0.0417788296124697 -0.35511832336203514 1.0 5475 +Phenotype HP:0030067 Peripheral primitive neuroectodermal neoplasm 0.04173240124769395 -0.35566982202272335 1.0 5476 +Phenotype HP:0010047 Short 5th metacarpal 0.04173135450009213 -0.35568225579899937 1.0 5477 +Phenotype HP:0002860 Squamous cell carcinoma 0.04170348765594978 -0.3560132717048221 1.0 5478 +Biological Process GO:0008202 steroid metabolic process 0.04167776900822073 -0.3563187702905636 1.0 5479 +Phenotype HP:0040030 Chorioretinal hypopigmentation 0.041646967270400626 -0.3566846482885656 1.0 5480 +Biological Process GO:0033146 regulation of intracellular estrogen receptor signaling pathway 0.04163882967246624 -0.3567813106281442 1.0 5481 +Biological Process GO:0030856 regulation of epithelial cell differentiation 0.041594322407788265 -0.3573099895290565 1.0 5482 +Biological Process GO:0019953 sexual reproduction 0.041586744411911125 -0.35740000464367727 1.0 5483 +Disease MONDO:0015626 Charcot-Marie-Tooth disease 0.04155033798120833 -0.35783245790516965 1.0 5484 +Phenotype HP:0001988 Recurrent hypoglycemia 0.04154504022468608 -0.35789538722953385 1.0 5485 +Disease MONDO:0020135 pontocerebellar hypoplasia 0.04153729855074306 -0.35798734659169706 1.0 5486 +Phenotype HP:0100711 Abnormal thoracic spine morphology 0.04150558446555441 -0.35836406189474446 1.0 5487 +Biological Process GO:0045723 positive regulation of fatty acid biosynthetic process 0.04144772741712388 -0.3590513160092266 1.0 5488 +Phenotype HP:0007103 Hypointensity of cerebral white matter on MRI 0.041440814334053666 -0.35913343296666983 1.0 5489 +Phenotype HP:0002916 Abnormality of chromosome segregation 0.041323520666940894 -0.36052670409806425 1.0 5490 +Phenotype HP:0000577 Exotropia 0.041309207175961093 -0.3606967266940196 1.0 5491 +Phenotype HP:0002370 Poor coordination 0.04130173762909606 -0.36078545359861575 1.0 5492 +Biological Process GO:0086003 cardiac muscle cell contraction 0.04128910250993467 -0.3609355396791572 1.0 5493 +Biological Process GO:0086002 cardiac muscle cell action potential involved in contraction 0.04128910250993467 -0.3609355396791572 1.0 5493 +Phenotype HP:0000674 Anodontia 0.04128019106577385 -0.3610413941399642 1.0 5495 +Biological Process GO:0043279 response to alkaloid 0.041271480873661726 -0.36114485803121643 1.0 5496 +Biological Process GO:0071312 cellular response to alkaloid 0.041271480873661726 -0.36114485803121643 1.0 5496 +Phenotype HP:0010789 Abnormality of the Leydig cells 0.04120659929480719 -0.3619155529289248 1.0 5498 +Phenotype HP:0003265 Neonatal hyperbilirubinemia 0.041186983663316745 -0.36214855692438713 1.0 5499 +Phenotype HP:0012520 Dilation of Virchow-Robin spaces 0.04116973635206733 -0.36235342886205857 1.0 5500 +Phenotype HP:0007074 Thick corpus callosum 0.041138392175517846 -0.36272575021067616 1.0 5501 +Phenotype HP:0040275 Adenocarcinoma of the large intestine 0.041117774952424635 -0.3629706515975317 1.0 5502 +Phenotype HP:0006891 Thick cerebral cortex 0.04107488712318896 -0.3634800940579229 1.0 5503 +Phenotype HP:0003691 Scapular winging 0.04107070079406039 -0.36352982130803735 1.0 5504 +Biological Process GO:0046329 negative regulation of JNK cascade 0.041036518828655 -0.36393585129060974 1.0 5505 +Phenotype HP:0000782 Abnormal scapula morphology 0.040966110557738356 -0.3647721949201873 1.0 5506 +Phenotype HP:0045007 Abnormal substantia nigra morphology 0.0409146454785716 -0.36538352212005254 1.0 5507 +Phenotype HP:0009918 Ectopia pupillae 0.04091243694132218 -0.36540975619788435 1.0 5508 +Disease MONDO:0019587 autosomal dominant nonsyndromic hearing loss 0.04090816167535816 -0.3654605398829147 1.0 5509 +Biological Process GO:0033233 regulation of protein sumoylation 0.040898425658151605 -0.3655761890227409 1.0 5510 +Phenotype HP:0005912 Biliary atresia 0.040893894593141966 -0.3656300112130415 1.0 5511 +Phenotype HP:0002123 Generalized myoclonic seizure 0.04081085470593837 -0.3666163993143171 1.0 5512 +Phenotype HP:0001966 Abnormal glomerular mesangium morphology 0.04073843650701492 -0.3674766178447056 1.0 5513 +Biological Process GO:0048706 embryonic skeletal system development 0.040733067192813 -0.3675403971659347 1.0 5514 +Phenotype HP:0012084 Abnormality of skeletal muscle fiber size 0.04071966522744941 -0.3676995922180178 1.0 5515 +Phenotype HP:0005155 Ventricular escape rhythm 0.04071490868516925 -0.367756092736821 1.0 5516 +Biological Process GO:2001222 regulation of neuron migration 0.04071172326446337 -0.3677939307106869 1.0 5517 +Phenotype HP:0001947 Renal tubular acidosis 0.04069906935732304 -0.367944239963965 1.0 5518 +Phenotype HP:0011151 Atypical absence status epilepticus 0.040692747360916104 -0.3680193357070122 1.0 5519 +Phenotype HP:0009817 Aplasia involving bones of the lower limbs 0.040686859602037884 -0.36808927336584374 1.0 5520 +Biological Process GO:0042304 regulation of fatty acid biosynthetic process 0.04062182873447984 -0.3688617415872614 1.0 5521 +Biological Process GO:0051899 membrane depolarization 0.040611047843137515 -0.3689898022494242 1.0 5522 +Biological Process GO:0034405 response to fluid shear stress 0.0405736565097089 -0.3694339546637258 1.0 5523 +Phenotype HP:0000482 Microcornea 0.04056991015051281 -0.3694784557373492 1.0 5524 +Biological Process GO:0007158 neuron cell-cell adhesion 0.04055657908733812 -0.36963680857880515 1.0 5525 +Phenotype HP:0000764 Peripheral axonal degeneration 0.04055088153905417 -0.3697044868238388 1.0 5526 +Phenotype HP:0045058 Abnormality of the testis size 0.04054907689859888 -0.3697259232194328 1.0 5527 +Phenotype HP:0000056 Abnormal clitoris morphology 0.04049612400745217 -0.3703549233724219 1.0 5528 +Phenotype HP:0001360 Holoprosencephaly 0.04047718735818573 -0.3705798620873391 1.0 5529 +Phenotype HP:0040159 Abnormal spaced incisors 0.04045820776558284 -0.37080531090405827 1.0 5530 +Phenotype HP:0002747 Respiratory insufficiency due to muscle weakness 0.040435802909437935 -0.3710714466643098 1.0 5531 +Phenotype HP:0010576 Intracranial cystic lesion 0.04041802121900351 -0.3712826662174154 1.0 5532 +Phenotype HP:0011755 Ectopic posterior pituitary 0.040405036137807215 -0.371436909316936 1.0 5533 +Phenotype HP:0007502 Follicular hyperkeratosis 0.040363268378634576 -0.37193304704125424 1.0 5534 +Phenotype HP:0031457 Pulmonary opacity 0.040326500338982774 -0.37236979566942674 1.0 5535 +Phenotype HP:0011338 Abnormality of mouth shape 0.04032448843013314 -0.3723936940996505 1.0 5536 +Disease MONDO:0020159 congenital entropion 0.04031065541105894 -0.37255800941701195 1.0 5537 +Disease MONDO:0001519 entropion 0.04031065541105894 -0.37255800941701195 1.0 5537 +Phenotype HP:0003477 Peripheral axonal neuropathy 0.04028558089498868 -0.372855856694144 1.0 5539 +Phenotype HP:0001622 Premature birth 0.04026754608691163 -0.37307008290151317 1.0 5540 +Phenotype HP:0007731 Chorioretinal dysplasia 0.04026473221589644 -0.37310350742774245 1.0 5541 +Phenotype HP:0030724 Central nervous system cyst 0.040230420006604484 -0.373511084510441 1.0 5542 +Biological Process GO:0031098 stress-activated protein kinase signaling cascade 0.04019664917410737 -0.37391223085669817 1.0 5543 +Phenotype HP:0003393 Thenar muscle atrophy 0.040147921204386705 -0.37449104534152444 1.0 5544 +Phenotype HP:0000499 Abnormal eyelash morphology 0.04013808610852676 -0.37460787138570445 1.0 5545 +Biological Process GO:0048592 eye morphogenesis 0.04012553552190046 -0.37475695334774833 1.0 5546 +Biological Process GO:0034502 protein localization to chromosome 0.040119419045309246 -0.3748296078266316 1.0 5547 +Biological Process GO:0006706 steroid catabolic process 0.04011198611442757 -0.37491789978879814 1.0 5548 +Biological Process GO:0006473 protein acetylation 0.040108567494464564 -0.374958507816673 1.0 5549 +Phenotype HP:0011384 Abnormality of the internal auditory canal 0.04008503516312245 -0.3752380362747768 1.0 5550 +Phenotype HP:0000465 Webbed neck 0.040052385082532616 -0.37562586978568396 1.0 5551 +Biological Process GO:0055010 ventricular cardiac muscle tissue morphogenesis 0.04002312943606645 -0.3759733825598595 1.0 5552 +Phenotype HP:0011992 Abnormal neutrophil morphology 0.040019991105822106 -0.376010661170358 1.0 5553 +Disease MONDO:0018838 lissencephaly spectrum disorders 0.03999144033447888 -0.37634980109556226 1.0 5554 +Disease MONDO:0015159 multiple congenital anomalies/dysmorphic syndrome-intellectual disability 0.03997402717137655 -0.3765566431020741 1.0 5555 +Phenotype HP:0001993 Ketoacidosis 0.0399592179684114 -0.37673255400569067 1.0 5556 +Phenotype HP:0001334 Communicating hydrocephalus 0.039946151028711685 -0.37688776946026226 1.0 5557 +Disease MONDO:0018612 congenital hypothyroidism 0.0398471889572366 -0.3780632889975333 1.0 5558 +Disease MONDO:0005420 hypothyroidism 0.0398471889572366 -0.3780632889975333 1.0 5558 +Phenotype HP:0040063 Decreased adipose tissue 0.03984134160432817 -0.37813274669463603 1.0 5560 +Biological Process GO:0007517 muscle organ development 0.03977476893731735 -0.37892352915859406 1.0 5561 +Phenotype HP:0009887 Abnormality of hair pigmentation 0.03976069131066162 -0.3790907500435811 1.0 5562 +Biological Process GO:0072073 kidney epithelium development 0.03975296782572135 -0.3791824933479378 1.0 5563 +Phenotype HP:0200007 Abnormal size of the palpebral fissures 0.03974517922664711 -0.3792750101095948 1.0 5564 +Phenotype HP:0012110 Hypoplasia of the pons 0.039733416538731525 -0.3794147330281786 1.0 5565 +Biological Process GO:0060314 regulation of ryanodine-sensitive calcium-release channel activity 0.039689329011194485 -0.37993842608752215 1.0 5566 +Biological Process GO:0007548 sex differentiation 0.039684228604749294 -0.3799990111918452 1.0 5567 +Phenotype HP:0008734 Decreased testicular size 0.03968217623452586 -0.3800233902419136 1.0 5568 +Phenotype HP:0004991 Rhizomelic arm shortening 0.039587661832045096 -0.38114607820724794 1.0 5569 +Biological Process GO:0070269 pyroptosis 0.039550931135274414 -0.38158238325854615 1.0 5570 +Biological Process GO:0060761 negative regulation of response to cytokine stimulus 0.03949863295038114 -0.382203606492756 1.0 5571 +Phenotype HP:0011003 High myopia 0.039469729387009655 -0.38254693705297454 1.0 5572 +Biological Process GO:0055007 cardiac muscle cell differentiation 0.039436726312693016 -0.38293896359476925 1.0 5573 +Biological Process GO:0044793 negative regulation by host of viral process 0.03939627624850084 -0.38341944909828607 1.0 5574 +Phenotype HP:0007149 Distal upper limb amyotrophy 0.03937511298532037 -0.38367083661443474 1.0 5575 +Phenotype HP:0030948 Elevated gamma-glutamyltransferase level 0.03934691002449153 -0.38400584507746527 1.0 5576 +Biological Process GO:0043691 reverse cholesterol transport 0.039342579686065804 -0.3840572829399369 1.0 5577 +Phenotype HP:0030196 Fatigable weakness of respiratory muscles 0.03932788630435213 -0.38423181806248985 1.0 5578 +Biological Process GO:0014912 negative regulation of smooth muscle cell migration 0.03929217741344826 -0.3846559856075513 1.0 5579 +Phenotype HP:0011499 Mydriasis 0.03928385896636133 -0.38475479616117747 1.0 5580 +Phenotype HP:0010989 Abnormality of the intrinsic pathway 0.03925982423289964 -0.3850402923956053 1.0 5581 +Phenotype HP:0004303 Abnormal muscle fiber morphology 0.03921361185691896 -0.3855892254365096 1.0 5582 +Phenotype HP:0003088 Premature osteoarthritis 0.039203253723149034 -0.3857122643789521 1.0 5583 +Phenotype HP:0000786 Primary amenorrhea 0.03914496341475715 -0.38640466496563003 1.0 5584 +Biological Process GO:0009584 detection of visible light 0.039081678300824874 -0.387156396277808 1.0 5585 +Phenotype HP:0001421 Abnormality of the musculature of the hand 0.03906649189707889 -0.3873367877554539 1.0 5586 +Biological Process GO:0070935 3'-UTR-mediated mRNA stabilization 0.03906422224806805 -0.38736374774846155 1.0 5587 +Phenotype HP:0011753 Posterior pituitary dysgenesis 0.03904046533226613 -0.3876459439298288 1.0 5588 +Disease MONDO:0003150 male reproductive system disorder 0.0389585387565774 -0.38861910757634827 1.0 5589 +Biological Process GO:0035970 peptidyl-threonine dephosphorylation 0.03893250529116399 -0.3889283457194084 1.0 5590 +Disease MONDO:0015929 thoracic malformation 0.03887277044921944 -0.38963790517703645 1.0 5591 +Disease MONDO:0020001 respiratory or thoracic malformation 0.03887277044921944 -0.38963790517703645 1.0 5591 +Disease MONDO:0020584 anemia due to enzyme disorder 0.03887243728100276 -0.38964186271088824 1.0 5593 +Phenotype HP:0100786 Hypersomnia 0.03881950791266475 -0.39027058344853377 1.0 5594 +Phenotype HP:0012666 Severely reduced left ventricular ejection fraction 0.038797318885266274 -0.39053415549013676 1.0 5595 +Phenotype HP:0100559 Lower limb asymmetry 0.03878989678908917 -0.39062231875242137 1.0 5596 +Biological Process GO:0060541 respiratory system development 0.03878679287390718 -0.3906591885640985 1.0 5597 +Phenotype HP:0011883 Abnormal platelet granules 0.038784149784945154 -0.39069058445817484 1.0 5598 +Phenotype HP:0003738 Exercise-induced myalgia 0.0386210229612679 -0.3926282840781131 1.0 5599 +Biological Process GO:0075522 IRES-dependent viral translational initiation 0.038620566852012095 -0.39263370196532327 1.0 5600 +Phenotype HP:0000055 Abnormal female external genitalia morphology 0.03857740446593905 -0.39314640574514337 1.0 5601 +Phenotype HP:0009944 Partial duplication of thumb phalanx 0.03853923973472384 -0.3935997449538873 1.0 5602 +Biological Process GO:0007042 lysosomal lumen acidification 0.0385146472196799 -0.39389186678878707 1.0 5603 +Biological Process GO:0071625 vocalization behavior 0.03850473810938981 -0.39400957201230696 1.0 5604 +Phenotype HP:0005146 Cardiac valve calcification 0.03849671026023316 -0.39410493070261376 1.0 5605 +Phenotype HP:0011495 Abnormal corneal epithelium morphology 0.038459200944475525 -0.3945504845683073 1.0 5606 +Phenotype HP:0001476 Delayed closure of the anterior fontanelle 0.038456359233597914 -0.3945842397899404 1.0 5607 +Phenotype HP:0010621 Cutaneous syndactyly of toes 0.03832818105558122 -0.396106802426964 1.0 5608 +Biological Process GO:0045137 development of primary sexual characteristics 0.03831072083472353 -0.3963142034083435 1.0 5609 +Phenotype HP:0001772 Talipes equinovalgus 0.03829957319483135 -0.39644662048786095 1.0 5610 +Biological Process GO:1903580 positive regulation of ATP metabolic process 0.038285329816791114 -0.39661581024827586 1.0 5611 +Phenotype HP:0100025 Overfriendliness 0.03819169241109377 -0.39772808081997985 1.0 5612 +Phenotype HP:0031162 Impaired oropharyngeal swallow response 0.03817958403137467 -0.3978719100336608 1.0 5613 +Phenotype HP:0100724 Hypercoagulability 0.03817327785881608 -0.39794681781335384 1.0 5614 +Phenotype HP:0008438 Vertebral arch anomaly 0.03812392454573321 -0.39853306043027975 1.0 5615 +Phenotype HP:0008726 Hypoplasia of the vagina 0.03807646734138148 -0.3990967801470176 1.0 5616 +Phenotype HP:0010044 Short 4th metacarpal 0.03802878822680433 -0.39966313582116425 1.0 5617 +Phenotype HP:0007042 Focal white matter lesions 0.0380212300826408 -0.39975291512749156 1.0 5618 +Phenotype HP:0002605 Hepatic necrosis 0.038018830550624716 -0.3997814179339018 1.0 5619 +Biological Process GO:0055008 cardiac muscle tissue morphogenesis 0.03793595930729543 -0.4007658028013512 1.0 5620 +Phenotype HP:0040185 Macrothrombocytopenia 0.03791504916931476 -0.40101418357346846 1.0 5621 +Phenotype HP:0002460 Distal muscle weakness 0.03790942081369819 -0.40108103991440164 1.0 5622 +Phenotype HP:0009103 Aplasia/Hypoplasia involving the pelvis 0.037810261533627876 -0.40225890199112396 1.0 5623 +Phenotype HP:0025568 Abnormal morphology of the choroidal vasculature 0.037753766353721296 -0.402929979170006 1.0 5624 +Phenotype HP:0010456 Abnormal greater sciatic notch morphology 0.037734707001019 -0.4031563754159146 1.0 5625 +Phenotype HP:0000733 Motor stereotypy 0.03773289512417677 -0.40317789776882634 1.0 5626 +Phenotype HP:0000062 Ambiguous genitalia 0.03768827118997564 -0.40370796252698504 1.0 5627 +Phenotype HP:0000411 Protruding ear 0.03766479350867702 -0.40398684182533623 1.0 5628 +Phenotype HP:0011096 Peripheral demyelination 0.037659049709457104 -0.404055069461445 1.0 5629 +Phenotype HP:0011492 Abnormal corneal stroma morphology 0.037628122822090604 -0.404422434046527 1.0 5630 +Phenotype HP:0010836 Abnormal circulating copper concentration 0.03759783437226738 -0.40478221496046857 1.0 5631 +Phenotype HP:0002046 Heat intolerance 0.037591954051282905 -0.40485206426838666 1.0 5632 +Disease MONDO:0019824 non-acquired pituitary hormone deficiency 0.037567464617295876 -0.4051429616564401 1.0 5633 +Phenotype HP:0007968 Remnants of the hyaloid vascular system 0.03756346991331416 -0.4051904126900141 1.0 5634 +Disease MONDO:0020121 muscular dystrophy 0.03751188495938973 -0.4058031638204577 1.0 5635 +Phenotype HP:0011526 Abnormality of lens shape 0.037496760527762185 -0.40598281916318946 1.0 5636 +Phenotype HP:0012472 Eclabion 0.03748833860242162 -0.4060828588817574 1.0 5637 +Biological Process GO:0009914 hormone transport 0.037482539563065576 -0.4061517426870257 1.0 5638 +Phenotype HP:0008956 Proximal lower limb amyotrophy 0.03748016347338956 -0.4061799670339379 1.0 5639 +Biological Process GO:0006351 DNA-templated transcription 0.037449231164804364 -0.40654739601488793 1.0 5640 +Phenotype HP:0011098 Speech apraxia 0.03742171393891858 -0.4068742589852976 1.0 5641 +Biological Process GO:0033120 positive regulation of RNA splicing 0.037418113865302915 -0.4069170224077659 1.0 5642 +Phenotype HP:0030838 Hip pain 0.03737343038870833 -0.40744779443938567 1.0 5643 +Biological Process GO:0000413 protein peptidyl-prolyl isomerization 0.037371696971850055 -0.4074683848065108 1.0 5644 +Disease MONDO:0002350 familial nephrotic syndrome 0.03731500783243025 -0.4081417659306705 1.0 5645 +Phenotype HP:0003402 Decreased miniature endplate potentials 0.037270137172589646 -0.40867476141577563 1.0 5646 +Phenotype HP:0003071 Flattened epiphysis 0.0372078924562238 -0.40941413438048124 1.0 5647 +Phenotype HP:0012632 Abnormal intraocular pressure 0.03719019078882635 -0.40962440338109746 1.0 5648 +Phenotype HP:0003193 Allergic rhinitis 0.03711908207131276 -0.4104690672554643 1.0 5649 +Biological Process GO:0051153 regulation of striated muscle cell differentiation 0.037117922189407015 -0.4104828448959361 1.0 5650 +Biological Process GO:0030574 collagen catabolic process 0.03708516487859759 -0.41087195213945854 1.0 5651 +Phenotype HP:0008499 High hypermetropia 0.037029879713368574 -0.4115286561764625 1.0 5652 +Biological Process GO:0032411 positive regulation of transporter activity 0.03693592760789599 -0.41264466490490326 1.0 5653 +Biological Process GO:1902686 mitochondrial outer membrane permeabilization involved in programmed cell death 0.03693309412234236 -0.4126783224221442 1.0 5654 +Biological Process GO:0046320 regulation of fatty acid oxidation 0.03691984796951908 -0.4128356666572167 1.0 5655 +Phenotype HP:0007210 Lower limb amyotrophy 0.03691090996730306 -0.412941836587499 1.0 5656 +Phenotype HP:0009777 Absent thumb 0.03690746460319572 -0.41298276229530634 1.0 5657 +Phenotype HP:0002792 Reduced vital capacity 0.03689798128337152 -0.4130954097729245 1.0 5658 +Phenotype HP:0000563 Keratoconus 0.03688567543344501 -0.4132415846336132 1.0 5659 +Biological Process GO:0030323 respiratory tube development 0.036841916910381745 -0.413761369618065 1.0 5660 +Biological Process GO:0030324 lung development 0.036841916910381745 -0.413761369618065 1.0 5660 +Phenotype HP:0002153 Hyperkalemia 0.036836771733710694 -0.4138224865248696 1.0 5662 +Phenotype HP:0040127 Abnormal sweat homeostasis 0.0368273999284594 -0.41393380937824337 1.0 5663 +Phenotype HP:0002410 Aqueductal stenosis 0.036824811960635806 -0.4139645505166727 1.0 5664 +Phenotype HP:0012722 Heart block 0.0368214606207089 -0.4140043593596101 1.0 5665 +Phenotype HP:0006938 Impaired vibration sensation at ankles 0.036813180021469716 -0.41410272033812323 1.0 5666 +Biological Process GO:0009299 mRNA transcription 0.036808102801866305 -0.41416303001788096 1.0 5667 +Biological Process GO:1902894 negative regulation of miRNA transcription 0.03672565235176717 -0.41514241649902117 1.0 5668 +Phenotype HP:0005640 Abnormal vertebral segmentation and fusion 0.03672368319424579 -0.4151658071082095 1.0 5669 +Phenotype HP:0003310 Abnormal odontoid process morphology 0.03671073595958385 -0.41531960064821816 1.0 5670 +Biological Process GO:0007420 brain development 0.03669485727793853 -0.4155082153388967 1.0 5671 +Phenotype HP:0000048 Bifid scrotum 0.03668835847403762 -0.41558541128720844 1.0 5672 +Phenotype HP:0000608 Macular degeneration 0.036655046685275305 -0.41598110488908907 1.0 5673 +Biological Process GO:0009593 detection of chemical stimulus 0.036624395721674974 -0.41634519191769825 1.0 5674 +Disease MONDO:0100022 neonatal/infantile epilepsy syndrome 0.0365956589630706 -0.41668654108989894 1.0 5675 +Phenotype HP:0010551 Paraplegia/paraparesis 0.036586790623866716 -0.41679188352909735 1.0 5676 +Phenotype HP:0000207 Triangular mouth 0.03658284917139143 -0.41683870201542106 1.0 5677 +Phenotype HP:0000703 Dentinogenesis imperfecta 0.03656757504500163 -0.41702013550522504 1.0 5678 +Phenotype HP:0007078 Decreased amplitude of sensory action potentials 0.036495669646717244 -0.4178742627406259 1.0 5679 +Phenotype HP:0010468 Aplasia/Hypoplasia of the testes 0.036468727661916 -0.41819429271811775 1.0 5680 +Phenotype HP:0000190 Abnormal oral frenulum morphology 0.03646402570484242 -0.4182501448473327 1.0 5681 +Biological Process GO:1903715 regulation of aerobic respiration 0.03643627049868714 -0.41857983466293774 1.0 5682 +Biological Process GO:0046885 regulation of hormone biosynthetic process 0.03642783170876551 -0.41868007470718843 1.0 5683 +Disease MONDO:0019256 sterol metabolism disorder 0.03636293483009656 -0.41945095134352145 1.0 5684 +Phenotype HP:0011734 Central adrenal insufficiency 0.036351405057398756 -0.41958790758205344 1.0 5685 +Biological Process GO:0030858 positive regulation of epithelial cell differentiation 0.036321717030666556 -0.4199405563789767 1.0 5686 +Phenotype HP:0000958 Dry skin 0.036204524128640836 -0.4213326305737394 1.0 5687 +Disease MONDO:0021026 hereditary epidermal appendage anomaly 0.036175499340550754 -0.42167740110002766 1.0 5688 +Phenotype HP:0001298 Encephalopathy 0.03616836416505864 -0.421762156179098 1.0 5689 +Phenotype HP:0010639 Elevated alkaline phosphatase of bone origin 0.03614112789509483 -0.4220856818186448 1.0 5690 +Phenotype HP:0002827 Hip dislocation 0.036139377541329454 -0.4221064733705764 1.0 5691 +Biological Process GO:0098660 inorganic ion transmembrane transport 0.036124929869184474 -0.4222780898355651 1.0 5692 +Phenotype HP:0002346 Head tremor 0.03612279772975224 -0.4223034164230285 1.0 5693 +Phenotype HP:0031066 Abnormal ovarian physiology 0.036106389723625676 -0.4224983186869155 1.0 5694 +Phenotype HP:0002510 Spastic tetraplegia 0.03610097518938482 -0.4225626351537242 1.0 5695 +Phenotype HP:0002212 Curly hair 0.03602575625588644 -0.4234561221693259 1.0 5696 +Phenotype HP:0012236 Elevated sweat chloride 0.03601333301138265 -0.4236036914998059 1.0 5697 +Biological Process GO:0048704 embryonic skeletal system morphogenesis 0.03599653942884096 -0.4238031738275734 1.0 5698 +Phenotype HP:0001441 Abnormality thigh musculature morphology 0.03595551038715006 -0.4242905367069499 1.0 5699 +Phenotype HP:0003557 Increased variability in muscle fiber diameter 0.03591259653159462 -0.4248002883206047 1.0 5700 +Biological Process GO:0060395 SMAD protein signal transduction 0.035909500862160715 -0.42483706018528217 1.0 5701 +Disease MONDO:0000509 non-syndromic intellectual disability 0.03590316054862186 -0.42491237350811645 1.0 5702 +Biological Process GO:0009790 embryo development 0.0357957588658675 -0.42618814284612305 1.0 5703 +Disease MONDO:0020143 cerebral lipidosis with dementia 0.035731679167892993 -0.426949312613375 1.0 5704 +Phenotype HP:0009909 Uplifted earlobe 0.03571540971272402 -0.4271425691017125 1.0 5705 +Biological Process GO:0010559 regulation of glycoprotein biosynthetic process 0.035713011353921686 -0.42717105797212024 1.0 5706 +Phenotype HP:0000204 Cleft upper lip 0.03571081740483273 -0.4271971187646987 1.0 5707 +Phenotype HP:0100962 Excessive shyness 0.035685185592820634 -0.42750158587363 1.0 5708 +Phenotype HP:5200020 Abnormal interest in others 0.035685185592820634 -0.42750158587363 1.0 5708 +Phenotype HP:0030043 Hip subluxation 0.0356749294141977 -0.42762341374333096 1.0 5710 +Biological Process GO:0071816 tail-anchored membrane protein insertion into ER membrane 0.03567427749537411 -0.42763115755166503 1.0 5711 +Biological Process GO:0032774 RNA biosynthetic process 0.035652668436429114 -0.4278878404463666 1.0 5712 +Phenotype HP:0012113 Abnormal circulating creatine concentration 0.03561698263425772 -0.42831173373225256 1.0 5713 +Phenotype HP:0008064 Ichthyosis 0.03561089795327521 -0.4283840105274569 1.0 5714 +Phenotype HP:0002823 Abnormal femur morphology 0.03559782810325052 -0.4285392605522818 1.0 5715 +Phenotype HP:0034673 Abnormal ankle morphology 0.035551929294838636 -0.4290844688853472 1.0 5716 +Phenotype HP:0100309 Subdural hemorrhage 0.03552586275868397 -0.42939409985872984 1.0 5717 +Phenotype HP:0011081 Incisor macrodontia 0.0355230551417125 -0.429427450096391 1.0 5718 +Phenotype HP:0002553 Highly arched eyebrow 0.035500533093766884 -0.4296949779177553 1.0 5719 +Disease MONDO:0019950 congenital muscular dystrophy 0.03541546304496235 -0.4307054812642976 1.0 5720 +Biological Process GO:0033045 regulation of sister chromatid segregation 0.03538923519925219 -0.4310170283509063 1.0 5721 +Phenotype HP:0000687 Widely spaced teeth 0.035382151745028234 -0.4311011690596395 1.0 5722 +Biological Process GO:0030521 androgen receptor signaling pathway 0.035359300414223305 -0.4313726082626942 1.0 5723 +Phenotype HP:0000845 Elevated circulating growth hormone concentration 0.03534716327094489 -0.43151677914389913 1.0 5724 +Biological Process GO:0045616 regulation of keratinocyte differentiation 0.03533568999392378 -0.43165306429935124 1.0 5725 +Phenotype HP:0010515 Aplasia/Hypoplasia of the thymus 0.035312452597986654 -0.431929089371505 1.0 5726 +Biological Process GO:0006513 protein monoubiquitination 0.035303453885519254 -0.4320359804476318 1.0 5727 +Biological Process GO:0001516 prostaglandin biosynthetic process 0.0352192492128085 -0.4330362044367378 1.0 5728 +Biological Process GO:0046457 prostanoid biosynthetic process 0.0352192492128085 -0.4330362044367378 1.0 5728 +Biological Process GO:0051917 regulation of fibrinolysis 0.03520933265814419 -0.43315399808814953 1.0 5730 +Phenotype HP:0010832 Abnormality of pain sensation 0.03519116133515554 -0.4333698458859252 1.0 5731 +Phenotype HP:0001895 Normochromic anemia 0.0351907461528711 -0.4333747776226968 1.0 5732 +Phenotype HP:0002419 Molar tooth sign on MRI 0.03518188561843927 -0.4334800273530231 1.0 5733 +Phenotype HP:0001538 Protuberant abdomen 0.03516333001277383 -0.433700439847027 1.0 5734 +Disease MONDO:0000761 syndrome caused by partial chromosomal deletion 0.035098043999611694 -0.4344759388118193 1.0 5735 +Phenotype HP:0006477 Abnormal alveolar ridge morphology 0.03506961292180044 -0.43481365695913204 1.0 5736 +Biological Process GO:0070167 regulation of biomineral tissue development 0.03505900758147751 -0.43493963234104543 1.0 5737 +Phenotype HP:0000025 Functional abnormality of male internal genitalia 0.035008687914404146 -0.43553735377989594 1.0 5738 +Phenotype HP:0012734 Ketotic hypoglycemia 0.03500760781963663 -0.4355501836699982 1.0 5739 +Phenotype HP:0001238 Slender finger 0.03499814065741602 -0.4356626392197554 1.0 5740 +Phenotype HP:0003383 Onion bulb formation 0.03497749443683695 -0.435907885052828 1.0 5741 +Phenotype HP:0030350 Erythematous papule 0.03495461796928967 -0.4361796228423139 1.0 5742 +Biological Process GO:0071391 cellular response to estrogen stimulus 0.03494207208638167 -0.4363286489313078 1.0 5743 +Phenotype HP:0012249 Abnormal ST segment 0.034941360125516296 -0.4363371059481683 1.0 5744 +Phenotype HP:0009077 Weakness of long finger extensor muscles 0.034901964478856407 -0.4368050665682508 1.0 5745 +Phenotype HP:0034059 Abnormal fetal physiology 0.034899173491506064 -0.43683821927119754 1.0 5746 +Phenotype HP:0031936 Delayed ability to walk 0.03489790149455274 -0.43685332866864335 1.0 5747 +Phenotype HP:0011471 Gastrostomy tube feeding in infancy 0.03487057048946762 -0.43717797961796084 1.0 5748 +Phenotype HP:0030188 Tremor by anatomical site 0.034829433558232425 -0.4376666240617316 1.0 5749 +Phenotype HP:0000448 Prominent nose 0.034800893389060006 -0.43800563804920306 1.0 5750 +Biological Process GO:0060249 anatomical structure homeostasis 0.034739359396885994 -0.43873656868685695 1.0 5751 +Biological Process GO:0001894 tissue homeostasis 0.034739359396885994 -0.43873656868685695 1.0 5751 +Phenotype HP:0034671 Knee contracture 0.034732905562957606 -0.4388132304599993 1.0 5753 +Phenotype HP:0025158 Hyperautofluorescent retinal lesion 0.03458167440463078 -0.44060962759081396 1.0 5754 +Phenotype HP:0002656 Epiphyseal dysplasia 0.03457272244128329 -0.4407159633581949 1.0 5755 +Disease MONDO:0020585 anemia due to erythrocyte enzyme disorder 0.03446694727313704 -0.4419724121659116 1.0 5756 +Biological Process GO:0022414 reproductive process 0.034432120328034665 -0.44238610353050284 1.0 5757 +Phenotype HP:0000413 Atresia of the external auditory canal 0.03442195777992774 -0.44250681921147117 1.0 5758 +Phenotype HP:0003677 Slowly progressive 0.03441875003865702 -0.4425449223198442 1.0 5759 +Phenotype HP:0000848 Increased circulating renin level 0.03439021230735928 -0.44288390734905647 1.0 5760 +Biological Process GO:0050435 amyloid-beta metabolic process 0.03438651250407365 -0.4429278554089696 1.0 5761 +Biological Process GO:0006111 regulation of gluconeogenesis 0.03431496902578468 -0.44377768358293 1.0 5762 +Biological Process GO:0090504 epiboly 0.034289990149672156 -0.44407439480220495 1.0 5763 +Disease MONDO:0018555 hypogonadotropic hypogonadism 0.03427093549207039 -0.44430073527742964 1.0 5764 +Biological Process GO:0045682 regulation of epidermis development 0.034166386291740736 -0.44554262144413653 1.0 5765 +Biological Process GO:0045604 regulation of epidermal cell differentiation 0.034166386291740736 -0.44554262144413653 1.0 5765 +Phenotype HP:0001798 Anonychia 0.03415497303210424 -0.4456781936839519 1.0 5767 +Biological Process GO:0018958 phenol-containing compound metabolic process 0.034073153530587375 -0.4466500854514668 1.0 5768 +Phenotype HP:0012448 Delayed myelination 0.03407301517463934 -0.446651728910598 1.0 5769 +Phenotype HP:0000813 Bicornuate uterus 0.03405558213795401 -0.4468588069851786 1.0 5770 +Phenotype HP:0000100 Nephrotic syndrome 0.034049987625930034 -0.44692526131548577 1.0 5771 +Disease MONDO:0000904 complex cortical dysplasia with other brain malformations 0.034041923912096594 -0.44702104602383796 1.0 5772 +Phenotype HP:0012715 Profound hearing impairment 0.034031004850493485 -0.44715074793944865 1.0 5773 +Biological Process GO:0006412 translation 0.03401546165460545 -0.44733537756740277 1.0 5774 +Phenotype HP:0001549 Abnormal ileum morphology 0.033936056332785625 -0.4482785925362406 1.0 5775 +Phenotype HP:0033379 Bilateral superior vena cava 0.03393597856233266 -0.44827951633144336 1.0 5776 +Phenotype HP:0000457 Depressed nasal ridge 0.03385788412688895 -0.4492071599553882 1.0 5777 +Biological Process GO:0045445 myoblast differentiation 0.03380778066848489 -0.4498023131626818 1.0 5778 +Phenotype HP:0010948 Abnormal fetal cardiovascular morphology 0.03376991097300619 -0.45025214779368916 1.0 5779 +Disease MONDO:0005267 heart disorder 0.033746994529708196 -0.45052436043455263 1.0 5780 +Disease MONDO:0001516 spinal muscular atrophy 0.033736664055528 -0.4506470708229579 1.0 5781 +Biological Process GO:0003012 muscle system process 0.033702731670456454 -0.45105013616913797 1.0 5782 +Phenotype HP:0009108 Aplasia/Hypoplasia involving the femoral head and neck 0.03370083301499105 -0.45107268932067235 1.0 5783 +Biological Process GO:0086001 cardiac muscle cell action potential 0.03370067965376933 -0.45107451101973045 1.0 5784 +Biological Process GO:0046479 glycosphingolipid catabolic process 0.033695282931131554 -0.4511386159116691 1.0 5785 +Phenotype HP:0002478 Progressive spastic quadriplegia 0.03369296700464686 -0.45116612561098185 1.0 5786 +Biological Process GO:0000086 G2/M transition of mitotic cell cycle 0.03367795717690181 -0.4513444196331499 1.0 5787 +Biological Process GO:0043470 regulation of carbohydrate catabolic process 0.03367071186278814 -0.4514304829922463 1.0 5788 +Biological Process GO:0032210 regulation of telomere maintenance via telomerase 0.03366049777860414 -0.4515518108437621 1.0 5789 +Phenotype HP:0000666 Horizontal nystagmus 0.03359993087548374 -0.4522712539280548 1.0 5790 +Biological Process GO:0031960 response to corticosteroid 0.03357711413531028 -0.45254228224679294 1.0 5791 +Biological Process GO:0140013 meiotic nuclear division 0.03354951745343582 -0.452870089034017 1.0 5792 +Phenotype HP:0000483 Astigmatism 0.03351626020913423 -0.4532651347303084 1.0 5793 +Phenotype HP:0003563 Decreased LDL cholesterol concentration 0.03350110213666457 -0.45344518967529746 1.0 5794 +Biological Process GO:0060415 muscle tissue morphogenesis 0.03347223425711299 -0.45378809636577655 1.0 5795 +Biological Process GO:0048644 muscle organ morphogenesis 0.03347223425711299 -0.45378809636577655 1.0 5795 +Phenotype HP:0006863 Severe expressive language delay 0.033458518518909686 -0.45395101856400616 1.0 5797 +Phenotype HP:0011723 Congenital malformation of the right heart 0.0334387948693462 -0.4541853056505896 1.0 5798 +Phenotype HP:0000437 Depressed nasal tip 0.03342712276825166 -0.4543239525349274 1.0 5799 +Phenotype HP:0006958 Abnormal auditory evoked potentials 0.033383701302443614 -0.4548397337896393 1.0 5800 +Biological Process GO:0007156 homophilic cell adhesion via plasma membrane adhesion molecules 0.03336983214083866 -0.4550044784255304 1.0 5801 +Biological Process GO:0007369 gastrulation 0.033358064552370226 -0.45514425955526044 1.0 5802 +Phenotype HP:0001850 Abnormality of the tarsal bones 0.03324601991129361 -0.45647518020666616 1.0 5803 +Phenotype HP:0002140 Ischemic stroke 0.0332386337746976 -0.4565629163235859 1.0 5804 +Phenotype HP:0000430 Underdeveloped nasal alae 0.033223204114656735 -0.4567461973176187 1.0 5805 +Phenotype HP:0002938 Lumbar hyperlordosis 0.033179447348412494 -0.457265961433721 1.0 5806 +Phenotype HP:0002283 Global brain atrophy 0.033123792236279814 -0.45792705987967913 1.0 5807 +Disease MONDO:0044765 steroid-resistant nephrotic syndrome 0.03310731517100618 -0.45812278246164756 1.0 5808 +Phenotype HP:0010980 Hyperlipoproteinemia 0.033094658955318934 -0.45827311913696683 1.0 5809 +Phenotype HP:0002332 Lack of peer relationships 0.03307457890619403 -0.4585116397105952 1.0 5810 +Phenotype HP:5200016 Abnormal peer relationships 0.03307457890619403 -0.4585116397105952 1.0 5810 +Phenotype HP:0100257 Ectrodactyly 0.03297643794272709 -0.4596774057282461 1.0 5812 +Phenotype HP:0007675 Progressive night blindness 0.03296746902105563 -0.45978394293483343 1.0 5813 +Phenotype HP:0025580 Abnormal right atrium morphology 0.03290025077498582 -0.4605823939003233 1.0 5814 +Phenotype HP:0030718 Right atrial enlargement 0.03290025077498582 -0.4605823939003233 1.0 5814 +Phenotype HP:0007984 Electronegative electroretinogram 0.03287970286373476 -0.46082647196746246 1.0 5816 +Disease MONDO:0020344 postsynaptic congenital myasthenic syndrome 0.032869143434880455 -0.4609519019906586 1.0 5817 +Biological Process GO:0008037 cell recognition 0.03280053439981456 -0.46176687342315914 1.0 5818 +Phenotype HP:0011623 Muscular ventricular septal defect 0.032777285393708055 -0.46204303640654226 1.0 5819 +Phenotype HP:0006714 Aplasia/Hypoplasia of the sternum 0.03276291273495768 -0.4622137618260061 1.0 5820 +Phenotype HP:0001283 Bulbar palsy 0.032732041628171005 -0.462580463822276 1.0 5821 +Biological Process GO:0010880 regulation of release of sequestered calcium ion into cytosol by sarcoplasmic reticulum 0.03265951485913743 -0.46344197200115017 1.0 5822 +Phenotype HP:0009809 Abnormal upper limb metaphysis morphology 0.03265030208881292 -0.46355140576044224 1.0 5823 +Phenotype HP:0002136 Broad-based gait 0.032576562613845006 -0.4644273190492492 1.0 5824 +Phenotype HP:0100265 Synostosis of metacarpals/metatarsals 0.03257574985910572 -0.46443697334468587 1.0 5825 +Phenotype HP:0006739 Squamous cell carcinoma of the skin 0.032539668970530844 -0.4648655596587116 1.0 5826 +Phenotype HP:0002273 Tetraparesis 0.03248599977069022 -0.46550306847417977 1.0 5827 +Disease MONDO:0100038 complex neurodevelopmental disorder 0.032449576253710366 -0.4659357246947675 1.0 5828 +Phenotype HP:0025427 Abnormal bronchus physiology 0.03243687267011652 -0.46608662402908146 1.0 5829 +Biological Process GO:0043462 regulation of ATP-dependent activity 0.03241899835384898 -0.4662989438368085 1.0 5830 +Phenotype HP:0012229 CSF pleocytosis 0.032413836049649314 -0.4663602641927145 1.0 5831 +Disease MONDO:0043218 neurovascular disorder 0.03240908837431755 -0.4664166593855991 1.0 5832 +Phenotype HP:0006970 Periventricular leukomalacia 0.03235023783087421 -0.4671157147162476 1.0 5833 +Disease MONDO:0019268 epidermal disease 0.03230387798672529 -0.4676663994556592 1.0 5834 +Phenotype HP:0002089 Pulmonary hypoplasia 0.03223308707690686 -0.4685072882559073 1.0 5835 +Phenotype HP:0003409 Distal sensory impairment of all modalities 0.032212623012807806 -0.46875037034586203 1.0 5836 +Phenotype HP:0030260 Microphallus 0.032144068249918445 -0.46956469710709714 1.0 5837 +Phenotype HP:0001789 Hydrops fetalis 0.03202284576949077 -0.47100463659073116 1.0 5838 +Phenotype HP:0004340 Abnormality of vitamin B metabolism 0.03202015544827963 -0.47103659353239674 1.0 5839 +Phenotype HP:0001771 Achilles tendon contracture 0.03193737327522583 -0.4720199203798646 1.0 5840 +Biological Process GO:0016125 sterol metabolic process 0.03187451583715428 -0.47276657155050544 1.0 5841 +Phenotype HP:0004757 Paroxysmal atrial fibrillation 0.031854220687415946 -0.473007647193665 1.0 5842 +Phenotype HP:0002371 Loss of speech 0.03184834749830989 -0.4730774117856682 1.0 5843 +Phenotype HP:0100777 Exostoses 0.03184358905516527 -0.4731339348838626 1.0 5844 +Biological Process GO:0032414 positive regulation of ion transmembrane transporter activity 0.03181299203184018 -0.47349738118369095 1.0 5845 +Phenotype HP:0001177 Preaxial hand polydactyly 0.03180502374283045 -0.4735920323896524 1.0 5846 +Phenotype HP:0007270 Atypical absence seizure 0.03180364680839287 -0.47360838828549 1.0 5847 +Disease MONDO:0015548 Huntington disease-like syndrome 0.03179768460821597 -0.4736792101942132 1.0 5848 +Phenotype HP:0001195 Single umbilical artery 0.031780879825983765 -0.4738788255573427 1.0 5849 +Phenotype HP:0011403 Abnormal umbilical cord blood vessel morphology 0.031780879825983765 -0.4738788255573427 1.0 5849 +Phenotype HP:0002224 Woolly hair 0.031765741058057184 -0.4740586511935955 1.0 5851 +Biological Process GO:0086005 ventricular cardiac muscle cell action potential 0.03171130463485361 -0.47470527346070385 1.0 5852 +Phenotype HP:0025074 Abnormal QRS complex 0.0316341474109092 -0.4756217844313851 1.0 5853 +Phenotype HP:0030470 Abnormal dark-adapted bright flash electroretinogram 0.0316014914331878 -0.4760096879912843 1.0 5854 +Phenotype HP:0030469 Abnormal dark-adapted electroretinogram 0.0316014914331878 -0.4760096879912843 1.0 5854 +Phenotype HP:0030478 Abnormal amplitude of dark-adapted bright flash electroretinogram 0.0316014914331878 -0.4760096879912843 1.0 5854 +Biological Process GO:1900016 negative regulation of cytokine production involved in inflammatory response 0.03158104839391773 -0.4762525203381114 1.0 5857 +Phenotype HP:0040154 Acne inversa 0.03156461547553724 -0.476447718521847 1.0 5858 +Phenotype HP:0000045 Abnormal scrotum morphology 0.03155851092950834 -0.476520231283718 1.0 5859 +Biological Process GO:0003197 endocardial cushion development 0.031449875562985063 -0.4778106549165627 1.0 5860 +Phenotype HP:0001169 Broad palm 0.03139805752015823 -0.4784261747901683 1.0 5861 +Disease MONDO:0021106 laminopathy 0.031377190338526706 -0.47867404530591245 1.0 5862 +Phenotype HP:0008955 Progressive distal muscular atrophy 0.03136935381417294 -0.47876713134731036 1.0 5863 +Biological Process GO:0045981 positive regulation of nucleotide metabolic process 0.03136878378133012 -0.47877390247420404 1.0 5864 +Biological Process GO:1900544 positive regulation of purine nucleotide metabolic process 0.03136878378133012 -0.47877390247420404 1.0 5864 +Phenotype HP:0001949 Hypokalemic alkalosis 0.031363440121617736 -0.4788373770589496 1.0 5866 +Biological Process GO:0035335 peptidyl-tyrosine dephosphorylation 0.031333001055065424 -0.4791989470715331 1.0 5867 +Phenotype HP:0003164 Hypothalamic gonadotropin-releasing hormone deficiency 0.03123658138182106 -0.48034426676812586 1.0 5868 +Phenotype HP:0500012 Abnormal gonadotropin-releasing hormone concentration 0.03123658138182106 -0.48034426676812586 1.0 5868 +Phenotype HP:0001480 Freckling 0.03120965191045766 -0.480664148104927 1.0 5870 +Phenotype HP:4000007 Bronchoconstriction 0.031167529497348134 -0.4811644985809143 1.0 5871 +Phenotype HP:0000543 Optic disc pallor 0.03115311267702714 -0.4813357485729572 1.0 5872 +Phenotype HP:0009129 Upper limb amyotrophy 0.0311348666309601 -0.48155248396774075 1.0 5873 +Disease MONDO:0001384 myopia 0.031116600012023765 -0.4817694637370552 1.0 5874 +Disease MONDO:0004892 refractive error 0.031116600012023765 -0.4817694637370552 1.0 5874 +Phenotype HP:0000090 Nephronophthisis 0.03107859346267039 -0.48222092398483707 1.0 5876 +Phenotype HP:0002812 Coxa vara 0.031078469890927996 -0.4822223918299951 1.0 5877 +Disease MONDO:0005336 myopathy 0.031049575084080017 -0.4825656183759756 1.0 5878 +Phenotype HP:0011705 First degree atrioventricular block 0.03102521461697516 -0.48285498383278114 1.0 5879 +Phenotype HP:0002378 Hand tremor 0.030984183730908832 -0.4833423686205445 1.0 5880 +Disease MONDO:0100500 Mendelian neurodevelopmental disorder 0.030949511235717098 -0.4837542253541021 1.0 5881 +Phenotype HP:0012473 Tongue atrophy 0.030935828546136857 -0.4839167549847398 1.0 5882 +Phenotype HP:0002561 Absent nipple 0.03091786061842272 -0.48413018675468367 1.0 5883 +Biological Process GO:0006417 regulation of translation 0.03087213231278052 -0.484673369773061 1.0 5884 +Phenotype HP:0002936 Distal sensory impairment 0.03081486954865076 -0.4853535646900563 1.0 5885 +Phenotype HP:0000172 Abnormal uvula morphology 0.030807914104059586 -0.48543618483821466 1.0 5886 +Phenotype HP:0000385 Small earlobe 0.030797518462184925 -0.4855596693201377 1.0 5887 +Biological Process GO:0099601 regulation of neurotransmitter receptor activity 0.030706579312293925 -0.4866398886992016 1.0 5888 +Phenotype HP:0002127 Abnormal upper motor neuron morphology 0.03069487275075733 -0.48677894492140283 1.0 5889 +Phenotype HP:0002591 Polyphagia 0.030692046929262196 -0.48681251140123555 1.0 5890 +Phenotype HP:0002322 Resting tremor 0.03065752885492179 -0.48722253384894004 1.0 5891 +Disease MONDO:0000942 corneal disorder 0.03063464568929941 -0.48749435120141416 1.0 5892 +Phenotype HP:0011109 Chronic sinusitis 0.030602325359673332 -0.48787826777025906 1.0 5893 +Disease MONDO:0020120 skeletal muscle disorder 0.03057163787109729 -0.4882427886602649 1.0 5894 +Biological Process GO:0007099 centriole replication 0.03052416365177757 -0.48880671048905433 1.0 5895 +Phenotype HP:0030639 Congenital stationary night blindness with abnormal fundus 0.03051874955057976 -0.48887102181196745 1.0 5896 +Phenotype HP:0011330 Metopic synostosis 0.030514747949564658 -0.48891855477185303 1.0 5897 +Phenotype HP:0200134 Epileptic encephalopathy 0.030505430957340485 -0.4890292265294756 1.0 5898 +Phenotype HP:0008935 Generalized neonatal hypotonia 0.030504655361883737 -0.48903843942891106 1.0 5899 +Phenotype HP:0000341 Narrow forehead 0.030501730413158845 -0.4890731833901113 1.0 5900 +Phenotype HP:0012736 Profound global developmental delay 0.030496156511899963 -0.4891393928957428 1.0 5901 +Biological Process GO:0032924 activin receptor signaling pathway 0.03047543518613749 -0.48938553086465225 1.0 5902 +Phenotype HP:0004383 Hypoplastic left heart 0.030465487618607123 -0.4895036929019456 1.0 5903 +Biological Process GO:0010457 centriole-centriole cohesion 0.030404477511786543 -0.49022840057499223 1.0 5904 +Phenotype HP:0031179 Nuchal rigidity 0.030385582811038314 -0.4904528410050415 1.0 5905 +Biological Process GO:0010569 regulation of double-strand break repair via homologous recombination 0.030352984626460966 -0.49084005806991354 1.0 5906 +Phenotype HP:0003693 Distal amyotrophy 0.030348087694825554 -0.4908982262016463 1.0 5907 +Phenotype HP:0010514 Hyperpituitarism 0.030260678847826905 -0.49193651092877144 1.0 5908 +Biological Process GO:0032692 negative regulation of interleukin-1 production 0.03025044713929248 -0.4920580481308793 1.0 5909 +Biological Process GO:2000779 regulation of double-strand break repair 0.030246837895240852 -0.49210092048423876 1.0 5910 +Phenotype HP:0000201 Pierre-Robin sequence 0.030201251539061058 -0.49264241735797626 1.0 5911 +Biological Process GO:0060537 muscle tissue development 0.030168181773127856 -0.49303523609517547 1.0 5912 +Phenotype HP:0025092 Epidermal acanthosis 0.030154624609616487 -0.4931962746662163 1.0 5913 +Phenotype HP:0007737 Bone spicule pigmentation of the retina 0.030094332818739522 -0.4939124498336973 1.0 5914 +Disease MONDO:0002320 congenital nervous system disorder 0.03004921192877963 -0.49444841767366177 1.0 5915 +Phenotype HP:0100753 Schizophrenia 0.030014466161180753 -0.4948611447724497 1.0 5916 +Phenotype HP:0009130 Hand muscle atrophy 0.029993962661116202 -0.49510469530195117 1.0 5917 +Phenotype HP:0003205 Curvilinear intracellular accumulation of autofluorescent lipopigment storage material 0.02997117117140935 -0.4953754236833863 1.0 5918 +Phenotype HP:0009072 Decreased Achilles reflex 0.029931957458986247 -0.49584122320026375 1.0 5919 +Phenotype HP:0010803 Everted upper lip vermilion 0.029826358761074756 -0.4970955758088446 1.0 5920 +Phenotype HP:0410252 Chronic neutropenia 0.02982389474787095 -0.4971248445541123 1.0 5921 +Phenotype HP:0011229 Broad eyebrow 0.029819900409523092 -0.49717229124450985 1.0 5922 +Biological Process GO:0042744 hydrogen peroxide catabolic process 0.029815237628880165 -0.49722767801705886 1.0 5923 +Phenotype HP:0011470 Nasogastric tube feeding in infancy 0.02977409498861472 -0.49771639027546305 1.0 5924 +Biological Process GO:0007276 gamete generation 0.029724050103130173 -0.49831084772517786 1.0 5925 +Phenotype HP:0000548 Cone/cone-rod dystrophy 0.029668527554462365 -0.4989703715179324 1.0 5926 +Biological Process GO:0070633 transepithelial transport 0.02960712953925526 -0.499699686955148 1.0 5927 +Biological Process GO:0019080 viral gene expression 0.029585099026331774 -0.49996137608484836 1.0 5928 +Disease MONDO:0700223 hereditary skeletal muscle disorder 0.029577970650653596 -0.5000460503924271 1.0 5929 +Phenotype HP:0001107 Ocular albinism 0.029563766965451155 -0.5002147686620413 1.0 5930 +Phenotype HP:0002990 Fibular aplasia 0.0295170838016503 -0.5007692939492706 1.0 5931 +Phenotype HP:0032973 Abnormal bronchoalveolar lavage fluid morphology 0.029509541934510164 -0.5008588799092105 1.0 5932 +Phenotype HP:0000041 Chordee 0.029487180940753754 -0.5011244946507134 1.0 5933 +Phenotype HP:0002981 Abnormality of the calf 0.02946529714098156 -0.5013844410503643 1.0 5934 +Biological Process GO:0031280 negative regulation of cyclase activity 0.029454460444449437 -0.5015131645936685 1.0 5935 +Phenotype HP:0000594 Shallow anterior chamber 0.02944205847322301 -0.5016604812298305 1.0 5936 +Phenotype HP:0032391 Subcortical heterotopia 0.02941282906778664 -0.5020076823003126 1.0 5937 +Phenotype HP:0001994 Renal Fanconi syndrome 0.029410035242194654 -0.5020408687172716 1.0 5938 +Biological Process GO:0090151 establishment of protein localization to mitochondrial membrane 0.02938239768347828 -0.5023691610594722 1.0 5939 +Phenotype HP:0025722 Cerebral infarct 0.02935674271388422 -0.5026739032454065 1.0 5940 +Phenotype HP:0010554 Cutaneous finger syndactyly 0.029343481207778632 -0.5028314298542214 1.0 5941 +Phenotype HP:0000590 Progressive external ophthalmoplegia 0.02930748420795215 -0.5032590196969605 1.0 5942 +Phenotype HP:0011027 Abnormal fallopian tube morphology 0.029275181206263268 -0.5036427304361536 1.0 5943 +Phenotype HP:0012180 Cystic medial necrosis 0.02926133891520133 -0.5038071558906874 1.0 5944 +Phenotype HP:0032079 Medial degeneration 0.02926133891520133 -0.5038071558906874 1.0 5944 +Phenotype HP:0200146 Mucoid extracellular matrix accumulation 0.02926133891520133 -0.5038071558906874 1.0 5944 +Phenotype HP:0004959 Descending thoracic aorta aneurysm 0.02926133891520133 -0.5038071558906874 1.0 5944 +Phenotype HP:0030199 Fatigable weakness of neck muscles 0.029242184754824985 -0.5040346783081833 1.0 5948 +Phenotype HP:0001171 Split hand 0.02924068843631411 -0.5040524523060119 1.0 5949 +Phenotype HP:0000890 Long clavicles 0.02921800007406461 -0.5043219556894338 1.0 5950 +Biological Process GO:1900744 regulation of p38MAPK cascade 0.029193809345380628 -0.5046093049108575 1.0 5951 +Phenotype HP:0001663 Ventricular fibrillation 0.02919057609650122 -0.5046477110109922 1.0 5952 +Phenotype HP:0008445 Cervical spinal canal stenosis 0.029181061122056873 -0.5047607344975588 1.0 5953 +Phenotype HP:0003438 Absent Achilles reflex 0.029173951269129694 -0.5048451887829071 1.0 5954 +Phenotype HP:0012681 Abnormal pineal morphology 0.0291546688849037 -0.5050742343055499 1.0 5955 +Phenotype HP:0100541 Femoral hernia 0.029141346358055542 -0.5052324857483743 1.0 5956 +Phenotype HP:0030786 Photopsia 0.029050061745922617 -0.5063168086956913 1.0 5957 +Biological Process GO:0039535 regulation of RIG-I signaling pathway 0.029045438030445125 -0.5063717314332367 1.0 5958 +Phenotype HP:0034677 Ankle contracture 0.029019896251726962 -0.506675129082986 1.0 5959 +Phenotype HP:0040134 Abnormal hepatic iron concentration 0.02898254470788042 -0.5071188088573114 1.0 5960 +Phenotype HP:0012465 Elevated hepatic iron concentration 0.02898254470788042 -0.5071188088573114 1.0 5960 +Biological Process GO:0071243 cellular response to arsenic-containing substance 0.028978327565411743 -0.5071689021232414 1.0 5962 +Biological Process GO:0006641 triglyceride metabolic process 0.028958788721911932 -0.5074009939936656 1.0 5963 +Phenotype HP:0000319 Smooth philtrum 0.028913223338186134 -0.5079422417464111 1.0 5964 +Biological Process GO:0046685 response to arsenic-containing substance 0.02884853979022084 -0.5087105843370606 1.0 5965 +Phenotype HP:0031245 Productive cough 0.028845437878811442 -0.5087474303469539 1.0 5966 +Biological Process GO:0033700 phospholipid efflux 0.028807216230521626 -0.5092014456443469 1.0 5967 +Phenotype HP:0031507 Decreased circulating T4 concentration 0.028742478205287192 -0.5099704353424513 1.0 5968 +Phenotype HP:0032104 Saccadic oscillation 0.02872393191046252 -0.5101907372377676 1.0 5969 +Phenotype HP:0005556 Abnormality of the metopic suture 0.02868756358044733 -0.5106227379207924 1.0 5970 +Disease MONDO:0006541 epidermolysis bullosa 0.02866797846184066 -0.5108553794694054 1.0 5971 +Disease MONDO:0019276 inherited epidermolysis bullosa 0.02866797846184066 -0.5108553794694054 1.0 5971 +Phenotype HP:0100267 Lip pit 0.028649256594790562 -0.5110777668968666 1.0 5973 +Phenotype HP:0010955 Dilatation of the bladder 0.028639261989869658 -0.5111964876671244 1.0 5974 +Phenotype HP:0003443 Decreased size of nerve terminals 0.028542287265953648 -0.5123484005251069 1.0 5975 +Biological Process GO:0006282 regulation of DNA repair 0.028526993212275586 -0.5125300707209168 1.0 5976 +Phenotype HP:0006380 Knee flexion contracture 0.028455120143395796 -0.5133838139319519 1.0 5977 +Phenotype HP:0031412 Abnormal telomere morphology 0.028444005104652614 -0.5135158437591916 1.0 5978 +Phenotype HP:0031411 Abnormal chromosome morphology 0.028444005104652614 -0.5135158437591916 1.0 5978 +Phenotype HP:0031413 Short telomere length 0.028444005104652614 -0.5135158437591916 1.0 5978 +Phenotype HP:0000647 Sclerocornea 0.028268612750152355 -0.5155992393099297 1.0 5981 +Phenotype HP:0010013 Abnormal 5th metacarpal morphology 0.02824727011659456 -0.5158527574745159 1.0 5982 +Phenotype HP:0000112 Nephropathy 0.02824637445787659 -0.5158633965436663 1.0 5983 +Phenotype HP:0001530 Mild postnatal growth retardation 0.028234746061370553 -0.5160015242836805 1.0 5984 +Biological Process GO:0030071 regulation of mitotic metaphase/anaphase transition 0.028193974265379174 -0.5164858314737293 1.0 5985 +Disease MONDO:0018995 Charcot-Marie-Tooth disease type 4 0.028076691118261943 -0.5178789776435085 1.0 5986 +Phenotype HP:0002474 Expressive language delay 0.02805493515036095 -0.5181374055941229 1.0 5987 +Biological Process GO:0007566 embryo implantation 0.02794603665615214 -0.5194309547853813 1.0 5988 +Phenotype HP:0002098 Respiratory distress 0.027936485104240072 -0.5195444127568701 1.0 5989 +Phenotype HP:0010804 Tented upper lip vermilion 0.027919812271847477 -0.5197424607557347 1.0 5990 +Phenotype HP:0002077 Migraine with aura 0.02790375429032299 -0.5199332052574394 1.0 5991 +Phenotype HP:0003026 Short long bone 0.027846843506221908 -0.5206092191847457 1.0 5992 +Phenotype HP:0025613 Focal emotional seizure 0.02784221051840252 -0.5206642520636704 1.0 5993 +Biological Process GO:2000242 negative regulation of reproductive process 0.027819250636342163 -0.5209369806912455 1.0 5994 +Phenotype HP:0031834 Aortopulmonary collateral arteries 0.02780337636004937 -0.5211255430530076 1.0 5995 +Biological Process GO:0030510 regulation of BMP signaling pathway 0.02777486843577759 -0.5214641740198923 1.0 5996 +Phenotype HP:0001845 Overlapping toe 0.02767489669757428 -0.5226516868688177 1.0 5997 +Phenotype HP:0011228 Horizontal eyebrow 0.027674650861541084 -0.5226546070285888 1.0 5998 +Phenotype HP:0000593 Abnormal anterior chamber morphology 0.027665565242067758 -0.5227625304283309 1.0 5999 +Phenotype HP:0002380 Fasciculations 0.02766502025042694 -0.5227690041036681 1.0 6000 +Biological Process GO:0030199 collagen fibril organization 0.027607422003805615 -0.523453184044596 1.0 6001 +Phenotype HP:0025405 Visual fixation instability 0.02758400687566176 -0.5237313203062014 1.0 6002 +Biological Process GO:0051053 negative regulation of DNA metabolic process 0.02750709842476251 -0.5246448762298572 1.0 6003 +Phenotype HP:0100689 Decreased corneal thickness 0.02748463045602334 -0.5249117616721485 1.0 6004 +Phenotype HP:0033130 Abnormal renal echogenicity 0.027445848806430195 -0.5253724289369381 1.0 6005 +Phenotype HP:0004885 Episodic respiratory distress 0.027425498071469767 -0.5256141648483558 1.0 6006 +Phenotype HP:0004661 Frontalis muscle weakness 0.027425498071469767 -0.5256141648483558 1.0 6006 +Phenotype HP:0040172 Abnormality of occipitofrontalis muscle 0.027425498071469767 -0.5256141648483558 1.0 6006 +Phenotype HP:3000004 Abnormal frontalis muscle physiology 0.027425498071469767 -0.5256141648483558 1.0 6006 +Phenotype HP:0010831 Impaired proprioception 0.027407244269115227 -0.5258309923760884 1.0 6010 +Biological Process GO:0043488 regulation of mRNA stability 0.027399738907626703 -0.5259201447041727 1.0 6011 +Phenotype HP:0040078 Axonal degeneration 0.027357452621348588 -0.5264224417452271 1.0 6012 +Phenotype HP:0002213 Fine hair 0.02735538519831837 -0.5264469995998435 1.0 6013 +Phenotype HP:0031960 Arm dystonia 0.02734325555735484 -0.5265910813649095 1.0 6014 +Phenotype HP:0001131 Corneal dystrophy 0.02732915173723416 -0.5267586133885919 1.0 6015 +Biological Process GO:0051149 positive regulation of muscle cell differentiation 0.027280514460056082 -0.5273363505833604 1.0 6016 +Phenotype HP:0008081 Pes valgus 0.027249999478873077 -0.5276988223467886 1.0 6017 +Phenotype HP:0001711 Abnormal left ventricle morphology 0.027234354949706385 -0.5278846556606303 1.0 6018 +Phenotype HP:0002344 Progressive neurologic deterioration 0.027226479972941253 -0.5279781984584414 1.0 6019 +Phenotype HP:0012203 Onychomycosis 0.027196431505306595 -0.5283351287474207 1.0 6020 +Phenotype HP:0005943 Respiratory arrest 0.027179914912995762 -0.5285313208507298 1.0 6021 +Phenotype HP:0002282 Gray matter heterotopia 0.027115591876179734 -0.5292953811148977 1.0 6022 +Biological Process GO:0031664 regulation of lipopolysaccharide-mediated signaling pathway 0.027114769734063682 -0.5293051469181537 1.0 6023 +Biological Process GO:0002790 peptide secretion 0.027110421872255874 -0.5293567929318663 1.0 6024 +Biological Process GO:0030072 peptide hormone secretion 0.027110421872255874 -0.5293567929318663 1.0 6024 +Phenotype HP:0008197 Absence of pubertal development 0.027105237433650564 -0.5294183762109902 1.0 6026 +Phenotype HP:0012703 Abnormal subarachnoid space morphology 0.027061819140738796 -0.5299341197764994 1.0 6027 +Phenotype HP:0500087 Peripapillary atrophy 0.027050691012842076 -0.5300663050830604 1.0 6028 +Phenotype HP:0007366 Atrophy/Degeneration affecting the brainstem 0.026919898528431796 -0.5316199217208367 1.0 6029 +Phenotype HP:0200123 Chronic hepatitis 0.026880181774255663 -0.5320916966119149 1.0 6030 +Phenotype HP:0001598 Concave nail 0.026871395615353677 -0.5321960628735838 1.0 6031 +Biological Process GO:0098742 cell-cell adhesion via plasma-membrane adhesion molecules 0.026862460444196823 -0.5323021991751706 1.0 6032 +Biological Process GO:0032204 regulation of telomere maintenance 0.026827360918047938 -0.5327191283897875 1.0 6033 +Phenotype HP:0002980 Femoral bowing 0.026818124258511822 -0.5328288459167349 1.0 6034 +Phenotype HP:0001319 Neonatal hypotonia 0.026815492287676768 -0.5328601097443004 1.0 6035 +Biological Process GO:0043487 regulation of RNA stability 0.026778251272117415 -0.5333024766099622 1.0 6036 +Biological Process GO:0050995 negative regulation of lipid catabolic process 0.026746134698358737 -0.5336839728676779 1.0 6037 +Disease MONDO:0019293 skin vascular disease 0.02673770246903273 -0.5337841349819882 1.0 6038 +Biological Process GO:0010804 negative regulation of tumor necrosis factor-mediated signaling pathway 0.026725192611735893 -0.53393273314128 1.0 6039 +Phenotype HP:0001141 Severely reduced visual acuity 0.026684049771705576 -0.5344214477725884 1.0 6040 +Biological Process GO:0015909 long-chain fatty acid transport 0.026625805473152853 -0.5351133018320561 1.0 6041 +Phenotype HP:0001284 Areflexia 0.026583089947599614 -0.5356206975856431 1.0 6042 +Phenotype HP:0012622 Chronic kidney disease 0.026571051600408735 -0.5357636949189486 1.0 6043 +Phenotype HP:0031784 Abnormal ascending aorta morphology 0.026522587816483756 -0.536339371276615 1.0 6044 +Phenotype HP:0000851 Congenital hypothyroidism 0.026513058104198794 -0.5364525698264085 1.0 6045 +Phenotype HP:0010012 Abnormal 4th metacarpal morphology 0.026510487303004537 -0.5364831070512791 1.0 6046 +Biological Process GO:1903046 meiotic cell cycle process 0.02644707858598272 -0.5372363065809717 1.0 6047 +Phenotype HP:0000329 Facial hemangioma 0.026445797333473298 -0.5372515259204069 1.0 6048 +Phenotype HP:0002684 Thickened calvaria 0.02643629910729106 -0.5373643504629838 1.0 6049 +Phenotype HP:0001997 Gout 0.026419211473030946 -0.5375673256798432 1.0 6050 +Phenotype HP:0000835 Adrenal hypoplasia 0.026385329223184595 -0.5379697954954746 1.0 6051 +Phenotype HP:0007401 Macular atrophy 0.026347988874924955 -0.5384133422831827 1.0 6052 +Phenotype HP:0100729 Large face 0.026342677331874675 -0.5384764353706212 1.0 6053 +Phenotype HP:0100021 Cerebral palsy 0.026327824724144633 -0.5386528618571108 1.0 6054 +Phenotype HP:0009123 Mixed hypo- and hyperpigmentation of the skin 0.02626220150784464 -0.5394323662845077 1.0 6055 +Biological Process GO:0031053 primary miRNA processing 0.026215728608038447 -0.5399843939539122 1.0 6056 +Biological Process GO:0051937 catecholamine transport 0.026202843800537834 -0.5401374459537862 1.0 6057 +Biological Process GO:0015872 dopamine transport 0.026202843800537834 -0.5401374459537862 1.0 6057 +Phenotype HP:0009063 Progressive distal muscle weakness 0.026188230912287613 -0.5403110249358958 1.0 6059 +Biological Process GO:1902099 regulation of metaphase/anaphase transition of cell cycle 0.02615872407405484 -0.5406615214878445 1.0 6060 +Phenotype HP:0002311 Incoordination 0.026132311257014984 -0.5409752657537225 1.0 6061 +Disease MONDO:0019245 lysosomal lipid storage disorder 0.026115518760502776 -0.5411747351811043 1.0 6062 +Phenotype HP:0002518 Abnormal periventricular white matter morphology 0.026099315583769767 -0.5413672043819971 1.0 6063 +Phenotype HP:0002763 Abnormal cartilage morphology 0.02609700035178031 -0.5413947058317582 1.0 6064 +Phenotype HP:0002464 Spastic dysarthria 0.0260827854510588 -0.5415635573247538 1.0 6065 +Phenotype HP:0010306 Short thorax 0.026052074929443392 -0.5419283518123852 1.0 6066 +Phenotype HP:0007410 Palmoplantar hyperhidrosis 0.02604510940961935 -0.5420110916390517 1.0 6067 +Phenotype HP:0002942 Thoracic kyphosis 0.026018136965785144 -0.5423314834237268 1.0 6068 +Phenotype HP:0012244 Abnormal sex determination 0.025985873055233144 -0.5427147298194148 1.0 6069 +Phenotype HP:0004871 Perineal fistula 0.025980480102227532 -0.5427787899338323 1.0 6070 +Phenotype HP:0100295 Muscle fiber atrophy 0.025895317708053422 -0.5437903902035138 1.0 6071 +Phenotype HP:0009536 Short 2nd finger 0.02589103076735655 -0.5438413125666898 1.0 6072 +Phenotype HP:0031705 Compensatory head posture 0.025879486648285766 -0.5439784392184062 1.0 6073 +Disease MONDO:0003916 overnutrition 0.025870559064207765 -0.5440844853969864 1.0 6074 +Phenotype HP:0001166 Arachnodactyly 0.025779545382169644 -0.5451655901050838 1.0 6075 +Biological Process GO:0090026 positive regulation of monocyte chemotaxis 0.025757364670234928 -0.5454290633715706 1.0 6076 +Phenotype HP:0000654 Decreased light- and dark-adapted electroretinogram amplitude 0.02573072712807334 -0.5457454770315626 1.0 6077 +Biological Process GO:0019377 glycolipid catabolic process 0.02573058332627176 -0.5457471851791865 1.0 6078 +Biological Process GO:0060260 regulation of transcription initiation by RNA polymerase II 0.02573025104431048 -0.5457511321856664 1.0 6079 +Biological Process GO:0045606 positive regulation of epidermal cell differentiation 0.02566543887259709 -0.5465210026316507 1.0 6080 +Biological Process GO:0045684 positive regulation of epidermis development 0.02566543887259709 -0.5465210026316507 1.0 6080 +Phenotype HP:0001045 Vitiligo 0.025663035176895388 -0.5465495548963405 1.0 6082 +Biological Process GO:0009582 detection of abiotic stimulus 0.025661107867979926 -0.5465724484074677 1.0 6083 +Phenotype HP:0001217 Clubbing 0.025565039522168487 -0.5477135948662206 1.0 6084 +Phenotype HP:0006712 Aplasia/Hypoplasia of the ribs 0.02550758005945275 -0.5483961262645297 1.0 6085 +Phenotype HP:0025423 Abnormal larynx morphology 0.025481358647335806 -0.5487075969297942 1.0 6086 +Phenotype HP:0010677 Enuresis nocturna 0.025467235866851068 -0.5488753541738873 1.0 6087 +Phenotype HP:0012400 Abnormal circulating aldolase concentration 0.025465037092452292 -0.5489014722838388 1.0 6088 +Phenotype HP:0006695 Atrioventricular canal defect 0.02546329385637569 -0.548922179288407 1.0 6089 +Disease MONDO:0019189 inborn disorder of amino acid and other organic acid metabolism 0.02546220172300484 -0.5489351521788852 1.0 6090 +Phenotype HP:0005484 Secondary microcephaly 0.02541598728482597 -0.5494841097155809 1.0 6091 +Phenotype HP:0012751 Abnormal basal ganglia MRI signal intensity 0.025413780112004125 -0.5495103275860795 1.0 6092 +Biological Process GO:0009566 fertilization 0.025411557117519967 -0.5495367333939656 1.0 6093 +Biological Process GO:0044058 regulation of digestive system process 0.025408732242475196 -0.5495702886314013 1.0 6094 +Phenotype HP:0002395 Lower limb hyperreflexia 0.025406069760256722 -0.5496019148879944 1.0 6095 +Phenotype HP:0012345 Abnormal glycosylation 0.025395257165000462 -0.5497303521446412 1.0 6096 +Phenotype HP:0000298 Mask-like facies 0.025372064543943473 -0.5500058453590275 1.0 6097 +Phenotype HP:0006557 Polycystic liver disease 0.02531420696269482 -0.5506931058025821 1.0 6098 +Phenotype HP:0010295 Aplasia/Hypoplasia of the tongue 0.025305786595226087 -0.550793127015992 1.0 6099 +Phenotype HP:0000308 Microretrognathia 0.025304334071745815 -0.5508103807951819 1.0 6100 +Phenotype HP:0004492 Widely patent fontanelles and sutures 0.025283943064010717 -0.551052595086172 1.0 6101 +Phenotype HP:0011197 EEG with focal spike waves 0.025233145997456963 -0.5516559873078579 1.0 6102 +Phenotype HP:0000763 Sensory neuropathy 0.025210131386197987 -0.5519293660354287 1.0 6103 +Phenotype HP:0002651 Spondyloepimetaphyseal dysplasia 0.025190469711991237 -0.552162916948632 1.0 6104 +Biological Process GO:1901615 organic hydroxy compound metabolic process 0.02516449147806854 -0.552471499025227 1.0 6105 +Phenotype HP:0000943 Dysostosis multiplex 0.02511450923412273 -0.5530652123883283 1.0 6106 +Biological Process GO:0097194 execution phase of apoptosis 0.025066097352857475 -0.5536402722210005 1.0 6107 +Biological Process GO:0006366 transcription by RNA polymerase II 0.02504514593007401 -0.5538891433940518 1.0 6108 +Phenotype HP:0006089 Palmar hyperhidrosis 0.02503954701783806 -0.5539556499922133 1.0 6109 +Biological Process GO:0086064 cell communication by electrical coupling involved in cardiac conduction 0.02501280839805531 -0.554273264301269 1.0 6110 +Phenotype HP:0002415 Leukodystrophy 0.024988430744169676 -0.5545628339110019 1.0 6111 +Biological Process GO:0045948 positive regulation of translational initiation 0.02494999687883037 -0.5550193700255533 1.0 6112 +Phenotype HP:0002495 Impaired vibratory sensation 0.024948545307629244 -0.5550366124931091 1.0 6113 +Disease MONDO:0007263 cardiac rhythm disease 0.024912508943341072 -0.5554646699260382 1.0 6114 +Phenotype HP:0006466 Ankle flexion contracture 0.024877005109692263 -0.5558864017014558 1.0 6115 +Phenotype HP:0025065 Abnormal mean corpuscular volume 0.02482433910527082 -0.5565119940746206 1.0 6116 +Biological Process GO:0006475 internal protein amino acid acetylation 0.024806290958643507 -0.5567263787237665 1.0 6117 +Phenotype HP:0002286 Fair hair 0.024743231766267693 -0.5574754264299978 1.0 6118 +Phenotype HP:0001339 Lissencephaly 0.02473435253043299 -0.5575808983046681 1.0 6119 +Phenotype HP:0012512 Diffuse optic disc pallor 0.024654871893487362 -0.5585250079031404 1.0 6120 +Phenotype HP:0033259 Non-motor seizure 0.024632536994345977 -0.5587903126801356 1.0 6121 +Phenotype HP:0025336 Delayed ability to sit 0.024554543535706963 -0.5597167568525636 1.0 6122 +Phenotype HP:0004602 Cervical C2/C3 vertebral fusion 0.024525684716175333 -0.5600595559237265 1.0 6123 +Biological Process GO:0031016 pancreas development 0.02451840055847443 -0.560146080685813 1.0 6124 +Phenotype HP:0001338 Partial agenesis of the corpus callosum 0.024462733919027202 -0.5608073160588105 1.0 6125 +Phenotype HP:0000053 Macroorchidism 0.024430056928476662 -0.5611954692192974 1.0 6126 +Phenotype HP:0032179 Abnormal circulating globulin concentration 0.024424957274717496 -0.5612560453828503 1.0 6127 +Phenotype HP:0032671 Non-convulsive status epilepticus without coma 0.024414401933694374 -0.5613814268488029 1.0 6128 +Disease MONDO:0100547 cardiogenetic disease 0.024392262722699898 -0.5616444071469702 1.0 6129 +Phenotype HP:0012817 Noncompaction cardiomyopathy 0.0243857892597662 -0.5617213020829688 1.0 6130 +Phenotype HP:0002600 Hyporeflexia of lower limbs 0.02437766933837371 -0.5618177544519997 1.0 6131 +Phenotype HP:0032388 Periventricular nodular heterotopia 0.024297635703141363 -0.5627684328326369 1.0 6132 +Phenotype HP:0001852 Sandal gap 0.024274310449161507 -0.5630455015252828 1.0 6133 +Phenotype HP:0007110 Central hypoventilation 0.024248182302803345 -0.5633558643345782 1.0 6134 +Biological Process GO:0007601 visual perception 0.02423094856524788 -0.563560575037322 1.0 6135 +Phenotype HP:0032860 Generalized non-convulsive status epilepticus without coma 0.024214788058114167 -0.5637525373879956 1.0 6136 +Phenotype HP:0007291 Posterior fossa cyst 0.024195938070393663 -0.5639764466949906 1.0 6137 +Phenotype HP:0001103 Abnormal macular morphology 0.02417900101276582 -0.5641776332894974 1.0 6138 +Phenotype HP:0000039 Epispadias 0.024163669311339397 -0.5643597506835427 1.0 6139 +Phenotype HP:0012805 Iris transillumination defect 0.024079435385201187 -0.5653603221590644 1.0 6140 +Phenotype HP:0007843 Attenuation of retinal blood vessels 0.024061960537533733 -0.5655678968847926 1.0 6141 +Phenotype HP:0005532 Macrocytic dyserythropoietic anemia 0.02404363501532003 -0.5657855763358368 1.0 6142 +Phenotype HP:0011358 Generalized hypopigmentation of hair 0.024040210896110636 -0.5658262496864306 1.0 6143 +Phenotype HP:0011834 Moyamoya phenomenon 0.023973952165891932 -0.5666133030567359 1.0 6144 +Phenotype HP:0007941 Limited extraocular movements 0.0239235992701764 -0.5672114192015326 1.0 6145 +Biological Process GO:0001960 negative regulation of cytokine-mediated signaling pathway 0.02385552619853526 -0.5680200242002301 1.0 6146 +Biological Process GO:0048511 rhythmic process 0.02378645323314099 -0.5688405064224383 1.0 6147 +Phenotype HP:0000891 Cervical ribs 0.02377476707244197 -0.568979320313585 1.0 6148 +Biological Process GO:0090207 regulation of triglyceride metabolic process 0.023757496382304066 -0.5691844699570459 1.0 6149 +Phenotype HP:0004626 Lumbar scoliosis 0.0237320427554345 -0.5694868204963341 1.0 6150 +Phenotype HP:0003251 Male infertility 0.023728291942695545 -0.5695313744713022 1.0 6151 +Phenotype HP:0006304 Widely-spaced incisors 0.023705421927501358 -0.569803035616605 1.0 6152 +Biological Process GO:0033015 tetrapyrrole catabolic process 0.023696053539542072 -0.5699143178777251 1.0 6153 +Biological Process GO:0006787 porphyrin-containing compound catabolic process 0.023696053539542072 -0.5699143178777251 1.0 6153 +Disease MONDO:0001176 lens disorder 0.023684440321947053 -0.5700522653152639 1.0 6155 +Phenotype HP:0200149 CSF lymphocytic pleiocytosis 0.023605448394962925 -0.5709905697795141 1.0 6156 +Phenotype HP:0032367 Abnormal growth hormone level 0.023554240754847466 -0.5715988389933252 1.0 6157 +Phenotype HP:0007373 Motor neuron atrophy 0.023520900702604042 -0.5719948683225582 1.0 6158 +Disease MONDO:0003939 muscle tissue disorder 0.02349817843518509 -0.5722647744480459 1.0 6159 +Phenotype HP:0005328 Progeroid facial appearance 0.023482170670746427 -0.5724549224468215 1.0 6160 +Phenotype HP:0002753 Thin bony cortex 0.023451780169470915 -0.5728159155774657 1.0 6161 +Biological Process GO:0019933 cAMP-mediated signaling 0.023436272692311744 -0.5730001209210147 1.0 6162 +Phenotype HP:0002925 Elevated circulating thyroid-stimulating hormone concentration 0.023345228023854192 -0.574081593700848 1.0 6163 +Phenotype HP:0010311 Aplasia/Hypoplasia of the breasts 0.023240822247611814 -0.5753217762066049 1.0 6164 +Phenotype HP:0012368 Flat face 0.023206373776640365 -0.5757309718716961 1.0 6165 +Biological Process GO:0043268 positive regulation of potassium ion transport 0.023185442866657247 -0.5759795993837447 1.0 6166 +Phenotype HP:0011807 Type 1 muscle fiber atrophy 0.023178397130834028 -0.5760632920549993 1.0 6167 +Biological Process GO:0140467 integrated stress response signaling 0.0231700925294952 -0.5761619381421065 1.0 6168 +Phenotype HP:0000868 Decreased fertility in females 0.023167580142192 -0.5761917814984154 1.0 6169 +Phenotype HP:0033748 Hypoesthesia 0.023167258941615088 -0.576195596874831 1.0 6170 +Phenotype HP:0001790 Nonimmune hydrops fetalis 0.023124768842633925 -0.5767003149021361 1.0 6171 +Phenotype HP:0025424 Abnormal larynx physiology 0.023115251368073686 -0.5768133680862932 1.0 6172 +Phenotype HP:0002225 Sparse pubic hair 0.023022776402372602 -0.5779118306312842 1.0 6173 +Phenotype HP:0032243 Abnormal tissue metabolite concentration 0.023011561884600518 -0.5780450421187324 1.0 6174 +Biological Process GO:0061036 positive regulation of cartilage development 0.022996348028883618 -0.5782257596842185 1.0 6175 +Phenotype HP:0025709 Intermediate young adult onset 0.022928639025396547 -0.579030040104604 1.0 6176 +Phenotype HP:0100275 Diffuse cerebellar atrophy 0.022854288299653747 -0.5799132141269157 1.0 6177 +Biological Process GO:0006690 icosanoid metabolic process 0.022599564837136543 -0.5829389430989056 1.0 6178 +Biological Process GO:0035024 negative regulation of Rho protein signal transduction 0.022592551255497972 -0.5830222538271421 1.0 6179 +Biological Process GO:0030183 B cell differentiation 0.022533272019376493 -0.5837264013775786 1.0 6180 +Phenotype HP:0003777 Pili torti 0.022527827808617173 -0.5837910703564835 1.0 6181 +Phenotype HP:0006937 Impaired distal tactile sensation 0.02251608914174119 -0.583930507941495 1.0 6182 +Phenotype HP:0012763 Paroxysmal dyspnea 0.022507125516021298 -0.5840369822401982 1.0 6183 +Phenotype HP:0032409 Subcortical band heterotopia 0.022501526623131207 -0.5841034886085602 1.0 6184 +Biological Process GO:0086011 membrane repolarization during action potential 0.022479240790588273 -0.584368210548674 1.0 6185 +Phenotype HP:0001258 Spastic paraplegia 0.022451059358178593 -0.5847029632866885 1.0 6186 +Phenotype HP:0002345 Action tremor 0.022374710702057987 -0.5856098696961481 1.0 6187 +Biological Process GO:0016485 protein processing 0.0223489186156397 -0.5859162406222995 1.0 6188 +Phenotype HP:0011813 Increased cerebral lipofuscin 0.02234346711359969 -0.5859809962105768 1.0 6189 +Phenotype HP:0410291 Negativism 0.022287808469214965 -0.5866421366143398 1.0 6190 +Phenotype HP:0012548 Fatty replacement of skeletal muscle 0.022286810658711298 -0.586653989092002 1.0 6191 +Phenotype HP:0008057 Aplasia/Hypoplasia affecting the fundus 0.02224840954810503 -0.5871101361299299 1.0 6192 +Biological Process GO:0051983 regulation of chromosome segregation 0.022157281079050017 -0.5881926043339502 1.0 6193 +Biological Process GO:0097202 activation of cysteine-type endopeptidase activity 0.02215725917790834 -0.5881928644863454 1.0 6194 +Phenotype HP:0004749 Atrial flutter 0.02202623633274614 -0.5897492174609876 1.0 6195 +Phenotype HP:0034444 Abnormal gamma-glutamyltransferase level 0.02201273421636052 -0.58990960215554 1.0 6196 +Phenotype HP:0001907 Thromboembolism 0.021992618933141528 -0.5901485412568463 1.0 6197 +Biological Process GO:0007093 mitotic cell cycle checkpoint signaling 0.021972309577037774 -0.5903897856501124 1.0 6198 +Biological Process GO:0045910 negative regulation of DNA recombination 0.021940168681210848 -0.5907715708171646 1.0 6199 +Phenotype HP:0003724 Shoulder girdle muscle atrophy 0.021828502837463626 -0.5920979919299619 1.0 6200 +Phenotype HP:0010818 Generalized tonic seizure 0.0218273472463949 -0.5921117186017881 1.0 6201 +Biological Process GO:0045444 fat cell differentiation 0.021786369214815027 -0.5925984755582973 1.0 6202 +Biological Process GO:0006837 serotonin transport 0.021786064625689994 -0.5926020936158215 1.0 6203 +Phenotype HP:0008954 Intrinsic hand muscle atrophy 0.02175288176951984 -0.5929962556937677 1.0 6204 +Phenotype HP:0011476 Profound sensorineural hearing impairment 0.02172734766532647 -0.5932995621817849 1.0 6205 +Phenotype HP:0000054 Micropenis 0.02168988187580856 -0.5937445990216683 1.0 6206 +Phenotype HP:0002174 Postural tremor 0.021687583757440287 -0.5937718971875272 1.0 6207 +Phenotype HP:0030466 Abnormal full-field electroretinogram 0.021685559161512047 -0.593795946321031 1.0 6208 +Disease MONDO:0002412 disorder of glycogen metabolism 0.021673782380007833 -0.5939358366501039 1.0 6209 +Phenotype HP:0008724 Hypoplasia of the ovary 0.02167223577073807 -0.5939542080259859 1.0 6210 +Biological Process GO:0006027 glycosaminoglycan catabolic process 0.021629016449845717 -0.5944675881052351 1.0 6211 +Phenotype HP:0001601 Laryngomalacia 0.021589387876991606 -0.5949383155357528 1.0 6212 +Phenotype HP:0004887 Respiratory failure requiring assisted ventilation 0.021573631255814685 -0.5951254803329197 1.0 6213 +Phenotype HP:0000778 Hypoplasia of the thymus 0.021556931613302077 -0.5953238467954078 1.0 6214 +Phenotype HP:0004122 Midline defect of the nose 0.021551176209434697 -0.595392212277154 1.0 6215 +Phenotype HP:0003189 Long nose 0.021539002751266634 -0.5955368145242513 1.0 6216 +Biological Process GO:0007215 glutamate receptor signaling pathway 0.021489928726429408 -0.5961197396197836 1.0 6217 +Phenotype HP:0003316 Butterfly vertebrae 0.021487444795439514 -0.5961492449581858 1.0 6218 +Phenotype HP:0031956 Elevated circulating aspartate aminotransferase concentration 0.021486896302708836 -0.5961557602211685 1.0 6219 +Phenotype HP:0012410 Pure red cell aplasia 0.021455422911289213 -0.5965296164467554 1.0 6220 +Phenotype HP:0010293 Aplasia/Hypoplasia of the uvula 0.021401233693404964 -0.5971733022890471 1.0 6221 +Biological Process GO:0002691 regulation of cellular extravasation 0.02133862788003238 -0.5979169645393341 1.0 6222 +Phenotype HP:0012697 Small basal ganglia 0.021322844488309345 -0.5981044473300464 1.0 6223 +Disease MONDO:0007794 hypogonadotropic hypogonadism 7 with or without anosmia 0.021312139468775415 -0.5982316067500286 1.0 6224 +Biological Process GO:0099622 cardiac muscle cell membrane repolarization 0.02129727443989482 -0.5984081807809758 1.0 6225 +Biological Process GO:0086013 membrane repolarization during cardiac muscle cell action potential 0.02129727443989482 -0.5984081807809758 1.0 6225 +Biological Process GO:0001704 formation of primary germ layer 0.021259136018997538 -0.5988612074629881 1.0 6227 +Phenotype HP:0011565 Common atrium 0.021256093243759322 -0.5988973510247257 1.0 6228 +Disease MONDO:0043009 hereditary lethal multiple congenital anomalies/dysmorphic syndrome 0.021238236567435398 -0.5991094612966371 1.0 6229 +Phenotype HP:0003327 Axial muscle weakness 0.021186650039409338 -0.5997222311250242 1.0 6230 +Phenotype HP:0010299 Abnormal dentin morphology 0.021185496017601224 -0.5997359391564109 1.0 6231 +Phenotype HP:0000657 Oculomotor apraxia 0.02118330645135935 -0.5997619478874036 1.0 6232 +Biological Process GO:2000144 positive regulation of DNA-templated transcription initiation 0.021150709853541172 -0.6001491461039797 1.0 6233 +Phenotype HP:0000104 Renal agenesis 0.02113800200428595 -0.6003000961078907 1.0 6234 +Biological Process GO:0042157 lipoprotein metabolic process 0.02105659475636701 -0.6012670909269945 1.0 6235 +Phenotype HP:0100737 Abnormal hard palate morphology 0.020989680919290432 -0.602061925974653 1.0 6236 +Biological Process GO:1903578 regulation of ATP metabolic process 0.020943713303572142 -0.6026079516343141 1.0 6237 +Biological Process GO:1901988 negative regulation of cell cycle phase transition 0.020937417657420077 -0.6026827343762393 1.0 6238 +Biological Process GO:0045943 positive regulation of transcription by RNA polymerase I 0.020927894203668918 -0.6027958585841294 1.0 6239 +Phenotype HP:0030338 Abnormal circulating gonadotropin concentration 0.020915652264553164 -0.6029412742811753 1.0 6240 +Phenotype HP:0001525 Severe failure to thrive 0.020813990118088155 -0.6041488666202324 1.0 6241 +Phenotype HP:0007633 Bilateral microphthalmos 0.02080894878406203 -0.6042087500336784 1.0 6242 +Biological Process GO:0062111 zinc ion import into organelle 0.02077356840408473 -0.6046290153664413 1.0 6243 +Phenotype HP:0011560 Mitral atresia 0.020767341044239385 -0.604702986970458 1.0 6244 +Phenotype HP:0000640 Gaze-evoked nystagmus 0.020751646597453544 -0.604889413230018 1.0 6245 +Phenotype HP:0010665 Bilateral coxa valga 0.02074127862137054 -0.6050125690842344 1.0 6246 +Disease MONDO:0001815 extrapyramidal and movement disease 0.020728646188791666 -0.6051626232522442 1.0 6247 +Disease MONDO:0003441 dystonic disorder 0.020728646188791666 -0.6051626232522442 1.0 6247 +Disease MONDO:0044807 inherited dystonia 0.020728646188791666 -0.6051626232522442 1.0 6247 +Disease MONDO:0037871 amino acid metabolism disease 0.02071349659188182 -0.6053425775204184 1.0 6250 +Disease MONDO:0004736 inborn disorder of amino acid metabolism 0.02071349659188182 -0.6053425775204184 1.0 6250 +Disease MONDO:0002242 coagulation protein disease 0.020711059068076687 -0.6053715316117464 1.0 6252 +Phenotype HP:0008180 Mildly elevated creatine kinase 0.020672805670436056 -0.6058259240433447 1.0 6253 +Phenotype HP:0010557 Overlapping fingers 0.02066793766753572 -0.6058837485455154 1.0 6254 +Biological Process GO:0045471 response to ethanol 0.02063661471759648 -0.6062558177541497 1.0 6255 +Phenotype HP:0031505 Abnormal circulating T4 concentration 0.02058926423967522 -0.606818269722524 1.0 6256 +Biological Process GO:0060339 negative regulation of type I interferon-mediated signaling pathway 0.02051399039059354 -0.6077124090520891 1.0 6257 +Phenotype HP:0000879 Short sternum 0.020504712337962916 -0.6078226182663119 1.0 6258 +Biological Process GO:0030900 forebrain development 0.02047743442380978 -0.6081466385757602 1.0 6259 +Biological Process GO:0043489 RNA stabilization 0.02041505362431606 -0.6088876280019357 1.0 6260 +Phenotype HP:0000066 Labial hypoplasia 0.02039910737944839 -0.6090770452413755 1.0 6261 +Phenotype HP:0002694 Sclerosis of skull base 0.020283893419781318 -0.6104456125979015 1.0 6262 +Phenotype HP:0011748 Adrenocorticotropic hormone deficiency 0.020200286158800207 -0.611438740240402 1.0 6263 +Disease MONDO:0002561 lysosomal storage disease 0.020132692904525906 -0.6122416457354348 1.0 6264 +Disease MONDO:0019200 retinitis pigmentosa 0.020078265203259393 -0.6128881643991396 1.0 6265 +Biological Process GO:0010882 regulation of cardiac muscle contraction by calcium ion signaling 0.019999094352659452 -0.6138285942049773 1.0 6266 +Phenotype HP:0031886 Abnormal LDL cholesterol concentration 0.019923567491957006 -0.6147257389294268 1.0 6267 +Phenotype HP:0011226 Aplasia/Hypoplasia of the eyelid 0.019827591801079403 -0.6158657847878859 1.0 6268 +Biological Process GO:0046660 female sex differentiation 0.019810218523377054 -0.61607215301625 1.0 6269 +Disease MONDO:0800096 abnormal mineralization disorder 0.01980334126341865 -0.6161538444493767 1.0 6270 +Biological Process GO:0051284 positive regulation of sequestering of calcium ion 0.019760940695743523 -0.6166574989803557 1.0 6271 +Biological Process GO:0050953 sensory perception of light stimulus 0.019609515317673187 -0.6184562031475896 1.0 6272 +Phenotype HP:0000200 Short lingual frenulum 0.019606453706568217 -0.6184925704508986 1.0 6273 +Phenotype HP:0002872 Apneic episodes precipitated by illness, fatigue, stress 0.019572456214015044 -0.6188964091753593 1.0 6274 +Phenotype HP:0032153 Joint subluxation 0.019545078973047914 -0.6192216093369337 1.0 6275 +Phenotype HP:0000605 Supranuclear gaze palsy 0.01953348099151231 -0.6193593757931608 1.0 6276 +Phenotype HP:0002073 Progressive cerebellar ataxia 0.01952282974501296 -0.619485896470928 1.0 6277 +Biological Process GO:0045132 meiotic chromosome segregation 0.01952010998464937 -0.6195182031051408 1.0 6278 +Phenotype HP:0010322 Abnormal fifth toe morphology 0.01948202852089087 -0.6199705532226024 1.0 6279 +Phenotype HP:0002870 Obstructive sleep apnea 0.01938955793677566 -0.6210689637209887 1.0 6280 +Biological Process GO:0046618 xenobiotic export from cell 0.019323106379941613 -0.6218583075794605 1.0 6281 +Phenotype HP:0012815 Hypoplastic female external genitalia 0.01928204926719479 -0.6223460039004696 1.0 6282 +Phenotype HP:0100633 Esophagitis 0.019266046077380028 -0.6225360975596412 1.0 6283 +Phenotype HP:0001730 Progressive hearing impairment 0.019248216346181235 -0.6227478877642728 1.0 6284 +Biological Process GO:0040029 epigenetic regulation of gene expression 0.019237333681044855 -0.622877157344979 1.0 6285 +Disease MONDO:0015461 short rib-polydactyly syndrome 0.019236270492413277 -0.6228897864157895 1.0 6286 +Biological Process GO:2000629 negative regulation of miRNA metabolic process 0.01909512724834561 -0.624566354402719 1.0 6287 +Phenotype HP:0012680 Abnormality of the pineal gland 0.01896746021596829 -0.6260828454036449 1.0 6288 +Phenotype HP:0100783 Breast aplasia 0.0189608410875306 -0.6261614706252296 1.0 6289 +Phenotype HP:0000408 Progressive sensorineural hearing impairment 0.018925187034775193 -0.6265849867761363 1.0 6290 +Phenotype HP:0000016 Urinary retention 0.018868422873831392 -0.6272592590423857 1.0 6291 +Phenotype HP:0002450 Abnormal motor neuron morphology 0.018842858701316967 -0.6275629226965205 1.0 6292 +Phenotype HP:0004933 Ascending aortic dissection 0.01883684194758295 -0.6276343926188842 1.0 6293 +Biological Process GO:0034369 plasma lipoprotein particle remodeling 0.0187694350953711 -0.6284350839397093 1.0 6294 +Biological Process GO:0034368 protein-lipid complex remodeling 0.0187694350953711 -0.6284350839397093 1.0 6294 +Phenotype HP:0003826 Stillbirth 0.018660934727556033 -0.6297239039923475 1.0 6296 +Phenotype HP:0001902 Giant platelets 0.018632823991091674 -0.6300578169695961 1.0 6297 +Biological Process GO:0006278 RNA-templated DNA biosynthetic process 0.018629254413147778 -0.6301002181496675 1.0 6298 +Biological Process GO:0007004 telomere maintenance via telomerase 0.018629254413147778 -0.6301002181496675 1.0 6298 +Biological Process GO:0006959 humoral immune response 0.018614872388273862 -0.6302710548244946 1.0 6300 +Phenotype HP:0007064 Progressive language deterioration 0.018604766636441283 -0.6303910958517381 1.0 6301 +Phenotype HP:0000514 Slow saccadic eye movements 0.018581390034747125 -0.630668774477467 1.0 6302 +Phenotype HP:0001693 Cardiac shunt 0.018580964294164115 -0.6306738316308358 1.0 6303 +Phenotype HP:0001182 Tapered finger 0.018465375979780263 -0.6320468457544604 1.0 6304 +Biological Process GO:0034501 protein localization to kinetochore 0.01840999747476868 -0.6327046585267241 1.0 6305 +Biological Process GO:1903083 protein localization to condensed chromosome 0.01840999747476868 -0.6327046585267241 1.0 6305 +Biological Process GO:0006359 regulation of transcription by RNA polymerase III 0.018365899198638846 -0.6332284792630719 1.0 6307 +Biological Process GO:2000767 positive regulation of cytoplasmic translation 0.018363482500737494 -0.6332571859742026 1.0 6308 +Biological Process GO:0006884 cell volume homeostasis 0.018284926295840553 -0.6341903147199308 1.0 6309 +Biological Process GO:0051236 establishment of RNA localization 0.01827313627077054 -0.6343303623625088 1.0 6310 +Biological Process GO:0006595 polyamine metabolic process 0.018258949421366744 -0.6344988806483319 1.0 6311 +Phenotype HP:0045017 Congenital malformation of the left heart 0.01824167104411445 -0.63470412160307 1.0 6312 +Phenotype HP:0010829 Impaired temperature sensation 0.018229307220454793 -0.6348509851039109 1.0 6313 +Phenotype HP:0001285 Spastic tetraparesis 0.01813957794508525 -0.635916833005939 1.0 6314 +Phenotype HP:0001727 Thromboembolic stroke 0.018130017625299533 -0.6360303951264884 1.0 6315 +Phenotype HP:0009889 Localized hirsutism 0.018079937565121496 -0.6366252703982921 1.0 6316 +Phenotype HP:0002987 Elbow flexion contracture 0.018060900680778924 -0.636851399754114 1.0 6317 +Phenotype HP:0007759 Opacification of the corneal stroma 0.018048707802407526 -0.6369962326838162 1.0 6318 +Phenotype HP:0000433 Abnormal nasal mucosa morphology 0.018008816942855055 -0.6374700756830938 1.0 6319 +Biological Process GO:0044703 multi-organism reproductive process 0.01798500776227896 -0.6377528926908265 1.0 6320 +Phenotype HP:0000276 Long face 0.017943274433609324 -0.6382486214329118 1.0 6321 +Phenotype HP:0005445 Enlarged posterior fossa 0.01787266700091983 -0.6390873308027328 1.0 6322 +Biological Process GO:0070169 positive regulation of biomineral tissue development 0.017862503035013244 -0.6392080633250139 1.0 6323 +Phenotype HP:0002515 Waddling gait 0.017838886674942156 -0.6394885899171617 1.0 6324 +Phenotype HP:0003208 Fingerprint intracellular accumulation of autofluorescent lipopigment storage material 0.01779935153120682 -0.6399582075512409 1.0 6325 +Disease MONDO:0016295 neuronal ceroid lipofuscinosis 0.01779935153120682 -0.6399582075512409 1.0 6325 +Biological Process GO:1902307 positive regulation of sodium ion transmembrane transport 0.017683389592749843 -0.6413356597630241 1.0 6327 +Biological Process GO:0048255 mRNA stabilization 0.017669074048638933 -0.6415057067470676 1.0 6328 +Phenotype HP:0002215 Sparse axillary hair 0.017647535600984865 -0.6417615508865693 1.0 6329 +Biological Process GO:0043517 positive regulation of DNA damage response, signal transduction by p53 class mediator 0.01757990567036294 -0.6425648920410678 1.0 6330 +Phenotype HP:0006109 Absent phalangeal crease 0.017535199591227735 -0.64309593255664 1.0 6331 +Biological Process GO:0007338 single fertilization 0.017531429930942366 -0.643140710411916 1.0 6332 +Biological Process GO:0071318 cellular response to ATP 0.01750404153493801 -0.643466043078439 1.0 6333 +Phenotype HP:0000622 Blurred vision 0.017487113066021576 -0.6436671276520615 1.0 6334 +Phenotype HP:0000350 Small forehead 0.017427231257810538 -0.6443784328463642 1.0 6335 +Biological Process GO:0106058 positive regulation of calcineurin-mediated signaling 0.01741592720831897 -0.6445127078350498 1.0 6336 +Biological Process GO:0070886 positive regulation of calcineurin-NFAT signaling cascade 0.01741592720831897 -0.6445127078350498 1.0 6336 +Disease MONDO:0700092 neurodevelopmental disorder 0.017395322135735136 -0.644757464892255 1.0 6338 +Phenotype HP:0100807 Long fingers 0.01738941684593953 -0.6448276107918357 1.0 6339 +Phenotype HP:0032658 Status epilepticus with prominent motor symptoms 0.017369230399700286 -0.6450673952020507 1.0 6340 +Biological Process GO:0007565 female pregnancy 0.017290450603530627 -0.6460031798734839 1.0 6341 +Phenotype HP:0001602 Laryngeal stenosis 0.01726434434147739 -0.6463132827303791 1.0 6342 +Disease MONDO:0005039 reproductive system disorder 0.01725223545544241 -0.6464571179583259 1.0 6343 +Phenotype HP:0004751 Paroxysmal ventricular tachycardia 0.017171433654886825 -0.6474169209796651 1.0 6344 +Disease MONDO:0015653 monogenic epilepsy 0.017168746969805082 -0.6474488347296201 1.0 6345 +Phenotype HP:0410005 Cleft hard palate 0.017153607651687497 -0.6476286669013089 1.0 6346 +Biological Process GO:0010765 positive regulation of sodium ion transport 0.017142574720519277 -0.6477597214149048 1.0 6347 +Phenotype HP:0012881 Abnormal labia majora morphology 0.017113669807145904 -0.6481030680111013 1.0 6348 +Biological Process GO:0010881 regulation of cardiac muscle contraction by regulation of the release of sequestered calcium ion 0.017077939721753754 -0.6485274873145858 1.0 6349 +Phenotype HP:0012232 Shortened QT interval 0.017073750095842444 -0.6485772537254864 1.0 6350 +Biological Process GO:0051457 maintenance of protein location in nucleus 0.01706910259781047 -0.6486324589637618 1.0 6351 +Phenotype HP:0001678 Atrioventricular block 0.017044234912757972 -0.6489278494016355 1.0 6352 +Phenotype HP:0010945 Fetal pyelectasis 0.01703246828030236 -0.649067619175381 1.0 6353 +Phenotype HP:0000289 Broad philtrum 0.017027570300942707 -0.649125799752491 1.0 6354 +Phenotype HP:0007994 Peripheral visual field loss 0.01699810518952527 -0.6494758006530662 1.0 6355 +Biological Process GO:0003002 regionalization 0.016989749057172876 -0.6495750588505741 1.0 6356 +Phenotype HP:0003645 Prolonged partial thromboplastin time 0.01698785763026167 -0.6495975261378317 1.0 6357 +Phenotype HP:0001302 Pachygyria 0.01694506437876797 -0.6501058451578803 1.0 6358 +Phenotype HP:0011802 Hamartoma of tongue 0.01691781580326268 -0.6504295169686238 1.0 6359 +Phenotype HP:0003762 Uterus didelphys 0.01687052550960444 -0.6509912540390989 1.0 6360 +Phenotype HP:0012499 Descending aortic dissection 0.016849099055423422 -0.6512457678657477 1.0 6361 +Biological Process GO:0006338 chromatin remodeling 0.016828341397602586 -0.6514923374044879 1.0 6362 +Biological Process GO:0048593 camera-type eye morphogenesis 0.016825881379523566 -0.6515215586937235 1.0 6363 +Biological Process GO:0045070 positive regulation of viral genome replication 0.01680513964692143 -0.6517679390649832 1.0 6364 +Phenotype HP:0003797 Limb-girdle muscle atrophy 0.01678155520512259 -0.6520480865163949 1.0 6365 +Phenotype HP:0006808 Cerebral hypomyelination 0.01677177473780256 -0.6521642636562524 1.0 6366 +Phenotype HP:0002280 Enlarged cisterna magna 0.016764857484977247 -0.6522464301440712 1.0 6367 +Phenotype HP:0032341 Reduced forced vital capacity 0.016750801239701074 -0.6524133970506499 1.0 6368 +Biological Process GO:2000765 regulation of cytoplasmic translation 0.01672409833653965 -0.6527305871003349 1.0 6369 +Phenotype HP:0033076 Abnormal circulating free T4 concentration 0.01672022288910391 -0.6527766215467494 1.0 6370 +Phenotype HP:0100736 Abnormal soft palate morphology 0.016719888009360973 -0.6527805994109411 1.0 6371 +Phenotype HP:0011713 Left bundle branch block 0.016713194956749278 -0.6528601027397595 1.0 6372 +Disease MONDO:0005045 hypertrophic cardiomyopathy 0.016693496970144217 -0.6530940849892618 1.0 6373 +Disease MONDO:0024573 familial hypertrophic cardiomyopathy 0.016693496970144217 -0.6530940849892618 1.0 6373 +Phenotype HP:0005502 Increased red cell osmotic fragility 0.016666055999528195 -0.6534200421625505 1.0 6375 +Phenotype HP:0001310 Dysmetria 0.016647387569892813 -0.6536417948344525 1.0 6376 +Disease MONDO:0002921 congenital structural myopathy 0.016613537446087956 -0.654043883041364 1.0 6377 +Phenotype HP:0000384 Preauricular skin tag 0.016607770891495344 -0.6541123809768388 1.0 6378 +Disease MONDO:0002331 nephrosis 0.016577994659478845 -0.6544660775189581 1.0 6379 +Disease MONDO:0005377 nephrotic syndrome 0.016577994659478845 -0.6544660775189581 1.0 6379 +Phenotype HP:0000114 Proximal tubulopathy 0.016570682344669962 -0.6545529367448453 1.0 6381 +Phenotype HP:0009119 Aplasia/Hypoplasia of the frontal sinuses 0.01655844893423175 -0.6546982511341182 1.0 6382 +Phenotype HP:0100650 Vaginal neoplasm 0.016503996341667437 -0.6553450654687446 1.0 6383 +Disease MONDO:0005558 ovarian disorder 0.01648350486618244 -0.6555884731644513 1.0 6384 +Phenotype HP:0008684 Aplasia/hypoplasia of the uterus 0.016466156736565152 -0.65579454267165 1.0 6385 +Phenotype HP:0001245 Small thenar eminence 0.016464274062687356 -0.6558169059861267 1.0 6386 +Phenotype HP:0001970 Tubulointerstitial nephritis 0.016456023649388474 -0.6559149084013838 1.0 6387 +Phenotype HP:0005144 Ventricular septal hypertrophy 0.01644714863627439 -0.6560203301165282 1.0 6388 +Biological Process GO:0060307 regulation of ventricular cardiac muscle cell membrane repolarization 0.01641363934248996 -0.6564183697789625 1.0 6389 +Phenotype HP:0000176 Submucous cleft hard palate 0.016399276710818755 -0.6565889760919112 1.0 6390 +Biological Process GO:2000677 regulation of transcription regulatory region DNA binding 0.01638618029505523 -0.6567445416774813 1.0 6391 +Biological Process GO:0061035 regulation of cartilage development 0.0163831142589278 -0.6567809615433556 1.0 6392 +Biological Process GO:0006883 intracellular sodium ion homeostasis 0.016373822597325116 -0.6568913324115566 1.0 6393 +Disease MONDO:0019053 peroxisomal disease 0.016339634412113502 -0.6572974362760075 1.0 6394 +Disease MONDO:0016763 spondylometaphyseal dysplasia 0.016338197246556274 -0.6573145076263301 1.0 6395 +Phenotype HP:0000748 Inappropriate laughter 0.016325218485066295 -0.6574686756573105 1.0 6396 +Phenotype HP:0000642 Red-green dyschromatopsia 0.016252080852099393 -0.6583374399745974 1.0 6397 +Phenotype HP:0003182 Shallow acetabular fossae 0.01625059126130457 -0.658355134057348 1.0 6398 +Phenotype HP:0004889 Intermittent episodes of respiratory insufficiency due to muscle weakness 0.016239227578597415 -0.658490117398324 1.0 6399 +Biological Process GO:0051321 meiotic cell cycle 0.016170326766716925 -0.6593085546975043 1.0 6400 +Biological Process GO:0015908 fatty acid transport 0.016145131684479952 -0.6596078341181071 1.0 6401 +Phenotype HP:0002104 Apnea 0.016092482177163525 -0.6602332305306482 1.0 6402 +Phenotype HP:0030048 Colpocephaly 0.016070467480923778 -0.660494731782099 1.0 6403 +Phenotype HP:0009928 Thick nasal alae 0.01605307396532063 -0.6607013404060755 1.0 6404 +Phenotype HP:0012415 Abnormal blood gas level 0.01602775126708067 -0.6610021357115273 1.0 6405 +Phenotype HP:0002506 Diffuse cerebral atrophy 0.015994750729856788 -0.6613941321165023 1.0 6406 +Phenotype HP:0010626 Anterior pituitary agenesis 0.01588989065016433 -0.6626397110592321 1.0 6407 +Phenotype HP:0012808 Abnormal nasal base norphology 0.015880541781646218 -0.6627507614589521 1.0 6408 +Phenotype HP:0002032 Esophageal atresia 0.01586052304415453 -0.6629885537432304 1.0 6409 +Biological Process GO:1904358 positive regulation of telomere maintenance via telomere lengthening 0.01584787670357668 -0.6631387731172053 1.0 6410 +Phenotype HP:0005709 2-3 toe cutaneous syndactyly 0.01584352618302154 -0.6631904507128097 1.0 6411 +Phenotype HP:0005518 Increased mean corpuscular volume 0.015799482895472727 -0.6637136182680918 1.0 6412 +Phenotype HP:0025066 Decreased mean corpuscular volume 0.015765341288794255 -0.6641191688501092 1.0 6413 +Biological Process GO:0070252 actin-mediated cell contraction 0.015732977848543883 -0.6645035975078823 1.0 6414 +Phenotype HP:0002349 Focal aware seizure 0.01572336664182783 -0.664617764088099 1.0 6415 +Biological Process GO:0030262 apoptotic nuclear changes 0.01562933148738377 -0.6657347593125486 1.0 6416 +Phenotype HP:0025425 Laryngospasm 0.015572081472408184 -0.6664148027889 1.0 6417 +Phenotype HP:0001737 Pancreatic cysts 0.015567175993418059 -0.6664730724502623 1.0 6418 +Disease MONDO:0016971 limb-girdle muscular dystrophy 0.015559126167029369 -0.6665686921968025 1.0 6419 +Phenotype HP:0002072 Chorea 0.01554785158832872 -0.6667026171171236 1.0 6420 +Disease MONDO:0002427 cerebellar disorder 0.015502717682564837 -0.6672387395651279 1.0 6421 +Phenotype HP:0010297 Bifid tongue 0.01547566900294084 -0.6675600369155315 1.0 6422 +Phenotype HP:0003300 Ovoid vertebral bodies 0.015443310810700828 -0.6679444032348892 1.0 6423 +Disease MONDO:0018770 Jeune syndrome 0.015430114920916838 -0.6681011504211753 1.0 6424 +Biological Process GO:0002200 somatic diversification of immune receptors 0.015415474370567894 -0.6682750579871252 1.0 6425 +Phenotype HP:0008428 Vertebral clefting 0.015370226395733932 -0.6688125354029315 1.0 6426 +Biological Process GO:0009101 glycoprotein biosynthetic process 0.015370131557155275 -0.6688136619416188 1.0 6427 +Phenotype HP:0200101 Decreased/absent ankle reflexes 0.015354848055456505 -0.6689952067958951 1.0 6428 +Biological Process GO:0072521 purine-containing compound metabolic process 0.015329326965339618 -0.6692983586963928 1.0 6429 +Phenotype HP:0001193 Ulnar deviation of the hand or of fingers of the hand 0.015326502380568763 -0.6693319104858139 1.0 6430 +Phenotype HP:0003707 Calf muscle pseudohypertrophy 0.015287459967905592 -0.6697956752209661 1.0 6431 +Biological Process GO:0042158 lipoprotein biosynthetic process 0.015247637495382715 -0.6702687058858998 1.0 6432 +Phenotype HP:0031318 Myofiber disarray 0.01521312159290289 -0.6706787025351898 1.0 6433 +Phenotype HP:0003025 Metaphyseal irregularity 0.015106931525716294 -0.6719400797151672 1.0 6434 +Biological Process GO:0019082 viral protein processing 0.015031770375192544 -0.672832880356539 1.0 6435 +Phenotype HP:0002245 Meckel diverticulum 0.015013301714190352 -0.6730522600796158 1.0 6436 +Phenotype HP:0009763 Limb pain 0.014971255368869674 -0.6735517069854715 1.0 6437 +Biological Process GO:0043010 camera-type eye development 0.014969511842811367 -0.6735724174345833 1.0 6438 +Phenotype HP:0030839 Knee pain 0.014960138062196982 -0.6736837637522791 1.0 6439 +Phenotype HP:0003429 CNS hypomyelination 0.014945442154628452 -0.6738583288781627 1.0 6440 +Biological Process GO:0106056 regulation of calcineurin-mediated signaling 0.014906800966304479 -0.6743173276757942 1.0 6441 +Biological Process GO:0070884 regulation of calcineurin-NFAT signaling cascade 0.014906800966304479 -0.6743173276757942 1.0 6441 +Phenotype HP:0430028 Hyperplasia of the maxilla 0.014821916107831012 -0.6753256312416626 1.0 6443 +Biological Process GO:0071470 cellular response to osmotic stress 0.014756766055431858 -0.6760995151984946 1.0 6444 +Phenotype HP:0040162 Orthokeratosis 0.014755754850713676 -0.6761115267791405 1.0 6445 +Biological Process GO:0010884 positive regulation of lipid storage 0.014744309845922565 -0.6762474761033167 1.0 6446 +Biological Process GO:0044839 cell cycle G2/M phase transition 0.014704906494996006 -0.6767155282384195 1.0 6447 +Biological Process GO:0045739 positive regulation of DNA repair 0.014687828552757187 -0.6769183883287438 1.0 6448 +Phenotype HP:0000211 Trismus 0.014622989847562828 -0.6776885739522989 1.0 6449 +Phenotype HP:0000243 Trigonocephaly 0.014572794175170656 -0.678284822522119 1.0 6450 +Phenotype HP:0012303 Abnormal aortic arch morphology 0.014552856657068403 -0.6785216500430525 1.0 6451 +Biological Process GO:0006140 regulation of nucleotide metabolic process 0.014450578623906085 -0.6797365581833518 1.0 6452 +Biological Process GO:0006813 potassium ion transport 0.014413869761808806 -0.6801726038717972 1.0 6453 +Phenotype HP:0000096 Glomerular sclerosis 0.014382679098762452 -0.6805431017124841 1.0 6454 +Phenotype HP:0020054 Abnormal erythrocyte physiology 0.014365186849206957 -0.6807508831462882 1.0 6455 +Phenotype HP:0100864 Short femoral neck 0.01433992678962559 -0.6810509343993382 1.0 6456 +Phenotype HP:0012304 Hypoplastic aortic arch 0.014266144089759125 -0.6819273611344785 1.0 6457 +Biological Process GO:0043045 epigenetic programming of gene expression 0.01426431174281051 -0.6819491266412535 1.0 6458 +Phenotype HP:0010582 Irregular epiphyses 0.014232397480783643 -0.6823282197419837 1.0 6459 +Phenotype HP:0001423 X-linked dominant inheritance 0.014225154116868088 -0.68241425993568 1.0 6460 +Biological Process GO:0070934 CRD-mediated mRNA stabilization 0.014198967270412921 -0.68272532001323 1.0 6461 +Phenotype HP:0010502 Fibular bowing 0.014175764421062387 -0.6830009347242537 1.0 6462 +Biological Process GO:0044042 glucan metabolic process 0.014070298123136205 -0.6842537146215206 1.0 6463 +Biological Process GO:0098719 sodium ion import across plasma membrane 0.014062461997535802 -0.6843467959263325 1.0 6464 +Biological Process GO:0032309 icosanoid secretion 0.01403009789263887 -0.6847312324791002 1.0 6465 +Phenotype HP:0011167 Focal tonic seizure 0.013980073044267405 -0.6853254519182566 1.0 6466 +Biological Process GO:0006352 DNA-templated transcription initiation 0.013935833204834158 -0.6858509542122603 1.0 6467 +Disease MONDO:0018234 dysostosis 0.01392310211794634 -0.6860021802440546 1.0 6468 +Phenotype HP:0005487 Prominent metopic ridge 0.013889277342101991 -0.6864039673555831 1.0 6469 +Biological Process GO:0071715 icosanoid transport 0.013874126493562455 -0.6865839364912225 1.0 6470 +Phenotype HP:0002714 Downturned corners of mouth 0.013790436958196373 -0.687578041428817 1.0 6471 +Disease MONDO:0016175 cutis laxa 0.013779103397839498 -0.68771266696189 1.0 6472 +Disease MONDO:0100237 inherited cutis laxa 0.013779103397839498 -0.68771266696189 1.0 6472 +Disease MONDO:0018772 Joubert syndrome 0.013762978840519136 -0.6879042022832248 1.0 6474 +Phenotype HP:0008807 Acetabular dysplasia 0.013719391009830662 -0.6884219597007669 1.0 6475 +Phenotype HP:0004755 Supraventricular tachycardia 0.0137059252013918 -0.688581913111898 1.0 6476 +Phenotype HP:0007973 Retinal dysplasia 0.013701027232096319 -0.6886400935694609 1.0 6477 +Phenotype HP:0002359 Frequent falls 0.013688959970526104 -0.6887834343618039 1.0 6478 +Biological Process GO:0031047 regulatory ncRNA-mediated gene silencing 0.013681038975512205 -0.6888775237867186 1.0 6479 +Biological Process GO:0006921 cellular component disassembly involved in execution phase of apoptosis 0.013661710572952401 -0.6891071159374752 1.0 6480 +Phenotype HP:0045014 Hypolipidemia 0.013659745097890807 -0.6891304628046182 1.0 6481 +Phenotype HP:0030584 Color vision test abnormality 0.013569999525178011 -0.6901965042944028 1.0 6482 +Phenotype HP:0001254 Lethargy 0.013563286180583667 -0.6902762486612442 1.0 6483 +Phenotype HP:0002655 Spondyloepiphyseal dysplasia 0.013551219889890387 -0.6904195779210395 1.0 6484 +Biological Process GO:2001032 regulation of double-strand break repair via nonhomologous end joining 0.013473176448969837 -0.6913466158072772 1.0 6485 +Phenotype HP:0002179 Opisthotonus 0.013438376303258726 -0.6917599888356862 1.0 6486 +Biological Process GO:0034375 high-density lipoprotein particle remodeling 0.013413894897407741 -0.6920507908616416 1.0 6487 +Biological Process GO:0045109 intermediate filament organization 0.013345900603179528 -0.692858460103977 1.0 6488 +Biological Process GO:0086009 membrane repolarization 0.01331821965781832 -0.6931872678138118 1.0 6489 +Phenotype HP:0009053 Distal lower limb muscle weakness 0.013232885007351536 -0.694200914227379 1.0 6490 +Biological Process GO:0006977 DNA damage response, signal transduction by p53 class mediator resulting in cell cycle arrest 0.013217639310506901 -0.6943820100172412 1.0 6491 +Phenotype HP:0030453 Abnormal visual electrophysiology 0.013210296225585227 -0.694469234745469 1.0 6492 +Phenotype HP:0100814 Blue nevus 0.013200592668191513 -0.694584498311877 1.0 6493 +Phenotype HP:0009380 Finger aplasia 0.013199842250207205 -0.6945934121410695 1.0 6494 +Phenotype HP:0000524 Conjunctival telangiectasia 0.013199309929042169 -0.6945997353103431 1.0 6495 +Phenotype HP:0000081 Duplicated collecting system 0.013187845010287025 -0.6947359211822536 1.0 6496 +Phenotype HP:0008450 Narrow vertebral interpedicular distance 0.013063730215213676 -0.6962102169836489 1.0 6497 +Biological Process GO:0006099 tricarboxylic acid cycle 0.013054632227857077 -0.6963182872951139 1.0 6498 +Biological Process GO:0006402 mRNA catabolic process 0.013028575928631492 -0.6966277966692822 1.0 6499 +Phenotype HP:0001946 Ketosis 0.01296790039943696 -0.6973485300668283 1.0 6500 +Phenotype HP:0005109 Abnormality of the Achilles tendon 0.012938975908303063 -0.6976921092171705 1.0 6501 +Phenotype HP:0010462 Aplasia/Hypoplasia of the ovary 0.012917469814029081 -0.697947569047514 1.0 6502 +Phenotype HP:0000966 Hypohidrosis 0.012854206444897875 -0.6986990420643863 1.0 6503 +Phenotype HP:0007661 Abnormality of chorioretinal pigmentation 0.012730880526236166 -0.7001639672087153 1.0 6504 +Biological Process GO:0009100 glycoprotein metabolic process 0.012718776078848193 -0.7003077497122577 1.0 6505 +Biological Process GO:0006413 translational initiation 0.012708121989511545 -0.7004343041586267 1.0 6506 +Phenotype HP:0009138 Synostosis involving bones of the lower limbs 0.01269399836561691 -0.7006020714211522 1.0 6507 +Phenotype HP:0009140 Synostosis involving bones of the feet 0.01269399836561691 -0.7006020714211522 1.0 6507 +Phenotype HP:0000151 Aplasia of the uterus 0.012688437057503332 -0.700668131339289 1.0 6509 +Phenotype HP:0100569 Abnormally ossified vertebrae 0.012664694508250252 -0.7009501568678131 1.0 6510 +Biological Process GO:0006613 cotranslational protein targeting to membrane 0.012581095154727162 -0.7019431905816877 1.0 6511 +Phenotype HP:0012346 Abnormal protein glycosylation 0.012573488204128958 -0.7020335496345446 1.0 6512 +Disease MONDO:0002145 disorder of sexual differentiation 0.012510654987325065 -0.7027799130932072 1.0 6513 +Phenotype HP:0002075 Dysdiadochokinesis 0.012472716272934226 -0.703230567564366 1.0 6514 +Biological Process GO:0071385 cellular response to glucocorticoid stimulus 0.012450144613306402 -0.7034986846973811 1.0 6515 +Disease MONDO:0002263 female reproductive system disorder 0.012414429743311861 -0.7039229232649847 1.0 6516 +Phenotype HP:0200065 Chorioretinal degeneration 0.012375806562468061 -0.7043817081610231 1.0 6517 +Disease MONDO:0006566 keratosis 0.012336310109332893 -0.7048508662093668 1.0 6518 +Phenotype HP:0008232 Elevated circulating follicle stimulating hormone level 0.012333444034726693 -0.7048849108351981 1.0 6519 +Biological Process GO:1904356 regulation of telomere maintenance via telomere lengthening 0.012327212999885484 -0.7049589260926001 1.0 6520 +Phenotype HP:0000510 Rod-cone dystrophy 0.01231175565116771 -0.7051425359861817 1.0 6521 +Disease MONDO:0002661 uveal disorder 0.012307594221793172 -0.7051919674649273 1.0 6522 +Biological Process GO:0007423 sensory organ development 0.012287240953649525 -0.7054337334667252 1.0 6523 +Biological Process GO:0090596 sensory organ morphogenesis 0.0122730582277788 -0.7056022027712203 1.0 6524 +Biological Process GO:0042255 ribosome assembly 0.012250829616715642 -0.7058662450068127 1.0 6525 +Phenotype HP:0001075 Atrophic scars 0.01223118613848484 -0.7060995797793784 1.0 6526 +Biological Process GO:0086010 membrane depolarization during action potential 0.01222985264238785 -0.7061154196935144 1.0 6527 +Biological Process GO:0006356 regulation of transcription by RNA polymerase I 0.012166361320569252 -0.706869600443093 1.0 6528 +Biological Process GO:0140115 export across plasma membrane 0.012163436724964893 -0.706904340209756 1.0 6529 +Biological Process GO:0098869 cellular oxidant detoxification 0.012161004432353795 -0.7069332321624212 1.0 6530 +Biological Process GO:0007094 mitotic spindle assembly checkpoint signaling 0.01210577159765891 -0.7075893145919311 1.0 6531 +Biological Process GO:0071173 spindle assembly checkpoint signaling 0.01210577159765891 -0.7075893145919311 1.0 6531 +Biological Process GO:0071174 mitotic spindle checkpoint signaling 0.01210577159765891 -0.7075893145919311 1.0 6531 +Biological Process GO:0033044 regulation of chromosome organization 0.012053574691402669 -0.708209334789313 1.0 6534 +Phenotype HP:0012767 Abnormal placental size 0.012011746622906383 -0.7087061888970616 1.0 6535 +Phenotype HP:0005150 Abnormal atrioventricular conduction 0.012009442899581946 -0.7087335536413113 1.0 6536 +Phenotype HP:0001714 Ventricular hypertrophy 0.01199006885527898 -0.7089636879468552 1.0 6537 +Biological Process GO:0031109 microtubule polymerization or depolymerization 0.011980819229222561 -0.7090735594964266 1.0 6538 +Phenotype HP:0000695 Natal tooth 0.011974378575104527 -0.7091500647133819 1.0 6539 +Disease MONDO:0015129 chronic primary adrenal insufficiency 0.011927608736695627 -0.7097056195636916 1.0 6540 +Disease MONDO:0000004 adrenocortical insufficiency 0.011927608736695627 -0.7097056195636916 1.0 6540 +Disease MONDO:0015128 primary adrenal insufficiency 0.011927608736695627 -0.7097056195636916 1.0 6540 +Biological Process GO:0030514 negative regulation of BMP signaling pathway 0.011927540648290269 -0.7097064283508316 1.0 6543 +Phenotype HP:0001188 Hand clenching 0.011892411474685227 -0.7101237097323284 1.0 6544 +Biological Process GO:0051973 positive regulation of telomerase activity 0.01187369420264639 -0.7103460425780148 1.0 6545 +Biological Process GO:0003006 developmental process involved in reproduction 0.011873403856104803 -0.7103494914552172 1.0 6546 +Phenotype HP:0002265 Large fleshy ears 0.01185293709936619 -0.710592605529652 1.0 6547 +Phenotype HP:0006655 Rib segmentation abnormalities 0.011680520462464705 -0.7126406540618544 1.0 6548 +Phenotype HP:0009055 Generalized limb muscle atrophy 0.011673863811912044 -0.7127197249893401 1.0 6549 +Biological Process GO:0032212 positive regulation of telomere maintenance via telomerase 0.011657157210415936 -0.7129181741140133 1.0 6550 +Phenotype HP:0006097 3-4 finger syndactyly 0.011640800703673237 -0.7131124646432125 1.0 6551 +Phenotype HP:0002884 Hepatoblastoma 0.01163314575514185 -0.7132033938388258 1.0 6552 +Biological Process GO:0097237 cellular response to toxic substance 0.01163052385176 -0.7132345380802939 1.0 6553 +Biological Process GO:0002762 negative regulation of myeloid leukocyte differentiation 0.011627808986792498 -0.713266786564615 1.0 6554 +Phenotype HP:0002385 Paraparesis 0.011623526142840346 -0.7133176602646679 1.0 6555 +Phenotype HP:0002677 Small foramen magnum 0.011583345548566215 -0.7137949448736536 1.0 6556 +Phenotype HP:0031958 Spastic paraparetic gait 0.01156143533661702 -0.7140552050099677 1.0 6557 +Phenotype HP:0001747 Accessory spleen 0.011558546455235352 -0.7140895205457521 1.0 6558 +Biological Process GO:0007263 nitric oxide mediated signal transduction 0.011546320570711699 -0.7142347455385576 1.0 6559 +Phenotype HP:0100133 Abnormality of the pubic hair 0.011540956294416316 -0.7142984650170865 1.0 6560 +Biological Process GO:1905168 positive regulation of double-strand break repair via homologous recombination 0.011497063699138943 -0.714819842576398 1.0 6561 +Phenotype HP:0002878 Respiratory failure 0.011496049890667104 -0.7148318850856941 1.0 6562 +Phenotype HP:0012605 Hypernatriuria 0.01147249680907203 -0.7151116600253781 1.0 6563 +Biological Process GO:0051350 negative regulation of lyase activity 0.011460915732004695 -0.7152492256821229 1.0 6564 +Biological Process GO:0032691 negative regulation of interleukin-1 beta production 0.011443009361093215 -0.7154619262504751 1.0 6565 +Disease MONDO:0020127 hereditary peripheral neuropathy 0.011441043108136983 -0.7154852823578283 1.0 6566 +Phenotype HP:0002061 Lower limb spasticity 0.011376317449199869 -0.7162541251630486 1.0 6567 +Disease MONDO:0018117 disorder of phospholipids, sphingolipids and fatty acids biosynthesis 0.011356705657987742 -0.7164870835418204 1.0 6568 +Phenotype HP:0000253 Progressive microcephaly 0.011262844452957 -0.7176020125106751 1.0 6569 +Phenotype HP:0000805 Enuresis 0.011218949433752456 -0.7181234188625705 1.0 6570 +Phenotype HP:0040276 Adenocarcinoma of the colon 0.01120163516988737 -0.7183290860959205 1.0 6571 +Biological Process GO:0006720 isoprenoid metabolic process 0.011192043921831929 -0.7184430155974754 1.0 6572 +Phenotype HP:0008058 Aplasia/Hypoplasia of the optic nerve 0.011187345860795617 -0.7184988214476677 1.0 6573 +Phenotype HP:0031219 Reduced radioactive iodine uptake 0.011165298487048503 -0.7187607108584182 1.0 6574 +Phenotype HP:0031221 Abnormal radioactive iodine uptake test result 0.011165298487048503 -0.7187607108584182 1.0 6574 +Disease MONDO:0006590 palmoplantar keratosis 0.0111477259385111 -0.7189694461225195 1.0 6576 +Disease MONDO:0019272 hereditary palmoplantar keratoderma 0.0111477259385111 -0.7189694461225195 1.0 6576 +Phenotype HP:0003641 Hemoglobinuria 0.011066447916526445 -0.7199349059332285 1.0 6578 +Biological Process GO:0031638 zymogen activation 0.011004919995021845 -0.7206657644605234 1.0 6579 +Biological Process GO:0006006 glucose metabolic process 0.01098552618810833 -0.7208961335159513 1.0 6580 +Phenotype HP:0010751 Dimple chin 0.010975092281651389 -0.7210200725231626 1.0 6581 +Biological Process GO:0071277 cellular response to calcium ion 0.010966502421971835 -0.7211221070473517 1.0 6582 +Biological Process GO:0007492 endoderm development 0.010934878125599123 -0.7214977557952452 1.0 6583 +Disease MONDO:0003620 peripheral nervous system disorder 0.010877494560113776 -0.7221793856493989 1.0 6584 +Disease MONDO:0024239 congenital anomaly of cardiovascular system 0.010857641631820458 -0.7224152083715082 1.0 6585 +Biological Process GO:0071466 cellular response to xenobiotic stimulus 0.010844068972838072 -0.7225764310052778 1.0 6586 +Biological Process GO:0048562 embryonic organ morphogenesis 0.010803021121469691 -0.7230640173151367 1.0 6587 +Phenotype HP:0032012 Heterotropia 0.010799772471117297 -0.7231026063614459 1.0 6588 +Phenotype HP:0004463 Absent brainstem auditory responses 0.01078459967722245 -0.7232828361746716 1.0 6589 +Biological Process GO:0006497 protein lipidation 0.010782080292576546 -0.7233127626488148 1.0 6590 +Phenotype HP:0012880 Abnormal labia minora morphology 0.010759153467402416 -0.7235850986106441 1.0 6591 +Biological Process GO:2000241 regulation of reproductive process 0.01067910266433958 -0.724535980919108 1.0 6592 +Disease MONDO:0016106 progressive muscular dystrophy 0.010676814642951116 -0.7245631591481381 1.0 6593 +Phenotype HP:0009102 Anterior open-bite malocclusion 0.010632941263140516 -0.7250843084568048 1.0 6594 +Phenotype HP:0003731 Quadriceps muscle weakness 0.010578057624442416 -0.7257362429667082 1.0 6595 +Phenotype HP:0002497 Spastic ataxia 0.010571871734790461 -0.7258097219676314 1.0 6596 +Disease MONDO:0021190 DNA repair disease 0.010570663847454864 -0.7258240698399087 1.0 6597 +Phenotype HP:0000656 Ectropion 0.010544711484590463 -0.7261323446075112 1.0 6598 +Phenotype HP:0008151 Prolonged prothrombin time 0.010518016112181616 -0.7264494452032605 1.0 6599 +Phenotype HP:0410030 Cleft lip 0.01051049199424714 -0.7265388203295171 1.0 6600 +Phenotype HP:0005483 Abnormal epiglottis morphology 0.010473439618447489 -0.7269789464405167 1.0 6601 +Phenotype HP:0100589 Urogenital fistula 0.01044650216987697 -0.7272989225344575 1.0 6602 +Phenotype HP:0009937 Facial hirsutism 0.010438299180904997 -0.727396361620532 1.0 6603 +Phenotype HP:0011170 Generalized myoclonic-atonic seizure 0.010336729847083781 -0.7286028514859397 1.0 6604 +Biological Process GO:0070213 protein auto-ADP-ribosylation 0.010329721104293088 -0.7286861047359916 1.0 6605 +Disease MONDO:0003569 cranial nerve neuropathy 0.010228639554502483 -0.729886800465834 1.0 6606 +Phenotype HP:0000971 Abnormal sweat gland morphology 0.01022630610166353 -0.7299145183516927 1.0 6607 +Biological Process GO:0006855 xenobiotic transmembrane transport 0.010218431924769678 -0.7300080516482444 1.0 6608 +Phenotype HP:0011069 Supernumerary tooth 0.010200447568111448 -0.7302216785691635 1.0 6609 +Phenotype HP:0002483 Bulbar signs 0.01013160819532899 -0.7310393860649048 1.0 6610 +Biological Process GO:0031571 mitotic G1 DNA damage checkpoint signaling 0.010121530102658038 -0.7311590985431963 1.0 6611 +Biological Process GO:0044819 mitotic G1/S transition checkpoint signaling 0.010121530102658038 -0.7311590985431963 1.0 6611 +Biological Process GO:0030330 DNA damage response, signal transduction by p53 class mediator 0.010105179219807692 -0.7313533222690713 1.0 6613 +Disease MONDO:0018940 congenital myasthenic syndrome 0.010063302649581773 -0.7318507525039151 1.0 6614 +Disease MONDO:0021017 synaptopathy 0.010063302649581773 -0.7318507525039151 1.0 6614 +Disease MONDO:0020124 neuromuscular junction disease 0.010063302649581773 -0.7318507525039151 1.0 6614 +Phenotype HP:0003828 Variable expressivity 0.010062429310347398 -0.7318611264514019 1.0 6617 +Phenotype HP:0003812 Phenotypic variability 0.010062429310347398 -0.7318611264514019 1.0 6617 +Phenotype HP:0030112 Abnormal muscle fiber alpha dystroglycan 0.010017515661163157 -0.7323946325848048 1.0 6619 +Phenotype HP:0030046 Hypoglycosylation of alpha-dystroglycan 0.010017515661163157 -0.7323946325848048 1.0 6619 +Phenotype HP:0003573 Increased total bilirubin 0.010012345522176225 -0.7324560460061182 1.0 6621 +Biological Process GO:0006687 glycosphingolipid metabolic process 0.009971749734910551 -0.7329382624790597 1.0 6622 +Phenotype HP:0000017 Nocturia 0.00995800835121563 -0.7331014893068912 1.0 6623 +Phenotype HP:0005106 Abnormality of the vertebral endplates 0.00995611013808495 -0.7331240372041589 1.0 6624 +Biological Process GO:0006766 vitamin metabolic process 0.009946584565313277 -0.7332371865828037 1.0 6625 +Phenotype HP:0011587 Abnormal branching pattern of the aortic arch 0.009897228647870793 -0.7338234601355776 1.0 6626 +Phenotype HP:0500030 Abnormal hepatic glycogen storage 0.009767572432790583 -0.7353635796145214 1.0 6627 +Phenotype HP:0006568 Increased hepatic glycogen content 0.009767572432790583 -0.7353635796145214 1.0 6627 +Biological Process GO:0006403 RNA localization 0.009754620417152138 -0.7355174299452905 1.0 6629 +Phenotype HP:0006143 Abnormal finger flexion crease 0.00969157760692374 -0.7362662830564202 1.0 6630 +Phenotype HP:0000559 Corneal scarring 0.00962989712820328 -0.7369989537324011 1.0 6631 +Disease MONDO:0015650 epilepsy syndrome 0.00962973485938634 -0.7370008812402004 1.0 6632 +Phenotype HP:0001961 Hypoplastic heart 0.009612446346950354 -0.7372062425855718 1.0 6633 +Phenotype HP:0000232 Everted lower lip vermilion 0.009603322000536041 -0.7373146260027231 1.0 6634 +Phenotype HP:0010862 Delayed fine motor development 0.009596410951527412 -0.7373967187985953 1.0 6635 +Phenotype HP:0025708 Early young adult onset 0.009538653016239906 -0.7380827955990389 1.0 6636 +Phenotype HP:0002751 Kyphoscoliosis 0.009483345575952207 -0.7387397642300059 1.0 6637 +Disease MONDO:0019691 short rib dysplasia 0.009450265958626969 -0.7391326999868231 1.0 6638 +Biological Process GO:0006633 fatty acid biosynthetic process 0.009411172641363375 -0.7395970693915365 1.0 6639 +Biological Process GO:0018149 peptide cross-linking 0.009392601399149214 -0.7398176676240587 1.0 6640 +Phenotype HP:0012508 Metamorphopsia 0.009373382182357504 -0.7400459628132453 1.0 6641 +Phenotype HP:0002457 Abnormal head movements 0.009366816571333203 -0.7401239523290077 1.0 6642 +Disease MONDO:0019695 acromelic dysplasia 0.009353972512138653 -0.7402765203007166 1.0 6643 +Phenotype HP:0000068 Urethral atresia 0.009349435471729395 -0.7403304134697153 1.0 6644 +Phenotype HP:0001264 Spastic diplegia 0.009342351054295484 -0.740414565619924 1.0 6645 +Biological Process GO:0000305 response to oxygen radical 0.009261674136923803 -0.7413728852181662 1.0 6646 +Biological Process GO:1905818 regulation of chromosome separation 0.00921617751948356 -0.7419133161315815 1.0 6647 +Biological Process GO:1900542 regulation of purine nucleotide metabolic process 0.009195169390345703 -0.7421628608902447 1.0 6648 +Biological Process GO:0006405 RNA export from nucleus 0.0091302096033542 -0.7429344847821789 1.0 6649 +Phenotype HP:0032679 Focal non-motor seizure 0.009015271035131445 -0.7442997809054096 1.0 6650 +Biological Process GO:0031577 spindle checkpoint signaling 0.00898237770213206 -0.7446905038865517 1.0 6651 +Phenotype HP:0001615 Hoarse cry 0.008973345367920937 -0.7447977943380759 1.0 6652 +Biological Process GO:2000042 negative regulation of double-strand break repair via homologous recombination 0.008929187151377027 -0.7453223270757671 1.0 6653 +Phenotype HP:0012251 ST segment elevation 0.008898950143654938 -0.7456814969354529 1.0 6654 +Biological Process GO:0034367 protein-containing complex remodeling 0.00886109420617509 -0.7461311681422695 1.0 6655 +Phenotype HP:0002190 Choroid plexus cyst 0.008795904883670658 -0.7469055185684802 1.0 6656 +Phenotype HP:0000546 Retinal degeneration 0.008778410909454637 -0.7471133204886393 1.0 6657 +Phenotype HP:0012347 Abnormal protein N-linked glycosylation 0.008760674705985183 -0.7473239997254882 1.0 6658 +Disease MONDO:0006510 renal tubular transport disease 0.00875683906054725 -0.7473695613844463 1.0 6659 +Phenotype HP:0009552 Aplasia/Hypoplasia of the phalanges of the 2nd finger 0.008730290997088885 -0.747684912172954 1.0 6660 +Phenotype HP:0004510 Pancreatic islet-cell hyperplasia 0.008725943023151994 -0.7477365595185903 1.0 6661 +Phenotype HP:0032199 Abnormal prothrombin time 0.00871074449058662 -0.7479170950682422 1.0 6662 +Biological Process GO:0045662 negative regulation of myoblast differentiation 0.008703158131245559 -0.7480072095281485 1.0 6663 +Biological Process GO:0036151 phosphatidylcholine acyl-chain remodeling 0.008685372810897762 -0.7482184721991276 1.0 6664 +Phenotype HP:0004599 Absent or minimally ossified vertebral bodies 0.008680822223343099 -0.7482725262876975 1.0 6665 +Phenotype HP:0100738 Abnormal eating behavior 0.0086798859405125 -0.7482836479097833 1.0 6666 +Disease MONDO:0045011 keratinization disease 0.008646230837686675 -0.7486834195628108 1.0 6667 +Phenotype HP:0000970 Anhidrosis 0.00862921115933013 -0.7488855875664507 1.0 6668 +Phenotype HP:0003390 Sensory axonal neuropathy 0.008628154057378379 -0.748898144336723 1.0 6669 +Biological Process GO:0030258 lipid modification 0.008615864256120598 -0.7490441285635319 1.0 6670 +Phenotype HP:0012848 Small intestinal stenosis 0.008593923767433509 -0.7493047483416398 1.0 6671 +Phenotype HP:0100867 Duodenal stenosis 0.008593923767433509 -0.7493047483416398 1.0 6671 +Disease MONDO:0020043 autosomal recessive congenital cerebellar ataxia 0.008549415959898443 -0.7498334336908723 1.0 6673 +Disease MONDO:0019609 Zellweger spectrum disorders 0.008545489141180251 -0.7498800783503237 1.0 6674 +Disease MONDO:0019234 peroxisome biogenesis disorder 0.008545489141180251 -0.7498800783503237 1.0 6674 +Biological Process GO:0032205 negative regulation of telomere maintenance 0.008509949117027849 -0.7503022400141157 1.0 6676 +Biological Process GO:1902600 proton transmembrane transport 0.008503015995013019 -0.7503845950038733 1.0 6677 +Biological Process GO:0036152 phosphatidylethanolamine acyl-chain remodeling 0.008498914194013052 -0.7504333181878324 1.0 6678 +Phenotype HP:0034314 Abnormal left ventricular ejection fraction 0.008491829192869171 -0.7505174772716317 1.0 6679 +Phenotype HP:0012664 Reduced left ventricular ejection fraction 0.008491829192869171 -0.7505174772716317 1.0 6679 +Phenotype HP:0012382 Left-to-right shunt 0.008436291263754003 -0.7511771837608081 1.0 6681 +Phenotype HP:0003204 Intracellular accumulation of autofluorescent lipopigment storage material 0.008433997146044314 -0.7512044344049018 1.0 6682 +Biological Process GO:0044706 multi-multicellular organism process 0.008375622242746683 -0.7518978398509463 1.0 6683 +Phenotype HP:0006673 Reduced systolic function 0.008364672227522352 -0.7520279094486998 1.0 6684 +Phenotype HP:0010830 Impaired tactile sensation 0.008349298923384652 -0.7522105210199503 1.0 6685 +Biological Process GO:0060632 regulation of microtubule-based movement 0.008296898439462574 -0.7528329594116969 1.0 6686 +Biological Process GO:0019731 antibacterial humoral response 0.00829626199879474 -0.7528405193629814 1.0 6687 +Phenotype HP:0000609 Optic nerve hypoplasia 0.008291005098465032 -0.7529029633776523 1.0 6688 +Phenotype HP:0002289 Alopecia universalis 0.008258704203748968 -0.7532866490891991 1.0 6689 +Phenotype HP:0000588 Optic disc coloboma 0.008250206153782913 -0.7533875930530319 1.0 6690 +Phenotype HP:0001967 Diffuse mesangial sclerosis 0.008185538538517667 -0.754155746387334 1.0 6691 +Phenotype HP:0009921 Duane anomaly 0.008064693168874815 -0.755591206365955 1.0 6692 +Phenotype HP:0025068 Incomitant strabismus 0.008064693168874815 -0.755591206365955 1.0 6692 +Phenotype HP:0001374 Congenital hip dislocation 0.00803270843463677 -0.7559711365698282 1.0 6694 +Phenotype HP:0025160 Abnormal temper tantrums 0.007947618797154554 -0.7569818726001954 1.0 6695 +Phenotype HP:0000921 Missing ribs 0.007940917023402272 -0.7570614795229564 1.0 6696 +Phenotype HP:0009816 Lower limb undergrowth 0.007895195129901222 -0.7576045863748077 1.0 6697 +Biological Process GO:0032206 positive regulation of telomere maintenance 0.007877503872106506 -0.757814731725108 1.0 6698 +Disease MONDO:0100308 atactic disorder 0.007842332428775523 -0.7582325152069342 1.0 6699 +Disease MONDO:0100309 hereditary ataxia 0.007842332428775523 -0.7582325152069342 1.0 6699 +Biological Process GO:0009124 nucleoside monophosphate biosynthetic process 0.007840543963596458 -0.7582537594647432 1.0 6701 +Biological Process GO:0009218 pyrimidine ribonucleotide metabolic process 0.007776980614214946 -0.7590087957926879 1.0 6702 +Phenotype HP:0003302 Spondylolisthesis 0.007735738217208299 -0.7594986930101022 1.0 6703 +Phenotype HP:0005957 Breathing dysregulation 0.007723719105251936 -0.7596414618579522 1.0 6704 +Phenotype HP:0007641 Dyschromatopsia 0.0076829046845716675 -0.7601262753647525 1.0 6705 +Phenotype HP:0001405 Periportal fibrosis 0.007627724769167843 -0.7607817291932275 1.0 6706 +Phenotype HP:0002780 Bronchomalacia 0.0076215270929903545 -0.760855348200224 1.0 6707 +Phenotype HP:0000533 Chorioretinal atrophy 0.007614470182580879 -0.7609391736086403 1.0 6708 +Phenotype HP:0002121 Generalized non-motor (absence) seizure 0.0076025253116689395 -0.7610810605853159 1.0 6709 +Phenotype HP:0003134 Abnormality of peripheral nerve conduction 0.007559769921376747 -0.7615889298716291 1.0 6710 +Biological Process GO:0016072 rRNA metabolic process 0.007498405483889248 -0.7623178464563871 1.0 6711 +Phenotype HP:0030310 Upper extremity joint dislocation 0.007414339877590881 -0.7633164185471214 1.0 6712 +Phenotype HP:0012301 Type II transferrin isoform profile 0.007407888622681935 -0.7633930496854185 1.0 6713 +Phenotype HP:0012418 Hypoxemia 0.007363244429338223 -0.7639233550915099 1.0 6714 +Phenotype HP:0500165 Abnormal blood oxygen level 0.007363244429338223 -0.7639233550915099 1.0 6714 +Phenotype HP:0001962 Palpitations 0.007338553410821791 -0.7642166469984856 1.0 6716 +Phenotype HP:0030810 Abnormal tongue physiology 0.007302275031273342 -0.7646475792061898 1.0 6717 +Disease MONDO:0005244 peripheral neuropathy 0.007291422699439942 -0.7647764884731943 1.0 6718 +Phenotype HP:0011274 Recurrent mycobacterial infections 0.007267414696194074 -0.7650616671931394 1.0 6719 +Disease MONDO:0100310 hereditary cerebellar ataxia 0.007218744175774949 -0.7656397992672668 1.0 6720 +Disease MONDO:0000437 cerebellar ataxia 0.007218744175774949 -0.7656397992672668 1.0 6720 +Phenotype HP:0033109 Abnormal circulating non-proteinogenic amino acid concentration 0.007199226815107429 -0.7658716359541778 1.0 6722 +Biological Process GO:0006026 aminoglycan catabolic process 0.007121795890130178 -0.7667913980786261 1.0 6723 +Phenotype HP:0007686 Abnormal pupillary function 0.007118728379403083 -0.7668278354605113 1.0 6724 +Phenotype HP:0007178 Motor polyneuropathy 0.0071162373303504944 -0.7668574253507184 1.0 6725 +Phenotype HP:0009004 Hypoplasia of the musculature 0.007108266661456031 -0.7669521048261063 1.0 6726 +Biological Process GO:0006970 response to osmotic stress 0.00709387400665662 -0.7671230677683499 1.0 6727 +Phenotype HP:0000467 Neck muscle weakness 0.007080977898865526 -0.7672762539985614 1.0 6728 +Biological Process GO:0006091 generation of precursor metabolites and energy 0.006868625480031421 -0.7697986791398854 1.0 6729 +Phenotype HP:0000565 Esotropia 0.006818031646180778 -0.7703996572648415 1.0 6730 +Biological Process GO:0045454 cell redox homeostasis 0.006791140360623893 -0.7707190850120913 1.0 6731 +Phenotype HP:0012133 Erythroid hypoplasia 0.006732313926601452 -0.7714178539593316 1.0 6732 +Biological Process GO:0006753 nucleoside phosphate metabolic process 0.006699727395952371 -0.771804932593185 1.0 6733 +Biological Process GO:0009117 nucleotide metabolic process 0.006656554013321769 -0.7723177669954552 1.0 6734 +Disease MONDO:0024637 malignant soft tissue neoplasm 0.0066486908889061835 -0.7724111690053034 1.0 6735 +Disease MONDO:0018078 soft tissue sarcoma 0.0066486908889061835 -0.7724111690053034 1.0 6735 +Phenotype HP:0012200 Abnormality of prothrombin 0.006540947394155783 -0.7736909985521702 1.0 6737 +Biological Process GO:0045048 protein insertion into ER membrane 0.00650688485779416 -0.7740956098985704 1.0 6738 +Biological Process GO:0043392 negative regulation of DNA binding 0.006476478556026288 -0.774456790715135 1.0 6739 +Biological Process GO:0007389 pattern specification process 0.006448124205966632 -0.7747935974529582 1.0 6740 +Phenotype HP:0012041 Decreased fertility in males 0.006436886217390025 -0.7749270877380191 1.0 6741 +Phenotype HP:0002335 Agenesis of cerebellar vermis 0.006434034058658278 -0.7749609670643367 1.0 6742 +Phenotype HP:0007750 Hypoplasia of the fovea 0.006417825306799463 -0.7751535024892809 1.0 6743 +Phenotype HP:0008060 Aplasia/Hypoplasia of the fovea 0.006417825306799463 -0.7751535024892809 1.0 6743 +Biological Process GO:2001251 negative regulation of chromosome organization 0.006414437857105493 -0.7751937402615651 1.0 6745 +Phenotype HP:0100336 Bilateral cleft lip 0.006399467152487404 -0.7753715695602343 1.0 6746 +Phenotype HP:0010719 Abnormality of hair texture 0.00634593089686164 -0.7760074991997657 1.0 6747 +Disease MONDO:0017749 disorder of multiple glycosylation 0.006332620982613335 -0.7761656008240049 1.0 6748 +Phenotype HP:0005401 Recurrent candida infections 0.006218080085639732 -0.7775261732150438 1.0 6749 +Biological Process GO:0002357 defense response to tumor cell 0.006187912552003794 -0.7778845178278003 1.0 6750 +Phenotype HP:0002080 Intention tremor 0.006115923744050233 -0.7787396358437523 1.0 6751 +Phenotype HP:0007377 Abnormality of somatosensory evoked potentials 0.006086212869013785 -0.7790925560439277 1.0 6752 +Biological Process GO:0051028 mRNA transport 0.006083936684225022 -0.7791195936720791 1.0 6753 +Disease MONDO:0015514 hereditary endocrine growth disease 0.006061229514359057 -0.7793893204615016 1.0 6754 +Phenotype HP:0025483 Abnormal circulating thyroglobulin concentration 0.0060513254209557665 -0.7795069660920041 1.0 6755 +Biological Process GO:1901978 positive regulation of cell cycle checkpoint 0.0060204694269742065 -0.7798734885710366 1.0 6756 +Phenotype HP:0006543 Cardiorespiratory arrest 0.005985469833835744 -0.780289230732832 1.0 6757 +Biological Process GO:0035987 endodermal cell differentiation 0.005877512611334179 -0.7815715990417053 1.0 6758 +Biological Process GO:0032211 negative regulation of telomere maintenance via telomerase 0.005774813337785845 -0.7827915108798482 1.0 6759 +Biological Process GO:0006693 prostaglandin metabolic process 0.005763165045726715 -0.7829298749489026 1.0 6760 +Biological Process GO:0001523 retinoid metabolic process 0.005758543785373438 -0.7829847685232906 1.0 6761 +Biological Process GO:0006576 biogenic amine metabolic process 0.005752994024041169 -0.7830506912831523 1.0 6762 +Biological Process GO:0043543 protein acylation 0.005687027167703529 -0.7838342776337752 1.0 6763 +Phenotype HP:0000026 Male hypogonadism 0.005639157630479064 -0.7844028952405888 1.0 6764 +Phenotype HP:0003160 Abnormal isoelectric focusing of serum transferrin 0.0056343348512177815 -0.7844601825544161 1.0 6765 +Biological Process GO:0045671 negative regulation of osteoclast differentiation 0.005623139012457701 -0.7845931721634899 1.0 6766 +Phenotype HP:0006261 Abnormal phalangeal joint morphology of the hand 0.005609578242054769 -0.7847542535789401 1.0 6767 +Biological Process GO:0045214 sarcomere organization 0.005553520171425852 -0.7854201385615782 1.0 6768 +Phenotype HP:0006670 Impaired myocardial contractility 0.005532661958945417 -0.7856679025373906 1.0 6769 +Phenotype HP:0002919 Ketonuria 0.005499434997505159 -0.7860625885191509 1.0 6770 +Biological Process GO:0001654 eye development 0.005427757638630237 -0.7869140069917187 1.0 6771 +Biological Process GO:0150063 visual system development 0.005427757638630237 -0.7869140069917187 1.0 6771 +Phenotype HP:0000058 Abnormal labia morphology 0.005412707650215731 -0.7870927780618191 1.0 6773 +Phenotype HP:0033044 Motor regression 0.005338300850775912 -0.7879766181547312 1.0 6774 +Biological Process GO:0016101 diterpenoid metabolic process 0.005322837293187277 -0.7881603018002956 1.0 6775 +Biological Process GO:0007007 inner mitochondrial membrane organization 0.0052444274189311635 -0.7890916923596195 1.0 6776 +Phenotype HP:0002687 Abnormality of frontal sinus 0.005190265637552427 -0.7897350522977766 1.0 6777 +Phenotype HP:0003547 Shoulder girdle muscle weakness 0.005181149302857735 -0.7898433405478322 1.0 6778 +Disease MONDO:0800063 primordial dwarfism and slender bone disorder 0.00517720145704792 -0.7898902349772878 1.0 6779 +Biological Process GO:1902108 regulation of mitochondrial membrane permeability involved in apoptotic process 0.005138387780381892 -0.7903512826752003 1.0 6780 +Biological Process GO:0042254 ribosome biogenesis 0.005098616220800323 -0.7908237085714958 1.0 6781 +Phenotype HP:0001929 Reduced factor XI activity 0.005092967680589644 -0.7908908046748386 1.0 6782 +Phenotype HP:0011231 Prominent eyelashes 0.005090938481940643 -0.7909149084816945 1.0 6783 +Phenotype HP:0005324 Disturbance of facial expression 0.0050426288612333 -0.791488753613806 1.0 6784 +Phenotype HP:0003722 Neck flexor weakness 0.0050418165305419205 -0.7914984028721956 1.0 6785 +Biological Process GO:1905515 non-motile cilium assembly 0.005039271510547616 -0.7915286338554548 1.0 6786 +Phenotype HP:0001769 Broad foot 0.005039179751088363 -0.7915297238188668 1.0 6787 +Phenotype HP:0012692 Focal T2 hyperintense thalamic lesion 0.00500112518266993 -0.7919817544604196 1.0 6788 +Biological Process GO:0005977 glycogen metabolic process 0.004984752676703286 -0.7921762350361695 1.0 6789 +Phenotype HP:0004927 Pulmonary artery dilatation 0.004964221706812766 -0.7924201118656021 1.0 6790 +Phenotype HP:0031358 Vegetative state 0.004945823606145261 -0.792638653438762 1.0 6791 +Biological Process GO:0006474 N-terminal protein amino acid acetylation 0.004781399242901774 -0.794591765863705 1.0 6792 +Biological Process GO:0043171 peptide catabolic process 0.004715004777065324 -0.795380431567586 1.0 6793 +Phenotype HP:0030799 Scaphocephaly 0.004699722354572944 -0.7955619636025246 1.0 6794 +Phenotype HP:0040197 Encephalomalacia 0.004628772245511392 -0.7964047434486838 1.0 6795 +Phenotype HP:0000475 Broad neck 0.004561250677922457 -0.7972067974144594 1.0 6796 +Biological Process GO:0006721 terpenoid metabolic process 0.0045592282845628995 -0.797230820384783 1.0 6797 +Disease MONDO:0002146 hypogonadism 0.004516634094393623 -0.7977367748577634 1.0 6798 +Biological Process GO:0032897 negative regulation of viral transcription 0.004510067181350608 -0.7978147798395363 1.0 6799 +Phenotype HP:0002310 Orofacial dyskinesia 0.0044811160503892555 -0.7981586754306844 1.0 6800 +Phenotype HP:0031475 Status epilepticus without prominent motor symptoms 0.004409471826804623 -0.7990097003061848 1.0 6801 +Phenotype HP:0010319 Abnormal second toe morphology 0.004402248303817968 -0.7990955048196936 1.0 6802 +Phenotype HP:0030186 Kinetic tremor 0.004383413314430595 -0.799319235969205 1.0 6803 +Phenotype HP:0000064 Hypoplastic labia minora 0.004348132543652405 -0.7997383180955344 1.0 6804 +Phenotype HP:0031882 Agyria 0.004345631179438092 -0.7997680305142412 1.0 6805 +Phenotype HP:0000808 Penoscrotal hypospadias 0.004300784025025428 -0.8003007467904598 1.0 6806 +Phenotype HP:0040196 Mild microcephaly 0.004296560042563735 -0.8003509213051482 1.0 6807 +Phenotype HP:0002173 Hypoglycemic seizures 0.0042912717640007925 -0.8004137380457096 1.0 6808 +Phenotype HP:5200018 Steroetypic upper-extremity movements 0.0041832060596947995 -0.8016973949541306 1.0 6809 +Phenotype HP:0100854 Aplasia of the musculature 0.004116496700457106 -0.8024898011147321 1.0 6810 +Phenotype HP:0002070 Limb ataxia 0.004087618939148996 -0.8028328251855134 1.0 6811 +Phenotype HP:0001712 Left ventricular hypertrophy 0.004058326434802972 -0.8031807757754827 1.0 6812 +Phenotype HP:0025190 Bilateral tonic-clonic seizure with generalized onset 0.003980100794121366 -0.8041099779189517 1.0 6813 +Phenotype HP:0003100 Slender long bone 0.003928003075450492 -0.8047288199180329 1.0 6814 +Disease MONDO:0024417 perceptual disorders 0.003917275461650549 -0.8048562477236777 1.0 6815 +Phenotype HP:0002693 Abnormal skull base morphology 0.003914607003119852 -0.8048879449698092 1.0 6816 +Biological Process GO:0070085 glycosylation 0.003861459770233666 -0.8055192536083449 1.0 6817 +Biological Process GO:0021543 pallium development 0.0038286766409737494 -0.8059086675359587 1.0 6818 +Biological Process GO:0021987 cerebral cortex development 0.0038286766409737494 -0.8059086675359587 1.0 6818 +Phenotype HP:0000885 Broad ribs 0.0038091912150202134 -0.8061401248868307 1.0 6820 +Phenotype HP:0030406 Primary peritoneal carcinoma 0.0037157133494252204 -0.8072505003637322 1.0 6821 +Phenotype HP:0004452 Abnormality of the middle ear ossicles 0.0037011267179871687 -0.8074237674546775 1.0 6822 +Phenotype HP:0100297 Increased endomysial connective tissue 0.003679252767646357 -0.8076835968579998 1.0 6823 +Phenotype HP:0100582 Nasal polyposis 0.003666478376253779 -0.8078353372817288 1.0 6824 +Phenotype HP:0100590 Rectal fistula 0.003625510374683172 -0.8083219750969177 1.0 6825 +Biological Process GO:0072528 pyrimidine-containing compound biosynthetic process 0.0036230223148104868 -0.8083515294801945 1.0 6826 +Phenotype HP:0003555 Muscle fiber splitting 0.0036068127998040156 -0.8085440739701771 1.0 6827 +Disease MONDO:0002305 thrombophilia 0.0035931267120117294 -0.8087066439664276 1.0 6828 +Phenotype HP:0031987 Diminished ability to concentrate 0.003592458223389272 -0.8087145845988782 1.0 6829 +Phenotype HP:0010794 Impaired visuospatial constructive cognition 0.003577281923992759 -0.8088948560521548 1.0 6830 +Biological Process GO:0070509 calcium ion import 0.003563693533945367 -0.809056265547153 1.0 6831 +Phenotype HP:0030272 Abnormal erythrocyte enzyme concentration or activity 0.003556345250969817 -0.8091435520203887 1.0 6832 +Phenotype HP:0012434 Delayed early-childhood social milestone development 0.0035239577437126135 -0.809528266557755 1.0 6833 +Phenotype HP:0032342 Reduced forced expiratory volume in one second 0.0035159922976640834 -0.8096228839936429 1.0 6834 +Phenotype HP:0002522 Areflexia of lower limbs 0.003501346678123185 -0.8097968517739161 1.0 6835 +Phenotype HP:0020045 Esodeviation 0.003480531967504197 -0.8100440990134954 1.0 6836 +Disease MONDO:0045022 disorder of organic acid metabolism 0.003472065430576987 -0.8101446686501513 1.0 6837 +Biological Process GO:0006692 prostanoid metabolic process 0.003443659022750678 -0.8104820937554041 1.0 6838 +Biological Process GO:0010587 miRNA catabolic process 0.0033226324062904933 -0.8119197066717281 1.0 6839 +Biological Process GO:0019318 hexose metabolic process 0.003319110923894919 -0.8119615365495232 1.0 6840 +Biological Process GO:0071897 DNA biosynthetic process 0.003302558178458148 -0.8121581580972168 1.0 6841 +Phenotype HP:0008323 Abnormal light- and dark-adapted electroretinogram 0.003221058955083067 -0.8131262454454484 1.0 6842 +Phenotype HP:0002403 Positive Romberg sign 0.0031574198682782217 -0.8138821814192827 1.0 6843 +Phenotype HP:0012411 Premature pubarche 0.003142333863264568 -0.8140613803120361 1.0 6844 +Biological Process GO:0051895 negative regulation of focal adhesion assembly 0.0030498106310197226 -0.8151604161904703 1.0 6845 +Biological Process GO:0150118 negative regulation of cell-substrate junction organization 0.0030498106310197226 -0.8151604161904703 1.0 6845 +Disease MONDO:0005308 ciliopathy 0.002986107925367909 -0.8159171078598598 1.0 6847 +Phenotype HP:0003063 Abnormality of the humerus 0.0029815262790600094 -0.8159715308793817 1.0 6848 +Biological Process GO:0006301 postreplication repair 0.0029625168623331755 -0.8161973339615265 1.0 6849 +Biological Process GO:0006406 mRNA export from nucleus 0.002911157183098534 -0.8168074091698198 1.0 6850 +Phenotype HP:0002223 Absent eyebrow 0.002866458213533596 -0.8173383652344642 1.0 6851 +Phenotype HP:0011961 Non-obstructive azoospermia 0.002857770417096561 -0.8174415630990132 1.0 6852 +Phenotype HP:0008011 Peripheral opacification of the cornea 0.0028354992076847774 -0.8177061113384747 1.0 6853 +Biological Process GO:0033013 tetrapyrrole metabolic process 0.0028220644512886306 -0.8178656958983647 1.0 6854 +Biological Process GO:0006112 energy reserve metabolic process 0.0027188698895863617 -0.8190914910096936 1.0 6855 +Phenotype HP:0000968 Ectodermal dysplasia 0.0026743044949874006 -0.819620860406033 1.0 6856 +Phenotype HP:0020179 Abnormal circulating haptoglobin concentration 0.0026721835272682792 -0.8196460542904636 1.0 6857 +Phenotype HP:0020181 Reduced haptoglobin level 0.0026721835272682792 -0.8196460542904636 1.0 6857 +Phenotype HP:0001227 Abnormality of the thenar eminence 0.002666766165281831 -0.8197104043466075 1.0 6859 +Biological Process GO:0010965 regulation of mitotic sister chromatid separation 0.002641119190411545 -0.8200150515673309 1.0 6860 +Biological Process GO:0030808 regulation of nucleotide biosynthetic process 0.002589567432909945 -0.8206274083745452 1.0 6861 +Biological Process GO:1900371 regulation of purine nucleotide biosynthetic process 0.002589567432909945 -0.8206274083745452 1.0 6861 +Phenotype HP:0000932 Abnormal posterior cranial fossa morphology 0.002579525380013381 -0.8207466927548968 1.0 6863 +Biological Process GO:0006163 purine nucleotide metabolic process 0.0025569292986742376 -0.8210150999808573 1.0 6864 +Biological Process GO:0016226 iron-sulfur cluster assembly 0.002554611834834075 -0.8210426279416247 1.0 6865 +Biological Process GO:0031163 metallo-sulfur cluster assembly 0.002554611834834075 -0.8210426279416247 1.0 6865 +Phenotype HP:0000613 Photophobia 0.002511578759506805 -0.8215537957056179 1.0 6867 +Phenotype HP:0004445 Elliptocytosis 0.0024926194688609238 -0.821779003365834 1.0 6868 +Phenotype HP:0005684 Distal arthrogryposis 0.0024364853412531806 -0.822445791790197 1.0 6869 +Phenotype HP:0001685 Myocardial fibrosis 0.002424534645220411 -0.8225877479604864 1.0 6870 +Biological Process GO:0060295 regulation of cilium movement involved in cell motility 0.0024065331722326055 -0.8228015781974792 1.0 6871 +Biological Process GO:1902019 regulation of cilium-dependent cell motility 0.0024065331722326055 -0.8228015781974792 1.0 6871 +Biological Process GO:0033046 negative regulation of sister chromatid segregation 0.0023958051905546007 -0.8229290103729582 1.0 6873 +Biological Process GO:2000816 negative regulation of mitotic sister chromatid separation 0.0023958051905546007 -0.8229290103729582 1.0 6873 +Biological Process GO:0033048 negative regulation of mitotic sister chromatid segregation 0.0023958051905546007 -0.8229290103729582 1.0 6873 +Biological Process GO:0045841 negative regulation of mitotic metaphase/anaphase transition 0.0023958051905546007 -0.8229290103729582 1.0 6873 +Phenotype HP:0001083 Ectopia lentis 0.0023877997902786996 -0.8230241024045591 1.0 6877 +Biological Process GO:0046782 regulation of viral transcription 0.0023772723224086967 -0.8231491527796646 1.0 6878 +Phenotype HP:0000297 Facial hypotonia 0.0023392893223054267 -0.8236003332980192 1.0 6879 +Phenotype HP:0003431 Decreased motor nerve conduction velocity 0.0023307569279353846 -0.8237016852213589 1.0 6880 +Phenotype HP:0000815 Hypergonadotropic hypogonadism 0.002298238128758845 -0.8240879593078936 1.0 6881 +Biological Process GO:0033047 regulation of mitotic sister chromatid segregation 0.002250654531581575 -0.8246531803799848 1.0 6882 +Phenotype HP:0030828 Wheezing 0.0022296763147195975 -0.8249023698261108 1.0 6883 +Biological Process GO:0032351 negative regulation of hormone metabolic process 0.002218200088524691 -0.8250386900132812 1.0 6884 +Biological Process GO:1902001 fatty acid transmembrane transport 0.002052515274745259 -0.8270067746817178 1.0 6885 +Biological Process GO:0021537 telencephalon development 0.002025326057335519 -0.8273297414081803 1.0 6886 +Phenotype HP:0034207 Abnormal fetal gastrointestinal system morphology 0.002007849796129335 -0.8275373329246078 1.0 6887 +Phenotype HP:0006785 Limb-girdle muscular dystrophy 0.0019434204944898115 -0.8283026554539473 1.0 6888 +Disease MONDO:0005395 movement disorder 0.0018952473276240278 -0.8288748797210718 1.0 6889 +Phenotype HP:0003417 Coronal cleft vertebrae 0.001876567093432091 -0.8290967726132284 1.0 6890 +Phenotype HP:0100819 Intestinal fistula 0.0018400541543260873 -0.8295304910332506 1.0 6891 +Biological Process GO:0098534 centriole assembly 0.0018014033663699136 -0.8299896038599747 1.0 6892 +Phenotype HP:0005619 Thoracolumbar kyphosis 0.0017415448550952561 -0.830700632321955 1.0 6893 +Phenotype HP:0010481 Urethral valve 0.0017175965267959281 -0.8309851021939093 1.0 6894 +Biological Process GO:0019730 antimicrobial humoral response 0.0017130659089120703 -0.8310389190730327 1.0 6895 +Phenotype HP:0007695 Abnormal pupillary light reflex 0.0016989855632020268 -0.8312061722562673 1.0 6896 +Biological Process GO:0006446 regulation of translational initiation 0.0016917422610118749 -0.8312922117167592 1.0 6897 +Biological Process GO:0006643 membrane lipid metabolic process 0.0016828126253475295 -0.8313982822650782 1.0 6898 +Phenotype HP:0000013 Hypoplasia of the uterus 0.0016664890628290685 -0.8315921814667855 1.0 6899 +Phenotype HP:0007446 Palmoplantar blistering 0.001601671954974182 -0.8323621105466553 1.0 6900 +Phenotype HP:0007338 Hypermetric saccades 0.0015624518620130923 -0.8328279858546611 1.0 6901 +Phenotype HP:0002333 Motor deterioration 0.0014615399269175544 -0.8340266668187969 1.0 6902 +Disease MONDO:0019792 autosomal dominant cerebellar ataxia type I 0.0014582890048872033 -0.8340652828491999 1.0 6903 +Biological Process GO:0006658 phosphatidylserine metabolic process 0.001376388219866187 -0.8350381401416452 1.0 6904 +Biological Process GO:0006778 porphyrin-containing compound metabolic process 0.001367770604834062 -0.8351405043573892 1.0 6905 +Biological Process GO:0030203 glycosaminoglycan metabolic process 0.0013656958651767637 -0.8351651491224548 1.0 6906 +Biological Process GO:0031644 regulation of nervous system process 0.0013621224286987088 -0.8352075961360685 1.0 6907 +Phenotype HP:0000375 Abnormal cochlea morphology 0.001323144557671574 -0.8356705942143289 1.0 6908 +Phenotype HP:0033144 Abnormal circulating ceruloplasmin concentration 0.0012961574216447946 -0.8359911605200014 1.0 6909 +Phenotype HP:0009543 Abnormality of the middle phalanx of the 2nd finger 0.0012781338168690315 -0.836205253649118 1.0 6910 +Phenotype HP:0009568 Aplasia/Hypoplasia of the middle phalanx of the 2nd finger 0.0012781338168690315 -0.836205253649118 1.0 6910 +Phenotype HP:0025169 Left ventricular systolic dysfunction 0.0012499962566411282 -0.8365394852520546 1.0 6912 +Biological Process GO:0007519 skeletal muscle tissue development 0.0010633972259123103 -0.8387559991445794 1.0 6913 +Phenotype HP:0100587 Abnormal preputium morphology 0.0010309313832300715 -0.8391416441881612 1.0 6914 +Phenotype HP:0004684 Talipes valgus 0.0010185294814993862 -0.839288959998819 1.0 6915 +Phenotype HP:0008119 Deformed tarsal bones 0.0009948442404601465 -0.8395703047925526 1.0 6916 +Biological Process GO:0006695 cholesterol biosynthetic process 0.0009526135597758278 -0.8400719413233639 1.0 6917 +Biological Process GO:1902653 secondary alcohol biosynthetic process 0.0009526135597758278 -0.8400719413233639 1.0 6917 +Phenotype HP:0003761 Calcinosis 0.0009235668253693152 -0.8404169725386551 1.0 6919 +Phenotype HP:0008828 Delayed proximal femoral epiphyseal ossification 0.0009113942460744484 -0.8405615643460699 1.0 6920 +Biological Process GO:0009259 ribonucleotide metabolic process 0.0008445506061404151 -0.8413555655579842 1.0 6921 +Biological Process GO:0001953 negative regulation of cell-matrix adhesion 0.0008438407256116109 -0.8413639978635968 1.0 6922 +Phenotype HP:0001498 Carpal bone hypoplasia 0.0008145522604585675 -0.8417119004740707 1.0 6923 +Phenotype HP:0030208 Anti-acetylcholine receptor antibody positivity 0.0007973769544638021 -0.8419159170983643 1.0 6924 +Biological Process GO:0006353 DNA-templated transcription termination 0.0007709127637890445 -0.8422302716052229 1.0 6925 +Disease MONDO:0004981 atrial fibrillation 0.0006771099296276617 -0.8433445072165485 1.0 6926 +Disease MONDO:0018054 familial atrial fibrillation 0.0006771099296276617 -0.8433445072165485 1.0 6926 +Biological Process GO:0045618 positive regulation of keratinocyte differentiation 0.0005570217154388102 -0.8447709733350405 1.0 6928 +Phenotype HP:0001985 Hypoketotic hypoglycemia 0.0005230443164223608 -0.8451745733787153 1.0 6929 +Biological Process GO:0019693 ribose phosphate metabolic process 0.0005023194494661043 -0.8454207534116439 1.0 6930 +Phenotype HP:0007099 Chiari type I malformation 0.0004809197083925909 -0.845674949927031 1.0 6931 +Biological Process GO:1902100 negative regulation of metaphase/anaphase transition of cell cycle 0.0004636470160762629 -0.8458801233533394 1.0 6932 +Biological Process GO:1905819 negative regulation of chromosome separation 0.0004636470160762629 -0.8458801233533394 1.0 6932 +Biological Process GO:0051985 negative regulation of chromosome segregation 0.0004636470160762629 -0.8458801233533394 1.0 6932 +Biological Process GO:2000772 regulation of cellular senescence 0.00044902024542359253 -0.846053867237366 1.0 6935 +Phenotype HP:0009473 Joint contracture of the hand 0.00036334092894030334 -0.8470716077612341 1.0 6936 +Phenotype HP:0000803 Renal cortical cysts 0.000360002101460255 -0.8471112679752522 1.0 6937 +Disease MONDO:0019220 inborn disorder of cobalamin metabolism and transport 0.0003336021010879042 -0.8474248599985302 1.0 6938 +Biological Process GO:0048880 sensory system development 0.0002986032325273946 -0.8478405935534369 1.0 6939 +Phenotype HP:0006895 Lower limb hypertonia 0.00027582383168855973 -0.8481111783374278 1.0 6940 +Biological Process GO:0035601 protein deacylation 0.00023308866454008204 -0.8486188074034203 1.0 6941 +Biological Process GO:0098732 macromolecule deacylation 0.00023308866454008204 -0.8486188074034203 1.0 6941 +Biological Process GO:0061013 regulation of mRNA catabolic process 0.00022539189443560037 -0.8487102333759857 1.0 6943 +Phenotype HP:0012087 Abnormal mitochondrial shape 0.00019027432040163994 -0.8491273769721449 1.0 6944 +Phenotype HP:0008770 Obsessive-compulsive trait 0.00016396932966467048 -0.8494398404248409 1.0 6945 +Biological Process GO:0006636 unsaturated fatty acid biosynthetic process 0.00013089835377289027 -0.8498326735345155 1.0 6946 +Disease MONDO:0100365 mucopolysaccharidosis or mucopolysaccharidosis-like disorder 0.00010011435237222699 -0.8501983408507152 1.0 6947 +Biological Process GO:0071384 cellular response to corticosteroid stimulus 3.822328281466447e-05 -0.8509335130269144 1.0 6948 +Phenotype HP:0100840 Aplasia/Hypoplasia of the eyebrow 1.02615714204779e-05 -0.8512656558120184 1.0 6949 +Phenotype HP:0030051 Tip-toe gait -6.308686361822247e-05 -0.8521369241386718 1.0 6950 +Biological Process GO:0070918 regulatory ncRNA processing -0.00018384408756588755 -0.853571337079925 1.0 6951 +Biological Process GO:0090235 regulation of metaphase plate congression -0.00026622446292701163 -0.8545498911793015 1.0 6952 +Phenotype HP:0011342 Mild global developmental delay -0.0002789941039034183 -0.8547015751752806 1.0 6953 +Biological Process GO:0043484 regulation of RNA splicing -0.00031263955165727886 -0.8551012321406751 1.0 6954 +Phenotype HP:0002777 Tracheal stenosis -0.00036587050806891064 -0.8557335352878991 1.0 6955 +Biological Process GO:0010833 telomere maintenance via telomere lengthening -0.000369691756078927 -0.8557789259272175 1.0 6956 +Biological Process GO:0070328 triglyceride homeostasis -0.0004420672867615494 -0.8566386376235233 1.0 6957 +Biological Process GO:0055090 acylglycerol homeostasis -0.0004420672867615494 -0.8566386376235233 1.0 6957 +Phenotype HP:0031857 Ineffective esophageal peristalsis -0.0004678701441336308 -0.8569451364922938 1.0 6959 +Phenotype HP:0000452 Choanal stenosis -0.0004821472158422768 -0.8571147264824625 1.0 6960 +Phenotype HP:0003403 EMG -0.0005210181218524568 -0.8575764539783132 1.0 6961 +Phenotype HP:0003710 Exercise-induced muscle cramps -0.0005538711341808167 -0.8579666980109466 1.0 6962 +Phenotype HP:0002064 Spastic gait -0.00058296413034431 -0.8583122787458501 1.0 6963 +Phenotype HP:0010850 EEG with spike-wave complexes -0.0005835018344435561 -0.8583186658562301 1.0 6964 +Phenotype HP:0033129 Abnormal shoulder physiology -0.0005847229841648982 -0.858333171265565 1.0 6965 +Phenotype HP:0025546 Abnormal mean corpuscular hemoglobin concentration -0.0005900515228922654 -0.8583964662359083 1.0 6966 +Biological Process GO:0009150 purine ribonucleotide metabolic process -0.0006227907503466579 -0.8587853586765589 1.0 6967 +Biological Process GO:1901838 positive regulation of transcription of nucleolar large rRNA by RNA polymerase I -0.0006600183847531582 -0.8592275665943898 1.0 6968 +Biological Process GO:0006221 pyrimidine nucleotide biosynthetic process -0.000729930595517736 -0.8600580177806129 1.0 6969 +Biological Process GO:0043413 macromolecule glycosylation -0.0007498797511740207 -0.8602949835380639 1.0 6970 +Biological Process GO:0006486 protein glycosylation -0.0007498797511740207 -0.8602949835380639 1.0 6970 +Phenotype HP:0001692 Atrial arrhythmia -0.0007743435342362215 -0.8605855762319772 1.0 6972 +Phenotype HP:0003803 Type 1 muscle fiber predominance -0.0007999472084139203 -0.8608897091060489 1.0 6973 +Phenotype HP:0003521 Disproportionate short-trunk short stature -0.0008357454890901561 -0.8613149384662308 1.0 6974 +Disease MONDO:0020040 46,XY disorder of sex development -0.0008819220720435172 -0.8618634463401768 1.0 6975 +Phenotype HP:0000340 Sloping forehead -0.0009118362839328764 -0.8622187818742238 1.0 6976 +Phenotype HP:0030291 Lower-limb metaphyseal irregularity -0.0009156118473121477 -0.8622636298493156 1.0 6977 +Phenotype HP:0011706 Second degree atrioventricular block -0.0010460815200719065 -0.8638134119735618 1.0 6978 +Biological Process GO:0042274 ribosomal small subunit biogenesis -0.0010827627925453776 -0.8642491299390591 1.0 6979 +Disease MONDO:0005089 sarcoma -0.0010992220364427485 -0.8644446408300669 1.0 6980 +Phenotype HP:0011469 Nasal regurgitation -0.0011329011315317494 -0.8648446974748462 1.0 6981 +Biological Process GO:0016053 organic acid biosynthetic process -0.0011340146560956388 -0.864857924460302 1.0 6982 +Biological Process GO:0046394 carboxylic acid biosynthetic process -0.0011572279268776686 -0.8651336629621492 1.0 6983 +Biological Process GO:1903510 mucopolysaccharide metabolic process -0.0011945875910577275 -0.8655774391937392 1.0 6984 +Phenotype HP:0002084 Encephalocele -0.0012151459003864051 -0.8658216407742932 1.0 6985 +Phenotype HP:0011815 Cephalocele -0.0012151459003864051 -0.8658216407742932 1.0 6985 +Biological Process GO:0006664 glycolipid metabolic process -0.001232232321193516 -0.8660246015771687 1.0 6987 +Phenotype HP:0005575 Hemolytic-uremic syndrome -0.001250618412202531 -0.8662430004937736 1.0 6988 +Phenotype HP:0012166 Skin-picking -0.0012668257294417007 -0.8664355188776091 1.0 6989 +Biological Process GO:0045947 negative regulation of translational initiation -0.0012948042628111445 -0.8667678614823033 1.0 6990 +Biological Process GO:2000737 negative regulation of stem cell differentiation -0.0013126582097549022 -0.8669799393333119 1.0 6991 +Biological Process GO:0042440 pigment metabolic process -0.001329198367249651 -0.8671764113553179 1.0 6992 +Biological Process GO:0033559 unsaturated fatty acid metabolic process -0.0013404637073459735 -0.8673102265350109 1.0 6993 +Phenotype HP:0003447 Axonal loss -0.0013670287012936821 -0.8676257784320918 1.0 6994 +Phenotype HP:0003325 Limb-girdle muscle weakness -0.001386167692148721 -0.8678531206586478 1.0 6995 +Biological Process GO:0009156 ribonucleoside monophosphate biosynthetic process -0.0014411193584735749 -0.8685058632337336 1.0 6996 +Phenotype HP:0000122 Unilateral renal agenesis -0.0014935511793998657 -0.8691286738616323 1.0 6997 +Phenotype HP:0005133 Right ventricular dilatation -0.0015182144755625515 -0.8694216364690291 1.0 6998 +Phenotype HP:0030177 Abnormality of peripheral nervous system electrophysiology -0.001532051765298359 -0.8695860025153828 1.0 6999 +Biological Process GO:0042168 heme metabolic process -0.00157442778179262 -0.8700893654155143 1.0 7000 +Phenotype HP:0030674 Antenatal onset -0.0016384189078793021 -0.8708494830828755 1.0 7001 +Phenotype HP:0030829 Abnormal breath sound -0.0016456240377249465 -0.8709350691137243 1.0 7002 +Biological Process GO:0042403 thyroid hormone metabolic process -0.001653860536437346 -0.8710329062447667 1.0 7003 +Phenotype HP:0011147 Typical absence seizure -0.0016724855401129002 -0.8712541430820319 1.0 7004 +Disease MONDO:0700264 type 1 interferonopathy -0.001735815836324761 -0.8720064110912655 1.0 7005 +Disease MONDO:0957408 type 1 interferonopathy of childhood -0.001735815836324761 -0.8720064110912655 1.0 7005 +Disease MONDO:0957018 autoinflammatory syndrome of childhood -0.001735815836324761 -0.8720064110912655 1.0 7005 +Disease MONDO:0043878 hereditary optic atrophy -0.0017403539842628657 -0.8720603174160296 1.0 7008 +Disease MONDO:0003608 optic atrophy -0.0017403539842628657 -0.8720603174160296 1.0 7008 +Disease MONDO:0002135 optic nerve disorder -0.0017403539842628657 -0.8720603174160296 1.0 7008 +Disease MONDO:0001084 primary optic atrophy -0.0017403539842628657 -0.8720603174160296 1.0 7008 +Phenotype HP:0005160 Total anomalous pulmonary venous return -0.0017732017223450747 -0.8724504987986064 1.0 7012 +Phenotype HP:0007266 Cerebral dysmyelination -0.0018156963825881611 -0.8729552710067954 1.0 7013 +Biological Process GO:0002181 cytoplasmic translation -0.0019467236097243656 -0.8745116760326526 1.0 7014 +Phenotype HP:0001385 Hip dysplasia -0.001984033677774333 -0.8749548631373272 1.0 7015 +Phenotype HP:0002293 Alopecia of scalp -0.002048146425115638 -0.8757164254810055 1.0 7016 +Biological Process GO:0051984 positive regulation of chromosome segregation -0.002048372292532852 -0.8757191084438599 1.0 7017 +Phenotype HP:0006467 Limited shoulder movement -0.002054248305119355 -0.8757889065745349 1.0 7018 +Phenotype HP:0030211 Slow pupillary light response -0.0021347078428619604 -0.8767446440319915 1.0 7019 +Phenotype HP:0006886 Impaired distal vibration sensation -0.002142301415660519 -0.8768348441768484 1.0 7020 +Phenotype HP:0011166 Focal myoclonic seizure -0.0021564284300026326 -0.8770026517127552 1.0 7021 +Phenotype HP:0003781 Excessive salivation -0.002172132921969716 -0.8771891972938556 1.0 7022 +Biological Process GO:0001706 endoderm formation -0.00223809009676601 -0.8779726686424294 1.0 7023 +Phenotype HP:0005110 Atrial fibrillation -0.002338990954209086 -0.8791712180208304 1.0 7024 +Phenotype HP:0005338 Sparse lateral eyebrow -0.0023843822336899745 -0.8797103976788163 1.0 7025 +Biological Process GO:0032781 positive regulation of ATP-dependent activity -0.002388952953895851 -0.879764690912793 1.0 7026 +Biological Process GO:0098754 detoxification -0.0024401836670582266 -0.8803732341994587 1.0 7027 +Phenotype HP:0004469 Chronic bronchitis -0.0025044344456661705 -0.881136436145545 1.0 7028 +Phenotype HP:0002196 Myelopathy -0.002510145830857402 -0.8812042787520821 1.0 7029 +Biological Process GO:0098810 neurotransmitter reuptake -0.002590741213570169 -0.8821616298420554 1.0 7030 +Phenotype HP:0001816 Thin nail -0.002634054350850734 -0.8826761243179175 1.0 7031 +Phenotype HP:0025454 Abnormal CSF metabolite concentration -0.0027022839522699016 -0.8834865886533234 1.0 7032 +Phenotype HP:0009120 Aplasia/Hypoplasia involving the sinuses -0.002716945763457046 -0.8836607487658329 1.0 7033 +Phenotype HP:0011094 Increased overbite -0.0027267364471854627 -0.8837770472611498 1.0 7034 +Phenotype HP:0010821 Focal emotional seizure with laughing -0.0028016133202288795 -0.8846664711165756 1.0 7035 +Disease MONDO:0015770 congenital hypogonadotropic hypogonadism -0.0028026136462466766 -0.884678353474736 1.0 7036 +Phenotype HP:0005115 Supraventricular arrhythmia -0.002806461069081223 -0.8847240550313298 1.0 7037 +Phenotype HP:0007083 Hyperactive patellar reflex -0.0028512827002178387 -0.8852564681296824 1.0 7038 +Biological Process GO:1905820 positive regulation of chromosome separation -0.002881698315892134 -0.8856177595813499 1.0 7039 +Biological Process GO:0048232 male gamete generation -0.0030510154630500885 -0.8876289908693822 1.0 7040 +Biological Process GO:0045661 regulation of myoblast differentiation -0.0031185879674986428 -0.8884316498879093 1.0 7041 +Disease MONDO:0005384 focal epilepsy -0.0031976997083049685 -0.8893713775589168 1.0 7042 +Disease MONDO:0017704 familial partial epilepsy -0.0031976997083049685 -0.8893713775589168 1.0 7042 +Phenotype HP:0002669 Osteosarcoma -0.003289569212988397 -0.8904626481439507 1.0 7044 +Phenotype HP:0000493 Abnormal foveal morphology -0.0032990321862691463 -0.8905750539354463 1.0 7045 +Phenotype HP:0008167 Very long chain fatty acid accumulation -0.0033004818741193542 -0.8905922740316454 1.0 7046 +Disease MONDO:0100198 Mendelian encephalopathy -0.0033448416734545017 -0.8911192012676119 1.0 7047 +Phenotype HP:0000512 Abnormal electroretinogram -0.0033574649349761287 -0.8912691464973507 1.0 7048 +Phenotype HP:0003301 Irregular vertebral endplates -0.0033652603845077955 -0.8913617446320673 1.0 7049 +Biological Process GO:0006334 nucleosome assembly -0.0033689063203174996 -0.8914050528279454 1.0 7050 +Phenotype HP:0000143 Rectovaginal fistula -0.003385928826780571 -0.8916072544252078 1.0 7051 +Phenotype HP:0000849 Adrenocortical abnormality -0.003390099544503089 -0.8916567962354608 1.0 7052 +Disease MONDO:0015194 sideroblastic anemia -0.0034349426212605394 -0.892189464075311 1.0 7053 +Disease MONDO:0020099 inherited sideroblastic anemia -0.0034349426212605394 -0.892189464075311 1.0 7053 +Phenotype HP:0001460 Aplasia/Hypoplasia involving the skeletal musculature -0.0034730728964029733 -0.8926423939980919 1.0 7055 +Phenotype HP:0030973 Postexertional symptom exacerbation -0.0034928903502919884 -0.8928777953380019 1.0 7056 +Phenotype HP:0001348 Brisk reflexes -0.0037293205189670164 -0.8956862276831934 1.0 7057 +Biological Process GO:0071826 protein-RNA complex organization -0.0037513000265940732 -0.8959473109472165 1.0 7058 +Phenotype HP:0001756 Vestibular hypofunction -0.0037880910400622803 -0.8963843324695354 1.0 7059 +Biological Process GO:0055078 sodium ion homeostasis -0.004021797305346908 -0.8991604089676299 1.0 7060 +Biological Process GO:0090208 positive regulation of triglyceride metabolic process -0.00407961360118847 -0.8998471790030723 1.0 7061 +Biological Process GO:0006665 sphingolipid metabolic process -0.004128267341171998 -0.9004251117510377 1.0 7062 +Disease MONDO:0015152 autosomal recessive limb-girdle muscular dystrophy -0.004145861842712817 -0.9006341077835731 1.0 7063 +Phenotype HP:0000603 Central scotoma -0.004213511900590161 -0.9014376880193845 1.0 7064 +Phenotype HP:0002057 Prominent glabella -0.004214235790553689 -0.9014462867358652 1.0 7065 +Disease MONDO:0005283 retinal disorder -0.00424423134079599 -0.9018025884463635 1.0 7066 +Phenotype HP:0012248 Prolonged PR interval -0.004304375196317434 -0.9025170063658596 1.0 7067 +Disease MONDO:0001713 inherited aplastic anemia -0.0043160046460193335 -0.9026551466162458 1.0 7068 +Phenotype HP:0002680 J-shaped sella turcica -0.004410518541215991 -0.9037778285558132 1.0 7069 +Disease MONDO:0019502 autosomal recessive non-syndromic intellectual disability -0.004410779371375462 -0.9037809268230967 1.0 7070 +Phenotype HP:0011904 Persistence of hemoglobin F -0.004436388643688893 -0.904085126194543 1.0 7071 +Phenotype HP:0004397 Ectopic anus -0.004488965664577016 -0.904709661578092 1.0 7072 +Biological Process GO:0070071 proton-transporting two-sector ATPase complex assembly -0.004508448214420646 -0.904941084765134 1.0 7073 +Biological Process GO:0022412 cellular process involved in reproduction in multicellular organism -0.004511976075637136 -0.9049829904136613 1.0 7074 +Phenotype HP:0040288 Nasogastric tube feeding -0.00452002578647237 -0.9050786087876014 1.0 7075 +Biological Process GO:0006022 aminoglycan metabolic process -0.004544906801914328 -0.9053741575703139 1.0 7076 +Biological Process GO:0015012 heparan sulfate proteoglycan biosynthetic process -0.004583788296758984 -0.905836010845482 1.0 7077 +Phenotype HP:0025268 Stuttering -0.004590502255408246 -0.9059157625063659 1.0 7078 +Biological Process GO:0030149 sphingolipid catabolic process -0.004592347269088526 -0.9059376784747301 1.0 7079 +Phenotype HP:0045059 Hyperkeratotic papule -0.004676002987165306 -0.9069313817141418 1.0 7080 +Phenotype HP:0002056 Abnormality of the glabella -0.004729892421275972 -0.907571506579207 1.0 7081 +Biological Process GO:2000279 negative regulation of DNA biosynthetic process -0.004743039121130721 -0.9077276694636288 1.0 7082 +Phenotype HP:0012075 Personality disorder -0.004756534592770478 -0.9078879752286634 1.0 7083 +Phenotype HP:0002263 Exaggerated cupid's bow -0.004761084042645747 -0.9079420158033249 1.0 7084 +Phenotype HP:0010307 Stridor -0.004768903581180428 -0.9080349000789161 1.0 7085 +Phenotype HP:0006502 Aplasia/Hypoplasia involving the carpal bones -0.004785555271103581 -0.9082326969372627 1.0 7086 +Biological Process GO:1900424 regulation of defense response to bacterium -0.004839778526399385 -0.9088767870924561 1.0 7087 +Phenotype HP:0001326 EEG with irregular generalized spike and wave complexes -0.004926475919323936 -0.9099066208226336 1.0 7088 +Biological Process GO:0050658 RNA transport -0.004947612193642259 -0.9101576877519729 1.0 7089 +Biological Process GO:0050657 nucleic acid transport -0.004947612193642259 -0.9101576877519729 1.0 7089 +Phenotype HP:0025045 Abnormal brain lactate level by MRS -0.005001088970238099 -0.910792910870706 1.0 7091 +Phenotype HP:0012707 Elevated brain lactate level by MRS -0.005001088970238099 -0.910792910870706 1.0 7091 +Phenotype HP:0010489 Absent palmar crease -0.005021057146919805 -0.911030102569133 1.0 7093 +Biological Process GO:0035278 miRNA-mediated gene silencing by inhibition of translation -0.005023032302375663 -0.9110535644246994 1.0 7094 +Biological Process GO:0006418 tRNA aminoacylation for protein translation -0.0050258272854741826 -0.9110867645910832 1.0 7095 +Phenotype HP:0007766 Optic disc hypoplasia -0.005035880023499306 -0.9112061758945801 1.0 7096 +Biological Process GO:0048598 embryonic morphogenesis -0.0050564119649294526 -0.9114500642644322 1.0 7097 +Biological Process GO:0032330 regulation of chondrocyte differentiation -0.005077501801243667 -0.9117005795806101 1.0 7098 +Phenotype HP:0100299 Muscle fiber inclusion bodies -0.005078175870971036 -0.9117085865081349 1.0 7099 +Phenotype HP:0040131 Abnormal motor nerve conduction velocity -0.005279005839818662 -0.9140941423936477 1.0 7100 +Phenotype HP:0009888 Abnormality of secondary sexual hair -0.005299789657322362 -0.914341022669803 1.0 7101 +Phenotype HP:0031329 Interstitial cardiac fibrosis -0.005337548157958505 -0.9147895364744784 1.0 7102 +Biological Process GO:1901836 regulation of transcription of nucleolar large rRNA by RNA polymerase I -0.0053567003093468735 -0.9150170350282396 1.0 7103 +Biological Process GO:0009190 cyclic nucleotide biosynthetic process -0.005386808616192118 -0.9153746761164181 1.0 7104 +Phenotype HP:0003774 Stage 5 chronic kidney disease -0.00540464419911868 -0.9155865358307135 1.0 7105 +Phenotype HP:0006385 Short lower limbs -0.005427703016198437 -0.9158604396564881 1.0 7106 +Biological Process GO:0042445 hormone metabolic process -0.005440738523007749 -0.916015281735925 1.0 7107 +Phenotype HP:0011461 Fetal onset -0.005479875713536586 -0.9164801722885861 1.0 7108 +Phenotype HP:0033684 Abnormal muscle fiber-type distribution -0.0055801608540573255 -0.9176714078824144 1.0 7109 +Biological Process GO:0006656 phosphatidylcholine biosynthetic process -0.005610147642780339 -0.9180276055193323 1.0 7110 +Phenotype HP:0002571 Achalasia -0.0056103042870612185 -0.9180294662161611 1.0 7111 +Phenotype HP:0002231 Sparse body hair -0.0057939394476080874 -0.92021077381952 1.0 7112 +Phenotype HP:0004491 Large posterior fontanelle -0.005856394831561529 -0.9209526491961234 1.0 7113 +Phenotype HP:0002992 Abnormal tibia morphology -0.005858364983590603 -0.9209760516185571 1.0 7114 +Phenotype HP:0007803 Monochromacy -0.005863765947094812 -0.9210402068855665 1.0 7115 +Phenotype HP:5201016 Submucous cleft palate -0.00591377269006732 -0.9216342112600028 1.0 7116 +Phenotype HP:0007010 Poor fine motor coordination -0.005918100093257106 -0.9216856142563166 1.0 7117 +Phenotype HP:0100285 EMG -0.005940519321271598 -0.9219519207326135 1.0 7118 +Phenotype HP:0002877 Nocturnal hypoventilation -0.006001274653142152 -0.9226736020650945 1.0 7119 +Phenotype HP:0005576 Tubulointerstitial fibrosis -0.006021057998178536 -0.9229085982434909 1.0 7120 +Phenotype HP:0007141 Sensorimotor neuropathy -0.0060617554540358665 -0.9233920223853306 1.0 7121 +Disease MONDO:0001639 deficiency anemia -0.006170789140792943 -0.9246871774593218 1.0 7122 +Disease MONDO:0016624 inherited deficiency anemia -0.006170789140792943 -0.9246871774593218 1.0 7122 +Phenotype HP:0003042 Elbow dislocation -0.006182247757554382 -0.924823288473091 1.0 7124 +Phenotype HP:0025116 Fetal distress -0.006198351922747758 -0.9250145815668397 1.0 7125 +Biological Process GO:0001504 neurotransmitter uptake -0.006225009964783368 -0.9253312387342894 1.0 7126 +Phenotype HP:0000320 Bird-like facies -0.006239836129192655 -0.9255073511141753 1.0 7127 +Phenotype HP:0031951 Nocturnal seizures -0.00624366104891938 -0.9255527853679276 1.0 7128 +Phenotype HP:0005274 Prominent nasal tip -0.006268953092835039 -0.9258532165464308 1.0 7129 +Biological Process GO:0045638 negative regulation of myeloid cell differentiation -0.006299487852118091 -0.9262159232437348 1.0 7130 +Phenotype HP:0000097 Focal segmental glomerulosclerosis -0.006341411813207909 -0.9267139164102711 1.0 7131 +Biological Process GO:0046456 icosanoid biosynthetic process -0.006348165193247102 -0.9267941363375661 1.0 7132 +Phenotype HP:0002191 Progressive spasticity -0.006482435086757166 -0.9283890593291297 1.0 7133 +Phenotype HP:0000749 Paroxysmal bursts of laughter -0.0065314802960265705 -0.9289716421393557 1.0 7134 +Biological Process GO:0046467 membrane lipid biosynthetic process -0.0065436651425143655 -0.9291163796624445 1.0 7135 +Phenotype HP:0001884 Talipes calcaneovalgus -0.006553326426190109 -0.9292311410811039 1.0 7136 +Phenotype HP:0003387 Decreased number of large peripheral myelinated nerve fibers -0.006565312008618651 -0.9293735116489419 1.0 7137 +Biological Process GO:0006401 RNA catabolic process -0.0066461491560008135 -0.9303337345370503 1.0 7138 +Phenotype HP:0000580 Pigmentary retinopathy -0.006665292381605958 -0.9305611270660243 1.0 7139 +Biological Process GO:0046831 regulation of RNA export from nucleus -0.006672871488826226 -0.9306511553817184 1.0 7140 +Phenotype HP:0020221 Clonic seizure -0.006730186087760659 -0.9313319660176926 1.0 7141 +Phenotype HP:0030506 Yellow/white lesions of the retina -0.006888880402492914 -0.9332170141441213 1.0 7142 +Disease MONDO:0019214 inborn carbohydrate metabolic disorder -0.006898600094161322 -0.9333324693612782 1.0 7143 +Disease MONDO:0037792 carbohydrate metabolism disease -0.006898600094161322 -0.9333324693612782 1.0 7143 +Phenotype HP:0002970 Genu varum -0.006909811069889749 -0.9334656387746121 1.0 7145 +Biological Process GO:0001580 detection of chemical stimulus involved in sensory perception of bitter taste -0.006917280367390255 -0.9335543627171353 1.0 7146 +Biological Process GO:0050913 sensory perception of bitter taste -0.006917280367390255 -0.9335543627171353 1.0 7146 +Phenotype HP:0002166 Impaired vibration sensation in the lower limbs -0.00693160253417191 -0.9337244883684777 1.0 7148 +Phenotype HP:0002149 Hyperuricemia -0.006933038482660692 -0.9337415452618705 1.0 7149 +Disease MONDO:0019215 classic organic aciduria -0.006958374471090378 -0.934042498434649 1.0 7150 +Phenotype HP:0030631 Hyperautofluorescent macular lesion -0.007073106923903394 -0.9354053462189609 1.0 7151 +Disease MONDO:0013099 combined pituitary hormone deficiencies, genetic form -0.007091168907923606 -0.9356198952353786 1.0 7152 +Disease MONDO:0005152 hypopituitarism -0.007091168907923606 -0.9356198952353786 1.0 7152 +Biological Process GO:0001676 long-chain fatty acid metabolic process -0.007156677013600676 -0.9363980323229031 1.0 7154 +Phenotype HP:0012157 Subcortical cerebral atrophy -0.007184141129515265 -0.9367242644272866 1.0 7155 +Phenotype HP:0007447 Diffuse palmoplantar hyperkeratosis -0.007196824654428058 -0.9368749254948473 1.0 7156 +Phenotype HP:0008771 Aplasia/Hypoplasia of the ear -0.0071983815417639985 -0.93689341895859 1.0 7157 +Phenotype HP:0009025 Increased connective tissue -0.007259760195926557 -0.9376225044159175 1.0 7158 +Phenotype HP:0010585 Small epiphyses -0.0072759252166614274 -0.9378145203813373 1.0 7159 +Biological Process GO:1902369 negative regulation of RNA catabolic process -0.007292733323109424 -0.9380141752311161 1.0 7160 +Phenotype HP:0002188 Delayed CNS myelination -0.0072999866115679435 -0.9381003333133526 1.0 7161 +Phenotype HP:0001545 Anteriorly placed anus -0.007310060569887478 -0.9382199966818104 1.0 7162 +Phenotype HP:0004283 Narrow palm -0.007336350095740851 -0.9385322764351097 1.0 7163 +Phenotype HP:0001848 Calcaneovalgus deformity -0.007354415296492389 -0.938746863661424 1.0 7164 +Phenotype HP:0007688 Undetectable light- and dark-adapted electroretinogram -0.007571080762518889 -0.9413205212715541 1.0 7165 +Disease MONDO:0015369 Joubert syndrome and related disorders -0.007602840988384818 -0.9416977846559704 1.0 7166 +Biological Process GO:0051292 nuclear pore complex assembly -0.0076123455146865915 -0.9418106840344262 1.0 7167 +Phenotype HP:0031097 Abnormal thyroid-stimulating hormone level -0.007632863181091576 -0.942054402838598 1.0 7168 +Biological Process GO:0008608 attachment of spindle microtubules to kinetochore -0.007653438563645976 -0.9422988072232173 1.0 7169 +Disease MONDO:0024298 vitamin deficiency disorder -0.007709734737424867 -0.9429675205106848 1.0 7170 +Disease MONDO:0005528 inborn vitamin metabolic disorder -0.007709734737424867 -0.9429675205106848 1.0 7170 +Biological Process GO:0060538 skeletal muscle organ development -0.007735140308987143 -0.9432693002256993 1.0 7172 +Phenotype HP:0008209 Premature ovarian insufficiency -0.007775813001336784 -0.9437524302145703 1.0 7173 +Biological Process GO:0015695 organic cation transport -0.007807580904845235 -0.9441297847977526 1.0 7174 +Phenotype HP:0009799 Supernumerary spleens -0.007818848620650298 -0.9442636281972675 1.0 7175 +Phenotype HP:0008554 Cochlear malformation -0.00791872460493348 -0.945450003634635 1.0 7176 +Biological Process GO:0071459 protein localization to chromosome, centromeric region -0.007925562039158285 -0.9455312219983603 1.0 7177 +Phenotype HP:0008322 Abnormal mitochondrial morphology -0.008002409113450293 -0.9464440488608732 1.0 7178 +Phenotype HP:0004637 Decreased cervical spine mobility -0.008091667335043962 -0.9475043013574252 1.0 7179 +Phenotype HP:0001349 Facial diplegia -0.008091833753846256 -0.9475062781607656 1.0 7180 +Phenotype HP:0006288 Advanced eruption of teeth -0.008103964679888831 -0.9476503751906244 1.0 7181 +Biological Process GO:0170033 L-amino acid metabolic process -0.008111017996999426 -0.9477341579160917 1.0 7182 +Phenotype HP:0011937 Hypoplastic fifth toenail -0.008160356679452141 -0.9483202267432886 1.0 7183 +Phenotype HP:0006264 Aplasia/Hypoplasia of the 2nd finger -0.00824792515242545 -0.9493604075852492 1.0 7184 +Biological Process GO:0006220 pyrimidine nucleotide metabolic process -0.008252441449364767 -0.9494140543532398 1.0 7185 +Phenotype HP:0004878 Intercostal muscle weakness -0.008269382297072525 -0.9496152859681561 1.0 7186 +Biological Process GO:0045980 negative regulation of nucleotide metabolic process -0.008315397497724364 -0.9501618768647635 1.0 7187 +Phenotype HP:0002298 Absent hair -0.008320882469097235 -0.9502270300180279 1.0 7188 +Disease MONDO:0015947 inherited ichthyosis -0.00836746736969407 -0.9507803880872069 1.0 7189 +Disease MONDO:0019269 ichthyosis -0.00836746736969407 -0.9507803880872069 1.0 7189 +Biological Process GO:0006310 DNA recombination -0.008447956788321997 -0.9517364804843284 1.0 7191 +Biological Process GO:1904357 negative regulation of telomere maintenance via telomere lengthening -0.008455286702238496 -0.9518235487609612 1.0 7192 +Biological Process GO:1903509 liposaccharide metabolic process -0.008550353214314965 -0.9529527949521572 1.0 7193 +Phenotype HP:0007730 Iris hypopigmentation -0.008563761931836611 -0.9531120702096523 1.0 7194 +Disease MONDO:0015993 cone-rod dystrophy -0.008567405502528658 -0.9531553503115144 1.0 7195 +Biological Process GO:0051873 killing by host of symbiont cells -0.008636911522028612 -0.9539809765606649 1.0 7196 +Phenotype HP:0040082 Happy demeanor -0.008660421548649433 -0.9542602400724589 1.0 7197 +Phenotype HP:0012250 ST segment depression -0.008763546195014182 -0.9554852046954605 1.0 7198 +Phenotype HP:0006042 Y-shaped metacarpals -0.008781734349996961 -0.9557012524318355 1.0 7199 +Phenotype HP:0010852 EEG with photoparoxysmal response -0.008839380515207829 -0.9563860015730373 1.0 7200 +Biological Process GO:0009306 protein secretion -0.00883972201704264 -0.9563900580976518 1.0 7201 +Phenotype HP:0008443 Neuropathic spinal arthropathy -0.008841165675571805 -0.956407206574648 1.0 7202 +Phenotype HP:0025114 Hypergranulosis -0.008871401695337289 -0.9567663646989055 1.0 7203 +Phenotype HP:0001942 Metabolic acidosis -0.008903399281114499 -0.9571464475596012 1.0 7204 +Phenotype HP:0008800 Limited hip movement -0.008934553994375483 -0.9575165183712816 1.0 7205 +Phenotype HP:0002616 Aortic root aneurysm -0.008943695040622757 -0.9576251001571578 1.0 7206 +Phenotype HP:0002058 Myopathic facies -0.008973118247018741 -0.9579746032895406 1.0 7207 +Biological Process GO:0046189 phenol-containing compound biosynthetic process -0.008995802936177633 -0.9582440630422088 1.0 7208 +Disease MONDO:0017758 disorder of vitamin and non-protein cofactor absorption and transport -0.009001562031474508 -0.9583124723725468 1.0 7209 +Phenotype HP:0010464 Streak ovary -0.00900613712354481 -0.958366817537652 1.0 7210 +Phenotype HP:0002307 Drooling -0.009148506501039488 -0.9600579501327922 1.0 7211 +Phenotype HP:0003502 Mild short stature -0.009158986574909544 -0.9601824375389535 1.0 7212 +Phenotype HP:0006870 Lobar holoprosencephaly -0.00918023592774686 -0.9604348476698482 1.0 7213 +Biological Process GO:0030326 embryonic limb morphogenesis -0.00918601002152597 -0.9605034351594409 1.0 7214 +Biological Process GO:0035113 embryonic appendage morphogenesis -0.00918601002152597 -0.9605034351594409 1.0 7214 +Phenotype HP:0000837 Increased circulating gonadotropin level -0.009188984086354823 -0.960538762545573 1.0 7216 +Phenotype HP:0007430 Generalized edema -0.009199067860929055 -0.9606585425162705 1.0 7217 +Phenotype HP:0025548 Increased mean corpuscular hemoglobin concentration -0.00921996859317864 -0.9609068115625469 1.0 7218 +Phenotype HP:0012171 Stereotypical hand wringing -0.009224944962747506 -0.9609659232966253 1.0 7219 +Phenotype HP:5200009 Midline hand movements -0.009224944962747506 -0.9609659232966253 1.0 7219 +Disease MONDO:0018921 Meckel syndrome -0.00923539826677855 -0.9610900927176405 1.0 7221 +Phenotype HP:0032120 Abnormal peripheral nervous system physiology -0.009245592386916135 -0.9612111834265191 1.0 7222 +Phenotype HP:0001847 Long hallux -0.009298693032898875 -0.9618419386831948 1.0 7223 +Phenotype HP:0002396 Cogwheel rigidity -0.009329788385648241 -0.9622113043818951 1.0 7224 +Phenotype HP:0000074 Ureteropelvic junction obstruction -0.009374927097184127 -0.9627474839151926 1.0 7225 +Biological Process GO:0008652 amino acid biosynthetic process -0.00966904022316184 -0.9662411024359175 1.0 7226 +Biological Process GO:0170041 non-proteinogenic amino acid metabolic process -0.009693191263261847 -0.9665279802170695 1.0 7227 +Phenotype HP:0001036 Parakeratosis -0.00973263459731033 -0.966996507291109 1.0 7228 +Phenotype HP:0012514 Lower limb pain -0.009789416365684644 -0.9676709887069674 1.0 7229 +Phenotype HP:0008959 Distal upper limb muscle weakness -0.00986942745415531 -0.9686213992662216 1.0 7230 +Phenotype HP:0000662 Nyctalopia -0.00989770664709555 -0.9689573132512869 1.0 7231 +Biological Process GO:0015748 organophosphate ester transport -0.009900327232853279 -0.9689884418413759 1.0 7232 +Phenotype HP:0000046 Small scrotum -0.010016034420553988 -0.9703628679999786 1.0 7233 +Biological Process GO:0043039 tRNA aminoacylation -0.010025130207634625 -0.9704709121754973 1.0 7234 +Biological Process GO:0043038 amino acid activation -0.010025130207634625 -0.9704709121754973 1.0 7234 +Phenotype HP:0000070 Ureterocele -0.010040542269440289 -0.9706539841291472 1.0 7236 +Biological Process GO:0071805 potassium ion transmembrane transport -0.010128560108285889 -0.9716995027571341 1.0 7237 +Phenotype HP:0001084 Corneal arcus -0.010155967052400516 -0.9720250557471173 1.0 7238 +Phenotype HP:0006989 Dysplastic corpus callosum -0.010193921841889164 -0.9724759011660933 1.0 7239 +Biological Process GO:0042733 embryonic digit morphogenesis -0.01021367513565874 -0.9727105403809508 1.0 7240 +Phenotype HP:0003254 Abnormality of DNA repair -0.010215720171517173 -0.9727348323098705 1.0 7241 +Phenotype HP:0007002 Motor axonal neuropathy -0.010268482092342213 -0.9733615640246506 1.0 7242 +Biological Process GO:0022613 ribonucleoprotein complex biogenesis -0.010278790288354767 -0.9734840097821631 1.0 7243 +Biological Process GO:0045922 negative regulation of fatty acid metabolic process -0.010353731711879144 -0.9743742003995451 1.0 7244 +Biological Process GO:0034728 nucleosome organization -0.010373909833284456 -0.9746138859233404 1.0 7245 +Phenotype HP:0000073 Ureteral duplication -0.010393403358407882 -0.9748454394800851 1.0 7246 +Phenotype HP:0003273 Hip contracture -0.010450312616827828 -0.97552143528461 1.0 7247 +Phenotype HP:0000473 Torticollis -0.010648971715186084 -0.9778812045163562 1.0 7248 +Phenotype HP:0000625 Eyelid coloboma -0.010650785012187525 -0.9779027437386087 1.0 7249 +Phenotype HP:0001132 Lens subluxation -0.01073431674088221 -0.9788949741719354 1.0 7250 +Disease MONDO:0005027 epilepsy -0.010823072420404367 -0.9799492572297464 1.0 7251 +Biological Process GO:0035107 appendage morphogenesis -0.010859208255336927 -0.9803784962232887 1.0 7252 +Biological Process GO:0035108 limb morphogenesis -0.010859208255336927 -0.9803784962232887 1.0 7252 +Phenotype HP:0012426 Optic disc drusen -0.010864801289678594 -0.9804449330009678 1.0 7254 +Biological Process GO:0045814 negative regulation of gene expression, epigenetic -0.010917056434658567 -0.9810656449861889 1.0 7255 +Biological Process GO:0072376 protein activation cascade -0.010919105488113479 -0.9810899846380702 1.0 7256 +Phenotype HP:0030047 Abnormal lateral ventricle morphology -0.010979291920189649 -0.9818049083025571 1.0 7257 +Phenotype HP:0002299 Brittle hair -0.011025738695478404 -0.9823566256522581 1.0 7258 +Phenotype HP:0030038 Enchondroma -0.011057898083036477 -0.9827386304730718 1.0 7259 +Biological Process GO:0050829 defense response to Gram-negative bacterium -0.011062180729465743 -0.982789501826852 1.0 7260 +Phenotype HP:0003186 Inverted nipples -0.011070207988354008 -0.9828848535056642 1.0 7261 +Biological Process GO:0072330 monocarboxylic acid biosynthetic process -0.011092698129113954 -0.9831520023179842 1.0 7262 +Phenotype HP:0000961 Cyanosis -0.011155833816347327 -0.9839019586672765 1.0 7263 +Disease MONDO:0022687 cerebellar degeneration -0.011247150996292365 -0.9849866684708796 1.0 7264 +Phenotype HP:0000895 Lateral clavicle hook -0.011263536132367635 -0.9851812990731924 1.0 7265 +Disease MONDO:0019952 congenital myopathy -0.011315689002899143 -0.985800796192854 1.0 7266 +Disease MONDO:0003832 complement deficiency -0.011349309623594372 -0.986200158250391 1.0 7267 +Biological Process GO:2001259 positive regulation of cation channel activity -0.01136228919038862 -0.9863543358471665 1.0 7268 +Biological Process GO:0006364 rRNA processing -0.011413034227311103 -0.9869571100356286 1.0 7269 +Phenotype HP:0034197 Third trimester onset -0.011477355208679763 -0.9877211458841945 1.0 7270 +Phenotype HP:0011006 Abnormal morphology of the musculature of the neck -0.011554005374075693 -0.9886316337672281 1.0 7271 +Phenotype HP:0001684 Secundum atrial septal defect -0.011586594961447982 -0.989018748710324 1.0 7272 +Disease MONDO:0000015 classic complement early component deficiency -0.011598378142694266 -0.9891587150586405 1.0 7273 +Phenotype HP:0011343 Moderate global developmental delay -0.011609560333603053 -0.9892915425519099 1.0 7274 +Disease MONDO:0000062 isolated microphthalmia -0.011654127872470443 -0.989820937418911 1.0 7275 +Biological Process GO:0016126 sterol biosynthetic process -0.011674916160554494 -0.9900678707987904 1.0 7276 +Biological Process GO:0086012 membrane depolarization during cardiac muscle cell action potential -0.011682406571844828 -0.9901568455411613 1.0 7277 +Biological Process GO:2000774 positive regulation of cellular senescence -0.011763018178425622 -0.9911143893461168 1.0 7278 +Phenotype HP:0002352 Leukoencephalopathy -0.011818249594201413 -0.9917704549210167 1.0 7279 +Phenotype HP:0012384 Rhinitis -0.011839011674076971 -0.99201707698707 1.0 7280 +Phenotype HP:0000199 Tongue nodules -0.011936177739757747 -0.9931712626954428 1.0 7281 +Phenotype HP:0012801 Narrow jaw -0.0119947500791866 -0.9938670133837216 1.0 7282 +Biological Process GO:0072378 blood coagulation, fibrin clot formation -0.012006361893434958 -0.9940049441516274 1.0 7283 +Phenotype HP:0011153 Focal motor seizure -0.012008486627221426 -0.9940301827712346 1.0 7284 +Phenotype HP:0007204 Diffuse white matter abnormalities -0.012039540573293817 -0.9943990566213201 1.0 7285 +Disease MONDO:0015780 dyskeratosis congenita -0.012176568992119163 -0.9960267467160157 1.0 7286 +Phenotype HP:0000839 Pituitary dwarfism -0.012244150223780892 -0.9968295094006185 1.0 7287 +Phenotype HP:0006660 Aplastic clavicle -0.012259072389558812 -0.9970067621313757 1.0 7288 +Biological Process GO:0042475 odontogenesis of dentin-containing tooth -0.012285542073384503 -0.9973211818885482 1.0 7289 +Disease MONDO:0700120 BAFopathy -0.012466942155953342 -0.9994759401504136 1.0 7290 +Biological Process GO:0008206 bile acid metabolic process -0.012478316177133797 -0.9996110462967954 1.0 7291 +Biological Process GO:0043923 positive regulation by host of viral transcription -0.012489343921022744 -0.9997420391933693 1.0 7292 +Biological Process GO:0009301 snRNA transcription -0.012550349065811206 -1.000466687924989 1.0 7293 +Phenotype HP:0007209 Facial paralysis -0.012566103431521203 -1.0006538259306248 1.0 7294 +Biological Process GO:0090308 regulation of DNA methylation-dependent heterochromatin formation -0.012575994077528296 -1.0007713118264256 1.0 7295 +Phenotype HP:0000550 Undetectable electroretinogram -0.012591850813657546 -1.0009596658376083 1.0 7296 +Phenotype HP:0004307 Abnormal anatomic location of the heart -0.012658127321500734 -1.0017469303791695 1.0 7297 +Biological Process GO:0019369 arachidonic acid metabolic process -0.012686935939955513 -1.0020891331375656 1.0 7298 +Phenotype HP:0012704 Widened subarachnoid space -0.012752233906672128 -1.0028647740924823 1.0 7299 +Biological Process GO:0018198 peptidyl-cysteine modification -0.012789587074921727 -1.003308473162256 1.0 7300 +Phenotype HP:0002453 Abnormal globus pallidus morphology -0.012806722543916571 -1.0035120165833211 1.0 7301 +Phenotype HP:0001989 Fetal akinesia sequence -0.01282746259792189 -1.0037583770153928 1.0 7302 +Phenotype HP:0100134 Abnormality of the axillary hair -0.012907402446834748 -1.0047079413565883 1.0 7303 +Biological Process GO:0022404 molting cycle process -0.012966119612656257 -1.0054054123630811 1.0 7304 +Biological Process GO:0022405 hair cycle process -0.012966119612656257 -1.0054054123630811 1.0 7304 +Biological Process GO:0055002 striated muscle cell development -0.012995794548716022 -1.005757905662641 1.0 7306 +Biological Process GO:0030239 myofibril assembly -0.012995794548716022 -1.005757905662641 1.0 7306 +Biological Process GO:2001252 positive regulation of chromosome organization -0.013051644333908374 -1.0064213165297278 1.0 7308 +Phenotype HP:0008772 Aplasia/Hypoplasia of the external ear -0.013065630632923986 -1.0065874525806604 1.0 7309 +Disease MONDO:0018958 nemaline myopathy -0.013092815799400359 -1.0069103711881693 1.0 7310 +Biological Process GO:0006999 nuclear pore organization -0.013096868949938445 -1.0069585164783195 1.0 7311 +Phenotype HP:0002876 Episodic tachypnea -0.013101318866311162 -1.007011374745708 1.0 7312 +Biological Process GO:0006098 pentose-phosphate shunt -0.013185478773930281 -1.0080110669933193 1.0 7313 +Phenotype HP:0009487 Ulnar deviation of the hand -0.013370141032430949 -1.0102045749648938 1.0 7314 +Phenotype HP:0031098 Decreased thyroid-stimulating hormone level -0.013415296274688515 -1.0107409508581302 1.0 7315 +Biological Process GO:0051156 glucose 6-phosphate metabolic process -0.013454657522947944 -1.0112085028773095 1.0 7316 +Phenotype HP:0010655 Epiphyseal stippling -0.013458532085413033 -1.0112545268116129 1.0 7317 +Biological Process GO:0048568 embryonic organ development -0.013479114566025352 -1.0114990155104107 1.0 7318 +Phenotype HP:0007334 Bilateral tonic-clonic seizure with focal onset -0.013479661359618644 -1.0115055105902144 1.0 7319 +Phenotype HP:0000003 Multicystic kidney dysplasia -0.013512171500900116 -1.0118916818340673 1.0 7320 +Biological Process GO:0060392 negative regulation of SMAD protein signal transduction -0.013512419063115733 -1.0118946224982714 1.0 7321 +Phenotype HP:0008479 Hypoplastic vertebral bodies -0.013527856260113325 -1.0120779930199357 1.0 7322 +Biological Process GO:0006367 transcription initiation at RNA polymerase II promoter -0.013533536328766749 -1.0121454636334306 1.0 7323 +Phenotype HP:0001651 Dextrocardia -0.0135857325307569 -1.012765475465198 1.0 7324 +Biological Process GO:0070199 establishment of protein localization to chromosome -0.01362289222143187 -1.0132068763143949 1.0 7325 +Phenotype HP:0002025 Anal stenosis -0.013624580008592124 -1.013226924669811 1.0 7326 +Disease MONDO:0020380 autosomal dominant cerebellar ataxia -0.013697923189483596 -1.0140981305851522 1.0 7327 +Biological Process GO:0090311 regulation of protein deacetylation -0.01371947270298235 -1.0143541061701302 1.0 7328 +Disease MONDO:0016764 isolated anophthalmia-microphthalmia syndrome -0.0137433690967399 -1.0146379591383796 1.0 7329 +Phenotype HP:0011364 White hair -0.013765864942789197 -1.014905175720897 1.0 7330 +Disease MONDO:0019391 Fanconi anemia -0.013771343397272817 -1.0149702514633865 1.0 7331 +Biological Process GO:1900543 negative regulation of purine nucleotide metabolic process -0.013773904960872274 -1.0150006789596204 1.0 7332 +Phenotype HP:0004742 Abnormal renal collecting system morphology -0.01384084655274842 -1.015795843692265 1.0 7333 +Biological Process GO:0006505 GPI anchor metabolic process -0.013850055996566635 -1.0159052379377 1.0 7334 +Disease MONDO:0017666 diffuse palmoplantar keratoderma -0.013920357228409008 -1.0167403101051793 1.0 7335 +Biological Process GO:0035196 miRNA processing -0.01398709685196775 -1.0175330757600813 1.0 7336 +Phenotype HP:0001105 Retinal atrophy -0.014023833955439935 -1.0179694569132909 1.0 7337 +Disease MONDO:0005500 congenital disorder of glycosylation type I -0.014027723775354328 -1.0180156620829854 1.0 7338 +Biological Process GO:0030166 proteoglycan biosynthetic process -0.014054485544866768 -1.0183335513757712 1.0 7339 +Phenotype HP:0000992 Cutaneous photosensitivity -0.014078471061198528 -1.0186184629852317 1.0 7340 +Disease MONDO:0017672 focal palmoplantar keratoderma -0.01410944357133892 -1.0189863694997747 1.0 7341 +Biological Process GO:0035592 establishment of protein localization to extracellular region -0.014160114967164183 -1.0195882689435267 1.0 7342 +Phenotype HP:0001612 Weak cry -0.014193840261433888 -1.019988874364607 1.0 7343 +Biological Process GO:0055070 copper ion homeostasis -0.014215438988643747 -1.0202454345339418 1.0 7344 +Phenotype HP:0008398 Hypoplastic fifth fingernail -0.014219427183638444 -1.0202928082506075 1.0 7345 +Phenotype HP:0008054 Abnormal morphology of the conjunctival vasculature -0.014280002839907713 -1.0210123553090527 1.0 7346 +Phenotype HP:0030681 Abnormal morphology of myocardial trabeculae -0.014308822751334827 -1.0213546922108578 1.0 7347 +Phenotype HP:0006855 Cerebellar vermis atrophy -0.0143098140761444 -1.0213664676482963 1.0 7348 +Biological Process GO:1901616 organic hydroxy compound catabolic process -0.014333674107975813 -1.0216498886919312 1.0 7349 +Phenotype HP:0007183 Focal T2 hyperintense basal ganglia lesion -0.0143465792009283 -1.0218031816522524 1.0 7350 +Phenotype HP:0025175 Honeycomb lung -0.014381132176050304 -1.0222136186683872 1.0 7351 +Phenotype HP:0025390 Reticular pattern on pulmonary HRCT -0.014381132176050304 -1.0222136186683872 1.0 7351 +Phenotype HP:0033367 Orthodeoxia -0.014381132176050304 -1.0222136186683872 1.0 7351 +Phenotype HP:0031631 Subpleural honeycombing -0.014381132176050304 -1.0222136186683872 1.0 7351 +Phenotype HP:0031950 Usual interstitial pneumonia -0.014381132176050304 -1.0222136186683872 1.0 7351 +Phenotype HP:0007240 Progressive gait ataxia -0.014386470087209835 -1.0222770249690307 1.0 7356 +Phenotype HP:0002550 Absent facial hair -0.014409052802045741 -1.0225452734211755 1.0 7357 +Phenotype HP:0000878 11 pairs of ribs -0.014538432408547575 -1.0240821072091144 1.0 7358 +Phenotype HP:0011154 Focal autonomic seizure -0.014666741452896481 -1.025606224339976 1.0 7359 +Biological Process GO:0070198 protein localization to chromosome, telomeric region -0.014708999151581637 -1.02610818180372 1.0 7360 +Phenotype HP:0030853 Heterotaxy -0.014712698896620635 -1.0261521291717517 1.0 7361 +Biological Process GO:0006575 cellular modified amino acid metabolic process -0.014742048869299751 -1.0265007623984859 1.0 7362 +Phenotype HP:0008551 Microtia -0.014764912378205874 -1.0267723462589398 1.0 7363 +Biological Process GO:1901976 regulation of cell cycle checkpoint -0.014795369412739845 -1.027134129703934 1.0 7364 +Biological Process GO:0010566 regulation of ketone biosynthetic process -0.014824884488876533 -1.0274847241097056 1.0 7365 +Biological Process GO:0015015 heparan sulfate proteoglycan biosynthetic process, enzymatic modification -0.014900442221367882 -1.0283822355442538 1.0 7366 +Phenotype HP:0005135 Abnormal T-wave -0.014950454787920675 -1.0289763090940045 1.0 7367 +Phenotype HP:0007166 Paroxysmal dyskinesia -0.014969955301148863 -1.0292079456588505 1.0 7368 +Phenotype HP:0003391 Gowers sign -0.014982917929595274 -1.0293619220537058 1.0 7369 +Biological Process GO:0031214 biomineral tissue development -0.014996268482208253 -1.0295205064001731 1.0 7370 +Biological Process GO:0000075 cell cycle checkpoint signaling -0.015001291705054154 -1.0295801746802262 1.0 7371 +Biological Process GO:0015669 gas transport -0.015023107093236288 -1.0298393084537922 1.0 7372 +Phenotype HP:0001129 Large central visual field defect -0.015036080125474083 -1.0299934084299334 1.0 7373 +Phenotype HP:0002305 Athetosis -0.01507611213136495 -1.0304689280339536 1.0 7374 +Phenotype HP:0002625 Deep venous thrombosis -0.01511860304606083 -1.0309736557507143 1.0 7375 +Biological Process GO:1900151 regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay -0.015213058412792968 -1.032095642460761 1.0 7376 +Phenotype HP:0007543 Epidermal hyperkeratosis -0.015221868282043971 -1.0322002903654681 1.0 7377 +Phenotype HP:4000209 Abnormal erythrocyte adenosine deaminase activity -0.015268414157534549 -1.0327531848754858 1.0 7378 +Phenotype HP:0001662 Bradycardia -0.015343182467912442 -1.0336413191708567 1.0 7379 +Phenotype HP:0002313 Spastic paraparesis -0.015430923859088175 -1.0346835540191883 1.0 7380 +Biological Process GO:0046471 phosphatidylglycerol metabolic process -0.015464693012106956 -1.0350846804157863 1.0 7381 +Biological Process GO:0060261 positive regulation of transcription initiation by RNA polymerase II -0.015509520918991493 -1.03561716806052 1.0 7382 +Phenotype HP:0030760 Renal fibrosis -0.015530623880869676 -1.03586783928852 1.0 7383 +Phenotype HP:0045075 Sparse eyebrow -0.015658994698978912 -1.0373926901981019 1.0 7384 +Biological Process GO:1900152 negative regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay -0.01566431963552728 -1.0374559423800138 1.0 7385 +Biological Process GO:0006007 glucose catabolic process -0.015711609503030077 -1.0380176743884075 1.0 7386 +Phenotype HP:0010296 Ankyloglossia -0.015801096532541026 -1.0390806447765017 1.0 7387 +Phenotype HP:0001741 Phimosis -0.015813427753631037 -1.0392271210081898 1.0 7388 +Phenotype HP:0012865 Abnormal sperm head morphology -0.015865428037990625 -1.039844805635211 1.0 7389 +Biological Process GO:0071044 histone mRNA catabolic process -0.015878995436409804 -1.0400059657814567 1.0 7390 +Phenotype HP:0008518 Aplasia/Hypoplasia involving the vertebral column -0.015894696841381117 -1.0401924746937223 1.0 7391 +Biological Process GO:0046470 phosphatidylcholine metabolic process -0.015926690841226332 -1.0405725149589766 1.0 7392 +Phenotype HP:0011483 Anterior synechiae of the anterior chamber -0.01593033473056016 -1.0406157988458204 1.0 7393 +Biological Process GO:0051095 regulation of helicase activity -0.015944362851593175 -1.0407824316789829 1.0 7394 +Phenotype HP:0001734 Annular pancreas -0.015963319478631277 -1.0410076076995722 1.0 7395 +Phenotype HP:0012810 Wide nasal base -0.015965775619400935 -1.0410367829322447 1.0 7396 +Biological Process GO:0006304 DNA modification -0.01598238638905425 -1.0412340937197568 1.0 7397 +Phenotype HP:0002275 Poor motor coordination -0.016011573824756375 -1.0415807962533565 1.0 7398 +Phenotype HP:0007814 Retinal pigment epithelial mottling -0.01605156283952236 -1.0420558051879205 1.0 7399 +Phenotype HP:0030602 Abnormal fundus autofluorescence imaging -0.016113448781642337 -1.0427909164579263 1.0 7400 +Biological Process GO:0045050 protein insertion into ER membrane by stop-transfer membrane-anchor sequence -0.01613714109703368 -1.0430723452842492 1.0 7401 +Phenotype HP:0000187 Broad alveolar ridges -0.016155322670267314 -1.043288314839412 1.0 7402 +Phenotype HP:0001795 Hyperconvex nail -0.01629078800178818 -1.0448974378241283 1.0 7403 +Biological Process GO:0007422 peripheral nervous system development -0.016341503381855915 -1.0454998597340692 1.0 7404 +Phenotype HP:0010919 Abnormal circulating homocysteine concentration -0.016474339523676163 -1.047077751926885 1.0 7405 +Phenotype HP:0002181 Cerebral edema -0.016488436969161357 -1.0472452082295518 1.0 7406 +Biological Process GO:0010927 cellular component assembly involved in morphogenesis -0.016611343458516226 -1.048705151188915 1.0 7407 +Biological Process GO:0032989 cellular anatomical entity morphogenesis -0.016611343458516226 -1.048705151188915 1.0 7407 +Phenotype HP:0001073 Cigarette-paper scars -0.016629366577155524 -1.0489192385434665 1.0 7409 +Phenotype HP:0001787 Abnormal delivery -0.016634489370002115 -1.0489800895643353 1.0 7410 +Biological Process GO:0006066 alcohol metabolic process -0.016657289531580632 -1.049250920954473 1.0 7411 +Biological Process GO:0170038 proteinogenic amino acid biosynthetic process -0.01674431098028384 -1.0502846039765386 1.0 7412 +Biological Process GO:0170034 L-amino acid biosynthetic process -0.01674431098028384 -1.0502846039765386 1.0 7412 +Phenotype HP:0004054 Sclerosis of hand bone -0.01674522670060119 -1.0502954813471077 1.0 7414 +Phenotype HP:0003146 Hypocholesterolemia -0.016763165202188457 -1.0505085635792284 1.0 7415 +Phenotype HP:0005855 Multiple prenatal fractures -0.016769506694249703 -1.0505838909011238 1.0 7416 +Phenotype HP:0012554 Absent thumbnail -0.01678144623075606 -1.05072571451314 1.0 7417 +Phenotype HP:0001027 Soft, doughy skin -0.01678312701802831 -1.0507456797204873 1.0 7418 +Phenotype HP:0031980 Abnormal urine carboxylic acid level -0.01682145249140099 -1.051200928302628 1.0 7419 +Biological Process GO:0141137 positive regulation of gene expression, epigenetic -0.016826363954706602 -1.0512592690485953 1.0 7420 +Biological Process GO:0045815 transcription initiation-coupled chromatin remodeling -0.016826363954706602 -1.0512592690485953 1.0 7420 +Biological Process GO:0006779 porphyrin-containing compound biosynthetic process -0.01687626427827449 -1.0518520093216703 1.0 7422 +Biological Process GO:0006783 heme biosynthetic process -0.01687626427827449 -1.0518520093216703 1.0 7422 +Biological Process GO:0033014 tetrapyrrole biosynthetic process -0.01687626427827449 -1.0518520093216703 1.0 7422 +Biological Process GO:0007095 mitotic G2 DNA damage checkpoint signaling -0.016949051742448207 -1.052716614164003 1.0 7425 +Phenotype HP:0007036 Hypoplasia of olfactory tract -0.017059748463930102 -1.054031523571963 1.0 7426 +Biological Process GO:0009084 glutamine family amino acid biosynthetic process -0.01707460431935326 -1.0542079886361284 1.0 7427 +Phenotype HP:0007165 Periventricular heterotopia -0.017075978572528294 -1.0542243126826276 1.0 7428 +Disease MONDO:0015253 Diamond-Blackfan anemia -0.017179139753893846 -1.0554497112861088 1.0 7429 +Disease MONDO:0001705 pure red-cell aplasia -0.017179139753893846 -1.0554497112861088 1.0 7429 +Biological Process GO:2000781 positive regulation of double-strand break repair -0.017183319091822913 -1.0554993554913608 1.0 7431 +Phenotype HP:0010300 Abnormally low-pitched voice -0.0172407092428708 -1.056181063572024 1.0 7432 +Phenotype HP:0008839 Hypoplastic pelvis -0.01724273438241819 -1.0562051191629 1.0 7433 +Biological Process GO:0042407 cristae formation -0.017259637478407974 -1.0564059023445795 1.0 7434 +Phenotype HP:0002421 Poor head control -0.017387205336008904 -1.0579212152993558 1.0 7435 +Phenotype HP:0008628 Abnormality of the stapes -0.017411968787917953 -1.05821536760534 1.0 7436 +Phenotype HP:0033685 Fiber type grouping -0.01744082214682896 -1.0585581018125996 1.0 7437 +Biological Process GO:0010755 regulation of plasminogen activation -0.01758879610344466 -1.0603158083199138 1.0 7438 +Biological Process GO:0006289 nucleotide-excision repair -0.017601242002979633 -1.0604636467578548 1.0 7439 +Disease MONDO:0017706 disorder of carbohydrate transmembrane transport and absorption -0.017603337211146597 -1.0604885346578168 1.0 7440 +Biological Process GO:0006631 fatty acid metabolic process -0.01761166166817918 -1.0605874166004956 1.0 7441 +Phenotype HP:0000037 Male pseudohermaphroditism -0.017617677033735957 -1.060658870033416 1.0 7442 +Biological Process GO:0005976 polysaccharide metabolic process -0.017633489921433432 -1.060846703191635 1.0 7443 +Biological Process GO:1903579 negative regulation of ATP metabolic process -0.017647692530724512 -1.0610154086810517 1.0 7444 +Phenotype HP:0005716 Lethal skeletal dysplasia -0.017655436801995883 -1.0611073988955424 1.0 7445 +Phenotype HP:0025331 Upgaze palsy -0.017658292658481844 -1.0611413221455799 1.0 7446 +Phenotype HP:0031630 Abnormal subpleural morphology -0.017670816875356543 -1.06129009087491 1.0 7447 +Biological Process GO:0006368 transcription elongation by RNA polymerase II -0.01773798698921558 -1.0620879701026291 1.0 7448 +Biological Process GO:0006354 DNA-templated transcription elongation -0.01773798698921558 -1.0620879701026291 1.0 7448 +Disease MONDO:0002012 methylmalonic acidemia -0.017772095489492212 -1.0624931274307303 1.0 7450 +Phenotype HP:0034198 Second trimester onset -0.017783610465216704 -1.0626299079036283 1.0 7451 +Phenotype HP:0000133 Gonadal dysgenesis -0.01787326930077393 -1.0636949190873628 1.0 7452 +Phenotype HP:0011506 Choroidal neovascularization -0.018000111507005645 -1.0652016124028263 1.0 7453 +Biological Process GO:0046148 pigment biosynthetic process -0.018035357540090446 -1.0656202818979665 1.0 7454 +Phenotype HP:0000920 Enlargement of the costochondral junction -0.01805803797547112 -1.0658896911221913 1.0 7455 +Phenotype HP:0009107 Abnormal ossification involving the femoral head and neck -0.018135011937420176 -1.0668040252179065 1.0 7456 +Phenotype HP:0007514 Edema of the dorsum of hands -0.01815408007661823 -1.067030525834078 1.0 7457 +Phenotype HP:0006376 Limited elbow flexion -0.01820231544269535 -1.0676034889336363 1.0 7458 +Biological Process GO:0009308 amine metabolic process -0.018266894575805992 -1.0683705912339423 1.0 7459 +Biological Process GO:0009161 ribonucleoside monophosphate metabolic process -0.01826960274603162 -1.068402760194869 1.0 7460 +Phenotype HP:0003049 Ulnar deviation of the wrist -0.01827035655185738 -1.0684117142664873 1.0 7461 +Biological Process GO:0005996 monosaccharide metabolic process -0.018280586146153466 -1.0685332263546454 1.0 7462 +Phenotype HP:0030682 Left ventricular noncompaction -0.018302252809694775 -1.0687905935047126 1.0 7463 +Phenotype HP:0031192 Abnormal morphology of left ventricular trabeculae -0.018302252809694775 -1.0687905935047126 1.0 7463 +Biological Process GO:0051155 positive regulation of striated muscle cell differentiation -0.018422917082894008 -1.0702239023318427 1.0 7465 +Biological Process GO:0044818 mitotic G2/M transition checkpoint -0.018443037551336472 -1.070462903025751 1.0 7466 +Biological Process GO:0046415 urate metabolic process -0.01859043406878036 -1.0722137504301996 1.0 7467 +Phenotype HP:0004979 Metaphyseal sclerosis -0.01859950272103883 -1.0723214722851249 1.0 7468 +Phenotype HP:0011510 Drusen -0.018678367565349685 -1.0732582671996755 1.0 7469 +Phenotype HP:0031664 Systolic heart murmur -0.018690363402904753 -1.0734007595828858 1.0 7470 +Phenotype HP:0004972 Elevated mean arterial pressure -0.018786602056385826 -1.0745439290388337 1.0 7471 +Biological Process GO:0090266 regulation of mitotic cell cycle spindle assembly checkpoint -0.018826819998813082 -1.0750216572873172 1.0 7472 +Biological Process GO:0090231 regulation of spindle checkpoint -0.018826819998813082 -1.0750216572873172 1.0 7472 +Biological Process GO:1903504 regulation of mitotic spindle checkpoint -0.018826819998813082 -1.0750216572873172 1.0 7472 +Phenotype HP:0012748 Focal T2 hyperintense brainstem lesion -0.018876874229250218 -1.0756162257409163 1.0 7475 +Disease MONDO:0001967 gonadal dysgenesis -0.01887822879896528 -1.0756323159777204 1.0 7476 +Phenotype HP:0004691 2-3 toe syndactyly -0.01894807510141039 -1.0764619842729222 1.0 7477 +Biological Process GO:1905269 positive regulation of chromatin organization -0.0190136302330568 -1.0772406799577445 1.0 7478 +Disease MONDO:0037829 purine metabolism disease -0.019122746620386488 -1.0785368173892935 1.0 7479 +Disease MONDO:0019236 inborn disorder of purine metabolism -0.019122746620386488 -1.0785368173892935 1.0 7479 +Phenotype HP:0002312 Clumsiness -0.0191590447715424 -1.0789679844537514 1.0 7481 +Biological Process GO:0019751 polyol metabolic process -0.01917426666293709 -1.0791487974709202 1.0 7482 +Phenotype HP:0045055 Tiger tail banding -0.019206451258018564 -1.0795311017189366 1.0 7483 +Biological Process GO:0048736 appendage development -0.019308436062361656 -1.0807425267449402 1.0 7484 +Biological Process GO:0060173 limb development -0.019308436062361656 -1.0807425267449402 1.0 7484 +Biological Process GO:0099587 inorganic ion import across plasma membrane -0.019408202553060416 -1.081927601564346 1.0 7486 +Biological Process GO:0098659 inorganic cation import across plasma membrane -0.019408202553060416 -1.081927601564346 1.0 7486 +Phenotype HP:0100303 Muscle fiber cytoplasmatic inclusion bodies -0.01944910927368171 -1.0824135114546631 1.0 7488 +Phenotype HP:0011157 Focal sensory seizure -0.01946024570175231 -1.0825457953547197 1.0 7489 +Biological Process GO:0097502 mannosylation -0.01950513051879721 -1.0830789590059717 1.0 7490 +Phenotype HP:0011422 Abnormal blood chloride concentration -0.019534510598023358 -1.0834279498528903 1.0 7491 +Biological Process GO:0071392 cellular response to estradiol stimulus -0.01954332257633684 -1.0835326228100657 1.0 7492 +Biological Process GO:1902373 negative regulation of mRNA catabolic process -0.019587340255912133 -1.0840554861814042 1.0 7493 +Phenotype HP:0006801 Hyperactive deep tendon reflexes -0.019606201271225476 -1.0842795264795015 1.0 7494 +Disease MONDO:0000688 inborn organic aciduria -0.019629556484922484 -1.084556951048215 1.0 7495 +Biological Process GO:0050909 sensory perception of taste -0.019652282382284003 -1.084826900291923 1.0 7496 +Biological Process GO:1901607 alpha-amino acid biosynthetic process -0.019654850190896633 -1.084857401969456 1.0 7497 +Phenotype HP:0001623 Breech presentation -0.019748815792674845 -1.0859735710135683 1.0 7498 +Phenotype HP:0010546 Muscle fibrillation -0.01979737836330342 -1.086550420807667 1.0 7499 +Biological Process GO:0032922 circadian regulation of gene expression -0.019809487490828337 -1.0866942589041486 1.0 7500 +Biological Process GO:0009060 aerobic respiration -0.019846422416987863 -1.0871329898912936 1.0 7501 +Biological Process GO:0044283 small molecule biosynthetic process -0.019863182666742585 -1.0873320762760321 1.0 7502 +Biological Process GO:0016441 post-transcriptional gene silencing -0.01992165774593535 -1.0880266716600009 1.0 7503 +Phenotype HP:0025461 Abnormal cell morphology -0.019934699030316194 -1.0881815823682377 1.0 7504 +Biological Process GO:0035461 vitamin transmembrane transport -0.019966370385508858 -1.0885577901036447 1.0 7505 +Biological Process GO:0006275 regulation of DNA replication -0.02003636050846902 -1.089389166768758 1.0 7506 +Biological Process GO:0005975 carbohydrate metabolic process -0.020047307712778517 -1.0895192029771004 1.0 7507 +Biological Process GO:0006691 leukotriene metabolic process -0.020050864731627316 -1.089561454974142 1.0 7508 +Disease MONDO:0018998 Leber congenital amaurosis -0.02008154575976384 -1.0899258991239102 1.0 7509 +Biological Process GO:0031453 positive regulation of heterochromatin formation -0.02020027868787988 -1.091336266496353 1.0 7510 +Phenotype HP:0040129 Abnormal nerve conduction velocity -0.020266888713771358 -1.0921274927272355 1.0 7511 +Phenotype HP:0000762 Decreased nerve conduction velocity -0.020276496018504897 -1.0922416129578094 1.0 7512 +Phenotype HP:0033348 Epileptic aura -0.02037452969274378 -1.0934061045419137 1.0 7513 +Biological Process GO:0030148 sphingolipid biosynthetic process -0.020457482096799318 -1.094391453475878 1.0 7514 +Phenotype HP:0001674 Complete atrioventricular canal defect -0.02049211710117138 -1.0948028648752754 1.0 7515 +Biological Process GO:0034655 nucleobase-containing compound catabolic process -0.02054733977384693 -1.0954588265953853 1.0 7516 +Phenotype HP:0031629 Impaired tandem gait -0.020704674429211867 -1.097327724027649 1.0 7517 +Biological Process GO:0007283 spermatogenesis -0.020713898844123335 -1.0974372961069994 1.0 7518 +Biological Process GO:1990748 cellular detoxification -0.020812177334760706 -1.0986046957391586 1.0 7519 +Biological Process GO:0010669 epithelial structure maintenance -0.020854392509287445 -1.099106148080301 1.0 7520 +Phenotype HP:0007587 Numerous pigmented freckles -0.020919408075584123 -1.0998784345459065 1.0 7521 +Phenotype HP:0009099 Median cleft palate -0.020921959217961916 -1.0999087382538095 1.0 7522 +Biological Process GO:0050885 neuromuscular process controlling balance -0.020949397686647053 -1.1002346657079483 1.0 7523 +Biological Process GO:0006835 dicarboxylic acid transport -0.020956287350819114 -1.100316504484348 1.0 7524 +Phenotype HP:0100490 Camptodactyly of finger -0.02101550569439281 -1.1010199287235347 1.0 7525 +Phenotype HP:0000758 Abnormal nonverbal communicative behavior -0.021117044638662374 -1.102226057607092 1.0 7526 +Biological Process GO:0002251 organ or tissue specific immune response -0.02115499092180162 -1.1026768019835191 1.0 7527 +Phenotype HP:5200017 Steroetypic movements of face and head -0.021188150045418075 -1.103070682154669 1.0 7528 +Disease MONDO:0005137 nutritional disorder -0.02119924902251613 -1.1032025211938887 1.0 7529 +Phenotype HP:0011534 Abnormal spatial orientation of the cardiac segments -0.021231748786318505 -1.1035885691690062 1.0 7530 +Biological Process GO:0032787 monocarboxylic acid metabolic process -0.02125452380866344 -1.1038591019431205 1.0 7531 +Phenotype HP:0000616 Miosis -0.02128210405011699 -1.104186713443042 1.0 7532 +Biological Process GO:0007606 sensory perception of chemical stimulus -0.021414790418853524 -1.1057628265584454 1.0 7533 +Phenotype HP:0010761 Broad columella -0.021418195763588388 -1.1058032768967143 1.0 7534 +Biological Process GO:0035725 sodium ion transmembrane transport -0.0214411658961724 -1.1060761272849866 1.0 7535 +Phenotype HP:0008619 Bilateral sensorineural hearing impairment -0.02149907393154038 -1.1067639870470691 1.0 7536 +Phenotype HP:0011925 Decreased activity of mitochondrial ATP synthase complex -0.021603272565370313 -1.1080017090146705 1.0 7537 +Phenotype HP:0002045 Hypothermia -0.02163172354455023 -1.1083396635601035 1.0 7538 +Biological Process GO:0071692 protein localization to extracellular region -0.021638400697643112 -1.1084189780267173 1.0 7539 +Phenotype HP:0002221 Absent axillary hair -0.02168196482253104 -1.10893645385525 1.0 7540 +Biological Process GO:0070914 UV-damage excision repair -0.021779530602125563 -1.1100953875595765 1.0 7541 +Biological Process GO:0006754 ATP biosynthetic process -0.021789253023140276 -1.1102108751972342 1.0 7542 +Phenotype HP:0005613 Aplasia/hypoplasia of the femur -0.02183698901717035 -1.1107779065131411 1.0 7543 +Biological Process GO:0006029 proteoglycan metabolic process -0.02185441588310666 -1.1109849112885686 1.0 7544 +Phenotype HP:0007108 Demyelinating peripheral neuropathy -0.021935264046055725 -1.1119452650249293 1.0 7545 +Biological Process GO:0019320 hexose catabolic process -0.021979457753740217 -1.1124702193436216 1.0 7546 +Phenotype HP:0025429 Abnormal cry -0.02200609166118528 -1.1127865898286857 1.0 7547 +Biological Process GO:0031445 regulation of heterochromatin formation -0.022054216049979924 -1.1133582346861963 1.0 7548 +Phenotype HP:0100703 Tongue thrusting -0.022208654964074537 -1.1151927350975874 1.0 7549 +Phenotype HP:0004339 Abnormal circulating sulfur amino acid concentration -0.022258107654451464 -1.115780158166266 1.0 7550 +Phenotype HP:0007833 Anterior chamber synechiae -0.022333693806042998 -1.1166780071766855 1.0 7551 +Phenotype HP:0000060 Clitoral hypoplasia -0.022362726822256818 -1.1170228754406228 1.0 7552 +Phenotype HP:0040255 Aplasia/Hypoplasia of the clitoris -0.022362726822256818 -1.1170228754406228 1.0 7552 +Phenotype HP:0001924 Sideroblastic anemia -0.022384340194842256 -1.11727960957484 1.0 7554 +Phenotype HP:0009795 Branchial fistula -0.022413221921188997 -1.1176226807442755 1.0 7555 +Phenotype HP:0000798 Oligozoospermia -0.02243874123623657 -1.117925811559638 1.0 7556 +Phenotype HP:0003221 Chromosomal breakage induced by crosslinking agents -0.022516281268378346 -1.118846869711965 1.0 7557 +Phenotype HP:0002000 Short columella -0.022537312166778012 -1.1190966849349757 1.0 7558 +Phenotype HP:0002779 Tracheomalacia -0.02254339763371327 -1.1191689710661086 1.0 7559 +Phenotype HP:0000561 Absent eyelashes -0.022552317561452373 -1.1192749262989776 1.0 7560 +Phenotype HP:0000273 Facial grimacing -0.022659373395209625 -1.1205465874746654 1.0 7561 +Phenotype HP:0002527 Falls -0.022675431065402485 -1.1207373282782216 1.0 7562 +Biological Process GO:0065004 protein-DNA complex assembly -0.0226787555189083 -1.1207768177511943 1.0 7563 +Phenotype HP:0002907 Microscopic hematuria -0.022708818544805665 -1.121133920970287 1.0 7564 +Phenotype HP:0001696 Situs inversus totalis -0.02278318929482004 -1.1220173328506196 1.0 7565 +Phenotype HP:0030891 Periventricular white matter hyperintensities -0.022783584102446852 -1.1220220225673148 1.0 7566 +Phenotype HP:0006956 Lateral ventricle dilatation -0.02282014394704257 -1.1224562981535193 1.0 7567 +Biological Process GO:0007623 circadian rhythm -0.023013764969217032 -1.1247562226700525 1.0 7568 +Phenotype HP:0001088 Brushfield spots -0.02301680401916295 -1.1247923219809595 1.0 7569 +Phenotype HP:0100760 Clubbing of toes -0.023053222267555684 -1.125224915618711 1.0 7570 +Phenotype HP:0007034 Generalized hyperreflexia -0.023061069043972093 -1.125318123439087 1.0 7571 +Phenotype HP:0008689 Bilateral cryptorchidism -0.023114066082184692 -1.125947647992361 1.0 7572 +Phenotype HP:0100023 Recurrent hand flapping -0.023146134259377504 -1.1263285693721676 1.0 7573 +Phenotype HP:0009916 Anisocoria -0.023300195511937183 -1.1281585837364683 1.0 7574 +Phenotype HP:0001922 Vacuolated lymphocytes -0.023368290501187827 -1.1289674490831738 1.0 7575 +Disease MONDO:0024321 disorder of GPI anchor biosynthesis -0.02337767680951708 -1.1290789442111497 1.0 7576 +Phenotype HP:0031535 Increased theta frequency activity in EEG -0.02338135409569775 -1.1291226248019568 1.0 7577 +Phenotype HP:0002049 Proximal renal tubular acidosis -0.023391592843215347 -1.1292442456165246 1.0 7578 +Phenotype HP:0001889 Megaloblastic anemia -0.023424310425668393 -1.1296328809473395 1.0 7579 +Phenotype HP:0006897 Abducens palsy -0.023466374200391327 -1.1301325348880982 1.0 7580 +Biological Process GO:0006956 complement activation -0.023473951813278937 -1.1302225454533834 1.0 7581 +Biological Process GO:0018231 peptidyl-S-diacylglycerol-L-cysteine biosynthetic process from peptidyl-cysteine -0.023543347848823615 -1.131046865259709 1.0 7582 +Biological Process GO:0018230 peptidyl-L-cysteine S-palmitoylation -0.023543347848823615 -1.131046865259709 1.0 7582 +Disease MONDO:0024626 defective phagocytic cell engulfment -0.023607525212933078 -1.131809195152735 1.0 7584 +Disease MONDO:0024627 phagocytic cell dysfunction -0.023607525212933078 -1.131809195152735 1.0 7584 +Biological Process GO:1903311 regulation of mRNA metabolic process -0.02366725030750949 -1.1325186388263913 1.0 7586 +Biological Process GO:1901136 carbohydrate derivative catabolic process -0.023738353826306957 -1.1333632409478838 1.0 7587 +Biological Process GO:0035268 protein mannosylation -0.023738888213557185 -1.1333695886591204 1.0 7588 +Biological Process GO:0035269 protein O-linked mannosylation -0.023738888213557185 -1.1333695886591204 1.0 7588 +Biological Process GO:1900745 positive regulation of p38MAPK cascade -0.023769795120678783 -1.1337367159091518 1.0 7590 +Phenotype HP:0010969 Abnormality of glycolipid metabolism -0.02379019020079487 -1.1339789785738608 1.0 7591 +Phenotype HP:0011038 Abnormal renal tubular resorption -0.023803531060776262 -1.1341374477865438 1.0 7592 +Biological Process GO:0035195 miRNA-mediated post-transcriptional gene silencing -0.023849166522767584 -1.1346795279629545 1.0 7593 +Phenotype HP:0030780 Abnormality of the protein C anticoagulant pathway -0.023911081475304075 -1.135414983832774 1.0 7594 +Phenotype HP:0001335 Bimanual synkinesia -0.023924209871752256 -1.135570929300445 1.0 7595 +Phenotype HP:0034980 Synkinesis -0.023924209871752256 -1.135570929300445 1.0 7595 +Phenotype HP:0006145 Central Y-shaped metacarpal -0.02397293723290339 -1.1361497365563868 1.0 7597 +Disease MONDO:0015905 syndromic dyslipidemia -0.024021065620718263 -1.1367214289162015 1.0 7598 +Biological Process GO:0070059 intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress -0.024056165683728148 -1.1371383645079143 1.0 7599 +Phenotype HP:0012693 Abnormal thalamic size -0.02407815948842673 -1.137399617599495 1.0 7600 +Phenotype HP:0012695 Decreased thalamic volume -0.02407815948842673 -1.137399617599495 1.0 7600 +Phenotype HP:0003763 Bruxism -0.024146783407914096 -1.138214765836381 1.0 7602 +Phenotype HP:0032368 Acidemia -0.024155903535102663 -1.1383230991355204 1.0 7603 +Disease MONDO:0005501 congenital disorder of glycosylation type II -0.024159503191896636 -1.1383658576067783 1.0 7604 +Disease MONDO:0019255 sphingolipidosis -0.024206657685973187 -1.1389259815838828 1.0 7605 +Biological Process GO:0046461 neutral lipid catabolic process -0.024381098095674902 -1.140998069472075 1.0 7606 +Biological Process GO:0046464 acylglycerol catabolic process -0.024381098095674902 -1.140998069472075 1.0 7606 +Phenotype HP:0005543 Reduced protein C activity -0.024402051705813443 -1.1412469666275917 1.0 7608 +Phenotype HP:0000528 Anophthalmia -0.024416625980677287 -1.1414200869411488 1.0 7609 +Phenotype HP:0012100 Abnormal circulating creatinine concentration -0.024480160095950776 -1.1421747760121634 1.0 7610 +Biological Process GO:0007416 synapse assembly -0.024489629584350636 -1.1422872591934072 1.0 7611 +Phenotype HP:0001408 Bile duct proliferation -0.024581430692069306 -1.1433777173260826 1.0 7612 +Phenotype HP:0200102 Sparse or absent eyelashes -0.024610312100108 -1.1437207847145006 1.0 7613 +Biological Process GO:0044773 mitotic DNA damage checkpoint signaling -0.024611307348966882 -1.1437326067637021 1.0 7614 +Biological Process GO:0042789 mRNA transcription by RNA polymerase II -0.024612509998200194 -1.143746892415257 1.0 7615 +Phenotype HP:0012245 Sex reversal -0.024651581486485608 -1.1442110025247683 1.0 7616 +Biological Process GO:0061158 3'-UTR-mediated mRNA destabilization -0.024716539089560063 -1.1449826004750754 1.0 7617 +Biological Process GO:0035194 regulatory ncRNA-mediated post-transcriptional gene silencing -0.024717937923589117 -1.1449992165048941 1.0 7618 +Biological Process GO:0015721 bile acid and bile salt transport -0.02472280625622858 -1.1450570449238662 1.0 7619 +Phenotype HP:0001540 Diastasis recti -0.024727775390522178 -1.145116070713832 1.0 7620 +Biological Process GO:0030201 heparan sulfate proteoglycan metabolic process -0.024752625462237887 -1.1454112519319388 1.0 7621 +Biological Process GO:0015701 bicarbonate transport -0.024754345668135835 -1.1454316853728626 1.0 7622 +Phenotype HP:0031367 Metaphyseal striations -0.024857501988912123 -1.146657026239904 1.0 7623 +Phenotype HP:0003535 3-Methylglutaconic aciduria -0.02491681648017563 -1.1473615925680363 1.0 7624 +Biological Process GO:0003352 regulation of cilium movement -0.024923233861889216 -1.1474378213440715 1.0 7625 +Disease MONDO:0019289 hyperpigmentation of the skin -0.024925373951571794 -1.1474632423684687 1.0 7626 +Biological Process GO:0050912 detection of chemical stimulus involved in sensory perception of taste -0.02498189568484599 -1.1481346349611448 1.0 7627 +Biological Process GO:2001057 reactive nitrogen species metabolic process -0.02503365622121878 -1.148749471745166 1.0 7628 +Phenotype HP:0012747 Abnormal brainstem MRI signal intensity -0.025327080083552334 -1.152234902857645 1.0 7629 +Biological Process GO:0006302 double-strand break repair -0.02532889045974218 -1.1522564073850792 1.0 7630 +Phenotype HP:0010729 Cherry red spot of the macula -0.02535968888440232 -1.1526222460277584 1.0 7631 +Phenotype HP:0002398 Degeneration of anterior horn cells -0.025404400738110455 -1.1531533551365116 1.0 7632 +Biological Process GO:0015732 prostaglandin transport -0.025451238535134202 -1.1537097172322466 1.0 7633 +Biological Process GO:0000723 telomere maintenance -0.025451998315926927 -1.1537187422774238 1.0 7634 +Biological Process GO:0046466 membrane lipid catabolic process -0.02553791659859317 -1.1547393213576462 1.0 7635 +Disease MONDO:0019005 nephronophthisis -0.025566784177256663 -1.1550822244740304 1.0 7636 +Biological Process GO:0001578 microtubule bundle formation -0.025588942634002354 -1.1553454333825757 1.0 7637 +Phenotype HP:0030914 Abnormal peristalsis -0.02568163194823736 -1.156446442063532 1.0 7638 +Phenotype HP:0002085 Occipital encephalocele -0.025777418949810338 -1.1575842465788104 1.0 7639 +Biological Process GO:0032543 mitochondrial translation -0.025783924079849196 -1.1576615176720604 1.0 7640 +Phenotype HP:0007588 Reticular hyperpigmentation -0.025840458756881013 -1.1583330640169744 1.0 7641 +Phenotype HP:0012330 Pyelonephritis -0.02585893868277278 -1.1585525775498795 1.0 7642 +Phenotype HP:0020118 Radial artery aplasia -0.025989733305562757 -1.1601062195883682 1.0 7643 +Phenotype HP:0031640 Abnormal radial artery morphology -0.025989733305562757 -1.1601062195883682 1.0 7643 +Phenotype HP:0030270 Elevated red cell adenosine deaminase activity -0.025989733305562757 -1.1601062195883682 1.0 7643 +Phenotype HP:0012103 Abnormality of the mitochondrion -0.026024258730538152 -1.1605163293504843 1.0 7646 +Biological Process GO:0006506 GPI anchor biosynthetic process -0.026029998631168283 -1.1605845106772505 1.0 7647 +Phenotype HP:0009794 Branchial anomaly -0.026100417549811405 -1.1614209807856934 1.0 7648 +Biological Process GO:1990573 potassium ion import across plasma membrane -0.026114518900772543 -1.1615884834794996 1.0 7649 +Biological Process GO:0097428 protein maturation by iron-sulfur cluster transfer -0.026120661505076193 -1.161661448316038 1.0 7650 +Phenotype HP:0000653 Sparse eyelashes -0.026256796433837826 -1.1632785251019113 1.0 7651 +Phenotype HP:0040156 Elevated urinary carboxylic acid -0.026324385836802744 -1.164081384849221 1.0 7652 +Phenotype HP:0010571 Elevated circulating phytanic acid concentration -0.026413893796338517 -1.165144603854313 1.0 7653 +Phenotype HP:0010965 Abnormal circulating phytanic acid concentration -0.026413893796338517 -1.165144603854313 1.0 7653 +Phenotype HP:0009486 Radial deviation of the hand -0.02644255736095147 -1.1654850835927433 1.0 7655 +Biological Process GO:0006414 translational elongation -0.026447692346268648 -1.165546079441698 1.0 7656 +Phenotype HP:0000127 Renal salt wasting -0.026509703868931478 -1.1662826824183692 1.0 7657 +Disease MONDO:0006873 nutritional deficiency disease -0.0265434608477102 -1.1666836642034322 1.0 7658 +Disease MONDO:0017748 inborn disorder of glycosphingolipid and glycosylphosphatidylinositol anchor glycosylation -0.02656362050890171 -1.1669231304478445 1.0 7659 +Phenotype HP:0003798 Nemaline bodies -0.02661505996679625 -1.1675341533057975 1.0 7660 +Phenotype HP:0200005 Abnormal shape of the palpebral fissure -0.02677822943151309 -1.169472359436709 1.0 7661 +Biological Process GO:0002922 positive regulation of humoral immune response -0.026794814397408606 -1.1696693637146565 1.0 7662 +Phenotype HP:0000884 Prominent sternum -0.02681506511318288 -1.1699099115496154 1.0 7663 +Biological Process GO:0002183 cytoplasmic translational initiation -0.026816051018086817 -1.169921622606783 1.0 7664 +Disease MONDO:0800088 lysosomal storage disease with skeletal involvement -0.026866643751427555 -1.1705225876593481 1.0 7665 +Phenotype HP:0011923 Decreased activity of mitochondrial complex I -0.02692173156360167 -1.1711769474409388 1.0 7666 +Phenotype HP:0008049 Abnormality of the extraocular muscles -0.026970434736484306 -1.1717554673768826 1.0 7667 +Biological Process GO:0006213 pyrimidine nucleoside metabolic process -0.026972844347769254 -1.1717840899097425 1.0 7668 +Biological Process GO:0050908 detection of light stimulus involved in visual perception -0.02702223987144503 -1.1723708339245869 1.0 7669 +Biological Process GO:0050962 detection of light stimulus involved in sensory perception -0.02702223987144503 -1.1723708339245869 1.0 7669 +Disease MONDO:0019303 premature aging syndrome -0.027139350354109082 -1.173761929102152 1.0 7671 +Phenotype HP:0011504 Bull's eye maculopathy -0.027211427315880776 -1.1746180942519597 1.0 7672 +Phenotype HP:0006813 Focal hemiclonic seizure -0.02724136826279344 -1.1749737473575952 1.0 7673 +Phenotype HP:0002078 Truncal ataxia -0.027266870998440496 -1.175276681234788 1.0 7674 +Phenotype HP:0100258 Preaxial polydactyly -0.027312167452671732 -1.175814734512415 1.0 7675 +Biological Process GO:0006284 base-excision repair -0.027388365841305218 -1.1767198559716983 1.0 7676 +Biological Process GO:0050907 detection of chemical stimulus involved in sensory perception -0.027394281567771683 -1.176790125843123 1.0 7677 +Phenotype HP:0003750 Increased muscle fatiguability -0.02740919372625017 -1.1769672597023184 1.0 7678 +Phenotype HP:0006829 Severe muscular hypotonia -0.027416533558247913 -1.1770544457907361 1.0 7679 +Phenotype HP:0007015 Poor gross motor coordination -0.027435670911815757 -1.1772817685688 1.0 7680 +Phenotype HP:0005986 Limitation of neck motion -0.02756724177253611 -1.1788446311383378 1.0 7681 +Phenotype HP:0025669 Abnormal neck physiology -0.02756724177253611 -1.1788446311383378 1.0 7681 +Phenotype HP:0000180 Lobulated tongue -0.027649779312127976 -1.17982505211076 1.0 7683 +Biological Process GO:0009395 phospholipid catabolic process -0.027652697156264283 -1.1798597116802074 1.0 7684 +Phenotype HP:0100593 Calcification of cartilage -0.027809512248252233 -1.1817224374863986 1.0 7685 +Phenotype HP:0001992 Organic aciduria -0.02795626736399992 -1.183465666010059 1.0 7686 +Phenotype HP:0001748 Polysplenia -0.027964256928030506 -1.1835605699310485 1.0 7687 +Biological Process GO:0015804 neutral amino acid transport -0.027985890153123583 -1.183817539882991 1.0 7688 +Biological Process GO:0016042 lipid catabolic process -0.027991144265488543 -1.183879950780863 1.0 7689 +Biological Process GO:1901659 glycosyl compound biosynthetic process -0.028032782396910427 -1.1843745487238155 1.0 7690 +Phenotype HP:0007325 Generalized dystonia -0.028212250706008968 -1.1865063604424035 1.0 7691 +Phenotype HP:0006248 Limited wrist movement -0.028276772287028074 -1.1872727791110211 1.0 7692 +Disease MONDO:0015498 oromandibular-limb anomalies syndrome -0.02829808554609703 -1.1875259483511655 1.0 7693 +Disease MONDO:0015375 orofaciodigital syndrome -0.02829808554609703 -1.1875259483511655 1.0 7693 +Phenotype HP:0031491 Continuous spike and waves during slow sleep -0.02839391140959635 -1.188664214487275 1.0 7695 +Biological Process GO:0055075 potassium ion homeostasis -0.028501051646151687 -1.189936878240381 1.0 7696 +Biological Process GO:0046485 ether lipid metabolic process -0.02858709647595492 -1.1909589605089432 1.0 7697 +Biological Process GO:0006662 glycerol ether metabolic process -0.02858709647595492 -1.1909589605089432 1.0 7697 +Phenotype HP:0010459 True hermaphroditism -0.0287011860742874 -1.192314172155589 1.0 7699 +Biological Process GO:0010155 regulation of proton transport -0.028702027190024904 -1.1923241633367336 1.0 7700 +Biological Process GO:0009123 nucleoside monophosphate metabolic process -0.028788533692575946 -1.193351729578365 1.0 7701 +Disease MONDO:0019118 inherited retinal dystrophy -0.028812165618046448 -1.1936324410638852 1.0 7702 +Disease MONDO:0004580 retinal degeneration -0.028812165618046448 -1.1936324410638852 1.0 7702 +Phenotype HP:0008715 Testicular dysgenesis -0.02887439615777465 -1.1943716456316054 1.0 7704 +Phenotype HP:0012523 Oral aversion -0.028969932499625983 -1.1955064726889988 1.0 7705 +Biological Process GO:0000096 sulfur amino acid metabolic process -0.028973876822654177 -1.1955533252731438 1.0 7706 +Phenotype HP:0006827 Atrophy of the spinal cord -0.02899635134000511 -1.1958202885030256 1.0 7707 +Biological Process GO:0051123 RNA polymerase II preinitiation complex assembly -0.029010883425834466 -1.1959929076747453 1.0 7708 +Phenotype HP:0000575 Scotoma -0.029017562453000023 -1.1960722444025043 1.0 7709 +Phenotype HP:0100324 Scleroderma -0.029044372912217842 -1.1963907120552522 1.0 7710 +Phenotype HP:0001742 Nasal congestion -0.02905142398237137 -1.1964744680902726 1.0 7711 +Phenotype HP:0012603 Abnormal urine sodium concentration -0.029169659475998255 -1.1978789266943173 1.0 7712 +Phenotype HP:0007052 Multifocal cerebral white matter abnormalities -0.02926502247776952 -1.1990116947340725 1.0 7713 +Phenotype HP:0002392 EEG with polyspike wave complexes -0.02965754914376051 -1.2036743170690185 1.0 7714 +Biological Process GO:0006740 NADPH regeneration -0.029683204557320098 -1.203979064528591 1.0 7715 +Phenotype HP:0007068 Inferior cerebellar vermis hypoplasia -0.02972874033674855 -1.204519960627118 1.0 7716 +Biological Process GO:0070542 response to fatty acid -0.029731181226984704 -1.2045489547065482 1.0 7717 +Disease MONDO:0009299 46 XX gonadal dysgenesis -0.029738580450670904 -1.20463684627828 1.0 7718 +Biological Process GO:0071398 cellular response to fatty acid -0.029783722647228394 -1.2051730672083563 1.0 7719 +Biological Process GO:2000622 regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay -0.029996466107819586 -1.2077001373335463 1.0 7720 +Biological Process GO:0017148 negative regulation of translation -0.030111458030482652 -1.209066067226726 1.0 7721 +Disease MONDO:0021129 microphthalmia -0.030212751177492336 -1.21026927641108 1.0 7722 +Phenotype HP:0011347 Abnormality of ocular abduction -0.03021350238749365 -1.2102781996482352 1.0 7723 +Disease MONDO:0005523 steroid inherited metabolic disorder -0.030238272263712895 -1.2105724282652954 1.0 7724 +Phenotype HP:0032894 Seizure precipitated by febrile infection -0.03027317896814763 -1.2109870670499645 1.0 7725 +Phenotype HP:0002373 Febrile seizure (within the age range of 3 months to 6 years) -0.03027317896814763 -1.2109870670499645 1.0 7725 +Phenotype HP:0032892 Infection-related seizure -0.03027317896814763 -1.2109870670499645 1.0 7725 +Biological Process GO:0007281 germ cell development -0.03031591892716423 -1.2114947530360933 1.0 7728 +Phenotype HP:0008222 Female infertility -0.03040586007909729 -1.2125631177108223 1.0 7729 +Disease MONDO:0016073 syndromic microphthalmia -0.030513774148745343 -1.213844973429148 1.0 7730 +Phenotype HP:0002068 Neuromuscular dysphagia -0.03083964038020337 -1.2177157707548916 1.0 7731 +Phenotype HP:0002160 Hyperhomocystinemia -0.030869507474182045 -1.218070546599517 1.0 7732 +Phenotype HP:0011171 Simple febrile seizure -0.03089458225826891 -1.2183683970602803 1.0 7733 +Phenotype HP:0009886 Trichorrhexis nodosa -0.030964691951242296 -1.2192011940360696 1.0 7734 +Phenotype HP:0011803 Bifid nose -0.030996561503360942 -1.2195797560508004 1.0 7735 +Biological Process GO:1901361 organic cyclic compound catabolic process -0.030999869500765165 -1.219619050050208 1.0 7736 +Biological Process GO:0016052 carbohydrate catabolic process -0.031088692294354736 -1.2206741303214999 1.0 7737 +Phenotype HP:0011190 Uni- and bilateral multifocal epileptiform discharges -0.031094443383906212 -1.2207424445557067 1.0 7738 +Biological Process GO:0042476 odontogenesis -0.03119688452563807 -1.2219592901787943 1.0 7739 +Biological Process GO:0009132 nucleoside diphosphate metabolic process -0.031221446475492964 -1.2222510489455374 1.0 7740 +Disease MONDO:0100473 disorder of peptide and amine metabolism -0.031355979549463564 -1.223849098122402 1.0 7741 +Biological Process GO:0061008 hepaticobiliary system development -0.031397589811967386 -1.2243433650248134 1.0 7742 +Biological Process GO:0016233 telomere capping -0.03143290669380949 -1.2247628760958944 1.0 7743 +Phenotype HP:0001403 Macrovesicular hepatic steatosis -0.031444438809394626 -1.2248998601643797 1.0 7744 +Phenotype HP:0006507 Aplasia/hypoplasia of the humerus -0.03153132672336034 -1.2259319569959939 1.0 7745 +Biological Process GO:0046337 phosphatidylethanolamine metabolic process -0.03153998278622949 -1.226034777913815 1.0 7746 +Biological Process GO:0032986 protein-DNA complex disassembly -0.03163679605537584 -1.227184772933647 1.0 7747 +Phenotype HP:0010964 Abnormal circulating long-chain fatty-acid concentration -0.03166998943355526 -1.2275790599971281 1.0 7748 +Phenotype HP:0003287 Abnormality of mitochondrial metabolism -0.031674701667057104 -1.227635034194748 1.0 7749 +Biological Process GO:0072348 sulfur compound transport -0.031700179084865 -1.2279376673343536 1.0 7750 +Phenotype HP:0030601 Abnormal posterior segment imaging -0.031737675952987265 -1.2283830733409902 1.0 7751 +Biological Process GO:0006518 peptide metabolic process -0.03178980245456309 -1.2290022572373924 1.0 7752 +Disease MONDO:0000992 heart conduction disease -0.03182050641645828 -1.229366973805482 1.0 7753 +Phenotype HP:0031593 Abnormal PR interval -0.03185549327094006 -1.2297825646513278 1.0 7754 +Phenotype HP:0004039 Abnormal ulnar metaphysis morphology -0.031876048940678636 -1.2300267348775489 1.0 7755 +Biological Process GO:0010586 miRNA metabolic process -0.03190029131209493 -1.230314697536423 1.0 7756 +Biological Process GO:0046365 monosaccharide catabolic process -0.03191098117261215 -1.230441676890244 1.0 7757 +Biological Process GO:0000027 ribosomal large subunit assembly -0.03193995925425375 -1.2307858926146582 1.0 7758 +Biological Process GO:0051315 attachment of mitotic spindle microtubules to kinetochore -0.031978808766682354 -1.231247365987159 1.0 7759 +Phenotype HP:0006802 Abnormal anterior horn cell morphology -0.03199654753053083 -1.2314580756374331 1.0 7760 +Biological Process GO:0015980 energy derivation by oxidation of organic compounds -0.032098112776891785 -1.2326645169500032 1.0 7761 +Biological Process GO:0034404 nucleobase-containing small molecule biosynthetic process -0.032151416849190095 -1.2332976886032314 1.0 7762 +Biological Process GO:0009163 nucleoside biosynthetic process -0.032151416849190095 -1.2332976886032314 1.0 7762 +Biological Process GO:0006024 glycosaminoglycan biosynthetic process -0.032205775876888776 -1.2339433915289524 1.0 7764 +Biological Process GO:0009185 ribonucleoside diphosphate metabolic process -0.032279934233906404 -1.2348242805021392 1.0 7765 +Biological Process GO:0044060 regulation of endocrine process -0.032308876442015855 -1.2351680701033199 1.0 7766 +Biological Process GO:0006809 nitric oxide biosynthetic process -0.03240202630429945 -1.2362745493976224 1.0 7767 +Phenotype HP:0010966 Abnormal circulating fatty-acid anion concentration -0.03251874453316139 -1.237660985194062 1.0 7768 +Biological Process GO:0070131 positive regulation of mitochondrial translation -0.032520212814548755 -1.2376784261533238 1.0 7769 +Biological Process GO:0045494 photoreceptor cell maintenance -0.032576558009117074 -1.2383477217335308 1.0 7770 +Phenotype HP:0011736 Primary hyperaldosteronism -0.032603214794014734 -1.2386643639680854 1.0 7771 +Biological Process GO:0097267 omega-hydroxylase P450 pathway -0.03260495416797937 -1.2386850250966126 1.0 7772 +Phenotype HP:0025575 Abnormal superior vena cava morphology -0.03264693501236038 -1.239183693950502 1.0 7773 +Biological Process GO:1901264 carbohydrate derivative transport -0.03267166396303578 -1.2394774364340804 1.0 7774 +Biological Process GO:0044774 mitotic DNA integrity checkpoint signaling -0.032771247830521544 -1.2406603419662872 1.0 7775 +Phenotype HP:0012207 Reduced sperm motility -0.03284973341553754 -1.2415926318547792 1.0 7776 +Biological Process GO:0006023 aminoglycan biosynthetic process -0.03289196996630306 -1.2420943381132654 1.0 7777 +Phenotype HP:0100732 Pancreatic fibrosis -0.032919365672986034 -1.242419757619579 1.0 7778 +Phenotype HP:0008002 Abnormality of macular pigmentation -0.03292237824496458 -1.2424555424123327 1.0 7779 +Phenotype HP:0030825 Absent foveal reflex -0.03294002254849793 -1.2426651300171174 1.0 7780 +Biological Process GO:0006767 water-soluble vitamin metabolic process -0.03312696696541395 -1.2448857465744805 1.0 7781 +Phenotype HP:0001583 Rotary nystagmus -0.033170021341318634 -1.245397167357075 1.0 7782 +Biological Process GO:0009072 aromatic amino acid metabolic process -0.03317739937884667 -1.2454848072693327 1.0 7783 +Disease MONDO:0002816 adrenal cortex disorder -0.033238798410597514 -1.2462141347815485 1.0 7784 +Phenotype HP:0010932 Abnormal circulating nucleobase concentration -0.03327696498359245 -1.2466674958678463 1.0 7785 +Phenotype HP:0031101 Abnormal circulating antimullerian hormone concentration -0.03328941762493742 -1.2468154143882801 1.0 7786 +Phenotype HP:0009603 Deviation of the thumb -0.03335609551727581 -1.2476074467697724 1.0 7787 +Disease MONDO:0056803 sulfur metabolism disease -0.03338954156608076 -1.248004735177631 1.0 7788 +Biological Process GO:0070922 RISC complex assembly -0.03341880723541801 -1.2483523670083363 1.0 7789 +Phenotype HP:0007272 Progressive psychomotor deterioration -0.03352019653291838 -1.249556718314906 1.0 7790 +Biological Process GO:1901381 positive regulation of potassium ion transmembrane transport -0.03359845454470811 -1.2504863049781154 1.0 7791 +Phenotype HP:0008347 Decreased activity of mitochondrial complex IV -0.033604212009390455 -1.2505546949392223 1.0 7792 +Phenotype HP:0011359 Dry hair -0.03362953175857797 -1.2508554552143973 1.0 7793 +Phenotype HP:0000387 Absent earlobe -0.03369479194257741 -1.2516306473678533 1.0 7794 +Phenotype HP:0009623 Proximal placement of thumb -0.03380962256862019 -1.2529946613014575 1.0 7795 +Biological Process GO:0170040 proteinogenic amino acid catabolic process -0.03397259199220515 -1.2549304912466719 1.0 7796 +Biological Process GO:0170035 L-amino acid catabolic process -0.03397259199220515 -1.2549304912466719 1.0 7796 +Biological Process GO:0046209 nitric oxide metabolic process -0.033979415307731076 -1.2550115419016363 1.0 7798 +Biological Process GO:0048385 regulation of retinoic acid receptor signaling pathway -0.034006612295159444 -1.255334600924153 1.0 7799 +Phenotype HP:0004736 Crossed fused renal ectopia -0.034019630041810967 -1.2554892320398119 1.0 7800 +Phenotype HP:0004320 Vaginal fistula -0.03403203145470313 -1.2556365420438085 1.0 7801 +Biological Process GO:0001895 retina homeostasis -0.034037714883218495 -1.2557040525673748 1.0 7802 +Phenotype HP:0001153 Septate vagina -0.03411847426418779 -1.2566633517082708 1.0 7803 +Phenotype HP:5200261 Abnormal affect -0.03412968331403232 -1.2567964982450206 1.0 7804 +Biological Process GO:0019985 translesion synthesis -0.034265154235737505 -1.2584056876326604 1.0 7805 +Phenotype HP:0020201 Abnormal sarcomere morphology -0.03432430395835051 -1.2591082967587561 1.0 7806 +Phenotype HP:0005522 Pyridoxine-responsive sideroblastic anemia -0.034340589759164875 -1.2593017474086066 1.0 7807 +Biological Process GO:0042773 ATP synthesis coupled electron transport -0.03445620985077391 -1.2606751389975417 1.0 7808 +Biological Process GO:0042775 mitochondrial ATP synthesis coupled electron transport -0.03445620985077391 -1.2606751389975417 1.0 7808 +Biological Process GO:0001522 pseudouridine synthesis -0.034677859809704614 -1.2633080048346716 1.0 7810 +Phenotype HP:0003713 Muscle fiber necrosis -0.03469554642220318 -1.2635180950058889 1.0 7811 +Phenotype HP:0034681 Finger joint contracture -0.03473964697649401 -1.2640419428033394 1.0 7812 +Phenotype HP:0010472 Abnormal circulating porphyrin concentration -0.03478620906182539 -1.264595029861717 1.0 7813 +Phenotype HP:0002476 Primitive reflex -0.03478943940341739 -1.26463340142768 1.0 7814 +Phenotype HP:0030289 Flattened femoral epiphysis -0.03480129291586209 -1.2647742032041218 1.0 7815 +Phenotype HP:0005180 Tricuspid regurgitation -0.03485520481140725 -1.2654145948770124 1.0 7816 +Phenotype HP:0007058 Generalized cerebral atrophy/hypoplasia -0.03485921872565023 -1.2654622740993975 1.0 7817 +Biological Process GO:0050830 defense response to Gram-positive bacterium -0.03489420156956191 -1.2658778173057443 1.0 7818 +Biological Process GO:0031054 pre-miRNA processing -0.034894890067608486 -1.2658859956198505 1.0 7819 +Phenotype HP:0006682 Premature ventricular contraction -0.03491082289382508 -1.266075253466037 1.0 7820 +Phenotype HP:0007344 Atrophy/Degeneration involving the spinal cord -0.034932570145796316 -1.2663335778846059 1.0 7821 +Phenotype HP:0025406 Asthenia -0.034948040431116434 -1.2665173414454316 1.0 7822 +Phenotype HP:0006443 Patellar aplasia -0.03498101066553705 -1.2669089778989955 1.0 7823 +Disease MONDO:0015452 Coffin-Siris syndrome -0.03499032804754787 -1.2670196542866932 1.0 7824 +Biological Process GO:0001682 tRNA 5'-leader removal -0.035064898912540166 -1.2679054432299017 1.0 7825 +Disease MONDO:0018276 muscular dystrophy-dystroglycanopathy -0.03530293817674135 -1.2707329891930697 1.0 7826 +Phenotype HP:0004976 Knee dislocation -0.035379620280280966 -1.2716438564528818 1.0 7827 +Phenotype HP:0003448 Decreased sensory nerve conduction velocity -0.035395513721961036 -1.2718326464704202 1.0 7828 +Phenotype HP:0012206 Abnormal sperm motility -0.03539646013337294 -1.2718438884047127 1.0 7829 +Phenotype HP:0034809 Abnormal sperm physiology -0.03539646013337294 -1.2718438884047127 1.0 7829 +Biological Process GO:0009145 purine nucleoside triphosphate biosynthetic process -0.03540178641111802 -1.2719071565180107 1.0 7831 +Biological Process GO:0009206 purine ribonucleoside triphosphate biosynthetic process -0.03540178641111802 -1.2719071565180107 1.0 7831 +Phenotype HP:0003551 Difficulty climbing stairs -0.035499093135118676 -1.2730630130342053 1.0 7833 +Biological Process GO:0071577 zinc ion transmembrane transport -0.035573503413766305 -1.2739468944548373 1.0 7834 +Disease MONDO:0006858 mouth disorder -0.03559656407817435 -1.2742208202240743 1.0 7835 +Disease MONDO:0006999 tooth disorder -0.03559656407817435 -1.2742208202240743 1.0 7835 +Biological Process GO:0042759 long-chain fatty acid biosynthetic process -0.03571177929090519 -1.2755894024651002 1.0 7837 +Biological Process GO:0061844 antimicrobial humoral immune response mediated by antimicrobial peptide -0.03577832269941528 -1.2763798373823798 1.0 7838 +Phenotype HP:0002168 Scanning speech -0.03584778669524913 -1.277204964454019 1.0 7839 +Phenotype HP:0030968 Abnormal pulmonary vein morphology -0.03587912797185289 -1.2775772513556733 1.0 7840 +Phenotype HP:0011718 Abnormality of the pulmonary veins -0.03587912797185289 -1.2775772513556733 1.0 7840 +Biological Process GO:0009142 nucleoside triphosphate biosynthetic process -0.03590687225973266 -1.2779068114787004 1.0 7842 +Disease MONDO:0017731 glycoproteinosis -0.03597562929384934 -1.278723540915789 1.0 7843 +Phenotype HP:0000791 Uric acid nephrolithiasis -0.03601874731793653 -1.2792357177424005 1.0 7844 +Biological Process GO:0034243 regulation of transcription elongation by RNA polymerase II -0.03611665680464893 -1.2803987341667644 1.0 7845 +Biological Process GO:0009127 purine nucleoside monophosphate biosynthetic process -0.03612056019622689 -1.2804451005472688 1.0 7846 +Biological Process GO:0031365 N-terminal protein amino acid modification -0.03613558437129494 -1.280623564993906 1.0 7847 +Phenotype HP:0009141 Depletion of mitochondrial DNA in muscle tissue -0.036140194001037074 -1.2806783204142473 1.0 7848 +Phenotype HP:0034033 Peripheral cyanosis -0.036216727469917886 -1.281587422119411 1.0 7849 +Biological Process GO:0019348 dolichol metabolic process -0.03622805913834881 -1.281722025179269 1.0 7850 +Biological Process GO:0006699 bile acid biosynthetic process -0.036323032285067614 -1.2828501623314117 1.0 7851 +Biological Process GO:0022618 protein-RNA complex assembly -0.03634724391151778 -1.2831377597866493 1.0 7852 +Biological Process GO:0000380 alternative mRNA splicing, via spliceosome -0.03641037335158814 -1.283887641929106 1.0 7853 +Biological Process GO:0009311 oligosaccharide metabolic process -0.03651777119248578 -1.2851633656316732 1.0 7854 +Biological Process GO:0042273 ribosomal large subunit biogenesis -0.036527529042873264 -1.285279274116624 1.0 7855 +Phenotype HP:0003756 Skeletal myopathy -0.036627181942274545 -1.2864629996434425 1.0 7856 +Phenotype HP:0040132 Abnormal sensory nerve conduction velocity -0.03667867340680053 -1.2870746402614164 1.0 7857 +Biological Process GO:0170039 proteinogenic amino acid metabolic process -0.03670496688712088 -1.2873869669877946 1.0 7858 +Disease MONDO:0019249 mucopolysaccharidosis -0.036795941188251025 -1.288467603910345 1.0 7859 +Phenotype HP:0005345 Abnormal vena cava morphology -0.036821454165679945 -1.288770659444396 1.0 7860 +Phenotype HP:0002151 Increased circulating lactate concentration -0.03687459137239224 -1.2894018489871697 1.0 7861 +Phenotype HP:0000291 Abnormality of facial adipose tissue -0.03688768755509009 -1.2895574118042725 1.0 7862 +Phenotype HP:0012864 Abnormal sperm morphology -0.036939072031391795 -1.290167781564169 1.0 7863 +Phenotype HP:0007479 Congenital nonbullous ichthyosiform erythroderma -0.036969853155007115 -1.290533414696637 1.0 7864 +Biological Process GO:0060972 left/right pattern formation -0.037040010920889044 -1.2913667827057764 1.0 7865 +Biological Process GO:0007368 determination of left/right symmetry -0.037040010920889044 -1.2913667827057764 1.0 7865 +Phenotype HP:0034435 Abnormal eye contact -0.037065342447353045 -1.29166768287716 1.0 7867 +Phenotype HP:0000817 Reduced eye contact -0.037065342447353045 -1.29166768287716 1.0 7867 +Biological Process GO:0044571 [2Fe-2S] cluster assembly -0.03714958754551878 -1.2926683870594493 1.0 7869 +Biological Process GO:0009247 glycolipid biosynthetic process -0.0372237606712611 -1.2935494514627193 1.0 7870 +Biological Process GO:1903312 negative regulation of mRNA metabolic process -0.03723186269208467 -1.2936456912001009 1.0 7871 +Biological Process GO:0006520 amino acid metabolic process -0.03733433703963063 -1.2948629312579718 1.0 7872 +Phenotype HP:0003363 Abdominal situs inversus -0.03733514357855605 -1.2948725117189532 1.0 7873 +Phenotype HP:0012429 Aplasia/Hypoplasia of the cerebral white matter -0.03741223189748011 -1.295788204202345 1.0 7874 +Phenotype HP:0012430 Cerebral white matter hypoplasia -0.03741223189748011 -1.295788204202345 1.0 7874 +Biological Process GO:0046942 carboxylic acid transport -0.037439395717409285 -1.2961108692452012 1.0 7876 +Phenotype HP:0000705 Amelogenesis imperfecta -0.03745563051652234 -1.296303714072079 1.0 7877 +Biological Process GO:0006829 zinc ion transport -0.03748702917838154 -1.2966766826236613 1.0 7878 +Biological Process GO:0015849 organic acid transport -0.0375007577382136 -1.296839757123423 1.0 7879 +Phenotype HP:0002361 Psychomotor deterioration -0.03753047913412444 -1.297192802295653 1.0 7880 +Disease MONDO:0100033 metabolic epilepsy -0.03756745742249312 -1.2976320483601735 1.0 7881 +Biological Process GO:0072527 pyrimidine-containing compound metabolic process -0.03764963369018104 -1.2986081779695005 1.0 7882 +Phenotype HP:0003642 Type I transferrin isoform profile -0.03772039643694214 -1.2994487322352788 1.0 7883 +Phenotype HP:0001220 Interphalangeal joint contracture of finger -0.03782368639582612 -1.3006756605206533 1.0 7884 +Biological Process GO:0030449 regulation of complement activation -0.03787567794730129 -1.301293241414233 1.0 7885 +Phenotype HP:0000480 Retinal coloboma -0.037910669666775476 -1.3017088900488212 1.0 7886 +Biological Process GO:1901605 alpha-amino acid metabolic process -0.03791393304871882 -1.3017476540841206 1.0 7887 +Biological Process GO:0019748 secondary metabolic process -0.03800946644128067 -1.3028824461084219 1.0 7888 +Biological Process GO:0030488 tRNA methylation -0.03805864042917739 -1.303466558613713 1.0 7889 +Phenotype HP:0000888 Horizontal ribs -0.038096126755666315 -1.3039118394017102 1.0 7890 +Phenotype HP:0009020 Exercise-induced muscle fatigue -0.03812129087943128 -1.30421075108255 1.0 7891 +Biological Process GO:0006337 nucleosome disassembly -0.03812286189869152 -1.3042294124121516 1.0 7892 +Phenotype HP:0011409 Abnormal placental membrane morphology -0.03814896414409197 -1.3045394675572946 1.0 7893 +Biological Process GO:0006851 mitochondrial calcium ion transmembrane transport -0.03816932549938312 -1.3047813296221575 1.0 7894 +Biological Process GO:0006490 oligosaccharide-lipid intermediate biosynthetic process -0.03818763390407787 -1.304998805743 1.0 7895 +Biological Process GO:0006488 dolichol-linked oligosaccharide biosynthetic process -0.03818763390407787 -1.304998805743 1.0 7895 +Biological Process GO:0007019 microtubule depolymerization -0.038267367323186585 -1.305945918010747 1.0 7897 +Biological Process GO:0009201 ribonucleoside triphosphate biosynthetic process -0.038303397405892614 -1.3063739008279933 1.0 7898 +Disease MONDO:0019222 inborn disorder of methionine cycle and sulfur amino acid metabolism -0.0384712230466957 -1.3083674152793225 1.0 7899 +Phenotype HP:0008364 Abnormality of the calcaneus -0.038494211209163076 -1.3086404798353042 1.0 7900 +Phenotype HP:0002883 Hyperventilation -0.038624293952357336 -1.3101856658222928 1.0 7901 +Phenotype HP:0009755 Ankyloblepharon -0.03865888094069314 -1.3105965068638965 1.0 7902 +Biological Process GO:0072524 pyridine-containing compound metabolic process -0.03871861216603989 -1.31130602336182 1.0 7903 +Phenotype HP:0008972 Decreased activity of mitochondrial respiratory chain -0.03879344002502605 -1.3121948650044744 1.0 7904 +Biological Process GO:0090043 regulation of tubulin deacetylation -0.038820461444076804 -1.3125158385405522 1.0 7905 +Phenotype HP:0001063 Acrocyanosis -0.03885813295339502 -1.3129633190201135 1.0 7906 +Biological Process GO:0032785 negative regulation of DNA-templated transcription, elongation -0.03887484766808469 -1.3131618645172392 1.0 7907 +Phenotype HP:0040161 Localized osteoporosis -0.03888659786207915 -1.3133014390269613 1.0 7908 +Phenotype HP:0012785 Flexion contracture of finger -0.038991563358034886 -1.3145482701552524 1.0 7909 +Phenotype HP:0003328 Abnormal hairshaft morphology -0.039070621334147626 -1.3154873591831233 1.0 7910 +Biological Process GO:1902275 regulation of chromatin organization -0.039282933844213774 -1.3180093102687234 1.0 7911 +Disease MONDO:0000171 muscular dystrophy-dystroglycanopathy, type A -0.039331246593248714 -1.3185831925606288 1.0 7912 +Phenotype HP:0009051 Increased muscle glycogen content -0.03937116560741005 -1.3190573699940213 1.0 7913 +Phenotype HP:0001669 Transposition of the great arteries -0.03943143073198874 -1.319773228406263 1.0 7914 +Phenotype HP:0000621 Entropion -0.039448442807845874 -1.3199753061037236 1.0 7915 +Disease MONDO:0017265 autosomal recessive congenital ichthyosis -0.03949377703556012 -1.3205138080731231 1.0 7916 +Phenotype HP:0030215 Inappropriate crying -0.03949777648188402 -1.3205613154385403 1.0 7917 +Phenotype HP:0005949 Apneic episodes in infancy -0.039523732541997925 -1.3208696341238677 1.0 7918 +Biological Process GO:0046031 ADP metabolic process -0.03958515857811462 -1.3215992824070535 1.0 7919 +Phenotype HP:0012389 Appendicular hypotonia -0.03966756073800748 -1.3225780952736756 1.0 7920 +Biological Process GO:0016556 mRNA modification -0.03966799143323385 -1.3225832112807039 1.0 7921 +Phenotype HP:0032231 Hypochromia -0.03968271755296349 -1.322758135281307 1.0 7922 +Disease MONDO:0019046 leukodystrophy -0.03982687140217189 -1.3244704646979357 1.0 7923 +Biological Process GO:0034508 centromere complex assembly -0.03985993746989913 -1.3248632395060487 1.0 7924 +Phenotype HP:0012708 Reduced brain N-acetyl aspartate level by MRS -0.039872693669438464 -1.3250147638381116 1.0 7925 +Biological Process GO:0000731 DNA synthesis involved in DNA repair -0.039874554747777236 -1.3250368706302895 1.0 7926 +Phenotype HP:0003768 Periodic paralysis -0.039923259441916104 -1.3256154086364536 1.0 7927 +Disease MONDO:0018424 inherited lipoic acid biosynthesis defect -0.039949457249566445 -1.3259265989164024 1.0 7928 +Disease MONDO:0019243 inborn disorder of energy metabolism -0.0399665505425566 -1.326129641350405 1.0 7929 +Biological Process GO:0046434 organophosphate catabolic process -0.04003926395402835 -1.326993366558786 1.0 7930 +Phenotype HP:0031869 Recurrent joint dislocation -0.04010398512398461 -1.3277621560417123 1.0 7931 +Phenotype HP:0011611 Interrupted aortic arch -0.0401423722610148 -1.3282181370947186 1.0 7932 +Phenotype HP:0012588 Steroid-resistant nephrotic syndrome -0.04018210315876458 -1.328690079990032 1.0 7933 +Phenotype HP:0005701 Multiple enchondromatosis -0.04026969915394196 -1.3297305877540964 1.0 7934 +Biological Process GO:0045653 negative regulation of megakaryocyte differentiation -0.04032992741110597 -1.3304460082372853 1.0 7935 +Phenotype HP:0031651 Abnormal tricuspid valve physiology -0.040492518564157365 -1.332377344901428 1.0 7936 +Phenotype HP:0100771 Hypoperistalsis -0.040594808393326964 -1.3335923931604294 1.0 7937 +Phenotype HP:0008063 Aplasia/Hypoplasia of the lens -0.04074340365933615 -1.3353574798824042 1.0 7938 +Phenotype HP:0011490 Abnormal Descemet membrane morphology -0.04091800496775244 -1.3374314790036543 1.0 7939 +Phenotype HP:0012745 Short palpebral fissure -0.04094880488032859 -1.3377973353205226 1.0 7940 +Biological Process GO:0071103 DNA conformation change -0.04098520410805029 -1.3382297030215078 1.0 7941 +Biological Process GO:0000724 double-strand break repair via homologous recombination -0.04100300011843405 -1.338441092673925 1.0 7942 +Phenotype HP:0032943 Abnormal urine pH -0.04115939682234648 -1.3402988486634015 1.0 7943 +Biological Process GO:0034244 negative regulation of transcription elongation by RNA polymerase II -0.04131622293611903 -1.342161705391702 1.0 7944 +Phenotype HP:0007979 Gaze-evoked horizontal nystagmus -0.04147055453420667 -1.3439949310514536 1.0 7945 +Biological Process GO:0007062 sister chromatid cohesion -0.04154981904580568 -1.3449364734081164 1.0 7946 +Biological Process GO:0018279 protein N-linked glycosylation via asparagine -0.04165412363472276 -1.3461754539616906 1.0 7947 +Phenotype HP:0005792 Short humerus -0.04182868092271108 -1.3482489301869227 1.0 7948 +Phenotype HP:0200128 Biventricular hypertrophy -0.04187585310631947 -1.3488092642888758 1.0 7949 +Phenotype HP:0002913 Myoglobinuria -0.042045509062772046 -1.3508245201182225 1.0 7950 +Biological Process GO:0007585 respiratory gaseous exchange by respiratory system -0.042090921099541045 -1.3513639463413556 1.0 7951 +Phenotype HP:0012072 Aciduria -0.04212236128840918 -1.3517374081709141 1.0 7952 +Phenotype HP:0030500 Yellow/white lesions of the macula -0.042135410139019 -1.3518924087544926 1.0 7953 +Biological Process GO:0042401 biogenic amine biosynthetic process -0.04214205809449023 -1.3519713763975791 1.0 7954 +Phenotype HP:0006118 Shortening of all distal phalanges of the fingers -0.04216284984404939 -1.3522183508945407 1.0 7955 +Biological Process GO:0042178 xenobiotic catabolic process -0.04234260846045701 -1.3543536110243084 1.0 7956 +Biological Process GO:0001889 liver development -0.04240546095615283 -1.3551002034870103 1.0 7957 +Phenotype HP:0003259 Elevated circulating creatinine concentration -0.042496524627537724 -1.3561819019928418 1.0 7958 +Disease MONDO:0019501 Usher syndrome -0.042546017591723384 -1.356769803453376 1.0 7959 +Biological Process GO:0072344 rescue of stalled ribosome -0.042579822755776764 -1.3571713576065285 1.0 7960 +Biological Process GO:1904851 positive regulation of establishment of protein localization to telomere -0.04262291368010973 -1.3576832125291007 1.0 7961 +Phenotype HP:0008314 Decreased activity of mitochondrial complex II -0.04267438259736833 -1.3582945853196846 1.0 7962 +Biological Process GO:0000725 recombinational repair -0.04268488082515831 -1.3584192883669217 1.0 7963 +Biological Process GO:0046032 ADP catabolic process -0.04272679352649145 -1.358917147784601 1.0 7964 +Biological Process GO:0006096 glycolytic process -0.04272679352649145 -1.358917147784601 1.0 7964 +Biological Process GO:0080111 DNA demethylation -0.04275321093601803 -1.359230946602266 1.0 7966 +Biological Process GO:0035510 DNA dealkylation -0.04275321093601803 -1.359230946602266 1.0 7966 +Phenotype HP:0012862 Abnormal germ cell morphology -0.04279967948950625 -1.3597829226439953 1.0 7968 +Phenotype HP:0012863 Abnormal male germ cell morphology -0.04279967948950625 -1.3597829226439953 1.0 7968 +Phenotype HP:0007260 Type II lissencephaly -0.04287120796557198 -1.3606325726142634 1.0 7970 +Biological Process GO:0120254 olefinic compound metabolic process -0.0429172992215372 -1.3611800669328127 1.0 7971 +Phenotype HP:0001976 Reduced antithrombin III activity -0.0429541177129833 -1.3616174148518954 1.0 7972 +Biological Process GO:0015718 monocarboxylic acid transport -0.04303839978614654 -1.3626185582411587 1.0 7973 +Biological Process GO:0016093 polyprenol metabolic process -0.04309544211520233 -1.3632961347233103 1.0 7974 +Biological Process GO:0009116 nucleoside metabolic process -0.04313901837440515 -1.3638137546891274 1.0 7975 +Biological Process GO:0046364 monosaccharide biosynthetic process -0.043153784371183335 -1.3639891523686758 1.0 7976 +Phenotype HP:0010501 Limitation of knee mobility -0.043260032299928364 -1.3652512168563395 1.0 7977 +Biological Process GO:0008366 axon ensheathment -0.04329828830315985 -1.3657056402384111 1.0 7978 +Biological Process GO:0007272 ensheathment of neurons -0.04329828830315985 -1.3657056402384111 1.0 7978 +Phenotype HP:0005301 Persistent left superior vena cava -0.043307028610774845 -1.3658094618562295 1.0 7980 +Phenotype HP:0010488 Aplasia/Hypoplasia of the palmar creases -0.04334351406137449 -1.3662428537544256 1.0 7981 +Phenotype HP:0011962 Obstructive azoospermia -0.04334998227709308 -1.3663196863614553 1.0 7982 +Biological Process GO:0006739 NADP metabolic process -0.04337604200320211 -1.3666292364418091 1.0 7983 +Disease MONDO:0000412 neonatal period electroclinical syndrome -0.04337893766984591 -1.366663632576232 1.0 7984 +Biological Process GO:0070203 regulation of establishment of protein localization to telomere -0.043412107933285426 -1.367057645071609 1.0 7985 +Biological Process GO:0006882 intracellular zinc ion homeostasis -0.04350824132443054 -1.368199564170419 1.0 7986 +Biological Process GO:0009065 glutamine family amino acid catabolic process -0.0435146782961644 -1.3682760256462272 1.0 7987 +Biological Process GO:0009066 aspartate family amino acid metabolic process -0.04353559320265976 -1.3685244630610773 1.0 7988 +Biological Process GO:0007063 regulation of sister chromatid cohesion -0.043557173843363994 -1.3687808083901163 1.0 7989 +Biological Process GO:0042552 myelination -0.043651508875288014 -1.369901365704882 1.0 7990 +Biological Process GO:1901657 glycosyl compound metabolic process -0.04368329712568797 -1.370278961978321 1.0 7991 +Phenotype HP:0010451 Aplasia/Hypoplasia of the spleen -0.043717926008121744 -1.3706903006583628 1.0 7992 +Phenotype HP:0030001 Lagophthalmos -0.043840983216053786 -1.372152033926169 1.0 7993 +Phenotype HP:0003554 Type 2 muscle fiber atrophy -0.043868076735808614 -1.3724738639094194 1.0 7994 +Phenotype HP:0002257 Chronic rhinitis -0.044021656559680045 -1.374298159629997 1.0 7995 +Phenotype HP:0007281 Developmental stagnation -0.044151617524713416 -1.3758418990768597 1.0 7996 +Biological Process GO:0043043 peptide biosynthetic process -0.04421014850369742 -1.3765371584656916 1.0 7997 +Phenotype HP:0500164 Abnormal blood carbon dioxide level -0.04426039633462486 -1.37713402659992 1.0 7998 +Phenotype HP:0012416 Hypercapnia -0.04426039633462486 -1.37713402659992 1.0 7998 +Phenotype HP:0009912 Abnormal tragus morphology -0.044478752460117565 -1.3797277666841106 1.0 8000 +Disease MONDO:0002917 disorder of pilosebaceous unit -0.044516044727111126 -1.3801707423391936 1.0 8001 +Biological Process GO:0042633 hair cycle -0.04460539212953418 -1.38123205416894 1.0 8002 +Biological Process GO:0042303 molting cycle -0.04460539212953418 -1.38123205416894 1.0 8002 +Biological Process GO:0032200 telomere organization -0.044765519808093845 -1.3831341284868988 1.0 8004 +Phenotype HP:0007418 Alopecia totalis -0.04483711798768275 -1.3839846064294608 1.0 8005 +Biological Process GO:0046033 AMP metabolic process -0.044844507873538886 -1.3840723870819127 1.0 8006 +Phenotype HP:0000511 Vertical supranuclear gaze palsy -0.04485698056285692 -1.3842205437419048 1.0 8007 +Biological Process GO:0006493 protein O-linked glycosylation -0.044939656767503555 -1.3852026118451783 1.0 8008 +Phenotype HP:0007874 Almond-shaped palpebral fissure -0.04495931802766617 -1.3854361578401644 1.0 8009 +Phenotype HP:0011620 Abnormality of abdominal situs -0.045073461260276115 -1.3867920065808006 1.0 8010 +Biological Process GO:0019692 deoxyribose phosphate metabolic process -0.04519846183756737 -1.3882768241334833 1.0 8011 +Biological Process GO:0009262 deoxyribonucleotide metabolic process -0.04519846183756737 -1.3882768241334833 1.0 8011 +Biological Process GO:0009394 2'-deoxyribonucleotide metabolic process -0.04519846183756737 -1.3882768241334833 1.0 8011 +Phenotype HP:0002131 Episodic ataxia -0.04521299142751278 -1.3884494136578815 1.0 8014 +Biological Process GO:0008210 estrogen metabolic process -0.04522134970342817 -1.3885486973176715 1.0 8015 +Biological Process GO:2001034 positive regulation of double-strand break repair via nonhomologous end joining -0.04529594981837759 -1.3894348337060736 1.0 8016 +Biological Process GO:2000738 positive regulation of stem cell differentiation -0.04539130705993677 -1.3905675333232326 1.0 8017 +Phenotype HP:0031095 Abnormal humerus morphology -0.04552343777076873 -1.3921370460642384 1.0 8018 +Disease MONDO:0020066 Ehlers-Danlos syndrome -0.04558409187096646 -1.3928575249177553 1.0 8019 +Biological Process GO:0070897 transcription preinitiation complex assembly -0.04559093420725824 -1.3929388015106123 1.0 8020 +Phenotype HP:0033079 Aplasia/Hypoplasia of the thyroid gland -0.04570989130527825 -1.394351831682023 1.0 8021 +Biological Process GO:1904816 positive regulation of protein localization to chromosome, telomeric region -0.045714936515881766 -1.3944117611433375 1.0 8022 +Phenotype HP:0002912 Methylmalonic acidemia -0.04598651156584643 -1.3976376614535306 1.0 8023 +Phenotype HP:0010988 Abnormality of the extrinsic pathway -0.04606166348329155 -1.398530352419911 1.0 8024 +Biological Process GO:0008156 negative regulation of DNA replication -0.04626015453039045 -1.4008881254571992 1.0 8025 +Biological Process GO:0044273 sulfur compound catabolic process -0.04650762775126105 -1.403827732538464 1.0 8026 +Phenotype HP:0001029 Poikiloderma -0.04660383979963689 -1.4049705859660535 1.0 8027 +Biological Process GO:0050650 chondroitin sulfate proteoglycan biosynthetic process -0.04663598996405027 -1.405352481229876 1.0 8028 +Biological Process GO:0050654 chondroitin sulfate proteoglycan metabolic process -0.04663598996405027 -1.405352481229876 1.0 8028 +Biological Process GO:0018904 ether metabolic process -0.046674887454217995 -1.4058145245052585 1.0 8030 +Biological Process GO:0019319 hexose biosynthetic process -0.04670182267040368 -1.4061344740818482 1.0 8031 +Phenotype HP:0012269 Abnormal muscle glycogen content -0.0467964752217489 -1.4072588030464743 1.0 8032 +Phenotype HP:0004364 Abnormal circulating nitrogen compound concentration -0.04683688515536488 -1.4077388118595213 1.0 8033 +Biological Process GO:0046503 glycerolipid catabolic process -0.04689390169284047 -1.4084160819767597 1.0 8034 +Phenotype HP:0003737 Mitochondrial myopathy -0.046902042944328315 -1.4085127877150205 1.0 8035 +Biological Process GO:0009126 purine nucleoside monophosphate metabolic process -0.0469793359865609 -1.409430912001277 1.0 8036 +Phenotype HP:0010984 Digenic inheritance -0.046980918652175685 -1.4094497116719327 1.0 8037 +Biological Process GO:0046164 alcohol catabolic process -0.04718487664419291 -1.4118724237355051 1.0 8038 +Biological Process GO:0003351 epithelial cilium movement involved in extracellular fluid movement -0.047191966853512346 -1.4119566446845426 1.0 8039 +Biological Process GO:0006760 folic acid-containing compound metabolic process -0.04732280584895587 -1.413510813802956 1.0 8040 +Phenotype HP:0003128 Lactic acidosis -0.047345385316429844 -1.4137790236813588 1.0 8041 +Phenotype HP:0003079 Defective DNA repair after ultraviolet radiation damage -0.04740163885193338 -1.4144472304906879 1.0 8042 +Biological Process GO:0010830 regulation of myotube differentiation -0.04742364023964307 -1.4147085736569567 1.0 8043 +Biological Process GO:0015807 L-amino acid transport -0.04749475737560527 -1.4155533375297438 1.0 8044 +Disease MONDO:0033885 mitochondrial complex IV deficiency, nuclear-type -0.04773029456457922 -1.4183511626284484 1.0 8045 +Phenotype HP:0007722 Retinal pigment epithelial atrophy -0.04782618756270951 -1.4194902262223024 1.0 8046 +Biological Process GO:0006688 glycosphingolipid biosynthetic process -0.04793032949866638 -1.420727274705037 1.0 8047 +Biological Process GO:0006814 sodium ion transport -0.048059776927061426 -1.4222649141143553 1.0 8048 +Biological Process GO:0015697 quaternary ammonium group transport -0.04819355389381208 -1.4238539818825238 1.0 8049 +Phenotype HP:0011169 Generalized clonic seizure -0.04824649406702619 -1.4244828309657342 1.0 8050 +Phenotype HP:0004233 Advanced ossification of carpal bones -0.04840029640147048 -1.4263097697749392 1.0 8051 +Phenotype HP:0001746 Asplenia -0.04848873220496874 -1.4273602531900185 1.0 8052 +Biological Process GO:0019362 pyridine nucleotide metabolic process -0.04852726428155574 -1.4278179559054578 1.0 8053 +Biological Process GO:0046496 nicotinamide nucleotide metabolic process -0.04852726428155574 -1.4278179559054578 1.0 8053 +Phenotype HP:0005108 Abnormal intervertebral disk morphology -0.04857597799843205 -1.4283966010880782 1.0 8055 +Phenotype HP:0003370 Flat capital femoral epiphysis -0.048630195918067276 -1.4290406278637044 1.0 8056 +Phenotype HP:0003348 Hyperalaninemia -0.04864817880826977 -1.4292542373653503 1.0 8057 +Biological Process GO:0006303 double-strand break repair via nonhomologous end joining -0.04870608686600475 -1.429942097393119 1.0 8058 +Biological Process GO:0009111 vitamin catabolic process -0.04896151588665387 -1.4329762073271923 1.0 8059 +Phenotype HP:0009183 Joint contracture of the 5th finger -0.04897491242306651 -1.43313533789156 1.0 8060 +Disease MONDO:0019701 chondrodysplasia punctata -0.049089760481257017 -1.4344995588926794 1.0 8061 +Phenotype HP:0031970 Abnormal blood urea nitrogen concentration -0.049121547119799214 -1.4348771360196895 1.0 8062 +Biological Process GO:2000232 regulation of rRNA processing -0.04915097553592229 -1.4352267010357402 1.0 8063 +Biological Process GO:0018345 protein palmitoylation -0.049617770871140054 -1.440771522685857 1.0 8064 +Biological Process GO:0070202 regulation of establishment of protein localization to chromosome -0.049630092983795615 -1.4409178907231381 1.0 8065 +Phenotype HP:0005990 Thyroid hypoplasia -0.04966743241704874 -1.4413614266419545 1.0 8066 +Biological Process GO:0050685 positive regulation of mRNA processing -0.04971014467601087 -1.441868783593386 1.0 8067 +Phenotype HP:0008774 Aplasia/Hypoplasia of the inner ear -0.0499113973424159 -1.444259360485732 1.0 8068 +Phenotype HP:0008331 Elevated creatine kinase after exercise -0.04993380410888393 -1.444525518937729 1.0 8069 +Biological Process GO:0046653 tetrahydrofolate metabolic process -0.04998376938535287 -1.4451190307529014 1.0 8070 +Phenotype HP:0010648 Dermal translucency -0.05003692407616045 -1.4457504279802487 1.0 8071 +Biological Process GO:0015698 inorganic anion transport -0.05012054393321819 -1.4467437052450633 1.0 8072 +Disease MONDO:0016022 early myoclonic encephalopathy -0.050159466410879316 -1.4472060453340254 1.0 8073 +Biological Process GO:1901293 nucleoside phosphate biosynthetic process -0.05016508648366158 -1.447272803287431 1.0 8074 +Biological Process GO:0032968 positive regulation of transcription elongation by RNA polymerase II -0.05022610151282758 -1.4479975694304865 1.0 8075 +Phenotype HP:0025101 Dysgenesis of the hippocampus -0.05039244958742306 -1.4499735326329508 1.0 8076 +Disease MONDO:0020058 gonosome anomaly -0.05043842549164235 -1.4505196567474514 1.0 8077 +Biological Process GO:0010043 response to zinc ion -0.05044061092809038 -1.4505456164227475 1.0 8078 +Biological Process GO:0015986 proton motive force-driven ATP synthesis -0.05052543829299205 -1.4515532370520534 1.0 8079 +Phenotype HP:0011488 Abnormal corneal endothelium morphology -0.050533859115644564 -1.4516532636723571 1.0 8080 +Phenotype HP:0010871 Sensory ataxia -0.050814265923896595 -1.45498407189586 1.0 8081 +Biological Process GO:0009404 toxin metabolic process -0.05086940942772089 -1.455639093209913 1.0 8082 +Biological Process GO:0006672 ceramide metabolic process -0.05101164824326987 -1.4573286749268664 1.0 8083 +Disease MONDO:0020065 combined dystonia -0.05103416586436316 -1.4575961501639292 1.0 8084 +Phenotype HP:0007687 Unilateral ptosis -0.0510358736997365 -1.4576164366617548 1.0 8085 +Biological Process GO:0009168 purine ribonucleoside monophosphate biosynthetic process -0.05113243600031958 -1.4587634505551315 1.0 8086 +Biological Process GO:0006734 NADH metabolic process -0.051155919236105074 -1.4590423958323748 1.0 8087 +Biological Process GO:0009812 flavonoid metabolic process -0.05116082927659016 -1.459100719677389 1.0 8088 +Phenotype HP:0004918 Hyperchloremic metabolic acidosis -0.05118371041599268 -1.4593725129614399 1.0 8089 +Biological Process GO:0052695 cellular glucuronidation -0.051217625875042305 -1.459775377252113 1.0 8090 +Biological Process GO:0031297 replication fork processing -0.051265756012721875 -1.46034709039767 1.0 8091 +Biological Process GO:0042558 pteridine-containing compound metabolic process -0.05137017682819067 -1.461587451546661 1.0 8092 +Biological Process GO:0034656 nucleobase-containing small molecule catabolic process -0.05137197685795902 -1.4616088331742767 1.0 8093 +Biological Process GO:0050879 multicellular organismal movement -0.05146765059728753 -1.4627452923056192 1.0 8094 +Biological Process GO:0050881 musculoskeletal movement -0.05146765059728753 -1.4627452923056192 1.0 8094 +Phenotype HP:0012868 Abnormal sperm tail morphology -0.05154076519701278 -1.463613783022878 1.0 8096 +Disease MONDO:0019512 congenital heart malformation -0.05154751801114332 -1.463693996228035 1.0 8097 +Phenotype HP:0009775 Amniotic constriction ring -0.05167762665898845 -1.465239489923045 1.0 8098 +Biological Process GO:0000154 rRNA modification -0.051688437028556855 -1.4653679007418905 1.0 8099 +Biological Process GO:0006400 tRNA modification -0.051728667435211095 -1.4658457770465143 1.0 8100 +Biological Process GO:0009067 aspartate family amino acid biosynthetic process -0.05174603282962087 -1.4660520516333013 1.0 8101 +Biological Process GO:0009135 purine nucleoside diphosphate metabolic process -0.05177058445154237 -1.4663436877198366 1.0 8102 +Disease MONDO:0100137 telomere syndrome -0.05186259502141022 -1.4674366339456268 1.0 8103 +Biological Process GO:0000271 polysaccharide biosynthetic process -0.05197812731296625 -1.4688089826029 1.0 8104 +Phenotype HP:0025186 Marcus Gunn jaw winking synkinesis -0.05197949729644602 -1.4688252559318857 1.0 8105 +Phenotype HP:0000537 Epicanthus inversus -0.052012103301536605 -1.4692125658926114 1.0 8106 +Biological Process GO:0006555 methionine metabolic process -0.052099810736451646 -1.4702543973919906 1.0 8107 +Phenotype HP:0025335 Delayed ability to stand -0.05212783319588099 -1.4705872617717533 1.0 8108 +Phenotype HP:0010901 Abnormal circulating methionine concentration -0.052135187251457715 -1.4706746168147486 1.0 8109 +Biological Process GO:0042278 purine nucleoside metabolic process -0.05216272657807908 -1.4710017423084267 1.0 8110 +Phenotype HP:0010469 Absent testis -0.052250326481118714 -1.4720422964919764 1.0 8111 +Phenotype HP:0007431 Congenital ichthyosiform erythroderma -0.052361996585102544 -1.4733687682099328 1.0 8112 +Phenotype HP:0002922 Increased CSF protein concentration -0.05242200781948769 -1.4740816107911763 1.0 8113 +Biological Process GO:0006805 xenobiotic metabolic process -0.052450441210506016 -1.4744193564158858 1.0 8114 +Phenotype HP:0002266 Focal clonic seizure -0.05247973153506291 -1.4747672811132615 1.0 8115 +Phenotype HP:0011172 Complex febrile seizure -0.05248795045753596 -1.4748649094651984 1.0 8116 +Biological Process GO:0070129 regulation of mitochondrial translation -0.05255022666580511 -1.4756046565060228 1.0 8117 +Phenotype HP:0006961 Jerky head movements -0.052594800500266325 -1.4761341261551444 1.0 8118 +Biological Process GO:1900153 positive regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay -0.052647409575596216 -1.476759042296917 1.0 8119 +Phenotype HP:0010444 Pulmonary insufficiency -0.0527126519014236 -1.477534022322334 1.0 8120 +Phenotype HP:0003537 Hypouricemia -0.05277204133890501 -1.4782394788980335 1.0 8121 +Disease MONDO:0004907 alopecia -0.05282168105263141 -1.4788291235208688 1.0 8122 +Phenotype HP:0040035 Abnormality of the fourth metatarsal bone -0.052829508235178846 -1.4789220985957552 1.0 8123 +Phenotype HP:0004689 Short fourth metatarsal -0.052829508235178846 -1.4789220985957552 1.0 8123 +Phenotype HP:0005736 Short tibia -0.052895848578976334 -1.4797101214117778 1.0 8125 +Phenotype HP:0002909 Generalized aminoaciduria -0.05289977814865643 -1.4797567987484903 1.0 8126 +Disease MONDO:0019942 distal arthrogryposis -0.0529008344545685 -1.4797693460630166 1.0 8127 +Biological Process GO:0043094 cellular metabolic compound salvage -0.05297805065712158 -1.4806865576102495 1.0 8128 +Phenotype HP:0006955 Olivopontocerebellar hypoplasia -0.05302155879931414 -1.4812033684491435 1.0 8129 +Biological Process GO:0009119 ribonucleoside metabolic process -0.05310379099828433 -1.4821801624373994 1.0 8130 +Phenotype HP:0003413 Atlantoaxial abnormality -0.05310845562983535 -1.4822355711959334 1.0 8131 +Phenotype HP:0012598 Abnormal urine potassium concentration -0.05322925372505516 -1.4836704696260028 1.0 8132 +Disease MONDO:0024322 disorder of glycosylation -0.05326322317084076 -1.4840739751973397 1.0 8133 +Biological Process GO:0002227 innate immune response in mucosa -0.053333177107586005 -1.4849049220250217 1.0 8134 +Phenotype HP:0001863 Toe clinodactyly -0.05340960673790862 -1.4858127902853708 1.0 8135 +Biological Process GO:0006081 cellular aldehyde metabolic process -0.053430603238866725 -1.4860621969188688 1.0 8136 +Biological Process GO:0003009 skeletal muscle contraction -0.05351209770593135 -1.4870302277693352 1.0 8137 +Phenotype HP:0000185 Cleft soft palate -0.05370114873189391 -1.489275867651844 1.0 8138 +Phenotype HP:0200125 Mitochondrial respiratory chain defects -0.05376451175322239 -1.490028524385903 1.0 8139 +Phenotype HP:0001266 Choreoathetosis -0.053774300481845616 -1.490144799657531 1.0 8140 +Biological Process GO:0009451 RNA modification -0.05385508770692837 -1.4911044295443268 1.0 8141 +Phenotype HP:0012020 Right aortic arch -0.053856181109184886 -1.4911174175072448 1.0 8142 +Biological Process GO:0006120 mitochondrial electron transport, NADH to ubiquinone -0.054023792633595136 -1.493108388580093 1.0 8143 +Phenotype HP:0001670 Asymmetric septal hypertrophy -0.054031976512456836 -1.4932056006669987 1.0 8144 +Biological Process GO:0009179 purine ribonucleoside diphosphate metabolic process -0.054085119157030626 -1.4938368548033318 1.0 8145 +Phenotype HP:0012120 Methylmalonic aciduria -0.05412671958351245 -1.494331004868698 1.0 8146 +Disease MONDO:0003037 hypotrichosis -0.05427942536384833 -1.4961449182757576 1.0 8147 +Phenotype HP:0011410 Caesarian section -0.05428011662964294 -1.496153129466519 1.0 8148 +Biological Process GO:0032786 positive regulation of DNA-templated transcription, elongation -0.05451798933781893 -1.4989786969963461 1.0 8149 +Biological Process GO:0061157 mRNA destabilization -0.05463371737646838 -1.5003533708326424 1.0 8150 +Phenotype HP:0003200 Ragged-red muscle fibers -0.054660343299690384 -1.5006696464772284 1.0 8151 +Biological Process GO:0062125 regulation of mitochondrial gene expression -0.05476762850212569 -1.501944032205447 1.0 8152 +Biological Process GO:0035336 long-chain fatty-acyl-CoA metabolic process -0.0548280506919927 -1.5026617563154485 1.0 8153 +Phenotype HP:0011922 Abnormal activity of mitochondrial respiratory chain -0.054848320976694565 -1.5029025365996311 1.0 8154 +Biological Process GO:0045005 DNA-templated DNA replication maintenance of fidelity -0.0548790619450612 -1.5032676927485575 1.0 8155 +Biological Process GO:0000956 nuclear-transcribed mRNA catabolic process -0.054943802512219975 -1.5040367126408736 1.0 8156 +Phenotype HP:0006889 Intellectual disability, borderline -0.05497507164049842 -1.5044081425296871 1.0 8157 +Biological Process GO:0009303 rRNA transcription -0.05505450286686475 -1.5053516652053067 1.0 8158 +Biological Process GO:1901292 nucleoside phosphate catabolic process -0.05508735933979425 -1.5057419503446408 1.0 8159 +Phenotype HP:0006846 Acute encephalopathy -0.05510000225153533 -1.5058921289892275 1.0 8160 +Biological Process GO:0050905 neuromuscular process -0.055136660494870204 -1.5063275734034345 1.0 8161 +Disease MONDO:0004737 homocystinuria -0.0552213038627094 -1.5073330084262901 1.0 8162 +Biological Process GO:0070988 demethylation -0.05525488330082773 -1.507731881297182 1.0 8163 +Biological Process GO:0002385 mucosal immune response -0.05533825472062448 -1.508722207503579 1.0 8164 +Biological Process GO:0009137 purine nucleoside diphosphate catabolic process -0.05534178793644551 -1.508764176756699 1.0 8165 +Biological Process GO:0009181 purine ribonucleoside diphosphate catabolic process -0.05534178793644551 -1.508764176756699 1.0 8165 +Biological Process GO:1901983 regulation of protein acetylation -0.05546375335767362 -1.510212941251905 1.0 8167 +Biological Process GO:0009064 glutamine family amino acid metabolic process -0.05547558528505081 -1.5103534866304338 1.0 8168 +Phenotype HP:0003546 Exercise intolerance -0.05548482105990171 -1.5104631936486606 1.0 8169 +Phenotype HP:0006285 Enamel hypomineralization -0.055510316295471096 -1.5107660384362889 1.0 8170 +Biological Process GO:0042776 proton motive force-driven mitochondrial ATP synthesis -0.05554564547643093 -1.511185695602262 1.0 8171 +Biological Process GO:0099116 tRNA 5'-end processing -0.055561673727404726 -1.5113760869500497 1.0 8172 +Biological Process GO:0008535 respiratory chain complex IV assembly -0.05558657740546824 -1.511671904930385 1.0 8173 +Biological Process GO:0015711 organic anion transport -0.05558760028740295 -1.5116840552186788 1.0 8174 +Phenotype HP:0001116 Macular coloboma -0.05568359125264366 -1.5128242825134395 1.0 8175 +Phenotype HP:0006858 Impaired distal proprioception -0.05600206102292815 -1.5166072210819181 1.0 8176 +Biological Process GO:0050779 RNA destabilization -0.05602155281927157 -1.5168387541033745 1.0 8177 +Disease MONDO:0000411 electroclinical syndrome -0.05612577837680055 -1.5180767958837462 1.0 8178 +Disease MONDO:0017740 disorder of protein N-glycosylation -0.05615952164627869 -1.5184776148230803 1.0 8179 +Biological Process GO:0046165 alcohol biosynthetic process -0.056403147058687875 -1.521371515767088 1.0 8180 +Biological Process GO:1904814 regulation of protein localization to chromosome, telomeric region -0.05647054818057029 -1.5221721390202776 1.0 8181 +Biological Process GO:0042572 retinol metabolic process -0.056479673443148526 -1.522280533320069 1.0 8182 +Phenotype HP:0010772 Anomalous pulmonary venous return -0.05651429291418486 -1.5226917602069623 1.0 8183 +Disease MONDO:0015286 congenital disorder of glycosylation -0.05659819065979099 -1.523688338366887 1.0 8184 +Phenotype HP:0004692 4-5 toe syndactyly -0.056646817375392455 -1.5242659501061204 1.0 8185 +Biological Process GO:1902476 chloride transmembrane transport -0.05676245013691261 -1.5256394921944119 1.0 8186 +Phenotype HP:0008417 Vertebral hypoplasia -0.05689283531169087 -1.5271882706106048 1.0 8187 +Phenotype HP:0008515 Aplasia/Hypoplasia of the vertebrae -0.05689283531169087 -1.5271882706106048 1.0 8187 +Biological Process GO:0045039 protein insertion into mitochondrial inner membrane -0.0569061731840923 -1.5273467043353621 1.0 8189 +Phenotype HP:0032898 Focal automatism seizure -0.05695906827656749 -1.527975017927666 1.0 8190 +Disease MONDO:0020072 childhood-onset epilepsy syndrome -0.057055228206635 -1.5291172522686824 1.0 8191 +Biological Process GO:0009799 specification of symmetry -0.05709528459533342 -1.5295930615035302 1.0 8192 +Biological Process GO:0009855 determination of bilateral symmetry -0.05709528459533342 -1.5295930615035302 1.0 8192 +Biological Process GO:0070989 oxidative demethylation -0.05718275578022736 -1.5306320867104446 1.0 8194 +Phenotype HP:0003234 Decreased circulating carnitine concentration -0.057190577906024 -1.5307250017187897 1.0 8195 +Phenotype HP:0010967 Abnormal circulating carnitine concentration -0.057190577906024 -1.5307250017187897 1.0 8195 +Biological Process GO:0006308 DNA catabolic process -0.05732683176967934 -1.532343491271081 1.0 8197 +Phenotype HP:0032560 Coiled sperm flagella -0.057327443397565236 -1.5323507564840932 1.0 8198 +Phenotype HP:0031264 Abnormal Bowman capsule morphology -0.05732775929439793 -1.5323545088600596 1.0 8199 +Disease MONDO:0018158 mitochondrial DNA depletion syndrome -0.057523156537504505 -1.5346755321912913 1.0 8200 +Biological Process GO:0031507 heterochromatin formation -0.05753499437020504 -1.5348161477161182 1.0 8201 +Biological Process GO:0046513 ceramide biosynthetic process -0.05758801940338287 -1.5354460048071823 1.0 8202 +Biological Process GO:0009165 nucleotide biosynthetic process -0.05762293531935181 -1.5358607530109276 1.0 8203 +Biological Process GO:0009219 pyrimidine deoxyribonucleotide metabolic process -0.0576844413022124 -1.5365913509403564 1.0 8204 +Biological Process GO:0007127 meiosis I -0.057705769690504116 -1.536844699892755 1.0 8205 +Biological Process GO:0032981 mitochondrial respiratory chain complex I assembly -0.058105025720241565 -1.5415872568778097 1.0 8206 +Biological Process GO:0010257 NADH dehydrogenase complex assembly -0.058105025720241565 -1.5415872568778097 1.0 8206 +Biological Process GO:0042573 retinoic acid metabolic process -0.05813554376042518 -1.5419497649775324 1.0 8208 +Biological Process GO:0009261 ribonucleotide catabolic process -0.05817277337094273 -1.54239199636857 1.0 8209 +Phenotype HP:0025052 Abnormal brain N-acetyl aspartate level by MRS -0.05824684055751872 -1.543271802374982 1.0 8210 +Biological Process GO:0032790 ribosome disassembly -0.05827446221352761 -1.5435999058171013 1.0 8211 +Biological Process GO:0009166 nucleotide catabolic process -0.05830518847292909 -1.5439648872457974 1.0 8212 +Biological Process GO:0000038 very long-chain fatty acid metabolic process -0.05858258653623638 -1.5472599561359122 1.0 8213 +Phenotype HP:0001776 Bilateral talipes equinovarus -0.058718165510850184 -1.548870429028467 1.0 8214 +Biological Process GO:0061620 glycolytic process through glucose-6-phosphate -0.05874713579950641 -1.549214552184017 1.0 8215 +Phenotype HP:0025456 Abnormal CSF protein concentration -0.05906037014964505 -1.5529353018898786 1.0 8216 +Phenotype HP:0003097 Short femur -0.059081121699189554 -1.5531817988715464 1.0 8217 +Biological Process GO:0006244 pyrimidine nucleotide catabolic process -0.0590862433559276 -1.5532426363971665 1.0 8218 +Phenotype HP:0003680 Nonprogressive -0.059096060006538886 -1.5533592433397265 1.0 8219 +Biological Process GO:0035338 long-chain fatty-acyl-CoA biosynthetic process -0.05914785294292768 -1.5539744649868703 1.0 8220 +Phenotype HP:0002789 Tachypnea -0.0592878500584324 -1.555637418702212 1.0 8221 +Phenotype HP:0001864 Clinodactyly of the 5th toe -0.059506491836993636 -1.5582345519122531 1.0 8222 +Biological Process GO:0045333 cellular respiration -0.059564191401972444 -1.5589199353618277 1.0 8223 +Phenotype HP:0002487 Hyperkinetic movements -0.05961547693300262 -1.5595291298017446 1.0 8224 +Biological Process GO:0010526 retrotransposon silencing -0.05965240465406341 -1.5599677752032284 1.0 8225 +Phenotype HP:0031469 Low self-esteem -0.059758818338398356 -1.5612318086162742 1.0 8226 +Disease MONDO:0004983 spermatogenic failure -0.059797941768123364 -1.5616965357114256 1.0 8227 +Disease MONDO:0005372 male infertility -0.059797941768123364 -1.5616965357114256 1.0 8227 +Disease MONDO:0003004 macular degeneration -0.05991185388742126 -1.5630496391759217 1.0 8229 +Phenotype HP:0007754 Macular dystrophy -0.05991984605911993 -1.5631445740720589 1.0 8230 +Disease MONDO:0014769 inherited oocyte maturation defect -0.05996531957494522 -1.5636847305732744 1.0 8231 +Biological Process GO:0009134 nucleoside diphosphate catabolic process -0.05999500310467876 -1.564037325952664 1.0 8232 +Biological Process GO:0009191 ribonucleoside diphosphate catabolic process -0.05999500310467876 -1.564037325952664 1.0 8232 +Phenotype HP:0011013 Abnormal circulating carbohydrate concentration -0.0600248966090795 -1.5643924155131066 1.0 8234 +Biological Process GO:0060211 regulation of nuclear-transcribed mRNA poly(A) tail shortening -0.060049177501204865 -1.564680835739667 1.0 8235 +Biological Process GO:0042574 retinal metabolic process -0.060058781612742695 -1.5647949180399117 1.0 8236 +Biological Process GO:0006285 base-excision repair, AP site formation -0.06006664410831375 -1.5648883125800392 1.0 8237 +Biological Process GO:0141060 disruption of anatomical structure in another organism -0.06009878047967798 -1.5652700440033265 1.0 8238 +Biological Process GO:0044242 cellular lipid catabolic process -0.060182582767335235 -1.5662654882673839 1.0 8239 +Phenotype HP:0011395 Aplasia/Hypoplasia of the cochlea -0.060223381692707356 -1.56675011771339 1.0 8240 +Biological Process GO:0030497 fatty acid elongation -0.060345428410900626 -1.568199847893423 1.0 8241 +Biological Process GO:0030206 chondroitin sulfate biosynthetic process -0.06036742043626897 -1.568461079849255 1.0 8242 +Biological Process GO:0030204 chondroitin sulfate metabolic process -0.06036742043626897 -1.568461079849255 1.0 8242 +Biological Process GO:0006399 tRNA metabolic process -0.060431104708496 -1.5692175525574745 1.0 8244 +Biological Process GO:0015740 C4-dicarboxylate transport -0.06054555212289214 -1.5705770145170668 1.0 8245 +Biological Process GO:0000245 spliceosomal complex assembly -0.06060921213439174 -1.5713331990445858 1.0 8246 +Biological Process GO:0006735 NADH regeneration -0.060765709600714146 -1.5731921519388945 1.0 8247 +Biological Process GO:0061621 canonical glycolysis -0.060765709600714146 -1.5731921519388945 1.0 8247 +Biological Process GO:0061718 glucose catabolic process to pyruvate -0.060765709600714146 -1.5731921519388945 1.0 8247 +Biological Process GO:0061615 glycolytic process through fructose-6-phosphate -0.06082683250285181 -1.5739181994494866 1.0 8250 +Phenotype HP:0002268 Paroxysmal dystonia -0.061020237071733874 -1.5762155528287112 1.0 8251 +Biological Process GO:0002920 regulation of humoral immune response -0.06104809180967119 -1.5765464249311523 1.0 8252 +Biological Process GO:0046390 ribose phosphate biosynthetic process -0.06105206783566386 -1.576593654098503 1.0 8253 +Biological Process GO:0008380 RNA splicing -0.06114214717555089 -1.5776636602368481 1.0 8254 +Biological Process GO:0009167 purine ribonucleoside monophosphate metabolic process -0.06117085073721551 -1.5780046150796792 1.0 8255 +Disease MONDO:0004739 urea cycle disorder -0.061261351915407936 -1.5790796320182445 1.0 8256 +Biological Process GO:0019646 aerobic electron transport chain -0.061277217739115875 -1.5792680939760997 1.0 8257 +Biological Process GO:0042770 signal transduction in response to DNA damage -0.061328933335891955 -1.5798823969457703 1.0 8258 +Disease MONDO:0005047 infertility disorder -0.061362730038157176 -1.5802838505856944 1.0 8259 +Phenotype HP:0003355 Aminoaciduria -0.061369123522292846 -1.5803597954946953 1.0 8260 +Phenotype HP:0012212 Abnormal glomerular filtration rate -0.061386693630892886 -1.5805685017760358 1.0 8261 +Phenotype HP:0012213 Decreased glomerular filtration rate -0.061386693630892886 -1.5805685017760358 1.0 8261 +Biological Process GO:0006090 pyruvate metabolic process -0.06141904262256803 -1.5809527588066168 1.0 8263 +Biological Process GO:0000381 regulation of alternative mRNA splicing, via spliceosome -0.06146381617664898 -1.5814846008223578 1.0 8264 +Disease MONDO:0020073 adolescent-onset epilepsy syndrome -0.06155109161606598 -1.5825213008694503 1.0 8265 +Biological Process GO:0042181 ketone biosynthetic process -0.061747155342694704 -1.5848502410155776 1.0 8266 +Biological Process GO:0006670 sphingosine metabolic process -0.06185095818356734 -1.5860832615622498 1.0 8267 +Phenotype HP:0012240 Increased intramyocellular lipid droplets -0.061962616164764395 -1.5874095892798583 1.0 8268 +Disease MONDO:0019250 inborn disorder of biogenic amine metabolism and transport -0.06200118928344578 -1.5878677795132232 1.0 8269 +Biological Process GO:0006063 uronic acid metabolic process -0.06202683611869553 -1.588172425075466 1.0 8270 +Biological Process GO:0019585 glucuronate metabolic process -0.06202683611869553 -1.588172425075466 1.0 8270 +Phenotype HP:0010344 Deviation of the 5th toe -0.06208930867818241 -1.5889145044713957 1.0 8272 +Phenotype HP:0032663 Focal motor status epilepticus -0.06215027300271614 -1.5896386683202088 1.0 8273 +Phenotype HP:0012705 Abnormal metabolic brain imaging by MRS -0.06225625329687534 -1.590897553714309 1.0 8274 +Phenotype HP:0010915 Abnormal circulating pyruvate family amino acid concentration -0.062357349760948866 -1.5920984266032456 1.0 8275 +Phenotype HP:0010916 Abnormal circulating alanine concentration -0.062357349760948866 -1.5920984266032456 1.0 8275 +Phenotype HP:0002154 Hyperglycinemia -0.06246864414987874 -1.593420435395358 1.0 8277 +Phenotype HP:0011196 EEG with focal sharp waves -0.06250573344622468 -1.5938610000665336 1.0 8278 +Phenotype HP:0500183 Abnormal CSF carboxylic acid concentration -0.06251384076536359 -1.5939573027398775 1.0 8279 +Phenotype HP:0003201 Rhabdomyolysis -0.06251483962159599 -1.5939691676392131 1.0 8280 +Phenotype HP:0002562 Low-set nipples -0.06260646079014198 -1.5950574883670239 1.0 8281 +Biological Process GO:1901018 positive regulation of potassium ion transmembrane transporter activity -0.06272814718437347 -1.5965029384440788 1.0 8282 +Phenotype HP:0006286 Yellow-brown discoloration of the teeth -0.06277705500592434 -1.5970838892962735 1.0 8283 +Biological Process GO:0061014 positive regulation of mRNA catabolic process -0.06293940877887616 -1.5990124062443307 1.0 8284 +Biological Process GO:0009154 purine ribonucleotide catabolic process -0.06297733465839106 -1.5994629082566008 1.0 8285 +Biological Process GO:0009309 amine biosynthetic process -0.06304124143833834 -1.6002220240195628 1.0 8286 +Biological Process GO:0008300 isoprenoid catabolic process -0.06319864113597551 -1.6020916940555183 1.0 8287 +Phenotype HP:0045074 Thin eyebrow -0.06330369292314586 -1.6033395501927563 1.0 8288 +Phenotype HP:0032989 Delayed ability to roll over -0.06333444084635453 -1.6037047889546734 1.0 8289 +Biological Process GO:0072529 pyrimidine-containing compound catabolic process -0.0633799601247853 -1.6042454890463376 1.0 8290 +Disease MONDO:0016800 mitochondrial membrane transport disorder -0.06338003524100122 -1.604246381313224 1.0 8291 +Disease MONDO:0016801 mitochondrial substrate carrier disorder -0.06338003524100122 -1.604246381313224 1.0 8291 +Biological Process GO:0006821 chloride transport -0.06341289887259793 -1.604636751486683 1.0 8293 +Phenotype HP:0010895 Abnormal circulating glycine concentration -0.06343041879458022 -1.6048448616270092 1.0 8294 +Biological Process GO:0046475 glycerophospholipid catabolic process -0.06348040762640372 -1.6054386532441205 1.0 8295 +Phenotype HP:0002572 Episodic vomiting -0.0636994315089845 -1.6080403252712414 1.0 8296 +Biological Process GO:0036109 alpha-linolenic acid metabolic process -0.06371327091174472 -1.608204716417125 1.0 8297 +Biological Process GO:0043649 dicarboxylic acid catabolic process -0.06382345699769254 -1.609513560248266 1.0 8298 +Biological Process GO:0061982 meiosis I cell cycle process -0.06390045345348927 -1.6104281615368259 1.0 8299 +Biological Process GO:0009164 nucleoside catabolic process -0.06392772759237797 -1.6107521370018503 1.0 8300 +Phenotype HP:0030612 Abnormal retinal morphology on macular OCT -0.06406195570189843 -1.6123465636628966 1.0 8301 +Phenotype HP:0030603 Abnormal optical coherence tomography -0.06406195570189843 -1.6123465636628966 1.0 8301 +Biological Process GO:0006790 sulfur compound metabolic process -0.06412843887567776 -1.6131362830827964 1.0 8303 +Phenotype HP:0005348 Inspiratory stridor -0.06413838914362913 -1.6132544771970017 1.0 8304 +Biological Process GO:0035825 homologous recombination -0.06430547821038646 -1.6152392422641626 1.0 8305 +Biological Process GO:0046655 folic acid metabolic process -0.06433052496301439 -1.6155367597536459 1.0 8306 +Biological Process GO:0009260 ribonucleotide biosynthetic process -0.0643447564472519 -1.6157058082336968 1.0 8307 +Biological Process GO:0008209 androgen metabolic process -0.06437713835831782 -1.6160904562967857 1.0 8308 +Phenotype HP:0032559 Short sperm flagella -0.06447012875280556 -1.6171950413551774 1.0 8309 +Disease MONDO:0016387 mitochondrial oxidative phosphorylation disorder -0.06455152603034287 -1.618161917741247 1.0 8310 +Phenotype HP:0002882 Sudden episodic apnea -0.064887113601384 -1.6221481898588783 1.0 8311 +Phenotype HP:0010894 Abnormal circulating serine family amino acid concentration -0.0649049356850191 -1.622359889222035 1.0 8312 +Phenotype HP:0006498 Aplasia/Hypoplasia of the patella -0.06504127698041828 -1.6239794173310331 1.0 8313 +Biological Process GO:1901617 organic hydroxy compound biosynthetic process -0.06505979231794767 -1.6241993515005644 1.0 8314 +Biological Process GO:0042454 ribonucleoside catabolic process -0.06509226141008218 -1.624585035142718 1.0 8315 +Disease MONDO:0015951 hereditary photodermatosis -0.06513084729328988 -1.6250433769993244 1.0 8316 +Biological Process GO:0046519 sphingoid metabolic process -0.0652274427065529 -1.6261907842211916 1.0 8317 +Phenotype HP:0005625 Osteoporosis of vertebrae -0.06535896613642067 -1.627753083384032 1.0 8318 +Biological Process GO:0008334 histone mRNA metabolic process -0.06588680461742524 -1.6340230051600788 1.0 8319 +Phenotype HP:0500184 Abnormal CSF amino acid concentration -0.06595975769155848 -1.6348895771979246 1.0 8320 +Biological Process GO:0046173 polyol biosynthetic process -0.06608686696349975 -1.6363994428495634 1.0 8321 +Biological Process GO:0032784 regulation of DNA-templated transcription elongation -0.06623676257460742 -1.638179975702017 1.0 8322 +Phenotype HP:0012534 Dysesthesia -0.06680093839130063 -1.644881529995428 1.0 8323 +Phenotype HP:0002157 Azotemia -0.0669035663316504 -1.6461005945032017 1.0 8324 +Biological Process GO:0009152 purine ribonucleotide biosynthetic process -0.06693617893730996 -1.6464879828686907 1.0 8325 +Phenotype HP:0030629 Perifoveal ring of hyperautofluorescence -0.0670162049763865 -1.6474385710185009 1.0 8326 +Biological Process GO:0051791 medium-chain fatty acid metabolic process -0.06739544824605148 -1.651943406721965 1.0 8327 +Biological Process GO:0000077 DNA damage checkpoint signaling -0.06746207047743136 -1.6527347779355652 1.0 8328 +Biological Process GO:0072526 pyridine-containing compound catabolic process -0.06747658759648267 -1.6529072193246281 1.0 8329 +Phenotype HP:0010899 Abnormal circulating aspartate family amino acid concentration -0.06760470727410506 -1.6544290870655627 1.0 8330 +Biological Process GO:0016180 snRNA processing -0.06767736606549257 -1.655292163470062 1.0 8331 +Biological Process GO:0046520 sphingoid biosynthetic process -0.06770542410954627 -1.6556254505412713 1.0 8332 +Biological Process GO:0046512 sphingosine biosynthetic process -0.06770542410954627 -1.6556254505412713 1.0 8332 +Biological Process GO:0003341 cilium movement -0.06771126158720864 -1.6556947909354063 1.0 8334 +Biological Process GO:0001573 ganglioside metabolic process -0.06772727788715494 -1.655885040323086 1.0 8335 +Biological Process GO:1901658 glycosyl compound catabolic process -0.06801474740784452 -1.6592997428743117 1.0 8336 +Disease MONDO:0037858 inherited fatty acid metabolism disorder -0.0681020441906004 -1.6603366964479471 1.0 8337 +Biological Process GO:0007064 mitotic sister chromatid cohesion -0.0682467109855105 -1.6620551188826878 1.0 8338 +Biological Process GO:1901661 quinone metabolic process -0.06833354072285225 -1.6630865246641142 1.0 8339 +Disease MONDO:0000066 mitochondrial complex deficiency -0.06840766615659755 -1.6639670225586862 1.0 8340 +Biological Process GO:0000244 spliceosomal tri-snRNP complex assembly -0.06851615025860402 -1.6652556493981518 1.0 8341 +Biological Process GO:0015931 nucleobase-containing compound transport -0.06853904539799283 -1.6655276089808377 1.0 8342 +Biological Process GO:0006094 gluconeogenesis -0.06893486360767964 -1.6702293298700537 1.0 8343 +Biological Process GO:0042761 very long-chain fatty acid biosynthetic process -0.06895738880338098 -1.670496895081989 1.0 8344 +Phenotype HP:0012402 Increased urine alpha-ketoglutarate concentration -0.06931508210477966 -1.6747457497985252 1.0 8345 +Disease MONDO:0019852 inherited primary ovarian failure -0.06935561201309648 -1.6752271837293238 1.0 8346 +Disease MONDO:0005387 primary ovarian failure -0.06935561201309648 -1.6752271837293238 1.0 8346 +Disease MONDO:0001889 ovarian dysfunction -0.06935561201309648 -1.6752271837293238 1.0 8346 +Biological Process GO:0007131 reciprocal meiotic recombination -0.06936115218721906 -1.6752929926076536 1.0 8349 +Biological Process GO:0140527 reciprocal homologous recombination -0.06936115218721906 -1.6752929926076536 1.0 8349 +Biological Process GO:0045292 mRNA cis splicing, via spliceosome -0.06965316490051787 -1.6787616614066967 1.0 8351 +Phenotype HP:0001987 Hyperammonemia -0.0697725235756157 -1.6801794617056283 1.0 8352 +Biological Process GO:0019364 pyridine nucleotide catabolic process -0.06979777227781025 -1.6804793780501233 1.0 8353 +Disease MONDO:0100257 peroxisomal single enzyme/protein defect -0.06983674321426392 -1.6809422937561527 1.0 8354 +Phenotype HP:0011924 Decreased activity of mitochondrial complex III -0.0698720006987592 -1.6813610992767067 1.0 8355 +Phenotype HP:0031331 Abnormal cardiomyocyte morphology -0.06998654082165157 -1.682721662472833 1.0 8356 +Phenotype HP:0011150 Myoclonic absence seizure -0.0701288407675178 -1.684411970325377 1.0 8357 +Phenotype HP:0032988 Persistent head lag -0.07013798325032417 -1.6845205691753995 1.0 8358 +Biological Process GO:0031570 DNA integrity checkpoint signaling -0.07015384969674043 -1.6847090385300865 1.0 8359 +Phenotype HP:0040080 Anteverted ears -0.07018563961672997 -1.6850866546357213 1.0 8360 +Biological Process GO:0046040 IMP metabolic process -0.07020619608750067 -1.685330834376991 1.0 8361 +Biological Process GO:0072522 purine-containing compound biosynthetic process -0.07032756873172752 -1.6867725575791457 1.0 8362 +Phenotype HP:0000033 Ambiguous genitalia, male -0.07036973268545998 -1.6872734014948227 1.0 8363 +Biological Process GO:0006563 L-serine metabolic process -0.07038553799394909 -1.6874611446235246 1.0 8364 +Phenotype HP:0001533 Slender build -0.0704782050987387 -1.6885618894899046 1.0 8365 +Biological Process GO:0006164 purine nucleotide biosynthetic process -0.07060184581399231 -1.6900305539410057 1.0 8366 +Phenotype HP:0003112 Abnormal circulating amino acid concentration -0.07080253470428932 -1.6924144340269915 1.0 8367 +Biological Process GO:0050906 detection of stimulus involved in sensory perception -0.07102378206393678 -1.695042517594348 1.0 8368 +Biological Process GO:0046514 ceramide catabolic process -0.0710439229231079 -1.6952817604992325 1.0 8369 +Biological Process GO:0006694 steroid biosynthetic process -0.07114306177031327 -1.6964593798644634 1.0 8370 +Phenotype HP:0003215 Dicarboxylic aciduria -0.07121575793694923 -1.6973229002303118 1.0 8371 +Biological Process GO:0098661 inorganic anion transmembrane transport -0.07142267249887757 -1.6997807318668887 1.0 8372 +Phenotype HP:0001995 Hyperchloremic acidosis -0.07154352627915905 -1.7012162917511593 1.0 8373 +Biological Process GO:0006312 mitotic recombination -0.0716313164825253 -1.702259106414391 1.0 8374 +Disease MONDO:0000732 combined oxidative phosphorylation deficiency -0.07164169516042196 -1.7023823893899463 1.0 8375 +Phenotype HP:0005772 Aplasia/Hypoplasia of the tibia -0.07167927447089562 -1.7028287746868638 1.0 8376 +Disease MONDO:0015448 mitochondrial complex III deficiency -0.07168520405425838 -1.702899209157231 1.0 8377 +Disease MONDO:0020811 mitochondrial complex III deficiency, nuclear type -0.07168520405425838 -1.702899209157231 1.0 8377 +Biological Process GO:0000966 RNA 5'-end processing -0.07183137589492228 -1.7046355092562295 1.0 8379 +Biological Process GO:0043603 amide metabolic process -0.07194066318267467 -1.7059336767259823 1.0 8380 +Biological Process GO:0009312 oligosaccharide biosynthetic process -0.0719567796729661 -1.7061251162232303 1.0 8381 +Phenotype HP:0004724 Calcium nephrolithiasis -0.07198506999618726 -1.7064611624191768 1.0 8382 +Biological Process GO:0170036 import into the mitochondrion -0.07202064181653989 -1.7068837017736742 1.0 8383 +Biological Process GO:0009112 nucleobase metabolic process -0.07208824058014063 -1.7076866727111615 1.0 8384 +Phenotype HP:0012847 Epilepsia partialis continua -0.07209970168083824 -1.7078228132303306 1.0 8385 +Biological Process GO:0033617 mitochondrial cytochrome c oxidase assembly -0.0721793357237599 -1.7087687450594744 1.0 8386 +Biological Process GO:0032328 alanine transport -0.0722523796738519 -1.7096363965660843 1.0 8387 +Biological Process GO:0019370 leukotriene biosynthetic process -0.07238812644284476 -1.7112488626017484 1.0 8388 +Phenotype HP:0034370 Abnormal muscle tissue metabolite concentration -0.07253316515887764 -1.7129717028961766 1.0 8389 +Biological Process GO:0006487 protein N-linked glycosylation -0.07256979402794173 -1.7134067983885322 1.0 8390 +Biological Process GO:0072523 purine-containing compound catabolic process -0.07260697705471242 -1.713848476435205 1.0 8391 +Phenotype HP:0002156 Homocystinuria -0.07264209617236816 -1.7142656383672534 1.0 8392 +Biological Process GO:0022900 electron transport chain -0.07265649505614213 -1.7144366753002813 1.0 8393 +Biological Process GO:0006287 base-excision repair, gap-filling -0.07279163799356048 -1.716041968731305 1.0 8394 +Biological Process GO:0009223 pyrimidine deoxyribonucleotide catabolic process -0.07280532198283907 -1.716204513800391 1.0 8395 +Phenotype HP:0009058 Increased muscle lipid content -0.0728896918122175 -1.7172066996005895 1.0 8396 +Phenotype HP:6000231 Abnormal tissue enzyme concentration or activity -0.07294606793249936 -1.7178763625314384 1.0 8397 +Phenotype HP:0033108 Abnormal circulating proteinogenic amino acid derivative concentration -0.07299120206516219 -1.7184124876746585 1.0 8398 +Biological Process GO:0001325 formation of extrachromosomal circular DNA -0.07299782898995777 -1.7184912055051678 1.0 8399 +Biological Process GO:0090656 t-circle formation -0.07299782898995777 -1.7184912055051678 1.0 8399 +Biological Process GO:0090737 telomere maintenance via telomere trimming -0.07299782898995777 -1.7184912055051678 1.0 8399 +Disease MONDO:0100036 variable age onset epilepsy -0.07307553738882522 -1.7194142635992147 1.0 8402 +Phenotype HP:0008672 Calcium oxalate nephrolithiasis -0.07343098329659781 -1.7236364226830099 1.0 8403 +Phenotype HP:0001981 Schistocytosis -0.07351836585897109 -1.7246743951885921 1.0 8404 +Biological Process GO:1903313 positive regulation of mRNA metabolic process -0.07353597893300612 -1.724883611834232 1.0 8405 +Biological Process GO:0043648 dicarboxylic acid metabolic process -0.07367916034915245 -1.726584390218772 1.0 8406 +Phenotype HP:0034011 Reduced progressive sperm motility -0.07368826284987828 -1.7266925141422282 1.0 8407 +Biological Process GO:0006749 glutathione metabolic process -0.0737580698471294 -1.7275217155512508 1.0 8408 +Biological Process GO:0030520 intracellular estrogen receptor signaling pathway -0.0738581845468449 -1.7287109265664347 1.0 8409 +Biological Process GO:0072531 pyrimidine-containing compound transmembrane transport -0.0738931384695507 -1.729126126232655 1.0 8410 +Disease MONDO:0800153 urea cycle disorder or inherited hyperammonemia -0.07409830606064483 -1.731563206501399 1.0 8411 +Phenotype HP:0010511 Long toe -0.07412749456034384 -1.7319099216736706 1.0 8412 +Phenotype HP:0012401 Abnormal urine alpha-ketoglutarate concentration -0.07431702170056198 -1.7341612170724903 1.0 8413 +Biological Process GO:0000002 mitochondrial genome maintenance -0.07446412647040757 -1.7359085989573044 1.0 8414 +Disease MONDO:0024481 skin appendage disorder -0.0744714337893706 -1.735995398840109 1.0 8415 +Biological Process GO:0006637 acyl-CoA metabolic process -0.07448453984769099 -1.7361510789646515 1.0 8416 +Biological Process GO:0035383 thioester metabolic process -0.07448453984769099 -1.7361510789646515 1.0 8416 +Biological Process GO:0046037 GMP metabolic process -0.07456766964700257 -1.7371385350856037 1.0 8418 +Disease MONDO:0019223 disorder of fatty acid and ketone body metabolism -0.07461519071004319 -1.7377030133468554 1.0 8419 +Biological Process GO:0048515 spermatid differentiation -0.0748178583599346 -1.7401103981001156 1.0 8420 +Biological Process GO:0007286 spermatid development -0.0748178583599346 -1.7401103981001156 1.0 8420 +Phenotype HP:0003800 Muscle abnormality related to mitochondrial dysfunction -0.07489892701981105 -1.7410733710060449 1.0 8422 +Biological Process GO:0046386 deoxyribose phosphate catabolic process -0.07497217416883184 -1.741943436208197 1.0 8423 +Biological Process GO:0009264 deoxyribonucleotide catabolic process -0.07497217416883184 -1.741943436208197 1.0 8423 +Phenotype HP:0012263 Immotile cilia -0.0751060100573866 -1.7435332038781648 1.0 8425 +Biological Process GO:0141061 disruption of cell in another organism -0.07526393387810648 -1.7454090997025913 1.0 8426 +Biological Process GO:0031640 killing of cells of another organism -0.07526393387810648 -1.7454090997025913 1.0 8426 +Biological Process GO:0001510 RNA methylation -0.07532489273222054 -1.7461331985711035 1.0 8428 +Biological Process GO:0007214 gamma-aminobutyric acid signaling pathway -0.07542956808450718 -1.7473765832320103 1.0 8429 +Biological Process GO:0009620 response to fungus -0.07545404819179535 -1.747667369833006 1.0 8430 +Disease MONDO:0019507 amelogenesis imperfecta -0.07551665885951309 -1.7484110897455616 1.0 8431 +Disease MONDO:0004038 dental enamel hypoplasia -0.07551665885951309 -1.7484110897455616 1.0 8431 +Biological Process GO:0050832 defense response to fungus -0.07555316571646853 -1.7488447359188461 1.0 8433 +Phenotype HP:0002401 Stroke-like episode -0.0756251499348699 -1.7496997994178687 1.0 8434 +Biological Process GO:0098656 monoatomic anion transmembrane transport -0.07583741696482393 -1.7522212102686134 1.0 8435 +Biological Process GO:0035337 fatty-acyl-CoA metabolic process -0.07587709438612911 -1.752692517944752 1.0 8436 +Biological Process GO:0008033 tRNA processing -0.07588157022778308 -1.7527456841652196 1.0 8437 +Phenotype HP:0012741 Unilateral cryptorchidism -0.07615517032185792 -1.7559956389326392 1.0 8438 +Disease MONDO:0020074 progressive myoclonus epilepsy -0.07626339481150746 -1.757281181970471 1.0 8439 +Phenotype HP:0100720 Hypoplasia of the ear cartilage -0.07636647733972968 -1.7585056462937245 1.0 8440 +Biological Process GO:0098739 import across plasma membrane -0.07646913127143007 -1.7597250195393814 1.0 8441 +Phenotype HP:0032653 Elevated lactate:pyruvate ratio -0.07670988766892228 -1.7625848409311187 1.0 8442 +Phenotype HP:0045084 Limb myoclonus -0.0768140373543642 -1.7638219814659997 1.0 8443 +Phenotype HP:0011965 Abnormal circulating citrulline concentration -0.07701175990130849 -1.7661706258852963 1.0 8444 +Phenotype HP:0008110 Equinovarus deformity -0.07712582865193518 -1.76752558989277 1.0 8445 +Biological Process GO:0006383 transcription by RNA polymerase III -0.07720188228732727 -1.7684289919027654 1.0 8446 +Biological Process GO:1901606 alpha-amino acid catabolic process -0.07740699903268289 -1.7708654682011387 1.0 8447 +Biological Process GO:0016266 O-glycan processing -0.07743359668633065 -1.771181408045995 1.0 8448 +Biological Process GO:0006865 amino acid transport -0.0775402674734651 -1.7724484954509327 1.0 8449 +Biological Process GO:1903825 organic acid transmembrane transport -0.07768684211247967 -1.7741895801843244 1.0 8450 +Phenotype HP:0008316 Abnormal mitochondria in muscle tissue -0.07779597045562503 -1.7754858596328573 1.0 8451 +Biological Process GO:0006862 nucleotide transport -0.07794619966196015 -1.7772703550914037 1.0 8452 +Biological Process GO:0006536 glutamate metabolic process -0.07817304196838126 -1.7799648981532352 1.0 8453 +Biological Process GO:0043651 linoleic acid metabolic process -0.07817931715455995 -1.7800394378616617 1.0 8454 +Biological Process GO:0034311 diol metabolic process -0.07819179278593591 -1.7801876294688468 1.0 8455 +Phenotype HP:0011267 Microtia, third degree -0.07819207519684412 -1.7801909840827426 1.0 8456 +Biological Process GO:0031167 rRNA methylation -0.07826027945462699 -1.7810011473741307 1.0 8457 +Phenotype HP:0009896 Abnormal antitragus morphology -0.0783075797087498 -1.7815630027598401 1.0 8458 +Biological Process GO:0031665 negative regulation of lipopolysaccharide-mediated signaling pathway -0.07858598470491218 -1.7848700324873368 1.0 8459 +Biological Process GO:0006376 mRNA splice site recognition -0.07859970533833893 -1.7850330128334075 1.0 8460 +Biological Process GO:0006817 phosphate ion transport -0.07891416237637405 -1.788768286219795 1.0 8461 +Biological Process GO:1905039 carboxylic acid transmembrane transport -0.07899231842783228 -1.7896966617486787 1.0 8462 +Phenotype HP:0007704 Paroxysmal involuntary eye movements -0.07901338803889169 -1.7899469368194594 1.0 8463 +Phenotype HP:0000652 Lower eyelid coloboma -0.07905563452034814 -1.7904487610395146 1.0 8464 +Biological Process GO:1990166 protein localization to site of double-strand break -0.07912395418393747 -1.7912602951771084 1.0 8465 +Biological Process GO:1901568 fatty acid derivative metabolic process -0.07925303658880378 -1.7927935986597106 1.0 8466 +Phenotype HP:0002036 Hiatus hernia -0.07927351749097511 -1.7930368807604637 1.0 8467 +Disease MONDO:0019278 hair anomaly -0.0795652780924967 -1.7965025548534006 1.0 8468 +Biological Process GO:0032042 mitochondrial DNA metabolic process -0.07966076564551816 -1.797636802373383 1.0 8469 +Biological Process GO:0019674 NAD metabolic process -0.07967492486021333 -1.7978049924007187 1.0 8470 +Biological Process GO:0016051 carbohydrate biosynthetic process -0.0798709779310931 -1.8001338059726857 1.0 8471 +Biological Process GO:0006195 purine nucleotide catabolic process -0.07987235874877041 -1.8001502079955305 1.0 8472 +Biological Process GO:0000398 mRNA splicing, via spliceosome -0.0798819389962071 -1.8002640068263942 1.0 8473 +Biological Process GO:0000377 RNA splicing, via transesterification reactions with bulged adenosine as nucleophile -0.0798819389962071 -1.8002640068263942 1.0 8473 +Disease MONDO:0018677 visceral heterotaxy -0.08015018389404838 -1.803450349972668 1.0 8475 +Biological Process GO:0016137 glycoside metabolic process -0.08016059277072651 -1.803573991664013 1.0 8476 +Biological Process GO:0006119 oxidative phosphorylation -0.08020485235573505 -1.8040997285055478 1.0 8477 +Phenotype HP:0001118 Juvenile cataract -0.08030413569005956 -1.8052790641589376 1.0 8478 +Biological Process GO:0006268 DNA unwinding involved in DNA replication -0.08051199687685662 -1.8077481402653506 1.0 8479 +Phenotype HP:0003689 Multiple mitochondrial DNA deletions -0.08113729717589524 -1.815175760839829 1.0 8480 +Biological Process GO:0000184 nuclear-transcribed mRNA catabolic process, nonsense-mediated decay -0.08119828246111926 -1.8159001736698992 1.0 8481 +Phenotype HP:0000659 Peters anomaly -0.08136052527529114 -1.8178273725956906 1.0 8482 +Biological Process GO:0000963 mitochondrial RNA processing -0.08161564982838776 -1.8208578659163375 1.0 8483 +Phenotype HP:0100694 Tibial torsion -0.0816558418133353 -1.8213352858292726 1.0 8484 +Phenotype HP:0033095 Increased sulfur amino acid level in urine -0.08174315124018094 -1.8223723895955457 1.0 8485 +Biological Process GO:0000375 RNA splicing, via transesterification reactions -0.0821567072180025 -1.8272848083074646 1.0 8486 +Biological Process GO:0051290 protein heterotetramerization -0.08225214855594998 -1.828418506862358 1.0 8487 +Phenotype HP:0003066 Limited knee extension -0.08231331110589024 -1.8291450253288009 1.0 8488 +Biological Process GO:0030638 polyketide metabolic process -0.08237217928928575 -1.8298442901953664 1.0 8489 +Biological Process GO:0044598 doxorubicin metabolic process -0.08237217928928575 -1.8298442901953664 1.0 8489 +Biological Process GO:0015802 basic amino acid transport -0.0823823212046304 -1.829964760790366 1.0 8491 +Biological Process GO:0017004 cytochrome complex assembly -0.0826006782841282 -1.8325585122066925 1.0 8492 +Biological Process GO:0043414 macromolecule methylation -0.08262674122718305 -1.832868100499491 1.0 8493 +Biological Process GO:0009226 nucleotide-sugar biosynthetic process -0.08304679095866008 -1.837857655170454 1.0 8494 +Biological Process GO:0015867 ATP transport -0.08305921325045618 -1.8380052131842095 1.0 8495 +Biological Process GO:0006260 DNA replication -0.08329981620342153 -1.8408632118873498 1.0 8496 +Phenotype HP:0003542 Increased serum pyruvate -0.08332583813375494 -1.8411723130111286 1.0 8497 +Phenotype HP:0004366 Abnormality of glycolysis -0.08332583813375494 -1.8411723130111286 1.0 8497 +Biological Process GO:0046949 fatty-acyl-CoA biosynthetic process -0.08350594946031897 -1.843311762803397 1.0 8499 +Disease MONDO:0017741 disorder of protein O-glycosylation -0.0835150244920011 -1.8434195604362142 1.0 8500 +Phenotype HP:0000466 Limited neck range of motion -0.08382350859984644 -1.8470838844575754 1.0 8501 +Phenotype HP:0001308 Tongue fasciculations -0.08390775860126487 -1.8480846468830812 1.0 8502 +Biological Process GO:0016073 snRNA metabolic process -0.08447671519156152 -1.8548429895267193 1.0 8503 +Phenotype HP:0002490 Increased CSF lactate -0.08453807582980977 -1.8555718609822687 1.0 8504 +Phenotype HP:0030085 Abnormal CSF lactate concentration -0.08453807582980977 -1.8555718609822687 1.0 8504 +Disease MONDO:0100133 mitochondrial complex I deficiency -0.08465989470838498 -1.8570188847726878 1.0 8506 +Disease MONDO:0100223 mitochondrial complex I deficiency, nuclear type -0.08465989470838498 -1.8570188847726878 1.0 8506 +Biological Process GO:0009063 amino acid catabolic process -0.08466139695744546 -1.8570367292164642 1.0 8508 +Phenotype HP:0032807 Neonatal seizure -0.08466603284673613 -1.8570917965604739 1.0 8509 +Disease MONDO:0020242 hereditary macular dystrophy -0.08470467238538726 -1.8575507757624905 1.0 8510 +Biological Process GO:0140053 mitochondrial gene expression -0.08484976753015316 -1.859274286344809 1.0 8511 +Disease MONDO:0004069 inborn mitochondrial metabolism disorder -0.08530795636981181 -1.8647168758616817 1.0 8512 +Biological Process GO:0033540 fatty acid beta-oxidation using acyl-CoA oxidase -0.08545765290579665 -1.866495044003163 1.0 8513 +Biological Process GO:0033108 mitochondrial respiratory chain complex assembly -0.08565769436337578 -1.8688712335689566 1.0 8514 +Disease MONDO:0016575 primary ciliary dyskinesia -0.08595652509203866 -1.8724208900650678 1.0 8515 +Biological Process GO:0090646 mitochondrial tRNA processing -0.08598613633039287 -1.872772626732352 1.0 8516 +Phenotype HP:0010544 Vertical nystagmus -0.08599904347983744 -1.8729259441206847 1.0 8517 +Phenotype HP:0033036 Decreased nasal nitric oxide -0.08606740562908222 -1.8737379829235234 1.0 8518 +Phenotype HP:0004338 Abnormal circulating aromatic amino acid concentration -0.08616102223545585 -1.874850006430761 1.0 8519 +Phenotype HP:0003688 Cytochrome C oxidase-negative muscle fibers -0.08617672882011673 -1.8750365768698944 1.0 8520 +Phenotype HP:0011468 Facial tics -0.08618207004226686 -1.8751000225000918 1.0 8521 +Phenotype HP:0012261 Abnormal respiratory motile cilium physiology -0.08634906904571205 -1.8770837177514998 1.0 8522 +Biological Process GO:0034030 ribonucleoside bisphosphate biosynthetic process -0.08643192780051834 -1.8780679542742091 1.0 8523 +Biological Process GO:0034033 purine nucleoside bisphosphate biosynthetic process -0.08643192780051834 -1.8780679542742091 1.0 8523 +Biological Process GO:0033866 nucleoside bisphosphate biosynthetic process -0.08643192780051834 -1.8780679542742091 1.0 8523 +Phenotype HP:0012071 Abnormal circulating acylcarnitine concentration -0.0865467201664214 -1.879431513735296 1.0 8526 +Biological Process GO:0009435 NAD biosynthetic process -0.08658073499518082 -1.8798355583876323 1.0 8527 +Biological Process GO:0019363 pyridine nucleotide biosynthetic process -0.08658073499518082 -1.8798355583876323 1.0 8527 +Biological Process GO:0019359 nicotinamide nucleotide biosynthetic process -0.08658073499518082 -1.8798355583876323 1.0 8527 +Phenotype HP:0025576 Abnormal inferior vena cava morphology -0.08674943521003886 -1.8818394614542469 1.0 8530 +Biological Process GO:0060294 cilium movement involved in cell motility -0.08677852667613073 -1.8821850240142166 1.0 8531 +Biological Process GO:0089718 amino acid import across plasma membrane -0.08694415414253531 -1.884152427482689 1.0 8532 +Biological Process GO:0050684 regulation of mRNA processing -0.08710451081659176 -1.88605722192035 1.0 8533 +Biological Process GO:0097722 sperm motility -0.08743395473401061 -1.889970516737127 1.0 8534 +Biological Process GO:0030317 flagellated sperm motility -0.08743395473401061 -1.889970516737127 1.0 8534 +Phenotype HP:0010903 Abnormal circulating glutamine concentration -0.08745998322169912 -1.8902796957523538 1.0 8536 +Disease MONDO:0044970 mitochondrial disease -0.08781330270814736 -1.8944765961711474 1.0 8537 +Biological Process GO:0048025 negative regulation of mRNA splicing, via spliceosome -0.08787438769740197 -1.8952021933341057 1.0 8538 +Biological Process GO:0050686 negative regulation of mRNA processing -0.08787438769740197 -1.8952021933341057 1.0 8538 +Biological Process GO:0008213 protein alkylation -0.0879421418541888 -1.8960070101073105 1.0 8540 +Biological Process GO:0006479 protein methylation -0.0879421418541888 -1.8960070101073105 1.0 8540 +Biological Process GO:0032259 methylation -0.0880616546737727 -1.8974266414092946 1.0 8542 +Biological Process GO:0015868 purine ribonucleotide transport -0.08828200331924485 -1.9000440496132946 1.0 8543 +Biological Process GO:0060285 cilium-dependent cell motility -0.08841745766594933 -1.9016530421150277 1.0 8544 +Biological Process GO:0001539 cilium or flagellum-dependent cell motility -0.08841745766594933 -1.9016530421150277 1.0 8544 +Biological Process GO:1902475 L-alpha-amino acid transmembrane transport -0.08861575013136003 -1.9040084563025996 1.0 8546 +Phenotype HP:0011484 Posterior synechiae of the anterior chamber -0.08873236549684727 -1.9053936702379282 1.0 8547 +Biological Process GO:0008299 isoprenoid biosynthetic process -0.08900306974502681 -1.9086092267416885 1.0 8548 +Biological Process GO:0034032 purine nucleoside bisphosphate metabolic process -0.08919565137306518 -1.9108968048299824 1.0 8549 +Biological Process GO:0033865 nucleoside bisphosphate metabolic process -0.08919565137306518 -1.9108968048299824 1.0 8549 +Biological Process GO:0033875 ribonucleoside bisphosphate metabolic process -0.08919565137306518 -1.9108968048299824 1.0 8549 +Biological Process GO:0042339 keratan sulfate metabolic process -0.08922242617930998 -1.9112148489794052 1.0 8552 +Biological Process GO:0034312 diol biosynthetic process -0.08932584388603582 -1.9124432947156749 1.0 8553 +Biological Process GO:0015936 coenzyme A metabolic process -0.08961279046104265 -1.915851785464158 1.0 8554 +Biological Process GO:0015813 L-glutamate transmembrane transport -0.0897217885855004 -1.9171465181118899 1.0 8555 +Biological Process GO:1902644 tertiary alcohol metabolic process -0.09022137919272777 -1.9230808979270975 1.0 8556 +Biological Process GO:0019677 NAD catabolic process -0.09033447946040019 -1.924424357823781 1.0 8557 +Biological Process GO:0018022 peptidyl-lysine methylation -0.09038316472652208 -1.9250026650545258 1.0 8558 +Biological Process GO:0000076 DNA replication checkpoint signaling -0.09040503324264848 -1.9252624299076109 1.0 8559 +Disease MONDO:0002220 tooth hard tissue disease -0.09045688151643438 -1.9258783088792273 1.0 8560 +Biological Process GO:0019395 fatty acid oxidation -0.09054008891941301 -1.9268666868142181 1.0 8561 +Biological Process GO:0035561 regulation of chromatin binding -0.09054970588335953 -1.9269809217816138 1.0 8562 +Disease MONDO:0045010 glycoprotein metabolism disease -0.09065572022111801 -1.9282402115621164 1.0 8563 +Biological Process GO:0034308 primary alcohol metabolic process -0.09084002070031594 -1.9304294221434666 1.0 8564 +Biological Process GO:0007288 sperm axoneme assembly -0.09084770759342109 -1.930520730792238 1.0 8565 +Biological Process GO:0042537 benzene-containing compound metabolic process -0.0910772286411774 -1.9332470932443455 1.0 8566 +Biological Process GO:0031124 mRNA 3'-end processing -0.09108943436058481 -1.9333920787061087 1.0 8567 +Biological Process GO:0051938 L-glutamate import -0.09120128392298765 -1.9347206821183045 1.0 8568 +Phenotype HP:0012262 Abnormal ciliary motility -0.09165618971480205 -1.9401242739987574 1.0 8569 +Biological Process GO:0034356 NAD biosynthesis via nicotinamide riboside salvage pathway -0.0917338311973881 -1.941046537228722 1.0 8570 +Biological Process GO:0000959 mitochondrial RNA metabolic process -0.09185916479531309 -1.9425353105621943 1.0 8571 +Biological Process GO:0072525 pyridine-containing compound biosynthetic process -0.09222912496666869 -1.9469298771164134 1.0 8572 +Phenotype HP:0005879 Congenital finger flexion contractures -0.09236381328165089 -1.948529770321393 1.0 8573 +Biological Process GO:0008207 C21-steroid hormone metabolic process -0.09245402393236946 -1.9496013362335547 1.0 8574 +Biological Process GO:0044282 small molecule catabolic process -0.0924765375809733 -1.9498687642834591 1.0 8575 +Biological Process GO:0032392 DNA geometric change -0.09253293599980639 -1.9505386920873267 1.0 8576 +Phenotype HP:0033107 Abnormal circulating proteinogenic amino acid concentration -0.09267458906479997 -1.9522213159747643 1.0 8577 +Biological Process GO:0048024 regulation of mRNA splicing, via spliceosome -0.09277854437297894 -1.9534561476021335 1.0 8578 +Phenotype HP:0003138 Increased blood urea nitrogen -0.09286969580873783 -1.9545388886158142 1.0 8579 +Phenotype HP:0002267 Exaggerated startle response -0.09287257810256433 -1.9545731259014198 1.0 8580 +Biological Process GO:0060382 regulation of DNA strand elongation -0.09290577239475972 -1.9549674238220265 1.0 8581 +Biological Process GO:0000729 DNA double-strand break processing -0.09323955966213027 -1.9589323110584984 1.0 8582 +Biological Process GO:0006820 monoatomic anion transport -0.09325837077291887 -1.9591557585664192 1.0 8583 +Biological Process GO:0006084 acetyl-CoA metabolic process -0.09350855034153427 -1.962127512960298 1.0 8584 +Biological Process GO:0009225 nucleotide-sugar metabolic process -0.0935725198728743 -1.9628873741147728 1.0 8585 +Phenotype HP:0003065 Patellar hypoplasia -0.09383377943957094 -1.9659907421058944 1.0 8586 +Biological Process GO:0071616 acyl-CoA biosynthetic process -0.09393442411248243 -1.9671862484000355 1.0 8587 +Biological Process GO:0035384 thioester biosynthetic process -0.09393442411248243 -1.9671862484000355 1.0 8587 +Phenotype HP:0001450 Y-linked inheritance -0.09441348858193033 -1.9728768087839719 1.0 8589 +Phenotype HP:0033393 Irregularly shaped sperm tail -0.09451669497231041 -1.9741027444020793 1.0 8590 +Biological Process GO:1990542 mitochondrial transmembrane transport -0.0949696357267098 -1.979482994613968 1.0 8591 +Disease MONDO:0017713 disorder of fatty acid oxidation and ketogenesis -0.09506074138441645 -1.9805651918537162 1.0 8592 +Disease MONDO:0009637 inborn mitochondrial myopathy -0.09525151215450212 -1.9828312596919626 1.0 8593 +Biological Process GO:0045652 regulation of megakaryocyte differentiation -0.09539315955308703 -1.9845138162710465 1.0 8594 +Phenotype HP:0011535 Abnormal atrial arrangement -0.09566146052080637 -1.9877008254425574 1.0 8595 +Disease MONDO:0015607 partial chromosome Y deletion -0.09599522479041922 -1.9916654395004967 1.0 8596 +Disease MONDO:0700028 chromosome Y disorder -0.09599522479041922 -1.9916654395004967 1.0 8596 +Disease MONDO:0010767 spermatogenic failure, Y-linked, 2 -0.09599522479041922 -1.9916654395004967 1.0 8596 +Biological Process GO:0018146 keratan sulfate biosynthetic process -0.09603474290683711 -1.9921348548758315 1.0 8599 +Phenotype HP:0011615 Abnormal pulmonary situs morphology -0.09626781748562552 -1.9949034278950004 1.0 8600 +Phenotype HP:0011617 Pulmonary situs ambiguus -0.09626781748562552 -1.9949034278950004 1.0 8600 +Phenotype HP:0025177 Peribronchovascular interstitial thickening -0.09626781748562552 -1.9949034278950004 1.0 8600 +Phenotype HP:0032543 Lithoptysis -0.09626781748562552 -1.9949034278950004 1.0 8600 +Biological Process GO:0034440 lipid oxidation -0.09638750305976984 -1.9963251112595364 1.0 8604 +Biological Process GO:0009062 fatty acid catabolic process -0.09667038688567642 -1.9996853427014871 1.0 8605 +Biological Process GO:0018242 protein O-linked glycosylation via serine -0.09756149602140995 -2.0102703697050823 1.0 8606 +Disease MONDO:0005181 progressive external ophthalmoplegia -0.09804481433170809 -2.016011459276144 1.0 8607 +Disease MONDO:0000090 progressive external ophthalmoplegia with mitochondrial DNA deletions -0.09804481433170809 -2.016011459276144 1.0 8607 +Biological Process GO:0032508 DNA duplex unwinding -0.09824591981085962 -2.018400287806824 1.0 8609 +Biological Process GO:0000097 sulfur amino acid biosynthetic process -0.09835371352159372 -2.0196807138435284 1.0 8610 +Biological Process GO:0015800 acidic amino acid transport -0.09836419766017501 -2.0198052495323036 1.0 8611 +Phenotype HP:0003648 Lacticaciduria -0.0984459529604591 -2.0207763786864015 1.0 8612 +Biological Process GO:0009069 serine family amino acid metabolic process -0.09860018726215625 -2.022608448612383 1.0 8613 +Biological Process GO:0051503 adenine nucleotide transport -0.09871959427996368 -2.024026823149493 1.0 8614 +Phenotype HP:0005905 Abnormal cervical curvature -0.09874448942190983 -2.0243225397336815 1.0 8615 +Phenotype HP:0012265 Ciliary dyskinesia -0.09882775636290186 -2.0253116248901053 1.0 8616 +Phenotype HP:0004900 Severe lactic acidosis -0.09893577758305838 -2.026594753394199 1.0 8617 +Biological Process GO:0061760 antifungal innate immune response -0.09901030389806942 -2.027480013151098 1.0 8618 +Biological Process GO:0018200 peptidyl-glutamic acid modification -0.09921732054674193 -2.029939057423592 1.0 8619 +Biological Process GO:0044272 sulfur compound biosynthetic process -0.099346390399488 -2.0314722118060153 1.0 8620 +Phenotype HP:0045045 Elevated circulating acylcarnitine concentration -0.09935718208246658 -2.0316004006564734 1.0 8621 +Biological Process GO:0090657 telomeric loop disassembly -0.09940901884957665 -2.032216142946207 1.0 8622 +Phenotype HP:0012208 Immotile sperm -0.0995892742103921 -2.0343573036472513 1.0 8623 +Biological Process GO:0072329 monocarboxylic acid catabolic process -0.09975312191062069 -2.0363035661888973 1.0 8624 +Phenotype HP:0011539 Atrial situs ambiguous -0.10017794842910388 -2.041349861855349 1.0 8625 +Disease MONDO:0000413 infancy electroclinical syndrome -0.10022474851938701 -2.04190577605211 1.0 8626 +Biological Process GO:0022904 respiratory electron transport chain -0.1005694682152729 -2.0460005239828667 1.0 8627 +Biological Process GO:0006397 mRNA processing -0.10075809671037339 -2.0482411448386304 1.0 8628 +Biological Process GO:0120178 steroid hormone biosynthetic process -0.10181436493198337 -2.0607880116593567 1.0 8629 +Phenotype HP:0009939 Mandibular aplasia -0.10187283084705379 -2.0614824981874302 1.0 8630 +Biological Process GO:0036159 inner dynein arm assembly -0.10204070302611612 -2.0634765654428 1.0 8631 +Biological Process GO:0036297 interstrand cross-link repair -0.10212907780605729 -2.0645263239904375 1.0 8632 +Phenotype HP:0020207 Reflex seizure -0.10243292464495779 -2.068135564279587 1.0 8633 +Biological Process GO:0015865 purine nucleotide transport -0.10347548522793648 -2.0805196051127326 1.0 8634 +Phenotype HP:0200106 Absent/shortened dynein arms -0.10372127080902072 -2.08343916558916 1.0 8635 +Biological Process GO:0006261 DNA-templated DNA replication -0.10385322398827723 -2.08500656952391 1.0 8636 +Biological Process GO:0031123 RNA 3'-end processing -0.10439961796513697 -2.091496902489581 1.0 8637 +Biological Process GO:0033119 negative regulation of RNA splicing -0.10447430698110227 -2.0923840948874166 1.0 8638 +Phenotype HP:0011819 Submucous cleft soft palate -0.10490037548764053 -2.0974451434910497 1.0 8639 +Phenotype HP:0002006 Tessier cleft -0.1050974218270131 -2.0997857555884685 1.0 8640 +Biological Process GO:0035082 axoneme assembly -0.10576938710384187 -2.1077676854279104 1.0 8641 +Phenotype HP:0012610 Abnormality of urinary uric acid level -0.10628912799471357 -2.1139414200964715 1.0 8642 +Phenotype HP:0012255 Dynein arm defect of respiratory motile cilia -0.10719260720960966 -2.1246733849068082 1.0 8643 +Biological Process GO:0000387 spliceosomal snRNP assembly -0.10785572037901536 -2.1325501651160255 1.0 8644 +Biological Process GO:0042398 cellular modified amino acid biosynthetic process -0.10801142580472312 -2.134399709767328 1.0 8645 +Biological Process GO:0051923 sulfation -0.10918148207019529 -2.1482982062242786 1.0 8646 +Biological Process GO:1901570 fatty acid derivative biosynthetic process -0.10922552452797563 -2.148821363923168 1.0 8647 +Biological Process GO:0034310 primary alcohol catabolic process -0.10946862007824221 -2.1517089709073645 1.0 8648 +Phenotype HP:0032558 Absent sperm flagella -0.10976578321860586 -2.1552388189799387 1.0 8649 +Biological Process GO:0003333 amino acid transmembrane transport -0.10989046026415639 -2.15671979346551 1.0 8650 +Biological Process GO:0140627 ubiquitin-dependent protein catabolic process via the C-end degron rule pathway -0.11053131655166659 -2.164332195624461 1.0 8651 +Phenotype HP:0012253 Abnormal respiratory epithelium morphology -0.11053327903215004 -2.164355506920551 1.0 8652 +Phenotype HP:0005938 Abnormal respiratory motile cilium morphology -0.11053327903215004 -2.164355506920551 1.0 8652 +Biological Process GO:0006635 fatty acid beta-oxidation -0.11059082371184736 -2.1650390505675454 1.0 8654 +Biological Process GO:0120316 sperm flagellum assembly -0.11094519950948767 -2.169248498363584 1.0 8655 +Biological Process GO:0042180 cellular ketone metabolic process -0.11107153289512994 -2.1707491476610214 1.0 8656 +Biological Process GO:0042446 hormone biosynthetic process -0.11121299430280196 -2.172429494949732 1.0 8657 +Biological Process GO:0043604 amide biosynthetic process -0.1115619576722886 -2.1765746512960877 1.0 8658 +Biological Process GO:0097164 ammonium ion metabolic process -0.11183220422135864 -2.179784771027584 1.0 8659 +Biological Process GO:0042402 cellular biogenic amine catabolic process -0.11262779946612467 -2.189235237656285 1.0 8660 +Biological Process GO:0009310 amine catabolic process -0.11262779946612467 -2.189235237656285 1.0 8660 +Biological Process GO:0033260 nuclear DNA replication -0.11279997498452898 -2.1912804220659 1.0 8662 +Biological Process GO:0044786 cell cycle DNA replication -0.11279997498452898 -2.1912804220659 1.0 8662 +Biological Process GO:0170044 non-proteinogenic amino acid catabolic process -0.11304817416703705 -2.1942286524719945 1.0 8664 +Biological Process GO:0050427 3'-phosphoadenosine 5'-phosphosulfate metabolic process -0.11331454834558174 -2.197392774306112 1.0 8665 +Biological Process GO:0034035 purine ribonucleoside bisphosphate metabolic process -0.11331454834558174 -2.197392774306112 1.0 8665 +Phenotype HP:0033100 Increased proteinogenic amino acid level in urine -0.11403789604361769 -2.205985049494039 1.0 8667 +Biological Process GO:0072530 purine-containing compound transmembrane transport -0.11405595511179678 -2.2061995638746805 1.0 8668 +Biological Process GO:0044458 motile cilium assembly -0.11407061493365789 -2.206373700357009 1.0 8669 +Biological Process GO:0016054 organic acid catabolic process -0.11515071830039392 -2.219203692605 1.0 8670 +Biological Process GO:0046395 carboxylic acid catabolic process -0.11515071830039392 -2.219203692605 1.0 8670 +Phenotype HP:0031038 Spermatogenesis maturation arrest -0.1156281054838324 -2.2248743293712887 1.0 8672 +Phenotype HP:0012256 Absent outer dynein arms -0.11690835370737829 -2.2400817394113424 1.0 8673 +Biological Process GO:0070525 tRNA threonylcarbamoyladenosine metabolic process -0.11708265203391766 -2.242152139566742 1.0 8674 +Disease MONDO:0019242 inborn disorder of branched-chain amino acid metabolism -0.11713853339876446 -2.242815925552298 1.0 8675 +Biological Process GO:1901071 glucosamine-containing compound metabolic process -0.11774638314793995 -2.250036260022166 1.0 8676 +Phenotype HP:0007207 Photosensitive tonic-clonic seizure -0.11975699026582354 -2.2739192276441953 1.0 8677 +Biological Process GO:0006544 glycine metabolic process -0.11979803785550991 -2.274406810845668 1.0 8678 +Biological Process GO:0070286 axonemal dynein complex assembly -0.12212963904616303 -2.3021027019268 1.0 8679 +Biological Process GO:0090329 regulation of DNA-templated DNA replication -0.12310119221579718 -2.3136432822256885 1.0 8680 +Disease MONDO:0018751 hereditary otorhinolaryngologic disease -0.1245777058342119 -2.331182027925148 1.0 8681 +Disease MONDO:0024623 otorhinolaryngologic disease -0.1245777058342119 -2.331182027925148 1.0 8681 +Biological Process GO:0006040 amino sugar metabolic process -0.12651762823821877 -2.354225368193889 1.0 8683 +Biological Process GO:1901679 nucleotide transmembrane transport -0.1271864067042936 -2.362169443547799 1.0 8684 +Biological Process GO:0042219 cellular modified amino acid catabolic process -0.12798192967620592 -2.371619051684451 1.0 8685 +Phenotype HP:0046508 Abnormal cervical spine morphology -0.1288523837836819 -2.3819587282330916 1.0 8686 +Phenotype HP:0010902 Abnormal circulating glutamine family amino acid concentration -0.12922638256888397 -2.386401267403579 1.0 8687 +Biological Process GO:0009083 branched-chain amino acid catabolic process -0.13278330005393135 -2.4286520603974067 1.0 8688 +Phenotype HP:0200073 Respiratory insufficiency due to defective ciliary clearance -0.1347041509108695 -2.451468859569634 1.0 8689 +Biological Process GO:0006270 DNA replication initiation -0.13511310349411754 -2.456326596925572 1.0 8690 +Disease MONDO:0009627 Galloway-Mowat syndrome -0.13628943460190812 -2.4702996290064094 1.0 8691 +Biological Process GO:0036158 outer dynein arm assembly -0.13732502649677558 -2.482600892378435 1.0 8692 +Biological Process GO:0051291 protein heterooligomerization -0.13761959825457093 -2.486099958750584 1.0 8693 +Biological Process GO:0009081 branched-chain amino acid metabolic process -0.13916181031519637 -2.504419102447335 1.0 8694 +Phenotype HP:0020216 Visually-induced seizure -0.1401201525419542 -2.515802756751998 1.0 8695 +Phenotype HP:0008358 Hyperprolinemia -0.14514506842234853 -2.575491147491011 1.0 8696 +Phenotype HP:0007000 Morning myoclonic jerks -0.14782517338571655 -2.607326735604881 1.0 8697 +Phenotype HP:0009892 Anotia -0.15121078966429358 -2.647542729690778 1.0 8698 +Phenotype HP:0010907 Abnormal circulating proline concentration -0.15877668700281 -2.7374141319951666 1.0 8699 +Phenotype HP:0033099 Increased serine family amino acid in urine -0.16142821651890293 -2.768910287071132 1.0 8700 +Phenotype HP:0003108 Hyperglycinuria -0.16142821651890293 -2.768910287071132 1.0 8700 +Phenotype HP:0033098 Increased urinary non-proteinogenic amino acid level -0.1633547228772072 -2.7917942650346865 1.0 8702 diff --git a/test/expected_result/expected_cli/All-Genes/Human-Combined/isolated_genes.txt b/test/expected_result/expected_cli/All-Genes/Human-Combined/isolated_genes.txt new file mode 100644 index 00000000..e69de29b diff --git a/test/expected_result/expected_cli/All-Genes/Human-Combined/isolated_genes_sym.txt b/test/expected_result/expected_cli/All-Genes/Human-Combined/isolated_genes_sym.txt new file mode 100644 index 00000000..e69de29b diff --git a/test/expected_result/expected_cli/All-Genes/clf.joblib b/test/expected_result/expected_cli/All-Genes/clf.joblib new file mode 100644 index 00000000..6f0b7619 Binary files /dev/null and b/test/expected_result/expected_cli/All-Genes/clf.joblib differ diff --git a/test/expected_result/df_convert_out_subset.tsv b/test/expected_result/expected_cli/All-Genes/df_convert_out_for_model.tsv similarity index 97% rename from test/expected_result/df_convert_out_subset.tsv rename to test/expected_result/expected_cli/All-Genes/df_convert_out_for_model.tsv index 122b5f55..597b2289 100644 --- a/test/expected_result/df_convert_out_subset.tsv +++ b/test/expected_result/expected_cli/All-Genes/df_convert_out_for_model.tsv @@ -9,7 +9,6 @@ Original ID Entrez ID Gene Name In STRING? 8766 8766 RAB11A, member RAS oncogene family Y 5584 5584 protein kinase C iota Y 137492 137492 VPS37A subunit of ESCRT-I Y -998 998 cell division cycle 42 N 30011 30011 SH3 domain containing kinase binding protein 1 Y 5337 5337 phospholipase D1 Y 3312 3312 heat shock protein family A (Hsp70) member 8 Y @@ -27,7 +26,6 @@ Original ID Entrez ID Gene Name In STRING? 84249 84249 pleckstrin and Sec7 domain containing 2 Y 2066 2066 erb-b2 receptor tyrosine kinase 4 Y 29924 29924 epsin 1 Y -1213 1213 clathrin heavy chain N 30846 30846 EH domain containing 2 Y 84612 84612 par-6 family cell polarity regulator beta Y 440073 440073 IQ motif and Sec7 domain ArfGEF 3 Y @@ -69,7 +67,6 @@ Original ID Entrez ID Gene Name In STRING? 382 382 ADP ribosylation factor 6 Y 6456 6456 SH3 domain containing GRB2 like 2, endophilin A1 Y 30845 30845 EH domain containing 3 Y -868 868 Cbl proto-oncogene B N 2264 2264 fibroblast growth factor receptor 4 Y 5868 5868 RAB5A, member RAS oncogene family Y 84440 84440 RAB11 family interacting protein 4 Y @@ -80,13 +77,11 @@ Original ID Entrez ID Gene Name In STRING? 161 161 adaptor related protein complex 2 subunit alpha 2 Y 23096 23096 IQ motif and Sec7 domain ArfGEF 2 Y 5338 5338 phospholipase D2 Y -652614 Not in Our List of Human Entrez Genes None N 84552 84552 par-6 family cell polarity regulator gamma Y 51028 51028 vacuolar protein sorting 36 homolog Y 55616 55616 ArfGAP with SH3 domain, ankyrin repeat and PH domain 3 Y 9829 9829 DnaJ heat shock protein family (Hsp40) member C6 Y 3815 3815 KIT proto-oncogene, receptor tyrosine kinase Y -29082 29082 charged multivesicular body protein 4A N 9135 9135 rabaptin, RAB GTPase binding effector protein 1 Y 23362 23362 pleckstrin and Sec7 domain containing 3 Y 9146 9146 hepatocyte growth factor-regulated tyrosine kinase substrate Y @@ -162,7 +157,6 @@ Original ID Entrez ID Gene Name In STRING? 10193 10193 ring finger protein 41 Y 1785 1785 dynamin 2 Y 155382 155382 VPS37D subunit of ESCRT-I Y -652799 Not in Our List of Human Entrez Genes None N 22905 22905 epsin 2 Y 3105 3105 major histocompatibility complex, class I, A Y 55048 55048 VPS37C subunit of ESCRT-I Y diff --git a/test/expected_result/expected_cli/All-Genes/model_level_config.json b/test/expected_result/expected_cli/All-Genes/model_level_config.json new file mode 100644 index 00000000..39a4bf57 --- /dev/null +++ b/test/expected_result/expected_cli/All-Genes/model_level_config.json @@ -0,0 +1,93437 @@ +{ + "model_genes": [ + "6457", + "7037", + "57403", + "3134", + "50807", + "93343", + "11311", + "8766", + "5584", + "137492", + "998", + "30011", + "5337", + "3312", + "155", + "10015", + "55738", + "57132", + "153", + "116986", + "163", + "11267", + "1950", + "3559", + "6714", + "84249", + "2066", + "29924", + "1213", + "30846", + "84612", + "440073", + "2060", + "3303", + "3561", + "9101", + "51160", + "56904", + "3304", + "23527", + "5878", + "3560", + "7189", + "3949", + "92421", + "26286", + "5979", + "9922", + "11031", + "116983", + "2261", + "9230", + "5867", + "64145", + "867", + "57154", + "84313", + "3577", + "116987", + "10617", + "1436", + "200576", + "83737", + "23396", + "3310", + "5590", + "3133", + "382", + "6456", + "30845", + "868", + "2264", + "5868", + "84440", + "116984", + "5869", + "23624", + "22841", + "161", + "23096", + "5338", + "84552", + "51028", + "55616", + "9829", + "3815", + "29082", + "9135", + "23362", + "9146", + "128866", + "156", + "8218", + "89853", + "154", + "64744", + "9525", + "84364", + "9727", + "23550", + "8853", + "1956", + "8395", + "6455", + "64411", + "5156", + "51100", + "8027", + "408", + "3305", + "51534", + "2868", + "9744", + "3106", + "51652", + "3265", + "27243", + "10938", + "60682", + "157", + "26056", + "10059", + "2321", + "80230", + "1173", + "1175", + "160", + "3306", + "3135", + "1234", + "2149", + "8411", + "3791", + "51510", + "23327", + "409", + "11059", + "3579", + "27183", + "8396", + "1601", + "1211", + "3480", + "9815", + "26119", + "64750", + "26052", + "4914", + "25978", + "8394", + "1212", + "30844", + "131890", + "79720", + "7251", + "50855", + "116985", + "5662", + "2870", + "10193", + "1785", + "155382", + "22905", + "3105", + "55048", + "10254", + "55040", + "7852", + "1759", + "4193", + "2869", + "2065", + "6011", + "4734", + "28964", + "4233", + "80223", + "79643", + "3107", + "2263", + "56288" + ], + "pos_genes_in_net": [ + "10015", + "10059", + "10193", + "10254", + "10617", + "10938", + "11031", + "11059", + "11267", + "11311", + "116983", + "116984", + "116985", + "116986", + "116987", + "1173", + "1175", + "1211", + "1212", + "1234", + "128866", + "131890", + "137492", + "1436", + "153", + "154", + "155", + "155382", + "156", + "157", + "160", + "1601", + "161", + "163", + "1759", + "1785", + "1950", + "1956", + "200576", + "2060", + "2065", + "2066", + "2149", + "2261", + "2263", + "2264", + "22841", + "22905", + "23096", + "2321", + "23327", + "23362", + "23396", + "23527", + "23550", + "23624", + "25978", + "26052", + "26056", + "26119", + "26286", + "27183", + "27243", + "2868", + "2869", + "2870", + "28964", + "29924", + "30011", + "30844", + "30845", + "30846", + "3105", + "3106", + "3107", + "3133", + "3134", + "3135", + "3265", + "3303", + "3304", + "3305", + "3306", + "3310", + "3312", + "3480", + "3559", + "3560", + "3561", + "3577", + "3579", + "3791", + "3815", + "382", + "3949", + "408", + "409", + "4193", + "4233", + "440073", + "4734", + "4914", + "50807", + "50855", + "51028", + "51100", + "51160", + "51510", + "51534", + "5156", + "51652", + "5337", + "5338", + "55040", + "55048", + "55616", + "55738", + "5584", + "5590", + "56288", + "5662", + "56904", + "57132", + "57154", + "57403", + "5867", + "5868", + "5869", + "5878", + "5979", + "6011", + "60682", + "64145", + "64411", + "6455", + "6456", + "6457", + "64744", + "64750", + "6714", + "7037", + "7189", + "7251", + "7852", + "79643", + "79720", + "80223", + "80230", + "8027", + "8218", + "83737", + "8394", + "8395", + "8396", + "8411", + "84249", + "84313", + "84364", + "84440", + "84552", + "84612", + "867", + "8766", + "8853", + "89853", + "9101", + "9135", + "9146", + "9230", + "92421", + "93343", + "9525", + "9727", + "9744", + "9815", + "9829", + "9922" + ], + "genes_not_in_net": [ + "1213", + "29082", + "868", + "998" + ], + "net_genes": [ + "1", + "10", + "100", + "1000", + "10000", + "100008586", + "10001", + "10002", + "10003", + "100033411", + "100037417", + "10004", + "100049587", + "10005", + "10006", + "10007", + "10008", + "10009", + "1001", + "10010", + "100101267", + "100101467", + "100101490", + "10011", + "100113407", + "100125288", + "100126572", + "100127206", + "100127983", + "100128071", + "100128327", + "100128553", + "100128569", + "100128731", + "100128908", + "100128927", + "100129053", + "100129128", + "100129216", + "100129239", + "100129250", + "100129271", + "100129278", + "100129361", + "100129480", + "100129515", + "100129520", + "100129543", + "100129583", + "100129654", + "100129669", + "100129792", + "100129842", + "100129924", + "100129969", + "10013", + "100130086", + "100130274", + "100130301", + "100130311", + "100130348", + "100130361", + "100130519", + "100130613", + "100130705", + "100130733", + "100130742", + "100130771", + "100130827", + "100130890", + "100130933", + "100130958", + "100130988", + "100131017", + "100131137", + "100131187", + "100131211", + "100131244", + "100131303", + "100131378", + "100131390", + "100131439", + "100131608", + "100131755", + "100131801", + "100131827", + "100131897", + "100131902", + "100131980", + "100132015", + "100132074", + "100132247", + "100132386", + "100132396", + "100132399", + "100132406", + "100132463", + "100132476", + "100132916", + "100132963", + "100132994", + "100133053", + "100133093", + "100133251", + "100133267", + "100133315", + "100133941", + "100134444", + "100134934", + "100134938", + "100137047", + "100137049", + "10014", + "100141515", + "100142659", + "100144748", + "10015", + "100151643", + "10016", + "100169851", + "10017", + "100170229", + "100170765", + "100170841", + "10018", + "100188893", + "10019", + "100190949", + "100191040", + "1002", + "10020", + "10021", + "10022", + "10023", + "10024", + "10025", + "10026", + "100271715", + "100271846", + "100271849", + "100271927", + "100272147", + "100287045", + "100287144", + "100287171", + "100287178", + "100287205", + "100287226", + "100287238", + "100287284", + "100287327", + "100287364", + "100287399", + "100287404", + "100287441", + "100287478", + "100287482", + "100287513", + "100287520", + "100287718", + "100287898", + "100287932", + "100288072", + "100288287", + "100288323", + "100288332", + "100288413", + "100288687", + "100288695", + "100288797", + "100288801", + "100288814", + "100288842", + "100288966", + "100289087", + "100289187", + "100289255", + "100289279", + "100289462", + "100289635", + "100289678", + "100293516", + "1003", + "100302736", + "100303755", + "100310812", + "100310846", + "100316904", + "100329135", + "10036", + "10038", + "100381270", + "10039", + "1004", + "10040", + "100419780", + "10042", + "100423062", + "10043", + "100431172", + "10044", + "10045", + "10046", + "10047", + "10048", + "10049", + "1005", + "10050", + "100500938", + "100505385", + "100505478", + "100505573", + "100505576", + "100505591", + "100505724", + "100505753", + "100505841", + "100505876", + "100505989", + "100505993", + "100506013", + "100506049", + "100506127", + "100506144", + "100506164", + "100506243", + "100506374", + "100506540", + "100506564", + "100506581", + "100506658", + "100507003", + "100507027", + "100507043", + "100507050", + "100507055", + "100507096", + "100507170", + "100507203", + "100507290", + "100507341", + "100507421", + "100507436", + "100507537", + "100507588", + "100507607", + "100507608", + "100507650", + "100507679", + "100507747", + "100509620", + "10051", + "10052", + "100526664", + "100526693", + "100526694", + "100526737", + "100526739", + "100526740", + "100526760", + "100526761", + "100526767", + "100526772", + "100526773", + "100526783", + "100526794", + "100526835", + "100526842", + "100527943", + "100527949", + "100527963", + "100527978", + "100528017", + "100528020", + "100528021", + "100528030", + "100528062", + "100528064", + "100529063", + "100529097", + "100529144", + "100529209", + "100529215", + "100529239", + "100529240", + "100529241", + "100529251", + "100529257", + "100529261", + "10053", + "100532724", + "100532726", + "100532731", + "100533106", + "100533177", + "100533181", + "100533464", + "100533467", + "100533496", + "100533952", + "100534592", + "100534599", + "10054", + "10055", + "10056", + "10057", + "10058", + "10059", + "1006", + "10060", + "10061", + "10062", + "10063", + "100631383", + "100652824", + "100653515", + "10066", + "10067", + "10068", + "10069", + "1007", + "10071", + "10072", + "10073", + "10075", + "10076", + "10077", + "10078", + "10079", + "1008", + "10081", + "10082", + "100820829", + "10083", + "10084", + "10085", + "10086", + "100861540", + "100862671", + "10087", + "100874261", + "100885848", + "100885850", + "10089", + "1009", + "10090", + "10092", + "10093", + "10094", + "10095", + "10096", + "10097", + "10098", + "10099", + "100996331", + "100996492", + "100996521", + "100996693", + "100996717", + "100996746", + "100996758", + "100996763", + "100996928", + "100996939", + "101", + "1010", + "10100", + "10101", + "10102", + "10103", + "10105", + "101059915", + "101059918", + "101059938", + "101059953", + "10106", + "101060200", + "101060211", + "101060226", + "101060233", + "101060301", + "101060321", + "101060351", + "101060376", + "101060389", + "101060684", + "10107", + "10109", + "10110", + "10111", + "10112", + "10113", + "10114", + "10116", + "10117", + "1012", + "10120", + "10121", + "10123", + "10124", + "10125", + "10126", + "10127", + "10128", + "10129", + "1013", + "10130", + "10131", + "10133", + "10134", + "10135", + "10136", + "10137", + "10138", + "10139", + "1014", + "10140", + "101410538", + "10142", + "10143", + "10144", + "10146", + "10147", + "10148", + "10149", + "1015", + "10150", + "10152", + "10153", + "10154", + "10155", + "10156", + "10157", + "10158", + "10159", + "1016", + "10160", + "10161", + "10162", + "10163", + "10164", + "10165", + "10166", + "101669762", + "10168", + "10169", + "1017", + "10170", + "10171", + "10172", + "10174", + "10175", + "10178", + "10179", + "1018", + "10180", + "10181", + "10184", + "10186", + "10188", + "10189", + "1019", + "10190", + "101927367", + "101927581", + "101927685", + "101928108", + "101928147", + "101928527", + "101928601", + "101928603", + "101928677", + "101928917", + "101929355", + "101929469", + "101929726", + "101929796", + "101929926", + "101929983", + "101929989", + "10193", + "10194", + "10195", + "10196", + "10197", + "10198", + "10199", + "102", + "1020", + "10200", + "10201", + "10202", + "10203", + "10204", + "10205", + "10206", + "10207", + "10208", + "10209", + "1021", + "10210", + "10211", + "10212", + "10213", + "10214", + "10215", + "102157402", + "10216", + "10217", + "10218", + "10219", + "1022", + "10220", + "10221", + "10223", + "10224", + "10225", + "10226", + "10227", + "10228", + "102288414", + "10229", + "10231", + "10232", + "10233", + "10234", + "10235", + "10236", + "10237", + "10238", + "10239", + "1024", + "10240", + "10241", + "10242", + "10243", + "10244", + "10245", + "10246", + "10247", + "10248", + "10249", + "1025", + "10250", + "10251", + "10252", + "10253", + "10254", + "10256", + "10257", + "1026", + "10260", + "10261", + "10262", + "10263", + "10265", + "10266", + "10267", + "10268", + "10269", + "1027", + "10270", + "10272", + "102723407", + "102723502", + "102723508", + "102723526", + "102723532", + "102723547", + "102723555", + "102723631", + "102723655", + "102723680", + "102723713", + "102723737", + "102723796", + "102723859", + "102723971", + "102724101", + "102724127", + "102724473", + "102724488", + "102724536", + "102724631", + "102724657", + "102724862", + "10273", + "10274", + "10276", + "10277", + "10278", + "10279", + "1028", + "10280", + "102800317", + "10282", + "10283", + "10284", + "10285", + "10286", + "10287", + "10288", + "10289", + "1029", + "10290", + "10291", + "10293", + "10294", + "10295", + "10296", + "10297", + "10298", + "10299", + "103", + "1030", + "10300", + "10302", + "10307", + "10308", + "10309", + "1031", + "10311", + "10312", + "10313", + "10314", + "10316", + "10317", + "10318", + "10319", + "1032", + "10320", + "10321", + "10322", + "10324", + "10325", + "10326", + "10327", + "10328", + "10329", + "1033", + "10330", + "10331", + "10332", + "10335", + "10336", + "10342", + "10343", + "10344", + "10345", + "10346", + "10347", + "10349", + "10350", + "10351", + "10352", + "1036", + "10360", + "10361", + "10362", + "10363", + "10365", + "10367", + "10368", + "10369", + "10370", + "10371", + "10376", + "10379", + "10380", + "10381", + "10382", + "10383", + "10384", + "10385", + "10388", + "10389", + "1039", + "10390", + "10391", + "103910", + "10392", + "10393", + "10394", + "10395", + "10396", + "10397", + "10398", + "10399", + "104", + "1040", + "10400", + "10401", + "10402", + "10403", + "10404", + "10406", + "10407", + "10409", + "1041", + "10410", + "10411", + "10412", + "10413", + "10417", + "10418", + "10419", + "10420", + "10421", + "10422", + "10423", + "10424", + "10425", + "10426", + "10427", + "10428", + "1043", + "10430", + "10432", + "104326056", + "10434", + "10435", + "10436", + "10437", + "10438", + "10439", + "1044", + "10440", + "10443", + "10444", + "10445", + "10446", + "10447", + "10449", + "1045", + "10450", + "10451", + "10452", + "10454", + "10455", + "10456", + "10457", + "10458", + "10459", + "1046", + "10460", + "10461", + "10462", + "10463", + "10464", + "10465", + "10466", + "10467", + "10468", + "10469", + "1047", + "10471", + "10472", + "10473", + "10474", + "10475", + "10476", + "10477", + "10478", + "10479", + "1048", + "10480", + "10481", + "10482", + "10483", + "10484", + "10486", + "10487", + "10488", + "10489", + "10490", + "104909134", + "10491", + "10492", + "10493", + "10494", + "10495", + "10497", + "10498", + "10499", + "105", + "1050", + "10500", + "10501", + "10505", + "10507", + "10509", + "1051", + "10512", + "10513", + "10514", + "10516", + "10517", + "10518", + "105180390", + "105180391", + "10519", + "1052", + "10520", + "10521", + "10522", + "10523", + "10524", + "10525", + "10526", + "10527", + "10528", + "10529", + "1053", + "10531", + "10533", + "10534", + "10535", + "10536", + "105369274", + "10537", + "105371045", + "105371242", + "105371346", + "105372267", + "105372280", + "105372481", + "105373377", + "105375355", + "105376230", + "105376752", + "105378220", + "105378696", + "105378803", + "105378952", + "10538", + "10539", + "1054", + "10540", + "10541", + "10542", + "10544", + "10548", + "10549", + "10550", + "10551", + "10552", + "10553", + "10554", + "10555", + "10556", + "10557", + "10558", + "10559", + "10560", + "10561", + "10562", + "10563", + "10564", + "10565", + "10566", + "10567", + "10568", + "10569", + "10570", + "10572", + "10573", + "10574", + "10575", + "10576", + "10577", + "10578", + "10579", + "1058", + "10580", + "10581", + "10584", + "10585", + "10586", + "10587", + "10588", + "10589", + "1059", + "10590", + "10591", + "10592", + "10594", + "10595", + "10597", + "10598", + "10599", + "1060", + "10600", + "10602", + "10603", + "10605", + "10606", + "10607", + "10608", + "10609", + "10610", + "10611", + "10612", + "10613", + "10614", + "10615", + "10616", + "10617", + "10618", + "1062", + "10620", + "10621", + "10622", + "10623", + "10625", + "10626", + "10627", + "10628", + "10629", + "1063", + "10630", + "10631", + "10632", + "10633", + "10634", + "10635", + "10636", + "10637", + "10640", + "10641", + "10642", + "10643", + "10644", + "10645", + "10647", + "10648", + "10650", + "10651", + "10652", + "10653", + "10654", + "10655", + "10656", + "10657", + "10658", + "10659", + "1066", + "10660", + "10661", + "10663", + "10664", + "10665", + "10666", + "10667", + "10668", + "10669", + "10670", + "10671", + "10672", + "10673", + "10675", + "10677", + "10678", + "1068", + "10681", + "10682", + "10683", + "10686", + "106865373", + "10687", + "1069", + "10690", + "10691", + "10692", + "10693", + "10694", + "10695", + "10699", + "107", + "1070", + "1071", + "10712", + "10713", + "10714", + "10716", + "10717", + "10718", + "1072", + "10720", + "10721", + "10723", + "10724", + "10725", + "10726", + "10728", + "107282092", + "1073", + "10730", + "10732", + "10733", + "10734", + "10735", + "10736", + "10738", + "10739", + "10741", + "10742", + "10743", + "10744", + "10745", + "10746", + "10747", + "10749", + "1075", + "10750", + "10752", + "10753", + "10755", + "10758", + "10761", + "10762", + "10763", + "10765", + "10766", + "10767", + "10768", + "10769", + "10771", + "10772", + "10773", + "10775", + "10776", + "10777", + "10780", + "10781", + "10782", + "10783", + "10785", + "10786", + "10787", + "10788", + "10791", + "10793", + "10794", + "10795", + "10797", + "10798", + "107983988", + "107983993", + "107984345", + "107984640", + "107986096", + "107986818", + "107987155", + "10799", + "108", + "1080", + "10800", + "10801", + "10802", + "10803", + "10804", + "10806", + "10807", + "10808", + "10809", + "1081", + "10810", + "10811", + "10813", + "10814", + "10815", + "10816", + "10817", + "10818", + "1082", + "10825", + "10826", + "10827", + "10838", + "1084", + "10840", + "10841", + "10842", + "10844", + "10845", + "10846", + "10847", + "10848", + "10849", + "10850", + "10855", + "10856", + "10857", + "10858", + "10859", + "10861", + "10863", + "10864", + "10865", + "10867", + "10868", + "10869", + "1087", + "10870", + "10871", + "10873", + "10874", + "10875", + "10876", + "10877", + "10878", + "1088", + "10880", + "10881", + "10882", + "10884", + "10885", + "10886", + "10887", + "10888", + "1089", + "10890", + "10891", + "10892", + "10893", + "10894", + "10897", + "10898", + "10899", + "109", + "10900", + "10901", + "10902", + "10903", + "10904", + "10905", + "10906", + "10907", + "10908", + "10910", + "10911", + "10912", + "10913", + "10914", + "10915", + "10916", + "10917", + "10919", + "10920", + "10921", + "10922", + "10923", + "10924", + "10926", + "10927", + "10928", + "10929", + "10930", + "10933", + "10935", + "10936", + "10938", + "10939", + "10940", + "10941", + "10942", + "10943", + "10944", + "10945", + "10946", + "10947", + "10948", + "10949", + "10950", + "10951", + "10952", + "10953", + "10954", + "10955", + "10956", + "10957", + "10959", + "10960", + "10961", + "10962", + "10963", + "10964", + "10965", + "10966", + "10969", + "10970", + "109703458", + "10971", + "10972", + "10973", + "10974", + "10975", + "10978", + "10979", + "10980", + "10981", + "10982", + "10983", + "10985", + "10987", + "10988", + "10989", + "10990", + "10991", + "10992", + "10993", + "10994", + "10998", + "10999", + "11000", + "11001", + "11004", + "11005", + "11006", + "11007", + "11009", + "110091775", + "1101", + "11010", + "11011", + "110117498", + "110117499", + "11012", + "11013", + "11014", + "11015", + "11016", + "11017", + "11018", + "11019", + "1102", + "11020", + "11021", + "11022", + "11023", + "11024", + "11025", + "11027", + "1103", + "11030", + "11031", + "11033", + "11034", + "11035", + "11036", + "11037", + "1104", + "11040", + "11041", + "11043", + "11044", + "11046", + "11047", + "1105", + "11051", + "11052", + "11054", + "11055", + "11056", + "11057", + "11059", + "110599563", + "110599564", + "110599583", + "110599588", + "1106", + "11060", + "11061", + "11062", + "11063", + "11064", + "11065", + "11066", + "11067", + "11068", + "11069", + "1107", + "11070", + "11072", + "11073", + "11074", + "11075", + "11076", + "11077", + "11078", + "11079", + "1108", + "11080", + "110806277", + "110806278", + "110806279", + "110806290", + "110806296", + "110806297", + "110806298", + "110806299", + "11081", + "11082", + "11083", + "11085", + "11086", + "1109", + "11091", + "11092", + "11093", + "11094", + "11095", + "11096", + "11097", + "11098", + "11099", + "111", + "11100", + "11101", + "11102", + "11103", + "11104", + "111064647", + "111064649", + "111064650", + "11107", + "11108", + "1111", + "11112", + "11113", + "11116", + "11117", + "11118", + "111188157", + "11119", + "1112", + "11120", + "111216276", + "111216277", + "11122", + "11123", + "11124", + "11126", + "11127", + "11128", + "11129", + "1113", + "11130", + "11131", + "11132", + "11133", + "11135", + "11136", + "11137", + "11138", + "1114", + "11140", + "11141", + "11142", + "11143", + "11144", + "11145", + "11146", + "11148", + "11149", + "11151", + "11152", + "11153", + "11154", + "11155", + "11156", + "11157", + "11158", + "11159", + "1116", + "11160", + "11161", + "11162", + "11163", + "11164", + "11165", + "11166", + "11167", + "11168", + "11169", + "1117", + "11170", + "11171", + "11172", + "11173", + "11174", + "11176", + "11177", + "11178", + "11179", + "1118", + "11180", + "11181", + "11182", + "11183", + "11184", + "11185", + "11186", + "11187", + "11188", + "11189", + "1119", + "11190", + "11193", + "11194", + "11196", + "11197", + "11198", + "11199", + "112", + "1120", + "11200", + "11201", + "11202", + "1121", + "11211", + "11212", + "11213", + "11214", + "11215", + "11216", + "112163659", + "11218", + "11219", + "1122", + "11221", + "11222", + "11224", + "11226", + "112267897", + "112268164", + "112268293", + "11227", + "11228", + "1123", + "11230", + "11231", + "11232", + "11234", + "11235", + "11236", + "11237", + "11238", + "112398", + "112399", + "1124", + "11240", + "11243", + "11244", + "112441428", + "112441434", + "112441437", + "112441438", + "11245", + "112464", + "11247", + "112476", + "112479", + "11248", + "112483", + "112487", + "112488736", + "112488737", + "112488738", + "112488739", + "112488740", + "112488745", + "112488746", + "112488747", + "11249", + "112495", + "11250", + "11251", + "11252", + "11253", + "11254", + "11255", + "112574", + "112577461", + "112577516", + "11258", + "11259", + "11260", + "112609", + "11261", + "112611", + "112616", + "11262", + "11264", + "11266", + "11267", + "11269", + "11270", + "112703", + "112714", + "11272", + "112724", + "11273", + "11274", + "112744", + "11275", + "112752", + "112755", + "11276", + "11277", + "112770", + "11278", + "11279", + "1128", + "11280", + "112802", + "11281", + "112812", + "112817", + "11282", + "11283", + "11284", + "112840", + "112849", + "11285", + "112858", + "112869", + "112885", + "1129", + "112936", + "112937", + "112939", + "112942", + "112950", + "112970", + "113", + "1130", + "113000", + "113026", + "11309", + "113091", + "1131", + "11311", + "113115", + "11313", + "113130", + "11314", + "113146", + "11315", + "11316", + "11317", + "113174", + "113177", + "113178", + "113179", + "11318", + "113189", + "11319", + "1132", + "11320", + "113201", + "11321", + "11322", + "113230", + "113235", + "113246", + "11325", + "113251", + "11326", + "113263", + "113277", + "113278", + "11328", + "11329", + "1133", + "11330", + "11331", + "11332", + "11333", + "11334", + "11335", + "11336", + "11337", + "11338", + "11339", + "1134", + "11340", + "113402", + "11341", + "113419", + "11342", + "11343", + "11344", + "113444", + "11345", + "113451", + "113452", + "113455421", + "113457", + "11346", + "1135", + "113510", + "113523636", + "113523638", + "113540", + "1136", + "113612", + "113622", + "113655", + "113675", + "1137", + "113730", + "113746", + "113791", + "1138", + "113802", + "113828", + "113829", + "113835", + "113878", + "1139", + "114", + "1140", + "114026", + "114034", + "114088", + "1141", + "114108587", + "114112", + "114131", + "114132", + "114134", + "1142", + "114294", + "1143", + "114327", + "114335", + "114336", + "1144", + "114483833", + "114483834", + "1145", + "114515518", + "114548", + "114569", + "114571", + "1146", + "114609", + "114625", + "114659", + "1147", + "114757", + "114770", + "114771", + "114781", + "114784", + "114785", + "114786", + "114787", + "114788", + "114789", + "114790", + "114791", + "114792", + "114793", + "114794", + "114795", + "114798", + "114799", + "114800", + "114801", + "114803", + "114804", + "114805", + "114815", + "114818", + "114821", + "114822", + "114823", + "114824", + "114825", + "114826", + "114827", + "114836", + "114841037", + "114876", + "114879", + "114880", + "114881", + "114882", + "114883", + "114884", + "114885", + "114897", + "114898", + "114899", + "1149", + "114900", + "114902", + "114904", + "114905", + "114907", + "114908", + "114926", + "114928", + "114932", + "114960", + "114971", + "114984", + "114987", + "114990", + "114991", + "115", + "115004", + "115019", + "115024", + "115072896", + "115098", + "115106", + "115111", + "115123", + "115196", + "1152", + "115201", + "115207", + "115209", + "115253422", + "115265", + "115273", + "115286", + "115290", + "115294", + "1153", + "115330", + "115350", + "115352", + "115353", + "115361", + "115362", + "115399", + "1154", + "115416", + "115426", + "115482686", + "1155", + "115509", + "115548", + "115557", + "115560", + "115572", + "115584", + "115650", + "115653", + "115677", + "115701", + "115703", + "115704", + "115708", + "115727", + "115749", + "115752", + "115761", + "115795", + "1158", + "115811", + "115817", + "115825", + "115827", + "115861", + "1159", + "115908", + "115939", + "115948", + "115950", + "115992", + "116", + "1160", + "116028", + "116033993", + "116039", + "116064", + "116068", + "116071", + "116085", + "116092", + "1161", + "116115", + "116135", + "116138", + "116143", + "116150", + "116151", + "116154", + "116159", + "116173", + "116179", + "116211", + "116224", + "116225", + "116228", + "116236", + "116238", + "116254", + "116255", + "116285", + "1163", + "116328", + "116337", + "116362", + "116369", + "116372", + "116379", + "1164", + "116412", + "116441", + "116442", + "116443", + "116444", + "116447", + "116448", + "116449", + "116461", + "116496", + "116511", + "116512", + "116519", + "116534", + "116540", + "116541", + "116729", + "116832", + "116835", + "116840", + "116841", + "116842", + "116843", + "116844", + "116931", + "116966", + "116969", + "116983", + "116984", + "116985", + "116986", + "116987", + "116988", + "117143", + "117144", + "117145", + "117154", + "117155", + "117156", + "117157", + "117159", + "117166", + "117177", + "117178", + "117194", + "117195", + "117196", + "117245", + "117246", + "117247", + "117248", + "117283", + "117285", + "117286", + "117289", + "1173", + "1174", + "1175", + "117531", + "117532", + "117579", + "117581", + "117583", + "117584", + "1176", + "117608", + "1178", + "117854", + "1179", + "118", + "1180", + "1181", + "1182", + "1183", + "1184", + "118424", + "118426", + "118427", + "118429", + "118430", + "118442", + "118460", + "118461", + "118471", + "118472", + "118487", + "118490", + "118491", + "1185", + "118568804", + "1186", + "118611", + "118663", + "118670", + "118672", + "1187", + "118738", + "118788", + "1188", + "118812", + "118813", + "118856", + "118881", + "118924", + "118932", + "118980", + "118987", + "119", + "119016", + "119032", + "1191", + "119180", + "1192", + "1193", + "119391", + "119392", + "119395", + "119467", + "1195", + "119504", + "119548", + "119559", + "119587", + "1196", + "119678", + "119679", + "119682", + "119687", + "119692", + "119694", + "119695", + "119710", + "119749", + "119764", + "119765", + "119772", + "119774", + "1198", + "12", + "120", + "1200", + "120065", + "120066", + "120071", + "1201", + "120103", + "120114", + "120146", + "120224", + "120227", + "120237", + "120356740", + "120376", + "120379", + "120400", + "120406", + "120425", + "120526", + "120534", + "120586", + "1207", + "120775", + "120776", + "120787", + "120793", + "1208", + "120863", + "120892", + "1209", + "120935", + "120939", + "121006", + "121053", + "1211", + "121129", + "121130", + "1212", + "121214", + "121227", + "121256", + "121260", + "121268", + "121273", + "121274", + "121275", + "121278", + "121340", + "121355", + "121364", + "121391", + "121441", + "121457", + "1215", + "121504", + "121506", + "121512", + "121536", + "121549", + "121551", + "121599", + "121601", + "121642", + "121643", + "121665", + "121725057", + "121793", + "122011", + "122042", + "122046", + "122060", + "122183", + "122258", + "122394733", + "122402", + "122405565", + "122416", + "122455342", + "122481", + "122509", + "122513141", + "122525", + "122526777", + "122526780", + "122553", + "122616", + "122618", + "122622", + "122651", + "122664", + "122665", + "122704", + "122706", + "122740", + "122742", + "122748", + "122769", + "122773", + "122786", + "122809", + "122830", + "122876", + "122945", + "122953", + "122961", + "122970", + "123", + "1230", + "123036", + "123041", + "123096", + "123099", + "123103", + "123169", + "1232", + "123207", + "123228", + "123263", + "123264", + "123283", + "1233", + "123346", + "123355", + "1234", + "1235", + "123591", + "1236", + "123606", + "123624", + "123688", + "1237", + "123720", + "123722", + "123745", + "123775", + "1238", + "123803", + "123811", + "123872", + "123876", + "123879", + "123904", + "123920", + "123970", + "124", + "1240", + "124044", + "124045", + "124056", + "124093", + "1241", + "124152", + "124220", + "124222", + "124245", + "124274", + "124359", + "1244", + "124401", + "124402", + "124404", + "124411", + "124446", + "124454", + "124460", + "124491", + "124512", + "124535", + "124538", + "124540", + "124565", + "124583", + "124590", + "124599", + "124602", + "124626", + "124637", + "124641", + "124739", + "124751", + "124773", + "124783", + "124790", + "124801", + "124808", + "124817", + "124842", + "124857", + "124872", + "124903857", + "124905556", + "124905693", + "124912", + "124923", + "124925", + "124930", + "124935", + "124936", + "124944", + "124961", + "124975", + "124976", + "124989", + "124995", + "124997", + "125", + "125058", + "125061", + "125111", + "125113", + "125115", + "125150", + "125170", + "125206", + "125228", + "125336", + "125467750", + "125476", + "125488", + "125704", + "1258", + "125875", + "125893", + "1259", + "125919", + "125931", + "125958", + "125962", + "125963", + "125965", + "125972", + "125981", + "125988", + "125997", + "126", + "1260", + "126003", + "126006", + "126014", + "126017", + "126068", + "126069", + "126070", + "126074", + "126075", + "1261", + "126119", + "126123", + "126129", + "126133", + "126147", + "1262", + "126204", + "126205", + "126206", + "126208", + "126248", + "126259", + "126272", + "126282", + "126295", + "126298", + "126299", + "1263", + "126306", + "126308", + "126321", + "126326", + "126328", + "126353", + "126364", + "126370", + "126374", + "126375", + "126382", + "126393", + "1264", + "126402", + "126410", + "126432", + "126433", + "1265", + "126520", + "126526", + "126541", + "126549", + "126567", + "1266", + "126626", + "126637", + "126638", + "126661", + "126668", + "126669", + "126695", + "1267", + "126731", + "126755", + "126767", + "126789", + "126792", + "1268", + "126820", + "126823", + "126859", + "126868", + "1269", + "126917", + "126961", + "126969", + "127", + "1270", + "127002", + "127003", + "127018", + "127059", + "127062", + "127064", + "127066", + "127068", + "127069", + "127077", + "1271", + "127124", + "1272", + "127247", + "127253", + "127254", + "127255", + "127262", + "127281", + "127294", + "127343", + "127385", + "127391", + "127396", + "127428", + "127435", + "127534", + "127540", + "127544", + "127550", + "127579", + "127602", + "127608", + "127623", + "127665", + "127670", + "127687", + "1277", + "127700", + "127703", + "127707", + "127731", + "127733", + "127795", + "1278", + "127814297", + "127829", + "127833", + "127845", + "127898561", + "127933", + "127943", + "128", + "1280", + "128025", + "128061", + "128077", + "1281", + "128125814", + "128153", + "128178", + "1282", + "128209", + "128218", + "128229", + "128239", + "128240", + "128272", + "128308", + "128312", + "128338", + "128344", + "128346", + "128360", + "128366", + "128367", + "128368", + "128372", + "128387", + "1284", + "128408", + "128414", + "128434", + "128486", + "128488", + "128497", + "1285", + "128506", + "128553", + "1286", + "128602", + "128611", + "128637", + "128646", + "128653", + "128674", + "1287", + "128706665", + "128710", + "1288", + "128817", + "128821", + "128822", + "128853", + "128859", + "128861", + "128864", + "128866", + "128869", + "128876", + "1289", + "128954", + "128966690", + "128977", + "128989", + "1290", + "129025", + "129049", + "129080", + "1291", + "129138", + "1292", + "129285", + "129293", + "1293", + "129303", + "1294", + "129401", + "129446", + "129450", + "1295", + "129521", + "129530", + "129531", + "129563", + "1296", + "129607", + "129642", + "129684", + "129685", + "1297", + "129787", + "1298", + "129804", + "129807", + "129831", + "129852", + "129868", + "129880", + "129881", + "1299", + "13", + "130", + "1300", + "130013", + "130026", + "130074", + "130075", + "1301", + "130106", + "130120", + "130132", + "130162", + "1302", + "130271", + "1303", + "130340", + "130355", + "130367", + "130399", + "130497", + "1305", + "130502", + "130535", + "130540", + "130557", + "130560", + "130574", + "130576", + "130589", + "1306", + "130612", + "130617", + "1307", + "130733", + "130749", + "130752", + "1308", + "130813", + "130814", + "130827", + "130888", + "130916", + "130940", + "130951", + "131", + "1310", + "131034", + "131076", + "131096", + "1311", + "131118", + "131149", + "131177", + "1312", + "131368", + "131375", + "131377", + "1314", + "131405", + "131408", + "131450", + "131474", + "1315", + "131540", + "131544", + "131566", + "131578", + "131583", + "1316", + "131601", + "131616", + "131669", + "131675794", + "1317", + "1318", + "131831", + "131870", + "131873", + "131890", + "131920", + "131965", + "132", + "132001", + "132014", + "132112", + "132141", + "132158", + "132160", + "132200", + "132203", + "132204", + "132228", + "132243", + "132299", + "132320", + "132321", + "132332", + "132430", + "1325", + "1326", + "132612", + "132625", + "132660", + "132671", + "1327", + "132720", + "132724", + "132789", + "132851", + "132864", + "132884", + "1329", + "132946", + "132949", + "132954", + "132989", + "133", + "133015", + "133022", + "133060", + "133121", + "133308", + "133383", + "133396", + "133418", + "133482", + "133491", + "133522", + "133558", + "133584", + "133619", + "133686", + "133688", + "133690", + "1337", + "133746", + "133874", + "1339", + "133923", + "133957", + "134", + "1340", + "134083", + "134111", + "134121", + "134145", + "134147", + "134187", + "134218", + "134265", + "134266", + "134285", + "134288", + "134353", + "134359", + "134391", + "134429", + "134492", + "1345", + "134510", + "134526", + "134548", + "134549", + "134553", + "1346", + "134637", + "1347", + "134701", + "134728", + "134829", + "134860", + "134864", + "1349", + "134957", + "135", + "1350", + "1351", + "135112", + "135114", + "135138", + "135152", + "135154", + "1352", + "135228", + "135250", + "135293", + "135295", + "1353", + "135398", + "135458", + "1355", + "1356", + "135644", + "135656", + "1357", + "1358", + "135886", + "135892", + "1359", + "135924", + "135927", + "135932", + "135935", + "135941", + "135946", + "135948", + "136", + "1360", + "136051", + "1361", + "136157", + "1362", + "136227", + "136242", + "136259", + "136263", + "136288", + "1363", + "136306", + "136319", + "136332", + "136371", + "1364", + "1365", + "136541", + "1366", + "136647", + "1368", + "136853", + "136895", + "1369", + "136991", + "1370", + "137075", + "1371", + "137209", + "1373", + "137362", + "137392", + "1374", + "137492", + "1375", + "1376", + "137682", + "137695", + "137735", + "137797", + "1378", + "137814", + "137835", + "137868", + "137872", + "137886", + "1379", + "137902", + "137964", + "137970", + "137994", + "1380", + "138009", + "138046", + "138050", + "138065", + "1381", + "138151", + "138162", + "138199", + "1382", + "138240", + "138241", + "138255", + "138307", + "138311", + "1384", + "138428", + "138429", + "138474", + "1385", + "1386", + "138639", + "1387", + "138715", + "138716", + "138724", + "138799", + "1388", + "138802", + "138804", + "138805", + "138881", + "138883", + "1389", + "1390", + "139065", + "139067", + "139081", + "139105", + "139135", + "139170", + "139189", + "1392", + "139212", + "139221", + "139231", + "139285", + "1393", + "139322", + "139324", + "139341", + "139378", + "1394", + "139411", + "139420", + "139422", + "139425", + "1395", + "139562", + "139596", + "139599", + "1396", + "139604", + "139628", + "1397", + "139716", + "139728", + "139735", + "139741", + "139760", + "139793", + "1398", + "139804", + "139818", + "139886", + "1399", + "14", + "140", + "1400", + "140032", + "1401", + "140258", + "140290", + "1404", + "140432", + "140453", + "140456", + "140458", + "140459", + "140460", + "140461", + "140462", + "140465", + "140467", + "140469", + "140545", + "140564", + "140576", + "140578", + "140596", + "140597", + "1406", + "140606", + "140609", + "140612", + "140625", + "140628", + "140679", + "140680", + "140683", + "140685", + "140686", + "140688", + "140689", + "140690", + "140691", + "1407", + "140700", + "140701", + "140706", + "140710", + "140711", + "140730", + "140731", + "140732", + "140733", + "140735", + "140738", + "140739", + "140766", + "140767", + "140775", + "1408", + "140801", + "140803", + "140807", + "140809", + "140823", + "140825", + "140831", + "140832", + "140836", + "140838", + "140850", + "140856", + "140862", + "140870", + "140873", + "140876", + "140880", + "140881", + "140883", + "140885", + "140886", + "140890", + "140893", + "140894", + "1409", + "140901", + "140902", + "140947", + "141", + "1410", + "1411", + "1412", + "1413", + "1414", + "1415", + "1417", + "1418", + "1419", + "142", + "1420", + "1421", + "142678", + "142679", + "142680", + "142683", + "142684", + "142685", + "142686", + "142689", + "1427", + "1428", + "142891", + "1429", + "142910", + "142940", + "143", + "143098", + "1431", + "143162", + "143187", + "1432", + "143241", + "143244", + "143279", + "143282", + "143379", + "143384", + "1434", + "143425", + "143458", + "143471", + "143496", + "1435", + "143503", + "143506", + "143570", + "1436", + "143630", + "143662", + "143678", + "143684", + "143686", + "143689", + "1437", + "143872", + "143879", + "143884", + "143888", + "1439", + "143903", + "143941", + "1440", + "144097", + "1441", + "144100", + "144108", + "144110", + "144124", + "144125", + "144132", + "144165", + "144193", + "144195", + "1442", + "144233", + "144245", + "1443", + "144321", + "144347", + "144348", + "144363", + "1444", + "144402", + "144404", + "144406", + "144423", + "144448", + "144453", + "144455", + "1445", + "144501", + "144535", + "144568", + "144577", + "1446", + "144608", + "144699", + "1447", + "144715", + "144717", + "1448", + "144809", + "144811", + "144983", + "145173", + "1452", + "145226", + "145258", + "145264", + "145270", + "145282", + "1453", + "145376", + "145389", + "1454", + "145407", + "145447", + "145482", + "145483", + "145497", + "1455", + "145501", + "145508", + "145553", + "145567", + "145581", + "1456", + "145645", + "1457", + "145741", + "145748", + "145773", + "145781", + "145788", + "145814", + "145853", + "145864", + "145873", + "1459", + "145942", + "145957", + "146", + "1460", + "146050", + "146057", + "146059", + "146167", + "146177", + "146183", + "146198", + "1462", + "146206", + "146212", + "146223", + "146225", + "146227", + "146279", + "1463", + "146310", + "146325", + "146330", + "146378", + "146395", + "1464", + "146429", + "146433", + "146434", + "146439", + "146456", + "1465", + "146540", + "146542", + "146547", + "146556", + "146562", + "1466", + "146664", + "146691", + "146705", + "146712", + "146713", + "146722", + "146754", + "146760", + "146779", + "1468", + "146802", + "146822", + "146845", + "146849", + "146850", + "146852", + "146853", + "146857", + "146861", + "146862", + "146894", + "1469", + "146909", + "146923", + "146956", + "147", + "1470", + "147007", + "147011", + "147015", + "147040", + "1471", + "147111", + "147138", + "147179", + "147183", + "147199", + "1472", + "1473", + "147323", + "147339", + "147372", + "147381", + "1474", + "147407", + "147409", + "147463", + "147495", + "1475", + "1476", + "147645", + "147650", + "147657", + "147658", + "147660", + "147664", + "147670", + "147685", + "147686", + "147687", + "147694", + "147699", + "1477", + "147700", + "147710", + "147719", + "147741", + "147744", + "147746", + "147798", + "1478", + "147807", + "147808", + "147837", + "147841", + "147872", + "1479", + "147906", + "147912", + "147920", + "147923", + "147929", + "147945", + "147948", + "147949", + "147965", + "147968", + "147991", + "148", + "148003", + "148014", + "148022", + "148066", + "148103", + "148109", + "148113", + "148137", + "148156", + "148170", + "148198", + "1482", + "148203", + "148206", + "148213", + "148223", + "148229", + "148252", + "148254", + "148266", + "148268", + "148281", + "148304", + "148327", + "148345", + "148362", + "148398", + "148418", + "148423", + "148479", + "1485", + "148523", + "148534", + "148545", + "148581", + "1486", + "148641", + "1487", + "148738", + "148741", + "148753", + "148789", + "1488", + "148808", + "148811", + "148823", + "148867", + "148870", + "1489", + "148930", + "148932", + "148979", + "1490", + "149013", + "149018", + "149041", + "149069", + "149076", + "149095", + "1491", + "149111", + "149175", + "149233", + "149281", + "149297", + "1493", + "149345", + "149371", + "149420", + "149428", + "149461", + "149465", + "149466", + "149473", + "149478", + "149483", + "149499", + "1495", + "149563", + "1496", + "149603", + "149628", + "149643", + "149647", + "149685", + "149699", + "1497", + "149708", + "149840", + "1499", + "149951", + "149954", + "149986", + "15", + "150", + "1500", + "150082", + "150084", + "150094", + "1501", + "150159", + "150160", + "150165", + "150209", + "150221", + "150223", + "150248", + "150274", + "150275", + "150280", + "150290", + "150297", + "1503", + "150350", + "150353", + "150356", + "150365", + "150368", + "150372", + "150379", + "150383", + "1504", + "150465", + "150468", + "150472", + "150483", + "150572", + "150590", + "1506", + "150677", + "150678", + "150681", + "150684", + "150696", + "150709", + "150726", + "150737", + "150763", + "150771", + "150786", + "1508", + "150864", + "1509", + "150921", + "150946", + "150962", + "151", + "1510", + "151011", + "151050", + "151056", + "1511", + "151112", + "151126", + "151176", + "151188", + "151194", + "151195", + "1512", + "151230", + "151242", + "151246", + "151254", + "151258", + "151295", + "1513", + "151306", + "151313", + "151354", + "151393", + "1514", + "151449", + "151473", + "1515", + "151516", + "151525", + "151531", + "151556", + "151613", + "151636", + "151647", + "151648", + "151649", + "151651", + "151742", + "151790", + "151827", + "151835", + "151871", + "151887", + "151888", + "1519", + "151903", + "151963", + "151987", + "152", + "1520", + "152002", + "152006", + "152007", + "152015", + "152065", + "152098", + "1521", + "152100", + "152110", + "152137", + "152138", + "152185", + "152189", + "1522", + "152206", + "152217", + "152273", + "1523", + "152330", + "1524", + "152404", + "152405", + "152485", + "1525", + "152518", + "152519", + "152559", + "152573", + "152579", + "152586", + "152687", + "1527", + "152789", + "1528", + "152815", + "152816", + "152831", + "152877", + "152926", + "152940", + "152992", + "153", + "153020", + "153090", + "153129", + "153201", + "153218", + "153222", + "153241", + "153328", + "153339", + "153364", + "153396", + "1534", + "153443", + "153478", + "1535", + "153527", + "153562", + "153572", + "153579", + "1536", + "153642", + "153643", + "153657", + "1537", + "153733", + "153743", + "153745", + "153768", + "153769", + "153770", + "1538", + "153830", + "1539", + "153918", + "154", + "1540", + "154007", + "154043", + "154064", + "154075", + "154091", + "154141", + "154150", + "154197", + "154214", + "154215", + "154288", + "1543", + "154313", + "1544", + "154467", + "1545", + "154661", + "154664", + "154743", + "154790", + "154791", + "154796", + "1548", + "154807", + "154810", + "154865", + "154881", + "1549", + "155", + "155006", + "155038", + "155051", + "155054", + "155061", + "155066", + "1551", + "155184", + "155185", + "1553", + "155368", + "155382", + "155435", + "155465", + "1555", + "1557", + "1558", + "1559", + "156", + "1562", + "1565", + "157", + "1571", + "1572", + "157285", + "1573", + "157310", + "157313", + "157378", + "157506", + "157567", + "157570", + "157574", + "1576", + "157638", + "157657", + "157680", + "157695", + "157697", + "1577", + "157724", + "157753", + "157769", + "157773", + "157777", + "157807", + "157848", + "157855", + "157869", + "1579", + "157922", + "158", + "1580", + "158038", + "158046", + "158056", + "158062", + "158067", + "1581", + "158131", + "158135", + "158158", + "1582", + "158219", + "158234", + "158248", + "158293", + "158297", + "1583", + "158358", + "158376", + "158399", + "1584", + "158401", + "158405", + "158427", + "158431", + "158471", + "1585", + "158506", + "158511", + "158521", + "158584", + "158586", + "1586", + "158724", + "158747", + "158763", + "158787", + "158798", + "1588", + "158800", + "158809", + "158830", + "158833", + "158835", + "158866", + "158880", + "1589", + "158931", + "158983", + "159", + "159013", + "159090", + "159091", + "1591", + "159119", + "159163", + "159195", + "1592", + "159296", + "1593", + "159371", + "1594", + "1595", + "159686", + "159963", + "159989", + "16", + "160", + "1600", + "160065", + "1601", + "160140", + "1602", + "160287", + "160298", + "1603", + "160335", + "160364", + "1604", + "160418", + "160419", + "160428", + "160492", + "160518", + "1606", + "160622", + "1607", + "160728", + "160760", + "160762", + "160777", + "1608", + "160851", + "160857", + "160897", + "1609", + "161", + "1610", + "161003", + "1611", + "161142", + "161145", + "161176", + "161198", + "1612", + "161247", + "161253", + "161291", + "1613", + "161394", + "161424", + "161436", + "161497", + "1615", + "161502", + "161514", + "161582", + "1616", + "1617", + "161725", + "161742", + "161753", + "161779", + "1618", + "161823", + "161829", + "161835", + "161882", + "161931", + "162", + "1620", + "162073", + "162083", + "1621", + "1622", + "162239", + "162282", + "162333", + "162387", + "162394", + "162417", + "162427", + "162461", + "162466", + "162494", + "162514", + "162517", + "162540", + "162605", + "162655", + "162681", + "1627", + "1628", + "1629", + "162962", + "162963", + "162966", + "162967", + "162968", + "162979", + "162989", + "162993", + "162998", + "163", + "1630", + "163033", + "163049", + "163050", + "163051", + "163059", + "163071", + "163081", + "163087", + "163126", + "163131", + "163154", + "163175", + "163183", + "1632", + "163223", + "163227", + "163255", + "163259", + "1633", + "163351", + "1634", + "163404", + "163479", + "163486", + "1635", + "163589", + "163590", + "1636", + "163688", + "163702", + "163732", + "163747", + "163778", + "163782", + "163786", + "1638", + "163859", + "163882", + "1639", + "163933", + "164", + "164045", + "164091", + "1641", + "164118", + "164127", + "164153", + "1642", + "164237", + "164284", + "1643", + "164312", + "164395", + "1644", + "1645", + "164592", + "1646", + "164633", + "164656", + "164668", + "164684", + "1647", + "164714", + "164781", + "164832", + "1649", + "165", + "1650", + "165055", + "165082", + "165100", + "165140", + "165186", + "1652", + "165215", + "165257", + "1653", + "165324", + "1654", + "1655", + "165530", + "165545", + "1656", + "165631", + "165679", + "1657", + "165721", + "165829", + "1659", + "165904", + "165918", + "166", + "1660", + "166012", + "1662", + "1663", + "166336", + "166348", + "166378", + "166379", + "1665", + "1666", + "166614", + "166647", + "166655", + "1667", + "166752", + "166785", + "166793", + "1668", + "166815", + "166824", + "166863", + "1669", + "166929", + "166968", + "166979", + "167", + "1670", + "1671", + "167127", + "167153", + "1672", + "167227", + "1673", + "167359", + "1674", + "167410", + "167465", + "1675", + "167555", + "1676", + "167681", + "167691", + "1677", + "1678", + "167826", + "167838", + "168002", + "168090", + "168374", + "168400", + "168417", + "168433", + "168451", + "168455", + "168507", + "168537", + "168544", + "168620", + "168667", + "1687", + "168850", + "168975", + "1690", + "169026", + "169044", + "169166", + "169200", + "169270", + "169355", + "169436", + "169522", + "169611", + "169693", + "169714", + "169792", + "169841", + "169966", + "169981", + "170062", + "170082", + "170261", + "170302", + "170370", + "170371", + "170384", + "170392", + "170394", + "170463", + "170482", + "170506", + "170572", + "170575", + "170589", + "170591", + "170622", + "170626", + "170679", + "170680", + "170685", + "170689", + "170690", + "170691", + "170692", + "170712", + "170825", + "170850", + "170954", + "170958", + "170959", + "170960", + "170961", + "171017", + "171019", + "171023", + "171024", + "171169", + "171177", + "171222", + "171389", + "171392", + "171425", + "171482", + "171483", + "171484", + "171546", + "171558", + "171568", + "171586", + "1716", + "1717", + "1718", + "1719", + "1723", + "1725", + "1727", + "1728", + "1729", + "173", + "1730", + "1731", + "1733", + "1734", + "1735", + "1736", + "1737", + "1738", + "1739", + "174", + "1740", + "1741", + "1742", + "1743", + "1745", + "1746", + "1747", + "1748", + "1749", + "175", + "1750", + "1755", + "1756", + "1757", + "1758", + "1759", + "176", + "1760", + "1761", + "1762", + "1763", + "1767", + "1768", + "1769", + "177", + "1770", + "1773", + "1774", + "1775", + "1776", + "1777", + "1778", + "178", + "1780", + "1781", + "1783", + "1785", + "1786", + "1787", + "1788", + "1789", + "1791", + "1793", + "1794", + "1795", + "1796", + "1797", + "1798", + "18", + "1800", + "1801", + "1802", + "1803", + "1804", + "1805", + "1806", + "1807", + "1808", + "1809", + "181", + "1810", + "1811", + "1812", + "1813", + "1814", + "1815", + "1816", + "1819", + "182", + "1820", + "1821", + "1822", + "1823", + "1824", + "1825", + "1826", + "1827", + "1828", + "1829", + "183", + "1830", + "1831", + "1832", + "1833", + "1834", + "1836", + "1837", + "1838", + "1839", + "1840", + "1841", + "1842", + "1843", + "1844", + "1845", + "1846", + "1847", + "1848", + "1849", + "185", + "1850", + "1852", + "1854", + "1855", + "1856", + "1857", + "186", + "1861", + "1869", + "187", + "1870", + "1871", + "1874", + "1875", + "1876", + "1877", + "1879", + "1880", + "1889", + "189", + "1890", + "1891", + "1892", + "1893", + "1894", + "1896", + "19", + "190", + "1901", + "1902", + "1903", + "1906", + "1907", + "1908", + "1909", + "191", + "1910", + "1911", + "1912", + "1915", + "1917", + "192111", + "192134", + "192286", + "192666", + "192668", + "192669", + "192670", + "192683", + "1936", + "1937", + "1938", + "1939", + "1942", + "1943", + "1944", + "1945", + "1946", + "1947", + "1948", + "1949", + "1950", + "1951", + "1952", + "1953", + "1954", + "1955", + "1956", + "1958", + "195814", + "195827", + "195828", + "1959", + "195977", + "196", + "1960", + "196051", + "196074", + "1961", + "196120", + "1962", + "196264", + "196294", + "196335", + "196374", + "196383", + "196385", + "196394", + "1964", + "196403", + "196410", + "196441", + "196446", + "196463", + "196472", + "196477", + "196483", + "1965", + "196500", + "196513", + "196527", + "196528", + "196541", + "1967", + "196740", + "196743", + "196792", + "1968", + "196883", + "1969", + "196951", + "196996", + "197", + "197021", + "197131", + "197135", + "197257", + "197258", + "197259", + "1973", + "197320", + "197322", + "197335", + "197342", + "197358", + "197370", + "1974", + "197407", + "1975", + "1977", + "1978", + "1979", + "1981", + "1982", + "1983", + "1984", + "198437", + "199", + "1990", + "1991", + "1992", + "199221", + "199223", + "1993", + "1994", + "1995", + "1996", + "199675", + "199692", + "199699", + "1997", + "199704", + "199713", + "199720", + "199731", + "199745", + "199746", + "199777", + "199786", + "1998", + "199800", + "199834", + "199857", + "199870", + "1999", + "199920", + "199953", + "199964", + "199974", + "199990", + "2", + "20", + "2000", + "200008", + "200010", + "200014", + "200030", + "200035", + "200081", + "2001", + "200132", + "200150", + "200159", + "200162", + "200172", + "200185", + "200186", + "2002", + "200205", + "200232", + "200312", + "200315", + "200316", + "200350", + "200373", + "2004", + "200403", + "200407", + "200424", + "2005", + "200504", + "200523", + "200539", + "200558", + "200576", + "200634", + "200726", + "200728", + "200734", + "200765", + "200844", + "200845", + "200879", + "200894", + "200895", + "2009", + "200909", + "200916", + "200931", + "200933", + "200942", + "200958", + "2010", + "2011", + "201134", + "201140", + "201158", + "201161", + "201163", + "201164", + "201191", + "2012", + "201229", + "201232", + "201243", + "201254", + "201255", + "201266", + "201292", + "201294", + "201299", + "2013", + "201305", + "2014", + "201456", + "2015", + "201501", + "201514", + "201516", + "201562", + "201595", + "2016", + "201625", + "201626", + "201627", + "201633", + "2017", + "201725", + "201780", + "201798", + "201799", + "2018", + "201895", + "2019", + "201931", + "201965", + "201973", + "2020", + "202018", + "202051", + "202052", + "2021", + "202151", + "2022", + "202243", + "2023", + "202309", + "202333", + "202374", + "202500", + "202559", + "2026", + "202658", + "2027", + "2028", + "202865", + "2029", + "202915", + "203", + "2030", + "203054", + "203062", + "203068", + "203069", + "203074", + "203076", + "203100", + "203102", + "203111", + "203190", + "203197", + "203228", + "203238", + "203245", + "203259", + "203260", + "203286", + "2033", + "203328", + "2034", + "203413", + "203427", + "203430", + "203447", + "2035", + "203522", + "203523", + "203547", + "203562", + "203569", + "2036", + "2037", + "2038", + "203859", + "2039", + "204", + "2040", + "2041", + "2042", + "204219", + "2043", + "2044", + "204474", + "2045", + "2046", + "2047", + "2048", + "204801", + "204851", + "2049", + "204962", + "205", + "2050", + "2051", + "2052", + "205251", + "2053", + "205327", + "2054", + "205428", + "2055", + "205564", + "2056", + "2057", + "205717", + "2058", + "205860", + "2059", + "2060", + "2063", + "206338", + "206358", + "2064", + "206412", + "2065", + "2066", + "2067", + "2068", + "2069", + "207", + "2070", + "207063", + "2071", + "2072", + "2073", + "2074", + "2077", + "2078", + "2079", + "208", + "2081", + "2086", + "2091", + "2098", + "2099", + "21", + "210", + "2100", + "2101", + "2103", + "2104", + "2107", + "2108", + "2109", + "211", + "2110", + "2113", + "2114", + "2115", + "2116", + "2117", + "2118", + "2119", + "212", + "2120", + "2121", + "2122", + "2123", + "2124", + "2125", + "2128", + "213", + "2130", + "2131", + "2132", + "2134", + "2135", + "2137", + "2138", + "2139", + "214", + "2140", + "2145", + "2146", + "2147", + "2149", + "215", + "2150", + "2151", + "2152", + "2153", + "2155", + "2157", + "2158", + "2159", + "216", + "2160", + "2161", + "2162", + "2165", + "2166", + "2167", + "2168", + "2169", + "217", + "2170", + "2171", + "2172", + "2173", + "2175", + "2176", + "2177", + "2178", + "218", + "2180", + "2181", + "2182", + "2184", + "2185", + "2186", + "2187", + "2188", + "2189", + "219", + "2191", + "2192", + "219285", + "219287", + "219293", + "2193", + "219333", + "219348", + "2194", + "219402", + "219409", + "219417", + "219428", + "219429", + "219431", + "219436", + "219437", + "219438", + "219447", + "219453", + "219469", + "219473", + "219477", + "219479", + "219482", + "219484", + "219487", + "219493", + "2195", + "219527", + "219537", + "219539", + "219557", + "219578", + "2196", + "219621", + "219623", + "219654", + "219670", + "219681", + "219699", + "2197", + "219736", + "219738", + "219743", + "219749", + "219770", + "219771", + "219790", + "219793", + "219844", + "219854", + "219855", + "219858", + "219869", + "219870", + "219874", + "219875", + "219899", + "2199", + "219902", + "219927", + "219931", + "219938", + "219952", + "219954", + "219956", + "219957", + "219960", + "219965", + "219968", + "219970", + "219972", + "219981", + "219982", + "219983", + "219986", + "219988", + "219990", + "219995", + "22", + "220", + "2200", + "220001", + "220002", + "220004", + "220032", + "220042", + "220047", + "220064", + "220074", + "220081", + "220082", + "2201", + "220107", + "220108", + "220134", + "220136", + "220164", + "2202", + "220202", + "220213", + "220296", + "2203", + "220323", + "220359", + "220382", + "220388", + "2204", + "220416", + "220441", + "2205", + "2206", + "2207", + "2208", + "220869", + "2209", + "220929", + "220963", + "220965", + "220972", + "220988", + "220992", + "221", + "221002", + "221035", + "221037", + "221044", + "221061", + "221074", + "221078", + "221079", + "221091", + "221092", + "221120", + "221143", + "221150", + "221154", + "221178", + "221184", + "221188", + "221191", + "2212", + "221223", + "221264", + "221294", + "2213", + "221301", + "221302", + "221303", + "221322", + "221336", + "221357", + "221391", + "221393", + "221395", + "221400", + "221409", + "221421", + "221424", + "221443", + "221458", + "221468", + "221472", + "221476", + "221477", + "221481", + "221491", + "221496", + "221504", + "221527", + "221545", + "221613", + "221656", + "221662", + "221687", + "221692", + "2217", + "221710", + "221711", + "221749", + "221785", + "221786", + "2218", + "221806", + "221823", + "221830", + "221833", + "221895", + "2219", + "221908", + "221914", + "221927", + "221935", + "221937", + "221938", + "221955", + "221960", + "221981", + "222", + "2220", + "222008", + "222068", + "222166", + "222171", + "222183", + "222194", + "2222", + "222223", + "222229", + "222234", + "222235", + "222236", + "222255", + "222256", + "222389", + "2224", + "222484", + "222487", + "222537", + "222545", + "222546", + "222553", + "222584", + "222642", + "222643", + "222658", + "222659", + "222662", + "222663", + "222696", + "222698", + "222826", + "222865", + "222894", + "222950", + "222962", + "222967", + "223", + "2230", + "223082", + "223117", + "2232", + "2235", + "2237", + "2239", + "224", + "2241", + "2242", + "2243", + "2244", + "2245", + "2246", + "2247", + "2248", + "2249", + "225", + "2250", + "2251", + "2252", + "2253", + "2254", + "2255", + "2256", + "225689", + "2257", + "2258", + "2259", + "226", + "2260", + "2261", + "2262", + "2263", + "2264", + "2266", + "2267", + "2268", + "2271", + "2272", + "2273", + "2274", + "2275", + "2277", + "22794", + "22795", + "22796", + "22797", + "22798", + "2280", + "22800", + "22801", + "22802", + "22803", + "22806", + "22807", + "22808", + "22809", + "2281", + "22818", + "22820", + "22821", + "22822", + "22823", + "22824", + "22826", + "22827", + "22828", + "22829", + "22832", + "22834", + "22835", + "22836", + "22837", + "22838", + "22839", + "22841", + "22843", + "22844", + "22845", + "22846", + "22847", + "22848", + "22849", + "22850", + "22852", + "22853", + "22854", + "22856", + "22858", + "22859", + "22861", + "22862", + "22863", + "22864", + "22865", + "22866", + "22868", + "22869", + "2287", + "22870", + "22871", + "22872", + "22873", + "22874", + "22875", + "22876", + "22877", + "22878", + "22879", + "2288", + "22880", + "22881", + "22882", + "22883", + "22884", + "22885", + "22887", + "22888", + "22889", + "2289", + "22890", + "22893", + "22894", + "22895", + "22897", + "22898", + "22899", + "229", + "2290", + "22900", + "22901", + "22902", + "22903", + "22904", + "22905", + "22906", + "22907", + "22909", + "22911", + "22913", + "22914", + "22915", + "22916", + "22917", + "22918", + "22919", + "22920", + "22921", + "22924", + "22925", + "22926", + "22927", + "22928", + "22929", + "22930", + "22931", + "22932", + "22933", + "22934", + "22936", + "22937", + "22938", + "2294", + "22941", + "22943", + "22944", + "22948", + "22949", + "2295", + "22953", + "22954", + "22955", + "2296", + "2297", + "22974", + "22976", + "22977", + "22978", + "22979", + "2298", + "22980", + "22981", + "22982", + "22983", + "22984", + "22985", + "22986", + "22987", + "22989", + "2299", + "22990", + "22992", + "22993", + "22994", + "22995", + "22996", + "22997", + "22998", + "22999", + "23", + "230", + "2300", + "23001", + "23002", + "23005", + "23007", + "23008", + "2301", + "23011", + "23012", + "23013", + "23014", + "23015", + "23016", + "23017", + "23019", + "2302", + "23020", + "23022", + "23023", + "23024", + "23025", + "23026", + "23028", + "23029", + "2303", + "23030", + "23031", + "23032", + "23033", + "23034", + "23035", + "23036", + "23037", + "23038", + "23039", + "2304", + "23040", + "23041", + "23042", + "23043", + "23046", + "23047", + "23048", + "23049", + "2305", + "23051", + "23052", + "23053", + "23054", + "23057", + "23059", + "2306", + "23060", + "23061", + "23062", + "23063", + "23064", + "23065", + "23066", + "23067", + "2307", + "23070", + "23071", + "23072", + "23074", + "23075", + "23076", + "23077", + "23078", + "2308", + "23080", + "23081", + "23082", + "23085", + "23086", + "23087", + "23089", + "2309", + "23090", + "23091", + "23092", + "23093", + "23094", + "23095", + "23096", + "23097", + "23098", + "23099", + "231", + "2310", + "23101", + "23102", + "23105", + "23107", + "23108", + "23109", + "23111", + "23112", + "23113", + "23114", + "23116", + "23117", + "23118", + "23119", + "2312", + "23120", + "23122", + "23125", + "23126", + "23127", + "23129", + "2313", + "23130", + "23131", + "23132", + "23133", + "23135", + "23136", + "23137", + "23138", + "23139", + "2314", + "23140", + "23141", + "23142", + "23143", + "23144", + "23148", + "23149", + "2315", + "23150", + "23151", + "23152", + "23154", + "23155", + "23157", + "23158", + "2316", + "23160", + "23161", + "23162", + "23163", + "23164", + "23165", + "23166", + "23167", + "23168", + "23169", + "2317", + "23170", + "23171", + "23172", + "23173", + "23174", + "23175", + "23176", + "23177", + "23178", + "23179", + "2318", + "23180", + "23181", + "23184", + "23185", + "23186", + "23187", + "23189", + "2319", + "23190", + "23191", + "23192", + "23193", + "23194", + "23195", + "23196", + "23197", + "23198", + "23199", + "23200", + "23201", + "23203", + "23204", + "23205", + "23207", + "23208", + "23209", + "2321", + "23210", + "23211", + "23212", + "23213", + "23214", + "23215", + "23216", + "23217", + "23218", + "23219", + "2322", + "23220", + "23221", + "23223", + "23224", + "23225", + "23228", + "23229", + "2323", + "23230", + "23231", + "23232", + "23233", + "23234", + "23235", + "23236", + "23237", + "23239", + "2324", + "23240", + "23241", + "23242", + "23243", + "23244", + "23245", + "23246", + "23247", + "23248", + "23250", + "23251", + "23252", + "23253", + "23254", + "23255", + "23256", + "23258", + "23259", + "2326", + "23261", + "23262", + "23263", + "23264", + "23265", + "23266", + "23268", + "23269", + "2327", + "23270", + "23271", + "23272", + "23274", + "23275", + "23276", + "23277", + "23279", + "2328", + "23283", + "23284", + "23286", + "23287", + "23288", + "2329", + "23291", + "23293", + "23294", + "23295", + "23299", + "2330", + "23300", + "23301", + "23302", + "23303", + "23304", + "23305", + "23306", + "23307", + "23308", + "23309", + "2331", + "23310", + "23312", + "23313", + "23314", + "23315", + "23316", + "23317", + "23318", + "2332", + "23321", + "23322", + "23324", + "23325", + "23326", + "23327", + "23328", + "23329", + "23331", + "23332", + "23333", + "23334", + "23335", + "23336", + "23338", + "23339", + "2334", + "23341", + "23344", + "23345", + "23347", + "23348", + "23349", + "2335", + "23350", + "23351", + "23352", + "23353", + "23354", + "23355", + "23357", + "23358", + "23359", + "23360", + "23361", + "23362", + "23363", + "23365", + "23366", + "23367", + "23368", + "23369", + "23370", + "23371", + "23373", + "23376", + "23378", + "23379", + "23380", + "23381", + "23382", + "23383", + "23384", + "23385", + "23386", + "23387", + "23389", + "2339", + "23390", + "23392", + "23394", + "23395", + "23396", + "23397", + "23398", + "23399", + "23400", + "23401", + "23403", + "23404", + "23405", + "23406", + "23408", + "23409", + "23410", + "23411", + "23412", + "23413", + "23414", + "23415", + "23416", + "23417", + "23418", + "2342", + "23420", + "23421", + "23423", + "23424", + "23426", + "23428", + "23429", + "23430", + "23431", + "23432", + "23433", + "23435", + "23436", + "23438", + "23439", + "23440", + "23443", + "23446", + "23450", + "23451", + "23452", + "23456", + "23457", + "2346", + "23460", + "23461", + "23462", + "23463", + "23464", + "23466", + "23467", + "23468", + "23469", + "23471", + "23473", + "23474", + "23475", + "23476", + "23478", + "23479", + "2348", + "23480", + "23481", + "23483", + "23484", + "23491", + "23492", + "23493", + "23495", + "23498", + "23499", + "2350", + "23500", + "23503", + "23504", + "23505", + "23506", + "23507", + "23508", + "23509", + "23510", + "23511", + "23512", + "23513", + "23514", + "23515", + "23516", + "23517", + "23518", + "23519", + "2352", + "23521", + "23522", + "23523", + "23524", + "23526", + "23527", + "23528", + "23529", + "2353", + "23530", + "23531", + "23532", + "23533", + "23534", + "23536", + "23538", + "23539", + "2354", + "23541", + "23542", + "23543", + "23544", + "23545", + "23546", + "23547", + "23548", + "23549", + "2355", + "23550", + "23551", + "23552", + "23553", + "23554", + "23555", + "23556", + "23557", + "23558", + "23559", + "2356", + "23560", + "23562", + "23563", + "23564", + "23566", + "23567", + "23568", + "23569", + "2357", + "23576", + "2358", + "23580", + "23581", + "23582", + "23583", + "23584", + "23585", + "23586", + "23587", + "23588", + "23589", + "2359", + "23590", + "23592", + "23593", + "23594", + "23595", + "23596", + "23597", + "23598", + "23600", + "23601", + "23603", + "23604", + "23607", + "23608", + "23609", + "23612", + "23613", + "23616", + "23617", + "23619", + "23620", + "23621", + "23623", + "23624", + "23625", + "23626", + "23627", + "23630", + "23632", + "23633", + "23635", + "23636", + "23637", + "23639", + "23640", + "23641", + "23643", + "23644", + "23645", + "23646", + "23647", + "23649", + "23650", + "23654", + "23657", + "23658", + "23659", + "23660", + "23670", + "23671", + "23673", + "23676", + "23677", + "23678", + "23682", + "23683", + "23704", + "23705", + "23708", + "23710", + "23729", + "23731", + "23732", + "23741", + "23742", + "23743", + "23746", + "23753", + "23759", + "23760", + "23761", + "23762", + "23764", + "23765", + "23767", + "23768", + "23769", + "23770", + "23774", + "23779", + "23780", + "23784", + "23786", + "23787", + "23788", + "238", + "239", + "2395", + "24", + "240", + "241", + "24137", + "24138", + "24139", + "24140", + "24141", + "24142", + "24144", + "24145", + "24146", + "24147", + "24148", + "24149", + "24150", + "242", + "2444", + "245711", + "245802", + "245806", + "245812", + "245908", + "245909", + "245910", + "245911", + "245913", + "245927", + "245928", + "245929", + "245930", + "245932", + "245934", + "245936", + "245937", + "245938", + "245939", + "245940", + "245972", + "245973", + "246", + "246100", + "246175", + "246176", + "246184", + "246213", + "246243", + "246269", + "246329", + "246330", + "246721", + "246744", + "246777", + "246778", + "247", + "2475", + "248", + "2483", + "2487", + "2488", + "249", + "2491", + "2492", + "2494", + "2495", + "25", + "250", + "251", + "2512", + "2515", + "2516", + "2517", + "2519", + "2520", + "2521", + "2524", + "2525", + "2526", + "2527", + "2528", + "252839", + "252884", + "2529", + "252969", + "252983", + "252995", + "2530", + "253012", + "253017", + "2531", + "253143", + "253152", + "253175", + "253190", + "2532", + "253260", + "2533", + "253314", + "2534", + "253430", + "253461", + "2535", + "253512", + "253558", + "253559", + "253582", + "253639", + "253650", + "2537", + "253714", + "253725", + "253738", + "253769", + "253782", + "2538", + "253827", + "253832", + "2539", + "253935", + "253943", + "253959", + "253980", + "253982", + "254013", + "254042", + "254048", + "254050", + "254065", + "254102", + "254122", + "254158", + "254170", + "254173", + "254187", + "2542", + "254225", + "254228", + "254240", + "254251", + "254263", + "254268", + "254272", + "254295", + "254359", + "254394", + "254427", + "254428", + "254439", + "254528", + "254531", + "254552", + "2547", + "254773", + "254778", + "254786", + "2548", + "254827", + "254863", + "254879", + "2549", + "254910", + "254950", + "254956", + "254973", + "2550", + "255022", + "255027", + "255043", + "255057", + "255061", + "2551", + "255101", + "255104", + "255119", + "255189", + "255220", + "255231", + "255239", + "255252", + "255275", + "2553", + "255308", + "255313", + "255324", + "255349", + "255374", + "255394", + "2554", + "255403", + "255411", + "255426", + "255488", + "2555", + "255520", + "2556", + "255626", + "255631", + "255649", + "2557", + "255725", + "255738", + "255743", + "255758", + "255762", + "255783", + "255798", + "2558", + "255809", + "255877", + "2559", + "255919", + "255967", + "2560", + "256006", + "256051", + "2561", + "256126", + "256130", + "256148", + "256158", + "2562", + "256223", + "256227", + "256281", + "256297", + "2563", + "256302", + "256309", + "256329", + "256356", + "256364", + "256369", + "256380", + "256394", + "2564", + "256435", + "256471", + "256472", + "2565", + "256536", + "256586", + "2566", + "256643", + "256646", + "256691", + "2567", + "256710", + "256714", + "256764", + "2568", + "256815", + "2569", + "256933", + "256949", + "256957", + "256979", + "256987", + "257", + "2570", + "257000", + "257019", + "257044", + "257062", + "257068", + "2571", + "257101", + "257106", + "257144", + "257160", + "257169", + "257177", + "257194", + "2572", + "257202", + "257218", + "257236", + "257240", + "257313", + "257364", + "257397", + "257407", + "257415", + "25758", + "25759", + "257629", + "25763", + "25764", + "25766", + "25769", + "25770", + "25771", + "25774", + "25777", + "25778", + "25780", + "25782", + "25788", + "25789", + "25790", + "25791", + "25792", + "25793", + "25794", + "25796", + "25797", + "25798", + "25799", + "258", + "2580", + "25800", + "25801", + "258010", + "25802", + "25803", + "25804", + "25805", + "25806", + "25807", + "25809", + "2581", + "25813", + "25814", + "25816", + "25817", + "25818", + "25819", + "2582", + "25820", + "25821", + "25822", + "25823", + "25824", + "25825", + "25827", + "25828", + "25829", + "2583", + "25830", + "25831", + "25832", + "25833", + "25834", + "25836", + "25837", + "25839", + "2584", + "25840", + "25841", + "25842", + "25843", + "25844", + "25847", + "25849", + "2585", + "25850", + "25851", + "25852", + "25853", + "25854", + "25855", + "25858", + "25861", + "25862", + "25864", + "25865", + "2587", + "25870", + "25871", + "25873", + "25874", + "25875", + "25876", + "25878", + "25879", + "2588", + "25880", + "25884", + "25885", + "25886", + "25888", + "2589", + "25890", + "25891", + "25893", + "25894", + "25895", + "25896", + "25897", + "25898", + "259", + "2590", + "25900", + "25902", + "25903", + "25904", + "25906", + "25907", + "25909", + "2591", + "25911", + "25912", + "25913", + "25914", + "25915", + "25917", + "259173", + "259197", + "2592", + "25920", + "25921", + "259215", + "259217", + "25923", + "259230", + "259232", + "259236", + "259239", + "25924", + "259240", + "259249", + "25925", + "25926", + "259266", + "25927", + "25928", + "259282", + "259285", + "259286", + "259287", + "259289", + "25929", + "259290", + "259292", + "259293", + "259294", + "259295", + "259296", + "2593", + "25930", + "259307", + "259308", + "25932", + "25934", + "25936", + "25937", + "25938", + "25939", + "25940", + "25941", + "25942", + "25943", + "25945", + "25946", + "25948", + "25949", + "2595", + "25950", + "25953", + "25956", + "25957", + "25959", + "2596", + "25960", + "25961", + "25962", + "25963", + "25966", + "2597", + "25970", + "25972", + "25973", + "25974", + "25975", + "25976", + "25977", + "25978", + "25979", + "25980", + "25981", + "25983", + "25984", + "25987", + "25988", + "25989", + "25992", + "25994", + "25998", + "25999", + "26", + "26000", + "26001", + "26002", + "26003", + "26005", + "26007", + "26009", + "26010", + "26011", + "26012", + "26013", + "26015", + "26017", + "26018", + "26019", + "26020", + "26022", + "26024", + "26025", + "26027", + "260293", + "26030", + "26031", + "26032", + "26033", + "260334", + "26034", + "26035", + "26036", + "26037", + "26038", + "26039", + "26040", + "260425", + "260429", + "26043", + "260434", + "260436", + "26045", + "26046", + "26047", + "26048", + "26049", + "26050", + "26051", + "26052", + "26053", + "26054", + "26056", + "26057", + "26058", + "26059", + "26060", + "26061", + "26063", + "26064", + "26065", + "26071", + "26073", + "26074", + "26084", + "26085", + "26086", + "26088", + "26090", + "26091", + "26092", + "26093", + "26094", + "26095", + "26097", + "26098", + "26099", + "26100", + "26103", + "26108", + "26112", + "26115", + "26118", + "26119", + "26121", + "26122", + "26123", + "26127", + "26128", + "26130", + "26133", + "26135", + "26136", + "26137", + "26140", + "26145", + "26146", + "26147", + "26149", + "2615", + "26150", + "26151", + "26152", + "26153", + "26154", + "26155", + "26156", + "26157", + "26160", + "26164", + "26165", + "26166", + "26167", + "26168", + "2617", + "261726", + "261729", + "26173", + "261734", + "26175", + "2618", + "26188", + "26189", + "2619", + "26190", + "26191", + "2620", + "26205", + "26206", + "26207", + "2621", + "26211", + "26212", + "26219", + "2622", + "26224", + "26225", + "26227", + "26228", + "26229", + "2623", + "26230", + "26232", + "26233", + "26234", + "26235", + "26239", + "2624", + "26240", + "26245", + "26246", + "26248", + "26249", + "2625", + "26251", + "26253", + "26254", + "26256", + "26257", + "26258", + "26259", + "2626", + "26260", + "26261", + "26262", + "26263", + "26266", + "26267", + "26268", + "26269", + "2627", + "26270", + "26271", + "26272", + "26273", + "26275", + "26276", + "26277", + "26278", + "26279", + "2628", + "26280", + "26281", + "26284", + "26285", + "26286", + "26287", + "26289", + "2629", + "26290", + "26291", + "26292", + "26297", + "26298", + "26301", + "2631", + "2632", + "2633", + "26330", + "26333", + "26338", + "26339", + "2634", + "26341", + "2635", + "26353", + "26354", + "26355", + "2636", + "2637", + "2638", + "2639", + "2641", + "2642", + "2644", + "2645", + "2646", + "26468", + "26469", + "2647", + "26470", + "26471", + "26472", + "26476", + "2648", + "2649", + "26493", + "26494", + "26496", + "26497", + "26499", + "265", + "2650", + "26502", + "26503", + "26504", + "26505", + "26507", + "26508", + "26509", + "2651", + "26511", + "26512", + "26515", + "26517", + "26519", + "2652", + "26520", + "26521", + "26523", + "26524", + "26525", + "26526", + "26528", + "26529", + "2653", + "26531", + "26532", + "26533", + "26534", + "26538", + "26539", + "26548", + "2657", + "26574", + "26575", + "26576", + "26577", + "26578", + "26579", + "2658", + "26580", + "26585", + "26586", + "26589", + "26595", + "266", + "2660", + "26608", + "26609", + "2661", + "26610", + "2662", + "2664", + "26648", + "2665", + "26658", + "26659", + "266629", + "26664", + "266655", + "266675", + "266722", + "266727", + "266740", + "266743", + "266747", + "2668", + "266812", + "26683", + "26686", + "26687", + "26689", + "2669", + "26692", + "26693", + "266977", + "267", + "2670", + "267002", + "267012", + "267020", + "26707", + "2671", + "26716", + "2672", + "2673", + "26735", + "26737", + "2674", + "26740", + "26747", + "2675", + "26750", + "26751", + "2676", + "2677", + "2678", + "268", + "2683", + "2686", + "2687", + "26872", + "26873", + "2688", + "2689", + "269", + "2690", + "2691", + "2692", + "2693", + "2694", + "2695", + "26952", + "26953", + "26958", + "26959", + "2696", + "26960", + "2697", + "26973", + "26974", + "26984", + "26985", + "26986", + "26993", + "26994", + "26995", + "26996", + "26998", + "26999", + "27", + "270", + "2700", + "27000", + "27005", + "27006", + "2701", + "27010", + "27012", + "27013", + "27018", + "27019", + "2702", + "27020", + "27022", + "27023", + "2703", + "27030", + "27031", + "27032", + "27033", + "27034", + "27035", + "27036", + "27037", + "27039", + "27040", + "27042", + "27043", + "27044", + "2705", + "2706", + "27063", + "27065", + "27067", + "27068", + "27069", + "2707", + "27071", + "27072", + "27074", + "27075", + "27076", + "27077", + "27079", + "27085", + "27087", + "27089", + "2709", + "27090", + "27091", + "27092", + "27094", + "27095", + "27097", + "27098", + "271", + "2710", + "27101", + "27102", + "27106", + "27107", + "27109", + "27111", + "27112", + "27113", + "27115", + "2712", + "27120", + "27121", + "27122", + "27123", + "27124", + "27125", + "27127", + "27128", + "27129", + "2713", + "27130", + "27131", + "27132", + "27133", + "27134", + "27136", + "27141", + "27143", + "27145", + "27146", + "27147", + "27148", + "27151", + "27152", + "27153", + "27154", + "27156", + "27158", + "27159", + "27161", + "27163", + "27164", + "27165", + "27166", + "2717", + "27173", + "27175", + "27177", + "27178", + "27179", + "27180", + "27181", + "27183", + "27185", + "27189", + "2719", + "27190", + "27197", + "27198", + "27199", + "272", + "2720", + "27201", + "27202", + "27229", + "27230", + "27231", + "27232", + "27233", + "27235", + "27236", + "27237", + "27238", + "27239", + "27240", + "27241", + "27242", + "27243", + "27244", + "27245", + "27246", + "27247", + "27248", + "27249", + "27250", + "27252", + "27253", + "27254", + "27255", + "27257", + "27258", + "27283", + "27284", + "27285", + "27286", + "27287", + "27288", + "27289", + "2729", + "27290", + "27291", + "27292", + "27293", + "27294", + "27295", + "27296", + "27297", + "27299", + "273", + "2730", + "27300", + "27301", + "27302", + "27303", + "27304", + "27306", + "27309", + "2731", + "27314", + "27315", + "27316", + "27319", + "27324", + "27327", + "27328", + "27329", + "2733", + "27330", + "27332", + "27333", + "27334", + "27335", + "27336", + "27338", + "27339", + "2734", + "27340", + "27341", + "27343", + "27344", + "27345", + "27346", + "27347", + "27348", + "27349", + "2735", + "27350", + "27351", + "27352", + "2736", + "2737", + "2738", + "2739", + "274", + "2740", + "2741", + "2742", + "27429", + "2743", + "27430", + "27433", + "27434", + "27436", + "27439", + "2744", + "27440", + "27443", + "27445", + "2745", + "2746", + "2747", + "275", + "2752", + "276", + "2760", + "2762", + "2764", + "2765", + "2766", + "2767", + "2768", + "2769", + "277", + "2770", + "2771", + "2773", + "2774", + "2775", + "2776", + "2778", + "2779", + "278", + "2780", + "2781", + "2782", + "2783", + "2784", + "2785", + "2786", + "2787", + "2788", + "2790", + "2791", + "2792", + "2793", + "2794", + "2796", + "2797", + "2798", + "2799", + "28", + "280", + "2800", + "2801", + "2802", + "2803", + "2804", + "2805", + "2806", + "280636", + "280658", + "280664", + "2810", + "2811", + "2812", + "2813", + "2814", + "2815", + "2817", + "2819", + "2820", + "2821", + "2822", + "28227", + "2823", + "28231", + "28232", + "28234", + "2824", + "2826", + "282616", + "282617", + "282618", + "282679", + "2827", + "282763", + "282770", + "282775", + "2828", + "282808", + "282809", + "282890", + "2829", + "282966", + "282969", + "282973", + "282974", + "282991", + "282996", + "283", + "2830", + "283008", + "283078", + "283092", + "283093", + "283106", + "283116", + "283129", + "283130", + "283149", + "283150", + "283152", + "283159", + "28316", + "283160", + "283162", + "2832", + "283208", + "283209", + "283212", + "283219", + "283229", + "283232", + "283234", + "283237", + "283238", + "283248", + "283254", + "283284", + "283297", + "283298", + "2833", + "283310", + "283316", + "283337", + "283349", + "283358", + "283365", + "283373", + "283375", + "283377", + "283383", + "283385", + "2834", + "283417", + "283420", + "283431", + "283450", + "283459", + "283461", + "283464", + "283471", + "283489", + "2835", + "283514", + "283518", + "283521", + "283537", + "283554", + "283571", + "283576", + "283578", + "283600", + "283629", + "283635", + "283638", + "283643", + "283652", + "283659", + "283677", + "283685", + "283694", + "2837", + "283726", + "283742", + "283748", + "283767", + "283768", + "2838", + "283807", + "283820", + "283847", + "283848", + "283849", + "283869", + "283870", + "283871", + "283875", + "283897", + "283899", + "283927", + "283933", + "283948", + "283951", + "283953", + "283971", + "283985", + "283987", + "283989", + "283991", + "283999", + "284", + "2840", + "284001", + "284004", + "284013", + "284018", + "284021", + "284023", + "284040", + "284058", + "284067", + "284069", + "284071", + "284076", + "284086", + "284098", + "284099", + "2841", + "284106", + "284110", + "284111", + "284114", + "284119", + "284129", + "284131", + "284161", + "284184", + "284194", + "2842", + "284207", + "284217", + "284252", + "284254", + "284257", + "284266", + "284273", + "284274", + "284293", + "284297", + "2843", + "284306", + "284307", + "284309", + "284312", + "284323", + "284325", + "284338", + "284339", + "284340", + "284346", + "284348", + "284349", + "284352", + "284353", + "284358", + "284359", + "284361", + "284366", + "284369", + "284370", + "284371", + "284382", + "284383", + "284390", + "284391", + "284402", + "284403", + "284406", + "284415", + "284417", + "284418", + "284422", + "284427", + "284428", + "284433", + "284434", + "284439", + "284443", + "284451", + "284459", + "284467", + "284485", + "284486", + "284498", + "2845", + "284521", + "284525", + "284532", + "284541", + "284546", + "284565", + "2846", + "284611", + "284612", + "284613", + "284615", + "284654", + "284656", + "284680", + "284695", + "284697", + "2847", + "284716", + "284723", + "284739", + "284759", + "2848", + "284805", + "284827", + "2849", + "284904", + "284948", + "284958", + "284992", + "284996", + "285", + "2850", + "285016", + "285025", + "285051", + "285093", + "285095", + "28511", + "28512", + "285126", + "28513", + "28514", + "285141", + "285148", + "285172", + "285175", + "285180", + "285190", + "285193", + "285195", + "2852", + "285203", + "285220", + "285231", + "285237", + "285242", + "285267", + "285268", + "285282", + "2853", + "285311", + "285313", + "285315", + "285331", + "285335", + "285343", + "285346", + "285349", + "285362", + "285367", + "285368", + "285381", + "285382", + "285386", + "2854", + "285423", + "285429", + "285440", + "285489", + "285498", + "285513", + "285521", + "285525", + "285527", + "285533", + "285555", + "285556", + "285588", + "285590", + "285596", + "285598", + "2856", + "285600", + "285601", + "285605", + "285613", + "285636", + "285641", + "285643", + "285659", + "285671", + "285672", + "285676", + "2857", + "285704", + "285753", + "285755", + "285761", + "285782", + "285800", + "285848", + "285852", + "285855", + "285877", + "285888", + "2859", + "285955", + "285966", + "285971", + "285973", + "285989", + "286", + "286006", + "286046", + "286053", + "286075", + "286077", + "286097", + "2861", + "286133", + "286144", + "286148", + "286151", + "286183", + "286187", + "2862", + "286204", + "286205", + "286207", + "286234", + "286256", + "286257", + "286262", + "2863", + "286319", + "286336", + "286343", + "286362", + "286380", + "2864", + "286410", + "286430", + "286436", + "286451", + "286464", + "286499", + "2865", + "286514", + "286527", + "286530", + "2866", + "286676", + "2867", + "286749", + "286753", + "2868", + "286826", + "286827", + "286887", + "2869", + "287", + "2870", + "287015", + "2872", + "2873", + "2874", + "2875", + "2877", + "2878", + "2879", + "288", + "2880", + "2882", + "2885", + "2886", + "2887", + "2888", + "2889", + "2890", + "2891", + "2892", + "2893", + "2894", + "2895", + "28951", + "28952", + "28954", + "28955", + "28956", + "28957", + "28958", + "28959", + "2896", + "28960", + "28962", + "28964", + "28965", + "28966", + "28968", + "28969", + "2897", + "28970", + "28971", + "28972", + "28973", + "28974", + "28976", + "28977", + "28978", + "2898", + "28981", + "28982", + "28983", + "28984", + "28985", + "28986", + "28987", + "28988", + "28989", + "2899", + "28990", + "28991", + "28992", + "28996", + "28998", + "28999", + "29", + "290", + "2900", + "2901", + "29015", + "2902", + "29028", + "2903", + "29035", + "2904", + "2905", + "29057", + "29058", + "2906", + "29062", + "29063", + "29066", + "29068", + "2907", + "29070", + "29071", + "29072", + "29074", + "29078", + "29079", + "2908", + "29080", + "29081", + "29083", + "29085", + "29086", + "29087", + "29088", + "29089", + "2909", + "29090", + "29091", + "29093", + "29094", + "29095", + "29097", + "29098", + "29099", + "291", + "29100", + "29101", + "29102", + "29103", + "29104", + "29105", + "29106", + "29107", + "29108", + "29109", + "2911", + "29110", + "29113", + "29114", + "29115", + "29116", + "29117", + "29118", + "29119", + "2912", + "29121", + "29122", + "29123", + "29124", + "29125", + "29126", + "29127", + "29128", + "2913", + "2914", + "2915", + "2916", + "2917", + "2918", + "2919", + "292", + "2920", + "2921", + "2922", + "2923", + "2925", + "2926", + "2928", + "293", + "2931", + "2932", + "2934", + "2935", + "2936", + "2937", + "2938", + "2939", + "2940", + "2941", + "2944", + "2946", + "2947", + "2948", + "2949", + "2950", + "2954", + "2956", + "2957", + "2958", + "2959", + "2960", + "2961", + "2962", + "2963", + "2965", + "2966", + "2967", + "2968", + "2969", + "2971", + "2972", + "2975", + "2976", + "29760", + "29761", + "29763", + "29765", + "29766", + "29767", + "2977", + "29775", + "29777", + "2978", + "29780", + "29781", + "29785", + "29789", + "2979", + "29796", + "29799", + "2980", + "29800", + "29801", + "29802", + "29803", + "2981", + "2982", + "2983", + "2984", + "29841", + "29842", + "29843", + "29844", + "29851", + "29855", + "2986", + "2987", + "29880", + "29881", + "29882", + "29883", + "29886", + "29887", + "29888", + "29889", + "29890", + "29893", + "29894", + "29895", + "29896", + "29899", + "2990", + "29901", + "29902", + "29903", + "29904", + "29906", + "29907", + "29909", + "29911", + "29914", + "29915", + "29916", + "29919", + "2992", + "29920", + "29922", + "29923", + "29924", + "29925", + "29926", + "29927", + "29928", + "29929", + "2993", + "29930", + "29933", + "29934", + "29935", + "29937", + "2994", + "29940", + "29941", + "29942", + "29943", + "29944", + "29945", + "29946", + "29947", + "29948", + "29949", + "2995", + "29950", + "29951", + "29952", + "29953", + "29954", + "29956", + "29957", + "29958", + "29959", + "2996", + "29960", + "29964", + "29965", + "29966", + "29967", + "29968", + "2997", + "29970", + "29974", + "29978", + "29979", + "2998", + "29980", + "29982", + "29984", + "29985", + "29986", + "29988", + "29989", + "2999", + "29990", + "29991", + "29992", + "29993", + "29994", + "29995", + "29997", + "29998", + "29999", + "30", + "3000", + "30000", + "30001", + "30008", + "30009", + "3001", + "30010", + "30011", + "30012", + "30014", + "3002", + "3003", + "3004", + "3005", + "3006", + "30061", + "30062", + "3007", + "3008", + "3009", + "301", + "3010", + "3012", + "3013", + "3014", + "3015", + "3017", + "3018", + "302", + "3020", + "3021", + "3024", + "3026", + "3028", + "3029", + "3030", + "3032", + "3033", + "3034", + "3035", + "3036", + "3037", + "3038", + "3039", + "3040", + "3042", + "3043", + "3045", + "3046", + "3047", + "3048", + "3049", + "3050", + "3052", + "3053", + "3054", + "3055", + "3059", + "306", + "3060", + "3061", + "3062", + "3064", + "3065", + "3066", + "3067", + "3068", + "3069", + "307", + "3070", + "3071", + "3073", + "3074", + "3075", + "3077", + "3078", + "308", + "3080", + "3081", + "30811", + "30812", + "30813", + "30814", + "30815", + "30816", + "30817", + "30818", + "30819", + "3082", + "30820", + "30827", + "3083", + "30832", + "30833", + "30834", + "30835", + "30836", + "30837", + "3084", + "30844", + "30845", + "30846", + "30848", + "30849", + "30850", + "30851", + "3087", + "309", + "3090", + "3091", + "3092", + "3093", + "3094", + "3096", + "30968", + "3097", + "3098", + "3099", + "31", + "310", + "3101", + "3104", + "3105", + "3106", + "3107", + "3108", + "3109", + "311", + "3110", + "3111", + "3112", + "3113", + "3115", + "3117", + "3118", + "3119", + "312", + "3120", + "3122", + "3123", + "3127", + "313", + "3131", + "3133", + "3134", + "3135", + "314", + "3140", + "3141", + "3142", + "3145", + "3146", + "3148", + "3149", + "3150", + "3151", + "3155", + "3156", + "3157", + "3158", + "3159", + "316", + "3161", + "3162", + "3163", + "3164", + "3166", + "3167", + "3169", + "317", + "3170", + "3171", + "3172", + "3174", + "3175", + "3176", + "317649", + "317662", + "317671", + "3177", + "317701", + "317703", + "317719", + "317749", + "317754", + "317761", + "317762", + "317772", + "317781", + "3178", + "318", + "3181", + "3182", + "3183", + "3184", + "3185", + "3187", + "3188", + "3189", + "319", + "3190", + "3191", + "319100", + "319101", + "3192", + "3195", + "3196", + "3198", + "3199", + "32", + "320", + "3200", + "3201", + "3202", + "3203", + "3204", + "3205", + "3206", + "3207", + "3208", + "3209", + "321", + "3211", + "3212", + "3213", + "3214", + "3215", + "3216", + "3217", + "3218", + "3219", + "322", + "3221", + "3222", + "3223", + "3224", + "3225", + "3226", + "3227", + "3228", + "3229", + "323", + "3231", + "3232", + "3233", + "3234", + "3235", + "3236", + "3237", + "3238", + "3239", + "324", + "3240", + "3241", + "3242", + "3248", + "3249", + "325", + "3250", + "3251", + "3257", + "326", + "3263", + "326340", + "3265", + "3266", + "326624", + "326625", + "3267", + "3268", + "3269", + "327", + "3270", + "3273", + "3274", + "3275", + "3276", + "327657", + "328", + "3280", + "3281", + "3283", + "3284", + "329", + "3290", + "3291", + "3292", + "3293", + "3294", + "3295", + "3297", + "3298", + "3299", + "33", + "330", + "3300", + "3301", + "3303", + "3304", + "3305", + "3306", + "3308", + "3309", + "331", + "3310", + "3312", + "3313", + "3315", + "3316", + "332", + "3320", + "3321", + "3326", + "3329", + "333", + "3336", + "3337", + "3338", + "3339", + "333926", + "333929", + "333932", + "334", + "3340", + "3344", + "3346", + "3347", + "335", + "3350", + "3351", + "3352", + "3354", + "3355", + "3356", + "3357", + "3358", + "3359", + "336", + "3360", + "3361", + "3362", + "3363", + "3364", + "337", + "3371", + "3373", + "3375", + "3376", + "337867", + "337876", + "337878", + "337879", + "337880", + "337882", + "337959", + "337960", + "337963", + "337966", + "337967", + "337968", + "337969", + "337970", + "337971", + "337972", + "337973", + "337974", + "337975", + "337976", + "337977", + "337978", + "337979", + "337985", + "338", + "338094", + "3381", + "3382", + "3383", + "338321", + "338322", + "338323", + "338324", + "338328", + "338339", + "338376", + "338382", + "338398", + "3384", + "338440", + "338442", + "3385", + "338557", + "338567", + "338596", + "338599", + "3386", + "338645", + "338657", + "338661", + "338662", + "338667", + "338674", + "338675", + "338692", + "338699", + "338707", + "338751", + "338755", + "338761", + "338773", + "338785", + "338811", + "338872", + "338879", + "338917", + "338949", + "339", + "339105", + "339122", + "339145", + "339168", + "339175", + "339210", + "339221", + "339229", + "339230", + "339287", + "339291", + "339302", + "339318", + "339324", + "339327", + "339344", + "339345", + "339366", + "339390", + "339398", + "3394", + "339403", + "339416", + "339448", + "339451", + "339453", + "339456", + "339479", + "339487", + "339488", + "339500", + "339501", + "339512", + "339541", + "339559", + "3396", + "339665", + "339669", + "3397", + "339745", + "339761", + "339766", + "339768", + "339778", + "339779", + "3398", + "339804", + "339829", + "339834", + "339855", + "339896", + "3399", + "339965", + "339967", + "339976", + "339977", + "339983", + "34", + "3400", + "340024", + "340061", + "340075", + "340096", + "340120", + "340146", + "340152", + "340156", + "340168", + "340204", + "340205", + "340252", + "340260", + "340267", + "340273", + "340277", + "340307", + "340348", + "340351", + "340359", + "340371", + "340385", + "340390", + "340393", + "340419", + "340481", + "340485", + "340526", + "340527", + "340529", + "340533", + "340542", + "340543", + "340547", + "340554", + "340562", + "340578", + "340595", + "340596", + "340602", + "340654", + "340665", + "340706", + "340719", + "340745", + "340784", + "340811", + "340895", + "340900", + "340980", + "340990", + "341", + "341019", + "341032", + "341116", + "341152", + "341208", + "341276", + "341277", + "341350", + "341359", + "341392", + "341405", + "341416", + "341418", + "341567", + "3416", + "341640", + "341676", + "3417", + "341799", + "3418", + "341880", + "341883", + "3419", + "341947", + "3420", + "342035", + "342096", + "3421", + "342125", + "342132", + "342184", + "3422", + "3423", + "342346", + "342357", + "342371", + "342372", + "3425", + "342510", + "342527", + "342538", + "342574", + "3426", + "342618", + "342667", + "3428", + "342850", + "342865", + "342892", + "342897", + "342898", + "3429", + "342900", + "342908", + "342909", + "342918", + "342926", + "342931", + "342933", + "342945", + "342977", + "342979", + "343", + "3430", + "343035", + "343066", + "343068", + "343069", + "343070", + "343071", + "343099", + "3431", + "343169", + "343170", + "343171", + "343172", + "343173", + "343263", + "3433", + "3434", + "343413", + "343450", + "343472", + "343521", + "343563", + "343578", + "343637", + "343641", + "3437", + "343702", + "3439", + "343930", + "343990", + "344", + "3440", + "344018", + "344022", + "344065", + "3441", + "344148", + "344167", + "344191", + "3442", + "3443", + "344387", + "3444", + "3445", + "344558", + "344561", + "3446", + "344657", + "344658", + "3447", + "344752", + "344758", + "344787", + "3448", + "344805", + "344807", + "344838", + "344892", + "3449", + "344905", + "345", + "345051", + "345062", + "345079", + "3451", + "345193", + "3452", + "345222", + "345274", + "345275", + "3454", + "345456", + "345462", + "3455", + "345557", + "3456", + "345611", + "345630", + "345643", + "345651", + "345757", + "345778", + "3458", + "345895", + "3459", + "345930", + "346", + "3460", + "346007", + "346157", + "346171", + "346288", + "346389", + "346517", + "346525", + "346528", + "346562", + "346606", + "346653", + "346673", + "346689", + "3467", + "346702", + "347", + "347051", + "347148", + "347168", + "347169", + "347240", + "347252", + "347273", + "347344", + "347365", + "347404", + "347411", + "347442", + "347454", + "347468", + "347475", + "347487", + "3475", + "347516", + "347517", + "347527", + "347541", + "347549", + "3476", + "347688", + "347730", + "347731", + "347732", + "347733", + "347734", + "347735", + "347736", + "347744", + "347853", + "347862", + "3479", + "347902", + "348", + "3480", + "348013", + "348093", + "348094", + "3481", + "348110", + "348158", + "348174", + "348180", + "3482", + "348235", + "348262", + "3483", + "348303", + "348327", + "348378", + "3484", + "348487", + "3485", + "3486", + "348654", + "3487", + "348751", + "348793", + "3488", + "348801", + "348807", + "3489", + "348932", + "348938", + "348980", + "348995", + "3490", + "349075", + "3491", + "349136", + "349149", + "349334", + "349565", + "349633", + "349667", + "35", + "350", + "350383", + "3508", + "351", + "3516", + "352909", + "352999", + "353", + "353088", + "353091", + "353116", + "353131", + "353132", + "353133", + "353134", + "353135", + "353137", + "353139", + "353140", + "353141", + "353142", + "353143", + "353144", + "353145", + "353149", + "353164", + "353174", + "353189", + "353238", + "353267", + "353274", + "353288", + "353299", + "353322", + "353323", + "353324", + "353332", + "353333", + "353345", + "353355", + "353376", + "353497", + "353500", + "353513", + "353514", + "354", + "3543", + "3547", + "3549", + "355", + "3550", + "3551", + "3552", + "3553", + "3554", + "3556", + "3557", + "3558", + "3559", + "356", + "3560", + "3561", + "3562", + "3563", + "3565", + "3566", + "3567", + "3568", + "3569", + "357", + "3570", + "3572", + "3574", + "3575", + "3576", + "3577", + "3578", + "3579", + "358", + "3581", + "3586", + "3587", + "3588", + "3589", + "359", + "3590", + "3592", + "3593", + "3594", + "3595", + "3596", + "3597", + "359710", + "359787", + "3598", + "359845", + "359948", + "36", + "360", + "3600", + "360023", + "360030", + "3601", + "360200", + "360203", + "360205", + "360226", + "3603", + "3605", + "3606", + "3607", + "3608", + "3611", + "3612", + "3613", + "3614", + "3615", + "3617", + "3619", + "362", + "3620", + "3621", + "3622", + "3623", + "3624", + "3625", + "3626", + "3627", + "3628", + "363", + "3630", + "3632", + "3633", + "3635", + "3636", + "3638", + "364", + "3640", + "3641", + "3642", + "3643", + "3645", + "3646", + "3651", + "3652", + "3654", + "3655", + "3656", + "3658", + "3659", + "366", + "3660", + "3661", + "3662", + "3663", + "3664", + "3665", + "3667", + "3669", + "367", + "3670", + "3671", + "3672", + "3673", + "3674", + "3675", + "3676", + "3678", + "3679", + "368", + "3680", + "3681", + "3682", + "3683", + "3684", + "3685", + "3687", + "3688", + "3689", + "3690", + "3691", + "3692", + "3693", + "3694", + "3695", + "3696", + "3697", + "3698", + "3699", + "37", + "3700", + "3702", + "3703", + "3704", + "3705", + "3706", + "3707", + "3708", + "3709", + "3710", + "3712", + "3713", + "3714", + "3716", + "3717", + "3718", + "372", + "3720", + "3725", + "3726", + "3727", + "3728", + "373", + "3730", + "373156", + "3732", + "3735", + "373509", + "3736", + "3737", + "3738", + "373863", + "3739", + "374", + "3741", + "3742", + "374286", + "374291", + "3743", + "374354", + "374355", + "374378", + "374383", + "374393", + "374395", + "3744", + "374403", + "374407", + "374454", + "374462", + "374470", + "3745", + "374569", + "3746", + "374618", + "374654", + "374655", + "374659", + "3747", + "374739", + "374768", + "374786", + "3748", + "374819", + "374860", + "374864", + "374868", + "374872", + "374875", + "374877", + "374879", + "374882", + "374887", + "374897", + "374899", + "3749", + "374900", + "374907", + "374918", + "374920", + "374928", + "374946", + "374955", + "374969", + "374973", + "374977", + "374986", + "3750", + "375033", + "375035", + "375056", + "375057", + "375061", + "3751", + "375189", + "375190", + "3752", + "375248", + "375287", + "375298", + "3753", + "375307", + "375316", + "375323", + "375337", + "375341", + "375346", + "375387", + "3754", + "375444", + "375449", + "375484", + "3755", + "375519", + "375567", + "375593", + "3756", + "375607", + "375611", + "375612", + "375616", + "375686", + "3757", + "375704", + "375743", + "375748", + "375759", + "375775", + "375790", + "3758", + "3759", + "3760", + "3761", + "376132", + "3762", + "376267", + "3763", + "3764", + "376497", + "3765", + "3766", + "3767", + "3768", + "3769", + "376940", + "377", + "3770", + "377007", + "3772", + "3775", + "3776", + "377630", + "377677", + "3777", + "3778", + "377841", + "3779", + "378", + "3780", + "378108", + "3782", + "3783", + "3784", + "3785", + "3786", + "3787", + "378708", + "3788", + "378807", + "378884", + "378925", + "378948", + "378949", + "378950", + "378951", + "379", + "3790", + "3791", + "3792", + "3795", + "3796", + "3797", + "3798", + "3799", + "38", + "3800", + "3801", + "3802", + "3804", + "3805", + "381", + "3811", + "3812", + "3814", + "3815", + "3816", + "3817", + "3818", + "382", + "3820", + "3821", + "3822", + "3823", + "3824", + "3827", + "383", + "3831", + "3832", + "3833", + "3834", + "3835", + "3836", + "3837", + "3838", + "3839", + "384", + "3840", + "3841", + "3842", + "3843", + "3845", + "3846", + "3848", + "3849", + "3850", + "3851", + "3852", + "3853", + "3854", + "3855", + "3856", + "3857", + "3858", + "3859", + "3860", + "3861", + "3866", + "386617", + "386618", + "386653", + "386672", + "386674", + "386675", + "386676", + "386677", + "386678", + "386679", + "386680", + "386681", + "386682", + "386683", + "386684", + "386685", + "386724", + "386746", + "3868", + "387", + "387032", + "387082", + "387103", + "387104", + "387119", + "387129", + "3872", + "387263", + "387264", + "387266", + "387267", + "387273", + "387332", + "387338", + "387357", + "387496", + "3875", + "387509", + "387521", + "387522", + "387597", + "387601", + "387640", + "387680", + "387694", + "387695", + "387700", + "387707", + "387712", + "387715", + "387718", + "387723", + "387733", + "387748", + "387755", + "387758", + "387763", + "387775", + "387778", + "387787", + "387804", + "387836", + "387837", + "387849", + "387856", + "387882", + "387885", + "387890", + "387893", + "387911", + "387914", + "387921", + "387923", + "387990", + "388", + "3880", + "388015", + "388021", + "3881", + "388112", + "388121", + "388125", + "388135", + "3882", + "388228", + "388272", + "388284", + "3883", + "388323", + "388324", + "388325", + "388327", + "388333", + "388335", + "388336", + "388341", + "388364", + "388381", + "388389", + "388394", + "3884", + "388403", + "388419", + "388428", + "388468", + "3885", + "388512", + "388523", + "388531", + "388533", + "388536", + "388551", + "388552", + "388553", + "388555", + "388558", + "388559", + "388561", + "388564", + "388566", + "388567", + "388569", + "388581", + "388585", + "388588", + "388591", + "388595", + "388610", + "388611", + "388630", + "388633", + "388646", + "388649", + "388650", + "388662", + "388677", + "388695", + "388697", + "388698", + "3887", + "388701", + "388722", + "388730", + "388743", + "388753", + "388761", + "388789", + "388795", + "388799", + "3888", + "388818", + "388820", + "388849", + "388886", + "3889", + "388931", + "388939", + "388946", + "388951", + "388960", + "388962", + "388963", + "388969", + "389", + "3890", + "389015", + "389058", + "389072", + "389073", + "389075", + "389084", + "3891", + "389114", + "389118", + "389123", + "389124", + "389125", + "389136", + "389151", + "389152", + "389158", + "389161", + "389170", + "389177", + "389197", + "3892", + "389203", + "389206", + "389207", + "389208", + "389257", + "389289", + "389320", + "389332", + "389333", + "389336", + "389337", + "389362", + "389376", + "389383", + "389384", + "389396", + "389400", + "389421", + "389432", + "389434", + "389493", + "3895", + "389524", + "389541", + "389549", + "389558", + "389610", + "389643", + "389658", + "389668", + "389677", + "389692", + "3897", + "389730", + "389761", + "389762", + "389763", + "389766", + "389792", + "389799", + "3898", + "389812", + "389813", + "389816", + "389827", + "389840", + "389852", + "389856", + "389857", + "389860", + "389874", + "3899", + "389903", + "389941", + "39", + "390", + "390010", + "390031", + "390033", + "390036", + "390037", + "390038", + "390054", + "390058", + "390059", + "390061", + "390063", + "390064", + "390066", + "390067", + "390072", + "390075", + "390077", + "390078", + "390079", + "390081", + "390082", + "390083", + "390084", + "390093", + "390110", + "390113", + "390142", + "390144", + "390148", + "390151", + "390152", + "390155", + "390157", + "390162", + "390168", + "390174", + "390181", + "390190", + "390191", + "390195", + "390197", + "390199", + "3902", + "390201", + "390205", + "390212", + "390231", + "390243", + "390245", + "390259", + "390260", + "390261", + "390264", + "390265", + "390271", + "390275", + "3903", + "390313", + "390321", + "390323", + "390326", + "390327", + "3904", + "390429", + "390431", + "390433", + "390437", + "390443", + "390445", + "390538", + "390594", + "390595", + "390598", + "3906", + "390616", + "390637", + "390648", + "390649", + "390664", + "390667", + "390714", + "390748", + "390790", + "390792", + "3908", + "390874", + "390883", + "390892", + "3909", + "390916", + "390927", + "390928", + "390937", + "390940", + "390980", + "390992", + "390999", + "391", + "3910", + "391002", + "391003", + "391004", + "391013", + "391059", + "3911", + "391104", + "391107", + "391109", + "391112", + "391114", + "391123", + "391189", + "391190", + "391192", + "391194", + "391195", + "391196", + "3912", + "391211", + "391253", + "3913", + "391356", + "391365", + "3914", + "391475", + "3915", + "3916", + "391712", + "391714", + "391723", + "391742", + "391746", + "391747", + "391769", + "3918", + "392", + "3920", + "3921", + "392138", + "392188", + "392197", + "392255", + "392307", + "392309", + "392376", + "392390", + "392391", + "392392", + "392399", + "392433", + "392465", + "3925", + "392509", + "392517", + "392617", + "392636", + "3927", + "392843", + "392862", + "3929", + "393", + "3930", + "393046", + "3931", + "3933", + "3934", + "3936", + "3937", + "3938", + "394", + "394263", + "3948", + "3949", + "395", + "3950", + "3952", + "3953", + "3954", + "3955", + "3956", + "3957", + "3958", + "3959", + "396", + "3960", + "3963", + "3964", + "3965", + "397", + "3972", + "3973", + "3975", + "3976", + "3977", + "3978", + "398", + "3980", + "3981", + "3982", + "3984", + "3985", + "3987", + "3988", + "399", + "3990", + "3991", + "3992", + "3993", + "399473", + "399474", + "3995", + "399512", + "3996", + "399664", + "399665", + "399668", + "399671", + "399687", + "399693", + "399694", + "399697", + "3998", + "399814", + "399818", + "399823", + "399888", + "399909", + "399939", + "399947", + "399949", + "399967", + "399968", + "399979", + "40", + "400", + "4000", + "4001", + "400120", + "400224", + "400258", + "4004", + "400451", + "400499", + "4005", + "400506", + "400566", + "400569", + "400581", + "400629", + "400668", + "400673", + "4007", + "400713", + "400720", + "400735", + "400736", + "400745", + "400746", + "400757", + "400793", + "400797", + "4008", + "400818", + "400823", + "400830", + "400831", + "400891", + "4009", + "400916", + "400935", + "400954", + "400961", + "400986", + "401", + "4010", + "401024", + "401036", + "401067", + "401081", + "401089", + "401097", + "401115", + "401124", + "401137", + "401138", + "401145", + "401152", + "401190", + "4012", + "401207", + "401236", + "401250", + "401251", + "401258", + "401262", + "401265", + "4013", + "401387", + "401397", + "401399", + "4014", + "401409", + "401427", + "401447", + "401466", + "401474", + "401494", + "401498", + "4015", + "401505", + "401541", + "401546", + "401548", + "401551", + "401562", + "401565", + "4016", + "401612", + "401613", + "401647", + "401661", + "401665", + "401666", + "401667", + "4017", + "401720", + "4018", + "401827", + "401934", + "401944", + "401992", + "401993", + "401994", + "402", + "402055", + "402117", + "402135", + "4023", + "402317", + "402381", + "402415", + "4025", + "402569", + "402573", + "402635", + "402665", + "402682", + "402778", + "403", + "403239", + "403244", + "403253", + "403273", + "403274", + "403277", + "403278", + "403282", + "403284", + "4033", + "403313", + "403314", + "4034", + "4035", + "4036", + "4037", + "4038", + "4040", + "404037", + "404093", + "4041", + "404203", + "404217", + "404281", + "4043", + "4045", + "404550", + "404552", + "4046", + "404636", + "404672", + "4047", + "404734", + "404785", + "4048", + "4049", + "405", + "4050", + "4051", + "4052", + "4053", + "4054", + "4055", + "4056", + "4057", + "405753", + "405754", + "4058", + "4059", + "406", + "4060", + "4061", + "4062", + "4063", + "4064", + "4065", + "4066", + "4067", + "4068", + "4069", + "407", + "4070", + "4071", + "4072", + "4074", + "4076", + "4077", + "407738", + "407977", + "408", + "408050", + "4081", + "408187", + "4082", + "408263", + "4084", + "4085", + "4086", + "4087", + "4088", + "4089", + "409", + "4090", + "4091", + "4092", + "4093", + "4094", + "4097", + "4099", + "41", + "410", + "4100", + "4101", + "4102", + "4103", + "4105", + "4107", + "4108", + "4109", + "411", + "4110", + "4111", + "4112", + "4113", + "4114", + "4115", + "4116", + "4117", + "4118", + "412", + "4121", + "4122", + "4123", + "4124", + "4125", + "4126", + "4128", + "4129", + "4130", + "4131", + "4133", + "4134", + "4135", + "4137", + "4139", + "414", + "4140", + "414059", + "414060", + "414062", + "4141", + "414149", + "414152", + "414157", + "414189", + "4142", + "4143", + "414301", + "414325", + "414328", + "414332", + "4144", + "4145", + "4146", + "4147", + "4148", + "414899", + "4149", + "414918", + "414919", + "415", + "4150", + "4151", + "415116", + "415117", + "4152", + "4153", + "4154", + "4155", + "4157", + "4158", + "4159", + "416", + "4160", + "4161", + "4162", + "4163", + "4166", + "4168", + "417", + "4170", + "4171", + "4172", + "4173", + "4174", + "4175", + "4176", + "4179", + "4184", + "4185", + "4188", + "4189", + "419", + "4191", + "4192", + "4193", + "4194", + "4199", + "420", + "4200", + "4201", + "4204", + "4205", + "4208", + "4209", + "421", + "4210", + "4211", + "4212", + "4214", + "4215", + "4216", + "4217", + "4218", + "4222", + "4223", + "4224", + "4225", + "4232", + "4233", + "4234", + "4236", + "4237", + "4238", + "4239", + "4240", + "4241", + "4242", + "4245", + "4246", + "4247", + "4248", + "4249", + "4250", + "425054", + "4253", + "4254", + "4255", + "4256", + "4257", + "4258", + "4259", + "4261", + "4267", + "427", + "4277", + "4281", + "4282", + "4283", + "4284", + "4285", + "4286", + "4287", + "4288", + "4289", + "429", + "4292", + "4293", + "4294", + "4295", + "4296", + "4297", + "4298", + "4299", + "43", + "430", + "4300", + "4301", + "4302", + "4303", + "4306", + "4311", + "4312", + "4313", + "4314", + "4316", + "4317", + "431704", + "431705", + "431707", + "4318", + "4319", + "432", + "4320", + "4321", + "4322", + "4323", + "432355", + "4324", + "4325", + "4326", + "4327", + "4329", + "433", + "4330", + "4331", + "4332", + "4335", + "4336", + "4337", + "4338", + "434", + "4340", + "4342", + "4343", + "4345", + "435", + "4350", + "4351", + "4352", + "4353", + "4354", + "4355", + "4356", + "4357", + "4358", + "4360", + "4361", + "4363", + "438", + "43847", + "43849", + "439", + "439915", + "439921", + "439996", + "440", + "440021", + "440023", + "440026", + "440050", + "440051", + "440073", + "440077", + "440087", + "440093", + "440097", + "440138", + "440145", + "440153", + "440163", + "440184", + "440193", + "440243", + "440270", + "440275", + "440279", + "440295", + "440307", + "440335", + "440348", + "440350", + "440353", + "440387", + "440400", + "440435", + "440498", + "440503", + "440515", + "440519", + "440533", + "440560", + "440561", + "440563", + "440567", + "440574", + "440585", + "440590", + "440603", + "440672", + "440686", + "440689", + "440695", + "440699", + "440712", + "440730", + "440738", + "440804", + "440822", + "440829", + "440836", + "440854", + "440955", + "440956", + "440957", + "441024", + "441027", + "441054", + "441061", + "441150", + "441151", + "441161", + "441168", + "441234", + "441250", + "441272", + "441273", + "441282", + "441294", + "441308", + "441317", + "441323", + "441328", + "441376", + "441381", + "441457", + "441459", + "441476", + "441478", + "441495", + "441518", + "441519", + "441521", + "441525", + "441531", + "441549", + "441581", + "441584", + "441608", + "441631", + "441670", + "441864", + "441869", + "441873", + "441925", + "441933", + "442038", + "442117", + "442184", + "442185", + "442186", + "442191", + "442194", + "442197", + "442213", + "442247", + "442319", + "442361", + "442425", + "442444", + "442572", + "442590", + "442721", + "442862", + "442867", + "442868", + "443", + "4430", + "4435", + "4436", + "4437", + "4438", + "4439", + "444", + "4440", + "444882", + "445", + "445328", + "445329", + "445372", + "445571", + "445582", + "445815", + "4477", + "4478", + "4481", + "4482", + "4485", + "4486", + "4487", + "4488", + "448831", + "448834", + "448835", + "4489", + "4490", + "4493", + "4494", + "4495", + "4496", + "4499", + "4501", + "4502", + "4504", + "4507", + "4508", + "4509", + "4512", + "4513", + "4514", + "4515", + "4519", + "4520", + "4521", + "4522", + "4524", + "4528", + "4534", + "4535", + "4536", + "4537", + "4538", + "4539", + "4540", + "4541", + "4542", + "4543", + "4544", + "4547", + "4548", + "4552", + "4580", + "4584", + "4585", + "4586", + "4588", + "4589", + "4591", + "4593", + "4594", + "4595", + "4597", + "4598", + "4599", + "460", + "4600", + "4601", + "4602", + "4603", + "4604", + "4605", + "4606", + "4607", + "4608", + "4609", + "4610", + "4613", + "4616", + "4617", + "4618", + "4619", + "462", + "4620", + "4621", + "4622", + "4624", + "4625", + "4626", + "4627", + "4628", + "4629", + "463", + "4632", + "4633", + "4634", + "4635", + "4636", + "4637", + "4638", + "4640", + "4641", + "4642", + "4643", + "4644", + "4645", + "4646", + "4647", + "4648", + "4649", + "4650", + "4651", + "4653", + "4654", + "4656", + "4659", + "466", + "4660", + "4661", + "4664", + "4665", + "4666", + "4668", + "4669", + "467", + "4670", + "4671", + "4673", + "4674", + "4675", + "4676", + "4677", + "4678", + "468", + "4680", + "4681", + "4682", + "4683", + "4684", + "4685", + "4686", + "4688", + "4689", + "4690", + "4691", + "4692", + "4693", + "4694", + "4695", + "4696", + "4697", + "4698", + "47", + "4700", + "4701", + "4702", + "4704", + "4705", + "4706", + "4707", + "4708", + "4709", + "471", + "4710", + "4711", + "4712", + "4713", + "4714", + "4715", + "4716", + "4717", + "4718", + "472", + "4720", + "4722", + "4723", + "4724", + "4725", + "4726", + "4728", + "4729", + "473", + "4731", + "4733", + "4734", + "4735", + "4736", + "4738", + "4739", + "474", + "4741", + "474170", + "474343", + "474344", + "474354", + "474381", + "474382", + "474383", + "474384", + "4744", + "4745", + "4747", + "475", + "4750", + "4751", + "4752", + "4753", + "4756", + "4758", + "4759", + "476", + "4760", + "4761", + "4762", + "4763", + "477", + "4771", + "4772", + "4773", + "4774", + "4775", + "4776", + "4778", + "4779", + "478", + "4780", + "4781", + "4782", + "4783", + "4784", + "479", + "4790", + "4791", + "4792", + "4793", + "4794", + "4795", + "4796", + "4798", + "4799", + "48", + "480", + "4800", + "4801", + "4802", + "4803", + "4804", + "4807", + "4808", + "4809", + "481", + "4810", + "4811", + "4814", + "4815", + "4817", + "4818", + "482", + "4820", + "4821", + "4824", + "4825", + "4826", + "4828", + "4829", + "483", + "4830", + "4831", + "4832", + "4833", + "4835", + "4836", + "4837", + "4838", + "4839", + "4841", + "4842", + "4843", + "4846", + "4848", + "4849", + "4850", + "4851", + "4852", + "4853", + "4854", + "4855", + "4856", + "4857", + "4858", + "486", + "4860", + "4861", + "4862", + "4863", + "4864", + "4867", + "4868", + "4869", + "487", + "4878", + "4879", + "488", + "4880", + "4881", + "4882", + "4883", + "4884", + "4885", + "4886", + "4887", + "4889", + "489", + "4891", + "4892", + "4893", + "4897", + "4898", + "4899", + "49", + "490", + "4900", + "4901", + "4902", + "4904", + "4905", + "4907", + "4908", + "4909", + "491", + "4913", + "4914", + "4915", + "4917", + "4919", + "492", + "4920", + "4921", + "4922", + "4923", + "492307", + "492311", + "4924", + "4925", + "4926", + "4927", + "4928", + "4929", + "493", + "4931", + "4935", + "493753", + "4938", + "493829", + "493856", + "493860", + "493861", + "493869", + "4939", + "493901", + "493911", + "4940", + "494115", + "494118", + "494119", + "494143", + "494188", + "494197", + "4942", + "4943", + "494470", + "494513", + "494551", + "4946", + "4947", + "4948", + "495", + "4951", + "4952", + "4953", + "4956", + "4957", + "4958", + "496", + "4967", + "4968", + "4969", + "497189", + "497190", + "4973", + "4974", + "4975", + "4976", + "497661", + "4978", + "498", + "4982", + "4983", + "4985", + "49854", + "49855", + "49856", + "49860", + "49861", + "4988", + "4990", + "4991", + "4992", + "4993", + "4994", + "4998", + "4999", + "50", + "5000", + "5001", + "5002", + "5004", + "5005", + "5007", + "5008", + "5009", + "501", + "5010", + "5013", + "5015", + "5016", + "5017", + "5018", + "5019", + "5020", + "5021", + "5023", + "5024", + "5025", + "5026", + "5027", + "5028", + "5029", + "5030", + "5031", + "5032", + "5033", + "5034", + "503497", + "503542", + "503582", + "5036", + "503614", + "503618", + "5037", + "503834", + "503835", + "503841", + "504180", + "5042", + "5045", + "5046", + "5047", + "5048", + "50484", + "50485", + "50486", + "50487", + "50488", + "50489", + "5049", + "5050", + "50506", + "50507", + "50508", + "50509", + "5051", + "50511", + "50512", + "50515", + "5052", + "5053", + "5054", + "5055", + "5058", + "506", + "50604", + "50613", + "50614", + "50615", + "50616", + "50617", + "50618", + "50619", + "5062", + "50624", + "50626", + "50628", + "5063", + "50632", + "50636", + "5064", + "50640", + "50649", + "50650", + "50651", + "5066", + "5067", + "50674", + "5068", + "5069", + "50700", + "5071", + "50717", + "5073", + "5074", + "5075", + "5076", + "5077", + "5078", + "5079", + "5080", + "50801", + "50804", + "50805", + "50807", + "50808", + "50809", + "5081", + "50810", + "50813", + "50814", + "5082", + "5083", + "50831", + "50832", + "50833", + "50834", + "50835", + "50836", + "50837", + "50838", + "50839", + "50840", + "50846", + "50848", + "50852", + "50853", + "50855", + "50856", + "50859", + "50861", + "50862", + "50863", + "50865", + "5087", + "5089", + "509", + "5090", + "5091", + "5092", + "5093", + "50937", + "50939", + "5094", + "50940", + "50943", + "50944", + "50945", + "5095", + "5096", + "50964", + "5097", + "5098", + "50999", + "51", + "5100", + "51000", + "51001", + "51002", + "51003", + "51004", + "51005", + "51006", + "51008", + "51009", + "5101", + "51010", + "51011", + "51012", + "51013", + "51014", + "51015", + "51016", + "51018", + "51019", + "51020", + "51021", + "51022", + "51023", + "51024", + "51025", + "51026", + "51027", + "51028", + "51029", + "51030", + "51031", + "51032", + "51035", + "5104", + "51042", + "51043", + "51046", + "5105", + "51050", + "51052", + "51053", + "51056", + "51057", + "51058", + "51059", + "5106", + "51060", + "51061", + "51062", + "51063", + "51065", + "51066", + "51067", + "51068", + "51069", + "51070", + "51071", + "51072", + "51073", + "51074", + "51075", + "51076", + "51077", + "51078", + "51079", + "5108", + "51081", + "51082", + "51083", + "51084", + "51085", + "51086", + "51087", + "51088", + "51090", + "51091", + "51092", + "51093", + "51094", + "51095", + "51096", + "51097", + "51098", + "51099", + "51100", + "51101", + "51102", + "51103", + "51104", + "51105", + "51106", + "51107", + "51108", + "51109", + "5111", + "51110", + "51111", + "51112", + "51114", + "51115", + "51116", + "51117", + "51118", + "51119", + "51121", + "51122", + "51123", + "51124", + "51125", + "51126", + "51127", + "51128", + "51129", + "51131", + "51132", + "51133", + "51134", + "51135", + "51136", + "51138", + "51141", + "51142", + "51143", + "51144", + "51146", + "51147", + "51148", + "51149", + "51151", + "51154", + "51155", + "51156", + "51157", + "5116", + "51160", + "51161", + "51162", + "51163", + "51164", + "51166", + "51167", + "51168", + "51170", + "51171", + "51172", + "51174", + "51175", + "51176", + "51177", + "51179", + "5118", + "51181", + "51182", + "51184", + "51185", + "51186", + "51187", + "51188", + "5119", + "51191", + "51192", + "51193", + "51194", + "51195", + "51196", + "51199", + "51200", + "51201", + "51202", + "51203", + "51204", + "51205", + "51206", + "51207", + "51208", + "51209", + "5121", + "51213", + "51218", + "5122", + "51222", + "51224", + "51225", + "51226", + "51227", + "51228", + "51230", + "51231", + "51232", + "51233", + "51234", + "51236", + "51237", + "51239", + "51241", + "51244", + "51246", + "51247", + "51248", + "51249", + "5125", + "51250", + "51251", + "51252", + "51253", + "51255", + "51256", + "51257", + "51258", + "51259", + "5126", + "51260", + "51263", + "51264", + "51265", + "51266", + "51267", + "51268", + "5127", + "51270", + "51271", + "51272", + "51274", + "51277", + "51278", + "51279", + "5128", + "51280", + "51281", + "51282", + "51283", + "51284", + "51285", + "51286", + "51287", + "51289", + "5129", + "51290", + "51291", + "51292", + "51293", + "51294", + "51295", + "51296", + "51297", + "51298", + "51299", + "513", + "5130", + "51300", + "51301", + "51302", + "51303", + "51304", + "51305", + "51306", + "51307", + "51308", + "51309", + "51310", + "51311", + "51312", + "51313", + "51314", + "51315", + "51316", + "51317", + "51318", + "51319", + "5132", + "51320", + "51321", + "51322", + "51324", + "51326", + "51327", + "51329", + "5133", + "51330", + "51332", + "51333", + "51334", + "51335", + "51337", + "51338", + "51339", + "5134", + "51340", + "51341", + "51343", + "51347", + "51348", + "51350", + "51351", + "5136", + "51360", + "51361", + "51362", + "51363", + "51364", + "51365", + "51366", + "51367", + "51368", + "5137", + "51371", + "51372", + "51373", + "51375", + "51377", + "51378", + "51379", + "5138", + "51380", + "51382", + "51384", + "51385", + "51386", + "51388", + "51389", + "5139", + "51390", + "51393", + "51397", + "51398", + "51399", + "514", + "5140", + "51400", + "51406", + "51409", + "5141", + "51412", + "5142", + "51421", + "51422", + "51426", + "51427", + "51428", + "51429", + "5143", + "51430", + "51433", + "51434", + "51435", + "51438", + "51439", + "5144", + "51440", + "51441", + "51442", + "51444", + "51447", + "51449", + "5145", + "51450", + "51451", + "51454", + "51455", + "51458", + "5146", + "51460", + "51463", + "51465", + "51466", + "5147", + "51473", + "51474", + "51475", + "51477", + "51478", + "51479", + "5148", + "51480", + "51481", + "5149", + "51490", + "51491", + "51493", + "51495", + "51496", + "51497", + "51499", + "515", + "5150", + "51501", + "51503", + "51504", + "51506", + "51507", + "5151", + "51510", + "51512", + "51513", + "51514", + "51517", + "5152", + "51520", + "51522", + "51523", + "51524", + "51526", + "51527", + "51528", + "51529", + "5153", + "51530", + "51531", + "51533", + "51534", + "51535", + "51537", + "51538", + "5154", + "51540", + "51542", + "51545", + "51547", + "51548", + "5155", + "51550", + "51552", + "51554", + "51555", + "51557", + "51559", + "5156", + "51560", + "51561", + "51562", + "51564", + "51566", + "51567", + "51569", + "5157", + "51571", + "51573", + "51574", + "51575", + "5158", + "51582", + "51585", + "51586", + "51588", + "5159", + "51592", + "51593", + "51594", + "51599", + "516", + "51601", + "51602", + "51603", + "51604", + "51605", + "51606", + "51608", + "5161", + "51611", + "51614", + "51616", + "51617", + "51619", + "5162", + "51621", + "51622", + "51626", + "51629", + "5163", + "51631", + "51633", + "51634", + "51635", + "51637", + "51639", + "5164", + "51642", + "51643", + "51645", + "51646", + "51647", + "51649", + "5165", + "51650", + "51651", + "51652", + "51654", + "51655", + "51657", + "51659", + "5166", + "51660", + "51661", + "51663", + "51665", + "51666", + "51667", + "51668", + "51669", + "5167", + "51673", + "51676", + "51678", + "5168", + "51684", + "51686", + "5169", + "51690", + "51691", + "51692", + "51693", + "51696", + "51699", + "517", + "5170", + "51700", + "51701", + "51702", + "51703", + "51704", + "51705", + "51706", + "51710", + "51714", + "51715", + "51719", + "5172", + "51720", + "51725", + "51726", + "51727", + "51728", + "51729", + "5173", + "51733", + "51734", + "51735", + "51738", + "5174", + "51741", + "51742", + "51744", + "51747", + "5175", + "51750", + "51751", + "51752", + "51754", + "51755", + "51759", + "5176", + "51760", + "51761", + "51762", + "51763", + "51764", + "51765", + "51768", + "51773", + "51776", + "51778", + "5178", + "51780", + "5179", + "518", + "51802", + "51804", + "51805", + "51806", + "51807", + "51808", + "51809", + "51816", + "5184", + "5187", + "5188", + "5189", + "5190", + "5191", + "5192", + "5194", + "5195", + "5196", + "5197", + "5198", + "5199", + "52", + "5201", + "5202", + "5203", + "5204", + "5205", + "5207", + "5208", + "5209", + "521", + "5210", + "5211", + "5212", + "5213", + "5214", + "5216", + "5217", + "5218", + "522", + "5222", + "5223", + "5224", + "5225", + "5226", + "5228", + "5229", + "523", + "5230", + "5232", + "5236", + "5238", + "5239", + "5241", + "5243", + "5244", + "5245", + "525", + "5250", + "5251", + "5252", + "5253", + "5255", + "5256", + "5257", + "526", + "5260", + "5261", + "5264", + "5265", + "5266", + "5267", + "5268", + "5269", + "527", + "5270", + "5271", + "5272", + "5273", + "5274", + "5275", + "5277", + "5279", + "528", + "5281", + "5283", + "5284", + "5286", + "5287", + "5288", + "5289", + "529", + "5290", + "5291", + "5292", + "5293", + "5294", + "5295", + "5296", + "5297", + "5298", + "5300", + "5303", + "5304", + "5305", + "5306", + "5307", + "5308", + "5309", + "5310", + "5311", + "5313", + "5314", + "5315", + "5316", + "5317", + "5318", + "5319", + "5320", + "5321", + "5322", + "5324", + "5325", + "5326", + "5327", + "5328", + "5329", + "533", + "5330", + "5331", + "5332", + "5333", + "53335", + "53336", + "53339", + "5334", + "53340", + "53342", + "53343", + "53344", + "53345", + "53346", + "53347", + "53349", + "5335", + "53353", + "53354", + "53358", + "5336", + "5337", + "53371", + "53373", + "5338", + "5339", + "534", + "5340", + "53405", + "53407", + "5341", + "5342", + "5343", + "5345", + "5346", + "5347", + "5348", + "5349", + "535", + "5350", + "5351", + "5352", + "5354", + "5355", + "5356", + "5357", + "5358", + "5359", + "5360", + "5361", + "53615", + "53616", + "5362", + "53630", + "53632", + "53635", + "53637", + "5364", + "5365", + "5366", + "5367", + "5368", + "537", + "5371", + "5372", + "5373", + "5375", + "5376", + "5378", + "538", + "53820", + "53822", + "53826", + "53827", + "53828", + "53829", + "53831", + "53832", + "53833", + "53834", + "53836", + "53838", + "53840", + "53841", + "53842", + "539", + "53904", + "53905", + "53916", + "53917", + "53918", + "53919", + "5393", + "53938", + "5394", + "53940", + "53942", + "53944", + "53947", + "5395", + "5396", + "53981", + "54", + "540", + "54014", + "54020", + "54033", + "54039", + "54058", + "54059", + "5406", + "54065", + "54069", + "5407", + "54084", + "5409", + "54093", + "54097", + "54101", + "54102", + "54103", + "54106", + "54107", + "54108", + "5411", + "54112", + "5412", + "5413", + "5414", + "54145", + "541465", + "541466", + "541468", + "54148", + "54149", + "541565", + "541578", + "54165", + "54187", + "5420", + "54205", + "54206", + "54207", + "54209", + "54210", + "54212", + "5422", + "54221", + "5423", + "5424", + "5425", + "5426", + "5427", + "5428", + "5429", + "5431", + "5432", + "54328", + "54329", + "5433", + "54331", + "54332", + "5434", + "54344", + "54345", + "54346", + "5435", + "5436", + "54360", + "54361", + "54363", + "5437", + "5438", + "54386", + "5439", + "5440", + "54407", + "5441", + "54413", + "54414", + "5442", + "54429", + "5443", + "54431", + "54432", + "54433", + "54434", + "54436", + "54437", + "54438", + "54439", + "5444", + "54440", + "54442", + "54443", + "5445", + "54453", + "54454", + "54455", + "54456", + "54457", + "54458", + "5446", + "54460", + "54461", + "54462", + "54463", + "54464", + "54465", + "54466", + "54467", + "54468", + "54469", + "5447", + "54470", + "54471", + "54472", + "54474", + "54475", + "54476", + "54477", + "54478", + "54480", + "54482", + "54487", + "5449", + "54490", + "54491", + "54492", + "54494", + "54495", + "54496", + "54497", + "54498", + "54499", + "545", + "5450", + "54502", + "54503", + "54504", + "54505", + "54507", + "54509", + "5451", + "54510", + "54511", + "54512", + "54514", + "54516", + "54517", + "54518", + "5452", + "54520", + "54521", + "54522", + "54529", + "5453", + "54531", + "54532", + "54534", + "54535", + "54536", + "54537", + "54538", + "54539", + "5454", + "54540", + "54541", + "54542", + "54543", + "54544", + "54545", + "54546", + "54549", + "5455", + "54550", + "54551", + "54552", + "54554", + "54555", + "54556", + "54557", + "54558", + "5456", + "54566", + "54567", + "5457", + "54575", + "54576", + "54577", + "54578", + "54579", + "5458", + "54583", + "54584", + "54585", + "54586", + "54587", + "5459", + "54596", + "546", + "5460", + "54600", + "54606", + "54617", + "54619", + "5462", + "54621", + "54622", + "54623", + "54625", + "54626", + "54627", + "54629", + "5463", + "5464", + "5465", + "54657", + "54658", + "54659", + "54662", + "54663", + "54664", + "54665", + "5467", + "54674", + "54675", + "54676", + "54677", + "5468", + "54680", + "54681", + "54682", + "5469", + "547", + "5470", + "54700", + "54704", + "54707", + "54708", + "5471", + "54714", + "54715", + "54716", + "54726", + "54729", + "5473", + "54732", + "54733", + "54734", + "54737", + "54738", + "54739", + "54741", + "54742", + "54749", + "5475", + "54751", + "54752", + "54753", + "54754", + "54756", + "54757", + "54758", + "5476", + "54760", + "54762", + "54763", + "54764", + "54765", + "54766", + "54768", + "54769", + "54776", + "54777", + "54778", + "5478", + "54780", + "54784", + "54785", + "54788", + "5479", + "54790", + "54793", + "54795", + "54796", + "54797", + "54798", + "54799", + "5480", + "54800", + "54801", + "54802", + "54805", + "54806", + "54807", + "54808", + "54809", + "5481", + "54810", + "54811", + "54813", + "54814", + "54815", + "54816", + "54819", + "54820", + "54821", + "54822", + "54823", + "54825", + "54826", + "54827", + "54828", + "54829", + "54830", + "54831", + "548313", + "54832", + "54834", + "54836", + "54838", + "54839", + "54840", + "54841", + "54842", + "54843", + "54845", + "54847", + "54848", + "54849", + "54850", + "54851", + "54852", + "54853", + "54854", + "54855", + "54856", + "54857", + "54858", + "54859", + "548593", + "548596", + "54860", + "54861", + "54862", + "54863", + "548644", + "548645", + "54865", + "54866", + "54867", + "54868", + "54869", + "54870", + "54872", + "54873", + "54874", + "54875", + "54876", + "54877", + "54878", + "54879", + "54880", + "54881", + "54882", + "54883", + "54884", + "54885", + "54886", + "54887", + "54888", + "54890", + "54891", + "54892", + "54893", + "54894", + "54896", + "54897", + "54898", + "54899", + "549", + "54900", + "54901", + "54902", + "54903", + "54904", + "54905", + "54906", + "54908", + "54910", + "54913", + "54914", + "54915", + "54916", + "54918", + "54919", + "54920", + "54921", + "54922", + "54923", + "54925", + "54926", + "54927", + "54928", + "54929", + "5493", + "54930", + "54931", + "54932", + "54933", + "54934", + "54935", + "54936", + "54937", + "54938", + "54939", + "5494", + "54940", + "54941", + "54942", + "54946", + "54947", + "54948", + "54949", + "5495", + "54951", + "54952", + "54953", + "54954", + "54955", + "54956", + "54957", + "54958", + "54959", + "5496", + "54960", + "54961", + "54962", + "54963", + "54964", + "54965", + "54967", + "54968", + "54969", + "54970", + "54971", + "54972", + "54973", + "54974", + "54976", + "54977", + "54978", + "54979", + "5498", + "54980", + "54981", + "54982", + "54984", + "54985", + "54986", + "54987", + "54988", + "54989", + "5499", + "54991", + "54993", + "54994", + "54995", + "54996", + "54997", + "54998", + "55", + "550", + "5500", + "55001", + "55002", + "55003", + "55004", + "55005", + "55006", + "55007", + "55008", + "55009", + "5501", + "55010", + "55011", + "55012", + "55013", + "55014", + "55015", + "55016", + "55017", + "55018", + "5502", + "55020", + "55022", + "55023", + "55024", + "55026", + "55027", + "55028", + "55030", + "55031", + "55032", + "55033", + "55034", + "55035", + "55036", + "55037", + "55038", + "55039", + "5504", + "55040", + "55041", + "55048", + "55049", + "55051", + "55052", + "55054", + "55055", + "55057", + "5506", + "55061", + "55062", + "55063", + "550631", + "55064", + "550643", + "55065", + "55066", + "55068", + "55069", + "5507", + "55070", + "55071", + "55072", + "55074", + "55075", + "55076", + "55079", + "55080", + "55081", + "55082", + "55083", + "55084", + "55086", + "55088", + "55089", + "5509", + "55090", + "55092", + "55093", + "55094", + "55095", + "55096", + "551", + "5510", + "55100", + "55101", + "55102", + "55103", + "55105", + "55106", + "55107", + "55108", + "55109", + "5511", + "55110", + "55111", + "55112", + "55113", + "55114", + "55116", + "55117", + "55118", + "55119", + "55120", + "55122", + "55124", + "55125", + "55127", + "55128", + "55129", + "55130", + "55131", + "55132", + "55133", + "55135", + "55137", + "55138", + "55139", + "5514", + "55140", + "55142", + "55143", + "55144", + "55145", + "55146", + "55147", + "55148", + "55149", + "5515", + "55150", + "55151", + "55152", + "55153", + "55154", + "55156", + "55157", + "55159", + "5516", + "55160", + "55161", + "55163", + "55164", + "55165", + "55166", + "55167", + "55168", + "55170", + "55171", + "55172", + "55173", + "55174", + "55175", + "55176", + "55177", + "55178", + "55179", + "5518", + "55180", + "55181", + "55182", + "55183", + "55184", + "55186", + "55187", + "55188", + "5519", + "55190", + "55191", + "55192", + "55193", + "55194", + "55195", + "55196", + "55197", + "55198", + "552", + "5520", + "55200", + "55201", + "55203", + "55204", + "55205", + "55206", + "55208", + "55209", + "5521", + "55210", + "55211", + "55212", + "55213", + "55214", + "55215", + "55216", + "55217", + "55218", + "55219", + "5522", + "55220", + "55222", + "55223", + "55224", + "55225", + "55226", + "55227", + "55228", + "5523", + "55231", + "55233", + "55234", + "55236", + "55237", + "55238", + "55239", + "5524", + "55240", + "55243", + "55244", + "55245", + "55246", + "55247", + "55248", + "55249", + "5525", + "55250", + "55251", + "55252", + "55253", + "55254", + "55255", + "55256", + "55257", + "55258", + "55259", + "5526", + "55260", + "55262", + "55266", + "55268", + "55269", + "5527", + "55270", + "55272", + "55273", + "55274", + "55275", + "55276", + "55277", + "55278", + "55279", + "5528", + "55280", + "55281", + "55282", + "55283", + "55284", + "55285", + "55286", + "55287", + "55288", + "552889", + "55289", + "552891", + "5529", + "55290", + "552900", + "55291", + "55293", + "55294", + "55295", + "55296", + "55297", + "55298", + "55299", + "553", + "5530", + "55300", + "55301", + "55303", + "55304", + "55308", + "5531", + "55311", + "553115", + "55312", + "55313", + "55314", + "55315", + "553158", + "55316", + "55317", + "55319", + "5532", + "55320", + "55321", + "55322", + "55323", + "55324", + "55325", + "55326", + "55327", + "55328", + "55329", + "5533", + "55330", + "55331", + "55332", + "55333", + "55334", + "55335", + "55336", + "55337", + "55339", + "5534", + "55340", + "55341", + "55342", + "55343", + "55344", + "55345", + "55346", + "55347", + "55349", + "55351", + "55352", + "55353", + "55355", + "55356", + "55357", + "55359", + "5536", + "55361", + "55362", + "55363", + "55364", + "55365", + "55366", + "55367", + "5537", + "55374", + "55379", + "5538", + "55388", + "5539", + "554", + "5540", + "5542", + "55421", + "55422", + "554226", + "55423", + "554235", + "55425", + "554251", + "554282", + "554313", + "55432", + "55435", + "55437", + "5544", + "5545", + "55450", + "55454", + "5546", + "55466", + "5547", + "55471", + "55486", + "5549", + "5550", + "55500", + "55501", + "55502", + "55503", + "55504", + "55505", + "55506", + "55507", + "55508", + "55509", + "5551", + "55510", + "55511", + "55512", + "55515", + "5552", + "55520", + "55521", + "55526", + "55527", + "55529", + "5553", + "55530", + "55531", + "55532", + "55534", + "55536", + "5554", + "55540", + "55544", + "5555", + "55552", + "55553", + "55554", + "55556", + "55558", + "55559", + "55561", + "55565", + "55567", + "55568", + "5557", + "55571", + "55572", + "55573", + "55576", + "55577", + "55578", + "5558", + "55582", + "55584", + "55585", + "55586", + "55588", + "55591", + "55593", + "55596", + "55599", + "55600", + "55601", + "55602", + "55603", + "55604", + "55605", + "55607", + "55608", + "55609", + "55610", + "55611", + "55612", + "55613", + "55614", + "55615", + "55616", + "55617", + "55619", + "5562", + "55620", + "55621", + "55622", + "55623", + "55624", + "55625", + "55626", + "55627", + "55628", + "55629", + "5563", + "55630", + "55631", + "55632", + "55633", + "55634", + "55635", + "55636", + "55638", + "5564", + "55640", + "55643", + "55644", + "55646", + "55647", + "5565", + "55650", + "55651", + "55652", + "55653", + "55654", + "55655", + "55656", + "55657", + "55658", + "55659", + "5566", + "55660", + "55662", + "55663", + "55664", + "55665", + "55666", + "55667", + "55668", + "55669", + "5567", + "55670", + "55671", + "55672", + "55676", + "55677", + "55679", + "5568", + "55680", + "55681", + "55683", + "55684", + "55686", + "55687", + "55689", + "5569", + "55690", + "55691", + "55692", + "55693", + "55695", + "55696", + "55697", + "55698", + "55699", + "5570", + "55700", + "55701", + "55702", + "55703", + "55704", + "55705", + "55706", + "55707", + "55709", + "5571", + "55711", + "55713", + "55714", + "55715", + "55716", + "55717", + "55718", + "55719", + "55720", + "55721", + "55722", + "55723", + "55726", + "55727", + "55728", + "55729", + "5573", + "55731", + "55732", + "55733", + "55734", + "55735", + "55737", + "55738", + "55739", + "55740", + "55741", + "55742", + "55743", + "55744", + "55745", + "55746", + "55748", + "55749", + "5575", + "55750", + "55751", + "55752", + "55753", + "55754", + "55755", + "55756", + "55757", + "55758", + "55759", + "5576", + "55760", + "55761", + "55762", + "55763", + "55764", + "55765", + "55766", + "55768", + "55769", + "5577", + "55770", + "55771", + "55773", + "55775", + "55776", + "55777", + "55778", + "55779", + "5578", + "55780", + "55781", + "55783", + "55784", + "55785", + "55786", + "55787", + "55788", + "55789", + "5579", + "55790", + "55791", + "55793", + "55794", + "55795", + "55796", + "55798", + "55799", + "558", + "5580", + "55800", + "55801", + "55802", + "55803", + "55805", + "55806", + "55808", + "55809", + "5581", + "55810", + "55811", + "55812", + "55813", + "55814", + "55815", + "55816", + "55818", + "55819", + "5582", + "55821", + "55823", + "55824", + "55825", + "55827", + "55829", + "5583", + "55830", + "55831", + "55832", + "55833", + "55835", + "55837", + "55839", + "5584", + "55840", + "55841", + "55843", + "55844", + "55845", + "55846", + "55847", + "55848", + "5585", + "55850", + "55851", + "55852", + "55854", + "55856", + "55857", + "55858", + "55859", + "5586", + "55860", + "55861", + "55862", + "55863", + "55867", + "55869", + "5587", + "55870", + "55871", + "55876", + "55879", + "5588", + "55884", + "55885", + "55888", + "55889", + "5589", + "55890", + "55891", + "55892", + "55893", + "55894", + "55897", + "55898", + "5590", + "55900", + "55901", + "55902", + "55904", + "55905", + "55906", + "55907", + "55909", + "5591", + "55911", + "55914", + "55915", + "55916", + "55917", + "5592", + "55920", + "55922", + "55924", + "55929", + "5593", + "55930", + "55937", + "5594", + "5595", + "55954", + "55957", + "55958", + "55959", + "5596", + "55964", + "55966", + "55967", + "55968", + "55969", + "5597", + "55970", + "55971", + "55972", + "55974", + "55975", + "5598", + "5599", + "55997", + "56", + "5600", + "56000", + "56001", + "56005", + "56006", + "5601", + "5603", + "56033", + "56034", + "5604", + "5605", + "56052", + "5606", + "56061", + "56062", + "56063", + "5607", + "5608", + "5609", + "56097", + "56098", + "56099", + "5610", + "56100", + "56101", + "56102", + "56103", + "56104", + "56105", + "56106", + "56107", + "56108", + "56109", + "5611", + "56110", + "56111", + "56112", + "56113", + "56114", + "5612", + "56121", + "56122", + "56123", + "56124", + "56125", + "56126", + "56127", + "56128", + "56129", + "5613", + "56130", + "56131", + "56132", + "56133", + "56134", + "56135", + "56136", + "56137", + "56138", + "56139", + "56140", + "56141", + "56142", + "56143", + "56144", + "56145", + "56146", + "56147", + "56154", + "56155", + "56156", + "56157", + "56158", + "56159", + "56160", + "56163", + "56164", + "56165", + "56169", + "5617", + "56171", + "56172", + "5618", + "56180", + "56181", + "5619", + "5620", + "56203", + "56204", + "5621", + "5623", + "5624", + "56241", + "56242", + "56243", + "56244", + "56245", + "56246", + "5625", + "56252", + "56253", + "56254", + "56255", + "56256", + "56257", + "56259", + "5626", + "56261", + "56262", + "56265", + "56267", + "56269", + "5627", + "56270", + "56271", + "56287", + "56288", + "5629", + "563", + "5630", + "56300", + "56301", + "56302", + "5631", + "56311", + "56339", + "5634", + "56341", + "56342", + "56344", + "5635", + "5636", + "5638", + "5639", + "5641", + "56413", + "5644", + "5645", + "5646", + "56474", + "56475", + "56477", + "56478", + "56479", + "5648", + "5649", + "5650", + "5651", + "5652", + "56521", + "5653", + "5654", + "56547", + "56548", + "5655", + "5657", + "566", + "5660", + "56603", + "56605", + "56606", + "5662", + "56623", + "56624", + "5663", + "5664", + "56647", + "56648", + "56649", + "56650", + "56652", + "56654", + "56655", + "56656", + "56658", + "56659", + "56660", + "56666", + "56667", + "56670", + "56672", + "56673", + "56674", + "56675", + "56676", + "56681", + "56683", + "5669", + "567", + "5670", + "56704", + "5671", + "5672", + "56729", + "5673", + "56731", + "5675", + "56751", + "5676", + "56776", + "5678", + "5680", + "5681", + "5682", + "56829", + "5683", + "56832", + "56833", + "56834", + "5684", + "56848", + "56849", + "5685", + "56850", + "56851", + "56852", + "56853", + "5686", + "5687", + "5688", + "56882", + "56884", + "56886", + "56888", + "56889", + "5689", + "56890", + "56891", + "56892", + "56893", + "56894", + "56895", + "56896", + "56897", + "56898", + "56899", + "5690", + "56900", + "56901", + "56902", + "56903", + "56904", + "56905", + "56906", + "56907", + "5691", + "56910", + "56911", + "56912", + "56913", + "56914", + "56915", + "56916", + "56917", + "56919", + "5692", + "56920", + "56922", + "56923", + "56924", + "56925", + "56926", + "56927", + "56928", + "56929", + "5693", + "56931", + "56934", + "56935", + "56936", + "56937", + "56938", + "5694", + "56940", + "56941", + "56942", + "56943", + "56944", + "56945", + "56946", + "56947", + "56948", + "56949", + "5695", + "56950", + "56951", + "56952", + "56953", + "56954", + "56955", + "56956", + "56957", + "5696", + "56961", + "56963", + "56964", + "56965", + "56967", + "5697", + "56970", + "56971", + "56975", + "56977", + "56978", + "56979", + "5698", + "56980", + "56981", + "56983", + "56984", + "56985", + "56986", + "56987", + "5699", + "56990", + "56992", + "56993", + "56994", + "56995", + "56996", + "56998", + "56999", + "570", + "5700", + "57001", + "57002", + "57003", + "57007", + "5701", + "57010", + "57016", + "57017", + "57018", + "57019", + "5702", + "57020", + "57026", + "57030", + "57035", + "57037", + "57038", + "5704", + "57045", + "57047", + "57048", + "5705", + "57050", + "57053", + "57054", + "57055", + "57057", + "5706", + "57060", + "57062", + "5707", + "5708", + "57082", + "57084", + "57085", + "57088", + "57089", + "5709", + "57091", + "57092", + "57093", + "57094", + "57095", + "57096", + "57097", + "57099", + "571", + "5710", + "57101", + "57102", + "57103", + "57104", + "57105", + "57106", + "57107", + "57109", + "5711", + "57110", + "57111", + "57113", + "57115", + "57116", + "57117", + "57118", + "57119", + "57120", + "57121", + "57122", + "57124", + "57125", + "57126", + "57127", + "57128", + "57129", + "5713", + "57130", + "57132", + "57134", + "57135", + "57136", + "57139", + "5714", + "57140", + "57142", + "57143", + "57144", + "57146", + "57147", + "57148", + "57149", + "5715", + "57150", + "57151", + "57152", + "57153", + "57154", + "57156", + "57157", + "57158", + "57159", + "5716", + "57161", + "57162", + "57165", + "57167", + "57168", + "57169", + "5717", + "57171", + "57172", + "57175", + "57176", + "57178", + "57179", + "5718", + "57180", + "57181", + "57182", + "57184", + "57185", + "57186", + "57187", + "57188", + "57189", + "5719", + "57190", + "57191", + "57192", + "57194", + "57198", + "572", + "5720", + "57205", + "57209", + "5721", + "57210", + "57211", + "57213", + "57214", + "57215", + "57216", + "57217", + "57221", + "57222", + "57223", + "57224", + "57226", + "57228", + "5723", + "57231", + "57232", + "5724", + "5725", + "5726", + "5727", + "5728", + "57282", + "5729", + "573", + "5730", + "5731", + "5732", + "57325", + "57326", + "5733", + "57332", + "57333", + "57335", + "57336", + "57337", + "57338", + "5734", + "57343", + "57348", + "57369", + "5737", + "57379", + "5738", + "57380", + "57381", + "5739", + "57393", + "57396", + "5740", + "57402", + "57403", + "57404", + "57405", + "57406", + "57407", + "57408", + "57409", + "5741", + "57410", + "57412", + "57413", + "57414", + "57415", + "57418", + "57419", + "5742", + "5743", + "5744", + "574414", + "57446", + "57447", + "57448", + "57449", + "5745", + "57451", + "57452", + "57453", + "574537", + "57455", + "57456", + "57458", + "57459", + "5746", + "57460", + "57461", + "57462", + "57463", + "57464", + "57465", + "57466", + "57467", + "57468", + "57469", + "5747", + "57470", + "57471", + "57472", + "57473", + "57474", + "57475", + "57476", + "57477", + "57478", + "57479", + "57480", + "57481", + "57482", + "57484", + "57486", + "57488", + "57489", + "57491", + "57492", + "57493", + "57494", + "57495", + "57496", + "57497", + "57498", + "575", + "57501", + "57502", + "57504", + "57505", + "57506", + "57507", + "57508", + "57509", + "57510", + "57511", + "57512", + "57513", + "57514", + "57515", + "57519", + "57520", + "57521", + "57522", + "57523", + "57524", + "57526", + "57528", + "57529", + "5753", + "57530", + "57531", + "57532", + "57533", + "57534", + "57535", + "57536", + "57537", + "57538", + "57539", + "5754", + "57540", + "57541", + "57542", + "57544", + "57545", + "57546", + "57547", + "57549", + "57551", + "57552", + "57553", + "57554", + "57555", + "57556", + "57558", + "57559", + "5756", + "57560", + "57561", + "57562", + "57563", + "57565", + "57567", + "57568", + "57569", + "5757", + "57570", + "57571", + "57572", + "57573", + "57574", + "57575", + "57576", + "57577", + "57578", + "57579", + "57580", + "57582", + "57583", + "57584", + "57585", + "57586", + "57587", + "57589", + "57590", + "57591", + "57592", + "57593", + "57594", + "57595", + "57597", + "57599", + "576", + "57600", + "57602", + "57604", + "57605", + "57606", + "57608", + "57609", + "57610", + "57611", + "57613", + "57614", + "57615", + "57616", + "57617", + "57619", + "57620", + "57621", + "57622", + "57623", + "57624", + "57626", + "57628", + "5763", + "57630", + "57631", + "57633", + "57634", + "57636", + "57639", + "5764", + "57642", + "57643", + "57645", + "57646", + "57647", + "57648", + "57649", + "57650", + "57654", + "57655", + "57657", + "57658", + "57659", + "57661", + "57662", + "57663", + "57664", + "57665", + "57666", + "57669", + "57670", + "57673", + "57674", + "57677", + "57678", + "57679", + "5768", + "57680", + "57683", + "57684", + "57685", + "57687", + "57688", + "57689", + "57691", + "57692", + "57693", + "57695", + "57696", + "57697", + "57698", + "57699", + "577", + "5770", + "57700", + "57701", + "57703", + "57704", + "57705", + "57706", + "57707", + "57708", + "57709", + "5771", + "57710", + "57711", + "57713", + "57715", + "57716", + "57717", + "57718", + "57719", + "57720", + "57721", + "57722", + "57724", + "57727", + "57728", + "57730", + "57731", + "57732", + "5774", + "5775", + "57758", + "57761", + "57763", + "5777", + "5778", + "57786", + "57787", + "57794", + "57795", + "57798", + "57799", + "578", + "5780", + "57801", + "57804", + "57805", + "5781", + "57817", + "57818", + "57819", + "5782", + "57821", + "57822", + "57823", + "57824", + "57826", + "57827", + "57828", + "57829", + "5783", + "57830", + "57834", + "57835", + "5784", + "57862", + "57863", + "57864", + "5787", + "5788", + "5789", + "579", + "5790", + "5791", + "5792", + "5793", + "5794", + "5795", + "5796", + "5797", + "5798", + "5799", + "58", + "580", + "5800", + "5801", + "5802", + "5803", + "5805", + "5806", + "581", + "5810", + "5813", + "5814", + "58155", + "58157", + "58158", + "5816", + "5817", + "5818", + "58189", + "5819", + "58190", + "58191", + "582", + "5822", + "5824", + "5825", + "5826", + "5827", + "5828", + "5829", + "583", + "5830", + "5831", + "5832", + "5833", + "5834", + "5836", + "5837", + "58472", + "58473", + "58475", + "58476", + "58477", + "58478", + "58480", + "58484", + "58485", + "58486", + "58487", + "58488", + "58489", + "58490", + "58491", + "58492", + "58493", + "58494", + "58495", + "58496", + "58497", + "58498", + "58499", + "585", + "58500", + "58503", + "58504", + "58505", + "58506", + "58508", + "58509", + "58510", + "58511", + "58512", + "58513", + "58515", + "58516", + "58517", + "58524", + "58526", + "58527", + "58528", + "58529", + "58530", + "58531", + "58533", + "58538", + "5858", + "5859", + "586", + "5860", + "5861", + "5862", + "5863", + "5864", + "5865", + "5866", + "5867", + "5868", + "5869", + "587", + "5870", + "5871", + "5872", + "5873", + "5874", + "5875", + "5876", + "5877", + "5878", + "5879", + "5880", + "5881", + "5883", + "5884", + "5885", + "5886", + "5887", + "5888", + "5889", + "5890", + "5891", + "5892", + "5893", + "5894", + "5896", + "5898", + "58985", + "58986", + "5899", + "59", + "590", + "5900", + "5901", + "5902", + "5903", + "5905", + "5906", + "59067", + "5908", + "59082", + "59084", + "5909", + "5910", + "5911", + "5912", + "5913", + "5914", + "5915", + "5916", + "5917", + "5918", + "5919", + "5920", + "5921", + "5922", + "5923", + "5924", + "5925", + "5926", + "59269", + "5927", + "59271", + "59272", + "59274", + "59277", + "5928", + "59283", + "59284", + "59285", + "59286", + "5929", + "593", + "5930", + "59307", + "5931", + "5932", + "5933", + "59335", + "59336", + "59338", + "59339", + "5934", + "59340", + "59341", + "59342", + "59343", + "59344", + "59345", + "59348", + "59349", + "5935", + "59350", + "59351", + "59352", + "59353", + "5936", + "5937", + "5939", + "594", + "5940", + "5948", + "594855", + "594857", + "5949", + "595", + "5950", + "5954", + "5955", + "5956", + "5957", + "5959", + "596", + "5961", + "5962", + "5965", + "5966", + "5967", + "5968", + "597", + "5970", + "5971", + "5972", + "5973", + "5976", + "5977", + "5978", + "5979", + "598", + "5980", + "5981", + "5982", + "5983", + "5984", + "5985", + "5986", + "5987", + "5988", + "5989", + "599", + "5990", + "5991", + "5992", + "5993", + "5994", + "5995", + "5996", + "5997", + "5998", + "5999", + "60", + "6000", + "6001", + "6002", + "6003", + "6004", + "6005", + "6006", + "6007", + "6009", + "6010", + "6011", + "6013", + "6014", + "6015", + "6016", + "6017", + "6018", + "6019", + "602", + "60312", + "60313", + "60314", + "60343", + "6035", + "6036", + "6037", + "60370", + "6038", + "60385", + "60386", + "6039", + "604", + "60401", + "6041", + "60412", + "60436", + "60437", + "6045", + "6046", + "60468", + "6047", + "6048", + "60481", + "60482", + "60484", + "60485", + "60487", + "60488", + "60489", + "6049", + "60490", + "60491", + "60492", + "60493", + "60494", + "60495", + "60496", + "605", + "6050", + "60506", + "60509", + "6051", + "60526", + "60528", + "60529", + "60558", + "60559", + "60560", + "60561", + "6059", + "60592", + "60598", + "60625", + "60626", + "606495", + "60672", + "60673", + "60675", + "60676", + "60677", + "60678", + "60680", + "60681", + "60682", + "60684", + "60685", + "60686", + "607", + "608", + "6091", + "6092", + "6093", + "6094", + "6095", + "6096", + "6097", + "6098", + "610", + "6100", + "6101", + "6102", + "6103", + "611", + "6117", + "6118", + "6119", + "6120", + "6121", + "6122", + "6123", + "6124", + "6125", + "6128", + "6129", + "613", + "6130", + "613037", + "6132", + "613209", + "613210", + "613211", + "613212", + "613227", + "6133", + "6135", + "6136", + "6137", + "6138", + "6139", + "6141", + "6142", + "6143", + "6144", + "6146", + "6147", + "6150", + "6152", + "6154", + "6155", + "6156", + "6157", + "6158", + "6159", + "6160", + "6161", + "6164", + "6165", + "6166", + "6167", + "6168", + "6169", + "617", + "6170", + "6171", + "6173", + "6175", + "6176", + "6181", + "6182", + "6183", + "6184", + "6185", + "6187", + "6188", + "6189", + "6191", + "619189", + "6192", + "619207", + "619208", + "619279", + "6193", + "619373", + "6194", + "6195", + "6196", + "6197", + "6198", + "6199", + "6201", + "6202", + "6203", + "6204", + "6205", + "6206", + "6207", + "6208", + "6209", + "6210", + "6217", + "6218", + "622", + "6222", + "6223", + "6224", + "6227", + "6228", + "6229", + "623", + "6230", + "6231", + "6232", + "6233", + "6234", + "6235", + "6237", + "6238", + "6239", + "624", + "6240", + "6241", + "6242", + "6247", + "6248", + "6249", + "6251", + "6252", + "6253", + "6256", + "6257", + "6258", + "6259", + "6261", + "6262", + "6263", + "627", + "6271", + "6272", + "6274", + "6275", + "6276", + "6277", + "6278", + "6279", + "6280", + "6281", + "6282", + "6283", + "6284", + "6285", + "6286", + "6288", + "6289", + "629", + "6291", + "6293", + "6294", + "6295", + "6296", + "6297", + "6299", + "6300", + "6301", + "6302", + "63027", + "6303", + "63035", + "63036", + "6304", + "6305", + "6307", + "6309", + "631", + "6310", + "6311", + "6314", + "6317", + "6318", + "6319", + "632", + "6320", + "6322", + "6323", + "6324", + "6326", + "6327", + "6328", + "6329", + "633", + "6330", + "6331", + "6332", + "6334", + "6335", + "6336", + "6337", + "6338", + "6339", + "634", + "6340", + "6341", + "6342", + "6343", + "6344", + "6345", + "6346", + "6347", + "6348", + "635", + "6351", + "6354", + "6355", + "6356", + "6357", + "6358", + "6359", + "636", + "6360", + "6361", + "6362", + "6363", + "6364", + "6366", + "6367", + "6368", + "6369", + "637", + "6370", + "6372", + "6373", + "6374", + "6375", + "6376", + "638", + "6382", + "63826", + "63827", + "6383", + "6385", + "6386", + "6387", + "63874", + "63875", + "63876", + "63877", + "6388", + "6389", + "63891", + "63892", + "63893", + "63894", + "63895", + "63897", + "63898", + "63899", + "639", + "6390", + "63901", + "63904", + "63905", + "63906", + "63908", + "6391", + "63910", + "63915", + "63916", + "63917", + "6392", + "63920", + "63922", + "63923", + "63924", + "63925", + "63926", + "63928", + "63929", + "63931", + "63932", + "63933", + "63934", + "63935", + "63939", + "63940", + "63941", + "63943", + "63946", + "63947", + "63948", + "63950", + "63951", + "6396", + "63967", + "6397", + "63970", + "63971", + "63973", + "63974", + "63976", + "63977", + "63978", + "63979", + "6398", + "63982", + "6399", + "640", + "6400", + "64005", + "6401", + "6402", + "6403", + "6404", + "6405", + "6406", + "64061", + "64062", + "64063", + "64064", + "64065", + "64066", + "64067", + "6407", + "64072", + "64073", + "64077", + "64078", + "64080", + "64081", + "64083", + "64084", + "64087", + "64089", + "64090", + "64091", + "64092", + "64093", + "64094", + "64096", + "64098", + "641", + "64100", + "64101", + "64102", + "64105", + "64106", + "64108", + "64110", + "64111", + "64112", + "64114", + "64115", + "64116", + "64118", + "64121", + "64122", + "64123", + "64127", + "64129", + "64130", + "64131", + "64132", + "641339", + "64135", + "64137", + "641371", + "641372", + "6414", + "64145", + "641455", + "64146", + "64149", + "6415", + "64151", + "6416", + "641649", + "641654", + "64167", + "64168", + "64170", + "641700", + "64172", + "64174", + "64175", + "641776", + "6418", + "64180", + "64184", + "6419", + "642", + "64207", + "64208", + "6421", + "64210", + "64211", + "64215", + "64216", + "64218", + "64219", + "6422", + "64220", + "64221", + "64222", + "64223", + "64224", + "64225", + "642273", + "6423", + "64231", + "64232", + "64236", + "6424", + "64240", + "64241", + "642446", + "642475", + "642489", + "6425", + "642515", + "642517", + "642574", + "642597", + "6426", + "642612", + "642623", + "642636", + "642658", + "642659", + "6427", + "642778", + "642799", + "6428", + "64282", + "64283", + "64284", + "642843", + "64285", + "64288", + "6429", + "642938", + "642968", + "642987", + "643", + "6430", + "643008", + "643037", + "6431", + "643136", + "643155", + "643161", + "64318", + "64319", + "6432", + "64320", + "64321", + "643226", + "643236", + "64324", + "643246", + "64326", + "64327", + "64328", + "6433", + "643311", + "64332", + "643338", + "643376", + "643382", + "643394", + "6434", + "643414", + "643418", + "64342", + "64343", + "64344", + "64359", + "643596", + "643641", + "643664", + "643669", + "643677", + "643680", + "643699", + "643707", + "64374", + "64375", + "64376", + "64377", + "643803", + "643812", + "643834", + "643836", + "643847", + "643853", + "643854", + "64386", + "643866", + "64388", + "643904", + "643909", + "64393", + "64395", + "64396", + "643965", + "64397", + "64398", + "643988", + "64399", + "644", + "6440", + "64400", + "644019", + "64403", + "644041", + "64405", + "644054", + "64407", + "644070", + "64409", + "644096", + "6441", + "64410", + "644100", + "64411", + "64412", + "644139", + "644145", + "644150", + "644168", + "64417", + "64418", + "644186", + "64419", + "6442", + "64420", + "64421", + "64422", + "64423", + "64425", + "64426", + "64427", + "64428", + "64429", + "6443", + "64430", + "64431", + "64432", + "64434", + "6444", + "644414", + "64446", + "6445", + "644524", + "644538", + "644591", + "644596", + "6446", + "644672", + "6447", + "64478", + "6448", + "644815", + "644844", + "644890", + "6449", + "644943", + "644974", + "64499", + "644994", + "645", + "6450", + "645027", + "645051", + "64506", + "645073", + "6451", + "645104", + "645121", + "645142", + "64518", + "645191", + "6452", + "6453", + "645359", + "645369", + "645382", + "645402", + "645414", + "645426", + "645432", + "6455", + "645545", + "6456", + "6457", + "645745", + "64577", + "64579", + "64581", + "645811", + "64582", + "645832", + "645836", + "645864", + "64591", + "645974", + "64598", + "64599", + "646", + "64600", + "646000", + "64601", + "646019", + "646066", + "6461", + "646103", + "646174", + "6462", + "646262", + "6464", + "64641", + "646424", + "64645", + "646457", + "64648", + "646480", + "646486", + "646498", + "64651", + "646603", + "646625", + "646627", + "64663", + "646643", + "646658", + "646754", + "646799", + "6468", + "646817", + "64682", + "646851", + "646862", + "646864", + "64689", + "646892", + "6469", + "64693", + "646951", + "646960", + "646962", + "64699", + "6470", + "647024", + "647042", + "64708", + "647087", + "64710", + "64711", + "647135", + "64714", + "647166", + "647174", + "64718", + "6472", + "647219", + "647264", + "647286", + "6473", + "647309", + "647310", + "6474", + "64743", + "64744", + "64745", + "64746", + "64747", + "64748", + "64750", + "64753", + "64754", + "64755", + "64756", + "64757", + "647589", + "64759", + "6476", + "64760", + "64761", + "64762", + "64763", + "64764", + "64766", + "64768", + "64769", + "6477", + "64770", + "64771", + "64772", + "64773", + "64776", + "64777", + "64778", + "64779", + "6478", + "64780", + "64781", + "64782", + "64783", + "64784", + "64785", + "64786", + "64787", + "64788", + "64789", + "64792", + "64793", + "64794", + "64795", + "64798", + "64799", + "648", + "6480", + "64800", + "64801", + "64802", + "64805", + "64806", + "64816", + "6482", + "6483", + "64834", + "64837", + "64838", + "64839", + "6484", + "64840", + "64841", + "64843", + "64844", + "64847", + "64848", + "64849", + "64850", + "64852", + "64853", + "64854", + "64855", + "64856", + "64857", + "64858", + "64859", + "64860", + "64863", + "64866", + "6487", + "648791", + "64881", + "6489", + "64895", + "64897", + "649", + "6490", + "64900", + "64901", + "64902", + "6491", + "649137", + "64919", + "6492", + "64921", + "64922", + "649238", + "64924", + "64925", + "64926", + "64927", + "64928", + "6493", + "649330", + "6494", + "64943", + "64946", + "64949", + "6495", + "64951", + "6496", + "64960", + "64963", + "64965", + "64968", + "64969", + "6497", + "64975", + "64976", + "64978", + "64979", + "6498", + "64981", + "64983", + "6499", + "650", + "6500", + "65003", + "65005", + "65008", + "65009", + "65010", + "65018", + "6502", + "6503", + "6504", + "6505", + "65055", + "65056", + "65059", + "6506", + "65061", + "65062", + "65065", + "6507", + "65078", + "6508", + "65080", + "65082", + "65083", + "65084", + "6509", + "65095", + "651", + "6510", + "65108", + "65109", + "6511", + "65110", + "65117", + "6512", + "65121", + "65122", + "65123", + "65124", + "65125", + "6513", + "6514", + "6515", + "6517", + "651746", + "6518", + "6519", + "652", + "6520", + "6521", + "65217", + "6522", + "65220", + "6523", + "6524", + "65243", + "65244", + "65249", + "6525", + "65250", + "65251", + "65258", + "6526", + "65260", + "65263", + "65264", + "65265", + "65266", + "65267", + "65268", + "6527", + "6528", + "6529", + "652968", + "652991", + "653", + "6530", + "653061", + "653067", + "653073", + "653075", + "653082", + "6531", + "653121", + "653125", + "653140", + "653145", + "653149", + "653192", + "6532", + "653220", + "653240", + "653247", + "653269", + "653275", + "653282", + "6533", + "653308", + "653319", + "653333", + "653361", + "6534", + "653404", + "653423", + "653427", + "653437", + "653464", + "653486", + "653489", + "653499", + "6535", + "653505", + "653509", + "653519", + "653550", + "653567", + "653583", + "653598", + "6536", + "653604", + "653619", + "653641", + "653643", + "653656", + "653657", + "653689", + "653720", + "653781", + "653784", + "6538", + "653808", + "653820", + "653857", + "6539", + "654", + "6540", + "6541", + "6542", + "654231", + "654254", + "6543", + "654346", + "654364", + "654429", + "654463", + "654483", + "6545", + "654502", + "6546", + "6547", + "654790", + "6548", + "6549", + "655", + "6550", + "6553", + "6554", + "6555", + "6556", + "6557", + "6558", + "6559", + "656", + "6561", + "6563", + "6564", + "6565", + "6566", + "6567", + "6568", + "6569", + "657", + "6570", + "6571", + "6572", + "6573", + "6574", + "6575", + "6576", + "6578", + "6579", + "658", + "6580", + "6581", + "6582", + "6583", + "6584", + "6585", + "6586", + "6588", + "659", + "6590", + "6591", + "6594", + "6595", + "6596", + "6597", + "65975", + "65977", + "65979", + "6598", + "65980", + "65981", + "65982", + "65983", + "65985", + "65986", + "65987", + "65988", + "65989", + "6599", + "65990", + "65991", + "65992", + "65993", + "65997", + "65998", + "65999", + "660", + "66000", + "66002", + "66004", + "66005", + "66008", + "6601", + "6602", + "6603", + "66035", + "66036", + "66037", + "6604", + "6605", + "6606", + "6607", + "6608", + "6609", + "661", + "6610", + "6611", + "6612", + "6613", + "6614", + "6615", + "6616", + "6617", + "6618", + "6619", + "662", + "6620", + "6621", + "6622", + "6623", + "6624", + "6625", + "6626", + "6627", + "6628", + "6629", + "6631", + "6632", + "6633", + "6634", + "6635", + "6636", + "6637", + "6638", + "664", + "6640", + "6641", + "6642", + "6643", + "6645", + "6646", + "6647", + "6648", + "6649", + "665", + "6650", + "6651", + "6652", + "6653", + "6654", + "6655", + "6656", + "6657", + "6658", + "6659", + "666", + "6660", + "6662", + "6663", + "6664", + "6665", + "6666", + "6667", + "6668", + "667", + "6670", + "6671", + "6672", + "6674", + "6676", + "6677", + "6678", + "668", + "6683", + "6687", + "6688", + "6689", + "669", + "6690", + "6691", + "6692", + "6693", + "6694", + "6695", + "6696", + "6697", + "6698", + "6699", + "670", + "6700", + "6701", + "6703", + "6704", + "6705", + "6706", + "6707", + "6708", + "6709", + "671", + "6710", + "6711", + "6712", + "6713", + "6714", + "6715", + "6716", + "6717", + "6718", + "672", + "6720", + "6721", + "6722", + "6723", + "6725", + "6726", + "6727", + "6728", + "6729", + "673", + "6730", + "6731", + "6732", + "6733", + "6734", + "6736", + "6737", + "6738", + "6741", + "6742", + "6744", + "6745", + "6746", + "6747", + "6748", + "6749", + "675", + "6750", + "6751", + "6752", + "6753", + "6754", + "6755", + "6756", + "6757", + "6758", + "6759", + "676", + "6760", + "6764", + "6767", + "6768", + "6769", + "677", + "6770", + "6772", + "6773", + "6774", + "6775", + "6776", + "6777", + "6778", + "6779", + "678", + "6780", + "6781", + "6782", + "6783", + "6785", + "6786", + "6787", + "6788", + "6789", + "6790", + "6792", + "6793", + "6794", + "6795", + "6799", + "680", + "6801", + "6804", + "6809", + "6810", + "6811", + "6812", + "6813", + "6814", + "6815", + "6818", + "6819", + "682", + "6820", + "6821", + "6822", + "6827", + "6829", + "683", + "6830", + "6832", + "6833", + "6834", + "6835", + "6836", + "6837", + "6838", + "6839", + "684", + "6840", + "6843", + "6844", + "6845", + "6846", + "6847", + "685", + "6850", + "6853", + "6854", + "6855", + "6856", + "6857", + "6860", + "6861", + "6862", + "6863", + "6865", + "6867", + "6868", + "6869", + "687", + "6870", + "6871", + "6872", + "6873", + "6874", + "6875", + "6876", + "6877", + "6878", + "6879", + "688", + "6880", + "6881", + "6882", + "6883", + "6884", + "6885", + "6886", + "6887", + "6888", + "689", + "6890", + "6891", + "6892", + "6894", + "6895", + "6897", + "6898", + "6899", + "6900", + "6901", + "6902", + "6903", + "6904", + "6905", + "6906", + "6907", + "6908", + "6909", + "6910", + "6911", + "6913", + "6915", + "6917", + "6919", + "6920", + "692094", + "6921", + "6923", + "692312", + "6924", + "6925", + "6926", + "6927", + "6928", + "6929", + "6932", + "6934", + "6936", + "6938", + "6939", + "694", + "6940", + "6941", + "6942", + "6943", + "6944", + "6945", + "6947", + "6948", + "6949", + "695", + "6950", + "6954", + "696", + "6975", + "6988", + "699", + "6990", + "6991", + "6992", + "6993", + "6996", + "6997", + "6999", + "70", + "7001", + "7003", + "7004", + "7005", + "7006", + "7007", + "7008", + "7009", + "701", + "7010", + "7011", + "7013", + "7014", + "7015", + "7016", + "7018", + "7019", + "7021", + "7022", + "7023", + "7024", + "7025", + "7026", + "7027", + "7029", + "7030", + "7031", + "7032", + "7033", + "7035", + "7036", + "7037", + "7038", + "7039", + "7040", + "7041", + "7042", + "7043", + "7044", + "7045", + "7046", + "7047", + "7048", + "7049", + "705", + "7050", + "7051", + "7052", + "7053", + "7054", + "7056", + "7057", + "7058", + "7059", + "706", + "7060", + "7062", + "7064", + "7066", + "7067", + "7068", + "7069", + "7070", + "7071", + "7072", + "7073", + "7074", + "7075", + "7076", + "7077", + "7078", + "7079", + "708", + "7080", + "7082", + "7083", + "7084", + "7086", + "7087", + "7088", + "7089", + "7090", + "7091", + "7092", + "7093", + "7094", + "7095", + "7096", + "7097", + "7098", + "7099", + "71", + "710", + "7100", + "7101", + "7102", + "7103", + "7104", + "7105", + "7106", + "7107", + "7108", + "7109", + "7110", + "7111", + "7112", + "7113", + "7114", + "712", + "7122", + "7123", + "7124", + "7125", + "7126", + "7127", + "7128", + "7130", + "7132", + "7133", + "7134", + "7135", + "7136", + "7137", + "7138", + "7139", + "714", + "7140", + "7141", + "7142", + "7143", + "7145", + "7148", + "715", + "7150", + "7153", + "7155", + "7156", + "7157", + "7158", + "7159", + "716", + "7161", + "7162", + "7163", + "7164", + "7165", + "7166", + "7167", + "7168", + "7169", + "717", + "7170", + "7171", + "7172", + "7173", + "7174", + "7175", + "7177", + "7178", + "7179", + "718", + "7180", + "7181", + "7182", + "7184", + "7185", + "7186", + "7187", + "7188", + "7189", + "719", + "72", + "720", + "7200", + "7201", + "7203", + "7204", + "7205", + "721", + "7216", + "722", + "7220", + "7222", + "7223", + "7224", + "7225", + "7226", + "7227", + "723790", + "723961", + "7247", + "7248", + "7249", + "725", + "7251", + "7252", + "7253", + "7257", + "7258", + "7259", + "726", + "7260", + "7262", + "7263", + "7264", + "7265", + "7266", + "7267", + "7268", + "727", + "7270", + "7272", + "7273", + "7274", + "7275", + "7276", + "7277", + "727764", + "7278", + "727800", + "727830", + "727832", + "727837", + "727851", + "727857", + "727866", + "727897", + "727905", + "727909", + "727910", + "727924", + "727936", + "727940", + "727957", + "728", + "7280", + "728036", + "728042", + "728047", + "728049", + "728062", + "728072", + "728075", + "728082", + "728090", + "728096", + "728113", + "728116", + "728118", + "728130", + "728132", + "728137", + "728194", + "728215", + "728224", + "728226", + "728229", + "728239", + "728255", + "728269", + "728276", + "728279", + "728294", + "728299", + "7283", + "728310", + "728317", + "728318", + "728340", + "728343", + "728358", + "728361", + "728369", + "728373", + "728378", + "728379", + "728386", + "728392", + "728393", + "728395", + "7284", + "728400", + "728403", + "728405", + "728419", + "728458", + "728464", + "728489", + "728492", + "728498", + "728524", + "728537", + "728568", + "728577", + "728586", + "728588", + "728591", + "728597", + "7286", + "728621", + "728637", + "728642", + "728656", + "728661", + "728689", + "728695", + "7287", + "728712", + "728734", + "728741", + "728743", + "728763", + "728780", + "7288", + "728819", + "728833", + "728858", + "728888", + "7289", + "728911", + "728927", + "728945", + "728957", + "729", + "7290", + "729020", + "729025", + "729085", + "729092", + "7291", + "7292", + "729201", + "729233", + "729238", + "729240", + "729246", + "729250", + "729262", + "729264", + "7293", + "729330", + "729355", + "729359", + "729384", + "729396", + "7294", + "729422", + "729428", + "729431", + "729438", + "729440", + "729442", + "729447", + "729458", + "729475", + "7295", + "729515", + "729528", + "729533", + "729540", + "729597", + "7296", + "729627", + "729665", + "7297", + "729747", + "729759", + "729767", + "7298", + "729830", + "729852", + "729857", + "729873", + "729877", + "7299", + "729920", + "729956", + "729966", + "729967", + "729974", + "729978", + "729991", + "729993", + "730", + "730005", + "730051", + "730087", + "730094", + "7301", + "730112", + "730130", + "730159", + "730249", + "730262", + "730291", + "7305", + "7306", + "7307", + "730755", + "731", + "7311", + "731220", + "7314", + "7316", + "7317", + "7318", + "7319", + "732", + "7320", + "7321", + "7322", + "7323", + "7324", + "7325", + "7326", + "7327", + "7328", + "7329", + "733", + "7332", + "7334", + "7335", + "7336", + "7337", + "734", + "7341", + "7342", + "7343", + "7345", + "7347", + "7348", + "7349", + "735", + "7350", + "7351", + "7352", + "7353", + "7355", + "7356", + "7357", + "7358", + "7360", + "7363", + "7364", + "7365", + "7366", + "7367", + "7368", + "7369", + "7371", + "7372", + "7373", + "7374", + "7375", + "7376", + "7378", + "7379", + "738", + "7380", + "7381", + "7384", + "7385", + "7386", + "7388", + "7389", + "7390", + "7391", + "7392", + "7398", + "7399", + "740", + "7401", + "7402", + "7403", + "7404", + "7405", + "7407", + "7408", + "7409", + "741", + "7410", + "7411", + "7412", + "7414", + "7415", + "7416", + "7417", + "7419", + "7423", + "7424", + "7425", + "7428", + "7429", + "7430", + "7431", + "7432", + "7433", + "7434", + "7436", + "7439", + "744", + "7441", + "7442", + "7443", + "7444", + "7447", + "7448", + "745", + "7450", + "7453", + "7454", + "7455", + "7456", + "7458", + "746", + "7461", + "7462", + "7464", + "7465", + "7466", + "7468", + "7469", + "747", + "7471", + "7472", + "7473", + "7474", + "7475", + "7476", + "7477", + "7478", + "7479", + "7480", + "7481", + "7482", + "7483", + "7484", + "7485", + "7486", + "7490", + "7494", + "7498", + "7499", + "7504", + "7507", + "7508", + "751071", + "7511", + "7512", + "7514", + "7515", + "7516", + "7517", + "7518", + "752", + "7520", + "752014", + "7525", + "7528", + "7529", + "753", + "7531", + "7532", + "7533", + "7534", + "7535", + "7536", + "7538", + "7539", + "754", + "7541", + "7542", + "7543", + "7544", + "7545", + "7546", + "7547", + "7549", + "755", + "7552", + "7553", + "7554", + "7555", + "7556", + "7559", + "7561", + "7562", + "7564", + "7565", + "7566", + "7567", + "7568", + "7569", + "757", + "7570", + "7571", + "7572", + "7574", + "7576", + "7579", + "758", + "7580", + "7581", + "7582", + "7584", + "7586", + "7587", + "7589", + "759", + "7592", + "7593", + "7594", + "7596", + "7597", + "760", + "761", + "7617", + "762", + "7620", + "7621", + "7625", + "7626", + "7627", + "7629", + "763", + "7633", + "7634", + "7637", + "7638", + "7639", + "7643", + "7644", + "765", + "7652", + "766", + "767", + "7673", + "7675", + "7678", + "768", + "7681", + "768206", + "768211", + "768239", + "7690", + "7691", + "7692", + "7693", + "7694", + "7695", + "7697", + "7699", + "770", + "7700", + "7701", + "7702", + "7703", + "7704", + "7705", + "7706", + "7707", + "7709", + "771", + "7710", + "7711", + "7712", + "7716", + "7718", + "7726", + "7727", + "7728", + "773", + "7732", + "7733", + "7737", + "7738", + "7739", + "774", + "7741", + "7743", + "7745", + "7746", + "7748", + "775", + "7750", + "7752", + "7753", + "7755", + "7756", + "7757", + "776", + "7760", + "7761", + "7762", + "7763", + "7764", + "7766", + "7767", + "7768", + "7769", + "777", + "7770", + "7771", + "7772", + "7773", + "7775", + "7776", + "7779", + "778", + "7780", + "7781", + "7782", + "7783", + "7784", + "7786", + "7789", + "779", + "7791", + "7798", + "7799", + "780", + "7802", + "7803", + "7804", + "7805", + "780776", + "7809", + "781", + "7812", + "7813", + "7818", + "782", + "7827", + "783", + "7832", + "7837", + "784", + "7840", + "7841", + "7844", + "7846", + "7849", + "785", + "7850", + "7851", + "7852", + "7855", + "7857", + "786", + "7862", + "7866", + "7867", + "7869", + "7871", + "7874", + "7879", + "788", + "7881", + "7884", + "78986", + "78987", + "78988", + "78989", + "78990", + "78991", + "78992", + "78994", + "78995", + "78996", + "78997", + "78999", + "790", + "79000", + "79001", + "79002", + "79003", + "79004", + "79005", + "79006", + "79007", + "79008", + "79009", + "79012", + "79016", + "79017", + "79018", + "79019", + "79020", + "79022", + "79023", + "79024", + "79025", + "79026", + "79027", + "79029", + "7903", + "79031", + "79033", + "79034", + "79035", + "79036", + "79037", + "79038", + "79039", + "79041", + "79042", + "79047", + "79048", + "7905", + "79050", + "79053", + "79054", + "79056", + "79057", + "79058", + "79064", + "79065", + "79066", + "79068", + "79070", + "79071", + "79072", + "79073", + "79074", + "79075", + "79077", + "79078", + "79080", + "79081", + "79083", + "79084", + "79085", + "79086", + "79087", + "79088", + "79089", + "79090", + "79091", + "79092", + "79094", + "79095", + "790955", + "79096", + "79097", + "79098", + "79101", + "79102", + "79109", + "7913", + "79132", + "79133", + "79134", + "79135", + "79137", + "79139", + "79140", + "79142", + "79143", + "79144", + "79145", + "79147", + "79148", + "79149", + "7915", + "79152", + "79153", + "79154", + "79155", + "79156", + "79157", + "79158", + "79159", + "7916", + "79161", + "79165", + "79168", + "79169", + "7917", + "79170", + "79171", + "79172", + "79173", + "79174", + "79175", + "79177", + "79178", + "7918", + "79180", + "79183", + "79184", + "79187", + "79188", + "7919", + "79190", + "79191", + "79192", + "7920", + "7922", + "79228", + "7923", + "79230", + "79258", + "79269", + "79290", + "79295", + "793", + "79310", + "79317", + "7932", + "79324", + "79339", + "79345", + "79346", + "7936", + "79363", + "79364", + "79365", + "79366", + "79368", + "79369", + "79370", + "794", + "7940", + "79400", + "7941", + "79411", + "79412", + "79413", + "79414", + "79415", + "7942", + "79441", + "79442", + "79443", + "79444", + "79446", + "79447", + "79465", + "79473", + "79490", + "795", + "79541", + "79544", + "79549", + "79567", + "79568", + "7957", + "79570", + "79571", + "79572", + "79573", + "79574", + "79575", + "79576", + "79577", + "79581", + "79582", + "79583", + "79585", + "79586", + "79587", + "79589", + "79590", + "79591", + "79594", + "79595", + "79596", + "79598", + "796", + "79600", + "79602", + "79603", + "79605", + "79607", + "79608", + "79609", + "79611", + "79612", + "79613", + "79616", + "79618", + "79621", + "79623", + "79624", + "79625", + "79626", + "79627", + "79628", + "79629", + "79630", + "79631", + "79632", + "79633", + "79634", + "79635", + "79637", + "79639", + "79641", + "79642", + "79643", + "79644", + "79645", + "79646", + "79647", + "79648", + "79649", + "7965", + "79650", + "79651", + "79652", + "79654", + "79656", + "79657", + "79658", + "79659", + "79660", + "79661", + "79663", + "79664", + "79665", + "79666", + "79668", + "79669", + "79670", + "79671", + "79672", + "79673", + "79674", + "79675", + "79676", + "79677", + "79679", + "79680", + "79682", + "79683", + "79684", + "79685", + "79689", + "79690", + "79691", + "79692", + "79693", + "79694", + "79695", + "79696", + "79697", + "79698", + "79699", + "797", + "79701", + "79705", + "79706", + "79707", + "79709", + "79710", + "79711", + "79712", + "79713", + "79714", + "79716", + "79717", + "79718", + "79719", + "79720", + "79722", + "79723", + "79724", + "79725", + "79726", + "79727", + "79728", + "79729", + "79730", + "79731", + "79733", + "79734", + "79735", + "79736", + "79738", + "79739", + "79740", + "79741", + "79742", + "79744", + "79745", + "79746", + "79747", + "79748", + "7975", + "79750", + "79751", + "79752", + "79753", + "79754", + "79755", + "79758", + "79759", + "7976", + "79760", + "79762", + "79763", + "79767", + "79768", + "79770", + "79772", + "79774", + "79776", + "79777", + "79778", + "7978", + "79780", + "79781", + "79782", + "79783", + "79784", + "79785", + "79786", + "79788", + "79789", + "7979", + "79791", + "79792", + "79794", + "79796", + "79797", + "79798", + "79799", + "7980", + "79800", + "79801", + "79802", + "79803", + "79805", + "79807", + "79809", + "79810", + "79811", + "79812", + "79813", + "79814", + "79815", + "79816", + "79817", + "79818", + "79819", + "7982", + "79820", + "79822", + "79823", + "79825", + "79827", + "79828", + "79829", + "79830", + "79831", + "79833", + "79834", + "79836", + "79837", + "79838", + "79839", + "7984", + "79840", + "79841", + "79842", + "79843", + "79844", + "79845", + "79846", + "79847", + "79848", + "79849", + "79850", + "79852", + "79853", + "79856", + "79858", + "79861", + "79862", + "79863", + "79864", + "79865", + "79866", + "79867", + "79868", + "79869", + "79870", + "79871", + "79872", + "79873", + "79874", + "79875", + "79876", + "79877", + "79879", + "7988", + "79882", + "79883", + "79884", + "79885", + "79886", + "79887", + "79888", + "79890", + "79891", + "79892", + "79893", + "79894", + "79895", + "79896", + "79897", + "79898", + "79899", + "79901", + "79902", + "79903", + "79905", + "79906", + "79908", + "7991", + "79912", + "79913", + "79915", + "79917", + "79918", + "79919", + "79921", + "79922", + "79923", + "79924", + "79925", + "79927", + "79929", + "7993", + "79930", + "79931", + "79932", + "79933", + "79934", + "79935", + "79937", + "79939", + "7994", + "79943", + "79944", + "79946", + "79947", + "79948", + "79949", + "79953", + "79954", + "79955", + "79956", + "79957", + "79958", + "79959", + "79960", + "79961", + "79962", + "79966", + "79968", + "79969", + "79971", + "79973", + "79974", + "79977", + "79979", + "79980", + "79981", + "79982", + "79983", + "79987", + "79989", + "79990", + "79991", + "79993", + "79998", + "800", + "8000", + "80000", + "80003", + "80004", + "80005", + "80006", + "80007", + "80008", + "8001", + "80010", + "80011", + "80012", + "80013", + "80014", + "80017", + "80018", + "80019", + "80020", + "80021", + "80022", + "80023", + "80024", + "80025", + "80028", + "80031", + "80032", + "80034", + "80036", + "80045", + "80055", + "80059", + "80063", + "80067", + "80070", + "80071", + "80086", + "80095", + "80097", + "80108", + "80110", + "80114", + "80115", + "80117", + "80119", + "80122", + "80124", + "80125", + "80127", + "80128", + "80129", + "8013", + "80131", + "80133", + "80135", + "80139", + "80142", + "80143", + "80144", + "80145", + "80146", + "80148", + "80149", + "80150", + "80152", + "80153", + "80155", + "80157", + "80162", + "80164", + "80167", + "80168", + "80169", + "80173", + "80174", + "80176", + "80177", + "80178", + "80179", + "80183", + "80184", + "80185", + "8019", + "80194", + "80195", + "80196", + "80198", + "80199", + "80201", + "80204", + "80205", + "80206", + "80207", + "80208", + "80209", + "8021", + "80210", + "80212", + "80213", + "80216", + "80217", + "80218", + "80219", + "8022", + "80221", + "80222", + "80223", + "80224", + "80227", + "80228", + "80230", + "80231", + "80232", + "80233", + "80235", + "80237", + "80243", + "80255", + "80256", + "80258", + "80262", + "80263", + "80264", + "80267", + "8027", + "80270", + "80271", + "80273", + "80274", + "80279", + "8028", + "8029", + "80298", + "8030", + "80301", + "80303", + "80304", + "80305", + "80306", + "80308", + "80309", + "8031", + "80310", + "80311", + "80312", + "80313", + "80314", + "80315", + "80316", + "80317", + "80318", + "80319", + "80320", + "80321", + "80323", + "80324", + "80325", + "80326", + "80328", + "80329", + "80331", + "80332", + "80333", + "80335", + "80336", + "80339", + "8034", + "80341", + "80342", + "80343", + "80344", + "80345", + "80346", + "80347", + "80349", + "80351", + "80352", + "8036", + "8038", + "80380", + "80381", + "8045", + "8048", + "8050", + "8061", + "8065", + "80700", + "80704", + "80705", + "80709", + "80712", + "80714", + "80723", + "80724", + "80725", + "80726", + "80727", + "80728", + "8073", + "80731", + "80736", + "80737", + "80739", + "8074", + "80740", + "80741", + "80742", + "80745", + "80746", + "80755", + "80757", + "80758", + "80759", + "8076", + "80760", + "80762", + "80763", + "80764", + "80765", + "80772", + "80774", + "80775", + "80776", + "80777", + "80778", + "8078", + "80781", + "80789", + "8079", + "80790", + "808", + "80816", + "80817", + "80818", + "8082", + "80820", + "80821", + "80823", + "80824", + "80829", + "80830", + "80831", + "80832", + "80833", + "80834", + "80835", + "8085", + "80851", + "80852", + "80853", + "80854", + "80856", + "8086", + "80863", + "80864", + "8087", + "8089", + "80895", + "80896", + "8091", + "8092", + "80975", + "8099", + "81", + "810", + "8100", + "81025", + "81027", + "81029", + "81030", + "81031", + "81033", + "81034", + "81035", + "81037", + "81050", + "8106", + "81099", + "811", + "8111", + "81127", + "8115", + "81168", + "8120", + "8125", + "8128", + "81282", + "81285", + "813", + "81300", + "81309", + "81318", + "81327", + "81341", + "8139", + "81392", + "81399", + "814", + "8140", + "81442", + "81448", + "81466", + "81469", + "81470", + "81472", + "8148", + "81488", + "81490", + "81491", + "81492", + "81493", + "81494", + "815", + "81501", + "81502", + "8153", + "81532", + "81533", + "81537", + "81539", + "81542", + "81543", + "81544", + "81545", + "81551", + "81552", + "81553", + "81554", + "81555", + "81556", + "81557", + "81558", + "81559", + "81562", + "81563", + "81565", + "81566", + "81567", + "81569", + "81570", + "81572", + "81573", + "81575", + "81576", + "81577", + "81578", + "81579", + "816", + "81602", + "81603", + "81605", + "81606", + "81607", + "81608", + "81609", + "8161", + "81610", + "81611", + "81614", + "81615", + "81616", + "81617", + "81618", + "81619", + "81620", + "81621", + "81622", + "81623", + "81624", + "81626", + "81627", + "81628", + "81629", + "81631", + "8165", + "81669", + "81671", + "81688", + "81689", + "81691", + "81693", + "81696", + "81697", + "817", + "8170", + "81704", + "81706", + "8174", + "8175", + "8178", + "81786", + "81789", + "81790", + "81792", + "81793", + "81794", + "81796", + "81797", + "818", + "81831", + "81832", + "81833", + "81839", + "81844", + "81846", + "81847", + "81848", + "81849", + "81850", + "81851", + "81853", + "81856", + "81857", + "81858", + "8187", + "81870", + "81871", + "81872", + "81873", + "81875", + "81876", + "81887", + "81888", + "81889", + "8189", + "81890", + "81892", + "81894", + "819", + "8190", + "8192", + "81926", + "81928", + "81929", + "8193", + "81930", + "81931", + "81932", + "8195", + "820", + "8200", + "8202", + "8204", + "8208", + "8209", + "821", + "8214", + "8216", + "8218", + "822", + "8220", + "8224", + "8225", + "8226", + "8227", + "8228", + "823", + "8233", + "8237", + "8239", + "824", + "8241", + "8242", + "8243", + "825", + "826", + "8260", + "8263", + "8266", + "8269", + "827", + "8270", + "8273", + "8277", + "8284", + "8287", + "8288", + "8289", + "829", + "8290", + "8291", + "8292", + "8293", + "8294", + "8295", + "830", + "8301", + "8302", + "8303", + "8309", + "831", + "8310", + "8312", + "8313", + "8314", + "8315", + "8317", + "8318", + "832", + "8320", + "8321", + "8322", + "8323", + "8324", + "8325", + "83259", + "8326", + "8328", + "8329", + "833", + "8330", + "8331", + "8332", + "8334", + "8335", + "8336", + "8337", + "8338", + "8339", + "83394", + "834", + "8340", + "83401", + "8341", + "83416", + "83417", + "8342", + "8343", + "83439", + "8344", + "83440", + "83442", + "83443", + "83444", + "83445", + "83446", + "83447", + "83448", + "83449", + "8345", + "83450", + "83451", + "83452", + "8346", + "83460", + "83461", + "83463", + "83464", + "83468", + "8347", + "83473", + "83475", + "83478", + "83479", + "8348", + "83480", + "83481", + "83482", + "83483", + "8349", + "835", + "8350", + "8351", + "8352", + "8353", + "83538", + "83539", + "8354", + "83540", + "83541", + "83543", + "83544", + "83546", + "83547", + "83548", + "83549", + "8355", + "83550", + "83551", + "83552", + "8356", + "8357", + "8358", + "8359", + "83590", + "83591", + "83592", + "83593", + "83594", + "83595", + "83597", + "836", + "8360", + "83604", + "83605", + "83606", + "83607", + "83608", + "8361", + "8362", + "8363", + "83637", + "83638", + "83639", + "8364", + "83640", + "83641", + "83642", + "83643", + "83648", + "83650", + "83657", + "83658", + "83659", + "8366", + "83660", + "83661", + "83666", + "83667", + "8367", + "8368", + "8369", + "83690", + "83693", + "83694", + "83695", + "83697", + "83698", + "83699", + "837", + "8370", + "83700", + "83706", + "83707", + "83714", + "83715", + "83716", + "83719", + "8372", + "83723", + "83729", + "83732", + "83733", + "83734", + "83737", + "83740", + "83741", + "83742", + "83743", + "83744", + "83746", + "83752", + "83755", + "83756", + "83758", + "83759", + "83786", + "83787", + "8379", + "83795", + "838", + "8382", + "8383", + "83844", + "83849", + "83850", + "83851", + "83852", + "83853", + "83854", + "83855", + "83856", + "83857", + "83858", + "8386", + "83860", + "83862", + "8387", + "83871", + "83872", + "83873", + "83874", + "83875", + "83876", + "83877", + "83878", + "83879", + "8388", + "83881", + "83884", + "83886", + "83887", + "83888", + "83889", + "83890", + "83891", + "83892", + "83893", + "83894", + "83895", + "83896", + "83897", + "83899", + "839", + "8390", + "83900", + "83901", + "83902", + "83903", + "83930", + "83931", + "83932", + "83933", + "83937", + "83938", + "83939", + "8394", + "83940", + "83941", + "83942", + "83943", + "8395", + "83953", + "83959", + "8396", + "8398", + "83982", + "83983", + "83985", + "83986", + "83987", + "83988", + "83989", + "8399", + "83990", + "83992", + "83998", + "83999", + "840", + "84000", + "84002", + "8402", + "8403", + "84033", + "84034", + "8404", + "8405", + "84056", + "84057", + "84058", + "84059", + "8406", + "84060", + "84061", + "84062", + "84063", + "84064", + "84065", + "84066", + "84067", + "84068", + "84069", + "8407", + "84070", + "84071", + "84072", + "84074", + "84075", + "84076", + "84077", + "84078", + "84079", + "8408", + "84080", + "84081", + "84083", + "84084", + "84085", + "8409", + "841", + "84100", + "84101", + "84102", + "84103", + "84105", + "84106", + "84107", + "84108", + "84109", + "8411", + "8412", + "84124", + "84125", + "84126", + "84128", + "84129", + "84131", + "84132", + "84133", + "84134", + "84135", + "84138", + "84140", + "84141", + "84142", + "84144", + "84146", + "84148", + "84152", + "84153", + "84154", + "84159", + "8416", + "84162", + "84163", + "84164", + "84166", + "84167", + "84168", + "8417", + "84171", + "84172", + "84173", + "84174", + "84179", + "84181", + "84182", + "84186", + "84187", + "84188", + "84189", + "8419", + "84190", + "84191", + "84193", + "84196", + "84197", + "842", + "84203", + "84206", + "84210", + "84215", + "84216", + "84217", + "84218", + "84219", + "84220", + "84221", + "84223", + "84224", + "84225", + "84229", + "84230", + "84231", + "84232", + "84233", + "84236", + "84239", + "8424", + "84240", + "84243", + "84245", + "84246", + "84247", + "84248", + "84249", + "8425", + "84250", + "84251", + "84253", + "84254", + "84255", + "84256", + "84258", + "84259", + "84260", + "84261", + "84262", + "84263", + "84264", + "84265", + "84266", + "84267", + "84268", + "84269", + "8427", + "84270", + "84271", + "84272", + "84273", + "84274", + "84275", + "84276", + "84277", + "84279", + "8428", + "84280", + "84281", + "84282", + "84283", + "84284", + "84285", + "84286", + "84287", + "84288", + "84289", + "84290", + "84292", + "84293", + "84294", + "84295", + "84296", + "84298", + "84299", + "843", + "84300", + "84301", + "84302", + "84303", + "84304", + "84305", + "84306", + "84307", + "84309", + "8431", + "84310", + "84311", + "84312", + "84313", + "84314", + "84315", + "84316", + "84317", + "84318", + "84319", + "84320", + "84321", + "84324", + "84326", + "84327", + "84328", + "84329", + "8433", + "84330", + "84331", + "84332", + "84333", + "84334", + "84335", + "84336", + "84337", + "8434", + "84340", + "84343", + "8435", + "8436", + "84364", + "84365", + "84366", + "8437", + "84376", + "8438", + "8439", + "844", + "8440", + "84417", + "84418", + "84419", + "8443", + "84432", + "84433", + "84435", + "84436", + "84437", + "84439", + "8444", + "84440", + "84441", + "84443", + "84444", + "84445", + "84446", + "84447", + "84448", + "84449", + "8445", + "84450", + "84451", + "84455", + "84456", + "84457", + "84458", + "8446", + "84460", + "84461", + "84464", + "84465", + "84466", + "84467", + "8447", + "8448", + "8449", + "84498", + "845", + "8450", + "84501", + "84502", + "84503", + "84504", + "8451", + "84513", + "84514", + "84515", + "84516", + "84517", + "84518", + "84519", + "8452", + "84520", + "84522", + "84524", + "84525", + "84527", + "84528", + "84529", + "8453", + "84530", + "84532", + "84539", + "8454", + "84541", + "84542", + "84545", + "84547", + "84548", + "84549", + "8455", + "84552", + "84553", + "84557", + "8456", + "84560", + "84561", + "84569", + "84570", + "84572", + "8458", + "8459", + "846", + "8460", + "84612", + "84614", + "84616", + "84617", + "84618", + "84619", + "8462", + "84620", + "84622", + "84623", + "84624", + "84626", + "84627", + "84628", + "84629", + "8463", + "84630", + "84631", + "84632", + "84634", + "84636", + "84639", + "8464", + "84640", + "84641", + "84643", + "84645", + "84647", + "84648", + "84649", + "84650", + "84651", + "84654", + "84656", + "84658", + "84659", + "84660", + "84661", + "84662", + "84665", + "84666", + "84667", + "84668", + "84669", + "8467", + "84671", + "84674", + "84675", + "84676", + "84678", + "84679", + "8468", + "84680", + "84681", + "84684", + "84687", + "84688", + "84689", + "84690", + "84691", + "84692", + "84693", + "84694", + "84695", + "84696", + "84698", + "84699", + "847", + "8470", + "84700", + "84701", + "84705", + "84706", + "84707", + "84708", + "84709", + "8471", + "84717", + "84720", + "84722", + "84725", + "84727", + "8473", + "84733", + "84734", + "84735", + "84747", + "84749", + "84750", + "84752", + "84759", + "8476", + "84765", + "84766", + "84767", + "84769", + "8477", + "84775", + "84779", + "84787", + "8479", + "84790", + "84792", + "84795", + "8480", + "84803", + "84804", + "84807", + "84808", + "8481", + "84811", + "84812", + "84814", + "84816", + "84817", + "84818", + "8482", + "84823", + "84824", + "84826", + "8483", + "84830", + "84833", + "84836", + "84838", + "84839", + "8484", + "84842", + "84844", + "84851", + "84858", + "84859", + "84861", + "84864", + "84865", + "84866", + "84867", + "84868", + "84869", + "8487", + "84870", + "84871", + "84872", + "84873", + "84874", + "84875", + "84876", + "84878", + "84879", + "84881", + "84883", + "84885", + "84886", + "84888", + "84889", + "84890", + "84891", + "84892", + "84893", + "84894", + "84895", + "84896", + "84897", + "84898", + "84899", + "8490", + "84900", + "84901", + "84902", + "84904", + "84905", + "84908", + "84909", + "8491", + "84910", + "84911", + "84912", + "84913", + "84914", + "84915", + "84916", + "84918", + "84919", + "8492", + "84920", + "84922", + "84923", + "84924", + "84925", + "84926", + "84928", + "84929", + "8493", + "84930", + "84932", + "84933", + "84934", + "84935", + "84936", + "84937", + "84938", + "84939", + "84940", + "84941", + "84942", + "84944", + "84945", + "84946", + "84947", + "84948", + "8495", + "84950", + "84951", + "84952", + "84954", + "84955", + "84957", + "84958", + "84959", + "8496", + "84960", + "84961", + "84962", + "84964", + "84966", + "84967", + "84968", + "84969", + "8497", + "84970", + "84971", + "84975", + "84976", + "84978", + "8498", + "84984", + "84985", + "84986", + "84987", + "84988", + "8499", + "84991", + "84992", + "84993", + "8500", + "85002", + "85004", + "85007", + "8501", + "85012", + "85013", + "85014", + "85015", + "85016", + "85019", + "8502", + "85021", + "85025", + "85027", + "8503", + "8504", + "8505", + "8506", + "8507", + "8508", + "8509", + "8510", + "8513", + "8514", + "8515", + "8516", + "8517", + "8518", + "8519", + "8520", + "8521", + "8522", + "85235", + "85236", + "8525", + "8526", + "8527", + "8528", + "85280", + "85285", + "85289", + "8529", + "85290", + "85291", + "85293", + "85294", + "8530", + "85300", + "85301", + "85302", + "8531", + "85313", + "85315", + "8532", + "85320", + "85329", + "8533", + "8534", + "8535", + "85352", + "85354", + "85358", + "85359", + "8536", + "85360", + "85363", + "85364", + "85365", + "85366", + "85369", + "8537", + "85376", + "85377", + "85378", + "85379", + "8538", + "8539", + "85395", + "85397", + "8540", + "85403", + "85406", + "85407", + "85409", + "8541", + "85413", + "85414", + "85415", + "85416", + "85417", + "8542", + "8543", + "85437", + "85438", + "85439", + "8544", + "85440", + "85441", + "85442", + "85443", + "85444", + "85445", + "85446", + "85449", + "8545", + "85450", + "85451", + "85452", + "85453", + "85455", + "85456", + "85457", + "85458", + "85459", + "8546", + "85460", + "85461", + "85462", + "85463", + "85464", + "85465", + "8547", + "85474", + "85476", + "85477", + "85478", + "85479", + "8548", + "85480", + "85481", + "8549", + "8550", + "85508", + "85509", + "8553", + "8554", + "8555", + "8556", + "85569", + "8557", + "8558", + "8559", + "8560", + "8562", + "8563", + "8564", + "8565", + "8566", + "8567", + "8568", + "8569", + "857", + "8570", + "8572", + "8573", + "8574", + "8575", + "8576", + "8577", + "8578", + "858", + "8581", + "85865", + "859", + "8590", + "8594", + "86", + "860", + "8600", + "8601", + "8602", + "8603", + "8604", + "8605", + "8607", + "8608", + "8609", + "861", + "8611", + "8612", + "8613", + "8614", + "8615", + "8618", + "862", + "8620", + "8621", + "8622", + "8623", + "8624", + "8625", + "8626", + "8629", + "863", + "8630", + "8631", + "8632", + "8633", + "8634", + "8635", + "8636", + "8637", + "8638", + "8639", + "864", + "8641", + "8642", + "8643", + "8644", + "8645", + "8646", + "8647", + "8648", + "8649", + "865", + "8650", + "8651", + "8653", + "8654", + "8655", + "8658", + "8659", + "866", + "8660", + "8661", + "86614", + "8662", + "8663", + "8664", + "8665", + "8666", + "8667", + "8668", + "8669", + "867", + "8671", + "8672", + "8673", + "8674", + "8675", + "8676", + "8677", + "8678", + "8681", + "8682", + "8683", + "8685", + "8687", + "8688", + "8689", + "869", + "8690", + "8692", + "8693", + "8694", + "8697", + "8698", + "87", + "8701", + "8702", + "8703", + "8704", + "8705", + "8706", + "8707", + "8708", + "871", + "8710", + "8711", + "8712", + "8714", + "8715", + "8717", + "87178", + "8718", + "8720", + "8721", + "8722", + "8723", + "8724", + "8725", + "8726", + "8727", + "8728", + "8729", + "873", + "8731", + "8732", + "8733", + "8735", + "8736", + "8737", + "8738", + "8739", + "874", + "8740", + "8741", + "8742", + "8743", + "8744", + "8745", + "8747", + "8748", + "8749", + "875", + "8751", + "8754", + "8756", + "8760", + "8761", + "8763", + "8764", + "8766", + "8767", + "8771", + "8772", + "8773", + "8774", + "8775", + "8776", + "87769", + "8777", + "8780", + "8784", + "8785", + "8786", + "8787", + "8788", + "8789", + "8790", + "8792", + "8793", + "8794", + "8795", + "8796", + "8797", + "8798", + "8799", + "88", + "8800", + "8801", + "8802", + "8803", + "8804", + "8805", + "8807", + "8808", + "8809", + "881", + "8811", + "8812", + "8813", + "8814", + "8815", + "8816", + "8817", + "8818", + "8819", + "8820", + "8821", + "8822", + "8823", + "8825", + "8826", + "8828", + "8829", + "883", + "8831", + "8832", + "8833", + "8834", + "8835", + "8836", + "8837", + "8838", + "8839", + "8840", + "8841", + "8842", + "8843", + "8844", + "88455", + "8846", + "8848", + "885", + "8850", + "8851", + "8852", + "8853", + "8854", + "8856", + "8857", + "8858", + "8859", + "886", + "8861", + "8862", + "8863", + "8864", + "8867", + "8869", + "887", + "8870", + "8871", + "8872", + "8874", + "88745", + "8875", + "8876", + "8877", + "8878", + "8879", + "8880", + "8881", + "8882", + "8883", + "8884", + "8886", + "8887", + "8888", + "889", + "8890", + "8891", + "8892", + "8893", + "8894", + "8895", + "8896", + "8897", + "8898", + "8899", + "89", + "8900", + "8904", + "8905", + "8906", + "8907", + "8908", + "8909", + "891", + "8910", + "8911", + "8912", + "89122", + "8913", + "8914", + "8915", + "8916", + "892", + "8924", + "8925", + "8926", + "8927", + "8928", + "8929", + "8930", + "8932", + "8933", + "8934", + "8935", + "8936", + "8938", + "8939", + "894", + "8940", + "8941", + "8942", + "8943", + "8945", + "896", + "8968", + "8969", + "8970", + "8971", + "8972", + "8973", + "8974", + "8975", + "8976", + "89765", + "89766", + "89777", + "89778", + "89780", + "89781", + "89782", + "89790", + "89792", + "89795", + "89796", + "89797", + "898", + "89801", + "89822", + "89832", + "89839", + "89845", + "89846", + "89848", + "89849", + "8985", + "89853", + "89857", + "89858", + "8986", + "89866", + "89869", + "8987", + "89870", + "89872", + "89874", + "89876", + "8988", + "89882", + "89884", + "89885", + "89886", + "89887", + "8989", + "89890", + "89891", + "89894", + "899", + "8991", + "89910", + "8992", + "89927", + "8993", + "89932", + "8994", + "89941", + "89944", + "8995", + "89953", + "89958", + "8996", + "8997", + "89970", + "89978", + "8999", + "9", + "90", + "900", + "90007", + "9001", + "90019", + "9002", + "90025", + "90050", + "90060", + "90070", + "90075", + "901", + "90102", + "90113", + "90120", + "90121", + "9013", + "90134", + "90135", + "90139", + "9014", + "90141", + "9015", + "9016", + "90161", + "90167", + "90187", + "9019", + "90196", + "90199", + "9020", + "90203", + "90204", + "9021", + "9022", + "90226", + "9023", + "90231", + "90233", + "9024", + "90249", + "9025", + "9026", + "90268", + "9027", + "90273", + "9028", + "90288", + "90293", + "9031", + "90313", + "90316", + "90317", + "9032", + "90321", + "90324", + "90326", + "9033", + "90333", + "90338", + "9034", + "90342", + "90353", + "90355", + "90362", + "9037", + "90378", + "90379", + "9038", + "90381", + "9039", + "90390", + "904", + "9040", + "90407", + "90410", + "90411", + "90416", + "90417", + "90423", + "90427", + "9043", + "9044", + "90441", + "9045", + "90459", + "9046", + "9047", + "9048", + "90480", + "90485", + "90488", + "9049", + "905", + "9050", + "90506", + "90507", + "9051", + "9052", + "90522", + "90523", + "90525", + "90527", + "90529", + "9053", + "9054", + "9055", + "90550", + "90557", + "9056", + "9057", + "90576", + "9058", + "90580", + "90589", + "90592", + "90594", + "9060", + "9061", + "90624", + "90627", + "9063", + "90634", + "90637", + "90639", + "9064", + "90649", + "90655", + "9066", + "90665", + "90668", + "90673", + "90678", + "9068", + "9069", + "90693", + "9070", + "90701", + "9071", + "9073", + "90736", + "90737", + "9074", + "9075", + "9076", + "9077", + "90780", + "9079", + "90799", + "908", + "9080", + "90806", + "90809", + "9081", + "90826", + "90827", + "9083", + "90835", + "9084", + "90843", + "9085", + "90850", + "90853", + "9086", + "90861", + "90864", + "90865", + "9087", + "90871", + "90874", + "9088", + "909", + "9091", + "9092", + "9093", + "90933", + "9094", + "9095", + "90952", + "90956", + "90957", + "9096", + "9097", + "9098", + "90987", + "9099", + "90990", + "90993", + "91", + "910", + "9100", + "9101", + "91010", + "91012", + "91039", + "9104", + "91050", + "91056", + "91057", + "9107", + "91074", + "9108", + "911", + "9110", + "91107", + "9111", + "9112", + "91120", + "9113", + "91133", + "91137", + "9114", + "91147", + "91151", + "91156", + "9117", + "91179", + "9118", + "91181", + "9119", + "912", + "9120", + "9121", + "9122", + "91227", + "9123", + "9124", + "9125", + "91252", + "9126", + "9127", + "91272", + "9128", + "91283", + "91289", + "9129", + "91298", + "913", + "9130", + "91300", + "91304", + "9131", + "91319", + "9132", + "9133", + "9134", + "9135", + "9136", + "91368", + "91369", + "91373", + "9138", + "9139", + "91392", + "914", + "9140", + "91404", + "91408", + "91409", + "9141", + "91419", + "9143", + "91433", + "9144", + "91442", + "91445", + "9145", + "91452", + "9146", + "91461", + "91464", + "9147", + "9148", + "9149", + "915", + "9150", + "9152", + "91522", + "91523", + "91526", + "9153", + "9154", + "91543", + "91544", + "9156", + "91574", + "9158", + "91582", + "91584", + "9159", + "916", + "91603", + "91607", + "91608", + "91612", + "91614", + "9162", + "91624", + "91646", + "91647", + "91653", + "9166", + "91661", + "91662", + "91663", + "91664", + "9167", + "9168", + "91683", + "91687", + "91689", + "9169", + "91694", + "917", + "9170", + "91703", + "9172", + "9173", + "91734", + "91746", + "91748", + "91749", + "9175", + "91750", + "91752", + "91754", + "91768", + "9177", + "91775", + "91782", + "9179", + "9180", + "91801", + "91807", + "9181", + "9182", + "91828", + "9183", + "91833", + "9184", + "9185", + "91851", + "91860", + "91862", + "91869", + "9187", + "91875", + "9188", + "9189", + "91893", + "91894", + "919", + "9191", + "91937", + "9194", + "91942", + "91947", + "91949", + "9196", + "91966", + "9197", + "91975", + "91977", + "91978", + "92", + "920", + "9200", + "92002", + "9201", + "92014", + "92017", + "9202", + "9203", + "9204", + "9205", + "9208", + "92086", + "9209", + "92092", + "921", + "9210", + "92104", + "92105", + "92106", + "9211", + "9212", + "92126", + "92129", + "9213", + "9214", + "92140", + "9215", + "92154", + "92162", + "9217", + "92170", + "9218", + "92181", + "9219", + "92196", + "922", + "9221", + "92211", + "9223", + "92235", + "92241", + "92255", + "92259", + "9227", + "9228", + "92283", + "92285", + "9229", + "92291", + "92292", + "92293", + "923", + "9230", + "92304", + "92305", + "9231", + "92312", + "9232", + "92335", + "92340", + "92342", + "92344", + "92345", + "92346", + "9235", + "92359", + "9236", + "92369", + "92370", + "9238", + "92399", + "924", + "9240", + "92400", + "9241", + "9242", + "92421", + "9244", + "9245", + "9246", + "9247", + "9248", + "92482", + "92483", + "9249", + "925", + "9252", + "92521", + "9253", + "9254", + "9255", + "92552", + "92558", + "9256", + "92565", + "92579", + "9258", + "92591", + "92595", + "92597", + "926", + "9260", + "92609", + "9261", + "92610", + "9262", + "9263", + "9265", + "9266", + "92667", + "9267", + "92675", + "92689", + "92691", + "927", + "9270", + "92703", + "9271", + "92714", + "92715", + "92736", + "92737", + "9274", + "92745", + "92747", + "92749", + "9275", + "9276", + "9277", + "9278", + "92797", + "92799", + "928", + "92815", + "9282", + "92822", + "9283", + "9284", + "92840", + "92856", + "9287", + "9289", + "9290", + "92906", + "92912", + "92922", + "9293", + "92935", + "9294", + "92949", + "9295", + "9296", + "92960", + "92979", + "92999", + "93", + "930", + "93010", + "93034", + "93035", + "93058", + "9306", + "9308", + "93081", + "93082", + "93099", + "931", + "9310", + "93100", + "93107", + "93109", + "9311", + "9312", + "93129", + "9313", + "93134", + "9314", + "93145", + "9315", + "93166", + "9317", + "9318", + "93183", + "93185", + "9319", + "93190", + "932", + "9320", + "9321", + "93210", + "9322", + "93233", + "9324", + "9325", + "9326", + "93273", + "9328", + "9329", + "933", + "9330", + "9331", + "9332", + "93323", + "9333", + "9334", + "93343", + "93349", + "9337", + "93377", + "9338", + "93380", + "9340", + "93408", + "9341", + "9342", + "93426", + "9343", + "93432", + "93436", + "9344", + "93474", + "9348", + "93487", + "9349", + "9350", + "9351", + "93517", + "9352", + "9353", + "9354", + "9355", + "93550", + "9356", + "9358", + "93587", + "93589", + "93594", + "9360", + "9361", + "93611", + "9362", + "93621", + "93622", + "93624", + "93627", + "9363", + "9364", + "93643", + "93649", + "9365", + "93650", + "93659", + "93661", + "93663", + "93664", + "9367", + "9368", + "9369", + "9370", + "9371", + "9372", + "9373", + "9374", + "9375", + "9376", + "9377", + "9378", + "9379", + "9380", + "9381", + "9382", + "9388", + "9389", + "939", + "9390", + "9391", + "9392", + "9394", + "93953", + "9397", + "93973", + "93974", + "93978", + "93979", + "9398", + "93986", + "9399", + "94", + "940", + "9400", + "94005", + "9401", + "94015", + "9402", + "94025", + "94026", + "94027", + "9403", + "94030", + "94031", + "94032", + "94033", + "94039", + "9404", + "94056", + "94059", + "9406", + "9407", + "94081", + "94086", + "9409", + "94097", + "941", + "9410", + "94101", + "94103", + "94104", + "94107", + "9411", + "94115", + "9412", + "94120", + "94121", + "94122", + "9413", + "94134", + "94137", + "9414", + "9415", + "9416", + "94160", + "9419", + "942", + "9420", + "9421", + "9422", + "9423", + "94233", + "94234", + "94235", + "94239", + "9424", + "94240", + "94241", + "9425", + "9427", + "94274", + "9429", + "943", + "9435", + "9436", + "9437", + "9439", + "944", + "9440", + "9441", + "9442", + "9443", + "9444", + "9445", + "9446", + "9447", + "9448", + "945", + "9450", + "9451", + "9452", + "9453", + "9454", + "9455", + "9456", + "9457", + "9459", + "946", + "9462", + "9463", + "9464", + "9465", + "9466", + "9467", + "9468", + "9469", + "947", + "9470", + "9472", + "9473", + "9474", + "9475", + "9476", + "9477", + "9478", + "9479", + "948", + "9480", + "9481", + "9482", + "9486", + "9487", + "9488", + "9489", + "949", + "9491", + "9493", + "9495", + "9496", + "9497", + "9498", + "9499", + "95", + "950", + "9500", + "9501", + "9502", + "9506", + "9507", + "9508", + "9509", + "951", + "9510", + "9512", + "9513", + "9514", + "9515", + "9516", + "9517", + "9518", + "9519", + "952", + "9520", + "9521", + "9522", + "9524", + "9525", + "9526", + "9527", + "9528", + "9529", + "953", + "9530", + "9531", + "9532", + "9533", + "9534", + "9535", + "9536", + "9537", + "9538", + "954", + "9540", + "9541", + "9542", + "9543", + "9545", + "9546", + "9547", + "955", + "9550", + "9551", + "9552", + "9553", + "9554", + "9555", + "9556", + "9557", + "9559", + "956", + "9560", + "9562", + "9563", + "9564", + "9567", + "9568", + "95681", + "9569", + "957", + "9570", + "9572", + "9573", + "9575", + "9576", + "9577", + "9578", + "958", + "9580", + "9581", + "9582", + "9583", + "9584", + "9585", + "9586", + "9587", + "9588", + "9589", + "959", + "9590", + "9592", + "9595", + "9596", + "960", + "9600", + "9601", + "9603", + "9604", + "9605", + "9607", + "9609", + "961", + "9610", + "9611", + "9612", + "9615", + "9616", + "9617", + "9618", + "9619", + "962", + "9620", + "9622", + "9623", + "9625", + "9626", + "9627", + "9628", + "963", + "9630", + "9631", + "9632", + "9633", + "9635", + "9636", + "9637", + "9638", + "9639", + "9640", + "9641", + "9644", + "9645", + "96459", + "9646", + "9647", + "9648", + "9649", + "965", + "9650", + "9651", + "9652", + "9653", + "9654", + "9655", + "9656", + "9657", + "9658", + "9659", + "966", + "9662", + "96626", + "9663", + "9665", + "9666", + "9667", + "9668", + "9669", + "967", + "9670", + "9671", + "9672", + "9673", + "9674", + "9675", + "96764", + "9677", + "9678", + "9679", + "968", + "9681", + "9682", + "9683", + "9684", + "9685", + "9686", + "9687", + "9688", + "9689", + "969", + "9690", + "9692", + "9693", + "9694", + "9695", + "9696", + "9697", + "9698", + "9699", + "97", + "970", + "9700", + "9701", + "9702", + "9703", + "9704", + "9705", + "9706", + "9708", + "9709", + "971", + "9710", + "9711", + "9712", + "9715", + "9716", + "9717", + "9718", + "9719", + "972", + "9720", + "9721", + "9722", + "9723", + "9724", + "9725", + "9726", + "9727", + "9728", + "9729", + "973", + "9730", + "9731", + "9732", + "9733", + "9734", + "9735", + "9736", + "9737", + "9738", + "9739", + "974", + "9741", + "9742", + "9743", + "9744", + "9745", + "9746", + "9747", + "9748", + "9749", + "975", + "9750", + "9751", + "9752", + "9753", + "9754", + "9755", + "9757", + "9758", + "9759", + "976", + "9760", + "9761", + "9762", + "9764", + "9765", + "9766", + "9767", + "9768", + "977", + "9770", + "9771", + "9772", + "9774", + "9775", + "9776", + "9777", + "9778", + "9779", + "978", + "9780", + "9781", + "9782", + "9783", + "9784", + "9785", + "9786", + "9787", + "9788", + "9789", + "9790", + "9791", + "9792", + "9793", + "9794", + "9796", + "9797", + "9798", + "98", + "9801", + "9802", + "9804", + "9805", + "9806", + "9807", + "9810", + "9811", + "9812", + "9813", + "9814", + "9815", + "9816", + "9817", + "9818", + "9819", + "9821", + "9823", + "9824", + "9825", + "9826", + "9827", + "9828", + "9829", + "983", + "9830", + "9831", + "9832", + "9833", + "9836", + "9837", + "9839", + "984", + "9840", + "9841", + "9842", + "9843", + "9844", + "9846", + "9847", + "9848", + "9849", + "9851", + "9852", + "9853", + "9854", + "9855", + "9856", + "9857", + "9858", + "9859", + "9860", + "9861", + "9862", + "9863", + "9865", + "9866", + "9867", + "9868", + "9869", + "987", + "9870", + "9871", + "9873", + "9874", + "9875", + "9877", + "9878", + "9879", + "988", + "9880", + "9881", + "9882", + "9883", + "9884", + "9885", + "9886", + "9887", + "9889", + "989", + "9890", + "9891", + "9892", + "9894", + "9895", + "9896", + "9897", + "9898", + "9899", + "990", + "9900", + "9901", + "9902", + "9903", + "9904", + "9905", + "9907", + "9908", + "9909", + "991", + "9910", + "9911", + "9912", + "9913", + "9914", + "9915", + "9917", + "9918", + "9919", + "9920", + "9921", + "9922", + "9923", + "9924", + "9925", + "9926", + "9927", + "9928", + "9929", + "993", + "9931", + "9933", + "9934", + "9935", + "9936", + "9937", + "9938", + "9939", + "994", + "9940", + "9941", + "9942", + "9943", + "9945", + "9946", + "9947", + "9948", + "9949", + "995", + "9950", + "9951", + "9953", + "9955", + "9956", + "9957", + "9958", + "996", + "9960", + "9961", + "9962", + "9963", + "9965", + "9966", + "9967", + "9968", + "9969", + "997", + "9970", + "9971", + "9972", + "9973", + "9975", + "9976", + "9978", + "9980", + "9982", + "9984", + "9985", + "9986", + "9987", + "9988", + "9989", + "999", + "9990", + "9991", + "9992", + "9993", + "9994", + "9997" + ], + "negative_genes": [ + "10", + "10001", + "10002", + "10004", + "10007", + "10009", + "10011", + "100113407", + "100128731", + "100128908", + "100129583", + "100131187", + "100131801", + "100132386", + "100137047", + "10017", + "1002", + "10025", + "100271849", + "100288687", + "100289255", + "100303755", + "10036", + "10038", + "1004", + "10044", + "10045", + "10046", + "10050", + "10054", + "10055", + "1006", + "10063", + "10072", + "10073", + "10077", + "10078", + "10081", + "10089", + "10090", + "100996939", + "10103", + "10105", + "10106", + "10110", + "10114", + "10117", + "10121", + "10127", + "1013", + "10137", + "10138", + "10140", + "10143", + "10149", + "10150", + "10153", + "10154", + "10161", + "10164", + "10166", + "10169", + "10170", + "10171", + "10172", + "10175", + "10178", + "10179", + "10180", + "10181", + "10189", + "101928527", + "101929726", + "10195", + "10199", + "10200", + "10201", + "10202", + "10205", + "10209", + "10212", + "102157402", + "10220", + "10224", + "10227", + "10229", + "10236", + "1024", + "10242", + "10246", + "10247", + "10248", + "10249", + "10250", + "10251", + "10261", + "10263", + "10270", + "102723547", + "10278", + "10282", + "10284", + "10285", + "10286", + "10287", + "10291", + "10295", + "10296", + "10302", + "10314", + "10316", + "10317", + "10319", + "10322", + "10325", + "10326", + "10327", + "10329", + "10331", + "10342", + "10343", + "1036", + "10361", + "10369", + "10379", + "10380", + "10383", + "10388", + "10389", + "10390", + "10396", + "10397", + "10402", + "10404", + "10406", + "10407", + "10409", + "10410", + "10422", + "10424", + "1043", + "10434", + "10438", + "10439", + "1044", + "10443", + "10446", + "10449", + "1045", + "10450", + "1046", + "10465", + "10467", + "10468", + "1047", + "10476", + "10478", + "1048", + "10480", + "10482", + "10493", + "10495", + "10499", + "10501", + "10505", + "1051", + "10514", + "1052", + "10523", + "10528", + "10534", + "10536", + "105375355", + "10539", + "10544", + "10549", + "10556", + "10557", + "10560", + "10561", + "10566", + "10570", + "10580", + "10586", + "10589", + "10591", + "10594", + "10597", + "10598", + "10602", + "10606", + "10607", + "10629", + "10631", + "10632", + "10633", + "10642", + "10643", + "10644", + "10650", + "10654", + "10658", + "10660", + "10667", + "10668", + "10669", + "10675", + "10678", + "10686", + "10695", + "107", + "1070", + "10713", + "10714", + "10720", + "10723", + "10724", + "10732", + "10736", + "10746", + "10747", + "10749", + "10750", + "10752", + "10753", + "10765", + "10766", + "10772", + "10775", + "10776", + "10782", + "10786", + "10791", + "10795", + "10797", + "10799", + "10800", + "10811", + "1082", + "10826", + "10840", + "10858", + "10861", + "10863", + "10864", + "10865", + "10873", + "10874", + "10876", + "10878", + "1088", + "10881", + "10884", + "10885", + "10886", + "109", + "10900", + "10901", + "10902", + "10905", + "10911", + "10914", + "10915", + "10916", + "10919", + "10921", + "10922", + "10923", + "10924", + "10926", + "10930", + "10933", + "10939", + "10940", + "10941", + "10945", + "10946", + "10949", + "10950", + "10951", + "10955", + "10964", + "10965", + "109703458", + "10971", + "10974", + "10975", + "10978", + "10980", + "10982", + "10988", + "10989", + "10990", + "10993", + "10994", + "10998", + "11000", + "11007", + "11014", + "11015", + "11016", + "11018", + "11019", + "11023", + "11024", + "11030", + "11036", + "11040", + "11046", + "11047", + "11055", + "11062", + "11063", + "11066", + "11067", + "11068", + "1107", + "11070", + "11077", + "11079", + "11086", + "11092", + "11095", + "11099", + "11100", + "11102", + "11103", + "11104", + "11112", + "11120", + "11123", + "11136", + "11137", + "11157", + "11158", + "11162", + "11163", + "11164", + "11165", + "11166", + "11168", + "11177", + "1118", + "11180", + "11181", + "11182", + "11183", + "11185", + "11186", + "11189", + "11193", + "11201", + "11215", + "11216", + "11218", + "11219", + "1122", + "11222", + "11226", + "11227", + "11234", + "112399", + "11244", + "11245", + "112483", + "112487", + "112495", + "11260", + "11262", + "11266", + "11269", + "11272", + "112724", + "11273", + "112755", + "112770", + "11278", + "11279", + "1128", + "112802", + "112817", + "11283", + "1129", + "112939", + "113", + "11309", + "11313", + "11317", + "113174", + "11318", + "11319", + "1132", + "11325", + "113278", + "1133", + "11332", + "11333", + "11335", + "11340", + "11341", + "11343", + "113457", + "1135", + "113510", + "1136", + "113612", + "1137", + "1138", + "113802", + "114034", + "1141", + "114131", + "114134", + "1142", + "114294", + "1143", + "114571", + "114790", + "114805", + "114821", + "114825", + "114826", + "114876", + "114880", + "114883", + "114885", + "114902", + "114907", + "114971", + "115111", + "115209", + "115294", + "115350", + "115399", + "115416", + "115572", + "115584", + "115708", + "115752", + "115825", + "115861", + "115939", + "115948", + "115950", + "1160", + "116028", + "116085", + "116228", + "116285", + "116369", + "116443", + "116461", + "117144", + "117145", + "117155", + "117178", + "117246", + "117247", + "117248", + "117531", + "117532", + "1179", + "1184", + "118442", + "118460", + "118491", + "1185", + "1187", + "118856", + "118980", + "1192", + "119391", + "119392", + "1195", + "119504", + "1196", + "1198", + "120", + "1200", + "120071", + "120227", + "1207", + "121053", + "121457", + "121601", + "121642", + "122394733", + "122402", + "122481", + "122509", + "122553", + "122622", + "122665", + "122706", + "122876", + "122953", + "122961", + "122970", + "123041", + "123096", + "123099", + "123169", + "123228", + "123263", + "123624", + "123688", + "1238", + "123811", + "123876", + "124", + "1241", + "124220", + "124245", + "124274", + "124404", + "124512", + "124739", + "124842", + "124872", + "124976", + "125150", + "125206", + "125336", + "125476", + "1258", + "1259", + "125988", + "125997", + "126014", + "126074", + "1261", + "126119", + "126129", + "126206", + "126272", + "126306", + "126321", + "126326", + "126328", + "1264", + "126626", + "1267", + "126755", + "1268", + "1269", + "126961", + "127", + "127254", + "127435", + "127534", + "127700", + "127733", + "128061", + "128338", + "128434", + "128674", + "128822", + "128853", + "129285", + "129293", + "129450", + "1296", + "129685", + "129787", + "129807", + "129880", + "13", + "130", + "130013", + "130120", + "130367", + "130557", + "130951", + "131", + "1310", + "131405", + "131450", + "1315", + "131540", + "131601", + "131669", + "1318", + "131870", + "131965", + "132", + "132001", + "132320", + "1325", + "132660", + "1327", + "132789", + "132864", + "1329", + "133060", + "133308", + "133383", + "133686", + "1337", + "133746", + "1339", + "134145", + "134147", + "1345", + "1346", + "1350", + "135112", + "135154", + "1352", + "135293", + "135295", + "1353", + "1356", + "1357", + "1358", + "1359", + "135935", + "1360", + "136242", + "136259", + "1368", + "1369", + "137392", + "137682", + "137868", + "137872", + "137970", + "1381", + "138199", + "1382", + "1384", + "138474", + "1389", + "1390", + "139065", + "139135", + "139212", + "139322", + "139378", + "139411", + "139562", + "139741", + "140032", + "140290", + "140453", + "140564", + "1406", + "140685", + "140691", + "1407", + "140732", + "140733", + "140739", + "140766", + "140801", + "140803", + "140809", + "140838", + "140850", + "140880", + "141", + "1411", + "1412", + "1413", + "1414", + "1415", + "1417", + "1419", + "1420", + "1421", + "142678", + "142680", + "142689", + "1427", + "1428", + "142891", + "142940", + "143", + "1431", + "143282", + "143496", + "143570", + "143686", + "143689", + "143888", + "144097", + "144108", + "144132", + "144193", + "144195", + "144233", + "144363", + "144406", + "145226", + "145264", + "145407", + "145482", + "1455", + "145508", + "1456", + "145645", + "1459", + "146", + "146167", + "146183", + "146198", + "1462", + "146227", + "146664", + "146691", + "146754", + "1468", + "146802", + "146845", + "146857", + "1469", + "146956", + "1470", + "147111", + "147183", + "1472", + "147339", + "147407", + "147495", + "1476", + "147710", + "147872", + "1479", + "147906", + "148003", + "148327", + "148641", + "148789", + "148811", + "149281", + "149428", + "1495", + "149563", + "15", + "150159", + "150209", + "150275", + "150290", + "150379", + "150572", + "1506", + "1508", + "150921", + "150962", + "151126", + "151194", + "151254", + "151295", + "151354", + "151531", + "151742", + "1519", + "151987", + "152002", + "152006", + "152015", + "1521", + "1522", + "152206", + "152330", + "152404", + "152789", + "1528", + "152816", + "152926", + "153129", + "153201", + "153222", + "1534", + "153527", + "153572", + "1537", + "154007", + "154091", + "154197", + "1543", + "1544", + "154664", + "154743", + "154791", + "154807", + "154865", + "154881", + "155054", + "155066", + "1551", + "155184", + "1553", + "155435", + "1555", + "1557", + "1558", + "1559", + "1562", + "1571", + "1572", + "157285", + "1573", + "157313", + "157506", + "1576", + "157657", + "157695", + "157848", + "157855", + "1580", + "1582", + "1583", + "158376", + "158401", + "1585", + "158511", + "158584", + "1586", + "158800", + "158833", + "158880", + "1589", + "159", + "1592", + "159371", + "1595", + "159963", + "1600", + "1602", + "1603", + "160335", + "160428", + "160728", + "160760", + "161497", + "1615", + "1617", + "161725", + "1618", + "1620", + "1621", + "162417", + "162540", + "1627", + "1628", + "1629", + "162998", + "163033", + "163183", + "163255", + "1633", + "1635", + "163702", + "1638", + "164045", + "1641", + "164684", + "164781", + "1650", + "165082", + "165140", + "165631", + "165679", + "165829", + "1659", + "166012", + "166378", + "166379", + "1665", + "1666", + "166655", + "166793", + "1669", + "166979", + "167127", + "167153", + "167227", + "167359", + "167465", + "1675", + "168451", + "168507", + "168537", + "169355", + "169522", + "170572", + "170589", + "170825", + "170850", + "171546", + "171568", + "1719", + "1727", + "1730", + "1733", + "1734", + "1735", + "1738", + "1741", + "1746", + "1747", + "1750", + "1755", + "1757", + "1761", + "1767", + "1769", + "1770", + "1774", + "1775", + "1781", + "1786", + "1787", + "1791", + "1796", + "1797", + "18", + "1800", + "1807", + "1819", + "1827", + "1830", + "1833", + "1834", + "1838", + "1841", + "1842", + "1844", + "1847", + "1852", + "1874", + "1876", + "1877", + "1892", + "1901", + "1903", + "191", + "1911", + "192134", + "192286", + "192669", + "192670", + "1938", + "1943", + "1945", + "195814", + "195828", + "1959", + "196074", + "1961", + "1962", + "196385", + "1964", + "196483", + "196541", + "196743", + "197135", + "197257", + "197258", + "1973", + "197322", + "197335", + "197342", + "197370", + "1974", + "1975", + "1979", + "1982", + "1983", + "1992", + "199223", + "1993", + "1996", + "1997", + "199720", + "1998", + "1999", + "199974", + "199990", + "200010", + "200162", + "200185", + "2002", + "200205", + "200315", + "200316", + "200373", + "2004", + "200403", + "2005", + "200558", + "200728", + "200894", + "200895", + "2009", + "200909", + "201134", + "2012", + "2014", + "2015", + "201501", + "201562", + "2018", + "201973", + "2021", + "2023", + "2026", + "2028", + "203", + "2030", + "203100", + "203190", + "203245", + "203547", + "205", + "2052", + "205251", + "205327", + "2055", + "205564", + "2059", + "2063", + "207063", + "2078", + "2079", + "2091", + "2101", + "2103", + "2104", + "2108", + "2109", + "2110", + "2114", + "2115", + "2118", + "2119", + "2124", + "2125", + "2134", + "2135", + "2139", + "214", + "2140", + "2145", + "216", + "2166", + "2168", + "2169", + "2170", + "2171", + "2172", + "2173", + "218", + "2182", + "2191", + "219287", + "219333", + "219409", + "2195", + "219527", + "2196", + "219670", + "2197", + "219743", + "219855", + "219970", + "219972", + "219988", + "219990", + "220042", + "220064", + "220074", + "220136", + "220213", + "2204", + "2206", + "220963", + "220988", + "221", + "221078", + "221120", + "221143", + "221154", + "221188", + "221264", + "221393", + "221395", + "221421", + "221443", + "221481", + "221662", + "221687", + "221937", + "221955", + "222", + "222008", + "2224", + "222487", + "222537", + "222545", + "222662", + "2230", + "2232", + "225", + "2256", + "2259", + "2267", + "2274", + "2275", + "22794", + "22795", + "22797", + "22801", + "22803", + "22806", + "22818", + "22821", + "22828", + "22832", + "22849", + "22852", + "22859", + "22868", + "22870", + "22875", + "22877", + "22882", + "22883", + "22885", + "22887", + "22889", + "22893", + "22894", + "22897", + "229", + "22902", + "22913", + "22916", + "22917", + "22918", + "22921", + "22928", + "22929", + "22934", + "22936", + "22937", + "22941", + "22944", + "22949", + "22953", + "22977", + "22983", + "22992", + "23", + "230", + "2300", + "23012", + "23016", + "2302", + "23020", + "23030", + "23031", + "23034", + "23040", + "23051", + "23054", + "23057", + "2306", + "23060", + "23070", + "23072", + "23078", + "23080", + "23087", + "23093", + "23107", + "23112", + "23113", + "23125", + "23127", + "23133", + "23135", + "23138", + "23142", + "23151", + "23152", + "23154", + "23155", + "23160", + "23168", + "23169", + "23173", + "23177", + "23181", + "23185", + "23186", + "23193", + "23195", + "23200", + "23201", + "23205", + "23211", + "23215", + "23218", + "2323", + "23233", + "23234", + "23246", + "23247", + "23250", + "23259", + "2326", + "23262", + "23264", + "2327", + "23279", + "23284", + "23287", + "23288", + "23293", + "2330", + "23300", + "23304", + "23305", + "23309", + "23315", + "23316", + "23318", + "23321", + "23331", + "23336", + "23338", + "23344", + "23368", + "23373", + "23381", + "23385", + "23386", + "23398", + "23408", + "23410", + "23415", + "23416", + "23417", + "2342", + "23421", + "23424", + "23438", + "23439", + "23440", + "23452", + "2346", + "23466", + "23468", + "23475", + "23478", + "23481", + "23492", + "23507", + "23515", + "23517", + "2352", + "23523", + "23528", + "23536", + "23538", + "23539", + "2354", + "23542", + "23549", + "2355", + "23553", + "23554", + "2356", + "23562", + "23563", + "23564", + "23566", + "23569", + "2357", + "23576", + "23583", + "23589", + "2359", + "23595", + "23598", + "23600", + "23613", + "23620", + "23621", + "23626", + "23646", + "23649", + "23657", + "23658", + "23676", + "23683", + "23741", + "23743", + "23746", + "23764", + "23769", + "23780", + "239", + "2395", + "24", + "24138", + "24148", + "2444", + "245909", + "245910", + "245939", + "246269", + "246329", + "246744", + "2483", + "2491", + "2494", + "2495", + "2519", + "2524", + "2527", + "2528", + "252969", + "253012", + "253175", + "253430", + "253461", + "253512", + "253714", + "253782", + "253827", + "253943", + "254013", + "254042", + "254173", + "254225", + "254528", + "254773", + "2550", + "255027", + "2551", + "255101", + "255231", + "255239", + "2553", + "255520", + "255626", + "2557", + "2559", + "255919", + "2560", + "256130", + "256281", + "256471", + "256472", + "256764", + "2569", + "256933", + "256987", + "2570", + "2571", + "2572", + "257397", + "257629", + "25764", + "25780", + "25790", + "25794", + "25796", + "25797", + "258", + "25803", + "25804", + "25806", + "25809", + "2581", + "25814", + "25816", + "25817", + "25819", + "2582", + "25821", + "25824", + "25828", + "2583", + "2584", + "25840", + "25842", + "2585", + "25850", + "25862", + "25871", + "25873", + "25874", + "25876", + "25880", + "25888", + "25895", + "25897", + "259", + "2590", + "25902", + "25906", + "25914", + "25915", + "25917", + "25920", + "259236", + "259249", + "25926", + "259282", + "259285", + "259286", + "259287", + "259289", + "25929", + "259290", + "259292", + "259293", + "259294", + "259296", + "2593", + "25932", + "25940", + "25946", + "25949", + "25960", + "25961", + "25962", + "25979", + "25983", + "25988", + "25994", + "26", + "26011", + "26012", + "26013", + "26019", + "26022", + "26024", + "26031", + "26035", + "26038", + "260429", + "26053", + "26063", + "26073", + "26074", + "26091", + "26092", + "26097", + "26098", + "26115", + "26121", + "26122", + "26136", + "26140", + "26147", + "26149", + "26156", + "26160", + "26164", + "26168", + "2617", + "26173", + "2618", + "26190", + "26205", + "26207", + "26228", + "26232", + "26233", + "26251", + "26257", + "26266", + "26275", + "2628", + "26280", + "26284", + "26287", + "26289", + "26290", + "26292", + "26298", + "26301", + "2631", + "26330", + "26355", + "2637", + "2638", + "2639", + "2641", + "2644", + "2646", + "26476", + "265", + "26503", + "26504", + "26509", + "26512", + "26515", + "2653", + "26548", + "26574", + "26575", + "26578", + "26580", + "26609", + "26664", + "266727", + "266743", + "266977", + "2671", + "26747", + "26750", + "2676", + "2678", + "268", + "2686", + "2687", + "26873", + "269", + "26958", + "26960", + "26986", + "26995", + "2700", + "27010", + "27012", + "27019", + "27033", + "27034", + "27042", + "27043", + "27044", + "27065", + "27069", + "27071", + "27076", + "27079", + "27085", + "27089", + "2709", + "27094", + "27097", + "27102", + "27111", + "27113", + "27115", + "27120", + "27122", + "27125", + "27130", + "27132", + "27151", + "27154", + "27158", + "27165", + "27166", + "27173", + "27181", + "27189", + "27190", + "27199", + "27201", + "27231", + "27233", + "27240", + "27244", + "27247", + "27249", + "27255", + "27257", + "27258", + "27283", + "27284", + "27287", + "27292", + "27297", + "2730", + "27303", + "27304", + "27306", + "2731", + "27324", + "27327", + "27330", + "27335", + "27336", + "27340", + "27343", + "27349", + "27350", + "2739", + "2742", + "27430", + "27434", + "27445", + "2745", + "2747", + "275", + "276", + "2762", + "2764", + "2765", + "277", + "2774", + "2775", + "278", + "2780", + "2781", + "2790", + "2791", + "2794", + "2796", + "2797", + "2798", + "2805", + "2806", + "2817", + "2820", + "28227", + "2823", + "282809", + "2830", + "283150", + "2832", + "283229", + "283310", + "283383", + "2834", + "283417", + "283459", + "283464", + "2835", + "283537", + "283652", + "283677", + "2837", + "283742", + "283847", + "283869", + "283899", + "283987", + "283989", + "2840", + "284106", + "284110", + "284129", + "284161", + "284184", + "284217", + "284293", + "284325", + "284486", + "284541", + "284656", + "284695", + "2847", + "284716", + "2849", + "2850", + "285025", + "285193", + "285195", + "285237", + "285242", + "285331", + "285367", + "2854", + "285498", + "285600", + "285605", + "286077", + "286151", + "286204", + "286205", + "286257", + "286262", + "286410", + "286464", + "286527", + "2866", + "286676", + "286827", + "2872", + "2873", + "2874", + "2880", + "2882", + "2890", + "2891", + "2893", + "28951", + "28957", + "28959", + "28965", + "28969", + "2897", + "28978", + "28981", + "28983", + "28986", + "28987", + "2899", + "28992", + "2900", + "29015", + "29028", + "29035", + "2904", + "2905", + "29063", + "29066", + "29070", + "29074", + "29078", + "29079", + "29095", + "29097", + "29101", + "29102", + "29104", + "29107", + "2911", + "29114", + "29117", + "29119", + "2912", + "29121", + "29122", + "29124", + "2913", + "2917", + "2918", + "292", + "2922", + "2926", + "2928", + "2936", + "2938", + "2941", + "2944", + "2948", + "2949", + "2954", + "2957", + "2958", + "2960", + "2963", + "2967", + "2968", + "2971", + "2972", + "2975", + "2976", + "29767", + "2977", + "29777", + "2978", + "29785", + "29789", + "29800", + "2983", + "29841", + "29842", + "29843", + "29844", + "29855", + "2987", + "29880", + "29890", + "29894", + "29896", + "29906", + "29919", + "2992", + "29929", + "29935", + "29941", + "29946", + "29947", + "29948", + "2995", + "29953", + "29956", + "29958", + "29959", + "29960", + "29965", + "2997", + "29974", + "2998", + "29985", + "29986", + "29988", + "29989", + "29991", + "29992", + "29994", + "29995", + "30", + "30000", + "30014", + "3002", + "3004", + "30062", + "3012", + "3014", + "3029", + "3034", + "3045", + "3046", + "3050", + "3061", + "3062", + "3067", + "3068", + "3073", + "308", + "30811", + "30812", + "30815", + "30816", + "30818", + "30819", + "30820", + "30827", + "3083", + "30833", + "30834", + "30836", + "309", + "3090", + "3094", + "31", + "3101", + "313", + "3131", + "314", + "3142", + "3149", + "3150", + "3151", + "3155", + "3156", + "3157", + "3158", + "316", + "3163", + "317", + "3171", + "3174", + "3177", + "317719", + "318", + "3181", + "3182", + "3183", + "3184", + "3185", + "3189", + "319", + "3191", + "3196", + "320", + "3201", + "3205", + "3206", + "3208", + "321", + "3212", + "3213", + "3214", + "3215", + "3217", + "3221", + "3226", + "3227", + "3229", + "323", + "3232", + "3233", + "3234", + "3235", + "3236", + "3240", + "3242", + "3267", + "3270", + "3274", + "3280", + "3283", + "3284", + "3290", + "3291", + "3292", + "3293", + "3295", + "3298", + "3299", + "332", + "333932", + "3340", + "3347", + "3350", + "3351", + "3352", + "3354", + "3355", + "3359", + "3360", + "3361", + "3362", + "3363", + "3376", + "337876", + "338323", + "338339", + "338398", + "338440", + "338442", + "338557", + "338599", + "338773", + "339", + "339175", + "339221", + "339345", + "339416", + "339453", + "339487", + "339761", + "339983", + "3400", + "340075", + "340146", + "340273", + "340481", + "340602", + "340654", + "340706", + "340719", + "340990", + "3419", + "3420", + "3421", + "342372", + "342618", + "342897", + "342977", + "343", + "343450", + "343641", + "3437", + "344018", + "3441", + "344167", + "3444", + "344905", + "3451", + "345274", + "345275", + "345778", + "345895", + "346", + "346007", + "346288", + "346389", + "3467", + "347148", + "347273", + "347411", + "3475", + "347731", + "347734", + "347853", + "348093", + "348158", + "348180", + "348262", + "3484", + "3487", + "3488", + "348932", + "3490", + "349565", + "35", + "352909", + "353", + "353116", + "353134", + "353142", + "353143", + "353144", + "353164", + "353174", + "353189", + "353238", + "353274", + "353497", + "3547", + "3550", + "357", + "3578", + "3597", + "36", + "3607", + "3608", + "3613", + "3614", + "3617", + "3622", + "3628", + "363", + "3632", + "364", + "3641", + "3658", + "366", + "3660", + "3669", + "3671", + "3672", + "3674", + "3680", + "3681", + "3692", + "3694", + "3704", + "3709", + "3710", + "3712", + "3713", + "3726", + "3727", + "373", + "3730", + "3736", + "3738", + "373863", + "3739", + "3742", + "374291", + "374378", + "374393", + "3744", + "374407", + "374462", + "374569", + "3749", + "374907", + "3751", + "3752", + "375298", + "375346", + "375387", + "3754", + "3755", + "375519", + "375611", + "3761", + "3769", + "377", + "3772", + "3775", + "3777", + "3779", + "3780", + "3785", + "3786", + "3787", + "378948", + "3790", + "3792", + "3795", + "3798", + "38", + "3804", + "381", + "3811", + "3814", + "3816", + "3820", + "3839", + "384", + "3846", + "3853", + "3854", + "3866", + "387119", + "387129", + "387338", + "387521", + "387680", + "387700", + "387715", + "387733", + "387755", + "387787", + "387836", + "3881", + "388112", + "388121", + "3882", + "388364", + "3884", + "3885", + "388531", + "388551", + "388585", + "388591", + "388697", + "388931", + "388939", + "388962", + "389015", + "3891", + "389203", + "389207", + "389493", + "389549", + "389816", + "389903", + "390195", + "3906", + "390637", + "390664", + "390916", + "3910", + "3912", + "3913", + "3921", + "3933", + "3934", + "3938", + "3950", + "3957", + "3960", + "3972", + "3973", + "3975", + "398", + "3980", + "3982", + "3991", + "3993", + "399818", + "40", + "4005", + "400569", + "400629", + "400668", + "4007", + "4008", + "400830", + "4009", + "400961", + "401", + "401138", + "401466", + "401474", + "401494", + "4016", + "401720", + "4018", + "402381", + "4025", + "402569", + "402573", + "4034", + "404281", + "4045", + "4048", + "4049", + "4050", + "4051", + "405754", + "4059", + "406", + "4060", + "4061", + "4062", + "4065", + "4066", + "4069", + "407", + "4084", + "4099", + "4102", + "4103", + "4105", + "4116", + "4126", + "4129", + "4139", + "414062", + "4142", + "4145", + "4146", + "414899", + "4151", + "415116", + "4152", + "4154", + "4159", + "4160", + "4161", + "4185", + "4200", + "4201", + "4209", + "4223", + "4224", + "4232", + "4234", + "4236", + "4248", + "4258", + "4259", + "4288", + "430", + "4302", + "4306", + "431704", + "431705", + "4325", + "4326", + "4329", + "433", + "4331", + "4335", + "4336", + "4337", + "4338", + "434", + "4343", + "435", + "4350", + "4354", + "4357", + "438", + "43849", + "440093", + "440145", + "440574", + "440699", + "440957", + "441024", + "441282", + "441531", + "442038", + "442117", + "442862", + "442867", + "442868", + "4438", + "4439", + "4440", + "445329", + "4482", + "4495", + "4501", + "4502", + "4508", + "4509", + "4514", + "4515", + "4520", + "4521", + "4528", + "4535", + "4536", + "4537", + "4538", + "4540", + "4541", + "4543", + "4580", + "4585", + "4597", + "4599", + "4603", + "4605", + "4608", + "4617", + "4620", + "4622", + "4636", + "4648", + "4656", + "466", + "4660", + "4670", + "4673", + "4676", + "4678", + "4682", + "4685", + "4694", + "4695", + "4696", + "4698", + "47", + "4702", + "4704", + "4705", + "4706", + "4707", + "4708", + "4709", + "471", + "4710", + "4711", + "4712", + "4713", + "4714", + "4715", + "4717", + "4718", + "4720", + "4723", + "4724", + "4725", + "4726", + "4728", + "4729", + "4731", + "4736", + "474", + "4741", + "474381", + "474382", + "475", + "4753", + "4756", + "4759", + "4761", + "4772", + "4775", + "4776", + "4779", + "4781", + "4782", + "4783", + "4793", + "4798", + "48", + "480", + "4800", + "4801", + "4807", + "4809", + "4810", + "4811", + "4815", + "4818", + "4820", + "4821", + "4825", + "4826", + "4828", + "4831", + "4833", + "4837", + "4839", + "4857", + "4861", + "4862", + "4863", + "4883", + "4884", + "4886", + "4887", + "4889", + "4899", + "490", + "4900", + "4901", + "4904", + "4907", + "491", + "492", + "4923", + "493753", + "493869", + "494143", + "4942", + "494513", + "494551", + "4947", + "495", + "4957", + "4973", + "4975", + "497661", + "49854", + "49855", + "4990", + "4991", + "4999", + "50", + "5001", + "5013", + "5016", + "5019", + "5020", + "5023", + "5026", + "5029", + "5030", + "5036", + "503614", + "503841", + "50489", + "5050", + "50507", + "5053", + "50614", + "50617", + "50636", + "50651", + "5066", + "5069", + "50700", + "50717", + "5079", + "50813", + "50831", + "50832", + "50834", + "50836", + "50837", + "50839", + "50840", + "50859", + "50861", + "50863", + "50865", + "5089", + "509", + "5090", + "5092", + "50939", + "50944", + "5097", + "5100", + "51000", + "51001", + "51005", + "51010", + "51013", + "51022", + "5104", + "51043", + "51046", + "51057", + "51060", + "51063", + "51065", + "51066", + "51067", + "51070", + "51071", + "51075", + "51077", + "51078", + "51081", + "51086", + "51087", + "51091", + "51092", + "51096", + "51102", + "51103", + "51104", + "51106", + "51107", + "51109", + "51117", + "51118", + "51138", + "51142", + "51144", + "51146", + "51148", + "51156", + "51166", + "51167", + "51168", + "51170", + "51171", + "51175", + "51179", + "5118", + "51181", + "51195", + "51199", + "51204", + "51207", + "5121", + "51218", + "5122", + "51222", + "51224", + "51228", + "51231", + "51241", + "51247", + "51248", + "51251", + "5126", + "51265", + "51266", + "51267", + "51268", + "51274", + "5128", + "51290", + "51292", + "51294", + "51297", + "51298", + "51300", + "51301", + "51302", + "51310", + "51314", + "5132", + "51335", + "5134", + "51340", + "51348", + "51363", + "51364", + "51367", + "5137", + "51385", + "51390", + "51400", + "51406", + "5141", + "51440", + "51444", + "5145", + "51455", + "51458", + "5146", + "51460", + "51475", + "51477", + "51478", + "5148", + "51481", + "5149", + "51493", + "51495", + "51497", + "515", + "5150", + "51503", + "51504", + "51507", + "51513", + "5152", + "51523", + "51524", + "51531", + "51540", + "51550", + "51585", + "51593", + "51601", + "51602", + "51603", + "51605", + "5161", + "51616", + "5162", + "51621", + "51629", + "5163", + "51634", + "51639", + "5164", + "51643", + "51649", + "51655", + "51660", + "51663", + "51665", + "51669", + "51673", + "51686", + "5169", + "51690", + "51691", + "51693", + "51696", + "51700", + "51703", + "51704", + "51706", + "51714", + "51726", + "51727", + "51728", + "5173", + "51734", + "51747", + "51754", + "51759", + "51761", + "5179", + "518", + "51804", + "51805", + "51806", + "51807", + "51808", + "51809", + "5187", + "5188", + "5198", + "5199", + "5207", + "5208", + "521", + "5211", + "5218", + "522", + "5223", + "5226", + "5228", + "5229", + "5232", + "5243", + "525", + "5250", + "5252", + "5253", + "5264", + "5266", + "5274", + "5275", + "528", + "5304", + "5306", + "5313", + "5316", + "53340", + "53343", + "53345", + "53354", + "53371", + "53405", + "5346", + "5348", + "5349", + "5355", + "5356", + "5357", + "5358", + "5360", + "53615", + "53616", + "53630", + "53632", + "5368", + "5372", + "539", + "53916", + "53919", + "53938", + "5394", + "53981", + "54020", + "54033", + "5409", + "54103", + "54107", + "54108", + "5411", + "54112", + "5414", + "54145", + "54165", + "54205", + "54210", + "54212", + "54221", + "5423", + "5425", + "5427", + "5431", + "5432", + "54328", + "54329", + "5433", + "5434", + "54345", + "5435", + "5436", + "54360", + "54363", + "5437", + "5438", + "5439", + "5440", + "54407", + "5441", + "54414", + "5442", + "54429", + "54456", + "54464", + "54468", + "54474", + "54480", + "54490", + "54491", + "54498", + "54505", + "5451", + "54511", + "54512", + "54514", + "5452", + "5453", + "5454", + "54541", + "54555", + "54556", + "54575", + "54576", + "54577", + "54578", + "54584", + "5459", + "5460", + "54600", + "54623", + "5463", + "54657", + "54663", + "5467", + "54677", + "54681", + "54704", + "54714", + "5473", + "54739", + "5475", + "54756", + "54760", + "54766", + "54768", + "54778", + "54780", + "54796", + "54799", + "5480", + "54802", + "54805", + "54806", + "54814", + "54815", + "54822", + "54828", + "54834", + "54840", + "54851", + "54855", + "54861", + "54862", + "54875", + "54878", + "54883", + "54885", + "54890", + "54891", + "54896", + "54898", + "549", + "54904", + "54905", + "54913", + "54915", + "54916", + "54919", + "54920", + "54931", + "54935", + "54936", + "54938", + "54946", + "54955", + "5496", + "54960", + "54962", + "54963", + "54964", + "54967", + "54969", + "54970", + "54973", + "54976", + "54977", + "54978", + "54981", + "5499", + "54995", + "54996", + "54998", + "55003", + "55006", + "5501", + "55010", + "55035", + "55037", + "5504", + "55055", + "55065", + "55074", + "55081", + "55086", + "55094", + "5510", + "55101", + "55106", + "5511", + "55110", + "55117", + "55124", + "55127", + "55129", + "55140", + "55145", + "55147", + "55149", + "55151", + "55157", + "55161", + "55163", + "55170", + "55172", + "55174", + "55177", + "55178", + "55180", + "55181", + "55186", + "55191", + "55197", + "5520", + "55208", + "5521", + "55214", + "55217", + "55218", + "55219", + "55233", + "55234", + "55238", + "55239", + "55245", + "55246", + "55247", + "55248", + "55250", + "55252", + "55256", + "55257", + "55262", + "55272", + "55277", + "55278", + "55280", + "55283", + "55290", + "552900", + "55291", + "55301", + "55304", + "5531", + "55312", + "55319", + "55323", + "55327", + "55328", + "55329", + "5533", + "55332", + "55334", + "5534", + "55341", + "55345", + "55347", + "55349", + "55352", + "5536", + "5540", + "55421", + "55454", + "55471", + "5549", + "55501", + "55502", + "55509", + "55512", + "5552", + "55526", + "55534", + "55536", + "55540", + "55544", + "55556", + "55561", + "55568", + "55572", + "55584", + "55586", + "55596", + "55599", + "55602", + "55611", + "55619", + "55623", + "55628", + "55629", + "55635", + "5564", + "55640", + "5565", + "55656", + "55657", + "55676", + "55679", + "5568", + "55695", + "55698", + "55711", + "55714", + "55723", + "55726", + "55734", + "55735", + "55742", + "55744", + "55749", + "55753", + "55759", + "55771", + "55779", + "55783", + "55787", + "55794", + "55795", + "55796", + "55798", + "55802", + "55808", + "55811", + "55813", + "55814", + "55816", + "55824", + "55825", + "55827", + "55832", + "55837", + "55840", + "55841", + "55846", + "55847", + "5585", + "55857", + "55867", + "55871", + "55879", + "55891", + "55893", + "55897", + "55898", + "55902", + "55909", + "55915", + "55922", + "55954", + "5596", + "55967", + "5597", + "55970", + "55974", + "55975", + "55997", + "56000", + "5607", + "5612", + "56134", + "56154", + "56155", + "56159", + "56171", + "5623", + "5625", + "5627", + "563", + "56300", + "56301", + "5634", + "5635", + "5636", + "5646", + "56474", + "56475", + "56479", + "5649", + "56521", + "56548", + "56606", + "56655", + "56667", + "56670", + "5669", + "56704", + "5671", + "5672", + "56729", + "5673", + "56731", + "5676", + "5680", + "56829", + "5684", + "56853", + "56882", + "5689", + "56897", + "56898", + "56902", + "56910", + "56914", + "56924", + "56928", + "5693", + "56931", + "56938", + "56941", + "56943", + "56949", + "56950", + "56952", + "56953", + "56954", + "56955", + "56963", + "56965", + "56970", + "56978", + "56979", + "56980", + "56981", + "56986", + "56990", + "56999", + "570", + "5700", + "57002", + "57016", + "57017", + "57018", + "57030", + "57035", + "5704", + "57050", + "57053", + "57054", + "57055", + "57060", + "57089", + "57094", + "57095", + "57097", + "57099", + "571", + "57101", + "57107", + "57109", + "5711", + "57113", + "57117", + "57127", + "57128", + "57134", + "57135", + "57140", + "57143", + "57144", + "57146", + "5715", + "57156", + "57158", + "57176", + "57181", + "57198", + "57205", + "57215", + "57216", + "57223", + "57226", + "5724", + "5726", + "57282", + "5730", + "5731", + "5732", + "57326", + "5733", + "57332", + "57338", + "57348", + "57380", + "5739", + "57396", + "57406", + "57409", + "57412", + "57419", + "5742", + "5743", + "5744", + "57452", + "57453", + "574537", + "5746", + "57461", + "57462", + "57466", + "57473", + "57477", + "57478", + "57486", + "57494", + "57496", + "57504", + "57505", + "57508", + "57540", + "57558", + "57559", + "57562", + "5757", + "57570", + "57571", + "57582", + "57593", + "576", + "57604", + "57609", + "57616", + "57620", + "57621", + "5763", + "57634", + "57649", + "57654", + "57657", + "57658", + "57659", + "57670", + "57691", + "57695", + "57698", + "577", + "57703", + "57704", + "57708", + "57709", + "57713", + "57716", + "57719", + "57721", + "57731", + "5775", + "5778", + "57786", + "57798", + "57804", + "57817", + "57819", + "57826", + "57835", + "57862", + "57863", + "5787", + "579", + "5790", + "5791", + "5794", + "5799", + "5803", + "58155", + "58157", + "58190", + "58191", + "5822", + "58472", + "58478", + "58488", + "58489", + "58490", + "58503", + "58505", + "58510", + "58513", + "58515", + "58516", + "58517", + "58528", + "5858", + "586", + "587", + "5875", + "5876", + "5884", + "5891", + "5893", + "5902", + "5910", + "5917", + "5926", + "59269", + "5928", + "5929", + "593", + "5933", + "59336", + "5934", + "59348", + "5935", + "5937", + "5939", + "594", + "5940", + "5948", + "5949", + "5957", + "5973", + "5989", + "599", + "5991", + "5992", + "5995", + "6002", + "6003", + "6005", + "6006", + "6007", + "6015", + "6035", + "6037", + "6038", + "6039", + "60436", + "60481", + "60489", + "60490", + "60491", + "60493", + "60495", + "60496", + "60509", + "6051", + "60528", + "60560", + "60625", + "606495", + "60676", + "60677", + "60680", + "607", + "608", + "6094", + "6096", + "6098", + "6100", + "6101", + "6120", + "6122", + "6124", + "6128", + "6129", + "6130", + "613210", + "6136", + "6137", + "6139", + "6142", + "6143", + "6144", + "6146", + "6147", + "6150", + "6152", + "6156", + "6157", + "6158", + "6159", + "6161", + "6164", + "6167", + "6168", + "6169", + "617", + "6170", + "6171", + "6173", + "6175", + "6176", + "6182", + "6184", + "6185", + "6189", + "6191", + "6192", + "6193", + "619373", + "6194", + "6196", + "6199", + "6202", + "6203", + "6205", + "6207", + "6217", + "6222", + "6227", + "623", + "6230", + "6233", + "6238", + "6242", + "6252", + "6253", + "6257", + "6275", + "6277", + "6282", + "6285", + "6286", + "6294", + "6297", + "6300", + "6302", + "6305", + "631", + "6319", + "632", + "6320", + "6332", + "6341", + "6344", + "635", + "6358", + "63826", + "63892", + "63899", + "639", + "63901", + "63904", + "63908", + "63910", + "63917", + "63929", + "63931", + "63933", + "63935", + "63941", + "63970", + "6398", + "63982", + "6405", + "64061", + "64063", + "6407", + "64077", + "64078", + "64080", + "64098", + "64118", + "64122", + "64123", + "641371", + "641372", + "6414", + "64146", + "64172", + "64174", + "6419", + "64207", + "64208", + "64210", + "64216", + "64221", + "6423", + "642597", + "6426", + "642658", + "6428", + "64284", + "6429", + "6430", + "6431", + "6432", + "643226", + "6434", + "643414", + "64342", + "64359", + "64374", + "64376", + "64377", + "64388", + "64398", + "64399", + "64403", + "64407", + "644096", + "64412", + "6442", + "64423", + "64425", + "64426", + "64428", + "64429", + "6443", + "64432", + "64446", + "6445", + "645", + "64506", + "645104", + "64518", + "64577", + "646", + "6461", + "6468", + "646817", + "646960", + "64699", + "64708", + "647087", + "64711", + "6474", + "64757", + "64761", + "64764", + "64768", + "64769", + "64770", + "64781", + "64782", + "64783", + "64784", + "64788", + "64789", + "64794", + "64802", + "64816", + "64843", + "64849", + "64852", + "64854", + "64863", + "6489", + "64902", + "64921", + "64922", + "64975", + "64976", + "65080", + "65083", + "651", + "65110", + "6514", + "6517", + "6522", + "6525", + "6526", + "65260", + "65263", + "65264", + "652968", + "6530", + "653121", + "6534", + "653499", + "653509", + "653519", + "653604", + "6542", + "6543", + "654483", + "6547", + "6549", + "6553", + "6554", + "656", + "6563", + "6568", + "6569", + "6574", + "6575", + "6579", + "6594", + "6596", + "65985", + "65990", + "65991", + "65993", + "66002", + "66005", + "66035", + "66036", + "66037", + "6607", + "6610", + "6614", + "6615", + "6618", + "6619", + "6620", + "6621", + "6626", + "6627", + "6629", + "6631", + "6632", + "6633", + "6634", + "6635", + "6636", + "6637", + "6641", + "6650", + "666", + "6665", + "6668", + "6670", + "6671", + "6674", + "6677", + "6687", + "669", + "6691", + "6694", + "6697", + "6698", + "6699", + "670", + "6700", + "6704", + "6709", + "6712", + "6713", + "6715", + "6716", + "6723", + "6733", + "6750", + "6753", + "6754", + "6756", + "676", + "6760", + "6779", + "6780", + "6783", + "6787", + "6799", + "680", + "6801", + "6818", + "6819", + "6822", + "6827", + "6830", + "6834", + "6846", + "6854", + "6855", + "6856", + "6861", + "6862", + "6863", + "6874", + "6875", + "6876", + "6877", + "6878", + "688", + "6881", + "6883", + "6884", + "6888", + "6894", + "6906", + "6911", + "6915", + "6917", + "6921", + "6923", + "6924", + "6936", + "6939", + "6940", + "6943", + "6944", + "6947", + "6996", + "7001", + "7003", + "7004", + "7007", + "7019", + "7022", + "7024", + "7029", + "7031", + "7062", + "7071", + "7072", + "7073", + "7075", + "7077", + "7088", + "7089", + "7090", + "7093", + "7101", + "7102", + "7106", + "7108", + "7109", + "7112", + "7123", + "7143", + "7159", + "7161", + "7167", + "7171", + "7172", + "7178", + "7179", + "7181", + "7182", + "7200", + "7205", + "7216", + "7220", + "7222", + "7223", + "7224", + "7225", + "7247", + "7257", + "7258", + "7262", + "7263", + "7268", + "7272", + "7277", + "727936", + "727940", + "7280", + "728224", + "7284", + "728492", + "728568", + "728642", + "728712", + "7288", + "729", + "7293", + "729359", + "729438", + "729515", + "729830", + "730", + "7306", + "7307", + "7311", + "7318", + "7342", + "7347", + "7348", + "7350", + "7351", + "7356", + "7357", + "7360", + "7363", + "7364", + "7365", + "7366", + "7367", + "7368", + "7371", + "7378", + "7379", + "7380", + "7381", + "7384", + "7385", + "7386", + "7388", + "7403", + "7407", + "7417", + "7419", + "7433", + "7434", + "746", + "7464", + "747", + "7475", + "7478", + "7479", + "7483", + "7504", + "751071", + "7511", + "7515", + "752014", + "7536", + "7541", + "7543", + "7552", + "7559", + "7572", + "7584", + "7589", + "7593", + "762", + "7625", + "7629", + "763", + "7644", + "765", + "767", + "768206", + "7692", + "7695", + "7699", + "7700", + "7701", + "7702", + "7705", + "7709", + "771", + "7727", + "7728", + "7732", + "7750", + "7753", + "7755", + "7764", + "7767", + "777", + "7779", + "7783", + "7789", + "7799", + "7802", + "7809", + "7818", + "7832", + "784", + "785", + "7850", + "7866", + "7884", + "78987", + "78990", + "78995", + "78996", + "790", + "79000", + "79002", + "79017", + "79023", + "79026", + "79027", + "79029", + "7903", + "79042", + "79048", + "79054", + "79064", + "79066", + "79068", + "79070", + "79071", + "79072", + "79077", + "79083", + "79085", + "79091", + "79095", + "790955", + "79096", + "79133", + "79135", + "7915", + "79152", + "79153", + "79154", + "79178", + "7919", + "79192", + "7920", + "793", + "7932", + "7936", + "79364", + "79365", + "79366", + "79369", + "79370", + "79400", + "79413", + "79447", + "79465", + "79572", + "79574", + "79581", + "79582", + "79586", + "79587", + "79595", + "79603", + "79605", + "79609", + "79611", + "79612", + "79623", + "79624", + "79641", + "79646", + "79648", + "7965", + "79656", + "79661", + "79664", + "79668", + "79669", + "79670", + "79672", + "79675", + "79680", + "79683", + "79690", + "79691", + "79695", + "797", + "79706", + "79707", + "79717", + "79723", + "79725", + "79726", + "79727", + "79731", + "79736", + "79739", + "79746", + "7975", + "79751", + "7976", + "79760", + "79762", + "79763", + "79776", + "7979", + "79794", + "79797", + "79799", + "79800", + "79814", + "79816", + "79817", + "79828", + "79831", + "79833", + "79839", + "79844", + "79846", + "79849", + "79852", + "79853", + "79858", + "79865", + "79868", + "79872", + "79873", + "79877", + "79879", + "79882", + "79885", + "79886", + "79897", + "79903", + "7991", + "79922", + "79923", + "79925", + "79934", + "79960", + "79966", + "79968", + "79969", + "79993", + "80004", + "80010", + "80014", + "80114", + "80124", + "80129", + "80142", + "80145", + "80146", + "80150", + "80155", + "80162", + "80173", + "8019", + "80198", + "80201", + "80210", + "80213", + "80217", + "80221", + "80222", + "80224", + "80237", + "80270", + "80303", + "80308", + "80312", + "80319", + "80320", + "80323", + "80328", + "80329", + "80335", + "8034", + "80347", + "8050", + "80704", + "80705", + "80709", + "80712", + "80714", + "80724", + "80726", + "80727", + "80739", + "80746", + "80758", + "80763", + "80764", + "80777", + "80789", + "80817", + "8082", + "80820", + "80832", + "80833", + "80835", + "80854", + "8089", + "80896", + "80975", + "8099", + "81027", + "81029", + "81030", + "81034", + "8106", + "8111", + "8115", + "8125", + "8128", + "8139", + "81567", + "81602", + "81605", + "81606", + "81615", + "81616", + "81623", + "81624", + "8165", + "81669", + "81689", + "8170", + "8175", + "8178", + "81786", + "81833", + "81846", + "81848", + "81853", + "8187", + "81890", + "8192", + "8193", + "81931", + "8195", + "8208", + "8224", + "8227", + "8228", + "8233", + "8237", + "826", + "8277", + "8284", + "8287", + "8290", + "8292", + "8293", + "830", + "8303", + "8309", + "8315", + "8325", + "8326", + "8328", + "8334", + "8335", + "8339", + "83401", + "8343", + "8344", + "83440", + "83442", + "83443", + "83444", + "83448", + "83449", + "8346", + "83464", + "8347", + "83478", + "83482", + "8349", + "835", + "83539", + "83541", + "83544", + "83549", + "83552", + "83594", + "83595", + "83640", + "83642", + "83643", + "83690", + "83697", + "83716", + "83719", + "83723", + "83732", + "83733", + "83740", + "83756", + "83795", + "8382", + "83853", + "83854", + "83857", + "8386", + "83873", + "83875", + "8388", + "83884", + "83893", + "83894", + "83938", + "83939", + "83942", + "83982", + "83983", + "83999", + "84002", + "8403", + "84056", + "84062", + "84065", + "84069", + "8407", + "84071", + "84074", + "84081", + "84102", + "84105", + "84108", + "84109", + "84128", + "84129", + "84132", + "84135", + "84138", + "84140", + "84146", + "84148", + "84154", + "8416", + "84173", + "84181", + "84187", + "8419", + "84191", + "84197", + "84216", + "84225", + "84232", + "84233", + "84239", + "8424", + "84245", + "84248", + "84255", + "84256", + "84259", + "84262", + "84265", + "84266", + "84267", + "8427", + "84271", + "84273", + "84274", + "84275", + "84287", + "84289", + "84292", + "84293", + "84300", + "84303", + "84309", + "84316", + "84321", + "84324", + "84327", + "8433", + "84333", + "84334", + "8434", + "84343", + "8439", + "84441", + "8446", + "8449", + "84502", + "84504", + "84513", + "84525", + "84528", + "84529", + "84530", + "84532", + "84541", + "84548", + "8456", + "8458", + "84617", + "84618", + "84620", + "8463", + "84634", + "8464", + "84656", + "84658", + "84659", + "84662", + "84669", + "8467", + "84678", + "84687", + "84693", + "84695", + "84699", + "84700", + "84705", + "84707", + "84717", + "84733", + "84735", + "84750", + "84759", + "84766", + "84769", + "84779", + "84787", + "8479", + "84795", + "84808", + "84811", + "84816", + "84836", + "84839", + "8484", + "84844", + "84858", + "84859", + "84867", + "84872", + "84873", + "84881", + "84883", + "84890", + "84892", + "84893", + "84897", + "84899", + "84902", + "84904", + "84909", + "8491", + "84912", + "84916", + "8492", + "84925", + "84939", + "84950", + "84951", + "84957", + "8496", + "84969", + "84991", + "85004", + "85007", + "85015", + "85016", + "85019", + "85021", + "8505", + "8509", + "8515", + "8519", + "8521", + "85236", + "8528", + "85289", + "85290", + "8530", + "85300", + "8532", + "85320", + "85329", + "8533", + "8534", + "8535", + "85365", + "8538", + "8539", + "8540", + "85403", + "85414", + "85437", + "8544", + "85441", + "8545", + "85451", + "85452", + "85458", + "85476", + "8556", + "8559", + "8563", + "8564", + "8569", + "8574", + "8575", + "86", + "8608", + "8612", + "8614", + "862", + "8620", + "8622", + "8624", + "8630", + "8632", + "8633", + "8635", + "8639", + "8645", + "8648", + "8649", + "8653", + "8655", + "866", + "86614", + "8668", + "8669", + "8672", + "8683", + "8685", + "869", + "8690", + "8693", + "8702", + "8703", + "8705", + "8706", + "8707", + "8708", + "8714", + "8718", + "8727", + "873", + "8731", + "8732", + "8735", + "874", + "8745", + "8747", + "8748", + "8763", + "8771", + "87769", + "8777", + "8786", + "8787", + "8789", + "8790", + "8793", + "8802", + "8803", + "8804", + "8805", + "8811", + "8814", + "8822", + "8825", + "883", + "8833", + "8834", + "8839", + "8842", + "8846", + "8848", + "885", + "8852", + "8856", + "8858", + "886", + "8861", + "8863", + "8864", + "8869", + "887", + "8870", + "8872", + "88745", + "8875", + "8876", + "8879", + "8880", + "8894", + "8899", + "8908", + "8909", + "89122", + "8914", + "8927", + "8932", + "8935", + "8939", + "8970", + "8972", + "8973", + "89765", + "898", + "89822", + "89845", + "89869", + "89874", + "89876", + "89885", + "8991", + "89910", + "8992", + "89978", + "8999", + "9", + "9001", + "90060", + "90120", + "9013", + "9014", + "9015", + "9016", + "90167", + "9020", + "9022", + "90226", + "9023", + "9027", + "9028", + "90313", + "9032", + "90326", + "9037", + "9038", + "90381", + "9039", + "90390", + "9040", + "90411", + "9045", + "9046", + "9047", + "9048", + "9052", + "90522", + "90527", + "90529", + "9054", + "9057", + "9058", + "9060", + "9061", + "90624", + "9063", + "90639", + "9064", + "90665", + "9070", + "90701", + "9075", + "9080", + "90806", + "9081", + "90826", + "9083", + "9084", + "9085", + "90871", + "9093", + "9095", + "90956", + "91012", + "91057", + "911", + "91107", + "9114", + "9123", + "9124", + "91252", + "9127", + "9128", + "9129", + "91298", + "9130", + "9132", + "9136", + "91419", + "91442", + "9153", + "91582", + "9159", + "91607", + "91624", + "91689", + "9169", + "91734", + "91746", + "9177", + "91860", + "91869", + "9188", + "9194", + "91942", + "9196", + "91966", + "9197", + "91975", + "9201", + "92014", + "9205", + "9208", + "9210", + "92105", + "9211", + "92126", + "9213", + "92170", + "9219", + "9221", + "92211", + "92292", + "9232", + "92342", + "9235", + "9236", + "92370", + "9238", + "924", + "9242", + "9245", + "9246", + "9248", + "92482", + "92483", + "9249", + "9254", + "92552", + "92597", + "92609", + "9262", + "9263", + "9265", + "9267", + "9271", + "92715", + "92745", + "92749", + "9277", + "92797", + "9282", + "92840", + "92856", + "92906", + "9293", + "92935", + "93010", + "93034", + "9308", + "93100", + "93107", + "9311", + "9312", + "9313", + "93166", + "9318", + "9326", + "9328", + "9329", + "9330", + "9331", + "9334", + "9337", + "9340", + "93474", + "9348", + "9351", + "9356", + "93594", + "9360", + "93622", + "9364", + "9369", + "9374", + "9375", + "9376", + "9379", + "9380", + "9391", + "9394", + "93953", + "93973", + "9398", + "9402", + "94027", + "94031", + "94033", + "9407", + "94081", + "9410", + "94101", + "94107", + "9412", + "94137", + "9415", + "9416", + "9419", + "942", + "9420", + "94233", + "94234", + "9424", + "94241", + "9429", + "9435", + "9439", + "9440", + "9441", + "9443", + "9444", + "9445", + "9448", + "9455", + "9456", + "946", + "9462", + "9466", + "9467", + "9472", + "9473", + "9476", + "9477", + "9479", + "9480", + "9486", + "9498", + "95", + "9500", + "9506", + "9514", + "9516", + "9519", + "9521", + "9524", + "9534", + "9535", + "9536", + "9537", + "9538", + "9540", + "9541", + "9542", + "9546", + "9550", + "9551", + "9557", + "9563", + "9567", + "95681", + "9580", + "9582", + "9583", + "9584", + "9586", + "9589", + "9590", + "9592", + "9595", + "9603", + "9605", + "9612", + "9615", + "9616", + "962", + "9620", + "9622", + "9623", + "9626", + "9630", + "9635", + "9640", + "9644", + "9646", + "9651", + "9656", + "9657", + "9668", + "9669", + "9673", + "96764", + "9677", + "9682", + "9686", + "9689", + "97", + "9704", + "971", + "9710", + "9716", + "9718", + "9725", + "9731", + "9733", + "9735", + "9745", + "9758", + "976", + "9760", + "9761", + "9766", + "9767", + "9768", + "9774", + "978", + "9781", + "9785", + "9789", + "9790", + "9792", + "9794", + "9796", + "98", + "9802", + "9806", + "9810", + "9811", + "9819", + "9825", + "9836", + "984", + "9846", + "9851", + "9855", + "9860", + "9862", + "9877", + "9879", + "988", + "9881", + "9882", + "9887", + "9890", + "9891", + "9902", + "9910", + "9911", + "9913", + "9923", + "9924", + "9925", + "9933", + "9942", + "9945", + "9953", + "9955", + "9956", + "9957", + "9960", + "9962", + "9963", + "9967", + "9969", + "9970", + "9973", + "9975", + "9980", + "9986", + "9987", + "9991", + "9997" + ], + "neutral_gene_info": { + "GO:0001819": { + "Name": "positive regulation of cytokine production", + "Task": "GO", + "Genes": [ + "10010", + "100431172", + "10084", + "10125", + "10146", + "10148", + "10159", + "10211", + "10392", + "10394", + "10464", + "10542", + "10554", + "10555", + "10564", + "10621", + "10622", + "10623", + "10626", + "10855", + "10859", + "10892", + "10972", + "11027", + "11118", + "11119", + "11126", + "11128", + "11146", + "11148", + "112744", + "11315", + "114548", + "114609", + "1147", + "114836", + "114899", + "114900", + "115004", + "115362", + "116", + "117854", + "1191", + "126259", + "1432", + "1436", + "1437", + "144811", + "147372", + "148022", + "149233", + "150", + "1535", + "1604", + "161882", + "163486", + "1649", + "1652", + "1654", + "1660", + "1670", + "170506", + "177", + "1813", + "183", + "192683", + "199", + "1991", + "201292", + "201633", + "2048", + "2069", + "2149", + "2150", + "2152", + "2219", + "22861", + "22900", + "22925", + "2324", + "23586", + "23705", + "23765", + "24145", + "246778", + "247", + "25865", + "2597", + "260434", + "26191", + "2625", + "2658", + "27159", + "282618", + "283420", + "284340", + "2867", + "28984", + "29072", + "29108", + "29110", + "29126", + "29923", + "301", + "3091", + "3105", + "3113", + "3115", + "3133", + "3134", + "3135", + "3146", + "3162", + "3303", + "3304", + "331", + "3320", + "3329", + "3357", + "336", + "338322", + "338382", + "340061", + "3428", + "3458", + "351", + "353091", + "353376", + "353514", + "3552", + "3553", + "3554", + "3558", + "3565", + "3569", + "3570", + "3572", + "3574", + "3586", + "3592", + "3593", + "3594", + "3595", + "3596", + "3600", + "3603", + "3605", + "3606", + "3630", + "3654", + "3659", + "3661", + "3662", + "3663", + "3665", + "3717", + "373509", + "3805", + "3815", + "3929", + "3952", + "3965", + "4023", + "405", + "4063", + "4155", + "4179", + "4192", + "4210", + "4282", + "4317", + "4345", + "468", + "4829", + "4838", + "4843", + "4860", + "4938", + "4939", + "4940", + "5004", + "5005", + "5008", + "5027", + "5047", + "5054", + "51157", + "51284", + "51311", + "5142", + "5144", + "51561", + "51744", + "5196", + "5245", + "5293", + "5294", + "53342", + "5345", + "54106", + "541468", + "55655", + "55703", + "55765", + "55801", + "5600", + "5601", + "5603", + "56253", + "566", + "5663", + "567", + "57506", + "57824", + "58484", + "5861", + "59067", + "5914", + "5970", + "5987", + "6095", + "6188", + "6284", + "6288", + "6346", + "6375", + "64127", + "64135", + "64170", + "64581", + "661", + "6647", + "6653", + "6693", + "6711", + "672", + "6772", + "6774", + "6850", + "6868", + "6885", + "7040", + "7057", + "7096", + "7097", + "7098", + "7099", + "7100", + "7124", + "718", + "7186", + "7187", + "7189", + "727", + "7291", + "7292", + "7294", + "7297", + "7474", + "7855", + "80342", + "80381", + "814", + "8140", + "834", + "83786", + "841", + "84282", + "84433", + "84632", + "84868", + "85480", + "861", + "8692", + "8737", + "8767", + "8772", + "8780", + "8809", + "8915", + "89870", + "90865", + "914", + "9181", + "91947", + "923", + "9370", + "940", + "943", + "9447", + "9451", + "947", + "959", + "9636", + "9641", + "965", + "972", + "975", + "9868", + "9971" + ] + }, + "GO:0051090": { + "Name": "regulation of DNA-binding transcription factor activity", + "Task": "GO", + "Genes": [ + "10014", + "10206", + "10221", + "1029", + "10346", + "10392", + "10459", + "10475", + "10519", + "1054", + "10542", + "10616", + "10891", + "10892", + "10935", + "10987", + "11035", + "11043", + "11074", + "11124", + "11213", + "11261", + "11315", + "11331", + "114548", + "114609", + "1147", + "1191", + "121268", + "1240", + "135644", + "1386", + "140", + "149951", + "150372", + "150684", + "152138", + "153090", + "1540", + "1611", + "1649", + "1660", + "170622", + "171392", + "177", + "183", + "1856", + "1896", + "190", + "1906", + "197358", + "2033", + "207", + "2099", + "2100", + "219790", + "222166", + "2241", + "22900", + "22954", + "22976", + "23028", + "23085", + "2316", + "23376", + "23411", + "23586", + "23678", + "238", + "2535", + "25855", + "25865", + "25950", + "260434", + "26471", + "26508", + "27148", + "28232", + "283629", + "284434", + "285315", + "286430", + "28952", + "28984", + "29108", + "3055", + "306", + "3066", + "307", + "3169", + "3170", + "3275", + "3297", + "3303", + "3304", + "338382", + "3397", + "3398", + "3399", + "340061", + "351", + "3551", + "3553", + "3569", + "3586", + "3606", + "3630", + "3654", + "3656", + "367", + "3728", + "3815", + "3965", + "4040", + "4057", + "408", + "409", + "4188", + "4294", + "4345", + "4591", + "4760", + "4792", + "4794", + "4795", + "4808", + "4838", + "4869", + "4914", + "4919", + "4921", + "4922", + "4985", + "49860", + "50943", + "51270", + "51341", + "51684", + "5195", + "5292", + "5314", + "53840", + "54101", + "54583", + "5468", + "5478", + "55072", + "5516", + "55182", + "55223", + "55367", + "5583", + "5584", + "55859", + "5587", + "5588", + "55906", + "55914", + "5610", + "5629", + "56849", + "5687", + "56998", + "57118", + "5716", + "5727", + "5728", + "5740", + "57413", + "57506", + "58484", + "58487", + "58509", + "5925", + "5927", + "59307", + "5970", + "5987", + "602", + "60401", + "6045", + "6188", + "6279", + "6280", + "6283", + "6375", + "64127", + "64170", + "6424", + "64320", + "6446", + "650", + "6597", + "6598", + "65992", + "6672", + "6688", + "6722", + "6737", + "6788", + "6850", + "6872", + "6929", + "6934", + "695", + "7027", + "7037", + "7097", + "7099", + "7124", + "7128", + "7158", + "7185", + "7186", + "7187", + "7188", + "7189", + "7334", + "7335", + "7341", + "7472", + "7474", + "7706", + "7726", + "7874", + "79092", + "7984", + "79918", + "80149", + "80279", + "815", + "81603", + "825", + "8321", + "8322", + "8323", + "83860", + "8399", + "84159", + "84166", + "8431", + "84433", + "84851", + "84868", + "84875", + "8517", + "85363", + "8553", + "8600", + "8613", + "8717", + "8737", + "8767", + "8792", + "8807", + "8809", + "8877", + "8896", + "8915", + "8928", + "8945", + "8986", + "89870", + "90268", + "91662", + "9175", + "9181", + "92140", + "9252", + "92565", + "9314", + "93649", + "9421", + "9447", + "948", + "958", + "959", + "9641", + "9684", + "9759", + "9817", + "9830" + ] + }, + "GO:0044089": { + "Name": "positive regulation of cellular component biogenesis", + "Task": "GO", + "Genes": [ + "10015", + "10018", + "100287171", + "1003", + "10096", + "10097", + "10109", + "10142", + "10146", + "1015", + "10152", + "10155", + "10163", + "1017", + "10174", + "10211", + "10273", + "10344", + "10399", + "10411", + "10435", + "10600", + "10615", + "10677", + "10733", + "10787", + "10801", + "10807", + "10979", + "11076", + "11124", + "11135", + "11152", + "112574", + "11267", + "11315", + "11344", + "114609", + "115362", + "116985", + "1191", + "1236", + "1307", + "1365", + "139818", + "140609", + "143098", + "1437", + "1440", + "146206", + "148170", + "1490", + "149461", + "153090", + "153241", + "158297", + "163786", + "1639", + "1778", + "183", + "1969", + "1981", + "2017", + "202018", + "21", + "2185", + "221908", + "2241", + "2242", + "22843", + "22871", + "22880", + "22919", + "22930", + "22998", + "23019", + "23122", + "23130", + "23187", + "23191", + "23272", + "23332", + "23379", + "23400", + "23433", + "23514", + "23580", + "23636", + "246175", + "25", + "253725", + "25782", + "25802", + "26047", + "261734", + "26191", + "2658", + "27183", + "27243", + "27286", + "2895", + "28964", + "28984", + "29109", + "2932", + "29899", + "3038", + "3055", + "3064", + "3071", + "3084", + "324", + "3265", + "3273", + "3303", + "3304", + "3320", + "335", + "3373", + "3458", + "3567", + "373509", + "3791", + "382", + "387", + "388630", + "389", + "3936", + "3958", + "3984", + "3987", + "401548", + "402", + "4076", + "4088", + "4089", + "4137", + "4204", + "4233", + "4312", + "4314", + "442721", + "4653", + "4690", + "472", + "4733", + "4771", + "4848", + "4867", + "4926", + "49856", + "5027", + "5058", + "5064", + "51100", + "51196", + "51375", + "51466", + "51535", + "51738", + "5216", + "5217", + "5305", + "5336", + "53407", + "5341", + "5345", + "54443", + "545", + "54552", + "54737", + "54869", + "54874", + "54922", + "55062", + "55160", + "55604", + "55612", + "55626", + "55704", + "55719", + "55729", + "55755", + "55835", + "55845", + "55971", + "5599", + "56919", + "57343", + "57472", + "57482", + "57506", + "57535", + "57600", + "57606", + "57787", + "578", + "5795", + "581", + "5829", + "5879", + "5880", + "5898", + "5899", + "5908", + "59272", + "6188", + "6249", + "627", + "6281", + "6356", + "6366", + "6369", + "637", + "6376", + "638", + "6382", + "6385", + "6386", + "64112", + "64581", + "64787", + "64805", + "6491", + "655", + "6622", + "6624", + "6714", + "6850", + "6886", + "695", + "7010", + "7013", + "7016", + "7037", + "7040", + "7043", + "7046", + "7070", + "7122", + "7124", + "7157", + "7175", + "7248", + "7251", + "7341", + "7401", + "7408", + "7415", + "7429", + "7453", + "7471", + "7476", + "7481", + "7879", + "79184", + "79734", + "79837", + "7984", + "79953", + "79998", + "80199", + "8027", + "8100", + "81857", + "822", + "8396", + "84250", + "84299", + "8440", + "84630", + "8477", + "84962", + "85459", + "8631", + "8723", + "8739", + "8829", + "89795", + "90102", + "90410", + "90678", + "9146", + "94", + "9475", + "9525", + "9636", + "9639", + "96459", + "9647", + "9662", + "9696", + "9750", + "9780", + "9793", + "9869", + "989", + "9898", + "9908" + ] + }, + "GO:0051493": { + "Name": "regulation of cytoskeleton organization", + "Task": "GO", + "Genes": [ + "10015", + "1003", + "10039", + "100505385", + "10142", + "10152", + "10163", + "10174", + "10300", + "10344", + "10382", + "10391", + "10395", + "10411", + "10432", + "10435", + "10456", + "10458", + "10460", + "10519", + "10565", + "10615", + "10634", + "1073", + "10733", + "10787", + "10788", + "10979", + "11075", + "11076", + "11151", + "11170", + "11211", + "11344", + "116985", + "118", + "119", + "1201", + "1236", + "123720", + "126731", + "126820", + "128272", + "128866", + "136319", + "1398", + "1440", + "146057", + "146206", + "148170", + "1490", + "1496", + "153241", + "1540", + "157922", + "1613", + "163786", + "1639", + "1729", + "1778", + "1856", + "1857", + "1906", + "1946", + "2011", + "2017", + "203228", + "2039", + "2042", + "2150", + "2185", + "220134", + "221150", + "221908", + "2241", + "2242", + "22843", + "22919", + "22924", + "22974", + "22998", + "23122", + "23187", + "23189", + "23191", + "23271", + "23299", + "23332", + "23370", + "23433", + "23500", + "23616", + "23636", + "23671", + "24139", + "24142", + "246176", + "2475", + "25", + "253260", + "253725", + "256364", + "25802", + "25978", + "25999", + "26054", + "26146", + "2648", + "27", + "27243", + "27302", + "2770", + "2824", + "28964", + "28984", + "29109", + "2932", + "2934", + "29899", + "29922", + "3055", + "3059", + "3071", + "3192", + "324", + "3265", + "3273", + "3303", + "3304", + "335", + "338657", + "348110", + "348235", + "374872", + "382", + "387", + "389", + "3925", + "395", + "3984", + "402", + "4133", + "4137", + "4204", + "4233", + "440335", + "442721", + "4591", + "4653", + "4690", + "4733", + "4771", + "4869", + "4926", + "5058", + "5062", + "5063", + "5071", + "50848", + "5119", + "51466", + "51474", + "51510", + "5154", + "5156", + "51571", + "51652", + "51763", + "5202", + "5216", + "5217", + "5341", + "5345", + "5347", + "5364", + "54959", + "55160", + "55521", + "55604", + "55616", + "55704", + "55755", + "5580", + "55835", + "55845", + "5594", + "5595", + "55971", + "56890", + "57026", + "57132", + "57175", + "5747", + "57482", + "57551", + "5756", + "57606", + "57662", + "57822", + "5829", + "58497", + "5879", + "5898", + "5921", + "5962", + "6047", + "6093", + "6188", + "6249", + "6279", + "6280", + "6281", + "6314", + "6356", + "636", + "6366", + "6369", + "6376", + "6387", + "64223", + "64857", + "6491", + "6548", + "6622", + "6624", + "683", + "6904", + "7016", + "7043", + "7082", + "71", + "7114", + "7175", + "7226", + "7248", + "7408", + "7429", + "7430", + "7454", + "7481", + "7840", + "79187", + "79541", + "79598", + "79643", + "79768", + "7984", + "79866", + "79884", + "79998", + "824", + "8440", + "84722", + "8477", + "8480", + "84952", + "8500", + "85360", + "85415", + "85459", + "85477", + "8558", + "859", + "88", + "8829", + "8850", + "8874", + "8936", + "89795", + "899", + "90102", + "9026", + "9087", + "90952", + "9113", + "91147", + "91663", + "91782", + "9181", + "92421", + "9353", + "93663", + "9475", + "9525", + "9639", + "9647", + "9793", + "9873", + "9948" + ] + }, + "GO:0071345": { + "Name": "cellular response to cytokine stimulus", + "Task": "GO", + "Genes": [ + "10010", + "10019", + "1025", + "10344", + "10413", + "10456", + "10492", + "1050", + "10519", + "10581", + "10670", + "10725", + "10758", + "11122", + "11173", + "11213", + "112744", + "1147", + "117854", + "1230", + "1236", + "1270", + "1271", + "133396", + "1393", + "140885", + "1436", + "1437", + "1439", + "1440", + "1460", + "146433", + "149628", + "149951", + "1511", + "153090", + "1612", + "1613", + "1660", + "1687", + "171392", + "1843", + "1907", + "1958", + "1984", + "201626", + "2056", + "2058", + "2069", + "207", + "2185", + "2241", + "22904", + "2309", + "23143", + "2322", + "23236", + "23411", + "23521", + "23765", + "246", + "25942", + "2597", + "260434", + "26060", + "26119", + "2621", + "2629", + "2633", + "2634", + "2688", + "27063", + "27242", + "27316", + "27347", + "27429", + "285180", + "2852", + "2859", + "29108", + "3055", + "3059", + "3093", + "3113", + "329", + "330", + "3373", + "3394", + "3429", + "3434", + "3440", + "3454", + "3455", + "3456", + "3458", + "3459", + "3460", + "3551", + "3552", + "3553", + "3554", + "3556", + "3558", + "3559", + "3560", + "3561", + "3562", + "3563", + "3565", + "3566", + "3567", + "3568", + "3569", + "3570", + "3572", + "3574", + "3579", + "3581", + "3589", + "3590", + "3592", + "3593", + "3594", + "3595", + "3600", + "3601", + "3605", + "3606", + "3611", + "3627", + "3654", + "3656", + "3659", + "3663", + "3667", + "3716", + "3717", + "3718", + "3815", + "387", + "3953", + "3965", + "3977", + "3987", + "4067", + "4311", + "440712", + "4780", + "4790", + "4792", + "4938", + "4939", + "49860", + "5008", + "5034", + "50506", + "51079", + "51094", + "51135", + "51176", + "5138", + "5153", + "5155", + "51763", + "5196", + "5245", + "5295", + "53905", + "54209", + "54469", + "54472", + "55627", + "5566", + "558", + "55914", + "5595", + "5600", + "5603", + "5617", + "56624", + "56832", + "57007", + "5777", + "5781", + "57824", + "5795", + "58509", + "5894", + "5970", + "5976", + "6188", + "6347", + "6373", + "6376", + "6387", + "6404", + "6422", + "65010", + "65125", + "6558", + "6654", + "6672", + "6688", + "6714", + "672", + "6738", + "677", + "6772", + "6773", + "6774", + "6775", + "6776", + "6778", + "678", + "6885", + "6932", + "6997", + "7066", + "7097", + "7099", + "7114", + "7124", + "7132", + "7133", + "7157", + "7186", + "7187", + "7189", + "7297", + "7327", + "7538", + "7852", + "79092", + "79602", + "80149", + "81", + "815", + "81501", + "81704", + "81792", + "834", + "83483", + "8372", + "84522", + "84817", + "84818", + "8531", + "8570", + "8600", + "867", + "8692", + "8717", + "87178", + "8737", + "8792", + "8807", + "8809", + "8928", + "8986", + "9100", + "9173", + "9180", + "91807", + "920", + "9252", + "9253", + "9413", + "9447", + "9530", + "961", + "965", + "9705", + "9750", + "9759", + "9943", + "997" + ] + }, + "GO:0098657": { + "Name": "import into cell", + "Task": "GO", + "Genes": [ + "10021", + "10062", + "1020", + "10203", + "10244", + "10266", + "10267", + "10268", + "10451", + "10461", + "10859", + "1089", + "10938", + "10999", + "11001", + "11006", + "11031", + "11151", + "11252", + "11254", + "112574", + "113235", + "115548", + "116843", + "1173", + "1174", + "1175", + "1201", + "120103", + "120892", + "121260", + "133", + "134", + "135", + "1514", + "154", + "155", + "156", + "157", + "160", + "161", + "163", + "1759", + "1785", + "1793", + "1808", + "1814", + "196051", + "200576", + "203228", + "2060", + "206358", + "2180", + "2181", + "219931", + "2208", + "2213", + "2219", + "2220", + "222642", + "222962", + "2268", + "22841", + "23102", + "23149", + "23166", + "23396", + "23428", + "2348", + "23516", + "23603", + "23616", + "25", + "2534", + "257364", + "25769", + "2580", + "25800", + "25912", + "26119", + "261729", + "2621", + "27131", + "273", + "274", + "283420", + "2868", + "2885", + "2966", + "29911", + "301", + "3055", + "306", + "3146", + "348", + "3482", + "353376", + "3576", + "3577", + "3579", + "3587", + "3636", + "3685", + "3690", + "3757", + "3759", + "3760", + "3762", + "3764", + "376497", + "3949", + "3984", + "4035", + "4036", + "4037", + "4067", + "4074", + "408", + "409", + "432", + "4360", + "440400", + "4643", + "4646", + "4734", + "476", + "477", + "478", + "482", + "483", + "493", + "5058", + "51296", + "51305", + "51429", + "51454", + "51606", + "5175", + "5286", + "5298", + "53353", + "53373", + "5338", + "54209", + "54716", + "54734", + "54795", + "54874", + "55089", + "55113", + "55144", + "55244", + "5538", + "55503", + "55576", + "55604", + "55647", + "55681", + "55716", + "558", + "5580", + "5581", + "5594", + "5595", + "56262", + "56302", + "57007", + "57403", + "5747", + "575", + "57706", + "57864", + "5861", + "5868", + "5898", + "5899", + "5914", + "610", + "6272", + "6337", + "6338", + "6339", + "6340", + "64116", + "6441", + "64581", + "6505", + "6506", + "6507", + "6509", + "6511", + "6512", + "6513", + "6515", + "6518", + "6520", + "6523", + "6524", + "6529", + "6531", + "6532", + "6533", + "6536", + "6538", + "6539", + "6540", + "6541", + "6546", + "6548", + "6550", + "6558", + "6564", + "6565", + "6567", + "6570", + "6571", + "6572", + "6573", + "6580", + "6581", + "6582", + "6583", + "6622", + "6642", + "6653", + "6714", + "6804", + "6850", + "7036", + "7037", + "7052", + "7057", + "7099", + "7249", + "7409", + "7410", + "7436", + "7442", + "7525", + "7804", + "7879", + "80131", + "81031", + "81035", + "8140", + "81539", + "81693", + "8218", + "8301", + "83737", + "83871", + "8394", + "8398", + "8411", + "84162", + "84230", + "84889", + "85377", + "85439", + "8547", + "857", + "8578", + "858", + "859", + "8867", + "8884", + "9026", + "90678", + "90861", + "9152", + "9154", + "9214", + "9260", + "9266", + "9413", + "94134", + "948", + "949", + "9777", + "9829", + "9844", + "9873", + "9936", + "9938", + "9990", + "9992" + ] + }, + "GO:0043410": { + "Name": "positive regulation of MAPK cascade", + "Task": "GO", + "Genes": [ + "100133941", + "10125", + "10253", + "10268", + "10371", + "10457", + "10494", + "10550", + "10912", + "10961", + "10979", + "1116", + "11184", + "11211", + "11235", + "11331", + "1139", + "114609", + "115352", + "116", + "120892", + "1230", + "1236", + "1399", + "146433", + "147", + "148", + "148252", + "1490", + "150", + "151", + "152", + "152007", + "152110", + "153090", + "153769", + "154", + "155", + "1647", + "1652", + "168667", + "1687", + "177", + "1815", + "1856", + "1857", + "1880", + "1906", + "1908", + "1950", + "1956", + "195827", + "2064", + "2066", + "2081", + "2146", + "2149", + "2150", + "2185", + "222166", + "222643", + "2243", + "2244", + "2246", + "2247", + "2249", + "2255", + "2260", + "2261", + "2263", + "2264", + "2266", + "22943", + "23043", + "2321", + "2322", + "23236", + "2324", + "23286", + "23328", + "2358", + "23779", + "242", + "246", + "2492", + "255324", + "25778", + "26191", + "2621", + "26291", + "2651", + "2688", + "27347", + "284", + "284340", + "285016", + "2852", + "285613", + "2861", + "28996", + "29108", + "2914", + "3082", + "3084", + "3123", + "3146", + "3265", + "331", + "3356", + "3357", + "3358", + "3383", + "341152", + "344558", + "3479", + "348", + "3481", + "3489", + "351", + "353514", + "3553", + "3569", + "3589", + "3630", + "3643", + "3791", + "3815", + "388325", + "389400", + "389658", + "3952", + "3965", + "3976", + "4055", + "408", + "409", + "4216", + "4217", + "4281", + "4282", + "4294", + "4296", + "4342", + "4486", + "4504", + "4616", + "4653", + "4671", + "4838", + "4851", + "4853", + "4908", + "4914", + "5008", + "5031", + "50488", + "5058", + "51347", + "51384", + "5151", + "5154", + "5155", + "5156", + "51562", + "5159", + "51738", + "5245", + "5294", + "5320", + "5322", + "5345", + "54106", + "54209", + "54361", + "54550", + "54769", + "5478", + "54910", + "55294", + "553", + "55532", + "55765", + "55801", + "5590", + "5595", + "5604", + "5609", + "5610", + "57007", + "57161", + "57551", + "57608", + "5781", + "5871", + "5894", + "5979", + "60401", + "6091", + "6093", + "6188", + "6259", + "6278", + "6283", + "6348", + "6363", + "6366", + "6376", + "6386", + "64127", + "64170", + "6464", + "64762", + "650", + "65009", + "6504", + "652", + "653361", + "6657", + "673", + "6885", + "6997", + "7010", + "7039", + "7040", + "7042", + "7057", + "7066", + "7098", + "7124", + "7164", + "7186", + "7189", + "728", + "7474", + "7498", + "768211", + "7786", + "79444", + "7984", + "80149", + "8324", + "8412", + "84231", + "8482", + "85363", + "8567", + "858", + "8600", + "8737", + "8754", + "8792", + "8817", + "8826", + "8844", + "8877", + "90441", + "920", + "9258", + "9283", + "9290", + "9344", + "9464", + "9518", + "958", + "960", + "9618", + "9693", + "972", + "975", + "9770", + "9867", + "9965" + ] + }, + "GO:0002683": { + "Name": "negative regulation of immune system process", + "Task": "GO", + "Genes": [ + "100507436", + "1021", + "10272", + "10288", + "10457", + "10464", + "10769", + "10859", + "11005", + "11006", + "11025", + "11027", + "11074", + "11126", + "11146", + "11240", + "11274", + "11277", + "11314", + "11326", + "115004", + "115352", + "127018", + "1281", + "1378", + "142", + "1432", + "146722", + "147945", + "148066", + "149095", + "1493", + "1511", + "152138", + "153090", + "1604", + "1652", + "171392", + "1803", + "1843", + "1845", + "196", + "197358", + "2", + "201633", + "207", + "2150", + "2200", + "2213", + "2268", + "22900", + "22914", + "22954", + "23143", + "23170", + "23220", + "23240", + "2335", + "23547", + "2534", + "257144", + "25827", + "259307", + "25939", + "26007", + "260434", + "26058", + "26191", + "2633", + "27202", + "282618", + "2852", + "286430", + "2896", + "29085", + "29126", + "29883", + "301", + "3055", + "3071", + "3077", + "3105", + "3106", + "3111", + "3112", + "3123", + "3133", + "3134", + "3135", + "3146", + "3162", + "3204", + "325", + "3312", + "335", + "336", + "3428", + "3440", + "3456", + "345611", + "347", + "3586", + "3623", + "3624", + "3630", + "375056", + "3805", + "3821", + "3824", + "383", + "387597", + "387837", + "3965", + "401397", + "4067", + "4068", + "409", + "4192", + "4210", + "4282", + "4332", + "4345", + "441864", + "4609", + "472", + "4795", + "4856", + "4938", + "4940", + "5045", + "5094", + "50943", + "51441", + "5272", + "53342", + "5335", + "54209", + "54625", + "5468", + "54726", + "54900", + "54941", + "55080", + "55294", + "5537", + "55646", + "55666", + "5573", + "55829", + "5591", + "55914", + "56339", + "56477", + "57045", + "5734", + "57506", + "5771", + "5788", + "5795", + "5802", + "58509", + "5914", + "5987", + "60343", + "6223", + "6318", + "634", + "6347", + "6348", + "6366", + "6370", + "6375", + "6385", + "6387", + "63906", + "6397", + "64115", + "6422", + "6441", + "652", + "6664", + "671", + "6714", + "6737", + "6773", + "684", + "6850", + "6895", + "6988", + "7040", + "7042", + "7043", + "7057", + "708", + "710", + "7105", + "7124", + "7128", + "7130", + "714", + "722", + "725", + "727", + "7305", + "7353", + "7430", + "7525", + "7534", + "79004", + "79037", + "79132", + "7940", + "79594", + "79651", + "79679", + "79890", + "80149", + "80380", + "80772", + "81559", + "81790", + "83737", + "84166", + "84174", + "84243", + "84524", + "84640", + "84830", + "84868", + "84885", + "8764", + "8780", + "8815", + "8832", + "8878", + "8887", + "8976", + "9111", + "9212", + "9231", + "9258", + "92747", + "9290", + "933", + "9353", + "9370", + "9404", + "941", + "945", + "9470", + "9572", + "9607", + "9636", + "9684", + "9750", + "9958" + ] + }, + "GO:0031400": { + "Name": "negative regulation of protein modification process", + "Task": "GO", + "Genes": [ + "100506658", + "10196", + "10221", + "10253", + "1026", + "1027", + "1028", + "1029", + "103", + "10399", + "104", + "10401", + "10459", + "10464", + "10491", + "10527", + "10614", + "10625", + "11006", + "11076", + "11116", + "11122", + "11213", + "11221", + "11314", + "11315", + "11329", + "11338", + "122809", + "123879", + "124790", + "138429", + "1399", + "140775", + "1408", + "1499", + "151636", + "152559", + "153090", + "153769", + "1609", + "161742", + "1622", + "1647", + "171392", + "183", + "1843", + "1849", + "1981", + "199731", + "200734", + "203228", + "2041", + "207", + "2192", + "2280", + "2281", + "22843", + "22876", + "22943", + "23171", + "23251", + "23376", + "23411", + "23435", + "23560", + "23603", + "23624", + "23645", + "23770", + "245928", + "25", + "2539", + "25937", + "25998", + "260434", + "26051", + "26146", + "261726", + "26191", + "26271", + "2629", + "26524", + "266740", + "2776", + "2810", + "286430", + "28999", + "29108", + "2932", + "2950", + "3071", + "3087", + "324", + "3301", + "3303", + "3304", + "339745", + "3458", + "348", + "3486", + "3551", + "3642", + "374969", + "3843", + "388324", + "3958", + "3984", + "401265", + "4040", + "4041", + "408", + "4085", + "409", + "4092", + "4101", + "4137", + "4249", + "4690", + "4771", + "4869", + "4878", + "4908", + "5062", + "5071", + "51035", + "51085", + "51160", + "51422", + "51527", + "51547", + "51637", + "51654", + "51657", + "5167", + "5170", + "51763", + "5347", + "54206", + "54386", + "54431", + "54552", + "54625", + "5468", + "5470", + "54765", + "5478", + "54866", + "54900", + "54922", + "54984", + "55022", + "5524", + "5569", + "5573", + "5575", + "5576", + "5577", + "5580", + "5582", + "55861", + "55869", + "5590", + "5611", + "56271", + "56940", + "5728", + "57493", + "5753", + "5770", + "5771", + "57718", + "57732", + "57761", + "5777", + "5783", + "5788", + "5795", + "58509", + "5859", + "5925", + "59343", + "5987", + "6093", + "6125", + "6135", + "6188", + "6201", + "6317", + "64175", + "6422", + "6456", + "64793", + "64798", + "64844", + "64853", + "650", + "65125", + "6609", + "6622", + "6640", + "6659", + "6737", + "6872", + "6879", + "6895", + "7023", + "7026", + "7040", + "7124", + "7128", + "7251", + "7345", + "7375", + "7453", + "7498", + "7529", + "7531", + "79643", + "79899", + "80279", + "80725", + "808", + "80824", + "819", + "825", + "84101", + "84152", + "84313", + "84335", + "84619", + "8473", + "84875", + "84919", + "84930", + "857", + "859", + "8613", + "8651", + "8692", + "8878", + "9021", + "9113", + "91272", + "91662", + "91663", + "9258", + "9270", + "9349", + "9353", + "93649", + "93650", + "9370", + "9425", + "9475", + "9529", + "9532", + "9555", + "9636", + "9647", + "9655", + "9770", + "9961" + ] + }, + "GO:0031349": { + "Name": "positive regulation of defense response", + "Task": "GO", + "Genes": [ + "10062", + "10084", + "10125", + "10133", + "10211", + "10392", + "10432", + "10612", + "10614", + "10621", + "10622", + "10623", + "10666", + "11027", + "11117", + "11126", + "11213", + "11331", + "114548", + "114609", + "1147", + "114836", + "115004", + "115362", + "117854", + "121260", + "135250", + "1387", + "140609", + "144811", + "145741", + "146722", + "148022", + "1520", + "1535", + "1540", + "164", + "1652", + "1654", + "171389", + "183", + "185", + "2033", + "2113", + "2150", + "2219", + "22841", + "22861", + "22900", + "22914", + "23180", + "23369", + "2358", + "23586", + "23643", + "23705", + "23765", + "245928", + "2534", + "2547", + "25818", + "259197", + "25921", + "25942", + "26057", + "26191", + "26253", + "285852", + "2867", + "29108", + "29110", + "29126", + "3055", + "3093", + "3133", + "3134", + "3135", + "3146", + "3303", + "3304", + "331", + "3320", + "3329", + "338322", + "340061", + "3428", + "3430", + "345611", + "3458", + "351", + "353091", + "353376", + "353514", + "354", + "3551", + "3553", + "3558", + "3569", + "3572", + "3592", + "3593", + "3600", + "3603", + "3606", + "3654", + "3656", + "3661", + "3665", + "3735", + "373509", + "377630", + "3805", + "3822", + "3824", + "383", + "3843", + "388125", + "389856", + "3916", + "3929", + "3956", + "3965", + "4023", + "4057", + "4067", + "4153", + "4192", + "4792", + "4814", + "4841", + "4938", + "4940", + "5008", + "50487", + "5054", + "5058", + "5062", + "5063", + "51135", + "51284", + "51295", + "51311", + "51435", + "51561", + "5225", + "5245", + "5320", + "5336", + "5359", + "54106", + "54209", + "54502", + "55072", + "55223", + "55269", + "55577", + "55601", + "55703", + "55765", + "5591", + "5599", + "5603", + "5608", + "56253", + "5650", + "56832", + "56919", + "57402", + "57506", + "57590", + "57724", + "57787", + "57864", + "5817", + "5819", + "59067", + "5970", + "6223", + "6279", + "6280", + "6283", + "6346", + "6348", + "64127", + "64135", + "6421", + "64332", + "661", + "6622", + "6714", + "6845", + "6850", + "6885", + "695", + "7040", + "7096", + "7097", + "7098", + "7099", + "7100", + "7124", + "7128", + "7187", + "7189", + "7292", + "7294", + "730249", + "7305", + "7474", + "7520", + "7531", + "7706", + "79132", + "79184", + "7941", + "79792", + "79931", + "80196", + "80216", + "80231", + "80342", + "81035", + "81570", + "81622", + "81844", + "834", + "83666", + "837", + "83737", + "839", + "84034", + "84166", + "84282", + "84630", + "84937", + "85363", + "85364", + "85480", + "857", + "8638", + "8673", + "8678", + "8692", + "8717", + "8723", + "8737", + "8767", + "8772", + "8780", + "8840", + "8915", + "89870", + "90268", + "90678", + "90865", + "90933", + "912", + "91445", + "9180", + "9258", + "92610", + "9447", + "9641", + "9698", + "9782", + "9865", + "9867", + "9868", + "9958" + ] + }, + "GO:0051276": { + "Name": "chromosome organization", + "Task": "GO", + "Genes": [ + "100134934", + "10015", + "10039", + "10051", + "10111", + "10274", + "10403", + "10464", + "10540", + "1058", + "10592", + "10595", + "1060", + "10609", + "10615", + "1062", + "10726", + "10728", + "10734", + "10735", + "10910", + "10973", + "11004", + "11044", + "11073", + "11130", + "11200", + "113130", + "11331", + "114799", + "121504", + "126353", + "128866", + "129563", + "142", + "148479", + "151648", + "152185", + "152485", + "157570", + "158983", + "1653", + "1660", + "1663", + "1677", + "170506", + "1736", + "1763", + "201161", + "2067", + "2071", + "2072", + "2146", + "220134", + "221150", + "2237", + "22919", + "22974", + "22985", + "23047", + "23063", + "23126", + "23137", + "2316", + "23172", + "23212", + "23244", + "23310", + "23383", + "23397", + "23636", + "24137", + "24144", + "25", + "254394", + "2547", + "256364", + "25836", + "25913", + "25978", + "26065", + "26277", + "2669", + "26993", + "27183", + "27243", + "27436", + "2801", + "283489", + "285643", + "286053", + "29098", + "29127", + "29128", + "2956", + "29893", + "3020", + "3021", + "3087", + "3104", + "317761", + "328", + "3320", + "3326", + "348235", + "3508", + "3796", + "3832", + "3833", + "3834", + "3835", + "3837", + "387", + "387103", + "387893", + "4171", + "4172", + "4173", + "4174", + "4175", + "4176", + "4361", + "4436", + "4437", + "4609", + "4683", + "49856", + "50485", + "5119", + "51203", + "51510", + "51548", + "51652", + "51659", + "51750", + "5347", + "54386", + "54433", + "546", + "54617", + "54627", + "548593", + "54908", + "54984", + "55125", + "55135", + "55143", + "55165", + "55183", + "55294", + "55355", + "554313", + "55505", + "55651", + "55869", + "5591", + "5619", + "5620", + "56647", + "56652", + "57082", + "57132", + "57650", + "5813", + "5888", + "5892", + "5901", + "5925", + "5976", + "5981", + "6117", + "6118", + "6119", + "641", + "64151", + "64785", + "64858", + "64946", + "6672", + "6742", + "6795", + "6832", + "6934", + "7011", + "7013", + "7014", + "7015", + "7150", + "7153", + "7155", + "7156", + "729440", + "7486", + "7517", + "7756", + "79003", + "79008", + "79075", + "79643", + "79677", + "7978", + "79884", + "79892", + "7994", + "79991", + "79998", + "80119", + "80152", + "80169", + "80218", + "8086", + "81620", + "81929", + "81930", + "8243", + "8260", + "8294", + "8313", + "8318", + "8350", + "8351", + "8352", + "8353", + "8354", + "8355", + "8356", + "8357", + "8358", + "8359", + "8360", + "8361", + "8362", + "8363", + "8364", + "8366", + "8367", + "8368", + "8370", + "83903", + "84057", + "84083", + "84296", + "84444", + "84464", + "84515", + "8452", + "84722", + "84861", + "8520", + "8678", + "8697", + "8766", + "891", + "8968", + "90417", + "9055", + "9113", + "9126", + "91272", + "9131", + "9156", + "91782", + "9183", + "9212", + "92421", + "92675", + "93426", + "9371", + "9401", + "9493", + "9525", + "9639", + "9700", + "9837", + "9918", + "9928", + "9985" + ] + }, + "GO:0051347": { + "Name": "positive regulation of transferase activity", + "Task": "GO", + "Genes": [ + "10006", + "100133941", + "10040", + "10111", + "10125", + "10210", + "1026", + "10454", + "10464", + "10575", + "10576", + "1062", + "10728", + "10892", + "10899", + "10920", + "10961", + "10979", + "11035", + "11065", + "11232", + "11235", + "11284", + "11315", + "116", + "116986", + "120892", + "1236", + "128344", + "140609", + "143384", + "1436", + "146433", + "148252", + "149233", + "150", + "151", + "152", + "152110", + "153090", + "154", + "1616", + "1622", + "1654", + "1736", + "1742", + "1815", + "183", + "185", + "1856", + "1894", + "1906", + "1908", + "1917", + "1942", + "1950", + "1956", + "2011", + "2013", + "205428", + "2064", + "2069", + "207", + "2081", + "2146", + "2147", + "2185", + "219736", + "219771", + "2209", + "221938", + "2246", + "2247", + "225689", + "2260", + "22924", + "22974", + "23118", + "2321", + "2322", + "23328", + "23411", + "23531", + "245711", + "25", + "2547", + "255324", + "25778", + "25913", + "2621", + "26585", + "266740", + "2688", + "27338", + "283", + "284", + "284254", + "285489", + "28984", + "29775", + "3084", + "3123", + "3265", + "3320", + "3326", + "335", + "3357", + "336", + "337", + "345611", + "3458", + "3479", + "348", + "3491", + "353514", + "3553", + "3565", + "3593", + "3630", + "3643", + "3690", + "387", + "3952", + "4057", + "4101", + "4216", + "4217", + "4294", + "4296", + "4345", + "4361", + "4486", + "4504", + "4683", + "4739", + "4751", + "4908", + "4921", + "493", + "4931", + "5058", + "5073", + "5111", + "51149", + "51343", + "51347", + "51422", + "51429", + "51438", + "5154", + "5155", + "51561", + "5170", + "51719", + "5294", + "5347", + "54209", + "54465", + "54769", + "5478", + "54921", + "55011", + "55135", + "5515", + "55294", + "55437", + "5558", + "5570", + "55704", + "5571", + "5580", + "5588", + "5594", + "5595", + "5604", + "5605", + "5606", + "5609", + "5618", + "5621", + "5629", + "566", + "56892", + "57091", + "57103", + "5716", + "57214", + "5728", + "5747", + "57561", + "57679", + "5770", + "5871", + "5899", + "5920", + "595", + "5982", + "5983", + "5984", + "5985", + "6091", + "6187", + "6188", + "6283", + "6363", + "63922", + "63967", + "648", + "6500", + "65018", + "653361", + "6622", + "6714", + "6794", + "6868", + "6885", + "6950", + "6997", + "7042", + "7057", + "7124", + "7164", + "7186", + "7189", + "7295", + "7329", + "7332", + "7474", + "7520", + "7564", + "79075", + "796", + "79618", + "7984", + "79977", + "80725", + "808", + "80829", + "8091", + "8312", + "84630", + "8536", + "8550", + "8555", + "8600", + "8658", + "8754", + "8792", + "8817", + "8826", + "894", + "8945", + "896", + "90441", + "9094", + "91947", + "920", + "9212", + "92335", + "92345", + "9270", + "9314", + "9344", + "9370", + "94056", + "958", + "9618", + "9693", + "972", + "9770", + "991", + "9928", + "9966" + ] + }, + "GO:0051668": { + "Name": "localization within membrane", + "Task": "GO", + "Genes": [ + "100133941", + "100287171", + "10098", + "1012", + "10123", + "10133", + "10139", + "10211", + "10228", + "10243", + "10266", + "10267", + "10268", + "10311", + "10328", + "10430", + "10564", + "10670", + "10807", + "10890", + "10938", + "10959", + "10981", + "11031", + "11187", + "1121", + "11231", + "112609", + "11267", + "117177", + "128240", + "128866", + "129303", + "130617", + "132112", + "1363", + "143187", + "145567", + "150684", + "157680", + "158234", + "158866", + "161176", + "1678", + "1739", + "1742", + "1956", + "1969", + "2060", + "221079", + "22844", + "22853", + "22930", + "22979", + "23043", + "23062", + "23065", + "23122", + "2316", + "23163", + "23167", + "2319", + "23241", + "23339", + "23420", + "23463", + "23471", + "23499", + "23555", + "23682", + "23759", + "23787", + "23788", + "253725", + "25782", + "2580", + "25813", + "25837", + "25921", + "25930", + "26003", + "26088", + "26154", + "261729", + "2621", + "26225", + "26517", + "26519", + "26520", + "26521", + "2803", + "283576", + "283820", + "284098", + "284361", + "285521", + "285590", + "286", + "287", + "288", + "28952", + "29927", + "29928", + "30844", + "30845", + "30846", + "3308", + "3309", + "3320", + "340348", + "344892", + "348", + "3551", + "3676", + "3683", + "3689", + "3695", + "3728", + "375790", + "382", + "3875", + "4040", + "408050", + "4118", + "439", + "4641", + "481", + "483", + "4836", + "4864", + "50619", + "50848", + "51016", + "51079", + "51100", + "51125", + "51201", + "51234", + "51304", + "51398", + "51552", + "51560", + "51608", + "51699", + "51735", + "51762", + "5284", + "5318", + "54499", + "54520", + "54918", + "54997", + "55004", + "55107", + "55146", + "55275", + "55610", + "55625", + "55690", + "55704", + "55706", + "55737", + "55750", + "55770", + "55800", + "55831", + "55969", + "56246", + "5660", + "56851", + "56926", + "56993", + "57003", + "57020", + "57130", + "57154", + "57182", + "57217", + "5727", + "57512", + "5764", + "57728", + "582", + "5824", + "583", + "5830", + "5870", + "5872", + "5879", + "5898", + "5906", + "5911", + "5962", + "6093", + "6281", + "6293", + "637", + "64083", + "64108", + "64112", + "64121", + "6449", + "64689", + "65055", + "65125", + "65267", + "653361", + "6711", + "6727", + "6728", + "6729", + "673", + "6734", + "6745", + "6746", + "6812", + "682", + "7095", + "7124", + "7132", + "738", + "7430", + "7485", + "7871", + "7879", + "79156", + "7917", + "79568", + "79803", + "8087", + "81609", + "81619", + "81693", + "8174", + "819", + "81926", + "8266", + "83460", + "83597", + "83871", + "8394", + "84079", + "84162", + "84668", + "84896", + "8504", + "85377", + "85409", + "8548", + "8674", + "8675", + "8723", + "8766", + "88", + "8934", + "8943", + "90580", + "914", + "9146", + "91663", + "92162", + "9230", + "92359", + "9270", + "93380", + "9368", + "9370", + "9409", + "9475", + "9559", + "9648", + "9693", + "9694", + "9697", + "9727", + "975", + "9784", + "9919", + "999" + ] + }, + "GO:0070201": { + "Name": "regulation of establishment of protein localization", + "Task": "GO", + "Genes": [ + "10023", + "100507043", + "10059", + "101", + "10134", + "10155", + "10307", + "10391", + "10399", + "10411", + "10456", + "10497", + "10519", + "10541", + "10574", + "10575", + "10576", + "10694", + "1080", + "10857", + "10956", + "10961", + "10972", + "11060", + "111", + "11132", + "11156", + "11235", + "11261", + "11315", + "114", + "114899", + "120892", + "125170", + "1263", + "127933", + "131177", + "1445", + "150", + "1509", + "153241", + "161291", + "163882", + "1736", + "1813", + "1814", + "1815", + "2010", + "2029", + "2033", + "2064", + "2181", + "222546", + "2243", + "2244", + "2266", + "22948", + "22994", + "23086", + "2316", + "23256", + "23379", + "23400", + "23409", + "23514", + "23607", + "252983", + "258010", + "25930", + "26056", + "26130", + "2621", + "26229", + "26297", + "2645", + "2664", + "2695", + "2696", + "27032", + "27063", + "27236", + "27248", + "27346", + "2746", + "283", + "283514", + "285381", + "285966", + "2931", + "2932", + "29934", + "3059", + "3123", + "322", + "3265", + "3301", + "3305", + "3312", + "337867", + "3429", + "3458", + "347", + "3479", + "348", + "353500", + "3552", + "3553", + "3569", + "3592", + "3593", + "3630", + "3638", + "3667", + "3670", + "3728", + "3741", + "3745", + "3767", + "377630", + "382", + "3936", + "399687", + "4137", + "43", + "4345", + "4544", + "4628", + "4641", + "4760", + "4843", + "4988", + "5071", + "51009", + "51024", + "5108", + "51124", + "5116", + "51160", + "5127", + "51366", + "51465", + "51548", + "51569", + "51614", + "51684", + "51715", + "51763", + "51768", + "5295", + "5319", + "54209", + "54471", + "54543", + "5478", + "5481", + "55107", + "55135", + "55204", + "55294", + "55432", + "55486", + "55691", + "55696", + "55741", + "55754", + "5580", + "55835", + "55929", + "5663", + "56947", + "57214", + "57506", + "57555", + "5770", + "57818", + "5784", + "580", + "5901", + "5905", + "5950", + "5978", + "6248", + "63036", + "63928", + "640", + "64083", + "64175", + "64215", + "6422", + "64285", + "64328", + "65018", + "652", + "6616", + "6653", + "6672", + "6720", + "6804", + "6810", + "6934", + "6950", + "7013", + "7021", + "7040", + "7042", + "7043", + "7097", + "7099", + "7124", + "7175", + "7203", + "7273", + "7327", + "7341", + "7531", + "79567", + "79752", + "7984", + "79899", + "79971", + "80024", + "80149", + "80184", + "80223", + "80762", + "81565", + "84830", + "8536", + "85459", + "8609", + "8724", + "8736", + "8754", + "8841", + "8882", + "8934", + "8938", + "89866", + "9024", + "90550", + "908", + "91319", + "9141", + "91543", + "9270", + "9370", + "93974", + "94121", + "945", + "9463", + "9495", + "9530", + "9531", + "9619", + "9647", + "9648", + "9662", + "9695", + "9727", + "9747", + "975", + "9777", + "9786", + "9847", + "9854", + "9971", + "999" + ] + }, + "GO:0060627": { + "Name": "regulation of vesicle-mediated transport", + "Task": "GO", + "Genes": [ + "10015", + "100506013", + "10062", + "10079", + "1012", + "10188", + "10211", + "10399", + "10461", + "10584", + "1080", + "10814", + "10815", + "10825", + "10859", + "10960", + "11037", + "11141", + "11236", + "11267", + "11314", + "116519", + "1175", + "1191", + "120892", + "123745", + "124590", + "124912", + "124930", + "128637", + "134957", + "1445", + "150", + "150696", + "1535", + "1601", + "163882", + "164", + "1861", + "192683", + "1950", + "197", + "20", + "201294", + "2042", + "2150", + "2181", + "2213", + "2219", + "2220", + "2242", + "2243", + "2244", + "2266", + "22848", + "22876", + "22943", + "23011", + "23086", + "23122", + "23317", + "2332", + "23332", + "23400", + "2358", + "25", + "255738", + "257364", + "25875", + "25930", + "25999", + "26119", + "26175", + "2619", + "2621", + "2688", + "27", + "27032", + "27183", + "27236", + "27243", + "284", + "284654", + "29091", + "29934", + "29978", + "301", + "302", + "3055", + "3071", + "3077", + "30817", + "3092", + "3134", + "3146", + "3190", + "335", + "336", + "338692", + "341", + "344", + "345", + "348", + "351", + "3560", + "3561", + "3600", + "3601", + "3643", + "3684", + "3685", + "3689", + "3690", + "376267", + "382", + "3822", + "3916", + "392", + "3958", + "3965", + "399687", + "4035", + "4043", + "404636", + "408", + "409", + "4153", + "4478", + "4908", + "4983", + "50487", + "5054", + "50632", + "5071", + "51143", + "51160", + "51272", + "51479", + "51652", + "5291", + "5336", + "5337", + "53407", + "5359", + "5413", + "54209", + "54521", + "54550", + "5538", + "558", + "55823", + "5587", + "5594", + "5595", + "5604", + "5605", + "5657", + "566", + "5663", + "567", + "57111", + "57118", + "57126", + "57617", + "5770", + "5788", + "5864", + "5865", + "5868", + "5873", + "5874", + "5879", + "5898", + "5962", + "6014", + "60561", + "6093", + "6248", + "6311", + "634", + "636", + "6382", + "6385", + "6386", + "6401", + "6424", + "6441", + "64581", + "6609", + "6622", + "6653", + "6714", + "6810", + "6812", + "6814", + "6845", + "6853", + "6857", + "7018", + "7036", + "7052", + "717", + "718", + "720", + "721", + "7251", + "7260", + "7275", + "7287", + "7376", + "7430", + "7448", + "7784", + "7874", + "7879", + "78989", + "79643", + "79890", + "80230", + "8027", + "81555", + "8291", + "8301", + "83452", + "84058", + "84079", + "8448", + "84932", + "8527", + "8547", + "857", + "867", + "8673", + "8720", + "8723", + "8724", + "8766", + "88", + "8829", + "8832", + "88455", + "8862", + "8877", + "8938", + "89780", + "9026", + "90416", + "90678", + "9098", + "9146", + "933", + "9367", + "9370", + "94121", + "949", + "9495", + "9525", + "9545", + "9581", + "967", + "9711", + "9727", + "9765", + "977", + "9779", + "9847", + "9863", + "9892" + ] + }, + "GO:0010256": { + "Name": "endomembrane system organization", + "Task": "GO", + "Genes": [ + "10059", + "10133", + "10211", + "10254", + "10313", + "10328", + "10419", + "10430", + "10466", + "10494", + "10564", + "10565", + "10783", + "10890", + "10959", + "1104", + "11196", + "11235", + "11252", + "11267", + "115560", + "116068", + "116238", + "1182", + "118813", + "1191", + "120892", + "123720", + "124491", + "124912", + "1263", + "128637", + "128866", + "1289", + "137492", + "1378", + "144717", + "1452", + "1453", + "148362", + "149371", + "149647", + "150368", + "155382", + "157680", + "162427", + "163590", + "1639", + "167", + "1759", + "1760", + "1861", + "19", + "196527", + "196996", + "2010", + "2054", + "2149", + "221035", + "221496", + "225689", + "22796", + "22878", + "22931", + "22933", + "23023", + "23065", + "23122", + "23141", + "23175", + "23204", + "23207", + "23306", + "23317", + "23325", + "23332", + "23345", + "23363", + "23399", + "23420", + "23435", + "23471", + "23603", + "2515", + "252839", + "257364", + "2580", + "25839", + "25923", + "25978", + "26259", + "26276", + "26993", + "27183", + "27230", + "27243", + "27314", + "27348", + "274", + "2801", + "2804", + "283820", + "284359", + "284361", + "284382", + "288", + "29763", + "29887", + "29911", + "29927", + "29993", + "3064", + "339122", + "375056", + "399687", + "3998", + "399979", + "4000", + "4001", + "400451", + "408050", + "4218", + "439", + "440400", + "4627", + "4905", + "5027", + "50999", + "51016", + "51028", + "51062", + "51112", + "51160", + "5119", + "51234", + "51308", + "51332", + "51361", + "51398", + "51429", + "51510", + "51560", + "51608", + "51652", + "53407", + "5347", + "5359", + "53947", + "54499", + "545", + "54732", + "54808", + "54874", + "55014", + "55048", + "55113", + "55204", + "55353", + "55627", + "5578", + "5579", + "55831", + "5587", + "55969", + "56851", + "56926", + "57003", + "57132", + "57142", + "57151", + "57511", + "57531", + "57584", + "57617", + "5798", + "5861", + "5862", + "5864", + "5873", + "60684", + "63932", + "64083", + "64225", + "64400", + "6449", + "64689", + "65055", + "65125", + "65243", + "653145", + "6609", + "662", + "6683", + "6711", + "6810", + "6811", + "6836", + "7251", + "727910", + "7329", + "7443", + "7485", + "7534", + "79102", + "79156", + "7917", + "79188", + "79643", + "79659", + "79720", + "8027", + "80346", + "80856", + "81035", + "81876", + "819", + "8266", + "83460", + "83547", + "83548", + "84067", + "8411", + "84313", + "8436", + "84376", + "84932", + "85377", + "85462", + "8548", + "8560", + "857", + "858", + "859", + "8724", + "8729", + "8766", + "8815", + "8874", + "8878", + "8934", + "8938", + "89866", + "9002", + "9146", + "91782", + "9183", + "91949", + "9217", + "9218", + "92421", + "928", + "9321", + "93343", + "93380", + "9382", + "94121", + "9529", + "9631", + "9648", + "9688", + "9694", + "9697", + "9712", + "9885", + "9919", + "9950" + ] + }, + "GO:0015031": { + "Name": "protein transport", + "Task": "GO", + "Genes": [ + "10013", + "100133941", + "10016", + "10066", + "10113", + "10133", + "10139", + "10203", + "10204", + "10266", + "10267", + "10268", + "10550", + "10569", + "1063", + "10938", + "10952", + "10959", + "10972", + "11020", + "11031", + "11097", + "11127", + "11196", + "11231", + "112574", + "11276", + "11331", + "1191", + "126549", + "130617", + "131474", + "144165", + "157769", + "158234", + "1678", + "169026", + "173", + "1785", + "1871", + "19", + "1939", + "2017", + "207", + "2266", + "22853", + "23039", + "23062", + "23161", + "23163", + "23197", + "23214", + "23390", + "23499", + "23511", + "23534", + "23787", + "23788", + "257364", + "25782", + "25813", + "25837", + "25999", + "26060", + "26088", + "26154", + "26276", + "26517", + "26519", + "26520", + "26521", + "26985", + "27183", + "27236", + "27351", + "2803", + "288", + "29090", + "29098", + "29886", + "29927", + "29928", + "3092", + "3308", + "3309", + "3312", + "3315", + "3320", + "343035", + "3434", + "345611", + "348", + "3587", + "3651", + "372", + "374969", + "375056", + "379", + "3836", + "3837", + "3838", + "3840", + "3842", + "3843", + "3875", + "387849", + "389692", + "392", + "3920", + "3998", + "399979", + "401548", + "4036", + "404636", + "4053", + "4321", + "440738", + "4547", + "4591", + "4627", + "4734", + "4760", + "481", + "4869", + "4905", + "51009", + "51025", + "51079", + "51125", + "51128", + "51172", + "51375", + "51429", + "51501", + "51762", + "5189", + "5190", + "5191", + "5192", + "5194", + "5195", + "53353", + "54097", + "5468", + "54732", + "5476", + "54918", + "550", + "55027", + "55122", + "5514", + "55198", + "55240", + "5538", + "5539", + "55437", + "5551", + "55666", + "55670", + "55705", + "55717", + "55737", + "55750", + "5579", + "55829", + "56478", + "56993", + "57154", + "57192", + "57333", + "57393", + "57510", + "5798", + "582", + "5824", + "5828", + "583", + "5830", + "58533", + "5901", + "5903", + "602", + "6103", + "63894", + "63932", + "63971", + "6400", + "64083", + "64089", + "64149", + "64328", + "653808", + "6642", + "6653", + "6711", + "6774", + "6788", + "6789", + "6836", + "6850", + "6993", + "7036", + "7037", + "7040", + "7095", + "7175", + "7184", + "7353", + "7415", + "7436", + "7514", + "754", + "7857", + "7879", + "79139", + "79158", + "79711", + "79792", + "79971", + "8021", + "8031", + "811", + "81502", + "81562", + "81609", + "81671", + "81693", + "821", + "8239", + "83871", + "84068", + "84268", + "84447", + "84747", + "8504", + "8548", + "8723", + "8878", + "8943", + "90580", + "90678", + "9094", + "9131", + "9146", + "917", + "9179", + "91949", + "92305", + "92335", + "92714", + "93145", + "9371", + "9409", + "948", + "950", + "9522", + "9531", + "9601", + "9619", + "9648", + "9670", + "9709", + "9765", + "9847", + "9874", + "9895" + ] + }, + "GO:0032102": { + "Name": "negative regulation of response to external stimulus", + "Task": "GO", + "Genes": [ + "1003", + "100507436", + "10221", + "10563", + "10769", + "10859", + "11027", + "11240", + "11274", + "11277", + "11326", + "114548", + "114897", + "114899", + "117285", + "135228", + "1365", + "1378", + "1398", + "140885", + "142", + "1432", + "145581", + "147945", + "149095", + "149461", + "152138", + "1652", + "170692", + "1803", + "1814", + "1843", + "1845", + "1906", + "196", + "197358", + "199", + "2", + "2000", + "201292", + "2137", + "2147", + "2160", + "2161", + "2213", + "2243", + "2244", + "2247", + "2266", + "2268", + "22900", + "22914", + "22915", + "22978", + "23005", + "23122", + "23170", + "23220", + "23332", + "2358", + "240", + "245928", + "2534", + "25939", + "26058", + "26146", + "2625", + "2629", + "2693", + "27202", + "2811", + "284340", + "285", + "2852", + "2896", + "29883", + "3055", + "3105", + "3106", + "3123", + "3133", + "3134", + "3135", + "325", + "3273", + "335", + "3428", + "345611", + "3479", + "348", + "350", + "3565", + "3586", + "3587", + "3596", + "3630", + "3805", + "3818", + "3821", + "3824", + "3827", + "383", + "387837", + "3965", + "401397", + "405", + "4057", + "4067", + "409", + "4210", + "4277", + "4282", + "4598", + "4795", + "4851", + "4856", + "4938", + "4940", + "5045", + "5054", + "5055", + "5068", + "5094", + "51441", + "5154", + "5155", + "5156", + "51738", + "5270", + "5272", + "5327", + "5328", + "5335", + "5340", + "5345", + "54209", + "54625", + "5465", + "5468", + "5495", + "55527", + "55646", + "55737", + "5580", + "55829", + "5592", + "55966", + "5598", + "5624", + "56339", + "56547", + "57175", + "5728", + "5734", + "5740", + "57506", + "5771", + "5777", + "5788", + "58509", + "59307", + "60343", + "6091", + "6092", + "6095", + "6223", + "6318", + "634", + "6347", + "64116", + "64771", + "6714", + "6737", + "6773", + "6774", + "6850", + "6895", + "7010", + "7035", + "7040", + "7056", + "7057", + "708", + "710", + "7114", + "7124", + "7128", + "7130", + "7132", + "727", + "730249", + "7448", + "7525", + "7534", + "79102", + "79132", + "79594", + "79651", + "79890", + "80263", + "8087", + "81542", + "83481", + "83737", + "84166", + "84243", + "84640", + "84830", + "8573", + "8815", + "89790", + "90070", + "90102", + "90268", + "90355", + "90865", + "9111", + "9140", + "91662", + "9212", + "9258", + "928", + "9314", + "9353", + "9470", + "9474", + "9636", + "9856", + "9958" + ] + }, + "GO:0051051": { + "Name": "negative regulation of transport", + "Task": "GO", + "Genes": [ + "10008", + "10062", + "10079", + "10288", + "10345", + "10399", + "10681", + "10825", + "10859", + "10956", + "10961", + "11060", + "1113", + "11141", + "11261", + "11314", + "11315", + "1193", + "120892", + "124930", + "124935", + "130497", + "131177", + "1393", + "1394", + "1409", + "140947", + "1410", + "1445", + "150", + "150684", + "150696", + "151", + "152", + "1813", + "1814", + "1815", + "192683", + "1950", + "20", + "2042", + "2056", + "2065", + "207", + "208", + "2185", + "2213", + "2280", + "2281", + "23208", + "23327", + "23409", + "23479", + "23630", + "255738", + "2564", + "257364", + "258010", + "25953", + "26056", + "26297", + "2697", + "27236", + "27248", + "27347", + "283518", + "285381", + "2859", + "285966", + "29091", + "2931", + "2946", + "29934", + "29978", + "29979", + "301", + "302", + "3071", + "3084", + "3134", + "3146", + "336", + "337867", + "338692", + "341", + "344", + "345", + "347", + "348", + "351", + "353500", + "3589", + "3592", + "3593", + "3625", + "3630", + "3638", + "3667", + "3685", + "3690", + "3753", + "3757", + "3767", + "382", + "392", + "3952", + "3958", + "3965", + "3976", + "4043", + "4318", + "4345", + "4734", + "4762", + "4790", + "4842", + "497189", + "4988", + "5008", + "5071", + "50852", + "51009", + "51024", + "51465", + "51569", + "5167", + "51684", + "51715", + "51719", + "51763", + "5350", + "5359", + "54106", + "54550", + "55022", + "55198", + "55432", + "55737", + "5581", + "55829", + "5587", + "55917", + "5657", + "5663", + "57119", + "57120", + "580", + "5879", + "5905", + "5978", + "5987", + "6248", + "6311", + "634", + "6386", + "6406", + "64111", + "6422", + "6424", + "64285", + "6588", + "6622", + "6672", + "6717", + "6721", + "6781", + "6814", + "6860", + "7009", + "7057", + "7175", + "7327", + "7341", + "7376", + "7416", + "7531", + "7879", + "7881", + "79693", + "79890", + "80223", + "80762", + "808", + "817", + "8291", + "8301", + "83452", + "84058", + "84079", + "845", + "84830", + "8501", + "8529", + "857", + "859", + "8609", + "8660", + "8673", + "8682", + "8724", + "88", + "8832", + "88455", + "90678", + "91319", + "91404", + "91543", + "9341", + "9370", + "9446", + "945", + "9525", + "9647", + "9711", + "972", + "9727", + "9972", + "9992" + ] + }, + "GO:1903829": { + "Name": "positive regulation of protein localization", + "Task": "GO", + "Genes": [ + "100507043", + "10059", + "101", + "10134", + "10155", + "1025", + "10268", + "10307", + "10391", + "10399", + "10411", + "10445", + "10497", + "10519", + "10541", + "10542", + "10551", + "10574", + "10575", + "10576", + "10694", + "1080", + "10807", + "10857", + "10972", + "10979", + "11132", + "11143", + "11156", + "11190", + "11235", + "11315", + "114899", + "125170", + "1263", + "1387", + "149628", + "151636", + "153241", + "161291", + "163882", + "1736", + "1739", + "1855", + "1950", + "1956", + "1969", + "1981", + "2010", + "2033", + "2035", + "2037", + "2042", + "2064", + "207", + "2147", + "2181", + "222546", + "2243", + "2244", + "2266", + "22948", + "22994", + "23086", + "2316", + "23171", + "23379", + "23400", + "23607", + "23636", + "245812", + "2534", + "257364", + "25921", + "25930", + "2621", + "2622", + "26229", + "26354", + "2645", + "27032", + "27063", + "27237", + "27346", + "2746", + "2770", + "283", + "2852", + "285966", + "29098", + "2931", + "2932", + "29775", + "29801", + "29899", + "3059", + "3123", + "322", + "324", + "3265", + "3305", + "3326", + "3458", + "3479", + "3552", + "3630", + "3670", + "3675", + "3688", + "3716", + "3728", + "3745", + "3799", + "382", + "391", + "3958", + "3985", + "399687", + "4035", + "4137", + "43", + "4478", + "4628", + "4641", + "4804", + "4926", + "493", + "5071", + "50855", + "51024", + "51068", + "5108", + "51112", + "51124", + "5116", + "51160", + "51366", + "51548", + "51574", + "51614", + "5170", + "5174", + "5175", + "51768", + "5290", + "5295", + "5319", + "5347", + "54209", + "54471", + "54543", + "54550", + "54552", + "5478", + "5481", + "54984", + "55004", + "55107", + "55135", + "55166", + "55204", + "55294", + "5532", + "55691", + "55696", + "55704", + "55737", + "55741", + "55754", + "5580", + "5581", + "5583", + "55835", + "55929", + "56257", + "5663", + "56947", + "57142", + "57214", + "57506", + "57555", + "57628", + "57707", + "57787", + "5780", + "5901", + "59353", + "5950", + "5962", + "636", + "63928", + "640", + "64083", + "64328", + "65267", + "6622", + "6653", + "6711", + "6809", + "6810", + "6934", + "6950", + "7015", + "7016", + "7037", + "7040", + "7042", + "7043", + "7097", + "7099", + "7107", + "7124", + "7130", + "7175", + "7203", + "7273", + "7297", + "7305", + "7430", + "7443", + "7474", + "7476", + "7531", + "79567", + "79608", + "79752", + "7984", + "79899", + "79971", + "80149", + "80184", + "80279", + "83666", + "83667", + "8536", + "85409", + "85459", + "8736", + "8754", + "8841", + "8882", + "8934", + "8938", + "89866", + "90550", + "908", + "9141", + "94103", + "94121", + "945", + "9475", + "9495", + "9531", + "9619", + "9662", + "9695", + "9696", + "9747", + "975", + "9777", + "983", + "9847", + "9854", + "999" + ] + }, + "GO:0033993": { + "Name": "response to lipid", + "Task": "GO", + "Genes": [ + "10018", + "10062", + "10221", + "10288", + "1032", + "10413", + "10474", + "10521", + "10524", + "1066", + "1080", + "10856", + "11057", + "1109", + "111", + "11184", + "112", + "11240", + "11344", + "114548", + "114609", + "114881", + "116151", + "117854", + "1234", + "1236", + "124641", + "133522", + "1373", + "1385", + "1393", + "140596", + "1432", + "149233", + "1499", + "1511", + "151306", + "151556", + "153090", + "1591", + "1594", + "1616", + "1645", + "1646", + "1655", + "1667", + "1668", + "1956", + "196", + "2042", + "2099", + "2100", + "211", + "2185", + "2242", + "2264", + "22843", + "22938", + "23064", + "23081", + "23118", + "23543", + "23558", + "23641", + "23643", + "23729", + "26191", + "2627", + "26273", + "2688", + "2692", + "27", + "27063", + "27429", + "2822", + "284254", + "2852", + "2864", + "2865", + "2867", + "2878", + "2908", + "29108", + "2932", + "301", + "3015", + "3055", + "3169", + "3192", + "3294", + "3303", + "3304", + "3312", + "337", + "340485", + "342979", + "345611", + "353376", + "3553", + "3557", + "3569", + "3576", + "358", + "3586", + "3592", + "360", + "3627", + "3638", + "3654", + "367", + "387", + "389643", + "3929", + "3965", + "4040", + "4058", + "4067", + "4087", + "4091", + "4246", + "4257", + "4277", + "4314", + "4318", + "4478", + "4734", + "476", + "477", + "4790", + "4795", + "4824", + "503618", + "5054", + "50801", + "51079", + "51141", + "51366", + "51510", + "5165", + "5166", + "5241", + "5244", + "5245", + "5292", + "5336", + "54209", + "5458", + "5469", + "54929", + "54997", + "55593", + "55625", + "558", + "55809", + "55818", + "55829", + "55914", + "5594", + "5599", + "56848", + "57162", + "57178", + "5727", + "5737", + "5753", + "5754", + "58509", + "5914", + "5916", + "5950", + "5970", + "5976", + "5978", + "5979", + "6095", + "6097", + "6256", + "6348", + "6363", + "6366", + "6372", + "6401", + "6403", + "64127", + "6528", + "6622", + "6696", + "677", + "6774", + "6777", + "678", + "6850", + "6868", + "687", + "7040", + "7042", + "7043", + "7046", + "7048", + "7049", + "7057", + "7099", + "7110", + "7124", + "7128", + "7133", + "7189", + "728358", + "7292", + "730249", + "7332", + "7337", + "7431", + "7494", + "7533", + "7538", + "79039", + "79931", + "80139", + "80149", + "811", + "81285", + "8202", + "8204", + "8289", + "834", + "840", + "84458", + "84660", + "857", + "8611", + "8644", + "8725", + "8751", + "8754", + "8835", + "8854", + "8915", + "90933", + "92140", + "923", + "92595", + "9325", + "9373", + "9475", + "949", + "9525", + "9572", + "9619", + "9971" + ] + }, + "GO:0045785": { + "Name": "positive regulation of cell adhesion", + "Task": "GO", + "Genes": [ + "100133941", + "10076", + "1012", + "10148", + "1021", + "10211", + "10272", + "10288", + "10519", + "10524", + "10551", + "10562", + "10630", + "10725", + "10808", + "10859", + "10979", + "11006", + "11078", + "11126", + "11148", + "11221", + "1236", + "126259", + "1307", + "1326", + "1378", + "1398", + "1399", + "1445", + "149233", + "1511", + "1604", + "177", + "1793", + "1803", + "199", + "201163", + "2013", + "201627", + "2041", + "2043", + "2064", + "207", + "2113", + "2185", + "2243", + "2244", + "2266", + "22914", + "22915", + "2309", + "23149", + "2316", + "2319", + "23308", + "2335", + "246", + "2475", + "25", + "2525", + "2529", + "2534", + "25865", + "25930", + "259307", + "2651", + "284114", + "29108", + "29126", + "2932", + "29984", + "30008", + "301", + "3037", + "3071", + "30835", + "3105", + "3109", + "3113", + "3115", + "3122", + "3123", + "3133", + "3135", + "3146", + "3169", + "3170", + "3273", + "3329", + "3346", + "335", + "3373", + "3381", + "3458", + "3479", + "3481", + "3485", + "3553", + "3558", + "3565", + "3569", + "3572", + "3592", + "3593", + "3594", + "3606", + "3611", + "3654", + "3685", + "3716", + "3717", + "3728", + "3791", + "387", + "3952", + "3965", + "3976", + "3987", + "399", + "4067", + "4092", + "4179", + "4192", + "4284", + "4301", + "4653", + "4680", + "4690", + "4739", + "4838", + "4860", + "5034", + "50848", + "50943", + "51206", + "5155", + "51561", + "5170", + "5290", + "5329", + "5345", + "5420", + "54453", + "54566", + "5530", + "55423", + "55604", + "55626", + "5578", + "5645", + "56477", + "566", + "57091", + "5777", + "5781", + "57829", + "5795", + "5879", + "5881", + "59067", + "5914", + "59339", + "5970", + "5979", + "604", + "6046", + "6188", + "6237", + "6239", + "6251", + "6281", + "6288", + "6366", + "6370", + "6375", + "6376", + "6387", + "64115", + "64410", + "6484", + "64926", + "6541", + "655", + "6714", + "6809", + "6810", + "7010", + "7016", + "7030", + "7037", + "7042", + "7048", + "7070", + "708", + "7082", + "7124", + "7189", + "7248", + "7264", + "7297", + "7402", + "7409", + "7412", + "7494", + "7525", + "7535", + "78986", + "79576", + "80005", + "8013", + "80381", + "811", + "81704", + "84034", + "8440", + "84433", + "84466", + "84978", + "857", + "8600", + "8613", + "8631", + "8646", + "8651", + "8728", + "8740", + "8754", + "8764", + "8784", + "8829", + "8995", + "9092", + "912", + "916", + "91663", + "9223", + "923", + "9289", + "940", + "948", + "959", + "960", + "961", + "9647", + "970", + "975", + "9780" + ] + }, + "GO:0051046": { + "Name": "regulation of secretion", + "Task": "GO", + "Genes": [ + "10015", + "100507043", + "10059", + "10079", + "101", + "10307", + "10497", + "1066", + "1080", + "10814", + "10815", + "10859", + "10961", + "10972", + "111", + "1113", + "11132", + "11141", + "11267", + "11314", + "114", + "114897", + "114899", + "120892", + "131177", + "134957", + "1392", + "1393", + "140947", + "150", + "151", + "152", + "1579", + "1588", + "164", + "1813", + "1814", + "1815", + "1906", + "1908", + "192683", + "1950", + "201294", + "2029", + "2065", + "2150", + "2181", + "2213", + "222546", + "2242", + "2243", + "2244", + "2255", + "2266", + "22999", + "23011", + "23086", + "23122", + "23208", + "23275", + "23332", + "23400", + "23409", + "23607", + "242", + "252983", + "2587", + "25930", + "25953", + "26056", + "26281", + "26297", + "2645", + "2661", + "2668", + "2691", + "2695", + "2696", + "2697", + "27063", + "27183", + "27236", + "27243", + "27345", + "2746", + "283", + "285381", + "28984", + "29091", + "301", + "3071", + "3077", + "30817", + "3084", + "3123", + "3134", + "322", + "3458", + "3479", + "348", + "353500", + "3552", + "3553", + "3569", + "358", + "3589", + "3592", + "3593", + "3623", + "3624", + "3625", + "3630", + "3667", + "3670", + "3684", + "3689", + "3741", + "376267", + "3767", + "382", + "3822", + "3916", + "3965", + "3976", + "399687", + "43", + "4345", + "4544", + "4628", + "4646", + "4760", + "4762", + "4824", + "4843", + "4879", + "4881", + "497189", + "4988", + "5008", + "50487", + "5071", + "51083", + "51124", + "5127", + "51548", + "51652", + "51738", + "51768", + "5319", + "5413", + "54209", + "5478", + "5481", + "55107", + "55204", + "553", + "55636", + "55691", + "57126", + "57555", + "57589", + "57617", + "57818", + "58533", + "5864", + "5868", + "5873", + "5874", + "5898", + "5950", + "5978", + "63036", + "634", + "6382", + "6385", + "6386", + "640", + "64083", + "64111", + "64175", + "64215", + "6422", + "64285", + "6446", + "6616", + "6622", + "6696", + "6781", + "6804", + "6810", + "6812", + "6814", + "6844", + "6845", + "6853", + "6857", + "6860", + "6934", + "7021", + "7036", + "7040", + "7042", + "7043", + "7097", + "7099", + "7124", + "7251", + "7273", + "7349", + "7784", + "7849", + "7879", + "79643", + "79971", + "80024", + "80223", + "8027", + "83452", + "8399", + "8448", + "84830", + "84932", + "8529", + "8609", + "8673", + "8723", + "8736", + "8754", + "8832", + "8938", + "90070", + "9024", + "90550", + "9146", + "91543", + "9341", + "9367", + "94121", + "945", + "9463", + "9525", + "9545", + "9581", + "9607", + "9619", + "9627", + "972", + "9727", + "9854", + "9971" + ] + }, + "GO:0051640": { + "Name": "organelle localization", + "Task": "GO", + "Genes": [ + "10013", + "10015", + "10016", + "10053", + "10059", + "10113", + "10128", + "10142", + "10244", + "1025", + "10403", + "10464", + "10490", + "10494", + "10524", + "10540", + "1058", + "1062", + "1063", + "10652", + "10726", + "10768", + "10814", + "10948", + "10959", + "10972", + "10987", + "11004", + "11011", + "11127", + "1113", + "11235", + "113130", + "11342", + "117177", + "117194", + "118426", + "118987", + "1201", + "120892", + "126353", + "128866", + "137886", + "1453", + "147841", + "151648", + "152185", + "157769", + "1639", + "1739", + "1778", + "1780", + "1861", + "196996", + "201163", + "220134", + "2205", + "221150", + "221927", + "22863", + "22919", + "22920", + "23122", + "23172", + "23207", + "23212", + "23224", + "23241", + "23277", + "23332", + "23411", + "23557", + "23636", + "2475", + "256364", + "25777", + "25900", + "259266", + "25978", + "26001", + "26258", + "26276", + "2647", + "2669", + "2697", + "27183", + "27243", + "27436", + "282991", + "283489", + "29058", + "2908", + "29899", + "3064", + "3091", + "3281", + "348235", + "3688", + "3799", + "3815", + "3833", + "3834", + "3835", + "3837", + "387695", + "388552", + "3985", + "4000", + "4033", + "4085", + "4134", + "4135", + "4137", + "4218", + "4534", + "4627", + "4640", + "4644", + "4747", + "487", + "488", + "4926", + "4935", + "4976", + "5048", + "51068", + "51112", + "51134", + "5119", + "51203", + "51490", + "51510", + "51652", + "5189", + "5195", + "5293", + "5294", + "5310", + "5347", + "5413", + "54664", + "54732", + "54785", + "54820", + "54843", + "54874", + "54908", + "54984", + "55014", + "55062", + "55143", + "55154", + "55156", + "55165", + "55166", + "55171", + "55201", + "55288", + "553115", + "5537", + "55435", + "55669", + "55717", + "55770", + "55773", + "55968", + "56245", + "5664", + "56907", + "57082", + "57132", + "57405", + "57584", + "5861", + "5864", + "5870", + "5873", + "5901", + "5925", + "59349", + "6209", + "636", + "63915", + "64149", + "64837", + "65082", + "6795", + "7016", + "7248", + "7314", + "7405", + "7430", + "7514", + "7534", + "7756", + "79003", + "79036", + "7942", + "79443", + "79567", + "79594", + "79643", + "79803", + "79998", + "80179", + "80208", + "81", + "81610", + "81620", + "81671", + "81929", + "81930", + "83540", + "83871", + "83930", + "84080", + "8409", + "8417", + "84376", + "84501", + "8452", + "84643", + "84722", + "84984", + "8499", + "8517", + "858", + "8673", + "8678", + "8697", + "8729", + "8766", + "8773", + "8841", + "891", + "89941", + "9043", + "90809", + "91272", + "91782", + "9183", + "9184", + "9212", + "9218", + "92421", + "9321", + "9341", + "9342", + "9368", + "9371", + "94121", + "9525", + "9842", + "9927", + "9928" + ] + }, + "GO:0030029": { + "Name": "actin filament-based process", + "Task": "GO", + "Genes": [ + "100287171", + "10052", + "10092", + "10093", + "10094", + "10095", + "10096", + "10097", + "10109", + "10435", + "10459", + "10529", + "10552", + "10677", + "1072", + "1073", + "10788", + "10810", + "11034", + "11151", + "11235", + "114793", + "116985", + "116986", + "118", + "119", + "123720", + "1365", + "1398", + "140465", + "146206", + "149461", + "150", + "1525", + "154796", + "165904", + "1739", + "1785", + "1794", + "199", + "2013", + "2039", + "221061", + "221692", + "2245", + "2252", + "2255", + "226", + "22808", + "22998", + "23043", + "2316", + "23171", + "2318", + "23189", + "23370", + "23380", + "23396", + "23433", + "23527", + "23607", + "23616", + "23630", + "23647", + "24142", + "253260", + "253980", + "25802", + "2693", + "2697", + "27032", + "27183", + "27289", + "283431", + "287", + "2885", + "29085", + "29127", + "2919", + "2934", + "29780", + "29984", + "301", + "3059", + "3071", + "3551", + "358", + "359", + "3636", + "3645", + "3688", + "3693", + "3741", + "3753", + "375307", + "3757", + "3759", + "3760", + "3762", + "3764", + "3784", + "3815", + "382", + "387", + "3880", + "390", + "391", + "3936", + "3996", + "399687", + "408", + "4287", + "440193", + "442721", + "4430", + "4621", + "4624", + "4625", + "4626", + "4627", + "4628", + "4637", + "4644", + "4647", + "4650", + "476", + "4771", + "50488", + "5058", + "50848", + "51466", + "51474", + "5170", + "51738", + "5318", + "5319", + "5341", + "54434", + "54509", + "54551", + "54566", + "54749", + "54784", + "54874", + "55604", + "55761", + "55800", + "5592", + "56203", + "56776", + "56907", + "57026", + "57175", + "57381", + "57471", + "5754", + "57553", + "57580", + "5770", + "58", + "58529", + "5879", + "5880", + "5881", + "5911", + "5987", + "60", + "6093", + "6323", + "6324", + "6327", + "6330", + "6331", + "6401", + "64780", + "6624", + "6640", + "6708", + "6711", + "6714", + "70", + "7082", + "7124", + "7126", + "7139", + "7168", + "7184", + "7273", + "7401", + "7429", + "7430", + "7454", + "7456", + "752", + "775", + "776", + "7791", + "781", + "7827", + "783", + "79031", + "79585", + "79784", + "79983", + "80179", + "80725", + "81", + "825", + "83715", + "83872", + "8394", + "84033", + "84168", + "84193", + "84501", + "8452", + "84665", + "8476", + "84952", + "85360", + "85369", + "85462", + "85464", + "85477", + "8557", + "8572", + "87", + "88", + "8936", + "8976", + "9024", + "91010", + "9172", + "9181", + "9266", + "9294", + "9344", + "93627", + "94134", + "9475", + "9564", + "9578", + "9645", + "9722", + "9788", + "9828", + "9844", + "9938", + "9992" + ] + }, + "GO:0043632": { + "Name": "modification-dependent macromolecule catabolic process", + "Task": "GO", + "Genes": [ + "10116", + "10206", + "10210", + "10213", + "10273", + "10277", + "10299", + "10425", + "10513", + "10524", + "10537", + "10616", + "10956", + "10973", + "11060", + "11065", + "11074", + "114088", + "1161", + "116138", + "117584", + "118424", + "122416", + "122773", + "123803", + "124997", + "128866", + "130617", + "137492", + "144699", + "148066", + "149095", + "149603", + "1499", + "151636", + "1642", + "1649", + "165918", + "200845", + "200933", + "223082", + "22933", + "22954", + "23008", + "23032", + "23053", + "23194", + "23220", + "23291", + "23327", + "23352", + "23411", + "23532", + "23588", + "23624", + "253980", + "255488", + "25793", + "25820", + "25827", + "25853", + "25879", + "25898", + "25930", + "25978", + "26001", + "26046", + "26133", + "26224", + "26234", + "26235", + "26249", + "26263", + "26267", + "26268", + "26270", + "26272", + "26273", + "267", + "26994", + "27183", + "27243", + "27246", + "27252", + "27338", + "283219", + "283807", + "29062", + "29128", + "3093", + "329", + "339745", + "3429", + "343070", + "378884", + "408", + "409", + "4193", + "440561", + "4734", + "4738", + "4780", + "4850", + "5071", + "5094", + "51160", + "51185", + "5119", + "51271", + "51283", + "51343", + "51449", + "51510", + "51514", + "51608", + "51652", + "51667", + "51676", + "5371", + "54461", + "54476", + "54546", + "54764", + "54894", + "54941", + "55122", + "55236", + "5527", + "55284", + "55294", + "55527", + "55626", + "55658", + "55666", + "55743", + "56254", + "56929", + "5701", + "5705", + "57092", + "57132", + "57154", + "57162", + "5717", + "57531", + "57534", + "57542", + "57563", + "57646", + "57674", + "5930", + "6047", + "6048", + "63891", + "64282", + "64320", + "64326", + "64410", + "6451", + "64750", + "6477", + "6478", + "64839", + "6500", + "65018", + "6502", + "6872", + "6992", + "7126", + "7251", + "7267", + "728369", + "7320", + "7321", + "7323", + "7324", + "7326", + "7327", + "7329", + "7332", + "7334", + "7337", + "7353", + "7415", + "7428", + "7706", + "7726", + "7917", + "79643", + "79654", + "79734", + "79791", + "79845", + "80176", + "80196", + "80263", + "80311", + "81545", + "81847", + "8239", + "8266", + "83737", + "83892", + "8405", + "84078", + "84133", + "84164", + "84447", + "8451", + "8452", + "8453", + "8454", + "84727", + "84861", + "867", + "8697", + "8878", + "8945", + "89853", + "89890", + "899", + "9025", + "90850", + "9112", + "91445", + "9147", + "91782", + "92305", + "92369", + "92421", + "92714", + "9320", + "9325", + "93343", + "9354", + "9361", + "9491", + "9525", + "9604", + "9695", + "9817", + "9867", + "9870", + "991", + "9921", + "9928", + "997", + "9978" + ] + }, + "GO:0019941": { + "Name": "modification-dependent protein catabolic process", + "Task": "GO", + "Genes": [ + "10116", + "10206", + "10210", + "10213", + "10273", + "10277", + "10299", + "10425", + "10513", + "10524", + "10537", + "10616", + "10956", + "10973", + "11060", + "11065", + "11074", + "114088", + "1161", + "116138", + "117584", + "118424", + "122416", + "122773", + "123803", + "124997", + "128866", + "130617", + "137492", + "144699", + "148066", + "149095", + "149603", + "1499", + "151636", + "1642", + "1649", + "165918", + "200845", + "200933", + "223082", + "22933", + "22954", + "23008", + "23032", + "23053", + "23194", + "23220", + "23291", + "23327", + "23352", + "23411", + "23532", + "23588", + "23624", + "253980", + "255488", + "25793", + "25820", + "25827", + "25853", + "25879", + "25898", + "25930", + "25978", + "26001", + "26046", + "26133", + "26224", + "26234", + "26235", + "26249", + "26263", + "26267", + "26268", + "26270", + "26272", + "26273", + "267", + "26994", + "27183", + "27243", + "27246", + "27252", + "27338", + "283219", + "283807", + "29062", + "29128", + "3093", + "329", + "339745", + "3429", + "343070", + "378884", + "408", + "409", + "4193", + "440561", + "4734", + "4738", + "4780", + "4850", + "5071", + "5094", + "51160", + "51185", + "5119", + "51271", + "51283", + "51343", + "51449", + "51510", + "51514", + "51608", + "51652", + "51667", + "51676", + "5371", + "54461", + "54476", + "54546", + "54764", + "54894", + "54941", + "55122", + "55236", + "5527", + "55284", + "55294", + "55527", + "55626", + "55658", + "55666", + "55743", + "56254", + "56929", + "5701", + "5705", + "57092", + "57132", + "57154", + "57162", + "5717", + "57531", + "57534", + "57542", + "57563", + "57646", + "57674", + "5930", + "6047", + "6048", + "63891", + "64320", + "64326", + "64410", + "6451", + "64750", + "6477", + "6478", + "64839", + "6500", + "65018", + "6502", + "6872", + "6992", + "7126", + "7251", + "7267", + "728369", + "7320", + "7321", + "7323", + "7324", + "7326", + "7327", + "7329", + "7332", + "7334", + "7337", + "7353", + "7415", + "7428", + "7706", + "7726", + "7917", + "79643", + "79654", + "79734", + "79791", + "79845", + "80176", + "80196", + "80263", + "80311", + "81545", + "81847", + "8239", + "8266", + "83737", + "83892", + "8405", + "84078", + "84133", + "84164", + "84447", + "8451", + "8452", + "8453", + "8454", + "84727", + "84861", + "867", + "8697", + "8878", + "8945", + "89853", + "89890", + "899", + "9025", + "90850", + "9112", + "91445", + "9147", + "91782", + "92305", + "92369", + "92421", + "92714", + "9320", + "9325", + "93343", + "9354", + "9361", + "9491", + "9525", + "9604", + "9695", + "9817", + "9867", + "9870", + "991", + "9921", + "9928", + "997", + "9978" + ] + }, + "GO:0031344": { + "Name": "regulation of cell projection organization", + "Task": "GO", + "Genes": [ + "100287171", + "10096", + "10097", + "10109", + "10152", + "10163", + "10198", + "10371", + "10413", + "10435", + "10507", + "10519", + "10630", + "10677", + "10690", + "1072", + "10787", + "10801", + "10806", + "10807", + "11075", + "11135", + "11138", + "11344", + "114798", + "115704", + "116985", + "120892", + "1236", + "125058", + "126520", + "128637", + "139818", + "1400", + "146206", + "148170", + "1496", + "150696", + "152559", + "158297", + "161514", + "162427", + "1630", + "1826", + "1902", + "1948", + "1969", + "2011", + "202018", + "2033", + "2039", + "2042", + "207", + "2185", + "2213", + "2241", + "2242", + "225689", + "22871", + "22954", + "23043", + "23061", + "23064", + "23102", + "23189", + "23191", + "23216", + "23271", + "23303", + "2332", + "23329", + "23363", + "23433", + "23499", + "23500", + "23580", + "23603", + "23637", + "23654", + "255758", + "25771", + "25793", + "2580", + "2596", + "26000", + "26153", + "26259", + "2665", + "2672", + "27", + "27352", + "2803", + "285016", + "2889", + "29116", + "3064", + "322", + "324", + "3265", + "3273", + "345643", + "347240", + "347733", + "348", + "348110", + "3630", + "374403", + "377630", + "378", + "382", + "389658", + "3985", + "4058", + "4067", + "4134", + "4137", + "4168", + "4192", + "4504", + "4651", + "4914", + "49856", + "5027", + "50487", + "5064", + "51196", + "51256", + "51466", + "51473", + "51626", + "51657", + "5168", + "5205", + "5216", + "5217", + "5337", + "5365", + "53841", + "54209", + "54443", + "54521", + "54662", + "54825", + "54869", + "54874", + "54986", + "55296", + "55357", + "55604", + "55633", + "55704", + "55737", + "5584", + "55845", + "5587", + "5663", + "56896", + "57118", + "57142", + "57175", + "57465", + "57471", + "57489", + "5753", + "57533", + "5754", + "57689", + "57787", + "5780", + "5868", + "5879", + "5880", + "5898", + "5909", + "5911", + "5962", + "5979", + "6014", + "6091", + "6092", + "6239", + "627", + "6366", + "642273", + "64689", + "64786", + "64787", + "64805", + "64844", + "653", + "653464", + "655", + "6624", + "6695", + "6714", + "6792", + "7016", + "7226", + "729873", + "7401", + "7429", + "7454", + "7471", + "7813", + "79598", + "79625", + "79734", + "79735", + "79874", + "80199", + "80725", + "8100", + "81618", + "818", + "83874", + "84260", + "8428", + "84299", + "8482", + "8499", + "8536", + "8558", + "857", + "8766", + "8829", + "8934", + "90410", + "9139", + "91752", + "9353", + "93650", + "9529", + "960", + "9662", + "9693", + "9696", + "9712", + "9727", + "9738", + "9742", + "9750", + "9779", + "9856", + "989" + ] + }, + "GO:1901342": { + "Name": "regulation of vasculature development", + "Task": "GO", + "Genes": [ + "10016", + "1003", + "100506013", + "10218", + "10253", + "10298", + "10365", + "10411", + "10553", + "11005", + "11061", + "11126", + "1116", + "112744", + "1139", + "116844", + "1232", + "126259", + "126393", + "127385", + "128240", + "1284", + "1285", + "1386", + "146850", + "1499", + "153090", + "154796", + "161742", + "1634", + "168667", + "187", + "1870", + "1893", + "1944", + "2013", + "2041", + "2113", + "2152", + "2246", + "2247", + "22846", + "22905", + "23166", + "2321", + "23213", + "23251", + "23328", + "23411", + "2549", + "25865", + "2624", + "2627", + "26523", + "2658", + "27161", + "27329", + "2752", + "284361", + "28984", + "28996", + "2969", + "29924", + "306", + "30832", + "3091", + "3099", + "3135", + "3162", + "3202", + "3273", + "3315", + "3339", + "3346", + "3373", + "350", + "3553", + "356", + "3569", + "3576", + "358", + "3627", + "3678", + "3687", + "3688", + "3696", + "3716", + "3728", + "3791", + "3952", + "4086", + "4192", + "4204", + "4303", + "4763", + "4814", + "4838", + "4846", + "4879", + "4881", + "493", + "5054", + "51129", + "51378", + "5140", + "51548", + "5170", + "5176", + "5196", + "5230", + "5291", + "5294", + "5315", + "5335", + "5371", + "54361", + "5468", + "55109", + "55333", + "5578", + "55810", + "5587", + "56005", + "57343", + "57381", + "5740", + "575", + "57556", + "5797", + "5970", + "6019", + "6050", + "6093", + "6237", + "6271", + "6301", + "6387", + "63923", + "64094", + "641700", + "65125", + "6667", + "6672", + "6678", + "672", + "6772", + "6786", + "694", + "7010", + "7040", + "7042", + "7046", + "7057", + "7058", + "7082", + "7122", + "7124", + "7453", + "7474", + "7494", + "7852", + "79031", + "79805", + "79924", + "80149", + "8038", + "84034", + "8742", + "8817", + "8823", + "8838", + "8877", + "889", + "90139", + "90993", + "9146", + "92140", + "9314", + "947", + "9475", + "9510", + "958" + ] + }, + "GO:0006511": { + "Name": "ubiquitin-dependent protein catabolic process", + "Task": "GO", + "Genes": [ + "10116", + "10206", + "10210", + "10213", + "10273", + "10277", + "10299", + "10425", + "10513", + "10524", + "10537", + "10616", + "10956", + "10973", + "11060", + "11065", + "11074", + "114088", + "1161", + "116138", + "117584", + "118424", + "122416", + "122773", + "123803", + "124997", + "128866", + "130617", + "137492", + "144699", + "148066", + "149095", + "149603", + "1499", + "151636", + "1642", + "1649", + "165918", + "200845", + "200933", + "223082", + "22933", + "22954", + "23008", + "23032", + "23053", + "23194", + "23220", + "23291", + "23327", + "23352", + "23411", + "23532", + "23588", + "23624", + "253980", + "255488", + "25793", + "25820", + "25827", + "25853", + "25879", + "25898", + "25930", + "25978", + "26001", + "26046", + "26133", + "26224", + "26234", + "26235", + "26249", + "26263", + "26267", + "26268", + "26270", + "26272", + "26273", + "267", + "26994", + "27183", + "27243", + "27246", + "27252", + "27338", + "283219", + "283807", + "29062", + "29128", + "3093", + "329", + "339745", + "3429", + "343070", + "378884", + "408", + "409", + "4193", + "440561", + "4734", + "4738", + "4780", + "4850", + "5071", + "5094", + "51160", + "51185", + "5119", + "51271", + "51283", + "51343", + "51510", + "51514", + "51608", + "51652", + "51667", + "51676", + "5371", + "54461", + "54476", + "54546", + "54764", + "54894", + "54941", + "55122", + "55236", + "5527", + "55284", + "55294", + "55527", + "55626", + "55658", + "55666", + "55743", + "56254", + "56929", + "5701", + "5705", + "57092", + "57132", + "57154", + "57162", + "5717", + "57531", + "57534", + "57542", + "57563", + "57646", + "57674", + "5930", + "6047", + "6048", + "63891", + "64320", + "64326", + "64410", + "6451", + "64750", + "6477", + "6478", + "64839", + "6500", + "65018", + "6502", + "6872", + "6992", + "7126", + "7251", + "7267", + "728369", + "7320", + "7321", + "7323", + "7324", + "7326", + "7327", + "7329", + "7332", + "7334", + "7337", + "7353", + "7415", + "7428", + "7706", + "7726", + "7917", + "79643", + "79654", + "79734", + "79791", + "79845", + "80176", + "80196", + "80263", + "80311", + "81545", + "81847", + "8239", + "8266", + "83737", + "83892", + "8405", + "84078", + "84133", + "84164", + "84447", + "8451", + "8452", + "8453", + "8454", + "84727", + "84861", + "867", + "8697", + "8878", + "8945", + "89853", + "89890", + "899", + "9025", + "90850", + "9112", + "91445", + "9147", + "91782", + "92305", + "92369", + "92421", + "92714", + "9320", + "9325", + "93343", + "9354", + "9491", + "9525", + "9604", + "9695", + "9817", + "9867", + "9870", + "991", + "9921", + "9928", + "997", + "9978" + ] + }, + "GO:0120035": { + "Name": "regulation of plasma membrane bounded cell projection organization", + "Task": "GO", + "Genes": [ + "100287171", + "10096", + "10097", + "10109", + "10152", + "10163", + "10198", + "10371", + "10413", + "10435", + "10507", + "10519", + "10630", + "10677", + "10690", + "1072", + "10787", + "10801", + "10806", + "10807", + "11075", + "11135", + "11138", + "11344", + "114798", + "115704", + "116985", + "120892", + "1236", + "125058", + "126520", + "128637", + "139818", + "1400", + "146206", + "148170", + "1496", + "152559", + "158297", + "161514", + "162427", + "1630", + "1826", + "1902", + "1948", + "1969", + "2011", + "202018", + "2033", + "2039", + "2042", + "207", + "2185", + "2213", + "2241", + "2242", + "225689", + "22871", + "22954", + "23043", + "23061", + "23064", + "23102", + "23189", + "23191", + "23216", + "23271", + "23303", + "2332", + "23329", + "23363", + "23433", + "23499", + "23500", + "23580", + "23603", + "23637", + "23654", + "255758", + "25771", + "25793", + "2580", + "2596", + "26000", + "26153", + "26259", + "2665", + "2672", + "27", + "27352", + "2803", + "285016", + "2889", + "29116", + "3064", + "322", + "324", + "3265", + "3273", + "345643", + "347240", + "347733", + "348", + "348110", + "3630", + "374403", + "377630", + "378", + "382", + "389658", + "3985", + "4058", + "4067", + "4134", + "4137", + "4168", + "4192", + "4504", + "4651", + "4914", + "49856", + "5027", + "50487", + "5064", + "51196", + "51256", + "51466", + "51473", + "51626", + "51657", + "5168", + "5205", + "5216", + "5217", + "5337", + "5365", + "53841", + "54209", + "54443", + "54521", + "54662", + "54825", + "54869", + "54874", + "54986", + "55296", + "55357", + "55604", + "55633", + "55704", + "55737", + "5584", + "55845", + "5587", + "5663", + "56896", + "57118", + "57142", + "57175", + "57465", + "57489", + "5753", + "57533", + "5754", + "57689", + "57787", + "5780", + "5868", + "5879", + "5880", + "5898", + "5909", + "5911", + "5962", + "5979", + "6014", + "6091", + "6092", + "6239", + "627", + "6366", + "64689", + "64786", + "64787", + "64805", + "64844", + "653", + "653464", + "655", + "6624", + "6695", + "6714", + "6792", + "7016", + "7226", + "729873", + "7401", + "7429", + "7454", + "7471", + "7813", + "79598", + "79625", + "79734", + "79735", + "79874", + "80199", + "80725", + "8100", + "81618", + "818", + "83874", + "84260", + "8428", + "84299", + "8482", + "8499", + "8536", + "8558", + "857", + "8766", + "8829", + "8934", + "90410", + "9139", + "91752", + "9353", + "93650", + "9529", + "960", + "9662", + "9693", + "9696", + "9712", + "9727", + "9738", + "9742", + "9750", + "9779", + "9856", + "989" + ] + }, + "GO:0070848": { + "Name": "response to growth factor", + "Task": "GO", + "Genes": [ + "10013", + "1003", + "10253", + "10399", + "10519", + "10563", + "10637", + "10817", + "10818", + "10979", + "11075", + "11173", + "11344", + "116150", + "126520", + "1278", + "1281", + "1399", + "1432", + "148738", + "1499", + "151449", + "153090", + "1601", + "163126", + "1655", + "1745", + "1795", + "1845", + "1915", + "1960", + "1969", + "2010", + "2022", + "2064", + "207", + "2081", + "2246", + "2247", + "2248", + "2249", + "2250", + "2251", + "2252", + "2253", + "2254", + "2255", + "2260", + "2261", + "2263", + "2264", + "2296", + "23064", + "2321", + "2324", + "2331", + "2339", + "23411", + "2353", + "2549", + "25778", + "25865", + "25878", + "2591", + "26060", + "2615", + "2627", + "26281", + "2651", + "2658", + "2661", + "2662", + "27063", + "27250", + "27302", + "27429", + "283375", + "2889", + "2908", + "301", + "3036", + "3037", + "3077", + "3082", + "3096", + "3164", + "3248", + "3315", + "335", + "3373", + "3397", + "3688", + "3693", + "3725", + "3791", + "392255", + "4053", + "4086", + "4087", + "4088", + "4089", + "409", + "4090", + "4091", + "4092", + "4093", + "4137", + "4141", + "4208", + "4435", + "4609", + "463", + "4641", + "4851", + "4914", + "5045", + "51256", + "5151", + "5155", + "5156", + "5159", + "5170", + "51701", + "51741", + "51763", + "5290", + "5293", + "5335", + "54567", + "5468", + "5469", + "55198", + "55273", + "55553", + "5587", + "5594", + "5595", + "5598", + "5606", + "5641", + "5678", + "56940", + "57154", + "57175", + "57178", + "5747", + "57556", + "5781", + "5782", + "5796", + "5829", + "5970", + "6198", + "6272", + "6422", + "644815", + "6464", + "64762", + "650", + "652", + "653", + "654", + "655", + "657", + "658", + "659", + "6591", + "6657", + "6660", + "6662", + "6714", + "677", + "6774", + "678", + "6885", + "6997", + "7040", + "7042", + "7043", + "7046", + "7048", + "7049", + "7122", + "7175", + "7429", + "7538", + "7791", + "79625", + "81792", + "8200", + "8239", + "836", + "83637", + "864", + "8646", + "8692", + "8725", + "8754", + "8826", + "8829", + "8877", + "8882", + "8895", + "8928", + "90", + "90417", + "9141", + "9158", + "92", + "92154", + "9261", + "9270", + "93", + "9314", + "9372", + "9392", + "94", + "94056", + "9497", + "9518", + "9564", + "960", + "9702", + "9958", + "9965" + ] + }, + "GO:0042176": { + "Name": "regulation of protein catabolic process", + "Task": "GO", + "Genes": [ + "10098", + "101", + "10134", + "1017", + "10193", + "10197", + "10213", + "1027", + "10273", + "10399", + "10444", + "10459", + "1050", + "10533", + "10769", + "10869", + "11011", + "11124", + "11146", + "11200", + "11213", + "112398", + "11267", + "11315", + "11337", + "11345", + "113451", + "114881", + "116224", + "116986", + "1191", + "1263", + "135644", + "139285", + "140462", + "144165", + "1452", + "1457", + "1471", + "150", + "150684", + "153090", + "153769", + "1601", + "160418", + "161582", + "1642", + "165324", + "1728", + "1855", + "1956", + "20", + "207", + "210", + "2272", + "22933", + "2295", + "2308", + "2316", + "23376", + "23400", + "23429", + "23450", + "23555", + "23640", + "255738", + "257364", + "258010", + "25898", + "25976", + "26262", + "2629", + "26471", + "2670", + "267012", + "27074", + "27351", + "2768", + "2822", + "283106", + "29062", + "2931", + "2932", + "29761", + "29763", + "29934", + "29978", + "29979", + "29997", + "302", + "3077", + "324", + "3300", + "3303", + "3320", + "3326", + "338657", + "3416", + "3458", + "348", + "3553", + "3586", + "3630", + "4035", + "4085", + "4092", + "4193", + "4194", + "4287", + "4478", + "4734", + "474383", + "474384", + "4745", + "4780", + "4898", + "4905", + "4946", + "5045", + "5071", + "51035", + "51079", + "51105", + "51136", + "51160", + "51201", + "51257", + "51322", + "51339", + "51377", + "51429", + "51514", + "51548", + "51582", + "51667", + "5245", + "5300", + "5310", + "5347", + "5476", + "55070", + "55212", + "55270", + "55294", + "55353", + "5566", + "55737", + "5582", + "55823", + "56658", + "56776", + "56893", + "5701", + "5702", + "5705", + "5706", + "5716", + "57589", + "5774", + "57805", + "5886", + "5887", + "5962", + "5988", + "6093", + "641700", + "64285", + "64326", + "6449", + "64844", + "65992", + "6613", + "6622", + "6625", + "6653", + "6811", + "6815", + "6872", + "6880", + "7076", + "7078", + "7124", + "7128", + "7133", + "722", + "725", + "7314", + "7341", + "7415", + "7430", + "7432", + "7474", + "7514", + "7874", + "7879", + "7917", + "79589", + "79643", + "79699", + "80011", + "80279", + "8078", + "81542", + "81610", + "819", + "8239", + "8263", + "8312", + "83547", + "83844", + "8451", + "84640", + "8473", + "85407", + "85409", + "857", + "863", + "8667", + "8724", + "8742", + "8975", + "9097", + "9101", + "91445", + "9146", + "9491", + "9529", + "9554", + "9655", + "9709", + "9730", + "975", + "9817", + "9827", + "9978", + "9992" + ] + }, + "GO:0045765": { + "Name": "regulation of angiogenesis", + "Task": "GO", + "Genes": [ + "10016", + "1003", + "100506013", + "10253", + "10298", + "10365", + "10411", + "10553", + "11005", + "11061", + "11126", + "1116", + "112744", + "1139", + "116844", + "1232", + "126259", + "126393", + "127385", + "128240", + "1284", + "1285", + "1386", + "146850", + "1499", + "153090", + "154796", + "161742", + "1634", + "168667", + "187", + "1870", + "1893", + "1944", + "2013", + "2041", + "2113", + "2152", + "2246", + "2247", + "22846", + "22905", + "23166", + "2321", + "23213", + "23251", + "23328", + "23411", + "2549", + "25865", + "2624", + "2627", + "26523", + "2658", + "27161", + "27329", + "2752", + "284361", + "28984", + "28996", + "2969", + "29924", + "306", + "30832", + "3091", + "3099", + "3135", + "3162", + "3202", + "3273", + "3315", + "3339", + "3346", + "3373", + "350", + "3553", + "356", + "3569", + "3576", + "358", + "3627", + "3678", + "3687", + "3688", + "3696", + "3716", + "3728", + "3791", + "3952", + "4086", + "4192", + "4204", + "4303", + "4763", + "4814", + "4838", + "4846", + "4879", + "4881", + "493", + "5054", + "51129", + "51378", + "5140", + "51548", + "5170", + "5176", + "5196", + "5230", + "5291", + "5294", + "5315", + "5335", + "5371", + "5468", + "55109", + "55333", + "5578", + "55810", + "5587", + "56005", + "57343", + "57381", + "5740", + "575", + "57556", + "5797", + "5970", + "6019", + "6050", + "6093", + "6237", + "6271", + "6301", + "63923", + "64094", + "641700", + "65125", + "6667", + "6672", + "6678", + "672", + "6772", + "6786", + "694", + "7010", + "7042", + "7057", + "7058", + "7082", + "7122", + "7124", + "7453", + "7474", + "7494", + "79031", + "79805", + "79924", + "80149", + "8038", + "84034", + "8742", + "8817", + "8823", + "8838", + "8877", + "889", + "90139", + "90993", + "9146", + "92140", + "9314", + "947", + "9475", + "9510", + "958" + ] + }, + "GO:0043254": { + "Name": "regulation of protein-containing complex assembly", + "Task": "GO", + "Genes": [ + "10013", + "10018", + "1003", + "10142", + "1015", + "10273", + "10344", + "10382", + "10399", + "10435", + "10456", + "10565", + "10979", + "11074", + "11075", + "11076", + "11124", + "11315", + "114609", + "115362", + "118", + "119", + "1191", + "1236", + "134510", + "136319", + "140609", + "1410", + "143098", + "1437", + "1440", + "146206", + "147138", + "148170", + "152138", + "152485", + "153090", + "157922", + "1639", + "1654", + "19", + "197358", + "1981", + "2017", + "2033", + "21", + "2185", + "2241", + "2242", + "225689", + "22900", + "22919", + "22924", + "22943", + "23189", + "23271", + "23379", + "23500", + "23514", + "23521", + "24139", + "24144", + "25", + "253725", + "2580", + "258010", + "25802", + "25827", + "25999", + "260434", + "26054", + "26146", + "26191", + "2629", + "2670", + "286430", + "28964", + "2932", + "2934", + "29922", + "29997", + "3054", + "3055", + "3059", + "3071", + "3084", + "3146", + "3273", + "3297", + "3303", + "3304", + "3312", + "3320", + "3375", + "345611", + "3458", + "348", + "3567", + "3642", + "373509", + "382", + "388630", + "3925", + "3936", + "3958", + "402", + "4133", + "4137", + "4204", + "4210", + "4233", + "4312", + "4314", + "442721", + "4690", + "472", + "4733", + "4926", + "4985", + "5058", + "5063", + "50964", + "51100", + "51112", + "51339", + "51451", + "51571", + "5216", + "5217", + "5336", + "54209", + "545", + "54552", + "54751", + "54922", + "55355", + "55612", + "55626", + "55719", + "55729", + "55755", + "55845", + "5590", + "55971", + "5599", + "56919", + "56926", + "5734", + "57482", + "57506", + "57600", + "57606", + "57662", + "57763", + "57787", + "578", + "5781", + "581", + "5830", + "58497", + "5879", + "5894", + "5908", + "5921", + "5925", + "6047", + "6188", + "6249", + "6356", + "6366", + "6369", + "637", + "638", + "6403", + "64581", + "64857", + "65018", + "6622", + "6624", + "6653", + "6714", + "6812", + "6850", + "6886", + "6904", + "695", + "7013", + "7037", + "7040", + "7067", + "7114", + "7124", + "7157", + "7186", + "7341", + "7408", + "7415", + "7429", + "7453", + "79184", + "79738", + "79998", + "80772", + "81559", + "81857", + "822", + "83700", + "84079", + "8408", + "84250", + "8440", + "84630", + "84885", + "84962", + "85477", + "8631", + "8739", + "8780", + "8874", + "89795", + "9026", + "90952", + "9113", + "91663", + "9353", + "93663", + "948", + "9636", + "96459", + "9780", + "9793", + "9829", + "9928" + ] + }, + "GO:0022411": { + "Name": "cellular component disassembly", + "Task": "GO", + "Genes": [ + "10013", + "10023", + "100287171", + "101", + "102", + "10211", + "10226", + "10399", + "10490", + "10524", + "10533", + "10595", + "1072", + "1073", + "10767", + "10783", + "10904", + "10973", + "10985", + "11004", + "11034", + "11096", + "11132", + "11198", + "11331", + "1215", + "123", + "124056", + "1263", + "126731", + "128866", + "130399", + "132671", + "138428", + "139341", + "146909", + "149371", + "1511", + "1513", + "1515", + "1520", + "1524", + "162427", + "162989", + "1639", + "164656", + "1677", + "1776", + "1939", + "196528", + "1991", + "2107", + "219402", + "22863", + "22943", + "22980", + "22985", + "23008", + "23175", + "23192", + "23197", + "23376", + "23399", + "23647", + "23708", + "24144", + "25793", + "2580", + "25851", + "25898", + "25978", + "26046", + "26058", + "26100", + "26235", + "26276", + "26993", + "27183", + "27243", + "27341", + "27443", + "285590", + "285636", + "28985", + "2932", + "2934", + "2935", + "29979", + "30849", + "3159", + "3249", + "327", + "3312", + "3396", + "347240", + "3796", + "3915", + "3925", + "3936", + "4134", + "4312", + "4313", + "4314", + "4316", + "4317", + "4318", + "4319", + "4320", + "4321", + "4322", + "4323", + "4324", + "4327", + "440738", + "4609", + "4739", + "4778", + "488", + "5045", + "5071", + "51024", + "51095", + "5119", + "51250", + "51368", + "51506", + "51510", + "51569", + "51652", + "5195", + "5289", + "5340", + "5347", + "53918", + "54463", + "545", + "54516", + "55014", + "55139", + "55520", + "5562", + "55626", + "5563", + "5578", + "5579", + "5644", + "5645", + "5650", + "57104", + "57132", + "57231", + "57553", + "57701", + "5830", + "6059", + "6376", + "63894", + "6418", + "64320", + "64601", + "64780", + "6499", + "65018", + "65082", + "6591", + "6597", + "6598", + "6599", + "65992", + "6601", + "6602", + "6603", + "6604", + "6605", + "668", + "6683", + "6737", + "6749", + "6790", + "6811", + "6845", + "6901", + "7141", + "7153", + "7177", + "7251", + "7405", + "7415", + "7429", + "7443", + "79643", + "79752", + "79876", + "80183", + "80279", + "80349", + "81631", + "81671", + "81930", + "822", + "8289", + "83743", + "84164", + "84305", + "84340", + "8444", + "84557", + "84643", + "84749", + "84971", + "8562", + "8673", + "8678", + "8729", + "8751", + "8878", + "90850", + "9100", + "9147", + "91574", + "91782", + "92399", + "92421", + "92815", + "9325", + "9342", + "9349", + "9470", + "9507", + "9525", + "9604", + "9617", + "9645", + "9652", + "9793", + "987" + ] + }, + "GO:1903530": { + "Name": "regulation of secretion by cell", + "Task": "GO", + "Genes": [ + "10015", + "100507043", + "10059", + "10079", + "101", + "10307", + "10497", + "1080", + "10814", + "10815", + "10859", + "10961", + "10972", + "111", + "1113", + "11132", + "11141", + "11267", + "11314", + "114", + "114897", + "114899", + "120892", + "131177", + "134957", + "1392", + "1393", + "150", + "151", + "152", + "1588", + "164", + "1813", + "1814", + "1815", + "1906", + "1908", + "192683", + "201294", + "2029", + "2150", + "2213", + "222546", + "2242", + "2243", + "2244", + "2266", + "22999", + "23011", + "23086", + "23122", + "23208", + "23332", + "23400", + "23409", + "23607", + "252983", + "2587", + "25930", + "25953", + "26056", + "26281", + "26297", + "2645", + "2661", + "2668", + "2691", + "2695", + "2696", + "2697", + "27063", + "27183", + "27236", + "27243", + "27345", + "2746", + "283", + "285381", + "28984", + "29091", + "301", + "3071", + "3077", + "30817", + "3123", + "3134", + "322", + "3458", + "3479", + "348", + "353500", + "3552", + "3553", + "3569", + "3589", + "3592", + "3593", + "3623", + "3624", + "3625", + "3630", + "3667", + "3670", + "3684", + "3689", + "3741", + "376267", + "3767", + "382", + "3822", + "3916", + "3965", + "3976", + "399687", + "43", + "4345", + "4544", + "4628", + "4760", + "4824", + "4843", + "4988", + "5008", + "50487", + "5071", + "51083", + "51124", + "5127", + "51548", + "51652", + "51738", + "51768", + "5319", + "5413", + "54209", + "5478", + "5481", + "55107", + "55204", + "55636", + "55691", + "57126", + "57555", + "57589", + "57617", + "57818", + "58533", + "5864", + "5868", + "5873", + "5874", + "5898", + "5950", + "5978", + "63036", + "634", + "6382", + "6385", + "6386", + "640", + "64083", + "64111", + "64175", + "64215", + "6422", + "64285", + "6616", + "6622", + "6696", + "6804", + "6810", + "6812", + "6814", + "6844", + "6845", + "6853", + "6857", + "6860", + "6934", + "7021", + "7036", + "7040", + "7042", + "7043", + "7097", + "7099", + "7124", + "7251", + "7273", + "7349", + "7784", + "7849", + "7879", + "79643", + "79971", + "80024", + "80223", + "8027", + "83452", + "8399", + "8448", + "84830", + "84932", + "8609", + "8673", + "8723", + "8736", + "8754", + "8832", + "8938", + "9024", + "90550", + "9146", + "91543", + "9341", + "9367", + "94121", + "945", + "9463", + "9525", + "9545", + "9581", + "9607", + "9619", + "9627", + "9727", + "9854", + "9971" + ] + }, + "GO:0071363": { + "Name": "cellular response to growth factor stimulus", + "Task": "GO", + "Genes": [ + "1003", + "10253", + "10399", + "10519", + "10563", + "10637", + "10817", + "10818", + "10979", + "11075", + "11173", + "11344", + "116150", + "126520", + "1278", + "1281", + "1399", + "1432", + "148738", + "1499", + "151449", + "153090", + "1601", + "163126", + "1655", + "1745", + "1795", + "1845", + "1915", + "1960", + "2010", + "2022", + "2064", + "207", + "2081", + "2246", + "2247", + "2248", + "2249", + "2250", + "2251", + "2252", + "2253", + "2254", + "2255", + "2260", + "2261", + "2263", + "2264", + "2296", + "23064", + "2321", + "2324", + "2331", + "2339", + "23411", + "2353", + "2549", + "25778", + "25865", + "2591", + "26060", + "2615", + "26281", + "2651", + "2658", + "2661", + "2662", + "27063", + "27250", + "27302", + "27429", + "283375", + "2889", + "2908", + "301", + "3036", + "3037", + "3077", + "3082", + "3096", + "3164", + "3248", + "3315", + "335", + "3373", + "3397", + "3688", + "3693", + "3725", + "3791", + "392255", + "4053", + "4086", + "4087", + "4088", + "4089", + "409", + "4090", + "4091", + "4092", + "4093", + "4137", + "4141", + "4208", + "4435", + "4641", + "4851", + "4914", + "5045", + "5151", + "5155", + "5156", + "5159", + "5170", + "51701", + "51741", + "51763", + "5290", + "5293", + "5335", + "54567", + "5468", + "5469", + "55198", + "55273", + "55553", + "5587", + "5595", + "5598", + "5606", + "5641", + "5678", + "56940", + "57154", + "57175", + "57178", + "5747", + "57556", + "5781", + "5782", + "5796", + "5829", + "5970", + "6198", + "6272", + "6422", + "644815", + "6464", + "64762", + "650", + "652", + "653", + "654", + "655", + "657", + "658", + "659", + "6591", + "6660", + "6662", + "6714", + "677", + "6774", + "678", + "6885", + "6997", + "7040", + "7042", + "7043", + "7046", + "7048", + "7049", + "7122", + "7429", + "7538", + "7791", + "79625", + "81792", + "8200", + "8239", + "836", + "83637", + "8646", + "8692", + "8725", + "8754", + "8826", + "8829", + "8877", + "8882", + "8895", + "8928", + "90", + "90417", + "9141", + "9158", + "92", + "92154", + "9261", + "9270", + "93", + "9314", + "9372", + "9392", + "94", + "94056", + "9497", + "9518", + "9564", + "960", + "9702", + "9958", + "9965" + ] + }, + "GO:0072657": { + "Name": "protein localization to membrane", + "Task": "GO", + "Genes": [ + "100133941", + "10098", + "10133", + "10139", + "10211", + "10243", + "10266", + "10267", + "10268", + "10328", + "10430", + "10670", + "10890", + "10959", + "10981", + "11031", + "11187", + "1121", + "11231", + "112609", + "117177", + "128866", + "129303", + "130617", + "132112", + "1363", + "145567", + "158234", + "158866", + "161176", + "1678", + "1739", + "1742", + "1956", + "1969", + "221079", + "22844", + "22930", + "22979", + "23043", + "23062", + "23065", + "23122", + "2316", + "23163", + "23167", + "2319", + "23241", + "23420", + "23463", + "23471", + "23499", + "23555", + "23682", + "23759", + "23787", + "23788", + "25782", + "2580", + "25813", + "25837", + "25921", + "26003", + "26088", + "26154", + "2621", + "26225", + "26517", + "26519", + "26520", + "26521", + "2803", + "283576", + "283820", + "284098", + "284361", + "285521", + "285590", + "286", + "287", + "288", + "29927", + "29928", + "30845", + "3308", + "3309", + "3320", + "340348", + "344892", + "348", + "3551", + "3676", + "3683", + "3689", + "3695", + "3728", + "375790", + "382", + "3875", + "4040", + "408050", + "439", + "4641", + "481", + "483", + "4836", + "4864", + "50848", + "51016", + "51079", + "51100", + "51125", + "51201", + "51234", + "51304", + "51398", + "51560", + "51608", + "51735", + "51762", + "5284", + "5318", + "54499", + "54997", + "55004", + "55107", + "55146", + "55625", + "55690", + "55704", + "55737", + "55750", + "55800", + "55831", + "55969", + "56246", + "56851", + "56926", + "56993", + "57003", + "57130", + "57154", + "57217", + "5727", + "57512", + "5764", + "57728", + "582", + "5824", + "583", + "5830", + "5870", + "5872", + "5906", + "5911", + "5962", + "6093", + "6281", + "637", + "64083", + "64108", + "64112", + "64121", + "6449", + "64689", + "65055", + "65125", + "65267", + "653361", + "6711", + "6727", + "6728", + "6729", + "673", + "6734", + "6745", + "6746", + "6812", + "682", + "7095", + "7124", + "7132", + "7430", + "7485", + "7871", + "7879", + "79156", + "7917", + "79568", + "79803", + "81619", + "81693", + "8174", + "819", + "81926", + "8266", + "83460", + "83597", + "83871", + "8394", + "84668", + "84896", + "8504", + "85377", + "85409", + "8548", + "8766", + "88", + "8934", + "8943", + "90580", + "9146", + "91663", + "92162", + "9230", + "92359", + "9270", + "93380", + "9368", + "9370", + "9409", + "9475", + "9648", + "9693", + "9694", + "9697", + "975", + "999" + ] + }, + "GO:0002833": { + "Name": "positive regulation of response to biotic stimulus", + "Task": "GO", + "Genes": [ + "10062", + "10084", + "10125", + "10211", + "10392", + "10432", + "10612", + "10614", + "10621", + "10622", + "10623", + "10666", + "11027", + "11117", + "11126", + "11213", + "11331", + "114548", + "114609", + "1147", + "114836", + "115004", + "115362", + "117854", + "121260", + "135250", + "1387", + "140609", + "144811", + "146722", + "148022", + "1520", + "1535", + "1540", + "164", + "1654", + "1687", + "171389", + "2033", + "2150", + "2219", + "22841", + "22861", + "22900", + "22914", + "23180", + "23328", + "23369", + "2358", + "23586", + "23643", + "23705", + "2534", + "2547", + "25818", + "259197", + "25921", + "25942", + "26057", + "26191", + "26253", + "285852", + "2867", + "29108", + "29110", + "29126", + "3055", + "3093", + "3123", + "3133", + "3134", + "3135", + "3140", + "3146", + "3273", + "3303", + "3304", + "331", + "3320", + "3329", + "338322", + "340061", + "3428", + "3430", + "345611", + "353091", + "353376", + "354", + "3551", + "3592", + "3593", + "3654", + "3656", + "3661", + "3665", + "373509", + "377630", + "3805", + "3822", + "3824", + "383", + "3843", + "389856", + "3916", + "3929", + "3965", + "4057", + "4064", + "4067", + "4153", + "4792", + "4841", + "4938", + "4940", + "5058", + "5062", + "5063", + "51135", + "51295", + "51311", + "51435", + "5225", + "5245", + "5336", + "5359", + "54106", + "54502", + "55223", + "55269", + "55577", + "55601", + "55703", + "55765", + "5578", + "5591", + "5599", + "5608", + "56253", + "5650", + "56832", + "56919", + "57402", + "57506", + "57590", + "57724", + "57787", + "57864", + "5817", + "5819", + "59067", + "5970", + "6223", + "64127", + "64135", + "6421", + "661", + "6714", + "6850", + "6885", + "695", + "7096", + "7097", + "7098", + "7099", + "7100", + "7128", + "7187", + "7189", + "7294", + "730249", + "7305", + "7474", + "7520", + "7531", + "7706", + "79132", + "79184", + "79931", + "80196", + "80216", + "80231", + "80342", + "81035", + "81545", + "81570", + "81622", + "81844", + "83666", + "83737", + "839", + "84034", + "84166", + "84282", + "84937", + "85363", + "85364", + "857", + "8638", + "8678", + "8767", + "8772", + "8780", + "8915", + "89870", + "90268", + "90933", + "912", + "91445", + "9258", + "92610", + "9390", + "9447", + "9450", + "9641", + "9698", + "9782", + "9865", + "9867", + "9868", + "9958" + ] + }, + "GO:0051223": { + "Name": "regulation of protein transport", + "Task": "GO", + "Genes": [ + "10023", + "100507043", + "10059", + "101", + "10134", + "10155", + "10307", + "10399", + "10411", + "10497", + "10541", + "1080", + "10857", + "10956", + "10961", + "10972", + "11060", + "111", + "11132", + "11235", + "11261", + "11315", + "114", + "114899", + "1263", + "127933", + "131177", + "1445", + "150", + "161291", + "163882", + "1813", + "1814", + "1815", + "2010", + "2029", + "2033", + "2181", + "222546", + "2243", + "2244", + "2266", + "22994", + "23086", + "2316", + "23256", + "23379", + "23400", + "23409", + "23607", + "252983", + "258010", + "25930", + "26056", + "26130", + "2621", + "26229", + "26297", + "2645", + "2695", + "2696", + "27032", + "27063", + "27236", + "27248", + "27346", + "2746", + "283", + "285381", + "2932", + "29934", + "3059", + "3123", + "322", + "3301", + "3312", + "337867", + "3429", + "3458", + "347", + "3479", + "348", + "353500", + "3552", + "3553", + "3569", + "3592", + "3593", + "3630", + "3638", + "3667", + "3670", + "3728", + "3741", + "3767", + "382", + "3936", + "399687", + "43", + "4345", + "4544", + "4628", + "4760", + "4843", + "4988", + "5071", + "51009", + "5108", + "51124", + "5116", + "51160", + "5127", + "51366", + "51465", + "51548", + "51569", + "51614", + "51684", + "51715", + "51768", + "5295", + "5319", + "54209", + "5478", + "5481", + "55107", + "55204", + "55432", + "55691", + "55696", + "55741", + "55754", + "5580", + "55929", + "5663", + "57506", + "57555", + "5770", + "57818", + "5784", + "580", + "5901", + "5905", + "5950", + "5978", + "6248", + "63036", + "63928", + "640", + "64083", + "64175", + "64215", + "6422", + "64285", + "64328", + "652", + "6616", + "6653", + "6672", + "6804", + "6810", + "6934", + "7021", + "7040", + "7042", + "7043", + "7097", + "7099", + "7124", + "7175", + "7273", + "7327", + "7341", + "7531", + "79567", + "79752", + "7984", + "79899", + "79971", + "80024", + "80149", + "80184", + "80223", + "80762", + "81565", + "84830", + "8536", + "8609", + "8724", + "8736", + "8754", + "8841", + "8882", + "8934", + "8938", + "89866", + "9024", + "90550", + "91319", + "9141", + "91543", + "9370", + "94121", + "945", + "9463", + "9495", + "9531", + "9619", + "9647", + "9648", + "9695", + "9727", + "975", + "9777", + "9854", + "9971", + "999" + ] + }, + "GO:0033674": { + "Name": "positive regulation of kinase activity", + "Task": "GO", + "Genes": [ + "10006", + "100133941", + "10040", + "10111", + "10125", + "1026", + "10454", + "10464", + "1062", + "10892", + "10899", + "10920", + "10961", + "10979", + "11035", + "11235", + "11315", + "116", + "116986", + "120892", + "1236", + "128344", + "143384", + "1436", + "146433", + "148252", + "149233", + "150", + "151", + "152", + "152110", + "153090", + "154", + "1616", + "1654", + "1742", + "1815", + "183", + "1856", + "1894", + "1906", + "1908", + "1917", + "1942", + "1950", + "1956", + "2011", + "2013", + "205428", + "2064", + "2069", + "207", + "2081", + "2146", + "2147", + "2185", + "219736", + "219771", + "2209", + "221938", + "2246", + "2247", + "2260", + "22924", + "22974", + "23118", + "2321", + "2322", + "23328", + "23411", + "23531", + "245711", + "25", + "2547", + "255324", + "25778", + "2621", + "2688", + "283", + "284", + "284254", + "285489", + "28984", + "29775", + "3084", + "3123", + "3265", + "3320", + "3326", + "3357", + "345611", + "3458", + "3479", + "3491", + "353514", + "3553", + "3565", + "3593", + "3630", + "3643", + "3690", + "387", + "3952", + "4057", + "4216", + "4217", + "4294", + "4296", + "4361", + "4486", + "4504", + "4683", + "4739", + "4908", + "4921", + "493", + "5058", + "51149", + "51347", + "51422", + "51429", + "5154", + "5155", + "51561", + "5170", + "51719", + "5294", + "54209", + "54465", + "54769", + "5478", + "55011", + "5515", + "55294", + "55437", + "55704", + "5571", + "5580", + "5604", + "5605", + "5606", + "5618", + "5621", + "5629", + "566", + "56892", + "57091", + "57103", + "5716", + "57214", + "5747", + "57679", + "5770", + "5871", + "5899", + "595", + "6091", + "6188", + "6283", + "6363", + "63967", + "65018", + "653361", + "6622", + "6714", + "6794", + "6868", + "6885", + "6997", + "7042", + "7057", + "7124", + "7164", + "7186", + "7189", + "7295", + "7474", + "7520", + "7564", + "796", + "7984", + "80725", + "808", + "80829", + "8091", + "8312", + "84630", + "8536", + "8600", + "8754", + "8792", + "8817", + "8826", + "894", + "896", + "90441", + "9094", + "920", + "92335", + "9270", + "9344", + "9370", + "94056", + "958", + "9618", + "9693", + "972", + "9770", + "9928", + "9966" + ] + }, + "GO:0006650": { + "Name": "glycerophospholipid metabolic process", + "Task": "GO", + "Genes": [ + "100137049", + "10026", + "10162", + "1040", + "10400", + "10423", + "10554", + "10555", + "1071", + "10908", + "1103", + "11145", + "1119", + "1120", + "114879", + "114882", + "114884", + "117245", + "117283", + "1201", + "123745", + "126969", + "128869", + "129303", + "129642", + "133121", + "137964", + "145567", + "150763", + "151056", + "154141", + "1606", + "1608", + "160851", + "1609", + "1622", + "171586", + "200576", + "200879", + "204962", + "21", + "222236", + "22863", + "22876", + "22979", + "23049", + "23167", + "23236", + "23396", + "23446", + "23556", + "23659", + "23761", + "253558", + "254531", + "255043", + "255189", + "26090", + "26279", + "27124", + "27163", + "27315", + "2822", + "283748", + "283871", + "284098", + "3030", + "30849", + "335", + "336", + "337", + "3612", + "3633", + "3635", + "3636", + "3706", + "3707", + "376497", + "3931", + "3990", + "4534", + "4952", + "50487", + "50640", + "51099", + "51205", + "51227", + "5130", + "51365", + "51447", + "51573", + "5159", + "51604", + "5168", + "51763", + "5277", + "5279", + "5281", + "5283", + "5286", + "5289", + "5291", + "5294", + "5297", + "5298", + "5305", + "5319", + "5320", + "5321", + "5322", + "5330", + "5331", + "5333", + "5336", + "5337", + "5338", + "5341", + "54344", + "5444", + "54675", + "54872", + "54947", + "54979", + "55300", + "55326", + "55361", + "55500", + "55529", + "55627", + "55650", + "56623", + "56894", + "56895", + "56994", + "57048", + "57110", + "57153", + "5728", + "57605", + "57678", + "5833", + "5920", + "63874", + "64419", + "64600", + "64924", + "65258", + "660", + "6901", + "7405", + "79143", + "7941", + "79837", + "79888", + "80055", + "80235", + "80271", + "80339", + "80736", + "81490", + "83394", + "8394", + "8395", + "8396", + "8398", + "8399", + "84188", + "84302", + "8443", + "84668", + "84803", + "84879", + "84947", + "84992", + "8525", + "8526", + "8527", + "85465", + "8605", + "8678", + "8733", + "8760", + "8776", + "8813", + "8818", + "8821", + "8867", + "8871", + "8897", + "8898", + "90809", + "9091", + "9107", + "9108", + "9110", + "93210", + "94005", + "9468", + "9487", + "9488", + "9588", + "9600", + "9791", + "9807", + "9896", + "9926" + ] + }, + "GO:0002764": { + "Name": "immune response-regulating signaling pathway", + "Task": "GO", + "Genes": [ + "100133941", + "10288", + "10392", + "10451", + "10603", + "10616", + "10657", + "10859", + "10892", + "11006", + "11027", + "11119", + "11213", + "11331", + "114548", + "114609", + "1147", + "115004", + "121665", + "1378", + "1387", + "1445", + "144811", + "146722", + "148022", + "1493", + "1512", + "1520", + "1540", + "163486", + "171389", + "196051", + "1967", + "199920", + "2033", + "2207", + "2213", + "2219", + "2268", + "22841", + "22861", + "22900", + "23149", + "23180", + "23547", + "2358", + "23586", + "23643", + "25", + "2533", + "2534", + "25800", + "25865", + "259197", + "26191", + "26253", + "27040", + "2822", + "2867", + "29108", + "29110", + "29126", + "29760", + "3055", + "3071", + "30968", + "3105", + "3115", + "3119", + "3123", + "3135", + "331", + "3329", + "340061", + "345611", + "353376", + "3551", + "3635", + "3654", + "3656", + "3661", + "3665", + "3802", + "3815", + "3821", + "3822", + "3824", + "3843", + "387837", + "3929", + "3937", + "3965", + "3984", + "4067", + "4153", + "4214", + "4277", + "4332", + "4773", + "4792", + "4938", + "4940", + "5058", + "5062", + "5063", + "51135", + "51295", + "51311", + "51324", + "5142", + "51435", + "5144", + "5245", + "5284", + "5290", + "5293", + "5335", + "5336", + "5338", + "54106", + "55024", + "55072", + "55765", + "5580", + "5581", + "5588", + "5599", + "5601", + "5608", + "5609", + "5678", + "57402", + "5747", + "57506", + "57724", + "5788", + "5795", + "581", + "59338", + "596", + "5970", + "640", + "64127", + "64135", + "6416", + "6654", + "6714", + "6850", + "6885", + "695", + "7006", + "7096", + "7097", + "7098", + "7099", + "7100", + "7128", + "7187", + "7189", + "719", + "728", + "7305", + "7334", + "7409", + "7410", + "7462", + "7525", + "7531", + "7535", + "7706", + "79132", + "7917", + "79931", + "80149", + "80196", + "80216", + "80342", + "81035", + "81570", + "81622", + "83737", + "8398", + "84174", + "84282", + "8631", + "8678", + "8767", + "8890", + "8891", + "8892", + "8893", + "8915", + "90268", + "919", + "925", + "926", + "92610", + "930", + "931", + "945", + "952", + "9564", + "9865" + ] + }, + "GO:0071900": { + "Name": "regulation of protein serine/threonine kinase activity", + "Task": "GO", + "Genes": [ + "100133941", + "10125", + "1022", + "10221", + "1026", + "1027", + "1029", + "1030", + "1031", + "1032", + "1033", + "10454", + "10527", + "10614", + "10961", + "10979", + "11140", + "11213", + "11221", + "11235", + "11267", + "11314", + "11329", + "120892", + "124790", + "146433", + "148252", + "150", + "152110", + "152559", + "153090", + "154", + "1647", + "1654", + "171392", + "1815", + "183", + "1843", + "1849", + "1856", + "1906", + "1908", + "1950", + "1956", + "205428", + "2064", + "207", + "2081", + "2146", + "219771", + "2246", + "2247", + "2260", + "2321", + "2322", + "23328", + "23411", + "23560", + "23624", + "245928", + "25", + "255324", + "26191", + "2629", + "26524", + "2688", + "28984", + "29108", + "2950", + "2965", + "29950", + "3064", + "3087", + "324", + "3265", + "3301", + "3357", + "345611", + "3458", + "348", + "3553", + "3643", + "3843", + "387", + "388324", + "4040", + "4041", + "4057", + "4216", + "4217", + "4294", + "4296", + "4485", + "4486", + "4878", + "4908", + "493", + "5058", + "51191", + "51347", + "5154", + "5155", + "51654", + "51719", + "51755", + "51763", + "5294", + "5347", + "54465", + "5468", + "5470", + "54769", + "54900", + "54922", + "55011", + "5515", + "5569", + "5573", + "5575", + "5576", + "5577", + "5580", + "5604", + "5605", + "5629", + "56647", + "56892", + "5716", + "57214", + "5728", + "57493", + "5770", + "57761", + "5795", + "5871", + "5899", + "595", + "6091", + "6188", + "6283", + "6317", + "641", + "64853", + "650", + "6609", + "6622", + "6714", + "6868", + "6885", + "6997", + "7023", + "7026", + "7057", + "7124", + "7164", + "7186", + "7189", + "7251", + "7345", + "7405", + "7474", + "7984", + "80279", + "808", + "80824", + "8091", + "8536", + "859", + "8600", + "8692", + "8754", + "8792", + "8812", + "8817", + "8823", + "8851", + "894", + "8941", + "896", + "900", + "904", + "905", + "9077", + "9088", + "9113", + "9134", + "9146", + "93649", + "9370", + "94056", + "9555", + "958", + "9693", + "990", + "993", + "995" + ] + }, + "GO:0045089": { + "Name": "positive regulation of innate immune response", + "Task": "GO", + "Genes": [ + "10062", + "10084", + "10125", + "10211", + "10392", + "10432", + "10612", + "10614", + "10621", + "10622", + "10623", + "10666", + "11027", + "11126", + "11213", + "11331", + "114548", + "114609", + "1147", + "114836", + "115004", + "115362", + "117854", + "121260", + "135250", + "1387", + "140609", + "144811", + "146722", + "148022", + "1520", + "1535", + "1540", + "164", + "1654", + "171389", + "2033", + "2150", + "2219", + "22841", + "22861", + "22900", + "22914", + "23180", + "23369", + "2358", + "23586", + "23643", + "23705", + "2534", + "2547", + "259197", + "25921", + "25942", + "26057", + "26191", + "26253", + "285852", + "2867", + "29108", + "29110", + "29126", + "3055", + "3093", + "3133", + "3134", + "3135", + "3146", + "3303", + "3304", + "331", + "3320", + "3329", + "338322", + "340061", + "3428", + "3430", + "345611", + "353091", + "353376", + "3551", + "3592", + "3593", + "3654", + "3656", + "3661", + "3665", + "373509", + "377630", + "3805", + "3822", + "3824", + "3843", + "389856", + "3916", + "3929", + "3965", + "4057", + "4067", + "4153", + "4792", + "4841", + "4938", + "4940", + "5058", + "5062", + "5063", + "51135", + "51295", + "51311", + "51435", + "5245", + "5336", + "5359", + "54106", + "54502", + "55223", + "55269", + "55577", + "55601", + "55703", + "55765", + "5591", + "5599", + "5608", + "56253", + "56832", + "56919", + "57402", + "57506", + "57590", + "57724", + "57787", + "57864", + "5817", + "5819", + "59067", + "5970", + "6223", + "64127", + "64135", + "6421", + "661", + "6714", + "6850", + "6885", + "695", + "7096", + "7097", + "7098", + "7099", + "7100", + "7128", + "7187", + "7189", + "7294", + "7305", + "7474", + "7520", + "7531", + "7706", + "79132", + "79184", + "79931", + "80196", + "80216", + "80231", + "80342", + "81035", + "81570", + "81622", + "81844", + "83666", + "83737", + "839", + "84166", + "84282", + "84937", + "85363", + "85364", + "857", + "8638", + "8678", + "8767", + "8772", + "8780", + "8915", + "89870", + "90268", + "90933", + "912", + "91445", + "9258", + "92610", + "9447", + "9641", + "9698", + "9782", + "9865", + "9867", + "9868", + "9958" + ] + }, + "GO:0045860": { + "Name": "positive regulation of protein kinase activity", + "Task": "GO", + "Genes": [ + "10006", + "100133941", + "10040", + "10125", + "1026", + "10454", + "10464", + "1062", + "10892", + "10899", + "10920", + "10961", + "10979", + "11035", + "11235", + "11315", + "116", + "116986", + "120892", + "1236", + "143384", + "1436", + "146433", + "148252", + "149233", + "150", + "151", + "152", + "152110", + "153090", + "154", + "1616", + "1654", + "1742", + "1815", + "183", + "1856", + "1894", + "1906", + "1908", + "1942", + "1950", + "1956", + "2011", + "2013", + "205428", + "2064", + "2069", + "207", + "2081", + "2146", + "2185", + "219736", + "219771", + "2209", + "221938", + "2246", + "2247", + "2260", + "22924", + "22974", + "23118", + "2321", + "2322", + "23328", + "23411", + "23531", + "245711", + "25", + "2547", + "255324", + "2621", + "2688", + "283", + "284", + "284254", + "285489", + "28984", + "29775", + "3084", + "3265", + "3320", + "3326", + "3357", + "345611", + "3458", + "3479", + "3491", + "353514", + "3553", + "3565", + "3593", + "3630", + "3643", + "3690", + "387", + "3952", + "4057", + "4216", + "4217", + "4294", + "4296", + "4486", + "4504", + "4739", + "4908", + "4921", + "493", + "5058", + "51149", + "51347", + "51422", + "51429", + "5154", + "5155", + "51561", + "5170", + "51719", + "5294", + "54465", + "54769", + "5478", + "55011", + "5515", + "55294", + "55437", + "55704", + "5571", + "5580", + "5604", + "5605", + "5606", + "5618", + "5621", + "5629", + "566", + "56892", + "57091", + "5716", + "57214", + "5747", + "57679", + "5770", + "5871", + "5899", + "595", + "6091", + "6188", + "6283", + "6363", + "63967", + "65018", + "653361", + "6622", + "6714", + "6794", + "6868", + "6885", + "6997", + "7042", + "7057", + "7124", + "7164", + "7186", + "7189", + "7295", + "7474", + "7520", + "796", + "7984", + "80725", + "808", + "80829", + "8091", + "8312", + "84630", + "8536", + "8600", + "8754", + "8792", + "8817", + "8826", + "894", + "896", + "9094", + "920", + "92335", + "9270", + "9344", + "9370", + "94056", + "958", + "9618", + "9693", + "9770", + "9928", + "9966" + ] + }, + "GO:0030036": { + "Name": "actin cytoskeleton organization", + "Task": "GO", + "Genes": [ + "100287171", + "10092", + "10093", + "10094", + "10095", + "10096", + "10097", + "10109", + "10435", + "10459", + "10529", + "10552", + "10677", + "1072", + "1073", + "10788", + "10810", + "11034", + "11151", + "11235", + "114793", + "116985", + "116986", + "118", + "119", + "123720", + "1365", + "1398", + "146206", + "149461", + "150", + "1525", + "154796", + "165904", + "1739", + "1785", + "1794", + "199", + "2013", + "2039", + "221061", + "221692", + "2245", + "2252", + "2255", + "226", + "22808", + "23043", + "2316", + "2318", + "23189", + "23370", + "23396", + "23433", + "23607", + "23616", + "23647", + "24142", + "253260", + "253980", + "25802", + "2693", + "27032", + "27183", + "27289", + "283431", + "2885", + "29085", + "29127", + "2919", + "2934", + "29780", + "29984", + "301", + "3059", + "3071", + "3551", + "358", + "359", + "3636", + "3645", + "3688", + "3693", + "375307", + "3815", + "382", + "387", + "3880", + "390", + "391", + "3936", + "3996", + "399687", + "408", + "4287", + "442721", + "4430", + "4627", + "4628", + "4771", + "50488", + "5058", + "50848", + "51466", + "51474", + "5170", + "51738", + "5319", + "5341", + "54434", + "54509", + "54551", + "54566", + "54784", + "55604", + "55761", + "5592", + "56203", + "56776", + "56907", + "57026", + "57175", + "57381", + "57471", + "5754", + "57553", + "57580", + "5770", + "58", + "58529", + "5879", + "5880", + "5881", + "5911", + "5987", + "60", + "6093", + "64780", + "6624", + "6708", + "6711", + "6714", + "7082", + "7124", + "7126", + "7168", + "7184", + "7273", + "7401", + "7429", + "7430", + "7454", + "7456", + "752", + "7791", + "7827", + "79031", + "79585", + "79784", + "79983", + "80725", + "825", + "83715", + "83872", + "8394", + "84033", + "84168", + "84193", + "84501", + "8452", + "84665", + "8476", + "84952", + "85360", + "85369", + "85462", + "85464", + "8557", + "8572", + "87", + "88", + "8936", + "8976", + "9024", + "91010", + "9172", + "9181", + "9266", + "9294", + "9344", + "93627", + "94134", + "9475", + "9564", + "9578", + "9645", + "9722", + "9788", + "9828", + "9844", + "9938" + ] + }, + "GO:0007169": { + "Name": "cell surface receptor protein tyrosine kinase signaling pathway", + "Task": "GO", + "Genes": [ + "10006", + "10016", + "10135", + "10256", + "10273", + "10458", + "10718", + "10817", + "10818", + "10849", + "11122", + "116150", + "1176", + "1317", + "1398", + "1432", + "1435", + "154", + "161198", + "1795", + "1839", + "1942", + "1944", + "1946", + "1948", + "1949", + "1950", + "1956", + "1969", + "2042", + "2043", + "2045", + "2047", + "2049", + "2050", + "2064", + "2065", + "2066", + "2069", + "207", + "208", + "2185", + "2202", + "2241", + "2246", + "2247", + "2248", + "2249", + "2250", + "2251", + "2252", + "2253", + "2254", + "2255", + "2260", + "2261", + "2263", + "2264", + "2303", + "23064", + "2321", + "23213", + "2324", + "23433", + "238", + "25", + "2534", + "2549", + "25791", + "25865", + "2591", + "26058", + "26060", + "26281", + "2675", + "2688", + "2690", + "2822", + "284", + "285", + "285016", + "2885", + "2886", + "2889", + "29990", + "3082", + "3084", + "324", + "3315", + "3479", + "3480", + "3630", + "3643", + "3667", + "3717", + "3718", + "374", + "3791", + "3815", + "389400", + "389658", + "3925", + "4058", + "4067", + "4303", + "4313", + "4318", + "4641", + "4908", + "4914", + "4915", + "4921", + "5058", + "5062", + "5063", + "51196", + "5154", + "5155", + "5156", + "5159", + "5166", + "5170", + "5284", + "5286", + "5290", + "5291", + "5293", + "5295", + "5335", + "53358", + "55532", + "55614", + "558", + "5587", + "55914", + "5594", + "56034", + "5618", + "5747", + "5753", + "5770", + "5781", + "5793", + "5795", + "5801", + "5829", + "5879", + "5919", + "5921", + "5970", + "5979", + "624", + "627", + "6272", + "64283", + "64762", + "6654", + "6714", + "673", + "6774", + "6777", + "685", + "6997", + "7010", + "7039", + "7074", + "7409", + "7410", + "7424", + "7429", + "7525", + "780", + "7867", + "8013", + "8065", + "836", + "8412", + "8440", + "84985", + "858", + "8826", + "8829", + "8835", + "8874", + "8895", + "8997", + "9019", + "9158", + "916", + "9185", + "9261", + "9518", + "9564", + "9702", + "9788", + "9847", + "9961", + "9965" + ] + }, + "GO:0051098": { + "Name": "regulation of binding", + "Task": "GO", + "Genes": [ + "10014", + "10211", + "1026", + "10399", + "10459", + "1054", + "10542", + "10763", + "11315", + "114991", + "117854", + "118", + "119", + "1193", + "120892", + "129531", + "1398", + "1454", + "146057", + "147138", + "149628", + "151636", + "151651", + "154", + "155", + "1565", + "1601", + "165904", + "166", + "1663", + "171392", + "1869", + "1981", + "2035", + "2043", + "207", + "2072", + "2280", + "22927", + "22943", + "2296", + "23028", + "23032", + "23063", + "23493", + "23557", + "23560", + "24144", + "25", + "255738", + "25805", + "26086", + "26119", + "2623", + "2625", + "2801", + "285381", + "2959", + "2962", + "3001", + "3005", + "302", + "3077", + "3078", + "3080", + "3146", + "3148", + "3300", + "340061", + "3416", + "3428", + "3433", + "3434", + "3458", + "3479", + "348", + "351", + "3586", + "3646", + "3676", + "3725", + "387082", + "3925", + "4035", + "4043", + "409", + "4140", + "4233", + "4318", + "4686", + "4760", + "4830", + "488", + "489", + "4931", + "5071", + "5080", + "51042", + "51053", + "51068", + "51176", + "51339", + "51341", + "5155", + "51773", + "5195", + "5300", + "5329", + "5347", + "5350", + "5444", + "54496", + "54552", + "5468", + "54984", + "55182", + "55355", + "5566", + "55693", + "5580", + "55906", + "5599", + "5663", + "567", + "56998", + "5792", + "581", + "5824", + "5899", + "5901", + "59082", + "5914", + "5925", + "6093", + "6135", + "627", + "640", + "64324", + "64400", + "64710", + "64771", + "64855", + "6497", + "650", + "652", + "6590", + "65992", + "6612", + "6672", + "6737", + "6788", + "6789", + "6790", + "6815", + "6872", + "6934", + "7009", + "7015", + "7023", + "7074", + "7122", + "7189", + "7291", + "7295", + "7341", + "7448", + "80011", + "8091", + "81494", + "81620", + "81857", + "8189", + "8239", + "83666", + "84444", + "84630", + "8487", + "8536", + "8658", + "8663", + "8664", + "8721", + "8751", + "8767", + "8829", + "8904", + "9026", + "9044", + "9212", + "9241", + "9270", + "9370", + "9421", + "9464", + "9532", + "9750", + "9759" + ] + }, + "GO:0010498": { + "Name": "proteasomal protein catabolic process", + "Task": "GO", + "Genes": [ + "10116", + "10193", + "10206", + "10210", + "10273", + "10277", + "10299", + "10513", + "10524", + "10613", + "10616", + "10869", + "10952", + "10956", + "10973", + "11060", + "11065", + "11101", + "11160", + "11236", + "11253", + "114088", + "1161", + "116138", + "117584", + "118424", + "122416", + "122773", + "130617", + "148066", + "149603", + "1499", + "1642", + "1649", + "201595", + "223082", + "22933", + "23008", + "23053", + "23190", + "23194", + "23197", + "23220", + "23291", + "23327", + "23392", + "23411", + "23532", + "23588", + "253980", + "25793", + "25827", + "25853", + "25879", + "26046", + "26133", + "26224", + "26234", + "26249", + "26268", + "26270", + "26272", + "26273", + "267", + "27248", + "27252", + "27338", + "27339", + "283807", + "29978", + "29979", + "329", + "3309", + "339745", + "3429", + "343070", + "378884", + "408", + "409", + "4121", + "414301", + "4189", + "4193", + "440561", + "4780", + "5071", + "5094", + "51009", + "51185", + "51283", + "51343", + "51439", + "51465", + "51528", + "51608", + "51676", + "5366", + "5371", + "54431", + "54461", + "54476", + "54546", + "54788", + "550", + "55122", + "5527", + "55284", + "55294", + "55432", + "55527", + "55626", + "55658", + "55666", + "55741", + "55829", + "56929", + "57003", + "5705", + "57092", + "57154", + "57162", + "57542", + "6047", + "6048", + "6400", + "64326", + "6449", + "6451", + "6477", + "64839", + "6500", + "6502", + "6737", + "7126", + "7184", + "7320", + "7321", + "7323", + "7327", + "7334", + "7353", + "7415", + "7428", + "7466", + "7706", + "7726", + "7844", + "79139", + "7917", + "79654", + "79734", + "79791", + "79845", + "7993", + "80020", + "80196", + "80263", + "80267", + "80311", + "80700", + "81502", + "81545", + "83590", + "83737", + "8405", + "84078", + "84164", + "84301", + "84447", + "8450", + "8451", + "8452", + "8453", + "8454", + "84861", + "8507", + "8945", + "89890", + "899", + "90007", + "9024", + "90850", + "9112", + "91147", + "91319", + "91445", + "9147", + "92305", + "9306", + "9325", + "93611", + "9695", + "9709", + "9867", + "991", + "9921", + "9928", + "997", + "9978" + ] + }, + "GO:0071396": { + "Name": "cellular response to lipid", + "Task": "GO", + "Genes": [ + "10018", + "10062", + "10288", + "10413", + "10474", + "10521", + "10524", + "1066", + "1080", + "10856", + "11057", + "1109", + "111", + "11184", + "112", + "11240", + "11344", + "114548", + "114881", + "116151", + "133522", + "1385", + "1393", + "140596", + "1432", + "1511", + "151306", + "151556", + "153090", + "1616", + "1645", + "1646", + "1655", + "1667", + "1668", + "1956", + "196", + "2042", + "2099", + "2100", + "2185", + "2242", + "22843", + "22938", + "23064", + "23081", + "23543", + "23558", + "23641", + "23729", + "26191", + "27", + "27063", + "27429", + "2822", + "284254", + "2852", + "2865", + "2867", + "2908", + "29108", + "2932", + "301", + "3015", + "3055", + "3192", + "3303", + "3304", + "3312", + "345611", + "353376", + "3569", + "3576", + "358", + "3586", + "3627", + "3638", + "3654", + "367", + "387", + "389643", + "3929", + "4040", + "4058", + "4067", + "4246", + "4257", + "4314", + "4318", + "4478", + "4734", + "476", + "477", + "4790", + "4795", + "4824", + "503618", + "5054", + "50801", + "51079", + "51141", + "51366", + "51510", + "5165", + "5166", + "5241", + "5244", + "5245", + "5292", + "5336", + "54209", + "5458", + "5469", + "54997", + "55625", + "558", + "55809", + "55818", + "55829", + "5594", + "5599", + "56848", + "57178", + "5727", + "5737", + "5753", + "5754", + "58509", + "5914", + "5970", + "5976", + "5978", + "5979", + "6095", + "6097", + "6372", + "64127", + "6528", + "6696", + "677", + "678", + "6850", + "687", + "7099", + "7110", + "7128", + "7133", + "7189", + "728358", + "7292", + "730249", + "7332", + "7337", + "7431", + "7494", + "7533", + "7538", + "79039", + "79931", + "80139", + "80149", + "811", + "81285", + "8202", + "8204", + "8289", + "834", + "840", + "84458", + "84660", + "8611", + "8644", + "8725", + "8751", + "8754", + "8915", + "90933", + "92140", + "923", + "92595", + "9325", + "9373", + "9475", + "9572", + "9971" + ] + }, + "GO:1902903": { + "Name": "regulation of supramolecular fiber organization", + "Task": "GO", + "Genes": [ + "1003", + "10142", + "10152", + "10163", + "10174", + "10300", + "10344", + "10382", + "10395", + "10411", + "10435", + "10456", + "10471", + "10519", + "10565", + "1073", + "10787", + "10979", + "11075", + "11151", + "11315", + "116985", + "118", + "119", + "1191", + "1236", + "123720", + "126820", + "136319", + "1410", + "1440", + "146057", + "146206", + "148170", + "1490", + "1496", + "150356", + "157922", + "1639", + "165", + "1906", + "2017", + "203228", + "2150", + "2185", + "2241", + "2242", + "22843", + "22919", + "22924", + "22974", + "22998", + "23122", + "23189", + "23191", + "23271", + "23332", + "23370", + "23500", + "23616", + "23671", + "24139", + "24142", + "25", + "253725", + "25802", + "25999", + "27302", + "28964", + "28984", + "29109", + "2934", + "29922", + "3055", + "3059", + "3071", + "324", + "3303", + "3304", + "3312", + "335", + "3375", + "348", + "348110", + "351", + "382", + "387", + "389", + "3925", + "395", + "3984", + "402", + "4133", + "4137", + "4204", + "4233", + "442721", + "4653", + "4690", + "4733", + "4771", + "4926", + "5058", + "5062", + "5063", + "5071", + "50848", + "51466", + "51474", + "51571", + "51763", + "5201", + "5202", + "5203", + "5204", + "5216", + "5217", + "5341", + "5345", + "55160", + "55604", + "55616", + "55704", + "55755", + "55845", + "55971", + "5663", + "57026", + "57175", + "57482", + "57551", + "57606", + "57662", + "5829", + "58497", + "5879", + "5921", + "5962", + "6093", + "6188", + "6249", + "6281", + "6314", + "6356", + "6366", + "6369", + "6376", + "6387", + "64857", + "6548", + "6622", + "6904", + "7016", + "7043", + "71", + "7114", + "7148", + "7248", + "7408", + "7411", + "7429", + "7454", + "7481", + "7840", + "79709", + "7984", + "79998", + "8440", + "8477", + "84952", + "8500", + "85415", + "85477", + "859", + "88", + "8829", + "8874", + "8936", + "89795", + "90102", + "9026", + "9087", + "90952", + "9101", + "9113", + "91663", + "9181", + "9353", + "93663", + "9475", + "9639", + "9647", + "9793", + "9873", + "9948" + ] + }, + "GO:0006897": { + "Name": "endocytosis", + "Task": "GO", + "Genes": [ + "10062", + "1020", + "10203", + "10244", + "10266", + "10267", + "10268", + "10451", + "10461", + "10859", + "1089", + "10938", + "11006", + "11031", + "11151", + "11252", + "112574", + "115548", + "1173", + "1174", + "1175", + "1201", + "120892", + "133", + "134", + "135", + "1514", + "154", + "155", + "156", + "157", + "160", + "161", + "163", + "1759", + "1785", + "1793", + "1808", + "1814", + "196051", + "200576", + "203228", + "2060", + "219931", + "2208", + "2213", + "2219", + "2220", + "2268", + "22841", + "23102", + "23149", + "23166", + "23396", + "2348", + "23603", + "23616", + "25", + "2534", + "257364", + "2580", + "25912", + "26119", + "261729", + "2621", + "27131", + "273", + "274", + "283420", + "2868", + "2885", + "2966", + "29911", + "301", + "3055", + "306", + "3146", + "348", + "3482", + "353376", + "3576", + "3577", + "3579", + "3587", + "3636", + "3685", + "3690", + "3949", + "3984", + "4035", + "4036", + "4037", + "4067", + "4074", + "408", + "409", + "432", + "4360", + "440400", + "4643", + "4646", + "4734", + "5058", + "51429", + "51454", + "51606", + "5175", + "5286", + "5298", + "53353", + "53373", + "5338", + "54209", + "54734", + "54874", + "55113", + "5538", + "55576", + "55604", + "55647", + "55681", + "55716", + "558", + "5580", + "5581", + "5594", + "5595", + "57007", + "57403", + "5747", + "575", + "57706", + "5861", + "5868", + "5898", + "5899", + "5914", + "6272", + "6441", + "64581", + "6622", + "6642", + "6653", + "6714", + "6804", + "6850", + "7036", + "7037", + "7052", + "7057", + "7099", + "7249", + "7409", + "7410", + "7436", + "7525", + "7804", + "7879", + "81035", + "81693", + "8218", + "8301", + "83737", + "83871", + "8394", + "8398", + "8411", + "84162", + "85377", + "85439", + "8547", + "857", + "8578", + "858", + "859", + "8867", + "9026", + "90678", + "90861", + "9214", + "9260", + "9266", + "9413", + "94134", + "948", + "949", + "9777", + "9829", + "9844", + "9873", + "9936", + "9938" + ] + }, + "GO:0001933": { + "Name": "negative regulation of protein phosphorylation", + "Task": "GO", + "Genes": [ + "100506658", + "10221", + "10253", + "1026", + "1027", + "1028", + "1029", + "103", + "10399", + "104", + "10464", + "10527", + "10614", + "11006", + "11116", + "11122", + "11213", + "11221", + "11314", + "11315", + "11329", + "122809", + "124790", + "138429", + "1399", + "140775", + "152559", + "153090", + "1609", + "161742", + "1647", + "171392", + "183", + "1843", + "1849", + "1981", + "199731", + "200734", + "203228", + "2041", + "207", + "2192", + "22843", + "22876", + "22943", + "23171", + "23411", + "23435", + "23603", + "23624", + "23770", + "245928", + "25", + "25937", + "25998", + "260434", + "26146", + "26191", + "2629", + "26524", + "2776", + "2810", + "286430", + "29108", + "2950", + "3087", + "324", + "3301", + "3458", + "348", + "3486", + "3642", + "3843", + "388324", + "401265", + "4040", + "4041", + "4092", + "4690", + "4771", + "4869", + "4878", + "4908", + "5062", + "5071", + "51085", + "51422", + "51527", + "51637", + "51654", + "5167", + "5170", + "51763", + "5347", + "54206", + "54386", + "54431", + "54625", + "5468", + "5470", + "5478", + "54900", + "54922", + "55022", + "5569", + "5573", + "5575", + "5576", + "5577", + "5580", + "55861", + "5590", + "5611", + "56940", + "5728", + "57493", + "5753", + "5770", + "5771", + "57732", + "57761", + "5777", + "5783", + "5788", + "5795", + "58509", + "5859", + "5925", + "5987", + "6317", + "6422", + "6456", + "64793", + "64798", + "64853", + "650", + "6609", + "6622", + "6879", + "6895", + "7023", + "7026", + "7040", + "7251", + "7345", + "7453", + "7498", + "79643", + "79899", + "80279", + "80725", + "808", + "80824", + "84313", + "84335", + "84619", + "84919", + "857", + "859", + "8613", + "8651", + "8692", + "9021", + "9113", + "91662", + "91663", + "9270", + "9353", + "93649", + "93650", + "9370", + "9555", + "9647", + "9655", + "9770", + "9961" + ] + }, + "GO:1902115": { + "Name": "regulation of organelle assembly", + "Task": "GO", + "Genes": [ + "10015", + "10146", + "10198", + "10413", + "10432", + "10615", + "10733", + "10769", + "10801", + "10806", + "10807", + "11138", + "11152", + "112574", + "115704", + "120892", + "125058", + "126731", + "128637", + "128866", + "140775", + "1437", + "152185", + "153241", + "158297", + "161514", + "163786", + "1778", + "1902", + "1947", + "200576", + "202018", + "203228", + "2048", + "207", + "221908", + "225689", + "22930", + "22954", + "23019", + "23061", + "23102", + "23130", + "23216", + "23256", + "23329", + "23636", + "23637", + "246175", + "2475", + "255758", + "256364", + "25771", + "25782", + "25978", + "26000", + "26054", + "26471", + "2648", + "2665", + "27243", + "27352", + "2934", + "29899", + "29978", + "3055", + "3064", + "3192", + "3303", + "3304", + "345643", + "347240", + "3567", + "374403", + "378", + "3936", + "3985", + "401548", + "4076", + "4134", + "4478", + "4591", + "4733", + "4848", + "4869", + "4926", + "49856", + "51100", + "51112", + "5119", + "51256", + "51375", + "51473", + "51510", + "51626", + "51652", + "51657", + "5305", + "53407", + "5347", + "54521", + "54546", + "54662", + "55062", + "550643", + "55254", + "55296", + "55357", + "55633", + "55704", + "55823", + "55835", + "56890", + "57132", + "57465", + "57472", + "57489", + "57533", + "57535", + "57787", + "5868", + "5899", + "5962", + "6047", + "6382", + "6385", + "6386", + "64112", + "64786", + "64844", + "6491", + "65018", + "6624", + "6792", + "7016", + "7124", + "7175", + "7251", + "729873", + "7430", + "7813", + "79142", + "79598", + "79643", + "79734", + "79735", + "79837", + "79874", + "79959", + "80199", + "8027", + "8100", + "81876", + "822", + "83874", + "8396", + "84260", + "85459", + "8558", + "859", + "8723", + "8766", + "8850", + "8897", + "90410", + "90678", + "9100", + "91782", + "92421", + "9525", + "9554", + "9637", + "9638", + "9662", + "9696", + "9712", + "9727", + "9738", + "9742", + "9779", + "989", + "9898", + "9908" + ] + }, + "GO:0031348": { + "Name": "negative regulation of defense response", + "Task": "GO", + "Genes": [ + "1003", + "100507436", + "10769", + "10859", + "11274", + "11277", + "11326", + "114548", + "114899", + "1378", + "140885", + "142", + "1432", + "145581", + "147945", + "149095", + "152138", + "196", + "197358", + "2", + "2000", + "201292", + "2137", + "2213", + "2268", + "22978", + "23005", + "23170", + "23220", + "2358", + "240", + "2534", + "25939", + "26058", + "26146", + "2625", + "2629", + "2693", + "284340", + "2852", + "2896", + "29883", + "3055", + "3105", + "3106", + "3123", + "3133", + "3134", + "3135", + "325", + "335", + "3428", + "345611", + "3479", + "348", + "3565", + "3586", + "3587", + "3596", + "3630", + "3805", + "3821", + "3824", + "383", + "387837", + "3965", + "401397", + "405", + "4067", + "409", + "4210", + "4277", + "4598", + "4938", + "4940", + "5045", + "5068", + "5094", + "51441", + "51738", + "5272", + "5335", + "54209", + "54625", + "5465", + "5468", + "5495", + "55527", + "55646", + "55737", + "5580", + "55829", + "5598", + "5624", + "56339", + "56547", + "5734", + "5740", + "57506", + "5771", + "5777", + "5788", + "58509", + "60343", + "6095", + "6223", + "6318", + "634", + "64116", + "64771", + "6714", + "6737", + "6773", + "6774", + "6850", + "6895", + "7010", + "7040", + "708", + "710", + "7114", + "7130", + "7132", + "7525", + "7534", + "79102", + "79132", + "79594", + "79651", + "80263", + "8087", + "83737", + "84166", + "84243", + "84640", + "8815", + "89790", + "90268", + "90355", + "90865", + "9111", + "9140", + "91662", + "9212", + "9258", + "9314", + "9470", + "9474", + "9636", + "9958" + ] + }, + "GO:0051656": { + "Name": "establishment of organelle localization", + "Task": "GO", + "Genes": [ + "10013", + "10015", + "10016", + "10053", + "10113", + "10128", + "10403", + "10464", + "10494", + "10524", + "10540", + "1058", + "1062", + "1063", + "10652", + "10726", + "10948", + "10959", + "10972", + "10987", + "11004", + "11127", + "1113", + "11235", + "113130", + "117194", + "118426", + "1201", + "126353", + "128866", + "137886", + "1453", + "147841", + "151648", + "152185", + "157769", + "1639", + "1739", + "1778", + "1780", + "1861", + "220134", + "2205", + "221150", + "22919", + "22920", + "23122", + "23172", + "23212", + "23224", + "23332", + "23557", + "23636", + "256364", + "25777", + "25978", + "26258", + "2669", + "2697", + "27183", + "27243", + "27436", + "283489", + "29058", + "29899", + "3064", + "3091", + "3281", + "348235", + "3688", + "3799", + "3815", + "3833", + "3834", + "3835", + "3837", + "387695", + "388552", + "3985", + "4033", + "4085", + "4134", + "4137", + "4644", + "4747", + "4926", + "4935", + "4976", + "5048", + "51068", + "51112", + "5119", + "51203", + "51510", + "51652", + "5195", + "5293", + "5294", + "5310", + "5347", + "5413", + "54732", + "54820", + "54874", + "54908", + "54984", + "55062", + "55143", + "55165", + "55166", + "55201", + "55288", + "553115", + "5537", + "55435", + "55717", + "55773", + "55968", + "56245", + "56907", + "57082", + "57132", + "57405", + "57584", + "5861", + "5870", + "5873", + "5901", + "5925", + "59349", + "6209", + "636", + "63915", + "64149", + "6795", + "7016", + "7248", + "7314", + "7430", + "7514", + "7534", + "7756", + "79003", + "79443", + "79567", + "79643", + "79998", + "80179", + "80208", + "81", + "81610", + "81620", + "81929", + "81930", + "83540", + "83930", + "84080", + "8409", + "84501", + "8452", + "84643", + "84722", + "84984", + "8499", + "8517", + "8678", + "8697", + "8729", + "8766", + "8773", + "8841", + "891", + "89941", + "91272", + "91782", + "9183", + "9184", + "9212", + "92421", + "9321", + "9342", + "9368", + "9371", + "9525", + "9928" + ] + }, + "GO:0051056": { + "Name": "regulation of small GTPase mediated signal transduction", + "Task": "GO", + "Genes": [ + "10125", + "10144", + "10276", + "10395", + "10451", + "10617", + "10672", + "10928", + "11214", + "1123", + "11235", + "1124", + "11337", + "115557", + "115727", + "116985", + "117289", + "121512", + "128272", + "1452", + "152273", + "153090", + "153478", + "1794", + "1795", + "1894", + "19", + "199731", + "201163", + "202243", + "2056", + "2150", + "2203", + "221002", + "221178", + "221472", + "221938", + "2245", + "2255", + "22899", + "2305", + "23075", + "23092", + "23189", + "23229", + "23263", + "23268", + "23365", + "23380", + "23526", + "23607", + "23616", + "23779", + "25", + "253980", + "257106", + "25791", + "25894", + "25959", + "26030", + "26230", + "2828", + "285282", + "29", + "2909", + "29127", + "29984", + "335", + "343578", + "345", + "3479", + "348", + "3685", + "382", + "392", + "3925", + "393", + "394", + "395", + "396", + "397", + "408", + "4168", + "4233", + "4649", + "4650", + "4653", + "4851", + "4853", + "4914", + "4983", + "50619", + "50649", + "50650", + "50848", + "51291", + "51306", + "51571", + "5291", + "5294", + "54509", + "54869", + "54922", + "55160", + "55200", + "55701", + "55843", + "57449", + "57480", + "57493", + "57514", + "57569", + "57580", + "57584", + "57636", + "57679", + "57706", + "58480", + "58504", + "5879", + "5894", + "5923", + "5924", + "6091", + "613", + "64283", + "6453", + "64787", + "64926", + "65078", + "6714", + "7010", + "7074", + "7126", + "7204", + "7409", + "7410", + "79109", + "79658", + "79822", + "7984", + "80243", + "8036", + "80728", + "81704", + "8216", + "84033", + "84078", + "84144", + "8452", + "8473", + "84952", + "84986", + "8567", + "8829", + "8859", + "89839", + "89846", + "89890", + "8997", + "90627", + "9138", + "9181", + "9290", + "9353", + "93663", + "9411", + "94134", + "9639", + "9649", + "9743", + "9750", + "9824", + "9826", + "9828", + "9901", + "9909", + "9912", + "9927", + "9928", + "9938" + ] + }, + "GO:0002757": { + "Name": "immune response-activating signaling pathway", + "Task": "GO", + "Genes": [ + "10392", + "10451", + "10603", + "10616", + "10657", + "10892", + "11027", + "11119", + "11213", + "11331", + "114548", + "114609", + "1147", + "115004", + "121665", + "1378", + "1387", + "1445", + "144811", + "146722", + "148022", + "1493", + "1520", + "1540", + "163486", + "171389", + "196051", + "1967", + "199920", + "2033", + "2219", + "2268", + "22841", + "22861", + "22900", + "23149", + "23180", + "23586", + "23643", + "25", + "2533", + "2534", + "25800", + "25865", + "259197", + "26191", + "26253", + "27040", + "2822", + "2867", + "29108", + "29110", + "29126", + "29760", + "3055", + "3071", + "30968", + "3105", + "3115", + "3119", + "3123", + "331", + "3329", + "340061", + "345611", + "353376", + "3551", + "3635", + "3654", + "3656", + "3661", + "3665", + "3822", + "3824", + "3843", + "3929", + "3937", + "3965", + "3984", + "4067", + "4153", + "4277", + "4332", + "4773", + "4792", + "4938", + "4940", + "5058", + "5062", + "5063", + "51135", + "51295", + "51311", + "51324", + "5142", + "51435", + "5144", + "5245", + "5290", + "5293", + "5335", + "5336", + "5338", + "54106", + "55024", + "55072", + "55765", + "5580", + "5581", + "5608", + "57402", + "5747", + "57506", + "57724", + "5788", + "5795", + "581", + "59338", + "596", + "5970", + "640", + "64127", + "64135", + "6714", + "6850", + "6885", + "695", + "7006", + "7096", + "7097", + "7098", + "7099", + "7100", + "7128", + "7187", + "7189", + "719", + "728", + "7305", + "7334", + "7409", + "7410", + "7462", + "7525", + "7531", + "7535", + "7706", + "79132", + "7917", + "79931", + "80149", + "80196", + "80216", + "80342", + "81035", + "81570", + "81622", + "83737", + "8398", + "84174", + "84282", + "8631", + "8678", + "8767", + "8890", + "8891", + "8892", + "8893", + "8915", + "90268", + "925", + "926", + "92610", + "930", + "931", + "952", + "9564", + "9865" + ] + }, + "GO:0009611": { + "Name": "response to wounding", + "Task": "GO", + "Genes": [ + "10451", + "10481", + "10630", + "10894", + "11235", + "116844", + "1230", + "1281", + "128866", + "1289", + "131566", + "135", + "139189", + "140", + "1432", + "146206", + "146760", + "1490", + "1511", + "1524", + "1606", + "1607", + "1608", + "160851", + "1609", + "177", + "2064", + "2069", + "2147", + "2149", + "2151", + "2152", + "2155", + "2157", + "2158", + "2159", + "2160", + "2161", + "2162", + "2165", + "2192", + "221037", + "221477", + "2243", + "2244", + "2246", + "2247", + "2252", + "2255", + "2266", + "22846", + "22915", + "23098", + "2316", + "23671", + "2596", + "25978", + "2623", + "2624", + "2677", + "27243", + "2768", + "2776", + "2778", + "2811", + "2812", + "2814", + "2815", + "3084", + "3162", + "3172", + "3273", + "3371", + "3479", + "3491", + "349667", + "350", + "3569", + "3605", + "3624", + "3630", + "3673", + "3690", + "3691", + "3705", + "375056", + "3791", + "388552", + "3936", + "3998", + "4088", + "4321", + "4627", + "5051", + "5058", + "5068", + "50808", + "5119", + "51510", + "5154", + "5155", + "5156", + "51652", + "5196", + "5290", + "5291", + "5294", + "5327", + "5336", + "5340", + "54209", + "54566", + "5530", + "5601", + "57132", + "57175", + "57413", + "57591", + "57834", + "5864", + "5879", + "5894", + "5912", + "634", + "64805", + "6609", + "667", + "6707", + "6714", + "6722", + "677", + "678", + "6790", + "6812", + "6814", + "6850", + "7040", + "7046", + "7056", + "7098", + "7124", + "725", + "7409", + "7410", + "7450", + "7454", + "7474", + "7476", + "7538", + "780", + "79001", + "79567", + "79643", + "8324", + "83481", + "8525", + "8526", + "8527", + "8529", + "8613", + "87", + "8761", + "9002", + "90070", + "9076", + "9162", + "91782", + "92421", + "94", + "94121", + "948", + "949", + "953", + "959", + "960", + "966", + "977" + ] + }, + "GO:0051091": { + "Name": "positive regulation of DNA-binding transcription factor activity", + "Task": "GO", + "Genes": [ + "10014", + "10206", + "10346", + "10392", + "10475", + "10519", + "1054", + "10542", + "10616", + "10891", + "10892", + "10935", + "10987", + "11035", + "11043", + "11074", + "11213", + "11315", + "11331", + "114548", + "114609", + "1147", + "1191", + "121268", + "1386", + "150372", + "1649", + "1660", + "177", + "183", + "1856", + "1896", + "1906", + "2033", + "207", + "2099", + "2100", + "219790", + "2241", + "22954", + "23085", + "23586", + "238", + "2535", + "25865", + "28232", + "283629", + "28984", + "29108", + "306", + "3169", + "3297", + "3303", + "3304", + "338382", + "340061", + "351", + "3551", + "3553", + "3569", + "3586", + "3606", + "3630", + "3654", + "3656", + "367", + "3728", + "3815", + "3965", + "4040", + "4057", + "4345", + "4591", + "4760", + "4808", + "4838", + "4869", + "4914", + "4919", + "4921", + "4922", + "4985", + "49860", + "51341", + "53840", + "54101", + "5468", + "5478", + "55072", + "55182", + "55223", + "55367", + "5583", + "5584", + "55859", + "5587", + "5588", + "55906", + "5610", + "5687", + "57118", + "5728", + "57506", + "58484", + "5970", + "5987", + "60401", + "6188", + "6279", + "6280", + "6283", + "64127", + "64170", + "64320", + "650", + "6597", + "6598", + "65992", + "6722", + "6737", + "6788", + "6872", + "6929", + "695", + "7027", + "7037", + "7097", + "7099", + "7124", + "7158", + "7185", + "7186", + "7188", + "7189", + "7334", + "7335", + "7472", + "7474", + "7706", + "7726", + "79092", + "7984", + "815", + "81603", + "825", + "8321", + "8322", + "84159", + "84433", + "84851", + "8517", + "85363", + "8600", + "8613", + "8717", + "8737", + "8767", + "8792", + "8807", + "8809", + "8877", + "8896", + "8915", + "8986", + "89870", + "9175", + "9181", + "92140", + "9252", + "92565", + "93649", + "9447", + "948", + "958", + "959", + "9641", + "9759", + "9830" + ] + }, + "GO:1903037": { + "Name": "regulation of leukocyte cell-cell adhesion", + "Task": "GO", + "Genes": [ + "100133941", + "10148", + "10288", + "10457", + "10524", + "10690", + "10725", + "10808", + "10859", + "11006", + "11126", + "11146", + "11148", + "11221", + "11314", + "126259", + "1326", + "1378", + "1445", + "149233", + "1493", + "1511", + "1604", + "177", + "1803", + "1845", + "199", + "201633", + "207", + "2113", + "22914", + "2309", + "23149", + "2319", + "23240", + "23308", + "2475", + "2526", + "2529", + "2534", + "259307", + "26191", + "282618", + "29108", + "29126", + "301", + "3037", + "3071", + "3077", + "30835", + "3105", + "3109", + "3113", + "3115", + "3122", + "3123", + "3133", + "3135", + "3146", + "3329", + "3440", + "3456", + "3458", + "3479", + "3481", + "3485", + "3553", + "3558", + "3565", + "3569", + "3572", + "3592", + "3593", + "3594", + "3606", + "3654", + "3717", + "375056", + "383", + "387", + "387597", + "3952", + "3965", + "399", + "4067", + "4179", + "4192", + "441864", + "445", + "4690", + "4860", + "50943", + "51561", + "5170", + "5290", + "5465", + "54900", + "55423", + "55626", + "5573", + "56477", + "57045", + "5777", + "5781", + "57829", + "59067", + "5914", + "5970", + "604", + "6046", + "6188", + "6366", + "6370", + "6375", + "6385", + "6387", + "64115", + "6441", + "64410", + "6484", + "64926", + "65125", + "652", + "6541", + "6714", + "7037", + "7048", + "7124", + "7189", + "7297", + "7409", + "7412", + "7494", + "7525", + "7535", + "79576", + "79679", + "8013", + "80380", + "80381", + "81704", + "8440", + "84433", + "84524", + "84830", + "84868", + "857", + "8600", + "8631", + "8651", + "8740", + "8764", + "9092", + "912", + "916", + "923", + "9231", + "9314", + "940", + "959", + "960", + "961", + "970", + "975", + "9750" + ] + }, + "GO:0007059": { + "Name": "chromosome segregation", + "Task": "GO", + "Genes": [ + "10015", + "10051", + "10274", + "10403", + "10464", + "10540", + "10592", + "1060", + "10609", + "10615", + "1062", + "1063", + "10726", + "10734", + "10735", + "10783", + "11004", + "11011", + "1104", + "11130", + "11200", + "11243", + "113130", + "115106", + "126353", + "128866", + "129563", + "140609", + "140710", + "1453", + "147841", + "148479", + "151648", + "152185", + "158983", + "1642", + "1654", + "200942", + "2068", + "220134", + "221150", + "22919", + "22974", + "23063", + "2316", + "23172", + "23212", + "23255", + "23310", + "23354", + "23397", + "23636", + "24137", + "256364", + "25879", + "25978", + "26065", + "26112", + "2669", + "26993", + "27183", + "27243", + "27436", + "2801", + "283489", + "285643", + "28989", + "29098", + "29127", + "29128", + "29893", + "317761", + "338657", + "347688", + "348235", + "3619", + "3796", + "3832", + "3833", + "3834", + "3835", + "3837", + "387", + "387103", + "387893", + "4751", + "4926", + "49856", + "51112", + "5119", + "51203", + "51510", + "51647", + "51652", + "5347", + "54617", + "54627", + "54801", + "54908", + "54930", + "54984", + "55125", + "55142", + "55143", + "55165", + "55166", + "5518", + "55201", + "55355", + "55559", + "55732", + "55755", + "56271", + "56647", + "56916", + "57082", + "57132", + "5728", + "57405", + "57519", + "5901", + "5925", + "6188", + "64151", + "672", + "6732", + "6795", + "7153", + "7156", + "729440", + "7756", + "79003", + "79441", + "79643", + "79884", + "79998", + "80152", + "8086", + "81565", + "81610", + "81620", + "81929", + "81930", + "8243", + "83540", + "83852", + "84057", + "8452", + "84643", + "84722", + "84861", + "8658", + "8678", + "8697", + "8766", + "8780", + "8841", + "891", + "90417", + "9055", + "9113", + "9126", + "91272", + "91782", + "9183", + "9184", + "9212", + "92421", + "93323", + "93426", + "9371", + "9400", + "9493", + "9525", + "9611", + "9639", + "9700", + "9918", + "9928" + ] + }, + "GO:0019221": { + "Name": "cytokine-mediated signaling pathway", + "Task": "GO", + "Genes": [ + "10019", + "10344", + "10413", + "10456", + "1050", + "10670", + "10758", + "11213", + "112744", + "1230", + "1270", + "1271", + "133396", + "1436", + "1437", + "1439", + "1440", + "1460", + "146433", + "149951", + "1511", + "171392", + "1907", + "1958", + "1984", + "2056", + "2069", + "207", + "2185", + "2241", + "2309", + "2322", + "23236", + "23765", + "25942", + "260434", + "26060", + "2688", + "27347", + "2859", + "29108", + "3055", + "3059", + "329", + "330", + "3429", + "3440", + "3454", + "3455", + "3456", + "3458", + "3459", + "3460", + "3551", + "3552", + "3553", + "3554", + "3556", + "3558", + "3559", + "3560", + "3561", + "3562", + "3563", + "3565", + "3566", + "3567", + "3568", + "3569", + "3570", + "3572", + "3574", + "3579", + "3581", + "3589", + "3590", + "3592", + "3593", + "3594", + "3595", + "3600", + "3601", + "3605", + "3606", + "3611", + "3627", + "3654", + "3656", + "3663", + "3667", + "3716", + "3717", + "3718", + "3815", + "3953", + "3977", + "3987", + "4067", + "440712", + "4792", + "4939", + "5008", + "5034", + "50506", + "51094", + "51135", + "5155", + "5196", + "5295", + "53905", + "54209", + "54472", + "5566", + "5595", + "5617", + "56832", + "57007", + "5777", + "5781", + "5795", + "5894", + "5970", + "6347", + "6373", + "6376", + "6387", + "6654", + "6672", + "6688", + "6714", + "6772", + "6773", + "6774", + "6775", + "6776", + "6778", + "6885", + "7066", + "7114", + "7124", + "7132", + "7133", + "7157", + "7186", + "7187", + "7189", + "7297", + "7852", + "79092", + "79602", + "81", + "83483", + "84522", + "84817", + "84818", + "8600", + "867", + "8717", + "8737", + "8792", + "8807", + "8809", + "8986", + "9173", + "9180", + "920", + "9252", + "9253", + "9413", + "9447", + "9705", + "9759", + "9943" + ] + }, + "GO:0040011": { + "Name": "locomotion", + "Task": "GO", + "Genes": [ + "10344", + "10563", + "10803", + "10850", + "10928", + "1113", + "11151", + "11251", + "120425", + "1230", + "1232", + "1233", + "1234", + "1235", + "1236", + "1237", + "1240", + "140596", + "1432", + "1511", + "1524", + "1525", + "1667", + "1672", + "1673", + "1839", + "185", + "1880", + "1902", + "1906", + "1907", + "1908", + "1910", + "1960", + "1969", + "200576", + "2047", + "2247", + "2252", + "2255", + "2321", + "23396", + "2350", + "23513", + "2358", + "240", + "2549", + "2621", + "27237", + "2829", + "2833", + "284", + "2919", + "2920", + "301", + "3071", + "30817", + "3082", + "3148", + "3164", + "3219", + "3265", + "335", + "348110", + "3569", + "3570", + "3576", + "3577", + "3579", + "3586", + "3627", + "3685", + "3689", + "3690", + "3815", + "387", + "387695", + "3897", + "391", + "3958", + "409", + "4192", + "4233", + "4283", + "4814", + "4856", + "503618", + "51119", + "51176", + "51192", + "5154", + "5155", + "51554", + "5156", + "5159", + "5196", + "5291", + "5293", + "5294", + "5328", + "5329", + "5337", + "5365", + "5478", + "5479", + "5580", + "5588", + "5594", + "5604", + "56413", + "56477", + "566", + "57175", + "5795", + "5800", + "5898", + "6036", + "60675", + "6091", + "6223", + "6279", + "6280", + "6283", + "6288", + "6346", + "6347", + "6348", + "6354", + "6355", + "6356", + "6357", + "6359", + "6360", + "6361", + "6362", + "6363", + "6364", + "6366", + "6367", + "6368", + "6369", + "6370", + "6372", + "6373", + "6374", + "6375", + "6376", + "6387", + "63916", + "6441", + "6558", + "6585", + "6586", + "6693", + "682", + "6850", + "692094", + "727", + "728", + "728358", + "7852", + "7857", + "7869", + "796", + "8061", + "8394", + "8600", + "8729", + "8829", + "9034", + "9353", + "9547", + "9564", + "9732" + ] + }, + "GO:0000209": { + "Name": "protein polyubiquitination", + "Task": "GO", + "Genes": [ + "10075", + "10193", + "10210", + "10273", + "10299", + "10346", + "10393", + "10425", + "10477", + "10612", + "10616", + "10758", + "11065", + "11074", + "1161", + "117584", + "117854", + "118424", + "138065", + "149041", + "149603", + "1499", + "151636", + "1643", + "165918", + "200933", + "201292", + "220441", + "220972", + "22954", + "22978", + "23077", + "23194", + "23220", + "23291", + "23327", + "23328", + "23532", + "23608", + "23623", + "23759", + "246184", + "257218", + "25793", + "25847", + "26001", + "26145", + "26249", + "26268", + "26272", + "267", + "27252", + "27338", + "27339", + "29089", + "29882", + "29945", + "3093", + "329", + "331", + "3429", + "378884", + "4012", + "4193", + "5071", + "51283", + "51343", + "51366", + "51433", + "51434", + "51514", + "51529", + "51619", + "5192", + "54476", + "54542", + "54546", + "54551", + "54708", + "54926", + "54941", + "55016", + "55072", + "55223", + "55284", + "55626", + "56254", + "57154", + "57162", + "57531", + "57542", + "57674", + "580", + "596", + "5987", + "6048", + "6049", + "63891", + "63893", + "642", + "64320", + "64682", + "64839", + "6500", + "6502", + "672", + "6737", + "6872", + "7064", + "7128", + "7174", + "7186", + "7189", + "7267", + "7319", + "7320", + "7321", + "7322", + "7323", + "7324", + "7325", + "7326", + "7327", + "7328", + "7332", + "7334", + "7335", + "7336", + "7337", + "7706", + "7726", + "79016", + "79102", + "79594", + "80196", + "80263", + "80351", + "80829", + "81545", + "81603", + "81790", + "81847", + "81858", + "83737", + "8405", + "84078", + "84219", + "84231", + "84282", + "84447", + "8452", + "8454", + "84675", + "85363", + "865", + "8658", + "8697", + "8881", + "8945", + "89890", + "90025", + "9025", + "90379", + "90678", + "90850", + "91445", + "91947", + "92305", + "92912", + "9320", + "9520", + "9604", + "9666", + "9690", + "9870", + "996", + "997", + "9978" + ] + }, + "GO:0006935": { + "Name": "chemotaxis", + "Task": "GO", + "Genes": [ + "10344", + "10563", + "10803", + "10850", + "10928", + "1113", + "11151", + "11251", + "120425", + "1230", + "1232", + "1233", + "1234", + "1235", + "1236", + "1237", + "1240", + "140596", + "1432", + "1511", + "1524", + "1525", + "1667", + "1672", + "1673", + "1839", + "185", + "1880", + "1902", + "1906", + "1907", + "1908", + "1910", + "1960", + "1969", + "200576", + "2047", + "2247", + "2252", + "2255", + "2321", + "23396", + "2350", + "23513", + "2358", + "240", + "2549", + "2621", + "27237", + "2829", + "2833", + "284", + "2919", + "2920", + "301", + "3071", + "30817", + "3082", + "3148", + "3164", + "3219", + "3265", + "335", + "3569", + "3570", + "3576", + "3577", + "3579", + "3586", + "3627", + "3685", + "3689", + "3690", + "3815", + "387", + "387695", + "3897", + "391", + "3958", + "409", + "4192", + "4233", + "4283", + "4814", + "4856", + "503618", + "51119", + "51176", + "51192", + "5154", + "5155", + "51554", + "5156", + "5159", + "5196", + "5291", + "5293", + "5294", + "5328", + "5329", + "5337", + "5365", + "5478", + "5479", + "5580", + "5588", + "5594", + "5604", + "56413", + "56477", + "566", + "57175", + "5795", + "5800", + "5898", + "6036", + "60675", + "6091", + "6223", + "6279", + "6280", + "6283", + "6288", + "6346", + "6347", + "6348", + "6354", + "6355", + "6356", + "6357", + "6359", + "6360", + "6361", + "6362", + "6363", + "6364", + "6366", + "6367", + "6368", + "6369", + "6370", + "6372", + "6373", + "6374", + "6375", + "6376", + "6387", + "63916", + "6441", + "6558", + "6585", + "6586", + "6693", + "682", + "6850", + "692094", + "727", + "728", + "728358", + "7852", + "7857", + "7869", + "796", + "8061", + "8394", + "8600", + "8729", + "8829", + "9034", + "9353", + "9547", + "9564", + "9732" + ] + }, + "GO:0042330": { + "Name": "taxis", + "Task": "GO", + "Genes": [ + "10344", + "10563", + "10803", + "10850", + "10928", + "1113", + "11151", + "11251", + "120425", + "1230", + "1232", + "1233", + "1234", + "1235", + "1236", + "1237", + "1240", + "140596", + "1432", + "1511", + "1524", + "1525", + "1667", + "1672", + "1673", + "1839", + "185", + "1880", + "1902", + "1906", + "1907", + "1908", + "1910", + "1960", + "1969", + "200576", + "2047", + "2247", + "2252", + "2255", + "2321", + "23396", + "2350", + "23513", + "2358", + "240", + "2549", + "2621", + "27237", + "2829", + "2833", + "284", + "2919", + "2920", + "301", + "3071", + "30817", + "3082", + "3148", + "3164", + "3219", + "3265", + "335", + "3569", + "3570", + "3576", + "3577", + "3579", + "3586", + "3627", + "3685", + "3689", + "3690", + "3815", + "387", + "387695", + "3897", + "391", + "3958", + "409", + "4192", + "4233", + "4283", + "4814", + "4856", + "503618", + "51119", + "51176", + "51192", + "5154", + "5155", + "51554", + "5156", + "5159", + "5196", + "5291", + "5293", + "5294", + "5328", + "5329", + "5337", + "5365", + "5478", + "5479", + "5580", + "5588", + "5594", + "5604", + "56413", + "56477", + "566", + "57175", + "5795", + "5800", + "5898", + "6036", + "60675", + "6091", + "6223", + "6279", + "6280", + "6283", + "6288", + "6346", + "6347", + "6348", + "6354", + "6355", + "6356", + "6357", + "6359", + "6360", + "6361", + "6362", + "6363", + "6364", + "6366", + "6367", + "6368", + "6369", + "6370", + "6372", + "6373", + "6374", + "6375", + "6376", + "6387", + "63916", + "6441", + "6558", + "6585", + "6586", + "6693", + "682", + "6850", + "692094", + "727", + "728", + "728358", + "7852", + "7857", + "7869", + "796", + "8061", + "8394", + "8600", + "8729", + "8829", + "9034", + "9353", + "9547", + "9564", + "9732" + ] + }, + "GO:0050867": { + "Name": "positive regulation of cell activation", + "Task": "GO", + "Genes": [ + "100133941", + "10148", + "10288", + "10451", + "10459", + "10524", + "10666", + "10673", + "10808", + "10859", + "11006", + "11027", + "11126", + "11148", + "11221", + "112441434", + "115352", + "124912", + "126259", + "1326", + "1378", + "1445", + "149233", + "149840", + "1604", + "177", + "1803", + "1880", + "199", + "2048", + "207", + "2255", + "22914", + "2309", + "23149", + "2319", + "23308", + "2475", + "2534", + "259307", + "2621", + "2811", + "2812", + "2814", + "2815", + "29108", + "29126", + "30011", + "301", + "3071", + "30835", + "3105", + "3109", + "3113", + "3115", + "3122", + "3123", + "3133", + "3135", + "3146", + "3329", + "3458", + "3479", + "3481", + "3485", + "353514", + "3553", + "3558", + "3565", + "3569", + "3572", + "3586", + "3592", + "3593", + "3594", + "3606", + "3717", + "3735", + "375033", + "3929", + "3952", + "3965", + "399", + "403313", + "4067", + "4179", + "4282", + "4690", + "4773", + "4860", + "50943", + "51293", + "51561", + "5170", + "5290", + "5321", + "54106", + "54209", + "54537", + "55423", + "55626", + "558", + "5777", + "5781", + "57829", + "5788", + "5819", + "59067", + "5914", + "596", + "604", + "6046", + "6188", + "6195", + "6348", + "6375", + "63925", + "64115", + "64127", + "64410", + "64581", + "64926", + "6541", + "6688", + "6714", + "6850", + "695", + "7037", + "7040", + "7048", + "7057", + "7158", + "7297", + "7409", + "7412", + "7474", + "7494", + "7525", + "7535", + "79576", + "79987", + "80381", + "81704", + "8440", + "84433", + "84630", + "85480", + "857", + "8600", + "8651", + "8740", + "8741", + "8764", + "90865", + "9092", + "912", + "916", + "923", + "940", + "952", + "959", + "961", + "970", + "972", + "975" + ] + }, + "GO:0032956": { + "Name": "regulation of actin cytoskeleton organization", + "Task": "GO", + "Genes": [ + "10152", + "10163", + "10174", + "10344", + "10391", + "10395", + "10411", + "10435", + "10456", + "10458", + "10565", + "1073", + "10787", + "10788", + "10979", + "11151", + "11170", + "11211", + "11344", + "116985", + "118", + "119", + "1236", + "123720", + "126820", + "128272", + "136319", + "1398", + "1440", + "146206", + "148170", + "1490", + "1496", + "1613", + "1856", + "1857", + "1906", + "1946", + "2017", + "203228", + "2039", + "2042", + "2150", + "2185", + "2241", + "22843", + "22998", + "23122", + "23189", + "23191", + "23332", + "23370", + "23433", + "23500", + "23616", + "23671", + "24142", + "2475", + "25", + "253260", + "253725", + "25802", + "27", + "27302", + "2824", + "28984", + "29109", + "2934", + "3055", + "3059", + "3071", + "3265", + "3273", + "335", + "348110", + "374872", + "382", + "387", + "389", + "3925", + "395", + "3984", + "4233", + "440335", + "442721", + "4653", + "4690", + "4771", + "5058", + "5062", + "5063", + "5071", + "50848", + "51466", + "51474", + "5154", + "5156", + "51571", + "51763", + "5216", + "5217", + "5341", + "5345", + "54959", + "55160", + "55604", + "55616", + "55704", + "5580", + "55845", + "55971", + "57026", + "57175", + "57482", + "5756", + "57822", + "5829", + "5879", + "5898", + "5921", + "5962", + "6093", + "6281", + "6356", + "6366", + "6369", + "6376", + "6387", + "64223", + "64857", + "6548", + "6624", + "683", + "7016", + "7043", + "71", + "7114", + "7226", + "7248", + "7408", + "7429", + "7430", + "7454", + "7481", + "7840", + "79541", + "7984", + "8440", + "8477", + "84952", + "8500", + "85415", + "85477", + "8558", + "859", + "88", + "8829", + "8936", + "90102", + "9026", + "9087", + "90952", + "9113", + "91663", + "9353", + "93663", + "9475", + "9639", + "9647", + "9873", + "9948" + ] + }, + "GO:0006886": { + "Name": "intracellular protein transport", + "Task": "GO", + "Genes": [ + "10013", + "100133941", + "10016", + "10113", + "10204", + "10569", + "10938", + "10952", + "10959", + "10972", + "11020", + "11097", + "11196", + "11231", + "11276", + "11331", + "1191", + "126549", + "130617", + "144165", + "157769", + "158234", + "1678", + "1871", + "1939", + "2017", + "207", + "23039", + "23161", + "23163", + "23197", + "23214", + "23511", + "23534", + "23787", + "23788", + "25782", + "25813", + "25999", + "26060", + "26088", + "26154", + "26517", + "26519", + "26520", + "26521", + "26985", + "27183", + "27236", + "27351", + "29098", + "29886", + "29927", + "29928", + "3308", + "3309", + "3312", + "3315", + "3320", + "345611", + "372", + "3836", + "3837", + "3838", + "3840", + "3842", + "3843", + "3920", + "3998", + "4321", + "440738", + "4591", + "4734", + "481", + "4869", + "4905", + "51009", + "51079", + "51172", + "51429", + "51501", + "51762", + "5189", + "5190", + "5191", + "5192", + "5194", + "5195", + "54732", + "5476", + "550", + "55027", + "55122", + "5514", + "55198", + "55437", + "55666", + "55670", + "55705", + "55717", + "55737", + "55750", + "55829", + "56478", + "56993", + "57154", + "57510", + "5824", + "5828", + "5830", + "58533", + "5901", + "5903", + "602", + "6103", + "63894", + "63932", + "63971", + "6400", + "64089", + "64149", + "64328", + "6642", + "6653", + "6774", + "6788", + "6789", + "6836", + "6850", + "7040", + "7095", + "7175", + "7184", + "7353", + "7415", + "7514", + "754", + "7879", + "79139", + "79158", + "79711", + "79971", + "8021", + "8031", + "811", + "81502", + "81609", + "8239", + "84268", + "84447", + "8504", + "8878", + "8943", + "90580", + "9146", + "9179", + "91949", + "92305", + "92335", + "9409", + "950", + "9531", + "9648", + "9670", + "9709", + "9765", + "9847", + "9874", + "9895" + ] + }, + "GO:0034330": { + "Name": "cell junction organization", + "Task": "GO", + "Genes": [ + "1003", + "100506658", + "10052", + "1009", + "1020", + "10243", + "10266", + "10804", + "10979", + "11187", + "1134", + "11346", + "1140", + "114798", + "120892", + "123720", + "125111", + "1308", + "1365", + "143098", + "143162", + "1436", + "144100", + "1499", + "1501", + "1524", + "153562", + "1639", + "1739", + "1742", + "1829", + "1855", + "1894", + "2149", + "2150", + "22829", + "22854", + "22865", + "22871", + "22943", + "23237", + "23380", + "23396", + "23616", + "2534", + "2554", + "2561", + "2562", + "2566", + "26060", + "26167", + "2697", + "2701", + "2702", + "2705", + "2706", + "2895", + "29984", + "348", + "351", + "3655", + "3691", + "3728", + "375790", + "3801", + "387", + "389", + "3897", + "3915", + "4088", + "4092", + "4137", + "43", + "4301", + "4593", + "4649", + "4868", + "4897", + "4983", + "5010", + "5062", + "5063", + "51201", + "5175", + "5318", + "5339", + "54413", + "5457", + "55243", + "55765", + "5578", + "5584", + "5586", + "55901", + "55920", + "56122", + "56123", + "56125", + "56126", + "56127", + "56130", + "56131", + "56132", + "56133", + "5621", + "5657", + "5663", + "57126", + "57502", + "57555", + "57662", + "57689", + "57717", + "5789", + "5792", + "5796", + "5802", + "5872", + "5881", + "60", + "613", + "627", + "6376", + "653464", + "6591", + "6624", + "6710", + "6714", + "6900", + "7040", + "7042", + "7043", + "7082", + "7094", + "71", + "7122", + "7414", + "7474", + "7476", + "7855", + "79834", + "79977", + "79983", + "80725", + "80728", + "81671", + "829", + "831", + "8321", + "83660", + "83700", + "8394", + "84189", + "84612", + "84631", + "8506", + "85302", + "87", + "88", + "89", + "8934", + "89780", + "9076", + "90952", + "91663", + "91862", + "9344", + "9722", + "9948", + "999" + ] + }, + "GO:0002697": { + "Name": "regulation of immune effector process", + "Task": "GO", + "Genes": [ + "100507436", + "10125", + "10459", + "10584", + "10666", + "10859", + "10892", + "11006", + "11126", + "112441434", + "11314", + "11326", + "11331", + "114836", + "115352", + "1178", + "117854", + "135250", + "1378", + "1379", + "144811", + "146850", + "149840", + "1604", + "163486", + "164", + "177", + "196", + "2", + "201294", + "2048", + "2150", + "2213", + "2219", + "2220", + "2242", + "22914", + "23705", + "246778", + "25818", + "259197", + "259307", + "26057", + "2821", + "282618", + "2896", + "301", + "3071", + "3075", + "3077", + "30817", + "3105", + "3106", + "3109", + "3122", + "3123", + "3133", + "3134", + "3135", + "3140", + "3329", + "335", + "336", + "3383", + "3440", + "3456", + "3458", + "353091", + "354", + "3553", + "3554", + "3558", + "3565", + "3569", + "3586", + "3592", + "3593", + "3606", + "3630", + "3663", + "3684", + "3689", + "377630", + "3805", + "3815", + "3821", + "3822", + "3824", + "383", + "387837", + "3916", + "3952", + "3965", + "399687", + "409", + "4153", + "4179", + "4843", + "50487", + "50943", + "51744", + "5225", + "5245", + "5272", + "5322", + "54106", + "54537", + "54795", + "55061", + "55601", + "55765", + "56253", + "5650", + "567", + "57126", + "5788", + "5817", + "5819", + "59067", + "5914", + "6046", + "6223", + "6318", + "634", + "6375", + "64127", + "6810", + "684", + "6845", + "6885", + "695", + "7037", + "7040", + "7042", + "7043", + "708", + "710", + "7124", + "7158", + "7186", + "7189", + "722", + "725", + "7454", + "7474", + "7494", + "7855", + "78989", + "79004", + "814", + "8140", + "81545", + "8417", + "84868", + "8547", + "8673", + "8723", + "8741", + "8809", + "8832", + "9341", + "9390", + "941", + "9437", + "966", + "975", + "9865" + ] + }, + "GO:0070372": { + "Name": "regulation of ERK1 and ERK2 cascade", + "Task": "GO", + "Genes": [ + "10048", + "10125", + "10253", + "10268", + "10318", + "10457", + "10979", + "1116", + "11331", + "114609", + "116", + "1230", + "1236", + "1399", + "1490", + "152007", + "152110", + "153090", + "1652", + "168667", + "1739", + "177", + "1845", + "1846", + "1848", + "1880", + "1956", + "195827", + "1969", + "2043", + "2045", + "2047", + "2064", + "2066", + "2150", + "2185", + "2192", + "222166", + "2243", + "2244", + "2246", + "2247", + "2249", + "2261", + "2264", + "2266", + "2324", + "2335", + "2358", + "23779", + "246", + "2492", + "25778", + "26191", + "2621", + "26291", + "2633", + "2651", + "284", + "284340", + "285016", + "2852", + "285315", + "29108", + "2950", + "3084", + "3123", + "3146", + "3265", + "3356", + "3357", + "3358", + "3383", + "341152", + "3479", + "348", + "3491", + "351", + "3553", + "3791", + "388325", + "389658", + "3965", + "408", + "409", + "4282", + "4342", + "4504", + "4838", + "4851", + "4853", + "4914", + "5031", + "5151", + "5154", + "5155", + "5156", + "5159", + "5245", + "5300", + "5314", + "5320", + "5322", + "5345", + "54209", + "54550", + "55294", + "55333", + "55532", + "55801", + "55885", + "5590", + "5595", + "5604", + "5609", + "57007", + "57556", + "5777", + "5781", + "5801", + "6237", + "6278", + "6348", + "6363", + "6366", + "6376", + "6464", + "64762", + "650", + "65009", + "6504", + "65268", + "673", + "6815", + "7010", + "7040", + "728", + "7430", + "7534", + "7786", + "78986", + "7984", + "8000", + "81610", + "84231", + "8482", + "920", + "9258", + "9270", + "9290", + "9368", + "9370", + "9464", + "960", + "9693", + "972", + "9965" + ] + }, + "GO:0035295": { + "Name": "tube development", + "Task": "GO", + "Genes": [ + "100127206", + "1012", + "10159", + "10203", + "10266", + "10267", + "10413", + "11082", + "11146", + "1116", + "123872", + "1282", + "128240", + "1317", + "133", + "137814", + "140628", + "1436", + "144165", + "144455", + "1460", + "1499", + "153090", + "161742", + "168667", + "182", + "1948", + "1950", + "1960", + "2022", + "2047", + "2050", + "207", + "2246", + "2247", + "2252", + "2255", + "22846", + "2294", + "23411", + "23513", + "2549", + "255324", + "25836", + "25865", + "2624", + "26249", + "2626", + "2627", + "2658", + "27031", + "27035", + "2735", + "2737", + "2822", + "283", + "2838", + "284", + "3162", + "3164", + "3198", + "3397", + "339829", + "3572", + "3576", + "3606", + "3675", + "3678", + "3690", + "3696", + "375056", + "3791", + "387", + "388", + "388389", + "3952", + "3953", + "4017", + "4041", + "4162", + "4233", + "4524", + "4627", + "4638", + "4691", + "4851", + "4852", + "4856", + "5058", + "506", + "5125", + "51339", + "51752", + "5310", + "5311", + "54361", + "55036", + "55109", + "5613", + "56913", + "5697", + "57057", + "5727", + "5747", + "57674", + "57680", + "5915", + "5919", + "5921", + "5979", + "60675", + "6091", + "6092", + "6095", + "6299", + "6347", + "64220", + "6425", + "64321", + "6441", + "650", + "652", + "65266", + "657", + "659", + "6714", + "6722", + "6772", + "6910", + "6928", + "6997", + "7010", + "7040", + "7048", + "7057", + "71", + "7490", + "7547", + "7837", + "7857", + "79031", + "79625", + "79733", + "79827", + "79924", + "80025", + "80199", + "83605", + "83700", + "84830", + "84913", + "8503", + "8646", + "8829", + "8854", + "90", + "90627", + "9096", + "9270", + "9289", + "9353", + "93974", + "94", + "9451" + ] + }, + "GO:0022409": { + "Name": "positive regulation of cell-cell adhesion", + "Task": "GO", + "Genes": [ + "100133941", + "10076", + "10148", + "10211", + "10272", + "10288", + "10524", + "10630", + "10725", + "10808", + "10859", + "11006", + "11126", + "11148", + "11221", + "126259", + "1326", + "1378", + "1445", + "149233", + "1511", + "1604", + "177", + "1803", + "199", + "201627", + "207", + "2113", + "2243", + "2244", + "2266", + "22914", + "22915", + "2309", + "23149", + "2319", + "23308", + "2475", + "2525", + "2529", + "2534", + "25930", + "259307", + "2651", + "29108", + "29126", + "301", + "3037", + "3071", + "30835", + "3105", + "3109", + "3113", + "3115", + "3122", + "3123", + "3133", + "3135", + "3146", + "3169", + "3170", + "3329", + "3346", + "3458", + "3479", + "3481", + "3485", + "3553", + "3558", + "3565", + "3569", + "3572", + "3592", + "3593", + "3594", + "3606", + "3654", + "3716", + "3717", + "387", + "3952", + "3965", + "399", + "4067", + "4092", + "4179", + "4192", + "4301", + "4680", + "4690", + "4838", + "4860", + "50848", + "50943", + "51206", + "51561", + "5170", + "5290", + "5329", + "5345", + "5420", + "55423", + "55626", + "5777", + "5781", + "57829", + "59067", + "5914", + "5970", + "604", + "6046", + "6188", + "6375", + "6376", + "64115", + "64410", + "6484", + "64926", + "6541", + "655", + "6714", + "7037", + "7048", + "7082", + "7124", + "7189", + "7297", + "7409", + "7412", + "7494", + "7525", + "7535", + "79576", + "8013", + "80381", + "81704", + "84034", + "8440", + "84433", + "84466", + "857", + "8600", + "8613", + "8631", + "8651", + "8728", + "8740", + "8764", + "9092", + "912", + "916", + "9223", + "923", + "940", + "959", + "960", + "961", + "970", + "975", + "9780" + ] + }, + "GO:0006914": { + "Name": "autophagy", + "Task": "GO", + "Genes": [ + "10043", + "10241", + "10254", + "10490", + "10533", + "11152", + "11267", + "11331", + "115201", + "1191", + "124997", + "128866", + "132671", + "137492", + "139341", + "143187", + "155382", + "157753", + "162427", + "1785", + "192111", + "203228", + "22863", + "23001", + "23130", + "23192", + "23208", + "23230", + "23241", + "23339", + "23341", + "23376", + "23400", + "23503", + "23647", + "23673", + "25793", + "25851", + "25978", + "25989", + "26100", + "26235", + "26249", + "26276", + "2629", + "27243", + "285180", + "285636", + "285973", + "29979", + "29982", + "30849", + "310", + "3312", + "3320", + "340061", + "345611", + "3691", + "3920", + "3964", + "4077", + "440026", + "440738", + "441925", + "472", + "4864", + "488", + "5071", + "51024", + "51028", + "51127", + "51160", + "5119", + "51368", + "51399", + "51506", + "51510", + "51569", + "51652", + "51715", + "5289", + "53349", + "54463", + "550", + "55014", + "55048", + "55054", + "55062", + "55201", + "55432", + "55626", + "56270", + "57132", + "57154", + "57231", + "57535", + "57674", + "5828", + "5830", + "58476", + "5861", + "60673", + "6279", + "6280", + "63894", + "64419", + "64422", + "64601", + "65018", + "65082", + "65992", + "6714", + "6845", + "6901", + "7157", + "7189", + "7251", + "738", + "7405", + "7415", + "7879", + "79065", + "79643", + "79720", + "79876", + "80183", + "80208", + "8027", + "80700", + "81631", + "81671", + "83460", + "83734", + "83933", + "8408", + "84313", + "84557", + "84749", + "84938", + "84971", + "85363", + "8673", + "8678", + "8878", + "8897", + "8987", + "9140", + "91452", + "9146", + "91782", + "9179", + "92421", + "93343", + "9342", + "9373", + "9474", + "9706", + "9776", + "9779", + "9821", + "9842", + "987", + "9927" + ] + }, + "GO:0061919": { + "Name": "process utilizing autophagic mechanism", + "Task": "GO", + "Genes": [ + "10043", + "10241", + "10254", + "10490", + "10533", + "11152", + "11267", + "11331", + "115201", + "1191", + "124997", + "128866", + "132671", + "137492", + "139341", + "143187", + "155382", + "157753", + "162427", + "1785", + "192111", + "203228", + "22863", + "23001", + "23130", + "23192", + "23208", + "23230", + "23241", + "23339", + "23341", + "23376", + "23400", + "23503", + "23647", + "23673", + "25793", + "25851", + "25978", + "25989", + "26100", + "26235", + "26249", + "26276", + "2629", + "27243", + "285180", + "285636", + "285973", + "29979", + "29982", + "30849", + "310", + "3312", + "3320", + "340061", + "345611", + "3691", + "3920", + "3964", + "4077", + "440026", + "440738", + "441925", + "472", + "4864", + "488", + "5071", + "51024", + "51028", + "51127", + "51160", + "5119", + "51368", + "51399", + "51506", + "51510", + "51569", + "51652", + "51715", + "5289", + "53349", + "54463", + "550", + "55014", + "55048", + "55054", + "55062", + "55201", + "55432", + "55626", + "56270", + "57132", + "57154", + "57231", + "57535", + "57674", + "5828", + "5830", + "58476", + "5861", + "60673", + "6279", + "6280", + "63894", + "64419", + "64422", + "64601", + "65018", + "65082", + "65992", + "6714", + "6845", + "6901", + "7157", + "7189", + "7251", + "738", + "7405", + "7415", + "7879", + "79065", + "79643", + "79720", + "79876", + "80183", + "80208", + "8027", + "80700", + "81631", + "81671", + "83460", + "83734", + "83933", + "8408", + "84313", + "84557", + "84749", + "84938", + "84971", + "85363", + "8673", + "8678", + "8878", + "8897", + "8987", + "9140", + "91452", + "9146", + "91782", + "9179", + "92421", + "93343", + "9342", + "9373", + "9474", + "9706", + "9776", + "9779", + "9821", + "9842", + "987", + "9927" + ] + }, + "GO:0032386": { + "Name": "regulation of intracellular transport", + "Task": "GO", + "Genes": [ + "10023", + "10079", + "10134", + "10155", + "10411", + "10541", + "10615", + "10657", + "10956", + "11052", + "11235", + "11236", + "11261", + "11315", + "116150", + "120892", + "123745", + "1263", + "127933", + "128637", + "1409", + "1410", + "1601", + "161291", + "1660", + "1778", + "20", + "2010", + "2033", + "22876", + "22994", + "23011", + "2316", + "23209", + "23286", + "23317", + "23379", + "23557", + "255738", + "255758", + "258010", + "25930", + "26119", + "2619", + "2621", + "26229", + "26993", + "27236", + "27248", + "27346", + "29072", + "2932", + "29934", + "302", + "3059", + "337867", + "3429", + "3458", + "347", + "3638", + "3728", + "3916", + "392", + "3936", + "404636", + "4478", + "4600", + "4734", + "4744", + "4926", + "50487", + "51009", + "5108", + "5116", + "51366", + "51465", + "51548", + "51569", + "51614", + "51652", + "51684", + "51715", + "5295", + "53407", + "54888", + "55051", + "55432", + "55677", + "55696", + "55737", + "55741", + "55754", + "55781", + "5580", + "55823", + "55929", + "5594", + "5595", + "5604", + "5605", + "5663", + "57506", + "5770", + "5784", + "580", + "5901", + "5905", + "5936", + "5962", + "60561", + "6342", + "63928", + "64328", + "64801", + "65125", + "652", + "6653", + "6672", + "6714", + "6794", + "7040", + "7175", + "7260", + "7327", + "7341", + "7430", + "7531", + "7874", + "79567", + "79639", + "79752", + "79809", + "79899", + "80149", + "80184", + "8021", + "81555", + "81565", + "8536", + "85366", + "8724", + "8766", + "88", + "8841", + "8882", + "8934", + "89866", + "9024", + "91319", + "9141", + "9370", + "9495", + "9531", + "9648", + "9695", + "9727", + "975", + "9777", + "9972", + "999" + ] + }, + "GO:0002696": { + "Name": "positive regulation of leukocyte activation", + "Task": "GO", + "Genes": [ + "100133941", + "10148", + "10288", + "10451", + "10459", + "10524", + "10666", + "10673", + "10808", + "10859", + "11006", + "11126", + "11148", + "11221", + "112441434", + "115352", + "124912", + "126259", + "1326", + "1378", + "1445", + "149233", + "149840", + "1604", + "177", + "1803", + "1880", + "199", + "2048", + "207", + "2255", + "22914", + "2309", + "23149", + "2319", + "23308", + "2475", + "2534", + "259307", + "2621", + "29108", + "29126", + "30011", + "301", + "3071", + "30835", + "3105", + "3109", + "3113", + "3115", + "3122", + "3123", + "3133", + "3135", + "3146", + "3329", + "3458", + "3479", + "3481", + "3485", + "3553", + "3558", + "3565", + "3569", + "3572", + "3586", + "3592", + "3593", + "3594", + "3606", + "3717", + "3735", + "3929", + "3952", + "3965", + "399", + "403313", + "4067", + "4179", + "4282", + "4690", + "4773", + "4860", + "50943", + "51293", + "51561", + "5170", + "5290", + "54106", + "54209", + "54537", + "55423", + "55626", + "558", + "5777", + "5781", + "57829", + "5788", + "5819", + "59067", + "5914", + "596", + "604", + "6046", + "6188", + "6348", + "6375", + "63925", + "64115", + "64127", + "64410", + "64581", + "64926", + "6541", + "6688", + "6714", + "6850", + "695", + "7037", + "7040", + "7048", + "7057", + "7158", + "7297", + "7409", + "7412", + "7474", + "7494", + "7525", + "7535", + "79576", + "80381", + "81704", + "8440", + "84433", + "84630", + "85480", + "857", + "8600", + "8651", + "8740", + "8741", + "8764", + "90865", + "9092", + "912", + "916", + "923", + "940", + "952", + "959", + "961", + "970", + "972", + "975" + ] + }, + "GO:0030100": { + "Name": "regulation of endocytosis", + "Task": "GO", + "Genes": [ + "100506013", + "10062", + "1012", + "10188", + "10211", + "10399", + "10461", + "10584", + "10825", + "10859", + "10960", + "11037", + "11314", + "116519", + "1175", + "1191", + "124590", + "124912", + "124930", + "150696", + "1535", + "1601", + "1861", + "192683", + "1950", + "197", + "20", + "2042", + "2150", + "2213", + "2219", + "2220", + "22848", + "22943", + "23011", + "2332", + "2358", + "25", + "255738", + "257364", + "25875", + "25999", + "26119", + "2621", + "2688", + "27", + "284", + "284654", + "29934", + "29978", + "302", + "3055", + "3077", + "3092", + "3146", + "3190", + "335", + "336", + "338692", + "341", + "344", + "345", + "348", + "351", + "3560", + "3561", + "3600", + "3601", + "3643", + "3685", + "3690", + "382", + "3958", + "399687", + "4035", + "4043", + "408", + "409", + "4153", + "4908", + "4983", + "5054", + "50632", + "51160", + "51479", + "5291", + "5336", + "5359", + "54209", + "54550", + "5538", + "558", + "5587", + "5657", + "566", + "5663", + "567", + "57118", + "57126", + "5770", + "5788", + "5873", + "5879", + "6014", + "6093", + "6311", + "636", + "6386", + "6401", + "6424", + "6441", + "64581", + "6609", + "6622", + "6714", + "7018", + "7036", + "7052", + "717", + "718", + "720", + "721", + "7275", + "7287", + "7376", + "7448", + "78989", + "79890", + "80230", + "8291", + "8301", + "84058", + "8527", + "8547", + "857", + "867", + "8724", + "88455", + "8862", + "8877", + "89780", + "9026", + "90416", + "90678", + "933", + "9370", + "949", + "967", + "9711", + "9765", + "977", + "9779", + "9863", + "9892" + ] + }, + "GO:0048285": { + "Name": "organelle fission", + "Task": "GO", + "Genes": [ + "10005", + "10015", + "10051", + "10059", + "10111", + "10274", + "10403", + "10464", + "10540", + "10592", + "10609", + "10615", + "1062", + "10726", + "10734", + "10735", + "11004", + "1104", + "11065", + "11130", + "11144", + "11200", + "113130", + "126353", + "128866", + "129563", + "148362", + "148479", + "151648", + "152185", + "158983", + "1642", + "200942", + "201254", + "220134", + "221035", + "221150", + "22919", + "22933", + "22974", + "23023", + "23063", + "23122", + "23141", + "2316", + "23172", + "23212", + "23310", + "23332", + "23397", + "23603", + "23636", + "24137", + "256364", + "25879", + "25978", + "26065", + "26993", + "27183", + "27243", + "27338", + "27436", + "2801", + "283489", + "285643", + "29098", + "29127", + "29128", + "29893", + "317761", + "3306", + "347688", + "348235", + "378708", + "3796", + "3832", + "3833", + "3834", + "3835", + "3837", + "387", + "387893", + "4361", + "472", + "4976", + "49856", + "51024", + "5119", + "51203", + "51510", + "51537", + "51652", + "5347", + "54332", + "54471", + "54617", + "54627", + "54908", + "54984", + "55125", + "55143", + "55165", + "56647", + "56947", + "57082", + "57132", + "5728", + "57697", + "5824", + "5885", + "5890", + "5901", + "64151", + "6683", + "6795", + "729440", + "7329", + "7756", + "79003", + "79594", + "79643", + "79884", + "79998", + "80346", + "8086", + "81620", + "81929", + "81930", + "8243", + "84057", + "8452", + "84722", + "84861", + "8678", + "8697", + "8766", + "8799", + "8800", + "8815", + "8900", + "891", + "89866", + "90417", + "9055", + "91137", + "9126", + "91272", + "9150", + "91782", + "9183", + "9212", + "92421", + "92960", + "93426", + "9371", + "9493", + "9525", + "9639", + "9700", + "9918", + "9928", + "9985" + ] + }, + "GO:0045017": { + "Name": "glycerolipid biosynthetic process", + "Task": "GO", + "Genes": [ + "10026", + "1040", + "10400", + "10423", + "10554", + "10555", + "1103", + "1119", + "1120", + "116255", + "1201", + "126969", + "128869", + "129303", + "137695", + "137964", + "145567", + "150763", + "158835", + "1606", + "1608", + "1609", + "171586", + "200576", + "200879", + "204962", + "22863", + "22876", + "22979", + "23049", + "23167", + "23175", + "23396", + "23446", + "23556", + "23761", + "253558", + "254531", + "2710", + "27124", + "27315", + "283", + "284098", + "30849", + "335", + "336", + "346606", + "347516", + "3612", + "3635", + "3636", + "3706", + "3707", + "376497", + "392636", + "3931", + "4534", + "4952", + "51099", + "51196", + "51205", + "51227", + "5130", + "51447", + "51604", + "51763", + "5277", + "5279", + "5281", + "5283", + "5286", + "5289", + "5291", + "5294", + "5297", + "5298", + "5305", + "5321", + "5336", + "5337", + "5338", + "54344", + "54675", + "54872", + "55300", + "55326", + "55361", + "55500", + "55650", + "56623", + "56894", + "56895", + "56994", + "57048", + "57153", + "5728", + "57605", + "57678", + "5833", + "64419", + "64924", + "65258", + "660", + "6901", + "7405", + "79143", + "79837", + "79888", + "80055", + "80168", + "80235", + "80271", + "80339", + "80736", + "81490", + "83394", + "8394", + "8395", + "8396", + "8398", + "84188", + "84302", + "8443", + "84649", + "84668", + "84803", + "84879", + "84992", + "8525", + "8526", + "8527", + "85465", + "8605", + "8678", + "8694", + "8733", + "8760", + "8776", + "8813", + "8818", + "8821", + "8867", + "8871", + "8897", + "8898", + "9091", + "9107", + "9108", + "9110", + "93210", + "94005", + "9468", + "9487", + "9488", + "9600", + "9663", + "9791", + "9807", + "9896" + ] + }, + "GO:0032886": { + "Name": "regulation of microtubule-based process", + "Task": "GO", + "Genes": [ + "10013", + "10015", + "1003", + "10039", + "10142", + "10300", + "10382", + "10432", + "10460", + "10519", + "10615", + "10634", + "10733", + "10769", + "11075", + "11076", + "11170", + "122664", + "1235", + "123872", + "126731", + "128866", + "146057", + "152185", + "153241", + "1540", + "157922", + "163786", + "1639", + "1672", + "1729", + "1778", + "1946", + "2011", + "2042", + "2064", + "220134", + "221150", + "221908", + "2242", + "22809", + "22919", + "22924", + "22974", + "22994", + "23122", + "23187", + "23271", + "23299", + "23332", + "23411", + "23499", + "23636", + "24139", + "246176", + "25", + "255061", + "255758", + "256364", + "25978", + "25999", + "26054", + "26146", + "2648", + "27243", + "2770", + "28964", + "29105", + "2932", + "29899", + "29922", + "3192", + "324", + "3303", + "3304", + "338657", + "339829", + "3476", + "348235", + "348654", + "3916", + "3925", + "402", + "4133", + "4137", + "4204", + "4233", + "4591", + "4733", + "4744", + "4869", + "4926", + "5058", + "51072", + "5119", + "51510", + "51652", + "5314", + "5347", + "54461", + "54627", + "55036", + "55130", + "55226", + "55521", + "55755", + "55835", + "56683", + "56890", + "57119", + "57132", + "57542", + "57551", + "57606", + "57662", + "57787", + "58497", + "5879", + "6047", + "6093", + "6188", + "6249", + "6314", + "636", + "6406", + "6491", + "6622", + "6790", + "6794", + "6865", + "6869", + "6870", + "6904", + "7175", + "7517", + "79187", + "79598", + "79643", + "79809", + "79866", + "79884", + "79959", + "79998", + "84084", + "84722", + "8480", + "85459", + "85478", + "8701", + "8850", + "8874", + "89795", + "899", + "90102", + "91147", + "91782", + "9181", + "92421", + "9525", + "9793" + ] + }, + "GO:0071214": { + "Name": "cellular response to abiotic stimulus", + "Task": "GO", + "Genes": [ + "10010", + "1026", + "10276", + "10413", + "10635", + "10725", + "10856", + "11011", + "1265", + "1387", + "1396", + "1410", + "142", + "1432", + "150678", + "163859", + "1642", + "1643", + "1647", + "1654", + "170506", + "1894", + "1936", + "2033", + "2056", + "2072", + "221391", + "22861", + "22890", + "23028", + "231", + "23411", + "23514", + "23596", + "2547", + "25836", + "25896", + "25963", + "26056", + "26155", + "27035", + "27063", + "27347", + "2822", + "2885", + "3265", + "3297", + "3364", + "3373", + "338567", + "3428", + "358", + "362", + "3645", + "388", + "3981", + "41", + "4157", + "4193", + "4239", + "4311", + "4312", + "4313", + "4314", + "4318", + "4638", + "472", + "4734", + "4869", + "50801", + "50848", + "5111", + "51426", + "51499", + "51701", + "51719", + "51776", + "5269", + "5311", + "5422", + "5424", + "545", + "54617", + "5481", + "54929", + "55144", + "55693", + "5580", + "5600", + "5603", + "56160", + "56339", + "5728", + "57646", + "578", + "5796", + "580", + "5810", + "5883", + "5888", + "59341", + "5978", + "6011", + "611", + "6154", + "6295", + "6337", + "6338", + "6339", + "6340", + "63979", + "641", + "64710", + "65125", + "65267", + "6548", + "6609", + "672", + "675", + "6794", + "6872", + "7076", + "7157", + "7442", + "7486", + "7508", + "7520", + "7528", + "79073", + "79184", + "79752", + "79913", + "80131", + "83695", + "8372", + "83959", + "842", + "84329", + "8450", + "8451", + "8531", + "85453", + "85456", + "8692", + "89872", + "90427", + "9212", + "92241", + "9230", + "92815", + "9575", + "9577", + "9683", + "993", + "9943", + "9978", + "9990" + ] + }, + "GO:0104004": { + "Name": "cellular response to environmental stimulus", + "Task": "GO", + "Genes": [ + "10010", + "1026", + "10276", + "10413", + "10635", + "10725", + "10856", + "11011", + "1265", + "1387", + "1396", + "1410", + "142", + "1432", + "150678", + "163859", + "1642", + "1643", + "1647", + "1654", + "170506", + "1894", + "1936", + "2033", + "2056", + "2072", + "221391", + "22861", + "22890", + "23028", + "231", + "23411", + "23514", + "23596", + "2547", + "25836", + "25896", + "25963", + "26056", + "26155", + "27035", + "27063", + "27347", + "2822", + "2885", + "3265", + "3297", + "3364", + "3373", + "338567", + "3428", + "358", + "362", + "3645", + "388", + "3981", + "41", + "4157", + "4193", + "4239", + "4311", + "4312", + "4313", + "4314", + "4318", + "4638", + "472", + "4734", + "4869", + "50801", + "50848", + "5111", + "51426", + "51499", + "51701", + "51719", + "51776", + "5269", + "5311", + "5422", + "5424", + "545", + "54617", + "5481", + "54929", + "55144", + "55693", + "5580", + "5600", + "5603", + "56160", + "56339", + "5728", + "57646", + "578", + "5796", + "580", + "5810", + "5883", + "5888", + "59341", + "5978", + "6011", + "611", + "6154", + "6295", + "6337", + "6338", + "6339", + "6340", + "63979", + "641", + "64710", + "65125", + "65267", + "6548", + "6609", + "672", + "675", + "6794", + "6872", + "7076", + "7157", + "7442", + "7486", + "7508", + "7520", + "7528", + "79073", + "79184", + "79752", + "79913", + "80131", + "83695", + "8372", + "83959", + "842", + "84329", + "8450", + "8451", + "8531", + "85453", + "85456", + "8692", + "89872", + "90427", + "9212", + "92241", + "9230", + "92815", + "9575", + "9577", + "9683", + "993", + "9943", + "9978", + "9990" + ] + }, + "GO:0072594": { + "Name": "establishment of protein localization to organelle", + "Task": "GO", + "Genes": [ + "100287932", + "10134", + "10204", + "10245", + "10440", + "10452", + "10469", + "10531", + "10856", + "10890", + "10953", + "11231", + "112869", + "11331", + "1191", + "128866", + "130617", + "131474", + "140690", + "144165", + "152485", + "158234", + "158866", + "1678", + "1871", + "207", + "222229", + "22930", + "23163", + "23203", + "23511", + "23534", + "23558", + "23787", + "23788", + "25782", + "25793", + "25813", + "25913", + "26060", + "26061", + "26262", + "26517", + "26519", + "26520", + "26521", + "26985", + "27183", + "285521", + "29090", + "29927", + "29928", + "3009", + "3098", + "3099", + "3308", + "3309", + "3312", + "3320", + "345611", + "3587", + "3836", + "3837", + "3838", + "3840", + "3842", + "3843", + "3916", + "3920", + "401505", + "4121", + "4321", + "4591", + "4734", + "51024", + "51025", + "51079", + "51172", + "51501", + "51608", + "51762", + "5189", + "5190", + "5191", + "5192", + "5194", + "5195", + "54332", + "54543", + "55027", + "55122", + "5514", + "55198", + "55506", + "55670", + "55705", + "55750", + "56478", + "56947", + "56993", + "57154", + "5824", + "5828", + "5830", + "5898", + "5901", + "5903", + "602", + "6262", + "64089", + "64112", + "65018", + "6653", + "6727", + "6729", + "675", + "6774", + "6788", + "6789", + "6850", + "7015", + "706", + "7095", + "7175", + "754", + "7879", + "79035", + "79158", + "7917", + "79568", + "79711", + "8031", + "8239", + "8266", + "83752", + "84268", + "8504", + "8766", + "8878", + "9049", + "90580", + "90678", + "9131", + "9146", + "9179", + "9409", + "950", + "9512", + "9555", + "9648", + "9670", + "9695", + "9765", + "9804", + "9868", + "9927" + ] + }, + "GO:0016032": { + "Name": "viral process", + "Task": "GO", + "Genes": [ + "10015", + "10241", + "10332", + "10542", + "10605", + "10610", + "10663", + "1104", + "11059", + "11060", + "11074", + "11253", + "11282", + "11320", + "128637", + "128866", + "129531", + "131578", + "137492", + "1452", + "1487", + "1488", + "1514", + "155382", + "156", + "1642", + "1656", + "1660", + "185", + "1939", + "200576", + "2060", + "207", + "219931", + "22879", + "23633", + "2530", + "256435", + "25834", + "2589", + "25978", + "2621", + "27074", + "27090", + "27183", + "27243", + "2838", + "28972", + "28985", + "2931", + "2932", + "2959", + "29915", + "30835", + "3276", + "3326", + "3383", + "339122", + "339390", + "348", + "3643", + "3665", + "3685", + "3690", + "3725", + "3838", + "3981", + "4124", + "4245", + "4247", + "4249", + "440400", + "4734", + "4864", + "5045", + "50855", + "5091", + "5093", + "5094", + "51160", + "5119", + "51193", + "51386", + "51510", + "51652", + "53373", + "5478", + "5481", + "54956", + "55048", + "551", + "55223", + "553", + "55337", + "55741", + "558", + "57132", + "5725", + "5819", + "5861", + "5901", + "59272", + "60559", + "6346", + "6347", + "636", + "6480", + "6482", + "6483", + "6484", + "6487", + "6520", + "6598", + "6609", + "6741", + "7113", + "7157", + "7251", + "7391", + "7392", + "7415", + "7706", + "7812", + "7841", + "7879", + "7913", + "79643", + "79720", + "81876", + "821", + "83666", + "83737", + "84875", + "8562", + "857", + "858", + "8661", + "8662", + "8664", + "8665", + "8666", + "8673", + "8678", + "8692", + "8829", + "89853", + "905", + "90678", + "90861", + "91392", + "91782", + "9218", + "92421", + "93343", + "9397", + "9525", + "9712", + "9798" + ] + }, + "GO:0044403": { + "Name": "biological process involved in symbiotic interaction", + "Task": "GO", + "Genes": [ + "1025", + "10332", + "10605", + "1072", + "1105", + "11059", + "11060", + "11074", + "117159", + "128637", + "128866", + "131578", + "140823", + "1514", + "156", + "1642", + "164668", + "1667", + "1670", + "185", + "1915", + "1991", + "200576", + "2033", + "2060", + "207", + "2147", + "2194", + "219931", + "22938", + "23076", + "23137", + "2332", + "2335", + "23435", + "253832", + "25827", + "25833", + "2597", + "25978", + "2621", + "27074", + "27183", + "27243", + "2838", + "29115", + "29801", + "3065", + "3078", + "3080", + "30835", + "3249", + "325", + "3273", + "3326", + "3329", + "3383", + "339390", + "3429", + "3434", + "348", + "3482", + "3643", + "3685", + "3690", + "3725", + "4057", + "414325", + "440026", + "440400", + "4864", + "5071", + "5091", + "51114", + "51176", + "5119", + "51193", + "51510", + "51652", + "51763", + "5196", + "5288", + "5289", + "5297", + "53349", + "53373", + "5340", + "54606", + "5478", + "5479", + "5481", + "551", + "55223", + "553", + "558", + "55894", + "566", + "5702", + "57132", + "5806", + "5819", + "5868", + "59272", + "5978", + "6348", + "6351", + "6355", + "64170", + "64710", + "64848", + "6520", + "6597", + "6598", + "6609", + "6667", + "6714", + "6882", + "6993", + "7023", + "7251", + "728358", + "7706", + "7879", + "79643", + "79677", + "79720", + "80149", + "8091", + "81494", + "820", + "83737", + "8411", + "8542", + "857", + "858", + "867", + "8673", + "8678", + "8812", + "8819", + "8829", + "8934", + "904", + "90861", + "91392", + "9150", + "91782", + "9189", + "9218", + "92421", + "9367", + "9475", + "949", + "9525", + "9798" + ] + }, + "GO:0008654": { + "Name": "phospholipid biosynthetic process", + "Task": "GO", + "Genes": [ + "10026", + "10351", + "1040", + "10400", + "10423", + "10554", + "10555", + "1103", + "1119", + "1120", + "116150", + "1201", + "126969", + "128869", + "129303", + "137964", + "145567", + "150763", + "1606", + "1608", + "1609", + "166929", + "171586", + "200576", + "200879", + "204962", + "22845", + "22863", + "22876", + "22979", + "23049", + "23167", + "23396", + "23446", + "23556", + "23761", + "253558", + "254531", + "259230", + "27124", + "27315", + "284098", + "30849", + "335", + "336", + "3612", + "3635", + "3636", + "3706", + "3707", + "376497", + "3931", + "3992", + "4534", + "4952", + "5007", + "51099", + "51205", + "51227", + "5130", + "51447", + "51604", + "51763", + "5277", + "5279", + "5281", + "5283", + "5286", + "5289", + "5291", + "5294", + "5297", + "5298", + "5305", + "5336", + "5337", + "5338", + "54344", + "54675", + "54872", + "55300", + "55326", + "55361", + "55500", + "55650", + "56623", + "56848", + "56894", + "56895", + "56994", + "57048", + "57153", + "57171", + "5728", + "57605", + "57678", + "5833", + "64419", + "64924", + "65258", + "660", + "6901", + "7405", + "79143", + "79644", + "79837", + "79888", + "79947", + "80055", + "80235", + "80271", + "80339", + "80736", + "81490", + "83394", + "8394", + "8395", + "8396", + "8398", + "84188", + "84302", + "8443", + "84668", + "84803", + "84879", + "84992", + "8525", + "8526", + "8527", + "85465", + "8605", + "8678", + "8733", + "8760", + "8776", + "8813", + "8818", + "8821", + "8867", + "8871", + "8897", + "8898", + "9091", + "9107", + "9108", + "9110", + "9218", + "93210", + "94005", + "9468", + "9487", + "9488", + "9600", + "9791", + "9807", + "9896" + ] + }, + "GO:0051896": { + "Name": "regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction", + "Task": "GO", + "Genes": [ + "10016", + "10193", + "10253", + "10268", + "10399", + "10411", + "10456", + "10507", + "10617", + "10855", + "10870", + "10979", + "1116", + "11315", + "113791", + "1236", + "1440", + "153090", + "1634", + "1646", + "1649", + "183", + "1839", + "1950", + "1956", + "1969", + "2022", + "205428", + "2065", + "2137", + "219699", + "2247", + "2260", + "2261", + "2268", + "2321", + "2322", + "23239", + "23252", + "2335", + "23396", + "23411", + "23612", + "2475", + "2492", + "253260", + "25827", + "26051", + "2621", + "2625", + "2651", + "2660", + "2688", + "284", + "2852", + "29997", + "3059", + "3082", + "3092", + "3135", + "3479", + "3480", + "3481", + "3606", + "3630", + "3643", + "3688", + "3717", + "3791", + "3815", + "389400", + "4058", + "4150", + "4486", + "4653", + "4734", + "4824", + "4922", + "49860", + "5008", + "51384", + "5154", + "5155", + "5156", + "5159", + "5170", + "51763", + "5290", + "5291", + "5294", + "5314", + "54209", + "5465", + "5515", + "55626", + "55801", + "5587", + "57091", + "57142", + "5728", + "57333", + "5747", + "5777", + "5783", + "5795", + "59338", + "5979", + "6237", + "6363", + "6366", + "6376", + "6403", + "642273", + "6425", + "65018", + "653361", + "6714", + "6934", + "7010", + "7040", + "7042", + "7046", + "7057", + "7066", + "708", + "7291", + "7295", + "7498", + "79594", + "8394", + "8395", + "85453", + "8644", + "867", + "8692", + "8904", + "92140", + "9258", + "9270", + "930", + "9368", + "9518", + "9711", + "9723", + "9863" + ] + }, + "GO:0002768": { + "Name": "immune response-regulating cell surface receptor signaling pathway", + "Task": "GO", + "Genes": [ + "100133941", + "10288", + "10451", + "10603", + "10616", + "10657", + "10859", + "10892", + "11006", + "11027", + "11119", + "114609", + "1147", + "121665", + "1378", + "1387", + "1445", + "148022", + "1493", + "163486", + "196051", + "1967", + "199920", + "2033", + "2207", + "2213", + "2219", + "2268", + "22841", + "23149", + "23180", + "23547", + "2358", + "25", + "2533", + "2534", + "25800", + "25865", + "259197", + "26191", + "27040", + "2822", + "2867", + "29110", + "29760", + "3055", + "3071", + "30968", + "3105", + "3115", + "3119", + "3123", + "3135", + "353376", + "3551", + "3635", + "3654", + "3656", + "3661", + "3802", + "3815", + "3821", + "3822", + "3824", + "387837", + "3929", + "3937", + "3965", + "3984", + "4067", + "4153", + "4214", + "4277", + "4332", + "4773", + "4792", + "4938", + "5058", + "5062", + "5063", + "51135", + "51295", + "51324", + "5142", + "5144", + "5284", + "5290", + "5293", + "5335", + "5336", + "5338", + "55024", + "55072", + "5580", + "5581", + "5588", + "5599", + "5601", + "5609", + "5678", + "57402", + "5747", + "5788", + "5795", + "581", + "59338", + "596", + "5970", + "640", + "6416", + "6654", + "6714", + "6850", + "6885", + "695", + "7006", + "7097", + "7099", + "7100", + "7187", + "7189", + "719", + "728", + "7305", + "7334", + "7409", + "7410", + "7462", + "7525", + "7535", + "7917", + "79931", + "8398", + "84174", + "8631", + "8767", + "8890", + "8891", + "8892", + "8893", + "8915", + "919", + "925", + "926", + "930", + "931", + "952", + "9564", + "9865" + ] + }, + "GO:0042060": { + "Name": "wound healing", + "Task": "GO", + "Genes": [ + "10451", + "10630", + "11235", + "116844", + "1281", + "128866", + "1289", + "131566", + "135", + "139189", + "1432", + "146206", + "1511", + "1606", + "1607", + "1608", + "160851", + "1609", + "2064", + "2069", + "2147", + "2149", + "2151", + "2152", + "2155", + "2157", + "2158", + "2159", + "2160", + "2161", + "2162", + "2165", + "2192", + "221037", + "221477", + "2243", + "2244", + "2246", + "2247", + "2255", + "2266", + "22915", + "2316", + "23671", + "25978", + "2623", + "2624", + "2677", + "27243", + "2768", + "2776", + "2778", + "2811", + "2812", + "2814", + "2815", + "3084", + "3162", + "3172", + "3273", + "3479", + "3491", + "350", + "3569", + "3630", + "3673", + "3690", + "3705", + "375056", + "3791", + "388552", + "3936", + "3998", + "4088", + "4321", + "4627", + "5051", + "5058", + "50808", + "5119", + "51510", + "5154", + "5156", + "51652", + "5196", + "5290", + "5291", + "5294", + "5327", + "5336", + "5340", + "54566", + "5530", + "57132", + "57175", + "57591", + "57834", + "5864", + "5894", + "5912", + "634", + "64805", + "6609", + "6707", + "6714", + "6722", + "6812", + "6814", + "6850", + "7040", + "7046", + "7056", + "725", + "7409", + "7410", + "7450", + "7454", + "7474", + "7476", + "780", + "79001", + "79643", + "8324", + "83481", + "8525", + "8526", + "8527", + "8529", + "8613", + "87", + "8761", + "9002", + "90070", + "9076", + "9162", + "91782", + "92421", + "94", + "94121", + "948", + "949", + "953", + "959", + "960", + "966", + "977" + ] + }, + "GO:0051251": { + "Name": "positive regulation of lymphocyte activation", + "Task": "GO", + "Genes": [ + "100133941", + "10148", + "10288", + "10451", + "10459", + "10524", + "10673", + "10808", + "10859", + "11006", + "11126", + "11148", + "11221", + "112441434", + "115352", + "126259", + "1326", + "1378", + "1445", + "149233", + "149840", + "1604", + "177", + "1803", + "1880", + "199", + "2048", + "207", + "2255", + "22914", + "2309", + "23149", + "2319", + "23308", + "2475", + "2534", + "259307", + "2621", + "29108", + "29126", + "30011", + "301", + "3071", + "30835", + "3105", + "3109", + "3113", + "3115", + "3122", + "3123", + "3133", + "3135", + "3146", + "3329", + "3458", + "3479", + "3481", + "3485", + "3553", + "3558", + "3565", + "3569", + "3572", + "3586", + "3592", + "3593", + "3594", + "3606", + "3717", + "3952", + "3965", + "399", + "4067", + "4179", + "4282", + "4690", + "4773", + "4860", + "50943", + "51293", + "51561", + "5170", + "5290", + "54106", + "54537", + "55423", + "55626", + "558", + "5777", + "5781", + "57829", + "5788", + "59067", + "5914", + "596", + "604", + "6046", + "6188", + "6375", + "63925", + "64115", + "64127", + "64410", + "64581", + "64926", + "6541", + "6688", + "6714", + "6850", + "695", + "7037", + "7040", + "7048", + "7158", + "7297", + "7409", + "7412", + "7494", + "7525", + "7535", + "79576", + "80381", + "81704", + "8440", + "84433", + "857", + "8600", + "8651", + "8740", + "8741", + "8764", + "9092", + "912", + "916", + "923", + "940", + "952", + "959", + "961", + "970", + "972", + "975" + ] + }, + "GO:0016197": { + "Name": "endosomal transport", + "Task": "GO", + "Genes": [ + "100287171", + "10043", + "10123", + "10139", + "10228", + "10311", + "10652", + "10807", + "10890", + "10938", + "11021", + "112574", + "11267", + "1130", + "116986", + "124997", + "143187", + "144717", + "150368", + "157680", + "1639", + "19", + "200576", + "2060", + "22836", + "22853", + "22863", + "23023", + "23074", + "23258", + "23325", + "23339", + "23603", + "253725", + "257364", + "25930", + "25963", + "25978", + "26000", + "26088", + "27131", + "27147", + "27183", + "28952", + "29062", + "29886", + "29911", + "30844", + "30845", + "30846", + "30849", + "338382", + "374403", + "382", + "392", + "3998", + "400", + "404636", + "4645", + "51272", + "51361", + "51429", + "51479", + "51542", + "51552", + "51652", + "51699", + "5289", + "54520", + "54551", + "54732", + "54918", + "55275", + "55317", + "55353", + "55610", + "55614", + "55658", + "55737", + "55745", + "55773", + "57020", + "57182", + "57533", + "57589", + "58533", + "5868", + "5870", + "5872", + "5987", + "6272", + "6293", + "63893", + "64089", + "64129", + "64145", + "64400", + "653145", + "6642", + "6643", + "6811", + "6836", + "738", + "7415", + "7813", + "7840", + "7879", + "79735", + "80700", + "81609", + "8218", + "8301", + "83547", + "83874", + "84067", + "84079", + "8411", + "84162", + "84376", + "84661", + "84910", + "85377", + "8674", + "8675", + "8677", + "8678", + "8723", + "8729", + "8878", + "8934", + "8938", + "9043", + "91056", + "9230", + "9341", + "9482", + "9525", + "9527", + "9559", + "9648", + "9727", + "9765", + "9779", + "9784", + "9827", + "9905", + "9907" + ] + }, + "GO:0046474": { + "Name": "glycerophospholipid biosynthetic process", + "Task": "GO", + "Genes": [ + "10026", + "1040", + "10400", + "10423", + "10554", + "10555", + "1103", + "1119", + "1120", + "1201", + "126969", + "128869", + "129303", + "137964", + "145567", + "150763", + "1606", + "1608", + "1609", + "171586", + "200576", + "200879", + "204962", + "22863", + "22876", + "22979", + "23049", + "23167", + "23396", + "23446", + "23556", + "23761", + "253558", + "254531", + "27124", + "27315", + "284098", + "30849", + "335", + "336", + "3612", + "3635", + "3636", + "3706", + "3707", + "376497", + "3931", + "4534", + "4952", + "51099", + "51205", + "51227", + "5130", + "51447", + "51604", + "51763", + "5277", + "5279", + "5281", + "5283", + "5286", + "5289", + "5291", + "5294", + "5297", + "5298", + "5305", + "5336", + "5337", + "5338", + "54344", + "54675", + "54872", + "55300", + "55326", + "55361", + "55500", + "55650", + "56623", + "56894", + "56895", + "56994", + "57048", + "57153", + "5728", + "57605", + "57678", + "5833", + "64419", + "64924", + "65258", + "660", + "6901", + "7405", + "79143", + "79837", + "79888", + "80055", + "80235", + "80271", + "80339", + "80736", + "81490", + "83394", + "8394", + "8395", + "8396", + "8398", + "84188", + "84302", + "8443", + "84668", + "84803", + "84879", + "84992", + "8525", + "8526", + "8527", + "85465", + "8605", + "8678", + "8733", + "8760", + "8776", + "8813", + "8818", + "8821", + "8867", + "8871", + "8897", + "8898", + "9091", + "9107", + "9108", + "9110", + "93210", + "94005", + "9468", + "9487", + "9488", + "9600", + "9791", + "9807", + "9896" + ] + }, + "GO:0010634": { + "Name": "positive regulation of epithelial cell migration", + "Task": "GO", + "Genes": [ + "10000", + "10013", + "10016", + "116150", + "1432", + "152007", + "1793", + "183", + "1906", + "1950", + "207", + "2113", + "2185", + "2246", + "2247", + "2252", + "2255", + "2260", + "23122", + "2324", + "23328", + "23332", + "23411", + "23473", + "2475", + "25", + "25865", + "2624", + "2625", + "2821", + "2822", + "284", + "301", + "306", + "3091", + "3146", + "3162", + "3315", + "3373", + "3458", + "3640", + "3690", + "3791", + "388", + "4215", + "4233", + "4318", + "4846", + "498", + "5025", + "506", + "51157", + "51378", + "5155", + "51564", + "5168", + "5170", + "5216", + "5286", + "5291", + "5293", + "5294", + "5335", + "5340", + "54453", + "54566", + "5578", + "5581", + "5587", + "5606", + "5629", + "5641", + "57111", + "57142", + "57381", + "5747", + "57608", + "5879", + "6237", + "6239", + "64094", + "659", + "6662", + "6667", + "6678", + "6714", + "6776", + "6868", + "6997", + "7010", + "7040", + "7042", + "7049", + "7057", + "7114", + "7264", + "7429", + "7474", + "80005", + "80149", + "811", + "84913", + "8613", + "8754", + "8766", + "8817", + "8823", + "8828", + "8829", + "9270", + "9475", + "949", + "9564", + "958", + "9647", + "9734", + "9982" + ] + }, + "GO:0000280": { + "Name": "nuclear division", + "Task": "GO", + "Genes": [ + "10015", + "10051", + "10111", + "10274", + "10403", + "10464", + "10540", + "10592", + "10609", + "10615", + "1062", + "10726", + "10734", + "10735", + "11004", + "1104", + "11065", + "11130", + "11144", + "11200", + "113130", + "126353", + "128866", + "129563", + "148362", + "148479", + "151648", + "152185", + "158983", + "1642", + "200942", + "201254", + "220134", + "221035", + "221150", + "22919", + "22933", + "22974", + "23063", + "23122", + "23141", + "2316", + "23172", + "23212", + "23310", + "23332", + "23397", + "23636", + "24137", + "256364", + "25879", + "25978", + "26065", + "26993", + "27183", + "27243", + "27338", + "27436", + "2801", + "283489", + "285643", + "29098", + "29127", + "29128", + "29893", + "317761", + "3306", + "347688", + "348235", + "378708", + "3796", + "3832", + "3833", + "3834", + "3835", + "3837", + "387", + "387893", + "4361", + "472", + "49856", + "5119", + "51203", + "51510", + "51652", + "5347", + "54617", + "54627", + "54908", + "54984", + "55125", + "55143", + "55165", + "56647", + "57082", + "57132", + "5728", + "57697", + "5885", + "5890", + "5901", + "64151", + "6683", + "6795", + "729440", + "7329", + "7756", + "79003", + "79643", + "79884", + "79998", + "80346", + "8086", + "81620", + "81929", + "81930", + "8243", + "84057", + "8452", + "84722", + "84861", + "8678", + "8697", + "8766", + "8815", + "8900", + "891", + "90417", + "9055", + "9126", + "91272", + "9150", + "91782", + "9183", + "9212", + "92421", + "93426", + "9371", + "9493", + "9525", + "9639", + "9700", + "9918", + "9928", + "9985" + ] + }, + "GO:0051259": { + "Name": "protein complex oligomerization", + "Task": "GO", + "Genes": [ + "10015", + "10056", + "10059", + "10280", + "10367", + "10600", + "10721", + "10730", + "10938", + "11051", + "11052", + "114548", + "115362", + "1311", + "1317", + "138050", + "138151", + "1429", + "1491", + "155061", + "158747", + "1670", + "171389", + "171425", + "1759", + "1894", + "197259", + "1994", + "210", + "2193", + "220", + "223", + "22861", + "22890", + "23210", + "241", + "2521", + "255022", + "25923", + "25939", + "27153", + "27232", + "27243", + "2744", + "282679", + "29108", + "3028", + "30844", + "30845", + "30968", + "3123", + "3135", + "32", + "3251", + "3276", + "340061", + "348980", + "359", + "362", + "3746", + "3748", + "3759", + "3768", + "3848", + "3858", + "4143", + "4144", + "4199", + "4282", + "4284", + "4814", + "4976", + "5018", + "5024", + "51062", + "51074", + "51076", + "51733", + "5310", + "5311", + "54680", + "54795", + "54968", + "54974", + "55144", + "55198", + "5551", + "55600", + "55856", + "56262", + "56341", + "56652", + "567", + "57192", + "57673", + "57679", + "6247", + "641", + "64170", + "64225", + "64375", + "6470", + "6472", + "6506", + "6510", + "6622", + "6648", + "6683", + "6742", + "6847", + "6999", + "7083", + "7158", + "7226", + "735", + "7358", + "7837", + "79147", + "7923", + "79689", + "79869", + "8001", + "80149", + "80304", + "83862", + "84282", + "84433", + "84869", + "87178", + "8767", + "8854", + "8915", + "89872", + "8989", + "8996", + "9033", + "90378", + "90550", + "9076", + "919", + "92610", + "931", + "9885", + "9908" + ] + }, + "GO:0046903": { + "Name": "secretion", + "Task": "GO", + "Genes": [ + "100287171", + "100431172", + "1020", + "10244", + "10257", + "10490", + "10497", + "10516", + "10565", + "10652", + "10814", + "10815", + "10890", + "10987", + "11031", + "1113", + "11151", + "11255", + "117194", + "1230", + "123264", + "1314", + "1393", + "140679", + "1447", + "1448", + "148281", + "149371", + "153339", + "1636", + "169026", + "1813", + "1814", + "1815", + "19", + "1906", + "1908", + "200931", + "2066", + "2205", + "2252", + "2255", + "2266", + "22999", + "23396", + "23557", + "25837", + "26154", + "261729", + "2691", + "2693", + "2914", + "2979", + "3055", + "306", + "3624", + "3651", + "374969", + "375056", + "379", + "3815", + "3840", + "387695", + "389692", + "3952", + "399979", + "4053", + "4218", + "4547", + "4627", + "4760", + "4843", + "4879", + "4881", + "4905", + "5021", + "5045", + "5046", + "50640", + "51192", + "51738", + "5286", + "5293", + "5294", + "5319", + "54097", + "5413", + "54659", + "54843", + "55107", + "55240", + "5539", + "55770", + "56900", + "56923", + "57333", + "57393", + "57829", + "5798", + "5861", + "5864", + "5873", + "60684", + "624", + "6348", + "6355", + "64083", + "64855", + "6582", + "6616", + "6622", + "6804", + "6812", + "6844", + "6845", + "6857", + "6926", + "7052", + "7163", + "7432", + "7857", + "79792", + "79971", + "80331", + "80736", + "821", + "84522", + "84958", + "85413", + "8647", + "8673", + "8766", + "8773", + "8862", + "90070", + "9230", + "93145", + "9341", + "9601" + ] + }, + "GO:0043087": { + "Name": "regulation of GTPase activity", + "Task": "GO", + "Genes": [ + "10125", + "10156", + "10235", + "10276", + "10297", + "10344", + "10399", + "10411", + "10451", + "10507", + "10565", + "10681", + "10928", + "10959", + "10979", + "10999", + "11033", + "11153", + "112574", + "115704", + "116", + "116985", + "120892", + "128637", + "1398", + "140775", + "143872", + "150696", + "153", + "153090", + "1857", + "1894", + "1946", + "1969", + "202243", + "203228", + "2041", + "2042", + "2043", + "2049", + "2146", + "2149", + "2150", + "2245", + "22841", + "22914", + "22930", + "23143", + "23161", + "23329", + "23380", + "23513", + "23616", + "23637", + "23677", + "26000", + "26086", + "27237", + "27352", + "2889", + "29", + "2932", + "30851", + "3265", + "3655", + "3688", + "377630", + "391", + "3925", + "3987", + "402", + "4233", + "4594", + "4763", + "4908", + "4914", + "51256", + "51291", + "51429", + "51520", + "51735", + "5300", + "5365", + "54959", + "55255", + "55357", + "55616", + "55854", + "5592", + "55920", + "5657", + "5747", + "57589", + "57679", + "5905", + "5909", + "5962", + "5996", + "6000", + "6001", + "6004", + "613", + "6251", + "6281", + "6356", + "6369", + "65125", + "6647", + "7074", + "7107", + "7248", + "7409", + "7410", + "7481", + "7813", + "7984", + "81565", + "81704", + "8301", + "8394", + "8412", + "8477", + "8502", + "85397", + "85440", + "858", + "8874", + "89839", + "92154", + "9270", + "958", + "9628", + "9639", + "9693", + "9712", + "9750", + "9824", + "9827", + "9905" + ] + }, + "GO:0050730": { + "Name": "regulation of peptidyl-tyrosine phosphorylation", + "Task": "GO", + "Genes": [ + "10006", + "10188", + "10456", + "10464", + "11006", + "11314", + "122809", + "1270", + "1436", + "1437", + "1440", + "1464", + "146433", + "1489", + "149233", + "1609", + "1742", + "183", + "1942", + "1956", + "199731", + "2045", + "2056", + "2066", + "2185", + "2209", + "2252", + "2255", + "2261", + "22876", + "2322", + "23529", + "23568", + "23624", + "25", + "255324", + "2623", + "2688", + "282618", + "284", + "285489", + "29883", + "3059", + "3082", + "3273", + "3458", + "3479", + "351", + "353514", + "3558", + "3562", + "3565", + "3569", + "3570", + "3572", + "3589", + "3592", + "3593", + "3600", + "3606", + "3678", + "3689", + "3690", + "3815", + "3976", + "4282", + "4739", + "4771", + "4908", + "5008", + "50604", + "5062", + "51378", + "5155", + "51561", + "5168", + "5175", + "54206", + "54209", + "54625", + "55024", + "55294", + "5590", + "5621", + "56940", + "57091", + "5753", + "5770", + "5771", + "57732", + "5777", + "5781", + "5788", + "59067", + "6422", + "653361", + "654", + "6714", + "683", + "6868", + "6997", + "7040", + "7060", + "7132", + "7251", + "7448", + "79031", + "79643", + "80725", + "83666", + "84313", + "84619", + "85480", + "857", + "8651", + "8692", + "8767", + "8784", + "8829", + "8995", + "90", + "90070", + "9021", + "9094", + "9181", + "9244", + "941", + "958", + "960", + "9655", + "972", + "9961" + ] + }, + "GO:0060491": { + "Name": "regulation of cell projection assembly", + "Task": "GO", + "Genes": [ + "100287171", + "10096", + "10097", + "10109", + "10152", + "10163", + "10198", + "10413", + "10435", + "10677", + "10787", + "10801", + "10806", + "10807", + "11135", + "11138", + "11344", + "115704", + "116985", + "1236", + "125058", + "128637", + "139818", + "146206", + "148170", + "158297", + "161514", + "1902", + "1969", + "202018", + "2039", + "207", + "2241", + "225689", + "22954", + "23061", + "23102", + "23189", + "23191", + "23216", + "2332", + "23329", + "23433", + "23500", + "23580", + "23637", + "255758", + "25771", + "2596", + "26000", + "2665", + "27352", + "3064", + "324", + "3265", + "3273", + "345643", + "347240", + "374403", + "377630", + "378", + "382", + "3985", + "4134", + "4651", + "49856", + "5027", + "5064", + "51196", + "51256", + "51466", + "51473", + "51626", + "5205", + "5216", + "5217", + "5337", + "54443", + "54521", + "54662", + "54869", + "54874", + "55296", + "55357", + "55633", + "55704", + "55845", + "57465", + "57489", + "57533", + "57787", + "5868", + "5879", + "5880", + "5898", + "5909", + "5962", + "6366", + "642273", + "64786", + "64787", + "64805", + "64844", + "653464", + "6624", + "6792", + "7016", + "7226", + "729873", + "7401", + "7454", + "7471", + "7813", + "79598", + "79734", + "79735", + "79874", + "80199", + "8100", + "83874", + "84260", + "84299", + "8558", + "857", + "8766", + "8829", + "90410", + "9353", + "9662", + "9696", + "9712", + "9727", + "9738", + "9742", + "9750", + "9779", + "989" + ] + }, + "GO:0016050": { + "Name": "vesicle organization", + "Task": "GO", + "Genes": [ + "10016", + "10043", + "10058", + "10113", + "10228", + "10254", + "10427", + "10484", + "10564", + "10802", + "10959", + "10972", + "10981", + "11151", + "11267", + "1173", + "1182", + "128637", + "128866", + "137492", + "144717", + "1453", + "149371", + "150368", + "155382", + "164", + "1759", + "19", + "200576", + "2060", + "2149", + "22872", + "23023", + "23317", + "23325", + "23339", + "23355", + "23400", + "23603", + "23682", + "252839", + "257364", + "25825", + "25978", + "26276", + "27072", + "27183", + "27243", + "284382", + "29091", + "29887", + "29911", + "29916", + "302", + "3257", + "348", + "375056", + "399687", + "399979", + "4033", + "4218", + "440400", + "4935", + "51028", + "51160", + "51361", + "51479", + "51652", + "54732", + "54734", + "54809", + "54874", + "55048", + "553115", + "55353", + "5537", + "55647", + "55823", + "56681", + "57393", + "57617", + "5798", + "5861", + "5873", + "59349", + "6272", + "6281", + "6396", + "63971", + "64083", + "64400", + "6490", + "653145", + "6622", + "6812", + "6844", + "6845", + "7251", + "7879", + "79102", + "79156", + "79643", + "79720", + "80183", + "8027", + "8301", + "83547", + "83871", + "84067", + "8411", + "84313", + "84376", + "8452", + "85409", + "8546", + "858", + "8674", + "8724", + "8729", + "8766", + "8878", + "8907", + "8938", + "8943", + "89781", + "9002", + "9146", + "9217", + "9218", + "92421", + "93343", + "9392", + "947", + "9632", + "9842", + "9871" + ] + }, + "GO:0120032": { + "Name": "regulation of plasma membrane bounded cell projection assembly", + "Task": "GO", + "Genes": [ + "100287171", + "10096", + "10097", + "10109", + "10152", + "10163", + "10198", + "10413", + "10435", + "10677", + "10787", + "10801", + "10806", + "10807", + "11135", + "11138", + "11344", + "115704", + "116985", + "1236", + "125058", + "128637", + "139818", + "146206", + "148170", + "158297", + "161514", + "1902", + "1969", + "202018", + "2039", + "207", + "2241", + "225689", + "22954", + "23061", + "23102", + "23189", + "23191", + "23216", + "2332", + "23329", + "23433", + "23500", + "23580", + "23637", + "255758", + "25771", + "2596", + "26000", + "2665", + "27352", + "3064", + "324", + "3265", + "3273", + "345643", + "347240", + "374403", + "377630", + "378", + "382", + "3985", + "4134", + "4651", + "49856", + "5027", + "5064", + "51196", + "51256", + "51466", + "51473", + "51626", + "5205", + "5216", + "5217", + "5337", + "54443", + "54521", + "54662", + "54869", + "54874", + "55296", + "55357", + "55633", + "55704", + "55845", + "57465", + "57489", + "57533", + "57787", + "5868", + "5879", + "5880", + "5898", + "5909", + "5962", + "6366", + "64786", + "64787", + "64805", + "64844", + "653464", + "6624", + "6792", + "7016", + "7226", + "729873", + "7401", + "7454", + "7471", + "7813", + "79598", + "79734", + "79735", + "79874", + "80199", + "8100", + "83874", + "84260", + "84299", + "8558", + "857", + "8766", + "8829", + "90410", + "9353", + "9662", + "9696", + "9712", + "9727", + "9738", + "9742", + "9750", + "9779", + "989" + ] + }, + "GO:0045732": { + "Name": "positive regulation of protein catabolic process", + "Task": "GO", + "Genes": [ + "101", + "10134", + "10193", + "1027", + "10273", + "10399", + "10444", + "1050", + "10533", + "10769", + "11124", + "112398", + "11267", + "11337", + "114881", + "116224", + "1191", + "1263", + "139285", + "140462", + "144165", + "1452", + "1457", + "150", + "153090", + "153769", + "1601", + "160418", + "1642", + "165324", + "1855", + "20", + "207", + "22933", + "2308", + "23640", + "255738", + "257364", + "25898", + "25976", + "26471", + "267012", + "2822", + "283106", + "2931", + "2932", + "29763", + "29978", + "29979", + "29997", + "324", + "3300", + "3303", + "3320", + "3416", + "3458", + "348", + "3553", + "4035", + "4092", + "4193", + "4287", + "4478", + "4734", + "4780", + "4898", + "4905", + "4946", + "5045", + "5071", + "51079", + "51136", + "51160", + "51257", + "51339", + "51429", + "51514", + "51548", + "51667", + "5347", + "55070", + "55212", + "55294", + "55737", + "55823", + "5701", + "5702", + "5705", + "5706", + "5716", + "5886", + "5962", + "5988", + "641700", + "64326", + "6449", + "65992", + "6613", + "6653", + "6811", + "6872", + "7124", + "7128", + "7133", + "722", + "725", + "7341", + "7415", + "7430", + "7432", + "7474", + "7879", + "7917", + "79589", + "79699", + "8078", + "81542", + "8312", + "83547", + "8451", + "85407", + "85409", + "857", + "863", + "8742", + "8975", + "91445", + "9554", + "9655", + "9709", + "9730", + "975", + "9817", + "9978", + "9992" + ] + }, + "GO:0016236": { + "Name": "macroautophagy", + "Task": "GO", + "Genes": [ + "10043", + "10241", + "10254", + "10490", + "10533", + "11152", + "11267", + "11331", + "115201", + "124997", + "128866", + "137492", + "155382", + "157753", + "162427", + "192111", + "22863", + "23001", + "23130", + "23192", + "23241", + "23339", + "23341", + "23376", + "23400", + "23503", + "23647", + "23673", + "25851", + "25978", + "26100", + "26249", + "26276", + "27243", + "285180", + "285636", + "285973", + "29979", + "30849", + "340061", + "345611", + "3964", + "4077", + "440026", + "440738", + "472", + "488", + "5071", + "51028", + "51160", + "5119", + "51368", + "51506", + "51510", + "51569", + "51652", + "51715", + "5289", + "53349", + "54463", + "550", + "55014", + "55048", + "55054", + "55062", + "55432", + "55626", + "56270", + "57132", + "57154", + "57231", + "57535", + "57674", + "5828", + "5830", + "58476", + "5861", + "60673", + "63894", + "64419", + "64422", + "64601", + "65018", + "65082", + "65992", + "6714", + "6845", + "6901", + "7189", + "7251", + "7405", + "7415", + "7879", + "79065", + "79643", + "79720", + "79876", + "80183", + "80208", + "8027", + "80700", + "81631", + "81671", + "83460", + "83734", + "83933", + "8408", + "84313", + "84557", + "84749", + "84938", + "84971", + "8673", + "8678", + "8878", + "8897", + "8987", + "9140", + "91452", + "9146", + "91782", + "9179", + "92421", + "93343", + "9342", + "9373", + "9474", + "9776", + "9779", + "9821", + "9842", + "987", + "9927" + ] + }, + "GO:1903039": { + "Name": "positive regulation of leukocyte cell-cell adhesion", + "Task": "GO", + "Genes": [ + "100133941", + "10148", + "10288", + "10524", + "10725", + "10808", + "10859", + "11006", + "11126", + "11148", + "11221", + "126259", + "1326", + "1378", + "1445", + "149233", + "1604", + "177", + "1803", + "199", + "207", + "2113", + "22914", + "2309", + "23149", + "2319", + "23308", + "2475", + "2529", + "2534", + "259307", + "29108", + "29126", + "301", + "3037", + "3071", + "30835", + "3105", + "3109", + "3113", + "3115", + "3122", + "3123", + "3133", + "3135", + "3146", + "3329", + "3458", + "3479", + "3481", + "3485", + "3553", + "3558", + "3565", + "3569", + "3572", + "3592", + "3593", + "3594", + "3606", + "3654", + "3717", + "387", + "3952", + "3965", + "399", + "4067", + "4179", + "4192", + "4690", + "4860", + "50943", + "51561", + "5170", + "5290", + "55423", + "55626", + "5777", + "5781", + "57829", + "59067", + "5914", + "5970", + "604", + "6046", + "6188", + "6375", + "64115", + "64410", + "6484", + "64926", + "6541", + "6714", + "7037", + "7048", + "7124", + "7189", + "7297", + "7409", + "7412", + "7494", + "7525", + "7535", + "79576", + "8013", + "80381", + "81704", + "8440", + "84433", + "857", + "8600", + "8631", + "8651", + "8740", + "8764", + "9092", + "912", + "916", + "923", + "940", + "959", + "960", + "961", + "970", + "975" + ] + }, + "GO:0098813": { + "Name": "nuclear chromosome segregation", + "Task": "GO", + "Genes": [ + "10015", + "10051", + "10274", + "10403", + "10464", + "10540", + "10592", + "10609", + "10615", + "1062", + "1063", + "10726", + "10734", + "10735", + "11004", + "11130", + "11200", + "113130", + "126353", + "128866", + "129563", + "147841", + "148479", + "151648", + "152185", + "158983", + "1642", + "200942", + "220134", + "221150", + "22919", + "22974", + "23063", + "2316", + "23172", + "23212", + "23310", + "23397", + "23636", + "24137", + "256364", + "25879", + "25978", + "26065", + "2669", + "26993", + "27183", + "27243", + "27436", + "2801", + "283489", + "285643", + "29098", + "29127", + "29128", + "29893", + "317761", + "347688", + "348235", + "3796", + "3832", + "3833", + "3834", + "3835", + "3837", + "387", + "387893", + "49856", + "51112", + "5119", + "51203", + "51510", + "51652", + "5347", + "54617", + "54627", + "54908", + "54984", + "55125", + "55143", + "55165", + "55166", + "55201", + "56647", + "57082", + "57132", + "5728", + "57405", + "5901", + "5925", + "64151", + "6795", + "729440", + "7756", + "79003", + "79643", + "79884", + "79998", + "8086", + "81610", + "81620", + "81929", + "81930", + "8243", + "83540", + "84057", + "8452", + "84643", + "84722", + "84861", + "8678", + "8697", + "8766", + "891", + "90417", + "9055", + "9113", + "9126", + "91272", + "91782", + "9183", + "9184", + "9212", + "92421", + "93426", + "9371", + "9493", + "9525", + "9639", + "9700", + "9918", + "9928" + ] + }, + "GO:0043161": { + "Name": "proteasome-mediated ubiquitin-dependent protein catabolic process", + "Task": "GO", + "Genes": [ + "10116", + "10206", + "10210", + "10273", + "10277", + "10299", + "10513", + "10524", + "10616", + "10973", + "11060", + "11065", + "114088", + "1161", + "116138", + "117584", + "122416", + "122773", + "130617", + "148066", + "149603", + "1499", + "1642", + "1649", + "223082", + "22933", + "23008", + "23053", + "23194", + "23220", + "23291", + "23327", + "23411", + "23532", + "23588", + "253980", + "25793", + "25827", + "25853", + "25879", + "26046", + "26133", + "26224", + "26234", + "26249", + "26268", + "26270", + "26272", + "26273", + "27252", + "27338", + "283807", + "329", + "339745", + "3429", + "343070", + "378884", + "408", + "409", + "4193", + "440561", + "4780", + "5071", + "5094", + "51185", + "51283", + "51343", + "51676", + "5371", + "54461", + "54476", + "54546", + "55122", + "5527", + "55284", + "55294", + "55527", + "55626", + "55658", + "56929", + "5705", + "57092", + "57154", + "57162", + "57542", + "6047", + "64326", + "6451", + "6477", + "64839", + "6500", + "6502", + "7126", + "7320", + "7321", + "7323", + "7334", + "7415", + "7428", + "7726", + "79654", + "79734", + "79791", + "79845", + "80196", + "80263", + "80311", + "81545", + "83737", + "8405", + "84078", + "84164", + "8451", + "8452", + "8453", + "8454", + "84861", + "8945", + "89890", + "899", + "90850", + "9112", + "9147", + "9325", + "9867", + "991", + "9921", + "9928", + "997", + "9978" + ] + }, + "GO:0002429": { + "Name": "immune response-activating cell surface receptor signaling pathway", + "Task": "GO", + "Genes": [ + "10451", + "10603", + "10616", + "10657", + "10892", + "11027", + "11119", + "114609", + "1147", + "121665", + "1378", + "1387", + "1445", + "148022", + "1493", + "163486", + "196051", + "1967", + "199920", + "2033", + "2219", + "2268", + "22841", + "23149", + "23180", + "25", + "2533", + "2534", + "25800", + "25865", + "259197", + "26191", + "27040", + "2822", + "2867", + "29110", + "29760", + "3055", + "3071", + "30968", + "3105", + "3115", + "3119", + "3123", + "353376", + "3551", + "3635", + "3654", + "3656", + "3661", + "3822", + "3824", + "3929", + "3937", + "3965", + "3984", + "4067", + "4153", + "4277", + "4332", + "4773", + "4792", + "4938", + "5058", + "5062", + "5063", + "51135", + "51295", + "51324", + "5142", + "5144", + "5290", + "5293", + "5335", + "5336", + "5338", + "55024", + "55072", + "5580", + "5581", + "57402", + "5747", + "5788", + "5795", + "581", + "59338", + "596", + "5970", + "640", + "6714", + "6850", + "6885", + "695", + "7006", + "7097", + "7099", + "7100", + "7187", + "7189", + "719", + "728", + "7305", + "7334", + "7409", + "7410", + "7462", + "7525", + "7535", + "7917", + "79931", + "8398", + "84174", + "8631", + "8767", + "8890", + "8891", + "8892", + "8893", + "8915", + "925", + "926", + "930", + "931", + "952", + "9564", + "9865" + ] + }, + "GO:0046777": { + "Name": "protein autophosphorylation", + "Task": "GO", + "Genes": [ + "10494", + "10553", + "10645", + "10783", + "11035", + "11184", + "11200", + "120892", + "127933", + "131890", + "1436", + "150094", + "1612", + "1613", + "1956", + "2041", + "2043", + "2047", + "2049", + "2050", + "2066", + "207", + "2081", + "2185", + "2241", + "2242", + "225689", + "2260", + "2263", + "2264", + "2268", + "22853", + "23043", + "23049", + "23178", + "2321", + "2322", + "23235", + "2324", + "23400", + "23604", + "23617", + "238", + "2475", + "25", + "25865", + "25989", + "27347", + "2869", + "2932", + "29904", + "3055", + "3480", + "3643", + "3645", + "3654", + "3791", + "3815", + "4058", + "4067", + "4117", + "4140", + "4215", + "4293", + "4296", + "472", + "4751", + "4914", + "4921", + "50488", + "5058", + "5062", + "51347", + "5156", + "5159", + "5170", + "51755", + "51765", + "51776", + "5292", + "53904", + "545", + "55781", + "5587", + "5595", + "5605", + "5610", + "5613", + "56975", + "5747", + "5753", + "6011", + "65018", + "65267", + "65268", + "660", + "6714", + "6725", + "6789", + "6790", + "6792", + "6793", + "6794", + "6872", + "7294", + "7301", + "7443", + "7444", + "780", + "79834", + "815", + "816", + "817", + "8408", + "8428", + "85366", + "8550", + "8576", + "8711", + "8737", + "91", + "9175", + "9212", + "9344", + "9451", + "9706", + "9748", + "9833", + "9943" + ] + }, + "GO:0032535": { + "Name": "regulation of cellular component size", + "Task": "GO", + "Genes": [ + "10344", + "10371", + "10435", + "10451", + "10456", + "10507", + "10542", + "10565", + "1073", + "11194", + "11344", + "1173", + "118", + "1182", + "119", + "1236", + "136319", + "1440", + "146206", + "148170", + "1630", + "1826", + "1906", + "196527", + "2017", + "2150", + "2185", + "2241", + "23108", + "23189", + "23341", + "23400", + "23499", + "23500", + "23616", + "23645", + "24142", + "2475", + "25", + "253725", + "25802", + "27347", + "2784", + "2803", + "282679", + "2934", + "3055", + "3059", + "3071", + "348", + "358", + "3778", + "382", + "387", + "389541", + "4137", + "442721", + "4478", + "4504", + "4690", + "5027", + "5063", + "50809", + "51334", + "51474", + "51520", + "51571", + "5216", + "5217", + "5341", + "53841", + "54825", + "55971", + "56262", + "57026", + "57142", + "57403", + "57482", + "57521", + "5865", + "5868", + "5879", + "5916", + "5921", + "59341", + "5962", + "627", + "6356", + "6366", + "6369", + "6387", + "64798", + "64857", + "65125", + "65267", + "6557", + "6558", + "7114", + "7408", + "7409", + "7410", + "7429", + "7430", + "7454", + "79714", + "79890", + "80131", + "8301", + "83547", + "84335", + "8440", + "8482", + "85477", + "859", + "8766", + "8799", + "88", + "8800", + "9026", + "9087", + "90952", + "9113", + "91663", + "92960", + "9353", + "93663", + "9368", + "9856", + "9943", + "9948", + "9990" + ] + }, + "GO:0051047": { + "Name": "positive regulation of secretion", + "Task": "GO", + "Genes": [ + "10015", + "100507043", + "10059", + "101", + "10307", + "10497", + "1080", + "10972", + "11132", + "11267", + "114897", + "114899", + "1392", + "1579", + "1588", + "164", + "1906", + "1908", + "192683", + "201294", + "2150", + "2181", + "222546", + "2243", + "2244", + "2266", + "23086", + "23122", + "23332", + "23400", + "23607", + "242", + "2587", + "25930", + "2645", + "2668", + "2691", + "27063", + "27183", + "27243", + "2746", + "283", + "28984", + "3077", + "3123", + "3134", + "322", + "3479", + "3552", + "358", + "3623", + "3624", + "3625", + "3630", + "3670", + "3684", + "3689", + "376267", + "382", + "3822", + "3916", + "399687", + "43", + "4628", + "4824", + "4879", + "4881", + "50487", + "51083", + "51124", + "51738", + "51768", + "5319", + "54209", + "5478", + "5481", + "55107", + "55204", + "553", + "55691", + "57126", + "57555", + "5864", + "5868", + "5873", + "5874", + "5950", + "6382", + "6385", + "6386", + "640", + "64083", + "6622", + "6696", + "6810", + "6845", + "6934", + "7036", + "7040", + "7042", + "7043", + "7097", + "7099", + "7251", + "7273", + "7349", + "7784", + "7879", + "79971", + "8027", + "8399", + "84932", + "8529", + "8673", + "8723", + "8736", + "8754", + "8938", + "90070", + "90550", + "9146", + "9367", + "94121", + "945", + "9525", + "9545", + "9607", + "9619", + "9854" + ] + }, + "GO:0070663": { + "Name": "regulation of leukocyte proliferation", + "Task": "GO", + "Genes": [ + "100133941", + "10148", + "10288", + "10451", + "10457", + "10673", + "10859", + "11006", + "11146", + "11148", + "11314", + "115352", + "1178", + "126259", + "1378", + "1401", + "1435", + "1436", + "1437", + "1439", + "146433", + "149233", + "1493", + "1604", + "177", + "1880", + "196", + "199", + "2048", + "2255", + "23240", + "23308", + "259307", + "26191", + "26585", + "29126", + "301", + "3071", + "30835", + "3087", + "3105", + "3109", + "3113", + "3115", + "3123", + "3133", + "3135", + "3146", + "3479", + "3481", + "3485", + "3553", + "3558", + "3568", + "3569", + "3572", + "3586", + "3592", + "3593", + "3594", + "3606", + "3620", + "3717", + "383", + "3952", + "3958", + "3965", + "4067", + "4179", + "4282", + "4332", + "4690", + "472", + "4773", + "4860", + "50943", + "51293", + "51561", + "54106", + "5573", + "5594", + "5595", + "57045", + "5747", + "57829", + "5788", + "59067", + "596", + "6188", + "6375", + "6385", + "63925", + "64115", + "6441", + "64926", + "652", + "6541", + "6664", + "684", + "7037", + "7048", + "7297", + "7305", + "7412", + "7940", + "79679", + "80380", + "80381", + "8440", + "8744", + "912", + "916", + "923", + "9231", + "940", + "944", + "952", + "959", + "970", + "972", + "975" + ] + }, + "GO:1903828": { + "Name": "negative regulation of protein localization", + "Task": "GO", + "Genes": [ + "1025", + "10391", + "10956", + "10961", + "11006", + "11060", + "112609", + "11261", + "11315", + "1173", + "120892", + "131177", + "131578", + "135644", + "137886", + "1445", + "146057", + "150", + "150684", + "1601", + "1813", + "1814", + "1815", + "201163", + "207", + "23327", + "23409", + "23433", + "2475", + "257364", + "258010", + "25885", + "25942", + "26056", + "26297", + "2633", + "2664", + "2665", + "27248", + "283514", + "285381", + "29934", + "30851", + "3301", + "337867", + "347", + "348", + "353500", + "3592", + "3593", + "3630", + "3638", + "3667", + "3767", + "377630", + "4137", + "4140", + "4345", + "4988", + "5071", + "51009", + "51465", + "51548", + "51569", + "51588", + "51684", + "51715", + "51763", + "54585", + "54741", + "55022", + "5525", + "55432", + "55968", + "56246", + "56957", + "57120", + "580", + "5905", + "5978", + "598", + "6047", + "6248", + "64114", + "6422", + "64285", + "64771", + "65267", + "6672", + "689", + "7013", + "7040", + "7327", + "7341", + "7415", + "7534", + "80223", + "80762", + "8301", + "84830", + "8500", + "8609", + "8650", + "8724", + "88", + "88455", + "89958", + "91319", + "91543", + "9258", + "9270", + "9370", + "9475", + "9528", + "9530", + "9555", + "9647", + "9727" + ] + }, + "GO:0050920": { + "Name": "regulation of chemotaxis", + "Task": "GO", + "Genes": [ + "10059", + "1012", + "102", + "10344", + "10488", + "10563", + "11240", + "1230", + "1236", + "1240", + "1435", + "1436", + "146433", + "158747", + "1652", + "1803", + "1826", + "1843", + "1845", + "1880", + "1907", + "1908", + "1948", + "196527", + "199", + "2150", + "2152", + "2155", + "2246", + "2247", + "2249", + "2260", + "2277", + "22914", + "2358", + "23604", + "25865", + "2621", + "27202", + "27347", + "284340", + "285", + "3146", + "3273", + "3315", + "347733", + "3569", + "3570", + "3576", + "3592", + "3627", + "3791", + "3965", + "4067", + "4192", + "4233", + "4282", + "4851", + "4856", + "4908", + "5025", + "5054", + "51157", + "5155", + "5156", + "51571", + "5587", + "5594", + "5595", + "5641", + "57118", + "57175", + "57402", + "5747", + "5879", + "5880", + "5919", + "6091", + "6092", + "6278", + "6346", + "6347", + "6348", + "6351", + "6354", + "6363", + "6366", + "6375", + "6387", + "64094", + "64805", + "65125", + "6809", + "6810", + "683", + "6868", + "7040", + "7057", + "7060", + "708", + "7114", + "7130", + "727", + "7424", + "7474", + "7852", + "7857", + "7941", + "79890", + "811", + "83700", + "8817", + "8823", + "90550", + "9097", + "9353", + "9647", + "9943" + ] + }, + "GO:0031334": { + "Name": "positive regulation of protein-containing complex assembly", + "Task": "GO", + "Genes": [ + "10018", + "1003", + "10142", + "1015", + "10273", + "10344", + "10399", + "10435", + "10979", + "11076", + "11124", + "11315", + "114609", + "115362", + "1191", + "1236", + "140609", + "143098", + "1437", + "1440", + "146206", + "148170", + "153090", + "1639", + "1981", + "2017", + "21", + "2185", + "2241", + "2242", + "22919", + "23379", + "23514", + "253725", + "25802", + "26191", + "28964", + "2932", + "3055", + "3071", + "3084", + "3303", + "3304", + "3320", + "3458", + "3567", + "373509", + "382", + "388630", + "3936", + "3958", + "402", + "4137", + "4204", + "4233", + "4312", + "4314", + "442721", + "4690", + "472", + "4733", + "4926", + "5058", + "51100", + "5216", + "5217", + "5336", + "545", + "54552", + "54922", + "55612", + "55626", + "55719", + "55755", + "55845", + "55971", + "5599", + "56919", + "57482", + "57506", + "57600", + "57606", + "57787", + "578", + "581", + "5879", + "5908", + "6188", + "6249", + "6356", + "6366", + "6369", + "637", + "638", + "64581", + "6622", + "6624", + "6714", + "6850", + "6886", + "695", + "7013", + "7037", + "7040", + "7124", + "7157", + "7341", + "7408", + "7415", + "7453", + "79184", + "79998", + "81857", + "822", + "84250", + "8440", + "84630", + "84962", + "8631", + "8739", + "89795", + "9636", + "96459", + "9780", + "9793" + ] + }, + "GO:0070374": { + "Name": "positive regulation of ERK1 and ERK2 cascade", + "Task": "GO", + "Genes": [ + "10125", + "10253", + "10268", + "10457", + "10979", + "1116", + "11331", + "114609", + "116", + "1230", + "1236", + "1399", + "1490", + "152007", + "1652", + "168667", + "177", + "1880", + "1956", + "195827", + "2066", + "2150", + "2185", + "222166", + "2243", + "2244", + "2246", + "2247", + "2249", + "2261", + "2264", + "2266", + "2324", + "2358", + "23779", + "246", + "2492", + "25778", + "26191", + "2621", + "26291", + "2651", + "284", + "284340", + "285016", + "2852", + "29108", + "3084", + "3123", + "3146", + "3265", + "3356", + "3357", + "3358", + "3383", + "341152", + "3479", + "348", + "351", + "3791", + "388325", + "389658", + "3965", + "408", + "409", + "4282", + "4342", + "4504", + "4838", + "4851", + "4853", + "4914", + "5031", + "5151", + "5154", + "5155", + "5156", + "5159", + "5245", + "5320", + "5322", + "5345", + "54209", + "54550", + "55294", + "55532", + "55801", + "5590", + "5595", + "5604", + "5609", + "57007", + "5781", + "6278", + "6348", + "6363", + "6366", + "6376", + "6464", + "64762", + "650", + "65009", + "6504", + "673", + "7010", + "7040", + "728", + "7786", + "8482", + "920", + "9258", + "9290", + "9464", + "960", + "9693", + "972", + "9965" + ] + }, + "GO:0050708": { + "Name": "regulation of protein secretion", + "Task": "GO", + "Genes": [ + "100507043", + "10059", + "101", + "10307", + "10497", + "1080", + "10961", + "10972", + "111", + "11132", + "114", + "114899", + "131177", + "150", + "1813", + "1814", + "1815", + "2029", + "222546", + "2243", + "2244", + "2266", + "23086", + "23400", + "23409", + "23607", + "252983", + "25930", + "26056", + "26297", + "2645", + "2695", + "2696", + "27063", + "27236", + "2746", + "283", + "285381", + "3123", + "322", + "3458", + "3479", + "348", + "353500", + "3552", + "3553", + "3569", + "3592", + "3593", + "3630", + "3667", + "3670", + "3741", + "3767", + "382", + "399687", + "43", + "4345", + "4544", + "4628", + "4760", + "4843", + "4988", + "5071", + "51124", + "5127", + "51548", + "51768", + "5319", + "54209", + "5478", + "5481", + "55107", + "55204", + "55691", + "57555", + "57818", + "5950", + "5978", + "63036", + "640", + "64083", + "64175", + "64215", + "6422", + "64285", + "6616", + "6804", + "6810", + "6934", + "7021", + "7040", + "7042", + "7043", + "7097", + "7099", + "7124", + "7273", + "79971", + "80024", + "80223", + "84830", + "8609", + "8736", + "8754", + "8938", + "9024", + "90550", + "91543", + "94121", + "945", + "9463", + "9619", + "9727", + "9854", + "9971" + ] + }, + "GO:0062207": { + "Name": "regulation of pattern recognition receptor signaling pathway", + "Task": "GO", + "Genes": [ + "10062", + "10211", + "10612", + "11027", + "11074", + "11277", + "11314", + "114609", + "115004", + "115352", + "115362", + "121260", + "127018", + "140609", + "142", + "146722", + "148066", + "152138", + "153090", + "1535", + "1654", + "197358", + "207", + "2150", + "22900", + "22954", + "2319", + "23369", + "23547", + "25827", + "25921", + "26007", + "260434", + "26057", + "26191", + "2672", + "285852", + "286430", + "29997", + "329", + "330", + "3303", + "3304", + "331", + "3312", + "3430", + "345611", + "353376", + "373509", + "377630", + "3929", + "4057", + "4210", + "4795", + "5094", + "5295", + "5336", + "54106", + "54209", + "54726", + "54941", + "5537", + "55577", + "55601", + "55666", + "5591", + "55914", + "5599", + "56919", + "57506", + "57590", + "57787", + "57864", + "5802", + "58509", + "63906", + "6397", + "6714", + "6895", + "695", + "708", + "7096", + "7105", + "7128", + "7353", + "79132", + "79184", + "80231", + "80772", + "81559", + "81790", + "83737", + "84243", + "84885", + "84937", + "85364", + "857", + "8638", + "8780", + "8815", + "8878", + "8887", + "89870", + "9212", + "9258", + "92747", + "948", + "9572", + "9684", + "9698", + "9867", + "9958" + ] + }, + "GO:0140014": { + "Name": "mitotic nuclear division", + "Task": "GO", + "Genes": [ + "10015", + "10051", + "10274", + "10403", + "10464", + "10540", + "10592", + "10615", + "1062", + "10726", + "10735", + "11004", + "1104", + "11065", + "11130", + "11200", + "113130", + "126353", + "128866", + "129563", + "148362", + "148479", + "152185", + "158983", + "200942", + "220134", + "221035", + "221150", + "22919", + "22933", + "22974", + "23063", + "23122", + "23141", + "2316", + "23172", + "23212", + "23310", + "23332", + "23397", + "23636", + "24137", + "256364", + "25978", + "26065", + "26993", + "27183", + "27243", + "27338", + "27436", + "2801", + "283489", + "285643", + "29098", + "29127", + "29128", + "348235", + "3796", + "3832", + "3833", + "3834", + "3835", + "3837", + "387", + "387893", + "49856", + "5119", + "51203", + "51510", + "51652", + "5347", + "54617", + "54627", + "54908", + "54984", + "55125", + "55143", + "55165", + "56647", + "57082", + "57132", + "5901", + "64151", + "6683", + "6795", + "729440", + "7329", + "7756", + "79003", + "79643", + "79884", + "79998", + "80346", + "8086", + "81620", + "81929", + "81930", + "8243", + "8452", + "84722", + "84861", + "8678", + "8697", + "8766", + "8815", + "891", + "90417", + "9055", + "9126", + "91272", + "9150", + "91782", + "9183", + "9212", + "92421", + "9371", + "9493", + "9525", + "9639", + "9700", + "9918", + "9928" + ] + }, + "GO:1901343": { + "Name": "negative regulation of vasculature development", + "Task": "GO", + "Genes": [ + "10218", + "10253", + "10365", + "11005", + "11061", + "11126", + "112744", + "128240", + "1284", + "1285", + "1386", + "153090", + "154796", + "161742", + "1634", + "1870", + "1944", + "22846", + "22905", + "23166", + "23213", + "23251", + "26523", + "2658", + "28984", + "2969", + "29924", + "30832", + "3135", + "3202", + "3273", + "3339", + "350", + "356", + "3627", + "4204", + "4303", + "4879", + "4881", + "493", + "5054", + "51378", + "5140", + "5176", + "5196", + "5230", + "5291", + "5371", + "54361", + "5468", + "55333", + "55810", + "575", + "57556", + "5797", + "5970", + "6093", + "6301", + "641700", + "6678", + "6772", + "7010", + "7042", + "7057", + "7058", + "7122", + "7124", + "8838", + "889", + "90993", + "9146", + "9314", + "9475", + "9510" + ] + }, + "GO:1903532": { + "Name": "positive regulation of secretion by cell", + "Task": "GO", + "Genes": [ + "10015", + "100507043", + "10059", + "101", + "10307", + "10497", + "1080", + "10972", + "11132", + "11267", + "114897", + "114899", + "1392", + "1588", + "164", + "1906", + "1908", + "192683", + "201294", + "2150", + "222546", + "2243", + "2244", + "2266", + "23086", + "23122", + "23332", + "23400", + "23607", + "2587", + "25930", + "2645", + "2668", + "2691", + "27063", + "27183", + "27243", + "2746", + "283", + "28984", + "3077", + "3123", + "3134", + "322", + "3479", + "3552", + "3623", + "3624", + "3625", + "3630", + "3670", + "3684", + "3689", + "376267", + "382", + "3822", + "3916", + "399687", + "43", + "4628", + "4824", + "50487", + "51083", + "51124", + "51738", + "51768", + "5319", + "54209", + "5478", + "5481", + "55107", + "55204", + "55691", + "57126", + "57555", + "5864", + "5868", + "5873", + "5874", + "5950", + "6382", + "6385", + "6386", + "640", + "64083", + "6622", + "6696", + "6810", + "6845", + "6934", + "7036", + "7040", + "7042", + "7043", + "7097", + "7099", + "7251", + "7273", + "7349", + "7784", + "7879", + "79971", + "8027", + "8399", + "84932", + "8673", + "8723", + "8736", + "8754", + "8938", + "90550", + "9146", + "9367", + "94121", + "945", + "9525", + "9545", + "9607", + "9619", + "9854" + ] + }, + "GO:0031346": { + "Name": "positive regulation of cell projection organization", + "Task": "GO", + "Genes": [ + "100287171", + "10096", + "10097", + "10109", + "10152", + "10163", + "10435", + "10507", + "10677", + "10690", + "10787", + "10801", + "10807", + "11075", + "11135", + "11344", + "114798", + "116985", + "1236", + "126520", + "139818", + "146206", + "148170", + "150696", + "158297", + "162427", + "1826", + "2011", + "202018", + "2033", + "2042", + "2185", + "2242", + "23064", + "23191", + "23363", + "23433", + "23499", + "23580", + "23603", + "23654", + "26259", + "27", + "2803", + "285016", + "2889", + "3064", + "322", + "324", + "3265", + "347733", + "348", + "3630", + "382", + "389658", + "4058", + "4067", + "4137", + "4192", + "4914", + "49856", + "5027", + "50487", + "5064", + "51196", + "51657", + "5168", + "5216", + "5365", + "54443", + "54869", + "54874", + "55604", + "55704", + "5584", + "55845", + "5587", + "57175", + "5753", + "5754", + "57787", + "5879", + "5880", + "5898", + "5979", + "6014", + "6091", + "6092", + "6239", + "627", + "6366", + "64787", + "64805", + "653", + "655", + "6624", + "6714", + "7401", + "7429", + "7471", + "79625", + "79734", + "80199", + "8100", + "84299", + "8482", + "8536", + "8829", + "90410", + "9139", + "91752", + "9353", + "9662", + "9696", + "9750", + "989" + ] + }, + "GO:0050870": { + "Name": "positive regulation of T cell activation", + "Task": "GO", + "Genes": [ + "100133941", + "10148", + "10288", + "10524", + "10808", + "10859", + "11006", + "11126", + "11148", + "11221", + "126259", + "1326", + "1378", + "1445", + "149233", + "1604", + "177", + "1803", + "199", + "207", + "22914", + "2309", + "23149", + "2319", + "23308", + "2475", + "2534", + "259307", + "29108", + "29126", + "301", + "3071", + "30835", + "3105", + "3109", + "3113", + "3115", + "3122", + "3123", + "3133", + "3135", + "3146", + "3329", + "3458", + "3479", + "3481", + "3485", + "3553", + "3558", + "3565", + "3569", + "3572", + "3592", + "3593", + "3594", + "3606", + "3717", + "3952", + "3965", + "399", + "4067", + "4179", + "4690", + "4860", + "50943", + "51561", + "5170", + "5290", + "55423", + "55626", + "5777", + "5781", + "57829", + "59067", + "5914", + "604", + "6046", + "6188", + "6375", + "64115", + "64410", + "64926", + "6541", + "6714", + "7037", + "7048", + "7297", + "7409", + "7412", + "7494", + "7525", + "7535", + "79576", + "80381", + "81704", + "8440", + "84433", + "857", + "8600", + "8651", + "8740", + "8764", + "9092", + "912", + "916", + "923", + "940", + "959", + "961", + "970", + "975" + ] + }, + "GO:0050900": { + "Name": "leukocyte migration", + "Task": "GO", + "Genes": [ + "10344", + "10563", + "1113", + "119", + "120425", + "1230", + "1234", + "1235", + "1236", + "140596", + "1511", + "1525", + "1667", + "1880", + "1906", + "1907", + "1908", + "1910", + "200576", + "2150", + "2321", + "23396", + "2350", + "240", + "2534", + "2621", + "2625", + "2650", + "30009", + "301", + "3055", + "3071", + "30817", + "3569", + "3570", + "3576", + "3577", + "3579", + "3586", + "3627", + "3676", + "3683", + "3688", + "3689", + "3695", + "3815", + "387695", + "3958", + "4067", + "4192", + "4478", + "4814", + "503618", + "50512", + "50848", + "51119", + "51135", + "51192", + "5155", + "5175", + "5196", + "5293", + "5294", + "5478", + "5479", + "5657", + "57126", + "5800", + "58494", + "6093", + "6223", + "6279", + "6280", + "6283", + "6288", + "6347", + "6348", + "6354", + "6356", + "6357", + "6363", + "6366", + "6368", + "6369", + "6372", + "6373", + "6375", + "6376", + "6401", + "6402", + "6403", + "6404", + "64083", + "6441", + "6558", + "6654", + "6714", + "682", + "6850", + "692094", + "7124", + "728358", + "7369", + "7412", + "7525", + "7535", + "7852", + "7857", + "796", + "8174", + "83700", + "8600", + "8729", + "9255" + ] + }, + "GO:2000181": { + "Name": "negative regulation of blood vessel morphogenesis", + "Task": "GO", + "Genes": [ + "10253", + "10365", + "11005", + "11061", + "11126", + "112744", + "128240", + "1284", + "1285", + "1386", + "153090", + "154796", + "161742", + "1634", + "1870", + "1944", + "22846", + "22905", + "23166", + "23213", + "23251", + "26523", + "2658", + "28984", + "2969", + "29924", + "30832", + "3135", + "3202", + "3273", + "3339", + "350", + "356", + "3627", + "4204", + "4303", + "4879", + "4881", + "493", + "5054", + "51378", + "5140", + "5176", + "5196", + "5230", + "5291", + "5371", + "54361", + "5468", + "55333", + "55810", + "575", + "57556", + "5797", + "5970", + "6093", + "6301", + "641700", + "6678", + "6772", + "7010", + "7042", + "7057", + "7058", + "7122", + "7124", + "8838", + "889", + "90993", + "9146", + "9314", + "9475", + "9510" + ] + }, + "GO:0090150": { + "Name": "establishment of protein localization to membrane", + "Task": "GO", + "Genes": [ + "100133941", + "10133", + "10139", + "10328", + "10430", + "10890", + "11031", + "1121", + "11231", + "117177", + "128866", + "130617", + "132112", + "158234", + "161176", + "1678", + "1956", + "22844", + "22930", + "23062", + "23065", + "23163", + "23420", + "23463", + "23471", + "23499", + "23787", + "23788", + "25782", + "25813", + "25837", + "26003", + "26088", + "26517", + "26519", + "26520", + "26521", + "2803", + "283820", + "284361", + "285521", + "288", + "29927", + "29928", + "3308", + "3309", + "3320", + "344892", + "3875", + "408050", + "439", + "4641", + "481", + "4864", + "51016", + "51079", + "51125", + "51234", + "51398", + "51608", + "51762", + "54499", + "55737", + "55750", + "55831", + "55969", + "56851", + "56926", + "56993", + "57003", + "57130", + "582", + "5824", + "583", + "5830", + "637", + "64083", + "64108", + "64112", + "6449", + "64689", + "65055", + "65125", + "653361", + "6711", + "6727", + "6728", + "6729", + "673", + "6734", + "6745", + "6746", + "7095", + "7485", + "7879", + "7917", + "79568", + "81693", + "819", + "8266", + "83460", + "83597", + "83871", + "84896", + "8504", + "85377", + "8548", + "8766", + "90580", + "9230", + "93380", + "9409", + "9648", + "9694", + "9697" + ] + }, + "GO:0016525": { + "Name": "negative regulation of angiogenesis", + "Task": "GO", + "Genes": [ + "10253", + "10365", + "11005", + "11061", + "11126", + "112744", + "128240", + "1284", + "1285", + "1386", + "153090", + "154796", + "161742", + "1634", + "1870", + "1944", + "22846", + "22905", + "23166", + "23213", + "23251", + "26523", + "2658", + "28984", + "2969", + "29924", + "30832", + "3135", + "3202", + "3273", + "3339", + "350", + "356", + "3627", + "4204", + "4303", + "4879", + "4881", + "493", + "5054", + "51378", + "5140", + "5176", + "5196", + "5230", + "5291", + "5371", + "5468", + "55333", + "55810", + "575", + "57556", + "5797", + "5970", + "6093", + "6301", + "641700", + "6678", + "6772", + "7010", + "7042", + "7057", + "7058", + "7122", + "7124", + "8838", + "889", + "90993", + "9146", + "9314", + "9475", + "9510" + ] + }, + "GO:0002699": { + "Name": "positive regulation of immune effector process", + "Task": "GO", + "Genes": [ + "10125", + "10459", + "10584", + "10666", + "10859", + "10892", + "11126", + "112441434", + "11314", + "114836", + "117854", + "135250", + "1378", + "144811", + "149840", + "1604", + "163486", + "164", + "2048", + "2150", + "2219", + "2220", + "22914", + "23705", + "25818", + "259197", + "26057", + "2821", + "301", + "3105", + "3106", + "3109", + "3122", + "3123", + "3133", + "3134", + "3135", + "3140", + "3329", + "3458", + "353091", + "354", + "3553", + "3554", + "3558", + "3565", + "3569", + "3586", + "3592", + "3593", + "3606", + "3663", + "3684", + "3689", + "377630", + "3805", + "3815", + "3822", + "3824", + "383", + "3916", + "3965", + "399687", + "4153", + "4179", + "4843", + "50487", + "51744", + "5225", + "5245", + "5322", + "54106", + "54537", + "55601", + "55765", + "56253", + "5650", + "567", + "57126", + "5788", + "5817", + "5819", + "59067", + "5914", + "6046", + "6223", + "6375", + "64127", + "6810", + "6845", + "6885", + "7037", + "7040", + "7158", + "7186", + "7189", + "7474", + "7494", + "7855", + "78989", + "814", + "8140", + "81545", + "8417", + "8547", + "8673", + "8723", + "8741", + "8809", + "9341", + "9390", + "975" + ] + }, + "GO:0043393": { + "Name": "regulation of protein binding", + "Task": "GO", + "Genes": [ + "10014", + "10211", + "1026", + "10399", + "10763", + "11315", + "118", + "119", + "120892", + "129531", + "1398", + "1454", + "146057", + "147138", + "151636", + "151651", + "154", + "155", + "1601", + "165904", + "166", + "1663", + "2035", + "207", + "2280", + "22943", + "23028", + "23032", + "23557", + "24144", + "25", + "255738", + "25805", + "26119", + "2801", + "2962", + "302", + "3077", + "3078", + "3080", + "3300", + "340061", + "3416", + "3433", + "3434", + "348", + "351", + "3586", + "3676", + "4035", + "4043", + "409", + "4140", + "4318", + "488", + "489", + "4931", + "5071", + "51068", + "51339", + "5155", + "5195", + "5300", + "5347", + "54496", + "54552", + "5566", + "5580", + "5599", + "5663", + "567", + "56998", + "5792", + "581", + "5899", + "5901", + "59082", + "6093", + "6135", + "627", + "640", + "64400", + "650", + "652", + "6590", + "6737", + "6788", + "6789", + "6790", + "6815", + "6872", + "6934", + "7009", + "7015", + "7074", + "7122", + "7448", + "80011", + "81494", + "8189", + "8239", + "84630", + "8536", + "8751", + "8767", + "8829", + "9026", + "9212", + "9241", + "9270", + "9370", + "9532", + "9759" + ] + }, + "GO:0051092": { + "Name": "positive regulation of NF-kappaB transcription factor activity", + "Task": "GO", + "Genes": [ + "10206", + "10346", + "10392", + "10475", + "10519", + "10542", + "10616", + "10892", + "10935", + "11035", + "11043", + "11213", + "114548", + "114609", + "1147", + "1191", + "121268", + "1660", + "177", + "183", + "1896", + "219790", + "2241", + "22954", + "23085", + "238", + "25865", + "28232", + "29108", + "3303", + "3304", + "338382", + "3551", + "3553", + "3569", + "3606", + "3630", + "3654", + "3656", + "367", + "3965", + "4057", + "4591", + "4869", + "4914", + "4919", + "4922", + "49860", + "51341", + "54101", + "5478", + "55072", + "55223", + "55367", + "5583", + "5584", + "5587", + "5588", + "5610", + "5687", + "58484", + "5970", + "60401", + "6188", + "6279", + "6280", + "6283", + "64127", + "64170", + "64320", + "65992", + "695", + "7037", + "7097", + "7099", + "7124", + "7185", + "7186", + "7188", + "7189", + "7334", + "7335", + "7474", + "7706", + "79092", + "815", + "81603", + "825", + "84433", + "84851", + "8517", + "85363", + "8600", + "8717", + "8737", + "8767", + "8792", + "8807", + "8809", + "8877", + "8915", + "8986", + "89870", + "9175", + "9181", + "92140", + "9252", + "9447", + "948", + "958", + "959", + "9830" + ] + }, + "GO:0022604": { + "Name": "regulation of cell morphogenesis", + "Task": "GO", + "Genes": [ + "10395", + "10435", + "10507", + "10630", + "1072", + "10810", + "10979", + "11135", + "113251", + "114793", + "116985", + "118987", + "126374", + "127833", + "128486", + "1364", + "1365", + "1398", + "1436", + "148170", + "151835", + "157922", + "161176", + "1690", + "1729", + "1739", + "1946", + "2039", + "2185", + "221061", + "2242", + "226", + "22999", + "23025", + "23189", + "23237", + "23268", + "23327", + "23363", + "23370", + "23580", + "23603", + "254065", + "25805", + "26259", + "283149", + "29780", + "30011", + "301", + "3055", + "3249", + "348110", + "374872", + "3791", + "4478", + "4627", + "4651", + "5028", + "50618", + "50848", + "5168", + "51760", + "5364", + "54014", + "54764", + "55023", + "55171", + "55660", + "55843", + "57154", + "57175", + "57464", + "5747", + "57471", + "57699", + "58480", + "5962", + "6239", + "6347", + "6348", + "6354", + "6356", + "6357", + "6369", + "6678", + "6714", + "6857", + "6860", + "7168", + "7429", + "7430", + "752", + "755", + "7694", + "832", + "84258", + "8437", + "85369", + "8994", + "91010", + "9202", + "9203", + "9204", + "9344", + "9362", + "93663", + "9368", + "960", + "9699" + ] + }, + "GO:0060326": { + "Name": "cell chemotaxis", + "Task": "GO", + "Genes": [ + "10344", + "10563", + "1113", + "120425", + "1230", + "1234", + "1235", + "1236", + "140596", + "1511", + "1525", + "1667", + "1839", + "185", + "1880", + "1902", + "1906", + "1907", + "1908", + "1910", + "1960", + "1969", + "200576", + "2047", + "2321", + "23396", + "2350", + "240", + "2549", + "2621", + "27237", + "301", + "3071", + "30817", + "3082", + "3148", + "3164", + "3219", + "3569", + "3570", + "3576", + "3577", + "3579", + "3586", + "3627", + "3689", + "3815", + "387695", + "391", + "3958", + "409", + "4192", + "4814", + "4856", + "503618", + "51119", + "51176", + "51192", + "5155", + "5156", + "5159", + "5196", + "5293", + "5294", + "5365", + "5478", + "5479", + "5580", + "5588", + "56477", + "566", + "57175", + "5800", + "6223", + "6279", + "6280", + "6283", + "6288", + "6347", + "6348", + "6354", + "6356", + "6357", + "6363", + "6364", + "6366", + "6368", + "6369", + "6370", + "6372", + "6373", + "6375", + "6376", + "6387", + "63916", + "6441", + "6558", + "682", + "6850", + "692094", + "728358", + "7852", + "7857", + "796", + "8394", + "8600", + "8729", + "8829", + "9564", + "9732" + ] + }, + "GO:0032940": { + "Name": "secretion by cell", + "Task": "GO", + "Genes": [ + "100287171", + "100431172", + "1020", + "10244", + "10257", + "10490", + "10497", + "10565", + "10652", + "10814", + "10815", + "10890", + "10987", + "11031", + "1113", + "11151", + "11255", + "117194", + "1230", + "1393", + "140679", + "148281", + "149371", + "153339", + "169026", + "19", + "1906", + "1908", + "2205", + "2252", + "2255", + "2266", + "22999", + "23396", + "23557", + "25837", + "26154", + "261729", + "2691", + "2693", + "2914", + "3055", + "306", + "3624", + "3651", + "374969", + "375056", + "379", + "3815", + "3840", + "387695", + "389692", + "3952", + "399979", + "4053", + "4218", + "4547", + "4627", + "4760", + "4843", + "4905", + "5045", + "5046", + "51192", + "51738", + "5286", + "5293", + "5294", + "54097", + "5413", + "54843", + "55240", + "5539", + "55770", + "56900", + "57333", + "57393", + "57829", + "5798", + "5861", + "5864", + "5873", + "60684", + "6348", + "6355", + "64083", + "64855", + "6616", + "6622", + "6804", + "6812", + "6844", + "6845", + "6857", + "6926", + "7052", + "7857", + "79792", + "79971", + "80331", + "80736", + "821", + "84522", + "84958", + "8673", + "8766", + "8773", + "9230", + "93145", + "9341", + "9601" + ] + }, + "GO:0051495": { + "Name": "positive regulation of cytoskeleton organization", + "Task": "GO", + "Genes": [ + "10142", + "10152", + "10174", + "10300", + "10344", + "10411", + "10435", + "10615", + "1073", + "10733", + "10787", + "10979", + "11075", + "1236", + "123720", + "1440", + "146206", + "148170", + "1490", + "153241", + "163786", + "1639", + "1778", + "1906", + "2017", + "2150", + "2185", + "221908", + "2241", + "2242", + "22843", + "22919", + "22998", + "23191", + "23636", + "25", + "253725", + "25802", + "27302", + "28964", + "28984", + "29109", + "2934", + "29899", + "3055", + "3071", + "3303", + "3304", + "335", + "382", + "387", + "389", + "3984", + "402", + "4137", + "4204", + "4233", + "442721", + "4653", + "4690", + "4733", + "4771", + "4926", + "5058", + "51466", + "5202", + "5216", + "5217", + "5341", + "5345", + "55160", + "55604", + "55704", + "55755", + "55835", + "55845", + "55971", + "57026", + "57482", + "57606", + "5829", + "5879", + "6188", + "6249", + "6281", + "6356", + "6366", + "6369", + "6376", + "6491", + "7016", + "7043", + "7408", + "7429", + "7481", + "79768", + "7984", + "79998", + "8440", + "8477", + "85459", + "85477", + "88", + "8829", + "8936", + "89795", + "9475", + "9525", + "9639", + "9647", + "9793", + "9873" + ] + }, + "GO:0016241": { + "Name": "regulation of macroautophagy", + "Task": "GO", + "Genes": [ + "10013", + "10043", + "10059", + "10133", + "1020", + "10206", + "10241", + "10558", + "11152", + "11178", + "112574", + "112936", + "120892", + "140775", + "1457", + "149371", + "154", + "1634", + "203228", + "2081", + "22863", + "22930", + "23130", + "23256", + "23265", + "23274", + "23367", + "23400", + "23411", + "2475", + "25782", + "25793", + "25851", + "2597", + "26086", + "2629", + "26353", + "26471", + "2773", + "285180", + "29110", + "2931", + "29978", + "3064", + "30849", + "340061", + "340371", + "345611", + "3791", + "401548", + "4734", + "4943", + "5049", + "5071", + "51100", + "51322", + "51375", + "5289", + "5305", + "535", + "54832", + "55062", + "55072", + "55187", + "55254", + "55294", + "55613", + "55626", + "5563", + "5566", + "55737", + "55763", + "5599", + "56893", + "57535", + "57602", + "5768", + "5899", + "6009", + "60412", + "60592", + "64112", + "65018", + "664", + "665", + "6720", + "6829", + "7249", + "7345", + "7405", + "7416", + "79142", + "79443", + "7957", + "79837", + "836", + "83667", + "8396", + "8408", + "8678", + "8723", + "90070", + "90678", + "9140", + "9474", + "9517", + "9531", + "9554", + "9559", + "9637", + "9638", + "9711" + ] + }, + "GO:0006605": { + "Name": "protein targeting", + "Task": "GO", + "Genes": [ + "100287932", + "10053", + "10134", + "10245", + "10440", + "10452", + "10469", + "10531", + "10717", + "10953", + "11140", + "11154", + "1121", + "11231", + "11337", + "117177", + "1191", + "128866", + "130340", + "130617", + "131474", + "158234", + "158866", + "1678", + "23163", + "23203", + "23303", + "23431", + "23463", + "23471", + "23787", + "23788", + "25793", + "25813", + "26061", + "26517", + "26519", + "26520", + "26521", + "26985", + "27183", + "29090", + "29927", + "29928", + "3308", + "3309", + "3312", + "3320", + "345611", + "3920", + "401505", + "4053", + "4121", + "4641", + "4734", + "51024", + "51025", + "51079", + "51172", + "51608", + "5189", + "5190", + "54332", + "54543", + "55750", + "56947", + "56993", + "57154", + "5824", + "6135", + "64089", + "64108", + "653361", + "6653", + "6727", + "6728", + "6729", + "6734", + "6745", + "6746", + "706", + "7095", + "7879", + "79158", + "7917", + "8031", + "8266", + "83597", + "83752", + "85377", + "8878", + "89781", + "9049", + "90580", + "9131", + "9146", + "9179", + "9409", + "9454", + "950", + "9512", + "9648", + "9695", + "9765", + "9804", + "9868", + "9927" + ] + }, + "GO:0000819": { + "Name": "sister chromatid segregation", + "Task": "GO", + "Genes": [ + "10015", + "10051", + "10274", + "10403", + "10464", + "10540", + "10592", + "10615", + "1062", + "10726", + "10735", + "11004", + "11130", + "11200", + "113130", + "126353", + "128866", + "129563", + "148479", + "152185", + "158983", + "220134", + "221150", + "22919", + "22974", + "23063", + "2316", + "23172", + "23212", + "23310", + "23397", + "23636", + "24137", + "256364", + "25978", + "26065", + "26993", + "27183", + "27243", + "27436", + "2801", + "283489", + "285643", + "29098", + "29127", + "29128", + "348235", + "3796", + "3832", + "3833", + "3834", + "3835", + "3837", + "387", + "387893", + "49856", + "5119", + "51203", + "51510", + "51652", + "5347", + "54617", + "54627", + "54908", + "54984", + "55125", + "55143", + "55165", + "56647", + "57082", + "57132", + "5901", + "5925", + "64151", + "6795", + "729440", + "7756", + "79003", + "79643", + "79884", + "79998", + "8086", + "81620", + "81929", + "81930", + "8243", + "8452", + "84722", + "84861", + "8678", + "8697", + "8766", + "891", + "90417", + "9055", + "9113", + "9126", + "91272", + "91782", + "9183", + "9212", + "92421", + "9371", + "9493", + "9525", + "9639", + "9700", + "9918", + "9928" + ] + }, + "GO:0051260": { + "Name": "protein homooligomerization", + "Task": "GO", + "Genes": [ + "10015", + "10280", + "10367", + "10600", + "10721", + "10938", + "114548", + "115362", + "1311", + "138151", + "1429", + "1491", + "155061", + "158747", + "1670", + "171389", + "171425", + "1759", + "1894", + "197259", + "1994", + "210", + "220", + "223", + "22861", + "22890", + "23210", + "241", + "2521", + "255022", + "25923", + "25939", + "27232", + "27243", + "2744", + "282679", + "29108", + "3028", + "30844", + "30845", + "3135", + "32", + "3251", + "3276", + "348980", + "359", + "362", + "3759", + "3768", + "4143", + "4199", + "4282", + "4284", + "4814", + "5024", + "51062", + "51074", + "51733", + "5311", + "54795", + "54968", + "54974", + "55198", + "5551", + "55600", + "55856", + "56341", + "567", + "57192", + "57673", + "57679", + "6247", + "641", + "64170", + "64225", + "64375", + "6470", + "6472", + "6506", + "6510", + "6648", + "6683", + "6742", + "6847", + "6999", + "7083", + "7158", + "7226", + "735", + "7837", + "79689", + "8001", + "83862", + "84282", + "84433", + "84869", + "87178", + "8767", + "8854", + "8915", + "89872", + "8989", + "9033", + "90378", + "92610", + "9885", + "9908" + ] + }, + "GO:0051897": { + "Name": "positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction", + "Task": "GO", + "Genes": [ + "10253", + "10268", + "10456", + "10507", + "10855", + "10870", + "10979", + "1116", + "11315", + "1236", + "1440", + "1634", + "1646", + "183", + "1839", + "1950", + "1956", + "2022", + "2065", + "2137", + "219699", + "2247", + "2260", + "2261", + "2268", + "2321", + "2322", + "2335", + "2475", + "2492", + "2621", + "2625", + "2651", + "2688", + "284", + "2852", + "3059", + "3082", + "3092", + "3479", + "3480", + "3481", + "3606", + "3630", + "3643", + "3688", + "3717", + "3791", + "3815", + "389400", + "4058", + "4150", + "4486", + "4653", + "4734", + "4824", + "4922", + "5008", + "51384", + "5154", + "5155", + "5156", + "5159", + "5170", + "5290", + "5294", + "55626", + "55801", + "5587", + "57091", + "57142", + "5747", + "5777", + "5795", + "5979", + "6363", + "6366", + "6376", + "6403", + "642273", + "65018", + "653361", + "6714", + "6934", + "7010", + "7040", + "7042", + "7046", + "7057", + "7066", + "708", + "7295", + "85453", + "8644", + "867", + "8904", + "92140", + "9258", + "9270", + "930", + "9518", + "9723" + ] + }, + "GO:0000070": { + "Name": "mitotic sister chromatid segregation", + "Task": "GO", + "Genes": [ + "10015", + "10051", + "10274", + "10403", + "10464", + "10540", + "10592", + "10615", + "1062", + "10726", + "10735", + "11004", + "11130", + "11200", + "113130", + "126353", + "128866", + "129563", + "148479", + "152185", + "158983", + "220134", + "221150", + "22919", + "22974", + "23063", + "2316", + "23172", + "23212", + "23310", + "23397", + "23636", + "24137", + "256364", + "25978", + "26065", + "26993", + "27183", + "27243", + "27436", + "2801", + "283489", + "285643", + "29098", + "29127", + "29128", + "348235", + "3796", + "3832", + "3833", + "3834", + "3835", + "3837", + "387", + "387893", + "49856", + "5119", + "51203", + "51510", + "51652", + "5347", + "54617", + "54627", + "54908", + "54984", + "55125", + "55143", + "55165", + "56647", + "57082", + "57132", + "5901", + "64151", + "6795", + "729440", + "7756", + "79003", + "79643", + "79884", + "79998", + "8086", + "81620", + "81929", + "81930", + "8243", + "8452", + "84722", + "84861", + "8678", + "8697", + "8766", + "891", + "90417", + "9055", + "9126", + "91272", + "91782", + "9183", + "9212", + "92421", + "9371", + "9493", + "9525", + "9639", + "9700", + "9918", + "9928" + ] + }, + "GO:1990778": { + "Name": "protein localization to cell periphery", + "Task": "GO", + "Genes": [ + "10098", + "10133", + "10139", + "10211", + "10266", + "10267", + "10268", + "10959", + "11031", + "11187", + "112609", + "129303", + "145567", + "1739", + "1969", + "22979", + "23043", + "23062", + "23122", + "2316", + "23163", + "23167", + "2319", + "23241", + "23499", + "23555", + "23759", + "2580", + "25837", + "25921", + "26003", + "26088", + "26154", + "2621", + "2803", + "283576", + "284098", + "286", + "287", + "288", + "30845", + "340348", + "3551", + "3728", + "382", + "3875", + "4040", + "481", + "483", + "50848", + "51125", + "51304", + "51735", + "5318", + "54997", + "55146", + "55625", + "55690", + "55704", + "55737", + "55800", + "56246", + "57154", + "57217", + "5727", + "57512", + "57728", + "582", + "583", + "5872", + "5906", + "5911", + "5962", + "6093", + "6281", + "64083", + "64689", + "65267", + "6711", + "6812", + "682", + "7124", + "7132", + "7430", + "7871", + "7879", + "79156", + "81619", + "81693", + "83871", + "8394", + "84668", + "85409", + "8548", + "8766", + "88", + "91663", + "92162", + "92359", + "9270", + "9368", + "9370", + "9475", + "9648", + "9693", + "975", + "999" + ] + }, + "GO:0050777": { + "Name": "negative regulation of immune response", + "Task": "GO", + "Genes": [ + "100507436", + "10769", + "10859", + "11005", + "11006", + "11126", + "11274", + "11277", + "11314", + "11326", + "1281", + "1378", + "142", + "1432", + "147945", + "149095", + "1604", + "196", + "2", + "2213", + "2268", + "23170", + "23220", + "2534", + "259307", + "25939", + "26058", + "282618", + "2896", + "29883", + "301", + "3055", + "3071", + "3077", + "3105", + "3106", + "3123", + "3133", + "3134", + "3135", + "3428", + "3440", + "3456", + "3630", + "3805", + "3821", + "3824", + "383", + "387837", + "3965", + "401397", + "4067", + "409", + "4938", + "4940", + "5045", + "50943", + "51441", + "5272", + "5335", + "54625", + "5468", + "55646", + "55829", + "56339", + "57506", + "5771", + "58509", + "5987", + "60343", + "6223", + "6318", + "634", + "6375", + "6714", + "6737", + "6773", + "6850", + "7040", + "710", + "722", + "725", + "7525", + "7534", + "79132", + "79594", + "79651", + "84166", + "84243", + "84640", + "84868", + "8764", + "8815", + "9111", + "9212", + "941", + "9470", + "9636", + "9958" + ] + }, + "GO:0043405": { + "Name": "regulation of MAP kinase activity", + "Task": "GO", + "Genes": [ + "100133941", + "10125", + "10221", + "10961", + "11213", + "11221", + "11235", + "11267", + "11314", + "11329", + "120892", + "146433", + "148252", + "150", + "152110", + "152559", + "153090", + "171392", + "1815", + "183", + "1843", + "1849", + "1856", + "1906", + "1908", + "1950", + "1956", + "2064", + "2081", + "2146", + "2246", + "2247", + "2260", + "2321", + "2322", + "23328", + "23624", + "245928", + "255324", + "26191", + "2629", + "2688", + "2950", + "3265", + "3301", + "3357", + "348", + "3553", + "3643", + "4216", + "4217", + "4294", + "4296", + "4486", + "4878", + "4908", + "5058", + "51347", + "5154", + "5155", + "51755", + "51763", + "5294", + "5468", + "5470", + "54769", + "54900", + "5580", + "5770", + "57761", + "5795", + "5871", + "6091", + "6188", + "6283", + "6317", + "64853", + "650", + "6609", + "6885", + "6997", + "7057", + "7124", + "7164", + "7186", + "7189", + "7251", + "7345", + "7474", + "7984", + "80279", + "80824", + "859", + "8600", + "8692", + "8754", + "8792", + "8817", + "8823", + "9146", + "958" + ] + }, + "GO:0007033": { + "Name": "vacuole organization", + "Task": "GO", + "Genes": [ + "10043", + "10159", + "10533", + "11151", + "11152", + "115201", + "1201", + "120892", + "147007", + "19", + "200576", + "219931", + "22863", + "23120", + "23130", + "23192", + "23241", + "23341", + "23400", + "23503", + "23647", + "23673", + "2475", + "252839", + "2548", + "25978", + "26100", + "26175", + "2629", + "285180", + "285973", + "2896", + "29911", + "29979", + "3257", + "340061", + "345611", + "3916", + "3920", + "411", + "440026", + "4647", + "4693", + "488", + "4948", + "51151", + "51172", + "51361", + "51652", + "51715", + "523", + "5289", + "5298", + "54734", + "54982", + "55014", + "55054", + "55062", + "55353", + "5538", + "55626", + "55647", + "55858", + "56270", + "57154", + "57535", + "57617", + "58476", + "5861", + "60673", + "64400", + "64422", + "65082", + "7030", + "7189", + "7805", + "7879", + "79065", + "79158", + "7942", + "80208", + "80231", + "80317", + "81671", + "83460", + "83734", + "83871", + "84067", + "8408", + "84286", + "84317", + "84376", + "84557", + "84938", + "84971", + "8678", + "8720", + "89781", + "9179", + "9474", + "9776", + "9821", + "987", + "9927" + ] + }, + "GO:0072659": { + "Name": "protein localization to plasma membrane", + "Task": "GO", + "Genes": [ + "10098", + "10133", + "10139", + "10211", + "10266", + "10267", + "10268", + "10959", + "11031", + "11187", + "112609", + "129303", + "145567", + "1739", + "1969", + "22979", + "23043", + "23062", + "23122", + "2316", + "23163", + "23167", + "2319", + "23241", + "23499", + "23555", + "23759", + "2580", + "25837", + "25921", + "26003", + "26088", + "26154", + "2621", + "2803", + "283576", + "284098", + "286", + "287", + "288", + "30845", + "340348", + "3551", + "3728", + "382", + "3875", + "4040", + "481", + "483", + "50848", + "51125", + "51304", + "51735", + "5318", + "54997", + "55146", + "55625", + "55690", + "55704", + "55737", + "55800", + "56246", + "57154", + "57217", + "5727", + "57512", + "582", + "583", + "5872", + "5906", + "5911", + "5962", + "6093", + "6281", + "64083", + "64689", + "65267", + "6711", + "6812", + "682", + "7124", + "7132", + "7430", + "7871", + "7879", + "79156", + "81619", + "81693", + "83871", + "8394", + "84668", + "85409", + "8548", + "8766", + "88", + "92162", + "92359", + "9270", + "9368", + "9370", + "9475", + "9648", + "9693", + "975", + "999" + ] + }, + "GO:1902905": { + "Name": "positive regulation of supramolecular fiber organization", + "Task": "GO", + "Genes": [ + "10142", + "10152", + "10174", + "10300", + "10344", + "10411", + "10435", + "1073", + "10787", + "10979", + "11075", + "1191", + "1236", + "123720", + "1440", + "146206", + "148170", + "1490", + "1639", + "1906", + "2017", + "2150", + "2185", + "2241", + "2242", + "22843", + "22919", + "22998", + "23191", + "25", + "253725", + "25802", + "27302", + "28964", + "28984", + "29109", + "2934", + "3055", + "3071", + "3303", + "3304", + "335", + "348", + "351", + "382", + "387", + "389", + "3984", + "402", + "4137", + "4204", + "4233", + "442721", + "4653", + "4690", + "4733", + "4771", + "4926", + "5058", + "51466", + "5216", + "5217", + "5341", + "5345", + "55160", + "55604", + "55704", + "55755", + "55845", + "55971", + "5663", + "57026", + "57482", + "57606", + "5829", + "5879", + "6188", + "6249", + "6281", + "6356", + "6366", + "6369", + "6376", + "7016", + "7043", + "7148", + "7408", + "7429", + "7481", + "79709", + "7984", + "79998", + "8440", + "8477", + "85477", + "88", + "8829", + "8936", + "89795", + "9101", + "9475", + "9639", + "9647", + "9793", + "9873" + ] + }, + "GO:0002703": { + "Name": "regulation of leukocyte mediated immunity", + "Task": "GO", + "Genes": [ + "100507436", + "10125", + "10459", + "10666", + "10859", + "10892", + "11006", + "11126", + "112441434", + "11314", + "114836", + "1178", + "135250", + "1378", + "146850", + "149840", + "1604", + "163486", + "164", + "177", + "196", + "201294", + "2150", + "2213", + "2242", + "22914", + "23705", + "259197", + "259307", + "3071", + "3077", + "30817", + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3135", + "3140", + "3329", + "3383", + "3440", + "3456", + "353091", + "3553", + "3554", + "3565", + "3592", + "3593", + "3606", + "3684", + "3689", + "3805", + "3821", + "3822", + "3824", + "383", + "387837", + "3916", + "3952", + "3965", + "409", + "4843", + "50487", + "50943", + "5272", + "54537", + "54795", + "56253", + "567", + "57126", + "5817", + "5819", + "59067", + "6318", + "634", + "6375", + "6810", + "684", + "6845", + "6885", + "695", + "7037", + "7040", + "7158", + "7186", + "7189", + "722", + "725", + "7454", + "7855", + "814", + "81545", + "8417", + "8673", + "8723", + "8741", + "8809", + "8832", + "9390", + "941", + "9437", + "975" + ] + }, + "GO:0046488": { + "Name": "phosphatidylinositol metabolic process", + "Task": "GO", + "Genes": [ + "10026", + "1040", + "10423", + "117283", + "123745", + "128869", + "129303", + "145567", + "200576", + "22863", + "22876", + "22979", + "23049", + "23167", + "23236", + "23396", + "23556", + "27124", + "27315", + "2822", + "283748", + "284098", + "30849", + "3612", + "3633", + "3635", + "3636", + "3706", + "3707", + "376497", + "4534", + "4952", + "50487", + "51227", + "51447", + "5159", + "51604", + "51763", + "5277", + "5279", + "5281", + "5283", + "5286", + "5289", + "5291", + "5294", + "5297", + "5298", + "5305", + "5330", + "5331", + "5333", + "5336", + "5341", + "54344", + "54872", + "55300", + "55361", + "55529", + "55650", + "56623", + "5728", + "57605", + "64419", + "64924", + "65258", + "660", + "7405", + "79143", + "79837", + "80055", + "80235", + "80271", + "83394", + "8394", + "8395", + "8396", + "84302", + "84668", + "84992", + "8678", + "8733", + "8776", + "8813", + "8818", + "8821", + "8867", + "8871", + "8897", + "8898", + "90809", + "9091", + "9107", + "9108", + "9110", + "93210", + "94005", + "9487", + "9488", + "9600", + "9807", + "9896" + ] + }, + "GO:0050731": { + "Name": "positive regulation of peptidyl-tyrosine phosphorylation", + "Task": "GO", + "Genes": [ + "10006", + "10188", + "10456", + "10464", + "1270", + "1436", + "1437", + "1440", + "1464", + "146433", + "1489", + "149233", + "1609", + "1742", + "183", + "1942", + "2056", + "2066", + "2185", + "2209", + "2252", + "2255", + "2261", + "2322", + "23529", + "23568", + "25", + "255324", + "2623", + "2688", + "282618", + "284", + "285489", + "3059", + "3082", + "3458", + "3479", + "353514", + "3558", + "3562", + "3565", + "3569", + "3570", + "3572", + "3589", + "3592", + "3593", + "3600", + "3606", + "3678", + "3690", + "3815", + "3976", + "4282", + "4739", + "4908", + "5008", + "50604", + "5062", + "51378", + "5155", + "51561", + "5168", + "5175", + "54209", + "54625", + "55024", + "55294", + "5621", + "57091", + "5753", + "5770", + "5781", + "59067", + "653361", + "654", + "6714", + "6868", + "6997", + "7040", + "7060", + "7132", + "7448", + "80725", + "83666", + "85480", + "8767", + "8784", + "8829", + "8995", + "90", + "90070", + "9094", + "9181", + "9244", + "941", + "958", + "960", + "972" + ] + }, + "GO:0071902": { + "Name": "positive regulation of protein serine/threonine kinase activity", + "Task": "GO", + "Genes": [ + "100133941", + "10125", + "10454", + "10961", + "10979", + "11235", + "120892", + "146433", + "148252", + "150", + "152110", + "153090", + "154", + "1654", + "1815", + "1856", + "1906", + "1908", + "1950", + "1956", + "205428", + "2064", + "207", + "2081", + "2146", + "219771", + "2246", + "2247", + "2260", + "2321", + "2322", + "23328", + "23411", + "255324", + "2688", + "28984", + "3265", + "3357", + "345611", + "3458", + "3553", + "3643", + "387", + "4057", + "4216", + "4217", + "4294", + "4296", + "4486", + "4908", + "493", + "5058", + "51347", + "5154", + "5155", + "51719", + "5294", + "54465", + "54769", + "55011", + "5515", + "5604", + "5605", + "5629", + "56892", + "5716", + "57214", + "5871", + "5899", + "595", + "6091", + "6188", + "6283", + "6622", + "6714", + "6868", + "6885", + "6997", + "7057", + "7124", + "7164", + "7186", + "7189", + "7474", + "7984", + "808", + "8091", + "8536", + "8600", + "8754", + "8792", + "8817", + "894", + "896", + "9370", + "94056", + "958", + "9693" + ] + }, + "GO:0006457": { + "Name": "protein folding", + "Task": "GO", + "Genes": [ + "10049", + "10130", + "10131", + "10294", + "10471", + "10574", + "10575", + "10576", + "10693", + "10694", + "10728", + "10856", + "10954", + "1191", + "120526", + "126393", + "131474", + "1457", + "165721", + "1676", + "1861", + "2280", + "2281", + "2288", + "2289", + "22926", + "22948", + "23071", + "23184", + "23640", + "23753", + "23770", + "2580", + "27000", + "2923", + "30001", + "325", + "3300", + "3301", + "3303", + "3304", + "3305", + "3306", + "3309", + "3310", + "3312", + "3315", + "3320", + "3329", + "3336", + "3337", + "3998", + "4802", + "4878", + "4879", + "4880", + "5034", + "51182", + "5201", + "5202", + "5203", + "5204", + "54431", + "5478", + "54788", + "5479", + "5481", + "55466", + "55768", + "56605", + "56886", + "573", + "5824", + "6102", + "6388", + "64175", + "64714", + "64772", + "6767", + "6902", + "6903", + "6904", + "6905", + "6950", + "7184", + "7203", + "7266", + "7411", + "7466", + "7841", + "79031", + "79982", + "811", + "821", + "8425", + "9049", + "908", + "9218", + "9403", + "9529", + "9530", + "9532" + ] + }, + "GO:0043547": { + "Name": "positive regulation of GTPase activity", + "Task": "GO", + "Genes": [ + "10125", + "10235", + "10276", + "10297", + "10344", + "10399", + "10411", + "10507", + "10681", + "10928", + "10979", + "10999", + "112574", + "115704", + "116", + "116985", + "128637", + "140775", + "143872", + "153", + "1857", + "1894", + "1969", + "202243", + "203228", + "2041", + "2146", + "2149", + "2150", + "22841", + "22930", + "23161", + "23329", + "23380", + "23513", + "23616", + "27237", + "27352", + "2889", + "29", + "2932", + "30851", + "3265", + "3655", + "3688", + "377630", + "391", + "3987", + "4594", + "4763", + "4908", + "4914", + "51256", + "51429", + "51520", + "51735", + "5300", + "54959", + "55255", + "55357", + "55616", + "55854", + "5657", + "57589", + "57679", + "5905", + "5909", + "5996", + "6000", + "6001", + "6004", + "613", + "6251", + "6281", + "6356", + "6369", + "7074", + "7248", + "7481", + "7813", + "81565", + "81704", + "8301", + "8394", + "8412", + "8477", + "8502", + "85397", + "85440", + "858", + "8874", + "89839", + "92154", + "958", + "9628", + "9639", + "9693", + "9712", + "9824", + "9827", + "9905" + ] + }, + "GO:0070507": { + "Name": "regulation of microtubule cytoskeleton organization", + "Task": "GO", + "Genes": [ + "10015", + "1003", + "10039", + "10142", + "10300", + "10382", + "10460", + "10519", + "10615", + "10634", + "11075", + "11076", + "11170", + "126731", + "128866", + "146057", + "1540", + "157922", + "1639", + "1778", + "1946", + "2011", + "2042", + "220134", + "221150", + "2242", + "22919", + "22924", + "22974", + "23122", + "23187", + "23271", + "23299", + "23332", + "23636", + "24139", + "246176", + "25", + "256364", + "25978", + "25999", + "26054", + "26146", + "27243", + "2770", + "28964", + "2932", + "29899", + "29922", + "3192", + "324", + "3303", + "3304", + "348235", + "3925", + "402", + "4133", + "4137", + "4204", + "4233", + "4733", + "4926", + "5058", + "5119", + "51510", + "51652", + "5347", + "55521", + "55755", + "57132", + "57551", + "57606", + "57662", + "58497", + "5879", + "6047", + "6093", + "6188", + "6249", + "6314", + "636", + "6622", + "6904", + "7175", + "79187", + "79598", + "79643", + "79866", + "79884", + "79998", + "84722", + "8480", + "8874", + "89795", + "90102", + "91782", + "9181", + "92421", + "9525", + "9793" + ] + }, + "GO:0051302": { + "Name": "regulation of cell division", + "Task": "GO", + "Genes": [ + "10112", + "10474", + "10519", + "10628", + "1069", + "10755", + "10807", + "11091", + "11113", + "112869", + "114327", + "117194", + "1263", + "146909", + "1810", + "1813", + "1814", + "1894", + "201161", + "201163", + "2246", + "23503", + "23636", + "25909", + "26009", + "26189", + "2648", + "2652", + "27183", + "28964", + "29072", + "29127", + "30849", + "341019", + "387", + "387695", + "4300", + "4609", + "4824", + "50838", + "51100", + "51289", + "51562", + "5289", + "5300", + "5347", + "54627", + "55660", + "55689", + "5581", + "5586", + "55958", + "56241", + "57026", + "57325", + "57448", + "585", + "5956", + "598", + "5988", + "63971", + "641", + "643", + "6469", + "65125", + "6683", + "6755", + "6795", + "6871", + "6886", + "728458", + "7405", + "79187", + "79541", + "79848", + "79884", + "79998", + "80179", + "808", + "80834", + "84440", + "8452", + "84936", + "8502", + "8678", + "8766", + "90293", + "9055", + "9212", + "92421", + "9493", + "9585", + "9727", + "9738", + "990", + "9903", + "9928", + "994" + ] + }, + "GO:1905475": { + "Name": "regulation of protein localization to membrane", + "Task": "GO", + "Genes": [ + "10268", + "10399", + "10490", + "10519", + "10551", + "10857", + "112609", + "1173", + "125170", + "131578", + "1445", + "1601", + "163882", + "1739", + "1956", + "1969", + "2042", + "2064", + "207", + "2181", + "23096", + "23433", + "245812", + "2534", + "25921", + "26060", + "26119", + "2633", + "2664", + "27032", + "27183", + "27237", + "2852", + "285966", + "29098", + "2934", + "29801", + "3265", + "3630", + "367", + "3675", + "3688", + "3745", + "377630", + "3799", + "391", + "3958", + "4035", + "4323", + "4641", + "493", + "5071", + "51024", + "51201", + "51548", + "5170", + "5174", + "51763", + "5290", + "54209", + "54471", + "54550", + "54585", + "55022", + "5525", + "55625", + "5581", + "5583", + "56246", + "56947", + "57214", + "57628", + "5780", + "5906", + "598", + "60", + "6248", + "64114", + "65267", + "6711", + "6809", + "6810", + "7040", + "7130", + "8301", + "8417", + "8500", + "85409", + "8650", + "8673", + "9141", + "9270", + "9482", + "9495", + "9528", + "9747", + "975", + "9847" + ] + }, + "GO:0032984": { + "Name": "protein-containing complex disassembly", + "Task": "GO", + "Genes": [ + "10023", + "10490", + "1072", + "1073", + "11004", + "11034", + "11198", + "126731", + "128866", + "146909", + "196528", + "2107", + "22863", + "23197", + "23708", + "24144", + "2580", + "25851", + "25978", + "26100", + "26276", + "27183", + "27243", + "2932", + "2934", + "2935", + "29979", + "30849", + "3159", + "327", + "3312", + "3396", + "347240", + "3796", + "3925", + "440738", + "4609", + "4778", + "488", + "5119", + "51510", + "51652", + "5195", + "5289", + "54516", + "55014", + "57132", + "57231", + "57553", + "57701", + "5830", + "6059", + "63894", + "6418", + "64601", + "64780", + "65082", + "6597", + "6598", + "6599", + "6601", + "6602", + "6603", + "6604", + "6605", + "6737", + "6749", + "6845", + "7141", + "7251", + "7405", + "7415", + "7429", + "79643", + "79752", + "80183", + "81631", + "81671", + "81930", + "8289", + "83743", + "84305", + "84340", + "8444", + "84557", + "84643", + "8673", + "8678", + "91782", + "92421", + "92815", + "9342", + "9349", + "9525", + "9617", + "9645", + "9793" + ] + }, + "GO:0007034": { + "Name": "vacuolar transport", + "Task": "GO", + "Genes": [ + "1130", + "1191", + "1201", + "128866", + "138050", + "151636", + "154", + "164", + "22863", + "22906", + "23163", + "23295", + "23339", + "23400", + "23557", + "255738", + "2580", + "25978", + "26175", + "26276", + "26985", + "27072", + "27183", + "27243", + "274", + "2896", + "29911", + "30845", + "3312", + "345611", + "388", + "3916", + "3920", + "4074", + "411", + "441925", + "4534", + "4734", + "5071", + "51172", + "5119", + "51332", + "51361", + "51479", + "51510", + "51542", + "51652", + "55275", + "55297", + "55681", + "55737", + "55823", + "5660", + "57132", + "57154", + "57617", + "57679", + "57724", + "6272", + "6293", + "63894", + "63971", + "64089", + "64145", + "64400", + "64601", + "65018", + "65082", + "6653", + "6845", + "738", + "7415", + "7780", + "7781", + "7782", + "7879", + "79158", + "79643", + "8031", + "80700", + "83547", + "84067", + "84376", + "8878", + "8943", + "9146", + "91782", + "9179", + "92421", + "9392", + "950", + "9525", + "9648", + "9737", + "9765", + "9842" + ] + }, + "GO:0010975": { + "Name": "regulation of neuron projection development", + "Task": "GO", + "Genes": [ + "10371", + "10507", + "10519", + "10690", + "1072", + "11075", + "11344", + "114798", + "120892", + "126520", + "1400", + "1496", + "152559", + "162427", + "1630", + "1826", + "1948", + "2011", + "2033", + "2042", + "2185", + "2242", + "22871", + "23043", + "23064", + "23189", + "23271", + "23303", + "23363", + "23499", + "23654", + "25793", + "2580", + "26153", + "26259", + "2672", + "27", + "2803", + "285016", + "2889", + "29116", + "322", + "347733", + "348", + "3630", + "382", + "389658", + "4058", + "4067", + "4137", + "4168", + "4192", + "4504", + "4914", + "50487", + "51657", + "5365", + "54986", + "5584", + "5587", + "5663", + "56896", + "57118", + "57142", + "5753", + "5754", + "57689", + "5780", + "5911", + "5979", + "6014", + "6091", + "6092", + "627", + "64689", + "653", + "655", + "6695", + "79625", + "80725", + "81618", + "818", + "8428", + "8482", + "8499", + "8536", + "8934", + "9139", + "91752", + "9353", + "93650", + "9529", + "9693", + "9856" + ] + }, + "GO:0032677": { + "Name": "regulation of interleukin-8 production", + "Task": "GO", + "Genes": [ + "10392", + "10394", + "10542", + "11027", + "112744", + "11315", + "114609", + "1401", + "1649", + "1670", + "1991", + "2149", + "2150", + "2152", + "2219", + "23005", + "23586", + "25865", + "26191", + "2658", + "27202", + "2867", + "29108", + "301", + "307", + "3146", + "3303", + "3304", + "336", + "338322", + "3553", + "3569", + "3586", + "3929", + "3952", + "3965", + "408", + "4843", + "5054", + "51157", + "51284", + "51311", + "51744", + "53342", + "54106", + "56957", + "57506", + "5788", + "58509", + "5861", + "5970", + "602", + "64127", + "64581", + "671", + "6774", + "6850", + "7096", + "7097", + "7098", + "7099", + "7100", + "7124", + "84632", + "8692", + "8737", + "8772", + "8915", + "914", + "9314", + "9370", + "945", + "965", + "972" + ] + }, + "GO:0007041": { + "Name": "lysosomal transport", + "Task": "GO", + "Genes": [ + "1130", + "1191", + "1201", + "128866", + "138050", + "151636", + "154", + "164", + "22863", + "22906", + "23163", + "23295", + "23339", + "23400", + "23557", + "255738", + "2580", + "25978", + "26175", + "26276", + "26985", + "27072", + "27183", + "27243", + "274", + "2896", + "29911", + "30845", + "3312", + "388", + "3916", + "3920", + "4074", + "411", + "441925", + "4534", + "4734", + "5071", + "51172", + "5119", + "51332", + "51361", + "51479", + "51510", + "51542", + "51652", + "55275", + "55297", + "55681", + "55737", + "55823", + "5660", + "57132", + "57617", + "57679", + "57724", + "6272", + "6293", + "63894", + "63971", + "64089", + "64145", + "64400", + "64601", + "65018", + "65082", + "6653", + "6845", + "738", + "7415", + "7780", + "7781", + "7782", + "7879", + "79158", + "79643", + "8031", + "80700", + "83547", + "84067", + "84376", + "8943", + "9146", + "91782", + "9179", + "92421", + "9392", + "950", + "9525", + "9648", + "9737", + "9765", + "9842" + ] + }, + "GO:0019058": { + "Name": "viral life cycle", + "Task": "GO", + "Genes": [ + "10015", + "10332", + "10542", + "10663", + "11059", + "11060", + "11074", + "128637", + "128866", + "129531", + "131578", + "137492", + "1487", + "1488", + "1514", + "155382", + "156", + "1642", + "1656", + "185", + "200576", + "2060", + "219931", + "23633", + "25978", + "2621", + "27074", + "27183", + "27243", + "2838", + "28972", + "30835", + "3326", + "3383", + "339122", + "339390", + "348", + "3643", + "3685", + "3690", + "3838", + "440400", + "4734", + "4864", + "5091", + "5093", + "5094", + "51160", + "5119", + "51193", + "51510", + "51652", + "53373", + "5478", + "5481", + "55048", + "551", + "55223", + "553", + "558", + "57132", + "5819", + "5861", + "59272", + "6347", + "6520", + "6598", + "6609", + "7251", + "7415", + "7706", + "7879", + "7913", + "79643", + "79720", + "81876", + "83737", + "857", + "858", + "8673", + "8829", + "89853", + "90678", + "90861", + "91392", + "91782", + "9218", + "92421", + "93343", + "9397", + "9525", + "9712", + "9798" + ] + }, + "GO:0002832": { + "Name": "negative regulation of response to biotic stimulus", + "Task": "GO", + "Genes": [ + "100507436", + "10221", + "10859", + "11027", + "11274", + "11277", + "11326", + "117285", + "1378", + "142", + "147945", + "149095", + "196", + "2", + "22900", + "22978", + "23005", + "23170", + "23220", + "245928", + "259307", + "25939", + "26058", + "26146", + "2896", + "29883", + "3105", + "3106", + "3133", + "3134", + "3135", + "3428", + "345611", + "3630", + "3805", + "3821", + "3824", + "383", + "387837", + "3965", + "401397", + "4057", + "409", + "4277", + "4795", + "4938", + "4940", + "5094", + "51441", + "5272", + "54625", + "5468", + "5495", + "55646", + "56339", + "57506", + "5771", + "58509", + "59307", + "60343", + "6223", + "6318", + "634", + "64771", + "6737", + "6773", + "6895", + "7040", + "708", + "710", + "7128", + "730249", + "7534", + "79102", + "79132", + "79594", + "83737", + "84166", + "84243", + "84640", + "8815", + "90070", + "9111", + "9140", + "9212", + "9470", + "9474", + "9636", + "9958" + ] + }, + "GO:2001236": { + "Name": "regulation of extrinsic apoptotic signaling pathway", + "Task": "GO", + "Genes": [ + "10116", + "10197", + "10771", + "11315", + "117584", + "1437", + "147138", + "1540", + "162989", + "1654", + "183", + "186", + "207", + "219699", + "2243", + "2244", + "2260", + "2266", + "23017", + "246330", + "2537", + "2623", + "2668", + "27429", + "29108", + "2932", + "2950", + "3064", + "3162", + "3303", + "3304", + "3383", + "3479", + "3552", + "3553", + "3624", + "3655", + "367", + "3685", + "3958", + "4055", + "4170", + "467", + "50486", + "5054", + "5062", + "51330", + "5196", + "5366", + "5371", + "55023", + "5519", + "5598", + "57448", + "57630", + "596", + "5970", + "5979", + "598", + "637", + "64114", + "6422", + "6478", + "64798", + "6672", + "6714", + "672", + "6810", + "7015", + "7046", + "7057", + "7124", + "7128", + "7185", + "7186", + "7857", + "80196", + "8567", + "857", + "8682", + "8737", + "8742", + "8743", + "8772", + "8837", + "8915", + "8996", + "90" + ] + }, + "GO:0006898": { + "Name": "receptor-mediated endocytosis", + "Task": "GO", + "Genes": [ + "10203", + "10244", + "10266", + "10267", + "10268", + "10859", + "11006", + "11031", + "115548", + "1173", + "1174", + "1175", + "1201", + "133", + "1514", + "154", + "155", + "156", + "157", + "160", + "161", + "163", + "1759", + "1785", + "1814", + "200576", + "2060", + "219931", + "2208", + "2213", + "23149", + "23166", + "23396", + "2348", + "2580", + "26119", + "283420", + "2868", + "2885", + "2966", + "348", + "3482", + "3576", + "3577", + "3579", + "3949", + "4035", + "4036", + "4037", + "4074", + "408", + "409", + "432", + "4360", + "440400", + "4734", + "51429", + "5298", + "53353", + "54874", + "5538", + "55576", + "55681", + "55716", + "57007", + "5868", + "5898", + "5899", + "6441", + "6622", + "6642", + "6653", + "7036", + "7037", + "7436", + "81693", + "8218", + "8301", + "83737", + "85377", + "857", + "8578", + "858", + "859", + "9026", + "9214", + "9260", + "9413", + "948", + "9829", + "9873" + ] + }, + "GO:0006661": { + "Name": "phosphatidylinositol biosynthetic process", + "Task": "GO", + "Genes": [ + "10026", + "1040", + "10423", + "128869", + "129303", + "145567", + "200576", + "22863", + "22876", + "22979", + "23049", + "23167", + "23396", + "23556", + "27124", + "27315", + "284098", + "30849", + "3612", + "3635", + "3636", + "3706", + "3707", + "376497", + "4534", + "4952", + "51227", + "51447", + "51604", + "51763", + "5277", + "5279", + "5281", + "5283", + "5286", + "5289", + "5291", + "5294", + "5297", + "5298", + "5305", + "5336", + "54344", + "54872", + "55300", + "55361", + "55650", + "56623", + "5728", + "57605", + "64419", + "64924", + "65258", + "660", + "7405", + "79143", + "79837", + "80055", + "80235", + "80271", + "83394", + "8394", + "8395", + "8396", + "84302", + "84668", + "84992", + "8678", + "8733", + "8776", + "8813", + "8818", + "8821", + "8867", + "8871", + "8897", + "8898", + "9091", + "9107", + "9108", + "9110", + "93210", + "94005", + "9487", + "9488", + "9600", + "9807", + "9896" + ] + }, + "GO:0030177": { + "Name": "positive regulation of Wnt signaling pathway", + "Task": "GO", + "Genes": [ + "1001", + "10023", + "10159", + "10927", + "120892", + "1277", + "130612", + "139285", + "1453", + "1454", + "1457", + "1601", + "1613", + "1654", + "1950", + "1956", + "22943", + "23189", + "23213", + "245973", + "252839", + "25805", + "27123", + "27185", + "2719", + "284654", + "3087", + "331", + "340419", + "343637", + "3611", + "3728", + "4300", + "441478", + "4790", + "51185", + "51339", + "51366", + "51527", + "527", + "5300", + "54764", + "54795", + "5494", + "54994", + "55031", + "55182", + "55366", + "55789", + "55959", + "5754", + "57664", + "57805", + "59352", + "6206", + "6299", + "6422", + "6424", + "64750", + "65125", + "65268", + "6597", + "65981", + "6907", + "7015", + "7040", + "7097", + "7415", + "79577", + "79705", + "79718", + "79971", + "80351", + "81847", + "84870", + "8549", + "8607", + "8629", + "8658", + "8796", + "89780", + "9101", + "9679", + "9736", + "9839" + ] + }, + "GO:0050921": { + "Name": "positive regulation of chemotaxis", + "Task": "GO", + "Genes": [ + "10059", + "1012", + "102", + "10344", + "10488", + "10563", + "1230", + "1236", + "1240", + "1435", + "1436", + "146433", + "158747", + "1826", + "1907", + "1908", + "196527", + "199", + "2150", + "2152", + "2155", + "2247", + "2260", + "2277", + "2358", + "23604", + "25865", + "2621", + "27347", + "284340", + "3146", + "3315", + "3569", + "3570", + "3576", + "3592", + "3627", + "3791", + "3965", + "4192", + "4233", + "4908", + "5025", + "5054", + "51157", + "5155", + "5156", + "5587", + "5594", + "5595", + "5641", + "57402", + "5747", + "5879", + "5880", + "5919", + "6278", + "6346", + "6348", + "6351", + "6354", + "6363", + "6366", + "6375", + "6387", + "64094", + "65125", + "6809", + "6810", + "6868", + "7040", + "7057", + "7060", + "708", + "7114", + "7424", + "7474", + "7857", + "7941", + "811", + "8817", + "8823", + "90550", + "9353", + "9647", + "9943" + ] + }, + "GO:0032271": { + "Name": "regulation of protein polymerization", + "Task": "GO", + "Genes": [ + "1003", + "10142", + "10344", + "10382", + "10435", + "10456", + "10565", + "11075", + "11076", + "118", + "119", + "1236", + "136319", + "1440", + "146206", + "148170", + "157922", + "1639", + "2017", + "2185", + "2241", + "2242", + "22919", + "22924", + "23189", + "23271", + "23500", + "24139", + "25", + "253725", + "25802", + "25999", + "28964", + "2934", + "29922", + "3055", + "3059", + "3071", + "3303", + "3304", + "3320", + "382", + "3925", + "402", + "4133", + "4137", + "4204", + "4233", + "442721", + "4690", + "4733", + "4926", + "5058", + "5063", + "51571", + "5216", + "5217", + "55626", + "55755", + "55971", + "57482", + "57606", + "57662", + "58497", + "5879", + "5921", + "6188", + "6249", + "6356", + "6366", + "6369", + "64857", + "6622", + "6904", + "7114", + "7408", + "7429", + "79998", + "8440", + "84630", + "85477", + "8874", + "89795", + "9026", + "90952", + "9113", + "91663", + "9353", + "93663", + "9793" + ] + }, + "GO:0070665": { + "Name": "positive regulation of leukocyte proliferation", + "Task": "GO", + "Genes": [ + "100133941", + "10148", + "10288", + "10451", + "10673", + "11148", + "115352", + "126259", + "1435", + "1436", + "1437", + "1439", + "146433", + "149233", + "1604", + "177", + "1880", + "199", + "2048", + "2255", + "23308", + "29126", + "301", + "3071", + "30835", + "3105", + "3109", + "3113", + "3115", + "3133", + "3146", + "3479", + "3481", + "3485", + "3553", + "3558", + "3568", + "3569", + "3572", + "3592", + "3593", + "3594", + "3606", + "3717", + "3952", + "3965", + "4067", + "4179", + "4282", + "4690", + "4773", + "4860", + "51293", + "51561", + "54106", + "5594", + "5595", + "5747", + "57829", + "5788", + "59067", + "596", + "6188", + "6375", + "63925", + "64926", + "6541", + "684", + "7037", + "7048", + "7297", + "7412", + "80381", + "8440", + "912", + "916", + "923", + "940", + "952", + "959", + "970", + "972", + "975" + ] + }, + "GO:0090288": { + "Name": "negative regulation of cellular response to growth factor stimulus", + "Task": "GO", + "Genes": [ + "10016", + "10252", + "10253", + "10272", + "10563", + "153090", + "1634", + "1745", + "183", + "186", + "22905", + "23213", + "23592", + "25805", + "25928", + "26585", + "28996", + "3273", + "3565", + "3592", + "3593", + "390598", + "4091", + "4092", + "4681", + "493", + "50964", + "51232", + "51592", + "5291", + "5468", + "57154", + "57556", + "64750", + "6497", + "7057", + "7130", + "7321", + "7323", + "7471", + "7498", + "79639", + "79812", + "81792", + "8573", + "8646", + "8862", + "90993", + "9146", + "9241", + "9350", + "9353", + "9573" + ] + }, + "GO:0006997": { + "Name": "nucleus organization", + "Task": "GO", + "Genes": [ + "10015", + "10208", + "10783", + "1104", + "124491", + "128866", + "148362", + "1639", + "1663", + "1760", + "2010", + "2113", + "221035", + "221496", + "22927", + "22933", + "23141", + "23165", + "23175", + "23306", + "2334", + "23345", + "23353", + "23378", + "23399", + "23411", + "23435", + "23760", + "25777", + "25909", + "25978", + "26135", + "26993", + "27183", + "27243", + "274", + "28996", + "373509", + "4000", + "4001", + "4926", + "4928", + "50511", + "5119", + "51510", + "51652", + "5347", + "5371", + "545", + "55135", + "55165", + "55706", + "55746", + "5578", + "5579", + "57122", + "57132", + "57142", + "57673", + "6223", + "6314", + "64431", + "6683", + "6732", + "6839", + "7141", + "7175", + "7329", + "7443", + "79188", + "79643", + "80314", + "80346", + "8087", + "81929", + "8444", + "84942", + "8815", + "91782", + "92421", + "9525", + "9631", + "9688", + "983", + "9972" + ] + }, + "GO:0039531": { + "Name": "regulation of cytoplasmic pattern recognition receptor signaling pathway", + "Task": "GO", + "Genes": [ + "10211", + "10612", + "11074", + "11277", + "115004", + "115352", + "115362", + "121260", + "127018", + "140609", + "142", + "148066", + "152138", + "1654", + "197358", + "207", + "2150", + "22900", + "2319", + "23369", + "23547", + "25827", + "26007", + "260434", + "26057", + "26191", + "285852", + "286430", + "29997", + "329", + "330", + "3303", + "3304", + "331", + "3312", + "345611", + "373509", + "377630", + "4210", + "5094", + "5336", + "54106", + "54209", + "54941", + "5537", + "55577", + "55601", + "55666", + "5591", + "55914", + "5599", + "56919", + "57506", + "57590", + "57787", + "57864", + "5802", + "63906", + "6397", + "6714", + "6895", + "695", + "708", + "7105", + "7128", + "7353", + "79132", + "79184", + "80231", + "80772", + "81559", + "81790", + "83737", + "84243", + "84885", + "85364", + "857", + "8638", + "8780", + "8815", + "8887", + "89870", + "9212", + "9698", + "9958" + ] + }, + "GO:0002706": { + "Name": "regulation of lymphocyte mediated immunity", + "Task": "GO", + "Genes": [ + "100507436", + "10125", + "10459", + "10666", + "10859", + "10892", + "11006", + "11126", + "112441434", + "114836", + "1178", + "135250", + "1378", + "146850", + "149840", + "1604", + "163486", + "164", + "177", + "196", + "2213", + "22914", + "23705", + "259197", + "259307", + "3071", + "3077", + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3135", + "3140", + "3329", + "3440", + "3456", + "353091", + "3553", + "3554", + "3565", + "3592", + "3593", + "3606", + "3805", + "3821", + "3822", + "3824", + "387837", + "3916", + "3952", + "3965", + "409", + "50943", + "5272", + "54537", + "54795", + "56253", + "567", + "5817", + "5819", + "59067", + "6318", + "634", + "6375", + "6885", + "695", + "7037", + "7040", + "7158", + "7186", + "7189", + "722", + "725", + "7454", + "7855", + "81545", + "8417", + "8741", + "8809", + "9390", + "941", + "9437", + "975" + ] + }, + "GO:1904375": { + "Name": "regulation of protein localization to cell periphery", + "Task": "GO", + "Genes": [ + "10268", + "10399", + "10490", + "10519", + "10551", + "10857", + "112609", + "1173", + "126353", + "131578", + "1445", + "1601", + "163882", + "1739", + "1956", + "1969", + "1981", + "2035", + "2037", + "2042", + "207", + "2181", + "23096", + "23433", + "245812", + "25921", + "26060", + "26119", + "2633", + "27032", + "27183", + "27237", + "2770", + "2852", + "29098", + "29801", + "29899", + "3265", + "3630", + "367", + "3675", + "3688", + "3799", + "391", + "3958", + "4035", + "4323", + "4926", + "493", + "51201", + "51548", + "5170", + "5347", + "54209", + "54585", + "55022", + "5525", + "55625", + "55737", + "5581", + "5583", + "56246", + "57628", + "5780", + "5906", + "598", + "60", + "6248", + "64114", + "65267", + "6622", + "6711", + "6809", + "6810", + "7040", + "8301", + "8417", + "8500", + "85409", + "8650", + "8673", + "89958", + "9482", + "9495", + "9528" + ] + }, + "GO:0045931": { + "Name": "positive regulation of mitotic cell cycle", + "Task": "GO", + "Genes": [ + "1019", + "11065", + "113130", + "11331", + "118471", + "134353", + "150465", + "163786", + "1654", + "1845", + "1956", + "1977", + "1978", + "1981", + "199", + "207", + "219736", + "2255", + "23276", + "23326", + "23476", + "255374", + "26057", + "26271", + "284001", + "286053", + "28984", + "3169", + "3297", + "3373", + "4193", + "4212", + "440", + "4824", + "50484", + "51514", + "51529", + "51692", + "5514", + "5578", + "55835", + "5586", + "55904", + "55920", + "5641", + "57521", + "5889", + "5890", + "5925", + "595", + "6198", + "6240", + "6241", + "64094", + "6491", + "6868", + "6886", + "7027", + "7325", + "80174", + "8317", + "8452", + "84967", + "8558", + "8766", + "8877", + "891", + "894", + "9099", + "9510", + "9525", + "9587", + "983", + "990", + "991", + "993", + "994" + ] + }, + "GO:0042129": { + "Name": "regulation of T cell proliferation", + "Task": "GO", + "Genes": [ + "100133941", + "10148", + "10288", + "10457", + "10859", + "11006", + "11146", + "11148", + "1178", + "126259", + "1378", + "149233", + "1604", + "177", + "199", + "23240", + "23308", + "259307", + "29126", + "301", + "3071", + "30835", + "3105", + "3109", + "3113", + "3115", + "3123", + "3133", + "3135", + "3146", + "3479", + "3481", + "3485", + "3553", + "3558", + "3569", + "3572", + "3593", + "3594", + "3606", + "3620", + "3717", + "383", + "3952", + "3958", + "3965", + "4179", + "4690", + "4860", + "50943", + "51561", + "5573", + "57045", + "57829", + "59067", + "6188", + "6375", + "6385", + "64115", + "6441", + "64926", + "652", + "6541", + "7037", + "7048", + "7297", + "7412", + "79679", + "80380", + "80381", + "8440", + "8744", + "912", + "916", + "923", + "9231", + "940", + "944", + "959", + "970", + "975" + ] + }, + "GO:0016482": { + "Name": "cytosolic transport", + "Task": "GO", + "Genes": [ + "100287171", + "10139", + "10228", + "10652", + "1066", + "1201", + "143187", + "144717", + "150368", + "1639", + "164", + "200576", + "2060", + "22836", + "23074", + "23258", + "253725", + "2580", + "25963", + "26000", + "26088", + "27131", + "27147", + "27252", + "29886", + "30845", + "338382", + "374403", + "3916", + "3998", + "400", + "51272", + "51479", + "51542", + "51552", + "5305", + "54551", + "54732", + "54832", + "55062", + "55275", + "55297", + "55435", + "55610", + "55658", + "55737", + "55773", + "57533", + "57589", + "58533", + "5870", + "5987", + "6272", + "63893", + "64145", + "6642", + "6643", + "6811", + "6836", + "738", + "7813", + "7879", + "79585", + "79735", + "8218", + "83874", + "84910", + "8499", + "8675", + "8677", + "8729", + "8934", + "8938", + "9043", + "9179", + "9341", + "9527", + "9559", + "9648", + "9779", + "9827", + "9905" + ] + }, + "GO:0051301": { + "Name": "cell division", + "Task": "GO", + "Genes": [ + "10015", + "10112", + "10376", + "1058", + "10617", + "10636", + "10899", + "11021", + "11113", + "112574", + "11258", + "114327", + "116840", + "128866", + "129531", + "1894", + "200942", + "203068", + "220134", + "23111", + "23157", + "23332", + "24137", + "257364", + "25937", + "25978", + "26354", + "26586", + "27183", + "27243", + "2770", + "2771", + "2773", + "285643", + "288", + "29127", + "311", + "324", + "348235", + "3619", + "387", + "388", + "389", + "3925", + "403", + "4134", + "4627", + "4628", + "5119", + "51203", + "51429", + "51510", + "51652", + "5347", + "54443", + "54784", + "54902", + "55165", + "55521", + "56288", + "57132", + "585", + "6651", + "6660", + "6683", + "6711", + "7005", + "7846", + "79643", + "84790", + "84861", + "85440", + "8636", + "9094", + "9101", + "91782", + "9181", + "9212", + "92421", + "9493", + "9525", + "9798" + ] + }, + "GO:0045807": { + "Name": "positive regulation of endocytosis", + "Task": "GO", + "Genes": [ + "100506013", + "10211", + "10461", + "10584", + "10960", + "116519", + "1191", + "124912", + "1535", + "1601", + "1861", + "1950", + "197", + "2150", + "2219", + "2220", + "23011", + "2332", + "2358", + "255738", + "25999", + "26119", + "2621", + "2688", + "284", + "302", + "3077", + "3092", + "3190", + "335", + "336", + "348", + "3560", + "3561", + "3600", + "3601", + "3643", + "399687", + "4035", + "408", + "409", + "4153", + "4908", + "5054", + "50632", + "51160", + "51479", + "5336", + "54209", + "5538", + "558", + "566", + "567", + "57118", + "5873", + "636", + "6401", + "6424", + "6441", + "64581", + "6609", + "6622", + "7018", + "7036", + "717", + "718", + "720", + "721", + "7275", + "7287", + "7448", + "78989", + "8527", + "8547", + "867", + "8862", + "89780", + "967", + "977", + "9779", + "9863" + ] + }, + "GO:0007163": { + "Name": "establishment or maintenance of cell polarity", + "Task": "GO", + "Genes": [ + "10403", + "10479", + "10486", + "10487", + "10524", + "1058", + "11004", + "115701", + "1236", + "126353", + "137886", + "143098", + "146206", + "1639", + "1739", + "2011", + "22841", + "22919", + "23094", + "23122", + "23286", + "23332", + "23418", + "23513", + "23616", + "2697", + "286", + "2932", + "29780", + "29899", + "3064", + "3071", + "358", + "3688", + "3834", + "387", + "399687", + "4085", + "4134", + "4478", + "4649", + "4926", + "4983", + "5048", + "50855", + "5347", + "54820", + "54908", + "55612", + "5584", + "55968", + "56288", + "5747", + "57662", + "5911", + "60", + "6351", + "6363", + "6366", + "64083", + "6425", + "6548", + "6624", + "667", + "6693", + "6794", + "7430", + "81609", + "84080", + "84612", + "85302", + "85440", + "8729", + "8841", + "9053", + "917", + "9183", + "9231", + "9368", + "9578", + "9793", + "9948" + ] + }, + "GO:0008277": { + "Name": "regulation of G protein-coupled receptor signaling pathway", + "Task": "GO", + "Genes": [ + "100", + "100506013", + "10268", + "10419", + "10868", + "11240", + "112609", + "116", + "131890", + "133", + "154", + "155", + "156", + "1609", + "1814", + "1906", + "2147", + "22844", + "23032", + "23295", + "23322", + "25818", + "2779", + "2786", + "2788", + "2852", + "2868", + "2869", + "2870", + "2966", + "2986", + "29978", + "3000", + "3091", + "333", + "3576", + "3925", + "408", + "409", + "4233", + "43847", + "441925", + "4836", + "493", + "51304", + "5245", + "5341", + "54209", + "54550", + "55", + "55188", + "5530", + "55625", + "5578", + "56246", + "5653", + "57512", + "5997", + "5998", + "5999", + "6000", + "6004", + "6011", + "6091", + "6093", + "6586", + "6622", + "718", + "7289", + "7529", + "7737", + "79823", + "8490", + "8601", + "8862", + "9353", + "9397", + "9737" + ] + }, + "GO:1903052": { + "Name": "positive regulation of proteolysis involved in protein catabolic process", + "Task": "GO", + "Genes": [ + "10134", + "10273", + "10399", + "10444", + "1050", + "11236", + "11337", + "114881", + "116224", + "1191", + "1263", + "144165", + "1452", + "149628", + "153090", + "153769", + "1601", + "160418", + "1855", + "207", + "22933", + "23640", + "25898", + "26471", + "28952", + "2931", + "2932", + "29978", + "29979", + "29997", + "3300", + "3303", + "4092", + "4193", + "4287", + "4780", + "5071", + "51136", + "51548", + "51667", + "5347", + "55070", + "55212", + "55294", + "5701", + "5702", + "5705", + "5706", + "57154", + "5716", + "5728", + "5886", + "5988", + "64110", + "641700", + "64326", + "6449", + "65992", + "6613", + "6872", + "7041", + "7341", + "7415", + "7917", + "79699", + "80279", + "8078", + "81542", + "84231", + "84456", + "8517", + "85409", + "857", + "863", + "8975", + "91445", + "93974", + "9655", + "9709", + "9817", + "9978", + "9992" + ] + }, + "GO:0030595": { + "Name": "leukocyte chemotaxis", + "Task": "GO", + "Genes": [ + "10344", + "10563", + "1113", + "120425", + "1230", + "1234", + "1235", + "1236", + "140596", + "1511", + "1525", + "1667", + "1880", + "1906", + "1907", + "1908", + "1910", + "200576", + "2321", + "23396", + "2350", + "240", + "2621", + "301", + "3071", + "30817", + "3569", + "3570", + "3576", + "3577", + "3579", + "3586", + "3627", + "3689", + "3815", + "387695", + "3958", + "4192", + "4814", + "503618", + "51119", + "51192", + "5155", + "5196", + "5293", + "5294", + "5478", + "5479", + "5800", + "6223", + "6279", + "6280", + "6283", + "6288", + "6347", + "6348", + "6354", + "6356", + "6357", + "6363", + "6366", + "6368", + "6369", + "6372", + "6373", + "6375", + "6376", + "6441", + "6558", + "682", + "6850", + "692094", + "728358", + "7852", + "7857", + "796", + "8600", + "8729" + ] + }, + "GO:0002819": { + "Name": "regulation of adaptive immune response", + "Task": "GO", + "Genes": [ + "10459", + "10666", + "10859", + "10892", + "11006", + "11126", + "112441434", + "1178", + "1378", + "149233", + "149840", + "1604", + "163486", + "177", + "196", + "2213", + "23411", + "246778", + "259307", + "29108", + "29126", + "301", + "3071", + "3077", + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3135", + "3140", + "3329", + "3440", + "3456", + "3553", + "3554", + "3565", + "3572", + "3592", + "3593", + "3594", + "3606", + "3659", + "3665", + "3821", + "3824", + "50943", + "51561", + "54537", + "54795", + "567", + "5817", + "5819", + "5987", + "6046", + "634", + "6375", + "64170", + "6885", + "695", + "7037", + "7040", + "7158", + "7186", + "7189", + "722", + "725", + "7454", + "7855", + "81545", + "8417", + "8631", + "8741", + "8764", + "8809", + "9390", + "941", + "975" + ] + }, + "GO:0030512": { + "Name": "negative regulation of transforming growth factor beta receptor signaling pathway", + "Task": "GO", + "Genes": [ + "1001", + "10273", + "11171", + "114990", + "117166", + "124857", + "135228", + "163126", + "2280", + "23089", + "23592", + "25805", + "26036", + "283149", + "3303", + "4052", + "4091", + "4092", + "51341", + "5170", + "5300", + "5465", + "5468", + "54829", + "5494", + "55756", + "56937", + "57154", + "58533", + "63976", + "64081", + "64750", + "6497", + "650", + "652991", + "6868", + "7080", + "753", + "79674", + "81031", + "83891", + "8483", + "9110", + "9719", + "9958" + ] + }, + "GO:0017157": { + "Name": "regulation of exocytosis", + "Task": "GO", + "Genes": [ + "10015", + "10079", + "1080", + "10814", + "10815", + "11141", + "11267", + "11314", + "120892", + "134957", + "150", + "164", + "192683", + "201294", + "2150", + "2213", + "2242", + "2243", + "2244", + "2266", + "23011", + "23086", + "23122", + "23332", + "23400", + "27183", + "27243", + "29091", + "301", + "3071", + "30817", + "3134", + "3684", + "3689", + "376267", + "3822", + "3916", + "3965", + "50487", + "5071", + "51652", + "5413", + "57126", + "57617", + "5864", + "5868", + "5873", + "5874", + "5898", + "634", + "6382", + "6385", + "6386", + "6622", + "6810", + "6812", + "6814", + "6845", + "6853", + "6857", + "7251", + "7784", + "7879", + "79643", + "8027", + "83452", + "8448", + "84932", + "8673", + "8723", + "8832", + "8938", + "9146", + "9367", + "94121", + "9525", + "9545", + "9581" + ] + }, + "GO:0032465": { + "Name": "regulation of cytokinesis", + "Task": "GO", + "Genes": [ + "10112", + "1069", + "10755", + "10807", + "11113", + "117194", + "1263", + "1813", + "1814", + "1894", + "201161", + "201163", + "23503", + "23636", + "25909", + "26189", + "2652", + "27183", + "28964", + "29072", + "29127", + "30849", + "341019", + "387", + "50838", + "51100", + "51289", + "5289", + "5300", + "5347", + "54627", + "55660", + "5581", + "5586", + "55958", + "57026", + "57448", + "585", + "5956", + "598", + "63971", + "643", + "65125", + "6683", + "6755", + "6795", + "728458", + "7405", + "79187", + "79541", + "79848", + "79884", + "79998", + "80179", + "808", + "80834", + "84440", + "8452", + "84936", + "8502", + "8678", + "8766", + "90293", + "9055", + "9212", + "92421", + "9493", + "9585", + "9727", + "9738", + "990", + "9903", + "9928", + "994" + ] + }, + "GO:0051048": { + "Name": "negative regulation of secretion", + "Task": "GO", + "Genes": [ + "10079", + "10859", + "10961", + "1113", + "11141", + "11314", + "131177", + "1393", + "140947", + "150", + "151", + "152", + "1813", + "1814", + "1815", + "1950", + "2065", + "2213", + "23208", + "23409", + "25953", + "26056", + "26297", + "2697", + "285381", + "29091", + "301", + "3071", + "3084", + "3134", + "348", + "353500", + "3589", + "3592", + "3593", + "3625", + "3630", + "3667", + "3767", + "3965", + "3976", + "4345", + "4762", + "497189", + "4988", + "5008", + "5071", + "5978", + "634", + "64111", + "6422", + "64285", + "6622", + "6814", + "6860", + "7879", + "80223", + "83452", + "84830", + "8529", + "8609", + "8673", + "8832", + "91543", + "9341", + "9525", + "972", + "9727" + ] + }, + "GO:1902749": { + "Name": "regulation of cell cycle G2/M phase transition", + "Task": "GO", + "Genes": [ + "1019", + "1026", + "1063", + "1111", + "1112", + "116224", + "152110", + "219736", + "2273", + "22809", + "23476", + "26271", + "27133", + "27183", + "29086", + "29980", + "29997", + "373509", + "377630", + "4683", + "472", + "4869", + "50484", + "51147", + "51149", + "51343", + "51347", + "51514", + "51720", + "5347", + "55031", + "55743", + "55920", + "56658", + "57551", + "58493", + "5889", + "5890", + "595", + "5988", + "60561", + "6240", + "63967", + "641", + "64859", + "65123", + "672", + "6790", + "7157", + "7465", + "79035", + "79184", + "79915", + "80174", + "80279", + "8317", + "84142", + "8444", + "84446", + "84936", + "8555", + "8766", + "8883", + "891", + "9088", + "92002", + "92421", + "9344", + "9525", + "9555", + "9577", + "983", + "9928", + "993", + "994" + ] + }, + "GO:0048259": { + "Name": "regulation of receptor-mediated endocytosis", + "Task": "GO", + "Genes": [ + "100506013", + "10188", + "10211", + "10825", + "116519", + "1191", + "124590", + "124930", + "150696", + "1601", + "1950", + "20", + "22848", + "22943", + "23011", + "2332", + "255738", + "26119", + "2688", + "284", + "284654", + "29978", + "302", + "3077", + "3092", + "3190", + "338692", + "341", + "344", + "345", + "351", + "3643", + "3685", + "3690", + "382", + "4043", + "408", + "409", + "4908", + "4983", + "5054", + "5291", + "54550", + "5538", + "5663", + "567", + "5879", + "6311", + "636", + "6386", + "6401", + "6424", + "7018", + "7448", + "79890", + "8301", + "84058", + "8527", + "867", + "88455", + "8862", + "89780", + "90416", + "9370", + "967", + "9779", + "9863", + "9892" + ] + }, + "GO:0002700": { + "Name": "regulation of production of molecular mediator of immune response", + "Task": "GO", + "Genes": [ + "10459", + "10859", + "10892", + "11006", + "11126", + "112441434", + "115352", + "1178", + "117854", + "1378", + "144811", + "149840", + "1604", + "163486", + "2048", + "2150", + "25818", + "2821", + "3077", + "3105", + "3133", + "3134", + "3135", + "335", + "336", + "3440", + "3456", + "353091", + "354", + "3553", + "3554", + "3558", + "3565", + "3569", + "3586", + "3606", + "3663", + "3805", + "3815", + "50943", + "51744", + "5225", + "54106", + "54537", + "54795", + "55765", + "5650", + "567", + "5788", + "6375", + "64127", + "6810", + "684", + "6885", + "695", + "7037", + "7040", + "7042", + "7043", + "7124", + "7158", + "7186", + "7189", + "7474", + "7494", + "7855", + "79004", + "814", + "8140", + "8741", + "8809", + "9341", + "975", + "9865" + ] + }, + "GO:0006909": { + "Name": "phagocytosis", + "Task": "GO", + "Genes": [ + "10062", + "10451", + "10461", + "1089", + "11151", + "134", + "135", + "1793", + "196051", + "200576", + "2213", + "2219", + "2220", + "2268", + "22841", + "23396", + "23603", + "23616", + "25", + "2534", + "25912", + "2621", + "301", + "3055", + "306", + "3146", + "353376", + "3685", + "3690", + "3984", + "4035", + "4067", + "5058", + "51454", + "5175", + "5338", + "54209", + "54734", + "55113", + "55647", + "558", + "5580", + "5581", + "5747", + "575", + "5914", + "64581", + "6714", + "6850", + "7052", + "7057", + "7099", + "7409", + "7410", + "7525", + "7879", + "81035", + "83871", + "8394", + "8398", + "84162", + "8547", + "94134", + "948", + "949", + "9777", + "9844", + "9936", + "9938" + ] + }, + "GO:0050000": { + "Name": "chromosome localization", + "Task": "GO", + "Genes": [ + "10015", + "10403", + "10464", + "10540", + "1062", + "1063", + "10726", + "11004", + "113130", + "128866", + "147841", + "151648", + "152185", + "220134", + "221150", + "22919", + "23172", + "23212", + "23636", + "256364", + "25900", + "25978", + "2669", + "27183", + "27243", + "27436", + "283489", + "348235", + "3833", + "3835", + "3837", + "4000", + "51112", + "5119", + "51510", + "51652", + "54820", + "54908", + "54984", + "55143", + "55165", + "55166", + "55201", + "57082", + "57132", + "57405", + "5925", + "6795", + "7756", + "79003", + "79643", + "79998", + "81610", + "81620", + "81929", + "81930", + "83540", + "8452", + "84643", + "84722", + "8678", + "8697", + "8766", + "891", + "91272", + "91782", + "9183", + "9184", + "9212", + "92421", + "9525", + "9928" + ] + }, + "GO:1903076": { + "Name": "regulation of protein localization to plasma membrane", + "Task": "GO", + "Genes": [ + "10268", + "10399", + "10490", + "10519", + "10551", + "10857", + "112609", + "1173", + "131578", + "1445", + "1601", + "163882", + "1739", + "1956", + "1969", + "2042", + "207", + "2181", + "23433", + "245812", + "25921", + "26060", + "26119", + "2633", + "27032", + "27183", + "27237", + "2852", + "29098", + "29801", + "3630", + "367", + "3675", + "3688", + "3799", + "391", + "3958", + "4035", + "4323", + "493", + "51201", + "51548", + "5170", + "54209", + "55022", + "5525", + "55625", + "5581", + "5583", + "56246", + "57628", + "5780", + "598", + "60", + "6248", + "64114", + "65267", + "6711", + "6809", + "6810", + "7040", + "8301", + "8417", + "8500", + "85409", + "8650", + "8673", + "9482", + "9495", + "9528" + ] + }, + "GO:0051701": { + "Name": "biological process involved in interaction with host", + "Task": "GO", + "Genes": [ + "10332", + "11059", + "11060", + "11074", + "128866", + "131578", + "1514", + "156", + "1642", + "185", + "200576", + "2060", + "207", + "219931", + "25978", + "2621", + "27074", + "27183", + "27243", + "2838", + "30835", + "3326", + "3329", + "3383", + "339390", + "3434", + "3643", + "3685", + "3690", + "440400", + "4864", + "5091", + "5119", + "51193", + "51510", + "51652", + "53373", + "5478", + "5481", + "551", + "55223", + "553", + "558", + "57132", + "5819", + "59272", + "6520", + "6609", + "6714", + "6993", + "7251", + "7706", + "7879", + "79643", + "79720", + "83737", + "857", + "858", + "867", + "8673", + "8678", + "8829", + "90861", + "91392", + "91782", + "9218", + "92421", + "949", + "9525", + "9798" + ] + }, + "GO:0035966": { + "Name": "response to topologically incorrect protein", + "Task": "GO", + "Genes": [ + "10013", + "10133", + "10273", + "10488", + "10808", + "11080", + "1191", + "135138", + "1388", + "1491", + "153090", + "1616", + "1649", + "1965", + "201595", + "2081", + "2161", + "22926", + "23071", + "23456", + "23471", + "26353", + "26608", + "267", + "27129", + "27348", + "3297", + "3300", + "3301", + "3303", + "3305", + "3306", + "3309", + "3310", + "3329", + "3336", + "3337", + "3338", + "468", + "4780", + "5071", + "51009", + "51360", + "51768", + "54788", + "54870", + "54956", + "55122", + "55432", + "55658", + "55829", + "5770", + "578", + "581", + "7009", + "7353", + "7415", + "7494", + "79139", + "79871", + "79956", + "80279", + "80311", + "8452", + "857", + "871", + "8720", + "8988", + "91319", + "9217", + "9451", + "9531" + ] + }, + "GO:0002822": { + "Name": "regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains", + "Task": "GO", + "Genes": [ + "10459", + "10666", + "10859", + "10892", + "11006", + "112441434", + "1178", + "1378", + "149233", + "149840", + "1604", + "163486", + "177", + "196", + "2213", + "246778", + "259307", + "29126", + "301", + "3071", + "3077", + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3135", + "3140", + "3329", + "3440", + "3456", + "3553", + "3554", + "3565", + "3592", + "3593", + "3594", + "3606", + "3821", + "3824", + "50943", + "51561", + "54537", + "54795", + "567", + "5817", + "5819", + "6046", + "634", + "6375", + "64170", + "6885", + "695", + "7037", + "7040", + "7158", + "7186", + "7189", + "722", + "725", + "7454", + "7855", + "81545", + "8417", + "8741", + "8809", + "9390", + "941", + "975" + ] + }, + "GO:0051303": { + "Name": "establishment of chromosome localization", + "Task": "GO", + "Genes": [ + "10015", + "10403", + "10464", + "10540", + "1062", + "1063", + "10726", + "11004", + "113130", + "128866", + "147841", + "151648", + "152185", + "220134", + "221150", + "22919", + "23172", + "23212", + "23636", + "256364", + "25978", + "2669", + "27183", + "27243", + "27436", + "283489", + "348235", + "3833", + "3835", + "3837", + "51112", + "5119", + "51510", + "51652", + "54820", + "54908", + "54984", + "55143", + "55165", + "55166", + "55201", + "57082", + "57132", + "57405", + "5925", + "6795", + "7756", + "79003", + "79643", + "79998", + "81610", + "81620", + "81929", + "81930", + "83540", + "8452", + "84643", + "84722", + "8678", + "8697", + "8766", + "891", + "91272", + "91782", + "9183", + "9184", + "9212", + "92421", + "9525", + "9928" + ] + }, + "GO:0045216": { + "Name": "cell-cell junction organization", + "Task": "GO", + "Genes": [ + "1003", + "100506658", + "10052", + "10266", + "10804", + "10979", + "11187", + "125111", + "1365", + "143098", + "143162", + "1436", + "144100", + "1499", + "153562", + "1739", + "1829", + "1894", + "2149", + "2150", + "23396", + "2697", + "2701", + "2702", + "2705", + "2706", + "3728", + "3801", + "387", + "389", + "4088", + "4092", + "4301", + "4868", + "5010", + "5062", + "5175", + "5318", + "55243", + "55765", + "5578", + "5584", + "5586", + "5657", + "57126", + "57662", + "5872", + "60", + "6591", + "6624", + "7040", + "7042", + "7043", + "7082", + "7094", + "71", + "7122", + "7414", + "79977", + "79983", + "83660", + "83700", + "84612", + "8506", + "85302", + "9076", + "90952", + "91663", + "91862", + "9948", + "999" + ] + }, + "GO:0048545": { + "Name": "response to steroid hormone", + "Task": "GO", + "Genes": [ + "10018", + "10062", + "10413", + "10474", + "10521", + "11057", + "11240", + "133522", + "1616", + "1655", + "1667", + "1668", + "2099", + "2100", + "23081", + "23543", + "23558", + "2692", + "2852", + "2908", + "301", + "3192", + "3303", + "3304", + "3312", + "3557", + "3569", + "358", + "3586", + "367", + "4246", + "4734", + "476", + "477", + "4824", + "51366", + "5241", + "5245", + "5458", + "5469", + "55625", + "55809", + "55818", + "5594", + "57178", + "5978", + "677", + "678", + "687", + "7040", + "7042", + "7043", + "7057", + "7110", + "7124", + "728358", + "7332", + "7337", + "7533", + "7538", + "79039", + "811", + "81285", + "8289", + "857", + "8611", + "8644", + "8725", + "92595", + "9325" + ] + }, + "GO:0051310": { + "Name": "metaphase chromosome alignment", + "Task": "GO", + "Genes": [ + "10015", + "10403", + "10464", + "10540", + "1062", + "1063", + "10726", + "11004", + "113130", + "128866", + "147841", + "151648", + "152185", + "220134", + "221150", + "22919", + "23172", + "23212", + "23636", + "256364", + "25978", + "2669", + "27183", + "27243", + "27436", + "283489", + "348235", + "3833", + "3835", + "3837", + "51112", + "5119", + "51510", + "51652", + "54908", + "54984", + "55143", + "55165", + "55166", + "55201", + "57082", + "57132", + "57405", + "5925", + "6795", + "7756", + "79003", + "79643", + "79998", + "81610", + "81620", + "81929", + "81930", + "83540", + "8452", + "84643", + "84722", + "8678", + "8697", + "8766", + "891", + "91272", + "91782", + "9183", + "9184", + "9212", + "92421", + "9525", + "9928" + ] + }, + "GO:0098876": { + "Name": "vesicle-mediated transport to the plasma membrane", + "Task": "GO", + "Genes": [ + "100287171", + "10123", + "10133", + "10139", + "10228", + "10311", + "10564", + "10807", + "10938", + "11031", + "11267", + "143187", + "150684", + "157680", + "2060", + "22853", + "23062", + "23163", + "23339", + "23499", + "253725", + "25837", + "25930", + "26088", + "261729", + "2803", + "288", + "28952", + "30844", + "30845", + "30846", + "382", + "3875", + "50619", + "51125", + "51552", + "51699", + "54520", + "54918", + "55275", + "55610", + "55737", + "55770", + "57020", + "57182", + "582", + "583", + "5872", + "6293", + "64083", + "6711", + "738", + "7879", + "81609", + "81693", + "83871", + "84079", + "84162", + "85377", + "8548", + "8674", + "8675", + "8723", + "9230", + "9559", + "9648", + "9727", + "9784", + "9919" + ] + }, + "GO:0032091": { + "Name": "negative regulation of protein binding", + "Task": "GO", + "Genes": [ + "1026", + "10399", + "10763", + "11315", + "120892", + "129531", + "1454", + "146057", + "147138", + "151651", + "154", + "155", + "1601", + "165904", + "166", + "1663", + "207", + "22943", + "23028", + "23032", + "24144", + "255738", + "2801", + "2962", + "3077", + "3078", + "3080", + "3300", + "3433", + "3434", + "3586", + "3676", + "4043", + "409", + "488", + "489", + "51339", + "5155", + "5195", + "5300", + "54552", + "5580", + "5599", + "567", + "56998", + "5792", + "581", + "5899", + "59082", + "6093", + "6590", + "6790", + "6815", + "7009", + "80011", + "81494", + "8189", + "84630", + "8536", + "8751", + "9212", + "9241", + "9270", + "9370", + "9532" + ] + }, + "GO:0006887": { + "Name": "exocytosis", + "Task": "GO", + "Genes": [ + "100287171", + "100431172", + "1020", + "10244", + "10257", + "10490", + "10497", + "10565", + "10652", + "10814", + "10815", + "10890", + "10987", + "11031", + "1113", + "11151", + "117194", + "1230", + "1393", + "148281", + "149371", + "153339", + "2205", + "22999", + "23396", + "23557", + "25837", + "26154", + "261729", + "3055", + "306", + "375056", + "3815", + "387695", + "4218", + "4627", + "4905", + "5286", + "5293", + "5294", + "5413", + "54843", + "55770", + "56900", + "57393", + "57829", + "5864", + "5873", + "60684", + "6348", + "6355", + "6616", + "6622", + "6804", + "6812", + "6844", + "6845", + "80331", + "84522", + "84958", + "8673", + "8766", + "8773", + "9230", + "9341" + ] + }, + "GO:0031341": { + "Name": "regulation of cell killing", + "Task": "GO", + "Genes": [ + "100507436", + "10125", + "10666", + "10859", + "11126", + "114836", + "135250", + "1378", + "1379", + "146850", + "1604", + "164", + "177", + "2150", + "2208", + "2213", + "22914", + "23705", + "259197", + "3071", + "3075", + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3135", + "3140", + "3383", + "3458", + "3565", + "3586", + "3589", + "3592", + "3593", + "3596", + "3805", + "3821", + "3822", + "3824", + "383", + "387837", + "3916", + "3952", + "3965", + "409", + "4843", + "5272", + "5551", + "5599", + "56253", + "5817", + "5819", + "59067", + "6318", + "634", + "6375", + "64581", + "6850", + "7040", + "7042", + "8417", + "9390", + "9437", + "966" + ] + }, + "GO:0090263": { + "Name": "positive regulation of canonical Wnt signaling pathway", + "Task": "GO", + "Genes": [ + "1001", + "10023", + "10159", + "120892", + "1277", + "130612", + "139285", + "1453", + "1613", + "1654", + "1950", + "1956", + "23189", + "252839", + "25805", + "27123", + "2719", + "284654", + "3087", + "331", + "3611", + "3728", + "441478", + "4790", + "51339", + "51366", + "51527", + "5300", + "54795", + "5494", + "54994", + "55031", + "55182", + "55366", + "5754", + "57664", + "57805", + "6206", + "6422", + "6424", + "64750", + "65125", + "65268", + "65981", + "6907", + "7040", + "7415", + "79705", + "79718", + "79971", + "80351", + "81847", + "8549", + "8607", + "8629", + "8658", + "8796", + "89780", + "9101", + "9679", + "9736", + "9839" + ] + }, + "GO:1901874": { + "Name": "negative regulation of post-translational protein modification", + "Task": "GO", + "Genes": [ + "10196", + "10253", + "10401", + "10459", + "10491", + "10625", + "11315", + "11338", + "123879", + "1499", + "151636", + "153769", + "207", + "23251", + "23376", + "23560", + "25", + "26271", + "266740", + "3301", + "3303", + "3304", + "339745", + "374969", + "3984", + "408", + "4085", + "409", + "4092", + "4101", + "51035", + "51160", + "51547", + "54552", + "54765", + "5478", + "54984", + "5582", + "55869", + "59343", + "6125", + "6135", + "6188", + "6201", + "64175", + "64844", + "65125", + "6659", + "6737", + "6872", + "7128", + "7375", + "819", + "825", + "84101", + "8473", + "84875", + "857", + "8878", + "9349", + "9529", + "9532", + "9636" + ] + }, + "GO:0042147": { + "Name": "retrograde transport, endosome to Golgi", + "Task": "GO", + "Genes": [ + "100287171", + "10139", + "10228", + "10652", + "143187", + "144717", + "150368", + "1639", + "200576", + "22836", + "23074", + "23258", + "253725", + "25963", + "26000", + "26088", + "27131", + "27147", + "29886", + "30845", + "338382", + "374403", + "3998", + "400", + "51272", + "51479", + "51542", + "54551", + "54732", + "55275", + "55610", + "55658", + "55737", + "55773", + "57533", + "57589", + "58533", + "5870", + "5987", + "63893", + "64145", + "6642", + "6643", + "6811", + "6836", + "738", + "7813", + "7879", + "79735", + "8218", + "83874", + "84910", + "8675", + "8677", + "8729", + "8934", + "8938", + "9043", + "9341", + "9527", + "9559", + "9648", + "9779", + "9827", + "9905" + ] + }, + "GO:1903531": { + "Name": "negative regulation of secretion by cell", + "Task": "GO", + "Genes": [ + "10079", + "10859", + "10961", + "1113", + "11141", + "11314", + "131177", + "1393", + "150", + "151", + "152", + "1813", + "1814", + "1815", + "2213", + "23208", + "23409", + "25953", + "26056", + "26297", + "2697", + "285381", + "29091", + "301", + "3071", + "3134", + "348", + "353500", + "3589", + "3592", + "3593", + "3625", + "3630", + "3667", + "3767", + "3965", + "3976", + "4345", + "4988", + "5008", + "5071", + "5978", + "634", + "64111", + "6422", + "64285", + "6622", + "6814", + "6860", + "7879", + "80223", + "83452", + "84830", + "8609", + "8673", + "8832", + "91543", + "9341", + "9525", + "9727" + ] + }, + "GO:0051224": { + "Name": "negative regulation of protein transport", + "Task": "GO", + "Genes": [ + "10956", + "10961", + "11060", + "11261", + "11315", + "131177", + "1445", + "150", + "1813", + "1814", + "1815", + "23409", + "258010", + "26056", + "26297", + "27248", + "285381", + "29934", + "337867", + "347", + "348", + "353500", + "3592", + "3593", + "3630", + "3638", + "3667", + "3767", + "4345", + "4988", + "5071", + "51009", + "51465", + "51569", + "51684", + "51715", + "55432", + "580", + "5905", + "5978", + "6248", + "6422", + "64285", + "6672", + "7327", + "7341", + "80223", + "80762", + "84830", + "8609", + "8724", + "91319", + "91543", + "9370", + "9647", + "9727" + ] + }, + "GO:1901992": { + "Name": "positive regulation of mitotic cell cycle phase transition", + "Task": "GO", + "Genes": [ + "1019", + "11065", + "113130", + "11331", + "118471", + "134353", + "163786", + "1654", + "1956", + "1981", + "199", + "207", + "219736", + "2255", + "23276", + "23476", + "255374", + "26057", + "26271", + "286053", + "28984", + "3373", + "50484", + "51514", + "51529", + "51692", + "55835", + "55904", + "55920", + "57521", + "5889", + "5890", + "5925", + "595", + "6240", + "6241", + "6491", + "6868", + "7027", + "7325", + "80174", + "8317", + "8452", + "84967", + "8558", + "8766", + "891", + "894", + "9510", + "9525", + "9587", + "983", + "990", + "991", + "993", + "994" + ] + }, + "GO:0002705": { + "Name": "positive regulation of leukocyte mediated immunity", + "Task": "GO", + "Genes": [ + "10125", + "10459", + "10666", + "10892", + "11126", + "112441434", + "114836", + "135250", + "149840", + "1604", + "163486", + "164", + "2150", + "22914", + "23705", + "259197", + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3135", + "3140", + "3329", + "353091", + "3553", + "3554", + "3565", + "3592", + "3593", + "3606", + "3684", + "3689", + "3805", + "3822", + "3824", + "383", + "3916", + "4843", + "54537", + "56253", + "567", + "57126", + "5817", + "5819", + "59067", + "6375", + "6810", + "6885", + "7037", + "7040", + "7158", + "7186", + "7189", + "7855", + "814", + "81545", + "8417", + "8741", + "8809", + "9390", + "975" + ] + }, + "GO:0010389": { + "Name": "regulation of G2/M transition of mitotic cell cycle", + "Task": "GO", + "Genes": [ + "1019", + "1026", + "1063", + "1111", + "1112", + "116224", + "219736", + "2273", + "23476", + "26271", + "27133", + "27183", + "29086", + "29980", + "29997", + "4683", + "472", + "50484", + "51149", + "51343", + "51347", + "51514", + "51720", + "5347", + "55031", + "55743", + "55920", + "56658", + "57551", + "58493", + "5889", + "5890", + "595", + "5988", + "60561", + "6240", + "63967", + "641", + "64859", + "65123", + "672", + "6790", + "7465", + "79035", + "79184", + "80174", + "80279", + "8317", + "84142", + "84446", + "84936", + "8555", + "8766", + "8883", + "891", + "9088", + "92421", + "9344", + "9525", + "9577", + "983", + "9928", + "993", + "994" + ] + }, + "GO:0043406": { + "Name": "positive regulation of MAP kinase activity", + "Task": "GO", + "Genes": [ + "100133941", + "10125", + "10961", + "11235", + "120892", + "146433", + "148252", + "150", + "152110", + "153090", + "1815", + "1856", + "1906", + "1908", + "1950", + "1956", + "2064", + "2081", + "2146", + "2246", + "2247", + "2260", + "2321", + "2322", + "23328", + "255324", + "2688", + "3265", + "3357", + "3553", + "3643", + "4216", + "4217", + "4294", + "4296", + "4486", + "4908", + "5058", + "51347", + "5154", + "5155", + "5294", + "54769", + "5871", + "6091", + "6188", + "6283", + "6885", + "6997", + "7057", + "7124", + "7164", + "7186", + "7189", + "7474", + "7984", + "8600", + "8754", + "8792", + "8817", + "958" + ] + }, + "GO:1903321": { + "Name": "negative regulation of protein modification by small protein conjugation or removal", + "Task": "GO", + "Genes": [ + "10196", + "10253", + "10401", + "10459", + "10625", + "11315", + "11338", + "123879", + "1499", + "151636", + "153769", + "207", + "23251", + "23376", + "23560", + "25", + "26271", + "266740", + "3301", + "3303", + "3304", + "339745", + "374969", + "3984", + "408", + "4085", + "409", + "4092", + "4101", + "51035", + "51160", + "51547", + "54552", + "54765", + "5478", + "54984", + "5582", + "55869", + "59343", + "6125", + "6135", + "6188", + "6201", + "64844", + "65125", + "6659", + "6737", + "6872", + "7128", + "7375", + "819", + "825", + "84101", + "8473", + "84875", + "857", + "8878", + "9349", + "9529", + "9532", + "9636" + ] + }, + "GO:0045824": { + "Name": "negative regulation of innate immune response", + "Task": "GO", + "Genes": [ + "100507436", + "10859", + "11274", + "11277", + "11326", + "1378", + "142", + "147945", + "149095", + "2", + "23170", + "23220", + "25939", + "26058", + "2896", + "29883", + "3105", + "3106", + "3133", + "3134", + "3135", + "3428", + "3630", + "3805", + "3821", + "3824", + "383", + "387837", + "3965", + "401397", + "409", + "4938", + "4940", + "51441", + "5272", + "54625", + "5468", + "55646", + "56339", + "57506", + "5771", + "58509", + "60343", + "6223", + "6318", + "634", + "6737", + "6773", + "7040", + "710", + "7534", + "79132", + "79594", + "84166", + "84243", + "84640", + "8815", + "9111", + "9212", + "9470", + "9636", + "9958" + ] + }, + "GO:1902117": { + "Name": "positive regulation of organelle assembly", + "Task": "GO", + "Genes": [ + "10015", + "10146", + "10615", + "10733", + "10801", + "10807", + "11152", + "112574", + "1437", + "153241", + "158297", + "163786", + "1778", + "202018", + "221908", + "22930", + "23019", + "23130", + "23636", + "246175", + "25782", + "29899", + "3064", + "3567", + "3936", + "401548", + "4076", + "4848", + "4926", + "49856", + "51100", + "51375", + "5305", + "53407", + "55062", + "55704", + "55835", + "57472", + "57535", + "57787", + "5899", + "6382", + "6385", + "6386", + "64112", + "6491", + "6624", + "7124", + "79734", + "79837", + "80199", + "8100", + "822", + "8396", + "85459", + "8723", + "90410", + "90678", + "9525", + "9662", + "9696", + "989", + "9898", + "9908" + ] + }, + "GO:0097529": { + "Name": "myeloid leukocyte migration", + "Task": "GO", + "Genes": [ + "10344", + "1113", + "120425", + "1236", + "140596", + "1511", + "1525", + "1906", + "1907", + "1908", + "1910", + "200576", + "2321", + "23396", + "2350", + "301", + "3071", + "30817", + "3569", + "3570", + "3576", + "3579", + "3689", + "3815", + "3958", + "503618", + "51135", + "51192", + "5155", + "5175", + "5293", + "5294", + "5478", + "5479", + "5657", + "57126", + "5800", + "6223", + "6279", + "6280", + "6283", + "6288", + "6347", + "6348", + "6354", + "6356", + "6357", + "6363", + "6368", + "6369", + "6372", + "6375", + "6441", + "682", + "6850", + "692094", + "7369", + "7857", + "796", + "83700", + "8600", + "8729" + ] + }, + "GO:0008360": { + "Name": "regulation of cell shape", + "Task": "GO", + "Genes": [ + "10395", + "10435", + "10507", + "10810", + "11135", + "116985", + "1398", + "1436", + "148170", + "161176", + "1690", + "1729", + "1739", + "2039", + "2185", + "221061", + "2242", + "226", + "23268", + "23370", + "23580", + "254065", + "25805", + "29780", + "30011", + "301", + "3055", + "3249", + "374872", + "3791", + "4478", + "4627", + "4651", + "5028", + "50848", + "5364", + "54014", + "55171", + "55660", + "55843", + "57464", + "5747", + "57471", + "58480", + "5962", + "6347", + "6348", + "6354", + "6356", + "6357", + "6369", + "7168", + "7429", + "7430", + "752", + "755", + "8994", + "91010", + "9344", + "93663", + "9368" + ] + }, + "GO:2000060": { + "Name": "positive regulation of ubiquitin-dependent protein catabolic process", + "Task": "GO", + "Genes": [ + "10134", + "10273", + "10399", + "10444", + "1050", + "11236", + "11337", + "116224", + "1191", + "1263", + "144165", + "1452", + "149628", + "153769", + "1601", + "1855", + "207", + "22933", + "23640", + "25898", + "28952", + "2931", + "2932", + "29997", + "3300", + "3303", + "4092", + "4193", + "4287", + "4780", + "5071", + "51548", + "51667", + "5347", + "55070", + "55212", + "55294", + "57154", + "5716", + "5728", + "5886", + "5988", + "64110", + "64326", + "6449", + "65992", + "6613", + "6872", + "7041", + "7341", + "7415", + "79699", + "80279", + "8078", + "84231", + "84456", + "8517", + "85409", + "863", + "9655", + "9709", + "9817", + "9978" + ] + }, + "GO:0000910": { + "Name": "cytokinesis", + "Task": "GO", + "Genes": [ + "10015", + "10112", + "1058", + "10617", + "10899", + "11021", + "11113", + "112574", + "11258", + "114327", + "116840", + "128866", + "129531", + "1894", + "200942", + "23157", + "24137", + "257364", + "25978", + "26586", + "27183", + "27243", + "285643", + "288", + "29127", + "311", + "324", + "3619", + "387", + "388", + "389", + "3925", + "403", + "4627", + "4628", + "5119", + "51203", + "51429", + "51510", + "51652", + "5347", + "54443", + "54784", + "54902", + "55165", + "55521", + "57132", + "585", + "6651", + "6683", + "6711", + "79643", + "9094", + "9101", + "91782", + "9212", + "92421", + "9493", + "9525", + "9798" + ] + }, + "GO:1904892": { + "Name": "regulation of receptor signaling pathway via STAT", + "Task": "GO", + "Genes": [ + "10019", + "10464", + "11122", + "128869", + "2033", + "2066", + "2185", + "22876", + "2688", + "282618", + "3565", + "3569", + "3575", + "3586", + "3587", + "3588", + "3717", + "3718", + "3815", + "387837", + "388646", + "3952", + "4249", + "4771", + "51094", + "51379", + "54625", + "5468", + "54741", + "55801", + "55835", + "5617", + "5618", + "57599", + "5771", + "5788", + "602", + "7040", + "7297", + "7398", + "7428", + "815", + "84444", + "85480", + "8651", + "9021", + "9146" + ] + }, + "GO:0010469": { + "Name": "regulation of signaling receptor activity", + "Task": "GO", + "Genes": [ + "10013", + "10268", + "1081", + "11006", + "11315", + "122809", + "1392", + "1393", + "149111", + "150", + "151", + "152", + "154", + "1906", + "2213", + "22871", + "23624", + "2488", + "254263", + "255324", + "255738", + "27092", + "3065", + "3066", + "3077", + "3091", + "351", + "3586", + "387837", + "399968", + "432355", + "5054", + "5328", + "54206", + "5465", + "5468", + "55294", + "5580", + "57732", + "59272", + "59283", + "59284", + "653361", + "66004", + "6868", + "6872", + "7124", + "7251", + "79643", + "8000", + "81573", + "81832", + "8202", + "823", + "84313", + "84619", + "859", + "8829", + "8896", + "9241", + "9655" + ] + }, + "GO:0006986": { + "Name": "response to unfolded protein", + "Task": "GO", + "Genes": [ + "10133", + "10488", + "10808", + "11080", + "135138", + "1388", + "1491", + "153090", + "1616", + "1649", + "1965", + "201595", + "2081", + "22926", + "23071", + "23456", + "23471", + "26353", + "26608", + "267", + "27129", + "27348", + "3297", + "3300", + "3301", + "3303", + "3305", + "3306", + "3309", + "3310", + "3329", + "3336", + "3337", + "3338", + "468", + "4780", + "5071", + "51009", + "51360", + "51768", + "54870", + "54956", + "55432", + "55829", + "5770", + "578", + "581", + "7009", + "7415", + "7494", + "79139", + "79871", + "79956", + "80279", + "871", + "8720", + "8988", + "91319", + "9217", + "9451", + "9531" + ] + }, + "GO:2001237": { + "Name": "negative regulation of extrinsic apoptotic signaling pathway", + "Task": "GO", + "Genes": [ + "10197", + "10771", + "11315", + "117584", + "1437", + "1654", + "207", + "219699", + "2243", + "2244", + "2266", + "23017", + "246330", + "2537", + "2623", + "2668", + "2932", + "2950", + "3064", + "3162", + "3303", + "3304", + "3383", + "3479", + "3552", + "3553", + "3655", + "367", + "3685", + "3958", + "4170", + "5054", + "5196", + "55023", + "5598", + "57448", + "57630", + "596", + "5970", + "598", + "64114", + "6478", + "6714", + "672", + "7015", + "7046", + "7057", + "7124", + "7128", + "7857", + "80196", + "8682", + "8737", + "8837", + "8996", + "90" + ] + }, + "GO:0061025": { + "Name": "membrane fusion", + "Task": "GO", + "Genes": [ + "10043", + "10059", + "10228", + "10490", + "124912", + "1514", + "167", + "200576", + "23339", + "23355", + "23400", + "2515", + "25801", + "25978", + "2621", + "26276", + "27072", + "27183", + "284359", + "29091", + "4033", + "4218", + "4905", + "51479", + "51652", + "54734", + "54809", + "55647", + "55823", + "57151", + "57393", + "57531", + "5819", + "5877", + "662", + "6622", + "6809", + "6812", + "6844", + "6845", + "7879", + "80183", + "83871", + "8411", + "85409", + "858", + "8674", + "8676", + "8692", + "8773", + "8774", + "8775", + "9135", + "9218", + "928", + "9341", + "9342", + "9381", + "9392", + "9842" + ] + }, + "GO:0016239": { + "Name": "positive regulation of macroautophagy", + "Task": "GO", + "Genes": [ + "10043", + "10133", + "10206", + "10241", + "10558", + "11152", + "112574", + "140775", + "1457", + "154", + "1634", + "203228", + "22930", + "23130", + "23367", + "23411", + "25782", + "25793", + "26086", + "26353", + "2773", + "285180", + "29110", + "3064", + "340061", + "345611", + "3791", + "401548", + "5049", + "5071", + "51100", + "51322", + "51375", + "5305", + "55062", + "55072", + "55187", + "55626", + "5563", + "57535", + "5899", + "60592", + "64112", + "65018", + "664", + "665", + "6829", + "7249", + "7405", + "7416", + "79443", + "7957", + "79837", + "83667", + "8396", + "8723", + "90070", + "90678", + "9517", + "9531" + ] + }, + "GO:0061640": { + "Name": "cytoskeleton-dependent cytokinesis", + "Task": "GO", + "Genes": [ + "10015", + "10112", + "1058", + "10617", + "10899", + "11021", + "11113", + "112574", + "11258", + "114327", + "116840", + "128866", + "129531", + "1894", + "200942", + "23157", + "24137", + "257364", + "25978", + "26586", + "27183", + "27243", + "285643", + "288", + "29127", + "324", + "3619", + "387", + "388", + "389", + "3925", + "403", + "4628", + "5119", + "51203", + "51429", + "51510", + "51652", + "5347", + "54443", + "54784", + "54902", + "55165", + "55521", + "57132", + "585", + "6651", + "6683", + "6711", + "79643", + "9094", + "9101", + "91782", + "9212", + "92421", + "9493", + "9525", + "9798" + ] + }, + "GO:0042102": { + "Name": "positive regulation of T cell proliferation", + "Task": "GO", + "Genes": [ + "100133941", + "10148", + "10288", + "11148", + "126259", + "149233", + "1604", + "177", + "199", + "23308", + "29126", + "301", + "3071", + "30835", + "3105", + "3109", + "3113", + "3115", + "3133", + "3146", + "3479", + "3481", + "3485", + "3553", + "3558", + "3569", + "3572", + "3593", + "3594", + "3606", + "3717", + "3952", + "3965", + "4179", + "4690", + "4860", + "51561", + "57829", + "59067", + "6188", + "6375", + "64926", + "6541", + "7037", + "7048", + "7297", + "7412", + "80381", + "8440", + "912", + "916", + "923", + "940", + "959", + "970", + "975" + ] + }, + "GO:0018212": { + "Name": "peptidyl-tyrosine modification", + "Task": "GO", + "Genes": [ + "10152", + "10464", + "1436", + "1956", + "2041", + "2042", + "2043", + "2064", + "2066", + "2185", + "2202", + "2241", + "2242", + "2260", + "2263", + "2264", + "2268", + "2321", + "2322", + "2324", + "238", + "25", + "2534", + "27", + "3055", + "3480", + "3565", + "3600", + "3643", + "3718", + "3791", + "4058", + "4067", + "4914", + "4921", + "51225", + "5155", + "5156", + "5159", + "5595", + "5618", + "5747", + "5753", + "5777", + "59067", + "640", + "6714", + "6725", + "6850", + "695", + "7535", + "780", + "8459", + "8460", + "84630", + "91461" + ] + }, + "GO:0071383": { + "Name": "cellular response to steroid hormone stimulus", + "Task": "GO", + "Genes": [ + "10018", + "10413", + "10474", + "10521", + "11057", + "11240", + "133522", + "1616", + "1655", + "1667", + "1668", + "2099", + "2100", + "23081", + "23543", + "23558", + "2852", + "2908", + "301", + "3192", + "3303", + "3304", + "3312", + "358", + "367", + "4246", + "4734", + "476", + "477", + "4824", + "51366", + "5241", + "5245", + "5458", + "5469", + "55625", + "55809", + "55818", + "5594", + "57178", + "5978", + "677", + "678", + "687", + "7110", + "728358", + "7332", + "7337", + "7533", + "7538", + "79039", + "811", + "81285", + "8289", + "8611", + "8644", + "8725", + "92595", + "9325" + ] + }, + "GO:0019882": { + "Name": "antigen processing and presentation", + "Task": "GO", + "Genes": [ + "10437", + "10890", + "10981", + "11021", + "115827", + "1509", + "1510", + "1512", + "1514", + "1515", + "1520", + "1636", + "1785", + "200576", + "2208", + "23457", + "2923", + "3077", + "3105", + "3106", + "3107", + "3108", + "3109", + "3113", + "3115", + "3119", + "3122", + "3123", + "3133", + "3134", + "3135", + "3140", + "3416", + "3551", + "4012", + "50856", + "51128", + "51752", + "51762", + "55016", + "55080", + "5641", + "567", + "5865", + "5867", + "5869", + "5870", + "5873", + "64167", + "6890", + "6891", + "6892", + "811", + "83871", + "8722", + "912", + "9363" + ] + }, + "GO:0002250": { + "Name": "adaptive immune response", + "Task": "GO", + "Genes": [ + "100507436", + "10068", + "10148", + "10384", + "10411", + "11069", + "11118", + "114836", + "182", + "2205", + "2208", + "2209", + "23108", + "23705", + "3105", + "3123", + "3133", + "3135", + "3146", + "3329", + "3593", + "3606", + "3716", + "4063", + "4179", + "51311", + "5245", + "5293", + "5294", + "56253", + "5678", + "5909", + "60468", + "64170", + "6494", + "6693", + "6774", + "6775", + "695", + "712", + "714", + "715", + "7535", + "84174", + "8792", + "8915", + "9021", + "930", + "970", + "975" + ] + }, + "GO:0031397": { + "Name": "negative regulation of protein ubiquitination", + "Task": "GO", + "Genes": [ + "10196", + "10253", + "10459", + "10625", + "11315", + "11338", + "151636", + "153769", + "207", + "23251", + "23376", + "23560", + "25", + "26271", + "3301", + "3303", + "3304", + "339745", + "374969", + "3984", + "408", + "4085", + "409", + "4092", + "51035", + "51160", + "51547", + "54552", + "54765", + "5478", + "54984", + "5582", + "55869", + "59343", + "6125", + "6135", + "6188", + "6201", + "64844", + "65125", + "6659", + "6872", + "7128", + "7375", + "819", + "84101", + "8473", + "84875", + "857", + "8878", + "9349", + "9529", + "9532", + "9636" + ] + }, + "GO:0002708": { + "Name": "positive regulation of lymphocyte mediated immunity", + "Task": "GO", + "Genes": [ + "10125", + "10459", + "10666", + "10892", + "11126", + "112441434", + "114836", + "135250", + "149840", + "1604", + "163486", + "164", + "22914", + "23705", + "259197", + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3135", + "3140", + "3329", + "353091", + "3553", + "3554", + "3565", + "3592", + "3593", + "3606", + "3805", + "3822", + "3824", + "3916", + "54537", + "56253", + "567", + "5817", + "5819", + "59067", + "6375", + "6885", + "7037", + "7040", + "7158", + "7186", + "7189", + "7855", + "81545", + "8417", + "8741", + "8809", + "9390", + "975" + ] + }, + "GO:0018108": { + "Name": "peptidyl-tyrosine phosphorylation", + "Task": "GO", + "Genes": [ + "10152", + "10464", + "1436", + "1956", + "2041", + "2042", + "2043", + "2064", + "2066", + "2185", + "2202", + "2241", + "2242", + "2260", + "2263", + "2264", + "2268", + "2321", + "2322", + "2324", + "238", + "25", + "2534", + "27", + "3055", + "3480", + "3565", + "3600", + "3643", + "3718", + "3791", + "4058", + "4067", + "4914", + "4921", + "51225", + "5155", + "5156", + "5159", + "5595", + "5618", + "5747", + "5753", + "5777", + "59067", + "640", + "6714", + "6725", + "6850", + "695", + "7535", + "780", + "84630", + "91461" + ] + }, + "GO:0006892": { + "Name": "post-Golgi vesicle-mediated transport", + "Task": "GO", + "Genes": [ + "10066", + "10067", + "10133", + "10139", + "10564", + "10640", + "11031", + "1201", + "150684", + "164", + "1785", + "2060", + "23062", + "23163", + "23499", + "2580", + "25837", + "26088", + "261729", + "27252", + "2803", + "288", + "28952", + "30845", + "3875", + "3916", + "403", + "4430", + "4644", + "51125", + "51479", + "51552", + "54520", + "54832", + "55062", + "55297", + "55435", + "55770", + "57020", + "582", + "583", + "6102", + "6272", + "64083", + "64145", + "6653", + "6711", + "79585", + "81693", + "83871", + "8548", + "8729", + "8773", + "9179", + "9522", + "9648", + "9919" + ] + }, + "GO:0007009": { + "Name": "plasma membrane organization", + "Task": "GO", + "Genes": [ + "10211", + "11252", + "116238", + "1191", + "123720", + "124912", + "128866", + "1289", + "1378", + "167", + "196527", + "2054", + "2515", + "257364", + "25978", + "27230", + "27243", + "274", + "284359", + "288", + "29763", + "29993", + "4627", + "4905", + "5027", + "5119", + "51429", + "51510", + "51652", + "5359", + "53947", + "54874", + "55113", + "57132", + "57151", + "5864", + "6609", + "6711", + "6810", + "727910", + "79643", + "81035", + "8436", + "85377", + "8560", + "857", + "858", + "859", + "91782", + "92421", + "928", + "94121", + "9885" + ] + }, + "GO:0080171": { + "Name": "lytic vacuole organization", + "Task": "GO", + "Genes": [ + "10159", + "11151", + "1201", + "120892", + "147007", + "19", + "200576", + "219931", + "23120", + "23503", + "2475", + "252839", + "2548", + "25978", + "26175", + "2629", + "2896", + "29911", + "3257", + "3916", + "3920", + "411", + "4647", + "4948", + "51151", + "51172", + "51361", + "51652", + "523", + "5298", + "54734", + "54982", + "55353", + "5538", + "55647", + "55858", + "57617", + "64400", + "65082", + "7030", + "7805", + "7879", + "79158", + "7942", + "80208", + "80231", + "80317", + "83871", + "84067", + "84286", + "84317", + "84376", + "8720", + "89781" + ] + }, + "GO:0071674": { + "Name": "mononuclear cell migration", + "Task": "GO", + "Genes": [ + "10344", + "10563", + "120425", + "1230", + "1234", + "1235", + "1236", + "140596", + "1511", + "1667", + "1907", + "1910", + "2321", + "2350", + "2621", + "2625", + "30009", + "301", + "3569", + "3570", + "3577", + "3579", + "3627", + "3683", + "387695", + "3958", + "4478", + "503618", + "50848", + "51192", + "5155", + "5175", + "5293", + "5294", + "5800", + "6223", + "6283", + "6288", + "6347", + "6348", + "6354", + "6363", + "6366", + "6368", + "6373", + "6375", + "6441", + "6558", + "692094", + "728358", + "7535", + "7852", + "796", + "8600" + ] + }, + "GO:0051865": { + "Name": "protein autoubiquitination", + "Task": "GO", + "Genes": [ + "10193", + "10206", + "10273", + "11060", + "115426", + "1161", + "127544", + "138065", + "149603", + "151636", + "153769", + "1643", + "267", + "26994", + "27246", + "29089", + "29128", + "344558", + "4193", + "4591", + "4799", + "4850", + "5071", + "50862", + "51127", + "51136", + "51255", + "51283", + "54546", + "54708", + "54800", + "55128", + "56852", + "57630", + "57674", + "672", + "6737", + "7186", + "7189", + "727800", + "7320", + "7322", + "7323", + "7337", + "79596", + "79845", + "81559", + "81847", + "83737", + "8452", + "84851", + "90025", + "9025", + "90678", + "91445", + "9921" + ] + }, + "GO:0007040": { + "Name": "lysosome organization", + "Task": "GO", + "Genes": [ + "10159", + "11151", + "1201", + "120892", + "147007", + "19", + "200576", + "219931", + "23120", + "23503", + "2475", + "252839", + "2548", + "25978", + "26175", + "2629", + "2896", + "29911", + "3257", + "3916", + "3920", + "411", + "4647", + "4948", + "51151", + "51172", + "51361", + "51652", + "523", + "5298", + "54734", + "54982", + "55353", + "5538", + "55647", + "55858", + "57617", + "64400", + "65082", + "7030", + "7805", + "7879", + "79158", + "7942", + "80208", + "80231", + "80317", + "83871", + "84067", + "84286", + "84317", + "84376", + "8720", + "89781" + ] + }, + "GO:0000281": { + "Name": "mitotic cytokinesis", + "Task": "GO", + "Genes": [ + "10015", + "10112", + "1058", + "10617", + "10899", + "11021", + "11113", + "112574", + "114327", + "116840", + "128866", + "129531", + "1894", + "200942", + "23157", + "24137", + "257364", + "25978", + "26586", + "27183", + "27243", + "285643", + "288", + "29127", + "324", + "3619", + "387", + "388", + "389", + "3925", + "403", + "4628", + "5119", + "51203", + "51429", + "51510", + "51652", + "5347", + "54443", + "54902", + "55165", + "55521", + "57132", + "585", + "6651", + "6683", + "6711", + "79643", + "9094", + "9101", + "91782", + "92421", + "9493", + "9525" + ] + }, + "GO:0048284": { + "Name": "organelle fusion", + "Task": "GO", + "Genes": [ + "10043", + "10228", + "1149", + "125170", + "200576", + "201164", + "23339", + "23355", + "23400", + "25978", + "27072", + "27141", + "27183", + "29091", + "374986", + "4033", + "4218", + "4832", + "4976", + "51024", + "51479", + "51652", + "54332", + "54471", + "54734", + "54809", + "54927", + "54974", + "55647", + "55669", + "55823", + "56947", + "57393", + "581", + "63924", + "662", + "6622", + "6809", + "6810", + "6812", + "6844", + "6845", + "7879", + "80183", + "81554", + "83871", + "8411", + "84895", + "85409", + "858", + "8674", + "9392", + "983", + "9842", + "9927" + ] + }, + "GO:0002702": { + "Name": "positive regulation of production of molecular mediator of immune response", + "Task": "GO", + "Genes": [ + "10459", + "10859", + "10892", + "11126", + "112441434", + "117854", + "144811", + "149840", + "1604", + "163486", + "2048", + "2150", + "25818", + "2821", + "3105", + "3133", + "3134", + "3135", + "353091", + "354", + "3553", + "3554", + "3558", + "3565", + "3569", + "3586", + "3606", + "3663", + "3805", + "3815", + "51744", + "5225", + "54106", + "54537", + "55765", + "5650", + "567", + "5788", + "6375", + "64127", + "6810", + "6885", + "7037", + "7040", + "7158", + "7186", + "7189", + "7474", + "7494", + "7855", + "814", + "8140", + "8741", + "8809", + "9341", + "975" + ] + }, + "GO:0060191": { + "Name": "regulation of lipase activity", + "Task": "GO", + "Genes": [ + "10062", + "10125", + "116519", + "185", + "1902", + "1909", + "1956", + "2260", + "2261", + "2263", + "2321", + "25", + "27", + "27329", + "2769", + "2776", + "283", + "3265", + "3356", + "3357", + "336", + "337", + "338328", + "341", + "344", + "345", + "350", + "3815", + "387", + "389", + "5031", + "51129", + "5156", + "5159", + "5170", + "5319", + "5322", + "5330", + "5406", + "552", + "553", + "5741", + "6272", + "6401", + "653145", + "6622", + "728", + "7376", + "8698", + "9170", + "9290", + "9373" + ] + }, + "GO:0031110": { + "Name": "regulation of microtubule polymerization or depolymerization", + "Task": "GO", + "Genes": [ + "1003", + "10142", + "10300", + "10382", + "10519", + "10634", + "11075", + "146057", + "157922", + "1639", + "220134", + "221150", + "2242", + "22919", + "22924", + "22974", + "23122", + "23271", + "23332", + "24139", + "246176", + "25", + "25999", + "28964", + "29922", + "324", + "3303", + "3304", + "348235", + "3925", + "402", + "4133", + "4137", + "4204", + "4233", + "4733", + "4926", + "5058", + "55755", + "57551", + "57606", + "57662", + "58497", + "5879", + "6188", + "6249", + "6314", + "6622", + "6904", + "79998", + "8874", + "89795", + "9181", + "9793" + ] + }, + "GO:2000351": { + "Name": "regulation of endothelial cell apoptotic process", + "Task": "GO", + "Genes": [ + "1003", + "10266", + "10298", + "11126", + "196527", + "2243", + "2244", + "2266", + "2621", + "2624", + "2625", + "27250", + "284", + "28984", + "3135", + "3383", + "356", + "3565", + "3586", + "3589", + "3596", + "3676", + "3791", + "4780", + "5054", + "5170", + "5335", + "5584", + "5598", + "6347", + "641700", + "7010", + "7040", + "7057", + "7124", + "7128", + "7857", + "79155", + "79625", + "8644", + "889", + "958", + "959" + ] + }, + "GO:0002698": { + "Name": "negative regulation of immune effector process", + "Task": "GO", + "Genes": [ + "100507436", + "10859", + "11006", + "11314", + "11326", + "115352", + "1378", + "1604", + "196", + "2", + "2213", + "259307", + "282618", + "2896", + "301", + "3071", + "3077", + "3105", + "3106", + "3133", + "3134", + "3135", + "335", + "336", + "3440", + "3456", + "3586", + "3630", + "3805", + "3821", + "3824", + "387837", + "3965", + "409", + "50943", + "5272", + "6223", + "6318", + "634", + "6375", + "684", + "7040", + "7042", + "7043", + "710", + "7124", + "722", + "725", + "79004", + "84868", + "8832", + "941" + ] + }, + "GO:0097191": { + "Name": "extrinsic apoptotic signaling pathway", + "Task": "GO", + "Genes": [ + "10193", + "10519", + "10572", + "10962", + "11337", + "153090", + "1616", + "162989", + "1654", + "204851", + "2065", + "2261", + "282991", + "3429", + "3458", + "355", + "356", + "3570", + "3592", + "3624", + "4088", + "4089", + "4170", + "4803", + "50486", + "51202", + "51304", + "5170", + "572", + "581", + "596", + "6272", + "637", + "64112", + "6688", + "7040", + "7042", + "7098", + "7124", + "7132", + "841", + "8717", + "8737", + "8738", + "8772", + "8797", + "91", + "939", + "9531", + "970", + "9812", + "9994" + ] + }, + "GO:1901184": { + "Name": "regulation of ERBB signaling pathway", + "Task": "GO", + "Genes": [ + "1012", + "10551", + "10825", + "122809", + "150", + "183", + "1956", + "222584", + "2241", + "23624", + "2537", + "26469", + "27246", + "2852", + "3092", + "4318", + "5329", + "54206", + "55658", + "55704", + "57142", + "5753", + "5771", + "57732", + "5774", + "5782", + "5795", + "5898", + "5899", + "64285", + "6868", + "7040", + "7251", + "7879", + "79643", + "84058", + "84313", + "84619", + "84632", + "8527", + "867", + "89853", + "9026", + "9125", + "93343", + "93650", + "9655", + "9961" + ] + }, + "GO:0007032": { + "Name": "endosome organization", + "Task": "GO", + "Genes": [ + "10254", + "10564", + "11267", + "1182", + "128866", + "137492", + "144717", + "149371", + "150368", + "155382", + "1759", + "23023", + "23317", + "23325", + "23603", + "252839", + "257364", + "25978", + "26276", + "27243", + "29887", + "29911", + "440400", + "51028", + "51160", + "51361", + "51652", + "55048", + "55353", + "57617", + "5873", + "64400", + "653145", + "7251", + "79102", + "79156", + "79643", + "79720", + "8027", + "83547", + "84067", + "8411", + "84313", + "84376", + "8724", + "8766", + "8878", + "9146", + "92421", + "93343" + ] + }, + "GO:0002718": { + "Name": "regulation of cytokine production involved in immune response", + "Task": "GO", + "Genes": [ + "10859", + "10892", + "11006", + "11126", + "1178", + "117854", + "144811", + "1604", + "163486", + "2150", + "3077", + "3105", + "3133", + "3134", + "3135", + "335", + "336", + "3440", + "3456", + "353091", + "3553", + "3554", + "3565", + "3586", + "3606", + "3663", + "3805", + "3815", + "50943", + "54795", + "55765", + "567", + "6375", + "64127", + "684", + "6885", + "695", + "7040", + "7042", + "7043", + "7124", + "7186", + "7189", + "7474", + "7855", + "79004", + "814", + "8140", + "8809", + "975", + "9865" + ] + }, + "GO:0001910": { + "Name": "regulation of leukocyte mediated cytotoxicity", + "Task": "GO", + "Genes": [ + "100507436", + "10125", + "10666", + "10859", + "11126", + "114836", + "135250", + "146850", + "164", + "177", + "2150", + "2213", + "22914", + "23705", + "259197", + "3071", + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3135", + "3140", + "3383", + "3592", + "3593", + "3805", + "3821", + "3822", + "3824", + "383", + "387837", + "3916", + "3952", + "3965", + "409", + "4843", + "5272", + "56253", + "5817", + "5819", + "59067", + "6318", + "634", + "6375", + "7040", + "8417", + "9390", + "9437" + ] + }, + "GO:0032273": { + "Name": "positive regulation of protein polymerization", + "Task": "GO", + "Genes": [ + "10142", + "10344", + "10435", + "11076", + "1236", + "1440", + "146206", + "148170", + "1639", + "2017", + "2185", + "2241", + "2242", + "22919", + "253725", + "25802", + "28964", + "3055", + "3071", + "3303", + "3304", + "3320", + "382", + "402", + "4137", + "4204", + "4233", + "442721", + "4690", + "4733", + "4926", + "5058", + "5216", + "5217", + "55626", + "55755", + "55971", + "57482", + "57606", + "5879", + "6188", + "6249", + "6356", + "6366", + "6369", + "7408", + "79998", + "8440", + "84630", + "89795", + "9793" + ] + }, + "GO:0007080": { + "Name": "mitotic metaphase chromosome alignment", + "Task": "GO", + "Genes": [ + "10015", + "10403", + "10464", + "10540", + "1062", + "10726", + "11004", + "113130", + "128866", + "220134", + "221150", + "22919", + "23212", + "23636", + "256364", + "25978", + "27183", + "27243", + "27436", + "283489", + "348235", + "3833", + "3835", + "3837", + "5119", + "51510", + "51652", + "54908", + "54984", + "55143", + "55165", + "57132", + "79003", + "79643", + "79998", + "81620", + "81929", + "81930", + "8452", + "84722", + "8678", + "8697", + "8766", + "891", + "91272", + "91782", + "9183", + "92421", + "9525", + "9928" + ] + }, + "GO:0042509": { + "Name": "regulation of tyrosine phosphorylation of STAT protein", + "Task": "GO", + "Genes": [ + "10464", + "1270", + "1437", + "1489", + "149233", + "2056", + "2066", + "2261", + "22876", + "2322", + "23529", + "23568", + "2688", + "282618", + "29883", + "3458", + "3479", + "3558", + "3562", + "3565", + "3569", + "3570", + "3572", + "3592", + "3593", + "3606", + "3815", + "3976", + "4771", + "5008", + "50604", + "51561", + "54625", + "5753", + "5771", + "59067", + "7132", + "83666", + "85480", + "8651", + "8784", + "8995", + "9021", + "9244", + "958" + ] + }, + "GO:0060760": { + "Name": "positive regulation of response to cytokine stimulus", + "Task": "GO", + "Genes": [ + "100130733", + "10554", + "10555", + "114900", + "117854", + "1435", + "1660", + "171389", + "1906", + "23586", + "2621", + "2672", + "3091", + "3093", + "3303", + "3304", + "340061", + "345611", + "353376", + "3574", + "389856", + "5071", + "54209", + "54502", + "54625", + "54765", + "558", + "57506", + "64135", + "6868", + "6880", + "7097", + "7099", + "7294", + "7474", + "7852", + "81844", + "834", + "83666", + "837", + "84166", + "85480", + "8737", + "8772", + "8904", + "90933", + "91445", + "9641", + "972" + ] + }, + "GO:0002821": { + "Name": "positive regulation of adaptive immune response", + "Task": "GO", + "Genes": [ + "10459", + "10666", + "10892", + "112441434", + "149233", + "149840", + "1604", + "163486", + "23411", + "29108", + "29126", + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3140", + "3329", + "3553", + "3554", + "3565", + "3572", + "3592", + "3593", + "3594", + "3606", + "51561", + "54537", + "567", + "5817", + "5819", + "6046", + "6375", + "64170", + "6885", + "7037", + "7040", + "7158", + "7186", + "7189", + "7855", + "81545", + "8417", + "8631", + "8741", + "8809", + "9390", + "975" + ] + }, + "GO:0009266": { + "Name": "response to temperature stimulus", + "Task": "GO", + "Genes": [ + "10013", + "10016", + "100507436", + "10569", + "11080", + "1153", + "158297", + "1616", + "170506", + "1967", + "2246", + "2729", + "27429", + "2766", + "30001", + "3162", + "3297", + "3303", + "3304", + "3310", + "3337", + "3479", + "3552", + "4137", + "4277", + "440275", + "4842", + "49860", + "51278", + "51393", + "51501", + "5566", + "5609", + "56892", + "5931", + "59335", + "7175", + "7341", + "7415", + "7442", + "7531", + "79752", + "81570", + "8823", + "8890", + "8891", + "8892", + "8893", + "9451", + "9531" + ] + }, + "GO:0051258": { + "Name": "protein polymerization", + "Task": "GO", + "Genes": [ + "10142", + "10810", + "11065", + "11076", + "114791", + "117854", + "128866", + "1453", + "1785", + "199", + "2243", + "2244", + "2266", + "22954", + "22974", + "23122", + "23332", + "27243", + "27338", + "2801", + "284001", + "2879", + "2934", + "3093", + "375307", + "4134", + "4137", + "5071", + "51652", + "5300", + "55125", + "55761", + "55835", + "57580", + "57606", + "5879", + "7429", + "7454", + "79585", + "79649", + "84282", + "844", + "845", + "85378", + "8636", + "8936", + "8976", + "9793" + ] + }, + "GO:0042058": { + "Name": "regulation of epidermal growth factor receptor signaling pathway", + "Task": "GO", + "Genes": [ + "1012", + "10551", + "10825", + "122809", + "150", + "183", + "1956", + "222584", + "2241", + "23624", + "2537", + "27246", + "2852", + "3092", + "4318", + "5329", + "54206", + "55658", + "55704", + "5753", + "5771", + "57732", + "5774", + "5782", + "5795", + "5898", + "5899", + "64285", + "6868", + "7040", + "7251", + "7879", + "79643", + "84058", + "84313", + "84619", + "84632", + "8527", + "867", + "89853", + "9026", + "9125", + "93343", + "9655", + "9961" + ] + }, + "GO:0002709": { + "Name": "regulation of T cell mediated immunity", + "Task": "GO", + "Genes": [ + "10859", + "10892", + "11006", + "1178", + "1604", + "163486", + "177", + "196", + "2213", + "259307", + "3071", + "3077", + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3135", + "3140", + "3329", + "3440", + "3456", + "3553", + "3554", + "3565", + "3592", + "3606", + "3821", + "3824", + "50943", + "54795", + "567", + "5817", + "5819", + "634", + "6375", + "6885", + "7186", + "7189", + "7454", + "7855", + "81545", + "8417", + "8809", + "9390", + "941", + "975" + ] + }, + "GO:0044088": { + "Name": "regulation of vacuole organization", + "Task": "GO", + "Genes": [ + "11152", + "112574", + "120892", + "140775", + "1947", + "200576", + "201163", + "203228", + "2048", + "22930", + "23130", + "23256", + "2475", + "25782", + "26471", + "2896", + "29978", + "302", + "345611", + "401548", + "4534", + "51100", + "51375", + "5305", + "54546", + "55062", + "55254", + "5532", + "55353", + "57192", + "57533", + "57535", + "5868", + "5899", + "64112", + "65018", + "79142", + "79837", + "81876", + "8396", + "8723", + "8897", + "90678", + "950", + "9554", + "9637", + "9638", + "96459" + ] + }, + "GO:0030168": { + "Name": "platelet activation", + "Task": "GO", + "Genes": [ + "10451", + "10630", + "139189", + "1432", + "1511", + "1606", + "1607", + "1608", + "160851", + "1609", + "2147", + "2149", + "2151", + "2243", + "2244", + "2266", + "2623", + "2778", + "2811", + "3273", + "3569", + "3690", + "388552", + "5156", + "5196", + "5290", + "5291", + "5294", + "5336", + "5912", + "64805", + "6714", + "6812", + "6814", + "6850", + "7409", + "7410", + "7450", + "8525", + "8526", + "8527", + "87", + "9002", + "9162", + "953", + "959" + ] + }, + "GO:0002220": { + "Name": "innate immune response activating cell surface receptor signaling pathway", + "Task": "GO", + "Genes": [ + "11027", + "114609", + "1147", + "1387", + "148022", + "2033", + "2219", + "22841", + "2534", + "2867", + "29110", + "353376", + "3551", + "3654", + "3656", + "3661", + "3822", + "3824", + "3929", + "3965", + "4067", + "4153", + "4792", + "4938", + "5058", + "5062", + "5063", + "51135", + "51295", + "5336", + "57402", + "5970", + "6714", + "6850", + "6885", + "7097", + "7099", + "7100", + "7187", + "7189", + "7305", + "79931", + "8767", + "9865" + ] + }, + "GO:0008593": { + "Name": "regulation of Notch signaling pathway", + "Task": "GO", + "Genes": [ + "10098", + "100996717", + "100996763", + "1018", + "10413", + "11060", + "11235", + "1840", + "207", + "22848", + "22905", + "23462", + "23509", + "23555", + "2624", + "2658", + "3572", + "388677", + "408", + "4100", + "4179", + "441478", + "4846", + "4856", + "51162", + "54084", + "55333", + "55662", + "5584", + "56892", + "56983", + "65989", + "6714", + "7042", + "7471", + "79094", + "81619", + "84934", + "8626", + "8788", + "892", + "9148", + "9270", + "92714", + "94" + ] + }, + "GO:0045921": { + "Name": "positive regulation of exocytosis", + "Task": "GO", + "Genes": [ + "10015", + "1080", + "11267", + "164", + "192683", + "201294", + "2150", + "2243", + "2244", + "2266", + "23086", + "23122", + "23332", + "23400", + "27183", + "27243", + "3134", + "3684", + "3689", + "376267", + "3822", + "3916", + "50487", + "57126", + "5864", + "5868", + "5873", + "5874", + "6382", + "6385", + "6386", + "6622", + "6810", + "6845", + "7251", + "7784", + "7879", + "8027", + "84932", + "8673", + "8723", + "9146", + "9367", + "94121", + "9525", + "9545" + ] + }, + "GO:0032436": { + "Name": "positive regulation of proteasomal ubiquitin-dependent protein catabolic process", + "Task": "GO", + "Genes": [ + "10273", + "10399", + "10444", + "1050", + "11337", + "116224", + "1191", + "1263", + "144165", + "1452", + "153769", + "1601", + "1855", + "207", + "22933", + "23640", + "25898", + "2931", + "2932", + "29997", + "3300", + "3303", + "4092", + "4193", + "5071", + "51548", + "51667", + "5347", + "55070", + "55212", + "5716", + "5886", + "5988", + "64326", + "65992", + "6613", + "6872", + "7341", + "7415", + "79699", + "8078", + "85409", + "863", + "9655", + "9817", + "9978" + ] + }, + "GO:0002824": { + "Name": "positive regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains", + "Task": "GO", + "Genes": [ + "10459", + "10666", + "10892", + "112441434", + "149233", + "149840", + "1604", + "163486", + "29126", + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3140", + "3329", + "3553", + "3554", + "3565", + "3592", + "3593", + "3594", + "3606", + "51561", + "54537", + "567", + "5817", + "5819", + "6046", + "6375", + "64170", + "6885", + "7037", + "7040", + "7158", + "7186", + "7189", + "7855", + "81545", + "8417", + "8741", + "8809", + "9390", + "975" + ] + }, + "GO:0006968": { + "Name": "cellular defense response", + "Task": "GO", + "Genes": [ + "10219", + "10288", + "10312", + "10578", + "10803", + "10871", + "1232", + "1234", + "1235", + "135", + "1524", + "23601", + "23643", + "3135", + "3579", + "3688", + "3702", + "3805", + "3812", + "3822", + "3823", + "3959", + "4046", + "4283", + "4332", + "4688", + "50852", + "51473", + "51715", + "5551", + "653361", + "6693", + "728", + "7305", + "7369", + "7707", + "7716", + "8061", + "8678", + "8808", + "9214", + "922", + "9436", + "9437" + ] + }, + "GO:0015918": { + "Name": "sterol transport", + "Task": "GO", + "Genes": [ + "10347", + "10577", + "1066", + "1071", + "10948", + "1191", + "134429", + "19", + "23461", + "23673", + "26119", + "27183", + "283238", + "29881", + "335", + "336", + "337", + "338", + "341", + "344", + "345", + "348", + "3931", + "3949", + "3990", + "4864", + "5007", + "5305", + "55937", + "57614", + "64137", + "64240", + "64241", + "6646", + "80765", + "8435", + "84947", + "857", + "9217", + "9218", + "9388", + "949", + "9619", + "9885" + ] + }, + "GO:0046425": { + "Name": "regulation of receptor signaling pathway via JAK-STAT", + "Task": "GO", + "Genes": [ + "10019", + "10464", + "128869", + "2033", + "2066", + "2185", + "22876", + "2688", + "282618", + "3565", + "3569", + "3586", + "3587", + "3588", + "3717", + "3718", + "3815", + "388646", + "3952", + "4771", + "51094", + "51379", + "54625", + "54741", + "55801", + "55835", + "5617", + "5618", + "57599", + "5771", + "5788", + "602", + "7297", + "7398", + "7428", + "815", + "84444", + "8651", + "9021", + "9146" + ] + }, + "GO:0038127": { + "Name": "ERBB signaling pathway", + "Task": "GO", + "Genes": [ + "10273", + "10718", + "1839", + "1950", + "1956", + "2064", + "2066", + "2069", + "207", + "2202", + "2549", + "2885", + "2886", + "3084", + "374", + "51196", + "5170", + "5284", + "5286", + "5290", + "5335", + "53358", + "55532", + "55614", + "55914", + "5594", + "5753", + "5781", + "5801", + "64762", + "6654", + "6714", + "673", + "685", + "6997", + "7039", + "7429", + "8065", + "8412", + "8440", + "84985", + "8826", + "8895", + "9185", + "9961" + ] + }, + "GO:0042531": { + "Name": "positive regulation of tyrosine phosphorylation of STAT protein", + "Task": "GO", + "Genes": [ + "10464", + "1270", + "1437", + "1489", + "149233", + "2056", + "2066", + "2261", + "2322", + "23529", + "23568", + "2688", + "282618", + "3458", + "3479", + "3558", + "3562", + "3565", + "3569", + "3570", + "3572", + "3592", + "3593", + "3606", + "3815", + "3976", + "5008", + "50604", + "51561", + "54625", + "5753", + "59067", + "7132", + "83666", + "85480", + "8784", + "8995", + "9244", + "958" + ] + }, + "GO:0030301": { + "Name": "cholesterol transport", + "Task": "GO", + "Genes": [ + "10347", + "10577", + "1066", + "1071", + "10948", + "1191", + "134429", + "19", + "23461", + "23673", + "26119", + "27183", + "29881", + "335", + "336", + "337", + "338", + "341", + "344", + "345", + "348", + "3931", + "3949", + "3990", + "4864", + "5007", + "5305", + "55937", + "57614", + "64137", + "64240", + "64241", + "6646", + "80765", + "8435", + "84947", + "857", + "9217", + "9218", + "9388", + "949", + "9619", + "9885" + ] + }, + "GO:0001961": { + "Name": "positive regulation of cytokine-mediated signaling pathway", + "Task": "GO", + "Genes": [ + "10554", + "10555", + "114900", + "117854", + "1435", + "171389", + "1906", + "2621", + "2672", + "3091", + "3093", + "3303", + "3304", + "340061", + "345611", + "353376", + "3574", + "389856", + "5071", + "54209", + "54502", + "54625", + "54765", + "558", + "57506", + "6868", + "7294", + "7474", + "7852", + "81844", + "834", + "83666", + "837", + "84166", + "85480", + "8737", + "8772", + "8904", + "90933", + "91445", + "9641", + "972" + ] + }, + "GO:0060193": { + "Name": "positive regulation of lipase activity", + "Task": "GO", + "Genes": [ + "10062", + "116519", + "185", + "1902", + "1909", + "1956", + "2260", + "2261", + "2263", + "2321", + "27", + "2769", + "2776", + "283", + "3265", + "3356", + "3357", + "337", + "338328", + "344", + "350", + "3815", + "387", + "389", + "5031", + "5156", + "5159", + "5170", + "5319", + "5322", + "5330", + "5406", + "552", + "553", + "5741", + "6401", + "728", + "7376", + "8698", + "9170", + "9290", + "9373" + ] + }, + "GO:0032456": { + "Name": "endocytic recycling", + "Task": "GO", + "Genes": [ + "100287171", + "10123", + "10228", + "10311", + "10807", + "10938", + "11267", + "143187", + "157680", + "2060", + "22853", + "23339", + "253725", + "25930", + "28952", + "30844", + "30845", + "30846", + "382", + "51552", + "51699", + "54520", + "54918", + "55275", + "55610", + "55737", + "57020", + "57182", + "5872", + "6293", + "738", + "7879", + "81609", + "84079", + "84162", + "85377", + "8674", + "8675", + "8723", + "9230", + "9559", + "9727", + "9784" + ] + }, + "GO:0006998": { + "Name": "nuclear envelope organization", + "Task": "GO", + "Genes": [ + "10783", + "1104", + "124491", + "128866", + "148362", + "1639", + "1760", + "2010", + "221035", + "221496", + "22933", + "23141", + "23175", + "23306", + "23399", + "23435", + "25978", + "26993", + "27183", + "27243", + "4000", + "4001", + "5119", + "51510", + "51652", + "5347", + "545", + "5578", + "5579", + "57132", + "6683", + "7329", + "7443", + "79188", + "79643", + "80346", + "8815", + "91782", + "92421", + "9631", + "9688" + ] + }, + "GO:0010976": { + "Name": "positive regulation of neuron projection development", + "Task": "GO", + "Genes": [ + "10690", + "11075", + "11344", + "126520", + "162427", + "2011", + "2033", + "2042", + "2185", + "2242", + "23064", + "23654", + "27", + "285016", + "2889", + "322", + "347733", + "348", + "3630", + "382", + "389658", + "4058", + "4067", + "4192", + "4914", + "50487", + "51657", + "5365", + "5584", + "5587", + "5753", + "5754", + "5979", + "6014", + "653", + "655", + "79625", + "8536", + "9139", + "91752" + ] + }, + "GO:0009408": { + "Name": "response to heat", + "Task": "GO", + "Genes": [ + "10013", + "10016", + "100507436", + "10569", + "11080", + "1616", + "170506", + "1967", + "2246", + "2729", + "27429", + "3162", + "3297", + "3303", + "3304", + "3310", + "3337", + "3479", + "3552", + "4137", + "4277", + "4842", + "49860", + "51278", + "51501", + "5566", + "5609", + "56892", + "5931", + "7175", + "7341", + "7415", + "7442", + "7531", + "79752", + "81570", + "8890", + "8891", + "8892", + "8893", + "9531" + ] + }, + "GO:0046605": { + "Name": "regulation of centrosome cycle", + "Task": "GO", + "Genes": [ + "10015", + "10432", + "10733", + "10769", + "128866", + "152185", + "153241", + "163786", + "221908", + "22809", + "22994", + "23411", + "23636", + "25978", + "2648", + "27243", + "338657", + "348654", + "4591", + "4869", + "5119", + "51510", + "51652", + "5314", + "54461", + "55226", + "55835", + "56890", + "57132", + "57787", + "6491", + "6790", + "7517", + "79959", + "84084", + "85459", + "8850", + "899", + "91147", + "92421", + "9525" + ] + }, + "GO:0045055": { + "Name": "regulated exocytosis", + "Task": "GO", + "Genes": [ + "100431172", + "1020", + "10257", + "10497", + "10890", + "11031", + "1113", + "11151", + "117194", + "1393", + "148281", + "2205", + "22999", + "23396", + "23557", + "25837", + "26154", + "261729", + "3055", + "306", + "3815", + "387695", + "4627", + "5293", + "5294", + "5413", + "57393", + "57829", + "5864", + "6348", + "6616", + "6622", + "6804", + "6812", + "6844", + "6845", + "80331", + "8673", + "8773" + ] + }, + "GO:0048002": { + "Name": "antigen processing and presentation of peptide antigen", + "Task": "GO", + "Genes": [ + "10437", + "1509", + "1510", + "1514", + "1515", + "1520", + "1636", + "1785", + "200576", + "23457", + "2923", + "3105", + "3106", + "3107", + "3108", + "3109", + "3113", + "3115", + "3119", + "3122", + "3123", + "3133", + "3134", + "3135", + "3416", + "3551", + "4012", + "50856", + "51128", + "51752", + "55016", + "55080", + "5641", + "567", + "64167", + "6890", + "6891", + "6892", + "811", + "8722" + ] + }, + "GO:0008333": { + "Name": "endosome to lysosome transport", + "Task": "GO", + "Genes": [ + "1130", + "151636", + "154", + "22863", + "22906", + "23295", + "23339", + "23557", + "25978", + "26276", + "27072", + "274", + "29911", + "388", + "4074", + "441925", + "4534", + "51361", + "51652", + "55681", + "55823", + "57617", + "57724", + "6272", + "63894", + "63971", + "64089", + "64400", + "64601", + "65082", + "6845", + "7415", + "7879", + "80700", + "83547", + "84067", + "84376", + "9392", + "9525", + "9737" + ] + }, + "GO:0038093": { + "Name": "Fc receptor signaling pathway", + "Task": "GO", + "Genes": [ + "10451", + "196051", + "2207", + "2213", + "2268", + "23547", + "25", + "2534", + "3055", + "3551", + "3815", + "3984", + "4067", + "4214", + "5058", + "5284", + "5335", + "5336", + "5338", + "5580", + "5581", + "5588", + "5599", + "5601", + "5609", + "5747", + "6416", + "6654", + "6714", + "6850", + "6885", + "695", + "7189", + "7409", + "7410", + "7525", + "8398", + "919" + ] + }, + "GO:0097530": { + "Name": "granulocyte migration", + "Task": "GO", + "Genes": [ + "120425", + "1525", + "1906", + "1907", + "1908", + "200576", + "23396", + "301", + "3071", + "30817", + "3576", + "3579", + "3689", + "3958", + "51135", + "51192", + "5175", + "5293", + "5294", + "5478", + "5479", + "5657", + "57126", + "6279", + "6280", + "6283", + "6348", + "6354", + "6356", + "6357", + "6369", + "6372", + "6375", + "682", + "6850", + "7369", + "7857", + "83700", + "8729" + ] + }, + "GO:0031032": { + "Name": "actomyosin structure organization", + "Task": "GO", + "Genes": [ + "10529", + "11235", + "221061", + "221692", + "2318", + "253980", + "27183", + "29127", + "3688", + "3693", + "387", + "3880", + "399687", + "408", + "442721", + "4627", + "4628", + "50848", + "54566", + "54784", + "56203", + "58", + "58529", + "6714", + "7082", + "7126", + "7168", + "7273", + "7791", + "79784", + "825", + "84033", + "8452", + "84665", + "8476", + "85462", + "8557", + "88", + "9172", + "9578" + ] + }, + "GO:0060562": { + "Name": "epithelial tube morphogenesis", + "Task": "GO", + "Genes": [ + "123872", + "1282", + "1436", + "144165", + "1460", + "1499", + "2246", + "2247", + "2255", + "23513", + "25865", + "26249", + "2658", + "27031", + "339829", + "3791", + "387", + "388", + "388389", + "4233", + "4524", + "5058", + "5310", + "5311", + "55036", + "5613", + "652", + "65266", + "7490", + "7547", + "80199", + "83605", + "90", + "90627", + "9353", + "94" + ] + }, + "GO:0090224": { + "Name": "regulation of spindle organization", + "Task": "GO", + "Genes": [ + "10015", + "10039", + "10460", + "10615", + "126731", + "128866", + "1639", + "1778", + "23636", + "256364", + "25978", + "26054", + "27243", + "2770", + "29899", + "3192", + "3303", + "3304", + "4733", + "4926", + "5119", + "51510", + "51652", + "5347", + "57132", + "6047", + "7175", + "79187", + "79598", + "79643", + "79866", + "79884", + "79998", + "84722", + "8480", + "91782", + "92421", + "9525" + ] + }, + "GO:0044091": { + "Name": "membrane biogenesis", + "Task": "GO", + "Genes": [ + "10211", + "1104", + "11252", + "116238", + "128866", + "148362", + "2054", + "221035", + "22933", + "23141", + "23180", + "25978", + "25999", + "27183", + "27243", + "288", + "302", + "5119", + "51510", + "51652", + "57132", + "57502", + "6281", + "6683", + "6711", + "6810", + "727910", + "7329", + "79643", + "80346", + "857", + "858", + "859", + "8815", + "91782", + "92421", + "9409" + ] + }, + "GO:0002715": { + "Name": "regulation of natural killer cell mediated immunity", + "Task": "GO", + "Genes": [ + "100507436", + "10125", + "10666", + "10859", + "11126", + "114836", + "135250", + "146850", + "164", + "22914", + "23705", + "259197", + "3105", + "3106", + "3133", + "3134", + "3135", + "353091", + "3592", + "3593", + "3805", + "3821", + "3822", + "3824", + "387837", + "3916", + "3952", + "3965", + "409", + "5272", + "56253", + "5817", + "5819", + "59067", + "6318", + "634", + "7040", + "9437" + ] + }, + "GO:0010517": { + "Name": "regulation of phospholipase activity", + "Task": "GO", + "Genes": [ + "10125", + "185", + "1902", + "1909", + "1956", + "2260", + "2261", + "2263", + "2321", + "25", + "27", + "27329", + "2769", + "2776", + "283", + "3265", + "3356", + "3357", + "344", + "3815", + "5031", + "5156", + "5159", + "5170", + "5319", + "5322", + "5330", + "552", + "553", + "5741", + "6401", + "653145", + "6622", + "728", + "8698", + "9170", + "9290", + "9373" + ] + }, + "GO:0031113": { + "Name": "regulation of microtubule polymerization", + "Task": "GO", + "Genes": [ + "1003", + "10142", + "10382", + "11075", + "157922", + "1639", + "2242", + "22919", + "22924", + "23271", + "24139", + "25", + "25999", + "28964", + "29922", + "3303", + "3304", + "3925", + "402", + "4133", + "4137", + "4204", + "4233", + "4733", + "4926", + "5058", + "55755", + "57606", + "57662", + "58497", + "5879", + "6188", + "6249", + "6622", + "6904", + "79998", + "8874", + "89795", + "9793" + ] + }, + "GO:0031623": { + "Name": "receptor internalization", + "Task": "GO", + "Genes": [ + "10203", + "10266", + "10267", + "10268", + "10859", + "11006", + "11031", + "1173", + "133", + "156", + "157", + "1785", + "1814", + "26119", + "2868", + "2885", + "2966", + "3576", + "3577", + "3579", + "4035", + "408", + "409", + "4734", + "55681", + "57007", + "5868", + "5898", + "5899", + "6622", + "6642", + "7037", + "8301", + "83737", + "857", + "859", + "9413" + ] + }, + "GO:0097352": { + "Name": "autophagosome maturation", + "Task": "GO", + "Genes": [ + "10490", + "128866", + "22863", + "25851", + "25978", + "26100", + "26276", + "27243", + "29979", + "30849", + "440738", + "488", + "5119", + "51510", + "51652", + "5289", + "55014", + "57132", + "57231", + "63894", + "64601", + "65082", + "6845", + "7251", + "7405", + "7415", + "79643", + "80183", + "81631", + "81671", + "84557", + "8673", + "8678", + "91782", + "92421", + "9342" + ] + }, + "GO:0031343": { + "Name": "positive regulation of cell killing", + "Task": "GO", + "Genes": [ + "10125", + "10666", + "11126", + "114836", + "135250", + "164", + "2150", + "2208", + "22914", + "23705", + "259197", + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3140", + "3458", + "3592", + "3593", + "3822", + "3824", + "383", + "3916", + "4843", + "5551", + "5599", + "56253", + "5817", + "5819", + "59067", + "6375", + "64581", + "6850", + "8417", + "9390" + ] + }, + "GO:0071774": { + "Name": "response to fibroblast growth factor", + "Task": "GO", + "Genes": [ + "10563", + "10817", + "10818", + "1960", + "2246", + "2247", + "2248", + "2249", + "2250", + "2251", + "2252", + "2253", + "2254", + "2255", + "2260", + "2261", + "2263", + "2264", + "23064", + "25778", + "2591", + "26281", + "3164", + "3373", + "54567", + "5781", + "6422", + "678", + "6997", + "7538", + "79625", + "8692", + "9158", + "9270", + "960", + "9702", + "9965" + ] + }, + "GO:0042269": { + "Name": "regulation of natural killer cell mediated cytotoxicity", + "Task": "GO", + "Genes": [ + "100507436", + "10125", + "10666", + "10859", + "11126", + "114836", + "135250", + "146850", + "164", + "22914", + "23705", + "259197", + "3105", + "3106", + "3133", + "3134", + "3135", + "3592", + "3593", + "3805", + "3821", + "3822", + "3824", + "387837", + "3916", + "3952", + "3965", + "409", + "5272", + "56253", + "5817", + "5819", + "59067", + "6318", + "634", + "7040", + "9437" + ] + }, + "GO:2000785": { + "Name": "regulation of autophagosome assembly", + "Task": "GO", + "Genes": [ + "11152", + "112574", + "120892", + "140775", + "1947", + "200576", + "203228", + "2048", + "22930", + "23130", + "23256", + "2475", + "25782", + "26471", + "29978", + "401548", + "51100", + "51375", + "5305", + "54546", + "55062", + "55254", + "57533", + "57535", + "5868", + "5899", + "64112", + "65018", + "79142", + "79837", + "81876", + "8396", + "8723", + "8897", + "90678", + "9554", + "9637", + "9638" + ] + }, + "GO:0044344": { + "Name": "cellular response to fibroblast growth factor stimulus", + "Task": "GO", + "Genes": [ + "10563", + "10817", + "10818", + "1960", + "2246", + "2247", + "2248", + "2249", + "2250", + "2251", + "2252", + "2253", + "2254", + "2255", + "2260", + "2261", + "2263", + "2264", + "23064", + "25778", + "2591", + "26281", + "3164", + "3373", + "54567", + "5781", + "6422", + "678", + "6997", + "7538", + "79625", + "8692", + "9158", + "9270", + "960", + "9702", + "9965" + ] + }, + "GO:0010824": { + "Name": "regulation of centrosome duplication", + "Task": "GO", + "Genes": [ + "10015", + "10432", + "10733", + "10769", + "128866", + "152185", + "153241", + "163786", + "221908", + "22994", + "23411", + "23636", + "25978", + "2648", + "27243", + "338657", + "348654", + "4591", + "4869", + "5119", + "51510", + "51652", + "5314", + "54461", + "55226", + "55835", + "56890", + "57132", + "6491", + "7517", + "79959", + "84084", + "85459", + "8850", + "899", + "91147", + "92421", + "9525" + ] + }, + "GO:0071709": { + "Name": "membrane assembly", + "Task": "GO", + "Genes": [ + "10211", + "1104", + "11252", + "116238", + "128866", + "148362", + "2054", + "221035", + "22933", + "23141", + "23180", + "25978", + "27183", + "27243", + "288", + "302", + "5119", + "51510", + "51652", + "57132", + "57502", + "6281", + "6683", + "6711", + "6810", + "727910", + "7329", + "79643", + "80346", + "857", + "858", + "859", + "8815", + "91782", + "92421" + ] + }, + "GO:0060236": { + "Name": "regulation of mitotic spindle organization", + "Task": "GO", + "Genes": [ + "10015", + "10039", + "10460", + "126731", + "128866", + "1639", + "1778", + "23636", + "256364", + "25978", + "27243", + "2770", + "29899", + "3192", + "3303", + "3304", + "4733", + "4926", + "5119", + "51510", + "51652", + "5347", + "57132", + "7175", + "79187", + "79598", + "79643", + "79866", + "79884", + "79998", + "84722", + "8480", + "91782", + "92421", + "9525" + ] + }, + "GO:0035924": { + "Name": "cellular response to vascular endothelial growth factor stimulus", + "Task": "GO", + "Genes": [ + "10253", + "116150", + "1432", + "153090", + "1960", + "2081", + "2321", + "2324", + "2549", + "25865", + "301", + "3164", + "3315", + "3791", + "4641", + "4851", + "5156", + "5159", + "5290", + "5293", + "54567", + "5587", + "5606", + "57556", + "5970", + "8829", + "8877", + "9261", + "9270" + ] + }, + "GO:0072665": { + "Name": "protein localization to vacuole", + "Task": "GO", + "Genes": [ + "10542", + "10670", + "11133", + "1191", + "144577", + "23163", + "23334", + "23400", + "23677", + "2633", + "26985", + "27183", + "3312", + "345611", + "389541", + "3920", + "4734", + "51100", + "51172", + "55788", + "57154", + "64089", + "64121", + "6653", + "7879", + "79158", + "79589", + "8031", + "8878", + "9146", + "9179", + "950", + "9648", + "975", + "9765" + ] + }, + "GO:0061097": { + "Name": "regulation of protein tyrosine kinase activity", + "Task": "GO", + "Genes": [ + "10006", + "11006", + "122809", + "1436", + "146433", + "1742", + "183", + "1942", + "2209", + "23624", + "255324", + "285489", + "353514", + "4739", + "54206", + "55294", + "5621", + "56940", + "57091", + "5753", + "5770", + "57732", + "5788", + "653361", + "6868", + "7251", + "79643", + "80725", + "84313", + "84619", + "857", + "8692", + "9094", + "9655", + "9961" + ] + }, + "GO:0071621": { + "Name": "granulocyte chemotaxis", + "Task": "GO", + "Genes": [ + "120425", + "1525", + "1906", + "1907", + "1908", + "200576", + "23396", + "301", + "3071", + "30817", + "3576", + "3579", + "3689", + "3958", + "51192", + "5293", + "5294", + "5478", + "5479", + "6279", + "6280", + "6283", + "6348", + "6354", + "6356", + "6357", + "6369", + "6372", + "6375", + "682", + "6850", + "7857", + "8729" + ] + }, + "GO:0050709": { + "Name": "negative regulation of protein secretion", + "Task": "GO", + "Genes": [ + "10961", + "131177", + "150", + "1813", + "1814", + "1815", + "23409", + "26056", + "26297", + "285381", + "348", + "353500", + "3592", + "3593", + "3630", + "3667", + "3767", + "4345", + "4988", + "5071", + "5978", + "6422", + "64285", + "80223", + "84830", + "8609", + "91543", + "9727" + ] + }, + "GO:0002090": { + "Name": "regulation of receptor internalization", + "Task": "GO", + "Genes": [ + "100506013", + "10211", + "124930", + "1950", + "22943", + "2332", + "255738", + "2688", + "284", + "284654", + "29978", + "302", + "338692", + "3643", + "3690", + "4043", + "408", + "409", + "4908", + "4983", + "54550", + "6311", + "6386", + "6401", + "6424", + "79890", + "84058", + "88455", + "8862", + "89780", + "967", + "9779", + "9863" + ] + }, + "GO:0071763": { + "Name": "nuclear membrane organization", + "Task": "GO", + "Genes": [ + "10783", + "1104", + "128866", + "148362", + "1639", + "2010", + "221035", + "22933", + "23141", + "23175", + "23306", + "23399", + "23435", + "25978", + "26993", + "27183", + "27243", + "5119", + "51510", + "51652", + "5347", + "545", + "5578", + "5579", + "57132", + "6683", + "7329", + "7443", + "79188", + "79643", + "80346", + "8815", + "91782", + "92421" + ] + }, + "GO:0044409": { + "Name": "symbiont entry into host", + "Task": "GO", + "Genes": [ + "10332", + "11059", + "11060", + "1514", + "156", + "185", + "200576", + "2060", + "219931", + "2621", + "27074", + "2838", + "30835", + "339390", + "3643", + "3685", + "3690", + "440400", + "4864", + "51193", + "53373", + "551", + "553", + "558", + "59272", + "6520", + "6609", + "6714", + "83737", + "857", + "858", + "867", + "8673", + "8829", + "90861" + ] + }, + "GO:0048260": { + "Name": "positive regulation of receptor-mediated endocytosis", + "Task": "GO", + "Genes": [ + "100506013", + "116519", + "1191", + "1601", + "1950", + "23011", + "2332", + "255738", + "26119", + "2688", + "284", + "302", + "3077", + "3092", + "3190", + "3643", + "408", + "409", + "4908", + "5054", + "5538", + "567", + "636", + "6401", + "6424", + "7018", + "7448", + "8527", + "867", + "8862", + "89780", + "967", + "9779", + "9863" + ] + }, + "GO:0090174": { + "Name": "organelle membrane fusion", + "Task": "GO", + "Genes": [ + "10043", + "10228", + "200576", + "23339", + "23355", + "23400", + "25978", + "27072", + "27183", + "29091", + "4033", + "4218", + "51479", + "51652", + "54734", + "54809", + "55647", + "55823", + "57393", + "662", + "6622", + "6809", + "6812", + "6844", + "6845", + "7879", + "80183", + "83871", + "8411", + "85409", + "858", + "8674", + "9392", + "9842" + ] + }, + "GO:1904645": { + "Name": "response to amyloid-beta", + "Task": "GO", + "Genes": [ + "10268", + "154", + "177", + "2358", + "2534", + "2902", + "2903", + "2915", + "3383", + "3479", + "3480", + "351", + "3676", + "4314", + "4321", + "4322", + "4914", + "5621", + "5641", + "5663", + "58533", + "7099", + "7412", + "773", + "774", + "781", + "782", + "837", + "948" + ] + }, + "GO:0019068": { + "Name": "virion assembly", + "Task": "GO", + "Genes": [ + "10015", + "128637", + "128866", + "129531", + "137492", + "155382", + "1656", + "25978", + "27183", + "27243", + "28972", + "339122", + "348", + "4734", + "5091", + "51160", + "5119", + "51510", + "51652", + "55048", + "57132", + "5861", + "7251", + "79643", + "79720", + "81876", + "89853", + "90678", + "91782", + "92421", + "93343", + "9525", + "9712" + ] + }, + "GO:0002704": { + "Name": "negative regulation of leukocyte mediated immunity", + "Task": "GO", + "Genes": [ + "100507436", + "10859", + "11006", + "11314", + "1378", + "196", + "2213", + "259307", + "3071", + "3077", + "3105", + "3106", + "3133", + "3134", + "3135", + "3440", + "3456", + "3805", + "3821", + "3824", + "387837", + "3965", + "409", + "50943", + "5272", + "6318", + "634", + "6375", + "684", + "7040", + "722", + "725", + "8832", + "941" + ] + }, + "GO:0007173": { + "Name": "epidermal growth factor receptor signaling pathway", + "Task": "GO", + "Genes": [ + "1839", + "1950", + "1956", + "2064", + "2069", + "207", + "2202", + "2549", + "2885", + "2886", + "374", + "51196", + "5170", + "5284", + "5286", + "5290", + "5335", + "53358", + "55532", + "55614", + "55914", + "5781", + "64762", + "6654", + "6714", + "673", + "6997", + "7039", + "7429", + "8412", + "8440", + "84985", + "8826", + "9185" + ] + }, + "GO:0010518": { + "Name": "positive regulation of phospholipase activity", + "Task": "GO", + "Genes": [ + "185", + "1902", + "1909", + "1956", + "2260", + "2261", + "2263", + "2321", + "27", + "2769", + "2776", + "283", + "3265", + "3356", + "3357", + "344", + "3815", + "5031", + "5156", + "5159", + "5170", + "5319", + "5322", + "5330", + "552", + "553", + "5741", + "6401", + "728", + "8698", + "9170", + "9290", + "9373" + ] + }, + "GO:0045744": { + "Name": "negative regulation of G protein-coupled receptor signaling pathway", + "Task": "GO", + "Genes": [ + "100", + "11240", + "112609", + "133", + "154", + "155", + "156", + "1814", + "23295", + "23322", + "2966", + "333", + "3576", + "3925", + "408", + "409", + "4233", + "43847", + "441925", + "493", + "5341", + "5530", + "56246", + "6000", + "6091", + "6586", + "6622", + "7529", + "7737", + "9353", + "9737" + ] + }, + "GO:0046718": { + "Name": "symbiont entry into host cell", + "Task": "GO", + "Genes": [ + "10332", + "11059", + "11060", + "1514", + "156", + "185", + "200576", + "2060", + "219931", + "2621", + "27074", + "2838", + "30835", + "339390", + "3643", + "3685", + "3690", + "440400", + "4864", + "51193", + "53373", + "551", + "553", + "558", + "59272", + "6520", + "6609", + "83737", + "857", + "858", + "8673", + "8829", + "90861" + ] + }, + "GO:0006906": { + "Name": "vesicle fusion", + "Task": "GO", + "Genes": [ + "10043", + "10228", + "200576", + "23339", + "23355", + "23400", + "25978", + "27072", + "27183", + "29091", + "4033", + "4218", + "51479", + "51652", + "54734", + "54809", + "55647", + "55823", + "57393", + "6622", + "6812", + "6844", + "6845", + "7879", + "80183", + "83871", + "8411", + "85409", + "858", + "8674", + "9392", + "9842" + ] + }, + "GO:0050732": { + "Name": "negative regulation of peptidyl-tyrosine phosphorylation", + "Task": "GO", + "Genes": [ + "10464", + "11006", + "11314", + "122809", + "199731", + "22876", + "23624", + "4771", + "4908", + "54206", + "54625", + "5590", + "56940", + "5753", + "5771", + "57732", + "5777", + "6422", + "7251", + "79643", + "80725", + "84313", + "84619", + "857", + "8651", + "8692", + "9021", + "9655", + "9961" + ] + }, + "GO:0001912": { + "Name": "positive regulation of leukocyte mediated cytotoxicity", + "Task": "GO", + "Genes": [ + "10125", + "10666", + "11126", + "114836", + "135250", + "164", + "2150", + "22914", + "23705", + "259197", + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3140", + "3592", + "3593", + "3822", + "3824", + "383", + "3916", + "4843", + "56253", + "5817", + "5819", + "59067", + "6375", + "8417", + "9390" + ] + }, + "GO:0002720": { + "Name": "positive regulation of cytokine production involved in immune response", + "Task": "GO", + "Genes": [ + "10859", + "10892", + "11126", + "117854", + "144811", + "1604", + "163486", + "2150", + "3105", + "3133", + "3134", + "3135", + "353091", + "3553", + "3554", + "3565", + "3606", + "3663", + "3805", + "3815", + "55765", + "567", + "64127", + "6885", + "7186", + "7189", + "7474", + "7855", + "814", + "8140", + "8809", + "975" + ] + }, + "GO:1990266": { + "Name": "neutrophil migration", + "Task": "GO", + "Genes": [ + "120425", + "1525", + "1906", + "1907", + "1908", + "200576", + "23396", + "3071", + "3576", + "3579", + "3689", + "3958", + "51135", + "51192", + "5175", + "5293", + "5294", + "5478", + "5479", + "5657", + "57126", + "6279", + "6280", + "6283", + "6348", + "6372", + "6375", + "682", + "6850", + "7369", + "8729" + ] + }, + "GO:0002707": { + "Name": "negative regulation of lymphocyte mediated immunity", + "Task": "GO", + "Genes": [ + "100507436", + "10859", + "11006", + "1378", + "196", + "2213", + "259307", + "3071", + "3077", + "3105", + "3106", + "3133", + "3134", + "3135", + "3440", + "3456", + "3805", + "3821", + "3824", + "387837", + "3965", + "409", + "50943", + "5272", + "6318", + "634", + "6375", + "7040", + "722", + "725", + "941" + ] + }, + "GO:0061462": { + "Name": "protein localization to lysosome", + "Task": "GO", + "Genes": [ + "10542", + "10670", + "11133", + "1191", + "144577", + "23163", + "23334", + "23400", + "23677", + "26985", + "27183", + "3312", + "389541", + "3920", + "4734", + "51172", + "55788", + "64089", + "64121", + "6653", + "7879", + "79158", + "79589", + "8031", + "9146", + "9179", + "950", + "9648", + "975", + "9765" + ] + }, + "GO:1904037": { + "Name": "positive regulation of epithelial cell apoptotic process", + "Task": "GO", + "Genes": [ + "10498", + "11126", + "196527", + "22925", + "27250", + "28984", + "2934", + "3135", + "356", + "3569", + "3676", + "5319", + "5335", + "5584", + "6347", + "641700", + "6424", + "7040", + "7057", + "728369", + "8644", + "958", + "959" + ] + }, + "GO:0002711": { + "Name": "positive regulation of T cell mediated immunity", + "Task": "GO", + "Genes": [ + "10892", + "1604", + "163486", + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3140", + "3329", + "3553", + "3554", + "3565", + "3592", + "3606", + "567", + "5817", + "5819", + "6375", + "6885", + "7186", + "7189", + "7855", + "81545", + "8417", + "8809", + "9390", + "975" + ] + }, + "GO:0051057": { + "Name": "positive regulation of small GTPase mediated signal transduction", + "Task": "GO", + "Genes": [ + "10125", + "11214", + "115727", + "1452", + "2056", + "2150", + "221002", + "221938", + "2255", + "2828", + "335", + "3479", + "3685", + "408", + "4851", + "4853", + "4914", + "50848", + "5291", + "5294", + "57679", + "5879", + "5923", + "6091", + "65078", + "6714", + "7010", + "8036", + "8859", + "9290" + ] + }, + "GO:0061572": { + "Name": "actin filament bundle organization", + "Task": "GO", + "Genes": [ + "11235", + "118", + "119", + "1785", + "199", + "2039", + "221061", + "221692", + "253980", + "29984", + "3688", + "3693", + "387", + "3936", + "408", + "51474", + "56776", + "56907", + "57026", + "57175", + "6624", + "6714", + "7126", + "7184", + "7430", + "7791", + "83715", + "84501", + "8452", + "85462" + ] + }, + "GO:0032506": { + "Name": "cytokinetic process", + "Task": "GO", + "Genes": [ + "10015", + "10112", + "112574", + "116840", + "128866", + "129531", + "200942", + "257364", + "25978", + "27183", + "27243", + "29127", + "311", + "387", + "4627", + "5119", + "51429", + "51510", + "51652", + "54784", + "55165", + "57132", + "6683", + "79643", + "91782", + "9212", + "92421", + "9525" + ] + }, + "GO:0019076": { + "Name": "viral release from host cell", + "Task": "GO", + "Genes": [ + "11074", + "128866", + "1642", + "25978", + "27183", + "27243", + "5091", + "5119", + "51510", + "51652", + "5478", + "5481", + "55223", + "57132", + "7251", + "7706", + "7879", + "79643", + "79720", + "858", + "91392", + "91782", + "9218", + "92421", + "9525", + "9798" + ] + }, + "GO:0043112": { + "Name": "receptor metabolic process", + "Task": "GO", + "Genes": [ + "10564", + "144717", + "150368", + "22853", + "255738", + "30845", + "30849", + "387849", + "441925", + "4734", + "51100", + "5189", + "5190", + "5192", + "54894", + "55614", + "57154", + "5828", + "5830", + "6653", + "7040", + "7405", + "8239", + "83891", + "84133", + "8678", + "9737" + ] + }, + "GO:0035891": { + "Name": "exit from host cell", + "Task": "GO", + "Genes": [ + "11074", + "128866", + "1642", + "25978", + "27183", + "27243", + "5091", + "5119", + "51510", + "51652", + "5478", + "5481", + "55223", + "57132", + "7251", + "7706", + "7879", + "79643", + "79720", + "858", + "91392", + "91782", + "9218", + "92421", + "9525", + "9798" + ] + }, + "GO:0090169": { + "Name": "regulation of spindle assembly", + "Task": "GO", + "Genes": [ + "10015", + "10615", + "126731", + "128866", + "1778", + "256364", + "25978", + "26054", + "27243", + "29899", + "3192", + "3303", + "3304", + "4733", + "4926", + "5119", + "51510", + "51652", + "5347", + "57132", + "6047", + "7175", + "79598", + "79643", + "91782", + "92421", + "9525" + ] + }, + "GO:0032881": { + "Name": "regulation of polysaccharide metabolic process", + "Task": "GO", + "Genes": [ + "160", + "1950", + "207", + "208", + "23178", + "2645", + "2931", + "2932", + "3479", + "3630", + "3643", + "3667", + "4790", + "5155", + "5167", + "51763", + "5261", + "55829", + "5741", + "7040", + "79660", + "8445", + "8660", + "89801" + ] + }, + "GO:2000008": { + "Name": "regulation of protein localization to cell surface", + "Task": "GO", + "Genes": [ + "1499", + "150684", + "1861", + "1950", + "23171", + "23327", + "257364", + "26056", + "29098", + "3077", + "30851", + "3326", + "54741", + "57120", + "59353", + "627", + "6809", + "6810", + "7124", + "7305", + "79608", + "8301", + "8729", + "88", + "9230", + "9777" + ] + }, + "GO:0034605": { + "Name": "cellular response to heat", + "Task": "GO", + "Genes": [ + "10013", + "10016", + "10569", + "1616", + "170506", + "2246", + "27429", + "3162", + "3297", + "3303", + "3304", + "3310", + "3337", + "3552", + "4137", + "51278", + "51501", + "5566", + "56892", + "5931", + "7175", + "7341", + "7415", + "7442", + "7531", + "79752", + "81570", + "9531" + ] + }, + "GO:1904646": { + "Name": "cellular response to amyloid-beta", + "Task": "GO", + "Genes": [ + "154", + "2358", + "2534", + "2902", + "2903", + "2915", + "3383", + "3479", + "3480", + "351", + "3676", + "4914", + "5621", + "5641", + "5663", + "58533", + "7099", + "7412", + "773", + "781", + "782", + "837", + "948" + ] + }, + "GO:0071985": { + "Name": "multivesicular body sorting pathway", + "Task": "GO", + "Genes": [ + "11267", + "1130", + "128866", + "129531", + "23086", + "25978", + "27243", + "404636", + "5119", + "51510", + "51534", + "51652", + "55353", + "57132", + "5873", + "5874", + "6272", + "7405", + "7415", + "79643", + "80700", + "83547", + "91782", + "92421", + "94121", + "9525", + "9711" + ] + }, + "GO:0061512": { + "Name": "protein localization to cilium", + "Task": "GO", + "Genes": [ + "10938", + "1453", + "159686", + "225689", + "23090", + "23639", + "27241", + "29887", + "317662", + "401024", + "403", + "50807", + "51304", + "51382", + "55764", + "57539", + "57728", + "582", + "585", + "7289", + "79809", + "83538", + "84100", + "8701", + "8766", + "9727", + "9742" + ] + }, + "GO:1900274": { + "Name": "regulation of phospholipase C activity", + "Task": "GO", + "Genes": [ + "10125", + "1902", + "1909", + "1956", + "2260", + "2321", + "25", + "27", + "2769", + "2776", + "283", + "3265", + "3356", + "3357", + "3815", + "5031", + "5156", + "5159", + "5330", + "552", + "553", + "5741", + "6401", + "728", + "8698", + "9170", + "9290" + ] + }, + "GO:0030593": { + "Name": "neutrophil chemotaxis", + "Task": "GO", + "Genes": [ + "120425", + "1525", + "1906", + "1907", + "1908", + "200576", + "23396", + "3071", + "3576", + "3579", + "3689", + "3958", + "51192", + "5293", + "5294", + "5478", + "5479", + "6279", + "6280", + "6283", + "6348", + "6372", + "6375", + "682", + "6850", + "8729" + ] + }, + "GO:0007259": { + "Name": "cell surface receptor signaling pathway via JAK-STAT", + "Task": "GO", + "Genes": [ + "10617", + "1437", + "1439", + "2241", + "2261", + "2688", + "3454", + "3455", + "3456", + "3600", + "3716", + "3717", + "3718", + "5753", + "59067", + "6347", + "6772", + "6773", + "6774", + "7297", + "8554", + "9111", + "9306" + ] + }, + "GO:0046427": { + "Name": "positive regulation of receptor signaling pathway via JAK-STAT", + "Task": "GO", + "Genes": [ + "10464", + "2033", + "2066", + "2185", + "2688", + "282618", + "3565", + "3569", + "3586", + "3587", + "3588", + "3717", + "3815", + "3952", + "51379", + "55801", + "55835", + "5617", + "5618", + "57599", + "7297", + "7398", + "815" + ] + }, + "GO:0032885": { + "Name": "regulation of polysaccharide biosynthetic process", + "Task": "GO", + "Genes": [ + "160", + "1950", + "207", + "208", + "23178", + "2645", + "2931", + "2932", + "3479", + "3630", + "3643", + "3667", + "4790", + "5155", + "5167", + "51763", + "55829", + "5741", + "7040", + "8445", + "8660", + "89801" + ] + }, + "GO:0003254": { + "Name": "regulation of membrane depolarization", + "Task": "GO", + "Genes": [ + "10021", + "10399", + "10962", + "120892", + "1634", + "213", + "2273", + "23171", + "23327", + "2537", + "2702", + "29098", + "3791", + "4092", + "4653", + "55800", + "5774", + "596", + "6324", + "6327", + "6331", + "6336", + "6714", + "7871", + "817", + "859" + ] + }, + "GO:0031281": { + "Name": "positive regulation of cyclase activity", + "Task": "GO", + "Genes": [ + "10486", + "10487", + "116", + "136", + "1394", + "140", + "1432", + "154", + "155", + "1812", + "1816", + "1909", + "2696", + "2740", + "4846", + "49", + "5032", + "554", + "5595", + "5599", + "57413", + "5894", + "6786", + "84876" + ] + }, + "GO:0010863": { + "Name": "positive regulation of phospholipase C activity", + "Task": "GO", + "Genes": [ + "1902", + "1909", + "1956", + "2260", + "2321", + "27", + "2769", + "2776", + "283", + "3265", + "3356", + "3357", + "3815", + "5031", + "5156", + "5159", + "5330", + "552", + "553", + "5741", + "6401", + "728", + "8698", + "9170", + "9290" + ] + }, + "GO:0045648": { + "Name": "positive regulation of erythrocyte differentiation", + "Task": "GO", + "Genes": [ + "116151", + "1432", + "2113", + "2309", + "2623", + "3091", + "3148", + "3276", + "3303", + "3304", + "3624", + "405", + "440712", + "5469", + "5600", + "6772", + "6774", + "6777", + "6886", + "7564", + "91", + "92" + ] + }, + "GO:0048010": { + "Name": "vascular endothelial growth factor receptor signaling pathway", + "Task": "GO", + "Genes": [ + "10016", + "1317", + "1432", + "161198", + "2185", + "2321", + "23213", + "2324", + "2534", + "25865", + "3315", + "3791", + "5062", + "558", + "5587", + "5747", + "6714", + "7409", + "7410", + "7424", + "7867", + "8829", + "9261", + "9564" + ] + }, + "GO:0046755": { + "Name": "viral budding", + "Task": "GO", + "Genes": [ + "10015", + "128866", + "129531", + "137492", + "155382", + "25978", + "27183", + "27243", + "4734", + "51160", + "5119", + "51510", + "51652", + "55048", + "57132", + "7251", + "79643", + "79720", + "89853", + "90678", + "91782", + "92421", + "93343", + "9525" + ] + }, + "GO:0032232": { + "Name": "negative regulation of actin filament bundle assembly", + "Task": "GO", + "Genes": [ + "10163", + "10395", + "116985", + "23122", + "23332", + "23370", + "23671", + "3925", + "395", + "4233", + "4653", + "5062", + "5071", + "50848", + "51763", + "5216", + "7454", + "84952", + "8500", + "85415", + "90102" + ] + }, + "GO:0032365": { + "Name": "intracellular lipid transport", + "Task": "GO", + "Genes": [ + "10087", + "10577", + "1066", + "134429", + "1374", + "1375", + "1376", + "19", + "215", + "26119", + "27183", + "3949", + "440026", + "4864", + "5007", + "5305", + "57614", + "5825", + "788", + "81537", + "84725", + "84947", + "9619", + "9885" + ] + }, + "GO:1905476": { + "Name": "negative regulation of protein localization to membrane", + "Task": "GO", + "Genes": [ + "112609", + "1173", + "131578", + "1445", + "1601", + "23433", + "2633", + "2664", + "377630", + "51763", + "54585", + "55022", + "5525", + "56246", + "598", + "6248", + "64114", + "65267", + "7040", + "8301", + "8500", + "8650", + "9270", + "9528" + ] + }, + "GO:0002724": { + "Name": "regulation of T cell cytokine production", + "Task": "GO", + "Genes": [ + "10892", + "11006", + "1178", + "1604", + "163486", + "3077", + "3105", + "3134", + "3440", + "3456", + "3553", + "3554", + "3565", + "3606", + "50943", + "54795", + "567", + "6375", + "6885", + "7186", + "7189", + "7855", + "8809", + "975" + ] + }, + "GO:0031112": { + "Name": "positive regulation of microtubule polymerization or depolymerization", + "Task": "GO", + "Genes": [ + "10142", + "10300", + "11075", + "1639", + "2242", + "22919", + "28964", + "3303", + "3304", + "402", + "4137", + "4204", + "4233", + "4733", + "4926", + "5058", + "55755", + "57606", + "5879", + "6188", + "6249", + "79998", + "89795", + "9793" + ] + }, + "GO:0010324": { + "Name": "membrane invagination", + "Task": "GO", + "Genes": [ + "112574", + "1793", + "23616", + "257364", + "27243", + "387", + "51429", + "51454", + "54784", + "54874", + "55113", + "57154", + "575", + "7057", + "8724", + "9146", + "9212", + "94134", + "948", + "9844", + "9938" + ] + }, + "GO:0019884": { + "Name": "antigen processing and presentation of exogenous antigen", + "Task": "GO", + "Genes": [ + "10437", + "1509", + "1510", + "1514", + "1515", + "1520", + "1785", + "200576", + "3105", + "3109", + "3113", + "3115", + "3119", + "3122", + "3123", + "3133", + "3134", + "3140", + "3551", + "4012", + "50856", + "5641", + "8722" + ] + }, + "GO:0051497": { + "Name": "negative regulation of stress fiber assembly", + "Task": "GO", + "Genes": [ + "10163", + "10395", + "116985", + "23122", + "23332", + "23370", + "23671", + "3925", + "395", + "4233", + "4653", + "5062", + "50848", + "51763", + "5216", + "7454", + "84952", + "8500", + "85415", + "90102" + ] + }, + "GO:0002717": { + "Name": "positive regulation of natural killer cell mediated immunity", + "Task": "GO", + "Genes": [ + "10125", + "10666", + "11126", + "114836", + "135250", + "164", + "22914", + "23705", + "259197", + "3133", + "3134", + "3135", + "353091", + "3592", + "3593", + "3805", + "3822", + "3824", + "3916", + "56253", + "5817", + "5819", + "59067" + ] + }, + "GO:0002478": { + "Name": "antigen processing and presentation of exogenous peptide antigen", + "Task": "GO", + "Genes": [ + "10437", + "1509", + "1510", + "1514", + "1515", + "1520", + "1785", + "200576", + "3105", + "3109", + "3113", + "3115", + "3119", + "3122", + "3123", + "3133", + "3134", + "3551", + "4012", + "50856", + "5641", + "8722" + ] + }, + "GO:0009268": { + "Name": "response to pH", + "Task": "GO", + "Genes": [ + "125981", + "134391", + "1520", + "26056", + "27035", + "2822", + "2828", + "2853", + "3373", + "338567", + "3645", + "41", + "5641", + "6337", + "6338", + "6339", + "6340", + "6548", + "7442", + "84329", + "8477", + "89872", + "9230" + ] + }, + "GO:0034142": { + "Name": "toll-like receptor 4 signaling pathway", + "Task": "GO", + "Genes": [ + "114609", + "1147", + "148022", + "22841", + "29110", + "353376", + "3656", + "3661", + "3965", + "4792", + "4938", + "51135", + "51295", + "57402", + "5970", + "6885", + "7099", + "7187", + "7189", + "79931", + "9865" + ] + }, + "GO:0043162": { + "Name": "ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway", + "Task": "GO", + "Genes": [ + "128866", + "137492", + "25930", + "25978", + "27183", + "27243", + "27246", + "4734", + "51160", + "5119", + "51271", + "51510", + "51652", + "55658", + "57132", + "7251", + "79643", + "89853", + "91782", + "92421", + "93343", + "9525" + ] + }, + "GO:2001239": { + "Name": "regulation of extrinsic apoptotic signaling pathway in absence of ligand", + "Task": "GO", + "Genes": [ + "1437", + "207", + "219699", + "2260", + "2537", + "2623", + "2668", + "27429", + "3303", + "3304", + "3552", + "3553", + "3624", + "4170", + "5196", + "5519", + "5598", + "596", + "5979", + "598", + "7015", + "7124" + ] + }, + "GO:1903902": { + "Name": "positive regulation of viral life cycle", + "Task": "GO", + "Genes": [ + "10475", + "2332", + "23633", + "27183", + "30835", + "3123", + "3146", + "339390", + "3838", + "3956", + "3965", + "5034", + "5045", + "558", + "56649", + "6609", + "7113", + "7251", + "7301", + "79720", + "81559", + "920", + "972" + ] + }, + "GO:0046578": { + "Name": "regulation of Ras protein signal transduction", + "Task": "GO", + "Genes": [ + "10125", + "10617", + "115727", + "153090", + "201163", + "2056", + "2203", + "221002", + "221938", + "2255", + "2305", + "285282", + "3479", + "4851", + "4853", + "4914", + "5923", + "64926", + "79109", + "8036", + "8216", + "8859", + "9927" + ] + }, + "GO:0008543": { + "Name": "fibroblast growth factor receptor signaling pathway", + "Task": "GO", + "Genes": [ + "10817", + "10818", + "2246", + "2247", + "2248", + "2249", + "2250", + "2251", + "2252", + "2253", + "2254", + "2255", + "2260", + "2261", + "2263", + "2264", + "23064", + "2591", + "26281", + "5781", + "9158", + "9702", + "9965" + ] + }, + "GO:0002820": { + "Name": "negative regulation of adaptive immune response", + "Task": "GO", + "Genes": [ + "10859", + "11006", + "11126", + "1378", + "196", + "2213", + "259307", + "3071", + "3077", + "3134", + "3135", + "3440", + "3456", + "3821", + "3824", + "50943", + "5987", + "634", + "6375", + "722", + "725", + "8764", + "941" + ] + }, + "GO:2001026": { + "Name": "regulation of endothelial cell chemotaxis", + "Task": "GO", + "Genes": [ + "10563", + "2246", + "2247", + "2249", + "2260", + "25865", + "3273", + "3315", + "3791", + "4233", + "4851", + "5025", + "5587", + "5641", + "64094", + "7057", + "7114", + "8817", + "8823" + ] + }, + "GO:0006826": { + "Name": "iron ion transport", + "Task": "GO", + "Genes": [ + "10057", + "10058", + "1785", + "22", + "22853", + "23516", + "28982", + "30061", + "387849", + "392", + "4241", + "4891", + "51312", + "55240", + "55652", + "57192", + "64116", + "6556", + "7036", + "7037", + "79901", + "9843" + ] + }, + "GO:0038094": { + "Name": "Fc-gamma receptor signaling pathway", + "Task": "GO", + "Genes": [ + "10451", + "196051", + "2213", + "2268", + "25", + "2534", + "3055", + "3984", + "4067", + "5058", + "5338", + "5580", + "5581", + "5747", + "6714", + "6850", + "7409", + "7410", + "7525", + "8398", + "919" + ] + }, + "GO:0099504": { + "Name": "synaptic vesicle cycle", + "Task": "GO", + "Genes": [ + "1020", + "1173", + "1175", + "163", + "22999", + "23396", + "23557", + "246213", + "5338", + "5413", + "57084", + "5868", + "6571", + "6616", + "6622", + "6804", + "6844", + "7476", + "80331", + "85439", + "8867", + "89780" + ] + }, + "GO:0036257": { + "Name": "multivesicular body organization", + "Task": "GO", + "Genes": [ + "10254", + "11267", + "128866", + "137492", + "155382", + "25978", + "27243", + "51028", + "51160", + "51652", + "55048", + "5873", + "7251", + "79643", + "79720", + "8027", + "84313", + "8766", + "9146", + "92421", + "93343" + ] + }, + "GO:1902751": { + "Name": "positive regulation of cell cycle G2/M phase transition", + "Task": "GO", + "Genes": [ + "1019", + "219736", + "23476", + "26271", + "4869", + "50484", + "51514", + "55920", + "5889", + "5890", + "595", + "6240", + "79915", + "80174", + "8317", + "8444", + "8766", + "891", + "9525", + "983", + "993", + "994" + ] + }, + "GO:1903671": { + "Name": "negative regulation of sprouting angiogenesis", + "Task": "GO", + "Genes": [ + "10365", + "1870", + "22905", + "29924", + "30832", + "5291", + "55333", + "57556", + "7057", + "90993" + ] + }, + "GO:0099003": { + "Name": "vesicle-mediated transport in synapse", + "Task": "GO", + "Genes": [ + "1020", + "1173", + "1175", + "163", + "22999", + "23396", + "23557", + "246213", + "5338", + "5413", + "57084", + "5868", + "6571", + "6616", + "6622", + "6804", + "6844", + "7476", + "80331", + "85439", + "8867", + "89780" + ] + }, + "GO:0002637": { + "Name": "regulation of immunoglobulin production", + "Task": "GO", + "Genes": [ + "10459", + "112441434", + "115352", + "1378", + "149840", + "2048", + "2821", + "3133", + "3558", + "3565", + "3569", + "3586", + "54106", + "54537", + "5788", + "6810", + "7037", + "7040", + "7158", + "7494", + "8741", + "9341" + ] + }, + "GO:0051261": { + "Name": "protein depolymerization", + "Task": "GO", + "Genes": [ + "1072", + "1073", + "11004", + "11034", + "126731", + "146909", + "2580", + "27183", + "2934", + "3312", + "347240", + "3796", + "3925", + "57553", + "57701", + "64780", + "7429", + "81930", + "84643", + "9525", + "9645", + "9793" + ] + }, + "GO:0044090": { + "Name": "positive regulation of vacuole organization", + "Task": "GO", + "Genes": [ + "11152", + "112574", + "22930", + "23130", + "25782", + "2896", + "302", + "345611", + "401548", + "51100", + "51375", + "5305", + "55062", + "5532", + "57192", + "57535", + "5899", + "64112", + "79837", + "8396", + "8723", + "90678" + ] + }, + "GO:0010984": { + "Name": "regulation of lipoprotein particle clearance", + "Task": "GO", + "Genes": [ + "255738", + "26119", + "302", + "3190", + "341", + "344", + "345", + "3949", + "4043", + "8570", + "9388", + "9971" + ] + }, + "GO:0006623": { + "Name": "protein targeting to vacuole", + "Task": "GO", + "Genes": [ + "1191", + "23163", + "26985", + "27183", + "3312", + "345611", + "3920", + "4734", + "51172", + "57154", + "64089", + "6653", + "7879", + "79158", + "8031", + "8878", + "9146", + "9179", + "950", + "9648", + "9765" + ] + }, + "GO:0072666": { + "Name": "establishment of protein localization to vacuole", + "Task": "GO", + "Genes": [ + "1191", + "23163", + "26985", + "27183", + "3312", + "345611", + "3920", + "4734", + "51172", + "57154", + "64089", + "6653", + "7879", + "79158", + "8031", + "8878", + "9146", + "9179", + "950", + "9648", + "9765" + ] + }, + "GO:0039702": { + "Name": "viral budding via host ESCRT complex", + "Task": "GO", + "Genes": [ + "10015", + "128866", + "129531", + "137492", + "155382", + "25978", + "27183", + "27243", + "51160", + "5119", + "51510", + "51652", + "55048", + "57132", + "7251", + "79643", + "79720", + "91782", + "92421", + "93343", + "9525" + ] + }, + "GO:0051489": { + "Name": "regulation of filopodium assembly", + "Task": "GO", + "Genes": [ + "116985", + "1236", + "139818", + "2039", + "2332", + "23433", + "23500", + "2596", + "382", + "4651", + "5064", + "54874", + "5868", + "5898", + "6366", + "653464", + "6624", + "7226", + "84299", + "8829", + "9750" + ] + }, + "GO:1901673": { + "Name": "regulation of mitotic spindle assembly", + "Task": "GO", + "Genes": [ + "10015", + "126731", + "128866", + "256364", + "25978", + "27243", + "3192", + "3303", + "3304", + "4733", + "5119", + "51510", + "51652", + "5347", + "57132", + "7175", + "79598", + "79643", + "91782", + "92421", + "9525" + ] + }, + "GO:0031116": { + "Name": "positive regulation of microtubule polymerization", + "Task": "GO", + "Genes": [ + "10142", + "1639", + "2242", + "22919", + "28964", + "3303", + "3304", + "402", + "4137", + "4204", + "4233", + "4733", + "4926", + "5058", + "55755", + "57606", + "5879", + "6188", + "6249", + "79998", + "89795", + "9793" + ] + }, + "GO:0002861": { + "Name": "regulation of inflammatory response to antigenic stimulus", + "Task": "GO", + "Genes": [ + "10769", + "1432", + "2213", + "2268", + "2534", + "3055", + "3123", + "3133", + "3735", + "4067", + "5045", + "5335", + "55829", + "6714", + "6850", + "7525", + "79651" + ] + }, + "GO:1904376": { + "Name": "negative regulation of protein localization to cell periphery", + "Task": "GO", + "Genes": [ + "112609", + "1173", + "131578", + "1445", + "1601", + "23433", + "2633", + "54585", + "55022", + "5525", + "56246", + "598", + "6248", + "64114", + "65267", + "7040", + "8301", + "8500", + "8650", + "89958", + "9528" + ] + }, + "GO:0045747": { + "Name": "positive regulation of Notch signaling pathway", + "Task": "GO", + "Genes": [ + "10098", + "100996717", + "100996763", + "10413", + "11235", + "22848", + "22905", + "2658", + "3572", + "388677", + "4846", + "4856", + "5584", + "56983", + "6714", + "7042", + "7471", + "81619", + "8626", + "9270", + "94" + ] + }, + "GO:1901185": { + "Name": "negative regulation of ERBB signaling pathway", + "Task": "GO", + "Genes": [ + "122809", + "1956", + "23624", + "26469", + "27246", + "54206", + "55658", + "5771", + "57732", + "5774", + "5782", + "5795", + "7251", + "7879", + "79643", + "84313", + "84619", + "867", + "93650", + "9655", + "9961" + ] + }, + "GO:0031342": { + "Name": "negative regulation of cell killing", + "Task": "GO", + "Genes": [ + "100507436", + "10859", + "1378", + "2213", + "3071", + "3105", + "3106", + "3133", + "3134", + "3135", + "3565", + "3596", + "3805", + "3821", + "3824", + "387837", + "3965", + "409", + "5272", + "6318", + "634", + "7040" + ] + }, + "GO:0045022": { + "Name": "early endosome to late endosome transport", + "Task": "GO", + "Genes": [ + "11267", + "124997", + "22853", + "22863", + "25930", + "29062", + "29911", + "30849", + "51361", + "5289", + "55614", + "5868", + "64089", + "64400", + "7879", + "83547", + "84067", + "84079", + "84376", + "8678", + "9482" + ] + }, + "GO:0098927": { + "Name": "vesicle-mediated transport between endosomal compartments", + "Task": "GO", + "Genes": [ + "11267", + "124997", + "22853", + "22863", + "25930", + "29062", + "29911", + "30849", + "51361", + "5289", + "55614", + "5868", + "64089", + "64400", + "7879", + "83547", + "84067", + "84079", + "84376", + "8678", + "9482" + ] + }, + "GO:0010332": { + "Name": "response to gamma radiation", + "Task": "GO", + "Genes": [ + "10413", + "11011", + "123879", + "1410", + "2177", + "23028", + "2547", + "3265", + "3297", + "4193", + "4609", + "472", + "51776", + "545", + "6154", + "7157", + "7486", + "7520", + "79073", + "85453" + ] + }, + "GO:0036258": { + "Name": "multivesicular body assembly", + "Task": "GO", + "Genes": [ + "10254", + "11267", + "128866", + "137492", + "155382", + "25978", + "27243", + "51028", + "51160", + "51652", + "55048", + "7251", + "79643", + "79720", + "8027", + "84313", + "8766", + "9146", + "92421", + "93343" + ] + }, + "GO:0045954": { + "Name": "positive regulation of natural killer cell mediated cytotoxicity", + "Task": "GO", + "Genes": [ + "10125", + "10666", + "11126", + "114836", + "135250", + "164", + "22914", + "23705", + "259197", + "3133", + "3134", + "3592", + "3593", + "3822", + "3824", + "3916", + "56253", + "5817", + "5819", + "59067" + ] + }, + "GO:0098581": { + "Name": "detection of external biotic stimulus", + "Task": "GO", + "Genes": [ + "10392", + "114770", + "114771", + "23643", + "3105", + "3106", + "3123", + "3929", + "54106", + "57115", + "58484", + "64127", + "64581", + "7096", + "7097", + "7099", + "721", + "8993", + "912", + "949" + ] + }, + "GO:0001914": { + "Name": "regulation of T cell mediated cytotoxicity", + "Task": "GO", + "Genes": [ + "10859", + "177", + "2213", + "3071", + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3135", + "3140", + "3592", + "3821", + "3824", + "5817", + "5819", + "634", + "6375", + "8417", + "9390" + ] + }, + "GO:0045762": { + "Name": "positive regulation of adenylate cyclase activity", + "Task": "GO", + "Genes": [ + "10486", + "10487", + "116", + "136", + "1394", + "140", + "154", + "155", + "1812", + "1816", + "1909", + "2696", + "2740", + "49", + "5032", + "554", + "57413", + "5894", + "6786", + "84876" + ] + }, + "GO:2000353": { + "Name": "positive regulation of endothelial cell apoptotic process", + "Task": "GO", + "Genes": [ + "11126", + "196527", + "27250", + "28984", + "3135", + "356", + "3676", + "5335", + "5584", + "6347", + "641700", + "7040", + "7057", + "8644", + "958", + "959" + ] + }, + "GO:0031468": { + "Name": "nuclear membrane reassembly", + "Task": "GO", + "Genes": [ + "1104", + "128866", + "148362", + "221035", + "22933", + "23141", + "25978", + "27183", + "27243", + "5119", + "51510", + "51652", + "57132", + "6683", + "7329", + "79643", + "80346", + "8815", + "91782", + "92421" + ] + }, + "GO:0002823": { + "Name": "negative regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains", + "Task": "GO", + "Genes": [ + "10859", + "11006", + "1378", + "196", + "2213", + "259307", + "3071", + "3077", + "3134", + "3135", + "3440", + "3456", + "3821", + "3824", + "50943", + "634", + "6375", + "722", + "725", + "941" + ] + }, + "GO:0046631": { + "Name": "alpha-beta T cell activation", + "Task": "GO", + "Genes": [ + "114836", + "161882", + "2625", + "3105", + "3133", + "3146", + "3593", + "3630", + "3716", + "4063", + "4297", + "4602", + "50856", + "50943", + "60437", + "6693", + "6775", + "8320", + "9021" + ] + }, + "GO:0046888": { + "Name": "negative regulation of hormone secretion", + "Task": "GO", + "Genes": [ + "131177", + "1393", + "150", + "23409", + "26056", + "2697", + "353500", + "3589", + "3625", + "3667", + "3767", + "3976", + "5008", + "5071", + "5978", + "64111", + "6422", + "80223", + "8609", + "9727" + ] + }, + "GO:0150115": { + "Name": "cell-substrate junction organization", + "Task": "GO", + "Genes": [ + "1009", + "10979", + "123720", + "1308", + "29984", + "3655", + "3691", + "3915", + "5339", + "55901", + "55920", + "5796", + "613", + "6714", + "79834", + "8394", + "87", + "88", + "89", + "9344" + ] + }, + "GO:0007044": { + "Name": "cell-substrate junction assembly", + "Task": "GO", + "Genes": [ + "1009", + "10979", + "123720", + "1308", + "29984", + "3655", + "3691", + "3915", + "5339", + "55901", + "55920", + "5796", + "613", + "6714", + "79834", + "8394", + "87", + "88", + "89", + "9344" + ] + }, + "GO:0034381": { + "Name": "plasma lipoprotein particle clearance", + "Task": "GO", + "Genes": [ + "23491", + "26119", + "3162", + "335", + "336", + "338", + "341", + "344", + "345", + "348", + "3949", + "3988", + "3990", + "57552", + "6646", + "7436", + "8435", + "9370", + "948", + "949" + ] + }, + "GO:0030947": { + "Name": "regulation of vascular endothelial growth factor receptor signaling pathway", + "Task": "GO", + "Genes": [ + "10016", + "153090", + "22905", + "25865", + "2887", + "3091", + "3553", + "3678", + "3690", + "405", + "4504", + "6091", + "7448", + "79812", + "9146" + ] + }, + "GO:1903077": { + "Name": "negative regulation of protein localization to plasma membrane", + "Task": "GO", + "Genes": [ + "112609", + "1173", + "131578", + "1445", + "1601", + "23433", + "2633", + "55022", + "5525", + "56246", + "598", + "6248", + "64114", + "65267", + "7040", + "8301", + "8500", + "8650", + "9528" + ] + }, + "GO:1902410": { + "Name": "mitotic cytokinetic process", + "Task": "GO", + "Genes": [ + "10015", + "10112", + "116840", + "128866", + "129531", + "200942", + "25978", + "27183", + "27243", + "387", + "5119", + "51510", + "51652", + "55165", + "57132", + "79643", + "91782", + "92421", + "9525" + ] + }, + "GO:0002504": { + "Name": "antigen processing and presentation of peptide or polysaccharide antigen via MHC class II", + "Task": "GO", + "Genes": [ + "10437", + "1509", + "1510", + "1514", + "1515", + "1520", + "1785", + "200576", + "3108", + "3109", + "3113", + "3115", + "3119", + "3122", + "3123", + "55016", + "5641", + "8722" + ] + }, + "GO:0046627": { + "Name": "negative regulation of insulin receptor signaling pathway", + "Task": "GO", + "Genes": [ + "10999", + "23189", + "23371", + "2888", + "2931", + "4690", + "5167", + "51763", + "5305", + "55022", + "5580", + "5588", + "5590", + "6198", + "79837", + "8396" + ] + }, + "GO:1900077": { + "Name": "negative regulation of cellular response to insulin stimulus", + "Task": "GO", + "Genes": [ + "10999", + "23189", + "23371", + "2888", + "2931", + "4690", + "5167", + "51763", + "5305", + "55022", + "5580", + "5588", + "5590", + "6198", + "79837", + "8396" + ] + }, + "GO:0006622": { + "Name": "protein targeting to lysosome", + "Task": "GO", + "Genes": [ + "1191", + "23163", + "26985", + "27183", + "3312", + "3920", + "4734", + "51172", + "64089", + "6653", + "7879", + "79158", + "8031", + "9146", + "9179", + "950", + "9648", + "9765" + ] + }, + "GO:0038096": { + "Name": "Fc-gamma receptor signaling pathway involved in phagocytosis", + "Task": "GO", + "Genes": [ + "10451", + "196051", + "2268", + "25", + "2534", + "3055", + "3984", + "4067", + "5058", + "5338", + "5580", + "5581", + "5747", + "6714", + "6850", + "7409", + "7410", + "7525", + "8398" + ] + }, + "GO:0042059": { + "Name": "negative regulation of epidermal growth factor receptor signaling pathway", + "Task": "GO", + "Genes": [ + "122809", + "1956", + "23624", + "27246", + "54206", + "55658", + "5771", + "57732", + "5774", + "5795", + "7251", + "7879", + "79643", + "84313", + "84619", + "867", + "9655", + "9961" + ] + }, + "GO:0043954": { + "Name": "cellular component maintenance", + "Task": "GO", + "Genes": [ + "10979", + "1436", + "144100", + "1639", + "2149", + "2150", + "2534", + "26060", + "3801", + "55243", + "55765", + "5621", + "5657", + "57126", + "57662", + "7082", + "80856", + "91663" + ] + }, + "GO:0001911": { + "Name": "negative regulation of leukocyte mediated cytotoxicity", + "Task": "GO", + "Genes": [ + "100507436", + "10859", + "2213", + "3071", + "3105", + "3106", + "3133", + "3134", + "3135", + "3805", + "3821", + "3824", + "387837", + "3965", + "409", + "5272", + "6318", + "634", + "7040" + ] + }, + "GO:0007190": { + "Name": "activation of adenylate cyclase activity", + "Task": "GO", + "Genes": [ + "10486", + "10487", + "116", + "136", + "1394", + "140", + "154", + "155", + "1812", + "1816", + "1909", + "2696", + "2740", + "49", + "5032", + "554", + "57413", + "5894" + ] + }, + "GO:0002639": { + "Name": "positive regulation of immunoglobulin production", + "Task": "GO", + "Genes": [ + "10459", + "112441434", + "149840", + "2048", + "2821", + "3133", + "3558", + "3569", + "3586", + "54106", + "54537", + "5788", + "6810", + "7037", + "7040", + "7158", + "7494", + "8741", + "9341" + ] + }, + "GO:0002495": { + "Name": "antigen processing and presentation of peptide antigen via MHC class II", + "Task": "GO", + "Genes": [ + "10437", + "1509", + "1510", + "1514", + "1515", + "1520", + "1785", + "200576", + "3108", + "3109", + "3113", + "3115", + "3119", + "3122", + "3123", + "55016", + "5641", + "8722" + ] + }, + "GO:0010971": { + "Name": "positive regulation of G2/M transition of mitotic cell cycle", + "Task": "GO", + "Genes": [ + "1019", + "219736", + "23476", + "26271", + "50484", + "51514", + "55920", + "5889", + "5890", + "595", + "6240", + "80174", + "8317", + "8766", + "891", + "9525", + "983", + "993", + "994" + ] + }, + "GO:0002474": { + "Name": "antigen processing and presentation of peptide antigen via MHC class I", + "Task": "GO", + "Genes": [ + "1636", + "23457", + "2923", + "3105", + "3106", + "3107", + "3416", + "3551", + "4012", + "50856", + "51128", + "51752", + "55080", + "567", + "64167", + "6890", + "6891", + "6892", + "811" + ] + }, + "GO:2000272": { + "Name": "negative regulation of signaling receptor activity", + "Task": "GO", + "Genes": [ + "10268", + "11006", + "122809", + "1393", + "23624", + "3077", + "387837", + "54206", + "5465", + "5468", + "57732", + "59272", + "7124", + "7251", + "79643", + "84313", + "84619", + "9655" + ] + }, + "GO:0002433": { + "Name": "immune response-regulating cell surface receptor signaling pathway involved in phagocytosis", + "Task": "GO", + "Genes": [ + "10451", + "196051", + "2268", + "25", + "2534", + "3055", + "3984", + "4067", + "5058", + "5338", + "5580", + "5581", + "5747", + "6714", + "6850", + "7409", + "7410", + "7525", + "8398" + ] + }, + "GO:0002431": { + "Name": "Fc receptor mediated stimulatory signaling pathway", + "Task": "GO", + "Genes": [ + "10451", + "196051", + "2268", + "25", + "2534", + "3055", + "3984", + "4067", + "5058", + "5338", + "5580", + "5581", + "5747", + "6714", + "6850", + "7409", + "7410", + "7525", + "8398" + ] + }, + "GO:0001763": { + "Name": "morphogenesis of a branching structure", + "Task": "GO", + "Genes": [ + "1282", + "1499", + "2246", + "2247", + "2255", + "2294", + "2658", + "3791", + "4233", + "5058", + "5310", + "652", + "6997", + "7490", + "9353" + ] + }, + "GO:0045920": { + "Name": "negative regulation of exocytosis", + "Task": "GO", + "Genes": [ + "10079", + "11141", + "11314", + "150", + "2213", + "29091", + "301", + "3071", + "3134", + "3965", + "5071", + "634", + "6622", + "6814", + "7879", + "83452", + "8832", + "9525" + ] + }, + "GO:0035088": { + "Name": "establishment or maintenance of apical/basal cell polarity", + "Task": "GO", + "Genes": [ + "2011", + "23513", + "23616", + "286", + "387", + "4478", + "4649", + "4983", + "50855", + "5584", + "56288", + "57662", + "5911", + "6624", + "7430", + "9368", + "9948" + ] + }, + "GO:0002092": { + "Name": "positive regulation of receptor internalization", + "Task": "GO", + "Genes": [ + "100506013", + "1950", + "2332", + "255738", + "2688", + "284", + "3643", + "408", + "409", + "4908", + "6401", + "6424", + "8862", + "89780", + "967", + "9779", + "9863" + ] + }, + "GO:0061245": { + "Name": "establishment or maintenance of bipolar cell polarity", + "Task": "GO", + "Genes": [ + "2011", + "23513", + "23616", + "286", + "387", + "4478", + "4649", + "4983", + "50855", + "5584", + "56288", + "57662", + "5911", + "6624", + "7430", + "9368", + "9948" + ] + }, + "GO:0035567": { + "Name": "non-canonical Wnt signaling pathway", + "Task": "GO", + "Genes": [ + "11211", + "1855", + "1856", + "1857", + "440193", + "4653", + "51701", + "54361", + "57154", + "6259", + "64750", + "7474", + "7476", + "7484", + "8322", + "8323", + "8324", + "91147" + ] + }, + "GO:0071480": { + "Name": "cellular response to gamma radiation", + "Task": "GO", + "Genes": [ + "10413", + "11011", + "1410", + "23028", + "2547", + "3265", + "3297", + "4193", + "472", + "51776", + "545", + "6154", + "7157", + "7486", + "7520", + "79073", + "85453" + ] + }, + "GO:0030865": { + "Name": "cortical cytoskeleton organization", + "Task": "GO", + "Genes": [ + "114793", + "1739", + "23136", + "23433", + "27183", + "29127", + "3071", + "3551", + "382", + "3996", + "5341", + "6093", + "7124", + "7430", + "752", + "85369", + "9475" + ] + }, + "GO:0046640": { + "Name": "regulation of alpha-beta T cell proliferation", + "Task": "GO", + "Genes": [ + "10148", + "1604", + "29126", + "3105", + "3133", + "3593", + "3606", + "3717", + "3965", + "51561", + "57045", + "6375", + "64115", + "64926", + "7048", + "7297", + "975" + ] + }, + "GO:2000786": { + "Name": "positive regulation of autophagosome assembly", + "Task": "GO", + "Genes": [ + "11152", + "112574", + "22930", + "23130", + "25782", + "401548", + "51100", + "51375", + "5305", + "55062", + "57535", + "5899", + "64112", + "79837", + "8396", + "8723", + "90678" + ] + }, + "GO:0038084": { + "Name": "vascular endothelial growth factor signaling pathway", + "Task": "GO", + "Genes": [ + "116150", + "2324", + "2549", + "25865", + "3315", + "3791", + "4641", + "5156", + "5159", + "5290", + "5293", + "5587", + "5970", + "8829" + ] + }, + "GO:0002712": { + "Name": "regulation of B cell mediated immunity", + "Task": "GO", + "Genes": [ + "10459", + "10666", + "112441434", + "1378", + "149840", + "2213", + "3133", + "3565", + "54537", + "5819", + "695", + "7037", + "7040", + "7158", + "722", + "725", + "8741" + ] + }, + "GO:0045953": { + "Name": "negative regulation of natural killer cell mediated cytotoxicity", + "Task": "GO", + "Genes": [ + "100507436", + "10859", + "3105", + "3106", + "3133", + "3134", + "3135", + "3805", + "3821", + "3824", + "387837", + "3965", + "409", + "5272", + "6318", + "634", + "7040" + ] + }, + "GO:2000641": { + "Name": "regulation of early endosome to late endosome transport", + "Task": "GO", + "Genes": [ + "1601", + "23011", + "23317", + "25930", + "29934", + "404636", + "4478", + "51652", + "55823", + "5594", + "5595", + "5604", + "5605", + "5962", + "6714", + "7430", + "8724" + ] + }, + "GO:0002710": { + "Name": "negative regulation of T cell mediated immunity", + "Task": "GO", + "Genes": [ + "10859", + "11006", + "196", + "2213", + "259307", + "3071", + "3077", + "3134", + "3135", + "3440", + "3456", + "3821", + "3824", + "50943", + "634", + "6375", + "941" + ] + }, + "GO:0019886": { + "Name": "antigen processing and presentation of exogenous peptide antigen via MHC class II", + "Task": "GO", + "Genes": [ + "10437", + "1509", + "1510", + "1514", + "1515", + "1520", + "1785", + "200576", + "3109", + "3113", + "3115", + "3119", + "3122", + "3123", + "5641", + "8722" + ] + }, + "GO:0061099": { + "Name": "negative regulation of protein tyrosine kinase activity", + "Task": "GO", + "Genes": [ + "11006", + "122809", + "23624", + "54206", + "56940", + "5753", + "57732", + "7251", + "79643", + "80725", + "84313", + "84619", + "857", + "8692", + "9655", + "9961" + ] + }, + "GO:1901099": { + "Name": "negative regulation of signal transduction in absence of ligand", + "Task": "GO", + "Genes": [ + "1437", + "207", + "219699", + "2537", + "2623", + "2668", + "3303", + "3304", + "3552", + "3553", + "4170", + "5196", + "5598", + "596", + "598", + "7015", + "7124" + ] + }, + "GO:1903541": { + "Name": "regulation of exosomal secretion", + "Task": "GO", + "Genes": [ + "10015", + "10079", + "11267", + "23400", + "27183", + "27243", + "5071", + "51652", + "6382", + "6385", + "6386", + "7251", + "7879", + "79643", + "8027", + "9146", + "9525" + ] + }, + "GO:0090141": { + "Name": "positive regulation of mitochondrial fission", + "Task": "GO", + "Genes": [ + "10059", + "10928", + "125170", + "1634", + "3791", + "51024", + "54471", + "54708", + "55737", + "56907", + "56947", + "5898", + "664", + "6790", + "79594", + "80821", + "90550" + ] + }, + "GO:1903859": { + "Name": "regulation of dendrite extension", + "Task": "GO", + "Genes": [ + "127833", + "151835", + "22999", + "23025", + "23327", + "50618", + "51760", + "57154", + "57699", + "6857", + "6860", + "84258", + "8437", + "9362", + "9699" + ] + }, + "GO:2001240": { + "Name": "negative regulation of extrinsic apoptotic signaling pathway in absence of ligand", + "Task": "GO", + "Genes": [ + "1437", + "207", + "219699", + "2537", + "2623", + "2668", + "3303", + "3304", + "3552", + "3553", + "4170", + "5196", + "5598", + "596", + "598", + "7015", + "7124" + ] + }, + "GO:0002716": { + "Name": "negative regulation of natural killer cell mediated immunity", + "Task": "GO", + "Genes": [ + "100507436", + "10859", + "3105", + "3106", + "3133", + "3134", + "3135", + "3805", + "3821", + "3824", + "387837", + "3965", + "409", + "5272", + "6318", + "634", + "7040" + ] + }, + "GO:0061952": { + "Name": "midbody abscission", + "Task": "GO", + "Genes": [ + "10015", + "10112", + "128866", + "129531", + "25978", + "27183", + "27243", + "5119", + "51510", + "51652", + "55165", + "57132", + "79643", + "91782", + "92421", + "9525" + ] + }, + "GO:0001778": { + "Name": "plasma membrane repair", + "Task": "GO", + "Genes": [ + "128866", + "25978", + "27243", + "4627", + "5119", + "51510", + "51652", + "57132", + "5864", + "6609", + "79643", + "91782", + "92421", + "94121" + ] + }, + "GO:0048754": { + "Name": "branching morphogenesis of an epithelial tube", + "Task": "GO", + "Genes": [ + "1282", + "1499", + "2246", + "2247", + "2255", + "2658", + "3791", + "4233", + "5058", + "5310", + "652", + "7490", + "9353" + ] + }, + "GO:0071467": { + "Name": "cellular response to pH", + "Task": "GO", + "Genes": [ + "26056", + "27035", + "2822", + "3373", + "338567", + "3645", + "41", + "6337", + "6338", + "6339", + "6340", + "6548", + "7442", + "84329", + "89872", + "9230" + ] + }, + "GO:0002223": { + "Name": "stimulatory C-type lectin receptor signaling pathway", + "Task": "GO", + "Genes": [ + "1387", + "2033", + "2534", + "3551", + "3822", + "3824", + "4067", + "5058", + "5062", + "5063", + "5336", + "6714", + "6850", + "6885", + "7189", + "7305" + ] + }, + "GO:1903358": { + "Name": "regulation of Golgi organization", + "Task": "GO", + "Genes": [ + "10142", + "23271", + "30845", + "4644", + "53407", + "5594", + "5595", + "5604", + "5605", + "57662", + "64145", + "6811", + "79591", + "83452", + "9659", + "9712" + ] + }, + "GO:0002889": { + "Name": "regulation of immunoglobulin mediated immune response", + "Task": "GO", + "Genes": [ + "10459", + "10666", + "112441434", + "1378", + "149840", + "2213", + "3133", + "3565", + "54537", + "5819", + "7037", + "7040", + "7158", + "722", + "725", + "8741" + ] + }, + "GO:0061138": { + "Name": "morphogenesis of a branching epithelium", + "Task": "GO", + "Genes": [ + "1282", + "1499", + "2246", + "2247", + "2255", + "2658", + "3791", + "4233", + "5058", + "5310", + "652", + "7490", + "9353" + ] + }, + "GO:0045197": { + "Name": "establishment or maintenance of epithelial cell apical/basal polarity", + "Task": "GO", + "Genes": [ + "2011", + "23616", + "286", + "387", + "4478", + "4649", + "4983", + "50855", + "5584", + "56288", + "57662", + "5911", + "7430", + "9368", + "9948" + ] + }, + "GO:1990858": { + "Name": "cellular response to lectin", + "Task": "GO", + "Genes": [ + "1387", + "2033", + "2534", + "3551", + "3822", + "3824", + "4067", + "5058", + "5062", + "5063", + "5336", + "6714", + "6850", + "6885", + "7189", + "7305" + ] + }, + "GO:1990840": { + "Name": "response to lectin", + "Task": "GO", + "Genes": [ + "1387", + "2033", + "2534", + "3551", + "3822", + "3824", + "4067", + "5058", + "5062", + "5063", + "5336", + "6714", + "6850", + "6885", + "7189", + "7305" + ] + }, + "GO:0010447": { + "Name": "response to acidic pH", + "Task": "GO", + "Genes": [ + "134391", + "1520", + "26056", + "27035", + "2828", + "2853", + "5641", + "6337", + "6338", + "6339", + "6340", + "6548", + "7442", + "8477", + "89872", + "9230" + ] + }, + "GO:0034331": { + "Name": "cell junction maintenance", + "Task": "GO", + "Genes": [ + "10979", + "1436", + "144100", + "1639", + "2149", + "2150", + "26060", + "3801", + "55243", + "55765", + "5657", + "57126", + "57662", + "7082", + "91663" + ] + }, + "GO:1903861": { + "Name": "positive regulation of dendrite extension", + "Task": "GO", + "Genes": [ + "127833", + "151835", + "22999", + "23025", + "23327", + "50618", + "51760", + "57154", + "57699", + "6857", + "6860", + "84258", + "8437", + "9362", + "9699" + ] + }, + "GO:0072583": { + "Name": "clathrin-dependent endocytosis", + "Task": "GO", + "Genes": [ + "115548", + "1173", + "1175", + "160", + "161", + "163", + "23149", + "23396", + "2580", + "54874", + "55681", + "8301", + "9829", + "9873" + ] + }, + "GO:1902774": { + "Name": "late endosome to lysosome transport", + "Task": "GO", + "Genes": [ + "128866", + "23339", + "25978", + "27072", + "27243", + "5119", + "51510", + "51652", + "57132", + "79643", + "91782", + "92421", + "9842" + ] + }, + "GO:0048041": { + "Name": "focal adhesion assembly", + "Task": "GO", + "Genes": [ + "1009", + "10979", + "123720", + "29984", + "55901", + "55920", + "5796", + "613", + "6714", + "79834", + "8394", + "87", + "88", + "89", + "9344" + ] + }, + "GO:0032366": { + "Name": "intracellular sterol transport", + "Task": "GO", + "Genes": [ + "10577", + "1066", + "134429", + "19", + "26119", + "27183", + "3949", + "4864", + "5007", + "5305", + "57614", + "84947", + "9619", + "9885" + ] + }, + "GO:0030866": { + "Name": "cortical actin cytoskeleton organization", + "Task": "GO", + "Genes": [ + "114793", + "1739", + "23433", + "27183", + "29127", + "3071", + "3551", + "382", + "3996", + "5341", + "6093", + "7124", + "752", + "85369", + "9475" + ] + }, + "GO:0098543": { + "Name": "detection of other organism", + "Task": "GO", + "Genes": [ + "10392", + "114770", + "114771", + "3105", + "3106", + "3123", + "57115", + "58484", + "64127", + "64581", + "7096", + "7097", + "8993", + "912" + ] + }, + "GO:0019883": { + "Name": "antigen processing and presentation of endogenous antigen", + "Task": "GO", + "Genes": [ + "3105", + "3106", + "3107", + "3122", + "3123", + "3133", + "3134", + "3135", + "3416", + "51752", + "567", + "64167", + "6890", + "6891", + "912" + ] + }, + "GO:0002726": { + "Name": "positive regulation of T cell cytokine production", + "Task": "GO", + "Genes": [ + "10892", + "1604", + "163486", + "3105", + "3553", + "3554", + "3565", + "3606", + "567", + "6885", + "7186", + "7189", + "7855", + "8809", + "975" + ] + }, + "GO:0032367": { + "Name": "intracellular cholesterol transport", + "Task": "GO", + "Genes": [ + "10577", + "1066", + "134429", + "19", + "26119", + "27183", + "3949", + "4864", + "5007", + "5305", + "57614", + "84947", + "9619", + "9885" + ] + }, + "GO:0002483": { + "Name": "antigen processing and presentation of endogenous peptide antigen", + "Task": "GO", + "Genes": [ + "3105", + "3106", + "3107", + "3122", + "3123", + "3133", + "3134", + "3135", + "3416", + "51752", + "567", + "64167", + "6890", + "6891" + ] + }, + "GO:0046753": { + "Name": "non-lytic viral release", + "Task": "GO", + "Genes": [ + "128866", + "25978", + "27183", + "27243", + "5119", + "51510", + "51652", + "57132", + "79643", + "91782", + "92421", + "9525" + ] + }, + "GO:0046794": { + "Name": "transport of virus", + "Task": "GO", + "Genes": [ + "10332", + "1514", + "200576", + "2060", + "219931", + "23633", + "30835", + "3838", + "440400", + "53373", + "857", + "858", + "90861", + "9397" + ] + }, + "GO:0032801": { + "Name": "receptor catabolic process", + "Task": "GO", + "Genes": [ + "255738", + "30849", + "441925", + "4734", + "51100", + "54894", + "55614", + "57154", + "7040", + "7405", + "83891", + "84133", + "8678", + "9737" + ] + }, + "GO:0046641": { + "Name": "positive regulation of alpha-beta T cell proliferation", + "Task": "GO", + "Genes": [ + "10148", + "1604", + "3105", + "3133", + "3593", + "3606", + "3717", + "3965", + "51561", + "6375", + "64926", + "7048", + "7297", + "975" + ] + }, + "GO:0016045": { + "Name": "detection of bacterium", + "Task": "GO", + "Genes": [ + "10392", + "114770", + "114771", + "3105", + "3106", + "3123", + "57115", + "58484", + "64127", + "7096", + "7097", + "8993", + "912" + ] + }, + "GO:0030879": { + "Name": "mammary gland development", + "Task": "GO", + "Genes": [ + "1436", + "1447", + "1448", + "2066", + "207", + "208", + "3084", + "4855", + "5021", + "6926", + "6997", + "80139", + "8862", + "9113" + ] + }, + "GO:2001028": { + "Name": "positive regulation of endothelial cell chemotaxis", + "Task": "GO", + "Genes": [ + "2247", + "2260", + "25865", + "3315", + "3791", + "4233", + "5025", + "5587", + "5641", + "64094", + "7114", + "8817", + "8823" + ] + }, + "GO:0042026": { + "Name": "protein refolding", + "Task": "GO", + "Genes": [ + "10294", + "2280", + "2281", + "3300", + "3303", + "3304", + "3305", + "3306", + "3310", + "3312", + "3320", + "3329", + "55466" + ] + }, + "GO:0090382": { + "Name": "phagosome maturation", + "Task": "GO", + "Genes": [ + "10981", + "11031", + "11151", + "200576", + "23682", + "339122", + "54734", + "55647", + "57192", + "7879", + "83871", + "9497" + ] + }, + "GO:0007176": { + "Name": "regulation of epidermal growth factor-activated receptor activity", + "Task": "GO", + "Genes": [ + "122809", + "23624", + "255324", + "54206", + "55294", + "57732", + "653361", + "6868", + "7251", + "79643", + "84313", + "84619", + "9655" + ] + }, + "GO:0045217": { + "Name": "cell-cell junction maintenance", + "Task": "GO", + "Genes": [ + "10979", + "1436", + "144100", + "2149", + "2150", + "3801", + "55243", + "55765", + "5657", + "57126", + "57662", + "7082", + "91663" + ] + }, + "GO:0030038": { + "Name": "contractile actin filament bundle assembly", + "Task": "GO", + "Genes": [ + "11235", + "221061", + "221692", + "253980", + "3688", + "3693", + "387", + "408", + "6714", + "7126", + "7791", + "8452", + "85462" + ] + }, + "GO:0001916": { + "Name": "positive regulation of T cell mediated cytotoxicity", + "Task": "GO", + "Genes": [ + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3140", + "3592", + "5817", + "5819", + "6375", + "8417", + "9390" + ] + }, + "GO:0046761": { + "Name": "viral budding from plasma membrane", + "Task": "GO", + "Genes": [ + "128866", + "25978", + "27183", + "27243", + "5119", + "51510", + "51652", + "57132", + "79643", + "91782", + "92421", + "9525" + ] + }, + "GO:0097242": { + "Name": "amyloid-beta clearance", + "Task": "GO", + "Genes": [ + "3416", + "3480", + "4035", + "4038", + "4043", + "4311", + "54209", + "5868", + "8301", + "8766", + "9230", + "948" + ] + }, + "GO:1903543": { + "Name": "positive regulation of exosomal secretion", + "Task": "GO", + "Genes": [ + "10015", + "11267", + "23400", + "27183", + "27243", + "6382", + "6385", + "6386", + "7251", + "7879", + "8027", + "9146", + "9525" + ] + }, + "GO:0038128": { + "Name": "ERBB2 signaling pathway", + "Task": "GO", + "Genes": [ + "10273", + "1950", + "1956", + "2064", + "2069", + "3084", + "374", + "5753", + "5801", + "6714", + "7039", + "8065", + "8895" + ] + }, + "GO:0043149": { + "Name": "stress fiber assembly", + "Task": "GO", + "Genes": [ + "11235", + "221061", + "221692", + "253980", + "3688", + "3693", + "387", + "408", + "6714", + "7126", + "7791", + "8452", + "85462" + ] + }, + "GO:0031529": { + "Name": "ruffle organization", + "Task": "GO", + "Genes": [ + "1236", + "23647", + "382", + "51474", + "51763", + "5341", + "55604", + "57175", + "5879", + "59338", + "6366", + "8394" + ] + }, + "GO:1904779": { + "Name": "regulation of protein localization to centrosome", + "Task": "GO", + "Genes": [ + "11190", + "137886", + "23636", + "2932", + "324", + "50855", + "55722", + "55968", + "57787", + "636", + "8766", + "9727" + ] + }, + "GO:0036336": { + "Name": "dendritic cell migration", + "Task": "GO", + "Genes": [ + "1230", + "1234", + "1235", + "1236", + "3577", + "3579", + "5294", + "6363", + "6366", + "7852" + ] + }, + "GO:0036465": { + "Name": "synaptic vesicle recycling", + "Task": "GO", + "Genes": [ + "1020", + "1173", + "1175", + "163", + "23396", + "5338", + "5868", + "6804", + "7476", + "85439", + "8867", + "89780" + ] + }, + "GO:0002407": { + "Name": "dendritic cell chemotaxis", + "Task": "GO", + "Genes": [ + "1230", + "1234", + "1235", + "1236", + "3577", + "3579", + "5294", + "6363", + "6366", + "7852" + ] + }, + "GO:0090083": { + "Name": "regulation of inclusion body assembly", + "Task": "GO", + "Genes": [ + "10049", + "1191", + "165721", + "26278", + "3300", + "3303", + "3304", + "3306", + "3337", + "55466", + "9529", + "9627" + ] + }, + "GO:0038083": { + "Name": "peptidyl-tyrosine autophosphorylation", + "Task": "GO", + "Genes": [ + "1956", + "2185", + "238", + "25", + "3480", + "4058", + "4914", + "5595", + "6725", + "780" + ] + }, + "GO:0034383": { + "Name": "low-density lipoprotein particle clearance", + "Task": "GO", + "Genes": [ + "23491", + "26119", + "3162", + "338", + "3949", + "3988", + "57552", + "6646", + "8435", + "9370", + "948" + ] + }, + "GO:0048268": { + "Name": "clathrin coat assembly", + "Task": "GO", + "Genes": [ + "115548", + "1175", + "1211", + "2060", + "23149", + "2580", + "3092", + "50632", + "5286", + "8301" + ] + }, + "GO:0002714": { + "Name": "positive regulation of B cell mediated immunity", + "Task": "GO", + "Genes": [ + "10459", + "10666", + "112441434", + "149840", + "3133", + "54537", + "5819", + "7037", + "7040", + "7158", + "8741" + ] + }, + "GO:0002756": { + "Name": "MyD88-independent toll-like receptor signaling pathway", + "Task": "GO", + "Genes": [ + "146722", + "148022", + "22841", + "29126", + "353376", + "3551", + "3661", + "6885", + "7187", + "7189", + "79931" + ] + }, + "GO:0034498": { + "Name": "early endosome to Golgi transport", + "Task": "GO", + "Genes": [ + "23074", + "29886", + "30845", + "3998", + "54732", + "5870", + "64145", + "6642", + "6811", + "6836", + "8677" + ] + }, + "GO:2001135": { + "Name": "regulation of endocytic recycling", + "Task": "GO", + "Genes": [ + "10079", + "123745", + "22876", + "392", + "50487", + "6653", + "7260", + "8766", + "88", + "9495", + "9727" + ] + }, + "GO:0002891": { + "Name": "positive regulation of immunoglobulin mediated immune response", + "Task": "GO", + "Genes": [ + "10459", + "10666", + "112441434", + "149840", + "3133", + "54537", + "5819", + "7037", + "7040", + "7158", + "8741" + ] + }, + "GO:0071468": { + "Name": "cellular response to acidic pH", + "Task": "GO", + "Genes": [ + "26056", + "27035", + "6337", + "6338", + "6339", + "6340", + "6548", + "7442", + "89872", + "9230" + ] + }, + "GO:0090160": { + "Name": "Golgi to lysosome transport", + "Task": "GO", + "Genes": [ + "1201", + "164", + "2580", + "30845", + "3916", + "51479", + "55297", + "6272", + "64145", + "9179" + ] + }, + "GO:0051900": { + "Name": "regulation of mitochondrial depolarization", + "Task": "GO", + "Genes": [ + "10399", + "10962", + "120892", + "1634", + "213", + "2537", + "3791", + "4653", + "596", + "6714" + ] + }, + "GO:0032509": { + "Name": "endosome transport via multivesicular body sorting pathway", + "Task": "GO", + "Genes": [ + "1130", + "25978", + "404636", + "51652", + "55353", + "6272", + "7415", + "80700", + "83547", + "9525" + ] + }, + "GO:0002507": { + "Name": "tolerance induction", + "Task": "GO", + "Genes": [ + "11006", + "3133", + "3135", + "326", + "3965", + "4067", + "5678", + "7128", + "730249", + "84868" + ] + }, + "GO:0071875": { + "Name": "adrenergic receptor signaling pathway", + "Task": "GO", + "Genes": [ + "1113", + "11214", + "115", + "150", + "151", + "152", + "153", + "154", + "92255", + "9693" + ] + }, + "GO:0010968": { + "Name": "regulation of microtubule nucleation", + "Task": "GO", + "Genes": [ + "1639", + "24139", + "28964", + "29922", + "3303", + "3304", + "4204", + "5058", + "8874", + "9793" + ] + }, + "GO:0070424": { + "Name": "regulation of nucleotide-binding domain, leucine rich repeat containing receptor signaling pathway", + "Task": "GO", + "Genes": [ + "148066", + "26191", + "329", + "330", + "3303", + "3304", + "331", + "55577", + "55914", + "57864" + ] + }, + "GO:0035723": { + "Name": "interleukin-15-mediated signaling pathway", + "Task": "GO", + "Genes": [ + "23236", + "3560", + "3561", + "3600", + "3601", + "3716", + "3718", + "6774", + "6776", + "920" + ] + }, + "GO:0006896": { + "Name": "Golgi to vacuole transport", + "Task": "GO", + "Genes": [ + "1201", + "164", + "2580", + "30845", + "3916", + "51479", + "55297", + "6272", + "64145", + "9179" + ] + }, + "GO:0070672": { + "Name": "response to interleukin-15", + "Task": "GO", + "Genes": [ + "23236", + "3560", + "3561", + "3600", + "3601", + "3716", + "3718", + "6774", + "6776", + "920" + ] + }, + "GO:0071350": { + "Name": "cellular response to interleukin-15", + "Task": "GO", + "Genes": [ + "23236", + "3560", + "3561", + "3600", + "3601", + "3716", + "3718", + "6774", + "6776", + "920" + ] + }, + "GO:1903729": { + "Name": "regulation of plasma membrane organization", + "Task": "GO", + "Genes": [ + "1785", + "2934", + "356", + "4627", + "51100", + "5580", + "57194", + "5864", + "8976", + "94121" + ] + }, + "GO:2001198": { + "Name": "regulation of dendritic cell differentiation", + "Task": "GO", + "Genes": [ + "10288", + "10859", + "177", + "2213", + "3106", + "3135", + "3146", + "3956", + "3958", + "3965" + ] + }, + "HP:0031409": { + "Name": "Abnormal lymphocyte physiology", + "Task": "Monarch", + "Genes": [ + "100", + "10043", + "10111", + "10125", + "10159", + "10165", + "10309", + "10320", + "1041", + "10507", + "10525", + "10526", + "10625", + "10892", + "11005", + "11151", + "11311", + "113235", + "114803", + "115650", + "121391", + "1277", + "1294", + "1312", + "136647", + "1380", + "1457", + "146206", + "147372", + "1493", + "1503", + "16", + "1604", + "165918", + "1678", + "1789", + "1794", + "1828", + "1956", + "1991", + "200942", + "201294", + "204", + "2068", + "2071", + "213", + "2137", + "219285", + "221037", + "2239", + "22861", + "23064", + "2316", + "23387", + "23495", + "23534", + "23765", + "2475", + "2625", + "2629", + "27040", + "2719", + "2812", + "284119", + "2859", + "28956", + "2961", + "29760", + "29775", + "29851", + "30011", + "3070", + "3071", + "3117", + "3119", + "3123", + "331", + "3394", + "340061", + "3431", + "3459", + "3543", + "355", + "3551", + "3559", + "356", + "3560", + "3561", + "3570", + "3572", + "3575", + "3592", + "3594", + "359948", + "3663", + "3702", + "3718", + "374354", + "3845", + "3852", + "3857", + "3861", + "3937", + "3952", + "3953", + "3978", + "3981", + "4000", + "404672", + "4068", + "4125", + "421", + "4247", + "4261", + "4478", + "4485", + "4522", + "4598", + "4683", + "472", + "4780", + "4790", + "4791", + "4792", + "4796", + "4860", + "4893", + "4938", + "493856", + "50485", + "50615", + "50619", + "50943", + "51095", + "51135", + "51311", + "51371", + "51604", + "51750", + "51816", + "5184", + "5238", + "5293", + "5294", + "5295", + "5336", + "537", + "5373", + "5426", + "54440", + "54487", + "5450", + "55343", + "55388", + "5551", + "5557", + "55630", + "55687", + "55719", + "5580", + "56160", + "56259", + "56262", + "567", + "5692", + "5696", + "5698", + "57217", + "5728", + "57379", + "57511", + "57591", + "57724", + "5788", + "58484", + "5873", + "5880", + "5896", + "59067", + "595", + "5966", + "5993", + "5994", + "60468", + "6117", + "6239", + "641", + "64135", + "64170", + "6440", + "64421", + "6499", + "65082", + "6651", + "6688", + "6689", + "6729", + "6772", + "6773", + "6774", + "6777", + "6778", + "6786", + "6813", + "6850", + "6868", + "6897", + "6899", + "6925", + "6929", + "6948", + "695", + "7015", + "7037", + "7040", + "7133", + "7157", + "7174", + "727897", + "7290", + "729238", + "7297", + "7298", + "7353", + "7372", + "7374", + "7454", + "7456", + "7535", + "7555", + "7737", + "7841", + "7852", + "79087", + "7922", + "79258", + "79633", + "79840", + "81704", + "8214", + "8220", + "833", + "83483", + "83737", + "83879", + "84061", + "841", + "843", + "84433", + "84876", + "84888", + "84905", + "8517", + "8546", + "8625", + "8676", + "8737", + "8742", + "8792", + "8883", + "8884", + "8915", + "90268", + "90417", + "9051", + "9056", + "9138", + "915", + "916", + "917", + "919", + "930", + "931", + "939", + "940", + "950", + "9508", + "958", + "959", + "9632", + "96459", + "9652", + "970", + "973", + "974", + "975", + "9839", + "9841", + "987", + "9939", + "9966", + "9993" + ] + }, + "HP:0033796": { + "Name": "Abnormal leukocyte physiology", + "Task": "Monarch", + "Genes": [ + "100", + "10043", + "10111", + "10125", + "10159", + "10165", + "10309", + "10320", + "1041", + "10507", + "10525", + "10526", + "10625", + "10892", + "11005", + "11151", + "11311", + "113235", + "114803", + "115650", + "121391", + "1277", + "1294", + "1312", + "136647", + "1380", + "1457", + "146206", + "147372", + "1493", + "1503", + "16", + "1604", + "165918", + "1678", + "1789", + "1794", + "1828", + "1956", + "1991", + "200942", + "201294", + "204", + "2068", + "2071", + "213", + "2137", + "219285", + "221037", + "2239", + "22861", + "23064", + "2316", + "23387", + "23495", + "23534", + "23765", + "2475", + "2625", + "2629", + "27040", + "2719", + "2812", + "284119", + "2859", + "28956", + "2961", + "29760", + "29775", + "29851", + "30011", + "3070", + "3071", + "3117", + "3119", + "3123", + "331", + "3394", + "340061", + "3431", + "3459", + "3543", + "355", + "3551", + "3559", + "356", + "3560", + "3561", + "3570", + "3572", + "3575", + "3592", + "3594", + "359948", + "3663", + "3702", + "3718", + "374354", + "3845", + "3852", + "3857", + "3861", + "3937", + "3952", + "3953", + "3978", + "3981", + "4000", + "404672", + "4068", + "4125", + "421", + "4247", + "4261", + "4478", + "4485", + "4522", + "4598", + "4683", + "472", + "4780", + "4790", + "4791", + "4792", + "4796", + "4860", + "4893", + "4938", + "493856", + "50485", + "50615", + "50619", + "50943", + "51095", + "51135", + "51311", + "51371", + "51604", + "51750", + "51816", + "5184", + "5238", + "5293", + "5294", + "5295", + "5336", + "537", + "5373", + "5426", + "54440", + "54487", + "5450", + "55343", + "55388", + "5551", + "5557", + "55630", + "55687", + "55719", + "5580", + "56160", + "56259", + "56262", + "567", + "5692", + "5696", + "5698", + "57217", + "5728", + "57379", + "57511", + "57591", + "57724", + "5788", + "58484", + "5873", + "5880", + "5896", + "59067", + "595", + "5966", + "5993", + "5994", + "60468", + "6117", + "6239", + "641", + "64135", + "64170", + "6440", + "64421", + "6499", + "65082", + "6651", + "6688", + "6689", + "6729", + "6772", + "6773", + "6774", + "6777", + "6778", + "6786", + "6813", + "6850", + "6868", + "6897", + "6899", + "6925", + "6929", + "6948", + "695", + "7015", + "7037", + "7040", + "7133", + "7157", + "7174", + "727897", + "7290", + "729238", + "7297", + "7298", + "7353", + "7372", + "7374", + "7454", + "7456", + "7535", + "7555", + "7737", + "7841", + "7852", + "79087", + "7922", + "79258", + "79633", + "79840", + "81704", + "8214", + "8220", + "833", + "83483", + "83737", + "83879", + "84061", + "841", + "843", + "84433", + "84876", + "84888", + "84905", + "8517", + "8546", + "8625", + "8676", + "8737", + "8742", + "8792", + "8883", + "8884", + "8915", + "90268", + "90417", + "9051", + "9056", + "9138", + "915", + "916", + "917", + "919", + "930", + "931", + "939", + "940", + "950", + "9508", + "958", + "959", + "9632", + "96459", + "9652", + "970", + "973", + "974", + "975", + "9839", + "9841", + "987", + "9939", + "9966", + "9993" + ] + }, + "HP:0002577": { + "Name": "Abnormal stomach morphology", + "Task": "Monarch", + "Genes": [ + "10125", + "1019", + "10243", + "10277", + "1029", + "1030", + "10395", + "10516", + "10526", + "10564", + "10630", + "10785", + "11200", + "11277", + "112858", + "113189", + "1244", + "1277", + "127833", + "1289", + "1290", + "1316", + "135886", + "1399", + "147372", + "1493", + "1499", + "1535", + "1536", + "155368", + "155382", + "160418", + "1630", + "169792", + "1717", + "1723", + "1785", + "2000", + "201163", + "2022", + "2033", + "2064", + "207", + "2132", + "2261", + "2263", + "22900", + "22909", + "23013", + "2313", + "2316", + "23261", + "23327", + "23476", + "2563", + "25788", + "25836", + "25913", + "25970", + "2629", + "26608", + "2694", + "27030", + "274", + "2741", + "2743", + "284058", + "284119", + "2956", + "2969", + "30008", + "324", + "326", + "3265", + "3339", + "355", + "3553", + "3557", + "356", + "3655", + "3659", + "3691", + "374879", + "3815", + "3845", + "388015", + "3909", + "3914", + "3918", + "3930", + "3984", + "404672", + "4052", + "4072", + "4089", + "412", + "4131", + "4157", + "4163", + "4193", + "4255", + "4286", + "4292", + "4436", + "4437", + "4534", + "4595", + "4618", + "4629", + "4688", + "4689", + "472", + "473", + "4744", + "4784", + "4790", + "4791", + "4868", + "4893", + "493856", + "5009", + "50619", + "5062", + "50940", + "50943", + "51002", + "51085", + "51341", + "5156", + "5157", + "5189", + "5190", + "5192", + "5194", + "5195", + "5265", + "529", + "5290", + "5320", + "5321", + "5339", + "5378", + "538", + "5395", + "5424", + "5426", + "54386", + "54880", + "54894", + "54897", + "54914", + "55012", + "5528", + "55644", + "55670", + "55697", + "5573", + "55746", + "55780", + "5580", + "55869", + "5590", + "5594", + "57122", + "5727", + "57492", + "5782", + "5795", + "581", + "5824", + "5828", + "5830", + "5831", + "5832", + "5885", + "595", + "5982", + "613", + "6224", + "6261", + "6389", + "63895", + "6390", + "6391", + "63976", + "641", + "64135", + "64218", + "64419", + "64840", + "6497", + "6499", + "653361", + "657", + "6714", + "673", + "675", + "6774", + "6790", + "6794", + "6804", + "6850", + "6885", + "6925", + "6926", + "6928", + "699", + "701", + "7015", + "7043", + "7048", + "7097", + "7148", + "715", + "7157", + "7373", + "7458", + "7461", + "7466", + "7798", + "79415", + "79633", + "79693", + "79719", + "80781", + "81031", + "8243", + "8260", + "8270", + "8313", + "8314", + "84163", + "84231", + "8425", + "84277", + "843", + "84520", + "8468", + "84896", + "84942", + "8504", + "8510", + "8514", + "871", + "8737", + "8788", + "8799", + "8915", + "9031", + "9126", + "9152", + "91754", + "9184", + "9275", + "9319", + "9409", + "9508", + "9509", + "9569", + "9652", + "9702", + "9719", + "9759", + "9839", + "987", + "9896", + "9968", + "999" + ] + }, + "HP:0001874": { + "Name": "Abnormality of neutrophils", + "Task": "Monarch", + "Genes": [ + "10043", + "10125", + "10312", + "10320", + "10430", + "10456", + "10459", + "1053", + "10559", + "10841", + "11224", + "112812", + "1130", + "11311", + "113235", + "114548", + "114803", + "119559", + "134218", + "136647", + "1441", + "148022", + "148867", + "1493", + "150274", + "1535", + "1536", + "157680", + "16", + "166785", + "171023", + "1729", + "1736", + "175", + "1789", + "1991", + "201294", + "204", + "2068", + "2071", + "2120", + "2122", + "2175", + "2176", + "2177", + "2178", + "2189", + "219285", + "23241", + "2328", + "23451", + "2530", + "2542", + "25839", + "25974", + "2623", + "26235", + "2624", + "26277", + "26525", + "2672", + "27429", + "2821", + "28956", + "29071", + "29110", + "2937", + "2961", + "29760", + "29851", + "29927", + "3070", + "3106", + "326625", + "331", + "3394", + "3458", + "3543", + "355", + "3557", + "356", + "3572", + "3575", + "3579", + "359948", + "3815", + "3845", + "3930", + "3937", + "3981", + "404672", + "4068", + "4194", + "4210", + "4261", + "4478", + "4522", + "4548", + "4552", + "4594", + "4598", + "4627", + "4688", + "4689", + "4700", + "4796", + "4860", + "4869", + "4893", + "4926", + "50485", + "5052", + "5073", + "50943", + "5095", + "5096", + "51119", + "51135", + "51311", + "51362", + "51567", + "51594", + "51645", + "51750", + "51816", + "5238", + "5293", + "5294", + "5295", + "5371", + "5373", + "54", + "54440", + "546", + "54790", + "54809", + "54880", + "54888", + "54892", + "55027", + "55135", + "55215", + "55294", + "55343", + "55505", + "5551", + "55651", + "5573", + "55788", + "5580", + "56262", + "57169", + "57724", + "5826", + "5873", + "5880", + "5896", + "5914", + "5971", + "5993", + "5994", + "6125", + "6132", + "6133", + "6135", + "6138", + "6141", + "6154", + "6155", + "6160", + "6165", + "6201", + "6204", + "6208", + "6210", + "6218", + "6223", + "6224", + "6229", + "6231", + "6232", + "6234", + "6235", + "6427", + "64682", + "64859", + "65082", + "653361", + "6573", + "6603", + "6688", + "6728", + "6729", + "6730", + "6772", + "6774", + "6775", + "6777", + "6789", + "6813", + "6897", + "6901", + "6929", + "6948", + "695", + "7015", + "7036", + "7037", + "7066", + "7098", + "7174", + "7187", + "7298", + "7319", + "7454", + "7456", + "7704", + "7737", + "7852", + "7922", + "79415", + "79631", + "79650", + "79718", + "80169", + "8029", + "81570", + "816", + "81608", + "81622", + "81693", + "833", + "83737", + "83879", + "843", + "84522", + "84888", + "8517", + "8546", + "861", + "8625", + "867", + "8676", + "8943", + "90121", + "90268", + "9158", + "92579", + "9401", + "9451", + "958", + "959", + "96459", + "973", + "974", + "9837", + "9841", + "987", + "9948" + ] + }, + "HP:0010701": { + "Name": "Abnormal immunoglobulin level", + "Task": "Monarch", + "Genes": [ + "100", + "10043", + "10111", + "10125", + "10159", + "10165", + "10309", + "10320", + "1041", + "10507", + "10525", + "10526", + "10625", + "10892", + "11005", + "11151", + "11311", + "113235", + "114803", + "115650", + "121391", + "1277", + "1294", + "136647", + "1380", + "1457", + "146206", + "147372", + "1493", + "1503", + "16", + "1604", + "165918", + "1678", + "1789", + "1828", + "1956", + "1991", + "200942", + "201294", + "204", + "2068", + "2071", + "213", + "2137", + "219285", + "2239", + "22861", + "23064", + "2316", + "23387", + "23495", + "23534", + "2475", + "2629", + "27040", + "2719", + "284119", + "2859", + "28956", + "2961", + "29760", + "29775", + "29851", + "30011", + "3070", + "3071", + "3117", + "3119", + "3123", + "331", + "3394", + "340061", + "3431", + "3459", + "3543", + "355", + "3551", + "3559", + "356", + "3560", + "3561", + "3570", + "3572", + "3575", + "3592", + "3594", + "359948", + "3663", + "3702", + "3718", + "374354", + "3845", + "3852", + "3857", + "3861", + "3978", + "3981", + "404672", + "4068", + "4125", + "4247", + "4261", + "4478", + "4485", + "4522", + "4598", + "4683", + "472", + "4780", + "4790", + "4791", + "4792", + "4796", + "4893", + "4938", + "493856", + "50485", + "50615", + "50943", + "51095", + "51135", + "51311", + "51371", + "51604", + "51750", + "51816", + "5184", + "5238", + "5293", + "5294", + "5295", + "5336", + "537", + "5373", + "5426", + "54440", + "5450", + "55343", + "5551", + "5557", + "55687", + "5580", + "56160", + "56259", + "56262", + "567", + "5692", + "5696", + "5698", + "57217", + "5728", + "57379", + "57511", + "57724", + "5788", + "5880", + "5896", + "59067", + "595", + "5966", + "5993", + "5994", + "60468", + "6117", + "641", + "64135", + "64170", + "6440", + "64421", + "6499", + "65082", + "6651", + "6688", + "6689", + "6729", + "6773", + "6774", + "6777", + "6778", + "6786", + "6813", + "6850", + "6868", + "6897", + "6925", + "6929", + "6948", + "695", + "7015", + "7037", + "7040", + "7133", + "7157", + "7174", + "727897", + "729238", + "7297", + "7298", + "7374", + "7454", + "7535", + "7555", + "7737", + "7841", + "7852", + "79087", + "7922", + "79258", + "79633", + "79840", + "81704", + "833", + "83483", + "83737", + "83879", + "84061", + "841", + "843", + "84433", + "84876", + "84888", + "84905", + "8517", + "8625", + "8676", + "8737", + "8742", + "8792", + "8883", + "8884", + "8915", + "90268", + "90417", + "9051", + "9056", + "9138", + "915", + "916", + "917", + "919", + "930", + "931", + "939", + "940", + "950", + "9508", + "958", + "959", + "96459", + "9652", + "970", + "973", + "974", + "975", + "9839", + "9841", + "987", + "9939", + "9966" + ] + }, + "HP:0005372": { + "Name": "Abnormality of B cell physiology", + "Task": "Monarch", + "Genes": [ + "100", + "10043", + "10111", + "10125", + "10159", + "10165", + "10309", + "10320", + "1041", + "10507", + "10525", + "10526", + "10625", + "10892", + "11005", + "11151", + "11311", + "113235", + "114803", + "115650", + "121391", + "1277", + "1294", + "136647", + "1380", + "1457", + "146206", + "147372", + "1493", + "1503", + "16", + "1604", + "165918", + "1678", + "1789", + "1828", + "1956", + "1991", + "200942", + "201294", + "204", + "2068", + "2071", + "213", + "2137", + "219285", + "2239", + "22861", + "23064", + "2316", + "23387", + "23495", + "23534", + "2475", + "2629", + "27040", + "2719", + "284119", + "2859", + "28956", + "2961", + "29760", + "29775", + "29851", + "30011", + "3070", + "3071", + "3117", + "3119", + "3123", + "331", + "3394", + "340061", + "3431", + "3459", + "3543", + "355", + "3551", + "3559", + "356", + "3560", + "3561", + "3570", + "3572", + "3575", + "3592", + "3594", + "359948", + "3663", + "3702", + "3718", + "374354", + "3845", + "3852", + "3857", + "3861", + "3978", + "3981", + "404672", + "4068", + "4125", + "4247", + "4261", + "4478", + "4485", + "4522", + "4598", + "4683", + "472", + "4780", + "4790", + "4791", + "4792", + "4796", + "4860", + "4893", + "4938", + "493856", + "50485", + "50615", + "50943", + "51095", + "51135", + "51311", + "51371", + "51604", + "51750", + "51816", + "5184", + "5238", + "5293", + "5294", + "5295", + "5336", + "537", + "5373", + "5426", + "54440", + "5450", + "55343", + "5551", + "5557", + "55687", + "5580", + "56160", + "56259", + "56262", + "567", + "5692", + "5696", + "5698", + "57217", + "5728", + "57379", + "57511", + "57724", + "5788", + "5880", + "5896", + "59067", + "595", + "5966", + "5993", + "5994", + "60468", + "6117", + "641", + "64135", + "64170", + "6440", + "64421", + "6499", + "65082", + "6651", + "6688", + "6689", + "6729", + "6773", + "6774", + "6777", + "6778", + "6786", + "6813", + "6850", + "6868", + "6897", + "6925", + "6929", + "6948", + "695", + "7015", + "7037", + "7040", + "7133", + "7157", + "7174", + "727897", + "729238", + "7297", + "7298", + "7374", + "7454", + "7535", + "7555", + "7737", + "7841", + "7852", + "79087", + "7922", + "79258", + "79633", + "79840", + "81704", + "833", + "83483", + "83737", + "83879", + "84061", + "841", + "843", + "84433", + "84876", + "84888", + "84905", + "8517", + "8625", + "8676", + "8737", + "8742", + "8792", + "8883", + "8884", + "8915", + "90268", + "90417", + "9051", + "9056", + "9138", + "915", + "916", + "917", + "919", + "930", + "931", + "939", + "940", + "950", + "9508", + "958", + "959", + "96459", + "9652", + "970", + "973", + "974", + "975", + "9839", + "9841", + "987", + "9939", + "9966" + ] + }, + "HP:0032309": { + "Name": "Abnormal granulocyte count", + "Task": "Monarch", + "Genes": [ + "100", + "10043", + "10125", + "10312", + "1041", + "10456", + "10459", + "10526", + "1053", + "10559", + "10999", + "11005", + "11224", + "112812", + "1130", + "11311", + "113235", + "114548", + "114803", + "134218", + "136647", + "1441", + "148022", + "148867", + "1493", + "150274", + "157680", + "16", + "166785", + "171023", + "1729", + "175", + "1991", + "201294", + "204", + "2068", + "2071", + "2120", + "2122", + "2137", + "2175", + "2176", + "2177", + "2178", + "2189", + "219285", + "22861", + "23241", + "2328", + "23451", + "2530", + "2542", + "25839", + "25974", + "2623", + "26235", + "2624", + "26277", + "26525", + "2672", + "27429", + "28956", + "29071", + "2908", + "29110", + "2937", + "2961", + "29760", + "29775", + "29851", + "29927", + "30009", + "3123", + "326625", + "331", + "3394", + "3458", + "3543", + "355", + "3557", + "356", + "3561", + "3572", + "3575", + "3579", + "359948", + "3716", + "3815", + "3845", + "3930", + "3981", + "404672", + "4068", + "4194", + "4210", + "4261", + "4478", + "4548", + "4552", + "4594", + "4598", + "4700", + "4796", + "4860", + "4869", + "4893", + "4926", + "50485", + "5052", + "50943", + "5095", + "5096", + "51119", + "51135", + "51311", + "51362", + "5156", + "51567", + "5159", + "51645", + "51816", + "5238", + "5293", + "5294", + "5295", + "5371", + "54", + "54440", + "546", + "54790", + "54809", + "54880", + "54892", + "55027", + "55215", + "55294", + "55343", + "5551", + "55636", + "5573", + "55788", + "5580", + "56244", + "56262", + "57169", + "57724", + "5826", + "5873", + "5880", + "5896", + "5914", + "5971", + "5993", + "5994", + "60468", + "6125", + "6132", + "6133", + "6135", + "6138", + "6141", + "6154", + "6155", + "6160", + "6165", + "6201", + "6204", + "6210", + "6218", + "6223", + "6224", + "6229", + "6231", + "6232", + "6234", + "6235", + "64072", + "64170", + "6427", + "64421", + "64682", + "64859", + "64919", + "65082", + "6603", + "6688", + "6720", + "6728", + "6729", + "673", + "6730", + "6772", + "6774", + "6775", + "6777", + "6778", + "6789", + "6813", + "6897", + "6901", + "6929", + "6948", + "695", + "7015", + "7036", + "7037", + "7066", + "7098", + "7157", + "7174", + "7187", + "7319", + "7454", + "7456", + "7535", + "7704", + "7737", + "7852", + "7922", + "79631", + "79650", + "79718", + "8029", + "81570", + "816", + "81608", + "81622", + "81693", + "81704", + "825", + "833", + "83737", + "84196", + "843", + "84433", + "84522", + "84905", + "8517", + "8546", + "861", + "8625", + "867", + "8676", + "8943", + "90121", + "90268", + "9101", + "915", + "9158", + "916", + "919", + "92579", + "9401", + "9451", + "958", + "959", + "96459", + "973", + "974", + "9837", + "987", + "9939", + "9948" + ] + }, + "HP:0000490": { + "Name": "Deeply set eye", + "Task": "Monarch", + "Genes": [ + "1000", + "10015", + "10056", + "10059", + "10075", + "10274", + "10277", + "10479", + "10522", + "10526", + "10559", + "1063", + "10630", + "10664", + "10743", + "10801", + "10847", + "10943", + "11128", + "1123", + "1161", + "116931", + "1281", + "128637", + "128869", + "1289", + "129563", + "132158", + "134218", + "1351", + "1387", + "1399", + "145258", + "1487", + "1725", + "178", + "1806", + "182", + "1822", + "1917", + "1984", + "2033", + "2036", + "2067", + "2068", + "2072", + "2074", + "2137", + "2186", + "2193", + "219844", + "2200", + "22827", + "22858", + "22930", + "2294", + "23013", + "23065", + "23096", + "23116", + "2314", + "23162", + "23221", + "23261", + "23314", + "2332", + "23327", + "23404", + "23418", + "23524", + "23592", + "25", + "253738", + "253959", + "2563", + "25782", + "25886", + "259232", + "25942", + "26040", + "26057", + "26137", + "2626", + "2697", + "2702", + "2703", + "27161", + "27238", + "27245", + "2783", + "2799", + "285590", + "2892", + "28958", + "28960", + "2902", + "29998", + "3020", + "3339", + "3480", + "3572", + "3720", + "374654", + "388015", + "3977", + "4089", + "4208", + "4212", + "4285", + "4621", + "4693", + "473", + "4763", + "4784", + "4803", + "4849", + "4858", + "4914", + "4952", + "4953", + "4983", + "5058", + "5063", + "50801", + "51002", + "51322", + "51574", + "51611", + "5290", + "5293", + "5295", + "5339", + "5354", + "5449", + "54496", + "54517", + "5457", + "54897", + "55023", + "55210", + "55212", + "5528", + "55644", + "55699", + "55733", + "55869", + "55870", + "5590", + "55904", + "55906", + "5591", + "5594", + "5631", + "56896", + "57038", + "57167", + "5718", + "57459", + "57479", + "57498", + "57520", + "57531", + "5831", + "5965", + "6045", + "613", + "6329", + "63895", + "63976", + "6497", + "65062", + "6638", + "6651", + "6711", + "6714", + "6748", + "6774", + "6786", + "6792", + "6821", + "6872", + "6901", + "6904", + "6905", + "6913", + "6925", + "6942", + "7042", + "7175", + "729920", + "7319", + "7337", + "7358", + "7518", + "7798", + "7840", + "79184", + "79228", + "79718", + "79759", + "79791", + "7994", + "79989", + "80036", + "80055", + "80185", + "80204", + "80267", + "80816", + "8091", + "816", + "81603", + "81887", + "8242", + "8243", + "8260", + "8295", + "8314", + "833", + "8367", + "8379", + "8405", + "84295", + "84679", + "84876", + "84992", + "8510", + "8514", + "85358", + "8565", + "8788", + "8831", + "8882", + "8905", + "8913", + "8936", + "90161", + "90417", + "91147", + "9158", + "91801", + "92344", + "9319", + "93627", + "9377", + "9702", + "9739", + "9757", + "9759", + "9772", + "9839", + "9915", + "9935" + ] + }, + "HP:0001558": { + "Name": "Decreased fetal movement", + "Task": "Monarch", + "Genes": [ + "100128927", + "10059", + "10102", + "10269", + "10293", + "10324", + "10522", + "10659", + "10743", + "10815", + "10991", + "1103", + "112", + "1134", + "1144", + "1145", + "1146", + "1147", + "115286", + "116150", + "1272", + "127833", + "1291", + "1292", + "1293", + "1303", + "1305", + "131377", + "1355", + "145173", + "146862", + "1487", + "157680", + "16", + "163175", + "1717", + "1759", + "1760", + "1763", + "1785", + "1798", + "1861", + "1917", + "199857", + "2065", + "2073", + "2257", + "2258", + "2261", + "22866", + "2290", + "22906", + "23096", + "23097", + "23114", + "2314", + "23219", + "23241", + "23299", + "23334", + "23345", + "23511", + "23742", + "253738", + "2555", + "2558", + "2561", + "2566", + "25973", + "25977", + "26227", + "2629", + "2632", + "2673", + "26999", + "27238", + "27315", + "2733", + "274", + "2783", + "284111", + "284403", + "285489", + "2906", + "29925", + "29968", + "342035", + "3481", + "348980", + "3508", + "3560", + "3679", + "3737", + "3745", + "375790", + "3800", + "389827", + "390594", + "3954", + "4000", + "429", + "440", + "4534", + "4593", + "4613", + "4618", + "4621", + "4632", + "4633", + "4649", + "4654", + "4692", + "477", + "478", + "4915", + "4927", + "4948", + "4953", + "5081", + "51008", + "51126", + "51244", + "51343", + "51412", + "51611", + "51651", + "51692", + "51741", + "51776", + "523", + "5351", + "53834", + "5393", + "54101", + "54499", + "54551", + "54872", + "5495", + "55033", + "55152", + "55164", + "5530", + "55605", + "55681", + "55906", + "56203", + "56896", + "57003", + "57190", + "57211", + "57222", + "57572", + "58", + "5824", + "58497", + "5913", + "59341", + "5979", + "60386", + "60482", + "6261", + "6328", + "6329", + "6334", + "64324", + "64419", + "64801", + "6506", + "6519", + "6567", + "6572", + "6576", + "6606", + "6616", + "6638", + "6663", + "6843", + "6885", + "7125", + "7169", + "7170", + "729920", + "7317", + "7468", + "7469", + "7532", + "7681", + "773", + "774", + "781", + "7846", + "7874", + "79053", + "79796", + "79823", + "79876", + "79947", + "8087", + "8120", + "81570", + "8260", + "8364", + "84466", + "84570", + "84665", + "8504", + "8506", + "8831", + "8867", + "8924", + "8929", + "91754", + "9200", + "9325", + "93627", + "94005", + "9453", + "9568", + "9570", + "9578", + "9581" + ] + }, + "HP:0011119": { + "Name": "Abnormal nasal dorsum morphology", + "Task": "Monarch", + "Genes": [ + "10013", + "10157", + "10269", + "10277", + "10293", + "103", + "10535", + "1062", + "10630", + "10651", + "10682", + "10733", + "10735", + "10815", + "10913", + "10943", + "11128", + "11277", + "113179", + "113246", + "1134", + "1144", + "1146", + "117581", + "1182", + "124583", + "126695", + "1277", + "1278", + "1281", + "128178", + "134353", + "1387", + "1487", + "1513", + "157680", + "168667", + "1763", + "182", + "1896", + "1947", + "197131", + "199221", + "2033", + "2068", + "2072", + "2077", + "2200", + "221496", + "2253", + "2260", + "2261", + "2263", + "2296", + "22995", + "23007", + "23013", + "23312", + "23314", + "23322", + "23404", + "23426", + "23511", + "23512", + "2542", + "256297", + "2563", + "25839", + "259232", + "25939", + "26123", + "26154", + "2619", + "26227", + "26235", + "26281", + "2674", + "2688", + "2690", + "2697", + "27077", + "2720", + "2736", + "2737", + "28514", + "28952", + "29081", + "29957", + "29968", + "29980", + "30008", + "3170", + "3187", + "3190", + "324", + "3265", + "3313", + "3339", + "3479", + "3559", + "3590", + "3930", + "3954", + "3981", + "4000", + "4038", + "4052", + "4125", + "415", + "4212", + "4247", + "4330", + "444", + "4621", + "4683", + "473", + "4792", + "4838", + "4849", + "4893", + "4921", + "5015", + "5077", + "5081", + "50937", + "50964", + "51053", + "51132", + "5116", + "51259", + "51360", + "5144", + "5159", + "5184", + "5189", + "529", + "5314", + "538", + "53834", + "5424", + "5449", + "54496", + "545", + "546", + "54897", + "54903", + "54914", + "55012", + "55165", + "55343", + "5573", + "55777", + "55790", + "55835", + "55870", + "5590", + "5626", + "5631", + "56975", + "57096", + "5727", + "57545", + "5781", + "5831", + "5832", + "5932", + "5965", + "5977", + "5979", + "60401", + "60529", + "6223", + "63976", + "64135", + "64327", + "6469", + "6491", + "6496", + "6497", + "65062", + "6595", + "6658", + "6662", + "6777", + "6899", + "6905", + "699", + "6997", + "701", + "7021", + "7050", + "7189", + "7291", + "7468", + "7484", + "7486", + "7518", + "7546", + "7798", + "79583", + "79600", + "79621", + "79718", + "79770", + "79796", + "79840", + "79848", + "79867", + "79902", + "80000", + "80152", + "80184", + "80324", + "80776", + "81031", + "8243", + "83737", + "84126", + "84153", + "84314", + "84942", + "84976", + "8510", + "8514", + "8516", + "85358", + "857", + "860", + "8815", + "8820", + "8882", + "8928", + "89884", + "91147", + "91179", + "91754", + "9179", + "9184", + "9319", + "9342", + "93986", + "9401", + "9487", + "9652", + "9702", + "9839" + ] + }, + "HP:0001557": { + "Name": "Prenatal movement abnormality", + "Task": "Monarch", + "Genes": [ + "100128927", + "10059", + "10102", + "10269", + "10293", + "10324", + "10522", + "10659", + "10743", + "10815", + "10991", + "1103", + "112", + "11212", + "1134", + "1144", + "1145", + "1146", + "1147", + "115286", + "116150", + "1272", + "127833", + "1291", + "1292", + "1293", + "1303", + "1305", + "131377", + "1355", + "145173", + "146862", + "1487", + "157680", + "16", + "163175", + "1717", + "1759", + "1760", + "1763", + "1785", + "1798", + "1861", + "1917", + "199857", + "2065", + "2073", + "2257", + "2258", + "2261", + "22866", + "2290", + "22906", + "23096", + "23097", + "23114", + "2314", + "23219", + "23241", + "23299", + "23334", + "23345", + "23476", + "23511", + "23742", + "253738", + "2555", + "2558", + "2561", + "2566", + "25836", + "259232", + "25973", + "25977", + "26227", + "2629", + "2632", + "2673", + "26999", + "27238", + "27315", + "2733", + "274", + "2743", + "2783", + "284111", + "284403", + "285489", + "2906", + "29925", + "29968", + "3339", + "340533", + "342035", + "3481", + "348980", + "3508", + "3560", + "3679", + "3737", + "3745", + "375790", + "3800", + "389827", + "390594", + "3954", + "4000", + "429", + "440", + "4534", + "4593", + "4613", + "4618", + "4621", + "4632", + "4633", + "4649", + "4654", + "4692", + "477", + "478", + "4915", + "4927", + "4948", + "4953", + "501", + "5081", + "51008", + "51126", + "51244", + "51343", + "51412", + "51611", + "51651", + "51692", + "51741", + "51776", + "523", + "5351", + "53834", + "5393", + "54101", + "54499", + "54551", + "54872", + "5495", + "55033", + "55152", + "55164", + "5530", + "55605", + "55681", + "55869", + "55906", + "56203", + "56896", + "57003", + "57190", + "57211", + "57222", + "57572", + "58", + "5824", + "58497", + "5885", + "5913", + "59341", + "5979", + "60386", + "60482", + "6261", + "6328", + "6329", + "6334", + "64324", + "64419", + "64801", + "6506", + "6519", + "6567", + "6572", + "6576", + "6606", + "6616", + "6638", + "6663", + "6843", + "6885", + "7125", + "7169", + "7170", + "729920", + "7317", + "7468", + "7469", + "7532", + "7681", + "773", + "774", + "781", + "7846", + "7874", + "79053", + "79796", + "79823", + "79876", + "79947", + "8087", + "8120", + "81570", + "8243", + "8260", + "8364", + "84466", + "84570", + "84665", + "8504", + "8506", + "8831", + "8867", + "8924", + "8929", + "9126", + "91754", + "9200", + "9325", + "93627", + "94005", + "9453", + "9568", + "9570", + "9578", + "9581" + ] + }, + "HP:0007379": { + "Name": "Neoplasm of the genitourinary tract", + "Task": "Monarch", + "Genes": [ + "100144748", + "10111", + "10155", + "1027", + "1028", + "1029", + "10297", + "10395", + "10483", + "10587", + "10734", + "11200", + "11224", + "11236", + "11281", + "126792", + "1287", + "1288", + "129563", + "1316", + "1387", + "1499", + "1584", + "161742", + "1630", + "168667", + "171023", + "1743", + "190", + "201163", + "2033", + "2048", + "205717", + "2064", + "207", + "2130", + "2132", + "2239", + "2261", + "2263", + "2271", + "22909", + "23022", + "2304", + "23095", + "2313", + "23405", + "23414", + "23530", + "2516", + "25788", + "26040", + "2623", + "2624", + "2626", + "26585", + "27030", + "2719", + "2778", + "284058", + "285282", + "29072", + "2956", + "3026", + "3110", + "324", + "3265", + "3417", + "3418", + "3458", + "3481", + "367", + "3784", + "3815", + "3845", + "388662", + "4000", + "4072", + "4089", + "412", + "4149", + "4158", + "4163", + "4191", + "4193", + "4214", + "4233", + "4292", + "4361", + "4436", + "4437", + "4591", + "4595", + "4598", + "4601", + "463", + "4665", + "4683", + "472", + "4763", + "4771", + "4893", + "4913", + "4968", + "4978", + "5071", + "5080", + "50846", + "50940", + "51004", + "51317", + "5157", + "51684", + "51741", + "51816", + "5290", + "5320", + "5378", + "538", + "5395", + "5424", + "5426", + "54894", + "54949", + "55027", + "55193", + "5546", + "55612", + "55654", + "5573", + "56246", + "5727", + "5728", + "57647", + "5782", + "5795", + "580", + "581", + "58524", + "5888", + "5889", + "5892", + "5925", + "595", + "5970", + "5978", + "5979", + "6041", + "60529", + "6125", + "6132", + "6133", + "6135", + "6138", + "6141", + "6154", + "6155", + "6160", + "6165", + "6201", + "6204", + "6210", + "6218", + "6223", + "6224", + "6229", + "6231", + "6232", + "6234", + "6235", + "6389", + "6390", + "6391", + "6392", + "641", + "64127", + "64218", + "64324", + "657", + "6597", + "6598", + "65998", + "6662", + "6714", + "672", + "673", + "6736", + "675", + "6770", + "6778", + "6790", + "6794", + "6845", + "6927", + "6928", + "699", + "701", + "7030", + "7048", + "7097", + "7157", + "716", + "7248", + "7249", + "7373", + "7428", + "7486", + "7490", + "7852", + "79577", + "79719", + "79728", + "79798", + "80326", + "81704", + "8216", + "8313", + "8314", + "8379", + "83990", + "8402", + "8643", + "8915", + "8930", + "90121", + "9158", + "9184", + "9319", + "9562", + "9702", + "9759", + "9817", + "999" + ] + }, + "HP:0011991": { + "Name": "Abnormal neutrophil count", + "Task": "Monarch", + "Genes": [ + "10043", + "10125", + "10312", + "10456", + "10459", + "1053", + "10559", + "11224", + "112812", + "1130", + "11311", + "113235", + "114803", + "134218", + "136647", + "1441", + "148022", + "148867", + "1493", + "150274", + "157680", + "16", + "166785", + "171023", + "1729", + "175", + "1991", + "201294", + "2068", + "2071", + "2120", + "2122", + "2175", + "2176", + "2177", + "2178", + "2189", + "219285", + "23241", + "2328", + "23451", + "2530", + "2542", + "25839", + "25974", + "2623", + "26235", + "2624", + "26277", + "26525", + "2672", + "27429", + "28956", + "29071", + "29110", + "2937", + "2961", + "29760", + "29851", + "29927", + "326625", + "331", + "3394", + "3458", + "3543", + "355", + "3557", + "356", + "3572", + "3575", + "3579", + "359948", + "3815", + "3845", + "3930", + "404672", + "4068", + "4194", + "4210", + "4261", + "4478", + "4548", + "4552", + "4594", + "4598", + "4700", + "4796", + "4860", + "4869", + "4893", + "4926", + "50485", + "5052", + "50943", + "5095", + "5096", + "51119", + "51135", + "51311", + "51362", + "51567", + "51645", + "51816", + "5238", + "5293", + "5294", + "5295", + "5371", + "54", + "54440", + "546", + "54790", + "54809", + "54880", + "54892", + "55027", + "55215", + "55294", + "55343", + "5551", + "5573", + "55788", + "5580", + "56262", + "57169", + "57724", + "5826", + "5873", + "5880", + "5896", + "5914", + "5971", + "5993", + "5994", + "6125", + "6132", + "6133", + "6135", + "6138", + "6141", + "6154", + "6155", + "6160", + "6165", + "6201", + "6204", + "6210", + "6218", + "6223", + "6224", + "6229", + "6231", + "6232", + "6234", + "6235", + "6427", + "64682", + "64859", + "65082", + "6603", + "6688", + "6728", + "6729", + "6730", + "6772", + "6774", + "6775", + "6777", + "6789", + "6813", + "6897", + "6901", + "6929", + "6948", + "695", + "7015", + "7036", + "7037", + "7066", + "7098", + "7174", + "7187", + "7319", + "7454", + "7456", + "7704", + "7737", + "7852", + "7922", + "79631", + "79650", + "79718", + "8029", + "81570", + "816", + "81608", + "81622", + "81693", + "833", + "83737", + "843", + "84522", + "8517", + "8546", + "861", + "8625", + "867", + "8676", + "8943", + "90121", + "90268", + "9158", + "92579", + "9401", + "9451", + "958", + "959", + "96459", + "973", + "974", + "9837", + "987", + "9948" + ] + }, + "HP:0100533": { + "Name": "Inflammatory abnormality of the eye", + "Task": "Monarch", + "Genes": [ + "10095", + "10125", + "10273", + "10320", + "10507", + "105371045", + "10758", + "10804", + "10892", + "114548", + "115650", + "1161", + "121214", + "1230", + "1287", + "1288", + "1294", + "130340", + "1308", + "136647", + "1380", + "144811", + "1474", + "149233", + "1493", + "1535", + "1536", + "16", + "162", + "1643", + "165", + "1736", + "1776", + "1956", + "204219", + "2067", + "2068", + "2071", + "2072", + "2073", + "2074", + "2077", + "2200", + "220202", + "224", + "2255", + "2261", + "2263", + "22861", + "2303", + "23129", + "23451", + "23476", + "23495", + "23556", + "242", + "25836", + "26154", + "26191", + "2623", + "26277", + "26525", + "2697", + "2706", + "2767", + "2776", + "2778", + "285848", + "2859", + "2934", + "2961", + "29760", + "29851", + "3105", + "3106", + "3113", + "3115", + "3123", + "3141", + "326", + "330", + "3321", + "337867", + "3459", + "348", + "348938", + "3543", + "355", + "3559", + "356", + "3560", + "3569", + "3572", + "3586", + "3592", + "3593", + "3662", + "3930", + "404672", + "4072", + "4081", + "4210", + "4282", + "4312", + "4485", + "4547", + "4688", + "4689", + "4869", + "4914", + "5073", + "5075", + "5080", + "51360", + "51750", + "51752", + "5295", + "5333", + "5339", + "5340", + "5429", + "54809", + "54941", + "55135", + "55315", + "55343", + "55505", + "55612", + "55630", + "55651", + "55699", + "5580", + "55869", + "56244", + "56262", + "5657", + "5692", + "5696", + "5698", + "57105", + "5771", + "5885", + "5896", + "59344", + "5965", + "5980", + "6307", + "6335", + "641", + "64127", + "65082", + "653361", + "6688", + "6720", + "6768", + "6775", + "6820", + "6868", + "6897", + "6925", + "6929", + "6945", + "695", + "7015", + "7037", + "7051", + "7086", + "7099", + "7128", + "7132", + "720", + "726", + "7298", + "7389", + "7390", + "7454", + "7456", + "7507", + "7508", + "7737", + "7922", + "79415", + "79650", + "79722", + "7994", + "80169", + "8218", + "8243", + "8302", + "8314", + "833", + "843", + "8517", + "8626", + "8675", + "8676", + "8915", + "9126", + "919", + "9244", + "930", + "939", + "9496", + "973", + "974", + "987" + ] + }, + "HP:0100755": { + "Name": "Abnormality of salivation", + "Task": "Monarch", + "Genes": [ + "10059", + "10087", + "10133", + "10159", + "10318", + "10320", + "10479", + "10522", + "10588", + "10717", + "10846", + "10891", + "11128", + "11154", + "11277", + "1131", + "1235", + "128178", + "128989", + "1380", + "1490", + "1493", + "1512", + "1610", + "1639", + "1644", + "170302", + "1737", + "1773", + "1968", + "2043", + "2066", + "2113", + "2137", + "2192", + "2213", + "221895", + "2255", + "2261", + "2263", + "2290", + "23013", + "23025", + "23111", + "23141", + "23219", + "23230", + "23261", + "23314", + "23431", + "23435", + "2521", + "2554", + "2566", + "259232", + "25978", + "26191", + "27107", + "27286", + "2733", + "2799", + "283", + "283489", + "2898", + "2903", + "2906", + "29110", + "2934", + "29978", + "3060", + "3097", + "3106", + "311", + "3119", + "3123", + "3178", + "3188", + "340533", + "347733", + "3586", + "3654", + "3663", + "3684", + "374654", + "3747", + "388015", + "3930", + "400916", + "4204", + "4340", + "4361", + "4744", + "4750", + "478", + "4784", + "4841", + "4948", + "5010", + "5032", + "5063", + "51126", + "51284", + "51319", + "5133", + "5216", + "5297", + "5376", + "540", + "54209", + "5444", + "5445", + "5446", + "5455", + "54551", + "546", + "54899", + "55024", + "55209", + "5524", + "55617", + "55697", + "55703", + "55739", + "55777", + "55830", + "55906", + "5630", + "5631", + "56992", + "57194", + "57468", + "57526", + "57679", + "5805", + "5860", + "63035", + "6304", + "6311", + "6323", + "6324", + "6326", + "6335", + "640", + "64127", + "6472", + "64834", + "6492", + "6509", + "6558", + "6567", + "6595", + "6638", + "6647", + "6696", + "6711", + "6775", + "6899", + "7054", + "710", + "7128", + "720", + "721", + "7292", + "7332", + "7337", + "7415", + "755", + "7703", + "79628", + "79932", + "80856", + "8148", + "83548", + "8398", + "84340", + "84628", + "84679", + "84706", + "84823", + "84842", + "857", + "8604", + "8626", + "8788", + "8831", + "8878", + "8911", + "8925", + "899", + "9071", + "9179", + "9217", + "9230", + "92335", + "9256", + "9289", + "9378", + "93986", + "9442", + "9487", + "9568", + "9675", + "9759", + "9782", + "9839", + "9896", + "9968" + ] + }, + "HP:0012433": { + "Name": "Abnormal social behavior", + "Task": "Monarch", + "Genes": [ + "10297", + "10347", + "10352", + "10381", + "10452", + "10479", + "10682", + "10716", + "10717", + "10771", + "10785", + "1106", + "11113", + "11154", + "11315", + "1173", + "120892", + "135886", + "136647", + "1387", + "1436", + "1496", + "155368", + "155382", + "158", + "16", + "160418", + "1639", + "167691", + "1806", + "200424", + "2033", + "2068", + "2071", + "22854", + "22871", + "2290", + "23096", + "23102", + "23126", + "23230", + "23261", + "2332", + "23389", + "23394", + "23431", + "23524", + "2554", + "2562", + "2566", + "25970", + "25978", + "26040", + "26047", + "26608", + "271", + "2737", + "27429", + "2760", + "283489", + "284058", + "2896", + "2898", + "2902", + "29072", + "2961", + "2969", + "3028", + "340533", + "3458", + "351", + "3708", + "388015", + "388662", + "3984", + "404672", + "410", + "4123", + "4137", + "4204", + "440138", + "4763", + "4841", + "4858", + "4948", + "4983", + "5071", + "51085", + "51132", + "5119", + "51362", + "5138", + "51645", + "5283", + "5420", + "54209", + "5422", + "5457", + "546", + "54664", + "54832", + "54902", + "55367", + "5575", + "55777", + "55812", + "5660", + "5663", + "5664", + "57102", + "57194", + "57231", + "57459", + "57511", + "57526", + "5982", + "6121", + "6323", + "65018", + "6513", + "6529", + "653361", + "6535", + "6595", + "6622", + "6638", + "6653", + "6711", + "6792", + "6804", + "6833", + "6897", + "7248", + "7249", + "7305", + "7337", + "7345", + "7415", + "7458", + "7461", + "7737", + "79971", + "80055", + "80856", + "8243", + "833", + "83479", + "83480", + "8398", + "84163", + "84277", + "84628", + "8468", + "84894", + "85358", + "8629", + "8788", + "8812", + "8831", + "8867", + "8878", + "8912", + "8913", + "8925", + "9031", + "9179", + "9227", + "9275", + "93986", + "94005", + "9568", + "9569", + "9675", + "9829", + "9894", + "9968" + ] + }, + "HP:0001387": { + "Name": "Joint stiffness", + "Task": "Monarch", + "Genes": [ + "10216", + "10243", + "10262", + "10269", + "10277", + "10436", + "10522", + "10585", + "10630", + "10651", + "10743", + "112476", + "118429", + "1277", + "1278", + "1280", + "128637", + "1311", + "135886", + "138050", + "155368", + "155382", + "170691", + "175", + "1836", + "2010", + "2067", + "2068", + "207", + "2073", + "2074", + "2146", + "2200", + "2201", + "222663", + "224", + "2254", + "2261", + "2273", + "22930", + "22931", + "22943", + "23013", + "23096", + "2314", + "2316", + "23224", + "23345", + "23476", + "23483", + "23512", + "23592", + "256297", + "2563", + "25782", + "25836", + "259232", + "25953", + "26040", + "26191", + "26608", + "2720", + "2741", + "2743", + "2799", + "285362", + "285590", + "2969", + "2990", + "3077", + "3081", + "3106", + "3123", + "3248", + "3339", + "340061", + "3417", + "3418", + "3425", + "3559", + "3560", + "3586", + "3636", + "3664", + "3889", + "3897", + "3984", + "4000", + "4047", + "4053", + "4054", + "4089", + "411", + "4125", + "4148", + "4204", + "4261", + "4318", + "4322", + "443", + "4604", + "4621", + "4659", + "4669", + "4722", + "473", + "4795", + "4882", + "493856", + "4952", + "50515", + "5077", + "51085", + "5119", + "5130", + "51744", + "5307", + "5352", + "54507", + "546", + "54676", + "54820", + "54829", + "54897", + "55869", + "5590", + "57167", + "5728", + "5745", + "5771", + "57724", + "5885", + "59341", + "5982", + "60", + "60681", + "63895", + "63976", + "6399", + "64324", + "6448", + "6473", + "6497", + "65082", + "653361", + "654", + "658", + "6583", + "6775", + "6804", + "6910", + "6926", + "71", + "7136", + "7140", + "7169", + "72", + "7458", + "7461", + "7466", + "7486", + "7798", + "79158", + "79188", + "79650", + "79722", + "80199", + "81794", + "81839", + "8200", + "8243", + "8398", + "84163", + "84277", + "84572", + "8468", + "84896", + "8510", + "8514", + "8726", + "875", + "8815", + "8838", + "8883", + "8974", + "9031", + "9126", + "9152", + "91754", + "919", + "9217", + "9241", + "9275", + "9401", + "9509", + "9555", + "9569", + "9719", + "9927" + ] + }, + "HP:0002829": { + "Name": "Arthralgia", + "Task": "Monarch", + "Genes": [ + "10661", + "10801", + "11277", + "114548", + "115650", + "118429", + "1188", + "1230", + "1235", + "1277", + "1280", + "1289", + "1290", + "1297", + "1300", + "1301", + "1302", + "130340", + "1311", + "1314", + "135886", + "1380", + "144811", + "1490", + "149233", + "1493", + "1499", + "155368", + "155382", + "1604", + "1643", + "171023", + "1836", + "2057", + "2068", + "2071", + "2072", + "2073", + "2157", + "23495", + "23592", + "2512", + "255738", + "26119", + "26191", + "26525", + "26608", + "2717", + "2783", + "2969", + "29851", + "29940", + "30061", + "3043", + "3047", + "3048", + "3077", + "3081", + "3106", + "3113", + "3115", + "3117", + "3119", + "3123", + "324", + "3248", + "337867", + "338", + "340061", + "3459", + "355", + "3557", + "3559", + "3560", + "3569", + "3586", + "3592", + "3593", + "359948", + "3654", + "3662", + "3663", + "368", + "3717", + "374654", + "3815", + "3930", + "3949", + "3984", + "4000", + "4087", + "411", + "4148", + "4210", + "4261", + "427", + "4282", + "4313", + "4352", + "4598", + "4621", + "4790", + "4791", + "4795", + "4853", + "4982", + "50515", + "50964", + "51085", + "51284", + "51371", + "51604", + "5167", + "51744", + "51752", + "51816", + "5251", + "53335", + "5336", + "540", + "54209", + "54790", + "54829", + "55325", + "5580", + "56172", + "5657", + "5692", + "5696", + "5698", + "5745", + "5771", + "58484", + "5982", + "6303", + "6307", + "6399", + "64127", + "6424", + "64240", + "64241", + "6427", + "653361", + "654", + "6559", + "6578", + "6583", + "65992", + "6609", + "6696", + "6775", + "6804", + "6945", + "7099", + "7132", + "7148", + "715", + "716", + "720", + "7227", + "7305", + "7317", + "7415", + "7458", + "7461", + "7507", + "7508", + "79722", + "8302", + "83550", + "84163", + "84277", + "84572", + "8468", + "84823", + "857", + "861", + "867", + "8742", + "8838", + "8974", + "90268", + "9031", + "9049", + "9051", + "91461", + "91662", + "919", + "9275", + "930", + "931", + "9469", + "9569", + "9663", + "975", + "9927", + "9935" + ] + }, + "HP:0001909": { + "Name": "Leukemia", + "Task": "Monarch", + "Genes": [ + "10019", + "1029", + "10297", + "103", + "10312", + "10320", + "10456", + "1050", + "10535", + "11200", + "11224", + "11277", + "11280", + "128", + "132884", + "134218", + "134353", + "1387", + "161742", + "171023", + "1736", + "1788", + "1854", + "1991", + "200734", + "2033", + "2065", + "210", + "2120", + "2121", + "2162", + "2165", + "2175", + "2176", + "2177", + "2178", + "2189", + "219285", + "22800", + "22808", + "23092", + "2322", + "23451", + "23476", + "25", + "256646", + "25939", + "26040", + "2623", + "2624", + "26511", + "2672", + "2735", + "2782", + "29072", + "29089", + "324", + "3417", + "3717", + "3815", + "3832", + "3845", + "3981", + "412", + "4193", + "4210", + "4292", + "4352", + "4436", + "4683", + "472", + "4763", + "4869", + "4893", + "4926", + "51119", + "51428", + "5156", + "5159", + "51626", + "51816", + "5290", + "5295", + "54209", + "546", + "54790", + "54809", + "54888", + "55027", + "55505", + "5566", + "5567", + "5604", + "5781", + "581", + "5894", + "5914", + "5922", + "5925", + "6016", + "6125", + "613", + "6132", + "6133", + "6135", + "6138", + "6141", + "6154", + "6155", + "6160", + "6165", + "6201", + "6204", + "6208", + "6210", + "6218", + "6223", + "6224", + "6229", + "6231", + "6232", + "6234", + "6235", + "6237", + "6335", + "6336", + "641", + "64135", + "6427", + "64324", + "6455", + "64682", + "6609", + "6654", + "6655", + "6728", + "6729", + "673", + "675", + "6886", + "6887", + "6929", + "699", + "701", + "7015", + "7066", + "7157", + "7305", + "7454", + "7456", + "7518", + "79621", + "79631", + "79728", + "8021", + "8028", + "811", + "81570", + "8216", + "8294", + "8301", + "84153", + "861", + "867", + "8930", + "90121", + "9184", + "9319", + "9401", + "9487", + "9702" + ] + }, + "HP:0000337": { + "Name": "Broad forehead", + "Task": "Monarch", + "Genes": [ + "1000", + "1009", + "10370", + "10516", + "10522", + "10683", + "10743", + "11128", + "11285", + "113189", + "123606", + "128869", + "134701", + "135886", + "137814", + "140628", + "145873", + "147372", + "1482", + "150468", + "1523", + "155368", + "155382", + "1788", + "182", + "200424", + "201163", + "2146", + "2200", + "2239", + "2245", + "2261", + "2263", + "23096", + "23118", + "23126", + "2314", + "2316", + "2324", + "23261", + "23314", + "23363", + "23389", + "23414", + "23512", + "23556", + "25", + "2530", + "253738", + "259232", + "25942", + "25970", + "26040", + "26137", + "26229", + "2626", + "2627", + "2657", + "26608", + "2702", + "2719", + "283450", + "284058", + "284361", + "285175", + "285590", + "28952", + "2969", + "29957", + "3039", + "3040", + "3211", + "3265", + "3417", + "3476", + "3720", + "374654", + "3756", + "3759", + "3762", + "3791", + "3845", + "388015", + "3955", + "3984", + "4036", + "4041", + "4087", + "4125", + "4208", + "4677", + "4763", + "4774", + "4784", + "4853", + "4893", + "4953", + "5058", + "51085", + "51132", + "51256", + "51322", + "51412", + "51611", + "51729", + "5290", + "5426", + "54903", + "5515", + "5557", + "55603", + "5567", + "55777", + "5604", + "57187", + "5723", + "5728", + "57459", + "5781", + "5831", + "5832", + "5982", + "6091", + "6263", + "63932", + "64135", + "64324", + "649", + "6492", + "6499", + "650", + "653361", + "6535", + "6711", + "673", + "6792", + "6804", + "6899", + "6901", + "6938", + "7021", + "72", + "7283", + "7291", + "7458", + "7461", + "7528", + "7545", + "7546", + "7703", + "7862", + "78989", + "79005", + "79228", + "79633", + "79867", + "80036", + "8036", + "81614", + "8260", + "83550", + "83987", + "84163", + "84168", + "84277", + "84282", + "84667", + "8468", + "8493", + "8504", + "8567", + "8573", + "860", + "867", + "8726", + "8788", + "9031", + "90459", + "9049", + "91039", + "91875", + "92002", + "9275", + "9338", + "93627", + "9401", + "9469", + "9508", + "9569", + "9578", + "9652", + "9791", + "9897", + "9939", + "9949" + ] + }, + "HP:0100242": { + "Name": "Sarcoma", + "Task": "Monarch", + "Genes": [ + "100144748", + "10125", + "1026", + "1027", + "1029", + "1030", + "1031", + "10395", + "10483", + "11200", + "11224", + "118429", + "1277", + "1287", + "1288", + "1499", + "161742", + "1630", + "1718", + "201163", + "2033", + "2050", + "205717", + "207", + "2130", + "2131", + "2132", + "2261", + "2271", + "22909", + "2303", + "2308", + "2316", + "2324", + "23405", + "23461", + "23476", + "256646", + "25788", + "2623", + "26585", + "27030", + "2778", + "285", + "2956", + "324", + "3265", + "3417", + "3418", + "3458", + "355", + "356", + "3572", + "3756", + "3778", + "3782", + "3815", + "3845", + "3872", + "4000", + "4035", + "4072", + "4157", + "4163", + "4193", + "4292", + "4436", + "4507", + "4595", + "4683", + "4763", + "4771", + "4854", + "4893", + "5002", + "5077", + "5081", + "50940", + "5155", + "5156", + "5157", + "5159", + "51684", + "51816", + "526", + "5290", + "5320", + "5333", + "5378", + "5395", + "54757", + "55027", + "5573", + "5580", + "5604", + "5618", + "56975", + "57165", + "5727", + "5728", + "5745", + "5781", + "5782", + "5795", + "581", + "5894", + "5925", + "595", + "5978", + "6125", + "6132", + "6133", + "6135", + "6138", + "6141", + "6154", + "6155", + "6160", + "6165", + "6201", + "6204", + "6210", + "6218", + "6223", + "6224", + "6229", + "6231", + "6232", + "6234", + "6235", + "6389", + "6390", + "6391", + "63916", + "6392", + "64682", + "657", + "658", + "6598", + "6605", + "6608", + "6654", + "6711", + "6714", + "673", + "6757", + "6790", + "699", + "701", + "7015", + "7048", + "7097", + "7157", + "7248", + "7249", + "7486", + "7490", + "79058", + "79577", + "8013", + "8148", + "8200", + "8313", + "8314", + "8379", + "84231", + "843", + "8643", + "8878", + "89970", + "90121", + "9184", + "9319", + "9401", + "9702", + "9780", + "9817" + ] + }, + "HP:0003326": { + "Name": "Myalgia", + "Task": "Monarch", + "Genes": [ + "10049", + "10059", + "10126", + "10585", + "10616", + "11107", + "11128", + "11149", + "11232", + "112812", + "114548", + "1180", + "1188", + "1230", + "124093", + "125170", + "1312", + "1340", + "1376", + "1380", + "149233", + "1493", + "1499", + "1630", + "171023", + "1716", + "1756", + "1763", + "1776", + "1785", + "2027", + "2038", + "203859", + "2131", + "2132", + "221037", + "2218", + "226", + "22954", + "23175", + "2318", + "2332", + "246243", + "26191", + "270", + "2710", + "2717", + "272", + "274", + "2812", + "284119", + "284439", + "286", + "28976", + "291", + "29940", + "29967", + "3030", + "3032", + "3106", + "3113", + "3115", + "3123", + "3178", + "324", + "3339", + "337867", + "339855", + "34", + "3459", + "355", + "3559", + "3560", + "3586", + "3592", + "3593", + "3662", + "37", + "3815", + "3930", + "4000", + "4001", + "400916", + "4194", + "421", + "4210", + "4547", + "4598", + "4618", + "4625", + "487", + "4976", + "50484", + "51116", + "5156", + "51752", + "51816", + "5213", + "5224", + "5230", + "5255", + "5256", + "5257", + "5261", + "54", + "5428", + "5468", + "54790", + "55034", + "55154", + "55863", + "5657", + "56652", + "57104", + "5771", + "5837", + "58484", + "5888", + "60684", + "6239", + "6261", + "6329", + "6335", + "6389", + "64127", + "6427", + "64419", + "64856", + "6521", + "6559", + "6708", + "6710", + "6775", + "6786", + "6840", + "6899", + "6945", + "7084", + "7099", + "7132", + "7148", + "720", + "7290", + "729920", + "7353", + "7415", + "7555", + "7840", + "79147", + "79628", + "79722", + "825", + "8291", + "8302", + "84033", + "844", + "84627", + "84842", + "84876", + "859", + "8659", + "8974", + "90268", + "90523", + "91662", + "919", + "9423", + "9499", + "9632", + "9663", + "9692", + "9782" + ] + }, + "HP:0011772": { + "Name": "Abnormal thyroid morphology", + "Task": "Monarch", + "Genes": [ + "100", + "100134444", + "100144748", + "10043", + "10068", + "10125", + "1026", + "1027", + "1029", + "1030", + "1031", + "10483", + "10507", + "10512", + "11200", + "11232", + "1188", + "147372", + "1482", + "1493", + "182", + "1889", + "1908", + "1910", + "196528", + "201163", + "205717", + "2064", + "2065", + "207", + "2138", + "215", + "220296", + "223117", + "22861", + "22909", + "2299", + "2304", + "23328", + "23405", + "23522", + "2542", + "25981", + "26585", + "2668", + "27022", + "27030", + "2737", + "2778", + "2783", + "2859", + "291", + "2956", + "3026", + "3117", + "3119", + "324", + "3265", + "3417", + "3418", + "355", + "3559", + "356", + "3561", + "3572", + "3575", + "3766", + "3845", + "389434", + "3977", + "3981", + "4000", + "405753", + "4072", + "4193", + "4281", + "4292", + "4313", + "4323", + "4436", + "4437", + "4485", + "4595", + "472", + "4791", + "4893", + "4902", + "50484", + "50506", + "50814", + "50940", + "50943", + "51082", + "5172", + "51816", + "5290", + "5297", + "5336", + "5378", + "538", + "5395", + "5424", + "5426", + "5428", + "5449", + "54539", + "55213", + "55636", + "5573", + "5580", + "5626", + "56652", + "57217", + "5728", + "57492", + "57522", + "57623", + "5896", + "5977", + "5979", + "6224", + "6390", + "6391", + "6392", + "64072", + "64218", + "64421", + "6495", + "6528", + "6559", + "657", + "6597", + "6598", + "6601", + "6602", + "6605", + "6608", + "6659", + "6664", + "6720", + "675", + "6772", + "6777", + "6909", + "6925", + "6949", + "7038", + "7048", + "7068", + "7080", + "7157", + "716", + "7173", + "7201", + "7252", + "7253", + "7486", + "779", + "7840", + "7849", + "79577", + "79783", + "8022", + "8085", + "8289", + "83737", + "8379", + "84172", + "843", + "8471", + "8651", + "8820", + "89884", + "92949", + "9533", + "9562", + "9817", + "987" + ] + }, + "HP:0001442": { + "Name": "Typified by somatic mosaicism", + "Task": "Monarch", + "Genes": [ + "100", + "10019", + "10395", + "1050", + "11178", + "11200", + "11281", + "115908", + "1316", + "1326", + "1385", + "1499", + "1548", + "1630", + "171023", + "1788", + "1956", + "201163", + "2033", + "2064", + "207", + "2074", + "2099", + "2120", + "2130", + "2131", + "2239", + "2260", + "2261", + "2263", + "2308", + "23092", + "23095", + "2322", + "23405", + "23432", + "23451", + "2475", + "25", + "25788", + "2624", + "26511", + "27030", + "2719", + "2771", + "2778", + "2782", + "29071", + "2956", + "3161", + "324", + "3265", + "3417", + "3481", + "3482", + "3553", + "3557", + "356", + "3569", + "3572", + "3659", + "367", + "3717", + "3815", + "3845", + "387", + "3981", + "4089", + "4163", + "4233", + "4352", + "4437", + "4481", + "4595", + "4601", + "4609", + "463", + "4683", + "472", + "4763", + "4835", + "4869", + "4893", + "4926", + "4978", + "5002", + "5071", + "5077", + "5080", + "5081", + "51008", + "5156", + "5157", + "51604", + "51684", + "51741", + "5245", + "5277", + "5290", + "5320", + "5324", + "54790", + "5519", + "5546", + "5728", + "57522", + "5781", + "5782", + "5795", + "580", + "581", + "5888", + "5914", + "5925", + "595", + "6049", + "613", + "6208", + "6455", + "6598", + "6608", + "6714", + "672", + "673", + "675", + "6757", + "6790", + "6794", + "6886", + "6887", + "699", + "701", + "7015", + "7030", + "7048", + "7097", + "7157", + "7248", + "7249", + "7317", + "7355", + "7490", + "7517", + "79058", + "79577", + "79798", + "8013", + "8021", + "8028", + "811", + "8148", + "8301", + "8312", + "8313", + "8379", + "83990", + "841", + "843", + "8438", + "8493", + "8518", + "861", + "8643", + "867", + "8915", + "9049", + "91", + "91754", + "9562", + "9759", + "9821", + "999" + ] + }, + "HP:0031652": { + "Name": "Abnormal aortic valve physiology", + "Task": "Monarch", + "Genes": [ + "10021", + "10269", + "10516", + "10559", + "10564", + "10682", + "11285", + "113189", + "113246", + "1193", + "1230", + "1278", + "135886", + "137814", + "1387", + "139285", + "1399", + "140628", + "1482", + "149233", + "153642", + "155368", + "155382", + "160418", + "171019", + "1801", + "1802", + "200734", + "203286", + "2033", + "2200", + "2260", + "22800", + "22827", + "2294", + "2301", + "23118", + "23129", + "2313", + "2316", + "23327", + "23334", + "23493", + "23498", + "23586", + "23590", + "255738", + "26119", + "26128", + "2626", + "2629", + "26608", + "2702", + "2703", + "27031", + "2720", + "284086", + "28952", + "2969", + "30008", + "3081", + "3106", + "337867", + "338", + "3425", + "3459", + "355", + "3586", + "3592", + "3845", + "388753", + "3949", + "3984", + "4000", + "4015", + "4052", + "4053", + "4087", + "4088", + "4089", + "4091", + "4125", + "4131", + "4144", + "4210", + "442721", + "4629", + "4638", + "4851", + "4853", + "51085", + "51752", + "529", + "54538", + "54880", + "55027", + "55249", + "55780", + "5592", + "5594", + "56896", + "57020", + "57514", + "5828", + "5832", + "59", + "5982", + "60", + "613", + "6324", + "64135", + "64240", + "64241", + "6499", + "653361", + "6651", + "6711", + "6775", + "6804", + "6873", + "699", + "701", + "7026", + "7042", + "7043", + "7046", + "7048", + "7099", + "720", + "7276", + "728294", + "7291", + "7450", + "7458", + "7461", + "7490", + "7703", + "79158", + "79753", + "79813", + "79875", + "79989", + "8036", + "8076", + "81031", + "81794", + "8302", + "83475", + "84163", + "84231", + "84277", + "84572", + "8468", + "85440", + "867", + "9031", + "9184", + "92002", + "9275", + "9319", + "93233", + "9469", + "9569", + "9652", + "9702", + "9719", + "9839", + "9897" + ] + }, + "HP:0031481": { + "Name": "Abnormal mitral valve physiology", + "Task": "Monarch", + "Genes": [ + "10000", + "10112", + "10128", + "10216", + "10265", + "10269", + "10290", + "10370", + "10516", + "10651", + "10664", + "113189", + "1193", + "1230", + "126792", + "1277", + "1278", + "127833", + "1289", + "1290", + "1349", + "135886", + "1410", + "1482", + "149233", + "151648", + "155368", + "155382", + "175", + "1788", + "1837", + "2200", + "2201", + "2273", + "22873", + "2316", + "2318", + "23394", + "23498", + "23590", + "255738", + "26119", + "2626", + "2627", + "2629", + "26608", + "2697", + "2717", + "2720", + "2799", + "29123", + "2969", + "29940", + "3030", + "3032", + "3052", + "3074", + "3081", + "3106", + "337867", + "338", + "341208", + "3425", + "3459", + "355", + "3572", + "3586", + "3592", + "368", + "3949", + "3984", + "4000", + "4015", + "4053", + "4054", + "4088", + "4089", + "4091", + "411", + "4125", + "4210", + "442721", + "4624", + "4625", + "4633", + "4763", + "4851", + "4853", + "51085", + "51284", + "51752", + "5296", + "5310", + "5337", + "5428", + "54539", + "54800", + "5500", + "55033", + "55784", + "55901", + "5594", + "56652", + "56915", + "57057", + "57538", + "5828", + "5832", + "5894", + "5982", + "6016", + "6123", + "6125", + "6197", + "6392", + "63976", + "64131", + "64132", + "64240", + "64241", + "6497", + "65082", + "653361", + "6584", + "6660", + "6775", + "6804", + "6885", + "70", + "7043", + "7092", + "7099", + "7137", + "7139", + "7168", + "720", + "7319", + "7458", + "7461", + "7547", + "7707", + "79158", + "79576", + "79770", + "79912", + "80206", + "81794", + "8216", + "8302", + "83475", + "83550", + "84163", + "84188", + "84277", + "84665", + "8468", + "8642", + "867", + "8815", + "894", + "89970", + "9031", + "9049", + "92579", + "9275", + "9469", + "9531", + "9569", + "9719" + ] + }, + "HP:0010786": { + "Name": "Urinary tract neoplasm", + "Task": "Monarch", + "Genes": [ + "100144748", + "10155", + "1027", + "1028", + "1029", + "10395", + "10483", + "11200", + "11236", + "11281", + "126792", + "129563", + "1499", + "161742", + "1630", + "168667", + "171023", + "1743", + "190", + "201163", + "2033", + "205717", + "207", + "2132", + "2239", + "2261", + "2271", + "22909", + "2304", + "23095", + "23405", + "23414", + "2516", + "25788", + "26040", + "2626", + "27030", + "2719", + "2778", + "2956", + "3026", + "324", + "3265", + "3458", + "3481", + "3784", + "3845", + "4000", + "4072", + "4149", + "4163", + "4191", + "4193", + "4214", + "4233", + "4292", + "4436", + "4591", + "4595", + "4598", + "472", + "4763", + "4893", + "4913", + "4968", + "5080", + "51317", + "5157", + "51741", + "5290", + "5320", + "5378", + "538", + "5395", + "5424", + "5426", + "54894", + "54949", + "55193", + "5546", + "55612", + "55654", + "5727", + "5728", + "57647", + "5782", + "5795", + "581", + "58524", + "5925", + "595", + "5978", + "5979", + "60529", + "6224", + "6389", + "6390", + "6391", + "6392", + "641", + "64127", + "64218", + "657", + "6597", + "6662", + "6714", + "673", + "6736", + "675", + "6790", + "6794", + "6845", + "6927", + "6928", + "699", + "701", + "7030", + "7048", + "7097", + "7157", + "716", + "7248", + "7249", + "7373", + "7428", + "7486", + "7490", + "79577", + "79719", + "79728", + "79798", + "8313", + "8314", + "8402", + "9158", + "9184", + "9319", + "9562", + "9702", + "9759", + "9817" + ] + }, + "HP:0001653": { + "Name": "Mitral regurgitation", + "Task": "Monarch", + "Genes": [ + "10000", + "10112", + "10128", + "10216", + "10265", + "10269", + "10290", + "10370", + "10516", + "10651", + "10664", + "113189", + "1193", + "1230", + "126792", + "1277", + "1278", + "1289", + "1290", + "1349", + "135886", + "1410", + "1482", + "149233", + "151648", + "155368", + "155382", + "175", + "1788", + "1837", + "2200", + "2201", + "2273", + "22873", + "2316", + "2318", + "23394", + "23590", + "255738", + "26119", + "2626", + "2627", + "2629", + "26608", + "2717", + "2720", + "2799", + "29123", + "2969", + "29940", + "3030", + "3032", + "3052", + "3074", + "3081", + "3106", + "337867", + "338", + "341208", + "3425", + "3459", + "355", + "3572", + "3586", + "3592", + "368", + "3949", + "3984", + "4000", + "4015", + "4053", + "4054", + "4088", + "4089", + "4091", + "411", + "4125", + "4210", + "442721", + "4624", + "4625", + "4633", + "4763", + "51085", + "51284", + "51752", + "5296", + "5310", + "5337", + "5428", + "54539", + "54800", + "5500", + "55033", + "55901", + "5594", + "56652", + "56915", + "57057", + "57538", + "5828", + "5832", + "5894", + "5982", + "6016", + "6123", + "6125", + "6197", + "6392", + "63976", + "64240", + "64241", + "6497", + "65082", + "653361", + "6584", + "6660", + "6775", + "6804", + "6885", + "70", + "7043", + "7092", + "7099", + "7137", + "7139", + "7168", + "720", + "7458", + "7461", + "79158", + "79576", + "79770", + "79912", + "81794", + "8216", + "8302", + "83475", + "83550", + "84163", + "84188", + "84277", + "84665", + "8468", + "8642", + "867", + "8815", + "894", + "89970", + "9031", + "9049", + "92579", + "9275", + "9469", + "9531", + "9569" + ] + }, + "HP:0001581": { + "Name": "Recurrent skin infections", + "Task": "Monarch", + "Genes": [ + "100", + "10043", + "10312", + "10519", + "10525", + "1075", + "10758", + "10804", + "11005", + "11128", + "11151", + "112744", + "1130", + "113189", + "11322", + "1294", + "146206", + "147138", + "1535", + "1536", + "1794", + "1828", + "1956", + "1991", + "2050", + "2303", + "23765", + "2623", + "26258", + "2672", + "2706", + "2908", + "29760", + "29940", + "326", + "331", + "3426", + "3431", + "3543", + "3551", + "3559", + "3561", + "3570", + "3572", + "3574", + "3575", + "3587", + "3655", + "3689", + "3691", + "3718", + "3848", + "3852", + "3861", + "3909", + "3914", + "3918", + "3937", + "4153", + "4261", + "4312", + "4598", + "4688", + "4780", + "4790", + "4792", + "50943", + "51311", + "51360", + "5238", + "5293", + "5294", + "5295", + "5317", + "54440", + "546", + "55612", + "55851", + "56262", + "5663", + "57165", + "57591", + "57724", + "59335", + "5993", + "5994", + "6097", + "64072", + "64170", + "64421", + "64581", + "653361", + "6688", + "6720", + "6728", + "6729", + "673", + "6772", + "6774", + "6778", + "6789", + "6850", + "6868", + "6929", + "695", + "7037", + "7157", + "7319", + "7389", + "7390", + "7535", + "7922", + "81570", + "81704", + "83706", + "84196", + "84818", + "84905", + "8517", + "85358", + "8546", + "8625", + "8883", + "90268", + "90417", + "9101", + "915", + "916", + "917", + "919", + "959", + "973", + "974", + "9837", + "9948" + ] + }, + "HP:0000326": { + "Name": "Abnormal maxilla morphology", + "Task": "Monarch", + "Genes": [ + "10084", + "1009", + "10262", + "10484", + "10617", + "10844", + "10847", + "10992", + "1173", + "117581", + "1280", + "1289", + "1301", + "1387", + "145173", + "1513", + "157570", + "157680", + "1736", + "1739", + "1748", + "1896", + "1909", + "2033", + "207", + "2077", + "2200", + "2239", + "2245", + "2248", + "2260", + "2261", + "2263", + "2273", + "22837", + "22856", + "2296", + "23102", + "2317", + "23594", + "25", + "257", + "25782", + "25885", + "25942", + "26128", + "26137", + "26277", + "2697", + "27107", + "2736", + "29072", + "29920", + "29957", + "30008", + "3043", + "3265", + "3590", + "3664", + "3759", + "3762", + "388015", + "3930", + "4054", + "4089", + "415", + "4313", + "4487", + "4750", + "4784", + "4869", + "4893", + "4998", + "5000", + "5073", + "5077", + "51053", + "51082", + "51114", + "5144", + "5156", + "5159", + "51715", + "51750", + "529", + "5290", + "5308", + "54101", + "54499", + "54848", + "55084", + "55135", + "55505", + "55621", + "55651", + "5566", + "5573", + "5727", + "5728", + "57589", + "57822", + "5818", + "5824", + "5965", + "6197", + "633", + "64093", + "64135", + "6496", + "6497", + "650", + "65109", + "652", + "6638", + "6651", + "6660", + "6949", + "7015", + "7291", + "7298", + "7314", + "7337", + "78989", + "79633", + "79650", + "79759", + "80169", + "80232", + "8092", + "81620", + "81794", + "8242", + "8318", + "84172", + "860", + "8626", + "8642", + "865", + "8788", + "91179", + "92344", + "9343", + "93986", + "9411", + "9533", + "990", + "9935", + "9968", + "999", + "9990" + ] + }, + "HP:0009726": { + "Name": "Renal neoplasm", + "Task": "Monarch", + "Genes": [ + "100144748", + "10155", + "1027", + "1028", + "1029", + "10395", + "10483", + "11200", + "11236", + "11281", + "126792", + "129563", + "1499", + "161742", + "1630", + "168667", + "171023", + "1743", + "190", + "201163", + "2033", + "205717", + "207", + "2132", + "2239", + "2261", + "2271", + "22909", + "2304", + "23095", + "23405", + "23414", + "2516", + "25788", + "26040", + "2626", + "27030", + "2719", + "2778", + "2956", + "3026", + "324", + "3265", + "3458", + "3481", + "3784", + "3845", + "4000", + "4072", + "4149", + "4163", + "4191", + "4193", + "4214", + "4233", + "4292", + "4436", + "4591", + "4595", + "4598", + "472", + "4763", + "4893", + "4968", + "5080", + "51317", + "5157", + "51741", + "5290", + "5320", + "5378", + "5395", + "5424", + "5426", + "54949", + "55193", + "5546", + "55654", + "5727", + "5728", + "57647", + "5782", + "5795", + "581", + "58524", + "595", + "5978", + "5979", + "60529", + "6224", + "6389", + "6390", + "6391", + "6392", + "641", + "64127", + "64218", + "657", + "6597", + "6662", + "6714", + "673", + "6736", + "675", + "6790", + "6794", + "6845", + "6927", + "6928", + "699", + "701", + "7030", + "7048", + "7097", + "7157", + "716", + "7248", + "7249", + "7373", + "7428", + "7486", + "7490", + "79577", + "79719", + "79728", + "79798", + "8313", + "8314", + "8402", + "9158", + "9184", + "9319", + "9562", + "9702", + "9759", + "9817" + ] + }, + "HP:0000089": { + "Name": "Renal hypoplasia", + "Task": "Monarch", + "Genes": [ + "10084", + "10463", + "1063", + "10907", + "11020", + "1161", + "1312", + "135886", + "145173", + "153241", + "155368", + "155382", + "1717", + "182", + "1822", + "2074", + "2188", + "221037", + "2255", + "2261", + "2263", + "22827", + "23291", + "23498", + "23524", + "23592", + "25778", + "25836", + "26005", + "26608", + "27152", + "2737", + "2812", + "284252", + "2969", + "3265", + "3313", + "341640", + "374879", + "3759", + "3762", + "3899", + "3984", + "4038", + "4174", + "4193", + "421", + "4654", + "4774", + "4838", + "4853", + "498", + "50628", + "5076", + "5087", + "51085", + "513", + "51339", + "51360", + "514", + "5147", + "51473", + "5290", + "5361", + "54496", + "54567", + "546", + "54880", + "54892", + "55005", + "55112", + "55120", + "55159", + "55165", + "55215", + "5557", + "55636", + "57167", + "57492", + "57539", + "57560", + "57728", + "5885", + "5915", + "5972", + "5982", + "6092", + "6223", + "6239", + "6299", + "63895", + "64220", + "64756", + "6499", + "652", + "653361", + "6804", + "6899", + "6926", + "6928", + "7290", + "7353", + "7458", + "7461", + "7468", + "7477", + "7518", + "79633", + "79659", + "80144", + "8091", + "8204", + "8260", + "8295", + "8364", + "8367", + "84100", + "84163", + "84277", + "8468", + "84833", + "84919", + "84987", + "8642", + "8882", + "8942", + "89891", + "9031", + "9096", + "91147", + "91647", + "9275", + "9569", + "9632", + "9652", + "9928" + ] + }, + "HP:0001699": { + "Name": "Sudden death", + "Task": "Monarch", + "Genes": [ + "10021", + "10142", + "10320", + "10345", + "10815", + "11155", + "131118", + "135886", + "1374", + "144245", + "155368", + "155382", + "1674", + "1804", + "1824", + "1829", + "1832", + "1837", + "2010", + "207", + "2070", + "221496", + "2273", + "23118", + "23171", + "2318", + "23224", + "23345", + "23529", + "253017", + "255738", + "26119", + "26154", + "26191", + "26608", + "27068", + "2771", + "2783", + "282996", + "287", + "28976", + "2969", + "3030", + "3106", + "3123", + "3265", + "338", + "368", + "37", + "3728", + "3753", + "3757", + "3759", + "3762", + "3784", + "3949", + "3984", + "4000", + "4040", + "4088", + "4607", + "4624", + "4625", + "4633", + "4634", + "4638", + "50964", + "51085", + "51422", + "5167", + "51778", + "5236", + "5318", + "54800", + "55148", + "55164", + "55750", + "5728", + "57465", + "5982", + "60558", + "6262", + "6323", + "6330", + "6331", + "6334", + "6336", + "64240", + "64241", + "6444", + "6508", + "653361", + "6640", + "6804", + "6910", + "7043", + "7134", + "7137", + "7139", + "7168", + "7259", + "7273", + "7454", + "7456", + "7458", + "7461", + "775", + "781", + "79188", + "80206", + "8048", + "808", + "84163", + "84277", + "845", + "8468", + "85366", + "859", + "8974", + "9031", + "9244", + "9275", + "9569", + "9631", + "9722", + "9896", + "9992" + ] + }, + "HP:0200036": { + "Name": "Skin nodule", + "Task": "Monarch", + "Genes": [ + "100144748", + "1019", + "10483", + "10804", + "10842", + "11146", + "114803", + "118429", + "1230", + "1277", + "1281", + "1289", + "1290", + "1294", + "149233", + "1499", + "1540", + "1593", + "161742", + "1649", + "1893", + "19", + "2053", + "205717", + "207", + "2200", + "2260", + "2263", + "23095", + "23534", + "23592", + "238", + "2521", + "2538", + "2542", + "255738", + "2690", + "2706", + "2717", + "2744", + "2778", + "3106", + "3123", + "324", + "335", + "336", + "337867", + "338", + "3417", + "3418", + "3458", + "3459", + "348", + "355", + "3586", + "3592", + "3593", + "3594", + "3643", + "3663", + "368", + "3815", + "3832", + "3845", + "389421", + "3949", + "4004", + "4023", + "4047", + "4157", + "4193", + "4210", + "427", + "4313", + "4323", + "4613", + "4668", + "4854", + "488", + "4893", + "4952", + "4982", + "50940", + "51339", + "51371", + "5155", + "5159", + "5167", + "51752", + "5290", + "5450", + "55699", + "5573", + "56244", + "567", + "5728", + "5745", + "57531", + "5781", + "5894", + "596", + "604", + "6299", + "6390", + "6391", + "6392", + "64241", + "64840", + "6689", + "673", + "6775", + "6945", + "7010", + "7099", + "7153", + "720", + "7248", + "7249", + "7274", + "79258", + "8091", + "8302", + "83706", + "84946", + "8792", + "8929", + "90", + "9966" + ] + }, + "HP:0000307": { + "Name": "Pointed chin", + "Task": "Monarch", + "Genes": [ + "1000", + "10015", + "10059", + "1009", + "10277", + "10630", + "10733", + "11011", + "1105", + "11128", + "11253", + "1146", + "116115", + "116931", + "1183", + "118924", + "1280", + "128869", + "135886", + "1399", + "155368", + "155382", + "1795", + "200734", + "222663", + "2248", + "22808", + "23013", + "23036", + "23126", + "2316", + "23184", + "23261", + "2335", + "23363", + "23431", + "25", + "2542", + "2563", + "25886", + "25942", + "26040", + "26128", + "26608", + "2702", + "2703", + "27229", + "283209", + "283489", + "29072", + "29123", + "2969", + "29998", + "3265", + "3339", + "3643", + "3720", + "3832", + "3984", + "4001", + "4212", + "4621", + "473", + "4784", + "4853", + "51085", + "51256", + "5159", + "51780", + "523", + "529", + "54517", + "5457", + "54897", + "55593", + "55768", + "5590", + "5593", + "5594", + "57231", + "57647", + "57680", + "5898", + "5982", + "60", + "613", + "63976", + "6418", + "64324", + "64840", + "6497", + "653361", + "6711", + "6804", + "6872", + "6885", + "6901", + "7025", + "71", + "7358", + "7458", + "7461", + "7528", + "7707", + "7798", + "79228", + "7994", + "83987", + "8405", + "84163", + "84277", + "8468", + "8510", + "8514", + "85358", + "85378", + "8558", + "8567", + "865", + "8985", + "9031", + "90459", + "91875", + "9275", + "9320", + "9488", + "9569", + "9653", + "9772", + "9839" + ] + }, + "HP:0000179": { + "Name": "Thick lower lip vermilion", + "Task": "Monarch", + "Genes": [ + "10060", + "10075", + "1009", + "10430", + "10522", + "10524", + "1106", + "1173", + "1301", + "135886", + "139285", + "155368", + "155382", + "175", + "1893", + "196528", + "200734", + "2200", + "22800", + "22808", + "23067", + "23137", + "2316", + "23221", + "23261", + "23394", + "24140", + "2517", + "253738", + "25942", + "26137", + "26227", + "26608", + "2702", + "2703", + "27077", + "2717", + "27316", + "2736", + "2770", + "2799", + "2969", + "3265", + "340533", + "3423", + "3643", + "3782", + "3832", + "3845", + "3899", + "3984", + "4052", + "4054", + "4668", + "4758", + "4893", + "51085", + "526", + "54187", + "54517", + "5457", + "546", + "5500", + "55331", + "55617", + "55691", + "56006", + "5696", + "56992", + "5745", + "57465", + "57492", + "57520", + "5781", + "58508", + "5894", + "5922", + "5977", + "5979", + "5982", + "6016", + "6197", + "6228", + "6237", + "6323", + "6513", + "6529", + "653361", + "6595", + "6597", + "6598", + "6601", + "6602", + "6605", + "6611", + "6654", + "6655", + "6659", + "6664", + "6792", + "6804", + "7358", + "7458", + "7461", + "7528", + "760", + "79639", + "79813", + "8036", + "81620", + "8216", + "8289", + "83550", + "84163", + "84168", + "84277", + "84282", + "8450", + "8468", + "867", + "8831", + "9031", + "9049", + "92335", + "9275", + "9487", + "9569", + "9759", + "9839", + "9968" + ] + }, + "HP:0030448": { + "Name": "Soft tissue sarcoma", + "Task": "Monarch", + "Genes": [ + "100144748", + "10125", + "1026", + "1027", + "1029", + "1030", + "1031", + "10395", + "10483", + "11200", + "118429", + "1277", + "1287", + "1288", + "1499", + "161742", + "1630", + "1718", + "201163", + "2033", + "2050", + "205717", + "207", + "2261", + "2271", + "22909", + "2303", + "2308", + "2316", + "2324", + "23405", + "23461", + "25788", + "26585", + "27030", + "285", + "2956", + "324", + "3265", + "3458", + "355", + "356", + "3572", + "3756", + "3778", + "3782", + "3815", + "3845", + "3872", + "4035", + "4072", + "4157", + "4163", + "4193", + "4292", + "4436", + "4507", + "4595", + "4683", + "4763", + "4771", + "4854", + "4893", + "5002", + "5077", + "5081", + "50940", + "5155", + "5157", + "5159", + "51684", + "526", + "5290", + "5320", + "5333", + "5378", + "5395", + "54757", + "5573", + "5580", + "5604", + "5618", + "56975", + "57165", + "5727", + "5728", + "5781", + "5782", + "5795", + "581", + "5894", + "595", + "5978", + "6390", + "6391", + "63916", + "6392", + "657", + "6598", + "6605", + "6608", + "6654", + "6711", + "6714", + "673", + "6757", + "6790", + "699", + "701", + "7015", + "7048", + "7097", + "7157", + "7248", + "7249", + "79058", + "79577", + "8313", + "8314", + "8379", + "84231", + "843", + "8643", + "89970", + "9184", + "9319", + "9702", + "9780", + "9817" + ] + }, + "HP:0001531": { + "Name": "Failure to thrive in infancy", + "Task": "Monarch", + "Genes": [ + "10043", + "10165", + "10225", + "10463", + "10512", + "10522", + "10743", + "115650", + "135886", + "1380", + "1439", + "1497", + "155368", + "155382", + "157680", + "1889", + "1908", + "1910", + "2064", + "2065", + "2067", + "215", + "2186", + "2222", + "223117", + "2260", + "23096", + "2314", + "23495", + "23742", + "25839", + "26007", + "26040", + "26608", + "2668", + "285175", + "29072", + "2969", + "29851", + "29968", + "3030", + "3032", + "3043", + "3265", + "3431", + "3557", + "3559", + "359948", + "368", + "3718", + "3845", + "3984", + "4056", + "4598", + "4654", + "4697", + "4790", + "4791", + "4902", + "50943", + "51085", + "5167", + "538", + "5422", + "54551", + "5580", + "5604", + "5605", + "56160", + "56922", + "5699", + "56992", + "5718", + "5781", + "5836", + "5880", + "5979", + "5982", + "6337", + "6338", + "6340", + "64087", + "64116", + "653361", + "6567", + "6608", + "6651", + "6720", + "673", + "6804", + "7043", + "7084", + "7355", + "7458", + "7461", + "7681", + "833", + "83480", + "83737", + "8405", + "84163", + "84277", + "8468", + "84842", + "8565", + "8742", + "8924", + "90268", + "9031", + "9275", + "9276", + "930", + "931", + "9377", + "9382", + "9401", + "9569", + "975", + "9896" + ] + }, + "HP:0100806": { + "Name": "Sepsis", + "Task": "Monarch", + "Genes": [ + "100", + "10320", + "10512", + "10525", + "10664", + "10804", + "11005", + "11277", + "11342", + "121214", + "126410", + "130340", + "130589", + "134218", + "1351", + "1493", + "1499", + "151516", + "1535", + "1536", + "1889", + "1908", + "1910", + "1991", + "204", + "2064", + "2065", + "21", + "215", + "223117", + "242", + "25802", + "25839", + "2592", + "26154", + "26525", + "2668", + "2706", + "29760", + "3106", + "3110", + "3162", + "324", + "3417", + "348938", + "3543", + "3561", + "3575", + "3852", + "3861", + "3909", + "3914", + "3918", + "3981", + "4594", + "4629", + "4638", + "4688", + "4689", + "4791", + "4902", + "50619", + "50943", + "51119", + "5238", + "5295", + "5317", + "538", + "54440", + "54809", + "54914", + "55636", + "56052", + "56262", + "57591", + "5824", + "5880", + "5896", + "59344", + "5979", + "643418", + "6440", + "64421", + "65082", + "653361", + "6603", + "6608", + "6688", + "6720", + "6729", + "6786", + "6789", + "6820", + "6929", + "695", + "7037", + "7051", + "72", + "7454", + "7456", + "7852", + "79087", + "7922", + "79415", + "79631", + "81704", + "83706", + "84947", + "8565", + "92579", + "939", + "959", + "973", + "974", + "987" + ] + }, + "HP:0032158": { + "Name": "Unusual infection by anatomical site", + "Task": "Monarch", + "Genes": [ + "10043", + "10095", + "10525", + "114548", + "115650", + "1230", + "1380", + "146206", + "148022", + "149233", + "1493", + "1535", + "1536", + "1776", + "201294", + "2022", + "2261", + "23495", + "26191", + "29110", + "29760", + "29851", + "3071", + "3106", + "3113", + "3115", + "3123", + "331", + "337867", + "340024", + "3426", + "3459", + "3543", + "355", + "3561", + "3574", + "3586", + "3592", + "3661", + "3662", + "3718", + "3930", + "4068", + "4210", + "4261", + "4598", + "4688", + "4689", + "50943", + "51135", + "51163", + "51752", + "5238", + "5295", + "546", + "54820", + "54968", + "55343", + "5551", + "56262", + "5657", + "57393", + "57591", + "58484", + "5896", + "596", + "5993", + "5994", + "604", + "629", + "64170", + "653361", + "6688", + "6772", + "6775", + "6789", + "6813", + "6929", + "695", + "7037", + "7098", + "7099", + "714", + "7187", + "720", + "721", + "731", + "732", + "7454", + "7456", + "7852", + "7922", + "79415", + "79944", + "81622", + "81704", + "81839", + "8302", + "84433", + "8517", + "8625", + "8676", + "8915", + "8974", + "930", + "939", + "94", + "959", + "973", + "974" + ] + }, + "HP:0100834": { + "Name": "Neoplasm of the large intestine", + "Task": "Monarch", + "Genes": [ + "100144748", + "1029", + "10395", + "10483", + "10507", + "11200", + "11224", + "1499", + "1630", + "201163", + "2022", + "2033", + "205717", + "207", + "2261", + "22909", + "23022", + "2304", + "23405", + "25788", + "2623", + "26585", + "27030", + "285282", + "2859", + "2956", + "3026", + "324", + "3815", + "3845", + "4072", + "4089", + "4092", + "4163", + "4193", + "4292", + "4436", + "4437", + "4485", + "4595", + "472", + "4893", + "4913", + "50940", + "5156", + "5157", + "51816", + "5290", + "5320", + "5378", + "5395", + "5424", + "5426", + "54894", + "55027", + "5573", + "5728", + "5782", + "5795", + "581", + "595", + "6125", + "6132", + "6133", + "6135", + "6138", + "6141", + "6154", + "6155", + "6160", + "6165", + "6201", + "6204", + "6210", + "6218", + "6223", + "6224", + "6229", + "6231", + "6232", + "6234", + "6235", + "6389", + "6390", + "6391", + "6392", + "641", + "64218", + "657", + "6714", + "672", + "673", + "675", + "6790", + "6794", + "6925", + "699", + "701", + "7048", + "7097", + "7157", + "716", + "7373", + "79719", + "79728", + "81704", + "8313", + "8379", + "8930", + "90121", + "9184", + "9319", + "9562", + "9702", + "9817" + ] + }, + "HP:0002308": { + "Name": "Chiari malformation", + "Task": "Monarch", + "Genes": [ + "10274", + "10283", + "10992", + "1108", + "11128", + "135886", + "1387", + "1436", + "148867", + "1513", + "155368", + "155382", + "161742", + "1717", + "1788", + "2033", + "2077", + "2200", + "2260", + "2261", + "2263", + "22800", + "2294", + "22943", + "2316", + "23387", + "23516", + "23592", + "25970", + "26040", + "26608", + "2776", + "284058", + "29072", + "2969", + "29998", + "3020", + "3265", + "3590", + "3845", + "3984", + "4094", + "4125", + "4659", + "4774", + "4791", + "4796", + "4841", + "4853", + "4854", + "4858", + "5076", + "51085", + "51339", + "51360", + "5251", + "5290", + "5447", + "54903", + "5500", + "55159", + "55215", + "55703", + "5727", + "5745", + "57551", + "5888", + "5977", + "5982", + "6299", + "6309", + "63895", + "64840", + "6497", + "653361", + "6595", + "6608", + "6651", + "6804", + "6885", + "7046", + "7048", + "7458", + "7461", + "79718", + "79947", + "80036", + "80199", + "8091", + "81839", + "8318", + "84163", + "84277", + "84667", + "8468", + "8799", + "9031", + "9275", + "9401", + "9569", + "9772", + "9839" + ] + }, + "HP:0011495": { + "Name": "Abnormal corneal epithelium morphology", + "Task": "Monarch", + "Genes": [ + "10269", + "10320", + "105371045", + "10653", + "10804", + "11107", + "114548", + "1161", + "117581", + "121214", + "1230", + "1286", + "1287", + "1288", + "1294", + "1308", + "136647", + "149233", + "1497", + "16", + "1634", + "1643", + "165", + "204219", + "2068", + "2071", + "2072", + "2073", + "2074", + "2200", + "224", + "2255", + "2261", + "2263", + "22861", + "2303", + "242", + "26128", + "26154", + "2623", + "2706", + "285848", + "2934", + "2961", + "3106", + "3123", + "3141", + "326", + "337867", + "3459", + "348938", + "355", + "3572", + "3586", + "3592", + "3850", + "3930", + "4000", + "404672", + "4072", + "4081", + "4166", + "4210", + "4312", + "4358", + "4547", + "4914", + "5080", + "51360", + "51752", + "5336", + "5339", + "54101", + "5429", + "54941", + "55343", + "55612", + "55630", + "55699", + "55768", + "56244", + "59335", + "59344", + "5965", + "6335", + "64127", + "6720", + "6775", + "6820", + "6897", + "6898", + "7045", + "7051", + "7099", + "720", + "7389", + "7390", + "7454", + "7456", + "7490", + "7507", + "7508", + "7737", + "8218", + "8302", + "833", + "84627", + "8517", + "8518", + "8626", + "9244" + ] + }, + "HP:0010702": { + "Name": "Increased circulating antibody level", + "Task": "Monarch", + "Genes": [ + "100", + "10125", + "1041", + "10507", + "10526", + "11005", + "11311", + "121391", + "1277", + "1294", + "1789", + "1828", + "1956", + "1991", + "200942", + "213", + "2137", + "2239", + "22861", + "23064", + "23534", + "2629", + "2719", + "2859", + "29775", + "3071", + "3123", + "331", + "340061", + "3459", + "355", + "3559", + "356", + "3560", + "3561", + "3570", + "3572", + "3575", + "3592", + "3594", + "3663", + "3845", + "3857", + "3981", + "404672", + "4068", + "4485", + "4598", + "4792", + "4893", + "50943", + "51135", + "51371", + "5184", + "5238", + "5293", + "5295", + "5450", + "5580", + "56160", + "5692", + "5696", + "5698", + "5728", + "57379", + "59067", + "595", + "64135", + "64170", + "6440", + "64421", + "65082", + "6689", + "6774", + "6777", + "6778", + "6786", + "6868", + "6925", + "7015", + "7040", + "7174", + "727897", + "729238", + "7297", + "7374", + "7454", + "79258", + "81704", + "843", + "84433", + "84888", + "84905", + "8517", + "90268", + "9051", + "9056", + "915", + "916", + "919", + "950", + "958", + "959", + "9966" + ] + }, + "HP:0001658": { + "Name": "Myocardial infarction", + "Task": "Monarch", + "Genes": [ + "10019", + "10060", + "10269", + "10320", + "1080", + "11093", + "1230", + "135886", + "137814", + "140628", + "1482", + "149233", + "1499", + "155368", + "155382", + "1593", + "19", + "2057", + "255738", + "26119", + "2626", + "2627", + "26608", + "2702", + "2717", + "2908", + "2969", + "3081", + "3106", + "337867", + "338", + "3459", + "355", + "3586", + "3592", + "3593", + "3662", + "368", + "3717", + "3741", + "3753", + "3759", + "3760", + "3762", + "3784", + "3949", + "3984", + "4000", + "4023", + "4040", + "4205", + "4210", + "4352", + "4627", + "4635", + "4878", + "51085", + "5167", + "51752", + "5277", + "5308", + "546", + "54790", + "55800", + "57187", + "5781", + "5894", + "590", + "595", + "5982", + "63036", + "6324", + "6327", + "6330", + "6331", + "6337", + "6338", + "6340", + "64072", + "64240", + "64241", + "653361", + "673", + "6775", + "6804", + "6945", + "7099", + "7157", + "720", + "7273", + "7428", + "7458", + "7461", + "7486", + "81031", + "811", + "8302", + "84163", + "84196", + "84277", + "8468", + "84984", + "875", + "9031", + "9101", + "9149", + "9275", + "9569", + "9631", + "9992" + ] + }, + "HP:0033678": { + "Name": "Acute coronary syndrome", + "Task": "Monarch", + "Genes": [ + "10019", + "10060", + "10269", + "10320", + "1080", + "11093", + "1230", + "135886", + "137814", + "140628", + "1482", + "149233", + "1499", + "155368", + "155382", + "1593", + "19", + "2057", + "255738", + "26119", + "2626", + "2627", + "26608", + "2702", + "2717", + "2908", + "2969", + "3081", + "3106", + "337867", + "338", + "3459", + "355", + "3586", + "3592", + "3593", + "3662", + "368", + "3717", + "3741", + "3753", + "3759", + "3760", + "3762", + "3784", + "3949", + "3984", + "4000", + "4023", + "4040", + "4205", + "4210", + "4352", + "4627", + "4635", + "4878", + "51085", + "5167", + "51752", + "5277", + "5308", + "546", + "54790", + "55800", + "57187", + "5781", + "5894", + "590", + "595", + "5982", + "63036", + "6324", + "6327", + "6330", + "6331", + "6337", + "6338", + "6340", + "64072", + "64240", + "64241", + "653361", + "673", + "6775", + "6804", + "6945", + "7099", + "7157", + "720", + "7273", + "7428", + "7458", + "7461", + "7486", + "81031", + "811", + "8302", + "84163", + "84196", + "84277", + "8468", + "84984", + "875", + "9031", + "9101", + "9149", + "9275", + "9569", + "9631", + "9992" + ] + }, + "HP:0100545": { + "Name": "Arterial stenosis", + "Task": "Monarch", + "Genes": [ + "10043", + "10842", + "1161", + "1281", + "135886", + "151188", + "155368", + "155382", + "1581", + "1593", + "165", + "182", + "189", + "19", + "2053", + "2074", + "2099", + "2161", + "2200", + "2301", + "23493", + "255738", + "26119", + "26608", + "2690", + "2767", + "2969", + "3053", + "3106", + "335", + "336", + "338", + "338328", + "3423", + "348", + "3593", + "368", + "3717", + "3949", + "3984", + "3990", + "4000", + "4015", + "4040", + "4087", + "4088", + "4089", + "4144", + "4149", + "4205", + "4352", + "4629", + "4638", + "4763", + "4854", + "50628", + "51085", + "5116", + "5167", + "51816", + "538", + "5456", + "5468", + "55249", + "55654", + "55697", + "5592", + "5654", + "57104", + "57592", + "59", + "5979", + "5982", + "63036", + "64131", + "64132", + "64240", + "64241", + "653361", + "6609", + "6772", + "6804", + "6945", + "7042", + "7043", + "7046", + "7048", + "7066", + "7428", + "7439", + "7458", + "7461", + "79184", + "79875", + "8076", + "81031", + "84163", + "84277", + "8468", + "84984", + "9031", + "9275", + "9569", + "9896" + ] + }, + "HP:0011450": { + "Name": "Unusual CNS infection", + "Task": "Monarch", + "Genes": [ + "10043", + "10095", + "10525", + "114548", + "115650", + "1230", + "1380", + "148022", + "149233", + "1493", + "1535", + "1536", + "1776", + "201294", + "2022", + "2261", + "23495", + "26191", + "29110", + "29760", + "29851", + "3071", + "3106", + "3113", + "3115", + "3123", + "331", + "337867", + "340024", + "3426", + "3459", + "3543", + "355", + "3561", + "3574", + "3586", + "3592", + "3661", + "3662", + "3718", + "3930", + "4068", + "4210", + "4261", + "4688", + "4689", + "50943", + "51135", + "51163", + "51752", + "5295", + "546", + "54820", + "54968", + "55343", + "5551", + "56262", + "5657", + "57393", + "57591", + "58484", + "5896", + "596", + "5993", + "5994", + "604", + "629", + "64170", + "653361", + "6688", + "6772", + "6775", + "6813", + "6929", + "695", + "7037", + "7098", + "7099", + "714", + "7187", + "720", + "721", + "731", + "732", + "7454", + "7456", + "7852", + "7922", + "79415", + "79944", + "81622", + "81839", + "8302", + "8517", + "8625", + "8676", + "8915", + "8974", + "930", + "939", + "94", + "959", + "973", + "974" + ] + }, + "HP:0002028": { + "Name": "Chronic diarrhea", + "Task": "Monarch", + "Genes": [ + "100", + "10043", + "10525", + "10526", + "105371045", + "10551", + "10616", + "11311", + "118429", + "123264", + "1380", + "146206", + "1593", + "1777", + "1794", + "200931", + "2068", + "22900", + "23149", + "23394", + "23474", + "238", + "25839", + "26007", + "2984", + "3074", + "3423", + "3425", + "3551", + "3559", + "3561", + "3572", + "3575", + "359948", + "3689", + "3718", + "389421", + "3981", + "4004", + "4072", + "427", + "4547", + "4598", + "4613", + "4683", + "472", + "4792", + "498", + "50615", + "50943", + "51111", + "5236", + "5293", + "5295", + "5317", + "537", + "538", + "5422", + "54809", + "54888", + "55027", + "5528", + "55343", + "55630", + "55636", + "56052", + "57003", + "57511", + "57531", + "5896", + "5966", + "60468", + "6263", + "6288", + "64421", + "6499", + "6523", + "6555", + "6651", + "6720", + "6809", + "6929", + "695", + "7015", + "7037", + "7132", + "7153", + "721", + "7454", + "7456", + "7535", + "7737", + "7874", + "79827", + "83737", + "841", + "84433", + "84876", + "8517", + "8567", + "8929", + "90268", + "915", + "917", + "92667", + "987" + ] + }, + "HP:0004400": { + "Name": "Abnormality of the pylorus", + "Task": "Monarch", + "Genes": [ + "10277", + "10516", + "10564", + "10630", + "127833", + "1399", + "147372", + "1535", + "1536", + "160418", + "1717", + "1723", + "1785", + "2263", + "23013", + "2313", + "2316", + "23327", + "23476", + "2563", + "25836", + "25970", + "274", + "284058", + "284119", + "30008", + "3265", + "3339", + "3655", + "3691", + "374879", + "388015", + "3909", + "3914", + "3918", + "404672", + "4052", + "4131", + "4534", + "4618", + "4688", + "4689", + "473", + "4744", + "4784", + "4791", + "4868", + "5009", + "5062", + "5189", + "5190", + "5192", + "5194", + "5195", + "529", + "5339", + "54880", + "54897", + "55012", + "5528", + "55670", + "55697", + "55780", + "55869", + "5590", + "5594", + "5824", + "5828", + "5830", + "5831", + "5885", + "613", + "6261", + "63895", + "63976", + "64419", + "6497", + "653361", + "6885", + "6926", + "6928", + "7798", + "79415", + "79633", + "80781", + "81031", + "8243", + "8260", + "8425", + "8504", + "8510", + "8514", + "871", + "8788", + "8799", + "9126", + "91754", + "9409", + "9508", + "9759", + "9839", + "9896", + "9968" + ] + }, + "HP:0025667": { + "Name": "Fetal neck anomaly", + "Task": "Monarch", + "Genes": [ + "10082", + "10128", + "10274", + "104", + "10682", + "1317", + "135886", + "155368", + "155382", + "168667", + "1717", + "1725", + "1822", + "1836", + "1947", + "200734", + "2050", + "2261", + "22800", + "22808", + "2294", + "23476", + "23556", + "25836", + "25978", + "26608", + "2896", + "2969", + "29895", + "29968", + "3190", + "3265", + "368", + "3845", + "3911", + "3930", + "3984", + "4137", + "415", + "4593", + "4893", + "4953", + "51085", + "5167", + "5189", + "5190", + "5192", + "5194", + "5195", + "526", + "54209", + "54664", + "55670", + "55697", + "55790", + "55869", + "5663", + "57465", + "5781", + "5824", + "5828", + "5830", + "5885", + "5894", + "5922", + "5982", + "6016", + "6237", + "653361", + "6654", + "6655", + "6804", + "6925", + "699", + "701", + "7355", + "7415", + "7458", + "7461", + "79770", + "79796", + "8216", + "8243", + "83475", + "84163", + "84231", + "84277", + "8468", + "8504", + "867", + "8799", + "8878", + "9031", + "9126", + "9184", + "9275", + "9319", + "9321", + "9409", + "9569", + "9702", + "9896" + ] + }, + "HP:0002021": { + "Name": "Pyloric stenosis", + "Task": "Monarch", + "Genes": [ + "10277", + "10516", + "10564", + "10630", + "127833", + "1399", + "147372", + "1535", + "1536", + "160418", + "1717", + "1723", + "1785", + "2263", + "23013", + "2313", + "2316", + "23327", + "23476", + "2563", + "25836", + "25970", + "274", + "284058", + "284119", + "30008", + "3265", + "3339", + "374879", + "388015", + "3909", + "3914", + "3918", + "404672", + "4052", + "4131", + "4534", + "4618", + "4688", + "4689", + "473", + "4744", + "4784", + "4791", + "4868", + "5009", + "5062", + "5189", + "5190", + "5192", + "5194", + "5195", + "529", + "54880", + "54897", + "55012", + "5528", + "55670", + "55697", + "55780", + "55869", + "5590", + "5594", + "5824", + "5828", + "5830", + "5831", + "5885", + "613", + "6261", + "63895", + "63976", + "64419", + "6497", + "653361", + "6885", + "6926", + "6928", + "7798", + "79415", + "79633", + "80781", + "81031", + "8243", + "8260", + "8425", + "8504", + "8510", + "8514", + "871", + "8788", + "8799", + "9126", + "91754", + "9409", + "9508", + "9759", + "9839", + "9896", + "9968" + ] + }, + "HP:0100031": { + "Name": "Neoplasm of the thyroid gland", + "Task": "Monarch", + "Genes": [ + "100144748", + "10125", + "1026", + "1027", + "1029", + "1030", + "1031", + "10483", + "10512", + "11200", + "182", + "1889", + "1908", + "1910", + "196528", + "201163", + "205717", + "2064", + "2065", + "207", + "215", + "220296", + "223117", + "22909", + "2299", + "2304", + "23405", + "26585", + "2668", + "27030", + "2956", + "3026", + "324", + "3265", + "355", + "356", + "3766", + "3845", + "4000", + "4072", + "4193", + "4292", + "4436", + "4437", + "4595", + "472", + "4893", + "4902", + "50940", + "5172", + "5290", + "5378", + "538", + "5395", + "5424", + "5426", + "5573", + "5580", + "5728", + "57492", + "57522", + "5977", + "5979", + "6224", + "6390", + "6391", + "6392", + "64218", + "657", + "6597", + "6598", + "6601", + "6602", + "6605", + "6608", + "6659", + "6664", + "6720", + "675", + "7038", + "7048", + "7080", + "7157", + "7486", + "79577", + "8289", + "843", + "9562", + "9817" + ] + }, + "HP:0007759": { + "Name": "Opacification of the corneal stroma", + "Task": "Monarch", + "Genes": [ + "100506658", + "10842", + "11041", + "11081", + "114548", + "1161", + "1497", + "1545", + "157570", + "162514", + "1643", + "182", + "19", + "2053", + "2068", + "2071", + "2072", + "2073", + "2074", + "2296", + "2301", + "2312", + "255738", + "2588", + "26191", + "2629", + "2690", + "2720", + "2778", + "285440", + "29914", + "30813", + "326", + "335", + "336", + "338", + "338917", + "3425", + "348", + "3559", + "3560", + "3845", + "3859", + "3931", + "3949", + "3977", + "3990", + "4070", + "412", + "4166", + "427", + "4313", + "4668", + "4693", + "4914", + "50485", + "5080", + "51360", + "51715", + "5189", + "5308", + "5309", + "54101", + "5476", + "55315", + "55624", + "5696", + "57192", + "5771", + "5828", + "5830", + "5832", + "58495", + "59341", + "6309", + "6399", + "64127", + "64241", + "6720", + "6775", + "7045", + "7490", + "7507", + "7508", + "79158", + "79722", + "80781", + "83959", + "84572", + "84942", + "8671", + "91851", + "919" + ] + }, + "HP:0001582": { + "Name": "Redundant skin", + "Task": "Monarch", + "Genes": [ + "10225", + "10516", + "10682", + "10801", + "113189", + "117581", + "124997", + "1281", + "135886", + "155368", + "155382", + "165", + "2131", + "2146", + "2261", + "2263", + "22884", + "2296", + "23512", + "23545", + "26281", + "26608", + "2677", + "2683", + "285590", + "2879", + "2969", + "29940", + "29957", + "30008", + "3008", + "3248", + "3265", + "3845", + "388015", + "3984", + "4052", + "4716", + "4882", + "51021", + "51085", + "5189", + "523", + "529", + "5308", + "538", + "54453", + "54496", + "54539", + "55165", + "55593", + "55697", + "5604", + "5605", + "56945", + "5831", + "5832", + "5885", + "5982", + "6197", + "64324", + "653361", + "6535", + "673", + "6804", + "6913", + "7227", + "7458", + "7461", + "79087", + "79848", + "81031", + "8260", + "84163", + "84168", + "84231", + "8425", + "84277", + "8468", + "8621", + "8726", + "8788", + "9031", + "92344", + "9275", + "9509", + "9569", + "9786", + "9791", + "9896" + ] + }, + "HP:0003043": { + "Name": "Abnormal shoulder morphology", + "Task": "Monarch", + "Genes": [ + "10265", + "10564", + "1146", + "1277", + "1278", + "1289", + "1290", + "1303", + "135886", + "145258", + "155368", + "155382", + "160418", + "163175", + "165", + "1947", + "2138", + "2316", + "23327", + "2556", + "26175", + "26191", + "26229", + "26608", + "2783", + "2969", + "29895", + "3339", + "339855", + "3559", + "3560", + "368", + "3714", + "388015", + "392255", + "3984", + "4000", + "4010", + "4131", + "4222", + "4621", + "4998", + "5075", + "51085", + "51633", + "5167", + "538", + "54808", + "54880", + "55636", + "55733", + "55768", + "55780", + "5621", + "57167", + "5727", + "5771", + "59341", + "5982", + "6329", + "63895", + "6399", + "653361", + "6775", + "6804", + "6910", + "7138", + "7458", + "7461", + "79722", + "8260", + "83932", + "84163", + "84277", + "8450", + "84572", + "8468", + "84919", + "860", + "865", + "8788", + "8838", + "9031", + "91179", + "919", + "92255", + "9275", + "93587", + "9469", + "9569", + "9573", + "9896", + "9939" + ] + }, + "HP:0003745": { + "Name": "Sporadic", + "Task": "Monarch", + "Genes": [ + "10382", + "10743", + "10815", + "11236", + "126", + "1387", + "1487", + "1816", + "201163", + "2033", + "207", + "2260", + "2261", + "2290", + "23095", + "2317", + "23384", + "23742", + "2475", + "257", + "25836", + "25942", + "26137", + "26277", + "2629", + "2702", + "2703", + "27235", + "2736", + "2776", + "2778", + "3123", + "3265", + "3481", + "3664", + "3717", + "3815", + "3845", + "39", + "3954", + "4137", + "4208", + "4287", + "4609", + "4774", + "4784", + "4893", + "4929", + "4968", + "5048", + "50937", + "5156", + "51816", + "5290", + "53834", + "54551", + "55193", + "55636", + "5604", + "5663", + "57502", + "5832", + "5925", + "6197", + "6208", + "6311", + "6390", + "6391", + "6496", + "6497", + "6638", + "6794", + "6908", + "6927", + "6928", + "7248", + "7249", + "7253", + "7337", + "7341", + "7428", + "7468", + "7681", + "779", + "79813", + "84823", + "85358", + "8675", + "8915", + "8924", + "9627", + "9791" + ] + }, + "HP:0011124": { + "Name": "Abnormal epidermal morphology", + "Task": "Monarch", + "Genes": [ + "10269", + "10320", + "1041", + "10519", + "10682", + "10804", + "10999", + "11012", + "121391", + "126410", + "146206", + "1475", + "165918", + "1825", + "1828", + "1832", + "1893", + "1956", + "204219", + "207", + "22861", + "23086", + "2312", + "23328", + "23581", + "23586", + "242", + "2531", + "25939", + "26525", + "2697", + "27032", + "2706", + "2707", + "2783", + "286887", + "3106", + "340665", + "348938", + "3557", + "3559", + "3575", + "368", + "3728", + "3815", + "3832", + "3848", + "3849", + "3857", + "3858", + "3860", + "3868", + "388698", + "4000", + "4014", + "4035", + "488", + "50814", + "51360", + "5167", + "5271", + "5317", + "55012", + "56916", + "56983", + "57152", + "5921", + "59344", + "5965", + "64065", + "64131", + "64132", + "643418", + "64834", + "6785", + "6820", + "6868", + "7051", + "7286", + "7373", + "79092", + "79719", + "79755", + "79977", + "80067", + "80326", + "831", + "8710", + "9076", + "9180", + "9333", + "9526", + "987" + ] + }, + "HP:0000359": { + "Name": "Abnormality of the inner ear", + "Task": "Monarch", + "Genes": [ + "10083", + "10518", + "10804", + "10847", + "1123", + "124590", + "1288", + "147912", + "152137", + "161742", + "1663", + "1678", + "1690", + "200734", + "207", + "2077", + "2138", + "2248", + "2261", + "2263", + "22800", + "22808", + "22901", + "2299", + "23498", + "25861", + "26040", + "2706", + "3035", + "3265", + "3735", + "3766", + "3845", + "4363", + "4647", + "4693", + "4762", + "4771", + "4893", + "4998", + "5015", + "51004", + "51082", + "5172", + "5190", + "5298", + "5396", + "5456", + "54845", + "55636", + "57167", + "5728", + "5781", + "5894", + "5922", + "595", + "6016", + "6237", + "64072", + "6495", + "65217", + "6598", + "6654", + "6655", + "6663", + "6885", + "6949", + "7291", + "7399", + "7401", + "7428", + "79955", + "80000", + "8216", + "8295", + "83715", + "84059", + "84131", + "84172", + "84196", + "8626", + "867", + "9131", + "93986", + "9533", + "9723", + "9935", + "9984" + ] + }, + "HP:0006753": { + "Name": "Neoplasm of the stomach", + "Task": "Monarch", + "Genes": [ + "1019", + "1029", + "1030", + "10395", + "11200", + "11277", + "1316", + "1499", + "1630", + "201163", + "2022", + "2033", + "2064", + "207", + "2261", + "2263", + "22909", + "25788", + "25913", + "27030", + "2956", + "324", + "3553", + "3557", + "3659", + "3815", + "3845", + "4072", + "4089", + "4157", + "4163", + "4193", + "4255", + "4286", + "4292", + "4436", + "4437", + "4595", + "472", + "4893", + "50940", + "5156", + "5157", + "5290", + "5320", + "5378", + "5395", + "5424", + "5426", + "54386", + "5573", + "5727", + "5782", + "5795", + "581", + "595", + "6224", + "6389", + "6390", + "6391", + "641", + "64218", + "657", + "6714", + "673", + "675", + "6790", + "6794", + "699", + "701", + "7015", + "7048", + "7097", + "7157", + "7373", + "79719", + "8313", + "8314", + "843", + "8915", + "9184", + "9319", + "9702", + "999" + ] + }, + "HP:0000491": { + "Name": "Keratitis", + "Task": "Monarch", + "Genes": [ + "105371045", + "10804", + "114548", + "1161", + "121214", + "1230", + "1287", + "1288", + "1308", + "136647", + "149233", + "16", + "1643", + "165", + "204219", + "2068", + "2071", + "2072", + "2073", + "2074", + "2200", + "2255", + "2261", + "2263", + "22861", + "242", + "26154", + "2623", + "2706", + "285848", + "2934", + "2961", + "3106", + "3123", + "3141", + "326", + "337867", + "3459", + "348938", + "355", + "3572", + "3586", + "3592", + "3930", + "404672", + "4072", + "4081", + "4210", + "4547", + "4914", + "5080", + "51360", + "51752", + "5339", + "5429", + "54941", + "55343", + "55699", + "56244", + "59344", + "5965", + "6335", + "64127", + "6720", + "6775", + "6820", + "6897", + "7051", + "7099", + "720", + "7389", + "7390", + "7454", + "7456", + "7507", + "7508", + "7737", + "8218", + "8302", + "833", + "8517", + "8626", + "9244" + ] + }, + "HP:0006707": { + "Name": "Abnormality of the hepatic vasculature", + "Task": "Monarch", + "Genes": [ + "10056", + "10112", + "10507", + "10699", + "11277", + "1499", + "169792", + "171023", + "1716", + "197131", + "199221", + "2022", + "2153", + "219736", + "2321", + "23322", + "23534", + "23729", + "2629", + "2632", + "2658", + "27031", + "2783", + "285203", + "2859", + "3077", + "3123", + "3431", + "3516", + "3592", + "3594", + "3663", + "3717", + "3783", + "3988", + "4089", + "4233", + "4351", + "4352", + "4485", + "462", + "4851", + "50674", + "51085", + "51473", + "51816", + "5314", + "5450", + "54567", + "54790", + "55340", + "55532", + "5557", + "56244", + "56623", + "57514", + "57545", + "57572", + "5825", + "6427", + "6521", + "654", + "6663", + "6689", + "6925", + "72", + "7289", + "7840", + "79258", + "79989", + "79991", + "811", + "83737", + "84936", + "861", + "867", + "889", + "9076", + "91147", + "92345", + "93183", + "94", + "9401", + "9414", + "950", + "9780", + "9966", + "9968" + ] + }, + "HP:0004796": { + "Name": "Gastrointestinal obstruction", + "Task": "Monarch", + "Genes": [ + "1029", + "10512", + "1080", + "1084", + "11254", + "115019", + "1493", + "1499", + "1604", + "1889", + "1908", + "1909", + "1910", + "2064", + "2065", + "2068", + "2130", + "2131", + "2132", + "215", + "2153", + "2184", + "2212", + "223117", + "22802", + "23022", + "26153", + "26191", + "2668", + "2729", + "284119", + "285282", + "2947", + "2984", + "3077", + "3110", + "3113", + "3115", + "3145", + "3162", + "324", + "3569", + "3717", + "3718", + "3783", + "3815", + "3845", + "4089", + "4210", + "4282", + "4286", + "4598", + "4609", + "4629", + "4680", + "4854", + "4902", + "50943", + "51164", + "5156", + "5159", + "5265", + "538", + "5498", + "5657", + "57217", + "5979", + "6389", + "6390", + "6391", + "6392", + "64127", + "6535", + "6550", + "6556", + "6572", + "6608", + "6663", + "672", + "6720", + "675", + "6794", + "6804", + "6905", + "7040", + "7132", + "7157", + "7490", + "79728", + "811", + "91574" + ] + }, + "HP:0001426": { + "Name": "Non-Mendelian inheritance", + "Task": "Monarch", + "Genes": [ + "10599", + "10804", + "114798", + "117156", + "118", + "121278", + "125", + "126", + "128", + "1280", + "144568", + "1471", + "155", + "1577", + "1789", + "181", + "183", + "185", + "1889", + "2147", + "2153", + "219736", + "22861", + "2289", + "2322", + "23347", + "23767", + "240", + "241", + "2487", + "2555", + "2706", + "2707", + "2782", + "2784", + "28234", + "3075", + "3106", + "3107", + "3117", + "3119", + "3123", + "3135", + "3176", + "3356", + "3569", + "3596", + "3664", + "392255", + "4589", + "4683", + "4750", + "481", + "4846", + "5078", + "50833", + "5133", + "5167", + "51738", + "5443", + "5468", + "55791", + "5583", + "5654", + "5740", + "57502", + "581", + "613", + "6331", + "6356", + "64127", + "64241", + "652", + "6638", + "672", + "6886", + "6887", + "7124", + "7157", + "7298", + "7352", + "79659", + "8021", + "8431", + "8490", + "8542", + "871", + "9573", + "9607", + "9672" + ] + }, + "HP:0007328": { + "Name": "Impaired pain sensation", + "Task": "Monarch", + "Genes": [ + "10059", + "10522", + "10558", + "10743", + "11280", + "182", + "19", + "219854", + "2200", + "22854", + "22948", + "23096", + "2314", + "23742", + "253738", + "25923", + "2705", + "283489", + "2892", + "3035", + "3098", + "3190", + "3315", + "3481", + "3572", + "3977", + "4010", + "4204", + "4358", + "4747", + "4803", + "4914", + "51062", + "5165", + "5375", + "5376", + "54332", + "54551", + "55699", + "55768", + "55775", + "5631", + "57410", + "59335", + "59345", + "5981", + "6310", + "6335", + "6652", + "6792", + "7204", + "7343", + "7415", + "7681", + "781", + "79628", + "80036", + "80821", + "8218", + "8242", + "8243", + "8518", + "85358", + "85446", + "8566", + "8567", + "87178", + "8888", + "8924", + "9131", + "9517", + "9568", + "9759", + "9839", + "9927" + ] + }, + "HP:0000372": { + "Name": "Abnormal auditory canal morphology", + "Task": "Monarch", + "Genes": [ + "10194", + "10262", + "10526", + "10585", + "10735", + "10815", + "10992", + "1123", + "1146", + "114928", + "117581", + "121340", + "1280", + "1294", + "137492", + "145173", + "145258", + "147912", + "1487", + "1906", + "1909", + "1956", + "2065", + "207", + "2138", + "2218", + "2263", + "23347", + "23426", + "23476", + "23594", + "25836", + "2737", + "2773", + "29954", + "3166", + "3199", + "341640", + "3954", + "4094", + "4854", + "4921", + "4998", + "5000", + "5075", + "50964", + "51053", + "51434", + "526", + "5332", + "53834", + "5447", + "55869", + "56992", + "57167", + "5728", + "57465", + "57591", + "5885", + "6135", + "6154", + "6231", + "6234", + "64840", + "6495", + "6558", + "6628", + "6868", + "6913", + "6949", + "7468", + "79147", + "79633", + "80144", + "8085", + "81620", + "8243", + "8318", + "8626", + "8642", + "90121", + "9126", + "9215", + "9343", + "9382", + "990", + "9935", + "9968" + ] + }, + "HP:0010051": { + "Name": "Deviation of the hallux", + "Task": "Monarch", + "Genes": [ + "10262", + "10283", + "11107", + "126792", + "1277", + "1278", + "135886", + "1387", + "155368", + "155382", + "165", + "2033", + "207", + "2077", + "2254", + "2260", + "2261", + "2263", + "2273", + "23102", + "25923", + "26005", + "26229", + "2629", + "26608", + "2969", + "3209", + "3239", + "3590", + "3756", + "3778", + "3782", + "3984", + "4621", + "4784", + "4841", + "50515", + "51085", + "526", + "55027", + "55315", + "55780", + "56098", + "5696", + "57122", + "57178", + "5728", + "5932", + "5982", + "650", + "653361", + "6567", + "658", + "6595", + "6662", + "6736", + "6792", + "6804", + "6938", + "7291", + "7458", + "7461", + "7528", + "7874", + "79759", + "7994", + "80185", + "8200", + "8239", + "8294", + "83737", + "84163", + "84277", + "84627", + "8468", + "8626", + "90", + "9031", + "91179", + "9275", + "9469", + "9569", + "9839" + ] + }, + "HP:0002974": { + "Name": "Radioulnar synostosis", + "Task": "Monarch", + "Genes": [ + "10262", + "10584", + "10815", + "11285", + "124583", + "126792", + "135886", + "1487", + "155368", + "155382", + "157570", + "1723", + "200734", + "2122", + "2261", + "2263", + "22800", + "22808", + "22856", + "23476", + "23522", + "25836", + "26040", + "26229", + "26608", + "2969", + "29980", + "29998", + "3207", + "324", + "3845", + "3954", + "3984", + "4038", + "4091", + "4094", + "4893", + "50945", + "51085", + "53834", + "5447", + "54880", + "55790", + "55869", + "5648", + "57167", + "5781", + "5885", + "5894", + "5922", + "5982", + "6016", + "6154", + "6237", + "63895", + "64131", + "653361", + "6654", + "6655", + "6804", + "6910", + "7291", + "7458", + "7461", + "7468", + "78989", + "8216", + "8243", + "84163", + "84277", + "8468", + "867", + "9031", + "9126", + "9275", + "9469", + "9569" + ] + }, + "HP:0005214": { + "Name": "Intestinal obstruction", + "Task": "Monarch", + "Genes": [ + "10512", + "1080", + "1084", + "11254", + "115019", + "1493", + "1499", + "1604", + "1889", + "1908", + "1909", + "1910", + "2064", + "2065", + "2068", + "2130", + "2131", + "2132", + "215", + "2153", + "2184", + "2212", + "223117", + "22802", + "26153", + "26191", + "2668", + "2729", + "284119", + "2947", + "2984", + "3077", + "3113", + "3115", + "3145", + "3162", + "324", + "3569", + "3717", + "3718", + "3783", + "3815", + "4210", + "4282", + "4286", + "4598", + "4609", + "4629", + "4680", + "4854", + "4902", + "50943", + "51164", + "5156", + "5159", + "5265", + "538", + "5498", + "5657", + "57217", + "5979", + "6389", + "6390", + "6391", + "6392", + "64127", + "6535", + "6550", + "6556", + "6572", + "6608", + "6663", + "6720", + "6794", + "6804", + "6905", + "7040", + "7132", + "7490", + "811", + "91574" + ] + }, + "HP:0001822": { + "Name": "Hallux valgus", + "Task": "Monarch", + "Genes": [ + "10262", + "10283", + "11107", + "126792", + "1277", + "1278", + "135886", + "155368", + "155382", + "165", + "207", + "2077", + "2261", + "2263", + "2273", + "23102", + "25923", + "26229", + "2629", + "26608", + "2969", + "3239", + "3590", + "3756", + "3778", + "3782", + "3984", + "4621", + "4784", + "4841", + "51085", + "526", + "55027", + "55315", + "55780", + "56098", + "5696", + "57122", + "57178", + "5728", + "5932", + "5982", + "650", + "653361", + "6567", + "658", + "6595", + "6662", + "6736", + "6792", + "6804", + "6938", + "7291", + "7458", + "7461", + "7528", + "7874", + "79759", + "80185", + "8200", + "8239", + "8294", + "83737", + "84163", + "84277", + "84627", + "8468", + "8626", + "90", + "9031", + "91179", + "9275", + "9469", + "9569", + "9839" + ] + }, + "HP:0001879": { + "Name": "Abnormal eosinophil morphology", + "Task": "Monarch", + "Genes": [ + "100", + "10125", + "10312", + "1041", + "10507", + "10526", + "10999", + "11005", + "113235", + "114548", + "171023", + "1991", + "2137", + "22861", + "2672", + "2859", + "2908", + "29775", + "30009", + "3123", + "3394", + "355", + "356", + "3561", + "3572", + "3575", + "3716", + "3815", + "3981", + "4485", + "50943", + "5156", + "5159", + "5238", + "5294", + "546", + "54790", + "55636", + "5580", + "56244", + "5896", + "64072", + "64170", + "6427", + "64421", + "64919", + "6720", + "6728", + "6729", + "673", + "6774", + "6778", + "6925", + "7157", + "7454", + "7456", + "7535", + "81570", + "81704", + "825", + "8288", + "84196", + "843", + "84433", + "84905", + "8517", + "9101", + "915", + "916", + "919", + "9939" + ] + }, + "HP:0011390": { + "Name": "Abnormal inner ear morphology", + "Task": "Monarch", + "Genes": [ + "10083", + "10518", + "10804", + "10847", + "1123", + "124590", + "1288", + "147912", + "152137", + "1663", + "1678", + "1690", + "200734", + "207", + "2077", + "2138", + "2248", + "2261", + "2263", + "22800", + "22808", + "22901", + "2299", + "23498", + "26040", + "2706", + "3035", + "3265", + "3766", + "3845", + "4363", + "4647", + "4693", + "4762", + "4893", + "4998", + "5015", + "51082", + "5172", + "5190", + "5298", + "5396", + "5456", + "54845", + "55636", + "57167", + "5728", + "5781", + "5894", + "5922", + "6016", + "6237", + "64072", + "6495", + "65217", + "6654", + "6655", + "6663", + "6885", + "6949", + "7291", + "7401", + "80000", + "8216", + "8295", + "83715", + "84131", + "84172", + "84196", + "867", + "9131", + "93986", + "9533", + "9723", + "9935", + "9984" + ] + }, + "HP:0002758": { + "Name": "Osteoarthritis", + "Task": "Monarch", + "Genes": [ + "10216", + "10269", + "11117", + "1186", + "124583", + "1277", + "1280", + "1281", + "1289", + "1290", + "1297", + "1298", + "1299", + "1301", + "1302", + "1311", + "165", + "176", + "1836", + "2157", + "2158", + "2200", + "2261", + "2487", + "26191", + "2629", + "2690", + "2778", + "30061", + "3081", + "3106", + "3248", + "3559", + "3560", + "3703", + "3835", + "4000", + "4087", + "4088", + "4148", + "4210", + "4322", + "4803", + "4982", + "5251", + "540", + "54829", + "55325", + "56172", + "57592", + "5771", + "59341", + "6399", + "65992", + "6775", + "7043", + "7227", + "79722", + "8200", + "83550", + "8838", + "9049", + "919", + "950" + ] + }, + "HP:0004808": { + "Name": "Acute myeloid leukemia", + "Task": "Monarch", + "Genes": [ + "1029", + "10312", + "1050", + "11200", + "11224", + "128", + "134218", + "171023", + "1736", + "1788", + "1991", + "2065", + "2120", + "219285", + "2322", + "23451", + "2623", + "2624", + "26511", + "2672", + "29089", + "3717", + "3815", + "3845", + "4193", + "4210", + "4352", + "4869", + "51119", + "51428", + "51816", + "54790", + "54809", + "55027", + "6125", + "6132", + "6133", + "6135", + "6138", + "6141", + "6154", + "6155", + "6160", + "6165", + "6201", + "6204", + "6208", + "6210", + "6218", + "6223", + "6224", + "6229", + "6231", + "6232", + "6234", + "6235", + "641", + "6427", + "6455", + "6728", + "6729", + "675", + "7015", + "7066", + "7157", + "79631", + "79728", + "8021", + "8028", + "81570", + "8301", + "861", + "8930", + "90121" + ] + }, + "HP:0200008": { + "Name": "Intestinal polyposis", + "Task": "Monarch", + "Genes": [ + "100144748", + "1029", + "10483", + "10512", + "11200", + "1499", + "1889", + "1908", + "1910", + "201163", + "2022", + "205717", + "2064", + "2065", + "207", + "215", + "220296", + "223117", + "22909", + "23405", + "2658", + "26585", + "2668", + "27030", + "2778", + "2956", + "324", + "3845", + "4072", + "4089", + "4193", + "4292", + "4436", + "4437", + "4595", + "4902", + "4913", + "5156", + "5290", + "5378", + "538", + "5395", + "5424", + "5426", + "54894", + "5728", + "5979", + "6390", + "6391", + "6392", + "657", + "6608", + "6720", + "699", + "701", + "7048", + "7157", + "8313", + "8930", + "9184", + "9319", + "94", + "9702", + "9817" + ] + }, + "HP:0005584": { + "Name": "Renal cell carcinoma", + "Task": "Monarch", + "Genes": [ + "100144748", + "10395", + "10483", + "11236", + "1499", + "1630", + "1743", + "201163", + "2033", + "205717", + "207", + "2261", + "2271", + "2304", + "23095", + "23405", + "25788", + "27030", + "2778", + "3026", + "324", + "3458", + "4000", + "4149", + "4163", + "4191", + "4233", + "4763", + "4893", + "4968", + "5157", + "5290", + "5320", + "54949", + "55193", + "5546", + "55654", + "5728", + "5782", + "5795", + "581", + "595", + "5979", + "6389", + "6390", + "6391", + "6392", + "64127", + "6714", + "673", + "6790", + "6794", + "6927", + "6928", + "699", + "701", + "7030", + "7097", + "7157", + "7248", + "7249", + "7373", + "7428", + "79577", + "79719", + "79798", + "8313", + "8314", + "8402", + "9562", + "9817" + ] + }, + "HP:0020064": { + "Name": "Abnormal eosinophil count", + "Task": "Monarch", + "Genes": [ + "100", + "10125", + "10312", + "1041", + "10526", + "10999", + "11005", + "113235", + "114548", + "171023", + "1991", + "2137", + "22861", + "2672", + "2908", + "29775", + "30009", + "3123", + "3394", + "355", + "356", + "3561", + "3572", + "3575", + "3716", + "3815", + "3981", + "50943", + "5156", + "5159", + "5238", + "5294", + "546", + "54790", + "55636", + "5580", + "56244", + "5896", + "64072", + "64170", + "6427", + "64421", + "64919", + "6720", + "6728", + "6729", + "673", + "6774", + "6778", + "7157", + "7454", + "7535", + "81570", + "81704", + "825", + "84196", + "843", + "84433", + "84905", + "8517", + "9101", + "915", + "916", + "919", + "9939" + ] + }, + "HP:0000995": { + "Name": "Melanocytic nevus", + "Task": "Monarch", + "Genes": [ + "1001", + "100144748", + "10483", + "1139", + "1281", + "1643", + "200734", + "205717", + "2068", + "207", + "2071", + "2072", + "2073", + "2077", + "2146", + "2200", + "2261", + "2263", + "22800", + "22808", + "23512", + "3257", + "3265", + "3481", + "3845", + "4157", + "4352", + "4784", + "4893", + "4948", + "4982", + "5144", + "51684", + "5290", + "55131", + "5573", + "5727", + "5728", + "5781", + "5894", + "5922", + "6016", + "60681", + "6237", + "6390", + "6391", + "63915", + "6392", + "6654", + "6655", + "6711", + "673", + "7066", + "7299", + "7507", + "7508", + "7703", + "8216", + "8626", + "8643", + "867", + "8726", + "8792" + ] + }, + "HP:0005266": { + "Name": "Intestinal polyp", + "Task": "Monarch", + "Genes": [ + "100144748", + "1029", + "10483", + "10512", + "11200", + "1499", + "1889", + "1908", + "1910", + "201163", + "2022", + "205717", + "2064", + "2065", + "207", + "215", + "220296", + "223117", + "22909", + "23405", + "2475", + "2658", + "26585", + "2668", + "27030", + "2778", + "2956", + "324", + "3845", + "4072", + "4089", + "4193", + "4292", + "4436", + "4437", + "4595", + "4902", + "4913", + "5156", + "5290", + "5378", + "538", + "5395", + "5424", + "5426", + "54894", + "5727", + "5728", + "5979", + "6390", + "6391", + "6392", + "657", + "6608", + "6720", + "6794", + "699", + "701", + "7048", + "7157", + "8313", + "8930", + "9184", + "9319", + "94", + "9702", + "9817" + ] + }, + "HP:0000698": { + "Name": "Conical tooth", + "Task": "Monarch", + "Genes": [ + "10913", + "128178", + "132884", + "145173", + "147372", + "1500", + "1723", + "1739", + "1748", + "1896", + "2121", + "2248", + "2260", + "2261", + "2263", + "22837", + "23314", + "23545", + "2735", + "3664", + "387", + "4040", + "4487", + "4750", + "4792", + "5083", + "5156", + "51626", + "526", + "54084", + "545", + "54848", + "5566", + "5567", + "57492", + "57589", + "5818", + "60529", + "64682", + "652", + "6603", + "6768", + "7039", + "7341", + "7480", + "7994", + "80326", + "81607", + "8313", + "8517", + "8626", + "9411", + "9853", + "999" + ] + }, + "HP:0011370": { + "Name": "Recurrent cutaneous fungal infections", + "Task": "Monarch", + "Genes": [ + "100", + "10043", + "10758", + "10804", + "11151", + "112744", + "146206", + "1794", + "23765", + "2706", + "2908", + "326", + "3431", + "3551", + "3559", + "3561", + "3572", + "3575", + "3689", + "3718", + "4261", + "4598", + "4792", + "51311", + "5238", + "5293", + "546", + "57724", + "5993", + "5994", + "6097", + "64072", + "64170", + "64421", + "64581", + "6720", + "673", + "6772", + "6774", + "6789", + "7037", + "7157", + "7535", + "84196", + "84818", + "84905", + "8517", + "8546", + "8625", + "90417", + "9101", + "915", + "916", + "917", + "919", + "959", + "9948" + ] + }, + "HP:0009466": { + "Name": "Radial deviation of finger", + "Task": "Monarch", + "Genes": [ + "10225", + "10262", + "124583", + "157570", + "1836", + "1855", + "1954", + "2146", + "2245", + "2261", + "2263", + "22856", + "22858", + "23019", + "2316", + "2317", + "23483", + "23742", + "257", + "25942", + "26227", + "29123", + "3480", + "3549", + "4089", + "4920", + "5295", + "54551", + "546", + "54880", + "54903", + "54928", + "55764", + "5604", + "5781", + "582", + "59341", + "650", + "65250", + "65267", + "658", + "673", + "7474", + "7681", + "79140", + "79796", + "8200", + "8260", + "84100", + "84231", + "8481", + "8924", + "9241", + "9244", + "9968" + ] + }, + "HP:0000554": { + "Name": "Uveitis", + "Task": "Monarch", + "Genes": [ + "10125", + "10273", + "10507", + "10892", + "114548", + "1161", + "130340", + "144811", + "1776", + "2067", + "2072", + "2074", + "220202", + "22861", + "26191", + "26525", + "2697", + "2859", + "3106", + "3123", + "326", + "330", + "355", + "3559", + "356", + "3560", + "3569", + "3662", + "4282", + "4485", + "51360", + "5580", + "56244", + "5771", + "641", + "64127", + "6775", + "6925", + "7086", + "7128", + "7132", + "726", + "79722", + "843", + "8517", + "8915", + "919", + "939", + "987" + ] + }, + "HP:0100743": { + "Name": "Neoplasm of the rectum", + "Task": "Monarch", + "Genes": [ + "100144748", + "1029", + "10483", + "11200", + "2022", + "205717", + "207", + "22909", + "23405", + "26585", + "27030", + "2956", + "324", + "3815", + "3845", + "4072", + "4089", + "4193", + "4292", + "4436", + "4437", + "4595", + "472", + "4913", + "50940", + "5156", + "5290", + "5378", + "5395", + "5424", + "5426", + "54894", + "5573", + "5728", + "6224", + "6389", + "6390", + "6391", + "6392", + "64218", + "657", + "675", + "6794", + "7048", + "7157", + "8313", + "9817" + ] + }, + "HP:0002113": { + "Name": "Pulmonary infiltrates", + "Task": "Monarch", + "Genes": [ + "10125", + "10568", + "10661", + "10892", + "1230", + "1235", + "1490", + "149233", + "1493", + "1794", + "254428", + "26191", + "2629", + "3043", + "3047", + "3048", + "3106", + "3113", + "3115", + "3123", + "330", + "337867", + "3459", + "348", + "355", + "3559", + "356", + "3586", + "3592", + "3663", + "4210", + "427", + "5156", + "51752", + "53335", + "5557", + "5580", + "56244", + "5657", + "5873", + "60468", + "6609", + "6775", + "7080", + "7099", + "720", + "7248", + "7249", + "7317", + "8302", + "843", + "857", + "8915", + "9663" + ] + }, + "HP:0002728": { + "Name": "Chronic mucocutaneous candidiasis", + "Task": "Monarch", + "Genes": [ + "100", + "10043", + "10758", + "11151", + "112744", + "146206", + "1794", + "23765", + "326", + "3431", + "3551", + "3559", + "3561", + "3572", + "3575", + "3689", + "3718", + "4261", + "4598", + "4792", + "51311", + "5238", + "5293", + "57724", + "5993", + "5994", + "6097", + "64170", + "64421", + "64581", + "6720", + "6772", + "6774", + "6789", + "7037", + "7535", + "84818", + "84905", + "8517", + "8546", + "8625", + "90417", + "915", + "916", + "917", + "919", + "959", + "9948" + ] + }, + "HP:0001096": { + "Name": "Keratoconjunctivitis", + "Task": "Monarch", + "Genes": [ + "10804", + "1161", + "1230", + "1308", + "136647", + "149233", + "16", + "165", + "2068", + "2071", + "2074", + "2200", + "2255", + "2261", + "2263", + "22861", + "2623", + "2706", + "2934", + "2961", + "3106", + "3123", + "3141", + "326", + "337867", + "3459", + "355", + "3586", + "3592", + "3930", + "404672", + "4081", + "4210", + "4547", + "51752", + "54941", + "55699", + "56244", + "5965", + "6335", + "64127", + "6720", + "6775", + "6897", + "7099", + "720", + "7389", + "7390", + "7737", + "8302", + "833" + ] + }, + "HP:0000217": { + "Name": "Xerostomia", + "Task": "Monarch", + "Genes": [ + "10133", + "10891", + "1131", + "1235", + "128178", + "1490", + "1610", + "1639", + "2043", + "2066", + "2255", + "2261", + "2263", + "23025", + "23435", + "2521", + "25978", + "2733", + "283", + "29110", + "2934", + "29978", + "311", + "3123", + "3178", + "3663", + "3930", + "400916", + "4744", + "4750", + "5216", + "54209", + "5444", + "5445", + "5446", + "54551", + "55830", + "5630", + "6311", + "6335", + "64127", + "64834", + "6492", + "6558", + "6647", + "7415", + "755", + "8148", + "857", + "8626", + "8878", + "899", + "9071", + "9217", + "9782", + "9896" + ] + }, + "HP:0025269": { + "Name": "Panic attack", + "Task": "Monarch", + "Genes": [ + "1029", + "11315", + "120892", + "1387", + "1499", + "1743", + "1788", + "1813", + "1861", + "2033", + "2034", + "2271", + "22854", + "23095", + "23111", + "23384", + "25792", + "27429", + "2908", + "4149", + "4191", + "4204", + "4763", + "5071", + "5420", + "546", + "54832", + "54949", + "55654", + "5573", + "5979", + "6389", + "6390", + "6391", + "6392", + "64072", + "65018", + "6622", + "673", + "6792", + "7015", + "7157", + "7345", + "7428", + "79734", + "8243", + "8402", + "84133", + "84196", + "8867", + "8910", + "9101", + "9568", + "9829" + ] + }, + "HP:0000474": { + "Name": "Thickened nuchal skin fold", + "Task": "Monarch", + "Genes": [ + "10128", + "10682", + "1317", + "1836", + "1947", + "200734", + "22800", + "22808", + "2294", + "23556", + "25978", + "2896", + "29968", + "3190", + "3265", + "368", + "3845", + "3911", + "4137", + "4893", + "5167", + "5189", + "5190", + "5192", + "5194", + "5195", + "526", + "54209", + "54664", + "55670", + "5663", + "57465", + "5781", + "5824", + "5828", + "5830", + "5894", + "5922", + "6016", + "6237", + "6654", + "6655", + "7355", + "7415", + "79796", + "8216", + "84231", + "8504", + "867", + "8799", + "8878", + "9321", + "9409" + ] + }, + "HP:0100651": { + "Name": "Type I diabetes mellitus", + "Task": "Monarch", + "Genes": [ + "10043", + "10068", + "10273", + "10507", + "10699", + "1188", + "1493", + "1777", + "1854", + "1896", + "219736", + "23019", + "2321", + "23312", + "2542", + "2645", + "284252", + "2859", + "3117", + "3119", + "326", + "3559", + "3630", + "375056", + "3767", + "4313", + "4323", + "4485", + "50674", + "50943", + "51311", + "51816", + "5297", + "55315", + "55806", + "5611", + "57217", + "60401", + "6559", + "6688", + "6772", + "6774", + "6833", + "6925", + "6927", + "7086", + "83737", + "84340", + "847", + "857", + "9051", + "92345", + "9451", + "9570", + "987" + ] + }, + "HP:0100646": { + "Name": "Thyroiditis", + "Task": "Monarch", + "Genes": [ + "100", + "10043", + "10068", + "10125", + "1027", + "10483", + "10507", + "1188", + "1493", + "207", + "22861", + "2542", + "27022", + "2859", + "3117", + "3119", + "355", + "3559", + "356", + "3561", + "3575", + "3981", + "4485", + "4791", + "50943", + "51816", + "5290", + "5297", + "5336", + "5428", + "55636", + "5580", + "57217", + "5728", + "57623", + "5896", + "64421", + "6559", + "6772", + "6777", + "6909", + "6925", + "7038", + "716", + "83737", + "843", + "8651", + "987" + ] + }, + "HP:0001377": { + "Name": "Limited elbow extension", + "Task": "Monarch", + "Genes": [ + "10060", + "10082", + "10262", + "10274", + "1280", + "1299", + "1311", + "157570", + "1855", + "200734", + "2146", + "2200", + "2201", + "2261", + "2263", + "2316", + "2317", + "23529", + "2535", + "25836", + "2782", + "3930", + "4010", + "4148", + "4322", + "4796", + "4882", + "5116", + "51305", + "538", + "5447", + "54808", + "54928", + "55012", + "55790", + "55869", + "5594", + "633", + "6424", + "6910", + "6999", + "7030", + "7474", + "80207", + "83452", + "83737", + "85301", + "89970", + "9244", + "9968" + ] + }, + "HP:0200020": { + "Name": "Corneal erosion", + "Task": "Monarch", + "Genes": [ + "10320", + "105371045", + "10653", + "10804", + "11107", + "117581", + "121214", + "1286", + "1287", + "1294", + "1308", + "1497", + "1634", + "204219", + "224", + "2255", + "2261", + "2263", + "2303", + "242", + "26128", + "26154", + "2706", + "285848", + "3106", + "348938", + "3850", + "4072", + "4166", + "4312", + "4358", + "4914", + "5080", + "51360", + "5336", + "55612", + "55630", + "59344", + "6820", + "7045", + "7051", + "7490", + "8218", + "84627", + "8518", + "8626" + ] + }, + "HP:0001386": { + "Name": "Joint swelling", + "Task": "Monarch", + "Genes": [ + "11200", + "1277", + "1289", + "1290", + "144811", + "2157", + "2243", + "2244", + "2266", + "26191", + "2783", + "3077", + "3081", + "3106", + "3123", + "3248", + "3557", + "3559", + "3560", + "3569", + "3586", + "4210", + "4261", + "427", + "4282", + "4795", + "4921", + "4952", + "4982", + "51744", + "54", + "540", + "56172", + "56244", + "5771", + "5925", + "6399", + "64127", + "654", + "6578", + "6583", + "6775", + "6850", + "7132", + "7157", + "79722", + "83550", + "8838", + "90268", + "9049", + "919", + "9663" + ] + }, + "HP:0034274": { + "Name": "Gastrointestinal ulcer", + "Task": "Monarch", + "Genes": [ + "1026", + "1027", + "1030", + "1031", + "115908", + "1175", + "1294", + "135886", + "155368", + "155382", + "171023", + "2033", + "2629", + "26608", + "2767", + "2969", + "3248", + "3815", + "3984", + "4312", + "4481", + "493856", + "51008", + "51085", + "5297", + "5321", + "5340", + "54790", + "57217", + "57492", + "5982", + "64132", + "6427", + "653361", + "6578", + "6774", + "6804", + "6850", + "7128", + "7458", + "7461", + "7466", + "79577", + "84163", + "84277", + "8468", + "9031", + "9275", + "9569" + ] + }, + "HP:0040189": { + "Name": "Scaling skin", + "Task": "Monarch", + "Genes": [ + "10269", + "1041", + "10682", + "10804", + "11012", + "121391", + "126410", + "146206", + "1475", + "165918", + "1832", + "1956", + "23328", + "23581", + "23586", + "25939", + "2697", + "2706", + "2783", + "348938", + "3559", + "3575", + "3815", + "3832", + "3848", + "3858", + "388698", + "4000", + "4014", + "51360", + "5271", + "5317", + "55012", + "5921", + "5965", + "6785", + "6820", + "6868", + "7051", + "79092", + "80067", + "831", + "9180", + "9333", + "9526", + "987" + ] + }, + "HP:0410241": { + "Name": "Abnormal circulating IgE level", + "Task": "Monarch", + "Genes": [ + "100", + "10043", + "10125", + "1041", + "10526", + "11005", + "121391", + "1294", + "1828", + "1956", + "2137", + "2239", + "2719", + "29775", + "3071", + "355", + "3559", + "356", + "3561", + "3570", + "3572", + "3575", + "3857", + "4792", + "50943", + "51135", + "5238", + "5580", + "56160", + "59067", + "60468", + "64170", + "64421", + "6774", + "6777", + "6778", + "6868", + "6929", + "695", + "7040", + "7297", + "7454", + "81704", + "843", + "84433", + "84905", + "8517", + "919", + "958", + "959" + ] + }, + "HP:0002763": { + "Name": "Abnormal cartilage morphology", + "Task": "Monarch", + "Genes": [ + "1280", + "1836", + "1906", + "2131", + "2132", + "2157", + "2260", + "2261", + "2263", + "22827", + "22907", + "2317", + "26123", + "26137", + "2773", + "3081", + "3106", + "3417", + "3418", + "368", + "3845", + "3930", + "4256", + "4921", + "4982", + "51082", + "5167", + "5332", + "56172", + "5727", + "5745", + "5781", + "5828", + "5830", + "58499", + "63932", + "6399", + "6496", + "6949", + "7050", + "7291", + "7317", + "7468", + "8379", + "84172", + "9533", + "9653" + ] + }, + "HP:0100728": { + "Name": "Germ cell neoplasia", + "Task": "Monarch", + "Genes": [ + "1028", + "1029", + "10297", + "11200", + "1499", + "190", + "2064", + "207", + "2261", + "2263", + "23405", + "23414", + "2516", + "26040", + "2626", + "29072", + "3110", + "3481", + "367", + "3784", + "3815", + "412", + "4193", + "4214", + "4437", + "4978", + "5071", + "5080", + "50846", + "50940", + "51741", + "5290", + "54894", + "5573", + "57647", + "58524", + "64324", + "6662", + "6736", + "6794", + "6845", + "7157", + "7490", + "8915", + "9817", + "999" + ] + }, + "HP:0001097": { + "Name": "Keratoconjunctivitis sicca", + "Task": "Monarch", + "Genes": [ + "10804", + "1161", + "1230", + "1308", + "136647", + "149233", + "16", + "165", + "2068", + "2071", + "2074", + "2200", + "2255", + "2261", + "2263", + "22861", + "2706", + "2934", + "2961", + "3106", + "3123", + "337867", + "3459", + "355", + "3586", + "3592", + "3930", + "404672", + "4081", + "4210", + "4547", + "51752", + "54941", + "55699", + "56244", + "5965", + "6335", + "64127", + "6720", + "6775", + "6897", + "7099", + "720", + "7737", + "8302", + "833" + ] + }, + "HP:0001355": { + "Name": "Megalencephaly", + "Task": "Monarch", + "Genes": [ + "10000", + "10641", + "116442", + "220296", + "2253", + "2261", + "2263", + "23209", + "2475", + "2619", + "2736", + "28514", + "3265", + "3458", + "3845", + "443", + "4838", + "4893", + "50937", + "51256", + "5290", + "5296", + "5727", + "5728", + "6469", + "6491", + "6496", + "6608", + "6611", + "6997", + "7050", + "7248", + "7249", + "7546", + "84976", + "8738", + "8893", + "8925", + "8928", + "894", + "92335", + "9681" + ] + }, + "HP:0031284": { + "Name": "Flushing", + "Task": "Monarch", + "Genes": [ + "10297", + "10641", + "171023", + "1743", + "1788", + "2034", + "217", + "2271", + "23095", + "29072", + "2908", + "30817", + "3172", + "3248", + "3815", + "4128", + "4149", + "4191", + "4763", + "477", + "478", + "546", + "54790", + "54949", + "55654", + "5979", + "6261", + "6335", + "6389", + "6390", + "6391", + "6392", + "64072", + "6427", + "64324", + "6507", + "673", + "7157", + "7428", + "773", + "8402", + "84196", + "861", + "867", + "9101", + "9681" + ] + }, + "HP:0009738": { + "Name": "Abnormal antihelix morphology", + "Task": "Monarch", + "Genes": [ + "10157", + "132884", + "1387", + "1861", + "2121", + "2138", + "2261", + "2263", + "2290", + "22930", + "2316", + "23431", + "23511", + "23522", + "23556", + "25782", + "2736", + "284252", + "29920", + "29998", + "3981", + "4247", + "5075", + "51322", + "5447", + "54888", + "6299", + "63932", + "64132", + "6567", + "6929", + "7025", + "7291", + "79005", + "7994", + "80055", + "8241", + "9230", + "9343", + "9401", + "9896" + ] + }, + "HP:0007099": { + "Name": "Chiari type I malformation", + "Task": "Monarch", + "Genes": [ + "10274", + "10283", + "11128", + "1387", + "1436", + "148867", + "161742", + "1717", + "1788", + "2033", + "2077", + "2263", + "22943", + "23516", + "25970", + "26040", + "284058", + "29072", + "3020", + "3265", + "3845", + "4094", + "4774", + "4791", + "4841", + "4854", + "4858", + "5076", + "51085", + "5500", + "55703", + "57551", + "5888", + "5977", + "63895", + "6497", + "6608", + "79947", + "80036", + "8318", + "8799", + "9772", + "9839" + ] + }, + "HP:0011360": { + "Name": "Acquired abnormal hair pattern", + "Task": "Monarch", + "Genes": [ + "10084", + "10269", + "10682", + "1106", + "1173", + "1308", + "147409", + "1760", + "1893", + "215", + "23404", + "2702", + "2703", + "284252", + "2908", + "324", + "3265", + "340533", + "3559", + "3691", + "3887", + "3889", + "3892", + "3914", + "4000", + "51702", + "54361", + "55806", + "6323", + "641", + "64840", + "6513", + "6529", + "7053", + "7555", + "7840", + "81607", + "8242", + "84168", + "8517", + "8626", + "8831" + ] + }, + "HP:0004398": { + "Name": "Peptic ulcer", + "Task": "Monarch", + "Genes": [ + "1026", + "1027", + "1030", + "1031", + "1175", + "135886", + "155368", + "155382", + "171023", + "2629", + "26608", + "2767", + "2969", + "3248", + "3815", + "3984", + "493856", + "51085", + "5321", + "54790", + "57492", + "5982", + "6427", + "653361", + "6578", + "6774", + "6804", + "7458", + "7461", + "7466", + "79577", + "84163", + "84277", + "8468", + "9031", + "9275", + "9569" + ] + }, + "HP:0009725": { + "Name": "Bladder neoplasm", + "Task": "Monarch", + "Genes": [ + "10395", + "1499", + "1630", + "201163", + "2033", + "207", + "2261", + "25788", + "27030", + "324", + "3265", + "3845", + "4163", + "4893", + "4913", + "5157", + "5290", + "5320", + "538", + "54894", + "5728", + "5782", + "5795", + "581", + "5925", + "595", + "6714", + "673", + "6790", + "699", + "701", + "7097", + "7157", + "8313" + ] + }, + "HP:0100767": { + "Name": "Abnormal placenta morphology", + "Task": "Monarch", + "Genes": [ + "10269", + "1028", + "1029", + "10699", + "11200", + "2188", + "219736", + "2261", + "2321", + "26227", + "2720", + "3075", + "3339", + "3426", + "3479", + "3481", + "3784", + "3815", + "388015", + "3930", + "4000", + "4179", + "4193", + "4593", + "5324", + "5325", + "54903", + "6711", + "6794", + "7157", + "8091", + "8788", + "8915", + "9652" + ] + }, + "HP:0005222": { + "Name": "Bowel diverticulosis", + "Task": "Monarch", + "Genes": [ + "10516", + "1289", + "135886", + "155368", + "155382", + "1890", + "197131", + "2065", + "207", + "26608", + "2969", + "30008", + "3984", + "4052", + "4292", + "4436", + "51085", + "5290", + "5310", + "5428", + "5728", + "5832", + "5979", + "5982", + "653361", + "6774", + "6804", + "7458", + "7461", + "84163", + "84277", + "8468", + "9031", + "9275", + "9569" + ] + }, + "HP:0012288": { + "Name": "Neoplasm of head and neck", + "Task": "Monarch", + "Genes": [ + "10043", + "1029", + "11178", + "11200", + "115908", + "1287", + "1288", + "1499", + "1630", + "2271", + "2304", + "3026", + "324", + "3815", + "4193", + "4481", + "4629", + "50940", + "51008", + "5156", + "51741", + "5573", + "5885", + "6049", + "6389", + "6390", + "6391", + "641", + "6772", + "6794", + "7048", + "7157", + "7373", + "79651", + "79719", + "9562", + "9940" + ] + }, + "HP:0002862": { + "Name": "Bladder carcinoma", + "Task": "Monarch", + "Genes": [ + "10395", + "1499", + "1630", + "201163", + "2033", + "207", + "2261", + "25788", + "27030", + "324", + "3265", + "3845", + "4163", + "4893", + "5157", + "5290", + "5320", + "538", + "54894", + "5728", + "5782", + "5795", + "581", + "5925", + "595", + "6714", + "673", + "6790", + "699", + "701", + "7097", + "7157", + "8313" + ] + }, + "HP:0007642": { + "Name": "Congenital stationary night blindness", + "Task": "Monarch", + "Genes": [ + "2263", + "2779", + "2784", + "2916", + "345193", + "440435", + "4646", + "5158", + "57010", + "5959", + "5961", + "6010", + "6011", + "6017", + "60506", + "6295", + "778", + "9187", + "93589" + ] + }, + "HP:0100685": { + "Name": "Abnormal Sharpey fiber morphology", + "Task": "Monarch", + "Genes": [ + "1175", + "1188", + "1758", + "249", + "26191", + "2767", + "3106", + "3373", + "3559", + "3560", + "3758", + "4000", + "4210", + "4854", + "486", + "4982", + "5159", + "5167", + "5251", + "538", + "540", + "56172", + "5771", + "6557", + "6559", + "6775", + "7132", + "7486", + "79577", + "79722", + "919", + "9247" + ] + }, + "HP:0002253": { + "Name": "Colonic diverticula", + "Task": "Monarch", + "Genes": [ + "135886", + "155368", + "155382", + "1890", + "197131", + "2065", + "207", + "26608", + "2969", + "3984", + "4292", + "4436", + "51085", + "5290", + "5310", + "5428", + "5728", + "5979", + "5982", + "653361", + "6774", + "6804", + "7458", + "7461", + "84163", + "84277", + "8468", + "9031", + "9275", + "9569" + ] + }, + "HP:0045056": { + "Name": "Abnormal circulating alpha-fetoprotein concentration", + "Task": "Monarch", + "Genes": [ + "10165", + "10459", + "11284", + "124454", + "1499", + "165918", + "1716", + "174", + "2184", + "2261", + "23064", + "2313", + "23533", + "23556", + "26137", + "3815", + "4233", + "472", + "4868", + "4952", + "5190", + "5311", + "5314", + "54903", + "54914", + "55768", + "5631", + "6794", + "7066", + "8915", + "9971" + ] + }, + "HP:0003765": { + "Name": "Psoriasiform dermatitis", + "Task": "Monarch", + "Genes": [ + "10804", + "130340", + "1493", + "1828", + "1956", + "2313", + "2625", + "26525", + "2706", + "3106", + "3107", + "3119", + "3123", + "3559", + "359948", + "3981", + "4791", + "50943", + "5293", + "5297", + "55315", + "55806", + "57217", + "6307", + "64919", + "6868", + "79092", + "8626", + "8913", + "90417" + ] + }, + "HP:0006740": { + "Name": "Transitional cell carcinoma of the bladder", + "Task": "Monarch", + "Genes": [ + "10395", + "1499", + "1630", + "201163", + "2033", + "207", + "2261", + "25788", + "27030", + "324", + "3265", + "3845", + "4163", + "4893", + "5157", + "5290", + "5320", + "5728", + "5782", + "5795", + "581", + "5925", + "595", + "6714", + "673", + "6790", + "699", + "701", + "7097", + "7157", + "8313" + ] + }, + "HP:0004381": { + "Name": "Supravalvular aortic stenosis", + "Task": "Monarch", + "Genes": [ + "10516", + "135886", + "155368", + "155382", + "22800", + "255738", + "26119", + "26608", + "2969", + "30008", + "338", + "3949", + "3984", + "4052", + "51085", + "5982", + "64240", + "64241", + "653361", + "6804", + "7458", + "7461", + "84163", + "84277", + "8468", + "85440", + "9031", + "9275", + "9569" + ] + }, + "HP:0006254": { + "Name": "Elevated circulating alpha-fetoprotein concentration", + "Task": "Monarch", + "Genes": [ + "10165", + "10459", + "11284", + "124454", + "1499", + "165918", + "1716", + "174", + "2184", + "2261", + "23064", + "2313", + "23533", + "23556", + "26137", + "3815", + "4233", + "472", + "4868", + "4952", + "5190", + "5311", + "54903", + "54914", + "55768", + "5631", + "6794", + "7066", + "8915", + "9971" + ] + }, + "HP:0009098": { + "Name": "Chronic oral candidiasis", + "Task": "Monarch", + "Genes": [ + "10758", + "11151", + "1794", + "23765", + "326", + "3551", + "3559", + "3561", + "3718", + "4598", + "51311", + "5293", + "6097", + "64170", + "64421", + "6772", + "6774", + "7037", + "7535", + "84905", + "8546", + "90417", + "915", + "916", + "917", + "919", + "959", + "9948" + ] + }, + "HP:0011376": { + "Name": "Abnormal morphology of the vestibule of the inner ear", + "Task": "Monarch", + "Genes": [ + "200734", + "2138", + "2263", + "22800", + "22808", + "2299", + "3265", + "3766", + "3845", + "4893", + "5172", + "5298", + "54845", + "55636", + "5781", + "5894", + "5922", + "6016", + "6237", + "6495", + "6654", + "6655", + "6663", + "6885", + "80000", + "8216", + "867", + "93986", + "9723" + ] + }, + "HP:0010286": { + "Name": "Abnormal salivary gland morphology", + "Task": "Monarch", + "Genes": [ + "2255", + "2261", + "2263", + "22909", + "27030", + "2956", + "3123", + "3664", + "3845", + "4072", + "4292", + "4436", + "488", + "4967", + "5290", + "5324", + "5378", + "5395", + "56244", + "567", + "5696", + "57822", + "64127", + "6949", + "7048", + "7852", + "8626" + ] + }, + "HP:0007021": { + "Name": "Pain insensitivity", + "Task": "Monarch", + "Genes": [ + "10059", + "10522", + "10558", + "10743", + "11280", + "219854", + "253738", + "25923", + "2892", + "4204", + "4358", + "4803", + "4914", + "51062", + "55699", + "55768", + "55775", + "59335", + "6335", + "7204", + "781", + "80036", + "80821", + "8218", + "8242", + "85446", + "9517", + "9759" + ] + }, + "HP:0031020": { + "Name": "Bone marrow hypercellularity", + "Task": "Monarch", + "Genes": [ + "10125", + "171023", + "355", + "356", + "359948", + "3717", + "3815", + "4352", + "4869", + "4926", + "5371", + "54790", + "54880", + "5573", + "5580", + "5914", + "6208", + "6427", + "64859", + "6714", + "6774", + "6777", + "7704", + "7852", + "79718", + "811", + "81608", + "843", + "9056" + ] + }, + "HP:0033835": { + "Name": "Abnormal renal vascular morphology", + "Task": "Monarch", + "Genes": [ + "10043", + "182", + "255738", + "26119", + "338", + "3949", + "4149", + "4763", + "50628", + "51085", + "5167", + "51816", + "5456", + "55249", + "55654", + "55697", + "57104", + "57728", + "5979", + "64240", + "64241", + "6772", + "7428", + "79796", + "9896" + ] + }, + "HP:0004963": { + "Name": "Calcification of the aorta", + "Task": "Monarch", + "Genes": [ + "103", + "10535", + "10568", + "11277", + "134353", + "140628", + "1482", + "255738", + "25939", + "26119", + "2629", + "338", + "368", + "3949", + "4091", + "4851", + "5167", + "64135", + "64240", + "64241", + "79621", + "84153" + ] + }, + "HP:0008776": { + "Name": "Abnormal renal artery morphology", + "Task": "Monarch", + "Genes": [ + "10043", + "182", + "255738", + "26119", + "338", + "3949", + "4149", + "4763", + "50628", + "51085", + "5167", + "51816", + "5456", + "55249", + "55654", + "55697", + "57104", + "5979", + "64240", + "64241", + "6772", + "7428", + "79796", + "9896" + ] + }, + "HP:0002232": { + "Name": "Patchy alopecia", + "Task": "Monarch", + "Genes": [ + "10269", + "10682", + "1308", + "147409", + "1893", + "23404", + "284252", + "3265", + "3559", + "3691", + "3887", + "3889", + "3892", + "3914", + "4000", + "51702", + "55806", + "641", + "64840", + "7053", + "81607", + "8242", + "8517", + "8626" + ] + }, + "HP:0004150": { + "Name": "Abnormal 3rd finger morphology", + "Task": "Monarch", + "Genes": [ + "1277", + "1280", + "1836", + "2019", + "2263", + "22856", + "23327", + "2737", + "2778", + "3549", + "388015", + "50814", + "51651", + "5293", + "6909", + "6926", + "7291", + "81857", + "8200", + "8243", + "8788", + "8985", + "90417", + "91461" + ] + }, + "HP:0030355": { + "Name": "Abnormal circulating interferon-gamma concentration", + "Task": "Monarch", + "Genes": [ + "10043", + "103", + "10535", + "11277", + "134353", + "201294", + "25939", + "26191", + "3431", + "3559", + "3560", + "5422", + "5551", + "5696", + "5771", + "64135", + "6772", + "6775", + "6813", + "79621", + "79722", + "84153", + "8676", + "919" + ] + }, + "HP:0011116": { + "Name": "Abnormal circulating interferon concentration", + "Task": "Monarch", + "Genes": [ + "10043", + "103", + "10535", + "11277", + "134353", + "201294", + "25939", + "26191", + "3431", + "3559", + "3560", + "5422", + "5551", + "5696", + "5771", + "64135", + "6772", + "6775", + "6813", + "79621", + "79722", + "84153", + "8676", + "919" + ] + }, + "HP:0001100": { + "Name": "Heterochromia iridis", + "Task": "Monarch", + "Genes": [ + "10908", + "1123", + "1908", + "1910", + "207", + "2776", + "3265", + "3815", + "4010", + "4157", + "4254", + "4286", + "4948", + "5077", + "57167", + "5728", + "60", + "6591", + "6663", + "71", + "7299", + "80153", + "8518", + "9935" + ] + }, + "HP:0033836": { + "Name": "Abnormal intrarenal artery morphology", + "Task": "Monarch", + "Genes": [ + "10043", + "182", + "255738", + "26119", + "338", + "3949", + "4149", + "4763", + "50628", + "51085", + "5167", + "51816", + "5456", + "55249", + "55654", + "55697", + "57104", + "5979", + "64240", + "64241", + "6772", + "7428", + "79796", + "9896" + ] + }, + "HP:0001370": { + "Name": "Rheumatoid arthritis", + "Task": "Monarch", + "Genes": [ + "144811", + "26191", + "3123", + "3559", + "3560", + "3569", + "3586", + "3615", + "4261", + "4282", + "4795", + "4929", + "51744", + "54", + "5771", + "64421", + "6583", + "6775", + "79722", + "919" + ] + }, + "HP:0200064": { + "Name": "Asymmetry of iris pigmentation", + "Task": "Monarch", + "Genes": [ + "10908", + "1123", + "1908", + "1910", + "207", + "2776", + "3265", + "3815", + "4010", + "4157", + "4254", + "4286", + "4948", + "5077", + "57167", + "5728", + "60", + "6591", + "6663", + "71", + "7299", + "80153", + "8518", + "9935" + ] + }, + "HP:0005483": { + "Name": "Abnormal epiglottis morphology", + "Task": "Monarch", + "Genes": [ + "10262", + "2255", + "2261", + "2263", + "22858", + "2304", + "26005", + "26040", + "2737", + "341640", + "3852", + "3861", + "427", + "4750", + "51626", + "5396", + "55112", + "57539", + "57560", + "710", + "79659", + "89891", + "9775" + ] + }, + "HP:0002780": { + "Name": "Bronchomalacia", + "Task": "Monarch", + "Genes": [ + "1836", + "2077", + "222663", + "2260", + "2263", + "2317", + "23594", + "3265", + "3423", + "3572", + "374879", + "3852", + "3861", + "4629", + "5000", + "51053", + "5447", + "5879", + "6662", + "745", + "79813", + "7994", + "8425" + ] + }, + "HP:0012569": { + "Name": "Delayed menarche", + "Task": "Monarch", + "Genes": [ + "10059", + "10165", + "10269", + "10273", + "200734", + "22800", + "22808", + "2488", + "2690", + "3845", + "4000", + "4893", + "5192", + "5781", + "5894", + "5922", + "6016", + "6237", + "6654", + "6655", + "7840", + "8216", + "867" + ] + }, + "HP:4000054": { + "Name": "Exanthem", + "Task": "Monarch", + "Genes": [ + "114548", + "171023", + "201294", + "2038", + "286", + "3123", + "3815", + "4598", + "54790", + "5551", + "56244", + "57169", + "6427", + "6521", + "6708", + "6710", + "6813", + "7132", + "8517", + "861", + "867", + "8676" + ] + }, + "HP:0001971": { + "Name": "Hypersplenism", + "Task": "Monarch", + "Genes": [ + "10125", + "171023", + "199221", + "2629", + "3043", + "355", + "356", + "3988", + "4851", + "5314", + "54790", + "5580", + "5660", + "6427", + "6609", + "7289", + "83737", + "843", + "861", + "867", + "950", + "9968" + ] + }, + "HP:0011493": { + "Name": "Central opacification of the cornea", + "Task": "Monarch", + "Genes": [ + "1545", + "182", + "2296", + "2301", + "26191", + "2778", + "30813", + "3559", + "3560", + "4070", + "5080", + "5308", + "5771", + "58495", + "64127", + "6775", + "7045", + "79722", + "80781", + "8671", + "919" + ] + }, + "HP:0012804": { + "Name": "Corneal ulceration", + "Task": "Monarch", + "Genes": [ + "10269", + "1161", + "2074", + "2255", + "2261", + "2263", + "2303", + "26128", + "2623", + "2706", + "2934", + "4000", + "4358", + "4547", + "4914", + "54101", + "55768", + "59335", + "6898", + "7389", + "7390", + "8518" + ] + }, + "HP:0001920": { + "Name": "Renal artery stenosis", + "Task": "Monarch", + "Genes": [ + "10043", + "182", + "255738", + "26119", + "338", + "3949", + "4149", + "4763", + "50628", + "51085", + "5167", + "5456", + "55249", + "55654", + "55697", + "5979", + "64240", + "64241", + "6772", + "7428", + "9896" + ] + }, + "HP:0025409": { + "Name": "Abnormal spleen physiology", + "Task": "Monarch", + "Genes": [ + "10125", + "171023", + "199221", + "2629", + "3043", + "355", + "356", + "3988", + "4851", + "5314", + "54790", + "5580", + "5660", + "6427", + "6609", + "7289", + "83737", + "843", + "861", + "867", + "950", + "9968" + ] + }, + "HP:0012056": { + "Name": "Cutaneous melanoma", + "Task": "Monarch", + "Genes": [ + "1019", + "1029", + "1294", + "1308", + "2071", + "3265", + "4157", + "4286", + "4312", + "4893", + "4948", + "5429", + "5894", + "673", + "6794", + "7486", + "7508", + "7852", + "8314" + ] + }, + "HP:0011365": { + "Name": "Patchy hypopigmentation of hair", + "Task": "Monarch", + "Genes": [ + "1123", + "1908", + "1910", + "26191", + "3265", + "355", + "3815", + "4000", + "4254", + "4286", + "5077", + "5184", + "54499", + "57167", + "6591", + "6663", + "7015", + "7299", + "7486", + "9935" + ] + }, + "HP:0030356": { + "Name": "Increased circulating interferon-gamma concentration", + "Task": "Monarch", + "Genes": [ + "103", + "10535", + "11277", + "134353", + "201294", + "25939", + "26191", + "3559", + "3560", + "5551", + "5696", + "5771", + "64135", + "6775", + "6813", + "79621", + "79722", + "84153", + "8676", + "919" + ] + }, + "HP:0011380": { + "Name": "Abnormal semicircular canal morphology", + "Task": "Monarch", + "Genes": [ + "200734", + "2263", + "22800", + "22808", + "3845", + "4893", + "54845", + "55636", + "5781", + "5894", + "5922", + "6016", + "6237", + "6654", + "6655", + "6663", + "80000", + "8216", + "867", + "93986", + "9723" + ] + }, + "HP:0011384": { + "Name": "Abnormality of the internal auditory canal", + "Task": "Monarch", + "Genes": [ + "10804", + "1123", + "207", + "2077", + "2138", + "2261", + "2263", + "2706", + "4762", + "5015", + "51082", + "5396", + "5456", + "57167", + "5728", + "6495", + "6949", + "7291", + "84172", + "9533", + "9935" + ] + }, + "HP:0040186": { + "Name": "Maculopapular exanthema", + "Task": "Monarch", + "Genes": [ + "114548", + "171023", + "201294", + "2038", + "286", + "3123", + "3815", + "54790", + "5551", + "56244", + "57169", + "6427", + "6521", + "6708", + "6710", + "6813", + "7132", + "8517", + "861", + "867", + "8676" + ] + }, + "HP:0010754": { + "Name": "Abnormality of the temporomandibular joint", + "Task": "Monarch", + "Genes": [ + "10262", + "10269", + "1277", + "1289", + "1290", + "1906", + "23230", + "26191", + "2773", + "3423", + "3559", + "3560", + "3908", + "4000", + "5332", + "5771", + "6775", + "79722", + "919" + ] + }, + "HP:0001978": { + "Name": "Extramedullary hematopoiesis", + "Task": "Monarch", + "Genes": [ + "10019", + "11311", + "2038", + "2263", + "23395", + "286", + "28962", + "3043", + "3717", + "4352", + "54790", + "6521", + "6708", + "6710", + "6718", + "760", + "811", + "8241", + "83706", + "8600" + ] + }, + "HP:0005181": { + "Name": "Premature coronary artery atherosclerosis", + "Task": "Monarch", + "Genes": [ + "1161", + "1593", + "19", + "2074", + "255738", + "26119", + "335", + "338", + "338328", + "348", + "3949", + "3990", + "4000", + "4040", + "4205", + "59", + "64240", + "64241", + "84984" + ] + }, + "HP:0003031": { + "Name": "Ulnar bowing", + "Task": "Monarch", + "Genes": [ + "112752", + "1301", + "1836", + "2261", + "2263", + "2316", + "3207", + "3911", + "4322", + "5116", + "54101", + "5447", + "5593", + "57020", + "6473", + "91179", + "9401", + "9469", + "9939" + ] + }, + "HP:0031394": { + "Name": "Abnormal CD4:CD8 ratio", + "Task": "Monarch", + "Genes": [ + "10125", + "1503", + "2624", + "3559", + "3560", + "4261", + "50619", + "51371", + "5238", + "5993", + "5994", + "7454", + "7535", + "84061", + "841", + "8546", + "8625", + "9094", + "9948" + ] + }, + "HP:0000727": { + "Name": "Frontal lobe dementia", + "Task": "Monarch", + "Genes": [ + "11315", + "120892", + "1436", + "2512", + "27429", + "400916", + "4137", + "5071", + "5420", + "54209", + "54832", + "5663", + "65018", + "6622", + "6908", + "7305", + "7345", + "8867", + "9829" + ] + }, + "HP:0100723": { + "Name": "Gastrointestinal stroma tumor", + "Task": "Monarch", + "Genes": [ + "115650", + "1380", + "23495", + "29851", + "359948", + "3815", + "4763", + "4790", + "4791", + "5156", + "5580", + "6389", + "6390", + "6391", + "6392", + "8742", + "930", + "931", + "975" + ] + }, + "HP:0025439": { + "Name": "Pharyngitis", + "Task": "Monarch", + "Genes": [ + "10312", + "1991", + "26191", + "2672", + "3106", + "3115", + "3123", + "331", + "4068", + "4791", + "55315", + "6728", + "6729", + "7132", + "7852", + "79087", + "81570", + "8974" + ] + }, + "HP:0007376": { + "Name": "Abnormal choroid plexus morphology", + "Task": "Monarch", + "Genes": [ + "1029", + "10472", + "1075", + "11200", + "112752", + "149371", + "2271", + "2294", + "23327", + "26040", + "26227", + "27031", + "2778", + "4193", + "4893", + "57688", + "6598", + "7157" + ] + }, + "HP:0008843": { + "Name": "Hip osteoarthritis", + "Task": "Monarch", + "Genes": [ + "1186", + "1280", + "1311", + "176", + "2487", + "26191", + "3106", + "3559", + "3560", + "4087", + "4088", + "5771", + "59341", + "6399", + "6775", + "79722", + "8200", + "919" + ] + }, + "HP:0002781": { + "Name": "Upper airway obstruction", + "Task": "Monarch", + "Genes": [ + "10020", + "10269", + "1301", + "2161", + "2261", + "2263", + "27245", + "3123", + "3423", + "3763", + "4000", + "5447", + "56244", + "57688", + "6452", + "65992", + "6662", + "7512" + ] + }, + "HP:0012122": { + "Name": "Anterior uveitis", + "Task": "Monarch", + "Genes": [ + "10273", + "144811", + "26191", + "3106", + "3123", + "326", + "3559", + "3560", + "3569", + "4282", + "5771", + "64127", + "6775", + "7128", + "79722", + "8517", + "919" + ] + }, + "HP:0100833": { + "Name": "Neoplasm of the small intestine", + "Task": "Monarch", + "Genes": [ + "26585", + "324", + "3815", + "4000", + "4089", + "4292", + "4436", + "4913", + "5156", + "6389", + "6390", + "6391", + "6392", + "657", + "6794", + "7373", + "7486", + "79719" + ] + }, + "HP:0000522": { + "Name": "Alacrima", + "Task": "Monarch", + "Genes": [ + "2255", + "2261", + "2263", + "26040", + "29926", + "5075", + "55768", + "56246", + "60684", + "6558", + "6663", + "667", + "8086", + "8518", + "8567", + "8626", + "9071", + "9091" + ] + }, + "HP:0005262": { + "Name": "Abnormal synovial membrane morphology", + "Task": "Monarch", + "Genes": [ + "10216", + "11128", + "2157", + "26191", + "3373", + "3559", + "3560", + "5604", + "5771", + "5781", + "6399", + "64127", + "673", + "6775", + "79722", + "919", + "9663" + ] + }, + "HP:0011197": { + "Name": "EEG with focal spike waves", + "Task": "Monarch", + "Genes": [ + "10815", + "1106", + "1173", + "23096", + "23732", + "2566", + "27286", + "2903", + "340533", + "57465", + "6304", + "6323", + "6513", + "6529", + "8831" + ] + }, + "HP:5200024": { + "Name": "Abnormal relationship", + "Task": "Monarch", + "Genes": [ + "1106", + "1173", + "2137", + "23096", + "25970", + "340533", + "4204", + "51", + "54413", + "57502", + "6323", + "6513", + "6529", + "81603", + "84340", + "8831" + ] + }, + "HP:0100769": { + "Name": "Synovitis", + "Task": "Monarch", + "Genes": [ + "11128", + "2157", + "26191", + "3373", + "3559", + "3560", + "5604", + "5771", + "5781", + "6399", + "64127", + "673", + "6775", + "79722", + "919", + "9663" + ] + }, + "HP:0000680": { + "Name": "Delayed eruption of primary teeth", + "Task": "Monarch", + "Genes": [ + "10522", + "10743", + "1161", + "1513", + "1909", + "2067", + "2072", + "2074", + "221496", + "2263", + "23096", + "2314", + "54539", + "816", + "860", + "865" + ] + }, + "HP:0001530": { + "Name": "Mild postnatal growth retardation", + "Task": "Monarch", + "Genes": [ + "1161", + "146059", + "147372", + "2074", + "26191", + "3483", + "3559", + "3560", + "51651", + "5573", + "5771", + "6775", + "79633", + "79722", + "919", + "9508" + ] + }, + "HP:3000022": { + "Name": "Abnormality of cartilage of external ear", + "Task": "Monarch", + "Genes": [ + "1906", + "2261", + "2263", + "22907", + "26123", + "26137", + "2773", + "368", + "4256", + "5167", + "5332", + "58499", + "63932", + "7291", + "7468", + "9653" + ] + }, + "HP:0005547": { + "Name": "Myeloproliferative disorder", + "Task": "Monarch", + "Genes": [ + "10019", + "171023", + "210", + "25", + "2623", + "2624", + "3717", + "3815", + "4352", + "5156", + "5159", + "54790", + "613", + "6427", + "811", + "861" + ] + }, + "HP:0011386": { + "Name": "Narrow internal auditory canal", + "Task": "Monarch", + "Genes": [ + "1123", + "207", + "2077", + "2261", + "2263", + "5015", + "51082", + "5396", + "57167", + "5728", + "6949", + "7291", + "84172", + "9533", + "9935" + ] + }, + "HP:0010874": { + "Name": "Tendon xanthomatosis", + "Task": "Monarch", + "Genes": [ + "1071", + "10842", + "1593", + "2053", + "255738", + "26119", + "2690", + "335", + "336", + "338", + "348", + "3949", + "64240", + "64241", + "7274" + ] + }, + "HP:0012135": { + "Name": "Abnormal granulocytopoietic cell morphology", + "Task": "Monarch", + "Genes": [ + "1441", + "171023", + "23451", + "2623", + "3394", + "3579", + "3815", + "4926", + "54790", + "5914", + "6141", + "6154", + "6427", + "6730", + "7852" + ] + }, + "HP:0005086": { + "Name": "Knee osteoarthritis", + "Task": "Monarch", + "Genes": [ + "10216", + "1280", + "1298", + "1301", + "26191", + "3559", + "3560", + "4087", + "4088", + "4322", + "5771", + "6399", + "6775", + "79722", + "919" + ] + }, + "HP:0000495": { + "Name": "Recurrent corneal erosions", + "Task": "Monarch", + "Genes": [ + "1308", + "1497", + "2255", + "2261", + "2263", + "2303", + "2706", + "3850", + "4166", + "4358", + "4914", + "51360", + "7045", + "8518" + ] + }, + "HP:0000585": { + "Name": "Band keratopathy", + "Task": "Monarch", + "Genes": [ + "182", + "26191", + "2778", + "30813", + "3559", + "3560", + "5771", + "58495", + "64127", + "6775", + "79722", + "80781", + "8671", + "919" + ] + }, + "HP:0011482": { + "Name": "Abnormal lacrimal gland morphology", + "Task": "Monarch", + "Genes": [ + "10804", + "2255", + "2261", + "2263", + "2706", + "29957", + "3123", + "56244", + "6663", + "668" + ] + }, + "HP:0009792": { + "Name": "Teratoma", + "Task": "Monarch", + "Genes": [ + "10297", + "2261", + "26040", + "29072", + "3110", + "3815", + "4437", + "50940", + "5573", + "64324", + "6794", + "8915" + ] + }, + "HP:0010565": { + "Name": "Aplasia/Hypoplasia of the Epiglottis", + "Task": "Monarch", + "Genes": [ + "10262", + "2255", + "2261", + "2263", + "22858", + "26005", + "26040", + "2737", + "341640", + "4750", + "51626", + "5396", + "9775" + ] + }, + "HP:0012888": { + "Name": "Abnormal uterine cervix morphology", + "Task": "Monarch", + "Genes": [ + "1027", + "1277", + "1281", + "1289", + "1290", + "2261", + "2624", + "367", + "5340", + "6736", + "6794", + "7852", + "8379" + ] + }, + "HP:0034251": { + "Name": "Abnormal corneal reflex", + "Task": "Monarch", + "Genes": [ + "3572", + "3977", + "440138", + "4762", + "4914", + "54463", + "547", + "6335", + "65125", + "667", + "8218", + "8518", + "85446" + ] + }, + "HP:0001785": { + "Name": "Ankle swelling", + "Task": "Monarch", + "Genes": [ + "2324", + "26191", + "285", + "3559", + "3560", + "57165", + "5771", + "6775", + "79722", + "919", + "9780", + "9935" + ] + }, + "HP:0040313": { + "Name": "Oligoarthritis", + "Task": "Monarch", + "Genes": [ + "10043", + "26191", + "26525", + "3106", + "3559", + "3560", + "4210", + "5771", + "6775", + "7132", + "79722", + "919" + ] + }, + "HP:0410019": { + "Name": "Epigastric pain", + "Task": "Monarch", + "Genes": [ + "10699", + "11330", + "1499", + "219736", + "2321", + "3075", + "3426", + "4179", + "4233", + "6690", + "7840" + ] + }, + "HP:0009895": { + "Name": "Abnormality of the crus of the helix", + "Task": "Monarch", + "Genes": [ + "1906", + "2261", + "2263", + "22907", + "26123", + "2773", + "5332", + "58499", + "63932", + "7291", + "7468", + "9653" + ] + }, + "HP:0012108": { + "Name": "Open angle glaucoma", + "Task": "Monarch", + "Genes": [ + "10133", + "11232", + "136371", + "1545", + "2202", + "2255", + "2261", + "2263", + "4010", + "4653", + "4909" + ] + }, + "HP:0007605": { + "Name": "Excessive wrinkling of palmar skin", + "Task": "Monarch", + "Genes": [ + "1475", + "2261", + "2263", + "22808", + "23545", + "5351", + "6016", + "715", + "79718", + "8216", + "84627", + "9333" + ] + }, + "HP:0004416": { + "Name": "Precocious atherosclerosis", + "Task": "Monarch", + "Genes": [ + "1071", + "116519", + "1593", + "255738", + "26119", + "338", + "3949", + "4000", + "4023", + "64240", + "64241", + "7148" + ] + }, + "HP:0000799": { + "Name": "Renal steatosis", + "Task": "Monarch", + "Genes": [ + "2138", + "255738", + "26119", + "338", + "348", + "3949", + "5105", + "5106", + "64240", + "64241", + "6495" + ] + }, + "HP:0011134": { + "Name": "Low-grade fever", + "Task": "Monarch", + "Genes": [ + "26191", + "3559", + "3560", + "3717", + "4352", + "54790", + "5771", + "6775", + "79722", + "811", + "919" + ] + }, + "HP:0010183": { + "Name": "Abnormality of the middle phalanges of the toes", + "Task": "Monarch", + "Genes": [ + "2260", + "2261", + "2263", + "285203", + "3239", + "3549", + "51715", + "55697", + "59341", + "9241", + "9896" + ] + }, + "HP:0008000": { + "Name": "Decreased corneal reflex", + "Task": "Monarch", + "Genes": [ + "3572", + "3977", + "440138", + "4914", + "54463", + "547", + "6335", + "65125", + "8218", + "8518", + "85446" + ] + }, + "HP:0001094": { + "Name": "Iridocyclitis", + "Task": "Monarch", + "Genes": [ + "10273", + "26191", + "3123", + "326", + "3559", + "3560", + "5771", + "64127", + "6775", + "79722", + "919" + ] + }, + "HP:0001054": { + "Name": "Numerous nevi", + "Task": "Monarch", + "Genes": [ + "1019", + "220296", + "2261", + "284058", + "3265", + "4893", + "5290", + "5728", + "673", + "6794", + "7703" + ] + }, + "HP:0100686": { + "Name": "Enthesitis", + "Task": "Monarch", + "Genes": [ + "1758", + "26191", + "3106", + "3559", + "3560", + "5167", + "5251", + "5771", + "6775", + "79722", + "919" + ] + }, + "HP:0033222": { + "Name": "Decreased CD4:CD8 ratio", + "Task": "Monarch", + "Genes": [ + "1503", + "2624", + "3559", + "3560", + "50619", + "7454", + "84061", + "841", + "8546", + "9094" + ] + }, + "HP:0005349": { + "Name": "Hypoplasia of the epiglottis", + "Task": "Monarch", + "Genes": [ + "10262", + "2255", + "2261", + "2263", + "22858", + "26040", + "2737", + "341640", + "4750", + "5396" + ] + }, + "HP:0007925": { + "Name": "Lacrimal duct aplasia", + "Task": "Monarch", + "Genes": [ + "2138", + "2255", + "2261", + "2263", + "23426", + "341640", + "6495", + "80144", + "8085", + "8295" + ] + }, + "HP:3000062": { + "Name": "Abnormal internal carotid artery morphology", + "Task": "Monarch", + "Genes": [ + "255738", + "26119", + "3198", + "338", + "3949", + "4010", + "4763", + "54820", + "64240", + "64241" + ] + }, + "MONDO:0045024": { + "Name": "cancer or benign tumor", + "Task": "Mondo", + "Genes": [ + "10019", + "1027", + "1028", + "10320", + "10395", + "10456", + "1050", + "11178", + "11200", + "11236", + "115650", + "1181", + "1316", + "1326", + "1380", + "1385", + "1493", + "1499", + "150365", + "1540", + "154288", + "1630", + "171023", + "1736", + "1743", + "1788", + "1956", + "199713", + "201163", + "2033", + "2064", + "207", + "2099", + "2120", + "2130", + "2131", + "2132", + "219285", + "2239", + "2260", + "2261", + "2263", + "2271", + "2308", + "23092", + "23137", + "2322", + "2324", + "23405", + "23451", + "23495", + "25", + "25788", + "2591", + "25913", + "2623", + "26277", + "2642", + "26610", + "27030", + "2719", + "2778", + "2782", + "2956", + "29851", + "324", + "3265", + "338657", + "3481", + "3482", + "355", + "356", + "359948", + "3621", + "3659", + "3717", + "3784", + "3791", + "3815", + "3845", + "3851", + "3860", + "4072", + "4089", + "4163", + "4233", + "4292", + "4330", + "4352", + "4436", + "4437", + "4507", + "4595", + "4601", + "4609", + "463", + "4683", + "4763", + "4771", + "4790", + "4791", + "4854", + "4869", + "4893", + "4913", + "4926", + "4968", + "4978", + "5002", + "5071", + "5073", + "5077", + "5080", + "5081", + "50814", + "5155", + "5157", + "5159", + "51741", + "51750", + "5290", + "5308", + "5324", + "5378", + "5395", + "545", + "54765", + "54790", + "54809", + "54894", + "54949", + "55135", + "5519", + "55193", + "5546", + "55505", + "5551", + "55651", + "55719", + "5573", + "5618", + "5728", + "5781", + "5782", + "5784", + "5795", + "581", + "59067", + "5914", + "5925", + "5979", + "60", + "6041", + "6049", + "613", + "6208", + "6389", + "6390", + "6391", + "63916", + "6392", + "6452", + "6455", + "64682", + "64858", + "657", + "6598", + "6714", + "672", + "673", + "675", + "6757", + "6774", + "6794", + "6886", + "6887", + "6927", + "699", + "701", + "7015", + "7030", + "7048", + "7157", + "7248", + "7249", + "7298", + "7428", + "7454", + "7490", + "79058", + "79577", + "8013", + "8021", + "8028", + "8074", + "811", + "8148", + "8301", + "8312", + "8313", + "8314", + "83550", + "8379", + "83932", + "8402", + "841", + "843", + "8438", + "846", + "84868", + "8493", + "861", + "8643", + "867", + "8795", + "8915", + "8929", + "8930", + "9049", + "91", + "9101", + "91754", + "9247", + "930", + "931", + "9319", + "9365", + "9401", + "9702", + "975", + "9821", + "987", + "9927", + "999" + ] + }, + "MONDO:0023370": { + "Name": "neoplastic disease or syndrome", + "Task": "Mondo", + "Genes": [ + "10019", + "1027", + "1028", + "10320", + "10395", + "10456", + "1050", + "11178", + "11200", + "11236", + "115650", + "1181", + "1316", + "1326", + "1380", + "1385", + "1493", + "1499", + "150365", + "1540", + "154288", + "1630", + "171023", + "1736", + "1743", + "1788", + "1956", + "199713", + "201163", + "2033", + "2064", + "207", + "2099", + "2120", + "2130", + "2131", + "2132", + "219285", + "2239", + "2260", + "2261", + "2263", + "2271", + "2308", + "23092", + "23137", + "2322", + "2324", + "23405", + "23451", + "23495", + "25", + "25788", + "2591", + "25913", + "2623", + "26277", + "2642", + "26610", + "27030", + "2719", + "2778", + "2782", + "2956", + "29851", + "324", + "3265", + "338657", + "3481", + "3482", + "355", + "356", + "359948", + "3621", + "3659", + "3717", + "3784", + "3791", + "3815", + "3845", + "3851", + "3860", + "4072", + "4089", + "4163", + "4233", + "4292", + "4330", + "4352", + "4436", + "4437", + "4507", + "4595", + "4601", + "4609", + "463", + "4683", + "4763", + "4771", + "4790", + "4791", + "4854", + "4869", + "4893", + "4913", + "4926", + "4968", + "4978", + "5002", + "5071", + "5073", + "5077", + "5080", + "5081", + "50814", + "5155", + "5157", + "5159", + "51741", + "51750", + "5290", + "5308", + "5324", + "5378", + "5395", + "545", + "54765", + "54790", + "54809", + "54894", + "54949", + "55135", + "5519", + "55193", + "5546", + "55505", + "5551", + "55651", + "55719", + "5573", + "5618", + "5728", + "5781", + "5782", + "5784", + "5795", + "581", + "59067", + "5914", + "5925", + "5979", + "60", + "6041", + "6049", + "613", + "6208", + "6389", + "6390", + "6391", + "63916", + "6392", + "6452", + "6455", + "64682", + "64858", + "657", + "6598", + "6714", + "672", + "673", + "675", + "6757", + "6774", + "6794", + "6886", + "6887", + "6927", + "699", + "701", + "7015", + "7030", + "7048", + "7157", + "7248", + "7249", + "7298", + "7428", + "7454", + "7490", + "79058", + "79577", + "8013", + "8021", + "8028", + "8074", + "811", + "8148", + "8301", + "8312", + "8313", + "8314", + "83550", + "8379", + "83932", + "8402", + "841", + "843", + "8438", + "846", + "84868", + "8493", + "861", + "8643", + "867", + "8795", + "8915", + "8929", + "8930", + "9049", + "91", + "9101", + "91754", + "9247", + "930", + "931", + "9319", + "9365", + "9401", + "9702", + "975", + "9821", + "987", + "9927", + "999" + ] + }, + "MONDO:0005070": { + "Name": "neoplasm", + "Task": "Mondo", + "Genes": [ + "10019", + "10395", + "1050", + "11178", + "11200", + "11236", + "1181", + "1316", + "1326", + "1385", + "1499", + "150365", + "154288", + "1630", + "171023", + "1743", + "1788", + "1956", + "199713", + "201163", + "2033", + "2064", + "207", + "2099", + "2120", + "2130", + "2131", + "2132", + "219285", + "2239", + "2260", + "2261", + "2263", + "2308", + "23092", + "2322", + "2324", + "23405", + "23451", + "25", + "25788", + "2591", + "2623", + "2642", + "26610", + "27030", + "2719", + "2778", + "2782", + "2956", + "324", + "3265", + "3481", + "3482", + "3621", + "3659", + "3717", + "3791", + "3815", + "3845", + "3851", + "3860", + "4072", + "4089", + "4163", + "4233", + "4292", + "4330", + "4352", + "4436", + "4437", + "4507", + "4595", + "4601", + "4609", + "463", + "4763", + "4771", + "4854", + "4869", + "4893", + "4926", + "4968", + "4978", + "5002", + "5071", + "5077", + "5080", + "5081", + "50814", + "5155", + "5157", + "5159", + "51741", + "5290", + "5308", + "5324", + "5378", + "5395", + "54765", + "54790", + "54809", + "54949", + "5519", + "55193", + "5546", + "5551", + "5573", + "5618", + "5728", + "5781", + "5782", + "5784", + "5795", + "581", + "5914", + "5925", + "5979", + "60", + "6041", + "6049", + "613", + "6208", + "6389", + "6390", + "6391", + "63916", + "6392", + "6455", + "6598", + "6714", + "672", + "673", + "675", + "6757", + "6774", + "6794", + "6927", + "699", + "701", + "7030", + "7048", + "7157", + "7248", + "7249", + "7428", + "7490", + "79058", + "79577", + "8013", + "8021", + "8028", + "8074", + "811", + "8148", + "8301", + "8312", + "8313", + "83550", + "8379", + "8402", + "841", + "843", + "8438", + "846", + "84868", + "8493", + "861", + "8643", + "867", + "8795", + "8915", + "9049", + "91", + "9101", + "91754", + "9247", + "9365", + "9821", + "9927", + "999" + ] + }, + "MONDO:0004335": { + "Name": "digestive system disorder", + "Task": "Mondo", + "Genes": [ + "10395", + "10398", + "105371045", + "10653", + "10845", + "11178", + "11231", + "113235", + "115908", + "1316", + "1371", + "1499", + "151648", + "1604", + "1630", + "169792", + "1811", + "182", + "1908", + "1910", + "1956", + "200931", + "201163", + "2033", + "2064", + "207", + "208", + "210", + "212", + "2235", + "2261", + "2263", + "22900", + "2316", + "256297", + "25788", + "25802", + "26128", + "26276", + "2642", + "2645", + "27030", + "27178", + "2746", + "2819", + "2956", + "2982", + "2984", + "3033", + "3145", + "3172", + "324", + "3431", + "346171", + "3482", + "3587", + "3588", + "3630", + "3643", + "3651", + "3659", + "3767", + "3815", + "3845", + "3875", + "389692", + "4041", + "4072", + "4089", + "4163", + "4175", + "4233", + "4292", + "4436", + "4481", + "4547", + "4595", + "4629", + "4638", + "4645", + "4760", + "4853", + "4893", + "50674", + "5078", + "50943", + "51008", + "51473", + "51520", + "5157", + "51594", + "51741", + "5205", + "5244", + "5256", + "5261", + "5290", + "5321", + "5324", + "5378", + "5395", + "5406", + "54532", + "54658", + "54894", + "54914", + "5498", + "5506", + "55107", + "55687", + "5589", + "5644", + "5651", + "5782", + "5795", + "581", + "59", + "6049", + "60561", + "6390", + "6391", + "640", + "644", + "6476", + "6499", + "6523", + "6550", + "6566", + "657", + "6663", + "6690", + "6714", + "673", + "6772", + "6794", + "6809", + "6833", + "6868", + "6927", + "6928", + "699", + "701", + "7048", + "7157", + "72", + "7389", + "7482", + "79053", + "79827", + "8312", + "8313", + "83483", + "841", + "843", + "8462", + "84701", + "8482", + "84936", + "8647", + "8694", + "9076", + "91", + "9414", + "9652", + "9971" + ] + }, + "MONDO:0019054": { + "Name": "congenital limb malformation", + "Task": "Mondo", + "Genes": [ + "1001", + "100128927", + "10262", + "10459", + "112", + "113189", + "1134", + "1144", + "1146", + "1147", + "126792", + "132884", + "1387", + "163175", + "1723", + "1749", + "1785", + "1861", + "1954", + "2033", + "2065", + "2072", + "2121", + "2122", + "2175", + "2176", + "2177", + "2178", + "2187", + "2188", + "2189", + "2201", + "2254", + "2260", + "2263", + "22856", + "23345", + "23396", + "23443", + "25836", + "25885", + "26276", + "27315", + "2733", + "2736", + "284098", + "285203", + "285489", + "29089", + "29895", + "29940", + "3207", + "3209", + "340419", + "342035", + "3516", + "3664", + "392255", + "4000", + "4038", + "4233", + "4256", + "4593", + "4604", + "4621", + "4626", + "4851", + "4927", + "51008", + "51339", + "5139", + "51715", + "51776", + "5307", + "54101", + "54567", + "55120", + "55159", + "55215", + "55650", + "55681", + "55869", + "55906", + "57167", + "57211", + "57222", + "57514", + "57572", + "57688", + "5885", + "5888", + "5889", + "5913", + "59341", + "6299", + "63894", + "63895", + "64327", + "672", + "675", + "6910", + "6913", + "7136", + "7140", + "7169", + "7291", + "7317", + "7473", + "7476", + "7516", + "79728", + "81839", + "8200", + "8243", + "83990", + "84464", + "84720", + "84992", + "8506", + "8626", + "91179", + "9126", + "91754", + "92002", + "9241", + "93210", + "9325", + "9343", + "9401", + "9427", + "9496", + "9759", + "9894", + "9928", + "9939" + ] + }, + "MONDO:0004992": { + "Name": "cancer", + "Task": "Mondo", + "Genes": [ + "10019", + "10395", + "1050", + "11178", + "11200", + "11236", + "1316", + "1326", + "1499", + "1630", + "1788", + "1956", + "201163", + "2033", + "2064", + "207", + "2099", + "2120", + "2130", + "2131", + "2239", + "2261", + "2263", + "2308", + "23092", + "2322", + "23405", + "25", + "25788", + "2623", + "26610", + "27030", + "2719", + "2956", + "324", + "3265", + "3481", + "3482", + "3621", + "3659", + "3717", + "3815", + "3845", + "4072", + "4089", + "4163", + "4233", + "4292", + "4352", + "4436", + "4437", + "4595", + "4601", + "463", + "4763", + "4869", + "4893", + "4926", + "4968", + "4978", + "5002", + "5071", + "5077", + "5080", + "5081", + "5155", + "5157", + "5159", + "51741", + "5290", + "5378", + "5395", + "54765", + "54949", + "5519", + "55193", + "5546", + "5728", + "5781", + "5782", + "5795", + "581", + "5914", + "5925", + "5979", + "6041", + "6049", + "613", + "6389", + "6390", + "6455", + "6598", + "6714", + "672", + "673", + "675", + "6757", + "6794", + "6927", + "699", + "701", + "7030", + "7048", + "7157", + "7428", + "7490", + "79058", + "79577", + "8013", + "8021", + "8028", + "811", + "8148", + "8301", + "8312", + "8313", + "8379", + "841", + "843", + "84868", + "8493", + "861", + "867", + "8795", + "91", + "9821", + "999" + ] + }, + "MONDO:0003900": { + "Name": "connective tissue disorder", + "Task": "Mondo", + "Genes": [ + "10019", + "10216", + "103", + "1050", + "1053", + "10535", + "11107", + "11200", + "11274", + "11277", + "114548", + "1280", + "1297", + "1298", + "1299", + "134353", + "1776", + "1788", + "1956", + "2000", + "2120", + "2131", + "2132", + "2200", + "2201", + "2260", + "23092", + "2322", + "2335", + "23586", + "25", + "25939", + "2623", + "26525", + "2778", + "324", + "340061", + "3557", + "3587", + "3588", + "368", + "3717", + "3815", + "3845", + "4087", + "4088", + "4210", + "4352", + "4507", + "4598", + "4763", + "4853", + "4854", + "4869", + "4926", + "50814", + "51284", + "51371", + "5155", + "5159", + "51816", + "5336", + "5351", + "54", + "5422", + "56172", + "5692", + "5696", + "5698", + "56984", + "5699", + "5781", + "58484", + "5914", + "5925", + "613", + "64127", + "64135", + "6452", + "6455", + "6497", + "6499", + "6714", + "6868", + "7042", + "7043", + "7046", + "7048", + "7128", + "7132", + "7317", + "79577", + "79621", + "8021", + "8028", + "81031", + "811", + "8301", + "83550", + "84153", + "846", + "84627", + "8517", + "861", + "8651", + "867", + "8985", + "90268", + "9049", + "9051", + "9101", + "91662", + "9247", + "9652", + "9663", + "9927" + ] + }, + "MONDO:0023603": { + "Name": "hereditary disorder of connective tissue", + "Task": "Mondo", + "Genes": [ + "10216", + "103", + "1053", + "10535", + "11107", + "11274", + "11277", + "114548", + "1280", + "1297", + "1298", + "1299", + "134353", + "1776", + "1956", + "2000", + "2131", + "2132", + "2200", + "2201", + "2260", + "23092", + "2335", + "23586", + "25", + "25939", + "26525", + "2778", + "324", + "340061", + "3557", + "3587", + "3588", + "368", + "4087", + "4088", + "4210", + "4507", + "4598", + "4763", + "4853", + "4854", + "50814", + "51371", + "5155", + "5159", + "51816", + "5336", + "5351", + "54", + "5422", + "56172", + "5692", + "5696", + "5698", + "56984", + "5699", + "5781", + "58484", + "613", + "64127", + "64135", + "6452", + "6497", + "6499", + "6714", + "6868", + "7042", + "7043", + "7046", + "7048", + "7128", + "7132", + "7317", + "79577", + "79621", + "81031", + "83550", + "84153", + "846", + "84627", + "867", + "8985", + "90268", + "9049", + "9051", + "9101", + "91662", + "9247", + "9652", + "9663" + ] + }, + "MONDO:0004805": { + "Name": "leukocyte disorder", + "Task": "Mondo", + "Genes": [ + "10320", + "10456", + "1053", + "1075", + "11005", + "1130", + "11311", + "115650", + "1380", + "1441", + "1535", + "1536", + "157680", + "1991", + "23495", + "2542", + "2672", + "28956", + "29760", + "29851", + "30011", + "3543", + "3570", + "3572", + "359948", + "3689", + "3815", + "4353", + "4609", + "4688", + "4689", + "4790", + "4791", + "5156", + "5293", + "5295", + "55343", + "56262", + "57379", + "5873", + "5880", + "59067", + "653361", + "6603", + "6688", + "6729", + "6774", + "6901", + "6929", + "695", + "7374", + "7454", + "7922", + "79415", + "79650", + "81570", + "81704", + "8288", + "83706", + "84522", + "84868", + "84905", + "8546", + "8915", + "92579", + "930", + "931", + "958", + "959", + "973", + "974", + "975", + "987" + ] + }, + "MONDO:0003225": { + "Name": "bone marrow disorder", + "Task": "Mondo", + "Genes": [ + "10019", + "10459", + "1050", + "114803", + "128", + "134218", + "1788", + "2034", + "2056", + "2057", + "2072", + "2120", + "2175", + "2176", + "2177", + "2178", + "2187", + "2188", + "2189", + "23092", + "2322", + "25", + "2623", + "29089", + "3039", + "3040", + "3043", + "3557", + "3717", + "375748", + "3815", + "3845", + "4194", + "4352", + "4763", + "4869", + "4926", + "5159", + "54583", + "55120", + "55159", + "55215", + "57697", + "5781", + "5888", + "5889", + "5914", + "613", + "6455", + "6714", + "672", + "6731", + "675", + "7157", + "7428", + "7516", + "79728", + "8021", + "8028", + "811", + "8301", + "83990", + "84464", + "861", + "867", + "9663" + ] + }, + "MONDO:0005020": { + "Name": "intestinal disorder", + "Task": "Mondo", + "Genes": [ + "10395", + "10398", + "113235", + "1499", + "151648", + "1604", + "1630", + "1908", + "1910", + "1956", + "201163", + "2033", + "207", + "2261", + "22900", + "2316", + "25788", + "25802", + "26128", + "27030", + "27178", + "2956", + "2984", + "324", + "3587", + "3588", + "3815", + "4072", + "4163", + "4175", + "4292", + "4436", + "4547", + "4629", + "4638", + "4893", + "50943", + "5157", + "5290", + "5321", + "5378", + "5395", + "55107", + "5782", + "5795", + "581", + "59", + "6390", + "6391", + "6476", + "6499", + "6523", + "6663", + "6714", + "673", + "6772", + "6868", + "699", + "701", + "7048", + "72", + "79827", + "8313", + "8694", + "9652" + ] + }, + "MONDO:0005626": { + "Name": "epithelial neoplasm", + "Task": "Mondo", + "Genes": [ + "11200", + "11236", + "1316", + "1499", + "201163", + "207", + "2099", + "2324", + "23405", + "26610", + "2778", + "324", + "3265", + "3482", + "3621", + "3791", + "3845", + "4089", + "4233", + "4601", + "463", + "4893", + "4968", + "5002", + "5080", + "5157", + "5290", + "54765", + "55193", + "5546", + "5728", + "5784", + "5925", + "5979", + "6041", + "63916", + "672", + "6794", + "6927", + "7030", + "7157", + "7428", + "79577", + "8312", + "83550", + "8379", + "841", + "8493", + "8795", + "9049", + "91", + "9101", + "9821", + "999" + ] + }, + "MONDO:0021223": { + "Name": "digestive system neoplasm", + "Task": "Mondo", + "Genes": [ + "10395", + "11178", + "1316", + "1499", + "1630", + "201163", + "2033", + "2064", + "207", + "2261", + "2263", + "25788", + "2642", + "27030", + "2956", + "324", + "3482", + "3659", + "3815", + "3845", + "4072", + "4089", + "4163", + "4233", + "4292", + "4436", + "4595", + "4893", + "5157", + "51741", + "5290", + "5324", + "5378", + "5395", + "5782", + "5795", + "581", + "6049", + "6390", + "6391", + "6714", + "673", + "6794", + "6927", + "699", + "701", + "7048", + "7157", + "8312", + "8313", + "841", + "843", + "91" + ] + }, + "MONDO:0015225": { + "Name": "arthrogryposis syndrome", + "Task": "Mondo", + "Genes": [ + "100128927", + "112", + "113189", + "1134", + "1144", + "1146", + "1147", + "163175", + "1785", + "1861", + "2065", + "2201", + "23345", + "23396", + "23443", + "26276", + "2733", + "285489", + "29895", + "29940", + "342035", + "3664", + "4233", + "4593", + "4604", + "4621", + "4626", + "4927", + "51008", + "54101", + "55681", + "55906", + "57211", + "57222", + "5913", + "63894", + "63895", + "7136", + "7140", + "7169", + "7317", + "8506", + "91179", + "91754", + "9325", + "9427", + "9928" + ] + }, + "MONDO:0002516": { + "Name": "digestive system cancer", + "Task": "Mondo", + "Genes": [ + "10395", + "11178", + "1316", + "1499", + "1630", + "201163", + "2033", + "2064", + "207", + "2261", + "2263", + "25788", + "27030", + "2956", + "324", + "3482", + "3659", + "3845", + "4072", + "4089", + "4163", + "4233", + "4292", + "4436", + "4595", + "4893", + "5157", + "51741", + "5290", + "5378", + "5395", + "5782", + "5795", + "581", + "6049", + "6714", + "673", + "6794", + "699", + "701", + "7048", + "7157", + "8312", + "8313", + "841", + "843", + "91" + ] + }, + "MONDO:0004993": { + "Name": "carcinoma", + "Task": "Mondo", + "Genes": [ + "11200", + "11236", + "1316", + "1499", + "201163", + "207", + "2099", + "23405", + "26610", + "324", + "3265", + "3482", + "3621", + "3845", + "4089", + "4233", + "4601", + "463", + "4893", + "4968", + "5002", + "5080", + "5157", + "5290", + "54765", + "55193", + "5546", + "5728", + "5925", + "5979", + "6041", + "672", + "6794", + "6927", + "7030", + "7157", + "7428", + "79577", + "8312", + "8379", + "841", + "8493", + "8795", + "91", + "9821", + "999" + ] + }, + "MONDO:0021581": { + "Name": "connective tissue neoplasm", + "Task": "Mondo", + "Genes": [ + "10019", + "1050", + "11200", + "1788", + "2120", + "2131", + "2132", + "2260", + "23092", + "2322", + "25", + "2623", + "2778", + "324", + "3717", + "3815", + "3845", + "4352", + "4507", + "4763", + "4869", + "4926", + "50814", + "5155", + "5159", + "5781", + "5914", + "5925", + "613", + "6455", + "6714", + "79577", + "8021", + "8028", + "811", + "8301", + "83550", + "846", + "861", + "867", + "9049", + "9101", + "9247", + "9927" + ] + }, + "MONDO:0002334": { + "Name": "hematopoietic and lymphoid system neoplasm", + "Task": "Mondo", + "Genes": [ + "10019", + "1050", + "171023", + "1788", + "2120", + "219285", + "23092", + "2322", + "23451", + "25", + "25788", + "2623", + "2782", + "3717", + "3815", + "3845", + "4352", + "4609", + "4763", + "4869", + "4926", + "5159", + "54790", + "54809", + "5551", + "5781", + "5914", + "613", + "6208", + "6455", + "6714", + "6774", + "8021", + "8028", + "811", + "8301", + "843", + "8438", + "84868", + "861", + "867", + "8915" + ] + }, + "MONDO:0019060": { + "Name": "bone neoplasm", + "Task": "Mondo", + "Genes": [ + "10019", + "1050", + "11200", + "1788", + "2120", + "2131", + "2132", + "23092", + "2322", + "25", + "2623", + "2778", + "3717", + "3815", + "3845", + "4352", + "4507", + "4763", + "4869", + "4926", + "50814", + "5159", + "5781", + "5914", + "5925", + "613", + "6455", + "6714", + "79577", + "8021", + "8028", + "811", + "8301", + "83550", + "846", + "861", + "867", + "9049", + "9101", + "9247" + ] + }, + "MONDO:0044881": { + "Name": "hematopoietic and lymphoid cell neoplasm", + "Task": "Mondo", + "Genes": [ + "10019", + "1050", + "1788", + "2120", + "23092", + "2322", + "25", + "25788", + "2623", + "3717", + "3815", + "3845", + "4352", + "4609", + "4763", + "4869", + "4926", + "5159", + "5551", + "5781", + "5914", + "613", + "6455", + "6714", + "8021", + "8028", + "811", + "8301", + "843", + "8438", + "84868", + "861", + "867", + "8915" + ] + }, + "MONDO:0002082": { + "Name": "endocrine gland neoplasm", + "Task": "Mondo", + "Genes": [ + "1181", + "1499", + "1743", + "2591", + "2778", + "324", + "3265", + "3482", + "4233", + "4893", + "5157", + "5290", + "54809", + "54949", + "5925", + "5979", + "6389", + "6390", + "6391", + "6392", + "6927", + "7157", + "7428", + "79577", + "8074", + "8312", + "83550", + "8402", + "841", + "846", + "9049", + "9101", + "9247", + "9365" + ] + }, + "MONDO:0015756": { + "Name": "myeloid hemopathy", + "Task": "Mondo", + "Genes": [ + "10019", + "1050", + "171023", + "1788", + "2120", + "219285", + "23092", + "2322", + "23451", + "25", + "2623", + "2782", + "3717", + "3815", + "3845", + "4352", + "4763", + "4869", + "4926", + "5159", + "54790", + "54809", + "5781", + "5914", + "613", + "6208", + "6455", + "6714", + "8021", + "8028", + "811", + "8301", + "861", + "867" + ] + }, + "MONDO:0021118": { + "Name": "intestinal neoplasm", + "Task": "Mondo", + "Genes": [ + "10395", + "1499", + "1630", + "201163", + "2033", + "207", + "2261", + "25788", + "27030", + "2956", + "324", + "3815", + "4072", + "4163", + "4292", + "4436", + "4893", + "5157", + "5290", + "5378", + "5395", + "5782", + "5795", + "581", + "6390", + "6391", + "6714", + "673", + "699", + "701", + "7048", + "8313" + ] + }, + "MONDO:0021635": { + "Name": "neurocristopathy", + "Task": "Mondo", + "Genes": [ + "1027", + "1743", + "1908", + "1910", + "1947", + "2261", + "2296", + "3265", + "3815", + "3845", + "3851", + "3860", + "4763", + "4893", + "50814", + "5290", + "5308", + "54949", + "55636", + "5979", + "60", + "6389", + "6390", + "6391", + "6392", + "6663", + "6899", + "8402", + "8518", + "8929", + "91754" + ] + }, + "MONDO:0000637": { + "Name": "musculoskeletal system cancer", + "Task": "Mondo", + "Genes": [ + "10019", + "1050", + "11200", + "1788", + "2120", + "23092", + "2322", + "25", + "2623", + "3717", + "3815", + "3845", + "4352", + "4763", + "4869", + "4926", + "5159", + "5781", + "5914", + "5925", + "613", + "6455", + "6714", + "8021", + "8028", + "811", + "8301", + "861", + "867" + ] + }, + "MONDO:0002129": { + "Name": "bone cancer", + "Task": "Mondo", + "Genes": [ + "10019", + "1050", + "11200", + "1788", + "2120", + "23092", + "2322", + "25", + "2623", + "3717", + "3815", + "3845", + "4352", + "4763", + "4869", + "4926", + "5159", + "5781", + "5914", + "5925", + "613", + "6455", + "6714", + "8021", + "8028", + "811", + "8301", + "861", + "867" + ] + }, + "MONDO:0000621": { + "Name": "immune system cancer", + "Task": "Mondo", + "Genes": [ + "10019", + "1050", + "1788", + "2120", + "23092", + "2322", + "25", + "2623", + "3717", + "3815", + "3845", + "4352", + "4763", + "4869", + "4926", + "5159", + "5781", + "5914", + "613", + "6455", + "6714", + "8021", + "8028", + "811", + "8301", + "84868", + "861", + "867" + ] + }, + "MONDO:0005170": { + "Name": "myeloid neoplasm", + "Task": "Mondo", + "Genes": [ + "10019", + "1050", + "1788", + "2120", + "23092", + "2322", + "25", + "2623", + "3717", + "3815", + "3845", + "4352", + "4763", + "4869", + "4926", + "5159", + "5781", + "5914", + "613", + "6455", + "6714", + "8021", + "8028", + "811", + "8301", + "861", + "867" + ] + }, + "MONDO:0021138": { + "Name": "bone marrow cancer", + "Task": "Mondo", + "Genes": [ + "10019", + "1050", + "1788", + "2120", + "23092", + "2322", + "25", + "2623", + "3717", + "3815", + "3845", + "4352", + "4763", + "4869", + "4926", + "5159", + "5781", + "5914", + "613", + "6455", + "6714", + "8021", + "8028", + "811", + "8301", + "861", + "867" + ] + }, + "MONDO:0005374": { + "Name": "bone marrow neoplasm", + "Task": "Mondo", + "Genes": [ + "10019", + "1050", + "1788", + "2120", + "23092", + "2322", + "25", + "2623", + "3717", + "3815", + "3845", + "4352", + "4763", + "4869", + "4926", + "5159", + "5781", + "5914", + "613", + "6455", + "6714", + "8021", + "8028", + "811", + "8301", + "861", + "867" + ] + }, + "MONDO:0020076": { + "Name": "myeloproliferative neoplasm", + "Task": "Mondo", + "Genes": [ + "10019", + "1050", + "1788", + "2120", + "23092", + "2322", + "25", + "2623", + "3717", + "3815", + "3845", + "4352", + "4763", + "4869", + "4926", + "5159", + "5781", + "5914", + "613", + "6455", + "6714", + "8021", + "8028", + "811", + "8301", + "861", + "867" + ] + }, + "MONDO:0006295": { + "Name": "malignant urinary system neoplasm", + "Task": "Mondo", + "Genes": [ + "11236", + "201163", + "2239", + "2261", + "26610", + "2719", + "3265", + "3481", + "3845", + "4233", + "4968", + "5080", + "54765", + "54949", + "55193", + "5546", + "5925", + "5979", + "6389", + "6390", + "675", + "6927", + "7030", + "7428", + "7490" + ] + }, + "MONDO:0021066": { + "Name": "urinary system neoplasm", + "Task": "Mondo", + "Genes": [ + "11236", + "201163", + "2239", + "2261", + "26610", + "2719", + "3265", + "3481", + "3845", + "4233", + "4968", + "5080", + "54765", + "54949", + "55193", + "5546", + "5925", + "5979", + "6389", + "6390", + "675", + "6927", + "7030", + "7428", + "7490" + ] + }, + "MONDO:0015469": { + "Name": "craniosynostosis", + "Task": "Mondo", + "Genes": [ + "10225", + "112752", + "1954", + "2077", + "2260", + "2261", + "2263", + "3590", + "4488", + "51098", + "51715", + "5447", + "55764", + "56603", + "57539", + "57728", + "6497", + "6608", + "6938", + "7291", + "7545", + "7994", + "9401" + ] + }, + "MONDO:0004970": { + "Name": "adenocarcinoma", + "Task": "Mondo", + "Genes": [ + "11236", + "1499", + "201163", + "26610", + "324", + "3265", + "3482", + "4233", + "4893", + "4968", + "5080", + "5157", + "5290", + "54765", + "55193", + "5546", + "5979", + "6927", + "7030", + "7157", + "7428", + "79577", + "8312", + "841" + ] + }, + "MONDO:0024276": { + "Name": "glandular cell neoplasm", + "Task": "Mondo", + "Genes": [ + "11236", + "1499", + "201163", + "26610", + "324", + "3265", + "3482", + "4233", + "4893", + "4968", + "5080", + "5157", + "5290", + "54765", + "55193", + "5546", + "5979", + "6927", + "7030", + "7157", + "7428", + "79577", + "8312", + "841" + ] + }, + "MONDO:0021248": { + "Name": "nervous system neoplasm", + "Task": "Mondo", + "Genes": [ + "1499", + "1743", + "26610", + "2778", + "3265", + "3845", + "4330", + "4771", + "4893", + "5080", + "5155", + "54765", + "54949", + "5925", + "6389", + "6390", + "6391", + "6392", + "83550", + "8402", + "8643", + "9049", + "9101" + ] + }, + "MONDO:0015338": { + "Name": "syndromic craniosynostosis", + "Task": "Mondo", + "Genes": [ + "10225", + "112752", + "1954", + "2077", + "2260", + "2261", + "2263", + "3590", + "4488", + "51098", + "51715", + "5447", + "55764", + "56603", + "57539", + "57728", + "6497", + "6608", + "6938", + "7291", + "7994", + "9401" + ] + }, + "MONDO:0021002": { + "Name": "syndactyly", + "Task": "Mondo", + "Genes": [ + "150468", + "2192", + "2255", + "2261", + "2263", + "23322", + "2697", + "2735", + "2737", + "3239", + "374654", + "4038", + "51259", + "54903", + "57545", + "6299", + "64327", + "6608", + "727857", + "80184", + "8823", + "91147", + "92002" + ] + }, + "MONDO:0005165": { + "Name": "benign neoplasm", + "Task": "Mondo", + "Genes": [ + "2260", + "2261", + "2324", + "3265", + "3791", + "3845", + "3851", + "3860", + "4854", + "4893", + "50814", + "5159", + "5290", + "5324", + "5618", + "5784", + "5979", + "60", + "63916", + "6927", + "7428", + "91754", + "9927" + ] + }, + "MONDO:0800066": { + "Name": "polydactyly-syndactyly-triphalangism", + "Task": "Mondo", + "Genes": [ + "150468", + "2192", + "2255", + "2261", + "2263", + "23322", + "2697", + "2735", + "2737", + "3239", + "374654", + "4038", + "51259", + "54903", + "57545", + "6299", + "64327", + "6608", + "727857", + "80184", + "91147", + "92002" + ] + }, + "MONDO:0006054": { + "Name": "reproductive system neoplasm", + "Task": "Mondo", + "Genes": [ + "11200", + "1316", + "1499", + "150365", + "154288", + "199713", + "2064", + "207", + "2261", + "3815", + "4437", + "4601", + "463", + "4978", + "5071", + "5290", + "5728", + "6041", + "6794", + "8379", + "999" + ] + }, + "MONDO:0005059": { + "Name": "leukemia", + "Task": "Mondo", + "Genes": [ + "1050", + "1788", + "2120", + "23092", + "2322", + "25", + "3717", + "3815", + "3845", + "4763", + "4869", + "4926", + "5781", + "5914", + "613", + "6455", + "8021", + "8028", + "8301", + "861", + "867" + ] + }, + "MONDO:0021060": { + "Name": "RASopathy", + "Task": "Mondo", + "Genes": [ + "161742", + "200734", + "22800", + "22808", + "3265", + "3845", + "4763", + "4893", + "5500", + "5594", + "5604", + "5605", + "5781", + "5894", + "6016", + "6654", + "6655", + "673", + "8036", + "8216", + "867" + ] + }, + "MONDO:0004643": { + "Name": "myeloid leukemia", + "Task": "Mondo", + "Genes": [ + "1050", + "1788", + "2120", + "2322", + "25", + "3717", + "3815", + "3845", + "4869", + "4926", + "5914", + "613", + "6455", + "8021", + "8028", + "8301", + "861" + ] + }, + "MONDO:0021069": { + "Name": "malignant endocrine neoplasm", + "Task": "Mondo", + "Genes": [ + "1499", + "324", + "3265", + "3482", + "4233", + "4893", + "5157", + "5290", + "54949", + "5925", + "5979", + "6389", + "6390", + "7157", + "79577", + "8312", + "841" + ] + }, + "MONDO:0010643": { + "Name": "acute leukemia", + "Task": "Mondo", + "Genes": [ + "1050", + "1788", + "2120", + "2322", + "3717", + "3815", + "3845", + "4869", + "4926", + "5914", + "6455", + "8021", + "8028", + "8301", + "861" + ] + }, + "MONDO:0018874": { + "Name": "acute myeloid leukemia", + "Task": "Mondo", + "Genes": [ + "1050", + "1788", + "2120", + "2322", + "3717", + "3815", + "3845", + "4869", + "4926", + "5914", + "6455", + "8021", + "8028", + "8301", + "861" + ] + }, + "MONDO:0005586": { + "Name": "head and neck neoplasm", + "Task": "Mondo", + "Genes": [ + "26610", + "2778", + "3265", + "3621", + "3845", + "4893", + "5080", + "5308", + "5324", + "54765", + "5925", + "83550", + "8795", + "9049", + "9101" + ] + }, + "MONDO:0002531": { + "Name": "skin neoplasm", + "Task": "Mondo", + "Genes": [ + "1499", + "2260", + "2261", + "3265", + "3815", + "3845", + "3851", + "3860", + "4893", + "50814", + "5290", + "60", + "84868", + "91754" + ] + }, + "MONDO:0000652": { + "Name": "integumentary system benign neoplasm", + "Task": "Mondo", + "Genes": [ + "2260", + "2261", + "3265", + "3845", + "3851", + "3860", + "4893", + "50814", + "5290", + "60", + "91754", + "9927" + ] + }, + "MONDO:0021440": { + "Name": "benign neoplasm of skin", + "Task": "Mondo", + "Genes": [ + "2260", + "2261", + "3265", + "3845", + "3851", + "3860", + "4893", + "50814", + "5290", + "60", + "91754" + ] + }, + "MONDO:0017436": { + "Name": "lethal congenital contracture syndrome", + "Task": "Mondo", + "Genes": [ + "100128927", + "112", + "1785", + "2065", + "23396", + "2733", + "342035", + "4604", + "57211", + "8506", + "91754" + ] + }, + "MONDO:0021227": { + "Name": "adrenal gland neoplasm", + "Task": "Mondo", + "Genes": [ + "1181", + "54949", + "5979", + "6389", + "6390", + "6391", + "6392", + "7428", + "9049", + "9101" + ] + }, + "MONDO:0024582": { + "Name": "male reproductive system neoplasm", + "Task": "Mondo", + "Genes": [ + "11200", + "1316", + "2261", + "3815", + "4601", + "463", + "5728", + "6041", + "6794", + "8379" + ] + }, + "MONDO:0005073": { + "Name": "melanocytic nevus", + "Task": "Mondo", + "Genes": [ + "2261", + "3265", + "3845", + "3851", + "3860", + "4893", + "50814", + "5290", + "60", + "91754" + ] + }, + "MONDO:0021143": { + "Name": "melanocytic neoplasm", + "Task": "Mondo", + "Genes": [ + "2261", + "3265", + "3845", + "3851", + "3860", + "4893", + "50814", + "5290", + "60", + "91754" + ] + }, + "MONDO:0021583": { + "Name": "melanocytic skin neoplasm", + "Task": "Mondo", + "Genes": [ + "2261", + "3265", + "3845", + "3851", + "3860", + "4893", + "50814", + "5290", + "60", + "91754" + ] + }, + "All Neutrals": [ + "100", + "1000", + "10000", + "10005", + "10006", + "10008", + "1001", + "10010", + "100127206", + "100128927", + "10013", + "100130733", + "100133941", + "100134444", + "100134934", + "100137049", + "10014", + "100144748", + "10016", + "10018", + "10019", + "10020", + "10021", + "10023", + "10026", + "100287171", + "100287932", + "1003", + "10039", + "10040", + "10043", + "100431172", + "10048", + "10049", + "100505385", + "100506013", + "100506658", + "100507043", + "100507436", + "10051", + "10052", + "10053", + "10056", + "10057", + "10058", + "10060", + "10062", + "10066", + "10067", + "10068", + "10075", + "10076", + "10079", + "10082", + "10083", + "10084", + "10087", + "1009", + "10092", + "10093", + "10094", + "10095", + "10096", + "10097", + "10098", + "100996717", + "100996763", + "101", + "10102", + "10109", + "10111", + "10112", + "10113", + "10116", + "1012", + "10123", + "10125", + "10126", + "10128", + "10130", + "10131", + "10133", + "10134", + "10135", + "10139", + "10142", + "10144", + "10146", + "10148", + "1015", + "10152", + "10155", + "10156", + "10157", + "10159", + "10162", + "10163", + "10165", + "1017", + "10174", + "1018", + "10188", + "1019", + "10194", + "10196", + "10197", + "10198", + "102", + "1020", + "10203", + "10204", + "10206", + "10208", + "1021", + "10210", + "10211", + "10213", + "10216", + "10218", + "10219", + "1022", + "10221", + "10225", + "10226", + "10228", + "10235", + "10241", + "10243", + "10244", + "10245", + "1025", + "10252", + "10253", + "10256", + "10257", + "1026", + "10262", + "10265", + "10266", + "10267", + "10268", + "10269", + "1027", + "10272", + "10273", + "10274", + "10276", + "10277", + "1028", + "10280", + "10283", + "10288", + "1029", + "10290", + "10293", + "10294", + "10297", + "10298", + "10299", + "103", + "1030", + "10300", + "10307", + "10309", + "1031", + "10311", + "10312", + "10313", + "10318", + "1032", + "10320", + "10324", + "10328", + "1033", + "10332", + "10344", + "10345", + "10346", + "10347", + "10351", + "10352", + "10365", + "10367", + "10370", + "10371", + "10376", + "10381", + "10382", + "10384", + "10391", + "10392", + "10393", + "10394", + "10395", + "10398", + "10399", + "104", + "1040", + "10400", + "10401", + "10403", + "1041", + "10411", + "10413", + "10419", + "10423", + "10425", + "10427", + "10430", + "10432", + "10435", + "10436", + "10437", + "10440", + "10444", + "10445", + "10451", + "10452", + "10454", + "10456", + "10457", + "10458", + "10459", + "10460", + "10461", + "10463", + "10464", + "10466", + "10469", + "10471", + "10472", + "10474", + "10475", + "10477", + "10479", + "10481", + "10483", + "10484", + "10486", + "10487", + "10488", + "10490", + "10491", + "10492", + "10494", + "10497", + "10498", + "1050", + "10507", + "10512", + "10513", + "10516", + "10518", + "10519", + "10521", + "10522", + "10524", + "10525", + "10526", + "10527", + "10529", + "1053", + "10531", + "10533", + "10535", + "10537", + "105371045", + "1054", + "10540", + "10541", + "10542", + "10550", + "10551", + "10552", + "10553", + "10554", + "10555", + "10558", + "10559", + "10562", + "10563", + "10564", + "10565", + "10568", + "10569", + "10572", + "10574", + "10575", + "10576", + "10577", + "10578", + "1058", + "10581", + "10584", + "10585", + "10587", + "10588", + "10592", + "10595", + "10599", + "1060", + "10600", + "10603", + "10605", + "10609", + "10610", + "10612", + "10613", + "10614", + "10615", + "10616", + "1062", + "10621", + "10622", + "10623", + "10625", + "10626", + "10628", + "1063", + "10630", + "10634", + "10635", + "10636", + "10637", + "10640", + "10641", + "10645", + "10651", + "10652", + "10653", + "10657", + "10659", + "1066", + "10661", + "10663", + "10664", + "10666", + "10670", + "10672", + "10673", + "10677", + "10681", + "10682", + "10683", + "1069", + "10690", + "10693", + "10694", + "10699", + "1071", + "10716", + "10717", + "10718", + "1072", + "10721", + "10725", + "10726", + "10728", + "1073", + "10730", + "10733", + "10734", + "10735", + "10743", + "1075", + "10755", + "10758", + "10763", + "10767", + "10768", + "10769", + "10771", + "10783", + "10785", + "10787", + "10788", + "1080", + "10801", + "10802", + "10803", + "10804", + "10806", + "10807", + "10808", + "1081", + "10810", + "10814", + "10815", + "10817", + "10818", + "10825", + "1084", + "10841", + "10842", + "10844", + "10845", + "10846", + "10847", + "10849", + "10850", + "10855", + "10856", + "10857", + "10859", + "10868", + "10869", + "10870", + "10871", + "1089", + "10890", + "10891", + "10892", + "10894", + "10899", + "10904", + "10907", + "10908", + "10910", + "10912", + "10913", + "10920", + "10927", + "10928", + "10935", + "10943", + "10948", + "10952", + "10953", + "10954", + "10956", + "10959", + "10960", + "10961", + "10962", + "10972", + "10973", + "10979", + "10981", + "10985", + "10987", + "10991", + "10992", + "10999", + "11001", + "11004", + "11005", + "11006", + "11011", + "11012", + "11020", + "11021", + "11025", + "11027", + "1103", + "11033", + "11034", + "11035", + "11037", + "1104", + "11041", + "11043", + "11044", + "1105", + "11051", + "11052", + "11057", + "1106", + "11060", + "11061", + "11065", + "11069", + "11073", + "11074", + "11075", + "11076", + "11078", + "1108", + "11080", + "11081", + "11082", + "1109", + "11091", + "11093", + "11096", + "11097", + "111", + "11101", + "11107", + "1111", + "11113", + "11116", + "11117", + "11118", + "11119", + "1112", + "11122", + "11124", + "11126", + "11127", + "11128", + "1113", + "11130", + "11132", + "11133", + "11135", + "11138", + "11140", + "11141", + "11143", + "11144", + "11145", + "11146", + "11148", + "11149", + "11151", + "11152", + "11153", + "11154", + "11155", + "11156", + "1116", + "11160", + "11170", + "11171", + "11173", + "11178", + "11184", + "11187", + "1119", + "11190", + "11194", + "11196", + "11198", + "112", + "1120", + "11200", + "1121", + "11211", + "11212", + "11213", + "11214", + "11221", + "11224", + "1123", + "11231", + "11232", + "11235", + "11236", + "112398", + "1124", + "11240", + "11243", + "112441434", + "112476", + "11251", + "11252", + "11253", + "11254", + "11255", + "112574", + "11258", + "112609", + "11261", + "11274", + "112744", + "112752", + "11276", + "11277", + "11280", + "11281", + "112812", + "11282", + "11284", + "11285", + "112858", + "112869", + "112936", + "1130", + "1131", + "113130", + "11314", + "11315", + "113179", + "113189", + "11320", + "11322", + "113235", + "113246", + "113251", + "11326", + "11329", + "11330", + "11331", + "11337", + "11338", + "1134", + "11342", + "11344", + "11345", + "113451", + "11346", + "113791", + "1139", + "114", + "1140", + "114088", + "114327", + "1144", + "1145", + "114548", + "1146", + "114609", + "1147", + "114770", + "114771", + "114791", + "114793", + "114798", + "114799", + "114803", + "114836", + "114879", + "114881", + "114882", + "114884", + "114897", + "114899", + "1149", + "114900", + "114928", + "114990", + "114991", + "115", + "115004", + "115019", + "115106", + "115201", + "115286", + "1153", + "115352", + "115362", + "115426", + "115548", + "115557", + "115560", + "115650", + "115701", + "115704", + "115727", + "115827", + "115908", + "116", + "116068", + "1161", + "116115", + "116138", + "116150", + "116151", + "116224", + "116238", + "116255", + "116442", + "116519", + "116840", + "116843", + "116844", + "116931", + "117156", + "117159", + "117166", + "117177", + "117194", + "117245", + "117283", + "117285", + "117289", + "1174", + "117581", + "117584", + "1176", + "1178", + "117854", + "118", + "1180", + "1181", + "1182", + "1183", + "118424", + "118426", + "118429", + "118471", + "1186", + "1188", + "118813", + "118924", + "118987", + "119", + "1191", + "1193", + "119559", + "1201", + "120103", + "120425", + "120526", + "120892", + "121214", + "121260", + "121268", + "121278", + "121340", + "121391", + "1215", + "121504", + "121512", + "121665", + "122416", + "122664", + "122773", + "122809", + "123", + "1230", + "1232", + "123264", + "1233", + "1235", + "1236", + "123606", + "1237", + "123720", + "123745", + "123803", + "123872", + "123879", + "1240", + "124056", + "124093", + "1244", + "124454", + "124491", + "124583", + "124590", + "124641", + "124790", + "124857", + "124912", + "124930", + "124935", + "124997", + "125", + "125058", + "125111", + "125170", + "125981", + "126", + "126259", + "1263", + "126353", + "126374", + "126393", + "126410", + "1265", + "126520", + "126549", + "126695", + "126731", + "126792", + "126820", + "126969", + "1270", + "127018", + "1271", + "1272", + "127385", + "127544", + "1277", + "1278", + "127833", + "127933", + "128", + "1280", + "1281", + "128178", + "1282", + "128240", + "128272", + "128344", + "1284", + "128486", + "1285", + "1286", + "128637", + "1287", + "1288", + "128869", + "1289", + "128989", + "1290", + "1291", + "1292", + "1293", + "129303", + "1294", + "129531", + "129563", + "129642", + "1297", + "1298", + "1299", + "1300", + "1301", + "1302", + "1303", + "130340", + "130399", + "130497", + "1305", + "130589", + "130612", + "130617", + "1307", + "1308", + "1311", + "131118", + "131177", + "1312", + "131377", + "1314", + "131474", + "131566", + "131578", + "1316", + "1317", + "132112", + "132158", + "1326", + "132671", + "132884", + "133", + "133121", + "133396", + "133522", + "134", + "1340", + "134218", + "134353", + "134391", + "134429", + "134510", + "134701", + "1349", + "134957", + "135", + "1351", + "135138", + "135228", + "135250", + "1355", + "135644", + "135886", + "136", + "1363", + "136319", + "136371", + "1364", + "1365", + "136647", + "1371", + "1373", + "1374", + "1375", + "1376", + "137695", + "1378", + "137814", + "137886", + "1379", + "137964", + "1380", + "138050", + "138065", + "138151", + "138428", + "138429", + "1385", + "1386", + "1387", + "1388", + "139189", + "1392", + "139285", + "1393", + "139341", + "1394", + "1396", + "1398", + "139818", + "1399", + "140", + "1400", + "1401", + "140462", + "140465", + "140596", + "140609", + "140628", + "140679", + "140690", + "140710", + "140775", + "1408", + "140823", + "140885", + "1409", + "140947", + "1410", + "142", + "1429", + "143098", + "143162", + "143187", + "1432", + "143384", + "1435", + "1437", + "143872", + "1439", + "1440", + "1441", + "144100", + "144165", + "144245", + "144455", + "1445", + "144568", + "144577", + "144699", + "1447", + "144717", + "1448", + "144811", + "145173", + "1452", + "145258", + "1453", + "1454", + "145567", + "145581", + "1457", + "145741", + "145873", + "1460", + "146057", + "146059", + "146206", + "1464", + "146433", + "146722", + "146760", + "146850", + "146862", + "146909", + "147", + "147007", + "1471", + "147138", + "147372", + "1474", + "147409", + "1475", + "147841", + "147912", + "147945", + "148", + "148022", + "148066", + "148170", + "1482", + "148252", + "148281", + "148362", + "148479", + "1487", + "148738", + "1488", + "148867", + "1489", + "1490", + "149041", + "149095", + "1491", + "149111", + "149233", + "1493", + "149371", + "149461", + "1496", + "149603", + "149628", + "149647", + "1497", + "149840", + "1499", + "149951", + "150", + "1500", + "150094", + "1501", + "150274", + "1503", + "150356", + "150365", + "150368", + "150372", + "150465", + "150468", + "150678", + "150684", + "150696", + "150763", + "1509", + "151", + "1510", + "151056", + "1511", + "151188", + "1512", + "1513", + "151306", + "1514", + "151449", + "1515", + "151516", + "151556", + "151636", + "151648", + "151651", + "151835", + "152", + "1520", + "152007", + "152110", + "152137", + "152138", + "152185", + "152273", + "1523", + "1524", + "152485", + "1525", + "152559", + "153090", + "153241", + "153339", + "153478", + "1535", + "153562", + "1536", + "153642", + "153769", + "1540", + "154141", + "154288", + "1545", + "154796", + "1548", + "155061", + "155368", + "1565", + "157570", + "157680", + "1577", + "157753", + "157769", + "1579", + "157922", + "158", + "1581", + "158234", + "158297", + "1584", + "158747", + "1588", + "158835", + "158866", + "158983", + "1591", + "1593", + "1594", + "159686", + "16", + "1604", + "160418", + "1606", + "1607", + "1608", + "160851", + "1609", + "1610", + "1611", + "161176", + "161198", + "1612", + "161291", + "1613", + "161514", + "161582", + "1616", + "161742", + "161882", + "162", + "1622", + "162427", + "162514", + "162989", + "1630", + "163126", + "163175", + "1634", + "163486", + "163590", + "1636", + "163786", + "163859", + "163882", + "1639", + "164", + "1642", + "1643", + "1644", + "1645", + "1646", + "164656", + "164668", + "1647", + "1649", + "165", + "1652", + "1653", + "165324", + "1654", + "1655", + "1656", + "165721", + "165904", + "165918", + "166", + "1660", + "1663", + "1667", + "166785", + "1668", + "166929", + "167", + "1670", + "1672", + "1673", + "1674", + "1676", + "167691", + "1677", + "1678", + "168667", + "1687", + "1690", + "169026", + "169792", + "170302", + "170506", + "170622", + "170691", + "170692", + "171019", + "171023", + "171389", + "171392", + "171425", + "171586", + "1716", + "1717", + "1718", + "1723", + "1725", + "1728", + "1729", + "173", + "1736", + "1737", + "1739", + "174", + "1742", + "1743", + "1745", + "1748", + "1749", + "175", + "1756", + "1758", + "176", + "1760", + "1763", + "177", + "1773", + "1776", + "1777", + "1778", + "178", + "1780", + "1788", + "1789", + "1793", + "1794", + "1795", + "1798", + "1801", + "1802", + "1803", + "1804", + "1806", + "1808", + "181", + "1810", + "1811", + "1812", + "1813", + "1814", + "1815", + "1816", + "182", + "1822", + "1824", + "1825", + "1826", + "1828", + "1829", + "183", + "1832", + "1836", + "1837", + "1839", + "1840", + "1843", + "1845", + "1846", + "1848", + "1849", + "185", + "1854", + "1855", + "1856", + "1857", + "186", + "1861", + "1869", + "187", + "1870", + "1871", + "1880", + "1889", + "189", + "1890", + "1893", + "1894", + "1896", + "19", + "190", + "1902", + "1906", + "1907", + "1908", + "1909", + "1910", + "1915", + "1917", + "192111", + "192683", + "1936", + "1939", + "1942", + "1944", + "1946", + "1947", + "1948", + "1949", + "1954", + "1958", + "195827", + "196", + "1960", + "196051", + "1965", + "196527", + "196528", + "1967", + "1968", + "1969", + "196996", + "197", + "197131", + "197259", + "197358", + "1977", + "1978", + "1981", + "1984", + "199", + "1991", + "199221", + "1994", + "199713", + "199731", + "199857", + "199920", + "2", + "20", + "2000", + "200424", + "200734", + "200845", + "200879", + "200931", + "200933", + "200942", + "2010", + "2011", + "201161", + "201163", + "201164", + "201254", + "201292", + "201294", + "2013", + "201595", + "201626", + "201627", + "201633", + "2017", + "2019", + "202018", + "2022", + "202243", + "2027", + "2029", + "203068", + "203228", + "203286", + "2033", + "2034", + "2035", + "2036", + "2037", + "2038", + "203859", + "2039", + "204", + "2041", + "2042", + "204219", + "2043", + "2045", + "2047", + "2048", + "204851", + "2049", + "204962", + "2050", + "2053", + "2054", + "205428", + "2056", + "2057", + "205717", + "2058", + "206358", + "2064", + "2067", + "2068", + "2069", + "207", + "2070", + "2071", + "2072", + "2073", + "2074", + "2077", + "208", + "2081", + "2099", + "21", + "210", + "2100", + "2107", + "211", + "2113", + "212", + "2120", + "2121", + "2122", + "213", + "2130", + "2131", + "2132", + "2137", + "2138", + "2146", + "2147", + "215", + "2150", + "2151", + "2152", + "2153", + "2155", + "2157", + "2158", + "2159", + "2160", + "2161", + "2162", + "2165", + "217", + "2175", + "2176", + "2177", + "2178", + "2180", + "2181", + "2184", + "2185", + "2186", + "2187", + "2188", + "2189", + "2192", + "219285", + "2193", + "2194", + "219402", + "219699", + "219736", + "219771", + "219790", + "219844", + "219854", + "219931", + "22", + "220", + "2200", + "2201", + "220134", + "2202", + "220202", + "220296", + "2203", + "220441", + "2205", + "2207", + "2208", + "2209", + "220972", + "221002", + "221035", + "221037", + "221061", + "221079", + "221150", + "221178", + "2212", + "2213", + "221391", + "221472", + "221477", + "221496", + "221692", + "2218", + "221895", + "2219", + "221908", + "221927", + "221938", + "2220", + "222166", + "2222", + "222229", + "222236", + "222546", + "222584", + "222642", + "222643", + "222663", + "222962", + "223", + "223082", + "223117", + "2235", + "2237", + "2239", + "224", + "2241", + "2242", + "2243", + "2244", + "2245", + "2246", + "2247", + "2248", + "2249", + "2250", + "2251", + "2252", + "2253", + "2254", + "2255", + "225689", + "2257", + "2258", + "226", + "2260", + "2266", + "2268", + "2271", + "2272", + "2273", + "2277", + "22796", + "2280", + "22800", + "22802", + "22808", + "22809", + "2281", + "22827", + "22829", + "22836", + "22837", + "22843", + "22844", + "22845", + "22846", + "22848", + "22853", + "22854", + "22856", + "22858", + "22861", + "22863", + "22865", + "22866", + "22871", + "22872", + "22873", + "22876", + "22878", + "22879", + "2288", + "22880", + "22884", + "2289", + "22890", + "22899", + "2290", + "22900", + "22901", + "22904", + "22906", + "22907", + "22909", + "22914", + "22915", + "22919", + "22920", + "22924", + "22925", + "22926", + "22927", + "22930", + "22931", + "22933", + "22938", + "2294", + "22943", + "22948", + "2295", + "22954", + "2296", + "22974", + "22976", + "22978", + "22979", + "22980", + "22985", + "2299", + "22994", + "22995", + "22998", + "22999", + "23001", + "23005", + "23007", + "23008", + "2301", + "23011", + "23013", + "23017", + "23019", + "23022", + "23023", + "23025", + "23028", + "2303", + "23032", + "23036", + "23039", + "2304", + "23043", + "23047", + "23049", + "2305", + "23053", + "23061", + "23062", + "23063", + "23064", + "23065", + "23067", + "23071", + "23074", + "23075", + "23076", + "23077", + "2308", + "23081", + "23085", + "23086", + "23089", + "2309", + "23090", + "23092", + "23094", + "23095", + "23097", + "23098", + "231", + "23102", + "23108", + "23111", + "23114", + "23116", + "23118", + "2312", + "23120", + "23122", + "23126", + "23129", + "2313", + "23130", + "23136", + "23137", + "2314", + "23141", + "23143", + "23149", + "23157", + "2316", + "23161", + "23162", + "23163", + "23165", + "23166", + "23167", + "2317", + "23170", + "23171", + "23172", + "23175", + "23178", + "2318", + "23180", + "23184", + "23187", + "23189", + "2319", + "23190", + "23191", + "23192", + "23194", + "23197", + "23203", + "23204", + "23207", + "23208", + "23209", + "23210", + "23212", + "23213", + "23214", + "23216", + "23219", + "2322", + "23220", + "23221", + "23224", + "23229", + "23230", + "23235", + "23236", + "23237", + "23239", + "2324", + "23240", + "23241", + "23244", + "23251", + "23252", + "23255", + "23256", + "23258", + "23261", + "23263", + "23265", + "23268", + "23271", + "23272", + "23274", + "23275", + "23276", + "23277", + "2328", + "23286", + "23291", + "23295", + "23299", + "23303", + "23306", + "23308", + "2331", + "23310", + "23312", + "23314", + "23317", + "2332", + "23322", + "23325", + "23326", + "23328", + "23329", + "23332", + "23334", + "23339", + "2334", + "23341", + "23345", + "23347", + "2335", + "23352", + "23353", + "23354", + "23355", + "23363", + "23365", + "23367", + "23369", + "23370", + "23371", + "23376", + "23378", + "23379", + "23380", + "23383", + "23384", + "23387", + "23389", + "2339", + "23390", + "23392", + "23394", + "23395", + "23397", + "23399", + "23400", + "23404", + "23405", + "23409", + "23411", + "23414", + "23418", + "23420", + "23426", + "23428", + "23429", + "23431", + "23432", + "23433", + "23435", + "23443", + "23446", + "23450", + "23451", + "23456", + "23457", + "23461", + "23462", + "23463", + "23471", + "23473", + "23474", + "23476", + "23479", + "2348", + "23483", + "23491", + "23493", + "23495", + "23498", + "23499", + "2350", + "23500", + "23503", + "23509", + "23511", + "23512", + "23513", + "23514", + "23516", + "23521", + "23522", + "23524", + "23526", + "23529", + "2353", + "23530", + "23531", + "23532", + "23533", + "23534", + "23543", + "23545", + "23547", + "23555", + "23556", + "23557", + "23558", + "23560", + "23568", + "2358", + "23580", + "23581", + "23586", + "23588", + "23590", + "23592", + "23594", + "23596", + "23601", + "23603", + "23604", + "23607", + "23608", + "23612", + "23616", + "23617", + "23623", + "23630", + "23633", + "23636", + "23637", + "23639", + "23640", + "23641", + "23643", + "23645", + "23647", + "23654", + "23659", + "23671", + "23673", + "23677", + "23678", + "23682", + "23705", + "23708", + "23729", + "23732", + "23742", + "23753", + "23759", + "23760", + "23761", + "23765", + "23767", + "23770", + "23779", + "23787", + "23788", + "238", + "240", + "241", + "24137", + "24139", + "24140", + "24142", + "24144", + "24145", + "242", + "245711", + "245812", + "245928", + "245973", + "246", + "246175", + "246176", + "246184", + "246213", + "246243", + "246330", + "246778", + "247", + "2475", + "2487", + "2488", + "249", + "2492", + "25", + "2512", + "2515", + "2516", + "2517", + "2521", + "2525", + "2526", + "252839", + "2529", + "252983", + "2530", + "253017", + "2531", + "253260", + "2533", + "2534", + "2535", + "253558", + "2537", + "253725", + "253738", + "2538", + "253832", + "2539", + "253959", + "253980", + "254065", + "2542", + "254263", + "254394", + "254428", + "254531", + "2547", + "2548", + "2549", + "255022", + "255043", + "255061", + "255189", + "255324", + "255374", + "2554", + "255488", + "2555", + "2556", + "255738", + "255758", + "2558", + "2561", + "2562", + "256297", + "2563", + "256364", + "2564", + "256435", + "2566", + "256646", + "257", + "257106", + "257144", + "257218", + "257364", + "25769", + "25771", + "25777", + "25778", + "25782", + "25788", + "25791", + "25792", + "25793", + "2580", + "25800", + "25801", + "258010", + "25802", + "25805", + "25813", + "25818", + "25820", + "25825", + "25827", + "25833", + "25834", + "25836", + "25837", + "25839", + "25847", + "25851", + "25853", + "25855", + "25861", + "25865", + "2587", + "25875", + "25878", + "25879", + "2588", + "25885", + "25886", + "2589", + "25894", + "25896", + "25898", + "25900", + "25909", + "2591", + "25912", + "25913", + "259197", + "2592", + "25921", + "25923", + "259230", + "259232", + "259266", + "25928", + "25930", + "259307", + "25937", + "25939", + "25942", + "25950", + "25953", + "25959", + "2596", + "25963", + "2597", + "25970", + "25973", + "25974", + "25976", + "25977", + "25981", + "25989", + "25998", + "25999", + "26000", + "26001", + "26003", + "26005", + "26007", + "26009", + "26030", + "26036", + "26040", + "260434", + "26046", + "26047", + "26051", + "26054", + "26057", + "26058", + "26060", + "26061", + "26065", + "26086", + "26088", + "26090", + "26100", + "26112", + "26123", + "26128", + "26130", + "26133", + "26135", + "26137", + "26145", + "26146", + "2615", + "26153", + "26154", + "26155", + "26167", + "261726", + "261729", + "261734", + "26175", + "26189", + "2619", + "26191", + "2621", + "2622", + "26224", + "26225", + "26227", + "26229", + "2623", + "26230", + "26234", + "26235", + "2624", + "26249", + "2625", + "26253", + "26258", + "26259", + "2626", + "26262", + "26263", + "26267", + "26268", + "2627", + "26270", + "26271", + "26272", + "26273", + "26276", + "26277", + "26278", + "26279", + "26281", + "2629", + "26291", + "26297", + "2632", + "2633", + "2634", + "26353", + "26354", + "2642", + "2645", + "26469", + "2647", + "26471", + "2648", + "2650", + "26508", + "2651", + "26511", + "26517", + "26519", + "2652", + "26520", + "26521", + "26523", + "26524", + "26525", + "2657", + "2658", + "26585", + "26586", + "2660", + "26608", + "2661", + "26610", + "2662", + "2664", + "2665", + "266740", + "2668", + "2669", + "267", + "2670", + "267012", + "2672", + "2673", + "2674", + "2675", + "2677", + "2683", + "2688", + "2690", + "2691", + "2692", + "2693", + "2694", + "2695", + "2696", + "2697", + "26985", + "26993", + "26994", + "26999", + "27", + "270", + "27000", + "2701", + "2702", + "27022", + "2703", + "27030", + "27031", + "27032", + "27035", + "27040", + "2705", + "2706", + "27063", + "27068", + "2707", + "27072", + "27074", + "27077", + "27090", + "27092", + "271", + "2710", + "27107", + "27123", + "27124", + "27129", + "27131", + "27133", + "27141", + "27147", + "27148", + "27152", + "27153", + "27159", + "27161", + "27163", + "2717", + "27178", + "27185", + "2719", + "272", + "2720", + "27202", + "27229", + "27230", + "27232", + "27235", + "27236", + "27237", + "27238", + "27241", + "27242", + "27245", + "27246", + "27248", + "27250", + "27252", + "27286", + "27289", + "2729", + "273", + "27302", + "27314", + "27315", + "27316", + "27329", + "2733", + "27338", + "27339", + "27341", + "27345", + "27346", + "27347", + "27348", + "2735", + "27351", + "27352", + "2736", + "2737", + "274", + "2740", + "2741", + "27429", + "2743", + "27436", + "2744", + "27443", + "2746", + "2752", + "2760", + "2766", + "2767", + "2768", + "2769", + "2770", + "2771", + "2773", + "2776", + "2778", + "2779", + "2782", + "2783", + "2784", + "2786", + "2788", + "2799", + "2801", + "2803", + "2804", + "2810", + "2811", + "2812", + "2814", + "2815", + "2819", + "2821", + "2822", + "28232", + "28234", + "2824", + "282618", + "282679", + "2828", + "2829", + "282991", + "282996", + "283", + "283106", + "283149", + "283209", + "283219", + "283238", + "2833", + "283375", + "283420", + "283431", + "283450", + "283489", + "283514", + "283518", + "283576", + "283629", + "283748", + "2838", + "283807", + "283820", + "283871", + "284", + "284001", + "284058", + "284086", + "284098", + "284111", + "284114", + "284119", + "284252", + "284254", + "284340", + "284359", + "284361", + "284382", + "284403", + "284434", + "284439", + "284654", + "285", + "285016", + "28514", + "285175", + "285180", + "2852", + "285203", + "285282", + "2853", + "285315", + "285362", + "285381", + "285440", + "285489", + "285521", + "285590", + "285613", + "285636", + "285643", + "285848", + "285852", + "2859", + "285966", + "285973", + "286", + "286053", + "2861", + "2864", + "286430", + "2865", + "2867", + "286887", + "287", + "2878", + "2879", + "288", + "2885", + "2886", + "2887", + "2888", + "2889", + "2892", + "2895", + "28952", + "28956", + "28958", + "2896", + "28960", + "28962", + "28972", + "28976", + "2898", + "28982", + "28984", + "28985", + "28989", + "28996", + "28999", + "29", + "2902", + "2903", + "29058", + "2906", + "29062", + "29071", + "29072", + "2908", + "29081", + "29085", + "29086", + "29089", + "2909", + "29090", + "29091", + "29098", + "291", + "29105", + "29108", + "29109", + "29110", + "29115", + "29116", + "29123", + "29126", + "29127", + "29128", + "2914", + "2915", + "2916", + "2919", + "2920", + "2923", + "2931", + "2932", + "2934", + "2935", + "2937", + "2946", + "2947", + "2950", + "2956", + "2959", + "2961", + "2962", + "2965", + "2966", + "2969", + "29760", + "29761", + "29763", + "29775", + "29780", + "2979", + "29801", + "2982", + "2984", + "29851", + "2986", + "29881", + "29882", + "29883", + "29886", + "29887", + "29893", + "29895", + "29899", + "2990", + "29904", + "29911", + "29914", + "29915", + "29916", + "29920", + "29922", + "29923", + "29925", + "29926", + "29927", + "29928", + "29934", + "29940", + "29945", + "29950", + "29954", + "29957", + "29967", + "29968", + "29978", + "29979", + "29980", + "29982", + "29984", + "29990", + "29993", + "29997", + "29998", + "3000", + "30001", + "30008", + "30009", + "3001", + "3005", + "30061", + "3008", + "3009", + "301", + "3015", + "302", + "3020", + "3021", + "3026", + "3028", + "3030", + "3032", + "3033", + "3035", + "3036", + "3037", + "3038", + "3039", + "3040", + "3043", + "3047", + "3048", + "3052", + "3053", + "3054", + "3055", + "3059", + "306", + "3060", + "3064", + "3065", + "3066", + "307", + "3070", + "3071", + "3074", + "3075", + "3077", + "3078", + "3080", + "3081", + "30813", + "30817", + "3082", + "30832", + "30835", + "3084", + "30849", + "30851", + "3087", + "3091", + "3092", + "3093", + "3096", + "30968", + "3097", + "3098", + "3099", + "310", + "3104", + "3108", + "3109", + "311", + "3110", + "3111", + "3112", + "3113", + "3115", + "3117", + "3119", + "3122", + "3123", + "3140", + "3141", + "3145", + "3146", + "3148", + "3159", + "3161", + "3162", + "3164", + "3166", + "3169", + "3170", + "3172", + "3176", + "317662", + "317761", + "3178", + "3187", + "3188", + "3190", + "3192", + "3198", + "3199", + "32", + "3202", + "3204", + "3207", + "3209", + "3211", + "3219", + "322", + "3239", + "324", + "3248", + "3249", + "325", + "3251", + "3257", + "326", + "326625", + "327", + "3273", + "3275", + "3276", + "328", + "3281", + "329", + "3294", + "3297", + "330", + "3300", + "3301", + "3308", + "3309", + "331", + "3313", + "3315", + "3320", + "3321", + "3326", + "3329", + "333", + "3336", + "3337", + "3338", + "3339", + "3346", + "335", + "3356", + "3357", + "3358", + "336", + "3364", + "337", + "3371", + "3373", + "3375", + "337867", + "338", + "3381", + "3383", + "338322", + "338328", + "338382", + "338567", + "338657", + "338692", + "338917", + "339122", + "339390", + "3394", + "3396", + "3397", + "339745", + "3398", + "339829", + "339855", + "3399", + "34", + "340024", + "340061", + "340348", + "340371", + "340419", + "340485", + "340533", + "340665", + "341", + "341019", + "341152", + "341208", + "3416", + "341640", + "3417", + "3418", + "342035", + "3423", + "3425", + "3426", + "3428", + "3429", + "342979", + "3430", + "343035", + "343070", + "3431", + "3433", + "3434", + "343578", + "343637", + "344", + "3440", + "344558", + "344892", + "345", + "345193", + "3454", + "3455", + "3456", + "345611", + "345643", + "3458", + "3459", + "3460", + "346171", + "346606", + "347", + "347240", + "347516", + "3476", + "347688", + "347733", + "3479", + "348", + "3481", + "348110", + "3482", + "348235", + "3483", + "3485", + "3486", + "348654", + "3489", + "348938", + "348980", + "3491", + "349667", + "350", + "3508", + "351", + "3516", + "353091", + "353376", + "353500", + "353514", + "354", + "3543", + "3549", + "355", + "3551", + "3552", + "3553", + "3554", + "3556", + "3557", + "3558", + "356", + "3562", + "3563", + "3565", + "3566", + "3567", + "3568", + "3569", + "3570", + "3572", + "3574", + "3575", + "3576", + "358", + "3581", + "3586", + "3587", + "3588", + "3589", + "359", + "3590", + "3592", + "3593", + "3594", + "3595", + "3596", + "359948", + "360", + "3600", + "3601", + "3603", + "3605", + "3606", + "3611", + "3612", + "3615", + "3619", + "362", + "3620", + "3621", + "3623", + "3624", + "3625", + "3627", + "3630", + "3633", + "3635", + "3636", + "3638", + "3640", + "3642", + "3643", + "3645", + "3646", + "3651", + "3654", + "3655", + "3656", + "3659", + "3661", + "3662", + "3663", + "3664", + "3665", + "3667", + "367", + "3670", + "3673", + "3675", + "3676", + "3678", + "3679", + "368", + "3683", + "3684", + "3685", + "3687", + "3688", + "3689", + "3690", + "3691", + "3693", + "3695", + "3696", + "37", + "3702", + "3703", + "3705", + "3706", + "3707", + "3708", + "3714", + "3716", + "3717", + "3718", + "372", + "3720", + "3725", + "3728", + "3735", + "373509", + "3737", + "374", + "3741", + "374354", + "374403", + "3745", + "3746", + "374654", + "3747", + "3748", + "374872", + "374879", + "374969", + "374986", + "375033", + "375056", + "3753", + "375307", + "3756", + "3757", + "375748", + "375790", + "3758", + "3759", + "3760", + "3762", + "376267", + "3763", + "3764", + "376497", + "3766", + "3767", + "3768", + "377630", + "3778", + "378", + "3782", + "3783", + "3784", + "378708", + "378884", + "379", + "3796", + "3799", + "3800", + "3801", + "3802", + "3805", + "3812", + "3818", + "3821", + "3822", + "3823", + "3824", + "3827", + "383", + "3832", + "3833", + "3834", + "3835", + "3836", + "3837", + "3838", + "3840", + "3842", + "3843", + "3845", + "3848", + "3849", + "3850", + "3851", + "3852", + "3857", + "3858", + "3859", + "3860", + "3861", + "3868", + "387", + "387082", + "387103", + "3872", + "3875", + "387597", + "387695", + "387837", + "387849", + "387893", + "388", + "3880", + "388015", + "388125", + "388324", + "388325", + "388389", + "388552", + "388630", + "388646", + "388662", + "388677", + "388698", + "3887", + "388753", + "3889", + "389", + "3892", + "389400", + "389421", + "389434", + "389541", + "389643", + "389658", + "389692", + "3897", + "389827", + "389856", + "3899", + "39", + "390", + "390594", + "390598", + "3908", + "3909", + "391", + "3911", + "3914", + "3915", + "3916", + "3918", + "392", + "3920", + "392255", + "3925", + "392636", + "3929", + "393", + "3930", + "3931", + "3936", + "3937", + "394", + "395", + "3952", + "3953", + "3954", + "3955", + "3956", + "3958", + "3959", + "396", + "3964", + "3965", + "397", + "3976", + "3977", + "3978", + "3981", + "3984", + "3985", + "3987", + "3988", + "399", + "3990", + "3992", + "3996", + "399687", + "3998", + "399968", + "399979", + "400", + "4000", + "4001", + "4004", + "400451", + "400916", + "4010", + "401024", + "4012", + "401265", + "401397", + "4014", + "4015", + "401505", + "401548", + "4017", + "402", + "4023", + "403", + "4033", + "403313", + "4035", + "4036", + "4037", + "4038", + "4040", + "4041", + "4043", + "4046", + "404636", + "404672", + "4047", + "405", + "4052", + "4053", + "4054", + "4055", + "4056", + "4057", + "405753", + "4058", + "4063", + "4064", + "4067", + "4068", + "4070", + "4072", + "4074", + "4076", + "4077", + "408050", + "4081", + "4085", + "4086", + "4087", + "4088", + "4089", + "4090", + "4091", + "4092", + "4093", + "4094", + "41", + "410", + "4100", + "4101", + "411", + "4117", + "4118", + "412", + "4121", + "4123", + "4124", + "4125", + "4128", + "4131", + "4133", + "4134", + "4135", + "4137", + "4140", + "4141", + "4143", + "414301", + "414325", + "4144", + "4148", + "4149", + "415", + "4150", + "4153", + "4155", + "4157", + "4158", + "4162", + "4163", + "4166", + "4168", + "4170", + "4171", + "4172", + "4173", + "4174", + "4175", + "4176", + "4179", + "4188", + "4189", + "4191", + "4192", + "4194", + "4199", + "4204", + "4205", + "4208", + "421", + "4210", + "4212", + "4214", + "4215", + "4216", + "4217", + "4218", + "4222", + "4239", + "4241", + "4245", + "4246", + "4247", + "4249", + "4254", + "4255", + "4256", + "4257", + "4261", + "427", + "4277", + "4281", + "4282", + "4283", + "4284", + "4285", + "4286", + "4287", + "429", + "4292", + "4293", + "4294", + "4296", + "4297", + "43", + "4300", + "4301", + "4303", + "4311", + "4312", + "4313", + "4314", + "4316", + "4317", + "4318", + "4319", + "432", + "4320", + "4321", + "4322", + "4323", + "432355", + "4324", + "4327", + "4330", + "4332", + "4340", + "4342", + "4345", + "4351", + "4352", + "4353", + "4358", + "4360", + "4361", + "4363", + "43847", + "439", + "440", + "440026", + "440138", + "440193", + "440275", + "440335", + "440400", + "440435", + "440561", + "440712", + "440738", + "441478", + "441864", + "441925", + "442721", + "443", + "4430", + "4435", + "4436", + "4437", + "444", + "445", + "4478", + "4481", + "4485", + "4486", + "4487", + "4488", + "4504", + "4507", + "4522", + "4524", + "4534", + "4544", + "4547", + "4548", + "4552", + "4589", + "4591", + "4593", + "4594", + "4595", + "4598", + "4600", + "4601", + "4602", + "4604", + "4607", + "4609", + "4613", + "4616", + "4618", + "462", + "4621", + "4624", + "4625", + "4626", + "4627", + "4628", + "4629", + "463", + "4632", + "4633", + "4634", + "4635", + "4637", + "4638", + "4640", + "4641", + "4643", + "4644", + "4645", + "4646", + "4647", + "4649", + "4650", + "4651", + "4653", + "4654", + "4659", + "4665", + "4668", + "4669", + "467", + "4671", + "4677", + "468", + "4680", + "4681", + "4683", + "4686", + "4688", + "4689", + "4690", + "4691", + "4692", + "4693", + "4697", + "4700", + "4716", + "472", + "4722", + "473", + "4733", + "4738", + "4739", + "474383", + "474384", + "4744", + "4745", + "4747", + "4750", + "4751", + "4758", + "476", + "4760", + "4762", + "4763", + "477", + "4771", + "4773", + "4774", + "4778", + "478", + "4780", + "4784", + "4790", + "4791", + "4792", + "4794", + "4795", + "4796", + "4799", + "4802", + "4803", + "4804", + "4808", + "481", + "4814", + "482", + "4824", + "4829", + "483", + "4830", + "4832", + "4835", + "4836", + "4838", + "4841", + "4842", + "4843", + "4846", + "4848", + "4849", + "4850", + "4851", + "4852", + "4853", + "4854", + "4855", + "4856", + "4858", + "486", + "4860", + "4864", + "4867", + "4868", + "4869", + "487", + "4878", + "4879", + "488", + "4880", + "4881", + "4882", + "489", + "4891", + "4893", + "4897", + "4898", + "49", + "4902", + "4905", + "4908", + "4909", + "4913", + "4915", + "4919", + "4920", + "4921", + "4922", + "4926", + "4927", + "4928", + "4929", + "493", + "4931", + "4935", + "4938", + "493856", + "4939", + "4940", + "4943", + "4946", + "4948", + "4952", + "4953", + "4967", + "4968", + "497189", + "4976", + "4978", + "498", + "4982", + "4983", + "4985", + "49856", + "49860", + "4988", + "4998", + "5000", + "5002", + "5004", + "5005", + "5007", + "5008", + "5009", + "501", + "5010", + "5015", + "5018", + "5021", + "5024", + "5025", + "5027", + "5028", + "5031", + "5032", + "5034", + "503618", + "5045", + "5046", + "5047", + "5048", + "50484", + "50485", + "50486", + "50487", + "50488", + "5049", + "50506", + "5051", + "50511", + "50512", + "50515", + "5052", + "5054", + "5055", + "5058", + "506", + "50604", + "50615", + "50618", + "50619", + "5062", + "50628", + "5063", + "50632", + "5064", + "50640", + "50649", + "50650", + "50674", + "5068", + "5071", + "5073", + "5075", + "5076", + "5077", + "5078", + "5080", + "50801", + "50808", + "50809", + "5081", + "50814", + "5083", + "50833", + "50838", + "50846", + "50848", + "50852", + "50856", + "50862", + "5087", + "5091", + "5093", + "50937", + "5094", + "50940", + "50943", + "50945", + "5095", + "5096", + "50964", + "50999", + "51", + "51002", + "51004", + "51008", + "51009", + "51016", + "51021", + "51024", + "51025", + "51035", + "51042", + "5105", + "51053", + "5106", + "51062", + "51068", + "51072", + "51074", + "51076", + "51079", + "5108", + "51082", + "51083", + "51085", + "51094", + "51095", + "51098", + "51099", + "51105", + "5111", + "51111", + "51112", + "51114", + "51116", + "51119", + "51124", + "51125", + "51126", + "51127", + "51128", + "51129", + "51132", + "51134", + "51135", + "51136", + "51141", + "51143", + "51147", + "51149", + "51151", + "51157", + "5116", + "51162", + "51163", + "51164", + "51172", + "51176", + "51182", + "51185", + "5119", + "51191", + "51192", + "51193", + "51196", + "51201", + "51202", + "51203", + "51205", + "51206", + "51225", + "51227", + "51232", + "51234", + "51244", + "5125", + "51250", + "51255", + "51256", + "51257", + "51259", + "5127", + "51270", + "51271", + "51272", + "51278", + "51283", + "51284", + "51289", + "51291", + "51293", + "51295", + "51296", + "513", + "5130", + "51304", + "51305", + "51306", + "51308", + "51311", + "51312", + "51317", + "51319", + "51322", + "51324", + "5133", + "51330", + "51332", + "51334", + "51339", + "51341", + "51343", + "51347", + "51360", + "51361", + "51362", + "51365", + "51366", + "51368", + "51371", + "51375", + "51377", + "51378", + "51379", + "5138", + "51382", + "51384", + "51386", + "5139", + "51393", + "51398", + "51399", + "514", + "5140", + "51412", + "5142", + "51422", + "51426", + "51428", + "51429", + "51433", + "51434", + "51435", + "51438", + "51439", + "5144", + "51441", + "51447", + "51449", + "51451", + "51454", + "51465", + "51466", + "5147", + "51473", + "51474", + "51479", + "51490", + "51499", + "51501", + "51506", + "5151", + "51514", + "51520", + "51527", + "51528", + "51529", + "5153", + "51535", + "51537", + "5154", + "51542", + "51547", + "51548", + "5155", + "51552", + "51554", + "51560", + "51561", + "51562", + "51564", + "51567", + "51569", + "5157", + "51571", + "51573", + "51574", + "5158", + "51582", + "51588", + "5159", + "51592", + "51594", + "51604", + "51606", + "51608", + "51611", + "51614", + "51619", + "51626", + "51633", + "51637", + "51645", + "51647", + "5165", + "51651", + "51654", + "51657", + "51659", + "5166", + "51667", + "5167", + "51676", + "5168", + "51684", + "51692", + "51699", + "5170", + "51701", + "51702", + "51715", + "51719", + "5172", + "51720", + "51729", + "51733", + "51735", + "51738", + "5174", + "51741", + "51744", + "5175", + "51750", + "51752", + "51755", + "5176", + "51760", + "51762", + "51763", + "51765", + "51768", + "51773", + "51776", + "51778", + "51780", + "51816", + "5184", + "5189", + "5190", + "5191", + "5192", + "5194", + "5195", + "5196", + "5201", + "5202", + "5203", + "5204", + "5205", + "5213", + "5216", + "5217", + "5224", + "5225", + "523", + "5230", + "5236", + "5238", + "5241", + "5244", + "5245", + "5251", + "5255", + "5256", + "5257", + "526", + "5261", + "5265", + "5269", + "527", + "5270", + "5271", + "5272", + "5277", + "5279", + "5281", + "5283", + "5284", + "5286", + "5288", + "5289", + "529", + "5290", + "5291", + "5292", + "5293", + "5294", + "5295", + "5296", + "5297", + "5298", + "5300", + "5305", + "5307", + "5308", + "5309", + "5310", + "5311", + "5314", + "5315", + "5317", + "5318", + "5319", + "5320", + "5321", + "5322", + "5324", + "5325", + "5327", + "5328", + "5329", + "5330", + "5331", + "5332", + "5333", + "53335", + "53342", + "53349", + "5335", + "53353", + "53358", + "5336", + "53373", + "5339", + "5340", + "53407", + "5341", + "5345", + "5347", + "535", + "5350", + "5351", + "5352", + "5354", + "5359", + "5361", + "5364", + "5365", + "5366", + "537", + "5371", + "5373", + "5375", + "5376", + "5378", + "538", + "53834", + "53840", + "53841", + "53904", + "53905", + "53918", + "5393", + "53947", + "5395", + "5396", + "54", + "540", + "54014", + "5406", + "54084", + "54097", + "54101", + "54106", + "5413", + "541468", + "54187", + "5420", + "54206", + "54209", + "5422", + "5424", + "5426", + "5428", + "5429", + "54332", + "54344", + "54361", + "54386", + "54413", + "5443", + "54431", + "54433", + "54434", + "5444", + "54440", + "54443", + "5445", + "54453", + "5446", + "54461", + "54463", + "54465", + "54469", + "5447", + "54471", + "54472", + "54476", + "54487", + "5449", + "54496", + "54499", + "545", + "5450", + "54502", + "54507", + "54509", + "54516", + "54517", + "54520", + "54521", + "54532", + "54537", + "54538", + "54539", + "54542", + "54543", + "54546", + "5455", + "54550", + "54551", + "54552", + "5456", + "54566", + "54567", + "5457", + "5458", + "54583", + "54585", + "546", + "54606", + "54617", + "54625", + "54627", + "5465", + "54658", + "54659", + "54662", + "54664", + "54675", + "54676", + "5468", + "54680", + "5469", + "547", + "5470", + "54708", + "54716", + "54726", + "54732", + "54734", + "54737", + "54741", + "54749", + "54751", + "54757", + "5476", + "54764", + "54765", + "54769", + "5478", + "54784", + "54785", + "54788", + "5479", + "54790", + "54795", + "54800", + "54801", + "54808", + "54809", + "5481", + "54820", + "54825", + "54829", + "54832", + "54843", + "54845", + "54848", + "548593", + "54866", + "54869", + "54870", + "54872", + "54874", + "54880", + "54888", + "54892", + "54894", + "54897", + "54899", + "54900", + "54902", + "54903", + "54908", + "54910", + "54914", + "54918", + "54921", + "54922", + "54926", + "54927", + "54928", + "54929", + "54930", + "5494", + "54941", + "54947", + "54949", + "5495", + "54956", + "54959", + "54968", + "54974", + "54979", + "5498", + "54982", + "54984", + "54986", + "54994", + "54997", + "55", + "550", + "5500", + "55004", + "55005", + "55011", + "55012", + "55014", + "55016", + "55022", + "55023", + "55024", + "55027", + "55031", + "55033", + "55034", + "55036", + "55051", + "55054", + "5506", + "55061", + "55062", + "550643", + "55070", + "55072", + "55080", + "55084", + "55089", + "551", + "55107", + "55109", + "55112", + "55113", + "55120", + "55122", + "55125", + "55128", + "55130", + "55131", + "55135", + "55139", + "5514", + "55142", + "55143", + "55144", + "55146", + "55148", + "5515", + "55152", + "55154", + "55156", + "55159", + "5516", + "55160", + "55164", + "55165", + "55166", + "55171", + "5518", + "55182", + "55183", + "55187", + "55188", + "5519", + "55193", + "55198", + "552", + "55200", + "55201", + "55204", + "55209", + "55210", + "55212", + "55213", + "55215", + "55223", + "55226", + "55236", + "5524", + "55240", + "55243", + "55244", + "55249", + "5525", + "55254", + "55255", + "55269", + "5527", + "55270", + "55273", + "55275", + "5528", + "55284", + "55288", + "55294", + "55296", + "55297", + "553", + "5530", + "55300", + "553115", + "55315", + "55317", + "5532", + "55325", + "55326", + "55331", + "55333", + "55337", + "55340", + "55343", + "55353", + "55355", + "55357", + "55361", + "55366", + "55367", + "5537", + "5538", + "55388", + "5539", + "554", + "55423", + "554313", + "55432", + "55435", + "55437", + "5546", + "55466", + "55486", + "55500", + "55503", + "55505", + "55506", + "5551", + "55520", + "55521", + "55527", + "55529", + "55532", + "55553", + "55559", + "5557", + "55576", + "55577", + "5558", + "55593", + "55600", + "55601", + "55603", + "55604", + "55605", + "55610", + "55612", + "55613", + "55614", + "55617", + "5562", + "55621", + "55624", + "55625", + "55626", + "55627", + "5563", + "55630", + "55633", + "55636", + "55644", + "55646", + "55647", + "55650", + "55651", + "55652", + "55654", + "55655", + "55658", + "5566", + "55660", + "55662", + "55666", + "55669", + "5567", + "55670", + "55677", + "55681", + "55687", + "55689", + "5569", + "55690", + "55691", + "55693", + "55696", + "55697", + "55699", + "5570", + "55701", + "55703", + "55704", + "55705", + "55706", + "5571", + "55716", + "55717", + "55719", + "55722", + "55729", + "5573", + "55732", + "55733", + "55737", + "55739", + "55741", + "55743", + "55745", + "55746", + "5575", + "55750", + "55754", + "55755", + "55756", + "5576", + "55761", + "55763", + "55764", + "55765", + "55768", + "5577", + "55770", + "55773", + "55775", + "55777", + "5578", + "55780", + "55781", + "55784", + "55788", + "55789", + "5579", + "55790", + "55791", + "558", + "5580", + "55800", + "55801", + "55806", + "55809", + "5581", + "55810", + "55812", + "55818", + "5582", + "55823", + "55829", + "5583", + "55830", + "55831", + "55835", + "55843", + "55845", + "55851", + "55854", + "55856", + "55858", + "55859", + "5586", + "55861", + "55863", + "55869", + "5587", + "55870", + "5588", + "55885", + "5589", + "55894", + "55901", + "55904", + "55906", + "5591", + "55914", + "55917", + "5592", + "55920", + "55929", + "5593", + "55937", + "5594", + "5595", + "55958", + "55959", + "55966", + "55968", + "55969", + "55971", + "5598", + "5599", + "5600", + "56005", + "56006", + "5601", + "5603", + "56034", + "5604", + "5605", + "56052", + "5606", + "5608", + "5609", + "56098", + "5610", + "5611", + "56122", + "56123", + "56125", + "56126", + "56127", + "5613", + "56130", + "56131", + "56132", + "56133", + "56160", + "5617", + "56172", + "5618", + "5619", + "5620", + "56203", + "5621", + "5624", + "56241", + "56244", + "56245", + "56246", + "56253", + "56254", + "56257", + "56259", + "5626", + "56262", + "56270", + "56271", + "5629", + "5630", + "56302", + "5631", + "56339", + "56341", + "5641", + "56413", + "5644", + "5645", + "56477", + "56478", + "5648", + "5650", + "5651", + "5653", + "5654", + "56547", + "5657", + "566", + "5660", + "56603", + "56605", + "56623", + "56624", + "5663", + "5664", + "56647", + "56649", + "56652", + "56658", + "56681", + "56683", + "567", + "56776", + "5678", + "56832", + "56848", + "56849", + "56851", + "56852", + "5687", + "56886", + "56890", + "56892", + "56893", + "56894", + "56895", + "56896", + "56900", + "56907", + "56913", + "56915", + "56916", + "56919", + "5692", + "56922", + "56923", + "56926", + "56929", + "56937", + "56940", + "56945", + "56947", + "56957", + "5696", + "5697", + "56975", + "5698", + "56983", + "56984", + "5699", + "56992", + "56993", + "56994", + "56998", + "57003", + "57007", + "5701", + "57010", + "5702", + "57020", + "57026", + "57038", + "57045", + "57048", + "5705", + "57057", + "5706", + "57082", + "57084", + "57091", + "57092", + "57096", + "57102", + "57103", + "57104", + "57105", + "57110", + "57111", + "57115", + "57118", + "57119", + "57120", + "57122", + "57126", + "57130", + "57142", + "57151", + "57152", + "57153", + "5716", + "57161", + "57162", + "57165", + "57167", + "57169", + "5717", + "57171", + "57175", + "57178", + "5718", + "57182", + "57187", + "57190", + "57192", + "57194", + "572", + "57211", + "57214", + "57217", + "57222", + "5723", + "57231", + "5725", + "5727", + "5728", + "573", + "57325", + "57333", + "5734", + "57343", + "5737", + "57379", + "57381", + "57393", + "5740", + "57402", + "57405", + "5741", + "57410", + "57413", + "57448", + "57449", + "5745", + "57459", + "57464", + "57465", + "57468", + "5747", + "57471", + "57472", + "57479", + "57480", + "57482", + "57489", + "57492", + "57493", + "57498", + "575", + "57502", + "57506", + "57510", + "57511", + "57512", + "57514", + "57519", + "57520", + "57521", + "57522", + "57526", + "5753", + "57531", + "57533", + "57534", + "57535", + "57538", + "57539", + "5754", + "57542", + "57545", + "57551", + "57552", + "57553", + "57555", + "57556", + "5756", + "57560", + "57561", + "57563", + "57569", + "57572", + "57580", + "57584", + "57589", + "57590", + "57591", + "57592", + "57599", + "57600", + "57602", + "57605", + "57606", + "57608", + "57614", + "57617", + "57623", + "57628", + "57630", + "57636", + "5764", + "57646", + "57647", + "57650", + "57662", + "57664", + "57673", + "57674", + "57678", + "57679", + "5768", + "57680", + "57688", + "57689", + "57697", + "57699", + "5770", + "57701", + "57706", + "57707", + "5771", + "57717", + "57718", + "57724", + "57728", + "57732", + "5774", + "57761", + "57763", + "5777", + "57787", + "578", + "5780", + "57805", + "5781", + "57818", + "5782", + "57822", + "57824", + "57829", + "5783", + "57834", + "5784", + "57864", + "5788", + "5789", + "5792", + "5793", + "5795", + "5796", + "5797", + "5798", + "58", + "580", + "5800", + "5801", + "5802", + "5805", + "5806", + "581", + "5810", + "5813", + "5817", + "5818", + "5819", + "582", + "5824", + "5825", + "5826", + "5828", + "5829", + "583", + "5830", + "5831", + "5832", + "5833", + "5836", + "5837", + "58476", + "58480", + "58484", + "58487", + "58493", + "58494", + "58495", + "58497", + "58499", + "585", + "58504", + "58508", + "58509", + "58524", + "58529", + "58533", + "5859", + "5860", + "5861", + "5862", + "5864", + "5865", + "5870", + "5871", + "5872", + "5873", + "5874", + "5877", + "5879", + "5880", + "5881", + "5883", + "5885", + "5886", + "5887", + "5888", + "5889", + "5890", + "5892", + "5894", + "5896", + "5898", + "5899", + "59", + "590", + "5901", + "5903", + "5905", + "5906", + "59067", + "5908", + "59082", + "5909", + "5911", + "5912", + "5913", + "5914", + "5915", + "5916", + "5919", + "5920", + "5921", + "5922", + "5923", + "5924", + "5925", + "5927", + "59272", + "59283", + "59284", + "5930", + "59307", + "5931", + "5932", + "59335", + "59338", + "59339", + "59341", + "59343", + "59344", + "59345", + "59349", + "59352", + "59353", + "5936", + "595", + "5950", + "5956", + "5959", + "596", + "5961", + "5962", + "5965", + "5966", + "5970", + "5971", + "5972", + "5976", + "5977", + "5978", + "598", + "5980", + "5981", + "5982", + "5983", + "5984", + "5985", + "5987", + "5988", + "5993", + "5994", + "5996", + "5997", + "5998", + "5999", + "60", + "6000", + "6001", + "6004", + "6009", + "6010", + "6014", + "6016", + "6017", + "6019", + "602", + "60343", + "6036", + "60386", + "604", + "60401", + "6041", + "60412", + "60437", + "6045", + "6046", + "60468", + "6047", + "6048", + "60482", + "6049", + "6050", + "60506", + "60529", + "60558", + "60559", + "60561", + "6059", + "60592", + "60673", + "60675", + "60681", + "60684", + "6091", + "6092", + "6093", + "6095", + "6097", + "610", + "6102", + "6103", + "611", + "6117", + "6118", + "6119", + "6121", + "6123", + "6125", + "613", + "6132", + "6133", + "6135", + "6138", + "6141", + "6154", + "6155", + "6160", + "6165", + "6187", + "6188", + "6195", + "6197", + "6198", + "6201", + "6204", + "6206", + "6208", + "6209", + "6210", + "6218", + "6223", + "6224", + "6228", + "6229", + "6231", + "6232", + "6234", + "6235", + "6237", + "6239", + "624", + "6240", + "6241", + "6247", + "6248", + "6249", + "6251", + "6256", + "6259", + "6261", + "6262", + "6263", + "627", + "6271", + "6272", + "6278", + "6279", + "6280", + "6281", + "6283", + "6284", + "6288", + "629", + "6293", + "6295", + "6299", + "6301", + "6303", + "63035", + "63036", + "6304", + "6307", + "6309", + "6310", + "6311", + "6314", + "6317", + "6318", + "6323", + "6324", + "6326", + "6327", + "6328", + "6329", + "633", + "6330", + "6331", + "6334", + "6335", + "6336", + "6337", + "6338", + "6339", + "634", + "6340", + "6342", + "6346", + "6347", + "6348", + "6351", + "6354", + "6355", + "6356", + "6357", + "6359", + "636", + "6360", + "6361", + "6362", + "6363", + "6364", + "6366", + "6367", + "6368", + "6369", + "637", + "6370", + "6372", + "6373", + "6374", + "6375", + "6376", + "638", + "6382", + "6385", + "6386", + "6387", + "63874", + "6388", + "6389", + "63891", + "63893", + "63894", + "63895", + "6390", + "63906", + "6391", + "63915", + "63916", + "6392", + "63922", + "63923", + "63924", + "63925", + "63928", + "63932", + "6396", + "63967", + "6397", + "63971", + "63976", + "63979", + "6399", + "640", + "6400", + "6401", + "6402", + "6403", + "6404", + "6406", + "64065", + "64072", + "64081", + "64083", + "64087", + "64089", + "64093", + "64094", + "641", + "64108", + "64110", + "64111", + "64112", + "64114", + "64115", + "64116", + "64121", + "64127", + "64129", + "64131", + "64132", + "64135", + "64137", + "64149", + "64151", + "6416", + "64167", + "64170", + "641700", + "64175", + "6418", + "642", + "6421", + "64215", + "64218", + "6422", + "64220", + "64223", + "64225", + "642273", + "6424", + "64240", + "64241", + "6425", + "6427", + "64282", + "64283", + "64285", + "643", + "64320", + "64321", + "64324", + "64326", + "64327", + "64328", + "64332", + "643418", + "64375", + "644", + "6440", + "64400", + "6441", + "64410", + "64419", + "64421", + "64422", + "64431", + "6444", + "6446", + "6448", + "644815", + "6449", + "6451", + "6452", + "6453", + "64581", + "64600", + "64601", + "6464", + "64682", + "64689", + "6469", + "6470", + "64710", + "64714", + "6472", + "6473", + "64756", + "6476", + "64762", + "6477", + "64771", + "64772", + "6478", + "64780", + "64785", + "64786", + "64787", + "64793", + "64798", + "648", + "6480", + "64801", + "64805", + "6482", + "6483", + "64834", + "64837", + "64839", + "6484", + "64840", + "64844", + "64848", + "64853", + "64855", + "64856", + "64857", + "64858", + "64859", + "6487", + "649", + "6490", + "6491", + "64919", + "6492", + "64924", + "64926", + "6494", + "64946", + "6495", + "6496", + "6497", + "6499", + "650", + "6500", + "65009", + "65010", + "65018", + "6502", + "6504", + "6505", + "65055", + "6506", + "65062", + "6507", + "65078", + "6508", + "65082", + "6509", + "6510", + "65109", + "6511", + "6512", + "65123", + "65125", + "6513", + "6515", + "6518", + "6519", + "652", + "6520", + "6521", + "65217", + "6523", + "6524", + "65243", + "65250", + "65258", + "65266", + "65267", + "65268", + "6528", + "6529", + "652991", + "653", + "6531", + "653145", + "6532", + "6533", + "653361", + "653464", + "6535", + "6536", + "6538", + "653808", + "6539", + "654", + "6540", + "6541", + "6546", + "6548", + "655", + "6550", + "6555", + "6556", + "6557", + "6558", + "6559", + "6564", + "6565", + "6566", + "6567", + "657", + "6570", + "6571", + "6572", + "6573", + "6576", + "6578", + "658", + "6580", + "6581", + "6582", + "6583", + "6584", + "6585", + "6586", + "6588", + "659", + "6590", + "6591", + "6595", + "6597", + "6598", + "65981", + "65989", + "6599", + "65992", + "65998", + "660", + "66004", + "6601", + "6602", + "6603", + "6604", + "6605", + "6606", + "6608", + "6609", + "661", + "6611", + "6612", + "6613", + "6616", + "662", + "6622", + "6624", + "6625", + "6628", + "6638", + "664", + "6640", + "6642", + "6643", + "6646", + "6647", + "6648", + "665", + "6651", + "6652", + "6653", + "6654", + "6655", + "6657", + "6658", + "6659", + "6660", + "6662", + "6663", + "6664", + "6667", + "667", + "6672", + "6678", + "668", + "6683", + "6688", + "6689", + "6690", + "6693", + "6695", + "6696", + "6707", + "6708", + "671", + "6710", + "6711", + "6717", + "6718", + "672", + "6720", + "6721", + "6722", + "6725", + "6727", + "6728", + "6729", + "673", + "6730", + "6731", + "6732", + "6734", + "6736", + "6737", + "6738", + "6741", + "6742", + "6745", + "6746", + "6748", + "6749", + "675", + "6755", + "6757", + "6767", + "6768", + "677", + "6770", + "6772", + "6773", + "6774", + "6775", + "6776", + "6777", + "6778", + "678", + "6781", + "6785", + "6786", + "6788", + "6789", + "6790", + "6792", + "6793", + "6794", + "6795", + "6804", + "6809", + "6810", + "6811", + "6812", + "6813", + "6814", + "6815", + "682", + "6820", + "6821", + "6829", + "683", + "6832", + "6833", + "6836", + "6839", + "684", + "6840", + "6843", + "6844", + "6845", + "6847", + "685", + "6850", + "6853", + "6857", + "6860", + "6865", + "6868", + "6869", + "687", + "6870", + "6871", + "6872", + "6873", + "6879", + "6880", + "6882", + "6885", + "6886", + "6887", + "689", + "6890", + "6891", + "6892", + "6895", + "6897", + "6898", + "6899", + "6900", + "6901", + "6902", + "6903", + "6904", + "6905", + "6907", + "6908", + "6909", + "6910", + "6913", + "692094", + "6925", + "6926", + "6927", + "6928", + "6929", + "6932", + "6934", + "6938", + "694", + "6942", + "6945", + "6948", + "6949", + "695", + "6950", + "6988", + "699", + "6992", + "6993", + "6997", + "6999", + "70", + "7005", + "7006", + "7009", + "701", + "7010", + "7011", + "7013", + "7014", + "7015", + "7016", + "7018", + "7021", + "7023", + "7025", + "7026", + "7027", + "7030", + "7035", + "7036", + "7038", + "7039", + "7040", + "7041", + "7042", + "7043", + "7045", + "7046", + "7048", + "7049", + "7050", + "7051", + "7052", + "7053", + "7054", + "7056", + "7057", + "7058", + "706", + "7060", + "7064", + "7066", + "7067", + "7068", + "7070", + "7074", + "7076", + "7078", + "708", + "7080", + "7082", + "7083", + "7084", + "7086", + "7092", + "7094", + "7095", + "7096", + "7097", + "7098", + "7099", + "71", + "710", + "7100", + "7105", + "7107", + "7110", + "7113", + "7114", + "712", + "7122", + "7124", + "7125", + "7126", + "7128", + "7130", + "7132", + "7133", + "7134", + "7136", + "7137", + "7138", + "7139", + "714", + "7140", + "7141", + "7148", + "715", + "7150", + "7153", + "7155", + "7156", + "7157", + "7158", + "716", + "7163", + "7164", + "7168", + "7169", + "717", + "7170", + "7173", + "7174", + "7175", + "7177", + "718", + "7184", + "7185", + "7186", + "7187", + "7188", + "719", + "72", + "720", + "7201", + "7203", + "7204", + "721", + "722", + "7226", + "7227", + "7248", + "7249", + "725", + "7252", + "7253", + "7259", + "726", + "7260", + "7264", + "7266", + "7267", + "727", + "7273", + "7274", + "7275", + "7276", + "727800", + "727857", + "727897", + "727910", + "728", + "728294", + "7283", + "728358", + "728369", + "728458", + "7286", + "7287", + "7289", + "7290", + "7291", + "7292", + "729238", + "7294", + "729440", + "7295", + "7297", + "7298", + "729873", + "7299", + "729920", + "7301", + "730249", + "7305", + "731", + "7314", + "7317", + "7319", + "732", + "7320", + "7321", + "7322", + "7323", + "7324", + "7325", + "7326", + "7327", + "7328", + "7329", + "7332", + "7334", + "7335", + "7336", + "7337", + "7341", + "7343", + "7345", + "7349", + "735", + "7352", + "7353", + "7355", + "7358", + "7369", + "7372", + "7373", + "7374", + "7375", + "7376", + "738", + "7389", + "7390", + "7391", + "7392", + "7398", + "7399", + "7401", + "7402", + "7405", + "7408", + "7409", + "7410", + "7411", + "7412", + "7414", + "7415", + "7416", + "7424", + "7428", + "7429", + "7430", + "7431", + "7432", + "7436", + "7439", + "7442", + "7443", + "7444", + "7448", + "745", + "7450", + "7453", + "7454", + "7456", + "7458", + "7461", + "7462", + "7465", + "7466", + "7468", + "7469", + "7471", + "7472", + "7473", + "7474", + "7476", + "7477", + "7480", + "7481", + "7482", + "7484", + "7485", + "7486", + "7490", + "7494", + "7498", + "7507", + "7508", + "7512", + "7514", + "7516", + "7517", + "7518", + "752", + "7520", + "7525", + "7528", + "7529", + "753", + "7531", + "7532", + "7533", + "7534", + "7535", + "7538", + "754", + "7545", + "7546", + "7547", + "755", + "7555", + "7564", + "760", + "7681", + "768211", + "7694", + "7703", + "7704", + "7706", + "7707", + "7716", + "7726", + "773", + "7737", + "774", + "775", + "7756", + "776", + "778", + "7780", + "7781", + "7782", + "7784", + "7786", + "779", + "7791", + "7798", + "780", + "7804", + "7805", + "781", + "7812", + "7813", + "782", + "7827", + "783", + "7837", + "7840", + "7841", + "7844", + "7846", + "7849", + "7855", + "7857", + "7862", + "7867", + "7869", + "7871", + "7874", + "7879", + "788", + "7881", + "78986", + "78989", + "79001", + "79003", + "79004", + "79005", + "79008", + "79016", + "79031", + "79035", + "79036", + "79037", + "79039", + "79053", + "79058", + "79065", + "79073", + "79075", + "79087", + "79092", + "79094", + "79102", + "79109", + "7913", + "79132", + "79139", + "79140", + "79142", + "79143", + "79147", + "79155", + "79156", + "79158", + "7917", + "79184", + "79187", + "79188", + "7922", + "79228", + "7923", + "79258", + "7940", + "7941", + "79415", + "7942", + "79441", + "79443", + "79444", + "79541", + "79567", + "79568", + "7957", + "79576", + "79577", + "79583", + "79585", + "79589", + "79591", + "79594", + "79596", + "79598", + "796", + "79600", + "79602", + "79608", + "79618", + "79621", + "79625", + "79628", + "79631", + "79633", + "79639", + "79644", + "79649", + "79650", + "79651", + "79654", + "79658", + "79659", + "79660", + "79674", + "79677", + "79679", + "79689", + "79693", + "79699", + "79705", + "79709", + "79711", + "79714", + "79718", + "79719", + "79722", + "79728", + "79733", + "79734", + "79735", + "79738", + "79752", + "79753", + "79755", + "79759", + "79768", + "79770", + "7978", + "79783", + "79784", + "79791", + "79792", + "79796", + "79798", + "79803", + "79805", + "79809", + "79812", + "79813", + "79822", + "79823", + "79827", + "79834", + "79837", + "7984", + "79840", + "79845", + "79848", + "79866", + "79867", + "79869", + "79871", + "79874", + "79875", + "79876", + "79884", + "79888", + "79890", + "79892", + "79899", + "79901", + "79902", + "79912", + "79913", + "79915", + "79918", + "79924", + "7993", + "79931", + "79932", + "7994", + "79944", + "79947", + "79953", + "79955", + "79956", + "79959", + "79971", + "79977", + "79982", + "79983", + "79987", + "79989", + "79991", + "79998", + "8000", + "80000", + "80005", + "8001", + "80011", + "80020", + "80024", + "80025", + "80036", + "80055", + "80067", + "80119", + "8013", + "80131", + "80139", + "80144", + "80149", + "80152", + "80153", + "80168", + "80169", + "80174", + "80176", + "80179", + "80183", + "80184", + "80185", + "80196", + "80199", + "80204", + "80206", + "80207", + "80208", + "8021", + "80216", + "80218", + "8022", + "80231", + "80232", + "80235", + "80243", + "80263", + "80267", + "80271", + "80279", + "8028", + "8029", + "80304", + "8031", + "80311", + "80314", + "80317", + "80324", + "80326", + "80331", + "80339", + "80342", + "80346", + "80349", + "80351", + "8036", + "8038", + "80380", + "80381", + "8048", + "8061", + "8065", + "80700", + "80725", + "80728", + "80736", + "8074", + "8076", + "80762", + "80765", + "80772", + "80776", + "8078", + "80781", + "808", + "80816", + "80821", + "80824", + "80829", + "80834", + "8085", + "80856", + "8086", + "8087", + "8091", + "8092", + "81", + "8100", + "81031", + "81035", + "811", + "8120", + "81285", + "814", + "8140", + "8148", + "81490", + "81494", + "815", + "81501", + "81502", + "81537", + "81539", + "81542", + "81545", + "81554", + "81555", + "81559", + "81562", + "81565", + "81570", + "81573", + "816", + "81603", + "81607", + "81608", + "81609", + "81610", + "81614", + "81618", + "81619", + "81620", + "81622", + "81631", + "81671", + "81693", + "817", + "81704", + "8174", + "81790", + "81792", + "81794", + "818", + "81832", + "81839", + "81844", + "81847", + "81857", + "81858", + "81876", + "81887", + "8189", + "819", + "81926", + "81929", + "81930", + "820", + "8200", + "8202", + "8204", + "821", + "8214", + "8216", + "822", + "8220", + "823", + "8239", + "824", + "8241", + "8242", + "8243", + "825", + "8260", + "8263", + "8266", + "8270", + "8288", + "8289", + "829", + "8291", + "8294", + "8295", + "8301", + "8302", + "831", + "8312", + "8313", + "8314", + "8317", + "8318", + "832", + "8320", + "8321", + "8322", + "8323", + "8324", + "833", + "83394", + "834", + "83452", + "83460", + "83475", + "83479", + "83480", + "83481", + "83483", + "8350", + "8351", + "8352", + "8353", + "83538", + "8354", + "83540", + "83547", + "83548", + "8355", + "83550", + "8356", + "8357", + "8358", + "8359", + "83590", + "83597", + "836", + "8360", + "83605", + "8361", + "8362", + "8363", + "83637", + "8364", + "8366", + "83660", + "83666", + "83667", + "8367", + "8368", + "83695", + "837", + "8370", + "83700", + "83706", + "83715", + "8372", + "83734", + "83743", + "83752", + "83786", + "8379", + "83844", + "83852", + "83860", + "83862", + "83871", + "83872", + "83874", + "83879", + "83891", + "83892", + "839", + "83903", + "83930", + "83932", + "83933", + "83959", + "8398", + "83987", + "8399", + "83990", + "840", + "8402", + "84033", + "84034", + "8405", + "84057", + "84058", + "84059", + "84061", + "84067", + "84068", + "84078", + "84079", + "8408", + "84080", + "84083", + "84084", + "8409", + "841", + "84100", + "84101", + "8412", + "84126", + "84131", + "84133", + "84142", + "84144", + "84152", + "84153", + "84159", + "84162", + "84163", + "84164", + "84166", + "84168", + "8417", + "84172", + "84174", + "84188", + "84189", + "84193", + "84196", + "842", + "84219", + "84230", + "84231", + "84243", + "8425", + "84250", + "84258", + "84260", + "84268", + "84277", + "8428", + "84282", + "84286", + "84295", + "84296", + "84299", + "843", + "84301", + "84302", + "84305", + "8431", + "84314", + "84317", + "84329", + "84335", + "84340", + "8435", + "8436", + "8437", + "84376", + "8438", + "844", + "8440", + "8443", + "84433", + "8444", + "84444", + "84446", + "84447", + "8445", + "84456", + "84458", + "84464", + "84466", + "8448", + "845", + "8450", + "84501", + "8451", + "84515", + "8452", + "84520", + "84522", + "84524", + "8453", + "8454", + "84557", + "84570", + "84572", + "8459", + "846", + "8460", + "84619", + "8462", + "84627", + "84628", + "84630", + "84631", + "84632", + "84640", + "84643", + "84649", + "84660", + "84661", + "84665", + "84667", + "84668", + "84675", + "84679", + "8468", + "847", + "84701", + "84706", + "8471", + "84720", + "84722", + "84725", + "84727", + "8473", + "84747", + "84749", + "8476", + "8477", + "84790", + "8480", + "84803", + "8481", + "84817", + "84818", + "8482", + "84823", + "8483", + "84830", + "84833", + "84842", + "84851", + "84861", + "84868", + "84869", + "8487", + "84870", + "84875", + "84876", + "84879", + "84885", + "84888", + "84889", + "84894", + "84895", + "84896", + "8490", + "84905", + "84910", + "84913", + "84919", + "8493", + "84930", + "84932", + "84934", + "84936", + "84937", + "84938", + "84942", + "84946", + "84947", + "84952", + "84958", + "84962", + "84967", + "84971", + "84976", + "84978", + "84984", + "84985", + "84986", + "84987", + "8499", + "84992", + "8500", + "8501", + "8502", + "8503", + "8504", + "8506", + "8507", + "8510", + "8514", + "8516", + "8517", + "8518", + "8520", + "8525", + "8526", + "8527", + "8529", + "85301", + "85302", + "8531", + "85358", + "8536", + "85360", + "85363", + "85364", + "85366", + "85369", + "85377", + "85378", + "85397", + "85407", + "85409", + "85413", + "85415", + "8542", + "85439", + "85440", + "85446", + "85453", + "85456", + "85459", + "8546", + "85462", + "85464", + "85465", + "8547", + "85477", + "85478", + "8548", + "85480", + "8549", + "8550", + "8553", + "8554", + "8555", + "8557", + "8558", + "8560", + "8562", + "8565", + "8566", + "8567", + "857", + "8570", + "8572", + "8573", + "8576", + "8578", + "858", + "859", + "860", + "8600", + "8601", + "8604", + "8605", + "8607", + "8609", + "861", + "8611", + "8613", + "8621", + "8625", + "8626", + "8629", + "863", + "8631", + "8636", + "8638", + "864", + "8642", + "8643", + "8644", + "8646", + "8647", + "865", + "8650", + "8651", + "8658", + "8659", + "8660", + "8661", + "8662", + "8663", + "8664", + "8665", + "8666", + "8667", + "8671", + "8673", + "8674", + "8675", + "8676", + "8677", + "8678", + "8682", + "8692", + "8694", + "8697", + "8698", + "87", + "8701", + "871", + "8710", + "8711", + "8717", + "87178", + "8720", + "8721", + "8722", + "8723", + "8724", + "8725", + "8726", + "8728", + "8729", + "8733", + "8736", + "8737", + "8738", + "8739", + "8740", + "8741", + "8742", + "8743", + "8744", + "875", + "8751", + "8754", + "8760", + "8761", + "8764", + "8767", + "8772", + "8773", + "8774", + "8775", + "8776", + "8780", + "8784", + "8788", + "8792", + "8795", + "8796", + "8797", + "8799", + "88", + "8800", + "8807", + "8808", + "8809", + "8812", + "8813", + "8815", + "8817", + "8818", + "8819", + "8820", + "8821", + "8823", + "8826", + "8828", + "8829", + "8831", + "8832", + "8835", + "8837", + "8838", + "8840", + "8841", + "8844", + "88455", + "8850", + "8851", + "8854", + "8859", + "8862", + "8867", + "8871", + "8874", + "8877", + "8878", + "8881", + "8882", + "8883", + "8884", + "8887", + "8888", + "889", + "8890", + "8891", + "8892", + "8893", + "8895", + "8896", + "8897", + "8898", + "89", + "8900", + "8904", + "8905", + "8907", + "891", + "8910", + "8911", + "8912", + "8913", + "8915", + "892", + "8924", + "8925", + "8928", + "8929", + "8930", + "8934", + "8936", + "8938", + "894", + "8941", + "8942", + "8943", + "8945", + "896", + "8968", + "8974", + "8975", + "8976", + "89780", + "89781", + "89790", + "89795", + "89801", + "89839", + "89846", + "8985", + "8986", + "89866", + "8987", + "89870", + "89872", + "8988", + "89884", + "8989", + "89890", + "89891", + "899", + "8993", + "8994", + "89941", + "8995", + "89958", + "8996", + "8997", + "89970", + "90", + "900", + "90007", + "9002", + "90025", + "90070", + "90102", + "90121", + "90139", + "90161", + "9019", + "9021", + "9024", + "9025", + "9026", + "90268", + "90293", + "9031", + "9033", + "9034", + "90355", + "90378", + "90379", + "904", + "90410", + "90416", + "90417", + "90427", + "9043", + "9044", + "90441", + "90459", + "9049", + "905", + "9051", + "90523", + "9053", + "9055", + "90550", + "9056", + "90580", + "90627", + "90678", + "9071", + "9076", + "9077", + "908", + "90809", + "90850", + "90861", + "90865", + "9087", + "9088", + "9091", + "9092", + "90933", + "9094", + "90952", + "9096", + "9097", + "9098", + "9099", + "90993", + "91", + "9100", + "91010", + "91039", + "91056", + "9107", + "9108", + "9110", + "9111", + "9112", + "9113", + "91137", + "91147", + "91179", + "912", + "9125", + "9126", + "91272", + "9131", + "91319", + "9134", + "9138", + "9139", + "91392", + "914", + "9140", + "91404", + "9141", + "91445", + "91452", + "91461", + "9147", + "9148", + "9149", + "915", + "9150", + "9152", + "9154", + "91543", + "9156", + "91574", + "9158", + "916", + "9162", + "91647", + "91662", + "91663", + "917", + "9170", + "9172", + "9173", + "9175", + "91752", + "91754", + "91782", + "9179", + "9180", + "91801", + "91807", + "9181", + "9183", + "9184", + "9185", + "91851", + "91862", + "9187", + "91875", + "9189", + "919", + "91947", + "91949", + "92", + "920", + "9200", + "92002", + "9202", + "9203", + "9204", + "9212", + "9214", + "92140", + "9215", + "92154", + "92162", + "9217", + "9218", + "922", + "9223", + "92241", + "92255", + "9227", + "923", + "92305", + "9231", + "92335", + "92344", + "92345", + "92359", + "92369", + "92399", + "9241", + "9244", + "9247", + "925", + "9252", + "9253", + "9255", + "9256", + "92565", + "92579", + "9258", + "92595", + "926", + "9260", + "9261", + "92610", + "9266", + "92667", + "92675", + "9270", + "92714", + "92747", + "9275", + "9276", + "928", + "92815", + "9283", + "9289", + "9290", + "92912", + "9294", + "92949", + "92960", + "93", + "930", + "9306", + "931", + "9314", + "93145", + "93183", + "9319", + "9320", + "9321", + "93210", + "93233", + "9325", + "933", + "93323", + "9333", + "9338", + "93380", + "9341", + "9342", + "93426", + "9343", + "9344", + "9349", + "9350", + "9353", + "9354", + "93587", + "93589", + "9361", + "93611", + "9362", + "93627", + "9363", + "93649", + "9365", + "93650", + "93663", + "9367", + "9368", + "9370", + "9371", + "9372", + "9373", + "9377", + "9378", + "9381", + "9382", + "9388", + "939", + "9390", + "9392", + "9397", + "93974", + "93986", + "94", + "940", + "9400", + "94005", + "9401", + "9403", + "9404", + "94056", + "9409", + "941", + "94103", + "9411", + "94121", + "9413", + "94134", + "9414", + "9421", + "9423", + "9425", + "9427", + "943", + "9436", + "9437", + "944", + "9442", + "9446", + "9447", + "945", + "9450", + "9451", + "9453", + "9454", + "9463", + "9464", + "9468", + "9469", + "947", + "9470", + "9474", + "9475", + "948", + "9482", + "9487", + "9488", + "949", + "9491", + "9493", + "9495", + "9496", + "9497", + "9499", + "950", + "9507", + "9508", + "9509", + "9510", + "9512", + "9517", + "9518", + "952", + "9520", + "9522", + "9526", + "9527", + "9528", + "9529", + "953", + "9530", + "9531", + "9532", + "9533", + "9545", + "9547", + "9554", + "9555", + "9559", + "9562", + "9564", + "9568", + "9569", + "9570", + "9572", + "9573", + "9575", + "9577", + "9578", + "958", + "9581", + "9585", + "9587", + "9588", + "959", + "960", + "9600", + "9601", + "9604", + "9607", + "961", + "9611", + "9617", + "9618", + "9619", + "9627", + "9628", + "9631", + "9632", + "9636", + "9637", + "9638", + "9639", + "9641", + "9645", + "96459", + "9647", + "9648", + "9649", + "965", + "9652", + "9653", + "9655", + "9659", + "966", + "9662", + "9663", + "9666", + "967", + "9670", + "9672", + "9675", + "9679", + "9681", + "9683", + "9684", + "9688", + "9690", + "9692", + "9693", + "9694", + "9695", + "9696", + "9697", + "9698", + "9699", + "970", + "9700", + "9702", + "9705", + "9706", + "9709", + "9711", + "9712", + "9719", + "972", + "9722", + "9723", + "973", + "9730", + "9732", + "9734", + "9736", + "9737", + "9738", + "9739", + "974", + "9742", + "9743", + "9747", + "9748", + "975", + "9750", + "9757", + "9759", + "9765", + "977", + "9770", + "9772", + "9775", + "9776", + "9777", + "9779", + "9780", + "9782", + "9784", + "9786", + "9788", + "9791", + "9793", + "9798", + "9804", + "9807", + "9812", + "9817", + "9821", + "9824", + "9826", + "9827", + "9828", + "983", + "9830", + "9833", + "9837", + "9839", + "9841", + "9842", + "9843", + "9844", + "9847", + "9853", + "9854", + "9856", + "9863", + "9865", + "9867", + "9868", + "9869", + "987", + "9870", + "9871", + "9873", + "9874", + "9885", + "989", + "9892", + "9894", + "9895", + "9896", + "9897", + "9898", + "990", + "9901", + "9903", + "9905", + "9907", + "9908", + "9909", + "991", + "9912", + "9915", + "9918", + "9919", + "9921", + "9926", + "9927", + "9928", + "993", + "9935", + "9936", + "9938", + "9939", + "994", + "9940", + "9943", + "9948", + "9949", + "995", + "9950", + "9958", + "996", + "9961", + "9965", + "9966", + "9968", + "997", + "9971", + "9972", + "9978", + "9982", + "9984", + "9985", + "999", + "9990", + "9992", + "9993", + "9994" + ] + }, + "mdl_weights": [ + -0.40974890822952326, + 0.17140563591253577, + -0.028712726593787076, + -0.551255163290246, + 0.44118734084060945, + -0.0073917571751650965, + -0.5034934821523909, + 0.18853049626444415, + 0.08927631500281458, + 0.2448407525037248, + -0.32129550949187735, + -0.4355696553729841, + 0.16745416459604748, + -0.49281132899069013, + 0.8334380881535917, + -0.13985315994101002, + 0.36068686100371405, + 0.4595927810035052, + 0.04772227371865266, + 0.0344982339328274, + 0.5539602108599836, + -0.43256035251745406, + -0.8604237666475991, + 0.04126582316736508, + 0.6110718410408569, + 0.6948933715399461, + -0.07985118886126825, + -0.7125101241344188, + 0.33574889441246614, + -0.3977473960593023, + 0.020069410964115467, + -0.3702996094454082, + 0.7464692788089876, + -0.17741049121281466, + 0.13577257351278857, + 0.12451549909307413, + 0.5767828934752469, + 0.5225507745861501, + 0.7168525122034393, + -0.015948987922104273, + -1.1169200850462169, + -0.2587618040793161, + 0.4879648775492885, + 0.16969534351864227, + -0.622644126290052, + 0.1000940961075535, + 0.11369681945634086, + 0.1419191236577537, + -0.687865620939061, + -0.958794409134898, + 0.26319366426300306, + -0.49712413058986005, + -0.6777375820325517, + 0.5316441962986669, + 0.7195041422296939, + 0.0029442630328307823, + 0.39895607530487304, + -0.047040523167856466, + 1.6669700815512662, + -0.44538945199059476, + 0.7139310130820689, + 0.24175448395713312, + 0.2045537562781361, + 0.39080475993036334, + -0.8447874756449616, + -0.7566732582140062, + 0.013150783811922577, + 0.1475073779323312, + 0.8516229665899708, + -0.20907357143177624, + -0.33617380292028015, + -0.2368258321280084, + 0.773999482067427, + -0.19401724166429896, + 0.7872495023057526, + 0.1931573819929971, + -0.9878618633121313, + -0.05529024986294437, + 0.14870459780140954, + -0.9931867052762354, + 0.41767630805358125, + 0.555713288452574, + 0.2800708243897791, + 0.11409601839171918, + 0.22209296110989313, + 0.6540489987750122, + -0.4897940417657353, + -0.4078308687663709, + 0.8586878694694963, + -0.22898057445402645, + 0.08730881228386687, + 0.5384837301200135, + 0.24931730826597664, + -0.10257251795506331, + 0.3397334705041261, + 0.9747869782219761, + 0.2630189036422857, + -0.34043346012870196, + -0.07831752505065508, + 0.31561871477226544, + 0.6070531677696924, + 0.6425019637485113, + 0.10657176527113148, + -1.0499173844769112, + 0.03104393205751529, + -0.29956034647603813, + 0.33727655983254223, + -0.5762852062418732, + -0.11880559234837831, + -0.27813551110857754, + 0.12113010643935232, + -0.7031773673822608, + 0.34048544706167955, + 0.7985667326763821, + 0.547005948861555, + 0.20674514207267305, + 0.11627065733812275, + 0.5011926231335044, + -0.2839225642630314, + -0.5453924556480606, + 0.3666144144325821, + 0.7873505104925559, + -0.7671247096762867, + -0.5272081909373657, + 0.7907661290499178, + 0.3805505854475858, + 0.14757217754510749, + -0.20628898809515234, + -0.7452293890919862, + 0.5253779101250405, + 0.5507101261006995, + 0.7661340787821075, + -0.010626245518710348, + 0.25275350538361585, + 0.4473164722776053, + 0.1597053639135459, + 1.0123611230283143, + -0.06924239025838028, + 0.26891366623885093, + 0.10336961339576642, + 0.6581105246478403, + 0.3223206543537814, + 0.27210079476142696, + -0.43207873307243794, + -0.24442280978393088, + -0.5545517038561913, + -0.46638220784951523, + 0.6000143806858362, + 0.07130666854955192, + -0.8352916742885057, + -0.23357969115439065, + -0.7925180371884148, + -0.7683704707706601, + -0.46492070401724944, + -0.7524715706564226, + 0.8949797851976855, + 0.3330378861291927, + 0.5341778191437017, + 0.513270485420194, + -0.5957767612715203, + -0.9895965065368361, + -0.31688442491703334, + 0.21611204888352353, + 0.09405332811611236, + 1.0287222872847135, + 0.026963388378835433, + 0.1847048055428831, + 0.415678751335504, + -0.15339812321241386, + -0.1220771955970433, + -0.4221928034131257, + -0.738194218150542, + -0.565861965186395, + 0.6012774795309646, + 0.3252729814124914, + -0.21623159980524104, + -0.4053220403908602, + 0.5184906280800851, + 0.13974274229975664, + 0.16652122101481398, + -0.29613170991448373, + -0.04070133648123084, + -0.3732038855775547, + -0.2448089073008215, + 0.2119229225487704, + 0.812097900047621, + -0.3467983059428072, + -0.24860266884258025, + 0.38190094945994646, + 0.8289866407330051, + -0.32902257652972866, + -0.6068103419132164, + 0.7459966121591263, + -0.46419681410899594, + 1.2594812518364291, + 1.0728781605353186, + 0.10722519780185469, + 0.45878662041627094, + 0.35313796427033656, + 1.117196392751122, + -0.0346328251362314, + 0.09258866015153357, + 0.6139023313135267, + 0.6823121689596425, + -0.1942750986562482, + -0.39711543788394316, + 0.5822154950444165, + -0.08659135443612424, + -0.06657544007182219, + -0.6412160673124058, + -0.030387511279176962, + -0.40317580648899626, + -0.48808801474618074, + 0.3477005267078347, + -0.2555872545790517, + -0.8444756368432202, + -0.32207196389358345, + -0.14239923853788725, + -0.7597418752091147, + 0.5356417147933477, + 0.04243054256645042, + -1.4106186756310712, + -0.4303399374481994, + 0.640106887994383, + 0.8182126651055015, + -0.25695209907279687, + 0.6901279336311855, + -0.53745366663089, + -0.26216046404155324, + -0.14899400970830157, + 0.1850557111931068, + 0.514231209036583, + -0.3013186417209395, + -0.478864099529505, + 0.07734361278416682, + -0.6526956506854574, + -0.572836391344988, + 0.8837394416291936, + 0.1392526398011927, + 0.4169610350343622, + -0.2545876377303988, + -1.1873738584725475, + -0.7954433401549309, + 0.6540023168628706, + -0.13542573955922124, + -0.6567356476042863, + -0.222270547198141, + -0.39606861710110874, + -0.7167485861375972, + -0.10705560943814933, + -0.12207098730022475, + -0.27067783146918767, + 0.7861735639776646, + 0.0418223491246603, + 0.554681102160699, + -0.09570690877244413, + 0.4053247356825463, + 0.37364449185517346, + 0.4974388584395023, + 0.02003632655330035, + -0.3098534748973716, + -0.06321572334820957, + 0.25730022636782707, + 0.2886050964982024, + -0.3553069955560026, + -0.045511318490451216, + 0.42861315630434, + 0.18543765484289332, + 0.47677403511968625, + -0.14900794812265852, + -0.32032000781781345, + -0.18826335174120057, + 0.15536079171233425, + 0.7861290041961516, + 0.43348761373978073, + 0.03315189603587046, + 0.337050101054236, + 0.33322192039348714, + -0.0910352452695743, + -0.46956214320366413, + 0.1438008571289593, + 0.13300226110642502, + -0.4898188911839961, + 0.27559469951379656, + 0.1799864701155897, + -0.5646063916339259, + -0.875478711815544, + -0.4238713876203247, + 0.6398119903426742, + -0.22878187036736353, + 0.3070973926164955, + -1.7422647550194346, + 0.3101327500753131, + 0.47713763999805187, + -0.9864986505084183, + -0.32795669870735156, + -0.16072052018399238, + 0.2716075793736668, + 0.7425845759780456, + -0.061176314058412125, + -0.5750075665046009, + -0.1537906524050307, + 1.3142864408220762, + 0.7461543886413103, + 0.5901997402165644, + -0.30877621592083176, + 0.6102735252243082, + -0.22210136882747844, + -0.7520501726690708, + 0.02950793767957059, + -0.4266877283283774, + 0.5130321097534934, + 0.20170943169262798, + 0.31681413275548037, + 0.5713855811956161, + -0.5513431676105531, + 0.31459595366468945, + -0.13955251951390135, + 0.7357479829514123, + 0.2660145870964416, + -1.3552023491946996, + -0.7141802405432847, + 0.3975076078393889, + -0.27579027663487954, + -0.14842731725486707, + 0.8244908312483503, + -0.21320455151319934, + 0.5048153154328926, + -0.39512992313093676, + -0.15886209452287176, + 0.5976899379980569, + 0.17594445775675335, + 0.3867764274426927, + 0.4039739712293422, + -0.6633766607550604, + 0.43902485714570205, + 0.015711743770039727, + 0.5536515539117463, + 0.47876813510899396, + 0.470818092445239, + -0.15634833164797712, + 0.34300504554475636, + -0.4463808412686188, + -0.0010462126492141663, + 0.4159857719921493, + 0.6687485904456819, + -0.09707717452073814, + -0.2733684759935457, + 0.1268555331049811, + -0.26466964360597384, + 0.21783258397182587, + -0.28765497988919525, + 0.052765408700275074, + 0.012151615143924297, + -0.1855906313486087, + -0.6616881465935096, + 0.4286071909478285, + -1.0501499418425166, + -0.6912115361301294, + -0.19732186896395418, + -1.2677624540118546, + 0.39980490153751774, + 0.2640187028967846, + 0.39067240045813273, + 0.31513362560471725, + 0.6448515576478672, + 0.4739711681639505, + -0.33261403920359756, + -1.0393130758858582, + 0.03700541461155964, + -0.19975405394408507, + -0.7053892891802066, + 0.37101813649425985, + -0.2876215939247426, + -0.37045119157544865, + -1.014849193155769, + -0.17481602911139738, + -0.41819541474950683, + -0.7426675073086793, + -0.13852149042293435, + -0.9190370842025315, + -0.6088178106175195, + 0.5644772156189223, + -0.48098353365568136, + 0.4100672957384969, + -0.9355120901611114, + 0.13673996688323897, + 0.11226187006875545, + 0.548366000319542, + 0.2135647280676475, + -0.35895080803147134, + 0.7677202178345031, + 0.3464767020897594, + -0.7143788941332003, + 0.5796928875518547, + -0.23197032075191182, + 0.2081376919294694, + 0.20419503999919492, + -0.13406336257134668, + -0.496052728492474, + 0.10692674309870756, + -0.39964772565700485, + -1.0308705412182702, + 1.1913976438980616, + -0.013126063651148403, + -0.298092848633171, + 1.1845953798773625, + -0.0067990566788923845, + -0.14426065983740569, + 1.224065935021625, + -0.10021321442970396, + -0.08602539371889728, + 0.6605530247930279, + 0.22743127179856576, + 0.19820077800665611, + 0.5071002988605254, + -0.18393222545568544, + 0.6307829302296699, + 1.0225362530329183, + -0.0820340429297696, + -0.04037365322401795, + 0.22723021791924722, + -0.35571850934266785, + -0.395448046718023, + -0.5646162940820937, + 0.3332643676359977, + -0.4332229039153577, + -0.06702424259602793, + 0.004153617323128801, + -0.42165802518858764, + -0.533432533490429, + 0.2586636495245441, + -0.23887849523212265, + -0.6001050935533834, + 0.24152585617136643, + 0.140083603290785, + -0.09267896645686141, + -0.5002889872879771, + -0.5265382020763298, + 0.7177055693635562, + 0.03906284755669876, + 0.35278353440192556, + -0.8801070078516621, + 0.6428151404072837, + -0.10380280006872783, + -0.7077634471318612, + -0.7017930186042022, + 0.12651287920273818, + 0.478296229374363, + 0.05315849708048828, + -0.1625367368149969, + 0.4588021150796565, + -0.45588144638110234, + -0.4504915081662148, + 0.3820148186668081, + 0.12729041024968443, + 1.145025176856114, + -0.23358667963853677, + -0.6044119302727781, + -0.5986866496286826, + 1.200319746539704, + 1.1090726405592541, + -0.011677694504151057, + 0.23744884383829157, + 0.35222208996406623, + -0.2001536876251402, + -0.06190688338408558, + 0.07835285574612949, + -0.09853002250904208, + -0.6076346497274183, + -0.48561237618846115, + 0.7483098427268359, + -0.5909601612299199, + -0.6074725392047708, + -0.7642200295651672, + -0.08244324496658612, + -0.05571198816069828, + -0.07780142141240656, + 0.20895249134799496, + -0.2638960662548847, + 0.33298581975518704, + 0.014942783235486909, + 0.08621017064024357, + 0.4964961071282564, + -1.0022545903311948, + -0.13444894835043633, + 0.19595690712360134, + -0.19331921933163876, + 0.3089027989912301, + -0.31798943353778264, + 0.5218399083052286, + -0.32706215360247953, + 0.35140985855563983, + -0.6208004168973308, + -0.6621809446905877, + 1.0613949646410785, + 0.5208074089815878, + -0.15267529223412682, + -0.8169430345073688, + 0.7121275865617903, + 0.5676897689553674, + -0.004570290489614182, + 0.11767132659926414, + 0.2985676707283953, + -0.33198756794976503, + 0.03346647465482618, + 0.11992170527514912, + 0.2710117841497648, + -0.21553948589080332, + -0.7100010940205405, + 0.5057786672564861, + 1.1059724001318278 + ], + "avgps": [ + 4.506674805486601, + 4.564367931094386, + 4.493024554752795 + ], + "std_scale": null +} diff --git a/test/expected_result/df_convert_out.tsv b/test/expected_result/expected_cli/df_convert_out.tsv similarity index 100% rename from test/expected_result/df_convert_out.tsv rename to test/expected_result/expected_cli/df_convert_out.tsv diff --git a/test/expected_result/expected_cli/top_level_config.json b/test/expected_result/expected_cli/top_level_config.json new file mode 100644 index 00000000..1be1712c --- /dev/null +++ b/test/expected_result/expected_cli/top_level_config.json @@ -0,0 +1,422 @@ +{ + "log_tmp_path": "/var/folders/44/q19dxly12jd6rqltv_kdf3q00000gq/T/tmpmapsbrdi_geneplexus.log", + "_is_custom": false, + "_file_loc": "/Users/mancchri/.data/geneplexus", + "_features": "SixSpeciesN2V", + "_sp_trn": "Human", + "_sp_res": [ + "Human" + ], + "_gsc_trn": "Combined", + "_gsc_res": [ + "Combined" + ], + "_net_type": "STRING", + "log_level": "INFO", + "log_to_file": true, + "auto_download": false, + "input_genes": [ + "6457", + "7037", + "57403", + "3134", + "50807", + "93343", + "11311", + "8766", + "5584", + "137492", + "998", + "30011", + "5337", + "3312", + "155", + "10015", + "55738", + "57132", + "153", + "116986", + "163", + "11267", + "1950", + "3559", + "6714", + "84249", + "2066", + "29924", + "1213", + "30846", + "84612", + "440073", + "2060", + "3303", + "3561", + "9101", + "51160", + "56904", + "3304", + "23527", + "5878", + "3560", + "7189", + "3949", + "92421", + "26286", + "5979", + "9922", + "11031", + "116983", + "2261", + "9230", + "5867", + "64145", + "867", + "57154", + "84313", + "3577", + "116987", + "10617", + "1436", + "200576", + "83737", + "23396", + "3310", + "5590", + "3133", + "382", + "6456", + "30845", + "868", + "2264", + "5868", + "84440", + "116984", + "5869", + "23624", + "22841", + "161", + "23096", + "5338", + "652614", + "84552", + "51028", + "55616", + "9829", + "3815", + "29082", + "9135", + "23362", + "9146", + "128866", + "156", + "8218", + "89853", + "154", + "64744", + "9525", + "84364", + "9727", + "23550", + "8853", + "1956", + "8395", + "6455", + "64411", + "5156", + "51100", + "8027", + "408", + "3305", + "51534", + "2868", + "9744", + "3106", + "51652", + "3265", + "27243", + "10938", + "60682", + "157", + "26056", + "10059", + "2321", + "80230", + "1173", + "1175", + "160", + "3306", + "3135", + "1234", + "2149", + "8411", + "3791", + "51510", + "23327", + "409", + "11059", + "3579", + "27183", + "8396", + "1601", + "1211", + "3480", + "9815", + "26119", + "64750", + "26052", + "4914", + "25978", + "8394", + "1212", + "30844", + "131890", + "79720", + "7251", + "50855", + "116985", + "5662", + "2870", + "10193", + "1785", + "155382", + "652799", + "22905", + "3105", + "55048", + "10254", + "55040", + "7852", + "1759", + "4193", + "2869", + "2065", + "6011", + "4734", + "28964", + "4233", + "80223", + "79643", + "3107", + "2263", + "56288" + ], + "input_negatives": null, + "gsc_trn_original": "Combined", + "gsc_res_original": [ + "Combined" + ], + "sp_gsc_pairs": [ + "Human-Combined" + ], + "clust_min_size": null, + "table_summary": [ + { + "Network": "BioGRID", + "NetworkGenes": 19936, + "PositiveGenes": 181 + }, + { + "Network": "IMP", + "NetworkGenes": 28265, + "PositiveGenes": 181 + }, + { + "Network": "STRING", + "NetworkGenes": 18962, + "PositiveGenes": 177 + } + ], + "input_count": 183, + "convert_ids": [ + "6457", + "7037", + "57403", + "3134", + "50807", + "93343", + "11311", + "8766", + "5584", + "137492", + "998", + "30011", + "5337", + "3312", + "155", + "10015", + "55738", + "57132", + "153", + "116986", + "163", + "11267", + "1950", + "3559", + "6714", + "84249", + "2066", + "29924", + "1213", + "30846", + "84612", + "440073", + "2060", + "3303", + "3561", + "9101", + "51160", + "56904", + "3304", + "23527", + "5878", + "3560", + "7189", + "3949", + "92421", + "26286", + "5979", + "9922", + "11031", + "116983", + "2261", + "9230", + "5867", + "64145", + "867", + "57154", + "84313", + "3577", + "116987", + "10617", + "1436", + "200576", + "83737", + "23396", + "3310", + "5590", + "3133", + "382", + "6456", + "30845", + "868", + "2264", + "5868", + "84440", + "116984", + "5869", + "23624", + "22841", + "161", + "23096", + "5338", + "84552", + "51028", + "55616", + "9829", + "3815", + "29082", + "9135", + "23362", + "9146", + "128866", + "156", + "8218", + "89853", + "154", + "64744", + "9525", + "84364", + "9727", + "23550", + "8853", + "1956", + "8395", + "6455", + "64411", + "5156", + "51100", + "8027", + "408", + "3305", + "51534", + "2868", + "9744", + "3106", + "51652", + "3265", + "27243", + "10938", + "60682", + "157", + "26056", + "10059", + "2321", + "80230", + "1173", + "1175", + "160", + "3306", + "3135", + "1234", + "2149", + "8411", + "3791", + "51510", + "23327", + "409", + "11059", + "3579", + "27183", + "8396", + "1601", + "1211", + "3480", + "9815", + "26119", + "64750", + "26052", + "4914", + "25978", + "8394", + "1212", + "30844", + "131890", + "79720", + "7251", + "50855", + "116985", + "5662", + "2870", + "10193", + "1785", + "155382", + "22905", + "3105", + "55048", + "10254", + "55040", + "7852", + "1759", + "4193", + "2869", + "2065", + "6011", + "4734", + "28964", + "4233", + "80223", + "79643", + "3107", + "2263", + "56288" + ], + "min_num_pos": 5, + "logreg_kwargs": null, + "scale": false, + "min_num_pos_cv": 15, + "num_folds": 3, + "null_val": null, + "random_state": 0, + "cross_validate": true, + "num_nodes": 50 +} diff --git a/test/expected_result/df_edge.tsv b/test/expected_result/expected_pipeline/All-Genes/Mouse-Combined/df_edge.tsv similarity index 100% rename from test/expected_result/df_edge.tsv rename to test/expected_result/expected_pipeline/All-Genes/Mouse-Combined/df_edge.tsv index e44dae4a..3a1b2261 100644 --- a/test/expected_result/df_edge.tsv +++ b/test/expected_result/expected_pipeline/All-Genes/Mouse-Combined/df_edge.tsv @@ -1,325 +1,325 @@ Node1 Node2 Weight +15239 20844 0.999 +15239 56324 0.999 +22088 52348 0.999 +67300 74325 0.999 +12757 67300 0.998 +15239 22088 0.998 +22088 330192 0.998 +13854 13858 0.995 11765 11769 0.994 -11765 11845 0.518 -11765 12757 0.703 -11765 13854 0.744 -11765 13855 0.689 -11765 13858 0.764 -11765 19345 0.584 -11765 20404 0.58 -11765 22320 0.624 -11765 66147 0.805 -11765 66616 0.593 +11845 19159 0.994 +13858 71889 0.991 +20844 22088 0.991 +66700 75608 0.991 +72993 216190 0.989 +66371 66700 0.987 +20844 56324 0.985 +13858 67300 0.979 11765 67300 0.973 -11765 67602 0.787 -11765 71889 0.711 -11765 74325 0.704 -11765 224754 0.696 -11765 232910 0.899 -11765 260302 0.595 -11765 269774 0.667 -11765 271457 0.573 -11769 12757 0.781 -11769 13854 0.604 -11769 13855 0.739 +11845 260302 0.973 +22088 66700 0.971 +13854 67300 0.97 +67300 232910 0.969 +13858 67602 0.964 +67300 71889 0.964 +11845 13196 0.962 +66147 232910 0.961 +13855 67300 0.96 +13855 13858 0.959 +13858 66147 0.957 +66147 67602 0.956 +66616 170625 0.955 +13858 269774 0.953 +74325 232910 0.953 +13858 15239 0.945 +19344 271457 0.945 +66700 116733 0.945 +22088 56324 0.943 +66371 116733 0.942 +22088 75608 0.941 +13858 232910 0.94 +66371 75608 0.94 +67300 259300 0.938 +66616 235406 0.937 +13854 71889 0.931 +232910 269774 0.927 +22088 194309 0.926 +66700 330192 0.925 +15239 66700 0.923 +74325 259300 0.921 +67602 74325 0.92 +20844 66700 0.917 +12757 74325 0.916 11769 13858 0.91 -11769 19345 0.515 -11769 20404 0.54 -11769 22320 0.579 -11769 66147 0.901 -11769 66616 0.499 -11769 67300 0.811 +170625 235406 0.908 +52348 66700 0.904 11769 67602 0.903 -11769 71889 0.592 -11769 74325 0.779 -11769 224754 0.677 +11769 66147 0.901 +232910 259300 0.9 +11765 232910 0.899 +15239 67300 0.897 +12757 232910 0.892 +13858 74325 0.891 +75608 116733 0.889 +12757 13858 0.883 +22088 66371 0.881 +15239 75608 0.88 +12757 67602 0.874 +22088 116733 0.872 +12757 13855 0.868 +67602 269774 0.868 +67602 232910 0.867 +13855 74325 0.864 +66700 194309 0.86 +67300 269774 0.859 +13858 56324 0.858 +13858 20844 0.854 +20404 66616 0.854 +20844 66371 0.843 +12757 13854 0.838 +66147 269774 0.836 +20844 52348 0.834 +20404 20405 0.828 +13855 269774 0.826 +11845 78618 0.823 11769 232910 0.822 -11769 269774 0.722 -11845 12757 0.478 -11845 13196 0.962 +20405 20408 0.822 +15239 330192 0.817 +52348 330192 0.817 +20844 330192 0.816 +67300 67602 0.816 +15239 66371 0.815 +13858 20404 0.814 +11769 67300 0.811 +20404 20408 0.809 +13854 74325 0.807 +11765 66147 0.805 11845 13660 0.803 -11845 13854 0.417 -11845 13858 0.724 -11845 19159 0.994 -11845 22088 0.664 -11845 26431 0.682 -11845 66147 0.405 +72993 271457 0.803 +75608 330192 0.801 +74325 269774 0.8 +71889 74325 0.796 +13854 67602 0.795 +52348 66371 0.79 +11765 67602 0.787 +52348 194309 0.787 +66147 67300 0.782 +66147 74325 0.782 +11769 12757 0.781 11845 67300 0.781 -11845 67602 0.429 -11845 72993 0.421 -11845 74325 0.524 -11845 78618 0.823 -11845 98878 0.494 -11845 216859 0.729 -11845 232910 0.404 -11845 259300 0.407 -11845 260302 0.973 -11845 269774 0.479 -12757 13854 0.838 -12757 13855 0.868 -12757 13858 0.883 -12757 15239 0.557 -12757 19345 0.635 -12757 20404 0.579 -12757 20405 0.542 -12757 20408 0.522 -12757 20844 0.502 -12757 22320 0.623 -12757 56324 0.503 +11769 74325 0.779 +12757 269774 0.778 +216190 271457 0.778 +20844 194309 0.777 +13858 20405 0.776 12757 66147 0.774 -12757 66616 0.663 -12757 67300 0.998 -12757 67602 0.874 +13858 20408 0.774 +13855 232910 0.773 +15239 52348 0.773 +52348 75608 0.772 +56324 330192 0.77 +20215 67300 0.769 +20844 75608 0.769 +66371 72008 0.769 +66371 330192 0.768 +19345 67300 0.767 +11765 13858 0.764 +13855 20405 0.761 +20844 67300 0.76 +75608 194309 0.759 +194309 330192 0.758 12757 71889 0.756 -12757 74325 0.916 -12757 232910 0.892 -12757 269774 0.778 -13196 66616 0.628 -13196 72993 0.575 -13196 78618 0.468 -13196 216190 0.489 -13660 13854 0.517 -13660 13858 0.409 -13660 71889 0.444 -13660 78618 0.556 -13660 98878 0.55 -13660 271457 0.603 -13854 13855 0.579 -13854 13858 0.995 +13855 66147 0.755 13854 15239 0.754 +52348 56324 0.754 +13855 67602 0.752 +66616 67300 0.751 +15239 194309 0.75 +19345 216190 0.75 +13854 232910 0.749 +19344 72993 0.748 +19345 72993 0.747 +11765 13854 0.744 +11769 13855 0.739 +19344 19345 0.735 +13854 269774 0.73 +67300 260302 0.73 +11845 216859 0.729 +15239 116733 0.728 13854 20404 0.725 +11845 13858 0.724 +11769 269774 0.722 +20405 67300 0.715 +56324 67300 0.714 +13855 20404 0.712 +20404 67300 0.712 +11765 71889 0.711 +116733 330192 0.708 +66616 67602 0.707 +13854 66616 0.705 +11765 74325 0.704 +19344 216190 0.704 +11765 12757 0.703 +22088 72008 0.698 +11765 224754 0.696 13854 20405 0.696 -13854 20408 0.604 +71889 269774 0.696 +66616 71889 0.691 13854 20844 0.69 -13854 22320 0.571 +11765 13855 0.689 +67602 71889 0.685 +56324 66700 0.684 +56324 72008 0.683 +66371 194309 0.683 +11845 26431 0.682 +20844 72008 0.682 +11769 224754 0.677 13854 56324 0.675 +20408 67300 0.675 +71889 232910 0.673 +11765 269774 0.667 +11845 22088 0.664 +12757 66616 0.663 +72008 116733 0.654 +56324 194309 0.653 +66147 71889 0.653 +74325 271457 0.652 +72183 170625 0.647 13854 66147 0.646 -13854 66616 0.705 -13854 67300 0.97 -13854 67602 0.795 -13854 71889 0.931 -13854 74325 0.807 -13854 232910 0.749 -13854 259300 0.51 -13854 260302 0.475 -13854 269774 0.73 -13855 13858 0.959 -13855 15239 0.612 -13855 20404 0.712 -13855 20405 0.761 -13855 20408 0.616 -13855 20844 0.544 -13855 22320 0.527 -13855 56324 0.539 -13855 66147 0.755 -13855 66616 0.616 -13855 67300 0.96 -13855 67602 0.752 +22320 67300 0.642 +12757 19345 0.635 +13196 66616 0.628 +20404 71889 0.625 +11765 22320 0.624 +12757 22320 0.623 13855 71889 0.618 -13855 74325 0.864 -13855 232910 0.773 -13855 269774 0.826 -13858 15239 0.945 -13858 20404 0.814 -13858 20405 0.776 -13858 20408 0.774 -13858 20844 0.854 -13858 22088 0.43 -13858 22320 0.583 -13858 56324 0.858 -13858 66147 0.957 -13858 66616 0.433 -13858 67300 0.979 -13858 67602 0.964 -13858 71889 0.991 -13858 74325 0.891 -13858 98878 0.406 -13858 232910 0.94 -13858 260302 0.437 -13858 269774 0.953 -15239 20404 0.527 -15239 20405 0.534 -15239 20408 0.499 -15239 20844 0.999 -15239 22088 0.998 -15239 22320 0.547 -15239 52348 0.773 -15239 56324 0.999 -15239 66371 0.815 -15239 66700 0.923 -15239 67300 0.897 -15239 75608 0.88 -15239 116733 0.728 -15239 194309 0.75 -15239 232910 0.608 -15239 260302 0.422 -15239 271457 0.405 -15239 330192 0.817 -19159 26431 0.503 -19159 260302 0.43 -19344 19345 0.735 -19344 20404 0.442 -19344 20408 0.425 -19344 22088 0.576 -19344 67300 0.488 -19344 72993 0.748 +20404 56324 0.617 +13855 20408 0.616 +13855 66616 0.616 +13855 15239 0.612 +15239 232910 0.608 19344 74325 0.608 -19344 116733 0.409 -19344 216190 0.704 -19344 271457 0.945 -19345 20404 0.541 -19345 22088 0.42 -19345 22320 0.527 -19345 66616 0.558 -19345 67300 0.767 -19345 67602 0.506 -19345 72993 0.747 +11769 13854 0.604 +13854 20408 0.604 +13660 271457 0.603 19345 74325 0.6 -19345 75608 0.435 -19345 216190 0.75 +67300 72993 0.596 +11765 260302 0.595 +11765 66616 0.593 19345 271457 0.593 -20215 67300 0.769 -20404 20405 0.828 -20404 20408 0.809 -20404 20844 0.512 -20404 22320 0.562 -20404 56324 0.617 -20404 66616 0.854 -20404 67300 0.712 +11769 71889 0.592 +22088 260302 0.587 +66616 72183 0.586 20404 67602 0.585 -20404 71889 0.625 -20404 232910 0.519 -20405 20408 0.822 -20405 20844 0.512 +11765 19345 0.584 +13858 22320 0.583 +11765 20404 0.58 +11769 22320 0.579 +12757 20404 0.579 +13854 13855 0.579 +22320 74325 0.579 +19344 22088 0.576 +13196 72993 0.575 20405 22320 0.574 -20405 56324 0.535 -20405 66616 0.497 -20405 67300 0.715 -20405 232910 0.525 -20408 20844 0.514 -20408 22320 0.553 -20408 56324 0.535 -20408 66616 0.408 -20408 67300 0.675 -20408 232910 0.519 -20844 22088 0.991 +11765 271457 0.573 +13854 22320 0.571 +22320 232910 0.57 +22320 66147 0.568 +259300 271457 0.564 +20404 22320 0.562 +19345 66616 0.558 +12757 15239 0.557 20844 22320 0.557 -20844 52348 0.834 -20844 56324 0.985 -20844 66371 0.843 -20844 66700 0.917 -20844 67300 0.76 -20844 72008 0.682 -20844 75608 0.769 +13660 78618 0.556 +20408 22320 0.553 +22320 67602 0.553 +13660 98878 0.55 +67300 271457 0.55 20844 116733 0.549 -20844 194309 0.777 -20844 232910 0.499 -20844 330192 0.816 -22088 52348 0.999 -22088 56324 0.943 -22088 66371 0.881 -22088 66700 0.971 -22088 67300 0.483 -22088 72008 0.698 -22088 75608 0.941 -22088 116733 0.872 -22088 194309 0.926 -22088 260302 0.587 -22088 271457 0.49 -22088 330192 0.998 +15239 22320 0.547 22320 56324 0.546 -22320 66147 0.568 +13855 20844 0.544 +72993 216859 0.544 +12757 20405 0.542 +19345 20404 0.541 +11769 20404 0.54 +13855 56324 0.539 +20405 56324 0.535 +20408 56324 0.535 +15239 20405 0.534 +72993 78618 0.528 +13855 22320 0.527 +15239 20404 0.527 +19345 22320 0.527 +20405 232910 0.525 +11845 74325 0.524 +12757 20408 0.522 +20404 232910 0.519 +20408 232910 0.519 22320 66616 0.519 -22320 67300 0.642 -22320 67602 0.553 -22320 74325 0.579 -22320 224754 0.408 -22320 232910 0.57 -22320 269774 0.499 -26431 67300 0.464 -52348 56324 0.754 -52348 66371 0.79 -52348 66700 0.904 -52348 75608 0.772 -52348 116733 0.501 -52348 194309 0.787 -52348 330192 0.817 +11765 11845 0.518 +72183 235406 0.518 +13660 13854 0.517 +11769 19345 0.515 +20408 20844 0.514 +20404 20844 0.512 +20405 20844 0.512 +13854 259300 0.51 +19345 67602 0.506 56324 66371 0.505 -56324 66700 0.684 -56324 67300 0.714 -56324 72008 0.683 +12757 56324 0.503 +19159 26431 0.503 56324 116733 0.503 -56324 194309 0.653 +12757 20844 0.502 +52348 116733 0.501 +11769 66616 0.499 +15239 20408 0.499 +20844 232910 0.499 +22320 269774 0.499 56324 232910 0.499 -56324 330192 0.77 -66147 66616 0.421 -66147 67300 0.782 -66147 67602 0.956 -66147 71889 0.653 -66147 74325 0.782 -66147 232910 0.961 -66147 269774 0.836 -66371 66700 0.987 -66371 72008 0.769 -66371 75608 0.94 -66371 116733 0.942 -66371 194309 0.683 -66371 330192 0.768 -66616 67300 0.751 -66616 67602 0.707 -66616 71889 0.691 -66616 72183 0.586 66616 72993 0.499 -66616 170625 0.955 -66616 235406 0.937 +20405 66616 0.497 +11845 98878 0.494 +22088 271457 0.49 +13196 216190 0.489 +19344 67300 0.488 +22088 67300 0.483 +78618 216190 0.481 +11845 269774 0.479 +11845 12757 0.478 +13854 260302 0.475 +216190 216859 0.475 +13196 78618 0.468 +26431 67300 0.464 +71889 259300 0.458 +116733 271457 0.447 +13660 71889 0.444 +19344 20404 0.442 +13858 260302 0.437 +19345 75608 0.435 +13858 66616 0.433 +13858 22088 0.43 +19159 260302 0.43 +11845 67602 0.429 +72183 260302 0.427 +19344 20408 0.425 +15239 260302 0.422 +67300 216190 0.422 +11845 72993 0.421 +66147 66616 0.421 +19345 22088 0.42 +11845 13854 0.417 +72183 216859 0.415 66700 72008 0.413 -66700 75608 0.991 -66700 116733 0.945 -66700 194309 0.86 -66700 330192 0.925 -67300 67602 0.816 -67300 71889 0.964 +13660 13858 0.409 +19344 116733 0.409 67300 72008 0.409 -67300 72993 0.596 -67300 74325 0.999 -67300 216190 0.422 -67300 232910 0.969 -67300 259300 0.938 -67300 260302 0.73 -67300 269774 0.859 -67300 271457 0.55 -67602 71889 0.685 -67602 74325 0.92 -67602 232910 0.867 -67602 269774 0.868 -71889 74325 0.796 -71889 232910 0.673 -71889 259300 0.458 +20408 66616 0.408 +22320 224754 0.408 +11845 259300 0.407 +13858 98878 0.406 +11845 66147 0.405 +15239 271457 0.405 +11845 232910 0.404 71889 260302 0.403 -71889 269774 0.696 -72008 116733 0.654 -72183 170625 0.647 -72183 216859 0.415 -72183 235406 0.518 -72183 260302 0.427 -72993 78618 0.528 -72993 216190 0.989 -72993 216859 0.544 -72993 271457 0.803 -74325 232910 0.953 -74325 259300 0.921 -74325 269774 0.8 -74325 271457 0.652 -75608 116733 0.889 -75608 194309 0.759 -75608 330192 0.801 -78618 216190 0.481 -116733 271457 0.447 -116733 330192 0.708 -170625 235406 0.908 -194309 330192 0.758 -216190 216859 0.475 -216190 271457 0.778 -232910 259300 0.9 -232910 269774 0.927 -259300 271457 0.564 diff --git a/test/expected_result/df_edge_sym.tsv b/test/expected_result/expected_pipeline/All-Genes/Mouse-Combined/df_edge_sym.tsv similarity index 100% rename from test/expected_result/df_edge_sym.tsv rename to test/expected_result/expected_pipeline/All-Genes/Mouse-Combined/df_edge_sym.tsv index 38fb5666..0e2f2c93 100644 --- a/test/expected_result/df_edge_sym.tsv +++ b/test/expected_result/expected_pipeline/All-Genes/Mouse-Combined/df_edge_sym.tsv @@ -1,325 +1,325 @@ Node1 Node2 Weight +Cltc Cltb 0.999 +Hgs Stam 0.999 +Hgs Stam2 0.999 +Tsg101 Vps37a 0.999 +Clta Cltc 0.998 +Hgs Tsg101 0.998 +Tsg101 Vps37b 0.998 +Epn1 Eps15 0.995 Ap1g1 Ap1s1 0.994 -Ap1g1 Arf6 0.518 -Ap1g1 Clta 0.703 -Ap1g1 Epn1 0.744 -Ap1g1 Epn2 0.689 -Ap1g1 Eps15 0.764 -Ap1g1 Rab5c 0.584 -Ap1g1 Sh3gl2 0.58 -Ap1g1 Vamp8 0.624 -Ap1g1 Necap2 0.805 -Ap1g1 Snx9 0.593 +Arf6 Cyth3 0.994 +Chmp3 Chmp4b 0.991 +Eps15 Epn3 0.991 +Stam Tsg101 0.991 +Appl1 Appl2 0.989 +Chmp4c Chmp3 0.987 +Stam Stam2 0.985 +Eps15 Cltc 0.979 Ap1g1 Cltc 0.973 -Ap1g1 Necap1 0.787 -Ap1g1 Epn3 0.711 -Ap1g1 Cltb 0.704 -Ap1g1 H2-M11 0.696 -Ap1g1 Ap2s1 0.899 -Ap1g1 Gga3 0.595 -Ap1g1 Aak1 0.667 -Ap1g1 Rab5a 0.573 -Ap1s1 Clta 0.781 -Ap1s1 Epn1 0.604 -Ap1s1 Epn2 0.739 +Arf6 Gga3 0.973 +Tsg101 Chmp3 0.971 +Epn1 Cltc 0.97 +Cltc Ap2s1 0.969 +Cltc Epn3 0.964 +Eps15 Necap1 0.964 +Arf6 Asap1 0.962 +Necap2 Ap2s1 0.961 +Epn2 Cltc 0.96 +Epn2 Eps15 0.959 +Eps15 Necap2 0.957 +Necap2 Necap1 0.956 +Snx9 Snx18 0.955 +Cltb Ap2s1 0.953 +Eps15 Aak1 0.953 +Chmp3 Vps4a 0.945 +Eps15 Hgs 0.945 +Rab5b Rab5a 0.945 +Tsg101 Stam2 0.943 +Chmp4c Vps4a 0.942 +Tsg101 Chmp4b 0.941 +Chmp4c Chmp4b 0.94 +Eps15 Ap2s1 0.94 +Cltc Ehd2 0.938 +Snx9 Snx33 0.937 +Epn1 Epn3 0.931 +Ap2s1 Aak1 0.927 +Tsg101 Vps37d 0.926 +Chmp3 Vps37b 0.925 +Hgs Chmp3 0.923 +Cltb Ehd2 0.921 +Necap1 Cltb 0.92 +Stam Chmp3 0.917 +Clta Cltb 0.916 Ap1s1 Eps15 0.91 -Ap1s1 Rab5c 0.515 -Ap1s1 Sh3gl2 0.54 -Ap1s1 Vamp8 0.579 -Ap1s1 Necap2 0.901 -Ap1s1 Snx9 0.499 -Ap1s1 Cltc 0.811 +Snx18 Snx33 0.908 +Vps37a Chmp3 0.904 Ap1s1 Necap1 0.903 -Ap1s1 Epn3 0.592 -Ap1s1 Cltb 0.779 -Ap1s1 H2-M11 0.677 +Ap1s1 Necap2 0.901 +Ap2s1 Ehd2 0.9 +Ap1g1 Ap2s1 0.899 +Hgs Cltc 0.897 +Clta Ap2s1 0.892 +Eps15 Cltb 0.891 +Chmp4b Vps4a 0.889 +Clta Eps15 0.883 +Tsg101 Chmp4c 0.881 +Hgs Chmp4b 0.88 +Clta Necap1 0.874 +Tsg101 Vps4a 0.872 +Clta Epn2 0.868 +Necap1 Aak1 0.868 +Necap1 Ap2s1 0.867 +Epn2 Cltb 0.864 +Chmp3 Vps37d 0.86 +Cltc Aak1 0.859 +Eps15 Stam2 0.858 +Eps15 Stam 0.854 +Sh3gl2 Snx9 0.854 +Stam Chmp4c 0.843 +Clta Epn1 0.838 +Necap2 Aak1 0.836 +Stam Vps37a 0.834 +Sh3gl2 Sh3gl1 0.828 +Epn2 Aak1 0.826 +Arf6 Acap2 0.823 Ap1s1 Ap2s1 0.822 -Ap1s1 Aak1 0.722 -Arf6 Clta 0.478 -Arf6 Asap1 0.962 +Sh3gl1 Sh3gl3 0.822 +Hgs Vps37b 0.817 +Vps37a Vps37b 0.817 +Cltc Necap1 0.816 +Stam Vps37b 0.816 +Hgs Chmp4c 0.815 +Eps15 Sh3gl2 0.814 +Ap1s1 Cltc 0.811 +Sh3gl2 Sh3gl3 0.809 +Epn1 Cltb 0.807 +Ap1g1 Necap2 0.805 +Appl1 Rab5a 0.803 Arf6 Ehd1 0.803 -Arf6 Epn1 0.417 -Arf6 Eps15 0.724 -Arf6 Cyth3 0.994 -Arf6 Tsg101 0.664 -Arf6 Git2 0.682 -Arf6 Necap2 0.405 +Chmp4b Vps37b 0.801 +Cltb Aak1 0.8 +Epn3 Cltb 0.796 +Epn1 Necap1 0.795 +Vps37a Chmp4c 0.79 +Ap1g1 Necap1 0.787 +Vps37a Vps37d 0.787 +Necap2 Cltb 0.782 +Necap2 Cltc 0.782 +Ap1s1 Clta 0.781 Arf6 Cltc 0.781 -Arf6 Necap1 0.429 -Arf6 Appl1 0.421 -Arf6 Cltb 0.524 -Arf6 Acap2 0.823 -Arf6 Ehd4 0.494 -Arf6 Acap1 0.729 -Arf6 Ap2s1 0.404 -Arf6 Ehd2 0.407 -Arf6 Gga3 0.973 -Arf6 Aak1 0.479 -Clta Epn1 0.838 -Clta Epn2 0.868 -Clta Eps15 0.883 -Clta Hgs 0.557 -Clta Rab5c 0.635 -Clta Sh3gl2 0.579 -Clta Sh3gl1 0.542 -Clta Sh3gl3 0.522 -Clta Stam 0.502 -Clta Vamp8 0.623 -Clta Stam2 0.503 +Ap1s1 Cltb 0.779 +Appl2 Rab5a 0.778 +Clta Aak1 0.778 +Stam Vps37d 0.777 +Eps15 Sh3gl1 0.776 Clta Necap2 0.774 -Clta Snx9 0.663 -Clta Cltc 0.998 -Clta Necap1 0.874 +Eps15 Sh3gl3 0.774 +Epn2 Ap2s1 0.773 +Hgs Vps37a 0.773 +Vps37a Chmp4b 0.772 +Stam2 Vps37b 0.77 +Chmp4c Zfyve19 0.769 +Sag Cltc 0.769 +Stam Chmp4b 0.769 +Chmp4c Vps37b 0.768 +Rab5c Cltc 0.767 +Ap1g1 Eps15 0.764 +Epn2 Sh3gl1 0.761 +Stam Cltc 0.76 +Chmp4b Vps37d 0.759 +Vps37d Vps37b 0.758 Clta Epn3 0.756 -Clta Cltb 0.916 -Clta Ap2s1 0.892 -Clta Aak1 0.778 -Asap1 Snx9 0.628 -Asap1 Appl1 0.575 -Asap1 Acap2 0.468 -Asap1 Appl2 0.489 -Ehd1 Epn1 0.517 -Ehd1 Eps15 0.409 -Ehd1 Epn3 0.444 -Ehd1 Acap2 0.556 -Ehd1 Ehd4 0.55 -Ehd1 Rab5a 0.603 -Epn1 Epn2 0.579 -Epn1 Eps15 0.995 +Epn2 Necap2 0.755 Epn1 Hgs 0.754 +Vps37a Stam2 0.754 +Epn2 Necap1 0.752 +Snx9 Cltc 0.751 +Hgs Vps37d 0.75 +Rab5c Appl2 0.75 +Epn1 Ap2s1 0.749 +Rab5b Appl1 0.748 +Rab5c Appl1 0.747 +Ap1g1 Epn1 0.744 +Ap1s1 Epn2 0.739 +Rab5b Rab5c 0.735 +Cltc Gga3 0.73 +Epn1 Aak1 0.73 +Arf6 Acap1 0.729 +Hgs Vps4a 0.728 Epn1 Sh3gl2 0.725 +Arf6 Eps15 0.724 +Ap1s1 Aak1 0.722 +Sh3gl1 Cltc 0.715 +Stam2 Cltc 0.714 +Epn2 Sh3gl2 0.712 +Sh3gl2 Cltc 0.712 +Ap1g1 Epn3 0.711 +Vps4a Vps37b 0.708 +Snx9 Necap1 0.707 +Epn1 Snx9 0.705 +Ap1g1 Cltb 0.704 +Rab5b Appl2 0.704 +Ap1g1 Clta 0.703 +Tsg101 Zfyve19 0.698 +Ap1g1 H2-M11 0.696 Epn1 Sh3gl1 0.696 -Epn1 Sh3gl3 0.604 +Epn3 Aak1 0.696 +Snx9 Epn3 0.691 Epn1 Stam 0.69 -Epn1 Vamp8 0.571 +Ap1g1 Epn2 0.689 +Necap1 Epn3 0.685 +Stam2 Chmp3 0.684 +Chmp4c Vps37d 0.683 +Stam2 Zfyve19 0.683 +Arf6 Git2 0.682 +Stam Zfyve19 0.682 +Ap1s1 H2-M11 0.677 Epn1 Stam2 0.675 +Sh3gl3 Cltc 0.675 +Epn3 Ap2s1 0.673 +Ap1g1 Aak1 0.667 +Arf6 Tsg101 0.664 +Clta Snx9 0.663 +Zfyve19 Vps4a 0.654 +Necap2 Epn3 0.653 +Stam2 Vps37d 0.653 +Cltb Rab5a 0.652 +Snx6 Snx18 0.647 Epn1 Necap2 0.646 -Epn1 Snx9 0.705 -Epn1 Cltc 0.97 -Epn1 Necap1 0.795 -Epn1 Epn3 0.931 -Epn1 Cltb 0.807 -Epn1 Ap2s1 0.749 -Epn1 Ehd2 0.51 -Epn1 Gga3 0.475 -Epn1 Aak1 0.73 -Epn2 Eps15 0.959 -Epn2 Hgs 0.612 -Epn2 Sh3gl2 0.712 -Epn2 Sh3gl1 0.761 -Epn2 Sh3gl3 0.616 -Epn2 Stam 0.544 -Epn2 Vamp8 0.527 -Epn2 Stam2 0.539 -Epn2 Necap2 0.755 -Epn2 Snx9 0.616 -Epn2 Cltc 0.96 -Epn2 Necap1 0.752 +Vamp8 Cltc 0.642 +Clta Rab5c 0.635 +Asap1 Snx9 0.628 +Sh3gl2 Epn3 0.625 +Ap1g1 Vamp8 0.624 +Clta Vamp8 0.623 Epn2 Epn3 0.618 -Epn2 Cltb 0.864 -Epn2 Ap2s1 0.773 -Epn2 Aak1 0.826 -Eps15 Hgs 0.945 -Eps15 Sh3gl2 0.814 -Eps15 Sh3gl1 0.776 -Eps15 Sh3gl3 0.774 -Eps15 Stam 0.854 -Eps15 Tsg101 0.43 -Eps15 Vamp8 0.583 -Eps15 Stam2 0.858 -Eps15 Necap2 0.957 -Eps15 Snx9 0.433 -Eps15 Cltc 0.979 -Eps15 Necap1 0.964 -Eps15 Epn3 0.991 -Eps15 Cltb 0.891 -Eps15 Ehd4 0.406 -Eps15 Ap2s1 0.94 -Eps15 Gga3 0.437 -Eps15 Aak1 0.953 -Hgs Sh3gl2 0.527 -Hgs Sh3gl1 0.534 -Hgs Sh3gl3 0.499 -Hgs Stam 0.999 -Hgs Tsg101 0.998 -Hgs Vamp8 0.547 -Hgs Vps37a 0.773 -Hgs Stam2 0.999 -Hgs Chmp4c 0.815 -Hgs Chmp3 0.923 -Hgs Cltc 0.897 -Hgs Chmp4b 0.88 -Hgs Vps4a 0.728 -Hgs Vps37d 0.75 -Hgs Ap2s1 0.608 -Hgs Gga3 0.422 -Hgs Rab5a 0.405 -Hgs Vps37b 0.817 -Cyth3 Git2 0.503 -Cyth3 Gga3 0.43 -Rab5b Rab5c 0.735 -Rab5b Sh3gl2 0.442 -Rab5b Sh3gl3 0.425 -Rab5b Tsg101 0.576 -Rab5b Cltc 0.488 -Rab5b Appl1 0.748 +Sh3gl2 Stam2 0.617 +Epn2 Sh3gl3 0.616 +Epn2 Snx9 0.616 +Epn2 Hgs 0.612 +Hgs Ap2s1 0.608 Rab5b Cltb 0.608 -Rab5b Vps4a 0.409 -Rab5b Appl2 0.704 -Rab5b Rab5a 0.945 -Rab5c Sh3gl2 0.541 -Rab5c Tsg101 0.42 -Rab5c Vamp8 0.527 -Rab5c Snx9 0.558 -Rab5c Cltc 0.767 -Rab5c Necap1 0.506 -Rab5c Appl1 0.747 +Ap1s1 Epn1 0.604 +Epn1 Sh3gl3 0.604 +Ehd1 Rab5a 0.603 Rab5c Cltb 0.6 -Rab5c Chmp4b 0.435 -Rab5c Appl2 0.75 +Cltc Appl1 0.596 +Ap1g1 Gga3 0.595 +Ap1g1 Snx9 0.593 Rab5c Rab5a 0.593 -Sag Cltc 0.769 -Sh3gl2 Sh3gl1 0.828 -Sh3gl2 Sh3gl3 0.809 -Sh3gl2 Stam 0.512 -Sh3gl2 Vamp8 0.562 -Sh3gl2 Stam2 0.617 -Sh3gl2 Snx9 0.854 -Sh3gl2 Cltc 0.712 +Ap1s1 Epn3 0.592 +Tsg101 Gga3 0.587 +Snx9 Snx6 0.586 Sh3gl2 Necap1 0.585 -Sh3gl2 Epn3 0.625 -Sh3gl2 Ap2s1 0.519 -Sh3gl1 Sh3gl3 0.822 -Sh3gl1 Stam 0.512 +Ap1g1 Rab5c 0.584 +Eps15 Vamp8 0.583 +Ap1g1 Sh3gl2 0.58 +Ap1s1 Vamp8 0.579 +Clta Sh3gl2 0.579 +Epn1 Epn2 0.579 +Vamp8 Cltb 0.579 +Rab5b Tsg101 0.576 +Asap1 Appl1 0.575 Sh3gl1 Vamp8 0.574 -Sh3gl1 Stam2 0.535 -Sh3gl1 Snx9 0.497 -Sh3gl1 Cltc 0.715 -Sh3gl1 Ap2s1 0.525 -Sh3gl3 Stam 0.514 -Sh3gl3 Vamp8 0.553 -Sh3gl3 Stam2 0.535 -Sh3gl3 Snx9 0.408 -Sh3gl3 Cltc 0.675 -Sh3gl3 Ap2s1 0.519 -Stam Tsg101 0.991 +Ap1g1 Rab5a 0.573 +Epn1 Vamp8 0.571 +Vamp8 Ap2s1 0.57 +Vamp8 Necap2 0.568 +Ehd2 Rab5a 0.564 +Sh3gl2 Vamp8 0.562 +Rab5c Snx9 0.558 +Clta Hgs 0.557 Stam Vamp8 0.557 -Stam Vps37a 0.834 -Stam Stam2 0.985 -Stam Chmp4c 0.843 -Stam Chmp3 0.917 -Stam Cltc 0.76 -Stam Zfyve19 0.682 -Stam Chmp4b 0.769 +Ehd1 Acap2 0.556 +Sh3gl3 Vamp8 0.553 +Vamp8 Necap1 0.553 +Cltc Rab5a 0.55 +Ehd1 Ehd4 0.55 Stam Vps4a 0.549 -Stam Vps37d 0.777 -Stam Ap2s1 0.499 -Stam Vps37b 0.816 -Tsg101 Vps37a 0.999 -Tsg101 Stam2 0.943 -Tsg101 Chmp4c 0.881 -Tsg101 Chmp3 0.971 -Tsg101 Cltc 0.483 -Tsg101 Zfyve19 0.698 -Tsg101 Chmp4b 0.941 -Tsg101 Vps4a 0.872 -Tsg101 Vps37d 0.926 -Tsg101 Gga3 0.587 -Tsg101 Rab5a 0.49 -Tsg101 Vps37b 0.998 +Hgs Vamp8 0.547 Vamp8 Stam2 0.546 -Vamp8 Necap2 0.568 +Appl1 Acap1 0.544 +Epn2 Stam 0.544 +Clta Sh3gl1 0.542 +Rab5c Sh3gl2 0.541 +Ap1s1 Sh3gl2 0.54 +Epn2 Stam2 0.539 +Sh3gl1 Stam2 0.535 +Sh3gl3 Stam2 0.535 +Hgs Sh3gl1 0.534 +Appl1 Acap2 0.528 +Epn2 Vamp8 0.527 +Hgs Sh3gl2 0.527 +Rab5c Vamp8 0.527 +Sh3gl1 Ap2s1 0.525 +Arf6 Cltb 0.524 +Clta Sh3gl3 0.522 +Sh3gl2 Ap2s1 0.519 +Sh3gl3 Ap2s1 0.519 Vamp8 Snx9 0.519 -Vamp8 Cltc 0.642 -Vamp8 Necap1 0.553 -Vamp8 Cltb 0.579 -Vamp8 H2-M11 0.408 -Vamp8 Ap2s1 0.57 -Vamp8 Aak1 0.499 -Git2 Cltc 0.464 -Vps37a Stam2 0.754 -Vps37a Chmp4c 0.79 -Vps37a Chmp3 0.904 -Vps37a Chmp4b 0.772 -Vps37a Vps4a 0.501 -Vps37a Vps37d 0.787 -Vps37a Vps37b 0.817 +Ap1g1 Arf6 0.518 +Snx6 Snx33 0.518 +Ehd1 Epn1 0.517 +Ap1s1 Rab5c 0.515 +Sh3gl3 Stam 0.514 +Sh3gl1 Stam 0.512 +Sh3gl2 Stam 0.512 +Epn1 Ehd2 0.51 +Rab5c Necap1 0.506 Stam2 Chmp4c 0.505 -Stam2 Chmp3 0.684 -Stam2 Cltc 0.714 -Stam2 Zfyve19 0.683 +Clta Stam2 0.503 +Cyth3 Git2 0.503 Stam2 Vps4a 0.503 -Stam2 Vps37d 0.653 +Clta Stam 0.502 +Vps37a Vps4a 0.501 +Ap1s1 Snx9 0.499 +Hgs Sh3gl3 0.499 +Snx9 Appl1 0.499 +Stam Ap2s1 0.499 Stam2 Ap2s1 0.499 -Stam2 Vps37b 0.77 +Vamp8 Aak1 0.499 +Sh3gl1 Snx9 0.497 +Arf6 Ehd4 0.494 +Tsg101 Rab5a 0.49 +Asap1 Appl2 0.489 +Rab5b Cltc 0.488 +Tsg101 Cltc 0.483 +Acap2 Appl2 0.481 +Arf6 Aak1 0.479 +Arf6 Clta 0.478 +Appl2 Acap1 0.475 +Epn1 Gga3 0.475 +Asap1 Acap2 0.468 +Git2 Cltc 0.464 +Epn3 Ehd2 0.458 +Vps4a Rab5a 0.447 +Ehd1 Epn3 0.444 +Rab5b Sh3gl2 0.442 +Eps15 Gga3 0.437 +Rab5c Chmp4b 0.435 +Eps15 Snx9 0.433 +Cyth3 Gga3 0.43 +Eps15 Tsg101 0.43 +Arf6 Necap1 0.429 +Snx6 Gga3 0.427 +Rab5b Sh3gl3 0.425 +Cltc Appl2 0.422 +Hgs Gga3 0.422 +Arf6 Appl1 0.421 Necap2 Snx9 0.421 -Necap2 Cltc 0.782 -Necap2 Necap1 0.956 -Necap2 Epn3 0.653 -Necap2 Cltb 0.782 -Necap2 Ap2s1 0.961 -Necap2 Aak1 0.836 -Chmp4c Chmp3 0.987 -Chmp4c Zfyve19 0.769 -Chmp4c Chmp4b 0.94 -Chmp4c Vps4a 0.942 -Chmp4c Vps37d 0.683 -Chmp4c Vps37b 0.768 -Snx9 Cltc 0.751 -Snx9 Necap1 0.707 -Snx9 Epn3 0.691 -Snx9 Snx6 0.586 -Snx9 Appl1 0.499 -Snx9 Snx18 0.955 -Snx9 Snx33 0.937 +Rab5c Tsg101 0.42 +Arf6 Epn1 0.417 +Snx6 Acap1 0.415 Chmp3 Zfyve19 0.413 -Chmp3 Chmp4b 0.991 -Chmp3 Vps4a 0.945 -Chmp3 Vps37d 0.86 -Chmp3 Vps37b 0.925 -Cltc Necap1 0.816 -Cltc Epn3 0.964 Cltc Zfyve19 0.409 -Cltc Appl1 0.596 -Cltc Cltb 0.999 -Cltc Appl2 0.422 -Cltc Ap2s1 0.969 -Cltc Ehd2 0.938 -Cltc Gga3 0.73 -Cltc Aak1 0.859 -Cltc Rab5a 0.55 -Necap1 Epn3 0.685 -Necap1 Cltb 0.92 -Necap1 Ap2s1 0.867 -Necap1 Aak1 0.868 -Epn3 Cltb 0.796 -Epn3 Ap2s1 0.673 -Epn3 Ehd2 0.458 +Ehd1 Eps15 0.409 +Rab5b Vps4a 0.409 +Sh3gl3 Snx9 0.408 +Vamp8 H2-M11 0.408 +Arf6 Ehd2 0.407 +Eps15 Ehd4 0.406 +Arf6 Necap2 0.405 +Hgs Rab5a 0.405 +Arf6 Ap2s1 0.404 Epn3 Gga3 0.403 -Epn3 Aak1 0.696 -Zfyve19 Vps4a 0.654 -Snx6 Snx18 0.647 -Snx6 Acap1 0.415 -Snx6 Snx33 0.518 -Snx6 Gga3 0.427 -Appl1 Acap2 0.528 -Appl1 Appl2 0.989 -Appl1 Acap1 0.544 -Appl1 Rab5a 0.803 -Cltb Ap2s1 0.953 -Cltb Ehd2 0.921 -Cltb Aak1 0.8 -Cltb Rab5a 0.652 -Chmp4b Vps4a 0.889 -Chmp4b Vps37d 0.759 -Chmp4b Vps37b 0.801 -Acap2 Appl2 0.481 -Vps4a Rab5a 0.447 -Vps4a Vps37b 0.708 -Snx18 Snx33 0.908 -Vps37d Vps37b 0.758 -Appl2 Acap1 0.475 -Appl2 Rab5a 0.778 -Ap2s1 Ehd2 0.9 -Ap2s1 Aak1 0.927 -Ehd2 Rab5a 0.564 diff --git a/test/expected_result/df_probs.tsv b/test/expected_result/expected_pipeline/All-Genes/Mouse-Combined/df_probs.tsv similarity index 52% rename from test/expected_result/df_probs.tsv rename to test/expected_result/expected_pipeline/All-Genes/Mouse-Combined/df_probs.tsv index 33d3fddb..859f20ca 100644 --- a/test/expected_result/df_probs.tsv +++ b/test/expected_result/expected_pipeline/All-Genes/Mouse-Combined/df_probs.tsv @@ -1,20871 +1,20871 @@ Entrez Symbol Name Known/Novel Class-Label Probability Z-score P-adjusted Rank -20844 Stam signal transducing adaptor molecule (SH3 domain and ITAM motif) 1 Known P 0.9946579193783595 10.038651932623324 1.0755679521152203e-19 1 -13854 Epn1 epsin 1 Known P 0.9929483898311808 10.020944681771404 1.2868289275228494e-19 2 -20408 Sh3gl3 SH3-domain GRB2-like 3 Known P 0.9914512173591178 10.005437018522668 1.5052838054371737e-19 3 -56324 Stam2 signal transducing adaptor molecule (SH3 domain and ITAM motif) 2 Known P 0.9874374648962009 9.963862702456781 2.289127282511369e-19 4 -19344 Rab5b RAB5B, member RAS oncogene family Known P 0.9872468934471704 9.961888769652422 2.335044659090298e-19 5 -71889 Epn3 epsin 3 Known P 0.9867638834084214 9.956885767549158 2.4555494372508577e-19 6 -15239 Hgs HGF-regulated tyrosine kinase substrate Known P 0.981232307079404 9.899589881773974 4.36167943451205e-19 7 -72008 Zfyve19 zinc finger, FYVE domain containing 19 Novel U 0.9790828623167844 9.87732600358195 5.447845670253316e-19 8 -235406 Snx33 sorting nexin 33 Novel U 0.9774661487780838 9.860580137894685 6.437550094350157e-19 9 -13858 Eps15 epidermal growth factor receptor pathway substrate 15 Known P 0.9759034486424216 9.844393741260495 7.562750578160343e-19 10 -20405 Sh3gl1 SH3-domain GRB2-like 1 Known P 0.9733680574214276 9.818132242339935 9.816231293163702e-19 11 -13855 Epn2 epsin 2 Known P 0.9727274763408833 9.811497124565626 1.0483707591332074e-18 12 -72993 Appl1 adaptor protein, phosphotyrosine interaction, PH domain and leucine zipper containing 1 Novel U 0.9684371132613145 9.767057684825541 1.6269657348844689e-18 13 -259300 Ehd2 EH-domain containing 2 Known P 0.9681714003189613 9.76430543890349 1.6717492461022683e-18 14 -52348 Vps37a vacuolar protein sorting 37A Known P 0.9677804487144062 9.76025597503535 1.739867673223682e-18 15 -116733 Vps4a vacuolar protein sorting 4A Known P 0.9662873085376578 9.74479007816893 2.026266006495894e-18 16 -26431 Git2 GIT ArfGAP 2 Known P 0.9654796030884636 9.736423891678061 2.2001556490201158e-18 17 -20404 Sh3gl2 SH3-domain GRB2-like 2 Known P 0.9652500193703982 9.7340458710735 2.25222375548792e-18 18 -22088 Tsg101 tumor susceptibility gene 101 Known P 0.9635937624065197 9.71689041588816 2.6657658813368438e-18 19 -330192 Vps37b vacuolar protein sorting 37B Known P 0.960799806590795 9.687950713395233 3.540256044032849e-18 20 -67602 Necap1 NECAP endocytosis associated 1 Novel U 0.9592926876093452 9.672340024529243 4.124285227228423e-18 21 -20215 Sag S-antigen, retina and pineal gland (arrestin) Novel U 0.9590098477847663 9.669410378924114 4.244065871730915e-18 22 -78618 Acap2 ArfGAP with coiled-coil, ankyrin repeat and PH domains 2 Known P 0.9587132652593996 9.66633838687599 4.373364695021109e-18 23 -66616 Snx9 sorting nexin 9 Novel U 0.9583323212647481 9.66239258150225 4.545175527439341e-18 24 -98878 Ehd4 EH-domain containing 4 Known P 0.9537608931898724 9.615041879780291 7.208626670940244e-18 25 -216859 Acap1 ArfGAP with coiled-coil, ankyrin repeat and PH domains 1 Known P 0.950504530457656 9.581312581647152 9.998748408128707e-18 26 -66371 Chmp4c charged multivesicular body protein 4C Known P 0.9503206526418888 9.579407981276093 1.0184850519425717e-17 27 -260302 Gga3 golgi associated, gamma adaptin ear containing, ARF binding protein 3 Novel U 0.949680209361986 9.572774290836298 1.086019844057417e-17 28 -13196 Asap1 ArfGAP with SH3 domain, ankyrin repeat and PH domain1 Known P 0.94939674378777 9.569838163736996 1.1173082792403437e-17 29 -11765 Ap1g1 adaptor protein complex AP-1, gamma 1 subunit Novel U 0.9475167677743441 9.550365433990814 1.348615231053731e-17 30 -72183 Snx6 sorting nexin 6 Novel U 0.9455650968471498 9.530150090684662 1.6388793034561773e-17 31 -170625 Snx18 sorting nexin 18 Novel U 0.9436389140799646 9.510198752902005 1.985765893963691e-17 32 -19345 Rab5c RAB5C, member RAS oncogene family Known P 0.9430197383581009 9.503785351129247 2.1120040333777804e-17 33 -66147 Necap2 NECAP endocytosis associated 2 Novel U 0.9429717355634966 9.503288139760741 2.1221161217554037e-17 34 -12757 Clta clathrin light chain A Known P 0.9400712840388119 9.473245358215266 2.830822406140104e-17 35 -216190 Appl2 adaptor protein, phosphotyrosine interaction, PH domain and leucine zipper containing 2 Novel U 0.9396046836255469 9.468412326473329 2.9648890275315274e-17 36 -224754 H2-M11 histocompatibility 2, M region locus 11 Novel U 0.9362798945241962 9.433974270258092 4.12013838809501e-17 37 -13660 Ehd1 EH-domain containing 1 Known P 0.9322529746016993 9.39226356607873 6.127892572703342e-17 38 -271457 Rab5a RAB5A, member RAS oncogene family Known P 0.9307520784305439 9.376717332877206 7.101921066436794e-17 39 -67300 Cltc clathrin heavy chain Novel U 0.927868595310288 9.346850309506998 9.422451378884052e-17 40 -74325 Cltb clathrin light chain B Known P 0.9277067018952987 9.345173422836497 9.572965388227295e-17 41 -75608 Chmp4b charged multivesicular body protein 4B Known P 0.9262332023742258 9.329910963235912 1.105691362101509e-16 42 -22320 Vamp8 vesicle-associated membrane protein 8 Novel U 0.9252953953814474 9.32019718923346 1.2117568793083936e-16 43 -269774 Aak1 AP2 associated kinase 1 Novel U 0.9223512678462923 9.2897020130073 1.614512398785356e-16 44 -19159 Cyth3 cytohesin 3 Novel N 0.92224350691943 9.28858582886931 1.631531117493491e-16 45 -11845 Arf6 ADP-ribosylation factor 6 Known P 0.9211828269248716 9.277599340353651 1.8088024521624994e-16 46 -194309 Vps37d vacuolar protein sorting 37D Known P 0.9170303820850381 9.234588453206927 2.7055952485579247e-16 47 -232910 Ap2s1 adaptor-related protein complex 2, sigma 1 subunit Known P 0.9157809073733963 9.22164643521801 3.0529969197961115e-16 48 -66700 Chmp3 charged multivesicular body protein 3 Known P 0.9138825566066596 9.20198338038107 3.6668870873096083e-16 49 -11769 Ap1s1 adaptor protein complex AP-1, sigma 1 Novel U 0.9137651033729297 9.200766803647165 3.708644846429772e-16 50 -252903 Ap1s3 adaptor-related protein complex AP-1, sigma 3 Novel U 0.9110498744624762 9.172642551851029 4.816408639876279e-16 51 -57440 Ehd3 EH-domain containing 3 Known P 0.9003133408132338 9.061433889256707 1.3434727388316593e-15 52 -18571 Pdcd6ip programmed cell death 6 interacting protein Novel U 0.8965412765892485 9.0223629720246 1.9208243787996763e-15 53 -18710 Pik3r3 phosphoinositide-3-kinase regulatory subunit 3 Novel U 0.8964180916293535 9.021087026259494 1.9433316408569006e-15 54 -69710 Arap1 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 1 Known P 0.8954426145998995 9.01098306725549 2.1310102006185114e-15 55 -21968 Tom1 target of myb1 trafficking protein Novel U 0.8950109889645497 9.006512303113466 2.2196662734070393e-15 56 -216963 Git1 GIT ArfGAP 1 Known P 0.8918165268183649 8.97342416921557 2.999401554065613e-15 57 -71920 Epgn epithelial mitogen Novel U 0.8915397558537145 8.970557384662076 3.0785096223317096e-15 58 -12402 Cbl Casitas B-lineage lymphoma Known P 0.8896330489823874 8.950807777568482 3.682411434403962e-15 59 -19332 Rab20 RAB20, member RAS oncogene family Novel U 0.8895821056706888 8.950280108420579 3.7000573180741256e-15 60 -70591 5730455P16Rik RIKEN cDNA 5730455P16 gene Novel U 0.8893878134205381 8.948267635680532 3.7681270040817325e-15 61 -14787 Rhpn1 rhophilin, Rho GTPase binding protein 1 Novel U 0.8844355838028052 8.896972604095833 5.9887153745187255e-15 62 -320634 Ocrl OCRL, inositol polyphosphate-5-phosphatase Novel U 0.8841680183333835 8.894201169759304 6.140060500638219e-15 63 -13859 Eps15l1 epidermal growth factor receptor pathway substrate 15-like 1 Novel N 0.8793696863251453 8.844500204554642 9.593822475143963e-15 64 -228998 Arfgap1 ADP-ribosylation factor GTPase activating protein 1 Known P 0.8792635000503544 8.843400330611042 9.68877501274885e-15 65 -77799 Sla2 Src-like-adaptor 2 Novel U 0.8789495016047568 8.840147945033685 9.97501875000948e-15 66 -215114 Hip1 huntingtin interacting protein 1 Novel U 0.877890431649992 8.829178133257281 1.1003464309378564e-14 67 -11771 Ap2a1 adaptor-related protein complex 2, alpha 1 subunit Known P 0.8759012624804805 8.808574384389894 1.3226096033992785e-14 68 -11766 Ap1g2 adaptor protein complex AP-1, gamma 2 subunit Novel U 0.8751520778301495 8.800814354409885 1.4173535061565246e-14 69 -80794 Cblc Casitas B-lineage lymphoma c Known P 0.8730501071142734 8.779042210833406 1.720446079699617e-14 70 -217695 Zfyve1 zinc finger, FYVE domain containing 1 Novel U 0.8681241061146355 8.728018854412717 2.7044645603052558e-14 71 -70160 Vps36 vacuolar protein sorting 36 Known P 0.8667558500895308 8.713846503483676 3.065114707846089e-14 72 -69178 Snx5 sorting nexin 5 Novel U 0.8657395486672882 8.703319686761196 3.363349928870244e-14 73 -100017 Ldlrap1 low density lipoprotein receptor adaptor protein 1 Known P 0.8645464407541469 8.69096151421819 3.7501801806300874e-14 74 -11768 Ap1m2 adaptor protein complex AP-1, mu 2 subunit Novel U 0.8641733727679586 8.6870972882812 3.8799175976984654e-14 75 -383075 Enthd1 ENTH domain containing 1 Novel U 0.8625925477762989 8.670723154984412 4.480627692629829e-14 76 -208650 Cblb Casitas B-lineage lymphoma b Novel U 0.8614646734376106 8.659040669661149 4.964462462156126e-14 77 -14990 H2-M2 histocompatibility 2, M region locus 2 Novel U 0.8614471258710845 8.658858912543916 4.9723835703881684e-14 78 -23970 Pacsin2 protein kinase C and casein kinase substrate in neurons 2 Novel U 0.8592478942556333 8.636079343766918 6.070573153800375e-14 79 -20975 Synj2 synaptojanin 2 Novel U 0.8551654279776191 8.593793292263097 8.780461603434416e-14 80 -67323 P3r3urf Pik3r3 upstream reading frame Novel U 0.8542978973467614 8.584807438507207 9.494671402924175e-14 81 -18717 Pip5k1c phosphatidylinositol-4-phosphate 5-kinase, type 1 gamma Known P 0.851892988912719 8.559897476004501 1.178820410054908e-13 82 -13430 Dnm2 dynamin 2 Known P 0.8495780901635686 8.535919830858997 1.4509319843263195e-13 83 -106572 Rab31 RAB31, member RAS oncogene family Known P 0.847826645295044 8.517778422486469 1.6971796618783546e-13 84 -216991 Adap2 ArfGAP with dual PH domains 2 Novel U 0.8464467455142471 8.503485465918738 1.9198477882133862e-13 85 -58220 Pard6b par-6 family cell polarity regulator beta Known P 0.8431858991749102 8.469709726730434 2.5670653654371665e-13 86 -108012 Ap1s2 adaptor-related protein complex 1, sigma 2 subunit Novel U 0.8427958193294132 8.46566929251396 2.657647148001107e-13 87 -630294 H2-T25 histocompatibility-2, T region locus 25 Novel U 0.8412874863449777 8.450046029044953 3.038546767225409e-13 88 -11777 Ap3s1 adaptor-related protein complex 3, sigma 1 subunit Novel U 0.8375833538598777 8.411678746531084 4.217656293006038e-13 89 -76959 Chmp5 charged multivesicular body protein 5 Known P 0.8344143032305267 8.378853824289193 5.57704843835505e-13 90 -19334 Rab22a RAB22A, member RAS oncogene family Known P 0.8320977579808383 8.354859124745245 6.83605692226718e-13 91 -11774 Ap3b1 adaptor-related protein complex 3, beta 1 subunit Novel U 0.8316274005833599 8.34998717828433 7.124013866911336e-13 92 -215705 Arrdc1 arrestin domain containing 1 Novel U 0.8314418900706168 8.348065666491665 7.240845914526407e-13 93 -18704 Pik3c2a phosphatidylinositol-4-phosphate 3-kinase catalytic subunit type 2 alpha Novel U 0.8299129076282724 8.332228516616453 8.278568452162399e-13 94 -54189 Rabep1 rabaptin, RAB GTPase binding effector protein 1 Known P 0.8283256662671219 8.315787922775405 9.510947448329085e-13 95 -18707 Pik3cd phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit delta Novel U 0.8270500542802162 8.30257517574852 1.063103664802158e-12 96 -78287 Rbsn rabenosyn, RAB effector Known P 0.8261205417103888 8.29294731510633 1.1528199980355877e-12 97 -11767 Ap1m1 adaptor-related protein complex AP-1, mu subunit 1 Novel U 0.8249684262335606 8.2810137408711 1.2744379713293204e-12 98 -67123 Ubap1 ubiquitin-associated protein 1 Novel U 0.8245370336597521 8.276545390772856 1.3231599606317493e-12 99 -18222 Numb NUMB endocytic adaptor protein Novel U 0.8221462250014723 8.251781473283996 1.6283878099074567e-12 100 -17113 M6pr mannose-6-phosphate receptor, cation dependent Novel U 0.8218921193462867 8.249149455260858 1.6646519948984425e-12 101 -68942 Chmp2b charged multivesicular body protein 2B Known P 0.8206742878264782 8.236535196412735 1.8498077526521027e-12 102 -109689 Arrb1 arrestin, beta 1 Known P 0.8160153969266121 8.18827855762471 2.7651596407155876e-12 103 -19158 Cyth2 cytohesin 2 Novel U 0.8105301209993815 8.13146224988919 4.4259282081761566e-12 104 -104015 Synj1 synaptojanin 1 Novel U 0.8101603043840672 8.127631701544829 4.568014040138954e-12 105 -77407 Rab35 RAB35, member RAS oncogene family Novel U 0.8085777627192273 8.111239787003672 5.228547076772616e-12 106 -30930 Vps26a VPS26 retromer complex component A Novel U 0.80628363165177 8.087477252822445 6.356292670416836e-12 107 -22319 Vamp3 vesicle-associated membrane protein 3 Novel U 0.8047172134879557 8.07125234497488 7.260750157952947e-12 108 -14252 Flot2 flotillin 2 Novel U 0.8043574629656296 8.067526060890788 7.485745147892046e-12 109 -209018 Vps8 VPS8 CORVET complex subunit Novel U 0.8019701888489612 8.042798754067746 9.16291839215427e-12 110 -19342 Rab4b RAB4B, member RAS oncogene family Novel N 0.8002921159834763 8.025417330490727 1.0558276520095517e-11 111 -11782 Ap4s1 adaptor-related protein complex AP-4, sigma 1 Novel U 0.7986391609791287 8.008296076893664 1.2136804642180655e-11 112 -20479 Vps4b vacuolar protein sorting 4B Known P 0.7940234644332405 7.960486843804205 1.7881799621917458e-11 113 -107338 Gbf1 golgi-specific brefeldin A-resistance factor 1 Novel U 0.7938314818301431 7.95849829431241 1.8171487874099918e-11 114 -19765 Ralbp1 ralA binding protein 1 Novel U 0.7926435888679766 7.946194138060167 2.006952416448788e-11 115 -16004 Igf2r insulin-like growth factor 2 receptor Novel U 0.7858473884600229 7.875799317647636 3.532991520207749e-11 116 -56440 Snx1 sorting nexin 1 Novel U 0.7774401576902947 7.788717497707616 7.063740264181015e-11 117 -218503 Fcho2 FCH domain only 2 Novel U 0.7764569218943911 7.778533173655782 7.656187004604714e-11 118 -73711 Mvb12a multivesicular body subunit 12A Known P 0.7758406561420743 7.77214991325193 8.052172416581767e-11 119 -545378 Sh2d1b2 SH2 domain containing 1B2 Novel U 0.7755500163194301 7.769139475523251 8.245853696940845e-11 120 -98366 Smap1 small ArfGAP 1 Known P 0.7754427317368391 7.7680282253435635 8.318500304447687e-11 121 -84092 Usp8 ubiquitin specific peptidase 8 Known P 0.7720415403002654 7.732798796251679 1.0978403637213917e-10 122 -107305 Vps37c vacuolar protein sorting 37C Known P 0.7673211703355565 7.683905359331027 1.6102319488231186e-10 123 -76932 Arfip2 ADP-ribosylation factor interacting protein 2 Novel U 0.7665921890608608 7.6763545952516985 1.707997146929612e-10 124 -28084 Vps25 vacuolar protein sorting 25 Known P 0.7649617937476295 7.659467014193607 1.9482801810561049e-10 125 -12223 Btc betacellulin, epidermal growth factor family member Novel U 0.7630643599781022 7.639813457583618 2.2699952747546438e-10 126 -11773 Ap2m1 adaptor-related protein complex 2, mu 1 subunit Known P 0.7607689358291073 7.616037529706334 2.729604629976376e-10 127 -15463 Agfg1 ArfGAP with FG repeats 1 Novel N 0.7584755492125695 7.592282706523259 3.2799115060612396e-10 128 -27681 Snf8 SNF8, ESCRT-II complex subunit, homolog (S. cerevisiae) Known P 0.7570839269658428 7.577868329038782 3.665592507881394e-10 129 -71678 Brox BRO1 domain and CAAX motif containing Novel U 0.7550919591150969 7.55723559152317 4.2963591227144024e-10 130 -216344 Rab21 RAB21, member RAS oncogene family Novel U 0.7540232873742204 7.546166324761863 4.677567157881117e-10 131 -72543 Mvb12b multivesicular body subunit 12B Known P 0.7519724869855311 7.524924201752251 5.504558232592282e-10 132 -77038 Arfgap2 ADP-ribosylation factor GTPase activating protein 2 Known P 0.7519235178988901 7.524416981562595 5.525967784344706e-10 133 -74015 Fcho1 FCH domain only 1 Novel U 0.7496042610544832 7.50039419540969 6.639393687177137e-10 134 -74105 Gga2 golgi associated, gamma adaptin ear containing, ARF binding protein 2 Novel U 0.7438785041042013 7.441086993142791 1.0420407186242286e-09 135 -230837 Asap3 ArfGAP with SH3 domain, ankyrin repeat and PH domain 3 Known P 0.742571470040509 7.427548777277497 1.1544093692893487e-09 136 -11844 Arf5 ADP-ribosylation factor 5 Novel N 0.7403509519050036 7.404548723425533 1.3732168411013311e-09 137 -71955 Ist1 increased sodium tolerance 1 homolog (yeast) Novel U 0.7397580935786582 7.398407916370415 1.4382238648463117e-09 138 -11840 Arf1 ADP-ribosylation factor 1 Novel U 0.7277068622361115 7.273581658287206 3.653074463123355e-09 139 -18711 Pikfyve phosphoinositide kinase, FYVE type zinc finger containing Known P 0.7217595568691605 7.211979664803461 5.754298415838438e-09 140 -13866 Erbb2 erb-b2 receptor tyrosine kinase 2 Novel U 0.7179474961854461 7.172494465556291 7.684688097579711e-09 141 -67073 Pi4k2b phosphatidylinositol 4-kinase type 2 beta Novel U 0.7127057149082917 7.118200267401804 1.1410194172492623e-08 142 -67804 Snx2 sorting nexin 2 Novel U 0.7124355588111965 7.115401999428994 1.1644115057673603e-08 143 -13874 Ereg epiregulin Novel U 0.710762600488029 7.098073552113168 1.3201094867558674e-08 144 -211673 Arfgef1 ADP ribosylation factor guanine nucleotide exchange factor 1 Novel U 0.7079422961712871 7.068860932712866 1.630057559662098e-08 145 -14772 Grk4 G protein-coupled receptor kinase 4 Known P 0.7071140858494985 7.060282357425727 1.7339277302472332e-08 146 -234852 Chmp1a charged multivesicular body protein 1A Novel U 0.7066945802474397 7.055937132190106 1.7889902699920432e-08 147 -19329 Rab17 RAB17, member RAS oncogene family Novel N 0.704558629515963 7.033813024729069 2.0970634061508967e-08 148 -240752 Pik3c2b phosphatidylinositol-4-phosphate 3-kinase catalytic subunit type 2 beta Novel U 0.7024795804579135 7.012278302930848 2.4466758191231716e-08 149 -240095 H2-M5 histocompatibility 2, M region locus 5 Novel U 0.6974309578441487 6.959984835862 3.55112824558237e-08 150 -216705 Clint1 clathrin interactor 1 Novel U 0.6941744225991169 6.92625375084679 4.5092876050901504e-08 151 -74769 Pik3cb phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit beta Novel U 0.6907377928109988 6.890657252474582 5.795097927141311e-08 152 -16330 Inpp5b inositol polyphosphate-5-phosphatase B Novel U 0.6875491339701123 6.8576292290221925 7.305823453643615e-08 153 -71770 Ap2b1 adaptor-related protein complex 2, beta 1 subunit Known P 0.6860912671823327 6.84252869275916 8.119193253052714e-08 154 -140780 Bmp2k BMP2 inducible kinase Novel U 0.6845141751906071 6.826193225752973 9.099055641678492e-08 155 -235567 Dnajc13 DnaJ heat shock protein family (Hsp40) member C13 Novel U 0.681191909177218 6.7917813035999 1.1557530803999048e-07 156 -83814 Nedd4l neural precursor cell expressed, developmentally down-regulated gene 4-like Known P 0.6811691884090741 6.791545962630372 1.1576404005011676e-07 157 -110696 H2-M10.3 histocompatibility 2, M region locus 10.3 Novel U 0.6803793377113847 6.783364715068648 1.2251601723612938e-07 158 -84095 Pi4k2a phosphatidylinositol 4-kinase type 2 alpha Novel U 0.6771817426203435 6.750244130230919 1.5401704661335572e-07 159 -18223 Numbl numb-like Novel U 0.6763211827509867 6.741330479393503 1.6376978475624489e-07 160 -68953 Chmp2a charged multivesicular body protein 2A Known P 0.6755043819220795 6.732870083258564 1.7358475016237502e-07 161 -208092 Chmp6 charged multivesicular body protein 6 Known P 0.6637017893802353 6.610619217699471 3.993638951746206e-07 162 -106039 Gga1 golgi associated, gamma adaptin ear containing, ARF binding protein 1 Novel U 0.6627978508447633 6.60125625206443 4.2542258169488164e-07 163 -19336 Rab24 RAB24, member RAS oncogene family Novel U 0.6618162718175516 6.5910890887682445 4.5560439108503197e-07 164 -11841 Arf2 ADP-ribosylation factor 2 Novel U 0.661292661787642 6.585665553291193 4.725512421922798e-07 165 -192157 Socs7 suppressor of cytokine signaling 7 Novel U 0.6593910230512043 6.565968441772178 5.394453031002075e-07 166 -73324 Clhc1 clathrin heavy chain linker domain containing 1 Novel U 0.6572125077983016 6.543403452397443 6.275015491946285e-07 167 -233489 Picalm phosphatidylinositol binding clathrin assembly protein Novel U 0.6516512687643704 6.485800321299869 9.21013941992448e-07 168 -70676 Gulp1 GULP, engulfment adaptor PTB domain containing 1 Novel U 0.6515981194555271 6.485249802506059 9.243833218038389e-07 169 -29816 Hip1r huntingtin interacting protein 1 related Novel U 0.6507181002718777 6.476134592730891 9.819555729342592e-07 170 -53620 Vamp5 vesicle-associated membrane protein 5 Novel N 0.6500648726230074 6.469368482217594 1.0269432318063198e-06 171 -56193 Plek pleckstrin Novel U 0.6497149280906089 6.465743768254818 1.0518663705333612e-06 172 -65114 Vps35 VPS35 retromer complex component Novel U 0.647262204477171 6.440338537695773 1.243928274661712e-06 173 -16331 Inpp5d inositol polyphosphate-5-phosphatase D Novel U 0.644445879561067 6.411167136796463 1.506915952393456e-06 174 -67028 Chmp1b2 charged multivesicular body protein 1B2 Novel U 0.6425112192179294 6.391127988560776 1.7182946901070238e-06 175 -217030 Synrg synergin, gamma Novel U 0.6372779010764278 6.336921451287169 2.4459787475574625e-06 176 -170735 Arr3 arrestin 3, retinal Novel N 0.6369416009269655 6.3334380653943105 2.50187030302108e-06 177 -227700 Sh3glb2 SH3-domain GRB2-like endophilin B2 Known P 0.6366689916202919 6.3306143871573335 2.5480904286015173e-06 178 -100041548 Gm3402 predicted gene 3402 Novel U 0.6351070714894863 6.314436069787808 2.8294333557717893e-06 179 -19341 Rab4a RAB4A, member RAS oncogene family Known P 0.6340117112125522 6.303090364047353 3.0446060173300906e-06 180 -58194 Sh3kbp1 SH3-domain kinase binding protein 1 Known P 0.6328083884191998 6.290626386110916 3.299416538207018e-06 181 -231801 Agfg2 ArfGAP with FG repeats 2 Novel U 0.6327660231681924 6.290187568233664 3.3087570360669177e-06 182 -231834 Snx8 sorting nexin 8 Novel U 0.6307076422120177 6.268866925955235 3.7950505256266704e-06 183 -231821 Adap1 ArfGAP with dual PH domains 1 Novel U 0.630163454993339 6.2632302526333525 3.934863030196423e-06 184 -73341 Arhgef6 Rac/Cdc42 guanine nucleotide exchange factor 6 Novel U 0.6227231162172786 6.18616346817888 6.43276873589698e-06 185 -100504663 Atg14 autophagy related 14 Novel U 0.6216792989132581 6.175351642857482 6.8888083624865515e-06 186 -11764 Ap1b1 adaptor protein complex AP-1, beta 1 subunit Novel U 0.6216176355598361 6.17471293586981 6.916713736594086e-06 187 -320129 Grk3 G protein-coupled receptor kinase 3 Known P 0.6214822467207447 6.173310582725169 6.9783705726024915e-06 188 -15481 Hspa8 heat shock protein 8 Known P 0.6213670903225477 6.172117796538208 7.031235170867976e-06 189 -20616 Snap91 synaptosomal-associated protein 91 Novel U 0.6212617422104756 6.171026604256498 7.079939167222273e-06 190 -26385 Grk6 G protein-coupled receptor kinase 6 Known P 0.6198996091544963 6.1569176748403756 7.740096681869827e-06 191 -216439 Agap2 ArfGAP with GTPase domain, ankyrin repeat and PH domain 2 Known P 0.6174018333334782 6.131045794996228 9.110096061792373e-06 192 -54126 Arhgef7 Rho guanine nucleotide exchange factor Novel U 0.6167980944807089 6.1247922878060885 9.475186883704968e-06 193 -224756 H2-M1 histocompatibility 2, M region locus 1 Novel U 0.6151918999945768 6.108155378119532 1.0517353942123937e-05 194 -14991 H2-M3 histocompatibility 2, M region locus 3 Novel U 0.6133795818689303 6.089383446550834 1.182769139424892e-05 195 -18708 Pik3r1 phosphoinositide-3-kinase regulatory subunit 1 Novel U 0.609256709430091 6.046678869361468 1.5429405872054845e-05 196 -66251 Arfgap3 ADP-ribosylation factor GTPase activating protein 3 Known P 0.6072135164921355 6.025515544076475 1.7590427139055384e-05 197 -14773 Grk5 G protein-coupled receptor kinase 5 Known P 0.6064520733513938 6.0176285410557675 1.846898581449981e-05 198 -99371 Arfgef2 ADP ribosylation factor guanine nucleotide exchange factor 2 Novel U 0.6045931064679472 5.998373423187272 2.0797349733461e-05 199 -14257 Flt4 FMS-like tyrosine kinase 4 Novel U 0.6045598823375229 5.998029288736522 2.084146066318699e-05 200 -19335 Rab23 RAB23, member RAS oncogene family Novel U 0.6034274354491821 5.986299441094273 2.2400710192600013e-05 201 -54607 Socs6 suppressor of cytokine signaling 6 Novel U 0.5979002351694251 5.929048882293473 3.179485856320104e-05 202 -224705 Vps52 VPS52 GARP complex subunit Novel U 0.5937905928984334 5.886481342747752 4.116652042972479e-05 203 -18709 Pik3r2 phosphoinositide-3-kinase regulatory subunit 2 Novel U 0.5919959389884134 5.867892376543835 4.6056915607855255e-05 204 -19330 Rab18 RAB18, member RAS oncogene family Novel U 0.5917600808623953 5.865449365827957 4.6740237444123374e-05 205 -216869 Arrb2 arrestin, beta 2 Known P 0.5884641380575856 5.831310098604021 5.7386107947692034e-05 206 -75869 Arl5b ADP-ribosylation factor-like 5B Novel U 0.5878853768176896 5.82531530870693 5.948458185339801e-05 207 -106952 Arap3 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 3 Known P 0.5878068099833059 5.824501516019129 5.9775142493549684e-05 208 -70369 Bag5 BCL2-associated athanogene 5 Novel U 0.5859984543442404 5.805770627756178 6.68576965479687e-05 209 -66201 Vta1 vesicle (multivesicular body) trafficking 1 Novel U 0.5859606406402349 5.805378954653148 6.701418202353735e-05 210 -20334 Sec23a SEC23 homolog A, COPII coat complex component Novel U 0.5807180385151244 5.751076254182514 9.253455811767476e-05 211 -71943 Tom1l1 target of myb1-like 1 (chicken) Novel U 0.5779498142312437 5.722403078050549 0.00010959647067838525 212 -69091 Vps26b VPS26 retromer complex component B Novel U 0.5768192554622 5.710692787485913 0.00011741169448480539 213 -52428 Rhpn2 rhophilin, Rho GTPase binding protein 2 Novel U 0.5765372369438526 5.707771648943729 0.0001194440656449386 214 -108083 Pip4k2b phosphatidylinositol-5-phosphate 4-kinase, type II, beta Known P 0.5746225782156967 5.687939676778506 0.00013417450632741625 215 -216810 Tom1l2 target of myb1-like 2 (chicken) Novel N 0.5724015477737492 5.664934316473256 0.00015347888402874048 216 -11776 Ap3d1 adaptor-related protein complex 3, delta 1 subunit Novel U 0.5717034900928695 5.657703857962114 0.00016008494747283666 217 -53331 Stx7 syntaxin 7 Novel U 0.5712159006437773 5.652653422477057 0.00016486221826611148 218 -75669 Pik3r4 phosphoinositide-3-kinase regulatory subunit 4 Novel U 0.5705605582367934 5.645865407368739 0.0001715017185421774 219 -225861 Snx32 sorting nexin 32 Novel U 0.567948477725965 5.6188095633051 0.00020064172062000892 220 -77057 Ston1 stonin 1 Novel U 0.5669365323546537 5.608327866414969 0.00021317739014584407 221 -70314 Rabep2 rabaptin, RAB GTPase binding effector protein 2 Novel U 0.564597076182493 5.584095856289208 0.00024513809787279954 222 -54673 Sh3glb1 SH3-domain GRB2-like B1 (endophilin) Known P 0.5630290526060042 5.5678543196299355 0.00026911373801845367 223 -14083 Ptk2 PTK2 protein tyrosine kinase 2 Novel U 0.5629890833024092 5.5674403188972175 0.00026975369718235164 224 -216238 Eea1 early endosome antigen 1 Known P 0.5612706855948316 5.549641211931411 0.00029870861114110253 225 -67588 Rnf41 ring finger protein 41 Known P 0.5611985268242815 5.548893793758145 0.0002999882400018906 226 -107650 Pi4kb phosphatidylinositol 4-kinase beta Novel U 0.5604169177205052 5.540797912355245 0.00031419422954305406 227 -52055 Rab11fip5 RAB11 family interacting protein 5 (class I) Known P 0.5598281016986122 5.534698975356761 0.00032532503248396344 228 -53869 Rab11a RAB11A, member RAS oncogene family Known P 0.5564852220869325 5.5000735382302315 0.00039614691396113545 229 -16835 Ldlr low density lipoprotein receptor Known P 0.5556950602310043 5.491889067701699 0.00041495523798343466 230 -76561 Snx7 sorting nexin 7 Novel U 0.5548757250290691 5.483402420614248 0.00043537163198418665 231 -224761 H2-M10.5 histocompatibility 2, M region locus 10.5 Novel U 0.5526006803552959 5.459837582671369 0.000497301164652873 232 -228765 Sdcbp2 syndecan binding protein (syntenin) 2 Novel N 0.5514337042793065 5.447750082838543 0.000532299412115233 233 -70785 Dennd1c DENN domain containing 1C Novel U 0.5470307478405767 5.4021444047855764 0.0006871333221460896 234 -11891 Rab27a RAB27A, member RAS oncogene family Novel U 0.5468510367888927 5.400282963619916 0.000694301741589341 235 -20615 Snapin SNAP-associated protein Novel U 0.545798651975604 5.389382396319158 0.0007377568708557331 236 -14184 Fgfr3 fibroblast growth factor receptor 3 Known P 0.545374046253368 5.3849843442064005 0.0007560257083428685 237 -18806 Pld2 phospholipase D2 Known P 0.5440042744470918 5.370796292865813 0.0008179967337149325 238 -140500 Acap3 ArfGAP with coiled-coil, ankyrin repeat and PH domains 3 Known P 0.5432835506317161 5.3633310592786705 0.0008525506115014395 239 -16001 Igf1r insulin-like growth factor I receptor Known P 0.538514185692577 5.3139301340234955 0.001119526971903247 240 -14186 Fgfr4 fibroblast growth factor receptor 4 Known P 0.5381350189103495 5.310002736957619 0.0011439221480557442 241 -11772 Ap2a2 adaptor-related protein complex 2, alpha 2 subunit Known P 0.5365017684724923 5.293085582612511 0.0012550132797349207 242 -208080 Ubap1l ubiquitin-associated protein 1-like Novel U 0.534603898942531 5.273427512410271 0.001397237683480961 243 -22042 Tfrc transferrin receptor Known P 0.533904602820826 5.266184226169773 0.0014534756067988478 244 -68328 Rab13 RAB13, member RAS oncogene family Novel U 0.527099400365202 5.195696162843399 0.0021282718981147806 245 -227733 Pip5kl1 phosphatidylinositol-4-phosphate 5-kinase-like 1 Novel U 0.5270657433069598 5.195347544140542 0.002132264266824848 246 -18720 Pip5k1a phosphatidylinositol-4-phosphate 5-kinase, type 1 alpha Known P 0.5248005307392763 5.17188454682933 0.0024182566008759004 247 -56382 Rab9 RAB9, member RAS oncogene family Novel U 0.5218565093255169 5.141390469805099 0.002845756180138598 248 -70432 Rufy2 RUN and FYVE domain-containing 2 Novel U 0.5214072599571765 5.136737159616108 0.002917099096598872 249 -381091 H2-Eb2 histocompatibility 2, class II antigen E beta2 Novel U 0.5171081420526351 5.092207037686756 0.003693148125512607 250 -228545 Vps18 VPS18 CORVET/HOPS core subunit Novel U 0.5160177090387915 5.080912368375419 0.0039196612793717155 251 -100529082 H2-T27 histocompatibility 2, T region locus 27 Novel U 0.5153444782459926 5.073939065954877 0.004066142599680956 252 -56513 Pard6a par-6 family cell polarity regulator alpha Known P 0.5141707558401016 5.061781687858704 0.004334244889385163 253 -226720 Becn2 beclin 2 Novel U 0.5138673512083106 5.058639032656503 0.004406276025727344 254 -67042 Ift27 intraflagellar transport 27 Novel U 0.5126692169942291 5.046228797853587 0.004702175393130693 255 -11839 Areg amphiregulin Novel U 0.5123361348251693 5.042778743695952 0.004787783300311618 256 -194590 Reps2 RALBP1 associated Eps domain containing protein 2 Novel U 0.5102869546126663 5.021553402418017 0.005348485195945241 257 -70450 Unc13d unc-13 homolog D Novel U 0.5101401970010363 5.02003329190115 0.005390984478719318 258 -67282 Washc3 WASH complex subunit 3 Novel U 0.5064537860940342 4.981849568910653 0.006571899089051418 259 -27260 Plek2 pleckstrin 2 Novel U 0.5034643708386002 4.950885303966601 0.007709026964404419 260 -242915 Garem2 GRB2 associated regulator of MAPK1 subtype 2 Novel U 0.5030918573043247 4.947026821024298 0.007863356529748351 261 -16453 Jak3 Janus kinase 3 Novel U 0.5014152354840193 4.929660427325548 0.00859558800159619 262 -73728 Psd pleckstrin and Sec7 domain containing Known P 0.4989357389273338 4.903977883500458 0.009800037380923927 263 -66914 Vps28 vacuolar protein sorting 28 Known P 0.49882128903599005 4.902792415288257 0.009859386124187982 264 -17999 Nedd4 neural precursor cell expressed, developmentally down-regulated 4 Known P 0.4979981222592589 4.894266080875026 0.010296554991152373 265 -16396 Itch itchy, E3 ubiquitin protein ligase Known P 0.49743417366207654 4.888424719844222 0.010606765537648982 266 -17444 Grap2 GRB2-related adaptor protein 2 Novel N 0.4973873887259579 4.887940123013878 0.01063290074290693 267 -80743 Vps16 VSP16 CORVET/HOPS core subunit Novel U 0.4932867481211957 4.845465822431049 0.013180965673591238 268 -15511 Hspa1b heat shock protein 1B Novel U 0.4932397521842319 4.8449790400608865 0.013213323522924876 269 -15043 H2-T3 histocompatibility 2, T region locus 3 Novel U 0.49145588771126514 4.826501830491282 0.01449965344828937 270 -266781 Snx17 sorting nexin 17 Novel U 0.48745718644500463 4.785083414225579 0.01783511961290801 271 -11843 Arf4 ADP-ribosylation factor 4 Novel U 0.4866356922889327 4.776574404762152 0.018606293350714426 272 -77573 Vps33a VPS33A CORVET/HOPS core subunit Novel U 0.48647214783263454 4.77488041666005 0.01876359837891786 273 -22325 Vav2 vav 2 oncogene Novel U 0.48610177640255936 4.771044121562636 0.01912457773583517 274 -30955 Pik3cg phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit gamma Novel U 0.4854797666155009 4.764601364635755 0.01974587647030581 275 -73122 Tgfbrap1 transforming growth factor, beta receptor associated protein 1 Novel U 0.4852295037666369 4.76200915027417 0.020001285119126026 276 -101490 Inpp5f inositol polyphosphate-5-phosphatase F Novel U 0.48041328469612266 4.712122911466456 0.02558134359763419 277 -72318 Cyth4 cytohesin 4 Novel U 0.47993575264566257 4.707176650185811 0.026209719025356345 278 -231885 Gm4871 predicted gene 4871 Novel U 0.4793626432262886 4.701240401659892 0.026983434509839314 279 -94221 Gopc golgi associated PDZ and coiled-coil motif containing Novel U 0.47832383446931753 4.690480454704185 0.028442081168339742 280 -64436 Inpp5e inositol polyphosphate-5-phosphatase E Novel U 0.4779717290055457 4.68683335788528 0.028953442292685126 281 -76742 Snx27 sorting nexin family member 27 Novel U 0.47674293709304444 4.67410557164995 0.03080802714238529 282 -668218 Bin2 bridging integrator 2 Novel U 0.4739974943900958 4.645668366384376 0.03537226872565417 283 -67903 Gipc1 GIPC PDZ domain containing family, member 1 Novel U 0.47068873032207453 4.611396296937571 0.041737201590687834 284 -14997 H2-M9 histocompatibility 2, M region locus 9 Novel U 0.47052491457347767 4.609699498798757 0.042079284880230015 285 -27059 Sh3d19 SH3 domain protein D19 Novel U 0.4704786302801331 4.609220087609808 0.04217642248017062 286 -19325 Rab10 RAB10, member RAS oncogene family Novel U 0.46859746368695865 4.589735025877728 0.04631147278735392 287 -74143 Opa1 OPA1, mitochondrial dynamin like GTPase Novel U 0.4671442620832397 4.574682811437836 0.04976889769476801 288 -67074 Mon2 MON2 homolog, regulator of endosome to Golgi trafficking Novel U 0.46639639566451796 4.5669364356575 0.05164323280302729 289 -20400 Sh2d1a SH2 domain containing 1A Novel U 0.4655326374506068 4.557989656472331 0.05389216299499772 290 -53330 Vamp4 vesicle-associated membrane protein 4 Novel U 0.46546865649184593 4.557326943804746 0.054062426412464434 291 -18759 Prkci protein kinase C, iota Known P 0.4633083966633435 4.534951043515835 0.060123181187316015 292 -107371 Exoc6 exocyst complex component 6 Novel U 0.4627250729935442 4.528908996119786 0.06186809866101803 293 -56044 Rala v-ral simian leukemia viral oncogene A (ras related) Novel U 0.46096575289557884 4.510686016379593 0.06742920429776027 294 -15018 H2-Q7 histocompatibility 2, Q region locus 7 Novel U 0.46043665205338213 4.505205607249374 0.06919313678199754 295 -12282 Hyou1 hypoxia up-regulated 1 Novel U 0.45753378290281704 4.475137784014503 0.07968380184177856 296 -399549 H2-M10.6 histocompatibility 2, M region locus 10.6 Novel U 0.45625677590718466 4.461910587533087 0.08476571900876963 297 -243621 Iqsec3 IQ motif and Sec7 domain 3 Known P 0.455177151180468 4.450727870104506 0.08930244994285373 298 -19744 Rheb Ras homolog enriched in brain Novel U 0.4550152011609387 4.449050397126042 0.09000268689514751 299 -19062 Inpp5k inositol polyphosphate 5-phosphatase K Novel U 0.45412300947809414 4.43980910500436 0.0939553913071928 300 -12765 Cxcr2 C-X-C motif chemokine receptor 2 Novel U 0.4532691189480517 4.430964534964319 0.0978933635145902 301 -11555 Adrb2 adrenergic receptor, beta 2 Known P 0.4531163421112473 4.429382077510967 0.09861436984453739 302 -21462 Tcp10b t-complex protein 10b Novel U 0.45194614327653465 4.417261196449228 0.10430764473443935 303 -74053 Grip1 glutamate receptor interacting protein 1 Novel U 0.45127726383686345 4.410332965201341 0.10770150720313873 304 -319262 Fchsd1 FCH and double SH3 domains 1 Novel U 0.4503094212866279 4.400308083882111 0.11279952713293426 305 -225870 Rin1 Ras and Rab interactor 1 Novel U 0.4498393247612197 4.395438839525524 0.115358077552228 306 -209773 Dennd2a DENN domain containing 2A Novel U 0.4490117124805705 4.386866458728847 0.11999764041143561 307 -211914 Asap2 ArfGAP with SH3 domain, ankyrin repeat and PH domain 2 Known P 0.4477257151488682 4.3735461406419605 0.12756202385792853 308 -17356 Afdn afadin, adherens junction formation factor Novel U 0.4462275610977871 4.358028310230024 0.13694832523803765 309 -224753 H2-M10.4 histocompatibility 2, M region locus 10.4 Novel U 0.4426999155054016 4.321489073149197 0.16172134622407075 310 -12874 Cpd carboxypeptidase D Novel U 0.44262904077842735 4.320754955057079 0.16226036587988646 311 -94190 Ophn1 oligophrenin 1 Novel U 0.4420428710209618 4.314683427978543 0.16678445930250096 312 -73178 Wasl WASP like actin nucleation promoting factor Novel U 0.4407727799219159 4.301527866126621 0.17700310008635764 313 -107568 Wwp1 WW domain containing E3 ubiquitin protein ligase 1 Known P 0.4401193996281822 4.294760174522848 0.1824896622451094 314 -100041566 Gm3409 predicted gene 3409 Novel U 0.439364722581865 4.286943254485766 0.1890285049792537 315 -13429 Dnm1 dynamin 1 Known P 0.4385594257251033 4.278602016116137 0.19625186852372586 316 -54721 Tyk2 tyrosine kinase 2 Novel U 0.43821221703509233 4.275005639918874 0.19944671814608134 317 -74002 Psd2 pleckstrin and Sec7 domain containing 2 Known P 0.4381985300117462 4.274863870180991 0.199573669005593 318 -99889 Arfip1 ADP-ribosylation factor interacting protein 1 Novel U 0.43492131010042023 4.240918534072279 0.23229032919927656 319 -67296 Socs4 suppressor of cytokine signaling 4 Novel U 0.4349140818924272 4.240843664531501 0.23236783403758962 320 -104831 Ptpn23 protein tyrosine phosphatase, non-receptor type 23 Novel U 0.43402325945578385 4.231616555016959 0.24211047908479888 321 -67489 Ap4b1 adaptor-related protein complex AP-4, beta 1 Novel U 0.43218423275435064 4.21256797689826 0.2634667356706579 322 -74568 Mlkl mixed lineage kinase domain-like Novel U 0.430543428624619 4.19557258166103 0.28402306961766 323 -56792 Stap1 signal transducing adaptor family member 1 Novel N 0.4290446908669911 4.18004870523587 0.3041245965729077 324 -215632 Psd4 pleckstrin and Sec7 domain containing 4 Known P 0.4260391092392831 4.148916989539245 0.3485831655379731 325 -22134 Tgoln1 trans-golgi network protein Novel U 0.4241767352114562 4.129626580581262 0.37915876147587485 326 -12703 Socs1 suppressor of cytokine signaling 1 Novel U 0.4224892695363206 4.112147866590653 0.4090468772402589 327 -67474 Snap29 synaptosomal-associated protein 29 Novel U 0.4223881628952106 4.111100607325738 0.41090688337961284 328 -105504 Exoc5 exocyst complex component 5 Novel U 0.4222033370132056 4.109186186915753 0.41432779626260535 329 -24071 Synj2bp synaptojanin 2 binding protein Novel U 0.419773723930459 4.084020334473892 0.461886021722215 330 -15015 H2-Q4 histocompatibility 2, Q region locus 4 Novel U 0.419559377396848 4.0818001401250115 0.46632156195231905 331 -20418 Shc3 src homology 2 domain-containing transforming protein C3 Novel U 0.41885668302013024 4.074521654870803 0.4811476537606813 332 -15040 H2-T23 histocompatibility 2, T region locus 23 Novel U 0.4183767466774515 4.069550490010394 0.491529521669249 333 -21461 Tcp10a t-complex protein 10a Novel U 0.4162917860239824 4.04795453610115 0.5391470116428888 334 -219024 Pip4p1 phosphatidylinositol-4,5-bisphosphate 4-phosphatase 1 Novel U 0.41272149514119827 4.010973580504262 0.6309927348991328 335 -16151 Ikbkg inhibitor of kappaB kinase gamma Novel U 0.4105514775155411 3.9884966092731924 0.6938581405386741 336 -69780 Smap2 small ArfGAP 2 Known P 0.4082811339240831 3.964980464986396 0.7659494331557046 337 -69440 Dennd6b DENN domain containing 6B Novel U 0.4076603834704496 3.9585507521937315 0.7868607666060949 338 -21802 Tgfa transforming growth factor alpha Novel U 0.4056245585559463 3.9374637446534457 0.8592947940320665 339 -271849 Shc4 SHC (Src homology 2 domain containing) family, member 4 Novel U 0.40507464809093113 3.9317677901341512 0.8799156834984243 340 -69596 Ap5s1 adaptor-related protein 5 complex, sigma 1 subunit Novel U 0.40430659017268833 3.923812271465536 0.909500643087388 341 -67064 Chmp1b charged multivesicular body protein 1B Known P 0.40333913525087045 3.913791405188714 0.9481046145674015 342 -17246 Mdm2 transformed mouse 3T3 cell double minute 2 Known P 0.4027477894330612 3.907666264647293 0.9724575770021501 343 -67384 Bag4 BCL2-associated athanogene 4 Novel U 0.40093290195489656 3.8888677198096753 1.0 344 -13639 Efna4 ephrin A4 Novel N 0.4009283928951729 3.888821015117285 1.0 345 -58244 Stx6 syntaxin 6 Novel U 0.39964583701489237 3.8755363434710923 1.0 346 -67826 Snap47 synaptosomal-associated protein, 47 Novel U 0.39786999401650863 3.8571422200715277 1.0 347 -212285 Arap2 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 2 Known P 0.397799415805491 3.856411173281941 1.0 348 -68299 Vps53 VPS53 GARP complex subunit Novel U 0.39755188005205855 3.853847206085187 1.0 349 -55988 Snx12 sorting nexin 12 Novel U 0.3973241076943874 3.8514879474920423 1.0 350 -19707 Reps1 RalBP1 associated Eps domain containing protein Novel N 0.396649290337969 3.844498211497686 1.0 351 -23969 Pacsin1 protein kinase C and casein kinase substrate in neurons 1 Novel U 0.3961955392809914 3.8397982729657745 1.0 352 -234779 Plcg2 phospholipase C, gamma 2 Novel U 0.39481463800242794 3.8254949429170986 1.0 353 -14924 Magi1 membrane associated guanylate kinase, WW and PDZ domain containing 1 Novel U 0.39479238065154576 3.8252644020083317 1.0 354 -19713 Ret ret proto-oncogene Known P 0.3942849702130044 3.82000866136614 1.0 355 -14972 H2-K1 histocompatibility 2, K1, K region Novel U 0.3934556200987853 3.811418280146475 1.0 356 -216549 Aftph aftiphilin Novel U 0.39329382629772236 3.80974242527375 1.0 357 -19200 Pstpip1 proline-serine-threonine phosphatase-interacting protein 1 Novel U 0.3927777535171466 3.804396960377525 1.0 358 -54198 Snx3 sorting nexin 3 Novel U 0.39219134913695586 3.7983230030845148 1.0 359 -347722 Agap1 ArfGAP with GTPase domain, ankyrin repeat and PH domain 1 Known P 0.3905065235469774 3.780871635009176 1.0 360 -99470 Magi3 membrane associated guanylate kinase, WW and PDZ domain containing 3 Novel U 0.3889929345865264 3.765193930313381 1.0 361 -18719 Pip5k1b phosphatidylinositol-4-phosphate 5-kinase, type 1 beta Known P 0.3885039894302795 3.7601294524581816 1.0 362 -117150 Pip4k2c phosphatidylinositol-5-phosphate 4-kinase, type II, gamma Novel U 0.3875261261450279 3.7500007766950696 1.0 363 -26563 Ror1 receptor tyrosine kinase-like orphan receptor 1 Novel U 0.38467648315146924 3.720484268244756 1.0 364 -231580 Gak cyclin G associated kinase Novel U 0.381169703638155 3.6841611613250143 1.0 365 -12521 Cd82 CD82 antigen Novel U 0.3787534939818393 3.6591341411335097 1.0 366 -259000 Or5k3 olfactory receptor family 5 subfamily K member 3 Novel U 0.37805582190551346 3.651907676701661 1.0 367 -16452 Jak2 Janus kinase 2 Novel U 0.37788577738680745 3.6501463611668163 1.0 368 -110557 H2-Q6 histocompatibility 2, Q region locus 6 Novel U 0.37735178222301735 3.644615256814424 1.0 369 -27008 Micall1 microtubule associated monooxygenase, calponin and LIM domain containing -like 1 Novel U 0.3766952319043087 3.637814730196169 1.0 370 -20416 Shc1 src homology 2 domain-containing transforming protein C1 Novel U 0.37652771330133644 3.63607957801346 1.0 371 -18803 Plcg1 phospholipase C, gamma 1 Novel U 0.37633109043285384 3.634042964805346 1.0 372 -11778 Ap3s2 adaptor-related protein complex 3, sigma 2 subunit Novel U 0.3758747408566564 3.629316110896777 1.0 373 -76658 1700123K08Rik RIKEN cDNA 1700123K08 gene Novel U 0.3748171644792811 3.618361769545874 1.0 374 -333715 H2-M10.2 histocompatibility 2, M region locus 10.2 Novel U 0.37384253478152 3.6082665871756903 1.0 375 -209131 Snx30 sorting nexin family member 30 Novel U 0.37364395682488627 3.6062097232287766 1.0 376 -14269 Fnbp1 formin binding protein 1 Novel U 0.3735917902186008 3.6056693832357563 1.0 377 -13867 Erbb3 erb-b2 receptor tyrosine kinase 3 Known P 0.37257535087929927 3.5951411379729143 1.0 378 -106393 Srl sarcalumenin Novel U 0.37217377085954867 3.59098158532957 1.0 379 -100041578 Gm3415 predicted gene 3415 Novel U 0.3705856378850576 3.574531756186851 1.0 380 -18596 Pdgfrb platelet derived growth factor receptor, beta polypeptide Novel U 0.3695698379914381 3.5640101342813626 1.0 381 -17973 Nck1 non-catalytic region of tyrosine kinase adaptor protein 1 Novel U 0.36915636950303377 3.559727441270515 1.0 382 -13132 Dab2 disabled 2, mitogen-responsive phosphoprotein Known P 0.3676331545944208 3.5439500313200947 1.0 383 -67839 Gpsm1 G-protein signalling modulator 1 (AGS3-like, C. elegans) Novel U 0.3675826000849676 3.5434263893730686 1.0 384 -14255 Flt3 FMS-like tyrosine kinase 3 Novel U 0.3673377818767159 3.540890570419962 1.0 385 -105513 Chmp7 charged multivesicular body protein 7 Novel U 0.3666049675022874 3.5333001032196067 1.0 386 -15006 H2-Q1 histocompatibility 2, Q region locus 1 Novel U 0.3663957478216342 3.5311330126451272 1.0 387 -227801 Dennd1a DENN domain containing 1A Novel U 0.36614357760609945 3.528521041842268 1.0 388 -21336 Tacr1 tachykinin receptor 1 Novel U 0.36410151571156374 3.5073694318678355 1.0 389 -53376 Usp2 ubiquitin specific peptidase 2 Novel U 0.36223456139217874 3.488031580400463 1.0 390 -19766 Ripk1 receptor (TNFRSF)-interacting serine-threonine kinase 1 Novel U 0.36196390076651436 3.48522808653732 1.0 391 -13649 Egfr epidermal growth factor receptor Known P 0.3604453844117136 3.46949934405283 1.0 392 -50884 Nckap1 NCK-associated protein 1 Novel U 0.36014118042747445 3.4663484091842482 1.0 393 -17274 Rab8a RAB8A, member RAS oncogene family Novel U 0.3598757436758037 3.463599024036206 1.0 394 -245860 Atg9a autophagy related 9A Novel U 0.3586810910202653 3.4512248511022294 1.0 395 -56041 Uso1 USO1 vesicle docking factor Novel U 0.35626557524192715 3.426205018076007 1.0 396 -108011 Ap4e1 adaptor-related protein complex AP-4, epsilon 1 Novel U 0.35615441943783804 3.425053669911302 1.0 397 -83813 Tnk1 tyrosine kinase, non-receptor, 1 Novel U 0.3558055716940878 3.4214403164492886 1.0 398 -231123 Haus3 HAUS augmin-like complex, subunit 3 Novel U 0.35476200042384065 3.4106310395376265 1.0 399 -15013 H2-Q2 histocompatibility 2, Q region locus 2 Novel U 0.3546802896766511 3.409784682304333 1.0 400 -18798 Plcb4 phospholipase C, beta 4 Novel U 0.3502278989046258 3.3636669650521576 1.0 401 -20403 Itsn2 intersectin 2 Novel U 0.34987248010592187 3.359985548818946 1.0 402 -269608 Plekhg5 pleckstrin homology domain containing, family G (with RhoGef domain) member 5 Novel U 0.34857964768313343 3.3465944330832795 1.0 403 -245944 Vps54 VPS54 GARP complex subunit Novel U 0.3477079816401142 3.337565744864164 1.0 404 -64143 Ralb v-ral simian leukemia viral oncogene B Novel U 0.3473118032798839 3.3334621424325612 1.0 405 -228355 Madd MAP-kinase activating death domain Novel U 0.3458068921836445 3.3178743227690006 1.0 406 -110157 Raf1 v-raf-leukemia viral oncogene 1 Novel U 0.3422969728326132 3.2815186935134015 1.0 407 -74998 Rab11fip2 RAB11 family interacting protein 2 (class I) Known P 0.3408295667463414 3.2663193495101748 1.0 408 -12488 Cd2ap CD2-associated protein Novel U 0.3389715019951231 3.247073575897644 1.0 409 -22031 Traf3 TNF receptor-associated factor 3 Novel U 0.3388394438649527 3.245705722126516 1.0 410 -104215 Rhoq ras homolog family member Q Novel U 0.33650371687408615 3.2215123387380094 1.0 411 -68767 Washc1 WASH complex subunit 1 Novel U 0.33501096529955765 3.206050467000608 1.0 412 -16797 Lat linker for activation of T cells Novel U 0.33466389126912605 3.2024554856028415 1.0 413 -234729 Vac14 Vac14 homolog (S. cerevisiae) Novel U 0.3330244277250668 3.1854739761079367 1.0 414 -215445 Rab11fip3 RAB11 family interacting protein 3 (class II) Known P 0.33266971741532336 3.1817998983800875 1.0 415 -170749 Mtmr4 myotubularin related protein 4 Novel U 0.3322667634337576 3.177626114285428 1.0 416 -72433 Rab38 RAB38, member RAS oncogene family Novel U 0.33193642074308793 3.1742044355549024 1.0 417 -24013 Grk1 G protein-coupled receptor kinase 1 Known P 0.33171891750728527 3.171951544188492 1.0 418 -277360 Prex1 phosphatidylinositol-3,4,5-trisphosphate-dependent Rac exchange factor 1 Novel U 0.33144735459439173 3.1691387044638906 1.0 419 -98952 Eeig1 estrogen-induced osteoclastogenesis regulator 1 Novel U 0.33124686171668916 3.167062005827496 1.0 420 -14251 Flot1 flotillin 1 Novel U 0.3301581127184416 3.1557847794943426 1.0 421 -24044 Scamp2 secretory carrier membrane protein 2 Novel U 0.32922804366501757 3.14615115481335 1.0 422 -66482 Exoc2 exocyst complex component 2 Novel U 0.3288117491109804 3.141839189507579 1.0 423 -110355 Grk2 G protein-coupled receptor kinase 2 Known P 0.3287415882490351 3.1411124656059637 1.0 424 -211484 Tsga10 testis specific 10 Novel N 0.3277067147762959 3.1303932801949643 1.0 425 -50497 Hspa14 heat shock protein 14 Novel U 0.3266792003958577 3.119750320020101 1.0 426 -110279 Bcr BCR activator of RhoGEF and GTPase Novel U 0.3266380409623915 3.1193239919613016 1.0 427 -13448 Dok1 docking protein 1 Novel N 0.3253265736227988 3.105739856369967 1.0 428 -225326 Pik3c3 phosphatidylinositol 3-kinase catalytic subunit type 3 Novel U 0.32431376284283514 3.095249195605464 1.0 429 -218035 Vps41 VPS41 HOPS complex subunit Novel U 0.32412918462717716 3.093337340515361 1.0 430 -71982 Snx10 sorting nexin 10 Novel U 0.3231534491525986 3.083230704545252 1.0 431 -100763 Ube3c ubiquitin protein ligase E3C Novel U 0.3219320601466161 3.070579597372286 1.0 432 -11842 Arf3 ADP-ribosylation factor 3 Novel N 0.32160202399952115 3.0671610938100304 1.0 433 -235442 Rab8b RAB8B, member RAS oncogene family Novel U 0.3215687704690793 3.0668166548348643 1.0 434 -16456 F11r F11 receptor Novel U 0.3213339851247069 3.0643847559560076 1.0 435 -51897 Atg13 autophagy related 13 Novel U 0.3205760471985631 3.0565340598328774 1.0 436 -71520 Grap GRB2-related adaptor protein Novel U 0.31951643037082705 3.0455585835642145 1.0 437 -20849 Stat4 signal transducer and activator of transcription 4 Novel U 0.3183915798939616 3.0339074193023094 1.0 438 -19346 Rab6a RAB6A, member RAS oncogene family Novel U 0.31671869701410216 3.0165797534257877 1.0 439 -108800 Ston2 stonin 2 Novel U 0.3162414674242378 3.0116366250220503 1.0 440 -16880 Lifr LIF receptor alpha Novel U 0.31469105528004065 2.9955775069995103 1.0 441 -110920 Hspa13 heat shock protein 70 family, member 13 Novel U 0.3141559992132569 2.9900354138487844 1.0 442 -14784 Grb2 growth factor receptor bound protein 2 Novel U 0.31103462081652317 2.957704279025204 1.0 443 -56468 Socs5 suppressor of cytokine signaling 5 Novel U 0.3106711175775107 2.9539391244250384 1.0 444 -75914 Exoc6b exocyst complex component 6B Novel N 0.3106658766585753 2.9538848391589916 1.0 445 -15064 Mr1 major histocompatibility complex, class I-related Novel U 0.30953660127335847 2.942187841841844 1.0 446 -16332 Inppl1 inositol polyphosphate phosphatase-like 1 Novel U 0.30935747479503267 2.940332455667811 1.0 447 -70497 Arhgap17 Rho GTPase activating protein 17 Novel U 0.3089222607521567 2.9358245229185926 1.0 448 -14964 H2-D1 histocompatibility 2, D region locus 1 Novel U 0.3042041582401019 2.886954572197994 1.0 449 -21682 Tec tec protein tyrosine kinase Novel U 0.3038774536542487 2.8835705768375615 1.0 450 -14366 Fzd4 frizzled class receptor 4 Novel U 0.30335230339147523 2.8781310876791393 1.0 451 -57775 Usp29 ubiquitin specific peptidase 29 Novel U 0.3029598797578601 2.8740663765823857 1.0 452 -57257 Vav3 vav 3 oncogene Novel U 0.3027885760236325 2.8722920181345635 1.0 453 -20661 Sort1 sortilin 1 Novel U 0.30173732355490673 2.861403179621565 1.0 454 -16558 Kif16b kinesin family member 16B Novel U 0.2984062262649758 2.826899783396385 1.0 455 -170758 Rac3 Rac family small GTPase 3 Novel U 0.2983262863802346 2.826071768698118 1.0 456 -106628 Trip10 thyroid hormone receptor interactor 10 Novel U 0.29642879769326747 2.806417643255093 1.0 457 -18799 Plcd1 phospholipase C, delta 1 Novel U 0.2960120619981551 2.802101108624567 1.0 458 -100041554 Gm3404 predicted gene 3404 Novel U 0.2937825202118957 2.7790075880947303 1.0 459 -97287 Mtmr14 myotubularin related protein 14 Novel U 0.2927468194956594 2.7682798341227817 1.0 460 -12390 Cav2 caveolin 2 Novel U 0.29248237030744306 2.7655406781245357 1.0 461 -13844 Ephb2 Eph receptor B2 Novel U 0.29236945501302447 2.764371105216838 1.0 462 -68797 Pdgfrl platelet-derived growth factor receptor-like Novel U 0.2916437017530295 2.7568537768076635 1.0 463 -622924 Gm6370 predicted gene 6370 Novel U 0.29161767807650424 2.7565842244216974 1.0 464 -100226 Stx12 syntaxin 12 Novel U 0.29131540853873544 2.753453326486064 1.0 465 -83493 Sacm1l SAC1 suppressor of actin mutations 1-like (yeast) Novel U 0.2910473769101245 2.7506770636879767 1.0 466 -227120 Plcl1 phospholipase C-like 1 Novel U 0.2896953634705121 2.7366729529255194 1.0 467 -12928 Crk v-crk avian sarcoma virus CT10 oncogene homolog Novel U 0.28897649450545776 2.729226931817031 1.0 468 -20459 Ptk6 PTK6 protein tyrosine kinase 6 Novel U 0.28870308397842903 2.726394954565954 1.0 469 -622306 Gm6309 predicted gene 6309 Novel U 0.2883090825539561 2.7223139007633623 1.0 470 -64933 Ap3m2 adaptor-related protein complex 3, mu 2 subunit Novel U 0.28791678973055823 2.718250544594539 1.0 471 -20130 Rras related RAS viral (r-ras) oncogene Novel U 0.2878644586108684 2.7177085005770847 1.0 472 -216148 Shc2 SHC (Src homology 2 domain containing) transforming protein 2 Novel U 0.2876335744329389 2.715317009852 1.0 473 -15002 H2-Ob histocompatibility 2, O region beta locus Novel U 0.28742933090752737 2.7132014621299314 1.0 474 -224860 Plcl2 phospholipase C-like 2 Novel U 0.2857881313359455 2.6962019709190157 1.0 475 -269587 Epb41 erythrocyte membrane protein band 4.1 Novel U 0.28267204129138956 2.663925612673448 1.0 476 -224020 Pi4ka phosphatidylinositol 4-kinase alpha Novel U 0.282524088221503 2.662393119639258 1.0 477 -15042 H2-T24 histocompatibility 2, T region locus 24 Novel U 0.28165268875436555 2.6533671926043625 1.0 478 -18762 Prkcz protein kinase C, zeta Known P 0.2804935217368317 2.64136057874231 1.0 479 -76688 Arfrp1 ADP-ribosylation factor related protein 1 Novel U 0.27987830535198177 2.634988187652184 1.0 480 -14969 H2-Eb1 histocompatibility 2, class II antigen E beta Novel U 0.27979105613543437 2.6340844631353493 1.0 481 -116701 Fgfrl1 fibroblast growth factor receptor-like 1 Novel U 0.2797140228730027 2.6332865551354137 1.0 482 -100041352 Tcp10c t-complex protein 10c Novel U 0.2789454165342861 2.62532535594556 1.0 483 -16800 Arhgef2 Rho/Rac guanine nucleotide exchange factor 2 Novel U 0.278224378139698 2.617856863957277 1.0 484 -53332 Mtmr1 myotubularin related protein 1 Novel U 0.2778759813620051 2.6142481815868606 1.0 485 -213990 Agap3 ArfGAP with GTPase domain, ankyrin repeat and PH domain 3 Novel U 0.27785242341906163 2.614004169188278 1.0 486 -16451 Jak1 Janus kinase 1 Novel U 0.2774836752516486 2.6101846877921564 1.0 487 -14254 Flt1 FMS-like tyrosine kinase 1 Known P 0.2767487477718155 2.6025723331154853 1.0 488 -67166 Arl8b ADP-ribosylation factor-like 8B Novel U 0.27597622064855754 2.5945705225682403 1.0 489 -17179 Matk megakaryocyte-associated tyrosine kinase Novel N 0.2756302728572217 2.5909872067180046 1.0 490 -12929 Crkl v-crk avian sarcoma virus CT10 oncogene homolog-like Novel U 0.2754649295433136 2.589274586107913 1.0 491 -13836 Epha2 Eph receptor A2 Novel U 0.27520555144344283 2.5865879562760474 1.0 492 -20336 Exoc4 exocyst complex component 4 Novel U 0.2749612219411735 2.584057199323442 1.0 493 -213827 Arcn1 archain 1 Novel U 0.2737449055601865 2.571458634233425 1.0 494 -101540 Prkd2 protein kinase D2 Novel U 0.2731879302243504 2.565689502014413 1.0 495 -72108 Ddhd2 DDHD domain containing 2 Novel N 0.27172740390872324 2.5505614184493632 1.0 496 -214459 Fnbp1l formin binding protein 1-like Novel U 0.27168855332732444 2.5501590054043786 1.0 497 -104418 Dgkz diacylglycerol kinase zeta Novel U 0.26978118676308166 2.53040256523325 1.0 498 -18718 Pip4k2a phosphatidylinositol-5-phosphate 4-kinase, type II, alpha Novel U 0.26947111009300845 2.527190801277853 1.0 499 -65113 Ndfip1 Nedd4 family interacting protein 1 Novel U 0.26886100553323317 2.5208713583038076 1.0 500 -69217 Plekha4 pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 4 Novel U 0.2681977782545872 2.514001671954015 1.0 501 -210535 Timd5 T cell immunoglobulin and mucin domain containing 5 Novel U 0.26812939399399793 2.513293350030843 1.0 502 -75788 Smurf1 SMAD specific E3 ubiquitin protein ligase 1 Known P 0.26735701849546406 2.5052931100075058 1.0 503 -14579 Gem GTP binding protein overexpressed in skeletal muscle Novel U 0.26684996732971594 2.500041090701096 1.0 504 -320435 Rinl Ras and Rab interactor-like Novel U 0.2667144706094233 2.49863762012652 1.0 505 -16553 Kif13a kinesin family member 13A Novel U 0.2666745578178023 2.498224204742972 1.0 506 -16818 Lck lymphocyte protein tyrosine kinase Novel U 0.2665914952646355 2.497363845547804 1.0 507 -14533 Bloc1s1 biogenesis of lysosomal organelles complex-1, subunit 1 Novel U 0.26465549330357135 2.477310800877738 1.0 508 -15482 Hspa1l heat shock protein 1-like Known P 0.26446094258841996 2.4752956509657102 1.0 509 -74107 Cep55 centrosomal protein 55 Novel U 0.2644233979576264 2.4749067649141643 1.0 510 -193740 Hspa1a heat shock protein 1A Novel U 0.26386828743214946 2.469156948339549 1.0 511 -20619 Snap23 synaptosomal-associated protein 23 Novel U 0.2624812169553032 2.454789717937861 1.0 512 -20333 Sec22b SEC22 homolog B, vesicle trafficking protein Novel U 0.26133963832873325 2.4429652840512257 1.0 513 -242681 Rab42 RAB42, member RAS oncogene family Novel U 0.26074335034256096 2.436788952692365 1.0 514 -29875 Iqgap1 IQ motif containing GTPase activating protein 1 Novel U 0.2606797135446206 2.4361298048312454 1.0 515 -16783 Lamp1 lysosomal-associated membrane protein 1 Novel U 0.26045941843198556 2.4338479952963836 1.0 516 -20779 Src Rous sarcoma oncogene Known P 0.25838241824505714 2.4123344956378823 1.0 517 -11836 Araf Araf proto-oncogene, serine/threonine kinase Novel U 0.25838019311961624 2.4123114478617125 1.0 518 -12389 Cav1 caveolin 1, caveolae protein Novel U 0.2579253952548321 2.4076006665289524 1.0 519 -20912 Stxbp3 syntaxin binding protein 3 Novel U 0.25712466416044344 2.3993067201758915 1.0 520 -18705 Pik3c2g phosphatidylinositol-4-phosphate 3-kinase catalytic subunit type 2 gamma Novel U 0.256769954089432 2.3956326449208203 1.0 521 -216831 Arhgap44 Rho GTPase activating protein 44 Novel U 0.255783330429252 2.385413229482182 1.0 522 -207495 Baiap2l2 BAI1-associated protein 2-like 2 Novel U 0.25558838180798876 2.383393958071728 1.0 523 -12520 Cd81 CD81 antigen Novel U 0.25435688010804647 2.3706381039471633 1.0 524 -74451 Pgs1 phosphatidylglycerophosphate synthase 1 Novel U 0.2542003546235244 2.369016818123982 1.0 525 -94212 Pag1 phosphoprotein associated with glycosphingolipid microdomains 1 Novel N 0.2541055500179463 2.368034835135938 1.0 526 -103967 Dnm3 dynamin 3 Known P 0.25346395708784725 2.361389236657203 1.0 527 -27054 Sec23b SEC23 homolog B, COPII coat complex component Novel U 0.25268071629528704 2.3532764542755187 1.0 528 -19349 Rab7 RAB7, member RAS oncogene family Novel U 0.2526243683257597 2.352692803859494 1.0 529 -329877 Dennd4c DENN domain containing 4C Novel U 0.25227945887200237 2.349120243075763 1.0 530 -12978 Csf1r colony stimulating factor 1 receptor Known P 0.25224145260946673 2.3487265754578073 1.0 531 -21872 Tjp1 tight junction protein 1 Novel U 0.25182975972485616 2.344462274092686 1.0 532 -241035 Pkhd1 polycystic kidney and hepatic disease 1 Novel U 0.25113100792059584 2.3372246258743856 1.0 533 -18797 Plcb3 phospholipase C, beta 3 Novel U 0.2503568087597077 2.329205496416333 1.0 534 -16924 Lnx1 ligand of numb-protein X 1 Novel U 0.2499685059347366 2.32518346852005 1.0 535 -19285 Cavin1 caveolae associated 1 Novel U 0.24866131467111452 2.3116436243830503 1.0 536 -110379 Sec13 SEC13 homolog, nuclear pore and COPII coat complex component Novel U 0.2480521702272455 2.305334126258 1.0 537 -26362 Axl AXL receptor tyrosine kinase Novel U 0.24745905483613978 2.2991906565345452 1.0 538 -16971 Lrp1 low density lipoprotein receptor-related protein 1 Novel U 0.24736528740527616 2.298219416568098 1.0 539 -78610 Uvrag UV radiation resistance associated gene Novel U 0.24633121398226004 2.2875085180458297 1.0 540 -17772 Mtm1 X-linked myotubular myopathy gene 1 Novel U 0.24623812627865668 2.2865443186719996 1.0 541 -232227 Iqsec1 IQ motif and Sec7 domain 1 Known P 0.24598972083342077 2.283971343236135 1.0 542 -327826 Frs2 fibroblast growth factor receptor substrate 2 Novel U 0.2453238265675497 2.2770740323203373 1.0 543 -13637 Efna2 ephrin A2 Novel N 0.24361070760730516 2.2593296024458764 1.0 544 -12662 Chm CHM Rab escort protein Novel U 0.2434887222022403 2.258066081630269 1.0 545 -54390 Sit1 suppression inducing transmembrane adaptor 1 Novel N 0.2429297066798071 2.2522758172255513 1.0 546 -639545 Exoc1l exocyst complex component 1 like Novel U 0.24282035200024737 2.251143125049513 1.0 547 -21985 Tpd52 tumor protein D52 Novel U 0.24232447120926429 2.246006808117713 1.0 548 -11652 Akt2 thymoma viral proto-oncogene 2 Novel U 0.24226402135424194 2.2453806705065738 1.0 549 -94253 Hecw1 HECT, C2 and WW domain containing E3 ubiquitin protein ligase 1 Novel N 0.24221652322714948 2.244888686467567 1.0 550 -76108 Rap2a RAS related protein 2a Novel U 0.2420508499244239 2.2431726478441516 1.0 551 -56349 Net1 neuroepithelial cell transforming gene 1 Novel U 0.2418142744355589 2.240722206707488 1.0 552 -98710 Rabif RAB interacting factor Novel U 0.24163291045091112 2.2388436445165265 1.0 553 -58205 Pdcd1lg2 programmed cell death 1 ligand 2 Novel U 0.24074436425426357 2.2296401122210336 1.0 554 -67727 Stx17 syntaxin 17 Novel U 0.24063833469053553 2.228541861485473 1.0 555 -16443 Itsn1 intersectin 1 (SH3 domain protein 1A) Novel U 0.24062584695711828 2.228412513953249 1.0 556 -21846 Tie1 tyrosine kinase with immunoglobulin-like and EGF-like domains 1 Novel N 0.24061409674536036 2.228290805646128 1.0 557 -12778 Ackr3 atypical chemokine receptor 3 Novel U 0.2398828689701953 2.2207167723887866 1.0 558 -329727 Dennd2c DENN domain containing 2C Novel U 0.23812001459362156 2.202457184706952 1.0 559 -12503 Cd247 CD247 antigen Novel U 0.2377617194551029 2.198745975440494 1.0 560 -269180 Inpp4a inositol polyphosphate-4-phosphatase, type I Novel U 0.2375205541715392 2.1962479933612222 1.0 561 -17974 Nck2 non-catalytic region of tyrosine kinase adaptor protein 2 Novel U 0.23626420469010895 2.1832347667328325 1.0 562 -170731 Mfn2 mitofusin 2 Novel U 0.23574596295800967 2.1778668359080275 1.0 563 -67138 Herc6 hect domain and RLD 6 Novel U 0.2357102370089781 2.1774967877023856 1.0 564 -21873 Tjp2 tight junction protein 2 Novel U 0.235575546157766 2.176101664293254 1.0 565 -667977 H2-T26 histocompatibility 2, T region locus 26 Novel U 0.2341376048520344 2.16120751551826 1.0 566 -226098 Hectd2 HECT domain E3 ubiquitin protein ligase 2 Novel U 0.2329917900041545 2.149339202990554 1.0 567 -140570 Plxnb2 plexin B2 Novel U 0.2327479933985711 2.146813965764303 1.0 568 -229593 Golph3l golgi phosphoprotein 3-like Novel U 0.23155634895852875 2.134470951827545 1.0 569 -16554 Kif13b kinesin family member 13B Novel U 0.23135080302170646 2.1323419137708988 1.0 570 -29810 Bag3 BCL2-associated athanogene 3 Novel U 0.23033984546602557 2.1218704486425954 1.0 571 -70231 Gorasp2 golgi reassembly stacking protein 2 Novel U 0.22982577965190015 2.116545771838888 1.0 572 -72630 Hspa12b heat shock protein 12B Novel U 0.22963824924533396 2.114603338052405 1.0 573 -15039 H2-T22 histocompatibility 2, T region locus 22 Novel U 0.22825514435109798 2.100277183025033 1.0 574 -67410 4930449I24Rik RIKEN cDNA 4930449I24 gene Novel U 0.2280774855718948 2.0984369992302643 1.0 575 -15505 Hsph1 heat shock 105kDa/110kDa protein 1 Novel U 0.227952906704452 2.0971466154166016 1.0 576 -16179 Irak1 interleukin-1 receptor-associated kinase 1 Novel U 0.22777256642180094 2.095278656697269 1.0 577 -70527 Stambp STAM binding protein Known P 0.22671594567264758 2.084334213712075 1.0 578 -66696 Snx31 sorting nexin 31 Novel U 0.22656723214283886 2.08279384385901 1.0 579 -216233 Socs2 suppressor of cytokine signaling 2 Novel U 0.2245621652614772 2.062025427014889 1.0 580 -56743 Lat2 linker for activation of T cells family, member 2 Novel U 0.2241177985689131 2.057422691421078 1.0 581 -16542 Kdr kinase insert domain protein receptor Known P 0.22353639873338874 2.051400571037207 1.0 582 -19353 Rac1 Rac family small GTPase 1 Novel U 0.22269243413882814 2.04265881351059 1.0 583 -27371 Sh2d2a SH2 domain containing 2A Novel N 0.22167597000248118 2.0321303114007665 1.0 584 -57784 Bin3 bridging integrator 3 Novel N 0.22099169994625714 2.025042664652564 1.0 585 -71162 4933421I07Rik RIKEN cDNA 4933421I07 gene Novel U 0.22075227581707546 2.0225627173931446 1.0 586 -54214 Golga4 golgin A4 Novel U 0.22045275934716949 2.0194603356439322 1.0 587 -18479 Pak1 p21 (RAC1) activated kinase 1 Novel U 0.21950693295756626 2.00966349699279 1.0 588 -320484 Rasal3 RAS protein activator like 3 Novel U 0.21938170765355314 2.008366417410382 1.0 589 -641340 Nrbf2 nuclear receptor binding factor 2 Novel U 0.21863719233849635 2.0006547522516462 1.0 590 -16150 Ikbkb inhibitor of kappaB kinase beta Novel U 0.2186120022954822 2.000393834614184 1.0 591 -22034 Traf6 TNF receptor-associated factor 6 Known P 0.21842826724169964 1.9984907129670686 1.0 592 -56433 Vps29 VPS29 retromer complex component Novel U 0.21782302959661703 1.9922216813354188 1.0 593 -80718 Rab27b RAB27B, member RAS oncogene family Novel U 0.21751911152399 1.9890737079299163 1.0 594 -70349 Copb1 coatomer protein complex, subunit beta 1 Novel N 0.21715813471485268 1.9853347220073454 1.0 595 -227288 Cxcr1 C-X-C motif chemokine receptor 1 Novel U 0.21683924732721133 1.9820316969290144 1.0 596 -12501 Cd3e CD3 antigen, epsilon polypeptide Novel U 0.21680614372635032 1.9816888109195183 1.0 597 -228960 Stx16 syntaxin 16 Novel U 0.21581588399018925 1.9714317331253972 1.0 598 -16185 Il2rb interleukin 2 receptor, beta chain Known P 0.21531498401804958 1.9662434276801741 1.0 599 -66922 Rras2 related RAS viral (r-ras) oncogene 2 Novel U 0.2149715221230783 1.9626858606627633 1.0 600 -17698 Msn moesin Novel U 0.21469883884460542 1.959861416228321 1.0 601 -70356 St13 suppression of tumorigenicity 13 Novel U 0.21465955800181905 1.959454546550028 1.0 602 -19769 Rit1 Ras-like without CAAX 1 Novel U 0.21444415661316626 1.9572234260473016 1.0 603 -14369 Fzd7 frizzled class receptor 7 Novel U 0.2140378303869819 1.9530147123537391 1.0 604 -20338 Sel1l sel-1 suppressor of lin-12-like (C. elegans) Novel U 0.21389753989086188 1.9515615880067296 1.0 605 -53378 Sdcbp syndecan binding protein Novel U 0.21377991401672927 1.9503432230692064 1.0 606 -381644 Cep135 centrosomal protein 135 Novel U 0.21376660036687098 1.950205320721637 1.0 607 -18595 Pdgfra platelet derived growth factor receptor, alpha polypeptide Known P 0.21350216092610338 1.9474662656871444 1.0 608 -12512 Cd63 CD63 antigen Novel U 0.21332111992326974 1.945591048931196 1.0 609 -71228 Dlg5 discs large MAGUK scaffold protein 5 Novel U 0.21272222239507205 1.93938768802182 1.0 610 -22365 Vps45 vacuolar protein sorting 45 Known P 0.2119022823650563 1.9308947761449933 1.0 611 -54399 Bet1l Bet1 golgi vesicular membrane trafficking protein like Novel U 0.21184832738305934 1.9303359122151433 1.0 612 -56795 Arl10 ADP-ribosylation factor-like 10 Novel U 0.21115272945691418 1.923130931762682 1.0 613 -19376 Rab34 RAB34, member RAS oncogene family Novel U 0.21102471690963204 1.9218049820061194 1.0 614 -18545 Pcp2 Purkinje cell protein 2 (L7) Novel U 0.2110184488195797 1.9217400573354095 1.0 615 -58179 Klrc3 killer cell lectin-like receptor subfamily C, member 3 Novel U 0.21013026633620047 1.9125402923699937 1.0 616 -404710 Iqgap3 IQ motif containing GTPase activating protein 3 Novel U 0.21011083698082708 1.912339043745742 1.0 617 -75767 Rab11fip1 RAB11 family interacting protein 1 (class I) Known P 0.20999903931584535 1.9111810472070114 1.0 618 -66673 Sorcs3 sortilin-related VPS10 domain containing receptor 3 Novel U 0.20995025088768415 1.9106756982719508 1.0 619 -108802 Calr4 calreticulin 4 Novel U 0.20990245988434597 1.9101806806304187 1.0 620 -15461 Hras Harvey rat sarcoma virus oncogene Known P 0.2089707584384408 1.900530147681768 1.0 621 -23900 Hcst hematopoietic cell signal transducer Novel U 0.2088587818323127 1.8993702976765259 1.0 622 -171207 Arhgap4 Rho GTPase activating protein 4 Novel U 0.2085492947377583 1.8961646405249715 1.0 623 -12768 Ccr1 C-C motif chemokine receptor 1 Novel U 0.2082502660693597 1.8930673114077368 1.0 624 -12775 Ccr7 C-C motif chemokine receptor 7 Novel U 0.20789421812615674 1.8893793785164863 1.0 625 -11861 Arl4a ADP-ribosylation factor-like 4A Novel U 0.20776331828837902 1.888023522299885 1.0 626 -17295 Met met proto-oncogene Known P 0.20606854425983198 1.8704691086248897 1.0 627 -16369 Irs3 insulin receptor substrate 3 Novel U 0.20602835699522581 1.8700528502591842 1.0 628 -69159 Rhebl1 Ras homolog enriched in brain like 1 Novel U 0.20590332922837812 1.8687578167602423 1.0 629 -97064 Wwtr1 WW domain containing transcription regulator 1 Novel U 0.20526408732266058 1.8621365701147656 1.0 630 -67790 Rab39b RAB39B, member RAS oncogene family Novel U 0.204647682871634 1.8557518730742373 1.0 631 -93737 Pard6g par-6 family cell polarity regulator gamma Known P 0.20421134522497705 1.851232302073992 1.0 632 -69024 Snx15 sorting nexin 15 Novel U 0.20370589381231546 1.8459968529574633 1.0 633 -20908 Stx3 syntaxin 3 Novel U 0.2027049039175884 1.8356286325336508 1.0 634 -76308 Rab1b RAB1B, member RAS oncogene family Novel U 0.20231323314274163 1.831571719523271 1.0 635 -69288 Rhobtb1 Rho-related BTB domain containing 1 Novel U 0.20211662232011143 1.8295352310857 1.0 636 -16801 Arhgef1 Rho guanine nucleotide exchange factor 1 Novel U 0.2016342886425261 1.8245392347091367 1.0 637 -19730 Ralgds ral guanine nucleotide dissociation stimulator Novel U 0.20081343120155237 1.8160368203197657 1.0 638 -277978 Exoc3l exocyst complex component 3-like Novel U 0.2008051902503593 1.8159514608182146 1.0 639 -170822 Usp33 ubiquitin specific peptidase 33 Novel U 0.20078461804973077 1.8157383746403788 1.0 640 -21812 Tgfbr1 transforming growth factor, beta receptor I Novel U 0.2006047705364123 1.8138755200095946 1.0 641 -229285 Spart spartin Novel U 0.199883655602671 1.8064062352312786 1.0 642 -20410 Sorbs3 sorbin and SH3 domain containing 3 Novel U 0.19956774305494676 1.8031340234470166 1.0 643 -53413 Exoc7 exocyst complex component 7 Novel U 0.19951480199074834 1.8025856616443932 1.0 644 -117146 Ube3b ubiquitin protein ligase E3B Novel N 0.1988014042057287 1.7951963108388487 1.0 645 -269275 Acvr1c activin A receptor, type IC Novel U 0.1986375682853978 1.793499303761877 1.0 646 -69581 Rhou ras homolog family member U Novel U 0.19861517423837965 1.7932673469590277 1.0 647 -56480 Tbk1 TANK-binding kinase 1 Novel U 0.19822300210566363 1.7892052409003194 1.0 648 -109294 Prex2 phosphatidylinositol-3,4,5-trisphosphate-dependent Rac exchange factor 2 Novel U 0.1978721290769444 1.785570909603175 1.0 649 -224912 Crb3 crumbs family member 3 Novel U 0.1977257824295748 1.7840550558406079 1.0 650 -14725 Lrp2 low density lipoprotein receptor-related protein 2 Novel U 0.1970802994750841 1.7773691646171021 1.0 651 -74302 Mtmr3 myotubularin related protein 3 Novel U 0.19660620048421132 1.7724584628548066 1.0 652 -20911 Stxbp2 syntaxin binding protein 2 Novel U 0.19645523715382154 1.7708947896412814 1.0 653 -78943 Ern1 endoplasmic reticulum to nucleus signalling 1 Novel U 0.19632812807150357 1.769578197945118 1.0 654 -384185 Arl9 ADP-ribosylation factor-like 9 Novel U 0.19533813304286807 1.7593238619828448 1.0 655 -16641 Klrc1 killer cell lectin-like receptor subfamily C, member 1 Novel U 0.19525250552645415 1.7584369349826825 1.0 656 -72238 Tbc1d5 TBC1 domain family, member 5 Novel U 0.19493070513363372 1.7551037370924667 1.0 657 -76089 Rapgef2 Rap guanine nucleotide exchange factor (GEF) 2 Novel U 0.19492608759947191 1.7550559088254118 1.0 658 -19229 Ptk2b PTK2 protein tyrosine kinase 2 beta Novel U 0.19477063444839282 1.7534457301967816 1.0 659 -50753 Fbxo8 F-box protein 8 Novel U 0.19462627127126603 1.7519504211537862 1.0 660 -213326 Scyl2 SCY1-like 2 (S. cerevisiae) Novel U 0.19381700828895748 1.7435681017861218 1.0 661 -16165 Il13ra2 interleukin 13 receptor, alpha 2 Novel U 0.1932599676961155 1.7377982936371876 1.0 662 -13638 Efna3 ephrin A3 Novel U 0.1932483888006514 1.737678359818606 1.0 663 -22163 Tnfrsf4 tumor necrosis factor receptor superfamily, member 4 Novel N 0.19280147865199151 1.7330492791901668 1.0 664 -20166 Rtkn rhotekin Novel N 0.19272563747499 1.7322637187719294 1.0 665 -22032 Traf4 TNF receptor associated factor 4 Novel U 0.1924636925971745 1.7295505023384905 1.0 666 -18796 Plcb2 phospholipase C, beta 2 Novel U 0.19210737615203713 1.7258597883130298 1.0 667 -210789 Tbc1d4 TBC1 domain family, member 4 Novel N 0.19197620959711864 1.7245011694490524 1.0 668 -16784 Lamp2 lysosomal-associated membrane protein 2 Novel U 0.19186952748657937 1.723396159655072 1.0 669 -12522 Cd83 CD83 antigen Novel N 0.19161846811308403 1.7207956949175396 1.0 670 -109135 Plekha5 pleckstrin homology domain containing, family A member 5 Novel U 0.19150728037872025 1.7196440160200994 1.0 671 -76123 Gpsm2 G-protein signalling modulator 2 (AGS3-like, C. elegans) Novel U 0.19128563288983588 1.717348198616504 1.0 672 -69162 Sec31a SEC31 homolog A, COPII coat complex component Novel U 0.19112321285864145 1.7156658572726629 1.0 673 -23920 Insrr insulin receptor-related receptor Novel U 0.19046409119952182 1.7088386967949591 1.0 674 -68505 Vps51 VPS51 GARP complex subunit Novel U 0.19028446888310038 1.7069781747462314 1.0 675 -239766 Rtp1 receptor transporter protein 1 Novel U 0.18965892157893977 1.7004987763334958 1.0 676 -71602 Myo1e myosin IE Novel U 0.1895309353063485 1.6991730987293177 1.0 677 -20299 Ccl22 C-C motif chemokine ligand 22 Novel U 0.18907634312965738 1.6944644479070636 1.0 678 -218038 Amph amphiphysin Novel U 0.18869946286823916 1.690560734548565 1.0 679 -102058 Exoc8 exocyst complex component 8 Novel U 0.18825568402960977 1.6859640879264852 1.0 680 -243864 Mill2 MHC I like leukocyte 2 Novel U 0.18801824321250868 1.6835046837483985 1.0 681 -15200 Hbegf heparin-binding EGF-like growth factor Novel U 0.1880101634944701 1.6834209942945615 1.0 682 -50791 Magi2 membrane associated guanylate kinase, WW and PDZ domain containing 2 Novel U 0.18724381969390708 1.675483230400525 1.0 683 -22284 Usp9x ubiquitin specific peptidase 9, X chromosome Novel U 0.18689126489258936 1.6718314793580908 1.0 684 -72145 Wdfy3 WD repeat and FYVE domain containing 3 Novel U 0.18686669846921944 1.6715770211524028 1.0 685 -70834 Spag9 sperm associated antigen 9 Novel U 0.18658004720040333 1.6686078967331583 1.0 686 -215280 Wipf1 WAS/WASL interacting protein family, member 1 Novel U 0.18618493647928178 1.6645153528723466 1.0 687 -218639 Arl15 ADP-ribosylation factor-like 15 Novel U 0.18597207909267735 1.6623105830592078 1.0 688 -27277 Golga5 golgin A5 Novel U 0.18593696981748367 1.6619469223409067 1.0 689 -15525 Hspa4 heat shock protein 4 Novel U 0.18481321907923282 1.65030714913542 1.0 690 -27375 Tjp3 tight junction protein 3 Novel U 0.18459639829597418 1.6480613265900264 1.0 691 -22324 Vav1 vav 1 oncogene Novel U 0.18417315546508267 1.6436773912610108 1.0 692 -12776 Ccr8 C-C motif chemokine receptor 8 Novel U 0.1841693950735718 1.6436384412493574 1.0 693 -24045 Scamp3 secretory carrier membrane protein 3 Novel U 0.18399425212540094 1.6418243163497177 1.0 694 -72823 Pard3b par-3 family cell polarity regulator beta Novel U 0.18397541383232305 1.6416291899292925 1.0 695 -140579 Elmo2 engulfment and cell motility 2 Novel U 0.18389766156213713 1.640823834470675 1.0 696 -15512 Hspa2 heat shock protein 2 Known P 0.18382739231364828 1.6400959879048047 1.0 697 -66808 9030624G23Rik RIKEN cDNA 9030624G23 gene Novel U 0.18335379737800434 1.6351905071299995 1.0 698 -14182 Fgfr1 fibroblast growth factor receptor 1 Novel U 0.1823838530848564 1.6251438560267744 1.0 699 -23853 Def6 differentially expressed in FDCP 6 Novel U 0.1823536922424126 1.6248314510122257 1.0 700 -269437 Plch1 phospholipase C, eta 1 Novel U 0.1822015694727102 1.623255768364415 1.0 701 -72469 Plcd3 phospholipase C, delta 3 Novel U 0.18162342690189603 1.617267386621335 1.0 702 -11607 Agtr1a angiotensin II receptor, type 1a Novel U 0.18125858620382246 1.6134883786641807 1.0 703 -226751 Cdc42bpa CDC42 binding protein kinase alpha Novel U 0.18117594731090658 1.6126324077279655 1.0 704 -30941 Usp21 ubiquitin specific peptidase 21 Novel U 0.18040793166810296 1.6046773269469596 1.0 705 -12145 Cxcr5 C-X-C motif chemokine receptor 5 Novel U 0.18039539868184673 1.6045475106873175 1.0 706 -194231 Cnksr1 connector enhancer of kinase suppressor of Ras 1 Novel U 0.1801875297766229 1.602394411400331 1.0 707 -26564 Ror2 receptor tyrosine kinase-like orphan receptor 2 Novel U 0.18001581647035295 1.6006158106187578 1.0 708 -104709 Pik3r6 phosphoinositide-3-kinase regulatory subunit 5 Novel U 0.1798301245783167 1.5986924201053385 1.0 709 -16161 Il12rb1 interleukin 12 receptor, beta 1 Novel U 0.1795120907758813 1.5953982364345107 1.0 710 -28006 Washc2 WASH complex subunit 2 Novel U 0.1793694567139002 1.5939208375093528 1.0 711 -11477 Acvr1 activin A receptor, type 1 Novel U 0.17934559129343391 1.5936736402686964 1.0 712 -14159 Fes feline sarcoma oncogene Novel U 0.17926240871178073 1.5928120378224127 1.0 713 -20963 Syk spleen tyrosine kinase Novel U 0.17886573055274266 1.5887032584911884 1.0 714 -66313 Smurf2 SMAD specific E3 ubiquitin protein ligase 2 Known P 0.17865724010132214 1.5865437212491291 1.0 715 -11350 Abl1 c-abl oncogene 1, non-receptor tyrosine kinase Novel U 0.1785856198817265 1.5858018813689454 1.0 716 -71130 Sh2d6 SH2 domain containing 6 Novel U 0.17846225928457088 1.5845241163588686 1.0 717 -112406 Egln2 egl-9 family hypoxia-inducible factor 2 Novel U 0.1783753607515131 1.5836240242100916 1.0 718 -23921 Sh2b2 SH2B adaptor protein 2 Novel U 0.17829618553331958 1.582803929902788 1.0 719 -19326 Rab11b RAB11B, member RAS oncogene family Known P 0.1778546315463484 1.5782303282210461 1.0 720 -23912 Rhof ras homolog family member F (in filopodia) Novel U 0.1750892393241126 1.5495864864905 1.0 721 -76273 Ndfip2 Nedd4 family interacting protein 2 Novel U 0.17430678055814686 1.5414818043145733 1.0 722 -78757 Rictor RPTOR independent companion of MTOR, complex 2 Novel U 0.17418393602171423 1.5402093846445006 1.0 723 -70737 Cgn cingulin Novel U 0.17415361891338246 1.5398953610330215 1.0 724 -217151 Arl5c ADP-ribosylation factor-like 5C Novel U 0.1736033089076964 1.5341952680845923 1.0 725 -69583 Tnfsf13 tumor necrosis factor (ligand) superfamily, member 13 Novel U 0.17356957174257626 1.5338458196373272 1.0 726 -103724 Tbc1d10a TBC1 domain family, member 10a Novel U 0.1734090758282859 1.532183408233127 1.0 727 -26403 Map3k11 mitogen-activated protein kinase kinase kinase 11 Novel U 0.17269291111733606 1.524765397699755 1.0 728 -73288 Vps50 VPS50 EARP/GARPII complex subunit Novel U 0.17254239000266738 1.523206304942132 1.0 729 -245638 Tbc1d8b TBC1 domain family, member 8B Novel N 0.1725150467330656 1.5229230842544583 1.0 730 -22612 Yes1 YES proto-oncogene 1, Src family tyrosine kinase Novel U 0.17224989834365514 1.5201766859532286 1.0 731 -75423 Arl5a ADP-ribosylation factor-like 5A Novel U 0.17214785930055057 1.5191197688991043 1.0 732 -117600 Srgap1 SLIT-ROBO Rho GTPase activating protein 1 Novel U 0.17192358215655587 1.516796713614321 1.0 733 -16155 Il10rb interleukin 10 receptor, beta Novel U 0.17119737467650104 1.509274680408698 1.0 734 -140887 Lnx2 ligand of numb-protein X 2 Novel U 0.17107874445274238 1.5080459124507644 1.0 735 -66894 Wwp2 WW domain containing E3 ubiquitin protein ligase 2 Novel U 0.1709447665418328 1.5066581736538496 1.0 736 -20187 Ryk receptor-like tyrosine kinase Novel U 0.1706265833868542 1.5033624429942891 1.0 737 -55985 Cxcl13 C-X-C motif chemokine ligand 13 Novel U 0.17040688483280295 1.501086812593627 1.0 738 -245666 Iqsec2 IQ motif and Sec7 domain 2 Known P 0.17037726912126772 1.5007800540271092 1.0 739 -19354 Rac2 Rac family small GTPase 2 Novel U 0.16994098687380935 1.4962610568499417 1.0 740 -66898 Baiap2l1 BAI1-associated protein 2-like 1 Novel U 0.16966425927428205 1.4933947214709677 1.0 741 -17101 Lyst lysosomal trafficking regulator Novel U 0.16961408288632307 1.4928749960939487 1.0 742 -67526 Atg12 autophagy related 12 Novel U 0.16952771450366874 1.4919803952256228 1.0 743 -21939 Cd40 CD40 antigen Novel U 0.16894376467440977 1.485931862090475 1.0 744 -21947 Cd40lg CD40 ligand Novel U 0.16892927391532625 1.4857817672842457 1.0 745 -11781 Ap4m1 adaptor-related protein complex AP-4, mu 1 Novel U 0.16715750656520217 1.4674298593153747 1.0 746 -12493 Cd37 CD37 antigen Novel U 0.16713291977462277 1.4671751901468006 1.0 747 -19324 Rab1a RAB1A, member RAS oncogene family Novel U 0.16694542934419726 1.465233170431869 1.0 748 -55946 Ap3m1 adaptor-related protein complex 3, mu 1 subunit Novel U 0.16637551885588323 1.4593300563287104 1.0 749 -12766 Cxcr3 C-X-C motif chemokine receptor 3 Novel U 0.1659109259511479 1.4545178182941307 1.0 750 -209513 Taar4 trace amine-associated receptor 4 Novel U 0.16579800524497437 1.4533481893316538 1.0 751 -18706 Pik3ca phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit alpha Novel U 0.16572802889247848 1.45262337657285 1.0 752 -244218 Ctf2 cardiotrophin 2 Novel U 0.1655921722172195 1.451216177596565 1.0 753 -12700 Cish cytokine inducible SH2-containing protein Novel U 0.16499002887381686 1.4449791966399967 1.0 754 -212139 Cc2d1a coiled-coil and C2 domain containing 1A Novel N 0.16479682901678708 1.4429780388719853 1.0 755 -19414 Rasa3 RAS p21 protein activator 3 Novel N 0.16460327596743854 1.4409732227495469 1.0 756 -99683 Sec24b SEC24 homolog B, COPII coat complex component Novel U 0.1644253444511652 1.4391302139531712 1.0 757 -73442 Hspa12a heat shock protein 12A Novel U 0.1643256758439706 1.4380978497962784 1.0 758 -66397 Sar1b secretion associated Ras related GTPase 1B Novel U 0.16417262814132635 1.4365125867234616 1.0 759 -16194 Il6ra interleukin 6 receptor, alpha Novel U 0.1640829854429525 1.43558407060055 1.0 760 -14070 F8a factor 8-associated gene A Novel U 0.16371409184210392 1.4317630828096846 1.0 761 -14158 Fer FER tyrosine kinase Novel U 0.16347862046076522 1.429324077982483 1.0 762 -17248 Mdm4 transformed mouse 3T3 cell double minute 4 Novel U 0.16311934913111228 1.4256027573603467 1.0 763 -14360 Fyn Fyn proto-oncogene Novel U 0.16255192530241575 1.4197253999957615 1.0 764 -56297 Arl6 ADP-ribosylation factor-like 6 Novel U 0.16254081502124806 1.4196103200686574 1.0 765 -211922 Dennd6a DENN domain containing 6A Novel U 0.16229129155758468 1.417025764234674 1.0 766 -14672 Gna11 guanine nucleotide binding protein, alpha 11 Novel U 0.161610590919808 1.4099750894054113 1.0 767 -109905 Rap1a RAS-related protein 1a Novel U 0.16111705527586342 1.4048630634295438 1.0 768 -57390 Psors1c2 psoriasis susceptibility 1 candidate 2 (human) Novel U 0.16095104904154206 1.403143576311604 1.0 769 -16184 Il2ra interleukin 2 receptor, alpha chain Known P 0.16065974195544055 1.4001262270899693 1.0 770 -67414 Mfn1 mitofusin 1 Novel U 0.16056061332509985 1.3990994559955785 1.0 771 -55978 Ift20 intraflagellar transport 20 Novel U 0.16053214504580637 1.3988045824945008 1.0 772 -219103 Cenpj centromere protein J Novel U 0.16036128534693153 1.3970348233502652 1.0 773 -22376 Was Wiskott-Aldrich syndrome Novel U 0.16033917868884398 1.3968058433125117 1.0 774 -20910 Stxbp1 syntaxin binding protein 1 Novel U 0.16021131878724387 1.3954814746549056 1.0 775 -442827 Rab44 RAB44, member RAS oncogene family Novel U 0.16012601745533456 1.3945979262631192 1.0 776 -71972 Dnmbp dynamin binding protein Novel U 0.15994982145109796 1.392772893843368 1.0 777 -19700 Rem1 rad and gem related GTP binding protein 1 Novel U 0.1598614981954324 1.3918580444646549 1.0 778 -68365 Rab14 RAB14, member RAS oncogene family Novel U 0.15983084876142767 1.3915405786347796 1.0 779 -15526 Hspa9 heat shock protein 9 Novel U 0.15949353431156937 1.3880466866517627 1.0 780 -73094 Sgip1 SH3-domain GRB2-like (endophilin) interacting protein 1 Novel U 0.1594728629461382 1.3878325733281611 1.0 781 -22318 Vamp2 vesicle-associated membrane protein 2 Novel U 0.1594141700012498 1.3872246337344338 1.0 782 -12068 Bet1 Bet1 golgi vesicular membrane trafficking protein Novel U 0.15929630441766693 1.3860037858943046 1.0 783 -26918 Ern2 endoplasmic reticulum to nucleus signalling 2 Novel U 0.15922700889732058 1.3852860251725247 1.0 784 -83435 Plekha3 pleckstrin homology domain-containing, family A (phosphoinositide binding specific) member 3 Novel U 0.15899225436677683 1.3828544454622922 1.0 785 -19294 Nectin2 nectin cell adhesion molecule 2 Novel U 0.15754634909155352 1.3678778061531045 1.0 786 -328967 Arhgef37 Rho guanine nucleotide exchange factor 37 Novel U 0.15712258698922327 1.3634884922275965 1.0 787 -74385 Ap5m1 adaptor-related protein complex 5, mu 1 subunit Novel U 0.15706878897787901 1.362931254194607 1.0 788 -68813 Dock5 dedicator of cytokinesis 5 Novel U 0.15703437728159295 1.3625748189756997 1.0 789 -58235 Nectin1 nectin cell adhesion molecule 1 Novel U 0.1569848359386575 1.3620616713741582 1.0 790 -67844 Rab32 RAB32, member RAS oncogene family Novel U 0.15677665624135903 1.3599053529130796 1.0 791 -56489 Ikbke inhibitor of kappaB kinase epsilon Novel U 0.1561167824623283 1.3530704020020612 1.0 792 -224139 Golgb1 golgin B1 Novel U 0.1554490745027606 1.3461543049065758 1.0 793 -74349 Fhip1b FHF complex subunit HOOK interacting protein 1B Novel U 0.15486153702654704 1.3400686110422098 1.0 794 -380918 Siah3 siah E3 ubiquitin protein ligase family member 3 Novel U 0.15461945730426097 1.3375611572367128 1.0 795 -319934 Sbf2 SET binding factor 2 Novel N 0.15411346271910098 1.3323200819573018 1.0 796 -329152 Hecw2 HECT, C2 and WW domain containing E3 ubiquitin protein ligase 2 Novel U 0.15385891543203098 1.329683489525622 1.0 797 -69550 Bst2 bone marrow stromal cell antigen 2 Novel U 0.15377772288982638 1.328842499842528 1.0 798 -22637 Zap70 zeta-chain (TCR) associated protein kinase Novel U 0.1531929065092436 1.3227849909972542 1.0 799 -12771 Ccr3 C-C motif chemokine receptor 3 Novel U 0.1528649326449098 1.3193878484920447 1.0 800 -75739 Mpp7 membrane protein, palmitoylated 7 (MAGUK p55 subfamily member 7) Novel U 0.15271423119201175 1.31782688779697 1.0 801 -56224 Tspan5 tetraspanin 5 Novel U 0.15218680632016918 1.3123638383125835 1.0 802 -100504346 Ccl21f C-C motif chemokine ligand 21F Novel U 0.15183599028383268 1.308730097340666 1.0 803 -218811 Sec24c SEC24 homolog C, COPII coat complex component Novel U 0.15165026911828633 1.3068064036131912 1.0 804 -26411 Map4k1 mitogen-activated protein kinase kinase kinase kinase 1 Novel U 0.15137165560980156 1.3039205340512319 1.0 805 -217371 Rab40b Rab40B, member RAS oncogene family Novel U 0.15135658963557083 1.3037644811854172 1.0 806 -228543 Rhov ras homolog family member V Novel U 0.15111531587284063 1.3012653754825054 1.0 807 -231134 Dok7 docking protein 7 Novel U 0.1509534201885212 1.2995884653063587 1.0 808 -74055 Plce1 phospholipase C, epsilon 1 Novel U 0.15090899028444485 1.2991282618204902 1.0 809 -18844 Plxna1 plexin A1 Novel U 0.1508158416153501 1.2981634309681045 1.0 810 -68652 Tab2 TGF-beta activated kinase 1/MAP3K7 binding protein 2 Novel U 0.15064449747354058 1.2963886539798768 1.0 811 -14828 Hspa5 heat shock protein 5 Novel U 0.1505295170493469 1.2951976905258562 1.0 812 -18590 Pdgfa platelet derived growth factor, alpha Novel U 0.1492621899882824 1.2820707584884832 1.0 813 -100855 Tbc1d14 TBC1 domain family, member 14 Novel U 0.14904484613098906 1.2798195179594332 1.0 814 -72580 Zup1 zinc finger containing ubiquitin peptidase 1 Novel U 0.14856825581134997 1.2748830110956744 1.0 815 -116732 Tsga13 testis specific gene A13 Novel U 0.148486157977399 1.274032644430431 1.0 816 -59026 Huwe1 HECT, UBA and WWE domain containing 1 Novel U 0.1482485315706839 1.2715713179212236 1.0 817 -12803 Cntf ciliary neurotrophic factor Novel U 0.14798711821548644 1.2688636069815893 1.0 818 -16186 Il2rg interleukin 2 receptor, gamma chain Known P 0.14772319762195377 1.2661299261497 1.0 819 -225825 Cd226 CD226 antigen Novel U 0.1476150396161493 1.2650096290810804 1.0 820 -14302 Frk fyn-related kinase Novel N 0.14759251529670753 1.2647763229207496 1.0 821 -223881 Rnd1 Rho family GTPase 1 Novel U 0.14734992006362305 1.2622635294713491 1.0 822 -59029 Psmd14 proteasome (prosome, macropain) 26S subunit, non-ATPase, 14 Novel U 0.1472892657160281 1.2616352737328649 1.0 823 -16985 Lsp1 lymphocyte specific 1 Novel U 0.147115774850116 1.2598382610469525 1.0 824 -16415 Itgb2l integrin beta 2-like Novel U 0.14696308415288084 1.258256695824427 1.0 825 -58801 Pmaip1 phorbol-12-myristate-13-acetate-induced protein 1 Novel U 0.1469618989611127 1.2582444196470537 1.0 826 -16573 Kif5b kinesin family member 5B Novel U 0.14689307463692103 1.257531539559554 1.0 827 -70423 Tspan15 tetraspanin 15 Novel U 0.14687020706870196 1.2572946780396719 1.0 828 -14745 Lpar1 lysophosphatidic acid receptor 1 Novel U 0.14660540319738333 1.2545518482455118 1.0 829 -19731 Rgl1 ral guanine nucleotide dissociation stimulator,-like 1 Novel U 0.14567596807778113 1.2449247898302058 1.0 830 -14218 Sh3pxd2a SH3 and PX domains 2A Novel N 0.14556337849195566 1.243758590601409 1.0 831 -19347 Dennd5a DENN domain containing 5A Novel U 0.14550415881799925 1.2431451951653103 1.0 832 -236573 Gbp9 guanylate-binding protein 9 Novel U 0.14488060571651207 1.2366864526383101 1.0 833 -80708 Pacsin3 protein kinase C and casein kinase substrate in neurons 3 Novel U 0.14484093794526745 1.236275575167766 1.0 834 -19732 Rgl2 ral guanine nucleotide dissociation stimulator-like 2 Novel U 0.14452502364029532 1.2330033451819882 1.0 835 -20851 Stat5b signal transducer and activator of transcription 5B Novel U 0.14372402194322004 1.2247065959351948 1.0 836 -19248 Ptpn12 protein tyrosine phosphatase, non-receptor type 12 Novel U 0.1436711875995194 1.2241593395399792 1.0 837 -22317 Vamp1 vesicle-associated membrane protein 1 Novel U 0.14333102893573074 1.2206359872825698 1.0 838 -213498 Arhgef11 Rho guanine nucleotide exchange factor 11 Novel U 0.14304938591117874 1.2177187380927759 1.0 839 -76630 Stambpl1 STAM binding protein like 1 Novel N 0.14295508964969206 1.2167420205161195 1.0 840 -13043 Cttn cortactin Novel U 0.14282721469391763 1.2154174959278707 1.0 841 -69150 Snx4 sorting nexin 4 Novel U 0.1423849849378249 1.2108368946517822 1.0 842 -69190 Dym dymeclin Novel U 0.14234021790145168 1.2103731991606657 1.0 843 -72825 Mon1a MON1 homolog A, secretory traffciking associated Novel U 0.14198089232525285 1.20665131665459 1.0 844 -22030 Traf2 TNF receptor-associated factor 2 Novel U 0.14175153709900998 1.2042756627608133 1.0 845 -20290 Ccl1 C-C motif chemokine ligand 1 Novel U 0.1414527883016436 1.20118123253853 1.0 846 -56424 Stub1 STIP1 homology and U-Box containing protein 1 Novel U 0.14134507297476306 1.2000655207236521 1.0 847 -56212 Rhog ras homolog family member G Novel U 0.14100006018960326 1.1964918896366512 1.0 848 -320982 Arl4c ADP-ribosylation factor-like 4C Novel U 0.14032710164969145 1.189521407202565 1.0 849 -632971 Rergl RERG/RAS-like Novel U 0.14017220518109036 1.1879169946727421 1.0 850 -57752 Tacc2 transforming, acidic coiled-coil containing protein 2 Novel U 0.1401336860167285 1.1875180144345312 1.0 851 -381812 Cracr2a calcium release activated channel regulator 2A Novel N 0.13990228266982682 1.185121146174299 1.0 852 -233824 Cog7 component of oligomeric golgi complex 7 Novel U 0.13988300300126177 1.1849214480010872 1.0 853 -243659 Styk1 serine/threonine/tyrosine kinase 1 Novel U 0.1396873907464866 1.1828953026965323 1.0 854 -13869 Erbb4 erb-b2 receptor tyrosine kinase 4 Known P 0.13956370709954755 1.1816141915474185 1.0 855 -270160 Rab39 RAB39, member RAS oncogene family Novel U 0.13954449207280195 1.1814151629320475 1.0 856 -13636 Efna1 ephrin A1 Novel U 0.1394807503265735 1.1807549280200105 1.0 857 -623198 Gm6408 predicted gene 6408 Novel U 0.1392676822870759 1.1785479762711286 1.0 858 -213539 Bag2 BCL2-associated athanogene 2 Novel U 0.13900193381953393 1.1757953623803392 1.0 859 -66938 Sh3d21 SH3 domain containing 21 Novel U 0.13827438581873697 1.1682594441049365 1.0 860 -77371 Sec24a SEC24 homolog A, COPII coat complex component Novel U 0.13714451498694324 1.1565562791717199 1.0 861 -69940 Exoc1 exocyst complex component 1 Novel U 0.13649034001756424 1.1497803563437359 1.0 862 -76166 Cplane2 ciliogenesis and planar polarity effector 2 Novel U 0.13630159099055783 1.1478253001267935 1.0 863 -17472 Gbp4 guanylate binding protein 4 Novel U 0.13605329960980675 1.1452535061671134 1.0 864 -20359 Sema6b sema domain, transmembrane domain (TM), and cytoplasmic domain, (semaphorin) 6B Novel N 0.13591795389445493 1.14385159969675 1.0 865 -109880 Braf Braf transforming gene Novel U 0.13561340721749732 1.1406971152282557 1.0 866 -69226 Snx24 sorting nexing 24 Novel U 0.13462519203054052 1.1304612148075814 1.0 867 -56418 Ykt6 YKT6 v-SNARE homolog (S. cerevisiae) Novel U 0.13460691416872184 1.1302718933157159 1.0 868 -76877 Rab36 RAB36, member RAS oncogene family Novel U 0.13454025026077204 1.1295813907486298 1.0 869 -108086 Rnf216 ring finger protein 216 Novel U 0.13429979464255148 1.127090759359654 1.0 870 -56637 Gsk3b glycogen synthase kinase 3 beta Novel U 0.13373228515699503 1.1212125147641296 1.0 871 -74030 Rin2 Ras and Rab interactor 2 Novel U 0.13316449684196624 1.115331382062097 1.0 872 -18212 Ntrk2 neurotrophic tyrosine kinase, receptor, type 2 Novel U 0.13265645345981875 1.1100690854108397 1.0 873 -52915 Zmiz2 zinc finger, MIZ-type containing 2 Novel U 0.13259870282896694 1.1094709062749264 1.0 874 -18805 Pld1 phospholipase D1 Known P 0.13227442592532093 1.10611205676699 1.0 875 -227334 Usp40 ubiquitin specific peptidase 40 Novel U 0.13209550963721484 1.104258847736343 1.0 876 -56077 Dgke diacylglycerol kinase, epsilon Novel U 0.1320465691447521 1.1037519237242461 1.0 877 -232670 Tspan33 tetraspanin 33 Novel U 0.13169323428547325 1.1000920928670936 1.0 878 -70549 Tln2 talin 2 Novel U 0.1316298862062987 1.0994359355454597 1.0 879 -228357 Lrp4 low density lipoprotein receptor-related protein 4 Novel U 0.13162846613350151 1.0994212264781087 1.0 880 -71116 Stx18 syntaxin 18 Novel U 0.13150688159793494 1.0981618578555865 1.0 881 -71648 Optn optineurin Novel U 0.131488720932332 1.097973750278271 1.0 882 -12124 Bik BCL2-interacting killer Novel U 0.13139115530789014 1.0969631687475994 1.0 883 -20846 Stat1 signal transducer and activator of transcription 1 Novel U 0.13132213048703453 1.0962482119222456 1.0 884 -52588 Tspan14 tetraspanin 14 Novel U 0.13121019642354803 1.0950888025722867 1.0 885 -13640 Efna5 ephrin A5 Novel U 0.13118260443104748 1.0948030056210039 1.0 886 -101240 Wdr91 WD repeat domain 91 Novel U 0.13093435907685702 1.0922316884029255 1.0 887 -26409 Map3k7 mitogen-activated protein kinase kinase kinase 7 Novel U 0.130915194017944 1.0920331773527217 1.0 888 -52118 Pvr poliovirus receptor Novel U 0.1308002092438483 1.0908421688425594 1.0 889 -15964 Ifna11 interferon alpha 11 Novel U 0.13079150727069025 1.0907520340906502 1.0 890 -56338 Txnip thioredoxin interacting protein Novel U 0.130636321164735 1.0891446215066343 1.0 891 -11854 Rhod ras homolog family member D Novel U 0.13052993532959353 1.0880426805234849 1.0 892 -19340 Rab3d RAB3D, member RAS oncogene family Novel U 0.13052588710455532 1.0880007491416173 1.0 893 -17096 Lyn LYN proto-oncogene, Src family tyrosine kinase Novel U 0.1303568873393775 1.0862502551294735 1.0 894 -16196 Il7 interleukin 7 Novel U 0.13005236556612168 1.0830960286127036 1.0 895 -16428 Itk IL2 inducible T cell kinase Novel U 0.12964374379837326 1.0788635377750826 1.0 896 -69981 Tmem30a transmembrane protein 30A Novel U 0.12899142635945252 1.072106855186522 1.0 897 -50797 Copb2 COPI coat complex subunit beta 2 Novel U 0.12870274820660083 1.0691167363690675 1.0 898 -108100 Baiap2 brain-specific angiogenesis inhibitor 1-associated protein 2 Novel U 0.12858780145589516 1.0679261217039289 1.0 899 -105940408 S2bpcox16 synaptojanin 2 binding protein Cox16 readthrough Novel U 0.12829069348516176 1.0648486871099707 1.0 900 -93672 Il24 interleukin 24 Novel U 0.12827303450604674 1.064665775984805 1.0 901 -21894 Tln1 talin 1 Novel U 0.12815156749156356 1.0634076246418014 1.0 902 -116849 Il22b interleukin 22B Novel U 0.12793307326107495 1.0611444685850113 1.0 903 -77040 Atg16l1 autophagy related 16 like 1 Novel U 0.12776531162435076 1.0594067990666889 1.0 904 -105844 Card10 caspase recruitment domain family, member 10 Novel U 0.12771955086744427 1.0589328106509552 1.0 905 -280408 Rilp Rab interacting lysosomal protein Novel U 0.12737582412046833 1.0553725003051866 1.0 906 -22341 Vegfc vascular endothelial growth factor C Novel U 0.12721387573185466 1.0536950442196928 1.0 907 -78808 Stxbp5 syntaxin binding protein 5 (tomosyn) Novel U 0.12715845246860183 1.0531209718808616 1.0 908 -66102 Cxcl16 C-X-C motif chemokine ligand 16 Novel U 0.12694405358935212 1.0509002353375765 1.0 909 -14457 Gas7 growth arrest specific 7 Novel U 0.12676912959659353 1.0490883783708995 1.0 910 -213452 Dstyk dual serine/threonine and tyrosine protein kinase Novel U 0.12583360016650816 1.0393981952879487 1.0 911 -56208 Becn1 beclin 1, autophagy related Novel U 0.12543619834520955 1.0352819202868189 1.0 912 -58998 Nectin3 nectin cell adhesion molecule 3 Novel U 0.12542955556467109 1.035213114584371 1.0 913 -216363 Rab3ip RAB3A interacting protein Novel U 0.1254107087059363 1.0350178994411532 1.0 914 -16177 Il1r1 interleukin 1 receptor, type I Novel U 0.12516843420243076 1.0325084280981882 1.0 915 -108960 Irak2 interleukin-1 receptor-associated kinase 2 Novel U 0.12515002952727486 1.0323177930779444 1.0 916 -258396 Or4f56 olfactory receptor family 4 subfamily F member 56 Novel U 0.12502437662979662 1.0310162844964814 1.0 917 -233765 Plekha7 pleckstrin homology domain containing, family A member 7 Novel U 0.12492210983676419 1.0299570084160912 1.0 918 -78514 Arhgap10 Rho GTPase activating protein 10 Novel U 0.12468034671689932 1.0274528339680653 1.0 919 -27261 Dok3 docking protein 3 Novel U 0.12462595714097846 1.026889468528638 1.0 920 -170835 Inpp5j inositol polyphosphate 5-phosphatase J Novel U 0.12459791541749952 1.0265990132786653 1.0 921 -78777 Tepsin TEPSIN, adaptor related protein complex 4 accessory protein Novel U 0.12452810297783266 1.0258758983235563 1.0 922 -14063 F2rl1 F2R like trypsin receptor 1 Novel U 0.1245129743285019 1.0257191962711159 1.0 923 -14011 Etv6 ets variant 6 Novel U 0.12445754281218145 1.0251450384472816 1.0 924 -104886 Rab15 RAB15, member RAS oncogene family Novel U 0.12430194308026186 1.0235333415391241 1.0 925 -74006 Dnm1l dynamin 1-like Known P 0.12412690917084317 1.021720346059295 1.0 926 -69181 Dyrk2 dual-specificity tyrosine phosphorylation regulated kinase 2 Novel U 0.1239191717639622 1.0195686088278213 1.0 927 -235611 Plxnb1 plexin B1 Novel U 0.12374754017796621 1.0177908545021594 1.0 928 -228359 Arhgap1 Rho GTPase activating protein 1 Novel U 0.12373459874560717 1.0176568075712111 1.0 929 -319757 Smo smoothened, frizzled class receptor Novel U 0.1235830879376481 1.0160874636030206 1.0 930 -57915 Tbc1d1 TBC1 domain family, member 1 Novel U 0.12332612030779888 1.013425801340398 1.0 931 -108124 Napa N-ethylmaleimide sensitive fusion protein attachment protein alpha Novel U 0.12295756227710324 1.0096082893741452 1.0 932 -16569 Kif3b kinesin family member 3B Novel U 0.12244544735917165 1.004303819889081 1.0 933 -72519 Pip4p2 phosphatidylinositol-4,5-bisphosphate 4-phosphatase 2 Novel U 0.12219477919673748 1.0017074073028598 1.0 934 -56217 Pals1 protein associated with LIN7 1, MAGUK family member Novel N 0.1218042620979276 0.9976624440309451 1.0 935 -319740 Zfyve27 zinc finger, FYVE domain containing 27 Novel U 0.12163340558837751 0.9958927179216305 1.0 936 -55932 Gbp3 guanylate binding protein 3 Novel U 0.121543370293059 0.9949601352924723 1.0 937 -17281 Fyco1 FYVE and coiled-coil domain containing 1 Novel U 0.12116611841652365 0.9910525727568065 1.0 938 -192656 Ripk2 receptor (TNFRSF)-interacting serine-threonine kinase 2 Novel U 0.12112333769934625 0.9906094514946233 1.0 939 -21940 Cd27 CD27 antigen Novel U 0.12109157467956311 0.9902804511798625 1.0 940 -68151 Wls wntless WNT ligand secretion mediator Novel U 0.12085281220932927 0.9878073573620738 1.0 941 -320207 Pik3r5 phosphoinositide-3-kinase regulatory subunit 5 Novel U 0.12083676737181641 0.9876411654625613 1.0 942 -17164 Mapkapk2 MAP kinase-activated protein kinase 2 Novel U 0.12056503610190437 0.9848265819014967 1.0 943 -56791 Ube2l6 ubiquitin-conjugating enzyme E2L 6 Novel N 0.12033485151988448 0.9824423375678452 1.0 944 -76338 Rab2b RAB2B, member RAS oncogene family Novel U 0.11976017734952897 0.9764898814026985 1.0 945 -11352 Abl2 ABL proto-oncogene 2, non-receptor tyrosine kinase Novel U 0.1195803159575983 0.9746268830177054 1.0 946 -13543 Dvl2 dishevelled segment polarity protein 2 Novel U 0.11923004339268252 0.9709987713048981 1.0 947 -93765 Ube2n ubiquitin-conjugating enzyme E2N Novel U 0.11872724890888954 0.9657908425702487 1.0 948 -14276 Folr2 folate receptor beta Novel U 0.11858470000193777 0.9643143256780852 1.0 949 -94178 Mcoln1 mucolipin 1 Novel U 0.1181829869189443 0.960153394770045 1.0 950 -18752 Prkcg protein kinase C, gamma Novel U 0.11816424875284927 0.9599593054616168 1.0 951 -26397 Map2k3 mitogen-activated protein kinase kinase 3 Novel U 0.11807723232325004 0.959057992144339 1.0 952 -14998 H2-DMa histocompatibility 2, class II, locus DMa Novel U 0.1180621375861762 0.958901641353941 1.0 953 -18591 Pdgfb platelet derived growth factor, B polypeptide Novel U 0.11805980399243789 0.9588774700667122 1.0 954 -29864 Rnf11 ring finger protein 11 Novel U 0.11803943185300363 0.9586664561161501 1.0 955 -54644 Otud5 OTU domain containing 5 Novel U 0.11799316495235054 0.9581872250801279 1.0 956 -15162 Hck hemopoietic cell kinase Novel U 0.11776730589808253 0.9558477844207363 1.0 957 -12000 Avpr2 arginine vasopressin receptor 2 Novel U 0.11775689159435143 0.9557399134050414 1.0 958 -24069 Sufu SUFU negative regulator of hedgehog signaling Novel U 0.11773075583984963 0.9554692001190783 1.0 959 -214952 Rhot2 ras homolog family member T2 Novel U 0.11751136437048865 0.9531967504915434 1.0 960 -210710 Gab3 growth factor receptor bound protein 2-associated protein 3 Novel U 0.11743514160777337 0.9524072376210269 1.0 961 -67345 Herc4 hect domain and RLD 4 Novel N 0.11740742858438254 0.9521201870357612 1.0 962 -23797 Akt3 thymoma viral proto-oncogene 3 Novel U 0.11694333003872899 0.9473130695562997 1.0 963 -259172 Mfrp membrane frizzled-related protein Novel N 0.11687017065392755 0.9465552870535114 1.0 964 -22343 Lin7c lin-7 homolog C, crumbs cell polarity complex component Novel N 0.11683672808524082 0.9462088900264195 1.0 965 -107368 Pdzd8 PDZ domain containing 8 Novel U 0.11676718352427012 0.9454885497500394 1.0 966 -56496 Tspan6 tetraspanin 6 Novel U 0.11667220305589496 0.9445047451809242 1.0 967 -50850 Spast spastin Novel U 0.11634239873287687 0.941088642844836 1.0 968 -435626 Rufy4 RUN and FYVE domain containing 4 Novel U 0.11631444138882736 0.9407990615942193 1.0 969 -11540 Adora2a adenosine A2a receptor Novel U 0.11624728208841494 0.9401034277682905 1.0 970 -232946 Bloc1s3 biogenesis of lysosomal organelles complex-1, subunit 3 Novel U 0.11617648839678343 0.9393701490375886 1.0 971 -226422 Rab29 RAB29, member RAS oncogene family Novel U 0.1160765729560476 0.9383352281869901 1.0 972 -18751 Prkcb protein kinase C, beta Novel U 0.11583547791641526 0.9358379736920507 1.0 973 -170707 Usp48 ubiquitin specific peptidase 48 Novel U 0.11558860429209693 0.9332808648068946 1.0 974 -20609 Sstr5 somatostatin receptor 5 Novel U 0.11552938947810831 0.9326675197101828 1.0 975 -16706 Ksr1 kinase suppressor of ras 1 Novel U 0.11515604981726787 0.9288004797760777 1.0 976 -233328 Lrrk1 leucine-rich repeat kinase 1 Novel U 0.11508169210330199 0.9280302850191973 1.0 977 -12770 Ccr1l1 C-C motif chemokine receptor 1 like 1 Novel U 0.11503233682514565 0.9275190646705213 1.0 978 -14680 Gnal guanine nucleotide binding protein, alpha stimulating, olfactory type Novel N 0.11498164045439638 0.9269939533288537 1.0 979 -27494 Amot angiomotin Novel U 0.11478442277446069 0.9249511790832619 1.0 980 -233204 Tbc1d17 TBC1 domain family, member 17 Novel U 0.11473966712288874 0.9244876015155424 1.0 981 -258353 Or2at1 olfactory receptor family 2 subfamily AT member 1 Novel U 0.11460968508917817 0.9231412518832975 1.0 982 -13449 Dok2 docking protein 2 Novel N 0.11453762501690593 0.9223948560235489 1.0 983 -14676 Gna15 guanine nucleotide binding protein, alpha 15 Novel U 0.11451718606491618 0.9221831500307335 1.0 984 -27057 Ncoa4 nuclear receptor coactivator 4 Novel U 0.11442634659586061 0.9212422377964425 1.0 985 -110524 Dgkq diacylglycerol kinase, theta Novel U 0.11405433585848421 0.9173889628078921 1.0 986 -212539 Gm266 predicted gene 266 Novel U 0.11390422033740957 0.9158340711753828 1.0 987 -212541 Rho rhodopsin Novel U 0.1138042671961072 0.9147987598235554 1.0 988 -68178 Cgnl1 cingulin-like 1 Novel U 0.11357307729667464 0.9124041024451915 1.0 989 -27218 Slamf1 signaling lymphocytic activation molecule family member 1 Novel U 0.1135700600112917 0.912372849502383 1.0 990 -17524 Mpp1 membrane protein, palmitoylated Novel N 0.11350056073428344 0.911652978275797 1.0 991 -68724 Arl8a ADP-ribosylation factor-like 8A Novel U 0.1132050438367047 0.9085920239652712 1.0 992 -66412 Arrdc4 arrestin domain containing 4 Novel U 0.11231317151438576 0.8993540397694149 1.0 993 -18413 Osm oncostatin M Novel U 0.11227593251837063 0.8989683194728563 1.0 994 -50873 Prkn parkin RBR E3 ubiquitin protein ligase Novel U 0.11193479912292881 0.8954348709770261 1.0 995 -227960 Gca grancalcin Novel U 0.11193125518149799 0.8953981629481865 1.0 996 -109042 Cavin3 caveolae associated 3 Novel U 0.11190079253160554 0.8950826318220061 1.0 997 -17289 Mertk MER proto-oncogene tyrosine kinase Novel U 0.11182918482427692 0.8943409215434729 1.0 998 -16169 Il15ra interleukin 15 receptor, alpha chain Novel U 0.11172021167668533 0.8932121812630185 1.0 999 -16149 Cd74 CD74 antigen (invariant polypeptide of major histocompatibility complex, class II antigen-associated) Novel U 0.11155641481206922 0.8915155787238567 1.0 1000 -22041 Trf transferrin Novel U 0.11139746588177114 0.8898691909289937 1.0 1001 -15893 Ica1 islet cell autoantigen 1 Novel U 0.1111939314001857 0.8877609874595674 1.0 1002 -12017 Bag1 BCL2-associated athanogene 1 Novel U 0.11103278486787053 0.8860918369752538 1.0 1003 -71452 Ankrd40 ankyrin repeat domain 40 Novel U 0.111010006666957 0.8858559011189845 1.0 1004 -22084 Tsc2 TSC complex subunit 2 Novel U 0.11007500775978604 0.8761712131749411 1.0 1005 -114601 Ehbp1l1 EH domain binding protein 1-like 1 Novel U 0.1098940662289125 0.8742970267462853 1.0 1006 -27007 Klrk1 killer cell lectin-like receptor subfamily K, member 1 Novel U 0.10988172922077899 0.8741692404215957 1.0 1007 -17475 Mpdz multiple PDZ domain crumbs cell polarity complex component Novel N 0.10955584118895076 0.8707937029009108 1.0 1008 -98402 Sh3bp4 SH3-domain binding protein 4 Novel U 0.10955542413943066 0.8707893831156914 1.0 1009 -544963 Iqgap2 IQ motif containing GTPase activating protein 2 Novel U 0.10928523802970569 0.8679908042730501 1.0 1010 -270192 Rab6b RAB6B, member RAS oncogene family Novel U 0.10903376174316971 0.8653860211639481 1.0 1011 -11852 Rhob ras homolog family member B Novel U 0.10889035088477186 0.8639005762070412 1.0 1012 -66508 Lamtor1 late endosomal/lysosomal adaptor, MAPK and MTOR activator 1 Novel U 0.10881147007387933 0.8630835313608832 1.0 1013 -80981 Arl4d ADP-ribosylation factor-like 4D Novel U 0.10858050172720808 0.8606911688187379 1.0 1014 -12169 Bmx BMX non-receptor tyrosine kinase Novel U 0.10848811876680865 0.8597342691518468 1.0 1015 -12669 Chrm1 cholinergic receptor, muscarinic 1, CNS Novel N 0.10821006036118667 0.8568541493270921 1.0 1016 -11487 Adam10 a disintegrin and metallopeptidase domain 10 Novel U 0.1081937512894155 0.856685220497818 1.0 1017 -56494 Gosr2 golgi SNAP receptor complex member 2 Novel U 0.10817262701468534 0.8564664159545863 1.0 1018 -258999 Or5k15 olfactory receptor family 5 subfamily J member 15 Novel U 0.1081383942895464 0.8561118345129374 1.0 1019 -216835 Usp43 ubiquitin specific peptidase 43 Novel N 0.10808398032457084 0.8555482164524832 1.0 1020 -67095 Trak1 trafficking protein, kinesin binding 1 Novel U 0.10808070903588857 0.85551433255185 1.0 1021 -60505 Il21 interleukin 21 Novel U 0.10799391832558862 0.8546153572276541 1.0 1022 -66724 Tab3 TGF-beta activated kinase 1/MAP3K7 binding protein 3 Novel N 0.1079814577892603 0.8544862914019834 1.0 1023 -71619 Arl14 ADP-ribosylation factor-like 14 Novel U 0.10789065744606764 0.8535457844320944 1.0 1024 -74479 Snx11 sorting nexin 11 Novel U 0.10774577801274493 0.8520451280243926 1.0 1025 -22350 Ezr ezrin Novel U 0.1076059136198165 0.8505964172402342 1.0 1026 -19201 Pstpip2 proline-serine-threonine phosphatase-interacting protein 2 Novel U 0.10758319645661055 0.8503611136105333 1.0 1027 -234515 Inpp4b inositol polyphosphate-4-phosphatase, type II Novel U 0.107575971874123 0.8502862816226228 1.0 1028 -13857 Epor erythropoietin receptor Novel U 0.10734276814145685 0.8478707650258265 1.0 1029 -56524 Pals2 protein associated with LIN7 2, MAGUK family member Novel U 0.10733079533853683 0.8477467511267657 1.0 1030 -258178 Or5k16 olfactory receptor family 5 subfamily K member 16 Novel U 0.10720320840404585 0.8464252098535026 1.0 1031 -70420 Arpin actin-related protein 2/3 complex inhibitor Novel U 0.10695496633427747 0.8438539266553601 1.0 1032 -67581 Tbc1d23 TBC1 domain family, member 23 Novel U 0.10678812281546997 0.8421257669722373 1.0 1033 -12526 Cd8b1 CD8 subunit beta 1 Novel U 0.10676976655959954 0.8419356334773608 1.0 1034 -259302 Srgap3 SLIT-ROBO Rho GTPase activating protein 3 Novel U 0.10639503537007165 0.8380541801348552 1.0 1035 -14674 Gna13 guanine nucleotide binding protein, alpha 13 Novel U 0.1059588102233085 0.8335357744048117 1.0 1036 -13191 Dctn1 dynactin 1 Novel U 0.10584707457965596 0.8323784202809702 1.0 1037 -20360 Sema6c sema domain, transmembrane domain (TM), and cytoplasmic domain, (semaphorin) 6C Novel U 0.1058325031104924 0.8322274894823852 1.0 1038 -66725 Lrrk2 leucine-rich repeat kinase 2 Novel U 0.10576842649374509 0.8315637859925219 1.0 1039 -19090 Prkdc protein kinase, DNA activated, catalytic polypeptide Novel U 0.10553053832916957 0.8290997482040009 1.0 1040 -12774 Ccr5 C-C motif chemokine receptor 5 Known P 0.10503917125341787 0.8240101841861872 1.0 1041 -242505 Rasef RAS and EF hand domain containing Novel U 0.10502425521184701 0.8238556843179347 1.0 1042 -243912 Hspb6 heat shock protein, alpha-crystallin-related, B6 Novel U 0.10501417344002766 0.8237512576568502 1.0 1043 -109168 Atl3 atlastin GTPase 3 Novel U 0.10500655384467625 0.823672334138681 1.0 1044 -192662 Arhgdia Rho GDP dissociation inhibitor alpha Novel U 0.10500297758580499 0.8236352913668556 1.0 1045 -16337 Insr insulin receptor Novel U 0.10498105094979378 0.8234081759918509 1.0 1046 -30948 Bin1 bridging integrator 1 Novel U 0.10495420789989138 0.8231301365633796 1.0 1047 -100502841 Epg5 ectopic P-granules 5 autophagy tethering factor Novel U 0.10454543324207126 0.8188960620954219 1.0 1048 -54609 Ubqln2 ubiquilin 2 Novel U 0.10445783725166065 0.8179887457063119 1.0 1049 -51789 Tnk2 tyrosine kinase, non-receptor, 2 Novel U 0.10420645972994326 0.815384985599954 1.0 1050 -75141 Rasd2 RASD family, member 2 Novel U 0.10405546425310752 0.8138209794145983 1.0 1051 -18646 Prf1 perforin 1 (pore forming protein) Novel U 0.10399932859521625 0.8132395281155209 1.0 1052 -74478 Snx29 sorting nexin 29 Novel U 0.10396157249485755 0.8128484516691704 1.0 1053 -11848 Rhoa ras homolog family member A Novel U 0.10394768347345797 0.8127045896420905 1.0 1054 -338374 Ifnl3 interferon lambda 3 Novel U 0.10393185560200065 0.8125406450698488 1.0 1055 -78891 Scyl1 SCY1-like 1 (S. cerevisiae) Novel U 0.10346615254444207 0.8077169081088205 1.0 1056 -18795 Plcb1 phospholipase C, beta 1 Novel U 0.10340615129141695 0.8070954171024212 1.0 1057 -14183 Fgfr2 fibroblast growth factor receptor 2 Known P 0.10336092144077973 0.8066269277963721 1.0 1058 -19877 Rock1 Rho-associated coiled-coil containing protein kinase 1 Novel U 0.10331831696366466 0.8061856320229609 1.0 1059 -18187 Nrp2 neuropilin 2 Novel U 0.10326304925245097 0.8056131708870378 1.0 1060 -15979 Ifngr1 interferon gamma receptor 1 Novel U 0.10324026983454694 0.8053772224252208 1.0 1061 -223593 Washc5 WASH complex subunit 5 Novel U 0.10309156073691082 0.8038368984804541 1.0 1062 -12988 Csk c-src tyrosine kinase Novel U 0.1030159353301869 0.803053573003659 1.0 1063 -15565 Htr6 5-hydroxytryptamine (serotonin) receptor 6 Novel N 0.10290930574019126 0.8019491072157432 1.0 1064 -235323 Usp28 ubiquitin specific peptidase 28 Novel U 0.10290849546767478 0.8019407144396538 1.0 1065 -268749 Rnf31 ring finger protein 31 Novel U 0.10275779010002122 0.8003797131956703 1.0 1066 -16590 Kit KIT proto-oncogene receptor tyrosine kinase Known P 0.10270220963388273 0.7998040125545172 1.0 1067 -11479 Acvr1b activin A receptor, type 1B Novel U 0.10266972569555077 0.7994675449891268 1.0 1068 -238257 Tmem30b transmembrane protein 30B Novel U 0.10265463331464289 0.7993112186038182 1.0 1069 -216131 Trappc10 trafficking protein particle complex 10 Novel N 0.10243127390446219 0.7969976691757116 1.0 1070 -65969 Cubn cubilin Novel U 0.10232498585542424 0.7958967410578078 1.0 1071 -59042 Cope coatomer protein complex, subunit epsilon Novel U 0.10210179695022377 0.7935849577146814 1.0 1072 -16172 Il17ra interleukin 17 receptor A Novel U 0.10208954055254371 0.7934580063504187 1.0 1073 -20850 Stat5a signal transducer and activator of transcription 5A Novel U 0.10197336600835577 0.7922546742407525 1.0 1074 -20303 Ccl4 C-C motif chemokine ligand 4 Novel U 0.10194500473575999 0.7919609091115319 1.0 1075 -21844 Tiam1 T cell lymphoma invasion and metastasis 1 Novel U 0.10192598295101955 0.7917638820904981 1.0 1076 -21687 Tek TEK receptor tyrosine kinase Novel U 0.10157539546878977 0.7881325084745047 1.0 1077 -58994 Smpd3 sphingomyelin phosphodiesterase 3, neutral Novel N 0.10156628886371097 0.7880381825584619 1.0 1078 -19338 Rab33b RAB33B, member RAS oncogene family Novel U 0.10147711035906094 0.7871144745388824 1.0 1079 -18750 Prkca protein kinase C, alpha Novel U 0.10146436496497731 0.7869824581659464 1.0 1080 -54648 Ccdc120 coiled-coil domain containing 120 Novel N 0.10106157428775736 0.7828103655723324 1.0 1081 -18826 Lcp1 lymphocyte cytosolic protein 1 Novel U 0.10086243322210846 0.780747668960751 1.0 1082 -100038489 Apela apelin receptor early endogenous ligand Novel U 0.10070936296813031 0.7791621723019588 1.0 1083 -12772 Ccr2 C-C motif chemokine receptor 2 Novel U 0.10045745711787238 0.776552939785946 1.0 1084 -18693 Pick1 protein interacting with C kinase 1 Novel U 0.10038817371348505 0.7758353045608711 1.0 1085 -239114 Il17d interleukin 17D Novel U 0.10037826092360157 0.7757326282091235 1.0 1086 -207278 Fchsd2 FCH and double SH3 domains 2 Novel U 0.10026940815067907 0.7746051347655345 1.0 1087 -58185 Rsad2 radical S-adenosyl methionine domain containing 2 Novel U 0.10024473858874126 0.7743496082539508 1.0 1088 -18747 Prkaca protein kinase, cAMP dependent, catalytic, alpha Novel U 0.10016181996731466 0.7734907398990168 1.0 1089 -67161 Sclt1 sodium channel and clathrin linker 1 Novel N 0.10004192721628742 0.7722488947251387 1.0 1090 -16562 Kif1c kinesin family member 1C Novel N 0.09987756018867049 0.7705463864563574 1.0 1091 -219140 Spata13 spermatogenesis associated 13 Novel U 0.09980623584972664 0.7698076112982384 1.0 1092 -19303 Pxn paxillin Novel U 0.09919549919337597 0.7634816210886443 1.0 1093 -52639 Wipi1 WD repeat domain, phosphoinositide interacting 1 Novel U 0.09893444951483292 0.7607776770998412 1.0 1094 -207227 Stxbp5l syntaxin binding protein 5-like Novel U 0.098746933018673 0.7588353873968896 1.0 1095 -71544 Arhgap42 Rho GTPase activating protein 42 Novel U 0.09873385485068573 0.758699924162799 1.0 1096 -338372 Map3k9 mitogen-activated protein kinase kinase kinase 9 Novel U 0.09872713921013035 0.7586303637786912 1.0 1097 -258914 Or13a1 olfactory receptor family 13 subfamily A member 1 Novel U 0.09871532673716404 0.7585080105720203 1.0 1098 -101113 Snx21 sorting nexin family member 21 Novel U 0.09867146940264987 0.7580537377428547 1.0 1099 -12773 Ccr4 C-C motif chemokine receptor 4 Novel U 0.0986482937537494 0.757813685133402 1.0 1100 -11998 Avp arginine vasopressin Novel U 0.09848691351518694 0.7561421139274617 1.0 1101 -102635496 Malrd1 MAM and LDL receptor class A domain containing 1 Novel U 0.09819304815198657 0.7530982661557356 1.0 1102 -109246 Tspan9 tetraspanin 9 Novel U 0.09818324712355385 0.752996747425421 1.0 1103 -107971 Frs3 fibroblast growth factor receptor substrate 3 Novel U 0.09813210342800859 0.7524670027082215 1.0 1104 -258618 Or1l8 olfactory receptor family 1 subfamily L member 8 Novel U 0.0980946142410012 0.7520786909415897 1.0 1105 -170755 Sgk3 serum/glucocorticoid regulated kinase 3 Novel U 0.0979136262565623 0.7502040233484312 1.0 1106 -12166 Bmpr1a bone morphogenetic protein receptor, type 1A Novel U 0.09791016278031789 0.7501681487753471 1.0 1107 -14368 Fzd6 frizzled class receptor 6 Novel U 0.09785010191644293 0.7495460403217249 1.0 1108 -259143 Or52n4b olfactory receptor family 52 subfamily N member 4B Novel U 0.0977086864726129 0.7480812638033156 1.0 1109 -20868 Stk10 serine/threonine kinase 10 Novel U 0.09755574538527093 0.7464971050482949 1.0 1110 -12954 Cryaa crystallin, alpha A Novel U 0.0975394069794207 0.7463278723775946 1.0 1111 -233912 Armc5 armadillo repeat containing 5 Novel U 0.09729200148205841 0.7437652543689335 1.0 1112 -19126 Prom1 prominin 1 Novel N 0.09719340522402016 0.7427439975693507 1.0 1113 -12502 Cd3g CD3 antigen, gamma polypeptide Novel U 0.09711979215395539 0.7419815158095191 1.0 1114 -64930 Tsc1 TSC complex subunit 1 Novel U 0.09709554706471518 0.7417303859721834 1.0 1115 -71732 Vps11 VPS11, CORVET/HOPS core subunit Novel U 0.09707884274867777 0.7415573632157927 1.0 1116 -242519 Ifna12 interferon alpha 12 Novel U 0.09707180055004704 0.7414844203538754 1.0 1117 -12050 Bcl2l2 BCL2-like 2 Novel N 0.09675723131132528 0.7382261225201021 1.0 1118 -69253 Hspb2 heat shock protein 2 Novel U 0.09649355915153233 0.7354950149567221 1.0 1119 -15985 Cd79b CD79B antigen Novel U 0.09639296212705366 0.734453034284121 1.0 1120 -20168 Rtn3 reticulon 3 Novel U 0.09637274108323195 0.7342435853769468 1.0 1121 -77777 Ulbp1 UL16 binding protein 1 Novel U 0.0962370587659065 0.7328381923944057 1.0 1122 -213948 Atg9b autophagy related 9B Novel U 0.09605332809971442 0.7309351161938085 1.0 1123 -14256 Flt3l FMS-like tyrosine kinase 3 ligand Novel N 0.09595403766306577 0.729906669114999 1.0 1124 -54160 Copg2 coatomer protein complex, subunit gamma 2 Novel N 0.09584797961073135 0.7288081232953898 1.0 1125 -209387 Trim30d tripartite motif-containing 30D Novel U 0.09581082534676462 0.728423280650603 1.0 1126 -50931 Il27ra interleukin 27 receptor, alpha Novel N 0.09568862672396751 0.7271575513327339 1.0 1127 -219144 Arl11 ADP-ribosylation factor-like 11 Novel U 0.09565542456100626 0.7268136444202435 1.0 1128 -71607 Snx20 sorting nexin 20 Novel U 0.0956401902833854 0.7266558482734465 1.0 1129 -66682 Trappc5 trafficking protein particle complex 5 Novel U 0.09560636792349653 0.7263055173815678 1.0 1130 -18195 Nsf N-ethylmaleimide sensitive fusion protein Novel U 0.09540292709543495 0.7241982839722629 1.0 1131 -53868 Rab25 RAB25, member RAS oncogene family Novel U 0.09527773289004086 0.7229015265083288 1.0 1132 -11798 Xiap X-linked inhibitor of apoptosis Novel U 0.0952293436485744 0.7224003123359298 1.0 1133 -225028 Map4k3 mitogen-activated protein kinase kinase kinase kinase 3 Novel N 0.09520140794592293 0.7221109552462026 1.0 1134 -77980 Sbf1 SET binding factor 1 Novel N 0.09494034191339738 0.7194068418633865 1.0 1135 -56717 Mtor mechanistic target of rapamycin kinase Novel U 0.09483774443476789 0.7183441405524528 1.0 1136 -75695 Rilpl1 Rab interacting lysosomal protein-like 1 Novel N 0.09449266664583257 0.7147698361584819 1.0 1137 -266632 Irak4 interleukin-1 receptor-associated kinase 4 Novel U 0.09437899536641511 0.713592432783018 1.0 1138 -67596 Tespa1 thymocyte expressed, positive selection associated 1 Novel U 0.09437043085215814 0.7135037218258874 1.0 1139 -192786 Rapgef6 Rap guanine nucleotide exchange factor (GEF) 6 Novel U 0.09435315935489738 0.7133248242250304 1.0 1140 -20224 Sar1a secretion associated Ras related GTPase 1A Novel U 0.09428942706961832 0.7126646873091959 1.0 1141 -433031 Or5ac15 olfactory receptor family 5 subfamily AC member 15 Novel U 0.09420482854535049 0.7117884185758564 1.0 1142 -18760 Prkd1 protein kinase D1 Novel U 0.09409269375788155 0.7106269301334858 1.0 1143 -11502 Adam9 ADAM metallopeptidase domain 9 Novel U 0.09401369001909718 0.7098086120042651 1.0 1144 -16367 Irs1 insulin receptor substrate 1 Novel U 0.09400973685287939 0.7097676652385346 1.0 1145 -14367 Fzd5 frizzled class receptor 5 Novel U 0.09391005966705492 0.7087352122244758 1.0 1146 -246710 Rhobtb2 Rho-related BTB domain containing 2 Novel U 0.09384758144090814 0.7080880648119084 1.0 1147 -68521 Entrep3 endosomal transmembrane epsin interactor 3 Novel U 0.0937957253565376 0.7075509411946754 1.0 1148 -258459 Or2y16 olfactory receptor family 2 subfamily Y member 16 Novel U 0.09306370311402426 0.6999686788706572 1.0 1149 -16188 Il3ra interleukin 3 receptor, alpha chain Novel U 0.09302539691085585 0.6995719044774873 1.0 1150 -258638 Or5d36 olfactory receptor family 5 subfamily D member 36 Novel U 0.09297894764424183 0.6990907845008367 1.0 1151 -329260 Dennd1b DENN domain containing 1B Novel U 0.09292809161027461 0.6985640193728063 1.0 1152 -56334 Tmed2 transmembrane p24 trafficking protein 2 Novel U 0.09288721553884026 0.6981406263686177 1.0 1153 -269881 Map3k10 mitogen-activated protein kinase kinase kinase 10 Novel U 0.09285513589194658 0.6978083464406546 1.0 1154 -56149 Tamalin trafficking regulator and scaffold protein tamalin Novel U 0.09268709709762357 0.6960678061330348 1.0 1155 -20312 Cx3cl1 C-X3-C motif chemokine ligand 1 Novel U 0.0926484225821069 0.6956672167726692 1.0 1156 -21354 Tap1 transporter 1, ATP-binding cassette, sub-family B (MDR/TAP) Novel U 0.09227280457380459 0.6917765777904508 1.0 1157 -258879 Or2t48 olfactory receptor family 2 subfamily T member 48 Novel U 0.09220058643403514 0.6910285446727623 1.0 1158 -234678 Phaf1 phagosome assembly factor 1 Novel U 0.0921392930433799 0.6903936697472669 1.0 1159 -26382 Fgd2 FYVE, RhoGEF and PH domain containing 2 Novel U 0.09204521376026803 0.689419199625484 1.0 1160 -15945 Cxcl10 C-X-C motif chemokine ligand 10 Novel U 0.09192527918391276 0.688176921226233 1.0 1161 -76510 Trappc9 trafficking protein particle complex 9 Novel U 0.09185441607632162 0.6874429234873032 1.0 1162 -13856 Epo erythropoietin Novel U 0.0918499965057138 0.6873971457202328 1.0 1163 -12045 Bcl2a1b B cell leukemia/lymphoma 2 related protein A1b Novel U 0.09181979000999792 0.6870842678305928 1.0 1164 -66629 Golph3 golgi phosphoprotein 3 Novel U 0.091801571431095 0.6868955603892201 1.0 1165 -259058 Or52d1 olfactory receptor family 52 subfamily D member 1 Novel U 0.09169949185566519 0.6858382235026033 1.0 1166 -268451 Rab11fip4 RAB11 family interacting protein 4 (class II) Known P 0.09142797023770395 0.6830258115095531 1.0 1167 -105171 Arrdc3 arrestin domain containing 3 Novel U 0.09131196566210327 0.6818242399289263 1.0 1168 -73683 Atg16l2 autophagy related 16 like 2 Novel U 0.09121803240995446 0.6808512823910583 1.0 1169 -18211 Ntrk1 neurotrophic tyrosine kinase, receptor, type 1 Known P 0.09085532006783895 0.6770943198749517 1.0 1170 -112407 Egln3 egl-9 family hypoxia-inducible factor 3 Novel N 0.0907900301646282 0.6764180492037847 1.0 1171 -231876 Lmtk2 lemur tyrosine kinase 2 Novel U 0.09072616747416522 0.675756561555342 1.0 1172 -20437 Siah1a siah E3 ubiquitin protein ligase 1A Novel U 0.090544200571179 0.6738717543560505 1.0 1173 -94245 Dtnbp1 dystrobrevin binding protein 1 Novel N 0.09029962218707713 0.6713384194936046 1.0 1174 -211323 Nrg1 neuregulin 1 Novel U 0.09021079788854391 0.6704183803293391 1.0 1175 -239618 Pdzrn4 PDZ domain containing RING finger 4 Novel U 0.0900303039532626 0.6685488300811138 1.0 1176 -258345 Or12e9 olfactory receptor family 12 subfamily E member 9 Novel U 0.0900073366530145 0.6683109355401532 1.0 1177 -13643 Efnb3 ephrin B3 Novel U 0.08999702696718914 0.6682041481532869 1.0 1178 -76608 Hectd3 HECT domain E3 ubiquitin protein ligase 3 Novel U 0.08997774902299331 0.6680044678410347 1.0 1179 -15519 Hsp90aa1 heat shock protein 90, alpha (cytosolic), class A member 1 Novel U 0.08997247000939684 0.6679497879917408 1.0 1180 -258540 Or6c202 olfactory receptor family 6 subfamily C member 202 Novel U 0.08969627305293389 0.6650889489961833 1.0 1181 -259031 Or12e8 olfactory receptor family 12 subfamily E member 8 Novel U 0.0896018277779791 0.6641106879429228 1.0 1182 -60510 Syt9 synaptotagmin IX Novel U 0.0893550755972663 0.6615548369666405 1.0 1183 -230398 Ifna16 interferon alpha 16 Novel U 0.08928403067574728 0.6608189560050225 1.0 1184 -11480 Acvr2a activin receptor IIA Novel U 0.08922607421546795 0.6602186448946653 1.0 1185 -20401 Sh3bp1 SH3-domain binding protein 1 Novel U 0.08905039042215121 0.658398917938784 1.0 1186 -94176 Dock2 dedicator of cyto-kinesis 2 Novel U 0.08902138592567413 0.6580984903177459 1.0 1187 -73174 Tbkbp1 TBK1 binding protein 1 Novel U 0.08882302019811218 0.6560438246325813 1.0 1188 -54473 Tollip toll interacting protein Novel U 0.08876653503626428 0.6554587531830104 1.0 1189 -72121 Dennd2d DENN domain containing 2D Novel U 0.0886072692387456 0.6538090832878929 1.0 1190 -12704 Cit citron Novel U 0.08851961491610508 0.652901162695463 1.0 1191 -74781 Wipi2 WD repeat domain, phosphoinositide interacting 2 Novel U 0.08848984447253999 0.6525928014196666 1.0 1192 -101476 Plekha1 pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 1 Novel U 0.08796423232015484 0.6471485280238298 1.0 1193 -216724 Rufy1 RUN and FYVE domain containing 1 Known P 0.08785559450831933 0.6460232611401133 1.0 1194 -12927 Bcar1 breast cancer anti-estrogen resistance 1 Novel U 0.08781221785239056 0.6455739671639339 1.0 1195 -71517 Vps35l VPS35 endosomal protein sorting factor like Novel U 0.08777006836024336 0.6451373841098631 1.0 1196 -19698 Relb avian reticuloendotheliosis viral (v-rel) oncogene related B Novel U 0.08746552185947744 0.6419829014663566 1.0 1197 -111173 Erc1 ELKS/RAB6-interacting/CAST family member 1 Novel U 0.08738709665662521 0.6411705757933029 1.0 1198 -19882 Mst1r macrophage stimulating 1 receptor (c-met-related tyrosine kinase) Novel U 0.08716275996771483 0.6388469037442406 1.0 1199 -240753 Plekha6 pleckstrin homology domain containing, family A member 6 Novel U 0.08710928271507364 0.6382929881193531 1.0 1200 -94232 Ubqln4 ubiquilin 4 Novel U 0.08709931138342054 0.6381897053938802 1.0 1201 -72049 Tnfrsf13c tumor necrosis factor receptor superfamily, member 13c Novel U 0.08709282206866319 0.6381224892849483 1.0 1202 -109332 Cdcp1 CUB domain containing protein 1 Novel U 0.08698072976584346 0.6369614408971775 1.0 1203 -107975 Pacs1 phosphofurin acidic cluster sorting protein 1 Novel U 0.08697869747571808 0.6369403905028668 1.0 1204 -17171 Mas1 MAS1 oncogene Novel N 0.08693338172812702 0.6364710114789935 1.0 1205 -18176 Nras neuroblastoma ras oncogene Novel U 0.08680065266813591 0.6350962082388385 1.0 1206 -11876 Artn artemin Novel N 0.08678610855071493 0.634945560748704 1.0 1207 -73914 Irak3 interleukin-1 receptor-associated kinase 3 Novel U 0.08655938648141458 0.6325971810079775 1.0 1208 -30957 Mapk8ip3 mitogen-activated protein kinase 8 interacting protein 3 Novel U 0.08647547173118374 0.6317279947836353 1.0 1209 -229488 Fhip1a FHF complex subunit HOOK interacting protein 1A Novel N 0.08638749506451236 0.6308167353623303 1.0 1210 -11552 Adra2b adrenergic receptor, alpha 2b Novel U 0.08632100887427872 0.6301280735895061 1.0 1211 -404549 Ifna14 interferon alpha 14 Novel U 0.08625559675002151 0.6294505369567576 1.0 1212 -54634 Magix MAGI family member, X-linked Novel U 0.08612665673273184 0.628114980496346 1.0 1213 -72607 Usp13 ubiquitin specific peptidase 13 (isopeptidase T-3) Novel U 0.08604611537612723 0.6272807357722899 1.0 1214 -20324 Cavin2 caveolae associated 2 Novel U 0.08604348819226655 0.6272535234882249 1.0 1215 -233405 Vps33b vacuolar protein sorting 33B Novel U 0.08602761382808802 0.6270890973459053 1.0 1216 -21933 Tnfrsf10b tumor necrosis factor receptor superfamily, member 10b Novel U 0.08599701862588731 0.6267721932472735 1.0 1217 -209815 Tbc1d25 TBC1 domain family, member 25 Novel U 0.08587382904281014 0.6254961995953996 1.0 1218 -13642 Efnb2 ephrin B2 Novel U 0.0857722438885055 0.6244439839065442 1.0 1219 -18846 Plxna3 plexin A3 Novel U 0.08574925804287145 0.6242058972730856 1.0 1220 -27359 Sytl4 synaptotagmin-like 4 Novel U 0.08563619686484716 0.6230348133077961 1.0 1221 -217887 Clba1 clathrin binding box of aftiphilin containing 1 Novel U 0.08556800692531916 0.6223285041557886 1.0 1222 -14682 Gnaq guanine nucleotide binding protein, alpha q polypeptide Novel U 0.08556418258304563 0.6222888917442377 1.0 1223 -104303 Arl1 ADP-ribosylation factor-like 1 Novel U 0.0855176060343444 0.621806453383912 1.0 1224 -219135 Mtmr6 myotubularin related protein 6 Novel U 0.08538722526464228 0.6204559736573744 1.0 1225 -258135 Or52ab2 olfactory receptor family 52 subfamily AB member 2 Novel U 0.08538340559445479 0.6204164096391372 1.0 1226 -16642 Klrc2 killer cell lectin-like receptor subfamily C, member 2 Novel U 0.08520368426526494 0.6185548620194092 1.0 1227 -269338 Vps39 VPS39 HOPS complex subunit Novel U 0.08515193904303867 0.618018886708622 1.0 1228 -230126 Shb src homology 2 domain-containing transforming protein B Novel N 0.08509410306220441 0.6174198235203963 1.0 1229 -84004 Mcam melanoma cell adhesion molecule Novel U 0.08503638302112655 0.616821961232356 1.0 1230 -56350 Arl3 ADP-ribosylation factor-like 3 Novel U 0.08503113900513937 0.6167676438871484 1.0 1231 -103199 Fig4 FIG4 phosphoinositide 5-phosphatase Novel U 0.0848637222339161 0.6150335464743477 1.0 1232 -75083 Usp50 ubiquitin specific peptidase 50 Novel U 0.08473981220329424 0.6137500904504893 1.0 1233 -232790 Oscar osteoclast associated receptor Novel N 0.0847118972789827 0.6134609485821242 1.0 1234 -64540 Tspan4 tetraspanin 4 Novel N 0.0846320522676768 0.612633916579781 1.0 1235 -74498 Gorasp1 golgi reassembly stacking protein 1 Novel U 0.08445048881226883 0.6107532882772423 1.0 1236 -20847 Stat2 signal transducer and activator of transcription 2 Novel U 0.08441366467838561 0.6103718651090081 1.0 1237 -258862 Or6c201 olfactory receptor family 6 subfamily C member 201 Novel U 0.08432301057501207 0.6094328728863581 1.0 1238 -13839 Epha5 Eph receptor A5 Novel U 0.08421634646328174 0.6083280495234492 1.0 1239 -104445 Cdc42ep1 CDC42 effector protein 1 Novel U 0.08394631011927035 0.6055310219491458 1.0 1240 -381809 Clec4b2 C-type lectin domain family 4, member b2 Novel U 0.0835917168353307 0.6018581563707253 1.0 1241 -20199 S100a5 S100 calcium binding protein A5 Novel U 0.08357994897438896 0.6017362652539382 1.0 1242 -74140 Tm9sf1 transmembrane 9 superfamily member 1 Novel U 0.08357531618890061 0.6016882790141446 1.0 1243 -18457 Bloc1s6 biogenesis of lysosomal organelles complex-1, subunit 6, pallidin Novel U 0.08341557788927215 0.6000337149577066 1.0 1244 -75292 Prkd3 protein kinase D3 Novel N 0.08328672420034869 0.5986990526836743 1.0 1245 -54161 Copg1 coatomer protein complex, subunit gamma 1 Novel U 0.0832407184220011 0.5982225263439085 1.0 1246 -12143 Blk B lymphoid kinase Novel U 0.08311943202867367 0.5969662458688983 1.0 1247 -433961 Gm5565 predicted gene 5565 Novel U 0.08307082524367562 0.5964627783877505 1.0 1248 -67881 Mdp1 magnesium-dependent phosphatase 1 Novel U 0.08305745013235209 0.5963242394243445 1.0 1249 -24108 Ubd ubiquitin D Novel U 0.08297389995863672 0.5954588294715647 1.0 1250 -110542 Amhr2 anti-Mullerian hormone type 2 receptor Novel N 0.08287582488059005 0.5944429710372018 1.0 1251 -18016 Nf2 neurofibromin 2 Novel U 0.08283063022905927 0.5939748463223402 1.0 1252 -68423 Ankrd13d ankyrin repeat domain 13 family, member D Novel U 0.08279725628296254 0.5936291600857796 1.0 1253 -208117 Aph1b aph1 homolog B, gamma secretase subunit Novel U 0.08275556314973573 0.5931973039824042 1.0 1254 -217325 Llgl2 LLGL2 scribble cell polarity complex component Novel N 0.08263118932304854 0.5919090439741477 1.0 1255 -15965 Ifna2 interferon alpha 2 Novel U 0.08220513544330811 0.587495991893563 1.0 1256 -17966 Nbr1 NBR1, autophagy cargo receptor Novel U 0.08219439332333929 0.5873847253680542 1.0 1257 -73124 Golim4 golgi integral membrane protein 4 Novel U 0.08219029256708438 0.587342249869571 1.0 1258 -57916 Tnfrsf13b tumor necrosis factor receptor superfamily, member 13b Novel U 0.08208456755109028 0.5862471536294268 1.0 1259 -193003 Pirt phosphoinositide-interacting regulator of transient receptor potential channels Novel U 0.0820197795962777 0.5855760821232673 1.0 1260 -16992 Lta lymphotoxin A Novel N 0.08197551086196625 0.5851175480285256 1.0 1261 -68149 Otub2 OTU domain, ubiquitin aldehyde binding 2 Novel N 0.08187044130065352 0.5840292409664241 1.0 1262 -15974 Ifnab interferon alpha B Novel U 0.0818355857932293 0.5836682087663372 1.0 1263 -102657 Cd276 CD276 antigen Novel U 0.08158407295498009 0.5810630470557909 1.0 1264 -13383 Dlg1 discs large MAGUK scaffold protein 1 Novel U 0.08151811600336803 0.5803798671192113 1.0 1265 -102639650 Vamp9 vesicle-associated membrane protein 9 Novel U 0.08144006012483364 0.5795713668953009 1.0 1266 -243262 Oas1f 2'-5' oligoadenylate synthetase 1F Novel U 0.08143186906156576 0.5794865241312388 1.0 1267 -26408 Map3k5 mitogen-activated protein kinase kinase kinase 5 Novel U 0.08134761257659087 0.5786137982296516 1.0 1268 -16164 Il13ra1 interleukin 13 receptor, alpha 1 Novel N 0.0812626490130621 0.5777337484316474 1.0 1269 -73998 Herc3 hect domain and RLD 3 Novel U 0.08120045111171939 0.5770895046141854 1.0 1270 -15944 Irgm1 immunity-related GTPase family M member 1 Novel U 0.08117102241203956 0.5767846831103182 1.0 1271 -16414 Itgb2 integrin beta 2 Novel U 0.08104257686716707 0.5754542483789487 1.0 1272 -213522 Plekhg6 pleckstrin homology domain containing, family G (with RhoGef domain) member 6 Novel U 0.08099309602625161 0.5749417274553414 1.0 1273 -100972 Rab28 RAB28, member RAS oncogene family Novel N 0.08075824948911954 0.5725091947438915 1.0 1274 -20292 Ccl11 C-C motif chemokine ligand 11 Novel U 0.08059364792325768 0.5708042571356794 1.0 1275 -268396 Sh3pxd2b SH3 and PX domains 2B Novel U 0.08057428508812113 0.5706036975258538 1.0 1276 -240354 Malt1 MALT1 paracaspase Novel U 0.08054004865105636 0.5702490776361993 1.0 1277 -20300 Ccl25 C-C motif chemokine ligand 25 Novel U 0.08022652495335922 0.5670016094819886 1.0 1278 -211446 Exoc3 exocyst complex component 3 Novel U 0.07998758702723076 0.5645266982978112 1.0 1279 -20297 Ccl20 C-C motif chemokine ligand 20 Novel U 0.07977960681574153 0.562372446104187 1.0 1280 -207792 BC034090 cDNA sequence BC034090 Novel U 0.07972912848636074 0.5618495932278464 1.0 1281 -68420 Ankrd13a ankyrin repeat domain 13a Novel U 0.07972413367091684 0.5617978570936742 1.0 1282 -93841 Uchl4 ubiquitin carboxyl-terminal esterase L4 Novel U 0.07965930168419165 0.5611263295064115 1.0 1283 -13845 Ephb3 Eph receptor B3 Novel U 0.07962235122811073 0.5607435978970061 1.0 1284 -58178 Sorcs1 sortilin-related VPS10 domain containing receptor 1 Novel U 0.07915812860191265 0.5559351951953432 1.0 1285 -11744 Anxa11 annexin A11 Novel U 0.07905336532264133 0.5548500605925581 1.0 1286 -107767 Scamp1 secretory carrier membrane protein 1 Novel U 0.07902055518262542 0.5545102142408486 1.0 1287 -404194 Gfral GDNF family receptor alpha like Novel U 0.0787461759066692 0.5516682027202269 1.0 1288 -51799 Rundc3a RUN domain containing 3A Novel N 0.07870398840239769 0.551231225937822 1.0 1289 -71779 Marchf8 membrane associated ring-CH-type finger 8 Novel U 0.07870379661300571 0.5512292393896047 1.0 1290 -13846 Ephb4 Eph receptor B4 Novel U 0.07864017032095047 0.5505702003480982 1.0 1291 -12516 Cd7 CD7 antigen Novel U 0.07855671708844303 0.5497057945091633 1.0 1292 -108030 Lin7a lin-7 homolog A, crumbs cell polarity complex component Novel N 0.0785338209619298 0.549468637183409 1.0 1293 -18570 Pdcd6 programmed cell death 6 Novel U 0.07841497176964765 0.5482376011567072 1.0 1294 -73945 Otud4 OTU domain containing 4 Novel U 0.07826827907489214 0.5467181630466923 1.0 1295 -16565 Kif21b kinesin family member 21B Novel U 0.07824219562318346 0.546447991511341 1.0 1296 -26419 Mapk8 mitogen-activated protein kinase 8 Novel U 0.07823696004611076 0.5463937615761323 1.0 1297 -66687 Tbc1d15 TBC1 domain family, member 15 Novel U 0.07817253042606098 0.5457264016896664 1.0 1298 -242362 Manea mannosidase, endo-alpha Novel U 0.07813302028856857 0.5453171569843458 1.0 1299 -12229 Btk Bruton agammaglobulinemia tyrosine kinase Novel U 0.07811808707754593 0.5451624792754761 1.0 1300 -74270 Usp20 ubiquitin specific peptidase 20 Novel U 0.0780742677946462 0.544708600583682 1.0 1301 -226278 Prlhr prolactin releasing hormone receptor Novel N 0.07787395881270687 0.5426338067335575 1.0 1302 -56705 Ranbp9 RAN binding protein 9 Novel U 0.07769054536085603 0.5407340162286789 1.0 1303 -233977 Ppfia1 protein tyrosine phosphatase, receptor type, f polypeptide (PTPRF), interacting protein (liprin), alpha 1 Novel U 0.07761558280246905 0.539957556513168 1.0 1304 -244895 Peak1 pseudopodium-enriched atypical kinase 1 Novel U 0.07760471152496193 0.5398449521781232 1.0 1305 -75620 Kxd1 KxDL motif containing 1 Novel U 0.0771240954302675 0.5348667464686815 1.0 1306 -16170 Il16 interleukin 16 Novel U 0.07697017855148172 0.5332724804979632 1.0 1307 -12487 Cd28 CD28 antigen Novel U 0.07688966984738677 0.5324385739875287 1.0 1308 -230101 Gba2 glucosidase beta 2 Novel N 0.07669914660961447 0.5304651405537972 1.0 1309 -20439 Siah2 siah E3 ubiquitin protein ligase 2 Novel U 0.07666147227960896 0.530074911082077 1.0 1310 -231874 Ccz1 CCZ1 vacuolar protein trafficking and biogenesis associated Novel U 0.07652147474018679 0.5286248211709135 1.0 1311 -108123 Napg N-ethylmaleimide sensitive fusion protein attachment protein gamma Novel U 0.0764247035280402 0.5276224681366813 1.0 1312 -20346 Sema3a sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3A Novel U 0.0760436108630363 0.5236751228403175 1.0 1313 -50723 Icosl icos ligand Novel U 0.07602559305527978 0.5234884949798789 1.0 1314 -18049 Ngf nerve growth factor Novel U 0.07592686123313394 0.5224658340117262 1.0 1315 -76954 Dennd2b DENN domain containing 2B Novel U 0.0758623079389054 0.5217971931121822 1.0 1316 -20528 Slc2a4 solute carrier family 2 (facilitated glucose transporter), member 4 Novel N 0.07583027993803687 0.5214654481320498 1.0 1317 -83563 Usp26 ubiquitin specific peptidase 26 Novel U 0.07579096849075398 0.5210582614533877 1.0 1318 -17480 Mpl myeloproliferative leukemia virus oncogene Novel U 0.07578007564904041 0.5209454337570014 1.0 1319 -229900 Gbp7 guanylate binding protein 7 Novel U 0.0757117518016871 0.5202377375921414 1.0 1320 -230514 Leprot leptin receptor overlapping transcript Novel U 0.07556949470642835 0.5187642432759013 1.0 1321 -14677 Gnai1 G protein subunit alpha i1 Novel U 0.07543636915393451 0.5173853331794369 1.0 1322 -78294 Rps27a ribosomal protein S27A Novel N 0.07540848414595865 0.5170965011834933 1.0 1323 -12767 Cxcr4 C-X-C motif chemokine receptor 4 Known P 0.07539835464947367 0.5169915801918911 1.0 1324 -16412 Itgb1 integrin beta 1 (fibronectin receptor beta) Novel U 0.07531883989007283 0.5161679689279242 1.0 1325 -12540 Cdc42 cell division cycle 42 Novel U 0.07517193221270918 0.5146463040351212 1.0 1326 -231855 Ap5z1 adaptor-related protein complex 5, zeta 1 subunit Novel U 0.07512311482431841 0.5141406551309547 1.0 1327 -242122 Vtcn1 V-set domain containing T cell activation inhibitor 1 Novel U 0.0750632256048346 0.5135203245642935 1.0 1328 -67887 Saraf store-operated calcium entry-associated regulatory factor Novel N 0.07504525981566403 0.5133342355106583 1.0 1329 -231830 Micall2 MICAL-like 2 Novel U 0.07499894897977535 0.51285454939491 1.0 1330 -11632 Aip aryl-hydrocarbon receptor-interacting protein Novel U 0.07462128049680168 0.5089426716634514 1.0 1331 -117149 Tirap toll-interleukin 1 receptor (TIR) domain-containing adaptor protein Novel U 0.07457875605764293 0.5085022049205606 1.0 1332 -70829 Ccdc93 coiled-coil domain containing 93 Novel U 0.07439675748507826 0.5066170696888166 1.0 1333 -16963 Xcl1 chemokine (C motif) ligand 1 Novel U 0.07439140110183025 0.5065615884472153 1.0 1334 -56434 Tspan3 tetraspanin 3 Novel U 0.07437290483367887 0.5063700047097354 1.0 1335 -20969 Sdc1 syndecan 1 Novel U 0.07419451698671381 0.5045222692550559 1.0 1336 -59126 Nek6 NIMA (never in mitosis gene a)-related expressed kinase 6 Novel U 0.07415502233751392 0.5041131849769601 1.0 1337 -68585 Rtn4 reticulon 4 Novel U 0.07411814015665517 0.5037311605600616 1.0 1338 -226970 Arhgef4 Rho guanine nucleotide exchange factor 4 Novel U 0.07404284864180409 0.5029512935243092 1.0 1339 -16594 Klc2 kinesin light chain 2 Novel U 0.07398091494427392 0.5023097863212523 1.0 1340 -69834 Rab43 RAB43, member RAS oncogene family Novel U 0.07359867923664543 0.4983506014269585 1.0 1341 -16419 Itgb5 integrin beta 5 Novel U 0.07356764234823314 0.49802912235706676 1.0 1342 -432940 Otulin OTU deubiquitinase with linear linkage specificity Novel U 0.07351728298450419 0.4975075017230372 1.0 1343 -258258 Or4f57 olfactory receptor family 4 subfamily F member 57 Novel U 0.07347347539102979 0.4970537441099264 1.0 1344 -16834 Cog1 component of oligomeric golgi complex 1 Novel U 0.07342863884648819 0.49658932865548655 1.0 1345 -80837 Rhoj ras homolog family member J Novel U 0.07338008958587187 0.49608645700999376 1.0 1346 -76074 Gbp8 guanylate-binding protein 8 Novel U 0.07337844779173204 0.4960694513602644 1.0 1347 -259104 Or51ab3 olfactory receptor family 51 subfamily AB member 3 Novel U 0.07328833996914975 0.4951361174960922 1.0 1348 -19339 Rab3a RAB3A, member RAS oncogene family Novel U 0.07322123987162091 0.4944410968916853 1.0 1349 -60595 Actn4 actinin alpha 4 Novel U 0.07291994471890058 0.49132029160435275 1.0 1350 -13363 Dhh desert hedgehog Novel U 0.07287667005842893 0.4908720540937653 1.0 1351 -104799 Vipas39 VPS33B interacting protein, apical-basolateral polarity regulator, spe-39 homolog Novel U 0.07278213985600479 0.489892913364569 1.0 1352 -218441 Zfyve16 zinc finger, FYVE domain containing 16 Novel U 0.07270976693950867 0.48914327707463373 1.0 1353 -20315 Cxcl12 C-X-C motif chemokine ligand 12 Novel U 0.07268276826968614 0.4888636257401454 1.0 1354 -13385 Dlg4 discs large MAGUK scaffold protein 4 Novel U 0.07264437873389817 0.4884659881904416 1.0 1355 -227929 Cytip cytohesin 1 interacting protein Novel N 0.07256555275191029 0.48764951126027567 1.0 1356 -21928 Tnfaip2 tumor necrosis factor, alpha-induced protein 2 Novel U 0.0724637898994983 0.4865954549802658 1.0 1357 -97761 Sgsm2 small G protein signaling modulator 2 Novel U 0.07244535400481193 0.48640449658915186 1.0 1358 -67561 Wdr48 WD repeat domain 48 Novel U 0.07241371819276213 0.4860768138879113 1.0 1359 -11308 Abi1 abl interactor 1 Novel U 0.07238838661381307 0.4858144302258877 1.0 1360 -626578 Gbp10 guanylate-binding protein 10 Novel U 0.07233967979540028 0.48530992660191846 1.0 1361 -258286 Or14j2 olfactory receptor family 14 subfamily J member 2 Novel U 0.07212777598017826 0.4831150338498115 1.0 1362 -15968 Ifna5 interferon alpha 5 Novel U 0.07211369573718379 0.48296919115573783 1.0 1363 -26398 Map2k4 mitogen-activated protein kinase kinase 4 Novel U 0.07192868893573344 0.48105289678808605 1.0 1364 -19878 Rock2 Rho-associated coiled-coil containing protein kinase 2 Novel U 0.07189050023033526 0.4806573394329578 1.0 1365 -16197 Il7r interleukin 7 receptor Novel U 0.07187054424497015 0.48045063599256366 1.0 1366 -22187 Ubb ubiquitin B Novel U 0.07174202478082473 0.47911943560779513 1.0 1367 -67437 Ssr3 signal sequence receptor, gamma Novel U 0.07165530127779592 0.47822115641430435 1.0 1368 -20293 Ccl12 C-C motif chemokine ligand 12 Novel U 0.07163903251741834 0.47805264512912005 1.0 1369 -215474 Sec22c SEC22 homolog C, vesicle trafficking protein Novel U 0.07159454308652718 0.47759182506646075 1.0 1370 -217835 Rin3 Ras and Rab interactor 3 Novel U 0.07156207734216083 0.4772555459535679 1.0 1371 -93840 Vangl2 VANGL planar cell polarity 2 Novel N 0.0715506813486125 0.4771375066270175 1.0 1372 -229658 Vangl1 VANGL planar cell polarity 1 Novel U 0.07132301065704494 0.47477930108803146 1.0 1373 -54645 Gripap1 GRIP1 associated protein 1 Novel U 0.07123132735759474 0.4738296484862524 1.0 1374 -105835 Sgsm3 small G protein signaling modulator 3 Novel U 0.07120386147928924 0.4735451578216562 1.0 1375 -380752 Eipr1 EARP complex and GARP complex interacting protein 1 Novel U 0.0711747057941968 0.47324316419391016 1.0 1376 -545649 Gm13276 predicted gene 13276 Novel U 0.0710414405537874 0.47186280721460844 1.0 1377 -19886 Ros1 Ros1 proto-oncogene Novel N 0.07092706793900337 0.4706781394304726 1.0 1378 -14293 Fpr1 formyl peptide receptor 1 Novel N 0.070803628982699 0.46939956277890904 1.0 1379 -171580 Mical1 microtubule associated monooxygenase, calponin and LIM domain containing 1 Novel U 0.07075910339097916 0.46893836816357487 1.0 1380 -77647 Trat1 T cell receptor associated transmembrane adaptor 1 Novel U 0.0707519238460803 0.46886400267352735 1.0 1381 -73844 Ankrd45 ankyrin repeat domain 45 Novel N 0.07074061044790095 0.4687468188670936 1.0 1382 -22029 Traf1 TNF receptor-associated factor 1 Novel U 0.07070221876584182 0.46834915908638364 1.0 1383 -69908 Rab3b RAB3B, member RAS oncogene family Novel U 0.07058994863606145 0.46718626877280034 1.0 1384 -14270 Srgap2 SLIT-ROBO Rho GTPase activating protein 2 Novel U 0.07053622976779604 0.46662985050121986 1.0 1385 -16576 Kif7 kinesin family member 7 Novel U 0.07050845290915503 0.46634213871253133 1.0 1386 -74194 Rnd3 Rho family GTPase 3 Novel U 0.0705052429966066 0.46630889054387487 1.0 1387 -258582 Or5m10b olfactory receptor family 5 subfamily M member 10B Novel U 0.07049144957035383 0.46616601868818314 1.0 1388 -68441 Rraga Ras-related GTP binding A Novel U 0.07047585274241011 0.4660044672570602 1.0 1389 -230735 Epha10 Eph receptor A10 Novel N 0.07041742325095218 0.46539925650530506 1.0 1390 -22330 Vcl vinculin Novel U 0.07024477982118389 0.46361102153511213 1.0 1391 -102639132 Ankrd40cl ANKRD40 C-terminal like Novel U 0.07021118495187766 0.46326304698320997 1.0 1392 -16199 Il9r interleukin 9 receptor Novel U 0.07010409217899165 0.462153783562142 1.0 1393 -244548 Elmod2 ELMO/CED-12 domain containing 2 Novel N 0.07009382196937422 0.4620474050685396 1.0 1394 -243743 Plxna4 plexin A4 Novel U 0.06992265364211893 0.460274449161685 1.0 1395 -103213 Traf3ip2 TRAF3 interacting protein 2 Novel U 0.06981118615637623 0.4591198726086583 1.0 1396 -99526 Usp53 ubiquitin specific peptidase 53 Novel U 0.06979182754105516 0.45891935670754286 1.0 1397 -69146 Gsdmd gasdermin D Novel U 0.06973861532104927 0.4583681862819794 1.0 1398 -103583 Fbxw11 F-box and WD-40 domain protein 11 Novel U 0.06949564546912256 0.45585151254292605 1.0 1399 -26400 Map2k7 mitogen-activated protein kinase kinase 7 Novel U 0.06947229289807749 0.4556096273797157 1.0 1400 -53612 Vti1b vesicle transport through interaction with t-SNAREs 1B Novel U 0.0694581965300949 0.45546361766354515 1.0 1401 -622434 Arhgef26 Rho guanine nucleotide exchange factor 26 Novel U 0.06934808807315489 0.45432311788618107 1.0 1402 -208166 Cd200l1 CD200 molecule like 1 Novel U 0.06925649633480409 0.4533744136712597 1.0 1403 -15001 H2-Oa histocompatibility 2, O region alpha locus Novel U 0.06925327897994535 0.4533410884153977 1.0 1404 -17532 Mras muscle and microspikes RAS Novel U 0.0692447273329637 0.45325251073708206 1.0 1405 -330662 Dock1 dedicator of cytokinesis 1 Novel U 0.06910221801037182 0.451776403858417 1.0 1406 -246730 Oas1a 2'-5' oligoadenylate synthetase 1A Novel U 0.06908857384211914 0.45163507801218356 1.0 1407 -20304 Ccl5 C-C motif chemokine ligand 5 Novel U 0.068998825895356 0.45070547172991576 1.0 1408 -27279 Tnfrsf12a tumor necrosis factor receptor superfamily, member 12a Novel U 0.06898431822512605 0.4505552017585879 1.0 1409 -11980 Atp8a1 ATPase phospholipid transporting 8A1 Novel N 0.06876100660021442 0.4482421472887275 1.0 1410 -237542 Osbpl8 oxysterol binding protein-like 8 Novel U 0.06857867917728185 0.44635360583568306 1.0 1411 -16973 Lrp5 low density lipoprotein receptor-related protein 5 Novel U 0.06844363583134762 0.4449548312978072 1.0 1412 -319642 Rab9b RAB9B, member RAS oncogene family Novel U 0.06839086381446369 0.44440822048171 1.0 1413 -22165 Txk TXK tyrosine kinase Novel U 0.06837828227454956 0.4442779013048754 1.0 1414 -259093 Or51h5 olfactory receptor family 51 subfamily H member 5 Novel U 0.0682157319778341 0.4425942106750497 1.0 1415 -114713 Rasa2 RAS p21 protein activator 2 Novel U 0.0681599581124515 0.4420165068108839 1.0 1416 -545645 Gm13283 predicted gene 13283 Novel U 0.06813671828224999 0.4417757894136249 1.0 1417 -14747 Cmklr1 chemerin chemokine-like receptor 1 Novel U 0.068118327316159 0.4415852963914248 1.0 1418 -78405 Ntf5 neurotrophin 5 Novel U 0.06805160262970827 0.4408941642826242 1.0 1419 -83430 Il23a interleukin 23, alpha subunit p19 Novel U 0.06798906785356577 0.4402464311270602 1.0 1420 -80888 Hspb8 heat shock protein 8 Novel U 0.06792299253666802 0.43956202516674225 1.0 1421 -74370 Rptor regulatory associated protein of MTOR, complex 1 Novel U 0.06773943940802488 0.4376607878942407 1.0 1422 -14683 Gnas GNAS complex locus Novel U 0.06771983839806964 0.4374577612774728 1.0 1423 -59289 Ackr2 atypical chemokine receptor 2 Novel N 0.06769946206983105 0.4372467039394132 1.0 1424 -14961 H2-Ab1 histocompatibility 2, class II antigen A, beta 1 Novel U 0.06765461060088628 0.43678213389849585 1.0 1425 -74126 Syvn1 synovial apoptosis inhibitor 1, synoviolin Novel U 0.06758918640525598 0.4361044722308618 1.0 1426 -13838 Epha4 Eph receptor A4 Novel U 0.06755483572470858 0.43574866901096965 1.0 1427 -97484 Cog8 component of oligomeric golgi complex 8 Novel U 0.06755445806075866 0.4357447571801914 1.0 1428 -12695 Patj PATJ, crumbs cell polarity complex component Novel U 0.06742384638115347 0.4343918856964685 1.0 1429 -230972 Arhgef16 Rho guanine nucleotide exchange factor 16 Novel U 0.06742250541485577 0.43437799601163884 1.0 1430 -13367 Diaph1 diaphanous related formin 1 Novel U 0.06739561192820903 0.4340994341610277 1.0 1431 -12125 Bcl2l11 BCL2 like 11 Novel U 0.06734407650921005 0.4335656319851719 1.0 1432 -245880 Wasf3 WASP family, member 3 Novel U 0.06733138531696028 0.4334341770330493 1.0 1433 -22601 Yap1 yes-associated protein 1 Novel U 0.0672562141452949 0.43265555650805837 1.0 1434 -217893 Pacs2 phosphofurin acidic cluster sorting protein 2 Novel U 0.0671773191821542 0.43183836507337914 1.0 1435 -64654 Fgf23 fibroblast growth factor 23 Novel U 0.06714802983137434 0.43153498694083703 1.0 1436 -245616 Kir3dl1 killer cell immunoglobulin-like receptor, three domains, long cytoplasmic tail, 1 Novel U 0.06703307464835968 0.43034428493411925 1.0 1437 -68497 Arel1 apoptosis resistant E3 ubiquitin protein ligase 1 Novel U 0.06702916415920482 0.4303037802160036 1.0 1438 -72699 Lime1 Lck interacting transmembrane adaptor 1 Novel U 0.06694627707191782 0.429445238490651 1.0 1439 -77891 Ube2s ubiquitin-conjugating enzyme E2S Novel U 0.0668709745976167 0.4286652579372756 1.0 1440 -12518 Cd79a CD79A antigen (immunoglobulin-associated alpha) Novel U 0.0668505189958853 0.4284533794869834 1.0 1441 -73182 Pear1 platelet endothelial aggregation receptor 1 Novel U 0.06681645905482857 0.428100587737178 1.0 1442 -27643 Ubl4a ubiquitin-like 4A Novel U 0.06681326652118369 0.42806751957863326 1.0 1443 -57439 Tmem183a transmembrane protein 183A Novel U 0.06671610261915088 0.42706109907546863 1.0 1444 -75841 Rnf139 ring finger protein 139 Novel U 0.06670618263903602 0.4269583482475407 1.0 1445 -112405 Egln1 egl-9 family hypoxia-inducible factor 1 Novel U 0.06669208386660878 0.4268123136262115 1.0 1446 -52357 Wwc2 WW, C2 and coiled-coil domain containing 2 Novel N 0.0665732999728198 0.42558195395915543 1.0 1447 -19331 Rab19 RAB19, member RAS oncogene family Novel U 0.06647844146002015 0.4245994126018822 1.0 1448 -244144 Usp35 ubiquitin specific peptidase 35 Novel N 0.06641111253873967 0.42390202184857817 1.0 1449 -109270 Prr5 proline rich 5 (renal) Novel U 0.06636001114217294 0.42337271526280784 1.0 1450 -320404 Itpkb inositol 1,4,5-trisphosphate 3-kinase B Novel U 0.06634208462038486 0.4231870329394296 1.0 1451 -12527 Cd9 CD9 antigen Novel U 0.06629578621400325 0.42270747556810706 1.0 1452 -66513 Tab1 TGF-beta activated kinase 1/MAP3K7 binding protein 1 Novel U 0.06621859107996833 0.42190789090742664 1.0 1453 -56532 Ripk3 receptor-interacting serine-threonine kinase 3 Novel U 0.06607241710629949 0.42039382569337536 1.0 1454 -56047 Msln mesothelin Novel U 0.06604670314300376 0.4201274813068592 1.0 1455 -435965 Lrp3 low density lipoprotein receptor-related protein 3 Novel U 0.06598365741043513 0.4194744556814301 1.0 1456 -15902 Id2 inhibitor of DNA binding 2 Novel U 0.06578939822979674 0.4174623254743042 1.0 1457 -12421 Rb1cc1 RB1-inducible coiled-coil 1 Novel U 0.06559383952187256 0.4154367348062718 1.0 1458 -24057 Sh3yl1 Sh3 domain YSC-like 1 Novel U 0.06554307148783965 0.41491088117866814 1.0 1459 -109181 Trip11 thyroid hormone receptor interactor 11 Novel U 0.06550167307837802 0.414482077814364 1.0 1460 -330122 Cxcl3 C-X-C motif chemokine ligand 3 Novel U 0.06528780418133324 0.41226683080933546 1.0 1461 -239170 Fhip2b FHF complex subunit HOOK interacting protein 2B Novel U 0.06522658626126726 0.4116327376057227 1.0 1462 -20913 Stxbp4 syntaxin binding protein 4 Novel U 0.06516458230381164 0.41099050265266773 1.0 1463 -93742 Pard3 par-3 family cell polarity regulator Known P 0.06509853829870127 0.4103064210188142 1.0 1464 -15000 H2-DMb2 histocompatibility 2, class II, locus Mb2 Novel U 0.06508139445692375 0.4101288456692561 1.0 1465 -54725 Cadm1 cell adhesion molecule 1 Novel U 0.06500246599367712 0.409311307241581 1.0 1466 -19197 Pspn persephin Novel N 0.06493259085029517 0.4085875428034523 1.0 1467 -14688 Gnb1 guanine nucleotide binding protein (G protein), beta 1 Novel U 0.0648854625339431 0.40809938925193756 1.0 1468 -20662 Sos1 SOS Ras/Rac guanine nucleotide exchange factor 1 Novel U 0.06481154336755729 0.407333736956475 1.0 1469 -207425 Wdr11 WD repeat domain 11 Novel U 0.06470549105032825 0.4062352505408987 1.0 1470 -14089 Fap fibroblast activation protein Novel N 0.06463721006499444 0.40552799833942765 1.0 1471 -233789 Smg1 SMG1 nonsense mediated mRNA decay associated PI3K related kinase Novel U 0.06461342569197684 0.40528164058558047 1.0 1472 -18738 Pitpna phosphatidylinositol transfer protein, alpha Novel N 0.0646105507566024 0.4052518620994804 1.0 1473 -259086 Or51af1 olfactory receptor family 51 subfamily AF member 1 Novel U 0.06457188713420874 0.404851385569725 1.0 1474 -327957 Scimp SLP adaptor and CSK interacting membrane protein Novel U 0.06455095382265244 0.4046345590167704 1.0 1475 -12519 Cd80 CD80 antigen Novel U 0.06452480114560302 0.4043636704476155 1.0 1476 -270190 Ephb1 Eph receptor B1 Novel U 0.06444883258300312 0.4035767905735376 1.0 1477 -101314 Brk1 BRICK1, SCAR/WAVE actin-nucleating complex subunit Novel U 0.06436006976534105 0.40265738822611435 1.0 1478 -13641 Efnb1 ephrin B1 Novel U 0.06430205731773124 0.4020564972008285 1.0 1479 -70807 Arrdc2 arrestin domain containing 2 Novel U 0.0642635589737973 0.40165773261992566 1.0 1480 -74012 Rap2b RAP2B, member of RAS oncogene family Novel U 0.06425116540594786 0.4015293604515577 1.0 1481 -12982 Csf2ra colony stimulating factor 2 receptor, alpha, low-affinity (granulocyte-macrophage) Novel U 0.0642467809359187 0.4014839462551273 1.0 1482 -21950 Tnfsf9 tumor necrosis factor (ligand) superfamily, member 9 Novel U 0.06418379189326244 0.40083150782194704 1.0 1483 -16068 Il18bp interleukin 18 binding protein Novel U 0.06417912568025515 0.400783175341011 1.0 1484 -258359 Or4f59 olfactory receptor family 4 subfamily F member 59 Novel U 0.0641073940013496 0.40004018096895927 1.0 1485 -73296 Rhobtb3 Rho-related BTB domain containing 3 Novel U 0.06389706136067846 0.39786156239120074 1.0 1486 -15975 Ifnar1 interferon (alpha and beta) receptor 1 Novel U 0.0638536293263797 0.39741169480768535 1.0 1487 -14923 Guk1 guanylate kinase 1 Novel N 0.06362231386384183 0.3950157368508043 1.0 1488 -67865 Rgs10 regulator of G-protein signalling 10 Novel U 0.06359529540278286 0.39473588051933955 1.0 1489 -57294 Rps27 ribosomal protein S27 Novel U 0.06357857748395229 0.3945627168656645 1.0 1490 -12807 Hps3 HPS3, biogenesis of lysosomal organelles complex 2 subunit 1 Novel N 0.06345990971156397 0.39333355998025915 1.0 1491 -244668 Sipa1l2 signal-induced proliferation-associated 1 like 2 Novel U 0.06342884558150876 0.39301179874232556 1.0 1492 -75964 Trappc8 trafficking protein particle complex 8 Novel U 0.06341593489762237 0.3928780703030463 1.0 1493 -16191 Il5 interleukin 5 Novel U 0.0633771608255722 0.3924764497393795 1.0 1494 -68146 Arl13b ADP-ribosylation factor-like 13B Novel N 0.0633551783596678 0.39224875608017634 1.0 1495 -50915 Grb14 growth factor receptor bound protein 14 Novel U 0.06333494139316492 0.392039142246394 1.0 1496 -17329 Cxcl9 C-X-C motif chemokine ligand 9 Novel U 0.0633133253111072 0.3918152435790305 1.0 1497 -11775 Ap3b2 adaptor-related protein complex 3, beta 2 subunit Novel U 0.06321873044597075 0.3908354330755859 1.0 1498 -69601 Dab2ip disabled 2 interacting protein Novel U 0.06316359335620446 0.3902643249123208 1.0 1499 -242517 Ifna15 interferon alpha 15 Novel U 0.06286919414607436 0.38721494757164604 1.0 1500 -15507 Hspb1 heat shock protein 1 Novel U 0.06283699182720198 0.3868813970113601 1.0 1501 -69608 Sec24d SEC24 homolog D, COPII coat complex component Novel U 0.06282581988387666 0.38676567838965425 1.0 1502 -56753 Tacstd2 tumor-associated calcium signal transducer 2 Novel U 0.06281101129222316 0.3866122914841136 1.0 1503 -381937 Gm5157 predicted gene 5157 Novel U 0.06272373186090571 0.3857082540036842 1.0 1504 -52250 Reep1 receptor accessory protein 1 Novel U 0.06270157195561414 0.38547872243314174 1.0 1505 -20909 Stx4a syntaxin 4A (placental) Novel U 0.06268799594594382 0.38533810257126383 1.0 1506 -77116 Mtmr2 myotubularin related protein 2 Novel U 0.06264654045374356 0.3849087079458294 1.0 1507 -56744 Pf4 platelet factor 4 Novel U 0.06254820362163684 0.3838901382715172 1.0 1508 -50779 Rgs6 regulator of G-protein signaling 6 Novel U 0.06246566224804348 0.3830351774372387 1.0 1509 -14319 Fth1 ferritin heavy polypeptide 1 Novel N 0.06243563928375542 0.3827242005600948 1.0 1510 -14062 F2r coagulation factor II thrombin receptor Known P 0.06241298589951305 0.3824895575508022 1.0 1511 -14388 Gab1 growth factor receptor bound protein 2-associated protein 1 Novel U 0.062372360272656226 0.3820687586433147 1.0 1512 -209630 Frmd4a FERM domain containing 4A Novel U 0.0623298701619766 0.38162864747368225 1.0 1513 -545647 Gm13289 predicted gene 13289 Novel U 0.06231387862000246 0.38146300760760776 1.0 1514 -67784 Plxnd1 plexin D1 Novel U 0.06228682036260697 0.38118273906699757 1.0 1515 -50907 Preb prolactin regulatory element binding Novel U 0.062254769033340006 0.380850752452081 1.0 1516 -19701 Ren1 renin 1 structural Novel U 0.062249124942485815 0.3807922911445529 1.0 1517 -241576 Ldlrad3 low density lipoprotein receptor class A domain containing 3 Novel U 0.062183339575107764 0.38011088847182845 1.0 1518 -18260 Ocln occludin Novel U 0.062080471174674114 0.37904538096175316 1.0 1519 -23859 Dlg2 discs large MAGUK scaffold protein 2 Novel U 0.06201664588382293 0.37838428069726004 1.0 1520 -27060 Tcirg1 T cell, immune regulator 1, ATPase, H+ transporting, lysosomal V0 protein A3 Novel U 0.06195541730075873 0.3777500770466623 1.0 1521 -20295 Ccl17 C-C motif chemokine ligand 17 Novel U 0.06190976366313059 0.37727719816889255 1.0 1522 -257885 Or8b38 olfactory receptor family 8 subfamily B member 38 Novel U 0.061865160158913475 0.37681519653847284 1.0 1523 -66226 Trappc2 trafficking protein particle complex 2 Novel U 0.061753735987629524 0.37566106863518606 1.0 1524 -68861 Dipk2a divergent protein kinase domain 2A Novel U 0.06163182323299935 0.3743983003303926 1.0 1525 -170733 Klra17 killer cell lectin-like receptor, subfamily A, member 17 Novel U 0.06149030446513942 0.3729324535850784 1.0 1526 -14569 Gdi2 GDP dissociation inhibitor 2 Novel U 0.06142147588888203 0.3722195294548219 1.0 1527 -78937 Avl9 AVL9 cell migration associated Novel N 0.061361530101441866 0.3715986129591283 1.0 1528 -213233 Tapbpl TAP binding protein-like Novel U 0.06133517543584246 0.37132563219921255 1.0 1529 -74614 Ocstamp osteoclast stimulatory transmembrane protein Novel U 0.06132694076798703 0.3712403377802662 1.0 1530 -258625 Or14j10 olfactory receptor family 14 subfamily J member 10 Novel U 0.06130319069148112 0.3709943352685596 1.0 1531 -50782 Rgs11 regulator of G-protein signaling 11 Novel N 0.061223246104954554 0.37016627186935425 1.0 1532 -243547 Grip2 glutamate receptor interacting protein 2 Novel U 0.061212146319706395 0.3700513006586396 1.0 1533 -114255 Dok4 docking protein 4 Novel U 0.06115620294495062 0.36947184102195857 1.0 1534 -81003 Trim23 tripartite motif-containing 23 Novel N 0.06102929713523682 0.3681573548167469 1.0 1535 -21938 Tnfrsf1b tumor necrosis factor receptor superfamily, member 1b Novel U 0.061019245053961925 0.36805323568934584 1.0 1536 -12977 Csf1 colony stimulating factor 1 (macrophage) Novel U 0.060962791441289 0.3674684910250922 1.0 1537 -211556 Ap1ar adaptor-related protein complex 1 associated regulatory protein Novel U 0.06095647481643132 0.36740306363246433 1.0 1538 -235574 Atp2c1 ATPase, Ca++-sequestering Novel U 0.060924414666236756 0.36707098565066965 1.0 1539 -22433 Xbp1 X-box binding protein 1 Novel U 0.060845864224869456 0.3662573627611938 1.0 1540 -108995 Tbc1d10c TBC1 domain family, member 10c Novel U 0.060813614044905956 0.3659233164572995 1.0 1541 -208898 Unc13c unc-13 homolog C Novel U 0.06078463364015139 0.3656231383775311 1.0 1542 -226525 Rasal2 RAS protein activator like 2 Novel N 0.06066703351788401 0.3644050401769814 1.0 1543 -381038 Parl presenilin associated, rhomboid-like Novel U 0.0606668749183739 0.3644033974084694 1.0 1544 -258697 Or5b21 olfactory receptor family 5 subfamily B member 21 Novel U 0.06062748947478203 0.36399544427847147 1.0 1545 -12675 Chuk conserved helix-loop-helix ubiquitous kinase Novel U 0.060613032829178064 0.36384570281854217 1.0 1546 -269344 Ell3 elongation factor RNA polymerase II-like 3 Novel N 0.06060225596382757 0.3637340764015122 1.0 1547 -226421 Rab7b RAB7B, member RAS oncogene family Novel U 0.060594352433121945 0.3636522118902779 1.0 1548 -16885 Limk1 LIM domain kinase 1 Novel U 0.06054541890852178 0.3631453600510723 1.0 1549 -58222 Rab37 RAB37, member RAS oncogene family Novel U 0.06052354617836371 0.36291880303112234 1.0 1550 -15586 Hyal1 hyaluronoglucosaminidase 1 Novel U 0.06038535219651091 0.36148739430997345 1.0 1551 -72201 Otud6b OTU domain containing 6B Novel U 0.060252556457041806 0.3601119004059773 1.0 1552 -17828 Bloc1s5 biogenesis of lysosomal organelles complex-1, subunit 5, muted Novel U 0.06022350600216258 0.35981099674932043 1.0 1553 -107868 Usp9y ubiquitin specific peptidase 9, Y chromosome Novel U 0.06013241237360245 0.3588674519392364 1.0 1554 -97998 Deptor DEP domain containing MTOR-interacting protein Novel U 0.06009410117665304 0.35847062582064715 1.0 1555 -69282 1700001J03Rik RIKEN cDNA 1700001J03 gene Novel U 0.060071667605576695 0.3582382596289023 1.0 1556 -224055 Rtp2 receptor transporter protein 2 Novel U 0.060052053697708316 0.35803509941597417 1.0 1557 -12340 Capza1 capping actin protein of muscle Z-line subunit alpha 1 Novel U 0.060036738541167124 0.3578764655279791 1.0 1558 -74190 Exoc3l4 exocyst complex component 3-like 4 Novel U 0.05985174020461709 0.35596025883948657 1.0 1559 -20438 Siah1b siah E3 ubiquitin protein ligase 1B Novel U 0.05979953051444702 0.35541947258500606 1.0 1560 -69582 Plekhm2 pleckstrin homology domain containing, family M (with RUN domain) member 2 Novel U 0.05972551436182671 0.3546528157093148 1.0 1561 -59040 Rhot1 ras homolog family member T1 Novel U 0.059724134233974 0.3546385203903857 1.0 1562 -23832 Xcr1 chemokine (C motif) receptor 1 Novel U 0.05970698515683335 0.3544608908131084 1.0 1563 -244859 Ankk1 ankyrin repeat and kinase domain containing 1 Novel N 0.05956786334387829 0.35301987164790316 1.0 1564 -19734 Rgs16 regulator of G-protein signaling 16 Novel U 0.05954071164369019 0.35273863522991883 1.0 1565 -258928 Or5p56 olfactory receptor family 5 subfamily P member 56 Novel U 0.059537761968745585 0.352708082593808 1.0 1566 -18845 Plxna2 plexin A2 Novel U 0.059475859499014634 0.3520668988472689 1.0 1567 -216144 Vmn2r81 vomeronasal 2, receptor 81 Novel U 0.05942652071647888 0.35155584935968864 1.0 1568 -433486 Gm14151 predicted gene 14151 Novel U 0.05939997460140905 0.35128088557245185 1.0 1569 -100213 Rusc2 RUN and SH3 domain containing 2 Novel U 0.059325636440682686 0.35051089334738367 1.0 1570 -16168 Il15 interleukin 15 Novel U 0.059293448344372224 0.35017749010392657 1.0 1571 -217201 Rundc1 RUN domain containing 1 Novel U 0.059250603058911035 0.34973370004558235 1.0 1572 -83964 Jam3 junction adhesion molecule 3 Novel U 0.05916300523746909 0.34882636469071004 1.0 1573 -60425 Doc2g double C2, gamma Novel U 0.05900823685930971 0.34722327891747157 1.0 1574 -74448 Arl13a ADP-ribosylation factor-like 13A Novel U 0.05897703126916995 0.34690005244063243 1.0 1575 -22363 Vpreb1b V-set pre-B cell surrogate light chain 1B Novel U 0.058945268796242595 0.34657105779018593 1.0 1576 -236643 Sytl5 synaptotagmin-like 5 Novel U 0.05892944716091942 0.3464071778116167 1.0 1577 -76815 Calcoco2 calcium binding and coiled-coil domain 2 Novel U 0.05876799175919255 0.34473482806809025 1.0 1578 -234878 Map3k21 mitogen-activated protein kinase kinase kinase 21 Novel U 0.05870831263425771 0.3441166736538606 1.0 1579 -15194 Htt huntingtin Novel U 0.058434767253658204 0.34128329959393106 1.0 1580 -242406 Rgp1 RAB6A GEF compex partner 1 Novel U 0.05838847611068102 0.3408038174567127 1.0 1581 -19416 Rasd1 RAS, dexamethasone-induced 1 Novel N 0.05832987683132801 0.34019684804752176 1.0 1582 -15529 Sdc2 syndecan 2 Novel U 0.058262327621776314 0.339497175555546 1.0 1583 -21948 Cd70 CD70 antigen Novel U 0.05825624405466306 0.33943416216737327 1.0 1584 -20302 Ccl3 C-C motif chemokine ligand 3 Novel U 0.058243954926161676 0.3393068717783394 1.0 1585 -231474 Paqr3 progestin and adipoQ receptor family member III Novel U 0.0582333079324175 0.3391965905671383 1.0 1586 -68581 Tmed10 transmembrane p24 trafficking protein 10 Novel U 0.05816046202622711 0.3384420550654983 1.0 1587 -257941 Or5al1 olfactory receptor family 5 subfamily AL member 1 Novel U 0.05802274097081054 0.3370155449008293 1.0 1588 -76920 Arrdc5 arrestin domain containing 5 Novel U 0.05796276318419725 0.33639429695875234 1.0 1589 -17060 Blnk B cell linker Novel U 0.05782947945709066 0.3350137484948489 1.0 1590 -24105 Rbck1 RanBP-type and C3HC4-type zinc finger containing 1 Novel U 0.05775256764186237 0.334217098441054 1.0 1591 -83490 Pik3ap1 phosphoinositide-3-kinase adaptor protein 1 Novel U 0.057687285982413065 0.333540913158497 1.0 1592 -257906 Or14c40 olfactory receptor family 14 subfamily C member 40 Novel U 0.057673486232729367 0.33339797580491554 1.0 1593 -56716 Mlst8 MTOR associated protein, LST8 homolog (S. cerevisiae) Novel U 0.05765612166100955 0.33321811414187125 1.0 1594 -387609 Zhx2 zinc fingers and homeoboxes 2 Novel N 0.05757764803252846 0.3324052868777458 1.0 1595 -74718 Snx16 sorting nexin 16 Novel U 0.05753575816757756 0.33197139303363943 1.0 1596 -258276 Or10d4b olfactory receptor family 10 subfamily D member 4B Novel U 0.057464105989073824 0.33122922212413625 1.0 1597 -53420 Syt5 synaptotagmin V Novel N 0.05741567687196078 0.3307275949211008 1.0 1598 -12018 Bak1 BCL2-antagonist/killer 1 Novel U 0.05736900332499638 0.33024415185595374 1.0 1599 -54122 Uevld UEV and lactate/malate dehyrogenase domains Novel U 0.057363372429429065 0.3301858272247732 1.0 1600 -65107 Lrp10 low-density lipoprotein receptor-related protein 10 Novel U 0.057323702949230636 0.3297749320529418 1.0 1601 -68047 Mpnd MPN domain containing Novel U 0.0570830780132783 0.32728254687646613 1.0 1602 -54153 Rasa4 RAS p21 protein activator 4 Novel U 0.05707961021072766 0.32724662749164457 1.0 1603 -114875 Plcz1 phospholipase C, zeta 1 Novel N 0.05696881348002231 0.32609899859724484 1.0 1604 -56437 Rrad Ras-related associated with diabetes Novel U 0.05686162399970704 0.32498873348380364 1.0 1605 -69770 Fam174c family with sequence similarity 174, member C Novel U 0.05681638338434843 0.32452013267712426 1.0 1606 -56696 Gpr132 G protein-coupled receptor 132 Novel U 0.05678436468778892 0.32418848407071876 1.0 1607 -13609 S1pr1 sphingosine-1-phosphate receptor 1 Novel N 0.05665557897849316 0.32285452592743547 1.0 1608 -16180 Il1rap interleukin 1 receptor accessory protein Novel U 0.05663099047227679 0.32259983898834993 1.0 1609 -80291 Rilpl2 Rab interacting lysosomal protein-like 2 Novel U 0.05663088023827112 0.3225986971881429 1.0 1610 -266815 Mill1 MHC I like leukocyte 1 Novel U 0.056524096889326705 0.32149263877009016 1.0 1611 -18169 Npy6r neuropeptide Y receptor Y6 Novel U 0.056510226485338745 0.32134896958154785 1.0 1612 -606496 Gsk3a glycogen synthase kinase 3 alpha Novel U 0.05638471486711369 0.3200489243659449 1.0 1613 -213019 Pdlim2 PDZ and LIM domain 2 Novel U 0.056290797220181946 0.3190761284664022 1.0 1614 -106840 Unc119b unc-119 lipid binding chaperone B Novel U 0.05618779391688573 0.3180092236369112 1.0 1615 -76206 Gpr165 G protein-coupled receptor 165 Novel U 0.056175794339424226 0.31788493240802984 1.0 1616 -15967 Ifna4 interferon alpha 4 Novel U 0.05608838046267775 0.31697950234626626 1.0 1617 -328783 Mslnl mesothelin-like Novel U 0.056061602239488285 0.31670213439075645 1.0 1618 -54636 Wdr45 WD repeat domain 45 Novel U 0.056030758562569255 0.3163826565991604 1.0 1619 -270035 Letm2 leucine zipper-EF-hand containing transmembrane protein 2 Novel U 0.05590093848490459 0.31503798450231496 1.0 1620 -27096 Trappc3 trafficking protein particle complex 3 Novel U 0.055883983456104354 0.31486236487136865 1.0 1621 -67841 Atg3 autophagy related 3 Novel U 0.05583518897346916 0.31435695322426555 1.0 1622 -12330 Canx calnexin Novel U 0.05583038078126363 0.3143071501274614 1.0 1623 -20617 Snca synuclein, alpha Novel U 0.055795509419103766 0.31394595370454387 1.0 1624 -209039 Tns2 tensin 2 Novel U 0.05575669525922178 0.31354391791243297 1.0 1625 -13051 Cx3cr1 C-X3-C motif chemokine receptor 1 Novel U 0.05571399827060982 0.3131016639079782 1.0 1626 -105245 Txndc5 thioredoxin domain containing 5 Novel N 0.05570140848883656 0.31297125936223763 1.0 1627 -18348 Or6e1 olfactory receptor family 6 subfamily E member 1 Novel U 0.05550682426383032 0.3109557623562348 1.0 1628 -69459 Ubl7 ubiquitin-like 7 (bone marrow stromal cell-derived) Novel U 0.05540589833650404 0.30991037491875034 1.0 1629 -12702 Socs3 suppressor of cytokine signaling 3 Novel U 0.05540336061515469 0.30988408928443684 1.0 1630 -22190 Ubc ubiquitin C Novel U 0.05534523481494123 0.3092820241566086 1.0 1631 -233649 Cnga4 cyclic nucleotide gated channel alpha 4 Novel U 0.05529122756145567 0.308722618800398 1.0 1632 -18755 Prkch protein kinase C, eta Novel U 0.05525669770804459 0.3083649597138738 1.0 1633 -14225 Fkbp1a FK506 binding protein 1a Novel U 0.05523493676962986 0.3081395606291263 1.0 1634 -66964 Golt1b golgi transport 1B Novel U 0.05518262835550812 0.3075977517951998 1.0 1635 -54219 Cd320 CD320 antigen Novel U 0.055132872067935636 0.30708237780417386 1.0 1636 -24017 Rnf13 ring finger protein 13 Novel U 0.05507675428172224 0.3065011116193484 1.0 1637 -20818 Srprb signal recognition particle receptor, B subunit Novel U 0.05505180050163963 0.30624264118556405 1.0 1638 -258831 Or12d12 olfactory receptor family 12 subfamily D member 12 Novel U 0.05505112249440884 0.3062356184089558 1.0 1639 -24066 Spry4 sprouty RTK signaling antagonist 4 Novel N 0.055008582416506996 0.30579498968047825 1.0 1640 -21987 Tpd52l1 tumor protein D52-like 1 Novel U 0.05499750442355609 0.30568024419366213 1.0 1641 -20660 Sorl1 sortilin-related receptor, LDLR class A repeats-containing Novel U 0.05487711110005375 0.3044332141065422 1.0 1642 -17203 Mc5r melanocortin 5 receptor Novel N 0.05486175732615273 0.30427418022120356 1.0 1643 -232441 Rerg RAS-like, estrogen-regulated, growth-inhibitor Novel N 0.05485822288363921 0.3042375705818371 1.0 1644 -54635 Pdgfc platelet-derived growth factor, C polypeptide Novel U 0.05482291352242372 0.3038718373790998 1.0 1645 -257888 Or2y1c olfactory receptor family 2 subfamily Y member 1C Novel U 0.054811946943456806 0.3037582459146673 1.0 1646 -267019 Rps15a ribosomal protein S15A Novel U 0.054799550235488145 0.30362984122104775 1.0 1647 -64291 Osbpl1a oxysterol binding protein-like 1A Novel N 0.05474128262486482 0.30302630722565593 1.0 1648 -72621 Pdzd11 PDZ domain containing 11 Novel N 0.05469967476044521 0.30259533433378244 1.0 1649 -11682 Alk anaplastic lymphoma kinase Novel U 0.05463619045872659 0.30193776602351496 1.0 1650 -13185 Vps26c VPS26 endosomal protein sorting factor C Novel U 0.054616968105358724 0.30173866151923145 1.0 1651 -240518 Peli3 pellino 3 Novel U 0.0545820369171881 0.30137684542046106 1.0 1652 -13356 Dgcr2 DiGeorge syndrome critical region gene 2 Novel U 0.05448398659104794 0.3003612433655321 1.0 1653 -18220 Nucb1 nucleobindin 1 Novel U 0.05447878979784917 0.30030741515241466 1.0 1654 -70797 Ankib1 ankyrin repeat and IBR domain containing 1 Novel U 0.05444431362272952 0.2999503120638685 1.0 1655 -76482 Rmc1 regulator of MON1-CCZ1 Novel N 0.05440561282282506 0.2995494504506784 1.0 1656 -171285 Havcr2 hepatitis A virus cellular receptor 2 Novel U 0.0543683054858233 0.2991630222804268 1.0 1657 -259102 Or51l4 olfactory receptor family 51 subfamily L member 4 Novel U 0.054340762009760374 0.29887772786081 1.0 1658 -56546 Sec1 secretory blood group 1 Novel U 0.054314309450179045 0.29860373311824767 1.0 1659 -100502698 Rubcn RUN domain and cysteine-rich domain containing, Beclin 1-interacting protein Novel U 0.054280131652281995 0.2982497206111646 1.0 1660 -22224 Usp10 ubiquitin specific peptidase 10 Novel U 0.054270053345327 0.2981453298390313 1.0 1661 -20310 Cxcl2 C-X-C motif chemokine ligand 2 Novel U 0.05410618355740965 0.29644797196271244 1.0 1662 -14985 H2-M10.1 histocompatibility 2, M region locus 10.1 Novel U 0.054071074414048736 0.296084312609931 1.0 1663 -257975 Or52ab7 olfactory receptor family 52 subfamily AB member 7 Novel U 0.05405026026143145 0.2958687203013496 1.0 1664 -28078 Prl5a1 prolactin family 5, subfamily a, member 1 Novel U 0.054034281134165134 0.29570320902641056 1.0 1665 -59079 Erbin Erbb2 interacting protein Novel U 0.05402349819359978 0.2955915196825047 1.0 1666 -21334 Tac2 tachykinin 2 Novel U 0.053824942905154584 0.29353489053194287 1.0 1667 -207304 Hectd1 HECT domain E3 ubiquitin protein ligase 1 Novel U 0.05378912543928795 0.2931638943979321 1.0 1668 -22174 Tyro3 TYRO3 protein tyrosine kinase 3 Novel U 0.05378351462087759 0.2931057777252833 1.0 1669 -269615 Plch2 phospholipase C, eta 2 Novel N 0.05377148401056369 0.2929811650591369 1.0 1670 -213573 Cracr2b calcium release activated channel regulator 2B Novel N 0.05372464593755915 0.29249601783867457 1.0 1671 -100862177 Ccl21d C-C motif chemokine ligand 21D Novel U 0.05361085840847773 0.29131741035301273 1.0 1672 -11750 Anxa7 annexin A7 Novel U 0.05344258551509844 0.28957444525506343 1.0 1673 -22359 Vldlr very low density lipoprotein receptor Novel U 0.05339184665709699 0.2890488938318345 1.0 1674 -14272 Fnta farnesyltransferase, CAAX box, alpha Novel U 0.05338515115584955 0.2889795420500163 1.0 1675 -56395 Tmem115 transmembrane protein 115 Novel N 0.05337579210689757 0.2888826013286339 1.0 1676 -23802 Amfr autocrine motility factor receptor Novel U 0.0533733490839324 0.2888572965770707 1.0 1677 -56187 Rabggta Rab geranylgeranyl transferase, a subunit Novel N 0.05335441052559271 0.2886611316123598 1.0 1678 -224624 Rab40c Rab40C, member RAS oncogene family Novel U 0.053331935490184515 0.2884283359344287 1.0 1679 -68203 Diras2 DIRAS family, GTP-binding RAS-like 2 Novel U 0.053292407771010325 0.28801890911862615 1.0 1680 -20612 Siglec1 sialic acid binding Ig-like lectin 1, sialoadhesin Novel N 0.05327289947213077 0.28781684280013253 1.0 1681 -13603 Opn3 opsin 3 Novel U 0.053110515285171536 0.2861348727297014 1.0 1682 -16160 Il12b interleukin 12b Novel U 0.053109376657799086 0.2861230788648079 1.0 1683 -20583 Snai2 snail family zinc finger 2 Novel U 0.05307653005656751 0.2857828548490251 1.0 1684 -20684 Sp100 nuclear antigen Sp100 Novel U 0.05306761317685933 0.28569049410213443 1.0 1685 -319430 C5ar2 complement component 5a receptor 2 Novel U 0.05304875979263767 0.2854952113681381 1.0 1686 -12458 Ccr6 C-C motif chemokine receptor 6 Novel U 0.05294127693675681 0.2843819074802327 1.0 1687 -258548 Or6c212 olfactory receptor family 6 subfamily C member 212 Novel U 0.05285701734476793 0.28350914939629673 1.0 1688 -140743 Rem2 rad and gem related GTP binding protein 2 Novel U 0.05279187112982391 0.28283436704347303 1.0 1689 -258893 Or4c120 olfactory receptor family 4 subfamily C member 120 Novel U 0.052681244934813444 0.2816885045521949 1.0 1690 -218699 Pxk PX domain containing serine/threonine kinase Novel U 0.05260705730601219 0.2809200715318584 1.0 1691 -26941 Nherf1 NHERF family PDZ scaffold protein 1 Novel U 0.05249707055767715 0.27978083240822366 1.0 1692 -71746 Rgl3 ral guanine nucleotide dissociation stimulator-like 3 Novel U 0.05241731253802112 0.27895470146253015 1.0 1693 -258181 Or1p1c olfactory receptor family 1 subfamily P member 1C Novel U 0.0523977026508624 0.2787515828959805 1.0 1694 -105689 Mycbp2 MYC binding protein 2, E3 ubiquitin protein ligase Novel U 0.05236154143862687 0.2783770262483806 1.0 1695 -54354 Rassf5 Ras association (RalGDS/AF-6) domain family member 5 Novel U 0.05234571401169543 0.27821308628052344 1.0 1696 -100043314 Tigit T cell immunoreceptor with Ig and ITIM domains Novel U 0.05231307085411242 0.2778749695273646 1.0 1697 -232196 C87436 expressed sequence C87436 Novel U 0.052259820102467665 0.2773233999923524 1.0 1698 -11853 Rhoc ras homolog family member C Novel U 0.05222663921963543 0.2769797134987389 1.0 1699 -22164 Tnfsf4 tumor necrosis factor (ligand) superfamily, member 4 Novel U 0.05216256315109056 0.27631601568713837 1.0 1700 -68070 Pdzd2 PDZ domain containing 2 Novel U 0.05209023432660349 0.2755668361007834 1.0 1701 -54525 Syt7 synaptotagmin VII Novel U 0.051999132731053097 0.274623208768876 1.0 1702 -14365 Fzd3 frizzled class receptor 3 Novel N 0.05197725983721734 0.2743966500535579 1.0 1703 -16974 Lrp6 low density lipoprotein receptor-related protein 6 Novel U 0.051974203254158774 0.27436499006671705 1.0 1704 -240283 Dmxl1 Dmx-like 1 Novel U 0.05192416840123687 0.27384673070495913 1.0 1705 -76559 Atg2b autophagy related 2B Novel U 0.05191319351113867 0.27373305315410207 1.0 1706 -16878 Lif leukemia inhibitory factor Novel U 0.05182779303156648 0.2728484777940829 1.0 1707 -56085 Ubqln1 ubiquilin 1 Novel U 0.051768204592743755 0.27223126270362147 1.0 1708 -13835 Epha1 Eph receptor A1 Novel U 0.051760277024116536 0.2721491492083855 1.0 1709 -68449 Tbc1d10b TBC1 domain family, member 10b Novel U 0.05154780977057309 0.26994842038066724 1.0 1710 -225192 Hrh4 histamine receptor H4 Novel U 0.051526008685824826 0.2697226054615168 1.0 1711 -118568473 LOC118568473 sp110 nuclear body protein-like Novel U 0.0513281792056704 0.26767349420937103 1.0 1712 -14588 Gfra4 glial cell line derived neurotrophic factor family receptor alpha 4 Novel U 0.051258872630941095 0.2669556189866558 1.0 1713 -64010 Sav1 salvador family WW domain containing 1 Novel U 0.05120090767285543 0.26635521985629984 1.0 1714 -258461 Or2y11 olfactory receptor family 2 subfamily Y member 11 Novel U 0.051180464608344266 0.2661434712661228 1.0 1715 -381126 Garem1 GRB2 associated regulator of MAPK1 subtype 1 Novel U 0.05113676167150142 0.2656907976829612 1.0 1716 -214585 Spg11 SPG11, spatacsin vesicle trafficking associated Novel U 0.05107403178474299 0.2650410435780514 1.0 1717 -14479 Usp15 ubiquitin specific peptidase 15 Novel U 0.051071904355868884 0.2650190077397088 1.0 1718 -66085 Eif3f eukaryotic translation initiation factor 3, subunit F Novel U 0.051024766306218404 0.26453075337100906 1.0 1719 -226922 Kcnq5 potassium voltage-gated channel, subfamily Q, member 5 Novel N 0.050834708982750124 0.26256214586232257 1.0 1720 -107260 Otub1 OTU domain, ubiquitin aldehyde binding 1 Novel N 0.050832169121131775 0.2625358380591732 1.0 1721 -67399 Pdlim7 PDZ and LIM domain 7 Novel U 0.050797033225661904 0.2621719016089266 1.0 1722 -16421 Itgb7 integrin beta 7 Novel U 0.05078186240450844 0.26201476274213287 1.0 1723 -15007 H2-Q10 histocompatibility 2, Q region locus 10 Novel U 0.05076239464241143 0.2618131163023003 1.0 1724 -214804 Syde2 synapse defective 1, Rho GTPase, homolog 2 (C. elegans) Novel U 0.050720192645140945 0.26137598940188855 1.0 1725 -258614 Or6f1 olfactory receptor family 6 subfamily F member 1 Novel U 0.05069857819403955 0.2611521076279171 1.0 1726 -71751 Map3k13 mitogen-activated protein kinase kinase kinase 13 Novel U 0.05068873266417407 0.2610501279532248 1.0 1727 -213211 Rnf26 ring finger protein 26 Novel U 0.050672043644081816 0.2608772636317312 1.0 1728 -330496 Ifnl2 interferon lambda 2 Novel U 0.05065881766639917 0.26074026938967493 1.0 1729 -66593 Diablo diablo, IAP-binding mitochondrial protein Novel U 0.05062755459630761 0.2604164475373847 1.0 1730 -16981 Lrrn3 leucine rich repeat protein 3, neuronal Novel U 0.050595135326185495 0.2600806498031859 1.0 1731 -74996 Usp47 ubiquitin specific peptidase 47 Novel U 0.05056805738516948 0.2598001773802814 1.0 1732 -67620 Lrp2bp Lrp2 binding protein Novel U 0.05035909111305512 0.257635711603117 1.0 1733 -12962 Crybb3 crystallin, beta B3 Novel N 0.05024305813355862 0.256433845815871 1.0 1734 -12632 Cfl2 cofilin 2, muscle Novel U 0.05022217831395527 0.2562175733308066 1.0 1735 -231655 Oasl1 2'-5' oligoadenylate synthetase-like 1 Novel U 0.05020677296250329 0.2560580052068906 1.0 1736 -11797 Birc2 baculoviral IAP repeat-containing 2 Novel U 0.05014551873910277 0.25542353597453216 1.0 1737 -14205 Vegfd vascular endothelial growth factor D Novel U 0.050140132770997804 0.2553677482939551 1.0 1738 -16653 Kras Kirsten rat sarcoma viral oncogene homolog Novel U 0.050035828617022306 0.25428736929589124 1.0 1739 -258786 Or4a39 olfactory receptor family 4subfamily A member 39 Novel U 0.049840862156198186 0.25226791310385216 1.0 1740 -214968 Sema6d sema domain, transmembrane domain (TM), and cytoplasmic domain, (semaphorin) 6D Novel U 0.0497517974476792 0.2513453837808571 1.0 1741 -407243 Peds1 plasmanylethanolamine desaturase 1 Novel N 0.04974503898720524 0.2512753798694402 1.0 1742 -226551 Suco SUN domain containing ossification factor Novel U 0.04952855936556827 0.24903309106490867 1.0 1743 -19374 Rag2 recombination activating gene 2 Novel U 0.04952781837818085 0.2490254159419084 1.0 1744 -13848 Ephb6 Eph receptor B6 Novel U 0.04950731945106151 0.24881308872867222 1.0 1745 -71198 Otud1 OTU domain containing 1 Novel N 0.04948264985902327 0.24855756190530934 1.0 1746 -216350 Tspan8 tetraspanin 8 Novel U 0.04947426579285394 0.2484707200235387 1.0 1747 -258989 Or2r3 olfactory receptor family 2 subfamily R member 3 Novel U 0.04944765710819566 0.24819510814256163 1.0 1748 -224105 Pak2 p21 (RAC1) activated kinase 2 Novel U 0.04944570055700093 0.24817484224960476 1.0 1749 -19204 Ptafr platelet-activating factor receptor Novel N 0.04943812705385841 0.24809639615302007 1.0 1750 -18749 Prkacb protein kinase, cAMP dependent, catalytic, beta Novel U 0.04936969829318015 0.247387613299389 1.0 1751 -258469 Or2h2 olfactory receptor family 2 subfamily H member 2 Novel U 0.04930343339284727 0.24670124364008225 1.0 1752 -231125 Zfyve28 zinc finger, FYVE domain containing 28 Novel U 0.0492941180660433 0.2466047557912716 1.0 1753 -26395 Map2k1 mitogen-activated protein kinase kinase 1 Novel U 0.04927865509616288 0.24644459085756798 1.0 1754 -22217 Usp12 ubiquitin specific peptidase 12 Novel N 0.04909587561262701 0.24455136697565527 1.0 1755 -14275 Folr1 folate receptor alpha Novel U 0.04902076278028306 0.24377335072743805 1.0 1756 -226594 Rcsd1 RCSD domain containing 1 Novel U 0.04897698929347226 0.2433199463900276 1.0 1757 -258763 Or8i2 olfactory receptor family 8 subfamily I member 2 Novel U 0.048970070083643576 0.24324827744207886 1.0 1758 -258883 Or8b12c olfactory receptor family 8 subfamily B member 12C Novel U 0.0489353388356608 0.24288853231720156 1.0 1759 -11749 Anxa6 annexin A6 Novel N 0.04890617094495021 0.242586412264064 1.0 1760 -67374 Jam2 junction adhesion molecule 2 Novel U 0.04888519866606009 0.24236918208874667 1.0 1761 -72388 Ripk4 receptor-interacting serine-threonine kinase 4 Novel U 0.04884824893875221 0.24198645802794855 1.0 1762 -624910 Rgs21 regulator of G-protein signalling 21 Novel N 0.04883930338704184 0.24189380029740165 1.0 1763 -18654 Pgf placental growth factor Novel N 0.048723208262645736 0.24069129081532847 1.0 1764 -18387 Oprk1 opioid receptor, kappa 1 Novel U 0.04872222283342659 0.24068108377187078 1.0 1765 -14229 Fkbp5 FK506 binding protein 5 Novel U 0.04871686129126886 0.24062554909445227 1.0 1766 -77593 Usp45 ubiquitin specific petidase 45 Novel N 0.04871146512101263 0.24056965574032776 1.0 1767 -14191 Fgr FGR proto-oncogene, Src family tyrosine kinase Novel U 0.04865326009186149 0.23996676996176747 1.0 1768 -258790 Or4c52 olfactory receptor family 4 subfamily C member 52 Novel U 0.04854356743416367 0.2388305770192854 1.0 1769 -100040268 Or13c7c olfactory receptor family 13 subfamily C member 7C Novel U 0.04852485902130094 0.2386367958938591 1.0 1770 -67169 Nradd neurotrophin receptor associated death domain Novel U 0.048476326114435746 0.23813409363998284 1.0 1771 -80885 Hcar2 hydroxycarboxylic acid receptor 2 Novel U 0.0483871058344159 0.23720995291249597 1.0 1772 -226418 Yod1 YOD1 deubiquitinase Novel U 0.04837876381269125 0.23712354652570128 1.0 1773 -321021 Fpr-rs7 formyl peptide receptor, related sequence 7 Novel U 0.04837858801383018 0.23712172560687736 1.0 1774 -69697 Camsap3 calmodulin regulated spectrin-associated protein family, member 3 Novel U 0.04836993186037069 0.23703206545389968 1.0 1775 -270058 Map1s microtubule-associated protein 1S Novel U 0.048318579590736856 0.23650016033314736 1.0 1776 -67653 4930544G11Rik RIKEN cDNA 4930544G11 gene Novel U 0.04822952668036609 0.23557775321498373 1.0 1777 -71819 Kif23 kinesin family member 23 Novel U 0.048146926664995385 0.23472218497110317 1.0 1778 -258303 Or10a3 olfactory receptor family 10 subfamily A member 3 Novel U 0.04794424493024794 0.23262281422539224 1.0 1779 -18566 Pdcd1 programmed cell death 1 Novel U 0.04792517235751213 0.23242526114397183 1.0 1780 -20608 Sstr4 somatostatin receptor 4 Novel N 0.047919379386864074 0.23236525774443287 1.0 1781 -105855 Nckap1l NCK associated protein 1 like Novel U 0.04786650008401582 0.23181753566384414 1.0 1782 -270163 Myo9a myosin IXa Novel U 0.04777549841138887 0.230874943330293 1.0 1783 -17918 Myo5a myosin VA Novel U 0.04775947974432127 0.23070902250339215 1.0 1784 -258180 Or2ag17 olfactory receptor family 2 subfamily AG member 17 Novel U 0.047719385488236836 0.23029372751689722 1.0 1785 -67669 Hikeshi heat shock protein nuclear import factor Novel U 0.047692432298030094 0.23001454725877418 1.0 1786 -224014 Fgd4 FYVE, RhoGEF and PH domain containing 4 Novel U 0.04760033016937293 0.22906055643783765 1.0 1787 -71382 Pex1 peroxisomal biogenesis factor 1 Novel U 0.047526463349605946 0.22829544634693213 1.0 1788 -257939 Or12j2 olfactory receptor family 12 subfamily J member 2 Novel U 0.04750819116787427 0.22810618368922103 1.0 1789 -216856 Nlgn2 neuroligin 2 Novel U 0.04747616315689562 0.22777443860436838 1.0 1790 -259056 Or52r1c olfactory receptor family 52 subfamily R member 1C Novel U 0.04734998906471385 0.2264675315052994 1.0 1791 -235180 Fez1 fasciculation and elongation protein zeta 1 Novel U 0.04729116752027518 0.22585825988165778 1.0 1792 -68318 Aph1c aph1 homolog C, gamma secretase subunit Novel U 0.047270022129305034 0.2256392366171063 1.0 1793 -14567 Gdi1 GDP dissociation inhibitor 1 Novel U 0.04726843001260912 0.22562274552470807 1.0 1794 -19207 Ptch2 patched 2 Novel U 0.04725219239069775 0.22545455677073314 1.0 1795 -258272 Or13l2 olfactory receptor family 13 subfamily L member 2 Novel U 0.04724244413098196 0.2253535846170538 1.0 1796 -259028 Or13a21 olfactory receptor family 13 subfamily A member 21 Novel U 0.047220850616026544 0.22512991969899412 1.0 1797 -258439 Or4f15 olfactory receptor family 4 subfamily F member 15 Novel U 0.047212329103377595 0.22504165415110597 1.0 1798 -56430 Clip1 CAP-GLY domain containing linker protein 1 Novel U 0.047167861115275996 0.22458105619215596 1.0 1799 -230787 Themis2 thymocyte selection associated family member 2 Novel N 0.047154639470148946 0.22444410682656815 1.0 1800 -258762 Or5aq6 olfactory receptor family 5 subfamily AQ member 6 Novel U 0.047046519400636325 0.22332420270081224 1.0 1801 -258901 Or4c114 olfactory receptor family 4 subfamily C member 114 Novel U 0.047039848924460774 0.22325511012786597 1.0 1802 -16370 Irs4 insulin receptor substrate 4 Novel U 0.04701105654279362 0.22295687958505614 1.0 1803 -217463 Snx13 sorting nexin 13 Novel U 0.04695294162432533 0.22235492716998667 1.0 1804 -76829 Dok5 docking protein 5 Novel N 0.04692049961325397 0.2220188938857832 1.0 1805 -214301 Crygn crystallin, gamma N Novel U 0.04691778101725813 0.2219907347578273 1.0 1806 -258967 Or4a77 olfactory receptor family 4 subfamily A member 77 Novel U 0.0469050874055936 0.22185925474548607 1.0 1807 -14999 H2-DMb1 histocompatibility 2, class II, locus Mb1 Novel U 0.04688380885604121 0.22163885222871707 1.0 1808 -11793 Atg5 autophagy related 5 Novel U 0.04685670880078797 0.2213581507472703 1.0 1809 -23962 Oasl2 2'-5' oligoadenylate synthetase-like 2 Novel U 0.04683085892168219 0.22109039854926169 1.0 1810 -258727 Or5p64 olfactory receptor family 5 subfamily P member 64 Novel U 0.04680897644801569 0.22086374060637162 1.0 1811 -270096 Mon1b MON1 homolog B, secretory traffciking associated Novel U 0.046788093168980645 0.22064743228862746 1.0 1812 -20947 Swap70 SWA-70 protein Novel U 0.046767227031966715 0.22043130152737447 1.0 1813 -217124 Ppp1r9b protein phosphatase 1, regulatory subunit 9B Novel N 0.046747783519313746 0.22022990626248606 1.0 1814 -71785 Pdgfd platelet-derived growth factor, D polypeptide Novel U 0.04668457860096978 0.21957523179602903 1.0 1815 -209517 Taar7b trace amine-associated receptor 7B Novel U 0.04663874291490657 0.21910046726655333 1.0 1816 -11482 Acvrl1 activin A receptor, type II-like 1 Novel U 0.04661751499446648 0.21888058916446518 1.0 1817 -56470 Rgs19 regulator of G-protein signaling 19 Novel N 0.04661232069806729 0.21882678681311565 1.0 1818 -24099 Tnfsf13b tumor necrosis factor (ligand) superfamily, member 13b Novel U 0.04652140965560896 0.21788513322387185 1.0 1819 -26946 Trpc7 transient receptor potential cation channel, subfamily C, member 7 Novel N 0.046507389640021865 0.21773991436330387 1.0 1820 -12514 Cd68 CD68 antigen Novel U 0.0464728321230643 0.21738196873867457 1.0 1821 -11799 Birc5 baculoviral IAP repeat-containing 5 Novel N 0.04643939520583003 0.21703563024914144 1.0 1822 -56367 Scoc short coiled-coil protein Novel U 0.046409079928868724 0.2167216256069373 1.0 1823 -258988 Or2f1b olfactory receptor family 2 subfamily F member 1B Novel U 0.046395781186909416 0.21658387767489537 1.0 1824 -22418 Wnt5a wingless-type MMTV integration site family, member 5A Novel U 0.04639055105187861 0.21652970410817768 1.0 1825 -12578 Cdkn2a cyclin dependent kinase inhibitor 2A Novel U 0.04635949010197287 0.2162079758101278 1.0 1826 -228607 Mavs mitochondrial antiviral signaling protein Novel U 0.046353396351026734 0.21614485693814897 1.0 1827 -53611 Vti1a vesicle transport through interaction with t-SNAREs 1A Novel U 0.046325139537928446 0.2158521737969696 1.0 1828 -59125 Nek7 NIMA (never in mitosis gene a)-related expressed kinase 7 Novel U 0.046319496309359276 0.2157937214209613 1.0 1829 -192193 Edem1 ER degradation enhancer, mannosidase alpha-like 1 Novel U 0.04629416387872791 0.2155313289372404 1.0 1830 -258643 Or9m1b olfactory receptor family 9 subfamily M member 1B Novel U 0.04622124823899748 0.21477607113788516 1.0 1831 -14678 Gnai2 G protein subunit alpha i2 Novel U 0.046172883157224606 0.21427510721079812 1.0 1832 -18003 Nedd9 neural precursor cell expressed, developmentally down-regulated gene 9 Novel U 0.046083412086387145 0.21334836880026672 1.0 1833 -70375 Ica1l islet cell autoantigen 1-like Novel U 0.04603903343684826 0.21288869620721246 1.0 1834 -258465 Or2y15 olfactory receptor family 2 subfamily Y member 15 Novel U 0.04598267735486577 0.21230496176264424 1.0 1835 -56389 Stx5a syntaxin 5A Novel U 0.045979426130504784 0.2122712856875914 1.0 1836 -20598 Smpd2 sphingomyelin phosphodiesterase 2, neutral Novel N 0.04597916590452416 0.21226859027543854 1.0 1837 -258985 Or4a47 olfactory receptor family 4 subfamily A member 47 Novel U 0.04593262291795521 0.21178649955057566 1.0 1838 -258758 Or10j7 olfactory receptor family 10 subfamily J member 7 Novel U 0.04590332003831572 0.2114829812865501 1.0 1839 -258653 Or5w13 olfactory receptor family 5 subfamily W member 13 Novel U 0.045810660260526 0.21052321435423027 1.0 1840 -13841 Epha7 Eph receptor A7 Novel U 0.0457194389011316 0.20957834651236373 1.0 1841 -17948 Naip2 NLR family, apoptosis inhibitory protein 2 Novel U 0.04568438447636535 0.20921525393298707 1.0 1842 -52033 Pbk PDZ binding kinase Novel U 0.04568302374391396 0.20920115951098725 1.0 1843 -433638 I830077J02Rik RIKEN cDNA I830077J02 gene Novel U 0.04561028668738293 0.20844775147054073 1.0 1844 -14389 Gab2 growth factor receptor bound protein 2-associated protein 2 Novel N 0.04558481765297064 0.20818394404934767 1.0 1845 -257919 Or5p5 olfactory receptor family 5 subfamily P member 5 Novel U 0.045479935100197426 0.2070975740155509 1.0 1846 -668200 Esp15 exocrine gland secreted peptide 15 Novel U 0.04545535683465824 0.206842993149063 1.0 1847 -319965 Cc2d1b coiled-coil and C2 domain containing 1B Novel U 0.045426860841221904 0.20654783258580472 1.0 1848 -224617 Tbc1d24 TBC1 domain family, member 24 Novel U 0.045381253214163586 0.20607543028400466 1.0 1849 -14693 Gnb2 guanine nucleotide binding protein (G protein), beta 2 Novel U 0.045153023430442855 0.2037114336868753 1.0 1850 -435337 Eif1ad7 eukaryotic translation initiation factor 1A domain containing 7 Novel U 0.04509701039924673 0.2031312525510751 1.0 1851 -228550 Itpka inositol 1,4,5-trisphosphate 3-kinase A Novel U 0.04508952442667487 0.2030537130932638 1.0 1852 -68895 Rasl11a RAS-like, family 11, member A Novel U 0.045061115823086986 0.20275945771118306 1.0 1853 -244234 Scart2 scavenger receptor family member expressed on T cells 2 Novel U 0.04505909968427409 0.20273857461163605 1.0 1854 -12305 Ddr1 discoidin domain receptor family, member 1 Novel U 0.0450520015933351 0.20266505281902716 1.0 1855 -54712 Plxnc1 plexin C1 Novel N 0.045013170647901155 0.20226284316272095 1.0 1856 -27061 Bcap31 B cell receptor associated protein 31 Novel U 0.04498550541031039 0.20197628754120153 1.0 1857 -67231 Tbc1d20 TBC1 domain family, member 20 Novel U 0.04496578449393104 0.20177201893763436 1.0 1858 -74158 Josd1 Josephin domain containing 1 Novel U 0.044948139198281334 0.2015892495453526 1.0 1859 -26904 Sh2d1b1 SH2 domain containing 1B1 Novel U 0.04493661912494218 0.20146992500440764 1.0 1860 -106766 Stap2 signal transducing adaptor family member 2 Novel U 0.04492195757773105 0.20131806118036716 1.0 1861 -98432 Phlpp1 PH domain and leucine rich repeat protein phosphatase 1 Novel U 0.044860615229429725 0.2006826791531831 1.0 1862 -16923 Sh2b3 SH2B adaptor protein 3 Novel U 0.044839803165323704 0.2004671084773327 1.0 1863 -12177 Bnip3l BCL2/adenovirus E1B interacting protein 3-like Novel U 0.04478038549081928 0.1998516621580667 1.0 1864 -259098 Or51l14 olfactory receptor family 51 subfamily L member 14 Novel U 0.04477369078110654 0.19978231857493886 1.0 1865 -214292 Syna syncytin a Novel U 0.04476296850002531 0.19967125753997553 1.0 1866 -213439 Gpr174 G protein-coupled receptor 174 Novel U 0.044760818257722254 0.19964898540088585 1.0 1867 -67125 Tspan31 tetraspanin 31 Novel N 0.04469470109482251 0.19896414600105494 1.0 1868 -240057 Syngap1 synaptic Ras GTPase activating protein 1 homolog (rat) Novel U 0.04469142712887477 0.1989302343693941 1.0 1869 -28040 D6Wsu163e DNA segment, Chr 6, Wayne State University 163, expressed Novel U 0.044651620658353944 0.1985179202563066 1.0 1870 -65964 Map3k20 mitogen-activated protein kinase kinase kinase 20 Novel U 0.04464605106025716 0.1984602305423108 1.0 1871 -14738 Gpr12 G-protein coupled receptor 12 Novel N 0.04464016574453399 0.19839927063551957 1.0 1872 -258659 Or4n4 olfactory receptor family 4 subfamily N member 4 Novel U 0.04455760715227773 0.19754413145089672 1.0 1873 -27390 Mmel1 membrane metallo-endopeptidase-like 1 Novel U 0.04455416184093207 0.19750844502923687 1.0 1874 -226641 Atf6 activating transcription factor 6 Novel U 0.044446292534467365 0.1963911382988879 1.0 1875 -24063 Spry1 sprouty RTK signaling antagonist 1 Novel U 0.044429279752417596 0.19621492046168149 1.0 1876 -258283 Or10g6 olfactory receptor family 10 subfamily G member 6 Novel U 0.04442735407015429 0.19619497430810154 1.0 1877 -17245 Mdm1 MDM1 nuclear protein Novel U 0.04439928039299269 0.19590418808293417 1.0 1878 -109934 Abr active BCR-related gene Novel U 0.04435981449131388 0.19549540157071668 1.0 1879 -20874 Slk STE20-like kinase Novel U 0.04435568305712146 0.19545260831116515 1.0 1880 -215856 Taar7a trace amine-associated receptor 7A Novel U 0.044290891398782374 0.19478149844399992 1.0 1881 -67675 Cuta cutA divalent cation tolerance homolog Novel U 0.04427116373604186 0.19457715996184569 1.0 1882 -100038947 Sirpb1c signal-regulatory protein beta 1C Novel U 0.04424783286007995 0.19433549951559345 1.0 1883 -231999 Plekha8 pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 8 Novel U 0.044176877410364114 0.19360054529997156 1.0 1884 -11857 Arhgdib Rho, GDP dissociation inhibitor beta Novel U 0.044176376231432224 0.19359535410507042 1.0 1885 -639781 Skint1 selection and upkeep of intraepithelial T cells 1 Novel U 0.04411629964463478 0.1929730827939339 1.0 1886 -30945 Rnf19a ring finger protein 19A Novel N 0.04402650193469143 0.19204296106628138 1.0 1887 -83431 Ndel1 nudE neurodevelopment protein 1 like 1 Novel U 0.044006152449895426 0.19183218177171765 1.0 1888 -11481 Acvr2b activin receptor IIB Novel U 0.04397080179304862 0.19146602083018863 1.0 1889 -407814 Timd6 T cell immunoglobulin and mucin domain containing 6 Novel U 0.04383861845247316 0.1900968701338013 1.0 1890 -52838 Dnlz DNL-type zinc finger Novel U 0.043780271422191916 0.18949251351220348 1.0 1891 -668303 Kif26a kinesin family member 26A Novel U 0.043726701165117704 0.18893763455045615 1.0 1892 -258248 Or51a7 olfactory receptor family 51 subfamily A member 7 Novel U 0.043696090457079395 0.18862056984286815 1.0 1893 -68121 Cep70 centrosomal protein 70 Novel U 0.04367258657021046 0.1883771173553284 1.0 1894 -333883 Cd59b CD59b antigen Novel U 0.043652823334274934 0.1881724104071896 1.0 1895 -381353 Ajm1 apical junction component 1 Novel U 0.04354738554395085 0.18708028924109338 1.0 1896 -20852 Stat6 signal transducer and activator of transcription 6 Novel U 0.043524515673768555 0.18684340387755163 1.0 1897 -258294 Or10ag53 olfactory receptor family 10 subfamily AG member 53 Novel U 0.04350946808088764 0.1866875414051541 1.0 1898 -329581 Birc7 baculoviral IAP repeat-containing 7 Novel U 0.04348659682405599 0.18645064167874395 1.0 1899 -12371 Casp9 caspase 9 Novel U 0.0434786013365445 0.1863678246819374 1.0 1900 -258299 Or5b107 olfactory receptor family 5 subfamily B member 107 Novel U 0.04340567639257412 0.18561247050957064 1.0 1901 -15972 Ifna9 interferon alpha 9 Novel U 0.04334967696565255 0.18503243028639896 1.0 1902 -235415 Cplx3 complexin 3 Novel U 0.043317352615766545 0.1846976157328855 1.0 1903 -230597 Zfyve9 zinc finger, FYVE domain containing 9 Novel U 0.043305808583671654 0.18457804302793623 1.0 1904 -245684 Cnksr2 connector enhancer of kinase suppressor of Ras 2 Novel U 0.04330500798468914 0.18456975044999366 1.0 1905 -12847 Copa coatomer protein complex subunit alpha Novel U 0.043239272077013856 0.1838888600792446 1.0 1906 -319651 Usp37 ubiquitin specific peptidase 37 Novel N 0.043236909581279556 0.1838643894260916 1.0 1907 -56715 Rabgef1 RAB guanine nucleotide exchange factor (GEF) 1 Novel U 0.043166701832414445 0.18313717987130218 1.0 1908 -11787 Apbb2 amyloid beta precursor protein binding family B member 2 Novel N 0.043156411670883174 0.18303059471643213 1.0 1909 -18213 Ntrk3 neurotrophic tyrosine kinase, receptor, type 3 Novel U 0.04315084903043616 0.1829729770695439 1.0 1910 -51800 Bok BCL2-related ovarian killer Novel N 0.043126910118501886 0.18272501860667803 1.0 1911 -100043645 Gm4567 predicted gene 4567 Novel U 0.04312091246912827 0.1826628951516282 1.0 1912 -18188 Nrtn neurturin Novel U 0.0430165218875714 0.18158162093951769 1.0 1913 -244187 Or56a4 olfactory receptor family 56 subfamily A member 4 Novel U 0.04288056684239559 0.18017340305086804 1.0 1914 -383592 Kif28 kinesin family member 28 Novel U 0.042871553832770116 0.18008004659345409 1.0 1915 -259033 Or10ag57 olfactory receptor family 10 subfamily AG member 57 Novel U 0.04283504339928029 0.17970187272358232 1.0 1916 -13400 Dmpk dystrophia myotonica-protein kinase Novel U 0.04281322158257303 0.17947584306348208 1.0 1917 -12044 Bcl2a1a B cell leukemia/lymphoma 2 related protein A1a Novel U 0.04280460831634562 0.1793866271350444 1.0 1918 -107221 Ffar4 free fatty acid receptor 4 Novel N 0.04277346273866954 0.17906402226533133 1.0 1919 -545156 Kalrn kalirin, RhoGEF kinase Novel U 0.04275146822793151 0.17883620384613738 1.0 1920 -18328 Or1j1 olfactory receptor family 1 subfamily J member 1 Novel U 0.04268097400234715 0.1781060269749074 1.0 1921 -223864 Rapgef3 Rap guanine nucleotide exchange factor (GEF) 3 Novel U 0.04261813314444275 0.1774551234345156 1.0 1922 -14570 Arhgdig Rho GDP dissociation inhibitor gamma Novel N 0.04259153227902745 0.17717959254500024 1.0 1923 -14526 Gcg glucagon Novel N 0.042586276365180274 0.17712515196215006 1.0 1924 -74256 Cyld CYLD lysine 63 deubiquitinase Novel U 0.042584523478505325 0.17710699561959398 1.0 1925 -208154 Btla B and T lymphocyte associated Novel U 0.04258334338568082 0.17709477225691125 1.0 1926 -229877 Rap1gds1 RAP1, GTP-GDP dissociation stimulator 1 Novel N 0.042580369401773184 0.1770639678293604 1.0 1927 -239849 Cd200r4 CD200 receptor 4 Novel U 0.042541934586801645 0.17666586127936168 1.0 1928 -66552 Sppl2a signal peptide peptidase like 2A Novel U 0.04250414660577851 0.17627445461413702 1.0 1929 -14709 Gng8 guanine nucleotide binding protein (G protein), gamma 8 Novel U 0.0424897372794747 0.17612520328596323 1.0 1930 -226252 Fhip2a FHF complex subunit HOOK interacting protein 2A Novel U 0.042462348912343593 0.17584151547956328 1.0 1931 -72344 Usp36 ubiquitin specific peptidase 36 Novel U 0.04239805103411322 0.17517552017053195 1.0 1932 -83767 Wasf1 WASP family, member 1 Novel U 0.04236683576065507 0.1748521933941993 1.0 1933 -23805 Apc2 APC regulator of WNT signaling pathway 2 Novel U 0.04233907219107907 0.17456461925320924 1.0 1934 -17913 Myo1c myosin IC Novel U 0.0423371619980833 0.17454483353695333 1.0 1935 -18321 Or1e17 olfactory receptor family 1 subfamily E member 17 Novel U 0.042260275739361176 0.17374844819660915 1.0 1936 -16173 Il18 interleukin 18 Novel U 0.04224006443238408 0.1735391001433513 1.0 1937 -493809 Taar3 trace amine-associated receptor 3 Novel U 0.0422384939801012 0.17352283345023103 1.0 1938 -666926 Gm8369 predicted gene 8369 Novel U 0.04215995697328477 0.17270934971539154 1.0 1939 -68943 Pink1 PTEN induced putative kinase 1 Novel U 0.042101147808773526 0.1721002063226312 1.0 1940 -192113 Atp12a ATPase, H+/K+ transporting, nongastric, alpha polypeptide Novel U 0.042098742732740245 0.1720752946241411 1.0 1941 -13645 Egf epidermal growth factor Known P 0.04208624698850057 0.17194586411608195 1.0 1942 -16190 Il4ra interleukin 4 receptor, alpha Novel U 0.04208502740894548 0.1719332317511419 1.0 1943 -234129 Tpte transmembrane phosphatase with tensin homology Novel U 0.0420383197559982 0.17144943541734534 1.0 1944 -67774 Borcs5 BLOC-1 related complex subunit 5 Novel U 0.042026667300357874 0.1713287396648767 1.0 1945 -259110 Or10g9b olfactory receptor family 10 subfamily G member 9B Novel U 0.04202002571999593 0.17125994639381792 1.0 1946 -258289 Or1aa2 olfactory receptor family 1 subfamily AA member 2 Novel U 0.04197564400081801 0.17080024200554342 1.0 1947 -329015 Atg2a autophagy related 2A Novel U 0.04197533303788399 0.1707970210616952 1.0 1948 -67268 Myl12a myosin, light chain 12A, regulatory, non-sarcomeric Novel U 0.041964390651596795 0.17068368018424399 1.0 1949 -55943 Stx8 syntaxin 8 Novel U 0.04193066608918455 0.1703343622754132 1.0 1950 -76983 Scfd1 Sec1 family domain containing 1 Novel U 0.04190345269948677 0.1700524868795156 1.0 1951 -100504239 Ccl21e C-C motif chemokine ligand 21E Novel U 0.04189238233840739 0.16993782044337394 1.0 1952 -60344 Fign fidgetin Novel U 0.041880605421889185 0.16981583552922364 1.0 1953 -237300 Gm4922 predicted gene 4922 Novel U 0.04186779078018021 0.1696831018916607 1.0 1954 -54215 Cd160 CD160 antigen Novel U 0.04185894343995064 0.16959146143240347 1.0 1955 -235623 Scap SREBF chaperone Novel N 0.04184389102781688 0.1694355490423434 1.0 1956 -72287 Plekhf1 pleckstrin homology domain containing, family F (with FYVE domain) member 1 Novel U 0.04183793288162258 0.16937383475992634 1.0 1957 -338346 Gpr21 G protein-coupled receptor 21 Novel U 0.04178434397375523 0.16881876261387677 1.0 1958 -16398 Itga2 integrin alpha 2 Novel U 0.041759764878959514 0.16856417315797695 1.0 1959 -13852 Stx2 syntaxin 2 Novel U 0.041722556691052216 0.16817877197078646 1.0 1960 -236781 Gpr119 G-protein coupled receptor 119 Novel U 0.04163430380444407 0.16726465147245667 1.0 1961 -245615 Kir3dl2 killer cell immunoglobulin-like receptor, three domains, long cytoplasmic tail, 2 Novel U 0.04162106636435026 0.1671275385031224 1.0 1962 -13842 Epha8 Eph receptor A8 Novel U 0.04160273652294782 0.16693767860843695 1.0 1963 -14697 Gnb5 guanine nucleotide binding protein (G protein), beta 5 Novel U 0.04158418502613448 0.166745522814292 1.0 1964 -16768 Lag3 lymphocyte-activation gene 3 Novel U 0.04154361368737874 0.16632528622117093 1.0 1965 -12477 Ctla4 cytotoxic T-lymphocyte-associated protein 4 Novel U 0.041527416511705904 0.1661575164080052 1.0 1966 -76899 Golga1 golgin A1 Novel U 0.04151582778401275 0.1660374807475184 1.0 1967 -16159 Il12a interleukin 12a Novel U 0.04146780564350296 0.16554006899476087 1.0 1968 -65945 Clstn1 calsyntenin 1 Novel N 0.04143913460635813 0.1652430953345243 1.0 1969 -20288 Msr1 macrophage scavenger receptor 1 Novel U 0.04143821453323119 0.1652335652473212 1.0 1970 -259119 Or51g1 olfactory receptor family 51 subfamily G member 1 Novel U 0.04143593921343863 0.165209997559707 1.0 1971 -100042150 Nrg2 neuregulin 2 Novel N 0.04129402464662816 0.1637400511418742 1.0 1972 -21929 Tnfaip3 tumor necrosis factor, alpha-induced protein 3 Novel U 0.04128221538155098 0.16361773116241346 1.0 1973 -16162 Il12rb2 interleukin 12 receptor, beta 2 Novel U 0.041246880599030415 0.16325173464663384 1.0 1974 -11651 Akt1 thymoma viral proto-oncogene 1 Novel U 0.04124512939328711 0.16323359571511248 1.0 1975 -404310 Or5ac17 olfactory receptor family 5 subfamily AC member 17 Novel U 0.041242020017587824 0.16320138890383448 1.0 1976 -12517 Cd72 CD72 antigen Novel N 0.041185718167200465 0.16261821618834585 1.0 1977 -71609 Tradd TNFRSF1A-associated via death domain Novel U 0.04117429948399282 0.16249994184305008 1.0 1978 -12511 Cd6 CD6 antigen Novel U 0.041173656620396744 0.1624932830830549 1.0 1979 -218518 Marveld2 MARVEL (membrane-associating) domain containing 2 Novel U 0.04108843079940912 0.16161051683091301 1.0 1980 -545192 Baiap3 BAI1-associated protein 3 Novel U 0.04099673773174358 0.16066076305028062 1.0 1981 -67196 Ube2t ubiquitin-conjugating enzyme E2T Novel U 0.04098273541369916 0.1605157275002779 1.0 1982 -66939 Aagab alpha- and gamma-adaptin binding protein Novel U 0.040945508093532625 0.16013012814177519 1.0 1983 -20054 Rps15 ribosomal protein S15 Novel U 0.040937884694367835 0.16005116522383203 1.0 1984 -258123 Or5b118 olfactory receptor family 5 subfamily B member 118 Novel U 0.04089329674779116 0.1595893247389406 1.0 1985 -66967 Edem3 ER degradation enhancer, mannosidase alpha-like 3 Novel U 0.040868515395817324 0.15933264030983868 1.0 1986 -80280 Cdk5rap3 CDK5 regulatory subunit associated protein 3 Novel U 0.040838301314003414 0.15901968384364465 1.0 1987 -64337 Gng13 guanine nucleotide binding protein (G protein), gamma 13 Novel U 0.04082632918355826 0.15889567691005632 1.0 1988 -14082 Fadd Fas associated via death domain Novel U 0.040746911323459034 0.15807306932587006 1.0 1989 -14370 Fzd8 frizzled class receptor 8 Novel N 0.04070028247485147 0.15759008924483373 1.0 1990 -74413 Tc2n tandem C2 domains, nuclear Novel U 0.04069637453663133 0.15754961094921607 1.0 1991 -72065 Rap2c RAP2C, member of RAS oncogene family Novel N 0.04068830610561165 0.15746603840594964 1.0 1992 -68159 Stx19 syntaxin 19 Novel U 0.0406738654241542 0.1573164623021252 1.0 1993 -102633783 LOC102633783 sp110 nuclear body protein-like Novel U 0.04066952992893735 0.15727155538519075 1.0 1994 -329244 Il19 interleukin 19 Novel U 0.04065029273841484 0.1570722971981472 1.0 1995 -18205 Ntf3 neurotrophin 3 Novel U 0.04064414100389006 0.15700857773416688 1.0 1996 -215859 Taar8a trace amine-associated receptor 8A Novel U 0.04063711909640903 0.1569358450473112 1.0 1997 -20469 Sipa1 signal-induced proliferation associated gene 1 Novel U 0.04060287817338184 0.15658117869220523 1.0 1998 -100702 Gbp6 guanylate binding protein 6 Novel U 0.040601826577733174 0.1565702862990457 1.0 1999 -228769 Psmf1 proteasome (prosome, macropain) inhibitor subunit 1 Novel U 0.040586683414695346 0.15641343391410456 1.0 2000 -17237 Mgrn1 mahogunin, ring finger 1 Novel U 0.040526077835283704 0.15578568331485987 1.0 2001 -16561 Kif1b kinesin family member 1B Novel U 0.04052590674041016 0.1557839111197841 1.0 2002 -259013 Or8u9 olfactory receptor family 8 subfamily U member 9 Novel U 0.040411571195129566 0.15459962730034632 1.0 2003 -24047 Ccl19 C-C motif chemokine ligand 19 Novel U 0.040402205173715455 0.15450261435843035 1.0 2004 -74841 Usp38 ubiquitin specific peptidase 38 Novel U 0.04040031402364126 0.15448302588813007 1.0 2005 -258710 Or10z1 olfactory receptor family 10 subfamily Z member 1 Novel U 0.04034810853321123 0.15394228313441888 1.0 2006 -18361 Or13a27 olfactory receptor family 13 subfamily A member 27 Novel U 0.04033238947639765 0.1537794656606799 1.0 2007 -209478 Tbc1d12 TBC1D12: TBC1 domain family, member 12 Novel U 0.04032859391818365 0.15374015139347158 1.0 2008 -19246 Ptpn1 protein tyrosine phosphatase, non-receptor type 1 Novel U 0.04030933853049494 0.1535407047207787 1.0 2009 -383563 Gpr25 G protein-coupled receptor 25 Novel U 0.040294205460336165 0.15338395687754697 1.0 2010 -258198 Or2t43 olfactory receptor family 2 subfamily T member 43 Novel U 0.04028247045105393 0.15326240603716926 1.0 2011 -18347 Or4c58 olfactory receptor family 4 subfamily C member 58 Novel U 0.04027211702825538 0.1531551656241723 1.0 2012 -11491 Adam17 a disintegrin and metallopeptidase domain 17 Novel U 0.040262963035915485 0.15306034887243697 1.0 2013 -81840 Sorcs2 sortilin-related VPS10 domain containing receptor 2 Novel U 0.040256850717282223 0.1529970376769653 1.0 2014 -76884 Cyfip2 cytoplasmic FMR1 interacting protein 2 Novel U 0.04022207519959549 0.15263683400794967 1.0 2015 -230396 Ifna13 interferon alpha 13 Novel U 0.04018789011250186 0.15228274599960803 1.0 2016 -258558 Or7g22 olfactory receptor family 7 subfamily G member 22 Novel U 0.04017867740967356 0.15218732112656383 1.0 2017 -330401 Tmcc1 transmembrane and coiled coil domains 1 Novel U 0.04015551047165003 0.15194735874408816 1.0 2018 -13663 Ei24 etoposide induced 2.4 mRNA Novel N 0.040152413519327655 0.15191528061373982 1.0 2019 -55925 Syt8 synaptotagmin VIII Novel U 0.04008464866120863 0.15121337444099267 1.0 2020 -258546 Or6c213 olfactory receptor family 6 subfamily C member 213 Novel U 0.040069426789326866 0.15105570679243344 1.0 2021 -66124 Josd2 Josephin domain containing 2 Novel N 0.040020475944677426 0.15054867555272688 1.0 2022 -57295 Icmt isoprenylcysteine carboxyl methyltransferase Novel U 0.03999552050179899 0.15029018789575804 1.0 2023 -16798 Lats1 large tumor suppressor Novel U 0.03997513197026577 0.1500790041563738 1.0 2024 -227648 Sec16a SEC16 homolog A, endoplasmic reticulum export factor Novel U 0.039974837316744 0.1500759521448815 1.0 2025 -54698 Crtam cytotoxic and regulatory T cell molecule Novel U 0.039969130061896424 0.15001683658678622 1.0 2026 -18053 Ngfr nerve growth factor receptor (TNFR superfamily, member 16) Novel U 0.03995967707308157 0.1499189228393922 1.0 2027 -109552 Sri sorcin Novel U 0.03992162029014018 0.14952473193273466 1.0 2028 -269523 Vcp valosin containing protein Novel U 0.039878117756805165 0.14907413412251933 1.0 2029 -73205 C9orf72 C9orf72, member of C9orf72-SMCR8 complex Novel U 0.03984077159494584 0.14868730380566939 1.0 2030 -14190 Fgl2 fibrinogen-like protein 2 Novel U 0.03983695083089882 0.14864772845727117 1.0 2031 -258749 Or52i2 olfactory receptor family 52 subfamily J member 2 Novel U 0.03972323008674649 0.14746981272770945 1.0 2032 -257898 Or7d11 olfactory receptor family 7 subfamily D member 11 Novel U 0.03972188027672816 0.14745583143991223 1.0 2033 -101869 Unc45a unc-45 myosin chaperone A Novel N 0.03964115574870801 0.1466196894323554 1.0 2034 -50905 Il17rb interleukin 17 receptor B Novel N 0.039625633252779076 0.14645890792979807 1.0 2035 -14128 Fcer2a Fc receptor, IgE, low affinity II, alpha polypeptide Novel U 0.039622358062605195 0.14642498361764308 1.0 2036 -100102 Pcsk9 proprotein convertase subtilisin/kexin type 9 Novel U 0.039598579531642836 0.14617868637561207 1.0 2037 -14163 Fgd1 FYVE, RhoGEF and PH domain containing 1 Novel U 0.03959679989316278 0.14616025293873813 1.0 2038 -14827 Pdia3 protein disulfide isomerase associated 3 Novel U 0.039581717135538 0.14600402623107958 1.0 2039 -258807 Or8b46 olfactory receptor family 8 subfamily B member 46 Novel U 0.03957161803461843 0.14589942007574475 1.0 2040 -55950 Bri3 brain protein I3 Novel U 0.03945024850752978 0.14464227850396882 1.0 2041 -217449 Trappc12 trafficking protein particle complex 12 Novel U 0.03945022564276283 0.14464204167146433 1.0 2042 -70790 Ubr5 ubiquitin protein ligase E3 component n-recognin 5 Novel U 0.039431846469567815 0.14445167079969318 1.0 2043 -77733 Rnf170 ring finger protein 170 Novel U 0.03942292195511387 0.1443592309723568 1.0 2044 -12484 Cd24a CD24a antigen Novel U 0.03941052810053398 0.14423085583404432 1.0 2045 -258668 Or9r3 olfactory receptor family 9 subfamily R member 3 Novel U 0.039355459728837534 0.14366045945028777 1.0 2046 -259062 Or52n2b olfactory receptor family 52 subfamily N member 2B Novel U 0.03934961819962196 0.1435999530827028 1.0 2047 -12568 Cdk5 cyclin dependent kinase 5 Novel U 0.039345239149887044 0.14355459502950202 1.0 2048 -100038862 Btnl1 butyrophilin-like 1 Novel U 0.039331162220639385 0.1434087866591089 1.0 2049 -12042 Bcl10 B cell leukemia/lymphoma 10 Novel U 0.03932878874063495 0.14338420223124693 1.0 2050 -259148 Or2t29 olfactory receptor family 2 subfamily T member 29 Novel U 0.0393252078704515 0.14334711169560152 1.0 2051 -16423 Cd47 CD47 antigen (Rh-related antigen, integrin-associated signal transducer) Novel U 0.039324786899092065 0.14334275128809915 1.0 2052 -12047 Bcl2a1d B cell leukemia/lymphoma 2 related protein A1d Novel U 0.03930501089679601 0.14313791210641763 1.0 2053 -67245 Peli1 pellino 1 Novel U 0.03925039616443285 0.14257221450396265 1.0 2054 -110351 Rap1gap Rap1 GTPase-activating protein Novel U 0.03917776149486168 0.14181986698428062 1.0 2055 -12753 Clock clock circadian regulator Novel U 0.039169139010734745 0.14173055557714273 1.0 2056 -227624 Rabl6 RAB, member RAS oncogene family-like 6 Novel U 0.03916241083274328 0.14166086533068406 1.0 2057 -232944 Mark4 MAP/microtubule affinity regulating kinase 4 Novel U 0.03915808056988335 0.1416160126103306 1.0 2058 -211652 Wwc1 WW, C2 and coiled-coil domain containing 1 Novel U 0.03914048341975292 0.14143374190775476 1.0 2059 -22323 Vasp vasodilator-stimulated phosphoprotein Novel U 0.03913595186729971 0.14138680423641126 1.0 2060 -258532 Or2z9 olfactory receptor family 2 subfamily Z member 9 Novel U 0.03913298925108543 0.14135611755505448 1.0 2061 -263406 Plekhg3 pleckstrin homology domain containing, family G (with RhoGef domain) member 3 Novel U 0.03910967533517675 0.14111463278047606 1.0 2062 -258438 Or6d15 olfactory receptor family 6 subfamily D member 15 Novel U 0.038957708519977034 0.13954056550427735 1.0 2063 -252870 Usp7 ubiquitin specific peptidase 7 Novel U 0.03894002834891108 0.13935743487358054 1.0 2064 -12481 Cd2 CD2 antigen Novel U 0.03890029177829957 0.13894584478145586 1.0 2065 -59021 Rab2a RAB2A, member RAS oncogene family Novel U 0.038888607772502165 0.13882482223349737 1.0 2066 -20128 Trim30a tripartite motif-containing 30A Novel U 0.03888264892954719 0.13876310073405612 1.0 2067 -258894 Or4c118 olfactory receptor family 4 subfamily C member 118 Novel U 0.038877788582471984 0.13871275741882647 1.0 2068 -22248 Unc119 unc-119 lipid binding chaperone Novel U 0.0387970888446305 0.13787687218712533 1.0 2069 -258443 Or2m12 olfactory receptor family 2 subfamily M member 12 Novel U 0.03876744093179091 0.1375697800805555 1.0 2070 -18362 Or13a28 olfactory receptor family 13 subfamily A member 28 Novel U 0.038749905862077244 0.13738815240489574 1.0 2071 -268591 Serpina5 serine (or cysteine) peptidase inhibitor, clade A, member 5 Novel N 0.038718139812202415 0.1370591207045449 1.0 2072 -14102 Fas Fas cell surface death receptor Novel U 0.038701882697589764 0.1368907300458109 1.0 2073 -67542 Cog6 component of oligomeric golgi complex 6 Novel U 0.038588103336326146 0.13571220716213736 1.0 2074 -15234 Hgf hepatocyte growth factor Novel U 0.038569479128109874 0.13551929822567108 1.0 2075 -246256 Fcgr4 Fc receptor, IgG, low affinity IV Novel U 0.038540145277899285 0.13521545916948818 1.0 2076 -21337 Tacr2 tachykinin receptor 2 Novel U 0.03846229934656807 0.13440913357180662 1.0 2077 -13139 Dgka diacylglycerol kinase, alpha Novel U 0.03836712879314236 0.1334233601079865 1.0 2078 -258468 Or4a81 olfactory receptor family 4 subfamily A member 81 Novel U 0.038357385165583256 0.1333224359340338 1.0 2079 -66676 Tmed7 transmembrane p24 trafficking protein 7 Novel U 0.03829885717690682 0.1327162049513273 1.0 2080 -11736 Ankfy1 ankyrin repeat and FYVE domain containing 1 Novel U 0.03819502355138663 0.13164069967153574 1.0 2081 -208643 Eif4g1 eukaryotic translation initiation factor 4, gamma 1 Novel U 0.0381882105530291 0.1315701308585137 1.0 2082 -211550 Tifa TRAF-interacting protein with forkhead-associated domain Novel U 0.038170902356754174 0.1313908531304743 1.0 2083 -30960 Vapa vesicle-associated membrane protein, associated protein A Novel U 0.03816988873930738 0.13138035411428128 1.0 2084 -67886 Camsap2 calmodulin regulated spectrin-associated protein family, member 2 Novel U 0.038127305549235144 0.13093927883136003 1.0 2085 -117197 Bloc1s4 biogenesis of lysosomal organelles complex-1, subunit 4, cappuccino Novel U 0.03808801507166256 0.13053230935626808 1.0 2086 -225049 Ttc7 tetratricopeptide repeat domain 7 Novel U 0.038079903906927406 0.13044829417858156 1.0 2087 -24064 Spry2 sprouty RTK signaling antagonist 2 Novel U 0.03807201100601346 0.13036653977038007 1.0 2088 -258964 Or13a26 olfactory receptor family 13 subfamily A member 26 Novel U 0.03804516509126509 0.13008847066792834 1.0 2089 -53978 Lpar2 lysophosphatidic acid receptor 2 Novel U 0.03804163334587447 0.1300518889652722 1.0 2090 -217378 Dnajc27 DnaJ heat shock protein family (Hsp40) member C27 Novel U 0.038006759575949206 0.1296906676027997 1.0 2091 -53599 Cd164 CD164 antigen Novel N 0.03796321815622591 0.12923966700865286 1.0 2092 -20431 Pmel premelanosome protein Novel U 0.037959655080501406 0.12920276078742826 1.0 2093 -229323 Gpr171 G protein-coupled receptor 171 Novel U 0.03795124755197486 0.12911567588333295 1.0 2094 -100043665 Gm10662 predicted gene 10662 Novel U 0.0379216009776654 0.12880859764121416 1.0 2095 -16847 Lepr leptin receptor Novel U 0.03791940002814718 0.12878580027845674 1.0 2096 -71601 Ceacam20 CEA cell adhesion molecule 20 Novel U 0.037916044129512126 0.1287510399907141 1.0 2097 -20378 Frzb frizzled-related protein Novel U 0.037897618647785035 0.12856018945668996 1.0 2098 -75723 Amotl1 angiomotin-like 1 Novel U 0.03787595027950478 0.12833574921035232 1.0 2099 -68089 Arpc4 actin related protein 2/3 complex, subunit 4 Novel U 0.03786177139666002 0.12818888480795196 1.0 2100 -24001 Tiam2 T cell lymphoma invasion and metastasis 2 Novel U 0.037818614486503435 0.12774186695125705 1.0 2101 -14450 Gart phosphoribosylglycinamide formyltransferase Novel N 0.037812968027240525 0.12768338111182917 1.0 2102 -12663 Chml choroideremia-like Novel U 0.037811728959935884 0.12767054689341986 1.0 2103 -74732 Stx11 syntaxin 11 Novel U 0.037744012982311816 0.12696914702323261 1.0 2104 -329416 Nostrin nitric oxide synthase trafficker Novel U 0.03773457122114231 0.12687134957142002 1.0 2105 -241075 Plekhm3 pleckstrin homology domain containing, family M, member 3 Novel U 0.03771084535141905 0.12662559779277252 1.0 2106 -18753 Prkcd protein kinase C, delta Novel U 0.03769234261810079 0.12643394708930653 1.0 2107 -230777 Hcrtr1 hypocretin (orexin) receptor 1 Novel N 0.037582047172303054 0.12529151048750106 1.0 2108 -258645 Or10j2 olfactory receptor family 10 subfamily J member 2 Novel U 0.037538529336420524 0.1248407541740016 1.0 2109 -50523 Lats2 large tumor suppressor 2 Novel U 0.03753577531280884 0.12481222808796544 1.0 2110 -20907 Stx1a syntaxin 1A (brain) Novel U 0.03751524029612501 0.12459952706020665 1.0 2111 -13163 Daxx Fas death domain-associated protein Novel U 0.03746486428738965 0.12407773401774781 1.0 2112 -258841 Or5aq1b olfactory receptor family 5 subfamily AQ member 1B Novel U 0.037427557586687255 0.12369131243826416 1.0 2113 -259042 Or7a35 olfactory receptor family 7 subfamily A member 35 Novel U 0.037422573544590866 0.12363968789407133 1.0 2114 -259096 Or51f5 olfactory receptor family 51 subfamily F member 5 Novel U 0.03738621767935926 0.12326311503713706 1.0 2115 -55983 Pdzrn3 PDZ domain containing RING finger 3 Novel U 0.03735780299165296 0.1229687966359577 1.0 2116 -228592 F830045P16Rik RIKEN cDNA F830045P16 gene Novel U 0.037326819590000365 0.12264787158016462 1.0 2117 -258569 Or9a2 olfactory receptor family 9 subfamily A member 2 Novel U 0.0373256680479254 0.12263594394520702 1.0 2118 -52822 Rufy3 RUN and FYVE domain containing 3 Novel N 0.03732219218672524 0.12259994108915859 1.0 2119 -20354 Sema4d sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4D Novel U 0.03730105176476171 0.12238096929341422 1.0 2120 -67511 Tmed9 transmembrane p24 trafficking protein 9 Novel U 0.037299404819918607 0.12236391029286978 1.0 2121 -259108 Or51r1 olfactory receptor family 51 subfamily R member 1 Novel U 0.037274834749013615 0.12210941430613344 1.0 2122 -213027 Evi5l ecotropic viral integration site 5 like Novel U 0.03725980913563695 0.12195377949671839 1.0 2123 -226407 Rab3gap1 RAB3 GTPase activating protein subunit 1 Novel U 0.0372580611786195 0.12193567421539266 1.0 2124 -12769 Ccr9 C-C motif chemokine receptor 9 Novel U 0.03722236097021697 0.12156589263034037 1.0 2125 -12984 Csf2rb2 colony stimulating factor 2 receptor, beta 2, low-affinity (granulocyte-macrophage) Novel U 0.037212648789213904 0.12146529417878134 1.0 2126 -73470 Kif2b kinesin family member 2B Novel U 0.03720081426159499 0.12134271253074375 1.0 2127 -17463 Psmd7 proteasome (prosome, macropain) 26S subunit, non-ATPase, 7 Novel U 0.03718553522392357 0.12118445276081455 1.0 2128 -15969 Ifna6 interferon alpha 6 Novel U 0.03713684682927805 0.12068013996962097 1.0 2129 -223870 Senp1 SUMO1/sentrin specific peptidase 1 Novel N 0.03712924598923131 0.12060141071828104 1.0 2130 -13728 Mark2 MAP/microtubule affinity regulating kinase 2 Novel U 0.03711539878920027 0.12045798187556166 1.0 2131 -20115 Rps7 ribosomal protein S7 Novel U 0.037107240688691485 0.12037348053867479 1.0 2132 -217866 Cdc42bpb CDC42 binding protein kinase beta Novel U 0.03709844072882438 0.1202823308436544 1.0 2133 -13840 Epha6 Eph receptor A6 Novel U 0.03709814881330575 0.1202793071923086 1.0 2134 -258568 Or5b104 olfactory receptor family 5 subfamily B member 104 Novel U 0.037074229427352334 0.12003155097891062 1.0 2135 -12539 Cdc37 cell division cycle 37 Novel U 0.03705346369783492 0.11981646023520579 1.0 2136 -98376 Gorab golgin, RAB6-interacting Novel U 0.0370143180376994 0.11941099077436633 1.0 2137 -17311 Kitl kit ligand Novel U 0.0370046187176712 0.11931052553636227 1.0 2138 -258039 Or4k1 olfactory receptor family 4 subfamily K member 1 Novel U 0.036953530576688716 0.11878135625149784 1.0 2139 -20980 Syt2 synaptotagmin II Novel U 0.03693457958728779 0.11858506252626327 1.0 2140 -29815 Bcar3 breast cancer anti-estrogen resistance 3 Novel U 0.03693384044206628 0.11857740648435698 1.0 2141 -231717 Pheta1 PH domain containing endocytic trafficking adaptor 1 Novel U 0.036885617579128394 0.11807791565528755 1.0 2142 -257904 Or14a256 olfactory receptor family 14 subfamily A member 256 Novel U 0.036869398837623066 0.11790992246393778 1.0 2143 -68520 Zfyve21 zinc finger, FYVE domain containing 21 Novel U 0.036853026535641126 0.11774033869821927 1.0 2144 -21934 Tnfrsf11a tumor necrosis factor receptor superfamily, member 11a, NFKB activator Novel U 0.03684873965000897 0.11769593527776517 1.0 2145 -259145 Or4a78 olfactory receptor family 4 subfamily A member 78 Novel U 0.036797954739283635 0.11716990684193618 1.0 2146 -12801 Cnr1 cannabinoid receptor 1 Novel N 0.03678334476563847 0.11701857721519658 1.0 2147 -72938 Ift25 intraflagellar transport 25 Novel U 0.03677598852228012 0.11694238148831422 1.0 2148 -16187 Il3 interleukin 3 Novel U 0.03677256544421398 0.11690692535823279 1.0 2149 -74734 Rhoh ras homolog family member H Novel U 0.03675312158132882 0.11670552646565086 1.0 2150 -258372 Or8b3b olfactory receptor family 8 subfamily B member 3B Novel U 0.0366906795301205 0.11605875375190695 1.0 2151 -74392 Specc1l sperm antigen with calponin homology and coiled-coil domains 1-like Novel U 0.0366630130980182 0.1157721857576763 1.0 2152 -19188 Psme2 proteasome (prosome, macropain) activator subunit 2 (PA28 beta) Novel U 0.03662917086469063 0.1154216490173728 1.0 2153 -276952 Rasl10b RAS-like, family 10, member B Novel U 0.036613101249966196 0.11525520047631727 1.0 2154 -16198 Il9 interleukin 9 Novel N 0.036589737708673305 0.11501320168364054 1.0 2155 -14232 Fkbp8 FK506 binding protein 8 Novel U 0.036574358868822196 0.11485390816601489 1.0 2156 -17387 Mmp14 matrix metallopeptidase 14 (membrane-inserted) Novel U 0.03650660277003007 0.11415209272208778 1.0 2157 -243219 2900026A02Rik RIKEN cDNA 2900026A02 gene Novel U 0.03650380674689271 0.11412313160634531 1.0 2158 -258726 Or52ab4 olfactory receptor family 52 subfamily AB member 4 Novel U 0.03649405657987777 0.11402213969692405 1.0 2159 -26412 Map4k2 mitogen-activated protein kinase kinase kinase kinase 2 Novel U 0.03647748229108627 0.11385046375847213 1.0 2160 -258285 Or10al6 olfactory receptor family 10 subfamily AL member 6 Novel U 0.036450193913467696 0.11356781164015602 1.0 2161 -245000 Atr ataxia telangiectasia and Rad3 related Novel U 0.036401563792887205 0.11306410244981238 1.0 2162 -258852 Or13p3 olfactory receptor family 13 subfamily P member 3 Novel U 0.03637424868523693 0.11278117346270661 1.0 2163 -231872 Aimp2 aminoacyl tRNA synthetase complex-interacting multifunctional protein 2 Novel N 0.036293889316198986 0.11194881375988357 1.0 2164 -17086 Ncr1 natural cytotoxicity triggering receptor 1 Novel U 0.036227400448097295 0.11126012424979005 1.0 2165 -73991 Atl1 atlastin GTPase 1 Novel U 0.03622688450721591 0.1112547801511013 1.0 2166 -14897 Trip12 thyroid hormone receptor interactor 12 Novel U 0.03619948691617253 0.11097099680372126 1.0 2167 -14699 Gngt1 guanine nucleotide binding protein (G protein), gamma transducing activity polypeptide 1 Novel U 0.03616876447377234 0.11065277475528598 1.0 2168 -258717 Or6n1 olfactory receptor family 6 subfamily N member 1 Novel U 0.036160330862128554 0.1105654196831197 1.0 2169 -259012 Or5j3 olfactory receptor family 5 subfamily J member 3 Novel U 0.0361472461097852 0.11042988824848533 1.0 2170 -60409 Trappc4 trafficking protein particle complex 4 Novel U 0.03614261495508584 0.11038191890035035 1.0 2171 -102443351 Xntrpc Xndc1-transient receptor potential cation channel, subfamily C, member 2 readthrough Novel U 0.03611299831733824 0.11007515074015521 1.0 2172 -329324 Syt14 synaptotagmin XIV Novel U 0.0360842527489162 0.10977740508739936 1.0 2173 -171166 Mcoln3 mucolipin 3 Novel N 0.036080623811576035 0.10973981667372484 1.0 2174 -381104 Prickle4 prickle planar cell polarity protein 4 Novel U 0.03606340215549972 0.10956143532621782 1.0 2175 -19218 Ptger3 prostaglandin E receptor 3 (subtype EP3) Novel N 0.03606182562661216 0.10954510569182604 1.0 2176 -258502 Or11m3 olfactory receptor family 11 subfamily M member 3 Novel U 0.03605894868354966 0.10951530641015914 1.0 2177 -71302 Arhgap26 Rho GTPase activating protein 26 Novel U 0.03604689954908812 0.10939050187150047 1.0 2178 -226778 Mark1 MAP/microtubule affinity regulating kinase 1 Novel N 0.03600680184011645 0.10897517112011303 1.0 2179 -100986 Akap9 A kinase anchor protein 9 Novel U 0.035965903786120156 0.10855155042127054 1.0 2180 -23854 Def8 differentially expressed in FDCP 8 Novel U 0.03592995097608502 0.10817915239681158 1.0 2181 -107586 Ovol2 ovo like zinc finger 2 Novel U 0.03591796885031066 0.10805504193193188 1.0 2182 -258655 Or12e1 olfactory receptor family 12 subfamily E member 1 Novel U 0.03589809621567158 0.10784920183561802 1.0 2183 -13716 Ell elongation factor RNA polymerase II Novel N 0.03587372353427638 0.1075967504029353 1.0 2184 -20350 Sema3f sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3F Novel N 0.03583109371399496 0.10715519212584018 1.0 2185 -257917 Or2t44 olfactory receptor family 2 subfamily T member 44 Novel U 0.035815956338432486 0.10699839968737848 1.0 2186 -75985 Rab30 RAB30, member RAS oncogene family Novel U 0.03580832774488661 0.10691938296620682 1.0 2187 -13131 Dab1 disabled 1 Novel N 0.03576566605397124 0.10647749457413293 1.0 2188 -328778 Rab26 RAB26, member RAS oncogene family Novel U 0.03576434612626184 0.10646382280630923 1.0 2189 -21832 Thpo thrombopoietin Novel U 0.03571478013528608 0.10595041990117654 1.0 2190 -11858 Rnd2 Rho family GTPase 2 Novel U 0.03571324257238022 0.10593449387514227 1.0 2191 -258729 Or5p6 olfactory receptor family 5 subfamily P member 6 Novel U 0.03569961156863008 0.10579330438639344 1.0 2192 -74198 Dtx2 deltex 2, E3 ubiquitin ligase Novel U 0.03566476296684338 0.10543234371467286 1.0 2193 -259051 Or52n4 olfactory receptor family 52 subfamily N member 4 Novel U 0.03566204669991496 0.10540420871112079 1.0 2194 -55992 Trim3 tripartite motif-containing 3 Novel U 0.0356401397049654 0.10517729677758689 1.0 2195 -12859 Cox5b cytochrome c oxidase subunit 5B Novel U 0.03562433299298611 0.1050135713745231 1.0 2196 -258537 Or6c207 olfactory receptor family 6 subfamily C member 207 Novel U 0.035597404960993125 0.10473465170435109 1.0 2197 -20491 Sla src-like adaptor Novel U 0.035585113353326196 0.10460733563620189 1.0 2198 -258903 Or4c112 olfactory receptor family 4 subfamily C member 112 Novel U 0.0355523966115167 0.10426845670004406 1.0 2199 -14371 Fzd9 frizzled class receptor 9 Novel N 0.035521825751655266 0.10395180473856222 1.0 2200 -257664 Or6c204 olfactory receptor family 6 subfamily C member 204 Novel U 0.03546937167852794 0.10340848717344417 1.0 2201 -232288 Frmd4b FERM domain containing 4B Novel U 0.035457220088608514 0.10328262140452074 1.0 2202 -12777 Ccr10 C-C motif chemokine receptor 10 Novel U 0.03544795762736652 0.1031866811354632 1.0 2203 -14673 Gna12 guanine nucleotide binding protein, alpha 12 Novel U 0.035442735936006435 0.10313259502800927 1.0 2204 -99899 Ifi44 interferon-induced protein 44 Novel N 0.03539952988693631 0.10268506819206326 1.0 2205 -435766 Tnni3k TNNI3 interacting kinase Novel N 0.03538993174063303 0.10258565090817592 1.0 2206 -258944 Or1n1 olfactory receptor family 1 subfamily N member 1 Novel U 0.03535200997164451 0.10219285847160389 1.0 2207 -12331 Cap1 cyclase associated actin cytoskeleton regulatory protein 1 Novel U 0.035332594099258666 0.10199174950369372 1.0 2208 -16995 Ltb4r1 leukotriene B4 receptor 1 Novel U 0.035298841767331515 0.10164214395914044 1.0 2209 -329908 Usp24 ubiquitin specific peptidase 24 Novel U 0.035241595207186734 0.10104918597104008 1.0 2210 -258484 Or9s14 olfactory receptor family 9 subfamily S member 14 Novel U 0.03523833906699326 0.10101545897795591 1.0 2211 -67703 Kirrel3 kirre like nephrin family adhesion molecule 3 Novel U 0.0352156575420708 0.10078052448842408 1.0 2212 -404316 Or1a1 olfactory receptor family 1 subfamily A member 1 Novel U 0.03517049332651669 0.10031271502840822 1.0 2213 -258963 Or13a25 olfactory receptor family 13 subfamily A member 25 Novel U 0.03513792588434718 0.0999753825330134 1.0 2214 -12504 Cd4 CD4 antigen Novel U 0.03512985537815114 0.09989178849513838 1.0 2215 -54637 Praf2 PRA1 domain family 2 Novel U 0.035102289454521554 0.0996062615643641 1.0 2216 -72685 Dnajc6 DnaJ heat shock protein family (Hsp40) member C6 Known P 0.03510191930471298 0.0996024275648149 1.0 2217 -21935 Tnfrsf17 tumor necrosis factor receptor superfamily, member 17 Novel N 0.03509741012192597 0.09955572159773847 1.0 2218 -71729 Rgs12 regulator of G-protein signaling 12 Novel N 0.03507342706629219 0.09930730589588425 1.0 2219 -12549 Arhgap31 Rho GTPase activating protein 31 Novel U 0.03506640695736587 0.09923459183839906 1.0 2220 -353047 Plekhm1 pleckstrin homology domain containing, family M (with RUN domain) member 1 Novel U 0.03503910840721065 0.09895183435328284 1.0 2221 -22793 Zyx zyxin Novel U 0.0350045055352188 0.09859341894269934 1.0 2222 -67023 Use1 unconventional SNARE in the ER 1 homolog (S. cerevisiae) Novel U 0.03498970333574522 0.09844009824714811 1.0 2223 -15970 Ifna7 interferon alpha 7 Novel U 0.03498918177030894 0.0984346958895047 1.0 2224 -268470 Ube2z ubiquitin-conjugating enzyme E2Z Novel N 0.03495816047868525 0.09811337837063655 1.0 2225 -17919 Myo5b myosin VB Novel U 0.03494385063960005 0.09796515752780265 1.0 2226 -54324 Arhgef5 Rho guanine nucleotide exchange factor 5 Novel U 0.03488448531124151 0.09735025340819493 1.0 2227 -384783 Irs2 insulin receptor substrate 2 Novel U 0.03485166134395085 0.0970102638340281 1.0 2228 -258973 Or4c122 olfactory receptor family 4 subfamily C member 122 Novel U 0.034844991522199546 0.09694117803958664 1.0 2229 -258926 Or5p55 olfactory receptor family 5 subfamily P member 55 Novel U 0.03484106365207127 0.09690049328991973 1.0 2230 -258745 Or56b35 olfactory receptor family 56 subfamily B member 35 Novel U 0.034831420752339 0.0968006124514861 1.0 2231 -258784 Or4a72 olfactory receptor family 4 subfamily A member 72 Novel U 0.0347883568208855 0.09635455766514124 1.0 2232 -225348 Wdr36 WD repeat domain 36 Novel U 0.03477147717968003 0.09617971889642332 1.0 2233 -258019 Or6d12 olfactory receptor family 6 subfamily D member 12 Novel U 0.034765672368356544 0.09611959285155755 1.0 2234 -286940 Flnb filamin, beta Novel U 0.034748599917448574 0.09594275696627938 1.0 2235 -231659 Gcn1 GCN1 activator of EIF2AK4 Novel U 0.03474427713658624 0.09589798174421109 1.0 2236 -320302 Glt28d2 glycosyltransferase 28 domain containing 2 Novel U 0.034702725504865514 0.09546759130878413 1.0 2237 -664821 Gm7356 predicted gene 7356 Novel U 0.03467190093313246 0.09514831140807635 1.0 2238 -16409 Itgam integrin alpha M Novel U 0.0346314994231283 0.09472983389558137 1.0 2239 -227800 Rabgap1 RAB GTPase activating protein 1 Novel U 0.03462295138530597 0.09464129360081926 1.0 2240 -103841 Cuedc1 CUE domain containing 1 Novel U 0.03457036110617731 0.09409656521841693 1.0 2241 -18101 Nmbr neuromedin B receptor Novel U 0.03452200137273526 0.09359565668916481 1.0 2242 -258624 Or10al4 olfactory receptor family 10 subfamily AL member 4 Novel U 0.03449821264327581 0.09334925381143612 1.0 2243 -258069 Or6c5c olfactory receptor family 6 subfamily C member 5C Novel U 0.034485497711543536 0.09321755296653413 1.0 2244 -17967 Ncam1 neural cell adhesion molecule 1 Novel U 0.0344808841828903 0.09316976618840551 1.0 2245 -17087 Ly96 lymphocyte antigen 96 Novel U 0.03445992890543889 0.09295271211343144 1.0 2246 -21766 Tex261 testis expressed gene 261 Novel U 0.0344302231528527 0.09264502090466765 1.0 2247 -78816 Gmip Gem-interacting protein Novel U 0.03442965981062104 0.09263918582435099 1.0 2248 -57914 Crlf2 cytokine receptor-like factor 2 Novel U 0.034381673404352 0.09214214420568441 1.0 2249 -14127 Fcer1g Fc receptor, IgE, high affinity I, gamma polypeptide Novel U 0.03436855257191726 0.09200623905464954 1.0 2250 -243764 Chrm2 cholinergic receptor, muscarinic 2, cardiac Novel N 0.034342109769989866 0.09173234538154587 1.0 2251 -67443 Map1lc3b microtubule-associated protein 1 light chain 3 beta Novel U 0.03433831018860546 0.09169298944247072 1.0 2252 -16147 Ihh Indian hedgehog Novel U 0.034321050021285084 0.09151420919676369 1.0 2253 -258824 Or8b57 olfactory receptor family 8 subfamily B member 57 Novel U 0.03431479435701728 0.09144941323192166 1.0 2254 -16635 Klra4 killer cell lectin-like receptor, subfamily A, member 4 Novel U 0.03428954160709341 0.09118784607834965 1.0 2255 -258998 Or5k14 olfactory receptor family 5 subfamily K member 14 Novel U 0.03425721642222394 0.09085302287610492 1.0 2256 -83382 Siglece sialic acid binding Ig-like lectin E Novel U 0.03425584722915731 0.09083884081933054 1.0 2257 -18080 Nin ninein Novel N 0.034254733213290874 0.09082730187960729 1.0 2258 -19250 Ptpn14 protein tyrosine phosphatase, non-receptor type 14 Novel U 0.03424942168163983 0.09077228520937297 1.0 2259 -21814 Tgfbr3 transforming growth factor, beta receptor III Novel U 0.03424138572451269 0.09068904902961794 1.0 2260 -72972 Ccser2 coiled-coil serine rich 2 Novel U 0.03422767945205708 0.09054707991009217 1.0 2261 -19173 Psmb5 proteasome (prosome, macropain) subunit, beta type 5 Novel N 0.03421585310688823 0.09042458301560337 1.0 2262 -12231 Btn1a1 butyrophilin, subfamily 1, member A1 Novel U 0.03419813546004844 0.09024106421207309 1.0 2263 -108159 Ubxn8 UBX domain protein 8 Novel U 0.03419305784998596 0.09018847049396336 1.0 2264 -258545 Or6c215 olfactory receptor family 6 subfamily C member 215 Novel U 0.0341911046458322 0.09016823926954683 1.0 2265 -217369 Uts2r urotensin 2 receptor Novel U 0.03417325999198858 0.089983404931646 1.0 2266 -12344 Capza3 capping actin protein of muscle Z-line subunit alpha 3 Novel U 0.0341700820795526 0.08995048821910234 1.0 2267 -109333 Pkn2 protein kinase N2 Novel U 0.03415555636624139 0.08980003135813193 1.0 2268 -218397 Rasa1 RAS p21 protein activator 1 Novel U 0.03413600237057577 0.08959749171383044 1.0 2269 -13605 Ect2 ect2 oncogene Novel U 0.03411024814137508 0.08933073025439439 1.0 2270 -22095 Tshr thyroid stimulating hormone receptor Novel U 0.03409625425223699 0.08918578201072634 1.0 2271 -26934 Racgap1 Rac GTPase-activating protein 1 Novel U 0.03409554066544401 0.08917839070218261 1.0 2272 -404308 Or10al2 olfactory receptor family 10 subfamily AL member 2 Novel U 0.034092412381331025 0.08914598803817708 1.0 2273 -109660 Ctrl chymotrypsin-like Novel N 0.034071549655887434 0.08892989261385753 1.0 2274 -258900 Or4c108 olfactory receptor family 4 subfamily C member 108 Novel U 0.03407070818923113 0.08892117672989325 1.0 2275 -216565 Ehbp1 EH domain binding protein 1 Novel U 0.03404018460526316 0.08860501445056179 1.0 2276 -14357 Dtx1 deltex 1, E3 ubiquitin ligase Novel U 0.034001208118908895 0.08820129728618728 1.0 2277 -225644 Cplx4 complexin 4 Novel U 0.03399658228617461 0.08815338306279161 1.0 2278 -71817 Tmem50a transmembrane protein 50A Novel U 0.03393483153042523 0.08751377076468629 1.0 2279 -387510 Ifnk interferon kappa Novel U 0.03386663574431354 0.08680740105395712 1.0 2280 -15163 Hcls1 hematopoietic cell specific Lyn substrate 1 Novel U 0.03384983409849982 0.08663337015894297 1.0 2281 -69097 Trim15 tripartite motif-containing 15 Novel U 0.03384097733263813 0.08654163206929803 1.0 2282 -18007 Neo1 neogenin Novel N 0.033834959457964095 0.08647929912125138 1.0 2283 -57349 Ppbp pro-platelet basic protein Novel U 0.03383103734989432 0.08643867405479705 1.0 2284 -71085 Arhgap19 Rho GTPase activating protein 19 Novel U 0.0338282845929713 0.08641016108908035 1.0 2285 -210998 Fam91a1 family with sequence similarity 91, member A1 Novel U 0.03382543324265336 0.08638062689622023 1.0 2286 -13518 Dst dystonin Novel U 0.033810208475129166 0.08622292925469192 1.0 2287 -14362 Fzd1 frizzled class receptor 1 Novel U 0.033782460701720016 0.08593551872987885 1.0 2288 -257958 Or14c44 olfactory receptor family 14 subfamily C member 44 Novel U 0.033774239341433365 0.08585036215029239 1.0 2289 -258489 Or5p62 olfactory receptor family 5 subfamily P member 62 Novel U 0.03373373074854399 0.08543077547679247 1.0 2290 -258629 Or5b123 olfactory receptor family 5 subfamily B member 123 Novel U 0.033733354240802725 0.0854268756219855 1.0 2291 -50932 Mink1 misshapen-like kinase 1 (zebrafish) Novel U 0.033701948581120474 0.0851015768314022 1.0 2292 -226089 Ric1 RAB6A GEF complex partner 1 Novel U 0.033681891999825464 0.08489383142167307 1.0 2293 -106512 Gpsm3 G-protein signalling modulator 3 (AGS3-like, C. elegans) Novel U 0.03366895581210651 0.08475983881453439 1.0 2294 -18216 Ntsr1 neurotensin receptor 1 Novel N 0.033587739759053964 0.08391860560685006 1.0 2295 -433667 Ankrd13c ankyrin repeat domain 13c Novel U 0.03353842668631899 0.08340782242054116 1.0 2296 -100041505 Rbmyf9 RNA binding motif protein Y-linked family member 9 Novel U 0.03353461288461197 0.08336831918783184 1.0 2297 -258591 Or2ag13 olfactory receptor family 2 subfamily AG member 13 Novel U 0.033527449182955714 0.08329411780157032 1.0 2298 -258990 Or2a25 olfactory receptor family 2 subfamily A member 25 Novel U 0.03352217815260942 0.08323952064251917 1.0 2299 -216440 Os9 amplified in osteosarcoma Novel U 0.03350002535019371 0.08301006264333143 1.0 2300 -16189 Il4 interleukin 4 Novel U 0.0334952964119362 0.08296108045631562 1.0 2301 -258405 Or10v1 olfactory receptor family 10 subfamily V member 1 Novel U 0.033474726786167495 0.08274802094879338 1.0 2302 -258105 Or5d14 olfactory receptor family 5 subfamily D member 14 Novel U 0.03346657277095022 0.08266356192722167 1.0 2303 -17451 Mos Moloney sarcoma oncogene Novel U 0.033463607018586916 0.08263284276173642 1.0 2304 -258685 Or5b117 olfactory receptor family 5 subfamily B member 117 Novel U 0.03345257748021655 0.08251859916587272 1.0 2305 -258943 Or1n1b olfactory receptor family 1 subfamily N member 1B Novel U 0.033448067459495634 0.08247188451950441 1.0 2306 -333050 Ksr2 kinase suppressor of ras 2 Novel U 0.033434700756751104 0.08233343265188324 1.0 2307 -69816 Mzb1 marginal zone B and B1 cell-specific protein 1 Novel U 0.03342841179033614 0.08226829174449571 1.0 2308 -18015 Nf1 neurofibromin 1 Novel U 0.03341176244038677 0.08209583832503804 1.0 2309 -13033 Ctsd cathepsin D Novel U 0.033409151075670225 0.08206878989514803 1.0 2310 -98910 Usp6nl USP6 N-terminal like Novel U 0.03339688997692288 0.08194178983738495 1.0 2311 -99100 Cep152 centrosomal protein 152 Novel U 0.03337278366761949 0.08169209747807266 1.0 2312 -16407 Itgae integrin alpha E, epithelial-associated Novel U 0.03337238723278717 0.08168799121911155 1.0 2313 -257667 Or6c2b olfactory receptor family 6 subfamily C member 2B Novel U 0.03337051699713331 0.08166861937968957 1.0 2314 -240754 Lax1 lymphocyte transmembrane adaptor 1 Novel U 0.03332208044123128 0.08116691512592233 1.0 2315 -105841 Dennd3 DENN domain containing 3 Novel U 0.03330432741416569 0.08098302985517629 1.0 2316 -258959 Or2aj5 olfactory receptor family 2 subfamily AJ member 5 Novel U 0.033300334136271745 0.08094166761402276 1.0 2317 -623279 Dok6 docking protein 6 Novel U 0.033262855083718075 0.08055346081972933 1.0 2318 -22225 Usp5 ubiquitin specific peptidase 5 (isopeptidase T) Novel U 0.03326183450531096 0.0805428897021381 1.0 2319 -233103 Garre1 granule associated Rac and RHOG effector 1 Novel N 0.03324649150108963 0.08038396736878771 1.0 2320 -639510 Ighv6-5 immunoglobulin heavy variable V6-5 Novel U 0.033210132671968685 0.08000736381198507 1.0 2321 -16994 Ltb lymphotoxin B Novel N 0.03317720428710283 0.07966629268400688 1.0 2322 -68112 Entr1 endosome associated trafficking regulator 1 Novel U 0.03317334516320044 0.07962632000548779 1.0 2323 -242248 Bank1 B cell scaffold protein with ankyrin repeats 1 Novel U 0.033148848760129086 0.07937258706775059 1.0 2324 -18350 Or1j21 olfactory receptor family 1 subfamily J member 21 Novel U 0.03313320180124521 0.07921051638199747 1.0 2325 -80903 Fgf16 fibroblast growth factor 16 Novel U 0.03313004712875499 0.07917784038804802 1.0 2326 -69769 Tnfaip8l2 tumor necrosis factor, alpha-induced protein 8-like 2 Novel U 0.03308537829929059 0.07871516212086446 1.0 2327 -258357 Or51t4 olfactory receptor family 51 subfamily T member 4 Novel U 0.033068769441260866 0.07854312811537936 1.0 2328 -17059 Klrb1c killer cell lectin-like receptor subfamily B member 1C Novel U 0.03306259467608342 0.07847917010065585 1.0 2329 -58181 Il20 interleukin 20 Novel U 0.03302678656357581 0.07810827084843035 1.0 2330 -12985 Csf3 colony stimulating factor 3 (granulocyte) Novel U 0.033007551904346163 0.077909038880435 1.0 2331 -258974 Or4c125 olfactory receptor family 4 subfamily C member 125 Novel U 0.03300167084799894 0.07784812309211976 1.0 2332 -259048 Or52ad1 olfactory receptor family 52 subfamily AD member 1 Novel U 0.03295411487421353 0.0773555398789689 1.0 2333 -85030 Tnfrsf25 tumor necrosis factor receptor superfamily, member 25 Novel N 0.032953511136903625 0.07734928638775972 1.0 2334 -17970 Ncf2 neutrophil cytosolic factor 2 Novel U 0.03295033265016675 0.07731636372662631 1.0 2335 -259147 Or4l1 olfactory receptor family 4 subfamily L member 1 Novel U 0.03294371688842777 0.07724783788401536 1.0 2336 -192897 Itgb4 integrin beta 4 Novel U 0.03294130109564552 0.07722281518179173 1.0 2337 -18582 Pde6d phosphodiesterase 6D, cGMP-specific, rod, delta Novel U 0.03291420046685418 0.07694210775965621 1.0 2338 -12122 Bid BH3 interacting domain death agonist Novel U 0.032891167503864574 0.07670353308617776 1.0 2339 -258930 Or6c65 olfactory receptor family 6 subfamily C member 65 Novel U 0.032864821265758515 0.07643063961796114 1.0 2340 -106326 Osbpl11 oxysterol binding protein-like 11 Novel N 0.03284168338424104 0.07619097820181998 1.0 2341 -26401 Map3k1 mitogen-activated protein kinase kinase kinase 1 Novel U 0.032827213578506396 0.07604110042968981 1.0 2342 -258458 Or2m13 olfactory receptor family 2 subfamily M member 13 Novel U 0.03277510943962112 0.07550140747194743 1.0 2343 -16410 Itgav integrin alpha V Novel U 0.03276303936149684 0.07537638599951857 1.0 2344 -54167 Icos inducible T cell co-stimulator Novel U 0.032753747861940165 0.07528014495255213 1.0 2345 -230979 Tnfrsf14 tumor necrosis factor receptor superfamily, member 14 (herpesvirus entry mediator) Novel U 0.03270745380600459 0.07480063264300651 1.0 2346 -231130 Tnip2 TNFAIP3 interacting protein 2 Novel U 0.03270553236547585 0.07478073042517386 1.0 2347 -57267 Apba3 amyloid beta precursor protein binding family A member 3 Novel N 0.03262211808595152 0.07391672805995755 1.0 2348 -20848 Stat3 signal transducer and activator of transcription 3 Novel U 0.03261960227979238 0.07389066942246385 1.0 2349 -18344 Or13a17 olfactory receptor family 13 subfamily A member 17 Novel U 0.032609412531324794 0.07378512434280651 1.0 2350 -15894 Icam1 intercellular adhesion molecule 1 Novel U 0.032604101964302655 0.07373011766416669 1.0 2351 -76577 Faf2 Fas associated factor family member 2 Novel U 0.03259955149092842 0.07368298401054511 1.0 2352 -74741 C2cd5 C2 calcium-dependent domain containing 5 Novel U 0.03258729990226367 0.07355608245790489 1.0 2353 -258315 Or6c8 olfactory receptor family 6 subfamily C member 8 Novel U 0.032573124354581026 0.07340925260100412 1.0 2354 -276742 Taar7e trace amine-associated receptor 7E Novel U 0.03257300969354315 0.07340806494574312 1.0 2355 -18099 Nlk nemo like kinase Novel U 0.032554740083582036 0.07321882892634693 1.0 2356 -317717 Sec22a SEC22 homolog A, vesicle trafficking protein Novel U 0.032538627424127144 0.07305193452938831 1.0 2357 -68137 Kdelr1 KDEL (Lys-Asp-Glu-Leu) endoplasmic reticulum protein retention receptor 1 Novel N 0.03246210336721807 0.07225930086351696 1.0 2358 -21679 Tead4 TEA domain family member 4 Novel N 0.0324252282108646 0.07187734920621318 1.0 2359 -107358 Tm9sf3 transmembrane 9 superfamily member 3 Novel U 0.03239614330289527 0.0715760886855817 1.0 2360 -258166 Or5ak20 olfactory receptor family 5 subfamily AK member 20 Novel U 0.03239128647752171 0.07152578184802191 1.0 2361 -258027 Or2y1 olfactory receptor family 2 subfamily Y member 1 Novel U 0.03238227795211086 0.0714324718379557 1.0 2362 -227743 Mapkap1 mitogen-activated protein kinase associated protein 1 Novel U 0.032362548043980005 0.07122811009812206 1.0 2363 -20349 Sema3e sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3E Novel U 0.032356673204545036 0.07116725870437961 1.0 2364 -258905 Or7h8 olfactory receptor family 7 subfamily H member 8 Novel U 0.03235393486744442 0.07113889509870944 1.0 2365 -57270 Or4e1 olfactory receptor family 4 subfamily E member 1 Novel U 0.032353260354534515 0.07113190851616202 1.0 2366 -404325 Or8j3b olfactory receptor family 8 subfamily J member 3B Novel U 0.03234713400022695 0.07106845193963732 1.0 2367 -442801 Arhgef15 Rho guanine nucleotide exchange factor 15 Novel U 0.032323649681555794 0.07082520213884687 1.0 2368 -17083 Tmed1 transmembrane p24 trafficking protein 1 Novel N 0.03231029099442592 0.07068683329669884 1.0 2369 -13650 Rhbdf1 rhomboid 5 homolog 1 Novel U 0.032294842953768804 0.0705268229993994 1.0 2370 -101489 Ric8a RIC8 guanine nucleotide exchange factor A Novel U 0.032216265104473236 0.06971291621950355 1.0 2371 -259084 Or51ah3 olfactory receptor family 51 subfamily AH member 3 Novel U 0.032161015328733375 0.06914064085862862 1.0 2372 -15442 Hpse heparanase Novel U 0.032126378248726634 0.06878187112255145 1.0 2373 -404324 Or8k20 olfactory receptor family 8 subfamily K member 20 Novel U 0.03210308597948311 0.06854061056341913 1.0 2374 -20970 Sdc3 syndecan 3 Novel U 0.03208805380194395 0.06838490776262471 1.0 2375 -258716 Or6k4 olfactory receptor family 6 subfamily K member 4 Novel U 0.03207531878041847 0.06825299882830511 1.0 2376 -59009 Sh3rf1 SH3 domain containing ring finger 1 Novel U 0.032069480594669526 0.06819252709223757 1.0 2377 -15898 Icam5 intercellular adhesion molecule 5, telencephalin Novel U 0.03206228554373259 0.06811800099115733 1.0 2378 -194126 Mtmr11 myotubularin related protein 11 Novel U 0.03204757145191901 0.06796559291185202 1.0 2379 -66747 Capza1b capping actin protein of muscle Z-line subunit alpha 1B Novel U 0.03203276676139636 0.06781224641409636 1.0 2380 -11975 Atp6v0a1 ATPase, H+ transporting, lysosomal V0 subunit A1 Novel U 0.03201783098649934 0.06765754214870015 1.0 2381 -22419 Wnt5b wingless-type MMTV integration site family, member 5B Novel N 0.03201649500491808 0.0676437040953995 1.0 2382 -381293 Kif14 kinesin family member 14 Novel U 0.031982922274939034 0.06729595886192061 1.0 2383 -18343 Or8g20 olfactory receptor family 8 subfamily G member 20 Novel U 0.03193953340939227 0.06684653841891934 1.0 2384 -338349 Cntln centlein, centrosomal protein Novel N 0.031915078371263464 0.06659323393789725 1.0 2385 -240505 Cdc42bpg CDC42 binding protein kinase gamma Novel N 0.031910154205794676 0.06654222959384476 1.0 2386 -258241 Or4c107 olfactory receptor family 4 subfamily C member 107 Novel U 0.03188673832213844 0.06629968864068916 1.0 2387 -257938 Or10q3 olfactory receptor family 10 subfamily Q member 3 Novel U 0.031873282200443345 0.06616031057451756 1.0 2388 -53603 Tslp thymic stromal lymphopoietin Novel U 0.03185030442587672 0.0659223075409101 1.0 2389 -235627 Nbeal2 neurobeachin-like 2 Novel N 0.031818606972527703 0.06559398636111864 1.0 2390 -77300 Raph1 Ras association (RalGDS/AF-6) and pleckstrin homology domains 1 Novel U 0.03180038905454118 0.06540528576549605 1.0 2391 -14825 Cxcl1 C-X-C motif chemokine ligand 1 Novel U 0.031771542906270475 0.0651064983099741 1.0 2392 -326623 Tnfsf15 tumor necrosis factor (ligand) superfamily, member 15 Novel U 0.03174396071487152 0.0648208028781794 1.0 2393 -19671 Rce1 Ras converting CAAX endopeptidase 1 Novel N 0.03174214825476748 0.06480202947600323 1.0 2394 -18414 Osmr oncostatin M receptor Novel U 0.03174002300209957 0.0647800161787329 1.0 2395 -231630 Ficd FIC domain containing Novel U 0.03171700937740133 0.06454164181064069 1.0 2396 -224647 Ilrun inflammation and lipid regulator with UBA-like and NBR1-like domains Novel U 0.03170983881103534 0.06446736931994144 1.0 2397 -232286 Tmf1 TATA element modulatory factor 1 Novel U 0.03170791452369924 0.06444743761497167 1.0 2398 -258919 Or4p18 olfactory receptor family 4 subfamily P member 18 Novel U 0.03168721821855924 0.06423306596668596 1.0 2399 -15980 Ifngr2 interferon gamma receptor 2 Novel U 0.031676313116767954 0.0641201112808177 1.0 2400 -100045792 Ect2l epithelial cell transforming sequence 2 oncogene-like Novel U 0.031662571442791894 0.06397777547350686 1.0 2401 -76895 Bicd2 BICD cargo adaptor 2 Novel U 0.03165017412783068 0.06384936449267838 1.0 2402 -69774 Ms4a6b membrane-spanning 4-domains, subfamily A, member 6B Novel U 0.03164542011051762 0.06380012253762964 1.0 2403 -258972 Or4a2 olfactory receptor family 4 subfamily A member 2 Novel U 0.03164474290524575 0.0637931080676855 1.0 2404 -404473 Or8k35 olfactory receptor family 8 subfamily K member 35 Novel U 0.03161878258148465 0.0635242118875677 1.0 2405 -66066 Gng11 guanine nucleotide binding protein (G protein), gamma 11 Novel N 0.03159157907485126 0.06324243886012614 1.0 2406 -258833 Or8w1 olfactory receptor family 8 subfamily U member 1 Novel U 0.03158697647433652 0.06319476527529679 1.0 2407 -258183 Or8b52 olfactory receptor family 8 subfamily B member 52 Novel U 0.031570476266953314 0.06302385666963667 1.0 2408 -19684 Rdx radixin Novel U 0.031538603384190116 0.06269371839774004 1.0 2409 -21856 Timm44 translocase of inner mitochondrial membrane 44 Novel U 0.03150549211931156 0.062350753004602126 1.0 2410 -75089 Bltp3b bridge-like lipid transfer protein family member 3B Novel U 0.03150195242353443 0.06231408895210388 1.0 2411 -382018 Unc13a unc-13 homolog A Novel U 0.03149250921146846 0.06221627647195346 1.0 2412 -224619 Traf7 TNF receptor-associated factor 7 Novel U 0.03145702489973633 0.06184873113751592 1.0 2413 -16181 Il1rn interleukin 1 receptor antagonist Novel U 0.03144694806734066 0.06174435563881965 1.0 2414 -13447 Doc2b double C2, beta Novel U 0.03143604779952413 0.061631451023102996 1.0 2415 -50933 Uchl3 ubiquitin carboxyl-terminal esterase L3 (ubiquitin thiolesterase) Novel U 0.03141258918874728 0.061388467503836676 1.0 2416 -257884 Or11g2 olfactory receptor family 11 subfamily G member 2 Novel U 0.031393679736881466 0.06119260402302533 1.0 2417 -628664 Gm6902 predicted gene 6902 Novel U 0.03136696127312567 0.060915855053764935 1.0 2418 -110511 Or5w22 olfactory receptor family 5 subfamily W member 22 Novel U 0.03134603053853061 0.060699055192890206 1.0 2419 -56455 Dynll1 dynein light chain LC8-type 1 Novel U 0.031305460870070835 0.060278835900639836 1.0 2420 -258314 Or4k15b olfactory receptor family 4 subfamily K member 15B Novel U 0.03129899740210348 0.060211887511909014 1.0 2421 -192236 Hps1 HPS1, biogenesis of lysosomal organelles complex 3 subunit 1 Novel U 0.03128627049197585 0.06008006259518165 1.0 2422 -14066 F3 coagulation factor III Novel U 0.031281997617215396 0.06003580429887609 1.0 2423 -237898 Usp32 ubiquitin specific peptidase 32 Novel U 0.031235413203616027 0.059553284474193925 1.0 2424 -100038859 Or10h1b olfactory receptor family 10 subfamily H member 1B Novel U 0.031234839597872183 0.05954734308475546 1.0 2425 -235040 Atg4d autophagy related 4D, cysteine peptidase Novel U 0.031223673290660215 0.05943168284172648 1.0 2426 -27399 Ip6k1 inositol hexaphosphate kinase 1 Novel U 0.03121790671356802 0.05937195282577154 1.0 2427 -15114 Hap1 huntingtin-associated protein 1 Novel N 0.031202073708607832 0.05920795508087591 1.0 2428 -68612 Ube2c ubiquitin-conjugating enzyme E2C Novel U 0.031185275166964236 0.05903395633875385 1.0 2429 -258364 Or10d5j olfactory receptor family 10 subfamily D member 5J Novel U 0.0311767460687484 0.05894561221981323 1.0 2430 -225745 Haus1 HAUS augmin-like complex, subunit 1 Novel U 0.031166238792272496 0.05883677819548392 1.0 2431 -69632 Arhgef12 Rho guanine nucleotide exchange factor 12 Novel U 0.031143715468951366 0.058603482352938024 1.0 2432 -18429 Oxt oxytocin Novel N 0.03114005961816924 0.05856561517071637 1.0 2433 -68708 Rabl2 RAB, member RAS oncogene family-like 2 Novel U 0.031129220965048134 0.05845334875798949 1.0 2434 -258573 Or5ap2 olfactory receptor family 5 subfamily AP member 2 Novel U 0.031090465980120875 0.05805192589811444 1.0 2435 -258016 Or2f1 olfactory receptor family 2 subfamily F member 1 Novel U 0.0310813199398693 0.05795719151384851 1.0 2436 -15901 Id1 inhibitor of DNA binding 1, HLH protein Novel U 0.031073808105915292 0.05787938418469113 1.0 2437 -13821 Epb41l1 erythrocyte membrane protein band 4.1 like 1 Novel U 0.031057096822539983 0.057706289260843535 1.0 2438 -258898 Or4c11c olfactory receptor family 4 subfamily C member 11C Novel U 0.031027158299689533 0.05739618702533449 1.0 2439 -258417 Or5p51 olfactory receptor family 5 subfamily P member 51 Novel U 0.03102502176469152 0.05737405686605986 1.0 2440 -258293 Or2a52 olfactory receptor family 2 subfamily A member 52 Novel U 0.03102086730298892 0.05733102508831491 1.0 2441 -329739 Eeig2 EEIG family member 2 Novel U 0.031012986116664108 0.05724939201944256 1.0 2442 -16634 Klra3 killer cell lectin-like receptor, subfamily A, member 3 Novel U 0.03096835258154568 0.05678707932993432 1.0 2443 -19058 Ppp3r1 protein phosphatase 3, regulatory subunit B, alpha isoform (calcineurin B, type I) Novel N 0.03095959726362505 0.05669639203472801 1.0 2444 -240028 Lnpep leucyl/cystinyl aminopeptidase Novel U 0.030931162176545384 0.056401862337509955 1.0 2445 -258557 Or7g21 olfactory receptor family 7 subfamily G member 21 Novel U 0.030905827949783787 0.05613945124953117 1.0 2446 -259014 Or8k3 olfactory receptor family 8 subfamily K member 3 Novel U 0.03089582417311692 0.056035832459672204 1.0 2447 -80297 Sptbn4 spectrin beta, non-erythrocytic 4 Novel N 0.03089166898328017 0.05599279313993766 1.0 2448 -258323 Or8g26 olfactory receptor family 8 subfamily G member 26 Novel U 0.030888709315271184 0.055962136995994435 1.0 2449 -257950 Or5al5 olfactory receptor family 5 subfamily AL member 5 Novel U 0.030872412397206988 0.05579333405441781 1.0 2450 -21944 Tnfsf12 tumor necrosis factor (ligand) superfamily, member 12 Novel U 0.030860269512237554 0.055667558451080255 1.0 2451 -258654 Or5w12 olfactory receptor family 5 subfamily W member 12 Novel U 0.030841680638410505 0.05547501550705599 1.0 2452 -18036 Nfkbib nuclear factor of kappa light polypeptide gene enhancer in B cells inhibitor, beta Novel N 0.030836029672056724 0.05541648298332904 1.0 2453 -16192 Il5ra interleukin 5 receptor, alpha Novel U 0.03082594910038769 0.05531206875336212 1.0 2454 -68118 Atg101 autophagy related 101 Novel U 0.03081958147541715 0.05524611310324166 1.0 2455 -258504 Or1o1 olfactory receptor family 1 subfamily O member 1 Novel U 0.03080239413249383 0.055068087170245375 1.0 2456 -23821 Bace1 beta-site APP cleaving enzyme 1 Novel N 0.030795760892619158 0.054999380289679545 1.0 2457 -72772 Rint1 RAD50 interactor 1 Novel U 0.03078440497499729 0.05488175606825791 1.0 2458 -170780 Cd209e CD209e antigen Novel U 0.030769631991667695 0.05472873799256564 1.0 2459 -67726 Fam114a2 family with sequence similarity 114, member A2 Novel U 0.030724621720491476 0.05426252308335533 1.0 2460 -71795 Pitpnc1 phosphatidylinositol transfer protein, cytoplasmic 1 Novel N 0.03069016526000169 0.05390562419829723 1.0 2461 -11855 Arhgap5 Rho GTPase activating protein 5 Novel U 0.030663099823336166 0.05362528129504405 1.0 2462 -16322 Inha inhibin alpha Novel U 0.030640402306571456 0.05339018116253586 1.0 2463 -26893 Cops6 COP9 signalosome subunit 6 Novel N 0.030633274342895166 0.05331634994909603 1.0 2464 -56838 Ccl28 C-C motif chemokine ligand 28 Novel U 0.03062017115227127 0.0531806275313579 1.0 2465 -13405 Dmd dystrophin, muscular dystrophy Novel U 0.03061320680348678 0.0531084910355888 1.0 2466 -67657 Rabl3 RAB, member RAS oncogene family-like 3 Novel U 0.030609272261350056 0.05306773717747771 1.0 2467 -11796 Birc3 baculoviral IAP repeat-containing 3 Novel U 0.03060911617049989 0.053066120393582904 1.0 2468 -12631 Cfl1 cofilin 1, non-muscle Novel U 0.030581452669494216 0.05277958275955473 1.0 2469 -258503 Or1o3 olfactory receptor family 1 subfamily O member 3 Novel U 0.030573122356703272 0.052693297653510426 1.0 2470 -19186 Psme1 proteasome (prosome, macropain) activator subunit 1 (PA28 alpha) Novel U 0.03050602365986811 0.05199829155744267 1.0 2471 -259045 Or52n5 olfactory receptor family 52 subfamily N member 5 Novel U 0.030487694441850226 0.05180843811975399 1.0 2472 -26888 Clec4a2 C-type lectin domain family 4, member a2 Novel U 0.030465557577534032 0.05157914520687707 1.0 2473 -258224 Or10b1 olfactory receptor family 10 subfamily B member 1 Novel U 0.030451391938310108 0.05143241798146597 1.0 2474 -258830 Or12d13 olfactory receptor family 12 subfamily D member 13 Novel U 0.030447322896061252 0.05139027097561488 1.0 2475 -258954 Or6ae1 olfactory receptor family 6 subfamily AE member 1 Novel U 0.030442635964193315 0.05134172388940137 1.0 2476 -109299 Tmem250 transmembrane protein 250 Novel N 0.0304410757404026 0.05132556314266672 1.0 2477 -214230 Pak6 p21 (RAC1) activated kinase 6 Novel U 0.03039602364223311 0.050858914990835134 1.0 2478 -19106 Eif2ak2 eukaryotic translation initiation factor 2-alpha kinase 2 Novel U 0.03037532593336054 0.05064452880273356 1.0 2479 -259025 Or1e26 olfactory receptor family 1 subfamily E member 26 Novel U 0.03034767874364155 0.050358160120476676 1.0 2480 -170732 Trhr2 thyrotropin releasing hormone receptor 2 Novel U 0.030327455502341855 0.050148688451897676 1.0 2481 -12478 Cd19 CD19 antigen Novel U 0.030311228565331555 0.049980610371776805 1.0 2482 -320191 Hook3 hook microtubule tethering protein 3 Novel U 0.030288018417891843 0.04974020042758876 1.0 2483 -225608 Sh3tc2 SH3 domain and tetratricopeptide repeats 2 Novel U 0.03027406281711735 0.04959564877353224 1.0 2484 -245596 Hdx highly divergent homeobox Novel U 0.030250090283412835 0.049347342057475464 1.0 2485 -237313 Il20ra interleukin 20 receptor, alpha Novel U 0.030202993654607824 0.04885951672453143 1.0 2486 -65098 Zfand6 zinc finger, AN1-type domain 6 Novel U 0.03019629889860401 0.048790172661922177 1.0 2487 -258369 Or10ab5 olfactory receptor family 10 subfamily AB member 5 Novel U 0.030194015557514095 0.04876652188997363 1.0 2488 -436062 Cibar2 CBY1 interacting BAR domain containing 2 Novel U 0.030159588368662105 0.04840992619957759 1.0 2489 -100038725 Cep85l centrosomal protein 85-like Novel N 0.030147844102578238 0.048288279477552834 1.0 2490 -258547 Or6c3b olfactory receptor family 6 subfamily C member 3B Novel U 0.030146821374810433 0.048277686096954285 1.0 2491 -71566 Clmp CXADR-like membrane protein Novel U 0.0301176007850434 0.047975020188722496 1.0 2492 -30940 Usp25 ubiquitin specific peptidase 25 Novel U 0.03004462368062996 0.047219125740201186 1.0 2493 -76303 Osbp oxysterol binding protein Novel U 0.030037594332271544 0.047146315980982074 1.0 2494 -83672 Sytl3 synaptotagmin-like 3 Novel U 0.030009779897839827 0.046858214983488626 1.0 2495 -238252 Gpr135 G protein-coupled receptor 135 Novel U 0.029988086303159224 0.04663351344292545 1.0 2496 -239739 Lamp3 lysosomal-associated membrane protein 3 Novel U 0.029958161592948902 0.0463235542782888 1.0 2497 -78177 Ninl ninein-like Novel U 0.029949800194706014 0.04623694719015512 1.0 2498 -94185 Tnfrsf21 tumor necrosis factor receptor superfamily, member 21 Novel U 0.02992775929404502 0.046008648265664115 1.0 2499 -52635 Esyt2 extended synaptotagmin-like protein 2 Novel U 0.029924746345629114 0.045977440245017515 1.0 2500 -69396 1700018F24Rik RIKEN cDNA 1700018F24 gene Novel U 0.029905755690330316 0.04578073566171673 1.0 2501 -20355 Sema4f sema domain, immunoglobulin domain (Ig), TM domain, and short cytoplasmic domain Novel N 0.02989027552474795 0.04562039261549762 1.0 2502 -15587 Hyal2 hyaluronoglucosaminidase 2 Novel U 0.02987533643629314 0.04546565402837876 1.0 2503 -258520 Or7g30 olfactory receptor family 7 subfamily G member 30 Novel U 0.029861800816455623 0.0453254525230613 1.0 2504 -23960 Oas1g 2'-5' oligoadenylate synthetase 1G Novel U 0.0298223991590771 0.04491733145119429 1.0 2505 -209456 Trp53bp2 transformation related protein 53 binding protein 2 Novel N 0.029793544822954925 0.044618459186175984 1.0 2506 -258605 Or8g53 olfactory receptor family 8 subfamily G member 53 Novel U 0.02977291982337144 0.04440482611850058 1.0 2507 -16822 Lcp2 lymphocyte cytosolic protein 2 Novel U 0.029770613025433584 0.04438093238129217 1.0 2508 -245049 Myrip myosin VIIA and Rab interacting protein Novel U 0.029763521753817638 0.044307481223007206 1.0 2509 -258430 Or8g24 olfactory receptor family 8 subfamily G member 24 Novel U 0.029749216770407455 0.04415931067509553 1.0 2510 -66840 Wdr45b WD repeat domain 45B Novel U 0.029680086558271975 0.043443262210329535 1.0 2511 -100317 AU040320 expressed sequence AU040320 Novel U 0.02967767100715756 0.04341824201129337 1.0 2512 -258788 Or4a73 olfactory receptor family 4 subfamily A member 73 Novel U 0.029666949113451302 0.043307184988747235 1.0 2513 -258590 Or13n4 olfactory receptor family 13 subfamily N member 4 Novel U 0.029663977335967852 0.043276403415265584 1.0 2514 -22241 Ulk1 unc-51 like kinase 1 Novel U 0.029633729597824714 0.042963098337919794 1.0 2515 -258875 Or8c17 olfactory receptor family 8 subfamily C member 17 Novel U 0.02962857078428601 0.04290966351687276 1.0 2516 -239393 Lrp12 low density lipoprotein-related protein 12 Novel U 0.02959646952502096 0.04257715972867743 1.0 2517 -19109 Prl prolactin Novel U 0.029575076437613992 0.04235557083257591 1.0 2518 -258663 Or11g24 olfactory receptor family 11 subfamily G member 24 Novel U 0.02956744963691453 0.04227657268164846 1.0 2519 -14103 Fasl Fas ligand Novel U 0.029487028789714893 0.04144357619004755 1.0 2520 -22202 Uba1y ubiquitin-activating enzyme, Chr Y Novel U 0.029476691487726844 0.04133650275587584 1.0 2521 -258348 Or5w1b olfactory receptor family 5 subfamily W member 1B Novel U 0.02946978778597709 0.04126499444009885 1.0 2522 -258927 Or5p4 olfactory receptor family 5 subfamily P member 4 Novel U 0.029394679111557763 0.04048702125952813 1.0 2523 -245240 9930111J21Rik2 RIKEN cDNA 9930111J21 gene 2 Novel U 0.02939258250662465 0.04046530469455312 1.0 2524 -94226 S1pr5 sphingosine-1-phosphate receptor 5 Novel U 0.029363498626463636 0.0401640548199264 1.0 2525 -57265 Fzd2 frizzled class receptor 2 Novel U 0.02936120345318858 0.04014028149059312 1.0 2526 -22378 Wbp2 WW domain binding protein 2 Novel U 0.029357816295393885 0.04010519742150249 1.0 2527 -257973 Olfr207 olfactory receptor 207 Novel U 0.029319655806847165 0.039709932335594056 1.0 2528 -320487 Heatr5a HEAT repeat containing 5A Novel U 0.029316965816736276 0.03968206950645413 1.0 2529 -237422 Ric8b RIC8 guanine nucleotide exchange factor B Novel U 0.029279630823153283 0.039295354870243285 1.0 2530 -140580 Elmo1 engulfment and cell motility 1 Novel U 0.02925118521228527 0.03900071616797151 1.0 2531 -12363 Casp4 caspase 4, apoptosis-related cysteine peptidase Novel U 0.029229384140960983 0.03877490138786614 1.0 2532 -12492 Scarb2 scavenger receptor class B, member 2 Novel U 0.02922142941355774 0.038692506582920935 1.0 2533 -67830 Rer1 retention in endoplasmic reticulum sorting receptor 1 Novel N 0.02921789240328077 0.03865587034674501 1.0 2534 -271375 Cd200r2 Cd200 receptor 2 Novel U 0.0292084213042832 0.038557769014673816 1.0 2535 -16913 Psmb8 proteasome (prosome, macropain) subunit, beta type 8 (large multifunctional peptidase 7) Novel U 0.02916002335940498 0.03805646469262195 1.0 2536 -20306 Ccl7 C-C motif chemokine ligand 7 Novel U 0.029158819878760622 0.038043999079669974 1.0 2537 -258584 Or5t16 olfactory receptor family 5 subfamily T member 16 Novel U 0.02914488641391617 0.037899676708849125 1.0 2538 -56486 Gabarap gamma-aminobutyric acid receptor associated protein Novel U 0.029130960599552908 0.03775543358146094 1.0 2539 -258201 Or13a24 olfactory receptor family 13 subfamily A member 24 Novel U 0.0291297709311308 0.03774311103505299 1.0 2540 -66905 Plin3 perilipin 3 Novel U 0.029117878269450267 0.03761992723631622 1.0 2541 -230249 Ecpas Ecm29 proteasome adaptor and scaffold Novel U 0.029108846112032002 0.03752637244669402 1.0 2542 -232906 Arhgap35 Rho GTPase activating protein 35 Novel U 0.02905662814871835 0.036985500499264294 1.0 2543 -17925 Myo9b myosin IXb Novel U 0.02905260357571779 0.03694381410442518 1.0 2544 -170799 Rtkn2 rhotekin 2 Novel U 0.02903984384033349 0.036811649184768314 1.0 2545 -60533 Cd274 CD274 antigen Novel U 0.029025522578907635 0.03666331002970542 1.0 2546 -216805 Flcn folliculin Novel U 0.02900522671043723 0.03645308609127968 1.0 2547 -72392 Tmem175 transmembrane protein 175 Novel U 0.029002571116217474 0.03642557953364943 1.0 2548 -259163 Or7a38 olfactory receptor family 7 subfamily A member 38 Novel U 0.028994115038983463 0.036337991763638104 1.0 2549 -17312 Clec10a C-type lectin domain family 10, member A Novel U 0.028989568092983885 0.03629089464644727 1.0 2550 -259099 Or52e7 olfactory receptor family 52 subfamily E member 7 Novel U 0.02898116472109824 0.036203852796701734 1.0 2551 -258555 Or7e170 olfactory receptor family 7 subfamily E member 170 Novel U 0.028968030837837725 0.036067812465642474 1.0 2552 -22627 Ywhae tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, epsilon polypeptide Novel U 0.028920763939141343 0.03557822348276094 1.0 2553 -258641 Or9m1 olfactory receptor family 9 subfamily M member 1 Novel U 0.02889915899751835 0.03535444020765418 1.0 2554 -382348 Taar8b trace amine-associated receptor 8B Novel U 0.02887084984446126 0.0350612149309021 1.0 2555 -14132 Fcgrt Fc fragment of IgG receptor and transporter Novel U 0.02885295726398675 0.034875884170534055 1.0 2556 -17242 Mdk midkine Novel U 0.028841347044861406 0.03475562590249912 1.0 2557 -26396 Map2k2 mitogen-activated protein kinase kinase 2 Novel U 0.028827555795184853 0.0346127765917123 1.0 2558 -76281 Tax1bp3 Tax1 (human T cell leukemia virus type I) binding protein 3 Novel U 0.028823465689551214 0.03457041141201405 1.0 2559 -12317 Calr calreticulin Novel U 0.028806186430284583 0.034391433412555336 1.0 2560 -319146 Ifnz interferon zeta Novel U 0.028777038213633654 0.03408951714268101 1.0 2561 -170760 Acbd3 acyl-Coenzyme A binding domain containing 3 Novel U 0.028776617640331844 0.03408516085824647 1.0 2562 -14291 Fpr-rs4 formyl peptide receptor, related sequence 4 Novel U 0.02874825192210587 0.033791349681334584 1.0 2563 -258961 Or51m1 olfactory receptor family 51 subfamily M member 1 Novel U 0.02873921944185177 0.033697791547789416 1.0 2564 -259036 Or10a5 olfactory receptor family 10 subfamily A member 5 Novel U 0.028735742634519716 0.03366177889173789 1.0 2565 -258238 Or10x1 olfactory receptor family 10 subfamily X member 1 Novel U 0.028721392105141987 0.03351313658019161 1.0 2566 -58240 Hs1bp3 HCLS1 binding protein 3 Novel N 0.028666438152932357 0.03294392534971812 1.0 2567 -70317 Arl16 ADP-ribosylation factor-like 16 Novel U 0.02862508367636944 0.03251557704093461 1.0 2568 -258441 Or4f6 olfactory receptor family 4 subfamily F member 6 Novel U 0.028624543846767724 0.03250998550366599 1.0 2569 -258672 Or9k2 olfactory receptor family 9 subfamily K member 2 Novel U 0.028622571247550525 0.03248955338581994 1.0 2570 -12633 Cflar CASP8 and FADD-like apoptosis regulator Novel U 0.0286105760251535 0.03236530726655325 1.0 2571 -21817 Tgm2 transglutaminase 2, C polypeptide Novel U 0.028602725073840048 0.03228398737093464 1.0 2572 -50997 Mpp2 membrane protein, palmitoylated 2 (MAGUK p55 subfamily member 2) Novel U 0.028601752543152743 0.03227391393004576 1.0 2573 -244958 Mrap2 melanocortin 2 receptor accessory protein 2 Novel U 0.028601188202961578 0.032268068512897354 1.0 2574 -381201 Ap5b1 adaptor-related protein complex 5, beta 1 subunit Novel U 0.028584200856712205 0.032092114138875284 1.0 2575 -215090 Maneal mannosidase, endo-alpha-like Novel U 0.028582612468267165 0.03207566166357701 1.0 2576 -258360 Or4k6 olfactory receptor family 4 subfamily K member 6 Novel U 0.028546391543841435 0.03170048651907405 1.0 2577 -245886 Ankrd27 ankyrin repeat domain 27 Novel U 0.02853005285666657 0.031531250934422224 1.0 2578 -21813 Tgfbr2 transforming growth factor, beta receptor II Novel U 0.028529575926715817 0.031526310909670535 1.0 2579 -259111 Or8d6 olfactory receptor family 8 subfamily D member 6 Novel U 0.02850179612297189 0.031238568615702785 1.0 2580 -16154 Il10ra interleukin 10 receptor, alpha Novel U 0.028467872909675562 0.030887193087545 1.0 2581 -18186 Nrp1 neuropilin 1 Novel U 0.028450444668351848 0.030706671936836537 1.0 2582 -257901 Or8h6 olfactory receptor family 8 subfamily H member 6 Novel U 0.028432989089264848 0.030525867622474643 1.0 2583 -258225 Or8b49 olfactory receptor family 8 subfamily B member 49 Novel U 0.028408699798572162 0.03027427994794723 1.0 2584 -235636 Rtp3 receptor transporter protein 3 Novel U 0.02838418248955886 0.030020330467150556 1.0 2585 -11604 Agrp agouti related neuropeptide Novel U 0.02832612559341724 0.029418979045433308 1.0 2586 -59310 Myl10 myosin, light chain 10, regulatory Novel U 0.02826990337656486 0.028836631171482198 1.0 2587 -67299 Dock7 dedicator of cytokinesis 7 Novel U 0.028269792323709034 0.0288354808896522 1.0 2588 -13610 S1pr3 sphingosine-1-phosphate receptor 3 Novel N 0.028266026277618986 0.028796472308053586 1.0 2589 -404313 Or8c11 olfactory receptor family 8 subfamily C member 11 Novel U 0.02825395515712584 0.028671440038802294 1.0 2590 -320165 Tacc1 transforming, acidic coiled-coil containing protein 1 Novel U 0.02824150275750117 0.028542458492840553 1.0 2591 -258363 Or5t5 olfactory receptor family 5 subfamily T member 5 Novel U 0.028222768336569063 0.028348407976686692 1.0 2592 -14130 Fcgr2b Fc receptor, IgG, low affinity IIb Novel U 0.028216515541478776 0.028283641730691065 1.0 2593 -14453 Gas2 growth arrest specific 2 Novel U 0.028116281409274455 0.027245419884338304 1.0 2594 -242851 Gnat3 G protein subunit alpha transducin 3 Novel U 0.02810322547562472 0.027110186952785043 1.0 2595 -258838 Or52z12 olfactory receptor family 52 subfamily Z member 12 Novel U 0.0280848725171686 0.02692008761241757 1.0 2596 -20218 Khdrbs1 KH domain containing, RNA binding, signal transduction associated 1 Novel U 0.028078988584539062 0.026859142031664684 1.0 2597 -74409 Hyal6 hyaluronoglucosaminidase 6 Novel U 0.02807894920519375 0.026858734141700466 1.0 2598 -15499 Hsf1 heat shock factor 1 Novel U 0.028057776423070214 0.0266394271604826 1.0 2599 -258946 Or1j19 olfactory receptor family 1 subfamily J member 19 Novel U 0.028026587818136064 0.02631637661584484 1.0 2600 -319742 Mpzl3 myelin protein zero-like 3 Novel U 0.0280228729954897 0.026277898604991995 1.0 2601 -14960 H2-Aa histocompatibility 2, class II antigen A, alpha Novel U 0.028022455138680992 0.026273570457903718 1.0 2602 -14586 Gfra2 glial cell line derived neurotrophic factor family receptor alpha 2 Novel U 0.028017813859960612 0.026225496245491843 1.0 2603 -67591 Ubl4b ubiquitin-like 4B Novel U 0.028003067097143727 0.026072749761008256 1.0 2604 -80901 Cxcr6 C-X-C motif chemokine receptor 6 Novel U 0.027995391010598246 0.025993241108907918 1.0 2605 -14231 Fkbp7 FK506 binding protein 7 Novel U 0.027978472635290363 0.025818001133630492 1.0 2606 -258695 Or5b101 olfactory receptor family 5 subfamily B member 101 Novel U 0.02796446028189913 0.0256728616378354 1.0 2607 -14061 F2 coagulation factor II Novel U 0.027963697842247972 0.025664964312992568 1.0 2608 -329165 Abi2 abl interactor 2 Novel U 0.02791710976732852 0.02518240656447734 1.0 2609 -20613 Snai1 snail family zinc finger 1 Novel N 0.027913344172578604 0.02514340265784498 1.0 2610 -12033 Bcap29 B cell receptor associated protein 29 Novel U 0.027902212280730018 0.02502809888801856 1.0 2611 -258982 Or4b1b olfactory receptor family 4 subfamily B member 1B Novel U 0.02787657648843897 0.024762564194199158 1.0 2612 -258670 Or6c33 olfactory receptor family 6 subfamily C member 33 Novel U 0.027861646776624865 0.024607922730016503 1.0 2613 -76740 Efr3a EFR3 homolog A Novel U 0.027829383935190043 0.024273745279018388 1.0 2614 -243780 Dennd11 DENN domain containing 11 Novel U 0.027819748514914543 0.024173941912552146 1.0 2615 -382423 Atxn7l3b ataxin 7-like 3B Novel U 0.027816673496628495 0.02414209097423104 1.0 2616 -11554 Adrb1 adrenergic receptor, beta 1 Known P 0.027778083642897695 0.02374237853786052 1.0 2617 -22288 Utrn utrophin Novel U 0.027771475909647694 0.02367393585407454 1.0 2618 -258331 Or10ak16 olfactory receptor family 10 subfamily AK member 16 Novel U 0.02775221315273828 0.023474412851235867 1.0 2619 -12500 Cd3d CD3 antigen, delta polypeptide Novel U 0.02770811416251073 0.023017636960135094 1.0 2620 -227753 Gsn gelsolin Novel U 0.02770584673421439 0.0229941510123793 1.0 2621 -209462 Hace1 HECT domain and ankyrin repeat containing, E3 ubiquitin protein ligase 1 Novel U 0.02769388977074567 0.022870301177834316 1.0 2622 -58217 Trem1 triggering receptor expressed on myeloid cells 1 Novel U 0.02764120844650382 0.022324629753142467 1.0 2623 -52855 Lair1 leukocyte-associated Ig-like receptor 1 Novel U 0.02763811460421593 0.022292583836429077 1.0 2624 -74556 Themis3 thymocyte selection associated family member 3 Novel U 0.027602228725605037 0.021920879085462173 1.0 2625 -54170 Rragc Ras-related GTP binding C Novel U 0.02757739854273444 0.02166368886753682 1.0 2626 -20983 Syt4 synaptotagmin IV Novel U 0.027573385336687815 0.02162212021123292 1.0 2627 -71712 Dram1 DNA-damage regulated autophagy modulator 1 Novel N 0.02756834055936477 0.02156986657355894 1.0 2628 -224742 Abcf1 ATP-binding cassette, sub-family F member 1 Novel N 0.02756153743994316 0.021499400086230393 1.0 2629 -258720 Or10a3b olfactory receptor family 10 subfamily A member 3B Novel U 0.027540808534966592 0.021284690769909156 1.0 2630 -666173 Vps13b vacuolar protein sorting 13B Novel U 0.027539551383843272 0.02127166923990043 1.0 2631 -258721 Or10a48 olfactory receptor family 10 subfamily A member 48 Novel U 0.02753856087998479 0.02126140963349533 1.0 2632 -258347 Or10ag2 olfactory receptor family 10 subfamily AG member 2 Novel U 0.027538221682228206 0.02125789623428316 1.0 2633 -257900 Or5m12 olfactory receptor family 5 subfamily M member 12 Novel U 0.02753300202004436 0.02120383114497003 1.0 2634 -102442 Dennd4a DENN domain containing 4A Novel U 0.02751455220752202 0.021012728593368567 1.0 2635 -258362 Or5t9 olfactory receptor family 5 subfamily T member 9 Novel U 0.0275065437259726 0.020929777004744302 1.0 2636 -259073 Or52e19b olfactory receptor family 52 subfamily E member 19B Novel U 0.02750260702602535 0.020889000796102737 1.0 2637 -24068 Sra1 steroid receptor RNA activator 1 Novel N 0.0274882479329883 0.020740269782454742 1.0 2638 -16182 Il18r1 interleukin 18 receptor 1 Novel U 0.02747683811425833 0.020622087255127267 1.0 2639 -231807 Trappc14 trafficking protein particle complex 14 Novel N 0.027443390116543603 0.020275633994341832 1.0 2640 -56447 Copz1 coatomer protein complex, subunit zeta 1 Novel N 0.027439944536937478 0.02023994479404892 1.0 2641 -20620 Plk2 polo like kinase 2 Novel U 0.027433607219723544 0.02017430307067507 1.0 2642 -692132 Trappc3l trafficking protein particle complex 3 like Novel U 0.027419306730077156 0.02002617906902106 1.0 2643 -259047 Or56a5 olfactory receptor family 56 subfamily A member 5 Novel U 0.027397649753891036 0.019801856821619973 1.0 2644 -56708 Clcf1 cardiotrophin-like cytokine factor 1 Novel U 0.0273692089906051 0.019507268330443982 1.0 2645 -70771 Gpr173 G-protein coupled receptor 173 Novel N 0.027356155379204047 0.019372059452666228 1.0 2646 -258767 Or5d46 olfactory receptor family 5 subfamily D member 46 Novel U 0.027339722675770492 0.019201850050697494 1.0 2647 -80987 Nckipsd NCK interacting protein with SH3 domain Novel U 0.02730800744157935 0.018873344697527824 1.0 2648 -258778 Or8b54 olfactory receptor family 8 subfamily B member 54 Novel U 0.027299692016945078 0.018787213802520877 1.0 2649 -26361 Avpr1b arginine vasopressin receptor 1B Novel U 0.02729365262116065 0.018724657939520203 1.0 2650 -257947 Or55b3 olfactory receptor family 55 subfamily B member 3 Novel U 0.027290863096421595 0.01869576413397377 1.0 2651 -227157 Mpp4 membrane protein, palmitoylated 4 (MAGUK p55 subfamily member 4) Novel U 0.027287437977991123 0.018660286869865646 1.0 2652 -22209 Ube2a ubiquitin-conjugating enzyme E2A Novel U 0.027283931076075952 0.01862396249511149 1.0 2653 -229898 Gbp5 guanylate binding protein 5 Novel U 0.027257113233224682 0.018346184160447133 1.0 2654 -224630 Bnip1 BCL2/adenovirus E1B interacting protein 1 Novel U 0.027247506279851588 0.0182466756532202 1.0 2655 -50518 a nonagouti Novel N 0.027225841861784287 0.018022276323058483 1.0 2656 -258603 Or8g55 olfactory receptor family 8 subfamily G member 55 Novel U 0.027225482804567398 0.01801855722020931 1.0 2657 -20311 Cxcl5 C-X-C motif chemokine ligand 5 Novel U 0.027204956881145666 0.017805950380160397 1.0 2658 -170779 Cd209d CD209d antigen Novel U 0.02716256176228447 0.01736682313266059 1.0 2659 -21355 Tap2 transporter 2, ATP-binding cassette, sub-family B (MDR/TAP) Novel U 0.02716035009224588 0.01734391472710562 1.0 2660 -100038860 Or10h1 olfactory receptor family 10 subfamily H member 1 Novel U 0.027147135581201017 0.017207039256106574 1.0 2661 -258765 Or5aq1 olfactory receptor family 5 subfamily AQ member 1 Novel U 0.027074158209351506 0.016451142037491207 1.0 2662 -258826 Or8g19 olfactory receptor family 8 subfamily G member 19 Novel U 0.02705202320152913 0.01622186835411624 1.0 2663 -67864 Yipf4 Yip1 domain family, member 4 Novel U 0.02704536112687506 0.01615286280385327 1.0 2664 -71960 Myh14 myosin, heavy polypeptide 14 Novel U 0.027036637022528977 0.016062498817826034 1.0 2665 -404319 Or6s1 olfactory receptor family 6 subfamily S member 1 Novel U 0.02703595589737544 0.01605544374587649 1.0 2666 -353346 Gpr141 G protein-coupled receptor 141 Novel U 0.02703260584403117 0.016020744003463587 1.0 2667 -214137 Arhgap29 Rho GTPase activating protein 29 Novel U 0.027029247779617575 0.015985961282657998 1.0 2668 -258660 Or11j4 olfactory receptor family 11 subfamily J member 4 Novel U 0.027006282551980062 0.01574808820972983 1.0 2669 -258117 Or5an1b olfactory receptor family 5 subfamily AN member 1B Novel U 0.026996854001535526 0.015650427594172227 1.0 2670 -16401 Itga4 integrin alpha 4 Novel U 0.026990784016975918 0.015587554893643798 1.0 2671 -17909 Myo10 myosin X Novel U 0.026985650003155635 0.015534376947264929 1.0 2672 -258287 Or14j1 olfactory receptor family 14 subfamily J member 1 Novel U 0.026967817992538525 0.015349673567488674 1.0 2673 -20352 Sema4b sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4B Novel U 0.026945704242250717 0.015120620068957938 1.0 2674 -11423 Ache acetylcholinesterase Novel U 0.026925163248197832 0.014907857127806965 1.0 2675 -259117 Or51f23b olfactory receptor family 51 subfamily F member 23B Novel U 0.026921781780891493 0.014872832000607648 1.0 2676 -19247 Ptpn11 protein tyrosine phosphatase, non-receptor type 11 Novel U 0.026889206040819832 0.014535413555815162 1.0 2677 -12370 Casp8 caspase 8 Novel U 0.02687795317725339 0.0144188567649119 1.0 2678 -18310 Or2a7 olfactory receptor family 2 subfamily A member 7 Novel U 0.026877126525935012 0.014410294337730853 1.0 2679 -66734 Map1lc3a microtubule-associated protein 1 light chain 3 alpha Novel U 0.02686682701068476 0.014303612297347083 1.0 2680 -258844 Or8k40 olfactory receptor family 8 subfamily K member 40 Novel U 0.026856895472863154 0.014200741755072587 1.0 2681 -12804 Cntfr ciliary neurotrophic factor receptor Novel U 0.026848693451193596 0.014115785484246251 1.0 2682 -67898 Pef1 penta-EF hand domain containing 1 Novel U 0.026817848529024968 0.013796294794395796 1.0 2683 -16420 Itgb6 integrin beta 6 Novel N 0.02679857737428184 0.01359668480707155 1.0 2684 -258680 Or5an1 olfactory receptor family 5 subfamily AN member 1 Novel U 0.02679160861401758 0.013524502617340025 1.0 2685 -668225 Fignl2 fidgetin-like 2 Novel N 0.02676997785927414 0.0133004519707802 1.0 2686 -98845 Eps8l2 EPS8-like 2 Novel U 0.026766732650206848 0.013266838201941711 1.0 2687 -18763 Pkd1 polycystin 1, transient receptor potential channel interacting Novel U 0.026759177650362207 0.01318858376190816 1.0 2688 -27401 Skp2 S-phase kinase-associated protein 2 Novel U 0.026758082505008596 0.013177240282336425 1.0 2689 -229227 Bltp1 bridge-like lipid transfer protein family member 1 Novel U 0.026754403992375227 0.01313913836940457 1.0 2690 -54610 Tbc1d8 TBC1 domain family, member 8 Novel U 0.026720359008074786 0.012786501541189182 1.0 2691 -229603 Otud7b OTU domain containing 7B Novel U 0.02667495668401738 0.012316225761123577 1.0 2692 -22215 Ube3a ubiquitin protein ligase E3A Novel U 0.026643678149243306 0.011992243726160152 1.0 2693 -20430 Cyfip1 cytoplasmic FMR1 interacting protein 1 Novel U 0.026637065049638323 0.011923745457845678 1.0 2694 -69028 Mitd1 MIT, microtubule interacting and transport, domain containing 1 Novel U 0.02663309851882505 0.011882660262074473 1.0 2695 -224648 Bltp3a bridge-like lipid transfer protein family member 3A Novel U 0.026630605566849146 0.01185683834745944 1.0 2696 -257996 Or8b37 olfactory receptor family 8 subfamily B member 37 Novel U 0.026613440137233595 0.011679039391784664 1.0 2697 -170759 Atp13a1 ATPase type 13A1 Novel U 0.02660641536829009 0.01160627706599469 1.0 2698 -21912 Tspan7 tetraspanin 7 Novel N 0.02659436205537552 0.011481429247056885 1.0 2699 -18316 Or7a40 olfactory receptor family 7 subfamily A member 40 Novel U 0.02657005796621864 0.011229688290523825 1.0 2700 -114230 Aipl1 aryl hydrocarbon receptor-interacting protein-like 1 Novel N 0.026551962069657924 0.01104225158881847 1.0 2701 -12476 Cd151 CD151 antigen Novel U 0.026545676553973368 0.01097714642398304 1.0 2702 -279029 Stkld1 serine/threonine kinase-like domain containing 1 Novel U 0.0265259837849747 0.01077316937005974 1.0 2703 -13482 Dpp4 dipeptidylpeptidase 4 Novel U 0.02647146752070318 0.010208491696860998 1.0 2704 -12613 Cel carboxyl ester lipase Novel U 0.026471177437739166 0.010205487027055704 1.0 2705 -259080 Or52z14 olfactory receptor family 52 subfamily Z member 14 Novel U 0.026467714887067496 0.01016962204102376 1.0 2706 -258508 Or1o4 olfactory receptor family 1 subfamily O member 4 Novel U 0.02646619219818818 0.010153850079667516 1.0 2707 -68889 Ubac2 ubiquitin associated domain containing 2 Novel U 0.026465162359037925 0.010143183039603305 1.0 2708 -211978 Zfyve26 zinc finger, FYVE domain containing 26 Novel U 0.02644581569524696 0.009942790932043822 1.0 2709 -21425 Tfeb transcription factor EB Novel U 0.02643279450523595 0.00980791787395832 1.0 2710 -22035 Tnfsf10 tumor necrosis factor (ligand) superfamily, member 10 Novel U 0.026424849407487648 0.009725622812662434 1.0 2711 -65962 Nherf2 NHERF family PDZ scaffold protein 2 Novel N 0.026416951898884895 0.009643820678171725 1.0 2712 -215061 Trim50 tripartite motif-containing 50 Novel U 0.02640747369684172 0.009545645772987634 1.0 2713 -16886 Limk2 LIM domain kinase 2 Novel U 0.02639397250386811 0.009405800859994774 1.0 2714 -16136 Igll1 immunoglobulin lambda-like polypeptide 1 Novel U 0.026378220232906875 0.009242639355206332 1.0 2715 -258816 Or9s18 olfactory receptor family 9 subfamily S member 18 Novel U 0.02635840553168938 0.009037399331368746 1.0 2716 -21335 Tacc3 transforming, acidic coiled-coil containing protein 3 Novel U 0.026350262112439713 0.008953050062481168 1.0 2717 -114874 Ddhd1 DDHD domain containing 1 Novel U 0.02633734376863112 0.008819242281979436 1.0 2718 -619441 Tnfsfm13 tumor necrosis factor (ligand) superfamily, membrane-bound member 13 Novel U 0.026324537508706006 0.00868659546265823 1.0 2719 -67846 Tmem39a transmembrane protein 39a Novel U 0.026323133599601495 0.008672053818304732 1.0 2720 -83556 Tex16 testis expressed gene 16 Novel U 0.026314121982731857 0.008578711787009963 1.0 2721 -100047671 Cd200l2 CD200 molecule like 2 Novel U 0.026301936750503706 0.008452497552158704 1.0 2722 -353344 Opn5 opsin 5 Novel U 0.026289809556041526 0.00832688447057949 1.0 2723 -236749 Tesl1 testin LIM domain protein like 1 Novel U 0.026280165910268077 0.008226995904675885 1.0 2724 -73379 Dcbld2 discoidin, CUB and LCCL domain containing 2 Novel U 0.02624127272193974 0.007824141538515664 1.0 2725 -24110 Usp18 ubiquitin specific peptidase 18 Novel U 0.026234169943690974 0.0077505711949062035 1.0 2726 -29818 Hspb7 heat shock protein family, member 7 (cardiovascular) Novel U 0.02621742555546142 0.007577133372066582 1.0 2727 -109711 Actn1 actinin, alpha 1 Novel U 0.026190201700053237 0.007295149572684676 1.0 2728 -257666 Or6c203 olfactory receptor family 6 subfamily C member 203 Novel U 0.02617668842377613 0.007155179501231413 1.0 2729 -237009 Ube2dnl1 ubiquitin-conjugating enzyme E2D N-terminal like 1 Novel U 0.026176137410469234 0.00714947212351218 1.0 2730 -15465 Hrh1 histamine receptor H1 Novel U 0.026172766542002197 0.0071145567787419435 1.0 2731 -258595 Or2ag16 olfactory receptor family 2 subfamily AG member 16 Novel U 0.02617091461815705 0.0070953746124326296 1.0 2732 -545653 Gm13279 predicted gene 13279 Novel U 0.02616295053063407 0.007012882855674865 1.0 2733 -360013 Myo18a myosin XVIIIA Novel U 0.02614197975571018 0.006795668258390329 1.0 2734 -258868 Or8c16 olfactory receptor family 8 subfamily C member 16 Novel U 0.026136616105966737 0.0067401117506682194 1.0 2735 -258094 Or14j8 olfactory receptor family 14 subfamily J member 8 Novel U 0.02612379141128913 0.006607273984786712 1.0 2736 -276891 Timd4 T cell immunoglobulin and mucin domain containing 4 Novel U 0.02612117683195077 0.006580192257949645 1.0 2737 -258442 Or4f61 olfactory receptor family 4 subfamily F member 61 Novel U 0.026091301915077848 0.006270748851064888 1.0 2738 -14468 Gbp2b guanylate binding protein 2b Novel U 0.026078421361030557 0.006137332495668458 1.0 2739 -69721 Nkiras1 NFKB inhibitor interacting Ras-like protein 1 Novel U 0.026047058670332413 0.0058124787764099965 1.0 2740 -18536 Pcm1 pericentriolar material 1 Novel U 0.026030762023245994 0.005643678641612292 1.0 2741 -381511 Pdp1 pyruvate dehydrogenase phosphatase catalytic subunit 1 Novel N 0.026024900344555145 0.005582963566424781 1.0 2742 -233071 Arhgap33 Rho GTPase activating protein 33 Novel U 0.026000181774472463 0.005326929430087576 1.0 2743 -258690 Or5b3 olfactory receptor family 5 subfamily B member 3 Novel U 0.025996496190477916 0.005288754272229106 1.0 2744 -64898 Lpin2 lipin 2 Novel U 0.025990608522674322 0.00522777000266614 1.0 2745 -257892 Or2ab1 olfactory receptor family 2 subfamily AB member 1 Novel U 0.025972805826888188 0.00504337026494546 1.0 2746 -218232 Ptpdc1 protein tyrosine phosphatase domain containing 1 Novel U 0.02595740810002891 0.004883881116310063 1.0 2747 -258682 Or5an10 olfactory receptor family 5 subfamily AN member 10 Novel U 0.025956709685503017 0.004876646961610003 1.0 2748 -70894 Efcab3 EF-hand calcium binding domain 3 Novel U 0.025921064989615165 0.004507440373359888 1.0 2749 -12385 Ctnna1 catenin alpha 1 Novel N 0.02590350845784105 0.004325590394383485 1.0 2750 -76816 Sdccag8 serologically defined colon cancer antigen 8 Novel U 0.025871844912909517 0.00399762043686565 1.0 2751 -16178 Il1r2 interleukin 1 receptor, type II Novel N 0.025846148433679144 0.0037314571497236997 1.0 2752 -102595 Plekho2 pleckstrin homology domain containing, family O member 2 Novel U 0.025828299236266408 0.00354657574968334 1.0 2753 -259144 Or2r2 olfactory receptor family 2 subfamily R member 2 Novel U 0.02578417837448023 0.0030895733136973016 1.0 2754 -26406 Map3k3 mitogen-activated protein kinase kinase kinase 3 Novel U 0.025776578280803555 0.0030108517932339336 1.0 2755 -68196 Hsbp1 heat shock factor binding protein 1 Novel U 0.025770390747560858 0.002946761527310269 1.0 2756 -629970 Cd300ld2 CD300 molecule like family member D2 Novel U 0.02574187935150348 0.0026514414242096223 1.0 2757 -258474 Or8b41 olfactory receptor family 8 subfamily B member 41 Novel U 0.02571725442121889 0.0023963772058228183 1.0 2758 -217066 Elobl elongin B-like Novel U 0.0257056781835784 0.0022764709168909374 1.0 2759 -215449 Rap1b RAS related protein 1b Novel U 0.025683014115854382 0.0020417172484466367 1.0 2760 -19352 Rabggtb Rab geranylgeranyl transferase, b subunit Novel N 0.025680661601875925 0.002017349985992504 1.0 2761 -106522 Pkdcc protein kinase domain containing, cytoplasmic Novel U 0.025668384994464534 0.0018901892899970496 1.0 2762 -259034 Or2ag1 olfactory receptor family 2 subfamily AG member 1 Novel U 0.025666658517364143 0.0018723064969460776 1.0 2763 -246709 Rgs13 regulator of G-protein signaling 13 Novel N 0.025665835144163825 0.0018637780244041158 1.0 2764 -24111 Uts2 urotensin 2 Novel U 0.02566548337478303 0.0018601344087216438 1.0 2765 -258950 Or1j14 olfactory receptor family 1 subfamily J member 14 Novel U 0.02565959336729525 0.001799125904786793 1.0 2766 -258429 Or5g27 olfactory receptor family 5 subfamily G member 27 Novel U 0.025652394460206635 0.0017245598618142316 1.0 2767 -258220 Or12e13 olfactory receptor family 12 subfamily E member 13 Novel U 0.02564941210984955 0.001693668774855025 1.0 2768 -259165 Or6c70 olfactory receptor family 6 subfamily C member 70 Novel U 0.025642623347976713 0.0016233510025447117 1.0 2769 -11541 Adora2b adenosine A2b receptor Novel U 0.025642544207826825 0.0016225312714737612 1.0 2770 -56422 Hbs1l Hbs1-like (S. cerevisiae) Novel U 0.025641861942312855 0.0016154643877083275 1.0 2771 -22421 Wnt7a wingless-type MMTV integration site family, member 7A Novel U 0.02562558397247991 0.0014468577112881147 1.0 2772 -68350 Mul1 mitochondrial ubiquitin ligase activator of NFKB 1 Novel U 0.025609102288285772 0.0012761409682114197 1.0 2773 -258306 Or10ak13 olfactory receptor family 10 subfamily AK member 13 Novel U 0.02560706902301336 0.0012550804733597904 1.0 2774 -399510 Map4k5 mitogen-activated protein kinase kinase kinase kinase 5 Novel N 0.02560607462138426 0.0012447804939747426 1.0 2775 -259118 Or51a6 olfactory receptor family 51 subfamily A member 6 Novel U 0.025598732965999894 0.0011687358688474015 1.0 2776 -68015 Trap1 TNF receptor-associated protein 1 Novel U 0.025570625031749884 0.0008775948098843616 1.0 2777 -12364 Casp12 caspase 12 Novel U 0.02553162755079564 0.0004736601841334306 1.0 2778 -227377 Farp2 FERM, RhoGEF and pleckstrin domain protein 2 Novel N 0.02551606955210334 0.00031251094512026097 1.0 2779 -26399 Map2k6 mitogen-activated protein kinase kinase 6 Novel U 0.02551513327887497 0.00030281305779912397 1.0 2780 -624681 Btnl6 butyrophilin-like 6 Novel U 0.0254996621751697 0.00014256387420507948 1.0 2781 -15245 Hhip Hedgehog-interacting protein Novel N 0.025496986173903963 0.00011484594106337256 1.0 2782 -625530 Usp17le ubiquitin specific peptidase 17-like E Novel U 0.025493414943141696 7.78552502256905e-05 1.0 2783 -71398 Tasl TLR adaptor interacting with endolysosomal SLC15A4 Novel U 0.02549331434650144 7.68132735328763e-05 1.0 2784 -50930 Tnfsf14 tumor necrosis factor (ligand) superfamily, member 14 Novel U 0.025454200949361974 -0.000328322008254059 1.0 2785 -19206 Ptch1 patched 1 Novel U 0.025427560955904743 -0.0006042581847414529 1.0 2786 -75368 4930558K02Rik RIKEN cDNA 4930558K02 gene Novel U 0.025422359721847296 -0.0006581323961271281 1.0 2787 -13618 Ednrb endothelin receptor type B Novel U 0.025418322909562818 -0.0006999455650666977 1.0 2788 -259020 Or8k23 olfactory receptor family 8 subfamily K member 23 Novel U 0.02540399278922362 -0.0008483764804627683 1.0 2789 -229663 Csde1 cold shock domain containing E1, RNA binding Novel U 0.02538460767276636 -0.0010491668794756985 1.0 2790 -259103 Or51ac3 olfactory receptor family 51 subfamily AC member 3 Novel U 0.02537824391153407 -0.0011150825091223902 1.0 2791 -258297 Or9k7 olfactory receptor family 9 subfamily K member 7 Novel U 0.025361055314633934 -0.001293121430769301 1.0 2792 -258756 Or6p1 olfactory receptor family 6 subfamily P member 1 Novel U 0.025358103370889416 -0.001323697567035091 1.0 2793 -217517 Stxbp6 syntaxin binding protein 6 (amisyn) Novel U 0.0253495591913799 -0.0014121978975199026 1.0 2794 -54419 Cldn6 claudin 6 Novel U 0.025349230369973413 -0.0014156038188388562 1.0 2795 -16411 Itgax integrin alpha X Novel U 0.0253420853328946 -0.0014896118780207525 1.0 2796 -258692 Or5b94 olfactory receptor family 5 subfamily B member 94 Novel U 0.025306865872856618 -0.0018544138873167976 1.0 2797 -258384 Or5bw2 olfactory receptor family 5 subfamily BW member 2 Novel U 0.02528341107727062 -0.002097357888961704 1.0 2798 -13384 Mpp3 membrane protein, palmitoylated 3 (MAGUK p55 subfamily member 3) Novel U 0.02528232104765753 -0.002108648379861281 1.0 2799 -20411 Sorbs1 sorbin and SH3 domain containing 1 Novel N 0.025279050122795504 -0.0021425285120562935 1.0 2800 -13198 Ddit3 DNA-damage inducible transcript 3 Novel U 0.025276572098592055 -0.002168195805294955 1.0 2801 -217410 Trib2 tribbles pseudokinase 2 Novel N 0.025273161024449275 -0.0022035275991328534 1.0 2802 -106759 Ticam1 TIR domain containing adaptor molecule 1 Novel U 0.025265375623397885 -0.002284168527291875 1.0 2803 -80877 Lrba LPS-responsive beige-like anchor Novel U 0.02526263284489823 -0.0023125781368273013 1.0 2804 -78473 Skap1 src family associated phosphoprotein 1 Novel U 0.025239731107851184 -0.0025497935763065653 1.0 2805 -258491 Or5p66 olfactory receptor family 5 subfamily P member 66 Novel U 0.025223738666072408 -0.0027154427625279243 1.0 2806 -101055864 Gm4513 predicted gene 4513 Novel U 0.025168230623188546 -0.003290393245990355 1.0 2807 -56868 Psg23 pregnancy-specific beta-1-glycoprotein 23 Novel U 0.0251544496322108 -0.00343313629751217 1.0 2808 -234734 Aars1 alanyl-tRNA synthetase 1 Novel U 0.025149395184103408 -0.0034854901048525086 1.0 2809 -258481 Or2j3 olfactory receptor family 2 subfamily J member 3 Novel U 0.025144930562145455 -0.0035317345123264455 1.0 2810 -258984 Or4c10b olfactory receptor family 4 subfamily C member 10B Novel U 0.025118098998613874 -0.0038096549653464187 1.0 2811 -16976 Lrpap1 low density lipoprotein receptor-related protein associated protein 1 Novel U 0.025108750037565065 -0.003906491196559446 1.0 2812 -667214 9930111J21Rik1 RIKEN cDNA 9930111J21 gene 1 Novel U 0.025107893575881664 -0.003915362398521445 1.0 2813 -259009 Or1e34 olfactory receptor family 1 subfamily E member 34 Novel U 0.025100634492555084 -0.003990551744988659 1.0 2814 -18412 Sqstm1 sequestosome 1 Novel U 0.025089262534152265 -0.004108342116292058 1.0 2815 -14173 Fgf2 fibroblast growth factor 2 Novel U 0.025045002251782533 -0.004566788666099341 1.0 2816 -13822 Epb41l2 erythrocyte membrane protein band 4.1 like 2 Novel U 0.02504191300767471 -0.004598786955014732 1.0 2817 -270152 Jaml junction adhesion molecule like Novel U 0.025028311567855725 -0.0047396702215365336 1.0 2818 -12328 Caml calcium modulating ligand Novel U 0.02496963972955396 -0.005347391193933422 1.0 2819 -319565 Syne2 spectrin repeat containing, nuclear envelope 2 Novel U 0.024966450181918814 -0.005380428423487536 1.0 2820 -258358 Or51d1 olfactory receptor family 51 subfamily D member 1 Novel U 0.024958510083902135 -0.005462671697727641 1.0 2821 -12524 Cd86 CD86 antigen Novel U 0.0249495212500764 -0.005555777743002616 1.0 2822 -83671 Sytl2 synaptotagmin-like 2 Novel U 0.02491621857210214 -0.005900725786693425 1.0 2823 -234683 Elmo3 engulfment and cell motility 3 Novel U 0.024915142344204246 -0.005911873319880726 1.0 2824 -258997 Or5ac20 olfactory receptor family 5 subfamily AC member 20 Novel U 0.024906468269203546 -0.006001719103593124 1.0 2825 -11542 Adora3 adenosine A3 receptor Novel U 0.024905136430231158 -0.0060155142478872745 1.0 2826 -100861908 Eif1ad19 eukaryotic translation initiation factor 1A domain containing 19 Novel U 0.024897839788395354 -0.0060910926241583485 1.0 2827 -22379 Fmnl3 formin-like 3 Novel U 0.024885375195298928 -0.0062202004696997075 1.0 2828 -216864 Mgl2 macrophage galactose N-acetyl-galactosamine specific lectin 2 Novel U 0.024884674763360627 -0.006227455520691164 1.0 2829 -70675 Vcpip1 valosin containing protein (p97)/p47 complex interacting protein 1 Novel N 0.02487397329430107 -0.006338300985418209 1.0 2830 -216795 Wnt9a wingless-type MMTV integration site family, member 9A Novel N 0.024866181528634724 -0.006419007838049726 1.0 2831 -22362 Vpreb1a V-set pre-B cell surrogate light chain 1A Novel U 0.024863850521994493 -0.006443152328201526 1.0 2832 -22160 Twist1 twist basic helix-loop-helix transcription factor 1 Novel U 0.024855757027233364 -0.006526984480877987 1.0 2833 -258597 Or2d36 olfactory receptor family 2 subfamily D member 36 Novel U 0.024834852358194163 -0.006743514355582057 1.0 2834 -258335 Or1ab2 olfactory receptor family 1 subfamily AB member 2 Novel U 0.02483471440853429 -0.006744943233624163 1.0 2835 -67389 C1qtnf12 C1q and tumor necrosis factor related 12 Novel U 0.024832685749805572 -0.006765956014047667 1.0 2836 -207742 Rnf43 ring finger protein 43 Novel U 0.024806341268910456 -0.007038831281131124 1.0 2837 -100756 Usp30 ubiquitin specific peptidase 30 Novel U 0.02480437525211602 -0.007059195218458577 1.0 2838 -258731 Or5p1 olfactory receptor family 5 subfamily P member 1 Novel U 0.024802503398199335 -0.007078583819793711 1.0 2839 -76797 2410137M14Rik RIKEN cDNA 2410137M14 gene Novel U 0.024773635624268854 -0.00737759527318868 1.0 2840 -404311 Olfr209 olfactory receptor 209 Novel U 0.024758380673172525 -0.007535605555164956 1.0 2841 -14294 Fpr3 formyl peptide receptor 3 Novel U 0.02475706872999708 -0.0075491946194484 1.0 2842 -69076 Triap1 TP53 regulated inhibitor of apoptosis 1 Novel U 0.024711764493386662 -0.008018454412962558 1.0 2843 -208869 Dock3 dedicator of cyto-kinesis 3 Novel U 0.024678092908223457 -0.0083672235851893 1.0 2844 -67112 Fgf22 fibroblast growth factor 22 Novel U 0.024654422825156928 -0.008612397527480345 1.0 2845 -216459 Myl6b myosin, light polypeptide 6B Novel U 0.024652765792490986 -0.008629561017362153 1.0 2846 -258818 Or52ae9 olfactory receptor family 52 subfamily AE member 9 Novel U 0.024650136888159205 -0.008656791122010161 1.0 2847 -258483 Or9s15 olfactory receptor family 9 subfamily S member 15 Novel U 0.024644806454731848 -0.008712003576222174 1.0 2848 -258275 Or4k5 olfactory receptor family 4 subfamily K member 5 Novel U 0.024641590247700684 -0.008745316942923853 1.0 2849 -257971 Or2y12 olfactory receptor family 2 subfamily Y member 12 Novel U 0.024632232043347083 -0.008842248915984056 1.0 2850 -258278 Or8s5 olfactory receptor family 8 subfamily S member 5 Novel U 0.02461258385743057 -0.009045764179807967 1.0 2851 -27373 Csnk1e casein kinase 1, epsilon Novel U 0.024556434271786602 -0.009627359742090003 1.0 2852 -624845 Vmn2r82 vomeronasal 2, receptor 82 Novel U 0.02454457625806805 -0.009750184658375547 1.0 2853 -223918 Spryd3 SPRY domain containing 3 Novel U 0.024526847194032943 -0.009933821720839611 1.0 2854 -18802 Plcd4 phospholipase C, delta 4 Novel U 0.024525497050075805 -0.00994780646756406 1.0 2855 -50490 Nox4 NADPH oxidase 4 Novel N 0.024486116035920623 -0.01035571371760233 1.0 2856 -22408 Wnt1 wingless-type MMTV integration site family, member 1 Novel U 0.02446982560580828 -0.010524449457186945 1.0 2857 -258462 Or2y1f olfactory receptor family 2 subfamily Y member 1F Novel U 0.0244683480817458 -0.010539753602855131 1.0 2858 -12960 Crybb1 crystallin, beta B1 Novel N 0.024451076317272124 -0.01071865397149478 1.0 2859 -217012 Unc45b unc-45 myosin chaperone B Novel U 0.024448477063902997 -0.010745576952446344 1.0 2860 -236509 Or1af1 olfactory receptor family 1 subfamily AF member 1 Novel U 0.02443773092350239 -0.010856885121455492 1.0 2861 -404339 Or5b121 olfactory receptor family 5 subfamily B member 121 Novel U 0.024436517600622175 -0.010869452679962924 1.0 2862 -19261 Sirpa signal-regulatory protein alpha Novel U 0.024434965928972246 -0.010885524843904431 1.0 2863 -258940 Or1j17 olfactory receptor family 1 subfamily J member 17 Novel U 0.024432687829993846 -0.010909121318234226 1.0 2864 -259069 Or2y1d olfactory receptor family 2 subfamily Y member 1D Novel U 0.02440653251497434 -0.011180037211396614 1.0 2865 -229521 Syt11 synaptotagmin XI Novel U 0.02440633316550567 -0.011182102066639823 1.0 2866 -23796 Aplnr apelin receptor Novel U 0.024393836202875815 -0.011311545194744343 1.0 2867 -22329 Vcam1 vascular cell adhesion molecule 1 Novel U 0.024392164706848775 -0.011328858495644958 1.0 2868 -23897 Hax1 HCLS1 associated X-1 Novel U 0.024389912617791554 -0.011352185560066215 1.0 2869 -15962 Ifna1 interferon alpha 1 Novel U 0.024388333104875034 -0.011368546102931837 1.0 2870 -26936 Mprip myosin phosphatase Rho interacting protein Novel U 0.024387258072469005 -0.011379681253253698 1.0 2871 -12400 Cbfb core binding factor beta Novel U 0.02438717610802818 -0.011380530238237326 1.0 2872 -17075 Epcam epithelial cell adhesion molecule Novel U 0.024374661112145878 -0.01151016015417788 1.0 2873 -15466 Hrh2 histamine receptor H2 Novel N 0.024372410248623935 -0.011533474524545022 1.0 2874 -77579 Myh10 myosin, heavy polypeptide 10, non-muscle Novel U 0.024359973163443103 -0.011662297444000925 1.0 2875 -330723 Htra4 HtrA serine peptidase 4 Novel N 0.02434665480869245 -0.011800248524690872 1.0 2876 -269717 Orai2 ORAI calcium release-activated calcium modulator 2 Novel U 0.024345445067378214 -0.011812778985455607 1.0 2877 -545812 Pilrb2 paired immunoglobin-like type 2 receptor beta 2 Novel U 0.024343222280460063 -0.01183580253928364 1.0 2878 -140571 Plxnb3 plexin B3 Novel U 0.024341019641414174 -0.011858617402113098 1.0 2879 -233186 Siglecf sialic acid binding Ig-like lectin F Novel U 0.0243099626358129 -0.012180304845187031 1.0 2880 -54384 Mtmr7 myotubularin related protein 7 Novel U 0.02429768477523143 -0.012307478521476959 1.0 2881 -243270 Hcar1 hydrocarboxylic acid receptor 1 Novel U 0.024297547956747986 -0.012308895682830822 1.0 2882 -258433 Or8d1b olfactory receptor family 8 subfamily D member 1B Novel U 0.024268734866610495 -0.01260734072329563 1.0 2883 -17775 Laptm4a lysosomal-associated protein transmembrane 4A Novel U 0.024262503903001695 -0.012671880839523683 1.0 2884 -17118 Marcks myristoylated alanine rich protein kinase C substrate Novel U 0.02424432065205892 -0.01286022235504677 1.0 2885 -277939 C2cd3 C2 calcium-dependent domain containing 3 Novel U 0.024240951509419587 -0.012895119823750394 1.0 2886 -258530 Or9e1 olfactory receptor family 9 subfamily E member 1 Novel U 0.024239919911034975 -0.012905805085906228 1.0 2887 -258321 Or6c76 olfactory receptor family 6 subfamily C member 76 Novel U 0.024238133967298587 -0.012924303832417999 1.0 2888 -433292 Nms neuromedin S Novel U 0.024229824387328174 -0.013010374188588815 1.0 2889 -258689 Or5b112 olfactory receptor family 5 subfamily B member 112 Novel U 0.024225597182338746 -0.013054159438907424 1.0 2890 -257883 Or1i2 olfactory receptor family 1 subfamily I member 1 Novel U 0.024222669456171915 -0.01308448473029965 1.0 2891 -258648 Or2a14 olfactory receptor family 2 subfamily A member 14 Novel U 0.02418640092553435 -0.013460152978379818 1.0 2892 -545651 Gm13278 predicted gene 13278 Novel U 0.02415278409671885 -0.013808354986157075 1.0 2893 -100043474 Or10h5 olfactory receptor family 10 subfamily H member 5 Novel U 0.024151451533564502 -0.013822157631504135 1.0 2894 -258374 Or14j6 olfactory receptor family 14 subfamily J member 6 Novel U 0.02414486329218564 -0.01389039841912963 1.0 2895 -215854 Taar5 trace amine-associated receptor 5 Novel N 0.02413723154509385 -0.013969447804626207 1.0 2896 -116891 Derl2 Der1-like domain family, member 2 Novel U 0.024109206686007818 -0.014259728373771721 1.0 2897 -258334 Or2v2 olfactory receptor family 2 subfamily V member 2 Novel U 0.02410028683594185 -0.014352119887530747 1.0 2898 -13423 Dnase2a deoxyribonuclease II alpha Novel U 0.024084242595208166 -0.01451830560562423 1.0 2899 -546896 Or10ac1 olfactory receptor family 10 subfamily AC member 1 Novel U 0.024068561941481305 -0.014680725301453337 1.0 2900 -258994 Or5ac22 olfactory receptor family 5 subfamily AC member 22 Novel U 0.024050464125812618 -0.014868181881215954 1.0 2901 -13052 Cxadr coxsackie virus and adenovirus receptor Novel U 0.02404298561542243 -0.014945644045994723 1.0 2902 -17912 Myo1b myosin IB Novel U 0.024042793875173954 -0.014947630085185327 1.0 2903 -108723 Card11 caspase recruitment domain family, member 11 Novel U 0.024040666038692298 -0.014969670145513463 1.0 2904 -257887 Or4a67 olfactory receptor family 4 subfamily A member 67 Novel U 0.02403849848910869 -0.014992121552846127 1.0 2905 -18550 Furin furin, paired basic amino acid cleaving enzyme Novel U 0.024033982072360578 -0.01503890244905386 1.0 2906 -258313 Or4k15c olfactory receptor family 4 subfamily K member 15C Novel U 0.02400725655181297 -0.015315724512331808 1.0 2907 -258377 Or52u1 olfactory receptor family 52 subfamily U member 1 Novel U 0.024004546845595578 -0.015343791560254779 1.0 2908 -14704 Gng3 guanine nucleotide binding protein (G protein), gamma 3 Novel U 0.024002361342986382 -0.015366428924436298 1.0 2909 -258534 Or2w6 olfactory receptor family 2 subfamily W member 6 Novel U 0.023989064385100078 -0.015504158377108695 1.0 2910 -71481 Alpk1 alpha-kinase 1 Novel U 0.02396989600123778 -0.01570270386702768 1.0 2911 -257891 Or10ab4 olfactory receptor family 10 subfamily AB member 4 Novel U 0.023968194298917604 -0.01572033004371963 1.0 2912 -258853 Or10s1 olfactory receptor family 10 subfamily S member 1 Novel U 0.023965727524111212 -0.015745880816073386 1.0 2913 -218952 Fermt2 fermitin family member 2 Novel U 0.023964064670072085 -0.015763104603547285 1.0 2914 -18453 P4hb prolyl 4-hydroxylase, beta polypeptide Novel U 0.023941479677101786 -0.01599703921829199 1.0 2915 -258631 Or5w8 olfactory receptor family 5 subfamily W member 8 Novel U 0.023940155386253107 -0.01601075617936889 1.0 2916 -21353 Tank TRAF family member-associated Nf-kappa B activator Novel U 0.023931261080651505 -0.016102883104405736 1.0 2917 -258402 Or8k32 olfactory receptor family 8 subfamily K member 32 Novel U 0.02389995173151365 -0.01642718431353622 1.0 2918 -70430 Tbce tubulin-specific chaperone E Novel U 0.02389425015715968 -0.01648624103326549 1.0 2919 -22340 Vegfb vascular endothelial growth factor B Novel U 0.02387982084732945 -0.01663569935014901 1.0 2920 -258319 Or5h19 olfactory receptor family 5 subfamily H member 19 Novel U 0.023850345255222977 -0.016941006564229956 1.0 2921 -170761 Nherf4 NHERF family PDZ scaffold protein 4 Novel N 0.023846231871798535 -0.016983612854520127 1.0 2922 -258666 Or6c69c olfactory receptor family 6 subfamily C member 69C Novel U 0.02382831147998038 -0.017169231683871432 1.0 2923 -11993 Aup1 ancient ubiquitous protein 1 Novel U 0.02380388111514781 -0.017422280599702203 1.0 2924 -14696 Gnb4 guanine nucleotide binding protein (G protein), beta 4 Novel U 0.023766273860811746 -0.017811815303843268 1.0 2925 -209512 Taar2 trace amine-associated receptor 2 Novel U 0.023755757354206604 -0.017920744933547797 1.0 2926 -258801 Or8b44 olfactory receptor family 8 subfamily B member 44 Novel U 0.023748186684772687 -0.01799916167867195 1.0 2927 -75668 Rasl10a RAS-like, family 10, member A Novel N 0.023727060512443394 -0.018217985877173264 1.0 2928 -242939 Cpz carboxypeptidase Z Novel N 0.02371346077991116 -0.018358851459675037 1.0 2929 -258809 Or52h9 olfactory receptor family 52 subfamily H member 9 Novel U 0.02369166314950904 -0.018584630598821695 1.0 2930 -258604 Or8g37 olfactory receptor family 8 subfamily G member 37 Novel U 0.0236895036400103 -0.018606998727219593 1.0 2931 -14702 Gng2 guanine nucleotide binding protein (G protein), gamma 2 Novel U 0.023681598490755264 -0.018688880003335455 1.0 2932 -240873 Tnfsf18 tumor necrosis factor (ligand) superfamily, member 18 Novel U 0.0236751684841317 -0.018755481800567256 1.0 2933 -545646 Gm13290 predicted gene 13290 Novel U 0.023646308375133585 -0.01905441386084475 1.0 2934 -259041 Or6b3 olfactory receptor family 6 subfamily B member 3 Novel U 0.02362205912382082 -0.019305586808791186 1.0 2935 -66943 Slc66a2 solute carrier family 66 member 2 Novel U 0.023601420781615062 -0.01951935807890946 1.0 2936 -245670 Rragb Ras-related GTP binding B Novel N 0.02359587528944385 -0.019576798104520645 1.0 2937 -245526 Pgr15l G protein-coupled receptor 15-like Novel U 0.02359022041391193 -0.01963537111938624 1.0 2938 -277935 Or10a3n olfactory receptor family 10 subfamily A member 3N Novel U 0.023576563555492924 -0.019776828409945275 1.0 2939 -110616 Atxn3 ataxin 3 Novel U 0.02355975486234757 -0.019950932300988825 1.0 2940 -243816 Gp6 glycoprotein 6 platelet Novel U 0.023550005274806447 -0.020051918208239355 1.0 2941 -217310 Hid1 HID1 domain containing Novel N 0.023542063683108426 -0.020134176953981696 1.0 2942 -258280 Or1f12 olfactory receptor family 1 subfamily F member 12 Novel U 0.02353956766231284 -0.0201600306553301 1.0 2943 -13998 Fgd6 FYVE, RhoGEF and PH domain containing 6 Novel U 0.023537882989950673 -0.020177480436276814 1.0 2944 -258609 Or14a259 olfactory receptor family 14 subfamily A member 259 Novel U 0.023489057087676277 -0.020683217526969937 1.0 2945 -258456 Or4a66 olfactory receptor family 4 subfamily A member 66 Novel U 0.023485709674308408 -0.020717889924594033 1.0 2946 -69860 Eif1ad eukaryotic translation initiation factor 1A domain containing Novel U 0.023478265495204684 -0.020794996487036196 1.0 2947 -98732 Rab3gap2 RAB3 GTPase activating protein subunit 2 Novel U 0.023477297678116467 -0.02080502110462068 1.0 2948 -546488 Or6c5b olfactory receptor family 6 subfamily C member 5B Novel U 0.023476555153362548 -0.020812712151612588 1.0 2949 -12425 Cckar cholecystokinin A receptor Novel N 0.023469195538471432 -0.020888942800720456 1.0 2950 -258464 Or2y14 olfactory receptor family 2 subfamily Y member 14 Novel U 0.02346410927559173 -0.020941626144426524 1.0 2951 -210108 D130043K22Rik RIKEN cDNA D130043K22 gene Novel U 0.023444532305310347 -0.02114440375904286 1.0 2952 -66949 Trim59 tripartite motif-containing 59 Novel N 0.023437830209893713 -0.021213823843048835 1.0 2953 -230895 Vps13d vacuolar protein sorting 13D Novel U 0.023434343258798167 -0.021249941567869163 1.0 2954 -56332 Amotl2 angiomotin-like 2 Novel U 0.023428096803151128 -0.021314642150120022 1.0 2955 -17886 Myh9 myosin, heavy polypeptide 9, non-muscle Novel U 0.02342583742114169 -0.021338044754700608 1.0 2956 -238130 Dock4 dedicator of cytokinesis 4 Novel U 0.023360430146113744 -0.022015531159291717 1.0 2957 -246104 Rhbdl3 rhomboid like 3 Novel U 0.023339283252781767 -0.02223456998525767 1.0 2958 -194908 Pld6 phospholipase D family member 6 Novel U 0.02333183989040362 -0.022311668088083166 1.0 2959 -56214 Scamp4 secretory carrier membrane protein 4 Novel U 0.02331916594634219 -0.022442944384037964 1.0 2960 -258361 Or5p70 olfactory receptor family 5 subfamily P member 70 Novel U 0.023309038599253665 -0.022547843112262322 1.0 2961 -54357 Epb41l4b erythrocyte membrane protein band 4.1 like 4b Novel U 0.023307026658365027 -0.022568682729847835 1.0 2962 -258470 Or2h1 olfactory receptor family 2 subfamily H member 1 Novel U 0.023303387223921546 -0.022606379872173447 1.0 2963 -71111 Gpr39 G protein-coupled receptor 39 Novel U 0.023291338325269112 -0.022731181968329156 1.0 2964 -64652 Nisch nischarin Novel U 0.02327659282419455 -0.022883915383727214 1.0 2965 -20614 Snap25 synaptosomal-associated protein 25 Novel U 0.02326659193241929 -0.02298750429197376 1.0 2966 -353283 Eras ES cell-expressed Ras Novel U 0.023260985923478264 -0.0230455711482973 1.0 2967 -59005 Trappc2l trafficking protein particle complex 2L Novel N 0.023238262610480113 -0.023280938477343464 1.0 2968 -18442 P2ry2 purinergic receptor P2Y, G-protein coupled 2 Novel N 0.023236599785813744 -0.0232981619605753 1.0 2969 -258621 Or1j15 olfactory receptor family 1 subfamily J member 15 Novel U 0.023229440682286776 -0.023372315719564784 1.0 2970 -56534 Hspb3 heat shock protein 3 Novel U 0.023226605273649826 -0.023401684789017278 1.0 2971 -12273 C5ar1 complement component 5a receptor 1 Novel U 0.02317095063205271 -0.0239781537371324 1.0 2972 -20709 Serpinb9f serine (or cysteine) peptidase inhibitor, clade B, member 9f Novel U 0.02314159575594515 -0.024282210578864937 1.0 2973 -258895 Or4c111 olfactory receptor family 4 subfamily C member 111 Novel U 0.02310707720706867 -0.024639752573391346 1.0 2974 -67457 Frmd8 FERM domain containing 8 Novel U 0.023065671304171042 -0.025068633554459256 1.0 2975 -56551 Txn2 thioredoxin 2 Novel N 0.02306525433208517 -0.025072952537617512 1.0 2976 -259052 Or52n20 olfactory receptor family 52 subfamily N member 20 Novel U 0.023064490514125038 -0.025080864138939386 1.0 2977 -237886 Slfn9 schlafen 9 Novel U 0.023060831252699584 -0.025118766648492497 1.0 2978 -13490 Drd3 dopamine receptor D3 Novel U 0.023058088061196802 -0.02514718053590075 1.0 2979 -57783 Tnip1 TNFAIP3 interacting protein 1 Novel U 0.02305174591332883 -0.02521287229503031 1.0 2980 -16416 Itgb3 integrin beta 3 Novel U 0.023038464236474737 -0.025350443467273408 1.0 2981 -26422 Nbea neurobeachin Novel N 0.023034135058297503 -0.025395284952519134 1.0 2982 -216157 Tmem259 transmembrane protein 259 Novel U 0.023015387189281353 -0.025589474763485425 1.0 2983 -78308 Gpr108 G protein-coupled receptor 108 Novel U 0.023013784331393478 -0.02560607711279692 1.0 2984 -258020 Or6d13 olfactory receptor family 6 subfamily D member 13 Novel U 0.023002945772310997 -0.02571834255147482 1.0 2985 -17847 Usp34 ubiquitin specific peptidase 34 Novel U 0.022994476960346906 -0.025806062227401675 1.0 2986 -12507 Cd5 CD5 antigen Novel U 0.02297650170404344 -0.02599224934128824 1.0 2987 -320832 Sirpb1a signal-regulatory protein beta 1A Novel U 0.022961561141887053 -0.02614700319295959 1.0 2988 -23833 Cd52 CD52 antigen Novel U 0.022907441291641684 -0.026707574822706883 1.0 2989 -12739 Cldn3 claudin 3 Novel U 0.022906977753249586 -0.026712376138134222 1.0 2990 -14694 Rack1 receptor for activated C kinase 1 Novel U 0.022902040941778307 -0.0267635114690648 1.0 2991 -258455 Or4c106 olfactory receptor family 4 subfamily C member 106 Novel U 0.022896952089369045 -0.026816221635032923 1.0 2992 -258951 Or1j11 olfactory receptor family 1 subfamily E member 1 Novel U 0.022872370603317576 -0.027070835859481213 1.0 2993 -258390 Or4f53 olfactory receptor family 4 subfamily F member 53 Novel U 0.022863650761190964 -0.027161155697579296 1.0 2994 -258336 Or7d10 olfactory receptor family 7 subfamily D member 10 Novel U 0.022863551098651437 -0.027162187998887484 1.0 2995 -258222 Or14c46 olfactory receptor family 14 subfamily C member 46 Novel U 0.022848785023103186 -0.027315134524007682 1.0 2996 -259032 Or5w1 olfactory receptor family 5 subfamily W member 1 Novel U 0.022843476940443013 -0.027370115469707933 1.0 2997 -620736 Gm6176 predicted gene 6176 Novel U 0.022828879747858324 -0.02752131271064329 1.0 2998 -100038882 Isg15 ISG15 ubiquitin-like modifier Novel U 0.022819475049178323 -0.027618726270407918 1.0 2999 -21936 Tnfrsf18 tumor necrosis factor receptor superfamily, member 18 Novel U 0.022807309134348995 -0.027744740416277194 1.0 3000 -27056 Irf5 interferon regulatory factor 5 Novel U 0.022806032737097432 -0.027757961297049584 1.0 3001 -101565 Ccp110 centriolar coiled coil protein 110 Novel U 0.022801993004709687 -0.0277998047123228 1.0 3002 -26754 Cops5 COP9 signalosome subunit 5 Novel U 0.022796183614794494 -0.027859978182090957 1.0 3003 -228602 Dnaaf9 dynein axonemal assembly factor 9 Novel U 0.02277364070069903 -0.02809347694523338 1.0 3004 -72310 Nkg7 natural killer cell group 7 sequence Novel N 0.022761135699070782 -0.028223003341019 1.0 3005 -233670 Or6b9 olfactory receptor family 6 subfamily B member 9 Novel U 0.022755295749894662 -0.028283493342607265 1.0 3006 -93671 Cd163 CD163 antigen Novel U 0.022751595720783554 -0.02832181812250822 1.0 3007 -16571 Kif4 kinesin family member 4 Novel U 0.02274416829231898 -0.028398751182380715 1.0 3008 -14786 Grb7 growth factor receptor bound protein 7 Novel U 0.0227426084981017 -0.028414907479607832 1.0 3009 -545030 Wdfy4 WD repeat and FYVE domain containing 4 Novel U 0.022741721614348297 -0.028424093792370844 1.0 3010 -100042493 Ccl21b C-C motif chemokine ligand 21B (leucine) Novel U 0.022733216232533854 -0.028512192257605484 1.0 3011 -71704 Arhgef3 Rho guanine nucleotide exchange factor 3 Novel U 0.022722605650505174 -0.028622096317454455 1.0 3012 -20399 Sh2b1 SH2B adaptor protein 1 Novel U 0.022701049310812856 -0.028845376175360992 1.0 3013 -12505 Cd44 CD44 antigen Novel U 0.02269864936802025 -0.02887023470391292 1.0 3014 -192187 Stab1 stabilin 1 Novel U 0.0226727867858667 -0.029138118479672827 1.0 3015 -18386 Oprd1 opioid receptor, delta 1 Novel U 0.022653279378065574 -0.02934017556840539 1.0 3016 -235435 Lctl lactase-like Novel U 0.022644197937011903 -0.029434240836303013 1.0 3017 -258344 Or1e30 olfactory receptor family 1 subfamily E member 30 Novel U 0.02261867443937245 -0.029698612385812683 1.0 3018 -18810 Plec plectin Novel U 0.02261497219422775 -0.029736960119316744 1.0 3019 -258962 Or13a20 olfactory receptor family 13 subfamily A member 20 Novel U 0.022599313828803334 -0.029899148953641794 1.0 3020 -15257 Hipk1 homeodomain interacting protein kinase 1 Novel U 0.022584119420301262 -0.030056532137416984 1.0 3021 -258863 Or6c38 olfactory receptor family 6 subfamily C member 38 Novel U 0.022582280623694294 -0.03007557833222478 1.0 3022 -544748 Or6c8b olfactory receptor family 6 subfamily C member 8B Novel U 0.022581477357603436 -0.03008389853598794 1.0 3023 -52666 Arhgef25 Rho guanine nucleotide exchange factor 25 Novel U 0.022568212710864052 -0.0302212933108627 1.0 3024 -18776 Prl3b1 prolactin family 3, subfamily b, member 1 Novel U 0.02255524381474015 -0.030355624710584592 1.0 3025 -77125 Il33 interleukin 33 Novel U 0.022534078567883264 -0.0305748536417582 1.0 3026 -194401 Mical3 microtubule associated monooxygenase, calponin and LIM domain containing 3 Novel U 0.02253134837739978 -0.030603132865035937 1.0 3027 -259054 Or52e2 olfactory receptor family 52 subfamily E member 2 Novel U 0.022526610070755924 -0.030652212089489563 1.0 3028 -209200 Dtx3l deltex 3-like, E3 ubiquitin ligase Novel U 0.022502441342938023 -0.030902550977723257 1.0 3029 -68969 Eif1b eukaryotic translation initiation factor 1B Novel U 0.022489045261678647 -0.03104130714703543 1.0 3030 -242687 Wasf2 WASP family, member 2 Novel U 0.022475992339942415 -0.031176508881287632 1.0 3031 -333654 Ppp1r13l protein phosphatase 1, regulatory subunit 13 like Novel U 0.02246559620090409 -0.031284191747691946 1.0 3032 -258486 Or4k2 olfactory receptor family 4 subfamily K member 2 Novel U 0.02246075562020053 -0.031334330323493906 1.0 3033 -319924 Apba1 amyloid beta precursor protein binding family A member 1 Novel N 0.022417534392548295 -0.03178201437869442 1.0 3034 -404222 Or6k6 olfactory receptor family 6 subfamily K member 6 Novel U 0.022409652822661493 -0.03186365142048926 1.0 3035 -258931 Or6c214 olfactory receptor family 6 subfamily C member 214 Novel U 0.022409440713162487 -0.03186584844370725 1.0 3036 -70083 Metrn meteorin, glial cell differentiation regulator Novel U 0.02239839479377532 -0.0319802617136045 1.0 3037 -12931 Crlf1 cytokine receptor-like factor 1 Novel U 0.022385809533736773 -0.032110619423365606 1.0 3038 -74018 Als2 alsin Rho guanine nucleotide exchange factor Novel U 0.0223674356979305 -0.03230093501063967 1.0 3039 -258684 Or5b106 olfactory receptor family 5 subfamily B member 106 Novel U 0.022361744861753234 -0.032359880504687626 1.0 3040 -258770 Or5p52 olfactory receptor family 5 subfamily P member 52 Novel U 0.02235917789724917 -0.0323864690386363 1.0 3041 -240888 Gpr161 G protein-coupled receptor 161 Novel U 0.022357621408692355 -0.03240259109594099 1.0 3042 -20351 Sema4a sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4A Novel U 0.022356238590606606 -0.03241691428021549 1.0 3043 -433449 Or4a27 olfactory receptor family 4 subfamily A member 27 Novel U 0.022330416618835874 -0.03268437741496514 1.0 3044 -404315 Or2z8 olfactory receptor family 2 subfamily Z member 8 Novel U 0.022319706005665157 -0.03279531759409497 1.0 3045 -231147 Sh3tc1 SH3 domain and tetratricopeptide repeats 1 Novel U 0.0223120967662317 -0.03287413384600646 1.0 3046 -242202 Pde5a phosphodiesterase 5A, cGMP-specific Novel U 0.022310636342406973 -0.032889260867974134 1.0 3047 -226652 Arhgap30 Rho GTPase activating protein 30 Novel U 0.022298825506038563 -0.03301159712281779 1.0 3048 -383243 Or14j7 olfactory receptor family 14 subfamily J member 7 Novel U 0.022288861328070505 -0.03311480575065623 1.0 3049 -258559 Or7g18 olfactory receptor family 7 subfamily G member 18 Novel U 0.022270558428100374 -0.03330438658687142 1.0 3050 -12168 Bmpr2 bone morphogenetic protein receptor type 2 Novel U 0.022251415340355407 -0.03350267006043867 1.0 3051 -94217 Lrp1b low density lipoprotein-related protein 1B Novel U 0.022246809824706067 -0.03355037384013637 1.0 3052 -258626 Or9i2 olfactory receptor family 9 subfamily I member 2 Novel U 0.022243510946615454 -0.03358454351095416 1.0 3053 -50780 Rgs3 regulator of G-protein signaling 3 Novel U 0.022242175233995968 -0.03359837877835761 1.0 3054 -258594 Or2d4 olfactory receptor family 2 subfamily D member 4 Novel U 0.022235207213594312 -0.03367055330461663 1.0 3055 -73137 Prrc1 proline-rich coiled-coil 1 Novel U 0.02222684470488857 -0.03375717189488804 1.0 3056 -84652 Hycc1 hyccin PI4KA lipid kinase complex subunit 1 Novel U 0.02221379873668377 -0.03389230160469026 1.0 3057 -257632 Nod2 nucleotide-binding oligomerization domain containing 2 Novel U 0.02221304502266332 -0.03390010854973707 1.0 3058 -258041 Or5p61 olfactory receptor family 5 subfamily P member 61 Novel U 0.022205104210202258 -0.0339823592241686 1.0 3059 -224024 Scarf2 scavenger receptor class F, member 2 Novel U 0.022199294359055516 -0.034042537471357985 1.0 3060 -233090 Scgb2b24 secretoglobin, family 2B, member 24 Novel U 0.02217772203739017 -0.03426598287001575 1.0 3061 -240880 Scyl3 SCY1-like 3 (S. cerevisiae) Novel U 0.022177312670638775 -0.03427022307736951 1.0 3062 -259005 Or3a10 olfactory receptor family 3 subfamily A member 10 Novel U 0.022161917125684622 -0.03442968962590334 1.0 3063 -18415 Hspa4l heat shock protein 4 like Novel U 0.02213271692210444 -0.03473214437468187 1.0 3064 -241275 Noxa1 NADPH oxidase activator 1 Novel N 0.022121732562825572 -0.034845920007001034 1.0 3065 -17755 Map1b microtubule-associated protein 1B Novel U 0.022114690382355178 -0.034918862680814164 1.0 3066 -258939 Or10h28 olfactory receptor family 10 subfamily H member 28 Novel U 0.0221118494398233 -0.03494828907016842 1.0 3067 -14428 Galr2 galanin receptor 2 Novel N 0.022095483243499404 -0.0351178095936816 1.0 3068 -66786 Or2ag2b olfactory receptor family 2 subfamily AG member 2B Novel U 0.022095441262485582 -0.03511824443164271 1.0 3069 -258203 Or4p7 olfactory receptor family 4 subfamily P member 7 Novel U 0.022060588347958873 -0.03547924977458252 1.0 3070 -216150 Cdc34 cell division cycle 34 Novel U 0.022058432372311212 -0.0355015812994671 1.0 3071 -258214 Or10ak8 olfactory receptor family 10 subfamily AK member 8 Novel U 0.022028877071307146 -0.035807714135689034 1.0 3072 -213993 Ccdc186 coiled-coil domain containing 186 Novel U 0.02201283787957437 -0.035973847556397126 1.0 3073 -100043566 Gm10668 predicted gene 10668 Novel U 0.022011147406560454 -0.035991357420303946 1.0 3074 -72399 Brap BRCA1 associated protein Novel N 0.022003113203017816 -0.03607457543648838 1.0 3075 -100534273 Fer1l5 fer-1 like family member 5 Novel U 0.021966625690973587 -0.03645251188678015 1.0 3076 -258708 Or13p4 olfactory receptor family 13 subfamily P member 4 Novel U 0.021965099101942775 -0.03646832424577739 1.0 3077 -15171 Hcrt hypocretin Novel U 0.021963445563169356 -0.0364854515460353 1.0 3078 -627626 Ptchd4 patched domain containing 4 Novel U 0.02195042719460615 -0.03662029537965719 1.0 3079 -258792 Or9i14 olfactory receptor family 9 subfamily I member 14 Novel U 0.021949857597125196 -0.03662619525164039 1.0 3080 -75909 Vmp1 vacuole membrane protein 1 Novel U 0.021947892570580815 -0.03664654893199032 1.0 3081 -84544 Cd96 CD96 antigen Novel U 0.021947559319546946 -0.0366500007352441 1.0 3082 -80976 Syt13 synaptotagmin XIII Novel U 0.021941635494038783 -0.036711359525122375 1.0 3083 -258046 Or8g32 olfactory receptor family 8 subfamily G member 32 Novel U 0.02192860212156843 -0.03684635876872125 1.0 3084 -258633 Or5w20 olfactory receptor family 5 subfamily W member 20 Novel U 0.021923070461669095 -0.03690365552011505 1.0 3085 -258560 Or7g25 olfactory receptor family 7 subfamily G member 25 Novel U 0.02191416958343399 -0.036995850524273656 1.0 3086 -327958 Pitpnm3 PITPNM family member 3 Novel U 0.0219113540480958 -0.03702501374675089 1.0 3087 -53310 Dlg3 discs large MAGUK scaffold protein 3 Novel N 0.021897789635720186 -0.03716551348423146 1.0 3088 -22342 Lin7b lin-7 homolog B, crumbs cell polarity complex component Novel U 0.021896120570332297 -0.037182801608651644 1.0 3089 -12015 Bad BCL2-associated agonist of cell death Novel U 0.02188898378520372 -0.03725672419440428 1.0 3090 -16551 Kif11 kinesin family member 11 Novel U 0.021879074726344906 -0.037359361900321096 1.0 3091 -258509 Or1x6 olfactory receptor family 1 subfamily X member 6 Novel U 0.02186688272181405 -0.03748564628246115 1.0 3092 -77056 Tmco4 transmembrane and coiled-coil domains 4 Novel U 0.021865638177224613 -0.03749853723440633 1.0 3093 -105782 Scrib scribbled planar cell polarity Novel U 0.02185500512286513 -0.03760867406191901 1.0 3094 -74760 Rab3il1 RAB3A interacting protein (rabin3)-like 1 Novel U 0.021844730344167566 -0.03771509988190325 1.0 3095 -100040563 Dynlt1c dynein light chain Tctex-type 1C Novel U 0.02184347915841667 -0.037728059622780495 1.0 3096 -68050 Akirin1 akirin 1 Novel U 0.02184069447952586 -0.03775690323519012 1.0 3097 -258436 Or2r11 olfactory receptor family 2 subfamily R member 11 Novel U 0.021837724529711736 -0.03778766587773299 1.0 3098 -232089 Elmod3 ELMO/CED-12 domain containing 3 Novel N 0.021813408408213608 -0.03803953146486116 1.0 3099 -15977 Ifnb1 interferon beta 1, fibroblast Novel U 0.02177665037421505 -0.03842026997266295 1.0 3100 -19260 Ptpn22 protein tyrosine phosphatase, non-receptor type 22 (lymphoid) Novel U 0.021771064300995537 -0.03847813033543839 1.0 3101 -12795 Plk3 polo like kinase 3 Novel U 0.021759901533144957 -0.03859375391787848 1.0 3102 -26427 Creb3l1 cAMP responsive element binding protein 3-like 1 Novel U 0.021722364128539527 -0.038982565120805814 1.0 3103 -257909 Or4q3 olfactory receptor family 4 subfamily Q member 3 Novel U 0.021721484455009488 -0.03899167675031225 1.0 3104 -14020 Evi5 ecotropic viral integration site 5 Novel U 0.02170522175826467 -0.03916012522858772 1.0 3105 -19116 Prlr prolactin receptor Novel U 0.021681507982670274 -0.039405751736646094 1.0 3106 -108101 Fermt3 fermitin family member 3 Novel U 0.021666723338874545 -0.03955889059106327 1.0 3107 -110253 Triobp TRIO and F-actin binding protein Novel U 0.02164511553760052 -0.03978270348634143 1.0 3108 -75577 Dynap dynactin associated protein Novel U 0.021644215179477795 -0.03979202936617892 1.0 3109 -56508 Rapgef4 Rap guanine nucleotide exchange factor (GEF) 4 Novel U 0.021633021299543656 -0.039907975206557755 1.0 3110 -19268 Ptprf protein tyrosine phosphatase receptor type F Novel U 0.021630096003628807 -0.03993827532547984 1.0 3111 -258274 Or9s27 olfactory receptor family 9 subfamily S member 27 Novel U 0.02162813520047855 -0.03995858526005227 1.0 3112 -13350 Dgat1 diacylglycerol O-acyltransferase 1 Novel U 0.0216103243818472 -0.04014306913393667 1.0 3113 -14938 Gzma granzyme A Novel U 0.021606360230854365 -0.04018412967960601 1.0 3114 -258802 Or8c8 olfactory receptor family 8 subfamily C member 8 Novel U 0.02160417768391715 -0.04020673642903431 1.0 3115 -26359 Anxa10 annexin A10 Novel U 0.021600885862091412 -0.04024083301129249 1.0 3116 -12314 Calm2 calmodulin 2 Novel U 0.02159827935480648 -0.0402678311280655 1.0 3117 -74048 Vsir V-set immunoregulatory receptor Novel U 0.021581475542954708 -0.0404418844588306 1.0 3118 -258411 Or5ae1 olfactory receptor family 5 subfamily AE member 1 Novel U 0.021575750310238853 -0.04050118623109454 1.0 3119 -14685 Gnat1 G protein subunit alpha transducin 1 Novel U 0.02155471442821392 -0.04071907520559145 1.0 3120 -98417 Cnih4 cornichon family AMPA receptor auxiliary protein 4 Novel N 0.02153745104518157 -0.04089788875953737 1.0 3121 -19400 Rapsn receptor-associated protein of the synapse Novel U 0.021536555489274217 -0.04090716489818591 1.0 3122 -192190 Pkhd1l1 polycystic kidney and hepatic disease 1-like 1 Novel U 0.021526043638633263 -0.041016046301566446 1.0 3123 -71254 Naif1 nuclear apoptosis inducing factor 1 Novel N 0.021521424128187847 -0.041063895038901836 1.0 3124 -22631 Ywhaz tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, zeta polypeptide Novel U 0.02151573369623965 -0.04112283634595837 1.0 3125 -29809 Rabgap1l RAB GTPase activating protein 1-like Novel N 0.021487970643584313 -0.041410405132701174 1.0 3126 -54199 Ccrl2 C-C motif chemokine receptor-like 2 Novel U 0.021477792903581622 -0.041515825829073864 1.0 3127 -19216 Ptger1 prostaglandin E receptor 1 (subtype EP1) Novel N 0.021475440568870147 -0.04154019123468648 1.0 3128 -320795 Pkn1 protein kinase N1 Novel N 0.02147076483695466 -0.04158862231216067 1.0 3129 -258587 Or8h10 olfactory receptor family 8 subfamily H member 10 Novel U 0.02146803241080562 -0.04161692469238878 1.0 3130 -105242404 LOC105242404 sp110 nuclear body protein-like Novel U 0.021450390677012144 -0.04179965719108084 1.0 3131 -223433 Otulinl OTU deubiquitinase with linear linkage specificity like Novel N 0.021438691963277405 -0.04192083208337077 1.0 3132 -12380 Cast calpastatin Novel U 0.02142029124640288 -0.04211142610386614 1.0 3133 -20264 Scn10a sodium channel, voltage-gated, type X, alpha Novel U 0.02140351081250337 -0.04228523728657019 1.0 3134 -102640920 Pvrig poliovirus receptor related immunoglobulin domain containing Novel U 0.021384823906803116 -0.04247879564151449 1.0 3135 -621823 Psme2b protease (prosome, macropain) activator subunit 2B Novel U 0.02137199926055235 -0.04261163290579239 1.0 3136 -102502 Pls1 plastin 1 (I-isoform) Novel N 0.021367414687979067 -0.042659119757796744 1.0 3137 -378460 Pram1 PML-RAR alpha-regulated adaptor molecule 1 Novel U 0.021351832518960157 -0.042820519352258404 1.0 3138 -66532 Rep15 RAB15 effector protein Novel U 0.021347021207668602 -0.042870354756453 1.0 3139 -15562 Htr4 5 hydroxytryptamine (serotonin) receptor 4 Novel N 0.021308156386311724 -0.04327291529845535 1.0 3140 -208943 Myo5c myosin VC Novel U 0.02129930524424726 -0.043364595136993464 1.0 3141 -22222 Ubr1 ubiquitin protein ligase E3 component n-recognin 1 Novel U 0.021297961682944858 -0.04337851170079653 1.0 3142 -15558 Htr2a 5-hydroxytryptamine (serotonin) receptor 2A Novel U 0.021297625294239064 -0.04338199600395296 1.0 3143 -666586 Uba52rt ubiquitin A-52 residue ribosomal protein fusion product 1, retrotransposed Novel U 0.021284841049503796 -0.04351441479066147 1.0 3144 -259027 Or1e21 olfactory receptor family 1 subfamily E member 21 Novel U 0.021284076540630883 -0.043522333548435224 1.0 3145 -226499 Odr4 odr4 GPCR localization factor homolog Novel U 0.021272007071616455 -0.043647348711724245 1.0 3146 -14695 Gnb3 guanine nucleotide binding protein (G protein), beta 3 Novel U 0.021266854170999855 -0.04370072228691851 1.0 3147 -227326 Gpr55 G protein-coupled receptor 55 Novel U 0.02126634831076095 -0.04370596197064383 1.0 3148 -258147 Or52e8b olfactory receptor family 52 subfamily E member 8B Novel U 0.021263305297382892 -0.04373748140318007 1.0 3149 -667281 H60b histocompatibility 60b Novel U 0.021241532415657693 -0.04396300419634475 1.0 3150 -258780 Or8b51 olfactory receptor family 8 subfamily B member 51 Novel U 0.02122901513677936 -0.04409265775948316 1.0 3151 -54633 Pqbp1 polyglutamine binding protein 1 Novel U 0.021225336527643683 -0.044130760671982724 1.0 3152 -259162 Or6k14 olfactory receptor family 6 subfamily K member 14 Novel U 0.021216439344250347 -0.04422291740509175 1.0 3153 -319236 Trim12c tripartite motif-containing 12C Novel U 0.021214711157023468 -0.04424081791157667 1.0 3154 -257943 Or8s16 olfactory receptor family 8 subfamily S member 16 Novel U 0.021213783426001984 -0.04425042731899969 1.0 3155 -258524 Or5d40 olfactory receptor family 5 subfamily D member 40 Novel U 0.021205865292343536 -0.044332443087139274 1.0 3156 -268783 Mtmr12 myotubularin related protein 12 Novel U 0.02115997975320849 -0.04480772399309422 1.0 3157 -269682 Golga3 golgin A3 Novel U 0.021158865222423818 -0.04481926826632364 1.0 3158 -22064 Trpc2 transient receptor potential cation channel, subfamily C, member 2 Novel U 0.02115302972151031 -0.044879712192953995 1.0 3159 -16560 Kif1a kinesin family member 1A Novel U 0.02114878715625577 -0.04492365654439369 1.0 3160 -231805 Pilra paired immunoglobin-like type 2 receptor alpha Novel U 0.021142407846160345 -0.044989733228653586 1.0 3161 -99326 Garnl3 GTPase activating RANGAP domain-like 3 Novel U 0.021141994673310443 -0.044994012859450545 1.0 3162 -54123 Irf7 interferon regulatory factor 7 Novel U 0.02114061529312179 -0.045008300434099945 1.0 3163 -29846 Or13c7b olfactory receptor family 13 subfamily C member 7B Novel U 0.021136348555152402 -0.0450524951657254 1.0 3164 -74772 Atp13a2 ATPase type 13A2 Novel U 0.021130515858227557 -0.04511291004873336 1.0 3165 -12046 Bcl2a1c B cell leukemia/lymphoma 2 related protein A1c Novel U 0.02110334490799415 -0.045394345858054096 1.0 3166 -11977 Atp7a ATPase, Cu++ transporting, alpha polypeptide Novel U 0.02109972960154836 -0.0454317930833728 1.0 3167 -258282 Or6c211 olfactory receptor family 6 subfamily C member 211 Novel U 0.02109391662730291 -0.04549200367951597 1.0 3168 -16391 Irf9 interferon regulatory factor 9 Novel N 0.02109179876807234 -0.045513940395805315 1.0 3169 -21937 Tnfrsf1a tumor necrosis factor receptor superfamily, member 1a Novel U 0.02109024488862423 -0.0455300354280478 1.0 3170 -15258 Hipk2 homeodomain interacting protein kinase 2 Novel U 0.021076319734505744 -0.0456742717166423 1.0 3171 -77669 Arhgef38 Rho guanine nucleotide exchange factor 38 Novel U 0.02107352567854136 -0.045703212456471735 1.0 3172 -229487 Gatb glutamyl-tRNA amidotransferase subunit B Novel N 0.02106560211425431 -0.04578528447488387 1.0 3173 -258913 Or1ad1 olfactory receptor family 1 subfamily AD member 1 Novel U 0.02106522669025831 -0.04578917310429302 1.0 3174 -231238 Sel1l3 sel-1 suppressor of lin-12-like 3 (C. elegans) Novel U 0.021059559905885792 -0.04584786947053808 1.0 3175 -66235 Eif1ax eukaryotic translation initiation factor 1A, X-linked Novel U 0.021055406348101283 -0.04589089188552917 1.0 3176 -72018 Fundc1 FUN14 domain containing 1 Novel U 0.021042624521388376 -0.046023285626441535 1.0 3177 -74244 Atg7 autophagy related 7 Novel U 0.021038461599740935 -0.046066405032017047 1.0 3178 -258832 Or12d17 olfactory receptor family 12 subfamily D member 17 Novel U 0.02103578341023051 -0.04609414563092528 1.0 3179 -217337 Srp68 signal recognition particle 68 Novel U 0.021028894666323843 -0.0461654990138553 1.0 3180 -19108 Prkx protein kinase, X-linked Novel U 0.02102739011534056 -0.046181083103480694 1.0 3181 -233079 Ffar2 free fatty acid receptor 2 Novel U 0.02100830088198138 -0.046378808755090324 1.0 3182 -14177 Fgf6 fibroblast growth factor 6 Novel U 0.020983181293585212 -0.04663899662593586 1.0 3183 -216783 Or2ak7 olfactory receptor family 2 subfamily AK member 7 Novel U 0.020977091671827562 -0.046702072727916065 1.0 3184 -319991 Kif6 kinesin family member 6 Novel U 0.02096647338759709 -0.04681205656691801 1.0 3185 -74191 P2ry13 purinergic receptor P2Y, G-protein coupled 13 Novel U 0.020965008578045206 -0.0468272290161034 1.0 3186 -258150 Or6c66b olfactory receptor family 6 subfamily C member 66B Novel U 0.02095602838545815 -0.0469202455557122 1.0 3187 -100040048 Ccl27b C-C motif chemokine ligand 27b Novel U 0.020954394733068885 -0.046937166873456775 1.0 3188 -66587 Fastk Fas-activated serine/threonine kinase Novel N 0.020953524671166155 -0.046946178946043506 1.0 3189 -75212 Rnf121 ring finger protein 121 Novel U 0.02094908223944125 -0.04699219350781301 1.0 3190 -258887 Or4k44 olfactory receptor family 4 subfamily K member 44 Novel U 0.020945353886788146 -0.04703081166203085 1.0 3191 -14686 Gnat2 G protein subunit alpha transducin 2 Novel N 0.02093760819126878 -0.04711104132159444 1.0 3192 -217304 Cd300lb CD300 molecule like family member B Novel U 0.02092389936808672 -0.047253036861460915 1.0 3193 -22157 Tulp1 TUB like protein 1 Novel U 0.020922918680415365 -0.04726319479212244 1.0 3194 -241639 Fermt1 fermitin family member 1 Novel U 0.02092016908142955 -0.047291675048029315 1.0 3195 -12028 Bax BCL2-associated X protein Novel U 0.02091746574389267 -0.04731967612936889 1.0 3196 -404346 Or2w3 olfactory receptor family 2 subfamily W member 3 Novel U 0.020876855130541563 -0.04774031952745764 1.0 3197 -232237 Fgd5 FYVE, RhoGEF and PH domain containing 5 Novel U 0.020876652038553826 -0.04774242314759034 1.0 3198 -258550 Or7e175 olfactory receptor family 7 subfamily E member 175 Novel U 0.02087572090785203 -0.04775206776879026 1.0 3199 -69543 Capns2 calpain, small subunit 2 Novel U 0.020870048357336662 -0.04781082386055339 1.0 3200 -109620 Dsp desmoplakin Novel U 0.020862469528327286 -0.04788932512229192 1.0 3201 -258397 Or4f7 olfactory receptor family 4 subfamily F member 7 Novel U 0.020835054530060137 -0.04817328877312354 1.0 3202 -26369 Cetn1 centrin 1 Novel U 0.020817488113888505 -0.04835524113436448 1.0 3203 -258628 Or5b124 olfactory receptor family 5 subfamily B member 124 Novel U 0.020811560025603748 -0.048416644077942585 1.0 3204 -258918 Or6z5 olfactory receptor family 6 subfamily Z member 5 Novel U 0.020804070942590572 -0.048494215753602715 1.0 3205 -229541 Dennd4b DENN domain containing 4B Novel U 0.02079191334296379 -0.04862014377087735 1.0 3206 -14707 Gng5 G protein subunit gamma 5 Novel U 0.02078947955532457 -0.04864535286323794 1.0 3207 -227358 Erfe erythroferrone Novel U 0.0207521759201846 -0.049031742689726814 1.0 3208 -76088 Dock8 dedicator of cytokinesis 8 Novel U 0.020744045382488446 -0.04911595853190654 1.0 3209 -258368 Or5b98 olfactory receptor family 5 subfamily B member 98 Novel U 0.020734907447110946 -0.049210608966153244 1.0 3210 -107607 Nod1 nucleotide-binding oligomerization domain containing 1 Novel U 0.020733501542224583 -0.049225171282749565 1.0 3211 -76499 Clasp2 CLIP associating protein 2 Novel U 0.02072922651072508 -0.04926945191848732 1.0 3212 -20209 Saa2 serum amyloid A 2 Novel U 0.020728281837585693 -0.04927923681181064 1.0 3213 -14687 Gnaz guanine nucleotide binding protein, alpha z subunit Novel N 0.020718746787769828 -0.04937800054435548 1.0 3214 -104443 Npffr2 neuropeptide FF receptor 2 Novel N 0.020714162121422047 -0.049425488367673014 1.0 3215 -14459 Gast gastrin Novel U 0.02070709176967092 -0.04949872283868588 1.0 3216 -18155 Pnoc prepronociceptin Novel N 0.020703139200313594 -0.04953966342215536 1.0 3217 -258791 Or6c216 olfactory receptor family 6 subfamily C member 216 Novel U 0.020698679864453257 -0.049585853076403966 1.0 3218 -57436 Gabarapl1 GABA type A receptor associated protein like 1 Novel U 0.020678807142243568 -0.04979169407977137 1.0 3219 -22249 Unc13b unc-13 homolog B Novel U 0.020677359231167296 -0.049806691495101876 1.0 3220 -217692 Sipa1l1 signal-induced proliferation-associated 1 like 1 Novel U 0.020671675624293562 -0.049865562108261506 1.0 3221 -100039795 Ildr2 immunoglobulin-like domain containing receptor 2 Novel U 0.020662720490350114 -0.049958319091263574 1.0 3222 -259004 Or5k8 olfactory receptor family 5 subfamily K member 8 Novel U 0.020639011774710524 -0.0502038931884764 1.0 3223 -214897 Csnk1g1 casein kinase 1, gamma 1 Novel U 0.020635412988264934 -0.05024116930017609 1.0 3224 -258896 Or4c11 olfactory receptor family 4 subfamily C member 11 Novel U 0.020621950432478536 -0.05038061401045392 1.0 3225 -17916 Myo1f myosin IF Novel U 0.020604148755779823 -0.05056500319250058 1.0 3226 -60504 Il21r interleukin 21 receptor Novel U 0.02060094140493695 -0.05059822482709509 1.0 3227 -80904 Dtx3 deltex 3, E3 ubiquitin ligase Novel U 0.020593741290907547 -0.05067280337152064 1.0 3228 -258551 Or7e173 olfactory receptor family 7 subfamily E member 173 Novel U 0.020593512752194183 -0.05067517056800086 1.0 3229 -235661 Dync1li1 dynein cytoplasmic 1 light intermediate chain 1 Novel U 0.020590551862209396 -0.05070583936912927 1.0 3230 -18541 Pcnt pericentrin (kendrin) Novel U 0.020582069847424098 -0.05079369579944418 1.0 3231 -67803 Limd2 LIM domain containing 2 Novel U 0.020571487403607234 -0.05090330840462015 1.0 3232 -19298 Pex19 peroxisomal biogenesis factor 19 Novel U 0.020546680950950254 -0.051160252825772946 1.0 3233 -83397 Akap12 A kinase anchor protein 12 Novel N 0.020546113074668342 -0.051166134869633055 1.0 3234 -545654 Gm13285 predicted gene 13285 Novel U 0.0205405763486089 -0.051223484096146694 1.0 3235 -15516 Hsp90ab1 heat shock protein 90 alpha (cytosolic), class B member 1 Novel U 0.020537669447853516 -0.05125359367861175 1.0 3236 -329679 Fnip2 folliculin interacting protein 2 Novel U 0.020533791410489773 -0.05129376226214179 1.0 3237 -210145 Irgc immunity related GTPase cinema Novel U 0.020530583896259925 -0.051326985589093196 1.0 3238 -258113 Or11h23 olfactory receptor family 11 subfamily G member 23 Novel U 0.02052769494096537 -0.051356909293064905 1.0 3239 -56351 Ptges3 prostaglandin E synthase 3 Novel U 0.020516781538479436 -0.051469949957255436 1.0 3240 -195046 Nlrp1a NLR family, pyrin domain containing 1A Novel U 0.020507934922012985 -0.05156158291979808 1.0 3241 -76892 Rnft1 ring finger protein, transmembrane 1 Novel U 0.020498287628121004 -0.051661509272793525 1.0 3242 -22428 Dctn6 dynactin 6 Novel U 0.02049382910526804 -0.05170769050593849 1.0 3243 -28106 Mydgf myeloid derived growth factor Novel U 0.020488365177969665 -0.05176428568527811 1.0 3244 -57269 Or4e5 olfactory receptor family 4 subfamily E member 5 Novel U 0.020478478974703847 -0.05186668665371403 1.0 3245 -238988 Erc2 ELKS/RAB6-interacting/CAST family member 2 Novel U 0.02047469033079795 -0.051905929302746366 1.0 3246 -233578 Or52m2 olfactory receptor family 52 subfamily M member 2 Novel U 0.020455686014288484 -0.05210277538841814 1.0 3247 -258991 Or1s2 olfactory receptor family 1 subfamily S member 1 Novel U 0.020455655145073654 -0.05210309513073058 1.0 3248 -13830 Stom stomatin Novel U 0.020447411587410393 -0.05218848163001428 1.0 3249 -22630 Ywhaq tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein theta Novel N 0.02043765935682911 -0.05228949491378792 1.0 3250 -329421 Myo3b myosin IIIB Novel U 0.020436025935820216 -0.0523064138349022 1.0 3251 -259066 Or2at4 olfactory receptor family 2 subfamily AT member 4 Novel U 0.020428430241448702 -0.05238508978750734 1.0 3252 -83429 Ctns cystinosis, nephropathic Novel U 0.02041662888228407 -0.0525073278777858 1.0 3253 -93835 Amn amnionless Novel U 0.0204107988629092 -0.05256771502681916 1.0 3254 -14812 Grin2b glutamate receptor, ionotropic, NMDA2B (epsilon 2) Novel N 0.020404984137845045 -0.052627943757884876 1.0 3255 -111174 Taar1 trace amine-associated receptor 1 Novel U 0.02039886203957645 -0.05269135625049785 1.0 3256 -18190 Nrxn2 neurexin II Novel N 0.02037666520989979 -0.05292127028260722 1.0 3257 -257912 Or8g30 olfactory receptor family 8 subfamily G member 30 Novel U 0.020371300314088844 -0.05297683969705556 1.0 3258 -20111 Rps6ka1 ribosomal protein S6 kinase polypeptide 1 Novel U 0.020364390420902774 -0.05304841214352637 1.0 3259 -65086 Lpar3 lysophosphatidic acid receptor 3 Novel N 0.02035384328962793 -0.053157658982552945 1.0 3260 -17005 Ltk leukocyte tyrosine kinase Novel U 0.02034406561340074 -0.05325893583149036 1.0 3261 -67775 Rtp4 receptor transporter protein 4 Novel U 0.02033812394159648 -0.05332047947271695 1.0 3262 -22339 Vegfa vascular endothelial growth factor A Novel U 0.020335819880206708 -0.05334434486485029 1.0 3263 -383766 Tldc2 TBC/LysM associated domain containing 2 Novel U 0.020332735192945272 -0.05337629595410061 1.0 3264 -100042690 Or4x18 olfactory receptor family 4 subfamily X member 18 Novel U 0.020332274814346588 -0.05338106454049165 1.0 3265 -56699 Cdc42ep4 CDC42 effector protein 4 Novel U 0.020318934429408946 -0.053519243809134205 1.0 3266 -108687 Edem2 ER degradation enhancer, mannosidase alpha-like 2 Novel U 0.020284714933999994 -0.05387368821767482 1.0 3267 -76500 Ip6k2 inositol hexaphosphate kinase 2 Novel U 0.020279812095670403 -0.05392447165592059 1.0 3268 -219019 Or11g27 olfactory receptor family 11 subfamily G member 27 Novel U 0.02027241553542688 -0.0540010849837742 1.0 3269 -258549 Or6c66 olfactory receptor family 6 subfamily C member 66 Novel U 0.02026252216204942 -0.05410356021999078 1.0 3270 -258800 Or8b1c olfactory receptor family 8 subfamily B member 1C Novel U 0.020250257392253845 -0.05423059830235077 1.0 3271 -16643 Klrd1 killer cell lectin-like receptor, subfamily D, member 1 Novel U 0.020246395086445265 -0.05427060393894957 1.0 3272 -11820 App amyloid beta precursor protein Novel U 0.02022573530519149 -0.05448459727402247 1.0 3273 -331491 Fnd3c2 fibronectin type III domain containing 3C2 Novel U 0.020218850718299174 -0.05455590759873446 1.0 3274 -258111 Or10ag59 olfactory receptor family 10 subfamily AG member 59 Novel U 0.020215206461927614 -0.0545936546864326 1.0 3275 -66335 Atp6v1c1 ATPase, H+ transporting, lysosomal V1 subunit C1 Novel N 0.02021446969857308 -0.05460128605703907 1.0 3276 -259064 Or2b4 olfactory receptor family 2 subfamily B member 4 Novel U 0.02020729800556084 -0.05467557021750316 1.0 3277 -11303 Abca1 ATP-binding cassette, sub-family A member 1 Novel U 0.020206785260987858 -0.05468088120893452 1.0 3278 -258983 Or4c35 olfactory receptor family 4 subfamily C member 35 Novel U 0.02019990799019958 -0.054752115753681385 1.0 3279 -545652 Gm13275 predicted gene 13275 Novel U 0.020193965193265783 -0.054813671048962745 1.0 3280 -80910 Gpr84 G protein-coupled receptor 84 Novel U 0.020172340027261707 -0.05503766380754393 1.0 3281 -99412 Golga2 golgin A2 Novel U 0.020169284003921026 -0.05506931799684535 1.0 3282 -379043 Raet1e retinoic acid early transcript 1E Novel U 0.020154081866696243 -0.0552267812344763 1.0 3283 -100494 Zfand2a zinc finger, AN1-type domain 2A Novel U 0.020152472455274018 -0.05524345146508117 1.0 3284 -217344 Rhbdf2 rhomboid 5 homolog 2 Novel U 0.02014721921968958 -0.055297864306573956 1.0 3285 -11863 Arnt aryl hydrocarbon receptor nuclear translocator Novel U 0.02014274144563057 -0.0553442449430783 1.0 3286 -258493 Or2ak6 olfactory receptor family 2 subfamily AK member 6 Novel U 0.020136819550021022 -0.055405583743130156 1.0 3287 -210293 Dock10 dedicator of cytokinesis 10 Novel N 0.020129934734312276 -0.055476896437915216 1.0 3288 -258669 Or9r7 olfactory receptor family 9 subfamily R member 7 Novel U 0.020129780572813064 -0.05547849323765627 1.0 3289 -50527 Ero1a endoplasmic reticulum oxidoreductase 1 alpha Novel U 0.02009672347943095 -0.0558208975242148 1.0 3290 -241556 Tspan18 tetraspanin 18 Novel U 0.020084830207184805 -0.055944087647170106 1.0 3291 -67046 Tbc1d7 TBC1 domain family, member 7 Novel U 0.02007726553624488 -0.056022442260090705 1.0 3292 -320213 Senp5 SUMO/sentrin specific peptidase 5 Novel N 0.02007067367716959 -0.056090720519696866 1.0 3293 -234214 Sorbs2 sorbin and SH3 domain containing 2 Novel U 0.020065080165251898 -0.0561486579322635 1.0 3294 -18378 Omp olfactory marker protein Novel N 0.020056574833172008 -0.056236755882349276 1.0 3295 -258744 Or8b12b olfactory receptor family 8 subfamily B member 12B Novel U 0.020046226613541874 -0.05634394240109881 1.0 3296 -11601 Angpt2 angiopoietin 2 Novel U 0.020041630386960333 -0.056391549964937594 1.0 3297 -258799 Or8b1 olfactory receptor family 8 subfamily B member 1 Novel U 0.020034978274544202 -0.056460452326667465 1.0 3298 -108837 Ibtk inhibitor of Bruton agammaglobulinemia tyrosine kinase Novel U 0.020031874510832985 -0.05649260100915751 1.0 3299 -258750 Or52p2 olfactory receptor family 52 subfamily P member 2 Novel U 0.02002766895847491 -0.05653616198223238 1.0 3300 -263803 Pkn3 protein kinase N3 Novel N 0.020026253850667954 -0.05655081962237766 1.0 3301 -258949 Or1j10 olfactory receptor family 1 subfamily J member 10 Novel U 0.01998677044625033 -0.05695978742738841 1.0 3302 -70620 Ube2v2 ubiquitin-conjugating enzyme E2 variant 2 Novel U 0.01997556972821081 -0.05707580409663798 1.0 3303 -16163 Il13 interleukin 13 Novel U 0.01996831360263489 -0.05715096280682107 1.0 3304 -80985 Trim44 tripartite motif-containing 44 Novel U 0.019963789365426466 -0.05719782470709965 1.0 3305 -224170 Dzip3 DAZ interacting protein 3, zinc finger Novel U 0.01996185447586543 -0.057217866229566774 1.0 3306 -140493 Kcnn3 potassium intermediate/small conductance calcium-activated channel, subfamily N, member 3 Novel U 0.019957476349631995 -0.05726321471716956 1.0 3307 -55980 Impa1 inositol (myo)-1(or 4)-monophosphatase 1 Novel U 0.0199355920221027 -0.05748989186230949 1.0 3308 -18329 Or2z2 olfactory receptor family 2 subfamily Z member 2 Novel U 0.019930865414641456 -0.05753884990701421 1.0 3309 -13019 Ctf1 cardiotrophin 1 Novel U 0.019928089455903072 -0.05756760319637166 1.0 3310 -16647 Kpna2 karyopherin subunit alpha 2 Novel U 0.019926495420430883 -0.057584114163391494 1.0 3311 -246729 Oas1h 2'-5' oligoadenylate synthetase 1H Novel U 0.019925197656743925 -0.05759755635699932 1.0 3312 -258892 Or14j5 olfactory receptor family 14 subfamily J member 5 Novel U 0.019916424366553286 -0.05768842980838758 1.0 3313 -545985 Or51aa2 olfactory receptor family 51 subfamily AA member 2 Novel U 0.019915110704237186 -0.05770203667947343 1.0 3314 -22384 Eif4h eukaryotic translation initiation factor 4H Novel U 0.019911354212020657 -0.057740946302364204 1.0 3315 -215243 Traf3ip3 TRAF3 interacting protein 3 Novel U 0.0199056290623709 -0.057800247214232214 1.0 3316 -11610 Agtrap angiotensin II, type I receptor-associated protein Novel U 0.01989247988183709 -0.0579364459939454 1.0 3317 -435207 Taar7f trace amine-associated receptor 7F Novel U 0.0198911299468468 -0.057950428576198115 1.0 3318 -404331 Or4a79 olfactory receptor family 4 subfamily A member 79 Novel U 0.019870836605310006 -0.05816062634072855 1.0 3319 -170786 Cd209a CD209a antigen Novel U 0.019870829605049687 -0.058160698849194815 1.0 3320 -210274 Shank2 SH3 and multiple ankyrin repeat domains 2 Novel N 0.019870503254678668 -0.05816407917560964 1.0 3321 -434218 Trim34b tripartite motif-containing 34B Novel U 0.01986709830406981 -0.058199347542084466 1.0 3322 -14456 Gas6 growth arrest specific 6 Novel U 0.019866051144578182 -0.05821019398567524 1.0 3323 -56491 Vapb vesicle-associated membrane protein, associated protein B and C Novel U 0.019863530639528466 -0.05823630129412306 1.0 3324 -68606 Ppm1f protein phosphatase 1F (PP2C domain containing) Novel U 0.019860656658773734 -0.05826606989230354 1.0 3325 -258505 Or1o2 olfactory receptor family 1 subfamily O member 2 Novel U 0.019855778912004733 -0.05831659343298957 1.0 3326 -53602 Hpcal1 hippocalcin-like 1 Novel U 0.01984090114768741 -0.05847069682670826 1.0 3327 -14296 Frat1 frequently rearranged in advanced T cell lymphomas Novel U 0.01983858056469173 -0.05849473334909245 1.0 3328 -71722 Cic capicua transcriptional repressor Novel N 0.019836535341111523 -0.05851591770770312 1.0 3329 -12343 Capza2 capping actin protein of muscle Z-line subunit alpha 2 Novel N 0.01983564882399763 -0.05852510022282613 1.0 3330 -19226 Pth parathyroid hormone Novel U 0.01983229201469618 -0.058559869943221404 1.0 3331 -21356 Tapbp TAP binding protein Novel U 0.01983047357361221 -0.05857870529619112 1.0 3332 -257662 Or4k42 olfactory receptor family 4 subfamily K member 42 Novel U 0.019823623704261186 -0.05864965601775171 1.0 3333 -231699 Oas1e 2'-5' oligoadenylate synthetase 1E Novel U 0.019816242051795597 -0.058726114931331536 1.0 3334 -67574 Alg13 asparagine-linked glycosylation 13 Novel N 0.019816045282674666 -0.0587281530594177 1.0 3335 -58203 Zbp1 Z-DNA binding protein 1 Novel U 0.019815842519445893 -0.05873025327427585 1.0 3336 -70495 Atp6ap2 ATPase, H+ transporting, lysosomal accessory protein 2 Novel U 0.01981234989037174 -0.05876642981141191 1.0 3337 -12955 Cryab crystallin, alpha B Novel U 0.019809715435348253 -0.058793717409942166 1.0 3338 -212937 Tifab TRAF-interacting protein with forkhead-associated domain, family member B Novel U 0.01979469378221766 -0.05894931119925859 1.0 3339 -257910 Or52e8 olfactory receptor family 52 subfamily E member 8 Novel U 0.019792699610095603 -0.05896996676854399 1.0 3340 -67603 Dusp6 dual specificity phosphatase 6 Novel U 0.01976794098083248 -0.05922641583655533 1.0 3341 -17201 Mc3r melanocortin 3 receptor Novel N 0.01976660816662482 -0.05924022108230436 1.0 3342 -258543 Or6c69b olfactory receptor family 6 subfamily C member 69B Novel U 0.01976305299882328 -0.059277045393522854 1.0 3343 -71966 Nkiras2 NFKB inhibitor interacting Ras-like protein 2 Novel U 0.01976247992791155 -0.05928298124318788 1.0 3344 -68303 Fam114a1 family with sequence similarity 114, member A1 Novel U 0.019749799704450156 -0.05941432258096109 1.0 3345 -259078 Or52p1 olfactory receptor family 52 subfamily P member 1 Novel U 0.019744083658065504 -0.05947352920150842 1.0 3346 -258317 Or12e10 olfactory receptor family 12 subfamily E member 10 Novel U 0.019743493267456686 -0.05947964444802651 1.0 3347 -259107 Or51h1 olfactory receptor family 51 subfamily H member 1 Novel U 0.019743284665002084 -0.059481805145393835 1.0 3348 -258232 Or6c5 olfactory receptor family 6 subfamily C member 5 Novel U 0.019741180313186397 -0.05950360195232388 1.0 3349 -268288 Samd3 sterile alpha motif domain containing 3 Novel U 0.019739420285005405 -0.05952183226636479 1.0 3350 -56221 Ccl24 C-C motif chemokine ligand 24 Novel U 0.01968544796339544 -0.060080875799356295 1.0 3351 -258797 Or8b1b olfactory receptor family 8 subfamily B member 1B Novel U 0.019673934833879837 -0.06020012841640518 1.0 3352 -64378 Gpr88 G-protein coupled receptor 88 Novel N 0.019673577619889148 -0.06020382842717796 1.0 3353 -258379 Or4g17 olfactory receptor family 4 subfamily G member 17 Novel U 0.019664129888971316 -0.06030168771344745 1.0 3354 -78787 Usp54 ubiquitin specific peptidase 54 Novel U 0.01966010630161547 -0.060343363899010995 1.0 3355 -241694 Ralgapa2 Ral GTPase activating protein, alpha subunit 2 (catalytic) Novel U 0.019651472526631394 -0.06043279225647598 1.0 3356 -258897 Or4c11b olfactory receptor family 4 subfamily C member 11B Novel U 0.019648124012542217 -0.06046747605533521 1.0 3357 -224814 Abcc10 ATP-binding cassette, sub-family C member 10 Novel N 0.01964613739917837 -0.060488053331251554 1.0 3358 -19211 Pten phosphatase and tensin homolog Novel U 0.019601921619321817 -0.06094603892549024 1.0 3359 -20361 Sema7a sema domain, immunoglobulin domain (Ig), and GPI membrane anchor, (semaphorin) 7A Novel U 0.01959587346140915 -0.061008685546327164 1.0 3360 -114229 Kiss1r KISS1 receptor Novel N 0.019591935646883284 -0.06104947329973741 1.0 3361 -667772 Myh15 myosin, heavy chain 15 Novel U 0.019581551627886107 -0.061157030627153934 1.0 3362 -100041146 Pira13 paired-Ig-like receptor A13 Novel U 0.01957889070396123 -0.061184592389694634 1.0 3363 -258616 Or1q1 olfactory receptor family 1 subfamily Q member 1 Novel U 0.01957666987451392 -0.06120759566810404 1.0 3364 -20606 Sstr2 somatostatin receptor 2 Novel U 0.019573324374396416 -0.06124224824834376 1.0 3365 -258857 Or13f5 olfactory receptor family 13 subfamily F member 5 Novel U 0.019569819653952353 -0.06127855002749189 1.0 3366 -258687 Or5b102 olfactory receptor family 5 subfamily B member 102 Novel U 0.019557179939505884 -0.06140947177422019 1.0 3367 -26420 Mapk9 mitogen-activated protein kinase 9 Novel U 0.019555428428653442 -0.06142761386605196 1.0 3368 -408193 Otud6a OTU domain containing 6A Novel N 0.019551453956033565 -0.0614687813227949 1.0 3369 -387513 Tas2r138 taste receptor, type 2, member 138 Novel N 0.019524892140671147 -0.061743907733146176 1.0 3370 -18359 Or1p1 olfactory receptor family 1 subfamily P member 1 Novel U 0.019522620603905944 -0.06176743623628741 1.0 3371 -258612 Or6aa1 olfactory receptor family 6 subfamily AA member 1 Novel U 0.019507455345349364 -0.06192451748588544 1.0 3372 -20259 Scin scinderin Novel U 0.019505823358034302 -0.061941421556846156 1.0 3373 -320910 Itgb8 integrin beta 8 Novel U 0.01950377148128152 -0.06196267482879965 1.0 3374 -258579 Or2ah1 olfactory receptor family 2 subfamily AH member 1 Novel U 0.019492252709022627 -0.062081985893198036 1.0 3375 -258513 Or12j5 olfactory receptor family 12 subfamily J member 5 Novel U 0.019485089132019153 -0.0621561859883101 1.0 3376 -68939 Rasl11b RAS-like, family 11, member B Novel U 0.019484654401515547 -0.06216068891257546 1.0 3377 -320714 Trappc11 trafficking protein particle complex 11 Novel U 0.019475328305076738 -0.062257288312909734 1.0 3378 -14170 Fgf15 fibroblast growth factor 15 Novel U 0.019471791348968176 -0.062293923988011056 1.0 3379 -71801 Plekhf2 pleckstrin homology domain containing, family F (with FYVE domain) member 2 Novel U 0.019471317290915096 -0.06229883426574104 1.0 3380 -14168 Fgf13 fibroblast growth factor 13 Novel U 0.019455378720949223 -0.06246392544949529 1.0 3381 -69368 Wdfy1 WD repeat and FYVE domain containing 1 Novel U 0.019450832652526652 -0.06251101347677233 1.0 3382 -14700 Gng10 guanine nucleotide binding protein (G protein), gamma 10 Novel N 0.01943553488957444 -0.06266946720254449 1.0 3383 -434341 Nlrc5 NLR family, CARD domain containing 5 Novel U 0.019433626571814352 -0.0626892334951709 1.0 3384 -20353 Sema4c sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4C Novel U 0.01943142882428296 -0.06271199769185401 1.0 3385 -18976 Pomc pro-opiomelanocortin-alpha Novel U 0.019429513576256583 -0.06273183576795083 1.0 3386 -16912 Psmb9 proteasome (prosome, macropain) subunit, beta type 9 (large multifunctional peptidase 2) Novel U 0.019372714154096186 -0.06332016231550779 1.0 3387 -11603 Agrn agrin Novel U 0.01936933035325915 -0.06335521161334133 1.0 3388 -258732 Or5p69 olfactory receptor family 5 subfamily P member 69 Novel U 0.019362362702295608 -0.06342738231297253 1.0 3389 -54524 Syt6 synaptotagmin VI Novel U 0.019361462986508173 -0.06343670153952222 1.0 3390 -16145 Igtp interferon gamma induced GTPase Novel U 0.019360120718912743 -0.06345060470315102 1.0 3391 -11302 Aatk apoptosis-associated tyrosine kinase Novel U 0.01935505359346066 -0.06350308982201092 1.0 3392 -12483 Cd22 CD22 antigen Novel U 0.01935278167249728 -0.06352662230466423 1.0 3393 -15552 Htr1d 5-hydroxytryptamine (serotonin) receptor 1D Novel U 0.019335227187464103 -0.06370845108356527 1.0 3394 -14945 Gzmk granzyme K Novel U 0.019327321695968357 -0.06379033590459916 1.0 3395 -50929 Il22 interleukin 22 Novel U 0.019324377113792278 -0.06382083578998107 1.0 3396 -229615 Pias3 protein inhibitor of activated STAT 3 Novel U 0.019312174960123055 -0.06394722529656269 1.0 3397 -14764 Ptgdr2 prostaglandin D2 receptor 2 Novel U 0.019304416105583904 -0.0640275912568206 1.0 3398 -18203 Ntan1 N-terminal Asn amidase Novel U 0.019303301868162738 -0.06403913249140046 1.0 3399 -72925 Marchf1 membrane associated ring-CH-type finger 1 Novel U 0.01929979281928913 -0.06407547910427953 1.0 3400 -14109 Fau FAU ubiquitin like and ribosomal protein S30 fusion Novel N 0.019299168289429517 -0.06408194796403509 1.0 3401 -258694 Or5b12b olfactory receptor family 5 subfamily B member 12B Novel U 0.019283972657861765 -0.06423934381628438 1.0 3402 -244373 Erlin2 ER lipid raft associated 2 Novel U 0.01923847639339872 -0.06471059262798347 1.0 3403 -19679 Pitpnm2 phosphatidylinositol transfer protein, membrane-associated 2 Novel U 0.019228554694503935 -0.06481336125897737 1.0 3404 -258453 Or4c29 olfactory receptor family 4 subfamily C member 29 Novel U 0.01922823805498563 -0.06481664100069902 1.0 3405 -258665 Or6c217 olfactory receptor family 6 subfamily C member 217 Novel U 0.01920962838197635 -0.06500939938196909 1.0 3406 -258416 Or8b101 olfactory receptor family 8 subfamily B member 101 Novel U 0.019205636372962496 -0.06505074848010436 1.0 3407 -100041840 Gm10408 predicted gene 10408 Novel U 0.019203690218893142 -0.06507090667997836 1.0 3408 -244562 Abcc12 ATP-binding cassette, sub-family C member 12 Novel U 0.019188714571898375 -0.06522602393925228 1.0 3409 -258679 Or5an6 olfactory receptor family 5 subfamily AN member 6 Novel U 0.019159233822960673 -0.06553138456762159 1.0 3410 -18330 Or2t1 olfactory receptor family 2 subfamily T member 1 Novel U 0.019142465396522305 -0.06570507137743786 1.0 3411 -258215 Or5p78 olfactory receptor family 5 subfamily P member 78 Novel U 0.019132579587329886 -0.06580746826407448 1.0 3412 -18315 Or7e178 olfactory receptor family 7 subfamily E member 178 Novel U 0.019126492984597628 -0.06587051309508893 1.0 3413 -634104 Or10ad1 olfactory receptor family 10 subfamily AD member 1 Novel U 0.019126243703741108 -0.06587309513800609 1.0 3414 -14299 Ncs1 neuronal calcium sensor 1 Novel U 0.019110109787457984 -0.06604020971249275 1.0 3415 -66480 Rpl15 ribosomal protein L15 Novel U 0.019093621866099933 -0.06621099105990823 1.0 3416 -258343 Or1e1f olfactory receptor family 1 subfamily E member 1F Novel U 0.019092885514255562 -0.06621861816810597 1.0 3417 -23991 Cib1 calcium and integrin binding 1 Novel U 0.01909086949551919 -0.06623950002390425 1.0 3418 -18739 Pitpnm1 phosphatidylinositol transfer protein, membrane-associated 1 Novel U 0.01908685571908933 -0.06628107458821896 1.0 3419 -635895 Gm7168 predicted gene 7168 Novel U 0.01908563481105849 -0.06629372071346722 1.0 3420 -56697 Akap10 A kinase anchor protein 10 Novel N 0.019083443902010624 -0.06631641407736275 1.0 3421 -17920 Myo6 myosin VI Novel U 0.019075599598056065 -0.06639766511985647 1.0 3422 -71951 Gpc2 glypican 2 cerebroglycan Novel U 0.019072543321585707 -0.06642932193106676 1.0 3423 -20305 Ccl6 C-C motif chemokine ligand 6 Novel U 0.019068433998900906 -0.06647188616034923 1.0 3424 -100273 Osbpl9 oxysterol binding protein-like 9 Novel N 0.019056078420745328 -0.06659986483271695 1.0 3425 -57764 Ntn4 netrin 4 Novel U 0.01903039904240093 -0.06686585098944413 1.0 3426 -329460 Or4s2b olfactory receptor family 4 subfamily S member 2B Novel U 0.019010857068656545 -0.06706826611108069 1.0 3427 -215748 Cnksr3 Cnksr family member 3 Novel U 0.019004818822951894 -0.06713081006159283 1.0 3428 -16709 Ktn1 kinectin 1 Novel U 0.018999158113914984 -0.06718944349971136 1.0 3429 -231225 Tapt1 transmembrane anterior posterior transformation 1 Novel U 0.01898751521252696 -0.06731004028954873 1.0 3430 -19358 Rad23a RAD23 homolog A, nucleotide excision repair protein Novel U 0.018976595881662568 -0.06742314235968845 1.0 3431 -22409 Wnt10a wingless-type MMTV integration site family, member 10A Novel U 0.018973767612662902 -0.06745243747701266 1.0 3432 -225020 Fez2 fasciculation and elongation protein zeta 2 Novel U 0.018962709047296057 -0.06756698173355168 1.0 3433 -56298 Atl2 atlastin GTPase 2 Novel U 0.018945947386026854 -0.06774059846996815 1.0 3434 -12048 Bcl2l1 BCL2-like 1 Novel U 0.01894144214048817 -0.06778726365515589 1.0 3435 -18132 Notch4 notch 4 Novel U 0.0189390058680217 -0.06781249848527542 1.0 3436 -101809 Spred3 sprouty-related EVH1 domain containing 3 Novel U 0.018930393933142362 -0.0679017006236535 1.0 3437 -258356 Or51f23 olfactory receptor family 51 subfamily F member 23 Novel U 0.0189177975267947 -0.068032173786518 1.0 3438 -435864 Vmn2r9 vomeronasal 2, receptor 9 Novel U 0.01891146044557851 -0.06809781306543501 1.0 3439 -102638047 LOC102638047 sp110 nuclear body protein-like Novel U 0.01890904675143055 -0.06812281403007367 1.0 3440 -258365 Or12k8 olfactory receptor family 12 subfamily K member 8 Novel U 0.018906560141138347 -0.06814857025773738 1.0 3441 -57431 Dnajc4 DnaJ heat shock protein family (Hsp40) member C4 Novel U 0.0189020981323473 -0.06819478759811441 1.0 3442 -258420 Or5au1 olfactory receptor family 5 subfamily AU member 1 Novel U 0.018895956221410992 -0.06825840530968824 1.0 3443 -258154 Or5m11b olfactory receptor family 5 subfamily M member 11B Novel U 0.018892051381687494 -0.06829885151117954 1.0 3444 -257980 Or4f52 olfactory receptor family 4 subfamily F member 52 Novel U 0.018889478519564757 -0.06832550113246856 1.0 3445 -14175 Fgf4 fibroblast growth factor 4 Novel U 0.01888798785251684 -0.06834094141274784 1.0 3446 -102607 Snx19 sorting nexin 19 Novel U 0.01888796776800174 -0.068341149447495 1.0 3447 -215855 Taar6 trace amine-associated receptor 6 Novel U 0.018869961370147324 -0.06852765912454262 1.0 3448 -14701 Gng12 guanine nucleotide binding protein (G protein), gamma 12 Novel N 0.01884503955215154 -0.0687857984960823 1.0 3449 -54612 Sfrp5 secreted frizzled-related sequence protein 5 Novel U 0.018839808887109285 -0.06883997755264112 1.0 3450 -18671 Abcb1a ATP-binding cassette, sub-family B member 1A Novel U 0.01883494852060604 -0.06889032106910578 1.0 3451 -69727 Usp46 ubiquitin specific peptidase 46 Novel N 0.018829956437201194 -0.06894202890490729 1.0 3452 -22026 Nr2c2 nuclear receptor subfamily 2, group C, member 2 Novel N 0.01882429194626782 -0.06900070151578507 1.0 3453 -57815 Afg2a AFG2 AAA ATPase homolog A Novel N 0.018820401833102084 -0.06904099518007518 1.0 3454 -258399 Or4f4b olfactory receptor family 4 subfamily F member 4B Novel U 0.018813154909696643 -0.06911605857447897 1.0 3455 -14126 Ms4a2 membrane-spanning 4-domains, subfamily A, member 2 Novel N 0.01881194309434714 -0.06912861051803285 1.0 3456 -210876 Vmn2r111 vomeronasal 2, receptor 111 Novel U 0.018794083902621238 -0.06931359543884043 1.0 3457 -279766 Rhbdd3 rhomboid domain containing 3 Novel U 0.018784220958716347 -0.06941575548758047 1.0 3458 -57890 Il17re interleukin 17 receptor E Novel U 0.018764095104351623 -0.06962421842548847 1.0 3459 -12123 Hrk harakiri, BCL2 interacting protein (contains only BH3 domain) Novel U 0.018752530434353622 -0.0697440048971597 1.0 3460 -26405 Map3k2 mitogen-activated protein kinase kinase kinase 2 Novel N 0.01873577799007054 -0.06991752616433691 1.0 3461 -257899 Or5g23 olfactory receptor family 5 subfamily G member 23 Novel U 0.018733253648414466 -0.06994367321222728 1.0 3462 -106025 Sharpin SHANK-associated RH domain interacting protein Novel U 0.018730819472719876 -0.06996888632405263 1.0 3463 -338367 Myo1d myosin ID Novel U 0.018729618055006298 -0.06998133056923539 1.0 3464 -12789 Cnga2 cyclic nucleotide gated channel alpha 2 Novel U 0.018722945838156497 -0.07005044117202831 1.0 3465 -15204 Herc2 HECT and RLD domain containing E3 ubiquitin protein ligase 2 Novel U 0.018715471249331157 -0.07012786271736732 1.0 3466 -234912 Cfap300 cilia and flagella associated protein 300 Novel N 0.018712147371082326 -0.07016229133900209 1.0 3467 -12822 Col18a1 collagen, type XVIII, alpha 1 Novel U 0.018705732449744977 -0.07022873688333518 1.0 3468 -259007 Or1e35 olfactory receptor family 1 subfamily E member 35 Novel U 0.01870196712026779 -0.07026773804228136 1.0 3469 -16362 Irf1 interferon regulatory factor 1 Novel U 0.018699346454665422 -0.07029488281044093 1.0 3470 -218066 Or2b6 olfactory receptor family 2 subfamily B member 6 Novel U 0.018697022633373687 -0.0703189528749892 1.0 3471 -20309 Cxcl15 C-X-C motif chemokine ligand 15 Novel U 0.018685237169672096 -0.07044102632058404 1.0 3472 -320528 Vps13c vacuolar protein sorting 13C Novel U 0.018657212205369863 -0.0707313079795555 1.0 3473 -17167 Marco macrophage receptor with collagenous structure Novel N 0.01864318071958011 -0.07087664564810552 1.0 3474 -17210 Mcl1 myeloid cell leukemia sequence 1 Novel U 0.018632062318887442 -0.07099180967698243 1.0 3475 -27205 Podxl podocalyxin-like Novel U 0.01863128183351215 -0.07099989391884261 1.0 3476 -56431 Dstn destrin Novel U 0.018619413612345894 -0.07112282456353596 1.0 3477 -170743 Tlr7 toll-like receptor 7 Novel U 0.018617304868768076 -0.07114466686019377 1.0 3478 -258444 Or2ag1b olfactory receptor family 2 subfamily AG member 1B Novel U 0.018605936855602155 -0.07126241636686309 1.0 3479 -259001 Or5k17 olfactory receptor family 5 subfamily K member 17 Novel U 0.018595175312330785 -0.07137388407830127 1.0 3480 -258471 Or8c13 olfactory receptor family 8 subfamily C member 13 Novel U 0.018578782314639355 -0.07154368220949832 1.0 3481 -258600 Or13d1 olfactory receptor family 13 subfamily D member 1 Novel U 0.01856076264907532 -0.071730329313046 1.0 3482 -109637 Upk1a uroplakin 1A Novel U 0.01854311558492096 -0.07191311702344086 1.0 3483 -268857 Nlrc3 NLR family, CARD domain containing 3 Novel U 0.018518165872248464 -0.07217154532712497 1.0 3484 -93735 Wnt16 wingless-type MMTV integration site family, member 16 Novel U 0.01851702521346725 -0.07218336023328364 1.0 3485 -22313 Vmn2r104 vomeronasal 2, receptor 104 Novel U 0.018514670523489696 -0.07220775003466488 1.0 3486 -18324 Or8d1 olfactory receptor family 8 subfamily D member 1 Novel U 0.01850446889623155 -0.07231341815444432 1.0 3487 -13549 Dyrk1b dual-specificity tyrosine phosphorylation regulated kinase 1b Novel U 0.01850390494923146 -0.07231925949893252 1.0 3488 -257951 Or5ak4 olfactory receptor family 5 subfamily AK member 4 Novel U 0.01849169479226357 -0.07244573190341862 1.0 3489 -381217 Entrep1 endosomal transmembrane epsin interactor 1 Novel U 0.018485222390540613 -0.07251277282769626 1.0 3490 -258650 Or2a56 olfactory receptor family 2 subfamily A member 56 Novel U 0.018484938739468305 -0.0725157108761787 1.0 3491 -118454 Gjc2 gap junction protein, gamma 2 Novel U 0.018457088165479002 -0.0728041862060216 1.0 3492 -56374 Tmem59 transmembrane protein 59 Novel U 0.0184560187735192 -0.07281526293278685 1.0 3493 -258527 Or2ad1 olfactory receptor family 2 subfamily AD member 1 Novel U 0.018443010788266462 -0.07294999921642024 1.0 3494 -258941 Or1n2 olfactory receptor family 1 subfamily N member 2 Novel U 0.018429420192314576 -0.0730907701625231 1.0 3495 -15930 Ido1 indoleamine 2,3-dioxygenase 1 Novel U 0.01842582482390964 -0.07312801087027007 1.0 3496 -104836 Cbll1 Casitas B-lineage lymphoma-like 1 Novel N 0.018423175857524537 -0.07315544877700687 1.0 3497 -384061 Fndc5 fibronectin type III domain containing 5 Novel U 0.018419246500933024 -0.07319614892341113 1.0 3498 -211472 Or2y8 olfactory receptor family 2 subfamily Y member 8 Novel U 0.018411986789992167 -0.07327134477068638 1.0 3499 -74761 Mxra8 matrix-remodelling associated 8 Novel U 0.018394806719669504 -0.07344929537432414 1.0 3500 -21432 Tcl1 T cell lymphoma breakpoint 1 Novel U 0.018393644212172128 -0.07346133658876658 1.0 3501 -110829 Lims1 LIM and senescent cell antigen-like domains 1 Novel U 0.01838354949576436 -0.07356589732947233 1.0 3502 -19255 Ptpn2 protein tyrosine phosphatase, non-receptor type 2 Novel U 0.01837696402109137 -0.07363410945964932 1.0 3503 -259067 Or6b1 olfactory receptor family 6 subfamily B member 1 Novel U 0.01837390193725679 -0.07366582642334732 1.0 3504 -15958 Ifit2 interferon-induced protein with tetratricopeptide repeats 2 Novel U 0.01835236614730818 -0.07388889342768405 1.0 3505 -26441 Psma4 proteasome subunit alpha 4 Novel U 0.018341491680164402 -0.07400153080088047 1.0 3506 -70361 Lman1 lectin, mannose-binding, 1 Novel U 0.01834046838709718 -0.07401213003683181 1.0 3507 -56356 Gltp glycolipid transfer protein Novel N 0.01833819284523129 -0.07403570002467427 1.0 3508 -258552 Or7e174 olfactory receptor family 7 subfamily E member 174 Novel U 0.01833645471353364 -0.07405370353566054 1.0 3509 -68839 Ankrd46 ankyrin repeat domain 46 Novel U 0.018327437253135813 -0.07414710609402819 1.0 3510 -258775 Or5h26 olfactory receptor family 5 subfamily H member 26 Novel U 0.018322262135134663 -0.07420070979616127 1.0 3511 -258386 Or8k24 olfactory receptor family 8 subfamily K member 24 Novel U 0.018321270731185977 -0.0742109787256711 1.0 3512 -243911 Kirrel2 kirre like nephrin family adhesion molecule 2 Novel U 0.01832020143942571 -0.07422205441457289 1.0 3513 -14761 Gpr27 G protein-coupled receptor 27 Novel N 0.01831628209599986 -0.07426265084493636 1.0 3514 -13199 Ddn dendrin Novel U 0.018314561049575174 -0.0742804773872269 1.0 3515 -78885 Coro7 coronin 7 Novel U 0.01831034878884923 -0.07432410784535562 1.0 3516 -258475 Or8b40 olfactory receptor family 8 subfamily B member 40 Novel U 0.01830885904829761 -0.07433953852901672 1.0 3517 -13685 Eif4ebp1 eukaryotic translation initiation factor 4E binding protein 1 Novel U 0.018308744128216425 -0.07434072886743982 1.0 3518 -319899 Dock6 dedicator of cytokinesis 6 Novel U 0.018304345457702147 -0.07438629015202823 1.0 3519 -258330 Or4x13 olfactory receptor family 4 subfamily X member 13 Novel U 0.018303225037470054 -0.07439789542796041 1.0 3520 -18829 Ccl21a C-C motif chemokine ligand 21 (serine) Novel U 0.01828045275179245 -0.07463377001441046 1.0 3521 -76527 Il34 interleukin 34 Novel U 0.01827611816017726 -0.07467866757186857 1.0 3522 -14573 Gdnf glial cell line derived neurotrophic factor Novel U 0.018264788962482608 -0.07479601502916247 1.0 3523 -258639 Or9m2 olfactory receptor family 9 subfamily M member 2 Novel U 0.01824582288509295 -0.07499246503528835 1.0 3524 -20873 Plk4 polo like kinase 4 Novel U 0.018238697943686592 -0.07506626494415557 1.0 3525 -628475 Gm6882 predicted gene 6882 Novel U 0.0182327036611722 -0.07512835352538821 1.0 3526 -100126778 Esp8 exocrine gland secreted peptide 8 Novel U 0.01820855546837522 -0.07537847971255028 1.0 3527 -73689 Bloc1s2 biogenesis of lysosomal organelles complex-1, subunit 2 Novel U 0.018207822970655704 -0.07538606689984945 1.0 3528 -224997 Dlgap1 DLG associated protein 1 Novel U 0.018200082048364995 -0.07546624711846749 1.0 3529 -257915 Or9g20 olfactory receptor family 9 subfamily G member 20 Novel U 0.018192893612272148 -0.07554070470321009 1.0 3530 -18312 Or2c1 olfactory receptor family 2 subfamily C member 1 Novel U 0.018165098049873016 -0.0758286102248104 1.0 3531 -71213 Cage1 cancer antigen 1 Novel U 0.018164734530389172 -0.07583237554767401 1.0 3532 -12915 Atf6b activating transcription factor 6 beta Novel U 0.018143906704687462 -0.07604810948161442 1.0 3533 -22158 Tulp3 TUB like protein 3 Novel U 0.01813452554433422 -0.07614527923216428 1.0 3534 -258996 Or5ac19 olfactory receptor family 5 subfamily AC member 19 Novel U 0.018132145525952218 -0.07616993138432616 1.0 3535 -18073 Nid1 nidogen 1 Novel N 0.0181186344306708 -0.07630987886509777 1.0 3536 -258580 Or5m10 olfactory receptor family 5 subfamily M member 10 Novel U 0.018108976786606588 -0.07640991242483693 1.0 3537 -545655 Gm13287 predicted gene 13287 Novel U 0.018078654618018268 -0.07672398845028713 1.0 3538 -19337 Rab33a RAB33A, member RAS oncogene family Novel U 0.018053998770598784 -0.07697937290734083 1.0 3539 -258647 Or2a51 olfactory receptor family 2 subfamily A member 51 Novel U 0.018052743504053777 -0.07699237491694934 1.0 3540 -56419 Diaph3 diaphanous related formin 3 Novel N 0.01804035652345173 -0.07712067885482529 1.0 3541 -14219 Ccn2 cellular communication network factor 2 Novel U 0.01803981323431354 -0.07712630622585902 1.0 3542 -69754 Fbxo7 F-box protein 7 Novel U 0.018023271403344022 -0.07729764596725787 1.0 3543 -13837 Epha3 Eph receptor A3 Novel U 0.018016031483528958 -0.07737263681870275 1.0 3544 -14679 Gnai3 G protein subunit alpha i3 Novel U 0.018003875454456263 -0.0774985485682298 1.0 3545 -56632 Sphk2 sphingosine kinase 2 Novel U 0.01799508747126978 -0.07758957420918601 1.0 3546 -13176 Dcc deleted in colorectal carcinoma Novel U 0.01799200760748493 -0.0776214753370244 1.0 3547 -258434 Or10d1c olfactory receptor family 10 subfamily D member 1C Novel U 0.017983787131081765 -0.0777066227613748 1.0 3548 -19099 Mapk8ip1 mitogen-activated protein kinase 8 interacting protein 1 Novel N 0.017974808209574835 -0.07779962613517744 1.0 3549 -328829 9830107B12Rik RIKEN cDNA 9830107B12 gene Novel U 0.01796553780301537 -0.07789564870157217 1.0 3550 -70584 Pak4 p21 (RAC1) activated kinase 4 Novel U 0.017963978148756922 -0.0779118035491103 1.0 3551 -259017 Or5ar1 olfactory receptor family 5 subfamily AR member 1 Novel U 0.01795921159066013 -0.0779611754011847 1.0 3552 -258148 Or6c7 olfactory receptor family 6 subfamily C member 7 Novel U 0.01794736874633203 -0.07808384319342265 1.0 3553 -257933 Or8k39 olfactory receptor family 8 subfamily K member 39 Novel U 0.017946375255960295 -0.07809413373403383 1.0 3554 -77480 Kidins220 kinase D-interacting substrate 220 Novel U 0.01793506799596093 -0.0782112539614011 1.0 3555 -320615 Dop1a DOP1 leucine zipper like protein A Novel U 0.017916649321485352 -0.07840203398613783 1.0 3556 -12388 Ctnnd1 catenin delta 1 Novel U 0.017911682019558558 -0.07845348513620432 1.0 3557 -666806 Eif1ad8 eukaryotic translation initiation factor 1A domain containing 8 Novel U 0.01790954809843219 -0.07847558822108236 1.0 3558 -238037 Wdcp WD repeat and coiled coil containing Novel U 0.0179055862663115 -0.07851662474795026 1.0 3559 -224916 Vmn2r120 vomeronasal 2, receptor 120 Novel U 0.017903899897908738 -0.07853409209642968 1.0 3560 -667277 C1rb complement component 1, r subcomponent B Novel U 0.01790053919307888 -0.07856890216658013 1.0 3561 -258485 Or4l15 olfactory receptor family 4 subfamily L member 15 Novel U 0.017889043298236356 -0.0786879762674518 1.0 3562 -28185 Tomm70a translocase of outer mitochondrial membrane 70A Novel U 0.01788001477556759 -0.0787814934084582 1.0 3563 -22644 Rnf103 ring finger protein 103 Novel U 0.017866718967547816 -0.07891921095085086 1.0 3564 -242960 Fbxl5 F-box and leucine-rich repeat protein 5 Novel U 0.017858770518007154 -0.07900154072990184 1.0 3565 -54651 Usp27x ubiquitin specific peptidase 27, X chromosome Novel U 0.017858519511211837 -0.07900414065003633 1.0 3566 -66196 Myo19 myosin XIX Novel U 0.017832316403237257 -0.07927555158105626 1.0 3567 -259046 Or56a3 olfactory receptor family 56 subfamily A member 3 Novel U 0.017830892542763207 -0.07929029988103957 1.0 3568 -18607 Pdpk1 3-phosphoinositide dependent protein kinase 1 Novel U 0.017828854707560148 -0.07931140771108264 1.0 3569 -100502846 Gm19410 predicted gene, 19410 Novel U 0.017824166497359684 -0.07935996803822244 1.0 3570 -66795 Atg10 autophagy related 10 Novel U 0.017823929783636172 -0.07936241991118903 1.0 3571 -236733 Usp11 ubiquitin specific peptidase 11 Novel N 0.017806734867469053 -0.07954052428759563 1.0 3572 -381438 Gm5148 predicted gene 5148 Novel U 0.01777592367746019 -0.0798596655808441 1.0 3573 -258065 Or5af1 olfactory receptor family 5 subfamily AF member 1 Novel U 0.017759378428671944 -0.08003104072389701 1.0 3574 -258120 Or5b109 olfactory receptor family 5 subfamily B member 109 Novel U 0.017754279148692865 -0.08008385889829052 1.0 3575 -15978 Ifng interferon gamma Novel U 0.017725674377555574 -0.08038014617739937 1.0 3576 -667271 Or5b105 olfactory receptor family 5 subfamily B member 105 Novel U 0.01772254382386762 -0.08041257234958779 1.0 3577 -258822 Or7d9 olfactory receptor family 7 subfamily D member 9 Novel U 0.017717130897575713 -0.08046863926217901 1.0 3578 -104318 Csnk1d casein kinase 1, delta Novel U 0.017713932134976126 -0.08050177194003187 1.0 3579 -338337 Cog3 component of oligomeric golgi complex 3 Novel U 0.01770871440167546 -0.08055581705003642 1.0 3580 -56092 Cts7 cathepsin 7 Novel U 0.017708398645064894 -0.08055908764662872 1.0 3581 -258806 Or8b48 olfactory receptor family 8 subfamily B member 48 Novel U 0.017705146702054718 -0.08059277116542626 1.0 3582 -66917 Chordc1 cysteine and histidine rich domain containing 1 Novel U 0.017696258467241002 -0.08068483520944175 1.0 3583 -23892 Grem1 gremlin 1, DAN family BMP antagonist Novel U 0.01767981268979669 -0.08085518003158411 1.0 3584 -16400 Itga3 integrin alpha 3 Novel U 0.01767792241528987 -0.08087475943278633 1.0 3585 -11938 Atp2a2 ATPase, Ca++ transporting, cardiac muscle, slow twitch 2 Novel U 0.017676259306460676 -0.08089198585936737 1.0 3586 -16363 Irf2 interferon regulatory factor 2 Novel N 0.01766765015247399 -0.08098115919335079 1.0 3587 -18317 Or6a2 olfactory receptor family 6 subfamily A member 2 Novel U 0.017660075964614386 -0.08105961238221254 1.0 3588 -259035 Or10a2 olfactory receptor family 10 subfamily A member 2 Novel U 0.017659465561928794 -0.08106593491316398 1.0 3589 -213002 Ifitm6 interferon induced transmembrane protein 6 Novel U 0.017657179521809785 -0.08108961364156717 1.0 3590 -71395 Cdcp3 CUB domain containing protein 3 Novel U 0.017653084935627096 -0.0811320252306452 1.0 3591 -20743 Sptbn2 spectrin beta, non-erythrocytic 2 Novel N 0.01763645630004439 -0.08130426409137391 1.0 3592 -100502766 Kifc1 kinesin family member C1 Novel U 0.017620706678798028 -0.08146739815050281 1.0 3593 -258160 Or52l1 olfactory receptor family 52 subfamily L member 1 Novel U 0.0176178854149118 -0.08149662070909232 1.0 3594 -258937 Or2l5 olfactory receptor family 2 subfamily L member 5 Novel U 0.017616745582848054 -0.08150842705213864 1.0 3595 -67181 Ctdnep1 CTD nuclear envelope phosphatase 1 Novel U 0.017614756474726108 -0.08152903016867734 1.0 3596 -70296 Tbc1d13 TBC1 domain family, member 13 Novel U 0.01760992049154902 -0.08157912112345123 1.0 3597 -14681 Gnao1 guanine nucleotide binding protein, alpha O Novel N 0.01760468492150762 -0.08163335098582997 1.0 3598 -258338 Or4c12 olfactory receptor family 4 subfamily C member 12 Novel U 0.017603417591457993 -0.08164647794882277 1.0 3599 -11944 Atp4a ATPase, H+/K+ exchanging, gastric, alpha polypeptide Novel N 0.01758404579703298 -0.0818471303586636 1.0 3600 -403178 Plcxd1 phosphatidylinositol-specific phospholipase C, X domain containing 1 Novel U 0.017582936252934413 -0.08185862297996227 1.0 3601 -258159 Or10ak9 olfactory receptor family 10 subfamily AK member 9 Novel U 0.017576330147490046 -0.08192704880299101 1.0 3602 -19762 Rit2 Ras-like without CAAX 2 Novel U 0.017557263418293223 -0.08212454135722674 1.0 3603 -257972 Or5h25 olfactory receptor family 5 subfamily H member 25 Novel U 0.017552664624539957 -0.08217217551174587 1.0 3604 -257902 Or2ag20 olfactory receptor family 2 subfamily AG member 20 Novel U 0.017549182172819065 -0.08220824663219144 1.0 3605 -258835 Or10ag60 olfactory receptor family 10 subfamily AG member 60 Novel U 0.0175461471121625 -0.0822396836906999 1.0 3606 -56436 Adrm1 adhesion regulating molecule 1 26S proteasome ubiquitin receptor Novel U 0.01754463897769754 -0.0822553048979107 1.0 3607 -114715 Spred1 sprouty protein with EVH-1 domain 1, related sequence Novel U 0.017542898352538666 -0.08227333423608635 1.0 3608 -14783 Grb10 growth factor receptor bound protein 10 Novel U 0.017528974841002312 -0.08241755351086912 1.0 3609 -258189 Or51v8 olfactory receptor family 51 subfamily V member 8 Novel U 0.017524669502809145 -0.08246214806234357 1.0 3610 -319939 Tns3 tensin 3 Novel U 0.017517390266717347 -0.08253754615049042 1.0 3611 -70335 Reep6 receptor accessory protein 6 Novel U 0.017513408404494356 -0.08257879014849949 1.0 3612 -239167 Synb syncytin b Novel U 0.01750888074265379 -0.0826256875210052 1.0 3613 -20702 Serpina1c serine (or cysteine) peptidase inhibitor, clade A, member 1C Novel U 0.017507495464383478 -0.08264003618779053 1.0 3614 -381484 Gm5150 predicted gene 5150 Novel U 0.017504807244313286 -0.0826678806829071 1.0 3615 -67295 Rab3c RAB3C, member RAS oncogene family Novel U 0.01750109020478491 -0.0827063816561509 1.0 3616 -18554 Pcsk7 proprotein convertase subtilisin/kexin type 7 Novel N 0.017491982742510303 -0.08280071645099961 1.0 3617 -20170 Hps6 HPS6, biogenesis of lysosomal organelles complex 2 subunit 3 Novel U 0.017481655933620648 -0.0829076811980031 1.0 3618 -258151 Or9i1b olfactory receptor family 9 subfamily I member 1B Novel U 0.017472983713179173 -0.08299750777225201 1.0 3619 -69116 Ubr4 ubiquitin protein ligase E3 component n-recognin 4 Novel U 0.017471644435309266 -0.08301137996840212 1.0 3620 -109685 Hyal3 hyaluronoglucosaminidase 3 Novel U 0.01745858616193334 -0.08314663713476235 1.0 3621 -56636 Fgf21 fibroblast growth factor 21 Novel U 0.017457766994149793 -0.08315512204773563 1.0 3622 -258902 Or4c115 olfactory receptor family 4 subfamily C member 115 Novel U 0.017451460389939947 -0.08322044564682278 1.0 3623 -18166 Npy1r neuropeptide Y receptor Y1 Novel N 0.017449739798682126 -0.0832382674745099 1.0 3624 -100039042 Eif1ad3 eukaryotic translation initiation factor 1A domain containing 3 Novel U 0.01744516632631288 -0.08328563935096572 1.0 3625 -258899 Or4c109 olfactory receptor family 4 subfamily C member 109 Novel U 0.017444670226437933 -0.08329077793716202 1.0 3626 -67543 Pabpc6 poly(A) binding protein, cytoplasmic 6 Novel U 0.017442771118173 -0.0833104488381404 1.0 3627 -258173 Or2d3b olfactory receptor family 2 subfamily D member 3B Novel U 0.017439281011930284 -0.08334659924387137 1.0 3628 -15976 Ifnar2 interferon (alpha and beta) receptor 2 Novel U 0.01743810376140548 -0.08335879316610727 1.0 3629 -19214 Ptgdr prostaglandin D receptor Novel U 0.017430642173407528 -0.08343608004930357 1.0 3630 -242557 Atg4c autophagy related 4C, cysteine peptidase Novel U 0.017425035136954137 -0.08349415754856639 1.0 3631 -224727 Bag6 BCL2-associated athanogene 6 Novel U 0.01741499393336025 -0.08359816400530509 1.0 3632 -258753 Or52e5 olfactory receptor family 52 subfamily E member 5 Novel U 0.017404400993315507 -0.0837078853300644 1.0 3633 -20663 Sos2 SOS Ras/Rho guanine nucleotide exchange factor 2 Novel U 0.017379626230257274 -0.0839645015113951 1.0 3634 -70784 Rasl12 RAS-like, family 12 Novel U 0.017377159047385286 -0.08399005651047889 1.0 3635 -258811 Or8d2b olfactory receptor family 8 subfamily D member 2D Novel U 0.017368475554606067 -0.08407999984323158 1.0 3636 -320148 Trem6l triggering receptor expressed on myeloid cells-like 6 Novel U 0.017367439892011484 -0.0840907272023407 1.0 3637 -15982 Ifrd1 interferon-related developmental regulator 1 Novel N 0.017350984701833053 -0.08426116952127366 1.0 3638 -258820 Or4p22 olfactory receptor family 4 subfamily P member 22 Novel U 0.01734014955950835 -0.08437339956928683 1.0 3639 -216984 Evi2b ecotropic viral integration site 2b Novel U 0.017339181383652296 -0.08438342790297676 1.0 3640 -66120 Fkbp11 FK506 binding protein 11 Novel U 0.01732576018804162 -0.08452244420591411 1.0 3641 -258479 Or5ac21 olfactory receptor family 5 subfamily AC member 21 Novel U 0.017325526004848397 -0.08452486986773115 1.0 3642 -16323 Inhba inhibin beta-A Novel U 0.017321643766313784 -0.08456508196685095 1.0 3643 -217207 Dhx8 DEAH-box helicase 8 Novel N 0.017313114122928044 -0.08465343173264353 1.0 3644 -11472 Actn2 actinin alpha 2 Novel U 0.017311204758798368 -0.08467320886353175 1.0 3645 -258634 Or5d37 olfactory receptor family 5 subfamily D member 37 Novel U 0.017309717737169956 -0.08468861138467564 1.0 3646 -16156 Il11 interleukin 11 Novel U 0.01729690360015372 -0.08482133979464773 1.0 3647 -100042776 Eif1ad6 eukaryotic translation initiation factor 1A domain containing 6 Novel U 0.0172839553628958 -0.0849554572105149 1.0 3648 -110596 Arhgef28 Rho guanine nucleotide exchange factor 28 Novel U 0.017265926130011947 -0.08514220341204676 1.0 3649 -231646 Myo1h myosin 1H Novel U 0.017264385804222054 -0.08515815805594298 1.0 3650 -56093 Pfpl pore forming protein-like Novel U 0.01725441697441658 -0.08526141486736044 1.0 3651 -99237 Tm9sf4 transmembrane 9 superfamily member 4 Novel U 0.017243588427981498 -0.08537357659536574 1.0 3652 -436002 Or52a20 olfactory receptor family 52 subfamily A member 20 Novel U 0.01724104915598097 -0.08539987829127314 1.0 3653 -14767 Nmur1 neuromedin U receptor 1 Novel N 0.017227517421542056 -0.08554003955175961 1.0 3654 -70772 Ggnbp1 gametogenetin binding protein 1 Novel U 0.017221127445021463 -0.08560622671850074 1.0 3655 -20112 Rps6ka2 ribosomal protein S6 kinase, polypeptide 2 Novel U 0.017218677092305235 -0.08563160739138442 1.0 3656 -380921 Dgkh diacylglycerol kinase, eta Novel U 0.017214417084827887 -0.0856757324087946 1.0 3657 -17344 Pias2 protein inhibitor of activated STAT 2 Novel N 0.017201194719681435 -0.0858126892323197 1.0 3658 -100503048 Or7g26 olfactory receptor family 7 subfamily G member 26 Novel U 0.017199709436324945 -0.08582807374850016 1.0 3659 -258700 Or5b99 olfactory receptor family 5 subfamily B member 99 Novel U 0.01719093617305183 -0.0859189469210776 1.0 3660 -258575 Or8k1 olfactory receptor family 8 subfamily K member 1 Novel U 0.017189062776141094 -0.0859383515046944 1.0 3661 -54631 Nphs1 nephrosis 1, nephrin Novel U 0.017180257036018633 -0.08602956107140973 1.0 3662 -407821 Znrf3 zinc and ring finger 3 Novel U 0.017178506716283085 -0.08604769082569189 1.0 3663 -64899 Lpin3 lipin 3 Novel U 0.017175990832691893 -0.08607375026522422 1.0 3664 -244178 Ubqln3 ubiquilin 3 Novel U 0.017174881188455452 -0.0860852439237477 1.0 3665 -56550 Ube2d2a ubiquitin-conjugating enzyme E2D 2A Novel U 0.01717400649514292 -0.08609430396832492 1.0 3666 -115487164 Vsig10l2 V-set and immunoglobulin domain containing 10 like 2 Novel U 0.01717241116753422 -0.08611082831925224 1.0 3667 -404317 Or52j3 olfactory receptor family 52 subfamily J member 3 Novel U 0.017164272623156562 -0.0861951270943758 1.0 3668 -259085 Or51ag1 olfactory receptor family 51 subfamily AG member 1 Novel U 0.01716363141889429 -0.08620176866704596 1.0 3669 -16174 Il18rap interleukin 18 receptor accessory protein Novel U 0.017157780309073258 -0.08626237427022733 1.0 3670 -110213 Tmbim6 transmembrane BAX inhibitor motif containing 6 Novel U 0.017155995053722256 -0.0862808658864659 1.0 3671 -73407 Spmip8 sperm microtubule inner protein 8 Novel U 0.017146306475219156 -0.08638121986410616 1.0 3672 -56228 Ube2j1 ubiquitin-conjugating enzyme E2J 1 Novel U 0.017145498201564368 -0.08638959193605188 1.0 3673 -381375 Pjvk pejvakin Novel N 0.01712335585495541 -0.08661894163433705 1.0 3674 -14748 Gpr3 G-protein coupled receptor 3 Novel U 0.017114901721425362 -0.0867065092715266 1.0 3675 -258742 Or8g17 olfactory receptor family 8 subfamily G member 17 Novel U 0.01710758086454692 -0.08678233846641328 1.0 3676 -17165 Mapkapk5 MAP kinase-activated protein kinase 5 Novel U 0.017096339080245337 -0.08689878049865533 1.0 3677 -258500 Or8g27 olfactory receptor family 8 subfamily G member 27 Novel U 0.017073961328542345 -0.08713056851516597 1.0 3678 -14763 Gpr37 G protein-coupled receptor 37 Novel U 0.017071785128386037 -0.08715310952484628 1.0 3679 -18002 Nedd8 neural precursor cell expressed, developmentally down-regulated gene 8 Novel U 0.017069783984307037 -0.0871738373094325 1.0 3680 -435804 Or10ak12 olfactory receptor family 10 subfamily AK member 12 Novel U 0.017060679935298285 -0.08726813674978565 1.0 3681 -67425 Eps8l1 EPS8-like 1 Novel U 0.017047131920914147 -0.08740846663740957 1.0 3682 -81006 Gpr63 G protein-coupled receptor 63 Novel U 0.017039631065812574 -0.08748616024797434 1.0 3683 -192292 Nrbp1 nuclear receptor binding protein 1 Novel N 0.01703720412235277 -0.08751129844854952 1.0 3684 -258611 Or14c45 olfactory receptor family 14 subfamily C member 45 Novel U 0.0170333582124051 -0.08755113425736002 1.0 3685 -216080 Ube2d1 ubiquitin-conjugating enzyme E2D 1 Novel U 0.017032957129336626 -0.08755528866259836 1.0 3686 -213788 Chrm5 cholinergic receptor, muscarinic 5 Novel N 0.017028492257654775 -0.08760153565670423 1.0 3687 -258261 Or2t46 olfactory receptor family 2 subfamily T member 46 Novel U 0.01702694006383043 -0.08761761322931116 1.0 3688 -258008 Or10g3b olfactory receptor family 10 subfamily G member 3B Novel U 0.017023535791453135 -0.08765287457068577 1.0 3689 -16975 Lrp8 low density lipoprotein receptor-related protein 8, apolipoprotein e receptor Novel U 0.017018778726215072 -0.08770214809604153 1.0 3690 -258656 Or1l4 olfactory receptor family 1 subfamily L member 4 Novel U 0.017004282515349477 -0.0878522993716501 1.0 3691 -66615 Atg4b autophagy related 4B, cysteine peptidase Novel U 0.016997132522770037 -0.0879263587597446 1.0 3692 -66610 Abi3 ABI family member 3 Novel U 0.016989336362558984 -0.08800711113092573 1.0 3693 -66691 Gapvd1 GTPase activating protein and VPS9 domains 1 Novel U 0.016983108625889802 -0.0880716178226193 1.0 3694 -258284 Or14j3 olfactory receptor family 14 subfamily J member 3 Novel U 0.016982559353229863 -0.08807730717077457 1.0 3695 -258525 Or5d41 olfactory receptor family 5 subfamily D member 41 Novel U 0.01698203331278361 -0.08808275588042423 1.0 3696 -56469 Pias1 protein inhibitor of activated STAT 1 Novel U 0.01697996061103114 -0.08810422485703989 1.0 3697 -257936 Or5m11 olfactory receptor family 5 subfamily M member 11 Novel U 0.01697205825431326 -0.08818607720814772 1.0 3698 -227333 Dgkd diacylglycerol kinase, delta Novel U 0.016971530084351726 -0.08819154797524664 1.0 3699 -69306 Efcab9 EF-hand calcium binding domain 9 Novel U 0.01696963389962536 -0.0882111885943086 1.0 3700 -228598 Ebf4 early B cell factor 4 Novel N 0.016962008883873912 -0.08829016825680322 1.0 3701 -11784 Apba2 amyloid beta precursor protein binding family A member 2 Novel N 0.016948580137741656 -0.08842926276779488 1.0 3702 -13644 Efs embryonal Fyn-associated substrate Novel N 0.016930033189952908 -0.08862137144329267 1.0 3703 -12301 Cacybp calcyclin binding protein Novel U 0.016922618189521958 -0.08869817577400145 1.0 3704 -269589 Sytl1 synaptotagmin-like 1 Novel U 0.016888761776862608 -0.08904885938335738 1.0 3705 -109700 Itga1 integrin alpha 1 Novel N 0.016886831753242106 -0.08906885050457243 1.0 3706 -259068 Or2y17 olfactory receptor family 2 subfamily Y member 17 Novel U 0.01688334426045184 -0.08910497384024886 1.0 3707 -258264 Or11h4b olfactory receptor family 11 subfamily H member 4B Novel U 0.016882549294976967 -0.08911320806650451 1.0 3708 -235380 Dmxl2 Dmx-like 2 Novel U 0.016877141329258917 -0.08916922359763477 1.0 3709 -546989 Or52d13 olfactory receptor family 52 subfamily D member 13 Novel U 0.01686272477307902 -0.08931854981262738 1.0 3710 -75717 Cul5 cullin 5 Novel U 0.016859252608535963 -0.08935451437882311 1.0 3711 -12828 Col4a3 collagen, type IV, alpha 3 Novel U 0.016857437974845624 -0.08937331029493477 1.0 3712 -170639 Or51e2 olfactory receptor family 51 subfamily E member 2 Novel U 0.016853582130088533 -0.08941324900817466 1.0 3713 -21981 Ppp1r13b protein phosphatase 1, regulatory subunit 13B Novel N 0.016851170212143503 -0.08943823157496174 1.0 3714 -30931 Tor1a torsin family 1, member A (torsin A) Novel U 0.01684996376075729 -0.08945072795876019 1.0 3715 -75007 Mindy1 MINDY lysine 48 deubiquitinase 1 Novel U 0.016839962191814245 -0.08955432388108837 1.0 3716 -27406 Abcf3 ATP-binding cassette, sub-family F member 3 Novel U 0.01683754263034077 -0.08957938561929184 1.0 3717 -211651 Fancd2 Fanconi anemia, complementation group D2 Novel U 0.016821705979780638 -0.08974342112519183 1.0 3718 -107527 Il1rl2 interleukin 1 receptor-like 2 Novel U 0.01681847341738672 -0.08977690390020328 1.0 3719 -18196 Nsg1 neuron specific gene family member 1 Novel N 0.016817839439460188 -0.08978347062272539 1.0 3720 -11551 Adra2a adrenergic receptor, alpha 2a Novel U 0.016817207738330234 -0.0897900137622634 1.0 3721 -321020 Fpr-rs6 formyl peptide receptor, related sequence 6 Novel U 0.016814932204345847 -0.08981358366846953 1.0 3722 -19219 Ptger4 prostaglandin E receptor 4 (subtype EP4) Novel U 0.016803109491385245 -0.08993604294066469 1.0 3723 -258437 Or2q1 olfactory receptor family 2 subfamily Q member 1 Novel U 0.01679675597710053 -0.09000185243276525 1.0 3724 -12215 Bsg basigin Novel U 0.016794755272068626 -0.09002257566971605 1.0 3725 -94254 Rcc1l reculator of chromosome condensation 1 like Novel U 0.016785528157584682 -0.0901181498182157 1.0 3726 -20084 Rps18 ribosomal protein S18 Novel N 0.016785204093919006 -0.09012150645901176 1.0 3727 -258677 Or5a1 olfactory receptor family 5 subfamily A member 1 Novel U 0.016774686850084725 -0.09023044372491147 1.0 3728 -56015 Or13j1 olfactory receptor family 13 subfamily J member 1 Novel U 0.016766203436563862 -0.09031831464328338 1.0 3729 -70839 P2ry12 purinergic receptor P2Y, G-protein coupled 12 Novel U 0.016765898342136275 -0.09032147480133487 1.0 3730 -19373 Rag1 recombination activating 1 Novel U 0.016738626227003218 -0.0906039584733606 1.0 3731 -330914 Arhgap32 Rho GTPase activating protein 32 Novel U 0.016720559330372135 -0.09079109479474812 1.0 3732 -258987 Or4b1 olfactory receptor family 4 subfamily B member 1 Novel U 0.01671155260461756 -0.09088438616403387 1.0 3733 -104859 Tecpr2 tectonin beta-propeller repeat containing 2 Novel U 0.016710920899320372 -0.09089092934673593 1.0 3734 -404335 Or2b7 olfactory receptor family 2 subfamily B member 7 Novel U 0.016702747408892785 -0.09097559009189585 1.0 3735 -22210 Ube2b ubiquitin-conjugating enzyme E2B Novel U 0.016701745819753262 -0.09098596451927755 1.0 3736 -53333 Tomm40 translocase of outer mitochondrial membrane 40 Novel U 0.016701271549468783 -0.09099087699529339 1.0 3737 -19288 Ptx3 pentraxin related gene Novel U 0.016686520456672613 -0.09114366832956007 1.0 3738 -78785 Clip4 CAP-GLY domain containing linker protein family, member 4 Novel U 0.016685511118780756 -0.09115412301826373 1.0 3739 -71435 Arhgap21 Rho GTPase activating protein 21 Novel U 0.016681268476717425 -0.09119806816528636 1.0 3740 -258644 Or5d38 olfactory receptor family 5 subfamily D member 38 Novel U 0.01667875087592753 -0.09122414539150642 1.0 3741 -100043638 Gm4565 predicted gene 4565 Novel U 0.016663662606099104 -0.09138042919438912 1.0 3742 -58182 Prokr1 prokineticin receptor 1 Novel U 0.01666321285757489 -0.09138508767481825 1.0 3743 -13611 S1pr4 sphingosine-1-phosphate receptor 4 Novel U 0.01666137459583537 -0.09140412832948658 1.0 3744 -670558 H60c histocompatibility 60c Novel U 0.016650405598121983 -0.09151774484721548 1.0 3745 -70729 Nos1ap nitric oxide synthase 1 (neuronal) adaptor protein Novel U 0.016645639494253114 -0.09156711199441199 1.0 3746 -232807 Ppp1r12c protein phosphatase 1, regulatory subunit 12C Novel U 0.016644346886989212 -0.09158050077795932 1.0 3747 -216438 Marchf9 membrane associated ring-CH-type finger 9 Novel U 0.016628323622119117 -0.0917464692287473 1.0 3748 -16513 Kcnj10 potassium inwardly-rectifying channel, subfamily J, member 10 Novel U 0.016626450588974925 -0.0917658700444822 1.0 3749 -73130 Tmed5 transmembrane p24 trafficking protein 5 Novel U 0.01660660165098313 -0.09197146469170252 1.0 3750 -404336 Or2y10 olfactory receptor family 2 subfamily Y member 10 Novel U 0.016594675493744708 -0.0920949954363268 1.0 3751 -435206 Taar7d trace amine-associated receptor 7D Novel U 0.016585804987222355 -0.09218687585128313 1.0 3752 -21899 Tlr6 toll-like receptor 6 Novel U 0.016580325507622482 -0.09224363212085042 1.0 3753 -259161 Or56b34 olfactory receptor family 56 subfamily B member 34 Novel U 0.016564491697501925 -0.09240763820557069 1.0 3754 -259112 Or10g9 olfactory receptor family 10 subfamily G member 9 Novel U 0.01655700246985798 -0.09248521137931157 1.0 3755 -11549 Adra1a adrenergic receptor, alpha 1a Novel U 0.01655300165378768 -0.09252665170064799 1.0 3756 -258060 Or4p20 olfactory receptor family 4 subfamily P member 20 Novel U 0.016547731930494608 -0.09258123532128482 1.0 3757 -235248 Or8g33 olfactory receptor family 8 subfamily G member 33 Novel U 0.016547278919562924 -0.09258592759362326 1.0 3758 -57765 Tbx21 T-box 21 Novel U 0.016533359628885514 -0.09273010314888784 1.0 3759 -75097 Ube2dnl2 ubiquitin-conjugating enzyme E2D N-terminal like 2 Novel U 0.01653267986145228 -0.09273714415761514 1.0 3760 -110786 Iglc2 immunoglobulin lambda constant 2 Novel U 0.016524446669875684 -0.09282242328531391 1.0 3761 -258613 Or14c39 olfactory receptor family 14 subfamily C member 39 Novel U 0.016524371916089454 -0.09282319758257429 1.0 3762 -69810 Clec4b1 C-type lectin domain family 4, member b1 Novel U 0.016522724145417538 -0.09284026513702645 1.0 3763 -56069 Il17b interleukin 17B Novel N 0.01652035556373191 -0.09286479882826328 1.0 3764 -258971 Or4a71 olfactory receptor family 4 subfamily A member 71 Novel U 0.016518613867754488 -0.09288283925794223 1.0 3765 -66871 Cpne8 copine VIII Novel U 0.016515124081239254 -0.09291898635194647 1.0 3766 -404327 Or10ag52 olfactory receptor family 10 subfamily AG member 52 Novel U 0.0165106910300378 -0.09296490375056242 1.0 3767 -105445 Dock9 dedicator of cytokinesis 9 Novel U 0.016508182989043718 -0.09299088195673172 1.0 3768 -18793 Plaur plasminogen activator, urokinase receptor Novel U 0.01650397267515837 -0.09303449224954954 1.0 3769 -338368 Pheta2 PH domain containing endocytic trafficking adaptor 2 Novel U 0.016503928784060488 -0.09303494687209855 1.0 3770 -12332 Capg capping actin protein, gelsolin like Novel U 0.016502251366230125 -0.09305232151084332 1.0 3771 -15563 Htr5a 5-hydroxytryptamine (serotonin) receptor 5A Novel N 0.016499207006313344 -0.09308385489078339 1.0 3772 -16622 Klk1b5 kallikrein 1-related peptidase b5 Novel U 0.016494112763431303 -0.09313662089109136 1.0 3773 -18214 Ddr2 discoidin domain receptor family, member 2 Novel U 0.016465698156134804 -0.0934309384593886 1.0 3774 -235441 Usp3 ubiquitin specific peptidase 3 Novel N 0.016464288535174655 -0.09344553926695502 1.0 3775 -75547 Akap13 A kinase anchor protein 13 Novel U 0.01644564700882148 -0.09363862758411405 1.0 3776 -12489 Cd33 CD33 molecule Novel U 0.016433823739159078 -0.09376109262260815 1.0 3777 -22422 Wnt7b wingless-type MMTV integration site family, member 7B Novel U 0.01643244436672758 -0.09377538011690918 1.0 3778 -56445 Dnaja2 DnaJ heat shock protein family (Hsp40) member A2 Novel U 0.016415905018413078 -0.093946694143049 1.0 3779 -14739 S1pr2 sphingosine-1-phosphate receptor 2 Novel U 0.01641242052756153 -0.09398278638474288 1.0 3780 -666907 Ms4a4a membrane-spanning 4-domains, subfamily A, member 4A Novel U 0.01640989731994154 -0.09400892168632473 1.0 3781 -258521 Or7e169 olfactory receptor family 7 subfamily E member 169 Novel U 0.016409695790713608 -0.09401100911944275 1.0 3782 -192188 Stab2 stabilin 2 Novel U 0.01640481075653655 -0.09406160814286187 1.0 3783 -258055 Or6b13 olfactory receptor family 6 subfamily B member 13 Novel U 0.01640447918358804 -0.09406504256456266 1.0 3784 -18367 Or51b4 olfactory receptor family 51 subfamily B member 4 Novel U 0.016398853398524746 -0.09412331426131054 1.0 3785 -79202 Tnfrsf22 tumor necrosis factor receptor superfamily, member 22 Novel U 0.016381169995179357 -0.09430647837185151 1.0 3786 -327799 Usp44 ubiquitin specific peptidase 44 Novel U 0.016377348964984346 -0.09434605647700184 1.0 3787 -12361 Cask calcium/calmodulin dependent serine protein kinase Novel U 0.016375903627226494 -0.09436102723798474 1.0 3788 -258881 Or10j3b olfactory receptor family 10 subfamily J member 3B Novel U 0.016375370017731337 -0.09436655434759411 1.0 3789 -259088 Or51k1 olfactory receptor family 51 subfamily K member 1 Novel U 0.016351717038809176 -0.09461155112572005 1.0 3790 -637515 Nlrp1b NLR family, pyrin domain containing 1B Novel U 0.016345330814742477 -0.09467769942466712 1.0 3791 -13860 Eps8 epidermal growth factor receptor pathway substrate 8 Novel N 0.016339051825181798 -0.09474273699212597 1.0 3792 -80517 Herpud2 HERPUD family member 2 Novel U 0.016338953619314197 -0.09474375420527424 1.0 3793 -68795 Ubr3 ubiquitin protein ligase E3 component n-recognin 3 Novel U 0.016316442383306894 -0.09497692484782086 1.0 3794 -67838 Dnajb11 DnaJ heat shock protein family (Hsp40) member B11 Novel N 0.016313491175951177 -0.09500749335659567 1.0 3795 -258454 Or4c105 olfactory receptor family 4 subfamily C member 105 Novel U 0.016307976005308186 -0.09506461931281429 1.0 3796 -327978 Slfn5 schlafen 5 Novel U 0.016307724646718837 -0.09506722287681979 1.0 3797 -69296 Tmigd3 transmembrane and immunoglobulin domain containing 3 Novel U 0.016298899741106928 -0.09515863095904481 1.0 3798 -110784 Nr3c2 nuclear receptor subfamily 3, group C, member 2 Novel N 0.01629296836102114 -0.09522006799898977 1.0 3799 -22260 Nr1h2 nuclear receptor subfamily 1, group H, member 2 Novel U 0.016220301021037685 -0.09597275391772829 1.0 3800 -53320 Folh1 folate hydrolase 1 Novel N 0.01621705225759451 -0.09600640450267534 1.0 3801 -67116 Cuedc2 CUE domain containing 2 Novel U 0.016214995092312223 -0.09602771255304361 1.0 3802 -243655 Klre1 killer cell lectin-like receptor family E member 1 Novel U 0.01620703928499719 -0.09611011854367967 1.0 3803 -67488 Calcoco1 calcium binding and coiled coil domain 1 Novel N 0.01620288323965698 -0.09615316672469092 1.0 3804 -233046 Rasgrp4 RAS guanyl releasing protein 4 Novel U 0.016201373125558017 -0.09616880843688565 1.0 3805 -19697 Rela v-rel reticuloendotheliosis viral oncogene homolog A (avian) Novel U 0.016199049154621465 -0.09619288005145002 1.0 3806 -258351 Or51k2 olfactory receptor family 51 subfamily K member 2 Novel U 0.01619322310135073 -0.09625322611970712 1.0 3807 -22141 Tub TUB bipartite transcription factor Novel U 0.01617778550582231 -0.09641312822670685 1.0 3808 -258678 Or5a3 olfactory receptor family 5 subfamily A member 3 Novel U 0.016171901988609648 -0.09647406950458541 1.0 3809 -101358 Fbxl14 F-box and leucine-rich repeat protein 14 Novel U 0.01616780421045725 -0.09651651415598075 1.0 3810 -70192 Cd209g CD209g antigen Novel U 0.016166889368512582 -0.09652599005876981 1.0 3811 -16572 Kif5a kinesin family member 5A Novel N 0.016152963630763698 -0.09667023239258879 1.0 3812 -276865 Or2y6 olfactory receptor family 2 subfamily Y member 6 Novel U 0.016150603877644998 -0.09669467463781957 1.0 3813 -18761 Prkcq protein kinase C, theta Novel U 0.016145119984641194 -0.0967514766212797 1.0 3814 -100609 Nsun5 NOL1/NOP2/Sun domain family, member 5 Novel N 0.01614186638996091 -0.09678517724802194 1.0 3815 -20723 Serpinb9 serine (or cysteine) peptidase inhibitor, clade B, member 9 Novel U 0.016129137509785608 -0.0969170225704383 1.0 3816 -17921 Myo7a myosin VIIA Novel U 0.01612650006689771 -0.09694434111716987 1.0 3817 -77090 Ocel1 occludin/ELL domain containing 1 Novel U 0.01612420350700821 -0.09696812880900998 1.0 3818 -55994 Smad9 SMAD family member 9 Novel U 0.01612202123575163 -0.09699073270294734 1.0 3819 -213450 Wmp WAVE homology in membrane protrusions Novel U 0.016117265160983853 -0.09703999596904443 1.0 3820 -13041 Ctsw cathepsin W Novel N 0.016113944895361786 -0.09707438717120995 1.0 3821 -258837 Or55b10 olfactory receptor family 55 subfamily B member 10 Novel U 0.016106877836054228 -0.09714758753920058 1.0 3822 -20557 Slfn3 schlafen 3 Novel U 0.01610459833072303 -0.09717119858048642 1.0 3823 -257875 Or10ag54 olfactory receptor family 10 subfamily AG member 54 Novel U 0.016095520087238625 -0.09726523072806673 1.0 3824 -15550 Htr1a 5-hydroxytryptamine (serotonin) receptor 1A Novel N 0.016094162903549723 -0.09727928839210134 1.0 3825 -237310 Il22ra2 interleukin 22 receptor, alpha 2 Novel U 0.016089873857692734 -0.09732371418809325 1.0 3826 -30938 Fgd3 FYVE, RhoGEF and PH domain containing 3 Novel U 0.01608830566758013 -0.09733995744972813 1.0 3827 -78906 Misp mitotic spindle positioning Novel U 0.016077882344373316 -0.09744792188885602 1.0 3828 -258542 Or6c1b olfactory receptor family 6 subfamily C member 1B Novel U 0.01607747922295348 -0.09745209740727077 1.0 3829 -258533 Or2w2 olfactory receptor family 2 subfamily W member 2 Novel U 0.016056198834326775 -0.09767251897311109 1.0 3830 -226352 Epb41l5 erythrocyte membrane protein band 4.1 like 5 Novel U 0.016040781594426394 -0.09783221023718479 1.0 3831 -635253 Usp51 ubiquitin specific protease 51 Novel N 0.016029783771343894 -0.09794612532713937 1.0 3832 -238055 Apob apolipoprotein B Novel U 0.016028701671041565 -0.09795733368649875 1.0 3833 -12525 Cd8a CD8 subunit alpha Novel U 0.016022963836055493 -0.09801676599266332 1.0 3834 -69654 Dctn2 dynactin 2 Novel U 0.016016950350645567 -0.09807905347685665 1.0 3835 -68991 Ssu72 Ssu72 RNA polymerase II CTD phosphatase homolog (yeast) Novel N 0.01601668198642975 -0.0980818331845821 1.0 3836 -18313 Or10j5 olfactory receptor family 10 subfamily J member 5 Novel U 0.01600864343977615 -0.0981650961865671 1.0 3837 -240832 Tor1aip2 torsin A interacting protein 2 Novel U 0.01600850021398899 -0.09816657971456218 1.0 3838 -66674 Spryd7 SPRY domain containing 7 Novel U 0.016006118313694542 -0.09819125135951133 1.0 3839 -72053 Tmub2 transmembrane and ubiquitin-like domain containing 2 Novel U 0.01600487819769044 -0.0982040964403152 1.0 3840 -20971 Sdc4 syndecan 4 Novel U 0.015987005646338794 -0.09838921973968708 1.0 3841 -258440 Or4f47 olfactory receptor family 4 subfamily F member 47 Novel U 0.015978690852916106 -0.09847534409662517 1.0 3842 -26921 Map4k4 mitogen-activated protein kinase kinase kinase kinase 4 Novel N 0.015972736068775657 -0.09853702355499896 1.0 3843 -574417 Tas2r137 taste receptor, type 2, member 137 Novel N 0.015966689218218328 -0.09859965663429227 1.0 3844 -259122 Or51q1 olfactory receptor family 51 subfamily Q member 1 Novel U 0.015965720093265346 -0.09860969479869698 1.0 3845 -19883 Rora RAR-related orphan receptor alpha Novel U 0.015963862094243976 -0.09862893989148191 1.0 3846 -12737 Cldn1 claudin 1 Novel U 0.015957513832648467 -0.09869469497640034 1.0 3847 -76707 Clasp1 CLIP associating protein 1 Novel U 0.015948898941811073 -0.09878392773249478 1.0 3848 -13169 Dbnl drebrin-like Novel U 0.015941968501998017 -0.09885571300025248 1.0 3849 -24109 Ubl3 ubiquitin-like 3 Novel U 0.015929662929603107 -0.09898317371459506 1.0 3850 -13009 Csrp3 cysteine and glycine-rich protein 3 Novel U 0.01592410130139579 -0.09904078087673776 1.0 3851 -380714 Rph3al rabphilin 3A-like (without C2 domains) Novel U 0.015921065258332808 -0.09907222811097958 1.0 3852 -258698 Or5b97 olfactory receptor family 5 subfamily B member 97 Novel U 0.01592002335797224 -0.09908302008066372 1.0 3853 -54401 Ywhab tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, beta polypeptide Novel U 0.015909033230297905 -0.0991968554618335 1.0 3854 -22193 Ube2e3 ubiquitin-conjugating enzyme E2E 3 Novel U 0.015901888396928073 -0.09927086141100447 1.0 3855 -21390 Tbxa2r thromboxane A2 receptor Novel N 0.01590116373109935 -0.09927836747583628 1.0 3856 -16593 Klc1 kinesin light chain 1 Novel U 0.015899591580874183 -0.0992946517561869 1.0 3857 -65019 Rpl23 ribosomal protein L23 Novel U 0.015896806511823243 -0.09932349940986233 1.0 3858 -16334 Ins2 insulin II Novel U 0.015895126909865526 -0.09934089667172642 1.0 3859 -620648 Prp2rt proteolipid protein 2, retrotransposed Novel U 0.015894769240490807 -0.09934460139935201 1.0 3860 -15559 Htr2b 5-hydroxytryptamine (serotonin) receptor 2B Novel U 0.015894281175239413 -0.09934965676318168 1.0 3861 -244595 Ces1a carboxylesterase 1A Novel U 0.015888512945523334 -0.09940940389696049 1.0 3862 -67128 Ube2g1 ubiquitin-conjugating enzyme E2G 1 Novel U 0.015887216829175838 -0.09942282902748031 1.0 3863 -17128 Smad4 SMAD family member 4 Novel U 0.015883578927476383 -0.0994605102936937 1.0 3864 -16202 Ilk integrin linked kinase Novel U 0.015874094166838496 -0.09955875313258622 1.0 3865 -80857 Fgf20 fibroblast growth factor 20 Novel U 0.015872293824427515 -0.09957740102009609 1.0 3866 -104759 Pld4 phospholipase D family member 4 Novel U 0.015867478442209725 -0.0996272785908108 1.0 3867 -668155 Rnf26rt ring finger protein 26, retrotransposed Novel U 0.01585591572358976 -0.09974704485017251 1.0 3868 -17112 Tm4sf1 transmembrane 4 superfamily member 1 Novel U 0.01585108639818088 -0.09979706684400215 1.0 3869 -258544 Or6c3 olfactory receptor family 6 subfamily C member 3 Novel U 0.015843057305680964 -0.09988023192017409 1.0 3870 -26951 Zw10 zw10 kinetochore protein Novel U 0.01583938000399811 -0.0999183212901203 1.0 3871 -117004 Or5d18 olfactory receptor family 5 subfamily D member 18 Novel U 0.01583801473546087 -0.09993246269674826 1.0 3872 -19299 Abcd3 ATP-binding cassette, sub-family D member 3 Novel U 0.015822462642813808 -0.10009355076113902 1.0 3873 -258427 Or5ak23 olfactory receptor family 5 subfamily AK member 23 Novel U 0.01581478555773059 -0.10017306975606043 1.0 3874 -100210 Gpn2 GPN-loop GTPase 2 Novel U 0.015810359666250873 -0.10021891299451396 1.0 3875 -71169 Nbas neuroblastoma amplified sequence Novel U 0.015809017606980533 -0.10023281400031833 1.0 3876 -24055 Sh3bp2 SH3-domain binding protein 2 Novel U 0.01579571741184878 -0.10037057698427265 1.0 3877 -14227 Fkbp2 FK506 binding protein 2 Novel U 0.015791164836570844 -0.10041773240934368 1.0 3878 -238799 Tnpo1 transportin 1 Novel U 0.015789627575390063 -0.10043365531011947 1.0 3879 -69239 Pdzph1 PDZ and pleckstrin homology domains 1 Novel U 0.015780326021974687 -0.10053000049462384 1.0 3880 -237868 Sarm1 sterile alpha and HEAT/Armadillo motif containing 1 Novel U 0.015774309094852564 -0.10059232362795896 1.0 3881 -258592 Or2ag15 olfactory receptor family 2 subfamily AG member 15 Novel U 0.01575285056882075 -0.10081459033518544 1.0 3882 -103968 Plin1 perilipin 1 Novel N 0.0157525266473093 -0.1008179455035527 1.0 3883 -545648 Gm13272 predicted gene 13272 Novel U 0.015745226205768136 -0.10089356323704698 1.0 3884 -321006 Dcaf1 DDB1 and CUL4 associated factor 1 Novel U 0.015743652150533645 -0.10090986724942157 1.0 3885 -17754 Map1a microtubule-associated protein 1 A Novel U 0.015738258292566386 -0.1009657366529329 1.0 3886 -258541 Or6c210 olfactory receptor family 6 subfamily C member 210 Novel U 0.015728332914474168 -0.10106854339293288 1.0 3887 -226101 Myof myoferlin Novel N 0.015709304425205052 -0.10126563985925449 1.0 3888 -258097 Or9q1 olfactory receptor family 9 subfamily Q member 1 Novel U 0.015695784339302635 -0.10140568046458283 1.0 3889 -227789 Or12k5 olfactory receptor family 12 subfamily K member 5 Novel U 0.015694739560073775 -0.10141650225349011 1.0 3890 -258960 Or2aj6 olfactory receptor family 2 subfamily AJ member 6 Novel U 0.01569391829983293 -0.10142500884006729 1.0 3891 -27414 Sergef secretion regulating guanine nucleotide exchange factor Novel U 0.015690385842457147 -0.10146159791744239 1.0 3892 -258993 Or5ac24 olfactory receptor family 5 subfamily AC member 24 Novel U 0.015686290060714727 -0.1015040218900888 1.0 3893 -73297 Fundc2b FUN14 domain containing 2B Novel U 0.01568423522266532 -0.10152530583505537 1.0 3894 -258564 Or9g4b olfactory receptor family 9 subfamily G member 4B Novel U 0.015665817467260115 -0.10171607634009142 1.0 3895 -17888 Myh6 myosin, heavy polypeptide 6, cardiac muscle, alpha Novel U 0.015660680361491108 -0.10176928631277353 1.0 3896 -20725 Serpinb8 serine (or cysteine) peptidase inhibitor, clade B, member 8 Novel U 0.01565884879583015 -0.10178825760968024 1.0 3897 -94044 Bcl2l13 BCL2 like 13 Novel U 0.015654981722671248 -0.10182831262633699 1.0 3898 -13824 Epb41l4a erythrocyte membrane protein band 4.1 like 4a Novel U 0.015638118234207646 -0.10200298408548565 1.0 3899 -258242 Or8g35 olfactory receptor family 8 subfamily G member 35 Novel U 0.015626490873475396 -0.1021234199057214 1.0 3900 -69189 Mcemp1 mast cell expressed membrane protein 1 Novel U 0.015623441931955305 -0.10215500074175794 1.0 3901 -22145 Tuba4a tubulin, alpha 4A Novel N 0.015608031933838683 -0.10231461699567351 1.0 3902 -381924 Itgad integrin, alpha D Novel N 0.01560223272170748 -0.10237468504428968 1.0 3903 -75870 Tcam1 testicular cell adhesion molecule 1 Novel U 0.015564474072749204 -0.10276578788895079 1.0 3904 -68810 Nexn nexilin Novel N 0.015562122934775258 -0.10279014089879542 1.0 3905 -258979 Or4c12b olfactory receptor family 4 subfamily C member 12B Novel U 0.015558325399988596 -0.10282947563927844 1.0 3906 -14165 Fgf10 fibroblast growth factor 10 Novel U 0.015557780410782637 -0.1028351206195582 1.0 3907 -13982 Esr1 estrogen receptor 1 (alpha) Novel U 0.015553636630888821 -0.10287804175547892 1.0 3908 -68428 Steap3 STEAP family member 3 Novel U 0.01553165645698342 -0.10310571167423178 1.0 3909 -14469 Gbp2 guanylate binding protein 2 Novel U 0.015528863460817702 -0.10313464143670148 1.0 3910 -258699 Or5b96 olfactory receptor family 5 subfamily B member 96 Novel U 0.015527833244278332 -0.10314531238574973 1.0 3911 -14131 Fcgr3 Fc receptor, IgG, low affinity III Novel U 0.015516540015997492 -0.10326228727303778 1.0 3912 -258326 Or51a10 olfactory receptor family 51 subfamily A member 10 Novel U 0.015505844552318189 -0.10337307053423357 1.0 3913 -22151 Tubb2a tubulin, beta 2A class IIA Novel N 0.015489743629572532 -0.10353984336274377 1.0 3914 -64295 Tmub1 transmembrane and ubiquitin-like domain containing 1 Novel U 0.015486608745347451 -0.10357231439049339 1.0 3915 -23807 Arih2 ariadne RBR E3 ubiquitin protein ligase 2 Novel U 0.01547259333550568 -0.10371748554490268 1.0 3916 -67972 Atp2b1 ATPase, Ca++ transporting, plasma membrane 1 Novel N 0.015443202033960836 -0.10402191968011718 1.0 3917 -258269 Or8d23 olfactory receptor family 8 subfamily D member 23 Novel U 0.015430817451623446 -0.10415019877684664 1.0 3918 -258318 Or5h18 olfactory receptor family 5 subfamily H member 18 Novel U 0.015415280143771968 -0.10431113370081077 1.0 3919 -629524 Or10ad1b olfactory receptor family 10 subfamily AD member 1B Novel U 0.015388158128835403 -0.1045920626399355 1.0 3920 -258652 Or5w11 olfactory receptor family 5 subfamily W member 11 Novel U 0.015387260138808413 -0.10460136399111523 1.0 3921 -268977 Ltbp1 latent transforming growth factor beta binding protein 1 Novel U 0.015384995034119534 -0.10462482587102134 1.0 3922 -381260 Gm973 predicted gene 973 Novel U 0.015379004855859295 -0.1046868719405244 1.0 3923 -258924 Or1e1c olfactory receptor family 1 subfamily E member 1C Novel U 0.015371461591667475 -0.1047650048230518 1.0 3924 -57251 Or8b12i olfactory receptor family 8 subfamily B member 12I Novel U 0.01536270636882365 -0.10485569113345569 1.0 3925 -271564 Vps13a vacuolar protein sorting 13A Novel U 0.015362421955617147 -0.10485863707609908 1.0 3926 -67338 Rffl ring finger and FYVE like domain containing protein Novel U 0.015360758811416604 -0.10487586386905538 1.0 3927 -19720 Trim27 tripartite motif-containing 27 Novel U 0.015356830310764145 -0.10491655514967105 1.0 3928 -67615 Ube2r2 ubiquitin-conjugating enzyme E2R 2 Novel U 0.015355432229490564 -0.10493103642954335 1.0 3929 -67466 Pdcl phosducin-like Novel U 0.015353431849738046 -0.10495175629726099 1.0 3930 -107746 Rapgef1 Rap guanine nucleotide exchange factor (GEF) 1 Novel U 0.015330321378980225 -0.1051911337936547 1.0 3931 -63958 Ube4b ubiquitination factor E4B Novel U 0.0153142648288642 -0.10535744701192583 1.0 3932 -13380 Dkk1 dickkopf WNT signaling pathway inhibitor 1 Novel U 0.015309362641869271 -0.10540822370366859 1.0 3933 -12550 Cdh1 cadherin 1 Novel U 0.015298550803772216 -0.10552021236725785 1.0 3934 -13488 Drd1 dopamine receptor D1 Novel U 0.015290202515628269 -0.10560668366141768 1.0 3935 -14602 Ghrhr growth hormone releasing hormone receptor Novel U 0.015289541467932 -0.10561353077172485 1.0 3936 -326618 Tpm4 tropomyosin 4 Novel N 0.015282790400703796 -0.10568345810414521 1.0 3937 -258630 Or5w17 olfactory receptor family 5 subfamily W member 17 Novel U 0.015281379133836342 -0.1056980759599654 1.0 3938 -27412 Peg12 paternally expressed 12 Novel U 0.01527860599420415 -0.10572680004911358 1.0 3939 -97848 Serpinb6c serine (or cysteine) peptidase inhibitor, clade B, member 6c Novel U 0.01527447608316579 -0.1057695775318854 1.0 3940 -14727 Lilrb4b leukocyte immunoglobulin-like receptor, subfamily B, member 4B Novel U 0.015269168706043326 -0.10582455116964927 1.0 3941 -20821 Trim21 tripartite motif-containing 21 Novel U 0.01526394756471566 -0.10587863157988546 1.0 3942 -503558 Taar9 trace amine-associated receptor 9 Novel U 0.015259374891083035 -0.10592599518305364 1.0 3943 -258793 Or9i1 olfactory receptor family 9 subfamily I member 1 Novel U 0.015254664618105842 -0.10597478403570952 1.0 3944 -74596 Cds1 CDP-diacylglycerol synthase 1 Novel U 0.015254422614243687 -0.10597729070375828 1.0 3945 -13614 Edn1 endothelin 1 Novel U 0.015251104496969646 -0.10601165965340556 1.0 3946 -226144 Erlin1 ER lipid raft associated 1 Novel U 0.015247342073356446 -0.10605063071350807 1.0 3947 -258305 Or7c70 olfactory receptor family 7 subfamily C member 70 Novel U 0.015241526060461155 -0.10611087278388637 1.0 3948 -258339 Or4x6 olfactory receptor family 4 subfamily X member 6 Novel U 0.015232337932878724 -0.10620604310734176 1.0 3949 -13492 Drd5 dopamine receptor D5 Novel U 0.015225119329355618 -0.10628081316533529 1.0 3950 -20720 Serpine2 serine (or cysteine) peptidase inhibitor, clade E, member 2 Novel U 0.01522410517894351 -0.10629131770196551 1.0 3951 -77048 Cep83 centrosomal protein 83 Novel U 0.015217295948398836 -0.10636184748810584 1.0 3952 -210029 Metrnl meteorin, glial cell differentiation regulator-like Novel U 0.015212721532285586 -0.10640922913983106 1.0 3953 -258247 Or51a24 olfactory receptor family 51 subfamily A member 24 Novel U 0.015207679330078718 -0.10646145610453633 1.0 3954 -74764 Klc4 kinesin light chain 4 Novel U 0.015206017245415 -0.10647867192284503 1.0 3955 -258410 Or5ae2 olfactory receptor family 5 subfamily AE member 2 Novel U 0.015200978302735148 -0.10653086512547662 1.0 3956 -110651 Rps6ka3 ribosomal protein S6 kinase polypeptide 3 Novel U 0.01517539737156171 -0.10679583156964327 1.0 3957 -74257 Tspan17 tetraspanin 17 Novel U 0.015171828878978527 -0.10683279389851201 1.0 3958 -14166 Fgf11 fibroblast growth factor 11 Novel N 0.015167087982000248 -0.10688189995356444 1.0 3959 -18018 Nfatc1 nuclear factor of activated T cells, cytoplasmic, calcineurin dependent 1 Novel N 0.015162942266437433 -0.106924841139081 1.0 3960 -64214 Rgs18 regulator of G-protein signaling 18 Novel N 0.015149684313273496 -0.10706216658212134 1.0 3961 -22417 Wnt4 wingless-type MMTV integration site family, member 4 Novel U 0.015148637218100025 -0.10707301235950675 1.0 3962 -258370 Or4a80 olfactory receptor family 4 subfamily A member 80 Novel U 0.015145973376252087 -0.10710060434579861 1.0 3963 -14065 F2rl3 F2R like thrombin or trypsin receptor 3 Novel U 0.015144159939144402 -0.10711938786774648 1.0 3964 -170720 Card14 caspase recruitment domain family, member 14 Novel U 0.015143395161966675 -0.10712730940461268 1.0 3965 -258787 Or4a75 olfactory receptor family 4 subfamily A member 75 Novel U 0.015133725470783189 -0.10722746774801725 1.0 3966 -230405 Ifne interferon epsilon Novel U 0.015126277592469272 -0.10730461262675699 1.0 3967 -58803 Pga5 pepsinogen 5, group I Novel U 0.01512492003320681 -0.10731867418097021 1.0 3968 -23943 Esyt1 extended synaptotagmin-like protein 1 Novel N 0.01511669030061722 -0.1074039174805953 1.0 3969 -329693 Fcrl5 Fc receptor-like 5 Novel U 0.015112829282351746 -0.10744390978086495 1.0 3970 -18655 Pgk1 phosphoglycerate kinase 1 Novel U 0.015107591119348191 -0.10749816650106044 1.0 3971 -258553 Or7e176 olfactory receptor family 7 subfamily E member 176 Novel U 0.015103946849868346 -0.10753591372453376 1.0 3972 -71461 Ptk7 PTK7 protein tyrosine kinase 7 Novel U 0.015103737421074926 -0.10753808298109141 1.0 3973 -338355 Fkbp15 FK506 binding protein 15 Novel U 0.015102132120419198 -0.10755471063251203 1.0 3974 -21808 Tgfb2 transforming growth factor, beta 2 Novel U 0.015085284608633386 -0.10772921660575735 1.0 3975 -100535 Oas1d 2'-5' oligoadenylate synthetase 1D Novel U 0.015084438823998058 -0.1077379772152064 1.0 3976 -19043 Ppm1b protein phosphatase 1B, magnesium dependent, beta isoform Novel U 0.01508290754804681 -0.10775383812117144 1.0 3977 -259113 Or51g2 olfactory receptor family 51 subfamily G member 2 Novel U 0.015080259391711587 -0.10778126763743823 1.0 3978 -109050 Inka2 inka box actin regulator 2 Novel U 0.015079629376991073 -0.1077877933092027 1.0 3979 -192650 Cabp7 calcium binding protein 7 Novel U 0.015079505730850283 -0.10778907403186436 1.0 3980 -239318 Plcxd3 phosphatidylinositol-specific phospholipase C, X domain containing 3 Novel U 0.01507232582153116 -0.10786344329656503 1.0 3981 -257921 Or4c15b olfactory receptor family 4 subfamily C member 15B Novel U 0.015065478482718402 -0.10793436780689343 1.0 3982 -20811 Srms src-related kinase lacking C-terminal regulatory tyrosine and N-terminal myristylation sites Novel U 0.015059720376970412 -0.10799401007694359 1.0 3983 -17085 Ly9 lymphocyte antigen 9 Novel U 0.01505416867586889 -0.10805151441445081 1.0 3984 -57912 Cdc42se1 CDC42 small effector 1 Novel N 0.01503663176699409 -0.10823316114008116 1.0 3985 -26414 Mapk10 mitogen-activated protein kinase 10 Novel U 0.015036141490169031 -0.10823823941131813 1.0 3986 -73835 Ifitm5 interferon induced transmembrane protein 5 Novel N 0.01502713304131659 -0.10833154862839492 1.0 3987 -257961 Or5bb10 olfactory receptor family 5 subfamily BB member 10 Novel U 0.0150146228635238 -0.1084611286387227 1.0 3988 -71673 Rnf215 ring finger protein 215 Novel U 0.01501267313287838 -0.10848132388465401 1.0 3989 -68035 Rbm42 RNA binding motif protein 42 Novel U 0.015010453060722866 -0.10850431931905989 1.0 3990 -258101 Or5w14 olfactory receptor family 5 subfamily W member 14 Novel U 0.015006671729908895 -0.10854348621932644 1.0 3991 -15061 Ifi44l interferon-induced protein 44 like Novel U 0.014986913312633675 -0.10874814325594019 1.0 3992 -258281 Or6c68 olfactory receptor family 6 subfamily C member 68 Novel U 0.014986886512474151 -0.10874842085111153 1.0 3993 -20460 Stil Scl/Tal1 interrupting locus Novel U 0.014976016694366972 -0.10886101006973968 1.0 3994 -258586 Or5as1 olfactory receptor family 5 subfamily AS member 1 Novel U 0.01497264476237886 -0.10889593643042625 1.0 3995 -18034 Nfkb2 nuclear factor of kappa light polypeptide gene enhancer in B cells 2, p49/p100 Novel U 0.014955307596572525 -0.10907551422391963 1.0 3996 -11650 Alppl2 alkaline phosphatase, placental-like 2 Novel U 0.014955184813268827 -0.10907678600934305 1.0 3997 -258327 Or10d3 olfactory receptor family 10 subfamily D member 3 Novel U 0.014951784540941116 -0.10911200591833556 1.0 3998 -20357 Sema5b sema domain, seven thrombospondin repeats (type 1 and type 1-like), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 5B Novel U 0.014942580079231877 -0.10920734543013948 1.0 3999 -59287 Ncstn nicastrin Novel N 0.01493721405530024 -0.10926292652962483 1.0 4000 -53379 Hnrnpa2b1 heterogeneous nuclear ribonucleoprotein A2/B1 Novel N 0.014915812592717886 -0.10948460217551767 1.0 4001 -630146 Cd101 CD101 antigen Novel N 0.014914054713552071 -0.10950281023013002 1.0 4002 -258350 Or2ag2 olfactory receptor family 2 subfamily AG member 2 Novel U 0.014913969879947307 -0.10950368893381941 1.0 4003 -259030 Or10ag58 olfactory receptor family 10 subfamily AG member 58 Novel U 0.014910158333088182 -0.10954316881088838 1.0 4004 -225358 Fam13b family with sequence similarity 13, member B Novel U 0.01490598007469015 -0.10958644707402233 1.0 4005 -102626 Mapkapk3 mitogen-activated protein kinase-activated protein kinase 3 Novel U 0.014902773862257497 -0.10961965691700121 1.0 4006 -19208 Ptcra pre T cell antigen receptor alpha Novel U 0.014887213592791135 -0.10978082967661748 1.0 4007 -54615 Npff neuropeptide FF-amide peptide precursor Novel N 0.014882696822881614 -0.10982761423085949 1.0 4008 -76415 Fam187b family with sequence similarity 187, member B Novel U 0.014876917566125247 -0.1098874755823591 1.0 4009 -12010 B2m beta-2 microglobulin Novel U 0.014876458267396257 -0.10989223298349536 1.0 4010 -56320 Dbn1 drebrin 1 Novel N 0.014871207123248171 -0.10994662416195916 1.0 4011 -18174 Slc11a2 solute carrier family 11 (proton-coupled divalent metal ion transporters), member 2 Novel U 0.014861640380505154 -0.1100457161688016 1.0 4012 -100503710 Gng14 G protein subunit gamma 14 Novel U 0.014861173005168784 -0.1100505572271716 1.0 4013 -225362 Reep2 receptor accessory protein 2 Novel U 0.01485926321305605 -0.11007033879109426 1.0 4014 -17773 Mtnr1a melatonin receptor 1A Novel N 0.014856628698919962 -0.11009762700191086 1.0 4015 -12508 Cd53 CD53 antigen Novel U 0.014843784609158877 -0.11023066566142949 1.0 4016 -258536 Or2b2b olfactory receptor family 2 subfamily B member 2B Novel U 0.014842190353011316 -0.11024717891419757 1.0 4017 -109019 Nabp1 nucleic acid binding protein 1 Novel U 0.014828899484842612 -0.11038484528977524 1.0 4018 -80889 Tlnrd1 talin rod domain containing 1 Novel U 0.014822266871315735 -0.11045354568265121 1.0 4019 -258598 Or7g16 olfactory receptor family 7 subfamily G member 16 Novel U 0.014812062762052587 -0.11055923951095688 1.0 4020 -258421 Or2aa1 olfactory receptor family 2 subfamily AA member 1 Novel U 0.014799930999732468 -0.11068489990625846 1.0 4021 -20182 Rxrb retinoid X receptor beta Novel N 0.01478395114692183 -0.11085041869636168 1.0 4022 -12038 Bche butyrylcholinesterase Novel U 0.014777267592867066 -0.11091964672955093 1.0 4023 -435791 Gm13271 predicted gene 13271 Novel U 0.014773718503043386 -0.11095640808527456 1.0 4024 -74486 Osbpl10 oxysterol binding protein-like 10 Novel U 0.014766556570265968 -0.1110305911495472 1.0 4025 -259105 Or52b3 olfactory receptor family 52 subfamily B member 3 Novel U 0.014766455782806128 -0.11103163510274301 1.0 4026 -17221 Cd46 CD46 antigen, complement regulatory protein Novel U 0.014763077343951719 -0.1110666288613368 1.0 4027 -245828 Trappc1 trafficking protein particle complex 1 Novel U 0.014751557658181414 -0.11118594938785634 1.0 4028 -404329 Or5d43 olfactory receptor family 5 subfamily D member 43 Novel U 0.014749460478639845 -0.11120767190460684 1.0 4029 -57262 Retnla resistin like alpha Novel U 0.014745122650482688 -0.11125260298606027 1.0 4030 -381287 Sp140l1 Sp140 nuclear body protein like 1 Novel U 0.014731368602327842 -0.11139506696470818 1.0 4031 -258880 Or10j3 olfactory receptor family 10 subfamily J member 3B Novel U 0.014725720891056702 -0.11145356577239614 1.0 4032 -192192 Shkbp1 Sh3kbp1 binding protein 1 Novel U 0.014724922421100206 -0.11146183629795724 1.0 4033 -258757 Or9g19 olfactory receptor family 9 subfamily G member 19 Novel U 0.014724070598100571 -0.11147065945258529 1.0 4034 -105785 Kdelr3 KDEL (Lys-Asp-Glu-Leu) endoplasmic reticulum protein retention receptor 3 Novel N 0.0147099493328169 -0.11161692705418196 1.0 4035 -19253 Ptpn18 protein tyrosine phosphatase, non-receptor type 18 Novel U 0.014708589987316903 -0.11163100711018485 1.0 4036 -234836 Il17c interleukin 17C Novel N 0.014702289203713552 -0.11169627041962127 1.0 4037 -100043022 Adrm1b adhesion regulating molecule 1B Novel U 0.014695855660370705 -0.11176290885007512 1.0 4038 -67976 Trabd TraB domain containing Novel U 0.014687920867483937 -0.111845097173954 1.0 4039 -228778 6820408C15Rik RIKEN cDNA 6820408C15 gene Novel U 0.01468303106272921 -0.1118957456108598 1.0 4040 -258236 Or1e31 olfactory receptor family 1 subfamily E member 31 Novel U 0.014669019256337233 -0.11204087944085457 1.0 4041 -258346 Or5w10 olfactory receptor family 5 subfamily W member 10 Novel U 0.01466011686303659 -0.11213309013801222 1.0 4042 -102098 Arhgef18 Rho/Rac guanine nucleotide exchange factor 18 Novel U 0.014659998430843355 -0.1121343168547765 1.0 4043 -13476 Reep5 receptor accessory protein 5 Novel U 0.014653679733541581 -0.11219976571371228 1.0 4044 -17470 Cd200 CD200 molecule Novel U 0.01465274914113013 -0.11220940475931851 1.0 4045 -70425 Csnk1g3 casein kinase 1, gamma 3 Novel N 0.014649953537657523 -0.11223836152818727 1.0 4046 -12970 Crygs crystallin, gamma S Novel N 0.014648191194423925 -0.11225661582146697 1.0 4047 -258719 Or10a3m olfactory receptor family 10 subfamily A member 3M Novel U 0.01464478978089104 -0.11229184755102514 1.0 4048 -258782 Or8b50 olfactory receptor family 8 subfamily B member 50 Novel U 0.014639271288617348 -0.11234900791258538 1.0 4049 -72512 Sting1 stimulator of interferon response cGAMP interactor 1 Novel U 0.014622722836210446 -0.112520416238615 1.0 4050 -214547 She src homology 2 domain-containing transforming protein E Novel U 0.014615855053584415 -0.11259155250528922 1.0 4051 -54131 Irf3 interferon regulatory factor 3 Novel U 0.014607410243459087 -0.1126790235709592 1.0 4052 -19220 Ptgfr prostaglandin F receptor Novel U 0.014601636427550425 -0.11273882856633714 1.0 4053 -228983 Osbpl2 oxysterol binding protein-like 2 Novel U 0.01458784621028994 -0.11288166718339228 1.0 4054 -13591 Ebf1 early B cell factor 1 Novel U 0.014556457170158165 -0.11320679382921808 1.0 4055 -102339 Cog4 component of oligomeric golgi complex 4 Novel U 0.014537889638506007 -0.11339911571169642 1.0 4056 -72046 Urgcp upregulator of cell proliferation Novel U 0.014535514954198326 -0.11342371261369184 1.0 4057 -17057 Klrb1a killer cell lectin-like receptor subfamily B member 1A Novel U 0.014529173773038487 -0.11348939435969035 1.0 4058 -258674 Or4z4 olfactory receptor family 4 subfamily Z member 4 Novel U 0.014518957693213768 -0.11359521217867925 1.0 4059 -56444 Actr10 ARP10 actin-related protein 10 Novel U 0.014513912308069796 -0.11364747211214242 1.0 4060 -631797 Fer1l6 fer-1 like family member 6 Novel U 0.014509023109099252 -0.11369811427435556 1.0 4061 -110911 Cds2 CDP-diacylglycerol synthase 2 Novel U 0.014494806166361623 -0.11384537289987509 1.0 4062 -258291 Or5d39 olfactory receptor family 5 subfamily D member 39 Novel U 0.014491112746162322 -0.1138836292248848 1.0 4063 -259124 Or51q1c olfactory receptor family 51 subfamily Q member 1C Novel U 0.01448398943167924 -0.11395741228213423 1.0 4064 -269700 Hectd4 HECT domain E3 ubiquitin protein ligase 4 Novel U 0.014466879231299636 -0.11413463917519862 1.0 4065 -74675 Ptchd3 patched domain containing 3 Novel U 0.014463049583300443 -0.11417430654328137 1.0 4066 -232086 Tmem150a transmembrane protein 150A Novel U 0.014458636537341887 -0.11422001672824902 1.0 4067 -100042849 Rbmyf1 RNA binding motif protein Y-linked family member 1 Novel U 0.014457213065724084 -0.11423476100047211 1.0 4068 -209354 Eif2b1 eukaryotic translation initiation factor 2B, subunit alpha Novel U 0.01444877250737178 -0.11432218802641686 1.0 4069 -13661 Ehf ets homologous factor Novel N 0.01444764252656886 -0.1143338923304274 1.0 4070 -19124 Procr protein C receptor, endothelial Novel N 0.014445118453989342 -0.11436003659123162 1.0 4071 -54483 Mefv Mediterranean fever Novel U 0.014441743622320258 -0.11439499298671839 1.0 4072 -69641 Wdr20 WD repeat domain 20 Novel U 0.014441607581606845 -0.11439640209195583 1.0 4073 -75847 Crppa CDP-L-ribitol pyrophosphorylase A Novel U 0.014439394817994607 -0.11441932182471069 1.0 4074 -210757 Themis thymocyte selection associated Novel U 0.014435107534137823 -0.1144637293699624 1.0 4075 -50754 Fbxw7 F-box and WD-40 domain protein 7 Novel U 0.014422332615354123 -0.11459605155877113 1.0 4076 -259159 Or52a24 olfactory receptor family 52 subfamily A member 24 Novel U 0.014419117587146212 -0.11462935271526031 1.0 4077 -258418 Or5p50 olfactory receptor family 5 subfamily P member 50 Novel U 0.014418114025526702 -0.1146397475735249 1.0 4078 -259095 Or51f2 olfactory receptor family 51 subfamily F member 2 Novel U 0.014416096271008677 -0.11466064740849248 1.0 4079 -20277 Scnn1b sodium channel, nonvoltage-gated 1 beta Novel U 0.014414785918197063 -0.11467421999983965 1.0 4080 -14710 Gngt2 guanine nucleotide binding protein (G protein), gamma transducing activity polypeptide 2 Novel U 0.014412841677703406 -0.11469435837895949 1.0 4081 -14004 Chchd2 coiled-coil-helix-coiled-coil-helix domain containing 2 Novel N 0.014410418933502521 -0.11471945308374883 1.0 4082 -22213 Ube2g2 ubiquitin-conjugating enzyme E2G 2 Novel U 0.01440846321997213 -0.114739710300206 1.0 4083 -108911 Rcc2 regulator of chromosome condensation 2 Novel U 0.014397794937962954 -0.11485021201455617 1.0 4084 -258945 Or1j18 olfactory receptor family 1 subfamily J member 18 Novel U 0.01439497818741983 -0.11487938782408615 1.0 4085 -12983 Csf2rb colony stimulating factor 2 receptor, beta, low-affinity (granulocyte-macrophage) Novel U 0.014393331677259726 -0.11489644232219841 1.0 4086 -67763 Prpsap1 phosphoribosyl pyrophosphate synthetase-associated protein 1 Novel N 0.014391814629190381 -0.11491215585623041 1.0 4087 -235439 Herc1 HECT and RLD domain containing E3 ubiquitin protein ligase family member 1 Novel U 0.014391562553189708 -0.11491476685115884 1.0 4088 -234290 BC030500 cDNA sequence BC030500 Novel U 0.014389914354195553 -0.11493183884215867 1.0 4089 -69470 Tmem127 transmembrane protein 127 Novel U 0.014388580005703075 -0.11494565997997941 1.0 4090 -258406 Or4d2b olfactory receptor family 4 subfamily D member 2B Novel U 0.014387479574172378 -0.11495705821359964 1.0 4091 -57438 Marchf7 membrane associated ring-CH-type finger 7 Novel U 0.014382229765822247 -0.11501143555591213 1.0 4092 -436440 Gpr31b G protein-coupled receptor 31, D17Leh66b region Novel U 0.014378131061216545 -0.11505388980348034 1.0 4093 -102639543 Ifi206 interferon activated gene 206 Novel U 0.01435507851765332 -0.11529266729189667 1.0 4094 -258378 Or52s1 olfactory receptor family 52 subfamily S member 1 Novel U 0.014343611942476988 -0.11541143770062977 1.0 4095 -382051 Pdp2 pyruvate dehydrogenase phosphatase catalytic subunit 2 Novel U 0.014342375858809495 -0.1154242410146236 1.0 4096 -259091 Or51f1e olfactory receptor family 51 subfamily F member 1E Novel U 0.01433551618891773 -0.115495293249863 1.0 4097 -26386 Hsf4 heat shock transcription factor 4 Novel N 0.014318550666731156 -0.11567102157096004 1.0 4098 -258823 Or8g54 olfactory receptor family 8 subfamily G member 54 Novel U 0.014318190268108847 -0.11567475456804244 1.0 4099 -258854 Or8d4 olfactory receptor family 8 subfamily D member 4 Novel U 0.014315011860174748 -0.11570767641293932 1.0 4100 -207565 Camkk2 calcium/calmodulin-dependent protein kinase kinase 2, beta Novel U 0.014305880385310747 -0.11580225992939958 1.0 4101 -258922 Or2k2 olfactory receptor family 2 subfamily K member 2 Novel U 0.014302841056533446 -0.1158337411969623 1.0 4102 -114643 Oas1c 2'-5' oligoadenylate synthetase 1C Novel U 0.014293860069462113 -0.11592676596581311 1.0 4103 -75480 1700003F12Rik RIKEN cDNA 1700003F12 gene Novel U 0.014291651081732769 -0.1159496465880971 1.0 4104 -15528 Hspe1 heat shock protein 1 (chaperonin 10) Novel U 0.014287960519670876 -0.1159878733086135 1.0 4105 -232943 Klc3 kinesin light chain 3 Novel U 0.014287549807416207 -0.11599212745264592 1.0 4106 -16640 Klra9 killer cell lectin-like receptor subfamily A, member 9 Novel U 0.014280288267532063 -0.11606734224405563 1.0 4107 -73106 Prss57 serine protease 57 Novel N 0.014278261367112842 -0.11608833681196715 1.0 4108 -72729 Cdc42se2 CDC42 small effector 2 Novel N 0.01426263870679702 -0.11625015581395115 1.0 4109 -258764 Or8h9 olfactory receptor family 8 subfamily H member 9 Novel U 0.014262429297066956 -0.11625232487305118 1.0 4110 -545622 Ptpn3 protein tyrosine phosphatase, non-receptor type 3 Novel U 0.014260770428535727 -0.11626950737876528 1.0 4111 -259061 Or52n2c olfactory receptor family 52 subfamily N member 2C Novel U 0.014259470966764715 -0.11628296716107192 1.0 4112 -69551 2310022B05Rik RIKEN cDNA 2310022B05 gene Novel U 0.014256016509083501 -0.11631874832017475 1.0 4113 -102577428 Gm44501 predicted readthrough transcript, 44501 Novel U 0.014249130013714504 -0.11639007841282548 1.0 4114 -319278 Shfl shiftless antiviral inhibitor of ribosomal frameshifting Novel U 0.01424787526485612 -0.11640307506025298 1.0 4115 -108909 Aida axin interactor, dorsalization associated Novel U 0.014247262082140992 -0.11640942638665898 1.0 4116 -12479 Cd1d1 CD1d1 antigen Novel U 0.014244366997592003 -0.11643941357724662 1.0 4117 -226695 Ifi205 interferon activated gene 205 Novel U 0.014243460380851315 -0.11644880428364325 1.0 4118 -72322 Xpo5 exportin 5 Novel U 0.01424212371631716 -0.11646264941094754 1.0 4119 -14290 Fpr-rs3 formyl peptide receptor, related sequence 3 Novel U 0.014240377459179283 -0.11648073708497657 1.0 4120 -258216 Or5m9 olfactory receptor family 5 subfamily M member 9 Novel U 0.014229741192886556 -0.11659090718158821 1.0 4121 -246694 Hps5 HPS5, biogenesis of lysosomal organelles complex 2 subunit 2 Novel N 0.014208598109821498 -0.11680990654093466 1.0 4122 -114564 Csprs component of Sp100-rs Novel U 0.014205672790390372 -0.11684020690343758 1.0 4123 -218921 4930474N05Rik RIKEN cDNA 4930474N05 gene Novel U 0.014203462386944565 -0.11686310218966614 1.0 4124 -258747 Or5j1 olfactory receptor family 5 subfamily J member 1 Novel U 0.014200849775708513 -0.11689016353096421 1.0 4125 -226413 Lct lactase Novel N 0.014200439091027398 -0.11689441738939066 1.0 4126 -258691 Or5b120 olfactory receptor family 5 subfamily B member 120 Novel U 0.014193035394973349 -0.1169711046297351 1.0 4127 -21898 Tlr4 toll-like receptor 4 Novel U 0.014172836729859271 -0.11718032173899137 1.0 4128 -67281 Rpl37 ribosomal protein L37 Novel U 0.014168688934445194 -0.11722328446753896 1.0 4129 -667663 Myo3a myosin IIIA Novel U 0.014167573528514906 -0.11723483780549789 1.0 4130 -56724 Cript cysteine-rich PDZ-binding protein Novel N 0.014164627482475366 -0.11726535285352939 1.0 4131 -70568 Cpne3 copine III Novel U 0.014159963968629338 -0.1173136573766418 1.0 4132 -103236 Csnk1g2 casein kinase 1, gamma 2 Novel N 0.014151790000649046 -0.11739832306827694 1.0 4133 -20728 Spic Spi-C transcription factor (Spi-1/PU.1 related) Novel U 0.014139522841480758 -0.11752538589968092 1.0 4134 -13709 Elf1 E74 like ETS transcription factor 1 Novel N 0.01413553702261466 -0.11756667088046922 1.0 4135 -71720 Osbpl3 oxysterol binding protein-like 3 Novel N 0.014132625337073976 -0.11759683002358313 1.0 4136 -257956 Or4f14b olfactory receptor family 4 subfamily F member 14B Novel U 0.01413233199327768 -0.117599868468982 1.0 4137 -12322 Camk2a calcium/calmodulin-dependent protein kinase II alpha Novel U 0.014113226511948802 -0.11779776241652766 1.0 4138 -319277 Washc4 WASH complex subunit 4 Novel U 0.014113069940257041 -0.1177993841809639 1.0 4139 -208666 Diras1 DIRAS family, GTP-binding RAS-like 1 Novel U 0.01411267459767805 -0.1178034791264009 1.0 4140 -81489 Dnajb1 DnaJ heat shock protein family (Hsp40) member B1 Novel U 0.014111610864528872 -0.11781449723939175 1.0 4141 -252837 Ackr4 atypical chemokine receptor 4 Novel U 0.01410657361151622 -0.11786667294050603 1.0 4142 -171283 Havcr1 hepatitis A virus cellular receptor 1 Novel U 0.014105455626179146 -0.11787825299587565 1.0 4143 -258771 Or5p53 olfactory receptor family 5 subfamily P member 53 Novel U 0.014103895201682563 -0.11789441582151507 1.0 4144 -258968 Or4a74 olfactory receptor family 4 subfamily A member 74 Novel U 0.014100923216487787 -0.1179251995464638 1.0 4145 -73318 Ube2d2b ubiquitin-conjugating enzyme E2D 2B Novel U 0.014100550620047773 -0.11792905888814101 1.0 4146 -12925 Crip1 cysteine-rich protein 1 Novel U 0.014091964732490343 -0.11801799122921502 1.0 4147 -72536 Tagap T cell activation Rho GTPase activating protein Novel U 0.01409012473544384 -0.11803704985813605 1.0 4148 -192212 Prom2 prominin 2 Novel U 0.01408926108805746 -0.1180459954893733 1.0 4149 -77097 Tanc2 tetratricopeptide repeat, ankyrin repeat and coiled-coil containing 2 Novel N 0.014073126605323255 -0.11821311593114166 1.0 4150 -240667 Sec31b SEC31 homolog B, COPII coat complex component Novel U 0.014069815179961118 -0.11824741556618543 1.0 4151 -51797 Ctps1 cytidine 5'-triphosphate synthase 1 Novel U 0.014067893053728124 -0.11826732488652028 1.0 4152 -207352 Sec23ip Sec23 interacting protein Novel U 0.014062997011025436 -0.11831803793588598 1.0 4153 -11752 Anxa8 annexin A8 Novel U 0.0140575792307727 -0.11837415512564389 1.0 4154 -68098 Rchy1 ring finger and CHY zinc finger domain containing 1 Novel U 0.01405183279522729 -0.11843367651611936 1.0 4155 -99152 Anapc2 anaphase promoting complex subunit 2 Novel U 0.014051815881100278 -0.11843385171209092 1.0 4156 -257881 Or5ac23 olfactory receptor family 5 subfamily AC member 23 Novel U 0.014050754208446375 -0.11844484848253944 1.0 4157 -258290 Or5w18 olfactory receptor family 5 subfamily W member 18 Novel U 0.014046520847830951 -0.11848869749262977 1.0 4158 -66753 Erlec1 endoplasmic reticulum lectin 1 Novel U 0.014041190119633914 -0.11854391300005643 1.0 4159 -18005 Nek2 NIMA (never in mitosis gene a)-related expressed kinase 2 Novel U 0.014033573787445948 -0.11862280271848595 1.0 4160 -71909 Haus5 HAUS augmin-like complex, subunit 5 Novel U 0.014031571902577023 -0.11864353817614985 1.0 4161 -70980 Ubqln5 ubiquilin 5 Novel U 0.014029867155858996 -0.11866119588661465 1.0 4162 -668212 Efr3b EFR3 homolog B Novel U 0.014025649596010402 -0.11870488123288157 1.0 4163 -68016 Cavin4 caveolae associated 4 Novel N 0.014025403791899864 -0.11870742726377816 1.0 4164 -545925 Psg27 pregnancy-specific beta-1-glycoprotein 27 Novel U 0.0140158271422698 -0.11880662188583097 1.0 4165 -21819 Tg thyroglobulin Novel U 0.014006687837906037 -0.11890128649999238 1.0 4166 -544881 Eif1ad2 eukaryotic translation initiation factor 1A domain containing 2 Novel U 0.013996593547878277 -0.11900584282426799 1.0 4167 -258086 Or8g4 olfactory receptor family 8 subfamily G member 4 Novel U 0.013996587436225089 -0.11900590612857082 1.0 4168 -14226 Fkbp1b FK506 binding protein 1b Novel U 0.013995184704263865 -0.11902043558011284 1.0 4169 -12913 Creb3 cAMP responsive element binding protein 3 Novel U 0.013994455789754875 -0.11902798565263517 1.0 4170 -258834 Or12e7 olfactory receptor family 12 subfamily E member 7 Novel U 0.013993018673447781 -0.1190428712561014 1.0 4171 -67504 Rnf151 ring finger protein 151 Novel U 0.013990908643994734 -0.11906472687181259 1.0 4172 -244962 Snx14 sorting nexin 14 Novel U 0.013986462563896488 -0.1191107792233132 1.0 4173 -258703 Or3a1c olfactory receptor family 3 subfamily A member 1C Novel U 0.013985080483064734 -0.11912509477113505 1.0 4174 -66913 Kdelr2 KDEL (Lys-Asp-Glu-Leu) endoplasmic reticulum protein retention receptor 2 Novel N 0.013975482910143784 -0.11922450611594704 1.0 4175 -258103 Or5w19 olfactory receptor family 5 subfamily W member 19 Novel U 0.013966807600154368 -0.11931436469163195 1.0 4176 -257978 Or11n2 olfactory receptor family 11 subfamily N member 2 Novel U 0.013965579737012006 -0.11932708285769672 1.0 4177 -258392 Or5h22 olfactory receptor family 5 subfamily H member 22 Novel U 0.013960484318301125 -0.11937986103720115 1.0 4178 -258861 Or10p21 olfactory receptor family 10 subfamily P member 21 Novel U 0.01395206170406055 -0.11946710219862651 1.0 4179 -101706 Numa1 nuclear mitotic apparatus protein 1 Novel U 0.01394010302148941 -0.11959096983957786 1.0 4180 -225010 Lclat1 lysocardiolipin acyltransferase 1 Novel U 0.013934742409681511 -0.11964649488046346 1.0 4181 -67955 Sugt1 SGT1, suppressor of G2 allele of SKP1 (S. cerevisiae) Novel U 0.013930925618921584 -0.11968602907368454 1.0 4182 -50765 Tfr2 transferrin receptor 2 Novel U 0.013929790468359392 -0.11969778692589166 1.0 4183 -670940 Vmn2r70 vomeronasal 2, receptor 70 Novel U 0.013925634467326524 -0.11974083464796893 1.0 4184 -75647 Ssmem1 serine-rich single-pass membrane protein 1 Novel U 0.013923886182391104 -0.11975894332585825 1.0 4185 -241303 Fam78a family with sequence similarity 78, member A Novel U 0.013921699467557027 -0.11978159324622524 1.0 4186 -228850 Ralgapb Ral GTPase activating protein, beta subunit (non-catalytic) Novel U 0.013918797446625069 -0.11981165228363966 1.0 4187 -258606 Or8g2 olfactory receptor family 8 subfamily G member 2 Novel U 0.013915915613902688 -0.11984150221224293 1.0 4188 -258095 Or10al3 olfactory receptor family 10 subfamily AL member 3 Novel U 0.013915865125161372 -0.11984202517296576 1.0 4189 -381085 Tbc1d22b TBC1 domain family, member 22B Novel U 0.013908963469625099 -0.11991351229413076 1.0 4190 -100033459 Ifi208 interferon activated gene 208 Novel U 0.013901359017468915 -0.11999227895958162 1.0 4191 -100042480 Nhsl2 NHS like 2 Novel U 0.01389530034150586 -0.1200550345260387 1.0 4192 -17957 Napb N-ethylmaleimide sensitive fusion protein attachment protein beta Novel N 0.01389509152797173 -0.12005719740976084 1.0 4193 -67673 Elob elongin B Novel N 0.013889351490840498 -0.1201166525256726 1.0 4194 -258265 Or10ak11 olfactory receptor family 10 subfamily AK member 11 Novel U 0.01387461871496704 -0.12026925413385595 1.0 4195 -258610 Or14a260 olfactory receptor family 14 subfamily A member 260 Novel U 0.013868894171369895 -0.12032854876825094 1.0 4196 -21822 Tgtp1 T cell specific GTPase 1 Novel U 0.013868723653698147 -0.12033031498468945 1.0 4197 -259039 Or9s23 olfactory receptor family 9 subfamily S member 23 Novel U 0.013861689255003699 -0.12040317705512314 1.0 4198 -18323 Or8c9 olfactory receptor family 8 subfamily C member 9 Novel U 0.01386152214127763 -0.12040490801360419 1.0 4199 -211007 Trim41 tripartite motif-containing 41 Novel U 0.01386020420264223 -0.12041855917866476 1.0 4200 -432572 Specc1 sperm antigen with calponin homology and coiled-coil domains 1 Novel U 0.013858210069200749 -0.12043921434729803 1.0 4201 -258301 Or13p8 olfactory receptor family 13 subfamily P member 8 Novel U 0.013857471317026577 -0.12044686631803293 1.0 4202 -67921 Ube2f ubiquitin-conjugating enzyme E2F (putative) Novel N 0.013848328313128266 -0.12054156925185157 1.0 4203 -11553 Adra2c adrenergic receptor, alpha 2c Novel U 0.013848118222037102 -0.12054374536846747 1.0 4204 -20377 Sfrp1 secreted frizzled-related protein 1 Novel U 0.013845426641926208 -0.12057162466677518 1.0 4205 -14026 Evl Ena-vasodilator stimulated phosphoprotein Novel U 0.013844335323123746 -0.12058292851105591 1.0 4206 -272636 Esyt3 extended synaptotagmin-like protein 3 Novel U 0.013841687063651905 -0.1206103590956084 1.0 4207 -258640 Or5i1 olfactory receptor family 5 subfamily I member 1 Novel U 0.013837315008301758 -0.12065564470120164 1.0 4208 -68732 Carmil1 capping protein regulator and myosin 1 linker 1 Novel U 0.013836096445057303 -0.1206682665392296 1.0 4209 -67459 Nvl nuclear VCP-like Novel U 0.013834667214230613 -0.12068307046514902 1.0 4210 -14886 Gtf2i general transcription factor II I Novel U 0.0138258413936018 -0.12077448802508904 1.0 4211 -58231 Stk4 serine/threonine kinase 4 Novel U 0.013821901361768947 -0.12081529874529216 1.0 4212 -235459 Gtf2a2 general transcription factor II A, 2 Novel N 0.013821310237966204 -0.12082142158620883 1.0 4213 -320127 Dgki diacylglycerol kinase, iota Novel U 0.013819853479757872 -0.12083651063984238 1.0 4214 -258035 Or5h23 olfactory receptor family 5 subfamily H member 23 Novel U 0.013809856613769034 -0.1209400578491255 1.0 4215 -12986 Csf3r colony stimulating factor 3 receptor Novel U 0.013800205380282704 -0.1210400250083097 1.0 4216 -56014 Or13e8 olfactory receptor family 13 subfamily E member 8 Novel U 0.013795337874264148 -0.12109044247563926 1.0 4217 -22712 Zfp54 zinc finger protein 54 Novel U 0.013787114461825517 -0.12117562031134847 1.0 4218 -55960 Ebag9 estrogen receptor-binding fragment-associated gene 9 Novel U 0.01377722619388238 -0.12127804266564418 1.0 4219 -11972 Atp6v0d1 ATPase, H+ transporting, lysosomal V0 subunit D1 Novel N 0.013772630071414358 -0.12132564915107857 1.0 4220 -22629 Ywhah tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, eta polypeptide Novel U 0.013770798323498689 -0.1213446223357736 1.0 4221 -319594 Hif1an hypoxia-inducible factor 1, alpha subunit inhibitor Novel U 0.013769314333870717 -0.12135999345155661 1.0 4222 -259070 Or7g17 olfactory receptor family 7 subfamily G member 17 Novel U 0.013764105584181039 -0.12141394550961387 1.0 4223 -56274 Stk3 serine/threonine kinase 3 Novel U 0.01375747503864257 -0.12148262448233389 1.0 4224 -66589 Ube2v1 ubiquitin-conjugating enzyme E2 variant 1 Novel U 0.013744340701591114 -0.1216186695137448 1.0 4225 -59020 Pdzk1 PDZ domain containing 1 Novel U 0.013743637822096153 -0.12162594991644769 1.0 4226 -328833 Treml2 triggering receptor expressed on myeloid cells-like 2 Novel N 0.013736910430576683 -0.12169563201665527 1.0 4227 -11550 Adra1d adrenergic receptor, alpha 1d Novel N 0.01372159174677397 -0.12185430243990916 1.0 4228 -258522 Or4c31 olfactory receptor family 4 subfamily C member 31 Novel U 0.013716322641106008 -0.1219088796632054 1.0 4229 -66438 Hamp2 hepcidin antimicrobial peptide 2 Novel U 0.013715036429245302 -0.12192220220337666 1.0 4230 -216197 Ckap4 cytoskeleton-associated protein 4 Novel U 0.013715009153080914 -0.12192248472899073 1.0 4231 -258296 Or11h6 olfactory receptor family 11 subfamily H member 6 Novel U 0.013704529326370209 -0.12203103442955447 1.0 4232 -11981 Atp9a ATPase, class II, type 9A Novel U 0.013691964185114447 -0.12216118374962488 1.0 4233 -22415 Wnt3 wingless-type MMTV integration site family, member 3 Novel U 0.013691710478114865 -0.1221638116383864 1.0 4234 -68059 Tm9sf2 transmembrane 9 superfamily member 2 Novel N 0.013689978887127342 -0.12218174740091216 1.0 4235 -259109 Or10g7 olfactory receptor family 10 subfamily G member 7 Novel U 0.013686271598815788 -0.1222201473713727 1.0 4236 -67197 Zcrb1 zinc finger CCHC-type and RNA binding motif 1 Novel N 0.013681192402583024 -0.12227275751898209 1.0 4237 -18754 Prkce protein kinase C, epsilon Novel U 0.013678320276723248 -0.1223025069042216 1.0 4238 -258688 Or5b108 olfactory receptor family 5 subfamily B member 108 Novel U 0.013678167930464606 -0.1223040849017605 1.0 4239 -70417 Megf10 multiple EGF-like-domains 10 Novel U 0.01367021297436432 -0.12238648207554217 1.0 4240 -84506 Hamp hepcidin antimicrobial peptide Novel N 0.013665163619360241 -0.12243878312868581 1.0 4241 -225467 Pggt1b protein geranylgeranyltransferase type I, beta subunit Novel N 0.013663863748471691 -0.12245224714861845 1.0 4242 -258415 Or8b39 olfactory receptor family 8 subfamily B member 39 Novel U 0.013645589290186869 -0.12264153338679219 1.0 4243 -258401 Or8k30 olfactory receptor family 8 subfamily K member 30 Novel U 0.013645151128412619 -0.12264607185204608 1.0 4244 -12176 Bnip3 BCL2/adenovirus E1B interacting protein 3 Novel U 0.01363434149534486 -0.12275803767601438 1.0 4245 -100732 Mapre3 microtubule-associated protein, RP/EB family, member 3 Novel U 0.013628327274593219 -0.12282033277685302 1.0 4246 -108699 Chn1 chimerin 1 Novel U 0.013627888487297214 -0.12282487772124068 1.0 4247 -209446 Tfe3 transcription factor E3 Novel U 0.013619427355451078 -0.12291251784675823 1.0 4248 -68034 Pabir1 PP2A A alpha (PPP2R1A) and B55A (PPP2R2A) interacting phosphatase regulator 1 Novel U 0.01361620262775964 -0.12294591947017894 1.0 4249 -18168 Npy5r neuropeptide Y receptor Y5 Novel N 0.013603650879942957 -0.12307593006144765 1.0 4250 -217340 Rnf157 ring finger protein 157 Novel U 0.0136033591813843 -0.12307895146552915 1.0 4251 -244179 Ubqlnl ubiquilin-like Novel U 0.013601642086677653 -0.12309673707605415 1.0 4252 -28146 Serp1 stress-associated endoplasmic reticulum protein 1 Novel U 0.013600974305497577 -0.12310365393156526 1.0 4253 -16639 Klra8 killer cell lectin-like receptor, subfamily A, member 8 Novel U 0.013592911115703876 -0.12318717218638532 1.0 4254 -26908 Eif2s3y eukaryotic translation initiation factor 2, subunit 3, structural gene Y-linked Novel U 0.013575322364981294 -0.12336935588817079 1.0 4255 -228361 Ambra1 autophagy/beclin 1 regulator 1 Novel U 0.013574115219234913 -0.12338185946412904 1.0 4256 -100040531 Dynlt1f dynein light chain Tctex-type 1F Novel U 0.013572869219260542 -0.12339476549090353 1.0 4257 -102414 Clk3 CDC-like kinase 3 Novel N 0.01357273871315722 -0.12339611726883158 1.0 4258 -18712 Pim1 proviral integration site 1 Novel U 0.01356907537421007 -0.12343406201322037 1.0 4259 -52551 Sgta small glutamine-rich tetratricopeptide repeat (TPR)-containing, alpha Novel U 0.01356399016600759 -0.12348673443261446 1.0 4260 -15364 Hmga2 high mobility group AT-hook 2 Novel U 0.01355942085421129 -0.12353406321399249 1.0 4261 -69893 Coa7 cytochrome c oxidase assembly factor 7 Novel N 0.013559302586214394 -0.12353528823001649 1.0 4262 -381413 Gpr176 G protein-coupled receptor 176 Novel N 0.013554298873737401 -0.12358711651936499 1.0 4263 -66437 Fis1 fission, mitochondrial 1 Novel U 0.013553635916604535 -0.12359398340755368 1.0 4264 -52850 Sgsm1 small G protein signaling modulator 1 Novel U 0.01354732103206864 -0.12365939277398583 1.0 4265 -258952 Or1j13 olfactory receptor family 1 subfamily J member 13 Novel U 0.013541351452744745 -0.12372122548038339 1.0 4266 -14705 Bscl2 BSCL2 lipid droplet biogenesis associated, seipin Novel N 0.013530583112172912 -0.1238327635980363 1.0 4267 -66050 Trappc2b trafficking protein particle complex 2B Novel U 0.013519573300283657 -0.12394680286765714 1.0 4268 -224826 Ubr2 ubiquitin protein ligase E3 component n-recognin 2 Novel N 0.013500638110641634 -0.12414293293950839 1.0 4269 -258724 Or6c208 olfactory receptor family 6 subfamily C member 208 Novel U 0.013495382867428319 -0.12419736657595509 1.0 4270 -66827 Ttc1 tetratricopeptide repeat domain 1 Novel U 0.013479399205699027 -0.12436292481871251 1.0 4271 -57342 Parva parvin, alpha Novel N 0.013471064345868923 -0.12444925702283897 1.0 4272 -259023 Or8k53 olfactory receptor family 8 subfamily K member 53 Novel U 0.013463312027693656 -0.12452955527965466 1.0 4273 -258608 Or6x1 olfactory receptor family 6 subfamily X member 1 Novel U 0.013445038926266016 -0.1247188274635463 1.0 4274 -75734 Mff mitochondrial fission factor Novel U 0.013444490376004604 -0.1247245093291214 1.0 4275 -12211 Birc6 baculoviral IAP repeat-containing 6 Novel U 0.013443044517526766 -0.1247394854837048 1.0 4276 -233011 Itpkc inositol 1,4,5-trisphosphate 3-kinase C Novel U 0.01343768097772017 -0.12479504085270465 1.0 4277 -258121 Or5b111 olfactory receptor family 5 subfamily B member 111 Novel U 0.013432342680509838 -0.12485033475972221 1.0 4278 -258068 Or6c6c olfactory receptor family 6 subfamily C member 6C Novel U 0.013429449336936353 -0.12488030391734281 1.0 4279 -57913 Pidd1 p53 induced death domain protein 1 Novel U 0.013426094017908853 -0.12491505820152948 1.0 4280 -12267 C3ar1 complement component 3a receptor 1 Novel U 0.013423770500546899 -0.12493912511798308 1.0 4281 -67154 Mtdh metadherin Novel U 0.013422871829115597 -0.12494843352712628 1.0 4282 -27632 Nelfe negative elongation factor complex member E, Rdbp Novel N 0.01342246721407095 -0.12495262451645772 1.0 4283 -53323 Ube2k ubiquitin-conjugating enzyme E2K Novel U 0.013421539702128737 -0.12496223165466486 1.0 4284 -74455 Nsun6 NOL1/NOP2/Sun domain family member 6 Novel N 0.013419718272544344 -0.12498109796242374 1.0 4285 -15900 Irf8 interferon regulatory factor 8 Novel U 0.013419341820967257 -0.12498499723548401 1.0 4286 -217218 Atxn7l3 ataxin 7-like 3 Novel N 0.013404516697958849 -0.12513855537225543 1.0 4287 -259044 Or7a37 olfactory receptor family 7 subfamily A member 37 Novel U 0.013376315011868695 -0.12543066750969675 1.0 4288 -12738 Cldn2 claudin 2 Novel N 0.013369469749215065 -0.12550157051523717 1.0 4289 -73010 Gpr22 G protein-coupled receptor 22 Novel U 0.013367649174825783 -0.1255204279649132 1.0 4290 -223697 Sun2 Sad1 and UNC84 domain containing 2 Novel U 0.013351935157186181 -0.1256831932430537 1.0 4291 -258451 Or4c110 olfactory receptor family 4 subfamily C member 110 Novel U 0.013351893000705637 -0.12568362989849335 1.0 4292 -24086 Tlk2 tousled-like kinase 2 (Arabidopsis) Novel U 0.013334123423825991 -0.12586768659166933 1.0 4293 -271424 Ip6k3 inositol hexaphosphate kinase 3 Novel U 0.01333408097481451 -0.12586812627713484 1.0 4294 -78748 Rassf10 Ras association (RalGDS/AF-6) domain family (N-terminal) member 10 Novel U 0.013333645526499582 -0.12587263663646628 1.0 4295 -72416 Lrpprc leucine-rich PPR-motif containing Novel U 0.013329463663560907 -0.1259159522353137 1.0 4296 -406186 Or4b13 olfactory receptor family 4 subfamily B member 13 Novel U 0.013328225237645812 -0.1259287798102312 1.0 4297 -68524 Wipf2 WAS/WASL interacting protein family, member 2 Novel U 0.013318255309909148 -0.12603204799398388 1.0 4298 -14799 Gria1 glutamate receptor, ionotropic, AMPA1 (alpha 1) Novel N 0.01331566514473779 -0.1260588768396817 1.0 4299 -241989 Pabpc4l poly(A) binding protein, cytoplasmic 4-like Novel U 0.013300808654124969 -0.12621275988106848 1.0 4300 -18764 Pkd2 polycystin 2, transient receptor potential cation channel Novel U 0.013294202018628869 -0.12628119119435563 1.0 4301 -75540 Fpgt fucose-1-phosphate guanylyltransferase Novel N 0.013285739274564218 -0.12636884801917955 1.0 4302 -229473 Tmem131l transmembrane 131 like Novel U 0.013283739174204902 -0.12638956499295162 1.0 4303 -258288 Or5b122 olfactory receptor family 5 subfamily B member 122 Novel U 0.013280120685695522 -0.12642704517798037 1.0 4304 -404242 Mrgprx1 MAS-related GPR, member X1 Novel U 0.01327730035526628 -0.12645625806785307 1.0 4305 -16568 Kif3a kinesin family member 3A Novel U 0.013256396683450555 -0.12667277761334916 1.0 4306 -54132 Pdlim1 PDZ and LIM domain 1 (elfin) Novel N 0.013235858702507684 -0.12688550934480566 1.0 4307 -69068 Tcim transcriptional and immune response regulator Novel U 0.013234256604862707 -0.12690210381954622 1.0 4308 -574418 Serinc4 serine incorporator 4 Novel U 0.013232900261205684 -0.12691615278255827 1.0 4309 -76380 Cep112 centrosomal protein 112 Novel N 0.013230439209750025 -0.12694164427263327 1.0 4310 -171095 Il17rc interleukin 17 receptor C Novel U 0.013223805403349241 -0.12701035702125796 1.0 4311 -70456 Mpc2 mitochondrial pyruvate carrier 2 Novel N 0.013223759878618995 -0.1270108285649173 1.0 4312 -64704 Htra2 HtrA serine peptidase 2 Novel U 0.013221690453203665 -0.1270322636053406 1.0 4313 -22670 Trim26 tripartite motif-containing 26 Novel U 0.013219699211281796 -0.12705288882370877 1.0 4314 -104001 Rtn1 reticulon 1 Novel N 0.013214967259674177 -0.12710190222290593 1.0 4315 -15170 Ptpn6 protein tyrosine phosphatase, non-receptor type 6 Novel U 0.013213522269076293 -0.12711686938801733 1.0 4316 -225288 Fhod3 formin homology 2 domain containing 3 Novel U 0.013208243454428613 -0.1271715471766063 1.0 4317 -69165 Cd209b CD209b antigen Novel U 0.013202465401084242 -0.12723139606320402 1.0 4318 -627873 Eif1ad16 eukaryotic translation initiation factor 1A domain containing 16 Novel U 0.013201397828126652 -0.12724245394880418 1.0 4319 -53598 Dctn3 dynactin 3 Novel U 0.013178815800560972 -0.12747635784798533 1.0 4320 -14942 Gzme granzyme E Novel U 0.013172093630548167 -0.1275459858639985 1.0 4321 -384732 Or2d2b olfactory receptor family 2 subfamily D member 2B Novel U 0.013167982511142979 -0.12758856870365168 1.0 4322 -26404 Map3k12 mitogen-activated protein kinase kinase kinase 12 Novel U 0.013164100173205264 -0.12762878183238555 1.0 4323 -207920 Esrp1 epithelial splicing regulatory protein 1 Novel U 0.013158846237107169 -0.12768320192977578 1.0 4324 -52036 Ppp6r3 protein phosphatase 6, regulatory subunit 3 Novel N 0.013155045002937514 -0.12772257498834622 1.0 4325 -56554 Raet1d retinoic acid early transcript delta Novel U 0.01315179346677422 -0.12775625429303714 1.0 4326 -258398 Or4k45 olfactory receptor family 4 subfamily K member 45 Novel U 0.013144995870535702 -0.12782666357141675 1.0 4327 -22195 Ube2l3 ubiquitin-conjugating enzyme E2L 3 Novel U 0.01314377850193206 -0.12783927303539444 1.0 4328 -258165 Or8g52 olfactory receptor family 8 subfamily G member 52 Novel U 0.01314208653753104 -0.1278567983470399 1.0 4329 -52120 Hgsnat heparan-alpha-glucosaminide N-acetyltransferase Novel U 0.013139257206575772 -0.1278861044640653 1.0 4330 -258888 Or4k48 olfactory receptor family 4 subfamily K member 48 Novel U 0.013125540052515105 -0.12802818629489854 1.0 4331 -12475 Cd14 CD14 antigen Novel U 0.013123184078259886 -0.1280525893987856 1.0 4332 -12057 Opn1sw opsin 1 (cone pigments), short-wave-sensitive (color blindness, tritan) Novel U 0.013122997661401594 -0.12805452029847567 1.0 4333 -106338 Nsun3 NOL1/NOP2/Sun domain family member 3 Novel N 0.013122916589442767 -0.1280553600391601 1.0 4334 -80886 Senp3 SUMO/sentrin specific peptidase 3 Novel N 0.013118973779543205 -0.12809619953448687 1.0 4335 -66141 Ifitm3 interferon induced transmembrane protein 3 Novel U 0.013108903206092166 -0.12820051020324047 1.0 4336 -235599 6430571L13Rik RIKEN cDNA 6430571L13 gene Novel U 0.013108730122371147 -0.12820230299873298 1.0 4337 -16897 Llgl1 LLGL1 scribble cell polarity complex component Novel U 0.013100185915791268 -0.1282908036096117 1.0 4338 -258445 Or2ag12 olfactory receptor family 2 subfamily AG member 12 Novel U 0.013099260468685345 -0.1283003893603124 1.0 4339 -57080 Gtf2ird1 general transcription factor II I repeat domain-containing 1 Novel U 0.01309579496588294 -0.12833628492441745 1.0 4340 -17126 Smad2 SMAD family member 2 Novel U 0.013094920984565692 -0.1283453375941709 1.0 4341 -50766 Crim1 cysteine rich transmembrane BMP regulator 1 Novel U 0.013094019482700784 -0.12835467532085235 1.0 4342 -259082 Or8j3c olfactory receptor family 8 subfamily J member 3C Novel U 0.013093312976685633 -0.12836199328693215 1.0 4343 -100862369 Btbd35f9 BTB domain containing 35, family member 9 Novel U 0.01309271515495235 -0.12836818550479315 1.0 4344 -230861 Eif4g3 eukaryotic translation initiation factor 4 gamma, 3 Novel N 0.0130787007137913 -0.12851334662563937 1.0 4345 -233099 Scgb2b27 secretoglobin, family 2B, member 27 Novel U 0.01307228841148165 -0.12857976504216964 1.0 4346 -74463 Exoc3l2 exocyst complex component 3-like 2 Novel U 0.013068538034789008 -0.12861861132066504 1.0 4347 -170952 Prima1 proline rich membrane anchor 1 Novel U 0.01306766463894958 -0.12862765792605851 1.0 4348 -71709 Syde1 synapse defective 1, Rho GTPase, homolog 1 (C. elegans) Novel U 0.013067051355624247 -0.1286340102945817 1.0 4349 -18033 Nfkb1 nuclear factor of kappa light polypeptide gene enhancer in B cells 1, p105 Novel U 0.013063025153149714 -0.12867571356745863 1.0 4350 -14113 Fbl fibrillarin Novel N 0.013055589637153461 -0.1287527303977184 1.0 4351 -56700 Glmp glycosylated lysosomal membrane protein Novel N 0.013041934769090819 -0.12889416707223164 1.0 4352 -100502950 Gm3336 predicted gene 3336 Novel U 0.013026267238279687 -0.12905645084133102 1.0 4353 -77963 Hook1 hook microtubule tethering protein 1 Novel U 0.013019040768889331 -0.12913130237371895 1.0 4354 -99011 Pomt1 protein-O-mannosyltransferase 1 Novel U 0.013007994894510377 -0.1292457151774226 1.0 4355 -258051 Or2h1b olfactory receptor family 2 subfamily H member 1B Novel U 0.013001968906222563 -0.12930813216601406 1.0 4356 -258794 Or8b4 olfactory receptor family 8 subfamily B member 4 Novel U 0.012995996823475365 -0.1293699908027879 1.0 4357 -258821 Or13c3 olfactory receptor family 13 subfamily C member 3 Novel U 0.012986187709909246 -0.12947159327864852 1.0 4358 -18452 P4ha2 procollagen-proline, 2-oxoglutarate 4-dioxygenase (proline 4-hydroxylase), alpha II polypeptide Novel U 0.012985703785972932 -0.12947660574687272 1.0 4359 -11747 Anxa5 annexin A5 Novel N 0.012982850432285593 -0.12950616069056722 1.0 4360 -258836 Or13c25 olfactory receptor family 13 subfamily C member 25 Novel U 0.012980551658486519 -0.12952997131400992 1.0 4361 -258528 Or2p2 olfactory receptor family 2 subfamily P member 2 Novel U 0.012979245568928075 -0.12954349974672089 1.0 4362 -258942 Or1j20 olfactory receptor family 1 subfamily J member 20 Novel U 0.01297899238756704 -0.12954612219093561 1.0 4363 -16440 Itpr3 inositol 1,4,5-triphosphate receptor 3 Novel N 0.012972946621178844 -0.12960874404044068 1.0 4364 -101700 Trim68 tripartite motif-containing 68 Novel U 0.012970179325700612 -0.12963740759603426 1.0 4365 -258566 Or5g25 olfactory receptor family 5 subfamily G member 25 Novel U 0.012968701295436121 -0.12965271698492625 1.0 4366 -12740 Cldn4 claudin 4 Novel U 0.012967804022554125 -0.1296620109079417 1.0 4367 -15502 Dnaja1 DnaJ heat shock protein family (Hsp40) member A1 Novel U 0.012948577230019012 -0.12986116139297366 1.0 4368 -56619 Clec4e C-type lectin domain family 4, member e Novel U 0.012948021588396641 -0.1298669167106324 1.0 4369 -72404 Wdr44 WD repeat domain 44 Novel U 0.012938397764308426 -0.12996659996417198 1.0 4370 -56807 Scamp5 secretory carrier membrane protein 5 Novel U 0.01291560091890899 -0.13020272893941343 1.0 4371 -56305 Pitpnb phosphatidylinositol transfer protein, beta Novel U 0.01291514462528141 -0.13020745521380805 1.0 4372 -258519 Or7e168 olfactory receptor family 7 subfamily E member 168 Novel U 0.01291154395598322 -0.13024475082803305 1.0 4373 -13040 Ctss cathepsin S Novel U 0.012904462183853868 -0.13031810359094817 1.0 4374 -69655 Cd164l2 CD164 sialomucin-like 2 Novel U 0.012897770851352859 -0.13038741219302794 1.0 4375 -17390 Mmp2 matrix metallopeptidase 2 Novel U 0.012891419873615714 -0.13045319541165212 1.0 4376 -268973 Nlrc4 NLR family, CARD domain containing 4 Novel U 0.012889713154412777 -0.1304708735530508 1.0 4377 -17127 Smad3 SMAD family member 3 Novel U 0.0128882155816106 -0.13048638536290566 1.0 4378 -22186 Uba52 ubiquitin A-52 residue ribosomal protein fusion product 1 Novel N 0.012887591625383806 -0.13049284828099134 1.0 4379 -67163 Ccdc47 coiled-coil domain containing 47 Novel U 0.012886279398210309 -0.1305064402869173 1.0 4380 -211480 Kcnj14 potassium inwardly-rectifying channel, subfamily J, member 14 Novel U 0.01288406007023399 -0.13052942801313952 1.0 4381 -69807 Trim32 tripartite motif-containing 32 Novel U 0.012883934603041923 -0.13053072759819043 1.0 4382 -259026 Or1e19 olfactory receptor family 1 subfamily E member 19 Novel U 0.012875219470094021 -0.13062099865877025 1.0 4383 -70110 Ifi35 interferon-induced protein 35 Novel U 0.01286908337690003 -0.1306845561103604 1.0 4384 -69441 Efcab15 EF-hand calcium binding domain 15 Novel U 0.012865138737013969 -0.13072541456062717 1.0 4385 -14815 Nr3c1 nuclear receptor subfamily 3, group C, member 1 Novel U 0.012852289379650893 -0.13085850778179403 1.0 4386 -258617 Or1ak2 olfactory receptor family 1 subfamily AK member 2 Novel U 0.0128385576822328 -0.13100074025224542 1.0 4387 -263876 Spata2 spermatogenesis associated 2 Novel N 0.01283144093847773 -0.13107445525011008 1.0 4388 -13616 Edn3 endothelin 3 Novel U 0.012822083307972089 -0.13117138127927197 1.0 4389 -257926 Or55b4 olfactory receptor family 55 subfamily B member 4 Novel U 0.012807862050397896 -0.1313186845977268 1.0 4390 -110197 Dgkg diacylglycerol kinase, gamma Novel U 0.012803552575023932 -0.13136332200198395 1.0 4391 -258583 Or8k38 olfactory receptor family 8 subfamily K member 38 Novel U 0.012802600113610821 -0.13137318756599048 1.0 4392 -66661 Srp72 signal recognition particle 72 Novel U 0.012801999303488095 -0.1313794107374911 1.0 4393 -230661 Tesk2 testis-specific kinase 2 Novel U 0.012796210050356608 -0.1314393756311156 1.0 4394 -16520 Kcnj4 potassium inwardly-rectifying channel, subfamily J, member 4 Novel N 0.012795868509768656 -0.13144291329729807 1.0 4395 -268816 Mroh5 maestro heat-like repeat family member 5 Novel U 0.012788181185368083 -0.13152253835073202 1.0 4396 -19192 Psme3 proteaseome (prosome, macropain) activator subunit 3 (PA28 gamma, Ki) Novel U 0.01278664554397657 -0.13153844447378382 1.0 4397 -72058 Igsf5 immunoglobulin superfamily, member 5 Novel U 0.01277629888849148 -0.1316456147911704 1.0 4398 -11608 Agtr1b angiotensin II receptor, type 1b Novel U 0.012771224022004644 -0.13169818009141382 1.0 4399 -13034 Ctse cathepsin E Novel U 0.012769339104729906 -0.13171770400258223 1.0 4400 -20979 Syt1 synaptotagmin I Novel U 0.012766762382353702 -0.13174439360824977 1.0 4401 -545384 Ifi214 interferon activated gene 214 Novel U 0.012761016113207584 -0.13180391327516683 1.0 4402 -60530 Fignl1 fidgetin-like 1 Novel U 0.012749837781346448 -0.1319196980691166 1.0 4403 -56734 Tulp2 TUB like protein 2 Novel N 0.012747717981198866 -0.1319416548893606 1.0 4404 -209737 Kif15 kinesin family member 15 Novel U 0.012746460202670559 -0.13195468291800955 1.0 4405 -74374 Clec16a C-type lectin domain family 16, member A Novel U 0.012726550354037077 -0.13216090847565415 1.0 4406 -227634 Camsap1 calmodulin regulated spectrin-associated protein 1 Novel U 0.012719252635420397 -0.13223649800518614 1.0 4407 -20358 Sema6a sema domain, transmembrane domain (TM), and cytoplasmic domain, (semaphorin) 6A Novel U 0.01270229649861377 -0.1324121291128262 1.0 4408 -19395 Rasgrp2 RAS, guanyl releasing protein 2 Novel U 0.012692422112084495 -0.13251440768389347 1.0 4409 -14829 Grpr gastrin releasing peptide receptor Novel U 0.012686783230372364 -0.13257281503529947 1.0 4410 -21809 Tgfb3 transforming growth factor, beta 3 Novel U 0.012685090321215913 -0.1325903501326906 1.0 4411 -67204 Eif2s2 eukaryotic translation initiation factor 2 subunit 2 beta Novel N 0.012681525402360318 -0.13262727544500647 1.0 4412 -214469 Fam168b family with sequence similarity 168, member B Novel U 0.01267628896750194 -0.132681514265131 1.0 4413 -24012 Rgs7 regulator of G protein signaling 7 Novel U 0.012673093563530075 -0.13271461215442834 1.0 4414 -258328 Or8g34 olfactory receptor family 8 subfamily G member 34 Novel U 0.01267296762649107 -0.1327159166061384 1.0 4415 -16636 Klra5 killer cell lectin-like receptor, subfamily A, member 5 Novel U 0.01266768502727591 -0.13277063359515293 1.0 4416 -114716 Spred2 sprouty-related EVH1 domain containing 2 Novel U 0.012666164849899658 -0.13278637954244302 1.0 4417 -66212 Sec61b SEC61 translocon subunit beta Novel U 0.012665658722683024 -0.13279162199151487 1.0 4418 -18436 P2rx1 purinergic receptor P2X, ligand-gated ion channel, 1 Novel N 0.012664800674566821 -0.13280050962569567 1.0 4419 -383435 Ms4a14 membrane-spanning 4-domains, subfamily A, member 14 Novel U 0.012663924327984964 -0.13280958679478222 1.0 4420 -74603 Cd200r3 CD200 receptor 3 Novel U 0.012660580568288662 -0.13284422134779633 1.0 4421 -217305 Cd300ld CD300 molecule like family member d Novel U 0.012660470269749806 -0.13284536381643594 1.0 4422 -57385 P2ry4 pyrimidinergic receptor P2Y, G-protein coupled, 4 Novel N 0.012658390052777581 -0.13286691063545078 1.0 4423 -258912 Or1ad6 olfactory receptor family 1 subfamily AD member 6 Novel U 0.012650559655261259 -0.1329480176355144 1.0 4424 -21930 Tnfaip6 tumor necrosis factor alpha induced protein 6 Novel U 0.012649084483480752 -0.13296329741632323 1.0 4425 -54366 Ctnnal1 catenin alpha like 1 Novel N 0.012649022421309409 -0.13296394025425382 1.0 4426 -240641 Kif20b kinesin family member 20B Novel U 0.012645666654357542 -0.13299869917802637 1.0 4427 -102639868 Anxa2r2 annexin A2 receptor 2 Novel U 0.012641742569152563 -0.1330393447235822 1.0 4428 -18128 Notch1 notch 1 Novel U 0.0126315577041805 -0.1331448392201534 1.0 4429 -56376 Pdlim5 PDZ and LIM domain 5 Novel U 0.012631327535598017 -0.13314722329876438 1.0 4430 -66152 Uqcr10 ubiquinol-cytochrome c reductase, complex III subunit X Novel U 0.01263044577779194 -0.1331563565171335 1.0 4431 -320664 Cass4 Cas scaffolding protein family member 4 Novel U 0.012627662440707631 -0.1331851862311555 1.0 4432 -258320 Or4c124 olfactory receptor family 4 subfamily C member 124 Novel U 0.012617073237822551 -0.13329486884653788 1.0 4433 -224065 Uts2b urotensin 2B Novel U 0.012615237736701517 -0.13331388090681068 1.0 4434 -12165 Gdf2 growth differentiation factor 2 Novel U 0.01260836186919754 -0.13338510091638492 1.0 4435 -258235 Or8k37 olfactory receptor family 8 subfamily K member 37 Novel U 0.012594910629280863 -0.13352442841725617 1.0 4436 -17874 Myd88 myeloid differentiation primary response gene 88 Novel U 0.012593481615657067 -0.13353923009339513 1.0 4437 -259071 Or2l13 olfactory receptor family 2 subfamily L member 13 Novel U 0.012581699070009576 -0.13366127331388153 1.0 4438 -16007 Ccn1 cellular communication network factor 1 Novel U 0.01257523417384687 -0.13372823649581284 1.0 4439 -20339 Sele selectin, endothelial cell Novel U 0.012572598878191565 -0.13375553280157979 1.0 4440 -66813 Bcl2l14 BCL2 like 14 Novel N 0.012567660801591099 -0.1338066812366769 1.0 4441 -76867 Rhbdd1 rhomboid domain containing 1 Novel U 0.012565829499957392 -0.13382564979879805 1.0 4442 -258426 Or5ak25 olfactory receptor family 5 subfamily AK member 25 Novel U 0.012565458970068739 -0.1338294877352042 1.0 4443 -17227 Mcpt4 mast cell protease 4 Novel U 0.012562338937526925 -0.13386180492970676 1.0 4444 -258302 Or6k2 olfactory receptor family 6 subfamily K member 2 Novel U 0.01255711175863557 -0.13391594787682917 1.0 4445 -193813 Mcfd2 multiple coagulation factor deficiency 2 Novel N 0.012554249269166259 -0.13394559744865303 1.0 4446 -16408 Itgal integrin alpha L Novel U 0.012552367856936768 -0.133965085054678 1.0 4447 -22258 Usp4 ubiquitin specific peptidase 4 (proto-oncogene) Novel U 0.012546637862251492 -0.13402443615126466 1.0 4448 -110935 Atp6v1b1 ATPase, H+ transporting, lysosomal V1 subunit B1 Novel N 0.012540256505217466 -0.13409053403764729 1.0 4449 -100039129 Eif1ad11 eukaryotic translation initiation factor 1A domain containing 11 Novel U 0.012536341400089496 -0.13413108656786066 1.0 4450 -234155 Mboat4 membrane bound O-acyltransferase domain containing 4 Novel N 0.012532667989437784 -0.1341691356346342 1.0 4451 -237716 Gpr75 G protein-coupled receptor 75 Novel U 0.012526354637576044 -0.13423452912567785 1.0 4452 -18746 Pkm pyruvate kinase, muscle Novel U 0.012523876617073234 -0.13426019638058542 1.0 4453 -66985 Rassf7 Ras association (RalGDS/AF-6) domain family (N-terminal) member 7 Novel U 0.012522002007156642 -0.134279613528477 1.0 4454 -71887 Ppm1j protein phosphatase 1J Novel U 0.012517737310443687 -0.13432378711683543 1.0 4455 -52440 Tax1bp1 Tax1 (human T cell leukemia virus type I) binding protein 1 Novel U 0.012510947822669243 -0.13439411240801075 1.0 4456 -100043813 Rps27rt ribosomal protein S27, retrogene Novel U 0.012502936584949212 -0.13447709254495957 1.0 4457 -259092 Or52r1 olfactory receptor family 52 subfamily R member 1 Novel U 0.012490909988315382 -0.1346016636375397 1.0 4458 -27387 Sh2d3c SH2 domain containing 3C Novel N 0.012489641287244856 -0.1346148048015219 1.0 4459 -57816 Tesc tescalcin Novel U 0.012489019987814551 -0.1346212402005969 1.0 4460 -18217 Ntsr2 neurotensin receptor 2 Novel N 0.012485067507797527 -0.13466217985868245 1.0 4461 -338366 Mia3 MIA SH3 domain ER export factor 3 Novel U 0.012470320531099427 -0.13481492855854063 1.0 4462 -57264 Retn resistin Novel N 0.012469847998646859 -0.13481982303415066 1.0 4463 -59044 Rnf130 ring finger protein 130 Novel U 0.012465005415260647 -0.1348699823536737 1.0 4464 -12981 Csf2 colony stimulating factor 2 (granulocyte-macrophage) Novel U 0.012455308041938477 -0.13497042742776075 1.0 4465 -387514 Tas2r143 taste receptor, type 2, member 143 Novel U 0.012447407266513204 -0.1350522633998917 1.0 4466 -18506 Pax4 paired box 4 Novel U 0.012444196533925795 -0.13508552006248495 1.0 4467 -258167 Or4p21 olfactory receptor family 4 subfamily P member 21 Novel U 0.012443123250255348 -0.13509663709946115 1.0 4468 -216742 Fnip1 folliculin interacting protein 1 Novel U 0.012440617424395957 -0.13512259236133814 1.0 4469 -76854 Gper1 G protein-coupled estrogen receptor 1 Novel U 0.012440184173852842 -0.13512707995622136 1.0 4470 -258932 Or6c2 olfactory receptor family 6 subfamily C member 2 Novel U 0.0124302103950807 -0.1352303880288729 1.0 4471 -13349 Ackr1 atypical chemokine receptor 1 (Duffy blood group) Novel U 0.012428430519002885 -0.13524882392677665 1.0 4472 -21942 Tnfrsf9 tumor necrosis factor receptor superfamily, member 9 Novel U 0.012427757831514 -0.13525579160167311 1.0 4473 -23999 Twf2 twinfilin actin binding protein 2 Novel U 0.012425116429252626 -0.135283151159465 1.0 4474 -258389 Or4f54 olfactory receptor family 4 subfamily F member 54 Novel U 0.012424638204514012 -0.13528810459558677 1.0 4475 -19217 Ptger2 prostaglandin E receptor 2 (subtype EP2) Novel N 0.012423893028485495 -0.13529582310439378 1.0 4476 -667823 Trim5 tripartite motif-containing 5 Novel U 0.012423440133459121 -0.13530051417618885 1.0 4477 -101148 Bmt2 base methyltransferase of 25S rRNA 2 Novel N 0.01241919393864365 -0.13534449612250138 1.0 4478 -258817 Or52ac1 olfactory receptor family 52 subfamily AC member 1 Novel U 0.012418630499628868 -0.1353503322052944 1.0 4479 -12750 Clk4 CDC like kinase 4 Novel N 0.012417622516264788 -0.1353607728638439 1.0 4480 -259100 Or52n2 olfactory receptor family 52 subfamily N member 2 Novel U 0.012414772478637934 -0.1353902934598929 1.0 4481 -100383 Bsdc1 BSD domain containing 1 Novel U 0.012413022048049288 -0.13540842436238779 1.0 4482 -20210 Saa3 serum amyloid A 3 Novel U 0.012406603851838319 -0.13547490382775418 1.0 4483 -71824 1700006A11Rik RIKEN cDNA 1700006A11 gene Novel U 0.012405926239043238 -0.1354819225188103 1.0 4484 -30044 Opn4 opsin 4 (melanopsin) Novel N 0.012393505543647182 -0.13561057567341428 1.0 4485 -12857 Cox4i1 cytochrome c oxidase subunit 4I1 Novel N 0.01239106226200728 -0.13563588310432184 1.0 4486 -102640594 Cdhr17 cadherin related family member 17 Novel U 0.012388302464209815 -0.13566446899918452 1.0 4487 -70612 Tmem230 transmembrane protein 230 Novel U 0.012387168856805426 -0.13567621086741383 1.0 4488 -18349 Or6z7 olfactory receptor family 6 subfamily Z member 7 Novel U 0.012386934848074061 -0.13567863472216068 1.0 4489 -18817 Plk1 polo like kinase 1 Novel U 0.012381014821593879 -0.13573995416183204 1.0 4490 -20710 Serpinb9e serine (or cysteine) peptidase inhibitor, clade B, member 9e Novel U 0.012374588125874863 -0.13580652166482335 1.0 4491 -252904 Vmn1r69 vomeronasal 1 receptor 69 Novel U 0.012368612152339278 -0.1358684206022554 1.0 4492 -258257 Or4f60 olfactory receptor family 4 subfamily F member 60 Novel U 0.012360635107610164 -0.13595104656932835 1.0 4493 -79196 Osbpl5 oxysterol binding protein-like 5 Novel U 0.012351782994161292 -0.1360427364694342 1.0 4494 -26442 Psma5 proteasome subunit alpha 5 Novel U 0.012346512665939263 -0.13609732635590527 1.0 4495 -214158 Trim38 tripartite motif-containing 38 Novel U 0.012346068789366598 -0.13610192401485327 1.0 4496 -71326 Treml1 triggering receptor expressed on myeloid cells-like 1 Novel U 0.012343623025095429 -0.13612725716077387 1.0 4497 -20715 Serpina3g serine (or cysteine) peptidase inhibitor, clade A, member 3G Novel U 0.012342169678168305 -0.13614231088046883 1.0 4498 -320924 Ccbe1 collagen and calcium binding EGF domains 1 Novel U 0.012341375207937141 -0.1361505399770064 1.0 4499 -100041187 Or52e19 olfactory receptor family 52 subfamily E member 19 Novel U 0.01233668615036541 -0.13619910908118993 1.0 4500 -224840 Treml4 triggering receptor expressed on myeloid cells-like 4 Novel U 0.012335052271875313 -0.1362160327408795 1.0 4501 -494124 Calm5 calmodulin 5 Novel U 0.012332535304274575 -0.1362421034085471 1.0 4502 -54208 Arl6ip1 ADP-ribosylation factor-like 6 interacting protein 1 Novel U 0.012328287890755078 -0.13628609797815586 1.0 4503 -16333 Ins1 insulin I Novel U 0.012327980407888586 -0.136289282875579 1.0 4504 -18368 Or52z1 olfactory receptor family 52 subfamily Z member 1 Novel U 0.012322973400962715 -0.1363411452887207 1.0 4505 -380713 Scarf1 scavenger receptor class F, member 1 Novel U 0.01232006584398207 -0.13637126166834543 1.0 4506 -244701 Mtnr1b melatonin receptor 1B Novel U 0.012317034077296405 -0.1364026646080116 1.0 4507 -230828 Il22ra1 interleukin 22 receptor, alpha 1 Novel U 0.012316215670323215 -0.13641114164053622 1.0 4508 -20508 Slc18a3 solute carrier family 18 (vesicular monoamine), member 3 Novel U 0.012315917600655518 -0.13641422903635572 1.0 4509 -22121 Rpl13a ribosomal protein L13A Novel U 0.012315541682203736 -0.13641812278732163 1.0 4510 -71472 Usp19 ubiquitin specific peptidase 19 Novel U 0.01231467952717473 -0.13642705296077023 1.0 4511 -24056 Sh3bp5 SH3-domain binding protein 5 (BTK-associated) Novel N 0.01231231991561857 -0.1364514937397009 1.0 4512 -22066 Trpc4 transient receptor potential cation channel, subfamily C, member 4 Novel N 0.012310324659788643 -0.13647216053399677 1.0 4513 -20726 Serpinb9d serine (or cysteine) peptidase inhibitor, clade B, member 9d Novel U 0.012308871650923781 -0.13648721075205392 1.0 4514 -21762 Psmd2 proteasome (prosome, macropain) 26S subunit, non-ATPase, 2 Novel U 0.012307755512164273 -0.13649877168063382 1.0 4515 -234344 Naf1 nuclear assembly factor 1 ribonucleoprotein Novel U 0.012301209611768631 -0.136566573901747 1.0 4516 -17202 Mc4r melanocortin 4 receptor Novel N 0.01230043911755794 -0.1365745546554527 1.0 4517 -16153 Il10 interleukin 10 Novel U 0.012291145697486357 -0.13667081559504943 1.0 4518 -230073 Rigi RNA sensor RIG-I Novel U 0.012284396344690389 -0.13674072516943706 1.0 4519 -381605 Tbc1d2 TBC1 domain family, member 2 Novel U 0.01228377954561304 -0.13674711395400405 1.0 4520 -258490 Or5p67 olfactory receptor family 5 subfamily P member 67 Novel U 0.01226982218071668 -0.1368916838807769 1.0 4521 -12802 Cnr2 cannabinoid receptor 2 Novel N 0.012264288078354125 -0.1369490059311244 1.0 4522 -14376 Ganab alpha glucosidase 2 alpha neutral subunit Novel N 0.012258973907481157 -0.13700404993833265 1.0 4523 -14525 Gcsam germinal center associated, signaling and motility Novel U 0.012255598151201485 -0.1370390159109055 1.0 4524 -30927 Snai3 snail family zinc finger 3 Novel U 0.012254066701991658 -0.1370548786114772 1.0 4525 -258858 Or7c19 olfactory receptor family 7 subfamily C member 19 Novel U 0.012246313671062575 -0.13713518425097349 1.0 4526 -18037 Nfkbie nuclear factor of kappa light polypeptide gene enhancer in B cells inhibitor, epsilon Novel U 0.012245782933567588 -0.1371406816124995 1.0 4527 -67444 Ilkap integrin-linked kinase-associated serine/threonine phosphatase 2C Novel U 0.012242662786014427 -0.13717299999828583 1.0 4528 -15557 Htr1f 5-hydroxytryptamine (serotonin) receptor 1F Novel N 0.01224261702955951 -0.1371734739421417 1.0 4529 -26370 Cetn2 centrin 2 Novel U 0.012238085337710121 -0.1372204130573463 1.0 4530 -226419 Dyrk3 dual-specificity tyrosine phosphorylation regulated kinase 3 Novel U 0.012236632945849413 -0.1372354568844947 1.0 4531 -258413 Or8b35 olfactory receptor family 8 subfamily B member 35 Novel U 0.012234664819108707 -0.13725584267657626 1.0 4532 -16591 Kl klotho Novel U 0.01223280879047314 -0.1372750673601698 1.0 4533 -27215 Azi2 5-azacytidine induced gene 2 Novel U 0.012231875856524665 -0.13728473065933958 1.0 4534 -224552 Vmn2r98 vomeronasal 2, receptor 98 Novel U 0.01223096764057674 -0.13729413793027218 1.0 4535 -73677 Psma8 proteasome subunit alpha 8 Novel U 0.012229623827062754 -0.13730805710647456 1.0 4536 -76795 Tbc1d9b TBC1 domain family, member 9B Novel U 0.01221920069857984 -0.1374160195286587 1.0 4537 -75826 Senp2 SUMO/sentrin specific peptidase 2 Novel U 0.012210326191126806 -0.1375079413851235 1.0 4538 -99010 Lpcat4 lysophosphatidylcholine acyltransferase 4 Novel U 0.012209403047296003 -0.13751750327857623 1.0 4539 -74136 Sec14l1 SEC14-like lipid binding 1 Novel U 0.012201816534028975 -0.13759608413360294 1.0 4540 -74477 4933427D14Rik RIKEN cDNA 4933427D14 gene Novel N 0.01219459181787136 -0.13767091750606375 1.0 4541 -83961 Nrg4 neuregulin 4 Novel U 0.01219414311372954 -0.13767556516881435 1.0 4542 -16399 Itga2b integrin alpha 2b Novel N 0.012192032619704174 -0.13769742559655035 1.0 4543 -239691 AU021092 expressed sequence AU021092 Novel U 0.012184194191064155 -0.1377786157827292 1.0 4544 -54446 Nfat5 nuclear factor of activated T cells 5 Novel U 0.01218192163844301 -0.1378021548080729 1.0 4545 -258381 Or9a4 olfactory receptor family 9 subfamily A member 4 Novel U 0.012181878463555191 -0.13780260201214162 1.0 4546 -622976 Gm6377 predicted gene 6377 Novel U 0.012178034166512483 -0.13784242111453554 1.0 4547 -68272 Rbm28 RNA binding motif protein 28 Novel U 0.012176597103427464 -0.13785730616672925 1.0 4548 -258487 Or4n5 olfactory receptor family 4 subfamily N member 5 Novel U 0.012176081770150135 -0.13786264397187517 1.0 4549 -19166 Psma2 proteasome subunit alpha 2 Novel U 0.012168018316809557 -0.1379461649565051 1.0 4550 -57778 Fmnl1 formin-like 1 Novel U 0.01216218598826261 -0.13800657602386693 1.0 4551 -69675 Pxdn peroxidasin Novel U 0.012160617364138671 -0.13802282378097694 1.0 4552 -93739 Gabarapl2 GABA type A receptor associated protein like 2 Novel U 0.012159104296019503 -0.13803849609081584 1.0 4553 -26357 Abcg2 ATP binding cassette subfamily G member 2 (Junior blood group) Novel U 0.01215698083722223 -0.13806049080723304 1.0 4554 -330177 Taok3 TAO kinase 3 Novel U 0.012154077075759915 -0.1380905678730037 1.0 4555 -21393 Tcap titin-cap Novel U 0.01214118150806804 -0.1382241397392372 1.0 4556 -235461 Mindy2 MINDY lysine 48 deubiquitinase 2 Novel U 0.012122733718097734 -0.13841522134131118 1.0 4557 -54526 Syt10 synaptotagmin X Novel U 0.012119473764479442 -0.13844898783372425 1.0 4558 -387341 Tas2r106 taste receptor, type 2, member 106 Novel U 0.012102994096275698 -0.13861968369523872 1.0 4559 -258139 Or52s1b olfactory receptor family 52 subfamily S member 1B Novel U 0.012087569602336748 -0.13877945009640544 1.0 4560 -258772 Or6c74 olfactory receptor family 6 subfamily C member 74 Novel U 0.012087196357212377 -0.1387833161571339 1.0 4561 -107831 Adgrb1 adhesion G protein-coupled receptor B1 Novel U 0.012084265664547083 -0.1388136721754197 1.0 4562 -69104 Marchf5 membrane associated ring-CH-type finger 5 Novel U 0.012081118708204835 -0.13884626824576207 1.0 4563 -258934 Or6c1 olfactory receptor family 6 subfamily C member 1 Novel U 0.012079651625639719 -0.1388614642387438 1.0 4564 -233919 Gpr26 G protein-coupled receptor 26 Novel N 0.012077256842644974 -0.13888626932227913 1.0 4565 -15560 Htr2c 5-hydroxytryptamine (serotonin) receptor 2C Novel U 0.012074620386082613 -0.13891357765268322 1.0 4566 -246788 Trpv3 transient receptor potential cation channel, subfamily V, member 3 Novel U 0.012073791389100008 -0.13892216437617724 1.0 4567 -20044 Rps14 ribosomal protein S14 Novel U 0.012072440939141256 -0.13893615229245634 1.0 4568 -65106 Arl6ip5 ADP-ribosylation factor-like 6 interacting protein 5 Novel U 0.012071905119641912 -0.13894170229321642 1.0 4569 -70604 Dnajb14 DnaJ heat shock protein family (Hsp40) member B14 Novel U 0.012069054193461068 -0.13897123209287846 1.0 4570 -258955 Or2j6 olfactory receptor family 2 subfamily J member 6 Novel U 0.01206440167743344 -0.1390194227009494 1.0 4571 -16792 Laptm5 lysosomal-associated protein transmembrane 5 Novel U 0.012055831384926517 -0.13910819350900291 1.0 4572 -625068 Vmn2r84 vomeronasal 2, receptor 84 Novel U 0.01204508375673017 -0.13921951708855143 1.0 4573 -56457 Clptm1 cleft lip and palate associated transmembrane protein 1 Novel U 0.012044308944390963 -0.13922754256929035 1.0 4574 -18363 Or13p10 olfactory receptor family 13 subfamily P member 10 Novel U 0.012038842406396412 -0.13928416479013517 1.0 4575 -56175 Bace2 beta-site APP-cleaving enzyme 2 Novel U 0.012038242429750889 -0.13929037932850633 1.0 4576 -73804 Kif2c kinesin family member 2C Novel U 0.012033646052477597 -0.1393379884532053 1.0 4577 -60345 Nrip2 nuclear receptor interacting protein 2 Novel U 0.012028684099613787 -0.13938938419785324 1.0 4578 -258169 Or52z15 olfactory receptor family 52 subfamily Z member 15 Novel U 0.012026679783656501 -0.13941014483665048 1.0 4579 -53945 Slc40a1 solute carrier family 40 (iron-regulated transporter), member 1 Novel U 0.0120176012249135 -0.13950418024966893 1.0 4580 -14609 Gja1 gap junction protein, alpha 1 Novel U 0.012016373453165903 -0.13951689746906973 1.0 4581 -18667 Pgr progesterone receptor Novel U 0.012015124332456228 -0.13952983582031792 1.0 4582 -70310 Plscr3 phospholipid scramblase 3 Novel U 0.012006732562128286 -0.13961675750151015 1.0 4583 -74206 Sipa1l3 signal-induced proliferation-associated 1 like 3 Novel U 0.012002505593178286 -0.1396605403069401 1.0 4584 -320802 Ifitm10 interferon induced transmembrane protein 10 Novel U 0.011997733591319611 -0.13970996854532117 1.0 4585 -245525 Hsf3 heat shock transcription factor 3 Novel U 0.011996672991263922 -0.13972095420583264 1.0 4586 -258615 Or12k7 olfactory receptor family 12 subfamily K member 7 Novel U 0.011989032364023556 -0.13980009557161627 1.0 4587 -238395 Serpina3j serine (or cysteine) peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 3J Novel U 0.011981967502954301 -0.1398732731703268 1.0 4588 -100041177 Gm3182 predicted gene 3182 Novel U 0.01197990077282294 -0.13989468029308735 1.0 4589 -77945 Rpgrip1 retinitis pigmentosa GTPase regulator interacting protein 1 Novel U 0.011969368584769423 -0.14000377235071865 1.0 4590 -72042 Cotl1 coactosin like F-actin binding protein 1 Novel U 0.011964965320052031 -0.14004938122191188 1.0 4591 -54151 Zftraf1 zinc finger TRAF type containing 1 Novel U 0.011957563541308652 -0.1401260486028154 1.0 4592 -209590 Il23r interleukin 23 receptor Novel U 0.011949005484362668 -0.14021469267533096 1.0 4593 -16175 Il1a interleukin 1 alpha Novel U 0.011942463493358707 -0.14028245440309361 1.0 4594 -14344 Fut2 fucosyltransferase 2 Novel N 0.011941809016654103 -0.14028923345128513 1.0 4595 -14728 Lilrb4a leukocyte immunoglobulin-like receptor, subfamily B, member 4A Novel U 0.011933393218716958 -0.14037640400966364 1.0 4596 -75316 Taf1d TATA-box binding protein associated factor, RNA polymerase I, D Novel U 0.011924444356123623 -0.1404690960342274 1.0 4597 -12217 Bsn bassoon Novel N 0.011920049484339735 -0.14051461797169126 1.0 4598 -258412 Or8b9 olfactory receptor family 8 subfamily B member 9 Novel U 0.011916980371157296 -0.1405464077451433 1.0 4599 -68514 Micu2 mitochondrial calcium uptake 2 Novel N 0.011915557495676365 -0.1405611458426003 1.0 4600 -434215 Lrrc32 leucine rich repeat containing 32 Novel U 0.011911953900225595 -0.14059847176581755 1.0 4601 -258683 Or5an1c olfactory receptor family 5 subfamily AN member 1C Novel U 0.011910057802418453 -0.14061811148457307 1.0 4602 -68053 Ubxn2b UBX domain protein 2B Novel U 0.011908726247689492 -0.14063190368468315 1.0 4603 -77042 Hyal4 hyaluronoglucosaminidase 4 Novel N 0.011900703702409234 -0.14071500094496908 1.0 4604 -258463 Or2y1g olfactory receptor family 2 subfamily Y member 1G Novel U 0.011899856377392186 -0.14072377750964135 1.0 4605 -244233 Scart1 scavenger receptor family member expressed on T cells 1 Novel U 0.011898402520512878 -0.14073883651140426 1.0 4606 -258798 Or8b43 olfactory receptor family 8 subfamily B member 43 Novel U 0.01189163731031224 -0.14080891033626816 1.0 4607 -64177 Trpv6 transient receptor potential cation channel, subfamily V, member 6 Novel U 0.011888586748163047 -0.14084050795872766 1.0 4608 -17975 Ncl nucleolin Novel U 0.011879393931895854 -0.1409357268474257 1.0 4609 -268739 Arhgef40 Rho guanine nucleotide exchange factor 40 Novel U 0.01187904942348991 -0.14093929525416934 1.0 4610 -20319 Sfrp2 secreted frizzled-related protein 2 Novel N 0.011875453300780034 -0.1409765437749821 1.0 4611 -387285 Hcrtr2 hypocretin (orexin) receptor 2 Novel N 0.011871592885487683 -0.14101652982967594 1.0 4612 -258329 Or2n1c olfactory receptor family 2 subfamily N member 1C Novel U 0.011869940436913338 -0.14103364583768768 1.0 4613 -65970 Lima1 LIM domain and actin binding 1 Novel U 0.01186227825375284 -0.14111301047898342 1.0 4614 -258904 Or4c116 olfactory receptor family 4 subfamily C member 116 Novel U 0.011853691292862201 -0.14120195393760754 1.0 4615 -50720 Sacs sacsin Novel U 0.011845855788514258 -0.1412831138340652 1.0 4616 -22628 Ywhag tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, gamma polypeptide Novel U 0.011845525598654752 -0.14128653392977555 1.0 4617 -14800 Gria2 glutamate receptor, ionotropic, AMPA2 (alpha 2) Novel N 0.011834193568348332 -0.141403910727169 1.0 4618 -258309 Or56b1 olfactory receptor family 56 subfamily B member 1 Novel U 0.011833325642554843 -0.14141290067400644 1.0 4619 -16183 Il2 interleukin 2 Novel U 0.011832688245406842 -0.14141950281271215 1.0 4620 -15951 Ifi204 interferon activated gene 204 Novel U 0.011832151566813552 -0.14142506171193908 1.0 4621 -258354 Or2l13b olfactory receptor family 2 subfamily L member 13B Novel U 0.011830228499020027 -0.14144498078492698 1.0 4622 -243407 Qrfprl pyroglutamylated RFamide peptide receptor like Novel U 0.011822791330336674 -0.14152201473366538 1.0 4623 -76824 Mtfr1l mitochondrial fission regulator 1-like Novel U 0.011821673091985932 -0.14153359740974225 1.0 4624 -258450 Or4c104 olfactory receptor family 4 subfamily C member 104 Novel U 0.011815642279274513 -0.14159606436955485 1.0 4625 -666279 Dspp dentin sialophosphoprotein Novel U 0.011814544936265249 -0.1416074306123716 1.0 4626 -20869 Stk11 serine/threonine kinase 11 Novel U 0.011807745120638449 -0.1416778628791021 1.0 4627 -66052 Sdhc succinate dehydrogenase complex, subunit C, integral membrane protein Novel U 0.011806276226000834 -0.1416930776414712 1.0 4628 -258087 Or10d4 olfactory receptor family 10 subfamily D member 4 Novel U 0.01180534510448293 -0.1417027221675447 1.0 4629 -208634 Tspan10 tetraspanin 10 Novel U 0.011798657431925 -0.14177199286005435 1.0 4630 -230917 Tmem201 transmembrane protein 201 Novel U 0.011793950398569723 -0.1418207481568129 1.0 4631 -29820 Tnfrsf19 tumor necrosis factor receptor superfamily, member 19 Novel U 0.011788843097189488 -0.1418736494166159 1.0 4632 -217169 Tns4 tensin 4 Novel N 0.01178164935415582 -0.14194816197047708 1.0 4633 -258730 Or5p59 olfactory receptor family 5 subfamily P member 59 Novel U 0.011766506250394613 -0.14210501374143292 1.0 4634 -53859 Map3k14 mitogen-activated protein kinase kinase kinase 14 Novel N 0.011760786854473569 -0.1421642550563681 1.0 4635 -20347 Sema3b sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3B Novel U 0.011757602650693328 -0.14219723693444875 1.0 4636 -545814 Smok3a sperm motility kinase 3A Novel U 0.011755806287156171 -0.14221584360891437 1.0 4637 -60361 Ms4a4b membrane-spanning 4-domains, subfamily A, member 4B Novel U 0.011750985659673082 -0.1422657755099146 1.0 4638 -94040 Clmn calmin Novel U 0.011749359683995318 -0.1422826173125338 1.0 4639 -258776 Or2d2 olfactory receptor family 2 subfamily D member 2 Novel U 0.011744642575440467 -0.14233147696787837 1.0 4640 -16580 Kifc5b kinesin family member C5B Novel U 0.011741160164682685 -0.1423675476640294 1.0 4641 -27027 Tspan32 tetraspanin 32 Novel N 0.01173778452026078 -0.14240251247798313 1.0 4642 -258804 Or4a68 olfactory receptor family 4 subfamily A member 68 Novel U 0.011734270432044298 -0.14243891128821004 1.0 4643 -434219 Trim30c tripartite motif-containing 30C Novel U 0.011733540530943701 -0.14244647157981583 1.0 4644 -229841 Cenpe centromere protein E Novel U 0.011733161674421433 -0.14245039576321925 1.0 4645 -66597 Trim13 tripartite motif-containing 13 Novel U 0.011732837375660847 -0.14245375483912062 1.0 4646 -258970 Or4a70 olfactory receptor family 4 subfamily A member 70 Novel U 0.011723574650015407 -0.1425496978468604 1.0 4647 -15530 Hspg2 perlecan (heparan sulfate proteoglycan 2) Novel U 0.011722153503820281 -0.14256441803243183 1.0 4648 -16952 Anxa1 annexin A1 Novel U 0.011720157063244849 -0.14258509709828274 1.0 4649 -30839 Fbxw5 F-box and WD-40 domain protein 5 Novel U 0.011717032007109135 -0.14261746632700575 1.0 4650 -404322 Or8d2 olfactory receptor family 8 subfamily D member 2 Novel U 0.011716240788372273 -0.14262566174467226 1.0 4651 -26364 Adgre5 adhesion G protein-coupled receptor E5 Novel N 0.011715803745933456 -0.14263018861588653 1.0 4652 -667759 Gm8797 ubiquitin B pseudogene Novel U 0.011713932221116004 -0.14264957380842264 1.0 4653 -13688 Eif4ebp2 eukaryotic translation initiation factor 4E binding protein 2 Novel N 0.011710538250398587 -0.14268472844554286 1.0 4654 -24058 Sigirr single immunoglobulin and toll-interleukin 1 receptor (TIR) domain Novel U 0.01170852367501415 -0.14270559535114927 1.0 4655 -18373 Or10p22 olfactory receptor family 10 subfamily P member 22 Novel U 0.011704544883602752 -0.1427468075417928 1.0 4656 -259115 Or51a5 olfactory receptor family 51 subfamily A member 5 Novel U 0.01169903678898556 -0.14280386020476882 1.0 4657 -101543 Wtip WT1 interacting protein Novel U 0.011695065614967932 -0.1428449934946981 1.0 4658 -53890 Sart3 squamous cell carcinoma antigen recognized by T cells 3 Novel N 0.011690129740735957 -0.14289611911773475 1.0 4659 -18332 Or51a39 olfactory receptor family 51 subfamily A member 39 Novel U 0.011689938557734855 -0.14289809938497539 1.0 4660 -319604 Fam168a family with sequence similarity 168, member A Novel N 0.011689474493641995 -0.14290290614559395 1.0 4661 -66340 Psenen presenilin enhancer gamma secretase subunit Novel U 0.01168785906120773 -0.14291963874164357 1.0 4662 -14245 Lpin1 lipin 1 Novel U 0.01167626026602229 -0.14303977868088452 1.0 4663 -320472 Ppm1e protein phosphatase 1E (PP2C domain containing) Novel U 0.011661546493301051 -0.1431921834550419 1.0 4664 -12306 Anxa2 annexin A2 Novel U 0.011660024451266278 -0.14320794871640363 1.0 4665 -327900 Ubtd2 ubiquitin domain containing 2 Novel U 0.011649865477701395 -0.14331317503063043 1.0 4666 -71690 Esm1 endothelial cell-specific molecule 1 Novel U 0.011649676559343063 -0.14331513184077566 1.0 4667 -20340 Glg1 golgi apparatus protein 1 Novel U 0.011646592864214239 -0.143347072653549 1.0 4668 -11907 Ate1 arginyltransferase 1 Novel U 0.01164197499610644 -0.14339490437960536 1.0 4669 -54598 Calcrl calcitonin receptor-like Novel U 0.011634597705289604 -0.14347131811537076 1.0 4670 -102636558 LOC102636558 component of Sp100-rs-like Novel U 0.01163115868771371 -0.14350693934637027 1.0 4671 -214951 Rhbdl1 rhomboid like 1 Novel N 0.011630031744607455 -0.1435186121860186 1.0 4672 -108089 Rnf144a ring finger protein 144A Novel N 0.011607046314803325 -0.14375669451232448 1.0 4673 -433693 Akirin2 akirin 2 Novel U 0.011605574824305508 -0.1437719361625282 1.0 4674 -231997 Fkbp14 FK506 binding protein 14 Novel U 0.011604595631140182 -0.14378207861314543 1.0 4675 -258246 Or52e3 olfactory receptor family 52 subfamily E member 3 Novel U 0.01159950312067352 -0.14383482666915184 1.0 4676 -22201 Uba1 ubiquitin-like modifier activating enzyme 1 Novel U 0.011597649742167154 -0.14385402390279425 1.0 4677 -258783 Or8b53 olfactory receptor family 8 subfamily B member 53 Novel U 0.011597579326490848 -0.14385475326605462 1.0 4678 -258403 Or8k27 olfactory receptor family 8 subfamily K member 27 Novel U 0.011586881720273327 -0.14396555871959085 1.0 4679 -246103 Atxn7 ataxin 7 Novel U 0.011586462364865227 -0.14396990238912238 1.0 4680 -54197 Rnf5 ring finger protein 5 Novel U 0.011573260295053895 -0.1441066489942335 1.0 4681 -14164 Fgf1 fibroblast growth factor 1 Novel U 0.01156275412346237 -0.14421547157420672 1.0 4682 -104248 Cabin1 calcineurin binding protein 1 Novel N 0.011561878297113894 -0.144224543354733 1.0 4683 -17761 Map7 microtubule-associated protein 7 Novel U 0.011556422224354759 -0.1442810571770134 1.0 4684 -54381 Cpq carboxypeptidase Q Novel N 0.01155522976067095 -0.14429340867665016 1.0 4685 -16638 Klra7 killer cell lectin-like receptor, subfamily A, member 7 Novel U 0.011552750598201683 -0.14431908776000874 1.0 4686 -50849 Rnf10 ring finger protein 10 Novel U 0.011547451479358387 -0.14437397585878847 1.0 4687 -17910 Myo15a myosin XVA Novel N 0.011545525972905915 -0.14439392019132555 1.0 4688 -258277 Or8s8 olfactory receptor family 8 subfamily S member 8 Novel U 0.011544624503758032 -0.14440325757912512 1.0 4689 -546747 Or6y1 olfactory receptor family 6 subfamily Y member 1 Novel U 0.011538767521917443 -0.144463924004492 1.0 4690 -13067 Cyct cytochrome c, testis Novel U 0.011537937619384037 -0.14447252010765146 1.0 4691 -28169 Agpat3 1-acylglycerol-3-phosphate O-acyltransferase 3 Novel U 0.011534161344236736 -0.14451163464148886 1.0 4692 -22227 Ucp1 uncoupling protein 1 (mitochondrial, proton carrier) Novel N 0.01153415942768993 -0.14451165449301767 1.0 4693 -620246 Gpr52 G protein-coupled receptor 52 Novel N 0.011533250057121164 -0.144521073723475 1.0 4694 -11746 Anxa4 annexin A4 Novel U 0.011531333721767798 -0.14454092306206903 1.0 4695 -258752 Or51f1d olfactory receptor family 51 subfamily F member 1D Novel U 0.011522119864050839 -0.14463635989741205 1.0 4696 -20184 Uimc1 ubiquitin interaction motif containing 1 Novel U 0.011521303287012013 -0.14464481797553666 1.0 4697 -381390 Gm14147 predicted gene 14147 Novel U 0.011520773145686076 -0.14465030916196328 1.0 4698 -24014 Rnasel ribonuclease L (2', 5'-oligoisoadenylate synthetase-dependent) Novel U 0.01151207524460105 -0.1447404017354739 1.0 4699 -258341 Or10q12 olfactory receptor family 10 subfamily Q member 12 Novel U 0.011509019100980712 -0.14477205717062802 1.0 4700 -257890 Or9s13 olfactory receptor family 9 subfamily S member 13 Novel U 0.011507875530920161 -0.14478390223172238 1.0 4701 -223921 Aaas achalasia, adrenocortical insufficiency, alacrimia Novel U 0.01150325755065134 -0.1448317351195389 1.0 4702 -404318 Or56a3b olfactory receptor family 56 subfamily A member 3B Novel U 0.01150314594461755 -0.14483289113116804 1.0 4703 -14760 Gpr19 G protein-coupled receptor 19 Novel U 0.01150085487161545 -0.14485662199000884 1.0 4704 -22411 Wnt11 wingless-type MMTV integration site family, member 11 Novel U 0.01149796084846887 -0.14488659818662522 1.0 4705 -54611 Pde3a phosphodiesterase 3A, cGMP inhibited Novel U 0.011491330156751738 -0.14495527867345903 1.0 4706 -16532 Kcnu1 potassium channel, subfamily U, member 1 Novel U 0.011488025765836093 -0.14498950544593728 1.0 4707 -231380 Uba6 ubiquitin-like modifier activating enzyme 6 Novel U 0.01148743171131731 -0.14499565864311434 1.0 4708 -257872 Or7g20 olfactory receptor family 7 subfamily G member 20 Novel U 0.011482937805486594 -0.1450422063719797 1.0 4709 -14129 Fcgr1 Fc receptor, IgG, high affinity I Novel U 0.011473247935187598 -0.14514257372999936 1.0 4710 -67072 Cdc37l1 cell division cycle 37-like 1 Novel U 0.011467604769747874 -0.14520102545211497 1.0 4711 -109624 Cald1 caldesmon 1 Novel U 0.011461300747320982 -0.14526632230917913 1.0 4712 -18985 Pou2af1 POU domain, class 2, associating factor 1 Novel U 0.011461059771244377 -0.14526881833145897 1.0 4713 -70350 Basp1 brain abundant, membrane attached signal protein 1 Novel N 0.01145704830908097 -0.1453103689246778 1.0 4714 -72368 Borcs8 BLOC-1 related complex subunit 8 Novel U 0.01145656556334292 -0.14531536918916313 1.0 4715 -381538 Mroh7 maestro heat-like repeat family member 7 Novel U 0.01145304584847564 -0.145351826280054 1.0 4716 -21771 Utp4 UTP4 small subunit processome component Novel N 0.011450944062950337 -0.1453735965054326 1.0 4717 -214593 Duox2 dual oxidase 2 Novel U 0.011447793040725593 -0.14540623469005223 1.0 4718 -113939900 Gm50457 predicted gene, 50457 Novel U 0.011442470775073642 -0.14546136254271508 1.0 4719 -66439 Borcs7 BLOC-1 related complex subunit 7 Novel U 0.011439245220624804 -0.14549477272966177 1.0 4720 -226122 Ubtd1 ubiquitin domain containing 1 Novel U 0.011438385888659577 -0.14550367366190856 1.0 4721 -100042450 Smim17 small integral membrane protein 17 Novel U 0.011434146367679292 -0.1455475864808556 1.0 4722 -258865 Or5ak22 olfactory receptor family 5 subfamily AK member 22 Novel U 0.011434126158025684 -0.14554779581178334 1.0 4723 -12336 Capns1 calpain, small subunit 1 Novel N 0.01141620597698993 -0.14573341245785745 1.0 4724 -239027 Arhgap22 Rho GTPase activating protein 22 Novel U 0.011416110486861163 -0.14573440154147216 1.0 4725 -259053 Or1b1 olfactory receptor family 1 subfamily B member 1 Novel U 0.011410881508181408 -0.14578856313074365 1.0 4726 -328830 A530064D06Rik RIKEN cDNA A530064D06 gene Novel U 0.011405855981690595 -0.1458406173689302 1.0 4727 -381319 Batf3 basic leucine zipper transcription factor, ATF-like 3 Novel N 0.011403767865112708 -0.1458622460118008 1.0 4728 -217333 Trim47 tripartite motif-containing 47 Novel N 0.011401388313680908 -0.14588689332730786 1.0 4729 -170737 Znrf1 zinc and ring finger 1 Novel U 0.011396398178356216 -0.14593858098495915 1.0 4730 -60440 Iigp1 interferon inducible GTPase 1 Novel U 0.011392856335499059 -0.14597526727684176 1.0 4731 -18366 Or51b17 olfactory receptor family 51 subfamily B member 17 Novel U 0.011390204582672496 -0.14600273404544764 1.0 4732 -664987 Gm14393 predicted gene 14393 Novel U 0.011389837945904376 -0.1460065316570393 1.0 4733 -17952 Naip6 NLR family, apoptosis inhibitory protein 6 Novel U 0.011388869399195978 -0.14601656383200562 1.0 4734 -266692 Cpne1 copine I Novel U 0.011386748545103562 -0.14603853156897553 1.0 4735 -258492 Or5p60 olfactory receptor family 5 subfamily P member 60 Novel U 0.011377367233174989 -0.14613570288953767 1.0 4736 -18129 Notch2 notch 2 Novel U 0.011366122771917508 -0.14625217264960091 1.0 4737 -258400 Or8k41 olfactory receptor family 8 subfamily K member 41 Novel U 0.01136451831708207 -0.14626879154004277 1.0 4738 -68416 Sycn syncollin Novel U 0.011354963824422347 -0.14636775666092516 1.0 4739 -20423 Shh sonic hedgehog Novel U 0.011351202910893934 -0.14640671207961908 1.0 4740 -12005 Axin1 axin 1 Novel U 0.011348422309876765 -0.14643551345354758 1.0 4741 -258422 Or11g26 olfactory receptor family 11 subfamily G member 26 Novel U 0.011346816263950966 -0.1464521488244511 1.0 4742 -258953 Or1j12 olfactory receptor family 1 subfamily J member 12 Novel U 0.011340168326918115 -0.1465210079376982 1.0 4743 -320407 Klri2 killer cell lectin-like receptor family I member 2 Novel U 0.011324350485563024 -0.14668484861847073 1.0 4744 -258869 Or8b3 olfactory receptor family 8 subfamily B member 3 Novel U 0.01132249140400693 -0.14670410492411473 1.0 4745 -171183 Vmn1r37 vomeronasal 1 receptor 37 Novel U 0.011318837593954197 -0.1467419509685284 1.0 4746 -268480 Rapgefl1 Rap guanine nucleotide exchange factor (GEF)-like 1 Novel N 0.011317600230671798 -0.14675476753673136 1.0 4747 -217684 Susd6 sushi domain containing 6 Novel N 0.011316763509448378 -0.1467634342676578 1.0 4748 -66686 Dcbld1 discoidin, CUB and LCCL domain containing 1 Novel U 0.011311777186699222 -0.14681508243477703 1.0 4749 -21951 Tnks tankyrase, TRF1-interacting ankyrin-related ADP-ribose polymerase Novel U 0.011306904167308259 -0.14686555700943676 1.0 4750 -258259 Or10ak14 olfactory receptor family 10 subfamily AK member 14 Novel U 0.011305472530901342 -0.14688038585227708 1.0 4751 -258739 Or2w4 olfactory receptor family 2 subfamily W member 4 Novel U 0.011297128803431719 -0.1469668099071222 1.0 4752 -257905 Or14a257 olfactory receptor family 14 subfamily A member 257 Novel U 0.011295200922310466 -0.14698677883640043 1.0 4753 -232408 Klrb1f killer cell lectin-like receptor subfamily B member 1F Novel U 0.011292767617734978 -0.14701198292520276 1.0 4754 -72828 Ubash3b ubiquitin associated and SH3 domain containing, B Novel U 0.01128971485253683 -0.14704360336677094 1.0 4755 -19230 Twf1 twinfilin actin binding protein 1 Novel U 0.011283309870881868 -0.1471099459562006 1.0 4756 -21338 Tacr3 tachykinin receptor 3 Novel U 0.01127598749150422 -0.14718579092108403 1.0 4757 -404312 Or8c10 olfactory receptor family 8 subfamily C member 10 Novel U 0.011265135600041833 -0.14729819445611472 1.0 4758 -320119 Rps6kc1 ribosomal protein S6 kinase polypeptide 1 Novel N 0.011264953798042345 -0.147300077555249 1.0 4759 -238266 Syt16 synaptotagmin XVI Novel U 0.011262131813875411 -0.14732930757448234 1.0 4760 -53608 Map3k6 mitogen-activated protein kinase kinase kinase 6 Novel N 0.011256726375599237 -0.14738529692645275 1.0 4761 -74286 Tbc1d21 TBC1 domain family, member 21 Novel U 0.011252974985529464 -0.14742415370147516 1.0 4762 -66854 Trim35 tripartite motif-containing 35 Novel N 0.011239690941760017 -0.14756174939014968 1.0 4763 -69957 Cdc16 CDC16 cell division cycle 16 Novel U 0.01123816886309228 -0.14757751503095445 1.0 4764 -258746 Or52h1 olfactory receptor family 52 subfamily H member 1 Novel U 0.011237542292726678 -0.14758400502620397 1.0 4765 -142980 Tlr3 toll-like receptor 3 Novel U 0.011235431914857746 -0.14760586425079544 1.0 4766 -14762 Gpr33 G protein-coupled receptor 33 Novel U 0.011234257803128953 -0.14761802566148544 1.0 4767 -16581 Kifc2 kinesin family member C2 Novel U 0.011232866518940772 -0.1476324365373706 1.0 4768 -17169 Mark3 MAP/microtubule affinity regulating kinase 3 Novel U 0.011232035463743361 -0.1476410445797859 1.0 4769 -71835 Lancl2 LanC (bacterial lantibiotic synthetase component C)-like 2 Novel N 0.011229369545402733 -0.1476686580743208 1.0 4770 -268980 Strn striatin, calmodulin binding protein Novel N 0.011229084373126681 -0.1476716118793816 1.0 4771 -66114 Dnajc30 DnaJ heat shock protein family (Hsp40) member C30 Novel U 0.011217815144975744 -0.1477883381741131 1.0 4772 -20191 Ryr2 ryanodine receptor 2, cardiac Novel U 0.011217125793651531 -0.1477954784524681 1.0 4773 -93834 Peli2 pellino 2 Novel U 0.01121242220387089 -0.14784419808079377 1.0 4774 -233081 Ffar1 free fatty acid receptor 1 Novel U 0.011205393935692615 -0.14791699665154248 1.0 4775 -258517 Or7g35 olfactory receptor family 7 subfamily G member 35 Novel U 0.011191754911983024 -0.14805826921076767 1.0 4776 -12496 Entpd2 ectonucleoside triphosphate diphosphohydrolase 2 Novel U 0.011191499526772477 -0.14806091448238318 1.0 4777 -224650 Anks1 ankyrin repeat and SAM domain containing 1 Novel U 0.011190523894928878 -0.14807102004494702 1.0 4778 -21672 Prdx2 peroxiredoxin 2 Novel N 0.01118992437963916 -0.1480772298046099 1.0 4779 -11609 Agtr2 angiotensin II receptor, type 2 Novel U 0.01118914514546065 -0.14808530108661497 1.0 4780 -229499 Fcrl1 Fc receptor-like 1 Novel U 0.011178155932376756 -0.14819912699448703 1.0 4781 -12366 Casp2 caspase 2 Novel N 0.011177389079083158 -0.14820707003569317 1.0 4782 -57781 Cd200r1 CD200 receptor 1 Novel U 0.011162430558754443 -0.14836200989752313 1.0 4783 -259019 Or8j3 olfactory receptor family 8 subfamily J member 3 Novel U 0.0111616092477211 -0.14837051701020737 1.0 4784 -78506 Micu3 mitochondrial calcium uptake family, member 3 Novel U 0.011155116826764433 -0.14843776529304967 1.0 4785 -22152 Tubb3 tubulin, beta 3 class III Novel U 0.011150324339213341 -0.14848740572155933 1.0 4786 -237781 Mief2 mitochondrial elongation factor 2 Novel U 0.011138637068285493 -0.14860846208963166 1.0 4787 -68553 Col6a4 collagen, type VI, alpha 4 Novel U 0.011134387267828722 -0.14865248138305823 1.0 4788 -17897 Myl3 myosin, light polypeptide 3 Novel U 0.01113412125912268 -0.14865523669249084 1.0 4789 -30878 Apln apelin Novel U 0.011119958753939065 -0.14880193145561546 1.0 4790 -625605 Vmn2r49 vomeronasal 2, receptor 49 Novel U 0.011114787336101046 -0.14885549683158045 1.0 4791 -12585 Cdr2 cerebellar degeneration-related 2 Novel U 0.01111177799228208 -0.14888666751593047 1.0 4792 -259006 Or3a4 olfactory receptor family 3 subfamily A member 4 Novel U 0.011111101642670944 -0.1488936731229688 1.0 4793 -243369 Sspo SCO-spondin Novel U 0.011106304110551187 -0.14894336580295486 1.0 4794 -71764 C2cd2l C2 calcium-dependent domain containing 2-like Novel U 0.011103573396258889 -0.1489716504518271 1.0 4795 -76375 Det1 DET1 partner of COP1 E3 ubiquitin ligase Novel U 0.011102593482391409 -0.1489818003674535 1.0 4796 -170744 Tlr8 toll-like receptor 8 Novel U 0.011098229616639614 -0.14902700114545625 1.0 4797 -72029 Cnpy3 canopy FGF signaling regulator 3 Novel N 0.011095260858649217 -0.14905775144312813 1.0 4798 -20742 Sptbn1 spectrin beta, non-erythrocytic 1 Novel U 0.01108214763784851 -0.14919357775310793 1.0 4799 -100125586 Vmn2r2 vomeronasal 2, receptor 2 Novel U 0.011081045426629512 -0.14920499442068105 1.0 4800 -66713 Actr2 actin related protein 2 Novel U 0.011069843820411741 -0.14932102028965177 1.0 4801 -66384 Srp19 signal recognition particle 19 Novel U 0.011069841070345914 -0.1493210487747432 1.0 4802 -20335 Sec61g SEC61 translocon subunit gamma Novel U 0.011062420479681938 -0.1493979110089019 1.0 4803 -12064 Bdnf brain derived neurotrophic factor Novel U 0.011055172125252569 -0.1494729892258045 1.0 4804 -26365 Ceacam1 CEA cell adhesion molecule 1 Novel U 0.011048458911324553 -0.14954252447498584 1.0 4805 -18430 Oxtr oxytocin receptor Novel U 0.01104416954949813 -0.14958695354377877 1.0 4806 -258488 Or5p54 olfactory receptor family 5 subfamily P member 54 Novel U 0.011036940205412031 -0.1496618348521707 1.0 4807 -72282 1810062G17Rik RIKEN cDNA 1810062G17 gene Novel U 0.011030240626621947 -0.14973122886904158 1.0 4808 -75320 Etnk1 ethanolamine kinase 1 Novel U 0.011024094930650975 -0.14979488578588004 1.0 4809 -22420 Wnt6 wingless-type MMTV integration site family, member 6 Novel N 0.011019673138029639 -0.14984068656849325 1.0 4810 -258667 Or6c69 olfactory receptor family 6 subfamily C member 69 Novel U 0.01101375253542184 -0.1499020119756755 1.0 4811 -230721 Pabpc4 poly(A) binding protein, cytoplasmic 4 Novel U 0.011013402961685188 -0.14990563284894812 1.0 4812 -17131 Smad7 SMAD family member 7 Novel U 0.011013177134004633 -0.14990797196463962 1.0 4813 -258718 Or5e1 olfactory receptor family 5 subfamily E member 1 Novel U 0.011012346191870798 -0.14991657883594614 1.0 4814 -93679 Trim8 tripartite motif-containing 8 Novel U 0.011009453223832406 -0.1499465441037866 1.0 4815 -13368 Dffb DNA fragmentation factor, beta subunit Novel U 0.011004261580688832 -0.15000031897280167 1.0 4816 -68859 Smim1 small integral membrane protein 1 Novel U 0.010992940381748011 -0.15011758357926633 1.0 4817 -258585 Or5t7 olfactory receptor family 5 subfamily T member 17 Novel U 0.010986299713831554 -0.1501863673992448 1.0 4818 -258681 Or5an11 olfactory receptor family 5 subfamily AN member 11 Novel U 0.010984509395406957 -0.1502049114586332 1.0 4819 -13823 Epb41l3 erythrocyte membrane protein band 4.1 like 3 Novel U 0.010982287775760673 -0.1502279229218976 1.0 4820 -384557 Ceacam3 CEA cell adhesion molecule 3 Novel U 0.010976613475860987 -0.150286697133726 1.0 4821 -78825 Desi2 desumoylating isopeptidase 2 Novel U 0.010971597809218343 -0.15033864924392934 1.0 4822 -18807 Pld3 phospholipase D family member 3 Novel N 0.010967709046578459 -0.15037892891951707 1.0 4823 -258252 Or6c76b olfactory receptor family 6 subfamily C member 76B Novel U 0.01095783400448206 -0.15048121428092706 1.0 4824 -207521 Dtx4 deltex 4, E3 ubiquitin ligase Novel U 0.0109475960453834 -0.1505872587247162 1.0 4825 -100039162 Eif1ad17 eukaryotic translation initiation factor 1A domain containing 17 Novel U 0.010941500572782576 -0.15065039542953768 1.0 4826 -22027 Hsp90b1 heat shock protein 90, beta (Grp94), member 1 Novel U 0.010940371047895458 -0.15066209501118732 1.0 4827 -258388 Or4g16 olfactory receptor family 4 subfamily G member 16 Novel U 0.01093064588291514 -0.15076282795035587 1.0 4828 -110834 Chrna3 cholinergic receptor, nicotinic, alpha polypeptide 3 Novel N 0.010918162985918254 -0.15089212538709648 1.0 4829 -53313 Atp2a3 ATPase, Ca++ transporting, ubiquitous Novel U 0.010917066585141563 -0.1509034818702992 1.0 4830 -20308 Ccl9 C-C motif chemokine ligand 9 Novel U 0.010913353242919956 -0.15094194454696105 1.0 4831 -15566 Htr7 5-hydroxytryptamine (serotonin) receptor 7 Novel N 0.010911738117490619 -0.15095867396306376 1.0 4832 -258845 Or5d35 olfactory receptor family 5 subfamily D member 35 Novel U 0.01090781796874492 -0.15099927873490376 1.0 4833 -228836 Dlgap4 DLG associated protein 4 Novel U 0.010905605294583273 -0.15102219754113233 1.0 4834 -74440 Cmip c-Maf inducing protein Novel U 0.010903894831358547 -0.1510399144629856 1.0 4835 -271278 BC024139 cDNA sequence BC024139 Novel U 0.010901926045618729 -0.1510603070809583 1.0 4836 -259116 Or51a25 olfactory receptor family 51 subfamily A member 25 Novel U 0.010898348022921988 -0.15109736812243 1.0 4837 -66475 Rps23 ribosomal protein S23 Novel U 0.010898059009852554 -0.1511003617103024 1.0 4838 -100862383 Rbmyf6 RNA binding motif protein Y-linked family member 6 Novel U 0.010897421607175715 -0.1511069639062756 1.0 4839 -258777 Or8b55 olfactory receptor family 8 subfamily B member 55 Novel U 0.010896655851621641 -0.15111489557713184 1.0 4840 -22671 Rnf112 ring finger protein 112 Novel N 0.010894131279613301 -0.1511410450110034 1.0 4841 -236915 Arhgef9 CDC42 guanine nucleotide exchange factor 9 Novel U 0.010891513226895027 -0.15116816271499542 1.0 4842 -258177 Or4c117 olfactory receptor family 4 subfamily C member 117 Novel U 0.010891095223086898 -0.15117249238469888 1.0 4843 -102774 Bbs4 Bardet-Biedl syndrome 4 Novel U 0.010890943735656997 -0.1511740614865179 1.0 4844 -384309 Trim56 tripartite motif-containing 56 Novel U 0.010886119575561199 -0.15122402997820447 1.0 4845 -78560 Adgra2 adhesion G protein-coupled receptor A2 Novel N 0.010885722891409192 -0.15122813881961067 1.0 4846 -381853 Gipr gastric inhibitory polypeptide receptor Novel U 0.010885314220625258 -0.15123237181815632 1.0 4847 -433586 Maml3 mastermind like transcriptional coactivator 3 Novel N 0.010884830099330577 -0.151237386330612 1.0 4848 -80284 Smim12 small integral membrane protein 12 Novel U 0.010882288971237544 -0.15126370725186455 1.0 4849 -259123 Or51ai2 olfactory receptor family 51 subfamily AI member 2 Novel U 0.010878847778752622 -0.15129935101050027 1.0 4850 -241324 Crb2 crumbs family member 2 Novel N 0.010877781492307169 -0.15131039557045 1.0 4851 -258658 Or4m1 olfactory receptor family 4 subfamily M member 1 Novel U 0.01087557238516919 -0.1513332774295647 1.0 4852 -18669 Abcb1b ATP-binding cassette, sub-family B member 1B Novel U 0.010865748620375584 -0.151435031662358 1.0 4853 -544817 Arhgap27 Rho GTPase activating protein 27 Novel U 0.010861664638428173 -0.15147733341311562 1.0 4854 -258925 Or1e1 olfactory receptor family 1 subfamily E member 1 Novel U 0.010857346312846143 -0.15152206248753697 1.0 4855 -67671 Rpl38 ribosomal protein L38 Novel N 0.010855025116628433 -0.15154610536165478 1.0 4856 -194433 Or2d3 olfactory receptor family 2 subfamily D member 3 Novel U 0.010850074339139181 -0.15159738535214043 1.0 4857 -100862365 Rbmyf5 RNA binding motif protein Y-linked family member 5 Novel U 0.010849026137481215 -0.15160824259045586 1.0 4858 -17850 Mmut methylmalonyl-Coenzyme A mutase Novel U 0.010839173456452425 -0.15171029633666264 1.0 4859 -259003 Or5k1b olfactory receptor family 5 subfamily K member 1B Novel U 0.010834667180085808 -0.15175697219913217 1.0 4860 -545929 Gm5891 predicted gene 5891 Novel U 0.010832455219606359 -0.15177988361306405 1.0 4861 -20211 Saa4 serum amyloid A 4 Novel U 0.010825342758328601 -0.1518535542531695 1.0 4862 -100502887 Or2t49 olfactory receptor family 2 subfamily T member 49 Novel U 0.010825184852775428 -0.1518551898336984 1.0 4863 -72199 Mms19 MMS19 cytosolic iron-sulfur assembly component Novel N 0.01081935209281595 -0.151915605369617 1.0 4864 -320473 Heatr5b HEAT repeat containing 5B Novel U 0.010817978790353337 -0.15192982999137986 1.0 4865 -68097 Dynll2 dynein light chain LC8-type 2 Novel U 0.010805489636379057 -0.15205919223768663 1.0 4866 -16171 Il17a interleukin 17A Novel U 0.010791750762326652 -0.1522014990434803 1.0 4867 -56354 Dnajc7 DnaJ heat shock protein family (Hsp40) member C7 Novel U 0.010790729018438694 -0.15221208223308375 1.0 4868 -243819 Ppp6r1 protein phosphatase 6, regulatory subunit 1 Novel N 0.010789443237289337 -0.152225400311961 1.0 4869 -242819 Rundc3b RUN domain containing 3B Novel U 0.010788319739887866 -0.15223703746111245 1.0 4870 -667373 Ifit1bl1 interferon induced protein with tetratricpeptide repeats 1B like 1 Novel U 0.010786767599175419 -0.1522531144835881 1.0 4871 -257962 Or2b11 olfactory receptor family 2 subfamily B member 11 Novel U 0.010784684264451996 -0.15227469359616738 1.0 4872 -98752 Fcrla Fc receptor-like A Novel U 0.010782826831081456 -0.1522939328299596 1.0 4873 -56312 Nupr1 nuclear protein transcription regulator 1 Novel U 0.010780553614866037 -0.15231747872879095 1.0 4874 -54130 Actr1a ARP1 actin-related protein 1A, centractin alpha Novel N 0.010775445119563362 -0.1523703923552033 1.0 4875 -224480 Nox3 NADPH oxidase 3 Novel U 0.010775018847944339 -0.15237480766262024 1.0 4876 -72088 Ush1c USH1 protein network component harmonin Novel U 0.010770398035156064 -0.15242266988958014 1.0 4877 -212555 Slc66a1 solute carrier family 66 member 1 Novel N 0.010769005917776827 -0.1524370893956309 1.0 4878 -257734 Or7a39 olfactory receptor family 7 subfamily A member 39 Novel U 0.01076523654130354 -0.15247613247322964 1.0 4879 -78369 Icam4 intercellular adhesion molecule 4, Landsteiner-Wiener blood group Novel U 0.010765200769291938 -0.15247650299854984 1.0 4880 -72415 Sgo1 shugoshin 1 Novel U 0.010764400963098846 -0.1524847873648057 1.0 4881 -16552 Kif12 kinesin family member 12 Novel U 0.010759157038322701 -0.15253910376525226 1.0 4882 -237256 Zc3h12d zinc finger CCCH type containing 12D Novel U 0.010752758965293522 -0.15260537479536318 1.0 4883 -258518 Or7g29 olfactory receptor family 7 subfamily G member 29 Novel U 0.010750621009070123 -0.1526275196756436 1.0 4884 -24015 Abce1 ATP-binding cassette, sub-family E member 1 Novel U 0.010747250353532288 -0.15266243281490016 1.0 4885 -104401 Pcnx3 pecanex homolog 3 Novel U 0.010743091051008605 -0.15270551473371077 1.0 4886 -259011 Or1e29 olfactory receptor family 1 subfamily E member 29 Novel U 0.010739981487484415 -0.15273772349047293 1.0 4887 -193053 Or1e25 olfactory receptor family 1 subfamily E member 25 Novel U 0.010738415518202944 -0.15275394374881196 1.0 4888 -14200 Fhl2 four and a half LIM domains 2 Novel N 0.010737005893666947 -0.1527685445934169 1.0 4889 -232415 Klrh1 killer cell lectin-like receptor subfamily H, member 1 Novel U 0.01073597747277222 -0.15277919694323697 1.0 4890 -19241 Tmsb4x thymosin, beta 4, X chromosome Novel U 0.01072671308406215 -0.1528751571769455 1.0 4891 -258696 Or5b12 olfactory receptor family 5 subfamily B member 12 Novel U 0.010724619254711581 -0.15289684499252776 1.0 4892 -258408 Or4d2 olfactory receptor family 4 subfamily D member 2 Novel U 0.010717991283802917 -0.1529654972973169 1.0 4893 -54630 Prickle3 prickle planar cell polarity protein 3 Novel N 0.010699489504513948 -0.1531571381189788 1.0 4894 -258980 Or4c10 olfactory receptor family 4 subfamily C member 10 Novel U 0.01069933246223138 -0.15315876475777915 1.0 4895 -19820 Rlim ring finger protein, LIM domain interacting Novel U 0.010698368414995118 -0.15316875032736102 1.0 4896 -72549 Reep4 receptor accessory protein 4 Novel U 0.010697185990035236 -0.15318099784622535 1.0 4897 -238123 Cog5 component of oligomeric golgi complex 5 Novel U 0.01068323095919292 -0.15332554359694311 1.0 4898 -57250 Or52d3 olfactory receptor family 52 subfamily D member 3 Novel U 0.010677414177907013 -0.15338579362628615 1.0 4899 -258935 Or6c75 olfactory receptor family 6 subfamily C member 75 Novel U 0.010667163037219379 -0.1534919746045406 1.0 4900 -68480 Card19 caspase recruitment domain family, member 19 Novel U 0.010660226157867542 -0.15356382657282927 1.0 4901 -319480 Itga11 integrin alpha 11 Novel N 0.010647646671447079 -0.1536941244796441 1.0 4902 -16637 Klra6 killer cell lectin-like receptor, subfamily A, member 6 Novel U 0.010645385529275337 -0.15371754531592796 1.0 4903 -23845 Clec5a C-type lectin domain family 5, member a Novel U 0.010641208404706047 -0.1537608118349011 1.0 4904 -140630 Ube4a ubiquitination factor E4A Novel U 0.01063746704740618 -0.1537995646908226 1.0 4905 -258515 Or7g34 olfactory receptor family 7 subfamily G member 34 Novel U 0.010630197214126147 -0.15387486538495432 1.0 4906 -67731 Fbxo32 F-box protein 32 Novel N 0.010629215757695118 -0.15388503127840325 1.0 4907 -12764 Cmas cytidine monophospho-N-acetylneuraminic acid synthetase Novel U 0.010627014436409593 -0.15390783249191417 1.0 4908 -80906 Kcnip2 Kv channel-interacting protein 2 Novel N 0.010626149141208928 -0.15391679519115764 1.0 4909 -209488 Hsh2d hematopoietic SH2 domain containing Novel U 0.010620345550214735 -0.1539769085958927 1.0 4910 -258432 Or8g51 olfactory receptor family 8 subfamily G member 51 Novel U 0.01060927324715102 -0.1540915951470443 1.0 4911 -20104 Rps6 ribosomal protein S6 Novel N 0.010608442353919856 -0.15410020151181855 1.0 4912 -17079 Cd180 CD180 antigen Novel U 0.010600915618367485 -0.15417816319124192 1.0 4913 -66855 Tcf25 transcription factor 25 (basic helix-loop-helix) Novel U 0.010595584195301891 -0.15423338589609425 1.0 4914 -13983 Esr2 estrogen receptor 2 (beta) Novel U 0.010589330241905904 -0.15429816413978223 1.0 4915 -66199 Commd4 COMM domain containing 4 Novel U 0.010585504954234293 -0.1543377863437352 1.0 4916 -257959 Or8g18 olfactory receptor family 8 subfamily G member 18 Novel U 0.010582339232047927 -0.1543705767900741 1.0 4917 -258308 Or5p81 olfactory receptor family 5 subfamily P member 81 Novel U 0.010577147951577288 -0.15442434790253481 1.0 4918 -100683 Trrap transformation/transcription domain-associated protein Novel U 0.01057053398135415 -0.15449285518868353 1.0 4919 -23873 Faim Fas apoptotic inhibitory molecule Novel U 0.010563934642494792 -0.15456121092364716 1.0 4920 -258270 Or2a5 olfactory receptor family 2 subfamily A member 5 Novel U 0.010560170649530805 -0.15460019823903354 1.0 4921 -269224 Pask PAS domain containing serine/threonine kinase Novel U 0.010560027610700625 -0.1546016798305344 1.0 4922 -258850 Or14c41 olfactory receptor family 14 subfamily C member 41 Novel U 0.010554322735003082 -0.15466077074547185 1.0 4923 -30050 Fbxw2 F-box and WD-40 domain protein 2 Novel N 0.010552665153971841 -0.1546779399153034 1.0 4924 -245865 Spag4 sperm associated antigen 4 Novel U 0.010551002520697352 -0.15469516141610445 1.0 4925 -20163 Rsu1 Ras suppressor protein 1 Novel U 0.01054919210076864 -0.1547139136862117 1.0 4926 -53382 Txnl1 thioredoxin-like 1 Novel U 0.010548963938914436 -0.15471627697919713 1.0 4927 -20345 Selplg selectin, platelet (p-selectin) ligand Novel U 0.01054887786710532 -0.1547171685081665 1.0 4928 -59025 Usp14 ubiquitin specific peptidase 14 Novel U 0.010547347421146833 -0.1547330208170938 1.0 4929 -58218 Trem3 triggering receptor expressed on myeloid cells 3 Novel U 0.010541821598342195 -0.1547902571080526 1.0 4930 -53892 Ppm1d protein phosphatase 1D magnesium-dependent, delta isoform Novel U 0.010541509749964118 -0.15479348722330127 1.0 4931 -21648 Dynlt1b dynein light chain Tctex-type 1B Novel U 0.01053276673426921 -0.15488404709245795 1.0 4932 -56691 Dnajb8 DnaJ heat shock protein family (Hsp40) member B8 Novel U 0.010529947805751913 -0.15491324546137283 1.0 4933 -226562 Prrc2c proline-rich coiled-coil 2C Novel N 0.010525852239568805 -0.154955667201263 1.0 4934 -258890 Or4k47 olfactory receptor family 4 subfamily K member 47 Novel U 0.010515592185446928 -0.15506194050457628 1.0 4935 -236312 Ifi209 interferon activated gene 209 Novel U 0.010503240359130203 -0.1551898803155205 1.0 4936 -210376 Mtmr9 myotubularin related protein 9 Novel N 0.010502364686954105 -0.15519895049913435 1.0 4937 -18577 Pde4a phosphodiesterase 4A, cAMP specific Novel N 0.010499535537413522 -0.1552282547370724 1.0 4938 -171543 Bmf BCL2 modifying factor Novel U 0.01048206071061959 -0.15540925841854997 1.0 4939 -27965 Spg21 SPG21, maspardin Novel U 0.010480812820600675 -0.15542218402234373 1.0 4940 -18201 Nsmaf neutral sphingomyelinase (N-SMase) activation associated factor Novel N 0.0104712681994964 -0.1555210468939793 1.0 4941 -100503185 Btbd8 BTB domain containing 8 Novel U 0.01046074280244487 -0.15563006861063525 1.0 4942 -666862 Eif1ad10 eukaryotic translation initiation factor 1A domain containing 10 Novel U 0.010458642610199723 -0.1556518223328704 1.0 4943 -54135 Lsr lipolysis stimulated lipoprotein receptor Novel U 0.010453706848543725 -0.15570294678984878 1.0 4944 -52331 Stbd1 starch binding domain 1 Novel U 0.010449635766839 -0.15574511492031673 1.0 4945 -331461 Il1rapl1 interleukin 1 receptor accessory protein-like 1 Novel U 0.010438671373977844 -0.1558586837411376 1.0 4946 -26446 Psmb3 proteasome (prosome, macropain) subunit, beta type 3 Novel U 0.01043531678706423 -0.15589343044211268 1.0 4947 -252912 Vmn1r188 vomeronasal 1 receptor 188 Novel U 0.010433048074752432 -0.1559169296896584 1.0 4948 -66392 Prl2b1 prolactin family 2, subfamily b, member 1 Novel U 0.010432219071525637 -0.1559255164778295 1.0 4949 -258207 Or2f2 olfactory receptor family 2 subfamily F member 2 Novel U 0.01042020088644762 -0.15605000044379108 1.0 4950 -12043 Bcl2 B cell leukemia/lymphoma 2 Novel U 0.010417220867617098 -0.1560808673808748 1.0 4951 -100040462 Mndal myeloid nuclear differentiation antigen like Novel U 0.010412435403377046 -0.15613043506215957 1.0 4952 -258657 Or4n4b olfactory receptor family 4 subfamily N member 4B Novel U 0.010408023735063571 -0.15617613097752475 1.0 4953 -64450 Gpr85 G protein-coupled receptor 85 Novel N 0.010403456139774872 -0.1562234419793735 1.0 4954 -66222 Serpinb1a serine (or cysteine) peptidase inhibitor, clade B, member 1a Novel U 0.01040318642479419 -0.156226235678277 1.0 4955 -208188 Ghsr growth hormone secretagogue receptor Novel U 0.010400706021662771 -0.1562519276123734 1.0 4956 -217328 Myo15b myosin XVB Novel U 0.010392476248328916 -0.15633717133402622 1.0 4957 -16404 Itga7 integrin alpha 7 Novel U 0.010390928277823584 -0.15635320516163367 1.0 4958 -67809 Rmdn3 regulator of microtubule dynamics 3 Novel N 0.010390893784015084 -0.1563535624473682 1.0 4959 -69718 Ipmk inositol polyphosphate multikinase Novel N 0.010390447497520073 -0.15635818506821264 1.0 4960 -259126 Or51b6b olfactory receptor family 51 subfamily B member 6B Novel U 0.010390270026984113 -0.15636002330219007 1.0 4961 -56495 Get3 guided entry of tail-anchored proteins factor 3, ATPase Novel U 0.010388257875505267 -0.15638086510106206 1.0 4962 -23830 Capn10 calpain 10 Novel U 0.010385123918887294 -0.15641332652068773 1.0 4963 -217882 Cep170b centrosomal protein 170B Novel U 0.010384925864849619 -0.1564153779578993 1.0 4964 -259021 Or8k22 olfactory receptor family 8 subfamily K member 22 Novel U 0.010383102550057853 -0.15643426379257416 1.0 4965 -18481 Pak3 p21 (RAC1) activated kinase 3 Novel U 0.010382767529113199 -0.15643773392850568 1.0 4966 -244310 Dlgap2 DLG associated protein 2 Novel U 0.01037817117766152 -0.15648534278574525 1.0 4967 -21804 Tgfb1i1 transforming growth factor beta 1 induced transcript 1 Novel U 0.010374606735764597 -0.15652226315773887 1.0 4968 -70377 Derl3 Der1-like domain family, member 3 Novel U 0.010372630003631169 -0.15654273808419533 1.0 4969 -171260 Vmn1r89 vomeronasal 1 receptor 89 Novel U 0.010372364031545336 -0.15654549301431703 1.0 4970 -14599 Gh growth hormone Novel U 0.010372286573055316 -0.15654629532681036 1.0 4971 -217198 Plekhh3 pleckstrin homology domain containing, family H (with MyTH4 domain) member 3 Novel U 0.010361050615893154 -0.15666267700173384 1.0 4972 -258495 Or2t47 olfactory receptor family 2 subfamily T member 47 Novel U 0.010351657463594514 -0.1567599709644599 1.0 4973 -18346 Or2a57 olfactory receptor family 2 subfamily A member 57 Novel U 0.010349167609196342 -0.1567857607944666 1.0 4974 -56358 Copz2 coatomer protein complex, subunit zeta 2 Novel U 0.010345476122517959 -0.1568239970921302 1.0 4975 -76787 Ppfia3 protein tyrosine phosphatase, receptor type, f polypeptide (PTPRF), interacting protein (liprin), alpha 3 Novel U 0.010336741820291711 -0.15691446670746495 1.0 4976 -244237 Tnfrsf26 tumor necrosis factor receptor superfamily, member 26 Novel U 0.010323870500523505 -0.1570477874145022 1.0 4977 -56045 Samhd1 SAM domain and HD domain, 1 Novel U 0.010319718661902533 -0.15709079202245388 1.0 4978 -18583 Pde7a phosphodiesterase 7A Novel N 0.010310523156195506 -0.1571860387682813 1.0 4979 -16559 Kif17 kinesin family member 17 Novel U 0.01030544991632902 -0.15723858722004458 1.0 4980 -22070 Tpt1 tumor protein, translationally-controlled 1 Novel U 0.010302147915168175 -0.15727278923952118 1.0 4981 -27381 Tcl1b2 T cell leukemia/lymphoma 1B, 2 Novel U 0.01029053803537981 -0.1573930439927148 1.0 4982 -52589 Ncald neurocalcin delta Novel U 0.010274201168427139 -0.15756226072356502 1.0 4983 -13542 Dvl1 dishevelled segment polarity protein 1 Novel U 0.01026531173884528 -0.15765433714294966 1.0 4984 -227154 Stradb STE20-related kinase adaptor beta Novel U 0.010263729599228489 -0.15767072489309034 1.0 4985 -21871 Atp6v0a2 ATPase, H+ transporting, lysosomal V0 subunit A2 Novel U 0.010261223033744589 -0.15769668781597368 1.0 4986 -69142 Cd209f CD209f antigen Novel U 0.0102575628608559 -0.157734599766433 1.0 4987 -320051 Exph5 exophilin 5 Novel U 0.010249315147281977 -0.15782002931250275 1.0 4988 -258457 Or1o11 olfactory receptor family 1 subfamily O member 11 Novel U 0.010246988342078874 -0.15784413028430688 1.0 4989 -19185 Psmd4 proteasome (prosome, macropain) 26S subunit, non-ATPase, 4 Novel U 0.010240048099847434 -0.15791601708519196 1.0 4990 -258042 Or5p63 olfactory receptor family 5 subfamily P member 63 Novel U 0.01023944572921204 -0.1579222564204315 1.0 4991 -258340 Or4x11 olfactory receptor family 4 subfamily X member 11 Novel U 0.010233543124252793 -0.15798339540856168 1.0 4992 -319239 Npsr1 neuropeptide S receptor 1 Novel N 0.010227734325288524 -0.1580435627572796 1.0 4993 -12902 Cr2 complement receptor 2 Novel U 0.010226507841776722 -0.15805626663317637 1.0 4994 -12061 Bdkrb1 bradykinin receptor, beta 1 Novel N 0.010217757064571658 -0.15814690689580013 1.0 4995 -74137 Nuak2 NUAK family, SNF1-like kinase, 2 Novel U 0.010213169023452328 -0.15819442967489042 1.0 4996 -258263 Or2g25 olfactory receptor family 2 subfamily G member 25 Novel U 0.01021113130392656 -0.15821553630675192 1.0 4997 -258789 Or4b12 olfactory receptor family 4 subfamily B member 12 Novel U 0.01021044885648828 -0.15822260507488337 1.0 4998 -258268 Or10g1b olfactory receptor family 10 subfamily G member 1B Novel U 0.010208420123747551 -0.15824361862192082 1.0 4999 -19065 Npy4r neuropeptide Y receptor Y4 Novel U 0.010208046989798145 -0.15824748353110266 1.0 5000 -232201 Arhgap25 Rho GTPase activating protein 25 Novel U 0.010207365186412982 -0.1582545456281531 1.0 5001 -79560 Ublcp1 ubiquitin-like domain containing CTD phosphatase 1 Novel U 0.010205200413245834 -0.15827696827745533 1.0 5002 -71323 Rassf8 Ras association (RalGDS/AF-6) domain family (N-terminal) member 8 Novel U 0.01020167188092637 -0.15831351669922608 1.0 5003 -217648 Gm527 predicted gene 527 Novel U 0.010194685194775021 -0.15838588456470684 1.0 5004 -13532 Usp17lc ubiquitin specific peptidase 17-like C Novel U 0.01017366706711316 -0.15860358964009466 1.0 5005 -67475 Ero1b endoplasmic reticulum oxidoreductase 1 beta Novel U 0.010172659694151053 -0.15861402397612057 1.0 5006 -64380 Ms4a4c membrane-spanning 4-domains, subfamily A, member 4C Novel U 0.0101709999123992 -0.15863121594094387 1.0 5007 -28193 Reep3 receptor accessory protein 3 Novel U 0.010164065522254734 -0.15870304212610445 1.0 5008 -258743 Or56b2 olfactory receptor family 56 subfamily B member 2 Novel U 0.010160944318097545 -0.15873537145616057 1.0 5009 -245474 Dkc1 dyskeratosis congenita 1, dyskerin Novel U 0.010159424962006364 -0.15875110889660687 1.0 5010 -381867 Ovol3 ovo like zinc finger 3 Novel U 0.010158209997824134 -0.1587636934556666 1.0 5011 -17002 Ltf lactotransferrin Novel U 0.010155516496170589 -0.15879159265724993 1.0 5012 -58239 Dexi dexamethasone-induced transcript Novel U 0.010150293772550363 -0.15884568945682043 1.0 5013 -66087 Emc3 ER membrane protein complex subunit 3 Novel U 0.010150077501299714 -0.15884792958732513 1.0 5014 -67091 Trappc6a trafficking protein particle complex 6A Novel U 0.010149867285991907 -0.15885010699057295 1.0 5015 -258843 Or8k3b olfactory receptor family 8 subfamily K member 3B Novel U 0.010144122181674403 -0.15890961459223352 1.0 5016 -387512 Tas2r135 taste receptor, type 2, member 135 Novel N 0.010141785794365778 -0.15893381481517166 1.0 5017 -21418 Tfap2a transcription factor AP-2, alpha Novel U 0.010140543793478679 -0.15894667941953164 1.0 5018 -72736 Tmx1 thioredoxin-related transmembrane protein 1 Novel U 0.010136887064424505 -0.1589845556988663 1.0 5019 -258607 Or8g2b olfactory receptor family 8 subfamily G member 2B Novel U 0.01013276313057351 -0.15902727127012786 1.0 5020 -258554 Or7e177 olfactory receptor family 7 subfamily E member 177 Novel U 0.01013071869250993 -0.15904844749238314 1.0 5021 -216976 Rskr ribosomal protein S6 kinase related Novel U 0.01012697572204829 -0.1590872170573813 1.0 5022 -66774 Carlr cardiac and apoptosis-related long non-coding RNA Novel U 0.010117540184559414 -0.1591849500445145 1.0 5023 -234663 Dync1li2 dynein, cytoplasmic 1 light intermediate chain 2 Novel U 0.010116211633546729 -0.1591987111322301 1.0 5024 -258227 Or10v9 olfactory receptor family 10 subfamily V member 9 Novel U 0.01011035378246468 -0.1592593865611715 1.0 5025 -75646 Rai14 retinoic acid induced 14 Novel U 0.010099279253380588 -0.15937409616936898 1.0 5026 -258704 Or3a1d olfactory receptor family 3 subfamily A member 1D Novel U 0.010093249793780125 -0.15943654911370278 1.0 5027 -67792 Rgs8 regulator of G-protein signaling 8 Novel U 0.010086259518689874 -0.1595089541532947 1.0 5028 -80796 Calm4 calmodulin 4 Novel U 0.010083226291479694 -0.15954037222102577 1.0 5029 -258025 Or4c15 olfactory receptor family 4 subfamily C member 15 Novel U 0.010082391166585165 -0.15954902241723004 1.0 5030 -258529 Or5af2 olfactory receptor family 5 subfamily AC member 20 Novel U 0.010081875015768505 -0.15955436869042144 1.0 5031 -93695 Gpnmb glycoprotein (transmembrane) nmb Novel U 0.010074536160032116 -0.1596303843168871 1.0 5032 -52014 Nus1 NUS1 dehydrodolichyl diphosphate synthase subunit Novel U 0.010073783057168552 -0.15963818493159096 1.0 5033 -217302 Gpr142 G protein-coupled receptor 142 Novel U 0.010067489348050605 -0.15970337496374012 1.0 5034 -54004 Diaph2 diaphanous related formin 2 Novel N 0.010066664134044175 -0.15971192250329128 1.0 5035 -258706 Or1a1b olfactory receptor family 1 subfamily A member 1B Novel U 0.010061529734735546 -0.15976510444254574 1.0 5036 -259040 Or6b2 olfactory receptor family 6 subfamily B member 2 Novel U 0.010052829387084178 -0.1598552223575101 1.0 5037 -619697 Vmn2r116 vomeronasal 2, receptor 116 Novel U 0.010052287579594168 -0.15986083438168067 1.0 5038 -30853 Mlf2 myeloid leukemia factor 2 Novel U 0.010050059395685514 -0.1598839138373589 1.0 5039 -258572 Or5m3 olfactory receptor family 5 subfamily M member 3 Novel U 0.010045474786796979 -0.15993140106551545 1.0 5040 -68938 Aspscr1 ASPSCR1 tether for SLC2A4, UBX domain containing Novel U 0.010044709015056219 -0.15993933290403284 1.0 5041 -223828 Pphln1 periphilin 1 Novel U 0.010040621579907143 -0.1599816704229398 1.0 5042 -258773 Or6c219 olfactory receptor family 6 subfamily C member 219 Novel U 0.010020774515314001 -0.16018724566555845 1.0 5043 -227399 Ppip5k2 diphosphoinositol pentakisphosphate kinase 2 Novel N 0.010020774057001232 -0.16018725041274706 1.0 5044 -100042024 Gm3629 predicted gene 3629 Novel U 0.010020454928918565 -0.16019055593093653 1.0 5045 -19647 Rbbp6 retinoblastoma binding protein 6, ubiquitin ligase Novel U 0.010019485824853902 -0.16020059387898075 1.0 5046 -494546 Taar8c trace amine-associated receptor 8C Novel U 0.010019476644293061 -0.16020068897092812 1.0 5047 -30953 Schip1 schwannomin interacting protein 1 Novel U 0.010012992616925134 -0.1602678503132542 1.0 5048 -258273 Or2o1 olfactory receptor family 2 subfamily O member 1 Novel U 0.010012791433895928 -0.16026993416045718 1.0 5049 -55948 Sfn stratifin Novel U 0.01000544213828491 -0.16034605792280104 1.0 5050 -22123 Psmd3 proteasome (prosome, macropain) 26S subunit, non-ATPase, 3 Novel U 0.010002530516558849 -0.16037621640492516 1.0 5051 -227580 C1ql3 C1q-like 3 Novel U 0.00999651478794904 -0.16043852712410914 1.0 5052 -57743 Sec61a2 SEC61 translocon subunit alpha 2 Novel U 0.009993600458116533 -0.1604687136567108 1.0 5053 -100039968 Tmem35b transmembrane protein 35B Novel U 0.009987689925082071 -0.16052993476358346 1.0 5054 -22051 Trip6 thyroid hormone receptor interactor 6 Novel N 0.00998284155629911 -0.16058015400805584 1.0 5055 -56620 Clec4n C-type lectin domain family 4, member n Novel U 0.009981573109464697 -0.16059329253866875 1.0 5056 -171382 Trpm8 transient receptor potential cation channel, subfamily M, member 8 Novel N 0.009970562530460034 -0.16070733975404575 1.0 5057 -258271 Or4f58 olfactory receptor family 4 subfamily F member 58 Novel U 0.009967202200477338 -0.16074214594154163 1.0 5058 -223825 Mroh2b maestro heat-like repeat family member 2B Novel U 0.009964598911465453 -0.16076911072354821 1.0 5059 -18146 Npdc1 neural proliferation, differentiation and control 1 Novel U 0.009959220604070281 -0.16082481905474508 1.0 5060 -22402 Ccn4 cellular communication network factor 4 Novel U 0.009958803780639682 -0.16082913649813688 1.0 5061 -16439 Itpr2 inositol 1,4,5-triphosphate receptor 2 Novel N 0.009954058570579224 -0.16087828722795272 1.0 5062 -65116 Prrg2 proline-rich Gla (G-carboxyglutamic acid) polypeptide 2 Novel U 0.009951078802529567 -0.16090915156745647 1.0 5063 -60367 Il1rapl2 interleukin 1 receptor accessory protein-like 2 Novel N 0.009939527397223848 -0.16102880064388111 1.0 5064 -70261 Chp2 calcineurin-like EF hand protein 2 Novel U 0.009937596120220613 -0.1610488047475933 1.0 5065 -20750 Spp1 secreted phosphoprotein 1 Novel U 0.009935817030964241 -0.1610672324956264 1.0 5066 -71742 Ulk3 unc-51-like kinase 3 Novel U 0.009926625803115683 -0.16116243493153642 1.0 5067 -67068 Dynlrb1 dynein light chain roadblock-type 1 Novel U 0.009924695798165739 -0.16118242585936246 1.0 5068 -258304 Or5p73 olfactory receptor family 5 subfamily P member 73 Novel U 0.00992439542744918 -0.16118553708937042 1.0 5069 -258375 Or6c88 olfactory receptor family 6 subfamily C member 88 Novel U 0.00991514306566039 -0.1612813727486237 1.0 5070 -11966 Atp6v1b2 ATPase, H+ transporting, lysosomal V1 subunit B2 Novel U 0.009901268070978433 -0.16142508948742354 1.0 5071 -258947 Or1j16 olfactory receptor family 1 subfamily J member 16 Novel U 0.009898178250701368 -0.161457093744281 1.0 5072 -76808 Rpl18a ribosomal protein L18A Novel N 0.009896141307134664 -0.161478192338784 1.0 5073 -52857 Gramd1a GRAM domain containing 1A Novel U 0.009894127355253694 -0.161499052786162 1.0 5074 -20740 Sptan1 spectrin alpha, non-erythrocytic 1 Novel N 0.009892660908130041 -0.16151424219726193 1.0 5075 -381845 Rnf225 ring finger protein 225 Novel U 0.009892527263610172 -0.1615156264828054 1.0 5076 -171463 Il17rd interleukin 17 receptor D Novel N 0.009885679969901128 -0.16158655052595103 1.0 5077 -215890 Clvs2 clavesin 2 Novel U 0.0098839196074821 -0.16160478430201852 1.0 5078 -11539 Adora1 adenosine A1 receptor Novel U 0.009881596576893595 -0.16162884617648876 1.0 5079 -59090 Midn midnolin Novel U 0.009880554855307469 -0.1616396362944331 1.0 5080 -101320 Dyrk4 dual-specificity tyrosine phosphorylation regulated kinase 4 Novel U 0.009879411394686234 -0.1616514802219586 1.0 5081 -23983 Pcbp1 poly(rC) binding protein 1 Novel U 0.00987208441697919 -0.16172737281618674 1.0 5082 -380711 Rap1gap2 RAP1 GTPase activating protein 2 Novel U 0.009869728759084172 -0.16175177264322527 1.0 5083 -54445 Unc93b1 unc-93 homolog B1, TLR signaling regulator Novel U 0.00986492435029963 -0.1618015365514791 1.0 5084 -258774 Or4p8 olfactory receptor family 4 subfamily P member 8 Novel U 0.009864026860261112 -0.16181083272379468 1.0 5085 -21941 Tnfrsf8 tumor necrosis factor receptor superfamily, member 8 Novel U 0.009863025055707473 -0.16182120938242872 1.0 5086 -100862042 Gm21425 predicted gene, 21425 Novel U 0.009860435879009685 -0.1618480279895498 1.0 5087 -259114 Or51a8 olfactory receptor family 51 subfamily A member 8 Novel U 0.009856135169630097 -0.16189257459592538 1.0 5088 -76478 Haus8 4HAUS augmin-like complex, subunit 8 Novel U 0.009854321695351049 -0.16191135850289298 1.0 5089 -259089 Or51s1 olfactory receptor family 51 subfamily S member 1 Novel U 0.00985324017639461 -0.1619225608406908 1.0 5090 -72354 Ttc4 tetratricopeptide repeat domain 4 Novel N 0.009850951015099984 -0.16194627189812838 1.0 5091 -51791 Rgs14 regulator of G-protein signaling 14 Novel U 0.009843305600510981 -0.16202546285111183 1.0 5092 -73158 Larp1 La ribonucleoprotein 1, translational regulator Novel U 0.009841597356625134 -0.1620431567851259 1.0 5093 -233274 Siglech sialic acid binding Ig-like lectin H Novel U 0.009838335864573078 -0.16207693921258534 1.0 5094 -319876 Cobll1 Cobl-like 1 Novel U 0.009831386720423994 -0.16214891821924077 1.0 5095 -171180 Syt12 synaptotagmin XII Novel U 0.009822761138498283 -0.16223826171327652 1.0 5096 -237038 Nox1 NADPH oxidase 1 Novel U 0.009822471093273737 -0.16224126599217764 1.0 5097 -215999 Mcu mitochondrial calcium uniporter Novel U 0.009820514463472853 -0.1622615326993345 1.0 5098 -57811 Rgr retinal G protein coupled receptor Novel N 0.009812999124861069 -0.1623393763296219 1.0 5099 -20482 Skil SKI-like Novel U 0.009809635482873832 -0.1623742168227519 1.0 5100 -18951 Septin5 septin 5 Novel U 0.009808465737662433 -0.16238633300519828 1.0 5101 -14289 Fpr2 formyl peptide receptor 2 Novel U 0.009804147528184311 -0.16243106087701917 1.0 5102 -212398 Frat2 frequently rearranged in advanced T cell lymphomas 2 Novel U 0.009803891327254878 -0.1624337145978241 1.0 5103 -19415 Rasal1 RAS protein activator like 1 (GAP1 like) Novel U 0.009801462437501206 -0.16245887295804717 1.0 5104 -11804 Aplp2 amyloid beta precursor-like protein 2 Novel U 0.009800318502921367 -0.16247072179482033 1.0 5105 -12315 Calm3 calmodulin 3 Novel U 0.009798760637241636 -0.1624868581163189 1.0 5106 -625360 Tcstv4 Tcstv family member 4 Novel U 0.009798256237088477 -0.16249208267652407 1.0 5107 -235344 Sik2 salt inducible kinase 2 Novel U 0.00979735307457509 -0.16250143760414784 1.0 5108 -57751 Rnf25 ring finger protein 25 Novel U 0.00979689499233079 -0.16250618240497566 1.0 5109 -80876 Ifitm2 interferon induced transmembrane protein 2 Novel U 0.009792521248699677 -0.16255148549772766 1.0 5110 -64602 Ireb2 iron responsive element binding protein 2 Novel N 0.00979179951848282 -0.16255896115558827 1.0 5111 -258829 Or2n1 olfactory receptor family 2 subfamily N member 1 Novel U 0.009789015387427555 -0.1625877990935353 1.0 5112 -15564 Htr5b 5-hydroxytryptamine (serotonin) receptor 5B Novel U 0.009787326693146185 -0.16260529053338893 1.0 5113 -56631 Trim17 tripartite motif-containing 17 Novel U 0.009786788431164244 -0.16261086583330345 1.0 5114 -21754 Tesk1 testis specific protein kinase 1 Novel U 0.009783779927118118 -0.162642027819314 1.0 5115 -217069 Trim25 tripartite motif-containing 25 Novel U 0.009778642646064557 -0.16269523960758775 1.0 5116 -80905 Polh polymerase (DNA directed), eta (RAD 30 related) Novel U 0.009778069479906913 -0.1627011764438068 1.0 5117 -78309 Cul9 cullin 9 Novel N 0.009778034425513832 -0.16270153953605798 1.0 5118 -320713 Mysm1 myb-like, SWIRM and MPN domains 1 Novel U 0.00977423378282243 -0.16274090646811615 1.0 5119 -108660 Rnf187 ring finger protein 187 Novel U 0.009756412455234549 -0.16292549919342683 1.0 5120 -258563 Or9g4 olfactory receptor family 9 subfamily G member 4 Novel U 0.00975382569750432 -0.16295229274496142 1.0 5121 -227615 Tmem203 transmembrane protein 203 Novel N 0.009749249838740509 -0.16299968933961376 1.0 5122 -110382 C8b complement component 8, beta polypeptide Novel U 0.009748423937518909 -0.16300824399731706 1.0 5123 -67171 Dram2 DNA-damage regulated autophagy modulator 2 Novel N 0.009743867183984756 -0.16305544270062858 1.0 5124 -15500 Hsf2 heat shock factor 2 Novel N 0.009739283897506086 -0.1631029162313072 1.0 5125 -12741 Cldn5 claudin 5 Novel U 0.009734306785352285 -0.16315446899538255 1.0 5126 -227723 Prrc2b proline-rich coiled-coil 2B Novel U 0.00972480283817232 -0.16325291056784724 1.0 5127 -76933 Ifi27l2a interferon, alpha-inducible protein 27 like 2A Novel U 0.00971672734797714 -0.16333655622982146 1.0 5128 -259063 Or52b2 olfactory receptor family 52 subfamily B member 2 Novel U 0.00971638711060028 -0.16334008039738623 1.0 5129 -68014 Zwilch zwilch kinetochore protein Novel N 0.00970786056278477 -0.16342839809936413 1.0 5130 -171209 Asic3 acid-sensing ion channel 3 Novel N 0.009707271618617152 -0.16343449836369184 1.0 5131 -258089 Or14a258 olfactory receptor family 14 subfamily A member 258 Novel U 0.009703813522546895 -0.16347031720910876 1.0 5132 -22194 Ube2e1 ubiquitin-conjugating enzyme E2E 1 Novel U 0.009699353926432735 -0.16351650955905794 1.0 5133 -30058 Timm8a1 translocase of inner mitochondrial membrane 8A1 Novel U 0.009696610232596404 -0.16354492864962053 1.0 5134 -74766 Yipf2 Yip1 domain family, member 2 Novel U 0.00969457738571797 -0.16356598481076112 1.0 5135 -624224 Clrn2 clarin 2 Novel N 0.009690703746047824 -0.16360610784312543 1.0 5136 -259018 Or8k18 olfactory receptor family 8 subfamily K member 18 Novel U 0.00968920210839888 -0.16362166175652956 1.0 5137 -17000 Ltbr lymphotoxin B receptor Novel U 0.009688658509989324 -0.16362729233098589 1.0 5138 -17969 Ncf1 neutrophil cytosolic factor 1 Novel U 0.009688080767511008 -0.16363327656858404 1.0 5139 -68929 Mospd3 motile sperm domain containing 3 Novel U 0.009683919596201376 -0.16367637784421807 1.0 5140 -18787 Serpine1 serine (or cysteine) peptidase inhibitor, clade E, member 1 Novel U 0.009683236067218815 -0.1636834578149496 1.0 5141 -258725 Or5t15 olfactory receptor family 5 subfamily T member 15 Novel U 0.009681694372993295 -0.16369942663305706 1.0 5142 -235256 Or10d1b olfactory receptor family 10 subfamily D member 1B Novel U 0.009678838592812032 -0.16372900671029586 1.0 5143 -258395 Or4g7 olfactory receptor family 4 subfamily G member 7 Novel U 0.00967805023239407 -0.1637371725215892 1.0 5144 -100502736 Gm19345 predicted gene, 19345 Novel U 0.009673019582264917 -0.16378927983025324 1.0 5145 -100041722 1700049E17Rik2 tandem duplication of RIKEN cDNA 1700049E17 gene, gene 2 Novel U 0.009670743384141907 -0.16381285661558542 1.0 5146 -675969 Vmn2r76 vomeronasal 2, receptor 76 Novel U 0.00967031769664973 -0.16381726587263562 1.0 5147 -15937 Ier3 immediate early response 3 Novel N 0.009669717803562912 -0.1638234795455085 1.0 5148 -230376 Haus6 HAUS augmin-like complex, subunit 6 Novel U 0.009668748081259176 -0.1638335238972527 1.0 5149 -170833 Hook2 hook microtubule tethering protein 2 Novel U 0.009667907877145486 -0.16384222670384202 1.0 5150 -272589 Tbcel tubulin folding cofactor E-like Novel U 0.0096620064583948 -0.163903353405263 1.0 5151 -72090 Entpd8 ectonucleoside triphosphate diphosphohydrolase 8 Novel U 0.009660522805246485 -0.16391872103580074 1.0 5152 -210673 Prrt3 proline-rich transmembrane protein 3 Novel U 0.009644186031789254 -0.16408793679822825 1.0 5153 -244911 C2cd4a C2 calcium-dependent domain containing 4A Novel U 0.009634727696418297 -0.1641859059250746 1.0 5154 -70012 Cep85 centrosomal protein 85 Novel U 0.009633773436055038 -0.16419579012254762 1.0 5155 -53334 Gosr1 golgi SNAP receptor complex member 1 Novel U 0.009622557484910222 -0.16431196457580108 1.0 5156 -16579 Kifap3 kinesin-associated protein 3 Novel U 0.00961710929606539 -0.1643683967367563 1.0 5157 -259024 Or1e22 olfactory receptor family 1 subfamily E member 22 Novel U 0.009614536343978125 -0.1643950472898949 1.0 5158 -18679 Phka1 phosphorylase kinase alpha 1 Novel U 0.00961105011182774 -0.1644311575679049 1.0 5159 -258136 Or10a49 olfactory receptor family 10 subfamily A member 49 Novel U 0.00961104780202076 -0.1644311814928097 1.0 5160 -54638 Ccdc22 coiled-coil domain containing 22 Novel U 0.009602216040708463 -0.16452266058615392 1.0 5161 -66538 Rps19bp1 ribosomal protein S19 binding protein 1 Novel N 0.009593680356334913 -0.16461107292429966 1.0 5162 -320495 Ipcef1 interaction protein for cytohesin exchange factors 1 Novel U 0.009591162815786385 -0.16463714952654163 1.0 5163 -18389 Oprl1 opioid receptor-like 1 Novel U 0.009586663933354337 -0.16468374880288 1.0 5164 -170930 Sumo2 small ubiquitin-like modifier 2 Novel U 0.009585358766945199 -0.1646972676736408 1.0 5165 -791303 Gm10277 predicted gene 10277 Novel U 0.009585097168366905 -0.1646999773031152 1.0 5166 -258702 Or3a1 olfactory receptor family 3 subfamily A member 1 Novel U 0.00957552408817454 -0.16479913495304963 1.0 5167 -210766 Brcc3 BRCA1/BRCA2-containing complex, subunit 3 Novel U 0.009570893201718784 -0.16484710152272616 1.0 5168 -52840 Dbndd2 dysbindin domain containing 2 Novel U 0.009570057162634505 -0.16485576118807782 1.0 5169 -65079 Rtn4r reticulon 4 receptor Novel U 0.009569993314947947 -0.16485642252031635 1.0 5170 -12638 Cftr cystic fibrosis transmembrane conductance regulator Novel U 0.009568830192991408 -0.16486847009930658 1.0 5171 -71145 Scara5 scavenger receptor class A, member 5 Novel U 0.009561350461895414 -0.16494594490811595 1.0 5172 -20296 Ccl2 C-C motif chemokine ligand 2 Novel U 0.009560586456271445 -0.16495385845325372 1.0 5173 -14228 Fkbp4 FK506 binding protein 4 Novel U 0.009555624153185423 -0.16500525782549177 1.0 5174 -223752 Gramd4 GRAM domain containing 4 Novel N 0.009553735811222985 -0.16502481720946283 1.0 5175 -268934 Grm4 glutamate receptor, metabotropic 4 Novel U 0.009544417629032997 -0.165121334634268 1.0 5176 -30934 Tor1b torsin family 1, member B Novel U 0.009542223537324033 -0.16514406096406256 1.0 5177 -12209 Brs3 bombesin-like receptor 3 Novel N 0.009538881318605134 -0.16517867955568338 1.0 5178 -218215 Rnf144b ring finger protein 144B Novel U 0.009538587634736985 -0.16518172152353536 1.0 5179 -30933 Tor2a torsin family 2, member A Novel U 0.009531703385287664 -0.1652530283530239 1.0 5180 -100503041 Pdzd7 PDZ domain containing 7 Novel U 0.009530731852467096 -0.16526309145804194 1.0 5181 -110326 Tas1r1 taste receptor, type 1, member 1 Novel N 0.009527051947004206 -0.16530120779785615 1.0 5182 -258511 Or6f2 olfactory receptor family 6 subfamily F member 2 Novel U 0.009518310320953793 -0.16539175327312086 1.0 5183 -240755 Mgat4f MGAT4 family, member F Novel U 0.009508386926546663 -0.1654945394661759 1.0 5184 -74840 Manf mesencephalic astrocyte-derived neurotrophic factor Novel U 0.009507559913788634 -0.16550310563713697 1.0 5185 -72361 Ces2g carboxylesterase 2G Novel U 0.009504889440459052 -0.16553076631209773 1.0 5186 -234130 Dkk4 dickkopf WNT signaling pathway inhibitor 4 Novel U 0.009504816600347995 -0.16553152078757352 1.0 5187 -258570 Or5al7 olfactory receptor family 5 subfamily AL member 7 Novel U 0.009503895947942207 -0.1655410568749279 1.0 5188 -258447 Or4a69 olfactory receptor family 4 subfamily A member 69 Novel U 0.009500573149890078 -0.16557547430792074 1.0 5189 -27984 Efhd2 EF hand domain containing 2 Novel U 0.009497231811723376 -0.16561008377881087 1.0 5190 -100042874 Rbmyf2 RNA binding motif protein Y-linked family member 2 Novel U 0.009496228454952979 -0.16562047651525508 1.0 5191 -22171 Tyms thymidylate synthase Novel U 0.009493587590390946 -0.16564783050357484 1.0 5192 -16476 Jun jun proto-oncogene Novel U 0.009488024894263912 -0.16570544872719487 1.0 5193 -14151 Fech ferrochelatase Novel U 0.009482474627396141 -0.16576293820895602 1.0 5194 -26367 Ceacam2 CEA cell adhesion molecule 2 Novel U 0.009480026533838731 -0.16578829548154697 1.0 5195 -217203 Tmem106a transmembrane protein 106A Novel U 0.009476247561866786 -0.16582743794900537 1.0 5196 -52668 Ifi27 interferon, alpha-inducible protein 27 Novel U 0.009459870281084647 -0.16599707328497265 1.0 5197 -70719 Arhgap45 Rho GTPase activating protein 45 Novel U 0.009457780772892214 -0.166018716342141 1.0 5198 -230726 Rhbdl2 rhomboid like 2 Novel U 0.009456415530603782 -0.16603285747688465 1.0 5199 -258632 Or5w15 olfactory receptor family 5 subfamily W member 15 Novel U 0.009445156569241872 -0.16614947742855288 1.0 5200 -11827 Aqp2 aquaporin 2 Novel U 0.009439271797550067 -0.16621043170028516 1.0 5201 -21943 Tnfsf11 tumor necrosis factor (ligand) superfamily, member 11 Novel U 0.009437582003359696 -0.16622793453296 1.0 5202 -18050 Klk1b3 kallikrein 1-related peptidase b3 Novel U 0.009436940597042146 -0.16623457819851212 1.0 5203 -66822 Fbxo25 F-box protein 25 Novel U 0.009434823933389801 -0.16625650253104152 1.0 5204 -258810 Or52n3 olfactory receptor family 52 subfamily N member 3 Novel U 0.009432866727718535 -0.16627677520304485 1.0 5205 -328660 Bex6 brain expressed family member 6 Novel U 0.009432442087063075 -0.1662811736169948 1.0 5206 -240327 Iigp1c interferon inducible GTPase 1C Novel U 0.00942473404640903 -0.1663610132487012 1.0 5207 -116873 Stim2 stromal interaction molecule 2 Novel N 0.009415061977039596 -0.16646119622527766 1.0 5208 -170643 Kirrel1 kirre like nephrin family adhesion molecule 1 Novel U 0.009411218884024235 -0.16650100285639588 1.0 5209 -80898 Erap1 endoplasmic reticulum aminopeptidase 1 Novel U 0.009404608234963452 -0.1665694757420541 1.0 5210 -67454 Ikbip IKBKB interacting protein Novel N 0.009396670162482502 -0.1666516980358617 1.0 5211 -109032 Sp110 Sp110 nuclear body protein Novel U 0.009392248319329376 -0.16669749934188147 1.0 5212 -70093 Ube2q1 ubiquitin-conjugating enzyme E2Q family member 1 Novel U 0.009387684120013453 -0.16674477516835584 1.0 5213 -51792 Ppp2r1a protein phosphatase 2, regulatory subunit A, alpha Novel U 0.009386361319428903 -0.1667584766933259 1.0 5214 -19256 Ptpn20 protein tyrosine phosphatase, non-receptor type 20 Novel U 0.009385099091095712 -0.16677155081290757 1.0 5215 -20318 Sdf4 stromal cell derived factor 4 Novel U 0.009380240173729768 -0.1668218793192557 1.0 5216 -15932 Idua iduronidase, alpha-L Novel U 0.00937931521545436 -0.16683146000666604 1.0 5217 -108670 Epsti1 epithelial stromal interaction 1 Novel U 0.009378489658782447 -0.166840011095535 1.0 5218 -19122 Prnp prion protein Novel U 0.00937813368221553 -0.16684369828911305 1.0 5219 -66787 Gskip GSK3B interacting protein Novel U 0.00937706845194679 -0.16685473190921904 1.0 5220 -233315 Mtmr10 myotubularin related protein 10 Novel U 0.009375936265725198 -0.16686645905688371 1.0 5221 -12571 Cdk6 cyclin dependent kinase 6 Novel U 0.009375697088145424 -0.16686893645039247 1.0 5222 -19035 Ppib peptidylprolyl isomerase B Novel U 0.009375387741098591 -0.16687214065693431 1.0 5223 -26436 Psg16 pregnancy specific beta-1-glycoprotein 16 Novel U 0.009373686530366554 -0.16688976174177247 1.0 5224 -53972 Ngef neuronal guanine nucleotide exchange factor Novel U 0.009371971373224191 -0.16690752728307032 1.0 5225 -72946 Lrrc47 leucine rich repeat containing 47 Novel U 0.009359132862601987 -0.1670405081540518 1.0 5226 -624219 Angptl8 angiopoietin-like 8 Novel U 0.009354578232450127 -0.16708768486343936 1.0 5227 -68090 Yif1a Yip1 interacting factor homolog A (S. cerevisiae) Novel U 0.009352259890293866 -0.16711169817528254 1.0 5228 -259083 Or52b4 olfactory receptor family 52 subfamily B member 4 Novel N 0.0093505562981653 -0.16712934392654766 1.0 5229 -75766 Dcstamp dendrocyte expressed seven transmembrane protein Novel U 0.009341372836267263 -0.16722446592299747 1.0 5230 -20717 Serpina3m serine (or cysteine) peptidase inhibitor, clade A, member 3M Novel U 0.009333565026694343 -0.16730533895788585 1.0 5231 -259016 Or8k17 olfactory receptor family 8 subfamily K member 17 Novel U 0.00933114825068552 -0.16733037184433797 1.0 5232 -630845 Tas2r122 taste receptor, type 2, member 122 Novel U 0.009330060487690688 -0.1673416388576802 1.0 5233 -12967 Crygd crystallin, gamma D Novel U 0.009325872031057931 -0.16738502275379422 1.0 5234 -16570 Kif3c kinesin family member 3C Novel U 0.009325631825586305 -0.16738751079417297 1.0 5235 -53624 Cldn7 claudin 7 Novel U 0.009322997925746462 -0.16741479264212927 1.0 5236 -16364 Irf4 interferon regulatory factor 4 Novel U 0.009319294313666944 -0.16745315453429924 1.0 5237 -54396 Irgm2 immunity-related GTPase family M member 2 Novel U 0.009313039905881684 -0.16751793748453636 1.0 5238 -71862 Gpr160 G protein-coupled receptor 160 Novel U 0.009312247078892237 -0.16752614956043024 1.0 5239 -381286 Serpinb3c serine (or cysteine) peptidase inhibitor, clade B, member 3C Novel U 0.009301333693832235 -0.1676391900441236 1.0 5240 -171531 Mlph melanophilin Novel N 0.009295280895972936 -0.1677018847253752 1.0 5241 -66322 Krt88 keratin 88 Novel U 0.009294192589490123 -0.16771315736814799 1.0 5242 -103806 Maml1 mastermind like transcriptional coactivator 1 Novel N 0.009293787492235691 -0.16771735335219254 1.0 5243 -632126 Btnl4 butyrophilin-like 4 Novel U 0.009287205994589596 -0.16778552428845575 1.0 5244 -14086 Fscn1 fascin actin-bundling protein 1 Novel U 0.009282871172484603 -0.16783042423331962 1.0 5245 -381820 Smim10l1 small integral membrane protein 10 like 1 Novel U 0.009279859311688185 -0.16786162098843932 1.0 5246 -258976 Or4c127 olfactory receptor family 4 subfamily C member 127 Novel U 0.009274874062728236 -0.16791325803328525 1.0 5247 -21959 Tnp2 transition protein 2 Novel U 0.009271586426429435 -0.16794731126199303 1.0 5248 -70686 Dusp16 dual specificity phosphatase 16 Novel U 0.009268126488095928 -0.16798314918951213 1.0 5249 -11516 Adcyap1 adenylate cyclase activating polypeptide 1 Novel U 0.00926661244561577 -0.16799883159175016 1.0 5250 -14339 Aktip AKT interacting protein Novel U 0.009259904576692018 -0.16806831147755308 1.0 5251 -19889 Rp2 retinitis pigmentosa 2 homolog Novel U 0.009256689382387929 -0.168101614354461 1.0 5252 -74155 Errfi1 ERBB receptor feedback inhibitor 1 Novel U 0.009253614989593945 -0.16813345881395586 1.0 5253 -77034 2510039O18Rik RIKEN cDNA 2510039O18 gene Novel U 0.00925215238156656 -0.16814860845982288 1.0 5254 -11629 Aif1 allograft inflammatory factor 1 Novel U 0.009251679049735258 -0.16815351121537153 1.0 5255 -64050 Yeats4 YEATS domain containing 4 Novel N 0.009249609539611747 -0.16817494713319942 1.0 5256 -11964 Atp6v1a ATPase, H+ transporting, lysosomal V1 subunit A Novel U 0.009235694013561318 -0.16831908369458146 1.0 5257 -208595 Mterf1b mitochondrial transcription termination factor 1b Novel U 0.009233343110231402 -0.16834343427399096 1.0 5258 -20348 Sema3c sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3C Novel U 0.00923081572110458 -0.16836961288748314 1.0 5259 -58861 Cysltr1 cysteinyl leukotriene receptor 1 Novel N 0.009227789653418118 -0.16840095679710287 1.0 5260 -104111 Adcy3 adenylate cyclase 3 Novel N 0.009222714190531603 -0.1684535282748346 1.0 5261 -242860 Rsbn1l round spermatid basic protein 1-like Novel U 0.009219905559305136 -0.16848261998474953 1.0 5262 -15953 Ifi47 interferon gamma inducible protein 47 Novel U 0.009211863146316635 -0.1685659230341043 1.0 5263 -68642 Tmem216 transmembrane protein 216 Novel U 0.009210962211511001 -0.16857525488720443 1.0 5264 -258324 Or10al7 olfactory receptor family 10 subfamily AL member 7 Novel U 0.009206837753672871 -0.16861797588590755 1.0 5265 -69917 Nabp2 nucleic acid binding protein 2 Novel U 0.009197442049876837 -0.16871529627695978 1.0 5266 -69527 Mrps9 mitochondrial ribosomal protein S9 Novel U 0.009194468657554447 -0.16874609457689005 1.0 5267 -56213 Htra1 HtrA serine peptidase 1 Novel U 0.00919400648888219 -0.16875088170480432 1.0 5268 -231532 Arhgap24 Rho GTPase activating protein 24 Novel N 0.009193090827846986 -0.16876036609170622 1.0 5269 -74330 Dnajc14 DnaJ heat shock protein family (Hsp40) member C14 Novel U 0.009192796356620783 -0.16876341621498703 1.0 5270 -666060 Frmpd1 FERM and PDZ domain containing 1 Novel U 0.009190844658356036 -0.16878363184145465 1.0 5271 -12961 Crybb2 crystallin, beta B2 Novel N 0.009188649945230882 -0.16880636460785767 1.0 5272 -66169 Tomm7 translocase of outer mitochondrial membrane 7 Novel U 0.009187574888172364 -0.16881750001352924 1.0 5273 -239188 Enox1 ecto-NOX disulfide-thiol exchanger 1 Novel U 0.009184597527789341 -0.16884833941450114 1.0 5274 -11658 Alcam activated leukocyte cell adhesion molecule Novel N 0.009183833494219565 -0.16885625324910059 1.0 5275 -408058 BC048507 cDNA sequence BC048507 Novel U 0.009182237739320857 -0.1688727820258838 1.0 5276 -68760 Synpo2l synaptopodin 2-like Novel U 0.009178051256045275 -0.16891614548202907 1.0 5277 -108068 Grm2 glutamate receptor, metabotropic 2 Novel N 0.009176532168844948 -0.16893188013731272 1.0 5278 -12922 Crhr2 corticotropin releasing hormone receptor 2 Novel U 0.009174986201350136 -0.16894789321780304 1.0 5279 -258499 Or8g28 olfactory receptor family 8 subfamily G member 28 Novel U 0.009171536148420797 -0.16898362875263076 1.0 5280 -140497 Cd300c2 CD300C molecule 2 Novel U 0.009154290462060517 -0.16916225900502915 1.0 5281 -664837 Gm7361 predicted gene 7361 Novel U 0.009147230471064834 -0.16923538615967773 1.0 5282 -195018 Zzef1 zinc finger, ZZ-type with EF hand domain 1 Novel U 0.009145805326661757 -0.1692501477585557 1.0 5283 -93806 Serpinb9g serine (or cysteine) peptidase inhibitor, clade B, member 9g Novel U 0.009143346676598055 -0.16927561437509175 1.0 5284 -15444 Hpca hippocalcin Novel N 0.009142692291443606 -0.16928239247500979 1.0 5285 -66270 Retreg1 reticulophagy regulator 1 Novel U 0.009142034878323674 -0.16928920193849475 1.0 5286 -104416 Bap1 Brca1 associated protein 1 Novel U 0.009141973130090809 -0.16928984152466092 1.0 5287 -16195 Il6st interleukin 6 signal transducer Novel U 0.00914120253444641 -0.16929782332901366 1.0 5288 -216987 Utp6 UTP6 small subunit processome component Novel N 0.009139535634102237 -0.16931508902798217 1.0 5289 -17319 Mif macrophage migration inhibitory factor (glycosylation-inhibiting factor) Novel U 0.009138039365609613 -0.16933058732784162 1.0 5290 -77106 Tmem181a transmembrane protein 181A Novel U 0.009136785539896459 -0.16934357441336115 1.0 5291 -240185 Jcad junctional cadherin 5 associated Novel U 0.00913279557987066 -0.16938490228814548 1.0 5292 -14172 Fgf18 fibroblast growth factor 18 Novel U 0.009132375967193976 -0.16938924862245658 1.0 5293 -60597 Mapk8ip2 mitogen-activated protein kinase 8 interacting protein 2 Novel N 0.009131611236191507 -0.169397169681041 1.0 5294 -18483 Palm paralemmin Novel U 0.009130883197992183 -0.16940471067677662 1.0 5295 -268445 Ankrd13b ankyrin repeat domain 13b Novel U 0.009125426262780793 -0.1694612334323091 1.0 5296 -72750 Fam117b family with sequence similarity 117, member B Novel U 0.00912357702601249 -0.16948038776596483 1.0 5297 -18775 Prl3d1 prolactin family 3, subfamily d, member 1 Novel U 0.009121910195311953 -0.16949765274356685 1.0 5298 -29857 Mapk12 mitogen-activated protein kinase 12 Novel N 0.009120872293667148 -0.16950840329468456 1.0 5299 -70616 Sugp1 SURP and G patch domain containing 1 Novel U 0.009118749364481843 -0.16953039252539842 1.0 5300 -17156 Man1a2 mannosidase, alpha, class 1A, member 2 Novel N 0.00911693572608744 -0.1695491781322675 1.0 5301 -19383 Raly hnRNP-associated with lethal yellow Novel N 0.009112582614134508 -0.16959426752277512 1.0 5302 -211286 Cln5 ceroid-lipofuscinosis, neuronal 5 Novel U 0.009110859561276788 -0.16961211484763306 1.0 5303 -242316 Gdf6 growth differentiation factor 6 Novel U 0.00910885544598126 -0.1696328734079824 1.0 5304 -110385 Pde4c phosphodiesterase 4C, cAMP specific Novel U 0.009105989626863913 -0.16966255746819114 1.0 5305 -56016 Hebp2 heme binding protein 2 Novel U 0.009100911811699116 -0.16971515331074394 1.0 5306 -16206 Lrig1 leucine-rich repeats and immunoglobulin-like domains 1 Novel U 0.0090997003958852 -0.16972770111592134 1.0 5307 -26413 Mapk1 mitogen-activated protein kinase 1 Novel U 0.00909374124191827 -0.16978942583681417 1.0 5308 -83770 Tas1r2 taste receptor, type 1, member 2 Novel U 0.009088653709884969 -0.1698421223263715 1.0 5309 -11946 Atp5f1a ATP synthase F1 subunit alpha Novel U 0.009081689733885977 -0.16991425496084067 1.0 5310 -75612 Gns glucosamine (N-acetyl)-6-sulfatase Novel U 0.009081162204927839 -0.16991971908844747 1.0 5311 -68713 Ifitm1 interferon induced transmembrane protein 1 Novel U 0.009080013620250156 -0.1699316160907812 1.0 5312 -103733 Tubg1 tubulin, gamma 1 Novel U 0.009076342452411047 -0.16996964192657557 1.0 5313 -68576 Lamtor5 late endosomal/lysosomal adaptor, MAPK and MTOR activator 5 Novel U 0.009075192530216783 -0.16998155278286212 1.0 5314 -11835 Ar androgen receptor Novel U 0.00907474822292228 -0.16998615490321273 1.0 5315 -104099 Itga9 integrin alpha 9 Novel N 0.009074528727648194 -0.16998842842804623 1.0 5316 -258298 Or5b119 olfactory receptor family 5 subfamily B member 119 Novel U 0.009071327062919065 -0.17002159116606147 1.0 5317 -328424 Kcnrg potassium channel regulator Novel U 0.0090674072661761 -0.17006219229186875 1.0 5318 -231045 Iqca1l IQ motif containing with AAA domain 1 like Novel U 0.009064857324248884 -0.17008860450652602 1.0 5319 -258577 Or5m13b olfactory receptor family 5 subfamily M member 13B Novel U 0.009061165208533778 -0.1701268473197313 1.0 5320 -69276 Sec62 SEC62 homolog, preprotein translocation Novel U 0.009060636774421177 -0.1701323208228983 1.0 5321 -20307 Ccl8 C-C motif chemokine ligand 8 Novel U 0.009060390168052969 -0.17013487516355344 1.0 5322 -51801 Ramp1 receptor (calcitonin) activity modifying protein 1 Novel U 0.009052276471649414 -0.17021891656417806 1.0 5323 -17965 Nbl1 NBL1, DAN family BMP antagonist Novel U 0.009049254456597789 -0.1702502184967394 1.0 5324 -69627 Fam89a family with sequence similarity 89, member A Novel U 0.009043212021022373 -0.1703128058457952 1.0 5325 -30939 Pttg1 pituitary tumor-transforming gene 1 Novel U 0.0090429413893899 -0.17031560903934784 1.0 5326 -218793 Ube2e2 ubiquitin-conjugating enzyme E2E 2 Novel U 0.00904010650227301 -0.17034497270691268 1.0 5327 -13628 Eef1a2 eukaryotic translation elongation factor 1 alpha 2 Novel U 0.009035141700373027 -0.17039639796178363 1.0 5328 -20181 Rxra retinoid X receptor alpha Novel U 0.009034261064609438 -0.17040551955807354 1.0 5329 -258958 Or13a19 olfactory receptor family 13 subfamily A member 19 Novel U 0.00902284665531356 -0.17052374963433178 1.0 5330 -30794 Pdlim4 PDZ and LIM domain 4 Novel U 0.009016738210362557 -0.17058702070632992 1.0 5331 -111266 Cdc34b cell division cycle 34B Novel U 0.009006862549584781 -0.17068931247602126 1.0 5332 -54353 Skap2 src family associated phosphoprotein 2 Novel N 0.009000631931510756 -0.1707538490132115 1.0 5333 -73162 Otud3 OTU domain containing 3 Novel U 0.009000481776360513 -0.17075540431532163 1.0 5334 -20238 Atxn1 ataxin 1 Novel U 0.009000214452116169 -0.17075817325105674 1.0 5335 -104771 Jkamp JNK1/MAPK8-associated membrane protein Novel U 0.008999791592478252 -0.17076255321728553 1.0 5336 -73608 Marveld3 MARVEL (membrane-associating) domain containing 3 Novel U 0.008993756561535688 -0.17082506386939764 1.0 5337 -381489 Rxfp1 relaxin/insulin-like family peptide receptor 1 Novel U 0.008976793687656665 -0.17100076475941212 1.0 5338 -14587 Gfra3 glial cell line derived neurotrophic factor family receptor alpha 3 Novel N 0.00897482824960989 -0.17102112270209033 1.0 5339 -53414 Bysl bystin-like Novel U 0.00897280662749747 -0.1710420625974735 1.0 5340 -56327 Arl2 ADP-ribosylation factor-like 2 Novel U 0.008972553114758289 -0.17104468847409215 1.0 5341 -101351 Eogt EGF domain specific O-linked N-acetylglucosamine transferase Novel U 0.008969522553550845 -0.17107607892745455 1.0 5342 -544971 Bdp1 B double prime 1, subunit of RNA polymerase III transcription initiation factor IIIB Novel N 0.008965251699214385 -0.1711203162962748 1.0 5343 -15357 Hmgcr 3-hydroxy-3-methylglutaryl-Coenzyme A reductase Novel N 0.00896110584145062 -0.1711632589547042 1.0 5344 -258228 Or6b2b olfactory receptor family 6 subfamily B member 2B Novel U 0.00894834085714753 -0.1712954782424893 1.0 5345 -13631 Eef2k eukaryotic elongation factor-2 kinase Novel U 0.008941226353692228 -0.1713691700354026 1.0 5346 -217125 Samd14 sterile alpha motif domain containing 14 Novel U 0.008934246854374212 -0.17144146345989994 1.0 5347 -258873 Or8b47 olfactory receptor family 8 subfamily B member 47 Novel U 0.008929076923915806 -0.1714950134296358 1.0 5348 -94332 Cadm3 cell adhesion molecule 3 Novel N 0.008927315737240865 -0.17151325574331894 1.0 5349 -212111 Inpp5a inositol polyphosphate-5-phosphatase A Novel N 0.008922120762280784 -0.1715670651231799 1.0 5350 -75398 Mrpl32 mitochondrial ribosomal protein L32 Novel U 0.008920861258770252 -0.171580111019138 1.0 5351 -76299 Erp44 endoplasmic reticulum protein 44 Novel U 0.008913081410953453 -0.1716606944270757 1.0 5352 -328505 Skint7 selection and upkeep of intraepithelial T cells 7 Novel U 0.008912295507094076 -0.17166883479341594 1.0 5353 -626970 Scgb2b21 secretoglobin, family 2B, member 21 Novel U 0.008901116916302012 -0.17178462226936378 1.0 5354 -432735 Vmn1r207 vomeronasal 1 receptor 207 Novel U 0.008900514905510075 -0.1717908578773566 1.0 5355 -269061 Cpsf7 cleavage and polyadenylation specific factor 7 Novel U 0.008899660767048574 -0.17179970501546254 1.0 5356 -66185 Virma vir like m6A methyltransferase associated Novel N 0.008898005245437999 -0.1718168528538825 1.0 5357 -229697 Cym chymosin Novel U 0.008892727950106054 -0.17187151490544905 1.0 5358 -81910 Rrbp1 ribosome binding protein 1 Novel N 0.008886896698241623 -0.17193191482056877 1.0 5359 -66255 Hsbp1l1 heat shock factor binding protein 1-like 1 Novel U 0.008877814941824895 -0.17202598335498656 1.0 5360 -16627 Klra1 killer cell lectin-like receptor, subfamily A, member 1 Novel U 0.008876275424614137 -0.17204192962364673 1.0 5361 -75600 Calml4 calmodulin-like 4 Novel N 0.008875241547416113 -0.17205263848967695 1.0 5362 -236798 Adgrg4 adhesion G protein-coupled receptor G4 Novel N 0.008874745023063312 -0.17205778147260092 1.0 5363 -12234 Btrc beta-transducin repeat containing protein Novel U 0.008864057382278762 -0.17216848370451002 1.0 5364 -22416 Wnt3a wingless-type MMTV integration site family, member 3A Novel U 0.008861850200563404 -0.1721913456201605 1.0 5365 -13666 Eif2ak3 eukaryotic translation initiation factor 2 alpha kinase 3 Novel U 0.008860250821830075 -0.17220791193250362 1.0 5366 -22147 Tuba3b tubulin, alpha 3B Novel U 0.008849371787653852 -0.17232059661087193 1.0 5367 -620858 Gm13539 predicted gene 13539 Novel U 0.008849026707893934 -0.17232417093568128 1.0 5368 -100040340 Cox5b-ps cytochrome c oxidase subunit 5B, pseudogene Novel U 0.008842241972771954 -0.17239444699903858 1.0 5369 -330286 D630045J12Rik RIKEN cDNA D630045J12 gene Novel N 0.008842227630460234 -0.1723945955562319 1.0 5370 -269999 Orai3 ORAI calcium release-activated calcium modulator 3 Novel U 0.008840922720232592 -0.17240811177347318 1.0 5371 -236784 Or11q2 olfactory receptor family 11 subfamily Q member 2 Novel U 0.008836865956374946 -0.17245013160015177 1.0 5372 -258769 Or5p80 olfactory receptor family 5 subfamily P member 80 Novel U 0.008836014152227128 -0.17245895455951332 1.0 5373 -108679 Cops8 COP9 signalosome subunit 8 Novel U 0.008835662162568876 -0.17246260045682246 1.0 5374 -228413 Prrg4 proline rich Gla (G-carboxyglutamic acid) 4 (transmembrane) Novel U 0.00882695454943929 -0.17255279362737133 1.0 5375 -259072 Or52x1 olfactory receptor family 52 subfamily X member 1 Novel U 0.00882620960050248 -0.17256050978396995 1.0 5376 -664787 LOC664787 Sp110 nuclear body protein pseudogene Novel U 0.008825997216912265 -0.17256270964621567 1.0 5377 -110168 Gpr18 G protein-coupled receptor 18 Novel U 0.00882537446704747 -0.1725691600688434 1.0 5378 -68979 Nol11 nucleolar protein 11 Novel N 0.008821554832368607 -0.17260872371928335 1.0 5379 -216033 Ctnna3 catenin alpha 3 Novel N 0.008820547592975299 -0.17261915667180802 1.0 5380 -258785 Or4c123 olfactory receptor family 4 subfamily C member 123 Novel U 0.008814349390483842 -0.1726833574494596 1.0 5381 -192176 Flna filamin, alpha Novel U 0.008808508261607277 -0.17274385967034628 1.0 5382 -11745 Anxa3 annexin A3 Novel U 0.008807305087997708 -0.172756322103042 1.0 5383 -20652 Soat1 sterol O-acyltransferase 1 Novel U 0.008806081297544007 -0.1727689980843315 1.0 5384 -72351 Ptar1 protein prenyltransferase alpha subunit repeat containing 1 Novel U 0.008805771181427339 -0.17277221025687342 1.0 5385 -11647 Alpl alkaline phosphatase, liver/bone/kidney Novel U 0.008804746310236693 -0.1727828258389753 1.0 5386 -11548 Adra1b adrenergic receptor, alpha 1b Novel U 0.008796813321845719 -0.17286499547194606 1.0 5387 -20343 Sell selectin, lymphocyte Novel U 0.00879661051492951 -0.17286709613931725 1.0 5388 -353165 Tas2r136 taste receptor, type 2, member 136 Novel U 0.008795136293781938 -0.17288236607350138 1.0 5389 -68279 Mcoln2 mucolipin 2 Novel N 0.008793709437741427 -0.17289714540146364 1.0 5390 -67249 Tbc1d19 TBC1 domain family, member 19 Novel U 0.008785898705977438 -0.17297804870431102 1.0 5391 -71923 Borcs6 BLOC-1 related complex subunit 6 Novel U 0.008784701520285912 -0.1729904491143485 1.0 5392 -13800 Enah ENAH actin regulator Novel U 0.00878214385375865 -0.17301694134015916 1.0 5393 -13669 Eif3a eukaryotic translation initiation factor 3, subunit A Novel U 0.008776955574096214 -0.17307068137034715 1.0 5394 -382083 Snx22 sorting nexin 22 Novel U 0.00877648364468367 -0.17307556959968845 1.0 5395 -19152 Prtn3 proteinase 3 Novel U 0.008771736954457115 -0.17312473566101605 1.0 5396 -12626 Cetn3 centrin 3 Novel N 0.008769373698642778 -0.17314921418705312 1.0 5397 -17826 Fam89b family with sequence similarity 89, member B Novel U 0.00876765890434371 -0.173166975970032 1.0 5398 -70144 Lrch3 leucine-rich repeats and calponin homology (CH) domain containing 3 Novel N 0.008767311916618947 -0.17317057005747852 1.0 5399 -270084 Lpcat2 lysophosphatidylcholine acyltransferase 2 Novel U 0.008767034020104746 -0.17317344850043723 1.0 5400 -12369 Casp7 caspase 7 Novel U 0.008766374515052277 -0.17318027963209068 1.0 5401 -104002 Ctsq cathepsin Q Novel U 0.008757381440162044 -0.17327342960617229 1.0 5402 -54409 Ramp2 receptor (calcitonin) activity modifying protein 2 Novel U 0.008752977754550738 -0.1733190428369708 1.0 5403 -258371 Or5c1 olfactory receptor family 5 subfamily C member 1 Novel U 0.008752206944073452 -0.17332702686655552 1.0 5404 -68755 Cgrrf1 cell growth regulator with ring finger domain 1 Novel N 0.008748284540501668 -0.17336765499381 1.0 5405 -21676 Tead1 TEA domain family member 1 Novel N 0.0087445204535674 -0.17340664328253744 1.0 5406 -387353 Tas2r126 taste receptor, type 2, member 126 Novel N 0.008741028670799688 -0.17344281105365925 1.0 5407 -269902 Vmn2r57 vomeronasal 2, receptor 57 Novel U 0.008738871585993796 -0.17346515406716834 1.0 5408 -67130 Ndufa6 NADH:ubiquinone oxidoreductase subunit A6 Novel U 0.008736326293796507 -0.17349151812007588 1.0 5409 -56199 Abcb10 ATP-binding cassette, sub-family B member 10 Novel U 0.008732222274222337 -0.17353402741991275 1.0 5410 -269060 Dagla diacylglycerol lipase, alpha Novel N 0.008728250178903217 -0.17357517025265262 1.0 5411 -56453 Mbtps1 membrane-bound transcription factor peptidase, site 1 Novel U 0.008725503371730775 -0.1736036215910483 1.0 5412 -217342 Ube2o ubiquitin-conjugating enzyme E2O Novel U 0.00872290092333249 -0.1736305776660069 1.0 5413 -637873 Vmn2r61 vomeronasal 2, receptor 61 Novel U 0.008719305087957442 -0.1736678232106149 1.0 5414 -80782 Klrb1b killer cell lectin-like receptor subfamily B member 1B Novel U 0.00871831360219962 -0.17367809298750111 1.0 5415 -29845 Or13c7 olfactory receptor family 13 subfamily C member 7 Novel U 0.008717056847612903 -0.17369111041019675 1.0 5416 -216274 Cep290 centrosomal protein 290 Novel U 0.008716055587524396 -0.17370148142927885 1.0 5417 -14809 Grik5 glutamate receptor, ionotropic, kainate 5 (gamma 2) Novel U 0.00871198030644818 -0.17374369305669862 1.0 5418 -110052 Dek DEK proto-oncogene Novel U 0.008711423445284004 -0.17374946100633135 1.0 5419 -12946 Cr1l complement C3b/C4b receptor 1 like Novel U 0.00870238722368456 -0.1738430578926086 1.0 5420 -216792 Iba57 IBA57 homolog, iron-sulfur cluster assembly Novel N 0.008700739425238543 -0.173860125734744 1.0 5421 -21803 Tgfb1 transforming growth factor, beta 1 Novel U 0.008699129153831319 -0.1738768048730452 1.0 5422 -107702 Rnh1 ribonuclease/angiogenin inhibitor 1 Novel U 0.008695509653863048 -0.1739142955347319 1.0 5423 -258593 Or2ag18 olfactory receptor family 2 subfamily AG member 18 Novel U 0.008687944639872757 -0.17399265370095687 1.0 5424 -258733 Or5p72 olfactory receptor family 5 subfamily P member 72 Novel U 0.00868259458830059 -0.1740480693592679 1.0 5425 -73825 Ppp1r21 protein phosphatase 1, regulatory subunit 21 Novel N 0.008676150007187718 -0.17411482211858081 1.0 5426 -546980 Vmn2r74 vomeronasal 2, receptor 74 Novel U 0.00867499922126127 -0.17412674192137692 1.0 5427 -232409 Clec2e C-type lectin domain family 2, member e Novel U 0.008667996417255784 -0.17419927673506097 1.0 5428 -20928 Abcc9 ATP-binding cassette, sub-family C member 9 Novel U 0.008667752555060783 -0.17420180265166027 1.0 5429 -75593 Malsu1 mitochondrial assembly of ribosomal large subunit 1 Novel N 0.008667003569081986 -0.17420956062380707 1.0 5430 -15370 Nr4a1 nuclear receptor subfamily 4, group A, member 1 Novel U 0.008665098662455663 -0.1742292915840221 1.0 5431 -19657 Rbmy RNA binding motif protein, Y chromosome Novel U 0.008661333841940094 -0.17426828747116055 1.0 5432 -67126 Atp5f1e ATP synthase F1 subunit epsilon Novel U 0.0086526622277559 -0.17435810776581648 1.0 5433 -16449 Jag1 jagged 1 Novel U 0.008645332616835207 -0.17443402763478502 1.0 5434 -258531 Or2t45 olfactory receptor family 2 subfamily T member 45 Novel U 0.008636446804961423 -0.17452606658206835 1.0 5435 -12482 Ms4a1 membrane-spanning 4-domains, subfamily A, member 1 Novel U 0.00863287040125922 -0.17456311085404785 1.0 5436 -216825 Usp22 ubiquitin specific peptidase 22 Novel U 0.008631756231281814 -0.17457465139004744 1.0 5437 -244650 Phlpp2 PH domain and leucine rich repeat protein phosphatase 2 Novel U 0.008619565871778718 -0.17470091873304402 1.0 5438 -18370 Or52a5b olfactory receptor family 52 subfamily A member 5B Novel U 0.008617894522602797 -0.17471823051286553 1.0 5439 -270669 Mbtps2 membrane-bound transcription factor peptidase, site 2 Novel U 0.008608260069601581 -0.17481802386033657 1.0 5440 -100043200 Or10u4 olfactory receptor family 10 subfamily U member 4 Novel U 0.0086067099840129 -0.17483407959590783 1.0 5441 -109075 Exosc4 exosome component 4 Novel N 0.008605949538580317 -0.1748419562647002 1.0 5442 -17762 Mapt microtubule-associated protein tau Novel U 0.008603948799522032 -0.17486267985409518 1.0 5443 -12991 Csn2 casein beta Novel U 0.008601777496677279 -0.1748851701375834 1.0 5444 -78286 Nav2 neuron navigator 2 Novel U 0.008600891938472667 -0.1748943427203556 1.0 5445 -233437 Vmn2r66 vomeronasal 2, receptor 66 Novel U 0.008599683085697358 -0.17490686397766333 1.0 5446 -67254 Bmerb1 bMERB domain containing 1 Novel U 0.008598723949298887 -0.17491679868094878 1.0 5447 -671917 LOC671917 component of Sp100-rs-like Novel U 0.008598569970587644 -0.1749183935873781 1.0 5448 -28018 Ubfd1 ubiquitin family domain containing 1 Novel U 0.00859550399424089 -0.1749501508695892 1.0 5449 -12006 Axin2 axin 2 Novel U 0.008589661024176012 -0.17501067216144395 1.0 5450 -50789 Fbxl3 F-box and leucine-rich repeat protein 3 Novel U 0.008588542520131932 -0.1750222575895637 1.0 5451 -18484 Pam peptidylglycine alpha-amidating monooxygenase Novel N 0.008584926836336933 -0.17505970872345306 1.0 5452 -15242 Hhex hematopoietically expressed homeobox Novel U 0.008582332997166061 -0.17508657562431712 1.0 5453 -100043272 Inafm2 InaF motif containing 2 Novel U 0.008580901438713205 -0.17510140365971186 1.0 5454 -14230 Fkbp10 FK506 binding protein 10 Novel U 0.008579400973882895 -0.17511694542509906 1.0 5455 -106489 Sft2d1 SFT2 domain containing 1 Novel U 0.0085771823927315 -0.17513992541573328 1.0 5456 -258748 Or4c103 olfactory receptor family 4 subfamily C member 103 Novel U 0.00857494841464586 -0.17516306488730624 1.0 5457 -435376 Atp6ap1l ATPase, H+ transporting, lysosomal accessory protein 1-like Novel U 0.00857177696543422 -0.17519591465398468 1.0 5458 -19401 Rara retinoic acid receptor, alpha Novel U 0.008569140212635712 -0.175223226052793 1.0 5459 -233208 Scaf1 SR-related CTD-associated factor 1 Novel U 0.00856852534666546 -0.17522959481430025 1.0 5460 -66460 Sys1 SYS1 Golgi-localized integral membrane protein homolog (S. cerevisiae) Novel U 0.008566997282965652 -0.17524542244787047 1.0 5461 -396184 Flrt1 fibronectin leucine rich transmembrane protein 1 Novel N 0.008566931849121572 -0.17524610020947645 1.0 5462 -114128 Laptm4b lysosomal-associated protein transmembrane 4B Novel U 0.008566010904459064 -0.17525563932401625 1.0 5463 -317758 Gimap9 GTPase, IMAP family member 9 Novel U 0.008564750668372749 -0.1752686928079703 1.0 5464 -74356 Matcap1 microtubule associated tyrosine carboxypeptidase 1 Novel U 0.008562427113670048 -0.17529276011119815 1.0 5465 -226519 Lamc1 laminin, gamma 1 Novel U 0.008561863076803384 -0.17529860238652134 1.0 5466 -21823 Th tyrosine hydroxylase Novel U 0.008559655489503689 -0.17532146850320102 1.0 5467 -208691 Eif5a2 eukaryotic translation initiation factor 5A2 Novel U 0.0085590977673919 -0.17532724537050084 1.0 5468 -22045 Trhr thyrotropin releasing hormone receptor Novel U 0.00855561804580488 -0.1753632882123095 1.0 5469 -14612 Gja4 gap junction protein, alpha 4 Novel U 0.008548641970894895 -0.17543554616690102 1.0 5470 -66449 Pam16 presequence translocase-asssociated motor 16 Novel U 0.008547551231264865 -0.17544684401213273 1.0 5471 -14950 H13 histocompatibility 13 Novel U 0.008544621652161183 -0.1754771884961839 1.0 5472 -71949 Cers5 ceramide synthase 5 Novel N 0.008543688539019583 -0.17548685365143019 1.0 5473 -257880 Or8k28 olfactory receptor family 8 subfamily K member 28 Novel U 0.00854134634540201 -0.17551111401592553 1.0 5474 -15551 Htr1b 5-hydroxytryptamine (serotonin) receptor 1B Novel N 0.008540635454111255 -0.17551847740454588 1.0 5475 -244667 Disc1 disrupted in schizophrenia 1 Novel U 0.008523585318327781 -0.1756950821504981 1.0 5476 -107513 Ssr1 signal sequence receptor, alpha Novel U 0.008517152161717287 -0.17576171657519093 1.0 5477 -12054 Bcl7b B cell CLL/lymphoma 7B Novel U 0.008511519952282108 -0.17582005481537163 1.0 5478 -68475 Ssna1 SS nuclear autoantigen 1 Novel U 0.008510475523951322 -0.1758308729696882 1.0 5479 -19273 Ptpru protein tyrosine phosphatase receptor type U Novel U 0.008508081840347256 -0.175855666665771 1.0 5480 -217718 Nek9 NIMA (never in mitosis gene a)-related expressed kinase 9 Novel U 0.008507707705166706 -0.17585954194567208 1.0 5481 -67665 Dctn4 dynactin 4 Novel U 0.008506845369006713 -0.17586847399526953 1.0 5482 -258738 Or5p79 olfactory receptor family 5 subfamily P member 79 Novel U 0.008503589752390904 -0.17590219556515346 1.0 5483 -258394 Or10ak7 olfactory receptor family 10 subfamily AK member 7 Novel U 0.0085013807121167 -0.17592507673169538 1.0 5484 -100861753 Anxa2r1 annexin A2 receptor 1 Novel U 0.008498752055723226 -0.17595230426820654 1.0 5485 -382551 Cd300ld3 CD300 molecule like family member D3 Novel U 0.008495021103445107 -0.17599094934925483 1.0 5486 -76229 Vmn2r29 vomeronasal 2, receptor 29 Novel U 0.008494266432509574 -0.17599876620599664 1.0 5487 -237636 Npc1l1 NPC1 like intracellular cholesterol transporter 1 Novel U 0.008489973923603305 -0.1760432278721391 1.0 5488 -210094 Iglon5 IgLON family member 5 Novel U 0.008489329496979897 -0.17604990282192 1.0 5489 -66839 Dele1 DAP3 binding cell death enhancer 1 Novel U 0.008489239414533757 -0.17605083589293583 1.0 5490 -11465 Actg1 actin, gamma, cytoplasmic 1 Novel U 0.008489198117168969 -0.1760512636496827 1.0 5491 -56032 Nprl2 NPR2 like, GATOR1 complex subunit Novel U 0.00848745483909759 -0.17606932046663887 1.0 5492 -17082 Il1rl1 interleukin 1 receptor-like 1 Novel U 0.008486079675462957 -0.17608356436636033 1.0 5493 -258448 Or2h2c olfactory receptor family 2 subfamily H member 2C Novel U 0.008483050320759218 -0.17611494232279698 1.0 5494 -546272 Gm5934 predicted gene 5934 Novel U 0.008481404624650695 -0.17613198838898975 1.0 5495 -235633 Als2cl ALS2 C-terminal like Novel U 0.008479696017998754 -0.17614968608052312 1.0 5496 -12368 Casp6 caspase 6 Novel U 0.008466994913396381 -0.17628124370446818 1.0 5497 -257630 Il17f interleukin 17F Novel U 0.008464823070601547 -0.1763037395807416 1.0 5498 -100042225 Vmn2r130 vomeronasal 2, receptor 130 Novel U 0.008462024421878772 -0.1763327278922115 1.0 5499 -68774 Ms4a6d membrane-spanning 4-domains, subfamily A, member 6D Novel U 0.008460605488468902 -0.17634742515782595 1.0 5500 -258156 Or52s6 olfactory receptor family 52 subfamily S member 6 Novel U 0.008460513881347902 -0.17634837402137385 1.0 5501 -75782 Lca5 Leber congenital amaurosis 5 (human) Novel U 0.008454348247537548 -0.17641223745369722 1.0 5502 -14939 Gzmb granzyme B Novel U 0.008450584520042036 -0.17645122201936983 1.0 5503 -14528 Gch1 GTP cyclohydrolase 1 Novel U 0.00845051555467875 -0.17645193636033565 1.0 5504 -17381 Mmp12 matrix metallopeptidase 12 Novel U 0.008447483235298023 -0.1764833450247991 1.0 5505 -66849 Ppp1r2 protein phosphatase 1, regulatory inhibitor subunit 2 Novel U 0.008445519963627534 -0.17650368052822296 1.0 5506 -258414 Or8b36 olfactory receptor family 8 subfamily B member 36 Novel U 0.00844028856944046 -0.17655786713723984 1.0 5507 -546049 Rps23rg1 ribosomal protein S23, retrogene 1 Novel U 0.008440021463468584 -0.17656063381211587 1.0 5508 -69716 Trip13 thyroid hormone receptor interactor 13 Novel U 0.008438893014395162 -0.17657232225052263 1.0 5509 -68262 Agpat4 1-acylglycerol-3-phosphate O-acyltransferase 4 Novel U 0.00843517745553253 -0.17661080788707936 1.0 5510 -217379 Ubxn2a UBX domain protein 2A Novel U 0.008433887067192405 -0.17662417368708713 1.0 5511 -234094 Arhgef10 Rho guanine nucleotide exchange factor 10 Novel U 0.008432450790365902 -0.17663905059524102 1.0 5512 -258713 Or6n2 olfactory receptor family 6 subfamily N member 2 Novel U 0.008432198926021659 -0.17664165939783907 1.0 5513 -74112 Usp16 ubiquitin specific peptidase 16 Novel U 0.00842438825678651 -0.17672256205301484 1.0 5514 -20707 Serpinb9c serine (or cysteine) peptidase inhibitor, clade B, member 9c Novel U 0.008423283760637055 -0.17673400238782255 1.0 5515 -258478 Or5h17 olfactory receptor family 5 subfamily H member 17 Novel U 0.008423170986429675 -0.17673517049935533 1.0 5516 -105242399 Gm21083 predicted gene, 21083 Novel U 0.008415425886458668 -0.17681539399024856 1.0 5517 -368203 Brcc3dc BRCA1/BRCA2-containing complex, subunit 3, domain containing Novel U 0.008402030557276978 -0.1769541423695648 1.0 5518 -104718 Ttc7b tetratricopeptide repeat domain 7B Novel U 0.008398826522226696 -0.17698732965928865 1.0 5519 -258877 Or2t26 olfactory receptor family 2 subfamily T member 26 Novel U 0.008398429323137481 -0.1769914438343975 1.0 5520 -80915 Dusp12 dual specificity phosphatase 12 Novel N 0.00839503106633202 -0.1770266428666768 1.0 5521 -14600 Ghr growth hormone receptor Novel U 0.008391582098015138 -0.17706236716712434 1.0 5522 -75458 Cklf chemokine-like factor Novel U 0.008389697955660384 -0.17708188305169706 1.0 5523 -258975 Or4a15 olfactory receptor family 4 subfamily A member 15 Novel U 0.008389261614210526 -0.1770864026620907 1.0 5524 -19170 Psmb1 proteasome (prosome, macropain) subunit, beta type 1 Novel N 0.008387068430888583 -0.17710911958284237 1.0 5525 -63873 Trpv4 transient receptor potential cation channel, subfamily V, member 4 Novel U 0.008384561881412745 -0.17713508233991473 1.0 5526 -57314 Nelfcd negative elongation factor complex member C/D, Th1l Novel N 0.008374004400075881 -0.17724443638454343 1.0 5527 -72661 Serp2 stress-associated endoplasmic reticulum protein family member 2 Novel U 0.00837351922261855 -0.17724946183669715 1.0 5528 -76072 Rnf183 ring finger protein 183 Novel U 0.008370667927491525 -0.1772789954578916 1.0 5529 -59069 Tpm3 tropomyosin 3, gamma Novel U 0.008369357572816002 -0.1772925680685451 1.0 5530 -72587 Pan3 PAN3 poly(A) specific ribonuclease subunit Novel U 0.008366822744559221 -0.17731882373630084 1.0 5531 -217365 Nploc4 NPL4 homolog, ubiquitin recognition factor Novel U 0.008366144425586612 -0.1773258497419206 1.0 5532 -100037258 Dnajc3 DnaJ heat shock protein family (Hsp40) member C3 Novel U 0.00836303868135774 -0.17735801893854736 1.0 5533 -12829 Col4a4 collagen, type IV, alpha 4 Novel U 0.008361328259164557 -0.17737573543539728 1.0 5534 -50770 Atp11a ATPase, class VI, type 11A Novel N 0.00835403254396308 -0.17745130421362046 1.0 5535 -66626 Cdip1 cell death inducing Trp53 target 1 Novel N 0.00835184893466826 -0.17747392196691392 1.0 5536 -12334 Capn2 calpain 2 Novel U 0.008351432350078396 -0.17747823693640125 1.0 5537 -93725 Ear10 eosinophil-associated, ribonuclease A family, member 10 Novel U 0.008349490489698049 -0.17749835066238565 1.0 5538 -12311 Calcr calcitonin receptor Novel U 0.008346929796025476 -0.1775248742432679 1.0 5539 -620235 Siglec15 sialic acid binding Ig-like lectin 15 Novel U 0.008344472100533679 -0.17755033097237952 1.0 5540 -667069 Vmn2r6 vomeronasal 2, receptor 6 Novel U 0.008342888303299503 -0.1775667358920666 1.0 5541 -170648 Or2n1e olfactory receptor family 2 subfamily N member 1E Novel U 0.008342244868263158 -0.17757340057102128 1.0 5542 -107321 Lpxn leupaxin Novel U 0.008336068922720445 -0.1776373708119294 1.0 5543 -18341 Or2w1 olfactory receptor family 2 subfamily W member 1 Novel U 0.008335973761936497 -0.17763835648420132 1.0 5544 -80861 Dhx58 DExH-box helicase 58 Novel U 0.008333715350256614 -0.17766174903814025 1.0 5545 -381716 Pttg1ip2 PTTG1IP family member 2 Novel U 0.008331520177682468 -0.17768448656350086 1.0 5546 -78244 Dnajc21 DnaJ heat shock protein family (Hsp40) member C21 Novel U 0.008331204295126798 -0.17768775846462842 1.0 5547 -80706 Or8a1b olfactory receptor family 8 subfamily A member 1B Novel U 0.008326333079000268 -0.1777382143611344 1.0 5548 -68465 Adipor2 adiponectin receptor 2 Novel U 0.008325478404276178 -0.17774706705383062 1.0 5549 -18131 Notch3 notch 3 Novel U 0.008323913365357092 -0.17776327767550662 1.0 5550 -19737 Rgs5 regulator of G-protein signaling 5 Novel U 0.008313798257620953 -0.17786804962892128 1.0 5551 -140740 Sec63 SEC63 homolog, protein translocation regulator Novel U 0.008312755349760987 -0.17787885203425108 1.0 5552 -233080 Ffar3 free fatty acid receptor 3 Novel U 0.00831070674631452 -0.17790007140140535 1.0 5553 -70835 Prss22 serine protease 22 Novel N 0.008306774235113331 -0.17794080422315292 1.0 5554 -18020 Nfatc2ip nuclear factor of activated T cells, cytoplasmic, calcineurin dependent 2 interacting protein Novel U 0.008304794038122768 -0.1779613150384857 1.0 5555 -11819 Nr2f2 nuclear receptor subfamily 2, group F, member 2 Novel U 0.008304281973834057 -0.17796661898355498 1.0 5556 -73830 Eif3k eukaryotic translation initiation factor 3, subunit K Novel N 0.008302478433140284 -0.17798529999877286 1.0 5557 -257889 Or2h15 olfactory receptor family 2 subfamily H member 15 Novel U 0.008300856406952203 -0.17800210089270777 1.0 5558 -67468 Mmd monocyte to macrophage differentiation-associated Novel U 0.008300380845345956 -0.17800702674419203 1.0 5559 -70508 Bbx bobby sox HMG box containing Novel U 0.008295969033704324 -0.17805272414414555 1.0 5560 -17342 Mitf melanogenesis associated transcription factor Novel U 0.00829072949222149 -0.1781069951425841 1.0 5561 -108900 Fam72a family with sequence similarity 72, member A Novel U 0.008288959781369249 -0.1781253257494155 1.0 5562 -14675 Gna14 guanine nucleotide binding protein, alpha 14 Novel N 0.008286270289017912 -0.17815318342277836 1.0 5563 -66046 Ndufb5 NADH:ubiquinone oxidoreductase subunit B5 Novel N 0.008285261275172871 -0.17816363475501576 1.0 5564 -67767 Jagn1 jagunal homolog 1 Novel U 0.008284738269085807 -0.17816905203487268 1.0 5565 -54519 Apbb1ip amyloid beta precursor protein binding family B member 1 interacting protein Novel U 0.008282613045386278 -0.17819106503208945 1.0 5566 -56736 Rnf14 ring finger protein 14 Novel U 0.008280945983982097 -0.17820833239931222 1.0 5567 -66315 Senp7 SUMO1/sentrin specific peptidase 7 Novel U 0.008279909463649093 -0.17821906864284773 1.0 5568 -19653 Rbm4 RNA binding motif protein 4 Novel U 0.008279302666314091 -0.17822535382969626 1.0 5569 -53419 Corin corin, serine peptidase Novel U 0.008278610847697382 -0.17823251966418585 1.0 5570 -98766 Ubac1 ubiquitin associated domain containing 1 Novel N 0.008274467517631853 -0.17827543614079996 1.0 5571 -171469 Gpr37l1 G protein-coupled receptor 37-like 1 Novel U 0.008273155417671027 -0.17828902682906123 1.0 5572 -637004 Vmn2r3 vomeronasal 2, receptor 3 Novel U 0.0082685536204151 -0.17833669209376218 1.0 5573 -406218 Panx2 pannexin 2 Novel U 0.008265323138028068 -0.17837015332413064 1.0 5574 -72674 Adipor1 adiponectin receptor 1 Novel U 0.00826067258672422 -0.1784183235816573 1.0 5575 -232341 Wnk1 WNK lysine deficient protein kinase 1 Novel U 0.008256532709406569 -0.17846120429482237 1.0 5576 -51944 Knstrn kinetochore-localized astrin/SPAG5 binding Novel U 0.008252040434161103 -0.17850773513413934 1.0 5577 -77462 Tmem116 transmembrane protein 116 Novel U 0.008245792269874054 -0.17857245341442726 1.0 5578 -108671 Dnajc9 DnaJ heat shock protein family (Hsp40) member C9 Novel N 0.008244672857980919 -0.17858404824601765 1.0 5579 -385263 Gm1527 predicted gene 1527 Novel U 0.008241688533018505 -0.17861495978587394 1.0 5580 -210933 Adgrb3 adhesion G protein-coupled receptor B3 Novel N 0.008239390589342655 -0.17863876181092758 1.0 5581 -114332 Lyve1 lymphatic vessel endothelial hyaluronan receptor 1 Novel U 0.008238413601086887 -0.17864888142316407 1.0 5582 -100043346 Rpl10-ps3 ribosomal protein L10, pseudogene 3 Novel U 0.008234674912250132 -0.1786876066392324 1.0 5583 -14309 Fshr follicle stimulating hormone receptor Novel U 0.008232799985358382 -0.17870702707034225 1.0 5584 -14706 Gng4 guanine nucleotide binding protein (G protein), gamma 4 Novel U 0.008231667620853983 -0.17871875606465434 1.0 5585 -56760 Clec1b C-type lectin domain family 1, member b Novel N 0.008225352593524297 -0.17878416691013985 1.0 5586 -60363 Cldn15 claudin 15 Novel U 0.008217231656047635 -0.1788682833135617 1.0 5587 -246177 Myo1g myosin IG Novel U 0.008215585429591471 -0.17888533487307784 1.0 5588 -211329 Ncoa7 nuclear receptor coactivator 7 Novel N 0.008210865224818575 -0.17893422659894714 1.0 5589 -258867 Or2y3 olfactory receptor family 2 subfamily Y member 3 Novel U 0.008209462874677463 -0.17894875209560898 1.0 5590 -140494 Atp6v0a4 ATPase, H+ transporting, lysosomal V0 subunit A4 Novel N 0.008209377072161182 -0.17894964083525206 1.0 5591 -18390 Oprm1 opioid receptor, mu 1 Novel U 0.008205821053354469 -0.17898647396115414 1.0 5592 -258435 Or1e23 olfactory receptor family 1 subfamily E member 23 Novel U 0.008204438379088318 -0.17900079565574997 1.0 5593 -56207 Uchl5 ubiquitin carboxyl-terminal esterase L5 Novel U 0.00820306133526262 -0.17901505903042866 1.0 5594 -230316 Megf9 multiple EGF-like-domains 9 Novel U 0.008202206450063355 -0.1790239139032198 1.0 5595 -11785 Apbb1 amyloid beta precursor protein binding family B member 1 Novel U 0.008199457755460412 -0.1790523847915586 1.0 5596 -67604 Get4 golgi to ER traffic protein 4 Novel U 0.008196647872222518 -0.1790814894697668 1.0 5597 -17309 Mgat3 mannoside acetylglucosaminyltransferase 3 Novel N 0.008191825397238563 -0.17913144050712027 1.0 5598 -100042149 Gm3696 predicted gene 3696 Novel U 0.008187454442377612 -0.17917671471388258 1.0 5599 -73259 Cib4 calcium and integrin binding family member 4 Novel U 0.008185595222903906 -0.17919597244807273 1.0 5600 -235584 Dusp7 dual specificity phosphatase 7 Novel U 0.008183004584493092 -0.1792228061955693 1.0 5601 -320661 D5Ertd579e DNA segment, Chr 5, ERATO Doi 579, expressed Novel U 0.008182436381509438 -0.17922869162339528 1.0 5602 -258828 Or2n1b olfactory receptor family 2 subfamily N member 1B Novel U 0.008181292067745241 -0.17924054438774753 1.0 5603 -209224 Enox2 ecto-NOX disulfide-thiol exchanger 2 Novel N 0.008180684058359238 -0.17924684212898054 1.0 5604 -102926 Atg4a-ps autophagy related 4A, pseudogene Novel U 0.00817877509127744 -0.1792666151472599 1.0 5605 -93898 Cers1 ceramide synthase 1 Novel U 0.008176844339218817 -0.17928661381361305 1.0 5606 -235106 Ntm neurotrimin Novel N 0.008176781619379792 -0.17928726346364388 1.0 5607 -218460 Wdr41 WD repeat domain 41 Novel U 0.008175443815198106 -0.17930112039537985 1.0 5608 -19989 Rpl7 ribosomal protein L7 Novel U 0.008174377276327199 -0.17931216756994414 1.0 5609 -76132 Faxc failed axon connections homolog Novel U 0.008173579798293485 -0.17932042782120167 1.0 5610 -547431 Btnl2 butyrophilin-like 2 Novel U 0.008167450886653299 -0.17938391088649358 1.0 5611 -18358 Or7e165 olfactory receptor family 7 subfamily E member 165 Novel U 0.008167335216728458 -0.17938510899177265 1.0 5612 -100038909 Pira12 paired-Ig-like receptor A12 Novel U 0.008164061048743634 -0.17941902271612697 1.0 5613 -75747 Sesn3 sestrin 3 Novel N 0.008163512870605202 -0.17942470072726446 1.0 5614 -19652 Rbm3 RNA binding motif (RNP1, RRM) protein 3 Novel U 0.008160075323511559 -0.17946030672705715 1.0 5615 -258722 Or51aa5 olfactory receptor family 51 subfamily AA member 5 Novel U 0.008156584820527864 -0.17949646124221813 1.0 5616 -226971 Plekhb2 pleckstrin homology domain containing, family B (evectins) member 2 Novel U 0.00815600246663269 -0.1795024932447205 1.0 5617 -15185 Hdac6 histone deacetylase 6 Novel U 0.008155831621578737 -0.1795042628521731 1.0 5618 -102141 Snx25 sorting nexin 25 Novel U 0.008146274159702756 -0.1796032587280999 1.0 5619 -97487 Cmtm4 CKLF-like MARVEL transmembrane domain containing 4 Novel U 0.008144766499882458 -0.17961887501895693 1.0 5620 -72446 Prr5l proline rich 5 like Novel U 0.00814147793062091 -0.1796529379112621 1.0 5621 -75697 C2cd4b C2 calcium-dependent domain containing 4B Novel U 0.008141242984982519 -0.17965537147046115 1.0 5622 -56384 Letm1 leucine zipper-EF-hand containing transmembrane protein 1 Novel U 0.008137504096572643 -0.17969409875370132 1.0 5623 -217306 Cd300e CD300E molecule Novel U 0.008136005042591939 -0.1797096259055547 1.0 5624 -74069 Serpina3a serine (or cysteine) peptidase inhibitor, clade A, member 3A Novel U 0.008130868969333972 -0.17976282518352144 1.0 5625 -68498 Tspan11 tetraspanin 11 Novel U 0.008129664865497438 -0.17977529725147748 1.0 5626 -14744 Gpr65 G-protein coupled receptor 65 Novel U 0.008129156782588676 -0.17978055995754408 1.0 5627 -19752 Rnase1 ribonuclease, RNase A family, 1 (pancreatic) Novel N 0.008127778787081786 -0.17979483318970527 1.0 5628 -140795 P2ry14 purinergic receptor P2Y, G-protein coupled, 14 Novel U 0.008125477111470275 -0.1798186738700258 1.0 5629 -434197 Fam169b family with sequence similarity 169, member B Novel U 0.008121969068113648 -0.179855010067793 1.0 5630 -258709 Or10x4 olfactory receptor family 10 subfamily X member 4 Novel U 0.008118753748167302 -0.17988831424609933 1.0 5631 -208628 Kntc1 kinetochore associated 1 Novel N 0.008115776728859629 -0.179919150114224 1.0 5632 -11515 Adcy9 adenylate cyclase 9 Novel U 0.008112760177518902 -0.17995039545384744 1.0 5633 -246727 Oas3 2'-5' oligoadenylate synthetase 3 Novel U 0.008107308568974137 -0.18000686303594216 1.0 5634 -170719 Oxr1 oxidation resistance 1 Novel N 0.008096983290969131 -0.18011381192609277 1.0 5635 -66101 Ppih peptidyl prolyl isomerase H Novel U 0.008091966579736085 -0.18016577485612917 1.0 5636 -71268 Lrrfip2 leucine rich repeat (in FLII) interacting protein 2 Novel U 0.00808922809225508 -0.18019414001943448 1.0 5637 -245469 Pdzd4 PDZ domain containing 4 Novel U 0.008086837651165978 -0.1802189001296539 1.0 5638 -213391 Rassf4 Ras association (RalGDS/AF-6) domain family member 4 Novel U 0.008086522263507933 -0.1802221669046481 1.0 5639 -12579 Cdkn2b cyclin dependent kinase inhibitor 2B Novel U 0.008086138927822947 -0.1802261374830717 1.0 5640 -12745 Clgn calmegin Novel N 0.008084824636184762 -0.180239750872655 1.0 5641 -79201 Tnfrsf23 tumor necrosis factor receptor superfamily, member 23 Novel U 0.008084234735140477 -0.18024586104827978 1.0 5642 -23829 C1ql1 complement component 1, q subcomponent-like 1 Novel U 0.008078547450376611 -0.18030476975690446 1.0 5643 -100043254 Nps neuropeptide S Novel U 0.008078382615668935 -0.18030647710938794 1.0 5644 -257665 Or4x15 olfactory receptor family 4 subfamily X member 15 Novel U 0.008070700435139628 -0.1803860488827724 1.0 5645 -29812 Ndrg3 N-myc downstream regulated gene 3 Novel U 0.008067784165772305 -0.18041625550501197 1.0 5646 -12014 Bach2 BTB and CNC homology, basic leucine zipper transcription factor 2 Novel U 0.008058092523017927 -0.1805166412220662 1.0 5647 -668940 Myh7b myosin, heavy chain 7B, cardiac muscle, beta Novel U 0.008058092147456893 -0.18051664511211504 1.0 5648 -13058 Cybb cytochrome b-245, beta polypeptide Novel U 0.008056213218312326 -0.180536106998428 1.0 5649 -258620 Or1j4 olfactory receptor family 1 subfamily J member 4 Novel U 0.008054193361853602 -0.1805570286052283 1.0 5650 -214639 4930486L24Rik RIKEN cDNA 4930486L24 gene Novel U 0.008053124597355804 -0.18056809883276273 1.0 5651 -67313 Inava innate immunity activator Novel U 0.008050991661155244 -0.1805901917158116 1.0 5652 -229317 Eif2a eukaryotic translation initiation factor 2A Novel N 0.008050550936763412 -0.1805947567245742 1.0 5653 -244882 Tnfaip8l3 tumor necrosis factor, alpha-induced protein 8-like 3 Novel N 0.008046225797890246 -0.18063955637084114 1.0 5654 -69069 Tmem273 transmembrane protein 273 Novel U 0.008043861486989282 -0.1806640458254308 1.0 5655 -18507 Pax5 paired box 5 Novel N 0.008041675830446635 -0.18068668478404992 1.0 5656 -67943 Mesd mesoderm development LRP chaperone Novel U 0.008040142469881563 -0.18070256728237646 1.0 5657 -75590 Dusp9 dual specificity phosphatase 9 Novel N 0.00803902353435242 -0.1807141571798043 1.0 5658 -99439 Duox1 dual oxidase 1 Novel U 0.00803678888371673 -0.18073730361762858 1.0 5659 -102639802 Btnl12 butyrophilin-like 12 Novel U 0.00803167795863477 -0.18079024241161493 1.0 5660 -24030 Mrps12 mitochondrial ribosomal protein S12 Novel U 0.008028369609891535 -0.18082451017914122 1.0 5661 -224762 Trim31 tripartite motif-containing 31 Novel U 0.008025411988431095 -0.18085514512500192 1.0 5662 -19123 Proc protein C Novel U 0.00802362890916189 -0.18087361420145676 1.0 5663 -258023 Or4f14 olfactory receptor family 4 subfamily F member 14 Novel U 0.008018182167888441 -0.18093003136851515 1.0 5664 -77701 Lcn12 lipocalin 12 Novel U 0.008017873847960598 -0.18093322493619232 1.0 5665 -435975 Vmn2r63 vomeronasal 2, receptor 63 Novel U 0.00801113384301661 -0.18100303768583642 1.0 5666 -319772 C130050O18Rik RIKEN cDNA C130050O18 gene Novel U 0.008004132722989301 -0.18107555505692985 1.0 5667 -16859 Lgals9 lectin, galactose binding, soluble 9 Novel U 0.007998593571449638 -0.18113292940648787 1.0 5668 -21752 Tert telomerase reverse transcriptase Novel U 0.007988475568986821 -0.1812377313433863 1.0 5669 -14088 Fancc Fanconi anemia, complementation group C Novel U 0.00798566298713578 -0.18126686397374075 1.0 5670 -68794 Flnc filamin C, gamma Novel U 0.00798047989302434 -0.18132055029216199 1.0 5671 -320560 Dennd5b DENN domain containing 5B Novel U 0.00797920982576453 -0.1813337056070879 1.0 5672 -622307 Albfm1 albumin superfamily member 1 Novel U 0.007976818003152196 -0.18135848002707955 1.0 5673 -258501 Or10d1 olfactory receptor family 10 subfamily D member 1 Novel U 0.00797428216030264 -0.18138474620395387 1.0 5674 -258196 Or13g1 olfactory receptor family 13 subfamily G member 1 Novel U 0.007974195367628775 -0.18138564519961664 1.0 5675 -26390 Mapkbp1 mitogen-activated protein kinase binding protein 1 Novel U 0.007972224091868393 -0.18140606360914047 1.0 5676 -234677 Ces4a carboxylesterase 4A Novel U 0.007969026073668527 -0.1814391885765255 1.0 5677 -103963 Rpn1 ribophorin I Novel N 0.007968240261187722 -0.18144732799636948 1.0 5678 -50908 C1s1 complement component 1, s subcomponent 1 Novel U 0.0079681061431396 -0.18144871718670302 1.0 5679 -18854 Pml promyelocytic leukemia Novel U 0.007966002285532231 -0.18147050887463953 1.0 5680 -213649 Arhgef19 Rho guanine nucleotide exchange factor 19 Novel U 0.007958392183235933 -0.181549334064056 1.0 5681 -432478 Tmprss9 transmembrane protease, serine 9 Novel U 0.007953856324321799 -0.18159631634158027 1.0 5682 -11636 Ak1 adenylate kinase 1 Novel N 0.007951039920832272 -0.1816254885563405 1.0 5683 -22235 Ugdh UDP-glucose dehydrogenase Novel U 0.007951003695629209 -0.18162586377580298 1.0 5684 -30055 Timm13 translocase of inner mitochondrial membrane 13 Novel U 0.007944373725788831 -0.18169453678546107 1.0 5685 -56442 Serinc1 serine incorporator 1 Novel U 0.0079408763872722 -0.18173076210284755 1.0 5686 -72749 Tonsl tonsoku-like, DNA repair protein Novel U 0.007939705881950273 -0.1817428861584938 1.0 5687 -67267 Uqcc2 ubiquinol-cytochrome c reductase complex assembly factor 2 Novel N 0.007937803551585586 -0.18176259043387546 1.0 5688 -66667 Hspbap1 Hspb associated protein 1 Novel U 0.00793769876663787 -0.1817636757929193 1.0 5689 -22223 Uchl1 ubiquitin carboxy-terminal hydrolase L1 Novel U 0.007934518345984501 -0.18179661848549616 1.0 5690 -258460 Or2y1e olfactory receptor family 2 subfamily Y member 1E Novel U 0.00793364774012811 -0.18180563619233706 1.0 5691 -55979 Agpat1 1-acylglycerol-3-phosphate O-acyltransferase 1 Novel U 0.00793005964133848 -0.18184280160164762 1.0 5692 -229589 Prune1 prune exopolyphosphatase Novel U 0.007912591012215883 -0.18202374108784927 1.0 5693 -258623 Or2g1 olfactory receptor family 2 subfamily G member 1 Novel U 0.00791011613357306 -0.18204937579947436 1.0 5694 -105243 Slc9a3 solute carrier family 9 (sodium/hydrogen exchanger), member 3 Novel U 0.007908744660148733 -0.18206358147611879 1.0 5695 -22247 Umps uridine monophosphate synthetase Novel U 0.007904614133939862 -0.18210636533080657 1.0 5696 -217944 Rapgef5 Rap guanine nucleotide exchange factor (GEF) 5 Novel U 0.007903026973749514 -0.18212280508388307 1.0 5697 -319293 Gpr141b G protein-coupled receptor 141B Novel U 0.007901278924064217 -0.18214091132505938 1.0 5698 -103135 Pan2 PAN2 poly(A) specific ribonuclease subunit Novel N 0.007899634959795636 -0.1821579394529109 1.0 5699 -19227 Pthlh parathyroid hormone-like peptide Novel N 0.0078989467371309 -0.18216506804064814 1.0 5700 -68188 Sympk symplekin Novel U 0.007895429150244456 -0.1822015030899835 1.0 5701 -69195 Tmem121 transmembrane protein 121 Novel U 0.007894931723574892 -0.1822066554190748 1.0 5702 -20042 Rps12 ribosomal protein S12 Novel U 0.007888242478628717 -0.1822759423983302 1.0 5703 -20208 Saa1 serum amyloid A 1 Novel U 0.007885960908266253 -0.182299574829142 1.0 5704 -58988 Rps6kb2 ribosomal protein S6 kinase, polypeptide 2 Novel N 0.007885693176596084 -0.18230234798498043 1.0 5705 -258067 Or2b2 olfactory receptor family 2 subfamily B member 2 Novel U 0.00788482876948583 -0.18231130148541258 1.0 5706 -20589 Ighmbp2 immunoglobulin mu DNA binding protein 2 Novel U 0.007873067042555935 -0.1824331290663065 1.0 5707 -18725 Pira2 paired-Ig-like receptor A2 Novel U 0.007870580394828307 -0.1824588856817251 1.0 5708 -29849 Or13c7d olfactory receptor family 13 subfamily C member 7D Novel U 0.007868869908046427 -0.1824766028475826 1.0 5709 -237253 Lrp11 low density lipoprotein receptor-related protein 11 Novel U 0.007864515608652494 -0.18252170453756508 1.0 5710 -214552 Cep164 centrosomal protein 164 Novel U 0.007864020697143771 -0.1825268308147031 1.0 5711 -20741 Sptb spectrin beta, erythrocytic Novel U 0.007860538270184635 -0.1825629016786672 1.0 5712 -237782 Smcr8 Smith-Magenis syndrome chromosome region, candidate 8 homolog (human) Novel U 0.007855976329709243 -0.1826101541081456 1.0 5713 -382097 Gm1123 predicted gene 1123 Novel U 0.007854492357671371 -0.1826255250417309 1.0 5714 -258310 Or8b8 olfactory receptor family 8 subfamily B member 8 Novel U 0.00785215692284891 -0.1826497153988487 1.0 5715 -18357 Or7a41 olfactory receptor family 7 subfamily A member 41 Novel U 0.007851988946909836 -0.18265145528810373 1.0 5716 -66889 Rnf128 ring finger protein 128 Novel U 0.007851019417999473 -0.1826614976366857 1.0 5717 -238725 Gpr150 G protein-coupled receptor 150 Novel U 0.007849218907692706 -0.1826801472632546 1.0 5718 -73284 Ddit4l DNA-damage-inducible transcript 4-like Novel U 0.00784739871598608 -0.1826990007491163 1.0 5719 -224129 Adcy5 adenylate cyclase 5 Novel U 0.007843144169840275 -0.18274306919823385 1.0 5720 -94092 Trim16 tripartite motif-containing 16 Novel U 0.007842352737701331 -0.1827512668263121 1.0 5721 -54402 Stk19 serine/threonine kinase 19 Novel U 0.007841157333391082 -0.18276364878486084 1.0 5722 -258423 Or10g1 olfactory receptor family 10 subfamily G member 1 Novel U 0.007839256396394316 -0.18278333862778343 1.0 5723 -257931 Or2w3b olfactory receptor family 2 subfamily W member 3B Novel U 0.007837093562549769 -0.18280574118964588 1.0 5724 -27058 Srp9 signal recognition particle 9 Novel U 0.007835736365568497 -0.18281979899136247 1.0 5725 -12424 Cck cholecystokinin Novel U 0.007832735317582174 -0.1828508837477507 1.0 5726 -100042807 Eif3j2 eukaryotic translation initiation factor 3, subunit J2 Novel U 0.00782560795978645 -0.1829247086854995 1.0 5727 -239273 Abcc4 ATP-binding cassette, sub-family C member 4 Novel U 0.007824564513461394 -0.182935516668233 1.0 5728 -541307 Ccl26 C-C motif chemokine ligand 26 Novel U 0.007815492607485534 -0.1830294831721081 1.0 5729 -16988 Lst1 leukocyte specific transcript 1 Novel U 0.007812578210920391 -0.18305967039592425 1.0 5730 -81018 Rnf114 ring finger protein 114 Novel U 0.007810420823057642 -0.18308201654848627 1.0 5731 -19245 Ptp4a3 protein tyrosine phosphatase 4a3 Novel U 0.007806151857554963 -0.18312623435282835 1.0 5732 -66140 Ska2 spindle and kinetochore associated complex subunit 2 Novel U 0.007805731099046655 -0.1831305925556257 1.0 5733 -72061 Aopep aminopeptidase O Novel N 0.007803676130891085 -0.18315187784822767 1.0 5734 -19212 Pter phosphotriesterase related Novel U 0.007802411549980902 -0.18316497633572446 1.0 5735 -16433 Cuzd1 CUB and zona pellucida-like domains 1 Novel U 0.007797862594427757 -0.1832120942678051 1.0 5736 -75619 Fastkd2 FAST kinase domains 2 Novel N 0.007795491574610831 -0.18323665321312577 1.0 5737 -78798 Eml4 echinoderm microtubule associated protein like 4 Novel U 0.007793985640831388 -0.1832522516257083 1.0 5738 -382056 Crtc1 CREB regulated transcription coactivator 1 Novel N 0.007792423975542959 -0.18326842730342888 1.0 5739 -21991 Tpi1 triosephosphate isomerase 1 Novel N 0.007792398957792707 -0.18326868643646355 1.0 5740 -66525 Timm50 translocase of inner mitochondrial membrane 50 Novel N 0.0077893870060266115 -0.1832998841338442 1.0 5741 -14179 Fgf8 fibroblast growth factor 8 Novel U 0.007788772170375432 -0.18330625258130748 1.0 5742 -64136 Sdf2l1 stromal cell-derived factor 2-like 1 Novel U 0.007788619061502937 -0.1833078384779756 1.0 5743 -242083 Ppm1l protein phosphatase 1 (formerly 2C)-like Novel N 0.007783938263912802 -0.1833563220255413 1.0 5744 -67067 Romo1 reactive oxygen species modulator 1 Novel U 0.007781419363310533 -0.18338241271517522 1.0 5745 -108099 Prkag2 protein kinase, AMP-activated, gamma 2 non-catalytic subunit Novel U 0.007778121156486696 -0.1834165754330338 1.0 5746 -11803 Aplp1 amyloid beta precursor like protein 1 Novel U 0.007777215300655058 -0.18342595825795951 1.0 5747 -67035 Dnajb4 DnaJ heat shock protein family (Hsp40) member B4 Novel U 0.007775142127979876 -0.18344743211237716 1.0 5748 -101497 Plekhg2 pleckstrin homology domain containing, family G (with RhoGef domain) member 2 Novel U 0.0077692744454409 -0.1835082093752262 1.0 5749 -15259 Hipk3 homeodomain interacting protein kinase 3 Novel N 0.007767942335270492 -0.1835220073285805 1.0 5750 -18574 Pde1b phosphodiesterase 1B, Ca2+-calmodulin dependent Novel U 0.007767268799165789 -0.1835289837934117 1.0 5751 -19262 Ptpra protein tyrosine phosphatase receptor type A Novel U 0.007759515869890601 -0.18360928837998028 1.0 5752 -228228 Or5t17 olfactory receptor family 5 subfamily T member 17 Novel U 0.007756604805800529 -0.1836394410861292 1.0 5753 -72503 Bltp2 bridge-like lipid transfer protein family member 2 Novel U 0.007755509306903431 -0.18365078822769274 1.0 5754 -258233 Or11g25 olfactory receptor family 11 subfamily G member 25 Novel U 0.007755250449809226 -0.18365346946096503 1.0 5755 -17880 Myh11 myosin, heavy polypeptide 11, smooth muscle Novel U 0.007754782996493495 -0.18365831132704266 1.0 5756 -243958 Siglecg sialic acid binding Ig-like lectin G Novel U 0.007752406444989172 -0.18368292756939955 1.0 5757 -13039 Ctsl cathepsin L Novel U 0.007751322699014933 -0.18369415297457448 1.0 5758 -258562 Or9g8 olfactory receptor family 9 subfamily G member 8 Novel U 0.007744173399754608 -0.1837682051812924 1.0 5759 -258581 Or5m5 olfactory receptor family 5 subfamily M member 5 Novel U 0.0077314178664199635 -0.18390032657625704 1.0 5760 -67105 Timm21 translocase of inner mitochondrial membrane 21 Novel U 0.007731172501353442 -0.18390286805955014 1.0 5761 -18008 Nes nestin Novel U 0.007730637324706449 -0.18390841140166672 1.0 5762 -27382 Tcl1b5 T cell leukemia/lymphoma 1B, 5 Novel U 0.007729357107424172 -0.18392167185019165 1.0 5763 -242603 Cdcp2 CUB domain containing protein 2 Novel U 0.007728104429338586 -0.18393464704862258 1.0 5764 -74388 Dpp8 dipeptidylpeptidase 8 Novel N 0.007727969616218311 -0.18393604343849065 1.0 5765 -259074 Or7a36 olfactory receptor family 7 subfamily A member 36 Novel U 0.007721614467873298 -0.18400186985613406 1.0 5766 -74838 Naa15 N(alpha)-acetyltransferase 15, NatA auxiliary subunit Novel N 0.007717189280076857 -0.18404770580585936 1.0 5767 -108078 Olr1 oxidized low density lipoprotein (lectin-like) receptor 1 Novel U 0.007710498370271872 -0.1841170100296676 1.0 5768 -319710 Frmd6 FERM domain containing 6 Novel U 0.007707124252828175 -0.18415195902723128 1.0 5769 -242705 E2f2 E2F transcription factor 2 Novel U 0.0077070028358620654 -0.18415321666017487 1.0 5770 -268752 Wdfy2 WD repeat and FYVE domain containing 2 Novel N 0.007706770390202108 -0.18415562432467947 1.0 5771 -259097 Or51e1 olfactory receptor family 51 subfamily E member 1 Novel U 0.007706717393549627 -0.18415617326226366 1.0 5772 -22346 Vhl von Hippel-Lindau tumor suppressor Novel U 0.007706377351925555 -0.18415969540222757 1.0 5773 -19228 Pth1r parathyroid hormone 1 receptor Novel U 0.007701262641173026 -0.18421267340806521 1.0 5774 -77975 Tmem50b transmembrane protein 50B Novel U 0.00769662345874203 -0.18426072590718054 1.0 5775 -56398 Chp1 calcineurin-like EF hand protein 1 Novel U 0.007696364486498485 -0.18426340833316593 1.0 5776 -218581 Depdc1b DEP domain containing 1B Novel U 0.00769119480820382 -0.18431695569099807 1.0 5777 -12325 Camk2g calcium/calmodulin-dependent protein kinase II gamma Novel U 0.0076909057678052764 -0.18431994956194447 1.0 5778 -15567 Slc6a4 solute carrier family 6 (neurotransmitter transporter, serotonin), member 4 Novel U 0.0076766550840976205 -0.1844675576753224 1.0 5779 -70510 Rnf167 ring finger protein 167 Novel U 0.007676587625914623 -0.18446825640496428 1.0 5780 -12959 Cryba4 crystallin, beta A4 Novel N 0.0076765033166022656 -0.18446912967805018 1.0 5781 -242443 Grin3a glutamate receptor ionotropic, NMDA3A Novel N 0.007671524687700892 -0.184520698152547 1.0 5782 -114893 Dcun1d1 defective in cullin neddylation 1 domain containing 1 Novel U 0.007664590858715274 -0.18459251852524267 1.0 5783 -20692 Sparc secreted acidic cysteine rich glycoprotein Novel U 0.007664147112102611 -0.18459711483806926 1.0 5784 -225594 Gm4841 predicted gene 4841 Novel U 0.007662389634668231 -0.18461531873156062 1.0 5785 -100040635 Pramel3d PRAME like 3D Novel U 0.007656682763617238 -0.18467443031430353 1.0 5786 -320736 Vstm4 V-set and transmembrane domain containing 4 Novel U 0.007655784581258906 -0.18468373365764498 1.0 5787 -109658 Txlna taxilin alpha Novel U 0.007652541416661162 -0.1847173262499351 1.0 5788 -14176 Fgf5 fibroblast growth factor 5 Novel U 0.007652152998276543 -0.1847213494747944 1.0 5789 -77976 Nuak1 NUAK family, SNF1-like kinase, 1 Novel N 0.007650233817564843 -0.18474122828551653 1.0 5790 -76681 Trim12a tripartite motif-containing 12A Novel U 0.007648545156173708 -0.18475871938469415 1.0 5791 -17869 Myc myelocytomatosis oncogene Novel U 0.007634539027436462 -0.18490379440572788 1.0 5792 -235505 Cd109 CD109 antigen Novel U 0.0076321236231035984 -0.18492881308440556 1.0 5793 -100126768 Esp31 exocrine gland secreted peptide 31 Novel U 0.007631188392782195 -0.18493850016933058 1.0 5794 -258561 Or9g3 olfactory receptor family 9 subfamily G member 3 Novel U 0.0076271837989789325 -0.18497997962030088 1.0 5795 -54217 Rpl36 ribosomal protein L36 Novel N 0.00762716437180122 -0.18498018084636897 1.0 5796 -78232 Trappc6b trafficking protein particle complex 6B Novel N 0.007625839980134183 -0.18499389885171913 1.0 5797 -16650 Kpna6 karyopherin subunit alpha 6 Novel U 0.007620254992888733 -0.18505174796601093 1.0 5798 -231470 Fras1 Fraser extracellular matrix complex subunit 1 Novel U 0.007615071225439359 -0.18510544125884434 1.0 5799 -329934 Foxo6 forkhead box O6 Novel U 0.007614147401667463 -0.1851150101951046 1.0 5800 -258859 Or1f19 olfactory receptor family 1 subfamily F member 19 Novel U 0.007613602986729231 -0.1851206492271381 1.0 5801 -245195 Retnlg resistin like gamma Novel U 0.007611001861662997 -0.18514759159506677 1.0 5802 -332579 Card9 caspase recruitment domain family, member 9 Novel U 0.007607024057960274 -0.18518879355505632 1.0 5803 -74355 Smchd1 SMC hinge domain containing 1 Novel U 0.007606259331431578 -0.18519671456730155 1.0 5804 -14167 Fgf12 fibroblast growth factor 12 Novel U 0.007600956345012507 -0.18525164272630398 1.0 5805 -53902 Rcan3 regulator of calcineurin 3 Novel N 0.007600912561844873 -0.18525209623091504 1.0 5806 -244867 Arhgap20 Rho GTPase activating protein 20 Novel U 0.007600907483120815 -0.1852521488361719 1.0 5807 -257913 Or5t18 olfactory receptor family 5 subfamily T member 18 Novel U 0.00759958129316758 -0.18526588546811137 1.0 5808 -217869 Eif5 eukaryotic translation initiation factor 5 Novel N 0.007598648758163469 -0.1852755446350285 1.0 5809 -71263 Mro maestro Novel U 0.007598351526515417 -0.18527862335066805 1.0 5810 -257882 Or2bd2 olfactory receptor family 2 subfamily BD member 2 Novel U 0.007598265700830833 -0.18527951233028758 1.0 5811 -52028 Bbs1 Bardet-Biedl syndrome 1 Novel U 0.0075951203089610645 -0.18531209219587547 1.0 5812 -72000 Lmntd2 lamin tail domain containing 2 Novel U 0.007593947649212992 -0.1853242385669969 1.0 5813 -30935 Tor3a torsin family 3, member A Novel U 0.007593029027674537 -0.18533375361869417 1.0 5814 -69993 Chn2 chimerin 2 Novel U 0.00759135387129441 -0.18535110483341172 1.0 5815 -27216 Or5g26 olfactory receptor family 5 subfamily G member 26 Novel U 0.00758868606465334 -0.1853787378869005 1.0 5816 -74334 Ranbp10 RAN binding protein 10 Novel U 0.007584946788989842 -0.18541746918130095 1.0 5817 -234695 Carmil2 capping protein regulator and myosin 1 linker 2 Novel U 0.007584836256985517 -0.1854186140681682 1.0 5818 -381903 Alg8 ALG8 alpha-1,3-glucosyltransferase Novel U 0.007582785624609626 -0.18543985445090677 1.0 5819 -114143 Atp6v0b ATPase, H+ transporting, lysosomal V0 subunit B Novel U 0.007580884682166284 -0.18545954435024478 1.0 5820 -278679 Apol7b apolipoprotein L 7b Novel U 0.0075785564423253935 -0.18548366018197995 1.0 5821 -13877 Erh ERH mRNA splicing and mitosis factor Novel U 0.007578158085790202 -0.1854877863458762 1.0 5822 -100043216 Gm4297 predicted gene 4297 Novel U 0.007571549168470641 -0.1855562412942158 1.0 5823 -258882 Or8b12 olfactory receptor family 8 subfamily B member 12 Novel U 0.007571056350211683 -0.18556134588954154 1.0 5824 -74154 Unkl unkempt family like zinc finger Novel U 0.007569687307309934 -0.18557552639091301 1.0 5825 -22414 Wnt2b wingless-type MMTV integration site family, member 2B Novel U 0.0075676438964679725 -0.18559669197324052 1.0 5826 -73024 Emc7 ER membrane protein complex subunit 7 Novel U 0.007566698787737375 -0.18560648137840327 1.0 5827 -12794 Cnih2 cornichon family AMPA receptor auxiliary protein 2 Novel U 0.007564186420482943 -0.18563250439583504 1.0 5828 -19674 Rcvrn recoverin Novel N 0.0075609612724004205 -0.1856659103736528 1.0 5829 -213272 Txndc2 thioredoxin domain containing 2 (spermatozoa) Novel U 0.007558421054914116 -0.1856922218628708 1.0 5830 -27385 Magel2 MAGE family member L2 Novel U 0.007552828960073702 -0.18575014459739758 1.0 5831 -258064 Or2ak4 olfactory receptor family 2 subfamily AK member 4 Novel U 0.007552116032482554 -0.18575752907795048 1.0 5832 -226548 Aph1a aph1 homolog A, gamma secretase subunit Novel N 0.007552038106469604 -0.1857583362330309 1.0 5833 -117005 Or5d47 olfactory receptor family 5 subfamily D member 47 Novel U 0.00755169820443331 -0.18576185692714917 1.0 5834 -12957 Cryba1 crystallin, beta A1 Novel N 0.0075481126047777505 -0.1857989964505112 1.0 5835 -102032 Smim19 small integral membrane protein 19 Novel U 0.007545597926709467 -0.1858250434032769 1.0 5836 -211612 Ptchd1 patched domain containing 1 Novel N 0.007541107984787187 -0.185871550074109 1.0 5837 -258158 Or2aj4 olfactory receptor family 2 subfamily AJ member 4 Novel U 0.007537636470584025 -0.18590750790410543 1.0 5838 -17855 Mvk mevalonate kinase Novel U 0.0075361761108693635 -0.18592263426202318 1.0 5839 -14211 Smc2 structural maintenance of chromosomes 2 Novel U 0.0075356391799917145 -0.1859281957744032 1.0 5840 -215708 Miga1 mitoguardin 1 Novel U 0.007533591393032447 -0.18594940668440996 1.0 5841 -100041749 Speer4f2 spermatogenesis associated glutamate (E)-rich protein 4f2 Novel U 0.007532186620698125 -0.18596395727006945 1.0 5842 -319217 Vmn2r7 vomeronasal 2, receptor 7 Novel U 0.007531964057720243 -0.18596626257007798 1.0 5843 -666468 Atg4a autophagy related 4A, cysteine peptidase Novel U 0.007531157164455121 -0.18597462034399295 1.0 5844 -22354 Vipr1 vasoactive intestinal peptide receptor 1 Novel N 0.007521380682287365 -0.18607588482490203 1.0 5845 -414084 Tnip3 TNFAIP3 interacting protein 3 Novel U 0.0075208314121929755 -0.1860815741464834 1.0 5846 -108989 Tpr translocated promoter region, nuclear basket protein Novel U 0.0075180794916881975 -0.18611007844860739 1.0 5847 -258705 Or1r1 olfactory receptor family 1 subfamily JRmember 1 Novel U 0.00751423269084019 -0.1861499234853343 1.0 5848 -227231 Cps1 carbamoyl-phosphate synthetase 1 Novel U 0.007513126712284593 -0.1861613791748561 1.0 5849 -258851 Or13p5 olfactory receptor family 13 subfamily P member 5 Novel U 0.007510392705814579 -0.18618969792399687 1.0 5850 -12939 Pcdha7 protocadherin alpha 7 Novel U 0.007509005764584957 -0.18620406381566004 1.0 5851 -13511 Dsg2 desmoglein 2 Novel U 0.007504646273738975 -0.18624921927853216 1.0 5852 -209176 Ido2 indoleamine 2,3-dioxygenase 2 Novel N 0.007501694925576373 -0.1862797892457801 1.0 5853 -18189 Nrxn1 neurexin I Novel U 0.007494257558118522 -0.18635682525341823 1.0 5854 -12161 Bmp6 bone morphogenetic protein 6 Novel U 0.0074929439273759306 -0.18637043179746668 1.0 5855 -100043462 Nutf2-ps1 nuclear transport factor 2, pseudogene 1 Novel U 0.007489439562719543 -0.18640672989137777 1.0 5856 -235315 Rnf214 ring finger protein 214 Novel U 0.007488996410970862 -0.18641132004262276 1.0 5857 -624512 Vmn2r33 vomeronasal 2, receptor 33 Novel U 0.00748826216212611 -0.18641892536801957 1.0 5858 -193385 Ripor2 RHO family interacting cell polarization regulator 2 Novel U 0.007488199941930491 -0.18641956984276045 1.0 5859 -57266 Cxcl14 C-X-C motif chemokine ligand 14 Novel U 0.0074880552124585945 -0.1864210689458726 1.0 5860 -74201 Cep97 centrosomal protein 97 Novel U 0.007475744246958413 -0.18654858552182227 1.0 5861 -258056 Or12j4 olfactory receptor family 12 subfamily J member 4 Novel U 0.007474471096553598 -0.1865617727718628 1.0 5862 -258482 Or11i1 olfactory receptor family 11 subfamily I member 1 Novel U 0.007474428412996833 -0.18656221488674063 1.0 5863 -258921 Or4c101 olfactory receptor family 4 subfamily C member 101 Novel U 0.0074666812800307835 -0.1866424594353297 1.0 5864 -71878 Fam83d family with sequence similarity 83, member D Novel U 0.007463758304642581 -0.18667273551831307 1.0 5865 -94093 Trim33 tripartite motif-containing 33 Novel U 0.007458823216913226 -0.18672385299478145 1.0 5866 -70078 Nol7 nucleolar protein 7 Novel N 0.007452868847412571 -0.18678552815832986 1.0 5867 -384009 Glipr2 GLI pathogenesis-related 2 Novel U 0.007452708083959208 -0.18678719334089502 1.0 5868 -16348 Invs inversin Novel N 0.007452647109011097 -0.18678782491740312 1.0 5869 -94067 Mrpl43 mitochondrial ribosomal protein L43 Novel U 0.007452575193070002 -0.18678856982035683 1.0 5870 -434246 Trim72 tripartite motif-containing 72 Novel U 0.007450436116388505 -0.18681072630630544 1.0 5871 -258740 Or8g36 olfactory receptor family 8 subfamily G member 36 Novel U 0.007447910463118864 -0.186836886939846 1.0 5872 -258842 Or8h8 olfactory receptor family 8 subfamily H member 8 Novel U 0.0074445755020487005 -0.1868714303569798 1.0 5873 -20379 Sfrp4 secreted frizzled-related protein 4 Novel U 0.0074428247817822715 -0.18688956425994765 1.0 5874 -381352 Mamdc4 MAM domain containing 4 Novel U 0.007441791880169804 -0.18690026302089477 1.0 5875 -14084 Faf1 Fas-associated factor 1 Novel U 0.007433417843445494 -0.18698700101800353 1.0 5876 -386611 Rnf133 ring finger protein 133 Novel U 0.007432478946107719 -0.18699672608576362 1.0 5877 -233575 Pgap2 post-GPI attachment to proteins 2 Novel U 0.00743229072121375 -0.1869986757130278 1.0 5878 -12374 Casr calcium-sensing receptor Novel U 0.007426342179171655 -0.18706029051595202 1.0 5879 -17940 Naip1 NLR family, apoptosis inhibitory protein 1 Novel U 0.007419128260993921 -0.18713501204329222 1.0 5880 -329795 Tmem67 transmembrane protein 67 Novel U 0.007418080627270332 -0.18714586339896208 1.0 5881 -16589 Uhmk1 U2AF homology motif (UHM) kinase 1 Novel U 0.007406898106392216 -0.187261691582612 1.0 5882 -211223 Vmn2r15 vomeronasal 2, receptor 15 Novel U 0.0074014319802799475 -0.18731830953719367 1.0 5883 -19025 Ctsa cathepsin A Novel U 0.007397719857212989 -0.18735675958589176 1.0 5884 -258507 Or11a4 olfactory receptor family 11 subfamily A member 4 Novel U 0.007396613779015186 -0.18736821630750425 1.0 5885 -238875 Gapt Grb2-binding adaptor, transmembrane Novel U 0.0073956465278281576 -0.1873782350635028 1.0 5886 -258923 Or1e16 olfactory receptor family 1 subfamily E member 16 Novel U 0.007393982630574672 -0.18739546965655673 1.0 5887 -258307 Or5p68 olfactory receptor family 5 subfamily P member 68 Novel U 0.0073909788778039835 -0.18742658242901244 1.0 5888 -20872 Stk16 serine/threonine kinase 16 Novel U 0.0073858121694772485 -0.1874800990240144 1.0 5889 -20708 Serpinb6b serine (or cysteine) peptidase inhibitor, clade B, member 6b Novel U 0.00738578311424011 -0.18748039997720553 1.0 5890 -21391 Tbxas1 thromboxane A synthase 1, platelet Novel U 0.007385003873173678 -0.1874884713305555 1.0 5891 -56405 Dusp14 dual specificity phosphatase 14 Novel U 0.007384349540002405 -0.18749524889203348 1.0 5892 -75234 Rnf19b ring finger protein 19B Novel U 0.007384294270333688 -0.18749582137344514 1.0 5893 -16432 Itm2b integral membrane protein 2B Novel N 0.007383257092309016 -0.18750656442932934 1.0 5894 -503550 Klri1 killer cell lectin-like receptor family I member 1 Novel U 0.007382858636719359 -0.18751069161922845 1.0 5895 -26903 Dysf dysferlin Novel U 0.007380555029612181 -0.18753455230591762 1.0 5896 -17130 Smad6 SMAD family member 6 Novel U 0.007378702427675656 -0.18755374149587511 1.0 5897 -268721 Zswim8 zinc finger SWIM-type containing 8 Novel U 0.007378601926486474 -0.18755478248388888 1.0 5898 -259055 Or52r1b olfactory receptor family 52 subfamily R member 1B Novel U 0.007367818129719814 -0.18766648069629974 1.0 5899 -100862398 Rbmyf8 RNA binding motif protein Y-linked family member 8 Novel U 0.007365491051552349 -0.18769058449545972 1.0 5900 -16905 Lmna lamin A Novel U 0.007362501748624116 -0.18772154759692233 1.0 5901 -19274 Ptprm protein tyrosine phosphatase receptor type M Novel U 0.007360618542127585 -0.18774105378790634 1.0 5902 -102640847 Gm17079 predicted gene 17079 Novel U 0.007360422261812641 -0.18774308685295613 1.0 5903 -258036 Or5ac16 olfactory receptor family 5 subfamily AC member 16 Novel U 0.007353418419905822 -0.18781563241718807 1.0 5904 -26360 Angptl2 angiopoietin-like 2 Novel N 0.007353160799099755 -0.18781830084502849 1.0 5905 -100862349 Gm21663 predicted gene, 21663 Novel U 0.0073509639544648946 -0.18784105568953902 1.0 5906 -16011 Igfbp5 insulin-like growth factor binding protein 5 Novel N 0.007349943327448158 -0.18785162731062705 1.0 5907 -56378 Arpc3 actin related protein 2/3 complex, subunit 3 Novel U 0.007349868399300881 -0.1878524034139134 1.0 5908 -327743 Ccn6 cellular communication network factor 6 Novel U 0.007347581379362025 -0.18787609229125837 1.0 5909 -258889 Or4k51 olfactory receptor family 4 subfamily K member 51 Novel U 0.0073461113932652335 -0.18789131835892575 1.0 5910 -67405 Nts neurotensin Novel U 0.007344644234040213 -0.18790651514594825 1.0 5911 -435350 Serpinb6e serine (or cysteine) peptidase inhibitor, clade B, member 6e Novel U 0.007342887143762963 -0.18792471502927877 1.0 5912 -13665 Eif2s1 eukaryotic translation initiation factor 2, subunit 1 alpha Novel U 0.00734079068717439 -0.1879464300577059 1.0 5913 -229277 Stoml3 stomatin (Epb7.2)-like 3 Novel U 0.007340654378353525 -0.18794784193999153 1.0 5914 -231841 Brat1 BRCA1-associated ATM activator 1 Novel U 0.007333458601215789 -0.18802237556303575 1.0 5915 -56737 Alg2 ALG2 alpha-1,3/1,6-mannosyltransferase Novel N 0.007331192714713594 -0.18804584554093848 1.0 5916 -67512 Agpat2 1-acylglycerol-3-phosphate O-acyltransferase 2 Novel U 0.007327528813203684 -0.18808379611233383 1.0 5917 -26557 Homer2 homer scaffolding protein 2 Novel N 0.007326115998597229 -0.18809842999958373 1.0 5918 -18542 Pcolce procollagen C-endopeptidase enhancer protein Novel N 0.00732450053922303 -0.18811516287467633 1.0 5919 -21859 Timp3 tissue inhibitor of metalloproteinase 3 Novel U 0.007323823733762895 -0.18812217320338362 1.0 5920 -12051 Bcl3 B cell leukemia/lymphoma 3 Novel U 0.007321621338001418 -0.18814498554628112 1.0 5921 -75736 Bcl2l12 BCL2 like 12 Novel U 0.007318950951650684 -0.18817264532031783 1.0 5922 -258661 Or11g7 olfactory receptor family 11 subfamily G member 7 Novel U 0.007318587014363596 -0.1881764149707737 1.0 5923 -11600 Angpt1 angiopoietin 1 Novel U 0.007315940557118895 -0.1882038268879167 1.0 5924 -16430 Stt3a STT3, subunit of the oligosaccharyltransferase complex, homolog A (S. cerevisiae) Novel U 0.007313413386278378 -0.1882300032404065 1.0 5925 -26945 Tpsg1 tryptase gamma 1 Novel U 0.007306139726590394 -0.18830534356834597 1.0 5926 -22763 Zfr zinc finger RNA binding protein Novel N 0.00730028606107387 -0.1883659756433372 1.0 5927 -258920 Or4p19 olfactory receptor family 4 subfamily P member 19 Novel U 0.007297448809555878 -0.18839536380129096 1.0 5928 -22218 Sumo1 small ubiquitin-like modifier 1 Novel U 0.007296439506145796 -0.18840581813283352 1.0 5929 -28064 Yipf3 Yip1 domain family, member 3 Novel U 0.007295881959666626 -0.18841159318093645 1.0 5930 -21961 Tns1 tensin 1 Novel U 0.007294439883308828 -0.18842653016044478 1.0 5931 -545291 Hpse2 heparanase 2 Novel N 0.007291180667675816 -0.1884602890088306 1.0 5932 -18139 Zfp638 zinc finger protein 638 Novel U 0.0072882187544752826 -0.18849096840839405 1.0 5933 -226090 Ermp1 endoplasmic reticulum metallopeptidase 1 Novel U 0.007288107769055586 -0.18849211799172286 1.0 5934 -15251 Hif1a hypoxia inducible factor 1, alpha subunit Novel U 0.00728500796928166 -0.18852422561588073 1.0 5935 -83433 Trem2 triggering receptor expressed on myeloid cells 2 Novel U 0.007280553634043935 -0.1885703634738447 1.0 5936 -102638913 Gm6619 predicted gene 6619 Novel U 0.00727921546606022 -0.1885842241738301 1.0 5937 -102635385 Gm32742 predicted gene, 32742 Novel U 0.007277774791211492 -0.1885991466365536 1.0 5938 -13497 Drp2 dystrophin related protein 2 Novel U 0.007272586322892188 -0.18865288862084328 1.0 5939 -214444 Cdk5rap2 CDK5 regulatory subunit associated protein 2 Novel U 0.007272439789518303 -0.18865440640871292 1.0 5940 -243923 Rgs9bp regulator of G-protein signalling 9 binding protein Novel N 0.007271026921601767 -0.18866904084814687 1.0 5941 -107503 Atf5 activating transcription factor 5 Novel U 0.007268818236293803 -0.18869191833796015 1.0 5942 -226744 Cnst consortin, connexin sorting protein Novel U 0.007268293782759717 -0.18869735061042572 1.0 5943 -52864 Slx4 SLX4 structure-specific endonuclease subunit homolog (S. cerevisiae) Novel U 0.007266711645017849 -0.18871373834114602 1.0 5944 -67013 Oma1 OMA1 zinc metallopeptidase Novel N 0.007264222915370762 -0.18873951652101797 1.0 5945 -50771 Atp9b ATPase, class II, type 9B Novel U 0.007261417570505417 -0.18876857419091247 1.0 5946 -20703 Serpina1d serine (or cysteine) peptidase inhibitor, clade A, member 1D Novel U 0.007260765716772435 -0.18877532607045017 1.0 5947 -258245 Or5m9b olfactory receptor family 5 subfamily M member 9B Novel U 0.007260425954499547 -0.18877884531690367 1.0 5948 -215512 Fam117a family with sequence similarity 117, member A Novel U 0.007260389450980845 -0.18877922341915038 1.0 5949 -68192 Leprotl1 leptin receptor overlapping transcript-like 1 Novel U 0.007257944045707198 -0.18880455284658645 1.0 5950 -258385 Or5bh3 olfactory receptor family 5 subfamily BH member 3 Novel U 0.007256125596813204 -0.18882338828045214 1.0 5951 -259050 Or52h7 olfactory receptor family 52 subfamily H member 7 Novel U 0.007251461740647748 -0.18887169634929793 1.0 5952 -71962 Castor1 cytosolic arginine sensor for mTORC1 subunit 1 Novel N 0.007251144178479864 -0.1888749856477936 1.0 5953 -258428 Or5g29 olfactory receptor family 5 subfamily G member 29 Novel U 0.007251123509594521 -0.18887519973542852 1.0 5954 -72508 Rps6kb1 ribosomal protein S6 kinase, polypeptide 1 Novel U 0.00725089677916629 -0.18887754820175076 1.0 5955 -258728 Or5p58 olfactory receptor family 5 subfamily P member 58 Novel U 0.007250301190715136 -0.1888837172873489 1.0 5956 -269113 Nup54 nucleoporin 54 Novel N 0.007248184654819475 -0.1889056402965788 1.0 5957 -76846 Rps9 ribosomal protein S9 Novel N 0.007248022977080521 -0.188907314949284 1.0 5958 -12339 Capn7 calpain 7 Novel U 0.00724720724659067 -0.18891576425888218 1.0 5959 -269862 Or10am5 olfactory receptor family 10 subfamily AM member 5 Novel U 0.007247137445539412 -0.18891648725587654 1.0 5960 -16854 Lgals3 lectin, galactose binding, soluble 3 Novel U 0.007245751901905703 -0.1889308386712872 1.0 5961 -19133 Prph2 peripherin 2 Novel U 0.0072428274885689235 -0.18896112964849462 1.0 5962 -57750 Wdr12 WD repeat domain 12 Novel N 0.007239519790682634 -0.18899539067446613 1.0 5963 -231712 Trafd1 TRAF type zinc finger domain containing 1 Novel U 0.007237871402089409 -0.1890124646293269 1.0 5964 -67446 Dusp28 dual specificity phosphatase 28 Novel N 0.007237246427409227 -0.1890189380965193 1.0 5965 -14726 Pdpn podoplanin Novel U 0.007233425076615946 -0.18905851952241592 1.0 5966 -259087 Or52a33 olfactory receptor family 52 subfamily A member 33 Novel U 0.0072323555054425335 -0.1890695981054699 1.0 5967 -23880 Fyb1 FYN binding protein 1 Novel U 0.007231736170051542 -0.18907601316109024 1.0 5968 -269336 Ccdc32 coiled-coil domain containing 32 Novel U 0.007227486593148499 -0.18912003013895465 1.0 5969 -100503605 Hbb-bs hemoglobin, beta adult s chain Novel U 0.0072272396754180365 -0.18912258770468976 1.0 5970 -71900 Tmem106b transmembrane protein 106B Novel U 0.007226664550886552 -0.1891285448256807 1.0 5971 -14792 Lpcat3 lysophosphatidylcholine acyltransferase 3 Novel U 0.007222773030643498 -0.1891688530644314 1.0 5972 -319481 Wdr59 WD repeat domain 59 Novel N 0.007213332517979398 -0.189266637584266 1.0 5973 -23886 Gdf15 growth differentiation factor 15 Novel U 0.007212697277395061 -0.18927321738535619 1.0 5974 -223690 Ankrd54 ankyrin repeat domain 54 Novel U 0.007211088360447879 -0.18928988249420478 1.0 5975 -107449 Unc5b unc-5 netrin receptor B Novel U 0.007210721534257915 -0.18929368206782168 1.0 5976 -11490 Adam15 ADAM metallopeptidase domain 15 Novel U 0.007203279501343737 -0.18937076640010309 1.0 5977 -239336 Rxfp3 relaxin family peptide receptor 3 Novel U 0.0072000957605062995 -0.1894037434830374 1.0 5978 -80986 Ckap2 cytoskeleton associated protein 2 Novel U 0.007190336110057669 -0.1895048336215531 1.0 5979 -15439 Hp haptoglobin Novel U 0.00718983861582713 -0.18950998665043878 1.0 5980 -233871 Atxn2l ataxin 2-like Novel N 0.007187162973018554 -0.189537700870693 1.0 5981 -11556 Adrb3 adrenergic receptor, beta 3 Known P 0.007186752432778717 -0.18954195323300144 1.0 5982 -276829 Smtnl2 smoothelin-like 2 Novel U 0.007185354184340911 -0.18955643624435528 1.0 5983 -12793 Cnih1 cornichon family AMPA receptor auxiliary protein 1 Novel N 0.007185189245593206 -0.18955814467448195 1.0 5984 -22373 Wap whey acidic protein Novel U 0.00718406740154211 -0.18956976469828457 1.0 5985 -19155 Npepps aminopeptidase puromycin sensitive Novel U 0.00718212349304657 -0.1895898996385788 1.0 5986 -257916 Or5m8 olfactory receptor family 5 subfamily M member 8 Novel U 0.007179536937116536 -0.1896166910998737 1.0 5987 -384219 Vmn2r11 vomeronasal 2, receptor 11 Novel U 0.007178760865567108 -0.18962472962347068 1.0 5988 -20607 Sstr3 somatostatin receptor 3 Novel N 0.0071752749718213445 -0.18966083639629672 1.0 5989 -30795 Fkbp3 FK506 binding protein 3 Novel U 0.007175096788214536 -0.18966268201623854 1.0 5990 -22200 Uba3 ubiquitin-like modifier activating enzyme 3 Novel N 0.007174941683498505 -0.1896642885857884 1.0 5991 -94244 Fkbp6 FK506 binding protein 6 Novel U 0.007174558555194194 -0.1896682570161698 1.0 5992 -74132 Rnf6 ring finger protein (C3H2C3 type) 6 Novel U 0.007173059357199899 -0.18968378565971122 1.0 5993 -59288 Dctn5 dynactin 5 Novel U 0.007173052134370593 -0.18968386047353974 1.0 5994 -60613 Kcnq4 potassium voltage-gated channel, subfamily Q, member 4 Novel N 0.007168363602337375 -0.18973242413421262 1.0 5995 -75665 Bicdl1 BICD family like cargo adaptor 1 Novel U 0.007164568771885199 -0.18977173086328794 1.0 5996 -76071 Jakmip1 janus kinase and microtubule interacting protein 1 Novel N 0.00716381031963399 -0.18977958688677318 1.0 5997 -68507 Ppfia4 protein tyrosine phosphatase, receptor type, f polypeptide (PTPRF), interacting protein (liprin), alpha 4 Novel U 0.00716241762507505 -0.18979401237123233 1.0 5998 -404328 Or10ag56 olfactory receptor family 10 subfamily AG member 56 Novel U 0.007159477311910089 -0.18982446803833739 1.0 5999 -74117 Actr3 ARP3 actin-related protein 3 Novel U 0.007150216747378334 -0.18992038866133265 1.0 6000 -23881 G3bp2 G3BP stress granule assembly factor 2 Novel U 0.0071484551843297665 -0.18993863487348142 1.0 6001 -215351 Senp6 SUMO/sentrin specific peptidase 6 Novel U 0.007148286173917452 -0.1899403854777763 1.0 6002 -231887 Pdap1 PDGFA associated protein 1 Novel N 0.00714801452743829 -0.18994319918307753 1.0 6003 -19165 Psen2 presenilin 2 Novel U 0.007147818492219624 -0.18994522970942818 1.0 6004 -59007 Ngly1 N-glycanase 1 Novel U 0.007145075410732828 -0.18997364245729448 1.0 6005 -66853 Pnpla2 patatin-like phospholipase domain containing 2 Novel U 0.007144839947478148 -0.189976081377946 1.0 6006 -381838 Vmn2r43 vomeronasal 2, receptor 43 Novel U 0.007142848220728479 -0.18999671161814458 1.0 6007 -109115 Supt3 SPT3, SAGA and STAGA complex component Novel N 0.0071406073725672325 -0.19001992224973488 1.0 6008 -94091 Trim11 tripartite motif-containing 11 Novel U 0.007139633135218578 -0.19003001336816588 1.0 6009 -94065 Mrpl34 mitochondrial ribosomal protein L34 Novel U 0.00713851367596345 -0.19004160869033027 1.0 6010 -20544 Slc9a1 solute carrier family 9 (sodium/hydrogen exchanger), member 1 Novel U 0.007134245410679928 -0.19008581924182533 1.0 6011 -227682 Trub2 TruB pseudouridine (psi) synthase family member 2 Novel N 0.007124222238470936 -0.190189638930072 1.0 6012 -258366 Or2a20 olfactory receptor family 2 subfamily A member 2 Novel U 0.007122939527804278 -0.19020292520499044 1.0 6013 -67048 Vma21 VMA21 vacuolar H+-ATPase homolog (S. cerevisiae) Novel N 0.0071204681173687515 -0.19022852399303838 1.0 6014 -17159 Man2b1 mannosidase 2, alpha B1 Novel U 0.007108319035308773 -0.19035436378563605 1.0 6015 -11536 Gpr182 G protein-coupled receptor 182 Novel N 0.0071068305325198335 -0.19036978164859203 1.0 6016 -76967 2700049A03Rik RIKEN cDNA 2700049A03 gene Novel U 0.007104456945955497 -0.19039436718019795 1.0 6017 -230935 Dnajc11 DnaJ heat shock protein family (Hsp40) member C11 Novel N 0.007097168559544662 -0.1904698600470486 1.0 6018 -102075 Plekhg4 pleckstrin homology domain containing, family G (with RhoGef domain) member 4 Novel U 0.007096153804706027 -0.19048037084430888 1.0 6019 -17076 Ly75 lymphocyte antigen 75 Novel N 0.007092769853463591 -0.19051542170003666 1.0 6020 -239528 Ago2 argonaute RISC catalytic subunit 2 Novel U 0.007092249874834477 -0.19052080762158363 1.0 6021 -20167 Rtn2 reticulon 2 (Z-band associated protein) Novel N 0.007089646697556832 -0.19054777124625064 1.0 6022 -21982 Tmem165 transmembrane protein 165 Novel U 0.007087729632812822 -0.190567628139849 1.0 6023 -20556 Slfn2 schlafen 2 Novel U 0.007085622440353574 -0.19058945437007166 1.0 6024 -227619 Man1b1 mannosidase, alpha, class 1B, member 1 Novel U 0.007083606214999432 -0.19061033836601005 1.0 6025 -71970 Zbed5 zinc finger BED-type containing 5 Novel U 0.007082036157102185 -0.19062660097409684 1.0 6026 -79264 Krit1 KRIT1, ankyrin repeat containing Novel U 0.007081532112927409 -0.1906318218470896 1.0 6027 -18167 Npy2r neuropeptide Y receptor Y2 Novel N 0.007080566538423498 -0.19064182323605958 1.0 6028 -381852 Ceacam23 CEA cell adhesion moleculen23 Novel U 0.007078462245982856 -0.19066361942798485 1.0 6029 -64011 Nrgn neurogranin Novel N 0.00707751402728332 -0.19067344104610365 1.0 6030 -258662 Or11g1 olfactory receptor family 11 subfamily G member 1 Novel U 0.0070725478867755985 -0.19072488016622952 1.0 6031 -214084 Slc18a2 solute carrier family 18 (vesicular monoamine), member 2 Novel U 0.007072248659580963 -0.190727979551675 1.0 6032 -19089 Prkcsh protein kinase C substrate 80K-H Novel U 0.007067096530163168 -0.1907813451388174 1.0 6033 -54563 Nup210 nucleoporin 210 Novel U 0.0070663724474999004 -0.1907888451632406 1.0 6034 -28035 Usp39 ubiquitin specific peptidase 39 Novel N 0.0070633861598377225 -0.19081977703267652 1.0 6035 -11838 Arc activity regulated cytoskeletal-associated protein Novel U 0.0070631849622917004 -0.19082186103024418 1.0 6036 -269713 Clip2 CAP-GLY domain containing linker protein 2 Novel U 0.007060901115804809 -0.190845517037078 1.0 6037 -65254 Dpysl5 dihydropyrimidinase-like 5 Novel U 0.007058342631716053 -0.1908720177311637 1.0 6038 -240328 F830016B08Rik RIKEN cDNA F830016B08 gene Novel U 0.007056037454716666 -0.19089589467874474 1.0 6039 -258498 Or10n1 olfactory receptor family 10 subfamily N member 1 Novel U 0.007054587681229912 -0.19091091138486183 1.0 6040 -381270 Marchf4 membrane associated ring-CH-type finger 4 Novel U 0.007053940134502389 -0.19091761865257853 1.0 6041 -70599 Itprid2 ITPR interacting domain containing 2 Novel U 0.007051753845973507 -0.19094026415729032 1.0 6042 -171284 Timd2 T cell immunoglobulin and mucin domain containing 2 Novel U 0.007050743534628821 -0.19095072892898637 1.0 6043 -223254 Farp1 FERM, ARH/RhoGEF and pleckstrin domain protein 1 Novel U 0.007049532520502613 -0.19096327257349568 1.0 6044 -93702 Pcdhgb5 protocadherin gamma subfamily B, 5 Novel U 0.007039752902098635 -0.19106456953943646 1.0 6045 -216749 Nmur2 neuromedin U receptor 2 Novel U 0.007038294753366806 -0.19107967299606668 1.0 6046 -106064 Rimoc1 RAB7A interacting MON1-CCZ1 complex subunit 1 Novel U 0.007037337407881151 -0.19108958914913607 1.0 6047 -18107 Nmt1 N-myristoyltransferase 1 Novel U 0.0070338338597998136 -0.19112587878498963 1.0 6048 -320782 Tmem154 transmembrane protein 154 Novel U 0.007031824299030356 -0.19114669374937893 1.0 6049 -360216 Zranb1 zinc finger, RAN-binding domain containing 1 Novel U 0.007029795061711915 -0.19116771252281575 1.0 6050 -170770 Bbc3 BCL2 binding component 3 Novel N 0.007029098707216011 -0.1911749253397929 1.0 6051 -233406 Prc1 protein regulator of cytokinesis 1 Novel U 0.007026904629948459 -0.19119765152000381 1.0 6052 -18087 Nktr natural killer tumor recognition sequence Novel N 0.007026615223938624 -0.19120064917793994 1.0 6053 -100041774 Gm10413 predicted gene 10413 Novel U 0.00701586984189299 -0.19131194949193323 1.0 6054 -232414 Clec9a C-type lectin domain family 9, member a Novel U 0.007014714417558716 -0.19132391733920512 1.0 6055 -665113 Tnik TRAF2 and NCK interacting kinase Novel U 0.007012160567115046 -0.19135037003814734 1.0 6056 -54448 Il36a interleukin 36A Novel U 0.007009758231914425 -0.19137525334718283 1.0 6057 -11640 Akap1 A kinase anchor protein 1 Novel N 0.007005242341505087 -0.19142202879159087 1.0 6058 -140559 Igsf8 immunoglobulin superfamily, member 8 Novel U 0.007004868856355754 -0.19142589733849 1.0 6059 -110312 Pmch pro-melanin-concentrating hormone Novel U 0.0070046268763473375 -0.19142840375946252 1.0 6060 -75692 Nr2c2ap nuclear receptor 2C2-associated protein Novel U 0.007000250589129665 -0.19147373319860048 1.0 6061 -70294 Rnf126 ring finger protein 126 Novel U 0.006996752841818295 -0.1915099627502694 1.0 6062 -75610 2010109A12Rik RIKEN cDNA 2010109A12 gene Novel U 0.0069957270081060655 -0.1915205883021382 1.0 6063 -66352 Blzf1 basic leucine zipper nuclear factor 1 Novel U 0.0069927646846635345 -0.1915512719509748 1.0 6064 -56183 Nmu neuromedin U Novel N 0.006992538594705785 -0.19155361378332486 1.0 6065 -258701 Or3a1b olfactory receptor family 3 subfamily A member 1B Novel U 0.0069872744043836844 -0.19160814009363025 1.0 6066 -74316 Isca2 iron-sulfur cluster assembly 2 Novel N 0.006985564662019874 -0.19162584954882986 1.0 6067 -258866 Or8k16 olfactory receptor family 8 subfamily K member 16 Novel U 0.006984133903550497 -0.19164066929802198 1.0 6068 -105351 AW209491 expressed sequence AW209491 Novel U 0.006983293722007493 -0.19164937187082495 1.0 6069 -18824 Plp2 proteolipid protein 2 Novel U 0.006982772469808124 -0.19165477098397077 1.0 6070 -55984 Camkk1 calcium/calmodulin-dependent protein kinase kinase 1, alpha Novel U 0.0069818591129725905 -0.19166423150404824 1.0 6071 -212108 Rln3 relaxin 3 Novel U 0.006978633811650272 -0.19169763906911874 1.0 6072 -258815 Or4c113 olfactory receptor family 4 subfamily C member 113 Novel U 0.006978393899435988 -0.19170012407194761 1.0 6073 -108168683 LOC108168683 PRAME family member 8-like Novel U 0.00697606603437564 -0.19172423602171823 1.0 6074 -22306 Vmn2r30 vomeronasal 2, receptor 30 Novel U 0.006972845565859494 -0.1917575935287413 1.0 6075 -14563 Gdf5 growth differentiation factor 5 Novel U 0.006970065456591401 -0.19178638980914903 1.0 6076 -50928 Klrg1 killer cell lectin-like receptor subfamily G, member 1 Novel U 0.0069655646559012505 -0.19183300895474176 1.0 6077 -50498 Ebi3 Epstein-Barr virus induced gene 3 Novel U 0.006962367962951701 -0.19186612019522756 1.0 6078 -84682 Cox4i2 cytochrome c oxidase subunit 4I2 Novel U 0.006962224081318863 -0.19186761051645068 1.0 6079 -20927 Abcc8 ATP-binding cassette, sub-family C member 8 Novel U 0.006961639091985058 -0.19187366981673973 1.0 6080 -76483 Lmf1 lipase maturation factor 1 Novel N 0.006960906451361249 -0.19188125848423684 1.0 6081 -23994 Dazap2 DAZ associated protein 2 Novel N 0.006955633716215166 -0.19193587330154815 1.0 6082 -327951 Cyb5d1 cytochrome b5 domain containing 1 Novel U 0.00695465582088043 -0.19194600230927877 1.0 6083 -18119 Nodal nodal growth differentiation factor Novel U 0.006954500474879957 -0.19194761137804495 1.0 6084 -67941 Rps27l ribosomal protein S27-like Novel N 0.006951487440749046 -0.1919788202865248 1.0 6085 -100042555 Il11ra3 interleukin 11 receptor subunit alpha 3 Novel U 0.006950125516281699 -0.1919929270553867 1.0 6086 -103768 Tubg2 tubulin, gamma 2 Novel U 0.006946998401108992 -0.1920253176115472 1.0 6087 -22068 Trpc6 transient receptor potential cation channel, subfamily C, member 6 Novel N 0.0069458949379957195 -0.1920367472462001 1.0 6088 -72477 Tmem87b transmembrane protein 87B Novel U 0.006944846657709638 -0.19204760529894296 1.0 6089 -11443 Chrnb1 cholinergic receptor nicotinic beta 1 subunit Novel U 0.006943776733818019 -0.1920586875354405 1.0 6090 -259151 Or8u10 olfactory receptor family 8 subfamily U member 10 Novel U 0.0069393873811186 -0.1921041523064089 1.0 6091 -14616 Gja8 gap junction protein, alpha 8 Novel U 0.00693407430796179 -0.19215918494350925 1.0 6092 -17196 Mbp myelin basic protein Novel U 0.006932856875505392 -0.1921717950688717 1.0 6093 -108686 Ccdc88a coiled coil domain containing 88A Novel U 0.006921403183569203 -0.19229043203342688 1.0 6094 -14585 Gfra1 glial cell line derived neurotrophic factor family receptor alpha 1 Novel U 0.006920593833489563 -0.19229881525494588 1.0 6095 -13615 Edn2 endothelin 2 Novel U 0.006918509330299623 -0.1923204064704629 1.0 6096 -53627 Porcn porcupine O-acyltransferase Novel U 0.006915473912802206 -0.19235184722511717 1.0 6097 -100042653 Vmn2r36 vomeronasal 2, receptor 36 Novel U 0.006913254591563366 -0.19237483488155285 1.0 6098 -228858 Gdap1l1 ganglioside-induced differentiation-associated protein 1-like 1 Novel U 0.0069122605529239435 -0.19238513110110272 1.0 6099 -108077 Skic2 SKI2 subunit of superkiller complex Novel U 0.006910884273675418 -0.1923993865563162 1.0 6100 -258497 Or10d4c olfactory receptor family 10 subfamily D member 4C Novel U 0.006907221375403197 -0.19243732673620856 1.0 6101 -66164 Nip7 NIP7, nucleolar pre-rRNA processing protein Novel U 0.006904657602126949 -0.1924638822155244 1.0 6102 -214189 Scgn secretagogin, EF-hand calcium binding protein Novel U 0.006896385265310242 -0.1925495668083335 1.0 6103 -12182 Bst1 bone marrow stromal cell antigen 1 Novel U 0.00689630572375931 -0.19255039069710322 1.0 6104 -243978 Mrgprx2 MAS-related GPR, member X2 Novel U 0.006892440155724787 -0.19259043012373112 1.0 6105 -52187 Rragd Ras-related GTP binding D Novel N 0.006890371691929112 -0.19261185520372961 1.0 6106 -22312 Vmn2r107 vomeronasal 2, receptor 107 Novel U 0.006889919954618899 -0.19261653428393874 1.0 6107 -20964 Syn1 synapsin I Novel U 0.0068867642093827595 -0.19264922138935514 1.0 6108 -387352 Tas2r125 taste receptor, type 2, member 125 Novel U 0.006886365854865157 -0.19265334753235328 1.0 6109 -241656 Pak5 p21 (RAC1) activated kinase 5 Novel N 0.0068854257680102445 -0.1926630849210928 1.0 6110 -12337 Capn5 calpain 5 Novel U 0.006879803061870827 -0.19272132472644835 1.0 6111 -232087 Mat2a methionine adenosyltransferase 2A Novel U 0.006879739476983348 -0.1927219833366226 1.0 6112 -13007 Csrp1 cysteine and glycine-rich protein 1 Novel U 0.006877638117993808 -0.1927437491439578 1.0 6113 -68915 Vars2 valyl-tRNA synthetase 2, mitochondrial Novel N 0.0068774867506166465 -0.1927453170022745 1.0 6114 -70381 Tecpr1 tectonin beta-propeller repeat containing 1 Novel U 0.006875862147384298 -0.19276214458914923 1.0 6115 -76890 Memo1 mediator of cell motility 1 Novel U 0.006874158638140732 -0.19277978948189423 1.0 6116 -258449 Or8s10 olfactory receptor family 8 subfamily S member 1 Novel U 0.006873614131937582 -0.1927854294592468 1.0 6117 -109136 Mmaa methylmalonic aciduria (cobalamin deficiency) type A Novel U 0.006873411543126795 -0.19278752786748918 1.0 6118 -404321 Or6c206 olfactory receptor family 6 subfamily C member 206 Novel U 0.006873296896855202 -0.19278871536980152 1.0 6119 -24100 Tpra1 transmembrane protein, adipocyte asscociated 1 Novel N 0.006872348493312112 -0.1927985389025238 1.0 6120 -241062 Pgap1 post-GPI attachment to proteins 1 Novel U 0.006871744649775551 -0.19280479349402518 1.0 6121 -230784 Sesn2 sestrin 2 Novel U 0.006870354413578198 -0.19281919351485582 1.0 6122 -18552 Pcsk5 proprotein convertase subtilisin/kexin type 5 Novel U 0.006869418219100984 -0.19282889058647504 1.0 6123 -74482 Ifitm7 interferon induced transmembrane protein 7 Novel U 0.006867565296771873 -0.19284808309504844 1.0 6124 -668208 Gm13288 predicted gene 13288 Novel U 0.0068675276283955995 -0.1928484732628516 1.0 6125 -77582 Mboat7 membrane bound O-acyltransferase domain containing 7 Novel U 0.006862711559143916 -0.1928983579498408 1.0 6126 -106869 Tnfaip8 tumor necrosis factor, alpha-induced protein 8 Novel N 0.006862121263510304 -0.1929044722126088 1.0 6127 -13667 Eif2b4 eukaryotic translation initiation factor 2B, subunit 4 delta Novel U 0.0068611566673242 -0.1929144634681951 1.0 6128 -22791 Dnajc2 DnaJ heat shock protein family (Hsp40) member C2 Novel U 0.00685906721062293 -0.19293610599201969 1.0 6129 -224640 Lemd2 LEM domain containing 2 Novel U 0.00685649401952229 -0.192962759020851 1.0 6130 -17986 Ndp Norrie disease (pseudoglioma) (human) Novel U 0.006852743029867308 -0.19300161164839016 1.0 6131 -75705 Eif4b eukaryotic translation initiation factor 4B Novel N 0.0068505640208762165 -0.19302418175188882 1.0 6132 -19881 Rom1 rod outer segment membrane protein 1 Novel N 0.006849266221884313 -0.19303762431118413 1.0 6133 -29869 Ulk2 unc-51 like kinase 2 Novel U 0.006844844283265829 -0.19308342660603095 1.0 6134 -67923 Eloc elongin C Novel N 0.0068398609689558736 -0.19313504361183587 1.0 6135 -74025 Nphp3 nephronophthisis 3 (adolescent) Novel U 0.006838723016858022 -0.19314683048225723 1.0 6136 -637021 Vmn2r124 vomeronasal 2, receptor 124 Novel U 0.006835690967597663 -0.19317823634882278 1.0 6137 -245537 Nlgn3 neuroligin 3 Novel U 0.006835030802521791 -0.19318507431697693 1.0 6138 -56707 Zfp111 zinc finger protein 111 Novel U 0.006834709639512166 -0.19318840091287293 1.0 6139 -65111 Dap3 death associated protein 3 Novel N 0.00683216876221189 -0.19321471923642236 1.0 6140 -56533 Rgs17 regulator of G-protein signaling 17 Novel N 0.006830042865658604 -0.1932367392030362 1.0 6141 -433182 Eno1b enolase 1B, retrotransposed Novel U 0.00682682060677929 -0.1932701152545821 1.0 6142 -258218 Or12d2 olfactory receptor family 12 subfamily D member 2 Novel U 0.006826579341608662 -0.1932726142712883 1.0 6143 -258480 Or2g7 olfactory receptor family 2 subfamily G member 7 Novel U 0.006826049734249479 -0.1932780999269048 1.0 6144 -18145 Npc1 NPC intracellular cholesterol transporter 1 Novel U 0.006823841810112197 -0.19330096953253717 1.0 6145 -56709 Dnajb12 DnaJ heat shock protein family (Hsp40) member B12 Novel U 0.006822211326776731 -0.1933178580253267 1.0 6146 -353236 Pcdhac1 protocadherin alpha subfamily C, 1 Novel U 0.006821991972387601 -0.19332013009087842 1.0 6147 -18035 Nfkbia nuclear factor of kappa light polypeptide gene enhancer in B cells inhibitor, alpha Novel U 0.0068204938454807604 -0.19333564764013117 1.0 6148 -14160 Lgr5 leucine rich repeat containing G protein coupled receptor 5 Novel U 0.006816588999989989 -0.19337609390135974 1.0 6149 -353170 Txlng taxilin gamma Novel N 0.0068157484440479294 -0.19338480035217578 1.0 6150 -100042960 Gm4131 predicted gene 4131 Novel U 0.006815317131840764 -0.19338926786983895 1.0 6151 -231858 Radil Ras association and DIL domains Novel N 0.00681137189725479 -0.1934301324799879 1.0 6152 -16716 Ky kyphoscoliosis peptidase Novel U 0.006805653688882239 -0.19348936149433482 1.0 6153 -66607 Ms4a4d membrane-spanning 4-domains, subfamily A, member 4D Novel U 0.006804331659693892 -0.19350305502920837 1.0 6154 -12167 Bmpr1b bone morphogenetic protein receptor, type 1B Novel U 0.006803362357244378 -0.1935130950321163 1.0 6155 -21825 Thbs1 thrombospondin 1 Novel U 0.006798832416292839 -0.19356001601157857 1.0 6156 -269397 Ss18l1 SS18, nBAF chromatin remodeling complex subunit like 1 Novel U 0.00679739436420941 -0.19357491130778529 1.0 6157 -387565 Cd300c CD300C molecule Novel U 0.006789735919053717 -0.19365423723095015 1.0 6158 -17882 Myh2 myosin, heavy polypeptide 2, skeletal muscle, adult Novel U 0.006789217718852782 -0.1936596047315965 1.0 6159 -56330 Pdcd5 programmed cell death 5 Novel U 0.006788095513731023 -0.19367122849535717 1.0 6160 -11512 Adcy6 adenylate cyclase 6 Novel U 0.006787429320874886 -0.19367812889906114 1.0 6161 -258846 Or5l14 olfactory receptor family 5 subfamily L member 14 Novel U 0.0067874287162100425 -0.1936781351621597 1.0 6162 -104069 Sncb synuclein, beta Novel N 0.006786711806334102 -0.19368556089108757 1.0 6163 -258380 Or9a7 olfactory receptor family 9 subfamily A member 7 Novel U 0.006784659441865832 -0.19370681921478208 1.0 6164 -13498 Atn1 atrophin 1 Novel U 0.0067819185059295635 -0.19373520973910652 1.0 6165 -17250 Abcc1 ATP-binding cassette, sub-family C member 1 Novel U 0.006781550690437397 -0.1937390195598831 1.0 6166 -68556 Uckl1 uridine-cytidine kinase 1-like 1 Novel N 0.006780919254524042 -0.1937455599523163 1.0 6167 -217166 Nr1d1 nuclear receptor subfamily 1, group D, member 1 Novel U 0.006779951573133663 -0.19375558316434704 1.0 6168 -223672 Apol9a apolipoprotein L 9a Novel U 0.006779262354180111 -0.19376272207161108 1.0 6169 -259125 Or51a43 olfactory receptor family 51 subfamily A member 43 Novel U 0.006776226382362477 -0.19379416856789589 1.0 6170 -620913 Gm12185 predicted gene 12185 Novel U 0.0067756458831284986 -0.1938001813598786 1.0 6171 -19016 Pparg peroxisome proliferator activated receptor gamma Novel U 0.006774256020579665 -0.19381457751047013 1.0 6172 -72776 Sass6 SAS-6 centriolar assembly protein Novel U 0.006767249276626745 -0.19388715313400015 1.0 6173 -18551 Pcsk4 proprotein convertase subtilisin/kexin type 4 Novel N 0.00676490466547178 -0.19391143853926834 1.0 6174 -73149 Clec4a3 C-type lectin domain family 4, member a3 Novel U 0.006764073551234576 -0.1939200471932159 1.0 6175 -19164 Psen1 presenilin 1 Novel U 0.006763381811887133 -0.19392721220663703 1.0 6176 -22192 Ube2m ubiquitin-conjugating enzyme E2M Novel N 0.00676221768089822 -0.19393927023715143 1.0 6177 -230673 Ipo13 importin 13 Novel U 0.006762029713739013 -0.19394121719480742 1.0 6178 -76551 Ccdc6 coiled-coil domain containing 6 Novel U 0.006756187327258506 -0.1940017324419144 1.0 6179 -320299 Iqcb1 IQ calmodulin-binding motif containing 1 Novel N 0.00675470150751223 -0.1940171225140026 1.0 6180 -269955 Rccd1 RCC1 domain containing 1 Novel U 0.006745893795350756 -0.19410835250703323 1.0 6181 -12345 Capzb capping actin protein of muscle Z-line subunit beta Novel U 0.006743797820879318 -0.19413006254170692 1.0 6182 -192652 Wdr81 WD repeat domain 81 Novel U 0.00674152559266562 -0.19415359820684894 1.0 6183 -233571 P2ry6 pyrimidinergic receptor P2Y, G-protein coupled, 6 Novel U 0.006740507505669917 -0.1941641435184826 1.0 6184 -71027 Tmem30c transmembrane protein 30C Novel U 0.006738891347840134 -0.19418088362815522 1.0 6185 -22682 Zfand5 zinc finger, AN1-type domain 5 Novel U 0.0067371852982489235 -0.1941985548337376 1.0 6186 -68971 Tamm41 TAM41 mitochondrial translocator assembly and maintenance homolog Novel N 0.006737114262254841 -0.1941992906222291 1.0 6187 -56030 Tmem131 transmembrane protein 131 Novel U 0.00673657758553014 -0.1942048495021013 1.0 6188 -20278 Scnn1g sodium channel, nonvoltage-gated 1 gamma Novel U 0.006735945603126403 -0.19421139555506386 1.0 6189 -20200 S100a6 S100 calcium binding protein A6 (calcyclin) Novel N 0.006735266342981397 -0.19421843130931637 1.0 6190 -13864 Nr2f6 nuclear receptor subfamily 2, group F, member 6 Novel N 0.006728888785962026 -0.1942844898352721 1.0 6191 -18670 Abcb4 ATP-binding cassette, sub-family B member 4 Novel U 0.006727685965969068 -0.1942969486052186 1.0 6192 -68280 Larp7-ps La ribonucleoprotein 7, transcriptional regulator, pseudogene Novel U 0.006727484932875056 -0.19429903089939776 1.0 6193 -26381 Esrrg estrogen-related receptor gamma Novel N 0.006724619216431981 -0.19432871389610978 1.0 6194 -238463 Tubal3 tubulin, alpha-like 3 Novel U 0.006724232919872389 -0.1943327151431752 1.0 6195 -230577 Pars2 prolyl-tRNA synthetase (mitochondrial)(putative) Novel U 0.006724219392243204 -0.19433285526191363 1.0 6196 -234388 Ccdc124 coiled-coil domain containing 124 Novel U 0.006723331369221523 -0.19434205337518 1.0 6197 -68519 Eml1 echinoderm microtubule associated protein like 1 Novel N 0.0067205263999534455 -0.19437110715465036 1.0 6198 -59004 Pias4 protein inhibitor of activated STAT 4 Novel U 0.00671936900101118 -0.19438309545484692 1.0 6199 -241070 Cmklr2 chemerin chemokine-like receptor 2 Novel U 0.006713396638154717 -0.1944449569929833 1.0 6200 -13175 Dclk1 doublecortin-like kinase 1 Novel N 0.006700017503452642 -0.19458353763041203 1.0 6201 -224576 Vmn2r106 vomeronasal 2, receptor 106 Novel U 0.006699179851125915 -0.19459221400567592 1.0 6202 -208677 Creb3l3 cAMP responsive element binding protein 3-like 3 Novel N 0.0066836093316805555 -0.19475349293423772 1.0 6203 -99662 Eps8l3 EPS8-like 3 Novel N 0.006683169296921672 -0.19475805079980485 1.0 6204 -93842 Igsf9 immunoglobulin superfamily, member 9 Novel U 0.0066794494708981 -0.19479658063547434 1.0 6205 -70385 Spdl1 spindle apparatus coiled-coil protein 1 Novel U 0.006678665358803474 -0.19480470244277417 1.0 6206 -13424 Dync1h1 dynein cytoplasmic 1 heavy chain 1 Novel U 0.006676584641876579 -0.19482625444030308 1.0 6207 -258819 Or51i1 olfactory receptor family 51 subfamily I member 1D Novel U 0.006673280326265147 -0.19486048043278276 1.0 6208 -386649 Nsfl1c NSFL1 (p97) cofactor (p47) Novel U 0.006669616710709891 -0.19489842804226923 1.0 6209 -11908 Atf1 activating transcription factor 1 Novel N 0.006664671837993043 -0.19494964687131638 1.0 6210 -228421 Kif18a kinesin family member 18A Novel U 0.006664127544721225 -0.19495528464313322 1.0 6211 -214895 Lman2l lectin, mannose-binding 2-like Novel U 0.006662191532612375 -0.1949753377929137 1.0 6212 -68743 Anln anillin, actin binding protein Novel U 0.006659795262446879 -0.19500015828051478 1.0 6213 -666002 Vmn2r114 vomeronasal 2, receptor 114 Novel U 0.006652751508222768 -0.19507311725521717 1.0 6214 -74918 Iqca1 IQ motif containing with AAA domain 1 Novel U 0.006652552777406132 -0.19507517570248298 1.0 6215 -29805 Znhit2 zinc finger, HIT domain containing 2 Novel U 0.00665160662069339 -0.19508497596261032 1.0 6216 -100978 Nfxl1 nuclear transcription factor, X-box binding-like 1 Novel U 0.006650801106473928 -0.19509331945241565 1.0 6217 -73301 Ttc29 tetratricopeptide repeat domain 29 Novel N 0.006649474713492241 -0.19510705818731716 1.0 6218 -259002 Or5k1 olfactory receptor family 5 subfamily K member 1 Novel U 0.006648047425650707 -0.1951218419878602 1.0 6219 -244864 Layn layilin Novel U 0.006645818922877384 -0.1951449247463282 1.0 6220 -217109 Utp18 UTP18 small subunit processome component Novel N 0.006645362894551462 -0.19514964827273698 1.0 6221 -53322 Nucb2 nucleobindin 2 Novel U 0.006642033181333582 -0.19518413733278936 1.0 6222 -12494 Cd38 CD38 antigen Novel U 0.006638719412309463 -0.1952184612434069 1.0 6223 -68778 Gucd1 guanylyl cyclase domain containing 1 Novel U 0.006638408845239812 -0.195221678086905 1.0 6224 -14180 Fgf9 fibroblast growth factor 9 Novel U 0.006638347626436529 -0.19522231218925695 1.0 6225 -70533 Btf3l4 basic transcription factor 3-like 4 Novel U 0.006637136360994395 -0.19523485843688834 1.0 6226 -66346 Ndufb11b NADH:ubiquinone oxidoreductase subunit B11B Novel U 0.0066311934624627015 -0.19529641478451737 1.0 6227 -228071 Sestd1 SEC14 and spectrin domains 1 Novel U 0.006630096085336032 -0.19530778138072108 1.0 6228 -544736 Glipr1l3 GLI pathogenesis-related 1 like 3 Novel U 0.006629453136907804 -0.19531444101940487 1.0 6229 -381463 Nr1h5 nuclear receptor subfamily 1, group H, member 5 Novel U 0.00662870627630983 -0.19532217697692697 1.0 6230 -71599 Senp8 SUMO peptidase family member, NEDD8 specific Novel N 0.0066285312201496225 -0.19532399020287972 1.0 6231 -258295 Or11h7 olfactory receptor family 11 subfamily H member 7 Novel U 0.006624565854423882 -0.1953650633307126 1.0 6232 -18744 Pja1 praja ring finger ubiquitin ligase 1 Novel U 0.006624198085680092 -0.19536887266727102 1.0 6233 -12153 Bmp1 bone morphogenetic protein 1 Novel U 0.006618565267007895 -0.19542721721790868 1.0 6234 -66443 Tnfaip8l1 tumor necrosis factor, alpha-induced protein 8-like 1 Novel U 0.006618197208001072 -0.19543102956100208 1.0 6235 -317677 C1s2 complement component 1, s subcomponent 2 Novel U 0.006613966189401618 -0.19547485431256797 1.0 6236 -218624 Il31ra interleukin 31 receptor A Novel U 0.006612933905667943 -0.1954855466735469 1.0 6237 -16904 Gzmm granzyme M (lymphocyte met-ase 1) Novel N 0.006608036842799167 -0.19553627028975942 1.0 6238 -17158 Man2a1 mannosidase 2, alpha 1 Novel U 0.006607015569625189 -0.19554684860372293 1.0 6239 -14608 Gpr83 G protein-coupled receptor 83 Novel U 0.006606726263175463 -0.1955498452304187 1.0 6240 -11305 Abca2 ATP-binding cassette, sub-family A member 2 Novel U 0.0066062789963015804 -0.19555447800599532 1.0 6241 -14432 Gap43 growth associated protein 43 Novel U 0.0066046961418523295 -0.1955708731603471 1.0 6242 -12515 Cd69 CD69 antigen Novel U 0.006604124260046148 -0.19557679669329595 1.0 6243 -12889 Cplx1 complexin 1 Novel U 0.0066025610689660575 -0.19559298817511636 1.0 6244 -258649 Or2a54 olfactory receptor family 2 subfamily A member 54 Novel U 0.006601371775614717 -0.19560530683655364 1.0 6245 -78826 P2ry10 purinergic receptor P2Y, G-protein coupled 10 Novel U 0.006600941910747049 -0.1956097593627219 1.0 6246 -20555 Slfn1 schlafen 1 Novel U 0.00659862863053483 -0.19563372024311507 1.0 6247 -258342 Or10q1b olfactory receptor family 10 subfamily Q member 1B Novel U 0.006597672181694601 -0.19564362710876063 1.0 6248 -54188 Cpsf4 cleavage and polyadenylation specific factor 4 Novel U 0.006595501186658127 -0.19566611420398078 1.0 6249 -20090 Rps29 ribosomal protein S29 Novel U 0.006595416234592186 -0.19566699413468716 1.0 6250 -258693 Or5b95 olfactory receptor family 5 subfamily B member 95 Novel U 0.00658644933168961 -0.19575987302018097 1.0 6251 -239036 4930596D02Rik RIKEN cDNA 4930596D02 gene Novel U 0.006584775059843966 -0.19577721507291942 1.0 6252 -11990 Atrn attractin Novel U 0.0065812805766846845 -0.19581341081460835 1.0 6253 -328699 Gabrr3 gamma-aminobutyric acid type A receptor subunit rho 3 Novel U 0.006580094837017573 -0.1958256926671012 1.0 6254 -81004 Tbl1xr1 transducin (beta)-like 1X-linked receptor 1 Novel U 0.006579739544377252 -0.19582937277659002 1.0 6255 -110954 Rpl10 ribosomal protein L10 Novel U 0.006575454427899444 -0.19587375787220154 1.0 6256 -258673 Or4d6 olfactory receptor family 4 subfamily D member 6 Novel U 0.006574264752703756 -0.19588608048877 1.0 6257 -268759 9930012K11Rik RIKEN cDNA 9930012K11 gene Novel U 0.006573580555057677 -0.1958931673854963 1.0 6258 -18726 Lilra6 leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 6 Novel U 0.0065712805692486565 -0.19591699056289816 1.0 6259 -329828 Myorg myogenesis regulating glycosidase (putative) Novel N 0.006571123712070814 -0.19591861528438986 1.0 6260 -54140 Avpr1a arginine vasopressin receptor 1A Novel U 0.006570866269300096 -0.195921281868146 1.0 6261 -170484 Nphs2 nephrosis 2, podocin Novel U 0.006569700854032562 -0.19593335320117614 1.0 6262 -195208 Dcdc2a doublecortin domain containing 2a Novel U 0.006567282564196253 -0.19595840176780363 1.0 6263 -73389 Hbp1 high mobility group box transcription factor 1 Novel U 0.006565780014802161 -0.195973965125034 1.0 6264 -18769 Pkig protein kinase inhibitor, gamma Novel U 0.006562378720897279 -0.19600919561548924 1.0 6265 -17125 Smad1 SMAD family member 1 Novel U 0.006560740157610784 -0.1960261678001459 1.0 6266 -245381 Sowahd sosondowah ankyrin repeat domain family member D Novel U 0.00655974702466245 -0.19603645463857725 1.0 6267 -26456 Sema4g sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4G Novel U 0.0065551521944466375 -0.19608404773890573 1.0 6268 -100039863 Ccl27al C-C motif chemokine ligand 27A like Novel U 0.006553850328320015 -0.19609753242544875 1.0 6269 -14064 F2rl2 coagulation factor II thrombin receptor like 2 Novel U 0.00654301617607089 -0.19620975221829162 1.0 6270 -232821 Ccdc106 coiled-coil domain containing 106 Novel U 0.006540472923431119 -0.19623609514552942 1.0 6271 -53614 Reck reversion-inducing-cysteine-rich protein with kazal motifs Novel N 0.006538419159769041 -0.19625736796202736 1.0 6272 -56216 Stx1b syntaxin 1B Novel N 0.006538085922680526 -0.19626081962083566 1.0 6273 -106672 Smim29 small integral membrane protein 29 Novel U 0.006537800948834087 -0.19626377137056905 1.0 6274 -67525 Trim62 tripartite motif-containing 62 Novel U 0.006535224529492531 -0.1962904578374137 1.0 6275 -328234 Rnf182 ring finger protein 182 Novel N 0.0065341034916755495 -0.19630206951026982 1.0 6276 -259022 Or8k25 olfactory receptor family 8 subfamily K member 25 Novel U 0.006533569132628736 -0.19630760438371064 1.0 6277 -75329 Atf7ip2 activating transcription factor 7 interacting protein 2 Novel U 0.006528567539412428 -0.1963594107218266 1.0 6278 -70086 Cysltr2 cysteinyl leukotriene receptor 2 Novel U 0.006527209277036161 -0.19637347955886952 1.0 6279 -57810 Cdon cell adhesion molecule-related/down-regulated by oncogenes Novel U 0.006526217631376466 -0.19638375099201405 1.0 6280 -67948 Fbxo28 F-box protein 28 Novel U 0.006525427433677012 -0.19639193583380865 1.0 6281 -20706 Serpinb9b serine (or cysteine) peptidase inhibitor, clade B, member 9b Novel U 0.006521431892239235 -0.19643332152067478 1.0 6282 -227699 Nup188 nucleoporin 188 Novel U 0.006519686879974491 -0.19645139630034883 1.0 6283 -227449 Zcchc2 zinc finger, CCHC domain containing 2 Novel U 0.006516886829511632 -0.1964803991309964 1.0 6284 -21983 Tpbg trophoblast glycoprotein Novel U 0.006513687668133104 -0.19651353593938842 1.0 6285 -21423 Tcf3 transcription factor 3 Novel U 0.006509510690963614 -0.1965568009315993 1.0 6286 -20610 Sumo3 small ubiquitin-like modifier 3 Novel U 0.00650897191388193 -0.1965623815669 1.0 6287 -66111 Tmed3 transmembrane p24 trafficking protein 3 Novel U 0.006507239509932943 -0.1965803257500539 1.0 6288 -22403 Ccn5 cellular communication network factor 5 Novel N 0.006501403340088251 -0.19664077660545148 1.0 6289 -258929 Or6c209 olfactory receptor family 6 subfamily C member 209 Novel U 0.006500559085072477 -0.1966495213711515 1.0 6290 -230103 Npr2 natriuretic peptide receptor 2 Novel U 0.006494344400748283 -0.19671389286708474 1.0 6291 -71939 Apol6 apolipoprotein L 6 Novel U 0.0064942475795206145 -0.1967148957381781 1.0 6292 -17314 Mgmt O-6-methylguanine-DNA methyltransferase Novel U 0.006492232223494198 -0.19673577072964846 1.0 6293 -80749 Lrfn1 leucine rich repeat and fibronectin type III domain containing 1 Novel U 0.006487106027653966 -0.19678886769764697 1.0 6294 -14125 Fcer1a Fc receptor, IgE, high affinity I, alpha polypeptide Novel U 0.00648696752836351 -0.1967903022687446 1.0 6295 -17355 Aff1 AF4/FMR2 family, member 1 Novel U 0.0064849148385773756 -0.19681156396207083 1.0 6296 -108079 Prkaa2 protein kinase, AMP-activated, alpha 2 catalytic subunit Novel U 0.006484032884315514 -0.19682069921532253 1.0 6297 -668814 Gm9376 predicted gene 9376 Novel U 0.006475985840754666 -0.19690405022799345 1.0 6298 -69785 Ceacam13 CEA cell adhesion molecule 13 Novel U 0.00647425598451978 -0.19692196802200845 1.0 6299 -20481 Ski ski sarcoma viral oncogene homolog (avian) Novel U 0.006468516738669137 -0.1969814149418619 1.0 6300 -52163 Camk1 calcium/calmodulin-dependent protein kinase I Novel U 0.006468041357892443 -0.19698633892031958 1.0 6301 -67203 Nde1 nudE neurodevelopment protein 1 Novel U 0.00646408652844876 -0.19702730291368922 1.0 6302 -75050 Kif27 kinesin family member 27 Novel U 0.006463399981024099 -0.19703441414934483 1.0 6303 -69029 Smdt1 single-pass membrane protein with aspartate rich tail 1 Novel N 0.006463110677701927 -0.19703741074364556 1.0 6304 -14174 Fgf3 fibroblast growth factor 3 Novel U 0.006461384966248911 -0.19705528560614619 1.0 6305 -52858 Cdipt CDP-diacylglycerol--inositol 3-phosphatidyltransferase Novel U 0.006460240802900446 -0.19706713681249724 1.0 6306 -217737 Ahsa1 AHA1, activator of heat shock protein ATPase 1 Novel N 0.0064590223465794405 -0.19707975754301563 1.0 6307 -17174 Masp1 MBL associated serine protease 1 Novel U 0.0064588299470369915 -0.1970817504111515 1.0 6308 -432613 Trim80 tripartite motif-containing 80 Novel U 0.006457806155850868 -0.1970923548066021 1.0 6309 -258155 Or4d10 olfactory receptor family 4 subfamily D member 10 Novel U 0.006455158558341204 -0.19711977853457208 1.0 6310 -19128 Pros1 protein S (alpha) Novel N 0.0064480955268887575 -0.19719293718217185 1.0 6311 -258355 Or52e4 olfactory receptor family 52 subfamily E member 4 Novel U 0.006448043130480266 -0.1971934799024486 1.0 6312 -20788 Srebf2 sterol regulatory element binding factor 2 Novel U 0.0064440706308669495 -0.19723462692285446 1.0 6313 -18441 P2ry1 purinergic receptor P2Y, G-protein coupled 1 Novel U 0.006443951050045635 -0.19723586553707062 1.0 6314 -226304 Npbwr1 neuropeptides B/W receptor 1 Novel U 0.006443457317880835 -0.197240979598603 1.0 6315 -73626 1810009J06Rik RIKEN cDNA 1810009J06 gene Novel U 0.00643871562191421 -0.1972900939295505 1.0 6316 -12283 Cab39 calcium binding protein 39 Novel U 0.006433519282866313 -0.19734391743858815 1.0 6317 -626215 Ccdc196 coiled-coil domain containing 196 Novel U 0.00643332253268931 -0.1973459553704537 1.0 6318 -258814 Or5l13 olfactory receptor family 5 subfamily L member 13 Novel U 0.006429642892351374 -0.1973840689641124 1.0 6319 -22230 Ufd1 ubiquitin recognition factor in ER-associated degradation 1 Novel U 0.006427514385557745 -0.19740611596750993 1.0 6320 -63953 Dusp10 dual specificity phosphatase 10 Novel U 0.0064206859919678306 -0.19747684424384293 1.0 6321 -232413 Clec12a C-type lectin domain family 12, member a Novel U 0.006419319323770407 -0.19749100014810503 1.0 6322 -193670 Rnf185 ring finger protein 185 Novel U 0.006418274128460908 -0.19750182624676188 1.0 6323 -18770 Pklr pyruvate kinase liver and red blood cell Novel N 0.006417577400987352 -0.19750904292702928 1.0 6324 -67220 Plekho1 pleckstrin homology domain containing, family O member 1 Novel U 0.0064155835475980996 -0.19752969519489078 1.0 6325 -73658 Spns1 SPNS lysolipid transporter 1, lysophospholipid Novel U 0.0064117505549010625 -0.1975693972072438 1.0 6326 -56226 Espn espin Novel U 0.006411039491495585 -0.19757676237862282 1.0 6327 -71330 Rcbtb1 regulator of chromosome condensation (RCC1) and BTB (POZ) domain containing protein 1 Novel U 0.006410441778353694 -0.19758295347169777 1.0 6328 -72560 Naalad2 N-acetylated alpha-linked acidic dipeptidase 2 Novel U 0.006407878942280592 -0.19760949924349425 1.0 6329 -214305 Hhipl1 hedgehog interacting protein-like 1 Novel U 0.006406028980245926 -0.19762866108943508 1.0 6330 -59041 Stk25 serine/threonine kinase 25 (yeast) Novel U 0.006405002446260778 -0.19763929389470777 1.0 6331 -381944 Usp17lb ubiquitin specific peptidase 17-like B Novel U 0.006402254790699051 -0.19766775402069184 1.0 6332 -20878 Aurka aurora kinase A Novel U 0.006399443872343742 -0.19769686942061218 1.0 6333 -270151 Nlrx1 NLR family member X1 Novel U 0.006399000885356328 -0.19770145786526538 1.0 6334 -24127 Xrn1 5'-3' exoribonuclease 1 Novel N 0.006396219052260687 -0.1977302720010222 1.0 6335 -258431 Or8g23 olfactory receptor family 8 subfamily G member 23 Novel U 0.006395641318398942 -0.19773625614937015 1.0 6336 -15957 Ifit1 interferon-induced protein with tetratricopeptide repeats 1 Novel U 0.006394170757224941 -0.1977514881736684 1.0 6337 -68338 Golt1a golgi transport 1A Novel U 0.0063928628569840116 -0.19776503536136902 1.0 6338 -171225 Vmn1r226 vomeronasal 1 receptor 226 Novel U 0.006392793314642807 -0.19776575567865312 1.0 6339 -66128 Mrps36 mitochondrial ribosomal protein S36 Novel U 0.006392600018796069 -0.19776775783067937 1.0 6340 -17716 ND1 NADH dehydrogenase subunit 1 Novel N 0.006391544244127671 -0.19777869350998792 1.0 6341 -108058 Camk2d calcium/calmodulin-dependent protein kinase II, delta Novel U 0.006386442340741941 -0.1978315388575413 1.0 6342 -19876 Robo1 roundabout guidance receptor 1 Novel U 0.006382616039235809 -0.1978711715627589 1.0 6343 -207798 Gramd1c GRAM domain containing 1C Novel U 0.006379970291368725 -0.19789857613219192 1.0 6344 -18791 Plat plasminogen activator, tissue Novel U 0.006377609710549717 -0.19792302695071523 1.0 6345 -637898 Vmn2r60 vomeronasal 2, receptor 60 Novel U 0.0063745462827535385 -0.1979547578351233 1.0 6346 -224703 Marchf2 membrane associated ring-CH-type finger 2 Novel U 0.0063743743375265 -0.1979565388381326 1.0 6347 -14803 Grid1 glutamate receptor, ionotropic, delta 1 Novel U 0.006374335583943445 -0.19795694024647192 1.0 6348 -75901 Dcp1a decapping mRNA 1A Novel N 0.006372309928566716 -0.19797792191827424 1.0 6349 -258871 Or8c20 olfactory receptor family 8 subfamily C member 20 Novel U 0.006369368069866237 -0.1980083935939854 1.0 6350 -69047 Atp2c2 ATPase, Ca++ transporting, type 2C, member 2 Novel U 0.006366583253823111 -0.19803723862701422 1.0 6351 -56860 Or52b1 olfactory receptor family 52 subfamily B member 1 Novel U 0.006365741677353135 -0.19804595564842487 1.0 6352 -13548 Dyrk1a dual-specificity tyrosine phosphorylation regulated kinase 1a Novel U 0.0063631366377497065 -0.19807293856300115 1.0 6353 -217138 Prr15l proline rich 15-like Novel U 0.0063628835833142135 -0.19807555969252527 1.0 6354 -258808 Or51v14 olfactory receptor family 51 subfamily V member 14 Novel U 0.006361033339762354 -0.19809472445441192 1.0 6355 -18127 Nos3 nitric oxide synthase 3, endothelial cell Novel U 0.006352201973574536 -0.19818619945506982 1.0 6356 -27999 Fam3c FAM3 metabolism regulating signaling molecule C Novel U 0.006351427721627381 -0.19819421913128632 1.0 6357 -16157 Il11ra1 interleukin 11 receptor subunit alpha 1 Novel U 0.006349958726219192 -0.1982094349374337 1.0 6358 -57808 Rpl35a ribosomal protein L35A Novel U 0.0063476459875108915 -0.1982333902089471 1.0 6359 -677296 Fcrl6 Fc receptor-like 6 Novel U 0.006346591487960853 -0.19824431268062156 1.0 6360 -69456 Commd10 COMM domain containing 10 Novel U 0.006345691906410127 -0.19825363051675182 1.0 6361 -79401 Spz1 spermatogenic leucine zipper 1 Novel U 0.006344815375949359 -0.1982627095904501 1.0 6362 -15504 Dnajb3 DnaJ heat shock protein family (Hsp40) member B3 Novel U 0.0063391333422637515 -0.1983215639085788 1.0 6363 -16796 Lasp1 LIM and SH3 protein 1 Novel U 0.00633730066669973 -0.198340546701825 1.0 6364 -100042891 Vmn2r47 vomeronasal 2, receptor 47 Novel U 0.006337204483437733 -0.1983415429648909 1.0 6365 -12827 Col4a2 collagen, type IV, alpha 2 Novel U 0.0063328801495003365 -0.19838633427365962 1.0 6366 -20132 Rrh retinal pigment epithelium derived rhodopsin homolog Novel U 0.006328668984948291 -0.19842995337765512 1.0 6367 -20867 Stip1 stress-induced phosphoprotein 1 Novel U 0.006326582243681962 -0.19845156777509387 1.0 6368 -214133 Tet2 tet methylcytosine dioxygenase 2 Novel U 0.006326153902678885 -0.19845600451712278 1.0 6369 -19655 Rbmx RNA binding motif protein, X chromosome Novel U 0.006325198425573206 -0.19846590131757377 1.0 6370 -14751 Gpi1 glucose-6-phosphate isomerase 1 Novel U 0.006323694346514143 -0.1984814805190236 1.0 6371 -13711 Elf5 E74-like factor 5 Novel U 0.006321107305468608 -0.19850827700512888 1.0 6372 -192167 Nlgn1 neuroligin 1 Novel U 0.006320965007065348 -0.19850975092731202 1.0 6373 -258267 Or10k2 olfactory receptor family 10 subfamily K member 2 Novel U 0.006319025798028009 -0.19852983719077275 1.0 6374 -56460 Pkp3 plakophilin 3 Novel U 0.006318881135224283 -0.19853133560333816 1.0 6375 -97541 Qars1 glutaminyl-tRNA synthetase 1 Novel U 0.00631885921279509 -0.1985315626751391 1.0 6376 -11461 Actb actin, beta Novel U 0.006317344364744612 -0.19854725342144802 1.0 6377 -432516 Myo1a myosin IA Novel U 0.0063141606027628605 -0.19858023072339448 1.0 6378 -29867 Cabp1 calcium binding protein 1 Novel U 0.00631202409253135 -0.19860236062613845 1.0 6379 -258736 Or9q2 olfactory receptor family 9 subfamily Q member 2 Novel U 0.006310614978306069 -0.19861695618496175 1.0 6380 -69524 Esam endothelial cell-specific adhesion molecule Novel U 0.006307709192609739 -0.1986470542176818 1.0 6381 -224572 Vmn2r102 vomeronasal 2, receptor 102 Novel U 0.006306578342590454 -0.19865876752500689 1.0 6382 -102866 Pls3 plastin 3 (T-isoform) Novel N 0.006306456211566455 -0.1986600325541386 1.0 6383 -17129 Smad5 SMAD family member 5 Novel U 0.0063062154863440315 -0.19866252597807907 1.0 6384 -625131 Vmn2r87 vomeronasal 2, receptor 87 Novel U 0.006305803121516822 -0.19866679723940353 1.0 6385 -434017 Vmn1r20 vomeronasal 1 receptor 20 Novel U 0.006304133037121488 -0.19868409591866934 1.0 6386 -72016 Tedc2 tubulin epsilon and delta complex 2 Novel U 0.006300380181651279 -0.1987229678722613 1.0 6387 -432763 Prr7 proline rich 7 (synaptic) Novel N 0.006292014512073488 -0.19880961920274146 1.0 6388 -21405 Hnf1a HNF1 homeobox A Novel U 0.006291653476796737 -0.19881335879426965 1.0 6389 -13528 Dtnb dystrobrevin, beta Novel U 0.0062905187212491005 -0.198825112554929 1.0 6390 -15983 Ifrd2 interferon-related developmental regulator 2 Novel N 0.006289126688172646 -0.19883953118777428 1.0 6391 -20877 Aurkb aurora kinase B Novel U 0.0062873245738023715 -0.1988581974291803 1.0 6392 -14943 Gzmf granzyme F Novel U 0.00628577571713489 -0.19887424043562613 1.0 6393 -13537 Dusp2 dual specificity phosphatase 2 Novel N 0.006285354271387328 -0.1988786057568251 1.0 6394 -19663 Rbpms RNA binding protein gene with multiple splicing Novel N 0.006285342427730252 -0.19887872843303578 1.0 6395 -268291 Rnf217 ring finger protein 217 Novel U 0.006284228970814474 -0.19889026158316644 1.0 6396 -233900 Rnf40 ring finger protein 40 Novel N 0.006282138817135975 -0.19891191132625827 1.0 6397 -74468 Hyal5 hyaluronoglucosaminidase 5 Novel U 0.0062804900055460034 -0.19892898966250538 1.0 6398 -68292 Stt3b STT3, subunit of the oligosaccharyltransferase complex, homolog B (S. cerevisiae) Novel U 0.006279902329398817 -0.19893507679271913 1.0 6399 -216874 Camta2 calmodulin binding transcription activator 2 Novel N 0.00627116176387848 -0.19902561128304816 1.0 6400 -100294583 Alkal2 ALK and LTK ligand 2 Novel U 0.0062702040422661035 -0.19903553133202576 1.0 6401 -78913 Ltn1 listerin E3 ubiquitin protein ligase 1 Novel U 0.006269506082229019 -0.1990427607791457 1.0 6402 -69587 Pcgf3 polycomb group ring finger 3 Novel U 0.006262976734560858 -0.19911039154765178 1.0 6403 -24088 Tlr2 toll-like receptor 2 Novel U 0.006258870761971242 -0.19915292107675842 1.0 6404 -19042 Ppm1a protein phosphatase 1A, magnesium dependent, alpha isoform Novel U 0.006258800710387853 -0.19915364666875637 1.0 6405 -64139 Ctsm cathepsin M Novel U 0.006258709856616705 -0.19915458772913125 1.0 6406 -58799 Crbn cereblon Novel U 0.006257401531298447 -0.19916813931976887 1.0 6407 -93686 Rbfox2 RNA binding protein, fox-1 homolog (C. elegans) 2 Novel U 0.0062571854335770295 -0.1991703776528635 1.0 6408 -16493 Kcna5 potassium voltage-gated channel, shaker-related subfamily, member 5 Novel U 0.00625710715597042 -0.19917118844973955 1.0 6409 -384059 Tlr12 toll-like receptor 12 Novel U 0.006255281022231331 -0.19919010348297808 1.0 6410 -258085 Or5be3 olfactory receptor family 5 subfamily BE member 3 Novel U 0.0062550608925677036 -0.19919238357879757 1.0 6411 -15950 Ifi203 interferon activated gene 203 Novel U 0.006253590695760114 -0.19920761182900046 1.0 6412 -100312473 Vmn1r86 vomeronasal 1 receptor 86 Novel U 0.006250662624330944 -0.19923794069660863 1.0 6413 -21990 Tph1 tryptophan hydroxylase 1 Novel U 0.0062502840505164565 -0.19924186195173416 1.0 6414 -258266 Or10u3 olfactory receptor family 10 subfamily U member 3 Novel U 0.006247582568608837 -0.19926984381252685 1.0 6415 -18019 Nfatc2 nuclear factor of activated T cells, cytoplasmic, calcineurin dependent 2 Novel U 0.006247353868228852 -0.19927221268354464 1.0 6416 -74277 Chic2 cysteine-rich hydrophobic domain 2 Novel U 0.006245107398669525 -0.19929548154139143 1.0 6417 -67434 Ankrd33b ankyrin repeat domain 33B Novel U 0.006242686998703106 -0.1993205519646772 1.0 6418 -223691 Eif3l eukaryotic translation initiation factor 3, subunit L Novel U 0.006242476120777423 -0.1993227362312992 1.0 6419 -258538 Or6c205 olfactory receptor family 6 subfamily C member 205 Novel U 0.0062418818370175745 -0.1993288918029477 1.0 6420 -80860 Ghdc GH3 domain containing Novel U 0.006241180150984156 -0.19933615984381514 1.0 6421 -54339 Tes3-ps testis derived transcript 3, pseudogene Novel U 0.006238739920495804 -0.19936143567099524 1.0 6422 -12304 Pdia4 protein disulfide isomerase associated 4 Novel U 0.0062380293520931775 -0.19936879571515098 1.0 6423 -258373 Or11l3 olfactory receptor family 11 subfamily L member 3 Novel U 0.006237704270181174 -0.19937216290290904 1.0 6424 -66257 Nicn1 nicolin 1 Novel U 0.0062352055800731524 -0.19939804425290789 1.0 6425 -19143 St14 suppression of tumorigenicity 14 (colon carcinoma) Novel U 0.006233042177539468 -0.19942045270523379 1.0 6426 -11928 Atp1a1 ATPase, Na+/K+ transporting, alpha 1 polypeptide Novel U 0.006231896443855057 -0.19943232017707294 1.0 6427 -19317 Qki quaking, KH domain containing RNA binding Novel N 0.006231588899314514 -0.1994355057133139 1.0 6428 -241633 Atp8b4 ATPase, class I, type 8B, member 4 Novel U 0.006224787819639907 -0.19950595107301003 1.0 6429 -107182 Btaf1 B-TFIID TATA-box binding protein associated factor 1 Novel U 0.006222897870512126 -0.19952552710394686 1.0 6430 -211228 Lrrc25 leucine rich repeat containing 25 Novel U 0.006222023445525003 -0.1995345843692183 1.0 6431 -620697 Vmn2r68 vomeronasal 2, receptor 68 Novel U 0.006221431763769148 -0.19954071298939496 1.0 6432 -100041139 Gm3159 predicted gene 3159 Novel U 0.00621578476915479 -0.19959920437397552 1.0 6433 -14652 Glp1r glucagon-like peptide 1 receptor Novel U 0.006215162296567739 -0.19960565192456953 1.0 6434 -66326 Dnajc5b DnaJ heat shock protein family (Hsp40) member C5 beta Novel U 0.006214794206669338 -0.19960946458763687 1.0 6435 -258316 Or4k15 olfactory receptor family 4 subfamily K member 15 Novel U 0.006214516423395014 -0.19961234185766066 1.0 6436 -23922 Jtb jumping translocation breakpoint Novel U 0.006213522058143658 -0.1996226414602462 1.0 6437 -16918 Mycl v-myc avian myelocytomatosis viral oncogene lung carcinoma derived Novel U 0.0062090192061498815 -0.19966928185317445 1.0 6438 -100042159 Btbd35f16 BTB domain containing 35, family member 16 Novel U 0.006207905585098103 -0.19968081670342044 1.0 6439 -18314 Or10a4 olfactory receptor family 10 subfamily A member 4 Novel U 0.006205418050417702 -0.19970658250586676 1.0 6440 -628900 Serpina3i serine (or cysteine) peptidase inhibitor, clade A, member 3I Novel U 0.006199365844407313 -0.1997692710567668 1.0 6441 -404323 Or5al6 olfactory receptor family 5 subfamily AL member 6 Novel U 0.006196008857423154 -0.19980404261759374 1.0 6442 -238217 Rpl10l ribosomal protein L10-like Novel N 0.006195778972104594 -0.1998064237621663 1.0 6443 -101056073 Zfp990 zinc finger protein 990 Novel U 0.00619327499667939 -0.1998323598573068 1.0 6444 -100503609 Lnp1 leukemia NUP98 fusion partner 1 Novel U 0.006193149245501531 -0.19983366238387323 1.0 6445 -382243 Gm10439 predicted gene 10439 Novel U 0.006192562320718861 -0.19983974173147803 1.0 6446 -258292 Or2a12 olfactory receptor family 2 subfamily A member 12 Novel U 0.006189854627284238 -0.19986778793106322 1.0 6447 -628398 Ighv6-4 immunoglobulin heavy variable V6-4 Novel U 0.006184478076645208 -0.1999234780658377 1.0 6448 -258737 Or4f14d olfactory receptor family 4 subfamily F member 14D Novel U 0.006183496484866844 -0.1999336453612099 1.0 6449 -382053 Ces3a carboxylesterase 3A Novel U 0.006182113856621532 -0.19994796657912342 1.0 6450 -13418 Dnajc1 DnaJ heat shock protein family (Hsp40) member C1 Novel U 0.006176025132132364 -0.20001103338722614 1.0 6451 -107817 Jmjd6 jumonji domain containing 6 Novel U 0.006173536550321366 -0.20003681003581675 1.0 6452 -74268 Aven apoptosis, caspase activation inhibitor Novel N 0.006171088567658773 -0.2000621661597628 1.0 6453 -28010 Miip migration and invasion inhibitory protein Novel U 0.006170349100057087 -0.20006982554087238 1.0 6454 -68718 Rnf166 ring finger protein 166 Novel U 0.006169596979118764 -0.20007761598482687 1.0 6455 -105245665 Gm3542 predicted gene 3542 Novel U 0.006169438880413436 -0.20007925356601944 1.0 6456 -73656 Ms4a6c membrane-spanning 4-domains, subfamily A, member 6C Novel U 0.006168510634129613 -0.20008886831051284 1.0 6457 -19951 Rpl32 ribosomal protein L32 Novel U 0.006166368679940194 -0.2001110546015939 1.0 6458 -22003 Tpm1 tropomyosin 1, alpha Novel U 0.006166172767261139 -0.20011308385868326 1.0 6459 -74450 Pank2 pantothenate kinase 2 Novel U 0.006163255814908031 -0.20014329755526708 1.0 6460 -77254 Yif1b Yip1 interacting factor homolog B (S. cerevisiae) Novel N 0.0061613037513566695 -0.2001635169653615 1.0 6461 -207592 Tbc1d16 TBC1 domain family, member 16 Novel U 0.006160468213064917 -0.2001721714435206 1.0 6462 -241308 Ralgps1 Ral GEF with PH domain and SH3 binding motif 1 Novel U 0.006157856285922262 -0.20019922569900175 1.0 6463 -235416 Lman1l lectin, mannose-binding 1 like Novel U 0.006156032139850755 -0.20021812014404486 1.0 6464 -107589 Mylk myosin, light polypeptide kinase Novel U 0.006155009486931374 -0.2002287127493659 1.0 6465 -70247 Psmd1 proteasome (prosome, macropain) 26S subunit, non-ATPase, 1 Novel U 0.006153154591521577 -0.20024792569504418 1.0 6466 -257963 Or7e166 olfactory receptor family 7 subfamily E member 166 Novel U 0.006150283886761915 -0.2002776603605754 1.0 6467 -101214 Tra2a transformer 2 alpha Novel N 0.006149883035502544 -0.2002818123647427 1.0 6468 -26388 Ifi202b interferon activated gene 202B Novel U 0.006147850979792601 -0.20030286033098604 1.0 6469 -381534 Ube2u ubiquitin-conjugating enzyme E2U (putative) Novel U 0.00614545809186266 -0.20032764578550244 1.0 6470 -115488204 Smim32 small integral membrane protein 32 Novel U 0.006144779210001105 -0.20033467762150736 1.0 6471 -212986 Scfd2 Sec1 family domain containing 2 Novel U 0.006143286536770856 -0.20035013868175733 1.0 6472 -320706 Mtcl2 microtubule crosslinking factor 2 Novel U 0.006136679437933569 -0.20041857479431727 1.0 6473 -67878 Tmem33 transmembrane protein 33 Novel N 0.006136005687031482 -0.20042555348401267 1.0 6474 -19222 Ptgir prostaglandin I receptor (IP) Novel N 0.006135596324090891 -0.20042979365189428 1.0 6475 -12175 Bnip2 BCL2/adenovirus E1B interacting protein 2 Novel U 0.006134765794429824 -0.20043839625082138 1.0 6476 -64058 Perp PERP, TP53 apoptosis effector Novel U 0.006134742615201722 -0.2004386363405041 1.0 6477 -333670 Gm867 predicted gene 867 Novel U 0.006131793463454453 -0.20046918355735419 1.0 6478 -258424 Or10g3 olfactory receptor family 10 subfamily G member 3 Novel U 0.0061313771046955165 -0.20047349618769217 1.0 6479 -231798 Lrch4 leucine-rich repeats and calponin homology (CH) domain containing 4 Novel N 0.0061292379881119925 -0.20049565308694464 1.0 6480 -11806 Apoa1 apolipoprotein A-I Novel U 0.006121246229635528 -0.200578431458529 1.0 6481 -231637 Ssh1 slingshot protein phosphatase 1 Novel U 0.006121229411843785 -0.200578605656663 1.0 6482 -114570 Crip3 cysteine-rich protein 3 Novel U 0.0061201217340302655 -0.20059007894704248 1.0 6483 -19087 Prkar2a protein kinase, cAMP dependent regulatory, type II alpha Novel U 0.006118815413927499 -0.20060360976772396 1.0 6484 -223272 Itgbl1 integrin, beta-like 1 Novel U 0.006115553919891346 -0.2006373922157346 1.0 6485 -71891 Cdadc1 cytidine and dCMP deaminase domain containing 1 Novel N 0.006115126349296231 -0.20064182097790315 1.0 6486 -18322 Or1m1 olfactory receptor family 1 subfamily M member 1 Novel U 0.006114933414588644 -0.20064381938926198 1.0 6487 -238377 Gpr68 G protein-coupled receptor 68 Novel N 0.006113776371636381 -0.2006558040021258 1.0 6488 -98932 Myl9 myosin, light polypeptide 9, regulatory Novel U 0.006113173070941112 -0.20066205297089496 1.0 6489 -15369 Hmox2 heme oxygenase 2 Novel N 0.006110380464703124 -0.200690978694506 1.0 6490 -17979 Ncoa3 nuclear receptor coactivator 3 Novel U 0.006108220830637336 -0.2007133481131653 1.0 6491 -68018 Cert1 ceramide transporter 1 Novel U 0.0061081889379643725 -0.20071367845642343 1.0 6492 -12323 Camk2b calcium/calmodulin-dependent protein kinase II, beta Novel U 0.006104382693412768 -0.20075310341236544 1.0 6493 -213491 Szrd1 SUZ RNA binding domain containing 1 Novel U 0.006103270006527607 -0.2007646285865443 1.0 6494 -258391 Or4k35 olfactory receptor family 4 subfamily K member 35 Novel U 0.0061028090473293425 -0.20076940318676673 1.0 6495 -16867 Lhcgr luteinizing hormone/choriogonadotropin receptor Novel N 0.006102515780248964 -0.20077244083754467 1.0 6496 -66996 Ceacam11 CEA cell adhesion molecule 11 Novel U 0.006099802356745757 -0.20080054638899186 1.0 6497 -18643 Pfn1 profilin 1 Novel U 0.006096728354296229 -0.20083238680531168 1.0 6498 -624765 Vmn2r80 vomeronasal 2, receptor 80 Novel U 0.006096106688002369 -0.2008388260043473 1.0 6499 -107849 Prl2c5 prolactin family 2, subfamily c, member 5 Novel U 0.006094600284052557 -0.20085442928693908 1.0 6500 -107771 Bmyc brain expressed myelocytomatosis oncogene Novel U 0.006092034629343863 -0.2008810042540704 1.0 6501 -319801 Tigar Trp53 induced glycolysis regulatory phosphatase Novel U 0.006091345913035415 -0.20088813795495297 1.0 6502 -93836 Rnf111 ring finger 111 Novel N 0.006090839909920807 -0.20089337911858013 1.0 6503 -13713 Elk3 ELK3, member of ETS oncogene family Novel N 0.006086864009596805 -0.2009345613634355 1.0 6504 -71790 Anxa9 annexin A9 Novel N 0.006084327923915093 -0.2009608300555573 1.0 6505 -54485 Dll4 delta like canonical Notch ligand 4 Novel U 0.006083989090239474 -0.2009643396836308 1.0 6506 -329502 Pla2g4e phospholipase A2, group IVE Novel U 0.006081601832338618 -0.200989066822491 1.0 6507 -18383 Tnfrsf11b tumor necrosis factor receptor superfamily, member 11b (osteoprotegerin) Novel U 0.006081317043651175 -0.2009920166543536 1.0 6508 -16578 Kif9 kinesin family member 9 Novel U 0.006080845382986246 -0.20099690210001595 1.0 6509 -14715 Gnrhr gonadotropin releasing hormone receptor Novel N 0.006079336503197177 -0.20101253102726938 1.0 6510 -67151 Psmd9 proteasome (prosome, macropain) 26S subunit, non-ATPase, 9 Novel N 0.0060772203511474275 -0.20103445006063592 1.0 6511 -67158 Sft2d3 SFT2 domain containing 3 Novel U 0.006072195928970571 -0.2010864928603748 1.0 6512 -268390 Ahsa2 AHA1, activator of heat shock protein ATPase 2 Novel U 0.006068204811002375 -0.20112783272908846 1.0 6513 -258231 Or5b116 olfactory receptor family 5 subfamily B member 116 Novel U 0.006067777895466117 -0.2011322547061789 1.0 6514 -103655 Sec14l4 SEC14-like lipid binding 4 Novel U 0.006066668651141311 -0.2011437442224308 1.0 6515 -232345 A2m alpha-2-macroglobulin Novel U 0.006066029824432634 -0.201150361168479 1.0 6516 -213556 Plekhh2 pleckstrin homology domain containing, family H (with MyTH4 domain) member 2 Novel U 0.006062496301702737 -0.20118696128075697 1.0 6517 -69635 Dapk1 death associated protein kinase 1 Novel U 0.006062204858383838 -0.20118998004107344 1.0 6518 -12096 Bglap bone gamma carboxyglutamate protein Novel U 0.006061166572508948 -0.20120073457203375 1.0 6519 -59093 Pcbp3 poly(rC) binding protein 3 Novel U 0.006058444103365792 -0.2012289338179222 1.0 6520 -214048 Larp1b La ribonucleoprotein 1B Novel U 0.006057744974921181 -0.2012361753673689 1.0 6521 -258956 Or13a22 olfactory receptor family 13 subfamily A member 22 Novel U 0.006056207103520686 -0.2012521045887804 1.0 6522 -210973 Kbtbd2 kelch repeat and BTB (POZ) domain containing 2 Novel U 0.006052859858931184 -0.20128677523820374 1.0 6523 -81909 Zfpl1 zinc finger like protein 1 Novel U 0.006051632183508997 -0.20129949145986908 1.0 6524 -14917 Gucy2c guanylate cyclase 2c Novel U 0.006046739721267746 -0.20135016742293294 1.0 6525 -100900 Hscb HscB iron-sulfur cluster co-chaperone Novel U 0.006045870951812237 -0.20135916610839383 1.0 6526 -195727 Nhs NHS actin remodeling regulator Novel N 0.0060444275740084916 -0.20137411656823653 1.0 6527 -67847 Sncaip synuclein, alpha interacting protein (synphilin) Novel U 0.006043570842377451 -0.20138299056630732 1.0 6528 -353258 Ltv1 LTV1 ribosome biogenesis factor Novel U 0.0060431371121595304 -0.2013874831296464 1.0 6529 -328580 Tubgcp6 tubulin, gamma complex component 6 Novel U 0.00604007925694037 -0.2014191562934849 1.0 6530 -383258 Vmn2r118 vomeronasal 2, receptor 118 Novel U 0.006032960453858571 -0.20149289262178816 1.0 6531 -14913 Guca1a guanylate cyclase activator 1a (retina) Novel N 0.006031825519341147 -0.20150464823621064 1.0 6532 -20239 Atxn2 ataxin 2 Novel U 0.006030566582035951 -0.20151768826743255 1.0 6533 -14635 Galk1 galactokinase 1 Novel N 0.006029089501752405 -0.20153298781645312 1.0 6534 -258741 Or8g21 olfactory receptor family 8 subfamily G member 21 Novel U 0.006025222939741977 -0.20157303753865072 1.0 6535 -624866 Lekr1 leucine, glutamate and lysine rich 1 Novel U 0.006025069563245717 -0.20157462620735703 1.0 6536 -68337 Crip2 cysteine rich protein 2 Novel U 0.006024886342795885 -0.20157652399875334 1.0 6537 -74237 Tubgcp2 tubulin, gamma complex component 2 Novel U 0.00602412219952765 -0.20158443896960584 1.0 6538 -277010 Marveld1 MARVEL (membrane-associating) domain containing 1 Novel U 0.006018736135047236 -0.20164022764843664 1.0 6539 -229949 Ak5 adenylate kinase 5 Novel N 0.006010566874764109 -0.2017248445778993 1.0 6540 -18811 Prl2c2 prolactin family 2, subfamily c, member 2 Novel U 0.006007393217188025 -0.20175771721874403 1.0 6541 -74131 Sash3 SAM and SH3 domain containing 3 Novel U 0.006002172198988591 -0.201811796353622 1.0 6542 -103694 Tmed4 transmembrane p24 trafficking protein 4 Novel U 0.005987198628918658 -0.20196689210017682 1.0 6543 -15184 Hdac5 histone deacetylase 5 Novel U 0.005986841410449254 -0.20197059215733995 1.0 6544 -19385 Ranbp1 RAN binding protein 1 Novel N 0.005983354655052518 -0.20200670785511843 1.0 6545 -100042810 Vmn2r45 vomeronasal 2, receptor 45 Novel U 0.005981842056076112 -0.20202237530559203 1.0 6546 -110109 Nop2 NOP2 nucleolar protein Novel N 0.005981384255203654 -0.20202711719197958 1.0 6547 -50762 Fbxo6 F-box protein 6 Novel U 0.005977773734063852 -0.20206451485125615 1.0 6548 -22310 Vmn2r42 vomeronasal 2, receptor 42 Novel U 0.0059770818787478084 -0.2020716810658762 1.0 6549 -258766 Or5aq7 olfactory receptor family 5 subfamily AQ member 7 Novel U 0.005972621234530328 -0.2021178842720451 1.0 6550 -13617 Ednra endothelin receptor type A Novel U 0.0059687999709213515 -0.2021574647948896 1.0 6551 -276770 Eif5a eukaryotic translation initiation factor 5A Novel U 0.005968380875401011 -0.20216180577251228 1.0 6552 -215494 Pomgnt2 protein O-linked mannose beta 1,4-N-acetylglucosaminyltransferase 2 Novel N 0.00596396778989218 -0.20220751636714038 1.0 6553 -21907 Nr2e1 nuclear receptor subfamily 2, group E, member 1 Novel N 0.005963535241637173 -0.2022119966877465 1.0 6554 -11630 Crybg1 crystallin beta-gamma domain containing 1 Novel U 0.005963148007331288 -0.2022160076479572 1.0 6555 -68728 Trp53inp2 transformation related protein 53 inducible nuclear protein 2 Novel U 0.0059621665162888126 -0.20222617389991038 1.0 6556 -70008 Ace2 angiotensin converting enzyme 2 Novel U 0.005954722679937165 -0.20230327691213779 1.0 6557 -14260 Fmn1 formin 1 Novel U 0.005950584707252323 -0.20234613789717884 1.0 6558 -26417 Mapk3 mitogen-activated protein kinase 3 Novel U 0.0059502946222843205 -0.20234914258774142 1.0 6559 -100040771 Gm2959 predicted gene 2959 Novel U 0.005945238718814884 -0.20240151146967394 1.0 6560 -12509 Cd59a CD59a antigen Novel U 0.00594476992415545 -0.20240636722934557 1.0 6561 -404330 Or4p23 olfactory receptor family 4 subfamily P member 23 Novel U 0.005943143672474841 -0.20242321189079318 1.0 6562 -54204 Septin1 septin 1 Novel U 0.005941834557620339 -0.20243677165942128 1.0 6563 -18351 Or1ad8 olfactory receptor family 1 subfamily AD member 8 Novel U 0.005941666223230671 -0.20243851526149576 1.0 6564 -67812 Ubxn4 UBX domain protein 4 Novel U 0.005940704316196197 -0.20244847866293786 1.0 6565 -225164 Mib1 MIB E3 ubiquitin protein ligase 1 Novel U 0.0059404914453600015 -0.20245068357206142 1.0 6566 -17533 Mrc1 mannose receptor, C type 1 Novel U 0.00593389494580736 -0.20251900989757943 1.0 6567 -20655 Sod1 superoxide dismutase 1, soluble Novel U 0.005928616783994698 -0.20257368092412478 1.0 6568 -574081 Defb46 defensin beta 46 Novel U 0.005928309468090784 -0.20257686409215503 1.0 6569 -329509 1810024B03Rik RIKEN cDNA 1810024B03 gene Novel U 0.005927481051269654 -0.20258544480635557 1.0 6570 -67834 Idh3a isocitrate dehydrogenase 3 (NAD+) alpha Novel N 0.005926899245014814 -0.20259147113641734 1.0 6571 -101966 D8Ertd738e DNA segment, Chr 8, ERATO Doi 738, expressed Novel U 0.005926812045389722 -0.2025923743472675 1.0 6572 -14427 Galr1 galanin receptor 1 Novel U 0.005925190422469922 -0.20260917106416285 1.0 6573 -99349 Dnajc24 DnaJ heat shock protein family (Hsp40) member C24 Novel U 0.00592088972709185 -0.20265371752551115 1.0 6574 -18307 Or2y1b olfactory receptor family 2 subfamily Y member 1B Novel U 0.005919596088201204 -0.20266711699461434 1.0 6575 -73660 Cabp4 calcium binding protein 4 Novel U 0.00591812513687475 -0.20268235306009885 1.0 6576 -105787 Prkaa1 protein kinase, AMP-activated, alpha 1 catalytic subunit Novel U 0.005918014852409097 -0.20268349538296868 1.0 6577 -16450 Jag2 jagged 2 Novel U 0.005916752532229032 -0.20269657045389727 1.0 6578 -235472 Prtg protogenin Novel U 0.00591549582805395 -0.20270958735443087 1.0 6579 -234463 Tmem184c transmembrane protein 184C Novel U 0.005914526918927816 -0.20271962328330817 1.0 6580 -18352 Or8u8 olfactory receptor family 8 subfamily U member 8 Novel U 0.005913943362470135 -0.20272566774191345 1.0 6581 -80334 Kcnip4 Kv channel interacting protein 4 Novel U 0.005913317413161536 -0.2027321513042749 1.0 6582 -110599566 Eef1akmt4 EEF1A lysine methyltransferase 4 Novel U 0.0059127280070103965 -0.20273825635381276 1.0 6583 -64095 Gpr35 G protein-coupled receptor 35 Novel U 0.0059110050623027 -0.20275610255845633 1.0 6584 -52123 Agpat5 1-acylglycerol-3-phosphate O-acyltransferase 5 Novel U 0.005909169593213893 -0.20277511428694037 1.0 6585 -227612 Tor4a torsin family 4, member A Novel U 0.005904971997347467 -0.2028185928469363 1.0 6586 -629499 Mroh8 maestro heat-like repeat family member 8 Novel U 0.0059016150365946785 -0.20285336413605953 1.0 6587 -321019 Gpr183 G protein-coupled receptor 183 Novel U 0.005900962095827884 -0.20286012727505773 1.0 6588 -67680 Sdhb succinate dehydrogenase complex, subunit B, iron sulfur (Ip) Novel U 0.0058967158699116794 -0.20290410954351062 1.0 6589 -230796 Wdtc1 WD and tetratricopeptide repeats 1 Novel U 0.005896586828881773 -0.20290544614625636 1.0 6590 -210146 Irgq immunity-related GTPase family, Q Novel U 0.005895562001463688 -0.20291606127496353 1.0 6591 -71752 Gtf3c2 general transcription factor IIIC, polypeptide 2, beta Novel N 0.005895325192798374 -0.2029185141313342 1.0 6592 -17448 Mdh2 malate dehydrogenase 2, NAD (mitochondrial) Novel U 0.0058939861576181125 -0.2029323838137129 1.0 6593 -258969 Or4c121 olfactory receptor family 4 subfamily C member 121 Novel U 0.0058920136506122244 -0.20295281497643722 1.0 6594 -23950 Dnajb6 DnaJ heat shock protein family (Hsp40) member B6 Novel U 0.005888463827746181 -0.2029895839249896 1.0 6595 -271711 Tmem169 transmembrane protein 169 Novel U 0.005888437651956534 -0.20298985505295825 1.0 6596 -23947 Mid2 midline 2 Novel U 0.005888365871752099 -0.20299059854995616 1.0 6597 -620928 Vmn2r73 vomeronasal 2, receptor 73 Novel U 0.005887754019345691 -0.20299693609706815 1.0 6598 -70240 Ufsp1 UFM1-specific peptidase 1 Novel U 0.005886437210833086 -0.203010575556354 1.0 6599 -16201 Ilf3 interleukin enhancer binding factor 3 Novel U 0.005885505350448687 -0.20302022773558231 1.0 6600 -116939 Pnpla3 patatin-like phospholipase domain containing 3 Novel U 0.005884599467423566 -0.20302961084217722 1.0 6601 -100705 Acacb acetyl-Coenzyme A carboxylase beta Novel U 0.005881486507830372 -0.20306185477531047 1.0 6602 -28075 Desi1 desumoylating isopeptidase 1 Novel U 0.005879260447382231 -0.20308491223625455 1.0 6603 -282663 Serpinb1b serine (or cysteine) peptidase inhibitor, clade B, member 1b Novel U 0.005873708222598134 -0.20314242199804863 1.0 6604 -619326 Degs1l delta 4-desaturase, sphingolipid 1 like Novel U 0.0058702257345434146 -0.2031784934948388 1.0 6605 -21969 Top1 topoisomerase (DNA) I Novel U 0.005869841731686347 -0.2031824709838089 1.0 6606 -52637 Cisd1 CDGSH iron sulfur domain 1 Novel N 0.0058679573520489005 -0.2032019893261479 1.0 6607 -241447 Cers6 ceramide synthase 6 Novel N 0.005862960896665921 -0.20325374244675523 1.0 6608 -269152 Kif26b kinesin family member 26B Novel U 0.00586046347774673 -0.20327961062982194 1.0 6609 -66163 Mrpl4 mitochondrial ribosomal protein L4 Novel U 0.005857883439298358 -0.20330633458325598 1.0 6610 -19073 Srgn serglycin Novel U 0.005857395140404917 -0.2033113923671423 1.0 6611 -673685 Gm9603 predicted gene 9603 Novel U 0.005857261931217407 -0.2033127721435275 1.0 6612 -384703 Or52e18 olfactory receptor family 52 subfamily E member 18 Novel U 0.005856853185825691 -0.20331700591485813 1.0 6613 -67145 Tomm34 translocase of outer mitochondrial membrane 34 Novel U 0.0058552118477490905 -0.2033340068406995 1.0 6614 -140742 Sesn1 sestrin 1 Novel N 0.005853975694410745 -0.2033468108763417 1.0 6615 -218210 Nup153 nucleoporin 153 Novel U 0.005852539567800789 -0.2033616862285575 1.0 6616 -14802 Gria4 glutamate receptor, ionotropic, AMPA4 (alpha 4) Novel N 0.005851568824865367 -0.20337174115197115 1.0 6617 -64209 Herpud1 homocysteine-inducible, endoplasmic reticulum stress-inducible, ubiquitin-like domain member 1 Novel U 0.005847674776630536 -0.2034120755755776 1.0 6618 -378700 Bpifb3 BPI fold containing family B, member 3 Novel U 0.005846953910714823 -0.20341954228103537 1.0 6619 -241688 Dzank1 double zinc ribbon and ankyrin repeat domains 1 Novel U 0.005841889034833758 -0.2034720040989126 1.0 6620 -75599 Pcdh1 protocadherin 1 Novel N 0.005838431954779785 -0.20350781242046628 1.0 6621 -216505 Pik3ip1 phosphoinositide-3-kinase interacting protein 1 Novel U 0.005835332429798522 -0.2035399171983308 1.0 6622 -258812 Or8b56 olfactory receptor family 8 subfamily B member 56 Novel U 0.005831338901772156 -0.20358128203034775 1.0 6623 -18365 Or51b6 olfactory receptor family 51 subfamily B member 6 Novel U 0.005829469417079668 -0.20360064609133652 1.0 6624 -259075 Or51i2 olfactory receptor family 51 subfamily I member 2 Novel U 0.005827881374226174 -0.20361709498700892 1.0 6625 -436090 Gpr62 G protein-coupled receptor 62 Novel N 0.005823912794004029 -0.20365820141048985 1.0 6626 -18208 Ntn1 netrin 1 Novel U 0.005819994106502438 -0.20369879104681143 1.0 6627 -17951 Naip5 NLR family, apoptosis inhibitory protein 5 Novel U 0.005817657109002756 -0.2037229975900885 1.0 6628 -103554 Psme4 proteasome (prosome, macropain) activator subunit 4 Novel U 0.005817169003059808 -0.2037280533753999 1.0 6629 -195359 Trim40 tripartite motif-containing 40 Novel U 0.005814329031582548 -0.20375746970660233 1.0 6630 -77706 Abcb5 ATP-binding cassette, sub-family B member 5 Novel N 0.005806213931656889 -0.20384152564486277 1.0 6631 -57014 Htr3b 5-hydroxytryptamine (serotonin) receptor 3B Novel N 0.005804958573445167 -0.2038545286039521 1.0 6632 -11905 Serpinc1 serine (or cysteine) peptidase inhibitor, clade C (antithrombin), member 1 Novel U 0.005802953982425101 -0.20387529209184055 1.0 6633 -23957 Nr0b2 nuclear receptor subfamily 0, group B, member 2 Novel U 0.005798619516046107 -0.2039201883521063 1.0 6634 -192197 Bcas3 BCAS3 microtubule associated cell migration factor Novel N 0.005796299017087666 -0.20394422400403553 1.0 6635 -212999 Tnpo2 transportin 2 (importin 3, karyopherin beta 2b) Novel N 0.005790255601211203 -0.20400682150701732 1.0 6636 -108735 Sft2d2 SFT2 domain containing 2 Novel U 0.005788330880343692 -0.20402675770249123 1.0 6637 -329207 Rbm44 RNA binding motif protein 44 Novel U 0.005784692840515365 -0.20406444039943894 1.0 6638 -67500 Ccar1 cell division cycle and apoptosis regulator 1 Novel N 0.005784681762362732 -0.2040645551465797 1.0 6639 -66413 Psmd6 proteasome (prosome, macropain) 26S subunit, non-ATPase, 6 Novel U 0.005780503012386905 -0.2041078385014603 1.0 6640 -226691 Ifi207 interferon activated gene 207 Novel U 0.005780437003511006 -0.20410852221922696 1.0 6641 -59056 Evc EvC ciliary complex subunit 1 Novel U 0.005777603139872397 -0.20413787528563743 1.0 6642 -14853 Gspt2 G1 to S phase transition 2 Novel U 0.005770702143449775 -0.2042093555797249 1.0 6643 -74552 Nipal3 NIPA-like domain containing 3 Novel U 0.005770107409278047 -0.2042155158167248 1.0 6644 -19111 Prl6a1 prolactin family 6, subfamily a, member 1 Novel U 0.005768617793191815 -0.20423094521117754 1.0 6645 -12333 Capn1 calpain 1 Novel U 0.005759379411044007 -0.20432663606976909 1.0 6646 -381204 Naaladl1 N-acetylated alpha-linked acidic dipeptidase-like 1 Novel N 0.005754236691686894 -0.20437990418781224 1.0 6647 -170788 Crb1 crumbs family member 1, photoreceptor morphogenesis associated Novel U 0.005753722647987266 -0.20438522863555472 1.0 6648 -23938 Map2k5 mitogen-activated protein kinase kinase 5 Novel N 0.005750445341930999 -0.2044191748639499 1.0 6649 -12159 Bmp4 bone morphogenetic protein 4 Novel U 0.005749821748370304 -0.20442563402555208 1.0 6650 -258407 Or4d1 olfactory receptor family 4 subfamily D member 1 Novel U 0.0057497805058071986 -0.20442606121466494 1.0 6651 -387524 Znrf2 zinc and ring finger 2 Novel U 0.005748684802663206 -0.20443741047181108 1.0 6652 -81500 Sil1 SIL1 nucleotide exchange factor Novel N 0.005747400304759989 -0.20445071525886704 1.0 6653 -71373 Prr16 proline rich 16 Novel U 0.0057434546315882655 -0.2044915844118727 1.0 6654 -18369 Or52a5 olfactory receptor family 52 subfamily A member 5 Novel U 0.005741311370737001 -0.20451378423731423 1.0 6655 -13531 Usp17la ubiquitin specific peptidase 17-like A Novel U 0.005741081033837519 -0.20451617005934714 1.0 6656 -230770 Tmem39b transmembrane protein 39b Novel U 0.005739347383953724 -0.2045341271478528 1.0 6657 -258711 Or10aa3 olfactory receptor family 10 subfamily AA member 3 Novel U 0.005737348958676869 -0.20455482677117576 1.0 6658 -16628 Klra10 killer cell lectin-like receptor subfamily A, member 10 Novel U 0.005737343122311241 -0.2045548872240591 1.0 6659 -244058 Rgma repulsive guidance molecule family member A Novel N 0.005733765454435511 -0.20459194459030638 1.0 6660 -80891 Fcrl2 Fc receptor like 2 Novel U 0.0057336599394612235 -0.20459303751094146 1.0 6661 -102636989 Acte1 actin, epsilon 1 Novel U 0.005731364420446444 -0.20461681442143542 1.0 6662 -83379 Klb klotho beta Novel U 0.005724637851816873 -0.20468648799817646 1.0 6663 -213438 P2ry10b purinergic receptor P2Y, G-protein coupled 10B Novel U 0.005723799859400809 -0.20469516789607456 1.0 6664 -258383 Or6z6 olfactory receptor family 6 subfamily Z member 6 Novel U 0.005718368366597856 -0.20475142711997685 1.0 6665 -210711 Mcmbp minichromosome maintenance complex binding protein Novel U 0.0057169577814844075 -0.20476603791421147 1.0 6666 -11920 Atm ataxia telangiectasia mutated Novel U 0.005715839622584017 -0.2047776197673442 1.0 6667 -68263 Pdhb pyruvate dehydrogenase (lipoamide) beta Novel N 0.005714978331363827 -0.2047865409934895 1.0 6668 -258393 Or13ae2 olfactory receptor family 13 subfamily AE member 2 Novel U 0.005714073124287261 -0.20479591709863149 1.0 6669 -110380 Shroom2 shroom family member 2 Novel N 0.0057127018081908265 -0.20481012114567876 1.0 6670 -66864 Clec14a C-type lectin domain family 14, member a Novel U 0.005711071191063777 -0.2048270110242771 1.0 6671 -208846 Daam1 dishevelled associated activator of morphogenesis 1 Novel U 0.0057079062796772375 -0.204859793072378 1.0 6672 -19175 Psmb6 proteasome (prosome, macropain) subunit, beta type 6 Novel U 0.005704949417982991 -0.20489042014860542 1.0 6673 -667180 Vmn2r20 vomeronasal 2, receptor 20 Novel U 0.0057036573970505105 -0.20490380285895116 1.0 6674 -15277 Hk2 hexokinase 2 Novel U 0.00570328441494607 -0.20490766619532785 1.0 6675 -11450 Adipoq adiponectin, C1Q and collagen domain containing Novel U 0.005692102714304536 -0.20502348588299424 1.0 6676 -239555 Mief1 mitochondrial elongation factor 1 Novel U 0.005684383795397053 -0.20510343819129218 1.0 6677 -239408 Tmem74 transmembrane protein 74 Novel U 0.005678563171466938 -0.20516372802261756 1.0 6678 -17228 Cma1 chymase 1, mast cell Novel U 0.005677629680114652 -0.2051733970953577 1.0 6679 -383619 Aim2 absent in melanoma 2 Novel U 0.005677492674831531 -0.20517481619157646 1.0 6680 -240058 Cpne5 copine V Novel U 0.005676264050134845 -0.20518754224579586 1.0 6681 -104252 Cdc42ep2 CDC42 effector protein 2 Novel U 0.005675727583545273 -0.20519309894909527 1.0 6682 -69257 Elf2 E74-like factor 2 Novel N 0.005673914303613043 -0.20521188084302494 1.0 6683 -83669 Wdr6 WD repeat domain 6 Novel N 0.00567198377845815 -0.2052318771591167 1.0 6684 -20287 Sct secretin Novel U 0.00566881085268824 -0.20526474221993712 1.0 6685 -242838 Lrrd1 leucine rich repeats and death domain containing 1 Novel U 0.0056668431479921415 -0.20528512364049453 1.0 6686 -69408 Dnajc17 DnaJ heat shock protein family (Hsp40) member C17 Novel U 0.005662612924478994 -0.2053289401565826 1.0 6687 -75345 Slamf7 SLAM family member 7 Novel U 0.005659935428459784 -0.20535667357233164 1.0 6688 -545055 Cma2 chymase 2, mast cell Novel U 0.005659900672150175 -0.205357033577044 1.0 6689 -623121 Ifi213 interferon activated gene 213 Novel U 0.005658794903187628 -0.20536848709560787 1.0 6690 -53885 Nphp1 nephronophthisis 1 (juvenile) homolog (human) Novel U 0.0056585130050521406 -0.20537140698722836 1.0 6691 -545486 Tubb1 tubulin, beta 1 class VI Novel N 0.005648239552114066 -0.20547781907503934 1.0 6692 -77883 6030498E09Rik RIKEN cDNA 6030498E09 gene Novel U 0.005646085442875413 -0.2055001312677208 1.0 6693 -258404 Or8k33 olfactory receptor family 8 subfamily K member 33 Novel U 0.005643650113535642 -0.205525356328965 1.0 6694 -211147 Marchf11 membrane associated ring-CH-type finger 11 Novel U 0.0056419348876286 -0.2055431225825251 1.0 6695 -329628 Fat4 FAT atypical cadherin 4 Novel U 0.00564095395523477 -0.20555328304801398 1.0 6696 -21767 Tex264 testis expressed gene 264 ER-phagy receptor Novel U 0.005640336332802376 -0.2055596803608655 1.0 6697 -19060 Ppp5c protein phosphatase 5, catalytic subunit Novel N 0.005636898594029548 -0.20559528834606486 1.0 6698 -74562 Fer1l4 fer-1 like family member 4 Novel U 0.005635074868869026 -0.20561417843132582 1.0 6699 -269582 Clspn claspin Novel U 0.005633252190261441 -0.20563305767642587 1.0 6700 -20301 Ccl27a C-C motif chemokine ligand 27A Novel U 0.005630728053856673 -0.20565920259832993 1.0 6701 -404337 Or2y13 olfactory receptor family 2 subfamily Y member 14 Novel U 0.0056284652787110465 -0.2056826403489036 1.0 6702 -70291 Mkrn2os makorin, ring finger protein 2, opposite strand Novel U 0.005627959624466878 -0.2056878778989422 1.0 6703 -192231 Hexim1 hexamethylene bis-acetamide inducible 1 Novel U 0.005627820592076125 -0.20568931799187518 1.0 6704 -13063 Cycs cytochrome c, somatic Novel U 0.005627517425269878 -0.20569245818368823 1.0 6705 -72562 Pcbd2 pterin 4 alpha carbinolamine dehydratase/dimerization cofactor of hepatocyte nuclear factor 1 alpha (TCF1) 2 Novel N 0.005625719913653707 -0.2057110767499185 1.0 6706 -13193 Dcx doublecortin Novel N 0.005623115963547722 -0.20573804837951604 1.0 6707 -107035 Fbxo38 F-box protein 38 Novel U 0.005621689528846323 -0.20575282334326161 1.0 6708 -11489 Adam12 ADAM metallopeptidase domain 12 Novel U 0.0056187612779603595 -0.20578315406967737 1.0 6709 -19112 Prl8a6 prolactin family 8, subfamily a, member 6 Novel U 0.005618424383221868 -0.20578664361430385 1.0 6710 -243628 Vmn2r24 vomeronasal 2, receptor 24 Novel U 0.0056176662886569285 -0.20579449593288648 1.0 6711 -52174 Tmem222 transmembrane protein 222 Novel N 0.005614479363474158 -0.20582750599916508 1.0 6712 -17997 Nedd1 neural precursor cell expressed, developmentally down-regulated gene 1 Novel U 0.005614193896780247 -0.20583046285379641 1.0 6713 -114873 Dscaml1 DS cell adhesion molecule like 1 Novel N 0.00561115314765229 -0.20586195883330455 1.0 6714 -223922 Atf7 activating transcription factor 7 Novel N 0.0056111349846171 -0.20586214696542596 1.0 6715 -258028 Or8b42 olfactory receptor family 8 subfamily B member 42 Novel U 0.005609564974738035 -0.20587840907614202 1.0 6716 -56846 Necab3 N-terminal EF-hand calcium binding protein 3 Novel N 0.005608453321070509 -0.2058899235482866 1.0 6717 -109113 Uhrf2 ubiquitin-like, containing PHD and RING finger domains 2 Novel U 0.0056058205649959945 -0.20591719354915924 1.0 6718 -382062 AB124611 cDNA sequence AB124611 Novel U 0.005605348303928838 -0.2059220852137681 1.0 6719 -27993 Imp4 IMP4, U3 small nucleolar ribonucleoprotein Novel N 0.005604571033339276 -0.2059301361569834 1.0 6720 -66537 Pomp proteasome maturation protein Novel U 0.005603397560590015 -0.2059422909491444 1.0 6721 -76332 Cog2 component of oligomeric golgi complex 2 Novel U 0.005601560547513578 -0.2059613186702016 1.0 6722 -224273 Crybg3 beta-gamma crystallin domain containing 3 Novel U 0.00559862794331341 -0.20599169448810273 1.0 6723 -19921 Rpl19 ribosomal protein L19 Novel N 0.005595051883893691 -0.20602873519401557 1.0 6724 -69155 1810030O07Rik RIKEN cDNA 1810030O07 gene Novel U 0.005594835088266139 -0.206030980755999 1.0 6725 -239081 Tlr11 toll-like receptor 11 Novel U 0.005593767125622143 -0.20604204267795811 1.0 6726 -434110 Vmn2r38 vomeronasal 2, receptor 38 Novel U 0.005592119833925802 -0.206059105271197 1.0 6727 -100040019 Saxo3 stabilizer of axonemal microtubules 3 Novel U 0.005591288813190571 -0.20606771295665421 1.0 6728 -58992 F12 coagulation factor XII (Hageman factor) Novel U 0.005589176760354472 -0.20608958953050052 1.0 6729 -100504232 Mptx2 mucosal pentraxin 2 Novel U 0.00558482375973311 -0.20613467776783942 1.0 6730 -100041702 Gm3476 predicted gene 3476 Novel U 0.005582865714408966 -0.20615495913693963 1.0 6731 -56347 Eif3c eukaryotic translation initiation factor 3, subunit C Novel U 0.0055815026383395205 -0.20616907783405825 1.0 6732 -73862 Spmip7 sperm microtubule inner protein 7 Novel U 0.005574217111655599 -0.20624454107995152 1.0 6733 -380629 Heca hdc homolog, cell cycle regulator Novel N 0.005574060171370543 -0.20624616666226495 1.0 6734 -68968 Cdan1 codanin 1 Novel U 0.005573543426460113 -0.20625151908906011 1.0 6735 -57437 Golga7 golgin A7 Novel U 0.005570457034403938 -0.20628348783651831 1.0 6736 -16002 Igf2 insulin-like growth factor 2 Novel U 0.005568007128332251 -0.20630886388307254 1.0 6737 -70028 Dop1b DOP1 leucine zipper like protein B Novel N 0.005567761805098263 -0.2063114049330656 1.0 6738 -110606 Fntb farnesyltransferase, CAAX box, beta Novel U 0.005566603592177406 -0.20632340166442567 1.0 6739 -259279 Tubgcp3 tubulin, gamma complex component 3 Novel U 0.005565832128221159 -0.20633139246272394 1.0 6740 -258938 Or10v5 olfactory receptor family 10 subfamily V member 5 Novel U 0.005565626311581937 -0.20633352430470714 1.0 6741 -12274 C6 complement component 6 Novel N 0.0055624162596755195 -0.20636677391682903 1.0 6742 -67387 Unc50 unc-50 homolog Novel U 0.005561872235497657 -0.20637240890137953 1.0 6743 -66314 Tpd52l2 tumor protein D52-like 2 Novel U 0.005560663933637527 -0.20638492445232598 1.0 6744 -546912 Vmn2r21 vomeronasal 2, receptor 21 Novel U 0.005554275076377273 -0.2064511000258053 1.0 6745 -74039 Nfam1 Nfat activating molecule with ITAM motif 1 Novel U 0.005554061476251264 -0.2064533124888888 1.0 6746 -171205 Vmn1r8 vomeronasal 1 receptor 8 Novel U 0.0055536808740273575 -0.20645725475421237 1.0 6747 -260299 Cadm4 cell adhesion molecule 4 Novel U 0.005552935612781492 -0.20646497414569792 1.0 6748 -73834 Atp6v1d ATPase, H+ transporting, lysosomal V1 subunit D Novel U 0.005552621037363885 -0.20646823250753235 1.0 6749 -69270 Gins1 GINS complex subunit 1 Novel U 0.005552419540465737 -0.20647031960577952 1.0 6750 -258891 Or4k52 olfactory receptor family 4 subfamily K member 52 Novel U 0.005550975210875662 -0.20648527992419377 1.0 6751 -13032 Ctsc cathepsin C Novel U 0.005550940951335327 -0.20648563478338633 1.0 6752 -20356 Sema5a sema domain, seven thrombospondin repeats (type 1 and type 1-like), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 5A Novel N 0.0055468545696911115 -0.20652796139012455 1.0 6753 -20558 Slfn4 schlafen 4 Novel U 0.005545221785101303 -0.2065448737192309 1.0 6754 -75740 Egfem1 EGF-like and EMI domain containing 1 Novel U 0.005542481588527585 -0.20657325658526232 1.0 6755 -381059 Gm1604b predicted gene 1604b Novel N 0.005535070087159945 -0.20665002467278837 1.0 6756 -13143 Dapk2 death-associated protein kinase 2 Novel U 0.00553278341424663 -0.20667370995565418 1.0 6757 -68010 Bambi BMP and activin membrane-bound inhibitor Novel U 0.005532143712915889 -0.20668033596100893 1.0 6758 -665119 Sec14l5 SEC14-like lipid binding 5 Novel U 0.0055318405672978525 -0.20668347593335515 1.0 6759 -226123 Morn4 MORN repeat containing 4 Novel U 0.005531456700594367 -0.20668745201205094 1.0 6760 -19210 Ptdss1 phosphatidylserine synthase 1 Novel U 0.0055309879618911 -0.20669230719213044 1.0 6761 -19650 Rbl1 RB transcriptional corepressor like 1 Novel N 0.005530957341475946 -0.20669262435738403 1.0 6762 -14169 Fgf14 fibroblast growth factor 14 Novel N 0.005530749382528375 -0.20669477838932665 1.0 6763 -57271 Or4e2 olfactory receptor family 4 subfamily E member 2 Novel U 0.005530668230808817 -0.20669561895617014 1.0 6764 -98999 Znfx1 zinc finger, NFX1-type containing 1 Novel U 0.005528438276653916 -0.2067187167480008 1.0 6765 -74159 Acbd5 acyl-Coenzyme A binding domain containing 5 Novel U 0.005526762103585023 -0.20673607849354717 1.0 6766 -100040223 Gm20831 predicted gene, 20831 Novel U 0.005523150352474115 -0.20677348889282404 1.0 6767 -15288 Hmbs hydroxymethylbilane synthase Novel U 0.005521797268631243 -0.20678750409078825 1.0 6768 -258686 Or5b113 olfactory receptor family 5 subfamily B member 113 Novel U 0.005520820128324023 -0.2067976252779687 1.0 6769 -67505 Prl7c1 prolactin family 7, subfamily c, member 1 Novel U 0.005520544594629666 -0.20680047924691713 1.0 6770 -258734 Or5p76 olfactory receptor family 5 subfamily P member 76 Novel U 0.005517321052513406 -0.20683386859018915 1.0 6771 -105348 Golm1 golgi membrane protein 1 Novel U 0.005516129051802271 -0.2068462152943702 1.0 6772 -242521 Klhl9 kelch-like 9 Novel U 0.005514751531716224 -0.2068604836021379 1.0 6773 -11733 Ank1 ankyrin 1, erythroid Novel U 0.00551355649155733 -0.20687286178881892 1.0 6774 -54127 Rps28 ribosomal protein S28 Novel U 0.005512619860913277 -0.2068825633782399 1.0 6775 -317750 Slc24a5 solute carrier family 24, member 5 Novel N 0.005511382490502056 -0.20689538002028302 1.0 6776 -67121 Mastl microtubule associated serine/threonine kinase-like Novel U 0.005508591358037967 -0.20692429047859248 1.0 6777 -12672 Chrm4 cholinergic receptor, muscarinic 4 Novel N 0.005506716050686923 -0.2069437148504872 1.0 6778 -66278 Smim20 small integral membrane protein 20 Novel N 0.0055055374789711375 -0.20695592245757582 1.0 6779 -83602 Gtf2a1 general transcription factor II A, 1 Novel N 0.005505021818823124 -0.20696126364843756 1.0 6780 -69553 Ripor3 RIPOR family member 3 Novel U 0.005502248936438896 -0.20698998507301977 1.0 6781 -259057 Or52h2 olfactory receptor family 52 subfamily H member 2 Novel U 0.0054986193118259355 -0.20702758060544335 1.0 6782 -140859 Nek8 NIMA (never in mitosis gene a)-related expressed kinase 8 Novel U 0.005495825180961487 -0.2070565221210852 1.0 6783 -60594 Capn12 calpain 12 Novel U 0.00549226776754129 -0.20709336969234793 1.0 6784 -76179 Usp31 ubiquitin specific peptidase 31 Novel N 0.005488088057871133 -0.20713666298771086 1.0 6785 -70573 Tbccd1 TBCC domain containing 1 Novel U 0.005487648276768295 -0.20714121822591702 1.0 6786 -78755 Pabir2 PABIR family member 2 Novel U 0.005487327534954861 -0.20714454045907676 1.0 6787 -58233 Dnaja4 DnaJ heat shock protein family (Hsp40) member A4 Novel U 0.005487205678339187 -0.20714580264589608 1.0 6788 -216725 Adamts2 ADAM metallopeptidase with thrombospondin type 1 motif 2 Novel U 0.005486503651446892 -0.2071530742173686 1.0 6789 -93736 Aff4 AF4/FMR2 family, member 4 Novel N 0.005484340490630498 -0.2071754801659947 1.0 6790 -654462 Kncn kinocilin Novel U 0.005482193329344612 -0.2071977203920098 1.0 6791 -108978 4930555G01Rik RIKEN cDNA 4930555G01 gene Novel U 0.005475509219094009 -0.20726695418625726 1.0 6792 -16776 Lama5 laminin, alpha 5 Novel U 0.005475034462209511 -0.20727187170246011 1.0 6793 -71745 Cul2 cullin 2 Novel U 0.005474505796132559 -0.2072773476083062 1.0 6794 -26965 Cul1 cullin 1 Novel U 0.005472803920637038 -0.20729497557874269 1.0 6795 -17758 Map4 microtubule-associated protein 4 Novel U 0.005472139275140115 -0.20730185995495073 1.0 6796 -320923 Map7d3 MAP7 domain containing 3 Novel U 0.005469996447457001 -0.2073240552936508 1.0 6797 -223453 Dap death-associated protein Novel U 0.0054668307325101174 -0.20735684566500334 1.0 6798 -77744 Bora bora, aurora kinase A activator Novel U 0.005465550435014478 -0.20737010694437566 1.0 6799 -13506 Dsc2 desmocollin 2 Novel U 0.00546336425122142 -0.20739275136423724 1.0 6800 -22393 Wfs1 wolframin ER transmembrane glycoprotein Novel U 0.005460622622076419 -0.20742114906879494 1.0 6801 -22410 Wnt10b wingless-type MMTV integration site family, member 10B Novel U 0.005459863986347499 -0.2074290069927363 1.0 6802 -230738 Zc3h12a zinc finger CCCH type containing 12A Novel U 0.0054558646722909524 -0.20747043175626362 1.0 6803 -331529 Pramel3c PRAME like 3C Novel U 0.005453523986385862 -0.20749467650392267 1.0 6804 -77552 Shisa4 shisa family member 4 Novel U 0.005452011469091578 -0.20751034310833552 1.0 6805 -67555 Mgat4d MGAT4 family, member C Novel U 0.0054519639547640514 -0.20751083526017808 1.0 6806 -76709 Arpc2 actin related protein 2/3 complex, subunit 2 Novel U 0.005451889145188243 -0.2075116101353051 1.0 6807 -84035 Kremen1 kringle containing transmembrane protein 1 Novel N 0.0054423222992021365 -0.20761070321153605 1.0 6808 -16324 Inhbb inhibin beta-B Novel U 0.005439844223118453 -0.2076363710421485 1.0 6809 -116838 Rims2 regulating synaptic membrane exocytosis 2 Novel U 0.005438222158603658 -0.20765317233307024 1.0 6810 -246738 Dnajc28 DnaJ heat shock protein family (Hsp40) member C28 Novel U 0.0054338283249793715 -0.2076986835173111 1.0 6811 -215821 Arfgef3 ARFGEF family member 3 Novel U 0.005433704014793389 -0.20769997111813102 1.0 6812 -14114 Fbln1 fibulin 1 Novel U 0.005433323804285649 -0.20770390932607144 1.0 6813 -100503856 1700024B05Rik RIKEN cDNA 1700024B05 gene Novel U 0.005433261501057553 -0.20770455466085994 1.0 6814 -665210 Vmn2r91 vomeronasal 2, receptor 91 Novel U 0.005432970448316482 -0.20770756937558416 1.0 6815 -20363 Selenop selenoprotein P Novel N 0.005432028758105708 -0.20771732337183094 1.0 6816 -68999 Anapc10 anaphase promoting complex subunit 10 Novel U 0.005432027305511342 -0.20771733841775564 1.0 6817 -101187 Parp11 poly (ADP-ribose) polymerase family, member 11 Novel N 0.005431200984019902 -0.20772589742860012 1.0 6818 -56291 Styx serine/threonine/tyrosine interaction protein Novel U 0.005430677992114597 -0.20773131456156282 1.0 6819 -66390 Prelid3b PRELI domain containing 3B Novel U 0.005429648647882303 -0.20774197647528306 1.0 6820 -22334 Vdac2 voltage-dependent anion channel 2 Novel N 0.005429634435582657 -0.2077421236858156 1.0 6821 -73032 Ttc9b tetratricopeptide repeat domain 9B Novel U 0.005428097387910941 -0.20775804437507148 1.0 6822 -228859 Fitm2 fat storage-inducing transmembrane protein 2 Novel U 0.005421026185134493 -0.20783128766097667 1.0 6823 -71898 Apol9b apolipoprotein L 9b Novel U 0.005419939622112149 -0.20784254224504328 1.0 6824 -239857 Cadm2 cell adhesion molecule 2 Novel U 0.00541761140384893 -0.20786665785327765 1.0 6825 -224419 Map3k7cl Map3k7 C-terminal like Novel U 0.0054174522761743 -0.20786830609250043 1.0 6826 -403174 Msantd1 Myb/SANT-like DNA-binding domain containing 1 Novel U 0.005414973450641682 -0.20789398168588027 1.0 6827 -78390 Pla2g4d phospholipase A2, group IVD Novel U 0.00541260034786705 -0.20791856220640836 1.0 6828 -18645 Pfn2 profilin 2 Novel U 0.0054119792539878185 -0.2079249954763921 1.0 6829 -66789 Alg14 asparagine-linked glycosylation 14 Novel U 0.005411940912232376 -0.20792539261903453 1.0 6830 -270162 Elmod1 ELMO/CED-12 domain containing 1 Novel U 0.005410689079278756 -0.20793835906361632 1.0 6831 -320376 Bcorl1 BCL6 co-repressor-like 1 Novel U 0.005409904509334998 -0.20794648561330245 1.0 6832 -408066 Cspg4b chondroitin sulfate proteoglycan 4B Novel U 0.005409039456172854 -0.20795544580551883 1.0 6833 -53623 Gria3 glutamate receptor, ionotropic, AMPA3 (alpha 3) Novel U 0.0054076439097944275 -0.20796990082903047 1.0 6834 -100182 Akna AT-hook transcription factor Novel N 0.005407429383626678 -0.20797212288402386 1.0 6835 -71059 Hexim2 hexamethylene bis-acetamide inducible 2 Novel U 0.005405252634944171 -0.2079946695753205 1.0 6836 -27041 G3bp1 G3BP stress granule assembly factor 1 Novel U 0.005404933396275037 -0.20799797623896096 1.0 6837 -242274 Lrrc7 leucine rich repeat containing 7 Novel U 0.0054039669894969 -0.2080079862486 1.0 6838 -20621 Snn stannin Novel N 0.005401846746090762 -0.20802994766010152 1.0 6839 -23948 Mmp17 matrix metallopeptidase 17 Novel N 0.005399978073278187 -0.2080493033116649 1.0 6840 -108151 Sema3d sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3D Novel U 0.00539837573883757 -0.2080659002391269 1.0 6841 -20271 Scn5a sodium channel, voltage-gated, type V, alpha Novel U 0.005397036666482858 -0.20807977030655736 1.0 6842 -84111 Gpr87 G protein-coupled receptor 87 Novel U 0.005392438058779977 -0.20812740253397272 1.0 6843 -18293 Ogdh oxoglutarate (alpha-ketoglutarate) dehydrogenase (lipoamide) Novel U 0.005390970121750194 -0.20814260737747137 1.0 6844 -232987 B9d2 B9 protein domain 2 Novel U 0.005389578854027339 -0.20815701808280926 1.0 6845 -230484 Usp1 ubiquitin specific peptidase 1 Novel U 0.005388551844031289 -0.20816765581858718 1.0 6846 -14025 Bcl11a BCL11 transcription factor A Novel U 0.005388426108393702 -0.20816895818418799 1.0 6847 -17684 Cited2 Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 2 Novel U 0.005384771725889074 -0.20820681015803957 1.0 6848 -58522 Trim54 tripartite motif-containing 54 Novel U 0.005384451261084196 -0.20821012952195378 1.0 6849 -259010 Or1e33 olfactory receptor family 1 subfamily E member 33 Novel U 0.00538346850369819 -0.20822030889065163 1.0 6850 -259106 Or52k2 olfactory receptor family 52 subfamily K member 2 Novel U 0.005380358629807164 -0.2082525208621833 1.0 6851 -194352 Trpv5 transient receptor potential cation channel, subfamily V, member 5 Novel U 0.005379830357579316 -0.20825799268855333 1.0 6852 -68961 Phkg2 phosphorylase kinase, gamma 2 (testis) Novel U 0.005375954192330026 -0.20829814188078338 1.0 6853 -14566 Gdf9 growth differentiation factor 9 Novel U 0.005374732463196482 -0.20831079651098647 1.0 6854 -67287 Parp6 poly (ADP-ribose) polymerase family, member 6 Novel N 0.005372612114895212 -0.2083327590089883 1.0 6855 -71865 Fbxo30 F-box protein 30 Novel U 0.005371964646168834 -0.20833946546877175 1.0 6856 -100042235 Gm3739 predicted gene 3739 Novel U 0.0053699554309682455 -0.20836027685377004 1.0 6857 -108961 E2f8 E2F transcription factor 8 Novel U 0.005369502941705232 -0.20836496372268157 1.0 6858 -171188 Vmn1r32 vomeronasal 1 receptor 32 Novel U 0.005369086834351159 -0.20836927374897626 1.0 6859 -12845 Comp cartilage oligomeric matrix protein Novel U 0.005364668173833962 -0.20841504208935777 1.0 6860 -329909 Tmem61 transmembrane protein 61 Novel U 0.00536452304162519 -0.20841654536400525 1.0 6861 -100038992 Ubl5c ubiquitin-like 5C Novel U 0.005364352772271213 -0.20841830900837646 1.0 6862 -106143 Cggbp1 CGG triplet repeat binding protein 1 Novel N 0.0053612324925654 -0.20845062876299555 1.0 6863 -77613 Prss36 serine protease 36 Novel U 0.005359740999694879 -0.20846607759711822 1.0 6864 -77053 Sun1 Sad1 and UNC84 domain containing 1 Novel U 0.005352443094560728 -0.20854166905859206 1.0 6865 -54159 Rnase2b ribonuclease, RNase A family, 2B (liver, eosinophil-derived neurotoxin) Novel U 0.005351755146804605 -0.20854879479883492 1.0 6866 -67728 Dph2 DPH2 homolog Novel U 0.0053476406897059086 -0.20859141221020774 1.0 6867 -50909 C1ra complement component 1, r subcomponent A Novel U 0.005346352437992848 -0.20860475587910263 1.0 6868 -106042 Prickle1 prickle planar cell polarity protein 1 Novel U 0.0053462943793002055 -0.20860535724913243 1.0 6869 -78317 Ccdc88b coiled-coil domain containing 88B Novel U 0.005345172935396856 -0.20861697312821786 1.0 6870 -17423 Ndst2 N-deacetylase/N-sulfotransferase (heparan glucosaminyl) 2 Novel N 0.005344868265468598 -0.20862012888931927 1.0 6871 -218490 Btf3 basic transcription factor 3 Novel U 0.005341518747756283 -0.20865482308367395 1.0 6872 -16403 Itga6 integrin alpha 6 Novel U 0.005337749955831073 -0.20869386010654292 1.0 6873 -385354 Frmd7 FERM domain containing 7 Novel N 0.0053375868596038725 -0.20869554945190277 1.0 6874 -68436 Rpl34 ribosomal protein L34 Novel U 0.00533445883026463 -0.2087279494769702 1.0 6875 -16564 Kif21a kinesin family member 21A Novel U 0.005332906666530104 -0.2087440267379078 1.0 6876 -631784 Gm7073 predicted gene 7073 Novel U 0.005332796037622043 -0.20874517262850079 1.0 6877 -13627 Eef1a1 eukaryotic translation elongation factor 1 alpha 1 Novel U 0.005332072453087354 -0.2087526674933245 1.0 6878 -13491 Drd4 dopamine receptor D4 Novel U 0.0053316359125439965 -0.20875718916592212 1.0 6879 -218203 Mylip myosin regulatory light chain interacting protein Novel U 0.005327382241549992 -0.20880124855024612 1.0 6880 -258565 Or5g9 olfactory receptor family 5 subfamily G member 9 Novel U 0.005323444691905771 -0.208842033560021 1.0 6881 -70683 Utp20 UTP20 small subunit processome component Novel N 0.005322257199442765 -0.20885433356791608 1.0 6882 -19082 Prkag1 protein kinase, AMP-activated, gamma 1 non-catalytic subunit Novel U 0.00531991824768669 -0.20887856035331662 1.0 6883 -11440 Chrna6 cholinergic receptor, nicotinic, alpha polypeptide 6 Novel N 0.005319565113822888 -0.20888221810226923 1.0 6884 -665186 Zpld2 zona pellucida like domain containing 2 Novel U 0.005319409538328357 -0.2088838295481273 1.0 6885 -19027 Sypl1 synaptophysin like 1 Novel N 0.005317985944145006 -0.20889857508988033 1.0 6886 -258635 Or5w16 olfactory receptor family 5 subfamily W member 16 Novel U 0.005316706575543046 -0.20891182674780245 1.0 6887 -171257 Vmn1r195 vomeronasal 1 receptor 195 Novel U 0.005311997252776022 -0.20896060575821265 1.0 6888 -74020 Cpne4 copine IV Novel U 0.005310711762270807 -0.2089739208266074 1.0 6889 -209378 Itih5 inter-alpha-trypsin inhibitor, heavy chain 5 Novel U 0.005309950293577451 -0.20898180809430128 1.0 6890 -100862247 Gm21586 predicted gene, 21586 Novel U 0.005307842524013537 -0.2090036403021551 1.0 6891 -112419 Ifit1bl2 interferon induced protein with tetratricopeptide repeats 1B like 2 Novel U 0.005306256518849435 -0.20902006809150778 1.0 6892 -270198 Pfkfb4 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 4 Novel U 0.005305103044334291 -0.20903201574261718 1.0 6893 -319767 Atp10b ATPase, class V, type 10B Novel U 0.005303785752126938 -0.2090456602119973 1.0 6894 -381835 Sbk3 SH3 domain binding kinase family, member 3 Novel U 0.00530267852133628 -0.20905712887212868 1.0 6895 -23806 Arih1 ariadne RBR E3 ubiquitin protein ligase 1 Novel U 0.005300631598051938 -0.20907833083621893 1.0 6896 -14134 Fcnb ficolin B Novel U 0.0053002518216590765 -0.2090822645476117 1.0 6897 -72383 Cnfn cornifelin Novel U 0.005299212019699662 -0.20909303478212565 1.0 6898 -19656 Rbmxl1 RNA binding motif protein, X-linked like-1 Novel U 0.005296153954763416 -0.20912471011820685 1.0 6899 -319229 Sctr secretin receptor Novel N 0.005296110484177284 -0.20912516038510898 1.0 6900 -110033 Kif22 kinesin family member 22 Novel U 0.005294568993060517 -0.20914112709942265 1.0 6901 -240442 Adnp2 ADNP homeobox 2 Novel U 0.005294267260657937 -0.20914425243372964 1.0 6902 -67089 Psmc6 proteasome (prosome, macropain) 26S subunit, ATPase, 6 Novel U 0.005293652178044499 -0.2091506234392199 1.0 6903 -640524 Sptbn5 spectrin beta, non-erythrocytic 5 Novel U 0.00529252575742561 -0.20916229086696125 1.0 6904 -59290 Gpa33 glycoprotein A33 transmembrane Novel U 0.005292247670435191 -0.20916517128286644 1.0 6905 -78593 Nrip3 nuclear receptor interacting protein 3 Novel U 0.005291020489868889 -0.20917788237883078 1.0 6906 -117606 Boc BOC cell adhesion associated, oncogene regulated Novel U 0.0052905664436454156 -0.20918258537468756 1.0 6907 -268780 Egflam EGF-like, fibronectin type III and laminin G domains Novel U 0.005290140255814377 -0.20918699981423125 1.0 6908 -210297 Lrch2 leucine-rich repeats and calponin homology (CH) domain containing 2 Novel U 0.005289490051933147 -0.20919373460465876 1.0 6909 -71782 Ankle2 ankyrin repeat and LEM domain containing 2 Novel U 0.005289227859306354 -0.20919645038726797 1.0 6910 -93685 Entpd7 ectonucleoside triphosphate diphosphohydrolase 7 Novel N 0.005287335877492241 -0.209216047472703 1.0 6911 -268527 Greb1 gene regulated by estrogen in breast cancer protein Novel U 0.005286106150519609 -0.20922878494426042 1.0 6912 -108073 Grm7 glutamate receptor, metabotropic 7 Novel N 0.005285984880303161 -0.20923004105717585 1.0 6913 -12386 Ctnna2 catenin alpha 2 Novel U 0.005285096481542784 -0.2092392430623313 1.0 6914 -13008 Csrp2 cysteine and glycine-rich protein 2 Novel U 0.005284701548878083 -0.20924333376188958 1.0 6915 -13010 Cst3 cystatin C Novel U 0.005283854205632077 -0.2092521105153768 1.0 6916 -18000 Septin2 septin 2 Novel U 0.005283206546166539 -0.20925881895083018 1.0 6917 -226414 Dars1 aspartyl-tRNA synthetase 1 Novel N 0.005282873010463447 -0.2092622737026784 1.0 6918 -16772 Lama1 laminin, alpha 1 Novel N 0.005281435791435305 -0.20927716037012586 1.0 6919 -212627 Prpsap2 phosphoribosyl pyrophosphate synthetase-associated protein 2 Novel N 0.005276615054404197 -0.20932709340582087 1.0 6920 -474156 Zbtb9 zinc finger and BTB domain containing 9 Novel U 0.005274788496286137 -0.2093460128347629 1.0 6921 -18345 Or13a18 olfactory receptor family 13 subfamily A member 18 Novel U 0.005274516728142737 -0.20934882780025832 1.0 6922 -230584 Yipf1 Yip1 domain family, member 1 Novel U 0.005274383585126038 -0.20935020689124845 1.0 6923 -22177 Tyrobp TYRO protein tyrosine kinase binding protein Novel U 0.005274260353836802 -0.20935148331689132 1.0 6924 -277463 Gpr107 G protein-coupled receptor 107 Novel U 0.005273188311152584 -0.20936258749977296 1.0 6925 -17224 Mcpt1 mast cell protease 1 Novel U 0.005269385919787733 -0.20940197254453322 1.0 6926 -64213 St7 suppression of tumorigenicity 7 Novel U 0.0052691053130428265 -0.2094048790599725 1.0 6927 -19885 Rorc RAR-related orphan receptor gamma Novel U 0.005267149985808261 -0.20942513227519022 1.0 6928 -235072 Septin7 septin 7 Novel U 0.005265863967837921 -0.20943845280705145 1.0 6929 -72141 Adpgk ADP-dependent glucokinase Novel N 0.0052646283730969365 -0.20945125105676057 1.0 6930 -241113 Prkag3 protein kinase, AMP-activated, gamma 3 non-catalytic subunit Novel N 0.005264502386467889 -0.20945255602212265 1.0 6931 -71893 Noxo1 NADPH oxidase organizer 1 Novel U 0.005263667108452629 -0.20946120780434643 1.0 6932 -544998 Gm16440 predicted gene 16440 Novel U 0.0052600930977948525 -0.2094982272892504 1.0 6933 -269109 Dpp10 dipeptidylpeptidase 10 Novel U 0.005258089769965231 -0.20951897769305378 1.0 6934 -13002 Dnajc5 DnaJ heat shock protein family (Hsp40) member C5 Novel U 0.005256550583254936 -0.20953492053840098 1.0 6935 -227937 Pkp4 plakophilin 4 Novel U 0.005256304936838793 -0.20953746493590417 1.0 6936 -54139 Irf6 interferon regulatory factor 6 Novel U 0.005255458070688064 -0.2095462367476542 1.0 6937 -102920 Cenpi centromere protein I Novel N 0.005253114048733487 -0.20957051605000412 1.0 6938 -100041598 Gm3424 predicted gene 3424 Novel U 0.005251013912939233 -0.20959226918752277 1.0 6939 -73635 Ptges3l prostaglandin E synthase 3 like Novel U 0.005250662224380756 -0.20959591196605035 1.0 6940 -54120 Gipc2 GIPC PDZ domain containing family, member 2 Novel U 0.005248157915971913 -0.20962185151022444 1.0 6941 -22327 Vbp1 von Hippel-Lindau binding protein 1 Novel U 0.005247935079792411 -0.20962415964004638 1.0 6942 -54667 Atp8b2 ATPase, class I, type 8B, member 2 Novel N 0.005247765608383714 -0.2096259150193266 1.0 6943 -171235 Vmn1r236 vomeronasal 1 receptor 236 Novel U 0.005245703877649615 -0.20964727035849465 1.0 6944 -16193 Il6 interleukin 6 Novel U 0.00524363435417632 -0.20966870641459912 1.0 6945 -65967 Eefsec eukaryotic elongation factor, selenocysteine-tRNA-specific Novel U 0.005242787201781456 -0.20967748119125648 1.0 6946 -229791 Plppr4 phospholipid phosphatase related 4 Novel N 0.005242331078844415 -0.2096822056976441 1.0 6947 -258602 Or8g50 olfactory receptor family 8 subfamily G member 50 Novel U 0.005242181937679306 -0.20968375049692958 1.0 6948 -74411 Plpp6 phospholipid phosphatase 6 Novel U 0.0052366139934284005 -0.20974142308044413 1.0 6949 -52206 Anapc4 anaphase promoting complex subunit 4 Novel U 0.005232224456946342 -0.20978688975502705 1.0 6950 -269198 Nbeal1 neurobeachin like 1 Novel U 0.005230431897047623 -0.20980545703153078 1.0 6951 -19130 Prox1 prospero homeobox 1 Novel U 0.005230052145927419 -0.2098093904811502 1.0 6952 -76178 Coa5 cytochrome C oxidase assembly factor 5 Novel N 0.005230016057253846 -0.20980976428644468 1.0 6953 -13876 Erg ETS transcription factor Novel N 0.005229430556763765 -0.20981582888127367 1.0 6954 -231128 Fam193a family with sequence homology 193, member A Novel U 0.005226773014837465 -0.2098433556131843 1.0 6955 -54723 Tfip11 tuftelin interacting protein 11 Novel U 0.0052264297048975426 -0.2098469116062563 1.0 6956 -83557 Lin28a lin-28 homolog A Novel N 0.005223898689740911 -0.20987312777804606 1.0 6957 -52202 Rbm34 RNA binding motif protein 34 Novel U 0.005220796164092893 -0.20990526363671821 1.0 6958 -73916 Ift57 intraflagellar transport 57 Novel N 0.005218231664459431 -0.20993182663961818 1.0 6959 -17904 Myl6 myosin, light polypeptide 6, alkali, smooth muscle and non-muscle Novel U 0.005215642102788411 -0.20995864923427937 1.0 6960 -19172 Psmb4 proteasome (prosome, macropain) subunit, beta type 4 Novel U 0.0052136914012917935 -0.20997885453625548 1.0 6961 -54343 Atf7ip activating transcription factor 7 interacting protein Novel U 0.005211639767536398 -0.21000010529125007 1.0 6962 -271842 Rpusd2 RNA pseudouridylate synthase domain containing 2 Novel N 0.005211511230211701 -0.2100014366766338 1.0 6963 -11949 Atp5f1c ATP synthase F1 subunit gamma Novel N 0.005208306547429038 -0.21003463067554837 1.0 6964 -19015 Ppard peroxisome proliferator activator receptor delta Novel U 0.005208159290132516 -0.21003615596178493 1.0 6965 -93719 Ear6 eosinophil-associated, ribonuclease A family, member 6 Novel U 0.005203818658456035 -0.21008111608199934 1.0 6966 -102580 Alg9 ALG9 alpha-1,2-mannosyltransferase Novel U 0.005200890395153081 -0.21011144693702988 1.0 6967 -665255 Vmn2r28 vomeronasal 2, receptor 28 Novel U 0.005200623731431731 -0.2101142090310895 1.0 6968 -18700 Piga phosphatidylinositol glycan anchor biosynthesis, class A Novel U 0.005197157690302094 -0.21015011017117033 1.0 6969 -68401 G6pc3 glucose 6 phosphatase, catalytic, 3 Novel U 0.005196842758034071 -0.21015337222924968 1.0 6970 -66405 Mcts2 malignant T cell amplified sequence 2 Novel U 0.005196001523885292 -0.21016208570490863 1.0 6971 -14539 Opn1mw opsin 1 (cone pigments), medium-wave-sensitive (color blindness, deutan) Novel U 0.005195524212079971 -0.21016702968489737 1.0 6972 -21389 Tbx6 T-box 6 Novel N 0.005192844560358371 -0.21019478542934092 1.0 6973 -17123 Madcam1 mucosal vascular addressin cell adhesion molecule 1 Novel U 0.0051908349534431795 -0.21021560087170618 1.0 6974 -23928 Lamc3 laminin gamma 3 Novel N 0.005189929222470755 -0.21022498240334422 1.0 6975 -19359 Rad23b RAD23 homolog B, nucleotide excision repair protein Novel U 0.0051865449529955735 -0.21026003655531633 1.0 6976 -271944 C2cd4d C2 calcium-dependent domain containing 4D Novel U 0.005184911876193635 -0.2102769519111463 1.0 6977 -12013 Bach1 BTB and CNC homology 1, basic leucine zipper transcription factor 1 Novel U 0.005184450798891869 -0.21028172773468087 1.0 6978 -217715 Eif2b2 eukaryotic translation initiation factor 2B, subunit 2 beta Novel U 0.005183805103312857 -0.2102884158282622 1.0 6979 -93697 Ice2 interactor of little elongation complex ELL subunit 2 Novel N 0.005181925822216887 -0.21030788136007622 1.0 6980 -217303 Cd300a CD300A molecule Novel U 0.0051801279693721135 -0.21032650346074114 1.0 6981 -106618 Wdr90 WD repeat domain 90 Novel N 0.0051796306639356115 -0.21033165453410438 1.0 6982 -14283 Fosl1 fos-like antigen 1 Novel U 0.005175329815010337 -0.2103762025858896 1.0 6983 -67800 Dgat2 diacylglycerol O-acyltransferase 2 Novel U 0.00517369955436413 -0.21039308877207105 1.0 6984 -100041115 Pramel43 PRAME like 43 Novel U 0.00517319643978604 -0.21039830001633195 1.0 6985 -229214 Qrfpr pyroglutamylated RFamide peptide receptor Novel U 0.005173040068923879 -0.21039991970058175 1.0 6986 -232334 Vgll4 vestigial like family member 4 Novel N 0.005171298022071641 -0.21041796376461055 1.0 6987 -93730 Lztfl1 leucine zipper transcription factor-like 1 Novel U 0.00516889490314385 -0.21044285519146635 1.0 6988 -17879 Myh1 myosin, heavy polypeptide 1, skeletal muscle, adult Novel U 0.00516884942201142 -0.21044332628354095 1.0 6989 -27368 Tbl2 transducin (beta)-like 2 Novel U 0.005167057447516733 -0.21046188749644892 1.0 6990 -68817 Ddi2 DNA-damage inducible protein 2 Novel U 0.005165582200473496 -0.21047716805682662 1.0 6991 -100862323 Btbd35f22 BTB domain containing 35, family member 22 Novel U 0.0051641860498973895 -0.21049162933859797 1.0 6992 -66481 Rps21 ribosomal protein S21 Novel N 0.0051585805061823715 -0.21054969137612578 1.0 6993 -100039753 Gm20815 predicted gene, 20815 Novel U 0.005156172527672348 -0.2105746331383746 1.0 6994 -17992 Ndufa4 Ndufa4, mitochondrial complex associated Novel U 0.005154300078016483 -0.21059402791035656 1.0 6995 -217732 Cipc CLOCK interacting protein, circadian Novel U 0.005150858439496881 -0.21062967628900484 1.0 6996 -218877 Sema3g sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3G Novel U 0.005149598174414881 -0.2106427300732952 1.0 6997 -71351 5430402E10Rik RIKEN cDNA 5430402E10 gene Novel U 0.005146761017852203 -0.21067211724770493 1.0 6998 -233280 Nipa1 non imprinted in Prader-Willi/Angelman syndrome 1 homolog (human) Novel U 0.005144690001470997 -0.21069356876730047 1.0 6999 -21379 Tbrg4 transforming growth factor beta regulated gene 4 Novel N 0.005139294793332581 -0.2107494521558403 1.0 7000 -13433 Dnmt1 DNA methyltransferase 1 Novel N 0.0051359076661295685 -0.2107845359080633 1.0 7001 -66940 Shisa5 shisa family member 5 Novel U 0.005135804364887779 -0.2107856058989299 1.0 7002 -230257 Ptbp3 polypyrimidine tract binding protein 3 Novel N 0.005132616599570134 -0.2108186246672979 1.0 7003 -12160 Bmp5 bone morphogenetic protein 5 Novel U 0.005132166551926047 -0.21082328624600083 1.0 7004 -243771 Parp12 poly (ADP-ribose) polymerase family, member 12 Novel N 0.005126706616903603 -0.2108798400734776 1.0 7005 -20719 Serpinb6a serine (or cysteine) peptidase inhibitor, clade B, member 6a Novel U 0.0051260120041758984 -0.210887034849277 1.0 7006 -258206 Or4c3 olfactory receptor family 4 subfamily C member 3 Novel U 0.005125368091455571 -0.21089370447606667 1.0 7007 -69090 Ascc1 activating signal cointegrator 1 complex subunit 1 Novel U 0.0051238854125699165 -0.21090906201522383 1.0 7008 -230775 Adgrb2 adhesion G protein-coupled receptor B2 Novel N 0.005123190505655702 -0.21091625983819745 1.0 7009 -11421 Ace angiotensin I converting enzyme Novel U 0.005121884026800681 -0.21092979230322959 1.0 7010 -14030 Ewsr1 Ewing sarcoma breakpoint region 1 Novel U 0.005121376379414882 -0.21093505049816366 1.0 7011 -70827 Trak2 trafficking protein, kinesin binding 2 Novel U 0.005121253810852732 -0.21093632005930119 1.0 7012 -13806 Eno1 enolase 1, alpha non-neuron Novel U 0.005120716762659854 -0.21094188278682852 1.0 7013 -213895 Bms1 BMS1, ribosome biogenesis factor Novel N 0.00512033912749516 -0.21094579431945035 1.0 7014 -381305 Rc3h1 RING CCCH (C3H) domains 1 Novel U 0.005119212608386992 -0.2109574627673404 1.0 7015 -66975 Trappc13 trafficking protein particle complex 13 Novel U 0.005118306227433282 -0.2109668510314633 1.0 7016 -245026 Col6a6 collagen, type VI, alpha 6 Novel U 0.005106032075414474 -0.21109398629458306 1.0 7017 -229600 BC028528 cDNA sequence BC028528 Novel U 0.00509767928912106 -0.21118050418042716 1.0 7018 -75704 Ces1h carboxylesterase 1H Novel U 0.005096812176471691 -0.21118948570474455 1.0 7019 -75974 Dock11 dedicator of cytokinesis 11 Novel U 0.005096373525247766 -0.2111940292397021 1.0 7020 -67563 Ciao3 cytosolic iron-sulfur assembly component 3 Novel N 0.005096067326539954 -0.21119720083585186 1.0 7021 -319468 Ppm1h protein phosphatase 1H (PP2C domain containing) Novel U 0.005095272029235273 -0.21120543849918977 1.0 7022 -76454 Fbxo31 F-box protein 31 Novel U 0.005094092018179528 -0.21121766101491438 1.0 7023 -114871 Psg28 pregnancy-specific beta-1-glycoprotein 28 Novel U 0.005091065418046379 -0.21124901043959946 1.0 7024 -69301 Tescl tescalcin-like Novel U 0.00508541166385318 -0.21130757183967544 1.0 7025 -110196 Fdps farnesyl diphosphate synthetase Novel N 0.005084959404083797 -0.21131225633149944 1.0 7026 -56222 Cited4 Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 4 Novel U 0.005082654961836551 -0.21133612566854199 1.0 7027 -209086 Samd9l sterile alpha motif domain containing 9-like Novel U 0.0050820475984800426 -0.2113424167182227 1.0 7028 -22226 Ucn urocortin Novel U 0.005080824750728691 -0.21135508293503222 1.0 7029 -328759 Vmn2r95 vomeronasal 2, receptor 95 Novel U 0.005079243576831526 -0.21137146068228077 1.0 7030 -26875 Pclo piccolo (presynaptic cytomatrix protein) Novel N 0.005078221709573837 -0.21138204514974385 1.0 7031 -17064 Cd93 CD93 antigen Novel N 0.005077983922188584 -0.21138450814366347 1.0 7032 -52150 Kcnk6 potassium inwardly-rectifying channel, subfamily K, member 6 Novel N 0.005074400969721007 -0.21142162024753938 1.0 7033 -257929 Or14c43 olfactory receptor family 14 subfamily C member 43 Novel U 0.005071865214686793 -0.21144788551482532 1.0 7034 -56692 Lamtor3 late endosomal/lysosomal adaptor, MAPK and MTOR activator 3 Novel N 0.00507144965195386 -0.21145218989995215 1.0 7035 -11720 Mat1a methionine adenosyltransferase 1A Novel U 0.005070260061407309 -0.21146451163972765 1.0 7036 -382620 Tmed8 transmembrane p24 trafficking protein 8 Novel U 0.005069767290712947 -0.2114696157423809 1.0 7037 -20724 Serpinb5 serine (or cysteine) peptidase inhibitor, clade B, member 5 Novel U 0.005068078958014255 -0.211487103436973 1.0 7038 -56812 Dnajb2 DnaJ heat shock protein family (Hsp40) member B2 Novel U 0.0050677550475739415 -0.21149045849066578 1.0 7039 -381259 Tmem237 transmembrane protein 237 Novel U 0.005067590844459239 -0.21149215930113 1.0 7040 -100043861 Klrb1 killer cell lectin-like receptor subfamily B member 1 Novel U 0.0050661853535530965 -0.21150671732973278 1.0 7041 -16009 Igfbp3 insulin-like growth factor binding protein 3 Novel U 0.005063696134353731 -0.21153250058037112 1.0 7042 -626942 Vmn2r90 vomeronasal 2, receptor 90 Novel U 0.005063557454707782 -0.21153393701958503 1.0 7043 -100042855 Gm10267 predicted gene 10267 Novel U 0.005063019493455199 -0.21153950920455478 1.0 7044 -58245 Gpr180 G protein-coupled receptor 180 Novel U 0.005062237866467692 -0.2115476052711968 1.0 7045 -67052 Ndc80 NDC80 kinetochore complex component Novel U 0.005058686192265605 -0.21158439339582696 1.0 7046 -224897 Dpp9 dipeptidylpeptidase 9 Novel U 0.005057967567977815 -0.2115918368825764 1.0 7047 -18521 Pcbp2 poly(rC) binding protein 2 Novel U 0.005055837085084829 -0.2116139043543461 1.0 7048 -213989 Tmem82 transmembrane protein 82 Novel U 0.005050678052361695 -0.21166734144569826 1.0 7049 -110332 Pp2d1 protein phosphatase 2C-like domain containing 1 Novel U 0.005049624925349859 -0.21167824970066718 1.0 7050 -226977 Actr1b ARP1 actin-related protein 1B, centractin beta Novel U 0.005046279035348737 -0.2117129063193086 1.0 7051 -59002 Wrap73 WD repeat containing, antisense to Trp73 Novel U 0.005045179340349951 -0.2117242969239555 1.0 7052 -258325 Or5v1 olfactory receptor family 5 subfamily V member 1 Novel U 0.005041022775135769 -0.21176735048980425 1.0 7053 -81701 Egfl8 EGF-like domain 8 Novel U 0.005038156739915797 -0.2117970367883969 1.0 7054 -107515 Lgr4 leucine-rich repeat-containing G protein-coupled receptor 4 Novel U 0.00503170959969682 -0.21186381605484675 1.0 7055 -212514 Spice1 spindle and centriole associated protein 1 Novel U 0.005028332398864776 -0.21189879699004557 1.0 7056 -17931 Ppp1r12a protein phosphatase 1, regulatory subunit 12A Novel U 0.005027249845705503 -0.21191001004008228 1.0 7057 -277562 Or4k40 olfactory receptor family 4 subfamily K member 40 Novel U 0.005026892111074718 -0.21191371544362808 1.0 7058 -66105 Ube2d3 ubiquitin-conjugating enzyme E2D 3 Novel U 0.005026408182681518 -0.21191872795801653 1.0 7059 -56325 Abcb9 ATP-binding cassette, sub-family B member 9 Novel U 0.00502578418608368 -0.21192519129426418 1.0 7060 -230857 Ece1 endothelin converting enzyme 1 Novel U 0.005022450924817057 -0.21195971710488878 1.0 7061 -67398 Srpra signal recognition particle receptor alpha Novel U 0.005022092434397849 -0.2119634303368662 1.0 7062 -13135 Dad1 defender against cell death 1 Novel N 0.00502151828075963 -0.21196937740137659 1.0 7063 -16475 Ajuba ajuba LIM protein Novel U 0.005020901928103604 -0.21197576156192618 1.0 7064 -11982 Atp10a ATPase, class V, type 10A Novel U 0.0050193478601164585 -0.21199185854704983 1.0 7065 -19249 Ptpn13 protein tyrosine phosphatase, non-receptor type 13 Novel U 0.005018513380308891 -0.21200050206146456 1.0 7066 -70574 Cpm carboxypeptidase M Novel N 0.0050178992081235385 -0.21200686363677063 1.0 7067 -71340 Riok1 RIO kinase 1 Novel N 0.005016900941090258 -0.21201720365388507 1.0 7068 -71538 Fbxo9 f-box protein 9 Novel U 0.005011854796031961 -0.21206947145851582 1.0 7069 -21413 Tcf4 transcription factor 4 Novel U 0.00501013713573591 -0.2120872629273973 1.0 7070 -228136 Zdhhc5 zinc finger, DHHC domain containing 5 Novel U 0.005009979784338828 -0.21208889276799564 1.0 7071 -100036521 Umad1 UMAP1-MVP12 associated (UMA) domain containing 1 Novel U 0.005008762090604027 -0.21210150559967117 1.0 7072 -69537 Dnase1l1 deoxyribonuclease 1-like 1 Novel N 0.0050083491738682605 -0.21210578257764634 1.0 7073 -68537 Mrpl13 mitochondrial ribosomal protein L13 Novel U 0.00500434845776081 -0.21214722186357085 1.0 7074 -71336 Rbks ribokinase Novel N 0.005004326846362459 -0.21214744571372451 1.0 7075 -623734 Vmn2r85 vomeronasal 2, receptor 85 Novel U 0.005002557359602268 -0.21216577399941786 1.0 7076 -13712 Elk1 ELK1, member of ETS oncogene family Novel N 0.0050014886003985235 -0.21217684417211666 1.0 7077 -22038 Plscr1 phospholipid scramblase 1 Novel U 0.005000597319013442 -0.21218607603540401 1.0 7078 -58518 Cts6 cathepsin 6 Novel U 0.005000521752602828 -0.21218685874980106 1.0 7079 -80890 Trim2 tripartite motif-containing 2 Novel N 0.004996428917699865 -0.21222925219918126 1.0 7080 -258153 Or1d2 olfactory receptor family 1 subfamily D member 2 Novel N 0.004994830464179305 -0.21224580892820089 1.0 7081 -94064 Mrpl27 mitochondrial ribosomal protein L27 Novel U 0.004994219756756883 -0.2122521346156064 1.0 7082 -67080 1700019D03Rik RIKEN cDNA 1700019D03 gene Novel U 0.0049922439109782975 -0.21227260036122858 1.0 7083 -230809 Pdik1l PDLIM1 interacting kinase 1 like Novel U 0.004989090575786797 -0.2123052625034818 1.0 7084 -100039479 Vmn1r186 vomeronasal 1 receptor Vmn1r186 Novel U 0.004987861155619524 -0.21231799679715943 1.0 7085 -66290 Atp6v1g1 ATPase, H+ transporting, lysosomal V1 subunit G1 Novel N 0.004984291851640044 -0.21235496753044433 1.0 7086 -234329 Trim60 tripartite motif-containing 60 Novel N 0.004982629402921814 -0.21237218711961772 1.0 7087 -19013 Ppara peroxisome proliferator activated receptor alpha Novel U 0.004980974581995019 -0.21238932770037816 1.0 7088 -64099 Parvg parvin, gamma Novel N 0.004980879261061331 -0.2123903150314758 1.0 7089 -100039796 Tgtp2 T cell specific GTPase 2 Novel U 0.004977478080774449 -0.2124255443450795 1.0 7090 -67900 Mtfp1 mitochondrial fission process 1 Novel U 0.004977379645113694 -0.21242656393841775 1.0 7091 -18074 Nid2 nidogen 2 Novel N 0.004977017651649424 -0.21243031345482072 1.0 7092 -13730 Emp1 epithelial membrane protein 1 Novel N 0.004973614563270214 -0.21246556253238208 1.0 7093 -629378 Dact3 dishevelled-binding antagonist of beta-catenin 3 Novel N 0.004972797900709407 -0.2124740214963406 1.0 7094 -17877 Myf5 myogenic factor 5 Novel N 0.004971715189165339 -0.21248523618692183 1.0 7095 -11534 Adk adenosine kinase Novel N 0.00497124769043851 -0.21249007852336613 1.0 7096 -70292 Afap1 actin filament associated protein 1 Novel U 0.00497068996974735 -0.2124958553759511 1.0 7097 -258754 Or6d14 olfactory receptor family 6 subfamily D member 14 Novel U 0.004970600373217962 -0.21249678341385714 1.0 7098 -12833 Col6a1 collagen, type VI, alpha 1 Novel U 0.004970084358997641 -0.21250212827218817 1.0 7099 -57260 Ltb4r2 leukotriene B4 receptor 2 Novel U 0.004968400389136138 -0.2125195707766561 1.0 7100 -19348 Kif20a kinesin family member 20A Novel U 0.004967684250113755 -0.21252698852110813 1.0 7101 -20102 Rps4x ribosomal protein S4, X-linked Novel N 0.004966957007504271 -0.21253452127615036 1.0 7102 -113856 Vmn1r46 vomeronasal 1 receptor 46 Novel U 0.0049662318714825855 -0.21254203221122542 1.0 7103 -66771 Gid4 GID complex subunit 4, VID24 homolog Novel U 0.004965128343502322 -0.21255346251776844 1.0 7104 -216543 Cep68 centrosomal protein 68 Novel N 0.0049634596133063345 -0.21257074717028193 1.0 7105 -109242 Kif24 kinesin family member 24 Novel U 0.004957604362549077 -0.21263139566514463 1.0 7106 -19039 Lgals3bp lectin, galactoside-binding, soluble, 3 binding protein Novel U 0.00495703346010214 -0.21263730905392259 1.0 7107 -102247 Gpat4 glycerol-3-phosphate acyltransferase 4 Novel U 0.004954127556306921 -0.21266740830990705 1.0 7108 -11818 Apoh apolipoprotein H Novel U 0.004949976144787457 -0.2127104084939553 1.0 7109 -18391 Sigmar1 sigma non-opioid intracellular receptor 1 Novel U 0.0049499173088447986 -0.21271101791471525 1.0 7110 -18779 Pla2r1 phospholipase A2 receptor 1 Novel U 0.00494803479813916 -0.21273051689872005 1.0 7111 -17384 Mmp10 matrix metallopeptidase 10 Novel U 0.004946726331837795 -0.21274406994965608 1.0 7112 -22293 Slc45a2 solute carrier family 45, member 2 Novel U 0.004946383243507329 -0.21274762364730465 1.0 7113 -12830 Col4a5 collagen, type IV, alpha 5 Novel U 0.004945934394944979 -0.21275227280595835 1.0 7114 -93687 Csnk1a1 casein kinase 1, alpha 1 Novel U 0.004945472109841654 -0.2127570611398618 1.0 7115 -16563 Kif2a kinesin family member 2A Novel U 0.004943600209285808 -0.21277645022428382 1.0 7116 -16176 Il1b interleukin 1 beta Novel U 0.00494314835941544 -0.21278113047038733 1.0 7117 -258163 Or56b1b olfactory receptor family 56 subfamily B member 1B Novel U 0.0049422703665107405 -0.21279022469203174 1.0 7118 -22305 Vmn2r37 vomeronasal 2, receptor 37 Novel U 0.004940775048778616 -0.21280571314394514 1.0 7119 -215274 Il1f10 interleukin 1 family, member 10 Novel U 0.004940739400833402 -0.21280608238418985 1.0 7120 -18783 Pla2g4a phospholipase A2, group IVA (cytosolic, calcium-dependent) Novel U 0.004940286045277411 -0.2128107782261355 1.0 7121 -17199 Mc1r melanocortin 1 receptor Novel U 0.004939872991383342 -0.2128150566247919 1.0 7122 -11432 Acp2 acid phosphatase 2, lysosomal Novel U 0.004937697839107064 -0.2128375867805653 1.0 7123 -72265 Tram1 translocating chain-associating membrane protein 1 Novel U 0.004936983664883189 -0.21284498417369896 1.0 7124 -73181 Nfatc4 nuclear factor of activated T cells, cytoplasmic, calcineurin dependent 4 Novel N 0.004936307202360186 -0.21285199095027474 1.0 7125 -242506 Frmd3 FERM domain containing 3 Novel U 0.004931718948428954 -0.21289951593366369 1.0 7126 -11596 Ager advanced glycosylation end product-specific receptor Novel U 0.004931032218424966 -0.21290662906047 1.0 7127 -217219 Fam171a2 family with sequence similarity 171, member A2 Novel U 0.004930795183939423 -0.21290908425587912 1.0 7128 -27403 Abca7 ATP-binding cassette, sub-family A member 7 Novel U 0.0049305672739286596 -0.2129114449402785 1.0 7129 -20832 Ssr4 signal sequence receptor, delta Novel U 0.004929538835197628 -0.21292209747484642 1.0 7130 -72902 Spock3 sparc/osteonectin, cwcv and kazal-like domains proteoglycan 3 Novel N 0.004929416393043675 -0.21292336572665196 1.0 7131 -140806 Il25 interleukin 25 Novel U 0.004927442707676332 -0.21294380909480554 1.0 7132 -66245 Hspbp1 HSPA (heat shock 70kDa) binding protein, cytoplasmic cochaperone 1 Novel U 0.004927157652743203 -0.2129467616844322 1.0 7133 -83409 Lamtor2 late endosomal/lysosomal adaptor, MAPK and MTOR activator 2 Novel U 0.004923646137034665 -0.21298313384870637 1.0 7134 -12391 Cav3 caveolin 3 Novel U 0.004920337991074923 -0.21301739951580792 1.0 7135 -100608 Noc4l NOC4 like Novel U 0.0049196592809565304 -0.21302442957290282 1.0 7136 -54411 Atp6ap1 ATPase, H+ transporting, lysosomal accessory protein 1 Novel U 0.004918816253106753 -0.21303316162765779 1.0 7137 -16617 Klk1b24 kallikrein 1-related peptidase b24 Novel U 0.004917544326910171 -0.21304633619738966 1.0 7138 -170741 Pilrb1 paired immunoglobin-like type 2 receptor beta 1 Novel U 0.0049149287884210306 -0.21307342785907898 1.0 7139 -74375 Gcc1 golgi coiled coil 1 Novel U 0.0049148417572717085 -0.21307432932486267 1.0 7140 -17718 ND3 NADH dehydrogenase subunit 3 Novel N 0.004914079563377182 -0.21308222410416638 1.0 7141 -78908 Igsf3 immunoglobulin superfamily, member 3 Novel U 0.0049135868546843755 -0.21308732756460957 1.0 7142 -20981 Syt3 synaptotagmin III Novel U 0.0049120994694010255 -0.21310273385247935 1.0 7143 -215798 Adgrg6 adhesion G protein-coupled receptor G6 Novel U 0.004909716250361494 -0.21312741915694672 1.0 7144 -20420 Shd src homology 2 domain-containing transforming protein D Novel U 0.004907843940868509 -0.2131468124771262 1.0 7145 -14489 Mtpn myotrophin Novel U 0.0049070460850766705 -0.21315507664118996 1.0 7146 -59030 Mkks McKusick-Kaufman syndrome Novel N 0.004902859094051699 -0.2131984453565867 1.0 7147 -100503043 Armcx4 armadillo repeat containing, X-linked 4 Novel U 0.004902096318316815 -0.21320634616257372 1.0 7148 -70405 Calml3 calmodulin-like 3 Novel U 0.004900069448221454 -0.21322734041639171 1.0 7149 -56484 Foxo3 forkhead box O3 Novel U 0.004899429766267632 -0.213233966221041 1.0 7150 -99650 4933434E20Rik RIKEN cDNA 4933434E20 gene Novel U 0.004898431453723533 -0.21324430670955502 1.0 7151 -212733 Bicdl2 BICD family like cargo adaptor 2 Novel U 0.004898104011888037 -0.213247698341323 1.0 7152 -16865 Eif2d eukaryotic translation initiation factor 2D Novel U 0.004894120782013368 -0.21328895650542318 1.0 7153 -19302 Pex2 peroxisomal biogenesis factor 2 Novel U 0.0048926605213401465 -0.21330408183747293 1.0 7154 -269389 Tox2 TOX high mobility group box family member 2 Novel N 0.0048891734955737835 -0.21334020033573114 1.0 7155 -109676 Ank2 ankyrin 2, brain Novel U 0.004887398109354827 -0.2133585897278244 1.0 7156 -59036 Dact1 dishevelled-binding antagonist of beta-catenin 1 Novel U 0.004887165497689394 -0.21336099911180828 1.0 7157 -75820 Wdr64 WD repeat domain 64 Novel U 0.004886229741221127 -0.21337069164654524 1.0 7158 -54141 Spag5 sperm associated antigen 5 Novel U 0.0048854784012629165 -0.2133784740011334 1.0 7159 -258907 Or7g32 olfactory receptor family 7 subfamily G member 32 Novel U 0.004876246846928203 -0.21347409413746138 1.0 7160 -20388 Sftpb surfactant associated protein B Novel U 0.004874739684547722 -0.2134897052758531 1.0 7161 -319758 Rfx7 regulatory factor X, 7 Novel U 0.004873459496229214 -0.21350296542437228 1.0 7162 -66072 Sdhaf2 succinate dehydrogenase complex assembly factor 2 Novel U 0.004872581633047966 -0.21351205830234546 1.0 7163 -16504 Kcnc3 potassium voltage gated channel, Shaw-related subfamily, member 3 Novel U 0.004870877885968949 -0.21352970565858223 1.0 7164 -12671 Chrm3 cholinergic receptor, muscarinic 3, cardiac Novel U 0.004869796154318135 -0.21354091019946136 1.0 7165 -320722 Akain1 A kinase anchor inhibitor 1 Novel N 0.004865736612174289 -0.21358295880353706 1.0 7166 -210582 Coq10a coenzyme Q10A Novel U 0.004865410897497645 -0.21358633254545042 1.0 7167 -53870 Cntn6 contactin 6 Novel N 0.004864040739228906 -0.2136005245997565 1.0 7168 -73192 Xpot exportin, tRNA (nuclear export receptor for tRNAs) Novel N 0.004861961822102541 -0.21362205795501069 1.0 7169 -231070 Insig1 insulin induced gene 1 Novel U 0.004861859004996271 -0.21362312293121752 1.0 7170 -19286 Pts 6-pyruvoyl-tetrahydropterin synthase Novel U 0.004860759606665939 -0.21363451046298232 1.0 7171 -436522 Try10 trypsin 10 Novel U 0.004860631471209275 -0.21363583768583022 1.0 7172 -27062 Cadps Ca2+-dependent secretion activator Novel U 0.0048590048265161456 -0.2136526864180886 1.0 7173 -54632 Ftsj1 FtsJ RNA 2'-O-methyltransferase 1 Novel U 0.004858249829898363 -0.21366050664823638 1.0 7174 -18569 Pdcd4 programmed cell death 4 Novel U 0.004856586316137527 -0.21367773726908607 1.0 7175 -93723 Pcdhga11 protocadherin gamma subfamily A, 11 Novel U 0.004855684773591717 -0.21368707541713894 1.0 7176 -67605 Akt1s1 AKT1 substrate 1 Novel U 0.004854029090348461 -0.21370422492974495 1.0 7177 -20597 Smpd1 sphingomyelin phosphodiesterase 1, acid lysosomal Novel U 0.004853278493645564 -0.21371199958571901 1.0 7178 -52335 Atxn1l ataxin 1-like Novel U 0.004844312554758065 -0.21380486848597635 1.0 7179 -66637 Tsen15 tRNA splicing endonuclease subunit 15 Novel N 0.004843750553976973 -0.21381068967159214 1.0 7180 -73420 Ccsap centriole, cilia and spindle associated protein Novel U 0.004842921803721889 -0.21381927383949056 1.0 7181 -69169 Fcmr Fc fragment of IgM receptor Novel U 0.004840156935393667 -0.21384791225474417 1.0 7182 -387515 Tas2r144 taste receptor, type 2, member 144 Novel N 0.004839626412270572 -0.21385340739581318 1.0 7183 -59091 Jph2 junctophilin 2 Novel N 0.004839049986990658 -0.21385937798991356 1.0 7184 -15896 Icam2 intercellular adhesion molecule 2 Novel U 0.004838897235229123 -0.21386096018763812 1.0 7185 -66148 Dnajc15 DnaJ heat shock protein family (Hsp40) member C15 Novel U 0.004837652893158016 -0.2138738490419051 1.0 7186 -19277 Ptpro protein tyrosine phosphatase receptor type O Novel U 0.004836294587330521 -0.2138879183290144 1.0 7187 -13489 Drd2 dopamine receptor D2 Novel U 0.004835648794913544 -0.21389460742564012 1.0 7188 -100862059 Gm21440 predicted gene, 21440 Novel U 0.004831732464842069 -0.21393517264377807 1.0 7189 -64381 Ms4a8a membrane-spanning 4-domains, subfamily A, member 8A Novel U 0.004829828247341877 -0.21395489646604726 1.0 7190 -258322 Or52m1 olfactory receptor family 52 subfamily M member 1 Novel U 0.004828267496052512 -0.21397106267659557 1.0 7191 -77578 Bcl9 B cell CLL/lymphoma 9 Novel N 0.004826802206132249 -0.21398624010142087 1.0 7192 -12394 Runx1 runt related transcription factor 1 Novel U 0.004826493504760041 -0.21398943762008618 1.0 7193 -26451 Rpl27a ribosomal protein L27A Novel U 0.004825294355540828 -0.2140018583682789 1.0 7194 -67391 Fundc2 FUN14 domain containing 2 Novel N 0.0048242887047495134 -0.21401227486611632 1.0 7195 -12696 Cirbp cold inducible RNA binding protein Novel U 0.00482313473002302 -0.21402422769839846 1.0 7196 -19696 Rel reticuloendotheliosis oncogene Novel U 0.004822162043494461 -0.21403430275348595 1.0 7197 -319997 A630001G21Rik RIKEN cDNA A630001G21 gene Novel U 0.004822058317506033 -0.21403537714386428 1.0 7198 -13200 Ddost dolichyl-di-phosphooligosaccharide-protein glycotransferase Novel N 0.004819101355841237 -0.21406600525558334 1.0 7199 -17870 Mycs myc-like oncogene, s-myc protein Novel U 0.004816737762771842 -0.21409048727489718 1.0 7200 -57875 Angptl4 angiopoietin-like 4 Novel U 0.00481642886313957 -0.21409368684713376 1.0 7201 -110789 Adgrv1 adhesion G protein-coupled receptor V1 Novel U 0.004814281119442134 -0.21411593310574853 1.0 7202 -269831 Tspan12 tetraspanin 12 Novel N 0.004813529590157008 -0.21412371742137867 1.0 7203 -17388 Mmp15 matrix metallopeptidase 15 Novel U 0.004811578625338363 -0.21414392545083566 1.0 7204 -14615 Gjc1 gap junction protein, gamma 1 Novel U 0.004808717662276347 -0.21417355921218295 1.0 7205 -12623 Ces1g carboxylesterase 1G Novel U 0.004807522566485689 -0.2141859379750959 1.0 7206 -233979 Tpcn2 two pore segment channel 2 Novel U 0.004805362021836123 -0.21420831682555203 1.0 7207 -12649 Chek1 checkpoint kinase 1 Novel U 0.004803980709353884 -0.21422262441483486 1.0 7208 -118568141 LOC118568141 disks large homolog 5-like Novel U 0.004803029512869885 -0.2142324768767472 1.0 7209 -56544 Vmn2r1 vomeronasal 2, receptor 1 Novel U 0.004802689753052811 -0.2142359960977635 1.0 7210 -258333 Or8c15 olfactory receptor family 8 subfamily C member 15 Novel U 0.0048003759953209445 -0.21425996192428948 1.0 7211 -330222 Sdk1 sidekick cell adhesion molecule 1 Novel U 0.004793864824741156 -0.21432740441511172 1.0 7212 -76857 Spopl speckle-type BTB/POZ protein-like Novel U 0.004790125642680803 -0.21436613473997385 1.0 7213 -16613 Klk1b11 kallikrein 1-related peptidase b11 Novel U 0.004789022145003896 -0.21437756473263575 1.0 7214 -23997 Psmd13 proteasome (prosome, macropain) 26S subunit, non-ATPase, 13 Novel U 0.004787134854859094 -0.21439711322191427 1.0 7215 -545140 Or10ad1c olfactory receptor family 10 subfamily AD member 1C Novel U 0.004785926443793852 -0.21440962990400367 1.0 7216 -71810 Ranbp3 RAN binding protein 3 Novel U 0.00478521587902465 -0.2144169899105245 1.0 7217 -246278 Cd207 CD207 antigen Novel N 0.004783554597540531 -0.21443419740952532 1.0 7218 -12097 Bglap2 bone gamma-carboxyglutamate protein 2 Novel U 0.004783148167757472 -0.21443840719585758 1.0 7219 -70415 Stk26 serine/threonine kinase 26 Novel U 0.004781723585522955 -0.2144531629718121 1.0 7220 -54709 Eif3i eukaryotic translation initiation factor 3, subunit I Novel N 0.004781215295646394 -0.21445842782164437 1.0 7221 -209047 Gipc3 GIPC PDZ domain containing family, member 3 Novel N 0.0047810482219122225 -0.21446015836589066 1.0 7222 -20014 Rpn2 ribophorin II Novel N 0.004779902299836688 -0.2144720277890789 1.0 7223 -276846 Pigs phosphatidylinositol glycan anchor biosynthesis, class S Novel U 0.004778879148427388 -0.21448262555774214 1.0 7224 -19252 Dusp1 dual specificity phosphatase 1 Novel U 0.00477765963380853 -0.2144952572500749 1.0 7225 -18021 Nfatc3 nuclear factor of activated T cells, cytoplasmic, calcineurin dependent 3 Novel N 0.004771079863741338 -0.2145634102921326 1.0 7226 -20737 Spn sialophorin Novel U 0.004771063749336997 -0.214563577204603 1.0 7227 -20514 Slc1a5 solute carrier family 1 (neutral amino acid transporter), member 5 Novel U 0.004769310086587069 -0.2145817415857182 1.0 7228 -93728 Pabpc5 poly(A) binding protein, cytoplasmic 5 Novel U 0.004767115678735174 -0.21460447119011086 1.0 7229 -17922 Myo7b myosin VIIB Novel N 0.0047662216138822325 -0.2146137318844668 1.0 7230 -243084 Tmprss11e transmembrane protease, serine 11e Novel N 0.00476364054243551 -0.21464046653766383 1.0 7231 -258601 Or4d5 olfactory receptor family 4 subfamily D member 5 Novel U 0.0047608029382855055 -0.21466985834816835 1.0 7232 -238555 Btn2a2 butyrophilin, subfamily 2, member A2 Novel U 0.004757479510303575 -0.2147042823059534 1.0 7233 -170711 Otud7a OTU domain containing 7A Novel N 0.004755323471416108 -0.2147266144858738 1.0 7234 -71617 Armh3 armadillo-like helical domain containing 3 Novel U 0.004754862523550847 -0.21473138896870933 1.0 7235 -214505 Gnptg N-acetylglucosamine-1-phosphotransferase, gamma subunit Novel U 0.004753447072467477 -0.21474605016450043 1.0 7236 -29856 Smtn smoothelin Novel N 0.004750837989828685 -0.21477307495670409 1.0 7237 -140488 Igf2bp3 insulin-like growth factor 2 mRNA binding protein 3 Novel N 0.004750093273719137 -0.21478078870168554 1.0 7238 -12450 Ccng1 cyclin G1 Novel U 0.004750042515974092 -0.21478131444874016 1.0 7239 -117592 B3galt6 UDP-Gal:betaGal beta 1,3-galactosyltransferase, polypeptide 6 Novel U 0.00474881328488927 -0.21479404678390795 1.0 7240 -237831 Slc13a5 solute carrier family 13 (sodium-dependent citrate transporter), member 5 Novel U 0.004746552023939688 -0.21481746885048877 1.0 7241 -27049 Etv3 ets variant 3 Novel U 0.004742968522060854 -0.21485458664514848 1.0 7242 -12426 Cckbr cholecystokinin B receptor Novel N 0.004740303278782409 -0.21488219314741144 1.0 7243 -67938 Myl12b myosin, light chain 12B, regulatory Novel U 0.004739653333372871 -0.21488892526059764 1.0 7244 -103573 Xpo1 exportin 1 Novel U 0.004738428657797895 -0.21490161040994418 1.0 7245 -319520 Dusp4 dual specificity phosphatase 4 Novel U 0.004734228980209547 -0.2149451105323473 1.0 7246 -56463 Snd1 staphylococcal nuclease and tudor domain containing 1 Novel N 0.004732895520749633 -0.214958922461598 1.0 7247 -399591 Tmsb15l thymosin beta 15b like Novel U 0.00473113356261434 -0.2149771727660421 1.0 7248 -100038941 Vmn2r121 vomeronasal 2, receptor 121 Novel U 0.004724745897170959 -0.21504333599472147 1.0 7249 -231871 Daglb diacylglycerol lipase, beta Novel N 0.004722760921403684 -0.2150638963084663 1.0 7250 -14810 Grin1 glutamate receptor, ionotropic, NMDA1 (zeta 1) Novel U 0.0047201392825172404 -0.2150910511578704 1.0 7251 -231912 Katnal1 katanin p60 subunit A-like 1 Novel N 0.004719221012355322 -0.21510056257002103 1.0 7252 -58234 Shank3 SH3 and multiple ankyrin repeat domains 3 Novel U 0.004716724274784368 -0.21512642369570514 1.0 7253 -208618 Etl4 enhancer trap locus 4 Novel U 0.004714944567459902 -0.21514485784566725 1.0 7254 -217366 Lrrc45 leucine rich repeat containing 45 Novel U 0.00471095880832494 -0.21518614220776242 1.0 7255 -666244 Tmsb15b1 thymosin beta 15b1 Novel U 0.004709018276576825 -0.2152062421718178 1.0 7256 -94186 Strn3 striatin, calmodulin binding protein 3 Novel U 0.004708390176608532 -0.21521274801064172 1.0 7257 -258675 Or4d11 olfactory receptor family 4 subfamily D member 11 Novel U 0.004708312191629456 -0.21521355577649137 1.0 7258 -20028 Pdc phosducin Novel N 0.0047077508911128035 -0.21521936970879113 1.0 7259 -264064 Cdk8 cyclin dependent kinase 8 Novel N 0.004707616839338692 -0.21522075821266065 1.0 7260 -70435 Inf2 inverted formin, FH2 and WH2 domain containing Novel N 0.0047068439315903305 -0.2152287639657102 1.0 7261 -114642 Brdt bromodomain, testis-specific Novel N 0.004704086073599496 -0.2152573297681196 1.0 7262 -16518 Kcnj2 potassium inwardly-rectifying channel, subfamily J, member 2 Novel U 0.0047040067744840205 -0.21525815114575086 1.0 7263 -246228 Vwa1 von Willebrand factor A domain containing 1 Novel U 0.004703992489456051 -0.21525829910960093 1.0 7264 -66679 Rae1 ribonucleic acid export 1 Novel U 0.004702068466980513 -0.21527822807115374 1.0 7265 -67771 Arpc5 actin related protein 2/3 complex, subunit 5 Novel U 0.0047005763154085774 -0.21529368372808402 1.0 7266 -66701 Spryd4 SPRY domain containing 4 Novel U 0.004698876907589321 -0.21531128613841086 1.0 7267 -102566 Ano10 anoctamin 10 Novel N 0.004697380375495165 -0.21532678716864628 1.0 7268 -229534 Pbxip1 pre B cell leukemia transcription factor interacting protein 1 Novel N 0.004695898095691253 -0.21534214057412787 1.0 7269 -20018 Polr1d polymerase (RNA) I polypeptide D Novel U 0.004693480058669726 -0.21536718652210818 1.0 7270 -240174 Thada thyroid adenoma associated Novel N 0.004693139177715886 -0.21537071735582217 1.0 7271 -360212 Defb38 defensin beta 38 Novel U 0.004693062864282808 -0.21537150780785336 1.0 7272 -52432 Ppp2r2d protein phosphatase 2, regulatory subunit B, delta Novel U 0.004692309554762093 -0.2153793105631052 1.0 7273 -17700 Mstn myostatin Novel U 0.004692050150689819 -0.21538199746195835 1.0 7274 -228775 Trib3 tribbles pseudokinase 3 Novel U 0.004689654459381219 -0.21540681195377873 1.0 7275 -73316 Calr3 calreticulin 3 Novel U 0.004689090233717264 -0.21541265618465805 1.0 7276 -22173 Tyr tyrosinase Novel U 0.004689076563962482 -0.2154127977755287 1.0 7277 -13819 Epas1 endothelial PAS domain protein 1 Novel U 0.0046865231633825164 -0.21543924581479745 1.0 7278 -17304 Mfge8 milk fat globule EGF and factor V/VIII domain containing Novel U 0.004686344598755144 -0.2154410953813378 1.0 7279 -74306 Prss46 serine protease 46 Novel U 0.004686322926727475 -0.21544131985948795 1.0 7280 -108097 Prkab2 protein kinase, AMP-activated, beta 2 non-catalytic subunit Novel N 0.004685803178388708 -0.21544670339569508 1.0 7281 -64293 Stk32b serine/threonine kinase 32B Novel U 0.004684927937398655 -0.21545576911309808 1.0 7282 -242667 Dlgap3 DLG associated protein 3 Novel U 0.004682921013123284 -0.21547655676876828 1.0 7283 -14308 Fshb follicle stimulating hormone beta Novel U 0.004682835918924354 -0.2154774381716835 1.0 7284 -11648 Akp3 alkaline phosphatase 3, intestine, not Mn requiring Novel U 0.0046822195659763505 -0.2154838223352574 1.0 7285 -105522 Ankrd28 ankyrin repeat domain 28 Novel U 0.004678333659075611 -0.21552407243119295 1.0 7286 -227289 Gpbar1 G protein-coupled bile acid receptor 1 Novel U 0.004677787862232977 -0.21552972577694682 1.0 7287 -72787 Ndc1 NDC1 transmembrane nucleoporin Novel U 0.004675990118359908 -0.21554834674888645 1.0 7288 -72778 Dnajc22 DnaJ heat shock protein family (Hsp40) member C22 Novel U 0.004673602991425695 -0.21557307253119845 1.0 7289 -21838 Thy1 thymus cell antigen 1, theta Novel U 0.004672780197094042 -0.21558159500783783 1.0 7290 -233230 Mrgprb4 MAS-related GPR, member B4 Novel U 0.004668865900304918 -0.21562213916530396 1.0 7291 -66410 Mterf3 mitochondrial transcription termination factor 3 Novel N 0.00466798431125249 -0.21563127063572834 1.0 7292 -338351 Akap17b A kinase anchor protein 17B Novel U 0.004666245651274447 -0.21564927961862554 1.0 7293 -66406 Sac3d1 SAC3 domain containing 1 Novel U 0.004662378676399949 -0.21568933361725565 1.0 7294 -20539 Slc7a5 solute carrier family 7 (cationic amino acid transporter, y+ system), member 5 Novel U 0.004660737389283013 -0.21570633401525846 1.0 7295 -66815 Mcub mitochondrial calcium uniporter dominant negative beta subunit Novel U 0.004659591045628098 -0.21571820780515202 1.0 7296 -213208 Il20rb interleukin 20 receptor beta Novel U 0.004658115082777087 -0.21573349577984313 1.0 7297 -72007 Fndc3b fibronectin type III domain containing 3B Novel U 0.004658092246041225 -0.2157337323220025 1.0 7298 -258352 Or52w1 olfactory receptor family 52 subfamily W member 1 Novel U 0.004654329393883424 -0.2157727078209559 1.0 7299 -76863 Dcun1d5 defective in cullin neddylation 1 domain containing 5 Novel N 0.004654125630327721 -0.21577481839716753 1.0 7300 -66899 Fip1l1 factor interacting with PAPOLA and CPSF1 Novel U 0.004653986142699654 -0.2157762632054336 1.0 7301 -224903 Safb scaffold attachment factor B Novel N 0.004653736604742725 -0.21577884791138838 1.0 7302 -258526 Or2b28 olfactory receptor family 2 subfamily B member 28 Novel U 0.0046515929721835615 -0.21580105158696805 1.0 7303 -74145 F13a1 coagulation factor XIII, A1 subunit Novel U 0.004649729819493188 -0.2158203500612871 1.0 7304 -56788 Scube2 signal peptide, CUB domain, EGF-like 2 Novel U 0.004644289187030275 -0.2158767039534868 1.0 7305 -13345 Twist2 twist basic helix-loop-helix transcription factor 2 Novel U 0.0046442670262187334 -0.21587693349444426 1.0 7306 -218275 BC051665 cDNA sequence BC051665 Novel U 0.004643510319911882 -0.21588477143349524 1.0 7307 -246179 Fktn fukutin Novel U 0.004643065929196036 -0.2158893744179214 1.0 7308 -13664 Eif1a eukaryotic translation initiation factor 1A Novel U 0.004641195914928893 -0.21590874396422705 1.0 7309 -327814 Ppfia2 protein tyrosine phosphatase, receptor type, f polypeptide (PTPRF), interacting protein (liprin), alpha 2 Novel U 0.004637922958039699 -0.21594264514409267 1.0 7310 -258636 Or5d16 olfactory receptor family 5 subfamily D member 16 Novel U 0.004637082882031617 -0.21595134662376836 1.0 7311 -19305 Pex5 peroxisomal biogenesis factor 5 Novel U 0.004635796266145404 -0.21596467334882255 1.0 7312 -71474 Ppp6r2 protein phosphatase 6, regulatory subunit 2 Novel U 0.004635378839704381 -0.2159689970381765 1.0 7313 -100043868 Scgb1b30 secretoglobin, family 1B, member 30 Novel U 0.004634677315244741 -0.2159762634054681 1.0 7314 -613262 Mmp24os1 matrix metallopeptidase 24 opposite strand transcript 1 Novel U 0.004633350275232942 -0.21599000884228622 1.0 7315 -56742 Psrc1 proline/serine-rich coiled-coil 1 Novel U 0.004631568111678621 -0.2160084684337964 1.0 7316 -17896 Myl4 myosin, light polypeptide 4 Novel U 0.004631291695363697 -0.21601133154489968 1.0 7317 -67912 1600012H06Rik RIKEN cDNA 1600012H06 gene Novel U 0.004631228013719659 -0.2160119911572752 1.0 7318 -56629 Dnase2b deoxyribonuclease II beta Novel U 0.004627576551272827 -0.21604981288526412 1.0 7319 -67252 Cap2 cyclase associated actin cytoskeleton regulatory protein 2 Novel U 0.0046250979549108985 -0.21607548610490152 1.0 7320 -258723 Or6c35 olfactory receptor family 6 subfamily C member 35 Novel U 0.004624212615897131 -0.21608465641730218 1.0 7321 -12308 Calb2 calbindin 2 Novel U 0.004623561637929145 -0.2160913992256948 1.0 7322 -387131 Ssxb9 SSX member B9 Novel U 0.004623481591230436 -0.21609222834676867 1.0 7323 -229011 Samd10 sterile alpha motif domain containing 10 Novel U 0.004622894636014947 -0.21609830800959556 1.0 7324 -27207 Rps11 ribosomal protein S11 Novel N 0.0046213392024168 -0.21611441913967305 1.0 7325 -19694 Reg3a regenerating islet-derived 3 alpha Novel U 0.004621209425341597 -0.21611576336635183 1.0 7326 -226610 Fam78b family with sequence similarity 78, member B Novel U 0.004620870849210305 -0.21611927032678965 1.0 7327 -232801 Lilra5 leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 5 Novel U 0.00461998598708173 -0.21612843569962917 1.0 7328 -14221 Fjx1 four jointed box 1 Novel U 0.0046192767878391276 -0.21613578156207036 1.0 7329 -13426 Dync1i1 dynein cytoplasmic 1 intermediate chain 1 Novel U 0.004618384151113078 -0.2161450274639349 1.0 7330 -269799 Clec4a1 C-type lectin domain family 4, member a1 Novel U 0.004617095641014491 -0.21615837380917863 1.0 7331 -320333 D830030K20Rik RIKEN cDNA D830030K20 gene Novel U 0.004615778472057638 -0.2161720170019341 1.0 7332 -227292 Ctdsp1 CTD small phosphatase 1 Novel N 0.004613401204474643 -0.21619664066141028 1.0 7333 -76784 Mtif2 mitochondrial translational initiation factor 2 Novel N 0.004613193710403403 -0.21619878987817923 1.0 7334 -170771 Khdrbs2 KH domain containing, RNA binding, signal transduction associated 2 Novel U 0.004612594083260661 -0.21620500079641206 1.0 7335 -320253 Marchf3 membrane associated ring-CH-type finger 3 Novel U 0.00461150590575247 -0.21621627210326996 1.0 7336 -22337 Vdr vitamin D (1,25-dihydroxyvitamin D3) receptor Novel U 0.004609823242289677 -0.216233701076103 1.0 7337 -20492 Slbp stem-loop binding protein Novel N 0.004608677694790029 -0.21624556661944652 1.0 7338 -52892 Sco1 SCO1 cytochrome c oxidase assembly protein Novel N 0.004599901536762071 -0.21633646977579943 1.0 7339 -67974 Ccny cyclin Y Novel U 0.004599078336251508 -0.2163449964596266 1.0 7340 -76138 Ccdc138 coiled-coil domain containing 138 Novel U 0.004597492305377936 -0.2163614245152771 1.0 7341 -16413 Itgb1bp1 integrin beta 1 binding protein 1 Novel U 0.004597128359957206 -0.21636519424998096 1.0 7342 -53605 Nap1l1 nucleosome assembly protein 1-like 1 Novel N 0.004594384734544435 -0.2163936126318146 1.0 7343 -11991 Hnrnpd heterogeneous nuclear ribonucleoprotein D Novel N 0.004593359216981621 -0.21640423490901817 1.0 7344 -14919 Gucy2e guanylate cyclase 2e Novel U 0.004593357246637667 -0.21640425531777607 1.0 7345 -319455 Pld5 phospholipase D family member 5 Novel U 0.004592679698622682 -0.2164112733378421 1.0 7346 -19419 Rasgrp1 RAS guanyl releasing protein 1 Novel U 0.004590613569448078 -0.2164326742359123 1.0 7347 -72026 Trmu tRNA 5-methylaminomethyl-2-thiouridylate methyltransferase Novel U 0.00459037565180486 -0.21643513857903962 1.0 7348 -16998 Ltbp3 latent transforming growth factor beta binding protein 3 Novel U 0.004589500185045184 -0.21644420663495695 1.0 7349 -382562 Pfn4 profilin family, member 4 Novel U 0.004589187057548598 -0.2164474499992731 1.0 7350 -27055 Fkbp9 FK506 binding protein 9 Novel U 0.004588482078831012 -0.2164547521456549 1.0 7351 -14068 F7 coagulation factor VII Novel U 0.0045870723850670505 -0.21646935370732084 1.0 7352 -19069 Nup88 nucleoporin 88 Novel U 0.004586944982717367 -0.21647067333667075 1.0 7353 -16906 Lmnb1 lamin B1 Novel U 0.004583181813921623 -0.21650965211534953 1.0 7354 -76897 Ralyl RALY RNA binding protein-like Novel U 0.0045830266068920406 -0.2165112597446598 1.0 7355 -67979 Atad1 ATPase family, AAA domain containing 1 Novel U 0.004582248344734747 -0.21651932095850104 1.0 7356 -74569 Ttc17 tetratricopeptide repeat domain 17 Novel U 0.004582177451035049 -0.21652005527311202 1.0 7357 -22353 Vip vasoactive intestinal polypeptide Novel U 0.0045818573727948895 -0.21652337063300156 1.0 7358 -66286 Sec11c SEC11 homolog C, signal peptidase complex subunit Novel N 0.004581835304866315 -0.2165235992118803 1.0 7359 -244585 Rpgrip1l Rpgrip1-like Novel U 0.0045816856248989245 -0.2165251495920621 1.0 7360 -17105 Lyz2 lysozyme 2 Novel U 0.004581626358066452 -0.21652576347596453 1.0 7361 -73852 D3Ertd751e DNA segment, Chr 3, ERATO Doi 751, expressed Novel U 0.004577515698553022 -0.216568341552074 1.0 7362 -26380 Esrrb estrogen related receptor, beta Novel N 0.0045770508815129824 -0.21657315611169467 1.0 7363 -15415 Hoxb7 homeobox B7 Novel N 0.004576667537469493 -0.2165771267766954 1.0 7364 -110521 Hivep1 human immunodeficiency virus type I enhancer binding protein 1 Novel U 0.004572153243889634 -0.21662388568119617 1.0 7365 -52717 Anapc16 anaphase promoting complex subunit 16 Novel N 0.00457204621673263 -0.21662499426497006 1.0 7366 -22228 Ucp2 uncoupling protein 2 (mitochondrial, proton carrier) Novel N 0.004571892978785383 -0.21662658149859024 1.0 7367 -320707 Atp2b3 ATPase, Ca++ transporting, plasma membrane 3 Novel N 0.004570556055136391 -0.2166404293097975 1.0 7368 -105675 Ppif peptidylprolyl isomerase F (cyclophilin F) Novel N 0.004569669224651395 -0.2166496150708081 1.0 7369 -56420 Ppp4c protein phosphatase 4, catalytic subunit Novel N 0.004568560202542398 -0.21666110228535596 1.0 7370 -16006 Igfbp1 insulin-like growth factor binding protein 1 Novel N 0.004567434264809392 -0.21667276471138122 1.0 7371 -19411 Rarg retinoic acid receptor, gamma Novel U 0.0045657037975928485 -0.21669068883392414 1.0 7372 -29806 Limd1 LIM domains containing 1 Novel U 0.004565503250641155 -0.21669276609265714 1.0 7373 -12523 Cd84 CD84 antigen Novel U 0.004563278765932031 -0.21671580723214828 1.0 7374 -171530 Ucn2 urocortin 2 Novel N 0.004562874275761716 -0.21671999692803548 1.0 7375 -72242 Psg21 pregnancy-specific beta-1-glycoprotein 21 Novel U 0.004562741441622859 -0.2167213728196791 1.0 7376 -68655 Fndc1 fibronectin type III domain containing 1 Novel U 0.004560843504511158 -0.21674103158989078 1.0 7377 -15531 Ndst1 N-deacetylase/N-sulfotransferase (heparan glucosaminyl) 1 Novel N 0.004554644868073177 -0.21680523686234618 1.0 7378 -268373 Ppia peptidylprolyl isomerase A Novel U 0.004552179998010459 -0.21683076790542757 1.0 7379 -14073 Faah fatty acid amide hydrolase Novel N 0.00455021958076426 -0.21685107384281843 1.0 7380 -16491 Kcna3 potassium voltage-gated channel, shaker-related subfamily, member 3 Novel N 0.004548849808626082 -0.2168652618975969 1.0 7381 -12558 Cdh2 cadherin 2 Novel U 0.0045473985156184 -0.21688029434286174 1.0 7382 -76007 Zmym2 zinc finger, MYM-type 2 Novel N 0.004547126864122167 -0.21688310810012965 1.0 7383 -331531 Pramel3e PRAME like 3E Novel U 0.00454706989198549 -0.2168836982156485 1.0 7384 -100045778 Rnf223 ring finger 223 Novel U 0.004546910355126165 -0.2168853506931929 1.0 7385 -223701 Mrtfa myocardin related transcription factor A Novel U 0.004545803096148982 -0.21689681964527938 1.0 7386 -26950 Vsnl1 visinin-like 1 Novel U 0.0045431581065868195 -0.21692421636021494 1.0 7387 -71946 Endod1 endonuclease domain containing 1 Novel U 0.004540267816187734 -0.21695415389315548 1.0 7388 -69439 Mroh4 maestro heat-like repeat family member 4 Novel U 0.004540092501867368 -0.2169559697931227 1.0 7389 -207175 Cetn4 centrin 4 Novel U 0.004539169815814894 -0.21696552694492252 1.0 7390 -224938 Pja2 praja ring finger ubiquitin ligase 2 Novel U 0.004538054474984447 -0.21697707960857943 1.0 7391 -101592 Efl1 elongation factor like GTPase 1 Novel U 0.0045374455325315095 -0.21698338701448908 1.0 7392 -380916 Lrch1 leucine-rich repeats and calponin homology (CH) domain containing 1 Novel U 0.004535723465013352 -0.21700122413323222 1.0 7393 -20648 Snta1 syntrophin, acidic 1 Novel U 0.004534182714624143 -0.2170171831751142 1.0 7394 -12316 Aspm abnormal spindle microtubule assembly Novel U 0.004530047055092315 -0.2170600202005924 1.0 7395 -12262 C1qc complement component 1, q subcomponent, C chain Novel U 0.004527327999257311 -0.21708818409154723 1.0 7396 -225849 Ppp2r5b protein phosphatase 2, regulatory subunit B', beta Novel U 0.004526243889541443 -0.21709941326434598 1.0 7397 -69482 Nup35 nucleoporin 35 Novel U 0.004523784918593896 -0.2171248832045864 1.0 7398 -57278 Bcam basal cell adhesion molecule Novel N 0.004523583639985675 -0.21712696804179363 1.0 7399 -14723 Gp1ba glycoprotein 1b, alpha polypeptide Novel U 0.004522111342656399 -0.2171422180491311 1.0 7400 -414089 Gja6 gap junction protein, alpha 6 Novel U 0.004521049052256692 -0.21715322121817038 1.0 7401 -67216 Mboat2 membrane bound O-acyltransferase domain containing 2 Novel U 0.004520696348497664 -0.21715687451211188 1.0 7402 -100040657 Gm2888 predicted gene 2888 Novel U 0.004517167137604446 -0.21719342996252725 1.0 7403 -11815 Apod apolipoprotein D Novel U 0.0045166344400458715 -0.21719894762632752 1.0 7404 -60441 Mrpl38 mitochondrial ribosomal protein L38 Novel U 0.004515805398948224 -0.21720753480676366 1.0 7405 -381922 Cdiptos CDIP transferase, opposite strand Novel U 0.004514190916699642 -0.21722425756082125 1.0 7406 -74019 Traf3ip1 TRAF3 interacting protein 1 Novel U 0.004513769323588039 -0.2172286244084121 1.0 7407 -223838 Adamts20 ADAM metallopeptidase with thrombospondin type 1 motif 20 Novel U 0.004511615995041202 -0.21725092851471337 1.0 7408 -18162 Npr3 natriuretic peptide receptor 3 Novel N 0.0045103096703230814 -0.21726445938320055 1.0 7409 -100042499 Vmn2r55 vomeronasal 2, receptor 55 Novel U 0.004508238898846914 -0.21728590836607772 1.0 7410 -67713 Dnajc19 DnaJ heat shock protein family (Hsp40) member C19 Novel U 0.004507783017057529 -0.2172906303746659 1.0 7411 -217232 Cdc27 cell division cycle 27 Novel U 0.004506931311423142 -0.21729945231362854 1.0 7412 -18331 Or4b1d olfactory receptor family 4 subfamily B member 1D Novel U 0.004506786827499449 -0.21730094887336052 1.0 7413 -381284 Crocc2 ciliary rootlet coiled-coil, rootletin family member 2 Novel U 0.0045005936900473 -0.21736509718750144 1.0 7414 -26368 Ceacam9 CEA cell adhesion molecule 9 Novel U 0.004496113631487734 -0.21741150148678745 1.0 7415 -56458 Foxo1 forkhead box O1 Novel U 0.004492825889331655 -0.2174455558119614 1.0 7416 -14268 Fn1 fibronectin 1 Novel U 0.004492729567131293 -0.21744655351414632 1.0 7417 -665227 Vmn2r94 vomeronasal 2, receptor 94 Novel U 0.004492580397507634 -0.2174480986082045 1.0 7418 -72349 Dusp3 dual specificity phosphatase 3 (vaccinia virus phosphatase VH1-related) Novel U 0.004489033601667316 -0.2174848362029239 1.0 7419 -574402 Gpr17 G protein-coupled receptor 17 Novel N 0.0044888518377469684 -0.21748671890763568 1.0 7420 -108112 Eif4ebp3 eukaryotic translation initiation factor 4E binding protein 3 Novel U 0.0044887974720155144 -0.21748728202609488 1.0 7421 -102634532 Gm3642 predicted gene 3642 Novel U 0.004486769533951951 -0.21750828734189243 1.0 7422 -75219 Dusp18 dual specificity phosphatase 18 Novel N 0.004486587311417938 -0.21751017479690948 1.0 7423 -237500 Tmtc3 transmembrane and tetratricopeptide repeat containing 3 Novel U 0.004483588402422267 -0.21754123739770284 1.0 7424 -72632 Smim18 small integral membrane protein 18 Novel U 0.004483121778610243 -0.21754607067180834 1.0 7425 -71999 Fbxo22 F-box protein 22 Novel U 0.004482474834466813 -0.21755277169797885 1.0 7426 -14852 Gspt1 G1 to S phase transition 1 Novel U 0.004478734265552257 -0.21759151638783125 1.0 7427 -11475 Acta2 actin alpha 2, smooth muscle, aorta Novel U 0.004478646464285046 -0.21759242583047067 1.0 7428 -387586 Ssxb5 SSX member B5 Novel U 0.00447738506654213 -0.2176054913468256 1.0 7429 -77531 Anks1b ankyrin repeat and sterile alpha motif domain containing 1B Novel U 0.004475209786199625 -0.2176280228291048 1.0 7430 -242093 Rxfp4 relaxin family peptide receptor 4 Novel U 0.00447462534195561 -0.2176340764833717 1.0 7431 -76130 Las1l LAS1-like (S. cerevisiae) Novel U 0.004473895386322113 -0.2176416373398275 1.0 7432 -19271 Ptprj protein tyrosine phosphatase receptor type J Novel U 0.004473840085213882 -0.21764221014688861 1.0 7433 -238455 Macc1 metastasis associated in colon cancer 1 Novel N 0.004468145912952003 -0.21770119019599132 1.0 7434 -20650 Sntb2 syntrophin, basic 2 Novel U 0.004467573591371227 -0.2177071182841109 1.0 7435 -69719 Cad carbamoyl-phosphate synthetase 2, aspartate transcarbamylase, and dihydroorotase Novel N 0.0044668694722057286 -0.2177144115272805 1.0 7436 -17386 Mmp13 matrix metallopeptidase 13 Novel U 0.004462647820777882 -0.2177581392539908 1.0 7437 -75454 Phpt1 phosphohistidine phosphatase 1 Novel U 0.004459858694783154 -0.2177870289293566 1.0 7438 -72569 Bbs5 Bardet-Biedl syndrome 5 Novel N 0.0044575132723185425 -0.21781132273814346 1.0 7439 -68054 Serpina12 serine (or cysteine) peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 12 Novel N 0.004457188638903202 -0.2178146852803878 1.0 7440 -76306 Slc18b1 solute carrier family 18, subfamily B, member 1 Novel U 0.004455132943235402 -0.21783597810853753 1.0 7441 -64292 Ptges prostaglandin E synthase Novel N 0.00445204180893824 -0.21786799597597198 1.0 7442 -100041874 Gm3558 predicted gene 3558 Novel U 0.004452022783360653 -0.21786819304227917 1.0 7443 -246746 Cd300lf CD300 molecule like family member F Novel U 0.004451989504609317 -0.21786853774249154 1.0 7444 -258917 Or6z3 olfactory receptor family 6 subfamily Z member 3 Novel U 0.004450880194041547 -0.21788002794488587 1.0 7445 -14733 Gpc1 glypican 1 Novel N 0.004449324047181633 -0.21789614646290528 1.0 7446 -76113 Lpo lactoperoxidase Novel N 0.004445610946416834 -0.21793460663856548 1.0 7447 -115488284 Gm3752 predicted gene 3752 Novel U 0.004445106651248782 -0.21793983011133836 1.0 7448 -76055 Oga O-GlcNAcase Novel N 0.004445105899657293 -0.21793983789629828 1.0 7449 -76295 Atp11b ATPase, class VI, type 11B Novel N 0.004442687504290491 -0.21796488755600715 1.0 7450 -69183 C1qtnf2 C1q and tumor necrosis factor related protein 2 Novel U 0.004441550817597923 -0.21797666131940222 1.0 7451 -66729 Ankrd61 ankyrin repeat domain 61 Novel U 0.004441021748609637 -0.21798214139859068 1.0 7452 -118567354 Gm27179 predicted gene 27179 Novel U 0.004440828225627554 -0.21798414590327733 1.0 7453 -18285 Odf1 outer dense fiber of sperm tails 1 Novel U 0.004439466674251621 -0.2179982488076707 1.0 7454 -71952 Riox1 ribosomal oxygenase 1 Novel U 0.004434147675911861 -0.21805334281762126 1.0 7455 -227738 Lrsam1 leucine rich repeat and sterile alpha motif containing 1 Novel U 0.004433560396824146 -0.21805942583510607 1.0 7456 -269016 Sh3rf2 SH3 domain containing ring finger 2 Novel U 0.004433516373019287 -0.21805988183222957 1.0 7457 -230899 Nppa natriuretic peptide type A Novel U 0.00443165988284282 -0.2180791112964486 1.0 7458 -80914 Uck2 uridine-cytidine kinase 2 Novel N 0.004426104884311022 -0.2181366497886302 1.0 7459 -330581 Vmn2r69 vomeronasal 2, receptor 69 Novel U 0.004425364371642993 -0.21814431999450265 1.0 7460 -66977 Nuf2 NUF2, NDC80 kinetochore complex component Novel U 0.004424819389549787 -0.21814996490110872 1.0 7461 -66181 Nop10 NOP10 ribonucleoprotein Novel U 0.004422783352219631 -0.21817105410884335 1.0 7462 -229688 Chil6 chitinase-like 6 Novel U 0.004420406537107195 -0.2181956730816444 1.0 7463 -67608 Narf nuclear prelamin A recognition factor Novel U 0.004419551509272304 -0.21820452943185067 1.0 7464 -319764 Sertm2 serine rich and transmembrane domain containing 2 Novel U 0.004414107020624873 -0.21826092326628282 1.0 7465 -258676 Or4d10b olfactory receptor family 4 subfamily D member 10B Novel U 0.004411085488652632 -0.21829222019512382 1.0 7466 -80751 Rnf34 ring finger protein 34 Novel U 0.004410476182208371 -0.21829853137124358 1.0 7467 -12263 C2 complement C2 Novel U 0.0044097892090254175 -0.2183056470168896 1.0 7468 -115489970 Gm12790 predicted gene 12790 Novel U 0.004408415476324036 -0.21831987609505143 1.0 7469 -27362 Dnajb9 DnaJ heat shock protein family (Hsp40) member B9 Novel U 0.004405707147401851 -0.21834792887699592 1.0 7470 -218885 Oxnad1 oxidoreductase NAD-binding domain containing 1 Novel U 0.00440261044382768 -0.21838000443081854 1.0 7471 -107071 Wdr74 WD repeat domain 74 Novel N 0.004401322742982231 -0.21839334239384484 1.0 7472 -73569 Vgll3 vestigial like family member 3 Novel U 0.004400389608892059 -0.21840300776607569 1.0 7473 -26373 Clcn7 chloride channel, voltage-sensitive 7 Novel U 0.004393310707552895 -0.21847633079344042 1.0 7474 -69163 Mrpl44 mitochondrial ribosomal protein L44 Novel N 0.004391802841256712 -0.21849194922296783 1.0 7475 -11826 Aqp1 aquaporin 1 Novel U 0.0043916129987000155 -0.21849391560592937 1.0 7476 -102638514 Tex51 testis expressed 51 Novel U 0.004391594417693228 -0.21849410806738684 1.0 7477 -223435 Trio triple functional domain (PTPRF interacting) Novel U 0.0043900270486086045 -0.21851034282484091 1.0 7478 -242341 Atp6v0d2 ATPase, H+ transporting, lysosomal V0 subunit D2 Novel U 0.004387232213921192 -0.21853929163065788 1.0 7479 -100041151 Gm3636 predicted gene 3636 Novel U 0.004383896782918086 -0.21857383991534166 1.0 7480 -71683 Gypc glycophorin C Novel N 0.004381577683719968 -0.2185978610685995 1.0 7481 -224813 Lrrc73 leucine rich repeat containing 73 Novel U 0.004380120254510161 -0.21861295707244427 1.0 7482 -278304 Zfp385c zinc finger protein 385C Novel U 0.004379794345057112 -0.21861633283184526 1.0 7483 -239405 Rspo2 R-spondin 2 Novel U 0.004373110588984322 -0.21868556295753055 1.0 7484 -224088 Atp13a3 ATPase type 13A3 Novel N 0.004372188911450188 -0.2186951096631306 1.0 7485 -328795 Ubash3a ubiquitin associated and SH3 domain containing, A Novel U 0.00436821337500829 -0.21873628813890705 1.0 7486 -64085 Clstn2 calsyntenin 2 Novel U 0.004368106619704497 -0.2187373939068344 1.0 7487 -12447 Ccne1 cyclin E1 Novel N 0.004367645674473726 -0.21874216836238192 1.0 7488 -12039 Bckdha branched chain ketoacid dehydrogenase E1, alpha polypeptide Novel N 0.004367479056506487 -0.2187438941858093 1.0 7489 -435772 Cnbd1 cyclic nucleotide binding domain containing 1 Novel U 0.004366941853501611 -0.21874945851687422 1.0 7490 -100042968 Vmn1r101 vomeronasal 1 receptor 101 Novel U 0.00436513276634171 -0.21876819698220595 1.0 7491 -20778 Scarb1 scavenger receptor class B, member 1 Novel U 0.004365059643192488 -0.21876895438938182 1.0 7492 -234686 Fhod1 formin homology 2 domain containing 1 Novel U 0.004363274167613816 -0.21878744828673133 1.0 7493 -11637 Ak2 adenylate kinase 2 Novel U 0.004363230386346412 -0.21878790177165988 1.0 7494 -17084 Ly86 lymphocyte antigen 86 Novel U 0.004362666544982627 -0.2187937420219707 1.0 7495 -19171 Psmb10 proteasome (prosome, macropain) subunit, beta type 10 Novel U 0.004362274259918506 -0.21879780529776915 1.0 7496 -69847 Wnk4 WNK lysine deficient protein kinase 4 Novel U 0.004360822286777281 -0.21881284478783494 1.0 7497 -258506 Or10c1 olfactory receptor family 10 subfamily C member 1 Novel U 0.004359248410496755 -0.21882914694661024 1.0 7498 -259008 Or1e32 olfactory receptor family 1 subfamily E member 32 Novel U 0.0043592160536386855 -0.21882948209788242 1.0 7499 -74376 Myo18b myosin XVIIIb Novel N 0.004356901958642464 -0.2188534514177815 1.0 7500 -237362 Npffr1 neuropeptide FF receptor 1 Novel U 0.0043557735629739126 -0.21886513930302234 1.0 7501 -171227 Vmn1r232 vomeronasal 1 receptor 232 Novel U 0.004355691476138417 -0.21886598955576594 1.0 7502 -109901 Cela1 chymotrypsin-like elastase family, member 1 Novel U 0.004354681972172296 -0.21887644596466138 1.0 7503 -16425 Itih2 inter-alpha trypsin inhibitor, heavy chain 2 Novel U 0.004353844271947739 -0.21888512283604944 1.0 7504 -19038 Ppic peptidylprolyl isomerase C Novel N 0.0043531414456950334 -0.21889240268727078 1.0 7505 -22780 Ikzf3 IKAROS family zinc finger 3 Novel N 0.00435196873951604 -0.21890454953932217 1.0 7506 -17928 Myog myogenin Novel N 0.004349975101162895 -0.21892519957984674 1.0 7507 -68028 Rpl22l1 ribosomal protein L22 like 1 Novel U 0.004347636080538597 -0.21894942707858206 1.0 7508 -26894 Cops7a COP9 signalosome subunit 7A Novel N 0.0043472252612784135 -0.21895368233097404 1.0 7509 -13006 Smc3 structural maintenance of chromosomes 3 Novel U 0.004343821874998906 -0.2189889344941769 1.0 7510 -70297 Gcc2 GRIP and coiled-coil domain containing 2 Novel U 0.004343755013071432 -0.21898962704782368 1.0 7511 -435916 Vmn2r23 vomeronasal 2, receptor 23 Novel U 0.004343328095620167 -0.21899404904474973 1.0 7512 -16539 Kcns2 K+ voltage-gated channel, subfamily S, 2 Novel U 0.0043365923945067305 -0.2190638172154585 1.0 7513 -243634 Ano2 anoctamin 2 Novel N 0.004335915210686652 -0.21907083146320563 1.0 7514 -50875 Tmod3 tropomodulin 3 Novel U 0.004333885232617352 -0.2190918579093155 1.0 7515 -238323 Rps6kl1 ribosomal protein S6 kinase-like 1 Novel U 0.0043335683013885655 -0.21909514067256472 1.0 7516 -72999 Insig2 insulin induced gene 2 Novel U 0.004331488253249484 -0.21911668574281143 1.0 7517 -14611 Gja3 gap junction protein, alpha 3 Novel N 0.00433138560612941 -0.21911774895830682 1.0 7518 -215160 Rhbdd2 rhomboid domain containing 2 Novel U 0.004329749386215854 -0.2191346968703836 1.0 7519 -12608 Cebpb CCAAT/enhancer binding protein beta Novel N 0.004329097775896731 -0.21914144622864856 1.0 7520 -81703 Jdp2 Jun dimerization protein 2 Novel N 0.004328636509304169 -0.21914622401285097 1.0 7521 -100929 Tyw1 tRNA-yW synthesizing protein 1 homolog (S. cerevisiae) Novel U 0.004328437274857011 -0.21914828767670513 1.0 7522 -12367 Casp3 caspase 3 Novel U 0.004327700883561918 -0.21915591519353217 1.0 7523 -18786 Plaa phospholipase A2, activating protein Novel U 0.0043250068314352 -0.21918382009689852 1.0 7524 -545874 Vmn2r25 vomeronasal 2, receptor 25 Novel U 0.004324641286662081 -0.21918760639764187 1.0 7525 -628444 Vmn2r59 vomeronasal 2, receptor 59 Novel U 0.004324206506670084 -0.21919210983450632 1.0 7526 -116731 Pcdha1 protocadherin alpha 1 Novel U 0.004321980326238273 -0.2192151685382373 1.0 7527 -11474 Actn3 actinin alpha 3 Novel U 0.004321827816341214 -0.21921674823073756 1.0 7528 -12562 Cdh5 cadherin 5 Novel U 0.004321705073872927 -0.21921801959318912 1.0 7529 -100862274 Btbd35f25 BTB domain containing 35, family member 25 Novel U 0.004321274501767332 -0.21922247944490458 1.0 7530 -791411 Gm13199 predicted gene 13199 Novel U 0.004320144545797291 -0.21923418349169696 1.0 7531 -77035 Kdm8 lysine (K)-specific demethylase 8 Novel N 0.004319802503307974 -0.21923772635655728 1.0 7532 -408191 Semp2l1 SUMO/sentrin specific peptidase 2-like 1 Novel U 0.004319325175779381 -0.21924267049940716 1.0 7533 -22781 Ikzf4 IKAROS family zinc finger 4 Novel U 0.004316912822502076 -0.2192676575753516 1.0 7534 -23954 Nek3 NIMA (never in mitosis gene a)-related expressed kinase 3 Novel U 0.004315760269620432 -0.21927959568021155 1.0 7535 -110058 Syt17 synaptotagmin XVII Novel U 0.004314732229936694 -0.21929024408146072 1.0 7536 -12049 Bcl2l10 Bcl2-like 10 Novel U 0.004313853051419303 -0.21929935058364242 1.0 7537 -100038847 Gm10406 predicted gene 10406 Novel U 0.004313832066493564 -0.21929956794481337 1.0 7538 -271221 Rubcnl RUN and cysteine rich domain containing beclin 1 interacting protein like Novel U 0.004312025940499229 -0.21931827573848953 1.0 7539 -12933 Crmp1 collapsin response mediator protein 1 Novel U 0.004309069966200596 -0.21934889362310236 1.0 7540 -84036 Kcnn1 potassium intermediate/small conductance calcium-activated channel, subfamily N, member 1 Novel N 0.004307837484645769 -0.21936165962653156 1.0 7541 -622486 Smok3c sperm motility kinase 3C Novel U 0.004307317991842664 -0.21936704051590872 1.0 7542 -13586 Ear1 eosinophil-associated, ribonuclease A family, member 1 Novel U 0.004305636285017732 -0.21938445957991823 1.0 7543 -387511 Tas2r134 taste receptor, type 2, member 134 Novel U 0.0043038655153627295 -0.21940280115379385 1.0 7544 -382077 Ccdc33 coiled-coil domain containing 33 Novel U 0.004298977092195787 -0.21945343528025876 1.0 7545 -380753 Atxn7l1 ataxin 7-like 1 Novel U 0.004297224385574628 -0.21947158975782363 1.0 7546 -108071 Grm5 glutamate receptor, metabotropic 5 Novel U 0.0042951199017320614 -0.21949338793228376 1.0 7547 -66601 Tmigd1 transmembrane and immunoglobulin domain containing 1 Novel N 0.004294358925863081 -0.2195012700953189 1.0 7548 -98238 Lrrc59 leucine rich repeat containing 59 Novel U 0.004293055155977174 -0.21951477450093798 1.0 7549 -22114 Tssk1 testis-specific serine kinase 1 Novel N 0.004292234146385469 -0.21952327849129966 1.0 7550 -213068 Tmem71 transmembrane protein 71 Novel U 0.004289972908456774 -0.21954670031943088 1.0 7551 -239833 Lmln leishmanolysin-like (metallopeptidase M8 family) Novel U 0.004287810918767782 -0.21956909413755787 1.0 7552 -234669 Ces2b carboxyesterase 2B Novel U 0.0042867629852858195 -0.21957994859811508 1.0 7553 -74499 Sost sclerostin Novel U 0.004285912337700102 -0.2195887595778444 1.0 7554 -320452 P4ha3 procollagen-proline, 2-oxoglutarate 4-dioxygenase (proline 4-hydroxylase), alpha polypeptide III Novel U 0.004284488355308117 -0.21960350914064972 1.0 7555 -11602 Angpt4 angiopoietin 4 Novel U 0.004283948276587343 -0.21960910325828534 1.0 7556 -102115 Dohh deoxyhypusine hydroxylase/monooxygenase Novel U 0.00427943389126717 -0.21965586311302926 1.0 7557 -11568 Aebp1 AE binding protein 1 Novel U 0.004279204593337862 -0.21965823817344327 1.0 7558 -17136 Mag myelin-associated glycoprotein Novel N 0.004277246282267605 -0.219678522295133 1.0 7559 -237523 Ptprq protein tyrosine phosphatase receptor type Q Novel N 0.004276437174577327 -0.21968690300599092 1.0 7560 -102462 Imp3 IMP3, U3 small nucleolar ribonucleoprotein Novel N 0.0042717488562934855 -0.21973546445265477 1.0 7561 -108903 Tbcd tubulin-specific chaperone d Novel U 0.004269117391068661 -0.21976272108294873 1.0 7562 -57320 Park7 Parkinson disease (autosomal recessive, early onset) 7 Novel U 0.004267746141806638 -0.2197769244377274 1.0 7563 -77996 Cutal cutA divalent cation tolerance homolog-like Novel U 0.004266493248169367 -0.2197899018688356 1.0 7564 -225339 Ammecr1l AMME chromosomal region gene 1-like Novel U 0.004262006045173334 -0.21983638016995966 1.0 7565 -104175 Sbk1 SH3-binding kinase 1 Novel U 0.0042612786029551505 -0.21984391499254222 1.0 7566 -13804 Endog endonuclease G Novel N 0.004258900210300774 -0.2198685503054708 1.0 7567 -76687 Spcs3 signal peptidase complex subunit 3 homolog (S. cerevisiae) Novel U 0.004257951668520574 -0.21987837527004847 1.0 7568 -330938 Dixdc1 DIX domain containing 1 Novel N 0.004256731776311929 -0.21989101087344384 1.0 7569 -75712 Tmem14a transmembrane protein 14A Novel N 0.0042561157459700795 -0.21989739169547382 1.0 7570 -72193 Scaf11 SR-related CTD-associated factor 11 Novel N 0.004254466377860088 -0.21991447579613702 1.0 7571 -70561 Txndc16 thioredoxin domain containing 16 Novel U 0.004251306237316539 -0.2199472084280031 1.0 7572 -258425 Or5ak24 olfactory receptor family 5 subfamily AK member 24 Novel U 0.004249913745460458 -0.21996163181287268 1.0 7573 -53357 Pla2g6 phospholipase A2, group VI Novel U 0.004249778770961656 -0.21996302987429422 1.0 7574 -230676 Szt2 SZT2 subunit of KICSTOR complex Novel U 0.004249695045462459 -0.2199638971002626 1.0 7575 -272382 Spib Spi-B transcription factor (Spi-1/PU.1 related) Novel U 0.004245023020876752 -0.22001228977733678 1.0 7576 -109225 Ms4a7 membrane-spanning 4-domains, subfamily A, member 7 Novel U 0.0042447678695404735 -0.2200149326264903 1.0 7577 -64659 Mrps14 mitochondrial ribosomal protein S14 Novel N 0.0042436581410156765 -0.2200264271580698 1.0 7578 -381308 Ifi211 interferon activated gene 211 Novel U 0.004243475517451487 -0.22002831876694423 1.0 7579 -78733 Troap trophinin associated protein Novel U 0.004243108869001247 -0.22003211649953894 1.0 7580 -225115 Svil supervillin Novel U 0.004241863479722012 -0.22004501620075326 1.0 7581 -18605 Enpp1 ectonucleotide pyrophosphatase/phosphodiesterase 1 Novel U 0.004241598934116525 -0.22004775635543847 1.0 7582 -257984 Or4a76 olfactory receptor family 4 subfamily A member 76 Novel U 0.004241236508150825 -0.22005151035167703 1.0 7583 -74192 Arpc5l actin related protein 2/3 complex, subunit 5-like Novel U 0.004238291774207013 -0.22008201180906414 1.0 7584 -78784 Celf3 CUGBP, Elav-like family member 3 Novel N 0.004238156480940292 -0.2200834131722733 1.0 7585 -100040894 Gm16430 predicted gene 16430 Novel U 0.004238148932861585 -0.22008349135502445 1.0 7586 -171236 Vmn1r233 vomeronasal 1 receptor 233 Novel U 0.004238122088007908 -0.22008376941313634 1.0 7587 -64294 Itm2c integral membrane protein 2C Novel U 0.004236919226370537 -0.22009622861443429 1.0 7588 -546250 Gm5930 predicted gene 5930 Novel U 0.004236918454470828 -0.2200962366097461 1.0 7589 -20256 Clec11a C-type lectin domain family 11, member a Novel N 0.004236196652277504 -0.22010371301313655 1.0 7590 -226025 Trpm3 transient receptor potential cation channel, subfamily M, member 3 Novel U 0.004234109582348726 -0.2201253308148501 1.0 7591 -13544 Dvl3 dishevelled segment polarity protein 3 Novel U 0.004231858418890949 -0.22014864829194278 1.0 7592 -100088 Rcc1 regulator of chromosome condensation 1 Novel U 0.004231233088467827 -0.22015512544390883 1.0 7593 -67168 Lpar6 lysophosphatidic acid receptor 6 Novel N 0.004229287263351938 -0.22017528023649363 1.0 7594 -108015 Chrnb4 cholinergic receptor, nicotinic, beta polypeptide 4 Novel N 0.004228709778942612 -0.22018126180102168 1.0 7595 -67264 Ndufb8 NADH:ubiquinone oxidoreductase subunit B8 Novel N 0.004227242149770147 -0.22019646345574437 1.0 7596 -170776 Cd209c CD209c antigen Novel U 0.0042260214849925174 -0.22020910706138383 1.0 7597 -654818 Smco3 single-pass membrane protein with coiled-coil domains 3 Novel U 0.004225417255970446 -0.22021536564573152 1.0 7598 -230866 Emc1 ER membrane protein complex subunit 1 Novel U 0.004223596456410475 -0.22023422542771812 1.0 7599 -68332 Sdhaf1 succinate dehydrogenase complex assembly factor 1 Novel N 0.004222560655623314 -0.22024495421822143 1.0 7600 -107477 Guca1b guanylate cyclase activator 1B Novel U 0.004222383188940287 -0.2202467924122903 1.0 7601 -19899 Rpl18 ribosomal protein L18 Novel U 0.00421736001470363 -0.22029882228590564 1.0 7602 -23888 Gpc6 glypican 6 Novel U 0.004213382227239965 -0.22034002407769157 1.0 7603 -19933 Rpl21 ribosomal protein L21 Novel N 0.004212449798189995 -0.22034968214713918 1.0 7604 -53619 Blcap bladder cancer associated protein Novel U 0.004206023616123126 -0.2204162443297385 1.0 7605 -56048 Lgals8 lectin, galactose binding, soluble 8 Novel U 0.004204751054996264 -0.22042942547605732 1.0 7606 -209416 Gpkow G patch domain and KOW motifs Novel U 0.004202770947295759 -0.2204499353665266 1.0 7607 -266690 Cyb5r4 cytochrome b5 reductase 4 Novel U 0.004202686813827269 -0.22045080681822748 1.0 7608 -72355 Cdpf1 cysteine rich, DPF motif domain containing 1 Novel U 0.004199146306488874 -0.2204874792768507 1.0 7609 -26440 Psma1 proteasome subunit alpha 1 Novel U 0.004198877533655249 -0.22049026321702594 1.0 7610 -233902 Fbxl19 F-box and leucine-rich repeat protein 19 Novel U 0.004198326828240193 -0.22049596740561161 1.0 7611 -109359 Abraxas2 BRISC complex subunit Novel U 0.004198051565743323 -0.22049881856550543 1.0 7612 -66897 Naa16 N(alpha)-acetyltransferase 16, NatA auxiliary subunit Novel N 0.004194442271629413 -0.22053620351528816 1.0 7613 -70747 Tspan2 tetraspanin 2 Novel U 0.004194227306542425 -0.2205384301165926 1.0 7614 -67501 Ccdc50 coiled-coil domain containing 50 Novel U 0.004193503895051311 -0.22054592318903668 1.0 7615 -78887 Sfi1 Sfi1 homolog, spindle assembly associated (yeast) Novel U 0.004191629954202378 -0.22056533340674744 1.0 7616 -66383 Iscu iron-sulfur cluster assembly enzyme Novel U 0.00419146738415521 -0.22056701730195183 1.0 7617 -434459 Gm5622 predicted gene 5622 Novel U 0.004190872492395379 -0.2205731791712441 1.0 7618 -22352 Vim vimentin Novel U 0.0041898421831638045 -0.22058385108039516 1.0 7619 -100042182 Gm16434 predicted gene 16434 Novel U 0.0041879603452694425 -0.22060334309544288 1.0 7620 -224344 Rbm11 RNA binding motif protein 11 Novel N 0.004186895410536289 -0.22061437365440106 1.0 7621 -20817 Srpk2 serine/arginine-rich protein specific kinase 2 Novel N 0.004186368523940815 -0.22061983112843653 1.0 7622 -15139 Hc hemolytic complement Novel U 0.004184919941283403 -0.2206348354999824 1.0 7623 -320139 Ptpn7 protein tyrosine phosphatase, non-receptor type 7 Novel N 0.004184452502880801 -0.22063967721159033 1.0 7624 -108168148 Gm5798 predicted gene 5798 Novel U 0.004183667222403295 -0.22064781112096163 1.0 7625 -14312 Brd2 bromodomain containing 2 Novel U 0.004183202231652826 -0.22065262747986925 1.0 7626 -432839 Gprin2 G protein regulated inducer of neurite outgrowth 2 Novel U 0.004181287992008183 -0.22067245511118122 1.0 7627 -14613 Gja5 gap junction protein, alpha 5 Novel U 0.00418048841237784 -0.22068073713070754 1.0 7628 -170729 Scrt1 scratch family zinc finger 1 Novel N 0.004180132247720255 -0.22068442627252255 1.0 7629 -258627 Or9i16 olfactory receptor family 9 subfamily I member 16 Novel U 0.004179204024051673 -0.220694040782768 1.0 7630 -114663 Impa2 inositol monophosphatase 2 Novel N 0.004178645646383998 -0.22069982444029407 1.0 7631 -20344 Selp selectin, platelet Novel U 0.004177598940286085 -0.22071066618764765 1.0 7632 -20866 Stim1 stromal interaction molecule 1 Novel U 0.0041771156549133695 -0.2207156720416511 1.0 7633 -12825 Col3a1 collagen, type III, alpha 1 Novel U 0.004177107776645656 -0.2207157536444891 1.0 7634 -14816 Grm1 glutamate receptor, metabotropic 1 Novel N 0.004177066613490554 -0.22071618001109647 1.0 7635 -208647 Creb3l2 cAMP responsive element binding protein 3-like 2 Novel N 0.0041755651080108615 -0.2207317325554958 1.0 7636 -66997 Psmd12 proteasome (prosome, macropain) 26S subunit, non-ATPase, 12 Novel U 0.004173219455976122 -0.2207560287421625 1.0 7637 -50768 Dlc1 deleted in liver cancer 1 Novel U 0.004170911782369029 -0.22077993154952405 1.0 7638 -68628 Fbxw9 F-box and WD-40 domain protein 9 Novel U 0.0041695723151240465 -0.220793805707215 1.0 7639 -12260 C1qb complement component 1, q subcomponent, beta polypeptide Novel U 0.004169479494601425 -0.22079476713913695 1.0 7640 -66048 Emc6 ER membrane protein complex subunit 6 Novel U 0.004169011541478946 -0.22079961418219649 1.0 7641 -245424 Gpr101 G protein-coupled receptor 101 Novel U 0.004167794070155022 -0.22081222471014747 1.0 7642 -22351 Vill villin-like Novel U 0.004167734842217003 -0.22081283819118244 1.0 7643 -67366 Tmed11 transmembrane p24 trafficking protein 11 Novel U 0.004167287237401477 -0.22081747446714747 1.0 7644 -385312 Ssxb10 SSX member B10 Novel U 0.004166966569699561 -0.22082079593266252 1.0 7645 -12034 Phb2 prohibitin 2 Novel U 0.004166916649998787 -0.22082131299928212 1.0 7646 -22423 Wnt8b wingless-type MMTV integration site family, member 8B Novel N 0.004166505027514314 -0.22082557657144491 1.0 7647 -81897 Tlr9 toll-like receptor 9 Novel U 0.004166197006321244 -0.22082876704483712 1.0 7648 -77134 Hnrnpa0 heterogeneous nuclear ribonucleoprotein A0 Novel N 0.00416237061069676 -0.22086840072492953 1.0 7649 -24131 Ldb3 LIM domain binding 3 Novel U 0.00416103605369049 -0.22088222402252927 1.0 7650 -81011 Vmn1r148 vomeronasal 1 receptor 148 Novel U 0.004160801973125151 -0.22088464862133006 1.0 7651 -53424 Tsnax translin-associated factor X Novel N 0.0041593134532722075 -0.22090006666103443 1.0 7652 -53421 Sec61a1 SEC61 translocon subunit alpha 1 Novel U 0.004158563200035622 -0.22090783775939574 1.0 7653 -229644 Trim45 tripartite motif-containing 45 Novel U 0.004158545324759009 -0.22090802291092326 1.0 7654 -69903 Rasip1 Ras interacting protein 1 Novel U 0.004158086919819058 -0.22091277105422202 1.0 7655 -17760 Map6 microtubule-associated protein 6 Novel U 0.004157947950179368 -0.22091421049718155 1.0 7656 -381043 Smbd1 somatomedin B domain containing 1 Novel U 0.004156924548705965 -0.22092481085600052 1.0 7657 -245282 Apol10a apolipoprotein L 10A Novel U 0.00415641342102762 -0.2209301050996904 1.0 7658 -19775 Xpr1 xenotropic and polytropic retrovirus receptor 1 Novel N 0.004155331690162988 -0.2209413096324263 1.0 7659 -100041735 Gm3488 predicted gene, 3488 Novel U 0.004154232385966854 -0.22095269618915217 1.0 7660 -17259 Mef2b myocyte enhancer factor 2B Novel U 0.004151234468165069 -0.2209837485231918 1.0 7661 -212307 Mapre2 microtubule-associated protein, RP/EB family, member 2 Novel N 0.004150552625970589 -0.22099081102222787 1.0 7662 -232889 Pla2g4c phospholipase A2, group IVC (cytosolic, calcium-independent) Novel U 0.004150351035126276 -0.22099289909356634 1.0 7663 -242894 Actr3b ARP3 actin-related protein 3B Novel U 0.004149334450302946 -0.22100342884574797 1.0 7664 -66890 Lman2 lectin, mannose-binding 2 Novel U 0.004148954347644145 -0.22100736593659262 1.0 7665 -105203 Tasor2 transcription activation suppressor family member 2 Novel U 0.00414766909533804 -0.22102067853772886 1.0 7666 -69605 Lnpk lunapark, ER junction formation factor Novel U 0.004145420058092073 -0.22104397399158948 1.0 7667 -625286 Tmem236 transmembrane protein 236 Novel U 0.004144385565548857 -0.22105468923134497 1.0 7668 -14617 Gjd2 gap junction protein, delta 2 Novel U 0.004142910910405991 -0.22106996366083814 1.0 7669 -19053 Ppp2cb protein phosphatase 2 (formerly 2A), catalytic subunit, beta isoform Novel U 0.004142520343493679 -0.22107400914007666 1.0 7670 -16402 Itga5 integrin alpha 5 (fibronectin receptor alpha) Novel U 0.004142496251073834 -0.22107425868856942 1.0 7671 -13244 Degs1 delta 4-desaturase, sphingolipid 1 Novel U 0.0041423555035802985 -0.22107571654648062 1.0 7672 -751864 Sirpd signal regulatory protein delta Novel U 0.004141198136202304 -0.22108770451973547 1.0 7673 -22137 Ttk Ttk protein kinase Novel N 0.004139881971102991 -0.22110133731456758 1.0 7674 -12918 Crh corticotropin releasing hormone Novel U 0.004139557983942735 -0.221104693162923 1.0 7675 -66811 Duoxa2 dual oxidase maturation factor 2 Novel U 0.004138173165534225 -0.22111903706647493 1.0 7676 -20843 Stag2 STAG2 cohesin complex component Novel U 0.004137596513897276 -0.221125010005174 1.0 7677 -240396 Mex3c mex3 RNA binding family member C Novel U 0.004135068348904601 -0.2211511966550592 1.0 7678 -320011 Uggt1 UDP-glucose glycoprotein glucosyltransferase 1 Novel U 0.004131399565388746 -0.22118919779411164 1.0 7679 -67205 Utp11 UTP11 small subunit processome component Novel N 0.0041308807780263265 -0.22119457137655738 1.0 7680 -213527 Pth2r parathyroid hormone 2 receptor Novel N 0.004128793343487501 -0.22121619295488984 1.0 7681 -71738 Mamdc2 MAM domain containing 2 Novel U 0.0041285025721785025 -0.22121920475454984 1.0 7682 -225651 Mppe1 metallophosphoesterase 1 Novel U 0.004127511003486275 -0.2212294753904679 1.0 7683 -216001 Micu1 mitochondrial calcium uptake 1 Novel U 0.004123884872358571 -0.221267034737486 1.0 7684 -269473 Lrig2 leucine-rich repeats and immunoglobulin-like domains 2 Novel N 0.004121763618229481 -0.22128900661802262 1.0 7685 -76686 Clip3 CAP-GLY domain containing linker protein 3 Novel U 0.004121366601653668 -0.22129311890266368 1.0 7686 -13731 Emp2 epithelial membrane protein 2 Novel U 0.004120449026781386 -0.22130262311302715 1.0 7687 -665376 Vmn2r99 vomeronasal 2, receptor 99 Novel U 0.0041184131397731805 -0.22132371076373195 1.0 7688 -58809 Rnase4 ribonuclease, RNase A family 4 Novel N 0.004118079578261858 -0.221327165782901 1.0 7689 -258622 Or10al5 olfactory receptor family 10 subfamily AL member 5 Novel U 0.004117076360588209 -0.22133755707858563 1.0 7690 -17306 Sypl2 synaptophysin like 2 Novel U 0.004116785428462899 -0.2213405705439757 1.0 7691 -13654 Egr2 early growth response 2 Novel N 0.004116744680636953 -0.22134099260861737 1.0 7692 -214498 Cdc73 cell division cycle 73, Paf1/RNA polymerase II complex component Novel U 0.00411673216188515 -0.22134112227743702 1.0 7693 -108897 Aif1l allograft inflammatory factor 1-like Novel U 0.004115857667351061 -0.22135018026307363 1.0 7694 -258516 Or7g31 olfactory receptor family 7 subfamily G member 31 Novel U 0.004114903900069054 -0.22136005935322725 1.0 7695 -80515 Rnf227 ring finger protein 227 Novel U 0.0041139316987636905 -0.2213701293823888 1.0 7696 -383787 Ankrd63 ankyrin repeat domain 63 Novel U 0.0041120102556224695 -0.22139003162728152 1.0 7697 -69129 Pex11g peroxisomal biogenesis factor 11 gamma Novel U 0.004111859585983872 -0.22139159225844512 1.0 7698 -118027458 Gm47189 predicted gene, 47189 Novel U 0.0041099598119692425 -0.22141127005523698 1.0 7699 -208263 Tor1aip1 torsin A interacting protein 1 Novel N 0.004109207289527752 -0.22141906465794806 1.0 7700 -73738 Haus7 HAUS augmin-like complex, subunit 7 Novel U 0.004108618877567552 -0.22142515940968882 1.0 7701 -70804 Pgrmc2 progesterone receptor membrane component 2 Novel N 0.004107423659814592 -0.22143753943588332 1.0 7702 -109006 Ciapin1 cytokine induced apoptosis inhibitor 1 Novel U 0.0041061639503335075 -0.22145058746527768 1.0 7703 -21956 Tnnt2 troponin T2, cardiac Novel U 0.00410414247761724 -0.22147152581322044 1.0 7704 -58805 Mlxipl MLX interacting protein-like Novel U 0.004099016532808452 -0.22152462018104352 1.0 7705 -113847 Vmn1r43 vomeronasal 1 receptor 43 Novel U 0.004096387293707183 -0.22155185375322287 1.0 7706 -271844 Pla2g4f phospholipase A2, group IVF Novel U 0.004094826176749687 -0.22156802375134965 1.0 7707 -246313 Prokr2 prokineticin receptor 2 Novel N 0.004094221303183689 -0.2215742890118621 1.0 7708 -20965 Syn2 synapsin II Novel N 0.004092623955571878 -0.22159083428591528 1.0 7709 -327959 Xaf1 XIAP associated factor 1 Novel U 0.004092413396776391 -0.2215930152469972 1.0 7710 -69179 Stimate STIM activating enhancer Novel N 0.004092317832402869 -0.2215940050996366 1.0 7711 -225055 Fbxo11 F-box protein 11 Novel U 0.004091839993037763 -0.22159895454407225 1.0 7712 -17691 Sik1 salt inducible kinase 1 Novel U 0.004091356881407052 -0.22160395859846171 1.0 7713 -387344 Tas2r110 taste receptor, type 2, member 110 Novel U 0.004091275445642897 -0.2216048021074298 1.0 7714 -102640268 Gm2956 predicted gene 2956 Novel U 0.004090743146924925 -0.22161031564005215 1.0 7715 -319944 Taf2 TATA-box binding protein associated factor 2 Novel U 0.004089578762693937 -0.22162237629363968 1.0 7716 -14208 Ppm1g protein phosphatase 1G (formerly 2C), magnesium-dependent, gamma isoform Novel N 0.004088710875811637 -0.22163136583743628 1.0 7717 -13016 Ctbp1 C-terminal binding protein 1 Novel U 0.004088564666006094 -0.2216328802737957 1.0 7718 -56196 Tdp2 tyrosyl-DNA phosphodiesterase 2 Novel U 0.00408848651995555 -0.22163368970801833 1.0 7719 -668008 Speer1n spermatogenesis associated glutamate (E)-rich protein 1N Novel U 0.004087860780106483 -0.2216401711008049 1.0 7720 -78283 Map7d2 MAP7 domain containing 2 Novel U 0.004086090087186174 -0.22165851187986507 1.0 7721 -66269 Tmed6 transmembrane p24 trafficking protein 6 Novel U 0.00408446224748658 -0.2216753729899611 1.0 7722 -17182 Matn3 matrilin 3 Novel U 0.004083608987653673 -0.22168421102726094 1.0 7723 -56322 Timm22 translocase of inner mitochondrial membrane 22 Novel U 0.004082625153748865 -0.22169440154650516 1.0 7724 -83675 Bicc1 BicC family RNA binding protein 1 Novel N 0.0040807516862782466 -0.22171380686097888 1.0 7725 -215690 Nav1 neuron navigator 1 Novel U 0.004079872944062239 -0.22172290884396517 1.0 7726 -16633 Klra2 killer cell lectin-like receptor, subfamily A, member 2 Novel U 0.0040794513915248945 -0.22172727527128921 1.0 7727 -77411 Esrp2 epithelial splicing regulatory protein 2 Novel N 0.004078650884815201 -0.22173556689347299 1.0 7728 -215028 Prl3d2 prolactin family 3, subfamily d, member 1 Novel U 0.00407845704092327 -0.22173757472213335 1.0 7729 -67630 Samd8 sterile alpha motif domain containing 8 Novel N 0.004075867188150862 -0.22176440033201308 1.0 7730 -66070 Cwc15 CWC15 spliceosome-associated protein Novel N 0.004074981047141822 -0.22177357895145444 1.0 7731 -56876 Nsmf NMDA receptor synaptonuclear signaling and neuronal migration factor Novel N 0.004074842653031273 -0.22177501243310202 1.0 7732 -58175 Rgs20 regulator of G-protein signaling 20 Novel U 0.004074389886053684 -0.22177970217857199 1.0 7733 -70060 Spata3 spermatogenesis associated 3 Novel U 0.004072511172665609 -0.2217991618300863 1.0 7734 -17711 CYTB cytochrome b Novel U 0.0040711595760841495 -0.22181316162304568 1.0 7735 -57373 Akip1 A kinase interacting protein 1 Novel U 0.004069790503021582 -0.22182734243682192 1.0 7736 -108946 Zzz3 zinc finger, ZZ domain containing 3 Novel U 0.004069409900449457 -0.22183128470575236 1.0 7737 -121021 Cspg4 chondroitin sulfate proteoglycan 4 Novel U 0.004066608168686564 -0.22186030495125042 1.0 7738 -16211 Kpnb1 karyopherin subunit beta 1 Novel U 0.004065161377354363 -0.22187529076830864 1.0 7739 -213119 Itga10 integrin, alpha 10 Novel N 0.004064025405058023 -0.22188705713201107 1.0 7740 -74204 Xpo6 exportin 6 Novel U 0.004063625491356793 -0.22189119942498195 1.0 7741 -232358 Vmn2r19 vomeronasal 2, receptor 19 Novel U 0.004063036418697414 -0.22189730102022312 1.0 7742 -13805 Eng endoglin Novel U 0.004062732100801136 -0.22190045313498885 1.0 7743 -194597 Tmprss11a transmembrane protease, serine 11a Novel U 0.004062139867816676 -0.22190658746477326 1.0 7744 -381393 4921509C19Rik RIKEN cDNA 4921509C19 gene Novel U 0.004061481836310272 -0.22191340333348494 1.0 7745 -102238433 Gm28042 predicted gene, 28042 Novel U 0.004059333225915048 -0.22193565856932693 1.0 7746 -53867 Col5a3 collagen, type V, alpha 3 Novel U 0.0040584825288491975 -0.22194447006156984 1.0 7747 -269529 Fbxo10 F-box protein 10 Novel U 0.004057216501979921 -0.2219575835262634 1.0 7748 -17884 Myh4 myosin, heavy polypeptide 4, skeletal muscle Novel U 0.004056902487453131 -0.22196083607840925 1.0 7749 -20677 Sox4 SRY (sex determining region Y)-box 4 Novel U 0.004056424467927344 -0.22196578738894332 1.0 7750 -17139 Magea3 MAGE family member A3 Novel U 0.0040544297954422754 -0.22198644814097232 1.0 7751 -171189 Vmn1r17 vomeronasal 1 receptor 17 Novel U 0.004053411961448863 -0.2219969908320166 1.0 7752 -224904 Micos13 mitochondrial contact site and cristae organizing system subunit 13 Novel N 0.004051255761594561 -0.2220193246792262 1.0 7753 -546134 Gramd2a GRAM domain containing 2A Novel U 0.004050477683251467 -0.22202738398912603 1.0 7754 -214854 Neurl3 neuralized E3 ubiquitin protein ligase 3 Novel U 0.004048614823659797 -0.22204667942753833 1.0 7755 -13870 Ercc1 excision repair cross-complementing rodent repair deficiency, complementation group 1 Novel U 0.004046657074792165 -0.22206695772595175 1.0 7756 -83703 Dbr1 debranching RNA lariats 1 Novel U 0.004046439685411175 -0.22206920943801375 1.0 7757 -22129 Ttc3 tetratricopeptide repeat domain 3 Novel U 0.004045040481543064 -0.22208370234568325 1.0 7758 -381612 Speer1c spermatogenesis associated glutamate (E)-rich protein 1C Novel U 0.0040421785678983555 -0.2221133459531348 1.0 7759 -252907 Vmn1r192 vomeronasal 1 receptor 192 Novel U 0.004041936317116309 -0.22211585517877172 1.0 7760 -74142 Lonp1 lon peptidase 1, mitochondrial Novel U 0.004040201748113839 -0.2221338217874784 1.0 7761 -16691 Krt8 keratin 8 Novel U 0.004039355012555941 -0.2221425922465522 1.0 7762 -50785 Hs6st1 heparan sulfate 6-O-sulfotransferase 1 Novel N 0.004038886354149368 -0.22214744659492114 1.0 7763 -18634 Pex7 peroxisomal biogenesis factor 7 Novel U 0.004038761133697565 -0.22214874362424453 1.0 7764 -74081 Cep350 centrosomal protein 350 Novel U 0.004038535689557744 -0.22215107876723372 1.0 7765 -75677 Cldn22 claudin 22 Novel U 0.0040382157953854 -0.22215439222055489 1.0 7766 -381634 Gm1043 predicted gene 1043 Novel U 0.004037610635529747 -0.2221606604464462 1.0 7767 -257985 Or6c6 olfactory receptor family 6 subfamily C member 6 Novel U 0.004035596267685856 -0.22218152520235446 1.0 7768 -76237 Tmem275 transmembrane protein 275 Novel U 0.004034141584007338 -0.22219659276807638 1.0 7769 -226982 Eif5b eukaryotic translation initiation factor 5B Novel N 0.004033888584847698 -0.22219921332505504 1.0 7770 -18438 P2rx4 purinergic receptor P2X, ligand-gated ion channel 4 Novel U 0.004033319467340768 -0.2222051082254831 1.0 7771 -30045 Dnajc12 DnaJ heat shock protein family (Hsp40) member C12 Novel N 0.004032449403961266 -0.22221412031336618 1.0 7772 -77596 Adgrf1 adhesion G protein-coupled receptor F1 Novel N 0.004030205899371275 -0.22223735846015807 1.0 7773 -320825 Samd5 sterile alpha motif domain containing 5 Novel U 0.004029870506769836 -0.2222408324456983 1.0 7774 -83945 Dnaja3 DnaJ heat shock protein family (Hsp40) member A3 Novel N 0.004029826425142326 -0.22224128904174695 1.0 7775 -68209 Rnaseh2c ribonuclease H2, subunit C Novel U 0.004028626906712657 -0.22225371361420942 1.0 7776 -72726 Tbcc tubulin-specific chaperone C Novel U 0.004027732518709487 -0.22226297765574485 1.0 7777 -56811 Dkk2 dickkopf WNT signaling pathway inhibitor 2 Novel U 0.004027546114083362 -0.22226490842873453 1.0 7778 -15381 Hnrnpc heterogeneous nuclear ribonucleoprotein C Novel U 0.00402587193894558 -0.22228224947977615 1.0 7779 -387342 Tas2r107 taste receptor, type 2, member 107 Novel U 0.00402442522628741 -0.22229723448193134 1.0 7780 -319984 Jph4 junctophilin 4 Novel N 0.004023502527826943 -0.22230679176225276 1.0 7781 -100040458 Btbd35f26 BTB domain containing 35, family member 26 Novel U 0.00402151573057864 -0.22232737094283828 1.0 7782 -20116 Rps8 ribosomal protein S8 Novel U 0.004021456793257735 -0.22232798141367074 1.0 7783 -244281 Myo16 myosin XVI Novel U 0.004021250219983982 -0.22233012109284953 1.0 7784 -16519 Kcnj3 potassium inwardly-rectifying channel, subfamily J, member 3 Novel U 0.004020740889515553 -0.22233539672109817 1.0 7785 -71300 Rnf148 ring finger protein 148 Novel U 0.004019977375606182 -0.22234330517307227 1.0 7786 -320938 Tnpo3 transportin 3 Novel U 0.004016282352651155 -0.22238157809937312 1.0 7787 -631002 Ssxb8 SSX member B8 Novel U 0.00401502971969032 -0.22239455283040335 1.0 7788 -544696 Tbc1d32 TBC1 domain family, member 32 Novel U 0.004012787005840351 -0.2224177827867361 1.0 7789 -215029 Prl3d3 prolactin family 3, subfamily d, member 3 Novel U 0.00401240744283933 -0.2224217142878232 1.0 7790 -75687 Ripor1 RHO family interacting cell polarization regulator 1 Novel U 0.0040118553005513355 -0.22242743335949156 1.0 7791 -57394 Cltrn collectrin, amino acid transport regulator Novel U 0.004011695506697228 -0.22242908849897944 1.0 7792 -216343 Tph2 tryptophan hydroxylase 2 Novel U 0.004011179601169171 -0.2224344322314796 1.0 7793 -53317 Plrg1 pleiotropic regulator 1 Novel N 0.004007779976711652 -0.22246964542985392 1.0 7794 -16956 Lpl lipoprotein lipase Novel U 0.004005487685942705 -0.2224933889022837 1.0 7795 -56635 Prl2a1 prolactin family 2, subfamily a, member 1 Novel U 0.004004234452797554 -0.22250636985000333 1.0 7796 -20190 Ryr1 ryanodine receptor 1, skeletal muscle Novel U 0.004004086587556985 -0.22250790143330434 1.0 7797 -80859 Nfkbiz nuclear factor of kappa light polypeptide gene enhancer in B cells inhibitor, zeta Novel U 0.004003764722749376 -0.2225112352984008 1.0 7798 -20091 Rps3a1 ribosomal protein S3A1 Novel N 0.004003473203585319 -0.22251425484431894 1.0 7799 -16779 Lamb2 laminin, beta 2 Novel N 0.004002477986795485 -0.22252456326711204 1.0 7800 -17906 Myl2 myosin, light polypeptide 2, regulatory, cardiac, slow Novel U 0.003998250932126893 -0.2225683469604124 1.0 7801 -14118 Fbn1 fibrillin 1 Novel U 0.003997878585703038 -0.22257220371243047 1.0 7802 -54720 Rcan1 regulator of calcineurin 1 Novel N 0.003996427378310085 -0.2225872352709008 1.0 7803 -224902 Safb2 scaffold attachment factor B2 Novel U 0.003994977324494291 -0.22260225488065682 1.0 7804 -81896 Ift122 intraflagellar transport 122 Novel U 0.0039937477482766956 -0.22261499079069855 1.0 7805 -66510 Rnf181 ring finger protein 181 Novel U 0.003991828755725903 -0.22263486765245616 1.0 7806 -21417 Zeb1 zinc finger E-box binding homeobox 1 Novel U 0.003990335114621371 -0.22265033873791612 1.0 7807 -66092 Ghitm growth hormone inducible transmembrane protein Novel N 0.003990094926394236 -0.22265282659967703 1.0 7808 -23871 Ets1 E26 avian leukemia oncogene 1, 5' domain Novel U 0.003989460469096053 -0.22265939828751494 1.0 7809 -270802 Kics2 KICSTOR subunit 2 Novel U 0.003987511117253095 -0.22267958960982281 1.0 7810 -19024 Ppfibp2 PTPRF interacting protein, binding protein 2 (liprin beta 2) Novel U 0.003986033927885968 -0.22269489028872755 1.0 7811 -194227 Pramel25 PRAME like 25 Novel U 0.003982477937015784 -0.22273172312526396 1.0 7812 -67059 Ola1 Obg-like ATPase 1 Novel N 0.003982423846376072 -0.222732283394332 1.0 7813 -627132 Vmn2r93 vomeronasal 2, receptor 93 Novel U 0.003982062158485485 -0.22273602974561282 1.0 7814 -207214 Larp4 La ribonucleoprotein 4 Novel U 0.003981947966026451 -0.22273721254734966 1.0 7815 -72421 Ift70b intraflagellar transport 70B Novel U 0.003980272347129682 -0.22275456855279935 1.0 7816 -54152 Dnal4 dynein, axonemal, light chain 4 Novel U 0.003978124795529475 -0.22277681282167736 1.0 7817 -27278 Clnk cytokine-dependent hematopoietic cell linker Novel U 0.003977554026409879 -0.2227827248294551 1.0 7818 -12268 C4b complement C4B (Chido blood group) Novel U 0.003977397315614855 -0.2227843480347184 1.0 7819 -50788 Fbxl8 F-box and leucine-rich repeat protein 8 Novel U 0.003977103482819274 -0.22278739154515578 1.0 7820 -71492 Bbs7 Bardet-Biedl syndrome 7 Novel U 0.003976968628065972 -0.22278878836625737 1.0 7821 -52614 Adgre4 adhesion G protein-coupled receptor E4 Novel U 0.003975120649882712 -0.22280792966353055 1.0 7822 -70218 Kif18b kinesin family member 18B Novel U 0.003975014526682014 -0.2228090288841548 1.0 7823 -237436 Gas2l3 growth arrest-specific 2 like 3 Novel U 0.003974703453354038 -0.22281225097145996 1.0 7824 -225372 Apbb3 amyloid beta precursor protein binding family B member 3 Novel U 0.0039744357530944775 -0.22281502380194831 1.0 7825 -53609 Clasrp CLK4-associating serine/arginine rich protein Novel U 0.0039711628726675574 -0.22284892418982022 1.0 7826 -12580 Cdkn2c cyclin dependent kinase inhibitor 2C Novel U 0.00396886542741177 -0.2228727210522552 1.0 7827 -171253 Vmn1r215 vomeronasal 1 receptor 215 Novel U 0.003968865004210692 -0.22287272543575806 1.0 7828 -100504164 Cmtm1 CKLF-like MARVEL transmembrane domain containing 1 Novel U 0.003968138120621191 -0.2228802544720831 1.0 7829 -15366 Hmmr hyaluronan mediated motility receptor (RHAMM) Novel U 0.0039668988089986 -0.2228930912211297 1.0 7830 -239796 Mb21d2 Mab-21 domain containing 2 Novel U 0.0039665618411736095 -0.22289658152278374 1.0 7831 -381836 Sbk2 SH3-binding domain kinase family, member 2 Novel U 0.00396438386273342 -0.22291914095187007 1.0 7832 -26895 Cops7b COP9 signalosome subunit 7B Novel N 0.003963876431943626 -0.22292439690330987 1.0 7833 -12728 Clcn5 chloride channel, voltage-sensitive 5 Novel N 0.0039633167516453386 -0.22293019405344103 1.0 7834 -237926 Rsad1 radical S-adenosyl methionine domain containing 1 Novel U 0.003963131357661777 -0.22293211435822824 1.0 7835 -230709 Zmpste24 zinc metallopeptidase, STE24 Novel U 0.0039571760425972016 -0.2229937993158967 1.0 7836 -18578 Pde4b phosphodiesterase 4B, cAMP specific Novel U 0.003956612806858382 -0.22299963329316402 1.0 7837 -209318 Gps1 G protein pathway suppressor 1 Novel N 0.003955914289216321 -0.22300686851593796 1.0 7838 -29866 Cabp2 calcium binding protein 2 Novel N 0.003955845584548302 -0.22300758015663075 1.0 7839 -74097 Pop7 processing of precursor 7, ribonuclease P family, (S. cerevisiae) Novel N 0.003955688750712863 -0.22300920463634258 1.0 7840 -12683 Cidea cell death-inducing DNA fragmentation factor, alpha subunit-like effector A Novel U 0.0039535862552606445 -0.22303098221512085 1.0 7841 -17901 Myl1 myosin, light polypeptide 1 Novel U 0.003952592695532036 -0.22304127347412825 1.0 7842 -21923 Tnc tenascin C Novel U 0.00394855561461161 -0.22308308942559013 1.0 7843 -78672 9530057J20Rik RIKEN cDNA 9530057J20 gene Novel U 0.003947106686905249 -0.22309809737114167 1.0 7844 -15903 Id3 inhibitor of DNA binding 3 Novel U 0.003945523937939987 -0.22311449143289383 1.0 7845 -19079 Prkab1 protein kinase, AMP-activated, beta 1 non-catalytic subunit Novel N 0.003944995094604876 -0.2231199691747741 1.0 7846 -245866 Ift52 intraflagellar transport 52 Novel U 0.003944154160198665 -0.2231286795457094 1.0 7847 -319508 Syt15 synaptotagmin XV Novel U 0.003942815254230722 -0.2231425478897112 1.0 7848 -71956 Rnf135 ring finger protein 135 Novel U 0.003942203672554796 -0.2231488826326058 1.0 7849 -219072 Haus4 HAUS augmin-like complex, subunit 4 Novel U 0.003941209343386304 -0.2231591818614462 1.0 7850 -67894 Dennd10 DENN domain containing 10 Novel U 0.0039407222964475425 -0.22316422667762706 1.0 7851 -12953 Cry2 cryptochrome circadian regulator 2 Novel U 0.003940426316578608 -0.2231672924273797 1.0 7852 -27979 Eif3b eukaryotic translation initiation factor 3, subunit B Novel U 0.003939858851033051 -0.22317317021684616 1.0 7853 -73086 Rps6ka5 ribosomal protein S6 kinase, polypeptide 5 Novel U 0.003935933105868101 -0.22321383295621278 1.0 7854 -18788 Serpinb2 serine (or cysteine) peptidase inhibitor, clade B, member 2 Novel U 0.003935129812181754 -0.2232221534458091 1.0 7855 -56279 Dipk1b divergent protein kinase domain 1B Novel U 0.003934560754358848 -0.223228047728032 1.0 7856 -56784 Ralgapa1 Ral GTPase activating protein, alpha subunit 1 Novel U 0.003934481604135807 -0.22322886756344032 1.0 7857 -19181 Psmc2 proteasome (prosome, macropain) 26S subunit, ATPase 2 Novel U 0.003930781623565148 -0.2232671918405609 1.0 7858 -434232 Iqck IQ motif containing K Novel U 0.003930008944198266 -0.2232751952280426 1.0 7859 -17927 Myod1 myogenic differentiation 1 Novel U 0.003929662263670203 -0.22327878613355576 1.0 7860 -620639 LOC620639 uncharacterized LOC620639 Novel U 0.003926653845190163 -0.2233099472332756 1.0 7861 -243910 Nfkbid nuclear factor of kappa light polypeptide gene enhancer in B cells inhibitor, delta Novel U 0.003926258069165037 -0.22331404666833343 1.0 7862 -68082 Dusp19 dual specificity phosphatase 19 Novel U 0.003924682976054244 -0.22333036143099663 1.0 7863 -73647 Capn9 calpain 9 Novel N 0.003921493498021806 -0.22336339793960816 1.0 7864 -20618 Sncg synuclein, gamma Novel U 0.003921022228017023 -0.22336827933882555 1.0 7865 -68876 Atp23 ATP23 metallopeptidase and ATP synthase assembly factor homolog Novel N 0.003918384868471859 -0.22339559702229583 1.0 7866 -26379 Esrra estrogen related receptor, alpha Novel N 0.003917300705505925 -0.22340682674665702 1.0 7867 -216965 Taok1 TAO kinase 1 Novel U 0.003916446037114382 -0.22341567937376092 1.0 7868 -22413 Wnt2 wingless-type MMTV integration site family, member 2 Novel U 0.0039149115032069 -0.22343157402552954 1.0 7869 -21897 Tlr1 toll-like receptor 1 Novel U 0.00391454151950927 -0.22343540630450703 1.0 7870 -12894 Cpt1a carnitine palmitoyltransferase 1a, liver Novel U 0.003912735989175649 -0.22345410792834908 1.0 7871 -211383 Amer3 APC membrane recruitment 3 Novel U 0.0039105319414868825 -0.22347693738185515 1.0 7872 -18133 Ccn3 cellular communication network factor 3 Novel U 0.003909439938602361 -0.22348824831183536 1.0 7873 -101055939 Kif19b kinesin family member 19B Novel U 0.003908940981110139 -0.22349341649713744 1.0 7874 -20732 Spint1 serine protease inhibitor, Kunitz type 1 Novel U 0.003906755949666026 -0.22351604898100652 1.0 7875 -66923 Pbrm1 polybromo 1 Novel U 0.003906599862746977 -0.22351766572418294 1.0 7876 -229279 Hnrnpa3 heterogeneous nuclear ribonucleoprotein A3 Novel N 0.0039053114401089157 -0.22353101116351337 1.0 7877 -623898 Speer1h spermatogenesis associated glutamate (E)-rich protein 1H Novel U 0.003903454162906697 -0.22355024877971927 1.0 7878 -431706 Zfp457 zinc finger protein 457 Novel U 0.003903228760086544 -0.2235525834947207 1.0 7879 -381122 Capn13 calpain 13 Novel U 0.00390276050875323 -0.22355743362663824 1.0 7880 -19386 Ranbp2 RAN binding protein 2 Novel U 0.0039023371818662574 -0.22356181843261738 1.0 7881 -19177 Psmb7 proteasome (prosome, macropain) subunit, beta type 7 Novel U 0.003901015841316701 -0.22357550483459293 1.0 7882 -330908 Opcml opioid binding protein/cell adhesion molecule-like Novel U 0.0038997514366722434 -0.22358860149633517 1.0 7883 -100952 Emilin1 elastin microfibril interfacer 1 Novel U 0.003898565398144945 -0.22360088644441203 1.0 7884 -58859 Efemp2 epidermal growth factor-containing fibulin-like extracellular matrix protein 2 Novel U 0.0038960396616540887 -0.22362704793995516 1.0 7885 -621054 Tpm3-rs7 tropomyosin 3, related sequence 7 Novel U 0.0038952126078199314 -0.22363561453638145 1.0 7886 -18597 Pdha1 pyruvate dehydrogenase E1 alpha 1 Novel U 0.003893404583486264 -0.22365434199299397 1.0 7887 -14601 Ghrh growth hormone releasing hormone Novel U 0.003892576267651928 -0.22366292166117663 1.0 7888 -15199 Hebp1 heme binding protein 1 Novel N 0.0038919845102364926 -0.2236690510650327 1.0 7889 -100039452 Gm2244 predicted gene 2244 Novel U 0.0038909798787381154 -0.22367945700506742 1.0 7890 -67706 Tmem179b transmembrane protein 179B Novel U 0.0038895829447731446 -0.22369392640115487 1.0 7891 -228846 D630003M21Rik RIKEN cDNA D630003M21 gene Novel U 0.003887607354582609 -0.22371438949940442 1.0 7892 -140577 Ankrd6 ankyrin repeat domain 6 Novel U 0.003887597464289034 -0.22371449194274012 1.0 7893 -14284 Fosl2 fos-like antigen 2 Novel N 0.003885319163706068 -0.2237380905052834 1.0 7894 -218693 Paip1 polyadenylate binding protein-interacting protein 1 Novel U 0.0038824216604906293 -0.22376810274833864 1.0 7895 -66531 Cmc2 C-X9-C motif containing 2 Novel U 0.0038819765560078306 -0.22377271312593944 1.0 7896 -73707 Gucy2g guanylate cyclase 2g Novel U 0.003876732800771331 -0.22382702777029992 1.0 7897 -114868 Psg25 pregnancy-specific beta-1-glycoprotein 25 Novel U 0.0038740413992662064 -0.22385490521861495 1.0 7898 -68867 Rnf122 ring finger protein 122 Novel U 0.0038738630098774343 -0.22385675297003962 1.0 7899 -231589 Vmn2r13 vomeronasal 2, receptor 13 Novel U 0.003871965578450912 -0.2238764065023808 1.0 7900 -20690 Spam1 sperm adhesion molecule 1 Novel U 0.003871892371188206 -0.22387716478080139 1.0 7901 -64009 Syne1 spectrin repeat containing, nuclear envelope 1 Novel U 0.0038702828339225743 -0.2238938363148881 1.0 7902 -268996 Ss18 SS18, subunit of BAF chromatin remodeling complex Novel N 0.0038687613789237735 -0.22390959549575057 1.0 7903 -72149 Strada STE20-related kinase adaptor alpha Novel U 0.003868044578772428 -0.22391702008815467 1.0 7904 -100862375 Entpd4b ectonucleoside triphosphate diphosphohydrolase 4B Novel U 0.0038666899060280546 -0.2239310517439084 1.0 7905 -258915 Or6z1 olfactory receptor family 6 subfamily Z member 1 Novel U 0.0038656466886028934 -0.2239418573557043 1.0 7906 -59022 Edf1 endothelial differentiation-related factor 1 Novel U 0.0038650154080412734 -0.22394839613900933 1.0 7907 -70948 Wdr20rt WD repeat domain 20, retrogene Novel U 0.003864942504634297 -0.22394915127010223 1.0 7908 -77318 Ankrd55 ankyrin repeat domain 55 Novel U 0.0038633506974333513 -0.22396563915676176 1.0 7909 -17119 Mxd1 MAX dimerization protein 1 Novel N 0.0038628842319595675 -0.223970470790805 1.0 7910 -241263 Gpr158 G protein-coupled receptor 158 Novel U 0.003861879463218869 -0.22398087815239118 1.0 7911 -107522 Ece2 endothelin converting enzyme 2 Novel N 0.0038614603342211353 -0.22398521947677158 1.0 7912 -20085 Rps19 ribosomal protein S19 Novel U 0.003860712706671047 -0.22399296337835845 1.0 7913 -74241 Chpf chondroitin polymerizing factor Novel N 0.0038572942920967984 -0.22402837120414418 1.0 7914 -14562 Gdf3 growth differentiation factor 3 Novel U 0.0038566437549588917 -0.22403510944643337 1.0 7915 -218850 Tasor transcription activation suppressor Novel U 0.0038539901733745286 -0.2240625951572524 1.0 7916 -72278 Ccpg1 cell cycle progression 1 Novel N 0.003853383307263524 -0.2240688810564805 1.0 7917 -13386 Dlk1 delta like non-canonical Notch ligand 1 Novel U 0.003852921039994969 -0.22407366920565203 1.0 7918 -83768 Dpp7 dipeptidylpeptidase 7 Novel U 0.0038515169818111846 -0.22408821239416374 1.0 7919 -20890 Wnt8a wingless-type MMTV integration site family, member 8A Novel N 0.003851132171467969 -0.2240921982470488 1.0 7920 -56284 Mrpl19 mitochondrial ribosomal protein L19 Novel U 0.003851118338201425 -0.2240923415315689 1.0 7921 -13653 Egr1 early growth response 1 Novel U 0.003848986897790639 -0.2241144189212765 1.0 7922 -621976 Tmem170b transmembrane protein 170B Novel N 0.003848571229439318 -0.22411872440039515 1.0 7923 -56013 Srcin1 SRC kinase signaling inhibitor 1 Novel U 0.003846835057095005 -0.22413670761646393 1.0 7924 -55944 Eif3d eukaryotic translation initiation factor 3, subunit D Novel U 0.0038462233183055986 -0.22414304398673476 1.0 7925 -21428 Mlx MAX-like protein X Novel U 0.0038460752393375416 -0.22414457778381808 1.0 7926 -13710 Elf3 E74-like factor 3 Novel N 0.0038459951966374173 -0.2241454068634747 1.0 7927 -226359 C1ql2 complement component 1, q subcomponent-like 2 Novel U 0.003845568604053559 -0.22414982549543483 1.0 7928 -100040870 Gm3005 predicted gene 3005 Novel U 0.0038446696252611846 -0.2241591370882139 1.0 7929 -170638 Hpcal4 hippocalcin-like 4 Novel N 0.0038434177121309606 -0.22417210436326235 1.0 7930 -22166 Txn1 thioredoxin 1 Novel U 0.0038432546829787096 -0.22417379301386206 1.0 7931 -229474 Fhdc1 FH2 domain containing 1 Novel U 0.0038413591080342494 -0.2241934273168231 1.0 7932 -67891 Rpl4 ribosomal protein L4 Novel N 0.0038409243821024737 -0.2241979301937336 1.0 7933 -72500 Ier5l immediate early response 5-like Novel U 0.0038375324993849837 -0.22423306320341924 1.0 7934 -21685 Tef thyrotroph embryonic factor Novel U 0.003836861739203588 -0.22424001091532808 1.0 7935 -74104 Abcb6 ATP-binding cassette, sub-family B member 6 Novel U 0.0038367119913377693 -0.22424156199879952 1.0 7936 -105245673 Gm6676 predicted gene 6676 Novel U 0.0038364936373847173 -0.22424382370186724 1.0 7937 -17349 Mlf1 myeloid leukemia factor 1 Novel U 0.0038354906877385766 -0.2242542122213318 1.0 7938 -12943 Pcdha10 protocadherin alpha 10 Novel U 0.0038352486512032023 -0.22425671922780865 1.0 7939 -328401 Rnase9 ribonuclease, RNase A family, 9 (non-active) Novel U 0.0038337727644904996 -0.22427200641386164 1.0 7940 -97031 Tprn taperin Novel N 0.0038326925597166298 -0.2242831951393996 1.0 7941 -21827 Thbs3 thrombospondin 3 Novel U 0.0038322771923441417 -0.22428749750098934 1.0 7942 -234673 Ces2e carboxylesterase 2E Novel U 0.0038299080449090356 -0.22431203705224065 1.0 7943 -12609 Cebpd CCAAT/enhancer binding protein delta Novel N 0.003827994676048971 -0.22433185566399458 1.0 7944 -270328 Gsdmc3 gasdermin C3 Novel U 0.003826536052756451 -0.22434696403610885 1.0 7945 -23792 Adam23 a disintegrin and metallopeptidase domain 23 Novel N 0.003826138223486655 -0.22435108473860746 1.0 7946 -69802 Cox11 cytochrome c oxidase assembly protein 11, copper chaperone Novel N 0.003825430822736215 -0.22435841197232598 1.0 7947 -26572 Cops3 COP9 signalosome subunit 3 Novel N 0.0038223746535228044 -0.22439006767257233 1.0 7948 -212163 Ark2n arkadia (RNF111) N-terminal like PKA signaling regulator 2N Novel N 0.003821284979599413 -0.22440135447924972 1.0 7949 -215008 Vezt vezatin, adherens junctions transmembrane protein Novel U 0.0038206358119183535 -0.22440807853674988 1.0 7950 -69724 Rnaseh2a ribonuclease H2, large subunit Novel U 0.003819891672868677 -0.22441578630456419 1.0 7951 -18510 Pax8 paired box 8 Novel U 0.0038194394998893964 -0.22442046989741918 1.0 7952 -319581 Xkr5 X-linked Kx blood group related 5 Novel U 0.003818189414629181 -0.22443341823945015 1.0 7953 -238393 Serpina3f serine (or cysteine) peptidase inhibitor, clade A, member 3F Novel U 0.0038174180550504767 -0.2244414079566093 1.0 7954 -72240 1600014C23Rik RIKEN cDNA 1600014C23 gene Novel U 0.0038170044773936256 -0.22444569178038332 1.0 7955 -108907 Nusap1 nucleolar and spindle associated protein 1 Novel U 0.0038154631681338283 -0.22446165661102851 1.0 7956 -65099 Irak1bp1 interleukin-1 receptor-associated kinase 1 binding protein 1 Novel U 0.003814608112502785 -0.2244705132491464 1.0 7957 -212706 N4bp3 NEDD4 binding protein 3 Novel N 0.0038133867662642983 -0.2244831639133351 1.0 7958 -68598 Dnajc8 DnaJ heat shock protein family (Hsp40) member C8 Novel U 0.0038129087493450477 -0.2244881151968707 1.0 7959 -68877 Maf1 MAF1 homolog, negative regulator of RNA polymerase III Novel N 0.0038103672639784925 -0.22451443981875063 1.0 7960 -75456 Prps1l1 phosphoribosyl pyrophosphate synthetase 1-like 1 Novel U 0.00380719691547464 -0.22454727818433395 1.0 7961 -69826 Ms4a10 membrane-spanning 4-domains, subfamily A, member 10 Novel U 0.003807171497095161 -0.224547541467073 1.0 7962 -171237 Vmn1r73 vomeronasal 1 receptor 73 Novel U 0.0038058574279262523 -0.22456115255232686 1.0 7963 -215819 Nhsl1 NHS like 1 Novel U 0.003805619132369884 -0.22456362080986617 1.0 7964 -68736 Tyw5 tRNA-yW synthesizing protein 5 Novel N 0.0038053894668258217 -0.22456599967802177 1.0 7965 -66665 Msantd3 Myb/SANT-like DNA-binding domain containing 3 Novel U 0.0038049860114679887 -0.22457017865535528 1.0 7966 -216527 Ccm2 cerebral cavernous malformation 2 Novel U 0.0038041402969724706 -0.2245789385382985 1.0 7967 -384534 Vmn2r52 vomeronasal 2, receptor 52 Novel U 0.0038024865539010417 -0.2245960679546685 1.0 7968 -98828 Cdc123 cell division cycle 123 Novel N 0.003802248136546291 -0.22459853747379144 1.0 7969 -21834 Thrb thyroid hormone receptor beta Novel U 0.0038013331501640284 -0.22460801487266038 1.0 7970 -54391 Rfk riboflavin kinase Novel N 0.003799513016137791 -0.22462686776107046 1.0 7971 -77798 A930009A15Rik RIKEN cDNA A930009A15 gene Novel U 0.003797899406905086 -0.22464358147245828 1.0 7972 -233115 Dpy19l3 dpy-19 like C-mannosyltransferase 3 Novel U 0.0037972436784889127 -0.22465037348583708 1.0 7973 -21678 Tead3 TEA domain family member 3 Novel U 0.003797079177415727 -0.22465207738254547 1.0 7974 -21780 Tfam transcription factor A, mitochondrial Novel N 0.003796124581943362 -0.22466196505106756 1.0 7975 -72333 Palld palladin, cytoskeletal associated protein Novel U 0.003794292171398936 -0.22468094509924946 1.0 7976 -13184 Dcpp1 demilune cell and parotid protein 1 Novel U 0.003793552070052666 -0.22468861104466462 1.0 7977 -237353 Sh3rf3 SH3 domain containing ring finger 3 Novel U 0.00379352333364713 -0.2246889086954085 1.0 7978 -18109 Mycn v-myc avian myelocytomatosis viral related oncogene, neuroblastoma derived Novel U 0.003789856611677873 -0.2247268884810291 1.0 7979 -216799 Nlrp3 NLR family, pyrin domain containing 3 Novel U 0.0037896728270156214 -0.2247287921165191 1.0 7980 -14940 Gzmc granzyme C Novel U 0.0037881166279264892 -0.22474491117552703 1.0 7981 -319448 Fndc3a fibronectin type III domain containing 3A Novel U 0.003788027125539038 -0.22474583823831404 1.0 7982 -21925 Tnnc2 troponin C2, fast Novel U 0.003785990222469331 -0.22476693641335047 1.0 7983 -171504 Apobr apolipoprotein B receptor Novel U 0.0037851682040409124 -0.22477545085320963 1.0 7984 -233231 Mrgprb1 MAS-related GPR, member B1 Novel U 0.0037838852430432993 -0.22478873972104785 1.0 7985 -19113 Prl7a1 prolactin family 7, subfamily a, member 1 Novel U 0.0037823710003228026 -0.22480442419736868 1.0 7986 -12921 Crhr1 corticotropin releasing hormone receptor 1 Novel U 0.0037801335294224483 -0.22482759984740167 1.0 7987 -193322 Oog1 oogenesin 1 Novel U 0.003779966448892367 -0.22482933046203976 1.0 7988 -14607 Gip gastric inhibitory polypeptide Novel U 0.003776933142599182 -0.22486074934891 1.0 7989 -16846 Lep leptin Novel U 0.0037753229815834944 -0.2248774273437793 1.0 7990 -232827 Nlrp2 NLR family, pyrin domain containing 2 Novel U 0.0037751764553768624 -0.22487894505741082 1.0 7991 -66711 Sbds SBDS ribosome maturation factor Novel U 0.003773314633710711 -0.2248982297450247 1.0 7992 -109648 Npy neuropeptide Y Novel U 0.003772301358104084 -0.22490872522044852 1.0 7993 -625249 Gpx4 glutathione peroxidase 4 Novel U 0.00377173353826481 -0.22491460667967764 1.0 7994 -216781 Trim58 tripartite motif-containing 58 Novel U 0.0037710127739610387 -0.22492207233264228 1.0 7995 -217845 Ifi27l2b interferon, alpha-inducible protein 27 like 2B Novel U 0.0037710038264889673 -0.22492216501026385 1.0 7996 -14087 Fanca Fanconi anemia, complementation group A Novel U 0.0037709495681273997 -0.22492272701658933 1.0 7997 -68678 Smtnl1 smoothelin-like 1 Novel U 0.0037709325016845787 -0.22492290379024305 1.0 7998 -241489 Pde11a phosphodiesterase 11A Novel U 0.003769616575883008 -0.22493653410643696 1.0 7999 -244114 Vmn2r72 vomeronasal 2, receptor 72 Novel U 0.003769579040870314 -0.22493692289286457 1.0 8000 -100862394 Rbmyf7 RNA binding motif protein Y-linked family member 7 Novel U 0.0037694452051344057 -0.22493830915901747 1.0 8001 -381404 Pabpc1l poly(A) binding protein, cytoplasmic 1-like Novel U 0.00376701532642144 -0.22496347776284842 1.0 8002 -67694 Ift74 intraflagellar transport 74 Novel N 0.0037658222497114597 -0.22497583561219012 1.0 8003 -666085 Vmn2r54 vomeronasal 2, receptor 54 Novel U 0.003763047002636452 -0.2250045815301617 1.0 8004 -12495 Entpd1 ectonucleoside triphosphate diphosphohydrolase 1 Novel U 0.0037604717107512886 -0.22503125631885007 1.0 8005 -637908 Vmn2r53 vomeronasal 2, receptor 53 Novel U 0.003760232678000361 -0.22503373221222642 1.0 8006 -231279 Guf1 GUF1 homolog, GTPase Novel U 0.0037580515265673315 -0.2250563245070682 1.0 8007 -320405 Cadps2 Ca2+-dependent activator protein for secretion 2 Novel U 0.003757924390817267 -0.22505764137498804 1.0 8008 -75477 Pfn3 profilin 3 Novel U 0.0037567617106069396 -0.22506968437838556 1.0 8009 -58800 Trpm7 transient receptor potential cation channel, subfamily M, member 7 Novel N 0.0037566075424333594 -0.22507128124725947 1.0 8010 -67025 Rpl11 ribosomal protein L11 Novel U 0.003755965909363054 -0.22507792726150916 1.0 8011 -20834 Znrf4 zinc and ring finger 4 Novel U 0.0037558688447174677 -0.2250789326539173 1.0 8012 -17394 Mmp8 matrix metallopeptidase 8 Novel U 0.0037535897403146172 -0.22510253954240053 1.0 8013 -20005 Rpl9 ribosomal protein L9 Novel U 0.0037519091643068636 -0.22511994689344286 1.0 8014 -218121 Mboat1 membrane bound O-acyltransferase domain containing 1 Novel U 0.003751026153529186 -0.22512909309005064 1.0 8015 -215641 Mageb18 MAGE family member B18 Novel U 0.003750631787538218 -0.225133177920021 1.0 8016 -108664 Atp6v1h ATPase, H+ transporting, lysosomal V1 subunit H Novel U 0.003750371394837902 -0.22513587505905094 1.0 8017 -67016 Tbc1d2b TBC1 domain family, member 2B Novel U 0.0037489190930507224 -0.22515091795322068 1.0 8018 -66043 Atp5f1d ATP synthase F1 subunit delta Novel U 0.003748848021124483 -0.22515165411389632 1.0 8019 -192194 Btnl10 butyrophilin-like 10 Novel U 0.003748835495536521 -0.22515178385352466 1.0 8020 -14181 Fgfbp1 fibroblast growth factor binding protein 1 Novel U 0.0037484303041192173 -0.22515598081290514 1.0 8021 -117066 Cts3 cathepsin 3 Novel U 0.0037483930309718757 -0.22515636688694 1.0 8022 -72727 B3gat3 beta-1,3-glucuronyltransferase 3 Novel U 0.0037480649137031424 -0.22515976551482328 1.0 8023 -19275 Ptprn protein tyrosine phosphatase receptor type N Novel U 0.003748007054412146 -0.2251603648194574 1.0 8024 -108069 Grm3 glutamate receptor, metabotropic 3 Novel N 0.003747952479646441 -0.2251609301030865 1.0 8025 -100503311 Cimap3 ciliary microtubule associated protein 3 Novel U 0.0037439720204326264 -0.22520215956877268 1.0 8026 -67084 Ceacam14 CEA cell adhesion molecule 14 Novel U 0.0037393953046105485 -0.22524956504080632 1.0 8027 -59053 Hgh1 HGH1 homolog Novel U 0.0037379759106119168 -0.22526426707718408 1.0 8028 -68176 Inka1 inka box actin regulator 1 Novel U 0.003737824483905068 -0.22526583555003574 1.0 8029 -258671 Or9k2b olfactory receptor family 9 subfamily K member 2B Novel U 0.003736966112179516 -0.22527472653615155 1.0 8030 -546964 Vmn2r62 vomeronasal 2, receptor 62 Novel U 0.0037365911448037042 -0.22527861043590383 1.0 8031 -67836 Wdr83 WD repeat domain containing 83 Novel N 0.0037351924051124844 -0.22529309853564441 1.0 8032 -21949 Tnfsf8 tumor necrosis factor (ligand) superfamily, member 8 Novel U 0.0037347375861159376 -0.22529780953585923 1.0 8033 -217038 Mrm1 mitochondrial rRNA methyltransferase 1 Novel N 0.003734404740750813 -0.22530125713720953 1.0 8034 -494519 Scgb2b20 secretoglobin, family 2B, member 20 Novel U 0.0037335669265966256 -0.22530993518867692 1.0 8035 -380669 Lin28b lin-28 homolog B Novel U 0.0037316225743443585 -0.2253300747253888 1.0 8036 -22094 Tshb thyroid stimulating hormone, beta subunit Novel U 0.0037311288727846143 -0.22533518846991502 1.0 8037 -11789 Apc APC, WNT signaling pathway regulator Novel U 0.003731032592976618 -0.22533618573300124 1.0 8038 -101533 Klk9 kallikrein related-peptidase 9 Novel U 0.003730652902960222 -0.22534011854970945 1.0 8039 -74694 Tbc1d30 TBC1 domain family, member 30 Novel U 0.003730236267430783 -0.2253444340468272 1.0 8040 -212032 Hk3 hexokinase 3 Novel N 0.003729765971324657 -0.2253493053584343 1.0 8041 -105372 Utp15 UTP15 small subunit processome component Novel N 0.003728841071879969 -0.22535888543647797 1.0 8042 -19896 Rpl10a ribosomal protein L10A Novel U 0.0037267834647983548 -0.22538019806298915 1.0 8043 -544791 Myh13 myosin, heavy polypeptide 13, skeletal muscle Novel N 0.00372452367752814 -0.2254036048652475 1.0 8044 -14593 Ggps1 geranylgeranyl diphosphate synthase 1 Novel U 0.003724423054143343 -0.2254046471189594 1.0 8045 -18439 P2rx7 purinergic receptor P2X, ligand-gated ion channel, 7 Novel U 0.003724126527944724 -0.22540771852757693 1.0 8046 -14463 Gata4 GATA binding protein 4 Novel U 0.003723192055577074 -0.22541739776164194 1.0 8047 -20776 Tmie transmembrane inner ear Novel N 0.003722490293327999 -0.22542466659194865 1.0 8048 -67549 Gpr89 G protein-coupled receptor 89 Novel U 0.0037209100963381 -0.22544103422042383 1.0 8049 -68675 Arb2a ARB2 cotranscriptional regulator A Novel U 0.0037199538708629198 -0.22545093877246158 1.0 8050 -225898 Eml3 echinoderm microtubule associated protein like 3 Novel U 0.0037186403302493926 -0.22546454438295616 1.0 8051 -100040599 Potefam3a POTE ankyrin domain family member 3A Novel U 0.003717798539868126 -0.22547326362005293 1.0 8052 -98956 Nat10 N-acetyltransferase 10 Novel U 0.003717678474564016 -0.225474507252526 1.0 8053 -381485 Trim55 tripartite motif-containing 55 Novel U 0.00371726102542578 -0.22547883117697692 1.0 8054 -193034 Trpv1 transient receptor potential cation channel, subfamily V, member 1 Novel U 0.00371700736402488 -0.22548145859342877 1.0 8055 -209707 Lcorl ligand dependent nuclear receptor corepressor-like Novel U 0.0037149244647090964 -0.22550303319607004 1.0 8056 -66191 Ier3ip1 immediate early response 3 interacting protein 1 Novel U 0.0037147384323669703 -0.2255049601129543 1.0 8057 -56722 Litaf LPS-induced TN factor Novel N 0.0037118741255086217 -0.22553462850923406 1.0 8058 -53417 Hif3a hypoxia inducible factor 3, alpha subunit Novel U 0.0037111146504518835 -0.22554249512690533 1.0 8059 -66462 Rex1bd required for excision 1-B domain containing Novel U 0.0037107639361837336 -0.22554612781376573 1.0 8060 -84094 Plvap plasmalemma vesicle associated protein Novel U 0.0037093804254852702 -0.22556045817209996 1.0 8061 -13011 Cst7 cystatin F (leukocystatin) Novel N 0.003708551594207357 -0.2255690431792302 1.0 8062 -258933 Or10p1 olfactory receptor family 10 subfamily P member 1 Novel U 0.0037064512629118042 -0.2255907983417449 1.0 8063 -12567 Cdk4 cyclin dependent kinase 4 Novel U 0.003705848374840637 -0.22559704303656714 1.0 8064 -14628 Ostm1 osteopetrosis associated transmembrane protein 1 Novel U 0.0037049961494010127 -0.2256058703596554 1.0 8065 -213988 Tnrc6b trinucleotide repeat containing 6b Novel N 0.003703560946993909 -0.22562073613900843 1.0 8066 -22673 Zfp185 zinc finger protein 185 Novel U 0.003703512774403297 -0.22562123510911838 1.0 8067 -22253 Unc5c unc-5 netrin receptor C Novel N 0.003702809712641793 -0.22562851739973214 1.0 8068 -258446 Or4c1 olfactory receptor family 4 subfamily C member 1 Novel U 0.0037024866000972753 -0.2256318641888465 1.0 8069 -93683 Glce glucuronyl C5-epimerase Novel N 0.003702119926277428 -0.22563566218421874 1.0 8070 -103964 Try5 trypsin 5 Novel U 0.0036999428529503084 -0.2256582122381736 1.0 8071 -73822 Mfsd12 major facilitator superfamily domain containing 12 Novel N 0.003699394051370047 -0.2256638967069011 1.0 8072 -16574 Kif5c kinesin family member 5C Novel U 0.003699187316949767 -0.2256660380552303 1.0 8073 -11937 Atp2a1 ATPase, Ca++ transporting, cardiac muscle, fast twitch 1 Novel U 0.0036979621781308317 -0.22567872800284255 1.0 8074 -238023 Hexd hexosaminidase D Novel U 0.003695811165744628 -0.22570100811842816 1.0 8075 -545389 Cep170 centrosomal protein 170 Novel U 0.0036922637828281737 -0.22573775179406283 1.0 8076 -100042636 Vmn2r34 vomeronasal 2, receptor 34 Novel U 0.0036909574919789397 -0.22575128231173722 1.0 8077 -56526 Septin6 septin 6 Novel U 0.0036902869798388044 -0.22575822745444282 1.0 8078 -20320 Nptn neuroplastin Novel U 0.003689455138998916 -0.22576684363451713 1.0 8079 -338375 Atp6v1g3 ATPase, H+ transporting, lysosomal V1 subunit G3 Novel U 0.003689235988260589 -0.2257691135906605 1.0 8080 -223775 Pim3 proviral integration site 3 Novel N 0.0036885774764843986 -0.22577593443399085 1.0 8081 -11705 Amh anti-Mullerian hormone Novel N 0.003686573473353877 -0.22579669183253875 1.0 8082 -12163 Bmp8a bone morphogenetic protein 8a Novel U 0.003685535851415777 -0.2258074394864636 1.0 8083 -17354 Mllt10 myeloid/lymphoid or mixed-lineage leukemia; translocated to, 10 Novel U 0.003684280719964754 -0.2258204400967731 1.0 8084 -71924 Tube1 tubulin, epsilon 1 Novel N 0.0036840861577524114 -0.22582245536577264 1.0 8085 -243862 Psg22 pregnancy-specific beta-1-glycoprotein 22 Novel U 0.0036836275964072015 -0.22582720512911195 1.0 8086 -11816 Apoe apolipoprotein E Novel U 0.0036834348007212586 -0.2258292021004891 1.0 8087 -11813 Apoc2 apolipoprotein C2 Novel U 0.0036826531437515225 -0.22583729847768605 1.0 8088 -64138 Ctsz cathepsin Z Novel N 0.0036807636183041406 -0.22585687012015523 1.0 8089 -22110 Tspyl1 testis-specific protein, Y-encoded-like 1 Novel U 0.003680664316251831 -0.22585789868754869 1.0 8090 -13555 E2f1 E2F transcription factor 1 Novel U 0.0036778626009213887 -0.22588691876283995 1.0 8091 -244199 Ovch2 ovochymase 2 Novel U 0.0036776675381444642 -0.225888939216671 1.0 8092 -52712 Zkscan6 zinc finger with KRAB and SCAN domains 6 Novel U 0.003677635512052937 -0.22588927094187425 1.0 8093 -105243944 Fam237a family with sequence similarity 237, member A Novel U 0.003676755097338466 -0.22589839024854466 1.0 8094 -118568164 LOC118568164 uncharacterized LOC118568164 Novel U 0.003676665940313837 -0.2258993137340749 1.0 8095 -171248 Vmn1r214 vomeronasal 1 receptor 214 Novel U 0.00367608678290614 -0.22590531262746502 1.0 8096 -233067 Lrfn3 leucine rich repeat and fibronectin type III domain containing 3 Novel U 0.003675904106246149 -0.22590720478630408 1.0 8097 -21857 Timp1 tissue inhibitor of metalloproteinase 1 Novel U 0.003675743011659977 -0.22590887339873192 1.0 8098 -403187 Opa3 optic atrophy 3 Novel U 0.0036755781511179403 -0.22591058101880684 1.0 8099 -26891 Cops4 COP9 signalosome subunit 4 Novel N 0.0036752731911156066 -0.225913739784486 1.0 8100 -19242 Ptn pleiotrophin Novel U 0.0036743488495993367 -0.22592331408352542 1.0 8101 -59015 Nup160 nucleoporin 160 Novel N 0.003673946992484443 -0.22592747650631115 1.0 8102 -26889 Cln8 CLN8 transmembrane ER and ERGIC protein Novel N 0.0036726505159970454 -0.22594090536714825 1.0 8103 -93700 Pcdhgb2 protocadherin gamma subfamily B, 2 Novel U 0.0036721112605113686 -0.22594649095774183 1.0 8104 -71927 Itfg1 integrin alpha FG-GAP repeat containing 1 Novel U 0.003670082546141685 -0.2259675043144926 1.0 8105 -544990 Gm5795 predicted gene 5795 Novel U 0.003667482530676416 -0.22599443518921097 1.0 8106 -546071 Mast3 microtubule associated serine/threonine kinase 3 Novel N 0.0036672443575046297 -0.2259969021790948 1.0 8107 -67006 Cisd2 CDGSH iron sulfur domain 2 Novel U 0.00366595525039611 -0.22601025470814776 1.0 8108 -57748 Jmy junction-mediating and regulatory protein Novel N 0.0036656702010038236 -0.22601320724038254 1.0 8109 -258825 Or10d5 olfactory receptor family 10 subfamily D member 5 Novel U 0.0036622702688573756 -0.2260484236257887 1.0 8110 -67184 Ndufa13 NADH:ubiquinone oxidoreductase subunit A13 Novel U 0.0036613873542939443 -0.2260575688258125 1.0 8111 -22099 Tsn translin Novel N 0.0036595910965169748 -0.22607617440481753 1.0 8112 -67201 Glod4 glyoxalase domain containing 4 Novel U 0.0036585918898353496 -0.22608652415477865 1.0 8113 -320609 Strip2 striatin interacting protein 2 Novel U 0.0036571069537167118 -0.22610190507428085 1.0 8114 -67180 Yipf5 Yip1 domain family, member 5 Novel U 0.003651310576092881 -0.22616194376316287 1.0 8115 -74610 Abcb8 ATP-binding cassette, sub-family B member 8 Novel U 0.0036494435239419133 -0.22618128262796655 1.0 8116 -22687 Zpr1 ZPR1 zinc finger Novel U 0.003648091043578006 -0.2261952915751155 1.0 8117 -223780 Adm2 adrenomedullin 2 Novel U 0.003647986905967128 -0.22619637022906564 1.0 8118 -12944 Crp C-reactive protein, pentraxin-related Novel U 0.0036473887807958773 -0.22620256558992713 1.0 8119 -18553 Pcsk6 proprotein convertase subtilisin/kexin type 6 Novel U 0.0036467545370513998 -0.2262091350657828 1.0 8120 -11517 Adcyap1r1 adenylate cyclase activating polypeptide 1 receptor 1 Novel U 0.00364616398999646 -0.22621525193276468 1.0 8121 -50529 Mrps7 mitchondrial ribosomal protein S7 Novel N 0.0036458439482679895 -0.22621856691446734 1.0 8122 -12934 Dpysl2 dihydropyrimidinase-like 2 Novel U 0.0036454087628693633 -0.22622307455052038 1.0 8123 -30054 Rnf17 ring finger protein 17 Novel U 0.00364383039696412 -0.22623942321268092 1.0 8124 -231591 Vmn2r14 vomeronasal 2, receptor 14 Novel U 0.003642159161883476 -0.22625673381070735 1.0 8125 -209268 Igsf1 immunoglobulin superfamily, member 1 Novel N 0.0036410556970781437 -0.22626816346288653 1.0 8126 -319477 Insyn1 inhibitory synaptic factor 1 Novel U 0.0036405549838758626 -0.22627334983377567 1.0 8127 -223774 Alg12 ALG12 alpha-1,6-mannosyltransferase Novel U 0.003640088774933417 -0.22627817881067575 1.0 8128 -26561 Mmp23 matrix metallopeptidase 23 Novel U 0.003639636702358452 -0.22628286136354617 1.0 8129 -50701 Elane elastase, neutrophil expressed Novel U 0.0036390950918414318 -0.22628847134747695 1.0 8130 -260409 Cdc42ep3 CDC42 effector protein 3 Novel N 0.0036384926449324418 -0.2262947114727559 1.0 8131 -18733 Pirb paired Ig-like receptor B Novel U 0.003636918910777929 -0.22631101215939461 1.0 8132 -18158 Nppb natriuretic peptide type B Novel U 0.0036366997182289093 -0.22631328254861177 1.0 8133 -17972 Ncf4 neutrophil cytosolic factor 4 Novel U 0.0036359836896738655 -0.22632069914884675 1.0 8134 -73710 Tubb2b tubulin, beta 2B class IIB Novel U 0.0036347974403033853 -0.22633298628083034 1.0 8135 -107823 Nsd2 nuclear receptor binding SET domain protein 2 Novel U 0.003630780776956503 -0.22637459074773666 1.0 8136 -57253 Tas2r108 taste receptor, type 2, member 108 Novel N 0.0036297532559539385 -0.2263852337765033 1.0 8137 -68618 Eola1 endothelium and lymphocyte associated ASCH domain 1 Novel U 0.003629370268024169 -0.2263892007528898 1.0 8138 -67956 Kmt5a lysine methyltransferase 5A Novel U 0.003628440001912343 -0.22639883641869524 1.0 8139 -26943 Serinc3 serine incorporator 3 Novel N 0.003628304039616171 -0.22640024471168949 1.0 8140 -68815 Btbd10 BTB domain containing 10 Novel U 0.0036271091702298006 -0.22641262112951427 1.0 8141 -544763 Hbq1b hemoglobin, theta 1B Novel U 0.0036268450532234765 -0.2264153568447834 1.0 8142 -14042 Ext1 exostosin glycosyltransferase 1 Novel U 0.003626791552087108 -0.22641591100779515 1.0 8143 -21858 Timp2 tissue inhibitor of metalloproteinase 2 Novel N 0.003625534503645803 -0.22642893147422696 1.0 8144 -192657 Ell2 elongation factor for RNA polymerase II 2 Novel N 0.0036235720773850734 -0.22644925822092432 1.0 8145 -13036 Ctsh cathepsin H Novel U 0.0036235573943084365 -0.22644941030774943 1.0 8146 -215751 Ginm1 glycoprotein integral membrane 1 Novel U 0.003620578579015391 -0.2264802647786315 1.0 8147 -14561 Gdf11 growth differentiation factor 11 Novel N 0.003619880237958984 -0.22648749817233704 1.0 8148 -54710 Hs3st3b1 heparan sulfate (glucosamine) 3-O-sulfotransferase 3B1 Novel N 0.0036194336440493976 -0.22649212397737153 1.0 8149 -320237 Smim10l2a small integral membrane protein 10 like 2A Novel U 0.003619281056929836 -0.22649370446973996 1.0 8150 -140499 Ube2j2 ubiquitin-conjugating enzyme E2J 2 Novel U 0.0036186082211591454 -0.22650067368053448 1.0 8151 -627111 Vmn2r92 vomeronasal 2, receptor 92 Novel U 0.003618256550550791 -0.22650431627313528 1.0 8152 -231507 Plac8 placenta-specific 8 Novel U 0.0036179576183772134 -0.22650741260276233 1.0 8153 -20918 Eif1 eukaryotic translation initiation factor 1 Novel N 0.0036168347603759594 -0.22651904312902735 1.0 8154 -57757 Pglyrp2 peptidoglycan recognition protein 2 Novel U 0.0036162145775990137 -0.22652546696184353 1.0 8155 -57377 Mogs mannosyl-oligosaccharide glucosidase Novel U 0.0036157926478160058 -0.22652983729666573 1.0 8156 -212085 Trim52 tripartite motif-containing 52 Novel U 0.0036156439600962265 -0.22653137739917936 1.0 8157 -66999 Med28 mediator complex subunit 28 Novel U 0.003615417932782032 -0.22653371858266955 1.0 8158 -14944 Gzmg granzyme G Novel U 0.0036151090172995165 -0.22653691831908238 1.0 8159 -628580 Vmn1r68 vomeronasal 1 receptor 68 Novel U 0.0036148398389900653 -0.2265397064591629 1.0 8160 -16336 Insl3 insulin-like 3 Novel U 0.0036146779559713604 -0.22654138323814904 1.0 8161 -213550 Dis3l DIS3 like exosome 3'-5' exoribonuclease Novel N 0.0036124274504681798 -0.2265646939001696 1.0 8162 -98660 Atp1a2 ATPase, Na+/K+ transporting, alpha 2 polypeptide Novel U 0.003612212335091359 -0.2265669220581712 1.0 8163 -16523 Kcnj8 potassium inwardly-rectifying channel, subfamily J, member 8 Novel U 0.0036114743043636497 -0.22657456655618735 1.0 8164 -140498 Rxfp2 relaxin/insulin-like family peptide receptor 2 Novel U 0.0036086602389770244 -0.22660371455295458 1.0 8165 -11535 Adm adrenomedullin Novel U 0.003608230811080525 -0.22660816255298982 1.0 8166 -11306 Abcb7 ATP-binding cassette, sub-family B member 7 Novel U 0.0036066644237708894 -0.22662438714125085 1.0 8167 -211586 Tfdp2 transcription factor Dp 2 Novel N 0.0036052586154995477 -0.22663894845711194 1.0 8168 -50528 Tmprss2 transmembrane protease, serine 2 Novel U 0.0036034488139055497 -0.22665769432252855 1.0 8169 -75581 Yipf7 Yip1 domain family, member 7 Novel U 0.00360028430470031 -0.2266904722048488 1.0 8170 -14462 Gata3 GATA binding protein 3 Novel U 0.003599935651389183 -0.22669408354438406 1.0 8171 -22142 Tuba1a tubulin, alpha 1A Novel U 0.0035991582447819676 -0.22670213589646576 1.0 8172 -20316 Sdf2 stromal cell derived factor 2 Novel U 0.0035988342413805895 -0.2267054919130462 1.0 8173 -105180375 Tmem265 transmembrane protein 265 Novel U 0.003598771080687867 -0.2267061461294251 1.0 8174 -100039672 Msmp microseminoprotein, prostate associated Novel U 0.0035982451644672292 -0.22671159355234993 1.0 8175 -170725 Capn8 calpain 8 Novel U 0.0035977768656659356 -0.22671644417593922 1.0 8176 -72296 Rusc1 RUN and SH3 domain containing 1 Novel U 0.003595570449124159 -0.22673929816594693 1.0 8177 -13346 Des desmin Novel U 0.0035943707193772613 -0.22675172492722628 1.0 8178 -108853 Mtrf1l mitochondrial translational release factor 1-like Novel U 0.0035942575922100744 -0.22675289669470516 1.0 8179 -66568 Rwdd3 RWD domain containing 3 Novel U 0.003593929768274634 -0.22675629228425181 1.0 8180 -14202 Fhl4 four and a half LIM domains 4 Novel U 0.0035926784190102837 -0.22676925371879605 1.0 8181 -94043 Tm2d1 TM2 domain containing 1 Novel U 0.0035919603718554587 -0.2267766912276212 1.0 8182 -83762 Otof otoferlin Novel U 0.003588753557386162 -0.22680990730647585 1.0 8183 -66208 Nenf neuron derived neurotrophic factor Novel U 0.0035872928397880292 -0.22682503737133877 1.0 8184 -18673 Phb1 prohibitin 1 Novel U 0.00358713766827971 -0.22682664463272098 1.0 8185 -16341 Eif3e eukaryotic translation initiation factor 3, subunit E Novel U 0.00358700899224164 -0.2268279774548933 1.0 8186 -628422 Vmn2r58 vomeronasal 2, receptor 58 Novel U 0.003586449540126998 -0.22683377224150578 1.0 8187 -228482 Arhgap11a Rho GTPase activating protein 11A Novel U 0.0035855718502420756 -0.22684286332448128 1.0 8188 -434436 Lsmem2 leucine-rich single-pass membrane protein 2 Novel U 0.003585448170022545 -0.2268441444001294 1.0 8189 -14560 Gdf10 growth differentiation factor 10 Novel U 0.003584600087019156 -0.2268529288159993 1.0 8190 -243374 Gimap8 GTPase, IMAP family member 8 Novel U 0.003584430118630404 -0.22685468934298259 1.0 8191 -12062 Bdkrb2 bradykinin receptor, beta 2 Novel U 0.0035815384173548148 -0.22688464148973556 1.0 8192 -77595 Nup210l nucleoporin 210-like Novel U 0.0035812905774069126 -0.22688720860776865 1.0 8193 -26374 Cop1 COP1, E3 ubiquitin ligase Novel U 0.003581239380559655 -0.22688773890302952 1.0 8194 -18736 Pou1f1 POU domain, class 1, transcription factor 1 Novel U 0.003580887680882221 -0.2268913817967269 1.0 8195 -18024 Nfe2l2 nuclear factor, erythroid derived 2, like 2 Novel U 0.0035805614258565908 -0.2268947611355573 1.0 8196 -140741 Gpr6 G protein-coupled receptor 6 Novel N 0.003579723431375392 -0.226903441054846 1.0 8197 -80750 N4bp1 NEDD4 binding protein 1 Novel U 0.0035792703362627068 -0.22690813419912848 1.0 8198 -66663 Uba5 ubiquitin-like modifier activating enzyme 5 Novel U 0.003577440859381726 -0.22692708386052085 1.0 8199 -12387 Ctnnb1 catenin beta 1 Novel U 0.0035773984305759675 -0.22692752333669616 1.0 8200 -67905 Ppm1m protein phosphatase 1M Novel U 0.0035760497054504667 -0.22694149338720912 1.0 8201 -50778 Rgs1 regulator of G-protein signaling 1 Novel U 0.0035729555701620613 -0.2269735423388122 1.0 8202 -68925 Rpap1 RNA polymerase II associated protein 1 Novel U 0.003571507445209662 -0.2269885419694646 1.0 8203 -14282 Fosb FBJ osteosarcoma oncogene B Novel N 0.003566766691511537 -0.2270376465404259 1.0 8204 -233335 Synm synemin, intermediate filament protein Novel N 0.0035666265792840255 -0.22703909781827253 1.0 8205 -666744 Gm8267 predicted gene 8267 Novel U 0.003565289183368392 -0.22705295052120214 1.0 8206 -245643 Frmpd3 FERM and PDZ domain containing 3 Novel U 0.0035651945548549144 -0.227053930680234 1.0 8207 -72709 C1qtnf6 C1q and tumor necrosis factor related protein 6 Novel U 0.003564374179977648 -0.22706242809624436 1.0 8208 -17929 Myom1 myomesin 1 Novel U 0.0035637923968926044 -0.22706845418631413 1.0 8209 -71805 Nup93 nucleoporin 93 Novel U 0.0035627497320743417 -0.22707925407422594 1.0 8210 -102639995 Krtap10-35 keratin associated protein 10-35 Novel U 0.003561141331141864 -0.22709591383821123 1.0 8211 -75482 Hspb9 heat shock protein, alpha-crystallin-related, B9 Novel U 0.003561141029112974 -0.22709591696661655 1.0 8212 -12465 Cct5 chaperonin containing TCP1 subunit 5 Novel U 0.003560381130324931 -0.2271037879732828 1.0 8213 -100042881 Rbmyf3 RNA binding motif protein Y-linked family member 3 Novel U 0.0035598263966940937 -0.2271095338859951 1.0 8214 -18120 Mrpl49 mitochondrial ribosomal protein L49 Novel U 0.003559765771572776 -0.22711016183900876 1.0 8215 -68487 Tmem140 transmembrane protein 140 Novel U 0.0035597193935774643 -0.2271106422207596 1.0 8216 -21954 Tnni3 troponin I, cardiac 3 Novel U 0.0035588828752603136 -0.22711930684998957 1.0 8217 -17200 Mc2r melanocortin 2 receptor Novel U 0.003556357436075825 -0.22714546526604318 1.0 8218 -18126 Nos2 nitric oxide synthase 2, inducible Novel U 0.0035539949373525406 -0.227169935950156 1.0 8219 -258768 Or4c102 olfactory receptor family 4 subfamily C member 102 Novel U 0.0035521483546750274 -0.22718906279282655 1.0 8220 -225998 Rorb RAR-related orphan receptor beta Novel N 0.003551656402486076 -0.22719415841742766 1.0 8221 -66624 Spcs2 signal peptidase complex subunit 2 homolog (S. cerevisiae) Novel N 0.0035503095296314153 -0.22720810928218016 1.0 8222 -16582 Kifc3 kinesin family member C3 Novel U 0.003549713467390986 -0.22721428327527204 1.0 8223 -14712 Gnpat glyceronephosphate O-acyltransferase Novel U 0.0035473299796527787 -0.22723897136291146 1.0 8224 -233870 Tufm Tu translation elongation factor, mitochondrial Novel N 0.003546565660511664 -0.22724688815544947 1.0 8225 -66146 Maco1 macoilin 1 Novel N 0.003545960523279544 -0.22725315614700695 1.0 8226 -28135 Cep63 centrosomal protein 63 Novel U 0.003545411353129947 -0.2272588444333635 1.0 8227 -14559 Gdf1 growth differentiation factor 1 Novel U 0.0035444301887518244 -0.22726900730173805 1.0 8228 -320878 Mical2 microtubule associated monooxygenase, calponin and LIM domain containing 2 Novel U 0.003543041293755292 -0.22728339343045467 1.0 8229 -380683 Sec14l3 SEC14-like lipid binding 3 Novel U 0.0035420304913927215 -0.2272938632880978 1.0 8230 -100042179 Pam16l presequence translocase associated motor 16 like Novel U 0.003541380613528549 -0.22730059470165137 1.0 8231 -107889 Gcm2 glial cells missing homolog 2 Novel U 0.0035409376691232656 -0.22730518270524028 1.0 8232 -56520 Nme4 NME/NM23 nucleoside diphosphate kinase 4 Novel N 0.003540234106455941 -0.22731247018422004 1.0 8233 -19084 Prkar1a protein kinase, cAMP dependent regulatory, type I, alpha Novel U 0.0035394524231462466 -0.2273205668342454 1.0 8234 -20371 Foxp3 forkhead box P3 Novel U 0.0035382533996242125 -0.22733298628047083 1.0 8235 -140629 Ubox5 U box domain containing 5 Novel U 0.003535208845605362 -0.22736452167091378 1.0 8236 -56747 Sez6l seizure related 6 homolog like Novel U 0.0035331801700885304 -0.227385534625228 1.0 8237 -76670 Cfap70 cilia and flagella associated protein 70 Novel N 0.003533111668748168 -0.22738624415985959 1.0 8238 -319880 Tmcc3 transmembrane and coiled coil domains 3 Novel U 0.003532791684823982 -0.2273895585428274 1.0 8239 -69922 Vrk2 vaccinia related kinase 2 Novel U 0.0035324233439563407 -0.22739337380542593 1.0 8240 -214944 Mob3b MOB kinase activator 3B Novel N 0.0035321782482614843 -0.22739591249857613 1.0 8241 -77929 Yipf6 Yip1 domain family, member 6 Novel U 0.003531973615432316 -0.22739803207869372 1.0 8242 -114228 Prss1 serine protease 1 (trypsin 1) Novel U 0.0035314934744400802 -0.22740300536330751 1.0 8243 -100503572 Bbip1 BBSome interacting protein 1 Novel N 0.003531378079232193 -0.22740420062307742 1.0 8244 -21833 Thra thyroid hormone receptor alpha Novel U 0.003531269520948574 -0.22740532506621047 1.0 8245 -627805 Vmn2r108 vomeronasal 2, receptor 108 Novel U 0.0035297184005793204 -0.22742139152000485 1.0 8246 -74153 Uba7 ubiquitin-like modifier activating enzyme 7 Novel N 0.0035292573141364526 -0.22742616743822267 1.0 8247 -75425 Tti1 TELO2 interacting protein 1 Novel U 0.0035288348020305208 -0.2274305438047266 1.0 8248 -78255 Ralgps2 Ral GEF with PH domain and SH3 binding motif 2 Novel U 0.0035287244374452654 -0.22743168695747262 1.0 8249 -21420 Tfap2c transcription factor AP-2, gamma Novel N 0.0035279323973201474 -0.2274398908830517 1.0 8250 -243612 Ssu2 ssu-2 homolog Novel N 0.003525716804643306 -0.22746283991916472 1.0 8251 -22074 Try4 trypsin 4 Novel U 0.0035247150632865404 -0.22747321592320763 1.0 8252 -66925 Sdhd succinate dehydrogenase complex, subunit D, integral membrane protein Novel U 0.003524704736820793 -0.2274733228844004 1.0 8253 -268933 Wdr24 WD repeat domain 24 Novel U 0.0035215745862349473 -0.22750574488127043 1.0 8254 -100126779 Esp23 exocrine gland secreted peptide 23 Novel U 0.003521300813103402 -0.22750858061436713 1.0 8255 -72179 Fbxl2 F-box and leucine-rich repeat protein 2 Novel U 0.0035206108070453476 -0.22751572767443373 1.0 8256 -68671 Pcyt2 phosphate cytidylyltransferase 2, ethanolamine Novel U 0.0035198716963973533 -0.2275233833582287 1.0 8257 -211134 Lzts1 leucine zipper, putative tumor suppressor 1 Novel U 0.0035197207461039695 -0.22752494689640534 1.0 8258 -53312 Nub1 negative regulator of ubiquitin-like proteins 1 Novel U 0.0035189530369955004 -0.22753289880211383 1.0 8259 -433022 Plcxd2 phosphatidylinositol-specific phospholipase C, X domain containing 2 Novel U 0.003516795633654053 -0.22755524511500372 1.0 8260 -72020 Zfp654 zinc finger protein 654 Novel U 0.0035165727151975283 -0.22755755409704834 1.0 8261 -230700 Foxj3 forkhead box J3 Novel N 0.003514419322679333 -0.22757985886596285 1.0 8262 -223754 Tbc1d22a TBC1 domain family, member 22a Novel U 0.0035134045085678813 -0.22759037027716905 1.0 8263 -235134 Nfrkb nuclear factor related to kappa B binding protein Novel N 0.0035131747439146608 -0.227592750171894 1.0 8264 -68339 Ccdc88c coiled-coil domain containing 88C Novel U 0.0035128161139176724 -0.22759646484961346 1.0 8265 -94352 Loxl2 lysyl oxidase-like 2 Novel U 0.003512368053001944 -0.22760110584984936 1.0 8266 -236794 Slc9a6 solute carrier family 9 (sodium/hydrogen exchanger), member 6 Novel U 0.0035089474051614553 -0.2276365368077334 1.0 8267 -74309 Osbp2 oxysterol binding protein 2 Novel U 0.0035078760385466217 -0.22764763398791057 1.0 8268 -23857 Dmtf1 cyclin D binding myb like transcription factor 1 Novel U 0.0035074508531949817 -0.22765203804380565 1.0 8269 -78388 Mvp major vault protein Novel U 0.003507199921401824 -0.2276546371870702 1.0 8270 -22349 Vil1 villin 1 Novel U 0.003506589526774643 -0.22766095963455293 1.0 8271 -80288 Bcl9l B cell CLL/lymphoma 9-like Novel U 0.003506523856470852 -0.2276616398454008 1.0 8272 -26900 Ddx3y DEAD box helicase 3, Y-linked Novel N 0.003506193701691096 -0.2276650595777563 1.0 8273 -102448 Xylb xylulokinase homolog (H. influenzae) Novel N 0.0035060185473701068 -0.2276668738204552 1.0 8274 -214345 Lrrc1 leucine rich repeat containing 1 Novel U 0.0035059270982287587 -0.22766782104765507 1.0 8275 -258523 Or4c100 olfactory receptor family 4 subfamily C member 100 Novel U 0.003503670713870825 -0.22769119260265988 1.0 8276 -18613 Pecam1 platelet/endothelial cell adhesion molecule 1 Novel U 0.0035036471939056887 -0.22769143622168558 1.0 8277 -193286 Msantd5l Myb/SANT DNA binding domain containing 5 like Novel U 0.003503317678913992 -0.22769484932713735 1.0 8278 -108169097 Pramel44 PRAME like 44 Novel U 0.0035015763209573793 -0.2277128862556079 1.0 8279 -54670 Atp8b1 ATPase, class I, type 8B, member 1 Novel U 0.0035015613123727117 -0.2277130417140345 1.0 8280 -70638 Entrep2 endosomal transmembrane epsin interactor 2 Novel U 0.003499862833552353 -0.2277306345018213 1.0 8281 -100039655 Idi2l isopentenyl-diphosphate delta isomerase 2 like Novel U 0.0034995722408227357 -0.22773364445176195 1.0 8282 -12491 Cd36 CD36 molecule Novel U 0.003498638824173118 -0.22774331275073428 1.0 8283 -53356 Eif3g eukaryotic translation initiation factor 3, subunit G Novel U 0.003497622890601023 -0.227753835757277 1.0 8284 -212862 Chpt1 choline phosphotransferase 1 Novel U 0.0034974766088124855 -0.2277553509392339 1.0 8285 -70603 Mutyh mutY DNA glycosylase Novel U 0.003496648003118958 -0.22776393360976854 1.0 8286 -100037278 Niban3 niban apoptosis regulator 3 Novel U 0.0034965190645496807 -0.22776526915123047 1.0 8287 -433023 Gm5485 predicted gene 5485 Novel U 0.003494602121020335 -0.2277851247892913 1.0 8288 -12655 Chil3 chitinase-like 3 Novel U 0.0034937931196501746 -0.22779350439888896 1.0 8289 -230909 Gm572 predicted gene 572 Novel U 0.003493231333343726 -0.22779932336298342 1.0 8290 -626943 Pramel14 PRAME like 14 Novel U 0.0034925835764910962 -0.22780603280716913 1.0 8291 -67863 Slc25a11 solute carrier family 25 (mitochondrial carrier oxoglutarate carrier), member 11 Novel U 0.003492307470233174 -0.22780889270671215 1.0 8292 -107045 Lars1 leucyl-tRNA synthetase 1 Novel U 0.0034917839121576507 -0.2278143157040474 1.0 8293 -93675 Clec2i C-type lectin domain family 2, member i Novel U 0.0034914591405032476 -0.2278176796781674 1.0 8294 -23996 Psmc4 proteasome (prosome, macropain) 26S subunit, ATPase, 4 Novel N 0.003489876503504643 -0.22783407258017255 1.0 8295 -382864 Colq collagen like tail subunit of asymmetric acetylcholinesterase Novel U 0.003489530729028415 -0.2278376541008306 1.0 8296 -14979 Hsd17b8 hydroxysteroid 17-beta dehydrogenase 8 Novel U 0.0034895066789045995 -0.2278379032112225 1.0 8297 -129135233 Gm57854 predicted gene, 57854 Novel U 0.0034885558417454177 -0.2278477519512602 1.0 8298 -17687 Msh5 mutS homolog 5 Novel N 0.003486353835649622 -0.2278705602580134 1.0 8299 -226251 Ablim1 actin-binding LIM protein 1 Novel U 0.003485834590403923 -0.22787593858319907 1.0 8300 -76073 Pcgf5 polycomb group ring finger 5 Novel N 0.003484825773845541 -0.22788638787194776 1.0 8301 -117109 Pop5 processing of precursor 5, ribonuclease P/MRP family (S. cerevisiae) Novel N 0.003484097680785494 -0.22789392943592895 1.0 8302 -243842 Bicra BRD4 interacting chromatin remodeling complex associated protein Novel U 0.0034830247592650483 -0.22790504272176731 1.0 8303 -72205 Eml2 echinoderm microtubule associated protein like 2 Novel U 0.0034829049033377082 -0.22790628418552264 1.0 8304 -24075 Taf10 TATA-box binding protein associated factor 10 Novel N 0.0034824275103681273 -0.22791122900620814 1.0 8305 -227290 Aamp angio-associated migratory protein Novel U 0.0034809444161096976 -0.22792659084778283 1.0 8306 -71914 Antxr2 anthrax toxin receptor 2 Novel U 0.0034809422960740883 -0.227926612807042 1.0 8307 -14394 Gabra1 gamma-aminobutyric acid type A receptor subunit alpha 1 Novel U 0.003480156796901346 -0.22793474898165136 1.0 8308 -73847 Fam110a family with sequence similarity 110, member A Novel N 0.00347929578831578 -0.2279436672802765 1.0 8309 -18191 Nrxn3 neurexin III Novel N 0.003478504437419205 -0.22795186406684897 1.0 8310 -67298 Gprasp1 G protein-coupled receptor associated sorting protein 1 Novel U 0.003477219936040362 -0.2279651688899053 1.0 8311 -259081 Or51a42 olfactory receptor family 51 subfamily A member 42 Novel U 0.0034764173389470673 -0.22797348216421373 1.0 8312 -211499 Tmem87a transmembrane protein 87A Novel U 0.003476396417661009 -0.22797369886620697 1.0 8313 -16819 Lcn2 lipocalin 2 Novel U 0.0034761139545899855 -0.22797662460941115 1.0 8314 -17380 Mme membrane metallo endopeptidase Novel U 0.0034756392308176363 -0.22798154178263946 1.0 8315 -67845 Rnf115 ring finger protein 115 Novel U 0.0034753758292678676 -0.22798427008723307 1.0 8316 -12747 Clk1 CDC-like kinase 1 Novel N 0.00347531197338451 -0.22798493150437374 1.0 8317 -21787 Tfg Trk-fused gene Novel N 0.0034747832123451375 -0.2279904083938375 1.0 8318 -71446 Get1 guided entry of tail-anchored proteins factor 1 Novel U 0.0034743561798719095 -0.22799483158215725 1.0 8319 -497071 Rnase13 ribonuclease, RNase A family, 13 (non-active) Novel U 0.003473154572530378 -0.2280072777915001 1.0 8320 -71728 Stk11ip serine/threonine kinase 11 interacting protein Novel N 0.003472714175196119 -0.22801183941261108 1.0 8321 -72033 Tsc22d2 TSC22 domain family, member 2 Novel N 0.0034722499682834215 -0.22801664765255283 1.0 8322 -19739 Rgs9 regulator of G-protein signaling 9 Novel N 0.0034697728408211387 -0.228042305657376 1.0 8323 -626995 Pramel30 PRAME like 30 Novel U 0.0034694745008815478 -0.22804539585266287 1.0 8324 -69656 Pir pirin Novel N 0.00346934382961192 -0.22804674934137809 1.0 8325 -384221 Vmn2r17 vomeronasal 2, receptor 17 Novel U 0.003469320702933362 -0.22804698888675434 1.0 8326 -224824 Pex6 peroxisomal biogenesis factor 6 Novel U 0.0034674543018737582 -0.2280663210075751 1.0 8327 -215303 Camk1g calcium/calmodulin-dependent protein kinase I gamma Novel U 0.003466052003600396 -0.22808084596699252 1.0 8328 -100043842 Scgb2b11 secretoglobin, family 2B, member 11 Novel U 0.003464409935121648 -0.22809785445831526 1.0 8329 -541610 Trcg1 taste receptor cell gene 1 Novel U 0.0034628627141593525 -0.22811388052218057 1.0 8330 -170748 Smco4 single-pass membrane protein with coiled-coil domains 4 Novel U 0.003462767640585409 -0.22811486529113412 1.0 8331 -108168658 Gm20914 predicted gene, 20914 Novel U 0.003462415393532799 -0.22811851385452553 1.0 8332 -53860 Septin9 septin 9 Novel U 0.003462232117414874 -0.22812041222253013 1.0 8333 -237823 Pfas phosphoribosylformylglycinamidine synthase (FGAR amidotransferase) Novel N 0.003461574745063198 -0.22812722126373886 1.0 8334 -170767 Rfxap regulatory factor X-associated protein Novel U 0.0034614701398303716 -0.22812830476130178 1.0 8335 -27380 Tcl1b4 T cell leukemia/lymphoma 1B, 4 Novel U 0.003459630176716139 -0.22814736303875344 1.0 8336 -231600 Chfr checkpoint with forkhead and ring finger domains Novel U 0.0034589677839403617 -0.22815422408134997 1.0 8337 -70661 Sik3 SIK family kinase 3 Novel U 0.0034580997775732715 -0.22816321486276608 1.0 8338 -14247 Fli1 Friend leukemia integration 1 Novel U 0.0034580362345135677 -0.22816387303968963 1.0 8339 -20024 Sub1 SUB1 homolog, transcriptional regulator Novel N 0.003457369223095035 -0.228170781922036 1.0 8340 -271127 Adamts16 ADAM metallopeptidase with thrombospondin type 1 motif 16 Novel U 0.0034572908728260974 -0.22817159347154603 1.0 8341 -258512 Or12j3 olfactory receptor family 12 subfamily J member 3 Novel U 0.003457032646930402 -0.22817426816688494 1.0 8342 -338523 Kdm7a lysine (K)-specific demethylase 7A Novel U 0.0034565120597892453 -0.22817966039137963 1.0 8343 -18194 Nsdhl NAD(P) dependent steroid dehydrogenase-like Novel U 0.0034552595666854924 -0.22819263367377482 1.0 8344 -71409 Fmnl2 formin-like 2 Novel U 0.0034541010418337507 -0.22820463363610471 1.0 8345 -12266 C3 complement component 3 Novel U 0.003453846424895264 -0.22820727094998347 1.0 8346 -218756 Slc4a7 solute carrier family 4, sodium bicarbonate cotransporter, member 7 Novel U 0.0034519963982449615 -0.22822643346521096 1.0 8347 -27413 Abcb11 ATP-binding cassette, sub-family B member 11 Novel U 0.0034518404969192643 -0.22822804828601756 1.0 8348 -20658 Son Son DNA binding protein Novel U 0.0034494886330332605 -0.22825240881483538 1.0 8349 -54325 Elovl1 ELOVL fatty acid elongase 1 Novel U 0.0034494037469738905 -0.2282532880618479 1.0 8350 -11973 Atp6v1e1 ATPase, H+ transporting, lysosomal V1 subunit E1 Novel U 0.003447616285008404 -0.22827180253412677 1.0 8351 -238161 Akap6 A kinase anchor protein 6 Novel N 0.00344710326973143 -0.2282771163295012 1.0 8352 -106795 Tcf19 transcription factor 19 Novel U 0.0034438713700956007 -0.2283105922396861 1.0 8353 -207819 Bnip5 BCL2 interacting protein 5 Novel U 0.00344251207331819 -0.22832467179102206 1.0 8354 -21926 Tnf tumor necrosis factor Novel U 0.0034415628998987675 -0.22833450329809804 1.0 8355 -246691 Prok1 prokineticin 1 Novel U 0.003440526042679947 -0.22834524303108575 1.0 8356 -69814 Prss32 serine protease 32 Novel U 0.00343627862522578 -0.2283892376414497 1.0 8357 -106200 Txndc11 thioredoxin domain containing 11 Novel U 0.0034361316988722693 -0.22839075949978938 1.0 8358 -16649 Kpna4 karyopherin subunit alpha 4 Novel U 0.0034358957159245744 -0.2283932038034041 1.0 8359 -208606 Rsrc2 arginine/serine-rich coiled-coil 2 Novel U 0.003435529655539114 -0.22839699544484313 1.0 8360 -60599 Trp53inp1 transformation related protein 53 inducible nuclear protein 1 Novel N 0.0034344513026729013 -0.2284081649883824 1.0 8361 -77045 Bcl7a B cell CLL/lymphoma 7A Novel U 0.0034337698530572083 -0.2284152234211003 1.0 8362 -15235 Mst1 macrophage stimulating 1 (hepatocyte growth factor-like) Novel U 0.003432895737673483 -0.22842427747950994 1.0 8363 -96979 Ptges2 prostaglandin E synthase 2 Novel N 0.003432676441776578 -0.22842654893920109 1.0 8364 -17686 Msh3 mutS homolog 3 Novel U 0.003432626952289046 -0.22842706154968606 1.0 8365 -380601 Fastkd5 FAST kinase domains 5 Novel N 0.0034310208122446386 -0.22844369789546703 1.0 8366 -19276 Ptprn2 protein tyrosine phosphatase receptor type N polypeptide 2 Novel N 0.003430410008381502 -0.22845002458180233 1.0 8367 -665927 Defa42 defensin, alpha, 42 Novel U 0.0034274347825725433 -0.22848084187292622 1.0 8368 -75627 Snapc1 small nuclear RNA activating complex, polypeptide 1 Novel U 0.003424582404602803 -0.22851038671016996 1.0 8369 -272381 Lrrc4b leucine rich repeat containing 4B Novel U 0.0034230245275614973 -0.22852652314935132 1.0 8370 -16490 Kcna2 potassium voltage-gated channel, shaker-related subfamily, member 2 Novel U 0.0034224045048544564 -0.2285329453241687 1.0 8371 -27416 Abcc5 ATP-binding cassette, sub-family C member 5 Novel U 0.003422359296721213 -0.2285334135885267 1.0 8372 -353167 Tas2r123 taste receptor, type 2, member 123 Novel U 0.0034223097844134753 -0.22853392643538264 1.0 8373 -232970 Phldb3 pleckstrin homology like domain, family B, member 3 Novel U 0.0034218198900301386 -0.2285390007453008 1.0 8374 -208431 Shroom4 shroom family member 4 Novel N 0.0034217992006885024 -0.22853921504482136 1.0 8375 -22116 Tsks testis-specific serine kinase substrate Novel U 0.00342038460935458 -0.22855386733535596 1.0 8376 -677289 Prr33 proline rich 33 Novel U 0.003420277624440882 -0.22855497548157508 1.0 8377 -18354 Or1x2 olfactory receptor family 1 subfamily X member 2 Novel U 0.0034190141313080926 -0.22856806270190944 1.0 8378 -224079 Atp13a4 ATPase type 13A4 Novel N 0.003418104966245761 -0.22857747980373785 1.0 8379 -14766 Adgrg1 adhesion G protein-coupled receptor G1 Novel U 0.00341743474161644 -0.22858442196841594 1.0 8380 -56790 Supt20 SPT20 SAGA complex component Novel U 0.003414075972045555 -0.22861921199321755 1.0 8381 -56392 Shoc2 Shoc2, leucine rich repeat scaffold protein Novel U 0.0034112593846658524 -0.2286483861127062 1.0 8382 -327963 Zfp616 zinc finger protein 616 Novel U 0.003410885494109137 -0.22865225885880164 1.0 8383 -22371 Vwf Von Willebrand factor Novel U 0.0034087789331223592 -0.22867407854825325 1.0 8384 -232367 Vmn2r27 vomeronasal 2, receptor27 Novel U 0.003408774131968037 -0.22867412827845188 1.0 8385 -11889 Asgr1 asialoglycoprotein receptor 1 Novel U 0.0034083303163529315 -0.22867872530600347 1.0 8386 -67333 Stk35 serine/threonine kinase 35 Novel U 0.003407678491449432 -0.22868547688692636 1.0 8387 -232836 Galp galanin-like peptide Novel U 0.0034072835864192696 -0.22868956730024698 1.0 8388 -22296 Vmn1r51 vomeronasal 1 receptor 51 Novel U 0.003407115828105454 -0.2286913049353467 1.0 8389 -665301 Gm20773 predicted gene, 20773 Novel U 0.003406959031484028 -0.228692929029597 1.0 8390 -170828 Vgll1 vestigial like family member 1 Novel U 0.0034066017294529516 -0.22869662995228923 1.0 8391 -12156 Bmp2 bone morphogenetic protein 2 Novel U 0.003406596367925738 -0.22869668548681185 1.0 8392 -217370 Cybc1 cytochrome b 245 chaperone 1 Novel U 0.0034026162602953766 -0.22873791131080817 1.0 8393 -79221 Hdac9 histone deacetylase 9 Novel U 0.003400493875801648 -0.22875989489962456 1.0 8394 -70238 Rnf168 ring finger protein 168 Novel U 0.0033988745194729803 -0.2287766681392434 1.0 8395 -83396 Glis2 GLIS family zinc finger 2 Novel N 0.0033987554482935185 -0.22877790147460603 1.0 8396 -11909 Atf2 activating transcription factor 2 Novel U 0.0033977598857866166 -0.22878821347832518 1.0 8397 -12879 Cys1 cystin 1 Novel U 0.00339749605284113 -0.22879094625130147 1.0 8398 -68667 Trpm4 transient receptor potential cation channel, subfamily M, member 4 Novel U 0.003396470387581356 -0.2288015700583453 1.0 8399 -258279 Or7g28 olfactory receptor family 7 subfamily G member 28 Novel U 0.003394581175334315 -0.22882113845669566 1.0 8400 -22063 Trpc1 transient receptor potential cation channel, subfamily C, member 1 Novel N 0.0033929767298024245 -0.22883775725077166 1.0 8401 -77832 Tchp trichoplein, keratin filament binding Novel U 0.003392799367747984 -0.2288395943611011 1.0 8402 -104383 Rcor2 REST corepressor 2 Novel U 0.003392290545322935 -0.22884486472705312 1.0 8403 -66154 Tmem14c transmembrane protein 14C Novel U 0.0033914755932584082 -0.22885330597374737 1.0 8404 -108657 Rnpepl1 arginyl aminopeptidase (aminopeptidase B)-like 1 Novel N 0.0033913112146692027 -0.22885500860177072 1.0 8405 -67860 S100a16 S100 calcium binding protein A16 Novel U 0.0033908418634662225 -0.22885987012610207 1.0 8406 -232337 Zfp637 zinc finger protein 637 Novel U 0.0033878535111594465 -0.22889082338105887 1.0 8407 -17261 Mef2d myocyte enhancer factor 2D Novel N 0.003386858610337594 -0.22890112853106606 1.0 8408 -11576 Afp alpha fetoprotein Novel U 0.0033859408336800426 -0.22891063483151466 1.0 8409 -69034 Nupr2 nuclear protein transcriptional regulator 2 Novel N 0.0033857963552606533 -0.22891213133423322 1.0 8410 -226823 Kctd3 potassium channel tetramerisation domain containing 3 Novel U 0.0033852919635661196 -0.22891735580682424 1.0 8411 -384701 Usp17ld ubiquitin specific peptidase 17-like D Novel U 0.0033852255363497636 -0.22891804385774756 1.0 8412 -19645 Rb1 RB transcriptional corepressor 1 Novel U 0.003384704270177592 -0.22892344311562324 1.0 8413 -108654 Fam210a family with sequence similarity 210, member A Novel U 0.0033815578887739597 -0.22895603323077032 1.0 8414 -329064 Pkd2l1 polycystic kidney disease 2-like 1 Novel U 0.003377829932052079 -0.22899464728394558 1.0 8415 -105193 Nhlrc1 NHL repeat containing 1 Novel U 0.0033755664602000295 -0.22901809225098146 1.0 8416 -279572 Tlr13 toll-like receptor 13 Novel U 0.00337499758146953 -0.22902398467817112 1.0 8417 -79565 Mettl27 methyltransferase like 27 Novel U 0.003374945700357223 -0.2290245220610269 1.0 8418 -66530 Ubxn6 UBX domain protein 6 Novel U 0.003370545281003421 -0.2290701014600376 1.0 8419 -81630 Zbtb22 zinc finger and BTB domain containing 22 Novel U 0.003370238574190613 -0.22907327831912222 1.0 8420 -216166 Plk5 polo like kinase 5 Novel U 0.0033693953587002404 -0.22908201231745226 1.0 8421 -14811 Grin2a glutamate receptor, ionotropic, NMDA2A (epsilon 1) Novel U 0.0033682317575968778 -0.22909406485942957 1.0 8422 -56294 Ptpn9 protein tyrosine phosphatase, non-receptor type 9 Novel U 0.003367159015736794 -0.2291051762843518 1.0 8423 -78926 Gas2l1 growth arrest-specific 2 like 1 Novel U 0.0033655060639692837 -0.22912229750442187 1.0 8424 -381269 Mreg melanoregulin Novel U 0.003365500702568161 -0.22912235303763842 1.0 8425 -219132 Phf11d PHD finger protein 11D Novel U 0.0033639041453067285 -0.22913889012526834 1.0 8426 -94063 Mrpl16 mitochondrial ribosomal protein L16 Novel U 0.0033635966918495316 -0.229142074718071 1.0 8427 -66411 Tbcb tubulin folding cofactor B Novel U 0.003363537268739224 -0.22914269022069414 1.0 8428 -257974 Or8k21 olfactory receptor family 8 subfamily K member 21 Novel U 0.0033632773615631622 -0.2291453823306798 1.0 8429 -67770 Caap1 caspase activity and apoptosis inhibitor 1 Novel N 0.003361098742318651 -0.2291679483971962 1.0 8430 -170829 Tram2 translocating chain-associating membrane protein 2 Novel U 0.0033600582086539114 -0.22917872621068985 1.0 8431 -239319 Card6 caspase recruitment domain family, member 6 Novel U 0.0033599668358363474 -0.2291796726473305 1.0 8432 -666675 Gm8229 predicted gene 8229 Novel U 0.003357850177218537 -0.22920159692771236 1.0 8433 -100043079 Vmn1r258 vomeronasal 1 receptor 258 Novel U 0.003356641689928546 -0.2292141143993352 1.0 8434 -171193 Vmn1r6 vomeronasal 1 receptor 6 Novel U 0.0033551956559719673 -0.22922909237152164 1.0 8435 -103978 Gpc5 glypican 5 Novel U 0.003354305961013902 -0.22923830780265014 1.0 8436 -66306 Fam53c family with sequence similarity 53, member C Novel U 0.0033542421756633536 -0.2292389684892143 1.0 8437 -75409 Slitrk5 SLIT and NTRK-like family, member 5 Novel U 0.0033533394897281355 -0.22924831848045707 1.0 8438 -100048644 Pet117 PET117 homolog Novel N 0.0033502528363080326 -0.22928028993511423 1.0 8439 -11808 Apoa4 apolipoprotein A-IV Novel U 0.003348774603447028 -0.22929560142249425 1.0 8440 -108168685 LOC108168685 PRAME family member 8-like Novel U 0.0033468654690210287 -0.22931537617411932 1.0 8441 -218772 Rarb retinoic acid receptor, beta Novel U 0.003346187704852024 -0.22932239643310157 1.0 8442 -224836 Usp49 ubiquitin specific peptidase 49 Novel N 0.0033456774067485355 -0.22932768208408236 1.0 8443 -76652 Actrt3 actin related protein T3 Novel U 0.003344318366476258 -0.22934175897854656 1.0 8444 -66915 Cops9 COP9 signalosome subunit 9 Novel U 0.0033429585168598 -0.22935584425617117 1.0 8445 -21821 Ift88 intraflagellar transport 88 Novel U 0.0033411407940798004 -0.229374672168972 1.0 8446 -19981 Rpl37a ribosomal protein L37a Novel U 0.0033394578339891886 -0.22939210421426626 1.0 8447 -381921 Taok2 TAO kinase 2 Novel U 0.0033383162389346854 -0.22940392881831287 1.0 8448 -67043 Syap1 synapse associated protein 1 Novel U 0.003337239647286572 -0.22941508011921297 1.0 8449 -627367 Vmn2r97 vomeronasal 2, receptor 97 Novel U 0.0033370504076366777 -0.22941704025728565 1.0 8450 -71740 Nectin4 nectin cell adhesion molecule 4 Novel U 0.003334877302718102 -0.22943954920659532 1.0 8451 -69538 Antxr1 anthrax toxin receptor 1 Novel U 0.00333421694945498 -0.22944638912398677 1.0 8452 -74427 Eaf1 ELL associated factor 1 Novel N 0.0033340190795021845 -0.22944843865445322 1.0 8453 -237890 Slfn14 schlafen 14 Novel N 0.003333670844291987 -0.22945204566331281 1.0 8454 -170644 Ubn1 ubinuclein 1 Novel N 0.0033307548393030502 -0.22948224954712973 1.0 8455 -22412 Wnt9b wingless-type MMTV integration site family, member 9B Novel U 0.003327924664870741 -0.2295115644008626 1.0 8456 -57444 Isg20 interferon-stimulated protein Novel U 0.0033232715517204077 -0.2295597611939109 1.0 8457 -12867 Cox7c cytochrome c oxidase subunit 7C Novel N 0.0033187299877903333 -0.22960680256380275 1.0 8458 -258712 Or10aa1 olfactory receptor family 10 subfamily AA member 1 Novel U 0.0033182280894372288 -0.22961200121044517 1.0 8459 -22779 Ikzf2 IKAROS family zinc finger 2 Novel U 0.003316123606634811 -0.22963379937413145 1.0 8460 -104479 Ccdc117 coiled-coil domain containing 117 Novel N 0.0033156498072800713 -0.22963870697227257 1.0 8461 -107448 Unc5a unc-5 netrin receptor A Novel U 0.003315357139829922 -0.22964173841210025 1.0 8462 -494504 Apcdd1 adenomatosis polyposis coli down-regulated 1 Novel N 0.003314516300584855 -0.22965044779735957 1.0 8463 -16205 Gimap1 GTPase, IMAP family member 1 Novel U 0.0033135376517903726 -0.22966058460940147 1.0 8464 -331487 Uprt uracil phosphoribosyltransferase Novel U 0.003313479041591456 -0.22966119169191515 1.0 8465 -231098 Dnajc5g DnaJ heat shock protein family (Hsp40) member C5 gamma Novel U 0.0033134632343975014 -0.2296613554223105 1.0 8466 -68017 Mrm2 mitochondrial rRNA methyltransferase 2 Novel N 0.0033120766067415586 -0.2296757180659878 1.0 8467 -52897 Rbfox3 RNA binding protein, fox-1 homolog (C. elegans) 3 Novel U 0.0033113514729260617 -0.22968322897821128 1.0 8468 -242570 Raver2 ribonucleoprotein, PTB-binding 2 Novel U 0.0033095084925201454 -0.229702318508671 1.0 8469 -73750 Whrn whirlin Novel U 0.003309401413137609 -0.2297034276333953 1.0 8470 -545909 Vmn2r39 vomeronasal 2, receptor 39 Novel U 0.003308493210754134 -0.22971283476382776 1.0 8471 -74490 Mamstr MEF2 activating motif and SAP domain containing transcriptional regulator Novel U 0.003306305579178395 -0.22973549417977476 1.0 8472 -636931 Trim71 tripartite motif-containing 71 Novel N 0.003306064361332119 -0.22973799270629688 1.0 8473 -74775 Lmbr1l limb region 1 like Novel U 0.0033054395177732816 -0.22974446481533867 1.0 8474 -100503583 Fsbp fibrinogen silencer binding protein Novel U 0.003304385838843909 -0.22975537878705132 1.0 8475 -11674 Aldoa aldolase A, fructose-bisphosphate Novel U 0.0033033101159470704 -0.22976652108945425 1.0 8476 -13648 Klk1b9 kallikrein 1-related peptidase b9 Novel U 0.003302509562447387 -0.22977481319628723 1.0 8477 -71529 Kazn kazrin, periplakin interacting protein Novel U 0.0033024607558831778 -0.22977531873307486 1.0 8478 -100036518 Vmn1r223 vomeronasal 1 receptor 223 Novel U 0.0033013126565445885 -0.22978721070828226 1.0 8479 -16010 Igfbp4 insulin-like growth factor binding protein 4 Novel N 0.0033005927570327045 -0.2297946674037609 1.0 8480 -12445 Ccnd3 cyclin D3 Novel U 0.0032999376791352252 -0.22980145267908847 1.0 8481 -629016 Zfp953 zinc finger protein 953 Novel U 0.003299790104754525 -0.22980298124967252 1.0 8482 -100042953 Nfilz NFIL3 like basic leucine zipper Novel U 0.0032996923932579617 -0.22980399334214185 1.0 8483 -19265 Ptprcap protein tyrosine phosphatase receptor type C polypeptide-associated protein Novel N 0.0032980957690268145 -0.22982053112344186 1.0 8484 -27280 Phlda3 pleckstrin homology like domain, family A, member 3 Novel U 0.003298020842272734 -0.22982130721229754 1.0 8485 -258759 Or10j27 olfactory receptor family 10 subfamily J member 27 Novel U 0.0032979518530311122 -0.22982202180059436 1.0 8486 -76901 Jade2 jade family PHD finger 2 Novel N 0.003297052776642169 -0.2298313344042755 1.0 8487 -19649 Robo3 roundabout guidance receptor 3 Novel N 0.0032929874885036458 -0.2298734425251752 1.0 8488 -68095 Ociad1 OCIA domain containing 1 Novel U 0.0032917951001359214 -0.2298857932446904 1.0 8489 -17286 Meox2 mesenchyme homeobox 2 Novel N 0.0032897742741747615 -0.229906724893565 1.0 8490 -56530 Cnpy2 canopy FGF signaling regulator 2 Novel U 0.003289291102181216 -0.22991172957319075 1.0 8491 -19824 Trim10 tripartite motif-containing 10 Novel U 0.003289222837923611 -0.22991243665212696 1.0 8492 -20977 Syp synaptophysin Novel N 0.0032888471915741044 -0.22991632758466643 1.0 8493 -72129 Pex13 peroxisomal biogenesis factor 13 Novel U 0.0032877299281957244 -0.22992790016201162 1.0 8494 -108956 Apol7c apolipoprotein L 7c Novel U 0.003286309455907878 -0.22994261336727362 1.0 8495 -17279 Melk maternal embryonic leucine zipper kinase Novel U 0.003285215720163936 -0.22995394224615476 1.0 8496 -107476 Acaca acetyl-Coenzyme A carboxylase alpha Novel N 0.0032849663569072653 -0.22995652514256998 1.0 8497 -13690 Eif4g2 eukaryotic translation initiation factor 4, gamma 2 Novel N 0.003283992721093865 -0.22996661003031862 1.0 8498 -107652 Uap1 UDP-N-acetylglucosamine pyrophosphorylase 1 Novel U 0.003283524707349344 -0.22997145770129923 1.0 8499 -16948 Lox lysyl oxidase Novel U 0.003282496807846675 -0.22998210465055752 1.0 8500 -73884 Zdbf2 zinc finger, DBF-type containing 2 Novel U 0.003282340978027623 -0.22998371873070064 1.0 8501 -18108 Nmt2 N-myristoyltransferase 2 Novel U 0.0032801878945187503 -0.2300060202989067 1.0 8502 -387354 Tas2r129 taste receptor, type 2, member 129 Novel U 0.003279084175138841 -0.230017452587961 1.0 8503 -22061 Trp63 transformation related protein 63 Novel U 0.003277508587771471 -0.23003377247011755 1.0 8504 -83921 Cemip2 cell migration inducing hyaluronidase 2 Novel U 0.0032773676029265435 -0.23003523278650673 1.0 8505 -27407 Abcf2 ATP-binding cassette, sub-family F member 2 Novel U 0.003277166138926553 -0.23003731954399584 1.0 8506 -13427 Dync1i2 dynein cytoplasmic 1 intermediate chain 2 Novel N 0.003277011176716394 -0.23003892463747455 1.0 8507 -104662 Tsr1 TSR1 20S rRNA accumulation Novel U 0.0032761116805580088 -0.23004824158911377 1.0 8508 -223693 Tmem184b transmembrane protein 184b Novel U 0.00327602870034398 -0.23004910109544285 1.0 8509 -69372 Mocs3 molybdenum cofactor synthesis 3 Novel N 0.003275635633620473 -0.23005317246764356 1.0 8510 -93897 Fzd10 frizzled class receptor 10 Novel U 0.0032751642520582862 -0.23005805502236887 1.0 8511 -52065 Mfhas1 malignant fibrous histiocytoma amplified sequence 1 Novel U 0.003274754613826456 -0.23006229804170802 1.0 8512 -19946 Rpl30 ribosomal protein L30 Novel N 0.0032739228796082294 -0.23007091311739863 1.0 8513 -56299 Fkbpl FK506 binding protein-like Novel U 0.003273407297341691 -0.23007625350156657 1.0 8514 -664610 Rhox4d reproductive homeobox 4D Novel U 0.0032733676468743875 -0.2300766641998035 1.0 8515 -19267 Ptpre protein tyrosine phosphatase receptor type E Novel N 0.003271054762285119 -0.23010062098234713 1.0 8516 -240595 Kcnv2 potassium channel, subfamily V, member 2 Novel N 0.003270810858157204 -0.23010314733328616 1.0 8517 -100041621 Ermardl1 ER membrane associated RNA degradation like 1 Novel U 0.0032696447115022394 -0.23011522624200328 1.0 8518 -67358 1700093K21Rik RIKEN cDNA 1700093K21 gene Novel U 0.003268377043820242 -0.23012835670218107 1.0 8519 -100039740 Rps18-ps6 ribosomal protein S18, pseudogene 6 Novel U 0.0032676520606001224 -0.23013586605454253 1.0 8520 -14464 Gata5 GATA binding protein 5 Novel U 0.00326737414073949 -0.23013874473932283 1.0 8521 -16764 Aff3 AF4/FMR2 family, member 3 Novel U 0.003266912062536793 -0.23014353093015638 1.0 8522 -97863 Fam8a1 family with sequence similarity 8, member A1 Novel U 0.0032662715814839147 -0.2301501650118474 1.0 8523 -668958 Btbd35f11 BTB domain containing 35, family member 11 Novel U 0.0032651819048861654 -0.23016145184622572 1.0 8524 -546983 Vmn2r77 vomeronasal 2, receptor 77 Novel U 0.0032632023197516845 -0.2301819563239733 1.0 8525 -268656 Sptlc1 serine palmitoyltransferase, long chain base subunit 1 Novel U 0.0032623994186560283 -0.23019027274712814 1.0 8526 -627636 Vmn2r103 vomeronasal 2, receptor 103 Novel U 0.003262242984779736 -0.2301918930840763 1.0 8527 -71883 Coq2 coenzyme Q2 4-hydroxybenzoate polyprenyltransferase Novel U 0.003261839948387657 -0.23019606772177637 1.0 8528 -620078 Sp140l2 Sp140 nuclear body protein like 2 Novel U 0.0032614044080842472 -0.23020057903392147 1.0 8529 -15378 Hnf4a hepatic nuclear factor 4, alpha Novel U 0.0032601916596764207 -0.23021314064206277 1.0 8530 -74288 Spem1 spermatid maturation 1 Novel U 0.0032590034174348457 -0.23022544841613962 1.0 8531 -12835 Col6a3 collagen, type VI, alpha 3 Novel U 0.003258180015326953 -0.2302339771881053 1.0 8532 -68879 Prpf6 pre-mRNA splicing factor 6 Novel N 0.003257318961469221 -0.23024289595565806 1.0 8533 -66309 Tmem128 transmembrane protein 128 Novel U 0.0032561958663222088 -0.23025452893827106 1.0 8534 -26457 Slc27a1 solute carrier family 27 (fatty acid transporter), member 1 Novel U 0.0032555796954102127 -0.23026091121632197 1.0 8535 -17936 Nab1 Ngfi-A binding protein 1 Novel U 0.003255546325912503 -0.2302612568564823 1.0 8536 -69388 Fam236c family with sequence similarity 236, member C Novel U 0.003254444214565199 -0.23027267248958774 1.0 8537 -234664 Nae1 NEDD8 activating enzyme E1 subunit 1 Novel U 0.0032541698460835573 -0.23027551438930116 1.0 8538 -18372 Or7a42 olfactory receptor family 7 subfamily A member 42 Novel U 0.0032530175412552567 -0.23028744992483274 1.0 8539 -22004 Tpm2 tropomyosin 2, beta Novel U 0.003252546397367118 -0.23029233001773808 1.0 8540 -17763 Mtcp1 mature T cell proliferation 1 Novel N 0.003251590390068023 -0.23030223230991506 1.0 8541 -18789 Papola poly (A) polymerase alpha Novel N 0.003251298296333967 -0.2303052578072103 1.0 8542 -56309 Mycbp MYC binding protein Novel N 0.0032500765221058978 -0.23031791290450102 1.0 8543 -20409 Ostf1 osteoclast stimulating factor 1 Novel N 0.00324999478875996 -0.2303187594958114 1.0 8544 -19822 Rnf4 ring finger protein 4 Novel U 0.0032497233357738206 -0.2303215711969183 1.0 8545 -14823 Grm8 glutamate receptor, metabotropic 8 Novel N 0.003249601131475781 -0.23032283698502012 1.0 8546 -239719 Mrtfb myocardin related transcription factor B Novel N 0.003249521035219436 -0.2303236666194103 1.0 8547 -78521 B230219D22Rik RIKEN cDNA B230219D22 gene Novel U 0.0032492797602576245 -0.23032616573753328 1.0 8548 -52856 Mtg2 mitochondrial ribosome associated GTPase 2 Novel N 0.0032483681525008624 -0.23033560814071033 1.0 8549 -330963 Ankdd1a ankyrin repeat and death domain containing 1A Novel U 0.0032474599005070538 -0.23034501578500502 1.0 8550 -672125 Gm14496 predicted gene 14496 Novel U 0.003246004130943037 -0.23036009459829326 1.0 8551 -619788 Vmn2r117 vomeronasal 2, receptor 117 Novel U 0.0032457587996015235 -0.23036263573226384 1.0 8552 -21374 Tbp TATA box binding protein Novel U 0.0032456283587635245 -0.23036398683417583 1.0 8553 -102022 Ces2a carboxylesterase 2A Novel U 0.0032453140118357303 -0.2303672428293203 1.0 8554 -67490 Ufl1 UFM1 specific ligase 1 Novel U 0.0032452876388996354 -0.23036751599932542 1.0 8555 -113852 Vmn1r50 vomeronasal 1 receptor 50 Novel U 0.0032442866171434577 -0.2303778845497691 1.0 8556 -20563 Slit2 slit guidance ligand 2 Novel U 0.00324379750493589 -0.23038295075793636 1.0 8557 -329919 Skint2 selection and upkeep of intraepithelial T cells 2 Novel U 0.00324174695621635 -0.23040419027416523 1.0 8558 -16646 Kpna1 karyopherin subunit alpha 1 Novel U 0.003238835068111901 -0.23043435151542793 1.0 8559 -218343 Skic3 SKI3 subunit of superkiller complex Novel U 0.0032371048175041384 -0.2304522733943442 1.0 8560 -103425 Ncln nicalin Novel U 0.003235655614076953 -0.230467284195803 1.0 8561 -432838 Gm5460 predicted gene 5460 Novel U 0.003235351575122571 -0.23047043342129775 1.0 8562 -66892 Eif4e3 eukaryotic translation initiation factor 4E member 3 Novel U 0.0032328438998469678 -0.23049640783936706 1.0 8563 -20807 Srf serum response factor Novel U 0.0032310838445317454 -0.23051463843446343 1.0 8564 -56417 Adar adenosine deaminase, RNA-specific Novel U 0.0032307962904751754 -0.23051761690992856 1.0 8565 -93760 Arid1a AT-rich interaction domain 1A Novel U 0.003230618977858357 -0.2305194535081847 1.0 8566 -100042781 Vmn2r40 vomeronasal 2, receptor 40 Novel U 0.003230475518075293 -0.2305209394599017 1.0 8567 -22589 Atrx ATRX, chromatin remodeler Novel U 0.0032304611664913715 -0.2305210881131362 1.0 8568 -258409 Or5an9 olfactory receptor family 5 subfamily AN member 9 Novel U 0.003230340045824811 -0.2305223426770188 1.0 8569 -258992 Or10q1 olfactory receptor family 10 subfamily Q member 1 Novel U 0.0032295664354314423 -0.23053035570804226 1.0 8570 -258249 Or7g27 olfactory receptor family 7 subfamily G member 27 Novel U 0.003227649086678784 -0.2305502155433928 1.0 8571 -621239 Nhlrc4 NHL repeat containing 4 Novel U 0.0032268035235261928 -0.23055897385873098 1.0 8572 -13589 Mapre1 microtubule-associated protein, RP/EB family, member 1 Novel U 0.0032254170519768577 -0.2305733348854612 1.0 8573 -59003 Maea macrophage erythroblast attacher Novel N 0.0032250597924229226 -0.23057703536817659 1.0 8574 -228576 Mall mal, T cell differentiation protein-like Novel U 0.0032247810322852495 -0.23057992275651884 1.0 8575 -93872 Pcdhb1 protocadherin beta 1 Novel U 0.0032247432440640875 -0.23058031416567143 1.0 8576 -75430 Anapc15 anaphase promoting complex C subunit 15 Novel U 0.0032246257039461115 -0.23058153164234949 1.0 8577 -78688 Nol3 nucleolar protein 3 (apoptosis repressor with CARD domain) Novel U 0.003224614712267771 -0.23058164549379243 1.0 8578 -13872 Ercc3 excision repair cross-complementing rodent repair deficiency, complementation group 3 Novel U 0.0032240419731072146 -0.23058757790718967 1.0 8579 -16000 Igf1 insulin-like growth factor 1 Novel U 0.003222871394373174 -0.23059970272323616 1.0 8580 -140546 Eri3 exoribonuclease 3 Novel U 0.003222870370805293 -0.23059971332531864 1.0 8581 -72119 Tpx2 TPX2, microtubule-associated Novel U 0.0032228449974242702 -0.23059997614196515 1.0 8582 -20186 Nr1h4 nuclear receptor subfamily 1, group H, member 4 Novel U 0.0032224684538506012 -0.230603876367923 1.0 8583 -231915 Uspl1 ubiquitin specific peptidase like 1 Novel U 0.0032223950171489913 -0.2306046370228642 1.0 8584 -16773 Lama2 laminin, alpha 2 Novel U 0.0032220665115842836 -0.23060803967270438 1.0 8585 -12406 Serpinh1 serine (or cysteine) peptidase inhibitor, clade H, member 1 Novel U 0.0032218043898259324 -0.23061075472126058 1.0 8586 -65112 Pmepa1 prostate transmembrane protein, androgen induced 1 Novel U 0.0032210609409995066 -0.23061845533976516 1.0 8587 -100041678 Gm3500 predicted gene 3500 Novel U 0.0032210337171190958 -0.2306187373238235 1.0 8588 -14807 Grik3 glutamate receptor, ionotropic, kainate 3 Novel N 0.0032194943885456074 -0.230634681638585 1.0 8589 -16763 Lad1 ladinin Novel U 0.0032186808178119464 -0.23064310857749956 1.0 8590 -271377 Zbtb11 zinc finger and BTB domain containing 11 Novel U 0.0032180152222794573 -0.23065000279414483 1.0 8591 -227446 Relch RAB11 binding and LisH domain, coiled-coil and HEAT repeat containing Novel U 0.0032174309118182163 -0.23065605506269418 1.0 8592 -239743 Klhl6 kelch-like 6 Novel U 0.003217019788905917 -0.23066031346030483 1.0 8593 -13038 Ctsk cathepsin K Novel U 0.003216388672369778 -0.2306668505446393 1.0 8594 -72542 Pgam5 phosphoglycerate mutase family member 5 Novel U 0.0032137739979028273 -0.23069393325681523 1.0 8595 -387343 Tas2r109 taste receptor, type 2, member 109 Novel U 0.0032132061031606993 -0.23069981549188565 1.0 8596 -54722 Gsdme gasdermin E Novel U 0.003213151139188566 -0.23070038480690216 1.0 8597 -625029 Vmn2r83 vomeronasal 2, receptor 83 Novel U 0.0032122952609099733 -0.23070924996597633 1.0 8598 -68379 Ciz1 CDKN1A interacting zinc finger protein 1 Novel U 0.003211097455330573 -0.23072165679679205 1.0 8599 -14941 Gzmd granzyme D Novel U 0.0032104554216588763 -0.23072830696045774 1.0 8600 -54484 Mkrn1 makorin, ring finger protein, 1 Novel U 0.003209984602165803 -0.23073318369328963 1.0 8601 -208258 Ankrd33 ankyrin repeat domain 33 Novel U 0.003209729763954075 -0.23073582329910935 1.0 8602 -74646 Spsb1 splA/ryanodine receptor domain and SOCS box containing 1 Novel U 0.003207605182280541 -0.23075782964624197 1.0 8603 -432555 Gm5431 predicted gene 5431 Novel U 0.003206411127364398 -0.23077019762781092 1.0 8604 -321022 Cdv3 carnitine deficiency-associated gene expressed in ventricle 3 Novel U 0.003205527119926785 -0.23077935414778952 1.0 8605 -11731 Ang2 angiogenin, ribonuclease A family, member 2 Novel U 0.0032053510426853222 -0.2307811779500684 1.0 8606 -237615 Ankrd52 ankyrin repeat domain 52 Novel U 0.00320223228734969 -0.2308134819153113 1.0 8607 -17829 Muc1 mucin 1, transmembrane Novel U 0.0032015937464858037 -0.23082009590058855 1.0 8608 -78658 Ncapd3 non-SMC condensin II complex, subunit D3 Novel U 0.00320001986496846 -0.23083639811360662 1.0 8609 -76217 Jakmip2 janus kinase and microtubule interacting protein 2 Novel U 0.003199760720768722 -0.2308390823207086 1.0 8610 -73254 Ccdc18 coiled-coil domain containing 18 Novel U 0.003199752731529932 -0.23083916507298138 1.0 8611 -69387 Dnajb13 DnaJ heat shock protein family (Hsp40) member B13 Novel N 0.003198080843805308 -0.23085648243107265 1.0 8612 -14248 Flii flightless I actin binding protein Novel U 0.003197294342042033 -0.2308646289904818 1.0 8613 -14161 Fga fibrinogen alpha chain Novel U 0.003194536876658772 -0.23089319072627484 1.0 8614 -15510 Hspd1 heat shock protein 1 (chaperonin) Novel U 0.0031939071085322003 -0.23089971384382738 1.0 8615 -380839 Serpinb1c serine (or cysteine) peptidase inhibitor, clade B, member 1c Novel U 0.003192644300502555 -0.23091279396788586 1.0 8616 -276950 Slfn8 schlafen 8 Novel U 0.0031914583545874994 -0.23092507795668812 1.0 8617 -53321 Cntnap1 contactin associated protein-like 1 Novel U 0.0031911393412638526 -0.23092838228620746 1.0 8618 -100042921 Vmn2r51 vomeronasal 2, receptor 51 Novel U 0.0031909902405171356 -0.23092992666684053 1.0 8619 -107508 Eprs1 glutamyl-prolyl-tRNA synthetase 1 Novel U 0.003188241959743833 -0.2309583932687455 1.0 8620 -72113 Adck1 aarF domain containing kinase 1 Novel N 0.0031881783761942605 -0.23095905186506183 1.0 8621 -16774 Lama3 laminin, alpha 3 Novel U 0.0031879602214680692 -0.23096131150454424 1.0 8622 -18023 Nfe2l1 nuclear factor, erythroid derived 2,-like 1 Novel N 0.0031845848515703453 -0.23099627347498555 1.0 8623 -12575 Cdkn1a cyclin dependent kinase inhibitor 1A Novel U 0.0031832363550818284 -0.2310102411572842 1.0 8624 -22245 Uck1 uridine-cytidine kinase 1 Novel N 0.0031829000161792548 -0.2310137249445805 1.0 8625 -14266 Aff2 AF4/FMR2 family, member 2 Novel U 0.003182646898841778 -0.23101634672564128 1.0 8626 -18458 Pabpc1 poly(A) binding protein, cytoplasmic 1 Novel U 0.0031819794610733125 -0.23102326002410623 1.0 8627 -66144 Atp6v1f ATPase, H+ transporting, lysosomal V1 subunit F Novel U 0.0031815982437709747 -0.23102720866039203 1.0 8628 -74435 Lrriq3 leucine-rich repeats and IQ motif containing 3 Novel U 0.0031813643201045335 -0.2310296316340392 1.0 8629 -223455 Marchf6 membrane associated ring-CH-type finger 6 Novel U 0.0031793772220851287 -0.23105021393000183 1.0 8630 -22388 Wdr1 WD repeat domain 1 Novel U 0.00317841582613955 -0.23106017203760196 1.0 8631 -68366 Tmem129 transmembrane protein 129 Novel U 0.003178268926780124 -0.23106169361633785 1.0 8632 -12443 Ccnd1 cyclin D1 Novel U 0.0031779435431926314 -0.23106506392884066 1.0 8633 -321007 Serac1 serine active site containing 1 Novel U 0.0031769398892199244 -0.23107545974369664 1.0 8634 -18160 Npr1 natriuretic peptide receptor 1 Novel U 0.003174423843317466 -0.23110152086444372 1.0 8635 -258300 Or5b24 olfactory receptor family 5 subfamily B member 24 Novel U 0.0031735484106665108 -0.23111058856706404 1.0 8636 -328561 Apol10b apolipoprotein L 10B Novel U 0.003172064547747039 -0.23112595837040453 1.0 8637 -320360 Ric3 RIC3 acetylcholine receptor chaperone Novel U 0.0031692746755996376 -0.2311548557743952 1.0 8638 -71287 Cpvl carboxypeptidase, vitellogenic-like Novel U 0.003168592602835145 -0.2311619206616679 1.0 8639 -75573 Prr29 proline rich 29 Novel U 0.003167560474395743 -0.23117261141411385 1.0 8640 -215001 Wfikkn1 WAP, FS, Ig, KU, and NTR-containing protein 1 Novel U 0.00316609115715122 -0.23118783055383138 1.0 8641 -194225 Pramel27 PRAME like 27 Novel U 0.0031657453171956697 -0.23119141275272212 1.0 8642 -208994 Fam83b family with sequence similarity 83, member B Novel U 0.003165668601791408 -0.23119220736835758 1.0 8643 -225913 Tkfc triokinase, FMN cyclase Novel U 0.003165076668555555 -0.2311983385933558 1.0 8644 -259037 Or6b6 olfactory receptor family 6 subfamily B member 6 Novel U 0.0031642947296849438 -0.23120643789047274 1.0 8645 -140781 Myh7 myosin, heavy polypeptide 7, cardiac muscle, beta Novel U 0.0031639654148721778 -0.2312098489224777 1.0 8646 -67693 Hypk huntingtin interacting protein K Novel N 0.003163144004927329 -0.23121835705968405 1.0 8647 -18103 Nme2 NME/NM23 nucleoside diphosphate kinase 2 Novel N 0.0031630440073680027 -0.2312193928311163 1.0 8648 -21341 Taf1c TATA-box binding protein associated factor, RNA polymerase I, C Novel N 0.0031624388708532663 -0.23122566081524318 1.0 8649 -102634333 1110002E22Rik RIKEN cDNA 1110002E22 gene Novel U 0.0031622449496104257 -0.23122766944510167 1.0 8650 -66592 Stoml2 stomatin (Epb7.2)-like 2 Novel U 0.0031620694799765208 -0.23122948695380144 1.0 8651 -67702 Rnf149 ring finger protein 149 Novel U 0.003161376950880153 -0.23123666014741592 1.0 8652 -58909 Fam13a family with sequence similarity 13, member A Novel U 0.0031580687013439937 -0.23127092688735862 1.0 8653 -50722 Dkkl1 dickkopf-like 1 Novel N 0.0031577178567102414 -0.23127456092454163 1.0 8654 -330369 Fbxo41 F-box protein 41 Novel U 0.0031571620939458856 -0.2312803174969851 1.0 8655 -18576 Pde3b phosphodiesterase 3B, cGMP-inhibited Novel U 0.0031562526478089996 -0.23128973751017456 1.0 8656 -75266 Tomm20l translocase of outer mitochondrial membrane 20-like Novel U 0.0031547843765761994 -0.2313049458153371 1.0 8657 -18505 Pax3 paired box 3 Novel U 0.0031541194160254844 -0.23131183345486198 1.0 8658 -414077 Wdr83os WD repeat domain 83 opposite strand Novel U 0.0031524040503259224 -0.23132960115638845 1.0 8659 -20317 Serpinf1 serine (or cysteine) peptidase inhibitor, clade F, member 1 Novel U 0.00315119119058074 -0.23134216391775841 1.0 8660 -11783 Apaf1 apoptotic peptidase activating factor 1 Novel N 0.003151051068771841 -0.23134361529484873 1.0 8661 -170813 Ms4a3 membrane-spanning 4-domains, subfamily A, member 3 Novel U 0.0031506960439365516 -0.23134729263042186 1.0 8662 -268301 Sowahc sosondowah ankyrin repeat domain family member C Novel U 0.003150361819769273 -0.23135075451335949 1.0 8663 -244202 Nlrp10 NLR family, pyrin domain containing 10 Novel U 0.003149322633414071 -0.23136151837146526 1.0 8664 -387355 Tas2r130 taste receptor, type 2, member 130 Novel N 0.0031486189602901865 -0.23136880699455045 1.0 8665 -232371 C1rl complement component 1, r subcomponent-like Novel U 0.0031484023391542665 -0.2313710507491553 1.0 8666 -574429 Psg26 pregnancy-specific beta-1-glycoprotein 26 Novel U 0.003147727104704623 -0.23137804480538757 1.0 8667 -433070 Vmn2r96 vomeronasal 2, receptor 96 Novel U 0.003147130995437184 -0.23138421928558364 1.0 8668 -66818 Smim7 small integral membrane protein 7 Novel U 0.00314709221650097 -0.23138462095653015 1.0 8669 -81898 Sf3b1 splicing factor 3b, subunit 1 Novel U 0.0031464880569736764 -0.23139087882105322 1.0 8670 -270110 Irf2bp2 interferon regulatory factor 2 binding protein 2 Novel U 0.003146379183664354 -0.23139200652721212 1.0 8671 -18261 Ocm oncomodulin Novel U 0.003144907921336347 -0.2314072458140405 1.0 8672 -244049 Mctp2 multiple C2 domains, transmembrane 2 Novel U 0.0031444747336791972 -0.23141173275755297 1.0 8673 -67747 Ribc2 RIB43A domain with coiled-coils 2 Novel U 0.0031430468902496175 -0.23142652231285873 1.0 8674 -16618 Klk1b26 kallikrein 1-related petidase b26 Novel U 0.003142367369739379 -0.23143356076396576 1.0 8675 -13057 Cyba cytochrome b-245, alpha polypeptide Novel U 0.0031423537910306304 -0.2314337014117846 1.0 8676 -108832 Tmem74b transmembrane protein 74B Novel U 0.0031417825630991325 -0.23143961817192094 1.0 8677 -18619 Penk preproenkephalin Novel N 0.003141049284379621 -0.2314472134487924 1.0 8678 -319197 Gpr4 G protein-coupled receptor 4 Novel U 0.0031402161067626117 -0.23145584347516016 1.0 8679 -107951 Cdk9 cyclin dependent kinase 9 Novel U 0.003139894902887705 -0.23145917049433742 1.0 8680 -329366 Ccdc187 coiled-coil domain containing 187 Novel U 0.0031391098955226436 -0.231467301574819 1.0 8681 -14178 Fgf7 fibroblast growth factor 7 Novel U 0.003137236638024042 -0.2314867047144095 1.0 8682 -75216 Cep128 centrosomal protein 128 Novel N 0.003136513126631496 -0.2314941988216293 1.0 8683 -13388 Dll1 delta like canonical Notch ligand 1 Novel U 0.0031361159177349255 -0.23149831309832247 1.0 8684 -17095 Lyl1 lymphoblastomic leukemia 1 Novel N 0.0031356610444997247 -0.23150302466033953 1.0 8685 -50911 Exosc9 exosome component 9 Novel U 0.0031354262707802786 -0.23150545643880777 1.0 8686 -70646 Naa30 N(alpha)-acetyltransferase 30, NatC catalytic subunit Novel U 0.0031332991795440255 -0.23152748877990853 1.0 8687 -12040 Bckdhb branched chain ketoacid dehydrogenase E1, beta polypeptide Novel N 0.003133262811024275 -0.23152786548384055 1.0 8688 -668894 Vinac1 vinculin/alpha-catenin family member 1 Novel U 0.0031322237596245936 -0.2315386279440815 1.0 8689 -100043123 Cd300ld4 CD300 molecule like family member D4 Novel U 0.003130079478914896 -0.2315608383331831 1.0 8690 -217331 Unk unkempt family zinc finger Novel N 0.0031293062063932377 -0.23156884786454246 1.0 8691 -56461 Kcnip3 Kv channel interacting protein 3, calsenilin Novel N 0.0031241196467546757 -0.23162257007877973 1.0 8692 -170823 Glmn glomulin, FKBP associated protein Novel U 0.003123988570592761 -0.23162392776135593 1.0 8693 -89867 Sec16b SEC16 homolog B, endoplasmic reticulum export factor Novel U 0.00312180743065836 -0.23164651993709537 1.0 8694 -108803 Spem2 SPEM family member 2 Novel U 0.0031182852452684294 -0.23168300261757865 1.0 8695 -227737 Niban2 niban apoptosis regulator 2 Novel U 0.00311813751277847 -0.23168453282585322 1.0 8696 -17898 Myl7 myosin, light polypeptide 7, regulatory Novel U 0.003117414089785339 -0.23169202601743483 1.0 8697 -448987 Fbxl7 F-box and leucine-rich repeat protein 7 Novel U 0.0031161858805276 -0.23170474776855127 1.0 8698 -12727 Clcn4 chloride channel, voltage-sensitive 4 Novel U 0.0031160694653693034 -0.23170595359293394 1.0 8699 -16515 Kcnj12 potassium inwardly-rectifying channel, subfamily J, member 12 Novel U 0.0031158053317972365 -0.23170868947979048 1.0 8700 -58996 Arhgap23 Rho GTPase activating protein 23 Novel U 0.003115608305177792 -0.2317107302750378 1.0 8701 -100169868 Gm3173 predicted gene 3173 Novel U 0.003115058653250798 -0.23171642355162878 1.0 8702 -72713 Angptl1 angiopoietin-like 1 Novel U 0.0031143813125000383 -0.23172343942485876 1.0 8703 -22214 Ube2h ubiquitin-conjugating enzyme E2H Novel U 0.0031143349663223766 -0.23172391947704346 1.0 8704 -56552 Vmn2r26 vomeronasal 2, receptor 26 Novel U 0.003114182257957689 -0.23172550122526486 1.0 8705 -20714 Serpina3k serine (or cysteine) peptidase inhibitor, clade A, member 3K Novel U 0.003114141717314351 -0.23172592114391585 1.0 8706 -12151 Bmi1 Bmi1 polycomb ring finger oncogene Novel U 0.0031127894870191697 -0.23173992750086117 1.0 8707 -74307 Tex54 testis expressed 54 Novel U 0.003111793436830114 -0.231750244555976 1.0 8708 -72690 Fam110d family with sequence similarity 110, member D Novel U 0.0031116429299731406 -0.2317518035010529 1.0 8709 -66109 Tspan13 tetraspanin 13 Novel U 0.003111064230599927 -0.2317577976501369 1.0 8710 -233445 Vmn2r71 vomeronasal 2, receptor 71 Novel U 0.0031079414700094757 -0.23179014310167761 1.0 8711 -66860 Tanc1 tetratricopeptide repeat, ankyrin repeat and coiled-coil containing 1 Novel U 0.0031063249073751383 -0.23180688740430244 1.0 8712 -56535 Pex3 peroxisomal biogenesis factor 3 Novel U 0.003105036563278372 -0.2318202320301047 1.0 8713 -673977 Vmn1r107 vomeronasal 1 receptor 107 Novel U 0.0031041289955036654 -0.23182963258728043 1.0 8714 -72650 Mtrfr mitochondrial translation release factor in rescue Novel U 0.00310362748709181 -0.23183482719492424 1.0 8715 -207683 Igsf11 immunoglobulin superfamily, member 11 Novel N 0.0031033881471208037 -0.23183730627047605 1.0 8716 -26444 Psma7 proteasome subunit alpha 7 Novel U 0.0031027953068747394 -0.2318434468902562 1.0 8717 -78938 Fbxo34 F-box protein 34 Novel U 0.0031011377105986324 -0.2318606162179936 1.0 8718 -71175 Nipbl NIPBL cohesin loading factor Novel U 0.0031007580097317565 -0.23186454914709068 1.0 8719 -66374 2310011J03Rik RIKEN cDNA 2310011J03 gene Novel U 0.0031002735947340734 -0.2318695667017124 1.0 8720 -245607 Gprasp2 G protein-coupled receptor associated sorting protein 2 Novel U 0.0030984679884629254 -0.23188826911211283 1.0 8721 -380732 Milr1 mast cell immunoglobulin like receptor 1 Novel U 0.0030979908879996874 -0.23189321090302725 1.0 8722 -110794 Cebpe CCAAT/enhancer binding protein epsilon Novel U 0.0030977776582270414 -0.23189541953000273 1.0 8723 -20415 Shbg sex hormone binding globulin Novel U 0.003097638595329047 -0.23189685993892872 1.0 8724 -223473 Nipal2 NIPA-like domain containing 2 Novel U 0.0030976088096988093 -0.23189716845750757 1.0 8725 -474145 Clec4a4 C-type lectin domain family 4, member a4 Novel U 0.0030976060438562387 -0.231897197106014 1.0 8726 -327987 Med13 mediator complex subunit 13 Novel N 0.003096597093141342 -0.23190764778435144 1.0 8727 -14977 Slc39a7 solute carrier family 39 (zinc transporter), member 7 Novel U 0.0030957720926890813 -0.2319161931119155 1.0 8728 -67326 Adissp adipose secreted signaling protein Novel N 0.0030953850374557854 -0.23192020221729825 1.0 8729 -11307 Abcg1 ATP binding cassette subfamily G member 1 Novel U 0.0030949591522970435 -0.23192461352177227 1.0 8730 -101056205 Gm29797 predicted gene, 29797 Novel U 0.0030928630611591745 -0.23194632476487304 1.0 8731 -74717 Spata17 spermatogenesis associated 17 Novel U 0.0030913222073229887 -0.2319622848782554 1.0 8732 -100310872 Dynlt1a dynein light chain Tctex-type 1A Novel U 0.0030886462019860555 -0.2319900028535664 1.0 8733 -93707 Pcdhgc4 protocadherin gamma subfamily C, 4 Novel U 0.003088600126162102 -0.23199048010543627 1.0 8734 -16833 Ldhc lactate dehydrogenase C Novel U 0.003085138509867083 -0.23202633541322557 1.0 8735 -109672 Cyb5a cytochrome b5 type A (microsomal) Novel N 0.003085102022667384 -0.2320267133464406 1.0 8736 -70397 Tmem70 transmembrane protein 70 Novel U 0.003082916418119067 -0.23204935176650418 1.0 8737 -20393 Sgk1 serum/glucocorticoid regulated kinase 1 Novel U 0.0030778944585025 -0.23210136905912454 1.0 8738 -381629 Atraid all-trans retinoic acid induced differentiation factor Novel U 0.003077246314204344 -0.23210808251645826 1.0 8739 -56873 Lmbr1 limb region 1 Novel U 0.0030769066885926832 -0.23211160034737924 1.0 8740 -68564 Nufip2 nuclear FMR1 interacting protein 2 Novel U 0.0030749974780623387 -0.23213137588729063 1.0 8741 -68799 Rgmb repulsive guidance molecule family member B Novel U 0.003074359906598119 -0.232137979831558 1.0 8742 -545650 Gm13277 predicted gene 13277 Novel U 0.0030743420572894027 -0.23213816471411092 1.0 8743 -19014 Med1 mediator complex subunit 1 Novel U 0.0030718559957691495 -0.23216391525761285 1.0 8744 -232975 Atp1a3 ATPase, Na+/K+ transporting, alpha 3 polypeptide Novel U 0.003071836687483169 -0.2321641152522043 1.0 8745 -20226 Sars1 seryl-tRNA synthetase 1 Novel U 0.003070513971583759 -0.23217781590000844 1.0 8746 -102635514 Gm6993 predicted gene 6993 Novel U 0.003067737171835227 -0.23220657790052135 1.0 8747 -449000 Zfp960 zinc finger protein 960 Novel U 0.003066976526509664 -0.23221445663979867 1.0 8748 -106021 Topors topoisomerase I binding, arginine/serine-rich Novel U 0.0030667376574939225 -0.23221693083721132 1.0 8749 -29813 Zfp385a zinc finger protein 385A Novel N 0.003066436746634513 -0.2322200476620012 1.0 8750 -218271 B4galt7 beta-1,4-galactosyltransferase 7 Novel U 0.0030652016149683384 -0.23223284111519663 1.0 8751 -19944 Rpl29 ribosomal protein L29 Novel U 0.0030644190587145676 -0.23224094680714807 1.0 8752 -11812 Apoc1 apolipoprotein C-I Novel U 0.0030640672149193976 -0.23224459119361218 1.0 8753 -217480 Dgkb diacylglycerol kinase, beta Novel U 0.0030629960288370396 -0.2322556865038399 1.0 8754 -76524 Cln6 ceroid-lipofuscinosis, neuronal 6 Novel U 0.003062923764527762 -0.23225643501517984 1.0 8755 -19041 Ppl periplakin Novel U 0.0030623752728734265 -0.23226211627370474 1.0 8756 -14661 Glud1 glutamate dehydrogenase 1 Novel U 0.0030619556159959646 -0.23226646306584603 1.0 8757 -13592 Ebf2 early B cell factor 2 Novel U 0.003061768782951475 -0.23226839827637905 1.0 8758 -27419 Naglu alpha-N-acetylglucosaminidase (Sanfilippo disease IIIB) Novel U 0.003061354449695476 -0.23227268992662423 1.0 8759 -623078 Gm8108 predicted gene 8108 Novel U 0.0030591289278214416 -0.23229574180903537 1.0 8760 -13655 Egr3 early growth response 3 Novel U 0.003057898373153071 -0.23230848785383804 1.0 8761 -228012 Tlk1 tousled-like kinase 1 Novel U 0.0030574136055328337 -0.23231350906091258 1.0 8762 -27204 Syn3 synapsin III Novel N 0.0030569922185389497 -0.2323178737735429 1.0 8763 -67453 Slc25a46 solute carrier family 25, member 46 Novel U 0.003056169431174468 -0.2323263961780165 1.0 8764 -26443 Psma6 proteasome subunit alpha 6 Novel U 0.003056100657229683 -0.23232710853627578 1.0 8765 -72211 1700025C18Rik RIKEN cDNA 1700025C18 gene Novel U 0.003051335134669233 -0.2323764696622988 1.0 8766 -23890 Gpr34 G protein-coupled receptor 34 Novel U 0.00305123837484443 -0.23237747189738328 1.0 8767 -74054 Siglecl2 Siglec family like 2 Novel U 0.0030502715345544847 -0.2323874863973234 1.0 8768 -66273 Aamdc adipogenesis associated Mth938 domain containing Novel U 0.003049594994376313 -0.23239449397824882 1.0 8769 -12490 Cd34 CD34 antigen Novel U 0.0030485012704734612 -0.23240582273448032 1.0 8770 -237403 Lingo3 leucine rich repeat and Ig domain containing 3 Novel U 0.003048406448759035 -0.23240680489468124 1.0 8771 -29819 Stau2 staufen double-stranded RNA binding protein 2 Novel U 0.0030441057896636726 -0.23245135098021447 1.0 8772 -243025 Tmem156 transmembrane protein 156 Novel U 0.0030424460883505524 -0.23246854211185602 1.0 8773 -545205 Or5v1b olfactory receptor family 5 subfamily V member 1B Novel U 0.003040636615347379 -0.23248728457373968 1.0 8774 -67075 Magt1 magnesium transporter 1 Novel U 0.0030406194148416407 -0.23248746273601267 1.0 8775 -14531 Gcm1 glial cells missing homolog 1 Novel N 0.0030403319322906976 -0.2324904404708249 1.0 8776 -66588 Cmpk1 cytidine/uridine monophosphate kinase 1 Novel N 0.003040168517534375 -0.23249213311549888 1.0 8777 -50772 Mapk6 mitogen-activated protein kinase 6 Novel N 0.0030368341597881853 -0.23252667028342283 1.0 8778 -11910 Atf3 activating transcription factor 3 Novel U 0.0030364734552818114 -0.23253040644884232 1.0 8779 -12642 Ch25h cholesterol 25-hydroxylase Novel N 0.003035009110850166 -0.23254557408032758 1.0 8780 -22333 Vdac1 voltage-dependent anion channel 1 Novel U 0.003034540429435781 -0.2325504286670107 1.0 8781 -12444 Ccnd2 cyclin D2 Novel U 0.003034150968461727 -0.23255446269097713 1.0 8782 -435811 Ldlrad2 low density lipoprotein receptor class A domain containing 2 Novel U 0.0030333793395202965 -0.23256245519818652 1.0 8783 -56612 Pfdn5 prefoldin 5 Novel U 0.003032259118697385 -0.23257405840864495 1.0 8784 -230558 C8a complement component 8, alpha polypeptide Novel U 0.003031771600750599 -0.23257910810351148 1.0 8785 -108937 Rnf169 ring finger protein 169 Novel N 0.0030310830194578194 -0.23258624040590622 1.0 8786 -382133 Gm20738 predicted gene, 20738 Novel U 0.0030297227182384603 -0.23260033036121883 1.0 8787 -328099 Prps1l3 phosphoribosyl pyrophosphate synthetase 1-like 3 Novel U 0.0030296171729772637 -0.23260142359556468 1.0 8788 -28071 Polr1f RNA polymerase I subunit F Novel U 0.0030296104083978267 -0.2326014936628561 1.0 8789 -69019 Spcs1 signal peptidase complex subunit 1 homolog (S. cerevisiae) Novel U 0.003029519443519025 -0.23260243587408044 1.0 8790 -193796 Kdm4b lysine (K)-specific demethylase 4B Novel N 0.003029022221725337 -0.23260758608107418 1.0 8791 -231042 Nup42 nucleoporin 42 Novel U 0.0030267213749773573 -0.23263141817605348 1.0 8792 -19763 Ring1 ring finger protein 1 Novel N 0.003026457187128939 -0.2326341546251027 1.0 8793 -11911 Atf4 activating transcription factor 4 Novel U 0.0030264287012580094 -0.23263444968081734 1.0 8794 -320557 Fam169a family with sequence similarity 169, member A Novel U 0.003026371994086267 -0.2326350370518381 1.0 8795 -140904 Caln1 calneuron 1 Novel U 0.0030257237658539832 -0.23264175137855878 1.0 8796 -15207 Hes3 hes family bHLH transcription factor 3 Novel U 0.0030256979260843368 -0.2326420190260433 1.0 8797 -20840 Stac src homology three (SH3) and cysteine rich domain Novel U 0.0030255307586874456 -0.232643750540445 1.0 8798 -74041 Ddias DNA damage-induced apoptosis suppressor Novel U 0.0030253249725974655 -0.23264588206600012 1.0 8799 -18432 Mybbp1a MYB binding protein (P160) 1a Novel N 0.0030242438046242334 -0.2326570807683254 1.0 8800 -330953 Hcn4 hyperpolarization-activated, cyclic nucleotide-gated K+ 4 Novel U 0.003024239024989462 -0.23265713027562523 1.0 8801 -258096 Or14j9 olfactory receptor family 14 subfamily J member 9 Novel U 0.0030226573870004623 -0.23267351282992177 1.0 8802 -192164 Pcdha12 protocadherin alpha 12 Novel U 0.0030217506763184124 -0.23268290450935994 1.0 8803 -100502861 Ccdc13 coiled-coil domain containing 13 Novel N 0.003021665464035446 -0.23268378713538568 1.0 8804 -331063 Gsdmc2 gasdermin C2 Novel U 0.0030210530886714783 -0.2326901300992749 1.0 8805 -11735 Ank3 ankyrin 3, epithelial Novel U 0.003021006492427309 -0.2326906127416402 1.0 8806 -19156 Psap prosaposin Novel U 0.0030209940941798045 -0.2326907411622803 1.0 8807 -67373 Prss3b serine protease 3B Novel U 0.003019015328694069 -0.23271123715013317 1.0 8808 -320817 Atad2b ATPase family, AAA domain containing 2B Novel U 0.0030186022881880633 -0.2327155154101164 1.0 8809 -436135 Vmn1r113 vomeronasal 1 receptor 113 Novel U 0.0030182884453428113 -0.23271876618399048 1.0 8810 -104263 Kdm3a lysine (K)-specific demethylase 3A Novel U 0.0030169077577699975 -0.23273306730048202 1.0 8811 -11486 Ada adenosine deaminase Novel U 0.0030123576422893903 -0.23278019724705315 1.0 8812 -101055912 Speer1i spermatogenesis associated glutamate (E)-rich protein 1I Novel U 0.003011375549871072 -0.23279036972803754 1.0 8813 -66119 Tomm6 translocase of outer mitochondrial membrane 6 Novel U 0.0030106262189482187 -0.23279813127310353 1.0 8814 -13884 Ces1c carboxylesterase 1C Novel U 0.0030098567497511795 -0.23280610140975155 1.0 8815 -67041 Oxct1 3-oxoacid CoA transferase 1 Novel N 0.003009168193171727 -0.23281323345616642 1.0 8816 -353148 Tas2r139 taste receptor, type 2, member 139 Novel N 0.0030084515522734376 -0.23282065639903263 1.0 8817 -15959 Ifit3 interferon-induced protein with tetratricopeptide repeats 3 Novel U 0.0030075542413704596 -0.23282995071586815 1.0 8818 -57895 Ccdc126 coiled-coil domain containing 126 Novel U 0.0030073310555429472 -0.23283226246733268 1.0 8819 -27356 Insl6 insulin-like 6 Novel U 0.003007072461758454 -0.23283494097325166 1.0 8820 -260301 Otos otospiralin Novel U 0.0030056798858587356 -0.2328493652286425 1.0 8821 -235044 Plppr2 phospholipid phosphatase related 2 Novel U 0.003005498490456726 -0.23285124411625344 1.0 8822 -75471 1700009N14Rik RIKEN cDNA 1700009N14 gene Novel U 0.003004283418372592 -0.23286382979295753 1.0 8823 -26905 Eif2s3x eukaryotic translation initiation factor 2, subunit 3, structural gene X-linked Novel U 0.003003749338270746 -0.23286936177709555 1.0 8824 -56863 Cldn9 claudin 9 Novel N 0.003003702454704472 -0.2328698473955338 1.0 8825 -28114 Nsun2 NOL1/NOP2/Sun domain family member 2 Novel U 0.003003641582081271 -0.23287047791216384 1.0 8826 -72775 Fance Fanconi anemia, complementation group E Novel U 0.0030033311056340346 -0.23287369381699793 1.0 8827 -546981 Vmn2r75 vomeronasal 2, receptor 75 Novel U 0.003000515230254929 -0.2329028605616078 1.0 8828 -94216 Col4a6 collagen, type IV, alpha 6 Novel U 0.0029995751163135686 -0.23291259823090785 1.0 8829 -74753 Trmo tRNA methyltransferase O Novel N 0.0029990835246016426 -0.23291769012169974 1.0 8830 -264134 Ift56 intraflagellar transport 56 Novel U 0.0029986830956728553 -0.23292183775138073 1.0 8831 -12226 Btg1 BTG anti-proliferation factor 1 Novel U 0.002997943377082128 -0.23292949973222654 1.0 8832 -211429 Pla2g4b phospholipase A2, group IVB (cytosolic) Novel U 0.0029968146189915594 -0.23294119137142272 1.0 8833 -67117 Dynlt3 dynein light chain Tctex-type 3 Novel U 0.0029965656660271476 -0.23294377001804423 1.0 8834 -666765 Gm8279 predicted gene 8279 Novel U 0.002996057302684539 -0.2329490356288354 1.0 8835 -26439 Psg19 pregnancy specific beta-1-glycoprotein 19 Novel U 0.0029957755423672123 -0.23295195409293992 1.0 8836 -70902 Lpcat2b lysophosphatidylcholine acyltransferase 2B Novel U 0.002994011331301606 -0.23297022773316214 1.0 8837 -258074 Or7g12 olfactory receptor family 7 subfamily G member 12 Novel U 0.0029937908427618465 -0.23297251154620882 1.0 8838 -76025 Cant1 calcium activated nucleotidase 1 Novel U 0.0029936697095681686 -0.2329737662398469 1.0 8839 -192986 Cyb5d2 cytochrome b5 domain containing 2 Novel U 0.0029935919293728845 -0.23297457188455276 1.0 8840 -18598 Pdha2 pyruvate dehydrogenase E1 alpha 2 Novel N 0.002992571311713298 -0.23298514340871976 1.0 8841 -227526 Cdnf cerebral dopamine neurotrophic factor Novel U 0.002992520889300849 -0.23298566568241033 1.0 8842 -52463 Tet1 tet methylcytosine dioxygenase 1 Novel N 0.0029924733735028986 -0.23298615784948354 1.0 8843 -269254 Setx senataxin Novel U 0.002989727592448357 -0.2330145985593838 1.0 8844 -286942 Kif19a kinesin family member 19A Novel U 0.002989533738467286 -0.2330166064925471 1.0 8845 -98193 Dcaf8 DDB1 and CUL4 associated factor 8 Novel N 0.0029892997224934587 -0.23301903042231115 1.0 8846 -67213 Cmtm6 CKLF-like MARVEL transmembrane domain containing 6 Novel U 0.0029886815655757177 -0.23302543327134428 1.0 8847 -434325 Tmem221 transmembrane protein 221 Novel U 0.00298728048927094 -0.23303994557365126 1.0 8848 -12162 Bmp7 bone morphogenetic protein 7 Novel U 0.0029857696626809775 -0.23305559466580436 1.0 8849 -239436 Slc30a8 solute carrier family 30 (zinc transporter), member 8 Novel U 0.0029847101933298424 -0.23306656861451522 1.0 8850 -66175 Mustn1 musculoskeletal, embryonic nuclear protein 1 Novel U 0.002984392813858065 -0.23306985602065064 1.0 8851 -74915 Atp6v1e2 ATPase, H+ transporting, lysosomal V1 subunit E2 Novel U 0.0029834964548663885 -0.23307914047762018 1.0 8852 -636104 Cfap47 cilia and flagella associated protein 47 Novel U 0.0029824929767765414 -0.23308953447068725 1.0 8853 -13024 Ctla2a cytotoxic T lymphocyte-associated protein 2 alpha Novel U 0.0029811563730922706 -0.23310337896771047 1.0 8854 -108143 Taf9 TATA-box binding protein associated factor 9 Novel U 0.0029806461565698205 -0.23310866377367753 1.0 8855 -113857 Vmn1r41 vomeronasal 1 receptor 41 Novel U 0.0029804692288193527 -0.23311049638550072 1.0 8856 -15112 Hao1 hydroxyacid oxidase 1, liver Novel N 0.002978230901863472 -0.23313368090252867 1.0 8857 -272643 Prss43 serine protease 43 Novel U 0.0029772195713509177 -0.233144156230732 1.0 8858 -73737 Bbln bublin coiled coil protein Novel N 0.002977158354570281 -0.23314479031213345 1.0 8859 -71903 Ces2f carboxylesterase 2F Novel U 0.002975876733087589 -0.23315806530532013 1.0 8860 -73218 Sppl2b signal peptide peptidase like 2B Novel N 0.0029725403542397778 -0.2331926234077482 1.0 8861 -12868 Cox8a cytochrome c oxidase subunit 8A Novel U 0.0029722847558242187 -0.23319527088773426 1.0 8862 -226757 Wdr26 WD repeat domain 26 Novel U 0.0029717259176951223 -0.23320105931470458 1.0 8863 -74011 Slc25a27 solute carrier family 25, member 27 Novel U 0.002970992423924602 -0.23320865681906733 1.0 8864 -12816 Col12a1 collagen, type XII, alpha 1 Novel U 0.002970312107460596 -0.23321570351463733 1.0 8865 -207704 Gtpbp10 GTP-binding protein 10 (putative) Novel U 0.0029694343971923306 -0.23322479480874284 1.0 8866 -230649 Atpaf1 ATP synthase mitochondrial F1 complex assembly factor 1 Novel U 0.002968845803210685 -0.2332308914458557 1.0 8867 -66556 Drap1 DR1 associated protein 1 Novel N 0.0029663850130766 -0.23325638022917047 1.0 8868 -230779 Serinc2 serine incorporator 2 Novel U 0.0029659633939235273 -0.23326074734649802 1.0 8869 -12909 Crcp calcitonin gene-related peptide-receptor component protein Novel N 0.0029655840258336935 -0.23326467682870147 1.0 8870 -15289 Hmgb1 high mobility group box 1 Novel U 0.00296502049880141 -0.23327051382317693 1.0 8871 -99296 Hrh3 histamine receptor H3 Novel U 0.0029636939819848995 -0.23328425384075543 1.0 8872 -58230 Rnf8 ring finger protein 8 Novel U 0.0029631564578883776 -0.23328982149767705 1.0 8873 -28015 Polr2m polymerase (RNA) II (DNA directed) polypeptide M Novel U 0.002962689970820218 -0.23329465335539412 1.0 8874 -329918 Skint9 selection and upkeep of intraepithelial T cells 9 Novel U 0.0029624404604036985 -0.2332972377760862 1.0 8875 -13137 Cd55b CD55 molecule, decay accelerating factor for complement B Novel U 0.0029609743016428473 -0.2333124242003337 1.0 8876 -223696 Tomm22 translocase of outer mitochondrial membrane 22 Novel U 0.0029609121097300788 -0.23331306838212174 1.0 8877 -51902 Rnf24 ring finger protein 24 Novel U 0.0029598875294265937 -0.23332368095122397 1.0 8878 -268935 Scube3 signal peptide, CUB domain, EGF-like 3 Novel U 0.002959679615819951 -0.2333258345135268 1.0 8879 -171259 Vmn1r193 vomeronasal 1 receptor 193 Novel U 0.0029577683406519528 -0.23334563143888712 1.0 8880 -93714 Pcdhga6 protocadherin gamma subfamily A, 6 Novel U 0.0029568622793895607 -0.23335501639165782 1.0 8881 -171262 Vmn1r70 vomeronasal 1 receptor 70 Novel U 0.0029567143921816774 -0.23335654820249555 1.0 8882 -18509 Pax7 paired box 7 Novel U 0.0029559413801628237 -0.2333645550355754 1.0 8883 -84113 Ptov1 prostate tumor over expressed gene 1 Novel U 0.0029558803171693348 -0.23336518752405466 1.0 8884 -12362 Casp1 caspase 1 Novel U 0.002955859995492881 -0.2333653980153113 1.0 8885 -100042591 Vmn2r31 vomeronasal 2, receptor 31 Novel U 0.0029552060979441976 -0.23337217106462488 1.0 8886 -234582 Ccdc102a coiled-coil domain containing 102A Novel U 0.002954299894202063 -0.23338155749319603 1.0 8887 -102436 Lars2 leucyl-tRNA synthetase, mitochondrial Novel U 0.0029542860477397384 -0.2333817009143976 1.0 8888 -74315 Rnf145 ring finger protein 145 Novel U 0.0029534735590720793 -0.23339011664530812 1.0 8889 -100043067 Vmn1r158 vomeronasal 1 receptor 158 Novel U 0.0029523057758876294 -0.2334022125051438 1.0 8890 -24136 Zeb2 zinc finger E-box binding homeobox 2 Novel U 0.0029499914937460283 -0.23342618376348861 1.0 8891 -73353 Actrt2 actin-related protein T2 Novel U 0.0029492488765149242 -0.23343387576835617 1.0 8892 -353156 Egfl7 EGF-like domain 7 Novel U 0.002948804514651706 -0.23343847845392776 1.0 8893 -66521 Rwdd1 RWD domain containing 1 Novel U 0.0029487442012040917 -0.23343910317863548 1.0 8894 -17695 Msmb beta-microseminoprotein Novel U 0.0029483075352675116 -0.23344362615005193 1.0 8895 -27176 Rpl7a ribosomal protein L7A Novel N 0.0029474584583670865 -0.23345242086067464 1.0 8896 -258751 Or52ae7 olfactory receptor family 52 subfamily AE member 7 Novel U 0.0029451311400368638 -0.2334765271474326 1.0 8897 -67382 Brd3 bromodomain containing 3 Novel N 0.002944604058385036 -0.23348198664185538 1.0 8898 -94184 Pdxdc1 pyridoxal-dependent decarboxylase domain containing 1 Novel U 0.0029443661259390317 -0.23348445113830948 1.0 8899 -57272 Or4c3d olfactory receptor family 4 subfamily C member 3D Novel U 0.0029438610094290685 -0.23348968311851487 1.0 8900 -667961 Speer1f spermatogenesis associated glutamate (E)-rich protein 1F Novel U 0.0029426708690710574 -0.2335020105532194 1.0 8901 -673676 Gm9602 predicted gene 9602 Novel U 0.00294239824430953 -0.23350483439153724 1.0 8902 -353242 Mrpl21 mitochondrial ribosomal protein L21 Novel U 0.0029421628405270008 -0.2335072726961782 1.0 8903 -72320 Kifbp kinesin family binding protein Novel U 0.002939815642904442 -0.2335315848919927 1.0 8904 -14056 Ezh2 enhancer of zeste 2 polycomb repressive complex 2 subunit Novel U 0.002939657082720412 -0.2335332272531665 1.0 8905 -30942 Hnf4g hepatocyte nuclear factor 4, gamma Novel N 0.002939517752937384 -0.23353467042647885 1.0 8906 -18611 Pea15a proliferation and apoptosis adaptor protein 15A Novel U 0.002939393832946984 -0.2335359539856658 1.0 8907 -70598 Filip1 filamin A interacting protein 1 Novel U 0.002939024565091733 -0.23353977884997146 1.0 8908 -12748 Clk2 CDC-like kinase 2 Novel N 0.0029385823614980384 -0.2335443591802583 1.0 8909 -100312485 Vmn1r221 vomeronasal 1 receptor 221 Novel U 0.00293794909045917 -0.23355091858086122 1.0 8910 -14732 Gpam glycerol-3-phosphate acyltransferase, mitochondrial Novel U 0.002937909794441307 -0.23355132560772246 1.0 8911 -74360 Cep57 centrosomal protein 57 Novel U 0.0029374960011857086 -0.2335556116646612 1.0 8912 -624245 Speer4e1 spermatogenesis associated glutamate (E)-rich protein 4E1 Novel U 0.0029371718975554502 -0.23355896871940912 1.0 8913 -105245684 Gm3012 predicted gene 3012 Novel U 0.0029351751898473244 -0.23357965055221164 1.0 8914 -257935 Or4k41 olfactory receptor family 4 subfamily K member 41 Novel U 0.0029346132661390973 -0.2335854709395092 1.0 8915 -68544 Trir telomerase RNA component interacting RNase Novel N 0.0029339557314380536 -0.23359228166232732 1.0 8916 -75526 Eppin epididymal peptidase inhibitor Novel U 0.002933511570623034 -0.2335968822654483 1.0 8917 -100861755 Gm21190 predicted gene, 21190 Novel U 0.002931739316875551 -0.233615239211505 1.0 8918 -74347 Meak7 MTOR associated protein, eak-7 homolog Novel U 0.002931500034841853 -0.23361771768694412 1.0 8919 -170787 Hdac10 histone deacetylase 10 Novel U 0.002931254720248318 -0.23362025864743965 1.0 8920 -29865 Cabp5 calcium binding protein 5 Novel U 0.0029312114850635475 -0.23362070647606223 1.0 8921 -67417 Ears2 glutamyl-tRNA synthetase 2, mitochondrial Novel U 0.00293079526307126 -0.23362501768977578 1.0 8922 -241636 Tgm6 transglutaminase 6 Novel N 0.002930451155170331 -0.23362858194810165 1.0 8923 -213773 Tbl3 transducin (beta)-like 3 Novel N 0.002929689498063548 -0.2336364711673756 1.0 8924 -68051 Nutf2 nuclear transport factor 2 Novel U 0.0029296557448031117 -0.2336368207825376 1.0 8925 -17229 Tpsb2 tryptase beta 2 Novel U 0.002928797147851248 -0.23364571410154014 1.0 8926 -208449 Sgms1 sphingomyelin synthase 1 Novel U 0.002927316767972196 -0.23366104782766253 1.0 8927 -225471 Ticam2 TIR domain containing adaptor molecule 2 Novel U 0.0029257889924063077 -0.23367687247675106 1.0 8928 -214058 Megf11 multiple EGF-like-domains 11 Novel U 0.0029249438416085157 -0.23368562652093178 1.0 8929 -70998 Phf6 PHD finger protein 6 Novel U 0.002924804338524614 -0.2336870714892889 1.0 8930 -234421 Cib3 calcium and integrin binding family member 3 Novel U 0.0029244154460708843 -0.2336910996245405 1.0 8931 -27103 Eif2ak4 eukaryotic translation initiation factor 2 alpha kinase 4 Novel U 0.0029243803458210518 -0.23369146319177436 1.0 8932 -64685 Nmi N-myc (and STAT) interactor Novel U 0.0029235316583762286 -0.23370025386842877 1.0 8933 -53416 Stk39 serine/threonine kinase 39 Novel U 0.0029232478571793873 -0.2337031934718962 1.0 8934 -230904 Fbxo2 F-box protein 2 Novel N 0.002923134063185365 -0.2337043721463455 1.0 8935 -21778 Tex9 testis expressed gene 9 Novel U 0.0029204103701662956 -0.23373258406910044 1.0 8936 -71941 Cars2 cysteinyl-tRNA synthetase 2, mitochondrial Novel N 0.002919016479367208 -0.23374702194417568 1.0 8937 -74563 Rasgef1c RasGEF domain family, member 1C Novel U 0.002918562505497086 -0.23375172419059884 1.0 8938 -279706 Nup62cl nucleoporin 62 C-terminal like Novel U 0.0029177729100555746 -0.23375990279422545 1.0 8939 -17121 Mxd3 Max dimerization protein 3 Novel U 0.002913166638204221 -0.23380761440663875 1.0 8940 -93712 Pcdhga4 protocadherin gamma subfamily A, 4 Novel U 0.0029126682270912843 -0.23381277693256217 1.0 8941 -109093 Rars2 arginyl-tRNA synthetase 2, mitochondrial Novel U 0.0029114804496332184 -0.23382507989242673 1.0 8942 -12892 Cpox coproporphyrinogen oxidase Novel U 0.002911355059324623 -0.23382637868112116 1.0 8943 -15117 Has2 hyaluronan synthase 2 Novel U 0.0029113352039810596 -0.2338265843421171 1.0 8944 -24000 Ptpn21 protein tyrosine phosphatase, non-receptor type 21 Novel N 0.002911315556716635 -0.23382678784783612 1.0 8945 -269701 Cfap251 cilia and flagella associated protein 251 Novel N 0.0029092974479031416 -0.23384769135258457 1.0 8946 -238871 Pde4d phosphodiesterase 4D, cAMP specific Novel U 0.0029087690490347154 -0.23385316449069352 1.0 8947 -67857 Ppp6c protein phosphatase 6, catalytic subunit Novel U 0.002908433354923079 -0.2338566415992665 1.0 8948 -269966 Nup98 nucleoporin 98 Novel U 0.002908237692083594 -0.23385866826852583 1.0 8949 -74467 Pus10 pseudouridylate synthase 10 Novel N 0.002907925252691759 -0.23386190450547556 1.0 8950 -195040 Tmem199 transmembrane protein 199 Novel U 0.0029071264472593423 -0.2338701785058852 1.0 8951 -19693 Reg2 regenerating islet-derived 2 Novel U 0.0029068685367810458 -0.23387284993414104 1.0 8952 -100040671 Gm2897 predicted gene 2897 Novel U 0.0029051419158299275 -0.2338907342171931 1.0 8953 -50883 Chek2 checkpoint kinase 2 Novel U 0.0029050677918995883 -0.23389150199042688 1.0 8954 -71371 Arid5b AT-rich interaction domain 5B Novel U 0.0029050677289834364 -0.2338915026421103 1.0 8955 -11941 Atp2b2 ATPase, Ca++ transporting, plasma membrane 2 Novel N 0.002904724930889543 -0.233895053333498 1.0 8956 -239530 Gpr20 G protein-coupled receptor 20 Novel U 0.002903040787177719 -0.23391249763870184 1.0 8957 -67579 Cpeb4 cytoplasmic polyadenylation element binding protein 4 Novel U 0.0029007220785697584 -0.23393651474623964 1.0 8958 -224109 Nrros negative regulator of reactive oxygen species Novel N 0.0029005476370356467 -0.23393832160591552 1.0 8959 -52685 Cd300lg CD300 molecule like family member G Novel U 0.0028997544377955065 -0.2339465375375699 1.0 8960 -627607 Lrrc74a leucine rich repeat containing 74A Novel U 0.002897714322064045 -0.23396766898925114 1.0 8961 -225852 Gm550 predicted gene 550 Novel U 0.0028973289373881226 -0.23397166079105552 1.0 8962 -114141 Cldn16 claudin 16 Novel N 0.0028966196073791687 -0.2339790080079703 1.0 8963 -216161 Sbno2 strawberry notch 2 Novel U 0.0028962887741222827 -0.23398243476796954 1.0 8964 -545728 Speer1e spermatogenesis associated glutamate (E)-rich protein 1E Novel U 0.002896231114484079 -0.23398303200460663 1.0 8965 -28028 Mrpl50 mitochondrial ribosomal protein L50 Novel U 0.002895468750024273 -0.2339909285506199 1.0 8966 -70380 Mospd1 motile sperm domain containing 1 Novel U 0.002895342914460857 -0.23399223195124916 1.0 8967 -30932 Zfp330 zinc finger protein 330 Novel U 0.002895104087559468 -0.2339947057124427 1.0 8968 -13136 Cd55 CD55 molecule, decay accelerating factor for complement Novel U 0.002894745635599634 -0.23399841854605924 1.0 8969 -228770 Rspo4 R-spondin 4 Novel U 0.0028939028452952915 -0.23400714814032633 1.0 8970 -67144 Lrrc40 leucine rich repeat containing 40 Novel U 0.0028938904002011917 -0.23400727704620194 1.0 8971 -80879 Slc16a3 solute carrier family 16 (monocarboxylic acid transporters), member 3 Novel N 0.0028937973109748835 -0.23400824126134787 1.0 8972 -19272 Ptprk protein tyrosine phosphatase receptor type K Novel U 0.002892277906854183 -0.23402397919928236 1.0 8973 -13239 Defa5 defensin, alpha, 5 Novel U 0.002892144154481849 -0.23402536460195814 1.0 8974 -432508 Cpsf6 cleavage and polyadenylation specific factor 6 Novel U 0.0028912520892788044 -0.2340346045840062 1.0 8975 -76651 1700122O11Rik RIKEN cDNA 1700122O11 gene Novel U 0.0028905193852949663 -0.23404219390778447 1.0 8976 -72098 Tmem68 transmembrane protein 68 Novel U 0.0028890310197343507 -0.23405761034933395 1.0 8977 -118453 Mmp28 matrix metallopeptidase 28 (epilysin) Novel U 0.0028886412317064964 -0.23406164776091287 1.0 8978 -18861 Pms2 PMS1 homolog2, mismatch repair system component Novel U 0.002887970757838133 -0.23406859250720075 1.0 8979 -171239 Vmn1r76 vomeronasal 1 receptor 76 Novel U 0.0028875924935883625 -0.2340725105558651 1.0 8980 -105734727 Gm27021 predicted gene, 27021 Novel U 0.002887440512880707 -0.23407408476703886 1.0 8981 -223499 Dcaf13 DDB1 and CUL4 associated factor 13 Novel U 0.002886789373719252 -0.2340808292450682 1.0 8982 -69713 Pin4 peptidyl-prolyl cis/trans isomerase, NIMA-interacting, 4 (parvulin) Novel U 0.002886534192807318 -0.23408347240056537 1.0 8983 -107753 Lgals2 lectin, galactose-binding, soluble 2 Novel N 0.0028862373109029183 -0.2340865474935717 1.0 8984 -140481 Man2a2 mannosidase 2, alpha 2 Novel U 0.0028854630696243393 -0.2340945670592834 1.0 8985 -245857 Ssh3 slingshot protein phosphatase 3 Novel U 0.0028844633572068733 -0.23410492204763975 1.0 8986 -66249 Pno1 partner of NOB1 homolog Novel N 0.0028841761704433357 -0.2341078967186957 1.0 8987 -71897 Lypd6b LY6/PLAUR domain containing 6B Novel U 0.002884161160806495 -0.23410805218802067 1.0 8988 -78895 Pus7l pseudouridylate synthase 7-like Novel N 0.0028841048180893907 -0.2341086357840323 1.0 8989 -67994 Mrps11 mitochondrial ribosomal protein S11 Novel U 0.0028833601413000786 -0.23411634912173607 1.0 8990 -625580 Vmn2r48 vomeronasal 2, receptor 48 Novel U 0.0028831482142559137 -0.23411854425509276 1.0 8991 -12292 Cacna1s calcium channel, voltage-dependent, L type, alpha 1S subunit Novel U 0.0028823990350407068 -0.23412630422877595 1.0 8992 -22283 Ush2a usherin Novel U 0.0028810854590072357 -0.23413991020614913 1.0 8993 -545732 Speer1m spermatogenesis associated glutamate (E)-rich protein 1M Novel U 0.0028800183783567533 -0.23415096299244847 1.0 8994 -100041264 Pramel46 PRAME like 46 Novel U 0.0028787657297192786 -0.23416393788585682 1.0 8995 -242291 Bpnt2 3'(2'), 5'-bisphosphate nucleotidase 2 Novel U 0.002877741543011563 -0.23417454637810703 1.0 8996 -53601 Pcdh12 protocadherin 12 Novel N 0.002876457069185941 -0.23418785091576802 1.0 8997 -26407 Map3k4 mitogen-activated protein kinase kinase kinase 4 Novel U 0.002875564037368781 -0.2341971009099733 1.0 8998 -105239 Rnf44 ring finger protein 44 Novel U 0.002874915602474282 -0.2342038173772944 1.0 8999 -102791 Tcta T cell leukemia translocation altered gene Novel U 0.0028735144225187563 -0.2342183307532124 1.0 9000 -547109 Trim43a tripartite motif-containing 43A Novel U 0.0028733139159886176 -0.2342204075932603 1.0 9001 -13797 Emx2 empty spiracles homeobox 2 Novel N 0.002871501684798134 -0.23423917862435742 1.0 9002 -22040 Trex1 three prime repair exonuclease 1 Novel U 0.002870831507111484 -0.23424612030280484 1.0 9003 -319433 Serpine3 serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 3 Novel U 0.0028695808107688354 -0.2342590749744076 1.0 9004 -100043125 Cd300ld5 CD300 molecule like family member D5 Novel U 0.0028680421375629154 -0.2342750125008933 1.0 9005 -217143 Gpr179 G protein-coupled receptor 179 Novel U 0.002867668472230905 -0.23427888291411872 1.0 9006 -12288 Cacna1c calcium channel, voltage-dependent, L type, alpha 1C subunit Novel U 0.002867135498254362 -0.23428440344104717 1.0 9007 -12824 Col2a1 collagen, type II, alpha 1 Novel U 0.0028668488770784116 -0.2342873722537655 1.0 9008 -68972 Tatdn3 TatD DNase domain containing 3 Novel U 0.0028663999452395975 -0.2342920222749941 1.0 9009 -628438 Hspe1-rs1 heat shock protein 1 (chaperonin 10), related sequence 1 Novel U 0.0028657939386042123 -0.234298299271802 1.0 9010 -76051 Ganc glucosidase, alpha; neutral C Novel U 0.002865771000230869 -0.23429853686671903 1.0 9011 -67222 Srfbp1 serum response factor binding protein 1 Novel U 0.0028654008309527126 -0.23430237106793353 1.0 9012 -546157 Prr23a4 proline rich 23A, member 4 Novel U 0.0028643428017324016 -0.23431333009981667 1.0 9013 -52705 Krr1 KRR1, small subunit (SSU) processome component, homolog (yeast) Novel N 0.002862955680120695 -0.23432769785987156 1.0 9014 -66586 Crls1 cardiolipin synthase 1 Novel U 0.0028615605131374973 -0.23434214895361988 1.0 9015 -241589 D430041D05Rik RIKEN cDNA D430041D05 gene Novel U 0.002859659293258692 -0.2343618417266253 1.0 9016 -17391 Mmp24 matrix metallopeptidase 24 Novel U 0.00285932246821795 -0.2343653305493248 1.0 9017 -67310 Prl8a9 prolactin family8, subfamily a, member 9 Novel U 0.0028577828244338624 -0.23438127812902732 1.0 9018 -623503 Prlh prolactin releasing hormone Novel U 0.0028573983470294552 -0.23438526053334316 1.0 9019 -75746 Morc4 microrchidia 4 Novel U 0.0028569829788735643 -0.23438956290304738 1.0 9020 -14603 Cblif cobalamin binding intrinsic factor Novel U 0.0028554825181428905 -0.23440510462597072 1.0 9021 -98221 Eif3m eukaryotic translation initiation factor 3, subunit M Novel N 0.002853310521930109 -0.23442760209134217 1.0 9022 -14824 Grn granulin Novel U 0.00285185728997525 -0.23444265462015815 1.0 9023 -100040031 Gm20823 predicted gene, 20823 Novel U 0.0028515148522714473 -0.23444620157863713 1.0 9024 -217212 Pyy peptide YY Novel U 0.002850843244055269 -0.23445315807446238 1.0 9025 -17883 Myh3 myosin, heavy polypeptide 3, skeletal muscle, embryonic Novel U 0.0028506867470515945 -0.23445477906528184 1.0 9026 -100039324 Gm10147 predicted gene 10147 Novel U 0.0028498393636749203 -0.23446355623444123 1.0 9027 -81907 Tmem108 transmembrane protein 108 Novel U 0.0028497776877316255 -0.23446419507183439 1.0 9028 -332713 Fndc11 fibronectin type III domain containing 11 Novel U 0.002849653344445671 -0.23446548301550274 1.0 9029 -12560 Cdh3 cadherin 3 Novel U 0.0028494538450749163 -0.23446754942342682 1.0 9030 -78935 Saal1 serum amyloid A-like 1 Novel N 0.002849016050363138 -0.2344720840866597 1.0 9031 -76477 Pcolce2 procollagen C-endopeptidase enhancer 2 Novel U 0.002848765349793642 -0.2344746808349172 1.0 9032 -246154 Vasn vasorin Novel U 0.002848560249090945 -0.23447680526125342 1.0 9033 -20957 Sycp1 synaptonemal complex protein 1 Novel U 0.0028485593469172476 -0.23447681460593892 1.0 9034 -14460 Gata1 GATA binding protein 1 Novel U 0.002847900723251968 -0.23448363660821278 1.0 9035 -56289 Rassf1 Ras association (RalGDS/AF-6) domain family member 1 Novel N 0.0028474660789105577 -0.23448813864001294 1.0 9036 -11567 Avil advillin Novel U 0.0028417298373367237 -0.23454755444166592 1.0 9037 -258908 Or7g33 olfactory receptor family 7 subfamily G member 33 Novel U 0.0028415920693895653 -0.23454898143753375 1.0 9038 -71310 Tbc1d9 TBC1 domain family, member 9 Novel U 0.002839609010183989 -0.23456952189959554 1.0 9039 -72162 Dhx36 DEAH-box helicase 36 Novel U 0.00283952211444551 -0.23457042196279818 1.0 9040 -381677 Vgf VGF nerve growth factor inducible Novel U 0.002839516521478903 -0.23457047989456242 1.0 9041 -27421 Abcc6 ATP-binding cassette, sub-family C member 6 Novel U 0.0028381932546382976 -0.23458418624899738 1.0 9042 -22067 Trpc5 transient receptor potential cation channel, subfamily C, member 5 Novel N 0.00283807741653867 -0.23458538609622534 1.0 9043 -22169 Cmpk2 cytidine/uridine monophosphate kinase 2 Novel U 0.0028371919224464267 -0.2345945580149237 1.0 9044 -72148 Tdrp testis development related protein Novel N 0.0028366565145817387 -0.2346001037519856 1.0 9045 -103172 Chchd10 coiled-coil-helix-coiled-coil-helix domain containing 10 Novel U 0.0028364577284625725 -0.23460216277207316 1.0 9046 -67480 Cwc25 CWC25 spliceosome-associated protein Novel N 0.0028355980207930634 -0.23461106759585257 1.0 9047 -245884 Garin1a golgi associated RAB2 interactor 1A Novel U 0.002834989618316806 -0.23461736940870148 1.0 9048 -382090 Cep162 centrosomal protein 162 Novel N 0.002833757365501171 -0.2346301330428577 1.0 9049 -74238 Mterf2 mitochondrial transcription termination factor 2 Novel U 0.002832909907774282 -0.23463891098213416 1.0 9050 -16795 Large1 LARGE xylosyl- and glucuronyltransferase 1 Novel U 0.002832297869491645 -0.234645250454546 1.0 9051 -12836 Col7a1 collagen, type VII, alpha 1 Novel U 0.002831858302447458 -0.23464980347553974 1.0 9052 -14171 Fgf17 fibroblast growth factor 17 Novel N 0.0028315688849291174 -0.2346528012526806 1.0 9053 -70082 Lysmd2 LysM, putative peptidoglycan-binding, domain containing 2 Novel U 0.002830395499142122 -0.23466495514408933 1.0 9054 -217995 Heatr1 HEAT repeat containing 1 Novel N 0.002830011040970522 -0.2346689373491924 1.0 9055 -627743 Vmn2r105 vomeronasal 2, receptor 105 Novel U 0.0028294871556300864 -0.2346743637363268 1.0 9056 -381510 Dpy19l4 dpy-19 like 4 Novel U 0.0028294354723184946 -0.23467489907036929 1.0 9057 -79566 Sh3bp5l SH3 binding domain protein 5 like Novel U 0.0028288067933703314 -0.23468141090624767 1.0 9058 -11639 Ak4 adenylate kinase 4 Novel U 0.0028285319077441646 -0.23468425816252714 1.0 9059 -328232 Gfod1 glucose-fructose oxidoreductase domain containing 1 Novel U 0.002828131716154867 -0.2346884033338535 1.0 9060 -94112 Med15 mediator complex subunit 15 Novel U 0.002827560876527418 -0.23469431607194927 1.0 9061 -80912 Pum1 pumilio RNA-binding family member 1 Novel U 0.0028254917635989357 -0.23471574787564403 1.0 9062 -20183 Rxrg retinoid X receptor gamma Novel U 0.002824919566408877 -0.2347216746753287 1.0 9063 -258466 Or4c126 olfactory receptor family 4 subfamily C member 126 Novel U 0.002823623071646192 -0.2347351037254606 1.0 9064 -66805 Tspan1 tetraspanin 1 Novel N 0.0028226752315067397 -0.23474492142246647 1.0 9065 -22073 Prss3 serine protease 3 Novel U 0.002821636380353572 -0.2347556818085606 1.0 9066 -14378 G6pc2 glucose-6-phosphatase, catalytic, 2 Novel U 0.0028204199533117345 -0.23476828151987206 1.0 9067 -110877 Slc18a1 solute carrier family 18 (vesicular monoamine), member 1 Novel U 0.002820394771877693 -0.23476854234833808 1.0 9068 -66153 Fbxo36 F-box protein 36 Novel U 0.002820132437140732 -0.23477125960291972 1.0 9069 -66797 Cntnap2 contactin associated protein-like 2 Novel U 0.0028200142410553775 -0.23477248387408636 1.0 9070 -14797 Tle5 TLE family member 5, transcriptional modulator Novel U 0.0028195656966677166 -0.23477712988210866 1.0 9071 -382231 8030474K03Rik RIKEN cDNA 8030474K03 gene Novel U 0.0028188909374790723 -0.23478411901560312 1.0 9072 -66736 Emc2 ER membrane protein complex subunit 2 Novel U 0.0028185027219447974 -0.23478814013934524 1.0 9073 -242653 Cldn19 claudin 19 Novel U 0.0028165513512191757 -0.23480835237317338 1.0 9074 -18419 Otog otogelin Novel N 0.002816454617236176 -0.23480935434058933 1.0 9075 -79263 Trim39 tripartite motif-containing 39 Novel U 0.0028138502189666015 -0.2348363306122506 1.0 9076 -100042823 Rpl9-ps6 ribosomal protein L9, pseudogene 6 Novel U 0.0028129335600550506 -0.23484582533512288 1.0 9077 -330863 Trim67 tripartite motif-containing 67 Novel U 0.0028108240230979376 -0.23486767584957738 1.0 9078 -68032 Emc4 ER membrane protein complex subunit 4 Novel U 0.002809221645019049 -0.23488427322904318 1.0 9079 -11565 Adss1 adenylosuccinate synthase 1 Novel N 0.0028075812643514574 -0.23490126423807348 1.0 9080 -11979 Atp7b ATPase, Cu++ transporting, beta polypeptide Novel U 0.002806271110629987 -0.23491483476725147 1.0 9081 -381590 Pramel32 PRAME like 32 Novel U 0.0028050445092067974 -0.2349275398644705 1.0 9082 -16777 Lamb1 laminin B1 Novel N 0.0028045709950092527 -0.23493244450896278 1.0 9083 -14936 Gys1 glycogen synthase 1, muscle Novel N 0.0028045357352514105 -0.2349328097283754 1.0 9084 -14804 Grid2 glutamate receptor, ionotropic, delta 2 Novel U 0.0028017440627403 -0.23496172578047417 1.0 9085 -14311 Cidec cell death-inducing DFFA-like effector c Novel U 0.0027994392989357025 -0.23498559844819716 1.0 9086 -26432 Plod2 procollagen lysine, 2-oxoglutarate 5-dioxygenase 2 Novel U 0.0027993415943018273 -0.234986610469583 1.0 9087 -69585 Hjv hemojuvelin BMP co-receptor Novel U 0.002798047545295555 -0.2350000141866504 1.0 9088 -69046 Isca1 iron-sulfur cluster assembly 1 Novel U 0.0027977706772008247 -0.23500288197727404 1.0 9089 -66515 Cul7 cullin 7 Novel U 0.002796019444710758 -0.23502102118583748 1.0 9090 -338320 Mia2 MIA SH3 domain ER export factor 2 Novel U 0.002795082269053404 -0.23503072842048836 1.0 9091 -432732 AK157302 cDNA sequence AK157302 Novel U 0.00279483938007832 -0.23503324425650773 1.0 9092 -15166 Hcn2 hyperpolarization-activated, cyclic nucleotide-gated K+ 2 Novel U 0.002794778889368863 -0.23503387081728777 1.0 9093 -432582 Ccdc92b coiled-coil domain containing 92B Novel U 0.002794639773669007 -0.2350353117731337 1.0 9094 -215707 Ccdc92 coiled-coil domain containing 92 Novel U 0.0027942812048760805 -0.23503902581690353 1.0 9095 -54601 Foxo4 forkhead box O4 Novel U 0.0027936669782573746 -0.23504538795602847 1.0 9096 -100503549 Speer4e2 spermatogenesis associated glutamate (E)-rich protein 4E2 Novel U 0.0027932597382753343 -0.23504960613437517 1.0 9097 -280635 Emilin3 elastin microfibril interfacer 3 Novel U 0.002793184024481171 -0.23505039037536613 1.0 9098 -113863 Vmn1r15 vomeronasal 1 receptor 15 Novel U 0.002793090468250788 -0.23505135942772495 1.0 9099 -27426 Nagpa N-acetylglucosamine-1-phosphodiester alpha-N-acetylglucosaminidase Novel U 0.002792862113003201 -0.23505372472387268 1.0 9100 -69274 Ctdspl CTD small phosphatase like Novel U 0.0027927586692726263 -0.23505479619063344 1.0 9101 -108705 Pttg1ip pituitary tumor-transforming 1 interacting protein Novel U 0.0027925713196527424 -0.23505673675183741 1.0 9102 -80719 Igsf6 immunoglobulin superfamily, member 6 Novel N 0.0027910687752657104 -0.2350723000572048 1.0 9103 -620631 Ift70a2 intraflagellar transport 70A2 Novel U 0.002791027638889092 -0.23507272614644154 1.0 9104 -66878 Riok3 RIO kinase 3 Novel U 0.0027874230561551966 -0.23511006229590495 1.0 9105 -30952 Cngb3 cyclic nucleotide gated channel beta 3 Novel N 0.002786924871469101 -0.23511522247650657 1.0 9106 -74387 Epcip exosomal polycystin 1 interacting protein Novel U 0.00278597968365987 -0.23512501270076322 1.0 9107 -15111 Hand2 heart and neural crest derivatives expressed 2 Novel U 0.002785425498565662 -0.23513075293175117 1.0 9108 -78802 Ift70a1 intraflagellar transport 70A1 Novel U 0.0027847543379803936 -0.23513770479103016 1.0 9109 -16624 Klk1b8 kallikrein 1-related peptidase b8 Novel U 0.0027845885830577745 -0.23513942167506977 1.0 9110 -17865 Mybl2 myeloblastosis oncogene-like 2 Novel N 0.002782393752343116 -0.23516215565946103 1.0 9111 -18952 Septin4 septin 4 Novel U 0.002782380058608739 -0.2351622974987115 1.0 9112 -67951 Tubb6 tubulin, beta 6 class V Novel N 0.002781368741200556 -0.23517277269118023 1.0 9113 -55936 Ctps2 cytidine 5'-triphosphate synthase 2 Novel N 0.0027805982050537336 -0.23518075387925902 1.0 9114 -13607 Eda ectodysplasin-A Novel U 0.0027789240058331338 -0.23519809517974963 1.0 9115 -235626 Setd2 SET domain containing 2 Novel U 0.0027779359682732034 -0.2352083292403154 1.0 9116 -74653 Pomk protein-O-mannose kinase Novel N 0.002777864870597521 -0.23520906566770294 1.0 9117 -93716 Pcdhga8 protocadherin gamma subfamily A, 8 Novel U 0.0027771708273130647 -0.23521625454522788 1.0 9118 -11689 Alox5 arachidonate 5-lipoxygenase Novel U 0.0027766636874428595 -0.23522150748333215 1.0 9119 -74430 Cfap20dc CFAP20 domain containing Novel U 0.002776401937704998 -0.23522421867851234 1.0 9120 -665687 Gm20777 predicted gene, 20777 Novel U 0.002775430706981522 -0.23523427865441862 1.0 9121 -71781 Slc16a14 solute carrier family 16 (monocarboxylic acid transporters), member 14 Novel U 0.0027744967518246407 -0.23524395253123145 1.0 9122 -68512 Tomm5 translocase of outer mitochondrial membrane 5 Novel U 0.002774361078705197 -0.23524535782894265 1.0 9123 -11363 Acadl acyl-Coenzyme A dehydrogenase, long-chain Novel U 0.002773737821437382 -0.2352518135072342 1.0 9124 -100126824 Sco2 SCO2 cytochrome c oxidase assembly protein Novel N 0.002770303377102673 -0.23528738736875185 1.0 9125 -53975 Ddx20 DEAD box helicase 20 Novel N 0.002768342571348 -0.23530769733030074 1.0 9126 -219151 Scara3 scavenger receptor class A, member 3 Novel U 0.002768007302876299 -0.23531117003010923 1.0 9127 -93694 Clec2d C-type lectin domain family 2, member d Novel U 0.002767830133780743 -0.23531300514177692 1.0 9128 -11864 Arnt2 aryl hydrocarbon receptor nuclear translocator 2 Novel U 0.002767085198757787 -0.23532072115425626 1.0 9129 -67120 Ttc14 tetratricopeptide repeat domain 14 Novel U 0.002766347945261918 -0.2353283576017306 1.0 9130 -101055754 Gm2974 predicted gene 2974 Novel U 0.002766110427739154 -0.2353308178004234 1.0 9131 -100861615 Gm3411 predicted gene 3411 Novel U 0.0027659919838258313 -0.23533204463858395 1.0 9132 -22367 Vrk1 vaccinia related kinase 1 Novel U 0.002765908798970074 -0.23533290626458533 1.0 9133 -56501 Elf4 E74 like ETS transcription factor 4 Novel U 0.002765348023335664 -0.23533871476017204 1.0 9134 -69035 Zdhhc3 zinc finger, DHHC domain containing 3 Novel U 0.0027646002945152593 -0.23534645971071355 1.0 9135 -74551 Pck2 phosphoenolpyruvate carboxykinase 2 (mitochondrial) Novel U 0.0027643474109471863 -0.23534907907039854 1.0 9136 -269704 Zfp664 zinc finger protein 664 Novel U 0.0027619180958346574 -0.23537424183647468 1.0 9137 -16770 Lalba lactalbumin, alpha Novel N 0.0027618348324473852 -0.23537510427590289 1.0 9138 -70478 Mipep mitochondrial intermediate peptidase Novel U 0.0027614029257738777 -0.23537957795102893 1.0 9139 -12265 Ciita class II transactivator Novel U 0.0027599331829900008 -0.23539480149846914 1.0 9140 -100041223 Gm20865 predicted gene, 20865 Novel U 0.0027586195561258436 -0.23540840800234492 1.0 9141 -258805 Or4d10c olfactory receptor family 4 subfamily D member 10C Novel U 0.002756765185526078 -0.23542761551205815 1.0 9142 -234577 Cpne2 copine II Novel U 0.0027566412192971987 -0.2354288995501817 1.0 9143 -16891 Lipg lipase, endothelial Novel U 0.00275618704033315 -0.235433603920961 1.0 9144 -382793 Mtx3 metaxin 3 Novel N 0.0027558638017852483 -0.23543695201521425 1.0 9145 -11470 Actl7a actin-like 7a Novel N 0.0027550457887278034 -0.23544542496757256 1.0 9146 -22635 Zan zonadhesin Novel U 0.0027542138119195617 -0.23545404255600255 1.0 9147 -16978 Lrrfip1 leucine rich repeat (in FLII) interacting protein 1 Novel U 0.0027540502759368928 -0.23545573645633508 1.0 9148 -102060 Gadd45gip1 growth arrest and DNA-damage-inducible, gamma interacting protein 1 Novel U 0.0027540310470444782 -0.2354559356285706 1.0 9149 -75616 Smim15 small integral membrane protein 15 Novel U 0.002753855061410551 -0.2354577584819816 1.0 9150 -76366 Mtif3 mitochondrial translational initiation factor 3 Novel U 0.0027537592050198394 -0.23545875135932548 1.0 9151 -235854 Mrgpra4 MAS-related GPR, member A4 Novel U 0.0027536048535840604 -0.23546035012642325 1.0 9152 -13714 Elk4 ELK4, member of ETS oncogene family Novel N 0.002752564084951219 -0.2354711303737088 1.0 9153 -17300 Foxc1 forkhead box C1 Novel U 0.0027524541091872756 -0.23547226949905647 1.0 9154 -14107 Fat1 FAT atypical cadherin 1 Novel N 0.002750601720020628 -0.23549145648515057 1.0 9155 -67510 Tvp23b trans-golgi network vesicle protein 23B Novel U 0.002749984943638536 -0.23549784503464086 1.0 9156 -71753 Tmprss6 transmembrane serine protease 6 Novel U 0.0027486560422883446 -0.23551160975114085 1.0 9157 -17720 ND4L NADH dehydrogenase subunit 4L Novel U 0.002747817826691858 -0.23552029196073443 1.0 9158 -26920 Cntrl centriolin Novel U 0.002747127310621803 -0.23552744430348854 1.0 9159 -58251 Cep295nl CEP295 N-terminal like Novel U 0.0027467129116987847 -0.23553173663391055 1.0 9160 -72140 Cep89 centrosomal protein 89 Novel N 0.0027466571539916692 -0.2355323141704079 1.0 9161 -14399 Gabra6 gamma-aminobutyric acid type A receptor subunit alpha 6 Novel N 0.002743985048898846 -0.23555999174711867 1.0 9162 -74187 Katnb1 katanin p80 (WD40-containing) subunit B 1 Novel U 0.002741727118739554 -0.23558337931348314 1.0 9163 -102641463 Gm17175 predicted gene 17175 Novel U 0.002741719933719658 -0.23558345373568304 1.0 9164 -76199 Med13l mediator complex subunit 13-like Novel U 0.002738308467233891 -0.23561878959339666 1.0 9165 -11875 Art5 ADP-ribosyltransferase 5 Novel U 0.0027377169255560123 -0.23562491676265027 1.0 9166 -225655 Prelid3a PRELI domain containing 3A Novel N 0.002737614089522906 -0.23562598193490064 1.0 9167 -208177 Phldb2 pleckstrin homology like domain, family B, member 2 Novel U 0.002737469207830691 -0.23562748261470584 1.0 9168 -57908 Zfp318 zinc finger protein 318 Novel U 0.0027373509745335475 -0.23562870727131097 1.0 9169 -71780 Isyna1 myo-inositol 1-phosphate synthase A1 Novel N 0.0027370642116135773 -0.23563167755220918 1.0 9170 -100910 Chpf2 chondroitin polymerizing factor 2 Novel N 0.0027358569785581504 -0.23564418203251167 1.0 9171 -116904 Alpk3 alpha-kinase 3 Novel U 0.002735811262358198 -0.23564465555940792 1.0 9172 -19088 Prkar2b protein kinase, cAMP dependent regulatory, type II beta Novel U 0.0027358007848534817 -0.23564476408505736 1.0 9173 -546901 Vmn1r34 vomeronasal 1 receptor 34 Novel U 0.002735684760067772 -0.23564596586597364 1.0 9174 -385643 Kng2 kininogen 2 Novel U 0.0027356560446505384 -0.23564626329932134 1.0 9175 -93843 Pnck pregnancy upregulated non-ubiquitously expressed CaM kinase Novel U 0.002734702782385646 -0.23565613715852432 1.0 9176 -18828 Plscr2 phospholipid scramblase 2 Novel U 0.0027338942883044443 -0.2356645115136396 1.0 9177 -668101 Sirpb1b signal-regulatory protein beta 1B Novel U 0.0027328157535095082 -0.2356756829415906 1.0 9178 -67049 Pus3 pseudouridine synthase 3 Novel U 0.002732185941868753 -0.23568220650986163 1.0 9179 -236690 Nyx nyctalopin Novel U 0.002731919895732975 -0.23568496220699017 1.0 9180 -329650 Med12l mediator complex subunit 12-like Novel U 0.002730663435645794 -0.2356979765792693 1.0 9181 -66440 Cdc26 cell division cycle 26 Novel U 0.0027304933549471126 -0.23569973826955515 1.0 9182 -394435 Ugt1a6b UDP glucuronosyltransferase 1 family, polypeptide A6B Novel U 0.0027297222855535053 -0.2357077249809866 1.0 9183 -435684 Shf Src homology 2 domain containing F Novel U 0.0027294923494996315 -0.2357101066510739 1.0 9184 -13813 Eomes eomesodermin Novel U 0.0027294662911121034 -0.2357103765629953 1.0 9185 -78928 Pigt phosphatidylinositol glycan anchor biosynthesis, class T Novel U 0.0027294501789083157 -0.23571054345267245 1.0 9186 -66408 Aptx aprataxin Novel N 0.0027290629551961596 -0.2357145543031537 1.0 9187 -66932 Rexo1 REX1, RNA exonuclease 1 Novel U 0.002727774492176839 -0.23572790016075185 1.0 9188 -67157 Cfap418 cilia and flagella associated protein 418 Novel N 0.0027275608474856584 -0.23573011308543992 1.0 9189 -53610 Nono non-POU-domain-containing, octamer binding protein Novel U 0.0027268625938904434 -0.2357373455732253 1.0 9190 -72795 Ttc19 tetratricopeptide repeat domain 19 Novel U 0.0027242687284136486 -0.23576421274656523 1.0 9191 -268958 Capn11 calpain 11 Novel U 0.0027240343447107415 -0.23576664048525495 1.0 9192 -67260 Cers4 ceramide synthase 4 Novel N 0.0027236240942854883 -0.23577088984567351 1.0 9193 -100040244 Styx-ps serine/threonine/tyrosine interacting protein, pseudogene Novel U 0.0027228437746045883 -0.23577897237127662 1.0 9194 -239659 C1ql4 complement component 1, q subcomponent-like 4 Novel U 0.0027209245589649273 -0.2357988515437814 1.0 9195 -329360 Rnf224 ring finger protein 224 Novel U 0.0027202589689097187 -0.23580574570369317 1.0 9196 -11429 Aco2 aconitase 2, mitochondrial Novel N 0.00271995573081902 -0.2358088866338682 1.0 9197 -59024 Med12 mediator complex subunit 12 Novel U 0.002719879149798345 -0.2358096798575629 1.0 9198 -108168186 Gm7876 predicted gene 7876 Novel U 0.00271978140166067 -0.23581069232955962 1.0 9199 -17132 Maf MAF bZIP transcription factor Novel U 0.002718228375980917 -0.23582677851849757 1.0 9200 -258909 Or4k38 olfactory receptor family 4 subfamily K member 38 Novel U 0.002718077970886315 -0.23582833640952314 1.0 9201 -381678 Zcwpw1 zinc finger, CW type with PWWP domain 1 Novel U 0.002717529107476215 -0.23583402151868205 1.0 9202 -216797 Prss38 serine protease 38 Novel U 0.0027153026199053616 -0.23585708340374908 1.0 9203 -114641 Rpl31 ribosomal protein L31 Novel U 0.002715236512844042 -0.2358577681385171 1.0 9204 -230806 Crybg2 crystallin beta-gamma domain containing 2 Novel U 0.002714759353791113 -0.2358627105363016 1.0 9205 -78455 Helz helicase with zinc finger domain Novel U 0.0027146181909155067 -0.23586417269672663 1.0 9206 -626615 Apol11a apolipoprotein L 11a Novel U 0.002714289750429998 -0.23586757467247862 1.0 9207 -77031 Slc9a8 solute carrier family 9 (sodium/hydrogen exchanger), member 8 Novel N 0.0027142253500128913 -0.23586824172988197 1.0 9208 -71750 R3hdm2 R3H domain containing 2 Novel U 0.002712213121697636 -0.23588908432462294 1.0 9209 -27053 Asns asparagine synthetase Novel U 0.0027108338564359197 -0.2359033707088629 1.0 9210 -214899 Kdm5a lysine demethylase 5A Novel U 0.002709585587974728 -0.2359163002325493 1.0 9211 -26445 Psmb2 proteasome (prosome, macropain) subunit, beta type 2 Novel U 0.0027091200047498257 -0.23592112272828764 1.0 9212 -209588 Sectm1a secreted and transmembrane 1A Novel U 0.002709018255179426 -0.23592217664699297 1.0 9213 -50781 Dkk3 dickkopf WNT signaling pathway inhibitor 3 Novel N 0.002708904084968352 -0.23592335921828614 1.0 9214 -233276 Tubgcp5 tubulin, gamma complex component 5 Novel U 0.0027086948930408685 -0.23592552602139422 1.0 9215 -80290 Gpr146 G protein-coupled receptor 146 Novel U 0.0027084048819888936 -0.23592852994633698 1.0 9216 -230908 Tardbp TAR DNA binding protein Novel U 0.0027075220036533684 -0.23593767477111324 1.0 9217 -100503964 Gm17266 predicted gene, 17266 Novel U 0.002707009169556519 -0.23594298668982994 1.0 9218 -12261 C1qbp complement component 1, q subcomponent binding protein Novel U 0.0027065593739508667 -0.23594764565792703 1.0 9219 -100041964 Gm3594 predicted gene 3594 Novel U 0.0027057274985430625 -0.23595626219605464 1.0 9220 -227746 Rabepk Rab9 effector protein with kelch motifs Novel U 0.0027047896739475752 -0.23596597615238538 1.0 9221 -382066 Prdm10 PR domain containing 10 Novel N 0.0027028096742598338 -0.23598648492406202 1.0 9222 -216860 Neurl4 neuralized E3 ubiquitin protein ligase 4 Novel U 0.002700832672439731 -0.23600696264392418 1.0 9223 -15108 Hsd17b10 hydroxysteroid (17-beta) dehydrogenase 10 Novel U 0.0026999490430857855 -0.23601611524772462 1.0 9224 -67472 Mtfr1 mitochondrial fission regulator 1 Novel U 0.002698878326090665 -0.23602720569916213 1.0 9225 -68836 Mrpl52 mitochondrial ribosomal protein L52 Novel U 0.00269884795875874 -0.23602752024298795 1.0 9226 -15925 Ide insulin degrading enzyme Novel U 0.00269880858360329 -0.23602792808955372 1.0 9227 -259049 Or52z13 olfactory receptor family 52 subfamily Z member 13 Novel U 0.0026986383369564343 -0.2360296914987253 1.0 9228 -55949 Eef1b2 eukaryotic translation elongation factor 1 beta 2 Novel U 0.0026975618795135443 -0.23604084140953213 1.0 9229 -12462 Cct3 chaperonin containing TCP1 subunit 3 Novel U 0.0026972356712107503 -0.23604422026440894 1.0 9230 -13808 Eno3 enolase 3, beta muscle Novel U 0.002696939168979683 -0.23604729142477135 1.0 9231 -19736 Rgs4 regulator of G-protein signaling 4 Novel U 0.0026960476131554405 -0.23605652613069053 1.0 9232 -258910 Or4k36 olfactory receptor family 4 subfamily K member 36 Novel U 0.0026944818548984965 -0.23607274420324442 1.0 9233 -74205 Acsl3 acyl-CoA synthetase long-chain family member 3 Novel U 0.002694421180325978 -0.236073372668472 1.0 9234 -26942 Spag1 sperm associated antigen 1 Novel N 0.0026931852365160032 -0.23608617453382627 1.0 9235 -245527 Eda2r ectodysplasin A2 receptor Novel U 0.002693117054359509 -0.23608688076236187 1.0 9236 -232560 Caprin2 caprin family member 2 Novel U 0.0026925072887420284 -0.23609319669458279 1.0 9237 -241568 Lrrc4c leucine rich repeat containing 4C Novel U 0.002689046880032314 -0.23612903949424316 1.0 9238 -246696 Slc25a28 solute carrier family 25, member 28 Novel U 0.0026887295397977117 -0.2361323264939612 1.0 9239 -20698 Sphk1 sphingosine kinase 1 Novel U 0.002685918319120472 -0.23616144502532213 1.0 9240 -219158 Ccar2 cell cycle activator and apoptosis regulator 2 Novel U 0.0026855444257264365 -0.2361653178008065 1.0 9241 -226539 Dars2 aspartyl-tRNA synthetase 2 (mitochondrial) Novel N 0.0026851448587055815 -0.2361694565028734 1.0 9242 -78558 Htra3 HtrA serine peptidase 3 Novel N 0.0026847877617202647 -0.2361731553017084 1.0 9243 -13121 Cyp51 cytochrome P450, family 51 Novel N 0.0026841581376803305 -0.23617967692681627 1.0 9244 -110006 Gusb glucuronidase, beta Novel U 0.0026816025093841208 -0.23620614804069667 1.0 9245 -56858 Or11h4 olfactory receptor family 11 subfamily H member 4 Novel U 0.002681204529416997 -0.23621027030411326 1.0 9246 -67000 Prl3a1 prolactin family 3, subfamily a, member 1 Novel U 0.0026810224422935095 -0.23621215635655254 1.0 9247 -107022 Gramd2b GRAM domain containing 2B Novel U 0.0026802439356016883 -0.23622022010327437 1.0 9248 -56273 Pex14 peroxisomal biogenesis factor 14 Novel U 0.0026790373818104994 -0.23623271754778022 1.0 9249 -59046 Arpp19 cAMP-regulated phosphoprotein 19 Novel U 0.0026790330598056 -0.23623276231496487 1.0 9250 -233863 Gtf3c1 general transcription factor III C 1 Novel N 0.0026783540527924223 -0.23623979544728624 1.0 9251 -18230 Nxn nucleoredoxin Novel N 0.00267789883630764 -0.23624451056467116 1.0 9252 -380608 Tagap1 T cell activation GTPase activating protein 1 Novel U 0.0026777768536417456 -0.23624577405711453 1.0 9253 -228684 Sel1l2 sel-1 suppressor of lin-12-like 2 (C. elegans) Novel U 0.002675157078674483 -0.23627290960010494 1.0 9254 -228005 Ppig peptidyl-prolyl isomerase G (cyclophilin G) Novel N 0.002674837802698794 -0.23627621665016554 1.0 9255 -77569 Limch1 LIM and calponin homology domains 1 Novel U 0.002674565167617277 -0.23627904059537747 1.0 9256 -17318 Mid1 midline 1 Novel U 0.0026716510399204313 -0.2363092250342646 1.0 9257 -217558 G2e3 G2/M-phase specific E3 ubiquitin ligase Novel U 0.0026715919392796537 -0.23630983719675894 1.0 9258 -18185 Nrl neural retina leucine zipper gene Novel N 0.0026709572035271386 -0.2363164117688177 1.0 9259 -15209 Hesx1 homeobox gene expressed in ES cells Novel U 0.002670235903399841 -0.23632388297182477 1.0 9260 -110350 Dync2h1 dynein cytoplasmic 2 heavy chain 1 Novel U 0.002668554493396988 -0.23634129896136097 1.0 9261 -75991 Slain2 SLAIN motif family, member 2 Novel U 0.0026675589258758356 -0.23635161101701754 1.0 9262 -106504 Stk38 serine/threonine kinase 38 Novel U 0.0026674185274711045 -0.2363530652590784 1.0 9263 -20937 Suv39h1 suppressor of variegation 3-9 1 Novel U 0.0026669406089420656 -0.23635801552349145 1.0 9264 -13726 Emd emerin Novel U 0.002666782705774557 -0.23635965107930973 1.0 9265 -192216 Tmem47 transmembrane protein 47 Novel U 0.0026665542545778347 -0.23636201736929544 1.0 9266 -71660 Rarres2 retinoic acid receptor responder (tazarotene induced) 2 Novel U 0.002665960640430146 -0.2363681660051232 1.0 9267 -105246 Brd9 bromodomain containing 9 Novel U 0.002665065678416851 -0.2363774359922366 1.0 9268 -100039595 Gm20807 predicted gene, 20807 Novel U 0.0026647921650744515 -0.23638026903444592 1.0 9269 -57255 Cldn13 claudin 13 Novel U 0.002664479152150605 -0.23638351121202136 1.0 9270 -52323 Klhl7 kelch-like 7 Novel N 0.0026642866812861925 -0.2363855048189078 1.0 9271 -545013 Gm5797 predicted gene 5797 Novel U 0.0026626916060776325 -0.2364020265554828 1.0 9272 -627488 Alyreffm14 Aly/REF export factor family member 14 Novel U 0.0026602474912462283 -0.23642734261656054 1.0 9273 -258494 Or2ak5 olfactory receptor family 2 subfamily AK member 5 Novel U 0.002658846321989906 -0.23644185588165656 1.0 9274 -12499 Entpd5 ectonucleoside triphosphate diphosphohydrolase 5 Novel U 0.002658161591220974 -0.23644894830045185 1.0 9275 -12968 Cryge crystallin, gamma E Novel U 0.002658148704544396 -0.2364490817802242 1.0 9276 -634731 Susd1 sushi domain containing 1 Novel U 0.0026579656099857338 -0.23645097826764394 1.0 9277 -71365 Pdss2 prenyl (solanesyl) diphosphate synthase, subunit 2 Novel N 0.0026562982104267607 -0.23646824913746298 1.0 9278 -17846 Commd1 COMM domain containing 1 Novel U 0.00265531174806964 -0.2364784668821298 1.0 9279 -22278 Usf1 upstream transcription factor 1 Novel U 0.002655283719302534 -0.23647875720317812 1.0 9280 -237221 Gemin8 gem nuclear organelle associated protein 8 Novel N 0.0026540246341485753 -0.2364917987658126 1.0 9281 -13025 Ctla2b cytotoxic T lymphocyte-associated protein 2 beta Novel U 0.002653347722473839 -0.23649881019468727 1.0 9282 -667530 Vmn1r155 vomeronasal 1 receptor 155 Novel U 0.0026527398681567 -0.23650510632972205 1.0 9283 -77352 Axdnd1 axonemal dynein light chain domain containing 1 Novel U 0.002652727761073997 -0.2365052317344867 1.0 9284 -19672 Rcn1 reticulocalbin 1 Novel U 0.00265079373497425 -0.2365252643132502 1.0 9285 -76425 Gid8 GID complex subunit 8 Novel U 0.002649816154476854 -0.23653539005990598 1.0 9286 -20196 S100a13 S100 calcium binding protein A13 Novel U 0.0026497017973302825 -0.2365365745674709 1.0 9287 -228564 Frmd5 FERM domain containing 5 Novel U 0.0026484579503676803 -0.23654945829342025 1.0 9288 -18175 Nrap nebulin-related anchoring protein Novel U 0.002647787837025296 -0.2365563993053919 1.0 9289 -230098 Arhgef39 Rho guanine nucleotide exchange factor 39 Novel N 0.002647636947946363 -0.23655796220951128 1.0 9290 -20591 Kdm5c lysine demethylase 5C Novel U 0.0026474787089661874 -0.23655960124366612 1.0 9291 -72759 Tmem135 transmembrane protein 135 Novel U 0.002646706563049076 -0.2365675991056926 1.0 9292 -71902 Cand1 cullin associated and neddylation disassociated 1 Novel N 0.002646664703799206 -0.2365680326824267 1.0 9293 -13124 Cyp8b1 cytochrome P450, family 8, subfamily b, polypeptide 1 Novel N 0.0026454751189411777 -0.23658035436328068 1.0 9294 -26932 Ppp2r5e protein phosphatase 2, regulatory subunit B', epsilon Novel U 0.0026452107155108657 -0.23658309304532008 1.0 9295 -23908 Hs2st1 heparan sulfate 2-O-sulfotransferase 1 Novel U 0.0026437260631621416 -0.23659847102554282 1.0 9296 -12969 Crygf crystallin, gamma F Novel U 0.0026425444300300013 -0.23661071034268144 1.0 9297 -13629 Eef2 eukaryotic translation elongation factor 2 Novel N 0.0026414753610133576 -0.23662178372441206 1.0 9298 -18193 Nsd1 nuclear receptor-binding SET-domain protein 1 Novel U 0.002640836617110975 -0.23662839981275538 1.0 9299 -12660 Chka choline kinase alpha Novel U 0.0026402089105266213 -0.23663490157692138 1.0 9300 -625353 Vmn2r35 vomeronasal 2, receptor 35 Novel U 0.002638886982911072 -0.2366485940597072 1.0 9301 -209824 Vmn1r183 vomeronasal 1 receptor 183 Novel U 0.0026382666564163356 -0.23665501938114755 1.0 9302 -76916 Timmdc1 translocase of inner mitochondrial membrane domain containing 1 Novel N 0.002637466724033201 -0.23666330505447572 1.0 9303 -12826 Col4a1 collagen, type IV, alpha 1 Novel U 0.0026368687596909244 -0.23666949874947596 1.0 9304 -17907 Mylpf myosin light chain, phosphorylatable, fast skeletal muscle Novel U 0.002636379565622503 -0.2366745658055553 1.0 9305 -353187 Nr1d2 nuclear receptor subfamily 1, group D, member 2 Novel N 0.0026352808375501684 -0.2366859463948098 1.0 9306 -211232 Cpne9 copine family member IX Novel U 0.002634520047652145 -0.2366938266315639 1.0 9307 -104158 Ces1d carboxylesterase 1D Novel U 0.0026338781602480376 -0.23670047528019475 1.0 9308 -66998 Psmd5 proteasome (prosome, macropain) 26S subunit, non-ATPase, 5 Novel N 0.0026333937314924724 -0.23670549297732016 1.0 9309 -381686 Kpna7 karyopherin subunit alpha 7 Novel N 0.002630251553292449 -0.23673803955582243 1.0 9310 -68588 Cthrc1 collagen triple helix repeat containing 1 Novel U 0.0026301615235856998 -0.2367389720805654 1.0 9311 -75180 Tmem269 transmembrane protein 269 Novel U 0.0026284243276847815 -0.23675696589859985 1.0 9312 -83766 Actl6b actin-like 6B Novel U 0.002627928978887879 -0.23676209670515447 1.0 9313 -71643 Zgrf1 zinc finger, GRF-type containing 1 Novel U 0.002627091873459729 -0.23677076741566086 1.0 9314 -21855 Timm17b translocase of inner mitochondrial membrane 17b Novel U 0.0026265681285065953 -0.23677619234866826 1.0 9315 -21885 Tle1 transducin-like enhancer of split 1 Novel N 0.002625576918427272 -0.2367864592700856 1.0 9316 -69757 Leng1 leukocyte receptor cluster (LRC) member 1 Novel U 0.0026247486109946105 -0.23679503885124398 1.0 9317 -30053 Reg3d regenerating islet-derived 3 delta Novel U 0.0026230903257155797 -0.23681221531565097 1.0 9318 -80883 Ntng1 netrin G1 Novel U 0.0026230378489564246 -0.23681275886819722 1.0 9319 -18183 Nrg3 neuregulin 3 Novel U 0.002622856580311966 -0.23681463644285766 1.0 9320 -68283 Matcap2 microtubule associated tyrosine carboxypeptidase 2 Novel U 0.002622160988276494 -0.2368218413622947 1.0 9321 -100503890 Pet100 PET100 homolog Novel N 0.0026220731956407535 -0.2368227507155297 1.0 9322 -15165 Hcn1 hyperpolarization activated cyclic nucleotide gated potassium channel 1 Novel U 0.002620732298143241 -0.2368366396877293 1.0 9323 -113865 Vmn1r25 vomeronasal 1 receptor 25 Novel U 0.002620721943143898 -0.23683674694447207 1.0 9324 -20973 Syngr2 synaptogyrin 2 Novel U 0.0026186990190758355 -0.23685770032546902 1.0 9325 -100042848 Vmn2r41 vomeronasal 2, receptor 41 Novel U 0.0026164957850998522 -0.23688052135056484 1.0 9326 -76505 Smim45 small integral membrane protein 45 Novel U 0.002615936226934074 -0.23688631723565148 1.0 9327 -26554 Cul3 cullin 3 Novel U 0.002614887271671283 -0.23689718227978093 1.0 9328 -170461 Stard6 StAR related lipid transfer domain containing 6 Novel U 0.0026143023381522777 -0.23690324100194213 1.0 9329 -110639 Prps2 phosphoribosyl pyrophosphate synthetase 2 Novel N 0.0026138357421729395 -0.2369080739877576 1.0 9330 -14313 Fst follistatin Novel N 0.002611426176751714 -0.23693303218718045 1.0 9331 -229707 Strip1 striatin interacting protein 1 Novel U 0.0026107318448345715 -0.23694022405435328 1.0 9332 -118568150 LOC118568150 disks large homolog 5-like Novel U 0.0026095290159818744 -0.23695268291606866 1.0 9333 -16648 Kpna3 karyopherin subunit alpha 3 Novel N 0.002609028876977938 -0.23695786333943025 1.0 9334 -68558 Ankra2 ankyrin repeat family A member 2 Novel U 0.0026084786925188535 -0.23696356213197112 1.0 9335 -380928 Lmo7 LIM domain only 7 Novel N 0.002608173156604462 -0.23696672686292844 1.0 9336 -69573 Hilpda hypoxia inducible lipid droplet associated Novel U 0.0026073945816987463 -0.23697479131620755 1.0 9337 -17885 Myh8 myosin, heavy polypeptide 8, skeletal muscle, perinatal Novel U 0.0026062550155546505 -0.2369865949048669 1.0 9338 -81010 Vmn1r172 vomeronasal 1 receptor 172 Novel U 0.002605091971311087 -0.2369986416789087 1.0 9339 -13992 Khdrbs3 KH domain containing, RNA binding, signal transduction associated 3 Novel U 0.0026047545964219447 -0.23700213619691982 1.0 9340 -360211 Defb34 defensin beta 34 Novel U 0.002604349039253673 -0.23700633694473683 1.0 9341 -63955 Cables1 CDK5 and Abl enzyme substrate 1 Novel U 0.002603808589337186 -0.23701193490720546 1.0 9342 -50500 Ttpa tocopherol (alpha) transfer protein Novel U 0.0026020395784177234 -0.23703025826415614 1.0 9343 -215653 Rassf2 Ras association (RalGDS/AF-6) domain family member 2 Novel U 0.0026020141674288257 -0.2370305214703438 1.0 9344 -22652 Mkrn3 makorin, ring finger protein, 3 Novel U 0.0026010105238666505 -0.23704091717736783 1.0 9345 -68742 Tmem219 transmembrane protein 219 Novel U 0.0026009046731606447 -0.23704201357550098 1.0 9346 -93721 Cpn1 carboxypeptidase N, polypeptide 1 Novel N 0.00260089673500359 -0.23704209579867078 1.0 9347 -100043536 Vmn1r100 vomeronasal 1 receptor 100 Novel U 0.0026006327363699597 -0.23704483028783943 1.0 9348 -15413 Hoxb5 homeobox B5 Novel N 0.0025995215056192145 -0.2370563403794259 1.0 9349 -116872 Serpinb7 serine (or cysteine) peptidase inhibitor, clade B, member 7 Novel U 0.002598672538653855 -0.23706513395134482 1.0 9350 -19888 Rp1 retinitis pigmentosa 1 (human) Novel N 0.002597433973486126 -0.23707796296863654 1.0 9351 -59045 Stard3 StAR related lipid transfer domain containing 3 Novel U 0.0025972542825255197 -0.23707982420169946 1.0 9352 -223649 Nrbp2 nuclear receptor binding protein 2 Novel U 0.0025963520775624726 -0.2370891692110483 1.0 9353 -54672 Adgrg3 adhesion G protein-coupled receptor G3 Novel N 0.00259574762377086 -0.23709543012355147 1.0 9354 -11699 Ambp alpha 1 microglobulin/bikunin precursor Novel N 0.002594946108896837 -0.23710373218826822 1.0 9355 -240892 Styxl2 serine/threonine/tyrosine interacting like 2 Novel U 0.002593328549353377 -0.23712048681684497 1.0 9356 -100504518 3425401B19Rik RIKEN cDNA 3425401B19 gene Novel U 0.002592620905283241 -0.2371278165708609 1.0 9357 -320720 Fastkd1 FAST kinase domains 1 Novel N 0.002592246776217161 -0.23713169178742852 1.0 9358 -404286 Vmn1r179 vomeronasal 1 receptor 179 Novel U 0.002590825387426472 -0.23714641448579685 1.0 9359 -27263 Smok2a sperm motility kinase 2A Novel U 0.0025894191904799915 -0.23716097982754225 1.0 9360 -102643076 Percc1 proline and glutamate rich with coiled coil 1 Novel U 0.002589193360418587 -0.23716331896789453 1.0 9361 -16828 Ldha lactate dehydrogenase A Novel U 0.002588708666000258 -0.23716833941674612 1.0 9362 -17534 Mrc2 mannose receptor, C type 2 Novel N 0.002588245487713715 -0.23717313700221193 1.0 9363 -78134 Lpar4 lysophosphatidic acid receptor 4 Novel U 0.002586763097131291 -0.23718849155513372 1.0 9364 -53318 Pdlim3 PDZ and LIM domain 3 Novel U 0.0025865428864168733 -0.23719077249047463 1.0 9365 -170753 Zfp704 zinc finger protein 704 Novel U 0.0025861948080529657 -0.23719437787472553 1.0 9366 -19266 Ptprd protein tyrosine phosphatase receptor type D Novel U 0.0025860633585916113 -0.23719573942392508 1.0 9367 -171264 Vmn1r66 vomeronasal 1 receptor 66 Novel U 0.002586062908117567 -0.23719574408992042 1.0 9368 -93724 Pcdhga12 protocadherin gamma subfamily A, 12 Novel U 0.0025856711807490194 -0.23719980158912646 1.0 9369 -60365 Rbm8a RNA binding motif protein 8a Novel U 0.002584991978959712 -0.23720683673893259 1.0 9370 -66118 Sarnp SAP domain containing ribonucleoprotein Novel N 0.0025836336574458136 -0.2372209061885211 1.0 9371 -258022 Or4f62 olfactory receptor family 4 subfamily F member 62 Novel U 0.002582991145520803 -0.23722756130591893 1.0 9372 -27410 Abca3 ATP-binding cassette, sub-family A member 3 Novel U 0.002582853353685356 -0.23722898854922084 1.0 9373 -328035 Fads6 fatty acid desaturase domain family, member 6 Novel U 0.0025825240639429717 -0.23723239932154763 1.0 9374 -436008 Sdr42e2 short chain dehydrogenase/reductase family 42E, member 2 Novel U 0.002582441215948551 -0.23723325745835036 1.0 9375 -107173 Gpr137 G protein-coupled receptor 137 Novel U 0.0025820022243786913 -0.23723780451859988 1.0 9376 -103080 Septin10 septin 10 Novel U 0.002581975529037906 -0.23723808102806218 1.0 9377 -67896 Ccdc80 coiled-coil domain containing 80 Novel U 0.0025814852670198877 -0.23724315914592833 1.0 9378 -319200 Gpr82 G protein-coupled receptor 82 Novel U 0.0025812056260925663 -0.23724605565746082 1.0 9379 -225896 Ubxn1 UBX domain protein 1 Novel U 0.0025810006712844373 -0.2372481785726259 1.0 9380 -100862389 Btbd35f8 BTB domain containing 35, family member 8 Novel U 0.002580166093111721 -0.2372568231059036 1.0 9381 -12581 Cdkn2d cyclin dependent kinase inhibitor 2D Novel U 0.0025798911029214595 -0.2372596714452545 1.0 9382 -259038 Or8s2 olfactory receptor family 8 subfamily S member 2 Novel U 0.0025767750120615452 -0.23729194781194554 1.0 9383 -11544 Adprh ADP-ribosylarginine hydrolase Novel N 0.002576397168944058 -0.23729586149853557 1.0 9384 -66824 Pycard PYD and CARD domain containing Novel U 0.0025756137044106843 -0.23730397659841723 1.0 9385 -20853 Stau1 staufen double-stranded RNA binding protein 1 Novel N 0.002573492314332071 -0.23732594988711456 1.0 9386 -58521 Eid1 EP300 interacting inhibitor of differentiation 1 Novel N 0.002572737955358849 -0.23733376351256097 1.0 9387 -243382 Ppm1k protein phosphatase 1K (PP2C domain containing) Novel N 0.0025708513225303907 -0.23735330519337844 1.0 9388 -20932 Surf4 surfeit gene 4 Novel U 0.0025702662823221746 -0.237359365020623 1.0 9389 -140477 Dmbx1 diencephalon/mesencephalon homeobox 1 Novel U 0.002570230984106903 -0.2373597306383764 1.0 9390 -21824 Thbd thrombomodulin Novel U 0.0025683880565854885 -0.23737881962106025 1.0 9391 -74485 Lrrc71 leucine rich repeat containing 71 Novel U 0.0025672984975585256 -0.2373901052376442 1.0 9392 -66506 Psmg3 proteasome (prosome, macropain) assembly chaperone 3 Novel N 0.0025670395199240696 -0.23739278771946845 1.0 9393 -17688 Msh6 mutS homolog 6 Novel U 0.0025663285153646534 -0.23740015228132189 1.0 9394 -12545 Cdc7 cell division cycle 7 Novel U 0.0025656707034675194 -0.23740696587532797 1.0 9395 -446099 Nlrp4e NLR family, pyrin domain containing 4E Novel U 0.002565483803298517 -0.2374089017811345 1.0 9396 -12815 Col11a2 collagen, type XI, alpha 2 Novel U 0.0025648195179775323 -0.23741578242665207 1.0 9397 -207781 C2cd2 C2 calcium-dependent domain containing 2 Novel U 0.002564700875443408 -0.23741701132212034 1.0 9398 -100034748 Prr35 proline rich 35 Novel U 0.0025643793718621815 -0.23742034144564583 1.0 9399 -14069 F8 coagulation factor VIII Novel U 0.0025640279824585247 -0.23742398112553761 1.0 9400 -11501 Adam8 a disintegrin and metallopeptidase domain 8 Novel U 0.002563866353522727 -0.23742565527274134 1.0 9401 -68259 Ift80 intraflagellar transport 80 Novel U 0.002562694328467656 -0.2374377950697335 1.0 9402 -70925 Cdkn2aip CDKN2A interacting protein Novel N 0.0025625097540693653 -0.23743970688528346 1.0 9403 -66825 Rnf186 ring finger protein 186 Novel U 0.0025620769625449282 -0.2374441897256663 1.0 9404 -27206 Nrk Nik related kinase Novel U 0.0025611057549875835 -0.23745424946161856 1.0 9405 -240239 Gpr151 G protein-coupled receptor 151 Novel U 0.002559747679306066 -0.2374683163648834 1.0 9406 -13557 E2f3 E2F transcription factor 3 Novel U 0.0025596972697241906 -0.23746883850567532 1.0 9407 -78911 Trim42 tripartite motif-containing 42 Novel U 0.002559254780659673 -0.23747342179285957 1.0 9408 -19309 Pygm muscle glycogen phosphorylase Novel U 0.002559103133857316 -0.23747499254545323 1.0 9409 -72293 Nkd2 naked cuticle 2 Novel U 0.002559093865770611 -0.2374750885439907 1.0 9410 -76893 Cers2 ceramide synthase 2 Novel N 0.0025575388923089843 -0.2374911949079892 1.0 9411 -100039229 Gapdhrt2 glyceraldehyde-3-phosphate dehydrogenase, retrotransposed 2 Novel U 0.0025574194133615494 -0.23749243246699908 1.0 9412 -68729 Trim37 tripartite motif-containing 37 Novel U 0.002557130727396432 -0.2374954226667357 1.0 9413 -246707 Emilin2 elastin microfibril interfacer 2 Novel U 0.0025565384360199087 -0.23750155760134323 1.0 9414 -76980 Ube2ql1 ubiquitin-conjugating enzyme E2Q family-like 1 Novel U 0.0025562765466010926 -0.23750427024333415 1.0 9415 -232585 Vwde von Willebrand factor D and EGF domains Novel U 0.002556040864801937 -0.2375067114276622 1.0 9416 -353166 Tas2r117 taste receptor, type 2, member 117 Novel U 0.0025553551112090915 -0.23751381444083394 1.0 9417 -113862 Vmn1r13 vomeronasal 1 receptor 13 Novel U 0.002554690369129548 -0.23752069981744164 1.0 9418 -17168 Nprl3 nitrogen permease regulator-like 3 Novel U 0.0025540584303459317 -0.2375272454185885 1.0 9419 -665943 Pramel55 PRAME like 55 Novel U 0.0025540252063646703 -0.2375275895514942 1.0 9420 -330790 Hapln4 hyaluronan and proteoglycan link protein 4 Novel U 0.0025536689684422425 -0.23753127945218402 1.0 9421 -108958 Miga2 mitoguardin 2 Novel U 0.0025535142051265375 -0.2375328824855205 1.0 9422 -258098 Or10w1 olfactory receptor family 10 subfamily W member 1 Novel U 0.0025524747684023377 -0.23754364893694013 1.0 9423 -20751 Spr sepiapterin reductase Novel N 0.002551670484427448 -0.23755197968391265 1.0 9424 -18171 Nr1i2 nuclear receptor subfamily 1, group I, member 2 Novel N 0.002550789817415685 -0.23756110160387012 1.0 9425 -235339 Dlat dihydrolipoamide S-acetyltransferase Novel U 0.002549901095272621 -0.2375703069586128 1.0 9426 -76874 4930469K13Rik RIKEN cDNA 4930469K13 gene Novel U 0.0025492375180565 -0.23757718026960345 1.0 9427 -14663 Glycam1 glycosylation dependent cell adhesion molecule 1 Novel U 0.0025486004187771625 -0.23758377932299532 1.0 9428 -208777 Sned1 sushi, nidogen and EGF-like domains 1 Novel U 0.0025482156939881312 -0.23758776428971298 1.0 9429 -140765 Tmprss3 transmembrane protease, serine 3 Novel N 0.0025445271900051696 -0.23762596969271543 1.0 9430 -102633100 Pramel41 PRAME like 41 Novel U 0.0025442866709927546 -0.2376284609807394 1.0 9431 -17184 Matr3 matrin 3 Novel U 0.002544094918600317 -0.23763044714571674 1.0 9432 -13861 Epx eosinophil peroxidase Novel U 0.0025439655271734685 -0.2376317873778625 1.0 9433 -14619 Gjb2 gap junction protein, beta 2 Novel U 0.0025439605234271762 -0.23763183920650213 1.0 9434 -71844 Nup58 nucleoporin 58 Novel U 0.0025434136149865994 -0.23763750406615097 1.0 9435 -22282 Usf2 upstream transcription factor 2 Novel U 0.0025428974484250667 -0.23764285050242728 1.0 9436 -232232 Hdac11 histone deacetylase 11 Novel N 0.002542731340915793 -0.23764457103854786 1.0 9437 -96957 Tmem62 transmembrane protein 62 Novel U 0.0025413704156070018 -0.2376586674581583 1.0 9438 -192120 Bspry B-box and SPRY domain containing Novel U 0.002540224904686292 -0.23767053262261836 1.0 9439 -241727 Snph syntaphilin Novel U 0.0025395261247736015 -0.23767777056198286 1.0 9440 -57755 Dnajb7 DnaJ heat shock protein family (Hsp40) member B7 Novel U 0.0025395151699892132 -0.23767788403127943 1.0 9441 -100861702 Gm21149 predicted gene, 21149 Novel U 0.0025393177595131803 -0.23767992880250066 1.0 9442 -338521 Fa2h fatty acid 2-hydroxylase Novel N 0.002538375623083639 -0.2376896874206668 1.0 9443 -70762 Dclk2 doublecortin-like kinase 2 Novel U 0.0025379742524734815 -0.23769384480425246 1.0 9444 -18038 Nfkbil1 nuclear factor of kappa light polypeptide gene enhancer in B cells inhibitor like 1 Novel U 0.0025378244541176577 -0.23769539641069773 1.0 9445 -16821 Lcn4 lipocalin 4 Novel U 0.0025370892139220352 -0.23770301200447425 1.0 9446 -100504491 Dcdc2b doublecortin domain containing 2b Novel U 0.002535936856302857 -0.23771494808681198 1.0 9447 -100041354 Pramel57 PRAME like 57 Novel U 0.0025349475407913397 -0.23772519538435827 1.0 9448 -54616 Extl3 exostosin-like glycosyltransferase 3 Novel U 0.0025343684386531992 -0.23773119370526818 1.0 9449 -76422 Mroh3 maestro heat-like repeat family member 3 Novel U 0.002533876644537575 -0.23773628769255098 1.0 9450 -382985 Rrm2b ribonucleotide reductase M2 B (TP53 inducible) Novel U 0.002533571955067016 -0.2377394436560709 1.0 9451 -240444 Kcng2 potassium voltage-gated channel, subfamily G, member 2 Novel N 0.0025329898539853918 -0.23774547303993881 1.0 9452 -66075 Chchd3 coiled-coil-helix-coiled-coil-helix domain containing 3 Novel U 0.0025312451042984645 -0.23776354509984046 1.0 9453 -110075 Bmp3 bone morphogenetic protein 3 Novel N 0.002530906065804872 -0.2377670568494118 1.0 9454 -66098 Chchd6 coiled-coil-helix-coiled-coil-helix domain containing 6 Novel N 0.0025296590090420827 -0.23777997382236596 1.0 9455 -17474 Clec4d C-type lectin domain family 4, member d Novel N 0.002527508707676021 -0.2378022465732283 1.0 9456 -57753 Noc3l NOC3 like DNA replication regulator Novel U 0.0025274865567162883 -0.23780247601214102 1.0 9457 -100036568 Gm3373 predicted gene 3373 Novel U 0.0025268531961643212 -0.2378090363399177 1.0 9458 -226470 Zbtb41 zinc finger and BTB domain containing 41 Novel U 0.002526840924192245 -0.23780916345260103 1.0 9459 -208624 Alg3 ALG3 alpha-1,3- mannosyltransferase Novel N 0.002526466843100055 -0.23781303817225669 1.0 9460 -12891 Cpne6 copine VI Novel U 0.002526404858080643 -0.2378136802110501 1.0 9461 -22059 Trp53 transformation related protein 53 Novel U 0.002525117093632189 -0.23782701883287422 1.0 9462 -107733 Mrpl41 mitochondrial ribosomal protein L41 Novel N 0.002524461925948883 -0.23783380503820045 1.0 9463 -19941 Rpl26 ribosomal protein L26 Novel U 0.0025239627220027777 -0.23783897577626376 1.0 9464 -71667 Tmem248 transmembrane protein 248 Novel U 0.0025226742071863093 -0.23785232217037508 1.0 9465 -17523 Mpo myeloperoxidase Novel U 0.0025224115585545403 -0.23785504267626884 1.0 9466 -11628 Aicda activation-induced cytidine deaminase Novel U 0.0025220779914096048 -0.23785849775379064 1.0 9467 -381884 Slc6a16 solute carrier family 6, member 16 Novel U 0.0025215385722251547 -0.23786408503997072 1.0 9468 -16438 Itpr1 inositol 1,4,5-trisphosphate receptor 1 Novel U 0.0025204752139130464 -0.23787509927041156 1.0 9469 -12823 Col19a1 collagen, type XIX, alpha 1 Novel N 0.0025204295341313713 -0.23787557242008847 1.0 9470 -21371 Tbca tubulin cofactor A Novel U 0.0025191641164689165 -0.23788867957463783 1.0 9471 -217837 Itpk1 inositol 1,3,4-triphosphate 5/6 kinase Novel U 0.002518868012067053 -0.23789174661429843 1.0 9472 -13529 Prl8a2 prolactin family 8, subfamily a, member 2 Novel U 0.002518575555662713 -0.23789477586812058 1.0 9473 -68026 Pclaf PCNA clamp associated factor Novel N 0.0025185150079731124 -0.2378954030190991 1.0 9474 -27360 Add3 adducin 3 Novel N 0.0025179625327643035 -0.23790112553915027 1.0 9475 -21415 Tcf7l1 transcription factor 7 like 1 (T cell specific, HMG box) Novel U 0.0025175820694836133 -0.2379050663653046 1.0 9476 -234847 Spg7 SPG7, paraplegin matrix AAA peptidase subunit Novel U 0.002516280248078437 -0.23791855058862432 1.0 9477 -16511 Kcnh2 potassium voltage-gated channel, subfamily H (eag-related), member 2 Novel U 0.002516057189418122 -0.23792086102289522 1.0 9478 -20656 Sod2 superoxide dismutase 2, mitochondrial Novel U 0.0025157089434980676 -0.2379244681426872 1.0 9479 -171226 Vmn1r228 vomeronasal 1 receptor 228 Novel U 0.0025149660070133526 -0.23793216345437315 1.0 9480 -320091 Ano4 anoctamin 4 Novel N 0.002514480969221232 -0.23793718745987918 1.0 9481 -71904 Paqr7 progestin and adipoQ receptor family member VII Novel U 0.0025140263265254247 -0.23794189663397677 1.0 9482 -269941 Chsy1 chondroitin sulfate synthase 1 Novel U 0.0025139241031733647 -0.237942955460097 1.0 9483 -546263 Ssxb15 SSX member B15 Novel U 0.002512432716976122 -0.23795840318930134 1.0 9484 -382045 Adgrg5 adhesion G protein-coupled receptor G5 Novel N 0.0025123451090263297 -0.23795931062956535 1.0 9485 -546801 Etv3l ets variant 3-like Novel U 0.002512095304467323 -0.23796189809697565 1.0 9486 -225895 Taf6l TATA-box binding protein associated factor 6 like Novel U 0.0025110079403913212 -0.23797316097832974 1.0 9487 -237979 Sdk2 sidekick cell adhesion molecule 2 Novel U 0.002510565744094039 -0.23797774123304052 1.0 9488 -15874 Iapp islet amyloid polypeptide Novel U 0.002510537197069183 -0.23797803692218555 1.0 9489 -235542 Ppp2r3a protein phosphatase 2, regulatory subunit B'', alpha Novel U 0.002510152079793681 -0.23798202595426518 1.0 9490 -83997 Slmap sarcolemma associated protein Novel U 0.002509002794237805 -0.23799393021627221 1.0 9491 -67681 Mrpl18 mitochondrial ribosomal protein L18 Novel N 0.0025085460519479264 -0.23799866113789617 1.0 9492 -19167 Psma3 proteasome subunit alpha 3 Novel N 0.002508410090614082 -0.23800006942092264 1.0 9493 -242748 Disp3 dispatched RND transporter family member 3 Novel N 0.002508176160353872 -0.23800249246286784 1.0 9494 -58916 Myot myotilin Novel U 0.0025078571543593734 -0.2380057967164721 1.0 9495 -84585 Rnf123 ring finger protein 123 Novel U 0.0025077984027108194 -0.23800640526411648 1.0 9496 -18772 Pkp1 plakophilin 1 Novel U 0.002507401525037927 -0.23801051611000565 1.0 9497 -237754 Btnl9 butyrophilin-like 9 Novel U 0.002506383526601147 -0.23802106050434893 1.0 9498 -18640 Pfkfb2 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 Novel N 0.002505475236915158 -0.238030468539058 1.0 9499 -228790 Asxl1 ASXL transcriptional regulator 1 Novel U 0.0025046907478273863 -0.2380385942512404 1.0 9500 -11727 Ang angiogenin, ribonuclease, RNase A family, 5 Novel U 0.0025042577397651447 -0.23804307933451477 1.0 9501 -110012 Tpgs1 tubulin polyglutamylase complex subunit 1 Novel U 0.002504221394186886 -0.23804345580081956 1.0 9502 -74747 Ddit4 DNA-damage-inducible transcript 4 Novel N 0.002504191296219709 -0.23804376755457418 1.0 9503 -68316 Apoo apolipoprotein O Novel N 0.002502733834812731 -0.2380588638919162 1.0 9504 -66241 Tmem9 transmembrane protein 9 Novel U 0.0025025117400999317 -0.2380611643416504 1.0 9505 -72307 2510002D24Rik RIKEN cDNA 2510002D24 gene Novel U 0.0025014233350986476 -0.23807243800487426 1.0 9506 -628185 Vmn2r112 vomeronasal 2, receptor 112 Novel U 0.00250073626963053 -0.238079554606407 1.0 9507 -66329 Susd3 sushi domain containing 3 Novel U 0.0024993122716239413 -0.23809430433094783 1.0 9508 -16467 Atcay ataxia, cerebellar, Cayman type Novel N 0.0024980923554907605 -0.23810694018215275 1.0 9509 -78801 Ak7 adenylate kinase 7 Novel N 0.0024977083001378976 -0.23811091821487254 1.0 9510 -229906 Gtf2b general transcription factor IIB Novel U 0.002496953655458176 -0.23811873479965748 1.0 9511 -98303 D630023F18Rik RIKEN cDNA D630023F18 gene Novel U 0.002495738641093856 -0.23813131987850167 1.0 9512 -223527 Eny2 ENY2 transcription and export complex 2 subunit Novel N 0.002495726859435782 -0.2381314419125287 1.0 9513 -216760 Mfap3 microfibrillar-associated protein 3 Novel U 0.0024955052947906726 -0.2381337368718392 1.0 9514 -269695 Rnft2 ring finger protein, transmembrane 2 Novel U 0.0024945061017473892 -0.23814408648053484 1.0 9515 -67286 Ift22 intraflagellar transport 22 Novel U 0.002494397759686272 -0.23814520868404235 1.0 9516 -54426 Hgfac hepatocyte growth factor activator Novel N 0.0024934858411526455 -0.23815465430623595 1.0 9517 -94089 Trim7 tripartite motif-containing 7 Novel N 0.0024933606055477513 -0.23815595149251453 1.0 9518 -70354 Secisbp2l SECIS binding protein 2-like Novel U 0.002490903608103163 -0.2381814009912761 1.0 9519 -232533 Stk38l serine/threonine kinase 38 like Novel N 0.002489774840693781 -0.23819309272699626 1.0 9520 -215031 Vgll2 vestigial like family member 2 Novel U 0.0024895799840829905 -0.23819511104536528 1.0 9521 -434234 Rexo5 RNA exonuclease 5 Novel U 0.0024886840529128847 -0.2382043910709731 1.0 9522 -76252 Atp6v0e2 ATPase, H+ transporting, lysosomal V0 subunit E2 Novel U 0.0024886667339920725 -0.23820457045978552 1.0 9523 -56874 Rnf32 ring finger protein 32 Novel U 0.002487050855623642 -0.2382213076748066 1.0 9524 -102631639 Gm17078 predicted gene 17078 Novel U 0.002486611416502975 -0.23822585937077267 1.0 9525 -210198 Gprc6a G protein-coupled receptor, family C, group 6, member A Novel N 0.0024850659044868655 -0.23824186773342956 1.0 9526 -67451 Pkp2 plakophilin 2 Novel U 0.002484890669199818 -0.23824368281477226 1.0 9527 -59011 Myoz1 myozenin 1 Novel U 0.0024848838100046764 -0.23824375386209004 1.0 9528 -14104 Fasn fatty acid synthase Novel U 0.0024841230906737346 -0.23825163336791266 1.0 9529 -74481 Batf2 basic leucine zipper transcription factor, ATF-like 2 Novel U 0.002483955081096399 -0.23825337360559165 1.0 9530 -66715 Henmt1 HEN1 methyltransferase homolog 1 (Arabidopsis) Novel N 0.0024833835227781142 -0.23825929378786348 1.0 9531 -71947 Tmem94 transmembrane protein 94 Novel U 0.0024832638700965294 -0.238260533146406 1.0 9532 -78304 Naa38 N(alpha)-acetyltransferase 38, NatC auxiliary subunit Novel N 0.002482145648243469 -0.23827211565160042 1.0 9533 -110078 Pygb brain glycogen phosphorylase Novel U 0.0024818449755378024 -0.2382752300096016 1.0 9534 -52882 Rgs7bp regulator of G-protein signalling 7 binding protein Novel U 0.002481560954856558 -0.23827817188648126 1.0 9535 -383548 Serpinb3b serine (or cysteine) peptidase inhibitor, clade B (ovalbumin), member 3B Novel U 0.002480818383458305 -0.23828586341661365 1.0 9536 -72313 Fryl FRY like transcription coactivator Novel U 0.0024798487046824827 -0.23829590731749717 1.0 9537 -13486 Dr1 down-regulator of transcription 1 Novel U 0.0024794768332501217 -0.23829975914956894 1.0 9538 -78249 Adgrf4 adhesion G protein-coupled receptor F4 Novel N 0.002477932704014898 -0.23831575318942688 1.0 9539 -230279 Tmem268 transmembrane protein 268 Novel U 0.0024769598485607125 -0.23832582999424043 1.0 9540 -11807 Apoa2 apolipoprotein A-II Novel U 0.0024767677014918255 -0.23832782024726348 1.0 9541 -18610 Pdyn prodynorphin Novel N 0.002476069338363789 -0.2383350538695862 1.0 9542 -19259 Ptpn5 protein tyrosine phosphatase, non-receptor type 5 Novel N 0.00247585889647271 -0.2383372336197761 1.0 9543 -67781 Ilf2 interleukin enhancer binding factor 2 Novel N 0.0024749268403306815 -0.23834688782665553 1.0 9544 -76614 Immt inner membrane protein, mitochondrial Novel N 0.002474544008189893 -0.23835085318938493 1.0 9545 -108954 Ppp1r15b protein phosphatase 1, regulatory subunit 15B Novel U 0.002474266094758571 -0.2383537318075706 1.0 9546 -17476 Mpeg1 macrophage expressed gene 1 Novel U 0.0024726820444072413 -0.23837013934903684 1.0 9547 -99633 Adgrl2 adhesion G protein-coupled receptor L2 Novel U 0.0024722944953977535 -0.23837415356893712 1.0 9548 -217351 Tnrc6c trinucleotide repeat containing 6C Novel U 0.0024720133366742166 -0.23837706580175294 1.0 9549 -100041530 Gm10409 predicted pseudogene 8348 Novel U 0.0024715397061260895 -0.23838197165140065 1.0 9550 -69668 Ccdc115 coiled-coil domain containing 115 Novel U 0.0024701756664442047 -0.23839610032958525 1.0 9551 -13587 Ear2 eosinophil-associated, ribonuclease A family, member 2 Novel U 0.0024696197895117816 -0.2384018580845778 1.0 9552 -12677 Vsx2 visual system homeobox 2 Novel U 0.002468496155008286 -0.23841349665382755 1.0 9553 -14765 Gpr50 G-protein-coupled receptor 50 Novel N 0.0024657788985614124 -0.23844164190677924 1.0 9554 -229672 Bcl2l15 BCLl2-like 15 Novel U 0.0024656221018789417 -0.23844326600166188 1.0 9555 -241516 Fsip2 fibrous sheath-interacting protein 2 Novel U 0.00246543326020239 -0.23844522201753976 1.0 9556 -18451 P4ha1 procollagen-proline, 2-oxoglutarate 4-dioxygenase (proline 4-hydroxylase), alpha 1 polypeptide Novel U 0.0024654291500055717 -0.23844526459082327 1.0 9557 -20924 Supt5 suppressor of Ty 5, DSIF elongation factor subunit Novel U 0.002465134266395986 -0.2384483189855576 1.0 9558 -246728 Oas2 2'-5' oligoadenylate synthetase 2 Novel U 0.002464715989023652 -0.2384526514888301 1.0 9559 -16325 Inhbc inhibin beta-C Novel U 0.0024642049569152365 -0.2384579447426098 1.0 9560 -212167 Gsap gamma-secretase activating protein Novel N 0.0024622252547052727 -0.2384784504330214 1.0 9561 -81017 Vmn1r63 vomeronasal 1 receptor 63 Novel U 0.0024590288484642626 -0.23851155870378957 1.0 9562 -432736 Vmn1r209 vomeronasal 1 receptor 209 Novel U 0.0024583256052920018 -0.23851884287345 1.0 9563 -13527 Dtna dystrobrevin alpha Novel U 0.0024582487827910903 -0.23851963859838904 1.0 9564 -66427 Cyb5b cytochrome b5 type B Novel N 0.0024580958564472304 -0.23852122260443154 1.0 9565 -69692 Hddc2 HD domain containing 2 Novel U 0.002457503095174321 -0.23852736240621036 1.0 9566 -56094 Cts8 cathepsin 8 Novel U 0.0024574398099217907 -0.23852801791277567 1.0 9567 -77018 Col25a1 collagen, type XXV, alpha 1 Novel U 0.0024573993364700713 -0.2385284371354581 1.0 9568 -224481 Tfb1m transcription factor B1, mitochondrial Novel N 0.002456764724503133 -0.23853501042534989 1.0 9569 -69821 Mterf4 mitochondrial transcription termination factor 4 Novel U 0.0024567198422443567 -0.23853547531431088 1.0 9570 -67819 Derl1 Der1-like domain family, member 1 Novel U 0.0024564704259816723 -0.23853805875976064 1.0 9571 -243961 Shank1 SH3 and multiple ankyrin repeat domains 1 Novel N 0.0024557961338268447 -0.23854504305573418 1.0 9572 -18209 Ntn3 netrin 3 Novel U 0.0024552022673908053 -0.23855119430475638 1.0 9573 -67122 Nrarp Notch-regulated ankyrin repeat protein Novel U 0.00245437463294461 -0.23855976691514305 1.0 9574 -100039499 Vmn1r187 vomeronasal 1 receptor Vmn1r187 Novel U 0.002454177702502319 -0.23856180671419056 1.0 9575 -13646 Klk1b22 kallikrein 1-related peptidase b22 Novel U 0.0024541546694789914 -0.23856204528948904 1.0 9576 -171261 Vmn1r87 vomeronasal 1 receptor 87 Novel U 0.002452785770437619 -0.23857622430075942 1.0 9577 -16521 Kcnj5 potassium inwardly-rectifying channel, subfamily J, member 5 Novel U 0.0024519329371153246 -0.23858505792027637 1.0 9578 -20704 Serpina1e serine (or cysteine) peptidase inhibitor, clade A, member 1E Novel U 0.002451529882916421 -0.23858923274241892 1.0 9579 -231201 Semp2l2a SUMO/sentrin specific peptidase 2-like 2A Novel U 0.0024508178453870465 -0.2385966080037412 1.0 9580 -22072 Prss2 serine protease 2 Novel U 0.002449895385364509 -0.23860616281433042 1.0 9581 -216152 Plppr3 phospholipid phosphatase related 3 Novel U 0.0024497582986878746 -0.2386075827536205 1.0 9582 -667444 Vmn1r139 vomeronasal 1 receptor 139 Novel U 0.0024495427307217894 -0.23860981559952676 1.0 9583 -97387 Strn4 striatin, calmodulin binding protein 4 Novel U 0.0024483825513338443 -0.23862183269948828 1.0 9584 -171230 Vmn1r231 vomeronasal 1 receptor 231 Novel U 0.002448179222566858 -0.23862393877217264 1.0 9585 -320571 Atp8b5 ATPase, class I, type 8B, member 5 Novel U 0.0024466415535280483 -0.2386398658975285 1.0 9586 -546519 Tmem235 transmembrane protein 235 Novel U 0.002446019541825259 -0.23864630867429845 1.0 9587 -77590 Chst15 carbohydrate sulfotransferase 15 Novel N 0.0024459929600408876 -0.23864658400754715 1.0 9588 -13608 Edar ectodysplasin-A receptor Novel U 0.0024451504258902316 -0.2386553109485828 1.0 9589 -545662 Pramel17 PRAME like 17 Novel U 0.0024449891744144797 -0.2386569811860678 1.0 9590 -85305 Kars1 lysyl-tRNA synthetase 1 Novel U 0.002444131043116394 -0.23866586968184383 1.0 9591 -319552 Spx spexin hormone Novel N 0.0024440622751631205 -0.2386665819780432 1.0 9592 -56282 Mrpl12 mitochondrial ribosomal protein L12 Novel N 0.0024437650743049048 -0.23866966037476264 1.0 9593 -258840 Or8h7 olfactory receptor family 8 subfamily H member 7 Novel U 0.0024429814675310042 -0.23867777694796705 1.0 9594 -330959 Snapc5 small nuclear RNA activating complex, polypeptide 5 Novel N 0.0024403719506958296 -0.23870480623756254 1.0 9595 -330323 Mindy4 MINDY lysine 48 deubiquitinase 4 Novel U 0.0024391735792597103 -0.23871721892950354 1.0 9596 -277414 Trp53i11 transformation related protein 53 inducible protein 11 Novel N 0.002439170060587572 -0.23871725537579386 1.0 9597 -209032 Zc3hav1l zinc finger CCCH-type, antiviral 1-like Novel U 0.0024378076881281944 -0.23873136678494253 1.0 9598 -58248 1700123O20Rik RIKEN cDNA 1700123O20 gene Novel U 0.0024371252309117785 -0.23873843565435557 1.0 9599 -230766 Fam167b family with sequence similarity 167, member B Novel U 0.0024368001027332206 -0.23874180332134107 1.0 9600 -100503240 Trpc5os transient receptor potential cation channel, subfamily C, member 5, opposite strand Novel U 0.0024364848925390167 -0.23874506825817063 1.0 9601 -24061 Smc1a structural maintenance of chromosomes 1A Novel U 0.002436099307737666 -0.23874906213286762 1.0 9602 -235283 Gramd1b GRAM domain containing 1B Novel U 0.002436046620713763 -0.23874960786332922 1.0 9603 -15284 Hlx H2.0-like homeobox Novel N 0.0024351889160682495 -0.2387584919398519 1.0 9604 -19221 Ptgfrn prostaglandin F2 receptor negative regulator Novel U 0.002433668312046338 -0.23877424230632374 1.0 9605 -236920 Stard8 StAR related lipid transfer domain containing 8 Novel U 0.0024331774514253033 -0.2387793266245002 1.0 9606 -69010 Anapc13 anaphase promoting complex subunit 13 Novel U 0.0024330733962771435 -0.23878040442430423 1.0 9607 -75786 Ckap5 cytoskeleton associated protein 5 Novel U 0.0024322791243963134 -0.2387886314663356 1.0 9608 -58212 Srrm3 serine/arginine repetitive matrix 3 Novel U 0.002431960780481791 -0.2387919288621372 1.0 9609 -14043 Ext2 exostosin glycosyltransferase 2 Novel U 0.0024308559883017768 -0.2388033722632197 1.0 9610 -30954 Siva1 SIVA1, apoptosis-inducing factor Novel U 0.0024307361730862434 -0.23880461330528352 1.0 9611 -71910 Plpp5 phospholipid phosphatase 5 Novel N 0.002430735030837374 -0.23880462513665973 1.0 9612 -192232 Hps4 HPS4, biogenesis of lysosomal organelles complex 3 subunit 2 Novel U 0.0024307224744638646 -0.23880475519516378 1.0 9613 -94088 Trim6 tripartite motif-containing 6 Novel U 0.0024298567606078165 -0.23881372223082592 1.0 9614 -101056084 Cirop ciliated left-right organizer metallopeptidase Novel N 0.002429828003530097 -0.23881402009569158 1.0 9615 -108062 Cstf2 cleavage stimulation factor, 3' pre-RNA subunit 2 Novel U 0.00242959583760652 -0.23881642486269597 1.0 9616 -12590 Cdx1 caudal type homeobox 1 Novel N 0.002428021432307774 -0.23883273250102457 1.0 9617 -17719 ND4 NADH dehydrogenase subunit 4 Novel N 0.0024268160534289414 -0.23884521777582685 1.0 9618 -667464 Vmn1r142 vomeronasal 1 receptor 142 Novel U 0.0024265983735549915 -0.23884747249680538 1.0 9619 -433375 Creg1 cellular repressor of E1A-stimulated genes 1 Novel N 0.00242603620656773 -0.23885329540397918 1.0 9620 -214063 Dnajc16 DnaJ heat shock protein family (Hsp40) member C16 Novel U 0.002425624640246095 -0.23885755839440914 1.0 9621 -327762 Dna2 DNA replication helicase/nuclease 2 Novel U 0.0024232397925302886 -0.23888226056865183 1.0 9622 -57296 Psmd8 proteasome (prosome, macropain) 26S subunit, non-ATPase, 8 Novel U 0.002421220022144477 -0.2389031812839117 1.0 9623 -69875 Ndufa11 NADH:ubiquinone oxidoreductase subunit A11 Novel N 0.002420689321669373 -0.238908678261987 1.0 9624 -104112 Acly ATP citrate lyase Novel N 0.0024205573793751284 -0.2389100449159334 1.0 9625 -13437 Dnpep aspartyl aminopeptidase Novel N 0.0024191542063932876 -0.2389245789355525 1.0 9626 -72552 Hsdl1 hydroxysteroid dehydrogenase like 1 Novel U 0.0024187802478919697 -0.2389284523854159 1.0 9627 -20276 Scnn1a sodium channel, nonvoltage-gated 1 alpha Novel U 0.0024187687999560254 -0.23892857096276007 1.0 9628 -23980 Pebp1 phosphatidylethanolamine binding protein 1 Novel U 0.002418540017159236 -0.2389309406874484 1.0 9629 -20815 Srpk1 serine/arginine-rich protein specific kinase 1 Novel U 0.002418142780005541 -0.23893505525682793 1.0 9630 -17988 Ndrg1 N-myc downstream regulated gene 1 Novel N 0.002417934330102502 -0.23893721437407117 1.0 9631 -76131 Depdc1a DEP domain containing 1a Novel N 0.0024172084329723144 -0.23894473319268308 1.0 9632 -106347 Ildr1 immunoglobulin-like domain containing receptor 1 Novel N 0.002416489873536964 -0.23895217600769308 1.0 9633 -16328 Cep250 centrosomal protein 250 Novel U 0.0024161911165888166 -0.23895527052234086 1.0 9634 -12941 Pcdha5 protocadherin alpha 5 Novel U 0.002416041520717241 -0.23895682003146096 1.0 9635 -84112 Sucnr1 succinate receptor 1 Novel N 0.002415405557252717 -0.23896340732012034 1.0 9636 -243979 Mrgprb2 MAS-related GPR, member B2 Novel U 0.0024144429668189623 -0.2389733778001897 1.0 9637 -12121 Bicd1 BICD cargo adaptor 1 Novel U 0.002414402023112877 -0.2389738018937514 1.0 9638 -12142 Prdm1 PR domain containing 1, with ZNF domain Novel N 0.0024133264779569504 -0.23898494235511983 1.0 9639 -207215 Fbxo40 F-box protein 40 Novel U 0.0024111946017925396 -0.2390070242583491 1.0 9640 -70993 Prss54 serine protease 54 Novel U 0.002411148293212345 -0.23900750392110048 1.0 9641 -67939 Prorsd1 prolyl-tRNA synthetase domain containing 1 Novel U 0.0024108458499161136 -0.23901063661882055 1.0 9642 -76580 Mib2 mindbomb E3 ubiquitin protein ligase 2 Novel N 0.002410204739049358 -0.23901727722410301 1.0 9643 -12467 Cct6b chaperonin containing TCP1 subunit 6B Novel U 0.0024097669095139605 -0.23902181224803778 1.0 9644 -240322 Adamts19 ADAM metallopeptidase with thrombospondin type 1 motif 19 Novel U 0.002409373536836772 -0.23902588678929668 1.0 9645 -78920 Dlst dihydrolipoamide S-succinyltransferase Novel U 0.0024084180941759577 -0.23903578323296892 1.0 9646 -239134 Gucy1b2 guanylate cyclase 1, soluble, beta 2 Novel U 0.0024076911751870125 -0.23904331263596026 1.0 9647 -23959 Nt5e 5' nucleotidase, ecto Novel N 0.0024070630019482667 -0.2390498192337171 1.0 9648 -271697 Cdk15 cyclin dependent kinase 15 Novel U 0.0024055289761115233 -0.2390657086229057 1.0 9649 -230459 Cyp2j13 cytochrome P450, family 2, subfamily j, polypeptide 13 Novel U 0.0024052940789185007 -0.23906814168030915 1.0 9650 -171256 Vmn1r218 vomeronasal 1 receptor 218 Novel U 0.002404614664519803 -0.23907517903231634 1.0 9651 -12442 Ccnb2 cyclin B2 Novel U 0.0024016673930654423 -0.2391057067731543 1.0 9652 -15382 Hnrnpa1 heterogeneous nuclear ribonucleoprotein A1 Novel U 0.002401262437155273 -0.23910990129315962 1.0 9653 -66790 Grtp1 GH regulated TBC protein 1 Novel U 0.0024011417021214602 -0.2391111518626709 1.0 9654 -279028 Adamts13 ADAM metallopeptidase with thrombospondin type 1 motif 13 Novel U 0.002400929213365756 -0.2391133528142173 1.0 9655 -622474 Smok3b sperm motility kinase 3B Novel U 0.002400488713548906 -0.23911791549683956 1.0 9656 -212728 Tarbp1 TAR RNA binding protein 1 Novel N 0.0023999154918261725 -0.2391238529086 1.0 9657 -16534 Kcnn4 potassium intermediate/small conductance calcium-activated channel, subfamily N, member 4 Novel U 0.002399802811410531 -0.23912502004864103 1.0 9658 -21826 Thbs2 thrombospondin 2 Novel U 0.002397469892021688 -0.23914918435098007 1.0 9659 -192159 Prpf8 pre-mRNA processing factor 8 Novel N 0.0023974195647347572 -0.2391497056393637 1.0 9660 -252838 Tox thymocyte selection-associated high mobility group box Novel N 0.0023972888429837492 -0.2391510596509634 1.0 9661 -113855 Vmn1r40 vomeronasal 1 receptor 40 Novel U 0.002397287787217419 -0.23915107058655635 1.0 9662 -11951 Atp5mc1 ATP synthase membrane subunit c locus 1 Novel U 0.002396736468829371 -0.23915678112429611 1.0 9663 -22385 Baz1b bromodomain adjacent to zinc finger domain, 1B Novel U 0.0023967064537157505 -0.2391570920198563 1.0 9664 -76582 Ipo11 importin 11 Novel U 0.0023965306208146757 -0.23915891329126546 1.0 9665 -74691 Tdrd9 tudor domain containing 9 Novel N 0.0023951719794946015 -0.23917298605339585 1.0 9666 -67705 Stmp1 short transmembrane mitochondrial protein 1 Novel N 0.002394681004910945 -0.23917807155199342 1.0 9667 -240255 Ythdc2 YTH domain containing 2 Novel U 0.002394087708796477 -0.23918421689364355 1.0 9668 -329252 Lgr6 leucine-rich repeat-containing G protein-coupled receptor 6 Novel U 0.0023939281976501007 -0.23918586910485404 1.0 9669 -70951 Spata1 spermatogenesis associated 1 Novel U 0.0023934674908054196 -0.23919064109120633 1.0 9670 -66177 Ubl5 ubiquitin-like 5 Novel U 0.0023933145680869535 -0.23919222505969714 1.0 9671 -224613 Flywch1 FLYWCH-type zinc finger 1 Novel N 0.0023924226733284468 -0.2392014632762863 1.0 9672 -215193 Utp25 UTP25 small subunit processome component Novel N 0.002392093102934054 -0.23920487695559736 1.0 9673 -74122 Tmem43 transmembrane protein 43 Novel U 0.0023917235796276316 -0.23920870446585787 1.0 9674 -14009 Etv1 ets variant 1 Novel N 0.0023915064121463234 -0.2392109538794903 1.0 9675 -66409 Rsl1d1 ribosomal L1 domain containing 1 Novel N 0.0023912851365905097 -0.23921324584442336 1.0 9676 -12181 Bop1 block of proliferation 1 Novel N 0.0023899853906024144 -0.23922670857064118 1.0 9677 -52563 Cdc23 CDC23 cell division cycle 23 Novel U 0.0023897978806029308 -0.23922865079305178 1.0 9678 -217674 Gphb5 glycoprotein hormone beta 5 Novel N 0.0023892466307258125 -0.2392343606211576 1.0 9679 -11983 Atp5if1 ATP synthase inhibitory factor subunit 1 Novel U 0.002389135701929141 -0.23923550961798695 1.0 9680 -216560 Wdpcp WD repeat containing planar cell polarity effector Novel N 0.0023865960085696233 -0.23926181567831692 1.0 9681 -76626 Msi2 musashi RNA-binding protein 2 Novel U 0.0023861328784261786 -0.23926661276511813 1.0 9682 -13001 Csnk2b casein kinase 2, beta polypeptide Novel U 0.002386130295326552 -0.23926663952077915 1.0 9683 -20202 S100a9 S100 calcium binding protein A9 (calgranulin B) Novel U 0.002385222110218788 -0.23927604647227038 1.0 9684 -115489547 Zfp1010 zinc finger protein 1010 Novel U 0.0023846996169167712 -0.23928145844071663 1.0 9685 -27267 Cars1 cysteinyl-tRNA synthetase 1 Novel U 0.002383281274637886 -0.23929614958341583 1.0 9686 -329278 Tnn tenascin N Novel U 0.002383104842876101 -0.2392979770578045 1.0 9687 -72747 Ttc39c tetratricopeptide repeat domain 39C Novel U 0.0023815901827368815 -0.23931366585773478 1.0 9688 -66229 Rpl7l1 ribosomal protein L7-like 1 Novel U 0.002381406102120386 -0.2393155725587091 1.0 9689 -257932 Or2av9 olfactory receptor family 2 subfamily AV member 9 Novel U 0.0023793325432113262 -0.2393370504137246 1.0 9690 -320506 Lmbrd2 LMBR1 domain containing 2 Novel U 0.0023783018991432926 -0.23934772579110067 1.0 9691 -66161 Pop4 processing of precursor 4, ribonuclease P/MRP family, (S. cerevisiae) Novel N 0.002378242890850593 -0.23934833699705665 1.0 9692 -665700 Hmcn2 hemicentin 2 Novel U 0.0023780411959734506 -0.23935042614596375 1.0 9693 -108168614 Gm20812 predicted gene, 20812 Novel U 0.0023771356898352647 -0.23935980534877618 1.0 9694 -57741 Noc2l NOC2 like nucleolar associated transcriptional repressor Novel U 0.0023767776347492285 -0.2393635140715869 1.0 9695 -14793 Cdca3 cell division cycle associated 3 Novel U 0.002376498709776754 -0.23936640316728264 1.0 9696 -100042964 Vmn1r243 vomeronasal 1 receptor 243 Novel U 0.0023754764387046968 -0.23937699181744165 1.0 9697 -22658 Pcgf2 polycomb group ring finger 2 Novel U 0.0023743932438153627 -0.23938821151449727 1.0 9698 -107581 Col16a1 collagen, type XVI, alpha 1 Novel U 0.0023738501270961086 -0.23939383709962128 1.0 9699 -16993 Lta4h leukotriene A4 hydrolase Novel N 0.0023737102206729914 -0.23939528624575276 1.0 9700 -20249 Scd1 stearoyl-Coenzyme A desaturase 1 Novel U 0.00237228153199382 -0.239410084556126 1.0 9701 -19064 Ppy pancreatic polypeptide Novel U 0.002369983641332343 -0.23943388603205848 1.0 9702 -230872 Crocc ciliary rootlet coiled-coil, rootletin Novel U 0.002369467772829671 -0.23943922938105092 1.0 9703 -72658 2700097O09Rik RIKEN cDNA 2700097O09 gene Novel U 0.0023691936096625985 -0.2394420691541228 1.0 9704 -235402 Lingo1 leucine rich repeat and Ig domain containing 1 Novel U 0.0023679275718771165 -0.2394551827318861 1.0 9705 -66958 Tmx2 thioredoxin-related transmembrane protein 2 Novel N 0.002367781258222924 -0.23945669824390642 1.0 9706 -12053 Bcl6 B cell leukemia/lymphoma 6 Novel U 0.002367129911093121 -0.23946344487606505 1.0 9707 -22178 Tyrp1 tyrosinase-related protein 1 Novel N 0.0023668392387301124 -0.23946645565084576 1.0 9708 -66989 Kctd20 potassium channel tetramerisation domain containing 20 Novel U 0.002366091490422959 -0.2394742008032303 1.0 9709 -218914 Wapl WAPL cohesin release factor Novel U 0.002365785686014502 -0.23947736831524036 1.0 9710 -171273 Vmn1r217 vomeronasal 1 receptor 217 Novel U 0.002364359814666964 -0.23949213744378514 1.0 9711 -433759 Hdac1 histone deacetylase 1 Novel U 0.002364243878617062 -0.23949333830557884 1.0 9712 -12995 Csnk2a1 casein kinase 2, alpha 1 polypeptide Novel U 0.0023632804206771625 -0.23950331777124836 1.0 9713 -66394 Nosip nitric oxide synthase interacting protein Novel N 0.002362713529071686 -0.23950918961586234 1.0 9714 -227613 Tubb4b tubulin, beta 4B class IVB Novel N 0.0023620447270538934 -0.23951611704517692 1.0 9715 -14421 B4galnt1 beta-1,4-N-acetyl-galactosaminyl transferase 1 Novel N 0.002360904937070402 -0.23952792295235736 1.0 9716 -269784 Cntn4 contactin 4 Novel N 0.002360480965182834 -0.23953231443923145 1.0 9717 -239037 Lrit1 leucine-rich repeat, immunoglobulin-like and transmembrane domains 1 Novel U 0.0023602025663081332 -0.23953519808562374 1.0 9718 -20922 Supt4a SPT4A, DSIF elongation factor subunit Novel N 0.0023599122562150843 -0.2395382051080241 1.0 9719 -104082 Wdr7 WD repeat domain 7 Novel U 0.0023591273677457543 -0.23954633495698763 1.0 9720 -75462 Cimip3 ciliary microtubule inner protein 3 Novel U 0.0023579154697012726 -0.23955888775709336 1.0 9721 -546294 Rhox3g reproductive homeobox 3G Novel U 0.0023578037846053715 -0.23956004458764524 1.0 9722 -19943 Rpl28 ribosomal protein L28 Novel N 0.002357676644226866 -0.2395613615035063 1.0 9723 -11801 Cd5l CD5 antigen-like Novel U 0.00235718525674812 -0.23956645127885765 1.0 9724 -59308 Emcn endomucin Novel U 0.002357143994647192 -0.23956687867034263 1.0 9725 -68828 Sync syncoilin Novel U 0.002356856480960194 -0.23956985672766107 1.0 9726 -73412 Nme8 NME/NM23 family member 8 Novel N 0.0023555856225760037 -0.23958302023702727 1.0 9727 -76800 Usp42 ubiquitin specific peptidase 42 Novel N 0.0023554613242385285 -0.23958430771512076 1.0 9728 -100340 Smpdl3b sphingomyelin phosphodiesterase, acid-like 3B Novel U 0.0023553598420241015 -0.23958535886456175 1.0 9729 -73487 1700084M14Rik Gm5941 pseudogene Novel U 0.002354852799688825 -0.23959061079240246 1.0 9730 -272009 Srsf12 serine and arginine-rich splicing factor 12 Novel N 0.0023535533245410334 -0.2396040707132653 1.0 9731 -72722 Fam98a family with sequence similarity 98, member A Novel N 0.0023534359042418733 -0.23960528694886404 1.0 9732 -381819 A630073D07Rik RIKEN cDNA A630073D07 gene Novel U 0.0023531013067943332 -0.23960875269822635 1.0 9733 -66180 P3h4 prolyl 3-hydroxylase family member 4 (non-enzymatic) Novel U 0.002352537397890908 -0.2396145936481105 1.0 9734 -109754 Cyb5r3 cytochrome b5 reductase 3 Novel N 0.0023513586999350847 -0.23962680256278934 1.0 9735 -225030 Kcng3 potassium voltage-gated channel, subfamily G, member 3 Novel N 0.0023506676925010824 -0.23963395999507509 1.0 9736 -271981 Tbck TBC1 domain containing kinase Novel U 0.0023503377228649997 -0.23963737780971844 1.0 9737 -242662 Rims3 regulating synaptic membrane exocytosis 3 Novel U 0.002347969956468053 -0.23966190305622193 1.0 9738 -52132 Ccdc97 coiled-coil domain containing 97 Novel U 0.002345847450353969 -0.239683887904778 1.0 9739 -269643 Ppp2r2c protein phosphatase 2, regulatory subunit B, gamma Novel U 0.0023456931069396076 -0.23968548658879013 1.0 9740 -100040981 Pramel36 PRAME like 36 Novel U 0.0023440916901988065 -0.2397020740107476 1.0 9741 -380773 Slirp SRA stem-loop interacting RNA binding protein Novel U 0.002343678169926891 -0.2397063572401304 1.0 9742 -78923 Chsy3 chondroitin sulfate synthase 3 Novel N 0.00234332242993824 -0.2397100419832385 1.0 9743 -18633 Pex16 peroxisomal biogenesis factor 16 Novel U 0.002342398897760824 -0.2397196078991727 1.0 9744 -667199 Vmn1r128 vomeronasal 1 receptor 128 Novel U 0.002342223828195827 -0.23972142126397186 1.0 9745 -67738 Ppid peptidylprolyl isomerase D (cyclophilin D) Novel U 0.002341716468188238 -0.23972667648225188 1.0 9746 -234404 Nxnl1 nucleoredoxin-like 1 Novel N 0.0023416089609420094 -0.2397277900387742 1.0 9747 -12785 Cnbp cellular nucleic acid binding protein Novel U 0.0023411845966113823 -0.23973218559056061 1.0 9748 -330474 Zc3h4 zinc finger CCCH-type containing 4 Novel N 0.0023411744911003025 -0.23973229026311216 1.0 9749 -231162 Cytl1 cytokine-like 1 Novel N 0.002341062950136389 -0.2397334456007497 1.0 9750 -170762 Nup155 nucleoporin 155 Novel U 0.002340726584864421 -0.2397369296611793 1.0 9751 -12338 Capn6 calpain 6 Novel U 0.0023405423774351002 -0.23973883767567672 1.0 9752 -258803 Or2n1d olfactory receptor family 2 subfamily N member 1D Novel U 0.0023402285741164737 -0.23974208804013533 1.0 9753 -667599 Vmn1r260 vomeronasal 1 receptor 260 Novel U 0.002339183797634399 -0.2397529098005915 1.0 9754 -66826 Tafazzin tafazzin, phospholipid-lysophospholipid transacylase Novel U 0.0023385805418946735 -0.23975915830371258 1.0 9755 -27404 Abca8b ATP-binding cassette, sub-family A member 8b Novel U 0.0023377552596893065 -0.23976770654966612 1.0 9756 -70445 Cd248 CD248 antigen, endosialin Novel U 0.002337624127447347 -0.23976906481311755 1.0 9757 -67292 Pigc phosphatidylinositol glycan anchor biosynthesis, class C Novel U 0.002335481536042282 -0.2397912577044573 1.0 9758 -63985 Gmfb glia maturation factor, beta Novel N 0.0023350838848165295 -0.23979537656278158 1.0 9759 -12622 Cer1 cerberus 1, DAN family BMP antagonist Novel U 0.0023337352499323383 -0.23980934567857806 1.0 9760 -67655 Ctdp1 CTD phosphatase subunit 1 Novel U 0.002333498944617852 -0.2398117933212574 1.0 9761 -107934 Celsr3 cadherin, EGF LAG seven-pass G-type receptor 3 Novel U 0.0023325039430412906 -0.2398220995148785 1.0 9762 -64435 Fcamr Fc receptor, IgA, IgM, high affinity Novel U 0.002332300339422303 -0.2398242084344709 1.0 9763 -105638 Dph3 diphthamine biosynthesis 3 Novel U 0.0023318030338332577 -0.23982935950941414 1.0 9764 -70645 Oip5 Opa interacting protein 5 Novel U 0.0023292427205045133 -0.23985587915070755 1.0 9765 -71099 Tssk4 testis-specific serine kinase 4 Novel U 0.00232875627903795 -0.23986091769542728 1.0 9766 -233805 Dcun1d3 defective in cullin neddylation 1 domain containing 3 Novel U 0.002328219095916585 -0.23986648182053946 1.0 9767 -71995 Erv3 endogenous retroviral sequence 3 Novel U 0.002327993556280848 -0.2398688179526722 1.0 9768 -270118 Maml2 mastermind like transcriptional coactivator 2 Novel N 0.002327887628831936 -0.23986991514570585 1.0 9769 -74365 Lonrf3 LON peptidase N-terminal domain and ring finger 3 Novel U 0.002327373866953008 -0.23987523667435878 1.0 9770 -106248 Qtrt2 queuine tRNA-ribosyltransferase accessory subunit 2 Novel N 0.002327349893150836 -0.23987548499421354 1.0 9771 -12009 Cep131 centrosomal protein 131 Novel U 0.0023245230614509023 -0.2399047652240344 1.0 9772 -227632 Kcnt1 potassium channel, subfamily T, member 1 Novel N 0.0023244317546579443 -0.2399057109767943 1.0 9773 -18081 Ninj1 ninjurin 1 Novel U 0.0023235667053731115 -0.23991467112884965 1.0 9774 -80893 Tmprss5 transmembrane protease, serine 5 (spinesin) Novel N 0.0023221833202750064 -0.2399290001862195 1.0 9775 -623781 Gm14137 predicted gene 14137 Novel U 0.002321565290655005 -0.23993540171670683 1.0 9776 -22153 Tubb4a tubulin, beta 4A class IVA Novel U 0.0023198828459908916 -0.23995282842323035 1.0 9777 -67952 Tomm20 translocase of outer mitochondrial membrane 20 Novel U 0.002319434193216581 -0.23995747555391797 1.0 9778 -21367 Cntn2 contactin 2 Novel U 0.002318801151161873 -0.23996403258271048 1.0 9779 -102093 Phkb phosphorylase kinase beta Novel U 0.0023185395646896953 -0.2399667420867901 1.0 9780 -100042465 Gm3858 predicted gene 3858 Novel U 0.0023182325489879293 -0.23996992214533644 1.0 9781 -12555 Cdh15 cadherin 15 Novel N 0.002317311924726573 -0.23997945794117168 1.0 9782 -16775 Lama4 laminin, alpha 4 Novel N 0.0023167370704339973 -0.23998541226303682 1.0 9783 -225289 AW554918 expressed sequence AW554918 Novel U 0.0023161590785654783 -0.23999139908381048 1.0 9784 -105988 Espl1 extra spindle pole bodies 1, separase Novel U 0.002315269763455496 -0.24000061058048505 1.0 9785 -329003 Zfp516 zinc finger protein 516 Novel U 0.002314237880480685 -0.2400112987904168 1.0 9786 -58869 Pex5l peroxisomal biogenesis factor 5-like Novel U 0.00231380847930796 -0.2400157465136481 1.0 9787 -72615 Anks3 ankyrin repeat and sterile alpha motif domain containing 3 Novel U 0.0023128316069144176 -0.24002586492578742 1.0 9788 -70325 Pigw phosphatidylinositol glycan anchor biosynthesis, class W Novel U 0.002312608396590615 -0.24002817693098374 1.0 9789 -14038 Wfdc18 WAP four-disulfide core domain 18 Novel U 0.0023125244421719673 -0.24002904652809226 1.0 9790 -223601 Cyrib CYFIP related Rac1 interactor B Novel U 0.0023119088026107757 -0.24003542330242902 1.0 9791 -78977 Popdc3 popeye domain containing 3 Novel N 0.00231153301938933 -0.24003931565268352 1.0 9792 -57426 Scgb1b2 secretoglobin, family 1B, member 2 Novel U 0.0023107617157764313 -0.24004730479015068 1.0 9793 -71088 4933412E24Rik RIKEN cDNA 4933412E24 gene Novel U 0.0023106023441370476 -0.2400489555563524 1.0 9794 -71908 Cldn23 claudin 23 Novel U 0.002310162543341902 -0.24005351099853084 1.0 9795 -77697 Mmab methylmalonic aciduria (cobalamin deficiency) cblB type homolog (human) Novel U 0.002309702379503946 -0.2400582773604373 1.0 9796 -320311 Rnf152 ring finger protein 152 Novel U 0.002309612357579748 -0.24005920980456882 1.0 9797 -100042175 Gm10230 predicted gene 10230 Novel U 0.002308839251105797 -0.24006721761601152 1.0 9798 -17161 Maoa monoamine oxidase A Novel U 0.0023078573211229815 -0.2400773884144943 1.0 9799 -13807 Eno2 enolase 2, gamma neuronal Novel N 0.002307760438438271 -0.24007839192215769 1.0 9800 -12449 Ccnf cyclin F Novel U 0.002306915833816893 -0.24008714030906103 1.0 9801 -17308 Mgat1 mannoside acetylglucosaminyltransferase 1 Novel U 0.0023067222994215936 -0.24008914493196545 1.0 9802 -16008 Igfbp2 insulin-like growth factor binding protein 2 Novel U 0.002306707706772577 -0.24008929608214427 1.0 9803 -329002 Zfp236 zinc finger protein 236 Novel U 0.00230642800389481 -0.2400921932353574 1.0 9804 -241627 Wdr76 WD repeat domain 76 Novel N 0.002306175503403516 -0.24009480862714574 1.0 9805 -226250 Afap1l2 actin filament associated protein 1-like 2 Novel U 0.002305429146278081 -0.24010253936971584 1.0 9806 -625480 Ssxb14 SSX member B14 Novel U 0.0023052903226313693 -0.24010397730048488 1.0 9807 -240168 Rasgrp3 RAS, guanyl releasing protein 3 Novel N 0.0023048257420525734 -0.24010878941084782 1.0 9808 -665095 Cyp2j8 cytochrome P450, family 2, subfamily j, polypeptide 8 Novel U 0.0023021711855341293 -0.240136285220002 1.0 9809 -67038 Ly6m lymphocyte antigen 6 family member M Novel U 0.0023019684462060363 -0.2401383851872977 1.0 9810 -15412 Hoxb4 homeobox B4 Novel N 0.0023011611187482173 -0.2401467474585663 1.0 9811 -53857 Tuba8 tubulin, alpha 8 Novel N 0.0022999089679189844 -0.24015971719569326 1.0 9812 -100041586 Dynlt2a3 dynein light chain Tctex-type 2A3 Novel U 0.002297236964206789 -0.2401873937223068 1.0 9813 -210801 Unc5d unc-5 netrin receptor D Novel N 0.0022970228856050144 -0.2401896111414265 1.0 9814 -218442 Serinc5 serine incorporator 5 Novel N 0.0022963334462926433 -0.24019675233115997 1.0 9815 -320534 Tmem104 transmembrane protein 104 Novel U 0.002296232195986478 -0.24019780107850278 1.0 9816 -19821 Rnf2 ring finger protein 2 Novel U 0.0022954909266622273 -0.2402054791217955 1.0 9817 -100043051 Vmn1r149 vomeronasal 1 receptor 149 Novel U 0.002295137534297604 -0.24020913954829107 1.0 9818 -14714 Gnrh1 gonadotropin releasing hormone 1 Novel N 0.0022945209389288496 -0.24021552622285117 1.0 9819 -22143 Tuba1b tubulin, alpha 1B Novel U 0.0022943289598775585 -0.24021751473555347 1.0 9820 -64144 Mllt1 myeloid/lymphoid or mixed-lineage leukemia; translocated to, 1 Novel U 0.0022925650258797834 -0.2402357855059162 1.0 9821 -22259 Nr1h3 nuclear receptor subfamily 1, group H, member 3 Novel U 0.0022923573222005957 -0.24023793689379738 1.0 9822 -258755 Or52e15 olfactory receptor family 52 subfamily E member 15 Novel U 0.0022919441806688976 -0.2402422162002014 1.0 9823 -100038949 Gm1979 predicted gene 1979 Novel U 0.002288069415862075 -0.24028235088669445 1.0 9824 -13164 Dazl deleted in azoospermia-like Novel N 0.002287909846037423 -0.2402840037056926 1.0 9825 -75406 Ndufs7 NADH:ubiquinone oxidoreductase core subunit S7 Novel N 0.00228781159995331 -0.24028502133540217 1.0 9826 -171191 Vmn1r24 vomeronasal 1 receptor 24 Novel U 0.00228779588535947 -0.2402851841066486 1.0 9827 -238011 Enpp7 ectonucleotide pyrophosphatase/phosphodiesterase 7 Novel N 0.002287754992500199 -0.24028560767354062 1.0 9828 -75516 Ttc32 tetratricopeptide repeat domain 32 Novel U 0.002287598202151776 -0.24028723170281538 1.0 9829 -68916 Cdkal1 CDK5 regulatory subunit associated protein 1-like 1 Novel U 0.0022875432056460396 -0.24028780135481387 1.0 9830 -627569 Vmn2r12 vomeronasal 2, receptor 12 Novel U 0.0022871873150050563 -0.2402914876583739 1.0 9831 -22364 Vpreb3 V-set pre-B cell surrogate light chain 3 Novel U 0.0022871325672654177 -0.2402920547336614 1.0 9832 -18612 Etv4 ets variant 4 Novel N 0.0022870804272846763 -0.24029259479786788 1.0 9833 -78057 4930583I09Rik RIKEN cDNA 4930583I09 gene Novel U 0.002287014975082482 -0.24029327274962659 1.0 9834 -13717 Eln elastin Novel U 0.0022868239559375335 -0.24029525131965052 1.0 9835 -18519 Kat2b K(lysine) acetyltransferase 2B Novel U 0.002286760546514364 -0.24029590811237125 1.0 9836 -595136 Ndufs5 NADH:ubiquinone oxidoreductase core subunit S5 Novel N 0.0022861701989091245 -0.24030202291345967 1.0 9837 -100040867 Gm16405 predicted gene 16405 Novel U 0.002286149761329236 -0.2403022346052403 1.0 9838 -72124 Seh1l SEH1-like (S. cerevisiae Novel U 0.002285689920143359 -0.2403069976251272 1.0 9839 -407819 BC031181 cDNA sequence BC031181 Novel N 0.002285583268444041 -0.24030810231992272 1.0 9840 -73902 Psmb11 proteasome (prosome, macropain) subunit, beta type, 11 Novel N 0.002283575077375997 -0.2403289030969898 1.0 9841 -404239 Mrgprb5 MAS-related GPR, member B5 Novel U 0.002283443360236403 -0.24033026741879177 1.0 9842 -11668 Aldh1a1 aldehyde dehydrogenase family 1, subfamily A1 Novel U 0.0022830488261923595 -0.24033435398945033 1.0 9843 -68077 Nop53 NOP53 ribosome biogenesis factor Novel U 0.002282120773490555 -0.24034396672882755 1.0 9844 -217140 Scrn2 secernin 2 Novel U 0.0022820297546537866 -0.2403449094989467 1.0 9845 -272790 Magee2 MAGE family member E2 Novel U 0.0022819934645226404 -0.24034528539093214 1.0 9846 -16728 L1cam L1 cell adhesion molecule Novel U 0.0022818154361190167 -0.24034712940328454 1.0 9847 -18813 Pa2g4 proliferation-associated 2G4 Novel N 0.002279195016371218 -0.24037427162489056 1.0 9848 -20392 Sgce sarcoglycan, epsilon Novel U 0.002278941400849068 -0.2403768985661318 1.0 9849 -77583 Notum notum palmitoleoyl-protein carboxylesterase Novel N 0.002277857901387084 -0.24038812141794091 1.0 9850 -319190 H2bc21 H2B clustered histone 21 Novel U 0.002277812491364091 -0.2403885917734663 1.0 9851 -14962 Cfb complement factor B Novel U 0.0022774376125259074 -0.24039247475614872 1.0 9852 -19362 Rad51ap1 RAD51 associated protein 1 Novel U 0.0022768703480452878 -0.24039835046299118 1.0 9853 -68431 Fbxl15 F-box and leucine-rich repeat protein 15 Novel U 0.0022756568774759418 -0.24041091955125776 1.0 9854 -76205 Stard3nl STARD3 N-terminal like Novel U 0.002275529667397417 -0.24041223718906932 1.0 9855 -66680 Oser1 oxidative stress responsive serine rich 1 Novel U 0.002273847231467102 -0.24042966380512842 1.0 9856 -15201 Hells helicase, lymphoid specific Novel U 0.0022737849445125494 -0.24043030897135612 1.0 9857 -21375 Tbr1 T-box brain transcription factor 1 Novel U 0.002271949171593522 -0.2404493238469036 1.0 9858 -56233 Hdac7 histone deacetylase 7 Novel U 0.002271637091368349 -0.24045255636361684 1.0 9859 -19651 Rbl2 RB transcriptional corepressor like 2 Novel N 0.0022715579933963474 -0.24045337565781064 1.0 9860 -13684 Eif4e eukaryotic translation initiation factor 4E Novel U 0.002271455832755856 -0.24045443383436652 1.0 9861 -68273 Pomgnt1 protein O-linked mannose beta 1,2-N-acetylglucosaminyltransferase Novel U 0.002270847060328439 -0.2404607394791574 1.0 9862 -99138 Stard7 StAR related lipid transfer domain containing 7 Novel N 0.0022707785095368808 -0.24046144952600285 1.0 9863 -19654 Rbm6 RNA binding motif protein 6 Novel N 0.002269930177816717 -0.24047023651807292 1.0 9864 -474160 Smim40 small integral membrane protein 40 Novel U 0.0022697847943315055 -0.24047174239543354 1.0 9865 -54652 Cacna1f calcium channel, voltage-dependent, alpha 1F subunit Novel U 0.0022693983907543574 -0.24047574475098327 1.0 9866 -214764 Edrf1 erythroid differentiation regulatory factor 1 Novel N 0.0022671994229666007 -0.24049852158704169 1.0 9867 -54376 Cacng3 calcium channel, voltage-dependent, gamma subunit 3 Novel U 0.0022670531567534485 -0.24050003660766928 1.0 9868 -67973 Mphosph10 M-phase phosphoprotein 10 (U3 small nucleolar ribonucleoprotein) Novel N 0.0022666254522270305 -0.2405044667570939 1.0 9869 -320398 Lrig3 leucine-rich repeats and immunoglobulin-like domains 3 Novel U 0.0022661351050181503 -0.2405095457573642 1.0 9870 -15929 Idh3g isocitrate dehydrogenase 3 (NAD+), gamma Novel U 0.0022661245401556346 -0.24050965518786283 1.0 9871 -12335 Capn3 calpain 3 Novel U 0.002265680506140553 -0.2405142544775942 1.0 9872 -76701 Ctrc chymotrypsin C Novel U 0.002263775756686286 -0.2405339838098262 1.0 9873 -17260 Mef2c myocyte enhancer factor 2C Novel U 0.0022631188760640257 -0.2405407877577178 1.0 9874 -170768 Pfkfb3 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 3 Novel U 0.0022606701030310115 -0.2405661520682947 1.0 9875 -373864 Col27a1 collagen, type XXVII, alpha 1 Novel U 0.002260308546114986 -0.24056989706294535 1.0 9876 -66361 Zfand1 zinc finger, AN1-type domain 1 Novel U 0.0022599532720776116 -0.24057357697974546 1.0 9877 -66125 Sf3b5 splicing factor 3b, subunit 5 Novel N 0.002259550088549576 -0.2405777531414749 1.0 9878 -19184 Psmc5 protease (prosome, macropain) 26S subunit, ATPase 5 Novel U 0.0022592165934308935 -0.24058120747295117 1.0 9879 -72039 Mccc1 methylcrotonoyl-Coenzyme A carboxylase 1 (alpha) Novel U 0.002258765167102151 -0.24058588333202444 1.0 9880 -433801 Zfp268 zinc finger protein 268 Novel U 0.002258442861954692 -0.24058922175814662 1.0 9881 -70465 Wdr77 WD repeat domain 77 Novel U 0.002257567760963544 -0.24059828602544553 1.0 9882 -211255 Kbtbd7 kelch repeat and BTB (POZ) domain containing 7 Novel U 0.0022571732237670274 -0.24060237262875733 1.0 9883 -434113 Vmn2r44 vomeronasal 2, receptor 44 Novel U 0.00225707992936702 -0.24060333896908573 1.0 9884 -14325 Ftl1 ferritin light polypeptide 1 Novel U 0.002256748647869223 -0.2406067703719496 1.0 9885 -226849 Ppp2r5a protein phosphatase 2, regulatory subunit B', alpha Novel U 0.0022566235943206185 -0.24060806567249512 1.0 9886 -56525 Zfp235 zinc finger protein 235 Novel U 0.0022559496828570913 -0.24061504602528072 1.0 9887 -242418 Dcaf10 DDB1 and CUL4 associated factor 10 Novel U 0.002252804320914281 -0.24064762558088612 1.0 9888 -13035 Ctsg cathepsin G Novel U 0.002252732950365648 -0.2406483648346827 1.0 9889 -83485 Ngrn neugrin, neurite outgrowth associated Novel N 0.0022526849728392953 -0.24064886178432346 1.0 9890 -11924 Neurog2 neurogenin 2 Novel U 0.002251210948961698 -0.2406641296751917 1.0 9891 -70928 Trim69 tripartite motif-containing 69 Novel N 0.002250469385616722 -0.2406718107639414 1.0 9892 -53380 Psmd10 proteasome (prosome, macropain) 26S subunit, non-ATPase, 10 Novel U 0.002250141542076864 -0.24067520655654998 1.0 9893 -67150 Rnf141 ring finger protein 141 Novel U 0.002249967868630461 -0.24067700546039858 1.0 9894 -72133 Trub1 TruB pseudouridine (psi) synthase family member 1 Novel N 0.00224983183507328 -0.24067841449151203 1.0 9895 -50874 Tmod4 tropomodulin 4 Novel U 0.002249695088397668 -0.2406798309090827 1.0 9896 -12428 Ccna2 cyclin A2 Novel U 0.0022487948650763553 -0.2406891553926516 1.0 9897 -66642 Ctnnbl1 catenin, beta like 1 Novel U 0.0022486499929772774 -0.24069065597309142 1.0 9898 -18100 Mrpl40 mitochondrial ribosomal protein L40 Novel N 0.002247627117163864 -0.24070125088714153 1.0 9899 -102631912 Ndufb1 NADH:ubiquinone oxidoreductase subunit B1 Novel N 0.002246967955811755 -0.2407080784587579 1.0 9900 -66399 Tsfm Ts translation elongation factor, mitochondrial Novel U 0.002246911487394663 -0.24070866335676586 1.0 9901 -56379 Kcnj1 potassium inwardly-rectifying channel, subfamily J, member 1 Novel U 0.0022464806544840485 -0.24071312590989113 1.0 9902 -18242 Oat ornithine aminotransferase Novel N 0.00224555462509464 -0.24072271769186507 1.0 9903 -13656 Egr4 early growth response 4 Novel N 0.002245414607062978 -0.24072416799403418 1.0 9904 -72935 Ddx41 DEAD box helicase 41 Novel U 0.0022446523065034574 -0.2407320638781704 1.0 9905 -58172 Sertad2 SERTA domain containing 2 Novel N 0.0022444065985090184 -0.2407346089134996 1.0 9906 -69590 Gpx8 glutathione peroxidase 8 (putative) Novel N 0.002243674937845988 -0.2407421874305952 1.0 9907 -110751 Adam33 a disintegrin and metallopeptidase domain 33 Novel U 0.002242864613367013 -0.24075058074491043 1.0 9908 -68083 Pak1ip1 PAK1 interacting protein 1 Novel N 0.002242424940045125 -0.2407551348667251 1.0 9909 -16541 Napsa napsin A aspartic peptidase Novel N 0.0022415330588984035 -0.2407643729423238 1.0 9910 -71183 Clec12b C-type lectin domain family 12, member B Novel U 0.0022408943915338073 -0.24077098823789123 1.0 9911 -16535 Kcnq1 potassium voltage-gated channel, subfamily Q, member 1 Novel U 0.0022408681107553134 -0.24077126045333092 1.0 9912 -66627 Ogfod2 2-oxoglutarate and iron-dependent oxygenase domain containing 2 Novel U 0.002240198594460938 -0.24077819528109892 1.0 9913 -73827 Tmem198b transmembrane protein 198b Novel U 0.0022401251803046314 -0.2407789557025166 1.0 9914 -381570 Oog2 oogenesin 2 Novel U 0.0022400223088406696 -0.24078002124175857 1.0 9915 -72754 Arhgef10l Rho guanine nucleotide exchange factor 10-like Novel U 0.0022398097192324585 -0.24078222323793194 1.0 9916 -213753 Zfp598 zinc finger protein 598 Novel U 0.0022397798373349365 -0.2407825327536441 1.0 9917 -627009 Pramel15 PRAME like 15 Novel U 0.00223932529017565 -0.24078724093817758 1.0 9918 -244579 Tox3 TOX high mobility group box family member 3 Novel N 0.0022390183578264943 -0.2407904201333603 1.0 9919 -387616 Tas2r140 taste receptor, type 2, member 140 Novel U 0.0022390003950892566 -0.2407906061908021 1.0 9920 -20419 Shcbp1 Shc SH2-domain binding protein 1 Novel U 0.0022387226200800835 -0.24079348337521578 1.0 9921 -110880 Scn4a sodium channel, voltage-gated, type IV, alpha Novel U 0.002237362276012236 -0.2408075737743516 1.0 9922 -66162 Bola2 bolA family member 2 Novel U 0.0022371567833155827 -0.24080970226094836 1.0 9923 -232941 Ppm1n protein phosphatase, Mg2+/Mn2+ dependent, 1N (putative) Novel U 0.0022370787247779638 -0.240810510788715 1.0 9924 -74035 Nol9 nucleolar protein 9 Novel N 0.0022361725044184153 -0.2408198973894088 1.0 9925 -14297 Fxn frataxin Novel N 0.0022360252960980554 -0.24082142216835187 1.0 9926 -22704 Zfp46 zinc finger protein 46 Novel U 0.00223599776478033 -0.24082170733683583 1.0 9927 -328788 Clpsl2 colipase-like 2 Novel U 0.002235957856053047 -0.24082212071012107 1.0 9928 -76572 Rbmxl2 RNA binding motif protein, X-linked-like 2 Novel U 0.0022355620096788757 -0.240826220873852 1.0 9929 -171279 Vmn1r216 vomeronasal 1 receptor 216 Novel U 0.0022353861395306937 -0.24082804253106543 1.0 9930 -16329 Inpp1 inositol polyphosphate-1-phosphatase Novel N 0.0022346639986936118 -0.24083552244211684 1.0 9931 -14067 F5 coagulation factor V Novel U 0.002234106993169191 -0.2408412918870282 1.0 9932 -232493 Gys2 glycogen synthase 2 Novel N 0.002233085208512832 -0.24085187549890943 1.0 9933 -353234 Pcdha2 protocadherin alpha 2 Novel U 0.0022319700369045755 -0.24086342640976846 1.0 9934 -228677 Sptlc3 serine palmitoyltransferase, long chain base subunit 3 Novel N 0.0022316099494738297 -0.2408671561835389 1.0 9935 -237504 Rassf9 Ras association (RalGDS/AF-6) domain family (N-terminal) member 9 Novel U 0.0022302140950919954 -0.2408816143973397 1.0 9936 -12190 Brca2 breast cancer 2, early onset Novel U 0.0022288159975232136 -0.24089609584599714 1.0 9937 -13205 Ddx3x DEAD box helicase 3, X-linked Novel U 0.002228484240362982 -0.2408995321757569 1.0 9938 -233020 Hipk4 homeodomain interacting protein kinase 4 Novel U 0.002227231058099585 -0.24091251259644503 1.0 9939 -231293 Cwh43 cell wall biogenesis 43 C-terminal homolog Novel U 0.0022249576200108513 -0.24093606079343288 1.0 9940 -15216 Hfe homeostatic iron regulator Novel U 0.002224519352970041 -0.24094060034903433 1.0 9941 -240672 Dusp5 dual specificity phosphatase 5 Novel N 0.002223475994870534 -0.2409514074179305 1.0 9942 -76799 Tmem234 transmembrane protein 234 Novel U 0.0022232977524806667 -0.2409532536467453 1.0 9943 -232449 Dera deoxyribose-phosphate aldolase Novel N 0.0022230139294775763 -0.24095619347608113 1.0 9944 -378431 Txlnb taxilin beta Novel U 0.0022225367810247885 -0.24096113576406972 1.0 9945 -68172 Rpl39l ribosomal protein L39-like Novel U 0.0022219316711932008 -0.2409674034718134 1.0 9946 -22401 Zmat3 zinc finger matrin type 3 Novel U 0.002221816763189424 -0.24096859368513912 1.0 9947 -70225 Ppil3 peptidylprolyl isomerase (cyclophilin)-like 3 Novel N 0.0022216182121123566 -0.24097065027066836 1.0 9948 -236874 Gm14743 predicted gene 14743 Novel U 0.0022215671782740026 -0.24097117887748837 1.0 9949 -19735 Rgs2 regulator of G-protein signaling 2 Novel U 0.0022215522411483495 -0.24097133359574485 1.0 9950 -50530 Mfap5 microfibrillar associated protein 5 Novel U 0.002220803432750825 -0.24097908972851068 1.0 9951 -65247 Asb1 ankyrin repeat and SOCS box-containing 1 Novel N 0.00222057445673921 -0.24098146145451182 1.0 9952 -380698 Obscn obscurin, cytoskeletal calmodulin and titin-interacting RhoGEF Novel U 0.0022199616615680806 -0.2409878087667498 1.0 9953 -21763 Tex2 testis expressed gene 2 Novel U 0.002218873106599799 -0.24099908398332695 1.0 9954 -170757 Adgrl4 adhesion G protein-coupled receptor L4 Novel N 0.0022178676828075753 -0.24100949812991526 1.0 9955 -666317 Prl2c1 Prolactin family 2, subfamily c, member 1 Novel U 0.002216704310411333 -0.24102154830295175 1.0 9956 -53604 Zpbp zona pellucida binding protein Novel N 0.002216206758913516 -0.24102670192501 1.0 9957 -12461 Cct2 chaperonin containing TCP1 subunit 2 Novel U 0.0022147801846093577 -0.24104147833475636 1.0 9958 -67248 Rpl39 ribosomal protein L39 Novel U 0.0022146567530229753 -0.2410427568350705 1.0 9959 -545366 Cfhr2 complement factor H-related 2 Novel U 0.0022123930882821533 -0.241066203800042 1.0 9960 -239552 Apol8 apolipoprotein L 8 Novel U 0.0022103212299051894 -0.2410876640410019 1.0 9961 -66523 2810004N23Rik RIKEN cDNA 2810004N23 gene Novel N 0.0022079471270437193 -0.24111225492039656 1.0 9962 -242235 Lrit3 leucine-rich repeat, immunoglobulin-like and transmembrane domains 3 Novel U 0.002207599346932362 -0.24111585721535736 1.0 9963 -72826 Fam76b family with sequence similarity 76, member B Novel U 0.0022074438276446554 -0.24111746807902704 1.0 9964 -654812 Angptl7 angiopoietin-like 7 Novel U 0.0022071090672792634 -0.2411209355158871 1.0 9965 -13831 Epc1 enhancer of polycomb homolog 1 Novel U 0.002206299354473912 -0.24112932249450703 1.0 9966 -11846 Arg1 arginase, liver Novel U 0.002205588342235919 -0.24113668713589492 1.0 9967 -58208 Bcl11b B cell leukemia/lymphoma 11B Novel U 0.0022054883015804466 -0.24113772335371564 1.0 9968 -80289 Lysmd3 LysM, putative peptidoglycan-binding, domain containing 3 Novel U 0.0022053439194993996 -0.24113921885856482 1.0 9969 -20462 Tra2b transformer 2 beta Novel N 0.002205059791573047 -0.24114216184628579 1.0 9970 -319601 Zfp653 zinc finger protein 653 Novel N 0.0022032178068062598 -0.24116124106394815 1.0 9971 -232962 Vmn1r180 vomeronasal 1 receptor 180 Novel U 0.002203108298722988 -0.2411623753450748 1.0 9972 -329506 Ctdspl2 CTD small phosphatase like 2 Novel U 0.002203079103987456 -0.2411626777431857 1.0 9973 -258571 Or5m3b olfactory receptor family 5 subfamily M member 3B Novel U 0.0022029445776053287 -0.24116407116302946 1.0 9974 -80913 Pum2 pumilio RNA-binding family member 2 Novel U 0.002202216689058638 -0.24117161060866804 1.0 9975 -11529 Adh7 alcohol dehydrogenase 7 (class IV), mu or sigma polypeptide Novel N 0.0021994248717192937 -0.24120052816089296 1.0 9976 -229389 Otol1 otolin 1 Novel U 0.002199274612941117 -0.24120208453637781 1.0 9977 -20088 Rps24 ribosomal protein S24 Novel U 0.002198940648918931 -0.24120554372474112 1.0 9978 -108075 Ltbp4 latent transforming growth factor beta binding protein 4 Novel U 0.002198871906964975 -0.24120625575164042 1.0 9979 -237336 Tbpl1 TATA box binding protein-like 1 Novel N 0.002197816568222194 -0.24121718691564578 1.0 9980 -67379 Dedd2 death effector domain-containing DNA binding protein 2 Novel U 0.002197532883751046 -0.24122012531007228 1.0 9981 -11513 Adcy7 adenylate cyclase 7 Novel N 0.002197271273904296 -0.24122283505626496 1.0 9982 -72170 Chchd4 coiled-coil-helix-coiled-coil-helix domain containing 4 Novel U 0.0021963929064439903 -0.24123193315754404 1.0 9983 -53951 Gpatch11 G patch domain containing 11 Novel U 0.0021949479233917602 -0.24124690024449777 1.0 9984 -14007 Celf2 CUGBP, Elav-like family member 2 Novel U 0.0021946609962242816 -0.2412498722266663 1.0 9985 -19125 Prodh proline dehydrogenase Novel U 0.00219453769241171 -0.2412511494035035 1.0 9986 -170721 Papln papilin, proteoglycan-like sulfated glycoprotein Novel U 0.002194389470236528 -0.24125268468392153 1.0 9987 -100416706 Zfp729b zinc finger protein 729b Novel U 0.0021939770083487086 -0.24125695695059662 1.0 9988 -246198 Mllt6 myeloid/lymphoid or mixed-lineage leukemia; translocated to, 6 Novel N 0.0021927780006570155 -0.2412693762328519 1.0 9989 -18054 Ngp neutrophilic granule protein Novel U 0.0021909375440761995 -0.24128843962161423 1.0 9990 -100504309 Smim27 small integral membrane protein 27 Novel U 0.0021905932611962263 -0.24129200569236733 1.0 9991 -238880 Actbl2 actin, beta-like 2 Novel U 0.0021904014163122328 -0.24129399281536915 1.0 9992 -622744 Pramel53 PRAME like 53 Novel U 0.002189637768227865 -0.24130190265712345 1.0 9993 -14780 Gpx5 glutathione peroxidase 5 Novel U 0.002189478253527939 -0.24130355490514152 1.0 9994 -66156 Anapc11 anaphase promoting complex subunit 11 Novel U 0.002189416949709428 -0.24130418988807842 1.0 9995 -224582 Vmn2r110 vomeronasal 2, receptor 110 Novel U 0.0021887932422170525 -0.24131065022978115 1.0 9996 -171238 Vmn1r80 vomeronasal 1 receptor 80 Novel U 0.0021887731856615406 -0.24131085797492383 1.0 9997 -66296 Haus2 HAUS augmin-like complex, subunit 2 Novel U 0.0021886615268967165 -0.24131201453273932 1.0 9998 -26410 Map3k8 mitogen-activated protein kinase kinase kinase 8 Novel U 0.002188116162786268 -0.24131766339626745 1.0 9999 -239731 Rimbp3 RIMS binding protein 3 Novel U 0.0021880908014166403 -0.2413179260885003 1.0 10000 -83771 Tas1r3 taste receptor, type 1, member 3 Novel N 0.002187278241449674 -0.2413263425579267 1.0 10001 -74144 Robo4 roundabout guidance receptor 4 Novel U 0.0021870060651430837 -0.24132916175116303 1.0 10002 -14058 F10 coagulation factor X Novel U 0.002186274746200477 -0.24133673672872974 1.0 10003 -108168554 Gm20909 predicted gene, 20909 Novel U 0.0021849491731975434 -0.24135046697031828 1.0 10004 -320226 Ccdc171 coiled-coil domain containing 171 Novel U 0.0021847260852272212 -0.24135277770818123 1.0 10005 -77521 Mtus2 microtubule associated tumor suppressor candidate 2 Novel U 0.0021846995754742525 -0.24135305229533102 1.0 10006 -20135 Rrm2 ribonucleotide reductase M2 Novel U 0.0021825493697363585 -0.24137532405567994 1.0 10007 -17258 Mef2a myocyte enhancer factor 2A Novel U 0.0021814278591808507 -0.2413869406251462 1.0 10008 -21406 Tcf12 transcription factor 12 Novel U 0.002180557273282766 -0.24139595812525957 1.0 10009 -268903 Nrip1 nuclear receptor interacting protein 1 Novel U 0.002179719914777388 -0.24140463145713162 1.0 10010 -15387 Hnrnpk heterogeneous nuclear ribonucleoprotein K Novel U 0.0021796712513876917 -0.24140513551092238 1.0 10011 -66848 Fuca2 fucosidase, alpha-L- 2, plasma Novel N 0.0021795678027503192 -0.2414062070285076 1.0 10012 -11418 Asic2 acid-sensing ion channel 2 Novel N 0.0021786269244238295 -0.24141595261528367 1.0 10013 -70223 Nars1 asparaginyl-tRNA synthetase 1 Novel U 0.002178397113543766 -0.24141833298882473 1.0 10014 -11828 Aqp3 aquaporin 3 Novel U 0.0021781867441663374 -0.2414205119879206 1.0 10015 -76464 Knl1 kinetochore scaffold 1 Novel U 0.0021778053550464663 -0.24142446240388676 1.0 10016 -12399 Runx3 runt related transcription factor 3 Novel U 0.0021770998384807406 -0.24143177012128192 1.0 10017 -277667 Pramel23 PRAME like 23 Novel U 0.002176622078392868 -0.2414367187445666 1.0 10018 -241311 Zbtb34 zinc finger and BTB domain containing 34 Novel U 0.0021761727165151017 -0.24144137322012454 1.0 10019 -327655 Ppip5k1 diphosphoinositol pentakisphosphate kinase 1 Novel N 0.002175937103984487 -0.2414438136869713 1.0 10020 -234671 Ces2c carboxylesterase 2C Novel U 0.0021756852723031576 -0.24144642215124795 1.0 10021 -13595 Ebp EBP cholestenol delta-isomerase Novel U 0.0021745667957371903 -0.24145800729475034 1.0 10022 -81845 Gpank1 G patch domain and ankyrin repeats 1 Novel U 0.0021744526451309434 -0.24145918966297736 1.0 10023 -244654 Mtss2 MTSS I-BAR domain containing 2 Novel U 0.0021741461800355447 -0.241462364018361 1.0 10024 -66442 Spc25 SPC25, NDC80 kinetochore complex component, homolog (S. cerevisiae) Novel U 0.002173483100761512 -0.24146923217168387 1.0 10025 -67439 Xab2 XPA binding protein 2 Novel N 0.002173417469682534 -0.24146991197624243 1.0 10026 -67378 Bbs2 Bardet-Biedl syndrome 2 Novel U 0.002172323968129544 -0.24148123842938138 1.0 10027 -235312 C1qtnf5 C1q and tumor necrosis factor related protein 5 Novel N 0.0021719750430530763 -0.24148485258385308 1.0 10028 -67654 Ctxnd2 cortexin domain containing 2 Novel U 0.002171258474168165 -0.2414922747808071 1.0 10029 -56758 Mbnl1 muscleblind like splicing regulator 1 Novel N 0.0021701373872072566 -0.2415038869626944 1.0 10030 -319832 Tmem229a transmembrane protein 229A Novel U 0.002169137897986928 -0.24151423963918214 1.0 10031 -667240 Vmn1r121 vomeronasal 1 receptor 121 Novel U 0.002166754819696408 -0.24153892348577588 1.0 10032 -11814 Apoc3 apolipoprotein C-III Novel U 0.0021666988354198035 -0.24153950336907257 1.0 10033 -18604 Pdk2 pyruvate dehydrogenase kinase, isoenzyme 2 Novel N 0.002166387349854666 -0.24154272972631674 1.0 10034 -74094 Tjap1 tight junction associated protein 1 Novel U 0.0021662121031684276 -0.24154454492573182 1.0 10035 -100043019 Vmn1r247 vomeronasal 1 receptor 247 Novel U 0.0021660876903710075 -0.24154583358939768 1.0 10036 -232798 Leng8 leukocyte receptor cluster (LRC) member 8 Novel U 0.0021648438926419153 -0.24155871680538799 1.0 10037 -56464 Ctsf cathepsin F Novel U 0.0021646220931328063 -0.24156101419741208 1.0 10038 -71718 Telo2 telomere maintenance 2 Novel U 0.002163415571027778 -0.24157351131371366 1.0 10039 -83946 Phip pleckstrin homology domain interacting protein Novel U 0.002161707296239068 -0.24159120556781863 1.0 10040 -58249 Fibp fibroblast growth factor (acidic) intracellular binding protein Novel U 0.002161702861151843 -0.2415912515063063 1.0 10041 -233806 Ldaf1 lipid droplet assembly factor 1 Novel N 0.002161395098759734 -0.24159443929904661 1.0 10042 -64383 Sirt2 sirtuin 2 Novel U 0.00216062802715752 -0.24160238460148623 1.0 10043 -14077 Fabp3 fatty acid binding protein 3, muscle and heart Novel N 0.0021600695523734214 -0.24160816926494105 1.0 10044 -230815 Man1c1 mannosidase, alpha, class 1C, member 1 Novel N 0.0021600250650002525 -0.2416086300636899 1.0 10045 -12942 Pcdha11 protocadherin alpha 11 Novel U 0.0021586477031068103 -0.24162289673290382 1.0 10046 -17346 Mknk1 MAP kinase-interacting serine/threonine kinase 1 Novel N 0.002158403519304827 -0.24162542598069767 1.0 10047 -627479 Vmn2r8 vomeronasal 2, receptor 8 Novel U 0.0021573367727512447 -0.24163647530643226 1.0 10048 -233726 Ipo7 importin 7 Novel U 0.0021572647996804177 -0.2416372208011339 1.0 10049 -75604 Tm4sf5 transmembrane 4 superfamily member 5 Novel N 0.002156355039126941 -0.24164664407104006 1.0 10050 -72454 Ccdc71 coiled-coil domain containing 71 Novel U 0.002154656842610395 -0.2416642339347332 1.0 10051 -66863 Lztr1 leucine-zipper-like transcriptional regulator, 1 Novel U 0.0021545671544056285 -0.24166516292220988 1.0 10052 -171185 Vmn1r35 vomeronasal 1 receptor 35 Novel U 0.002154153320154801 -0.24166944940377585 1.0 10053 -208727 Hdac4 histone deacetylase 4 Novel U 0.002153292046877321 -0.2416783704440712 1.0 10054 -545047 Gm5800 predicted gene 5800 Novel U 0.00215071032190495 -0.24170511186646534 1.0 10055 -57837 Eral1 Era like 12S mitochondrial rRNA chaperone 1 Novel N 0.0021496644805680445 -0.24171594465665286 1.0 10056 -404285 Vmn1r64 vomeronasal 1 receptor 64 Novel U 0.0021496044510788776 -0.24171656644012826 1.0 10057 -100012 Oog3 oogenesin 3 Novel U 0.0021495561462257047 -0.2417170667802095 1.0 10058 -74090 Paqr5 progestin and adipoQ receptor family member V Novel U 0.00214942197834037 -0.24171845648675527 1.0 10059 -67634 Ftmt ferritin mitochondrial Novel N 0.0021489638503721354 -0.2417232017611901 1.0 10060 -67087 Ctnnbip1 catenin beta interacting protein 1 Novel U 0.0021486005706067733 -0.24172696460105753 1.0 10061 -12192 Zfp36l1 zinc finger protein 36, C3H type-like 1 Novel U 0.0021477115065685073 -0.2417361734971395 1.0 10062 -633285 Rbm46 RNA binding motif protein 46 Novel U 0.002146980748520662 -0.2417437426649767 1.0 10063 -118449 Synpo2 synaptopodin 2 Novel U 0.002146404662385524 -0.24174970974622664 1.0 10064 -28030 Gfm1 G elongation factor, mitochondrial 1 Novel N 0.0021461313727037636 -0.2417525404717664 1.0 10065 -76594 Dnajc18 DnaJ heat shock protein family (Hsp40) member C18 Novel U 0.0021457086108944436 -0.2417569194246898 1.0 10066 -71238 Sdhaf3 succinate dehydrogenase complex assembly factor 3 Novel U 0.0021453388930982964 -0.24176074894946845 1.0 10067 -19052 Ppp2ca protein phosphatase 2 (formerly 2A), catalytic subunit, alpha isoform Novel U 0.002143571702574882 -0.24177905345081674 1.0 10068 -18489 Reg3b regenerating islet-derived 3 beta Novel U 0.0021433875546037467 -0.24178096084944822 1.0 10069 -218294 Cdc14b CDC14 cell division cycle 14B Novel U 0.002142523059067446 -0.24178991526579444 1.0 10070 -68260 Trmt12 tRNA methyltransferase 12 Novel U 0.0021424175147266643 -0.24179100849060667 1.0 10071 -100043058 Gm10665 predicted gene 10665 Novel U 0.0021423202805820082 -0.24179201563868064 1.0 10072 -76757 Trdn triadin Novel U 0.0021412758172352246 -0.24180283415569173 1.0 10073 -13138 Dag1 dystroglycan 1 Novel U 0.0021409895284426146 -0.24180579952559433 1.0 10074 -12796 Camp cathelicidin antimicrobial peptide Novel U 0.002140233448402362 -0.24181363097779648 1.0 10075 -100039010 LOC100039010 PRAME family member 8-like Novel U 0.0021386392926490603 -0.24183014319068416 1.0 10076 -229096 Ythdf3 YTH N6-methyladenosine RNA binding protein 3 Novel N 0.00213862478481189 -0.24183029346238463 1.0 10077 -83564 Nlrp4c NLR family, pyrin domain containing 4C Novel U 0.0021381130131332515 -0.24183559437660837 1.0 10078 -20016 Polr1c polymerase (RNA) I polypeptide C Novel U 0.0021376567271325117 -0.24184032057200444 1.0 10079 -118452 Baalc brain and acute leukemia, cytoplasmic Novel U 0.002136830266225762 -0.24184888102690813 1.0 10080 -353237 Pcdhac2 protocadherin alpha subfamily C, 2 Novel N 0.0021364415636893723 -0.24185290719500213 1.0 10081 -101055944 Speer1j spermatogenesis associated glutamate (E)-rich protein 1J Novel U 0.002136028410370176 -0.2418571866235007 1.0 10082 -545370 Hmcn1 hemicentin 1 Novel U 0.0021337510367706383 -0.2418807755843801 1.0 10083 -140792 Colec12 collectin sub-family member 12 Novel U 0.0021330232186014576 -0.24188831430105073 1.0 10084 -100502876 Kcnmb3 potassium large conductance calcium-activated channel, subfamily M, beta member 3 Novel N 0.0021325960440946225 -0.24189273896054994 1.0 10085 -108168637 Gm20834 predicted gene, 20834 Novel U 0.0021324201002306275 -0.24189456138130933 1.0 10086 -54447 Asah2 N-acylsphingosine amidohydrolase 2 Novel U 0.0021323344719101087 -0.2418954483166384 1.0 10087 -56441 Naa80 N(alpha)-acetyltransferase 80, NatH catalytic subunit Novel U 0.0021318976611906146 -0.24189997278771155 1.0 10088 -69073 Kdf1 keratinocyte differentiation factor 1 Novel U 0.0021317779896508453 -0.24190121234158646 1.0 10089 -59092 Pcbp4 poly(rC) binding protein 4 Novel N 0.002129494995186431 -0.24192485952319945 1.0 10090 -15568 Elavl1 ELAV like RNA binding protein 1 Novel U 0.002129311370214191 -0.24192676150462558 1.0 10091 -94230 Cpsf1 cleavage and polyadenylation specific factor 1 Novel N 0.0021282551933176773 -0.24193770135019974 1.0 10092 -626870 Gm11992 predicted gene 11992 Novel U 0.0021276822110965965 -0.2419436362812099 1.0 10093 -74023 Rd3 retinal degeneration 3 Novel U 0.0021273661560001905 -0.24194690996950874 1.0 10094 -230233 Elp1 elongator complex protein 1 Novel U 0.002126993873647331 -0.24195076605788152 1.0 10095 -51798 Ech1 enoyl coenzyme A hydratase 1, peroxisomal Novel U 0.0021267748216474533 -0.2419530349912953 1.0 10096 -245827 Fat2 FAT atypical cadherin 2 Novel N 0.002126549698699883 -0.24195536680738572 1.0 10097 -73779 Prr27 proline rich 27 Novel U 0.0021264156470778683 -0.24195675530967986 1.0 10098 -11997 Akr1b7 aldo-keto reductase family 1, member B7 Novel U 0.002126260855772595 -0.24195835863293136 1.0 10099 -26433 Plod3 procollagen-lysine, 2-oxoglutarate 5-dioxygenase 3 Novel U 0.00212508992294172 -0.24197048711670124 1.0 10100 -105670 Rcbtb2 regulator of chromosome condensation (RCC1) and BTB (POZ) domain containing protein 2 Novel U 0.0021250642191818782 -0.24197075335540072 1.0 10101 -53761 Prrc2a proline-rich coiled-coil 2A Novel U 0.002124629530408212 -0.2419752558474287 1.0 10102 -94282 Sfxn5 sideroflexin 5 Novel U 0.002124594719257182 -0.24197561642018672 1.0 10103 -73250 Ceacam5 CEA cell adhesion molecule 5 Novel U 0.002123802296774382 -0.24198382430621412 1.0 10104 -171255 Vmn1r201 vomeronasal 1 receptor 201 Novel U 0.002122978735239394 -0.24199235472952035 1.0 10105 -277668 Pramel22 PRAME like 22 Novel U 0.0021220739778536842 -0.24200172617677923 1.0 10106 -18159 Nppc natriuretic peptide type C Novel U 0.0021219012456899027 -0.24200351533085346 1.0 10107 -19714 Rev3l REV3 like, DNA directed polymerase zeta catalytic subunit Novel U 0.0021216788888701924 -0.24200581849548242 1.0 10108 -56371 Fzr1 fizzy and cell division cycle 20 related 1 Novel U 0.002120688603053121 -0.24201607584342175 1.0 10109 -217653 Mis18bp1 MIS18 binding protein 1 Novel U 0.002119709745587798 -0.24202621481686937 1.0 10110 -245650 Gucy2f guanylate cyclase 2f Novel U 0.002118397488771648 -0.24203980712983292 1.0 10111 -214791 Sertad4 SERTA domain containing 4 Novel U 0.0021179916364788497 -0.24204401093454006 1.0 10112 -66549 Aggf1 angiogenic factor with G patch and FHA domains 1 Novel U 0.0021178858034690026 -0.24204510714937696 1.0 10113 -627576 Vmn2r101 vomeronasal 2, receptor 101 Novel U 0.002116778986230629 -0.2420565715259474 1.0 10114 -320343 Lypd6 LY6/PLAUR domain containing 6 Novel U 0.0021158528216410413 -0.24206616470832032 1.0 10115 -75272 Erich6b glutamate rich 6B Novel U 0.002115571161053693 -0.242069082139425 1.0 10116 -234857 Spire2 spire type actin nucleation factor 2 Novel U 0.002115540144365305 -0.2420694034092637 1.0 10117 -100039810 Gm20816 predicted gene, 20816 Novel U 0.0021137773121545837 -0.24208766276735233 1.0 10118 -666420 Gm8094 predicted gene 8094 Novel U 0.0021125587800434765 -0.2421002842829021 1.0 10119 -13480 Dpm1 dolichyl-phosphate mannosyltransferase subunit 1, catalytic Novel U 0.0021114215790518616 -0.2421120633733898 1.0 10120 -216618 Cfap36 cilia and flagella associated protein 36 Novel U 0.002110646104053931 -0.242120095717926 1.0 10121 -17287 Mep1a meprin 1 alpha Novel U 0.0021101504244756286 -0.24212522995070343 1.0 10122 -216846 Cntrob centrobin, centrosomal BRCA2 interacting protein Novel U 0.0021101419895228134 -0.24212531731966744 1.0 10123 -382236 Brwd3 bromodomain and WD repeat domain containing 3 Novel U 0.002110012464841921 -0.24212665893205423 1.0 10124 -637896 Vmn2r78 vomeronasal 2, receptor 78 Novel U 0.0021092334091519487 -0.24213472836528088 1.0 10125 -70681 Abraxas1 BRCA1 A complex subunit Novel U 0.0021090330051833465 -0.24213680414299973 1.0 10126 -353025 Caps2 calcyphosphine 2 Novel U 0.0021089774515549954 -0.24213737956565595 1.0 10127 -102633301 Gm31160 predicted gene, 31160 Novel U 0.002108902782818639 -0.24213815298197255 1.0 10128 -672511 Rnf213 ring finger protein 213 Novel U 0.0021078833541271526 -0.24214871219084705 1.0 10129 -242737 Oog4 oogenesin 4 Novel U 0.002107600679044814 -0.24215164013005747 1.0 10130 -56307 Metap2 methionine aminopeptidase 2 Novel N 0.002106431654200218 -0.24216374885096817 1.0 10131 -319184 H2bc12 H2B clustered histone 12 Novel U 0.0021064299456159128 -0.24216376654842825 1.0 10132 -15451 Hpn hepsin Novel U 0.002106128531362945 -0.24216688858735202 1.0 10133 -192191 Med9 mediator complex subunit 9 Novel U 0.002106111166989349 -0.2421670684469629 1.0 10134 -211623 Plac9 placenta specific 9 Novel U 0.002105188191538473 -0.2421766285963419 1.0 10135 -22368 Trpv2 transient receptor potential cation channel, subfamily V, member 2 Novel U 0.0021048861083472065 -0.2421797575641066 1.0 10136 -171196 Vmn1r22 vomeronasal 1 receptor 22 Novel U 0.002104522615847748 -0.24218352260746678 1.0 10137 -268379 Abca13 ATP-binding cassette, sub-family A member 13 Novel N 0.002103844336302939 -0.24219054820469468 1.0 10138 -99045 Mrps26 mitochondrial ribosomal protein S26 Novel U 0.002102108899554412 -0.24220852380148652 1.0 10139 -14976 Pfdn6 prefoldin subunit 6 Novel U 0.00210094240714971 -0.24222060629146805 1.0 10140 -16949 Loxl1 lysyl oxidase-like 1 Novel N 0.0020999804380744244 -0.24223057033552683 1.0 10141 -77006 Ddrgk1 DDRGK domain containing 1 Novel U 0.0020987579851411003 -0.24224323246282423 1.0 10142 -16765 Stmn1 stathmin 1 Novel U 0.0020978202790294825 -0.24225294519190294 1.0 10143 -100042312 Gm10128 alpha-takusan pseudogene Novel U 0.0020977155188196227 -0.24225403029471287 1.0 10144 -319188 H2bc22 H2B clustered histone 22 Novel U 0.002097165074165993 -0.24225973178234025 1.0 10145 -319156 H4c4 H4 clustered histone 4 Novel U 0.0020966939056771355 -0.24226461213005904 1.0 10146 -67285 Cwc27 CWC27 spliceosome-associated protein Novel U 0.0020953862347204296 -0.24227815694284122 1.0 10147 -16500 Kcnb1 potassium voltage gated channel, Shab-related subfamily, member 1 Novel U 0.002095344433382259 -0.24227858991972784 1.0 10148 -21848 Trim24 tripartite motif-containing 24 Novel N 0.002095250663540356 -0.24227956118466776 1.0 10149 -11468 Actg2 actin, gamma 2, smooth muscle, enteric Novel U 0.0020951994580936874 -0.24228009156900107 1.0 10150 -11634 Aire autoimmune regulator Novel U 0.002094085136423269 -0.2422916336762319 1.0 10151 -80281 Cttnbp2nl CTTNBP2 N-terminal like Novel U 0.002094011768375331 -0.24229239362006058 1.0 10152 -243548 Prickle2 prickle planar cell polarity protein 2 Novel U 0.0020939225172796946 -0.24229331807997526 1.0 10153 -211401 Mtss1 MTSS I-BAR domain containing 1 Novel U 0.0020923267413649666 -0.24230984707444167 1.0 10154 -68184 Denr density-regulated protein Novel U 0.00209167403215615 -0.24231660781496991 1.0 10155 -19225 Ptgs2 prostaglandin-endoperoxide synthase 2 Novel N 0.0020915791023093477 -0.24231759109520246 1.0 10156 -13030 Ctsb cathepsin B Novel N 0.0020911673325636182 -0.24232185619269253 1.0 10157 -246102 Rttn rotatin Novel N 0.0020907742167364635 -0.24232592807350722 1.0 10158 -66877 Crnkl1 crooked neck pre-mRNA splicing factor 1 Novel N 0.0020898430441025446 -0.24233557312903867 1.0 10159 -171567 Nme7 NME/NM23 family member 7 Novel U 0.0020893712696151505 -0.24234045975367038 1.0 10160 -319817 Rc3h2 ring finger and CCCH-type zinc finger domains 2 Novel U 0.002088328194663373 -0.24235126388973163 1.0 10161 -19942 Rpl27 ribosomal protein L27 Novel U 0.0020882772837260075 -0.24235179122354727 1.0 10162 -104943 Fam110c family with sequence similarity 110, member C Novel U 0.0020880610435253656 -0.242354031032437 1.0 10163 -232146 Eva1a eva-1 homolog A, regulator of programmed cell death Novel U 0.0020871322942534734 -0.24236365098686427 1.0 10164 -66375 Dhrs7 dehydrogenase/reductase 7 Novel U 0.002087005856857997 -0.2423649606212502 1.0 10165 -665378 Gm7609 predicted pseudogene 7609 Novel U 0.002086519456980672 -0.24236999873519002 1.0 10166 -208144 Dhx37 DEAH-box helicase 37 Novel U 0.002086374182686111 -0.24237150348155742 1.0 10167 -239364 Tspyl5 testis-specific protein, Y-encoded-like 5 Novel U 0.00208630513083671 -0.24237221871834358 1.0 10168 -18106 Cd244a CD244 molecule A Novel U 0.002086025310155328 -0.24237511709176274 1.0 10169 -14632 Gli1 GLI-Kruppel family member GLI1 Novel U 0.002085767179172184 -0.24237779080400054 1.0 10170 -242151 Kcna10 potassium voltage-gated channel, shaker-related subfamily, member 10 Novel N 0.0020856971321661657 -0.2423785163485862 1.0 10171 -381622 5031410I06Rik RIKEN cDNA 5031410I06 gene Novel U 0.0020828482407349797 -0.24240802507237816 1.0 10172 -100041546 Ly6c2 lymphocyte antigen 6 family memberC2 Novel U 0.002082602977435512 -0.24241056550157142 1.0 10173 -102636873 Gm8247 predicted gene 8247 Novel U 0.002081908498261958 -0.24241775889402137 1.0 10174 -27405 Abcg3 ATP binding cassette subfamily G member 3 Novel U 0.002080536596250683 -0.24243196900995528 1.0 10175 -102638847 Gm35315 predicted gene, 35315 Novel U 0.0020795367164317003 -0.242442325732251 1.0 10176 -64931 Izumo1r IZUMO1 receptor, JUNO Novel U 0.002079496464906969 -0.24244274265622098 1.0 10177 -237988 Cdr2l cerebellar degeneration-related protein 2-like Novel U 0.002079358036965827 -0.24244417648828478 1.0 10178 -210126 Lpp LIM domain containing preferred translocation partner in lipoma Novel U 0.0020782916755702255 -0.2424552218245657 1.0 10179 -17395 Mmp9 matrix metallopeptidase 9 Novel U 0.002078259376428286 -0.24245555637801608 1.0 10180 -16803 Lbp lipopolysaccharide binding protein Novel U 0.0020781520697752786 -0.24245666785680042 1.0 10181 -100043103 Vmn1r169 vomeronasal 1 receptor 169 Novel U 0.0020781381479128952 -0.24245681205899336 1.0 10182 -21924 Tnnc1 troponin C, cardiac/slow skeletal Novel U 0.002076552180233575 -0.24247323946007984 1.0 10183 -50786 Hs6st2 heparan sulfate 6-O-sulfotransferase 2 Novel U 0.0020754494333200956 -0.24248466167635885 1.0 10184 -100041256 Gm20867 predicted gene, 20867 Novel U 0.002074832157897065 -0.24249105539489874 1.0 10185 -76117 Arhgap15 Rho GTPase activating protein 15 Novel U 0.0020738174521624216 -0.24250156568354153 1.0 10186 -668100 Cwc22rt2 CWC22 spliceosome-associated protein, retrotransposed 2 Novel U 0.0020737937736433976 -0.2425018109448632 1.0 10187 -546913 Vmn2r22 vomeronasal 2, receptor 22 Novel U 0.0020737834244951452 -0.24250191814100056 1.0 10188 -24117 Wif1 Wnt inhibitory factor 1 Novel U 0.0020736187896606005 -0.24250362342320472 1.0 10189 -12652 Chga chromogranin A Novel U 0.0020733830804111437 -0.24250606489186205 1.0 10190 -66349 Dmac2 distal membrane arm assembly complex 2 Novel N 0.002073293645270445 -0.2425069912581094 1.0 10191 -381626 Rbm33 RNA binding motif protein 33 Novel N 0.002073212699213411 -0.2425078296947072 1.0 10192 -18030 Nfil3 nuclear factor, interleukin 3, regulated Novel N 0.0020729808323527864 -0.24251023136402733 1.0 10193 -24112 Vmn1r49 vomeronasal 1, receptor 49 Novel U 0.0020724116528089307 -0.2425161269070318 1.0 10194 -27878 Tada1 transcriptional adaptor 1 Novel U 0.002072373052564749 -0.24251652672709212 1.0 10195 -243725 Ppp1r9a protein phosphatase 1, regulatory subunit 9A Novel U 0.0020722165514902714 -0.24251814776007688 1.0 10196 -14618 Gjb1 gap junction protein, beta 1 Novel U 0.0020694113310708757 -0.24254720414096434 1.0 10197 -100039087 Gm2042 predicted gene 2042 Novel U 0.0020691041561195214 -0.24255038584901262 1.0 10198 -17225 Mcpt2 mast cell protease 2 Novel U 0.0020689316251443104 -0.2425521729191822 1.0 10199 -408190 Wfdc13 WAP four-disulfide core domain 13 Novel U 0.002068647227950894 -0.24255511869596255 1.0 10200 -226154 Lzts2 leucine zipper, putative tumor suppressor 2 Novel U 0.0020683924053645337 -0.24255775813993527 1.0 10201 -18636 Cfp complement factor properdin Novel N 0.0020680291262163072 -0.2425615209734104 1.0 10202 -17721 ND5 NADH dehydrogenase subunit 5 Novel N 0.0020667854878799303 -0.24257440253841622 1.0 10203 -67867 Lrrc28 leucine rich repeat containing 28 Novel U 0.002066700029492223 -0.24257528771358677 1.0 10204 -241950 Bbs12 Bardet-Biedl syndrome 12 Novel N 0.002066405279710049 -0.24257834072214113 1.0 10205 -17690 Msi1 musashi RNA-binding protein 1 Novel N 0.002066109696310929 -0.24258140236527245 1.0 10206 -100039441 Gm2237 predicted gene 2237 Novel U 0.0020656870106052147 -0.2425857805299172 1.0 10207 -330817 Dhps deoxyhypusine synthase Novel U 0.0020651728427118804 -0.242591106264054 1.0 10208 -244484 Wdr17 WD repeat domain 17 Novel U 0.0020647025814007976 -0.2425959772152552 1.0 10209 -69863 Ttc39b tetratricopeptide repeat domain 39B Novel U 0.0020646932846079343 -0.24259607351113005 1.0 10210 -76574 Mfsd2a MFSD2 lysolipid transporter A, lysophospholipid Novel U 0.002062284945171172 -0.24262101901184616 1.0 10211 -75596 Prl7b1 prolactin family 7, subfamily b, member 1 Novel U 0.0020622711136953514 -0.242621162277818 1.0 10212 -14029 Evx2 even-skipped homeobox 2 Novel U 0.0020618940484630217 -0.24262506790709912 1.0 10213 -23872 Ets2 E26 avian leukemia oncogene 2, 3' domain Novel N 0.002060296075035266 -0.24264161966333328 1.0 10214 -226075 Glis3 GLIS family zinc finger 3 Novel U 0.00206016701125096 -0.24264295650176837 1.0 10215 -434117 Vmn2r50 vomeronasal 2, receptor 50 Novel U 0.002060159623132306 -0.24264303302765852 1.0 10216 -171206 Vmn1r27 vomeronasal 1 receptor 27 Novel U 0.0020597494915635763 -0.24264728115696507 1.0 10217 -211578 Mrgprd MAS-related GPR, member D Novel U 0.0020591407645484164 -0.2426535863313773 1.0 10218 -102631730 4930512M02Rik RIKEN cDNA 4930512M02 gene Novel U 0.002058652490397455 -0.24265864385898178 1.0 10219 -19263 Ptprb protein tyrosine phosphatase receptor type B Novel N 0.002057541853861075 -0.2426701477957154 1.0 10220 -233221 Mrgpra1 MAS-related GPR, member A1 Novel U 0.002056138949077547 -0.24268467903734517 1.0 10221 -347710 Pramel4 PRAME like 4 Novel U 0.002055361732167836 -0.24269272942454634 1.0 10222 -100861655 LOC100861655 PRAME family member 9/15-like Novel U 0.0020546701551162616 -0.24269989275691217 1.0 10223 -17441 Mog myelin oligodendrocyte glycoprotein Novel U 0.0020543608337353697 -0.24270309669760703 1.0 10224 -207375 Fam120c family with sequence similarity 120, member C Novel U 0.002053681508188641 -0.24271013312928844 1.0 10225 -100042168 Btbd35f3 BTB domain containing 35, family member 3 Novel U 0.002053448134064508 -0.24271255041079445 1.0 10226 -14904 Gtpbp1 GTP binding protein 1 Novel N 0.002052905066895613 -0.24271817548267752 1.0 10227 -269633 Wdr86 WD repeat domain 86 Novel U 0.0020528715046951693 -0.2427185231188464 1.0 10228 -626299 Vmn1r194 vomeronasal 1 receptor 194 Novel U 0.0020527627167603495 -0.24271964994069906 1.0 10229 -94071 Clec2h C-type lectin domain family 2, member h Novel U 0.002052126642732391 -0.24272623837457086 1.0 10230 -20541 Slc8a1 solute carrier family 8 (sodium/calcium exchanger), member 1 Novel U 0.002051459273332591 -0.24273315096487538 1.0 10231 -378702 Serf2 small EDRK-rich factor 2 Novel U 0.0020511110081126993 -0.24273675828457442 1.0 10232 -360213 Trim46 tripartite motif-containing 46 Novel U 0.002051010156567707 -0.24273780290156213 1.0 10233 -378462 Morn2 MORN repeat containing 2 Novel U 0.002050793309799345 -0.24274004899326038 1.0 10234 -22268 Upk1b uroplakin 1B Novel N 0.002050778253717059 -0.24274020494366572 1.0 10235 -234814 Mthfsd methenyltetrahydrofolate synthetase domain containing Novel U 0.002050184834086651 -0.2427463515646899 1.0 10236 -78334 Cdk19 cyclin dependent kinase 19 Novel U 0.002049076563725155 -0.24275783099266185 1.0 10237 -79554 Cptp ceramide-1-phosphate transfer protein Novel U 0.0020482053356207304 -0.2427668551447274 1.0 10238 -59050 Nsa2 NSA2 ribosome biogenesis homolog Novel U 0.002047882309145379 -0.24277020104234015 1.0 10239 -227298 Retreg2 reticulophagy regulator family member 2 Novel U 0.002047231690579127 -0.24277694012806145 1.0 10240 -67226 Tmem19 transmembrane protein 19 Novel U 0.0020471015548169055 -0.24277828807000856 1.0 10241 -54561 Nap1l3 nucleosome assembly protein 1-like 3 Novel U 0.0020462269787179187 -0.24278734690049175 1.0 10242 -241490 Rbm45 RNA binding motif protein 45 Novel U 0.0020442549493038206 -0.24280777311633597 1.0 10243 -246316 Lgi2 leucine-rich repeat LGI family, member 2 Novel U 0.0020438704112946374 -0.2428117561483941 1.0 10244 -16480 Jup junction plakoglobin Novel U 0.0020426394420765257 -0.24282450648708936 1.0 10245 -228913 Zfp217 zinc finger protein 217 Novel N 0.002042116014691762 -0.242829928130734 1.0 10246 -243300 Nyap1 neuronal tyrosine-phosphorylated phosphoinositide 3-kinase adaptor 1 Novel U 0.0020417249160965593 -0.24283397911712645 1.0 10247 -102635357 Cdc5lrt1 cell division cycle 5 like, retrotransposed 1 Novel U 0.002041471944263632 -0.2428365993910559 1.0 10248 -13478 Dpagt1 dolichyl-phosphate N-acetylglucosaminephosphotransferase 1 Novel U 0.0020414115146690634 -0.2428372253188099 1.0 10249 -58206 Zbtb32 zinc finger and BTB domain containing 32 Novel N 0.0020413491646588213 -0.24283787113816635 1.0 10250 -67529 Fgfr1op2 FGFR1 oncogene partner 2 Novel U 0.002041304025404649 -0.24283833868907723 1.0 10251 -19110 Prl4a1 prolactin family 4, subfamily a, member 1 Novel U 0.0020411047101812816 -0.24284040318960873 1.0 10252 -20624 Eftud2 elongation factor Tu GTP binding domain containing 2 Novel U 0.0020406082839805884 -0.24284554515587636 1.0 10253 -68119 Cmtm3 CKLF-like MARVEL transmembrane domain containing 3 Novel U 0.002040598162236505 -0.24284564999656885 1.0 10254 -546648 Klhdc7b kelch domain containing 7B Novel U 0.002039506955588292 -0.24285695267915955 1.0 10255 -73736 Fcf1 FCF1 rRNA processing protein Novel U 0.002039457961742327 -0.24285746015580548 1.0 10256 -50767 Pnpla6 patatin-like phospholipase domain containing 6 Novel U 0.0020390131188424963 -0.24286206782393846 1.0 10257 -17288 Mep1b meprin 1 beta Novel U 0.0020386027008780024 -0.24286631891972296 1.0 10258 -20568 Slpi secretory leukocyte peptidase inhibitor Novel U 0.0020371423442886285 -0.24288144524526906 1.0 10259 -26559 Hunk hormonally upregulated Neu-associated kinase Novel N 0.0020366619616169514 -0.24288642103319055 1.0 10260 -69709 Ptrhd1 peptidyl-tRNA hydrolase domain containing 1 Novel U 0.0020356888907766347 -0.24289650006896657 1.0 10261 -11545 Parp1 poly (ADP-ribose) polymerase family, member 1 Novel U 0.0020353328284102067 -0.2429001881512531 1.0 10262 -320790 Chd7 chromodomain helicase DNA binding protein 7 Novel U 0.0020344829967077894 -0.24290899068009003 1.0 10263 -50755 Fbh1 F-box DNA helicase 1 Novel N 0.002034339022173436 -0.24291048196358395 1.0 10264 -66193 Pithd1 PITH (C-terminal proteasome-interacting domain of thioredoxin-like) domain containing 1 Novel N 0.0020340491830680854 -0.24291348410750924 1.0 10265 -320808 Dcaf5 DDB1 and CUL4 associated factor 5 Novel U 0.002033272746954111 -0.2429215264072538 1.0 10266 -105245675 Gm21560 predicted gene, 21560 Novel U 0.0020315080277760467 -0.2429398053104882 1.0 10267 -14008 Etv2 ets variant 2 Novel U 0.002031261984556178 -0.24294235381807133 1.0 10268 -20826 Snu13 SNU13 homolog, small nuclear ribonucleoprotein (U4/U6.U5) Novel N 0.002031155919412568 -0.24294345243734217 1.0 10269 -71820 Dync2i2 dynein 2 intermediate chain 2 Novel U 0.002031121654096873 -0.2429438073563557 1.0 10270 -20917 Suclg2 succinate-Coenzyme A ligase, GDP-forming, beta subunit Novel U 0.0020311073145450657 -0.24294395588496198 1.0 10271 -665802 Pramel35 PRAME like 35 Novel U 0.0020303150158697244 -0.24295216248859575 1.0 10272 -236285 Lancl3 LanC lantibiotic synthetase component C-like 3 (bacterial) Novel U 0.0020284863129682172 -0.24297110413313416 1.0 10273 -407788 Tsbp1 testis expressed basic protein 1 Novel U 0.00202818838728985 -0.2429741900375169 1.0 10274 -108168662 Gm20924 predicted gene, 20924 Novel U 0.0020278663742192707 -0.24297752543831638 1.0 10275 -13446 Doc2a double C2, alpha Novel U 0.0020278324954834293 -0.24297787635314852 1.0 10276 -12905 Cradd CASP2 and RIPK1 domain containing adaptor with death domain Novel U 0.002027766778238357 -0.24297855705021265 1.0 10277 -22062 Trp73 transformation related protein 73 Novel N 0.0020276652154570477 -0.2429796090341627 1.0 10278 -214917 Antkmt adenine nucleotide translocase lysine methyltransferase Novel N 0.0020275460046916376 -0.242980843815352 1.0 10279 -100727 Ugt2b34 UDP glucuronosyltransferase 2 family, polypeptide B34 Novel U 0.002027379206770463 -0.24298257150273636 1.0 10280 -20623 Snrk SNF related kinase Novel N 0.002027183834658417 -0.2429845951606504 1.0 10281 -68955 Srrm4 serine/arginine repetitive matrix 4 Novel N 0.0020270169594190078 -0.24298632364889447 1.0 10282 -667992 Tas2r103 taste receptor, type 2, member 103 Novel U 0.0020270069195769754 -0.24298642764124823 1.0 10283 -237891 Gas2l2 growth arrest-specific 2 like 2 Novel U 0.0020268844925018094 -0.2429876957368682 1.0 10284 -230393 Focad focadhesin Novel U 0.002026179865987881 -0.24299499423513612 1.0 10285 -100042130 Gm10376 predicted gene 10376 Novel U 0.002026167174245272 -0.24299512569578885 1.0 10286 -208922 Cpeb3 cytoplasmic polyadenylation element binding protein 3 Novel N 0.00202503639411064 -0.24300683827925096 1.0 10287 -73419 Armt1 acidic residue methyltransferase 1 Novel N 0.002023530423671399 -0.24302243707155452 1.0 10288 -171241 Vmn1r75 vomeronasal 1 receptor 75 Novel U 0.002023521456444164 -0.24302252995379944 1.0 10289 -69171 Cnppd1 cyclin Pas1/PHO80 domain containing 1 Novel U 0.002022657921333467 -0.24303147442208883 1.0 10290 -19894 Rph3a rabphilin 3A Novel U 0.0020225755806517914 -0.24303232730416283 1.0 10291 -387349 Tas2r121 taste receptor, type 2, member 121 Novel U 0.002020779241383797 -0.24305093372724923 1.0 10292 -19070 Mob4 MOB family member 4, phocein Novel U 0.002019919120036281 -0.24305984283589185 1.0 10293 -330406 B4galnt3 beta-1,4-N-acetyl-galactosaminyl transferase 3 Novel U 0.002019887955678781 -0.24306016563528238 1.0 10294 -69168 Bola1 bolA family member 1 Novel U 0.002019601493688711 -0.2430631327991586 1.0 10295 -240913 Adamts4 ADAM metallopeptidase with thrombospondin type 1 motif 4 Novel U 0.00201905285652351 -0.24306881556488028 1.0 10296 -171228 Vmn1r225 vomeronasal 1 receptor 225 Novel U 0.002017892727007036 -0.24308083214827472 1.0 10297 -329941 Col8a2 collagen, type VIII, alpha 2 Novel N 0.0020177204298966684 -0.24308261679607993 1.0 10298 -12873 Cpa3 carboxypeptidase A3, mast cell Novel N 0.002015881530606718 -0.24310166405447467 1.0 10299 -56404 Trip4 thyroid hormone receptor interactor 4 Novel U 0.00201531426256769 -0.24310753979817498 1.0 10300 -16431 Itm2a integral membrane protein 2A Novel U 0.0020149848397353846 -0.2431109519490428 1.0 10301 -14198 Fhit fragile histidine triad gene Novel U 0.0020148882542064335 -0.2431119523787766 1.0 10302 -67888 Tmem100 transmembrane protein 100 Novel U 0.002014850834571572 -0.2431123399701244 1.0 10303 -11464 Actc1 actin, alpha, cardiac muscle 1 Novel U 0.0020139264569209885 -0.24312191464344185 1.0 10304 -109346 Ankrd39 ankyrin repeat domain 39 Novel U 0.002013307415153717 -0.2431283266577174 1.0 10305 -14470 Rabac1 Rab acceptor 1 (prenylated) Novel U 0.002012578593179909 -0.24313587577176335 1.0 10306 -12790 Cnga3 cyclic nucleotide gated channel alpha 3 Novel N 0.0020123687124675277 -0.24313804970928274 1.0 10307 -382137 Fdxacb1 ferredoxin-fold anticodon binding domain containing 1 Novel U 0.0020123611016541715 -0.24313812854183728 1.0 10308 -80748 BC004004 cDNA sequence BC004004 Novel U 0.002011950092029397 -0.2431423857660195 1.0 10309 -19935 Mrpl23 mitochondrial ribosomal protein L23 Novel U 0.002011442709709013 -0.24314764121541474 1.0 10310 -171269 Vmn1r210 vomeronasal 1 receptor 210 Novel U 0.0020109259253676785 -0.2431529940506339 1.0 10311 -268567 Tmem229b transmembrane protein 229B Novel U 0.0020095056890126074 -0.24316770481211195 1.0 10312 -93896 Glp2r glucagon-like peptide 2 receptor Novel N 0.002008785880518476 -0.24317516056483174 1.0 10313 -450219 Gsdma3 gasdermin A3 Novel U 0.0020075032324791036 -0.2431884461910588 1.0 10314 -627814 Vmn2r109 vomeronasal 2, receptor 109 Novel U 0.0020073959176264548 -0.24318955775477472 1.0 10315 -29807 Tpk1 thiamine pyrophosphokinase Novel N 0.0020073551471919697 -0.24318998005359488 1.0 10316 -225182 Rbbp8 retinoblastoma binding protein 8, endonuclease Novel U 0.0020071744535937776 -0.243191851671945 1.0 10317 -100038991 Rpl35rt ribosomal protein L35, retrotransposed Novel U 0.002006926137080938 -0.243194423726222 1.0 10318 -434285 BB014433 expressed sequence BB014433 Novel U 0.0020060778893148715 -0.24320320984869828 1.0 10319 -100040208 Gm2663 predicted gene 2663 Novel U 0.0020059346923804963 -0.24320469307783718 1.0 10320 -666706 Gm8246 predicted gene 8246 Novel U 0.0020058169712131022 -0.24320591242981918 1.0 10321 -58860 Adamdec1 ADAM-like, decysin 1 Novel U 0.0020047610563829216 -0.24321684956091885 1.0 10322 -71276 Ccdc57 coiled-coil domain containing 57 Novel U 0.0020042071791291573 -0.24322258660330562 1.0 10323 -68099 Cibar1 CBY1 interacting BAR domain containing 1 Novel N 0.0020032030121801734 -0.243232987731553 1.0 10324 -75415 Arhgap12 Rho GTPase activating protein 12 Novel U 0.00200304328413395 -0.243234642189405 1.0 10325 -624855 Cks1brt CDC28 protein kinase 1b, retrogene Novel U 0.002002940368947891 -0.24323570818151902 1.0 10326 -16531 Kcnma1 potassium large conductance calcium-activated channel, subfamily M, alpha member 1 Novel U 0.0020026686098324623 -0.24323852305350305 1.0 10327 -18647 Cdk14 cyclin dependent kinase 14 Novel N 0.0020023473112115394 -0.24324185105405643 1.0 10328 -636808 Cntnap5a contactin associated protein-like 5A Novel U 0.00200202341765641 -0.24324520593285304 1.0 10329 -21414 Tcf7 transcription factor 7, T cell specific Novel U 0.0020018195975133944 -0.24324731709519418 1.0 10330 -20657 Sod3 superoxide dismutase 3, extracellular Novel U 0.0020013431195747174 -0.24325225243801962 1.0 10331 -574405 Pwwp4b PWWP domain containing 4B Novel U 0.002000748379424475 -0.24325841273694482 1.0 10332 -140810 Ttbk2 tau tubulin kinase 2 Novel U 0.0019995852424834364 -0.243270460471144 1.0 10333 -14536 Nr6a1 nuclear receptor subfamily 6, group A, member 1 Novel U 0.001999382335724565 -0.24327256217268223 1.0 10334 -71853 Pdia6 protein disulfide isomerase associated 6 Novel U 0.0019984046386856925 -0.24328268912647077 1.0 10335 -639774 Skint8 selection and upkeep of intraepithelial T cells 8 Novel U 0.001998015535635316 -0.2432867194430755 1.0 10336 -101359 Prrt4 proline-rich transmembrane protein 4 Novel U 0.0019978218448779292 -0.2432887256855733 1.0 10337 -12563 Cdh6 cadherin 6 Novel N 0.0019968686347028755 -0.24329859900523138 1.0 10338 -16780 Lamb3 laminin, beta 3 Novel U 0.001996396729412708 -0.2433034869847139 1.0 10339 -83553 Tktl1 transketolase-like 1 Novel N 0.001995799971904848 -0.24330966817936298 1.0 10340 -12993 Csn1s2a casein alpha s2-like A Novel U 0.0019955489634591933 -0.2433122681165916 1.0 10341 -72554 Utp14a UTP14A small subunit processome component Novel U 0.0019950978497651523 -0.24331694073740492 1.0 10342 -19892 Rpe65 retinal pigment epithelium 65 Novel U 0.0019950775283732033 -0.24331715122571468 1.0 10343 -68440 Dusp23 dual specificity phosphatase 23 Novel N 0.001993398316081578 -0.2433345444514302 1.0 10344 -238328 Vash1 vasohibin 1 Novel U 0.0019932044413958345 -0.24333655259905185 1.0 10345 -270106 Rpl13 ribosomal protein L13 Novel N 0.001992789333593512 -0.24334085227202237 1.0 10346 -101142 Itfg2 integrin alpha FG-GAP repeat containing 2 Novel N 0.0019926125843163214 -0.2433426830352252 1.0 10347 -69376 Zpbp2 zona pellucida binding protein 2 Novel U 0.0019919861398410206 -0.2433491717265071 1.0 10348 -215654 Cdh12 cadherin 12 Novel U 0.001991813013601138 -0.24335096496240857 1.0 10349 -671535 Parp10 poly (ADP-ribose) polymerase family, member 10 Novel U 0.001991725284365886 -0.2433518736589434 1.0 10350 -72981 Thap12 THAP domain containing 12 Novel N 0.0019914003800183943 -0.2433552390074941 1.0 10351 -75452 Ascc2 activating signal cointegrator 1 complex subunit 2 Novel U 0.001991313671077111 -0.24335613713585746 1.0 10352 -67241 Smc6 structural maintenance of chromosomes 6 Novel U 0.001991044481414734 -0.2433589253935312 1.0 10353 -381062 Ermard ER membrane associated RNA degradation Novel U 0.001990830129127122 -0.24336114564747988 1.0 10354 -72194 Fbxl20 F-box and leucine-rich repeat protein 20 Novel U 0.0019899002150263715 -0.24337077766716617 1.0 10355 -233549 Mogat2 monoacylglycerol O-acyltransferase 2 Novel U 0.001989656261532193 -0.2433733045294393 1.0 10356 -68115 Maip1 matrix AAA peptidase interacting protein 1 Novel U 0.0019895396544593815 -0.24337451234166627 1.0 10357 -108168681 LOC108168681 PRAME family member 8-like Novel U 0.0019887874794030356 -0.24338230334617345 1.0 10358 -102443350 Xndc1 Xrcc1 N-terminal domain containing 1 Novel U 0.0019887322987502966 -0.24338287490556057 1.0 10359 -240047 Mmp25 matrix metallopeptidase 25 Novel U 0.0019871999283773726 -0.24339874714750934 1.0 10360 -16651 Sspn sarcospan Novel N 0.0019870898391512568 -0.2433998874480945 1.0 10361 -230119 Zbtb5 zinc finger and BTB domain containing 5 Novel N 0.0019868106356059306 -0.24340277942923863 1.0 10362 -60507 Qtrt1 queuine tRNA-ribosyltransferase catalytic subunit 1 Novel N 0.0019866017846360178 -0.24340494270071938 1.0 10363 -68897 Disp1 dispatched RND transporter family member 1 Novel U 0.0019857357040977785 -0.2434139135344636 1.0 10364 -231207 Cpeb2 cytoplasmic polyadenylation element binding protein 2 Novel N 0.001985662678527172 -0.24341466993092337 1.0 10365 -56698 Phax phosphorylated adaptor for RNA export Novel N 0.00198499993314924 -0.2434215346257614 1.0 10366 -237730 Fbll1 fibrillarin-like 1 Novel U 0.0019823836588268905 -0.24344863390918692 1.0 10367 -242627 Skint5 selection and upkeep of intraepithelial T cells 5 Novel U 0.0019823670714389893 -0.24344880572080552 1.0 10368 -100038657 Myocos myocilin opposite strand Novel U 0.001982226645605179 -0.24345026024697586 1.0 10369 -16625 Serpina3c serine (or cysteine) peptidase inhibitor, clade A, member 3C Novel U 0.001981055531459406 -0.24346239060879948 1.0 10370 -258075 Or7g19 olfactory receptor family 7 subfamily G member 19 Novel U 0.001980820157178 -0.24346482860786875 1.0 10371 -54124 Cks1b CDC28 protein kinase 1b Novel U 0.001980677953261088 -0.24346630155136545 1.0 10372 -114896 Afg3l1 AFG3-like AAA ATPase 1 Novel U 0.0019805623396581978 -0.24346749907326357 1.0 10373 -628946 Vmn1r77 vomeronasal 1 receptor 77 Novel U 0.0019805354017185376 -0.24346777809555703 1.0 10374 -319583 Lig4 ligase IV, DNA, ATP-dependent Novel U 0.001979956065859886 -0.24347377883733634 1.0 10375 -16477 Junb jun B proto-oncogene Novel N 0.0019797585342306604 -0.24347582486345834 1.0 10376 -381994 E030018B13Rik RIKEN cDNA E030018B13 gene Novel U 0.001979555704675971 -0.24347792576531815 1.0 10377 -22311 Vmn2r32 vomeronasal 2, receptor 32 Novel U 0.001978485697267017 -0.2434890088668855 1.0 10378 -232430 Crebl2 cAMP responsive element binding protein-like 2 Novel N 0.001978447339662547 -0.24348940617369166 1.0 10379 -18010 Neu1 neuraminidase 1 Novel U 0.001978378765447521 -0.24349011646315666 1.0 10380 -227606 Tbpl2 TATA box binding protein like 2 Novel U 0.0019778209386550746 -0.24349589441473524 1.0 10381 -57330 Gigyf1 GRB10 interacting GYF protein 1 Novel U 0.001977609891963426 -0.24349808042942955 1.0 10382 -20493 Slc10a1 solute carrier family 10 (sodium/bile acid cotransporter family), member 1 Novel N 0.001977465321601483 -0.24349957788448606 1.0 10383 -50493 Txnrd1 thioredoxin reductase 1 Novel U 0.0019767781908326815 -0.2435066951624011 1.0 10384 -224405 Cyyr1 cysteine and tyrosine-rich protein 1 Novel U 0.001976762123915986 -0.24350686158299606 1.0 10385 -667916 Speer1g spermatogenesis associated glutamate (E)-rich protein 1G Novel U 0.0019754390504291945 -0.24352056593467855 1.0 10386 -228942 Cbln4 cerebellin 4 precursor protein Novel U 0.001975418061952081 -0.24352078333263452 1.0 10387 -238564 Mylk4 myosin light chain kinase family, member 4 Novel U 0.0019753273642034884 -0.2435217227769329 1.0 10388 -106794 Dhx57 DExH-box helicase 57 Novel U 0.0019749093398445505 -0.243526052659501 1.0 10389 -74522 Morc2a microrchidia 2A Novel U 0.001974180407370263 -0.2435336029181073 1.0 10390 -171265 Vmn1r185 vomeronasal 1 receptor 185 Novel U 0.001972909696418002 -0.24354676490037844 1.0 10391 -103136 Pwp1 PWP1 homolog, endonuclein Novel N 0.0019729057444010734 -0.24354680583523988 1.0 10392 -80385 Tusc2 tumor suppressor 2, mitochondrial calcium regulator Novel U 0.001971830422462252 -0.24355794398453287 1.0 10393 -17180 Matn1 matrilin 1, cartilage matrix protein Novel N 0.0019716652709523145 -0.24355965461844375 1.0 10394 -72325 Vps9d1 VPS9 domain containing 1 Novel N 0.0019713486921665766 -0.24356293373109947 1.0 10395 -70394 Kptn kaptin Novel U 0.0019711075803509593 -0.2435654311593595 1.0 10396 -11606 Agt angiotensinogen Novel U 0.00197037933392984 -0.24357297431184963 1.0 10397 -108072 Grm6 glutamate receptor, metabotropic 6 Novel U 0.001970309618240075 -0.24357369642467247 1.0 10398 -19119 Prm2 protamine 2 Novel U 0.0019698387198234077 -0.24357857397499233 1.0 10399 -207212 Arhgef17 Rho guanine nucleotide exchange factor 17 Novel U 0.0019698029841781718 -0.24357894412363093 1.0 10400 -71458 Bcor BCL6 interacting corepressor Novel U 0.00196905829796445 -0.24358665755895242 1.0 10401 -22321 Vars1 valyl-tRNA synthetase 1 Novel N 0.0019689674958343457 -0.24358759808443112 1.0 10402 -17717 ND2 NADH dehydrogenase subunit 2 Novel N 0.0019687737638101445 -0.24358960475436917 1.0 10403 -244886 Tmem266 transmembrane protein 266 Novel U 0.0019687024070780637 -0.24359034386505432 1.0 10404 -236785 Or5o1 olfactory receptor family 5 subfamily N member 1 Novel U 0.0019686683455314145 -0.2435906966734348 1.0 10405 -14194 Fh1 fumarate hydratase 1 Novel U 0.001967483185953066 -0.24360297251738736 1.0 10406 -21770 Ppp2r5d protein phosphatase 2, regulatory subunit B', delta Novel U 0.0019673189960859416 -0.24360467319063356 1.0 10407 -208440 Dip2c disco interacting protein 2 homolog C Novel U 0.0019665268806305725 -0.24361287789648087 1.0 10408 -77987 Ascc3 activating signal cointegrator 1 complex subunit 3 Novel U 0.001966522825076044 -0.24361291990378137 1.0 10409 -14734 Gpc3 glypican 3 Novel U 0.0019662856262457175 -0.2436153768014684 1.0 10410 -68525 Evc2 EvC ciliary complex subunit 2 Novel U 0.00196626202474851 -0.2436156212650006 1.0 10411 -24046 Scn11a sodium channel, voltage-gated, type XI, alpha Novel U 0.001965579149598612 -0.24362269446335494 1.0 10412 -228785 Mylk2 myosin, light polypeptide kinase 2, skeletal muscle Novel U 0.0019647859517230104 -0.24363091038087545 1.0 10413 -268686 S100z S100 calcium binding protein, zeta Novel U 0.0019634639657177036 -0.24364460346846048 1.0 10414 -278279 Tmtc2 transmembrane and tetratricopeptide repeat containing 2 Novel N 0.001962721329924691 -0.24365229566559163 1.0 10415 -75625 Mageh1 MAGE family member H1 Novel N 0.0019620159873981317 -0.24365960158029484 1.0 10416 -68307 Lrriq4 leucine-rich repeats and IQ motif containing 4 Novel U 0.001961987711942254 -0.24365989445653735 1.0 10417 -237711 Eml6 echinoderm microtubule associated protein like 6 Novel U 0.0019609629048019223 -0.24367050937520818 1.0 10418 -117586 A1bg alpha-1-B glycoprotein Novel U 0.0019605566720657737 -0.24367471712053504 1.0 10419 -54608 Abhd2 abhydrolase domain containing 2 Novel U 0.001960331295444135 -0.2436770515641731 1.0 10420 -68031 Rnf146 ring finger protein 146 Novel U 0.001960257093216497 -0.2436778201484077 1.0 10421 -70285 Rpf1 ribosome production factor 1 homolog Novel U 0.001960248982046356 -0.2436779041636414 1.0 10422 -378425 Nlrp12 NLR family, pyrin domain containing 12 Novel U 0.0019596398063135155 -0.24368421398585657 1.0 10423 -279561 Wnk3 WNK lysine deficient protein kinase 3 Novel U 0.001958971139028743 -0.24369114001961098 1.0 10424 -18627 Per2 period circadian clock 2 Novel N 0.0019588155677251187 -0.2436927514220598 1.0 10425 -71206 Katnal2 katanin p60 subunit A-like 2 Novel U 0.0019584726241916365 -0.24369630361990596 1.0 10426 -75772 Pnpla5 patatin-like phospholipase domain containing 5 Novel N 0.0019580228859373107 -0.2437009619939599 1.0 10427 -207911 Mchr1 melanin-concentrating hormone receptor 1 Novel N 0.0019575675167704163 -0.24370567869282117 1.0 10428 -142681 Slc34a3 solute carrier family 34 (sodium phosphate), member 3 Novel N 0.001956124934831568 -0.24372062090912142 1.0 10429 -18286 Odf2 outer dense fiber of sperm tails 2 Novel N 0.001956012222110681 -0.24372178838377914 1.0 10430 -12854 Cort cortistatin Novel N 0.001955536926548942 -0.2437267114795831 1.0 10431 -74528 Mgme1 mitochondrial genome maintenance exonuclease 1 Novel U 0.0019553292754179163 -0.24372886232317212 1.0 10432 -381290 Atp2b4 ATPase, Ca++ transporting, plasma membrane 4 Novel U 0.0019549895923607636 -0.2437323807491116 1.0 10433 -171250 Vmn1r206 vomeronasal 1 receptor 206 Novel U 0.001953842276231547 -0.24374426461186208 1.0 10434 -70935 Speer4f1 spermatogenesis associated glutamate (E)-rich protein 4F1 Novel U 0.001953596231677355 -0.2437468131332661 1.0 10435 -100129 Gpr153 G protein-coupled receptor 153 Novel U 0.0019524031216946697 -0.2437591713272454 1.0 10436 -243897 Ggn gametogenetin Novel N 0.001952083071237045 -0.24376248639936438 1.0 10437 -70571 Tcerg1l transcription elongation regulator 1-like Novel U 0.0019517524728004765 -0.24376591072710252 1.0 10438 -16485 Kcna1 potassium voltage-gated channel, shaker-related subfamily, member 1 Novel N 0.0019510483256082662 -0.24377320426057184 1.0 10439 -72599 Pdia5 protein disulfide isomerase associated 5 Novel U 0.0019502597649683482 -0.24378137214575757 1.0 10440 -332937 Tfap2e transcription factor AP-2, epsilon Novel U 0.0019494217220417933 -0.24379005256684164 1.0 10441 -382014 Ano8 anoctamin 8 Novel N 0.0019494002029692326 -0.24379027546068782 1.0 10442 -58991 Ghrl ghrelin Novel U 0.0019488435452118577 -0.2437960413034396 1.0 10443 -75015 Samd13 sterile alpha motif domain containing 13 Novel U 0.0019483513194703203 -0.2438011397614894 1.0 10444 -56772 Mllt11 myeloid/lymphoid or mixed-lineage leukemia; translocated to, 11 Novel U 0.0019474020060759065 -0.2438109727184217 1.0 10445 -214766 Mmp21 matrix metallopeptidase 21 Novel N 0.0019473758888249827 -0.24381124324004821 1.0 10446 -68509 Ptx4 pentraxin 4 Novel U 0.0019472006103249298 -0.24381305876898982 1.0 10447 -74185 Gbe1 1,4-alpha-glucan branching enzyme 1 Novel U 0.0019471240033805315 -0.24381385226120159 1.0 10448 -76889 Coq8b coenzyme Q8B Novel N 0.0019465119695518264 -0.24382019168747976 1.0 10449 -210622 Pamr1 peptidase domain containing associated with muscle regeneration 1 Novel U 0.0019456840490730412 -0.2438287672605826 1.0 10450 -664804 Gm7347 predicted gene 7347 Novel U 0.001945621985547382 -0.24382941011254117 1.0 10451 -83925 Trps1 transcriptional repressor GATA binding 1 Novel U 0.0019454693237481754 -0.24383099137843883 1.0 10452 -213696 Duoxa1 dual oxidase maturation factor 1 Novel N 0.0019454061484418445 -0.24383164574618504 1.0 10453 -385380 Tex28 testis expressed 28 Novel U 0.0019440962159013053 -0.24384521398437822 1.0 10454 -11847 Arg2 arginase type II Novel N 0.0019430977297701455 -0.24385555627090133 1.0 10455 -113853 Vmn1r53 vomeronasal 1 receptor 53 Novel U 0.0019426339808057728 -0.24386035976742937 1.0 10456 -21744 Adad1 adenosine deaminase domain containing 1 Novel U 0.0019423999681550542 -0.24386278366277278 1.0 10457 -76453 Prss23 serine protease 23 Novel U 0.0019423759588923372 -0.24386303234992673 1.0 10458 -382034 Gse1 genetic suppressor element 1, coiled-coil protein Novel U 0.001942232263033004 -0.24386452074691395 1.0 10459 -22355 Vipr2 vasoactive intestinal peptide receptor 2 Novel N 0.0019409557701470764 -0.24387774261826395 1.0 10460 -432442 Akap7 A kinase anchor protein 7 Novel U 0.0019409350191033333 -0.24387795755689287 1.0 10461 -100504425 Tincr TINCR ubiquitin domain containing Novel U 0.0019399969909777428 -0.24388767362138172 1.0 10462 -75512 Gpx6 glutathione peroxidase 6 Novel U 0.0019399823691150307 -0.24388782507415505 1.0 10463 -12862 Cox6a2 cytochrome c oxidase subunit 6A2 Novel N 0.0019386615777728967 -0.2439015057874582 1.0 10464 -76438 Rftn1 raftlin lipid raft linker 1 Novel U 0.0019367842146942804 -0.24392095145251153 1.0 10465 -234740 Tmem231 transmembrane protein 231 Novel U 0.0019366703169723157 -0.24392213120137143 1.0 10466 -11428 Aco1 aconitase 1 Novel N 0.001936206651149983 -0.24392693383671696 1.0 10467 -12817 Col13a1 collagen, type XIII, alpha 1 Novel U 0.0019354256286801324 -0.24393502364178493 1.0 10468 -101434 Ceacam15 CEA cell adhesion molecule 15 Novel U 0.0019352343965389593 -0.2439370044180168 1.0 10469 -17256 Mea1 male enhanced antigen 1 Novel N 0.0019350847197868208 -0.2439385547648951 1.0 10470 -242785 Klhl21 kelch-like 21 Novel U 0.0019347638496196203 -0.2439418783275389 1.0 10471 -17995 Ndufv1 NADH:ubiquinone oxidoreductase core subunit V1 Novel N 0.001934666792560568 -0.24394288364136602 1.0 10472 -110611 Hdlbp high density lipoprotein (HDL) binding protein Novel U 0.0019345175400153297 -0.24394442959432314 1.0 10473 -12497 Entpd6 ectonucleoside triphosphate diphosphohydrolase 6 Novel U 0.0019338572088515923 -0.24395126928280994 1.0 10474 -252905 Vmn1r72 vomeronasal 1 receptor 72 Novel U 0.0019337806541172302 -0.24395206223423188 1.0 10475 -100041179 Pramel56 PRAME like 56 Novel U 0.0019332962325713003 -0.2439570798566801 1.0 10476 -119065974 Msantd7 Myb/SANT DNA binding domain containing 7 Novel U 0.0019330977318273222 -0.24395913592086085 1.0 10477 -384220 Vmn2r16 vomeronasal 2, receptor 16 Novel U 0.0019326121348207264 -0.24396416571869203 1.0 10478 -81799 C1qtnf3 C1q and tumor necrosis factor related protein 3 Novel U 0.0019322069888923555 -0.24396836220689966 1.0 10479 -74549 Mau2 MAU2 sister chromatid cohesion factor Novel U 0.0019318474405593076 -0.24397208639671383 1.0 10480 -100039239 Ctxnd1 cortexin domain containing 1 Novel U 0.001931761342673341 -0.24397297819578637 1.0 10481 -16907 Lmnb2 lamin B2 Novel U 0.0019315862658172273 -0.24397479163610666 1.0 10482 -626834 Klk13 kallikrein related-peptidase 13 Novel U 0.0019309960761474847 -0.2439809048013044 1.0 10483 -67471 Gpatch1 G patch domain containing 1 Novel N 0.001930374577175373 -0.24398734226722688 1.0 10484 -258311 Or52s19 olfactory receptor family 52 subfamily S member 19 Novel U 0.0019291781713649642 -0.24399973459928137 1.0 10485 -328572 Ep300 E1A binding protein p300 Novel U 0.0019289808549662055 -0.24400177839605328 1.0 10486 -66722 Spag16 sperm associated antigen 16 Novel N 0.0019269185286922826 -0.24402313990380323 1.0 10487 -226896 Tfap2d transcription factor AP-2, delta Novel U 0.0019267634317457962 -0.2440247463928764 1.0 10488 -12805 Cntn1 contactin 1 Novel U 0.0019254311447131271 -0.2440385461781642 1.0 10489 -14782 Gsr glutathione reductase Novel N 0.0019253323538065458 -0.24403956945112704 1.0 10490 -115488379 Gm6526 predicted gene 6526 Novel U 0.0019217243656185472 -0.2440769408741721 1.0 10491 -67088 Cand2 cullin associated and neddylation dissociated 2 (putative) Novel U 0.0019216975386392382 -0.2440772187471419 1.0 10492 -26416 Mapk14 mitogen-activated protein kinase 14 Novel U 0.0019212790276913895 -0.2440815536697819 1.0 10493 -381356 Cacfd1 calcium channel flower domain containing 1 Novel U 0.0019195973139536783 -0.24409897280539375 1.0 10494 -56615 Mgst1 microsomal glutathione S-transferase 1 Novel U 0.0019174851540061963 -0.24412085048869622 1.0 10495 -547176 Zc3h12b zinc finger CCCH-type containing 12B Novel U 0.0019174528497282724 -0.244121185095345 1.0 10496 -245839 Gzmn granzyme N Novel U 0.0019168496156917636 -0.24412743337366494 1.0 10497 -382007 Adam26b a disintegrin and metallopeptidase domain 26B Novel U 0.001915968243543992 -0.24413656259739802 1.0 10498 -72324 Plxdc1 plexin domain containing 1 Novel U 0.0019149321273257012 -0.24414729465512658 1.0 10499 -100470 Lao1 L-amino acid oxidase 1 Novel U 0.0019149098658084473 -0.24414752523919048 1.0 10500 -12890 Cplx2 complexin 2 Novel U 0.0019148490081059035 -0.24414815560127284 1.0 10501 -54137 Acrbp proacrosin binding protein Novel U 0.001914640443451267 -0.24415031590710937 1.0 10502 -68634 Tm2d3 TM2 domain containing 3 Novel N 0.001914075732601791 -0.2441561651635244 1.0 10503 -54192 Pbsn probasin Novel U 0.0019138627100131912 -0.24415837164449433 1.0 10504 -26462 Txnrd2 thioredoxin reductase 2 Novel U 0.0019135699467044802 -0.24416140407722192 1.0 10505 -74434 Sohlh2 spermatogenesis and oogenesis specific basic helix-loop-helix 2 Novel U 0.0019134966559855799 -0.24416216322007897 1.0 10506 -14789 P3h3 prolyl 3-hydroxylase 3 Novel N 0.0019134037715309625 -0.2441631253142065 1.0 10507 -243362 Stard13 StAR related lipid transfer domain containing 13 Novel U 0.0019130678033635563 -0.24416660526144013 1.0 10508 -12819 Col15a1 collagen, type XV, alpha 1 Novel U 0.001912895069132253 -0.24416839443692964 1.0 10509 -29863 Pde7b phosphodiesterase 7B Novel N 0.0019126782804230144 -0.24417063992725338 1.0 10510 -64340 Dhx38 DEAH-box helicase 38 Novel N 0.0019111821283507196 -0.24418613702123484 1.0 10511 -64424 Polr1e polymerase (RNA) I polypeptide E Novel N 0.0019110642234532065 -0.24418735827628738 1.0 10512 -243874 Nlrp9b NLR family, pyrin domain containing 9B Novel U 0.0019110173542940354 -0.24418784374549735 1.0 10513 -16514 Kcnj11 potassium inwardly rectifying channel, subfamily J, member 11 Novel U 0.0019103879074385186 -0.24419436353533483 1.0 10514 -66366 Ergic3 ERGIC and golgi 3 Novel U 0.001908895959238145 -0.24420981708574915 1.0 10515 -100710 Pds5b PDS5 cohesin associated factor B Novel U 0.0019083266357424506 -0.24421571411980206 1.0 10516 -231670 Fbxo21 F-box protein 21 Novel U 0.0019082788321317119 -0.24421620926803062 1.0 10517 -19934 Rpl22 ribosomal protein L22 Novel N 0.0019082410146476771 -0.24421660098028708 1.0 10518 -81877 Tnxb tenascin XB Novel U 0.0019081384069727979 -0.2442176637872104 1.0 10519 -13144 Dapk3 death-associated protein kinase 3 Novel U 0.0019077875672096 -0.24422129777394438 1.0 10520 -245423 Tm9sf5 transmembrane 9 superfamily member 5 Novel U 0.0019071669008727133 -0.24422772661545855 1.0 10521 -381280 Hjurp Holliday junction recognition protein Novel U 0.0019064711673024664 -0.24423493300090815 1.0 10522 -68166 Spire1 spire type actin nucleation factor 1 Novel U 0.001906397821014271 -0.24423569271935017 1.0 10523 -18559 Pctp phosphatidylcholine transfer protein Novel N 0.0019057348369021956 -0.24424255988698862 1.0 10524 -268882 Fbxo45 F-box protein 45 Novel U 0.0019054030741898977 -0.2442459962742565 1.0 10525 -102637189 Gm34066 predicted gene, 34066 Novel U 0.0019048500165142507 -0.24425172482748003 1.0 10526 -70461 Crtc3 CREB regulated transcription coactivator 3 Novel N 0.0019046589258314122 -0.24425370413849112 1.0 10527 -17984 Ndn necdin, MAGE family member Novel U 0.0019038609834167901 -0.24426196919979085 1.0 10528 -17827 Mtx1 metaxin 1 Novel N 0.0019037381044537459 -0.2442632419760506 1.0 10529 -319535 Zfp182 zinc finger protein 182 Novel U 0.001903638577435675 -0.244264272873632 1.0 10530 -12055 Bcl7c B cell CLL/lymphoma 7C Novel U 0.001903477726718621 -0.2442659389600716 1.0 10531 -636697 Vmn1r60 vomeronasal 1 receptor 60 Novel U 0.0019026302205161732 -0.24427471740145626 1.0 10532 -15118 Has3 hyaluronan synthase 3 Novel U 0.0019024670764255416 -0.24427640724258395 1.0 10533 -239420 Csmd3 CUB and Sushi multiple domains 3 Novel U 0.0019024153933189724 -0.2442769425745028 1.0 10534 -66901 Proz protein Z, vitamin K-dependent plasma glycoprotein Novel N 0.001901387982178158 -0.24428758446532503 1.0 10535 -347711 Pramel6 PRAME like 6 Novel U 0.0019010436046274586 -0.2442911515166744 1.0 10536 -19045 Ppp1ca protein phosphatase 1 catalytic subunit alpha Novel N 0.0019010352231838442 -0.2442912383313918 1.0 10537 -75404 Arhgap36 Rho GTPase activating protein 36 Novel U 0.0019008463946959505 -0.244293194210662 1.0 10538 -66694 Uqcrfs1 ubiquinol-cytochrome c reductase, Rieske iron-sulfur polypeptide 1 Novel U 0.0019004778455890188 -0.2442970116301962 1.0 10539 -75565 Sgf29 SAGA complex associated factor 29 Novel U 0.0018986383038294384 -0.24431606554327026 1.0 10540 -75744 Svip small VCP/p97-interacting protein Novel U 0.0018983068984571038 -0.24431949822922255 1.0 10541 -69534 Avpi1 arginine vasopressin-induced 1 Novel U 0.0018973706739730917 -0.24432919561165123 1.0 10542 -329547 Bpi bactericidal permeablility increasing protein Novel U 0.0018967365386928486 -0.24433576396403792 1.0 10543 -26415 Mapk13 mitogen-activated protein kinase 13 Novel U 0.001895339652903824 -0.24435023286112048 1.0 10544 -20021 Polr2c polymerase (RNA) II (DNA directed) polypeptide C Novel N 0.0018950877190414632 -0.24435284238378494 1.0 10545 -52513 Ddx56 DEAD box helicase 56 Novel U 0.0018944557516579737 -0.2443593882811683 1.0 10546 -258589 Or2ag19 olfactory receptor family 2 subfamily AG member 19 Novel U 0.0018920582291001564 -0.24438422174100785 1.0 10547 -15126 Hba-x hemoglobin X, alpha-like embryonic chain in Hba complex Novel N 0.001890329691361753 -0.24440212587807963 1.0 10548 -13347 Dffa DNA fragmentation factor, alpha subunit Novel U 0.0018901776177457595 -0.24440370105159492 1.0 10549 -83457 Fthl17e ferritin, heavy polypeptide-like 17, member E Novel U 0.001889640445216045 -0.24440926506699912 1.0 10550 -503610 Zdhhc18 zinc finger, DHHC domain containing 18 Novel U 0.0018894371952291916 -0.2444113703236815 1.0 10551 -384695 Vmn1r123 vomeronasal 1 receptor 123 Novel U 0.0018883785964231485 -0.2444223352553149 1.0 10552 -70799 Cep192 centrosomal protein 192 Novel U 0.0018879035138170482 -0.2444272561453314 1.0 10553 -68911 Pygo2 pygopus 2 Novel U 0.0018871671689809164 -0.244434883180938 1.0 10554 -68775 Atp6v1c2 ATPase, H+ transporting, lysosomal V1 subunit C2 Novel U 0.001887033837224278 -0.24443626422689022 1.0 10555 -241770 Rims4 regulating synaptic membrane exocytosis 4 Novel U 0.0018870078623021004 -0.24443653327428028 1.0 10556 -12725 Clcn3 chloride channel, voltage-sensitive 3 Novel U 0.0018861187394634982 -0.24444574277941417 1.0 10557 -15395 Hoxa10 homeobox A10 Novel N 0.0018860696632103963 -0.2444462511096305 1.0 10558 -382244 Gm15091 predicted gene 15091 Novel U 0.0018859892052880331 -0.24444708449014543 1.0 10559 -18459 Pabpc2 poly(A) binding protein, cytoplasmic 2 Novel U 0.0018858991519308775 -0.2444480172598585 1.0 10560 -545279 Ms4a15 membrane-spanning 4-domains, subfamily A, member 15 Novel U 0.0018854501344538577 -0.24445266816812483 1.0 10561 -66887 Lonp2 lon peptidase 2, peroxisomal Novel U 0.0018849714383874982 -0.2444576264862439 1.0 10562 -17863 Myb myeloblastosis oncogene Novel U 0.00188417715922505 -0.244465853603698 1.0 10563 -21753 Tes testin LIM domain protein Novel U 0.001883173656138708 -0.24447624785567795 1.0 10564 -14404 Gabre gamma-aminobutyric acid (GABA) A receptor, subunit epsilon Novel U 0.0018829747043224787 -0.24447830859205028 1.0 10565 -223666 Arhgap39 Rho GTPase activating protein 39 Novel U 0.0018826569963182522 -0.24448159940111394 1.0 10566 -231946 Fam221a family with sequence similarity 221, member A Novel U 0.0018825250611415175 -0.24448296598133742 1.0 10567 -20588 Smarcc1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily c, member 1 Novel U 0.0018824832371349379 -0.2444833991930227 1.0 10568 -73469 Rnf38 ring finger protein 38 Novel N 0.001882477455662385 -0.24448345907732533 1.0 10569 -11504 Adamts1 ADAM metallopeptidase with thrombospondin type 1 motif 1 Novel U 0.0018823579656624017 -0.24448469675081716 1.0 10570 -68730 Dus1l dihydrouridine synthase 1 like Novel N 0.0018822987501999585 -0.24448531010263053 1.0 10571 -26919 Zfp346 zinc finger protein 346 Novel U 0.0018821816716082101 -0.24448652279883512 1.0 10572 -216850 Kdm6b KDM1 lysine (K)-specific demethylase 6B Novel N 0.0018809949450171498 -0.2444988148738538 1.0 10573 -216445 Arhgap9 Rho GTPase activating protein 9 Novel U 0.0018808939723439 -0.244499860745484 1.0 10574 -93893 Pcdhb22 protocadherin beta 22 Novel U 0.0018799227651244948 -0.2445099204779359 1.0 10575 -107993 Bfsp2 beaded filament structural protein 2, phakinin Novel N 0.0018797368650284435 -0.24451184602501963 1.0 10576 -110862 Kcnq3 potassium voltage-gated channel, subfamily Q, member 3 Novel N 0.0018772031700310982 -0.24453808995451143 1.0 10577 -12534 Cdk1 cyclin dependent kinase 1 Novel U 0.0018770131582227867 -0.2445400580905756 1.0 10578 -11958 Atp5me ATP synthase membrane subunit e Novel N 0.001876845073149764 -0.2445417991102365 1.0 10579 -66772 Asb17 ankyrin repeat and SOCS box-containing 17 Novel U 0.0018763741500595614 -0.24454667691612403 1.0 10580 -217951 Tmem196 transmembrane protein 196 Novel U 0.0018756883180732105 -0.24455378074129314 1.0 10581 -18041 Nfs1 nitrogen fixation gene 1 (S. cerevisiae) Novel N 0.0018752727804615477 -0.2445580848662147 1.0 10582 -271209 Rp1l1 retinitis pigmentosa 1 homolog like 1 Novel U 0.0018751216161541266 -0.24455965062114168 1.0 10583 -22273 Uqcrc1 ubiquinol-cytochrome c reductase core protein 1 Novel N 0.0018751171408384745 -0.24455969697631408 1.0 10584 -23801 Aloxe3 arachidonate lipoxygenase 3 Novel U 0.001874892956705087 -0.24456201906819808 1.0 10585 -238021 Fscn2 fascin actin-bundling protein 2 Novel N 0.001874762055502679 -0.2445633749385495 1.0 10586 -63986 Gmfg glia maturation factor, gamma Novel N 0.0018744459566176098 -0.24456664908040981 1.0 10587 -101206 Tada3 transcriptional adaptor 3 Novel U 0.0018735135133793874 -0.2445763072968189 1.0 10588 -18504 Pax2 paired box 2 Novel U 0.0018731734783320158 -0.24457982936866154 1.0 10589 -107250 Kazald1 Kazal-type serine peptidase inhibitor domain 1 Novel U 0.0018727917225887293 -0.24458378358210092 1.0 10590 -26438 Psg18 pregnancy specific beta-1-glycoprotein 18 Novel U 0.0018719553274293998 -0.24459244693566626 1.0 10591 -18150 Npm3 nucleoplasmin 3 Novel U 0.0018715190757865575 -0.24459696561584185 1.0 10592 -16825 Ldb1 LIM domain binding 1 Novel N 0.001871091068126279 -0.24460139890511703 1.0 10593 -11416 Slc33a1 solute carrier family 33 (acetyl-CoA transporter), member 1 Novel N 0.0018710649953267006 -0.24460166896631794 1.0 10594 -210573 Tmem151b transmembrane protein 151B Novel U 0.001871063340986283 -0.2446016861019216 1.0 10595 -100034251 Wfdc17 WAP four-disulfide core domain 17 Novel U 0.0018700097067052876 -0.2446125996111678 1.0 10596 -60321 Wbp11 WW domain binding protein 11 Novel U 0.0018689885528394262 -0.24462317668934178 1.0 10597 -16790 Anpep alanyl aminopeptidase, membrane Novel U 0.0018688904929125573 -0.24462419239084074 1.0 10598 -668725 Mrgpra9 MAS-related GPR, member A9 Novel U 0.0018679182378639582 -0.24463426297667296 1.0 10599 -242474 Tmem245 transmembrane protein 245 Novel U 0.0018678407259692241 -0.24463506584233052 1.0 10600 -66294 Fam3a FAM3 metabolism regulating signaling molecule A Novel U 0.0018677113909295888 -0.24463640549041943 1.0 10601 -320844 Amigo3 adhesion molecule with Ig like domain 3 Novel U 0.0018669110259719526 -0.24464469564434002 1.0 10602 -268932 Caskin1 CASK interacting protein 1 Novel U 0.0018655837053735563 -0.24465844398746492 1.0 10603 -433294 Mettl21c methyltransferase 21C, AARS1 lysine Novel N 0.0018648212585926443 -0.24466634138615753 1.0 10604 -71066 Hsfy2 heat shock transcription factor, Y-linked 2 Novel U 0.0018634730661231298 -0.24468030591943732 1.0 10605 -12788 Cnga1 cyclic nucleotide gated channel alpha 1 Novel N 0.0018631616911942977 -0.24468353113071423 1.0 10606 -229700 Rbm15 RNA binding motif protein 15 Novel N 0.0018631150979498599 -0.24468401374200846 1.0 10607 -665525 Vmn1r224 vomeronasal 1 receptor 224 Novel U 0.0018625978055480637 -0.2446893718397012 1.0 10608 -238386 Btbd7 BTB domain containing 7 Novel U 0.0018611072837389062 -0.2447048106156022 1.0 10609 -99543 Olfml3 olfactomedin-like 3 Novel U 0.0018609737983515554 -0.24470619325285625 1.0 10610 -26377 Dapp1 dual adaptor for phosphotyrosine and 3-phosphoinositides 1 Novel N 0.001860615072992887 -0.24470990891832892 1.0 10611 -27217 Mixl1 Mix paired-like homeobox Novel U 0.001860388631833426 -0.24471225438841473 1.0 10612 -11936 Fxyd2 FXYD domain-containing ion transport regulator 2 Novel U 0.0018603586414568966 -0.24471256502774894 1.0 10613 -98741 Kcnb2 potassium voltage gated channel, Shab-related subfamily, member 2 Novel U 0.0018601566364279285 -0.24471465738919843 1.0 10614 -54405 Ndufa1 NADH:ubiquinone oxidoreductase subunit A1 Novel N 0.0018600271511372715 -0.24471599859358245 1.0 10615 -81904 Cacng7 calcium channel, voltage-dependent, gamma subunit 7 Novel U 0.0018596338551192869 -0.24472007234080784 1.0 10616 -107047 Psmg2 proteasome (prosome, macropain) assembly chaperone 2 Novel U 0.0018592485840028656 -0.24472406296636665 1.0 10617 -271047 Serpina3b serine (or cysteine) peptidase inhibitor, clade A, member 3B Novel U 0.0018589765047076845 -0.244726881154762 1.0 10618 -94090 Trim9 tripartite motif-containing 9 Novel U 0.0018572995933904429 -0.24474425054706048 1.0 10619 -666485 Gm8127 predicted gene 8127 Novel U 0.0018555525625403649 -0.24476234623517504 1.0 10620 -73690 Glipr1 GLI pathogenesis related 1 Novel U 0.001854644091316906 -0.24477175615024327 1.0 10621 -76589 Unc5cl unc-5 family C-terminal like Novel U 0.001854570881114841 -0.24477251445910958 1.0 10622 -231503 Tmem150c transmembrane protein 150C Novel U 0.001854380576561627 -0.24477448562741586 1.0 10623 -244180 Olfm5 olfactomedin 5 Novel U 0.0018537988045213597 -0.24478051160308423 1.0 10624 -140709 Col26a1 collagen, type XXVI, alpha 1 Novel U 0.0018536674155745707 -0.24478187252547587 1.0 10625 -29870 Gtse1 G two S phase expressed protein 1 Novel U 0.0018532870321630523 -0.24478581252434795 1.0 10626 -319554 Idi1 isopentenyl-diphosphate delta isomerase Novel U 0.0018529948493281822 -0.24478883894454656 1.0 10627 -78767 Efcab11 EF-hand calcium binding domain 11 Novel U 0.0018526415865514798 -0.24479249802877473 1.0 10628 -15183 Hdac3 histone deacetylase 3 Novel U 0.0018525734633747493 -0.2447932036463999 1.0 10629 -387340 Tas2r104 taste receptor, type 2, member 104 Novel U 0.0018523266764765075 -0.24479575985697918 1.0 10630 -20665 Sox10 SRY (sex determining region Y)-box 10 Novel U 0.0018523137824638704 -0.24479589341273822 1.0 10631 -110094 Phka2 phosphorylase kinase alpha 2 Novel U 0.0018519800990698095 -0.24479934969436462 1.0 10632 -21402 Skp1 S-phase kinase-associated protein 1 Novel U 0.0018516360786200107 -0.2448029130468746 1.0 10633 -18573 Pde1a phosphodiesterase 1A, calmodulin-dependent Novel U 0.001850993045560228 -0.24480957356216926 1.0 10634 -74251 Ankrd9 ankyrin repeat domain 9 Novel U 0.0018497613867122353 -0.24482233104402817 1.0 10635 -106264 Ncbp2as2 Ncbp2 antisense 2 (head to head) Novel U 0.0018495754554116168 -0.2448242569143278 1.0 10636 -12848 Cops2 COP9 signalosome subunit 2 Novel N 0.0018495563175284088 -0.24482445514389295 1.0 10637 -622117 Triml2 tripartite motif family-like 2 Novel U 0.0018491776169999438 -0.24482837771151766 1.0 10638 -114640 Pth2 parathyroid hormone 2 Novel U 0.0018491506889558996 -0.24482865663131267 1.0 10639 -19056 Ppp3cb protein phosphatase 3, catalytic subunit, beta isoform Novel U 0.001848879590205545 -0.24483146466325695 1.0 10640 -245450 Slitrk2 SLIT and NTRK-like family, member 2 Novel U 0.0018486217883922692 -0.2448341349659641 1.0 10641 -212168 Zswim4 zinc finger SWIM-type containing 4 Novel U 0.0018486149498683003 -0.24483420579917056 1.0 10642 -26549 Itgb1bp2 integrin beta 1 binding protein 2 Novel N 0.0018483632578569615 -0.2448368128167501 1.0 10643 -242864 Napepld N-acyl phosphatidylethanolamine phospholipase D Novel U 0.001847751181953941 -0.24484315267883267 1.0 10644 -66200 Commd6 COMM domain containing 6 Novel U 0.0018473565772558532 -0.24484723998132352 1.0 10645 -240776 Kcnt2 potassium channel, subfamily T, member 2 Novel N 0.0018473310745678966 -0.244847504137327 1.0 10646 -69072 Ebna1bp2 EBNA1 binding protein 2 Novel U 0.001847271022075885 -0.24484812615906518 1.0 10647 -12937 Pcdha6 protocadherin alpha 6 Novel U 0.001847054965160274 -0.24485036406949454 1.0 10648 -52837 Tmx4 thioredoxin-related transmembrane protein 4 Novel U 0.0018469743734576326 -0.2448511988357012 1.0 10649 -27883 Tango2 transport and golgi organization 2 Novel U 0.0018467341827182347 -0.24485368672348404 1.0 10650 -319765 Igf2bp2 insulin-like growth factor 2 mRNA binding protein 2 Novel N 0.0018454550986241618 -0.24486693543448285 1.0 10651 -12286 Cacna1a calcium channel, voltage-dependent, P/Q type, alpha 1A subunit Novel U 0.0018451037578797755 -0.24487057461036346 1.0 10652 -77905 Fate1 fetal and adult testis expressed 1 Novel U 0.0018448940866107205 -0.24487274637847578 1.0 10653 -113845 Vmn1r48 vomeronasal 1 receptor 48 Novel U 0.0018441678054678303 -0.24488026917467864 1.0 10654 -319211 Nol4 nucleolar protein 4 Novel U 0.0018441581722635893 -0.24488036895509147 1.0 10655 -17393 Mmp7 matrix metallopeptidase 7 Novel U 0.0018436195712124399 -0.24488594776707373 1.0 10656 -12453 Ccni cyclin I Novel U 0.00184302165630877 -0.24489214094999054 1.0 10657 -212980 Slc45a3 solute carrier family 45, member 3 Novel N 0.0018428354714085649 -0.24489406944706638 1.0 10658 -71026 Speer3 spermatogenesis associated glutamate (E)-rich protein 3 Novel U 0.0018423121937218585 -0.24489948954014343 1.0 10659 -13117 Cyp4a10 cytochrome P450, family 4, subfamily a, polypeptide 10 Novel U 0.0018422552121006403 -0.24490007975390288 1.0 10660 -69106 Stoml1 stomatin-like 1 Novel U 0.001841512315648323 -0.24490777465093455 1.0 10661 -14466 Gba1 glucosylceramidase beta 1 Novel U 0.0018413842502018713 -0.244909101148619 1.0 10662 -108829 Jmjd1c jumonji domain containing 1C Novel U 0.001841206445536728 -0.24491094284349554 1.0 10663 -76804 Kdm4c lysine (K)-specific demethylase 4C Novel U 0.0018402282527191299 -0.24492107493254386 1.0 10664 -100043088 Vmn1r166 vomeronasal 1 receptor 166 Novel U 0.0018398936611454587 -0.2449245406210648 1.0 10665 -71830 Pdilt protein disulfide isomerase-like, testis expressed Novel U 0.0018396077401877672 -0.24492750218094544 1.0 10666 -227656 Rexo4 REX4, 3'-5' exonuclease Novel N 0.0018393951976008924 -0.24492970369007336 1.0 10667 -17392 Mmp3 matrix metallopeptidase 3 Novel U 0.0018390433349490464 -0.2449333482718543 1.0 10668 -100043029 Vmn1r138 vomeronasal 1 receptor 138 Novel U 0.0018388409180785947 -0.24493544489914434 1.0 10669 -224454 Zdhhc14 zinc finger, DHHC domain containing 14 Novel N 0.0018381868665678196 -0.24494221954319217 1.0 10670 -75758 9130401M01Rik RIKEN cDNA 9130401M01 gene Novel U 0.0018380436620138681 -0.24494370285125439 1.0 10671 -211770 Trib1 tribbles pseudokinase 1 Novel U 0.0018380219806778287 -0.24494392742582036 1.0 10672 -76560 Prss8 serine protease 8 (prostasin) Novel U 0.0018375956985630711 -0.24494834284195177 1.0 10673 -382044 Ces1b carboxylesterase 1B Novel U 0.0018366862601344811 -0.2449577627752989 1.0 10674 -13197 Gadd45a growth arrest and DNA-damage-inducible 45 alpha Novel U 0.0018360579822710406 -0.2449642704567549 1.0 10675 -170458 Gpha2 glycoprotein hormone alpha 2 Novel N 0.0018355162746581761 -0.24496988144640128 1.0 10676 -70726 Angptl6 angiopoietin-like 6 Novel N 0.0018354822096686943 -0.24497023429044248 1.0 10677 -19224 Ptgs1 prostaglandin-endoperoxide synthase 1 Novel N 0.0018336953476470544 -0.24498874254852274 1.0 10678 -18548 Pcsk1 proprotein convertase subtilisin/kexin type 1 Novel N 0.0018328312073755927 -0.24499769328504745 1.0 10679 -229504 Isg20l2 interferon stimulated exonuclease gene 20-like 2 Novel U 0.0018327558315461828 -0.24499847402541064 1.0 10680 -209027 Pycr1 pyrroline-5-carboxylate reductase 1 Novel U 0.001832415983721837 -0.2450019941580033 1.0 10681 -69187 Erp27 endoplasmic reticulum protein 27 Novel U 0.001832257916113942 -0.2450036314170897 1.0 10682 -14718 Got1 glutamic-oxaloacetic transaminase 1, soluble Novel N 0.0018321236389218414 -0.24500502225583135 1.0 10683 -19280 Ptprs protein tyrosine phosphatase receptor type S Novel U 0.00183063685868624 -0.24502042227663642 1.0 10684 -320429 Trank1 tetratricopeptide repeat and ankyrin repeat containing 1 Novel N 0.0018303982040762663 -0.2450228942532412 1.0 10685 -114585 D17H6S53E DNA segment, Chr 17, human D6S53E Novel U 0.0018297410119474998 -0.24502970142770691 1.0 10686 -435921 Clec2f C-type lectin domain family 2, member f Novel U 0.0018283938397489628 -0.24504365539305348 1.0 10687 -241226 Itga8 integrin alpha 8 Novel U 0.0018267454312081459 -0.24506072955453073 1.0 10688 -625424 Ccdc121rt3 coiled-coil domain containing 121, retrogene 3 Novel U 0.0018264823379046287 -0.24506345466631985 1.0 10689 -15904 Id4 inhibitor of DNA binding 4 Novel N 0.0018264302738464134 -0.24506399394412332 1.0 10690 -170677 Cdhr1 cadherin-related family member 1 Novel N 0.0018264288097444214 -0.2450640091092436 1.0 10691 -14594 Ggta1 glycoprotein galactosyltransferase alpha 1, 3 Novel U 0.0018246800650212865 -0.245082122549599 1.0 10692 -234684 Fbxl9 F-box and leucine-rich repeat protein 9 Novel U 0.0018245868466286144 -0.2450830881026459 1.0 10693 -73708 Dppa3 developmental pluripotency-associated 3 Novel U 0.0018244756192092042 -0.24508424019259972 1.0 10694 -245038 Dclk3 doublecortin-like kinase 3 Novel U 0.0018242370076716058 -0.24508671172306223 1.0 10695 -70945 Mmrn1 multimerin 1 Novel U 0.001824139811590746 -0.24508771847687266 1.0 10696 -17938 Naca nascent polypeptide-associated complex alpha polypeptide Novel U 0.001823347439929962 -0.2450959258364872 1.0 10697 -70233 Cd2bp2 CD2 cytoplasmic tail binding protein 2 Novel U 0.0018231522846340767 -0.2450979472486266 1.0 10698 -67695 Ost4 oligosaccharyltransferase complex subunit 4 (non-catalytic) Novel N 0.0018230680323333488 -0.24509881993118793 1.0 10699 -328780 Prss34 serine protease 34 Novel U 0.001822458694132198 -0.24510513143624452 1.0 10700 -333467 Tcstv5a Tcstv family member 5A Novel U 0.0018221505958355311 -0.2451083227082732 1.0 10701 -71389 Chd6 chromodomain helicase DNA binding protein 6 Novel N 0.0018220677136301258 -0.24510918119943217 1.0 10702 -56317 Anapc7 anaphase promoting complex subunit 7 Novel U 0.0018220466658828154 -0.24510939921130692 1.0 10703 -56323 Dnajb5 DnaJ heat shock protein family (Hsp40) member B5 Novel U 0.0018220128838673886 -0.24510974912431216 1.0 10704 -66143 Eef1e1 eukaryotic translation elongation factor 1 epsilon 1 Novel N 0.0018217581328058272 -0.24511238782743333 1.0 10705 -18044 Nfya nuclear transcription factor-Y alpha Novel N 0.0018211826261590766 -0.24511834890636164 1.0 10706 -21915 Dtymk deoxythymidylate kinase Novel N 0.0018207461822132287 -0.2451228695784054 1.0 10707 -15460 Hr lysine demethylase and nuclear receptor corepressor Novel U 0.0018206788827576344 -0.2451235666639541 1.0 10708 -14605 Tsc22d3 TSC22 domain family, member 3 Novel U 0.0018205029305203334 -0.24512538917144397 1.0 10709 -75387 Sirt4 sirtuin 4 Novel U 0.0018203064726339104 -0.2451274240757733 1.0 10710 -75099 Lysmd4 LysM, putative peptidoglycan-binding, domain containing 4 Novel U 0.0018200760827561113 -0.24512981044655388 1.0 10711 -258387 Or2t6 olfactory receptor family 2 subfamily T member 6 Novel U 0.001819976825944525 -0.2451308385453454 1.0 10712 -667094 Vmn1r252 vomeronasal 1 receptor 252 Novel U 0.0018195992467725664 -0.24513474949799632 1.0 10713 -217682 Plekhd1 pleckstrin homology domain containing, family D (with coiled-coil domains) member 1 Novel U 0.0018194025788925159 -0.2451367865774328 1.0 10714 -56693 Crtap cartilage associated protein Novel U 0.0018187627124895396 -0.2451434142926003 1.0 10715 -30785 Cttnbp2 cortactin binding protein 2 Novel U 0.001818651702042 -0.2451445641351667 1.0 10716 -320234 Ccdc66 coiled-coil domain containing 66 Novel N 0.0018181975873338906 -0.24514926784038504 1.0 10717 -79044 Mrps34 mitochondrial ribosomal protein S34 Novel N 0.0018174061399567306 -0.24515746562630022 1.0 10718 -66246 Osgep O-sialoglycoprotein endopeptidase Novel U 0.001817259781447609 -0.24515898160292643 1.0 10719 -79362 Bhlhe41 basic helix-loop-helix family, member e41 Novel N 0.0018167932622482606 -0.24516381379345728 1.0 10720 -101056159 Gm8104 predicted gene 8104 Novel U 0.0018158327665289277 -0.24517376257654355 1.0 10721 -67445 C1qtnf4 C1q and tumor necrosis factor related protein 4 Novel U 0.0018149324609425216 -0.2451830879122116 1.0 10722 -227627 Obp2a odorant binding protein 2A Novel U 0.001814860494388664 -0.24518383333941068 1.0 10723 -78339 Ttyh3 tweety family member 3 Novel N 0.001814549519716858 -0.2451870544048385 1.0 10724 -14000 Drosha drosha, ribonuclease type III Novel N 0.0018143330991683704 -0.24518929608176532 1.0 10725 -79459 Aldoart2 aldolase 1 A, retrogene 2 Novel U 0.0018142251998528997 -0.24519041369932792 1.0 10726 -98053 Gtf2f1 general transcription factor IIF, polypeptide 1 Novel U 0.0018141638695300772 -0.2451910489567956 1.0 10727 -233038 Nccrp1 non-specific cytotoxic cell receptor protein 1 homolog (zebrafish) Novel N 0.0018130667469454774 -0.24520241291646094 1.0 10728 -19258 Ptpn4 protein tyrosine phosphatase, non-receptor type 4 Novel N 0.001811274274185712 -0.24522097929038222 1.0 10729 -238057 Gdf7 growth differentiation factor 7 Novel U 0.0018112149888483335 -0.24522159336595786 1.0 10730 -71159 4933416I08Rik RIKEN cDNA 4933416I08 gene Novel U 0.0018111876629395183 -0.2452218764068231 1.0 10731 -14814 Grin2d glutamate receptor, ionotropic, NMDA2D (epsilon 4) Novel U 0.0018109496236197744 -0.2452243420102719 1.0 10732 -100039801 Cldn24 claudin 24 Novel U 0.0018106702993510872 -0.24522723524186468 1.0 10733 -56786 Tmem9b TMEM9 domain family, member B Novel U 0.0018091545948777012 -0.24524293485897392 1.0 10734 -233744 Spon1 spondin 1, (f-spondin) extracellular matrix protein Novel U 0.0018090287489786231 -0.2452442383666596 1.0 10735 -13626 Eed embryonic ectoderm development Novel U 0.0018087820283278072 -0.24524679389105022 1.0 10736 -330627 Trim66 tripartite motif-containing 66 Novel U 0.0018084686248631143 -0.24525004011383494 1.0 10737 -104086 Cyp27a1 cytochrome P450, family 27, subfamily a, polypeptide 1 Novel U 0.0018082381595103166 -0.24525242726638308 1.0 10738 -105440 Kctd9 potassium channel tetramerisation domain containing 9 Novel U 0.0018074806347099358 -0.24526027368336314 1.0 10739 -627280 Vmn1r90 vomeronasal 1 receptor 90 Novel U 0.0018072549324297117 -0.24526261150016213 1.0 10740 -114671 Semp2l2b SUMO/sentrin specific peptidase 2-like 2B Novel U 0.0018071766396741595 -0.2452634224539504 1.0 10741 -109218 Tmem139 transmembrane protein 139 Novel U 0.0018068679975548404 -0.24526661935887625 1.0 10742 -67533 Ppfibp1 PTPRF interacting protein, binding protein 1 (liprin beta 1) Novel N 0.0018065943681971376 -0.24526945360276825 1.0 10743 -215446 Entpd3 ectonucleoside triphosphate diphosphohydrolase 3 Novel U 0.001806041446594109 -0.2452751807465561 1.0 10744 -210530 P3h2 prolyl 3-hydroxylase 2 Novel N 0.0018051757977173416 -0.24528414710916496 1.0 10745 -11364 Acadm acyl-Coenzyme A dehydrogenase, medium chain Novel U 0.0018048033384215321 -0.24528800503030707 1.0 10746 -66205 Cd302 CD302 antigen Novel U 0.001804300314146747 -0.24529321533920923 1.0 10747 -102545 Cmtm7 CKLF-like MARVEL transmembrane domain containing 7 Novel U 0.0018042488083627164 -0.2452937488344271 1.0 10748 -113858 Vmn1r10 vomeronasal 1 receptor 10 Novel U 0.0018041731197830856 -0.24529453281424676 1.0 10749 -259277 Klk8 kallikrein related-peptidase 8 Novel U 0.0018026084610724769 -0.24531073949773585 1.0 10750 -71586 Ifih1 interferon induced with helicase C domain 1 Novel U 0.0018025073670087126 -0.245311786626725 1.0 10751 -245492 Srsf8 serine and arginine rich splicing factor 8 Novel U 0.0018022881099827126 -0.24531405768379264 1.0 10752 -109674 Ampd2 adenosine monophosphate deaminase 2 Novel U 0.0018021908689133254 -0.24531506490359273 1.0 10753 -117903916 Naa12 N(alpha)-acetyltransferase 12, NatA catalytic subunit Novel U 0.0018021011284505522 -0.24531599443235608 1.0 10754 -28253 Slco1b2 solute carrier organic anion transporter family, member 1b2 Novel U 0.0018019625867275466 -0.24531742944296867 1.0 10755 -68735 Mrps18c mitochondrial ribosomal protein S18C Novel U 0.0018017772291501215 -0.24531934937066235 1.0 10756 -14420 Galc galactosylceramidase Novel N 0.0018016554340714642 -0.24532061092008325 1.0 10757 -16506 Kcnd1 potassium voltage-gated channel, Shal-related family, member 1 Novel U 0.0018005792842553311 -0.24533175764450224 1.0 10758 -232714 Mgam maltase-glucoamylase Novel N 0.0018004797278352144 -0.2453327888466291 1.0 10759 -629747 Spint3 serine peptidase inhibitor, Kunitz type, 3 Novel U 0.0017997957815190947 -0.2453398731400879 1.0 10760 -101612 Grwd1 glutamate-rich WD repeat containing 1 Novel U 0.0017997864172176873 -0.24533997013521405 1.0 10761 -667370 Ifit3b interferon-induced protein with tetratricopeptide repeats 3B Novel U 0.0017992014733293465 -0.24534602896478053 1.0 10762 -20250 Scd2 stearoyl-Coenzyme A desaturase 2 Novel U 0.0017988226386918354 -0.24534995292150233 1.0 10763 -14381 G6pdx glucose-6-phosphate dehydrogenase X-linked Novel U 0.0017987625336431145 -0.24535057548762113 1.0 10764 -74202 Fblim1 filamin binding LIM protein 1 Novel U 0.001798498684013474 -0.24535330843341135 1.0 10765 -22375 Wars1 tryptophanyl-tRNA synthetase1 Novel U 0.0017974224450815243 -0.24536445608088905 1.0 10766 -52829 Lurap1l leucine rich adaptor protein 1-like Novel U 0.0017973357735144556 -0.24536535382213157 1.0 10767 -333307 Trim75 tripartite motif-containing 75 Novel U 0.0017965868938746015 -0.24537311069282308 1.0 10768 -57911 Gsdma gasdermin A Novel U 0.0017961982135672636 -0.24537713663066932 1.0 10769 -83408 Gimap3 GTPase, IMAP family member 3 Novel U 0.001796166929459126 -0.24537746067043298 1.0 10770 -15561 Htr3a 5-hydroxytryptamine (serotonin) receptor 3A Novel N 0.0017961052255454704 -0.24537809979754224 1.0 10771 -69961 Rpp25l ribonuclease P/MRP 25 subunit-like Novel U 0.0017960654924129656 -0.24537851135202257 1.0 10772 -67949 Nifk nucleolar protein interacting with the FHA domain of MKI67 Novel U 0.0017959930643819788 -0.24537926155918657 1.0 10773 -12506 Cd48 CD48 antigen Novel U 0.00179517597895642 -0.2453877249031643 1.0 10774 -23789 Coro1b coronin, actin binding protein 1B Novel U 0.0017950271339810277 -0.24538926663452637 1.0 10775 -320202 Lefty2 left-right determination factor 2 Novel U 0.00179499245889889 -0.24538962579788728 1.0 10776 -68421 Lmbrd1 LMBR1 domain containing 1 Novel U 0.0017946000766694893 -0.24539369008012052 1.0 10777 -53328 Pgrmc1 progesterone receptor membrane component 1 Novel U 0.001794337690794782 -0.24539640786438527 1.0 10778 -654457 Defb26 defensin beta 26 Novel U 0.0017941775505918487 -0.24539806659134294 1.0 10779 -26562 Ncdn neurochondrin Novel N 0.0017937571075377144 -0.24540242152667635 1.0 10780 -70382 Kctd2 potassium channel tetramerisation domain containing 2 Novel U 0.0017935097866870642 -0.24540498326791713 1.0 10781 -227659 Slc2a6 solute carrier family 2 (facilitated glucose transporter), member 6 Novel N 0.0017931136207473856 -0.24540908674169706 1.0 10782 -13481 Dpm2 dolichyl-phosphate mannosyltransferase subunit 2, regulatory Novel U 0.0017931100241361199 -0.24540912399527834 1.0 10783 -545763 LOC545763 uncharacterized LOC545763 Novel U 0.001791638683511251 -0.24542436409310303 1.0 10784 -16069 Jchain immunoglobulin joining chain Novel U 0.0017910848394031259 -0.24543010079216834 1.0 10785 -112408 Tas2r116 taste receptor, type 2, member 116 Novel U 0.0017903820915084947 -0.2454373798317593 1.0 10786 -24067 Srp54a signal recognition particle 54A Novel U 0.0017903654499414772 -0.24543755220456343 1.0 10787 -75691 Anks6 ankyrin repeat and sterile alpha motif domain containing 6 Novel U 0.0017899376564676044 -0.24544198327530287 1.0 10788 -69772 Bdh2 3-hydroxybutyrate dehydrogenase, type 2 Novel N 0.0017898081417607535 -0.24544332478437886 1.0 10789 -194388 Tet3 tet methylcytosine dioxygenase 3 Novel U 0.0017890350865031606 -0.24545133206532418 1.0 10790 -57740 Stk32c serine/threonine kinase 32C Novel U 0.0017889244648481093 -0.24545247788079072 1.0 10791 -100040160 Gm20826 predicted gene, 20826 Novel U 0.0017888419379913428 -0.24545333269126016 1.0 10792 -100101919 Dnah7c dynein, axonemal, heavy chain 7C Novel U 0.001788358128096488 -0.24545834397824667 1.0 10793 -72198 Mtrex Mtr4 exosome RNA helicase Novel N 0.0017879037993509676 -0.24546304990045753 1.0 10794 -51811 Clec4f C-type lectin domain family 4, member f Novel U 0.0017873610726609904 -0.24546867144567114 1.0 10795 -74362 Spag17 sperm associated antigen 17 Novel N 0.0017866199632923456 -0.24547634783214892 1.0 10796 -93759 Sirt1 sirtuin 1 Novel U 0.0017865122592181965 -0.24547746342740837 1.0 10797 -20701 Serpina1b serine (or cysteine) preptidase inhibitor, clade A, member 1B Novel U 0.0017857438095071425 -0.24548542300425405 1.0 10798 -17968 Ncam2 neural cell adhesion molecule 2 Novel N 0.001785733703806261 -0.24548552767877155 1.0 10799 -100040766 Mroh2a maestro heat-like repeat family member 2A Novel U 0.0017851958731286111 -0.24549109851125042 1.0 10800 -12189 Brca1 breast cancer 1, early onset Novel U 0.0017843044534820577 -0.24550033180664557 1.0 10801 -545975 Cers3 ceramide synthase 3 Novel U 0.0017840165923172242 -0.24550331346312798 1.0 10802 -20871 Aurkc aurora kinase C Novel U 0.0017833503061177077 -0.2455102148336796 1.0 10803 -100503085 Klhl3 kelch-like 3 Novel U 0.0017822532773291333 -0.24552157782180878 1.0 10804 -234564 Ces1f carboxylesterase 1F Novel U 0.0017809444468942749 -0.24553513464442756 1.0 10805 -75288 Slc35f4 solute carrier family 35, member F4 Novel U 0.001780735114861298 -0.2455373028987437 1.0 10806 -11856 Arhgap6 Rho GTPase activating protein 6 Novel U 0.0017801968218640744 -0.24554287851991352 1.0 10807 -213054 Gabpb2 GA repeat binding protein, beta 2 Novel N 0.0017801739787819482 -0.24554311512780727 1.0 10808 -242711 Cela3a chymotrypsin-like elastase family, member 3A Novel U 0.001779531746585905 -0.24554976734778164 1.0 10809 -15205 Hes1 hes family bHLH transcription factor 1 Novel N 0.0017779246523358689 -0.24556641357719314 1.0 10810 -330149 Hfm1 HFM1, ATP-dependent DNA helicase homolog Novel N 0.0017771807514384407 -0.2455741188782343 1.0 10811 -404287 V1rd19 vomeronasal 1 receptor, D19 Novel U 0.0017768653948250699 -0.24557738533166876 1.0 10812 -20813 Srp14 signal recognition particle 14 Novel U 0.0017759396848460647 -0.24558697380520023 1.0 10813 -68995 Mcts1 malignant T cell amplified sequence 1 Novel U 0.0017758436904735584 -0.24558796811175498 1.0 10814 -14300 Frg1 FSHD region gene 1 Novel U 0.0017754325789587843 -0.24559222639131048 1.0 10815 -213056 Hycc2 hyccin PI4KA lipid kinase complex subunit 2 Novel U 0.0017747551637888996 -0.24559924303537134 1.0 10816 -100042971 Gm10670 predicted gene 10670 Novel U 0.0017743355153525887 -0.24560358974007943 1.0 10817 -277328 Trpa1 transient receptor potential cation channel, subfamily A, member 1 Novel U 0.0017738860844145423 -0.24560824493096145 1.0 10818 -100502967 Speer4c1 spermatogenesis associated glutamate (E)-rich protein 4C1 Novel U 0.001773622655585292 -0.24561097351811506 1.0 10819 -78284 Creb3l4 cAMP responsive element binding protein 3-like 4 Novel N 0.0017732609108924323 -0.245614720457752 1.0 10820 -99571 Fgg fibrinogen gamma chain Novel U 0.0017726254154769013 -0.24562130289837528 1.0 10821 -381112 Arhgef33 Rho guanine nucleotide exchange factor 33 Novel U 0.001771941082766521 -0.2456283911940932 1.0 10822 -171201 Vmn1r21 vomeronasal 1 receptor 21 Novel U 0.0017716473887429633 -0.24563143326713452 1.0 10823 -52690 Setd3 SET domain containing 3 Novel U 0.0017713487947377852 -0.24563452609402442 1.0 10824 -230868 Igsf21 immunoglobulin superfamily, member 21 Novel U 0.00177064707955646 -0.24564179443680495 1.0 10825 -22146 Tuba1c tubulin, alpha 1C Novel U 0.0017700467782601737 -0.24564801233789804 1.0 10826 -107271 Yars1 tyrosyl-tRNA synthetase 1 Novel U 0.001769961747799627 -0.24564889308061313 1.0 10827 -217335 Fbf1 Fas binding factor 1 Novel U 0.0017693851346244922 -0.24565486562092603 1.0 10828 -110960 Tars1 threonyl-tRNA synthetase 1 Novel U 0.0017691555897223375 -0.24565724323947669 1.0 10829 -653016 Mymx myomixer, myoblast fusion factor Novel N 0.0017677833692432909 -0.24567145665408932 1.0 10830 -268936 Brpf3 bromodomain and PHD finger containing, 3 Novel N 0.0017674791539333378 -0.24567460770626928 1.0 10831 -67892 Coa6 cytochrome c oxidase assembly factor 6 Novel U 0.001766092984316412 -0.24568896560559353 1.0 10832 -268902 Robo2 roundabout guidance receptor 2 Novel U 0.0017660026322622038 -0.24568990146920086 1.0 10833 -71392 5430401F13Rik RIKEN cDNA 5430401F13 gene Novel U 0.0017659511540753074 -0.2456904346785685 1.0 10834 -329065 Scd4 stearoyl-coenzyme A desaturase 4 Novel U 0.0017657570537094253 -0.24569244516377758 1.0 10835 -235293 Sc5d sterol-C5-desaturase Novel U 0.0017654012635090815 -0.24569613042697674 1.0 10836 -12531 Cdc25b cell division cycle 25B Novel U 0.0017645851218784333 -0.2457045839951578 1.0 10837 -100532 Rell1 RELT-like 1 Novel U 0.0017634782100662352 -0.2457160493513208 1.0 10838 -11484 Aspa aspartoacylase Novel U 0.0017632677737612734 -0.24571822904364987 1.0 10839 -16495 Kcna7 potassium voltage-gated channel, shaker-related subfamily, member 7 Novel U 0.001762616861116603 -0.24572497117542574 1.0 10840 -18537 Pcmt1 protein-L-isoaspartate (D-aspartate) O-methyltransferase 1 Novel U 0.001762510335722872 -0.2457260745619522 1.0 10841 -11933 Atp1b3 ATPase, Na+/K+ transporting, beta 3 polypeptide Novel U 0.0017606935519904323 -0.24574489274812925 1.0 10842 -54006 Deaf1 DEAF1, transcription factor Novel U 0.001760644317295389 -0.245745402719482 1.0 10843 -14918 Gucy2d guanylate cyclase 2d Novel U 0.0017602793511674905 -0.24574918302663717 1.0 10844 -72003 Synpr synaptoporin Novel U 0.0017600716115797727 -0.2457513347864577 1.0 10845 -329559 Zfp335 zinc finger protein 335 Novel U 0.0017600664513815407 -0.24575138823562132 1.0 10846 -387356 Tas2r131 taste receptor, type 2, member 131 Novel U 0.001759680062001445 -0.24575539044411848 1.0 10847 -241943 Gm57858 gene model 57858 Novel U 0.001759632107295087 -0.24575588715739052 1.0 10848 -66179 Ogfod3 2-oxoglutarate and iron-dependent oxygenase domain containing 3 Novel U 0.0017583273684751866 -0.24576940159919605 1.0 10849 -380967 Tmem106c transmembrane protein 106C Novel U 0.0017572967118129105 -0.24578007710702293 1.0 10850 -12258 Serping1 serine (or cysteine) peptidase inhibitor, clade G, member 1 Novel U 0.0017563098109045117 -0.2457902993941895 1.0 10851 -72323 Asb6 ankyrin repeat and SOCS box-containing 6 Novel U 0.0017562167716442835 -0.24579126309178842 1.0 10852 -75524 Tex48 testis expressed 48 Novel U 0.001754682384814275 -0.2458071562201334 1.0 10853 -237860 Ssh2 slingshot protein phosphatase 2 Novel U 0.0017545061445185886 -0.24580898171132257 1.0 10854 -100009609 Vmn2r65 vomeronasal 2, receptor 65 Novel U 0.0017544976192646908 -0.24580907001562216 1.0 10855 -70433 Draxin dorsal inhibitory axon guidance protein Novel U 0.0017541591708589966 -0.24581257565308248 1.0 10856 -12936 Pcdha4 protocadherin alpha 4 Novel U 0.0017539903785606056 -0.24581432399816042 1.0 10857 -72873 Bbof1 basal body orientation factor 1 Novel U 0.0017536019984402238 -0.24581834682668005 1.0 10858 -171274 Vmn1r222 vomeronasal 1 receptor 222 Novel U 0.0017534383634913732 -0.24582004175210104 1.0 10859 -228443 Or4k77 olfactory receptor family 4 subfamily K member 77 Novel U 0.0017524367164769474 -0.2458304167789491 1.0 10860 -77627 Efcab6 EF-hand calcium binding domain 6 Novel U 0.0017518915561966332 -0.2458360635312114 1.0 10861 -23825 Banf1 BAF nuclear assembly factor 1 Novel U 0.001751595918392767 -0.2458391257378653 1.0 10862 -171231 Vmn1r230 vomeronasal 1 receptor 230 Novel U 0.0017515303157468248 -0.24583980524791538 1.0 10863 -230603 Ttc39a tetratricopeptide repeat domain 39A Novel U 0.0017512417867844188 -0.2458427938214231 1.0 10864 -75678 Ippk inositol 1,3,4,5,6-pentakisphosphate 2-kinase Novel N 0.0017511540914876326 -0.2458437021664244 1.0 10865 -74438 Clvs1 clavesin 1 Novel U 0.0017511263088428326 -0.24584398993814593 1.0 10866 -23793 Adam25 ADAM metallopeptidase domain 25 Novel U 0.0017505549718920225 -0.2458499078275007 1.0 10867 -12155 Bmp15 bone morphogenetic protein 15 Novel N 0.0017504185346649721 -0.24585132103981336 1.0 10868 -320696 Ccdc158 coiled-coil domain containing 158 Novel U 0.0017502402797081869 -0.24585316739879592 1.0 10869 -620758 Vmn1r160 vomeronasal 1 receptor 160 Novel U 0.001749921023892924 -0.24585647424003546 1.0 10870 -56248 Ak3 adenylate kinase 3 Novel U 0.001749733299585386 -0.2458584186822418 1.0 10871 -20511 Slc1a2 solute carrier family 1 (glial high affinity glutamate transporter), member 2 Novel U 0.0017492647000685961 -0.24586327242063236 1.0 10872 -13166 Dbh dopamine beta hydroxylase Novel N 0.0017486560653813263 -0.2458695766387153 1.0 10873 -208836 Fanci Fanconi anemia, complementation group I Novel U 0.0017483408407675156 -0.24587284172490273 1.0 10874 -54604 Pcnx1 pecanex 1 Novel U 0.0017475406807951203 -0.24588112975559295 1.0 10875 -69259 Kctd5 potassium channel tetramerisation domain containing 5 Novel U 0.0017468824278504135 -0.24588794791795532 1.0 10876 -30056 Timm9 translocase of inner mitochondrial membrane 9 Novel U 0.0017466337652597152 -0.24589052355689545 1.0 10877 -223255 Stk24 serine/threonine kinase 24 Novel U 0.0017456310303870144 -0.24590090985174373 1.0 10878 -12183 Bpgm 2,3-bisphosphoglycerate mutase Novel N 0.0017453357872988684 -0.24590396796994515 1.0 10879 -14790 Grcc10 gene rich cluster, C10 gene Novel U 0.001745288210174782 -0.24590446077223244 1.0 10880 -106557 Ldhal6b lactate dehydrogenase A-like 6B Novel N 0.0017449199854733784 -0.24590827483158484 1.0 10881 -15278 Tfb2m transcription factor B2, mitochondrial Novel N 0.00174399909438511 -0.24591781339120444 1.0 10882 -50769 Atp8a2 ATPase, aminophospholipid transporter-like, class I, type 8A, member 2 Novel N 0.0017437841321715508 -0.245920039962746 1.0 10883 -74469 Taf7l TATA-box binding protein associated factor 7 like Novel U 0.0017431323477078763 -0.24592679112479446 1.0 10884 -24051 Sgcb sarcoglycan, beta (dystrophin-associated glycoprotein) Novel N 0.001743076117702473 -0.245927373553342 1.0 10885 -93838 Dqx1 DEAQ RNA-dependent ATPase Novel U 0.0017426059782828455 -0.24593224324199547 1.0 10886 -18514 Pbx1 pre B cell leukemia homeobox 1 Novel U 0.0017422226805461653 -0.24593621342735178 1.0 10887 -14246 Flg filaggrin Novel U 0.0017419598514404498 -0.24593893580258874 1.0 10888 -240916 Vsig8 V-set and immunoglobulin domain containing 8 Novel U 0.0017416497761556873 -0.24594214755219515 1.0 10889 -68393 Mogat1 monoacylglycerol O-acyltransferase 1 Novel U 0.0017411866304986034 -0.24594694479968612 1.0 10890 -226861 Hhat hedgehog acyltransferase Novel U 0.0017403979514510205 -0.24595511391133457 1.0 10891 -20747 Spop speckle-type BTB/POZ protein Novel U 0.001739859459124283 -0.24596069159715292 1.0 10892 -19279 Ptprr protein tyrosine phosphatase receptor type R Novel U 0.0017373973773652423 -0.2459861937590765 1.0 10893 -235041 Kank2 KN motif and ankyrin repeat domains 2 Novel U 0.0017370480230245254 -0.24598981235985323 1.0 10894 -12843 Col1a2 collagen, type I, alpha 2 Novel U 0.0017362836119215396 -0.24599773010492929 1.0 10895 -66398 Commd5 COMM domain containing 5 Novel U 0.0017355188599953721 -0.24600565138024066 1.0 10896 -77505 Dnhd1 dynein heavy chain domain 1 Novel N 0.0017354691518982643 -0.24600616625507643 1.0 10897 -105847 Lmf2 lipase maturation factor 2 Novel U 0.0017347708859854702 -0.24601339887044693 1.0 10898 -100039240 Gm10058 predicted gene 10058 Novel U 0.0017343863733454623 -0.24601738163973194 1.0 10899 -230674 Kdm4a lysine (K)-specific demethylase 4A Novel N 0.0017337019337591054 -0.2460244710424677 1.0 10900 -269053 Gpr152 G protein-coupled receptor 152 Novel U 0.00173348698860221 -0.24602669743733688 1.0 10901 -20103 Rps5 ribosomal protein S5 Novel N 0.0017332814752124746 -0.24602882613827187 1.0 10902 -101861 Ints4 integrator complex subunit 4 Novel N 0.001732743934402755 -0.24603439396830823 1.0 10903 -319998 Tmem198 transmembrane protein 198 Novel U 0.0017326253021100458 -0.24603562275769628 1.0 10904 -21769 Zfand3 zinc finger, AN1-type domain 3 Novel U 0.001732026976463424 -0.2460418201950751 1.0 10905 -12154 Bmp10 bone morphogenetic protein 10 Novel U 0.001731847606480746 -0.2460436781034592 1.0 10906 -353325 Tas2r115 taste receptor, type 2, member 115 Novel U 0.0017315709209784257 -0.24604654400279669 1.0 10907 -100042100 Gm3667 predicted gene 3667 Novel U 0.0017297526200186462 -0.24606537790436467 1.0 10908 -52552 Parp8 poly (ADP-ribose) polymerase family, member 8 Novel N 0.0017295379645857888 -0.24606760129828179 1.0 10909 -68202 Ndufa5 NADH:ubiquinone oxidoreductase subunit A5 Novel N 0.0017279655134600463 -0.24608388869535067 1.0 10910 -216877 Dhx33 DEAH-box helicase 33 Novel U 0.001727773584276357 -0.24608587669152598 1.0 10911 -17750 Mt2 metallothionein 2 Novel U 0.001727605450325506 -0.2460876182174618 1.0 10912 -216345 Zfc3h1 zinc finger, C3H1-type containing Novel U 0.0017275663905263969 -0.24608802279757697 1.0 10913 -15206 Hes2 hes family bHLH transcription factor 2 Novel U 0.0017270587901617816 -0.24609328050546717 1.0 10914 -77683 Ehmt1 euchromatic histone methyltransferase 1 Novel U 0.0017265667150899039 -0.2460983774028856 1.0 10915 -320438 Alg6 ALG6 alpha-1,3-glucosyltransferase Novel N 0.0017263475415127429 -0.2461006475955929 1.0 10916 -333193 Proser3 proline and serine rich 3 Novel U 0.0017260825043199173 -0.24610339284212357 1.0 10917 -67118 Bfar bifunctional apoptosis regulator Novel U 0.0017260574819514 -0.24610365202299408 1.0 10918 -545527 Erich6 glutamate rich 6 Novel U 0.001725173715547492 -0.2461128060463535 1.0 10919 -19283 Ptprz1 protein tyrosine phosphatase receptor type Z, polypeptide 1 Novel N 0.0017251643147983284 -0.24611290341900433 1.0 10920 -239217 Kctd12 potassium channel tetramerisation domain containing 12 Novel U 0.0017248652851375018 -0.24611600075840107 1.0 10921 -72297 B3gnt3 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 3 Novel N 0.0017245384134254153 -0.24611938648484952 1.0 10922 -18782 Pla2g2d phospholipase A2, group IID Novel U 0.001723981989709407 -0.2461251499034085 1.0 10923 -67448 Plxdc2 plexin domain containing 2 Novel U 0.0017239364089478165 -0.24612562202743868 1.0 10924 -545725 Mterf1a mitochondrial transcription termination factor 1a Novel U 0.0017239186390390715 -0.2461258060875693 1.0 10925 -545007 Gm5796 predicted gene 5796 Novel U 0.0017234494249112333 -0.24613066619208088 1.0 10926 -68268 Zdhhc21 zinc finger, DHHC domain containing 21 Novel N 0.001723383125577768 -0.2461313529183974 1.0 10927 -18148 Npm1 nucleophosmin 1 Novel U 0.0017233598868627252 -0.2461315936242439 1.0 10928 -381544 Armh1 armadillo-like helical domain containing 1 Novel U 0.0017232365186816757 -0.2461328714678077 1.0 10929 -50995 Uba2 ubiquitin-like modifier activating enzyme 2 Novel N 0.001723056124509198 -0.24613473998471608 1.0 10930 -100039045 Speer4a2 spermatogenesis associated glutamate (E)-rich protein 4A2 Novel U 0.0017229826307472028 -0.24613550123068687 1.0 10931 -18767 Pkia protein kinase inhibitor, alpha Novel U 0.0017224977543326967 -0.24614052356464886 1.0 10932 -665615 Smr2l submaxillary gland androgen regulated protein 2 like Novel U 0.001721527237106938 -0.24615057615016922 1.0 10933 -13180 Pcbd1 pterin 4 alpha carbinolamine dehydratase/dimerization cofactor of hepatocyte nuclear factor 1 alpha (TCF1) 1 Novel N 0.0017203877285856526 -0.24616237914197336 1.0 10934 -216516 Ccdc157 coiled-coil domain containing 157 Novel U 0.0017177395128273479 -0.24618980927374248 1.0 10935 -16997 Ltbp2 latent transforming growth factor beta binding protein 2 Novel U 0.0017176330256757114 -0.2461909122641586 1.0 10936 -14731 Gpaa1 GPI anchor attachment protein 1 Novel U 0.001717570214329156 -0.24619156286202137 1.0 10937 -21984 Tpbpa trophoblast specific protein alpha Novel U 0.0017171888770889444 -0.2461955127406197 1.0 10938 -667135 Vmn1r104 vomeronasal 1 receptor 104 Novel U 0.0017170800171411229 -0.2461966403083807 1.0 10939 -14027 Evpl envoplakin Novel N 0.0017170303235173915 -0.2461971550333017 1.0 10940 -381306 Firrm FIGNL1 interacting regulator of recombination and mitosis Novel U 0.0017163906395830436 -0.24620378085846517 1.0 10941 -226844 Flvcr1 feline leukemia virus subgroup C cellular receptor 1 Novel U 0.001716108283610452 -0.24620670549234736 1.0 10942 -73047 Camk2n2 calcium/calmodulin-dependent protein kinase II inhibitor 2 Novel U 0.0017160572792471274 -0.24620723379386597 1.0 10943 -72309 Tmem158 transmembrane protein 158 Novel U 0.0017160185617682696 -0.2462076348282392 1.0 10944 -544923 Serpinb9h serine (or cysteine) peptidase inhibitor, clade B, member 9h Novel U 0.0017158958905078108 -0.24620890545312243 1.0 10945 -21349 Tal1 T cell acute lymphocytic leukemia 1 Novel U 0.0017158667728415554 -0.24620920705295235 1.0 10946 -236732 Rbm10 RNA binding motif protein 10 Novel U 0.0017156956463645586 -0.24621097957537558 1.0 10947 -76407 Sun5 Sad1 and UNC84 domain containing 5 Novel N 0.0017153542092239208 -0.24621451617005416 1.0 10948 -21683 Tecta tectorin alpha Novel U 0.0017152497035052296 -0.24621559863685294 1.0 10949 -21380 Tbx1 T-box 1 Novel U 0.0017150074289934024 -0.24621810810828212 1.0 10950 -56449 Ybx3 Y box protein 3 Novel U 0.0017145481150367462 -0.246222865667146 1.0 10951 -230075 Ndufb6 NADH:ubiquinone oxidoreductase subunit B6 Novel N 0.001714286112534835 -0.24622557948044793 1.0 10952 -328365 Zmiz1 zinc finger, MIZ-type containing 1 Novel U 0.0017140737609367845 -0.24622777901131984 1.0 10953 -74670 Zfp943 zinc finger prtoein 943 Novel U 0.0017137616940387983 -0.24623101138999054 1.0 10954 -229714 Gpr61 G protein-coupled receptor 61 Novel N 0.0017131242660037849 -0.24623761384862292 1.0 10955 -76858 Nlrp14 NLR family, pyrin domain containing 14 Novel N 0.0017128452982794167 -0.24624050338714135 1.0 10956 -218613 Mier3 MIER family member 3 Novel U 0.001711833560677507 -0.24625098293196285 1.0 10957 -66197 Cks2 CDC28 protein kinase regulatory subunit 2 Novel U 0.0017117200711640479 -0.2462521584526125 1.0 10958 -230598 Nrdc nardilysin convertase Novel U 0.0017106257655461776 -0.246263493234229 1.0 10959 -258886 Or4k49 olfactory receptor family 4 subfamily K member 49 Novel U 0.0017103641814103265 -0.24626620271410904 1.0 10960 -14433 Gapdh glyceraldehyde-3-phosphate dehydrogenase Novel U 0.0017100328982543914 -0.24626963413414787 1.0 10961 -665755 LOC665755 PRAME family member 8-like Novel U 0.0017088828679304733 -0.24628154611043782 1.0 10962 -68133 Gcsh glycine cleavage system protein H (aminomethyl carrier) Novel N 0.00170870781243043 -0.24628335932955264 1.0 10963 -19893 Rpgr retinitis pigmentosa GTPase regulator Novel U 0.0017086098372299128 -0.2462843741534588 1.0 10964 -51885 Tubgcp4 tubulin, gamma complex component 4 Novel U 0.0017084643005506137 -0.24628588161759873 1.0 10965 -19243 Ptp4a1 protein tyrosine phosphatase 4a1 Novel U 0.0017080960665416694 -0.24628969577335832 1.0 10966 -212377 Mms22l MMS22-like, DNA repair protein Novel N 0.001708094236526284 -0.24628971472859754 1.0 10967 -78252 Nxpe2 neurexophilin and PC-esterase domain family, member 2 Novel U 0.001707921119887927 -0.24629150786504675 1.0 10968 -12628 Cfh complement component factor h Novel U 0.001707578056765185 -0.24629506130159454 1.0 10969 -234875 Ttc13 tetratricopeptide repeat domain 13 Novel U 0.0017071593881155223 -0.24629939785770474 1.0 10970 -58238 Fam181b family with sequence similarity 181, member B Novel U 0.0017071446720411123 -0.24629955028631972 1.0 10971 -68952 Tlcd3b TLC domain containing 3B Novel N 0.0017069299084635856 -0.24630177480039575 1.0 10972 -56057 Btg4 BTG anti-proliferation factor 4 Novel N 0.0017069155092815738 -0.24630192394664968 1.0 10973 -12990 Csn1s1 casein alpha s1 Novel U 0.001706596012496496 -0.24630523328384665 1.0 10974 -224907 Dus3l dihydrouridine synthase 3 like Novel N 0.0017062820741950474 -0.2463084850464529 1.0 10975 -99712 Cept1 choline/ethanolaminephosphotransferase 1 Novel N 0.0017060023935970073 -0.24631138196889338 1.0 10976 -171263 Vmn1r67 vomeronasal 1 receptor 67 Novel U 0.001705687836592899 -0.2463146401400014 1.0 10977 -12298 Cacnb4 calcium channel, voltage-dependent, beta 4 subunit Novel N 0.001705464909671296 -0.24631694920972705 1.0 10978 -666040 Pramel3b PRAME like 3B Novel U 0.001705379288148865 -0.24631783607464172 1.0 10979 -631584 Catspere1 cation channel sperm associated auxiliary subunit epsilon 1 Novel U 0.0017047613830571786 -0.2463242363152689 1.0 10980 -13074 Cyp17a1 cytochrome P450, family 17, subfamily a, polypeptide 1 Novel N 0.0017046050234823973 -0.24632585588260442 1.0 10981 -56727 Miox myo-inositol oxygenase Novel N 0.0017042892823032711 -0.24632912631935838 1.0 10982 -19114 Prl7a2 prolactin family 7, subfamily a, member 2 Novel U 0.0017035144020741012 -0.2463371525032993 1.0 10983 -229681 St7l suppression of tumorigenicity 7-like Novel U 0.0017029234848293527 -0.24634327320469507 1.0 10984 -208990 Npb neuropeptide B Novel N 0.001702868301506588 -0.2463438447917382 1.0 10985 -11867 Arpc1b actin related protein 2/3 complex, subunit 1B Novel U 0.0017026688256658665 -0.24634591095593897 1.0 10986 -16492 Kcna4 potassium voltage-gated channel, shaker-related subfamily, member 4 Novel N 0.0017026625704618875 -0.24634597574713618 1.0 10987 -76943 Psapl1 prosaposin-like 1 Novel U 0.0017026029439239005 -0.2463465933568565 1.0 10988 -243083 Tmprss11f transmembrane protease, serine 11f Novel U 0.0017017566774718419 -0.24635535895694743 1.0 10989 -212518 Sprn shadow of prion protein Novel U 0.0017014890164572668 -0.2463581313809375 1.0 10990 -329093 Cpa6 carboxypeptidase A6 Novel N 0.0017013924685992479 -0.24635913142047702 1.0 10991 -12965 Crygb crystallin, gamma B Novel N 0.0017007670084643906 -0.246365609915993 1.0 10992 -17140 Magea4 MAGE family member A4 Novel U 0.0017007314410544098 -0.24636597832205637 1.0 10993 -14933 Gk glycerol kinase Novel U 0.0016989014676316823 -0.24638493312661183 1.0 10994 -216285 Alx1 ALX homeobox 1 Novel U 0.0016987826754580836 -0.24638616357204088 1.0 10995 -66578 Mis18a MIS18 kinetochore protein A Novel U 0.001698740430786934 -0.24638660114095592 1.0 10996 -100042761 Tdpoz7 Td and POZ domain containing 7 Novel U 0.0016986919992874273 -0.24638710279283574 1.0 10997 -18575 Pde1c phosphodiesterase 1C Novel N 0.0016985728543893923 -0.2463883368917729 1.0 10998 -68870 Ak8 adenylate kinase 8 Novel U 0.0016983335590562223 -0.24639081550496747 1.0 10999 -74281 Spatc1 spermatogenesis and centriole associated 1 Novel U 0.0016982635778120497 -0.24639154036839409 1.0 11000 -118568222 Tmdd1 transmembrane and death domain 1 Novel U 0.0016977358905683607 -0.24639700613551743 1.0 11001 -67931 Serpini2 serine (or cysteine) peptidase inhibitor, clade I, member 2 Novel U 0.0016972806426692106 -0.24640172157829135 1.0 11002 -67842 Nop9 NOP9 nucleolar protein Novel U 0.0016971928282609003 -0.2464026311570459 1.0 11003 -20974 Syngr3 synaptogyrin 3 Novel U 0.001696889280285105 -0.24640577529700058 1.0 11004 -18173 Slc11a1 solute carrier family 11 (proton-coupled divalent metal ion transporters), member 1 Novel U 0.0016954539211928184 -0.2464206426992936 1.0 11005 -17151 Ccndbp1 cyclin D-type binding-protein 1 Novel U 0.001694966701087417 -0.24642568930912886 1.0 11006 -230623 Skint11 selection and upkeep of intraepithelial T cells 11 Novel U 0.0016947952653602065 -0.24642746503475566 1.0 11007 -320563 Islr2 immunoglobulin superfamily containing leucine-rich repeat 2 Novel U 0.0016947122912143613 -0.24642832447823068 1.0 11008 -30946 Abt1 activator of basal transcription 1 Novel N 0.001694306452662597 -0.24643252814060862 1.0 11009 -57749 Piwil1 piwi-like RNA-mediated gene silencing 1 Novel N 0.001693807154240325 -0.246437699857253 1.0 11010 -22057 Tob1 transducer of ErbB-2.1 Novel N 0.0016932941829927554 -0.2464430131965723 1.0 11011 -232934 Mypop Myb-related transcription factor, partner of profilin Novel U 0.001693128373716027 -0.24644473064360997 1.0 11012 -19891 Rpa2 replication protein A2 Novel U 0.0016931046139811242 -0.24644497674616303 1.0 11013 -93715 Pcdhga7 protocadherin gamma subfamily A, 7 Novel U 0.0016930347409910905 -0.24644570048829684 1.0 11014 -319660 Agmo alkylglycerol monooxygenase Novel U 0.0016923336177437913 -0.24645296269984418 1.0 11015 -241201 Cdh7 cadherin 7, type 2 Novel U 0.001692262117881281 -0.24645370329306962 1.0 11016 -67495 Tmem167b transmembrane protein 167B Novel U 0.001691815955836642 -0.2464583246248612 1.0 11017 -404291 Vmn1r174 vomeronasal 1 receptor 174 Novel U 0.0016910146503734118 -0.24646662452050785 1.0 11018 -83492 Gsdmc gasdermin C Novel U 0.0016910041385630968 -0.24646673340149353 1.0 11019 -94275 Maged1 MAGE family member D1 Novel N 0.0016910024891949732 -0.24646675048559433 1.0 11020 -13179 Dcn decorin Novel U 0.0016906043754753132 -0.2464708741344153 1.0 11021 -319875 Tmprss11b transmembrane protease, serine 11B Novel U 0.001690402777496607 -0.24647296227965157 1.0 11022 -67315 Ceacam12 CEA cell adhesion molecule 12 Novel U 0.0016899672714785084 -0.24647747323667055 1.0 11023 -140489 Bhlhe23 basic helix-loop-helix family, member e23 Novel U 0.0016898677779364267 -0.2464785037875087 1.0 11024 -75002 Tmprss12 transmembrane (C-terminal) protease, serine 12 Novel U 0.0016894445363846075 -0.24648288770958915 1.0 11025 -382252 Bclaf3 Bclaf1 and Thrap3 family member 3 Novel U 0.001689157173122676 -0.2464858642088097 1.0 11026 -83679 Pde4dip phosphodiesterase 4D interacting protein (myomegalin) Novel U 0.001686902613697077 -0.2465092168612254 1.0 11027 -230622 Skint6 selection and upkeep of intraepithelial T cells 6 Novel U 0.0016866898446721082 -0.24651142071579163 1.0 11028 -12041 Bckdk branched chain ketoacid dehydrogenase kinase Novel N 0.0016866353229316859 -0.2465119854501866 1.0 11029 -69379 C8g complement component 8, gamma polypeptide Novel U 0.0016860369266936193 -0.24651818361874928 1.0 11030 -15161 Hcfc1 host cell factor C1 Novel U 0.0016859380659843114 -0.24651920761472645 1.0 11031 -319186 H2bc14 H2B clustered histone 14 Novel U 0.001685661296069255 -0.24652207438840829 1.0 11032 -331026 Gmppb GDP-mannose pyrophosphorylase B Novel U 0.0016853983456686609 -0.2465247980200136 1.0 11033 -100043906 Kpna2rt karyopherin subunit alpha 2, retrotransposed Novel U 0.0016852419961211312 -0.2465264174834872 1.0 11034 -21664 Phlda1 pleckstrin homology like domain, family A, member 1 Novel U 0.0016849576902826652 -0.24652936231401595 1.0 11035 -632793 Vmn1r204 vomeronasal 1 receptor 204 Novel U 0.0016845652080740145 -0.246533427631831 1.0 11036 -67239 Rpf2 ribosome production factor 2 homolog Novel N 0.0016844111580409673 -0.2465350232770092 1.0 11037 -67998 Retreg3 reticulophagy regulator family member 3 Novel U 0.0016841189864060867 -0.24653804958119865 1.0 11038 -386655 Eid2 EP300 interacting inhibitor of differentiation 2 Novel U 0.0016834445609030927 -0.2465450352583881 1.0 11039 -14451 Gas1 growth arrest specific 1 Novel U 0.001682678565348991 -0.24655296941515678 1.0 11040 -75778 Them4 thioesterase superfamily member 4 Novel N 0.0016817252009967616 -0.24656284433177697 1.0 11041 -16512 Kcnh3 potassium voltage-gated channel, subfamily H (eag-related), member 3 Novel N 0.001680840481686011 -0.24657200822531417 1.0 11042 -54138 Atxn10 ataxin 10 Novel N 0.0016808183942540655 -0.2465722370062082 1.0 11043 -93699 Pcdhgb1 protocadherin gamma subfamily B, 1 Novel U 0.0016793357158816483 -0.24658759454004922 1.0 11044 -70699 Nup205 nucleoporin 205 Novel U 0.0016778999096124772 -0.24660246657418575 1.0 11045 -67623 Tm7sf3 transmembrane 7 superfamily member 3 Novel U 0.0016778386227973903 -0.2466031013810017 1.0 11046 -100039763 Cldn34c6 claudin 34C6 Novel U 0.001677734721568366 -0.2466041775865164 1.0 11047 -631304 Cyp4f40 cytochrome P450, family 4, subfamily f, polypeptide 40 Novel U 0.0016776406206859096 -0.24660515228036345 1.0 11048 -328110 Prpf39 pre-mRNA processing factor 39 Novel U 0.0016773953166402858 -0.2466076931316041 1.0 11049 -386454 Rnf39 ring finger protein 39 Novel U 0.0016771383708489443 -0.24661035456766417 1.0 11050 -26940 Ecsit ECSIT signalling integrator Novel U 0.0016769115053602024 -0.24661270443293876 1.0 11051 -208211 Alg1 ALG1 chitobiosyldiphosphodolichol beta-mannosyltransferase Novel U 0.0016766701729595043 -0.24661520414601182 1.0 11052 -14400 Gabrb1 gamma-aminobutyric acid type A receptor subunit beta 1 Novel N 0.0016763720439897068 -0.2466182921560805 1.0 11053 -27398 Mrpl2 mitochondrial ribosomal protein L2 Novel U 0.001676308765408945 -0.24661894759353986 1.0 11054 -231602 P2rx2 purinergic receptor P2X, ligand-gated ion channel, 2 Novel N 0.0016759538045086617 -0.24662262426687628 1.0 11055 -20520 Slc22a5 solute carrier family 22 (organic cation transporter), member 5 Novel U 0.0016755050811517954 -0.24662727212865573 1.0 11056 -21952 Tnni1 troponin I, skeletal, slow 1 Novel U 0.001675290824023815 -0.24662949139694404 1.0 11057 -71703 Armcx3 armadillo repeat containing, X-linked 3 Novel U 0.0016751408889991379 -0.2466310444190008 1.0 11058 -26757 Dpysl4 dihydropyrimidinase-like 4 Novel N 0.0016747568840345286 -0.24663502192980072 1.0 11059 -504186 Chrna10 cholinergic receptor, nicotinic, alpha polypeptide 10 Novel N 0.0016739423427123532 -0.2466434589220392 1.0 11060 -74412 Gle1 GLE1 RNA export mediator Novel U 0.0016736248438883388 -0.24664674756442112 1.0 11061 -213311 Fbxl21 F-box and leucine-rich repeat protein 21 Novel U 0.0016730505631478284 -0.2466526959454529 1.0 11062 -232933 Ccdc61 coiled-coil domain containing 61 Novel U 0.0016724861930178523 -0.2466585416727065 1.0 11063 -109331 Rnf20 ring finger protein 20 Novel U 0.0016723838931156944 -0.24665960129173012 1.0 11064 -230757 5730409E04Rik RIKEN cDNA 5730409E04Rik gene Novel U 0.001672298664209191 -0.24666048408994196 1.0 11065 -109264 Me3 malic enzyme 3, NADP(+)-dependent, mitochondrial Novel N 0.0016720305429942755 -0.24666326128067204 1.0 11066 -20680 Sox7 SRY (sex determining region Y)-box 7 Novel N 0.0016716864948547678 -0.2466668249199911 1.0 11067 -19094 Mapk11 mitogen-activated protein kinase 11 Novel U 0.0016710226801814824 -0.24667370069055525 1.0 11068 -23850 Pappa2 pappalysin 2 Novel N 0.0016705003602969243 -0.24667911086274913 1.0 11069 -108116 Slco3a1 solute carrier organic anion transporter family, member 3a1 Novel U 0.0016698289028043507 -0.24668606579738425 1.0 11070 -18226 Nup62 nucleoporin 62 Novel U 0.001669032248979639 -0.24669431751151202 1.0 11071 -75725 Phf14 PHD finger protein 14 Novel U 0.0016682896289254945 -0.24670200954562052 1.0 11072 -66404 Rtf2 replication termination factor 2 Novel N 0.0016680804483338095 -0.24670417623131277 1.0 11073 -268741 Tox4 TOX high mobility group box family member 4 Novel U 0.001668044250100328 -0.24670455117142523 1.0 11074 -70235 Poc1a POC1 centriolar protein A Novel U 0.0016678713330125056 -0.24670634224093654 1.0 11075 -15368 Hmox1 heme oxygenase 1 Novel U 0.0016677805664846277 -0.24670728239764853 1.0 11076 -28194 Apon apolipoprotein N Novel U 0.0016674993948699599 -0.24671019476399023 1.0 11077 -53600 Timm23 translocase of inner mitochondrial membrane 23 Novel U 0.0016669546600086645 -0.24671583710977632 1.0 11078 -66500 Slc30a7 solute carrier family 30 (zinc transporter), member 7 Novel U 0.0016657214077997913 -0.24672861109561484 1.0 11079 -67044 Higd2a HIG1 domain family, member 2A Novel U 0.0016654219673251313 -0.24673171269020783 1.0 11080 -626415 Potefam3e POTE ankyrin domain family member 3E Novel U 0.0016654124083926296 -0.24673181170131642 1.0 11081 -107995 Cdc20 cell division cycle 20 Novel U 0.0016650135299345408 -0.24673594327127288 1.0 11082 -433698 Spata31f1a spermatogenesis associated 31 subfamily F member 1A Novel U 0.0016647253165454259 -0.24673892857608284 1.0 11083 -17022 Lum lumican Novel N 0.0016623781830545701 -0.24676324010762324 1.0 11084 -56538 Klk11 kallikrein related-peptidase 11 Novel U 0.0016617647239458358 -0.24676959429690512 1.0 11085 -18164 Nptx1 neuronal pentraxin 1 Novel N 0.001661397099674849 -0.246773402137019 1.0 11086 -13211 Dhx9 DExH-box helicase 9 Novel U 0.0016612540966803124 -0.24677488335733544 1.0 11087 -215456 Gpat2 glycerol-3-phosphate acyltransferase 2, mitochondrial Novel U 0.0016598926549833823 -0.2467889851256773 1.0 11088 -257979 Or4k37 olfactory receptor family 4 subfamily K member 37 Novel U 0.0016597734685001313 -0.24679021965535275 1.0 11089 -12908 Crat carnitine acetyltransferase Novel N 0.0016595164797922341 -0.24679288153594112 1.0 11090 -170938 Zfp617 zinc finger protein 617 Novel U 0.0016586871147525734 -0.24680147207175798 1.0 11091 -19293 Pvalb parvalbumin Novel U 0.001658091554177052 -0.24680764086862125 1.0 11092 -13389 Dll3 delta like canonical Notch ligand 3 Novel U 0.0016580266379866064 -0.24680831326838787 1.0 11093 -67586 Ubxn11 UBX domain protein 11 Novel U 0.0016567545935562249 -0.24682148906278156 1.0 11094 -66136 Polr1h RNA polymerase I subunit H Novel N 0.0016565296406454329 -0.24682381911763662 1.0 11095 -75388 Boll boule homolog, RNA binding protein Novel N 0.0016563213571547638 -0.24682597651118604 1.0 11096 -16619 Klk1b27 kallikrein 1-related peptidase b27 Novel U 0.001655330337695066 -0.24683624145817157 1.0 11097 -225341 Lims2 LIM and senescent cell antigen like domains 2 Novel N 0.0016550022626199634 -0.2468396396490146 1.0 11098 -27411 Slc14a2 solute carrier family 14 (urea transporter), member 2 Novel N 0.0016548711698530828 -0.2468409975035845 1.0 11099 -70769 Nolc1 nucleolar and coiled-body phosphoprotein 1 Novel N 0.0016543780224471598 -0.24684610550820368 1.0 11100 -20893 Bhlhe40 basic helix-loop-helix family, member e40 Novel U 0.0016541263995240184 -0.24684871181016996 1.0 11101 -19727 Rfxank regulatory factor X-associated ankyrin-containing protein Novel U 0.0016530487014453333 -0.24685987457144154 1.0 11102 -74182 Gpcpd1 glycerophosphocholine phosphodiesterase 1 Novel U 0.0016524476367062613 -0.24686610038024992 1.0 11103 -60527 Fads3 fatty acid desaturase 3 Novel U 0.0016516036946659955 -0.24687484190415987 1.0 11104 -67832 Brix1 BRX1, biogenesis of ribosomes Novel U 0.0016515569751863579 -0.24687532582299415 1.0 11105 -67464 Entpd4 ectonucleoside triphosphate diphosphohydrolase 4 Novel U 0.0016514663677263577 -0.2468762643320863 1.0 11106 -216616 Efemp1 epidermal growth factor-containing fibulin-like extracellular matrix protein 1 Novel U 0.001651231276072446 -0.24687869940370927 1.0 11107 -235604 Camkv CaM kinase-like vesicle-associated Novel U 0.001650816223509172 -0.24688299850451553 1.0 11108 -70560 Wars2 tryptophanyl tRNA synthetase 2 (mitochondrial) Novel U 0.001649835827667378 -0.24689315341241608 1.0 11109 -212153 Ccdc191 coiled-coil domain containing 191 Novel U 0.0016496335426665683 -0.2468952486738047 1.0 11110 -53872 Caprin1 cell cycle associated protein 1 Novel U 0.0016492433457304724 -0.24689929032084174 1.0 11111 -66167 Tma7 translational machinery associated 7 Novel U 0.0016489654853285207 -0.24690216838975101 1.0 11112 -56310 Gps2 G protein pathway suppressor 2 Novel N 0.0016489170346539882 -0.24690267024024506 1.0 11113 -217431 Nol10 nucleolar protein 10 Novel U 0.0016486270847793708 -0.24690567353151477 1.0 11114 -69481 Actl9 actin-like 9 Novel U 0.0016484108573041657 -0.24690791320859484 1.0 11115 -13382 Dld dihydrolipoamide dehydrogenase Novel N 0.001648267693163455 -0.24690939609805806 1.0 11116 -69617 Pitrm1 pitrilysin metallepetidase 1 Novel U 0.0016479397369836674 -0.24691279305738734 1.0 11117 -328440 Npm2 nucleophosmin/nucleoplasmin 2 Novel N 0.0016477413585688876 -0.24691484785448628 1.0 11118 -219033 Ang4 angiogenin, ribonuclease A family, member 4 Novel U 0.0016476139632211053 -0.2469161674113107 1.0 11119 -14791 Emg1 EMG1 N1-specific pseudouridine methyltransferase Novel U 0.001647549015779738 -0.24691684013477336 1.0 11120 -17232 Mcpt9 mast cell protease 9 Novel U 0.0016468764293255636 -0.24692380676315562 1.0 11121 -66520 Smim30 small integral membrane protein 30 Novel U 0.0016466557140405876 -0.24692609292482176 1.0 11122 -100043596 Vmn1r130 vomeronasal 1 receptor 130 Novel U 0.0016466167265905827 -0.24692649675554726 1.0 11123 -66492 Zmat2 zinc finger, matrin type 2 Novel N 0.0016454803575489652 -0.24693826722872422 1.0 11124 -100039089 Mup13 major urinary protein 13 Novel U 0.0016449703881070805 -0.24694354947543892 1.0 11125 -14199 Fhl1 four and a half LIM domains 1 Novel U 0.0016444972946811018 -0.2469484497615931 1.0 11126 -269295 Rtn4rl2 reticulon 4 receptor-like 2 Novel U 0.0016444004242776734 -0.2469494531420474 1.0 11127 -77058 Ccdc183 coiled-coil domain containing 183 Novel U 0.0016440872723766653 -0.2469526967591437 1.0 11128 -319352 Pianp PILR alpha associated neural protein Novel U 0.0016440579776890328 -0.2469530001925552 1.0 11129 -68695 Hddc3 HD domain containing 3 Novel U 0.0016427075755874592 -0.24696698761313118 1.0 11130 -627049 Zfp800 zinc finger protein 800 Novel U 0.0016422292917918537 -0.24697194166096337 1.0 11131 -246779 Il27 interleukin 27 Novel U 0.0016420918213909993 -0.2469733655748563 1.0 11132 -620551 LOC620551 PRAME family member 8-like Novel U 0.0016413867220956128 -0.246980668970179 1.0 11133 -12164 Bmp8b bone morphogenetic protein 8b Novel U 0.0016410535378247025 -0.2469841200819043 1.0 11134 -383103 Tvp23a trans-golgi network vesicle protein 23A Novel U 0.001640506724356545 -0.24698978395783194 1.0 11135 -229776 Cdc14a CDC14 cell division cycle 14A Novel N 0.0016404946665735298 -0.24698990885195204 1.0 11136 -73327 Pradc1 protease-associated domain containing 1 Novel U 0.001640205342979796 -0.24699290565622492 1.0 11137 -15182 Hdac2 histone deacetylase 2 Novel U 0.001639961232403394 -0.24699543414555059 1.0 11138 -22229 Ucp3 uncoupling protein 3 (mitochondrial, proton carrier) Novel U 0.0016398616597219557 -0.24699646551611162 1.0 11139 -69706 Lrr1 leucine rich repeat protein 1 Novel U 0.001639639782497883 -0.24699876371310475 1.0 11140 -53856 Prg3 proteoglycan 3 Novel U 0.00163944455814759 -0.24700078584050744 1.0 11141 -20501 Slc16a1 solute carrier family 16 (monocarboxylic acid transporters), member 1 Novel U 0.0016393584110898417 -0.24700167814889964 1.0 11142 -213945 Col28a1 collagen, type XXVIII, alpha 1 Novel U 0.0016384954722332222 -0.24701061644120895 1.0 11143 -234199 Fgl1 fibrinogen-like protein 1 Novel N 0.0016382228278761198 -0.24701344048249713 1.0 11144 -100042428 Gm20917 predicted gene, 20917 Novel U 0.0016380084877150002 -0.24701566061083993 1.0 11145 -330470 Bsph1 binder of sperm protein homolog 1 Novel U 0.0016376971571475116 -0.24701888536262356 1.0 11146 -99480 Dnttip2 deoxynucleotidyltransferase, terminal, interacting protein 2 Novel N 0.0016365579117971635 -0.2470306856285118 1.0 11147 -230099 Car9 carbonic anhydrase 9 Novel U 0.0016360109549282632 -0.24703635098977964 1.0 11148 -241514 Zfp804a zinc finger protein 804A Novel U 0.0016347852697974105 -0.24704904659607277 1.0 11149 -74253 Klrg2 killer cell lectin-like receptor subfamily G, member 2 Novel U 0.0016345663795515012 -0.24705131385404425 1.0 11150 -67005 Polr3k polymerase (RNA) III (DNA directed) polypeptide K Novel U 0.0016343430145256885 -0.2470536274616389 1.0 11151 -68703 Rere arginine glutamic acid dipeptide (RE) repeats Novel U 0.001634228243165353 -0.24705481625961634 1.0 11152 -554327 2610042L04Rik RIKEN cDNA 2610042L04 gene Novel U 0.0016341667548688443 -0.24705545315337027 1.0 11153 -67628 Anp32b acidic nuclear phosphoprotein 32 family member B Novel U 0.0016340672997066479 -0.24705648330667088 1.0 11154 -93701 Pcdhgb4 protocadherin gamma subfamily B, 4 Novel U 0.0016331046351353105 -0.24706645455465487 1.0 11155 -22772 Zic2 zinc finger protein of the cerebellum 2 Novel U 0.0016328915709474833 -0.2470686614665083 1.0 11156 -23874 Farsb phenylalanyl-tRNA synthetase, beta subunit Novel U 0.0016328411159373414 -0.24706918407784473 1.0 11157 -69237 Gtpbp4 GTP binding protein 4 Novel U 0.0016327264792722635 -0.2470703714806531 1.0 11158 -210992 Lpcat1 lysophosphatidylcholine acyltransferase 1 Novel U 0.001632587454092023 -0.24707181149889987 1.0 11159 -16365 Acod1 aconitate decarboxylase 1 Novel U 0.0016322351055734839 -0.24707546111327205 1.0 11160 -381715 Speer4c2 spermatogenesis associated glutamate (E)-rich protein 4C2 Novel U 0.0016316292720573123 -0.24708173631691685 1.0 11161 -11732 Ank progressive ankylosis Novel U 0.001631498271529418 -0.24708309321607835 1.0 11162 -18968 Pola1 polymerase (DNA directed), alpha 1 Novel U 0.0016313782721865313 -0.24708433616532724 1.0 11163 -27015 Polk polymerase (DNA directed), kappa Novel U 0.0016312095262938163 -0.24708608402973675 1.0 11164 -171395 Pkd1l1 polycystic kidney disease 1 like 1 Novel N 0.0016308294674808811 -0.24709002066642738 1.0 11165 -69416 Ms4a19 membrane-spanning 4-domains, subfamily A, member 19 Novel U 0.0016306357803168017 -0.24709202687170578 1.0 11166 -114606 Tle6 transducin-like enhancer of split 6 Novel U 0.0016301493315153996 -0.24709706549239957 1.0 11167 -230971 Megf6 multiple EGF-like-domains 6 Novel U 0.001629999295954845 -0.24709861955580364 1.0 11168 -240087 Mdc1 mediator of DNA damage checkpoint 1 Novel U 0.001629808173758682 -0.2471005991932287 1.0 11169 -70097 Sash1 SAM and SH3 domain containing 1 Novel U 0.0016296751199841861 -0.247101977359851 1.0 11170 -67590 Tctn3 tectonic family member 3 Novel U 0.0016295415143854674 -0.2471033612422505 1.0 11171 -66934 Dsn1 DSN1 homolog, MIS12 kinetochore complex component Novel U 0.001629484711162731 -0.24710394960816429 1.0 11172 -67733 Itgb3bp integrin beta 3 binding protein (beta3-endonexin) Novel N 0.0016287530492569578 -0.2471115281381322 1.0 11173 -56089 Ramp3 receptor (calcitonin) activity modifying protein 3 Novel U 0.0016285089768230394 -0.24711405623237928 1.0 11174 -171275 Vmn1r212 vomeronasal 1 receptor 212 Novel U 0.0016281212914416882 -0.24711807186481483 1.0 11175 -320181 Fndc7 fibronectin type III domain containing 7 Novel U 0.0016273711247467792 -0.24712584206678032 1.0 11176 -171203 Vmn1r9 vomeronasal 1 receptor 9 Novel U 0.0016273253709709285 -0.24712631598288648 1.0 11177 -19017 Ppargc1a peroxisome proliferative activated receptor, gamma, coactivator 1 alpha Novel U 0.0016261481579097421 -0.24713850951707547 1.0 11178 -21674 Sry sex determining region of Chr Y Novel U 0.0016260699776281184 -0.2471393193058625 1.0 11179 -12919 Crhbp corticotropin releasing hormone binding protein Novel U 0.001625571974608535 -0.24714447760476835 1.0 11180 -80907 Lactb lactamase, beta Novel N 0.0016252669811817745 -0.24714763671665663 1.0 11181 -15081 H3f3b H3.3 histone B Novel U 0.0016242252773805282 -0.24715842665038576 1.0 11182 -98396 Slc41a1 solute carrier family 41, member 1 Novel U 0.001623589124328549 -0.24716501590278575 1.0 11183 -213956 Fam83f family with sequence similarity 83, member F Novel U 0.0016227705586811152 -0.247173494578853 1.0 11184 -238896 Cdc20b cell division cycle 20B Novel N 0.0016224874622143978 -0.24717642688274896 1.0 11185 -433766 Trim63 tripartite motif-containing 63 Novel U 0.0016223317900518413 -0.24717803932989127 1.0 11186 -20055 Rps16 ribosomal protein S16 Novel N 0.001621719968335458 -0.24718437655911701 1.0 11187 -227720 Nup214 nucleoporin 214 Novel U 0.0016217156078599019 -0.2471844217247795 1.0 11188 -74901 Kbtbd11 kelch repeat and BTB (POZ) domain containing 11 Novel U 0.0016209601386029846 -0.24719224685050792 1.0 11189 -433938 Mn1 meningioma 1 Novel U 0.0016206458860010054 -0.2471955018686287 1.0 11190 -240121 Fsd1 fibronectin type 3 and SPRY domain-containing protein Novel U 0.0016201089955787723 -0.2472010629619729 1.0 11191 -218311 Zfp455 zinc finger protein 455 Novel U 0.0016200252294546803 -0.24720193060873255 1.0 11192 -73360 Actrt1 actin-related protein T1 Novel N 0.0016195622945014963 -0.24720672567375945 1.0 11193 -74470 Cep72 centrosomal protein 72 Novel U 0.0016191772237136807 -0.24721071422432114 1.0 11194 -215789 Phactr2 phosphatase and actin regulator 2 Novel U 0.0016185807437002118 -0.24721689254469245 1.0 11195 -114872 Psg29 pregnancy-specific beta-1-glycoprotein 29 Novel U 0.001618063295765872 -0.24722225225338612 1.0 11196 -103742 Mien1 migration and invasion enhancer 1 Novel U 0.0016180564175826426 -0.24722232349738194 1.0 11197 -23939 Mapk7 mitogen-activated protein kinase 7 Novel U 0.0016179771787843673 -0.2472231442502496 1.0 11198 -207618 Zfp804b zinc finger protein 804B Novel U 0.0016177577428649608 -0.24722541716028926 1.0 11199 -66416 Ndufa7 NADH:ubiquinone oxidoreductase subunit A7 Novel U 0.0016175282976650842 -0.247227793746127 1.0 11200 -100503895 Tpsab1 tryptase alpha/beta 1 Novel U 0.0016174726504363946 -0.24722837013829246 1.0 11201 -17339 Mip major intrinsic protein of lens fiber Novel U 0.0016173996576265947 -0.24722912619541687 1.0 11202 -171508 Creld1 cysteine-rich with EGF-like domains 1 Novel N 0.0016168480176074749 -0.2472348400646007 1.0 11203 -387348 Tas2r120 taste receptor, type 2, member 120 Novel U 0.0016154206713792129 -0.24724962446991158 1.0 11204 -22695 Zfp36 zinc finger protein 36 Novel U 0.0016153685513106066 -0.24725016432786884 1.0 11205 -233222 Mrgpra3 MAS-related GPR, member A3 Novel U 0.0016152297540374108 -0.24725160198546187 1.0 11206 -434960 Gm20747 predicted gene, 20747 Novel U 0.0016144636867203483 -0.24725953688554891 1.0 11207 -109815 Selenos selenoprotein S Novel U 0.0016130182753179166 -0.24727450840933998 1.0 11208 -24050 Septin3 septin 3 Novel U 0.0016127509345512144 -0.24727727751621312 1.0 11209 -216853 Wrap53 WD repeat containing, antisense to Trp53 Novel U 0.0016123319442840165 -0.24728161740362717 1.0 11210 -71101 Uvssa UV stimulated scaffold protein A Novel N 0.0016119198136600992 -0.24728588623908165 1.0 11211 -333639 Mamld1 mastermind-like domain containing 1 Novel N 0.0016115227527780716 -0.247289998982645 1.0 11212 -320595 Phf8 PHD finger protein 8 Novel N 0.001611375356702379 -0.24729152570635166 1.0 11213 -233066 Syne4 spectrin repeat containing, nuclear envelope family member 4 Novel N 0.0016111640195149467 -0.24729371472999173 1.0 11214 -385138 BC061237 cDNA sequence BC061237 Novel U 0.00161039215454925 -0.2473017096819327 1.0 11215 -244418 Prag1 PEAK1 related kinase activating pseudokinase 1 Novel N 0.0016099830783044846 -0.24730594688022836 1.0 11216 -83410 Cstf2t cleavage stimulation factor, 3' pre-RNA subunit 2, tau Novel U 0.001608171671274686 -0.2473247093746962 1.0 11217 -66594 Uqcr11 ubiquinol-cytochrome c reductase, complex III subunit XI Novel N 0.001608108125900429 -0.2473253675755938 1.0 11218 -13075 Cyp19a1 cytochrome P450, family 19, subfamily a, polypeptide 1 Novel U 0.0016079249555471834 -0.24732726484809134 1.0 11219 -77727 6030468B19Rik RIKEN cDNA 6030468B19 gene Novel U 0.0016078863837885044 -0.24732766437309978 1.0 11220 -66541 Immp1l IMP1 inner mitochondrial membrane peptidase-like (S. cerevisiae) Novel U 0.0016072246252075216 -0.24733451884672744 1.0 11221 -27395 Mrpl15 mitochondrial ribosomal protein L15 Novel U 0.0016071735736435321 -0.247335047637149 1.0 11222 -28036 Larp7 La ribonucleoprotein 7, transcriptional regulator Novel U 0.0016064329165805396 -0.2473427193386597 1.0 11223 -19428 Rasl2-9 RAS-like, family 2, locus 9 Novel U 0.0016060557681890064 -0.24734662582930111 1.0 11224 -226541 Klhl20 kelch-like 20 Novel U 0.00160543447451078 -0.24735306116879624 1.0 11225 -70981 Potegl POTE ankyrin domain family, member G like Novel U 0.0016048979766658832 -0.24735861819583727 1.0 11226 -70727 Rasgef1a RasGEF domain family, member 1A Novel U 0.0016046445703964906 -0.24736124296964537 1.0 11227 -233833 Tnrc6a trinucleotide repeat containing 6a Novel N 0.001604416069374601 -0.24736360977571853 1.0 11228 -57261 Brd4 bromodomain containing 4 Novel U 0.0016042584206916572 -0.24736524269559404 1.0 11229 -18295 Ogn osteoglycin Novel U 0.0016039311247588999 -0.24736863281610627 1.0 11230 -11974 Atp6v0e ATPase, H+ transporting, lysosomal V0 subunit E Novel N 0.0016027625672307105 -0.247380736696569 1.0 11231 -224023 Klhl22 kelch-like 22 Novel U 0.0016025281915573036 -0.24738316435208946 1.0 11232 -215919 Rfpl4b ret finger protein-like 4B Novel U 0.0016014697118743525 -0.2473941280498498 1.0 11233 -244853 Nxpe4 neurexophilin and PC-esterase domain family, member 4 Novel U 0.001601201415140623 -0.24739690705859801 1.0 11234 -69126 Rbis ribosomal biogenesis factor Novel N 0.0016010073193211808 -0.24739891749671522 1.0 11235 -17685 Msh2 mutS homolog 2 Novel U 0.0016002477622346976 -0.24740678496404792 1.0 11236 -104027 Synpo synaptopodin Novel U 0.0015997198055537854 -0.24741225352199317 1.0 11237 -380959 Alg10b ALG10 alpha-1,2-glucosyltransferase Novel U 0.0015991856435463537 -0.2474177863545065 1.0 11238 -209586 Nudcd3 NudC domain containing 3 Novel N 0.0015988479159765102 -0.24742128452557277 1.0 11239 -69894 Fam241b family with sequence similarity 241, member B Novel U 0.001598243365879119 -0.24742754643560805 1.0 11240 -69399 1700025G04Rik RIKEN cDNA 1700025G04 gene Novel U 0.0015958743875761263 -0.24745208423499448 1.0 11241 -667259 Vmn1r118 vomeronasal 1 receptor 118 Novel U 0.0015952386074795895 -0.24745866962433424 1.0 11242 -72357 2210016L21Rik RIKEN cDNA 2210016L21 gene Novel U 0.0015950646550010686 -0.2474604714183884 1.0 11243 -78830 Slc25a12 solute carrier family 25 (mitochondrial carrier, Aralar), member 12 Novel U 0.001595025754822759 -0.24746087434515654 1.0 11244 -12798 Cnn2 calponin 2 Novel U 0.0015946921046350935 -0.2474643302828322 1.0 11245 -621430 Vmn2r79 vomeronasal 2, receptor 79 Novel U 0.0015945013366870982 -0.2474663062509664 1.0 11246 -241547 Harbi1 harbinger transposase derived 1 Novel U 0.0015937365585381922 -0.24747422779789202 1.0 11247 -280667 Adam1b a disintegrin and metallopeptidase domain 1b Novel U 0.0015932276706197468 -0.2474794988422225 1.0 11248 -319195 Rpl17 ribosomal protein L17 Novel U 0.0015928974828306785 -0.24748291891648735 1.0 11249 -231863 Fbxl18 F-box and leucine-rich repeat protein 18 Novel U 0.0015926493239200742 -0.24748548933832562 1.0 11250 -71354 Wdr31 WD repeat domain 31 Novel U 0.0015917849971916415 -0.2474944420061655 1.0 11251 -67580 Lrrc18 leucine rich repeat containing 18 Novel U 0.0015916459041453832 -0.2474958827273662 1.0 11252 -58243 Nap1l5 nucleosome assembly protein 1-like 5 Novel U 0.001591290632965176 -0.24749956261457187 1.0 11253 -74574 Lvrn laeverin Novel U 0.0015912719058918795 -0.24749975658898143 1.0 11254 -217734 Pomt2 protein-O-mannosyltransferase 2 Novel U 0.0015910455017694918 -0.2475021016754385 1.0 11255 -212679 Mars2 methionine-tRNA synthetase 2 (mitochondrial) Novel N 0.001591019284951991 -0.24750237322837235 1.0 11256 -74762 Mdga1 MAM domain containing glycosylphosphatidylinositol anchor 1 Novel N 0.0015907662092968778 -0.2475049945776886 1.0 11257 -56835 Ctsr cathepsin R Novel U 0.0015904125984018997 -0.24750865726771445 1.0 11258 -22648 Zfp11 zinc finger protein 11 Novel U 0.0015903866198662933 -0.24750892635253227 1.0 11259 -66884 Appbp2 amyloid beta precursor protein binding protein 2 Novel U 0.0015897302230681385 -0.24751572528898969 1.0 11260 -16012 Igfbp6 insulin-like growth factor binding protein 6 Novel U 0.001588852463866415 -0.24752481708994634 1.0 11261 -13897 Ces1e carboxylesterase 1E Novel U 0.0015885610974923309 -0.24752783505327094 1.0 11262 -381560 Xkr8 X-linked Kx blood group related 8 Novel U 0.0015884789745264347 -0.24752868568025205 1.0 11263 -641376 Tomm40l translocase of outer mitochondrial membrane 40-like Novel U 0.0015884301087034478 -0.24752919183084018 1.0 11264 -72515 Wdr43 WD repeat domain 43 Novel N 0.0015882458446738162 -0.24753110043160176 1.0 11265 -27221 Chaf1a chromatin assembly factor 1, subunit A Novel N 0.0015882030376696428 -0.24753154382514378 1.0 11266 -26898 Ctsj cathepsin J Novel U 0.0015880847387979573 -0.24753276916096784 1.0 11267 -545428 Ccdc141 coiled-coil domain containing 141 Novel N 0.0015866516348556124 -0.24754761320449187 1.0 11268 -74637 Shpk sedoheptulokinase Novel U 0.0015865671918183829 -0.24754848786269562 1.0 11269 -67153 Rnaseh2b ribonuclease H2, subunit B Novel U 0.0015860795517383946 -0.2475535388226138 1.0 11270 -12259 C1qa complement component 1, q subcomponent, alpha polypeptide Novel U 0.0015859318447981872 -0.24755506876624486 1.0 11271 -76563 Qrsl1 glutaminyl-tRNA synthase (glutamine-hydrolyzing)-like 1 Novel N 0.0015859087245892682 -0.24755530824460883 1.0 11272 -192950 Nacad NAC alpha domain containing Novel U 0.0015856837957048564 -0.2475576380505994 1.0 11273 -66869 Zfp869 zinc finger protein 869 Novel U 0.0015856745741598137 -0.24755773356705985 1.0 11274 -69683 Emc10 ER membrane protein complex subunit 10 Novel U 0.001585596716363059 -0.2475585400155592 1.0 11275 -59027 Nampt nicotinamide phosphoribosyltransferase Novel U 0.0015843305264267792 -0.2475716551692954 1.0 11276 -78832 Cacul1 CDK2 associated, cullin domain 1 Novel U 0.0015840601541531499 -0.24757445567641764 1.0 11277 -269132 Colgalt2 collagen beta(1-O)galactosyltransferase 2 Novel N 0.0015837337511680877 -0.24757783654780702 1.0 11278 -213541 Ythdf2 YTH N6-methyladenosine RNA binding protein 2 Novel U 0.0015832949556648498 -0.24758238157720494 1.0 11279 -434437 Amt aminomethyltransferase Novel N 0.0015831409491028354 -0.24758397677211158 1.0 11280 -20201 S100a8 S100 calcium binding protein A8 (calgranulin A) Novel U 0.001582908627342125 -0.24758638315327186 1.0 11281 -76965 Slitrk1 SLIT and NTRK-like family, member 1 Novel U 0.0015818501504202118 -0.24759734682243348 1.0 11282 -215772 Adgb androglobin Novel U 0.0015806855402164123 -0.24760940981663992 1.0 11283 -68846 Rnf208 ring finger protein 208 Novel U 0.0015804061301701738 -0.24761230393671377 1.0 11284 -17768 Mthfd2 methylenetetrahydrofolate dehydrogenase (NAD+ dependent), methenyltetrahydrofolate cyclohydrolase Novel N 0.0015802540851120052 -0.24761387881442806 1.0 11285 -228980 Taf4 TATA-box binding protein associated factor 4 Novel N 0.0015794757865066297 -0.24762194040579733 1.0 11286 -52585 Dhrs1 dehydrogenase/reductase 1 Novel U 0.0015794370675081752 -0.2476223414559105 1.0 11287 -270086 Ogfod1 2-oxoglutarate and iron-dependent oxygenase domain containing 1 Novel N 0.001579073658747322 -0.247626105631909 1.0 11288 -269401 Zfp512b zinc finger protein 512B Novel N 0.0015789233591945574 -0.2476276624297357 1.0 11289 -380787 Lbhd2 LBH domain containing 2 Novel U 0.0015788465736228732 -0.24762845777216302 1.0 11290 -110095 Pygl liver glycogen phosphorylase Novel U 0.0015786587664423 -0.2476304030727656 1.0 11291 -268880 Xxylt1 xyloside xylosyltransferase 1 Novel N 0.0015784683695466328 -0.24763237519755193 1.0 11292 -18637 Pfdn2 prefoldin 2 Novel U 0.0015784271191900464 -0.24763280246738942 1.0 11293 -70918 Nsun7 NOL1/NOP2/Sun domain family, member 7 Novel U 0.00157685123199315 -0.24764912545517037 1.0 11294 -17350 Mlh1 mutL homolog 1 Novel U 0.001576516316807774 -0.24765259449565075 1.0 11295 -226182 Taf5 TATA-box binding protein associated factor 5 Novel N 0.0015762596038002969 -0.2476552535205432 1.0 11296 -381983 Lmtk3 lemur tyrosine kinase 3 Novel U 0.0015762547229481783 -0.247655304076249 1.0 11297 -233107 Kctd15 potassium channel tetramerisation domain containing 15 Novel U 0.0015761789529781772 -0.2476560888991075 1.0 11298 -93873 Pcdhb2 protocadherin beta 2 Novel U 0.0015758962851135977 -0.24765901676355662 1.0 11299 -20700 Serpina1a serine (or cysteine) peptidase inhibitor, clade A, member 1A Novel U 0.0015757554946421075 -0.24766047506663205 1.0 11300 -98267 Stk17b serine/threonine kinase 17b (apoptosis-inducing) Novel N 0.0015756140830388 -0.24766193980337045 1.0 11301 -15926 Idh1 isocitrate dehydrogenase 1 (NADP+), soluble Novel U 0.0015755847923006243 -0.24766224319587357 1.0 11302 -212114 Nhlrc3 NHL repeat containing 3 Novel U 0.0015754432436614087 -0.24766370935202542 1.0 11303 -14407 Gabrg3 gamma-aminobutyric acid type A receptor, subunit gamma 3 Novel U 0.0015753644613358576 -0.24766452537676367 1.0 11304 -113851 Vmn1r54 vomeronasal 1 receptor 54 Novel U 0.0015738646907422881 -0.24768005995126957 1.0 11305 -56258 Hnrnph2 heterogeneous nuclear ribonucleoprotein H2 Novel U 0.0015736612844306746 -0.24768216682715863 1.0 11306 -104816 Aspg asparaginase Novel N 0.0015735322350577997 -0.2476835035163206 1.0 11307 -668178 Tmt1a3 thiol methyltransferase 1A3 Novel U 0.0015730208453089976 -0.24768880047452765 1.0 11308 -74493 Tnks2 tankyrase, TRF1-interacting ankyrin-related ADP-ribose polymerase 2 Novel U 0.0015717431476273554 -0.24770203482511205 1.0 11309 -27409 Abcg5 ATP binding cassette subfamily G member 5 Novel U 0.0015714814418449573 -0.24770474556500302 1.0 11310 -269637 Cnpy1 canopy FGF signaling regulator 1 Novel U 0.0015694990220359994 -0.24772527940421565 1.0 11311 -235036 Ppan peter pan homolog Novel U 0.0015687143782368948 -0.24773340671889302 1.0 11312 -100040049 Smim38 small integral membrane protein 38 Novel U 0.0015678546434548272 -0.2477423118235034 1.0 11313 -70315 Hdac8 histone deacetylase 8 Novel U 0.0015675550576262497 -0.24774541492366747 1.0 11314 -67889 Rbm18 RNA binding motif protein 18 Novel U 0.00156656372157391 -0.2477556831499092 1.0 11315 -100312475 Vmn1r95 vomeronasal 1 receptor, 95 Novel U 0.0015652762005644782 -0.2477690192501999 1.0 11316 -67207 Lsm1 LSM1 homolog, mRNA degradation associated Novel N 0.0015651420762035064 -0.24777040850592175 1.0 11317 -71436 Flrt3 fibronectin leucine rich transmembrane protein 3 Novel U 0.0015649335557398347 -0.24777256835402972 1.0 11318 -320940 Atp11c ATPase, class VI, type 11C Novel N 0.0015648924212460322 -0.2477729944237643 1.0 11319 -71707 Ubiad1 UbiA prenyltransferase domain containing 1 Novel U 0.0015647235042147883 -0.24777474406082106 1.0 11320 -226841 Vash2 vasohibin 2 Novel U 0.0015642584344252508 -0.24777956123841274 1.0 11321 -171251 Vmn1r205 vomeronasal 1 receptor 205 Novel U 0.0015637408553606077 -0.24778492230534985 1.0 11322 -19074 Prg2 proteoglycan 2, bone marrow Novel U 0.0015635032417176229 -0.24778738349965276 1.0 11323 -100043227 Alyreffm5 Aly/REF export factor family member 5 Novel U 0.0015630240808972953 -0.24779234663167812 1.0 11324 -66498 Dda1 DET1 and DDB1 associated 1 Novel U 0.001562041673886484 -0.24780252237120123 1.0 11325 -71983 Tmco6 transmembrane and coiled-coil domains 6 Novel U 0.001561756856814974 -0.24780547249706508 1.0 11326 -70693 Adgra3 adhesion G protein-coupled receptor A3 Novel U 0.001561664821990755 -0.24780642579074885 1.0 11327 -53314 Batf basic leucine zipper transcription factor, ATF-like Novel U 0.0015612421291023393 -0.24781080402979178 1.0 11328 -13340 Slc29a2 solute carrier family 29 (nucleoside transporters), member 2 Novel N 0.0015607503106703977 -0.24781589826894215 1.0 11329 -11447 Chrnd cholinergic receptor, nicotinic, delta polypeptide Novel U 0.0015607215869076173 -0.24781619578873282 1.0 11330 -15275 Hk1 hexokinase 1 Novel U 0.0015604931099806728 -0.2478185623452313 1.0 11331 -71775 Inhca inhibitor of carbonic anhydrase Novel U 0.0015604212150028324 -0.2478193070310484 1.0 11332 -244152 Tsku tsukushi, small leucine rich proteoglycan Novel U 0.0015597678723188006 -0.2478260743330921 1.0 11333 -230822 Ncmap noncompact myelin associated protein Novel U 0.001559569206896898 -0.24782813210300136 1.0 11334 -195564 Skint3 selection and upkeep of intraepithelial T cells 3 Novel U 0.0015586757520722307 -0.24783738647870457 1.0 11335 -102103 Mtus1 mitochondrial tumor suppressor 1 Novel U 0.0015583222535824211 -0.24784104800444137 1.0 11336 -218341 Rfesd Rieske (Fe-S) domain containing Novel U 0.0015570003271891731 -0.24785474047456663 1.0 11337 -67868 Cela3b chymotrypsin-like elastase family, member 3B Novel U 0.0015567898336925428 -0.24785692075928514 1.0 11338 -212073 Syne3 spectrin repeat containing, nuclear envelope family member 3 Novel U 0.0015558597576965953 -0.24786655445587655 1.0 11339 -99151 Cercam cerebral endothelial cell adhesion molecule Novel N 0.0015551741963086264 -0.24787365547819654 1.0 11340 -100039624 Sft2d1rt SFT2 domain containing 1, retrotransposed Novel U 0.0015540482613117445 -0.24788531787588108 1.0 11341 -72123 Ccdc71l coiled-coil domain containing 71 like Novel U 0.0015539644639856452 -0.24788618584583014 1.0 11342 -14261 Fmo1 flavin containing monooxygenase 1 Novel N 0.0015538361280430875 -0.24788751514530435 1.0 11343 -69225 Naxd NAD(P)HX dehydratase Novel U 0.0015538276176427256 -0.24788760329575152 1.0 11344 -20375 Spi1 Spi-1 proto-oncogene Novel U 0.0015533742247422645 -0.24789229952451 1.0 11345 -214685 Chadl chondroadherin-like Novel U 0.0015524103531356598 -0.24790228327492564 1.0 11346 -68481 Mpzl1 myelin protein zero-like 1 Novel U 0.0015512098086094888 -0.24791471847566196 1.0 11347 -107765 Ankrd1 ankyrin repeat domain 1 Novel U 0.001551007876615064 -0.24791681008062202 1.0 11348 -67849 Cdca5 cell division cycle associated 5 Novel U 0.0015509758648991783 -0.24791714165692286 1.0 11349 -16623 Klk1b1 kallikrein 1-related peptidase b1 Novel U 0.0015509178711878037 -0.24791774235387884 1.0 11350 -57340 Jph3 junctophilin 3 Novel N 0.0015505694622798168 -0.24792135116189445 1.0 11351 -19699 Reln reelin Novel N 0.0015504885071016391 -0.24792218969296878 1.0 11352 -66237 Atp6v1g2 ATPase, H+ transporting, lysosomal V1 subunit G2 Novel U 0.0015504140539099706 -0.24792296087668053 1.0 11353 -16950 Loxl3 lysyl oxidase-like 3 Novel N 0.0015504089574864418 -0.24792301366526792 1.0 11354 -66234 Msmo1 methylsterol monoxygenase 1 Novel U 0.001549818072569877 -0.24792913403180938 1.0 11355 -26558 Homer3 homer scaffolding protein 3 Novel U 0.0015492762428228073 -0.24793474628651788 1.0 11356 -13875 Erf Ets2 repressor factor Novel U 0.001549074246690207 -0.24793683855581905 1.0 11357 -13681 Eif4a1 eukaryotic translation initiation factor 4A1 Novel N 0.0015490708305440888 -0.24793687394014827 1.0 11358 -237052 Tceal1 transcription elongation factor A (SII)-like 1 Novel U 0.0015480585039972495 -0.24794735958524197 1.0 11359 -68617 Mtcl1 microtubule crosslinking factor 1 Novel U 0.0015480066375562448 -0.24794789681613288 1.0 11360 -74383 Ubap2l ubiquitin-associated protein 2-like Novel U 0.00154499331988075 -0.24797910866155815 1.0 11361 -76357 Trmt5 TRM5 tRNA methyltransferase 5 Novel N 0.0015444822441487227 -0.2479844023671898 1.0 11362 -216028 Lrrtm3 leucine rich repeat transmembrane neuronal 3 Novel N 0.0015434326341674483 -0.24799527419287176 1.0 11363 -99887 Tlcd4 TLC domain containing 4 Novel U 0.0015434135164092123 -0.24799547221398313 1.0 11364 -56622 Adam21 a disintegrin and metallopeptidase domain 21 Novel N 0.0015432427469233652 -0.2479972410387038 1.0 11365 -100312474 Vmn1r88 vomeronasal 1 receptor, 88 Novel U 0.001541971934038112 -0.24801040407679353 1.0 11366 -18424 Otx2 orthodenticle homeobox 2 Novel U 0.0015419659428729446 -0.24801046613308536 1.0 11367 -14580 Gfap glial fibrillary acidic protein Novel U 0.001541091889770578 -0.24801951954638674 1.0 11368 -50505 Ercc4 excision repair cross-complementing rodent repair deficiency, complementation group 4 Novel U 0.0015409056619528206 -0.24802144848800114 1.0 11369 -100043899 R3hdml R3H domain containing-like Novel U 0.0015408298445390568 -0.24802223380228056 1.0 11370 -77011 Ticrr TOPBP1-interacting checkpoint and replication regulator Novel N 0.0015404725140032809 -0.2480259350202235 1.0 11371 -103466 Nt5dc3 5'-nucleotidase domain containing 3 Novel U 0.0015398271970796691 -0.24803261919170463 1.0 11372 -83924 Gpr137b G protein-coupled receptor 137B Novel U 0.0015389333644618205 -0.24804187748057713 1.0 11373 -333605 Frmpd4 FERM and PDZ domain containing 4 Novel N 0.001538605011680932 -0.24804527854788758 1.0 11374 -628991 Obp1b odorant binding protein IB Novel U 0.0015385532804039637 -0.2480458143787538 1.0 11375 -100502936 Ube2q2l ubiquitin conjugating enzyme E2 Q2 like Novel U 0.0015385166193426323 -0.24804619411282192 1.0 11376 -104156 Etv5 ets variant 5 Novel N 0.0015384442154689397 -0.2480469440697655 1.0 11377 -11790 Speg SPEG complex locus Novel U 0.001538392559615312 -0.24804747911939928 1.0 11378 -72459 Htatsf1 HIV TAT specific factor 1 Novel N 0.0015380233306418877 -0.24805130358096825 1.0 11379 -244091 Fsd2 fibronectin type III and SPRY domain containing 2 Novel U 0.001537838412602402 -0.24805321895594237 1.0 11380 -72185 Dbndd1 dysbindin domain containing 1 Novel U 0.001536660297945354 -0.24806542182883165 1.0 11381 -110593 Prdm2 PR domain containing 2, with ZNF domain Novel N 0.0015366571364033889 -0.24806545457597942 1.0 11382 -11859 Phox2a paired-like homeobox 2a Novel N 0.001536644812795943 -0.24806558222350023 1.0 11383 -68515 Myadml2 myeloid-associated differentiation marker-like 2 Novel U 0.0015365549383070333 -0.2480665131405019 1.0 11384 -22065 Trpc3 transient receptor potential cation channel, subfamily C, member 3 Novel N 0.0015363914369088787 -0.24806820668260915 1.0 11385 -18639 Pfkfb1 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 Novel N 0.001536367604709837 -0.24806845353574336 1.0 11386 -66494 Prelid1 PRELI domain containing 1 Novel N 0.0015359077538949079 -0.24807321665536763 1.0 11387 -67412 Mtcl3 MTCL family member 3 Novel U 0.0015358092696682443 -0.24807423675174992 1.0 11388 -66536 Nipsnap3b nipsnap homolog 3B Novel U 0.0015356527303242301 -0.24807585818112926 1.0 11389 -213582 Map9 microtubule-associated protein 9 Novel U 0.0015343391408263226 -0.24808946429796666 1.0 11390 -338363 Tmem241 transmembrane protein 241 Novel N 0.0015335145670383149 -0.24809800520615644 1.0 11391 -18632 Pex11b peroxisomal biogenesis factor 11 beta Novel U 0.0015329783803637515 -0.2481035590101054 1.0 11392 -11692 Gfer growth factor, augmenter of liver regeneration Novel N 0.0015326319908271616 -0.24810714690153843 1.0 11393 -546325 Pwwp4d PWWP domain containing 4D Novel U 0.00153261015102269 -0.2481073731175152 1.0 11394 -77951 Cyp20a1 cytochrome P450, family 20, subfamily a, polypeptide 1 Novel U 0.0015323392841394335 -0.2481101787477877 1.0 11395 -21346 Tagln2 transgelin 2 Novel N 0.0015322686972495368 -0.24811090988447285 1.0 11396 -66089 Rmnd5b required for meiotic nuclear division 5 homolog B Novel U 0.001531962466939013 -0.24811408180796246 1.0 11397 -210044 Adcy2 adenylate cyclase 2 Novel U 0.0015315873257158883 -0.2481179675084195 1.0 11398 -18488 Cntn3 contactin 3 Novel U 0.001531264239884117 -0.2481213140208441 1.0 11399 -69952 Tunar Tcl1 upstream neural differentiation associated RNA Novel U 0.001531046786685913 -0.24812356639392272 1.0 11400 -50913 Olig2 oligodendrocyte transcription factor 2 Novel U 0.0015305269954854074 -0.24812895037409033 1.0 11401 -18588 Pde6g phosphodiesterase 6G, cGMP-specific, rod, gamma Novel N 0.0015299457627339474 -0.24813497076382296 1.0 11402 -100384868 Pcdha4b protocadherin alpha 4B Novel U 0.0015297634356717907 -0.24813685930153911 1.0 11403 -12611 Cebpg CCAAT/enhancer binding protein gamma Novel U 0.0015293034677867387 -0.24814162363377185 1.0 11404 -56390 Znrd2 zinc ribbon domain containing 2 Novel N 0.0015292402153426208 -0.2481422788005087 1.0 11405 -12427 Ccna1 cyclin A1 Novel U 0.0015289404984023954 -0.2481453832587229 1.0 11406 -233332 Adamts17 ADAM metallopeptidase with thrombospondin type 1 motif 17 Novel U 0.00152880186218224 -0.24814681924813387 1.0 11407 -235587 Parp3 poly (ADP-ribose) polymerase family, member 3 Novel U 0.0015285237785399761 -0.2481496996293589 1.0 11408 -100039377 Gm10096 predicted gene 10096 Novel U 0.0015278301870380482 -0.24815688382733528 1.0 11409 -66632 Dph6 diphthamine biosynthesis 6 Novel N 0.001527182589901119 -0.24816359161719098 1.0 11410 -231510 Gpat3 glycerol-3-phosphate acyltransferase 3 Novel U 0.0015271316132033713 -0.2481641196321505 1.0 11411 -674895 Nek10 NIMA (never in mitosis gene a)- related kinase 10 Novel U 0.0015264736508525793 -0.24817093478455063 1.0 11412 -74249 Lrrc2 leucine rich repeat containing 2 Novel U 0.0015263444129764994 -0.2481722734262226 1.0 11413 -99730 Taf13 TATA-box binding protein associated factor 13 Novel N 0.0015262369967894952 -0.2481733860395565 1.0 11414 -237459 Cdk17 cyclin dependent kinase 17 Novel N 0.001525401691402865 -0.24818203810529202 1.0 11415 -76843 Dtl denticleless E3 ubiquitin protein ligase Novel U 0.0015253000660127628 -0.24818309073774195 1.0 11416 -231672 Fbxw8 F-box and WD-40 domain protein 8 Novel U 0.0015245117988223486 -0.24819125558338737 1.0 11417 -72308 Brf1 BRF1, RNA polymerase III transcription initiation factor 90 kDa subunit Novel N 0.0015244871190437492 -0.2481915112157228 1.0 11418 -231382 Tmprss11d transmembrane protease, serine 11d Novel N 0.001524423305838377 -0.2481921721908063 1.0 11419 -73103 3110009E18Rik RIKEN cDNA 3110009E18 gene Novel U 0.0015229632313800271 -0.2482072955940485 1.0 11420 -68066 Slc25a39 solute carrier family 25, member 39 Novel N 0.0015228900956627003 -0.2482080531314044 1.0 11421 -60364 Donson downstream neighbor of SON Novel U 0.0015228049822773502 -0.2482089347330519 1.0 11422 -17120 Mad1l1 MAD1 mitotic arrest deficient 1-like 1 Novel U 0.0015223455018574805 -0.2482136940161363 1.0 11423 -66282 Tma16 translation machinery associated 16 Novel N 0.001521993235487233 -0.24821734277961918 1.0 11424 -18858 Pmp22 peripheral myelin protein 22 Novel U 0.0015216873591899142 -0.24822051103625165 1.0 11425 -20265 Scn1a sodium channel, voltage-gated, type I, alpha Novel U 0.0015213169711831792 -0.24822434750304956 1.0 11426 -20321 Frrs1 ferric-chelate reductase 1 Novel U 0.001521243183532546 -0.24822511179310922 1.0 11427 -75956 Srrm2 serine/arginine repetitive matrix 2 Novel U 0.001520779401429604 -0.24822991563288543 1.0 11428 -17708 COX1 cytochrome c oxidase subunit I Novel U 0.001520718132464097 -0.24823055025481608 1.0 11429 -56406 Ncoa6 nuclear receptor coactivator 6 Novel N 0.0015205371771575237 -0.24823242458393296 1.0 11430 -434727 Fthl17c ferritin, heavy polypeptide-like 17, member C Novel U 0.0015205196114616683 -0.2482326065288332 1.0 11431 -14345 Fut4 fucosyltransferase 4 Novel U 0.0015205074220598143 -0.24823273278625688 1.0 11432 -71997 Smg9 SMG9 nonsense mediated mRNA decay factor Novel U 0.0015202648293605409 -0.24823524555346116 1.0 11433 -104725 Sptssa serine palmitoyltransferase, small subunit A Novel N 0.0015202564696093239 -0.24823533214348945 1.0 11434 -13722 Aimp1 aminoacyl tRNA synthetase complex-interacting multifunctional protein 1 Novel U 0.0015202545061548671 -0.24823535248088618 1.0 11435 -101943 Sf3b3 splicing factor 3b, subunit 3 Novel U 0.0015189891080898746 -0.24824845943244564 1.0 11436 -71037 Prss55 serine protease 55 Novel U 0.0015189118574817696 -0.2482492595917049 1.0 11437 -214523 Tmprss4 transmembrane protease, serine 4 Novel U 0.0015188859804788901 -0.24824952762485009 1.0 11438 -218214 Kdm1b lysine (K)-specific demethylase 1B Novel U 0.0015187043115963148 -0.24825140934516376 1.0 11439 -192195 Ash1l ASH1 like histone lysine methyltransferase Novel U 0.0015186939287392097 -0.24825151689045635 1.0 11440 -218543 Srek1 splicing regulatory glutamine/lysine-rich protein 1 Novel U 0.001518215619290628 -0.24825647120400116 1.0 11441 -116848 Baz2a bromodomain adjacent to zinc finger domain, 2A Novel U 0.0015164810054572315 -0.24827443827706513 1.0 11442 -78892 Crispld2 cysteine-rich secretory protein LCCL domain containing 2 Novel N 0.0015158991723568476 -0.24828046488519218 1.0 11443 -17756 Map2 microtubule-associated protein 2 Novel U 0.0015151538770397154 -0.24828818462958674 1.0 11444 -67393 Cxxc5 CXXC finger 5 Novel N 0.001514523150570211 -0.2482947176736239 1.0 11445 -18475 Pafah1b2 platelet-activating factor acetylhydrolase, isoform 1b, subunit 2 Novel U 0.0015140624801427017 -0.24829948928276827 1.0 11446 -107895 Mgat5 mannoside acetylglucosaminyltransferase 5 Novel U 0.0015131004072069271 -0.2483094544026106 1.0 11447 -13206 Ddx4 DEAD box helicase 4 Novel N 0.0015127140643990786 -0.24831345612871397 1.0 11448 -19055 Ppp3ca protein phosphatase 3, catalytic subunit, alpha isoform Novel U 0.0015123775247208556 -0.24831694199563784 1.0 11449 -272031 Plppr1 phospholipid phosphatase related 1 Novel U 0.0015121018464263644 -0.24831979746234975 1.0 11450 -100503386 Tpbgl trophoblast glycoprotein-like Novel U 0.0015118610328087754 -0.24832229180188442 1.0 11451 -83993 Tbx19 T-box 19 Novel N 0.0015116914050891659 -0.24832404880022793 1.0 11452 -68818 Zfand2b zinc finger, AN1 type domain 2B Novel U 0.0015116319176531035 -0.24832466496913513 1.0 11453 -56264 Cpxm1 carboxypeptidase X, M14 family member 1 Novel U 0.0015113859535320386 -0.24832721265741547 1.0 11454 -13508 Dscam DS cell adhesion molecule Novel U 0.001510648623741127 -0.2483348498951513 1.0 11455 -75146 Mfsd13a major facilitator superfamily domain containing 13a Novel U 0.0015102995788698035 -0.24833846529045428 1.0 11456 -70357 Kcnip1 Kv channel-interacting protein 1 Novel N 0.0015102529128426367 -0.2483389486556296 1.0 11457 -320460 Vwc2l von Willebrand factor C domain-containing protein 2-like Novel U 0.0015096861834846497 -0.2483448188196894 1.0 11458 -208171 Tmprss7 transmembrane serine protease 7 Novel U 0.0015095813939077992 -0.24834590422668165 1.0 11459 -258219 Or2i1 olfactory receptor family 2 subfamily I member 1 Novel U 0.001509317634644248 -0.2483486362364629 1.0 11460 -83486 Rbm5 RNA binding motif protein 5 Novel N 0.0015092707110542904 -0.24834912226946512 1.0 11461 -107094 Rrp12 ribosomal RNA processing 12 homolog Novel U 0.0015092427389669725 -0.24834941200342606 1.0 11462 -70617 Fam241a family with sequence similarity 241, member A Novel U 0.001508992694332561 -0.2483520019575295 1.0 11463 -20273 Scn8a sodium channel, voltage-gated, type VIII, alpha Novel U 0.001508842147269693 -0.24835356131905773 1.0 11464 -114741 Supt16 SPT16, facilitates chromatin remodeling subunit Novel U 0.0015087356947470223 -0.24835466395078812 1.0 11465 -545660 I0C0044D17Rik RIKEN cDNA I0C0044D17 gene Novel U 0.0015083893244852511 -0.24835825164257322 1.0 11466 -668173 Pex10 peroxisomal biogenesis factor 10 Novel U 0.0015067807371192928 -0.24837491333763037 1.0 11467 -23882 Gadd45g growth arrest and DNA-damage-inducible 45 gamma Novel U 0.0015066113221108327 -0.24837666813271878 1.0 11468 -233878 Sez6l2 seizure related 6 homolog like 2 Novel U 0.001505525954949248 -0.24838791033009894 1.0 11469 -70866 Slco6d1 solute carrier organic anion transporter family, member 6d1 Novel U 0.001505137895836692 -0.24839192983363004 1.0 11470 -68114 Pwwp3a PWWP domain containing 3A, DNA repair factor Novel N 0.0015046379741823787 -0.24839710800569137 1.0 11471 -52040 Ppp1r10 protein phosphatase 1, regulatory subunit 10 Novel U 0.0015044872264526124 -0.24839866944572073 1.0 11472 -56410 Cbln3 cerebellin 3 precursor protein Novel U 0.0015044612295002536 -0.24839893872129865 1.0 11473 -14155 Fem1b fem 1 homolog b Novel U 0.0015040479599042107 -0.24840321935418896 1.0 11474 -233064 Wdr62 WD repeat domain 62 Novel U 0.0015038014257580693 -0.24840577294677033 1.0 11475 -66580 Esf1 ESF1 nucleolar pre-rRNA processing protein homolog Novel U 0.0015035654384372363 -0.24840821729568185 1.0 11476 -12075 Bfsp1 beaded filament structural protein 1, in lens-CP94 Novel N 0.0015034883843856308 -0.24840901541901536 1.0 11477 -231760 Rimbp2 RIMS binding protein 2 Novel U 0.0015031614788673148 -0.24841240149562765 1.0 11478 -106707 Rpusd1 RNA pseudouridylate synthase domain containing 1 Novel U 0.0015031323960680687 -0.24841270273430618 1.0 11479 -545902 Ptprh protein tyrosine phosphatase receptor type H Novel U 0.001502548610936305 -0.24841874956151008 1.0 11480 -20193 S100a1 S100 calcium binding protein A1 Novel U 0.0015022225736391777 -0.24842212664511581 1.0 11481 -22370 Vtn vitronectin Novel U 0.0015013094548354832 -0.24843158469966733 1.0 11482 -623474 Rad54b RAD54 homolog B (S. cerevisiae) Novel U 0.0015010273065751828 -0.24843450718207238 1.0 11483 -71576 Tmem238l transmembrane protein 238 like Novel N 0.0015009570510057181 -0.2484352348869514 1.0 11484 -53325 Banp BTG3 associated nuclear protein Novel U 0.001500241475217455 -0.24844264679744293 1.0 11485 -59028 Rcl1 RNA terminal phosphate cyclase-like 1 Novel N 0.0014999969441193757 -0.2484451796425183 1.0 11486 -232791 Cnot3 CCR4-NOT transcription complex, subunit 3 Novel U 0.001499248458807482 -0.24845293242877378 1.0 11487 -554292 Methig1 methyltransferase hypoxia inducible domain containing 1 Novel U 0.0014992018252252641 -0.24845341545788538 1.0 11488 -56173 Cldn14 claudin 14 Novel N 0.0014989734955915214 -0.2484557804887258 1.0 11489 -18814 Prl7d1 prolactin family 7, subfamily d, member 1 Novel U 0.0014989574565364297 -0.24845594662073117 1.0 11490 -69723 Rpain RPA interacting protein Novel U 0.0014986957414933146 -0.2484586574565443 1.0 11491 -320683 Zfp629 zinc finger protein 629 Novel U 0.001498666755237064 -0.2484589576952337 1.0 11492 -107734 Mrpl30 mitochondrial ribosomal protein L30 Novel U 0.00149860461779049 -0.24845960131286265 1.0 11493 -12452 Ccng2 cyclin G2 Novel U 0.0014985164985450556 -0.2484605140491101 1.0 11494 -18766 Pkdrej polycystin (PKD) family receptor for egg jelly Novel N 0.0014984982105317468 -0.24846070347575078 1.0 11495 -113854 Vmn1r44 vomeronasal 1 receptor 44 Novel U 0.0014983780925672586 -0.24846194765367827 1.0 11496 -66253 Aig1 androgen-induced 1 Novel N 0.001497179044453514 -0.24847436735462383 1.0 11497 -100177 Zmym6 zinc finger, MYM-type 6 Novel U 0.0014957067229507022 -0.24848961761235 1.0 11498 -56249 Actr8 ARP8 actin-related protein 8 Novel N 0.0014951601458424496 -0.24849527904006954 1.0 11499 -66233 Dmap1 DNA methyltransferase 1-associated protein 1 Novel U 0.001494603722750393 -0.24850104245216564 1.0 11500 -19771 Rlbp1 retinaldehyde binding protein 1 Novel U 0.0014942150642158836 -0.24850506816448964 1.0 11501 -66053 Ppil2 peptidylprolyl isomerase (cyclophilin)-like 2 Novel U 0.001493761490013519 -0.24850976627116728 1.0 11502 -226255 Atrnl1 attractin like 1 Novel U 0.0014935926698073033 -0.2485115149053136 1.0 11503 -20450 St8sia2 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 2 Novel N 0.0014935295830600436 -0.2485121683557678 1.0 11504 -73244 Prl8a1 prolactin family 8, subfamily a, member 1 Novel U 0.0014927140842865014 -0.24852061526525612 1.0 11505 -78070 Cpt1c carnitine palmitoyltransferase 1c Novel N 0.0014926939630918316 -0.24852082367992906 1.0 11506 -331623 Bend3 BEN domain containing 3 Novel U 0.0014925243553186736 -0.24852258047166786 1.0 11507 -208151 Tmem132b transmembrane protein 132B Novel U 0.0014912092065556223 -0.24853620273932234 1.0 11508 -21789 Tfpi2 tissue factor pathway inhibitor 2 Novel U 0.0014911631108635026 -0.24853668019698602 1.0 11509 -67003 Uqcrc2 ubiquinol cytochrome c reductase core protein 2 Novel N 0.0014907093576231603 -0.24854138015813315 1.0 11510 -100861667 Gm21118 predicted gene, 21118 Novel U 0.0014903134247891703 -0.24854548121741205 1.0 11511 -16832 Ldhb lactate dehydrogenase B Novel U 0.0014903081982766528 -0.2485455353534569 1.0 11512 -237387 Lrrc3 leucine rich repeat containing 3 Novel U 0.0014902014433004266 -0.24854664111799124 1.0 11513 -67143 Ikzf5 IKAROS family zinc finger 5 Novel N 0.0014898396063488274 -0.24855038901324114 1.0 11514 -81702 Ankrd17 ankyrin repeat domain 17 Novel U 0.0014895712581804784 -0.24855316855474743 1.0 11515 -68023 Pdf peptide deformylase (mitochondrial) Novel N 0.001489565189632245 -0.24855323141257055 1.0 11516 -13435 Dnmt3a DNA methyltransferase 3A Novel U 0.0014894642669987205 -0.24855427676589095 1.0 11517 -18935 Phox2b paired-like homeobox 2b Novel U 0.0014886515948047303 -0.24856269439776113 1.0 11518 -12307 Calb1 calbindin 1 Novel N 0.0014883424110732095 -0.24856589691268835 1.0 11519 -15467 Eif2ak1 eukaryotic translation initiation factor 2 alpha kinase 1 Novel N 0.0014876503410830467 -0.2485730653508959 1.0 11520 -68205 Urm1 ubiquitin related modifier 1 Novel N 0.0014871172561953029 -0.2485785870266389 1.0 11521 -100041362 Gm20873 predicted gene, 20873 Novel U 0.0014870636981711841 -0.24857914177889212 1.0 11522 -12587 Mia MIA SH3 domain containing Novel U 0.0014870404802997412 -0.24857938226884127 1.0 11523 -76976 Arxes2 adipocyte-related X-chromosome expressed sequence 2 Novel U 0.0014865033851506123 -0.2485849454827399 1.0 11524 -68117 Apool apolipoprotein O-like Novel N 0.0014863645458531552 -0.24858638357561888 1.0 11525 -111241 Hmga1b high mobility group AT-hook 1B Novel U 0.0014859615372456666 -0.24859055792552706 1.0 11526 -66591 Mad2l1bp MAD2L1 binding protein Novel U 0.0014853314720884006 -0.24859708411971373 1.0 11527 -215051 Bud13 BUD13 homolog Novel N 0.001485215472839724 -0.24859828563611824 1.0 11528 -320717 Pptc7 PTC7 protein phosphatase homolog Novel N 0.0014851894461347598 -0.2485985552198727 1.0 11529 -80908 Abo ABO, alpha 1-3-N-acetylgalactosaminyltransferase and alpha 1-3-galactosyltransferase Novel U 0.001485088152098223 -0.2485996044201733 1.0 11530 -15407 Hoxb1 homeobox B1 Novel U 0.0014850630079430943 -0.24859986486250552 1.0 11531 -668433 4930544D05Rik RIKEN cDNA 4930544D05 gene Novel U 0.0014838816626919751 -0.24861210119778201 1.0 11532 -57756 Fhl5 four and a half LIM domains 5 Novel U 0.0014834265836208087 -0.24861681489184123 1.0 11533 -232023 Vopp1 vesicular, overexpressed in cancer, prosurvival protein 1 Novel U 0.0014834013930685416 -0.2486170758147535 1.0 11534 -109821 F11 coagulation factor XI Novel U 0.001483210490344613 -0.24861905317889235 1.0 11535 -668381 Scgb1b12 secretoglobin, family 1B, member 12 Novel U 0.0014826646780311103 -0.24862470668489303 1.0 11536 -21386 Tbx3 T-box 3 Novel U 0.0014826193370440623 -0.24862517632534634 1.0 11537 -218236 Fam120a family with sequence similarity 120, member A Novel U 0.0014825370124770284 -0.2486260290405054 1.0 11538 -233199 Mybpc2 myosin binding protein C, fast-type Novel U 0.0014825307981630792 -0.248626093408165 1.0 11539 -13560 E4f1 E4F transcription factor 1 Novel N 0.001482280041949736 -0.24862869073277968 1.0 11540 -381714 Gm9758 predicted gene 9758 Novel U 0.0014816237918626161 -0.248635488149609 1.0 11541 -21407 Tcf15 transcription factor 15 Novel N 0.0014814229980591065 -0.248637567965225 1.0 11542 -71918 Zcchc24 zinc finger, CCHC domain containing 24 Novel U 0.0014811401112989364 -0.24864049809698743 1.0 11543 -328977 Zfp532 zinc finger protein 532 Novel U 0.001480905399639436 -0.2486429292326408 1.0 11544 -21892 Tll1 tolloid-like Novel U 0.0014807751650889637 -0.24864427819783338 1.0 11545 -319713 Ablim3 actin binding LIM protein family, member 3 Novel N 0.00148048215173663 -0.24864731322050457 1.0 11546 -329972 Spata21 spermatogenesis associated 21 Novel U 0.0014803316262809118 -0.24864887235822664 1.0 11547 -227717 Qrfp pyroglutamylated RFamide peptide Novel N 0.001479872236454696 -0.24865363070294494 1.0 11548 -217353 Tmc6 transmembrane channel-like gene family 6 Novel U 0.0014797687150972486 -0.2486547029737623 1.0 11549 -225392 Rell2 RELT-like 2 Novel U 0.001479218847963788 -0.2486603984794548 1.0 11550 -56543 Kcnd3 potassium voltage-gated channel, Shal-related family, member 3 Novel N 0.0014788836213032327 -0.24866387074618485 1.0 11551 -13202 Ddt D-dopachrome tautomerase Novel U 0.001478770348689116 -0.2486650440201982 1.0 11552 -380614 Intu inturned planar cell polarity protein Novel U 0.0014785679435643459 -0.2486671405258269 1.0 11553 -83984 Tssk6 testis-specific serine kinase 6 Novel N 0.0014782926330393369 -0.24866999218319458 1.0 11554 -11448 Chrne cholinergic receptor, nicotinic, epsilon polypeptide Novel U 0.0014776594830424308 -0.24867655033004882 1.0 11555 -381157 Greb1l growth regulation by estrogen in breast cancer-like Novel U 0.0014776030193610684 -0.24867713517900422 1.0 11556 -21745 Tep1 telomerase associated protein 1 Novel U 0.0014774292917135638 -0.24867893464426608 1.0 11557 -14123 Fbrs fibrosin Novel U 0.0014771754234427035 -0.24868156420347018 1.0 11558 -14239 Foxs1 forkhead box S1 Novel U 0.0014771457912073787 -0.24868187113318957 1.0 11559 -242700 Ifnlr1 interferon lambda receptor 1 Novel N 0.001477105225349556 -0.2486822913130114 1.0 11560 -93704 Pcdhgb7 protocadherin gamma subfamily B, 7 Novel U 0.001477021440136905 -0.24868315915748973 1.0 11561 -18141 Nup50 nucleoporin 50 Novel U 0.0014766669793048613 -0.24868683065113578 1.0 11562 -22113 Phlda2 pleckstrin homology like domain, family A, member 2 Novel N 0.0014763139609680522 -0.2486904872034636 1.0 11563 -76539 Fam204a family with sequence similarity 204, member A Novel U 0.0014762503698720353 -0.2486911458779457 1.0 11564 -101602 AI467606 expressed sequence AI467606 Novel U 0.001475513818445619 -0.2486987750534077 1.0 11565 -118568460 LOC118568460 Y-linked testis-specific protein 1-like Novel U 0.0014753621067369108 -0.24870034647829922 1.0 11566 -98258 Txndc9 thioredoxin domain containing 9 Novel U 0.0014750646694499877 -0.24870342732393946 1.0 11567 -237082 Nxt2 nuclear transport factor 2-like export factor 2 Novel U 0.001474470769060199 -0.24870957892465345 1.0 11568 -13108 Cyp2g1 cytochrome P450, family 2, subfamily g, polypeptide 1 Novel U 0.0014742177269300677 -0.24871219992671906 1.0 11569 -83436 Plekha2 pleckstrin homology domain-containing, family A (phosphoinositide binding specific) member 2 Novel U 0.0014741842407375084 -0.24871254677560076 1.0 11570 -16855 Lgals4 lectin, galactose binding, soluble 4 Novel N 0.0014738120162152179 -0.24871640226496644 1.0 11571 -320135 BC049715 cDNA sequence BC049715 Novel U 0.001473707838027477 -0.24871748133921037 1.0 11572 -192161 Pcdha9 protocadherin alpha 9 Novel U 0.0014734863351870404 -0.24871977565835013 1.0 11573 -76167 Snrnp35 small nuclear ribonucleoprotein 35 (U11/U12) Novel N 0.0014728246770910466 -0.24872662909115759 1.0 11574 -224247 Ftdc2 ferritin domain containing 2 Novel U 0.001472694359693813 -0.24872797891447418 1.0 11575 -320769 Prdx6b peroxiredoxin 6B Novel U 0.0014725980821245134 -0.24872897615437203 1.0 11576 -100041076 Gm3127 predicted gene 3127 Novel U 0.0014721812230653682 -0.24873329396680316 1.0 11577 -433256 Acsl5 acyl-CoA synthetase long-chain family member 5 Novel N 0.0014719659489040207 -0.24873552376948965 1.0 11578 -69137 Vstm5 V-set and transmembrane domain containing 5 Novel U 0.0014718305886399685 -0.24873692582665496 1.0 11579 -13360 Dhcr7 7-dehydrocholesterol reductase Novel U 0.0014716597355411308 -0.24873869551743621 1.0 11580 -67788 Sfr1 SWI5 dependent recombination repair 1 Novel U 0.001470935802904674 -0.24874619398788664 1.0 11581 -16210 Impact impact, RWD domain protein Novel U 0.0014706735897932293 -0.24874890998267518 1.0 11582 -98403 Zfp451 zinc finger protein 451 Novel U 0.0014691470666232428 -0.24876472165948818 1.0 11583 -74763 Naa60 N(alpha)-acetyltransferase 60, NatF catalytic subunit Novel N 0.0014685662840791037 -0.24877073738598815 1.0 11584 -229004 Gmeb2 glucocorticoid modulatory element binding protein 2 Novel N 0.0014684367875981933 -0.24877207870628046 1.0 11585 -381933 Spef1l sperm flagellar 1 like Novel U 0.0014679877631316829 -0.2487767296869437 1.0 11586 -214424 Parp16 poly (ADP-ribose) polymerase family, member 16 Novel U 0.0014678634896034125 -0.24877801690806425 1.0 11587 -12617 Cenpc1 centromere protein C1 Novel U 0.0014676356905005126 -0.2487803764436836 1.0 11588 -13706 Cela2a chymotrypsin-like elastase family, member 2A Novel U 0.0014668529795527389 -0.2487884837379504 1.0 11589 -113859 Vmn1r29 vomeronasal 1 receptor 29 Novel U 0.0014668111068852888 -0.24878891745366338 1.0 11590 -71325 Tchhl1 trichohyalin-like 1 Novel U 0.001466773878281357 -0.24878930306631905 1.0 11591 -68142 Ino80 INO80 complex subunit Novel U 0.0014667152542227305 -0.24878991029239114 1.0 11592 -67711 Nsmce1 NSE1 homolog, SMC5-SMC6 complex component Novel N 0.0014666994188848469 -0.2487900743143004 1.0 11593 -74188 Prl8a8 prolactin family 8, subfamily a, member 81 Novel U 0.0014664790804848912 -0.2487923565722039 1.0 11594 -22344 Vezf1 vascular endothelial zinc finger 1 Novel U 0.0014662380135497459 -0.24879485353559347 1.0 11595 -19182 Psmc3 proteasome (prosome, macropain) 26S subunit, ATPase 3 Novel U 0.001466011061450674 -0.24879720429797503 1.0 11596 -18245 Oaz1 ornithine decarboxylase antizyme 1 Novel U 0.0014658141825569012 -0.2487992435630847 1.0 11597 -100043013 Vmn1r126 vomeronasal 1 receptor 126 Novel U 0.0014657494853303693 -0.2487999136948303 1.0 11598 -27219 Sgk2 serum/glucocorticoid regulated kinase 2 Novel N 0.001465706177583295 -0.2488003622750508 1.0 11599 -14729 Gp5 glycoprotein 5 platelet Novel U 0.0014656630846412305 -0.2488008086303281 1.0 11600 -329274 Fam163a family with sequence similarity 163, member A Novel U 0.0014655289503318696 -0.24880219798909506 1.0 11601 -14465 Gata6 GATA binding protein 6 Novel U 0.0014649816675903523 -0.24880786672574073 1.0 11602 -21333 Tac1 tachykinin 1 Novel N 0.0014646528528783822 -0.2488112725777181 1.0 11603 -18587 Pde6b phosphodiesterase 6B, cGMP, rod receptor, beta polypeptide Novel U 0.0014644178447279503 -0.2488137067844148 1.0 11604 -227674 Ddx31 DEAD/H box helicase 31 Novel N 0.0014641957539631948 -0.2488160071932553 1.0 11605 -75613 Med25 mediator complex subunit 25 Novel U 0.0014640789836436498 -0.24881721669638654 1.0 11606 -72125 Amer2 APC membrane recruitment 2 Novel N 0.0014628369999201347 -0.2488300811229667 1.0 11607 -67463 Poc5 POC5 centriolar protein Novel U 0.0014624945129232745 -0.24883362859202152 1.0 11608 -633640 Tmem267 transmembrane protein 267 Novel U 0.0014622923382346577 -0.2488357227108001 1.0 11609 -77626 Smpd4 sphingomyelin phosphodiesterase 4 Novel U 0.0014622690970438443 -0.2488359634422905 1.0 11610 -332923 Pramel19 PRAME like 19 Novel U 0.0014621886373007748 -0.24883679684166427 1.0 11611 -93709 Pcdhga1 protocadherin gamma subfamily A, 1 Novel U 0.0014619661589249642 -0.2488391012653673 1.0 11612 -66435 Uggt2 UDP-glucose glycoprotein glucosyltransferase 2 Novel U 0.0014619402475411773 -0.2488393696546288 1.0 11613 -102634529 LOC102634529 PRAME family member 8-like Novel U 0.0014617423636877336 -0.24884141932907766 1.0 11614 -110816 Pwp2 PWP2 periodic tryptophan protein homolog (yeast) Novel N 0.0014616904012310552 -0.24884195755449579 1.0 11615 -667705 Fam237b family with sequence similarity 237, member B Novel U 0.0014615795259603698 -0.2488431059969047 1.0 11616 -11430 Acox1 acyl-Coenzyme A oxidase 1, palmitoyl Novel U 0.001461396372446532 -0.2488450030949802 1.0 11617 -252910 Vmn1r71 vomeronasal 1 receptor 71 Novel U 0.0014612067348169244 -0.24884696735531364 1.0 11618 -69048 Slc30a5 solute carrier family 30 (zinc transporter), member 5 Novel U 0.0014599809362094672 -0.24885966413699376 1.0 11619 -68922 Dnai1 dynein axonemal intermediate chain 1 Novel N 0.0014599582255043911 -0.24885989937373035 1.0 11620 -67808 Tprg1l transformation related protein 63 regulated 1 like Novel U 0.0014592770840556758 -0.2488669546144648 1.0 11621 -18218 Dusp8 dual specificity phosphatase 8 Novel U 0.001459151461217403 -0.24886825581169403 1.0 11622 -15405 Hoxa9 homeobox A9 Novel N 0.0014591117036385807 -0.2488686676193885 1.0 11623 -20972 Syngr1 synaptogyrin 1 Novel U 0.001458841435416524 -0.24887146704874796 1.0 11624 -70546 Zdhhc2 zinc finger, DHHC domain containing 2 Novel U 0.001457941291241417 -0.2488807907125231 1.0 11625 -217980 Larp4b La ribonucleoprotein 4B Novel N 0.0014578378228508034 -0.24888186243471172 1.0 11626 -232400 A2ml1 alpha-2-macroglobulin like 1 Novel U 0.0014573447969791673 -0.2488869691804828 1.0 11627 -53404 Atoh7 atonal bHLH transcription factor 7 Novel U 0.0014573379418525022 -0.24888704018565944 1.0 11628 -18102 Nme1 NME/NM23 nucleoside diphosphate kinase 1 Novel U 0.0014568094325344845 -0.24889251446780167 1.0 11629 -67160 Eef1g eukaryotic translation elongation factor 1 gamma Novel U 0.0014568047488253257 -0.24889256298150714 1.0 11630 -231803 Mepce methylphosphate capping enzyme Novel U 0.0014566144342988794 -0.24889453425311583 1.0 11631 -226654 Tstd1 thiosulfate sulfurtransferase (rhodanese)-like domain containing 1 Novel N 0.001456457302308852 -0.24889616182110308 1.0 11632 -56088 Psmg1 proteasome (prosome, macropain) assembly chaperone 1 Novel N 0.0014561499607607486 -0.24889934525475504 1.0 11633 -56321 Aatf apoptosis antagonizing transcription factor Novel N 0.0014555101235415775 -0.2489059726676377 1.0 11634 -277396 Klhl23 kelch-like 23 Novel U 0.0014554504055128874 -0.24890659122501574 1.0 11635 -74013 Rftn2 raftlin family member 2 Novel U 0.0014552310879373045 -0.24890886290925396 1.0 11636 -109154 Mlec malectin Novel N 0.0014551707564393463 -0.2489094878209265 1.0 11637 -18143 Npas2 neuronal PAS domain protein 2 Novel N 0.0014544180063900784 -0.24891728478119152 1.0 11638 -72780 Rspo3 R-spondin 3 Novel U 0.001454051702537602 -0.24892107894445387 1.0 11639 -74585 Sppl3 signal peptide peptidase 3 Novel U 0.0014540023254903047 -0.2489215903902866 1.0 11640 -234396 Ankle1 ankyrin repeat and LEM domain containing 1 Novel U 0.001453430033051315 -0.24892751817655656 1.0 11641 -26885 Casp8ap2 caspase 8 associated protein 2 Novel U 0.0014532632513063475 -0.24892924569638827 1.0 11642 -73230 Bmper BMP-binding endothelial regulator Novel U 0.0014531510190302522 -0.24893040819461462 1.0 11643 -16782 Lamc2 laminin, gamma 2 Novel U 0.0014530344805094918 -0.24893161529678165 1.0 11644 -213350 Gatd1 glutamine amidotransferase like class 1 domain containing 1 Novel U 0.0014528719293985775 -0.24893329899584493 1.0 11645 -231103 Gckr glucokinase regulatory protein Novel N 0.0014524435515771456 -0.24893773611923717 1.0 11646 -106529 Tecr trans-2,3-enoyl-CoA reductase Novel N 0.001452186261996172 -0.24894040111625895 1.0 11647 -70362 Actl10 actin-like 10 Novel U 0.001452054000523606 -0.2489417710762439 1.0 11648 -100041433 Zfp981 zinc finger protein 981 Novel U 0.0014519517887954046 -0.2489428297819646 1.0 11649 -100504162 Prss51 serine protease 51 Novel U 0.0014517356692829724 -0.24894506834076985 1.0 11650 -14724 Gp1bb glycoprotein Ib, beta polypeptide Novel U 0.0014505978108565107 -0.24895685424094602 1.0 11651 -17714 Grpel2 GrpE-like 2, mitochondrial Novel U 0.0014504446428313653 -0.24895844075031537 1.0 11652 -65961 Utp3 UTP3 small subunit processome component Novel N 0.0014500849911283035 -0.24896216601083276 1.0 11653 -21781 Tfdp1 transcription factor Dp 1 Novel U 0.0014495672306427882 -0.24896752895692129 1.0 11654 -633979 Ak9 adenylate kinase 9 Novel N 0.0014493217061310839 -0.24897007209174232 1.0 11655 -71885 Faap100 Fanconi anemia core complex associated protein 100 Novel U 0.001449184074265793 -0.2489714976780786 1.0 11656 -100862314 Spin2j spindlin family, member 2J Novel U 0.0014490716305157003 -0.24897266236674567 1.0 11657 -72654 Ccdc12 coiled-coil domain containing 12 Novel U 0.001448899713304837 -0.24897444307956432 1.0 11658 -76002 Ms4a18 membrane-spanning 4-domains, subfamily A, member 18 Novel U 0.0014488582697662518 -0.2489748723503746 1.0 11659 -52679 E2f7 E2F transcription factor 7 Novel U 0.001448637521018476 -0.24897715885864732 1.0 11660 -56748 Nfu1 NFU1 iron-sulfur cluster scaffold Novel N 0.0014482964855278733 -0.24898069129304806 1.0 11661 -18130 Ints6 integrator complex subunit 6 Novel N 0.0014480830466653452 -0.24898290208576973 1.0 11662 -381917 Dnah3 dynein, axonemal, heavy chain 3 Novel U 0.0014473001950056296 -0.2489910108375262 1.0 11663 -19240 Tmsb10 thymosin beta 10 Novel U 0.0014472121333422242 -0.24899192297734085 1.0 11664 -11872 Art2b ADP-ribosyltransferase 2b Novel U 0.0014470800747873134 -0.24899329083551142 1.0 11665 -110595 Timp4 tissue inhibitor of metalloproteinase 4 Novel U 0.0014459680101906057 -0.249004809564047 1.0 11666 -93690 Gpr45 G protein-coupled receptor 45 Novel U 0.001445948254433138 -0.2490050141935334 1.0 11667 -65960 Twsg1 twisted gastrulation BMP signaling modulator 1 Novel U 0.0014443722960085427 -0.2490213379190885 1.0 11668 -81007 Defb5 defensin beta 5 Novel U 0.0014433913851126506 -0.24903149816190248 1.0 11669 -76820 Cyria CYFIP related Rac1 interactor A Novel U 0.0014429977606210784 -0.24903557531144646 1.0 11670 -22144 Tuba3a tubulin, alpha 3A Novel U 0.0014425843323817053 -0.24903985758755914 1.0 11671 -73826 Poldip3 polymerase (DNA-directed), delta interacting protein 3 Novel N 0.00144255399511752 -0.2490401718199443 1.0 11672 -70047 Trnt1 tRNA nucleotidyl transferase, CCA-adding, 1 Novel U 0.0014425522526639706 -0.2490401898682209 1.0 11673 -16524 Kcnj9 potassium inwardly-rectifying channel, subfamily J, member 9 Novel U 0.0014418915080792085 -0.24904703383890905 1.0 11674 -13072 Cyp11b2 cytochrome P450, family 11, subfamily b, polypeptide 2 Novel U 0.0014414049177587027 -0.24905207392545306 1.0 11675 -382913 Neil2 nei like 2 (E. coli) Novel N 0.0014412312977355153 -0.24905387227594578 1.0 11676 -217830 Dglucy D-glutamate cyclase Novel U 0.0014410662720906297 -0.24905558160615057 1.0 11677 -73988 4930438A08Rik RIKEN cDNA 4930438A08 gene Novel U 0.0014408860410786769 -0.2490574484330476 1.0 11678 -72522 Atxn7l2 ataxin 7-like 2 Novel U 0.0014405852008336781 -0.24906056452641573 1.0 11679 -236266 Alms1 ALMS1, centrosome and basal body associated Novel U 0.001439992258935856 -0.24906670619910143 1.0 11680 -170738 Kcnh7 potassium voltage-gated channel, subfamily H (eag-related), member 7 Novel U 0.0014399106034257139 -0.2490675519841912 1.0 11681 -101197 Zfp956 zinc finger protein 956 Novel U 0.0014380521249224678 -0.24908680204343367 1.0 11682 -171254 Vmn1r198 vomeronasal 1 receptor 198 Novel U 0.0014379578535214717 -0.24908777850350616 1.0 11683 -105663 Thtpa thiamine triphosphatase Novel N 0.0014371059324891592 -0.24909660267355346 1.0 11684 -20068 Rps17 ribosomal protein S17 Novel U 0.0014370673051372625 -0.2490970027743946 1.0 11685 -83922 Cep41 centrosomal protein 41 Novel N 0.0014369721994970767 -0.2490979878754892 1.0 11686 -76157 Slc35d3 solute carrier family 35, member D3 Novel N 0.001436901052376071 -0.24909872481502976 1.0 11687 -57230 Sap30bp SAP30 binding protein Novel U 0.0014364278310939247 -0.24910362642551392 1.0 11688 -73274 Gpbp1 GC-rich promoter binding protein 1 Novel U 0.0014363348592308402 -0.24910458942501545 1.0 11689 -12813 Col10a1 collagen, type X, alpha 1 Novel U 0.00143615533733692 -0.2491064489068912 1.0 11690 -665150 Vmn1r57 vomeronasal 1 receptor 57 Novel U 0.0014354531957668838 -0.24911372166619197 1.0 11691 -56506 Cib2 calcium and integrin binding family member 2 Novel U 0.0014352810356652115 -0.24911550489486567 1.0 11692 -100042996 Vmn1r114 vomeronasal 1 receptor 114 Novel U 0.0014351937494623279 -0.24911640900248574 1.0 11693 -246747 Adig adipogenin Novel U 0.0014347786788993918 -0.24912070828973193 1.0 11694 -67273 Ndufa10 NADH:ubiquinone oxidoreductase subunit A10 Novel N 0.0014347604987758622 -0.2491208965988538 1.0 11695 -27028 Ermap erythroblast membrane-associated protein Novel U 0.001434189805218138 -0.24912680782396418 1.0 11696 -22236 Ugt1a2 UDP glucuronosyltransferase 1 family, polypeptide A2 Novel U 0.0014340985054982008 -0.24912775350346197 1.0 11697 -384696 Vmn1r119 vomeronasal 1 receptor 119 Novel U 0.0014338462306012541 -0.24913036655855147 1.0 11698 -78703 Zfp972 zinc finger protein 972 Novel U 0.0014336592334025717 -0.2491323034693882 1.0 11699 -116940 Tgs1 trimethylguanosine synthase 1 Novel N 0.0014331770384377253 -0.24913729802898277 1.0 11700 -194604 Serpina16 serine (or cysteine) peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 16 Novel U 0.0014328485998704264 -0.24914069998486602 1.0 11701 -433931 Pigg phosphatidylinositol glycan anchor biosynthesis, class G Novel U 0.0014325781152580944 -0.24914350165558885 1.0 11702 -68298 Ncapd2 non-SMC condensin I complex, subunit D2 Novel U 0.0014323990562245621 -0.24914535634317195 1.0 11703 -18557 Cdk18 cyclin dependent kinase 18 Novel U 0.0014312962129390278 -0.24915677955766946 1.0 11704 -23942 Mta2 metastasis-associated gene family, member 2 Novel N 0.0014308950056095343 -0.24916093524999938 1.0 11705 -30843 Fbxl12 F-box and leucine-rich repeat protein 12 Novel U 0.0014308358061444187 -0.249161548436113 1.0 11706 -67291 Ccdc137 coiled-coil domain containing 137 Novel U 0.001430730571279482 -0.24916263845538456 1.0 11707 -66451 2610528J11Rik RIKEN cDNA 2610528J11 gene Novel U 0.0014300907570671702 -0.24916926562996294 1.0 11708 -100861899 Gm21310 predicted gene, 21310 Novel U 0.0014300750292829572 -0.2491694285378348 1.0 11709 -53311 Mybph myosin binding protein H Novel N 0.001429582887250197 -0.24917452612883184 1.0 11710 -620393 Alkal1 ALK and LTK ligand 1 Novel U 0.001429343526774657 -0.2491770054167689 1.0 11711 -16527 Kcnk3 potassium channel, subfamily K, member 3 Novel N 0.0014292776791273226 -0.2491776874645354 1.0 11712 -68067 Mrnip MRN complex interacting protein Novel U 0.0014291953863088051 -0.24917853985084437 1.0 11713 -66495 Ndufb3 NADH:ubiquinone oxidoreductase subunit B3 Novel N 0.0014289761391173307 -0.2491808108060463 1.0 11714 -100312470 Vmn1r2 vomeronasal 1 receptor 2 Novel U 0.0014282127316023797 -0.24918871815599047 1.0 11715 -11821 Aprt adenine phosphoribosyl transferase Novel N 0.001427962505920943 -0.2491913099853731 1.0 11716 -54369 Nme6 NME/NM23 nucleoside diphosphate kinase 6 Novel N 0.0014277350409089748 -0.24919366606048957 1.0 11717 -171234 Vmn1r237 vomeronasal 1 receptor 237 Novel U 0.001427598156816806 -0.24919508390141643 1.0 11718 -14050 Eya3 EYA transcriptional coactivator and phosphatase 3 Novel N 0.0014265434431208102 -0.2492060085912077 1.0 11719 -100043667 Vmn1r165 vomeronasal 1 receptor 165 Novel U 0.0014249126862296705 -0.24922289991747787 1.0 11720 -668310 Cc2d2b coiled-coil and C2 domain containing 2B Novel U 0.0014247437339817634 -0.24922464991930768 1.0 11721 -12614 Celsr1 cadherin, EGF LAG seven-pass G-type receptor 1 Novel N 0.0014246000252527886 -0.24922613844959823 1.0 11722 -13115 Cyp27b1 cytochrome P450, family 27, subfamily b, polypeptide 1 Novel U 0.0014244976352998022 -0.24922719900136536 1.0 11723 -14894 Cfap20 cilia and flagella associated protein 20 Novel U 0.0014244636933259498 -0.24922755057121476 1.0 11724 -60531 Npvf neuropeptide VF precursor Novel U 0.0014244034056351204 -0.24922817502913452 1.0 11725 -11537 Cfd complement factor D Novel N 0.001422896120736453 -0.2492437874365656 1.0 11726 -67397 Erp29 endoplasmic reticulum protein 29 Novel U 0.0014226916949077427 -0.24924590487257922 1.0 11727 -77037 Mrap melanocortin 2 receptor accessory protein Novel U 0.001422567822883807 -0.24924718793493109 1.0 11728 -56075 Pdss1 prenyl (solanesyl) diphosphate synthase, subunit 1 Novel U 0.0014225672519951145 -0.2492471938481774 1.0 11729 -624421 Pramel40 PRAME like 40 Novel U 0.0014221243816324052 -0.24925178108483576 1.0 11730 -17878 Myf6 myogenic factor 6 Novel U 0.001422118141113337 -0.24925184572392714 1.0 11731 -225884 Gstp3 glutathione S-transferase pi 3 Novel U 0.001422019960406437 -0.24925286267646166 1.0 11732 -68875 Tmcc2 transmembrane and coiled-coil domains 2 Novel N 0.0014219662311787237 -0.2492534192020361 1.0 11733 -219022 Ttc5 tetratricopeptide repeat domain 5 Novel U 0.0014219359847037242 -0.24925373249402982 1.0 11734 -637776 Zfp977 zinc finger protein 977 Novel U 0.0014203710501967982 -0.2492699420342081 1.0 11735 -225743 Ark2c arkadia (RNF111) C-terminal like ring finger ubiquitin ligase 2C Novel U 0.0014201921407830751 -0.2492717951720341 1.0 11736 -231327 Ppat phosphoribosyl pyrophosphate amidotransferase Novel U 0.001420126788134416 -0.24927247209262057 1.0 11737 -20510 Slc1a1 solute carrier family 1 (neuronal/epithelial high affinity glutamate transporter, system Xag), member 1 Novel U 0.0014196057997148904 -0.24927786847354347 1.0 11738 -22724 Zbtb7b zinc finger and BTB domain containing 7B Novel N 0.0014187627765868843 -0.24928660047939044 1.0 11739 -69462 Slurp2 secreted Ly6/Plaur domain containing 2 Novel U 0.0014183025465757243 -0.2492913675267168 1.0 11740 -21426 Tfec transcription factor EC Novel N 0.0014182019338561719 -0.24929240966995847 1.0 11741 -171244 Vmn1r81 vomeronasal 1 receptor 81 Novel U 0.00141783713007067 -0.2492961882955764 1.0 11742 -71913 Tmem79 transmembrane protein 79 Novel U 0.0014171151488439496 -0.2493036665533889 1.0 11743 -227522 Rpp38 ribonuclease P/MRP 38 subunit Novel N 0.0014161183755700875 -0.24931399109819244 1.0 11744 -71884 Chit1 chitinase 1 Novel N 0.0014148826048215601 -0.24932679117098192 1.0 11745 -654821 Gcnt7 glucosaminyl (N-acetyl) transferase family member 7 Novel U 0.0014146306417424986 -0.249329400996272 1.0 11746 -18609 Pdx1 pancreatic and duodenal homeobox 1 Novel U 0.001414623012224827 -0.24932948002256525 1.0 11747 -170935 Grid2ip glutamate receptor, ionotropic, delta 2 (Grid2) interacting protein 1 Novel U 0.0014144012811299783 -0.24933177670595663 1.0 11748 -225929 Patl1 protein associated with topoisomerase II homolog 1 (yeast) Novel N 0.001414061423912035 -0.24933529693584788 1.0 11749 -71876 Cenpu centromere protein U Novel U 0.001413745520961277 -0.24933856904822707 1.0 11750 -67470 Abcg8 ATP binding cassette subfamily G member 8 Novel U 0.0014135656374439573 -0.24934043227578614 1.0 11751 -101122 Rpusd3 RNA pseudouridylate synthase domain containing 3 Novel N 0.0014122370260432789 -0.24935419398899863 1.0 11752 -547154 H2al1k H2A histone family member L1K Novel U 0.0014122318796028573 -0.24935424729565936 1.0 11753 -13178 Dck deoxycytidine kinase Novel N 0.0014119254583711464 -0.24935742119670432 1.0 11754 -12651 Chkb choline kinase beta Novel U 0.0014114651830157456 -0.24936218871370483 1.0 11755 -76566 Rflnb refilin B Novel U 0.0014096306740454575 -0.24938119049731286 1.0 11756 -72475 Ssbp3 single-stranded DNA binding protein 3 Novel U 0.0014090348581771266 -0.24938736193849062 1.0 11757 -20394 Scg5 secretogranin V Novel U 0.0014085615766067405 -0.2493922641734384 1.0 11758 -74777 Selenon selenoprotein N Novel U 0.0014082610257518812 -0.24939537726931296 1.0 11759 -101401 Adamts9 ADAM metallopeptidase with thrombospondin type 1 motif 9 Novel N 0.0014080202799201644 -0.2493978709067238 1.0 11760 -213109 Phf3 PHD finger protein 3 Novel U 0.001407897296356468 -0.24939914476643368 1.0 11761 -72507 Dzip1l DAZ interacting protein 1-like Novel U 0.0014074641861830113 -0.24940363090737264 1.0 11762 -229357 Gpr149 G protein-coupled receptor 149 Novel U 0.0014068721862552684 -0.24940976282316324 1.0 11763 -208194 Exog exo/endonuclease G Novel U 0.0014063673758747998 -0.2494149916324894 1.0 11764 -109305 Orai1 ORAI calcium release-activated calcium modulator 1 Novel U 0.0014062556350255039 -0.2494161490405331 1.0 11765 -12404 Cbln1 cerebellin 1 precursor protein Novel N 0.001405972191653083 -0.24941908493766693 1.0 11766 -18602 Padi4 peptidyl arginine deiminase, type IV Novel N 0.001405932957759235 -0.24941949132104968 1.0 11767 -234736 Rfwd3 ring finger and WD repeat domain 3 Novel U 0.0014058396784402385 -0.24942045750516945 1.0 11768 -233724 Tmem41b transmembrane protein 41B Novel U 0.0014052337106440615 -0.24942673409968213 1.0 11769 -66289 Mptx1 mucosal pentraxin 1 Novel U 0.0014052130081573318 -0.24942694853535913 1.0 11770 -170483 Grin3b glutamate receptor, ionotropic, NMDA3B Novel U 0.0014050519628597046 -0.24942861663725785 1.0 11771 -229524 Msto1 misato 1, mitochondrial distribution and morphology regulator Novel U 0.0014046516424180457 -0.24943276314323273 1.0 11772 -380997 Cyp2d12 cytochrome P450, family 2, subfamily d, polypeptide 12 Novel U 0.0014044606415737583 -0.24943474152369904 1.0 11773 -56541 Habp4 hyaluronic acid binding protein 4 Novel U 0.0014041865662976127 -0.24943758038639965 1.0 11774 -52570 Ccdc69 coiled-coil domain containing 69 Novel U 0.0014040303332231556 -0.249439198643449 1.0 11775 -100534287 Dchs2 dachsous cadherin related 2 Novel U 0.001403176483544347 -0.2494480427903533 1.0 11776 -277250 Kdm3b KDM3B lysine (K)-specific demethylase 3B Novel U 0.0014030386562808555 -0.24944947040061768 1.0 11777 -268510 Mgat5b mannoside acetylglucosaminyltransferase 5, isoenzyme B Novel N 0.0014028619968665358 -0.24945130023302384 1.0 11778 -68626 Elac2 elaC ribonuclease Z 2 Novel N 0.0014025472792623076 -0.24945456006762265 1.0 11779 -103468 Nup107 nucleoporin 107 Novel U 0.0014022580465272425 -0.24945755593078445 1.0 11780 -18197 Nsg2 neuron specific gene family member 2 Novel U 0.0014020805407330438 -0.24945939452996554 1.0 11781 -229445 Ctso cathepsin O Novel N 0.0014019584357693473 -0.24946065928916555 1.0 11782 -80292 Zxdc ZXD family zinc finger C Novel N 0.0014003945827390854 -0.24947685762744412 1.0 11783 -69077 Psmd11 proteasome (prosome, macropain) 26S subunit, non-ATPase, 11 Novel U 0.001400217704784195 -0.2494786897234863 1.0 11784 -109145 Gins4 GINS complex subunit 4 Novel U 0.0014001830631756426 -0.24947904854012892 1.0 11785 -21788 Tfpi tissue factor pathway inhibitor Novel U 0.0014001294324755232 -0.24947960404515773 1.0 11786 -78376 Sapcd1 suppressor APC domain containing 1 Novel U 0.0013999817939108461 -0.24948113328055732 1.0 11787 -100302688 Gm17455 predicted gene, 17455 Novel U 0.0013996918895138092 -0.24948413610077175 1.0 11788 -69882 Ints14 integrator complex subunit 14 Novel U 0.0013996328224909174 -0.24948474791505312 1.0 11789 -94222 Olig3 oligodendrocyte transcription factor 3 Novel U 0.0013996202633640771 -0.24948487800207605 1.0 11790 -383348 Kctd16 potassium channel tetramerisation domain containing 16 Novel U 0.001399153435460402 -0.24948971339015621 1.0 11791 -67704 1810037I17Rik RIKEN cDNA 1810037I17 gene Novel U 0.001398717232354958 -0.24949423156758296 1.0 11792 -328133 Slc39a9 solute carrier family 39 (zinc transporter), member 9 Novel N 0.0013982973911486442 -0.24949858026899643 1.0 11793 -24070 Mpdu1 mannose-P-dolichol utilization defect 1 Novel U 0.001398205535681566 -0.24949953170490485 1.0 11794 -73139 Cenpv centromere protein V Novel U 0.0013977000790395468 -0.24950476720818687 1.0 11795 -58186 Rad18 RAD18 E3 ubiquitin protein ligase Novel U 0.001397188443466397 -0.24951006671263448 1.0 11796 -667586 Vmn1r163 vomeronasal 1 receptor 163 Novel U 0.0013966519167559898 -0.2495156240386635 1.0 11797 -69151 Lzic leucine zipper and CTNNBIP1 domain containing Novel U 0.0013964785653983215 -0.24951741960632762 1.0 11798 -192663 Abcg4 ATP binding cassette subfamily G member 4 Novel U 0.001394794856030018 -0.24953485941261552 1.0 11799 -215095 Astl astacin like metalloendopeptidase Novel N 0.0013944645814464942 -0.24953828038589448 1.0 11800 -68275 Rpa1 replication protein A1 Novel U 0.0013942974277183517 -0.24954001175871568 1.0 11801 -97187 Pramel29 PRAME like 29 Novel U 0.001393726224454906 -0.24954592826334115 1.0 11802 -16494 Kcna6 potassium voltage-gated channel, shaker-related, subfamily, member 6 Novel N 0.0013933309708579961 -0.24955002228710468 1.0 11803 -70080 Igsf23 immunoglobulin superfamily, member 23 Novel U 0.0013927008139558445 -0.2495565494315819 1.0 11804 -74152 Stra6l STRA6-like Novel U 0.0013925517549372211 -0.24955809337999674 1.0 11805 -19141 Lgmn legumain Novel U 0.0013918350649615228 -0.24956551683120512 1.0 11806 -20930 Surf1 surfeit gene 1 Novel N 0.0013916535492639983 -0.24956739696483307 1.0 11807 -14314 Fstl1 follistatin-like 1 Novel U 0.0013913412316565558 -0.24957063194034407 1.0 11808 -333315 Frem3 Fras1 related extracellular matrix protein 3 Novel U 0.001391314022813713 -0.24957091376864377 1.0 11809 -223776 Selenoo selenoprotein O Novel N 0.001390608784602932 -0.2495782186028476 1.0 11810 -271887 Rbbp8nl RBBP8 N-terminal like Novel U 0.0013901958549620193 -0.24958249571449384 1.0 11811 -21410 Hnf1b HNF1 homeobox B Novel U 0.00138991106964661 -0.24958544551142905 1.0 11812 -102634296 Gm4779 predicted gene 4779 Novel U 0.0013893740234784174 -0.24959100821798474 1.0 11813 -20471 Six1 sine oculis-related homeobox 1 Novel U 0.0013890281545343704 -0.24959459071713733 1.0 11814 -545893 Mansc4 MANSC domain containing 4 Novel U 0.001388981619030762 -0.24959507273035395 1.0 11815 -232339 Ankrd26 ankyrin repeat domain 26 Novel U 0.0013881703257118073 -0.24960347607988187 1.0 11816 -66359 Cox20 cytochrome c oxidase assembly protein 20 Novel N 0.0013877437631835926 -0.2496078944005266 1.0 11817 -16668 Krt18 keratin 18 Novel U 0.001387534880759326 -0.24961005799781052 1.0 11818 -72281 Sh2d4a SH2 domain containing 4A Novel U 0.0013875238755137115 -0.24961017198978283 1.0 11819 -77609 Odad3 outer dynein arm docking complex subunit 3 Novel N 0.0013865788505454844 -0.2496199605273377 1.0 11820 -66618 Snrnp27 small nuclear ribonucleoprotein 27 (U4/U6.U5) Novel U 0.00138613113254438 -0.24962459797567518 1.0 11821 -240756 Klhl12 kelch-like 12 Novel U 0.0013861303591259071 -0.24962460598671835 1.0 11822 -407786 Taf9b TATA-box binding protein associated factor 9B Novel N 0.0013855636733600255 -0.2496304756992525 1.0 11823 -53618 Fut8 fucosyltransferase 8 Novel U 0.0013852159472171842 -0.24963407743520918 1.0 11824 -11434 Acr acrosin prepropeptide Novel U 0.0013848967085080986 -0.24963738409926348 1.0 11825 -71804 Mtfr2 mitochondrial fission regulator 2 Novel U 0.0013848328030545908 -0.24963804602985015 1.0 11826 -11441 Chrna7 cholinergic receptor, nicotinic, alpha polypeptide 7 Novel U 0.001384751918680801 -0.24963888382753494 1.0 11827 -14402 Gabrb3 GABRB3, gamma-aminobutyric acid type A receptor subunit beta 3 Novel U 0.0013846821824264129 -0.24963960615336545 1.0 11828 -230576 Ttc22 tetratricopeptide repeat domain 22 Novel U 0.0013845682915555305 -0.2496407858312621 1.0 11829 -17527 Mpv17 MpV17 mitochondrial inner membrane protein Novel U 0.0013829560919417121 -0.2496574849418638 1.0 11830 -100271882 Zfp1004 zinc finger protein 1004 Novel U 0.001382786223792368 -0.2496592444305706 1.0 11831 -68653 Samm50 SAMM50 sorting and assembly machinery component Novel U 0.0013823489920484963 -0.2496637732626004 1.0 11832 -54394 Crlf3 cytokine receptor-like factor 3 Novel U 0.0013806672360228915 -0.24968119283622886 1.0 11833 -238803 Zfp366 zinc finger protein 366 Novel N 0.0013803391065014266 -0.24968459159102552 1.0 11834 -74405 Efhc2 EF-hand domain (C-terminal) containing 2 Novel U 0.0013802403815593913 -0.2496856141807297 1.0 11835 -15115 Hars1 histidyl-tRNA synthetase 1 Novel U 0.0013800842916079485 -0.24968723095531556 1.0 11836 -70458 2610318N02Rik RIKEN cDNA 2610318N02 gene Novel U 0.0013798859177476005 -0.24968928570523985 1.0 11837 -15267 H2ac18 H2A clustered histone 18 Novel U 0.0013795406347374306 -0.24969286213530864 1.0 11838 -66069 Snupn snurportin 1 Novel N 0.001379479145434239 -0.24969349903948973 1.0 11839 -22625 Map3k19 mitogen-activated protein kinase kinase kinase 19 Novel U 0.0013794519726649877 -0.2496937804941404 1.0 11840 -57254 Tas2r119 taste receptor, type 2, member 119 Novel U 0.0013794408730870554 -0.24969389546320372 1.0 11841 -71916 Dus4l dihydrouridine synthase 4 like Novel N 0.0013793915532619042 -0.24969440631633133 1.0 11842 -67712 Slc25a37 solute carrier family 25, member 37 Novel U 0.0013791830300072681 -0.24969656619334804 1.0 11843 -66733 Kcng4 potassium voltage-gated channel, subfamily G, member 4 Novel N 0.0013790857363348266 -0.24969757395800884 1.0 11844 -385658 Nxpe3 neurexophilin and PC-esterase domain family, member 3 Novel U 0.0013789932807922879 -0.24969853160947914 1.0 11845 -68691 Kansl1l KAT8 regulatory NSL complex subunit 1-like Novel U 0.0013786748856593576 -0.24970182953579934 1.0 11846 -76400 Pbp2 phosphatidylethanolamine binding protein 2 Novel U 0.0013784282064835402 -0.24970438463059333 1.0 11847 -68349 Ndufs3 NADH:ubiquinone oxidoreductase core subunit S3 Novel U 0.001378217150887746 -0.2497065707375165 1.0 11848 -22594 Xrcc1 X-ray repair complementing defective repair in Chinese hamster cells 1 Novel N 0.0013778522681943777 -0.2497103501804595 1.0 11849 -234023 Arglu1 arginine and glutamate rich 1 Novel U 0.0013777826092033147 -0.24971107170599904 1.0 11850 -234964 Deup1 deuterosome assembly protein 1 Novel U 0.001377709622771952 -0.24971182769705577 1.0 11851 -97159 A430005L14Rik RIKEN cDNA A430005L14 gene Novel U 0.0013771971208803853 -0.24971713617480104 1.0 11852 -72805 Zfp839 zinc finger protein 839 Novel U 0.001377021338510897 -0.24971895692280568 1.0 11853 -208266 Dot1l DOT1 like histone lysine methyltransferase Novel U 0.001376628366026315 -0.24972302731888268 1.0 11854 -66395 Ahnak AHNAK nucleoprotein Novel N 0.0013764820225291112 -0.24972454314001594 1.0 11855 -209351 Wfdc6a WAP four-disulfide core domain 6A Novel U 0.0013761388838912348 -0.24972809735874701 1.0 11856 -65020 Zfp110 zinc finger protein 110 Novel U 0.0013761234543791336 -0.2497282571771261 1.0 11857 -100040944 Gm3055 predicted gene 3055 Novel U 0.0013760713935025294 -0.2497287964219746 1.0 11858 -78749 Filip1l filamin A interacting protein 1-like Novel U 0.0013757851750313237 -0.2497317610634904 1.0 11859 -12455 Ccnt1 cyclin T1 Novel U 0.0013757072228547486 -0.24973256848957281 1.0 11860 -94062 Mrpl3 mitochondrial ribosomal protein L3 Novel N 0.0013753093623304396 -0.2497366895158047 1.0 11861 -18407 Orm3 orosomucoid 3 Novel U 0.0013752482769950225 -0.24973732223570083 1.0 11862 -12640 Cga glycoprotein hormones, alpha subunit Novel U 0.0013752038424325642 -0.24973778248743808 1.0 11863 -21387 Tbx4 T-box 4 Novel U 0.0013746201307831404 -0.24974382855351432 1.0 11864 -67801 Pllp plasma membrane proteolipid Novel U 0.0013743794648641647 -0.24974632136319158 1.0 11865 -278097 Armcx6 armadillo repeat containing, X-linked 6 Novel U 0.0013739724365713286 -0.24975053734886846 1.0 11866 -72284 LTO1 ABCE maturation factor Novel N 0.0013733926173613298 -0.2497565430971851 1.0 11867 -54387 Mcm3ap minichromosome maintenance complex component 3 associated protein Novel U 0.0013729825338169288 -0.2497607907290572 1.0 11868 -99696 Ankrd50 ankyrin repeat domain 50 Novel U 0.0013728382553620877 -0.2497622851605496 1.0 11869 -68944 Tmco1 transmembrane and coiled-coil domains 1 Novel U 0.0013727767064645711 -0.24976292268200675 1.0 11870 -16841 Lect2 leukocyte cell-derived chemotaxin 2 Novel N 0.0013713945172900053 -0.24977723935203988 1.0 11871 -66365 Ccdc90b coiled-coil domain containing 90B Novel U 0.0013713791854641244 -0.24977739815858835 1.0 11872 -14768 Lancl1 LanC (bacterial lantibiotic synthetase component C)-like 1 Novel N 0.0013707515936896386 -0.2497838987335575 1.0 11873 -225523 Cep120 centrosomal protein 120 Novel U 0.0013706965965983738 -0.2497844683916209 1.0 11874 -70791 Hars2 histidyl-tRNA synthetase 2 Novel N 0.0013703881735356676 -0.24978766302756553 1.0 11875 -17137 Magea1 MAGE family member A1 Novel U 0.001370200227317876 -0.24978960976831105 1.0 11876 -624153 H2ab2 H2A.B variant histone 2 Novel U 0.0013693875314292913 -0.24979802764560904 1.0 11877 -83797 Smarcd1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 1 Novel U 0.0013693508010170924 -0.24979840809801118 1.0 11878 -14633 Gli2 GLI-Kruppel family member GLI2 Novel U 0.0013690778183959578 -0.24980123564302703 1.0 11879 -268878 Atp13a5 ATPase type 13A5 Novel N 0.0013689539327979316 -0.24980251884597887 1.0 11880 -71338 Tprg1 transformation related protein 63 regulated 1 Novel U 0.0013685627166198006 -0.24980657105029141 1.0 11881 -268729 Frmpd2 FERM and PDZ domain containing 2 Novel U 0.0013680722932495435 -0.24981165083943874 1.0 11882 -108912 Cdca2 cell division cycle associated 2 Novel N 0.0013678163728775903 -0.2498143016542385 1.0 11883 -77836 Mlana melan-A Novel U 0.0013678148853741158 -0.2498143170617506 1.0 11884 -434484 Sp140 Sp140 nuclear body protein Novel U 0.0013677907737129533 -0.2498145668095443 1.0 11885 -76987 Hdhd2 haloacid dehalogenase-like hydrolase domain containing 2 Novel U 0.001367631431038426 -0.24981621727572895 1.0 11886 -68278 Ddx39a DEAD box helicase 39a Novel N 0.001367567695320099 -0.24981687744820416 1.0 11887 -433178 Spink14 serine peptidase inhibitor, Kazal type 14 Novel U 0.0013666668807482646 -0.24982620805592654 1.0 11888 -67027 Mkrn2 makorin, ring finger protein, 2 Novel U 0.0013652212434017105 -0.24984118192003937 1.0 11889 -56504 Srpk3 serine/arginine-rich protein specific kinase 3 Novel U 0.001364754294700881 -0.24984601855933247 1.0 11890 -71833 Dcaf7 DDB1 and CUL4 associated factor 7 Novel U 0.0013646902447191597 -0.2498466819869376 1.0 11891 -17207 Mcf2l mcf.2 transforming sequence-like Novel U 0.0013645310137151963 -0.2498483312964422 1.0 11892 -22784 Slc30a3 solute carrier family 30 (zinc transporter), member 3 Novel U 0.001364434658653439 -0.24984932933900442 1.0 11893 -74617 Scpep1 serine carboxypeptidase 1 Novel U 0.0013636677194497305 -0.24985727327006463 1.0 11894 -394433 Ugt1a5 UDP glucuronosyltransferase 1 family, polypeptide A5 Novel U 0.0013636351259404703 -0.24985761087256209 1.0 11895 -100039052 Eif1ad4 eukaryotic translation initiation factor 1A domain containing 4 Novel U 0.0013632755015317184 -0.24986133585036593 1.0 11896 -245263 Duxf4 double homeobox family member 4 Novel U 0.001363267647997269 -0.24986141719701763 1.0 11897 -215378 Brinp3 bone morphogenetic protein/retinoic acid inducible neural specific 3 Novel U 0.0013631860211881905 -0.24986226268482273 1.0 11898 -69352 Necab1 N-terminal EF-hand calcium binding protein 1 Novel U 0.0013631631991976592 -0.2498624990742504 1.0 11899 -116972 Tlcd3a TLC domain containing 3A Novel U 0.0013626190472874537 -0.24986813538184827 1.0 11900 -78834 Zfp623 zinc finger protein 623 Novel U 0.0013614685029008384 -0.2498800526827827 1.0 11901 -225642 Grp gastrin releasing peptide Novel N 0.0013607231835283736 -0.24988777267634166 1.0 11902 -106633 Ift140 intraflagellar transport 140 Novel U 0.0013604375675615595 -0.2498907310771368 1.0 11903 -12235 Bub1 BUB1, mitotic checkpoint serine/threonine kinase Novel U 0.0013597198577655317 -0.2498981650916106 1.0 11904 -97112 Nmd3 NMD3 ribosome export adaptor Novel U 0.0013586608071139553 -0.24990913470344522 1.0 11905 -78752 Csgalnact2 chondroitin sulfate N-acetylgalactosaminyltransferase 2 Novel N 0.0013585807458175796 -0.2499099639757212 1.0 11906 -380686 Cnrip1 cannabinoid receptor interacting protein 1 Novel U 0.0013583923929743325 -0.2499119149282798 1.0 11907 -56516 Rbms2 RNA binding motif, single stranded interacting protein 2 Novel N 0.0013579891102837225 -0.24991609211713192 1.0 11908 -63859 Impg1 interphotoreceptor matrix proteoglycan 1 Novel N 0.0013575406443938956 -0.24992073731207623 1.0 11909 -53375 Mtx2 metaxin 2 Novel U 0.0013575339378249771 -0.24992080677849662 1.0 11910 -66793 Clxn calaxin Novel U 0.001357253876322318 -0.24992370764633465 1.0 11911 -66357 Ostc oligosaccharyltransferase complex subunit (non-catalytic) Novel N 0.001357143267261537 -0.24992485333135014 1.0 11912 -100039596 Tcf24 transcription factor 24 Novel U 0.0013566743324272738 -0.24992971054294802 1.0 11913 -19202 Rhox6 reproductive homeobox 6 Novel U 0.001356530635545631 -0.24993119895052432 1.0 11914 -241391 Galnt5 polypeptide N-acetylgalactosaminyltransferase 5 Novel N 0.0013564551039718389 -0.2499319813040827 1.0 11915 -75871 Zfp821 zinc finger protein 821 Novel U 0.001356117689122052 -0.24993547623600487 1.0 11916 -16418 Eif6 eukaryotic translation initiation factor 6 Novel N 0.001356101522903037 -0.24993564368517002 1.0 11917 -70930 Nol8 nucleolar protein 8 Novel N 0.0013559876437722461 -0.24993682324146313 1.0 11918 -106957 Slc39a6 solute carrier family 39 (metal ion transporter), member 6 Novel U 0.001355696945135547 -0.24993983428838587 1.0 11919 -97961 Nol12 nucleolar protein 12 Novel U 0.0013556408311625012 -0.24994041551507404 1.0 11920 -76238 Grhpr glyoxylate reductase/hydroxypyruvate reductase Novel N 0.001355608738227249 -0.2499407479326424 1.0 11921 -15191 Hdgf heparin binding growth factor Novel N 0.0013551906596075618 -0.2499450783772415 1.0 11922 -20526 Slc2a2 solute carrier family 2 (facilitated glucose transporter), member 2 Novel N 0.0013550376470191827 -0.24994666327660192 1.0 11923 -23893 Grem2 gremlin 2, DAN family BMP antagonist Novel N 0.0013550111078239986 -0.2499469381687132 1.0 11924 -67532 Mfap1a microfibrillar-associated protein 1A Novel U 0.0013547051870486499 -0.24995010688604768 1.0 11925 -105243794 Spem3 SPEM family member 3 Novel U 0.0013546970105810343 -0.24995019157763043 1.0 11926 -242022 Frem2 Fras1 related extracellular matrix protein 2 Novel U 0.0013539330617463436 -0.2499581045345467 1.0 11927 -28254 Slco1a6 solute carrier organic anion transporter family, member 1a6 Novel U 0.0013535662996488702 -0.2499619034442957 1.0 11928 -56369 Apip APAF1 interacting protein Novel U 0.0013532558465949175 -0.24996511910682293 1.0 11929 -98985 Clp1 CLP1, cleavage and polyadenylation factor I subunit Novel N 0.0013532298799006082 -0.24996538806898896 1.0 11930 -330962 Slc51b solute carrier family 51, beta subunit Novel U 0.001352585989174501 -0.2499720574679632 1.0 11931 -215900 Calhm6 calcium homeostasis modulator family member 6 Novel U 0.0013518859401383165 -0.24997930855286715 1.0 11932 -100862368 Gm21680 predicted gene, 21680 Novel U 0.0013514429942303623 -0.24998389657202066 1.0 11933 -72269 Cda cytidine deaminase Novel N 0.0013514219858672485 -0.2499841141759552 1.0 11934 -12630 Cfi complement component factor i Novel U 0.0013511084563053743 -0.24998736170485034 1.0 11935 -57259 Tob2 transducer of ERBB2, 2 Novel N 0.0013510834651625555 -0.24998762056228616 1.0 11936 -319148 H3c3 H3 clustered histone 3 Novel U 0.0013509542234903696 -0.24998895924327805 1.0 11937 -67370 Zfp606 zinc finger protein 606 Novel U 0.0013503977565267698 -0.24999472310979412 1.0 11938 -230157 Tmeff1 transmembrane protein with EGF-like and two follistatin-like domains 1 Novel U 0.0013495617636604782 -0.25000338229642144 1.0 11939 -20464 Sim1 single-minded family bHLH transcription factor 1 Novel U 0.0013495150825962397 -0.25000386581735023 1.0 11940 -18526 Pcdh10 protocadherin 10 Novel U 0.0013494735499390987 -0.2500042960112476 1.0 11941 -64945 Cldn12 claudin 12 Novel U 0.00134936326039026 -0.25000543838676886 1.0 11942 -14204 Il4i1 interleukin 4 induced 1 Novel U 0.001349315627378296 -0.25000593176794095 1.0 11943 -74004 Jakmip3 janus kinase and microtubule interacting protein 3 Novel U 0.001348808304413211 -0.25001118660253596 1.0 11944 -224805 Aars2 alanyl-tRNA synthetase 2, mitochondrial Novel N 0.0013488020742530938 -0.25001125113432965 1.0 11945 -239845 Gpr156 G protein-coupled receptor 156 Novel N 0.0013487127847428358 -0.25001217599214165 1.0 11946 -245126 Tarm1 T cell-interacting, activating receptor on myeloid cells 1 Novel U 0.0013482447119743334 -0.2500170242744908 1.0 11947 -66479 1700029F12Rik RIKEN cDNA 1700029F12 gene Novel U 0.001347838654700426 -0.2500212302023855 1.0 11948 -68194 Ndufb4 NADH:ubiquinone oxidoreductase subunit B4 Novel U 0.0013477275800413459 -0.25002238071005284 1.0 11949 -66446 Exosc7 exosome component 7 Novel N 0.0013472818690038468 -0.2500269973703273 1.0 11950 -280287 Kiss1 KiSS-1 metastasis-suppressor Novel U 0.001347175011621573 -0.25002810419558014 1.0 11951 -244871 Zc3h12c zinc finger CCCH type containing 12C Novel U 0.001346680425535871 -0.2500332271019972 1.0 11952 -17231 Mcpt8 mast cell protease 8 Novel U 0.0013465511966576555 -0.25003456565046955 1.0 11953 -67708 Pcnx4 pecanex homolog 4 Novel U 0.0013456455905610516 -0.25004394588864803 1.0 11954 -68197 Ndufc2 NADH:ubiquinone oxidoreductase subunit C2 Novel N 0.0013452654680472492 -0.25004788318515014 1.0 11955 -319191 H2ac13 H2A clustered histone 13 Novel U 0.0013448979642332046 -0.25005168977757497 1.0 11956 -67341 Ascl4 achaete-scute family bHLH transcription factor 4 Novel U 0.0013442931773536327 -0.2500579541401923 1.0 11957 -69694 Tatdn1 TatD DNase domain containing 1 Novel U 0.0013439635760459643 -0.25006136813970203 1.0 11958 -74513 Neto2 neuropilin (NRP) and tolloid (TLL)-like 2 Novel U 0.0013433526148516955 -0.250067696455668 1.0 11959 -21886 Tle2 transducin-like enhancer of split 2 Novel N 0.0013429795423203707 -0.25007156072868336 1.0 11960 -52906 Ahi1 Abelson helper integration site 1 Novel N 0.0013426957728760664 -0.25007450000325904 1.0 11961 -270156 Nkapd1 NKAP domain containing 1 Novel U 0.0013426016046785025 -0.2500754753943538 1.0 11962 -434423 Dppa5a developmental pluripotency associated 5A Novel U 0.001341704923497284 -0.25008476318855205 1.0 11963 -70717 Medag mesenteric estrogen dependent adipogenesis Novel U 0.001341690958025772 -0.2500849078424469 1.0 11964 -666747 Trim43b tripartite motif-containing 43B Novel U 0.0013415303254639898 -0.2500865716692413 1.0 11965 -68744 Zfp740 zinc finger protein 740 Novel U 0.001341406743681198 -0.2500878517252849 1.0 11966 -100043061 Vmn1r256 vomeronasal 1 receptor 256 Novel U 0.0013413750917697905 -0.2500881795747428 1.0 11967 -666187 Pramel49 PRAME like 49 Novel U 0.001341369121289106 -0.2500882414167855 1.0 11968 -68842 Tulp4 TUB like protein 4 Novel U 0.0013412963386671157 -0.2500889952967914 1.0 11969 -319518 Pdpr pyruvate dehydrogenase phosphatase regulatory subunit Novel U 0.0013411510548403476 -0.25009050014189316 1.0 11970 -66086 Cep20 centrosomal protein 20 Novel N 0.0013410897575156253 -0.2500911350575676 1.0 11971 -230967 Cep104 centrosomal protein 104 Novel N 0.0013406675650503074 -0.2500955081132445 1.0 11972 -70300 Fuz fuzzy planar cell polarity protein Novel U 0.0013403797690198585 -0.25009848909506716 1.0 11973 -66497 Cmss1 cms small ribosomal subunit 1 Novel U 0.001340165337833056 -0.25010071016625096 1.0 11974 -66612 Ormdl3 ORM1-like 3 (S. cerevisiae) Novel U 0.0013392071841980223 -0.250110634690105 1.0 11975 -227721 Plpp7 phospholipid phosphatase 7 (inactive) Novel U 0.0013391073168474588 -0.2501116691128392 1.0 11976 -14347 Fut7 fucosyltransferase 7 Novel U 0.0013386266278273692 -0.25011664807390754 1.0 11977 -192169 Ufsp2 UFM1-specific peptidase 2 Novel U 0.0013382922388663072 -0.2501201116637738 1.0 11978 -50918 Myadm myeloid-associated differentiation marker Novel U 0.0013378809869575379 -0.2501243713975256 1.0 11979 -380836 Mrs2 MRS2 magnesium transporter Novel N 0.0013375730901852099 -0.2501275605821718 1.0 11980 -277666 Pramel24 PRAME like 24 Novel U 0.0013373258146716065 -0.250130121853813 1.0 11981 -16820 Lcn3 lipocalin 3 Novel U 0.0013371959817696033 -0.2501314666587439 1.0 11982 -73747 Shld1 shieldin complex subunit 1 Novel U 0.001337159477717193 -0.2501318447665188 1.0 11983 -668017 Speer1b spermatogenesis associated glutamate (E)-rich protein 1B Novel U 0.0013368823602694759 -0.25013471513993246 1.0 11984 -227707 BC005624 cDNA sequence BC005624 Novel N 0.001336464987561401 -0.2501390382727223 1.0 11985 -67515 Ttc33 tetratricopeptide repeat domain 33 Novel U 0.0013364382154370223 -0.25013931557750657 1.0 11986 -17926 Myoc myocilin Novel U 0.0013361055258844228 -0.2501427615649558 1.0 11987 -243833 Zfp128 zinc finger protein 128 Novel U 0.0013357801303558949 -0.2501461320011435 1.0 11988 -230761 Zfp362 zinc finger protein 362 Novel U 0.0013357184553787576 -0.2501467708285292 1.0 11989 -70373 Gpatch2l G patch domain containing 2 like Novel U 0.0013357085521914225 -0.2501468734054181 1.0 11990 -20227 Sart1 squamous cell carcinoma antigen recognized by T cells 1 Novel U 0.001335288101377261 -0.2501512284211296 1.0 11991 -78889 Wsb1 WD repeat and SOCS box-containing 1 Novel U 0.0013352549484666608 -0.2501515718178878 1.0 11992 -231932 Gimap7 GTPase, IMAP family member 7 Novel N 0.0013344349545112038 -0.2501600652883225 1.0 11993 -30049 Scd3 stearoyl-coenzyme A desaturase 3 Novel U 0.0013342762500746313 -0.2501617091436594 1.0 11994 -16644 Kng1 kininogen 1 Novel U 0.0013341501039416807 -0.2501630157611577 1.0 11995 -65256 Asb2 ankyrin repeat and SOCS box-containing 2 Novel U 0.0013338181326883359 -0.2501664543084869 1.0 11996 -56808 Cacna2d2 calcium channel, voltage-dependent, alpha 2/delta subunit 2 Novel N 0.001333469815095276 -0.25017006217066545 1.0 11997 -30800 Mmp20 matrix metallopeptidase 20 (enamelysin) Novel N 0.0013331198118288604 -0.25017368749299324 1.0 11998 -67893 Tmem86a transmembrane protein 86A Novel U 0.0013321349060662951 -0.2501838891145049 1.0 11999 -73225 Fam118a family with sequence similarity 118, member A Novel U 0.0013308046247496458 -0.2501976681246521 1.0 12000 -20592 Kdm5d lysine demethylase 5D Novel N 0.0013306067652512907 -0.2501997175468318 1.0 12001 -666329 Gm3317 predicted gene 3317 Novel U 0.0013304672210065318 -0.2502011629415317 1.0 12002 -23849 Klf6 Kruppel-like transcription factor 6 Novel U 0.001330291958321073 -0.25020297830666627 1.0 12003 -20564 Slit3 slit guidance ligand 3 Novel U 0.0013302768827723717 -0.2502031344587041 1.0 12004 -21454 Tcp1 t-complex protein 1 Novel U 0.0013302218229758853 -0.25020370476626613 1.0 12005 -66910 Tmem107 transmembrane protein 107 Novel U 0.001329958706863411 -0.25020643011430965 1.0 12006 -67155 Smarca2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 2 Novel U 0.0013298800005548746 -0.25020724535166616 1.0 12007 -73046 Glrx5 glutaredoxin 5 Novel N 0.001329870092563601 -0.25020734797831407 1.0 12008 -93674 Nat8f3 N-acetyltransferase 8 (GCN5-related) family member 3 Novel U 0.001329725986568142 -0.25020884062347776 1.0 12009 -667292 Vmn1r111 vomeronasal 1 receptor 111 Novel U 0.0013296142928245873 -0.2502099975436018 1.0 12010 -212198 Wdr25 WD repeat domain 25 Novel U 0.0013293207855454615 -0.2502130376823504 1.0 12011 -74096 Hvcn1 hydrogen voltage-gated channel 1 Novel U 0.001329031734476232 -0.2502160316638235 1.0 12012 -242594 Fyb2 FYN binding protein 2 Novel U 0.0013288721104037142 -0.25021768504471925 1.0 12013 -13056 Cyb561 cytochrome b-561 Novel N 0.0013285179319669062 -0.2502213536133247 1.0 12014 -330450 Far2 fatty acyl CoA reductase 2 Novel N 0.0013281996579989164 -0.25022465028462243 1.0 12015 -216635 Hbq1a hemoglobin, theta 1A Novel U 0.0013281279017926734 -0.2502253935330479 1.0 12016 -67914 Coq9 coenzyme Q9 Novel N 0.0013276446523262098 -0.25023039901513555 1.0 12017 -71834 Zbtb43 zinc finger and BTB domain containing 43 Novel U 0.0013271716991545555 -0.25023529784854004 1.0 12018 -77110 Gpbp1l1 GC-rich promoter binding protein 1-like 1 Novel U 0.0013271195925870537 -0.2502358375666533 1.0 12019 -12952 Cry1 cryptochrome circadian regulator 1 Novel N 0.00132695045529673 -0.25023758948514635 1.0 12020 -208426 Iqcj IQ motif containing J Novel U 0.0013268085928273953 -0.2502390588919403 1.0 12021 -223262 Timm8a2 translocase of inner mitochondrial membrane 8A2 Novel U 0.001325981753067045 -0.2502476232709971 1.0 12022 -23790 Coro1c coronin, actin binding protein 1C Novel U 0.0013259655053051312 -0.2502477915647809 1.0 12023 -319675 Cep295 centrosomal protein 295 Novel U 0.0013252118388699587 -0.2502555980169409 1.0 12024 -319922 Vwc2 von Willebrand factor C domain containing 2 Novel U 0.0013250971486686483 -0.2502567859742759 1.0 12025 -664805 Skor2 SKI family transcriptional corepressor 2 Novel U 0.0013250413963858873 -0.25025736345458793 1.0 12026 -241794 Kcng1 potassium voltage-gated channel, subfamily G, member 1 Novel N 0.0013241046260015603 -0.25026706649143415 1.0 12027 -68477 Rmnd5a required for meiotic nuclear division 5 homolog A Novel U 0.0013236956610867912 -0.2502713025365773 1.0 12028 -93790 Nipa2 non imprinted in Prader-Willi/Angelman syndrome 2 homolog (human) Novel U 0.001323089400147154 -0.2502775821674603 1.0 12029 -68170 Iftap intraflagellar transport associated protein Novel U 0.0013228471252402002 -0.2502800916429822 1.0 12030 -100043856 Scgb2b18 secretoglobin, family 2B, member 18 Novel U 0.001322742636357878 -0.2502811739353904 1.0 12031 -171486 Cd99l2 CD99 antigen-like 2 Novel U 0.0013226765857414604 -0.25028185808550396 1.0 12032 -667469 Vmn1r143 vomeronasal 1 receptor 143 Novel U 0.0013226135035595428 -0.2502825114886706 1.0 12033 -353235 Pcdha8 protocadherin alpha 8 Novel U 0.0013226026282890445 -0.25028262413436486 1.0 12034 -67755 Ddx47 DEAD box helicase 47 Novel U 0.0013224548230206627 -0.25028415509647595 1.0 12035 -170772 Glcci1 glucocorticoid induced transcript 1 Novel U 0.0013223336771743337 -0.25028540992116977 1.0 12036 -224132 Slc49a4 solute carrier family 49 member 4 Novel N 0.0013220048945262262 -0.2502888154410307 1.0 12037 -69745 Pold4 polymerase (DNA-directed), delta 4 Novel N 0.0013218784380292935 -0.25029012527326894 1.0 12038 -56462 Mtch1 mitochondrial carrier 1 Novel U 0.0013215847125435454 -0.25029316767219456 1.0 12039 -217935 Dync2i1 dynein 2 intermediate chain 1 Novel U 0.0013212303724334834 -0.2502968379154063 1.0 12040 -102614 Rpp25 ribonuclease P/MRP 25 subunit Novel N 0.0013211117368394456 -0.2502980667389894 1.0 12041 -20365 Serf1 small EDRK-rich factor 1 Novel N 0.001320572100760769 -0.2503036562717528 1.0 12042 -66266 Eapp E2F-associated phosphoprotein Novel N 0.0013203499011412692 -0.25030595780810716 1.0 12043 -229715 Amigo1 adhesion molecule with Ig like domain 1 Novel U 0.0013202638376809855 -0.25030684925059954 1.0 12044 -68572 Mrpl58 mitochondrial ribosomal protein L58 Novel U 0.0013200152341198085 -0.2503094242781138 1.0 12045 -60596 Gucy1a1 guanylate cyclase 1, soluble, alpha 1 Novel U 0.0013197691235477518 -0.25031197348332873 1.0 12046 -71532 Fam217b family with sequence similarity 217, member B Novel U 0.0013191723608491736 -0.25031815473174307 1.0 12047 -76399 Il31 interleukin 31 Novel U 0.0013179408302515959 -0.2503309108851884 1.0 12048 -670764 Vmn1r124 vomeronasal 1 receptor 124 Novel U 0.0013175445301878436 -0.2503350157482211 1.0 12049 -67937 Tmem59l transmembrane protein 59-like Novel U 0.0013172602579032955 -0.2503379602311995 1.0 12050 -17067 Ly6c1 lymphocyte antigen 6 family member C1 Novel U 0.0013171373083585552 -0.2503392337385422 1.0 12051 -12022 Barx1 BarH-like homeobox 1 Novel U 0.0013169001019981863 -0.25034169071422513 1.0 12052 -56316 Ggcx gamma-glutamyl carboxylase Novel U 0.0013165603982015037 -0.250345209354984 1.0 12053 -19692 Reg1 regenerating islet-derived 1 Novel U 0.001315810580269367 -0.25035297594447614 1.0 12054 -74443 P4htm prolyl 4-hydroxylase, transmembrane (endoplasmic reticulum) Novel N 0.0013154439106522313 -0.25035677389631683 1.0 12055 -320351 Lyset lysosomal enzyme trafficking factor Novel U 0.0013152327698952942 -0.2503589608853363 1.0 12056 -381175 Ccdc68 coiled-coil domain containing 68 Novel N 0.0013145193965634564 -0.2503663499828566 1.0 12057 -109267 Ssc4d scavenger receptor cysteine rich family, 4 domains Novel U 0.0013144981443929601 -0.25036657011214 1.0 12058 -94191 Adarb2 adenosine deaminase, RNA-specific, B2 Novel U 0.0013144301060043658 -0.2503672748515324 1.0 12059 -74361 4931429L15Rik RIKEN cDNA 4931429L15 gene Novel U 0.0013139616921093874 -0.25037212666725833 1.0 12060 -18422 Ott ovary testis transcribed Novel U 0.0013132726889227458 -0.25037926333961574 1.0 12061 -18987 Pou2f2 POU domain, class 2, transcription factor 2 Novel N 0.0013127306730902333 -0.2503848775217911 1.0 12062 -67199 Pfdn1 prefoldin 1 Novel U 0.0013121883300474472 -0.2503904950931997 1.0 12063 -15221 Foxd3 forkhead box D3 Novel U 0.0013121354783781117 -0.2503910425290533 1.0 12064 -26910 Figla folliculogenesis specific basic helix-loop-helix Novel N 0.001311460368647909 -0.25039803529344573 1.0 12065 -13590 Lefty1 left right determination factor 1 Novel U 0.00131102557206672 -0.2504025389021405 1.0 12066 -18124 Nr4a3 nuclear receptor subfamily 4, group A, member 3 Novel U 0.001310130887556045 -0.2504118060148909 1.0 12067 -380912 Zfp395 zinc finger protein 395 Novel N 0.001308968072812333 -0.2504238504117808 1.0 12068 -20604 Sst somatostatin Novel N 0.0013088060459462733 -0.2504255286807331 1.0 12069 -100038570 Prcd photoreceptor disc component Novel N 0.0013085666208538026 -0.2504280086379702 1.0 12070 -73067 Tmem192 transmembrane protein 192 Novel U 0.001308328694830426 -0.25043047306789895 1.0 12071 -57315 Wdr46 WD repeat domain 46 Novel N 0.0013083144888120018 -0.2504306202133708 1.0 12072 -12468 Cct7 chaperonin containing TCP1 subunit 7 Novel U 0.0013083109393267325 -0.25043065697882255 1.0 12073 -100034729 Gm15114 predicted gene 15114 Novel U 0.001308248887846358 -0.25043129970601646 1.0 12074 -100043016 Vmn1r131 vomeronasal 1 receptor 131 Novel U 0.0013070474995789472 -0.25044374364619676 1.0 12075 -20383 Srsf3 serine and arginine-rich splicing factor 3 Novel N 0.001306847068464104 -0.2504458197050955 1.0 12076 -15437 Hoxd8 homeobox D8 Novel N 0.0013063857091876025 -0.2504505984493151 1.0 12077 -12554 Cdh13 cadherin 13 Novel U 0.0013063047348781751 -0.2504514371785503 1.0 12078 -24132 Zfp53 zinc finger protein 53 Novel U 0.0013050416312792418 -0.25046452036410577 1.0 12079 -18641 Pfkl phosphofructokinase, liver, B-type Novel N 0.0013047736549321699 -0.25046729605429946 1.0 12080 -69815 Krtcap3 keratinocyte associated protein 3 Novel U 0.001304728014896646 -0.2504677687922871 1.0 12081 -74354 Lrguk leucine-rich repeats and guanylate kinase domain containing Novel U 0.001304555296001576 -0.2504695578089244 1.0 12082 -16538 Kcns1 K+ voltage-gated channel, subfamily S, 1 Novel N 0.0013042647841858131 -0.25047256692076203 1.0 12083 -117198 Ivns1abp influenza virus NS1A binding protein Novel U 0.0013037124208854832 -0.25047828828166885 1.0 12084 -227325 Dner delta/notch-like EGF repeat containing Novel U 0.001303530512569084 -0.2504801724820302 1.0 12085 -72568 Lin9 lin-9 DREAM MuvB core complex component Novel U 0.001303390362182245 -0.25048162415512987 1.0 12086 -319822 Smyd4 SET and MYND domain containing 4 Novel N 0.00130331695054354 -0.25048238455047034 1.0 12087 -232959 Vmn1r178 vomeronasal 1 receptor 178 Novel U 0.001302701464890608 -0.2504887597306304 1.0 12088 -218544 Sgtb small glutamine-rich tetratricopeptide repeat (TPR)-containing, beta Novel U 0.0013026962121324374 -0.2504888141385268 1.0 12089 -21399 Tcea1 transcription elongation factor A (SII) 1 Novel N 0.0013017490030213753 -0.2504986252993614 1.0 12090 -319263 Pcmtd1 protein-L-isoaspartate (D-aspartate) O-methyltransferase domain containing 1 Novel N 0.0013016327750453214 -0.2504998291849166 1.0 12091 -22018 Tpo thyroid peroxidase Novel U 0.0013015931965004513 -0.25050023913818326 1.0 12092 -668727 Mrgpra2a MAS-related GPR, member A2A Novel U 0.001301532947399612 -0.2505008631963892 1.0 12093 -66707 Nkapl NFKB activating protein-like Novel U 0.0013012583136035503 -0.2505037078442207 1.0 12094 -225888 Kmt5b lysine methyltransferase 5B Novel U 0.001301200009549273 -0.25050431175569826 1.0 12095 -108168152 Gm8126 predicted gene 8126 Novel U 0.0013011652962016131 -0.25050467131541215 1.0 12096 -70134 Misp3 MISP family member 3 Novel U 0.0013003448246447814 -0.2505131697328263 1.0 12097 -19361 Rad51 RAD51 recombinase Novel U 0.0013002204243839843 -0.2505144582666382 1.0 12098 -237759 Col23a1 collagen, type XXIII, alpha 1 Novel U 0.0013001629305836773 -0.25051505378553174 1.0 12099 -93882 Pcdhb11 protocadherin beta 11 Novel U 0.0013001422912629049 -0.25051526756693787 1.0 12100 -100041102 Pramel42 PRAME like 42 Novel U 0.0013001302441486083 -0.2505153923505517 1.0 12101 -217119 Xylt2 xylosyltransferase II Novel U 0.0013000589818284792 -0.25051613048332094 1.0 12102 -116621581 Derpc DERPC proline and glycine rich nuclear protein Novel U 0.0012993685054981908 -0.25052328241445193 1.0 12103 -263764 Creg2 cellular repressor of E1A-stimulated genes 2 Novel U 0.0012989208874620074 -0.25052791882735603 1.0 12104 -22295 Cdh23 cadherin related 23 (otocadherin) Novel U 0.0012985864098259093 -0.2505313833357154 1.0 12105 -67402 Txndc8 thioredoxin domain containing 8 Novel U 0.0012984668913391642 -0.2505326213042721 1.0 12106 -50759 Fbxo16 F-box protein 16 Novel U 0.001298264375665427 -0.2505347189549634 1.0 12107 -635702 Naaladl2 N-acetylated alpha-linked acidic dipeptidase-like 2 Novel U 0.0012979545600985411 -0.25053792801442054 1.0 12108 -278180 Vsig4 V-set and immunoglobulin domain containing 4 Novel U 0.001297236240258666 -0.25054536834770846 1.0 12109 -328370 Rft1 RFT1 homolog Novel N 0.0012970941384569058 -0.25054684023349977 1.0 12110 -242736 Pramel12 PRAME like 12 Novel U 0.0012970433087714272 -0.250547366725711 1.0 12111 -104458 Rars1 arginyl-tRNA synthetase 1 Novel N 0.0012968945269355994 -0.25054890780307554 1.0 12112 -214597 Sidt2 SID1 transmembrane family, member 2 Novel N 0.0012967433428062944 -0.250550473763317 1.0 12113 -68565 Mrps18a mitochondrial ribosomal protein S18A Novel U 0.0012965106469534833 -0.2505528840193109 1.0 12114 -27379 Tcl1b1 T cell leukemia/lymphoma 1B, 1 Novel U 0.0012964567252043337 -0.25055344253901607 1.0 12115 -192976 Lrrc75a leucine rich repeat containing 75A Novel U 0.0012961549076474575 -0.25055656875534843 1.0 12116 -76856 Catsper3 cation channel, sperm associated 3 Novel U 0.0012954747949739777 -0.2505636133400629 1.0 12117 -71907 Serpina9 serine (or cysteine) peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 9 Novel U 0.001295383589116812 -0.2505645580473332 1.0 12118 -26459 Slc27a5 solute carrier family 27 (fatty acid transporter), member 5 Novel N 0.0012949894869402588 -0.25056864014472247 1.0 12119 -67530 Uqcrb ubiquinol-cytochrome c reductase binding protein Novel U 0.0012949477973867804 -0.25056907196374695 1.0 12120 -381142 Arl14epl ADP-ribosylation factor-like 14 effector protein-like Novel U 0.0012947605835778378 -0.25057101111822566 1.0 12121 -432486 Gnptab N-acetylglucosamine-1-phosphate transferase, alpha and beta subunits Novel U 0.0012947221409529523 -0.25057140930567046 1.0 12122 -76156 Fam131b family with sequence similarity 131, member B Novel U 0.0012946573522759032 -0.2505720803846575 1.0 12123 -11595 Acan aggrecan Novel U 0.001294504925687855 -0.2505736592142458 1.0 12124 -66960 Mindy3 MINDY lysine 48 deubiquitinase 3 Novel U 0.0012942104969081508 -0.25057670889786715 1.0 12125 -99512 Wdr47 WD repeat domain 47 Novel U 0.0012940339779186347 -0.2505785372757578 1.0 12126 -71223 Gpr15 G protein-coupled receptor 15 Novel U 0.0012940017028380503 -0.2505788715799815 1.0 12127 -73813 Fam83e family with sequence similarity 83, member E Novel U 0.0012935334932067965 -0.25058372127995043 1.0 12128 -15376 Foxa2 forkhead box A2 Novel U 0.0012933219515040943 -0.250585912421953 1.0 12129 -320538 Ubn2 ubinuclein 2 Novel U 0.001293194935467265 -0.2505872280498871 1.0 12130 -22025 Nr2c1 nuclear receptor subfamily 2, group C, member 1 Novel N 0.0012930144751009827 -0.25058909725242867 1.0 12131 -11419 Asic1 acid-sensing ion channel 1 Novel U 0.0012922243216091805 -0.2505972816363219 1.0 12132 -20587 Smarcb1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily b, member 1 Novel U 0.0012921663700709344 -0.25059788189645 1.0 12133 -15254 Hint1 histidine triad nucleotide binding protein 1 Novel N 0.0012917118442859587 -0.25060258985958905 1.0 12134 -64051 Sv2a synaptic vesicle glycoprotein 2a Novel U 0.0012915217079620487 -0.25060455928538167 1.0 12135 -17764 Mtf1 metal response element binding transcription factor 1 Novel N 0.001291228705177568 -0.2506075941985914 1.0 12136 -224697 Adamts10 ADAM metallopeptidase with thrombospondin type 1 motif 10 Novel U 0.001291218955626634 -0.25060769518411946 1.0 12137 -97908 H3c8 H3 clustered histone 8 Novel U 0.0012910081494800175 -0.2506098787072562 1.0 12138 -16510 Kcnh1 potassium voltage-gated channel, subfamily H (eag-related), member 1 Novel U 0.001290933111671804 -0.25061065594640697 1.0 12139 -225215 Rsl24d1 ribosomal L24 domain containing 1 Novel U 0.0012903834624385965 -0.2506163491950958 1.0 12140 -22314 Vmn2r129 vomeronasal 2, receptor 129 Novel U 0.0012898970960677468 -0.25062138696197667 1.0 12141 -21453 Tcof1 treacle ribosome biogenesis factor 1 Novel U 0.001289214320043453 -0.2506284591335912 1.0 12142 -107723 Slc12a6 solute carrier family 12, member 6 Novel U 0.0012888182447344078 -0.250632561668622 1.0 12143 -27225 Ddx24 DEAD box helicase 24 Novel U 0.0012884344812941937 -0.25063653667772023 1.0 12144 -14836 Gsc goosecoid homeobox Novel U 0.0012881444772404331 -0.25063954053017573 1.0 12145 -320581 Idi2 isopentenyl-diphosphate delta isomerase 2 Novel U 0.0012880299802883308 -0.25064072648584174 1.0 12146 -100040233 Prss3l serine protease 3 like Novel U 0.0012878440930333896 -0.25064265189991763 1.0 12147 -433809 Rnf207 ring finger protein 207 Novel N 0.0012877402932003606 -0.25064372705517596 1.0 12148 -27140 Tlx3 T cell leukemia, homeobox 3 Novel U 0.0012876470927839579 -0.25064469242202525 1.0 12149 -69731 Gemin7 gem nuclear organelle associated protein 7 Novel N 0.001287501083996883 -0.250646204776242 1.0 12150 -27376 Slc25a10 solute carrier family 25 (mitochondrial carrier, dicarboxylate transporter), member 10 Novel N 0.0012870425146180263 -0.2506509546227935 1.0 12151 -353204 Aldoart1 aldolase 1 A, retrogene 1 Novel U 0.0012859554492064356 -0.25066221441059144 1.0 12152 -18682 Phkg1 phosphorylase kinase gamma 1 Novel U 0.0012856540967872703 -0.2506653358090427 1.0 12153 -100039585 Gm14819 predicted gene 14819 Novel U 0.0012856475360016708 -0.2506654037654443 1.0 12154 -67742 Samsn1 SAM domain, SH3 domain and nuclear localization signals, 1 Novel U 0.0012853796767309472 -0.250668178242965 1.0 12155 -195646 Hs3st2 heparan sulfate (glucosamine) 3-O-sulfotransferase 2 Novel N 0.0012851034170679651 -0.25067103973147264 1.0 12156 -245007 Zbtb38 zinc finger and BTB domain containing 38 Novel N 0.0012849862770104737 -0.2506722530643374 1.0 12157 -13170 Dbp D site albumin promoter binding protein Novel N 0.0012847490960199402 -0.25067470977724043 1.0 12158 -171194 Vmn1r4 vomeronasal 1 receptor 4 Novel U 0.0012846941243338452 -0.2506752791721579 1.0 12159 -18938 Ppp1r14b protein phosphatase 1, regulatory inhibitor subunit 14B Novel U 0.0012843841535742457 -0.2506784898390961 1.0 12160 -78416 Rnase6 ribonuclease, RNase A family, 6 Novel N 0.0012841513103222309 -0.25068090162184614 1.0 12161 -629079 Vmn2r56 vomeronasal 2, receptor 56 Novel U 0.0012837235014202257 -0.25068533285238964 1.0 12162 -56626 Poll polymerase (DNA directed), lambda Novel N 0.0012835949514759905 -0.2506866643684862 1.0 12163 -665276 Gm20772 predicted gene, 20772 Novel U 0.0012835010951307766 -0.25068763652942455 1.0 12164 -69260 Ing2 inhibitor of growth family, member 2 Novel N 0.001283359058294404 -0.25068910774230646 1.0 12165 -108138 Xrcc4 X-ray repair complementing defective repair in Chinese hamster cells 4 Novel U 0.0012832928888303155 -0.2506897931234403 1.0 12166 -18301 Fxyd5 FXYD domain-containing ion transport regulator 5 Novel U 0.0012831576538807937 -0.25069119388260186 1.0 12167 -622480 Spocd1 SPOC domain containing 1 Novel U 0.001282903386331724 -0.2506938275775165 1.0 12168 -109910 Zfp91 zinc finger protein 91 Novel U 0.0012828475279732874 -0.25069440615655697 1.0 12169 -12964 Cryga crystallin, gamma A Novel U 0.0012827784222354875 -0.2506951219515174 1.0 12170 -666209 Pramel54 PRAME like 54 Novel U 0.0012826069694154723 -0.25069689785419086 1.0 12171 -78267 Klhdc8b kelch domain containing 8B Novel U 0.0012823339892927053 -0.25069972537332874 1.0 12172 -626359 Wdr93 WD repeat domain 93 Novel U 0.0012818862109852144 -0.25070436344631786 1.0 12173 -100039681 Zcwpw2 zinc finger, CW type with PWWP domain 2 Novel U 0.001281669716781315 -0.25070660588616495 1.0 12174 -52398 Septin11 septin 11 Novel U 0.0012813998121197153 -0.25070940154977717 1.0 12175 -435529 Adgrf2 adhesion G protein-coupled receptor F2 Novel U 0.0012811544583229962 -0.250711942916338 1.0 12176 -13046 Celf1 CUGBP, Elav-like family member 1 Novel N 0.0012809607900375478 -0.2507139489260722 1.0 12177 -20441 St3gal3 ST3 beta-galactoside alpha-2,3-sialyltransferase 3 Novel U 0.0012806512410945311 -0.2507171552238481 1.0 12178 -104570 Ppp4r3b protein phosphatase 4 regulatory subunit 3B Novel N 0.0012799053824790513 -0.2507248808028685 1.0 12179 -68970 Dcaf12 DDB1 and CUL4 associated factor 12 Novel U 0.00127989980668107 -0.2507249385568006 1.0 12180 -74222 Septin14 septin 14 Novel N 0.001279692446736691 -0.2507270863842879 1.0 12181 -268566 Gphn gephyrin Novel U 0.0012793170286832655 -0.2507309749521441 1.0 12182 -57754 Cend1 cell cycle exit and neuronal differentiation 1 Novel U 0.001279157486195547 -0.2507326274879872 1.0 12183 -12300 Cacng2 calcium channel, voltage-dependent, gamma subunit 2 Novel N 0.001278875437997312 -0.2507355489339527 1.0 12184 -231296 Lrrc66 leucine rich repeat containing 66 Novel U 0.0012787007820531594 -0.2507373580144807 1.0 12185 -80707 Wwox WW domain-containing oxidoreductase Novel U 0.0012784430689528597 -0.2507400273983018 1.0 12186 -15936 Ier2 immediate early response 2 Novel N 0.0012784034539268156 -0.25074043772943927 1.0 12187 -19142 Prss12 serine protease 12 neurotrypsin (motopsin) Novel N 0.0012782856785097246 -0.25074165764333783 1.0 12188 -232491 Pyroxd1 pyridine nucleotide-disulphide oxidoreductase domain 1 Novel U 0.001277473872196368 -0.25075006630644486 1.0 12189 -67897 Rnmt RNA (guanine-7-) methyltransferase Novel N 0.0012773918185413709 -0.250750916215506 1.0 12190 -30840 Fbxl6 F-box and leucine-rich repeat protein 6 Novel N 0.0012768223357676664 -0.25075681489935525 1.0 12191 -70897 Garin2 golgi associated RAB2 interactor 2 Novel U 0.0012760135192907503 -0.2507651925938348 1.0 12192 -497114 Defa23 defensin, alpha, 23 Novel U 0.0012756349700214066 -0.2507691135947225 1.0 12193 -243371 Lrrc61 leucine rich repeat containing 61 Novel U 0.001275624508107432 -0.2507692219588835 1.0 12194 -236904 Klhl15 kelch-like 15 Novel U 0.0012748278693977563 -0.25077747351645024 1.0 12195 -68235 Mturn maturin, neural progenitor differentiation regulator homolog (Xenopus) Novel U 0.0012747222716905928 -0.2507785672940297 1.0 12196 -66861 Dnajc10 DnaJ heat shock protein family (Hsp40) member C10 Novel U 0.0012746273211773176 -0.25077955078832487 1.0 12197 -66368 Rtca RNA 3'-terminal phosphate cyclase Novel U 0.001274112136143184 -0.25078488705797264 1.0 12198 -70044 Tut1 terminal uridylyl transferase 1, U6 snRNA-specific Novel N 0.001273563686394602 -0.25079056788243914 1.0 12199 -22591 Xpc xeroderma pigmentosum, complementation group C Novel U 0.001273457713692361 -0.2507916655442053 1.0 12200 -17172 Ascl1 achaete-scute family bHLH transcription factor 1 Novel U 0.0012727875860280892 -0.2507986067045226 1.0 12201 -15116 Has1 hyaluronan synthase 1 Novel U 0.001272759256464491 -0.25079890014121103 1.0 12202 -12576 Cdkn1b cyclin dependent kinase inhibitor 1B Novel U 0.0012723340476101215 -0.2508033044405466 1.0 12203 -68348 Serpina1f serine (or cysteine) peptidase inhibitor, clade A, member 1F Novel U 0.0012719584479292908 -0.25080719488969344 1.0 12204 -100043757 Zfp831 zinc finger protein 831 Novel U 0.001271689620825109 -0.25080997939200134 1.0 12205 -105450 Mmrn2 multimerin 2 Novel U 0.0012715208303098401 -0.2508117277186098 1.0 12206 -68802 Mypn myopalladin Novel U 0.0012709489363186245 -0.25081765137777084 1.0 12207 -667067 Vmn1r91 vomeronasal 1 receptor 91 Novel U 0.0012709284557736202 -0.25081786351458274 1.0 12208 -252909 Vmn1r85 vomeronasal 1 receptor 85 Novel U 0.0012708584567689611 -0.25081858856197187 1.0 12209 -100041688 Defa35 defensin, alpha, 35 Novel U 0.0012707970883713304 -0.25081922421381714 1.0 12210 -14461 Gata2 GATA binding protein 2 Novel U 0.0012694483970623978 -0.2508331939140593 1.0 12211 -100043101 Vmn1r168 vomeronasal 1 receptor 168 Novel U 0.00126938980819249 -0.25083380077564776 1.0 12212 -110893 Slc8a3 solute carrier family 8 (sodium/calcium exchanger), member 3 Novel N 0.0012692020913866973 -0.2508357451401513 1.0 12213 -102182 Prmt9 protein arginine methyltransferase 9 Novel N 0.0012691881669344288 -0.2508358893691702 1.0 12214 -68075 Lurap1 leucine rich adaptor protein 1 Novel U 0.0012688550465480878 -0.25083933981918116 1.0 12215 -17385 Mmp11 matrix metallopeptidase 11 Novel U 0.0012687270584817313 -0.2508406655153651 1.0 12216 -66065 Hsd17b14 hydroxysteroid (17-beta) dehydrogenase 14 Novel N 0.0012686451975248993 -0.25084151342846495 1.0 12217 -27045 Nit1 nitrilase 1 Novel U 0.0012685962661051924 -0.25084202025850166 1.0 12218 -73666 Thoc3 THO complex 3 Novel N 0.0012675996207475242 -0.2508523434783535 1.0 12219 -26913 Gprin1 G protein-regulated inducer of neurite outgrowth 1 Novel U 0.0012673726358145552 -0.25085469458082743 1.0 12220 -56191 Tro trophinin Novel U 0.0012671402598817987 -0.2508571015231 1.0 12221 -268469 Zfp652 zinc finger protein 652 Novel U 0.0012669677451199843 -0.25085888842533177 1.0 12222 -12589 Ift81 intraflagellar transport 81 Novel N 0.0012668680594743616 -0.25085992096597215 1.0 12223 -66622 Ubr7 ubiquitin protein ligase E3 component n-recognin 7 (putative) Novel U 0.0012664563786589248 -0.2508641851423251 1.0 12224 -16522 Kcnj6 potassium inwardly-rectifying channel, subfamily J, member 6 Novel U 0.0012657201248207695 -0.2508718112353777 1.0 12225 -381628 Adgrf3 adhesion G protein-coupled receptor F3 Novel N 0.0012654864671779054 -0.2508742314535614 1.0 12226 -70696 Magea9 MAGE family member A9 Novel U 0.0012653579981161858 -0.2508755621318795 1.0 12227 -234374 Ddx49 DEAD box helicase 49 Novel N 0.001264786181467301 -0.2508814849899312 1.0 12228 -54451 Cpsf3 cleavage and polyadenylation specificity factor 3 Novel U 0.001264746067824139 -0.2508819004857284 1.0 12229 -234069 Pcid2 PCI domain containing 2 Novel N 0.0012643104001030586 -0.2508864131176615 1.0 12230 -13000 Csnk2a2 casein kinase 2, alpha prime polypeptide Novel N 0.0012632825336790806 -0.2508970597242918 1.0 12231 -234797 6430548M08Rik RIKEN cDNA 6430548M08 gene Novel U 0.001263112754547922 -0.2508988182909512 1.0 12232 -67498 Kcnv1 potassium channel, subfamily V, member 1 Novel N 0.001263101663472622 -0.2508989331719445 1.0 12233 -69125 Cnot8 CCR4-NOT transcription complex, subunit 8 Novel N 0.0012624347997798823 -0.250905840524152 1.0 12234 -20586 Smarca4 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 4 Novel U 0.001262319562915375 -0.25090703414380633 1.0 12235 -235534 Pxylp1 2-phosphoxylose phosphatase 1 Novel N 0.00126227564513229 -0.2509074890427598 1.0 12236 -74168 Zdhhc16 zinc finger, DHHC domain containing 16 Novel N 0.0012619355060423199 -0.25091101219227224 1.0 12237 -100503879 Gm5901 predicted gene 5901 Novel U 0.0012619350554300037 -0.2509110168596998 1.0 12238 -231842 Amz1 archaelysin family metallopeptidase 1 Novel U 0.0012618800884552765 -0.25091158620581705 1.0 12239 -94061 Mrpl1 mitochondrial ribosomal protein L1 Novel U 0.0012616801852746622 -0.25091365679639044 1.0 12240 -56361 Pus1 pseudouridine synthase 1 Novel U 0.0012615427184880519 -0.2509150806728472 1.0 12241 -56072 Lgals12 lectin, galactose binding, soluble 12 Novel N 0.0012610840810596475 -0.25091983122425365 1.0 12242 -242100 Pglyrp3 peptidoglycan recognition protein 3 Novel U 0.0012609637331452014 -0.2509210777839953 1.0 12243 -66671 Ccnh cyclin H Novel U 0.0012608629550426272 -0.25092212164026884 1.0 12244 -106821 Oard1 O-acyl-ADP-ribose deacylase 1 Novel N 0.001260255612642718 -0.2509284124728818 1.0 12245 -69761 Aoc1l2 amine oxidase copper containing 1-like 2 Novel U 0.0012594723711526544 -0.2509365252624882 1.0 12246 -107751 Drgx dorsal root ganglia homeobox Novel U 0.0012591632785615696 -0.2509397268333858 1.0 12247 -13114 Cyp3a16 cytochrome P450, family 3, subfamily a, polypeptide 16 Novel U 0.0012582197432392135 -0.25094949994123766 1.0 12248 -330390 Mdfic2 MyoD family inhibitor domain containing 2 Novel U 0.001257908571016103 -0.2509527230528954 1.0 12249 -26961 Rpl8 ribosomal protein L8 Novel U 0.0012575008357556883 -0.2509569463613192 1.0 12250 -14735 Gpc4 glypican 4 Novel U 0.001257478410893251 -0.25095717863730715 1.0 12251 -209011 Sirt7 sirtuin 7 Novel U 0.0012573694521694739 -0.25095830722818624 1.0 12252 -16158 Il11ra2 interleukin 11 receptor subunit alpha 2 Novel U 0.0012570265929952801 -0.2509618585522417 1.0 12253 -106205 Zc3h7a zinc finger CCCH type containing 7 A Novel N 0.0012567791099085876 -0.25096442197391805 1.0 12254 -14281 Fos FBJ osteosarcoma oncogene Novel U 0.0012564767727178796 -0.2509675535726006 1.0 12255 -207209 Ccdc154 coiled-coil domain containing 154 Novel U 0.0012560286110631584 -0.2509721956162877 1.0 12256 -73674 Wdr75 WD repeat domain 75 Novel N 0.001255899345943297 -0.25097353454014987 1.0 12257 -83380 Prp2 proline rich protein 2 Novel U 0.0012551775097096808 -0.25098101129612854 1.0 12258 -328417 Parp4 poly (ADP-ribose) polymerase family, member 4 Novel N 0.0012550115776837232 -0.2509827300145987 1.0 12259 -14794 Spsb2 splA/ryanodine receptor domain and SOCS box containing 2 Novel U 0.0012548722863655831 -0.25098417278949303 1.0 12260 -114889 Vsx1 visual system homeobox 1 Novel U 0.0012548414325231259 -0.25098449237257897 1.0 12261 -237847 Rtn4rl1 reticulon 4 receptor-like 1 Novel U 0.0012540603189577786 -0.2509925831212111 1.0 12262 -209683 Ttc28 tetratricopeptide repeat domain 28 Novel N 0.0012540230024370446 -0.2509929696445061 1.0 12263 -381970 Scgb2b2 secretoglobin, family 2B, member 2 Novel U 0.0012538539658996334 -0.25099472051940386 1.0 12264 -108168395 Gm45871 predicted gene 45871 Novel U 0.0012538445796523169 -0.250994817741845 1.0 12265 -12606 Cebpa CCAAT/enhancer binding protein alpha Novel U 0.0012531798183805642 -0.251001703317245 1.0 12266 -103988 Gck glucokinase Novel U 0.0012524041561626086 -0.25100973760100004 1.0 12267 -66868 Mfsd1 major facilitator superfamily domain containing 1 Novel U 0.0012520371934041335 -0.25101353858918907 1.0 12268 -12537 Cdk11b cyclin dependent kinase 11B Novel U 0.0012519251992531063 -0.25101469862092385 1.0 12269 -19668 Rbpjl recombination signal binding protein for immunoglobulin kappa J region-like Novel N 0.0012516602853357092 -0.2510174425905716 1.0 12270 -68566 Caly calcyon neuron-specific vesicular protein Novel U 0.001251562564233154 -0.2510184547825395 1.0 12271 -66477 Atp5mk ATP synthase membrane subunit k Novel U 0.0012511640419746804 -0.25102258266299204 1.0 12272 -70396 Asnsd1 asparagine synthetase domain containing 1 Novel U 0.0012508065781123387 -0.25102628526192716 1.0 12273 -104394 E2f4 E2F transcription factor 4 Novel N 0.0012505808606167392 -0.2510286232363266 1.0 12274 -319655 Podxl2 podocalyxin-like 2 Novel U 0.001250116719274792 -0.2510334307970886 1.0 12275 -100041480 Myef2l myelin expression factor 2 like Novel U 0.0012491568081284365 -0.2510433735251872 1.0 12276 -100862245 LOC100862245 PRAME family member 8-like Novel U 0.0012489305829672798 -0.25104571675796966 1.0 12277 -20745 Spock1 sparc/osteonectin, cwcv and kazal-like domains proteoglycan 1 Novel U 0.001248495317473546 -0.2510502252236452 1.0 12278 -71829 Ddi1 DNA-damage inducible 1 Novel U 0.0012481568555494553 -0.2510537310011286 1.0 12279 -67015 Ccdc91 coiled-coil domain containing 91 Novel U 0.0012477075096388826 -0.25105838531129887 1.0 12280 -67996 Srsf6 serine and arginine-rich splicing factor 6 Novel N 0.0012476438603591202 -0.2510590445884463 1.0 12281 -54420 Cldn8 claudin 8 Novel U 0.0012475513330090164 -0.251060002983697 1.0 12282 -319187 H2bc15 H2B clustered histone 15 Novel U 0.001247365394698338 -0.2510619289266066 1.0 12283 -233187 Lim2 lens intrinsic membrane protein 2 Novel N 0.0012472054273211521 -0.25106358586344085 1.0 12284 -18663 Pgk2 phosphoglycerate kinase 2 Novel N 0.0012469842389585006 -0.25106587692523 1.0 12285 -100041712 LOC100041712 PRAME family member 8-like Novel U 0.001246962999285774 -0.25106609692506193 1.0 12286 -16785 Rpsa ribosomal protein SA Novel U 0.0012462001641625124 -0.25107399834619176 1.0 12287 -66204 Acyp1 acylphosphatase 1 Novel U 0.0012461921795013117 -0.25107408105105 1.0 12288 -319177 H2bc1 H2B clustered histone 1 Novel N 0.0012461573643021986 -0.25107444166573795 1.0 12289 -14071 F9 coagulation factor IX Novel U 0.0012461249739260602 -0.25107477716418924 1.0 12290 -110135 Fgb fibrinogen beta chain Novel U 0.0012456536483191473 -0.2510796591393316 1.0 12291 -667273 Vmn1r115 vomeronasal 1 receptor 115 Novel U 0.0012455698099291903 -0.25108052753461874 1.0 12292 -319945 Flad1 flavin adenine dinucleotide synthetase 1 Novel N 0.0012454421075166337 -0.25108185027201 1.0 12293 -77805 Esco1 establishment of sister chromatid cohesion N-acetyltransferase 1 Novel U 0.0012453491796772828 -0.2510828128155152 1.0 12294 -100043326 Scgb2b3 secretoglobin, family 2B, member 3 Novel U 0.001245293380154677 -0.25108339078513603 1.0 12295 -74103 Nebl nebulette Novel U 0.0012451400191050203 -0.2510849792938469 1.0 12296 -56710 Brinp1 bone morphogenic protein/retinoic acid inducible neural specific 1 Novel N 0.001244795100492896 -0.2510885519494927 1.0 12297 -73542 Tssk5 testis-specific serine kinase 5 Novel U 0.0012447382034443389 -0.25108914128725124 1.0 12298 -74116 Pi16 peptidase inhibitor 16 Novel U 0.0012445257219734513 -0.2510913421633417 1.0 12299 -76719 Kansl1 KAT8 regulatory NSL complex subunit 1 Novel U 0.0012443414566975944 -0.25109325077701167 1.0 12300 -404289 Vmn1r181 vomeronasal 1 receptor 181 Novel U 0.0012443322920737872 -0.2510933457038838 1.0 12301 -106722 Mpig6b megakaryocyte and platelet inhibitory receptor G6b Novel N 0.0012440094744171582 -0.2510966894385591 1.0 12302 -66142 Cox7b cytochrome c oxidase subunit 7B Novel U 0.001243795782845179 -0.25109890284883696 1.0 12303 -78248 Armcx1 armadillo repeat containing, X-linked 1 Novel U 0.0012435832999391611 -0.2511011037397925 1.0 12304 -171233 Vmn1r235 vomeronasal 1 receptor 235 Novel U 0.0012434191306015805 -0.2511028042003944 1.0 12305 -72157 Pgm1 phosphoglucomutase 1 Novel U 0.0012432676315009006 -0.25110437342309894 1.0 12306 -68038 Chid1 chitinase domain containing 1 Novel N 0.0012431816639659498 -0.25110526387199994 1.0 12307 -108689 Stn1 STN1, CST complex subunit Novel U 0.0012427118892722724 -0.25111012978283404 1.0 12308 -268890 Lsamp limbic system-associated membrane protein Novel N 0.0012423175288877166 -0.2511142145547334 1.0 12309 -66895 Pxdc1 PX domain containing 1 Novel U 0.0012420342496224429 -0.25111714875205077 1.0 12310 -27886 Ess2 ess-2 splicing factor Novel U 0.001241855785614248 -0.251118997276381 1.0 12311 -11837 Rplp0 ribosomal protein lateral stalk subunit P0 Novel U 0.0012417219502194683 -0.2511203835390005 1.0 12312 -50540 Igbp1b immunoglobulin (CD79A) binding protein 1b Novel U 0.001241328869390492 -0.2511244550573052 1.0 12313 -56809 Gmeb1 glucocorticoid modulatory element binding protein 1 Novel U 0.0012412549735455662 -0.2511252204680377 1.0 12314 -18048 Klk1b4 kallikrein 1-related pepidase b4 Novel U 0.0012410061001395113 -0.2511277982905964 1.0 12315 -67097 Rps10 ribosomal protein S10 Novel U 0.0012407806401903319 -0.2511301335973384 1.0 12316 -435953 Vmn1r120 vomeronasal 1 receptor 120 Novel U 0.001240370124874808 -0.2511343857014816 1.0 12317 -15168 Hcn3 hyperpolarization-activated, cyclic nucleotide-gated K+ 3 Novel N 0.001240357285182298 -0.2511345186945945 1.0 12318 -17347 Mknk2 MAP kinase-interacting serine/threonine kinase 2 Novel N 0.0012402467811303127 -0.2511356632919324 1.0 12319 -100861668 Potefam3b POTE ankyrin domain family member 3B Novel U 0.001239766742266677 -0.25114063551870147 1.0 12320 -23794 Adamts5 ADAM metallopeptidase with thrombospondin type 1 motif 5 Novel U 0.0012395814192729395 -0.25114255508817845 1.0 12321 -54383 Phc2 polyhomeotic 2 Novel U 0.0012391337870736657 -0.25114719164778343 1.0 12322 -270627 Taf1 TATA-box binding protein associated factor 1 Novel U 0.0012389100741909487 -0.25114950885846843 1.0 12323 -209558 Enpp3 ectonucleotide pyrophosphatase/phosphodiesterase 3 Novel N 0.0012386035625156996 -0.25115268369632465 1.0 12324 -77767 Ermn ermin, ERM-like protein Novel U 0.0012381840525158214 -0.2511570289671127 1.0 12325 -13077 Cyp1a2 cytochrome P450, family 1, subfamily a, polypeptide 2 Novel N 0.001238022678093484 -0.2511587004780744 1.0 12326 -77036 1700109H08Rik RIKEN cDNA 1700109H08 gene Novel U 0.0012380219988454612 -0.2511587075137031 1.0 12327 -56055 Gtpbp2 GTP binding protein 2 Novel U 0.001237907248570371 -0.25115989609328027 1.0 12328 -171277 Vmn1r211 vomeronasal 1 receptor 211 Novel U 0.001237558640911012 -0.25116350695995604 1.0 12329 -18648 Pgam1 phosphoglycerate mutase 1 Novel N 0.0012373998737009047 -0.25116515146549917 1.0 12330 -319555 Nwd1 NACHT and WD repeat domain containing 1 Novel U 0.0012371604875118342 -0.2511676310197761 1.0 12331 -100042784 Prdm11 PR domain containing 11 Novel N 0.0012370705163987233 -0.25116856293760814 1.0 12332 -103850 Nt5m 5',3'-nucleotidase, mitochondrial Novel N 0.0012366872626364152 -0.2511725326674793 1.0 12333 -66300 Inafm1 InaF motif containing 1 Novel U 0.001236327501621213 -0.25117625906024826 1.0 12334 -107526 Gimap4 GTPase, IMAP family member 4 Novel U 0.0012361590261262536 -0.2511780041238867 1.0 12335 -67945 Rpl41 ribosomal protein L41 Novel U 0.0012360415902353571 -0.2511792205209841 1.0 12336 -69453 Prss56 serine protease 56 Novel N 0.0012353787213743646 -0.25118608649485563 1.0 12337 -71886 2310002L09Rik RIKEN cDNA 2310002L09 gene Novel U 0.0012353690178484823 -0.25118618700365775 1.0 12338 -72960 Top1mt DNA topoisomerase 1, mitochondrial Novel U 0.001235331974168902 -0.25118657070087314 1.0 12339 -14373 G0s2 G0/G1 switch gene 2 Novel U 0.0012351646721257628 -0.2511883036099362 1.0 12340 -72962 Tymp thymidine phosphorylase Novel U 0.0012350589933649815 -0.2511893982270664 1.0 12341 -70383 Cox10 heme A:farnesyltransferase cytochrome c oxidase assembly factor 10 Novel N 0.0012350312932988801 -0.2511896851434404 1.0 12342 -101513 Mob2 MOB kinase activator 2 Novel U 0.001234891510103759 -0.25119113301318036 1.0 12343 -20203 S100b S100 protein, beta polypeptide, neural Novel N 0.001234684295185592 -0.25119327933849095 1.0 12344 -14626 Gk2 glycerol kinase 2 Novel U 0.0012345137855841568 -0.2511950454713374 1.0 12345 -100039030 Gm2012 predicted gene 2012 Novel U 0.0012340684600034844 -0.2511996581390627 1.0 12346 -243822 Garin5b golgi associated RAB2 interactor family member 5B Novel U 0.001233539838079208 -0.25120513358757685 1.0 12347 -18405 Orm1 orosomucoid 1 Novel U 0.0012332585131562101 -0.2512080475418812 1.0 12348 -66155 Ufc1 ubiquitin-fold modifier conjugating enzyme 1 Novel U 0.0012332344066497396 -0.2512082972362828 1.0 12349 -13168 Dbil5 diazepam binding inhibitor-like 5 Novel U 0.001232992591017447 -0.2512108019546528 1.0 12350 -238384 Slc24a4 solute carrier family 24 (sodium/potassium/calcium exchanger), member 4 Novel N 0.001232651310277079 -0.25121433692934253 1.0 12351 -104885 Tmem179 transmembrane protein 179 Novel U 0.0012326234957314214 -0.2512146250314921 1.0 12352 -27386 Npas3 neuronal PAS domain protein 3 Novel U 0.0012324429952056007 -0.2512164946500049 1.0 12353 -75731 Idnk idnK gluconokinase homolog (E. coli) Novel U 0.001232339160443462 -0.25121757016705776 1.0 12354 -69983 Sis sucrase isomaltase Novel U 0.0012322122502485301 -0.2512188846986849 1.0 12355 -63857 Bco1 beta-carotene oxygenase 1 Novel N 0.001231650143887273 -0.25122470697789656 1.0 12356 -18585 Pde9a phosphodiesterase 9A Novel N 0.0012312277464761319 -0.2512290821563956 1.0 12357 -244646 Pkd1l3 polycystic kidney disease 1 like 3 Novel U 0.001231137727602165 -0.2512300145689329 1.0 12358 -104871 Spata7 spermatogenesis associated 7 Novel U 0.0012310238151683305 -0.25123119447017794 1.0 12359 -382131 Gm20737 predicted gene, 20737 Novel U 0.0012306829216989768 -0.2512347254335272 1.0 12360 -230752 Eva1b eva-1 homolog B Novel U 0.0012303421507104178 -0.25123825512822445 1.0 12361 -69562 Cdk13 cyclin dependent kinase 13 Novel U 0.0012298917146118774 -0.25124292073052584 1.0 12362 -243653 Clec1a C-type lectin domain family 1, member a Novel N 0.0012298345332761235 -0.25124351301292186 1.0 12363 -51869 Rif1 replication timing regulatory factor 1 Novel U 0.0012291997035756327 -0.25125008855809067 1.0 12364 -100689 Spon2 spondin 2, extracellular matrix protein Novel U 0.001228622600344484 -0.2512560661743876 1.0 12365 -215436 Slc35e3 solute carrier family 35, member E3 Novel U 0.0012281532082309007 -0.2512609281224697 1.0 12366 -171229 Vmn1r227 vomeronasal 1 receptor 227 Novel U 0.0012278413649180135 -0.2512641581852533 1.0 12367 -546944 Vmn1r170 vomeronasal 1 receptor 170 Novel U 0.0012275863574081856 -0.2512667995446572 1.0 12368 -207728 Pde2a phosphodiesterase 2A, cGMP-stimulated Novel U 0.0012275419560524208 -0.25126725945244055 1.0 12369 -229320 Clrn1 clarin 1 Novel U 0.0012274672656872425 -0.2512680330927878 1.0 12370 -18125 Nos1 nitric oxide synthase 1, neuronal Novel U 0.0012272868563945678 -0.25126990176631064 1.0 12371 -13909 Ces3b carboxylesterase 3B Novel U 0.0012265322269604704 -0.25127771819318195 1.0 12372 -52023 Pibf1 progesterone immunomodulatory binding factor 1 Novel U 0.0012257560271082078 -0.25128575804573544 1.0 12373 -382038 Urb2 URB2 ribosome biogenesis 2 homolog (S. cerevisiae) Novel U 0.0012252949707491562 -0.2512905336523461 1.0 12374 -333329 Cngb1 cyclic nucleotide gated channel beta 1 Novel N 0.0012244833041414266 -0.2512989408683869 1.0 12375 -72978 Cnih3 cornichon family AMPA receptor auxiliary protein 3 Novel U 0.001223951313177568 -0.25130445121330225 1.0 12376 -105352 Dusp22 dual specificity phosphatase 22 Novel U 0.0012237767755401531 -0.251306259068413 1.0 12377 -18549 Pcsk2 proprotein convertase subtilisin/kexin type 2 Novel N 0.001222734357585586 -0.25131705639931873 1.0 12378 -14377 G6pc1 glucose-6-phosphatase catalytic subunit 1 Novel U 0.0012225661556153117 -0.2513187986297975 1.0 12379 -67331 Atp8b3 ATPase, class I, type 8B, member 3 Novel U 0.0012224612688934117 -0.251319885043015 1.0 12380 -210808 Lacc1 laccase domain containing 1 Novel U 0.0012222421784046078 -0.2513221543750958 1.0 12381 -546943 Vmn1r176 vomeronasal 1 receptor 176 Novel U 0.0012219874780218334 -0.25132479255328777 1.0 12382 -226856 Lpgat1 lysophosphatidylglycerol acyltransferase 1 Novel U 0.0012217022539637223 -0.25132774689470544 1.0 12383 -16890 Lipe lipase, hormone sensitive Novel N 0.001221547773530622 -0.25132934699795323 1.0 12384 -217026 Heatr6 HEAT repeat containing 6 Novel U 0.0012210866052654 -0.2513341237636843 1.0 12385 -12684 Cideb cell death-inducing DNA fragmentation factor, alpha subunit-like effector B Novel U 0.001220878399734916 -0.25133628034972466 1.0 12386 -243853 Fkrp fukutin related protein Novel U 0.00122042258408053 -0.25134100167328866 1.0 12387 -93670 Tac4 tachykinin 4 Novel U 0.0012195388820258936 -0.2513501550301205 1.0 12388 -100039614 Gm20809 predicted gene, 20809 Novel U 0.0012192725692331285 -0.25135291348927336 1.0 12389 -66660 Sltm SAFB-like, transcription modulator Novel U 0.001218978812036847 -0.2513559562166557 1.0 12390 -76905 Lrg1 leucine-rich alpha-2-glycoprotein 1 Novel U 0.0012189271948786114 -0.25135649086548384 1.0 12391 -380684 Nefh neurofilament, heavy polypeptide Novel U 0.001218919286195757 -0.2513565727833609 1.0 12392 -66310 Dpy30 dpy-30, histone methyltransferase complex regulatory subunit Novel U 0.0012187983325779507 -0.25135782561695796 1.0 12393 -18538 Pcna proliferating cell nuclear antigen Novel U 0.0012187400107393216 -0.25135842971264527 1.0 12394 -13119 Cyp4a14 cytochrome P450, family 4, subfamily a, polypeptide 14 Novel U 0.0012185944951784865 -0.2513599369580409 1.0 12395 -142688 Asb13 ankyrin repeat and SOCS box-containing 13 Novel U 0.0012185785219759823 -0.2513601024079473 1.0 12396 -404284 Vmn1r59 vomeronasal 1 receptor 59 Novel U 0.0012181996349777604 -0.25136402690701964 1.0 12397 -100043043 Vmn1r253 vomeronasal 1 receptor 253 Novel U 0.0012179694032706033 -0.25136641163947393 1.0 12398 -268420 Alkbh5 alkB homolog 5, RNA demethylase Novel N 0.0012172687920687522 -0.25137366854727133 1.0 12399 -11984 Atp6v0c ATPase, H+ transporting, lysosomal V0 subunit C Novel U 0.0012171607200371125 -0.2513747879538224 1.0 12400 -230259 E130308A19Rik RIKEN cDNA E130308A19 gene Novel U 0.001217065186685331 -0.2513757774851397 1.0 12401 -16616 Klk1b21 kallikrein 1-related peptidase b21 Novel U 0.0012161950026238718 -0.25138479082304244 1.0 12402 -20516 Slc20a2 solute carrier family 20, member 2 Novel N 0.0012158116178758935 -0.2513887619096589 1.0 12403 -73863 Spmip11 sperm microtubule inner protein 11 Novel U 0.0012153019934096003 -0.2513940405831278 1.0 12404 -110208 Pgd phosphogluconate dehydrogenase Novel N 0.0012147758074877964 -0.25139949079960844 1.0 12405 -67308 Mrpl46 mitochondrial ribosomal protein L46 Novel U 0.0012142868474586713 -0.2514045554315164 1.0 12406 -12530 Cdc25a cell division cycle 25A Novel U 0.00121387398062669 -0.2514088318925898 1.0 12407 -20823 Ssb small RNA binding exonuclease protection factor La Novel U 0.0012137196326092298 -0.2514104306242807 1.0 12408 -14805 Grik1 glutamate receptor, ionotropic, kainate 1 Novel N 0.0012136621527572256 -0.25141102599869825 1.0 12409 -21887 Tle3 transducin-like enhancer of split 3 Novel N 0.0012134572076930416 -0.25141314881293586 1.0 12410 -244219 Zfp668 zinc finger protein 668 Novel U 0.0012134175873019198 -0.25141355919964464 1.0 12411 -225912 Cyb561a3 cytochrome b561 family, member A3 Novel U 0.0012126815765338833 -0.25142118277498493 1.0 12412 -225363 Etf1 eukaryotic translation termination factor 1 Novel U 0.0012123114519854334 -0.25142501651289056 1.0 12413 -15547 Trmt2a TRM2 tRNA methyltransferase 2A Novel U 0.001211768512601891 -0.2514306402611771 1.0 12414 -214253 Etnk2 ethanolamine kinase 2 Novel U 0.0012114938943614353 -0.2514334847478842 1.0 12415 -238722 Zfp72 zinc finger protein 72 Novel U 0.001211064580243466 -0.2514379315694052 1.0 12416 -20733 Spint2 serine protease inhibitor, Kunitz type 2 Novel U 0.0012107646823176653 -0.251441037902262 1.0 12417 -272396 Tars3 threonyl-tRNA synthetase 3 Novel U 0.001210626566822697 -0.2514424684980186 1.0 12418 -353502 Hcfc1r1 host cell factor C1 regulator 1 (XPO1-dependent) Novel U 0.0012096650226561406 -0.2514524281408867 1.0 12419 -235606 Apeh acylpeptide hydrolase Novel U 0.001209537122271461 -0.25145375292886674 1.0 12420 -12958 Cryba2 crystallin, beta A2 Novel N 0.001209420988369258 -0.25145495584000804 1.0 12421 -17190 Mbd1 methyl-CpG binding domain protein 1 Novel N 0.0012093338237481371 -0.25145585868828824 1.0 12422 -211151 Churc1 churchill domain containing 1 Novel U 0.0012086448556983527 -0.2514629949966993 1.0 12423 -212439 AA986860 expressed sequence AA986860 Novel U 0.0012075655482469228 -0.25147417442780085 1.0 12424 -434701 Vmn2r113 vomeronasal 2, receptor 113 Novel U 0.001207560077535381 -0.2514742310932512 1.0 12425 -329831 Cimip2b ciliary microtubule inner protein 2B Novel U 0.0012072562211111397 -0.25147737842810475 1.0 12426 -66473 Ctrb1 chymotrypsinogen B1 Novel U 0.001207073105258135 -0.25147927513609053 1.0 12427 -71973 Rbpms2 RNA binding protein with multiple splicing 2 Novel N 0.001207035232392066 -0.2514796674219923 1.0 12428 -382543 Ankfn1 ankyrin-repeat and fibronectin type III domain containing 1 Novel U 0.0012067980883760916 -0.25148212375191403 1.0 12429 -19205 Ptbp1 polypyrimidine tract binding protein 1 Novel U 0.001206684880729478 -0.2514832963529962 1.0 12430 -18111 Nnat neuronatin Novel U 0.0012064140207512124 -0.25148610191174703 1.0 12431 -435391 Dusp29 dual specificity phosphatase 29 Novel N 0.0012063602758743384 -0.25148665859941494 1.0 12432 -68463 Mrpl14 mitochondrial ribosomal protein L14 Novel U 0.0012062918722209207 -0.25148736712220837 1.0 12433 -668119 Cwc22rt6 CWC22 spliceosome-associated protein, retrotransposed 6 Novel U 0.0012055015333445457 -0.25149555342630886 1.0 12434 -52377 Rcn3 reticulocalbin 3, EF-hand calcium binding domain Novel U 0.001205191181090612 -0.25149876804475285 1.0 12435 -387351 Tas2r124 taste receptor, type 2, member 124 Novel U 0.0012050283357545283 -0.2515004547913907 1.0 12436 -12797 Cnn1 calponin 1 Novel N 0.0012047395610638907 -0.2515034459101434 1.0 12437 -330460 Tmem150b transmembrane protein 150B Novel U 0.00120467169590952 -0.25150414885518146 1.0 12438 -668339 Fam236f family with sequence similarity 236, member F Novel U 0.0012042233291239956 -0.2515087930236066 1.0 12439 -81016 Vmn1r62 vomeronasal 1 receptor 62 Novel U 0.0012036693693588834 -0.2515145309206432 1.0 12440 -102635315 Gm32687 predicted gene, 32687 Novel U 0.0012034031456310637 -0.25151728845726434 1.0 12441 -52064 Coq5 coenzyme Q5 methyltransferase Novel N 0.001202846250500029 -0.25152305675872466 1.0 12442 -207777 Tspoap1 TSPO associated protein 1 Novel U 0.0012028383266245834 -0.25152313883396604 1.0 12443 -13204 Dhx15 DEAH-box helicase 15 Novel N 0.0012028279605955008 -0.25152324620495453 1.0 12444 -67664 Rnf125 ring finger protein 125 Novel U 0.0012016834456030736 -0.25153510105362215 1.0 12445 -17181 Matn2 matrilin 2 Novel U 0.0012016799847285877 -0.2515351369012463 1.0 12446 -69156 Comtd1 catechol-O-methyltransferase domain containing 1 Novel U 0.001201052724382717 -0.2515416340432888 1.0 12447 -387345 Tas2r113 taste receptor, type 2, member 113 Novel U 0.0012009735053313674 -0.25154245459161845 1.0 12448 -239647 Pced1b PC-esterase domain containing 1B Novel U 0.001200815437665281 -0.2515440918513076 1.0 12449 -100042786 Ubl5b ubiquitin-like 5B Novel U 0.001200434035944563 -0.2515480423977929 1.0 12450 -58810 Akr1a1 aldo-keto reductase family 1, member A1 Novel N 0.001200070206269336 -0.2515518109336086 1.0 12451 -20442 St3gal1 ST3 beta-galactoside alpha-2,3-sialyltransferase 1 Novel U 0.0012000627739604177 -0.25155188791722005 1.0 12452 -244723 Olfm2 olfactomedin 2 Novel U 0.0011999317674792251 -0.2515532448780457 1.0 12453 -17293 Mesp2 mesoderm posterior 2 Novel U 0.001199825090735143 -0.25155434983225405 1.0 12454 -67983 Pdzd9 PDZ domain containing 9 Novel U 0.001199796092933218 -0.2515546501905332 1.0 12455 -20230 Satb1 special AT-rich sequence binding protein 1 Novel U 0.0011992928197785196 -0.2515598630773253 1.0 12456 -12814 Col11a1 collagen, type XI, alpha 1 Novel U 0.0011990018950145777 -0.2515628764664666 1.0 12457 -100039139 Ccdc152 coiled-coil domain containing 152 Novel U 0.0011989442415263714 -0.2515634736394021 1.0 12458 -67418 Ppil4 peptidylprolyl isomerase (cyclophilin)-like 4 Novel U 0.001198284582231887 -0.25157030636868927 1.0 12459 -15107 Hadh hydroxyacyl-Coenzyme A dehydrogenase Novel U 0.0011979574477954764 -0.25157369481642766 1.0 12460 -20254 Scg2 secretogranin II Novel U 0.0011977789242291253 -0.2515755439576593 1.0 12461 -331535 Serpina7 serine (or cysteine) peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 7 Novel N 0.001197509555216847 -0.2515783340730334 1.0 12462 -21957 Tnnt3 troponin T3, skeletal, fast Novel U 0.001197506609098885 -0.2515783645888265 1.0 12463 -102635744 Gm28729 predicted gene 28729 Novel U 0.0011970196971568495 -0.2515834080067157 1.0 12464 -76522 Lsm8 LSM8 homolog, U6 small nuclear RNA associated Novel N 0.00119697531179724 -0.2515838677488114 1.0 12465 -78330 Ndufv3 NADH:ubiquinone oxidoreductase core subunit V3 Novel U 0.0011969413006376044 -0.25158422003528486 1.0 12466 -100041550 Gm20877 predicted gene, 20877 Novel U 0.0011969192438239515 -0.2515844484990356 1.0 12467 -75317 Parpbp PARP1 binding protein Novel N 0.0011960338883263478 -0.2515936189821753 1.0 12468 -230793 Ahdc1 AT hook, DNA binding motif, containing 1 Novel U 0.0011957214761994731 -0.25159685493671546 1.0 12469 -11740 Slc25a5 solute carrier family 25 (mitochondrial carrier, adenine nucleotide translocator), member 5 Novel N 0.0011955977124455904 -0.2515981368776097 1.0 12470 -114664 Hsd17b11 hydroxysteroid (17-beta) dehydrogenase 11 Novel N 0.001195372506305326 -0.25160046955540727 1.0 12471 -69487 Ndufaf5 NADH:ubiquinone oxidoreductase complex assembly factor 5 Novel N 0.0011952695685897765 -0.25160153578088107 1.0 12472 -192734 Lrrc75b leucine rich repeat containing 75B Novel U 0.001194855241609607 -0.2516058273661214 1.0 12473 -93871 Brwd1 bromodomain and WD repeat domain containing 1 Novel U 0.0011947190101808402 -0.2516072384467822 1.0 12474 -17178 Fxyd3 FXYD domain-containing ion transport regulator 3 Novel N 0.00119447015475227 -0.2516098160831306 1.0 12475 -27366 Txnl4a thioredoxin-like 4A Novel U 0.00119416440265515 -0.25161298305330154 1.0 12476 -237943 Gpatch8 G patch domain containing 8 Novel U 0.0011936812980620607 -0.25161798703479554 1.0 12477 -68865 Arv1 ARV1 homolog, fatty acid homeostasis modulator Novel U 0.0011933036819960386 -0.2516218983695939 1.0 12478 -22185 U2af2 U2 small nuclear ribonucleoprotein auxiliary factor (U2AF) 2 Novel U 0.0011932322389358436 -0.2516226383744629 1.0 12479 -12861 Cox6a1 cytochrome c oxidase subunit 6A1 Novel N 0.0011930373484235278 -0.2516246570439828 1.0 12480 -12839 Col9a1 collagen, type IX, alpha 1 Novel U 0.001192891604217796 -0.2516261666576747 1.0 12481 -21372 Tbl1x transducin (beta)-like 1 X-linked Novel N 0.0011925704778512794 -0.2516294928740226 1.0 12482 -243967 Ntn5 netrin 5 Novel U 0.0011919622814815943 -0.2516357925520264 1.0 12483 -50501 Prok2 prokineticin 2 Novel U 0.0011918931671134904 -0.2516365084363792 1.0 12484 -13853 Epm2a epilepsy, progressive myoclonic epilepsy, type 2 gene alpha Novel U 0.0011915515680783603 -0.2516400467079556 1.0 12485 -12831 Col5a1 collagen, type V, alpha 1 Novel U 0.0011914116524107704 -0.25164149594984103 1.0 12486 -243499 Lrrtm4 leucine rich repeat transmembrane neuronal 4 Novel U 0.0011910256742495272 -0.25164549389894686 1.0 12487 -21647 Dynlt2a1 dynein light chain Tctex-type 2A1 Novel U 0.0011908858299099596 -0.25164694240201896 1.0 12488 -77519 Zfp266 zinc finger protein 266 Novel U 0.0011903561315038656 -0.25165242900069634 1.0 12489 -21953 Tnni2 troponin I, skeletal, fast 2 Novel U 0.0011902131229691742 -0.2516539102783975 1.0 12490 -320640 Skint4 selection and upkeep of intraepithelial T cells 4 Novel U 0.0011899200204044955 -0.25165694622512724 1.0 12491 -27998 Exosc5 exosome component 5 Novel U 0.0011897269663322272 -0.2516589458728615 1.0 12492 -320292 Rasgef1b RasGEF domain family, member 1B Novel U 0.001189630549164623 -0.251659944558714 1.0 12493 -18241 Gpr143 G protein-coupled receptor 143 Novel U 0.0011892517779878982 -0.25166386785811107 1.0 12494 -230582 Cyb5rl cytochrome b5 reductase-like Novel N 0.0011891719632038864 -0.2516646945770201 1.0 12495 -109054 Pfdn4 prefoldin 4 Novel U 0.0011889886818913582 -0.25166659299883026 1.0 12496 -667485 Vmn1r254 vomeronasal 1 receptor 254 Novel U 0.0011889787769265255 -0.25166669559413035 1.0 12497 -16434 Itpa inosine triphosphatase (nucleoside triphosphate pyrophosphatase) Novel N 0.0011884984692639212 -0.25167167060511036 1.0 12498 -16664 Krt14 keratin 14 Novel U 0.0011875864057451664 -0.2516811177290551 1.0 12499 -67942 Atp5mc2 ATP synthase membrane subunit c locus 2 Novel U 0.0011875716156970837 -0.251681270923887 1.0 12500 -67911 Zfp169 zinc finger protein 169 Novel U 0.001187114965772817 -0.251686000888791 1.0 12501 -236792 Mmgt1 membrane magnesium transporter 1 Novel U 0.0011870281883938777 -0.2516868997260294 1.0 12502 -59014 Rrs1 ribosome biogenesis regulator 1 Novel U 0.001186857168695379 -0.2516886711424445 1.0 12503 -68852 Lrrn4cl LRRN4 C-terminal like Novel U 0.0011860318242796365 -0.25169722003277095 1.0 12504 -22526 Gm4836 predicted gene 4836 Novel U 0.0011858955803464581 -0.25169863124295205 1.0 12505 -620592 Nalf2 NALCN channel auxiliary factor 2 Novel U 0.0011852762019213267 -0.25170504674431865 1.0 12506 -21419 Tfap2b transcription factor AP-2 beta Novel U 0.0011846594306118554 -0.2517114352412668 1.0 12507 -414872 Zyg11b zyg-ll family member B, cell cycle regulator Novel U 0.0011845806338950657 -0.25171225141506903 1.0 12508 -75751 Ipo4 importin 4 Novel U 0.001184502975687572 -0.2517130557962294 1.0 12509 -237029 Dmtf1l cyclin D binding myb like transcription factor 1 like Novel U 0.00118430642637813 -0.2517150916475154 1.0 12510 -72567 Bclaf1 BCL2-associated transcription factor 1 Novel N 0.0011842675402663368 -0.25171549442858304 1.0 12511 -71242 Spata24 spermatogenesis associated 24 Novel U 0.001183856184054509 -0.25171975524270257 1.0 12512 -70428 Polr3b polymerase (RNA) III (DNA directed) polypeptide B Novel U 0.0011831279493028468 -0.25172729827432083 1.0 12513 -16598 Klf2 Kruppel-like transcription factor 2 (lung) Novel U 0.0011830924322818567 -0.2517276661584567 1.0 12514 -70551 Tmtc4 transmembrane and tetratricopeptide repeat containing 4 Novel N 0.00118297094111215 -0.25172892455999873 1.0 12515 -56095 Ftsj3 FtsJ RNA 2'-O-methyltransferase 3 Novel N 0.0011827114397963737 -0.2517316124660969 1.0 12516 -20856 Stc2 stanniocalcin 2 Novel N 0.0011826159329832962 -0.2517326017225271 1.0 12517 -27372 Prl3c1 prolactin family 3, subfamily c, member 1 Novel U 0.001182470695310801 -0.25173410608956437 1.0 12518 -228788 Ccm2l cerebral cavernous malformation 2-like Novel U 0.0011820018145541243 -0.2517389627410284 1.0 12519 -68614 Letmd1 LETM1 domain containing 1 Novel U 0.001181881682663449 -0.2517402070632029 1.0 12520 -231633 Tmem119 transmembrane protein 119 Novel N 0.0011817329766133638 -0.25174174735558125 1.0 12521 -12557 Cdh17 cadherin 17 Novel U 0.0011813711527172892 -0.25174549511560246 1.0 12522 -67988 Tmx3 thioredoxin-related transmembrane protein 3 Novel U 0.0011807559954087297 -0.2517518668947823 1.0 12523 -332110 Mapk15 mitogen-activated protein kinase 15 Novel U 0.0011806675793036873 -0.2517527827058918 1.0 12524 -71828 Gtf2a1l general transcription factor IIA, 1-like Novel N 0.00118045370762588 -0.2517549979816999 1.0 12525 -227620 Uap1l1 UDP-N-acteylglucosamine pyrophosphorylase 1-like 1 Novel U 0.0011804197616509227 -0.2517553495929926 1.0 12526 -21974 Top2b topoisomerase (DNA) II beta Novel U 0.0011801735119620635 -0.25175790023917477 1.0 12527 -66866 Nhlrc2 NHL repeat containing 2 Novel U 0.0011800098676359278 -0.25175959526172537 1.0 12528 -278676 AY358078 cDNA sequence AY358078 Novel U 0.0011798329342122744 -0.25176142793231115 1.0 12529 -22773 Zic3 zinc finger protein of the cerebellum 3 Novel U 0.0011797999459816934 -0.2517617696233191 1.0 12530 -28113 Tinf2 Terf1 (TRF1)-interacting nuclear factor 2 Novel U 0.0011795186766122988 -0.25176468300220106 1.0 12531 -72373 Psca prostate stem cell antigen Novel U 0.001179196786032361 -0.2517680171342465 1.0 12532 -67026 Thap4 THAP domain containing 4 Novel N 0.0011791951098293642 -0.25176803449630203 1.0 12533 -22044 Trh thyrotropin releasing hormone Novel N 0.0011784922586094997 -0.2517753146061324 1.0 12534 -104183 Chil4 chitinase-like 4 Novel U 0.001178420997759052 -0.25177605272367876 1.0 12535 -13972 Gnb1l guanine nucleotide binding protein (G protein), beta polypeptide 1-like Novel N 0.0011779078074021332 -0.2517813683325255 1.0 12536 -241431 Xirp2 xin actin-binding repeat containing 2 Novel U 0.0011762197120986698 -0.2517988535681856 1.0 12537 -108168638 Gm20830 predicted gene, 20830 Novel U 0.0011751145592511702 -0.25181030070505006 1.0 12538 -15374 Jpt1 Jupiter microtubule associated homolog 1 Novel U 0.001174891109349024 -0.251812615191791 1.0 12539 -229228 Nudt6 nudix hydrolase 6 Novel N 0.0011745979422737142 -0.2518156518067197 1.0 12540 -100038995 LOC100038995 PRAME family member 8-like Novel U 0.0011745967362379196 -0.2518156642987988 1.0 12541 -72169 Trim29 tripartite motif-containing 29 Novel U 0.0011743392490768461 -0.25181833134234877 1.0 12542 -238406 Adam6a a disintegrin and metallopeptidase domain 6A Novel U 0.001174210508230673 -0.2518196648358013 1.0 12543 -387346 Tas2r114 taste receptor, type 2, member 114 Novel U 0.0011741626573965117 -0.2518201604731686 1.0 12544 -241769 Kcnk15 potassium channel, subfamily K, member 15 Novel U 0.0011739209519436933 -0.25182266405030324 1.0 12545 -216971 Fam222b family with sequence similarity 222, member B Novel U 0.001173383612867982 -0.25182822979078534 1.0 12546 -101772 Ano1 anoctamin 1, calcium activated chloride channel Novel U 0.0011733276558630208 -0.25182880939160324 1.0 12547 -73739 Cby1 chibby family member 1, beta catenin antagonist Novel U 0.0011730744912178724 -0.25183143166267535 1.0 12548 -239038 Lrit2 leucine-rich repeat, immunoglobulin-like and transmembrane domains 2 Novel U 0.0011728998550358056 -0.25183324053850836 1.0 12549 -434179 Zfp975 zinc finger protein 975 Novel U 0.0011724987833614203 -0.2518373948257271 1.0 12550 -66047 Mrpl54 mitochondrial ribosomal protein L54 Novel U 0.001172461203085286 -0.2518377840809919 1.0 12551 -353287 Clec18a C-type lectin domain family 18, member A Novel U 0.001172416189763529 -0.25183825032749896 1.0 12552 -52662 Ldlrad4 low density lipoprotein receptor class A domain containing 4 Novel U 0.0011723725834051192 -0.2518387020007259 1.0 12553 -76792 Spring1 SREBF pathway regulator in golgi 1 Novel N 0.0011723653808233666 -0.2518387766048309 1.0 12554 -223645 Mroh6 maestro heat-like repeat family member 6 Novel U 0.0011715482744238722 -0.251847240166056 1.0 12555 -233532 Rsf1 remodeling and spacing factor 1 Novel U 0.0011715204203235502 -0.25184752867791144 1.0 12556 -319845 Bbs9 Bardet-Biedl syndrome 9 Novel U 0.0011714919268694538 -0.2518478238121723 1.0 12557 -100039034 Gm20795 predicted gene, 20795 Novel U 0.0011708165597290943 -0.2518548192428106 1.0 12558 -21677 Tead2 TEA domain family member 2 Novel N 0.0011705603882679585 -0.25185747265838393 1.0 12559 -56745 C1qtnf1 C1q and tumor necrosis factor related protein 1 Novel U 0.0011700769329902284 -0.2518624802722579 1.0 12560 -66745 Trpd52l3 tumor protein D52-like 3 Novel U 0.0011696323679313326 -0.25186708506252364 1.0 12561 -237073 Rbm41 RNA binding motif protein 41 Novel U 0.0011691043706875646 -0.2518725540406176 1.0 12562 -71248 4933428M09Rik RIKEN cDNA 4933428M09 gene Novel U 0.0011690115134556749 -0.251873515852773 1.0 12563 -71919 Rpap3 RNA polymerase II associated protein 3 Novel U 0.0011685830590322393 -0.25187795376960626 1.0 12564 -81601 Kat5 K(lysine) acetyltransferase 5 Novel U 0.0011685689064956347 -0.2518781003611152 1.0 12565 -15931 Ids iduronate 2-sulfatase Novel U 0.0011684237873456353 -0.25187960350050037 1.0 12566 -18792 Plau plasminogen activator, urokinase Novel U 0.001167804740750205 -0.25188601556478574 1.0 12567 -23984 Pde10a phosphodiesterase 10A Novel U 0.0011677486829815304 -0.25188659620931086 1.0 12568 -67452 Pnpla8 patatin-like phospholipase domain containing 8 Novel U 0.001167154915712108 -0.2518927464311685 1.0 12569 -54422 Barhl1 BarH like homeobox 1 Novel U 0.0011671055569566803 -0.2518932576875346 1.0 12570 -16980 Lrrn2 leucine rich repeat protein 2, neuronal Novel N 0.0011667596514758824 -0.25189684056513373 1.0 12571 -236546 Tcstv2a 2 cell stage variable group member 2A Novel U 0.0011666688381023675 -0.25189778120707124 1.0 12572 -22702 Zfp42 zinc finger protein 42 Novel U 0.0011658599247555167 -0.2519061599049263 1.0 12573 -71078 Adam30 a disintegrin and metallopeptidase domain 30 Novel U 0.001165839663219235 -0.2519063697732531 1.0 12574 -65105 Arl6ip4 ADP-ribosylation factor-like 6 interacting protein 4 Novel U 0.0011656960377965772 -0.2519078574406596 1.0 12575 -17173 Ascl2 achaete-scute family bHLH transcription factor 2 Novel N 0.0011655826597157673 -0.25190903180709345 1.0 12576 -211945 Plekhh1 pleckstrin homology domain containing, family H (with MyTH4 domain) member 1 Novel U 0.0011652670541222937 -0.2519123008394557 1.0 12577 -108148 Galnt2 polypeptide N-acetylgalactosaminyltransferase 2 Novel N 0.0011650358754456227 -0.251914695380589 1.0 12578 -67537 Glipr1l2 GLI pathogenesis-related 1 like 2 Novel U 0.0011649372128497363 -0.2519157173245139 1.0 12579 -100503915 Smpd5 sphingomyelin phosphodiesterase 5 Novel U 0.001164703227449685 -0.2519181409375958 1.0 12580 -12296 Cacnb2 calcium channel, voltage-dependent, beta 2 subunit Novel U 0.0011645594430407186 -0.2519196302517772 1.0 12581 -23876 Fbln5 fibulin 5 Novel U 0.0011645315851552098 -0.25191991880283954 1.0 12582 -110835 Chrna5 cholinergic receptor, nicotinic, alpha polypeptide 5 Novel N 0.0011644481676698374 -0.2519207828384108 1.0 12583 -66433 Chchd7 coiled-coil-helix-coiled-coil-helix domain containing 7 Novel U 0.0011644122082817582 -0.2519211553045704 1.0 12584 -27047 Omd osteomodulin Novel U 0.0011637861878828664 -0.25192763960328285 1.0 12585 -381680 Nxpe5 neurexophilin and PC-esterase domain family, member 5 Novel U 0.0011637569385367353 -0.25192794256704854 1.0 12586 -69241 Polr2d polymerase (RNA) II (DNA directed) polypeptide D Novel N 0.0011635999798909244 -0.2519295683395421 1.0 12587 -80720 Pbx4 pre B cell leukemia homeobox 4 Novel N 0.0011634252519648039 -0.251931378165657 1.0 12588 -105278 Cdk20 cyclin dependent kinase 20 Novel U 0.0011633537945939727 -0.251932118318755 1.0 12589 -100043604 Vmn1r132 vomeronasal 1 receptor 132 Novel U 0.0011632912470927075 -0.251932766183717 1.0 12590 -171506 H1f8 H1.8 linker histone Novel U 0.0011626057492692143 -0.2519398665476382 1.0 12591 -15458 Hpx hemopexin Novel U 0.0011616081736132119 -0.25195019940348956 1.0 12592 -74239 Iqce IQ motif containing E Novel U 0.001161299953224875 -0.2519533919401397 1.0 12593 -217721 Flvcr2 feline leukemia virus subgroup C cellular receptor 2 Novel N 0.0011610481157812822 -0.25195600046410177 1.0 12594 -66471 Anp32e acidic nuclear phosphoprotein 32 family member E Novel U 0.0011606210365456577 -0.2519604241367849 1.0 12595 -70544 Tmem242 transmembrane protein 242 Novel N 0.0011602927039177078 -0.2519638249953518 1.0 12596 -20562 Slit1 slit guidance ligand 1 Novel U 0.00116020380833262 -0.2519647457728999 1.0 12597 -100042922 H2al1a H2A histone family member L1A Novel U 0.0011597727071975766 -0.251969211104285 1.0 12598 -75302 Asxl2 ASXL transcriptional regulator 2 Novel N 0.0011596096337263518 -0.2519709002139392 1.0 12599 -66049 Rogdi rogdi homolog Novel N 0.001159174417508389 -0.2519754081692179 1.0 12600 -20531 Slc34a2 solute carrier family 34 (sodium phosphate), member 2 Novel U 0.0011579796348709739 -0.25198778368849983 1.0 12601 -20192 Ryr3 ryanodine receptor 3 Novel U 0.0011577944601144868 -0.25198970172254026 1.0 12602 -97243 Naa11 N(alpha)-acetyltransferase 11, NatA catalytic subunit Novel U 0.0011577753320602274 -0.2519898998502975 1.0 12603 -99738 Kcnc4 potassium voltage gated channel, Shaw-related subfamily, member 4 Novel N 0.0011576362090077457 -0.2519913408823017 1.0 12604 -75443 Fam236e family with sequence similarity 236, member E Novel U 0.0011571448746035679 -0.2519964301079084 1.0 12605 -100040608 Fancf Fanconi anemia, complementation group F Novel U 0.0011569102133401484 -0.2519988607215608 1.0 12606 -113849 Vmn1r52 vomeronasal 1 receptor 52 Novel U 0.0011568581166412923 -0.25199940033745494 1.0 12607 -93888 Pcdhb17 protocadherin beta 17 Novel U 0.0011564397832302677 -0.2520037334211744 1.0 12608 -70809 Clec2g C-type lectin domain family 2, member g Novel U 0.0011557205949248536 -0.25201118274999984 1.0 12609 -18572 Pdcd11 programmed cell death 11 Novel U 0.0011554882351113348 -0.25201358952530983 1.0 12610 -12372 Casq1 calsequestrin 1 Novel U 0.0011553528341459232 -0.2520149920040585 1.0 12611 -58170 Asic5 acid-sensing ion channel family member 5 Novel U 0.001155148335456124 -0.2520171101947649 1.0 12612 -381379 Med19 mediator complex subunit 19 Novel U 0.001155031472395197 -0.2520183206585083 1.0 12613 -13601 Ecm1 extracellular matrix protein 1 Novel U 0.0011549077410148785 -0.2520196022640782 1.0 12614 -52808 Tspyl2 TSPY-like 2 Novel N 0.0011546207785311925 -0.25202257461205085 1.0 12615 -78394 Ddx52 DExD box helicase 52 Novel U 0.001154451702460984 -0.25202432589642804 1.0 12616 -18406 Orm2 orosomucoid 2 Novel U 0.0011536283538091199 -0.2520328541146979 1.0 12617 -11927 Atox1 antioxidant 1 copper chaperone Novel N 0.0011526321647777362 -0.252043172607937 1.0 12618 -28088 Rtcb RNA 2',3'-cyclic phosphate and 5'-OH ligase Novel N 0.0011523496223450446 -0.2520460991731667 1.0 12619 -71869 Serpinb12 serine (or cysteine) peptidase inhibitor, clade B (ovalbumin), member 12 Novel U 0.0011523247048040985 -0.25204635726823676 1.0 12620 -14788 Gpr162 G protein-coupled receptor 162 Novel U 0.0011522845860035616 -0.25204677281745386 1.0 12621 -18014 Neurog1 neurogenin 1 Novel U 0.0011513911955755435 -0.2520560265261387 1.0 12622 -320100 Relt RELT tumor necrosis factor receptor Novel N 0.0011511618281773543 -0.25205840230610904 1.0 12623 -19011 Endou endonuclease, polyU-specific Novel N 0.0011509053420828191 -0.25206105898064474 1.0 12624 -74716 Wbp2nl WBP2 N-terminal like Novel N 0.0011491303908296095 -0.2520794438673771 1.0 12625 -546644 Ly6g lymphocyte antigen 6 family member G Novel U 0.0011486457825368433 -0.2520844634241429 1.0 12626 -100041032 Pramel38 PRAME like 38 Novel U 0.0011484735084161999 -0.25208624783382133 1.0 12627 -213980 Fbxw10 F-box and WD-40 domain protein 10 Novel U 0.0011483840396134541 -0.2520871745487391 1.0 12628 -27275 Nufip1 nuclear FMR1 interacting protein 1 Novel N 0.0011481899982195448 -0.2520891844231184 1.0 12629 -236511 Ago1 argonaute RISC catalytic subunit 1 Novel U 0.0011480559886826117 -0.2520905724894966 1.0 12630 -12355 Nr1i3 nuclear receptor subfamily 1, group I, member 3 Novel N 0.0011479304388682646 -0.2520918729303464 1.0 12631 -170722 Nxf7 nuclear RNA export factor 7 Novel U 0.0011476398666044423 -0.252094882668303 1.0 12632 -13507 Dsc3 desmocollin 3 Novel U 0.0011475661890127209 -0.25209564581837607 1.0 12633 -28199 Dcaf11 DDB1 and CUL4 associated factor 11 Novel U 0.0011473341837942275 -0.25209804892080245 1.0 12634 -70337 Iyd iodotyrosine deiodinase Novel U 0.0011463606954019657 -0.2521081322815678 1.0 12635 -67238 Fam220a family with sequence similarity 220, member A Novel U 0.0011462796712162972 -0.2521089715274194 1.0 12636 -64008 Aqp9 aquaporin 9 Novel N 0.0011458533714392182 -0.25211338712649656 1.0 12637 -110957 D1Pas1 DNA segment, Chr 1, Pasteur Institute 1 Novel U 0.0011458354273737098 -0.2521135729905372 1.0 12638 -214763 Cgas cyclic GMP-AMP synthase Novel U 0.0011452723254496157 -0.252119405581756 1.0 12639 -74100 Arpp21 cyclic AMP-regulated phosphoprotein, 21 Novel U 0.0011451018160650963 -0.25212117171235565 1.0 12640 -108645 Mat2b methionine adenosyltransferase 2 non-catalytic beta subunit methionine Novel N 0.0011447406908063516 -0.2521249122359144 1.0 12641 -100042856 Gvin2 GTPase, very large interferon inducible, family member 2 Novel U 0.0011445731808473782 -0.2521266472985628 1.0 12642 -24004 Rai2 retinoic acid induced 2 Novel U 0.0011445114930276024 -0.2521272862589722 1.0 12643 -20773 Sptlc2 serine palmitoyltransferase, long chain base subunit 2 Novel U 0.0011443086665873308 -0.25212938712857297 1.0 12644 -621561 Vmn1r127 vomeronasal 1 receptor 127 Novel U 0.001143942639781172 -0.2521331784221987 1.0 12645 -69085 Zcchc9 zinc finger, CCHC domain containing 9 Novel U 0.0011437690530075916 -0.2521349764282931 1.0 12646 -74682 Wdr35 WD repeat domain 35 Novel U 0.0011435700165866511 -0.2521370380409982 1.0 12647 -74178 Stk40 serine/threonine kinase 40 Novel U 0.0011430970160662172 -0.2521419373648398 1.0 12648 -327954 Dnah2 dynein, axonemal, heavy chain 2 Novel N 0.0011430225574110232 -0.2521427086051426 1.0 12649 -18181 Nrf1 nuclear respiratory factor 1 Novel N 0.0011428059834461056 -0.2521449518711517 1.0 12650 -21908 Tlx1 T cell leukemia, homeobox 1 Novel U 0.0011426493365954444 -0.2521465744140814 1.0 12651 -226139 Cox15 cytochrome c oxidase assembly protein 15 Novel U 0.0011425097040074091 -0.2521480207238381 1.0 12652 -100043188 Spopfm2 speckle-type BTB/POZ protein family member 2 Novel U 0.0011421482423129522 -0.25215176473218687 1.0 12653 -68152 Fam133b family with sequence similarity 133, member B Novel U 0.0011415627015679145 -0.2521578297439753 1.0 12654 -445007 Nup85 nucleoporin 85 Novel U 0.001141435919100153 -0.25215914295260866 1.0 12655 -11865 Bmal1 basic helix-loop-helix ARNT like 1 Novel N 0.0011412359605576796 -0.25216121411661835 1.0 12656 -100039116 Mup14 major urinary protein 14 Novel U 0.0011404513841052405 -0.2521693407337211 1.0 12657 -381695 N4bp2l2 NEDD4 binding protein 2-like 2 Novel N 0.001140416378404469 -0.252169703321619 1.0 12658 -26426 Nubp2 nucleotide binding protein 2 Novel U 0.0011403664922787797 -0.2521702200404689 1.0 12659 -106014 Tafa5 TAFA chemokine like family member 5 Novel N 0.0011403589550802182 -0.2521702981105239 1.0 12660 -234407 Colgalt1 collagen beta(1-O)galactosyltransferase 1 Novel U 0.0011401347724625643 -0.25217262018670794 1.0 12661 -16869 Lhx1 LIM homeobox protein 1 Novel N 0.0011397842109339366 -0.25217625129149734 1.0 12662 -107829 Thoc5 THO complex 5 Novel N 0.001139320166699756 -0.25218105784642036 1.0 12663 -100862202 LOC100862202 PRAME family member 8-like Novel U 0.0011388301154994528 -0.25218613378064353 1.0 12664 -380785 Begain brain-enriched guanylate kinase-associated Novel U 0.0011385965643934328 -0.2521885528953221 1.0 12665 -66074 Tmem167 transmembrane protein 167 Novel U 0.001137558772783601 -0.2521993023067012 1.0 12666 -219134 Shisa2 shisa family member 2 Novel U 0.001137405221824852 -0.2522008927824842 1.0 12667 -14391 Gabpb1 GA repeat binding protein, beta 1 Novel N 0.001137034727919403 -0.2522047303461775 1.0 12668 -18983 Cnot7 CCR4-NOT transcription complex, subunit 7 Novel U 0.0011368317315463435 -0.25220683297593655 1.0 12669 -216767 Mrpl22 mitochondrial ribosomal protein L22 Novel U 0.00113608507130284 -0.2522145668581936 1.0 12670 -68041 Mid1ip1 Mid1 interacting protein 1 (gastrulation specific G12-like (zebrafish)) Novel U 0.0011358378247824086 -0.25221712782952443 1.0 12671 -67772 Chd8 chromodomain helicase DNA binding protein 8 Novel U 0.0011350558497633626 -0.25222522750106563 1.0 12672 -330267 Thsd7a thrombospondin, type I, domain containing 7A Novel U 0.001134287961610255 -0.2522331812613126 1.0 12673 -68020 Coa8 cytochrome c oxidase assembly factor 8 Novel N 0.0011342138362380324 -0.2522339490494813 1.0 12674 -100503670 Rpl5 ribosomal protein L5 Novel U 0.0011341597933674187 -0.2522345088237586 1.0 12675 -27801 Zdhhc8 zinc finger, DHHC domain containing 8 Novel U 0.0011338167871114853 -0.2522380616712818 1.0 12676 -100040022 Gm20822 predicted gene, 20822 Novel U 0.0011336079741943931 -0.25224022454861267 1.0 12677 -171199 Vmn1r18 vomeronasal 1 receptor 18 Novel U 0.001133599713778333 -0.2522403101097307 1.0 12678 -404290 Vmn1r93 vomeronasal 1 receptor 93 Novel U 0.001133534085591241 -0.2522409898843352 1.0 12679 -213435 Mylk3 myosin light chain kinase 3 Novel U 0.0011333883483165164 -0.25224249942623594 1.0 12680 -233810 Abca16 ATP-binding cassette, sub-family A member 16 Novel U 0.0011331809779180034 -0.2522446473620068 1.0 12681 -19729 Slc50a1 solute carrier family 50 (sugar transporter), member 1 Novel N 0.0011331701077188048 -0.25224475995517276 1.0 12682 -56150 Mad2l1 MAD2 mitotic arrest deficient-like 1 Novel U 0.0011330247593149324 -0.252246265469162 1.0 12683 -17722 ND6 NADH dehydrogenase subunit 6 Novel N 0.0011326498652038765 -0.25225014861004036 1.0 12684 -50912 Exosc10 exosome component 10 Novel N 0.0011326395125795688 -0.2522502558421826 1.0 12685 -53858 Rwdd2b RWD domain containing 2B Novel U 0.0011326093457453383 -0.25225056830925985 1.0 12686 -68992 Zfp580 zinc finger protein 580 Novel U 0.0011325591947260218 -0.25225108777186933 1.0 12687 -74196 Ttc27 tetratricopeptide repeat domain 27 Novel U 0.001132142243854957 -0.2522554065352853 1.0 12688 -330217 Gal3st4 galactose-3-O-sulfotransferase 4 Novel N 0.0011320137514521755 -0.25225673745536936 1.0 12689 -52653 Nudcd2 NudC domain containing 2 Novel U 0.001131983168935798 -0.2522570542280686 1.0 12690 -434624 Ftl1-ps2 ferritin light polypeptide, pseudogene 2 Novel U 0.001131589898114948 -0.2522611277143029 1.0 12691 -245532 Awat2 acyl-CoA wax alcohol acyltransferase 2 Novel U 0.00113152183400464 -0.25226183272012 1.0 12692 -69912 Nup43 nucleoporin 43 Novel U 0.0011311746053636815 -0.2522654293029685 1.0 12693 -21960 Tnr tenascin R Novel N 0.0011307646300678974 -0.25226967581360504 1.0 12694 -228139 P2rx3 purinergic receptor P2X, ligand-gated ion channel, 3 Novel U 0.001130490586768515 -0.25227251434509135 1.0 12695 -226412 R3hdm1 R3H domain containing 1 Novel U 0.0011303031812803569 -0.25227445548497707 1.0 12696 -66647 Nsmce3 NSE3 homolog, SMC5-SMC6 complex component Novel U 0.0011299867188416292 -0.2522777333925143 1.0 12697 -66874 Ncbp3 nuclear cap binding subunit 3 Novel N 0.0011297964542052747 -0.252279704147363 1.0 12698 -16596 Klf1 Kruppel-like transcription factor 1 (erythroid) Novel U 0.0011293465850960895 -0.2522843638768073 1.0 12699 -19387 Rangap1 RAN GTPase activating protein 1 Novel U 0.0011291934164078892 -0.2522859503930446 1.0 12700 -19664 Rbpj recombination signal binding protein for immunoglobulin kappa J region Novel U 0.0011291856078969429 -0.25228603127334426 1.0 12701 -626922 Pramel28 PRAME like 28 Novel U 0.0011290685242837913 -0.25228724402156033 1.0 12702 -67427 Rps20 ribosomal protein S20 Novel U 0.0011287507290626635 -0.25229053573401383 1.0 12703 -50799 Slc25a13 solute carrier family 25 (mitochondrial carrier, adenine nucleotide translocator), member 13 Novel U 0.0011286277512275592 -0.2522918095343872 1.0 12704 -113864 Vmn1r14 vomeronasal 1 receptor 14 Novel U 0.001128491898406547 -0.2522932166934413 1.0 12705 -630022 Btbd35f18 BTB domain containing 35, family member 18 Novel U 0.0011284676749229422 -0.2522934675994882 1.0 12706 -50914 Olig1 oligodendrocyte transcription factor 1 Novel U 0.0011277738078727827 -0.2523006546515841 1.0 12707 -217705 Fam161b family with sequence similarity 161, member B Novel U 0.001127519369189655 -0.2523032901190997 1.0 12708 -381077 Ccdc78 coiled-coil domain containing 78 Novel U 0.001127438788543905 -0.2523041247707794 1.0 12709 -66590 Farsa phenylalanyl-tRNA synthetase, alpha subunit Novel U 0.001127118801753788 -0.25230743918343246 1.0 12710 -17283 Men1 multiple endocrine neoplasia 1 Novel U 0.001126724524638631 -0.25231152309283006 1.0 12711 -12966 Crygc crystallin, gamma C Novel N 0.001126675651372568 -0.25231202932051333 1.0 12712 -11687 Alox15 arachidonate 15-lipoxygenase Novel U 0.001126629429806083 -0.2523125080819795 1.0 12713 -18822 Plod1 procollagen-lysine, 2-oxoglutarate 5-dioxygenase 1 Novel U 0.0011264975011144522 -0.2523138745950305 1.0 12714 -76925 Spata46 spermatogenesis associated 46 Novel U 0.0011261458318880936 -0.25231751717331663 1.0 12715 -278795 Lrrc10b leucine rich repeat containing 10B Novel U 0.0011260600318214024 -0.2523184058875869 1.0 12716 -110826 Etfb electron transferring flavoprotein, beta polypeptide Novel N 0.001125404990477905 -0.2523251907842895 1.0 12717 -628870 Otogl otogelin-like Novel N 0.0011251925199338086 -0.2523273915472007 1.0 12718 -269063 Ms4a5 membrane-spanning 4-domains, subfamily A, member 5 Novel U 0.001124921677084325 -0.25233019692853215 1.0 12719 -16530 Kcnk7 potassium channel, subfamily K, member 7 Novel N 0.001124911553422493 -0.2523303017890886 1.0 12720 -20198 S100a4 S100 calcium binding protein A4 Novel N 0.0011240140914523195 -0.25233959767067315 1.0 12721 -75453 Ccdc7b coiled-coil domain containing 7B Novel U 0.0011238427556934175 -0.25234137236083154 1.0 12722 -108155 Ogt O-linked N-acetylglucosamine (GlcNAc) transferase (UDP-N-acetylglucosamine:polypeptide-N-acetylglucosaminyl transferase) Novel U 0.0011237738711359882 -0.25234208586481294 1.0 12723 -386612 Thoc6 THO complex 6 Novel U 0.0011236991258436876 -0.25234286007409346 1.0 12724 -72074 Anks4b ankyrin repeat and sterile alpha motif domain containing 4B Novel N 0.001123680870694359 -0.2523430491603301 1.0 12725 -620401 Vmn1r240 vomeronasal 1 receptor 240 Novel U 0.0011228279708100333 -0.2523518834692944 1.0 12726 -626802 Gm14322 predicted gene 14322 Novel U 0.0011227322737850972 -0.2523528746959328 1.0 12727 -381798 4930590J08Rik RIKEN cDNA 4930590J08 gene Novel U 0.0011223758147395427 -0.2523565668870087 1.0 12728 -100861891 Alyreffm16 Aly/REF export factor family member 16 Novel U 0.001121541203303663 -0.2523652117648252 1.0 12729 -140492 Kcnn2 potassium intermediate/small conductance calcium-activated channel, subfamily N, member 2 Novel U 0.0011212791915015058 -0.25236792567445876 1.0 12730 -381759 Wee2 WEE1 homolog 2 (S. pombe) Novel N 0.001120699145801211 -0.2523739337687544 1.0 12731 -79555 BC005537 cDNA sequence BC005537 Novel U 0.0011204478451556131 -0.2523765367325805 1.0 12732 -117934533 Gm48551 predicted gene, 48551 Novel U 0.0011199261618836988 -0.25238194031076155 1.0 12733 -57432 Zc3h8 zinc finger CCCH type containing 8 Novel U 0.0011194735593496872 -0.2523866283529303 1.0 12734 -74778 Rrp7a ribosomal RNA processing 7 homolog A Novel U 0.0011183600071350834 -0.2523981624901631 1.0 12735 -11425 Apoc4 apolipoprotein C-IV Novel U 0.0011174499267464955 -0.25240758907291083 1.0 12736 -114604 Prdm15 PR domain containing 15 Novel U 0.0011168169304376129 -0.2524141456278696 1.0 12737 -13929 Amz2 archaelysin family metallopeptidase 2 Novel U 0.0011166225276092567 -0.25241615924597505 1.0 12738 -319885 Zcchc7 zinc finger, CCHC domain containing 7 Novel U 0.0011162147973509738 -0.25242038250258697 1.0 12739 -16881 Lig1 ligase I, DNA, ATP-dependent Novel U 0.0011156505036736836 -0.2524262274379461 1.0 12740 -399548 Scn4b sodium channel, type IV, beta Novel U 0.001114798645422297 -0.2524350509577107 1.0 12741 -213081 Wdr19 WD repeat domain 19 Novel U 0.0011146723495449626 -0.2524363591262564 1.0 12742 -14387 Gaa glucosidase, alpha, acid Novel U 0.0011146191787161596 -0.2524369098679532 1.0 12743 -71406 Spaar small regulatory polypeptide of amino acid response Novel N 0.0011144791683877335 -0.2524383600903325 1.0 12744 -217154 Stac2 SH3 and cysteine rich domain 2 Novel U 0.0011143273461660336 -0.25243993265991393 1.0 12745 -76571 Styxl1 serine/threonine/tyrosine interacting-like 1 Novel U 0.0011142305911999422 -0.2524409348446721 1.0 12746 -665563 Mthfd2l methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 2-like Novel N 0.0011141812833261508 -0.2524414455740079 1.0 12747 -68603 Pmvk phosphomevalonate kinase Novel N 0.0011141271380078414 -0.25244200640943504 1.0 12748 -317757 Gimap5 GTPase, IMAP family member 5 Novel U 0.0011138870144743501 -0.25244449360110127 1.0 12749 -435802 Cyp4a30b cytochrome P450, family 4, subfamily a, polypeptide 30b Novel U 0.0011138491586556451 -0.252444885710427 1.0 12750 -18082 Nipsnap1 nipsnap homolog 1 Novel U 0.0011137441069952027 -0.25244597383207246 1.0 12751 -629059 Fam124a family with sequence similarity 124, member A Novel U 0.0011129555830912644 -0.2524541413367481 1.0 12752 -69928 Cenps centromere protein S Novel U 0.0011128697160537524 -0.25245503074469994 1.0 12753 -665155 Srp54b signal recognition particle 54B Novel U 0.001112784188733387 -0.25245591663387273 1.0 12754 -71020 Spats1 spermatogenesis associated, serine-rich 1 Novel U 0.0011123098946694866 -0.252460829356195 1.0 12755 -12393 Runx2 runt related transcription factor 2 Novel U 0.0011122976396910477 -0.25246095629285886 1.0 12756 -12864 Cox6c cytochrome c oxidase subunit 6C Novel N 0.0011112717224940419 -0.25247158270946024 1.0 12757 -81015 Vmn1r56 vomeronasal 1 receptor 56 Novel U 0.0011111470548126182 -0.25247287401320617 1.0 12758 -12818 Col14a1 collagen, type XIV, alpha 1 Novel U 0.0011110730803212566 -0.2524736402385559 1.0 12759 -69480 Ttc9 tetratricopeptide repeat domain 9 Novel U 0.0011108702425872263 -0.2524757412251371 1.0 12760 -100101806 Srp54c signal recognition particle 54C Novel U 0.0011107338866019937 -0.2524771535959497 1.0 12761 -58867 Syngr4 synaptogyrin 4 Novel U 0.0011103896683133789 -0.25248071899766755 1.0 12762 -71984 Sars2 seryl-aminoacyl-tRNA synthetase 2 Novel N 0.0011100235996317545 -0.25248451072503797 1.0 12763 -22437 Xirp1 xin actin-binding repeat containing 1 Novel U 0.0011098085074097565 -0.25248673864320265 1.0 12764 -53901 Rcan2 regulator of calcineurin 2 Novel U 0.0011097978449775216 -0.2524868490843252 1.0 12765 -67557 Larp6 La ribonucleoprotein 6, translational regulator Novel N 0.0011093342605365366 -0.2524916508767254 1.0 12766 -118567363 Gm21103 predicted gene, 21103 Novel U 0.0011087466712049825 -0.25249773710770573 1.0 12767 -100042976 Vmn1r246 vomeronasal 1 receptor 246 Novel U 0.0011087086483822634 -0.25249813094685347 1.0 12768 -53906 Phgr1 proline/histidine/glycine-rich 1 Novel U 0.001108646780861188 -0.25249877176860297 1.0 12769 -94175 Hrg histidine-rich glycoprotein Novel U 0.001108603040300006 -0.25249922483189785 1.0 12770 -320492 A830018L16Rik RIKEN cDNA A830018L16 gene Novel U 0.0011084945633395682 -0.2525003484326881 1.0 12771 -22240 Dpysl3 dihydropyrimidinase-like 3 Novel U 0.0011083557759405127 -0.2525017859880051 1.0 12772 -332359 Tigd3 tigger transposable element derived 3 Novel U 0.0011083408646706406 -0.25250194043844826 1.0 12773 -20833 Ssrp1 structure specific recognition protein 1 Novel U 0.0011083121256190475 -0.2525022381165999 1.0 12774 -20669 Sox14 SRY (sex determining region Y)-box 14 Novel N 0.0011083104401482305 -0.2525022555746512 1.0 12775 -16536 Kcnq2 potassium voltage-gated channel, subfamily Q, member 2 Novel N 0.0011081672901458626 -0.2525037383176699 1.0 12776 -22750 Zfp9 zinc finger protein 9 Novel U 0.0011079283152824822 -0.252506213611449 1.0 12777 -59035 Carm1 coactivator-associated arginine methyltransferase 1 Novel U 0.0011071606340061885 -0.25251416522887266 1.0 12778 -94111 Mepe matrix extracellular phosphoglycoprotein with ASARM motif (bone) Novel U 0.0011070334893284544 -0.25251548218926495 1.0 12779 -434689 Gm10220 predicted gene 10220 Novel U 0.0011069617368364686 -0.25251622539921825 1.0 12780 -225659 Cep76 centrosomal protein 76 Novel U 0.0011063358593617592 -0.25252270821752665 1.0 12781 -108121 U2af1 U2 small nuclear ribonucleoprotein auxiliary factor (U2AF) 1 Novel U 0.0011051033391101459 -0.25253547462177595 1.0 12782 -24128 Xrn2 5'-3' exoribonuclease 2 Novel N 0.0011045658951469254 -0.25254104144867945 1.0 12783 -12914 Crebbp CREB binding protein Novel U 0.0011045405384377458 -0.2525413040926396 1.0 12784 -21388 Tbx5 T-box 5 Novel U 0.0011045285348974816 -0.25254142842491506 1.0 12785 -13483 Dpp6 dipeptidylpeptidase 6 Novel U 0.0011037724789402681 -0.25254925962766583 1.0 12786 -108168578 Gm20825 predicted gene, 20825 Novel U 0.001103663420767998 -0.25255038924862916 1.0 12787 -56749 Dhodh dihydroorotate dehydrogenase Novel U 0.0011031701859653277 -0.252555498158501 1.0 12788 -239853 Adgrg7 adhesion G protein-coupled receptor G7 Novel N 0.0011030066115940648 -0.2525571924564613 1.0 12789 -80982 Cemip cell migration inducing protein, hyaluronan binding Novel U 0.0011017128668617932 -0.25257059302186863 1.0 12790 -50787 Hs6st3 heparan sulfate 6-O-sulfotransferase 3 Novel U 0.0011015322083264684 -0.25257246427703867 1.0 12791 -109169 Igip IgA inducing protein Novel U 0.0011014452467457796 -0.2525733650222327 1.0 12792 -94215 Ugt2a1 UDP glucuronosyltransferase 2 family, polypeptide A1 Novel N 0.0011012506185409511 -0.2525753809747803 1.0 12793 -225997 Trpm6 transient receptor potential cation channel, subfamily M, member 6 Novel N 0.0011012223477349235 -0.2525756738028598 1.0 12794 -69736 Nup37 nucleoporin 37 Novel N 0.001100945148169878 -0.25257854502684207 1.0 12795 -74255 Smu1 smu-1 suppressor of mec-8 and unc-52 homolog (C. elegans) Novel N 0.0011008059957167155 -0.25257998636337753 1.0 12796 -72080 Sapcd2 suppressor APC domain containing 2 Novel U 0.001100502592315978 -0.2525831290058285 1.0 12797 -101502 Hsd3b7 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 7 Novel N 0.0011004697700844805 -0.2525834689774234 1.0 12798 -100039890 Gm15093 predicted gene 15093 Novel U 0.0011003193266643457 -0.2525850272654236 1.0 12799 -11810 Apobec1 apolipoprotein B mRNA editing enzyme, catalytic polypeptide 1 Novel N 0.0010999178348638735 -0.2525891859042945 1.0 12800 -72927 Hepacam hepatocyte cell adhesion molecule Novel U 0.0010995234859343015 -0.25259327055754355 1.0 12801 -626828 Vmn1r31 vomeronasal 1 receptor 31 Novel U 0.0010994944209413635 -0.2525935716117849 1.0 12802 -77522 Tmem213 transmembrane protein 213 Novel U 0.0010994700097346022 -0.2525938244622621 1.0 12803 -381493 S100a7a S100 calcium binding protein A7A Novel U 0.0010994433710259073 -0.2525941003851311 1.0 12804 -246735 AY074887 cDNA sequence AY074887 Novel U 0.0010992157190045594 -0.2525964583972845 1.0 12805 -231051 Kmt2c lysine (K)-specific methyltransferase 2C Novel U 0.0010992066379487313 -0.2525965524585623 1.0 12806 -66168 Grina glutamate receptor, ionotropic, N-methyl D-aspartate-associated protein 1 (glutamate binding) Novel U 0.0010989776313752378 -0.2525989245011223 1.0 12807 -74044 Ttf2 transcription termination factor, RNA polymerase II Novel N 0.0010984898091889205 -0.2526039773472919 1.0 12808 -17434 Mocs2 molybdenum cofactor synthesis 2 Novel N 0.001097879149400776 -0.2526103025413031 1.0 12809 -245671 Klf8 Kruppel-like transcription factor 8 Novel N 0.0010977367849629449 -0.25261177714747024 1.0 12810 -140557 Smc1b structural maintenance of chromosomes 1B Novel U 0.001097688791273845 -0.2526122742645242 1.0 12811 -20387 Sftpa1 surfactant associated protein A1 Novel U 0.0010973698638801893 -0.2526155777039835 1.0 12812 -66973 Mrps18b mitochondrial ribosomal protein S18B Novel U 0.0010971952558232589 -0.2526173862884973 1.0 12813 -71514 Sfpq splicing factor proline/glutamine rich (polypyrimidine tract binding protein associated) Novel U 0.0010971745958007792 -0.25261760028433095 1.0 12814 -75624 Metap1 methionyl aminopeptidase 1 Novel N 0.0010969000859908113 -0.2526204436479186 1.0 12815 -170765 Ripply3 ripply transcriptional repressor 3 Novel U 0.0010968147193810723 -0.25262132787245595 1.0 12816 -110187 Scgb2b26 secretoglobin, family 2B, member 26 Novel U 0.0010961743871071702 -0.25262796041309926 1.0 12817 -74442 Sgms2 sphingomyelin synthase 2 Novel U 0.0010956849254439938 -0.25263303024091627 1.0 12818 -66166 S100a14 S100 calcium binding protein A14 Novel U 0.0010956256954931932 -0.25263364374279956 1.0 12819 -242384 Lingo2 leucine rich repeat and Ig domain containing 2 Novel U 0.0010955089855136074 -0.2526348526209315 1.0 12820 -66756 Cfap97 cilia and flagella associated protein 97 Novel U 0.001095454364389665 -0.25263541838473774 1.0 12821 -67554 Slc25a30 solute carrier family 25, member 30 Novel N 0.0010951677326597002 -0.2526383873067742 1.0 12822 -66628 Thg1l tRNA-histidine guanylyltransferase 1-like (S. cerevisiae) Novel U 0.0010948703176013876 -0.2526414679221712 1.0 12823 -11569 Aebp2 AE binding protein 2 Novel U 0.0010945038743451461 -0.25264526352937317 1.0 12824 -622032 Vmn1r167 vomeronasal 1 receptor 167 Novel U 0.0010943432921831282 -0.2526469268341285 1.0 12825 -225631 Onecut2 one cut domain, family member 2 Novel N 0.0010942700451582878 -0.2526476855244039 1.0 12826 -72147 Zbtb46 zinc finger and BTB domain containing 46 Novel N 0.0010941611441532548 -0.2526488135174341 1.0 12827 -408068 Zfp738 zinc finger protein 738 Novel U 0.001093768385695876 -0.2526528816966244 1.0 12828 -68024 H2bc4 H2B clustered histone 4 Novel U 0.0010933943765271824 -0.25265675567129886 1.0 12829 -387314 Tmtc1 transmembrane and tetratricopeptide repeat containing 1 Novel N 0.001093240923409762 -0.2526583451336446 1.0 12830 -72114 Zbed3 zinc finger, BED type containing 3 Novel U 0.0010929620368572196 -0.25266123383138794 1.0 12831 -11614 Nr0b1 nuclear receptor subfamily 0, group B, member 1 Novel U 0.0010929340656281152 -0.2526615235564595 1.0 12832 -27377 Yme1l1 YME1-like 1 (S. cerevisiae) Novel U 0.001092719091415018 -0.2526637502522919 1.0 12833 -71176 Fbxo24 F-box protein 24 Novel U 0.0010926757766838817 -0.2526641989048531 1.0 12834 -241638 Lzts3 leucine zipper, putative tumor suppressor family member 3 Novel U 0.001092497879825773 -0.2526660415546613 1.0 12835 -14667 Gm2a GM2 ganglioside activator protein Novel U 0.0010922569205282604 -0.2526685374031438 1.0 12836 -14629 Gclc glutamate-cysteine ligase, catalytic subunit Novel U 0.0010922254311280487 -0.25266886356931606 1.0 12837 -76376 Slc24a2 solute carrier family 24 (sodium/potassium/calcium exchanger), member 2 Novel U 0.0010922137105191395 -0.2526689849709979 1.0 12838 -12876 Cpe carboxypeptidase E Novel U 0.0010915780584455578 -0.25267556903428007 1.0 12839 -70248 Dazap1 DAZ associated protein 1 Novel U 0.0010915741994996296 -0.25267560900511515 1.0 12840 -14621 Gjb4 gap junction protein, beta 4 Novel N 0.001091065084011816 -0.25268088240660164 1.0 12841 -110083 Dnah12 dynein, axonemal, heavy chain 12 Novel U 0.0010909869261496812 -0.25268169196316836 1.0 12842 -67054 Paics phosphoribosylaminoimidazole carboxylase, phosphoribosylaminoribosylaminoimidazole, succinocarboxamide synthetase Novel N 0.0010908371542333573 -0.25268324329575415 1.0 12843 -63954 Rbp7 retinol binding protein 7, cellular Novel U 0.0010907796456395473 -0.2526838389678783 1.0 12844 -117167 Steap4 STEAP family member 4 Novel U 0.0010905917003577634 -0.2526857856989287 1.0 12845 -100043083 Vmn1r259 vomeronasal 1 receptor 259 Novel U 0.0010903834973193462 -0.2526879422591563 1.0 12846 -70054 Ccdc89 coiled-coil domain containing 89 Novel U 0.0010902855579874844 -0.25268895671153613 1.0 12847 -11830 Aqp5 aquaporin 5 Novel U 0.00109018181498112 -0.2526900312781857 1.0 12848 -110855 Pde6c phosphodiesterase 6C, cGMP specific, cone, alpha prime Novel N 0.001089957486704635 -0.25269235486309916 1.0 12849 -100502590 Tex50 testis expressed 50 Novel U 0.0010893538340828724 -0.2526986074771113 1.0 12850 -670857 Vmn1r159 vomeronasal 1 receptor 159 Novel U 0.0010892789642491423 -0.2526993829763879 1.0 12851 -105439 Slain1 SLAIN motif family, member 1 Novel U 0.001089130891783632 -0.25270091670611805 1.0 12852 -63913 Niban1 niban apoptosis regulator 1 Novel U 0.0010886307001031351 -0.2527060976751017 1.0 12853 -117160 Ttyh2 tweety family member 2 Novel U 0.0010885765275886134 -0.2527066587922263 1.0 12854 -15493 Hsd3b2 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 2 Novel U 0.001088305854793945 -0.2527094624121356 1.0 12855 -22297 Vmn1r45 vomeronasal 1 receptor 45 Novel U 0.001088057092558127 -0.25271203908319656 1.0 12856 -17705 ATP6 ATP synthase F0 subunit 6 Novel N 0.00108803366251847 -0.25271228177077715 1.0 12857 -67224 Med29 mediator complex subunit 29 Novel U 0.0010874833854425156 -0.25271798152264047 1.0 12858 -20422 Sem1 SEM1, 26S proteasome complex subunit Novel N 0.0010873941958481213 -0.25271890534552727 1.0 12859 -319180 H2bc7 H2B clustered histone 7 Novel U 0.0010870899814134053 -0.25272205638864154 1.0 12860 -241289 Ppp1r26 protein phosphatase 1, regulatory subunit 26 Novel U 0.0010870447893617133 -0.25272252448642735 1.0 12861 -71986 Ddx28 DEAD box helicase 28 Novel N 0.0010870280709274688 -0.25272269765541966 1.0 12862 -56209 Gde1 glycerophosphodiester phosphodiesterase 1 Novel U 0.0010869715011570648 -0.25272328360324187 1.0 12863 -330319 Wipf3 WAS/WASL interacting protein family, member 3 Novel U 0.0010865210789505802 -0.2527279490616498 1.0 12864 -78751 Zc3h6 zinc finger CCCH type containing 6 Novel U 0.001086340931322648 -0.2527298150248579 1.0 12865 -547253 Parp14 poly (ADP-ribose) polymerase family, member 14 Novel U 0.0010851057796592103 -0.25274260868518433 1.0 12866 -20672 Sox18 SRY (sex determining region Y)-box 18 Novel N 0.0010845445248766755 -0.2527484221437716 1.0 12867 -75617 Rps25 ribosomal protein S25 Novel N 0.0010845163915332355 -0.2527487135480181 1.0 12868 -16497 Kcnab1 potassium voltage-gated channel, shaker-related subfamily, beta member 1 Novel U 0.001083630064953709 -0.2527578940895924 1.0 12869 -225876 Kdm2a lysine (K)-specific demethylase 2A Novel N 0.0010834832519588458 -0.252759414773767 1.0 12870 -12780 Abcc2 ATP-binding cassette, sub-family member 2 Novel U 0.0010834095516320803 -0.2527601781593289 1.0 12871 -226026 Smc5 structural maintenance of chromosomes 5 Novel U 0.0010832931127731428 -0.252761384229202 1.0 12872 -17977 Ncoa1 nuclear receptor coactivator 1 Novel N 0.0010831667532635219 -0.25276269305684884 1.0 12873 -70976 Tektl1 tektin like 1 Novel U 0.0010824782522358193 -0.2527698245278605 1.0 12874 -171190 Vmn1r26 vomeronasal 1 receptor 26 Novel U 0.001082442359208351 -0.25277019630665915 1.0 12875 -114886 Cygb cytoglobin Novel U 0.0010821820237278737 -0.25277289285300786 1.0 12876 -14148 Fdx1 ferredoxin 1 Novel N 0.0010817350494255705 -0.2527775225981376 1.0 12877 -12648 Chd1 chromodomain helicase DNA binding protein 1 Novel U 0.0010815011947258337 -0.25277994485742994 1.0 12878 -76763 Mospd2 motile sperm domain containing 2 Novel U 0.0010809306743413247 -0.25278585428881784 1.0 12879 -108168642 Gm20918 predicted gene, 20918 Novel U 0.0010808421819632585 -0.2527867708899608 1.0 12880 -207958 Alg11 ALG11 alpha-1,2-mannosyltransferase Novel U 0.0010806158381281513 -0.2527891153519642 1.0 12881 -625109 Vmn2r86 vomeronasal 2, receptor 86 Novel U 0.0010802541798929871 -0.25279286139607515 1.0 12882 -12799 Cnp 2',3'-cyclic nucleotide 3' phosphodiesterase Novel N 0.0010793521711528768 -0.2528022043729533 1.0 12883 -78321 Ankrd23 ankyrin repeat domain 23 Novel U 0.0010791890382610206 -0.2528038940980844 1.0 12884 -232164 Paip2b poly(A) binding protein interacting protein 2B Novel N 0.0010791354910446552 -0.25280444873839125 1.0 12885 -72429 Dnajc25 DnaJ heat shock protein family (Hsp40) member C25 Novel U 0.0010790585026313145 -0.2528052461818458 1.0 12886 -76080 Ttpal tocopherol (alpha) transfer protein-like Novel U 0.0010790572158552677 -0.25280525951022975 1.0 12887 -20892 Cenpx centromere protein X Novel U 0.0010785814493064808 -0.2528101874845021 1.0 12888 -72565 Uaca uveal autoantigen with coiled-coil domains and ankyrin repeats Novel U 0.0010784939797450262 -0.2528110934913443 1.0 12889 -18477 Prdx1 peroxiredoxin 1 Novel U 0.0010783755155992182 -0.25281232053907227 1.0 12890 -394430 Ugt1a10 UDP glycosyltransferase 1 family, polypeptide A10 Novel U 0.0010781961797826955 -0.25281417809356443 1.0 12891 -100043037 Vmn1r250 vomeronasal 1 receptor 250 Novel U 0.0010781421021908765 -0.2528147382274828 1.0 12892 -269233 Fam171a1 family with sequence similarity 171, member A1 Novel U 0.0010780603951794818 -0.2528155845460209 1.0 12893 -226351 Tmem185b transmembrane protein 185B Novel U 0.0010778234476387862 -0.25281803884085813 1.0 12894 -100503884 Ccdc149 coiled-coil domain containing 149 Novel U 0.0010775004270098213 -0.2528213846779142 1.0 12895 -18508 Pax6 paired box 6 Novel U 0.0010773519239925067 -0.2528229228672858 1.0 12896 -72656 Ints8 integrator complex subunit 8 Novel N 0.00107691398329693 -0.25282745904261406 1.0 12897 -18947 Pnliprp2 pancreatic lipase-related protein 2 Novel U 0.0010768913024875471 -0.25282769396969207 1.0 12898 -22778 Ikzf1 IKAROS family zinc finger 1 Novel U 0.001076060937285423 -0.25283629486515885 1.0 12899 -12224 Klf5 Kruppel-like transcription factor 5 Novel N 0.0010759408850578448 -0.25283753836218564 1.0 12900 -93713 Pcdhga5 protocadherin gamma subfamily A, 5 Novel U 0.0010757894234714007 -0.25283910719631897 1.0 12901 -380705 Tmem102 transmembrane protein 102 Novel U 0.001075230644607034 -0.25284489500942725 1.0 12902 -68493 Ndufaf4 NADH:ubiquinone oxidoreductase complex assembly factor 4 Novel N 0.001075211417804712 -0.25284509416001366 1.0 12903 -15469 Prmt1 protein arginine N-methyltransferase 1 Novel U 0.0010750805522169718 -0.25284644966146946 1.0 12904 -27052 Aoah acyloxyacyl hydrolase Novel N 0.001074979505343118 -0.2528474963016671 1.0 12905 -67487 Dhx40 DEAH-box helicase 40 Novel U 0.001074947263436302 -0.252847830262278 1.0 12906 -171202 Vmn1r16 vomeronasal 1 receptor 16 Novel U 0.001074934386418716 -0.25284796364200285 1.0 12907 -106068 Slc45a4 solute carrier family 45, member 4 Novel U 0.001074430909834716 -0.25285317863590906 1.0 12908 -22269 Upk2 uroplakin 2 Novel N 0.0010737288550457657 -0.25286045049633415 1.0 12909 -277744 Srarp steroid receptor associated and regulated protein Novel U 0.0010733576527035174 -0.25286429539799254 1.0 12910 -238276 Akap5 A kinase anchor protein 5 Novel U 0.0010731523600966417 -0.252866421812066 1.0 12911 -223604 Kcnk9 potassium channel, subfamily K, member 9 Novel U 0.0010726317505041383 -0.252871814269111 1.0 12912 -68215 Fam98b family with sequence similarity 98, member B Novel N 0.00107237143779098 -0.25287451057963656 1.0 12913 -74195 Elp3 elongator acetyltransferase complex subunit 3 Novel N 0.0010715297935745276 -0.252883228302763 1.0 12914 -69773 Timm29 translocase of inner mitochondrial membrane 29 Novel U 0.001071070280449605 -0.25288798792460526 1.0 12915 -11656 Alas2 aminolevulinic acid synthase 2, erythroid Novel U 0.0010708402943474288 -0.25289037011309123 1.0 12916 -16424 Itih1 inter-alpha trypsin inhibitor, heavy chain 1 Novel U 0.001070580514518038 -0.25289306090402425 1.0 12917 -270210 Zbtb47 zinc finger and BTB domain containing 47 Novel U 0.001070364483732551 -0.2528952985437987 1.0 12918 -665033 Col6a5 collagen, type VI, alpha 5 Novel U 0.0010703560413847177 -0.25289538598936007 1.0 12919 -14659 Glrp1 glutamine repeat protein 1 Novel U 0.0010702120952238215 -0.2528968769789626 1.0 12920 -381022 Kmt2d lysine (K)-specific methyltransferase 2D Novel U 0.0010699663721214583 -0.2528994221707792 1.0 12921 -18974 Pole2 polymerase (DNA directed), epsilon 2 (p59 subunit) Novel N 0.0010696101230706022 -0.2529031121867369 1.0 12922 -266744 Lgsn lengsin, lens protein with glutamine synthetase domain Novel U 0.0010692155367250313 -0.252907199299133 1.0 12923 -17991 Ndufa2 NADH:ubiquinone oxidoreductase subunit A2 Novel N 0.0010687539839498177 -0.25291198004760596 1.0 12924 -12841 Col9a3 collagen, type IX, alpha 3 Novel U 0.0010686704534970096 -0.2529128452532902 1.0 12925 -100042931 H2al1d H2A histone family member L1D Novel U 0.0010684765394160989 -0.2529148538089657 1.0 12926 -207965 Vcpkmt valosin containing protein lysine (K) methyltransferase Novel N 0.0010682261235815966 -0.2529174476079475 1.0 12927 -80283 Abtb1 ankyrin repeat and BTB domain containing 1 Novel U 0.0010681092906907035 -0.2529186577591907 1.0 12928 -14115 Fbln2 fibulin 2 Novel U 0.00106780255407781 -0.2529218349269436 1.0 12929 -67959 Puf60 poly-U binding splicing factor 60 Novel U 0.001067557859682703 -0.2529243694634442 1.0 12930 -73582 Camkmt calmodulin-lysine N-methyltransferase Novel U 0.0010673095599970273 -0.2529269413434261 1.0 12931 -66084 Rmnd1 required for meiotic nuclear division 1 homolog Novel U 0.0010672446333947166 -0.25292761385103846 1.0 12932 -66988 Lap3 leucine aminopeptidase 3 Novel U 0.0010669609705383656 -0.2529305520215796 1.0 12933 -233908 Fus fused in sarcoma Novel U 0.0010667131201790954 -0.25293311924745326 1.0 12934 -239554 Foxred2 FAD-dependent oxidoreductase domain containing 2 Novel U 0.0010666712367871172 -0.2529335530742506 1.0 12935 -66821 Bcs1l BCS1 homolog, ubiquinol-cytochrome c reductase complex chaperone Novel N 0.0010663940653752033 -0.25293642400662364 1.0 12936 -22122 Gfus GDP-L-fucose synthase Novel U 0.0010660226069194002 -0.25294027156109783 1.0 12937 -50721 Sirt6 sirtuin 6 Novel U 0.0010658518771817637 -0.2529420399741078 1.0 12938 -27418 Mkln1 muskelin 1, intracellular mediator containing kelch motifs Novel U 0.0010653793328922758 -0.25294693457232426 1.0 12939 -110599584 Eef1ece2 Eef1akmt4-endothelin converting enzyme 2 readthrough Novel U 0.0010651984729400067 -0.25294880791376445 1.0 12940 -435946 Vmn1r245 vomeronasal 1 receptor 245 Novel U 0.0010650600462289866 -0.25295024173308667 1.0 12941 -81905 Cacng8 calcium channel, voltage-dependent, gamma subunit 8 Novel U 0.0010647729786161777 -0.25295321516998326 1.0 12942 -18973 Pole polymerase (DNA directed), epsilon Novel U 0.0010646765359054915 -0.2529542141204102 1.0 12943 -22083 Ctr9 CTR9 homolog, Paf1/RNA polymerase II complex component Novel N 0.0010646669037508358 -0.25295431388995143 1.0 12944 -252866 Adam34 a disintegrin and metallopeptidase domain 34 Novel U 0.0010639485366484883 -0.25296175471278254 1.0 12945 -21946 Pglyrp1 peptidoglycan recognition protein 1 Novel U 0.0010637517635511253 -0.25296379288205645 1.0 12946 -66880 Rsrc1 arginine/serine-rich coiled-coil 1 Novel U 0.001063595373991479 -0.2529654127599742 1.0 12947 -243880 Nlrp4a NLR family, pyrin domain containing 4A Novel U 0.0010634412008189347 -0.25296700968062724 1.0 12948 -78303 H2bc27 H2B clustered histone 27 Novel U 0.001062981805224518 -0.2529717680850924 1.0 12949 -98733 Obsl1 obscurin-like 1 Novel U 0.0010629591248546599 -0.25297200300761785 1.0 12950 -53895 Clpp caseinolytic mitochondrial matrix peptidase proteolytic subunit Novel N 0.0010627402397517841 -0.25297427021231794 1.0 12951 -654470 Tctn1 tectonic family member 1 Novel U 0.001062442852144411 -0.25297735054337905 1.0 12952 -252972 Tpcn1 two pore channel 1 Novel U 0.0010623345478536243 -0.2529784723556627 1.0 12953 -219114 Ska3 spindle and kinetochore associated complex subunit 3 Novel U 0.0010614877930648005 -0.2529872430139298 1.0 12954 -109594 Lmo1 LIM domain only 1 Novel U 0.0010614814986866761 -0.2529873082108915 1.0 12955 -17859 Mxi1 MAX interactor 1, dimerization protein Novel U 0.0010612615618671131 -0.25298958630923846 1.0 12956 -67629 Spc24 SPC24, NDC80 kinetochore complex component, homolog (S. cerevisiae) Novel U 0.0010611807691099924 -0.25299042315796083 1.0 12957 -67997 Ddx59 DEAD box helicase 59 Novel U 0.001061152430228772 -0.2529907166911609 1.0 12958 -18948 Pnmt phenylethanolamine-N-methyltransferase Novel N 0.001061007506578436 -0.25299221780556697 1.0 12959 -13171 Dbt dihydrolipoamide branched chain transacylase E2 Novel N 0.0010607580070676637 -0.25299480211329767 1.0 12960 -215814 Ccdc28a coiled-coil domain containing 28A Novel U 0.0010605128669476246 -0.2529973412666025 1.0 12961 -668976 Ssxb6 SSX member B6 Novel U 0.001060493053190022 -0.2529975464968524 1.0 12962 -67356 Tmco5 transmembrane and coiled-coil domains 5 Novel U 0.001059700688393389 -0.2530057537853684 1.0 12963 -106877 Afap1l1 actin filament associated protein 1-like 1 Novel U 0.0010575370645175889 -0.2530281645303486 1.0 12964 -101488143 Hbb-bt hemoglobin, beta adult t chain Novel U 0.0010564761721906543 -0.25303915321819603 1.0 12965 -68533 Mphosph6 M phase phosphoprotein 6 Novel N 0.001055771951226118 -0.25304644751579664 1.0 12966 -11834 Aqr aquarius Novel N 0.0010555135186143105 -0.25304912435229426 1.0 12967 -101437 Dhx32 DEAH-box helicase 32 (putative) Novel U 0.0010551470827811613 -0.2530529198826081 1.0 12968 -381405 Zfp663 zinc finger protein 663 Novel U 0.0010551152671301755 -0.2530532494280751 1.0 12969 -19223 Ptgis prostaglandin I2 (prostacyclin) synthase Novel U 0.0010550420098420076 -0.25305400822465773 1.0 12970 -77605 H2az2 H2A.Z histone variant 2 Novel U 0.0010550355327688813 -0.2530540753139683 1.0 12971 -11754 Aoc3 amine oxidase, copper containing 3 Novel N 0.0010549496983990995 -0.25305496438354885 1.0 12972 -328329 Mast4 microtubule associated serine/threonine kinase family member 4 Novel U 0.0010548371411052593 -0.2530561302482983 1.0 12973 -14105 Srsf10 serine and arginine-rich splicing factor 10 Novel N 0.001054389916203587 -0.2530607625891281 1.0 12974 -21652 Phf1 PHD finger protein 1 Novel N 0.0010541000165996356 -0.2530637653596959 1.0 12975 -70099 Smc4 structural maintenance of chromosomes 4 Novel U 0.0010536073301230502 -0.2530688685900242 1.0 12976 -218763 Lrrc3b leucine rich repeat containing 3B Novel U 0.0010534434866634273 -0.25307056567519287 1.0 12977 -217578 Baz1a bromodomain adjacent to zinc finger domain 1A Novel N 0.001053044566937545 -0.25307469767259977 1.0 12978 -67916 Plpp3 phospholipid phosphatase 3 Novel U 0.0010529616627046815 -0.2530755563919185 1.0 12979 -100041806 LOC100041806 PRAME family member 9/15-like Novel U 0.0010528884129832644 -0.25307631511012496 1.0 12980 -26931 Ppp2r5c protein phosphatase 2, regulatory subunit B', gamma Novel U 0.0010522478730334078 -0.2530829498018689 1.0 12981 -110173 Manba mannosidase, beta A, lysosomal Novel N 0.0010519440631340698 -0.25308609665481907 1.0 12982 -381107 Tmem232 transmembrane protein 232 Novel U 0.0010516356898386107 -0.2530892907752762 1.0 12983 -66096 Lamtor4 late endosomal/lysosomal adaptor, MAPK and MTOR activator 4 Novel U 0.0010513365630597602 -0.25309238912061827 1.0 12984 -98870 AI182371 expressed sequence AI182371 Novel U 0.001051005020384119 -0.2530958232287537 1.0 12985 -56031 Ppie peptidylprolyl isomerase E (cyclophilin E) Novel N 0.0010509331815662852 -0.25309656733286723 1.0 12986 -14349 Fv1 Friend virus susceptibility 1 Novel U 0.0010509301833584042 -0.2530965983882059 1.0 12987 -17954 Nap1l2 nucleosome assembly protein 1-like 2 Novel U 0.0010503044485826844 -0.2531030797284429 1.0 12988 -68201 Ccdc34 coiled-coil domain containing 34 Novel N 0.0010493325290861608 -0.2531131468386377 1.0 12989 -20933 Med22 mediator complex subunit 22 Novel U 0.0010492466087993675 -0.25311403679814387 1.0 12990 -54368 Gp9 glycoprotein 9 platelet Novel U 0.0010486495132472264 -0.2531202214942445 1.0 12991 -209497 Tmem164 transmembrane protein 164 Novel N 0.0010484499093805664 -0.2531222889845337 1.0 12992 -73246 Rassf6 Ras association (RalGDS/AF-6) domain family member 6 Novel U 0.0010474981792723075 -0.25313214697370867 1.0 12993 -50758 Fbxl17 F-box and leucine-rich repeat protein 17 Novel U 0.0010471989500533592 -0.25313524638012186 1.0 12994 -230639 Cyp4a29 cytochrome P450, family 4, subfamily a, polypeptide 29 Novel U 0.0010469043535984324 -0.25313829780051766 1.0 12995 -100048658 Ddx43 DEAD box helicase 43 Novel U 0.0010462243474159516 -0.2531453412822018 1.0 12996 -27397 Mrpl17 mitochondrial ribosomal protein L17 Novel U 0.0010458304403773877 -0.2531494213583583 1.0 12997 -17449 Mdh1 malate dehydrogenase 1, NAD (soluble) Novel U 0.0010457550431090161 -0.2531502023207855 1.0 12998 -18300 Fam3d FAM3 metabolism regulating signaling molecule D Novel U 0.0010454986262414367 -0.25315285827827066 1.0 12999 -69008 Cab39l calcium binding protein 39-like Novel U 0.0010453189986789752 -0.2531547188546577 1.0 13000 -270091 Lrrc36 leucine rich repeat containing 36 Novel U 0.0010439988880261263 -0.2531683925174036 1.0 13001 -103712 6330403K07Rik RIKEN cDNA 6330403K07 gene Novel U 0.001043487221188984 -0.25317369234568254 1.0 13002 -78586 Srbd1 S1 RNA binding domain 1 Novel U 0.0010433748769974006 -0.25317485600312584 1.0 13003 -544717 Uqcc6 ubiquinol-cytochrome c reductase complex assembly factor 6 Novel U 0.001043265551868646 -0.2531759883892156 1.0 13004 -72900 Ndufv2 NADH:ubiquinone oxidoreductase core subunit V2 Novel N 0.0010432532154258836 -0.2531761161696842 1.0 13005 -60525 Acss2 acyl-CoA synthetase short-chain family member 2 Novel N 0.00104296215296403 -0.253179130985096 1.0 13006 -69546 Mapk1ip1 mitogen-activated protein kinase 1 interacting protein 1 Novel U 0.0010426118801583843 -0.2531827590993022 1.0 13007 -18249 Obp1a odorant binding protein IA Novel U 0.0010422823295950082 -0.25318617257320425 1.0 13008 -21810 Tgfbi transforming growth factor, beta induced Novel U 0.001042096447269033 -0.25318809793622615 1.0 13009 -436336 Litafd LITAF domain containing Novel U 0.0010420392723243087 -0.2531886901524241 1.0 13010 -382867 Zfp488 zinc finger protein 488 Novel U 0.0010417605520034177 -0.25319157712834545 1.0 13011 -20185 Ncor1 nuclear receptor co-repressor 1 Novel U 0.0010417164768932187 -0.253192033656888 1.0 13012 -99311 Commd7 COMM domain containing 7 Novel U 0.0010416919271029933 -0.2531922879428081 1.0 13013 -66364 Pigbos1 Pigb opposite strand 1 Novel N 0.0010412307633816057 -0.25319706466147435 1.0 13014 -66248 Alg5 ALG5 dolichyl-phosphate beta-glucosyltransferase Novel N 0.0010411601229380974 -0.253197796352866 1.0 13015 -57170 Dolpp1 dolichyl pyrophosphate phosphatase 1 Novel U 0.0010407643554224458 -0.25320189569978296 1.0 13016 -12212 Chic1 cysteine-rich hydrophobic domain 1 Novel U 0.001039961604366903 -0.25321021056882725 1.0 13017 -12326 Camk4 calcium/calmodulin-dependent protein kinase IV Novel U 0.00103966490200663 -0.25321328380212144 1.0 13018 -108168579 Gm21394 predicted gene, 21394 Novel U 0.0010393626114623023 -0.2532164149176423 1.0 13019 -280645 B3gat2 beta-1,3-glucuronyltransferase 2 Novel U 0.0010391237731313817 -0.2532188887972226 1.0 13020 -320679 Samd12 sterile alpha motif domain containing 12 Novel N 0.0010384356223667513 -0.2532260166402209 1.0 13021 -622320 Kctd21 potassium channel tetramerisation domain containing 21 Novel U 0.0010382805237517307 -0.25322762314657665 1.0 13022 -78772 Hhipl2 hedgehog interacting protein-like 2 Novel U 0.0010379644289013545 -0.2532308972466458 1.0 13023 -14395 Gabra2 gamma-aminobutyric acid type A receptor subunit alpha 2 Novel U 0.0010378186230676502 -0.2532324074986782 1.0 13024 -74648 S100pbp S100P binding protein Novel U 0.0010374981884186598 -0.25323572655023874 1.0 13025 -68479 Phf5a PHD finger protein 5A Novel N 0.0010374872075265137 -0.2532358402899586 1.0 13026 -17364 Trpm1 transient receptor potential cation channel, subfamily M, member 1 Novel U 0.0010374677148637737 -0.2532360421943185 1.0 13027 -79456 Recql4 RecQ protein-like 4 Novel U 0.0010370723331608073 -0.2532401375450003 1.0 13028 -353188 Adam32 a disintegrin and metallopeptidase domain 32 Novel U 0.0010368356929971586 -0.25324258865603627 1.0 13029 -108168669 Gm21244 predicted gene, 21244 Novel U 0.001036747471345634 -0.25324350245300264 1.0 13030 -11925 Neurog3 neurogenin 3 Novel U 0.0010362608380266984 -0.253248542984923 1.0 13031 -75555 Nscme3l NSE3 homolog, SMC5-SMC6 complex component like Novel U 0.0010359233860861017 -0.25325203830103055 1.0 13032 -76223 Agbl3 ATP/GTP binding protein-like 3 Novel U 0.0010358403068880205 -0.25325289883263313 1.0 13033 -252864 Dusp15 dual specificity phosphatase-like 15 Novel N 0.0010355961152323802 -0.25325542816177493 1.0 13034 -170706 Tmem37 transmembrane protein 37 Novel U 0.0010353962375416735 -0.25325749848832463 1.0 13035 -17089 Lyar Ly1 antibody reactive clone Novel U 0.001035129340554283 -0.25326026299854626 1.0 13036 -66489 Rpl35 ribosomal protein L35 Novel U 0.0010346020134405966 -0.2532657250354549 1.0 13037 -93881 Pcdhb10 protocadherin beta 10 Novel U 0.001034518943754486 -0.25326658546853287 1.0 13038 -74748 Slamf8 SLAM family member 8 Novel U 0.0010342288079213567 -0.2532695906859547 1.0 13039 -19290 Pura purine rich element binding protein A Novel U 0.0010337374843260173 -0.25327467979960383 1.0 13040 -72739 Zkscan3 zinc finger with KRAB and SCAN domains 3 Novel U 0.0010337144661218764 -0.25327491822140563 1.0 13041 -96875 Prg4 proteoglycan 4 (megakaryocyte stimulating factor, articular superficial zone protein) Novel U 0.0010329582280695193 -0.253282751310292 1.0 13042 -67228 Dph7 diphthamine biosynethesis 7 Novel N 0.0010327733118059737 -0.253284666666871 1.0 13043 -407831 Tmem204 transmembrane protein 204 Novel U 0.0010321495207429989 -0.2532911278741952 1.0 13044 -233865 Katnip katanin interacting protein Novel N 0.001032100762740993 -0.2532916329079772 1.0 13045 -78697 Pus7 pseudouridylate synthase 7 Novel U 0.001031869548730374 -0.2532940278150984 1.0 13046 -107065 Lrrtm2 leucine rich repeat transmembrane neuronal 2 Novel U 0.0010315678824013169 -0.25329715246501805 1.0 13047 -18830 Pltp phospholipid transfer protein Novel N 0.001031538616620768 -0.25329745559901096 1.0 13048 -217246 Ace3 angiotensin I converting enzyme 3 Novel U 0.0010315368285155526 -0.25329747412014597 1.0 13049 -79059 Nme3 NME/NM23 nucleoside diphosphate kinase 3 Novel U 0.0010314991184870606 -0.2532978647193814 1.0 13050 -93883 Pcdhb12 protocadherin beta 12 Novel U 0.0010313292631555322 -0.2532996240753217 1.0 13051 -19264 Ptprc protein tyrosine phosphatase receptor type C Novel U 0.0010311274206361396 -0.2533017147535024 1.0 13052 -328381 Sh2d4b SH2 domain containing 4B Novel U 0.0010309024210155306 -0.25330404529217615 1.0 13053 -73212 3110082I17Rik RIKEN cDNA 3110082I17 gene Novel U 0.001030435572854734 -0.25330888089007886 1.0 13054 -68549 Sgo2a shugoshin 2A Novel U 0.001029831301927044 -0.2533151399084836 1.0 13055 -19244 Ptp4a2 protein tyrosine phosphatase 4a2 Novel U 0.0010289123290388217 -0.2533246585994502 1.0 13056 -100041057 LOC100041057 nuclear body protein SP140-like Novel U 0.0010288525512433117 -0.253325277775891 1.0 13057 -12029 Bcl6b B cell CLL/lymphoma 6, member B Novel U 0.0010285456843992743 -0.2533284562925738 1.0 13058 -215201 Trmt2b TRM2 tRNA methyltransferase 2B Novel U 0.0010285072771043376 -0.2533288541140722 1.0 13059 -83454 Nxf2 nuclear RNA export factor 2 Novel U 0.001028295441777375 -0.2533310482974252 1.0 13060 -207165 Bptf bromodomain PHD finger transcription factor Novel U 0.0010277776188533719 -0.25333641189024947 1.0 13061 -17153 Mal myelin and lymphocyte protein, T cell differentiation protein Novel U 0.001027518109952632 -0.25333909987491243 1.0 13062 -12974 Cs citrate synthase Novel U 0.0010272473526813594 -0.2533419043698276 1.0 13063 -74213 Rbm26 RNA binding motif protein 26 Novel U 0.0010272418849438798 -0.2533419610044727 1.0 13064 -83996 Mmp1b matrix metallopeptidase 1b (interstitial collagenase) Novel U 0.0010270815755733336 -0.2533436214836629 1.0 13065 -78655 Eif3j1 eukaryotic translation initiation factor 3, subunit J1 Novel U 0.0010270605333822685 -0.2533438394379862 1.0 13066 -12354 Car7 carbonic anhydrase 7 Novel U 0.0010266615734949058 -0.25334797185138447 1.0 13067 -55981 Pigb phosphatidylinositol glycan anchor biosynthesis, class B Novel U 0.0010266286746715427 -0.25334831261631535 1.0 13068 -75209 Sv2c synaptic vesicle glycoprotein 2c Novel U 0.0010264875674396582 -0.25334977420038457 1.0 13069 -338359 Supv3l1 suppressor of var1, 3-like 1 (S. cerevisiae) Novel U 0.0010264487723618807 -0.25335017603852483 1.0 13070 -74735 Trim14 tripartite motif-containing 14 Novel U 0.001026437096702087 -0.2533502969746252 1.0 13071 -68094 Smarcc2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily c, member 2 Novel U 0.0010263564577356415 -0.2533511322303888 1.0 13072 -20525 Slc2a1 solute carrier family 2 (facilitated glucose transporter), member 1 Novel U 0.0010260362826009686 -0.25335444859390854 1.0 13073 -16468 Jarid2 jumonji and AT-rich interaction domain containing 2 Novel U 0.0010258255468497983 -0.25335663138789155 1.0 13074 -140475 Bsnd barttin CLCNK type accessory beta subunit Novel N 0.001025525287330418 -0.2533597414661228 1.0 13075 -228026 Pdk1 pyruvate dehydrogenase kinase, isoenzyme 1 Novel N 0.0010252532278160185 -0.2533625594496295 1.0 13076 -114479 Slc5a5 solute carrier family 5 (sodium iodide symporter), member 5 Novel U 0.0010251350629487158 -0.25336378339744053 1.0 13077 -546205 Spin2h spindlin family, member 2H Novel U 0.001024738735080655 -0.2533678885484693 1.0 13078 -228869 Ncoa5 nuclear receptor coactivator 5 Novel U 0.0010246859853408291 -0.2533684349285404 1.0 13079 -12759 Clu clusterin Novel U 0.0010243814975553053 -0.25337158880301336 1.0 13080 -14595 B4galt1 UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 1 Novel U 0.0010243489977951959 -0.25337192543446024 1.0 13081 -75553 Zc3h14 zinc finger CCCH type containing 14 Novel N 0.0010240549362511224 -0.253374971314267 1.0 13082 -70351 Ppp4r1 protein phosphatase 4, regulatory subunit 1 Novel U 0.0010233149314472576 -0.2533826362596991 1.0 13083 -320454 Tmprss11g transmembrane protease, serine 11g Novel U 0.0010223959071942765 -0.2533921554827001 1.0 13084 -30924 Angptl3 angiopoietin-like 3 Novel U 0.0010219851006942032 -0.2533964106029234 1.0 13085 -18025 Nfe2l3 nuclear factor, erythroid derived 2, like 3 Novel N 0.0010213594877750663 -0.2534028906809739 1.0 13086 -73694 Ndufaf7 NADH:ubiquinone oxidoreductase complex assembly factor 7 Novel N 0.0010211039837846267 -0.2534055371829076 1.0 13087 -381802 Tsen2 tRNA splicing endonuclease subunit 2 Novel N 0.0010209825385274916 -0.2534067951088887 1.0 13088 -100503924 Fcor Foxo1 corepressor Novel U 0.0010209629301582716 -0.2534069982117325 1.0 13089 -76448 Ppp1r18 protein phosphatase 1, regulatory subunit 18 Novel U 0.0010209589616651804 -0.2534070393172535 1.0 13090 -19012 Plpp1 phospholipid phosphatase 1 Novel U 0.0010206379074275437 -0.2534103647864928 1.0 13091 -68277 2310057M21Rik RIKEN cDNA 2310057M21 gene Novel U 0.0010198808147592127 -0.25341820672746335 1.0 13092 -74782 Glt8d2 glycosyltransferase 8 domain containing 2 Novel U 0.0010198256214091624 -0.25341877841836874 1.0 13093 -11666 Abcd1 ATP-binding cassette, sub-family D member 1 Novel U 0.001019618916234771 -0.25342091946377004 1.0 13094 -66337 Fam229b family with sequence similarity 229, member B Novel U 0.0010194667120267335 -0.2534224959899535 1.0 13095 -243277 Adgrd1 adhesion G protein-coupled receptor D1 Novel N 0.0010192844967554626 -0.25342438336974327 1.0 13096 -234311 Ddx60 DExD/H box helicase 60 Novel U 0.001018658924562969 -0.2534308630259485 1.0 13097 -246133 Kcne2 potassium voltage-gated channel, Isk-related subfamily, gene 2 Novel U 0.0010186181743218183 -0.25343128511560675 1.0 13098 -70466 Ckap2l cytoskeleton associated protein 2-like Novel U 0.001018371290036517 -0.25343384233491806 1.0 13099 -244550 Podnl1 podocan-like 1 Novel U 0.0010174842530646878 -0.2534430302347125 1.0 13100 -11717 Ampd3 adenosine monophosphate deaminase 3 Novel U 0.0010173495836426972 -0.25344442513615845 1.0 13101 -15430 Hoxd10 homeobox D10 Novel N 0.0010171810024970664 -0.25344617129412306 1.0 13102 -319670 Eml5 echinoderm microtubule associated protein like 5 Novel U 0.0010170278533467162 -0.2534477576079879 1.0 13103 -20538 Slc6a2 solute carrier family 6 (neurotransmitter transporter, noradrenalin), member 2 Novel N 0.0010169912170668299 -0.2534481370853706 1.0 13104 -107770 Tm6sf2 transmembrane 6 superfamily member 2 Novel N 0.0010167575039726827 -0.25345055787791687 1.0 13105 -24083 Natd1 N-acetyltransferase domain containing 1 Novel U 0.0010158883966579118 -0.2534595600629129 1.0 13106 -26896 Med14 mediator complex subunit 14 Novel N 0.0010156649964791257 -0.2534618740346209 1.0 13107 -237211 Fancb Fanconi anemia, complementation group B Novel U 0.0010154766848188366 -0.25346382456060773 1.0 13108 -100505386 Iqschfp Iqcj and Schip1 fusion protein Novel U 0.0010146833404815238 -0.25347204199517387 1.0 13109 -105722 Ano6 anoctamin 6 Novel U 0.0010145258112376884 -0.253473673677903 1.0 13110 -226162 Dpcd deleted in primary ciliary dyskinesia Novel U 0.0010144674472884192 -0.2534742782097709 1.0 13111 -243867 Fbxo46 F-box protein 46 Novel U 0.001014377812591426 -0.2534752066430158 1.0 13112 -626391 Zfp951 zinc finger protein 951 Novel U 0.001012807988650916 -0.25349146682778645 1.0 13113 -243373 AI854703 expressed sequence AI854703 Novel U 0.00101279290414113 -0.25349162307264295 1.0 13114 -234072 Adprhl1 ADP-ribosylhydrolase like 1 Novel U 0.0010120597204129253 -0.25349921736559755 1.0 13115 -100039315 Pramel51 PRAME like 51 Novel U 0.0010119548628809087 -0.2535003034764672 1.0 13116 -328801 Zfp414 zinc finger protein 414 Novel U 0.0010119106456356597 -0.2535007614772399 1.0 13117 -65115 Bean1 brain expressed, associated with Nedd4, 1 Novel N 0.0010119049179047545 -0.25350082080488834 1.0 13118 -328695 Ftdc1 ferritin domain containing 1 Novel U 0.0010111826879978098 -0.2535083016385224 1.0 13119 -330050 Fam185a family with sequence similarity 185, member A Novel U 0.0010107333327774187 -0.25351295604512347 1.0 13120 -230027 Coq3 coenzyme Q3 methyltransferase Novel N 0.001010475220286579 -0.25351562956581863 1.0 13121 -56426 Pdcd10 programmed cell death 10 Novel U 0.0010104346711207453 -0.2535160495727453 1.0 13122 -333048 Lhfpl7 LHFPL tetraspan subfamily member 7 Novel U 0.0010103621979994717 -0.25351680024695306 1.0 13123 -329384 Ptrh1 peptidyl-tRNA hydrolase 1 homolog Novel U 0.0010101604433493156 -0.25351889001498706 1.0 13124 -223770 Brd1 bromodomain containing 1 Novel U 0.0010092783463518907 -0.253528026746689 1.0 13125 -320727 Ipo8 importin 8 Novel U 0.0010092558029998182 -0.2535282602499887 1.0 13126 -66139 Mymk myomaker, myoblast fusion factor Novel U 0.0010089052434821557 -0.2535318913339486 1.0 13127 -30057 Timm8b translocase of inner mitochondrial membrane 8B Novel U 0.001008825027533809 -0.25353272220810463 1.0 13128 -243043 Kctd8 potassium channel tetramerisation domain containing 8 Novel U 0.0010085678859578643 -0.25353538567209516 1.0 13129 -68009 Defa20 defensin, alpha, 20 Novel U 0.001008440522584267 -0.25353670489773206 1.0 13130 -11657 Alb albumin Novel U 0.0010080869208346293 -0.25354036749303077 1.0 13131 -57746 Piwil2 piwi-like RNA-mediated gene silencing 2 Novel N 0.0010079697907059571 -0.2535415807230531 1.0 13132 -13494 Drg1 developmentally regulated GTP binding protein 1 Novel U 0.0010076140428484852 -0.2535452655476662 1.0 13133 -228033 Atp5mc3 ATP synthase membrane subunit c locus 3 Novel N 0.0010074476517052656 -0.2535469890216579 1.0 13134 -69009 Thap7 THAP domain containing 7 Novel N 0.0010074383248603453 -0.25354708562881095 1.0 13135 -216019 Hkdc1 hexokinase domain containing 1 Novel N 0.0010065685411635831 -0.25355609481974944 1.0 13136 -12592 Cdx4 caudal type homeobox 4 Novel N 0.0010057205723576351 -0.25356487805276595 1.0 13137 -67186 Rplp2 ribosomal protein lateral stalk subunit P2 Novel U 0.0010055421880840064 -0.25356672575120814 1.0 13138 -78258 Mroh9 maestro heat-like repeat family member 9 Novel U 0.0010054910504902848 -0.25356725543272285 1.0 13139 -320840 Negr1 neuronal growth regulator 1 Novel U 0.0010054618492301702 -0.2535675578984152 1.0 13140 -66583 Exosc1 exosome component 1 Novel N 0.0010052278823403365 -0.2535699813197688 1.0 13141 -56215 Acin1 apoptotic chromatin condensation inducer 1 Novel U 0.0010048925823327268 -0.25357345434622525 1.0 13142 -12228 Btg3 BTG anti-proliferation factor 3 Novel N 0.0010046202832464464 -0.25357627481120965 1.0 13143 -11370 Acadvl acyl-Coenzyme A dehydrogenase, very long chain Novel U 0.0010045906279445701 -0.25357658197985156 1.0 13144 -74720 Tmem114 transmembrane protein 114 Novel U 0.0010043462170069475 -0.2535791135803089 1.0 13145 -632534 Vmn1r191 vomeronasal 1 receptor 191 Novel U 0.0010042174039543578 -0.2535804478216731 1.0 13146 -66566 Ntpcr nucleoside-triphosphatase, cancer-related Novel U 0.0010039537153948093 -0.25358317909910466 1.0 13147 -71691 Pnma8a PNMA family member 8A Novel U 0.001003934522156072 -0.2535833779020405 1.0 13148 -230883 Aadacl3 arylacetamide deacetylase like 3 Novel U 0.0010033863777895269 -0.2535890555633699 1.0 13149 -24060 Slc35a1 solute carrier family 35 (CMP-sialic acid transporter), member 1 Novel U 0.0010032387525581107 -0.25359058466066403 1.0 13150 -53861 Zranb2 zinc finger, RAN-binding domain containing 2 Novel U 0.0010030864997424345 -0.2535921616903237 1.0 13151 -239463 Fam83a family with sequence similarity 83, member A Novel U 0.0010024288888898858 -0.25359897320191666 1.0 13152 -18011 Neurl1a neuralized E3 ubiquitin protein ligase 1A Novel U 0.0010021110966331715 -0.25360226488366483 1.0 13153 -215257 Il36g interleukin 36G Novel U 0.0010020715963505295 -0.25360267402629394 1.0 13154 -230088 Atosb atos homolog B Novel U 0.0010020553288052592 -0.2536028425249931 1.0 13155 -109575 Tbx10 T-box 10 Novel U 0.0010020290588602337 -0.25360311462822005 1.0 13156 -66867 Hmg20a high mobility group 20A Novel U 0.001001607219029185 -0.2536074840313228 1.0 13157 -19132 Prph peripherin Novel U 0.0010009455359386477 -0.253614337723023 1.0 13158 -74032 Sdr42e1 short chain dehydrogenase/reductase family 42E, member 1 Novel U 0.00100064697889081 -0.25361743016710997 1.0 13159 -66350 Pla2g12a phospholipase A2, group XIIA Novel U 0.0010005293202568015 -0.2536186488713732 1.0 13160 -68346 Sirt5 sirtuin 5 Novel N 0.0010003695892364325 -0.2536203033600313 1.0 13161 -12556 Cdh16 cadherin 16 Novel U 0.001000274695698596 -0.25362128626417674 1.0 13162 -622404 Ccdc107 coiled-coil domain containing 107 Novel U 0.0010001621281602127 -0.2536224522350388 1.0 13163 -26874 Abcd2 ATP-binding cassette, sub-family D member 2 Novel N 0.0010000554138493852 -0.25362355757836236 1.0 13164 -218977 Dlgap5 DLG associated protein 5 Novel U 0.000999619256695914 -0.2536280752798201 1.0 13165 -241274 Pnpla7 patatin-like phospholipase domain containing 7 Novel U 0.000999349541208407 -0.2536308689839733 1.0 13166 -67707 Mrpl24 mitochondrial ribosomal protein L24 Novel U 0.000998979124010832 -0.25363470575312896 1.0 13167 -320007 Sidt1 SID1 transmembrane family, member 1 Novel U 0.0009987601461472915 -0.25363697391864104 1.0 13168 -20931 Surf2 surfeit gene 2 Novel U 0.0009986506670596753 -0.25363810789943164 1.0 13169 -85308 Emc9 ER membrane protein complex subunit 9 Novel U 0.0009985546479275296 -0.2536391024624459 1.0 13170 -73132 Slc25a16 solute carrier family 25 (mitochondrial carrier, Graves disease autoantigen), member 16 Novel N 0.0009981220032484234 -0.2536435837818097 1.0 13171 -94279 Sfxn2 sideroflexin 2 Novel N 0.0009980580178786988 -0.2536442465401659 1.0 13172 -76915 Mnd1 meiotic nuclear divisions 1 Novel U 0.0009976352436469158 -0.2536486256217607 1.0 13173 -66264 Ccdc28b coiled coil domain containing 28B Novel U 0.0009975721794290055 -0.25364927883885674 1.0 13174 -109263 Rlf rearranged L-myc fusion sequence Novel U 0.0009968973295950306 -0.25365626891125254 1.0 13175 -403395 Clec3a C-type lectin domain family 3, member a Novel N 0.0009966069093930894 -0.2536592770741572 1.0 13176 -192174 Rwdd4a RWD domain containing 4A Novel U 0.0009962708473545614 -0.2536627579937048 1.0 13177 -67856 Echdc3 enoyl Coenzyme A hydratase domain containing 3 Novel N 0.0009961235786731118 -0.2536642833978661 1.0 13178 -627537 Vmn2r100 vomeronasal 2, receptor 100 Novel U 0.0009960248872652303 -0.2536653056402246 1.0 13179 -260305 Nphp4 nephronophthisis 4 (juvenile) homolog (human) Novel U 0.0009957367726263113 -0.25366828992218327 1.0 13180 -54393 Gabbr1 gamma-aminobutyric acid type B receptor subunit 1 Novel N 0.000995570213897983 -0.253670015132016 1.0 13181 -74987 Cldn34d claudin 34D Novel U 0.0009954052974637973 -0.25367172333101995 1.0 13182 -73634 Chct1 CHD1 helical C-terminal domain containing 1 Novel U 0.0009953305915154957 -0.2536724971327766 1.0 13183 -57252 Tas2r105 taste receptor, type 2, member 105 Novel U 0.0009951830204482331 -0.2536740256690402 1.0 13184 -75137 Rprd2 regulation of nuclear pre-mRNA domain containing 2 Novel U 0.0009949228077809665 -0.25367672094329374 1.0 13185 -106639 Vmac vimentin-type intermediate filament associated coiled-coil protein Novel U 0.0009947067196379208 -0.25367895917717587 1.0 13186 -68926 Ubap2 ubiquitin-associated protein 2 Novel U 0.0009940052706176672 -0.2536862247630688 1.0 13187 -13809 Enpep glutamyl aminopeptidase Novel N 0.0009936290045494762 -0.253690122114634 1.0 13188 -17063 Muc13 mucin 13, epithelial transmembrane Novel U 0.00099349013454103 -0.25369156052561637 1.0 13189 -66236 1500011B03Rik RIKEN cDNA 1500011B03 gene Novel U 0.00099338128216958 -0.2536926880149015 1.0 13190 -319387 Adgrl3 adhesion G protein-coupled receptor L3 Novel N 0.0009932726682385005 -0.25369381303442917 1.0 13191 -244329 Mcph1 microcephaly, primary autosomal recessive 1 Novel N 0.0009931980556891827 -0.25369458586876226 1.0 13192 -624439 Scgb2b15 secretoglobin, family 2B, member 15 Novel U 0.0009923803956702658 -0.25370305516435904 1.0 13193 -57376 Smarce1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily e, member 1 Novel U 0.0009923571601909186 -0.2537032958366903 1.0 13194 -100039934 Gm15085 predicted gene 15085 Novel U 0.0009922033994262623 -0.253704888485636 1.0 13195 -83383 Tfap4 transcription factor AP4 Novel U 0.0009921115860669525 -0.25370583948539355 1.0 13196 -106029237 Tcstv2b 2 cell stage variable group member 2B Novel U 0.0009920011624205806 -0.25370698324989266 1.0 13197 -110454 Ly6a lymphocyte antigen 6 family member A Novel U 0.0009919985445978313 -0.25370701036521465 1.0 13198 -100579149 Gm17416 predicted gene, 17416 Novel U 0.0009915813304164102 -0.2537113318559906 1.0 13199 -51796 Srrm1 serine/arginine repetitive matrix 1 Novel N 0.0009912945257211838 -0.2537143025695956 1.0 13200 -218440 Ankrd34b ankyrin repeat domain 34B Novel U 0.0009907493229626369 -0.25371994976184603 1.0 13201 -56690 Mlycd malonyl-CoA decarboxylase Novel N 0.0009906496165866289 -0.2537209825172111 1.0 13202 -246787 Slc5a2 solute carrier family 5 (sodium/glucose cotransporter), member 2 Novel U 0.0009898194561208807 -0.2537295812920252 1.0 13203 -435951 Vmn1r122 vomeronasal 1 receptor 122 Novel U 0.0009895432435853113 -0.25373244229238867 1.0 13204 -625638 Fam43b family with sequence similarity 43, member B Novel U 0.000989439917789772 -0.2537335125375822 1.0 13205 -27370 Rps26 ribosomal protein S26 Novel U 0.0009887371337837438 -0.25374079195121385 1.0 13206 -270624 Spin4 spindlin family, member 4 Novel U 0.000987954312080304 -0.2537489003926842 1.0 13207 -60411 Cenpk centromere protein K Novel U 0.0009879419012750086 -0.25374902894339746 1.0 13208 -229588 Gm128 predicted gene 128 Novel N 0.0009873979981771923 -0.2537546626738048 1.0 13209 -242584 Dnai4 dynein axonemal intermediate chain 4 Novel U 0.0009871803261217989 -0.25375691731379896 1.0 13210 -94315 Prcc papillary renal cell carcinoma (translocation-associated) Novel U 0.0009863033618826207 -0.25376600088055973 1.0 13211 -76365 Tbx18 T-box18 Novel U 0.000985815091006925 -0.2537710583742392 1.0 13212 -17183 Matn4 matrilin 4 Novel U 0.0009856972728708334 -0.25377227873061975 1.0 13213 -230848 Zbtb40 zinc finger and BTB domain containing 40 Novel N 0.0009856764702290911 -0.2537724942036991 1.0 13214 -56529 Sec11a SEC11 homolog A, signal peptidase complex subunit Novel N 0.0009855223664499194 -0.25377409040557786 1.0 13215 -113850 V1ra8 vomeronasal 1 receptor, A8 Novel U 0.0009853465131888276 -0.25377591188787535 1.0 13216 -269470 Wdr3 WD repeat domain 3 Novel N 0.0009846570100656008 -0.2537830537385595 1.0 13217 -225583 Minar2 membrane integral NOTCH2 associated receptor 2 Novel U 0.0009843337291847666 -0.25378640227129595 1.0 13218 -66223 Mrpl35 mitochondrial ribosomal protein L35 Novel U 0.000983969387950342 -0.25379017610582505 1.0 13219 -69080 Gmppa GDP-mannose pyrophosphorylase A Novel U 0.0009837024967774364 -0.2537929405558204 1.0 13220 -77721 Mrps5 mitochondrial ribosomal protein S5 Novel U 0.0009830046834942295 -0.2538001684828685 1.0 13221 -18584 Pde8a phosphodiesterase 8A Novel U 0.0009827925593392788 -0.25380236565789227 1.0 13222 -78523 Mrpl9 mitochondrial ribosomal protein L9 Novel U 0.0009827693816996839 -0.2538026057311213 1.0 13223 -227331 Gigyf2 GRB10 interacting GYF protein 2 Novel U 0.0009820917788416917 -0.25380962431924936 1.0 13224 -75686 Nudt16 nudix hydrolase 16 Novel U 0.0009817351345548038 -0.2538133184290489 1.0 13225 -668137 Eif4a3l1 eukaryotic translation initiation factor 4A3 like 1 Novel U 0.0009816635327439707 -0.25381406007825175 1.0 13226 -26944 Tinag tubulointerstitial nephritis antigen Novel N 0.0009815823114232493 -0.25381490136602175 1.0 13227 -57263 Retnlb resistin like beta Novel U 0.0009815216668503232 -0.2538155295205145 1.0 13228 -100043614 Vmn1r137 vomeronasal 1 receptor 137 Novel U 0.0009813477657936672 -0.2538173307819427 1.0 13229 -67582 Slc25a26 solute carrier family 25 (mitochondrial carrier, phosphate carrier), member 26 Novel U 0.000981250649234196 -0.25381833671207316 1.0 13230 -16673 Krt36 keratin 36 Novel U 0.0009805674036956656 -0.25382541374690076 1.0 13231 -83815 Cenpq centromere protein Q Novel U 0.0009804246629794957 -0.2538268922505465 1.0 13232 -436003 Hbb-bh2 hemoglobin beta, bh2 Novel U 0.000980027078809956 -0.2538310104143047 1.0 13233 -100039781 Hrct1 histidine rich carboxyl terminus 1 Novel U 0.0009800105573246462 -0.25383118154330647 1.0 13234 -223658 Mroh1 maestro heat-like repeat family member 1 Novel U 0.0009799498890495774 -0.25383180994330523 1.0 13235 -14423 Galnt1 polypeptide N-acetylgalactosaminyltransferase 1 Novel U 0.0009794389169204738 -0.2538371025758212 1.0 13236 -320271 Scai suppressor of cancer cell invasion Novel N 0.0009793889503438374 -0.25383762012797945 1.0 13237 -654824 Ankrd37 ankyrin repeat domain 37 Novel U 0.0009790056499257216 -0.2538415903411099 1.0 13238 -171278 Vmn1r197 vomeronasal 1 receptor 197 Novel U 0.0009789499384953797 -0.25384216739827403 1.0 13239 -171167 Fut10 fucosyltransferase 10 Novel N 0.0009788865105511324 -0.25384282438283545 1.0 13240 -70202 Ctsll3 cathepsin L-like 3 Novel U 0.000978880790178024 -0.25384288363427204 1.0 13241 -244885 Sh2d7 SH2 domain containing 7 Novel U 0.000978865078299975 -0.25384304637738836 1.0 13242 -56195 Ptbp2 polypyrimidine tract binding protein 2 Novel N 0.0009787605012901315 -0.25384412958261854 1.0 13243 -11829 Aqp4 aquaporin 4 Novel U 0.0009786006930345937 -0.253845784871276 1.0 13244 -399674 Tdpoz3 TD and POZ domain containing 3 Novel U 0.0009785165616627918 -0.25384665630125947 1.0 13245 -56492 Cldn18 claudin 18 Novel U 0.0009783141553623199 -0.253848752819066 1.0 13246 -50935 St6galnac6 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 6 Novel N 0.0009779419269023912 -0.2538526083492176 1.0 13247 -71768 Vwce von Willebrand factor C and EGF domains Novel U 0.0009774039936719043 -0.2538581802439354 1.0 13248 -212508 Mtg1 mitochondrial ribosome-associated GTPase 1 Novel N 0.000977239060145936 -0.2538598886199755 1.0 13249 -69639 Exosc8 exosome component 8 Novel N 0.000976929039487065 -0.2538630998037687 1.0 13250 -170736 Parvb parvin, beta Novel U 0.000976777694122508 -0.25386466743407954 1.0 13251 -14051 Eya4 EYA transcriptional coactivator and phosphatase 4 Novel U 0.0009767580633556767 -0.25386487076891706 1.0 13252 -380780 Serpina11 serine (or cysteine) peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 11 Novel U 0.0009766345123045932 -0.2538661505066427 1.0 13253 -229675 Rsbn1 rosbin, round spermatid basic protein 1 Novel U 0.0009764972596497735 -0.25386757216512934 1.0 13254 -93722 Pcdhga10 protocadherin gamma subfamily A, 10 Novel U 0.0009763976295756664 -0.25386860413016177 1.0 13255 -17357 Marcksl1 MARCKS-like 1 Novel U 0.0009762044295988646 -0.2538706052891704 1.0 13256 -100040937 Cldn34b1 claudin 34B1 Novel U 0.0009761469197584307 -0.25387120097420707 1.0 13257 -13086 Cyp2a4 cytochrome P450, family 2, subfamily a, polypeptide 4 Novel U 0.0009758551488510664 -0.2538742231276741 1.0 13258 -11677 Akr1b1 aldo-keto reductase family 1 member B Novel U 0.0009758163308550119 -0.25387462520320114 1.0 13259 -240960 Dnah14 dynein, axonemal, heavy chain 14 Novel U 0.0009757687636920947 -0.253875117902311 1.0 13260 -667268 Vmn1r116 vomeronasal 1 receptor 116 Novel U 0.0009754807860756488 -0.25387810076499534 1.0 13261 -269003 Sap130 Sin3A associated protein Novel N 0.0009753105594218817 -0.2538798639670792 1.0 13262 -232947 Ppp1r37 protein phosphatase 1, regulatory subunit 37 Novel U 0.0009752798607277679 -0.2538801819431436 1.0 13263 -68169 Ndnf neuron-derived neurotrophic factor Novel U 0.0009751577284878756 -0.2538814469848696 1.0 13264 -233033 Samd4b sterile alpha motif domain containing 4B Novel U 0.0009745736778814504 -0.2538874965618513 1.0 13265 -23992 Prkra protein kinase, interferon inducible double stranded RNA dependent activator Novel N 0.0009744221452792372 -0.25388906613156365 1.0 13266 -110323 Cox6b1 cytochrome c oxidase, subunit 6B1 Novel U 0.0009743523572624471 -0.2538897889935474 1.0 13267 -55987 Cpxm2 carboxypeptidase X, M14 family member 2 Novel U 0.0009742800346689981 -0.25389053810859286 1.0 13268 -78651 Lsm6 LSM6 homolog, U6 small nuclear RNA and mRNA degradation associated Novel N 0.0009742670121965315 -0.25389067299493456 1.0 13269 -22768 Zfy2 zinc finger protein 2, Y-linked Novel U 0.0009742663634896208 -0.2538906797142194 1.0 13270 -27378 Tcl1b3 T cell leukemia/lymphoma 1B, 3 Novel U 0.000974100046179063 -0.25389240242345484 1.0 13271 -66573 Dzip1 DAZ interacting protein 1 Novel U 0.0009736023326608074 -0.2538975577237154 1.0 13272 -75064 Zcchc13 zinc finger, CCHC domain containing 13 Novel U 0.0009734233059813192 -0.25389941207617645 1.0 13273 -22275 Urod uroporphyrinogen decarboxylase Novel U 0.0009727390633270949 -0.2539064994390956 1.0 13274 -19179 Psmc1 protease (prosome, macropain) 26S subunit, ATPase 1 Novel N 0.0009724644187865415 -0.2539093441982182 1.0 13275 -668661 2410002F23Rik RIKEN cDNA 2410002F23 gene Novel U 0.0009715354062527077 -0.253918966879504 1.0 13276 -13079 Cyp21a1 cytochrome P450, family 21, subfamily a, polypeptide 1 Novel N 0.000971380698578291 -0.25392056933650986 1.0 13277 -78088 Sowahb sosondowah ankyrin repeat domain family member B Novel U 0.0009708793724942514 -0.25392576205560813 1.0 13278 -18121 Nog noggin Novel U 0.0009708584185231134 -0.2539259790961524 1.0 13279 -234373 Sugp2 SURP and G patch domain containing 2 Novel U 0.0009707769861070472 -0.253926822570441 1.0 13280 -67553 Gstcd glutathione S-transferase, C-terminal domain containing Novel U 0.0009707678306255219 -0.2539269174026177 1.0 13281 -75178 Meiob meiosis specific with OB domains Novel N 0.0009704747695461934 -0.25392995291964354 1.0 13282 -69677 Il36b interleukin 36B Novel U 0.0009704306676769606 -0.2539304097253553 1.0 13283 -269593 Luzp1 leucine zipper protein 1 Novel U 0.0009704160777013757 -0.25393056084784277 1.0 13284 -17292 Mesp1 mesoderm posterior 1 Novel N 0.0009703331063825228 -0.2539314202620359 1.0 13285 -108013 Celf4 CUGBP, Elav-like family member 4 Novel N 0.0009701425018529878 -0.25393339453748703 1.0 13286 -353208 Zfp931 zinc finger protein 931 Novel U 0.0009701084276188114 -0.2539337474772845 1.0 13287 -103784 Dnaaf10 dynein axonemal assembly factor 10 Novel U 0.000970016932685836 -0.2539346951787925 1.0 13288 -98415 Nucks1 nuclear casein kinase and cyclin-dependent kinase substrate 1 Novel U 0.0009694267465023028 -0.25394080830788024 1.0 13289 -14429 Galr3 galanin receptor 3 Novel N 0.0009691792021856665 -0.25394337236377434 1.0 13290 -80285 Parp9 poly (ADP-ribose) polymerase family, member 9 Novel U 0.0009690557590716821 -0.25394465098349106 1.0 13291 -209239 Gan giant axonal neuropathy Novel N 0.0009680443964838919 -0.2539551266439286 1.0 13292 -71367 Chst9 carbohydrate sulfotransferase 9 Novel N 0.0009678012989428891 -0.25395764464026693 1.0 13293 -329738 Aknad1 AKNA domain containing 1 Novel U 0.0009676661050961203 -0.2539590449736875 1.0 13294 -71001 Mgat4e MGAT4 family, member E Novel U 0.0009676162359592234 -0.2539595615165681 1.0 13295 -109229 Fam118b family with sequence similarity 118, member B Novel U 0.0009674397880963445 -0.2539613891577314 1.0 13296 -17840 Mup1 major urinary protein 1 Novel U 0.0009673882544098984 -0.25396192294196157 1.0 13297 -56218 Patz1 POZ (BTB) and AT hook containing zinc finger 1 Novel N 0.000967221460410704 -0.25396365058872217 1.0 13298 -16866 Lhb luteinizing hormone beta Novel U 0.0009671315651595314 -0.2539645817207787 1.0 13299 -83691 Crispld1 cysteine-rich secretory protein LCCL domain containing 1 Novel N 0.0009667911078864138 -0.25396810816602167 1.0 13300 -116903 Calcb calcitonin-related polypeptide, beta Novel N 0.0009667414391850205 -0.2539686226327979 1.0 13301 -68226 Efcab2 EF-hand calcium binding domain 2 Novel U 0.0009666997945580025 -0.25396905398647557 1.0 13302 -59048 C1galt1c1 C1GALT1-specific chaperone 1 Novel U 0.0009663427919909815 -0.253972751807329 1.0 13303 -66611 Ribc1 RIB43A domain with coiled-coils 1 Novel U 0.0009663369927298268 -0.2539728118758854 1.0 13304 -53897 Gal3st1 galactose-3-O-sulfotransferase 1 Novel N 0.0009662819320591058 -0.25397338219250265 1.0 13305 -52521 Zfp622 zinc finger protein 622 Novel U 0.0009660406711454385 -0.2539758811651154 1.0 13306 -77044 Arid2 AT-rich interaction domain 2 Novel U 0.0009659050071295115 -0.2539772863685327 1.0 13307 -56205 Ensa endosulfine alpha Novel U 0.0009656657135668506 -0.25397976496338837 1.0 13308 -13120 Cyp4b1 cytochrome P450, family 4, subfamily b, polypeptide 1 Novel N 0.000965514630127516 -0.2539813298806864 1.0 13309 -54450 Il36rn interleukin 36 receptor antagonist Novel U 0.0009647675991517702 -0.25398906760297585 1.0 13310 -93688 Klhl1 kelch-like 1 Novel U 0.0009646632697492214 -0.2539901482434978 1.0 13311 -238829 Cldn34b3 claudin 34B3 Novel U 0.0009641100534353976 -0.25399587843989035 1.0 13312 -13404 Dmc1 DNA meiotic recombinase 1 Novel U 0.0009633413266636061 -0.25400384088652206 1.0 13313 -15122 Hba-a1 hemoglobin alpha, adult chain 1 Novel U 0.000962789463887767 -0.2540095570630127 1.0 13314 -116913 Tpbpb trophoblast specific protein beta Novel U 0.0009624226674229647 -0.25401335632873734 1.0 13315 -67917 Zcchc3 zinc finger, CCHC domain containing 3 Novel U 0.0009624104013719003 -0.254013483380091 1.0 13316 -100126773 Esp34 exocrine gland secreted peptide 34 Novel U 0.0009619456587780305 -0.25401829716860075 1.0 13317 -23879 Fxr2 FMR1 autosomal homolog 2 Novel U 0.0009618160557618522 -0.2540196395923819 1.0 13318 -70579 Zc3h11a zinc finger CCCH type containing 11A Novel U 0.0009618117616297698 -0.2540196840708608 1.0 13319 -381113 Cdkl4 cyclin dependent kinase like 4 Novel U 0.0009617332709085739 -0.2540204970751707 1.0 13320 -14060 F13b coagulation factor XIII, beta subunit Novel U 0.0009615103887835691 -0.25402280568089464 1.0 13321 -192163 Pcdha3 protocadherin alpha 3 Novel U 0.0009615016633051254 -0.25402289605911355 1.0 13322 -18417 Cldn11 claudin 11 Novel U 0.0009613082375953999 -0.25402489955625634 1.0 13323 -12858 Cox5a cytochrome c oxidase subunit 5A Novel U 0.0009611891197796322 -0.2540261333746763 1.0 13324 -269209 Stk36 serine/threonine kinase 36 Novel U 0.0009611819640437508 -0.2540262074935533 1.0 13325 -26366 Ceacam10 CEA cell adhesion molecule 10 Novel U 0.0009610990305580142 -0.25402706651587226 1.0 13326 -67610 Rspry1 ring finger and SPRY domain containing 1 Novel U 0.0009606626922503314 -0.2540315860937194 1.0 13327 -207818 Smagp small cell adhesion glycoprotein Novel U 0.0009606053999366034 -0.2540321795256216 1.0 13328 -319996 Golm2 golgi membrane protein 2 Novel U 0.0009604328568510467 -0.25403396672122974 1.0 13329 -114774 Pawr PRKC, apoptosis, WT1, regulator Novel U 0.0009599994953783899 -0.25403845546511755 1.0 13330 -56210 Rev1 REV1, DNA directed polymerase Novel N 0.0009597850061946086 -0.2540406771370322 1.0 13331 -668960 Btbd35f10 BTB domain containing 35, family member 10 Novel U 0.0009597458010557038 -0.2540410832225722 1.0 13332 -72930 Ppp2r2b protein phosphatase 2, regulatory subunit B, beta Novel N 0.0009597252030020061 -0.25404129657653524 1.0 13333 -78656 Brd8 bromodomain containing 8 Novel N 0.0009595797171325882 -0.25404280351438807 1.0 13334 -195209 Zfp469 zinc finger protein 469 Novel U 0.0009593780495421557 -0.25404489238066036 1.0 13335 -66151 Prr13 proline rich 13 Novel U 0.0009590124116673942 -0.2540486796457474 1.0 13336 -212569 Zfp273 zinc finger protein 273 Novel U 0.0009585198549513122 -0.25405378153202063 1.0 13337 -244694 Kdm4d lysine (K)-specific demethylase 4D Novel U 0.0009584438388344249 -0.2540545689044605 1.0 13338 -394434 Ugt1a9 UDP glucuronosyltransferase 1 family, polypeptide A9 Novel U 0.000958320192754066 -0.2540558496264962 1.0 13339 -100126765 Esp36 exocrine gland secreted peptide 36 Novel U 0.0009583047132246566 -0.25405600996295297 1.0 13340 -23856 Dido1 death inducer-obliterator 1 Novel U 0.0009582750595751069 -0.2540563171144802 1.0 13341 -99031 Osbpl6 oxysterol binding protein-like 6 Novel N 0.0009576812053021 -0.2540624682375181 1.0 13342 -225875 Lrfn4 leucine rich repeat and fibronectin type III domain containing 4 Novel U 0.0009576451755604847 -0.2540628414323973 1.0 13343 -71733 Susd2 sushi domain containing 2 Novel U 0.0009571068683323182 -0.2540684172009708 1.0 13344 -12752 Cln3 CLN3 lysosomal/endosomal transmembrane protein, battenin Novel U 0.0009570232069494686 -0.2540692837628241 1.0 13345 -56456 Actl6a actin-like 6A Novel N 0.0009567487167907378 -0.25407212692286485 1.0 13346 -15214 Hey2 hairy/enhancer-of-split related with YRPW motif 2 Novel U 0.0009558254486611021 -0.25408169010380083 1.0 13347 -109205 Sobp sine oculis binding protein Novel U 0.0009555718909165044 -0.2540843164465841 1.0 13348 -53621 Cnot4 CCR4-NOT transcription complex, subunit 4 Novel U 0.0009553482918018491 -0.25408663247886326 1.0 13349 -212090 Tmem60 transmembrane protein 60 Novel U 0.0009551541884662347 -0.25408864299483275 1.0 13350 -68135 Eif3h eukaryotic translation initiation factor 3, subunit H Novel U 0.0009550784738796668 -0.25408942724403144 1.0 13351 -114566 Krt82 keratin 82 Novel U 0.0009548786405209219 -0.2540914971113922 1.0 13352 -13593 Ebf3 early B cell factor 3 Novel U 0.0009543853654225048 -0.254096606438646 1.0 13353 -20683 Sp1 trans-acting transcription factor 1 Novel U 0.000953963476456705 -0.2541009763506849 1.0 13354 -104806 Fancm Fanconi anemia, complementation group M Novel U 0.0009537431138561087 -0.2541032588592579 1.0 13355 -545762 Gm16367 predicted gene 16367 Novel U 0.0009534465762573069 -0.25410633038595815 1.0 13356 -71701 Pnpt1 polyribonucleotide nucleotidyltransferase 1 Novel U 0.0009533147496210274 -0.2541076958419231 1.0 13357 -20897 Stra6 stimulated by retinoic acid gene 6 Novel U 0.0009533036785852281 -0.254107810515348 1.0 13358 -13406 Dmp1 dentin matrix protein 1 Novel U 0.0009532822581069121 -0.25410803238795826 1.0 13359 -319701 Fbxo48 F-box protein 48 Novel U 0.0009528766558078941 -0.25411223360323804 1.0 13360 -14422 B4galnt2 beta-1,4-N-acetyl-galactosaminyl transferase 2 Novel N 0.0009524994132986633 -0.25411614106874747 1.0 13361 -244666 Sprtn SprT-like N-terminal domain Novel U 0.0009523352706011547 -0.25411784125341236 1.0 13362 -11435 Chrna1 cholinergic receptor nicotinic alpha 1 subunit Novel U 0.0009521229549140114 -0.2541200404123202 1.0 13363 -269702 Mphosph9 M-phase phosphoprotein 9 Novel U 0.000951983506017981 -0.2541214848194012 1.0 13364 -434016 Vmn1r7 vomeronasal 1 receptor 7 Novel U 0.0009518926740662677 -0.25412242565377113 1.0 13365 -56485 Slc2a5 solute carrier family 2 (facilitated glucose transporter), member 5 Novel U 0.0009515390452769246 -0.2541260885291462 1.0 13366 -14430 Galt galactose-1-phosphate uridyl transferase Novel U 0.0009515189158527618 -0.2541262970290599 1.0 13367 -14620 Gjb3 gap junction protein, beta 3 Novel U 0.0009513883405150201 -0.2541276495241159 1.0 13368 -217708 Lin52 lin-52 DREAM MuvB core complex component Novel U 0.000951048183297354 -0.2541311728613944 1.0 13369 -73547 Dusp21 dual specificity phosphatase 21 Novel N 0.0009508416619891032 -0.2541333120023162 1.0 13370 -64706 Scube1 signal peptide, CUB domain, EGF-like 1 Novel U 0.0009505778522745749 -0.25413604453466704 1.0 13371 -240479 Dipk1c divergent protein kinase domain 1C Novel U 0.0009504471782877483 -0.2541373980515269 1.0 13372 -546903 Vmn1r39 vomeronasal 1 receptor 39 Novel U 0.0009500643934769374 -0.2541413629240139 1.0 13373 -56357 Ivd isovaleryl coenzyme A dehydrogenase Novel N 0.0009497891948576982 -0.25414421342226534 1.0 13374 -16005 Igfals insulin-like growth factor binding protein, acid labile subunit Novel U 0.0009497768297257244 -0.25414434149989584 1.0 13375 -170947 Myoz3 myozenin 3 Novel U 0.000949654033438983 -0.2541456134197972 1.0 13376 -80287 Apobec3 apolipoprotein B mRNA editing enzyme, catalytic polypeptide 3 Novel U 0.0009494161470709726 -0.25414807743897694 1.0 13377 -277973 Slc9a5 solute carrier family 9 (sodium/hydrogen exchanger), member 5 Novel N 0.0009492840586985237 -0.2541494456059966 1.0 13378 -171249 Vmn1r213 vomeronasal 1 receptor 213 Novel U 0.0009491352407462066 -0.25415098705745454 1.0 13379 -108811 Ccdc122 coiled-coil domain containing 122 Novel U 0.000949108939108316 -0.25415125948895523 1.0 13380 -105837 Mtbp Mdm2, transformed 3T3 cell double minute p53 binding protein Novel N 0.0009490743166417587 -0.25415161810732567 1.0 13381 -70846 Ttc6 tetratricopeptide repeat domain 6 Novel U 0.0009482257603856828 -0.25416040742513135 1.0 13382 -73382 Prss52 serine protease 52 Novel U 0.0009479364338625651 -0.2541634042597467 1.0 13383 -81535 Sgpp1 sphingosine-1-phosphate phosphatase 1 Novel U 0.0009478753581836811 -0.2541640368796208 1.0 13384 -231086 Hadhb hydroxyacyl-CoA dehydrogenase trifunctional multienzyme complex subunit beta Novel U 0.0009477790842456658 -0.25416503408190594 1.0 13385 -269878 Megf8 multiple EGF-like-domains 8 Novel U 0.0009476681587851221 -0.25416618304417976 1.0 13386 -94109 Csmd1 CUB and Sushi multiple domains 1 Novel U 0.0009476427258239741 -0.2541664464779553 1.0 13387 -107885 Mthfs 5, 10-methenyltetrahydrofolate synthetase Novel U 0.0009473777231442338 -0.2541691913670005 1.0 13388 -14582 Gfi1b growth factor independent 1B Novel N 0.000946997252850366 -0.25417313226579713 1.0 13389 -15486 Hsd17b2 hydroxysteroid (17-beta) dehydrogenase 2 Novel U 0.0009468847069525546 -0.2541742980125069 1.0 13390 -17836 Mug1 murinoglobulin 1 Novel U 0.0009467975464930246 -0.25417520081768147 1.0 13391 -66108 Ndufa9 NADH:ubiquinone oxidoreductase subunit A9 Novel N 0.0009466766351306981 -0.2541764532135977 1.0 13392 -217716 Mlh3 mutL homolog 3 Novel U 0.0009464521779505995 -0.25417877813369055 1.0 13393 -218304 Prss47 serine protease 47 Novel U 0.0009460176463253522 -0.2541832789979804 1.0 13394 -18039 Nefl neurofilament, light polypeptide Novel U 0.0009449601456519227 -0.2541942325551923 1.0 13395 -19384 Ran RAN, member RAS oncogene family Novel U 0.0009449311513528239 -0.25419453287718924 1.0 13396 -239447 Colec10 collectin sub-family member 10 Novel U 0.0009443004834334207 -0.25420106531476633 1.0 13397 -214111 Slc24a1 solute carrier family 24 (sodium/potassium/calcium exchanger), member 1 Novel U 0.0009442635601558277 -0.2542014477648618 1.0 13398 -11519 Add2 adducin 2 Novel U 0.0009437576590338034 -0.2542066878720532 1.0 13399 -381974 Mrgprg MAS-related GPR, member G Novel U 0.0009436943320250701 -0.25420734381112786 1.0 13400 -22693 Zfp30 zinc finger protein 30 Novel U 0.0009436349723842311 -0.25420795865633633 1.0 13401 -353155 Gjd3 gap junction protein, delta 3 Novel U 0.000943616087004711 -0.2542081542704766 1.0 13402 -242425 Gabbr2 gamma-aminobutyric acid type B receptor subunit 2 Novel U 0.000943587225425432 -0.254208453217766 1.0 13403 -624931 LOC624931 PRAME family member 8-like Novel U 0.0009433480734095326 -0.25421093034648495 1.0 13404 -67895 Ppa1 pyrophosphatase (inorganic) 1 Novel U 0.0009423982771530014 -0.2542207683048872 1.0 13405 -272322 Bmal2 basic helix-loop-helix ARNT like 2 Novel N 0.0009423530016087362 -0.25422123726748636 1.0 13406 -243085 Ugt2b35 UDP glucuronosyltransferase 2 family, polypeptide B35 Novel U 0.0009423138900301776 -0.25422164238393136 1.0 13407 -628100 Fbxo39 F-box protein 39 Novel U 0.0009422091394618256 -0.25422272738687485 1.0 13408 -109820 Pgc progastricsin (pepsinogen C) Novel U 0.0009420826799402734 -0.25422403725044196 1.0 13409 -94242 Tinagl1 tubulointerstitial nephritis antigen-like 1 Novel U 0.0009413937402367263 -0.25423117326524364 1.0 13410 -74068 Asz1 ankyrin repeat, SAM and basic leucine zipper domain containing 1 Novel U 0.0009411721115231346 -0.2542334688881734 1.0 13411 -12111 Bgn biglycan Novel U 0.0009411120871122335 -0.2542340906190483 1.0 13412 -244631 Pskh1 protein serine kinase H1 Novel U 0.0009410218872554969 -0.2542350249061992 1.0 13413 -69797 1600029I14Rik RIKEN cDNA 1600029I14 gene Novel U 0.0009410094206847314 -0.25423515403452934 1.0 13414 -217364 Engase endo-beta-N-acetylglucosaminidase Novel U 0.0009408424547305378 -0.2542368834623942 1.0 13415 -28109 Nopchap1 NOP protein chaperone 1 Novel N 0.0009408386410053815 -0.254236922964834 1.0 13416 -12661 Chl1 cell adhesion molecule L1-like Novel N 0.0009408143532855704 -0.2542371745362374 1.0 13417 -67337 Cstf1 cleavage stimulation factor, 3' pre-RNA, subunit 1 Novel U 0.0009405161491541817 -0.2542402633248274 1.0 13418 -66194 Pycr3 pyrroline-5-carboxylate reductase 3 Novel N 0.0009404702781253111 -0.2542407384554365 1.0 13419 -20195 S100a11 S100 calcium binding protein A11 Novel N 0.0009403404460072062 -0.25424208325224784 1.0 13420 -11546 Parp2 poly (ADP-ribose) polymerase family, member 2 Novel N 0.0009400202093362398 -0.2542454002531585 1.0 13421 -20716 Serpina3n serine (or cysteine) peptidase inhibitor, clade A, member 3N Novel U 0.0009400111320696785 -0.2542454942751871 1.0 13422 -56018 Stard10 StAR related lipid transfer domain containing 10 Novel U 0.0009395289325811485 -0.25425048888163787 1.0 13423 -102640804 Tcstv1b 2 cell stage variable group member 1B Novel U 0.0009395004724018576 -0.2542507836712394 1.0 13424 -53319 Nxf1 nuclear RNA export factor 1 Novel N 0.0009394270638262677 -0.2542515440348522 1.0 13425 -232236 Ccdc174 coiled-coil domain containing 174 Novel U 0.0009388129434767504 -0.25425790507324436 1.0 13426 -544678 Cfap74 cilia and flagella associated protein 74 Novel N 0.0009386749283325174 -0.2542593346295713 1.0 13427 -12832 Col5a2 collagen, type V, alpha 2 Novel U 0.0009386199258139889 -0.2542599043438501 1.0 13428 -76265 Tsen54 tRNA splicing endonuclease subunit 54 Novel N 0.0009383041391936468 -0.25426317525128267 1.0 13429 -12653 Chgb chromogranin B Novel U 0.0009379984572482685 -0.2542663414948242 1.0 13430 -66423 Coprs coordinator of PRMT5, differentiation stimulator Novel U 0.0009377309712923788 -0.2542691121055622 1.0 13431 -18426 Ovol1 ovo like zinc finger 1 Novel U 0.0009375772728535377 -0.2542707041089391 1.0 13432 -226153 Twnk twinkle mtDNA helicase Novel U 0.0009375680497815748 -0.2542707996412153 1.0 13433 -16427 Itih4 inter alpha-trypsin inhibitor, heavy chain 4 Novel U 0.0009375627562210281 -0.2542708544717414 1.0 13434 -211660 Cspp1 centrosome and spindle pole associated protein 1 Novel U 0.0009375511452368269 -0.2542709747379341 1.0 13435 -12869 Cox8b cytochrome c oxidase subunit 8B Novel U 0.0009373976796168894 -0.2542725643297805 1.0 13436 -70988 Alyreffm1 Aly/REF export factor family member 1 Novel U 0.0009368657253540822 -0.25427807429454763 1.0 13437 -72195 Supt7l SPT7-like, STAGA complex gamma subunit Novel N 0.0009361866535147311 -0.2542851080983363 1.0 13438 -66467 Gtf2h5 general transcription factor IIH, polypeptide 5 Novel U 0.0009358375097214558 -0.2542887245182696 1.0 13439 -26939 Polr3e polymerase (RNA) III (DNA directed) polypeptide E Novel U 0.000935831755116865 -0.25428878412427475 1.0 13440 -80884 Maged2 MAGE family member D2 Novel N 0.0009351233765207877 -0.2542961214864862 1.0 13441 -50760 Fbxo17 F-box protein 17 Novel U 0.0009351171549263617 -0.2542961859295568 1.0 13442 -66801 Prkrip1 Prkr interacting protein 1 (IL11 inducible) Novel N 0.0009349552651900115 -0.25429786277812405 1.0 13443 -110902 Chrna2 cholinergic receptor nicotinic alpha 2 subunit Novel N 0.0009349301230770967 -0.2542981231993031 1.0 13444 -12866 Cox7a2 cytochrome c oxidase subunit 7A2 Novel U 0.0009348607054731787 -0.2542988422245625 1.0 13445 -110948 Hlcs holocarboxylase synthetase (biotin- [propriony-Coenzyme A-carboxylase (ATP-hydrolysing)] ligase) Novel U 0.000934422388692469 -0.25430338229536825 1.0 13446 -68274 Toporsl topoisomerase I binding, arginine/serine-rich like Novel U 0.0009341229188686307 -0.254306484193959 1.0 13447 -106052 Fbxo4 F-box protein 4 Novel U 0.0009340015141016335 -0.2543077417005446 1.0 13448 -17420 Mnat1 menage a trois 1 Novel N 0.000933977035048285 -0.25430799525377445 1.0 13449 -100072 Camta1 calmodulin binding transcription activator 1 Novel U 0.0009339241497519707 -0.2543085430379352 1.0 13450 -14776 Gpx2 glutathione peroxidase 2 Novel U 0.000933409338840143 -0.2543138754324364 1.0 13451 -20194 S100a10 S100 calcium binding protein A10 (calpactin) Novel U 0.0009333865259843021 -0.25431411172724727 1.0 13452 -26372 Clcn6 chloride channel, voltage-sensitive 6 Novel N 0.0009333513863536916 -0.25431447570238597 1.0 13453 -56642 Ankrd2 ankyrin repeat domain 2 Novel N 0.0009333302439424905 -0.2543146946947862 1.0 13454 -57339 Jph1 junctophilin 1 Novel N 0.0009331274570433495 -0.2543167951548212 1.0 13455 -446101 Xrra1 X-ray radiation resistance associated 1 Novel N 0.0009327402673375741 -0.2543208056530655 1.0 13456 -20289 Scx scleraxis scleraxis bHLH transcription factor Novel N 0.0009325880238475295 -0.2543223825861306 1.0 13457 -110119 Mpi mannose phosphate isomerase Novel U 0.0009325760862847018 -0.25432250623501396 1.0 13458 -320705 Bend6 BEN domain containing 6 Novel U 0.0009323760549535145 -0.2543245781529667 1.0 13459 -234865 Nup133 nucleoporin 133 Novel U 0.0009322940711934963 -0.2543254273380579 1.0 13460 -231986 Jazf1 JAZF zinc finger 1 Novel U 0.0009319736866905267 -0.2543287458702076 1.0 13461 -26992 Brd7 bromodomain containing 7 Novel N 0.0009317839734028149 -0.2543307109142052 1.0 13462 -217057 Ptrh2 peptidyl-tRNA hydrolase 2 Novel U 0.0009306114304970529 -0.25434285607507784 1.0 13463 -71699 Slc41a3 solute carrier family 41, member 3 Novel N 0.0009304558775842007 -0.25434446728703564 1.0 13464 -244141 Nars2 asparaginyl-tRNA synthetase 2 (mitochondrial)(putative) Novel N 0.0009303571873170184 -0.25434548951757885 1.0 13465 -72017 Cyb5r1 cytochrome b5 reductase 1 Novel N 0.0009303303217553381 -0.2543457677901836 1.0 13466 -232974 Erfl ETS repressor factor like Novel U 0.0009297353187586015 -0.25435193081166413 1.0 13467 -84653 Hes7 hes family bHLH transcription factor 7 Novel U 0.0009297175748609881 -0.2543521146023723 1.0 13468 -171258 Vmn1r202 vomeronasal 1 receptor 202 Novel U 0.0009295586789596585 -0.2543537604408948 1.0 13469 -72832 Crtac1 cartilage acidic protein 1 Novel U 0.0009294022810946485 -0.2543553804048393 1.0 13470 -381073 Npw neuropeptide W Novel N 0.0009293847989571436 -0.2543555614842449 1.0 13471 -113846 Vmn1r47 vomeronasal 1 receptor 47 Novel U 0.000928962008305721 -0.2543599407359138 1.0 13472 -12365 Casp14 caspase 14 Novel U 0.0009289057329509185 -0.25436052363418893 1.0 13473 -57782 Rbak RB-associated KRAB zinc finger Novel N 0.0009283380293066632 -0.25436640388987386 1.0 13474 -67821 Atp1b4 ATPase Na+/K+ transporting, beta 4 polypeptide Novel N 0.0009281512730920917 -0.2543683383046051 1.0 13475 -209294 Csta1 cystatin A1 Novel U 0.0009281456767319783 -0.2543683962715192 1.0 13476 -665989 Ppihl peptidyl prolyl isomerase H like Novel U 0.0009281027959861381 -0.254368840428875 1.0 13477 -237320 Aldh8a1 aldehyde dehydrogenase 8 family, member A1 Novel N 0.0009273195486773825 -0.2543769532787512 1.0 13478 -22634 Plagl1 pleiomorphic adenoma gene-like 1 Novel U 0.0009272127461476663 -0.2543780595358431 1.0 13479 -27050 Rps3 ribosomal protein S3 Novel U 0.0009269767527432055 -0.2543805039477686 1.0 13480 -29808 Mga MAX gene associated Novel U 0.0009268830896811923 -0.25438147410668593 1.0 13481 -216443 Mars1 methionine-tRNA synthetase 1 Novel U 0.0009267281811435319 -0.25438307864422666 1.0 13482 -214742 Rcor3 REST corepressor 3 Novel U 0.0009266813028632853 -0.2543835642079124 1.0 13483 -20916 Sucla2 succinate-Coenzyme A ligase, ADP-forming, beta subunit Novel N 0.0009258056199997938 -0.25439263450222593 1.0 13484 -74591 Abca12 ATP-binding cassette, sub-family A member 12 Novel U 0.0009258033663893712 -0.2543926578450486 1.0 13485 -664883 Nova1 NOVA alternative splicing regulator 1 Novel N 0.0009257892332400564 -0.2543928042357446 1.0 13486 -434881 Samt2 spermatogenesis associated multipass transmembrane protein 2 Novel U 0.0009255924184825581 -0.25439484283653285 1.0 13487 -16478 Jund jun D proto-oncogene Novel N 0.0009254930486468794 -0.25439587210602416 1.0 13488 -213469 Lgi3 leucine-rich repeat LGI family, member 3 Novel N 0.0009253102394597058 -0.25439776563757543 1.0 13489 -27967 Cherp calcium homeostasis endoplasmic reticulum protein Novel N 0.000925209623337107 -0.2543988078160657 1.0 13490 -56087 Dnah10 dynein, axonemal, heavy chain 10 Novel N 0.0009252039576307277 -0.25439886650126614 1.0 13491 -100504125 Btf3l4b basic transcription factor 3 like 4B Novel U 0.0009246152544235368 -0.25440496426973364 1.0 13492 -52715 Ccdc43 coiled-coil domain containing 43 Novel U 0.0009240690201495393 -0.25441062214638727 1.0 13493 -107732 Mrpl10 mitochondrial ribosomal protein L10 Novel U 0.000923389041540131 -0.2544176653424704 1.0 13494 -26371 Ciao1 cytosolic iron-sulfur protein assembly 1 Novel N 0.0009227803813691689 -0.2544239698245126 1.0 13495 -620672 Vmn2r67 vomeronasal 2, receptor 67 Novel U 0.0009222351763503757 -0.2544296170401746 1.0 13496 -72649 Tmem209 transmembrane protein 209 Novel U 0.0009220591612400189 -0.2544314401989015 1.0 13497 -230085 Phf24 PHD finger protein 24 Novel U 0.0009218194016129358 -0.2544339236212372 1.0 13498 -74326 Hnrnpr heterogeneous nuclear ribonucleoprotein R Novel N 0.0009217246903774791 -0.25443490463710056 1.0 13499 -15492 Hsd3b1 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 1 Novel U 0.0009214776949526361 -0.2544374630075915 1.0 13500 -630579 Zfp808 zinc finger protein 808 Novel U 0.000920916621594678 -0.25444327458698895 1.0 13501 -67815 Sec14l2 SEC14-like lipid binding 2 Novel U 0.0009207548569856622 -0.2544449501394914 1.0 13502 -93677 Lmod2 leiomodin 2 (cardiac) Novel U 0.0009205406220793648 -0.2544471691776083 1.0 13503 -76747 Dapl1 death associated protein-like 1 Novel U 0.000920528639701896 -0.25444729329068017 1.0 13504 -214384 Myocd myocardin Novel U 0.0009202199704944882 -0.25445049047618357 1.0 13505 -224171 Cip2a cell proliferation regulating inhibitor of protein phosphatase 2A Novel U 0.0009200111154332901 -0.2544526537900417 1.0 13506 -14133 Fcna ficolin A Novel U 0.0009200014556069161 -0.25445275384620575 1.0 13507 -66727 Plaat5 phospholipase A and acyltransferase 5 Novel U 0.0009197132413826059 -0.2544557391596666 1.0 13508 -192775 Kcnh6 potassium voltage-gated channel, subfamily H (eag-related), member 6 Novel U 0.0009194215796936256 -0.2544587601818532 1.0 13509 -21828 Thbs4 thrombospondin 4 Novel U 0.0009191591324945869 -0.25446147860131335 1.0 13510 -104010 Cdh22 cadherin 22 Novel U 0.0009190057269753206 -0.25446306757063897 1.0 13511 -71989 Rpusd4 RNA pseudouridylate synthase domain containing 4 Novel N 0.0009184951380410175 -0.2544683562340358 1.0 13512 -66784 Fam187a family with sequence similarity 187, member A Novel U 0.0009184221437437682 -0.25446911230656716 1.0 13513 -16516 Kcnj15 potassium inwardly-rectifying channel, subfamily J, member 15 Novel N 0.0009181274385406322 -0.2544721648533733 1.0 13514 -20362 Septin8 septin 8 Novel U 0.0009180430088495267 -0.2544730393733383 1.0 13515 -12095 Bglap3 bone gamma-carboxyglutamate protein 3 Novel U 0.0009179383097214425 -0.2544741238434652 1.0 13516 -192678 Rassf3 Ras association (RalGDS/AF-6) domain family member 3 Novel U 0.0009174993007506333 -0.25447867108395317 1.0 13517 -332309 Grxcr2 glutaredoxin, cysteine rich 2 Novel N 0.0009174496224927452 -0.25447918564971533 1.0 13518 -71521 Pds5a PDS5 cohesin associated factor A Novel U 0.0009172827368588961 -0.2544809142456247 1.0 13519 -14775 Gpx1 glutathione peroxidase 1 Novel U 0.000917150083852656 -0.2544822882611026 1.0 13520 -272158 Poln DNA polymerase N Novel N 0.0009170359147628227 -0.254483470820782 1.0 13521 -241073 Dytn dystrotelin Novel U 0.0009167806059600026 -0.25448611530096876 1.0 13522 -546729 Calhm1 calcium homeostasis modulator 1 Novel U 0.0009166767656440104 -0.2544871908755482 1.0 13523 -11444 Chrnb2 cholinergic receptor nicotinic beta 2 subunit Novel N 0.0009166205278306514 -0.2544877733849703 1.0 13524 -68394 Ccdc163 coiled-coil domain containing 163 Novel U 0.0009163972640316077 -0.25449008594406136 1.0 13525 -228807 Zfp341 zinc finger protein 341 Novel U 0.0009161519496422509 -0.25449262690244207 1.0 13526 -434797 Pwwp4c PWWP domain containing 4C Novel U 0.0009158420608220987 -0.2544958367206542 1.0 13527 -628923 Gm14744 predicted gene 14744 Novel U 0.0009157638506937989 -0.254496646818592 1.0 13528 -12448 Ccne2 cyclin E2 Novel U 0.000915445383057184 -0.25449994549590305 1.0 13529 -110257 Hba-a2 hemoglobin alpha, adult chain 2 Novel U 0.0009153556331025252 -0.25450087512298303 1.0 13530 -380842 Stmnd1 stathmin domain containing 1 Novel U 0.0009152665793851925 -0.2545017975384597 1.0 13531 -234776 Atmin ATM interactor Novel N 0.0009149058930664825 -0.25450553351549193 1.0 13532 -27392 Pign phosphatidylinositol glycan anchor biosynthesis, class N Novel U 0.0009148052026549233 -0.25450657646346486 1.0 13533 -66214 Rgcc regulator of cell cycle Novel U 0.0009138898487811549 -0.25451605766879876 1.0 13534 -100504207 Arhgap33os Rho GTPase activating protein 33, opposite strand Novel U 0.0009138875860787232 -0.25451608110579615 1.0 13535 -72393 Faim2 Fas apoptotic inhibitory molecule 2 Novel U 0.0009136172642121778 -0.25451888109080345 1.0 13536 -72514 Fgfbp3 fibroblast growth factor binding protein 3 Novel N 0.0009131947057712659 -0.25452325793724356 1.0 13537 -434008 Tmem178b transmembrane protein 178B Novel U 0.0009128808947393811 -0.25452650838159585 1.0 13538 -229665 Ampd1 adenosine monophosphate deaminase 1 Novel U 0.000912685672823285 -0.25452853048378515 1.0 13539 -68796 Tmem214 transmembrane protein 214 Novel U 0.0009125191392162337 -0.2545302554334125 1.0 13540 -113848 Vmn1r42 vomeronasal 1 receptor 42 Novel U 0.0009123054625235598 -0.254532468689571 1.0 13541 -20687 Sp3 trans-acting transcription factor 3 Novel N 0.0009116487989114414 -0.25453927038967866 1.0 13542 -54418 Fmn2 formin 2 Novel U 0.0009113397574414294 -0.25454247143106584 1.0 13543 -68212 Tmbim4 transmembrane BAX inhibitor motif containing 4 Novel N 0.0009113285734386945 -0.25454258727459855 1.0 13544 -246080 Defb7 defensin beta 7 Novel U 0.0009112515566339032 -0.25454338501213075 1.0 13545 -17428 Mnt max binding protein Novel N 0.0009111866723009993 -0.254544057081918 1.0 13546 -21452 Tcn2 transcobalamin 2 Novel U 0.000911113817092225 -0.2545448117137755 1.0 13547 -213409 Lemd1 LEM domain containing 1 Novel U 0.0009108122908975159 -0.2545479349121882 1.0 13548 -66653 Brf2 BRF2, RNA polymerase III transcription initiation factor 50kDa subunit Novel N 0.0009105699037244463 -0.2545504455505588 1.0 13549 -68427 Slc39a13 solute carrier family 39 (metal ion transporter), member 13 Novel N 0.0009092130002276135 -0.2545645003123732 1.0 13550 -208104 Mlxip MLX interacting protein Novel N 0.000909083940328941 -0.254565837110561 1.0 13551 -13522 Adam28 a disintegrin and metallopeptidase domain 28 Novel N 0.0009089997083381815 -0.25456670958275235 1.0 13552 -436240 Foxr2 forkhead box R2 Novel U 0.0009087857447515725 -0.25456892581054874 1.0 13553 -52013 R3hcc1l R3H domain and coiled-coil containing 1 like Novel U 0.000908340976674925 -0.25457353270366573 1.0 13554 -17345 Mki67 antigen identified by monoclonal antibody Ki 67 Novel U 0.0009082262679202948 -0.25457472085317534 1.0 13555 -233801 Acsm4 acyl-CoA synthetase medium-chain family member 4 Novel U 0.0009081816470495679 -0.25457518303468746 1.0 13556 -100039707 Mthfsl 5, 10-methenyltetrahydrofolate synthetase-like Novel U 0.0009080734466624299 -0.25457630377074053 1.0 13557 -209334 Gen1 GEN1, Holliday junction 5' flap endonuclease Novel U 0.0009079589361832279 -0.2545774898665198 1.0 13558 -619597 Gal3st2c galactose-3-O-sulfotransferase 2C Novel U 0.0009077802828772491 -0.2545793403515902 1.0 13559 -24116 Nelfa negative elongation factor complex member A, Whsc2 Novel U 0.0009071757666090497 -0.2545856019112238 1.0 13560 -232035 Ccser1 coiled-coil serine rich 1 Novel U 0.0009071415074478948 -0.2545859567664888 1.0 13561 -245877 Map7d1 MAP7 domain containing 1 Novel U 0.0009069977387810446 -0.25458744591761395 1.0 13562 -72391 Cdkn3 cyclin dependent kinase inhibitor 3 Novel U 0.000906728075849668 -0.2545902390773925 1.0 13563 -640530 Gm7298 murinoglobulin 1 pseudogene Novel U 0.0009064164923179482 -0.25459346644937125 1.0 13564 -230810 Slc30a2 solute carrier family 30 (zinc transporter), member 2 Novel U 0.000905941204937488 -0.25459838946043384 1.0 13565 -81013 Vmn1r65 vomeronasal 1 receptor 65 Novel U 0.000905906129823833 -0.25459875276730803 1.0 13566 -15273 Hivep2 human immunodeficiency virus type I enhancer binding protein 2 Novel U 0.0009058893874747399 -0.2545989261840096 1.0 13567 -69386 H4c8 H4 clustered histone 8 Novel U 0.0009058568179119981 -0.2545992635384698 1.0 13568 -12236 Bub1b BUB1B, mitotic checkpoint serine/threonine kinase Novel U 0.000905302139880488 -0.2546050088752861 1.0 13569 -272350 Lgalsl2 galectin like 2 Novel U 0.0009049003353747007 -0.25460917075314843 1.0 13570 -67722 Actl11 actin-like 11 Novel U 0.000904622397381678 -0.25461204962574346 1.0 13571 -76640 1700113H08Rik RIKEN cDNA 1700113H08 gene Novel U 0.0009044329861786258 -0.25461401154075813 1.0 13572 -103534 Mgat4b mannoside acetylglucosaminyltransferase 4, isoenzyme B Novel U 0.0009036989425512253 -0.2546216147405203 1.0 13573 -109052 Krt75 keratin 75 Novel U 0.0009033428415862493 -0.25462530322260934 1.0 13574 -381813 Prmt8 protein arginine N-methyltransferase 8 Novel U 0.0009027179429011475 -0.25463177590264724 1.0 13575 -15260 Hira histone cell cycle regulator Novel U 0.0009024461523280562 -0.25463459110046865 1.0 13576 -387347 Tas2r118 taste receptor, type 2, member 118 Novel U 0.0009024406558216638 -0.25463464803310115 1.0 13577 -109095 Rbm15b RNA binding motif protein 15B Novel N 0.0009022563630662356 -0.2546365569314036 1.0 13578 -667055 Unc93a2 unc-93 homolog A2 Novel U 0.0009020984507339889 -0.2546381925821499 1.0 13579 -100040448 Btbd35f19 BTB domain containing 35, family member 19 Novel U 0.0009020883463821497 -0.2546382972426941 1.0 13580 -207932 Urb1 URB1 ribosome biogenesis 1 homolog (S. cerevisiae) Novel U 0.0009018862066562127 -0.2546403909993304 1.0 13581 -67785 Zmym4 zinc finger, MYM-type 4 Novel U 0.0009018242883652985 -0.25464103234695223 1.0 13582 -93689 Lmod1 leiomodin 1 (smooth muscle) Novel U 0.0009017579080255626 -0.2546417199123291 1.0 13583 -12398 Cbfa2t3 CBFA2/RUNX1 translocation partner 3 Novel U 0.0009016649909226963 -0.25464268234462606 1.0 13584 -68792 Srpx2 sushi-repeat-containing protein, X-linked 2 Novel U 0.0009016559584861079 -0.25464277590230733 1.0 13585 -434935 Gm21943 predicted gene, 21943 Novel U 0.0009013241384083309 -0.25464621288376493 1.0 13586 -67861 Akr1b10 aldo-keto reductase family 1, member B10 Novel U 0.0009010514930208683 -0.25464903693572555 1.0 13587 -272359 Irf2bp1 interferon regulatory factor 2 binding protein 1 Novel U 0.0009002926493311689 -0.2546568970137178 1.0 13588 -69094 Tmem160 transmembrane protein 160 Novel U 0.0008999698867416398 -0.2546602401780099 1.0 13589 -226151 Slf2 SMC5-SMC6 complex localization factor 2 Novel U 0.0008996081458312652 -0.254663987078468 1.0 13590 -18703 Pigr polymeric immunoglobulin receptor Novel U 0.000899582398102326 -0.25466425377259794 1.0 13591 -70359 Gtpbp3 GTP binding protein 3 Novel N 0.0008992296951233485 -0.2546679070584597 1.0 13592 -17837 Mug2 murinoglobulin 2 Novel U 0.0008991346094146808 -0.25466889195310427 1.0 13593 -623459 Faiml Fas apoptotic inhibitory molecule like Novel U 0.0008989925613987055 -0.25467036328178416 1.0 13594 -228812 Pigu phosphatidylinositol glycan anchor biosynthesis, class U Novel U 0.0008988342121599939 -0.2546720034579933 1.0 13595 -381535 Pramel18 PRAME like 18 Novel U 0.0008987937693379875 -0.2546724223634142 1.0 13596 -27393 Mrpl39 mitochondrial ribosomal protein L39 Novel U 0.0008983428415443837 -0.25467709305867686 1.0 13597 -17134 Mafg v-maf musculoaponeurotic fibrosarcoma oncogene family, protein G (avian) Novel U 0.0008983003987805479 -0.25467753267942944 1.0 13598 -219148 Fam167a family with sequence similarity 167, member A Novel U 0.0008978455850303677 -0.2546822436253026 1.0 13599 -93703 Pcdhgb6 protocadherin gamma subfamily B, 6 Novel U 0.000897740636757368 -0.25468333067606436 1.0 13600 -170571 Cntnap4 contactin associated protein-like 4 Novel U 0.000897639621135797 -0.25468437699255186 1.0 13601 -69191 Pdia2 protein disulfide isomerase associated 2 Novel U 0.000897284650706983 -0.25468805376458453 1.0 13602 -78306 Tsga10ip testis specific 10 interacting protein Novel U 0.0008969955871549175 -0.25469104787535435 1.0 13603 -239029 Antxrl anthrax toxin receptor-like Novel U 0.000896605041970111 -0.25469509312954014 1.0 13604 -627264 Btbd35f28 BTB domain containing 35, family member 28 Novel U 0.0008965306798381596 -0.25469586337005834 1.0 13605 -20480 Clpb ClpB caseinolytic peptidase B Novel U 0.0008963352136668579 -0.2546978880022351 1.0 13606 -236451 Phf11b PHD finger protein 11B Novel U 0.0008961298211959276 -0.2547000154506971 1.0 13607 -19773 Rln1 relaxin 1 Novel U 0.0008958272912993763 -0.2547031490454204 1.0 13608 -384572 Vmn1r177 vomeronasal 1 receptor 177 Novel U 0.0008950955206241965 -0.2547107287020183 1.0 13609 -13017 Ctbp2 C-terminal binding protein 2 Novel U 0.0008950926197396731 -0.2547107587492848 1.0 13610 -77559 Agl amylo-1,6-glucosidase, 4-alpha-glucanotransferase Novel U 0.0008949471018624709 -0.2547122660186732 1.0 13611 -225845 Plaat3 phospholipase A and acyltransferase 3 Novel U 0.0008949218665269158 -0.2547125274054493 1.0 13612 -20220 Sap18 Sin3-associated polypeptide 18 Novel U 0.0008949144031822489 -0.25471260471052803 1.0 13613 -71990 Ddx54 DEAD box helicase 54 Novel U 0.0008948285405117074 -0.2547134940732469 1.0 13614 -66631 Mfsd14b major facilitator superfamily domain containing 14B Novel U 0.0008947355044665479 -0.25471445773754425 1.0 13615 -14527 Gcgr glucagon receptor Novel U 0.0008945502389846527 -0.2547163767113155 1.0 13616 -106583 Scaf8 SR-related CTD-associated factor 8 Novel N 0.0008941607573950531 -0.25472041094881703 1.0 13617 -19661 Rbp3 retinol binding protein 3, interstitial Novel N 0.0008940758512485325 -0.2547212904038916 1.0 13618 -56176 Pigp phosphatidylinositol glycan anchor biosynthesis, class P Novel U 0.0008940404943329176 -0.2547216566296612 1.0 13619 -638102 Vmn2r115 vomeronasal 2, receptor 115 Novel U 0.0008939476320458917 -0.25472261849417754 1.0 13620 -66367 2310022A10Rik RIKEN cDNA 2310022A10 gene Novel U 0.000893641361027716 -0.2547257908393157 1.0 13621 -21385 Tbx2 T-box 2 Novel U 0.0008935557070722808 -0.25472667804017035 1.0 13622 -240069 Morc2b microrchidia 2B Novel U 0.0008931470046793876 -0.2547309113661205 1.0 13623 -68251 Babam1 BRISC and BRCA1 A complex member 1 Novel U 0.0008931327024062961 -0.2547310595085951 1.0 13624 -68134 Upf3b UPF3 regulator of nonsense transcripts homolog B (yeast) Novel U 0.0008928502446771719 -0.25473398519646806 1.0 13625 -171272 Vmn1r219 vomeronasal 1 receptor 219 Novel U 0.0008927691680651916 -0.2547348249853497 1.0 13626 -217031 Tada2a transcriptional adaptor 2A Novel U 0.0008927076050605585 -0.2547354626529279 1.0 13627 -66990 Tmem134 transmembrane protein 134 Novel U 0.0008923904746099753 -0.2547387474797099 1.0 13628 -244745 Dpy19l1 dpy-19 like C-mannosyltransferase 1 Novel U 0.0008923781435373823 -0.2547388752045545 1.0 13629 -104110 Adcy4 adenylate cyclase 4 Novel U 0.0008920211855986617 -0.2547425725631494 1.0 13630 -12309 S100g S100 calcium binding protein G Novel U 0.0008919253785643469 -0.25474356492926137 1.0 13631 -72831 Dhx30 DExH-box helicase 30 Novel U 0.0008919092918781941 -0.2547437315546277 1.0 13632 -19743 Rhag Rhesus blood group-associated A glycoprotein Novel N 0.0008918918850759895 -0.2547439118537127 1.0 13633 -18701 Pigf phosphatidylinositol glycan anchor biosynthesis, class F Novel U 0.0008918372733157944 -0.2547444775205296 1.0 13634 -269951 Idh2 isocitrate dehydrogenase 2 (NADP+), mitochondrial Novel U 0.0008915826148321494 -0.2547471152647317 1.0 13635 -18377 Omg oligodendrocyte myelin glycoprotein Novel U 0.0008911399001339701 -0.254751700889022 1.0 13636 -110147 Ehmt2 euchromatic histone lysine N-methyltransferase 2 Novel N 0.000890926473384761 -0.25475391155627425 1.0 13637 -75410 Kmt2b lysine (K)-specific methyltransferase 2B Novel U 0.0008909240706267135 -0.25475393644396316 1.0 13638 -11737 Anp32a acidic nuclear phosphoprotein 32 family member A Novel U 0.0008906391939973188 -0.25475688718672557 1.0 13639 -320080 Zbtb39 zinc finger and BTB domain containing 39 Novel U 0.0008903431268311658 -0.25475995384069994 1.0 13640 -214901 Chtf18 CTF18, chromosome transmission fidelity factor 18 Novel U 0.0008895921847462121 -0.25476773207412995 1.0 13641 -211949 Spsb4 splA/ryanodine receptor domain and SOCS box containing 4 Novel U 0.0008895085257167343 -0.25476859861160717 1.0 13642 -14380 G6pd2 glucose-6-phosphate dehydrogenase 2 Novel U 0.0008895013256840476 -0.25476867318930907 1.0 13643 -69101 Ydjc YdjC homolog (bacterial) Novel U 0.0008892964460287569 -0.2547707953260435 1.0 13644 -22019 Tpp2 tripeptidyl peptidase II Novel U 0.0008892556282285679 -0.25477121811547604 1.0 13645 -20822 Ro60 Ro60, Y RNA binding protein Novel U 0.000889066412418438 -0.25477317800661725 1.0 13646 -230654 Lrrc41 leucine rich repeat containing 41 Novel U 0.0008889674593995373 -0.2547742029587341 1.0 13647 -52024 Ankrd22 ankyrin repeat domain 22 Novel U 0.0008883629449012002 -0.25478046450003555 1.0 13648 -382571 Kcnf1 potassium voltage-gated channel, subfamily F, member 1 Novel N 0.0008880997706885652 -0.2547831904498786 1.0 13649 -68087 Dcakd dephospho-CoA kinase domain containing Novel N 0.0008879237416606929 -0.2547850137527627 1.0 13650 -216820 Dhrs7b dehydrogenase/reductase 7B Novel N 0.0008877364398845535 -0.2547869538184027 1.0 13651 -667504 Vmn1r152 vomeronasal 1 receptor 152 Novel U 0.0008877343996970834 -0.2547869749505975 1.0 13652 -72054 Cyp4f18 cytochrome P450, family 4, subfamily f, polypeptide 18 Novel U 0.0008872040633196824 -0.25479246815736073 1.0 13653 -69051 Pycr2 pyrroline-5-carboxylate reductase family, member 2 Novel U 0.000887119246323833 -0.25479334668901554 1.0 13654 -68036 Zfp706 zinc finger protein 706 Novel U 0.0008869971241161953 -0.25479461162682765 1.0 13655 -667543 Vmn1r257 vomeronasal 1 receptor 257 Novel U 0.0008866405263790181 -0.25479830525446684 1.0 13656 -432530 Adcy1 adenylate cyclase 1 Novel N 0.000886425101640802 -0.25480053661682356 1.0 13657 -26926 Aifm1 apoptosis-inducing factor, mitochondrion-associated 1 Novel U 0.0008861314917488796 -0.2548035778184322 1.0 13658 -71839 Osgin1 oxidative stress induced growth inhibitor 1 Novel N 0.0008858286322177247 -0.25480671482749995 1.0 13659 -19213 Ptf1a pancreas specific transcription factor, 1a Novel U 0.0008857352035824665 -0.25480768255823266 1.0 13660 -74199 Vit vitrin Novel U 0.0008852868227963416 -0.2548123268716756 1.0 13661 -56200 Ddx21 DExD box helicase 21 Novel N 0.000885279583065996 -0.25481240186056453 1.0 13662 -12715 Ckm creatine kinase, muscle Novel U 0.0008850132771327311 -0.25481516024866696 1.0 13663 -12821 Col17a1 collagen, type XVII, alpha 1 Novel U 0.0008846817861896549 -0.2548185938209582 1.0 13664 -213053 Slc39a14 solute carrier family 39 (zinc transporter), member 14 Novel U 0.000884246658609218 -0.25482310085813226 1.0 13665 -71765 Klhdc3 kelch domain containing 3 Novel U 0.0008840670752461996 -0.25482496097670293 1.0 13666 -109785 Pgm3 phosphoglucomutase 3 Novel U 0.0008838799037325103 -0.2548268996930888 1.0 13667 -243834 Zfp324 zinc finger protein 324 Novel U 0.0008837602732584765 -0.2548281388216062 1.0 13668 -112403 Dxo decapping exoribonuclease Novel N 0.0008833393607361309 -0.2548324986196759 1.0 13669 -277854 Depdc5 DEP domain containing 5 Novel U 0.000883084327209143 -0.25483514024856463 1.0 13670 -108014 Srsf9 serine and arginine-rich splicing factor 9 Novel N 0.0008820958726543474 -0.25484537862834955 1.0 13671 -18227 Nr4a2 nuclear receptor subfamily 4, group A, member 2 Novel U 0.0008819224465722808 -0.25484717497000653 1.0 13672 -76629 Tmem270 transmembrane protein 270 Novel U 0.0008818391798822681 -0.2548480374436444 1.0 13673 -170742 Sertad3 SERTA domain containing 3 Novel N 0.0008815672050542109 -0.25485085454997275 1.0 13674 -71787 Trnau1ap tRNA selenocysteine 1 associated protein 1 Novel U 0.0008812960121443967 -0.2548536635572176 1.0 13675 -231430 Cox18 cytochrome c oxidase assembly protein 18 Novel U 0.0008811517123287613 -0.25485515820996435 1.0 13676 -625591 Cldn34c2 claudin 34C2 Novel U 0.0008809926745081517 -0.25485680551848217 1.0 13677 -71693 Colec11 collectin sub-family member 11 Novel U 0.000880925414232939 -0.2548575021982017 1.0 13678 -13116 Cyp46a1 cytochrome P450, family 46, subfamily a, polypeptide 1 Novel N 0.0008804570434925936 -0.2548623535669334 1.0 13679 -214162 Kmt2a lysine (K)-specific methyltransferase 2A Novel U 0.0008800737644885768 -0.2548663235582574 1.0 13680 -244879 Npat nuclear protein in the AT region Novel N 0.0008798799776182408 -0.2548683307962899 1.0 13681 -17713 Grpel1 GrpE-like 1, mitochondrial Novel U 0.0008797177654023206 -0.25487001098509 1.0 13682 -233651 Dchs1 dachsous cadherin related 1 Novel U 0.0008796584201017318 -0.25487062568176255 1.0 13683 -140703 Emid1 EMI domain containing 1 Novel U 0.0008792533798056315 -0.2548748210758346 1.0 13684 -17872 Ppp1r15a protein phosphatase 1, regulatory subunit 15A Novel U 0.0008792198349569681 -0.2548751685322743 1.0 13685 -76938 Rbm17 RNA binding motif protein 17 Novel N 0.0008789004107654562 -0.2548784771175495 1.0 13686 -68764 Cdhr3 cadherin-related family member 3 Novel U 0.0008785927541083738 -0.2548816638150899 1.0 13687 -76192 Abhd12 abhydrolase domain containing 12 Novel U 0.0008785278502375732 -0.2548823360872501 1.0 13688 -668612 Vmn2r-ps158 vomeronasal 2, receptor, pseudogene 158 Novel U 0.0008780031644160543 -0.2548877707657412 1.0 13689 -435949 Vmn1r244 vomeronasal 1 receptor 244 Novel U 0.000877922726933499 -0.2548886039345413 1.0 13690 -100862015 Msantd5f4 Myb/SANT DNA binding domain containing 5 family member 4 Novel U 0.0008777110217651406 -0.2548907967697157 1.0 13691 -232811 Kmt5c lysine methyltransferase 5C Novel N 0.0008775618196187847 -0.25489234220064294 1.0 13692 -214239 Ccdc9b coiled-coil domain containing 9B Novel U 0.0008773596696315055 -0.2548944360635659 1.0 13693 -64242 Ngb neuroglobin Novel N 0.00087687668531063 -0.25489943879928423 1.0 13694 -12840 Col9a2 collagen, type IX, alpha 2 Novel U 0.0008762017050793656 -0.25490643022233084 1.0 13695 -67824 Nmral1 NmrA-like family domain containing 1 Novel U 0.0008758194702626481 -0.25491038939799715 1.0 13696 -72345 Amer1 APC membrane recruitment 1 Novel U 0.0008756553389601814 -0.25491208946463256 1.0 13697 -77087 Ankrd11 ankyrin repeat domain 11 Novel U 0.0008756273562989038 -0.2549123793081182 1.0 13698 -68510 Ints1 integrator complex subunit 1 Novel N 0.0008754048325691079 -0.25491468420159635 1.0 13699 -171267 Vmn1r84 vomeronasal 1 receptor 84 Novel U 0.0008753923109092932 -0.25491481390053705 1.0 13700 -12895 Cpt1b carnitine palmitoyltransferase 1b, muscle Novel U 0.0008751922400271529 -0.25491688622815734 1.0 13701 -22788 Zp3 zona pellucida glycoprotein 3 Novel U 0.0008751693323686764 -0.2549171235049308 1.0 13702 -56443 Arpc1a actin related protein 2/3 complex, subunit 1A Novel U 0.0008751163361502186 -0.2549176724380194 1.0 13703 -17876 Myef2 myelin basic protein expression factor 2, repressor Novel U 0.000875103815047535 -0.25491780213118936 1.0 13704 -320162 Cep95 centrosomal protein 95 Novel U 0.0008748764333405682 -0.25492015734343537 1.0 13705 -14630 Gclm glutamate-cysteine ligase, modifier subunit Novel N 0.0008747592832218058 -0.2549213707805144 1.0 13706 -67685 Dnaaf4 dynein axonemal assembly factor 4 Novel U 0.000874671471545659 -0.25492228033096925 1.0 13707 -52231 Ankzf1 ankyrin repeat and zinc finger domain containing 1 Novel U 0.0008744861380281277 -0.2549242000094514 1.0 13708 -20505 Slc34a1 solute carrier family 34 (sodium phosphate), member 1 Novel N 0.000874074746566628 -0.25492846118868584 1.0 13709 -319807 Nwd2 NACHT and WD repeat domain containing 2 Novel U 0.0008740650477466344 -0.2549285616487445 1.0 13710 -72634 Tdrkh tudor and KH domain containing protein Novel U 0.0008740303208547364 -0.25492892134874917 1.0 13711 -552899 Ugt2a2 UDP glucuronosyltransferase 2 family, polypeptide A2 Novel N 0.0008736926773041797 -0.2549324186495464 1.0 13712 -81014 Vmn1r58 vomeronasal 1 receptor 58 Novel U 0.0008734998064900138 -0.25493441639909925 1.0 13713 -27078 B9d1 B9 protein domain 1 Novel U 0.0008734575752462916 -0.25493485382893344 1.0 13714 -18089 Nkx2-3 NK2 homeobox 3 Novel U 0.000873440696338567 -0.2549350286601048 1.0 13715 -75305 Ankrd53 ankyrin repeat domain 53 Novel U 0.000873105168063394 -0.25493850405094914 1.0 13716 -73703 Dppa2 developmental pluripotency associated 2 Novel U 0.0008730891215689069 -0.25493867026001155 1.0 13717 -74165 Fbxl22 F-box and leucine-rich repeat protein 22 Novel U 0.0008729477650047646 -0.2549401344266561 1.0 13718 -97130 Nhsl3 NHS like 3 Novel U 0.0008728510821386256 -0.25494113586460526 1.0 13719 -50702 Cfhr1 complement factor H-related 1 Novel U 0.0008727132738675621 -0.25494256327814674 1.0 13720 -67593 4930519G04Rik RIKEN cDNA 4930519G04 gene Novel U 0.0008723851567702254 -0.25494596190425467 1.0 13721 -71345 Ano9 anoctamin 9 Novel N 0.0008723837356493155 -0.25494597662417834 1.0 13722 -231991 Creb5 cAMP responsive element binding protein 5 Novel N 0.000872281598354281 -0.2549470345589227 1.0 13723 -30060 Meltf melanotransferrin Novel U 0.0008720769278246981 -0.25494915452954 1.0 13724 -76137 Mcur1 mitochondrial calcium uniporter regulator 1 Novel N 0.0008717551203432359 -0.2549524878008541 1.0 13725 -14547 Gdap2 ganglioside-induced differentiation-associated-protein 2 Novel N 0.0008714452110877082 -0.25495569783073513 1.0 13726 -19823 Rnf7 ring finger protein 7 Novel U 0.000871335947540884 -0.2549568295789613 1.0 13727 -53622 Krt85 keratin 85 Novel N 0.0008711437321102539 -0.254958820540073 1.0 13728 -207952 Klhl25 kelch-like 25 Novel U 0.000870795822754444 -0.2549624241737436 1.0 13729 -194744 Slc25a43 solute carrier family 25, member 43 Novel U 0.0008707651218330571 -0.2549627421728781 1.0 13730 -78903 Wrnip1 Werner helicase interacting protein 1 Novel N 0.0008703314054956173 -0.25496723459244364 1.0 13731 -21877 Tk1 thymidine kinase 1 Novel U 0.0008703274562139781 -0.254967275498973 1.0 13732 -56277 Tmem45a transmembrane protein 45a Novel U 0.0008700245277843023 -0.25497041322168934 1.0 13733 -17937 Nab2 Ngfi-A binding protein 2 Novel U 0.0008699781222739377 -0.25497089388844024 1.0 13734 -23945 Mgll monoglyceride lipase Novel N 0.000869914964207962 -0.2549715480776114 1.0 13735 -12566 Cdk2 cyclin dependent kinase 2 Novel U 0.0008698975105597347 -0.254971728861926 1.0 13736 -71710 Lrrcc1 leucine rich repeat and coiled-coil domain containing 1 Novel U 0.0008697756434834322 -0.25497299115709615 1.0 13737 -22238 Ugt2b5 UDP glucuronosyltransferase 2 family, polypeptide B5 Novel U 0.0008696326824499511 -0.2549744719427814 1.0 13738 -19059 Ppp3r2 protein phosphatase 3, regulatory subunit B, alpha isoform (calcineurin B, type II) Novel U 0.0008694067440044478 -0.25497681220577256 1.0 13739 -19009 Pou6f1 POU domain, class 6, transcription factor 1 Novel N 0.0008689907998509521 -0.254981120541641 1.0 13740 -76184 Abca6 ATP-binding cassette, sub-family A member 6 Novel U 0.0008688413052462001 -0.2549826690018427 1.0 13741 -239250 Slitrk6 SLIT and NTRK-like family, member 6 Novel U 0.0008686388590244385 -0.2549847659331526 1.0 13742 -15488 Hsd17b4 hydroxysteroid (17-beta) dehydrogenase 4 Novel N 0.0008682750045597008 -0.2549885347257373 1.0 13743 -67279 Med31 mediator complex subunit 31 Novel U 0.0008682732084077849 -0.25498855333021986 1.0 13744 -13081 Cyp24a1 cytochrome P450, family 24, subfamily a, polypeptide 1 Novel U 0.0008681184856408154 -0.25499015594355384 1.0 13745 -232925 Igfl3 IGF-like family member 3 Novel U 0.0008678209588699008 -0.2549932377160663 1.0 13746 -208638 Slc25a38 solute carrier family 25, member 38 Novel N 0.0008677992408632402 -0.25499346267046535 1.0 13747 -73062 Ppp1r16a protein phosphatase 1, regulatory subunit 16A Novel U 0.000867704143875248 -0.25499444768194085 1.0 13748 -20219 Apcs amyloid P component, serum Novel U 0.0008676834310805587 -0.2549946622243873 1.0 13749 -66841 Etfdh electron transferring flavoprotein, dehydrogenase Novel N 0.0008674680511668399 -0.2549968931224534 1.0 13750 -71096 Sntg1 syntrophin, gamma 1 Novel N 0.0008670075640603336 -0.25500166283276493 1.0 13751 -103266 Tmem263 transmembrane protein 263 Novel U 0.0008664774982338226 -0.25500715323717094 1.0 13752 -109778 Blvra biliverdin reductase A Novel U 0.0008659462304840345 -0.2550126560910588 1.0 13753 -317652 Klk15 kallikrein related-peptidase 15 Novel U 0.0008655734416790914 -0.25501651742524556 1.0 13754 -104884 Tdp1 tyrosyl-DNA phosphodiesterase 1 Novel U 0.000865458196438221 -0.25501771113166205 1.0 13755 -16672 Krt34 keratin 34 Novel N 0.0008652055938432439 -0.25502032758103693 1.0 13756 -100862118 Spin2e spindlin family, member 2E Novel U 0.0008646156763262428 -0.2550264379272855 1.0 13757 -14634 Gli3 GLI-Kruppel family member GLI3 Novel U 0.0008646152358941591 -0.2550264424892666 1.0 13758 -320712 Abi3bp ABI family member 3 binding protein Novel U 0.000864267185216887 -0.25503004758674025 1.0 13759 -546837 Cyp2j7 cytochrome P450, family 2, subfamily j, polypeptide 7 Novel U 0.0008642554160336755 -0.25503016949155305 1.0 13760 -24053 Sgcg sarcoglycan, gamma (dystrophin-associated glycoprotein) Novel N 0.0008640882223712897 -0.25503190127801184 1.0 13761 -212712 Satb2 special AT-rich sequence binding protein 2 Novel U 0.0008638802681396445 -0.2550340552611071 1.0 13762 -260408 Prss45 serine protease 45 Novel U 0.0008638696760843163 -0.255034164973268 1.0 13763 -67270 Mrpl42 mitochondrial ribosomal protein L42 Novel U 0.0008637285045431349 -0.2550356272234508 1.0 13764 -52530 Nhp2 NHP2 ribonucleoprotein Novel U 0.0008636482105832193 -0.2550364589056481 1.0 13765 -384077 Pramel5 PRAME like 5 Novel U 0.0008635587931653364 -0.2550373850883231 1.0 13766 -67109 Zfp787 zinc finger protein 787 Novel U 0.0008632048298730468 -0.25504105142846867 1.0 13767 -78243 9230112D13Rik RIKEN cDNA 9230112D13 gene Novel U 0.0008625138221536628 -0.2550482088637104 1.0 13768 -15569 Elavl2 ELAV like RNA binding protein 1 Novel N 0.000861871075794931 -0.255054866409365 1.0 13769 -223642 Zc3h3 zinc finger CCCH type containing 3 Novel U 0.0008617352020399763 -0.2550562737852522 1.0 13770 -228432 Ano3 anoctamin 3 Novel N 0.0008616445276616807 -0.25505721298748185 1.0 13771 -67182 Pdzk1ip1 PDZK1 interacting protein 1 Novel U 0.0008615819921899905 -0.25505786072784187 1.0 13772 -241322 Zbtb6 zinc finger and BTB domain containing 6 Novel U 0.0008614244283617739 -0.2550594927687949 1.0 13773 -73712 Dmkn dermokine Novel U 0.0008611760659561283 -0.2550620652984281 1.0 13774 -667262 Vmn1r117 vomeronasal 1 receptor 117 Novel U 0.0008610522762573323 -0.2550633475080588 1.0 13775 -16502 Kcnc1 potassium voltage gated channel, Shaw-related subfamily, member 1 Novel U 0.0008602411521740903 -0.2550717491046488 1.0 13776 -243914 Lgi4 leucine-rich repeat LGI family, member 4 Novel U 0.0008600733827749833 -0.2550734868545696 1.0 13777 -54614 Prpf40b pre-mRNA processing factor 40B Novel U 0.0008596807323800797 -0.25507755391445236 1.0 13778 -56040 Rplp1 ribosomal protein lateral stalk subunit P1 Novel U 0.0008596497515533197 -0.2550778748128375 1.0 13779 -72425 Katnbl1 katanin p80 subunit B like 1 Novel U 0.0008596043566934503 -0.2550783450113038 1.0 13780 -75863 Clec4g C-type lectin domain family 4, member g Novel U 0.0008592093265801032 -0.2550824367202319 1.0 13781 -54377 Cacng4 calcium channel, voltage-dependent, gamma subunit 4 Novel U 0.0008590756785190533 -0.2550838210424548 1.0 13782 -20364 Selenow selenoprotein W Novel U 0.0008590744914548851 -0.2550838333380264 1.0 13783 -23963 Tenm1 teneurin transmembrane protein 1 Novel N 0.0008590332435572969 -0.2550842605823937 1.0 13784 -76809 Bri3bp Bri3 binding protein Novel U 0.0008589225059428034 -0.2550854075989643 1.0 13785 -76161 Lamp5 lysosomal-associated membrane protein family, member 5 Novel U 0.0008585511875460637 -0.2550892537027113 1.0 13786 -212772 Arl14ep ADP-ribosylation factor-like 14 effector protein Novel U 0.0008582977920681685 -0.2550918783647414 1.0 13787 -574428 Zmynd15 zinc finger, MYND-type containing 15 Novel N 0.0008577125752536014 -0.25509794002126873 1.0 13788 -227715 Exosc2 exosome component 2 Novel U 0.0008573027899618709 -0.25510218456384953 1.0 13789 -66422 Dctpp1 dCTP pyrophosphatase 1 Novel N 0.0008572146825284497 -0.25510309717774854 1.0 13790 -210045 Nlrp4b NLR family, pyrin domain containing 4B Novel U 0.0008571306385534399 -0.25510396770247884 1.0 13791 -209645 Bend7 BEN domain containing 7 Novel U 0.0008569859148650203 -0.25510546674568596 1.0 13792 -69536 Hemk1 HemK methyltransferase family member 1 Novel U 0.0008569078966668616 -0.25510627485561777 1.0 13793 -69185 Dtwd1 DTW domain containing 1 Novel N 0.0008557076270836265 -0.2551187072085042 1.0 13794 -234135 Nsd3 nuclear receptor binding SET domain protein 3 Novel N 0.000855690996578069 -0.25511887946673406 1.0 13795 -435489 Cbr1b carbonyl reductase 1B Novel U 0.0008555681291507745 -0.25512015212350697 1.0 13796 -237222 Ofd1 OFD1, centriole and centriolar satellite protein Novel U 0.0008553760976828302 -0.25512214117913923 1.0 13797 -21351 Taldo1 transaldolase 1 Novel N 0.0008542977003759246 -0.25513331118299376 1.0 13798 -207615 Wdr37 WD repeat domain 37 Novel U 0.00085417962855034 -0.25513453416708176 1.0 13799 -353310 Zfp703 zinc finger protein 703 Novel U 0.0008540896420666773 -0.25513546624412137 1.0 13800 -210356 Nckap5 NCK-associated protein 5 Novel U 0.0008540784377171506 -0.25513558229840544 1.0 13801 -58223 Mmp19 matrix metallopeptidase 19 Novel U 0.0008539688966878938 -0.25513671692078554 1.0 13802 -22431 Wt1 WT1 transcription factor Novel U 0.0008536853224330068 -0.25513965417359563 1.0 13803 -214321 Gm4787 predicted gene 4787 Novel U 0.0008536182139169417 -0.255140349281399 1.0 13804 -73836 Slc35b2 solute carrier family 35, member B2 Novel N 0.0008532028460517073 -0.2551446516480926 1.0 13805 -627872 Dnah7a dynein, axonemal, heavy chain 7A Novel U 0.0008531380092724215 -0.255145323225321 1.0 13806 -14013 Mecom MDS1 and EVI1 complex locus Novel U 0.0008530243316864884 -0.2551465006940192 1.0 13807 -667512 Vmn1r255 vomeronasal 1 receptor 255 Novel U 0.0008529617028983137 -0.2551471494009483 1.0 13808 -319613 Sybu syntabulin (syntaxin-interacting) Novel U 0.0008524221276068824 -0.25515273830407936 1.0 13809 -239985 Arid1b AT-rich interaction domain 1B Novel U 0.0008522895111237868 -0.2551541119412517 1.0 13810 -71682 Wdr27 WD repeat domain 27 Novel U 0.0008522791924475211 -0.25515421882176126 1.0 13811 -104174 Gldc glycine decarboxylase Novel N 0.0008517475018638577 -0.2551597260553485 1.0 13812 -14590 Ggh gamma-glutamyl hydrolase Novel U 0.000851680005827181 -0.2551604251770776 1.0 13813 -16319 Incenp inner centromere protein Novel U 0.0008514254236367409 -0.25516306213103723 1.0 13814 -666048 Trabd2b TraB domain containing 2B Novel U 0.0008512146897166421 -0.2551652449060541 1.0 13815 -13190 Dct dopachrome tautomerase Novel N 0.000851192361501392 -0.2551654761809736 1.0 13816 -108737 Oxsr1 oxidative-stress responsive 1 Novel U 0.0008509857429141114 -0.25516761632950846 1.0 13817 -235634 Fam240a family with sequence similarity 240 member A Novel U 0.0008509655915271132 -0.25516782505691255 1.0 13818 -100504689 Plscr5 phospholipid scramblase family, member 5 Novel U 0.0008508499554458571 -0.2551690228116409 1.0 13819 -12290 Cacna1e calcium channel, voltage-dependent, R type, alpha 1E subunit Novel N 0.000850745214781971 -0.2551701077119943 1.0 13820 -266645 Acmsd amino carboxymuconate semialdehyde decarboxylase Novel N 0.0008506971797063299 -0.25517060525772867 1.0 13821 -665596 H2bc23 H2B clustered histone 23 Novel U 0.0008505414444190347 -0.25517221835871495 1.0 13822 -21854 Timm17a translocase of inner mitochondrial membrane 17a Novel U 0.0008505035113667598 -0.25517261126802343 1.0 13823 -626596 Rgs22 regulator of G-protein signalling 22 Novel U 0.0008504303275728329 -0.25517336930335516 1.0 13824 -21807 Tsc22d1 TSC22 domain family, member 1 Novel N 0.0008504042089429191 -0.2551736398392652 1.0 13825 -217082 Hlf hepatic leukemia factor Novel N 0.000849250225040401 -0.25518559276659225 1.0 13826 -17933 Myt1l myelin transcription factor 1-like Novel N 0.0008490166038325153 -0.25518801260738366 1.0 13827 -76615 Got1l1 glutamic-oxaloacetic transaminase 1-like 1 Novel U 0.000848770555628724 -0.2551905611665901 1.0 13828 -333473 Zfp36l3 zinc finger protein 36, C3H type-like 3 Novel U 0.0008486294277214315 -0.2551920229648146 1.0 13829 -76411 Ift43 intraflagellar transport 43 Novel U 0.0008483491995117085 -0.2551949255593989 1.0 13830 -72413 Kcnmb2 potassium large conductance calcium-activated channel, subfamily M, beta member 2 Novel N 0.0008482327418546166 -0.2551961318239827 1.0 13831 -72175 Mfsd8 major facilitator superfamily domain containing 8 Novel N 0.0008482019367712856 -0.25519645090202314 1.0 13832 -52898 Rnasek ribonuclease, RNase K Novel U 0.0008481159918088946 -0.25519734111711834 1.0 13833 -56364 Zmym3 zinc finger, MYM-type 3 Novel U 0.0008481015167457925 -0.2551974910493461 1.0 13834 -70572 Ipo5 importin 5 Novel U 0.0008480693657130221 -0.25519782406868663 1.0 13835 -666348 Apol7e apolipoprotein L 7e Novel U 0.0008475937895499013 -0.2552027500709505 1.0 13836 -243274 Tmem132d transmembrane protein 132D Novel U 0.00084750672837713 -0.2552036518477161 1.0 13837 -15212 Hexb hexosaminidase B Novel U 0.0008475021300383942 -0.25520369947715754 1.0 13838 -333088 Kcp kielin/chordin-like protein Novel U 0.0008473789213532801 -0.2552049756686677 1.0 13839 -59054 Mrps30 mitochondrial ribosomal protein S30 Novel N 0.0008470763691843483 -0.2552081094940876 1.0 13840 -13122 Cyp7a1 cytochrome P450, family 7, subfamily a, polypeptide 1 Novel U 0.0008469119728917395 -0.25520981230548223 1.0 13841 -69837 Pcgf1 polycomb group ring finger 1 Novel N 0.0008468277992749616 -0.25521068417303777 1.0 13842 -67872 Nsmce4a NSE4 homolog A, SMC5-SMC6 complex component Novel N 0.0008467853362810358 -0.2552111240033329 1.0 13843 -18970 Polb polymerase (DNA directed), beta Novel N 0.0008467541286942941 -0.25521144725049055 1.0 13844 -171192 Vmn1r5 vomeronasal 1 receptor 5 Novel U 0.000846668619493239 -0.2552123329519841 1.0 13845 -433323 Sgpp2 sphingosine-1-phosphate phosphatase 2 Novel N 0.0008464928032160544 -0.2552141540512035 1.0 13846 -20286 Zc3h7b zinc finger CCCH type containing 7B Novel N 0.0008463710100236808 -0.25521541558108635 1.0 13847 -269585 Zscan20 zinc finger and SCAN domains 20 Novel U 0.0008463678483520609 -0.2552154483295771 1.0 13848 -218138 Gmds GDP-mannose 4, 6-dehydratase Novel N 0.0008462018114023513 -0.25521716813484396 1.0 13849 -94066 Mrpl36 mitochondrial ribosomal protein L36 Novel U 0.0008461778368790633 -0.2552174164621681 1.0 13850 -214403 Cfhr4 complement factor H-related 4 Novel U 0.0008459787768053241 -0.25521947831986813 1.0 13851 -268448 Phf12 PHD finger protein 12 Novel N 0.0008454374134603407 -0.25522508574359914 1.0 13852 -231148 Ablim2 actin-binding LIM protein 2 Novel U 0.0008453986503848619 -0.2552254872502607 1.0 13853 -209776 Gpr139 G protein-coupled receptor 139 Novel N 0.0008453712803676691 -0.255225770747999 1.0 13854 -105298 Epdr1 ependymin related 1 Novel U 0.000845176734283159 -0.255227785849947 1.0 13855 -224093 Fam43a family with sequence similarity 43, member A Novel U 0.0008444615128976868 -0.2552351940895461 1.0 13856 -228356 Cstpp1 centriolar satellite-associated tubulin polyglutamylase complex regulator 1 Novel N 0.000844170829637054 -0.255238204977204 1.0 13857 -545123 Cyp2d11 cytochrome P450, family 2, subfamily d, polypeptide 11 Novel U 0.0008441277937841324 -0.25523865074115387 1.0 13858 -107029 Me2 malic enzyme 2, NAD(+)-dependent, mitochondrial Novel N 0.0008439635258474316 -0.2552403522230422 1.0 13859 -69228 Zfp746 zinc finger protein 746 Novel U 0.0008435574335175449 -0.2552445585140456 1.0 13860 -107747 Aldh1l1 aldehyde dehydrogenase 1 family, member L1 Novel N 0.0008435525862313178 -0.255244608722077 1.0 13861 -319513 Pced1a PC-esterase domain containing 1A Novel U 0.0008433895703624462 -0.2552462972350879 1.0 13862 -52700 Txndc17 thioredoxin domain containing 17 Novel U 0.0008433369051077184 -0.2552468427400651 1.0 13863 -16509 Kcne1 potassium voltage-gated channel, Isk-related subfamily, member 1 Novel U 0.0008422326269100064 -0.2552582808173358 1.0 13864 -237397 C2cd4c C2 calcium-dependent domain containing 4C Novel U 0.0008421239574845203 -0.25525940641167266 1.0 13865 -433791 Zfp992 zinc finger protein 992 Novel U 0.0008419977313348655 -0.2552607138579813 1.0 13866 -76722 Ckmt2 creatine kinase, mitochondrial 2 Novel N 0.000841866711388253 -0.2552620709582813 1.0 13867 -64297 Gprc5b G protein-coupled receptor, family C, group 5, member B Novel N 0.0008415366987665111 -0.2552654892181687 1.0 13868 -171212 Galnt10 polypeptide N-acetylgalactosaminyltransferase 10 Novel N 0.0008414504128057624 -0.2552663829653137 1.0 13869 -74071 Lmntd1 lamin tail domain containing 1 Novel U 0.0008412572113909206 -0.25526838413921743 1.0 13870 -18534 Pck1 phosphoenolpyruvate carboxykinase 1, cytosolic Novel U 0.0008410069011811763 -0.25527097684414146 1.0 13871 -56523 Pmfbp1 polyamine modulated factor 1 binding protein 1 Novel N 0.0008407604852421757 -0.25527352921233715 1.0 13872 -19417 Rasgrf1 RAS protein-specific guanine nucleotide-releasing factor 1 Novel U 0.0008402757883553878 -0.25527854968675695 1.0 13873 -114615 Elac1 elaC ribonuclease Z 1 Novel U 0.0008402655921976416 -0.2552786552982237 1.0 13874 -68193 Rpl24 ribosomal protein L24 Novel N 0.000840076667181731 -0.2552806121773279 1.0 13875 -12723 Clcn1 chloride channel, voltage-sensitive 1 Novel U 0.0008399385580141916 -0.2552820427075452 1.0 13876 -26450 Rbbp9 retinoblastoma binding protein 9, serine hydrolase Novel U 0.0008396982189248576 -0.2552845321319318 1.0 13877 -16326 Inhbe inhibin beta-E Novel U 0.0008396543801144215 -0.2552849862128892 1.0 13878 -20257 Stmn2 stathmin-like 2 Novel U 0.000839630102669573 -0.2552852376778649 1.0 13879 -19895 Rpia ribose 5-phosphate isomerase A Novel N 0.0008396237749992689 -0.25528530321966586 1.0 13880 -66865 Pmpca peptidase (mitochondrial processing) alpha Novel U 0.0008394902991369722 -0.2552866857582597 1.0 13881 -240675 Vwa2 von Willebrand factor A domain containing 2 Novel N 0.0008393648405665725 -0.2552879852540077 1.0 13882 -320951 Pisd phosphatidylserine decarboxylase Novel U 0.0008390650747663032 -0.2552910902183126 1.0 13883 -231003 Klhl17 kelch-like 17 Novel U 0.000838671252587871 -0.25529516941549063 1.0 13884 -66054 Cndp2 CNDP dipeptidase 2 Novel U 0.0008385755599440787 -0.2552961605967493 1.0 13885 -54683 Prdx5 peroxiredoxin 5 Novel N 0.0008384219110754812 -0.25529775208667926 1.0 13886 -71743 Coasy Coenzyme A synthase Novel N 0.0008384090470744863 -0.2552978853315787 1.0 13887 -15446 Hpgd hydroxyprostaglandin dehydrogenase 15 (NAD) Novel U 0.0008382852055816341 -0.2552991680776906 1.0 13888 -18142 Npas1 neuronal PAS domain protein 1 Novel N 0.0008382203433656627 -0.2552998399183914 1.0 13889 -107242 AI837181 expressed sequence AI837181 Novel U 0.0008380945148747378 -0.25530114324576403 1.0 13890 -102162 Taf5l TATA-box binding protein associated factor 5 like Novel N 0.0008379537218854249 -0.25530260157491896 1.0 13891 -171170 Mbnl3 muscleblind like splicing factor 3 Novel N 0.0008379003115571384 -0.2553031547973436 1.0 13892 -76850 Ago4 argonaute RISC catalytic subunit 4 Novel N 0.000837851688238291 -0.2553036584360818 1.0 13893 -15213 Hey1 hairy/enhancer-of-split related with YRPW motif 1 Novel U 0.000837622839345757 -0.2553060288453877 1.0 13894 -546368 Cldn34c5 claudin 34C5 Novel U 0.0008375864907439381 -0.25530640534301047 1.0 13895 -102747 Lrrc49 leucine rich repeat containing 49 Novel U 0.000837446957628771 -0.25530785062243044 1.0 13896 -319582 Trmt9b tRNA methyltransferase 9B Novel N 0.000837270661756871 -0.2553096766892761 1.0 13897 -232314 Ppp4r2 protein phosphatase 4, regulatory subunit 2 Novel U 0.0008371643862027998 -0.2553107774879716 1.0 13898 -26383 Fto FTO alpha-ketoglutarate dependent dioxygenase Novel N 0.0008371072564123525 -0.255311369236463 1.0 13899 -67513 Faap20 Fanconi anemia core complex associated protein 20 Novel N 0.0008370288956862504 -0.25531218089428803 1.0 13900 -12227 Btg2 BTG anti-proliferation factor 2 Novel N 0.0008365356778768526 -0.2553172896281441 1.0 13901 -22021 Tpst1 protein-tyrosine sulfotransferase 1 Novel U 0.0008365333630675338 -0.2553173136048629 1.0 13902 -210962 Spata31e5 spermatogenesis associated 31 subfamily E member 5 Novel U 0.0008365139844032203 -0.25531751432843086 1.0 13903 -20744 Strbp spermatid perinuclear RNA binding protein Novel U 0.000836415023389141 -0.2553185393633615 1.0 13904 -435947 Vmn1r151 vomeronasal 1 receptor 151 Novel U 0.0008363390388202458 -0.25531932640902827 1.0 13905 -67811 Poldip2 polymerase (DNA-directed), delta interacting protein 2 Novel N 0.0008362077337928854 -0.25532068646218525 1.0 13906 -244682 Cntn5 contactin 5 Novel U 0.0008361427066512684 -0.2553213600111805 1.0 13907 -16842 Lef1 lymphoid enhancer binding factor 1 Novel U 0.0008361304906345636 -0.2553214865442799 1.0 13908 -320752 Dpy19l2 dpy-19 like 2 Novel N 0.0008360582970160737 -0.255322234323407 1.0 13909 -245128 AU018091 expressed sequence AU018091 Novel U 0.0008360442608130336 -0.2553223797099367 1.0 13910 -14081 Acsl1 acyl-CoA synthetase long-chain family member 1 Novel U 0.000835961070622579 -0.25532324139119467 1.0 13911 -224143 Poglut1 protein O-glucosyltransferase 1 Novel U 0.0008358953449987804 -0.25532392217504535 1.0 13912 -436523 Prss1l serine protease 1 (trypsin 1) like Novel U 0.0008357034154232314 -0.25532591017527956 1.0 13913 -75578 Fggy FGGY carbohydrate kinase domain containing Novel N 0.0008347646727307077 -0.25533563364122924 1.0 13914 -100312484 Vmn1r196 vomeronasal 1 receptor 196 Novel U 0.0008346257157094817 -0.25533707295348707 1.0 13915 -668113 Cwc22rt5 CWC22 spliceosome-associated protein, retrotransposed 5 Novel U 0.0008344506818736622 -0.2553388859482046 1.0 13916 -72155 Cenpn centromere protein N Novel U 0.0008343702499776002 -0.25533971905914 1.0 13917 -21869 Nkx2-1 NK2 homeobox 1 Novel U 0.0008342250288679256 -0.25534122325462005 1.0 13918 -329540 Nol4l nucleolar protein 4-like Novel U 0.0008340988229266708 -0.2553425304916108 1.0 13919 -330483 Ceacam16 CEA cell adhesion molecule 16 Novel N 0.0008334732160326906 -0.25534901050725295 1.0 13920 -70552 Lrrc56 leucine rich repeat containing 56 Novel N 0.0008330817026132554 -0.25535306579038114 1.0 13921 -269614 Pank4 pantothenate kinase 4 Novel U 0.0008329368284721627 -0.25535456639197207 1.0 13922 -17978 Ncoa2 nuclear receptor coactivator 2 Novel N 0.0008325923855978327 -0.25535813411994146 1.0 13923 -22761 Zfpm1 zinc finger protein, multitype 1 Novel U 0.0008319667230381498 -0.2553646147121671 1.0 13924 -217149 Cisd3 CDGSH iron sulfur domain 3 Novel N 0.0008317218870187837 -0.2553671507156071 1.0 13925 -75761 Apol7a apolipoprotein L 7a Novel U 0.0008316992886221871 -0.2553673847890562 1.0 13926 -18742 Pitx3 paired-like homeodomain transcription factor 3 Novel U 0.0008316233643472214 -0.2553681712102004 1.0 13927 -12287 Cacna1b calcium channel, voltage-dependent, N type, alpha 1B subunit Novel U 0.0008312073825861298 -0.25537247993560713 1.0 13928 -12810 Coch cochlin Novel U 0.0008310916870033568 -0.2553736783066502 1.0 13929 -71355 Col24a1 collagen, type XXIV, alpha 1 Novel U 0.0008309605265994116 -0.25537503686180263 1.0 13930 -74484 Rbm31y RNA binding motif 31, Y-linked Novel U 0.0008309192621084725 -0.25537546427804325 1.0 13931 -22668 Sf1 splicing factor 1 Novel N 0.000830859467839628 -0.2553760836251143 1.0 13932 -78925 Srd5a1 steroid 5 alpha-reductase 1 Novel N 0.0008307123698666765 -0.25537760726108255 1.0 13933 -71702 Cdc5l cell division cycle 5-like Novel U 0.0008304190221995597 -0.25538064574657526 1.0 13934 -19712 Rest RE1-silencing transcription factor Novel U 0.0008301579627991083 -0.25538334979126326 1.0 13935 -381816 Clec2m C-type lectin domain family 2, member m Novel U 0.000829817454629981 -0.25538687676368554 1.0 13936 -208718 Dis3l2 DIS3 like 3'-5' exoribonuclease 2 Novel U 0.0008296176220798089 -0.25538894662267103 1.0 13937 -619288 Garin4 golgi associated RAB2 interactor family member 4 Novel U 0.00082937749443265 -0.2553914338569465 1.0 13938 -243272 Sbno1 strawberry notch 1 Novel U 0.0008292823238188629 -0.2553924196310356 1.0 13939 -242891 Cct8l1 chaperonin containing TCP1 subunit 8-like 1 Novel U 0.0008291342694609468 -0.25539395317320784 1.0 13940 -432879 Kbtbd6 kelch repeat and BTB (POZ) domain containing 6 Novel U 0.0008286840365925553 -0.25539861667045805 1.0 13941 -260296 Trim61 tripartite motif-containing 61 Novel U 0.0008284895457699025 -0.25540063120000556 1.0 13942 -18476 Pafah1b3 platelet-activating factor acetylhydrolase, isoform 1b, subunit 3 Novel N 0.000828400050156034 -0.255401558192632 1.0 13943 -271508 Brd8dc BRD8 domain containing Novel U 0.0008281058126093523 -0.255404605895468 1.0 13944 -122152370 Spacdr sperm acrosome developmental regulator Novel U 0.0008279570263918611 -0.2554061470182177 1.0 13945 -328162 Trmt61a tRNA methyltransferase 61A Novel N 0.0008275052133340247 -0.2554108268830182 1.0 13946 -216613 Ccdc85a coiled-coil domain containing 85A Novel U 0.0008270653852562876 -0.25541538260778884 1.0 13947 -225207 Zfp521 zinc finger protein 521 Novel U 0.0008267757050804527 -0.2554183831055274 1.0 13948 -217874 Rd3l retinal degeneration 3-like Novel U 0.0008264301208463634 -0.25542196265566364 1.0 13949 -241112 Catip ciliogenesis associated TTC17 interacting protein Novel U 0.0008263114739296796 -0.2554231915965263 1.0 13950 -14755 Pigq phosphatidylinositol glycan anchor biosynthesis, class Q Novel U 0.0008261465753333486 -0.25542489961076636 1.0 13951 -20962 Sycp3 synaptonemal complex protein 3 Novel U 0.0008261040794667962 -0.2554253397815551 1.0 13952 -70208 Med23 mediator complex subunit 23 Novel N 0.0008259442280079539 -0.255426995517711 1.0 13953 -76866 Morn1 MORN repeat containing 1 Novel U 0.0008258074069267322 -0.25542841270597255 1.0 13954 -219094 Khnyn KH and NYN domain containing Novel U 0.000825526724261336 -0.2554313200077938 1.0 13955 -234723 Txnl4b thioredoxin-like 4B Novel U 0.0008254667170696446 -0.2554319415603127 1.0 13956 -78266 Zfp687 zinc finger protein 687 Novel U 0.0008252282134290068 -0.255434411973182 1.0 13957 -72160 Tmem163 transmembrane protein 163 Novel N 0.0008250703215375609 -0.2554360474122032 1.0 13958 -268449 Rpl23a ribosomal protein L23A Novel U 0.0008245633670046138 -0.2554412984305902 1.0 13959 -11757 Prdx3 peroxiredoxin 3 Novel U 0.0008240999813130244 -0.2554460981643507 1.0 13960 -22698 Zfp39 zinc finger protein 39 Novel U 0.0008238182907503037 -0.2554490159059393 1.0 13961 -20255 Scg3 secretogranin III Novel U 0.0008237451873160527 -0.25544977310890815 1.0 13962 -57246 Tbx20 T-box 20 Novel U 0.0008234511732886085 -0.2554528184965392 1.0 13963 -12454 Ccnk cyclin K Novel U 0.0008231070536247417 -0.25545638287670525 1.0 13964 -70392 Asb12 ankyrin repeat and SOCS box-containing 12 Novel N 0.0008230259502987225 -0.25545722294229 1.0 13965 -12401 Serpina6 serine (or cysteine) peptidase inhibitor, clade A, member 6 Novel N 0.0008223992052399943 -0.2554637147470052 1.0 13966 -109929 Zbtb25 zinc finger and BTB domain containing 25 Novel U 0.000821986813805797 -0.2554679862839239 1.0 13967 -74111 Rbm19 RNA binding motif protein 19 Novel U 0.0008219693990341952 -0.2554681666655557 1.0 13968 -434204 Whamm WAS protein homolog associated with actin, golgi membranes and microtubules Novel U 0.0008219185422009443 -0.25546869343896267 1.0 13969 -67272 Cmtm5 CKLF-like MARVEL transmembrane domain containing 5 Novel U 0.0008208443316010124 -0.25547982007704406 1.0 13970 -12994 Csn3 casein kappa Novel U 0.0008207684240664006 -0.25548060632479225 1.0 13971 -216558 Ugp2 UDP-glucose pyrophosphorylase 2 Novel N 0.0008206207352267098 -0.2554821360809387 1.0 13972 -13014 Cstb cystatin B Novel N 0.0008200563377610236 -0.2554879820913347 1.0 13973 -17135 Mafk v-maf musculoaponeurotic fibrosarcoma oncogene family, protein K (avian) Novel N 0.0008191927252986314 -0.25549692736083046 1.0 13974 -101023 Zfp513 zinc finger protein 513 Novel N 0.0008187481767906685 -0.2555015319796622 1.0 13975 -17930 Myom2 myomesin 2 Novel U 0.0008186763947647228 -0.25550227549552723 1.0 13976 -76743 Gje1 gap junction protein, epsilon 1 Novel U 0.0008186751837683579 -0.2555022880389878 1.0 13977 -64074 Smoc2 SPARC related modular calcium binding 2 Novel U 0.0008185253627177311 -0.25550383988050507 1.0 13978 -226604 Gm4847 predicted gene 4847 Novel U 0.0008176675177774727 -0.25551272541019615 1.0 13979 -233164 Gm4884 predicted gene 4884 Novel U 0.0008173401593326362 -0.2555161161782064 1.0 13980 -109161 Ube2q2 ubiquitin-conjugating enzyme E2Q family member 2 Novel U 0.0008173338927916107 -0.25551618108683233 1.0 13981 -667404 Vmn1r135 vomeronasal 1 receptor 135 Novel U 0.0008171320454186761 -0.2555182718152858 1.0 13982 -628705 Phf11c PHD finger protein 11C Novel U 0.0008166680836949753 -0.255523077515568 1.0 13983 -56429 Dpt dermatopontin Novel U 0.0008166037927510938 -0.25552374343905127 1.0 13984 -27369 Dguok deoxyguanosine kinase Novel U 0.0008165706794504989 -0.2555240864255303 1.0 13985 -14622 Gjb5 gap junction protein, beta 5 Novel N 0.0008165427003064609 -0.25552437623258445 1.0 13986 -18992 Pou3f2 POU domain, class 3, transcription factor 2 Novel N 0.0008164893699249211 -0.25552492862692333 1.0 13987 -381350 Spag6 sperm associated antigen 6 Novel U 0.0008164277113036524 -0.2555255672848955 1.0 13988 -76441 Daam2 dishevelled associated activator of morphogenesis 2 Novel U 0.0008162232611780508 -0.25552768497257555 1.0 13989 -68490 Zfp579 zinc finger protein 579 Novel N 0.0008161065464252725 -0.25552889390014805 1.0 13990 -667551 Vmn1r157 vomeronasal 1 receptor 157 Novel U 0.0008160393091479259 -0.2555295903416565 1.0 13991 -97165 Hmgb2 high mobility group box 2 Novel U 0.0008159475106398672 -0.2555305411875852 1.0 13992 -230789 Fam76a family with sequence similarity 76, member A Novel U 0.000815886777426206 -0.2555311702602159 1.0 13993 -72720 Zfp248 zinc finger protein 248 Novel U 0.0008154822723802503 -0.25553536011018446 1.0 13994 -238405 Adam6b a disintegrin and metallopeptidase domain 6B Novel U 0.000815016793364454 -0.2555401815265283 1.0 13995 -22289 Kdm6a lysine (K)-specific demethylase 6A Novel N 0.0008149398956705042 -0.25554097803031434 1.0 13996 -105594 Cphx1 cytoplasmic polyadenylated homeobox 1 Novel U 0.0008147268304263671 -0.25554318495310896 1.0 13997 -245631 Pwwp3b PWWP domain containing 3B Novel U 0.0008144797416164838 -0.2555457442908792 1.0 13998 -269536 Tex10 testis expressed gene 10 Novel U 0.0008143535768317577 -0.2555470511015719 1.0 13999 -665578 Potefam3d POTE ankyrin domain family member 3D Novel U 0.0008143427695361462 -0.2555471630431846 1.0 14000 -12572 Cdk7 cyclin dependent kinase 7 Novel U 0.0008142595605877905 -0.2555480249187363 1.0 14001 -68043 Eef1akmt1 EEF1A alpha lysine methyltransferase 1 Novel N 0.0008142586456016728 -0.25554803439613244 1.0 14002 -228366 Large2 LARGE xylosyl- and glucuronyltransferase 2 Novel N 0.0008139904303922095 -0.255550812560455 1.0 14003 -13512 Dsg3 desmoglein 3 Novel N 0.000813892494992385 -0.2555518269721069 1.0 14004 -66952 2310030G06Rik RIKEN cDNA 2310030G06 gene Novel U 0.0008138634871010532 -0.2555521274348917 1.0 14005 -18618 Pemt phosphatidylethanolamine N-methyltransferase Novel U 0.0008138103948762194 -0.2555526773624112 1.0 14006 -415115 Neurl2 neuralized E3 ubiquitin protein ligase 2 Novel U 0.0008137723114524367 -0.25555307182926285 1.0 14007 -230678 Tmem125 transmembrane protein 125 Novel U 0.0008137600676378718 -0.25555319865029164 1.0 14008 -69742 Tm2d2 TM2 domain containing 2 Novel U 0.0008137436420356611 -0.2555533687861394 1.0 14009 -546840 Ldlrad1 low density lipoprotein receptor class A domain containing 1 Novel U 0.0008137216855848437 -0.25555359621033513 1.0 14010 -105511 Fam170b family with sequence similarity 170, member B Novel U 0.0008136479200596315 -0.25555436027122036 1.0 14011 -103836 Zfp692 zinc finger protein 692 Novel N 0.0008134977360813541 -0.25555591587193033 1.0 14012 -636731 Vmn1r61 vomeronasal 1 receptor 61 Novel U 0.0008131733679767769 -0.2555592756660945 1.0 14013 -18140 Uhrf1 ubiquitin-like, containing PHD and RING finger domains, 1 Novel U 0.0008129620315172266 -0.2555614646821952 1.0 14014 -109801 Glo1 glyoxalase 1 Novel N 0.0008126236731763573 -0.25556496938676704 1.0 14015 -69358 Lrrc51 leucine rich repeat containing 51 Novel U 0.0008125636544136938 -0.2555655910591377 1.0 14016 -21975 Top3a topoisomerase (DNA) III alpha Novel U 0.0008117474607122458 -0.2555740451666664 1.0 14017 -435940 Vmn1r249 vomeronasal 1 receptor 249 Novel U 0.0008116964861548605 -0.25557457315945603 1.0 14018 -17189 Mb myoglobin Novel N 0.0008113063031940791 -0.25557861466173726 1.0 14019 -66323 1700001K19Rik RIKEN cDNA 1700001K19 gene Novel U 0.0008106602204080701 -0.2555853067659959 1.0 14020 -116905 Dph1 diphthamide biosynthesis 1 Novel U 0.0008106414696359631 -0.255585500985877 1.0 14021 -57738 Slc15a2 solute carrier family 15 (H+/peptide transporter), member 2 Novel U 0.000810551844279147 -0.25558642932237663 1.0 14022 -236539 Phgdh 3-phosphoglycerate dehydrogenase Novel U 0.0008103539753623463 -0.2555884788421122 1.0 14023 -223827 Gxylt1 glucoside xylosyltransferase 1 Novel N 0.0008100495719046211 -0.2555916318431206 1.0 14024 -217262 Abca9 ATP-binding cassette, sub-family A member 9 Novel U 0.0008094061729256327 -0.25559829614859436 1.0 14025 -78809 4930562C15Rik RIKEN cDNA 4930562C15 gene Novel U 0.0008091608242482178 -0.25560083746212964 1.0 14026 -76952 Nt5c2 5'-nucleotidase, cytosolic II Novel U 0.0008087724696372386 -0.25560486002642374 1.0 14027 -171246 Vmn1r200 vomeronasal 1 receptor 200 Novel U 0.0008084811321828274 -0.2556078776901993 1.0 14028 -208084 Pif1 PIF1 5'-to-3' DNA helicase Novel U 0.000808226245780079 -0.25561051779518 1.0 14029 -665180 Clec2l C-type lectin domain family 2, member L Novel U 0.0008080666243391742 -0.2556121711488177 1.0 14030 -667215 Vmn1r125 vomeronasal 1 receptor 125 Novel U 0.0008080204255152519 -0.25561264967471714 1.0 14031 -225865 Catsper1 cation channel, sperm associated 1 Novel U 0.0008079838400121685 -0.25561302862615537 1.0 14032 -217826 Kcnk13 potassium channel, subfamily K, member 13 Novel U 0.0008079559160074572 -0.25561331786207825 1.0 14033 -20272 Scn7a sodium channel, voltage-gated, type VII, alpha Novel N 0.0008078791354258781 -0.2556141131528182 1.0 14034 -76406 Saxo5 stabilizer of axonemal microtubules 5 Novel U 0.0008078212116770628 -0.2556147131251043 1.0 14035 -228410 Cstf3 cleavage stimulation factor, 3' pre-RNA, subunit 3 Novel N 0.0008077361199296436 -0.25561559450262683 1.0 14036 -16826 Ldb2 LIM domain binding 2 Novel U 0.0008076553004967818 -0.2556164316276556 1.0 14037 -30806 Adamts8 ADAM metallopeptidase with thrombospondin type 1 motif 8 Novel N 0.00080741304721385 -0.25561894087919657 1.0 14038 -57316 C1d C1D nuclear receptor co-repressor Novel N 0.0008073759028025766 -0.25561932561978745 1.0 14039 -223753 Cerk ceramide kinase Novel N 0.0008070294291391526 -0.25562291438260354 1.0 14040 -102638837 Tle7 TLE family member 7 Novel U 0.0008069168108399726 -0.2556240808792443 1.0 14041 -353130 Prss33 serine protease 33 Novel N 0.0008067506712454011 -0.25562580174770333 1.0 14042 -279499 Kctd19 potassium channel tetramerisation domain containing 19 Novel U 0.0008067008577257348 -0.2556263177145025 1.0 14043 -56292 Naa10 N(alpha)-acetyltransferase 10, NatA catalytic subunit Novel U 0.0008066924193616131 -0.2556264051188007 1.0 14044 -338370 Nalcn sodium leak channel, non-selective Novel U 0.000806624486614014 -0.2556271087639671 1.0 14045 -12837 Col8a1 collagen, type VIII, alpha 1 Novel U 0.00080593295108934 -0.2556342716661987 1.0 14046 -268747 Carmil3 capping protein regulator and myosin 1 linker 3 Novel U 0.0008059000471703581 -0.25563461248390984 1.0 14047 -71711 Mus81 MUS81 structure-specific endonuclease subunit Novel N 0.0008057639442042772 -0.25563602223395837 1.0 14048 -241175 Cntnap5b contactin associated protein-like 5B Novel U 0.0008056309190193747 -0.25563740010445063 1.0 14049 -333433 Gpd1l glycerol-3-phosphate dehydrogenase 1-like Novel U 0.0008056037117847442 -0.25563768191609254 1.0 14050 -12615 Cenpa centromere protein A Novel U 0.0008054427043843805 -0.2556393496254527 1.0 14051 -67246 Resf1 retroelement silencing factor 1 Novel U 0.0008053594645056476 -0.25564021182138025 1.0 14052 -75124 Nxnl2 nucleoredoxin-like 2 Novel U 0.0008052334395114684 -0.2556415171841271 1.0 14053 -69743 Casz1 castor zinc finger 1 Novel U 0.0008051918853116821 -0.25564194760116243 1.0 14054 -16987 Lss lanosterol synthase Novel U 0.000805065300266065 -0.2556432587649037 1.0 14055 -13087 Cyp2a5 cytochrome P450, family 2, subfamily a, polypeptide 5 Novel U 0.0008048097765288865 -0.2556459054713735 1.0 14056 -211548 Nomo1 nodal modulator 1 Novel U 0.0008047693327007897 -0.2556463243872154 1.0 14057 -78617 Cstad CSA-conditional, T cell activation-dependent protein Novel U 0.0008046413320080977 -0.2556476502141825 1.0 14058 -245555 Nexmif neurite extension and migration factor Novel U 0.0008045382418775095 -0.25564871801836625 1.0 14059 -20523 Slc25a14 solute carrier family 25 (mitochondrial carrier, brain), member 14 Novel N 0.0008044616912306924 -0.2556495109274495 1.0 14060 -14660 Gls glutaminase Novel U 0.0008043804361107918 -0.2556503525653103 1.0 14061 -74464 Zswim5 zinc finger SWIM-type containing 5 Novel U 0.000804209468045733 -0.2556521234469079 1.0 14062 -208715 Hmgcs1 3-hydroxy-3-methylglutaryl-Coenzyme A synthase 1 Novel N 0.0008036849715872735 -0.2556575561639827 1.0 14063 -21749 Terf1 telomeric repeat binding factor 1 Novel U 0.0008031900095924927 -0.2556626829640537 1.0 14064 -17068 Ly6d lymphocyte antigen 6 family member D Novel U 0.0008029844826955145 -0.25566481180489625 1.0 14065 -628779 Hs3st4 heparan sulfate (glucosamine) 3-O-sulfotransferase 4 Novel U 0.0008028634325901162 -0.25566606563790867 1.0 14066 -217473 Ankmy2 ankyrin repeat and MYND domain containing 2 Novel U 0.000802799169495572 -0.25566673127292944 1.0 14067 -66609 Cryzl1 crystallin zeta like 1 Novel U 0.0008024013303364134 -0.2556708520778618 1.0 14068 -78174 Cox7b2 cytochrome c oxidase subunit 7B2 Novel U 0.0008023703319853364 -0.25567117315776317 1.0 14069 -626397 Vmn1r12 vomeronasal 1 receptor 12 Novel U 0.0008022304628504294 -0.2556726219176646 1.0 14070 -110532 Adarb1 adenosine deaminase, RNA-specific, B1 Novel U 0.0008022104876661542 -0.25567282881996667 1.0 14071 -102693 Phldb1 pleckstrin homology like domain, family B, member 1 Novel U 0.0008019969875473352 -0.25567504024717896 1.0 14072 -18999 Pou5f1 POU domain, class 5, transcription factor 1 Novel U 0.0008009175036124028 -0.25568622150629083 1.0 14073 -121022 Mrps6 mitochondrial ribosomal protein S6 Novel U 0.0008008411367303358 -0.25568701251194487 1.0 14074 -50926 Hnrnpdl heterogeneous nuclear ribonucleoprotein D-like Novel N 0.0008004435156504253 -0.2556911310580195 1.0 14075 -236848 Tmem185a transmembrane protein 185A Novel N 0.0007999972468132812 -0.25569575349596435 1.0 14076 -244238 Mrgpre MAS-related GPR, member E Novel U 0.0007999861471683204 -0.25569586846572195 1.0 14077 -234733 Ddx19b DEAD box helicase 19b Novel N 0.0007998089023068596 -0.2556977043621704 1.0 14078 -270066 Slc35e1 solute carrier family 35, member E1 Novel U 0.0007998020894651054 -0.2556977749293613 1.0 14079 -14872 Gstt2 glutathione S-transferase, theta 2 Novel U 0.000799663007129875 -0.25569921553961755 1.0 14080 -433181 Spink11 serine peptidase inhibitor, Kazal type 11 Novel U 0.0007990919842450054 -0.25570513017588764 1.0 14081 -231549 Lrrc8d leucine rich repeat containing 8D Novel U 0.0007989182622081254 -0.25570692958303487 1.0 14082 -69726 Smyd3 SET and MYND domain containing 3 Novel U 0.0007988634555655311 -0.25570749726843717 1.0 14083 -13495 Drg2 developmentally regulated GTP binding protein 2 Novel N 0.0007985549154958704 -0.255710693116336 1.0 14084 -270672 Map3k15 mitogen-activated protein kinase kinase kinase 15 Novel U 0.0007985017625953366 -0.2557112436723324 1.0 14085 -619287 Rtl4 retrotransposon Gag like 4 Novel U 0.0007984080464979052 -0.25571221438058883 1.0 14086 -20845 Star steroidogenic acute regulatory protein Novel U 0.0007983553251220307 -0.2557127604668671 1.0 14087 -51793 Ddah2 DDAH family member 2, ADMA independent Novel N 0.0007983192705293558 -0.2557131339191528 1.0 14088 -14425 Galnt3 polypeptide N-acetylgalactosaminyltransferase 3 Novel U 0.0007983051677243063 -0.25571327999554383 1.0 14089 -380712 Tlcd2 TLC domain containing 2 Novel U 0.0007981503947295392 -0.25571488312913576 1.0 14090 -100121 Tdrd7 tudor domain containing 7 Novel N 0.0007978425743795085 -0.25571807152220233 1.0 14091 -73598 1700001O22Rik RIKEN cDNA 1700001O22 gene Novel U 0.0007977028127031996 -0.2557195191690511 1.0 14092 -106407 Slc51a solute carrier family 51, alpha subunit Novel U 0.000797652689253684 -0.25572003834609347 1.0 14093 -240613 Brd10 bromodomain containing 10 Novel U 0.0007973243240898615 -0.25572343954166593 1.0 14094 -20502 Slc16a2 solute carrier family 16 (monocarboxylic acid transporters), member 2 Novel U 0.0007972406367723841 -0.2557243063721493 1.0 14095 -78689 Naa35 N(alpha)-acetyltransferase 35, NatC auxiliary subunit Novel N 0.0007968019268915217 -0.2557288505146735 1.0 14096 -76294 Asb5 ankyrin repeat and SOCs box-containing 5 Novel U 0.0007966738843632345 -0.2557301767749723 1.0 14097 -212996 Galnt17 polypeptide N-acetylgalactosaminyltransferase 17 Novel U 0.0007965041653457887 -0.25573193471897576 1.0 14098 -210982 Bicral BRD4 interacting chromatin remodeling complex associated protein like Novel U 0.0007963445300254108 -0.25573358821637654 1.0 14099 -232879 Zbtb45 zinc finger and BTB domain containing 45 Novel U 0.0007962789553593296 -0.25573426743661215 1.0 14100 -269424 Jade1 jade family PHD finger 1 Novel N 0.0007958028488860248 -0.25573919893181146 1.0 14101 -101744 Acp7 acid phosphatase 7, tartrate resistant Novel U 0.0007957017497158715 -0.25574024611369245 1.0 14102 -386750 Slitrk3 SLIT and NTRK-like family, member 3 Novel U 0.0007955677328394279 -0.2557416342560931 1.0 14103 -114301 Palmd palmdelphin Novel U 0.000794442831260272 -0.25575328594967084 1.0 14104 -50525 Spag6l sperm associated antigen 6-like Novel U 0.0007943686976055221 -0.25575405382362976 1.0 14105 -109241 Mbd5 methyl-CpG binding domain protein 5 Novel U 0.0007943298350902328 -0.25575445636028554 1.0 14106 -23956 Neu2 neuraminidase 2 Novel N 0.0007943078812419926 -0.2557546837575239 1.0 14107 -71151 Eri2 exoribonuclease 2 Novel U 0.0007940671124485602 -0.25575717763277145 1.0 14108 -100604 Lrrc8c leucine rich repeat containing 8 family, member C Novel U 0.0007940283397551198 -0.25575757923905557 1.0 14109 -19047 Ppp1cc protein phosphatase 1 catalytic subunit gamma Novel U 0.0007937717138795412 -0.25576023736143866 1.0 14110 -21645 Tcte1 t-complex-associated testis expressed 1 Novel U 0.0007937403641944703 -0.25576056208044606 1.0 14111 -11532 Adh5 alcohol dehydrogenase 5 (class III), chi polypeptide Novel U 0.0007932784305841547 -0.25576534677359647 1.0 14112 -270120 Fat3 FAT atypical cadherin 3 Novel U 0.0007930365342214534 -0.2557678523281694 1.0 14113 -240063 Zfp811 zinc finger protein 811 Novel U 0.000793012192451439 -0.255768104459423 1.0 14114 -16852 Lgals1 lectin, galactose binding, soluble 1 Novel U 0.0007923980637285183 -0.25577446558454664 1.0 14115 -623186 Prr23a2 proline rich 23A, member 2 Novel U 0.0007922751193576989 -0.255775739038298 1.0 14116 -69082 Zc3h15 zinc finger CCCH-type containing 15 Novel U 0.0007915785842545297 -0.25578295372599924 1.0 14117 -75273 Pelp1 proline, glutamic acid and leucine rich protein 1 Novel N 0.0007913702470181429 -0.25578511167624507 1.0 14118 -16669 Krt19 keratin 19 Novel U 0.0007912692167243514 -0.25578615814470695 1.0 14119 -13070 Cyp11a1 cytochrome P450, family 11, subfamily a, polypeptide 1 Novel N 0.0007912642521087087 -0.25578620956803255 1.0 14120 -77619 Prelid2 PRELI domain containing 2 Novel U 0.0007911797697670304 -0.2557870846333505 1.0 14121 -56012 Pgam2 phosphoglycerate mutase 2 Novel U 0.0007910875222891907 -0.2557880401296935 1.0 14122 -12007 Azgp1 alpha-2-glycoprotein 1, zinc Novel N 0.0007908775616136671 -0.25579021489546844 1.0 14123 -69923 Agk acylglycerol kinase Novel U 0.000790805525435371 -0.2557909610438352 1.0 14124 -57442 Kcne3 potassium voltage-gated channel, Isk-related subfamily, gene 3 Novel U 0.0007907441843940094 -0.25579159641232513 1.0 14125 -234825 Klhdc4 kelch domain containing 4 Novel U 0.0007907378237637575 -0.2557916622955242 1.0 14126 -77604 Rbm12b2 RNA binding motif protein 12 B2 Novel U 0.0007905417388059469 -0.25579369333707125 1.0 14127 -80979 Slc26a5 solute carrier family 26, member 5 Novel N 0.0007903494478052053 -0.2557956850809357 1.0 14128 -27222 Atp1a4 ATPase, Na+/K+ transporting, alpha 4 polypeptide Novel N 0.0007901488378521885 -0.25579776299223433 1.0 14129 -229003 Helz2 helicase with zinc finger 2, transcriptional coactivator Novel N 0.0007901181463470727 -0.25579808089383543 1.0 14130 -100637 N4bp2l1 NEDD4 binding protein 2-like 1 Novel U 0.0007901093447547652 -0.2557981720604392 1.0 14131 -14472 Gbx2 gastrulation brain homeobox 2 Novel N 0.0007899353929455299 -0.2557999738475609 1.0 14132 -93960 Nkd1 naked cuticle 1 Novel U 0.0007894679116884837 -0.25580481600305377 1.0 14133 -100043569 Vmn1r112 vomeronasal 1 receptor 112 Novel U 0.0007893596273731503 -0.25580593760843234 1.0 14134 -78581 Utp23 UTP23 small subunit processome component Novel U 0.0007892437691416202 -0.2558071376641859 1.0 14135 -20389 Sftpc surfactant associated protein C Novel U 0.000788747220659825 -0.25581228089703717 1.0 14136 -66817 Tmem170 transmembrane protein 170 Novel U 0.0007886582734270738 -0.25581320220955 1.0 14137 -66121 Chchd1 coiled-coil-helix-coiled-coil-helix domain containing 1 Novel U 0.0007883505770516139 -0.25581638931849204 1.0 14138 -171242 Vmn1r78 vomeronasal 1 receptor 78 Novel U 0.0007882827717320122 -0.2558170916437635 1.0 14139 -67647 4930523C07Rik RIKEN cDNA 4930523C07 gene Novel U 0.0007881999163475191 -0.25581794985711237 1.0 14140 -22036 Traip TRAF-interacting protein Novel U 0.0007875469599417939 -0.25582471315809807 1.0 14141 -73381 Cmtm2a CKLF-like MARVEL transmembrane domain containing 2A Novel U 0.0007874849484660995 -0.25582535547092483 1.0 14142 -27224 Eloa elongin A Novel N 0.0007872866570927417 -0.25582740936645154 1.0 14143 -227693 Zer1 zyg-11 related, cell cycle regulator Novel U 0.0007868927301701551 -0.25583148964856606 1.0 14144 -12237 Bub3 BUB3 mitotic checkpoint protein Novel U 0.0007865397400236122 -0.25583514590890005 1.0 14145 -66983 Zfp830 zinc finger protein 830 Novel U 0.0007864410019137102 -0.25583616863499653 1.0 14146 -21849 Trim28 tripartite motif-containing 28 Novel U 0.0007863553119957647 -0.25583705620834973 1.0 14147 -71723 Dhx34 DExH-box helicase 34 Novel N 0.0007861874713397468 -0.2558387946963473 1.0 14148 -100009600 Zglp1 zinc finger, GATA-like protein 1 Novel U 0.0007858420222485326 -0.2558423728466781 1.0 14149 -226565 Fmo6 flavin containing monooxygenase 6 Novel U 0.0007858061092705794 -0.25584274483212316 1.0 14150 -12565 Cdh9 cadherin 9 Novel U 0.0007857058961210604 -0.2558437828366315 1.0 14151 -140486 Igf2bp1 insulin-like growth factor 2 mRNA binding protein 1 Novel N 0.0007851316815453182 -0.2558497305323308 1.0 14152 -16529 Kcnk5 potassium channel, subfamily K, member 5 Novel N 0.000785086452294457 -0.2558501990154244 1.0 14153 -19718 Rfc2 replication factor C (activator 1) 2 Novel U 0.0007849604187971246 -0.2558515044662466 1.0 14154 -100043461 Hsd3b9 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 9 Novel U 0.0007843456092062143 -0.25585787264377846 1.0 14155 -66455 Cnpy4 canopy FGF signaling regulator 4 Novel U 0.0007840485142189918 -0.25586094994388964 1.0 14156 -21429 Ubtf upstream binding transcription factor, RNA polymerase I Novel U 0.0007838269905634746 -0.2558632444786313 1.0 14157 -56198 Heyl hairy/enhancer-of-split related with YRPW motif-like Novel U 0.0007835062142342622 -0.25586656706930433 1.0 14158 -101685 Spty2d1 SPT2 chromatin protein domain containing 1 Novel N 0.0007834067249912735 -0.25586759757561267 1.0 14159 -69823 Fyttd1 forty-two-three domain containing 1 Novel N 0.0007831962687918977 -0.2558697774740074 1.0 14160 -238247 Arid4a AT-rich interaction domain 4A Novel N 0.0007831888978173788 -0.2558698538223192 1.0 14161 -57319 Smpdl3a sphingomyelin phosphodiesterase, acid-like 3A Novel N 0.0007831344758082219 -0.25587041752370104 1.0 14162 -13194 Ddb1 damage specific DNA binding protein 1 Novel U 0.0007828262243821628 -0.2558736103818389 1.0 14163 -76408 Abcc3 ATP-binding cassette, sub-family C member 3 Novel N 0.0007827619089199135 -0.25587427655928263 1.0 14164 -66606 Lrrc57 leucine rich repeat containing 57 Novel U 0.000782702840094687 -0.25587488839223255 1.0 14165 -28126 Nop16 NOP16 nucleolar protein Novel U 0.000782458117036604 -0.25587742322562335 1.0 14166 -66690 Tmem186 transmembrane protein 186 Novel N 0.0007822299424137048 -0.25587978665086647 1.0 14167 -14884 Gtf2h1 general transcription factor II H, polypeptide 1 Novel U 0.0007822034266939822 -0.2558800612998197 1.0 14168 -69660 Tmbim1 transmembrane BAX inhibitor motif containing 1 Novel U 0.0007819524466038031 -0.2558826609433433 1.0 14169 -68753 Mybphl myosin binding protein H-like Novel U 0.0007813386741496926 -0.25588901837824624 1.0 14170 -56318 Acp3 acid phosphatase 3 Novel U 0.0007812770132737296 -0.2558896570595725 1.0 14171 -78408 Fam131a family with sequence similarity 131, member A Novel U 0.0007810911532300346 -0.25589158219179525 1.0 14172 -170826 Ppargc1b peroxisome proliferative activated receptor, gamma, coactivator 1 beta Novel U 0.0007809777234002176 -0.2558927570942437 1.0 14173 -338362 Ust uronyl-2-sulfotransferase Novel N 0.0007807576941266227 -0.2558950361502265 1.0 14174 -66218 Ndufb9 NADH:ubiquinone oxidoreductase subunit B9 Novel N 0.0007807552300964202 -0.25589506167257037 1.0 14175 -100861971 Btbd35f24 BTB domain containing 35, family member 24 Novel U 0.0007806541127653017 -0.25589610904256205 1.0 14176 -279653 Pcdh19 protocadherin 19 Novel U 0.0007806017432632501 -0.2558966514841427 1.0 14177 -56412 Noa1 nitric oxide associated 1 Novel N 0.0007805588890509499 -0.255897095366665 1.0 14178 -76737 Creld2 cysteine-rich with EGF-like domains 2 Novel U 0.000780505693867909 -0.25589764636062223 1.0 14179 -72057 Phf10 PHD finger protein 10 Novel U 0.000780472986420049 -0.25589798514329193 1.0 14180 -20452 St8sia4 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 4 Novel N 0.000780264355973536 -0.2559001461305986 1.0 14181 -268534 Sntg2 syntrophin, gamma 2 Novel N 0.0007799915676019711 -0.25590297166358383 1.0 14182 -58864 Tssk3 testis-specific serine kinase 3 Novel U 0.0007798866336917294 -0.25590405856557663 1.0 14183 -231386 Ythdc1 YTH domain containing 1 Novel N 0.000779646073282804 -0.25590655028238424 1.0 14184 -71988 Esco2 establishment of sister chromatid cohesion N-acetyltransferase 2 Novel U 0.0007796307176912821 -0.25590670933509646 1.0 14185 -208146 Yeats2 YEATS domain containing 2 Novel U 0.0007791350987418178 -0.2559118429398824 1.0 14186 -77296 Fam162b family with sequence similarity 162, member B Novel U 0.0007789863574188835 -0.25591338359761573 1.0 14187 -13885 Esd esterase D/formylglutathione hydrolase Novel U 0.0007788730553705874 -0.2559145571765074 1.0 14188 -18518 Igbp1 immunoglobulin (CD79A) binding protein 1 Novel U 0.0007787753394184941 -0.25591556931512693 1.0 14189 -433470 AA467197 expressed sequence AA467197 Novel U 0.000778753785463671 -0.25591579257028246 1.0 14190 -69149 Kbtbd3 kelch repeat and BTB (POZ) domain containing 3 Novel U 0.0007783233370312425 -0.2559202511409953 1.0 14191 -101613 Nlrp6 NLR family, pyrin domain containing 6 Novel U 0.0007782194896322045 -0.25592132678894075 1.0 14192 -100416956 Pnma6e PNMA family member 6E Novel U 0.0007780299794620105 -0.2559232897290538 1.0 14193 -78779 Spata2l spermatogenesis associated 2-like Novel U 0.0007778611983855333 -0.25592503795789556 1.0 14194 -64658 Mrps25 mitochondrial ribosomal protein S25 Novel N 0.0007778494968158454 -0.25592515916236974 1.0 14195 -56488 Nxt1 NTF2-related export protein 1 Novel N 0.0007776419392622473 -0.2559273090366868 1.0 14196 -17389 Mmp16 matrix metallopeptidase 16 Novel N 0.0007769453765662251 -0.25593452401019395 1.0 14197 -226781 Slc30a10 solute carrier family 30, member 10 Novel U 0.0007765978148741448 -0.25593812404277505 1.0 14198 -66377 Ndufc1 NADH:ubiquinone oxidoreductase subunit C1 Novel N 0.0007763971807197057 -0.2559402022047512 1.0 14199 -18815 Plg plasminogen Novel U 0.0007763411774670242 -0.2559407822846015 1.0 14200 -67556 Pigm phosphatidylinositol glycan anchor biosynthesis, class M Novel U 0.0007761612540882133 -0.25594264592504457 1.0 14201 -68048 Aen apoptosis enhancing nuclease Novel N 0.0007756189682261378 -0.25594826290417727 1.0 14202 -50790 Acsl4 acyl-CoA synthetase long-chain family member 4 Novel N 0.0007756148852561959 -0.2559483051954457 1.0 14203 -16599 Klf3 Kruppel-like transcription factor 3 (basic) Novel N 0.0007756127968400566 -0.2559483268271914 1.0 14204 -69606 Mtfmt mitochondrial methionyl-tRNA formyltransferase Novel N 0.0007754088706558761 -0.25595043908790344 1.0 14205 -66256 Ssr2 signal sequence receptor, beta Novel U 0.0007753378040841229 -0.25595117519311744 1.0 14206 -209692 Dhtkd1 dehydrogenase E1 and transketolase domain containing 1 Novel N 0.000775314360299782 -0.255951418023065 1.0 14207 -67883 Uxs1 UDP-glucuronate decarboxylase 1 Novel N 0.0007752984473417879 -0.25595158284896075 1.0 14208 -11800 Api5 apoptosis inhibitor 5 Novel N 0.000775177708042614 -0.2559528334626526 1.0 14209 -11770 Fabp4 fatty acid binding protein 4, adipocyte Novel U 0.0007745685968777175 -0.2559591426160751 1.0 14210 -107239 Carns1 carnosine synthase 1 Novel N 0.0007743004666166704 -0.2559619199005047 1.0 14211 -100061 Lrrc19 leucine rich repeat containing 19 Novel N 0.0007742942947861779 -0.2559619838281221 1.0 14212 -93885 Pcdhb14 protocadherin beta 14 Novel U 0.0007740016055167439 -0.25596501549395323 1.0 14213 -19289 Igdcc3 immunoglobulin superfamily, DCC subclass, member 3 Novel U 0.0007738705684260723 -0.25596637277183076 1.0 14214 -668107 Cwc22rt4 CWC22 spliceosome-associated protein, retrotransposed 4 Novel U 0.0007738512276523185 -0.25596657310292953 1.0 14215 -16592 Fabp5 fatty acid binding protein 5, epidermal Novel N 0.0007736463873936297 -0.25596869483159523 1.0 14216 -69852 Tcf23 transcription factor 23 Novel N 0.0007732570210117634 -0.2559727278757789 1.0 14217 -12552 Cdh11 cadherin 11 Novel U 0.0007727913416380165 -0.2559775513674238 1.0 14218 -269120 Optc opticin Novel U 0.0007723558455395294 -0.2559820622216957 1.0 14219 -73699 Ppp2r1b protein phosphatase 2, regulatory subunit A, beta Novel U 0.0007720649252458215 -0.2559850755645345 1.0 14220 -22130 Ttf1 transcription termination factor, RNA polymerase I Novel U 0.0007720293317773485 -0.25598544424051084 1.0 14221 -404545 Ano7 anoctamin 7 Novel N 0.0007719895607193235 -0.2559858561878225 1.0 14222 -210035 Nemp1 nuclear envelope integral membrane protein 1 Novel U 0.0007718573884129467 -0.255987225224227 1.0 14223 -11459 Acta1 actin alpha 1, skeletal muscle Novel U 0.0007717875053932955 -0.25598794907024724 1.0 14224 -22286 Utf1 undifferentiated embryonic cell transcription factor 1 Novel U 0.0007714995529550187 -0.255990931672137 1.0 14225 -11931 Atp1b1 ATPase, Na+/K+ transporting, beta 1 polypeptide Novel U 0.0007713112840129421 -0.25599288175565005 1.0 14226 -17149 Magoh mago homolog, exon junction complex core component Novel N 0.0007709040372796483 -0.255997100003926 1.0 14227 -68705 Gtf2f2 general transcription factor IIF, polypeptide 2 Novel N 0.000770710409877755 -0.2559991055901896 1.0 14228 -77644 Steep1 STING1 ER exit protein 1 Novel U 0.0007705166263992687 -0.2560011127930895 1.0 14229 -23955 Nek4 NIMA (never in mitosis gene a)-related expressed kinase 4 Novel N 0.0007704656697364207 -0.25600164060052816 1.0 14230 -15436 Hoxd4 homeobox D4 Novel N 0.0007701689303751886 -0.25600471421707705 1.0 14231 -22287 Scgb1a1 secretoglobin, family 1A, member 1 Novel N 0.0007700037392822864 -0.25600642526098694 1.0 14232 -218314 Zfp595 zinc finger protein 595 Novel U 0.0007699881906435925 -0.2560065863132754 1.0 14233 -69312 Ppp1r42 protein phosphatase 1, regulatory subunit 42 Novel U 0.0007698582642901499 -0.2560079320861733 1.0 14234 -68291 Mto1 mitochondrial tRNA translation optimization 1 Novel N 0.0007696931372471873 -0.25600964246665603 1.0 14235 -59006 Myoz2 myozenin 2 Novel U 0.0007695447520388872 -0.2560111794357657 1.0 14236 -74386 Rmi1 RecQ mediated genome instability 1 Novel N 0.0007694805029518029 -0.2560118449256976 1.0 14237 -319178 H2bc3 H2B clustered histone 3 Novel U 0.0007692636849072927 -0.25601409071987513 1.0 14238 -13525 Adam26a ADAM metallopeptidase domain 26A Novel U 0.0007692198297488928 -0.2560145449701642 1.0 14239 -73447 Wdr13 WD repeat domain 13 Novel U 0.0007690855937644578 -0.25601593538207823 1.0 14240 -99035 Olah oleoyl-ACP hydrolase Novel N 0.0007690743278320659 -0.2560160520742356 1.0 14241 -217664 Mgat2 mannoside acetylglucosaminyltransferase 2 Novel U 0.0007688795797206327 -0.2560180692687718 1.0 14242 -216021 Stox1 storkhead box 1 Novel U 0.0007686739827377118 -0.25602019883556226 1.0 14243 -140721 Caskin2 CASK-interacting protein 2 Novel U 0.0007685702123588504 -0.25602127368573524 1.0 14244 -73314 Lrrc69 leucine rich repeat containing 69 Novel U 0.0007684919929063372 -0.25602208388025305 1.0 14245 -67031 Upf3a UPF3 regulator of nonsense transcripts homolog A (yeast) Novel N 0.0007681100082793993 -0.2560260404644618 1.0 14246 -100042055 Gm10377 predicted gene 10377 Novel U 0.0007680323406102615 -0.25602684494362554 1.0 14247 -80978 Mrgprh MAS-related GPR, member H Novel U 0.0007678603722917327 -0.2560286261858157 1.0 14248 -97884 B3galnt2 UDP-GalNAc:betaGlcNAc beta 1,3-galactosaminyltransferase, polypeptide 2 Novel N 0.0007677638616213729 -0.2560296258401667 1.0 14249 -225027 Srsf7 serine and arginine-rich splicing factor 7 Novel N 0.0007672783722240234 -0.2560346545233848 1.0 14250 -83555 Tex13b testis expressed 13B Novel U 0.000766601812483789 -0.2560416623069334 1.0 14251 -71069 Stox2 storkhead box 2 Novel U 0.000766439700912242 -0.2560433414532624 1.0 14252 -229007 Zgpat zinc finger, CCCH-type with G patch domain Novel U 0.0007662527964361461 -0.25604527740368166 1.0 14253 -234889 Gucy1a2 guanylate cyclase 1, soluble, alpha 2 Novel N 0.0007661253487365444 -0.2560465975027645 1.0 14254 -118451 Mrps2 mitochondrial ribosomal protein S2 Novel U 0.000766120976812624 -0.2560466427870088 1.0 14255 -114661 Prss28 serine protease 28 Novel U 0.0007659661143996263 -0.2560482468467918 1.0 14256 -14356 Timm10b translocase of inner mitochondrial membrane 10B Novel U 0.0007658823141255121 -0.25604911484727627 1.0 14257 -108115 Slco4a1 solute carrier organic anion transporter family, member 4a1 Novel U 0.0007657610258472888 -0.25605037114727497 1.0 14258 -67119 Ccdc159 coiled-coil domain containing 159 Novel U 0.0007655327939775831 -0.25605273516547866 1.0 14259 -56401 P3h1 prolyl 3-hydroxylase 1 Novel U 0.0007654947782999525 -0.2560531289306178 1.0 14260 -17873 Gadd45b growth arrest and DNA-damage-inducible 45 beta Novel U 0.000765449775413308 -0.25605359506903835 1.0 14261 -56726 Sh3bgrl SH3-binding domain glutamic acid-rich protein like Novel U 0.0007652770598701479 -0.2560553840509567 1.0 14262 -100042939 H2al1f H2A histone family member L1F Novel U 0.0007645867558831543 -0.2560625341969614 1.0 14263 -19146 Tmprss15 transmembrane protease, serine 15 Novel U 0.0007644722699945071 -0.2560637200380325 1.0 14264 -58187 Cldn10 claudin 10 Novel U 0.000764225443332766 -0.2560662766604808 1.0 14265 -56643 Slc15a1 solute carrier family 15 (oligopeptide transporter), member 1 Novel U 0.0007642105437466358 -0.25606643098990417 1.0 14266 -215493 A3galt2 alpha 1,3-galactosyltransferase 2 Novel U 0.000764158389563194 -0.2560669712012218 1.0 14267 -171171 Ntng2 netrin G2 Novel U 0.0007639656004084711 -0.2560689681049488 1.0 14268 -22272 Uqcrq ubiquinol-cytochrome c reductase, complex III subunit VII Novel N 0.0007639540259144684 -0.2560690879931772 1.0 14269 -14405 Gabrg1 gamma-aminobutyric acid type A receptor subunit gamma 1 Novel U 0.0007638572709540877 -0.25607009017787613 1.0 14270 -244495 Sgo2b shugoshin 2B Novel U 0.0007630486251858501 -0.2560784661041608 1.0 14271 -19134 Prpf4b pre-mRNA processing factor 4B Novel N 0.0007630158403787676 -0.2560788056881148 1.0 14272 -19703 Renbp renin binding protein Novel N 0.0007628946845356627 -0.25608006061635485 1.0 14273 -14415 Gad1 glutamate decarboxylase 1 Novel N 0.0007626703164526809 -0.25608238461358274 1.0 14274 -74570 Zkscan1 zinc finger with KRAB and SCAN domains 1 Novel U 0.0007623719876974905 -0.25608547469302195 1.0 14275 -12321 Calu calumenin Novel U 0.000762256304925566 -0.25608667293137066 1.0 14276 -171198 Vmn1r28 vomeronasal 1 receptor 28 Novel U 0.000762244694696334 -0.25608679318974337 1.0 14277 -142682 Zcchc14 zinc finger, CCHC domain containing 14 Novel U 0.0007619938131453939 -0.25608939181260076 1.0 14278 -110082 Dnah5 dynein, axonemal, heavy chain 5 Novel N 0.000761873334676697 -0.256090639724619 1.0 14279 -235033 Rdh8 retinol dehydrogenase 8 Novel N 0.0007618674448830228 -0.2560907007309083 1.0 14280 -74148 Cluh clustered mitochondria homolog Novel U 0.0007618309245380551 -0.2560910790074409 1.0 14281 -76768 Alpi alkaline phosphatase, intestinal Novel U 0.0007617969787307807 -0.25609143061699674 1.0 14282 -20497 Slc12a3 solute carrier family 12, member 3 Novel U 0.0007617086825934122 -0.256092345185485 1.0 14283 -22139 Ttr transthyretin Novel U 0.0007616838256081717 -0.256092602653321 1.0 14284 -13421 Dnase1l3 deoxyribonuclease 1-like 3 Novel U 0.0007616526289820969 -0.25609292578694837 1.0 14285 -65246 Xpo7 exportin 7 Novel U 0.0007615954465512608 -0.25609351808068714 1.0 14286 -14262 Fmo3 flavin containing monooxygenase 3 Novel U 0.0007614740171810314 -0.2560947758421122 1.0 14287 -217946 Cdca7l cell division cycle associated 7 like Novel N 0.0007609404910728227 -0.25610030208800233 1.0 14288 -229571 Tdpoz8 TD and POZ domain containing 8 Novel U 0.0007609087103125873 -0.2561006312720721 1.0 14289 -68832 Ldah lipid droplet associated hydrolase Novel U 0.0007607575998071322 -0.25610219646972016 1.0 14290 -217864 Rcor1 REST corepressor 1 Novel N 0.0007606767702869737 -0.2561030336992328 1.0 14291 -330657 Prss53 serine protease 53 Novel U 0.0007605854527414159 -0.2561039795633678 1.0 14292 -71091 Cdkl1 cyclin dependent kinase like 1 Novel N 0.0007604800638999786 -0.2561050711775229 1.0 14293 -16979 Lrrn1 leucine rich repeat protein 1, neuronal Novel U 0.000760311779638792 -0.25610681426036824 1.0 14294 -78459 Plscr1l1 phospholipid scramblase 1 like 1 Novel U 0.0007601939349304506 -0.2561080348919833 1.0 14295 -14235 Foxm1 forkhead box M1 Novel U 0.0007601375395217727 -0.2561086190337725 1.0 14296 -20842 Stag1 STAG1 cohesin complex component Novel U 0.0007600202831112159 -0.25610983357181843 1.0 14297 -100502896 Msantd5f3 Myb/SANT DNA binding domain containing 5 family member 3 Novel U 0.0007597574352453089 -0.25611255614137285 1.0 14298 -67568 Mrfap1 Morf4 family associated protein 1 Novel U 0.0007595480722015776 -0.2561147247168974 1.0 14299 -380878 Tcstv7a Tcstv family member 7A Novel U 0.0007594792325386668 -0.2561154377558629 1.0 14300 -434800 Smim9 small integral membrane protein 9 Novel U 0.0007594582604284488 -0.25611565498429106 1.0 14301 -57434 Xrcc2 X-ray repair complementing defective repair in Chinese hamster cells 2 Novel U 0.0007593851848250979 -0.2561164118989883 1.0 14302 -94281 Sfxn4 sideroflexin 4 Novel U 0.0007591787988996737 -0.2561185496376193 1.0 14303 -67458 Ergic1 endoplasmic reticulum-golgi intermediate compartment 1 Novel U 0.0007588532669353457 -0.2561219214870045 1.0 14304 -68153 Gtf2e2 general transcription factor II E, polypeptide 2 (beta subunit) Novel U 0.0007587374460892556 -0.25612312115552094 1.0 14305 -12464 Cct4 chaperonin containing TCP1 subunit 4 Novel U 0.0007587279345976011 -0.2561232196752388 1.0 14306 -100042144 Gm14632 predicted gene 14632 Novel U 0.0007586591780812137 -0.2561239318529753 1.0 14307 -635169 CK137956 cDNA sequence CK137956 Novel U 0.0007584882106292403 -0.2561257027282226 1.0 14308 -21357 Tarbp2 TARBP2, RISC loading complex RNA binding subunit Novel U 0.0007580460171987168 -0.25613028295323964 1.0 14309 -67622 Mxra7 matrix-remodelling associated 7 Novel U 0.0007578520900110852 -0.2561322916446741 1.0 14310 -240614 Ranbp6 RAN binding protein 6 Novel U 0.0007578157687735236 -0.2561326678588588 1.0 14311 -102635990 Spata31h1 SPATA31 subfamily H member 1 Novel U 0.0007576907852479553 -0.25613396243410796 1.0 14312 -14623 Gjb6 gap junction protein, beta 6 Novel U 0.0007573314340785033 -0.25613768458170816 1.0 14313 -20602 Ncor2 nuclear receptor co-repressor 2 Novel N 0.0007571809212936927 -0.25613924358818535 1.0 14314 -100038927 Defa30 defensin, alpha, 30 Novel U 0.000756691807544352 -0.2561443098123223 1.0 14315 -78795 Armc9 armadillo repeat containing 9 Novel N 0.0007562625802763229 -0.25614875573425444 1.0 14316 -73724 Mcee methylmalonyl CoA epimerase Novel N 0.0007561210728788171 -0.256150221463226 1.0 14317 -70823 Hmgxb4 HMG box domain containing 4 Novel U 0.0007559391364800927 -0.2561521059544632 1.0 14318 -67085 1700024G13Rik RIKEN cDNA 1700024G13 gene Novel U 0.0007557494303671029 -0.25615407092414527 1.0 14319 -66810 Rbm22 RNA binding motif protein 22 Novel U 0.0007557410022419163 -0.2561541582223889 1.0 14320 -56490 Zbtb20 zinc finger and BTB domain containing 20 Novel U 0.0007553230704040177 -0.25615848714662703 1.0 14321 -70920 Tex47 testis expressed 47 Novel U 0.0007552288188321767 -0.25615946340130985 1.0 14322 -194237 Rimkla ribosomal modification protein rimK-like family member A Novel N 0.0007550979220584107 -0.2561608192257895 1.0 14323 -75605 Kdm5b lysine demethylase 5B Novel N 0.0007546676075461692 -0.2561652764093615 1.0 14324 -75906 Fam184a family with sequence similarity 184, member A Novel U 0.0007544380142078 -0.2561676545296128 1.0 14325 -230996 9430015G10Rik RIKEN cDNA 9430015G10 gene Novel U 0.0007541361015644827 -0.2561707817308475 1.0 14326 -234395 Ushbp1 USH1 protein network component harmonin binding protein 1 Novel U 0.0007537243541943219 -0.25617504659657214 1.0 14327 -381693 Wdr95 WD40 repeat domain 95 Novel U 0.0007537111776620411 -0.25617518307866033 1.0 14328 -21345 Tagln transgelin Novel N 0.0007534212628533593 -0.25617818600671827 1.0 14329 -108673 Ccdc86 coiled-coil domain containing 86 Novel U 0.0007532604197746784 -0.25617985201403976 1.0 14330 -74393 Map10 microtubule-associated protein 10 Novel U 0.0007531103430705412 -0.2561814065036077 1.0 14331 -100044509 Tgfbr3l transforming growth factor, beta receptor III-like Novel U 0.0007530568396689132 -0.256181960690083 1.0 14332 -170756 Slc8b1 solute carrier family 8 (sodium/lithium/calcium exchanger), member B1 Novel U 0.0007529576117917673 -0.2561829884891725 1.0 14333 -11492 Adam19 ADAM metallopeptidase domain 19 Novel U 0.0007529203748904502 -0.25618337418777226 1.0 14334 -56381 Spen spen family transcription repressor Novel U 0.0007522880413019192 -0.25618992387829537 1.0 14335 -67134 Nop56 NOP56 ribonucleoprotein Novel N 0.0007519625791976458 -0.25619329500407245 1.0 14336 -18115 Nnt nicotinamide nucleotide transhydrogenase Novel U 0.0007518831341037787 -0.25619411789374313 1.0 14337 -114142 Foxp2 forkhead box P2 Novel U 0.0007517250935909423 -0.25619575487217977 1.0 14338 -26556 Homer1 homer scaffolding protein 1 Novel N 0.0007517042177147686 -0.2561959711038189 1.0 14339 -245269 Nim1k NIM1 serine/threonine protein kinase Novel N 0.0007516814276285298 -0.256196207162783 1.0 14340 -320549 Pramel48 PRAME like 48 Novel U 0.0007516311573950828 -0.25619672786020853 1.0 14341 -667129 Vmn1r103 vomeronasal 1 receptor 103 Novel U 0.000751501577474263 -0.25619807004476863 1.0 14342 -12846 Comt catechol-O-methyltransferase Novel U 0.0007512755682239425 -0.2562004110411538 1.0 14343 -78781 Zc3hav1 zinc finger CCCH type, antiviral 1 Novel N 0.0007507137437275781 -0.25620623040081814 1.0 14344 -330554 Fan1 FANCD2/FANCI-associated nuclease 1 Novel U 0.000750484483662826 -0.25620860506903237 1.0 14345 -20266 Scn1b sodium channel, voltage-gated, type I, beta Novel U 0.0007504192552529731 -0.25620928070275734 1.0 14346 -12091 Glb1 galactosidase, beta 1 Novel U 0.0007502896074270923 -0.25621062359067587 1.0 14347 -67178 Zmat5 zinc finger, matrin type 5 Novel N 0.0007500903718422417 -0.25621268726631424 1.0 14348 -100038948 Mup9 major urinary protein 9 Novel U 0.0007498799308691959 -0.2562148670069952 1.0 14349 -78250 Iqch IQ motif containing H Novel U 0.0007493463831733312 -0.2562203934764895 1.0 14350 -78910 Asb15 ankyrin repeat and SOCS box-containing 15 Novel U 0.0007490684591521314 -0.2562232722043648 1.0 14351 -171187 Vmn1r33 vomeronasal 1 receptor 33 Novel U 0.000748927086431673 -0.2562247365383559 1.0 14352 -208228 Mob3a MOB kinase activator 3A Novel U 0.000748883101086266 -0.25622519213711775 1.0 14353 -225518 Prdm6 PR domain containing 6 Novel N 0.000748095771750961 -0.2562333472684908 1.0 14354 -71146 Golga7b golgin A7B Novel U 0.0007480372817299124 -0.25623395310620606 1.0 14355 -99890 Prmt6 protein arginine N-methyltransferase 6 Novel N 0.0007478109540017457 -0.25623629740137427 1.0 14356 -18950 Pnp purine-nucleoside phosphorylase Novel U 0.0007476349265994014 -0.25623812068742113 1.0 14357 -12643 Chad chondroadherin Novel U 0.0007474885582411455 -0.25623963676606437 1.0 14358 -78933 Agbl4 ATP/GTP binding protein-like 4 Novel U 0.0007472229870886382 -0.25624238754333184 1.0 14359 -17777 Mttp microsomal triglyceride transfer protein Novel U 0.0007472088870323339 -0.2562425335912516 1.0 14360 -260315 Nav3 neuron navigator 3 Novel U 0.0007472022661690735 -0.25624260216993555 1.0 14361 -234542 Rtbdn retbindin Novel U 0.0007470572746924629 -0.25624410398688396 1.0 14362 -22380 Wbp4 WW domain binding protein 4 Novel N 0.0007470419399050762 -0.25624426282410756 1.0 14363 -22596 Xrcc5 X-ray repair complementing defective repair in Chinese hamster cells 5 Novel U 0.0007461325778134174 -0.2562536819667593 1.0 14364 -381318 Nsl1 NSL1, MIS12 kinetochore complex component Novel U 0.000746097384207665 -0.2562540465009708 1.0 14365 -380702 Shisa6 shisa family member 6 Novel U 0.0007460863444227805 -0.2562541608506997 1.0 14366 -243574 Kbtbd8 kelch repeat and BTB (POZ) domain containing 8 Novel N 0.0007458521581201261 -0.25625658654472416 1.0 14367 -332578 Lcn10 lipocalin 10 Novel U 0.0007456654585260758 -0.2562585203729819 1.0 14368 -208760 Aqp12 aquaporin 12 Novel U 0.0007455085247411357 -0.2562601458879674 1.0 14369 -110304 Glra3 glycine receptor, alpha 3 subunit Novel U 0.0007453841488735958 -0.25626143416911473 1.0 14370 -16615 Klk1b16 kallikrein 1-related peptidase b16 Novel U 0.0007452740163042283 -0.2562625749186478 1.0 14371 -74419 Tktl2 transketolase-like 2 Novel U 0.0007451962569032315 -0.25626338034796714 1.0 14372 -27274 Zfp354b zinc finger protein 354B Novel U 0.0007450441119862556 -0.25626495626001566 1.0 14373 -224432 Scaf4 SR-related CTD-associated factor 4 Novel N 0.0007449495590509935 -0.25626593563621086 1.0 14374 -208372 Asb18 ankyrin repeat and SOCS box-containing 18 Novel U 0.0007449179314033333 -0.25626626323434565 1.0 14375 -16426 Itih3 inter-alpha trypsin inhibitor, heavy chain 3 Novel U 0.0007448240350334134 -0.2562672358098586 1.0 14376 -21973 Top2a topoisomerase (DNA) II alpha Novel U 0.0007446370332449293 -0.25626917276823635 1.0 14377 -207259 Zbtb7c zinc finger and BTB domain containing 7C Novel N 0.0007443563307360473 -0.2562720802755957 1.0 14378 -66244 Nemf nuclear export mediator factor Novel U 0.0007443038057227965 -0.25627262432795633 1.0 14379 -100041574 Ermardl2 ER membrane associated RNA degradation like 2 Novel U 0.0007440983414694766 -0.256274752519938 1.0 14380 -71041 Pcgf6 polycomb group ring finger 6 Novel N 0.0007438964731061017 -0.25627684346580976 1.0 14381 -81012 Vmn1r171 vomeronasal 1 receptor 171 Novel U 0.0007434657561468414 -0.25628130481791467 1.0 14382 -12294 Cacna2d3 calcium channel, voltage-dependent, alpha2/delta subunit 3 Novel U 0.0007432855388025006 -0.25628317150324303 1.0 14383 -280662 Afm afamin Novel U 0.0007427519546929994 -0.25628869834990864 1.0 14384 -66836 Tmem223 transmembrane protein 223 Novel N 0.0007426975772502535 -0.256289261589673 1.0 14385 -94094 Trim34a tripartite motif-containing 34A Novel U 0.0007426439929012759 -0.25628981661459826 1.0 14386 -67666 Hapln3 hyaluronan and proteoglycan link protein 3 Novel U 0.0007425625711729591 -0.25629065997818357 1.0 14387 -327992 Hsf5 heat shock transcription factor family member 5 Novel U 0.0007420768758931699 -0.2562956907939253 1.0 14388 -100270744 Btbd18 BTB domain containing 18 Novel U 0.0007420191336806788 -0.25629628888586403 1.0 14389 -14419 Gal galanin and GMAP prepropeptide Novel U 0.0007419736940679509 -0.2562967595478789 1.0 14390 -108052 Slc14a1 solute carrier family 14 (urea transporter), member 1 Novel N 0.0007418681662212673 -0.25629785260184584 1.0 14391 -381654 Pramel34 PRAME like 34 Novel U 0.0007418584939485411 -0.2562979527869288 1.0 14392 -66773 Gm17019 predicted gene 17019 Novel U 0.0007417691346725707 -0.25629887836737175 1.0 14393 -72821 Scn2b sodium channel, voltage-gated, type II, beta Novel U 0.0007416782222257622 -0.2562998200355072 1.0 14394 -192119 Dicer1 dicer 1, ribonuclease type III Novel U 0.000741537557025302 -0.25630127704102945 1.0 14395 -66882 Bzw1 basic leucine zipper and W2 domains 1 Novel N 0.0007413878625358905 -0.25630282757162987 1.0 14396 -212898 Dse dermatan sulfate epimerase Novel U 0.0007412683241755222 -0.2563040657460369 1.0 14397 -268756 Gulo gulonolactone (L-) oxidase Novel U 0.0007411251129836275 -0.25630554912285475 1.0 14398 -110599589 Asdurf Asnsd1 upstream reading frame Novel U 0.0007405040398002187 -0.25631198217847184 1.0 14399 -75465 Dynlrb2 dynein light chain roadblock-type 2 Novel U 0.0007401257319611862 -0.2563159006786323 1.0 14400 -14057 Sfxn1 sideroflexin 1 Novel N 0.0007400262918371443 -0.25631693067616823 1.0 14401 -17305 Mfng MFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase Novel U 0.0007396442614767693 -0.25632088773408246 1.0 14402 -225724 Mapk4 mitogen-activated protein kinase 4 Novel N 0.000739577048674076 -0.2563215839220832 1.0 14403 -66107 Wfdc21 WAP four-disulfide core domain 21 Novel U 0.0007395067518454376 -0.2563223120543234 1.0 14404 -14813 Grin2c glutamate receptor, ionotropic, NMDA2C (epsilon 3) Novel N 0.0007387894397433561 -0.25632974194949637 1.0 14405 -214150 Ago3 argonaute RISC catalytic subunit 3 Novel N 0.000738195062715589 -0.2563358984872109 1.0 14406 -320352 Lrrc31 leucine rich repeat containing 31 Novel U 0.0007380823297700519 -0.2563370661713549 1.0 14407 -214642 Cped1 cadherin-like and PC-esterase domain containing 1 Novel U 0.000738066249074426 -0.2563372327346715 1.0 14408 -75568 Capsl calcyphosine-like Novel U 0.0007379487432661798 -0.25633844985597054 1.0 14409 -433899 Grxcr1 glutaredoxin, cysteine rich 1 Novel N 0.0007375667241650403 -0.25634240679726195 1.0 14410 -71519 Cyp2u1 cytochrome P450, family 2, subfamily u, polypeptide 1 Novel N 0.0007374974395296457 -0.25634312444523777 1.0 14411 -381633 Nicol1 NELL2 interacting cell ontogeny regulator 1 Novel U 0.0007373923181394281 -0.256344213289142 1.0 14412 -245566 Cypt2 cysteine-rich perinuclear theca 2 Novel U 0.0007372787938104898 -0.25634538917040917 1.0 14413 -26569 Slc27a4 solute carrier family 27 (fatty acid transporter), member 4 Novel U 0.0007371284164742404 -0.2563469467739147 1.0 14414 -668620 Zfp936 zinc finger protein 936 Novel U 0.0007370433508163412 -0.2563478278812028 1.0 14415 -234911 Mmp27 matrix metallopeptidase 27 Novel U 0.0007370387516754402 -0.25634787551895305 1.0 14416 -381522 Ccdc180 coiled-coil domain containing 180 Novel U 0.0007367945349559342 -0.2563504051077055 1.0 14417 -30923 Foxe3 forkhead box E3 Novel U 0.0007367540223547749 -0.25635082473589654 1.0 14418 -100040293 Mindy4b-ps MINDY lysine 48 deubiquitinase 4B, pseudogene Novel U 0.0007365371344377181 -0.2563530712538116 1.0 14419 -20402 Zfp106 zinc finger protein 106 Novel U 0.0007363838287056448 -0.25635465918954475 1.0 14420 -233271 Luzp2 leucine zipper protein 2 Novel U 0.0007362619587976885 -0.2563559215140451 1.0 14421 -433771 Micos10 mitochondrial contact site and cristae organizing system subunit 10 Novel N 0.000735694691004509 -0.256361797255199 1.0 14422 -67674 Trmt112 tRNA methyltransferase 11-2 Novel N 0.0007356644375667414 -0.25636211061931286 1.0 14423 -216456 Gls2 glutaminase 2 (liver, mitochondrial) Novel N 0.0007356403250541578 -0.2563623603759255 1.0 14424 -67698 Fam174a family with sequence similarity 174, member A Novel U 0.0007354546084098927 -0.2563642840228217 1.0 14425 -368204 Khdc1a KH domain containing 1A Novel U 0.0007350515487170665 -0.25636845890187016 1.0 14426 -93880 Pcdhb9 protocadherin beta 9 Novel U 0.000735025732409997 -0.25636872630633006 1.0 14427 -66980 Zdhhc6 zinc finger, DHHC domain containing 6 Novel N 0.0007349644602608308 -0.2563693609612369 1.0 14428 -56184 Msgn1 mesogenin 1 Novel U 0.0007348578688702768 -0.2563704650313563 1.0 14429 -66755 Ppp1r14bl protein phosphatase 1, regulatory inhibitor subunit 14B like Novel U 0.0007346942842176839 -0.25637215943581027 1.0 14430 -107569 Nt5c3 5'-nucleotidase, cytosolic III Novel N 0.0007344954674305727 -0.25637421877355543 1.0 14431 -66881 Pcyox1 prenylcysteine oxidase 1 Novel U 0.0007344425894691125 -0.256374766481742 1.0 14432 -100040722 Btbd35f13 BTB domain containing 35, family member 13 Novel U 0.0007339848681118697 -0.2563795075445135 1.0 14433 -14610 Gja10 gap junction protein, alpha 10 Novel U 0.0007337450473970839 -0.2563819915995936 1.0 14434 -59010 Sqor sulfide quinone oxidoreductase Novel N 0.0007334270518391361 -0.2563852853871293 1.0 14435 -211577 Mrgprf MAS-related GPR, member F Novel U 0.0007332397005727271 -0.2563872259653879 1.0 14436 -238333 Samd15 sterile alpha motif domain containing 15 Novel U 0.0007331277528767209 -0.25638838551594306 1.0 14437 -110895 Slc9a4 solute carrier family 9 (sodium/hydrogen exchanger), member 4 Novel N 0.000733009586962356 -0.25638960947459954 1.0 14438 -620419 Zfp963 zinc finger protein 963 Novel U 0.000732967147803651 -0.25639004905801027 1.0 14439 -664799 Ctcfl CCCTC-binding factor like Novel U 0.0007327580387074703 -0.25639221500315446 1.0 14440 -230587 Glis1 GLIS family zinc finger 1 Novel U 0.0007326631319555914 -0.25639319804417054 1.0 14441 -17841 Mup2 major urinary protein 2 Novel U 0.0007326578452692971 -0.25639325280349334 1.0 14442 -13733 Adgre1 adhesion G protein-coupled receptor E1 Novel N 0.0007325668162069581 -0.25639419567952865 1.0 14443 -66706 Ndufaf3 NADH:ubiquinone oxidoreductase complex assembly factor 3 Novel N 0.0007325161272106436 -0.25639472071448616 1.0 14444 -52468 Ctdsp2 CTD small phosphatase 2 Novel N 0.000732396883260098 -0.256395955839406 1.0 14445 -214812 Zfp609 zinc finger protein 609 Novel N 0.0007321687236709198 -0.25639831910893035 1.0 14446 -71864 Fam217a family with sequence similarity 217, member A Novel U 0.0007321481977377662 -0.2563985317158712 1.0 14447 -277898 Slc15a5 solute carrier family 15, member 5 Novel U 0.0007321181339587454 -0.25639884311550604 1.0 14448 -171195 Vmn1r30 vomeronasal 1 receptor 30 Novel U 0.0007320303911824618 -0.25639975195229836 1.0 14449 -67223 Rrp15 ribosomal RNA processing 15 homolog Novel U 0.0007320243967656428 -0.2563998140422707 1.0 14450 -57370 B4galt3 UDP-Gal:betaGlcNAc beta 1,4-galactosyltransferase, polypeptide 3 Novel N 0.0007317077471439379 -0.256403093888643 1.0 14451 -432999 A930007A09Rik RIKEN cDNA A930007A09 gene Novel U 0.0007308210271009198 -0.2564122785056993 1.0 14452 -677884 Pakap paralemmin A kinase anchor protein Novel U 0.0007304296403054829 -0.25641633247726026 1.0 14453 -320916 Wscd2 WSC domain containing 2 Novel U 0.000730133317004826 -0.25641940178426736 1.0 14454 -70316 Ndufab1 NADH:ubiquinone oxidoreductase subunit AB1 Novel N 0.0007299518102203697 -0.25642128182557405 1.0 14455 -18004 Nek1 NIMA (never in mitosis gene a)-related expressed kinase 1 Novel U 0.0007298808978689263 -0.2564220163333792 1.0 14456 -71063 Zfp597 zinc finger protein 597 Novel U 0.0007296439040623167 -0.25642447110743727 1.0 14457 -72693 Zcchc12 zinc finger, CCHC domain containing 12 Novel U 0.0007296334052636766 -0.25642457985364847 1.0 14458 -244672 Cwf19l2 CWF19 like cell cycle control factor 2 Novel U 0.0007295967193374289 -0.25642495984526653 1.0 14459 -68597 Ccdc167 coiled-coil domain containing 167 Novel U 0.0007294764195527596 -0.2564262059064815 1.0 14460 -67789 Dalrd3 DALR anticodon binding domain containing 3 Novel U 0.0007292988713030371 -0.25642804494541555 1.0 14461 -227545 Proser2 proline and serine rich 2 Novel U 0.0007291679278669486 -0.256429401253222 1.0 14462 -228715 Smim26 small integral membrane protein 26 Novel U 0.0007290292648631816 -0.25643083752005674 1.0 14463 -270109 Pcnx2 pecanex homolog 2 Novel U 0.000729020254566806 -0.2564309308484104 1.0 14464 -100043033 Gm16451 predicted pseudogene 16451 Novel U 0.0007288795965644048 -0.2564323877793754 1.0 14465 -432779 Lrrc14b leucine rich repeat containing 14B Novel U 0.000728871643420183 -0.2564324701577818 1.0 14466 -64655 Mrps22 mitochondrial ribosomal protein S22 Novel U 0.0007286324798945241 -0.2564349474057185 1.0 14467 -434729 Fthl17f ferritin, heavy polypeptide-like 17, member F Novel U 0.0007282435200063286 -0.25643897623945405 1.0 14468 -12564 Cdh8 cadherin 8 Novel N 0.000727943192677335 -0.25644208702005505 1.0 14469 -213673 9530068E07Rik RIKEN cDNA 9530068E07 gene Novel U 0.000727767663484694 -0.2564439051456622 1.0 14470 -234796 Klhl36 kelch-like 36 Novel U 0.0007277655860269981 -0.2564439266639007 1.0 14471 -77113 Klhl2 kelch-like 2, Mayven Novel U 0.000727652858691816 -0.25644509428993284 1.0 14472 -29873 Cspg5 chondroitin sulfate proteoglycan 5 Novel N 0.0007275545852303184 -0.25644611220321645 1.0 14473 -66206 1110059E24Rik RIKEN cDNA 1110059E24 gene Novel U 0.0007270590071303679 -0.2564512453848845 1.0 14474 -433180 Spink6 serine peptidase inhibitor, Kazal type 6 Novel U 0.000726979521332427 -0.2564520686961666 1.0 14475 -245109 Zscan4c zinc finger and SCAN domain containing 4C Novel U 0.0007269420907925642 -0.25645245640046804 1.0 14476 -213449 Tent5d terminal nucleotidyltransferase 5D Novel U 0.0007268670584329882 -0.256453233583182 1.0 14477 -240894 Fmo9 flavin containing monooxygenase 9 Novel U 0.0007268076886234864 -0.2564538485337171 1.0 14478 -72899 Macrod2 mono-ADP ribosylhydrolase 2 Novel N 0.0007267641527045709 -0.25645429947733406 1.0 14479 -56427 Tubd1 tubulin, delta 1 Novel U 0.000726594734751812 -0.25645605430291946 1.0 14480 -70052 Prpf4 pre-mRNA processing factor 4 Novel N 0.0007264502702653696 -0.25645755066132103 1.0 14481 -546143 Pierce2 piercer of microtubule wall 2 Novel U 0.0007263402359566896 -0.2564586903930731 1.0 14482 -226243 Habp2 hyaluronic acid binding protein 2 Novel U 0.0007263146767215488 -0.2564589551347905 1.0 14483 -20391 Sgca sarcoglycan, alpha (dystrophin-associated glycoprotein) Novel N 0.0007261562866870254 -0.2564605957335613 1.0 14484 -232566 Amn1 antagonist of mitotic exit network 1 Novel U 0.0007260740045414726 -0.2564614480093201 1.0 14485 -328092 Dtd2 D-tyrosyl-tRNA deacylase 2 Novel N 0.0007260112924728191 -0.2564620975788656 1.0 14486 -22789 Zp3r zona pellucida 3 receptor Novel U 0.0007259976018868657 -0.2564622393855049 1.0 14487 -50709 H1f4 H1.4 linker histone, cluster member Novel U 0.0007259935110467731 -0.2564622817582921 1.0 14488 -224019 Tmem191 transmembrane protein 191 Novel U 0.0007258848078957992 -0.25646340770195647 1.0 14489 -319909 Ism1 isthmin 1, angiogenesis inhibitor Novel U 0.0007258603868779814 -0.2564636606540562 1.0 14490 -52713 Ccdc59 coiled-coil domain containing 59 Novel U 0.0007256940199843332 -0.2564653838768716 1.0 14491 -21343 Taf6 TATA-box binding protein associated factor 6 Novel N 0.0007256170829282308 -0.2564661807883695 1.0 14492 -56229 Thsd1 thrombospondin, type I, domain 1 Novel U 0.0007250891527111159 -0.25647164907220366 1.0 14493 -74252 Armc1 armadillo repeat containing 1 Novel U 0.0007247335933416981 -0.2564753319444637 1.0 14494 -110886 Gabra5 gamma-aminobutyric acid type A receptor subunit alpha 5 Novel U 0.0007247070610349382 -0.2564756067652249 1.0 14495 -56046 Uqcc1 ubiquinol-cytochrome c reductase complex assembly factor 1 Novel N 0.0007245907496412291 -0.25647681151481744 1.0 14496 -319636 Fsd1l fibronectin type III and SPRY domain containing 1-like Novel U 0.0007245759709667382 -0.25647696459184194 1.0 14497 -11921 Atoh1 atonal bHLH transcription factor 1 Novel N 0.0007245683962980044 -0.25647704305001173 1.0 14498 -110310 Krt7 keratin 7 Novel U 0.0007244907956999582 -0.2564778468344553 1.0 14499 -68526 Gpr155 G protein-coupled receptor 155 Novel U 0.0007243645583655039 -0.2564791543966157 1.0 14500 -67661 Ift172 intraflagellar transport 172 Novel N 0.000724292138506278 -0.25647990451913694 1.0 14501 -329575 Gm14325 predicted gene 14325 Novel U 0.0007242402387005251 -0.25648044209561877 1.0 14502 -382406 Poc1b POC1 centriolar protein B Novel N 0.0007242032388238052 -0.2564808253391256 1.0 14503 -330812 Rnf150 ring finger protein 150 Novel U 0.0007241701882449173 -0.2564811676759352 1.0 14504 -320873 Cdh10 cadherin 10 Novel U 0.0007237784356760387 -0.2564852254361655 1.0 14505 -11833 Aqp8 aquaporin 8 Novel N 0.0007236414212813113 -0.2564866446267619 1.0 14506 -236930 Ercc6l excision repair cross-complementing rodent repair deficiency complementation group 6 like Novel U 0.000723635791964274 -0.2564867029350427 1.0 14507 -100043300 Esp16 exocrine gland secreted peptide 16 Novel U 0.0007236075981025232 -0.256486994966136 1.0 14508 -329641 Sertm1 serine rich and transmembrane domain containing 1 Novel U 0.0007234281032724721 -0.256488854167685 1.0 14509 -100862359 Speer4a3 spermatogenesis associated glutamate (E)-rich protein 4A3 Novel U 0.0007232840835662677 -0.25649034591906755 1.0 14510 -68948 Fam216a family with sequence similarity 216, member A Novel U 0.0007230657354468581 -0.25649260756171055 1.0 14511 -73458 Aldh3b3 aldehyde dehydrogenase 3 family, member B3 Novel U 0.0007230002802435335 -0.25649328554455486 1.0 14512 -18606 Enpp2 ectonucleotide pyrophosphatase/phosphodiesterase 2 Novel U 0.0007229648291919764 -0.2564936527453815 1.0 14513 -100041734 4930522L14Rik RIKEN cDNA 4930522L14 gene Novel U 0.0007228532224464566 -0.25649480876438274 1.0 14514 -209540 Rtl9 retrotransposon Gag like 9 Novel U 0.0007227227290516467 -0.2564961604106764 1.0 14515 -68964 Ctc1 CTS telomere maintenance complex component 1 Novel U 0.0007227039363402804 -0.256496355064963 1.0 14516 -19092 Prkg2 protein kinase, cGMP-dependent, type II Novel U 0.0007225861269000549 -0.2564975753312721 1.0 14517 -547160 H2al1e H2A histone family member L1E Novel U 0.0007225395946899116 -0.25649805731037506 1.0 14518 -74043 Pex26 peroxisomal biogenesis factor 26 Novel U 0.0007224389997518415 -0.2564990992694367 1.0 14519 -74770 Hhatl hedgehog acyltransferase-like Novel U 0.0007224313443133893 -0.25649917856421656 1.0 14520 -26912 Gcat glycine C-acetyltransferase (2-amino-3-ketobutyrate-coenzyme A ligase) Novel U 0.0007224046608320773 -0.2564994549508388 1.0 14521 -70370 Fbln7 fibulin 7 Novel U 0.0007215892534783549 -0.2565079009134036 1.0 14522 -11564 Adsl adenylosuccinate lyase Novel U 0.000721299730052545 -0.25651089978753056 1.0 14523 -22290 Uty ubiquitously transcribed tetratricopeptide repeat containing, Y-linked Novel U 0.0007210898161063297 -0.2565130740692849 1.0 14524 -21958 Tnp1 transition protein 1 Novel U 0.0007210386299592703 -0.2565136042537135 1.0 14525 -14343 Fut1 fucosyltransferase 1 Novel U 0.00072084422835028 -0.2565156178591888 1.0 14526 -66358 Adprm ADP-ribose/CDP-alcohol diphosphatase, manganese dependent Novel U 0.0007207983032918589 -0.2565160935494342 1.0 14527 -230737 Gnl2 guanine nucleotide binding protein nucleolar 2 Novel U 0.0007207194979275295 -0.25651690981280734 1.0 14528 -18823 Plp1 proteolipid protein (myelin) 1 Novel U 0.0007206194385169962 -0.2565179462248924 1.0 14529 -71679 Atp5pd ATP synthase peripheral stalk subunit d Novel N 0.0007205694076740766 -0.2565184644427187 1.0 14530 -109828 C7 complement component 7 Novel N 0.0007204865667940977 -0.25651932250583026 1.0 14531 -102633750 Zfp1001 zinc finger protein 1001 Novel U 0.0007204621482306341 -0.25651957543250786 1.0 14532 -13047 Cux1 cut-like homeobox 1 Novel U 0.0007203419819018371 -0.2565208201113913 1.0 14533 -69202 Ptms parathymosin Novel U 0.0007200959410757783 -0.2565233685941795 1.0 14534 -65257 Asb3 ankyrin repeat and SOCS box-containing 3 Novel U 0.0007197239673114378 -0.25652722148620255 1.0 14535 -70472 Atad2 ATPase family, AAA domain containing 2 Novel U 0.0007196857438079162 -0.2565276174039955 1.0 14536 -71306 Mfap3l microfibrillar-associated protein 3-like Novel U 0.0007195463347422224 -0.2565290613985151 1.0 14537 -20600 Smr2 submaxillary gland androgen regulated protein 2 Novel U 0.0007192208996279171 -0.256532432244731 1.0 14538 -74890 Morn3 MORN repeat containing 3 Novel U 0.0007188433187761693 -0.2565363432147811 1.0 14539 -52708 Zfp410 zinc finger protein 410 Novel N 0.0007188416983452759 -0.25653635999915103 1.0 14540 -213262 Fstl5 follistatin-like 5 Novel U 0.0007186934480982531 -0.25653789557033624 1.0 14541 -75291 Zbtb3 zinc finger and BTB domain containing 3 Novel U 0.0007185714883604976 -0.25653915882529066 1.0 14542 -381338 Lonrf2 LON peptidase N-terminal domain and ring finger 2 Novel U 0.0007185297623480814 -0.25653959102195556 1.0 14543 -67493 Mettl16 methyltransferase 16, N6-methyladenosine Novel N 0.0007184867610067965 -0.25654003642843504 1.0 14544 -13401 Dmwd dystrophia myotonica-containing WD repeat motif Novel U 0.000718479402582604 -0.2565401126467509 1.0 14545 -93684 Selenof selenoprotein F Novel U 0.0007183784493103724 -0.256541158317426 1.0 14546 -93892 Pcdhb21 protocadherin beta 21 Novel U 0.0007180606137234222 -0.2565444504479874 1.0 14547 -218335 Clptm1l CLPTM1-like Novel U 0.0007180536880217587 -0.25654452218417756 1.0 14548 -100862388 Gm21698 predicted gene, 21698 Novel U 0.0007174620179978981 -0.2565506506828346 1.0 14549 -14264 Fmod fibromodulin Novel U 0.0007172540269467177 -0.2565528050473054 1.0 14550 -108168468 Spin2g spindlin family, member 2G Novel U 0.0007170003640361811 -0.256555432479394 1.0 14551 -433415 Prrt1b proline rich transmembrane protein 1B Novel U 0.0007165595592894487 -0.25655999832047 1.0 14552 -13436 Dnmt3b DNA methyltransferase 3B Novel U 0.0007165028058897365 -0.2565605861703185 1.0 14553 -381457 Crnn cornulin Novel U 0.0007159507302611826 -0.2565663045515306 1.0 14554 -230596 Prpf38a PRP38 pre-mRNA processing factor 38 (yeast) domain containing A Novel N 0.0007159000727300451 -0.25656682926057284 1.0 14555 -268859 Rbfox1 RNA binding protein, fox-1 homolog (C. elegans) 1 Novel U 0.0007158295939178219 -0.25656755927779296 1.0 14556 -213236 Dnd1 DND microRNA-mediated repression inhibitor 1 Novel N 0.0007157248793922378 -0.2565686439074067 1.0 14557 -102637163 Scgb1b15 secretoglobin, family 1B, member 15 Novel U 0.0007156255404357178 -0.25656967285705273 1.0 14558 -74108 Parn poly(A)-specific ribonuclease (deadenylation nuclease) Novel U 0.000715546243595889 -0.25657049421111294 1.0 14559 -235527 Plscr4 phospholipid scramblase 4 Novel U 0.0007152271541122691 -0.25657379932949476 1.0 14560 -78634 Spaca7 sperm acrosome associated 7 Novel U 0.0007149521979966205 -0.25657664731590196 1.0 14561 -56372 1110004F10Rik RIKEN cDNA 1110004F10 gene Novel U 0.0007145850137310955 -0.2565804505984537 1.0 14562 -100198 H6pd hexose-6-phosphate dehydrogenase (glucose 1-dehydrogenase) Novel N 0.0007145640901730875 -0.2565806673239797 1.0 14563 -228961 Npepl1 aminopeptidase-like 1 Novel U 0.0007144170755003538 -0.25658219009712707 1.0 14564 -214531 Tmprss13 transmembrane protease, serine 13 Novel U 0.0007143641542303262 -0.2565827382539023 1.0 14565 -23919 Insl5 insulin-like 5 Novel U 0.0007142491304003973 -0.2565839296669515 1.0 14566 -101056136 Gm17026 predicted gene 17026 Novel U 0.0007142123796072489 -0.2565843103304588 1.0 14567 -75196 Ankrd7 ankyrin repeat domain 7 Novel U 0.000713155808819779 -0.25659525425594254 1.0 14568 -100504263 2210418O10Rik RIKEN cDNA 2210418O10 gene Novel U 0.0007129825338374335 -0.25659704903251357 1.0 14569 -215387 Ncaph non-SMC condensin I complex, subunit H Novel U 0.0007129147666820208 -0.2565977509624816 1.0 14570 -11688 Alox8 arachidonate 8-lipoxygenase Novel U 0.0007128754718411729 -0.2565981579771514 1.0 14571 -677156 Cyp4f37 cytochrome P450, family 4, subfamily f, polypeptide 37 Novel U 0.000712769736498681 -0.25659925318035304 1.0 14572 -228911 Tshz2 teashirt zinc finger family member 2 Novel U 0.0007127151174158205 -0.2565998189230178 1.0 14573 -100504429 Spin2d spindlin family, member 2D Novel U 0.0007122163173193623 -0.25660498547801974 1.0 14574 -277432 Vstm2l V-set and transmembrane domain containing 2-like Novel N 0.0007118309297332625 -0.2566089773099676 1.0 14575 -218734 Cep15 centrosomal protein 15 Novel U 0.0007116775890230627 -0.25661056560800305 1.0 14576 -234267 Gpm6a glycoprotein m6a Novel N 0.0007115759231810538 -0.25661161865945253 1.0 14577 -13118 Cyp4a12b cytochrome P450, family 4, subfamily a, polypeptide 12B Novel U 0.0007110124038122084 -0.2566174555745503 1.0 14578 -17160 Man2b2 mannosidase 2, alpha B2 Novel U 0.0007109069506600083 -0.25661854785483423 1.0 14579 -338364 Trim65 tripartite motif-containing 65 Novel U 0.000710716092255487 -0.2566205247599141 1.0 14580 -75437 Cfap97d1 CFAP97 domain containing 1 Novel U 0.0007105818591480067 -0.2566219151420287 1.0 14581 -13113 Cyp3a13 cytochrome P450, family 3, subfamily a, polypeptide 13 Novel U 0.0007104391642261736 -0.25662339317133825 1.0 14582 -100043597 Srcap Snf2-related CREBBP activator protein Novel U 0.0007104229788000163 -0.2566235608194503 1.0 14583 -14719 Got2 glutamatic-oxaloacetic transaminase 2, mitochondrial Novel N 0.0007103773408888584 -0.25662403353543384 1.0 14584 -14154 Fem1a fem 1 homolog a Novel U 0.0007103314258799779 -0.2566245091215864 1.0 14585 -69888 Cyp2c66 cytochrome P450, family 2, subfamily c, polypeptide 66 Novel U 0.0007103013054545541 -0.2566248211079628 1.0 14586 -252906 Vmn1r189 vomeronasal 1 receptor 189 Novel U 0.0007102185534739904 -0.25662567825025717 1.0 14587 -20472 Six2 sine oculis-related homeobox 2 Novel N 0.0007101456861374306 -0.25662643300773386 1.0 14588 -70439 Taf15 TATA-box binding protein associated factor 15 Novel U 0.0007101450530322887 -0.2566264395654161 1.0 14589 -19281 Ptprt protein tyrosine phosphatase receptor type T Novel U 0.0007100144355822549 -0.2566277924966697 1.0 14590 -102640043 Gm36210 predicted gene, 36210 Novel U 0.0007099678083979342 -0.25662827545951217 1.0 14591 -64451 Dip2a disco interacting protein 2 homolog A Novel N 0.0007097272374365663 -0.2566307672856217 1.0 14592 -18247 Oaz2 ornithine decarboxylase antizyme 2 Novel N 0.0007096859202824636 -0.2566311952473456 1.0 14593 -226564 Fmo4 flavin containing monooxygenase 4 Novel U 0.0007092326440775716 -0.2566358902673752 1.0 14594 -56869 Zfp109 zinc finger protein 109 Novel U 0.0007086767903523609 -0.2566416477819883 1.0 14595 -378435 Mafa MAF bZIP transcription factor A Novel U 0.0007083306630954677 -0.25664523295673686 1.0 14596 -210321 BC048679 cDNA sequence BC048679 Novel U 0.0007083234459921217 -0.25664530771125604 1.0 14597 -76251 Ercc6l2 excision repair cross-complementing rodent repair deficiency, complementation group 6 like 2 Novel U 0.000708199017791265 -0.2566465965344702 1.0 14598 -71449 Mettl13 methyltransferase 13, eEF1A lysine and N-terminal methyltransferase Novel N 0.0007081538028722495 -0.256647064869115 1.0 14599 -94213 Ddx50 DExD box helicase 50 Novel U 0.0007080998619121557 -0.2566476235878064 1.0 14600 -12850 Coq7 demethyl-Q 7 Novel N 0.0007080752429474336 -0.2566478785902337 1.0 14601 -76429 Lhpp phospholysine phosphohistidine inorganic pyrophosphate phosphatase Novel N 0.000707652012603169 -0.2566522623962266 1.0 14602 -17765 Mtf2 metal response element binding transcription factor 2 Novel U 0.0007074610424246181 -0.25665424045905827 1.0 14603 -12916 Crem cAMP responsive element modulator Novel N 0.0007074574753737752 -0.25665427740645363 1.0 14604 -57258 Xpo4 exportin 4 Novel U 0.0007073175468363598 -0.2566557267816443 1.0 14605 -433940 Fam222a family with sequence similarity 222, member A Novel U 0.0007072168872909512 -0.2566567694099066 1.0 14606 -109272 Mybpc1 myosin binding protein C, slow-type Novel U 0.0007070434857818038 -0.2566585654970381 1.0 14607 -67636 Etfrf1 electron transfer flavoprotein regulatory factor 1 Novel N 0.0007070400283119606 -0.2566586013093971 1.0 14608 -76405 1700018B08Rik RIKEN cDNA 1700018B08 gene Novel U 0.0007066931939900593 -0.2566621938079018 1.0 14609 -80752 Fam20c FAM20C, golgi associated secretory pathway kinase Novel U 0.0007061996516421314 -0.25666730590331727 1.0 14610 -67429 Nudcd1 NudC domain containing 1 Novel U 0.0007061777143322583 -0.2566675331292518 1.0 14611 -329954 Catsper4 cation channel, sperm associated 4 Novel U 0.0007061531220357147 -0.25666778785545097 1.0 14612 -12373 Casq2 calsequestrin 2 Novel U 0.0007058313398175196 -0.25667112086508903 1.0 14613 -225994 Nmrk1 nicotinamide riboside kinase 1 Novel N 0.000705640090731032 -0.2566731018168399 1.0 14614 -231214 Cc2d2a coiled-coil and C2 domain containing 2A Novel U 0.0007055070100339 -0.256674480262326 1.0 14615 -13680 Ddx19a DEAD box helicase 19a Novel U 0.0007053966190437107 -0.25667562368857344 1.0 14616 -212123 Dcaf15 DDB1 and CUL4 associated factor 15 Novel U 0.0007051930365709034 -0.2566777323891344 1.0 14617 -27223 Trp53bp1 transformation related protein 53 binding protein 1 Novel U 0.0007048225803684133 -0.25668156956230165 1.0 14618 -232157 Mob1a MOB kinase activator 1A Novel N 0.0007046080356623211 -0.25668379180931455 1.0 14619 -319504 Nrcam neuronal cell adhesion molecule Novel U 0.0007042310360851463 -0.2566876967585418 1.0 14620 -22022 Tpst2 protein-tyrosine sulfotransferase 2 Novel U 0.0007040981059862407 -0.2566890736441364 1.0 14621 -22270 Upk3a uroplakin 3A Novel N 0.000703874230572978 -0.2566913925383075 1.0 14622 -12020 Nkx3-2 NK3 homeobox 2 Novel N 0.0007036351144810752 -0.2566938692949269 1.0 14623 -192658 Rfpl4 ret finger protein-like 4 Novel U 0.0007036127769234745 -0.25669410066661424 1.0 14624 -58202 Nelfb negative elongation factor complex member B Novel N 0.0007031463160087544 -0.25669893225343476 1.0 14625 -330814 Adgrl1 adhesion G protein-coupled receptor L1 Novel N 0.0007030929109417701 -0.25669948542136306 1.0 14626 -108096 Slco1a5 solute carrier organic anion transporter family, member 1a5 Novel U 0.0007028978102196622 -0.256701506268229 1.0 14627 -75660 Lin37 lin-37 DREAM MuvB core complex component Novel U 0.0007027063316101175 -0.25670348959737216 1.0 14628 -18600 Padi2 peptidyl arginine deiminase, type II Novel U 0.0007026447454002714 -0.2567041275053092 1.0 14629 -432628 Mfsd2b MFSD2 lysolipid transporter B, sphingolipid Novel N 0.0007025826378253234 -0.2567047708135288 1.0 14630 -80880 Kank3 KN motif and ankyrin repeat domains 3 Novel U 0.0007025076390332114 -0.25670554764855213 1.0 14631 -19072 Prep prolyl endopeptidase Novel U 0.0007022699472432693 -0.2567080096522986 1.0 14632 -18104 Nqo1 NAD(P)H dehydrogenase, quinone 1 Novel U 0.000702081190530563 -0.2567099647881238 1.0 14633 -70239 Gtf3c5 general transcription factor IIIC, polypeptide 5 Novel N 0.0007020291178507392 -0.2567105041552296 1.0 14634 -30963 Hacd1 3-hydroxyacyl-CoA dehydratase 1 Novel U 0.0007018960455843863 -0.25671188251338994 1.0 14635 -620574 Vmn1r241 vomeronasal 1 receptor 241 Novel U 0.000701665427209234 -0.25671427125093865 1.0 14636 -66979 Pole4 polymerase (DNA-directed), epsilon 4 (p12 subunit) Novel N 0.0007016537172447185 -0.2567143925423661 1.0 14637 -56738 Mocs1 molybdenum cofactor synthesis 1 Novel N 0.000701403080498136 -0.256716988629548 1.0 14638 -101471 Phrf1 PHD and ring finger domains 1 Novel U 0.0007012457516455092 -0.2567186182366316 1.0 14639 -232370 Clstn3 calsyntenin 3 Novel U 0.0007007635613848465 -0.2567236127475004 1.0 14640 -20513 Slc1a6 solute carrier family 1 (high affinity aspartate/glutamate transporter), member 6 Novel U 0.0007006117931559014 -0.2567251847578267 1.0 14641 -17833 Muc5ac mucin 5, subtypes A and C, tracheobronchial/gastric Novel U 0.0007005283698382004 -0.25672604885380906 1.0 14642 -665433 H2ac23 H2A clustered histone 23 Novel U 0.0007004621290406908 -0.2567267349738121 1.0 14643 -219131 Phf11a PHD finger protein 11A Novel U 0.0007002935686237011 -0.2567284809170702 1.0 14644 -238317 Mideas mitotic deacetylase associated SANT domain protein Novel U 0.0007000051326466023 -0.2567314685274391 1.0 14645 -668110 Syce1l synaptonemal complex central element protein 1 like Novel U 0.0006999872973132171 -0.256731653265236 1.0 14646 -19704 Upf1 UPF1 RNA helicase and ATPase Novel U 0.000699744143856038 -0.25673417184075226 1.0 14647 -78469 Tmem247 transmembrane protein 247 Novel U 0.0006986886246082578 -0.2567451048744224 1.0 14648 -55982 Paxip1 PAX interacting (with transcription-activation domain) protein 1 Novel U 0.0006985871628909774 -0.25674615581155463 1.0 14649 -230767 Iqcc IQ motif containing C Novel U 0.0006985780400686605 -0.2567462503054483 1.0 14650 -171186 Vmn1r38 vomeronasal 1 receptor 38 Novel U 0.0006982963109202918 -0.25674916844670576 1.0 14651 -73398 Nipsnap3a nipsnap homolog 3A Novel U 0.0006980045255235771 -0.256752190750253 1.0 14652 -20637 Snrnp70 small nuclear ribonucleoprotein 70 (U1) Novel U 0.0006979786038225573 -0.25675245924638007 1.0 14653 -14778 Gpx3 glutathione peroxidase 3 Novel U 0.0006977421295678479 -0.25675490863893663 1.0 14654 -72590 Ppme1 protein phosphatase methylesterase 1 Novel N 0.0006977042603470726 -0.25675530088708054 1.0 14655 -67759 Plgrkt plasminogen receptor, C-terminal lysine transmembrane protein Novel U 0.0006976739090367401 -0.2567556152649552 1.0 14656 -384522 Vmn1r55 vomeronasal 1 receptor 55 Novel U 0.0006975187022975326 -0.2567572228912578 1.0 14657 -13099 Cyp2c40 cytochrome P450, family 2, subfamily c, polypeptide 40 Novel U 0.0006973235312768322 -0.2567592444662743 1.0 14658 -270201 Klhl18 kelch-like 18 Novel U 0.0006972471164745148 -0.2567600359682847 1.0 14659 -171252 Vmn1r208 vomeronasal 1 receptor 208 Novel U 0.0006970326835284867 -0.25676225705769057 1.0 14660 -108150 Galnt7 polypeptide N-acetylgalactosaminyltransferase 7 Novel N 0.0006970060846833451 -0.2567625325676542 1.0 14661 -16917 Lmx1b LIM homeobox transcription factor 1 beta Novel U 0.0006965757423127696 -0.2567669900397818 1.0 14662 -21916 Tmod1 tropomodulin 1 Novel U 0.000696341952708231 -0.2567694116248202 1.0 14663 -100678 Psph phosphoserine phosphatase Novel U 0.0006962713250726378 -0.25677014318354796 1.0 14664 -69401 Plac8l1 PLAC8-like 1 Novel U 0.0006961292153877834 -0.25677161515099206 1.0 14665 -227644 Snapc4 small nuclear RNA activating complex, polypeptide 4 Novel N 0.0006959091305885662 -0.25677389478210744 1.0 14666 -71132 Cabyr calcium binding tyrosine phosphorylation regulated Novel U 0.0006958707130593374 -0.2567742927096123 1.0 14667 -266614 Ly6g5b lymphocyte antigen 6 family member G5B Novel U 0.0006956914998682479 -0.2567761489939543 1.0 14668 -12686 Elovl3 ELOVL fatty acid elongase 3 Novel N 0.0006949891555051288 -0.2567834238537791 1.0 14669 -622222 Vmn1r175 vomeronasal 1 receptor 175 Novel U 0.0006947780772531552 -0.25678561019537427 1.0 14670 -16898 Rps2 ribosomal protein S2 Novel U 0.0006946867565210336 -0.25678655609251555 1.0 14671 -18616 Peg3 paternally expressed 3 Novel U 0.0006944139566068207 -0.25678938174505916 1.0 14672 -67440 Mtpap mitochondrial poly(A) polymerase Novel N 0.0006943606578032371 -0.2567899338123146 1.0 14673 -12667 Chrd chordin Novel U 0.0006943546893124612 -0.2567899956337458 1.0 14674 -17709 COX2 cytochrome c oxidase subunit II Novel U 0.0006942321132995176 -0.2567912652720584 1.0 14675 -213248 Wdr49 WD repeat domain 49 Novel U 0.000694023857678331 -0.2567934223769367 1.0 14676 -320981 Enpp6 ectonucleotide pyrophosphatase/phosphodiesterase 6 Novel U 0.0006939114381861718 -0.2567945868143408 1.0 14677 -432770 Rslcan18 regulator of sex-limitation candidate 18 Novel U 0.0006934758506387825 -0.2567990986158375 1.0 14678 -66447 Mgst3 microsomal glutathione S-transferase 3 Novel N 0.0006931791846992787 -0.25680217147188655 1.0 14679 -102640913 Gm36864 predicted gene, 36864 Novel U 0.0006931686134838711 -0.25680228096818825 1.0 14680 -68957 Paqr6 progestin and adipoQ receptor family member VI Novel U 0.0006931169525405667 -0.25680281607054073 1.0 14681 -21888 Tle4 transducin-like enhancer of split 4 Novel U 0.000693091309100261 -0.25680308168445243 1.0 14682 -328949 Mcc mutated in colorectal cancers Novel U 0.000692992521847078 -0.2568041049195734 1.0 14683 -80909 Castor2 cytosolic arginine sensor for mTORC1 subunit 2 Novel N 0.0006929456662746721 -0.25680459024805213 1.0 14684 -20147 Rs1 retinoschisis (X-linked, juvenile) 1 (human) Novel U 0.000692896584797617 -0.256805098632378 1.0 14685 -170718 Idh3b isocitrate dehydrogenase 3 (NAD+) beta Novel N 0.0006927435790082056 -0.2568066834613149 1.0 14686 -11514 Adcy8 adenylate cyclase 8 Novel U 0.0006927093078731653 -0.2568070384406051 1.0 14687 -15402 Hoxa5 homeobox A5 Novel U 0.0006924713861205201 -0.2568095028262977 1.0 14688 -100043712 Tmsb10b thymosin beta 10b Novel U 0.0006924048024658767 -0.2568101924976037 1.0 14689 -233410 Zfp592 zinc finger protein 592 Novel N 0.00069197675607768 -0.25681462618802137 1.0 14690 -56473 Fads2 fatty acid desaturase 2 Novel N 0.0006917059474101144 -0.25681743121529765 1.0 14691 -15487 Hsd17b3 hydroxysteroid (17-beta) dehydrogenase 3 Novel N 0.0006914799831617336 -0.2568197717455542 1.0 14692 -65971 Tbata thymus, brain and testes associated Novel U 0.0006914552992788018 -0.25682002742040216 1.0 14693 -19044 Ppox protoporphyrinogen oxidase Novel U 0.0006913529384635844 -0.25682108767036127 1.0 14694 -228866 Pcif1 phosphorylated CTD interacting factor 1 Novel N 0.0006912539723727248 -0.2568221127578771 1.0 14695 -52615 Suz12 SUZ12 polycomb repressive complex 2 subunit Novel U 0.0006911898296321367 -0.2568227771462755 1.0 14696 -235674 Acaa1b acetyl-Coenzyme A acyltransferase 1B Novel U 0.0006908231522404448 -0.25682657517864477 1.0 14697 -75690 Vsig10l V-set and immunoglobulin domain containing 10 like Novel U 0.0006907447206279135 -0.25682738757070905 1.0 14698 -78100 Msantd4 Myb/SANT-like DNA-binding domain containing 4 with coiled-coils Novel U 0.0006906951419600073 -0.25682790110492143 1.0 14699 -215627 Zbtb8b zinc finger and BTB domain containing 8b Novel U 0.0006905788372536455 -0.2568291057852466 1.0 14700 -497106 Rnase12 ribonuclease, RNase A family, 12 (non-active) Novel U 0.0006904552464950189 -0.25683038593426166 1.0 14701 -170716 Cyp4f13 cytochrome P450, family 4, subfamily f, polypeptide 13 Novel U 0.000690426005112523 -0.2568306888155403 1.0 14702 -19144 Klk6 kallikrein related-peptidase 6 Novel U 0.0006897109958320381 -0.2568380948581629 1.0 14703 -54711 Plagl2 pleiomorphic adenoma gene-like 2 Novel U 0.000689643819090745 -0.25683879067264087 1.0 14704 -16549 Khsrp KH-type splicing regulatory protein Novel U 0.0006885815919164578 -0.2568497931867933 1.0 14705 -17844 Mup5 major urinary protein 5 Novel U 0.0006878097173486326 -0.25685778823819283 1.0 14706 -69597 Afg3l2 AFG3-like AAA ATPase 2 Novel N 0.0006870511492673999 -0.25686564546144164 1.0 14707 -20787 Srebf1 sterol regulatory element binding transcription factor 1 Novel U 0.000686954960138452 -0.25686664178527724 1.0 14708 -227059 Slc39a10 solute carrier family 39 (zinc transporter), member 10 Novel N 0.0006868489518472478 -0.2568677398156727 1.0 14709 -241528 Lrrc55 leucine rich repeat containing 55 Novel N 0.0006867477673379145 -0.25686878788149414 1.0 14710 -320365 Fry FRY microtubule binding protein Novel U 0.0006859416142933564 -0.25687713798822875 1.0 14711 -14426 Galnt4 polypeptide N-acetylgalactosaminyltransferase 4 Novel N 0.0006856944994976602 -0.25687969759515916 1.0 14712 -13076 Cyp1a1 cytochrome P450, family 1, subfamily a, polypeptide 1 Novel N 0.0006853675856199537 -0.2568830837583577 1.0 14713 -12297 Cacnb3 calcium channel, voltage-dependent, beta 3 subunit Novel N 0.0006853447284436911 -0.25688332051223806 1.0 14714 -23988 Pin1 peptidyl-prolyl cis/trans isomerase, NIMA-interacting 1 Novel U 0.0006852470020992973 -0.2568843327585007 1.0 14715 -17187 Max Max protein Novel U 0.0006851273115727052 -0.25688557250904054 1.0 14716 -52830 Pnrc2 proline-rich nuclear receptor coactivator 2 Novel N 0.0006850594275188994 -0.2568862756498383 1.0 14717 -12032 Bcan brevican Novel U 0.0006850048445579316 -0.2568868410183537 1.0 14718 -20688 Sp4 trans-acting transcription factor 4 Novel N 0.000684844918188452 -0.2568884975304314 1.0 14719 -69364 Cfap107 cilia and flagella associated protein 107 Novel U 0.0006847691656352606 -0.25688928217288715 1.0 14720 -74342 Lrrtm1 leucine rich repeat transmembrane neuronal 1 Novel U 0.0006843255304132427 -0.2568938773319331 1.0 14721 -81000 Rad54l2 RAD54 like 2 (S. cerevisiae) Novel U 0.0006842216815986024 -0.2568949529945413 1.0 14722 -76378 Ropn1 ropporin, rhophilin associated protein 1 Novel U 0.0006841764908299731 -0.25689542107903723 1.0 14723 -14534 Kat2a K(lysine) acetyltransferase 2A Novel U 0.0006840798616860651 -0.2568964219605333 1.0 14724 -66468 Ska1 spindle and kinetochore associated complex subunit 1 Novel U 0.0006839653504718781 -0.2568976080639255 1.0 14725 -15464 Hrc histidine rich calcium binding protein Novel N 0.0006837884854184295 -0.25689944002633497 1.0 14726 -19726 Rfx3 regulatory factor X, 3 (influences HLA class II expression) Novel N 0.0006837346418600451 -0.2568999977361427 1.0 14727 -30051 Spdef SAM pointed domain containing ets transcription factor Novel N 0.0006836931461824352 -0.25690042754700726 1.0 14728 -26384 Gnpda1 glucosamine-6-phosphate deaminase 1 Novel N 0.0006835646414868264 -0.25690175859442005 1.0 14729 -210544 Tbc1d31 TBC1 domain family, member 31 Novel N 0.0006835523945708477 -0.25690188544757314 1.0 14730 -233001 Nlrp9a NLR family, pyrin domain containing 9A Novel U 0.0006834995228233021 -0.25690243309139615 1.0 14731 -244813 Bsx brain specific homeobox Novel U 0.0006834701428726213 -0.2569027374079595 1.0 14732 -69876 Thap3 THAP domain containing, apoptosis associated protein 3 Novel N 0.000683161531363328 -0.25690593399582773 1.0 14733 -634825 Defa38 defensin, alpha, 38 Novel U 0.0006831472227398986 -0.25690608220407884 1.0 14734 -78625 Acsbg3 acyl-CoA synthetase bubblegum family member 3 Novel U 0.0006831163543470732 -0.25690640193787695 1.0 14735 -544806 Tmem92 transmembrane protein 92 Novel U 0.0006829941676650392 -0.2569076675435128 1.0 14736 -20274 Scn9a sodium channel, voltage-gated, type IX, alpha Novel U 0.0006828376292556213 -0.25690928896321163 1.0 14737 -18302 Oit3 oncoprotein induced transcript 3 Novel U 0.000682491728428925 -0.2569128717926037 1.0 14738 -102635473 Cdc5lrt4 cell division cycle 5 like, retrotransposed 4 Novel U 0.0006824704823263141 -0.2569130918590361 1.0 14739 -102638083 Ccdc188 coiled-coil domain containing 188 Novel U 0.0006822001847418425 -0.2569158915925305 1.0 14740 -50706 Postn periostin, osteoblast specific factor Novel N 0.0006821698590027588 -0.256916205705539 1.0 14741 -619665 Klf14 Kruppel-like transcription factor 14 Novel N 0.0006821555159054476 -0.25691635427086945 1.0 14742 -68342 Ndufb10 NADH:ubiquinone oxidoreductase subunit B10 Novel U 0.0006818996696372325 -0.25691900431810516 1.0 14743 -70530 Lrfn2 leucine rich repeat and fibronectin type III domain containing 2 Novel U 0.0006816782983148479 -0.25692129727498525 1.0 14744 -102631856 Gm30083 predicted gene, 30083 Novel U 0.0006814523979327054 -0.25692363714371735 1.0 14745 -50784 Plpp2 phospholipid phosphatase 2 Novel N 0.0006814351461154777 -0.2569238158374731 1.0 14746 -110876 Scn2a sodium channel, voltage-gated, type II, alpha Novel U 0.0006814155165669421 -0.25692401915969154 1.0 14747 -208366 Rpp40 ribonuclease P 40 subunit Novel N 0.0006810726883188879 -0.256927570163415 1.0 14748 -171224 Vmn1r229 vomeronasal 1 receptor 229 Novel U 0.0006810628658890184 -0.2569276719038207 1.0 14749 -75572 Acyp2 acylphosphatase 2, muscle type Novel N 0.0006810462962001149 -0.2569278435321137 1.0 14750 -20729 Spin1 spindlin 1 Novel U 0.0006810138685731823 -0.25692817941640744 1.0 14751 -55991 Panx1 pannexin 1 Novel U 0.0006809323606375778 -0.25692902367292497 1.0 14752 -101118 Tmem168 transmembrane protein 168 Novel U 0.0006807549026843601 -0.2569308617765708 1.0 14753 -14467 Nipsnap2 nipsnap homolog 2 Novel N 0.0006801397327643049 -0.2569372336863801 1.0 14754 -66942 Ddx18 DEAD box helicase 18 Novel U 0.0006799885447201532 -0.25693879968717137 1.0 14755 -107351 Kank1 KN motif and ankyrin repeat domains 1 Novel U 0.0006795695360062833 -0.2569431397656555 1.0 14756 -75645 Ccdc172 coiled-coil domain containing 172 Novel U 0.0006794923198330601 -0.2569439395682394 1.0 14757 -53881 Slc5a3 solute carrier family 5 (inositol transporters), member 3 Novel N 0.0006793699711186181 -0.25694520685220157 1.0 14758 -74133 Smg8 SMG8 nonsense mediated mRNA decay factor Novel N 0.0006793273245181935 -0.25694564858428687 1.0 14759 -66832 Rsph3a radial spoke 3A homolog (Chlamydomonas) Novel U 0.0006791958681972061 -0.25694701020453825 1.0 14760 -105853 Mal2 mal, T cell differentiation protein 2 Novel U 0.0006788289876776018 -0.2569508103408998 1.0 14761 -71974 Prmt3 protein arginine N-methyltransferase 3 Novel U 0.0006787736469123714 -0.25695138355872676 1.0 14762 -56847 Aldh1a3 aldehyde dehydrogenase family 1, subfamily A3 Novel U 0.0006782322325888585 -0.2569569915104917 1.0 14763 -239839 Ccdc14 coiled-coil domain containing 14 Novel N 0.0006779117197348107 -0.2569603113720976 1.0 14764 -13112 Cyp3a11 cytochrome P450, family 3, subfamily a, polypeptide 11 Novel U 0.0006778159593355906 -0.2569613032551648 1.0 14765 -74320 Wdr33 WD repeat domain 33 Novel U 0.0006777059167680543 -0.2569624430724619 1.0 14766 -320590 Svopl SV2 related protein homolog (rat)-like Novel U 0.0006776886476610649 -0.2569626219453044 1.0 14767 -394432 Ugt1a7c UDP glucuronosyltransferase 1 family, polypeptide A7C Novel U 0.0006775283881910472 -0.2569642819076266 1.0 14768 -11499 Adam5 a disintegrin and metallopeptidase domain 5 Novel U 0.0006774828581162962 -0.25696475350664416 1.0 14769 -328563 Apol11b apolipoprotein L 11b Novel U 0.0006773996162561454 -0.2569656157230952 1.0 14770 -11438 Chrna4 cholinergic receptor, nicotinic, alpha polypeptide 4 Novel N 0.0006772174159480133 -0.2569675029478973 1.0 14771 -68632 Myct1 myc target 1 Novel U 0.0006767583715382207 -0.25697225771480364 1.0 14772 -67390 Mrm3 mitochondrial rRNA methyltransferase 3 Novel N 0.000676427141321303 -0.2569756885865019 1.0 14773 -226999 Slc9a2 solute carrier family 9 (sodium/hydrogen exchanger), member 2 Novel N 0.0006762980414708605 -0.25697702579850884 1.0 14774 -76219 Arxes1 adipocyte-related X-chromosome expressed sequence 1 Novel U 0.000676240584920572 -0.25697762093156795 1.0 14775 -100233208 Gm10778 predicted gene 10778 Novel U 0.0006759604245306195 -0.2569805228236773 1.0 14776 -218165 Ofcc1 orofacial cleft 1 candidate 1 Novel U 0.0006759112840875087 -0.25698103181877163 1.0 14777 -101055863 Msantd5f2 Myb/SANT DNA binding domain containing 5 family member 2 Novel U 0.0006757251734816986 -0.2569829595463085 1.0 14778 -21673 Dntt deoxynucleotidyltransferase, terminal Novel N 0.0006754841453894109 -0.2569854561073651 1.0 14779 -72290 Lsm11 U7 snRNP-specific Sm-like protein LSM11 Novel U 0.0006752352691893365 -0.2569880339588641 1.0 14780 -75533 Nme5 NME/NM23 family member 5 Novel N 0.0006748884386399406 -0.2569916264182933 1.0 14781 -192173 Mcrip1 MAPK regulated corepressor interacting protein 1 Novel N 0.0006748669420545537 -0.25699184907921807 1.0 14782 -320633 Zbtb26 zinc finger and BTB domain containing 26 Novel U 0.0006747470318968945 -0.25699309110468926 1.0 14783 -224008 Spidr scaffolding protein involved in DNA repair Novel U 0.0006747034979817752 -0.256993542027551 1.0 14784 -66916 Ndufb7 NADH:ubiquinone oxidoreductase subunit B7 Novel N 0.0006746857815920028 -0.2569937255333338 1.0 14785 -15431 Hoxd11 homeobox D11 Novel U 0.0006740232540165439 -0.257000587972181 1.0 14786 -240665 Ccnj cyclin J Novel U 0.0006737889284330892 -0.2570030151088714 1.0 14787 -56375 B4galt4 UDP-Gal:betaGlcNAc beta 1,4-galactosyltransferase, polypeptide 4 Novel N 0.0006735288374803432 -0.25700570912240994 1.0 14788 -73191 Fezf1 Fez family zinc finger 1 Novel N 0.0006731456656153541 -0.2570096780039914 1.0 14789 -241196 Serpinb13 serine (or cysteine) peptidase inhibitor, clade B (ovalbumin), member 13 Novel N 0.0006731044754832431 -0.2570101046500257 1.0 14790 -68936 Smim11 small integral membrane protein 11 Novel U 0.0006727252935546293 -0.2570140322039774 1.0 14791 -20517 Slc22a1 solute carrier family 22 (organic cation transporter), member 1 Novel U 0.0006724418803242498 -0.25701696778890093 1.0 14792 -230235 Frrs1l ferric-chelate reductase 1 like Novel U 0.0006721872421265081 -0.2570196053229824 1.0 14793 -59031 Chst12 carbohydrate sulfotransferase 12 Novel N 0.0006720659582451233 -0.25702086157743875 1.0 14794 -68523 Ciao2b cytosolic iron-sulfur assembly component 2B Novel U 0.0006720233466307723 -0.25702130294713943 1.0 14795 -76497 Ppp1r11 protein phosphatase 1, regulatory inhibitor subunit 11 Novel U 0.0006718811096113811 -0.2570227762335105 1.0 14796 -11690 Alox5ap arachidonate 5-lipoxygenase activating protein Novel U 0.000671806298473705 -0.2570235511248153 1.0 14797 -78894 Aacs acetoacetyl-CoA synthetase Novel N 0.000671718893329328 -0.2570244564644274 1.0 14798 -63959 Slc29a1 solute carrier family 29 (nucleoside transporters), member 1 Novel N 0.0006717144841189537 -0.25702450213488354 1.0 14799 -319181 H2bc8 H2B clustered histone 8 Novel U 0.000671454186850368 -0.25702719828543474 1.0 14800 -72635 Lins1 lines homolog 1 Novel N 0.0006714094436394347 -0.2570276617341427 1.0 14801 -20739 Spta1 spectrin alpha, erythrocytic 1 Novel U 0.0006713663798259858 -0.2570281077877068 1.0 14802 -619605 Zcchc17 zinc finger, CCHC domain containing 17 Novel U 0.0006710497471649526 -0.25703138745840104 1.0 14803 -217588 Mbip MAP3K12 binding inhibitory protein 1 Novel U 0.0006708189210963094 -0.257033778347232 1.0 14804 -69833 Polr2f polymerase (RNA) II (DNA directed) polypeptide F Novel N 0.0006703456925873168 -0.25703868003257163 1.0 14805 -70024 Mcm10 minichromosome maintenance 10 replication initiation factor Novel U 0.0006703197104867374 -0.2570389491543153 1.0 14806 -18716 Pip prolactin induced protein Novel U 0.0006696671297159757 -0.25704570856448644 1.0 14807 -72135 Pygo1 pygopus 1 Novel U 0.0006695573567146097 -0.257046845589626 1.0 14808 -24074 Taf7 TATA-box binding protein associated factor 7 Novel U 0.000669458571525016 -0.25704786880337244 1.0 14809 -268281 Shprh SNF2 histone linker PHD RING helicase Novel U 0.0006693778913248181 -0.25704870448623385 1.0 14810 -319634 Efcab5 EF-hand calcium binding domain 5 Novel U 0.0006691015989304271 -0.2570515663137723 1.0 14811 -77065 Ints7 integrator complex subunit 7 Novel U 0.0006688821066046067 -0.25705383980806773 1.0 14812 -328108 Togaram1 TOG array regulator of axonemal microtubules 1 Novel U 0.0006686420320990348 -0.2570563264919044 1.0 14813 -26570 Slc7a11 solute carrier family 7 (cationic amino acid transporter, y+ system), member 11 Novel N 0.0006685854540617717 -0.2570569125253545 1.0 14814 -67683 Pbdc1 polysaccharide biosynthesis domain containing 1 Novel U 0.0006683602717616709 -0.25705924495621646 1.0 14815 -71756 Cpn2 carboxypeptidase N, polypeptide 2 Novel U 0.0006682788585737183 -0.25706008823134097 1.0 14816 -18555 Cdk16 cyclin dependent kinase 16 Novel U 0.000668012932337012 -0.25706284268655893 1.0 14817 -66646 Rpe ribulose-5-phosphate-3-epimerase Novel U 0.0006679790099571083 -0.25706319405345485 1.0 14818 -22326 Vax1 ventral anterior homeobox 1 Novel N 0.0006679009990551996 -0.2570640020878123 1.0 14819 -26437 Psg17 pregnancy specific beta-1-glycoprotein 17 Novel U 0.0006677027543373882 -0.2570660555000825 1.0 14820 -140484 Pofut1 protein O-fucosyltransferase 1 Novel U 0.0006676592086342556 -0.25706650654504404 1.0 14821 -110962 Mbd6 methyl-CpG binding domain protein 6 Novel U 0.0006674454505282104 -0.25706872064447955 1.0 14822 -23958 Nr2e3 nuclear receptor subfamily 2, group E, member 3 Novel N 0.0006673128184881422 -0.2570700944427905 1.0 14823 -382221 Pasd1 PAS domain containing repressor 1 Novel U 0.0006670298737946212 -0.2570730251746247 1.0 14824 -13353 Dgcr6 DiGeorge syndrome critical region gene 6 Novel U 0.0006669771296317928 -0.2570735714969294 1.0 14825 -69640 Fam83g family with sequence similarity 83, member G Novel U 0.0006665568080886765 -0.2570779251736557 1.0 14826 -15426 Hoxc8 homeobox C8 Novel U 0.0006665275044430986 -0.25707822869985325 1.0 14827 -229937 Znhit6 zinc finger, HIT type 6 Novel U 0.0006664068256195736 -0.25707947868714026 1.0 14828 -21755 Prss39 serine protease 39 Novel U 0.0006663698572335304 -0.2570798616044676 1.0 14829 -56278 Gkap1 G kinase anchoring protein 1 Novel U 0.0006661416546993268 -0.25708222531881514 1.0 14830 -56459 Sae1 SUMO1 activating enzyme subunit 1 Novel N 0.0006660047015760887 -0.2570836438747635 1.0 14831 -277343 Wfdc8 WAP four-disulfide core domain 8 Novel U 0.0006658081301279216 -0.2570856799553617 1.0 14832 -103284 Zc3h10 zinc finger CCCH type containing 10 Novel N 0.0006655342735869136 -0.25708851655241094 1.0 14833 -94180 Acsbg1 acyl-CoA synthetase bubblegum family member 1 Novel N 0.0006650802397406826 -0.25709321942006463 1.0 14834 -18028 Nfib nuclear factor I/B Novel N 0.0006649927975257983 -0.2570941251436519 1.0 14835 -16876 Lhx9 LIM homeobox protein 9 Novel U 0.0006648602036024977 -0.25709549854715064 1.0 14836 -241327 Olfml2a olfactomedin-like 2A Novel U 0.0006646723320526964 -0.25709744451448757 1.0 14837 -231252 Chrna9 cholinergic receptor, nicotinic, alpha polypeptide 9 Novel N 0.0006645837425021776 -0.2570983621221396 1.0 14838 -12912 Creb1 cAMP responsive element binding protein 1 Novel U 0.0006642394408937231 -0.2571019283868817 1.0 14839 -11890 Asgr2 asialoglycoprotein receptor 2 Novel N 0.0006639191062047549 -0.25710524640305954 1.0 14840 -171184 Vmn1r36 vomeronasal 1 receptor 36 Novel U 0.0006633816296082658 -0.2571108135679774 1.0 14841 -212919 Kctd7 potassium channel tetramerisation domain containing 7 Novel N 0.0006627511853059115 -0.2571173436893364 1.0 14842 -404238 Mrgprb3 MAS-related GPR, member B3 Novel U 0.0006626944900827212 -0.25711793093659446 1.0 14843 -387339 Tas2r102 taste receptor, type 2, member 102 Novel U 0.0006625641341988125 -0.2571192811585548 1.0 14844 -100503353 Zfp1009 zinc finger protein 1009 Novel U 0.0006624347652829689 -0.25712062115753237 1.0 14845 -52683 Ncaph2 non-SMC condensin II complex, subunit H2 Novel U 0.0006624272751553932 -0.2571206987400276 1.0 14846 -269328 Muc15 mucin 15 Novel U 0.0006624170216509448 -0.25712080494548956 1.0 14847 -69053 Hapstr1 HUWE1 associated protein modifying stress responses Novel N 0.0006622058226435317 -0.2571229925378655 1.0 14848 -55938 Apom apolipoprotein M Novel U 0.0006621531487265429 -0.25712353813256617 1.0 14849 -53418 B4galt2 UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 2 Novel U 0.0006620884133335248 -0.257124208659639 1.0 14850 -18676 Phf2 PHD finger protein 2 Novel N 0.000661818618803555 -0.25712700318251136 1.0 14851 -53415 Htatip2 HIV-1 Tat interactive protein 2 Novel U 0.0006615549180886661 -0.25712973458584754 1.0 14852 -319955 Ercc6 excision repair cross-complementing rodent repair deficiency, complementation group 6 Novel U 0.0006613453065760748 -0.25713190573500433 1.0 14853 -399675 Tdpoz4 TD and POZ domain containing 4 Novel U 0.0006608612080751697 -0.2571369200113628 1.0 14854 -72338 Wdr89 WD repeat domain 89 Novel U 0.000660805609069946 -0.2571374959040312 1.0 14855 -57249 Gabrq gamma-aminobutyric acid type A receptor subunit theta Novel N 0.0006605866293627733 -0.25713976408863953 1.0 14856 -13167 Dbi diazepam binding inhibitor Novel U 0.000659898153770575 -0.2571468952961911 1.0 14857 -20463 Cox7a2l cytochrome c oxidase subunit 7A2 like Novel U 0.0006598411491972435 -0.25714748574768775 1.0 14858 -66870 Serbp1 serpine1 mRNA binding protein 1 Novel U 0.0006597791209538366 -0.2571481282341939 1.0 14859 -18816 Serpinf2 serine (or cysteine) peptidase inhibitor, clade F, member 2 Novel U 0.0006594304100979852 -0.25715174016977554 1.0 14860 -73693 Dppa4 developmental pluripotency associated 4 Novel U 0.000659414746853351 -0.2571519024091486 1.0 14861 -13214 Defb1 defensin beta 1 Novel U 0.0006591986562986454 -0.2571541406680106 1.0 14862 -271639 Adcy10 adenylate cyclase 10 Novel N 0.0006591157335831034 -0.25715499957877225 1.0 14863 -69662 2310061I04Rik RIKEN cDNA 2310061I04 gene Novel U 0.0006590125019149194 -0.2571560688489977 1.0 14864 -227357 Espnl espin-like Novel U 0.000659006330353774 -0.2571561327738252 1.0 14865 -13865 Nr2f1 nuclear receptor subfamily 2, group F, member 1 Novel U 0.0006590034701624167 -0.25715616239959327 1.0 14866 -214627 Tent4b terminal nucleotidyltransferase 4B Novel U 0.0006588349407297285 -0.25715790802191696 1.0 14867 -70237 Bhlhb9 basic helix-loop-helix domain containing, class B9 Novel U 0.0006587721795314073 -0.257158558100346 1.0 14868 -228730 Kiz kizuna centrosomal protein Novel N 0.0006587205397111833 -0.2571590929839063 1.0 14869 -56373 Cpb2 carboxypeptidase B2 Novel U 0.0006585249109959441 -0.2571611192997078 1.0 14870 -237553 Trhde TRH-degrading enzyme Novel N 0.0006585014264948287 -0.2571613625513984 1.0 14871 -14806 Grik2 glutamate receptor, ionotropic, kainate 2 (beta 2) Novel U 0.0006584424052518542 -0.25716197389149287 1.0 14872 -69117 Adh6a alcohol dehydrogenase 6A (class V) Novel U 0.0006583487607056097 -0.2571629438586245 1.0 14873 -623230 Tmem200b transmembrane protein 200B Novel U 0.0006583102207117974 -0.2571633430546134 1.0 14874 -110750 Cse1l chromosome segregation 1 like Novel U 0.0006583004123069625 -0.2571634446497483 1.0 14875 -56070 Tcerg1 transcription elongation regulator 1 (CA150) Novel N 0.0006581989048834923 -0.2571644960603037 1.0 14876 -22276 Uros uroporphyrinogen III synthase Novel U 0.0006580920374253126 -0.25716560298992247 1.0 14877 -13078 Cyp1b1 cytochrome P450, family 1, subfamily b, polypeptide 1 Novel U 0.0006574550324784128 -0.257172201066222 1.0 14878 -54195 Gucy1b1 guanylate cyclase 1, soluble, beta 1 Novel N 0.0006572550084460963 -0.2571742729085733 1.0 14879 -19085 Prkar1b protein kinase, cAMP dependent regulatory, type I beta Novel U 0.0006570563433380118 -0.2571763306752321 1.0 14880 -545391 Catspere2 cation channel sperm associated auxiliary subunit epsilon 2 Novel U 0.000657011118733461 -0.25717679911019936 1.0 14881 -208748 Prrg3 proline rich Gla (G-carboxyglutamic acid) 3 (transmembrane) Novel U 0.0006568867866357547 -0.2571780869379802 1.0 14882 -105014 Rdh14 retinol dehydrogenase 14 (all-trans and 9-cis) Novel U 0.0006567875076589976 -0.25717911526635784 1.0 14883 -15135 Hbb-y hemoglobin Y, beta-like embryonic chain Novel N 0.0006566952192636983 -0.25718007118652253 1.0 14884 -140917 Dclre1b DNA cross-link repair 1B Novel U 0.0006566683375590249 -0.25718034962633585 1.0 14885 -100040781 Btbd35f6 BTB domain containing 35, family member 6 Novel U 0.0006563214683216932 -0.25718394248649346 1.0 14886 -66362 Exosc3 exosome component 3 Novel N 0.0006558123820793816 -0.257189215585056 1.0 14887 -70118 Srrd SRR1 domain containing Novel U 0.0006557284999214117 -0.25719008443369074 1.0 14888 -100042405 Hmgn2-ps high mobility group nucleosomal binding domain 2, pseudogene Novel U 0.0006554432781485889 -0.2571930387514375 1.0 14889 -69700 Col22a1 collagen, type XXII, alpha 1 Novel U 0.0006549416935997177 -0.257198234147706 1.0 14890 -27220 Cartpt CART prepropeptide Novel U 0.0006547638578422231 -0.2572000761646361 1.0 14891 -56522 Papolb poly (A) polymerase beta (testis specific) Novel U 0.0006546832283878016 -0.25720091132187445 1.0 14892 -245468 Pnma3 paraneoplastic antigen MA3 Novel U 0.0006545672945256127 -0.25720211216100786 1.0 14893 -64059 Oxct2a 3-oxoacid CoA transferase 2A Novel U 0.0006544925026039379 -0.2572028868532739 1.0 14894 -76501 Commd9 COMM domain containing 9 Novel U 0.0006544687634406871 -0.2572031327427465 1.0 14895 -71911 Bdh1 3-hydroxybutyrate dehydrogenase, type 1 Novel U 0.0006542708956978361 -0.2572051822503224 1.0 14896 -68927 Ptcd2 pentatricopeptide repeat domain 2 Novel U 0.0006541915403954673 -0.25720600420993567 1.0 14897 -72789 Veph1 ventricular zone expressed PH domain-containing 1 Novel U 0.0006541400526128626 -0.2572065375186953 1.0 14898 -268970 Arhgap28 Rho GTPase activating protein 28 Novel U 0.0006540199610539099 -0.2572077814231152 1.0 14899 -67139 Mis12 MIS12 kinetochore complex component Novel U 0.00065394792865608 -0.2572085275323239 1.0 14900 -238692 Zfp874a zinc finger protein 874a Novel U 0.0006538653569783983 -0.25720938280704697 1.0 14901 -13559 E2f5 E2F transcription factor 5 Novel U 0.0006538266857876102 -0.25720978336196987 1.0 14902 -242253 Dnai3 dynein axonemal intermediate chain 3 Novel U 0.0006536105081978973 -0.2572120225223377 1.0 14903 -353282 Sfmbt2 Scm-like with four mbt domains 2 Novel N 0.0006536061184215564 -0.25721206799149676 1.0 14904 -27428 Shroom3 shroom family member 3 Novel U 0.0006535015742503136 -0.25721315085658575 1.0 14905 -64657 Mrps10 mitochondrial ribosomal protein S10 Novel U 0.0006534799086345708 -0.2572133752683214 1.0 14906 -66261 Tm4sf20 transmembrane 4 L six family member 20 Novel N 0.0006531923556007862 -0.25721635373319257 1.0 14907 -14236 Foxn2 forkhead box N2 Novel U 0.0006529520155336917 -0.25721884316770677 1.0 14908 -241525 Ypel4 yippee like 4 Novel U 0.0006529147329949196 -0.25721922933901775 1.0 14909 -433107 Esp6 exocrine gland secreted peptide 6 Novel U 0.0006526559059703211 -0.2572219102608301 1.0 14910 -11496 Adam22 a disintegrin and metallopeptidase domain 22 Novel N 0.0006525987099748118 -0.25722250269507135 1.0 14911 -209584 Tyw3 tRNA-yW synthesizing protein 3 homolog (S. cerevisiae) Novel U 0.0006524192598229159 -0.2572243614338456 1.0 14912 -330721 Nek5 NIMA (never in mitosis gene a)-related expressed kinase 5 Novel U 0.0006523223603349382 -0.2572253651155566 1.0 14913 -14934 Gypa glycophorin A Novel U 0.0006521809708107902 -0.25722682962359983 1.0 14914 -29817 Igfbp7 insulin-like growth factor binding protein 7 Novel N 0.0006521591642947105 -0.25722705549477654 1.0 14915 -224823 Rrp36 ribosomal RNA processing 36 Novel N 0.0006517395117929492 -0.25723140224159446 1.0 14916 -71448 Tmem80 transmembrane protein 80 Novel U 0.0006516480770287628 -0.25723234931987615 1.0 14917 -106581 Fam234a family with sequence similarity 234, member A Novel U 0.0006507542079826601 -0.2572416079860713 1.0 14918 -319888 Oacyl O-acyltransferase like Novel U 0.0006502812050641045 -0.25724650733475257 1.0 14919 -115489946 Gm30191 predicted gene, 30191 Novel U 0.0006501328058125015 -0.2572480444493223 1.0 14920 -268345 Kcnc2 potassium voltage gated channel, Shaw-related subfamily, member 2 Novel U 0.0006498130662405454 -0.25725135630129775 1.0 14921 -399566 Btbd6 BTB domain containing 6 Novel U 0.0006497847402802236 -0.2572516497006636 1.0 14922 -68918 1190005I06Rik RIKEN cDNA 1190005I06 gene Novel U 0.000649645665584462 -0.25725309023179044 1.0 14923 -12144 Blm Bloom syndrome, RecQ like helicase Novel U 0.0006496337620584991 -0.2572532135281211 1.0 14924 -17155 Man1a mannosidase 1, alpha Novel U 0.0006495188469057999 -0.2572544038154951 1.0 14925 -666584 BC024063 cDNA sequence BC024063 Novel U 0.0006494325267381092 -0.25725529791695445 1.0 14926 -279185 Pramel21 PRAME like 21 Novel U 0.0006493722414711415 -0.2572559223497679 1.0 14927 -74343 Crtc2 CREB regulated transcription coactivator 2 Novel U 0.0006492377481425934 -0.2572573154272438 1.0 14928 -235043 Tmem205 transmembrane protein 205 Novel U 0.0006492181488994748 -0.2572575184355597 1.0 14929 -272347 Zfp398 zinc finger protein 398 Novel U 0.0006489785844232693 -0.25725999983652903 1.0 14930 -12291 Cacna1g calcium channel, voltage-dependent, T type, alpha 1G subunit Novel U 0.0006488427163337411 -0.2572614071537339 1.0 14931 -140858 Wdr5 WD repeat domain 5 Novel U 0.000648839057444144 -0.25726144505239207 1.0 14932 -217214 Nags N-acetylglutamate synthase Novel N 0.0006486197513804779 -0.2572637166173902 1.0 14933 -208820 Triqk triple QxxK/R motif containing Novel U 0.0006485446514844303 -0.2572644944996447 1.0 14934 -621852 Rhox3f reproductive homeobox 3F Novel U 0.0006483184624600384 -0.25726683735812383 1.0 14935 -28019 Ing4 inhibitor of growth family, member 4 Novel U 0.0006481541285023212 -0.25726853952385564 1.0 14936 -140723 Cacng5 calcium channel, voltage-dependent, gamma subunit 5 Novel U 0.0006480900923219252 -0.2572692028085071 1.0 14937 -16969 Zbtb7a zinc finger and BTB domain containing 7a Novel U 0.000647675270071235 -0.2572734995237432 1.0 14938 -67564 Tmem35a transmembrane protein 35A Novel U 0.0006476671732952628 -0.2572735833898826 1.0 14939 -66464 Taf12 TATA-box binding protein associated factor 12 Novel N 0.000647620751786082 -0.2572740642223486 1.0 14940 -106763 Ttbk1 tau tubulin kinase 1 Novel U 0.0006474538955916099 -0.2572757925133259 1.0 14941 -68027 Tmem178 transmembrane protein 178 Novel U 0.0006473248665800432 -0.2572771289915861 1.0 14942 -225004 Pcare photoreceptor cilium actin regulator Novel N 0.0006471513983493708 -0.2572789257698169 1.0 14943 -56519 Defb4 defensin beta 4 Novel U 0.0006467418718955947 -0.2572831676313627 1.0 14944 -231713 Naa25 N(alpha)-acetyltransferase 25, NatB auxiliary subunit Novel U 0.0006465717863202886 -0.25728492937216046 1.0 14945 -635396 Cldn34a claudin 34A Novel U 0.0006461765542817174 -0.2572890231726234 1.0 14946 -11615 Ahcyl adenosylhomocysteinase like Novel U 0.0006460257639098243 -0.2572905850543385 1.0 14947 -70021 Nt5dc2 5'-nucleotidase domain containing 2 Novel U 0.0006459477364891595 -0.2572913932597968 1.0 14948 -78914 Nadsyn1 NAD synthetase 1 Novel N 0.000645549885564951 -0.2572955141865911 1.0 14949 -70713 Gpr137c G protein-coupled receptor 137C Novel U 0.0006455411407167138 -0.25729560476544167 1.0 14950 -100042782 Fthl17d ferritin, heavy polypeptide-like 17, member D Novel U 0.000645457748725754 -0.2572964685369426 1.0 14951 -214704 Iqub IQ motif and ubiquitin domain containing Novel N 0.0006454473330449774 -0.2572965764222217 1.0 14952 -216156 Wdr18 WD repeat domain 18 Novel U 0.0006453414764416848 -0.25729767288143873 1.0 14953 -66113 Apoa5 apolipoprotein A-V Novel U 0.0006451809467154517 -0.25729933564306595 1.0 14954 -12865 Cox7a1 cytochrome c oxidase subunit 7A1 Novel N 0.0006442214975577638 -0.2573092735859011 1.0 14955 -56428 Mtch2 mitochondrial carrier 2 Novel U 0.000643947684904458 -0.25731210972836294 1.0 14956 -18399 Slc22a6 solute carrier family 22 (organic anion transporter), member 6 Novel N 0.0006438405302992444 -0.2573132196322412 1.0 14957 -224224 Impg2 interphotoreceptor matrix proteoglycan 2 Novel N 0.0006437292388132721 -0.2573143723857944 1.0 14958 -236900 Pdk3 pyruvate dehydrogenase kinase, isoenzyme 3 Novel U 0.0006437129826468213 -0.25731454076663207 1.0 14959 -66338 Cdrt4 CMT1A duplicated region transcript 4 Novel U 0.000643433592097542 -0.25731743468475704 1.0 14960 -22666 Zbtb14 zinc finger and BTB domain containing 14 Novel N 0.0006431226379105079 -0.2573206555380043 1.0 14961 -66276 1810009A15Rik RIKEN cDNA 1810009A15 gene Novel U 0.0006430331127333865 -0.257321582836846 1.0 14962 -171268 Vmn1r82 vomeronasal 1 receptor 82 Novel U 0.0006429609298751096 -0.2573223305045191 1.0 14963 -72144 Slc37a3 solute carrier family 37 (glycerol-3-phosphate transporter), member 3 Novel U 0.0006426560606563053 -0.25732548832986546 1.0 14964 -212326 Fam149a family with sequence similarity 149, member A Novel U 0.0006425699665958373 -0.2573263800893136 1.0 14965 -384605 Wdr88 WD repeat domain 88 Novel U 0.0006425258301138727 -0.2573268372535429 1.0 14966 -69389 H2bw2 H2B.W histone 2 Novel U 0.0006425105109570167 -0.257326995928866 1.0 14967 -17299 Mettl1 methyltransferase 1, tRNA methylguanosine Novel N 0.0006423136391288919 -0.2573290351207899 1.0 14968 -67933 Hcfc2 host cell factor C2 Novel U 0.0006422829526403225 -0.25732935297042975 1.0 14969 -620537 Vmn1r94 vomeronasal 1 receptor 94 Novel U 0.0006422694917537886 -0.25732949239784997 1.0 14970 -17138 Magea2 MAGE family member A2 Novel U 0.0006421876470085345 -0.25733034014303074 1.0 14971 -57274 Slc16a8 solute carrier family 16 (monocarboxylic acid transporters), member 8 Novel N 0.0006419312024204955 -0.2573329963876435 1.0 14972 -12992 Csn1s2b casein alpha s2-like B Novel U 0.0006417970224519354 -0.25733438621934696 1.0 14973 -381979 Brsk1 BR serine/threonine kinase 1 Novel U 0.00064162706550978 -0.25733614662776677 1.0 14974 -66953 Cdca7 cell division cycle associated 7 Novel U 0.0006415371168437012 -0.2573370783130931 1.0 14975 -319370 Ubald2 UBA-like domain containing 2 Novel U 0.0006412886497883412 -0.25733965192668457 1.0 14976 -75552 Paqr9 progestin and adipoQ receptor family member IX Novel U 0.0006412797927247555 -0.25733974366785806 1.0 14977 -66385 Ppp1r7 protein phosphatase 1, regulatory subunit 7 Novel U 0.000641216440307612 -0.2573403998701122 1.0 14978 -73078 Pmpcb peptidase (mitochondrial processing) beta Novel U 0.0006408224854127255 -0.2573444804419629 1.0 14979 -16543 Mdfic MyoD family inhibitor domain containing Novel U 0.0006407406408383467 -0.2573453281853738 1.0 14980 -11522 Adh1 alcohol dehydrogenase 1 (class I) Novel U 0.0006402106454968247 -0.25735081785969866 1.0 14981 -245578 Pcdh11x protocadherin 11 X-linked Novel U 0.0006398949653518645 -0.2573540876642627 1.0 14982 -11994 Pcdh15 protocadherin 15 Novel U 0.0006398061248835758 -0.25735500787091276 1.0 14983 -52392 Macir macrophage immunometabolism regulator Novel U 0.0006398041301607287 -0.25735502853218645 1.0 14984 -83456 Mov10l1 Mov10 like RISC complex RNA helicase 1 Novel N 0.0006397829002427434 -0.25735524843097907 1.0 14985 -100040698 Btbd35f15 BTB domain containing 35, family member 15 Novel U 0.0006395855579210474 -0.2573572924962599 1.0 14986 -94223 Dgcr8 DGCR8, microprocessor complex subunit Novel U 0.0006395791684325787 -0.2573573586783714 1.0 14987 -75706 Krt24 keratin 24 Novel U 0.000639508402841471 -0.2573580916660378 1.0 14988 -67729 Mansc1 MANSC domain containing 1 Novel U 0.0006394218835002181 -0.25735898783053035 1.0 14989 -54156 Egfl6 EGF-like-domain, multiple 6 Novel U 0.0006393028037659165 -0.2573602212545037 1.0 14990 -227631 Sohlh1 spermatogenesis and oogenesis specific basic helix-loop-helix 1 Novel U 0.0006392959656112924 -0.2573602920838845 1.0 14991 -319930 Ceacam19 CEA cell adhesion molecule 19 Novel U 0.0006391958846478512 -0.25736132871921386 1.0 14992 -100126774 Esp18 exocrine gland secreted peptide 18 Novel U 0.0006387801367842241 -0.2573656350219183 1.0 14993 -66060 Cystm1 cysteine-rich transmembrane module containing 1 Novel U 0.0006386925098654183 -0.25736654265866277 1.0 14994 -70207 Taco1 translational activator of mitochondrially encoded cytochrome c oxidase I Novel N 0.0006385613550614883 -0.2573679011558103 1.0 14995 -94280 Sfxn3 sideroflexin 3 Novel U 0.0006384435130407733 -0.2573691217595871 1.0 14996 -71767 Tysnd1 trypsin domain containing 1 Novel N 0.0006384097935444177 -0.25736947102502183 1.0 14997 -245572 Tbx22 T-box 22 Novel U 0.0006383098038235603 -0.2573705067152635 1.0 14998 -320150 Zdhhc17 zinc finger, DHHC domain containing 17 Novel U 0.0006380400664569362 -0.25737330064603986 1.0 14999 -238331 Zdhhc22 zinc finger, DHHC-type containing 22 Novel U 0.0006379666971411078 -0.25737406060300133 1.0 15000 -107566 Arl2bp ADP-ribosylation factor-like 2 binding protein Novel U 0.0006379215035986934 -0.257374528716228 1.0 15001 -224656 Zfp523 zinc finger protein 523 Novel N 0.0006376023720594122 -0.257377834270221 1.0 15002 -52009 Jpt2 Jupiter microtubule associated homolog 2 Novel U 0.0006374421494750321 -0.257379493850483 1.0 15003 -70864 Fam47c family with sequence similarity 47, member C Novel U 0.000637246879968983 -0.25738151644560747 1.0 15004 -74559 Elovl7 ELOVL fatty acid elongase 7 Novel N 0.0006372055888058854 -0.2573819441381175 1.0 15005 -100434 Slc44a1 solute carrier family 44, member 1 Novel U 0.0006370765451974678 -0.2573832807675714 1.0 15006 -100043860 Scgb1b24 secretoglobin, family 1B, member 24 Novel U 0.0006365579359815838 -0.25738865250478116 1.0 15007 -16498 Kcnab2 potassium voltage-gated channel, shaker-related subfamily, beta member 2 Novel U 0.0006364133359507872 -0.2573901502671467 1.0 15008 -68039 Nmb neuromedin B Novel N 0.0006364001693633303 -0.2573902866462267 1.0 15009 -75013 Ct55 cancer/testis antigen 55 Novel U 0.0006363945313634054 -0.2573903450444446 1.0 15010 -229687 Chil5 chitinase-like 5 Novel U 0.0006362269633521328 -0.25739208070839686 1.0 15011 -77286 Nkrf NF-kappaB repressing factor Novel N 0.0006361160592306106 -0.2573932294496418 1.0 15012 -226830 Smyd2 SET and MYND domain containing 2 Novel N 0.0006358842185511894 -0.2573956308477779 1.0 15013 -72258 Kcnk10 potassium channel, subfamily K, member 10 Novel U 0.0006358759009728956 -0.25739571700098046 1.0 15014 -75416 Nop14 NOP14 nucleolar protein Novel U 0.0006357856807045507 -0.2573966514995541 1.0 15015 -224807 Tmem63b transmembrane protein 63b Novel U 0.000635643069923055 -0.2573981286573408 1.0 15016 -21756 Prss40 serine protease 40 Novel U 0.0006355809432045136 -0.2573987721638491 1.0 15017 -17188 Maz MYC-associated zinc finger protein (purine-binding transcription factor) Novel U 0.0006353601331568 -0.25740105930706464 1.0 15018 -66448 Mrpl20 mitochondrial ribosomal protein L20 Novel U 0.0006349945551516718 -0.257404845952024 1.0 15019 -264895 Acsf2 acyl-CoA synthetase family member 2 Novel N 0.0006349711782213645 -0.2574050880894997 1.0 15020 -668880 Stard9 StAR related lipid transfer domain containing 9 Novel U 0.0006348718061704158 -0.2574061173819367 1.0 15021 -268297 Scml4 Scm polycomb group protein like 4 Novel U 0.0006348169372425367 -0.2574066857124879 1.0 15022 -54218 B3galt4 UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 4 Novel N 0.0006347328130793595 -0.2574075570678047 1.0 15023 -66684 Tceal8 transcription elongation factor A (SII)-like 8 Novel U 0.0006346595581377518 -0.2574083158400818 1.0 15024 -76633 Lrmda leucine rich melanocyte differentiation associated Novel N 0.0006345283493415019 -0.25740967489648003 1.0 15025 -331188 Zfp781b zinc finger protein 781B Novel U 0.000634315000926939 -0.25741188475234467 1.0 15026 -236574 Smok2b sperm motility kinase 2B Novel U 0.0006342899670066208 -0.25741214405286833 1.0 15027 -629303 Heatr9 HEAT repeat containing 9 Novel U 0.0006339898723561667 -0.25741525242339264 1.0 15028 -229211 Acad9 acyl-Coenzyme A dehydrogenase family, member 9 Novel U 0.0006338838110592837 -0.25741635100281923 1.0 15029 -384724 Cyp2t4 cytochrome P450, family 2, subfamily t, polypeptide 4 Novel U 0.0006334970724105545 -0.2574203568290294 1.0 15030 -100043688 Amy2a2 amylase 2a2 Novel U 0.0006333863280305468 -0.257421503915677 1.0 15031 -22154 Tubb5 tubulin, beta 5 class I Novel U 0.0006333791751463955 -0.25742157800501586 1.0 15032 -20675 Sox3 SRY (sex determining region Y)-box 3 Novel U 0.0006333216264028852 -0.2574221740930094 1.0 15033 -57329 Otor otoraplin Novel N 0.0006331046580919648 -0.2574244214436414 1.0 15034 -237400 Mex3d mex3 RNA binding family member D Novel U 0.0006329370274458999 -0.2574261577563628 1.0 15035 -641368 Spint5 serine protease inhibitor, Kunitz type 5 Novel U 0.0006326007733311347 -0.2574296406654298 1.0 15036 -224044 Cyp2ab1 cytochrome P450, family 2, subfamily ab, polypeptide 1 Novel U 0.0006325405478931975 -0.2574302644785361 1.0 15037 -239122 Setdb2 SET domain, bifurcated 2 Novel U 0.0006324686211214367 -0.2574310094936736 1.0 15038 -170459 Stard4 StAR related lipid transfer domain containing 4 Novel U 0.0006320449678686562 -0.257435397680139 1.0 15039 -56190 Rbm38 RNA binding motif protein 38 Novel N 0.000632038601654991 -0.25743546362117087 1.0 15040 -171197 Vmn1r23 vomeronasal 1 receptor 23 Novel U 0.0006319411191233231 -0.25743647334202935 1.0 15041 -241118 Asic4 acid-sensing ion channel family member 4 Novel U 0.0006319242231514333 -0.2574366483499507 1.0 15042 -12416 Cbx2 chromobox 2 Novel N 0.0006319094215909409 -0.25743680166402777 1.0 15043 -20667 Sox12 SRY (sex determining region Y)-box 12 Novel U 0.0006318535299601679 -0.25743738058770194 1.0 15044 -21427 Vps72 vacuolar protein sorting 72 Novel N 0.000631677418301004 -0.2574392047464782 1.0 15045 -66171 Pgls 6-phosphogluconolactonase Novel N 0.000631445545232126 -0.2574416064801033 1.0 15046 -56223 Fscn3 fascin actin-bundling protein 3 Novel U 0.0006313959452552859 -0.2574421202350328 1.0 15047 -217217 Asb16 ankyrin repeat and SOCS box-containing 16 Novel U 0.0006312548276403059 -0.25744358192664984 1.0 15048 -67876 Coq10b coenzyme Q10B Novel U 0.0006312189928919426 -0.25744395310179535 1.0 15049 -224318 Speer2 spermatogenesis associated glutamate (E)-rich protein 2 Novel U 0.0006311301667075146 -0.2574448731604937 1.0 15050 -100862067 Btbd35f29 BTB domain containing 35, family member 29 Novel U 0.0006310759889852473 -0.2574454343315599 1.0 15051 -75338 Ccdc83 coiled-coil domain containing 83 Novel U 0.0006306366729952024 -0.25744998475214304 1.0 15052 -230696 AU022252 expressed sequence AU022252 Novel U 0.0006306210315150752 -0.25745014676608 1.0 15053 -73251 Setd7 SET domain containing (lysine methyltransferase) 7 Novel N 0.0006305982434552597 -0.25745038280405447 1.0 15054 -106073 Mfsd5 major facilitator superfamily domain containing 5 Novel U 0.000630358009704656 -0.257452871137346 1.0 15055 -171270 Vmn1r203 vomeronasal 1 receptor 203 Novel U 0.0006301163422569277 -0.25745537432082516 1.0 15056 -57357 Srd5a3 steroid 5 alpha-reductase 3 Novel U 0.0006300205805768906 -0.257456366217159 1.0 15057 -433904 Ociad2 OCIA domain containing 2 Novel U 0.0006300033041039637 -0.2574565451662976 1.0 15058 -238205 Lrfn5 leucine rich repeat and fibronectin type III domain containing 5 Novel U 0.0006298454282125011 -0.2574581804395915 1.0 15059 -30925 Slamf6 SLAM family member 6 Novel U 0.0006297132369075792 -0.2574595496727823 1.0 15060 -26987 Eif4e2 eukaryotic translation initiation factor 4E member 2 Novel U 0.0006296977692892401 -0.25745970988586464 1.0 15061 -15375 Foxa1 forkhead box A1 Novel U 0.0006294599513277474 -0.2574621731964919 1.0 15062 -19982 Rpl36a ribosomal protein L36A Novel U 0.0006293531253623527 -0.25746327969632976 1.0 15063 -238330 Irf2bpl interferon regulatory factor 2 binding protein-like Novel N 0.0006292284562814728 -0.2574645710145712 1.0 15064 -668158 Ccdc85c coiled-coil domain containing 85C Novel U 0.0006291253955283938 -0.2574656385144637 1.0 15065 -545474 Scrt2 scratch family zinc finger 2 Novel U 0.0006291054369567884 -0.2574658452446923 1.0 15066 -225742 St8sia5 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 5 Novel N 0.0006290434991289498 -0.25746648679467693 1.0 15067 -54216 Pcdh7 protocadherin 7 Novel U 0.0006289930402647093 -0.257467009445934 1.0 15068 -333564 Fndc3c1 fibronectin type III domain containing 3C1 Novel U 0.0006285163625270493 -0.25747194685827074 1.0 15069 -72611 Zfp655 zinc finger protein 655 Novel N 0.0006284314109826134 -0.25747282678357536 1.0 15070 -11538 Adnp activity-dependent neuroprotective protein Novel U 0.0006281368020398715 -0.25747587833331953 1.0 15071 -228094 Cerkl ceramide kinase-like Novel N 0.000627829216715589 -0.25747906429199713 1.0 15072 -13207 Ddx5 DEAD box helicase 5 Novel U 0.0006275259364757354 -0.25748220565875174 1.0 15073 -103737 Pex12 peroxisomal biogenesis factor 12 Novel U 0.0006271940801716304 -0.25748564301544047 1.0 15074 -12070 Bex3 brain expressed X-linked 3 Novel U 0.0006271541682077688 -0.2574860564222501 1.0 15075 -52184 Odf2l outer dense fiber of sperm tails 2-like Novel U 0.0006269025556115358 -0.25748866261725056 1.0 15076 -67242 Gemin6 gem nuclear organelle associated protein 6 Novel N 0.0006267953298098649 -0.2574897732585794 1.0 15077 -66407 Mrps15 mitochondrial ribosomal protein S15 Novel U 0.0006267169670660895 -0.2574905849373034 1.0 15078 -70419 2810408A11Rik RIKEN cDNA 2810408A11 gene Novel U 0.0006266482056335213 -0.25749129716596153 1.0 15079 -69568 Vkorc1l1 vitamin K epoxide reductase complex, subunit 1-like 1 Novel N 0.0006264821326041644 -0.25749301734494023 1.0 15080 -22678 Zfp2 zinc finger protein 2 Novel U 0.0006264362981754848 -0.2574934920964458 1.0 15081 -20529 Slc31a1 solute carrier family 31, member 1 Novel U 0.0006262203974970478 -0.2574957283885757 1.0 15082 -14583 Gfpt1 glutamine fructose-6-phosphate transaminase 1 Novel U 0.0006255084641861938 -0.257503102570406 1.0 15083 -73121 Rflna refilin A Novel U 0.0006254955108412225 -0.25750323674072734 1.0 15084 -109129 Mmadhc methylmalonic aciduria (cobalamin deficiency) cblD type, with homocystinuria Novel N 0.0006253910744323763 -0.257504318489617 1.0 15085 -328274 Zfp459 zinc finger protein 459 Novel U 0.0006252032029554317 -0.2575062644561993 1.0 15086 -68058 Chd1l chromodomain helicase DNA binding protein 1-like Novel N 0.0006250445127827822 -0.25750790816379093 1.0 15087 -433502 Wfdc6b WAP four-disulfide core domain 6B Novel U 0.0006248235860169463 -0.2575101965159689 1.0 15088 -380850 Gm5141 predicted gene 5141 Novel U 0.0006246985626679218 -0.25751149150370817 1.0 15089 -234384 Mpv17l2 MPV17 mitochondrial membrane protein-like 2 Novel N 0.000624558693889302 -0.25751294025991917 1.0 15090 -69454 Clic3 chloride intracellular channel 3 Novel N 0.0006244149038992165 -0.2575144296319096 1.0 15091 -69885 Aunip aurora kinase A and ninein interacting protein Novel N 0.0006241475268204296 -0.2575171991149022 1.0 15092 -66847 Hint3 histidine triad nucleotide binding protein 3 Novel U 0.0006240935760631724 -0.2575177579350723 1.0 15093 -233812 Mosmo modulator of smoothened Novel U 0.0006239875691387602 -0.2575188559513106 1.0 15094 -100019 Mdn1 midasin AAA ATPase 1 Novel N 0.0006234049477374022 -0.2575248907246332 1.0 15095 -11566 Adss2 adenylosuccinate synthase 2 Novel N 0.0006233022236815136 -0.2575259547370272 1.0 15096 -67111 Naaa N-acylethanolamine acid amidase Novel U 0.0006232225663951894 -0.25752677982458033 1.0 15097 -20997 T brachyury, T-box transcription factor T Novel U 0.0006230136850977555 -0.25752894341019256 1.0 15098 -629141 Misfa mitochondrial sheath formation associated Novel U 0.0006229432955481241 -0.2575296725028337 1.0 15099 -23993 Klk7 kallikrein related-peptidase 7 (chymotryptic, stratum corneum) Novel U 0.0006222638848979725 -0.25753670981601356 1.0 15100 -382639 Zbtb42 zinc finger and BTB domain containing 42 Novel U 0.0006222366072487697 -0.25753699235700733 1.0 15101 -238076 Kcns3 potassium voltage-gated channel, delayed-rectifier, subfamily S, member 3 Novel N 0.000621450447647885 -0.25754513537230966 1.0 15102 -12408 Cbr1 carbonyl reductase 1 Novel U 0.0006212883734080647 -0.2575468141319578 1.0 15103 -108043 Chrnb3 cholinergic receptor, nicotinic, beta polypeptide 3 Novel N 0.0006212804059268828 -0.257546896658866 1.0 15104 -652925 Tmem243 transmembrane protein 243, mitochondrial Novel U 0.0006210300613211768 -0.25754948972006225 1.0 15105 -239096 Cdh24 cadherin-like 24 Novel N 0.000621015506086738 -0.2575496404827021 1.0 15106 -15078 H3f3a H3.3 histone A Novel U 0.0006210128618553537 -0.25754966787156386 1.0 15107 -74080 Nmnat3 nicotinamide nucleotide adenylyltransferase 3 Novel N 0.0006209522075427524 -0.2575502961269399 1.0 15108 -433779 Pramel31 PRAME like 31 Novel U 0.0006205324117175798 -0.25755464435829695 1.0 15109 -77771 Csrnp3 cysteine-serine-rich nuclear protein 3 Novel U 0.0006201357861848436 -0.2575587525925267 1.0 15110 -13732 Emp3 epithelial membrane protein 3 Novel N 0.0006201091251014027 -0.25755902874715253 1.0 15111 -15445 Hpd 4-hydroxyphenylpyruvic acid dioxygenase Novel N 0.0006199962489996928 -0.25756019791410345 1.0 15112 -54367 Zfp326 zinc finger protein 326 Novel N 0.000619908122907904 -0.2575611107212652 1.0 15113 -434768 Rhox8 reproductive homeobox 8 Novel U 0.0006198135040024612 -0.25756209078077735 1.0 15114 -13871 Ercc2 excision repair cross-complementing rodent repair deficiency, complementation group 2 Novel U 0.0006195268141047337 -0.25756506030531356 1.0 15115 -100294660 Defa2 defensin, alpha, 2 Novel U 0.0006191666766297274 -0.2575687905974408 1.0 15116 -78611 Btbd19 BTB domain containing 19 Novel U 0.00061879795294923 -0.25757260982520225 1.0 15117 -50868 Keap1 kelch-like ECH-associated protein 1 Novel U 0.0006185377000410692 -0.25757530551626967 1.0 15118 -228608 Smox spermine oxidase Novel N 0.0006184192207362455 -0.2575765327210142 1.0 15119 -226041 Pgm5 phosphoglucomutase 5 Novel U 0.0006183185515112678 -0.25757757544953724 1.0 15120 -14670 Gnl1 guanine nucleotide binding protein-like 1 Novel N 0.0006181785512063946 -0.25757902556809287 1.0 15121 -239017 Ogdhl oxoglutarate dehydrogenase-like Novel N 0.000617845425703689 -0.2575824760710989 1.0 15122 -432611 Dnai2 dynein axonemal intermediate chain 2 Novel N 0.0006177454921179258 -0.25758351117989514 1.0 15123 -66445 Cyc1 cytochrome c-1 Novel N 0.0006175345534192751 -0.2575856960760015 1.0 15124 -17235 Smcp sperm mitochondria-associated cysteine-rich protein Novel U 0.0006174987216853468 -0.25758606721992366 1.0 15125 -15356 Hmgcl 3-hydroxy-3-methylglutaryl-Coenzyme A lyase Novel N 0.0006174301118314193 -0.25758677787853523 1.0 15126 -240427 Setbp1 SET binding protein 1 Novel U 0.0006174279507726596 -0.2575868002627108 1.0 15127 -240899 Lrrc52 leucine rich repeat containing 52 Novel N 0.000616968046441631 -0.25759156393665306 1.0 15128 -52696 Zwint ZW10 interactor Novel U 0.0006163323751164027 -0.2575981481993432 1.0 15129 -68073 Atpsckmt ATP synthase C subunit lysine N-methyltransferase Novel N 0.0006160572284863877 -0.25760099815909193 1.0 15130 -320277 Spef2 sperm flagellar 2 Novel N 0.0006157951762105068 -0.257603712487951 1.0 15131 -74022 Glyr1 glyoxylate reductase 1 homolog (Arabidopsis) Novel N 0.0006150867138129884 -0.257611050718175 1.0 15132 -22710 Zfp52 zinc finger protein 52 Novel U 0.0006149501564633092 -0.2576124651747139 1.0 15133 -109979 Art3 ADP-ribosyltransferase 3 Novel U 0.0006148894968225016 -0.2576130934852794 1.0 15134 -74157 Cmtr1 cap methyltransferase 1 Novel N 0.0006147273256775752 -0.25761477324866744 1.0 15135 -50817 Capn15 calpain 15 Novel N 0.0006146873082153098 -0.25761518774822606 1.0 15136 -72431 Ceacam18 CEA cell adhesion molecule 18 Novel U 0.000614659083610583 -0.257615480097754 1.0 15137 -217779 Lysmd1 LysM, putative peptidoglycan-binding, domain containing 1 Novel U 0.0006145897356978484 -0.2576161984011544 1.0 15138 -74167 Nudt9 nudix hydrolase 9 Novel N 0.0006143220454291612 -0.2576189711281576 1.0 15139 -12395 Runx1t1 RUNX1 translocation partner 1 Novel N 0.0006142640114983887 -0.2576195722417048 1.0 15140 -57745 Zfp112 zinc finger protein 112 Novel U 0.0006141876383261949 -0.25762036331251176 1.0 15141 -77252 9430038I01Rik RIKEN cDNA 9430038I01 gene Novel U 0.0006141723367816188 -0.25762052180540745 1.0 15142 -321003 Xpnpep3 X-prolyl aminopeptidase 3, mitochondrial Novel N 0.0006140588808096425 -0.2576216969786355 1.0 15143 -100040786 Gm20852 predicted gene, 20852 Novel U 0.0006134410517241159 -0.25762809643199336 1.0 15144 -29876 Clic4 chloride intracellular channel 4 Novel N 0.0006129524952981403 -0.2576331568833932 1.0 15145 -70564 Prxl2a peroxiredoxin like 2A Novel N 0.0006128994723443303 -0.25763370609340575 1.0 15146 -66254 Dimt1 DIM1 rRNA methyltransferase and ribosome maturation factor Novel N 0.0006127786247403821 -0.25763495782891477 1.0 15147 -326622 Upf2 UPF2 regulator of nonsense transcripts homolog (yeast) Novel N 0.0006123492010397404 -0.25763940578548944 1.0 15148 -17748 Mt1 metallothionein 1 Novel U 0.0006122520931920937 -0.25764041162538315 1.0 15149 -76233 Dnttip1 deoxynucleotidyltransferase, terminal, interacting protein 1 Novel U 0.0006122199208697376 -0.25764074486524047 1.0 15150 -68198 Ndufb2 NADH:ubiquinone oxidoreductase subunit B2 Novel N 0.0006116364657218802 -0.25764678827448195 1.0 15151 -75805 Nln neurolysin (metallopeptidase M3 family) Novel N 0.0006113317364607257 -0.25764994465015156 1.0 15152 -75010 Tmbim7 transmembrane BAX inhibitor motif containing 7 Novel U 0.0006112641621882032 -0.25765064458224496 1.0 15153 -13417 Dnah8 dynein, axonemal, heavy chain 8 Novel N 0.0006112516466529747 -0.25765077421774746 1.0 15154 -245533 Awat1 acyl-CoA wax alcohol acyltransferase 1 Novel N 0.0006111483147101906 -0.25765184452661394 1.0 15155 -12418 Cbx4 chromobox 4 Novel N 0.0006106164633834134 -0.25765735342517304 1.0 15156 -108682 Gpt2 glutamic pyruvate transaminase (alanine aminotransferase) 2 Novel U 0.0006105332309005037 -0.25765821554449486 1.0 15157 -12569 Cdk5r1 cyclin dependent kinase 5, regulatory subunit 1 Novel U 0.0006104150477039726 -0.2576594396821595 1.0 15158 -67899 Cmc1 C-X9-C motif containing 1 Novel U 0.000610186401514372 -0.25766180799187505 1.0 15159 -269604 Gpr157 G protein-coupled receptor 157 Novel U 0.0006100280262443474 -0.2576634484377156 1.0 15160 -66011 Ranbp17 RAN binding protein 17 Novel U 0.0006099403633050701 -0.2576643564475589 1.0 15161 -68310 Zmym1 zinc finger, MYM domain containing 1 Novel U 0.0006099264255471303 -0.2576645008143975 1.0 15162 -16533 Kcnmb1 potassium large conductance calcium-activated channel, subfamily M, beta member 1 Novel N 0.0006098317473919733 -0.2576654814876162 1.0 15163 -100040861 Gm13057 predicted gene 13057 Novel U 0.0006097927511106184 -0.25766588540981655 1.0 15164 -27762 Vwa7 von Willebrand factor A domain containing 7 Novel U 0.0006097079102373182 -0.2576667641887932 1.0 15165 -381530 Mup20 major urinary protein 20 Novel U 0.0006093947610735232 -0.25767000777753757 1.0 15166 -545693 Gm13043 predicted gene 13043 Novel U 0.0006091382719943248 -0.25767266448298826 1.0 15167 -14658 Glrb glycine receptor, beta subunit Novel U 0.0006090598284810524 -0.25767347699832005 1.0 15168 -68352 Aspdh aspartate dehydrogenase domain containing Novel U 0.0006090013507287931 -0.2576740827089556 1.0 15169 -67050 Nkap NFKB activating protein Novel U 0.0006089418468094793 -0.2576746990485958 1.0 15170 -666311 Zscan25 zinc finger and SCAN domain containing 25 Novel U 0.0006087090444041345 -0.25767711040825736 1.0 15171 -113860 Vmn1r11 vomeronasal 1 receptor 11 Novel U 0.0006084390924183608 -0.2576799065620518 1.0 15172 -14359 Fxr1 FMR1 autosomal homolog 1 Novel U 0.0006083600264746799 -0.25768072552449733 1.0 15173 -22590 Xpa xeroderma pigmentosum, complementation group A Novel U 0.0006083537023490401 -0.2576807910295828 1.0 15174 -71774 Shroom1 shroom family member 1 Novel U 0.00060804819509611 -0.2576839554636656 1.0 15175 -208768 Sde2 SDE2 telomere maintenance homolog (S. pombe) Novel U 0.0006071807360188287 -0.25769294057627196 1.0 15176 -282619 Sbsn suprabasin Novel U 0.0006071506991472218 -0.25769325169720064 1.0 15177 -74466 Mfsd13b major facilitator superfamily domain containing 13B Novel U 0.0006069524145134249 -0.25769530552291925 1.0 15178 -17962 Nat3 N-acetyltransferase 3 Novel U 0.0006069374733035642 -0.25769546028347984 1.0 15179 -224671 Btbd9 BTB domain containing 9 Novel U 0.0006066101156945748 -0.2576988510428324 1.0 15180 -73692 Cplane1 ciliogenesis and planar polarity effector 1 Novel U 0.0006065509177576314 -0.25769946421311724 1.0 15181 -100040482 Btbd35f2 BTB domain containing 35, family member 2 Novel U 0.0006065281554811942 -0.2576996999840283 1.0 15182 -381410 Zfp408 zinc finger protein 408 Novel N 0.000606523401007027 -0.2576997492307154 1.0 15183 -666145 Armh2 armadillo-like helical domain containing 2 Novel U 0.0006064213150872446 -0.2577008066333167 1.0 15184 -20649 Sntb1 syntrophin, basic 1 Novel N 0.0006063421228287663 -0.2577016269041267 1.0 15185 -107375 Slc25a45 solute carrier family 25, member 45 Novel U 0.0006059182643074921 -0.25770601721675646 1.0 15186 -19988 Rpl6 ribosomal protein L6 Novel N 0.0006055249672743057 -0.25771009097449726 1.0 15187 -243529 H1f10 H1.10 linker histone Novel U 0.0006053193204968008 -0.2577122210570584 1.0 15188 -666532 Zfp991 zinc finger protein 991 Novel U 0.0006053045002655722 -0.2577123745645262 1.0 15189 -101883 Igflr1 IGF-like family receptor 1 Novel U 0.0006052042697644286 -0.2577134127487622 1.0 15190 -15247 Mfsd14a major facilitator superfamily domain containing 14A Novel U 0.0006049758225173956 -0.25771577899783715 1.0 15191 -223664 Lrrc14 leucine rich repeat containing 14 Novel U 0.0006049648806886153 -0.25771589233293996 1.0 15192 -117589 Asb7 ankyrin repeat and SOCS box-containing 7 Novel U 0.000604881722394284 -0.25771675368381897 1.0 15193 -70881 Nt5c1b 5'-nucleotidase, cytosolic IB Novel N 0.0006048395514989556 -0.25771719048856645 1.0 15194 -229699 Slc16a4 solute carrier family 16 (monocarboxylic acid transporters), member 4 Novel U 0.0006047780866291306 -0.25771782713966757 1.0 15195 -12460 Ccs copper chaperone for superoxide dismutase Novel N 0.000604675133134421 -0.25771889352858135 1.0 15196 -13829 Dmtn dematin actin binding protein Novel U 0.0006046465318315462 -0.2577191897799363 1.0 15197 -381925 Plpp4 phospholipid phosphatase 4 Novel U 0.0006042081475912284 -0.25772373054948644 1.0 15198 -100040606 Btbd35f12 BTB domain containing 35, family member 12 Novel U 0.0006041631568881437 -0.25772419656171003 1.0 15199 -66540 Fam107b family with sequence similarity 107, member B Novel U 0.0006041593777991026 -0.2577242357053901 1.0 15200 -328845 Acsbg2 acyl-CoA synthetase bubblegum family member 2 Novel N 0.000603712544690612 -0.25772886398803896 1.0 15201 -494468 Armcx5 armadillo repeat containing, X-linked 5 Novel U 0.0006036139238995566 -0.2577298854989507 1.0 15202 -545136 Fam186b family with sequence similarity 186, member B Novel U 0.0006034897576204623 -0.25773117160918785 1.0 15203 -75735 Pank1 pantothenate kinase 1 Novel N 0.0006033484316835167 -0.25773263545859687 1.0 15204 -11449 Chrng cholinergic receptor, nicotinic, gamma polypeptide Novel U 0.0006033428294689907 -0.2577326934861508 1.0 15205 -69327 Pierce1 piercer of microtubule wall 1 Novel U 0.0006031813260952311 -0.257734366332787 1.0 15206 -15410 Hoxb3 homeobox B3 Novel N 0.0006031751440655886 -0.2577344303660468 1.0 15207 -66716 Ccer1 coiled-coil glutamate-rich protein 1 Novel U 0.0006031253988983715 -0.2577349456248536 1.0 15208 -319189 H2bc18 H2B clustered histone 18 Novel U 0.0006030623485931294 -0.2577355986978426 1.0 15209 -72168 Aifm3 apoptosis-inducing factor, mitochondrion-associated 3 Novel N 0.0006025681604012057 -0.257740717482889 1.0 15210 -233890 Zfp768 zinc finger protein 768 Novel U 0.0006023038773558189 -0.2577434549179853 1.0 15211 -15285 Mnx1 motor neuron and pancreas homeobox 1 Novel U 0.0006022558479063107 -0.2577439524054444 1.0 15212 -66414 Ndufa12 NADH:ubiquinone oxidoreductase subunit A12 Novel N 0.0006021803403438618 -0.2577447345102941 1.0 15213 -69188 Kmt2e lysine (K)-specific methyltransferase 2E Novel U 0.0006021708366981122 -0.25774483294874434 1.0 15214 -399599 Ccdc87 coiled-coil domain containing 87 Novel U 0.0006019765633527878 -0.2577468452256688 1.0 15215 -384813 Adam34l a disintegrin and metallopeptidase domain 34 like Novel U 0.0006012841404445706 -0.25775401731938996 1.0 15216 -195522 Zfp691 zinc finger protein 691 Novel U 0.0006010097891362103 -0.25775685904122314 1.0 15217 -57773 Wdr4 WD repeat domain 4 Novel U 0.0006005651418888075 -0.25776146468279476 1.0 15218 -67958 U2surp U2 snRNP-associated SURP domain containing Novel U 0.0006005283433860443 -0.2577618458404767 1.0 15219 -107769 Tm6sf1 transmembrane 6 superfamily member 1 Novel U 0.0006004649040544292 -0.2577625029429881 1.0 15220 -245386 Tmem255a transmembrane protein 255A Novel U 0.0006001931265620376 -0.2577653180053201 1.0 15221 -407823 Baz2b bromodomain adjacent to zinc finger domain, 2B Novel N 0.0005999755129455268 -0.2577675720400063 1.0 15222 -74287 Kcmf1 potassium channel modulatory factor 1 Novel U 0.0005999403671733934 -0.25776793607875864 1.0 15223 -227197 Ndufs1 NADH:ubiquinone oxidoreductase core subunit S1 Novel U 0.0005998654390537722 -0.25776871218175856 1.0 15224 -103743 Tmem98 transmembrane protein 98 Novel N 0.0005996338877371927 -0.25777111058268387 1.0 15225 -213783 Plekhg1 pleckstrin homology domain containing, family G (with RhoGef domain) member 1 Novel U 0.0005996249046581227 -0.25777120362912154 1.0 15226 -170752 Bco2 beta-carotene oxygenase 2 Novel N 0.0005993688811498834 -0.2577738555122036 1.0 15227 -11811 Apobec2 apolipoprotein B mRNA editing enzyme, catalytic polypeptide 2 Novel N 0.0005991208529226805 -0.25777642458042743 1.0 15228 -21917 Tmpo thymopoietin Novel U 0.0005990409347804548 -0.2577772523699175 1.0 15229 -20440 St6gal1 beta galactoside alpha 2,6 sialyltransferase 1 Novel U 0.0005988851005271944 -0.25777886649598997 1.0 15230 -20935 Surf6 surfeit gene 6 Novel U 0.000598828668358971 -0.2577794510185333 1.0 15231 -78478 Tmsb15a thymosin beta 15a Novel U 0.0005986308603086679 -0.2577814999078158 1.0 15232 -435653 Fcrlb Fc receptor-like B Novel U 0.0005984660586427919 -0.25778320691805334 1.0 15233 -666731 Trim43c tripartite motif-containing 43C Novel U 0.0005984132305848132 -0.25778375410934123 1.0 15234 -55942 Sertad1 SERTA domain containing 1 Novel U 0.0005984097293785885 -0.2577837903747202 1.0 15235 -380728 Kcnh4 potassium voltage-gated channel, subfamily H (eag-related), member 4 Novel N 0.0005982899677539925 -0.25778503086169086 1.0 15236 -13828 Epb42 erythrocyte membrane protein band 4.2 Novel U 0.0005982425786328391 -0.2577855217166499 1.0 15237 -100039467 Gm10487 predicted gene 10487 Novel U 0.0005979595358315551 -0.2577884534646811 1.0 15238 -71281 Apobec4 apolipoprotein B mRNA editing enzyme catalytic polypeptide-like 4 Novel U 0.0005977254841872737 -0.2577908777639185 1.0 15239 -17540 Irag1 inositol 1,4,5-triphosphate receptor associated 1 Novel U 0.0005977133206768636 -0.2577910037531595 1.0 15240 -20668 Sox13 SRY (sex determining region Y)-box 13 Novel N 0.0005974980093872508 -0.25779323394041936 1.0 15241 -69397 1700019A02Rik RIKEN cDNA 1700019A02 gene Novel U 0.0005974754602585861 -0.2577934675035528 1.0 15242 -269514 Fbxl4 F-box and leucine-rich repeat protein 4 Novel U 0.0005973940408344875 -0.2577943108432711 1.0 15243 -66083 Setd6 SET domain containing 6 Novel U 0.0005973514428599222 -0.2577947520716913 1.0 15244 -56185 Hao2 hydroxyacid oxidase 2 Novel N 0.0005969006042599251 -0.2577994218430895 1.0 15245 -13209 Ddx6 DEAD-box helicase 6 Novel U 0.000596751145749844 -0.25780096992942375 1.0 15246 -71584 Gdpd2 glycerophosphodiester phosphodiesterase domain containing 2 Novel U 0.0005967019659165306 -0.25780147933252057 1.0 15247 -319475 Zfp672 zinc finger protein 672 Novel U 0.0005960770256189837 -0.25780795244357874 1.0 15248 -65221 Slc15a3 solute carrier family 15, member 3 Novel U 0.0005956195367232346 -0.25781269109852173 1.0 15249 -106389 Eaf2 ELL associated factor 2 Novel N 0.0005951425784650181 -0.2578176314164812 1.0 15250 -74180 Muc5b mucin 5, subtype B, tracheobronchial Novel U 0.0005948142114494727 -0.25782103263123374 1.0 15251 -320267 Fubp3 far upstream element (FUSE) binding protein 3 Novel N 0.0005946886342504591 -0.25782233335573296 1.0 15252 -108797 Mex3b mex3 RNA binding family member B Novel U 0.0005946590263439458 -0.25782264003345534 1.0 15253 -231014 Elapor2 endosome-lysosome associated apoptosis and autophagy regulator family member 2 Novel U 0.0005944237090803891 -0.2578250774419356 1.0 15254 -68229 Spindoc spindlin interactor and repressor of chromatin binding Novel N 0.0005943043775875699 -0.25782631347361545 1.0 15255 -18163 Ctnnd2 catenin delta 2 Novel U 0.0005942450149987237 -0.2578269283493593 1.0 15256 -66402 Sln sarcolipin Novel U 0.0005940605615654018 -0.257828838911958 1.0 15257 -23863 Dand5 DAN domain family member 5, BMP antagonist Novel U 0.0005936850915989241 -0.25783272801752793 1.0 15258 -70427 Mier2 MIER family member 2 Novel U 0.0005936762748054383 -0.25783281934158503 1.0 15259 -57423 Atp5mf ATP synthase membrane subunit f Novel N 0.0005936442001406709 -0.2578331515699082 1.0 15260 -71361 Aifm2 apoptosis-inducing factor, mitochondrion-associated 2 Novel N 0.0005932712678118089 -0.2578370143907111 1.0 15261 -214240 Disp2 dispatched RND transporter family member 2 Novel U 0.0005929508994939356 -0.2578403327552161 1.0 15262 -75051 Cfap210 cilia and flagella associated protein 210 Novel U 0.0005926267032848378 -0.2578436907688926 1.0 15263 -228714 Kat14 lysine acetyltransferase 14 Novel U 0.0005924116696087278 -0.2578459180806409 1.0 15264 -66317 Skic8 SKI8 subunit of superkiller complex Novel U 0.0005915150759367055 -0.25785520496842174 1.0 15265 -78600 Pde6h phosphodiesterase 6H, cGMP-specific, cone, gamma Novel N 0.0005912383208942734 -0.2578580715880534 1.0 15266 -234258 Neil3 nei like 3 (E. coli) Novel N 0.0005909812533213014 -0.2578607342855236 1.0 15267 -20585 Hltf helicase-like transcription factor Novel N 0.0005899718967576389 -0.25787118916762924 1.0 15268 -69740 Dph5 diphthamide biosynthesis 5 Novel U 0.0005897440695452887 -0.25787354899440534 1.0 15269 -667780 Msantd5f10 Myb/SANT DNA binding domain containing 5 family member 10 Novel U 0.0005897047007737071 -0.2578739567748472 1.0 15270 -66743 Rnf220 ring finger protein 220 Novel U 0.000589638959350453 -0.25787463772234814 1.0 15271 -380863 Tmem171 transmembrane protein 171 Novel U 0.0005896363593854504 -0.25787466465270015 1.0 15272 -69535 Ten1 TEN1 telomerase capping complex subunit Novel U 0.0005895670684476211 -0.25787538236595636 1.0 15273 -15159 Hccs holocytochrome c synthetase Novel U 0.0005893554563679953 -0.25787757423692076 1.0 15274 -229722 Elapor1 endosome-lysosome associated apoptosis and autophagy regulator 1 Novel U 0.0005891037197088415 -0.25788018171696087 1.0 15275 -235907 Zfp65 zinc finger protein 65 Novel U 0.0005889924206089405 -0.2578813345493789 1.0 15276 -20527 Slc2a3 solute carrier family 2 (facilitated glucose transporter), member 3 Novel U 0.0005887820512752645 -0.2578835135480216 1.0 15277 -15228 Foxg1 forkhead box G1 Novel U 0.0005886570394226899 -0.25788480841668104 1.0 15278 -66599 Rdm1 RAD52 motif 1 Novel U 0.0005885187490139203 -0.257886240824189 1.0 15279 -277753 Cyp4a12a cytochrome P450, family 4, subfamily a, polypeptide 12a Novel U 0.000588206773638267 -0.2578894722548744 1.0 15280 -238568 Serpinb6d serine (or cysteine) peptidase inhibitor, clade B, member 6d Novel U 0.0005881985903938839 -0.2578895570166507 1.0 15281 -399558 Flrt2 fibronectin leucine rich transmembrane protein 2 Novel U 0.000588188737880304 -0.25788965906866246 1.0 15282 -17175 Masp2 MBL associated serine protease 2 Novel N 0.0005879526397448116 -0.2578921045653886 1.0 15283 -71978 Ppp2r2a protein phosphatase 2, regulatory subunit B, alpha Novel N 0.0005876936731290048 -0.25789478693308204 1.0 15284 -18012 Neurod1 neurogenic differentiation 1 Novel U 0.0005876824108054814 -0.2578949035878589 1.0 15285 -59008 Anapc5 anaphase-promoting complex subunit 5 Novel U 0.0005871463158366087 -0.2579004564419233 1.0 15286 -11702 Amd1 S-adenosylmethionine decarboxylase 1 Novel U 0.0005871096139980216 -0.2579008365983609 1.0 15287 -278507 Wfikkn2 WAP, follistatin/kazal, immunoglobulin, kunitz and netrin domain containing 2 Novel U 0.000586896505538462 -0.25790304396877944 1.0 15288 -380694 Ccnjl cyclin J-like Novel U 0.0005868362411560833 -0.257903668185271 1.0 15289 -52276 Cdca8 cell division cycle associated 8 Novel U 0.0005867905504413363 -0.25790414144819235 1.0 15290 -239790 Ostn osteocrin Novel U 0.0005867298259758936 -0.2579047704302092 1.0 15291 -639910 Tcstv2c two cell stage variable group member 2C Novel U 0.0005866509009705423 -0.2579055879328201 1.0 15292 -68033 Cox19 cytochrome c oxidase assembly protein 19 Novel N 0.000586423792883427 -0.2579079403109207 1.0 15293 -108153 Adamts7 ADAM metallopeptidase with thrombospondin type 1 motif 7 Novel U 0.0005860933371386824 -0.2579113631606616 1.0 15294 -271813 Agbl2 ATP/GTP binding protein-like 2 Novel U 0.0005860120632209102 -0.25791220499323014 1.0 15295 -68528 Smim6 small integral membrane protein 6 Novel U 0.000585842249984407 -0.2579139639131515 1.0 15296 -239283 Oxgr1 oxoglutarate (alpha-ketoglutarate) receptor 1 Novel N 0.0005855045291519815 -0.25791746201443183 1.0 15297 -24102 Trex2 three prime repair exonuclease 2 Novel N 0.0005854633287414161 -0.25791788876693006 1.0 15298 -73828 Dcaf4 DDB1 and CUL4 associated factor 4 Novel U 0.0005852488675756652 -0.2579201101486349 1.0 15299 -105590 Zfp957 zinc finger protein 957 Novel U 0.0005852288555673523 -0.2579203174323591 1.0 15300 -22427 Wrn Werner syndrome RecQ like helicase Novel U 0.0005850699606898365 -0.25792196326027705 1.0 15301 -70355 Gprc5c G protein-coupled receptor, family C, group 5, member C Novel U 0.0005848217677978585 -0.25792453403409327 1.0 15302 -108767 Pnrc1 proline-rich nuclear receptor coactivator 1 Novel U 0.0005848076972772765 -0.2579246797760829 1.0 15303 -98363 Efhd1 EF hand domain containing 1 Novel N 0.0005843258672163829 -0.25792967055601435 1.0 15304 -226747 Ahctf1 AT hook containing transcription factor 1 Novel U 0.0005842403916847807 -0.2579305559087608 1.0 15305 -69032 Lyzl4 lysozyme-like 4 Novel U 0.0005837096345669818 -0.25793605347353926 1.0 15306 -625823 Vmn1r1 vomeronasal 1 receptor 1 Novel U 0.0005835936050624884 -0.25793725530333256 1.0 15307 -226976 Kansl3 KAT8 regulatory NSL complex subunit 3 Novel U 0.0005835776077515226 -0.2579374210029537 1.0 15308 -546055 Adam39 a disintegrin and metallopeptidase domain 39 Novel U 0.0005832322798137488 -0.2579409978983811 1.0 15309 -71713 Cdc40 cell division cycle 40 Novel U 0.0005829459461757194 -0.25794396373279105 1.0 15310 -71777 Ing3 inhibitor of growth family, member 3 Novel N 0.0005826876092082413 -0.2579466395786078 1.0 15311 -17681 Msc musculin Novel N 0.000582668674081733 -0.25794683570802573 1.0 15312 -71769 Bbs10 Bardet-Biedl syndrome 10 Novel U 0.0005825938429709955 -0.2579476108062108 1.0 15313 -71007 D7Ertd443e DNA segment, Chr 7, ERATO Doi 443, expressed Novel U 0.0005822913861578952 -0.25795074364393816 1.0 15314 -319158 H4c9 H4 clustered histone 9 Novel U 0.0005820501211902077 -0.25795324265854236 1.0 15315 -320111 Prr18 proline rich 18 Novel U 0.0005819879345234331 -0.2579538867859925 1.0 15316 -14571 Gpd2 glycerol phosphate dehydrogenase 2, mitochondrial Novel N 0.0005819401391455756 -0.25795438184894515 1.0 15317 -332942 Ldc1 leucine decarboxylase 1 Novel U 0.0005818242346788227 -0.2579555823836016 1.0 15318 -665775 Bod1l biorientation of chromosomes in cell division 1-like Novel N 0.0005815464921196259 -0.25795845923189953 1.0 15319 -71653 Shtn1 shootin 1 Novel N 0.0005812677314845064 -0.2579613466253943 1.0 15320 -212632 Iffo2 intermediate filament family orphan 2 Novel U 0.0005809270388269026 -0.2579648755087421 1.0 15321 -213436 Rtl3 retrotransposon Gag like 3 Novel U 0.0005808221552857311 -0.2579659618890137 1.0 15322 -102193 Zdhhc7 zinc finger, DHHC domain containing 7 Novel U 0.0005807922333016388 -0.2579662718199413 1.0 15323 -212516 Efcab12 EF-hand calcium binding domain 12 Novel U 0.0005807450793013278 -0.2579667602395264 1.0 15324 -50773 Nt5c 5',3'-nucleotidase, cytosolic Novel N 0.0005804997019710572 -0.257969301849847 1.0 15325 -407790 Ndufa4l2 Ndufa4, mitochondrial complex associated like 2 Novel U 0.0005803504939944343 -0.2579708473411639 1.0 15326 -105732 Fam83h family with sequence similarity 83, member H Novel N 0.0005802605302684549 -0.2579717791824802 1.0 15327 -22138 Ttn titin Novel U 0.000580108539458541 -0.25797335349829287 1.0 15328 -57435 Plin4 perilipin 4 Novel U 0.0005797702165765932 -0.25797685783558233 1.0 15329 -15452 Hprt1 hypoxanthine phosphoribosyltransferase 1 Novel U 0.0005795256921791174 -0.2579793906112531 1.0 15330 -67230 Zfp329 zinc finger protein 329 Novel U 0.0005794064338959992 -0.2579806258846292 1.0 15331 -71836 Shcbp1l Shc SH2-domain binding protein 1-like Novel U 0.00057924699274547 -0.257982277370825 1.0 15332 -667472 Vmn1r251 vomeronasal 1 receptor 251 Novel U 0.0005791741875018846 -0.2579830314851448 1.0 15333 -67008 Yae1d1 Yae1 domain containing 1 Novel N 0.0005790122869963861 -0.2579847084452585 1.0 15334 -224045 Eif2b5 eukaryotic translation initiation factor 2B, subunit 5 epsilon Novel U 0.0005789821475954294 -0.25798502062818285 1.0 15335 -223773 Zbed4 zinc finger, BED type containing 4 Novel U 0.0005789540849279524 -0.25798531130037006 1.0 15336 -320332 H4c16 H4 histone 16 Novel U 0.0005788718338438177 -0.25798616325439566 1.0 15337 -78323 Fam219b family with sequence similarity 219, member B Novel U 0.000578831003278995 -0.25798658617604386 1.0 15338 -242691 Gpatch3 G patch domain containing 3 Novel U 0.0005788134256596925 -0.2579867682444468 1.0 15339 -319169 H2ac15 H2A clustered histone 15 Novel U 0.0005788021434659266 -0.2579868851050389 1.0 15340 -71236 Rsph14 radial spoke head homolog 14 (Chlamydomonas) Novel U 0.0005787109770488898 -0.25798782940378967 1.0 15341 -216578 Papolg poly(A) polymerase gamma Novel U 0.0005783814332076573 -0.25799124280806396 1.0 15342 -330355 Dnah6 dynein, axonemal, heavy chain 6 Novel U 0.0005782537236158952 -0.2579925656198172 1.0 15343 -223626 Them6 thioesterase superfamily member 6 Novel U 0.000578049446213506 -0.2579946815184359 1.0 15344 -70625 Med26 mediator complex subunit 26 Novel N 0.0005780209114073913 -0.2579949770810196 1.0 15345 -20397 Sgpl1 sphingosine phosphate lyase 1 Novel N 0.0005779750292316362 -0.2579954523270878 1.0 15346 -319182 H2bc9 H2B clustered histone 9 Novel U 0.000577963662940473 -0.257995570058758 1.0 15347 -70615 Ankrd24 ankyrin repeat domain 24 Novel U 0.0005778481600728371 -0.25799676643366404 1.0 15348 -257633 Acsf3 acyl-CoA synthetase family member 3 Novel N 0.0005777198692671826 -0.2579980952656117 1.0 15349 -66732 Ccdc202 coiled-coil domain containing 202 Novel U 0.0005776463778444877 -0.25799885648735205 1.0 15350 -72672 Zfp518a zinc finger protein 518A Novel U 0.0005776218653107125 -0.25799911038737106 1.0 15351 -214931 Fbxl16 F-box and leucine-rich repeat protein 16 Novel U 0.0005775925319137717 -0.2579994142217323 1.0 15352 -110695 Aldh7a1 aldehyde dehydrogenase family 7, member A1 Novel U 0.0005775710507333895 -0.25799963672309256 1.0 15353 -219150 Hmbox1 homeobox containing 1 Novel U 0.0005775311645160769 -0.2580000498632203 1.0 15354 -230718 Nt5c1a 5'-nucleotidase, cytosolic IA Novel N 0.00057752783655893 -0.258000084334091 1.0 15355 -212517 Cfap44 cilia and flagella associated protein 44 Novel N 0.0005775030201900562 -0.258000341381224 1.0 15356 -11495 Adam2 a disintegrin and metallopeptidase domain 2 Novel U 0.0005771145256594352 -0.2580043653948011 1.0 15357 -68241 Mcrip2 MAPK regulated corepressor interacting protein 2 Novel U 0.0005770626722873694 -0.2580049024903244 1.0 15358 -66483 Rpl36al ribosomal protein L36A-like Novel U 0.0005768935548213245 -0.25800665420347824 1.0 15359 -381314 Iars2 isoleucine-tRNA synthetase 2, mitochondrial Novel U 0.0005762764774014923 -0.2580130458711075 1.0 15360 -18291 Nobox NOBOX oogenesis homeobox Novel U 0.0005762169167375725 -0.25801366279850646 1.0 15361 -67133 Gp2 glycoprotein 2 zymogen granule membrane Novel U 0.0005761369921110309 -0.2580144906551608 1.0 15362 -67019 Actr6 ARP6 actin-related protein 6 Novel U 0.0005759480819882733 -0.25801644738000223 1.0 15363 -19746 Rhd Rh blood group, D antigen Novel U 0.0005758929198242746 -0.2580170187478836 1.0 15364 -72662 Dis3 DIS3 homolog, exosome endoribonuclease and 3'-5' exoribonuclease Novel N 0.0005757007140920501 -0.2580190096085395 1.0 15365 -12532 Cdc25c cell division cycle 25C Novel U 0.0005755901760522068 -0.2580201545579225 1.0 15366 -13803 Enc1 ectodermal-neural cortex 1 Novel U 0.0005755131040764708 -0.25802095286691357 1.0 15367 -333789 N4bp2 NEDD4 binding protein 2 Novel U 0.0005752936465423989 -0.25802322600083716 1.0 15368 -64656 Mrps23 mitochondrial ribosomal protein S23 Novel N 0.0005752048429712736 -0.2580241458253077 1.0 15369 -80732 Mynn myoneurin Novel U 0.0005749114636111533 -0.2580271846390754 1.0 15370 -321000 Lrif1 ligand dependent nuclear receptor interacting factor 1 Novel U 0.0005746579201832678 -0.2580298108335667 1.0 15371 -66138 Bud23 BUD23, rRNA methyltransferase and ribosome maturation factor Novel U 0.0005745163580875234 -0.25803127712910084 1.0 15372 -104625 Cnot6 CCR4-NOT transcription complex, subunit 6 Novel U 0.00057437412838906 -0.25803275033964196 1.0 15373 -69065 Chac1 ChaC, cation transport regulator 1 Novel U 0.0005742623122287798 -0.2580339085277544 1.0 15374 -67469 Abhd5 abhydrolase domain containing 5 Novel U 0.0005731918930629045 -0.25804499589428637 1.0 15375 -19826 Rnps1 RNA binding protein with serine rich domain 1 Novel N 0.0005731273429512612 -0.25804566450222083 1.0 15376 -114863 Plpbp pyridoxal phosphate binding protein Novel U 0.000573100102889616 -0.25804594665388386 1.0 15377 -329251 Ppp1r12b protein phosphatase 1, regulatory subunit 12B Novel N 0.0005730538380904713 -0.2580464258631525 1.0 15378 -384997 Pglyrp4 peptidoglycan recognition protein 4 Novel U 0.0005728715362843309 -0.25804831413926765 1.0 15379 -14447 Gapdhs glyceraldehyde-3-phosphate dehydrogenase, spermatogenic Novel N 0.0005727630283890367 -0.25804943806048014 1.0 15380 -23836 Cdh20 cadherin 20 Novel U 0.0005724814523777107 -0.25805235461554915 1.0 15381 -78670 Plekhj1 pleckstrin homology domain containing, family J member 1 Novel U 0.0005721695307617951 -0.2580555854893929 1.0 15382 -18996 Pou4f1 POU domain, class 4, transcription factor 1 Novel U 0.0005720695493659704 -0.25805662109340416 1.0 15383 -15203 Heph hephaestin Novel U 0.000571884692824034 -0.2580585358313887 1.0 15384 -71425 Bpifb9a BPI fold containing family B, member 9A Novel U 0.0005718169740475379 -0.25805923726024954 1.0 15385 -53412 Ppp1r3c protein phosphatase 1, regulatory subunit 3C Novel U 0.0005714032349284014 -0.2580635227564446 1.0 15386 -434726 Fthl17b ferritin, heavy polypeptide-like 17, member B Novel U 0.0005713363423981001 -0.2580642156270745 1.0 15387 -225497 Fam170a family with sequence similarity 170, member A Novel U 0.0005712825589038482 -0.2580647727147399 1.0 15388 -27367 Rpl3 ribosomal protein L3 Novel N 0.0005703109319987904 -0.25807483679428195 1.0 15389 -75467 Stpg4 sperm tail PG rich repeat containing 4 Novel U 0.0005701602774781897 -0.25807639726885384 1.0 15390 -216881 Wscd1 WSC domain containing 1 Novel U 0.0005695450280064387 -0.258082770002657 1.0 15391 -56403 Syncrip synaptotagmin binding, cytoplasmic RNA interacting protein Novel U 0.0005695095020179353 -0.2580831379796781 1.0 15392 -207667 Skor1 SKI family transcriptional corepressor 1 Novel U 0.0005693049475301977 -0.2580852567483377 1.0 15393 -320974 Lrrn4 leucine rich repeat neuronal 4 Novel U 0.0005692322709307943 -0.2580860095301652 1.0 15394 -227485 Cdh19 cadherin 19, type 2 Novel U 0.0005690267618580987 -0.25808813818638443 1.0 15395 -70333 Polr1g RNA polymerase I subunit G Novel U 0.0005690176512772819 -0.258088232553481 1.0 15396 -242602 Cimap2 ciliary microtubule associated protein 2 Novel U 0.0005690163018043839 -0.258088246531277 1.0 15397 -68375 Ndufa8 NADH:ubiquinone oxidoreductase subunit A8 Novel N 0.0005687918700065004 -0.2580905711884616 1.0 15398 -381213 Ms4a12 membrane-spanning 4-domains, subfamily A, member 12 Novel U 0.0005687673824279356 -0.25809082482999546 1.0 15399 -103140 Gstt3 glutathione S-transferase, theta 3 Novel U 0.0005685264861265361 -0.2580933200259663 1.0 15400 -13106 Cyp2e1 cytochrome P450, family 2, subfamily e, polypeptide 1 Novel N 0.0005682089153250602 -0.2580966094138884 1.0 15401 -66962 Swsap1 SWIM type zinc finger 7 associated protein 1 Novel N 0.0005681634264600839 -0.25809708058605646 1.0 15402 -54486 Hpgds hematopoietic prostaglandin D synthase Novel N 0.0005681187781829234 -0.25809754305144356 1.0 15403 -621510 Vmn1r129 vomeronasal 1 receptor 129 Novel U 0.0005680989099553174 -0.25809774884589193 1.0 15404 -68750 Rreb1 ras responsive element binding protein 1 Novel U 0.0005678776059321135 -0.2581000411056893 1.0 15405 -71766 Raver1 ribonucleoprotein, PTB-binding 1 Novel U 0.0005678257898244268 -0.2581005778152294 1.0 15406 -230082 Nol6 nucleolar protein family 6 (RNA-associated) Novel N 0.0005673348193245088 -0.25810566327152773 1.0 15407 -268697 Ccnb1 cyclin B1 Novel U 0.0005672151369199971 -0.25810690293793936 1.0 15408 -241915 Phc3 polyhomeotic 3 Novel U 0.0005671194385694451 -0.25810789417830843 1.0 15409 -239667 Dip2b disco interacting protein 2 homolog B Novel N 0.000566982848278224 -0.2581093089760548 1.0 15410 -67420 Far1 fatty acyl CoA reductase 1 Novel U 0.0005669096143847164 -0.25811006753031623 1.0 15411 -108934 Smim13 small integral membrane protein 13 Novel U 0.0005668318725862786 -0.2581108727773089 1.0 15412 -212448 9330159F19Rik RIKEN cDNA 9330159F19 gene Novel U 0.000566655363474898 -0.2581127010528821 1.0 15413 -27388 Ptdss2 phosphatidylserine synthase 2 Novel U 0.0005666355235047486 -0.2581129065546407 1.0 15414 -209012 Ulk4 unc-51-like kinase 4 Novel U 0.0005665590031252262 -0.2581136991502163 1.0 15415 -20269 Scn3a sodium channel, voltage-gated, type III, alpha Novel U 0.0005662627555356935 -0.2581167676730101 1.0 15416 -23989 Med24 mediator complex subunit 24 Novel N 0.0005659319456028061 -0.2581201941914201 1.0 15417 -215194 Kri1 KRI1 homolog Novel U 0.000565888756052329 -0.25812064154736425 1.0 15418 -218461 Pde8b phosphodiesterase 8B Novel N 0.0005658488464548013 -0.2581210549296634 1.0 15419 -238271 Kcnh5 potassium voltage-gated channel, subfamily H (eag-related), member 5 Novel U 0.0005658255314854307 -0.25812129642534976 1.0 15420 -53381 Prdx4 peroxiredoxin 4 Novel N 0.0005655712685297147 -0.25812393007268664 1.0 15421 -14538 Gcnt2 glucosaminyl (N-acetyl) transferase 2 (I blood group) Novel U 0.0005654897460992104 -0.2581247744793419 1.0 15422 -74954 4930503E14Rik RIKEN cDNA 4930503E14 gene Novel U 0.0005652963367692879 -0.2581267778068232 1.0 15423 -216154 Med16 mediator complex subunit 16 Novel N 0.0005646827718955286 -0.2581331330916158 1.0 15424 -18631 Pex11a peroxisomal biogenesis factor 11 alpha Novel U 0.0005645718295366234 -0.25813428222892226 1.0 15425 -381801 Tatdn2 TatD DNase domain containing 2 Novel U 0.0005643420680014506 -0.2581366620913506 1.0 15426 -210529 Mettl14 methyltransferase 14, N6-adenosine-methyltransferase subunit Novel N 0.0005642146571814214 -0.25813798180843606 1.0 15427 -22256 Ung uracil DNA glycosylase Novel U 0.0005641630381320943 -0.2581385164768521 1.0 15428 -106298 Rrn3 RRN3 RNA polymerase I transcription factor homolog (yeast) Novel U 0.000564027621963896 -0.2581399191130707 1.0 15429 -14265 Fmr1 fragile X messenger ribonucleoprotein 1 Novel U 0.000563952784750229 -0.25814069427446973 1.0 15430 -77864 Ypel2 yippee like 2 Novel U 0.0005633670725203231 -0.25814676106249285 1.0 15431 -207806 Usf3 upstream transcription factor family member 3 Novel U 0.0005632445918329813 -0.258148029713426 1.0 15432 -231571 Rpap2 RNA polymerase II associated protein 2 Novel U 0.0005630301760389271 -0.2581502506251723 1.0 15433 -545554 Ankrd34a ankyrin repeat domain 34A Novel U 0.0005628414227793673 -0.25815220572522984 1.0 15434 -28295 Gatd3a glutamine amidotransferase like class 1 domain containing 3A Novel U 0.0005628410328113781 -0.2581522097645055 1.0 15435 -68816 Ppil1 peptidylprolyl isomerase (cyclophilin)-like 1 Novel U 0.0005624109704751141 -0.258156664336047 1.0 15436 -241732 Tspyl3 TSPY-like 3 Novel U 0.0005621433834659558 -0.2581594359934914 1.0 15437 -18431 Oca2 oculocutaneous albinism II Novel U 0.000562119042479787 -0.25815968811662593 1.0 15438 -22361 Vnn1 vanin 1 Novel N 0.0005618944870655804 -0.25816201405422445 1.0 15439 -67902 Sumf2 sulfatase modifying factor 2 Novel U 0.0005618845923398749 -0.25816211654346805 1.0 15440 -630836 2010315B03Rik RIKEN cDNA 2010315B03 gene Novel U 0.000561754192641068 -0.25816346721926164 1.0 15441 -319695 Ankar ankyrin and armadillo repeat containing Novel U 0.0005617225973494801 -0.25816379448225324 1.0 15442 -76183 Celf6 CUGBP, Elav-like family member 6 Novel N 0.0005615186822429604 -0.2581659066282232 1.0 15443 -12812 Coil coilin Novel U 0.0005614638277434103 -0.2581664748093263 1.0 15444 -170439 Elovl6 ELOVL fatty acid elongase 6 Novel N 0.0005612728991590662 -0.2581684524413265 1.0 15445 -225256 Dsg1b desmoglein 1 beta Novel U 0.0005611781653157555 -0.2581694336913613 1.0 15446 -14234 Foxc2 forkhead box C2 Novel U 0.0005610700703281638 -0.2581705533356894 1.0 15447 -381531 Mup21 major urinary protein 21 Novel U 0.0005610285585539238 -0.2581709833132823 1.0 15448 -218629 Dhx29 DExH-box helicase 29 Novel N 0.0005608348279749213 -0.25817298996825105 1.0 15449 -210105 Zfp719 zinc finger protein 719 Novel U 0.0005607866378658857 -0.2581734891198163 1.0 15450 -16517 Kcnj16 potassium inwardly-rectifying channel, subfamily J, member 16 Novel U 0.0005607184386676576 -0.25817419552486964 1.0 15451 -227525 Dclre1c DNA cross-link repair 1C Novel U 0.000560476609765177 -0.2581767003806918 1.0 15452 -382207 Jade3 jade family PHD finger 3 Novel N 0.0005600847606279528 -0.25818075914117383 1.0 15453 -73112 Abracl ABRA C-terminal like Novel U 0.0005600161176730224 -0.2581814701426445 1.0 15454 -17195 Mbl2 mannose-binding lectin (protein C) 2 Novel U 0.0005599630814916035 -0.2581820194896681 1.0 15455 -93726 Rnase2a ribonuclease, RNase A family, 2A (liver, eosinophil-derived neurotoxin) Novel U 0.0005598964794648127 -0.25818270935127224 1.0 15456 -233057 Zfp940 zinc finger protein 940 Novel U 0.000559871447965831 -0.2581829686267158 1.0 15457 -101055670 Heatr4 HEAT repeat containing 4 Novel U 0.0005595900398424915 -0.2581858834428066 1.0 15458 -100862192 LOC100862192 PRAME family member 8-like Novel U 0.0005594729524298764 -0.2581870962303774 1.0 15459 -208583 Nek11 NIMA (never in mitosis gene a)-related expressed kinase 11 Novel N 0.0005591669386822733 -0.2581902659107154 1.0 15460 -74548 Gsdmc4 gasdermin C4 Novel U 0.0005590155910218981 -0.2581918335648063 1.0 15461 -332396 Kcnk18 potassium channel, subfamily K, member 18 Novel U 0.000559013638500244 -0.2581918537889614 1.0 15462 -66067 Gtpbp8 GTP-binding protein 8 (putative) Novel U 0.0005589842960524334 -0.2581921577170712 1.0 15463 -331474 Rtl5 retrotransposon Gag like 5 Novel U 0.0005588103515372537 -0.2581939594286414 1.0 15464 -225872 Npas4 neuronal PAS domain protein 4 Novel N 0.000558356837396937 -0.2581986569131983 1.0 15465 -105734733 Gm13030 predicted gene 13030 Novel U 0.0005583116447235592 -0.25819912501742354 1.0 15466 -13602 Sparcl1 SPARC-like 1 Novel U 0.0005581933182140968 -0.25820035063951874 1.0 15467 -17955 Nap1l4 nucleosome assembly protein 1-like 4 Novel N 0.0005576450423527559 -0.25820602966286693 1.0 15468 -11832 Aqp7 aquaporin 7 Novel U 0.0005574164164959529 -0.258208397761976 1.0 15469 -433386 Ccdc185 coiled-coil domain containing 185 Novel U 0.0005573628504420946 -0.258208952597401 1.0 15470 -75104 Mmd2 monocyte to macrophage differentiation-associated 2 Novel U 0.0005572241442909866 -0.2582103893111544 1.0 15471 -68255 Tmem86b transmembrane protein 86B Novel U 0.0005571633299438586 -0.2582110192241628 1.0 15472 -106947 Slc39a3 solute carrier family 39 (zinc transporter), member 3 Novel N 0.0005568664543595532 -0.25821409425170583 1.0 15473 -54403 Slc4a4 solute carrier family 4 (anion exchanger), member 4 Novel U 0.0005567316385665452 -0.258215490669258 1.0 15474 -71877 Efhc1 EF-hand domain (C-terminal) containing 1 Novel U 0.0005566957430063437 -0.2582158624742905 1.0 15475 -242585 Slc35d1 solute carrier family 35 (UDP-glucuronic acid/UDP-N-acetylgalactosamine dual transporter), member D1 Novel N 0.0005564969557319774 -0.25821792150634365 1.0 15476 -319149 H3c4 H3 clustered histone 4 Novel U 0.000556462327061415 -0.2582182801889749 1.0 15477 -66333 Aqp11 aquaporin 11 Novel U 0.0005564397510341794 -0.25821851403072293 1.0 15478 -109323 C1qtnf7 C1q and tumor necrosis factor related protein 7 Novel U 0.0005563197056681786 -0.25821975745667763 1.0 15479 -225187 Ankrd29 ankyrin repeat domain 29 Novel U 0.0005557289146582876 -0.2582258768505369 1.0 15480 -69572 Mfsd3 major facilitator superfamily domain containing 3 Novel U 0.0005555797333238155 -0.2582274220658953 1.0 15481 -11676 Aldoc aldolase C, fructose-bisphosphate Novel N 0.000555451862885191 -0.25822874654369504 1.0 15482 -75444 Ccdc192 coiled-coil domain containing 192 Novel U 0.0005553216050321086 -0.2582300957502553 1.0 15483 -78251 Zfp712 zinc finger protein 712 Novel U 0.0005549213177348486 -0.25823424191292155 1.0 15484 -75495 Morn5 MORN repeat containing 5 Novel U 0.0005548818628569183 -0.2582346505852502 1.0 15485 -319586 Celf5 CUGBP, Elav-like family member 5 Novel N 0.0005547765235100375 -0.2582357416867423 1.0 15486 -74737 Pcf11 PCF11 cleavage and polyadenylation factor subunit Novel N 0.0005546336636767224 -0.2582372214241995 1.0 15487 -76789 Mzt1 mitotic spindle organizing protein 1 Novel N 0.0005546147082430447 -0.2582374177639584 1.0 15488 -71148 Mier1 MEIR1 treanscription regulator Novel N 0.00055447222381384 -0.25823889361299224 1.0 15489 -72137 Wdsub1 WD repeat, SAM and U-box domain containing 1 Novel U 0.0005544604174323833 -0.2582390159031032 1.0 15490 -50996 Pdcd7 programmed cell death 7 Novel N 0.0005537289976168633 -0.25824659192550825 1.0 15491 -16470 Ush1g USH1 protein network component sans Novel U 0.0005535862784278709 -0.2582480702061762 1.0 15492 -231691 Sds serine dehydratase Novel N 0.0005533666159923961 -0.25825034546246184 1.0 15493 -78245 Acbd7 acyl-Coenzyme A binding domain containing 7 Novel U 0.00055313564418893 -0.2582527378608093 1.0 15494 -74488 Lrrc15 leucine rich repeat containing 15 Novel U 0.0005531135428373614 -0.25825296678588233 1.0 15495 -21955 Tnnt1 troponin T1, skeletal, slow Novel U 0.0005531108920511996 -0.25825299424263826 1.0 15496 -226265 Eno4 enolase 4 Novel U 0.0005529515462179236 -0.25825464474154114 1.0 15497 -72667 Zfp444 zinc finger protein 444 Novel U 0.0005525965351186744 -0.2582583219348368 1.0 15498 -269639 Zfp512 zinc finger protein 512 Novel U 0.0005524919225197203 -0.2582594055086978 1.0 15499 -277468 Slc39a12 solute carrier family 39 (zinc transporter), member 12 Novel U 0.0005524605775574651 -0.25825973017878645 1.0 15500 -269261 Rpl12 ribosomal protein L12 Novel N 0.0005524353920413188 -0.25825999104953473 1.0 15501 -75296 Cep43 centrosomal protein 43 Novel U 0.0005523250128392494 -0.25826113435368125 1.0 15502 -66420 Polr2e polymerase (RNA) II (DNA directed) polypeptide E Novel N 0.0005521658070839463 -0.2582627834016611 1.0 15503 -72102 Dusp11 dual specificity phosphatase 11 (RNA/RNP complex 1-interacting) Novel N 0.0005519828400211422 -0.2582646785684829 1.0 15504 -214572 Prmt7 protein arginine N-methyltransferase 7 Novel U 0.0005517111495410952 -0.25826749272954386 1.0 15505 -338352 Nell1 NEL-like 1 Novel U 0.0005517031261169597 -0.2582675758359073 1.0 15506 -210741 Kcnk12 potassium channel, subfamily K, member 12 Novel U 0.0005513737153274763 -0.258270987862036 1.0 15507 -22762 Zfpm2 zinc finger protein, multitype 2 Novel U 0.0005512452926064491 -0.2582723180603587 1.0 15508 -56703 Pigo phosphatidylinositol glycan anchor biosynthesis, class O Novel U 0.0005510945993951599 -0.2582738789356875 1.0 15509 -319163 H2ac1 H2A clustered histone 1 Novel U 0.000551090661140563 -0.2582739197279991 1.0 15510 -98558 Mael maelstrom spermatogenic transposon silencer Novel U 0.0005510012538689515 -0.25827484580557936 1.0 15511 -24087 Tll2 tolloid-like 2 Novel N 0.0005509525719354915 -0.2582753500514458 1.0 15512 -71799 Ptcd1 pentatricopeptide repeat domain 1 Novel N 0.000550933116230801 -0.2582755515729954 1.0 15513 -100135654 Rhox3c reproductive homeobox 3C Novel U 0.0005509094701454003 -0.2582757964983707 1.0 15514 -22092 Rsph1 radial spoke head 1 homolog (Chlamydomonas) Novel N 0.000550695641850952 -0.25827801132481537 1.0 15515 -230162 Zfp189 zinc finger protein 189 Novel U 0.0005506734803063498 -0.2582782408733658 1.0 15516 -235631 Prss50 serine protease 50 Novel N 0.0005505240041182775 -0.2582797891428081 1.0 15517 -20671 Sox17 SRY (sex determining region Y)-box 17 Novel U 0.0005502817784161669 -0.2582822981086678 1.0 15518 -216739 Acsl6 acyl-CoA synthetase long-chain family member 6 Novel N 0.0005500847780877747 -0.2582843386315933 1.0 15519 -77998 Grifin galectin-related inter-fiber protein Novel U 0.0005500354302461329 -0.2582848497749148 1.0 15520 -100503545 Nuggc nuclear GTPase, germinal center associated Novel U 0.0005500347846850942 -0.2582848564616148 1.0 15521 -21841 Tia1 cytotoxic granule-associated RNA binding protein 1 Novel N 0.0005495721945393639 -0.2582896479551374 1.0 15522 -269019 Stk32a serine/threonine kinase 32A Novel U 0.0005494689940253771 -0.2582907169026688 1.0 15523 -66921 Prpf38b PRP38 pre-mRNA processing factor 38 (yeast) domain containing B Novel U 0.0005494162554993759 -0.2582912631665874 1.0 15524 -22757 Zkscan5 zinc finger with KRAB and SCAN domains 5 Novel U 0.0005493193363922691 -0.2582922670515128 1.0 15525 -69994 Rsc1a1 regulatory solute carrier protein, family 1, member 1 Novel U 0.0005490597984548865 -0.25829495533693636 1.0 15526 -227541 Camk1d calcium/calmodulin-dependent protein kinase ID Novel U 0.0005489580127479611 -0.25829600962994265 1.0 15527 -70941 4921539E11Rik RIKEN cDNA 4921539E11 gene Novel U 0.0005489422744775282 -0.25829617264643046 1.0 15528 -269642 Nat8l N-acetyltransferase 8-like Novel N 0.0005489162756142364 -0.25829644194180174 1.0 15529 -328250 Nutm2 NUT family member 2 Novel U 0.0005487570436797925 -0.2582980912609442 1.0 15530 -94181 Nans N-acetylneuraminic acid synthase (sialic acid synthase) Novel U 0.0005482151832601705 -0.258303703833358 1.0 15531 -56451 Suclg1 succinate-CoA ligase, GDP-forming, alpha subunit Novel N 0.0005481518157807845 -0.2583043601916264 1.0 15532 -110172 Slc35b1 solute carrier family 35, member B1 Novel U 0.0005478471089645529 -0.2583075163348122 1.0 15533 -235712 Mrgpra2b MAS-related GPR, member A2B Novel U 0.000547679372994017 -0.258309253738481 1.0 15534 -30791 Slc39a1 solute carrier family 39 (zinc transporter), member 1 Novel N 0.000547642230486425 -0.2583096384593536 1.0 15535 -15229 Foxd1 forkhead box D1 Novel U 0.000547593910440316 -0.2583101389568028 1.0 15536 -331401 Thoc2 THO complex 2 Novel U 0.0005471604515919503 -0.258314628709305 1.0 15537 -70701 Nipal1 NIPA-like domain containing 1 Novel U 0.0005470541050670792 -0.25831573024311366 1.0 15538 -15495 Hsd3b4 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 4 Novel U 0.0005470411038414653 -0.2583158649093812 1.0 15539 -75528 Tex29 testis expressed 29 Novel U 0.000546987342115069 -0.2583164217715759 1.0 15540 -105559 Mbnl2 muscleblind like splicing factor 2 Novel N 0.0005467706236763448 -0.2583186665340399 1.0 15541 -73744 Man2c1 mannosidase, alpha, class 2C, member 1 Novel U 0.0005465808669722083 -0.25832063202774347 1.0 15542 -231464 Cnot6l CCR4-NOT transcription complex, subunit 6-like Novel U 0.0005462515234445073 -0.2583240433571768 1.0 15543 -73934 Cldn34c4 claudin 34C4 Novel U 0.0005461109743598125 -0.2583254991599757 1.0 15544 -74616 Scrn3 secernin 3 Novel U 0.0005456464634487364 -0.2583303105487227 1.0 15545 -433278 Khdc1c KH domain containing 1C Novel U 0.0005455195092870011 -0.25833162553575656 1.0 15546 -100038347 Fam174b family with sequence similarity 174, member B Novel U 0.000545342974724262 -0.25833345407495417 1.0 15547 -15353 Hmg20b high mobility group 20B Novel U 0.0005451514136450191 -0.25833543825831573 1.0 15548 -75339 Mphosph8 M-phase phosphoprotein 8 Novel U 0.0005449448282689701 -0.25833757806284974 1.0 15549 -320678 Iffo1 intermediate filament family orphan 1 Novel U 0.0005448052182615738 -0.2583390241387169 1.0 15550 -58804 Cdc42ep5 CDC42 effector protein 5 Novel U 0.0005446970614459616 -0.25834014442345754 1.0 15551 -76793 Snip1 Smad nuclear interacting protein 1 Novel U 0.0005445953165742964 -0.25834119829349356 1.0 15552 -67045 Riok2 RIO kinase 2 Novel U 0.0005442205242683509 -0.2583450803798779 1.0 15553 -50878 Stag3 STAG3 cohesin complex component Novel U 0.0005442032319555848 -0.2583452594930851 1.0 15554 -68501 Nsmce2 NSE2/MMS21 homolog, SMC5-SMC6 complex SUMO ligase Novel U 0.0005440648752471514 -0.2583466925873228 1.0 15555 -57028 Pdxp pyridoxal (pyridoxine, vitamin B6) phosphatase Novel U 0.0005438577236148417 -0.25834883825712057 1.0 15556 -15571 Elavl3 ELAV like RNA binding protein 3 Novel U 0.0005438369181967697 -0.25834905375895695 1.0 15557 -100503068 Smim43 small integral membrane protein 43 Novel U 0.0005433536059742649 -0.2583540598910697 1.0 15558 -67332 Snrpd3 small nuclear ribonucleoprotein D3 Novel N 0.0005433294170813468 -0.25835431043882734 1.0 15559 -14645 Glul glutamate-ammonia ligase Novel U 0.0005433000522083988 -0.25835461459921605 1.0 15560 -21976 Top3b topoisomerase (DNA) III beta Novel U 0.000543030333655073 -0.2583574083351248 1.0 15561 -77766 Elp4 elongator acetyltransferase complex subunit 4 Novel U 0.0005429965656549687 -0.25835775810295986 1.0 15562 -631145 Fam90a1b family with sequence similarity 90, member A1B Novel U 0.0005429536732717444 -0.2583582023808553 1.0 15563 -230590 Zyg11a zyg-11 family member A, cell cycle regulator Novel U 0.0005424823828157955 -0.25836308399190516 1.0 15564 -67851 Mtres1 mitochondrial transcription rescue factor 1 Novel U 0.0005421277891137761 -0.25836675686181404 1.0 15565 -65255 Asb4 ankyrin repeat and SOCS box-containing 4 Novel U 0.000541968413632866 -0.2583684076678061 1.0 15566 -17864 Mybl1 myeloblastosis oncogene-like 1 Novel N 0.0005418556192828278 -0.2583695759879759 1.0 15567 -66505 Zmynd11 zinc finger, MYND domain containing 11 Novel U 0.0005416629815472759 -0.2583715713233081 1.0 15568 -320508 Cachd1 cache domain containing 1 Novel U 0.0005414462289241312 -0.2583738164398533 1.0 15569 -66183 Sptssb serine palmitoyltransferase, small subunit B Novel N 0.0005413825678626209 -0.25837447583903567 1.0 15570 -11950 Atp5pb ATP synthase peripheral stalk-membrane subunit b Novel N 0.0005409747071901346 -0.2583787004464736 1.0 15571 -665956 Defa43 defensin, alpha, 43 Novel U 0.0005407974351489257 -0.25838053662444893 1.0 15572 -232431 Gprc5a G protein-coupled receptor, family C, group 5, member A Novel N 0.0005404971413128993 -0.2583836470581309 1.0 15573 -105000 Dnal1 dynein, axonemal, light chain 1 Novel N 0.0005403829358522644 -0.2583848299945378 1.0 15574 -107656 Krt9 keratin 9 Novel U 0.00054008487437896 -0.25838791730548005 1.0 15575 -102278 Cpne7 copine VII Novel N 0.000540029660355405 -0.258388489210521 1.0 15576 -503491 Defa24 defensin, alpha, 24 Novel U 0.0005398541934713877 -0.2583903066907375 1.0 15577 -442829 Ccin calicin Novel U 0.0005398149311632158 -0.25839071336843483 1.0 15578 -102902673 Gm21992 predicted gene 21992 Novel U 0.0005396313381058769 -0.25839261501928745 1.0 15579 -319622 Itpripl2 inositol 1,4,5-triphosphate receptor interacting protein-like 2 Novel U 0.0005393659422185351 -0.25839536398116414 1.0 15580 -319942 A530016L24Rik RIKEN cDNA A530016L24 gene Novel U 0.0005392809451801704 -0.2583962443776934 1.0 15581 -12469 Cct8 chaperonin containing TCP1 subunit 8 Novel U 0.0005390419089220012 -0.2583987203073976 1.0 15582 -67717 Lipf lipase, gastric Novel U 0.0005387547599784694 -0.2584016945867152 1.0 15583 -116871 Mta3 metastasis associated 3 Novel N 0.0005385316367082224 -0.2584040056902136 1.0 15584 -100503659 Cbarp calcium channel, voltage-dependent, beta subunit associated regulatory protein Novel U 0.0005381985534012368 -0.25840745575615787 1.0 15585 -100041895 Defa37 defensin, alpha, 37 Novel U 0.0005381719808111573 -0.25840773099417236 1.0 15586 -320024 Nceh1 neutral cholesterol ester hydrolase 1 Novel U 0.0005381272196100971 -0.2584081946292215 1.0 15587 -56448 Cyp2d22 cytochrome P450, family 2, subfamily d, polypeptide 22 Novel U 0.0005380859532693984 -0.2584086220646219 1.0 15588 -100039008 Mup10 major urinary protein 10 Novel U 0.0005378276170679871 -0.2584112979025038 1.0 15589 -333452 H2al1o H2A histone family member L1O Novel U 0.0005372361801748756 -0.2584174239864002 1.0 15590 -110391 Qdpr quinoid dihydropteridine reductase Novel U 0.0005372300814788793 -0.2584174871564928 1.0 15591 -76457 Ccdc134 coiled-coil domain containing 134 Novel N 0.0005371780584083374 -0.25841802600974734 1.0 15592 -56454 Aldh18a1 aldehyde dehydrogenase 18 family, member A1 Novel U 0.000536996024434786 -0.2584199115116613 1.0 15593 -70059 Degs2 delta 4-desaturase, sphingolipid 2 Novel N 0.000536669144040409 -0.2584232973280407 1.0 15594 -67255 Zfp422 zinc finger protein 422 Novel U 0.0005360128842936514 -0.25843009484492424 1.0 15595 -545432 Cwc22rt3 CWC22 spliceosome-associated protein, retrotransposed 3 Novel U 0.0005359502196531406 -0.25843074392321064 1.0 15596 -241296 Lrrc8a leucine rich repeat containing 8A VRAC subunit A Novel U 0.0005359116833839968 -0.25843114308061965 1.0 15597 -232813 Shisa7 shisa family member 7 Novel U 0.0005358373644946875 -0.258431912873232 1.0 15598 -209361 Taf3 TATA-box binding protein associated factor 3 Novel U 0.0005358292945358737 -0.2584319964616001 1.0 15599 -668923 Zfp442 zinc finger protein 442 Novel U 0.0005357737820413738 -0.25843257145819326 1.0 15600 -22294 Uxt ubiquitously expressed prefoldin like chaperone Novel U 0.0005354220957366654 -0.25843621421337637 1.0 15601 -93732 Acox2 acyl-Coenzyme A oxidase 2, branched chain Novel N 0.0005352876606587957 -0.2584376066874936 1.0 15602 -432720 Akr1c19 aldo-keto reductase family 1, member C19 Novel U 0.0005352853467039095 -0.2584376306553623 1.0 15603 -100043761 Gm14399 predicted gene 14399 Novel U 0.0005352847949655899 -0.25843763637024963 1.0 15604 -195434 Utp14b UTP14B small subunit processome component Novel U 0.0005352125918945429 -0.258438384247286 1.0 15605 -319482 Fcgbpl1 Fc fragment of IgG binding protein like 1 Novel U 0.0005351868399046013 -0.25843865098555124 1.0 15606 -231605 Galnt9 polypeptide N-acetylgalactosaminyltransferase 9 Novel N 0.0005351196983501892 -0.2584393464355647 1.0 15607 -623272 Msantd5f8 Myb/SANT DNA binding domain containing 5 family member 8 Novel U 0.0005350504572049031 -0.25844006363307137 1.0 15608 -12544 Cdc45 cell division cycle 45 Novel U 0.0005350412696284279 -0.2584401587976865 1.0 15609 -22785 Slc30a4 solute carrier family 30 (zinc transporter), member 4 Novel U 0.0005349560727042638 -0.2584410412646263 1.0 15610 -13003 Vcan versican Novel N 0.0005348941717916659 -0.2584416824322441 1.0 15611 -18949 Pnn pinin Novel N 0.0005346296715548292 -0.25844442211700225 1.0 15612 -16656 Hivep3 human immunodeficiency virus type I enhancer binding protein 3 Novel N 0.0005345882462757521 -0.25844485119868116 1.0 15613 -238939 Cdhr18 cadherin related family member 18 Novel U 0.0005342499939775306 -0.2584483548048667 1.0 15614 -56771 Med20 mediator complex subunit 20 Novel N 0.0005339855928023204 -0.2584510934635478 1.0 15615 -17341 Bhlha15 basic helix-loop-helix family, member a15 Novel U 0.0005338442482440426 -0.258452557505836 1.0 15616 -100503733 LOC100503733 PRAME family member 8-like Novel U 0.0005338108662588995 -0.2584529032753407 1.0 15617 -14385 Slc37a4 solute carrier family 37 (glucose-6-phosphate transporter), member 4 Novel U 0.0005336664007731362 -0.2584543996440932 1.0 15618 -71279 Slc29a3 solute carrier family 29 (nucleoside transporters), member 3 Novel U 0.0005335186371080176 -0.258455930175279 1.0 15619 -242297 Fam110b family with sequence similarity 110, member B Novel U 0.0005334396687833327 -0.2584567481265902 1.0 15620 -100502940 Pou2af3 POU class 2 homeobox associating factor 3 Novel U 0.0005332370845470409 -0.2584588464874501 1.0 15621 -74197 Gtf2e1 general transcription factor II E, polypeptide 1 (alpha subunit) Novel N 0.0005330689108703578 -0.25846058842486475 1.0 15622 -66645 Pspc1 paraspeckle protein 1 Novel U 0.0005329714254702624 -0.2584615981754343 1.0 15623 -55993 Msh4 mutS homolog 4 Novel N 0.0005329192114981335 -0.25846213900604115 1.0 15624 -380924 Olfm4 olfactomedin 4 Novel U 0.0005328834244692167 -0.25846250968691026 1.0 15625 -56194 Prpf40a pre-mRNA processing factor 40A Novel U 0.0005324440118126326 -0.2584670611087622 1.0 15626 -68106 Nt5c3b 5'-nucleotidase, cytosolic IIIB Novel U 0.0005324068079059033 -0.25846744646560516 1.0 15627 -17701 Msx1 msh homeobox 1 Novel U 0.0005323716062663475 -0.25846781108303046 1.0 15628 -232984 B3gnt8 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 8 Novel N 0.0005323175319383298 -0.2584683711831425 1.0 15629 -216177 AU041133 expressed sequence AU041133 Novel U 0.0005321089422211955 -0.25847053174857554 1.0 15630 -75710 Rbm12 RNA binding motif protein 12 Novel U 0.0005320918048013905 -0.2584707092574065 1.0 15631 -219189 Vwa8 von Willebrand factor A domain containing 8 Novel N 0.0005319472872810675 -0.2584722061651313 1.0 15632 -22234 Ugcg UDP-glucose ceramide glucosyltransferase Novel N 0.0005318922861761839 -0.2584727758647676 1.0 15633 -235132 Zbtb44 zinc finger and BTB domain containing 44 Novel U 0.0005317694184526585 -0.2584740485246088 1.0 15634 -239337 Adamts12 ADAM metallopeptidase with thrombospondin type 1 motif 12 Novel U 0.0005314734926286314 -0.25847711371456605 1.0 15635 -12351 Car4 carbonic anhydrase 4 Novel N 0.0005314690855436221 -0.2584771593630077 1.0 15636 -233781 Xylt1 xylosyltransferase 1 Novel U 0.0005314317200093852 -0.258477546393983 1.0 15637 -70312 Cactin cactin, spliceosome C complex subunit Novel U 0.0005312558450514366 -0.25847936810101585 1.0 15638 -245446 Slitrk4 SLIT and NTRK-like family, member 4 Novel N 0.0005312192674413539 -0.25847974697069864 1.0 15639 -238831 Ppwd1 peptidylprolyl isomerase domain and WD repeat containing 1 Novel N 0.0005309452128916436 -0.2584825856187155 1.0 15640 -209760 Tmc7 transmembrane channel-like gene family 7 Novel U 0.0005307586341776431 -0.25848451819490165 1.0 15641 -117148 Necab2 N-terminal EF-hand calcium binding protein 2 Novel U 0.0005307429605359847 -0.2584846805419667 1.0 15642 -57276 Vsig2 V-set and immunoglobulin domain containing 2 Novel U 0.0005306218558322038 -0.2584859349405074 1.0 15643 -69256 Zfp397 zinc finger protein 397 Novel U 0.0005306031438993995 -0.25848612875809224 1.0 15644 -29862 Ninj2 ninjurin 2 Novel N 0.0005305936129751455 -0.25848622747909233 1.0 15645 -68854 Asb11 ankyrin repeat and SOCS box-containing 11 Novel U 0.0005304757606482242 -0.25848744818962044 1.0 15646 -110115 Cyp11b1 cytochrome P450, family 11, subfamily b, polypeptide 1 Novel U 0.0005302745892873225 -0.2584895319159635 1.0 15647 -269800 Zfp384 zinc finger protein 384 Novel U 0.0005302455204429363 -0.25848983301009804 1.0 15648 -100042254 Btbd35f4 BTB domain containing 35, family member 4 Novel U 0.0005299816328617948 -0.2584925663489887 1.0 15649 -230801 Pigv phosphatidylinositol glycan anchor biosynthesis, class V Novel U 0.0005299270731438311 -0.2584931314767538 1.0 15650 -232784 Zfp212 Zinc finger protein 212 Novel U 0.0005299009892250806 -0.25849340165312673 1.0 15651 -57813 Tk2 thymidine kinase 2, mitochondrial Novel U 0.0005296114873481161 -0.25849640030405147 1.0 15652 -75571 Spata9 spermatogenesis associated 9 Novel U 0.0005295887899333977 -0.258496635403127 1.0 15653 -17751 Mt3 metallothionein 3 Novel U 0.0005293979799194505 -0.2584986118069789 1.0 15654 -26901 Ss18l2 SS18, nBAF chromatin remodeling complex subunit like 2 Novel U 0.0005291744430513211 -0.2585009271945106 1.0 15655 -18040 Nefm neurofilament, medium polypeptide Novel U 0.0005286052687754784 -0.2585068226829492 1.0 15656 -231889 Bud31 BUD31 homolog Novel U 0.0005285062355732533 -0.2585078484656023 1.0 15657 -18628 Per3 period circadian clock 3 Novel N 0.0005284792762918237 -0.25850812770895315 1.0 15658 -170728 Rtn4ip1 reticulon 4 interacting protein 1 Novel N 0.0005284347854857555 -0.25850858854325987 1.0 15659 -75656 1700020A23Rik RIKEN cDNA 1700020A23 gene Novel U 0.0005281040923860702 -0.25851201385151545 1.0 15660 -100043025 Vmn1r248 vomeronasal 1 receptor 248 Novel U 0.0005277805799747205 -0.2585153647824373 1.0 15661 -435845 Tmprss11c transmembrane protease, serine 11c Novel U 0.000527579784377754 -0.25851744461662984 1.0 15662 -20017 Polr1b polymerase (RNA) I polypeptide B Novel U 0.0005275172924071915 -0.2585180919064066 1.0 15663 -67276 Eri1 exoribonuclease 1 Novel U 0.0005273816933575891 -0.2585194964369048 1.0 15664 -240334 Pcyox1l prenylcysteine oxidase 1 like Novel U 0.0005272807637040768 -0.25852054186293805 1.0 15665 -71832 Csl citrate synthase like Novel U 0.0005272592219377264 -0.25852076499184573 1.0 15666 -269997 Zfp747 zinc finger protein 747 Novel U 0.0005269951320675682 -0.2585235004260394 1.0 15667 -74685 Lrrc74b leucine rich repeat containing 74B Novel U 0.0005264579277786149 -0.2585290647704047 1.0 15668 -235300 Tlcd5 TLC domain containing 5 Novel U 0.0005264525620321564 -0.2585291203486301 1.0 15669 -58865 Tdh L-threonine dehydrogenase Novel U 0.0005263970009288699 -0.2585296958487115 1.0 15670 -104009 Qsox1 quiescin Q6 sulfhydryl oxidase 1 Novel U 0.0005262966094220706 -0.2585307357006387 1.0 15671 -71772 Plbd2 phospholipase B domain containing 2 Novel U 0.0005258514415283297 -0.258535346735048 1.0 15672 -72084 Pigx phosphatidylinositol glycan anchor biosynthesis, class X Novel U 0.0005258073028962278 -0.2585358039215483 1.0 15673 -20666 Sox11 SRY (sex determining region Y)-box 11 Novel U 0.0005256697782072184 -0.2585372283977562 1.0 15674 -52469 Coa3 cytochrome C oxidase assembly factor 3 Novel U 0.0005256295291864798 -0.2585376452957899 1.0 15675 -69938 Scrn1 secernin 1 Novel U 0.0005256066959550864 -0.25853788180165005 1.0 15676 -224691 Zfp472 zinc finger protein 472 Novel U 0.0005255793123974924 -0.2585381654396394 1.0 15677 -210148 Slc30a6 solute carrier family 30 (zinc transporter), member 6 Novel N 0.000525332485444707 -0.25854072206510237 1.0 15678 -56503 Ankrd49 ankyrin repeat domain 49 Novel N 0.0005253000679700258 -0.2585410578442395 1.0 15679 -94214 Spock2 sparc/osteonectin, cwcv and kazal-like domains proteoglycan 2 Novel N 0.0005251939618464328 -0.2585421568879796 1.0 15680 -228993 Slc17a9 solute carrier family 17, member 9 Novel N 0.0005250573368625288 -0.25854357204507156 1.0 15681 -23967 Osr1 odd-skipped related transcription factor 1 Novel U 0.0005249920523608183 -0.25854424825979416 1.0 15682 -15404 Hoxa7 homeobox A7 Novel U 0.0005248953293204546 -0.2585452501138667 1.0 15683 -226646 Ndufs2 NADH:ubiquinone oxidoreductase core subunit S2 Novel N 0.0005248639135438537 -0.258545575517448 1.0 15684 -231832 Tmem184a transmembrane protein 184a Novel U 0.0005248460641840416 -0.2585457604005301 1.0 15685 -67737 Ttc39d tetratricopeptide repeat domain 39D Novel U 0.0005248164617884741 -0.2585460670211703 1.0 15686 -218820 Zfp503 zinc finger protein 503 Novel N 0.0005246843689328322 -0.2585474352346267 1.0 15687 -244551 Nanos3 nanos C2HC-type zinc finger 3 Novel N 0.0005245509766774815 -0.2585488169072226 1.0 15688 -57344 As3mt arsenite methyltransferase Novel N 0.0005242405732024723 -0.25855203205621274 1.0 15689 -27029 Sgsh N-sulfoglucosamine sulfohydrolase (sulfamidase) Novel U 0.0005239180295434024 -0.2585553729528304 1.0 15690 -56517 Slc22a21 solute carrier family 22 (organic cation transporter), member 21 Novel U 0.0005234787586408465 -0.2585599229063988 1.0 15691 -50880 Scly selenocysteine lyase Novel N 0.0005233362818328274 -0.2585613986764926 1.0 15692 -76373 Zfp773 zinc finger protein 773 Novel U 0.0005230109357737726 -0.2585647686002771 1.0 15693 -319625 Galm galactose mutarotase Novel U 0.0005228798315699068 -0.2585661265733109 1.0 15694 -68243 A930018P22Rik RIKEN cDNA A930018P22 gene Novel U 0.0005228450048302783 -0.2585664873075351 1.0 15695 -448850 Znhit3 zinc finger, HIT type 3 Novel N 0.0005227907787941391 -0.2585670489790349 1.0 15696 -239368 Erich5 glutamate rich 5 Novel U 0.0005227055263215798 -0.25856793202134315 1.0 15697 -385668 Lca5l Leber congenital amaurosis 5-like Novel U 0.0005226920354345544 -0.25856807175950747 1.0 15698 -74051 Steap2 six transmembrane epithelial antigen of prostate 2 Novel U 0.0005224977435739066 -0.25857008422821304 1.0 15699 -15354 Hmgb3 high mobility group box 3 Novel U 0.0005224494473487667 -0.2585705844789254 1.0 15700 -240332 Slc6a7 solute carrier family 6 (neurotransmitter transporter, L-proline), member 7 Novel N 0.0005224341864300461 -0.2585707425510198 1.0 15701 -69564 Nmrk2 nicotinamide riboside kinase 2 Novel N 0.0005216222845969309 -0.25857915220351735 1.0 15702 -226432 Ipo9 importin 9 Novel U 0.0005213560257957267 -0.25858191010342746 1.0 15703 -320997 Cyp4f39 cytochrome P450, family 4, subfamily f, polypeptide 39 Novel U 0.0005211876562199148 -0.25858365406995887 1.0 15704 -30926 Glrx3 glutaredoxin 3 Novel N 0.000521164492671981 -0.2585838939972269 1.0 15705 -11518 Add1 adducin 1 Novel U 0.0005210335532727832 -0.2585852502632194 1.0 15706 -66970 Ssbp2 single-stranded DNA binding protein 2 Novel U 0.0005209583990832 -0.25858602870784453 1.0 15707 -75770 Brsk2 BR serine/threonine kinase 2 Novel U 0.0005208501437099095 -0.2585871500134424 1.0 15708 -216011 Lrrc20 leucine rich repeat containing 20 Novel U 0.0005207582581298641 -0.2585881017612599 1.0 15709 -66094 Lsm7 LSM7 homolog, U6 small nuclear RNA and mRNA degradation associated Novel N 0.0005205482935542763 -0.2585902765674316 1.0 15710 -211986 Tmem18 transmembrane protein 18 Novel N 0.0005201025089152692 -0.2585948939900681 1.0 15711 -210762 Ppp1r36 protein phosphatase 1, regulatory subunit 36 Novel U 0.0005199334455241294 -0.25859664514311587 1.0 15712 -276852 Mtnap1 mitochondrial nucleoid associated protein 1 Novel U 0.0005198432718109949 -0.2585975791594722 1.0 15713 -75202 Spaca6 sperm acrosome associated 6 Novel U 0.0005197504806625925 -0.258598540287137 1.0 15714 -232313 Gxylt2 glucoside xylosyltransferase 2 Novel N 0.0005197128791370741 -0.25859892976250226 1.0 15715 -94219 Cnnm2 cyclin M2 Novel N 0.000519587853204721 -0.25860022477699957 1.0 15716 -381580 Ccdc27 coiled-coil domain containing 27 Novel U 0.0005195812054014383 -0.2586002936347274 1.0 15717 -75689 Higd1b HIG1 domain family, member 1B Novel U 0.0005195554405707089 -0.2586005605059971 1.0 15718 -12607 Cebpz CCAAT/enhancer binding protein zeta Novel N 0.0005195508630928921 -0.2586006079193619 1.0 15719 -73075 Ppil6 peptidylprolyl isomerase (cyclophilin)-like 6 Novel U 0.0005195371786012028 -0.25860074966287694 1.0 15720 -65963 Tmem176b transmembrane protein 176B Novel U 0.0005194726304738011 -0.2586014182502587 1.0 15721 -73456 Izumo1 izumo sperm-egg fusion 1 Novel U 0.0005193424111261597 -0.2586027670579808 1.0 15722 -243866 Meiosin meiosis initiator Novel U 0.0005189554062072435 -0.25860677564220885 1.0 15723 -71103 Glt6d1 glycosyltransferase 6 domain containing 1 Novel U 0.0005189134426240921 -0.25860721029962364 1.0 15724 -83428 Ucn3 urocortin 3 Novel N 0.0005188882037510452 -0.258607471723041 1.0 15725 -71200 Dydc2 DPY30 domain containing 2 Novel U 0.0005187622186017457 -0.25860877667307586 1.0 15726 -12709 Ckb creatine kinase, brain Novel U 0.0005185249337132682 -0.2586112344621504 1.0 15727 -223978 Cpped1 calcineurin-like phosphoesterase domain containing 1 Novel U 0.0005183388990320716 -0.2586131614032627 1.0 15728 -116870 Mta1 metastasis associated 1 Novel U 0.0005182214096816696 -0.2586143783540919 1.0 15729 -15422 Hoxc13 homeobox C13 Novel N 0.0005181925070447934 -0.2586146777266546 1.0 15730 -242466 Zfp462 zinc finger protein 462 Novel U 0.0005181222758389405 -0.25861540517917603 1.0 15731 -100043523 Vmn1r242 vomeronasal 1 receptor 242 Novel U 0.0005178954313908014 -0.2586177548265127 1.0 15732 -18768 Pkib protein kinase inhibitor beta, cAMP dependent, testis specific Novel U 0.000517361199749577 -0.25862328838029064 1.0 15733 -69286 Glipr1l1 GLI pathogenesis-related 1 like 1 Novel U 0.0005171229661202582 -0.2586257559963916 1.0 15734 -70788 Klhl30 kelch-like 30 Novel U 0.0005170852661087068 -0.25862614649187193 1.0 15735 -233545 Emsy EMSY, BRCA2-interacting transcriptional repressor Novel U 0.0005168517268328604 -0.258628565484014 1.0 15736 -620709 Lcn6 lipocalin 6 Novel U 0.0005167794995955019 -0.2586293136113642 1.0 15737 -15379 Onecut1 one cut domain, family member 1 Novel U 0.0005165633103504147 -0.258631552892458 1.0 15738 -66260 Tmem54 transmembrane protein 54 Novel U 0.0005163600772081821 -0.2586336579746643 1.0 15739 -98685 Trmt1l tRNA methyltransferase 1 like Novel U 0.000516302760092566 -0.25863425166346365 1.0 15740 -26611 Rcn2 reticulocalbin 2 Novel U 0.0005161933235120764 -0.25863538520396684 1.0 15741 -239931 Cldn17 claudin 17 Novel U 0.0005160209852551587 -0.2586371702779667 1.0 15742 -66132 Prorp protein only RNase P catalytic subunit Novel U 0.0005159914893223082 -0.2586374757958695 1.0 15743 -209195 Clic6 chloride intracellular channel 6 Novel U 0.0005156728270873213 -0.25864077648882405 1.0 15744 -26447 Poli polymerase (DNA directed), iota Novel N 0.0005156657540642877 -0.2586408497509641 1.0 15745 -214601 Slc10a3 solute carrier family 10 (sodium/bile acid cotransporter family), member 3 Novel U 0.0005156550708003551 -0.2586409604078607 1.0 15746 -13619 Phc1 polyhomeotic 1 Novel N 0.0005155772778540351 -0.2586417661846414 1.0 15747 -60534 Fancg Fanconi anemia, complementation group G Novel U 0.0005154921817735568 -0.2586426476070456 1.0 15748 -242546 Cyp2j12 cytochrome P450, family 2, subfamily j, polypeptide 12 Novel U 0.0005154830032699921 -0.2586427426776838 1.0 15749 -16508 Kcnd2 potassium voltage-gated channel, Shal-related family, member 2 Novel N 0.0005154004124631585 -0.25864359815054594 1.0 15750 -667929 Prb1c proline-rich protein BstNI subfamily 1C Novel U 0.000515146905102307 -0.25864622397145604 1.0 15751 -74645 Tent5c terminal nucleotidyltransferase 5C Novel N 0.000515091025975124 -0.25864680276561847 1.0 15752 -320586 A630089N07Rik RIKEN cDNA A630089N07 gene Novel U 0.0005150225918695393 -0.2586475116038345 1.0 15753 -232536 Mrps35 mitochondrial ribosomal protein S35 Novel U 0.0005148631056636665 -0.2586491635567121 1.0 15754 -110749 Chaf1b chromatin assembly factor 1, subunit B Novel N 0.0005147226828982198 -0.25865061805110046 1.0 15755 -69227 Selenot selenoprotein T Novel N 0.0005146053693545601 -0.2586518331809292 1.0 15756 -56505 Ruvbl1 RuvB-like AAA ATPase 1 Novel U 0.0005145506324362309 -0.2586524001441299 1.0 15757 -103161 Apof apolipoprotein F Novel N 0.0005145460764338507 -0.25865244733505277 1.0 15758 -22439 Xk X-linked Kx blood group Novel N 0.0005145252040212337 -0.2586526635308165 1.0 15759 -270906 Prr11 proline rich 11 Novel N 0.0005145066646549173 -0.25865285556096335 1.0 15760 -331493 Gm5127 predicted gene 5127 Novel U 0.0005143774039090029 -0.2586541944395203 1.0 15761 -320632 Snrnp200 small nuclear ribonucleoprotein 200 (U5) Novel N 0.0005142958685694837 -0.2586550389798867 1.0 15762 -243312 Elfn1 leucine rich repeat and fibronectin type III, extracellular 1 Novel U 0.0005142045253983176 -0.2586559851094509 1.0 15763 -231004 Samd11 sterile alpha motif domain containing 11 Novel U 0.0005140562101546733 -0.258657521353869 1.0 15764 -16661 Krt10 keratin 10 Novel U 0.0005140009409520791 -0.2586580938304526 1.0 15765 -406220 Krt77 keratin 77 Novel U 0.000513990617175658 -0.25865820076378937 1.0 15766 -67869 Paip2 polyadenylate-binding protein-interacting protein 2 Novel N 0.0005137821416265298 -0.258660360146674 1.0 15767 -215951 Afg1l AFG1 like ATPase Novel N 0.0005136327443411512 -0.2586619075988448 1.0 15768 -269400 Rtel1 regulator of telomere elongation helicase 1 Novel U 0.0005134903915807583 -0.2586633820840573 1.0 15769 -76142 Ppp1r14c protein phosphatase 1, regulatory inhibitor subunit 14C Novel U 0.0005134707556891697 -0.2586635854719769 1.0 15770 -70120 Yars2 tyrosyl-tRNA synthetase 2 (mitochondrial) Novel N 0.0005134414756333113 -0.25866388875383295 1.0 15771 -71405 Fam83c family with sequence similarity 83, member C Novel U 0.0005133768435258894 -0.2586645582110769 1.0 15772 -233905 Zfp646 zinc finger protein 646 Novel U 0.0005132512938321261 -0.25866585865067776 1.0 15773 -211936 Ccdc73 coiled-coil domain containing 73 Novel U 0.0005130356085458032 -0.2586680927117832 1.0 15774 -192160 Casc3 exon junction complex subunit Novel N 0.0005128318518369346 -0.2586702032170755 1.0 15775 -70103 Znhit1 zinc finger, HIT domain containing 1 Novel N 0.0005127716350360564 -0.25867082694071947 1.0 15776 -56009 Alyref2 Aly/REF export factor 2 Novel U 0.0005127108350570811 -0.258671456704903 1.0 15777 -192185 Nadk NAD kinase Novel U 0.000512708909729736 -0.2586714766473804 1.0 15778 -69942 Rnf113a1 ring finger protein 113A1 Novel U 0.0005122277847911979 -0.2586764601236776 1.0 15779 -64075 Smoc1 SPARC related modular calcium binding 1 Novel U 0.0005121181420231247 -0.258677595799865 1.0 15780 -73845 Ankrd42 ankyrin repeat domain 42 Novel U 0.0005119072781006304 -0.2586797799214424 1.0 15781 -13863 Lcn5 lipocalin 5 Novel U 0.0005113681489615071 -0.25868536420334254 1.0 15782 -16597 Klf12 Kruppel-like transcription factor 12 Novel N 0.000511325092287604 -0.2586858101829554 1.0 15783 -66569 Gdpd1 glycerophosphodiester phosphodiesterase domain containing 1 Novel N 0.0005112376541950751 -0.25868671586384345 1.0 15784 -66950 Pacc1 proton activated chloride channel 1 Novel N 0.0005110733481186182 -0.2586884177407821 1.0 15785 -100041639 Dynlt2a2 dynein light chain Tctex-type 2A2 Novel U 0.0005109500876722393 -0.25868969446843376 1.0 15786 -26922 Mecr mitochondrial trans-2-enoyl-CoA reductase Novel N 0.0005106013013224302 -0.2586933071859793 1.0 15787 -72836 Pot1b protection of telomeres 1B Novel U 0.0005105343711960023 -0.2586940004460287 1.0 15788 -100233207 Spmip2 sperm microtubule inner protein 2 Novel U 0.000510438314828487 -0.2586949953947257 1.0 15789 -64929 Scel sciellin Novel U 0.0005103439383681634 -0.2586959729429993 1.0 15790 -108652 Slc35b3 solute carrier family 35, member B3 Novel N 0.0005103166182717678 -0.25869625592365963 1.0 15791 -71675 Sanbr SANT and BTB domain regulator of CSR Novel U 0.0005100454258100872 -0.25869906492626277 1.0 15792 -20679 Sox6 SRY (sex determining region Y)-box 6 Novel U 0.0005100020586660678 -0.2586995141217149 1.0 15793 -109245 Lrrc39 leucine rich repeat containing 39 Novel U 0.0005098087950985664 -0.2587015159393939 1.0 15794 -194357 Moxd2 monooxygenase, DBH-like 2 Novel U 0.0005097740603848914 -0.25870187572041625 1.0 15795 -170791 Rbm39 RNA binding motif protein 39 Novel N 0.0005097508897267719 -0.2587021157213314 1.0 15796 -30943 Prss30 serine protease 30 Novel U 0.0005094734581194934 -0.2587049893487995 1.0 15797 -11898 Ass1 argininosuccinate synthetase 1 Novel U 0.0005092057982536608 -0.258707761760891 1.0 15798 -22690 Zfp28 zinc finger protein 28 Novel U 0.0005091781895878227 -0.2587080477305441 1.0 15799 -50794 Klf13 Kruppel-like transcription factor 13 Novel N 0.0005091719716240528 -0.2587081121360085 1.0 15800 -12409 Cbr2 carbonyl reductase 2 Novel U 0.0005089069937862298 -0.2587108567677419 1.0 15801 -54003 Nell2 NEL-like 2 Novel N 0.0005089013408155521 -0.2587109153210264 1.0 15802 -12279 C9 complement component 9 Novel U 0.0005087459558537074 -0.25871252479335316 1.0 15803 -100039206 Mup17 major urinary protein 17 Novel U 0.0005086824533990417 -0.2587131825496911 1.0 15804 -70802 Pwwp2a PWWP domain containing 2A Novel N 0.0005085916833434044 -0.2587141227429435 1.0 15805 -434864 Gm15107 predicted gene 15107 Novel U 0.0005085582881180907 -0.25871446864958947 1.0 15806 -216964 Trp53i13 transformation related protein 53 inducible protein 13 Novel N 0.0005084383454983881 -0.2587157110113014 1.0 15807 -78912 Sp2 Sp2 transcription factor Novel N 0.0005083367194008604 -0.2587167636510788 1.0 15808 -71826 1700001F09Rik RIKEN cDNA 1700001F09 gene Novel U 0.0005080105796916307 -0.25872014179546576 1.0 15809 -74589 Kbtbd12 kelch repeat and BTB (POZ) domain containing 12 Novel U 0.0005079459139513957 -0.25872081160107735 1.0 15810 -330463 Zfp78 zinc finger protein 78 Novel U 0.0005077808966371782 -0.25872252084499336 1.0 15811 -74729 Setmar SET domain without mariner transposase fusion Novel U 0.0005076100900540797 -0.25872429005396613 1.0 15812 -75560 Ep400 E1A binding protein p400 Novel N 0.0005075462591242513 -0.258724951212639 1.0 15813 -320184 Lrrc58 leucine rich repeat containing 58 Novel U 0.0005070438032878658 -0.2587301556336749 1.0 15814 -226180 Ina internexin neuronal intermediate filament protein, alpha Novel U 0.0005069985146000149 -0.2587306247324149 1.0 15815 -12405 Cbln2 cerebellin 2 precursor protein Novel U 0.0005068743895509274 -0.25873191041559296 1.0 15816 -105886299 Apoc2l apolipoprotein C2 like Novel U 0.0005068197870219293 -0.25873247598679333 1.0 15817 -107976 Babam2 BRISC and BRCA1 A complex member 2 Novel U 0.0005065987666121385 -0.2587347653089323 1.0 15818 -319173 H2ac10 H2A clustered histone 10 Novel U 0.0005065654433626821 -0.2587351104700547 1.0 15819 -68473 Mob1b MOB kinase activator 1B Novel N 0.0005064814360118957 -0.25873598061543257 1.0 15820 -105148 Iars1 isoleucyl-tRNA synthetase 1 Novel N 0.0005062707484126012 -0.2587381629106601 1.0 15821 -433091 Pnpla1 patatin-like phospholipase domain containing 1 Novel U 0.0005061681263301986 -0.25873922586681614 1.0 15822 -100041449 Cyp3a59 cytochrome P450, family 3, subfamily a, polypeptide 59 Novel U 0.0005060097048602778 -0.2587408667911937 1.0 15823 -269854 Nat14 N-acetyltransferase 14 Novel U 0.000505875937788929 -0.25874225234612136 1.0 15824 -75420 Secisbp2 SECIS binding protein 2 Novel N 0.0005057176774317202 -0.2587438916016988 1.0 15825 -67768 N6amt1 N-6 adenine-specific DNA methyltransferase 1 (putative) Novel N 0.0005055324824922992 -0.2587458098447934 1.0 15826 -23828 Bves blood vessel epicardial substance Novel U 0.0005054197945567367 -0.25874697706272554 1.0 15827 -110637 Grik4 glutamate receptor, ionotropic, kainate 4 Novel N 0.0005053521224369584 -0.2587476780083176 1.0 15828 -15270 H2ax H2A.X variant histone Novel N 0.0005053430002063004 -0.2587477724960829 1.0 15829 -98758 Hnrnpf heterogeneous nuclear ribonucleoprotein F Novel N 0.0005052774508896422 -0.25874845145375 1.0 15830 -66042 Sostdc1 sclerostin domain containing 1 Novel U 0.0005051585713473126 -0.2587496828041415 1.0 15831 -71957 Ints11 integrator complex subunit 11 Novel N 0.0005050656648418879 -0.25875064512667056 1.0 15832 -15193 Hdgfl2 HDGF like 2 Novel N 0.0005050201483848221 -0.25875111658463656 1.0 15833 -75799 4930444P10Rik RIKEN cDNA 4930444P10 gene Novel U 0.0005048794674882342 -0.2587525737527388 1.0 15834 -244421 Lonrf1 LON peptidase N-terminal domain and ring finger 1 Novel U 0.0005047203654818987 -0.2587542217260902 1.0 15835 -76947 Ndufaf6 NADH:ubiquinone oxidoreductase complex assembly factor 6 Novel N 0.0005046712793316781 -0.2587547301588206 1.0 15836 -269116 Nfasc neurofascin Novel U 0.000504494915832082 -0.25875655692615174 1.0 15837 -67065 Polr3d polymerase (RNA) III (DNA directed) polypeptide D Novel U 0.000504489458201919 -0.25875661345610557 1.0 15838 -236790 Ints6l integrator complex subunit 6 like Novel U 0.0005044650969062793 -0.25875686578960494 1.0 15839 -244334 Defb8 defensin beta 8 Novel U 0.0005043923224561486 -0.2587576195849671 1.0 15840 -319415 Hs3st5 heparan sulfate (glucosamine) 3-O-sulfotransferase 5 Novel N 0.0005042769895132432 -0.25875881419979835 1.0 15841 -101095 Zfp282 zinc finger protein 282 Novel N 0.0005042571237809425 -0.2587590199684005 1.0 15842 -240411 Loxhd1 lipoxygenase homology domains 1 Novel N 0.0005038034157826632 -0.2587637194609318 1.0 15843 -278672 Duxbl1 double homeobox B-like 1 Novel U 0.0005037433871623824 -0.2587643412354073 1.0 15844 -72117 Naa50 N(alpha)-acetyltransferase 50, NatE catalytic subunit Novel U 0.0005036536941308017 -0.25876527027287993 1.0 15845 -109959 Amy2a5 amylase 2a5 Novel U 0.0005034302830448218 -0.25876758435756425 1.0 15846 -74106 Dcaf6 DDB1 and CUL4 associated factor 6 Novel N 0.0005034002213651513 -0.25876789573545406 1.0 15847 -58193 Extl2 exostosin-like glycosyltransferase 2 Novel N 0.0005033536085767236 -0.2587683785491843 1.0 15848 -230903 Fbxo44 F-box protein 44 Novel U 0.00050298698078551 -0.25877217606779346 1.0 15849 -74441 Slco6c1 solute carrier organic anion transporter family, member 6c1 Novel U 0.0005027906264944708 -0.25877420989908523 1.0 15850 -71843 R3hcc1 R3H domain and coiled-coil containing 1 Novel U 0.0005027150967161371 -0.2587749922340463 1.0 15851 -68776 Taf11 TATA-box binding protein associated factor 11 Novel U 0.0005026284916753715 -0.2587758892862116 1.0 15852 -12808 Cobl cordon-bleu WH2 repeat Novel U 0.0005026131057515548 -0.25877604865310466 1.0 15853 -242553 Kank4 KN motif and ankyrin repeat domains 4 Novel U 0.000502604517034576 -0.2587761376147528 1.0 15854 -545477 Bpifa6 BPI fold containing family A, member 6 Novel U 0.0005024877742553795 -0.25877734683262205 1.0 15855 -104130 Ndufb11 NADH:ubiquinone oxidoreductase subunit B11 Novel U 0.0005024318369107256 -0.2587779262297991 1.0 15856 -23964 Tenm2 teneurin transmembrane protein 2 Novel U 0.0005024276708353947 -0.2587779693818704 1.0 15857 -76612 Lrrc27 leucine rich repeat containing 27 Novel U 0.0005022646338555394 -0.2587796581135482 1.0 15858 -72190 2510009E07Rik RIKEN cDNA 2510009E07 gene Novel U 0.0005021770161849041 -0.25878056565450036 1.0 15859 -14156 Fen1 flap structure specific endonuclease 1 Novel U 0.0005015178871108365 -0.2587873928917819 1.0 15860 -665290 LOC665290 PRAME family member 8 Novel U 0.0005014411985081258 -0.25878818722980773 1.0 15861 -67200 Ccdc77 coiled-coil domain containing 77 Novel U 0.0005011648207275982 -0.258791049941773 1.0 15862 -69123 Eci3 enoyl-Coenzyme A delta isomerase 3 Novel U 0.0005011510602044681 -0.25879119247281923 1.0 15863 -613123 Ugt1a8 UDP glucuronosyltransferase 1 family, polypeptide A8 Novel U 0.0005010778793743913 -0.2587919504774515 1.0 15864 -102124 Enkd1 enkurin domain containing 1 Novel U 0.0005010505532900167 -0.25879223352013514 1.0 15865 -77634 Snapc3 small nuclear RNA activating complex, polypeptide 3 Novel N 0.0005009705998758595 -0.2587930616749706 1.0 15866 -67732 Iah1 isoamyl acetate-hydrolyzing esterase 1 homolog Novel U 0.0005009700184396881 -0.2587930676974674 1.0 15867 -66496 Ppdpf pancreatic progenitor cell differentiation and proliferation factor Novel U 0.0005009401411733574 -0.2587933771652099 1.0 15868 -30936 Slc46a2 solute carrier family 46, member 2 Novel U 0.0005008954022389218 -0.25879384056962207 1.0 15869 -21843 Tial1 Tia1 cytotoxic granule-associated RNA binding protein-like 1 Novel N 0.0005005985958722678 -0.2587969148802109 1.0 15870 -668209 Cdc5lrt8 cell division cycle 5 like, retrotransposed 8 Novel U 0.00050016546318887 -0.25880140125430706 1.0 15871 -17313 Mgp matrix Gla protein Novel U 0.0005001615384482156 -0.2588014419066417 1.0 15872 -170460 Stard5 StAR related lipid transfer domain containing 5 Novel U 0.000500153213063969 -0.25880152814069807 1.0 15873 -67115 Rpl14 ribosomal protein L14 Novel N 0.0005000819100719852 -0.2588022666947451 1.0 15874 -338348 Ttc16 tetratricopeptide repeat domain 16 Novel U 0.0004999495436051334 -0.25880363774225745 1.0 15875 -225995 D030056L22Rik RIKEN cDNA D030056L22 gene Novel U 0.0004997743099288798 -0.2588054528069156 1.0 15876 -14581 Gfi1 growth factor independent 1 transcription repressor Novel U 0.0004996946375366226 -0.2588062780509355 1.0 15877 -239102 Zfhx2 zinc finger homeobox 2 Novel U 0.0004994435675928687 -0.2588088786251594 1.0 15878 -68550 Tefm transcription elongation factor, mitochondrial Novel N 0.0004994370988371795 -0.2588089456283182 1.0 15879 -232966 Zfp114 zinc finger protein 114 Novel U 0.0004994312189056348 -0.2588090065324558 1.0 15880 -26466 Zfp260 zinc finger protein 260 Novel U 0.0004993070844453072 -0.2588102923131152 1.0 15881 -666803 Aadacl2fm3 AADACL2 family member 3 Novel U 0.00049905481026362 -0.25881290536079604 1.0 15882 -56295 Higd1a HIG1 domain family, member 1A Novel N 0.0004989877554121709 -0.25881359991274305 1.0 15883 -228140 Tnks1bp1 tankyrase 1 binding protein 1 Novel U 0.0004989003968254885 -0.25881450477011214 1.0 15884 -100126766 Esp3 exocrine gland secreted peptide 3 Novel U 0.0004987766364829693 -0.25881578667567157 1.0 15885 -18071 Nhlh1 nescient helix loop helix 1 Novel N 0.0004986731563521081 -0.2588168585194653 1.0 15886 -26914 Macroh2a1 macroH2A.1 histone Novel U 0.0004986440377485985 -0.25881716012900324 1.0 15887 -171240 Vmn1r74 vomeronasal 1 receptor 74 Novel U 0.0004986019542516888 -0.2588175960284808 1.0 15888 -381110 Rmdn2 regulator of microtubule dynamics 2 Novel U 0.0004985565411412836 -0.2588180664159855 1.0 15889 -104721 Ddx1 DEAD box helicase 1 Novel U 0.0004983777710693803 -0.2588199181105135 1.0 15890 -217265 Abca5 ATP-binding cassette, sub-family A member 5 Novel U 0.0004980835942251509 -0.2588229651845955 1.0 15891 -22694 Zfp35 zinc finger protein 35 Novel U 0.0004978916869825903 -0.2588249529535053 1.0 15892 -70451 Dhrs13 dehydrogenase/reductase 13 Novel U 0.0004977072286405005 -0.258826863566949 1.0 15893 -70484 Slc35d2 solute carrier family 35, member D2 Novel N 0.0004974743032845997 -0.25882927620012836 1.0 15894 -20022 Polr2j polymerase (RNA) II (DNA directed) polypeptide J Novel U 0.0004972896527943255 -0.25883118880383654 1.0 15895 -74335 Xrcc3 X-ray repair complementing defective repair in Chinese hamster cells 3 Novel U 0.000496952850773277 -0.25883467738809884 1.0 15896 -78919 Fndc8 fibronectin type III domain containing 8 Novel U 0.0004964507980953684 -0.2588398776332325 1.0 15897 -234915 Cep126 centrosomal protein 126 Novel N 0.000496446100111583 -0.25883992629479413 1.0 15898 -216848 Chd3 chromodomain helicase DNA binding protein 3 Novel N 0.0004962313216423008 -0.2588421509631185 1.0 15899 -23965 Tenm3 teneurin transmembrane protein 3 Novel N 0.0004962179247910325 -0.25884228972726353 1.0 15900 -65103 Arl6ip6 ADP-ribosylation factor-like 6 interacting protein 6 Novel U 0.0004960995340665956 -0.25884351601449535 1.0 15901 -232983 Cxcl17 C-X-C motif chemokine ligand 17 Novel U 0.0004959881002439836 -0.2588446702423668 1.0 15902 -72844 Kctd17 potassium channel tetramerisation domain containing 17 Novel U 0.0004959864700950549 -0.25884468712739583 1.0 15903 -19023 Ppef2 protein phosphatase, EF hand calcium-binding domain 2 Novel U 0.0004959851046565484 -0.25884470127056297 1.0 15904 -16204 Fabp6 fatty acid binding protein 6 Novel N 0.0004959535417570259 -0.2588450281980387 1.0 15905 -16666 Krt16 keratin 16 Novel U 0.0004959503597261728 -0.2588450611574096 1.0 15906 -30947 Adat1 adenosine deaminase, tRNA-specific 1 Novel N 0.0004958947344194358 -0.2588456373225082 1.0 15907 -102991 Ezhip EZH inhibitory protein Novel U 0.0004955433990152955 -0.25884927644307476 1.0 15908 -74855 Fam228a family with sequence similarity 228, member A Novel U 0.0004954222720531309 -0.25885053107216704 1.0 15909 -12870 Cp ceruloplasmin Novel N 0.0004953167702765845 -0.25885162385610033 1.0 15910 -68563 Dpm3 dolichyl-phosphate mannosyltransferase polypeptide 3 Novel U 0.0004952600061278884 -0.2588522118172865 1.0 15911 -67426 Coq8a coenzyme Q8A Novel U 0.0004952314942706669 -0.2588525071421663 1.0 15912 -52793 Fam3b FAM3 metabolism regulating signaling molecule B Novel U 0.000494942402838161 -0.2588555015417208 1.0 15913 -68559 Pdrg1 p53 and DNA damage regulated 1 Novel U 0.0004946053173967554 -0.25885899306164184 1.0 15914 -74340 Ahcyl2 S-adenosylhomocysteine hydrolase-like 2 Novel U 0.0004945780185700883 -0.25885927582199103 1.0 15915 -216188 Aldh1l2 aldehyde dehydrogenase 1 family, member L2 Novel N 0.0004945084385440842 -0.25885999652961306 1.0 15916 -268822 Adck5 aarF domain containing kinase 5 Novel U 0.0004943306812433324 -0.2588618377338908 1.0 15917 -666339 Muc17 mucin 17, cell surface associated Novel U 0.0004941593391644206 -0.2588636124895116 1.0 15918 -30052 Pcsk1n proprotein convertase subtilisin/kexin type 1 inhibitor Novel U 0.0004939287347531273 -0.2588660010824231 1.0 15919 -215615 Rnpep arginyl aminopeptidase (aminopeptidase B) Novel N 0.0004938393481471501 -0.25886692694594937 1.0 15920 -54326 Elovl2 ELOVL fatty acid elongase 2 Novel N 0.0004938293021011218 -0.25886703100256386 1.0 15921 -22156 Tuft1 tuftelin 1 Novel U 0.0004937298312805161 -0.2588680613180538 1.0 15922 -68920 1110065P20Rik RIKEN cDNA 1110065P20 gene Novel U 0.0004936622233251766 -0.2588687615990327 1.0 15923 -27081 Zfp275 zinc finger protein 275 Novel U 0.0004936241708030483 -0.258869155745806 1.0 15924 -433804 Zfp985 zinc finger protein 985 Novel U 0.0004934556163645772 -0.25887090162713877 1.0 15925 -242509 Bnc2 basonuclin zinc finger protein 2 Novel N 0.000493336904485284 -0.258872131240882 1.0 15926 -69864 1810065E05Rik RIKEN cDNA 1810065E05 gene Novel U 0.0004932669830877351 -0.2588728554844193 1.0 15927 -235533 Gk5 glycerol kinase 5 Novel U 0.0004930024647320733 -0.2588755953568517 1.0 15928 -66091 Ndufa3 NADH:ubiquinone oxidoreductase subunit A3 Novel N 0.0004929884156682462 -0.25887574087659293 1.0 15929 -233246 Ano5 anoctamin 5 Novel U 0.0004928634167739891 -0.25887703561103054 1.0 15930 -73723 Sh3bgrl3 SH3 domain binding glutamic acid-rich protein-like 3 Novel N 0.0004926177270844611 -0.2588795804567581 1.0 15931 -56348 Hsd17b12 hydroxysteroid (17-beta) dehydrogenase 12 Novel N 0.0004924070534836933 -0.2588817626069893 1.0 15932 -11287 Pzp PZP, alpha-2-macroglobulin like Novel U 0.0004922236882382181 -0.2588836618981741 1.0 15933 -69955 Fars2 phenylalanine-tRNA synthetase 2, mitochondrial Novel N 0.0004919824006798145 -0.25888616114677215 1.0 15934 -208967 Thnsl1 threonine synthase-like 1 (bacterial) Novel U 0.0004913655492439291 -0.25889255047366716 1.0 15935 -66262 Ing5 inhibitor of growth family, member 5 Novel N 0.0004913369420294192 -0.2588928467862547 1.0 15936 -69349 1700008O03Rik RIKEN cDNA 1700008O03 gene Novel U 0.0004912731735226001 -0.25889350729835203 1.0 15937 -69309 Slc16a13 solute carrier family 16 (monocarboxylic acid transporters), member 13 Novel U 0.0004911773188571546 -0.2588945001578256 1.0 15938 -17433 Mobp myelin-associated oligodendrocytic basic protein Novel N 0.0004910210694467979 -0.2588961185840817 1.0 15939 -109232 Sccpdh saccharopine dehydrogenase (putative) Novel U 0.0004909547161107169 -0.25889680586975555 1.0 15940 -74230 Liat1 ligand of ATE1 Novel U 0.000490849829747008 -0.2588978922792629 1.0 15941 -73336 Prss44 serine protease 44 Novel U 0.000490815548816488 -0.2588982473600143 1.0 15942 -233877 Kctd13 potassium channel tetramerisation domain containing 13 Novel U 0.0004906856078547792 -0.2588995932842241 1.0 15943 -22782 Slc30a1 solute carrier family 30 (zinc transporter), member 1 Novel N 0.0004903339045500394 -0.258903236215493 1.0 15944 -20474 Six4 sine oculis-related homeobox 4 Novel N 0.0004903065493205353 -0.2589035195600609 1.0 15945 -100043247 Alyreffm9 Aly/REF export factor family member 9 Novel U 0.0004900203525307353 -0.2589064839770015 1.0 15946 -68680 Fitm1 fat storage-inducing transmembrane protein 1 Novel U 0.0004899108327849411 -0.2589076183789281 1.0 15947 -17254 Slc3a2 solute carrier family 3 (activators of dibasic and neutral amino acid transport), member 2 Novel U 0.0004896939997176087 -0.25890986432871155 1.0 15948 -384244 Foxl3 forkhead box L3 Novel U 0.0004896444695788131 -0.25891037736026096 1.0 15949 -56280 Mrpl37 mitochondrial ribosomal protein L37 Novel U 0.0004895935992613688 -0.2589109042733368 1.0 15950 -69638 Enho energy homeostasis associated Novel U 0.0004895780796428844 -0.2589110650250349 1.0 15951 -231866 Zfp12 zinc finger protein 12 Novel N 0.0004893077435798116 -0.2589138651570894 1.0 15952 -207474 Kctd12b potassium channel tetramerisation domain containing 12b Novel U 0.0004892257311236523 -0.25891471463941423 1.0 15953 -56839 Lgi1 leucine-rich repeat LGI family, member 1 Novel N 0.0004891960696157128 -0.25891502187233845 1.0 15954 -223970 Rmi2 RecQ mediated genome instability 2 Novel N 0.0004891161004824738 -0.2589158501899917 1.0 15955 -382111 Susd5 sushi domain containing 5 Novel U 0.0004884845150760729 -0.25892239213086893 1.0 15956 -140919 Slc17a6 solute carrier family 17 (sodium-dependent inorganic phosphate cotransporter), member 6 Novel U 0.000488413665106737 -0.25892312599252226 1.0 15957 -59083 Fetub fetuin beta Novel U 0.0004883769279966789 -0.25892350651430057 1.0 15958 -83558 Tex11 testis expressed gene 11 Novel N 0.0004883565407867659 -0.25892371768435063 1.0 15959 -77041 Arsk arylsulfatase K Novel U 0.0004883019097521439 -0.2589242835508113 1.0 15960 -212483 Fam193b family with sequence similarity 193, member B Novel U 0.00048825004589944047 -0.25892482075489276 1.0 15961 -18013 Neurod2 neurogenic differentiation 2 Novel N 0.00048759113512169514 -0.2589316457310681 1.0 15962 -235169 Foxred1 FAD-dependent oxidoreductase domain containing 1 Novel N 0.0004874037465246138 -0.2589335866959966 1.0 15963 -76773 Ntaq1 N-terminal glutamine amidase 1 Novel U 0.00048723550281240405 -0.25893532935883695 1.0 15964 -243881 Cyp2b23 cytochrome P450, family 2, subfamily b, polypeptide 23 Novel U 0.00048711842487210417 -0.25893654204829386 1.0 15965 -71687 Tmem25 transmembrane protein 25 Novel U 0.0004869905439508364 -0.2589378666346725 1.0 15966 -231050 Galnt11 polypeptide N-acetylgalactosaminyltransferase 11 Novel N 0.00048682067276699256 -0.2589396261548105 1.0 15967 -55989 Nop58 NOP58 ribonucleoprotein Novel N 0.0004866943411246672 -0.2589409346938088 1.0 15968 -330788 Zfp866 zinc finger protein 866 Novel U 0.0004866509477444102 -0.25894138416101503 1.0 15969 -171388 Bnipl BCL2/adenovirus E1B 19kD interacting protein like Novel N 0.0004865943182588548 -0.2589419707273648 1.0 15970 -15394 Hoxa1 homeobox A1 Novel U 0.00048637655041554637 -0.2589442263595271 1.0 15971 -77219 Ptgr2 prostaglandin reductase 2 Novel N 0.0004862451865674187 -0.25894558702194764 1.0 15972 -20674 Sox2 SRY (sex determining region Y)-box 2 Novel U 0.0004862070227623354 -0.2589459823213861 1.0 15973 -64697 Keg1 kidney expressed gene 1 Novel U 0.00048605842383119197 -0.25894752150422995 1.0 15974 -228880 Zmynd8 zinc finger, MYND-type containing 8 Novel N 0.000485988544240394 -0.25894824531473426 1.0 15975 -550619 Arid3c AT-rich interaction domain 3C Novel U 0.0004858871169470842 -0.25894929589530413 1.0 15976 -17194 Mbl1 mannose-binding lectin (protein A) 1 Novel U 0.0004857972732105557 -0.25895022649377364 1.0 15977 -56527 Mast1 microtubule associated serine/threonine kinase 1 Novel N 0.00048557904273047685 -0.2589524869179124 1.0 15978 -53893 Nudt5 nudix hydrolase 5 Novel N 0.00048548705437410526 -0.2589534397302837 1.0 15979 -108857 Ankhd1 ankyrin repeat and KH domain containing 1 Novel U 0.0004854304964400316 -0.2589540255555056 1.0 15980 -214855 Arid5a AT-rich interaction domain 5A Novel N 0.00048539285999840465 -0.2589544153925307 1.0 15981 -12012 Baat bile acid-Coenzyme A: amino acid N-acyltransferase Novel N 0.00048514553256204023 -0.2589569772019861 1.0 15982 -209091 Ccnb3 cyclin B3 Novel U 0.00048495605373218 -0.25895893981747703 1.0 15983 -436059 Ces2h carboxylesterase 2H Novel U 0.0004847911784286478 -0.25896064759045107 1.0 15984 -27364 Srr serine racemase Novel N 0.0004846214508257033 -0.25896240562338285 1.0 15985 -105859 Csdc2 cold shock domain containing C2, RNA binding Novel U 0.00048461335513863866 -0.25896248947824335 1.0 15986 -67177 Cdt1 chromatin licensing and DNA replication factor 1 Novel U 0.0004845924485896504 -0.2589627060275905 1.0 15987 -102941 B630019K06Rik F-box and leucine-rich repeat protein 17 pseudogene Novel U 0.00048457341298997633 -0.25896290319770615 1.0 15988 -75607 Wnk2 WNK lysine deficient protein kinase 2 Novel U 0.0004844780991199612 -0.2589638904556385 1.0 15989 -208285 Cyp4f17 cytochrome P450, family 4, subfamily f, polypeptide 17 Novel U 0.00048447227373612123 -0.2589639507947728 1.0 15990 -19049 Ppp1r1b protein phosphatase 1, regulatory inhibitor subunit 1B Novel U 0.00048446017008293887 -0.25896407616401457 1.0 15991 -73649 Cybrd1 cytochrome b reductase 1 Novel U 0.0004844211429025951 -0.25896448040626563 1.0 15992 -56188 Fxyd1 FXYD domain-containing ion transport regulator 1 Novel N 0.00048413596140449276 -0.25896743430684815 1.0 15993 -66291 Smim8 small integral membrane protein 8 Novel U 0.0004837095690067909 -0.2589718508652866 1.0 15994 -54392 Ncapg non-SMC condensin I complex, subunit G Novel U 0.0004836895248455415 -0.25897205848204996 1.0 15995 -21681 Alyref Aly/REF export factor Novel U 0.00048351300736823317 -0.25897388684427725 1.0 15996 -19363 Rad51b RAD51 paralog B Novel U 0.00048340723685097876 -0.25897498241181793 1.0 15997 -70470 Rprd1b regulation of nuclear pre-mRNA domain containing 1B Novel N 0.0004833275179863529 -0.2589758081371971 1.0 15998 -101994 Champ1 chromosome alignment maintaining phosphoprotein 1 Novel U 0.00048298778731859377 -0.25897932705628574 1.0 15999 -20682 Sox9 SRY (sex determining region Y)-box 9 Novel U 0.0004826343071046257 -0.25898298839272194 1.0 16000 -234700 Nrn1l neuritin 1-like Novel U 0.0004825636829768846 -0.25898371991511543 1.0 16001 -209005 Fsip2l fibrous sheath-interacting protein 2-like Novel U 0.0004824229947452065 -0.2589851771591943 1.0 16002 -320158 Zmat4 zinc finger, matrin type 4 Novel U 0.00048225599574568687 -0.2589869069293415 1.0 16003 -67422 Dhdds dehydrodolichyl diphosphate synthase Novel U 0.00048224540342335274 -0.25898701664426804 1.0 16004 -102637511 Strit1 small transmembrane regulator of ion transport 1 Novel U 0.00048219105650832626 -0.25898757956782736 1.0 16005 -268885 Stfa2l1 stefin A2 like 1 Novel U 0.00048217793706522227 -0.25898771545858773 1.0 16006 -66695 Aspn asporin Novel U 0.0004821289373613603 -0.25898822299590957 1.0 16007 -18626 Per1 period circadian clock 1 Novel N 0.00048212816799090956 -0.2589882309650234 1.0 16008 -71046 4933405L10Rik RIKEN cDNA 4933405L10 gene Novel U 0.00048192079444772163 -0.2589903789333667 1.0 16009 -192970 Dhrs11 dehydrogenase/reductase 11 Novel N 0.0004817917671136477 -0.2589917153942515 1.0 16010 -208884 Zdhhc9 zinc finger, DHHC domain containing 9 Novel U 0.000481652074615629 -0.2589931623245538 1.0 16011 -381101 Dnph1 2'-deoxynucleoside 5'-phosphate N-hydrolase 1 Novel N 0.00048164063049499516 -0.25899328086237916 1.0 16012 -93890 Pcdhb19 protocadherin beta 19 Novel U 0.00048161185668366027 -0.25899357890057106 1.0 16013 -268949 Mucl3 mucin like 3 Novel U 0.00048151410591881636 -0.2589945913997799 1.0 16014 -171271 Vmn1r220 vomeronasal 1 receptor 220 Novel U 0.00048148336037622674 -0.25899490986109935 1.0 16015 -67030 Fancl Fanconi anemia, complementation group L Novel U 0.00048140385472872187 -0.25899573337798265 1.0 16016 -22764 Zfx zinc finger protein X-linked Novel N 0.0004811760140229991 -0.2589980933445227 1.0 16017 -101568 Vrk3 vaccinia related kinase 3 Novel N 0.0004811500869319874 -0.258998361896479 1.0 16018 -240843 Brinp2 bone morphogenic protein/retinoic acid inducible neural-specific 2 Novel U 0.00048108640104886635 -0.25899902155276283 1.0 16019 -193452 Zfp184 zinc finger protein 184 (Kruppel-like) Novel U 0.0004809570325028486 -0.25900036154790973 1.0 16020 -64176 Sv2b synaptic vesicle glycoprotein 2b Novel U 0.0004809434721002551 -0.259000502006114 1.0 16021 -67381 Med4 mediator complex subunit 4 Novel N 0.00048080681423122494 -0.25900191750382906 1.0 16022 -654498 Hhla1 HERV-H LTR-associating 1 Novel U 0.0004808027144159222 -0.2590019599695812 1.0 16023 -27389 Dusp13b dual specificity phosphatase 13B Novel N 0.000480659527145113 -0.25900344309862516 1.0 16024 -76998 Fbxw27 F-box and WD-40 domain protein 27 Novel U 0.0004805961671913973 -0.2590040993789429 1.0 16025 -75777 Ttc23l tetratricopeptide repeat domain 23-like Novel U 0.0004805836049210669 -0.25900422949852603 1.0 16026 -56787 Ascl3 achaete-scute family bHLH transcription factor 3 Novel U 0.00048044504198648235 -0.25900566472884745 1.0 16027 -76982 Vxn vexin Novel U 0.00048037128809954856 -0.2590064286691838 1.0 16028 -20810 Srm spermidine synthase Novel N 0.00048034820651307695 -0.2590066677474977 1.0 16029 -432964 Iqank1 IQ motif and ankyrin repeat containing 1 Novel U 0.0004802352891928495 -0.25900783734138866 1.0 16030 -103844 Inca1 inhibitor of CDK, cyclin A1 interacting protein 1 Novel U 0.0004802249209078756 -0.25900794473574357 1.0 16031 -100043057 Tmem207 transmembrane protein 207 Novel U 0.0004801924673763915 -0.2590082808883558 1.0 16032 -209357 Gtf2h3 general transcription factor IIH, polypeptide 3 Novel N 0.0004801776261535428 -0.25900843461325423 1.0 16033 -240261 Ccdc112 coiled-coil domain containing 112 Novel U 0.0004799757901852576 -0.2590105252235787 1.0 16034 -72083 Mzt2 mitotic spindle organizing protein 2 Novel U 0.0004796936054138401 -0.25901344808416477 1.0 16035 -74120 Zfp263 zinc finger protein 263 Novel N 0.00047951537861177623 -0.25901529415152164 1.0 16036 -74147 Ehhadh enoyl-Coenzyme A, hydratase/3-hydroxyacyl Coenzyme A dehydrogenase Novel N 0.0004791685104094074 -0.2590188870009591 1.0 16037 -74408 4933414I15Rik RIKEN cDNA 4933414I15 gene Novel U 0.00047913745094086183 -0.25901920871391326 1.0 16038 -100040299 Krtap10-20 keratin associated protein 10-20 Novel U 0.0004788284107671115 -0.2590224097418738 1.0 16039 -56421 Pfkp phosphofructokinase, platelet Novel U 0.0004787778080910013 -0.2590229338827295 1.0 16040 -280621 Selenov selenoprotein V Novel U 0.0004786712183960053 -0.25902403793528633 1.0 16041 -71971 Zswim1 zinc finger SWIM-type containing 1 Novel U 0.000478361496037991 -0.25902724602928906 1.0 16042 -58802 Kcnmb4 potassium large conductance calcium-activated channel, subfamily M, beta member 4 Novel U 0.0004780495991299638 -0.25903047664720935 1.0 16043 -231396 Ugt2b36 UDP glucuronosyltransferase 2 family, polypeptide B36 Novel U 0.00047796250019877375 -0.2590313788150754 1.0 16044 -214105 Sox30 SRY (sex determining region Y)-box 30 Novel N 0.00047783897127311723 -0.25903265832362654 1.0 16045 -241624 Exd1 exonuclease 3'-5' domain containing 1 Novel U 0.0004777665962858309 -0.25903340798136565 1.0 16046 -13085 Cyp2a12 cytochrome P450, family 2, subfamily a, polypeptide 12 Novel U 0.00047773602281471196 -0.25903372466037444 1.0 16047 -100861909 Mup22 major urinary protein 22 Novel U 0.0004776983339471305 -0.25903411504042595 1.0 16048 -107272 Psat1 phosphoserine aminotransferase 1 Novel U 0.0004775938150870284 -0.259035197643343 1.0 16049 -213765 Nutm1 NUT midline carcinoma, family member 1 Novel U 0.00047734155500898213 -0.2590378105449388 1.0 16050 -76044 Ncapg2 non-SMC condensin II complex, subunit G2 Novel U 0.00047731271497847456 -0.2590381092690267 1.0 16051 -381569 Pramel26 PRAME like 26 Novel U 0.0004772873845342134 -0.2590383716409357 1.0 16052 -69902 Mrto4 mRNA turnover 4, ribosome maturation factor Novel U 0.0004772850269714938 -0.2590383960604928 1.0 16053 -72181 Nsun4 NOL1/NOP2/Sun domain family, member 4 Novel U 0.0004772230014927795 -0.25903903851836235 1.0 16054 -17222 Anapc1 anaphase promoting complex subunit 1 Novel U 0.0004768782641961325 -0.2590426092959484 1.0 16055 -21400 Tcea2 transcription elongation factor A (SII), 2 Novel U 0.00047626647976044365 -0.25904894613902196 1.0 16056 -73910 Arhgap18 Rho GTPase activating protein 18 Novel U 0.0004761440667961029 -0.25905021408848244 1.0 16057 -229517 Slc25a44 solute carrier family 25, member 44 Novel N 0.00047595554733189895 -0.25905216676689546 1.0 16058 -223920 Soat2 sterol O-acyltransferase 2 Novel U 0.0004756913774414415 -0.25905490302993667 1.0 16059 -665780 Zscan4b zinc finger and SCAN domain containing 4B Novel U 0.00047547767063127726 -0.25905711659805114 1.0 16060 -14545 Gdap1 ganglioside-induced differentiation-associated-protein 1 Novel U 0.00047512274951321893 -0.2590607928593246 1.0 16061 -56036 Ccnl2 cyclin L2 Novel N 0.00047511904542099463 -0.2590608312261901 1.0 16062 -72277 Fam186a family with sequence similarity 186, member A Novel U 0.00047511106185624133 -0.2590609139196913 1.0 16063 -194268 Airim AFG2 interacting ribosome maturation factor Novel N 0.00047505434615833673 -0.25906150137902584 1.0 16064 -69684 Aarsd1 alanyl-tRNA synthetase domain containing 1 Novel U 0.00047497713018454567 -0.259062301179544 1.0 16065 -51795 Srpx sushi-repeat-containing protein Novel U 0.0004749630040245934 -0.2590624474978444 1.0 16066 -69556 Bod1 biorientation of chromosomes in cell division 1 Novel U 0.0004749207497638177 -0.2590628851660885 1.0 16067 -11831 Aqp6 aquaporin 6 Novel N 0.000474816059446608 -0.25906396954495264 1.0 16068 -76898 B3gat1 beta-1,3-glucuronyltransferase 1 Novel U 0.00047481517793010816 -0.2590639786756716 1.0 16069 -381536 Prame62 PRAME like 62 Novel U 0.0004748081858213648 -0.2590640510997041 1.0 16070 -15484 Hsd11b2 hydroxysteroid 11-beta dehydrogenase 2 Novel N 0.00047471800229566133 -0.25906498521769866 1.0 16071 -16600 Klf4 Kruppel-like transcription factor 4 (gut) Novel U 0.0004746498878670056 -0.2590656907447116 1.0 16072 -72997 Kantr Kdm5c adjacent non-coding transcript Novel U 0.00047454375638901025 -0.25906679005107175 1.0 16073 -403175 Tigd4 tigger transposable element derived 4 Novel U 0.00047399921674625236 -0.25907243037479066 1.0 16074 -20887 Sult1a1 sulfotransferase family 1A, phenol-preferring, member 1 Novel U 0.00047391146881920355 -0.2590733392649345 1.0 16075 -17220 Mcm7 minichromosome maintenance complex component 7 Novel U 0.0004737518910951365 -0.2590749921657545 1.0 16076 -98386 Lbr lamin B receptor Novel U 0.00047373542388780076 -0.2590751627325468 1.0 16077 -118446 Gjc3 gap junction protein, gamma 3 Novel U 0.00047363425587174915 -0.25907621062753133 1.0 16078 -320415 Gchfr GTP cyclohydrolase I feedback regulator Novel N 0.0004733914089355575 -0.2590787260281132 1.0 16079 -408065 Zfp456 zinc finger protein 456 Novel U 0.00047336916885024955 -0.25907895639018574 1.0 16080 -72461 Prcp prolylcarboxypeptidase (angiotensinase C) Novel U 0.0004733423877566563 -0.25907923378787284 1.0 16081 -20512 Slc1a3 solute carrier family 1 (glial high affinity glutamate transporter), member 3 Novel U 0.00047311704839403233 -0.2590815678455832 1.0 16082 -73376 Cimip4 ciliary microtubule inner protein 4 Novel U 0.00047302920748855344 -0.25908247769879456 1.0 16083 -20204 Prrx2 paired related homeobox 2 Novel U 0.0004728490302202472 -0.2590843439690167 1.0 16084 -109857 Cbr3 carbonyl reductase 3 Novel N 0.00047282099663798605 -0.2590846343399402 1.0 16085 -68837 Foxk2 forkhead box K2 Novel N 0.00047273879261511026 -0.25908548580650687 1.0 16086 -78893 Cnot10 CCR4-NOT transcription complex, subunit 10 Novel U 0.0004725619714201566 -0.25908731731463147 1.0 16087 -64934 Pes1 pescadillo ribosomal biogenesis factor 1 Novel N 0.00047252644911267947 -0.2590876852535246 1.0 16088 -432731 Zscan26 zinc finger and SCAN domain containing 26 Novel U 0.00047252244533932565 -0.2590877267244774 1.0 16089 -68011 Snrpg small nuclear ribonucleoprotein polypeptide G Novel N 0.0004724643003575704 -0.259088328988287 1.0 16090 -18993 Pou3f3 POU domain, class 3, transcription factor 3 Novel U 0.00047231454121305646 -0.2590898801885828 1.0 16091 -546118 Ubtfl1 upstream binding transcription factor, RNA polymerase I-like 1 Novel U 0.00047220755830590936 -0.2590909883140181 1.0 16092 -75953 Samd7 sterile alpha motif domain containing 7 Novel U 0.0004720973706579502 -0.2590921296340535 1.0 16093 -17252 Rdh11 retinol dehydrogenase 11 Novel N 0.0004720096051684147 -0.25909303870610895 1.0 16094 -69511 Klk12 kallikrein related-peptidase 12 Novel N 0.00047195776443029164 -0.25909357567077024 1.0 16095 -68187 Fam135a family with sequence similarity 135, member A Novel U 0.0004717990956760428 -0.25909521915651085 1.0 16096 -20454 St3gal5 ST3 beta-galactoside alpha-2,3-sialyltransferase 5 Novel N 0.0004715620890337614 -0.2590976740635204 1.0 16097 -100169 Phactr4 phosphatase and actin regulator 4 Novel U 0.0004715455817079416 -0.2590978450458586 1.0 16098 -69519 Rwdd2a RWD domain containing 2A Novel U 0.0004715382218693968 -0.2590979212788243 1.0 16099 -66211 Rpl3l ribosomal protein L3-like Novel U 0.0004713078857422164 -0.25910030709285775 1.0 16100 -380975 Higd1c HIG1 domain family, member 1C Novel U 0.0004710231657976515 -0.2591032562126839 1.0 16101 -98970 Fibcd1 fibrinogen C domain containing 1 Novel U 0.00047090101631330175 -0.2591045214330273 1.0 16102 -111175 Pecr peroxisomal trans-2-enoyl-CoA reductase Novel N 0.0004705020443651445 -0.25910865397135086 1.0 16103 -240216 E230025N22Rik Riken cDNA E230025N22 gene Novel U 0.0004703395901502438 -0.25911033666676836 1.0 16104 -237175 Adgrg2 adhesion G protein-coupled receptor G2 Novel N 0.00047033906800148873 -0.25911034207516803 1.0 16105 -110809 Srsf1 serine and arginine-rich splicing factor 1 Novel N 0.00046994354168157466 -0.2591144389237875 1.0 16106 -67946 Spata6 spermatogenesis associated 6 Novel U 0.00046993386843381484 -0.2591145391189698 1.0 16107 -244416 Ppp1r3b protein phosphatase 1, regulatory subunit 3B Novel U 0.00046993224671869745 -0.2591145559166417 1.0 16108 -278240 Spin2c spindlin family, member 2C Novel U 0.000469884746401559 -0.2591150479233651 1.0 16109 -14873 Gsto1 glutathione S-transferase omega 1 Novel U 0.000469819006267897 -0.2591157288575085 1.0 16110 -21815 Tgif1 TGFB-induced factor homeobox 1 Novel U 0.0004696697927999065 -0.25911727440570476 1.0 16111 -13237 Defa3 defensin, alpha, 3 Novel U 0.0004695777069734097 -0.2591182282276685 1.0 16112 -12647 Chat choline acetyltransferase Novel U 0.00046940345100729576 -0.25912003316523713 1.0 16113 -70073 Zdhhc25 zinc finger, DHHC domain containing 25 Novel U 0.0004693809487260532 -0.2591202662431265 1.0 16114 -21750 Terf2 telomeric repeat binding factor 2 Novel U 0.0004690947334700813 -0.25912323085133904 1.0 16115 -79235 Lrat lecithin-retinol acyltransferase (phosphatidylcholine-retinol-O-acyltransferase) Novel U 0.00046894496073169575 -0.25912478219243973 1.0 16116 -56079 Astn2 astrotactin 2 Novel U 0.00046841156129388134 -0.25913030712628204 1.0 16117 -66557 Bpifb2 BPI fold containing family B, member 2 Novel U 0.00046841084740852247 -0.25913031452068314 1.0 16118 -68183 Bcas2 BCAS2 pre-mRNA processing factor Novel N 0.00046835513972543863 -0.25913089153903324 1.0 16119 -276920 Ccdc42 coiled-coil domain containing 42 Novel U 0.00046814632779056315 -0.25913305440619033 1.0 16120 -30949 Lcmt1 leucine carboxyl methyltransferase 1 Novel U 0.0004681150682143049 -0.2591333781918536 1.0 16121 -66400 Alkbh7 alkB homolog 7 Novel N 0.000468088898554078 -0.259133649256334 1.0 16122 -56843 Trpm5 transient receptor potential cation channel, subfamily M, member 5 Novel U 0.000467984240296944 -0.2591347333031209 1.0 16123 -69071 Tmem97 transmembrane protein 97 Novel U 0.00046798058767181947 -0.2591347711368919 1.0 16124 -18563 Pcx pyruvate carboxylase Novel U 0.0004678270902394418 -0.2591363610582505 1.0 16125 -67724 Pop1 processing of precursor 1, ribonuclease P/MRP family, (S. cerevisiae) Novel N 0.0004677022876645489 -0.25913765375921854 1.0 16126 -56050 Cyp39a1 cytochrome P450, family 39, subfamily a, polypeptide 1 Novel N 0.0004675698958475639 -0.25913902506930675 1.0 16127 -71721 Fam13c family with sequence similarity 13, member C Novel U 0.0004674925526654176 -0.2591398261874449 1.0 16128 -11572 Crisp3 cysteine-rich secretory protein 3 Novel U 0.000467274963534147 -0.25914207996851374 1.0 16129 -66945 Sdha succinate dehydrogenase complex, subunit A, flavoprotein (Fp) Novel U 0.0004672236268228786 -0.2591426117124815 1.0 16130 -50876 Tmod2 tropomodulin 2 Novel N 0.00046711927503753956 -0.2591436925848436 1.0 16131 -237178 Ppef1 protein phosphatase with EF hand calcium-binding domain 1 Novel N 0.00046661512714310646 -0.2591489145321612 1.0 16132 -74221 Spmip9 sperm microtubule inner protein 9 Novel U 0.00046633357167576536 -0.2591518308744363 1.0 16133 -16814 Lbx1 ladybird homeobox 1 Novel N 0.000465868655286379 -0.25915664646311426 1.0 16134 -230648 Efcab14 EF-hand calcium binding domain 14 Novel U 0.0004658532139465182 -0.2591568064040049 1.0 16135 -632687 Marchf10 membrane associated ring-CH-type finger 10 Novel U 0.0004656726645056142 -0.25915867652917857 1.0 16136 -67148 Ramac RNA guanine-7 methyltransferase activating subunit Novel U 0.0004655038564205977 -0.25916042503777387 1.0 16137 -75886 Gstt4 glutathione S-transferase, theta 4 Novel U 0.0004654026899059138 -0.2591614729172073 1.0 16138 -71838 Phf7 PHD finger protein 7 Novel U 0.00046540167793963737 -0.25916148339912076 1.0 16139 -108000 Cenpf centromere protein F Novel U 0.00046536735615724113 -0.25916183890301453 1.0 16140 -66605 1700017N19Rik RIKEN cDNA 1700017N19 gene Novel U 0.000465326705352057 -0.2591622599627183 1.0 16141 -671232 Topaz1 testis and ovary specific PAZ domain containing 1 Novel U 0.00046511093095541966 -0.2591644949468255 1.0 16142 -70893 Glb1l3 galactosidase, beta 1 like 3 Novel U 0.00046507728686689877 -0.25916484343118834 1.0 16143 -16680 Krt84 keratin 84 Novel U 0.0004649351557297451 -0.2591663156208347 1.0 16144 -66058 Tmem176a transmembrane protein 176A Novel U 0.00046467621893223727 -0.2591689976796712 1.0 16145 -66650 Nepn nephrocan Novel U 0.000464558482122087 -0.2591702171936804 1.0 16146 -67320 Iqcf4 IQ motif containing F4 Novel U 0.00046436733565811034 -0.25917219708247063 1.0 16147 -74410 Ttll11 tubulin tyrosine ligase-like family, member 11 Novel U 0.00046418529903521254 -0.25917408261182645 1.0 16148 -171247 Vmn1r199 vomeronasal 1 receptor 199 Novel U 0.0004641522403941987 -0.25917442503214333 1.0 16149 -77739 Adamtsl1 ADAMTS-like 1 Novel U 0.00046414276378014456 -0.2591745231906002 1.0 16150 -75718 Vwa5b1 von Willebrand factor A domain containing 5B1 Novel U 0.0004640979549127203 -0.25917498731937594 1.0 16151 -50877 Neu3 neuraminidase 3 Novel U 0.000464077047326233 -0.25917520387946946 1.0 16152 -68731 Rbfa ribosome binding factor A Novel U 0.00046401963058384743 -0.2591757986001996 1.0 16153 -93879 Pcdhb8 protocadherin beta 8 Novel U 0.00046395148945746955 -0.2591765044037467 1.0 16154 -109731 Maob monoamine oxidase B Novel N 0.00046380322718917133 -0.2591780400994478 1.0 16155 -170834 Oosp1 oocyte secreted protein 1 Novel U 0.00046345465694643657 -0.25918165057856346 1.0 16156 -242608 Podn podocan Novel N 0.00046343716830456617 -0.25918183172534104 1.0 16157 -69371 Smco2 single-pass membrane protein with coiled-coil domains 2 Novel U 0.00046343523783572924 -0.2591818517210738 1.0 16158 -69192 Dhx16 DEAH-box helicase 16 Novel N 0.00046325392166164994 -0.25918372978804444 1.0 16159 -214579 Aldh5a1 aldhehyde dehydrogenase family 5, subfamily A1 Novel N 0.0004631525134578594 -0.2591847801708857 1.0 16160 -70885 Ints10 integrator complex subunit 10 Novel N 0.00046285188399381155 -0.25918789408099163 1.0 16161 -71141 4933407L21Rik RIKEN cDNA 4933407L21 gene Novel U 0.0004624835750705574 -0.2591917090127112 1.0 16162 -71685 Galnt14 polypeptide N-acetylgalactosaminyltransferase 14 Novel N 0.000462431664818947 -0.25919224669739094 1.0 16163 -102635992 Scgb1b10 secretoglobin, family 1B, member 10 Novel U 0.00046236783199415184 -0.25919290787569177 1.0 16164 -98170 Tmem132a transmembrane protein 132A Novel U 0.00046234798394706857 -0.25919311346111096 1.0 16165 -70101 Cyp4f16 cytochrome P450, family 4, subfamily f, polypeptide 16 Novel U 0.00046228738804819446 -0.25919374111143956 1.0 16166 -252876 Gin1 gypsy retrotransposon integrase 1 Novel U 0.00046218491687067783 -0.2591948025045277 1.0 16167 -69634 Clybl citrate lyase beta like Novel U 0.00046210097031052817 -0.25919567202023813 1.0 16168 -239126 C1qtnf9 C1q and tumor necrosis factor related protein 9 Novel U 0.00046200604929214225 -0.25919665520902624 1.0 16169 -53886 Cdkl2 cyclin dependent kinase like 2 Novel N 0.00046196305501913586 -0.25919710054229267 1.0 16170 -70611 Fbxo33 F-box protein 33 Novel U 0.00046194686284198766 -0.2591972682603313 1.0 16171 -72306 Zfp777 zinc finger protein 777 Novel U 0.00046192568515877826 -0.25919748761807776 1.0 16172 -216454 Rdh16f2 RDH16 family member 2 Novel U 0.0004617157849093042 -0.2591996617579617 1.0 16173 -329702 Dcst2 DC-STAMP domain containing 2 Novel U 0.00046166601270485237 -0.2592001772968192 1.0 16174 -11498 Adam4 a disintegrin and metallopeptidase domain 4 Novel U 0.00046160314569040873 -0.2592008284712882 1.0 16175 -12180 Smyd1 SET and MYND domain containing 1 Novel N 0.0004614816857440276 -0.25920208654942006 1.0 16176 -382089 Ripply2 ripply transcriptional repressor 2 Novel U 0.00046143438347757054 -0.25920257650474104 1.0 16177 -11957 Atp5pf ATP synthase peripheral stalk subunit F6 Novel N 0.0004613878334755574 -0.25920305866813165 1.0 16178 -56177 Olfm1 olfactomedin 1 Novel N 0.00046102619203952254 -0.25920680453823775 1.0 16179 -218973 Wdhd1 WD repeat and HMG-box DNA binding protein 1 Novel U 0.00046095108579555217 -0.2592075824862438 1.0 16180 -434764 Rhox2f reproductive homeobox 2F Novel U 0.0004608586495082592 -0.2592085399382689 1.0 16181 -77117 Zfp934 zinc finger protein 934 Novel U 0.0004603980687046272 -0.2592133106190922 1.0 16182 -230025 Prdm13 PR domain containing 13 Novel N 0.000460393021617805 -0.2592133628966516 1.0 16183 -74351 Ddx23 DEAD box helicase 23 Novel N 0.0004602488514670229 -0.25921485620633405 1.0 16184 -18420 Otp orthopedia homeobox Novel N 0.0004601998694822823 -0.25921536356012176 1.0 16185 -140491 Ppp1r3a protein phosphatase 1, regulatory subunit 3A Novel U 0.000460155856891187 -0.2592158194410935 1.0 16186 -16977 Lrrc23 leucine rich repeat containing 23 Novel U 0.00046001088065530607 -0.2592173211001789 1.0 16187 -432769 Zfp708 zinc finger protein 708 Novel U 0.0004597802233389483 -0.2592197102410793 1.0 16188 -58887 Repin1 replication initiator 1 Novel U 0.00045976367200128195 -0.2592198816792907 1.0 16189 -66714 4921524J17Rik RIKEN cDNA 4921524J17 gene Novel U 0.000459722683800319 -0.25922030623372894 1.0 16190 -66748 Erich2 glutamate rich 2 Novel U 0.0004596527297095804 -0.2592210308159012 1.0 16191 -215418 Csrnp1 cysteine-serine-rich nuclear protein 1 Novel U 0.0004590755544386755 -0.2592270091783836 1.0 16192 -70575 Gfod2 glucose-fructose oxidoreductase domain containing 2 Novel U 0.0004589540053261892 -0.25922826818009503 1.0 16193 -102371 Myzap myocardial zonula adherens protein Novel U 0.0004586382336517705 -0.2592315389327182 1.0 16194 -13390 Dlx1 distal-less homeobox 1 Novel U 0.0004585006413802601 -0.2592329641089434 1.0 16195 -68981 Snrpa1 small nuclear ribonucleoprotein polypeptide A' Novel N 0.00045803668183301197 -0.25923776978668195 1.0 16196 -15497 Hsd3b6 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 6 Novel U 0.0004579730044813245 -0.25923842935459745 1.0 16197 -66055 Sf3b6 splicing factor 3B, subunit 6 Novel N 0.00045761027896136237 -0.25924218645360925 1.0 16198 -380993 Zfat zinc finger and AT hook domain containing Novel U 0.00045757169123051904 -0.2592425861440568 1.0 16199 -69666 Psmg4 proteasome (prosome, macropain) assembly chaperone 4 Novel U 0.00045756905902970924 -0.2592426134083063 1.0 16200 -27402 Pdhx pyruvate dehydrogenase complex, component X Novel N 0.00045750834407241636 -0.25924324229183804 1.0 16201 -208659 Fam20a FAM20A, golgi associated secretory pathway pseudokinase Novel U 0.0004573974618196744 -0.25924439080656686 1.0 16202 -67388 Rab5if RAB5 interacting factor Novel U 0.00045731391870833824 -0.25924525614336774 1.0 16203 -228536 Bahd1 bromo adjacent homology domain containing 1 Novel N 0.0004572000371495137 -0.25924643572481043 1.0 16204 -56805 Zbtb33 zinc finger and BTB domain containing 33 Novel N 0.0004571026125291436 -0.25924744484582557 1.0 16205 -631624 Gm7072 predicted gene 7072 Novel U 0.00045707194238413663 -0.2592477625261793 1.0 16206 -50798 Gne glucosamine (UDP-N-acetyl)-2-epimerase/N-acetylmannosamine kinase Novel U 0.00045706076229299665 -0.25924787832919577 1.0 16207 -26878 B3galt2 UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 2 Novel N 0.0004569451300892023 -0.25924907604376146 1.0 16208 -21909 Tlx2 T cell leukemia, homeobox 2 Novel N 0.00045686331308300007 -0.2592499235016222 1.0 16209 -13226 Defa31 defensin, alpha, 31 Novel U 0.00045676082773169006 -0.259250985041522 1.0 16210 -171200 Vmn1r19 vomeronasal 1 receptor 19 Novel U 0.0004566657253000718 -0.2592519701093824 1.0 16211 -233529 Kctd14 potassium channel tetramerisation domain containing 14 Novel U 0.0004565506347239276 -0.2592531622137867 1.0 16212 -19127 Prop1 paired like homeodomain factor 1 Novel U 0.0004562285064145316 -0.259256498808226 1.0 16213 -11304 Abca4 ATP-binding cassette, sub-family A member 4 Novel N 0.0004562055165791983 -0.2592567369361847 1.0 16214 -66487 Uqcc5 ubiquinol-cytochrome c reductase complex assembly factor 5 Novel U 0.000456102384040376 -0.2592578051796315 1.0 16215 -73233 Zfp942 zinc finger protein 942 Novel U 0.0004560667329080609 -0.259258174452888 1.0 16216 -69038 Tmem258 transmembrane protein 258 Novel N 0.0004560312529691527 -0.2592585419529289 1.0 16217 -75062 Sf3a3 splicing factor 3a, subunit 3 Novel N 0.00045602139725744507 -0.25925864403806675 1.0 16218 -319266 A130010J15Rik RIKEN cDNA A130010J15 gene Novel U 0.0004559888219327006 -0.2592589814522096 1.0 16219 -18022 Nfe2 nuclear factor, erythroid derived 2 Novel U 0.0004558039378756316 -0.25926089647519496 1.0 16220 -16658 Mafb MAF bZIP transcription factor B Novel U 0.00045557542181196584 -0.25926326343707035 1.0 16221 -20446 St6galnac2 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 2 Novel U 0.00045556517006739865 -0.2592633696243036 1.0 16222 -84704 Snurf SNRPN upstream reading frame Novel U 0.0004554880697308059 -0.2592641682270555 1.0 16223 -242484 D630039A03Rik RIKEN cDNA D630039A03 gene Novel U 0.00045539925972633624 -0.2592650881181623 1.0 16224 -320078 Olfml2b olfactomedin-like 2B Novel U 0.00045514834629101485 -0.259267687071277 1.0 16225 -20496 Slc12a2 solute carrier family 12, member 2 Novel U 0.0004550301673970953 -0.25926891116437534 1.0 16226 -97114 H3c15 H3 clustered histone 15 Novel U 0.00045494525752171484 -0.25926979065807326 1.0 16227 -63856 Taf8 TATA-box binding protein associated factor 8 Novel N 0.0004549288013111502 -0.25926996111096134 1.0 16228 -23986 Eci2 enoyl-Coenzyme A delta isomerase 2 Novel U 0.00045477113272263965 -0.25927159423701807 1.0 16229 -227327 B3gnt7 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 7 Novel N 0.000454650360120556 -0.25927284519566024 1.0 16230 -20534 Slc4a1ap solute carrier family 4 (anion exchanger), member 1, adaptor protein Novel U 0.000454526505346155 -0.25927412807934197 1.0 16231 -17454 Mov10 Mov10 RISC complex RNA helicase Novel N 0.00045428530032983833 -0.2592766264729718 1.0 16232 -22307 Vmn2r10 vomeronasal 2, receptor 10 Novel U 0.00045418707372146485 -0.2592776439009523 1.0 16233 -73344 1700034J05Rik RIKEN cDNA 1700034J05 gene Novel U 0.0004541369581240346 -0.259278162996663 1.0 16234 -74521 Ppp4r4 protein phosphatase 4, regulatory subunit 4 Novel U 0.0004538511627735618 -0.25928112325550823 1.0 16235 -64454 Slc5a4b solute carrier family 5 (neutral amino acid transporters, system A), member 4b Novel U 0.0004538506625859725 -0.2592811284364348 1.0 16236 -14842 Gsx1 GS homeobox 1 Novel N 0.0004533569688786069 -0.2592862420996264 1.0 16237 -67980 Gnpda2 glucosamine-6-phosphate deaminase 2 Novel N 0.00045318512610014345 -0.2592880220414767 1.0 16238 -12842 Col1a1 collagen, type I, alpha 1 Novel U 0.0004529224873579375 -0.2592907424449347 1.0 16239 -100504446 Prr22 proline rich 22 Novel U 0.00045290725793566984 -0.25929090019078993 1.0 16240 -78239 Spint4 serine protease inhibitor, Kunitz type 4 Novel U 0.00045262125608145953 -0.259293862588594 1.0 16241 -233040 Fbxo27 F-box protein 27 Novel U 0.00045252771126980156 -0.259294831522678 1.0 16242 -68250 Ciao2a cytosolic iron-sulfur assembly component 2A Novel N 0.0004520270918339839 -0.25930001692233723 1.0 16243 -24084 Tekt2 tektin 2 Novel U 0.00045198306205909813 -0.25930047298129816 1.0 16244 -75763 Dcaf17 DDB1 and CUL4 associated factor 17 Novel U 0.0004519687963834065 -0.25930062074469795 1.0 16245 -193736 Zbtb12 zinc finger and BTB domain containing 12 Novel U 0.0004516740924921931 -0.2593036732779153 1.0 16246 -17710 COX3 cytochrome c oxidase subunit III Novel N 0.0004516632268682494 -0.25930378582369096 1.0 16247 -100040843 Cyp4a32 cytochrome P450, family 4, subfamily a, polypeptide 32 Novel U 0.000451635675136652 -0.2593040712036211 1.0 16248 -13172 Dbx1 developing brain homeobox 1 Novel U 0.0004514081784440116 -0.25930642760688494 1.0 16249 -75564 Rsph9 radial spoke head 9 homolog (Chlamydomonas) Novel N 0.00045124854567808205 -0.25930808107782677 1.0 16250 -67928 Abca14 ATP-binding cassette, sub-family A member 14 Novel U 0.0004512250253262728 -0.25930832470085763 1.0 16251 -15110 Hand1 heart and neural crest derivatives expressed 1 Novel U 0.0004512189076796536 -0.25930838806724016 1.0 16252 -70999 Naa40 N(alpha)-acetyltransferase 40, NatD catalytic subunit Novel U 0.000451022784248773 -0.25931041950729006 1.0 16253 -16858 Lgals7 lectin, galactose binding, soluble 7 Novel U 0.0004509454251532413 -0.25931122079025853 1.0 16254 -227933 Ccdc148 coiled-coil domain containing 148 Novel U 0.0004508758288337752 -0.25931194166664767 1.0 16255 -229512 Smg5 SMG5 nonsense mediated mRNA decay factor Novel N 0.00045084668655491635 -0.25931224352141413 1.0 16256 -100417514 Adh6b alcohol dehydrogenase 6B (class V) Novel N 0.00045072682418042885 -0.2593134850519488 1.0 16257 -11520 Plin2 perilipin 2 Novel U 0.00045059573504016185 -0.25931484286895434 1.0 16258 -242408 Fam221b family with sequence similarity 221, member B Novel U 0.0004503389455150069 -0.2593175026864144 1.0 16259 -93747 Echs1 enoyl Coenzyme A hydratase, short chain, 1, mitochondrial Novel N 0.00045015209520514194 -0.2593194380757816 1.0 16260 -30877 Gnl3 guanine nucleotide binding protein nucleolar 3 Novel U 0.0004497594371914979 -0.259323505214579 1.0 16261 -105355 Slc17a3 solute carrier family 17 (sodium phosphate), member 3 Novel N 0.000449725747215692 -0.25932385417424086 1.0 16262 -13218 Defa29 defensin, alpha, 29 Novel U 0.00044968044860025757 -0.25932432337581046 1.0 16263 -20681 Sox8 SRY (sex determining region Y)-box 8 Novel N 0.0004496005106878819 -0.259325151370079 1.0 16264 -16882 Lig3 ligase III, DNA, ATP-dependent Novel N 0.0004494215905153816 -0.2593270046193441 1.0 16265 -319159 H4c11 H4 clustered histone 11 Novel U 0.0004493093449304957 -0.25932816725542246 1.0 16266 -73435 Tex35 testis expressed 35 Novel U 0.000448752805678178 -0.25933393187070275 1.0 16267 -381058 Unc93a unc-93 homolog A Novel U 0.00044849982373950954 -0.25933655224930713 1.0 16268 -69976 Galk2 galactokinase 2 Novel N 0.00044844479435017466 -0.25933712224191285 1.0 16269 -68592 Syf2 SYF2 homolog, RNA splicing factor (S. cerevisiae) Novel N 0.0004482786545439258 -0.25933884311256444 1.0 16270 -223722 Mcat malonyl CoA:ACP acyltransferase (mitochondrial) Novel N 0.00044768783918466116 -0.25934496275863367 1.0 16271 -70358 Steap1 six transmembrane epithelial antigen of the prostate 1 Novel U 0.00044768386182859394 -0.25934500395595705 1.0 16272 -76703 Cpb1 carboxypeptidase B1 Novel N 0.00044767597466860995 -0.2593450856509009 1.0 16273 -235431 Coro2b coronin, actin binding protein, 2B Novel U 0.00044748282636253084 -0.2593470862747059 1.0 16274 -666794 Rbm24 RNA binding motif protein 24 Novel N 0.00044735929769210863 -0.2593483657806133 1.0 16275 -68231 H2al2a H2A histone family member L2A Novel U 0.0004471556576220184 -0.25935047507776504 1.0 16276 -107328 Trpt1 tRNA phosphotransferase 1 Novel U 0.0004469278299093929 -0.25935283490972294 1.0 16277 -245945 Rbm47 RNA binding motif protein 47 Novel U 0.0004467530617901926 -0.25935464515215645 1.0 16278 -381724 Pramel37 PRAME like 37 Novel U 0.0004466632228088918 -0.25935557570137147 1.0 16279 -404240 Mrgprb8 MAS-related GPR, member B8 Novel U 0.00044651164736611446 -0.259357145714825 1.0 16280 -170763 Zfp87 zinc finger protein 87 Novel U 0.00044645134215872404 -0.2593577703541807 1.0 16281 -67365 Pudp pseudouridine 5'-phosphatase Novel U 0.0004464447988060497 -0.2593578381300126 1.0 16282 -108147 Atic 5-aminoimidazole-4-carboxamide ribonucleotide formyltransferase/IMP cyclohydrolase Novel N 0.0004460024931837515 -0.25936241951710837 1.0 16283 -245841 Polr2h polymerase (RNA) II (DNA directed) polypeptide H Novel N 0.00044595560359317983 -0.2593629051979461 1.0 16284 -66928 Dmac1 distal membrane arm assembly complex 1 Novel N 0.0004458210598117112 -0.25936429879801165 1.0 16285 -103511 Calhm5 calcium homeostasis modulator family member 5 Novel U 0.00044558287456740117 -0.2593667659129423 1.0 16286 -66995 Zcchc18 zinc finger, CCHC domain containing 18 Novel U 0.000445473462913926 -0.25936789919525227 1.0 16287 -268490 Lsm12 LSM12 homolog Novel U 0.0004448441246051689 -0.259374417860766 1.0 16288 -19695 Reg3g regenerating islet-derived 3 gamma Novel U 0.00044443093556788325 -0.2593786976592313 1.0 16289 -231290 Slc10a4 solute carrier family 10 (sodium/bile acid cotransporter family), member 4 Novel U 0.0004444089512854319 -0.25937892537170626 1.0 16290 -72465 Zfp131 zinc finger protein 131 Novel U 0.00044440320384480535 -0.25937898490350736 1.0 16291 -433864 Nom1 nucleolar protein with MIF4G domain 1 Novel U 0.0004442470294619167 -0.25938060255263135 1.0 16292 -51786 Cpsf2 cleavage and polyadenylation specific factor 2 Novel N 0.0004442186317413334 -0.25938089669528763 1.0 16293 -434130 Ccdc8 coiled-coil domain containing 8 Novel U 0.00044396948328623943 -0.2593834773667952 1.0 16294 -18472 Pafah1b1 platelet-activating factor acetylhydrolase, isoform 1b, subunit 1 Novel U 0.00044347706788668625 -0.25938857778931645 1.0 16295 -226439 Ascl5 achaete-scute family bHLH transcription factor 5 Novel U 0.00044324557591063774 -0.2593909755755945 1.0 16296 -360220 Speer4d spermatogenesis associated glutamate (E)-rich protein 4D Novel U 0.0004431331309194282 -0.259392140277117 1.0 16297 -100087 Kti12 KTI12 homolog, chromatin associated Novel U 0.0004430128098689855 -0.25939338655860217 1.0 16298 -207921 Fam228b family with sequence similarity 228, member B Novel U 0.00044260701220723444 -0.2593975897974427 1.0 16299 -100126776 Esp24 exocrine gland secreted peptide 24 Novel U 0.00044257475675510855 -0.2593979238983555 1.0 16300 -100764 Rita1 RBPJ interacting and tubulin associated 1 Novel U 0.0004425401998648987 -0.25939828183748825 1.0 16301 -50783 Lsm4 LSM4 homolog, U6 small nuclear RNA and mRNA degradation associated Novel N 0.00044248713411604084 -0.25939883149077053 1.0 16302 -15218 Foxn1 forkhead box N1 Novel N 0.00044239332623953584 -0.2593998031496716 1.0 16303 -69528 1700030J22Rik RIKEN cDNA 1700030J22 gene Novel U 0.0004423286145157896 -0.25940047343157885 1.0 16304 -18392 Orc1 origin recognition complex, subunit 1 Novel U 0.00044201745156493606 -0.25940369644719485 1.0 16305 -22115 Tssk2 testis-specific serine kinase 2 Novel U 0.0004420083107034603 -0.25940379112793754 1.0 16306 -18423 Otx1 orthodenticle homeobox 1 Novel N 0.0004419678278518116 -0.2594042104479841 1.0 16307 -242574 C130073F10Rik RIKEN cDNA C130073F10 gene Novel U 0.00044163913088347194 -0.25940761508037685 1.0 16308 -67392 4833420G17Rik RIKEN cDNA 4833420G17 gene Novel U 0.00044154636740648736 -0.259408575921422 1.0 16309 -338369 Tmem220 transmembrane protein 220 Novel U 0.00044130935097228436 -0.259411030929856 1.0 16310 -105734 Tigd5 tigger transposable element derived 5 Novel U 0.00044126708939098676 -0.2594114686739258 1.0 16311 -14048 Eya1 EYA transcriptional coactivator and phosphatase 1 Novel U 0.00044087772754539296 -0.2594155016711229 1.0 16312 -104601 Mycbpap MYCBP associated protein Novel U 0.00044081518033666 -0.2594161495330548 1.0 16313 -114249 Npnt nephronectin Novel U 0.0004407570170943423 -0.2594167519860067 1.0 16314 -243846 Ccdc9 coiled-coil domain containing 9 Novel U 0.00044073317400782227 -0.2594169989519131 1.0 16315 -70065 Ankrd60 ankyrin repeat domain 60 Novel U 0.000440619217907208 -0.25941817930545713 1.0 16316 -230863 Sh2d5 SH2 domain containing 5 Novel U 0.00044058121177501994 -0.25941857297172494 1.0 16317 -667692 Alyreffm13 Aly/REF export factor family member 13 Novel U 0.00044044948514931605 -0.2594199373917837 1.0 16318 -58911 Sumf1 sulfatase modifying factor 1 Novel U 0.0004403753726751033 -0.25942070504635534 1.0 16319 -15496 Hsd3b5 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 5 Novel U 0.0004401918785985386 -0.25942260567196834 1.0 16320 -319172 H2ac4 H2A clustered histone 4 Novel U 0.0004401608979439226 -0.2594229265685704 1.0 16321 -67305 Gpx7 glutathione peroxidase 7 Novel N 0.00044008580209961773 -0.25942370440885704 1.0 16322 -72640 Mex3a mex3 RNA binding family member A Novel U 0.0004400170522045867 -0.2594244165180098 1.0 16323 -216622 Fem1al fem-1 homolog A like Novel U 0.00043997851829629764 -0.2594248156509651 1.0 16324 -100039120 Gm14525 predicted gene 14525 Novel U 0.0004399759354295847 -0.2594248424042136 1.0 16325 -27384 Akr1c13 aldo-keto reductase family 1, member C13 Novel U 0.0004398628633186603 -0.25942601360142153 1.0 16326 -74279 Magea14 MAGE family member A14 Novel U 0.00043982589699919717 -0.2594263964973433 1.0 16327 -18971 Pold1 polymerase (DNA directed), delta 1, catalytic subunit Novel U 0.0004397885651727063 -0.2594267831791749 1.0 16328 -208890 Slc26a7 solute carrier family 26, member 7 Novel N 0.00043965337764518826 -0.25942818344714086 1.0 16329 -625713 Samt1d spermatogenesis associated multipass transmembrane protein 1d Novel U 0.00043946324354052435 -0.25943015284994664 1.0 16330 -269959 Adamtsl3 ADAMTS-like 3 Novel U 0.00043930668017770234 -0.259431774528112 1.0 16331 -233904 Setd1a SET domain containing 1A Novel U 0.00043918806697702817 -0.2594330031197454 1.0 16332 -78428 Pym1 PYM homolog 1, exon junction complex associated factor Novel U 0.00043903346117867264 -0.25943460452152234 1.0 16333 -52592 Brms1l breast cancer metastasis-suppressor 1-like Novel U 0.00043875890581684116 -0.25943744835693466 1.0 16334 -17706 ATP8 ATP synthase F0 subunit 8 Novel U 0.0004386517288632893 -0.2594385584922963 1.0 16335 -668359 Tdpoz9 TD and POZ domain containing 9 Novel U 0.00043817744376602094 -0.25944347112174254 1.0 16336 -242409 Tmem8b transmembrane protein 8B Novel N 0.0004379307573051769 -0.2594460262919946 1.0 16337 -23844 Clca1 chloride channel accessory 1 Novel N 0.00043780847620942664 -0.2594472928755646 1.0 16338 -13123 Cyp7b1 cytochrome P450, family 7, subfamily b, polypeptide 1 Novel N 0.0004377513770052874 -0.259447884307244 1.0 16339 -79464 Lias lipoic acid synthetase Novel N 0.0004376842452653137 -0.25944857965559986 1.0 16340 -74164 Nfx1 nuclear transcription factor, X-box binding 1 Novel U 0.0004376626313506946 -0.25944880353181693 1.0 16341 -436022 Dnaaf3 dynein, axonemal assembly factor 3 Novel N 0.00043737173788095603 -0.2594518165968139 1.0 16342 -17191 Mbd2 methyl-CpG binding domain protein 2 Novel N 0.0004371667500202246 -0.25945393985433673 1.0 16343 -223665 C030006K11Rik RIKEN cDNA C030006K11 gene Novel U 0.0004371036930637244 -0.25945459299621926 1.0 16344 -233913 Rusf1 RUS family member 1 Novel U 0.00043707805507298017 -0.2594548585536846 1.0 16345 -20382 Srsf2 serine and arginine-rich splicing factor 2 Novel U 0.00043679613432103193 -0.25945777867956565 1.0 16346 -378937 Lrrc24 leucine rich repeat containing 24 Novel U 0.00043677856964357317 -0.25945796061391735 1.0 16347 -21667 Cripto cripto, EGF-CFC family member Novel U 0.0004367108532778347 -0.25945866201780765 1.0 16348 -76282 Gpt glutamic pyruvic transaminase, soluble Novel U 0.0004365637537465761 -0.25946018566991674 1.0 16349 -15416 Hoxb8 homeobox B8 Novel U 0.00043641775088691334 -0.25946169796273755 1.0 16350 -72692 Hnrnpll heterogeneous nuclear ribonucleoprotein L-like Novel N 0.00043641418675103026 -0.2594617348799399 1.0 16351 -23985 Slc26a4 solute carrier family 26, member 4 Novel U 0.000436238622973444 -0.25946355336377674 1.0 16352 -12257 Tspo translocator protein Novel U 0.0004362136362573786 -0.2594638121753604 1.0 16353 -19131 Prh1 proline rich protein HaeIII subfamily 1 Novel U 0.0004361133866531086 -0.2594648505574659 1.0 16354 -68312 Gstm7 glutathione S-transferase, mu 7 Novel U 0.0004360880545282212 -0.2594651129467827 1.0 16355 -56353 Rybp RING1 and YY1 binding protein Novel U 0.0004360245769356845 -0.2594657704455995 1.0 16356 -16970 Irag2 inositol 1,4,5-triphosphate receptor associated 2 Novel U 0.00043587096320653107 -0.2594673615715563 1.0 16357 -382275 Gm5168 predicted gene 5168 Novel U 0.0004357372595151241 -0.2594687464699966 1.0 16358 -66689 Klhl28 kelch-like 28 Novel U 0.0004353807161668238 -0.25947243953427757 1.0 16359 -19708 Dpf2 double PHD fingers 2 Novel U 0.0004348692740795319 -0.259477737034605 1.0 16360 -68611 Mrpl28 mitochondrial ribosomal protein L28 Novel U 0.00043479708469454424 -0.2594784847698816 1.0 16361 -20444 St3gal2 ST3 beta-galactoside alpha-2,3-sialyltransferase 2 Novel U 0.00043463231735236136 -0.2594801914245955 1.0 16362 -237010 Klhl4 kelch-like 4 Novel U 0.00043460023434733835 -0.25948052373930686 1.0 16363 -14870 Gstp1 glutathione S-transferase, pi 1 Novel U 0.0004344565169439802 -0.2594820123594464 1.0 16364 -208213 Tmem132c transmembrane protein 132C Novel U 0.00043410293893165417 -0.2594856747088748 1.0 16365 -231931 Gimap6 GTPase, IMAP family member 6 Novel U 0.0004340614483557666 -0.2594861044668959 1.0 16366 -11906 Zfhx3 zinc finger homeobox 3 Novel U 0.00043398147443405346 -0.25948693283414803 1.0 16367 -67509 Saysd1 SAYSVFN motif domain containing 1 Novel U 0.0004338994161126514 -0.25948778279154355 1.0 16368 -93711 Pcdhga3 protocadherin gamma subfamily A, 3 Novel U 0.00043375509748401475 -0.2594892776391548 1.0 16369 -59095 Fxyd6 FXYD domain-containing ion transport regulator 6 Novel U 0.00043358587965269303 -0.25949103039188887 1.0 16370 -18440 P2rx6 purinergic receptor P2X, ligand-gated ion channel, 6 Novel N 0.00043357853841552506 -0.25949110643218215 1.0 16371 -50927 Nasp nuclear autoantigenic sperm protein (histone-binding) Novel N 0.000433541967395947 -0.2594914852336007 1.0 16372 -100163 Pafah2 platelet-activating factor acetylhydrolase 2 Novel U 0.0004333826897975985 -0.25949313502572846 1.0 16373 -13984 Esx1 extraembryonic, spermatogenesis, homeobox 1 Novel U 0.0004329861224745046 -0.25949724265702456 1.0 16374 -67082 Ccdc198 coiled-coil domain containing 198 Novel U 0.00043291828089856555 -0.259497945357838 1.0 16375 -382000 Defa39 defensin, alpha, 39 Novel U 0.00043260665023204 -0.25950117321803756 1.0 16376 -20465 Sim2 single-minded family bHLH transcription factor 2 Novel U 0.0004322893161369547 -0.2595044601541626 1.0 16377 -76469 Cmya5 cardiomyopathy associated 5 Novel U 0.0004322041624513713 -0.2595053421732387 1.0 16378 -67619 Nob1 NIN1/RPN12 binding protein 1 homolog Novel N 0.0004321094806453532 -0.2595063228842729 1.0 16379 -100041581 Zkscan16 zinc finger with KRAB and SCAN domains 16 Novel U 0.00043209106965752883 -0.2595065135846796 1.0 16380 -226409 Zranb3 zinc finger, RAN-binding domain containing 3 Novel U 0.0004320862879589301 -0.25950656311335646 1.0 16381 -70122 Mllt3 myeloid/lymphoid or mixed-lineage leukemia; translocated to, 3 Novel U 0.00043201961292156963 -0.2595072537312016 1.0 16382 -57317 Srsf4 serine and arginine-rich splicing factor 4 Novel N 0.000431991481660879 -0.2595075451138751 1.0 16383 -13796 Emx1 empty spiracles homeobox 1 Novel U 0.00043195498043020904 -0.25950792319242244 1.0 16384 -13801 Enam enamelin Novel N 0.0004319515158479142 -0.259507959078452 1.0 16385 -223915 Krt73 keratin 73 Novel U 0.0004318879524682503 -0.25950861746584897 1.0 16386 -244431 Sgcz sarcoglycan zeta Novel N 0.00043171454043077466 -0.25951041366203254 1.0 16387 -626848 Zfp971 zinc finger protein 971 Novel U 0.00043168418419811715 -0.2595107280908925 1.0 16388 -106894 Hmgxb3 HMG box domain containing 3 Novel U 0.0004316457981373703 -0.25951112569244783 1.0 16389 -72504 Taf4b TATA-box binding protein associated factor 4b Novel N 0.00043146440593153253 -0.259513004546953 1.0 16390 -98711 Rdh10 retinol dehydrogenase 10 (all-trans) Novel N 0.0004314405708050348 -0.2595132514304097 1.0 16391 -12903 Crabp1 cellular retinoic acid binding protein I Novel N 0.00043140156438514293 -0.25951365545762467 1.0 16392 -108672 Zdhhc15 zinc finger, DHHC domain containing 15 Novel U 0.00043126935799162795 -0.25951502484710265 1.0 16393 -76263 Gstk1 glutathione S-transferase kappa 1 Novel U 0.0004312413543916776 -0.2595153149074704 1.0 16394 -17330 Minpp1 multiple inositol polyphosphate histidine phosphatase 1 Novel U 0.00043103925979729807 -0.25951740819663544 1.0 16395 -52504 Cenpo centromere protein O Novel U 0.0004307869145969634 -0.2595200219799251 1.0 16396 -66809 Krt20 keratin 20 Novel N 0.00043061793358340487 -0.2595217722797086 1.0 16397 -217039 Ggnbp2 gametogenetin binding protein 2 Novel U 0.0004305721735828012 -0.2595222462602906 1.0 16398 -11739 Slc25a4 solute carrier family 25 (mitochondrial carrier, adenine nucleotide translocator), member 4 Novel U 0.00043042679198272113 -0.25952375211812506 1.0 16399 -228839 Tgif2 TGFB-induced factor homeobox 2 Novel N 0.0004304133533065771 -0.25952389131549075 1.0 16400 -67944 Tex13a testis expressed 13A Novel U 0.00043025815813627544 -0.25952549882196296 1.0 16401 -14843 Gsx2 GS homeobox 2 Novel N 0.000430171668286126 -0.25952639468098765 1.0 16402 -102334 Ankrd10 ankyrin repeat domain 10 Novel U 0.0004299891089451445 -0.2595282856246402 1.0 16403 -574404 Pwwp4a PWWP domain containing 4A Novel U 0.0004298041513831854 -0.2595302014089868 1.0 16404 -56086 Set SET nuclear oncogene Novel U 0.00042978570524882686 -0.2595303924734401 1.0 16405 -215335 Slc36a1 solute carrier family 36 (proton/amino acid symporter), member 1 Novel U 0.0004297785894716597 -0.25953046617842607 1.0 16406 -227102 Ormdl1 ORM1-like 1 (S. cerevisiae) Novel N 0.0004297375156360398 -0.2595308916198652 1.0 16407 -97476 Fam90a1a family with sequence similarity 90, member A1A Novel U 0.00042967516562366476 -0.25953153743924373 1.0 16408 -216961 Coro6 coronin 6 Novel U 0.00042966572973884745 -0.2595316351758285 1.0 16409 -12561 Cdh4 cadherin 4 Novel N 0.0004296457853396643 -0.2595318417592596 1.0 16410 -77397 Lyz3 lysozyme 3 Novel N 0.00042960534305962634 -0.25953226065906676 1.0 16411 -68145 Etaa1 Ewing tumor-associated antigen 1 Novel U 0.0004294432718682793 -0.2595339393871389 1.0 16412 -213121 Ankrd35 ankyrin repeat domain 35 Novel U 0.0004293158559471105 -0.2595352591570618 1.0 16413 -26968 Islr immunoglobulin superfamily containing leucine-rich repeat Novel N 0.0004292660018595243 -0.2595357755440622 1.0 16414 -380840 Lyrm4 LYR motif containing 4 Novel N 0.00042914046462297025 -0.2595370758546316 1.0 16415 -68833 Pdcl3 phosducin-like 3 Novel U 0.0004290665420912392 -0.2595378415417852 1.0 16416 -213484 Nudt18 nudix hydrolase 18 Novel N 0.0004289504455115043 -0.2595390440663416 1.0 16417 -432479 Tektip1 tektin bundle interacting protein 1 Novel U 0.000428802901533099 -0.25954057232201966 1.0 16418 -433719 Msantd5f6 Myb/SANT DNA binding domain containing 5 family member 6 Novel U 0.0004286497702254856 -0.25954215845107004 1.0 16419 -73490 Mipol1 mirror-image polydactyly 1 Novel U 0.00042859974147560124 -0.2595426766472167 1.0 16420 -66242 Mrps16 mitochondrial ribosomal protein S16 Novel U 0.0004285511387386667 -0.25954318007276816 1.0 16421 -213760 Prepl prolyl endopeptidase-like Novel U 0.0004284948159955924 -0.2595437634618894 1.0 16422 -216169 Abhd17a abhydrolase domain containing 17A Novel U 0.00042838555003543103 -0.25954489523511287 1.0 16423 -20630 Snrpc U1 small nuclear ribonucleoprotein C Novel N 0.00042834236740977227 -0.25954534251932987 1.0 16424 -27528 Nrep neuronal regeneration related protein Novel U 0.00042825428216480724 -0.25954625490340155 1.0 16425 -94284 Ugt1a6a UDP glucuronosyltransferase 1 family, polypeptide A6A Novel U 0.00042712206567311494 -0.2595579823646029 1.0 16426 -13361 Dhfr dihydrofolate reductase Novel U 0.000427102115663461 -0.2595581890061471 1.0 16427 -30841 Kdm2b lysine (K)-specific demethylase 2B Novel N 0.000426679074856796 -0.25956257084891576 1.0 16428 -16911 Lmo4 LIM domain only 4 Novel U 0.00042662317555028617 -0.259563149852095 1.0 16429 -227210 Ccnyl1 cyclin Y-like 1 Novel U 0.0004265448182475907 -0.2595639614744605 1.0 16430 -13411 Dnah11 dynein, axonemal, heavy chain 11 Novel U 0.0004265382613286022 -0.25956402939081186 1.0 16431 -20855 Stc1 stanniocalcin 1 Novel U 0.000426467075980289 -0.25956476672630957 1.0 16432 -78118 4930451I11Rik RIKEN cDNA 4930451I11 gene Novel U 0.00042631900935318157 -0.2595663003955657 1.0 16433 -100737 Dcun1d4 defective in cullin neddylation 1 domain containing 4 Novel N 0.0004259495483206147 -0.25957012726079565 1.0 16434 -233895 Prr14 proline rich 14 Novel U 0.00042581970902314437 -0.2595714721319706 1.0 16435 -20322 Sord sorbitol dehydrogenase Novel U 0.0004257833030452929 -0.2595718492238924 1.0 16436 -320502 Lmod3 leiomodin 3 (fetal) Novel U 0.00042541580213912753 -0.25957565578619757 1.0 16437 -320309 Grep1 glycine rich extracellular protein 1 Novel U 0.0004254140911423732 -0.2595756735086457 1.0 16438 -68385 Tlcd1 TLC domain containing 1 Novel U 0.0004253278965888358 -0.2595765663089977 1.0 16439 -319179 H2bc6 H2B clustered histone 6 Novel U 0.0004252447177301858 -0.2595774278728813 1.0 16440 -171243 Vmn1r83 vomeronasal 1 receptor 83 Novel U 0.0004251064545205861 -0.25957885999866115 1.0 16441 -383678 Obp2b odorant binding protein 2B Novel U 0.0004250954007501907 -0.2595789744932515 1.0 16442 -30046 Zfp292 zinc finger protein 292 Novel U 0.0004250953615299176 -0.25957897489949383 1.0 16443 -100041375 Cyp3a41b cytochrome P450, family 3, subfamily a, polypeptide 41B Novel U 0.00042484146237867996 -0.25958160477855585 1.0 16444 -67477 Abhd15 abhydrolase domain containing 15 Novel U 0.00042473022222773004 -0.2595827570003826 1.0 16445 -67797 Snrnp48 small nuclear ribonucleoprotein 48 (U11/U12) Novel N 0.0004246898028592296 -0.2595831756628728 1.0 16446 -239827 Pigz phosphatidylinositol glycan anchor biosynthesis, class Z Novel U 0.0004246093938110865 -0.25958400853715013 1.0 16447 -54378 Cacng6 calcium channel, voltage-dependent, gamma subunit 6 Novel U 0.000424576013307281 -0.2595843542913112 1.0 16448 -78797 Ndor1 NADPH dependent diflavin oxidoreductase 1 Novel N 0.0004244748048557462 -0.2595854026051252 1.0 16449 -22335 Vdac3 voltage-dependent anion channel 3 Novel N 0.0004244272936148521 -0.25958589472499655 1.0 16450 -52389 Adgra1 adhesion G protein-coupled receptor A1 Novel U 0.0004240044457269955 -0.25959027456951855 1.0 16451 -16392 Isl1 ISL1 transcription factor, LIM/homeodomain Novel U 0.000423979298493373 -0.25959053504373775 1.0 16452 -227695 Spout1 SPOUT domain containing methyltransferase 1 Novel U 0.0004238964221410345 -0.2595913934742709 1.0 16453 -64580 Ndst4 N-deacetylase/N-sulfotransferase (heparin glucosaminyl) 4 Novel U 0.0004237487035915749 -0.25959292353815017 1.0 16454 -24113 Vax2 ventral anterior homeobox 2 Novel N 0.00042366618016640605 -0.2595937783130753 1.0 16455 -432987 Gm5478 predicted pseudogene 5478 Novel U 0.0004234959412317549 -0.2595955416423641 1.0 16456 -93710 Pcdhga2 protocadherin gamma subfamily A, 2 Novel U 0.0004233333293680574 -0.25959722597070267 1.0 16457 -229543 Ints3 integrator complex subunit 3 Novel U 0.0004231111578220976 -0.2595995272162723 1.0 16458 -11695 Alx4 aristaless-like homeobox 4 Novel U 0.0004226901514615718 -0.25960388798631473 1.0 16459 -66373 Lsm5 LSM5 homolog, U6 small nuclear RNA and mRNA degradation associated Novel N 0.00042267890849069446 -0.25960400444063747 1.0 16460 -368202 Prss48 serine protease 48 Novel U 0.0004225465120498372 -0.2596053757986196 1.0 16461 -381990 Zbtb2 zinc finger and BTB domain containing 2 Novel N 0.00042242676469564155 -0.25960661613777786 1.0 16462 -218333 Ice1 interactor of little elongation complex ELL subunit 1 Novel U 0.0004223708120997646 -0.2596071956929266 1.0 16463 -667256 Samt1b spermatogenesis associated multipass transmembrane protein 1b Novel U 0.000422358819936255 -0.259607319907362 1.0 16464 -69836 Pla2g12b phospholipase A2, group XIIB Novel U 0.0004222807266904311 -0.2596081287946351 1.0 16465 -26568 Slc27a3 solute carrier family 27 (fatty acid transporter), member 3 Novel N 0.0004222697570760426 -0.2596082424175403 1.0 16466 -270049 Galntl6 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase-like 6 Novel N 0.0004222687052854649 -0.25960825331195253 1.0 16467 -432995 Smim22 small integral membrane protein 22 Novel U 0.0004221880302486316 -0.25960908894133206 1.0 16468 -330171 Kctd10 potassium channel tetramerisation domain containing 10 Novel U 0.0004221855815899889 -0.2596091143044577 1.0 16469 -276905 Armc7 armadillo repeat containing 7 Novel U 0.00042204265082001645 -0.25961059477667453 1.0 16470 -66834 Acot13 acyl-CoA thioesterase 13 Novel U 0.0004216518459049996 -0.2596146427211372 1.0 16471 -215015 Fam20b FAM20B, glycosaminoglycan xylosylkinase Novel U 0.00042147433892050947 -0.25961648133264736 1.0 16472 -225266 Klhl14 kelch-like 14 Novel U 0.00042136854642417905 -0.2596175771278466 1.0 16473 -320265 Tafa1 TAFA chemokine like family member 1 Novel U 0.00042133508588880367 -0.2596179237109721 1.0 16474 -252875 Mios meiosis regulator for oocyte development Novel N 0.00042109241159704434 -0.25962043732330864 1.0 16475 -107939 Pom121 nuclear pore membrane protein 121 Novel U 0.0004210237456975331 -0.2596211485624385 1.0 16476 -436198 Rhox7b reproductive homeobox 7B Novel U 0.0004209072838870477 -0.25962235487004304 1.0 16477 -382239 Cpxcr1 CPX chromosome region, candidate 1 Novel U 0.0004207129618072154 -0.25962436765175795 1.0 16478 -26394 Lypla2 lysophospholipase 2 Novel N 0.0004205367998716183 -0.25962619233129586 1.0 16479 -212531 Sh3bgrl2 SH3 domain binding glutamic acid-rich protein like 2 Novel U 0.0004203374312166071 -0.25962825738527057 1.0 16480 -76713 Slc6a21 solute carrier family 6 member 21 Novel U 0.00042031400526353817 -0.25962850003052235 1.0 16481 -17035 Lxn latexin Novel U 0.0004202884047689468 -0.25962876519960376 1.0 16482 -330660 Btbd16 BTB domain containing 16 Novel U 0.00041982713409649476 -0.25963354302606556 1.0 16483 -59058 Bhlhe22 basic helix-loop-helix family, member e22 Novel U 0.0004195143098149173 -0.25963678324969064 1.0 16484 -66277 Klf15 Kruppel-like transcription factor 15 Novel U 0.00041941037012399574 -0.25963785985359233 1.0 16485 -16545 Kera keratocan Novel U 0.00041936445449216556 -0.25963833544619747 1.0 16486 -242050 Igsf10 immunoglobulin superfamily, member 10 Novel U 0.0004189782477519358 -0.25964233576291684 1.0 16487 -242805 Ankrd65 ankyrin repeat domain 65 Novel U 0.000418945768210779 -0.2596426721849365 1.0 16488 -100043239 Alyreffm8 Aly/REF export factor family member 8 Novel U 0.0004187400420892509 -0.2596448030893404 1.0 16489 -237806 Dnah9 dynein, axonemal, heavy chain 9 Novel N 0.0004187290410682992 -0.25964491703755377 1.0 16490 -66126 Elof1 ELF1 homolog, elongation factor 1 Novel U 0.0004185241635843997 -0.259647039151797 1.0 16491 -58210 Sectm1b secreted and transmembrane 1B Novel U 0.00041836907764822095 -0.25964864552682576 1.0 16492 -108154 Adamts6 ADAM metallopeptidase with thrombospondin type 1 motif 6 Novel U 0.00041830809063570786 -0.25964927722829656 1.0 16493 -381310 Stum mechanosensory transduction mediator Novel U 0.00041820897435978675 -0.25965030387142424 1.0 16494 -23968 Nlrp5 NLR family, pyrin domain containing 5 Novel U 0.0004179931634155473 -0.2596525392340903 1.0 16495 -70123 Nbdy negative regulator of P-body association Novel U 0.00041775783142096776 -0.25965497679515404 1.0 16496 -12751 Tpp1 tripeptidyl peptidase I Novel N 0.0004177484979924714 -0.25965507347049954 1.0 16497 -76260 Ttc8 tetratricopeptide repeat domain 8 Novel U 0.000417699000251154 -0.259655586166477 1.0 16498 -66641 Sike1 suppressor of IKBKE 1 Novel U 0.00041760478621058944 -0.25965656203241205 1.0 16499 -22770 Zhx1 zinc fingers and homeoboxes 1 Novel N 0.0004175797226001575 -0.25965682164046494 1.0 16500 -66044 Dtd1 D-tyrosyl-tRNA deacylase 1 Novel U 0.00041754468179467584 -0.25965718459197623 1.0 16501 -622645 Tmem200c transmembrane protein 200C Novel U 0.00041747979938180896 -0.2596578566418758 1.0 16502 -319176 H2ac20 H2A clustered histone 20 Novel U 0.00041746322843041615 -0.2596580282832456 1.0 16503 -100126777 Esp4 exocrine gland secreted peptide 4 Novel U 0.00041743156262655045 -0.2596583562766011 1.0 16504 -16874 Lhx6 LIM homeobox protein 6 Novel U 0.0004173664281831089 -0.2596590309370251 1.0 16505 -71137 Rfx4 regulatory factor X, 4 (influences HLA class II expression) Novel N 0.00041719993252758617 -0.2596607554935517 1.0 16506 -17301 Foxd2 forkhead box D2 Novel N 0.00041679324456584126 -0.25966496795409033 1.0 16507 -112415 Zfp607b zinc finger protein 607B Novel U 0.0004167260385913064 -0.2596656640713653 1.0 16508 -67890 Ufm1 ubiquitin-fold modifier 1 Novel U 0.0004162806767733931 -0.25967027711443474 1.0 16509 -229542 Gatad2b GATA zinc finger domain containing 2B Novel U 0.0004162401919527382 -0.2596706964548762 1.0 16510 -319171 H2ac24 H2A clustered histone 24 Novel U 0.000416148752069083 -0.2596716435861852 1.0 16511 -56878 Rbms1 RNA binding motif, single stranded interacting protein 1 Novel N 0.0004157519183402949 -0.2596757539769028 1.0 16512 -20641 Snrpd1 small nuclear ribonucleoprotein D1 Novel N 0.00041532268633011327 -0.259680199947954 1.0 16513 -77446 Heg1 heart development protein with EGF-like domains 1 Novel U 0.0004150892055340164 -0.2596826183343647 1.0 16514 -66354 Snw1 SNW domain containing 1 Novel U 0.0004149317340513864 -0.2596842494188052 1.0 16515 -12616 Cenpb centromere protein B Novel U 0.00041461951374899763 -0.25968748338643366 1.0 16516 -320869 Spata33 spermatogenesis associated 33 Novel U 0.0004146177611080586 -0.2596875015402309 1.0 16517 -101488 Slco2b1 solute carrier organic anion transporter family, member 2b1 Novel N 0.00041446694404888556 -0.25968906369837197 1.0 16518 -70750 Kdsr 3-ketodihydrosphingosine reductase Novel U 0.0004143500927828978 -0.25969027403994377 1.0 16519 -67966 Zcchc10 zinc finger, CCHC domain containing 10 Novel U 0.0004143023332935362 -0.2596907687311646 1.0 16520 -72097 Cracdl capping protein inhibiting regulator of actin like Novel U 0.00041412522184565973 -0.25969260324571947 1.0 16521 -12591 Cdx2 caudal type homeobox 2 Novel N 0.00041388871271448737 -0.25969505299952533 1.0 16522 -17843 Mup4 major urinary protein 4 Novel U 0.0004136885189729036 -0.2596971265997196 1.0 16523 -75796 Cdyl2 chromodomain protein, Y chromosome-like 2 Novel U 0.000413649308521328 -0.25969753274028806 1.0 16524 -353326 Rtl1 retrotransposon Gaglike 1 Novel U 0.0004136445622215797 -0.25969758190230485 1.0 16525 -66763 Nt5el 5' nucleotidase, ecto-like Novel U 0.0004135051321558405 -0.25969902611434226 1.0 16526 -224530 Acat3 acetyl-Coenzyme A acetyltransferase 3 Novel U 0.00041326195565996344 -0.25970154492849257 1.0 16527 -26927 Foxl2 forkhead box L2 Novel U 0.00041326061265456124 -0.25970155883929835 1.0 16528 -231861 Tnrc18 trinucleotide repeat containing 18 Novel U 0.0004125576978367965 -0.25970883960787366 1.0 16529 -15248 Hic1 hypermethylated in cancer 1 Novel N 0.00041246407247841837 -0.25970980937625804 1.0 16530 -381246 Xkr9 X-linked Kx blood group related 9 Novel U 0.0004123279642655086 -0.259711219180653 1.0 16531 -15384 Hnrnpab heterogeneous nuclear ribonucleoprotein A/B Novel N 0.00041219838586225026 -0.2597125613494943 1.0 16532 -100034684 Cstdc5 cystatin domain containing 5 Novel U 0.00041217884439883554 -0.25971276375932995 1.0 16533 -69547 Nkpd1 NTPase, KAP family P-loop domain containing 1 Novel U 0.00041208001306580836 -0.2597137874510285 1.0 16534 -13799 En2 engrailed 2 Novel U 0.0004120334940081418 -0.2597142692938986 1.0 16535 -212391 Lcor ligand dependent nuclear receptor corepressor Novel U 0.00041175850759853745 -0.2597171175940896 1.0 16536 -76302 Pcnp PEST proteolytic signal containing nuclear protein Novel U 0.00041174681336641887 -0.25971723872256147 1.0 16537 -193043 Zfp3 zinc finger protein 3 Novel U 0.00041132888059251967 -0.25972156765649473 1.0 16538 -20678 Sox5 SRY (sex determining region Y)-box 5 Novel U 0.00041076289405516796 -0.2597274301264428 1.0 16539 -94047 Tmem121b transmembrane protein 121B Novel U 0.0004105702172005817 -0.2597294258669687 1.0 16540 -93717 Pcdhga9 protocadherin gamma subfamily A, 9 Novel U 0.000410262128049725 -0.25973261704426537 1.0 16541 -230594 Tut4 terminal uridylyl transferase 4 Novel N 0.0004102512494521137 -0.25973272972442185 1.0 16542 -74189 Phactr3 phosphatase and actin regulator 3 Novel U 0.0004102058453806894 -0.2597332000183011 1.0 16543 -75507 Pou5f2 POU domain class 5, transcription factor 2 Novel U 0.00041018502916254063 -0.25973341563200436 1.0 16544 -71856 Wfdc3 WAP four-disulfide core domain 3 Novel U 0.0004101388192200563 -0.25973389427306953 1.0 16545 -66911 Nudt16l1 nudix hydrolase 16 like 1 Novel N 0.0004099985077507419 -0.25973534761465616 1.0 16546 -235130 Adamts15 ADAM metallopeptidase with thrombospondin type 1 motif 15 Novel U 0.00040997536455246236 -0.2597355873311432 1.0 16547 -53896 Slc7a10 solute carrier family 7 (cationic amino acid transporter, y+ system), member 10 Novel N 0.00040995554389062377 -0.25973579263290697 1.0 16548 -15574 Hus1 HUS1 checkpoint clamp component Novel U 0.00040961057164548277 -0.25973936584408175 1.0 16549 -280668 Adam1a a disintegrin and metallopeptidase domain 1a Novel U 0.0004095534805722574 -0.2597399571915414 1.0 16550 -101985 Usb1 U6 snRNA biogenesis 1 Novel U 0.00040942284746325143 -0.2597413102849902 1.0 16551 -102632837 Rnf212b ring finger protein 212B Novel U 0.0004093669042344167 -0.25974188974311546 1.0 16552 -241593 Pin1rt1 peptidyl-prolyl cis/trans isomerase, NIMA-interacting 1, retrogene 1 Novel U 0.0004093136788780869 -0.25974244104960664 1.0 16553 -224833 AI661453 expressed sequence AI661453 Novel U 0.00040925575571881194 -0.25974304101578627 1.0 16554 -330695 Ctxn1 cortexin 1 Novel U 0.00040904963087309994 -0.2597451760501622 1.0 16555 -224250 Cldnd1 claudin domain containing 1 Novel U 0.0004088523368696182 -0.25974721961496455 1.0 16556 -78372 Snrnp25 small nuclear ribonucleoprotein 25 (U11/U12) Novel U 0.0004088406533365373 -0.2597473406326161 1.0 16557 -71888 Krt33a keratin 33A Novel U 0.0004088347288194743 -0.2597474019985691 1.0 16558 -57737 Rhox4b reproductive homeobox 4B Novel U 0.0004087758780151177 -0.259748011573266 1.0 16559 -231668 Vsig10 V-set and immunoglobulin domain containing 10 Novel U 0.00040869247753540304 -0.25974887543269326 1.0 16560 -68738 Acss1 acyl-CoA synthetase short-chain family member 1 Novel N 0.0004086797542345879 -0.25974900722022487 1.0 16561 -69131 Cdk12 cyclin dependent kinase 12 Novel U 0.00040793108858940794 -0.2597567618743666 1.0 16562 -97895 Nlrp4f NLR family, pyrin domain containing 4F Novel U 0.00040781721225305496 -0.259757941401715 1.0 16563 -20532 Slc3a1 solute carrier family 3, member 1 Novel U 0.00040781085245183914 -0.2597580072763269 1.0 16564 -67484 Eepd1 endonuclease/exonuclease/phosphatase family domain containing 1 Novel N 0.0004075734597425649 -0.2597604661822057 1.0 16565 -252973 Grhl2 grainyhead like transcription factor 2 Novel U 0.00040727163451060954 -0.2597635924780364 1.0 16566 -27981 Rsrp1 arginine/serine rich protein 1 Novel N 0.00040718998714916213 -0.2597644381787222 1.0 16567 -15192 Hdgfl1 HDGF like 1 Novel U 0.0004067828193134786 -0.2597686556097793 1.0 16568 -23837 Cfdp1 craniofacial development protein 1 Novel U 0.00040671894780654704 -0.25976931718874846 1.0 16569 -433492 Bpifb9b BPI fold containing family B, member 9B Novel U 0.00040660638293057083 -0.25977048313203344 1.0 16570 -245695 Tceanc transcription elongation factor A (SII) N-terminal and central domain containing Novel U 0.0004064967106055231 -0.259771619114371 1.0 16571 -210417 Thsd7b thrombospondin, type I, domain containing 7B Novel U 0.0004064188480652942 -0.2597724256120031 1.0 16572 -20370 Sez6 seizure related gene 6 Novel U 0.00040633876990066136 -0.25977325505899995 1.0 16573 -237928 Phospho1 phosphatase, orphan 1 Novel U 0.00040633718046166194 -0.25977327152235685 1.0 16574 -546144 Wdr72 WD repeat domain 72 Novel N 0.0004062069850457359 -0.25977462008219504 1.0 16575 -237958 Sppl2c signal peptide peptidase 2C Novel N 0.0004062056004297707 -0.25977463442400167 1.0 16576 -70757 Hacd2 3-hydroxyacyl-CoA dehydratase 2 Novel N 0.00040599927303317234 -0.259776771556393 1.0 16577 -102323 Dcun1d2 defective in cullin neddylation 1 domain containing 2 Novel N 0.0004059060474573218 -0.25977773718384306 1.0 16578 -67102 D16Ertd472e DNA segment, Chr 16, ERATO Doi 472, expressed Novel U 0.00040588586320412274 -0.25977794625167416 1.0 16579 -17001 Ltc4s leukotriene C4 synthase Novel U 0.00040586933582821826 -0.2597781174416905 1.0 16580 -69642 Mlip muscular LMNA-interacting protein Novel U 0.0004058681276167099 -0.25977812995630556 1.0 16581 -20926 Supt6 SPT6, histone chaperone and transcription elongation factor Novel N 0.0004058600609876065 -0.25977821351018465 1.0 16582 -20643 Snrpe small nuclear ribonucleoprotein E Novel N 0.0004057527958162474 -0.2597793245593034 1.0 16583 -30805 Slc22a4 solute carrier family 22 (organic cation transporter), member 4 Novel U 0.00040568335068196236 -0.2597800438697215 1.0 16584 -20766 Sprr3 small proline-rich protein 3 Novel U 0.00040552827866362597 -0.2597816501005897 1.0 16585 -64082 Popdc2 popeye domain containing 2 Novel U 0.0004052899745843614 -0.25978411844640886 1.0 16586 -66902 Mtap methylthioadenosine phosphorylase Novel U 0.00040500003872897926 -0.2597871215924678 1.0 16587 -74776 Ppa2 pyrophosphatase (inorganic) 2 Novel U 0.0004049656501834557 -0.25978747778789185 1.0 16588 -237877 Atad5 ATPase family, AAA domain containing 5 Novel U 0.00040493278727575575 -0.25978781818080954 1.0 16589 -14654 Glra1 glycine receptor, alpha 1 subunit Novel U 0.0004047497104419619 -0.2597897144846356 1.0 16590 -70004 1700028J19Rik RIKEN cDNA 1700028J19 gene Novel U 0.00040467951618102524 -0.2597904415544829 1.0 16591 -67873 Mri1 methylthioribose-1-phosphate isomerase 1 Novel N 0.0004045487720679045 -0.2597917957977086 1.0 16592 -29871 Scmh1 sex comb on midleg homolog 1 Novel U 0.00040450480304886756 -0.2597922512273624 1.0 16593 -237360 Adamts14 ADAM metallopeptidase with thrombospondin type 1 motif 14 Novel N 0.00040440771536347903 -0.2597932568584161 1.0 16594 -434725 Btbd35f7 BTB domain containing 35, family member 7 Novel U 0.000404353430388641 -0.2597938191404009 1.0 16595 -100041677 Zfp984 zinc finger protein 984 Novel U 0.0004042681831834025 -0.2597947021281504 1.0 16596 -110460 Acat2 acetyl-Coenzyme A acetyltransferase 2 Novel U 0.00040410851416221164 -0.2597963559746231 1.0 16597 -74377 Hsf2bp heat shock transcription factor 2 binding protein Novel N 0.0004039036442901945 -0.2597984780100227 1.0 16598 -19091 Prkg1 protein kinase, cGMP-dependent, type I Novel U 0.00040380710532822656 -0.2597994779574172 1.0 16599 -60315 Myg1 melanocyte proliferating gene 1 Novel U 0.0004037892538747188 -0.2597996628621858 1.0 16600 -18617 Rhox5 reproductive homeobox 5 Novel U 0.00040370530241262004 -0.25980053242867046 1.0 16601 -108168208 Gm45521 predicted gene 45521 Novel U 0.0004037043894921034 -0.25980054188467117 1.0 16602 -233056 Zfp790 zinc finger protein 790 Novel U 0.0004036710135306409 -0.2598008875917828 1.0 16603 -22719 Zfp61 zinc finger protein 61 Novel U 0.0004035613144879983 -0.2598020238508604 1.0 16604 -83561 Tdrd1 tudor domain containing 1 Novel U 0.0004034530305337386 -0.25980314545249894 1.0 16605 -71093 Atoh8 atonal bHLH transcription factor 8 Novel U 0.0004033669522718693 -0.25980403704830574 1.0 16606 -216049 Zfp365 zinc finger protein 365 Novel U 0.0004032113670026373 -0.25980564859540983 1.0 16607 -22759 Zfp97 zinc finger protein 97 Novel U 0.00040300582413055564 -0.25980777760172197 1.0 16608 -66459 Pyurf Pigy upstream reading frame Novel U 0.00040281390603848726 -0.2598097654830107 1.0 16609 -18088 Nkx2-2 NK2 homeobox 2 Novel N 0.0004025902315801234 -0.25981208229569747 1.0 16610 -53970 Rfx5 regulatory factor X, 5 (influences HLA class II expression) Novel U 0.0004025466116123241 -0.25981253410989 1.0 16611 -74254 Gpn1 GPN-loop GTPase 1 Novel U 0.00040249240064428046 -0.25981309562531496 1.0 16612 -20730 Spink1 serine peptidase inhibitor, Kazal type 1 Novel U 0.0004023887085636765 -0.2598141696644771 1.0 16613 -19357 Rad21 RAD21 cohesin complex component Novel U 0.00040236028656903276 -0.25981446405856334 1.0 16614 -269037 Ctif CBP80/20-dependent translation initiation factor Novel N 0.0004022146094661774 -0.2598159729772058 1.0 16615 -66056 Zfp524 zinc finger protein 524 Novel U 0.00040203757929851026 -0.259817806649863 1.0 16616 -14409 Gabrr2 gamma-aminobutyric acid type A receptor subunit rho 2 Novel N 0.0004015112606942103 -0.25982325824066455 1.0 16617 -69544 Wdr5b WD repeat domain 5B Novel U 0.00040149401266280734 -0.2598234368952068 1.0 16618 -13393 Dlx3 distal-less homeobox 3 Novel N 0.0004014037880146887 -0.25982437143914605 1.0 16619 -23827 Bpnt1 3'(2'), 5'-bisphosphate nucleotidase 1 Novel N 0.00040127319034282424 -0.25982572416553806 1.0 16620 -26458 Slc27a2 solute carrier family 27 (fatty acid transporter), member 2 Novel U 0.00040105331621800096 -0.259828001614495 1.0 16621 -28250 Slco1a4 solute carrier organic anion transporter family, member 1a4 Novel U 0.0004009785014905843 -0.25982877654298214 1.0 16622 -72886 Yju2 YJU2 splicing factor Novel U 0.00040088251606015406 -0.2598297707569152 1.0 16623 -19054 Ppp2r3d protein phosphatase 2 (formerly 2A), regulatory subunit B'', delta Novel U 0.0004008176538137626 -0.25983044259793114 1.0 16624 -22608 Ybx1 Y box protein 1 Novel N 0.0004007754875466821 -0.25983087935473936 1.0 16625 -14012 Mpzl2 myelin protein zero-like 2 Novel N 0.00040072732663072055 -0.2598313782039237 1.0 16626 -68126 Fahd2a fumarylacetoacetate hydrolase domain containing 2A Novel U 0.0004001485447549836 -0.25983737320756617 1.0 16627 -70779 Prdm5 PR domain containing 5 Novel U 0.00039999473576530906 -0.259838966356025 1.0 16628 -338354 Zfp780b zinc finger protein 780B Novel U 0.0003998248212272275 -0.2598407263252248 1.0 16629 -320701 Tafa4 TAFA chemokine like family member 4 Novel U 0.00039971466691505136 -0.2598418672999692 1.0 16630 -320083 Fbxw16 F-box and WD-40 domain protein 16 Novel U 0.00039951070324738356 -0.259843979948934 1.0 16631 -72275 2200002D01Rik RIKEN cDNA 2200002D01 gene Novel U 0.0003993328169211431 -0.2598458224896535 1.0 16632 -238680 Cntnap3 contactin associated protein-like 3 Novel U 0.00039921173554797627 -0.2598470766465364 1.0 16633 -18685 Phtf1 putative homeodomain transcription factor 1 Novel U 0.00039916485977936573 -0.25984756218420674 1.0 16634 -18642 Pfkm phosphofructokinase, muscle Novel U 0.00039915562938744613 -0.2598476577923028 1.0 16635 -109077 Ints5 integrator complex subunit 5 Novel N 0.0003990402438480024 -0.2598488529519272 1.0 16636 -15371 Hmx1 H6 homeobox 1 Novel U 0.0003989113390400286 -0.25985018814369076 1.0 16637 -242646 Dynlt4 dynein light chain Tctex-type 4 Novel U 0.00039854673840688073 -0.2598539646650633 1.0 16638 -208158 Map6d1 MAP6 domain containing 1 Novel U 0.0003976852903104036 -0.259862887516128 1.0 16639 -378430 Nanos2 nanos C2HC-type zinc finger 2 Novel N 0.0003973245094672923 -0.2598666244722409 1.0 16640 -18624 Pepd peptidase D Novel U 0.00039717276703922424 -0.2598681962153226 1.0 16641 -94249 Slc24a3 solute carrier family 24 (sodium/potassium/calcium exchanger), member 3 Novel N 0.00039699417409247624 -0.25987004607519404 1.0 16642 -12419 Cbx5 chromobox 5 Novel N 0.0003969664378863283 -0.25987033336590554 1.0 16643 -83965 Enpp5 ectonucleotide pyrophosphatase/phosphodiesterase 5 Novel U 0.0003966521688494195 -0.25987358855425885 1.0 16644 -11988 Slc7a2 solute carrier family 7 (cationic amino acid transporter, y+ system), member 2 Novel N 0.00039625906589641977 -0.25987766030172343 1.0 16645 -229782 Slc35a3 solute carrier family 35 (UDP-N-acetylglucosamine (UDP-GlcNAc) transporter), member 3 Novel U 0.0003960637222643873 -0.2598796836646425 1.0 16646 -243755 Slc13a4 solute carrier family 13 (sodium/sulfate symporters), member 4 Novel N 0.0003960318236567522 -0.2598800140693717 1.0 16647 -59043 Wsb2 WD repeat and SOCS box-containing 2 Novel U 0.0003959902598427965 -0.25988044458599036 1.0 16648 -18969 Pola2 polymerase (DNA directed), alpha 2 Novel N 0.0003958979530085991 -0.25988140069714455 1.0 16649 -18599 Padi1 peptidyl arginine deiminase, type I Novel U 0.0003958316676918444 -0.25988208727827644 1.0 16650 -23855 Defa17 defensin, alpha, 17 Novel U 0.0003956672095699337 -0.259883790730097 1.0 16651 -83796 Smarcd2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 2 Novel U 0.00039565856817519354 -0.25988388023737957 1.0 16652 -338417 Scgb1c1 secretoglobin, family 1C, member 1 Novel U 0.00039564387821430216 -0.2598840323955116 1.0 16653 -67141 Fbxo5 F-box protein 5 Novel U 0.00039562810684165545 -0.25988419575487104 1.0 16654 -22232 Slc35a2 solute carrier family 35 (UDP-galactose transporter), member A2 Novel U 0.0003951716456210856 -0.25988892376518835 1.0 16655 -67039 Rbm25 RNA binding motif protein 25 Novel N 0.0003950652788120333 -0.2598900255090999 1.0 16656 -78092 Samt1 spermatogenesis associated multipass transmembrane protein 1 Novel U 0.00039459684692898716 -0.2598948775111456 1.0 16657 -100503355 Zfp648 zinc finger protein 648 Novel U 0.00039452563755844615 -0.25989561509546477 1.0 16658 -434903 Mageb4 MAGE family member B4 Novel U 0.00039448293708436554 -0.2598960573855716 1.0 16659 -20713 Serpini1 serine (or cysteine) peptidase inhibitor, clade I, member 1 Novel N 0.0003944204725201589 -0.2598967043914743 1.0 16660 -214359 Tmem51 transmembrane protein 51 Novel U 0.00039437977461537053 -0.2598971259390342 1.0 16661 -228829 Phf20 PHD finger protein 20 Novel U 0.00039418091647890134 -0.25989918570507464 1.0 16662 -67701 Wfdc2 WAP four-disulfide core domain 2 Novel U 0.0003939896431905146 -0.259901166907508 1.0 16663 -16525 Kcnk1 potassium channel, subfamily K, member 1 Novel N 0.0003938538348170875 -0.25990257360617547 1.0 16664 -20500 Slc13a2 solute carrier family 13 (sodium-dependent dicarboxylate transporter), member 2 Novel N 0.0003937429503671834 -0.2599037221436624 1.0 16665 -237560 Lrrc10 leucine rich repeat containing 10 Novel U 0.0003936874227186978 -0.2599042972972201 1.0 16666 -66240 Kcne5 potassium voltage-gated channel subfamily E regulatory subunit 5 Novel U 0.00039350396997928945 -0.2599061974946642 1.0 16667 -319322 Sf3b2 splicing factor 3b, subunit 2 Novel U 0.00039341931492794667 -0.2599070743489031 1.0 16668 -98404 AI597479 expressed sequence AI597479 Novel U 0.00039332237209348855 -0.2599080784795956 1.0 16669 -71393 Kctd6 potassium channel tetramerisation domain containing 6 Novel U 0.0003933106106315448 -0.25990820030443174 1.0 16670 -70861 Akr1cl aldo-keto reductase family 1, member C-like Novel U 0.0003929316609863469 -0.25991212545239945 1.0 16671 -68327 Tsr3 TSR3 20S rRNA accumulation Novel N 0.00039287192019963246 -0.25991274424550437 1.0 16672 -67014 Riox2 ribosomal oxygenase 2 Novel U 0.0003927231063178244 -0.2599142856548001 1.0 16673 -65100 Zic5 zinc finger protein of the cerebellum 5 Novel U 0.00039245696508470606 -0.25991704233694385 1.0 16674 -382277 Gm5169 predicted gene 5169 Novel U 0.00039239176975942863 -0.2599177176279799 1.0 16675 -234086 Erich1 glutamate rich 1 Novel U 0.000392175038836159 -0.25991996251975846 1.0 16676 -14408 Gabrr1 gamma-aminobutyric acid type A receptor subunit rho 1 Novel N 0.00039214244786578005 -0.2599203000959583 1.0 16677 -14711 Gnmt glycine N-methyltransferase Novel U 0.000392123672641839 -0.25992049456911065 1.0 16678 -56438 Rbx1 ring-box 1 Novel U 0.00039189777440554836 -0.25992283441561614 1.0 16679 -23918 Impdh2 inosine monophosphate dehydrogenase 2 Novel U 0.00039184470983154036 -0.2599233840567293 1.0 16680 -380755 Lsmem1 leucine-rich single-pass membrane protein 1 Novel U 0.00039182648273301856 -0.25992357285241663 1.0 16681 -12310 Calca calcitonin/calcitonin-related polypeptide, alpha Novel U 0.0003917992287068991 -0.25992385514872324 1.0 16682 -67302 Zc3h13 zinc finger CCCH type containing 13 Novel U 0.0003917944854359662 -0.2599239042793676 1.0 16683 -114714 Rad51c RAD51 paralog C Novel U 0.00039176250263979196 -0.25992423555611904 1.0 16684 -320635 Cyb5r2 cytochrome b5 reductase 2 Novel N 0.00039159713699639994 -0.2599259484080172 1.0 16685 -94045 P2rx5 purinergic receptor P2X, ligand-gated ion channel, 5 Novel N 0.0003915750447968812 -0.2599261772382936 1.0 16686 -26938 St6galnac5 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 5 Novel U 0.00039154197412499104 -0.25992651978322584 1.0 16687 -73936 Ccdc175 coiled-coil domain containing 175 Novel U 0.0003914006305933366 -0.2599279838148803 1.0 16688 -13048 Cux2 cut-like homeobox 2 Novel N 0.0003912721550719642 -0.2599293145601073 1.0 16689 -192199 Rspo1 R-spondin 1 Novel U 0.00039127142958096374 -0.25992932207471925 1.0 16690 -245622 Fam199x family with sequence similarity 199, X-linked Novel U 0.000391227839173611 -0.2599297735827256 1.0 16691 -70843 Krt28 keratin 28 Novel U 0.00039121610943102045 -0.2599298950790138 1.0 16692 -403171 Banf2 BANF family member 2 Novel U 0.00039121049772271994 -0.25992995320490386 1.0 16693 -319153 H3c11 H3 clustered histone 11 Novel U 0.00039102037211686917 -0.2599319225196793 1.0 16694 -68270 Dnaaf1 dynein, axonemal assembly factor 1 Novel U 0.0003908767998665 -0.2599334096363289 1.0 16695 -67225 Rnpc3 RNA-binding region (RNP1, RRM) containing 3 Novel N 0.000390794937343482 -0.25993425756565125 1.0 16696 -231093 Agbl5 ATP/GTP binding protein-like 5 Novel N 0.0003905935205215991 -0.25993634383447106 1.0 16697 -100041952 Defa34 defensin, alpha, 34 Novel U 0.00039051095417899883 -0.2599371990539335 1.0 16698 -50496 E2f6 E2F transcription factor 6 Novel N 0.00039025624999123134 -0.25993983727153747 1.0 16699 -223227 Sox21 SRY (sex determining region Y)-box 21 Novel N 0.00039010624597111363 -0.2599413910082467 1.0 16700 -319155 H4c3 H4 clustered histone 3 Novel U 0.0003896661178301541 -0.25994594984106234 1.0 16701 -22632 Yy1 YY1 transcription factor Novel U 0.00038948035641458566 -0.2599478739516982 1.0 16702 -67040 Ddx17 DEAD box helicase 17 Novel U 0.0003894140383322389 -0.2599485608722151 1.0 16703 -18032 Nfix nuclear factor I/X Novel U 0.0003890161195749501 -0.2599526825016222 1.0 16704 -59047 Pnkp polynucleotide kinase 3'- phosphatase Novel U 0.00038889285278836223 -0.25995395929494547 1.0 16705 -12659 Ovgp1 oviductal glycoprotein 1 Novel N 0.0003887039957206074 -0.25995591547024494 1.0 16706 -110265 Msra methionine sulfoxide reductase A Novel N 0.0003884316919492902 -0.25995873598375674 1.0 16707 -69602 Otop3 otopetrin 3 Novel U 0.0003883509005865433 -0.2599595728180362 1.0 16708 -17961 Nat2 N-acetyltransferase 2 (arylamine N-acetyltransferase) Novel U 0.000388348298295522 -0.25995959977248106 1.0 16709 -242620 Dmrta2 doublesex and mab-3 related transcription factor like family A2 Novel U 0.00038832242076244564 -0.259959867811118 1.0 16710 -75698 Shld2 shieldin complex subunit 2 Novel U 0.00038800090900411146 -0.2599631980193417 1.0 16711 -76014 Zc3h18 zinc finger CCCH-type containing 18 Novel N 0.00038785006040413836 -0.2599647605041813 1.0 16712 -74016 Phf19 PHD finger protein 19 Novel N 0.00038783818456352445 -0.259964883513748 1.0 16713 -22688 Zfp26 zinc finger protein 26 Novel U 0.0003877811880012361 -0.25996547388226654 1.0 16714 -14055 Ezh1 enhancer of zeste 1 polycomb repressive complex 2 subunit Novel N 0.0003877296871194614 -0.25996600732670694 1.0 16715 -108841 Rdh13 retinol dehydrogenase 13 (all-trans and 9-cis) Novel N 0.0003876967622906554 -0.2599663483610014 1.0 16716 -17133 Maff v-maf musculoaponeurotic fibrosarcoma oncogene family, protein F (avian) Novel N 0.000387609105997066 -0.25996725630200884 1.0 16717 -20519 Slc22a3 solute carrier family 22 (organic cation transporter), member 3 Novel U 0.0003876077282081032 -0.25996727057310165 1.0 16718 -93891 Pcdhb20 protocadherin beta 20 Novel U 0.00038752047650497597 -0.2599681743233744 1.0 16719 -100041347 Ccdc201 coiled coil domain 201 Novel U 0.00038751114307250143 -0.25996827099876113 1.0 16720 -75729 Fam227a family with sequence similarity 227, member A Novel U 0.0003874398901683555 -0.25996900903399994 1.0 16721 -69809 Pou2af2 POU domain, class 2, associating factor 2 Novel U 0.00038740072042840935 -0.25996941475287866 1.0 16722 -74114 Crot carnitine O-octanoyltransferase Novel N 0.0003871888405194811 -0.2599716093980102 1.0 16723 -12722 Clca3a1 chloride channel accessory 3A1 Novel U 0.00038715557846998706 -0.25997195392522543 1.0 16724 -69930 Zfp715 zinc finger protein 715 Novel U 0.0003871518620366078 -0.2599719924199202 1.0 16725 -67344 Dynlt5 dynein light chain Tctex-type 5 Novel U 0.00038713780560191056 -0.2599721380160087 1.0 16726 -16373 Irx3 Iroquois related homeobox 3 Novel U 0.0003870587907279325 -0.2599729564494759 1.0 16727 -330119 Adamts3 ADAM metallopeptidase with thrombospondin type 1 motif 3 Novel U 0.0003867785837040473 -0.259975858824618 1.0 16728 -232440 H2aj H2J.A histone Novel U 0.00038676860114458843 -0.25997596222364067 1.0 16729 -70348 Ube3d ubiquitin protein ligase E3D Novel U 0.000386567519405071 -0.2599780450216884 1.0 16730 -70454 Cenpl centromere protein L Novel U 0.0003865577505169619 -0.2599781462075103 1.0 16731 -243906 Zfp14 zinc finger protein 14 Novel U 0.00038654569261122913 -0.2599782711029015 1.0 16732 -211468 Kcnh8 potassium voltage-gated channel, subfamily H (eag-related), member 8 Novel U 0.00038648112284788935 -0.2599789399143876 1.0 16733 -240055 Neurl1b neuralized E3 ubiquitin protein ligase 1B Novel U 0.00038648047251800343 -0.25997894665048316 1.0 16734 -102639598 Gm14296 predicted gene 14296 Novel U 0.0003863603813503966 -0.2599801905508494 1.0 16735 -56407 Trpc4ap transient receptor potential cation channel, subfamily C, member 4 associated protein Novel U 0.0003862171153311033 -0.25998167449556764 1.0 16736 -27354 Nbn nibrin Novel U 0.0003861710371643938 -0.2599821517717037 1.0 16737 -75502 Cmtm2b CKLF-like MARVEL transmembrane domain containing 2B Novel U 0.0003860788990082953 -0.25998310613569564 1.0 16738 -246086 Onecut3 one cut domain, family member 3 Novel U 0.0003860551694986709 -0.2599833519251763 1.0 16739 -74102 Slc35a5 solute carrier family 35, member A5 Novel U 0.0003860109870204459 -0.25998380956583333 1.0 16740 -353320 Defb37 defensin beta 37 Novel U 0.0003860081612532029 -0.25998383883503756 1.0 16741 -76267 Fads1 fatty acid desaturase 1 Novel U 0.0003859549203692576 -0.25998439030236326 1.0 16742 -11669 Aldh2 aldehyde dehydrogenase 2, mitochondrial Novel U 0.00038590572602102685 -0.25998489985580503 1.0 16743 -212952 Mageb11 MAGE family member B11 Novel U 0.0003858966546166649 -0.2599849938171132 1.0 16744 -26887 Chst4 carbohydrate sulfotransferase 4 Novel N 0.0003858730091248487 -0.25998523873634016 1.0 16745 -228019 Mettl8 methyltransferase 8, methylcytidine Novel N 0.0003857781504840677 -0.25998622127902304 1.0 16746 -15494 Hsd3b3 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 3 Novel U 0.00038571006308059066 -0.25998692652611 1.0 16747 -18046 Nfyc nuclear transcription factor-Y gamma Novel U 0.00038555827927108026 -0.2599884986978193 1.0 16748 -56335 Mettl3 methyltransferase 3, N6-adenosine-methyltransferase complex catalytic subunit Novel U 0.00038555245503825957 -0.25998855902503143 1.0 16749 -20764 Sprr2j-ps small proline-rich protein 2J, pseudogene Novel U 0.00038547261002205456 -0.2599893860570845 1.0 16750 -12654 Chi3l1 chitinase 3 like 1 Novel U 0.00038546909903944444 -0.2599894224237269 1.0 16751 -18117 Emc8 ER membrane protein complex subunit 8 Novel U 0.0003852005989288275 -0.25999220353904623 1.0 16752 -66379 Cox14 cytochrome c oxidase assembly protein 14 Novel U 0.00038514669910712863 -0.25999276183162756 1.0 16753 -58807 Slco1c1 solute carrier organic anion transporter family, member 1c1 Novel N 0.00038503710986558095 -0.259993896953389 1.0 16754 -51810 Hnrnpu heterogeneous nuclear ribonucleoprotein U Novel U 0.0003849960721237523 -0.2599943220209697 1.0 16755 -231326 Aasdh aminoadipate-semialdehyde dehydrogenase Novel U 0.0003843826143836707 -0.2600006761960752 1.0 16756 -107999 Gtpbp6 GTP binding protein 6 (putative) Novel U 0.0003842203700357537 -0.26000235671769745 1.0 16757 -14263 Fmo5 flavin containing monooxygenase 5 Novel N 0.0003841513661090419 -0.2600030714581019 1.0 16758 -216393 D930020B18Rik RIKEN cDNA D930020B18 gene Novel U 0.0003841054325519127 -0.26000354723637664 1.0 16759 -381823 Apold1 apolipoprotein L domain containing 1 Novel U 0.0003840308241426114 -0.2600043200278276 1.0 16760 -71870 Cfap45 cilia and flagella associated protein 45 Novel N 0.00038393145324420563 -0.26000534930832664 1.0 16761 -382030 Cnep1r1 CTD nuclear envelope phosphatase 1 regulatory subunit 1 Novel N 0.00038357104910415746 -0.2600090823625616 1.0 16762 -22771 Zic1 zinc finger protein of the cerebellum 1 Novel U 0.0003833360028331625 -0.26001151696410985 1.0 16763 -66844 Ormdl2 ORM1-like 2 (S. cerevisiae) Novel N 0.00038320814338046246 -0.26001284132811775 1.0 16764 -237412 Gm4924 predicted gene 4924 Novel U 0.0003830955400853735 -0.2600140076693467 1.0 16765 -26972 Spo11 SPO11 initiator of meiotic double stranded breaks Novel N 0.00038307491916276994 -0.2600142212601851 1.0 16766 -66548 Adamtsl5 ADAMTS-like 5 Novel U 0.00038306129302817364 -0.2600143623992393 1.0 16767 -66959 Dusp26 dual specificity phosphatase 26 Novel U 0.00038303028791959807 -0.2600146835491347 1.0 16768 -381359 Prdm12 PR domain containing 12 Novel U 0.00038300725165483026 -0.2600149221580079 1.0 16769 -194974 Sun3 Sad1 and UNC84 domain containing 3 Novel U 0.0003828182964226246 -0.2600168793500915 1.0 16770 -210004 B3gntl1 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase-like 1 Novel U 0.00038263300132893843 -0.2600187986305807 1.0 16771 -414801 Itprip inositol 1,4,5-triphosphate receptor interacting protein Novel U 0.0003825890621884762 -0.2600192537507532 1.0 16772 -71138 Tmem217 transmembrane protein 217 Novel U 0.00038251068767055166 -0.2600200655514334 1.0 16773 -67758 Aadac arylacetamide deacetylase Novel N 0.00038248297742831056 -0.2600203525732116 1.0 16774 -12724 Clcn2 chloride channel, voltage-sensitive 2 Novel U 0.00038242056772403495 -0.2600209990108769 1.0 16775 -67106 Zbtb8os zinc finger and BTB domain containing 8 opposite strand Novel N 0.0003823236626771656 -0.26002200275016674 1.0 16776 -327766 Tmem26 transmembrane protein 26 Novel U 0.00038214939727726255 -0.2600238077854503 1.0 16777 -223739 5031439G07Rik RIKEN cDNA 5031439G07 gene Novel U 0.0003820739897963419 -0.2600245888536588 1.0 16778 -70009 Ssty2 spermiogenesis specific transcript on the Y 2 Novel U 0.00038205250634940156 -0.260024811378496 1.0 16779 -12627 Cfc1 cryptic, EGF-CFC family member 1 Novel U 0.000381848888458226 -0.2600269204459192 1.0 16780 -110842 Etfa electron transferring flavoprotein, alpha polypeptide Novel N 0.0003817710315241962 -0.2600277268854825 1.0 16781 -66355 Gmpr guanosine monophosphate reductase Novel U 0.00038174764462747075 -0.2600279691261899 1.0 16782 -14348 Fut9 fucosyltransferase 9 Novel U 0.00038155206054906756 -0.2600299949796446 1.0 16783 -117590 Asb10 ankyrin repeat and SOCS box-containing 10 Novel U 0.00038154421100919774 -0.2600300762849205 1.0 16784 -225887 Ndufs8 NADH:ubiquinone oxidoreductase core subunit S8 Novel N 0.00038152608115616765 -0.2600302640733422 1.0 16785 -15483 Hsd11b1 hydroxysteroid 11-beta dehydrogenase 1 Novel N 0.00038143826397717313 -0.26003117368079537 1.0 16786 -244332 Defb14 defensin beta 14 Novel U 0.00038140146073197803 -0.26003155488759927 1.0 16787 -16621 Klkb1 kallikrein B, plasma 1 Novel U 0.0003810870806271807 -0.26003481122639005 1.0 16788 -14860 Gsta4 glutathione S-transferase, alpha 4 Novel U 0.00038078524800309025 -0.2600379375987882 1.0 16789 -433215 Tmem262 transmembrane protein 262 Novel U 0.00038061143937519323 -0.2600397379028423 1.0 16790 -14866 Gstm5 glutathione S-transferase, mu 5 Novel U 0.00038057973056461084 -0.26004006634165994 1.0 16791 -108160 Fam50a family with sequence similarity 50, member A Novel N 0.0003803799107819896 -0.2600421360683996 1.0 16792 -71684 Rbm43 RNA binding motif protein 43 Novel U 0.0003803232865496418 -0.26004272258033684 1.0 16793 -382010 Cep44 centrosomal protein 44 Novel N 0.00038031572310298547 -0.26004280092226867 1.0 16794 -68304 Poglut3 protein O-glucosyltransferase 3 Novel N 0.00038021033579227053 -0.26004389252056864 1.0 16795 -21408 Zfp354a zinc finger protein 354A Novel N 0.0003800271593579137 -0.2600457898560541 1.0 16796 -100043497 Nat8f7 N-acetyltransferase 8 (GCN5-related) family member 7 Novel U 0.00037980916797257074 -0.2600480478036574 1.0 16797 -28240 Trpm2 transient receptor potential cation channel, subfamily M, member 2 Novel U 0.0003798031331311296 -0.2600481103123467 1.0 16798 -381339 Tmem182 transmembrane protein 182 Novel U 0.0003796711156209443 -0.26004947774537734 1.0 16799 -213575 Dync2li1 dynein cytoplasmic 2 light intermediate chain 1 Novel U 0.00037963379049948655 -0.2600498643577584 1.0 16800 -237107 Gnl3l guanine nucleotide binding protein nucleolar 3 like Novel U 0.00037926159276234576 -0.26005371956968437 1.0 16801 -21816 Tgm1 transglutaminase 1, K polypeptide Novel U 0.000379224320708932 -0.26005410563238834 1.0 16802 -71996 Fthl17a ferritin, heavy polypeptide-like 17, member A Novel U 0.0003791031856812081 -0.2600553603450234 1.0 16803 -73523 Pebp4 phosphatidylethanolamine binding protein 4 Novel U 0.0003790575741731632 -0.26005583278752437 1.0 16804 -72027 Slc39a4 solute carrier family 39 (zinc transporter), member 4 Novel U 0.0003789181061483367 -0.26005727739274076 1.0 16805 -211187 Lrtm2 leucine-rich repeats and transmembrane domains 2 Novel U 0.00037890452706810835 -0.26005741804440735 1.0 16806 -433653 Gimd1 GIMAP family P-loop NTPase domain containing 1 Novel U 0.0003789039710841693 -0.26005742380327074 1.0 16807 -234699 Edc4 enhancer of mRNA decapping 4 Novel U 0.0003788015541757714 -0.26005848463424114 1.0 16808 -19366 Rad54l RAD54 like (S. cerevisiae) Novel U 0.00037874628057939116 -0.2600590571563354 1.0 16809 -13195 Ddc dopa decarboxylase Novel U 0.00037869794046408654 -0.2600595578616607 1.0 16810 -14119 Fbn2 fibrillin 2 Novel U 0.00037860463196650755 -0.2600605243480112 1.0 16811 -100126226 Krt83 keratin 83 Novel U 0.0003785691970585991 -0.26006089138162247 1.0 16812 -16528 Kcnk4 potassium channel, subfamily K, member 4 Novel U 0.0003783831979670335 -0.2600628179540985 1.0 16813 -18812 Prl2c3 prolactin family 2, subfamily c, member 3 Novel U 0.00037816503393135487 -0.26006507769000836 1.0 16814 -26424 Nr5a2 nuclear receptor subfamily 5, group A, member 2 Novel N 0.00037814008291872387 -0.26006533613177696 1.0 16815 -234854 Cdk10 cyclin dependent kinase 10 Novel U 0.00037807535686189725 -0.2600660065621458 1.0 16816 -19076 Prim2 DNA primase, p58 subunit Novel U 0.0003778954808828072 -0.2600678697116241 1.0 16817 -20174 Ruvbl2 RuvB-like AAA ATPase 2 Novel U 0.0003777124702035163 -0.260069765330224 1.0 16818 -14396 Gabra3 gamma-aminobutyric acid type A receptor subunit alpha 3 Novel U 0.00037761221639106803 -0.26007080375591773 1.0 16819 -320799 Zhx3 zinc fingers and homeoboxes 3 Novel N 0.00037749501203071436 -0.26007201775482935 1.0 16820 -70113 Cimap1b ciliary microtubule associated protein 1B Novel U 0.00037747635560750076 -0.26007221099744776 1.0 16821 -66283 Gkn1 gastrokine 1 Novel U 0.0003773757572889178 -0.2600732529915246 1.0 16822 -212528 Trmt1 tRNA methyltransferase 1 Novel U 0.0003772974451644395 -0.2600740641459356 1.0 16823 -225600 Pde6a phosphodiesterase 6A, cGMP-specific, rod, alpha Novel N 0.00037727287089108554 -0.26007431868545117 1.0 16824 -83398 Ndst3 N-deacetylase/N-sulfotransferase (heparan glucosaminyl) 3 Novel N 0.0003771214493451448 -0.2600758871048463 1.0 16825 -105083 Pelo pelota mRNA surveillance and ribosome rescue factor Novel U 0.0003770494949484635 -0.2600766324061217 1.0 16826 -99375 Cul4a cullin 4A Novel U 0.000376685016084793 -0.26008040766621005 1.0 16827 -57256 Prss21 serine protease 21 Novel U 0.00037651033950676215 -0.2600822169604631 1.0 16828 -15211 Hexa hexosaminidase A Novel N 0.000376368865330818 -0.2600836823453268 1.0 16829 -385328 H2al1n H2A histone family member L1N Novel U 0.0003762692384901782 -0.26008471427686713 1.0 16830 -100043235 Alyreffm7 Aly/REF export factor family member 7 Novel U 0.0003762233470056532 -0.26008518961935523 1.0 16831 -272027 Tstd2 thiosulfate sulfurtransferase (rhodanese)-like domain containing 2 Novel U 0.000376198149867958 -0.26008545061047916 1.0 16832 -68845 Pih1d1 PIH1 domain containing 1 Novel U 0.00037618918507768644 -0.2600855434674821 1.0 16833 -244349 Kat6a K(lysine) acetyltransferase 6A Novel U 0.0003761824655821229 -0.26008561306779626 1.0 16834 -12951 Crx cone-rod homeobox Novel N 0.0003761113849939985 -0.2600863493181914 1.0 16835 -67328 Lyzl1 lysozyme-like 1 Novel U 0.000375973875192503 -0.26008777364019486 1.0 16836 -84505 Setdb1 SET domain, bifurcated 1 Novel U 0.00037594458193506596 -0.26008807705879244 1.0 16837 -72612 Hpf1 histone PARylation factor 1 Novel N 0.00037575804287237076 -0.2600900092242717 1.0 16838 -99982 Kdm1a lysine (K)-specific demethylase 1A Novel U 0.00037563883221640004 -0.2600912440043274 1.0 16839 -71831 Iqcm IQ motif containing M Novel U 0.0003756198379145639 -0.26009144074668145 1.0 16840 -71901 Fam219a family with sequence similarity 219, member A Novel U 0.00037558878880532926 -0.2600917623523342 1.0 16841 -22754 Zfp92 zinc finger protein 92 Novel U 0.00037541199756019073 -0.26009359355023964 1.0 16842 -18675 Phex phosphate regulating endopeptidase homolog, X-linked Novel U 0.00037527150837980754 -0.26009504873255174 1.0 16843 -73754 Thap1 THAP domain containing, apoptosis associated protein 1 Novel N 0.00037522367823708986 -0.26009554415559766 1.0 16844 -58520 Erg28 ergosterol biosynthesis 28 Novel U 0.00037514833195546865 -0.26009632458990584 1.0 16845 -317653 Klk14 kallikrein related-peptidase 14 Novel U 0.0003750549185515975 -0.2600972921628723 1.0 16846 -52670 Cpsf4l cleavage and polyadenylation specific factor 4-like Novel U 0.0003748721829251548 -0.2600991849324839 1.0 16847 -623197 Msantd5f5 Myb/SANT DNA binding domain containing 5 family member 5 Novel U 0.00037483861500798833 -0.26009953262786645 1.0 16848 -73373 Phospho2 phosphatase, orphan 2 Novel U 0.0003746495762842057 -0.2601014906847531 1.0 16849 -93884 Pcdhb13 protocadherin beta 13 Novel U 0.0003744089019144551 -0.2601039835819632 1.0 16850 -216892 Spns2 SPNS lysolipid transporter 2, sphingosine-1-phosphate Novel N 0.0003743830870852914 -0.26010425097111506 1.0 16851 -14049 Eya2 EYA transcriptional coactivator and phosphatase 2 Novel N 0.00037428919962625377 -0.2601052234543294 1.0 16852 -66775 Hacd4 3-hydroxyacyl-CoA dehydratase 4 Novel N 0.0003740337337335084 -0.26010786956164844 1.0 16853 -109349 Fam163b family with sequence similarity 163, member B Novel U 0.0003740149328333955 -0.2601080643007538 1.0 16854 -14657 Glra4 glycine receptor, alpha 4 subunit Novel U 0.00037380328343719713 -0.260110256558242 1.0 16855 -54562 Dnaaf11 dynein axonemal assembly factor 11 Novel U 0.00037362873583932874 -0.2601120645165228 1.0 16856 -19153 Prx periaxin Novel N 0.0003733362841494476 -0.2601150937215127 1.0 16857 -229302 Tm4sf4 transmembrane 4 superfamily member 4 Novel U 0.00037325643070032125 -0.26011592084091373 1.0 16858 -626682 Defa28 defensin, alpha, 28 Novel U 0.00037321831666364423 -0.2601163156248527 1.0 16859 -67136 Kbtbd4 kelch repeat and BTB (POZ) domain containing 4 Novel U 0.000373074482012033 -0.2601178054594458 1.0 16860 -93887 Pcdhb16 protocadherin beta 16 Novel U 0.0003730434192370756 -0.2601181272066477 1.0 16861 -271970 Arsj arylsulfatase J Novel U 0.0003728714487923721 -0.2601199084708607 1.0 16862 -74211 1700017B05Rik RIKEN cDNA 1700017B05 gene Novel U 0.0003725592016633878 -0.2601231427163581 1.0 16863 -98496 Pid1 phosphotyrosine interaction domain containing 1 Novel U 0.0003725323343240819 -0.26012342100737545 1.0 16864 -270076 Gcdh glutaryl-Coenzyme A dehydrogenase Novel N 0.0003725102018502982 -0.2601236502548113 1.0 16865 -19057 Ppp3cc protein phosphatase 3, catalytic subunit, gamma isoform Novel N 0.000372424753826439 -0.2601245353226335 1.0 16866 -77772 Dcst1 DC-STAMP domain containing 1 Novel U 0.0003722781834041938 -0.2601260534942489 1.0 16867 -13177 Eci1 enoyl-Coenzyme A delta isomerase 1 Novel U 0.0003721800316852206 -0.2601270701465274 1.0 16868 -229363 Gmps guanine monophosphate synthetase Novel N 0.0003721592898295018 -0.2601272849899871 1.0 16869 -64918 Bhmt2 betaine-homocysteine methyltransferase 2 Novel N 0.0003721523529050492 -0.26012735684242255 1.0 16870 -77622 Apex2 apurinic/apyrimidinic endonuclease 2 Novel U 0.00037214176174101373 -0.26012746654535146 1.0 16871 -23795 Agr2 anterior gradient 2 Novel U 0.0003720099549088055 -0.26012883179618657 1.0 16872 -16871 Lhx3 LIM homeobox protein 3 Novel U 0.00037192655290224755 -0.2601296956714288 1.0 16873 -245308 Zdhhc19 zinc finger, DHHC domain containing 19 Novel N 0.0003718286689156961 -0.26013070955054374 1.0 16874 -22239 Ugt8a UDP galactosyltransferase 8A Novel N 0.0003718229448458306 -0.26013076884027125 1.0 16875 -382035 Pabpn1l poly(A)binding protein nuclear 1-like Novel U 0.0003714253589020892 -0.26013488702240656 1.0 16876 -69299 Asb9 ankyrin repeat and SOCS box-containing 9 Novel U 0.0003713960362799319 -0.26013519074516295 1.0 16877 -406223 Gm5414 predicted gene 5414 Novel U 0.0003713651785697881 -0.26013551036831023 1.0 16878 -102209 Snapc2 small nuclear RNA activating complex, polypeptide 2 Novel N 0.00037131252296178965 -0.2601360557733669 1.0 16879 -67063 Pgap4 post-GPI attachment to proteins GalNAc transferase 4 Novel U 0.00037120396728027434 -0.2601371801895475 1.0 16880 -53625 B3gnt2 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 2 Novel N 0.0003706145371924137 -0.2601432854870211 1.0 16881 -22720 Zfp62 zinc finger protein 62 Novel U 0.00037052014613411744 -0.26014426318649997 1.0 16882 -67769 Gpatch2 G patch domain containing 2 Novel U 0.00037020155423845663 -0.26014756315088206 1.0 16883 -15939 Ier5 immediate early response 5 Novel U 0.00037014213445994487 -0.2601481786189946 1.0 16884 -319165 H2ac7 H2A clustered histone 7 Novel U 0.00037014053511808713 -0.260148195184925 1.0 16885 -94246 Arid4b AT-rich interaction domain 4B Novel U 0.0003697812524708279 -0.2601519166227745 1.0 16886 -399673 Tdpoz2 TD and POZ domain containing 2 Novel U 0.0003696564124509468 -0.2601532097115965 1.0 16887 -381417 Slc28a2b solute carrier family 28 member 2b Novel U 0.00036964821199470145 -0.26015329465165277 1.0 16888 -19434 Rax retina and anterior neural fold homeobox Novel N 0.00036950554286560333 -0.26015477241380197 1.0 16889 -11622 Ahr aryl-hydrocarbon receptor Novel U 0.00036943199819147683 -0.2601555341871189 1.0 16890 -20499 Slc12a7 solute carrier family 12, member 7 Novel N 0.0003693845683207781 -0.2601560254641604 1.0 16891 -232748 Tcaf2 TRPM8 channel-associated factor 2 Novel U 0.00036918758095654826 -0.26015806585280354 1.0 16892 -100043772 Zfp850 zinc finger protein 850 Novel U 0.00036911410716114636 -0.26015882689196096 1.0 16893 -67465 Sf3a1 splicing factor 3a, subunit 1 Novel N 0.00036893498038884786 -0.26016068228117994 1.0 16894 -11758 Prdx6 peroxiredoxin 6 Novel U 0.00036883079395733434 -0.2601617614408126 1.0 16895 -545948 Scgb1b20 secretoglobin, family 1B, member 20 Novel U 0.0003686034472543395 -0.26016411629048863 1.0 16896 -73368 Col20a1 collagen, type XX, alpha 1 Novel U 0.000368521488819862 -0.2601649652132587 1.0 16897 -21416 Tcf7l2 transcription factor 7 like 2, T cell specific, HMG box Novel U 0.0003685027388552245 -0.2601651594247761 1.0 16898 -68666 Svop SV2 related protein Novel U 0.00036843193388651723 -0.2601658928203143 1.0 16899 -19719 Rfng RFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase Novel U 0.00036842169852782154 -0.2601659988378232 1.0 16900 -72330 Klhl40 kelch-like 40 Novel U 0.000368370389784125 -0.26016653029210374 1.0 16901 -244209 Cyp2r1 cytochrome P450, family 2, subfamily r, polypeptide 1 Novel N 0.0003683396718515984 -0.2601668484674391 1.0 16902 -216858 Kctd11 potassium channel tetramerisation domain containing 11 Novel U 0.00036828812381142697 -0.2601673824003446 1.0 16903 -100039177 Mup16 major urinary protein 16 Novel U 0.00036809331216103725 -0.26016940025301527 1.0 16904 -245610 Nxf3 nuclear RNA export factor 3 Novel U 0.00036801470636280153 -0.26017021444928934 1.0 16905 -67210 Gatad1 GATA zinc finger domain containing 1 Novel N 0.0003679788305209659 -0.26017058605007976 1.0 16906 -407785 Ndufs6 NADH:ubiquinone oxidoreductase core subunit S6 Novel N 0.0003679315713521219 -0.2601710755589971 1.0 16907 -66341 Eid3 EP300 interacting inhibitor of differentiation 3 Novel U 0.0003678604287029779 -0.2601718124522182 1.0 16908 -666528 Zfp541 zinc finger protein 541 Novel U 0.00036780067278691737 -0.2601724314020324 1.0 16909 -215384 Fcgbp Fc fragment of IgG binding protein Novel U 0.00036765195625246413 -0.2601739718030075 1.0 16910 -620253 Dcpp3 demilune cell and parotid protein 3 Novel U 0.00036764802867142265 -0.2601740124847628 1.0 16911 -22242 Umod uromodulin Novel U 0.0003675676955246224 -0.2601748445728565 1.0 16912 -71929 Tmem123 transmembrane protein 123 Novel U 0.0003675530039186258 -0.26017499674802846 1.0 16913 -69737 Ttl tubulin tyrosine ligase Novel U 0.0003674052458508692 -0.260176527221237 1.0 16914 -77305 Wdr82 WD repeat domain containing 82 Novel N 0.0003673782105191227 -0.2601768072523145 1.0 16915 -434156 Eid2b EP300 interacting inhibitor of differentiation 2B Novel U 0.00036737110903847304 -0.26017688080921764 1.0 16916 -56017 Slc2a8 solute carrier family 2, (facilitated glucose transporter), member 8 Novel N 0.0003672051099037011 -0.2601786002227987 1.0 16917 -434865 Luzp4 leucine zipper protein 4 Novel U 0.0003671229403794314 -0.26017945133202985 1.0 16918 -242702 Myom3 myomesin family, member 3 Novel U 0.0003671028014754674 -0.2601796599301351 1.0 16919 -105244402 Gm14444 predicted gene 14444 Novel U 0.0003670207239586099 -0.26018051008635656 1.0 16920 -403185 Cfap97d2 CFAP97 domain containing 2 Novel U 0.00036698596533765694 -0.2601808701150098 1.0 16921 -54371 Chst2 carbohydrate sulfotransferase 2 Novel N 0.0003669607234769124 -0.26018113156937356 1.0 16922 -66968 Plin5 perilipin 5 Novel U 0.0003669590256386888 -0.2601811491555261 1.0 16923 -234371 Tmem161a transmembrane protein 161A Novel U 0.0003669384979621162 -0.2601813617805252 1.0 16924 -243996 4933405O20Rik RIKEN cDNA 4933405O20 gene Novel U 0.00036679126908281337 -0.26018288677241713 1.0 16925 -76485 Glt8d1 glycosyltransferase 8 domain containing 1 Novel U 0.0003667158732699883 -0.26018366771976786 1.0 16926 -14406 Gabrg2 gamma-aminobutyric acid type A receptor, subunit gamma 2 Novel U 0.0003666825976556694 -0.2601840123874871 1.0 16927 -16769 Dsg4 desmoglein 4 Novel U 0.0003666151295294187 -0.26018471122012093 1.0 16928 -67099 Mettl21a methyltransferase 21A, HSPA lysine Novel N 0.00036656659147472345 -0.2601852139756959 1.0 16929 -14401 Gabrb2 gamma-aminobutyric acid type A receptor subunit beta 2 Novel U 0.0003665488418167356 -0.2601853978260698 1.0 16930 -232989 Hnrnpul1 heterogeneous nuclear ribonucleoprotein U-like 1 Novel N 0.00036641699906884057 -0.26018676344891845 1.0 16931 -381741 Lrrc43 leucine rich repeat containing 43 Novel U 0.0003663054396936123 -0.2601879189772597 1.0 16932 -18105 Nqo2 N-ribosyldihydronicotinamide quinone reductase 2 Novel U 0.0003658203681209514 -0.26019294333266346 1.0 16933 -56399 Akap8 A kinase anchor protein 8 Novel N 0.0003658198902185469 -0.26019294828276085 1.0 16934 -20603 Sms spermine synthase Novel U 0.0003657350643469274 -0.2601938269063506 1.0 16935 -72085 Osgepl1 O-sialoglycoprotein endopeptidase-like 1 Novel N 0.0003656367203824903 -0.26019484554990135 1.0 16936 -626832 Gm6710 predicted gene 6710 Novel U 0.00036553392930885597 -0.260195910256463 1.0 16937 -227094 Nemp2 nuclear envelope integral membrane protein 2 Novel U 0.0003654843070468762 -0.26019642424222134 1.0 16938 -74480 Samd4 sterile alpha motif domain containing 4 Novel N 0.0003653958594149746 -0.260197340379885 1.0 16939 -105651 Ppp1r3e protein phosphatase 1, regulatory subunit 3E Novel U 0.00036527459291616773 -0.2601985964542932 1.0 16940 -14106 Foxh1 forkhead box H1 Novel U 0.00036527329033080936 -0.2601986099464295 1.0 16941 -235582 Glyctk glycerate kinase Novel U 0.000365226086697613 -0.26019909888011045 1.0 16942 -22691 Zscan2 zinc finger and SCAN domain containing 2 Novel U 0.00036511667477521267 -0.26020023216520594 1.0 16943 -30059 Timm10 translocase of inner mitochondrial membrane 10 Novel U 0.0003650296127435285 -0.26020113395086814 1.0 16944 -69369 Ms4a20 membrane-spanning 4-domains, subfamily A, member 20 Novel U 0.00036474344668648587 -0.26020409804947975 1.0 16945 -52846 Cnot11 CCR4-NOT transcription complex, subunit 11 Novel U 0.0003647107657837614 -0.2602044365571959 1.0 16946 -21412 Tcf21 transcription factor 21 Novel N 0.0003647092962056662 -0.26020445177903745 1.0 16947 -233005 Cyp2a22 cytochrome P450, family 2, subfamily a, polypeptide 22 Novel U 0.000364579814627382 -0.2602057929449688 1.0 16948 -319164 H2ac6 H2A clustered histone 6 Novel U 0.0003645569249296055 -0.26020603003570597 1.0 16949 -66079 Tmem42 transmembrane protein 42 Novel U 0.00036455016771704533 -0.26020610002669153 1.0 16950 -244216 Zfp771 zinc finger protein 771 Novel U 0.00036449502771681045 -0.26020667116500135 1.0 16951 -231151 Tada2b transcriptional adaptor 2B Novel U 0.0003644773879423021 -0.2602068538772058 1.0 16952 -214489 Uqcc4 ubiquinol-cytochrome c reductase complex assembly factor 4 Novel U 0.00036447246696989663 -0.2602069048484762 1.0 16953 -68567 Cgref1 cell growth regulator with EF hand domain 1 Novel N 0.0003643098537079223 -0.26020858919129813 1.0 16954 -16612 Klk1 kallikrein 1 Novel U 0.000364251814347462 -0.26020919036108586 1.0 16955 -15891 Ibsp integrin binding sialoprotein Novel U 0.0003640291834834717 -0.26021149636425644 1.0 16956 -217011 Nle1 notchless homolog 1 Novel U 0.00036399639735402214 -0.2602118359619075 1.0 16957 -17868 Mybpc3 myosin binding protein C, cardiac Novel U 0.0003639851719551371 -0.2602119522342201 1.0 16958 -102216272 Ak6 adenylate kinase 6 Novel U 0.00036382303753656185 -0.26021363161719785 1.0 16959 -100039054 Mup12 major urinary protein 12 Novel U 0.0003637492965983479 -0.2602143954234118 1.0 16960 -20901 Strap serine/threonine kinase receptor associated protein Novel U 0.0003637381333009889 -0.2602145110524789 1.0 16961 -271786 Galnt13 polypeptide N-acetylgalactosaminyltransferase 13 Novel N 0.0003636749843235534 -0.2602151651475112 1.0 16962 -16939 Loricrin loricrin cornified envelope precursor protein Novel U 0.0003633607735644682 -0.2602184197322247 1.0 16963 -104346 Gas8 growth arrest specific 8 Novel U 0.0003631669697005044 -0.2602204271462767 1.0 16964 -240638 Slc16a12 solute carrier family 16 (monocarboxylic acid transporters), member 12 Novel N 0.0003631358063663638 -0.2602207499350673 1.0 16965 -270893 Tmem132e transmembrane protein 132E Novel N 0.0003630670489982373 -0.26022146212162606 1.0 16966 -12834 Col6a2 collagen, type VI, alpha 2 Novel U 0.00036302000065101855 -0.2602219494468599 1.0 16967 -100041759 Defa41 defensin, alpha, 41 Novel U 0.00036301116821013977 -0.26022204093299217 1.0 16968 -214669 L3mbtl2 L3MBTL2 polycomb repressive complex 1 subunit Novel U 0.0003628984023356263 -0.2602232089582134 1.0 16969 -80509 Med8 mediator complex subunit 8 Novel U 0.00036284220490615454 -0.2602237910493405 1.0 16970 -75671 Tex22 testis expressed gene 22 Novel U 0.00036265335249594606 -0.26022574717639724 1.0 16971 -269181 Mgat4a mannoside acetylglucosaminyltransferase 4, isoenzyme A Novel U 0.00036257808635059097 -0.26022652678065655 1.0 16972 -93692 Glrx glutaredoxin Novel N 0.00036255728056668935 -0.2602267422862823 1.0 16973 -14287 Fpgs folylpolyglutamyl synthetase Novel N 0.0003625560411711574 -0.2602267551239005 1.0 16974 -22680 Zfp207 zinc finger protein 207 Novel U 0.00036216302700062974 -0.2602308259517591 1.0 16975 -382117 Tcaim T cell activation inhibitor, mitochondrial Novel U 0.00036208382916820775 -0.2602316462803039 1.0 16976 -13026 Pcyt1a phosphate cytidylyltransferase 1, choline, alpha isoform Novel U 0.00036206250291724855 -0.2602318671769102 1.0 16977 -385343 Rhox1 reproductive homeobox 1 Novel U 0.00036198176892283 -0.26023270341697047 1.0 16978 -77591 Ddx10 DEAD box helicase 10 Novel U 0.0003618427616040969 -0.26023414325020827 1.0 16979 -243197 Slc49a3 solute carrier family 49 member 3 Novel U 0.0003617881317101551 -0.26023470910485386 1.0 16980 -14241 Foxl1 forkhead box L1 Novel N 0.0003617154991858922 -0.2602354614301525 1.0 16981 -56471 Stmn4 stathmin-like 4 Novel U 0.0003617002280390439 -0.26023561960818953 1.0 16982 -21927 Tnfaip1 tumor necrosis factor, alpha-induced protein 1 (endothelial) Novel U 0.0003616053348949352 -0.26023660250825675 1.0 16983 -60455 Pgap6 post-glycosylphosphatidylinositol attachment to proteins 6 Novel U 0.0003615697774395412 -0.26023697081121083 1.0 16984 -319653 Slc25a40 solute carrier family 25, member 40 Novel U 0.00036154403093603427 -0.2602372374926478 1.0 16985 -319168 H2ac12 H2A clustered histone 12 Novel U 0.00036152509059229914 -0.2602374336761056 1.0 16986 -67753 Eqtn equatorin, sperm acrosome associated Novel U 0.0003615217806161323 -0.26023746796072994 1.0 16987 -76654 Upp2 uridine phosphorylase 2 Novel N 0.0003614340181849197 -0.2602383770011074 1.0 16988 -14584 Gfpt2 glutamine fructose-6-phosphate transaminase 2 Novel N 0.0003613860553640225 -0.2602388737984295 1.0 16989 -276919 Gemin4 gem nuclear organelle associated protein 4 Novel U 0.0003612033068469595 -0.26024076670156177 1.0 16990 -70853 Vwa3b von Willebrand factor A domain containing 3B Novel N 0.0003609405283487542 -0.26024348855260776 1.0 16991 -384806 Adam20 a disintegrin and metallopeptidase domain 20 Novel U 0.00036070470120879816 -0.26024593124237105 1.0 16992 -74129 Dmgdh dimethylglycine dehydrogenase precursor Novel N 0.00036066059706588497 -0.26024638807163347 1.0 16993 -628324 S100a2 S100 calcium binding protein A2 Novel U 0.00036063142553282337 -0.260246690229414 1.0 16994 -226866 Sbspon somatomedin B and thrombospondin, type 1 domain containing Novel U 0.00036055839402241525 -0.260247446687398 1.0 16995 -60611 Foxj2 forkhead box J2 Novel U 0.00036049037360318554 -0.26024815124066436 1.0 16996 -407800 Ecm2 extracellular matrix protein 2, female organ and adipocyte specific Novel N 0.00036048891756192093 -0.2602481663222919 1.0 16997 -170750 Xpnpep1 X-prolyl aminopeptidase (aminopeptidase P) 1, soluble Novel N 0.0003600430757315076 -0.260252784337315 1.0 16998 -216198 Tcp11l2 t-complex 11 (mouse) like 2 Novel U 0.0003599279083498423 -0.2602539772372684 1.0 16999 -72400 Pinx1 PIN2/TERF1 interacting, telomerase inhibitor 1 Novel U 0.00035972966632802594 -0.2602560306216135 1.0 17000 -19724 Rfx1 regulatory factor X, 1 (influences HLA class II expression) Novel N 0.0003596618493802651 -0.2602567330673291 1.0 17001 -67247 Mtarc2 mitochondrial amidoxime reducing component 2 Novel N 0.0003596075696901121 -0.26025729529457536 1.0 17002 -66302 Rmdn1 regulator of microtubule dynamics 1 Novel U 0.00035960655584858087 -0.2602573057959126 1.0 17003 -66172 Med11 mediator complex subunit 11 Novel N 0.00035946310691991603 -0.2602587916352001 1.0 17004 -105501 Abhd4 abhydrolase domain containing 4 Novel U 0.0003592968629551746 -0.2602605135847219 1.0 17005 -170936 Zfp369 zinc finger protein 369 Novel U 0.0003592627176226096 -0.26026086726095415 1.0 17006 -100189605 Mup19 major urinary protein 19 Novel U 0.0003592578674869553 -0.2602609174984998 1.0 17007 -27281 Plaat1 phospholipase A and acyltransferase 1 Novel U 0.00035916742411091487 -0.2602618543080157 1.0 17008 -69234 Zfp688 zinc finger protein 688 Novel U 0.0003591526655505133 -0.2602620071766992 1.0 17009 -72961 Slc17a7 solute carrier family 17 (sodium-dependent inorganic phosphate cotransporter), member 7 Novel N 0.000359050426168106 -0.26026306616886113 1.0 17010 -232016 Itprid1 ITPR interacting domain containing 1 Novel U 0.0003590327326067159 -0.2602632494381884 1.0 17011 -328971 Spink10 serine peptidase inhibitor, Kazal type 10 Novel U 0.00035884004957733597 -0.26026524524267264 1.0 17012 -320500 Tmem215 transmembrane protein 215 Novel U 0.0003588301577052715 -0.2602653477023583 1.0 17013 -22642 Zbtb17 zinc finger and BTB domain containing 17 Novel N 0.00035862892531275615 -0.2602674320608648 1.0 17014 -67936 Wdr55 WD repeat domain 55 Novel U 0.00035860722541529845 -0.2602676568276893 1.0 17015 -237213 Glra2 glycine receptor, alpha 2 subunit Novel N 0.00035856822257104495 -0.26026806081786796 1.0 17016 -229599 Ciart circadian associated repressor of transcription Novel U 0.00035833323246459425 -0.2602704948376657 1.0 17017 -67369 Qpctl glutaminyl-peptide cyclotransferase-like Novel N 0.00035831245160931544 -0.2602707100850815 1.0 17018 -100312471 Vmn1r3 vomeronasal 1 receptor 3 Novel U 0.0003582756596461564 -0.26027109117502645 1.0 17019 -214290 Tut7 terminal uridylyl transferase 7 Novel N 0.0003582172129689969 -0.2602716965637871 1.0 17020 -107197 Uqcc3 ubiquinol-cytochrome c reductase complex assembly factor 3 Novel N 0.00035811125778518305 -0.260272794044098 1.0 17021 -192654 Pla2g15 phospholipase A2, group XV Novel U 0.0003580530604451526 -0.2602733968502329 1.0 17022 -74665 Drc3 dynein regulatory complex subunit 3 Novel U 0.0003577333920452351 -0.2602767079650107 1.0 17023 -217430 Slc66a3 solute carrier family 66 member 3 Novel U 0.0003575211810797432 -0.2602789060392152 1.0 17024 -20518 Slc22a2 solute carrier family 22 (organic cation transporter), member 2 Novel U 0.0003575207185537401 -0.26027891083004434 1.0 17025 -270685 Mthfd1l methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1-like Novel N 0.00035733345582944135 -0.2602808504911867 1.0 17026 -75622 Spaca3 sperm acrosome associated 3 Novel U 0.00035730523756588123 -0.260281142775033 1.0 17027 -100322896 Dthd1 death domain containing 1 Novel U 0.00035715645744045197 -0.26028268383468134 1.0 17028 -72614 Pih1d2 PIH1 domain containing 2 Novel U 0.0003571125212346816 -0.2602831389244564 1.0 17029 -268706 Slc38a9 solute carrier family 38, member 9 Novel N 0.00035707909033489836 -0.26028348520061734 1.0 17030 -100043292 Alyreffm10 Aly/REF export factor family member 10 Novel U 0.00035706394166164126 -0.260283642110077 1.0 17031 -67057 Yaf2 YY1 associated factor 2 Novel N 0.000356962235352956 -0.26028469558067896 1.0 17032 -66935 Cir1 corepressor interacting with RBPJ, 1 Novel N 0.0003568818254483187 -0.26028552846382785 1.0 17033 -100042943 H2al1g H2A histone family member L1G Novel U 0.0003567975183066947 -0.2602864017144293 1.0 17034 -13162 Slc6a3 solute carrier family 6 (neurotransmitter transporter, dopamine), member 3 Novel U 0.0003567818198421301 -0.26028656431860925 1.0 17035 -319154 H3c13 H3 clustered histone 13 Novel U 0.00035673895649636236 -0.2602870082957356 1.0 17036 -73347 Cldn34b2 claudin 34B2 Novel U 0.0003567085908874349 -0.2602873228217147 1.0 17037 -76668 Mdh1b malate dehydrogenase 1B, NAD (soluble) Novel U 0.0003565117992766015 -0.26028936118275053 1.0 17038 -235047 Zfp809 zinc finger protein 809 Novel U 0.0003564734089971583 -0.260289758828003 1.0 17039 -74754 Dhcr24 24-dehydrocholesterol reductase Novel U 0.00035645834494775177 -0.2602899148609315 1.0 17040 -621893 H2ac21 H2A clustered histone 21 Novel U 0.00035603578167444066 -0.26029429175742547 1.0 17041 -100040591 Kcnj13 potassium inwardly-rectifying channel, subfamily J, member 13 Novel N 0.000356032247774091 -0.2602943283614491 1.0 17042 -67266 Dipk1a divergent protein kinase domain 1A Novel U 0.00035597968293176526 -0.26029487282635794 1.0 17043 -207393 Elfn2 leucine rich repeat and fibronectin type III, extracellular 2 Novel U 0.00035561150378641345 -0.26029868641384224 1.0 17044 -22643 Zfp101 zinc finger protein 101 Novel U 0.0003553877611626266 -0.26030100393258426 1.0 17045 -13496 Arid3a AT-rich interaction domain 3A Novel U 0.0003551868638353703 -0.26030308482049586 1.0 17046 -240038 Zfp994 zinc finger protein 994 Novel U 0.00035514397083779176 -0.2603035291047548 1.0 17047 -73430 Zfp974 zinc finger protein 974 Novel U 0.0003551029980394854 -0.26030395349965274 1.0 17048 -20595 Smn1 survival motor neuron 1 Novel U 0.0003550849038192823 -0.2603041409189908 1.0 17049 -16909 Lmo2 LIM domain only 2 Novel N 0.00035506617860338915 -0.26030433487416144 1.0 17050 -22758 Zscan12 zinc finger and SCAN domain containing 12 Novel U 0.0003549973849898755 -0.26030504743614874 1.0 17051 -11624 Ahrr aryl-hydrocarbon receptor repressor Novel U 0.00035492580697162583 -0.26030578883890876 1.0 17052 -68364 0610030E20Rik RIKEN cDNA 0610030E20 gene Novel U 0.0003548244701909415 -0.2603068384819518 1.0 17053 -21743 Inmt indolethylamine N-methyltransferase Novel N 0.0003547966894159246 -0.2603071262343062 1.0 17054 -66812 Ppcdc phosphopantothenoylcysteine decarboxylase Novel N 0.00035449279385544214 -0.26031027397453166 1.0 17055 -244713 Zfp317 zinc finger protein 317 Novel U 0.00035443446430043343 -0.260310878150145 1.0 17056 -28000 Prpf19 pre-mRNA processing factor 19 Novel U 0.00035432572857290503 -0.2603120044312362 1.0 17057 -242286 Sdr16c6 short chain dehydrogenase/reductase family 16C, member 6 Novel U 0.0003542854477581968 -0.26031242165859075 1.0 17058 -64384 Sirt3 sirtuin 3 Novel N 0.00035409912903783356 -0.2603143515417714 1.0 17059 -75556 Cfap161 cilia and flagella associated protein 161 Novel U 0.00035369173536167384 -0.26031857131207675 1.0 17060 -217341 Qrich2 glutamine rich 2 Novel U 0.0003536427311006754 -0.2603190788966012 1.0 17061 -29877 Hdgfl3 HDGF like 3 Novel U 0.00035357590155142397 -0.2603197711148755 1.0 17062 -208795 Tmem63a transmembrane protein 63a Novel N 0.00035318757088414977 -0.2603237934311614 1.0 17063 -67676 Rpp21 ribonuclease P 21 subunit Novel U 0.00035316839457929687 -0.26032399205869666 1.0 17064 -68631 Cryl1 crystallin, lambda 1 Novel U 0.0003530220924706268 -0.26032550745112887 1.0 17065 -100041890 Defa32 defensin, alpha, 32 Novel U 0.00035283336528377603 -0.2603274622811262 1.0 17066 -18095 Nkx3-1 NK3 homeobox 1 Novel U 0.0003528179628156609 -0.26032762181938457 1.0 17067 -22646 Zfp105 zinc finger protein 105 Novel N 0.0003527946235618136 -0.2603278635666087 1.0 17068 -68107 Cntd1 cyclin N-terminal domain containing 1 Novel U 0.0003527302342545078 -0.2603285305089371 1.0 17069 -619517 Esp1 exocrine gland secreted peptide 1 Novel U 0.0003527098916629302 -0.2603287412168319 1.0 17070 -98365 Slamf9 SLAM family member 9 Novel U 0.0003525195609395417 -0.26033071265620805 1.0 17071 -236727 Slc9a7 solute carrier family 9 (sodium/hydrogen exchanger), member 7 Novel U 0.00035241320722379036 -0.2603318142644996 1.0 17072 -19018 Scand1 SCAN domain-containing 1 Novel U 0.00035232450882067786 -0.2603327329996432 1.0 17073 -432536 Pom121l12 POM121 membrane glycoprotein-like 12 Novel U 0.000352218379435644 -0.2603338322843246 1.0 17074 -56275 Rbm14 RNA binding motif protein 14 Novel U 0.0003516539680588188 -0.26033967843881173 1.0 17075 -77422 C330018D20Rik RIKEN cDNA C330018D20 gene Novel U 0.00035161343558552834 -0.2603400982728376 1.0 17076 -76936 Hnrnpm heterogeneous nuclear ribonucleoprotein M Novel N 0.0003514446483288415 -0.2603418465656938 1.0 17077 -234309 Cbr4 carbonyl reductase 4 Novel U 0.0003510772773455362 -0.2603456517822622 1.0 17078 -66972 Slc25a23 solute carrier family 25 (mitochondrial carrier; phosphate carrier), member 23 Novel N 0.00035103004540332813 -0.2603461410091669 1.0 17079 -78004 Prr15 proline rich 15 Novel U 0.00035086620581349225 -0.2603478380542525 1.0 17080 -73679 Tex19.1 testis expressed gene 19.1 Novel U 0.0003508069972036108 -0.26034845133508727 1.0 17081 -380718 Mks1 MKS transition zone complex subunit 1 Novel U 0.0003507311373017602 -0.2603492370894569 1.0 17082 -72432 Spink5 serine peptidase inhibitor, Kazal type 5 Novel U 0.00035067216483981113 -0.2603498479242791 1.0 17083 -260423 H3c7 H3 clustered histone 7 Novel U 0.00035048890733041494 -0.2603517460995372 1.0 17084 -67010 Rbm7 RNA binding motif protein 7 Novel N 0.0003503088435244677 -0.26035361119451994 1.0 17085 -69501 Etd embryonic testis differentiation Novel U 0.0003502820436573119 -0.26035388878666293 1.0 17086 -330836 Slc7a6 solute carrier family 7 (cationic amino acid transporter, y+ system), member 6 Novel N 0.0003501312324334604 -0.2603554508843619 1.0 17087 -243339 Tmem130 transmembrane protein 130 Novel U 0.0003501170514755619 -0.2603555977702577 1.0 17088 -72371 2210408I21Rik RIKEN cDNA 2210408I21 gene Novel N 0.00035006239210068736 -0.2603561639302658 1.0 17089 -11642 Akap3 A kinase anchor protein 3 Novel N 0.0003500612481002591 -0.26035617577978465 1.0 17090 -14390 Gabpa GA repeat binding protein, alpha Novel N 0.00035002798968321574 -0.26035652026937506 1.0 17091 -232717 Prss58 serine protease 58 Novel U 0.00034988741371097705 -0.2603579763506743 1.0 17092 -70069 H1f7 H1.7 linker histone Novel U 0.0003498843519329399 -0.26035800806447057 1.0 17093 -243385 Gprin3 GPRIN family member 3 Novel U 0.00034986413062746243 -0.26035821751608795 1.0 17094 -219105 Zmym5 zinc finger, MYM-type 5 Novel N 0.0003498200876683796 -0.2603586737116103 1.0 17095 -52004 Cdk2ap2 cyclin dependent kinase 2 associated protein 2 Novel N 0.0003497986354245704 -0.2603588959132465 1.0 17096 -109978 Art4 ADP-ribosyltransferase 4 Novel U 0.0003497332125203303 -0.26035957356153794 1.0 17097 -224116 Muc20 mucin 20 Novel U 0.00034970453847187223 -0.26035987056638926 1.0 17098 -100040187 Gm20828 predicted gene, 20828 Novel U 0.00034969200098075495 -0.26036000042931007 1.0 17099 -15476 Hs3st1 heparan sulfate (glucosamine) 3-O-sulfotransferase 1 Novel N 0.00034957307667296463 -0.26036123224338076 1.0 17100 -381337 Fam178b family with sequence similarity 178, member B Novel U 0.00034954063235454315 -0.26036156830056445 1.0 17101 -56844 Tssc4 tumor-suppressing subchromosomal transferable fragment 4 Novel N 0.00034951487382519215 -0.2603618351065647 1.0 17102 -241494 Zfp385b zinc finger protein 385B Novel N 0.000349500411157744 -0.2603619849103987 1.0 17103 -73090 2900092C05Rik RIKEN cDNA 2900092C05 gene Novel U 0.0003492731687433264 -0.26036433867985703 1.0 17104 -67866 Wfdc1 WAP four-disulfide core domain 1 Novel U 0.0003487391413854424 -0.26036987011767476 1.0 17105 -56293 Slc35g3 solute carrier family 35, member G3 Novel U 0.0003487378152909734 -0.2603698838533177 1.0 17106 -277203 Tm4sf19 transmembrane 4 L six family member 19 Novel U 0.0003486601936466506 -0.2603706878557579 1.0 17107 -238726 Fam81b family with sequence similarity 81, member B Novel U 0.00034861543892410543 -0.2603711514237028 1.0 17108 -66421 2410004B18Rik RIKEN cDNA 2410004B18 gene Novel U 0.00034853360628187924 -0.2603719990435209 1.0 17109 -108655 Foxp1 forkhead box P1 Novel U 0.00034850078067081045 -0.26037233905012125 1.0 17110 -210162 Zkscan2 zinc finger with KRAB and SCAN domains 2 Novel U 0.00034831544465291375 -0.26037425875450204 1.0 17111 -114304 Slc28a3 solute carrier family 28 (sodium-coupled nucleoside transporter), member 3 Novel N 0.0003482656015503971 -0.2603747750277194 1.0 17112 -381045 Mix23 mitochondrial matrix import factor 23 Novel U 0.0003479696901344008 -0.2603778400684387 1.0 17113 -217127 Kat7 K(lysine) acetyltransferase 7 Novel U 0.00034791521698908595 -0.26037840429948717 1.0 17114 -13396 Dlx6 distal-less homeobox 6 Novel N 0.000347771936828844 -0.2603798883906769 1.0 17115 -53617 Krt35 keratin 35 Novel U 0.00034759941442872157 -0.260381675372026 1.0 17116 -74600 Mrpl47 mitochondrial ribosomal protein L47 Novel U 0.00034738034300067034 -0.2603839445066761 1.0 17117 -66511 Chtop chromatin target of PRMT1 Novel N 0.0003472772455209925 -0.26038501238698153 1.0 17118 -73061 Cldn34c1 claudin 34C1 Novel U 0.00034723156404290183 -0.26038548555422986 1.0 17119 -20638 Snrpb small nuclear ribonucleoprotein B Novel U 0.0003470935744261571 -0.26038691484614396 1.0 17120 -100043403 Gm14410 predicted gene 14410 Novel U 0.00034701979701060726 -0.26038767903018895 1.0 17121 -108067 Eif2b3 eukaryotic translation initiation factor 2B, subunit 3 Novel U 0.00034700860926501663 -0.26038779491249 1.0 17122 -78354 Lypd8l LY6/PLAUR domain containing 8 like Novel U 0.00034689661788343855 -0.2603889549155388 1.0 17123 -30962 Slc7a9 solute carrier family 7 (cationic amino acid transporter, y+ system), member 9 Novel N 0.00034685354111061876 -0.26038940110333564 1.0 17124 -13096 Cyp2c37 cytochrome P450, family 2. subfamily c, polypeptide 37 Novel U 0.0003467784092854591 -0.2603901793163108 1.0 17125 -619301 Tmem253 transmembrane protein 253 Novel U 0.00034670804793726396 -0.2603909081168424 1.0 17126 -52626 Cdkn2aipnl CDKN2A interacting protein N-terminal like Novel U 0.000346675224866579 -0.2603912480971296 1.0 17127 -235281 Scn3b sodium channel, voltage-gated, type III, beta Novel U 0.0003466338651100496 -0.26039167650012807 1.0 17128 -16682 Krt4 keratin 4 Novel U 0.00034659486877875 -0.26039208042284573 1.0 17129 -232078 Thnsl2 threonine synthase-like 2 (bacterial) Novel U 0.0003465639288016921 -0.260392400898111 1.0 17130 -209212 Osgin2 oxidative stress induced growth inhibitor family member 2 Novel U 0.00034651641779207465 -0.26039289301558677 1.0 17131 -235386 Hykk hydroxylysine kinase 1 Novel N 0.00034639789345619246 -0.26039412068676154 1.0 17132 -26425 Nubp1 nucleotide binding protein 1 Novel N 0.0003461289950493246 -0.2603969059276203 1.0 17133 -56452 Orc6 origin recognition complex, subunit 6 Novel U 0.00034605056048215703 -0.2603977183502887 1.0 17134 -23877 Fiz1 Flt3 interacting zinc finger protein 1 Novel U 0.0003457644622989503 -0.26040068174586534 1.0 17135 -408062 Zfp873 zinc finger protein 873 Novel U 0.00034572735489798014 -0.26040106610310476 1.0 17136 -70511 Eef2kmt eukaryotic elongation factor 2 lysine methyltransferase Novel U 0.00034561974792960364 -0.26040218069254584 1.0 17137 -100043686 Amy2a3 amylase 2a3 Novel U 0.00034532995797023765 -0.2604051823274186 1.0 17138 -72103 Aplf aprataxin and PNKP like factor Novel N 0.0003452162244091228 -0.26040636037590587 1.0 17139 -230163 Aldob aldolase B, fructose-bisphosphate Novel N 0.0003449175028137194 -0.2604094545243711 1.0 17140 -20284 Scrg1 scrapie responsive gene 1 Novel N 0.0003447977859787438 -0.2604106945474123 1.0 17141 -225283 Rprd1a regulation of nuclear pre-mRNA domain containing 1A Novel N 0.000344672240111192 -0.26041199494738126 1.0 17142 -57776 Ttyh1 tweety family member 1 Novel N 0.00034453187240134466 -0.2604134488715055 1.0 17143 -70227 Zfp619 zinc finger protein 619 Novel U 0.00034443047142838397 -0.2604144991794501 1.0 17144 -212070 Clrn3 clarin 3 Novel U 0.0003443950794648812 -0.26041486576824463 1.0 17145 -68233 Fam229a family with sequence similarity 229, member A Novel U 0.0003442681422688167 -0.26041618057954863 1.0 17146 -234593 Ndrg4 N-myc downstream regulated gene 4 Novel U 0.00034423724179262916 -0.2604165006456652 1.0 17147 -233490 Crebzf CREB/ATF bZIP transcription factor Novel U 0.00034420284024663404 -0.2604168569757477 1.0 17148 -77629 Sphkap SPHK1 interactor, AKAP domain containing Novel U 0.0003440556263747276 -0.26041838181219346 1.0 17149 -67077 Catsperz cation channel sperm associated auxiliary subunit zeta Novel U 0.00034398859735060983 -0.26041907609662185 1.0 17150 -77877 6030458C11Rik RIKEN cDNA 6030458C11 gene Novel U 0.0003438947448429751 -0.2604200482178107 1.0 17151 -57321 Terf2ip telomeric repeat binding factor 2, interacting protein Novel U 0.0003437358867799999 -0.2604216936644048 1.0 17152 -227697 Dolk dolichol kinase Novel U 0.0003436637237306555 -0.26042244112689766 1.0 17153 -212974 Pgghg protein glucosylgalactosylhydroxylysine glucosidase Novel N 0.00034340496297564726 -0.2604251213622918 1.0 17154 -67690 Prss37 serine protease 37 Novel N 0.0003433171599083736 -0.26042603082357624 1.0 17155 -320747 Lingo4 leucine rich repeat and Ig domain containing 4 Novel U 0.0003431264498193064 -0.2604280061924095 1.0 17156 -17960 Nat1 N-acetyl transferase 1 Novel U 0.0003426975080371418 -0.26043244915728847 1.0 17157 -54196 Pabpn1 poly(A) binding protein, nuclear 1 Novel N 0.0003426684798518105 -0.26043274983027787 1.0 17158 -319185 H2bc13 H2B clustered histone 13 Novel U 0.0003426106735321308 -0.26043334858623685 1.0 17159 -56068 Ammecr1 AMMECR nuclear protein 1 Novel U 0.0003424336104554842 -0.2604351825997641 1.0 17160 -108105 B3gnt5 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 5 Novel N 0.00034234975187731457 -0.2604360512041601 1.0 17161 -319638 Nt5dc1 5'-nucleotidase domain containing 1 Novel U 0.0003421843721092808 -0.2604377642023608 1.0 17162 -100042295 Gsta13 glutathione S-transferase alpha 13 Novel U 0.00034203871132122633 -0.26043927295201513 1.0 17163 -59013 Hnrnph1 heterogeneous nuclear ribonucleoprotein H1 Novel U 0.0003415404714317844 -0.2604444337044112 1.0 17164 -671003 Pate11 prostate and testis expressed 11 Novel U 0.00034153841765505443 -0.26044445497736307 1.0 17165 -75426 Igfbpl1 insulin-like growth factor binding protein-like 1 Novel U 0.00034140678752707826 -0.2604458183979016 1.0 17166 -110805 Foxe1 forkhead box E1 Novel U 0.00034119331355654656 -0.26044802955427077 1.0 17167 -218268 Eif4e1b eukaryotic translation initiation factor 4E family member 1B Novel U 0.0003410610449876223 -0.2604493995877596 1.0 17168 -226601 Gm4846 predicted gene 4846 Novel U 0.0003410255746241428 -0.2604497669886185 1.0 17169 -319207 Pgbd1 piggyBac transposable element derived 1 Novel U 0.00034099037777338717 -0.26045013155644153 1.0 17170 -18491 Pappa pregnancy-associated plasma protein A Novel N 0.00034087444573279975 -0.2604513323767069 1.0 17171 -69277 3300002I08Rik RIKEN cDNA 3300002I08 gene Novel U 0.00034076167316732237 -0.2604525004712329 1.0 17172 -76416 Polr1has RNA polymerase I subunit H, antisense Novel U 0.00034059336002010854 -0.26045424385327876 1.0 17173 -75580 Zbtb4 zinc finger and BTB domain containing 4 Novel N 0.0003405649616885748 -0.26045453800226326 1.0 17174 -668213 Cdc5lrt9 cell division cycle 5 like, retrotransposed 9 Novel U 0.0003405462798425067 -0.2604547315082107 1.0 17175 -11923 Neurod4 neurogenic differentiation 4 Novel U 0.0003405242202553191 -0.26045496000068963 1.0 17176 -64453 Zfp280b zinc finger protein 280B Novel U 0.00034036571834238435 -0.2604566017582933 1.0 17177 -241134 Nyap2 neuronal tyrosine-phophorylated phosphoinositide 3-kinase adaptor 2 Novel U 0.0003402412641186577 -0.2604578908510515 1.0 17178 -14555 Gpd1 glycerol-3-phosphate dehydrogenase 1 (soluble) Novel U 0.0003401774961778802 -0.2604585513572858 1.0 17179 -210104 Zfp658 zinc finger protein 658 Novel U 0.0003400278070077838 -0.2604601018327889 1.0 17180 -330189 Tmem120b transmembrane protein 120B Novel U 0.0003400222707377229 -0.26046015917729215 1.0 17181 -208908 Ccdc62 coiled-coil domain containing 62 Novel U 0.00033997910213864267 -0.26046060631622237 1.0 17182 -68888 Gkn3 gastrokine 3 Novel U 0.00033983039459046995 -0.2604621466241178 1.0 17183 -70909 4921504E06Rik RIKEN cDNA 4921504E06 gene Novel U 0.00033965386416089446 -0.26046397512050423 1.0 17184 -71715 Dhx35 DEAH-box helicase 35 Novel N 0.00033959789861530925 -0.26046455480978564 1.0 17185 -117147 Acsm1 acyl-CoA synthetase medium-chain family member 1 Novel N 0.0003395397766213567 -0.2604651568354883 1.0 17186 -237987 Otop2 otopetrin 2 Novel U 0.0003395106243899024 -0.26046545879334343 1.0 17187 -58180 Hic2 hypermethylated in cancer 2 Novel U 0.0003394376921701878 -0.26046621422287775 1.0 17188 -66353 Riiad1 regulatory subunit of type II PKA R-subunit (RIIa) domain containing 1 Novel U 0.00033939410631762075 -0.2604666656837058 1.0 17189 -68040 Zfp593 zinc finger protein 593 Novel U 0.00033936500823772615 -0.2604669670806608 1.0 17190 -245902 Ccdc15 coiled-coil domain containing 15 Novel U 0.0003392976428831849 -0.2604676648487886 1.0 17191 -12173 Bnc1 basonuclin zinc finger protein 1 Novel N 0.00033919257614005606 -0.26046875312666007 1.0 17192 -94187 Zfp423 zinc finger protein 423 Novel U 0.0003390685135070875 -0.260470038163334 1.0 17193 -21784 Tff1 trefoil factor 1 Novel N 0.00033903072642743555 -0.26047042956066285 1.0 17194 -18515 Pbx2 pre B cell leukemia homeobox 2 Novel N 0.000338968218875716 -0.26047107701182876 1.0 17195 -12140 Fabp7 fatty acid binding protein 7, brain Novel N 0.00033885406173875314 -0.2604722594477007 1.0 17196 -18113 Nnmt nicotinamide N-methyltransferase Novel N 0.0003386815167343186 -0.2604740466631845 1.0 17197 -545471 Zfp345 zinc finger protein 345 Novel U 0.0003385770574609985 -0.26047512864890365 1.0 17198 -237940 Aoc2 amine oxidase copper containing 2 Novel N 0.000338404398503201 -0.26047691704471265 1.0 17199 -209003 Rbmx2 RNA binding motif protein, X-linked 2 Novel N 0.0003382823498936109 -0.26047818122019867 1.0 17200 -77200 Zfp1007 zinc finger protein 1007 Novel U 0.0003382366054661113 -0.2604786550394749 1.0 17201 -75570 Nhej1 non-homologous end joining factor 1 Novel U 0.00033817787711045035 -0.2604792633458523 1.0 17202 -18674 Slc25a3 solute carrier family 25 (mitochondrial carrier, phosphate carrier), member 3 Novel N 0.00033805462993915337 -0.26048053993600107 1.0 17203 -68295 Aar2 AAR2 splicing factor homolog Novel U 0.00033804768324380475 -0.2604806118896431 1.0 17204 -223648 Ccdc166 coiled-coil domain containing 166 Novel U 0.0003375895708123176 -0.26048535700314884 1.0 17205 -73242 Atat1 alpha tubulin acetyltransferase 1 Novel N 0.0003375344331613453 -0.26048592811712507 1.0 17206 -69900 Mfsd11 major facilitator superfamily domain containing 11 Novel U 0.0003374756348695418 -0.26048653714789866 1.0 17207 -237411 Zfp938 zinc finger protein 938 Novel U 0.00033715499410649904 -0.26048985833438176 1.0 17208 -73603 Trp53tg5 transformation related protein 53 target 5 Novel U 0.0003371211694322398 -0.26049020868924583 1.0 17209 -56720 Tdo2 tryptophan 2,3-dioxygenase Novel U 0.0003371006833077014 -0.2604904208838503 1.0 17210 -70896 Speer1a spermatogenesis associated glutamate (E)-rich protein 1A Novel U 0.0003369750688718752 -0.26049172199404724 1.0 17211 -69790 Med30 mediator complex subunit 30 Novel N 0.00033692690955627007 -0.2604922208266552 1.0 17212 -14120 Fbp2 fructose bisphosphatase 2 Novel N 0.0003369002983322275 -0.26049249646483896 1.0 17213 -623661 Lipt1 lipoyltransferase 1 Novel N 0.0003368331881217427 -0.2604931915901931 1.0 17214 -63872 Zfp296 zinc finger protein 296 Novel U 0.000336810819217135 -0.26049342328657166 1.0 17215 -103220 Ttc41 tetratricopeptide repeat domain 41 Novel U 0.0003363360201407895 -0.26049834123979626 1.0 17216 -545490 Zfp973 zinc finger protein 973 Novel U 0.00033632258965877353 -0.26049848035228745 1.0 17217 -76459 Car12 carbonic anhydrase 12 Novel N 0.0003363219818199308 -0.2604984866482622 1.0 17218 -66061 Dynlt2b dynein light chain Tctex-type 2B Novel U 0.0003362966940729002 -0.26049874857791466 1.0 17219 -104444 Rexo2 RNA exonuclease 2 Novel U 0.00033622369208998447 -0.2604995047300539 1.0 17220 -383491 Prdm14 PR domain containing 14 Novel U 0.00033599175436190557 -0.26050190713341675 1.0 17221 -76355 Tgds TDP-glucose 4,6-dehydratase Novel U 0.00033554098802003835 -0.2605065761563677 1.0 17222 -237954 Lrrc37a leucine rich repeat containing 37A Novel U 0.00033543840917586216 -0.2605076386646636 1.0 17223 -268354 Tafa2 TAFA chemokine like family member 2 Novel U 0.00033534811592698667 -0.2605085739191672 1.0 17224 -72949 Ccnt2 cyclin T2 Novel U 0.0003353070322260884 -0.26050899946279055 1.0 17225 -71755 Dhdh dihydrodiol dehydrogenase Novel U 0.00033513657972915204 -0.2605107650041505 1.0 17226 -68046 2700062C07Rik RIKEN cDNA 2700062C07 gene Novel U 0.0003348758346327652 -0.2605134657932874 1.0 17227 -230751 Oscp1 organic solute carrier partner 1 Novel N 0.0003347434187347243 -0.2605148373528063 1.0 17228 -18986 Pou2f1 POU domain, class 2, transcription factor 1 Novel N 0.00033471319939494196 -0.26051515036373435 1.0 17229 -70997 Spef1 sperm flagellar 1 Novel N 0.0003346437121164816 -0.2605158701106804 1.0 17230 -12289 Cacna1d calcium channel, voltage-dependent, L type, alpha 1D subunit Novel U 0.000334537498046867 -0.26051697027252185 1.0 17231 -75311 4930550C14Rik RIKEN cDNA 4930550C14 gene Novel U 0.00033450907977863794 -0.26051726462800995 1.0 17232 -233733 Galnt18 polypeptide N-acetylgalactosaminyltransferase 18 Novel N 0.00033445878201638116 -0.260517785610578 1.0 17233 -22436 Xdh xanthine dehydrogenase Novel U 0.0003342896192387257 -0.260519537793068 1.0 17234 -385674 Zfp174 zinc finger protein 174 Novel N 0.0003341128890067567 -0.260521368359001 1.0 17235 -12193 Zfp36l2 zinc finger protein 36, C3H type-like 2 Novel U 0.0003340371438073927 -0.2605221529252861 1.0 17236 -666203 Pramel50 PRAME like 50 Novel U 0.00033393523275749995 -0.2605232085165907 1.0 17237 -75221 Dpp3 dipeptidylpeptidase 3 Novel N 0.00033386547699188184 -0.2605239310445179 1.0 17238 -13395 Dlx5 distal-less homeobox 5 Novel U 0.00033374890569475127 -0.26052513848618153 1.0 17239 -67306 Zc2hc1a zinc finger, C2HC-type containing 1A Novel U 0.0003337151537475254 -0.26052548808774134 1.0 17240 -381399 Bpifb4 BPI fold containing family B, member 4 Novel U 0.0003336946108184832 -0.2605257008707251 1.0 17241 -234358 Zfp930 zinc finger protein 930 Novel U 0.0003335365882682319 -0.2605273376631058 1.0 17242 -320806 Gfm2 G elongation factor, mitochondrial 2 Novel U 0.00033340151989470366 -0.2605287366968787 1.0 17243 -76770 Csta2 cystatin A family member 2 Novel U 0.0003334005257605634 -0.26052874699408746 1.0 17244 -497097 Xkr4 X-linked Kx blood group related 4 Novel U 0.0003330826244954369 -0.2605320398049412 1.0 17245 -66993 Smarcd3 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 3 Novel U 0.0003329678121386965 -0.26053322902755804 1.0 17246 -71131 Zfp689 zinc finger protein 689 Novel U 0.00033288544371124114 -0.2605340821970219 1.0 17247 -630537 Dcpp2 demilune cell and parotid protein 2 Novel U 0.00033277029335797905 -0.26053527492059564 1.0 17248 -18843 Bpifa1 BPI fold containing family A, member 1 Novel U 0.00033259529506434637 -0.2605370875471683 1.0 17249 -66766 Tmem239 transmembrane 239 Novel U 0.0003325703374094447 -0.2605373460577374 1.0 17250 -545938 Zfp607a zinc finger protein 607A Novel U 0.0003325407007375651 -0.2605376530334104 1.0 17251 -71793 Ints12 integrator complex subunit 12 Novel N 0.00033249516859601126 -0.26053812465383586 1.0 17252 -67578 Patl2 protein associated with topoisomerase II homolog 2 (yeast) Novel N 0.0003324380506592989 -0.26053871627954667 1.0 17253 -232539 Klhl42 kelch-like 42 Novel U 0.0003322175042758311 -0.2605410006917366 1.0 17254 -240064 Zfp799 zinc finger protein 799 Novel U 0.00033204684088887466 -0.2605427684174884 1.0 17255 -68857 Dtwd2 DTW domain containing 2 Novel N 0.000332009938599374 -0.26054315065018996 1.0 17256 -18946 Pnliprp1 pancreatic lipase related protein 1 Novel U 0.0003318114975589827 -0.26054520609596293 1.0 17257 -50708 H1f2 H1.2 linker histone, cluster member Novel U 0.00033180643331799013 -0.26054525855120464 1.0 17258 -192198 Lrrc4 leucine rich repeat containing 4 Novel U 0.0003317365864216413 -0.26054598202306095 1.0 17259 -19063 Ppt1 palmitoyl-protein thioesterase 1 Novel U 0.00033165046843464216 -0.2605468740303393 1.0 17260 -107815 Scml2 Scm polycomb group protein like 2 Novel U 0.0003311803854456908 -0.2605517431344857 1.0 17261 -241944 Zfp267 zinc finger protein 267 Novel U 0.0003311158386893555 -0.260552411707666 1.0 17262 -211798 Mfsd9 major facilitator superfamily domain containing 9 Novel U 0.00033093048940112586 -0.2605543315495004 1.0 17263 -110891 Slc8a2 solute carrier family 8 (sodium/calcium exchanger), member 2 Novel N 0.0003307833330347674 -0.26055585579030566 1.0 17264 -208043 Setd1b SET domain containing 1B Novel U 0.00033070295638881314 -0.2605566883289622 1.0 17265 -13723 Emb embigin Novel U 0.0003306712232506079 -0.2605570170197646 1.0 17266 -68904 Abhd13 abhydrolase domain containing 13 Novel U 0.00033062249975432845 -0.26055752169613733 1.0 17267 -100034361 Mfap1b microfibrillar-associated protein 1B Novel U 0.0003306125498556857 -0.2605576247568604 1.0 17268 -74504 Fam53a family with sequence similarity 53, member A Novel U 0.0003303670591716739 -0.26056016754129535 1.0 17269 -110308 Krt5 keratin 5 Novel U 0.0003302688958001716 -0.2605611843142704 1.0 17270 -108653 Rimklb ribosomal modification protein rimK-like family member B Novel N 0.0003300467187216652 -0.2605634856171459 1.0 17271 -228151 Fads2b fatty acid desaturase 2B Novel U 0.00033002165778545615 -0.2605637451974993 1.0 17272 -668964 Btbd35f17 BTB domain containing 35, family member 17 Novel U 0.0003299753719074354 -0.26056422462510226 1.0 17273 -434402 Gm5617 predicted gene 5617 Novel U 0.00032959769635793 -0.2605681365760286 1.0 17274 -216441 Slc26a10 solute carrier family 26, member 10 Novel U 0.00032953506338196184 -0.26056878532633476 1.0 17275 -71934 Car13 carbonic anhydrase 13 Novel U 0.00032938320814122733 -0.2605703582379263 1.0 17276 -269252 Gtf3c4 general transcription factor IIIC, polypeptide 4 Novel N 0.0003293756457894712 -0.26057043656851725 1.0 17277 -20390 Sftpd surfactant associated protein D Novel U 0.00032918849127762417 -0.26057237510879855 1.0 17278 -232210 Hmces 5-hydroxymethylcytosine (hmC) binding, ES cell specific Novel N 0.0003289381938671788 -0.26057496768114785 1.0 17279 -503847 Ear14 eosinophil-associated, ribonuclease A family, member 14 Novel U 0.00032888141014784423 -0.26057555584504605 1.0 17280 -353211 Prune2 prune homolog 2 Novel U 0.00032865471128276294 -0.26057790398443825 1.0 17281 -75597 Ndufaf2 NADH:ubiquinone oxidoreductase complex assembly factor 2 Novel N 0.0003282307794468503 -0.26058229505645863 1.0 17282 -73300 1700031F05Rik RIKEN cDNA 1700031F05 gene Novel U 0.00032802549376714237 -0.2605844213987807 1.0 17283 -319162 H2ac25 H2A clustered histone 25 Novel U 0.0003280027611583523 -0.2605846568623952 1.0 17284 -384763 Zfp667 zinc finger protein 667 Novel U 0.0003279045075145443 -0.2605856745704078 1.0 17285 -12716 Ckmt1 creatine kinase, mitochondrial 1, ubiquitous Novel U 0.0003278620735182332 -0.26058611410034666 1.0 17286 -109284 R3hdm4 R3H domain containing 4 Novel U 0.00032779707271836405 -0.26058678737649493 1.0 17287 -18478 Pah phenylalanine hydroxylase Novel N 0.0003276925792144821 -0.2605878697167731 1.0 17288 -12293 Cacna2d1 calcium channel, voltage-dependent, alpha2/delta subunit 1 Novel U 0.000327526944612096 -0.2605895853545397 1.0 17289 -100041296 Pramel47 PRAME like 47 Novel U 0.0003272571165626385 -0.26059238022460585 1.0 17290 -57247 Zfp276 zinc finger protein (C2H2 type) 276 Novel U 0.0003271379276091142 -0.26059361477986837 1.0 17291 -319167 H2ac11 H2A clustered histone 11 Novel U 0.00032695728276329683 -0.26059548589324294 1.0 17292 -57138 Slc12a5 solute carrier family 12, member 5 Novel U 0.0003269508096788005 -0.2605955529412394 1.0 17293 -17193 Mbd4 methyl-CpG binding domain protein 4 Novel U 0.0003269116558847536 -0.260595958494951 1.0 17294 -407795 Smim31 small integral membrane protein 31 Novel U 0.0003268594963242672 -0.26059649876196384 1.0 17295 -68223 Fam24a family with sequence similarity 24, member A Novel U 0.0003266376483985662 -0.2605987966554854 1.0 17296 -66419 Mrpl11 mitochondrial ribosomal protein L11 Novel U 0.00032653158066202846 -0.2605998953016137 1.0 17297 -216551 Lgalsl galectin like Novel U 0.00032641361115545253 -0.26060111722588475 1.0 17298 -106585 Ankrd12 ankyrin repeat domain 12 Novel U 0.00032617604519194807 -0.26060357792632516 1.0 17299 -16601 Klf9 Kruppel-like transcription factor 9 Novel U 0.0003261103120796575 -0.2606042587877414 1.0 17300 -20841 Zfp143 zinc finger protein 143 Novel N 0.00032601615324441915 -0.2606052340818615 1.0 17301 -69428 Spmip3 sperm microtubule inner protein 3 Novel U 0.00032592865008582996 -0.26060614043670166 1.0 17302 -72723 Zfp74 zinc finger protein 74 Novel U 0.00032589442786455425 -0.2606064949093446 1.0 17303 -210135 Zfp180 zinc finger protein 180 Novel U 0.00032587087456137083 -0.26060673887368474 1.0 17304 -271036 Catsperb cation channel sperm associated auxiliary subunit beta Novel U 0.00032560638258374635 -0.2606094784728943 1.0 17305 -319151 H3c6 H3 clustered histone 6 Novel U 0.000325591027279475 -0.26060963752263117 1.0 17306 -15186 Hdc histidine decarboxylase Novel N 0.00032558987176917143 -0.2606096494913689 1.0 17307 -240025 Dact2 dishevelled-binding antagonist of beta-catenin 2 Novel U 0.00032529624425582855 -0.2606126908754996 1.0 17308 -664609 Rhox4a reproductive homeobox 4A Novel U 0.0003252261333565274 -0.2606134170818898 1.0 17309 -77889 Lbh limb-bud and heart Novel N 0.00032513979909392 -0.26061431132934376 1.0 17310 -70640 Dcp2 decapping mRNA 2 Novel N 0.00032512292600376966 -0.2606144861002569 1.0 17311 -27966 Rrp9 ribosomal RNA processing 9, U3 small nucleolar RNA binding protein Novel N 0.0003250520580182148 -0.2606152201485216 1.0 17312 -330301 Zfp786 zinc finger protein 786 Novel U 0.00032495120424385585 -0.26061626478860106 1.0 17313 -14915 Guca2a guanylate cyclase activator 2a (guanylin) Novel U 0.00032484122283311077 -0.26061740397243804 1.0 17314 -330409 Cecr2 CECR2, histone acetyl-lysine reader Novel U 0.00032483715210438613 -0.2606174461369124 1.0 17315 -73681 Trmt11 tRNA methyltransferase 11 Novel U 0.0003247978506284773 -0.2606178532203079 1.0 17316 -22127 Tsx testis specific X-linked gene Novel U 0.0003245076780396446 -0.2606208588184441 1.0 17317 -225923 Oosp3 oocyte secreted protein 3 Novel U 0.00032446185262241794 -0.2606213334766093 1.0 17318 -224092 Lsg1 large 60S subunit nuclear export GTPase 1 Novel N 0.00032445510862731994 -0.26062140333068884 1.0 17319 -319618 Dcp1b decapping mRNA 1B Novel U 0.0003243937169102201 -0.2606220392240764 1.0 17320 -17110 Lyz1 lysozyme 1 Novel U 0.0003243634452176886 -0.2606223527772725 1.0 17321 -71664 Tmt1b thiol methyltransferase 1B Novel U 0.00032418777286034547 -0.26062417238577495 1.0 17322 -218975 Mapk1ip1l mitogen-activated protein kinase 1 interacting protein 1-like Novel U 0.0003239086678301937 -0.2606270633465022 1.0 17323 -230824 Grhl3 grainyhead like transcription factor 3 Novel U 0.000323881047580109 -0.26062734943614463 1.0 17324 -76382 1700012A03Rik RIKEN cDNA 1700012A03 gene Novel U 0.0003237241096188551 -0.2606289749943882 1.0 17325 -93746 Gprc5d G protein-coupled receptor, family C, group 5, member D Novel U 0.00032360687745240733 -0.2606301892813145 1.0 17326 -17536 Meis2 Meis homeobox 2 Novel U 0.00032336937642621713 -0.2606326493091363 1.0 17327 -14403 Gabrd gamma-aminobutyric acid (GABA) A receptor, subunit delta Novel U 0.0003233155348897699 -0.2606332069980009 1.0 17328 -216395 Rxylt1 ribitol xylosyltransferase 1 Novel N 0.00032316024537149305 -0.26063481548172635 1.0 17329 -432450 Nkain2 Na+/K+ transporting ATPase interacting 2 Novel U 0.00032302373264255245 -0.2606362294760851 1.0 17330 -238673 Zfp367 zinc finger protein 367 Novel N 0.0003229498158628731 -0.2606369951036591 1.0 17331 -66528 Smim5 small integral membrane protein 5 Novel U 0.00032281220597170693 -0.26063842046238817 1.0 17332 -319157 H4c6 H4 clustered histone 6 Novel U 0.00032274032337378003 -0.2606391650199745 1.0 17333 -331524 Xkrx X-linked Kx blood group related, X-linked Novel U 0.000322615465131681 -0.2606404582975416 1.0 17334 -53883 Celsr2 cadherin, EGF LAG seven-pass G-type receptor 2 Novel U 0.0003225609983540236 -0.2606410224626341 1.0 17335 -228801 Bpifb1 BPI fold containing family B, member 1 Novel U 0.00032240565854437257 -0.26064263146727595 1.0 17336 -547097 B020011L13Rik RIKEN cDNA B020011L13 gene Novel U 0.00032239676174893565 -0.26064272361999063 1.0 17337 -433466 Jmjd7 jumonji domain containing 7 Novel N 0.00032233939866911307 -0.26064331778488575 1.0 17338 -72472 Slc16a10 solute carrier family 16 (monocarboxylic acid transporters), member 10 Novel N 0.00032227812524516494 -0.26064395245299676 1.0 17339 -233065 Alkbh6 alkB homolog 6 Novel U 0.0003221311618842791 -0.2606454746946576 1.0 17340 -210554 Hus1b HUS1 checkpoint clamp component B Novel U 0.00032211380765785407 -0.26064565444916443 1.0 17341 -70408 Polr3f polymerase (RNA) III (DNA directed) polypeptide F Novel U 0.0003221082408195436 -0.2606457121102927 1.0 17342 -78783 Brpf1 bromodomain and PHD finger containing, 1 Novel U 0.00032194858744601795 -0.26064736579468734 1.0 17343 -71706 Slc46a3 solute carrier family 46, member 3 Novel N 0.00032146984448937796 -0.26065232459849436 1.0 17344 -71773 Ugt2b1 UDP glucuronosyltransferase 2 family, polypeptide B1 Novel U 0.0003213737242651811 -0.2606533202086168 1.0 17345 -14473 Gc vitamin D binding protein Novel N 0.00032136260773504567 -0.2606534353532705 1.0 17346 -240476 Zfp407 zinc finger protein 407 Novel N 0.00032131845654675777 -0.2606538926698274 1.0 17347 -16848 Lfng LFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase Novel U 0.0003212481886508563 -0.26065462050238325 1.0 17348 -228796 Bpifb6 BPI fold containing family B, member 6 Novel U 0.00032102674431647724 -0.2606569142155191 1.0 17349 -21922 Clec3b C-type lectin domain family 3, member b Novel N 0.00032096686919231513 -0.26065753440008693 1.0 17350 -64296 Abhd8 abhydrolase domain containing 8 Novel U 0.0003208569963995748 -0.26065867245886226 1.0 17351 -75304 4930563E22Rik RIKEN cDNA 4930563E22 gene Novel U 0.00032082569377938453 -0.2606589966903732 1.0 17352 -54646 Ppp1r3f protein phosphatase 1, regulatory subunit 3F Novel U 0.00032052917011984676 -0.260662068072691 1.0 17353 -245867 Pcmtd2 protein-L-isoaspartate (D-aspartate) O-methyltransferase domain containing 2 Novel U 0.0003204913683544805 -0.26066245962213397 1.0 17354 -19215 Ptgds prostaglandin D2 synthase (brain) Novel N 0.00032027663026288196 -0.26066468387222763 1.0 17355 -69577 Fastkd3 FAST kinase domains 3 Novel N 0.00032008368548558857 -0.2606666823878881 1.0 17356 -22697 Zscan21 zinc finger and SCAN domain containing 21 Novel N 0.00032003023455148496 -0.2606672360309064 1.0 17357 -403180 Ccdc121rt1 coiled-coil domain containing 121, retrogene 1 Novel U 0.00031992758776891114 -0.260668299242906 1.0 17358 -238505 Mtr 5-methyltetrahydrofolate-homocysteine methyltransferase Novel U 0.0003199183044191436 -0.26066839539953773 1.0 17359 -54380 Smarcal1 SWI/SNF related matrix associated, actin dependent regulator of chromatin, subfamily a-like 1 Novel U 0.00031986311032014867 -0.2606689670982007 1.0 17360 -226245 Plekhs1 pleckstrin homology domain containing, family S member 1 Novel U 0.00031968389530762667 -0.260670823401409 1.0 17361 -11922 Neurod6 neurogenic differentiation 6 Novel U 0.0003196744348944349 -0.2606709213920579 1.0 17362 -67078 Pgp phosphoglycolate phosphatase Novel U 0.0003195397323518115 -0.26067231663656626 1.0 17363 -17147 Mageb3 MAGE family member B3 Novel U 0.00031936059100146454 -0.2606741721767842 1.0 17364 -15485 Hsd17b1 hydroxysteroid (17-beta) dehydrogenase 1 Novel N 0.0003193578077637178 -0.2606742010054693 1.0 17365 -240869 Zbtb37 zinc finger and BTB domain containing 37 Novel U 0.000319296723608985 -0.260674833713136 1.0 17366 -20129 Rptn repetin Novel U 0.0003192900067298286 -0.26067490328634946 1.0 17367 -72154 Zfp157 zinc finger protein 157 Novel U 0.00031924449907333495 -0.26067537465315943 1.0 17368 -74352 Zfp84 zinc finger protein 84 Novel U 0.0003192157481402713 -0.260675672454379 1.0 17369 -211378 Zfp1008 zinc finger protein 1008 Novel U 0.0003191656534222901 -0.26067619133382103 1.0 17370 -668501 Zfp507 zinc finger protein 507 Novel U 0.0003189466244542981 -0.26067846002867134 1.0 17371 -51875 Tmem141 transmembrane protein 141 Novel U 0.00031893719478858927 -0.26067855770083875 1.0 17372 -233016 Blvrb biliverdin reductase B Novel N 0.00031886427082566515 -0.2606793130448495 1.0 17373 -93706 Pcdhgc3 protocadherin gamma subfamily C, 3 Novel U 0.0003188498004291258 -0.26067946292874117 1.0 17374 -114565 Zbtb21 zinc finger and BTB domain containing 21 Novel N 0.00031864254772971613 -0.26068160964538856 1.0 17375 -665902 Zscan4f zinc finger and SCAN domain containing 4F Novel U 0.0003186338944996537 -0.2606816992752611 1.0 17376 -72184 Klhl35 kelch-like 35 Novel U 0.00031861563606200055 -0.2606818883955581 1.0 17377 -215332 Slc36a3 solute carrier family 36 (proton/amino acid symporter), member 3 Novel U 0.00031856669825478006 -0.2606823952917565 1.0 17378 -319196 Ankef1 ankyrin repeat and EF-hand domain containing 1 Novel U 0.00031833910467601184 -0.26068475269856367 1.0 17379 -66165 Bccip BRCA2 and CDKN1A interacting protein Novel U 0.0003183308048463271 -0.26068483866792674 1.0 17380 -632778 Erich4 glutamate rich 4 Novel U 0.00031828970485713764 -0.2606852643802637 1.0 17381 -237758 Zfp454 zinc finger protein 454 Novel U 0.00031823507129448945 -0.2606858302729096 1.0 17382 -16499 Kcnab3 potassium voltage-gated channel, shaker-related subfamily, beta member 3 Novel N 0.0003180365731436927 -0.26068788631023027 1.0 17383 -27756 Lsm2 LSM2 homolog, U6 small nuclear RNA and mRNA degradation associated Novel N 0.0003179444887888007 -0.2606888401169511 1.0 17384 -332397 Nanos1 nanos C2HC-type zinc finger 1 Novel N 0.0003179394293515264 -0.2606888925224361 1.0 17385 -26949 Vat1 vesicle amine transport 1 Novel N 0.00031781046109365135 -0.26069022837141154 1.0 17386 -76900 Ssbp4 single stranded DNA binding protein 4 Novel U 0.00031778395765128057 -0.2606905028931964 1.0 17387 -23937 Mab21l2 mab-21-like 2 Novel N 0.00031770026299557917 -0.2606913697996888 1.0 17388 -71854 Dpep3 dipeptidase 3 Novel U 0.000317637010567976 -0.2606920249662546 1.0 17389 -56739 Rec8 REC8 meiotic recombination protein Novel U 0.0003174296012178992 -0.2606941733054845 1.0 17390 -14417 Gad2 glutamic acid decarboxylase 2 Novel N 0.0003174012822894462 -0.26069446663201445 1.0 17391 -17528 Mpz myelin protein zero Novel U 0.0003173570111224371 -0.26069492519130705 1.0 17392 -232976 Zfp574 zinc finger protein 574 Novel U 0.00031716542750347636 -0.26069690960813424 1.0 17393 -208936 Adamts18 ADAM metallopeptidase with thrombospondin type 1 motif 18 Novel U 0.0003171597234460916 -0.2606969686905731 1.0 17394 -77632 Pramel13 PRAME like 13 Novel U 0.00031708140989793133 -0.2606977798597305 1.0 17395 -212647 Aldh4a1 aldehyde dehydrogenase 4 family, member A1 Novel U 0.00031700590546364924 -0.2606985619321788 1.0 17396 -72047 Ddx42 DEAD box helicase 42 Novel N 0.0003169559416612595 -0.26069907945560145 1.0 17397 -74686 Slc25a54 solute carrier family 25, member 54 Novel U 0.00031679914460927143 -0.2607007035543115 1.0 17398 -76832 Hyls1 HYLS1, centriolar and ciliogenesis associated Novel U 0.0003166313227604991 -0.26070244184750424 1.0 17399 -109151 Chd9 chromodomain helicase DNA binding protein 9 Novel U 0.00031652173296231416 -0.2607035769750313 1.0 17400 -14201 Fhl3 four and a half LIM domains 3 Novel N 0.0003163731159901897 -0.260705116344743 1.0 17401 -244198 Olfml1 olfactomedin-like 1 Novel U 0.0003163070735461952 -0.2607058004102069 1.0 17402 -403183 Mettl21e methyltransferase like 21E Novel U 0.00031621536004163665 -0.2607067503756722 1.0 17403 -12295 Cacnb1 calcium channel, voltage-dependent, beta 1 subunit Novel U 0.0003161790996740332 -0.26070712595936785 1.0 17404 -26970 Pla2g2e phospholipase A2, group IIE Novel U 0.00031615723768338113 -0.26070735240514836 1.0 17405 -71837 1700003E16Rik RIKEN cDNA 1700003E16 gene Novel U 0.00031600603350310125 -0.2607089185730771 1.0 17406 -23834 Cdc6 cell division cycle 6 Novel U 0.00031594878012513304 -0.260709511601684 1.0 17407 -319719 Simc1 SUMO-interacting motifs containing 1 Novel U 0.000315900676126613 -0.2607100098613193 1.0 17408 -100043387 Gm14305 predicted gene 14305 Novel U 0.0003157714247238788 -0.2607113486430999 1.0 17409 -17766 Nudt1 nudix hydrolase 1 Novel N 0.0003155984264478092 -0.2607131405535565 1.0 17410 -13107 Cyp2f2 cytochrome P450, family 2, subfamily f, polypeptide 2 Novel N 0.0003154460456767852 -0.26071471890857345 1.0 17411 -11932 Atp1b2 ATPase, Na+/K+ transporting, beta 2 polypeptide Novel U 0.00031531519658200766 -0.26071607423919574 1.0 17412 -546336 Prrg1 proline rich Gla (G-carboxyglutamic acid) 1 Novel U 0.00031514441311851434 -0.2607178432086964 1.0 17413 -245536 Gm614 predicted gene 614 Novel U 0.0003150853300223671 -0.26071845518946407 1.0 17414 -319161 H4c18 H4 clustered histone 18 Novel U 0.00031483628046853016 -0.2607210348365556 1.0 17415 -504193 Npcd neuronal pentraxin chromo domain Novel U 0.0003148041739234822 -0.26072136739509383 1.0 17416 -21350 Tal2 T cell acute lymphocytic leukemia 2 Novel U 0.00031479524593539784 -0.2607214598709009 1.0 17417 -624957 H2ab3 H2A.B variant histone 3 Novel U 0.0003145952241970576 -0.26072353168949125 1.0 17418 -100037282 Rsph3b radial spoke 3B homolog (Chlamydomonas) Novel U 0.0003145530917764235 -0.2607239680957192 1.0 17419 -622675 Zfp827 zinc finger protein 827 Novel U 0.0003145158835875204 -0.26072435349691664 1.0 17420 -15572 Elavl4 ELAV like RNA binding protein 4 Novel N 0.0003144888704111112 -0.26072463329850987 1.0 17421 -14079 Fabp2 fatty acid binding protein 2, intestinal Novel N 0.00031447399707367786 -0.2607247873560501 1.0 17422 -67179 Ccdc25 coiled-coil domain containing 25 Novel N 0.0003141667738494013 -0.2607279695641077 1.0 17423 -72865 Rtl8c retrotransposon Gag like 8C Novel U 0.0003141323633678591 -0.2607283259867444 1.0 17424 -101831 Faap24 Fanconi anemia core complex associated protein 24 Novel N 0.00031412149965953537 -0.260728438512678 1.0 17425 -67419 Armh4 armadillo-like helical domain containing 4 Novel N 0.0003139312727264743 -0.26073040887699733 1.0 17426 -59057 Zfp24 zinc finger protein 24 Novel N 0.000313887516415566 -0.26073086210342733 1.0 17427 -69871 Ppp1r35 protein phosphatase 1, regulatory subunit 35 Novel U 0.0003137134505388693 -0.260732665072056 1.0 17428 -69906 Slc25a32 solute carrier family 25, member 32 Novel N 0.00031354617009271226 -0.26073439775741825 1.0 17429 -27425 Atp5mg ATP synthase membrane subunit g Novel U 0.00031337994116350864 -0.2607361195512025 1.0 17430 -67687 1700011L22Rik RIKEN cDNA 1700011L22 gene Novel U 0.00031320376783207116 -0.2607379443487781 1.0 17431 -217116 Spata20 spermatogenesis associated 20 Novel U 0.00031317848589112774 -0.2607382062182913 1.0 17432 -69702 Ndufaf1 NADH:ubiquinone oxidoreductase complex assembly factor 1 Novel N 0.00031311611106821685 -0.2607388522946566 1.0 17433 -109082 Fbxw17 F-box and WD-40 domain protein 17 Novel U 0.00031296504429469374 -0.26074041703933065 1.0 17434 -67607 Zfp788 zinc finger protein 788 Novel U 0.00031295439129546754 -0.26074052738274645 1.0 17435 -628308 Zfp970 zinc finger protein 970 Novel U 0.0003129164504624523 -0.26074092037264757 1.0 17436 -381406 Trp53rka transformation related protein 53 regulating kinase A Novel U 0.000312888920215238 -0.2607412055300432 1.0 17437 -223723 Ttll12 tubulin tyrosine ligase-like family, member 12 Novel U 0.0003126953463480532 -0.2607432105617961 1.0 17438 -171211 Edaradd EDAR associated via death domain Novel U 0.00031259116429218926 -0.26074428967610597 1.0 17439 -668115 Cwc22rt7 CWC22 spliceosome-associated protein, retrotransposed 7 Novel U 0.0003125814619283501 -0.26074439017287165 1.0 17440 -209601 Erich3 glutamate rich 3 Novel U 0.00031256168425550734 -0.2607445950293568 1.0 17441 -59049 Slc22a17 solute carrier family 22 (organic cation transporter), member 17 Novel N 0.000312287601259677 -0.26074743397201766 1.0 17442 -66328 Scp2d1 SCP2 sterol-binding domain containing 1 Novel U 0.00031221476766208966 -0.26074818838002717 1.0 17443 -76645 Pkd1l2 polycystic kidney disease 1 like 2 Novel U 0.00031215819910513943 -0.2607487743152805 1.0 17444 -66336 Cenpp centromere protein P Novel U 0.0003119517318878349 -0.26075091289593005 1.0 17445 -212933 Pm20d1 peptidase M20 domain containing 1 Novel N 0.00031186548629279974 -0.26075180622496824 1.0 17446 -107986 Ddb2 damage specific DNA binding protein 2 Novel U 0.00031181779941792025 -0.26075230016405065 1.0 17447 -11992 Auh AU RNA binding protein/enoyl-coenzyme A hydratase Novel N 0.00031180637735603696 -0.26075241847339214 1.0 17448 -100041953 Sap18b Sin3-associated polypeptide 18B Novel U 0.0003115800619529237 -0.26075476264089786 1.0 17449 -252830 Obox6 oocyte specific homeobox 6 Novel U 0.00031153648099936827 -0.2607552140509821 1.0 17450 -68055 Dmac2l distal membrane arm assembly component 2 like Novel U 0.00031148007401895264 -0.260755798312631 1.0 17451 -67843 Slc35a4 solute carrier family 35, member A4 Novel U 0.00031131615343938523 -0.2607574961966056 1.0 17452 -102308570 Lbhd1 LBH domain containing 1 Novel U 0.0003111048193396588 -0.2607596851882633 1.0 17453 -268481 Krt222 keratin 222 Novel U 0.0003110494306688883 -0.2607602589022944 1.0 17454 -75275 Tmco5b transmembrane and coiled-coil domains 5B Novel U 0.00031090020988143837 -0.2607618045263054 1.0 17455 -23894 Gtf2h2 general transcription factor II H, polypeptide 2 Novel U 0.0003108174754503649 -0.2607626614868227 1.0 17456 -330490 Nlrp9c NLR family, pyrin domain containing 9C Novel U 0.0003106635236933803 -0.2607642561140607 1.0 17457 -100041596 Gal3st2b galactose-3-O-sulfotransferase 2B Novel U 0.0003106028336298843 -0.26076488473974324 1.0 17458 -52815 Ldhd lactate dehydrogenase D Novel N 0.0003105806291620771 -0.2607651147328909 1.0 17459 -21401 Tcea3 transcription elongation factor A (SII), 3 Novel U 0.000310562838534184 -0.2607652990076298 1.0 17460 -102637973 B3galt9 beta-1,3-galactosyltransferase 9 Novel U 0.0003105526950447029 -0.26076540407356036 1.0 17461 -14958 H1f0 H1.0 linker histone Novel U 0.00031044076948042663 -0.2607665633948758 1.0 17462 -75894 Adal adenosine deaminase-like Novel U 0.0003104220853401991 -0.26076675692458606 1.0 17463 -228731 Nkx2-4 NK2 homeobox 4 Novel U 0.0003104075625178339 -0.2607669073515027 1.0 17464 -56515 Rnf138 ring finger protein 138 Novel U 0.00031029727643905623 -0.2607680496910812 1.0 17465 -100861640 Rhox4a2 reproductive homeobox 4A2 Novel U 0.00031028766029809525 -0.26076814929475317 1.0 17466 -15432 Hoxd12 homeobox D12 Novel U 0.00031001000561291773 -0.26077102523285484 1.0 17467 -54382 Tcstv1a 2 cell stage variable group member 1A Novel U 0.00030998332890016313 -0.26077130154936856 1.0 17468 -665001 Gm14391 predicted gene 14391 Novel U 0.0003098623504728236 -0.26077255463994203 1.0 17469 -170734 Zscan5b zinc finger and SCAN domain containing 5B Novel U 0.0003098567967089201 -0.26077261216564596 1.0 17470 -57275 Lenep lens epithelial protein Novel N 0.00030981653657284787 -0.2607730291788119 1.0 17471 -235610 Atrip ATR interacting protein Novel U 0.00030953642295197283 -0.26077593058648874 1.0 17472 -226169 Pprc1 peroxisome proliferative activated receptor, gamma, coactivator-related 1 Novel U 0.0003095353828396491 -0.260775941359938 1.0 17473 -100040016 Rhox2e reproductive homeobox 2E Novel U 0.000309413453755761 -0.26077720429738066 1.0 17474 -382074 Foxr1 forkhead box R1 Novel N 0.000309238254567317 -0.2607790190048152 1.0 17475 -69747 Zswim7 zinc finger SWIM-type containing 7 Novel N 0.00030920754626961953 -0.2607793370803533 1.0 17476 -56711 Plag1 pleiomorphic adenoma gene 1 Novel U 0.00030917755504963836 -0.26077964772842394 1.0 17477 -52466 Slc46a1 solute carrier family 46, member 1 Novel U 0.0003091081869939611 -0.2607803662404643 1.0 17478 -69806 Slc39a11 solute carrier family 39 (metal ion transporter), member 11 Novel U 0.00030904156830700093 -0.2607810562746338 1.0 17479 -54201 Zfp316 zinc finger protein 316 Novel U 0.000308759703101491 -0.2607839758251667 1.0 17480 -243931 Tshz3 teashirt zinc finger family member 3 Novel N 0.0003083808245605444 -0.26078790023663884 1.0 17481 -75424 Zfp820 zinc finger protein 820 Novel U 0.0003082597657289968 -0.26078915416003645 1.0 17482 -94192 C1galt1 core 1 synthase, glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase, 1 Novel U 0.0003082500515862132 -0.26078925477880804 1.0 17483 -195733 Grhl1 grainyhead like transcription factor 1 Novel N 0.00030822162941374786 -0.2607895491747361 1.0 17484 -26423 Nr5a1 nuclear receptor subfamily 5, group A, member 1 Novel U 0.0003082050753778264 -0.260789720640896 1.0 17485 -17749 Polr2k polymerase (RNA) II (DNA directed) polypeptide K Novel N 0.0003081896261691554 -0.26078988066329156 1.0 17486 -225152 Gjd4 gap junction protein, delta 4 Novel U 0.0003080749686248075 -0.26079106828236676 1.0 17487 -320816 Ankrd16 ankyrin repeat domain 16 Novel U 0.00030803408188671654 -0.26079149178585587 1.0 17488 -80838 H1f1 H1.1 linker histone, cluster member Novel U 0.0003079888580321062 -0.26079196021305523 1.0 17489 -15388 Hnrnpl heterogeneous nuclear ribonucleoprotein L Novel N 0.00030786013095012447 -0.2607932935639387 1.0 17490 -19687 Rfc1 replication factor C (activator 1) 1 Novel U 0.0003078488279151358 -0.26079341064040357 1.0 17491 -73449 Smim33 small integral membrane protein 33 Novel U 0.000307728423029761 -0.2607946577902482 1.0 17492 -16351 Ipp IAP promoted placental gene Novel U 0.0003072450840627662 -0.2607996641993794 1.0 17493 -546849 AAdacl4fm3 AADACL4 family member 3 Novel U 0.0003072268259529869 -0.2607998533162803 1.0 17494 -211389 Suox sulfite oxidase Novel U 0.00030710666687683833 -0.260801097920041 1.0 17495 -242642 Hpdl 4-hydroxyphenylpyruvate dioxygenase-like Novel U 0.0003070946682466032 -0.26080122220145857 1.0 17496 -73390 Msl3l2 MSL3 like 2 Novel U 0.00030706044975510756 -0.2608015766354686 1.0 17497 -233802 Thumpd1 THUMP domain containing 1 Novel N 0.0003068348555796098 -0.2608039133325224 1.0 17498 -433702 Ncbp1 nuclear cap binding protein subunit 1 Novel U 0.0003068000522477159 -0.26080427382429006 1.0 17499 -66857 Plbd1 phospholipase B domain containing 1 Novel U 0.0003067225458389328 -0.26080507663312436 1.0 17500 -101739 Psip1 PC4 and SFRS1 interacting protein 1 Novel N 0.0003067112837339502 -0.2608051932856375 1.0 17501 -18231 Nxph1 neurexophilin 1 Novel U 0.0003062784184338091 -0.26080967689018675 1.0 17502 -97820 4833439L19Rik RIKEN cDNA 4833439L19 gene Novel U 0.0003061070802832593 -0.26081145160511765 1.0 17503 -269610 Chd5 chromodomain helicase DNA binding protein 5 Novel N 0.0003060166191852645 -0.26081238859819694 1.0 17504 -15433 Hoxd13 homeobox D13 Novel U 0.0003059900998834572 -0.2608126632842533 1.0 17505 -272428 Acsm5 acyl-CoA synthetase medium-chain family member 5 Novel U 0.000305932538094441 -0.26081325950737166 1.0 17506 -21945 Dedd death effector domain-containing Novel U 0.0003059173494217886 -0.26081341683114373 1.0 17507 -100206 Adprs ADP-ribosylserine hydrolase Novel N 0.0003058761563532071 -0.2608138435075939 1.0 17508 -66388 Cutc cutC copper transporter Novel U 0.00030584363321401565 -0.2608141803812005 1.0 17509 -106344 Rfc4 replication factor C (activator 1) 4 Novel U 0.0003058204424880321 -0.26081442058997795 1.0 17510 -271305 Phf21b PHD finger protein 21B Novel U 0.0003057399400951942 -0.2608152544311166 1.0 17511 -56706 Ccnl1 cyclin L1 Novel N 0.000305704694765509 -0.26081561950108284 1.0 17512 -100342 Tent5b terminal nucleotidyltransferase 5B Novel N 0.00030548089135068164 -0.26081793764949646 1.0 17513 -347708 Dppa1 developmental pluripotency associated 1 Novel U 0.0003054706002324232 -0.26081804424456106 1.0 17514 -72171 Shq1 SHQ1 homolog (S. cerevisiae) Novel U 0.0003052415882670387 -0.2608204163429702 1.0 17515 -75769 Plppr5 phospholipid phosphatase related 5 Novel U 0.0003051293529612291 -0.26082157887257823 1.0 17516 -59012 Moxd1 monooxygenase, DBH-like 1 Novel U 0.00030511819395566295 -0.260821694457191 1.0 17517 -56189 Prodh2 proline dehydrogenase (oxidase) 2 Novel N 0.00030509927283539525 -0.26082189044153276 1.0 17518 -545276 Gal3st3 galactose-3-O-sulfotransferase 3 Novel U 0.00030497364981492083 -0.2608231916406492 1.0 17519 -73942 Fam151b family with sequence similarity 151, member B Novel U 0.000304928822658288 -0.260823655958864 1.0 17520 -110648 Lmx1a LIM homeobox transcription factor 1 alpha Novel N 0.0003048885526785821 -0.26082407307398997 1.0 17521 -229709 Ahcyl1 S-adenosylhomocysteine hydrolase-like 1 Novel U 0.0003047429367688456 -0.26082558135879613 1.0 17522 -13510 Dsg1a desmoglein 1 alpha Novel U 0.00030470282452053346 -0.26082599684014557 1.0 17523 -68092 Ncbp2 nuclear cap binding protein subunit 2 Novel N 0.0003046713806912192 -0.26082632253429594 1.0 17524 -386463 Cdsn corneodesmosin Novel U 0.00030453008132749114 -0.26082778610846047 1.0 17525 -11571 Crisp1 cysteine-rich secretory protein 1 Novel U 0.000304431727850249 -0.26082880485054455 1.0 17526 -73668 Ttc21b tetratricopeptide repeat domain 21B Novel U 0.0003043029611978024 -0.2608301386112976 1.0 17527 -20466 Sin3a transcriptional regulator, SIN3A (yeast) Novel U 0.00030421258126948816 -0.260831074763624 1.0 17528 -241919 Slc7a14 solute carrier family 7 (cationic amino acid transporter, y+ system), member 14 Novel N 0.00030415432349747447 -0.2608316781957114 1.0 17529 -69060 Pnlip pancreatic lipase Novel U 0.0003039112912598915 -0.260834195515639 1.0 17530 -22592 Ercc5 excision repair cross-complementing rodent repair deficiency, complementation group 5 Novel U 0.00030384407888570905 -0.2608348916992013 1.0 17531 -64817 Svep1 sushi, von Willebrand factor type A, EGF and pentraxin domain containing 1 Novel U 0.00030362995419367284 -0.2608371095957225 1.0 17532 -19879 Slc22a8 solute carrier family 22 (organic anion transporter), member 8 Novel N 0.00030358901728975453 -0.26083753361882756 1.0 17533 -75905 Dipk2b divergent protein kinase domain 2B Novel U 0.0003032554279070705 -0.2608409889266872 1.0 17534 -211006 Sepsecs Sep (O-phosphoserine) tRNA:Sec (selenocysteine) tRNA synthase Novel N 0.00030300105884107644 -0.26084362367311087 1.0 17535 -14137 Fdft1 farnesyl diphosphate farnesyl transferase 1 Novel U 0.00030286498738555257 -0.2608450330967741 1.0 17536 -14537 Gcnt1 glucosaminyl (N-acetyl) transferase 1, core 2 Novel U 0.00030280144591170036 -0.2608456912572714 1.0 17537 -237930 Ttll6 tubulin tyrosine ligase-like family, member 6 Novel U 0.00030279639220606437 -0.26084574360338825 1.0 17538 -68458 Ppp1r14a protein phosphatase 1, regulatory inhibitor subunit 14A Novel U 0.0003025053553291804 -0.2608487581537917 1.0 17539 -208292 Zfp871 zinc finger protein 871 Novel U 0.00030222692271868044 -0.26085164214961826 1.0 17540 -18821 Pln phospholamban Novel U 0.00030220782807111827 -0.26085183993135 1.0 17541 -77128 Crebrf CREB3 regulatory factor Novel N 0.0003022032814159459 -0.2608518870254548 1.0 17542 -16663 Krt13 keratin 13 Novel U 0.0003020370767280159 -0.26085360856814876 1.0 17543 -51788 H2az1 H2A.Z variant histone 1 Novel U 0.00030199255887120957 -0.2608540696826461 1.0 17544 -67874 Rprm reprimo, TP53 dependent G2 arrest mediator candidate Novel N 0.0003019780409135909 -0.26085422005917386 1.0 17545 -106369 Ypel1 yippee like 1 Novel U 0.0003017444722046622 -0.26085663935618275 1.0 17546 -71981 Tdrd12 tudor domain containing 12 Novel U 0.00030173262669550693 -0.2608567620515772 1.0 17547 -20664 Sox1 SRY (sex determining region Y)-box 1 Novel U 0.00030168035758029136 -0.26085730345335434 1.0 17548 -26876 Adh4 alcohol dehydrogenase 4 (class II), pi polypeptide Novel N 0.00030162660643260014 -0.2608578602059751 1.0 17549 -72502 Cwf19l1 CWF19 like cell cycle control factor 1 Novel N 0.00030078559555610755 -0.2608665713689871 1.0 17550 -114662 Prss29 serine protease 29 Novel U 0.00030063258357833806 -0.26086815626202287 1.0 17551 -93966 Hemgn hemogen Novel U 0.00030034342882546587 -0.26087115131744765 1.0 17552 -72151 Rfc5 replication factor C (activator 1) 5 Novel U 0.0003001865445995806 -0.2608727763191021 1.0 17553 -109108 Slc30a9 solute carrier family 30 (zinc transporter), member 9 Novel U 0.0002999974704840165 -0.2608747347425756 1.0 17554 -54150 Rdh7 retinol dehydrogenase 7 Novel U 0.0002999856539391655 -0.26087485713795877 1.0 17555 -72807 Zfp429 zinc finger protein 429 Novel U 0.0002998932774782193 -0.2608758139703045 1.0 17556 -73467 1700066M21Rik RIKEN cDNA 1700066M21 gene Novel N 0.00029987797906713085 -0.2608759724307437 1.0 17557 -207213 Tdpoz1 TD and POZ domain containing 1 Novel U 0.00029986299288056235 -0.2608761276571715 1.0 17558 -73422 Prox2 prospero homeobox 2 Novel U 0.00029973553997078063 -0.2608774478102212 1.0 17559 -434438 Iho1 interactor of HORMAD1 1 Novel U 0.00029968671838304025 -0.2608779535026221 1.0 17560 -269952 Gdpgp1 GDP-D-glucose phosphorylase 1 Novel N 0.00029956323191451833 -0.26087923257140366 1.0 17561 -353172 Gars1 glycyl-tRNA synthetase 1 Novel N 0.0002995188321986874 -0.26087969246220066 1.0 17562 -207839 Galnt6 polypeptide N-acetylgalactosaminyltransferase 6 Novel N 0.000299472276241561 -0.26088017468727415 1.0 17563 -16665 Krt15 keratin 15 Novel N 0.0002992915519643018 -0.26088204662339703 1.0 17564 -244448 Triml1 tripartite motif family-like 1 Novel U 0.0002991796698375999 -0.2608832054947875 1.0 17565 -73234 Snorc secondary ossification center associated regulator of chondrocyte maturation Novel U 0.0002989149075270599 -0.2608859478940964 1.0 17566 -207596 Thsd4 thrombospondin, type I, domain containing 4 Novel U 0.0002985637217861634 -0.26088958546445606 1.0 17567 -76646 Wdr38 WD repeat domain 38 Novel U 0.00029827175126546647 -0.2608926096855114 1.0 17568 -16679 Krt86 keratin 86 Novel U 0.0002982219795411341 -0.2608931252193959 1.0 17569 -16526 Kcnk2 potassium channel, subfamily K, member 2 Novel U 0.000298188867321438 -0.260893468194679 1.0 17570 -384585 Scgb1b3 secretoglobin, family 1B, member 3 Novel U 0.00029798505674082267 -0.26089557925797313 1.0 17571 -18294 Ogg1 8-oxoguanine DNA-glycosylase 1 Novel U 0.00029797813345481844 -0.26089565096914197 1.0 17572 -545288 Cyp2c67 cytochrome P450, family 2, subfamily c, polypeptide 67 Novel U 0.000297961323771012 -0.26089582508329423 1.0 17573 -76467 Msrb2 methionine sulfoxide reductase B2 Novel N 0.0002977492533667291 -0.26089802170157034 1.0 17574 -26464 Vnn3 vanin 3 Novel U 0.00029767331747584713 -0.26089880824303185 1.0 17575 -14548 Mrps33 mitochondrial ribosomal protein S33 Novel U 0.00029764700799766276 -0.260899080755742 1.0 17576 -239157 Pnma2 paraneoplastic antigen MA2 Novel U 0.0002975799933667889 -0.2608997748910856 1.0 17577 -171232 Vmn1r234 vomeronasal 1 receptor 234 Novel U 0.00029736388985660754 -0.26090201328414003 1.0 17578 -224661 Slc26a8 solute carrier family 26, member 8 Novel N 0.00029707579138840245 -0.26090499739860296 1.0 17579 -66926 Trmt6 tRNA methyltransferase 6 Novel N 0.00029688371668694456 -0.26090698690204656 1.0 17580 -51886 Fubp1 far upstream element (FUSE) binding protein 1 Novel N 0.0002967471565631885 -0.26090840138731924 1.0 17581 -15361 Hmga1 high mobility group AT-hook 1 Novel U 0.00029669525531492977 -0.26090893897874257 1.0 17582 -666938 Bend4 BEN domain containing 4 Novel U 0.0002965635779453983 -0.2609103028886075 1.0 17583 -18263 Odc1 ornithine decarboxylase, structural 1 Novel U 0.0002963157523272954 -0.260912869858213 1.0 17584 -72397 Rbm12b1 RNA binding motif protein 12 B1 Novel U 0.00029623804898579805 -0.2609136747068698 1.0 17585 -72022 Slc35f2 solute carrier family 35, member F2 Novel U 0.000296166929652259 -0.2609144113585887 1.0 17586 -100043224 Alyreffm4 Aly/REF export factor family member 4 Novel U 0.00029606874541081274 -0.260915428347734 1.0 17587 -22377 Wbp1 WW domain binding protein 1 Novel U 0.00029606557172951354 -0.2609154612206206 1.0 17588 -67749 Mgarp mitochondria localized glutamic acid rich protein Novel U 0.0002960650939925572 -0.26091546616900424 1.0 17589 -244059 Chd2 chromodomain helicase DNA binding protein 2 Novel U 0.0002960495313710789 -0.26091562736612595 1.0 17590 -408198 Spink7 serine peptidase inhibitor, Kazal type 7 (putative) Novel U 0.000296028133711181 -0.26091584900238374 1.0 17591 -109889 Mzf1 myeloid zinc finger 1 Novel N 0.00029600648924689145 -0.26091607319503335 1.0 17592 -77827 Krba1 KRAB-A domain containing 1 Novel U 0.00029570497257926873 -0.26091919629476473 1.0 17593 -66603 Gemin2 gem nuclear organelle associated protein 2 Novel U 0.00029564266462097033 -0.26091984167854854 1.0 17594 -243983 Zdhhc13 zinc finger, DHHC domain containing 13 Novel U 0.0002955948816010825 -0.2609203366134977 1.0 17595 -668379 Scgb2b12 secretoglobin, family 2B, member 12 Novel U 0.00029553457227635214 -0.26092096129550074 1.0 17596 -619309 Muc3a mucin 3A, cell surface associated Novel U 0.0002954846609928391 -0.2609214782749346 1.0 17597 -22271 Upp1 uridine phosphorylase 1 Novel N 0.0002954782754660902 -0.2609215444160108 1.0 17598 -101544 Zfp575 zinc finger protein 575 Novel U 0.00029539963458557214 -0.260922358975666 1.0 17599 -22446 Xlr3c X-linked lymphocyte-regulated 3C Novel U 0.00029535136341913453 -0.26092285896682116 1.0 17600 -434866 Gm15127 predicted gene 15127 Novel U 0.00029514834639968515 -0.2609249618104348 1.0 17601 -218454 Lhfpl2 lipoma HMGIC fusion partner-like 2 Novel U 0.0002950133898580731 -0.2609263596858563 1.0 17602 -213417 Klhdc8a kelch domain containing 8A Novel U 0.0002948465816698942 -0.26092808747958596 1.0 17603 -14859 Gsta3 glutathione S-transferase, alpha 3 Novel U 0.00029479044772675217 -0.2609286689131237 1.0 17604 -268807 Klhl38 kelch-like 38 Novel U 0.00029470208525838546 -0.2609295841686663 1.0 17605 -238024 Fn3krp fructosamine 3 kinase related protein Novel N 0.000294632392852766 -0.2609303060403127 1.0 17606 -70789 Kynu kynureninase Novel U 0.00029461505964971716 -0.26093048557706006 1.0 17607 -57905 Isy1 ISY1 splicing factor homolog Novel N 0.0002946019464138292 -0.26093062140352635 1.0 17608 -68219 Nudt21 nudix hydrolase 21 Novel U 0.00029448171667729187 -0.260931866739185 1.0 17609 -225432 Rbm27 RNA binding motif protein 27 Novel U 0.00029439962531600436 -0.26093271703880666 1.0 17610 -66230 Mrps28 mitochondrial ribosomal protein S28 Novel N 0.00029435634834797233 -0.26093316530021887 1.0 17611 -259301 Leap2 liver-expressed antimicrobial peptide 2 Novel U 0.00029426383168761684 -0.2609341235847455 1.0 17612 -332221 Zscan10 zinc finger and SCAN domain containing 10 Novel U 0.0002942612140783556 -0.2609341506978562 1.0 17613 -74663 Tex55 testis expressed 55 Novel U 0.0002941545919675625 -0.26093525508617477 1.0 17614 -11488 Adam11 a disintegrin and metallopeptidase domain 11 Novel N 0.0002941485942055292 -0.26093531721079677 1.0 17615 -74297 Ccdc182 coiled-coil domain containing 182 Novel U 0.0002940692097557568 -0.26093613947231786 1.0 17616 -99586 Dpyd dihydropyrimidine dehydrogenase Novel U 0.0002938837245156002 -0.26093806072233794 1.0 17617 -100090 Zbtb48 zinc finger and BTB domain containing 48 Novel U 0.0002938584512420454 -0.2609383225020746 1.0 17618 -17932 Myt1 myelin transcription factor 1 Novel U 0.00029384980581735907 -0.26093841205109924 1.0 17619 -18029 Nfic nuclear factor I/C Novel N 0.00029373667673920234 -0.2609395838383719 1.0 17620 -387334 Defb50 defensin beta 50 Novel U 0.00029343543800134015 -0.26094270405931597 1.0 17621 -52502 Carhsp1 calcium regulated heat stable protein 1 Novel N 0.0002932512996261955 -0.2609446113585525 1.0 17622 -20494 Slc10a2 solute carrier family 10, member 2 Novel U 0.0002931311553123255 -0.26094585580940605 1.0 17623 -11471 Actl7b actin-like 7b Novel U 0.00029311281572379515 -0.26094604577026115 1.0 17624 -75750 Slc10a6 solute carrier family 10 (sodium/bile acid cotransporter family), member 6 Novel N 0.0002930722984941574 -0.2609464654463938 1.0 17625 -14149 Fdxr ferredoxin reductase Novel U 0.0002929539735603123 -0.26094769105216886 1.0 17626 -319478 Cxxc4 CXXC finger 4 Novel N 0.0002928259330725989 -0.2609490172913315 1.0 17627 -102857 Slc6a8 solute carrier family 6 (neurotransmitter transporter, creatine), member 8 Novel U 0.0002926914710461175 -0.2609504100445816 1.0 17628 -320631 Abca15 ATP-binding cassette, sub-family A member 15 Novel U 0.00029263682831801133 -0.26095097603216305 1.0 17629 -100561 Slc15a4 solute carrier family 15, member 4 Novel U 0.0002926098714935996 -0.26095125525006413 1.0 17630 -433365 Teddm1b transmembrane epididymal protein 1B Novel U 0.00029258655427277276 -0.2609514967690709 1.0 17631 -57443 Fbxo3 F-box protein 3 Novel U 0.0002922650670808838 -0.2609548267228362 1.0 17632 -546611 Klhl33 kelch-like 33 Novel U 0.00029220843260622663 -0.2609554133408629 1.0 17633 -213171 Prss27 serine protease 27 Novel U 0.00029216848199121385 -0.26095582714801996 1.0 17634 -234594 Cnot1 CCR4-NOT transcription complex, subunit 1 Novel U 0.0002921560812762082 -0.2609559555942183 1.0 17635 -77532 Jrkl Jrk-like Novel N 0.00029213537381911293 -0.26095617008137817 1.0 17636 -72898 Asphd2 aspartate beta-hydroxylase domain containing 2 Novel U 0.0002921026667754287 -0.2609565088598615 1.0 17637 -66830 Nacc1 nucleus accumbens associated 1, BEN and BTB (POZ) domain containing Novel N 0.00029207427801446873 -0.2609568029097143 1.0 17638 -12721 Coro1a coronin, actin binding protein 1A Novel U 0.00029188031822906187 -0.26095881193879544 1.0 17639 -83603 Elovl4 ELOVL fatty acid elongase 4 Novel U 0.00029178939473315565 -0.2609597537213771 1.0 17640 -100041379 Zfp980 zinc finger protein 980 Novel U 0.00029177439757770444 -0.26095990906142025 1.0 17641 -67455 Klhl13 kelch-like 13 Novel U 0.000291762316284489 -0.2609600341990582 1.0 17642 -75396 Spp2 secreted phosphoprotein 2 Novel N 0.0002916873759931027 -0.26096081042813285 1.0 17643 -668216 Cdc5lrt10 cell division cycle 5 like, retrotransposed 10 Novel U 0.00029162779305558483 -0.26096142758624097 1.0 17644 -27214 Dbf4 DBF4 zinc finger Novel N 0.00029152301118430497 -0.2609625129134192 1.0 17645 -100504156 Fam181a family with sequence similarity 181, member A Novel U 0.0002913698679866483 -0.26096409916562624 1.0 17646 -74511 Lrrc17 leucine rich repeat containing 17 Novel U 0.00029125019814253645 -0.2609653387019376 1.0 17647 -622473 Ripply1 ripply transcriptional repressor 1 Novel U 0.0002912292451025351 -0.26096555573283714 1.0 17648 -234138 Tti2 TELO2 interacting protein 2 Novel U 0.00029115800816974805 -0.2609662936026451 1.0 17649 -21411 Tcf20 transcription factor 20 Novel U 0.0002908540563770836 -0.2609694419253217 1.0 17650 -56735 Krt71 keratin 71 Novel N 0.00029080786534175265 -0.26096992037054717 1.0 17651 -66202 1110059G10Rik RIKEN cDNA 1110059G10 gene Novel U 0.0002905151716784791 -0.2609729520818896 1.0 17652 -58227 Fam184b family with sequence similarity 184, member B Novel U 0.0002904024399069895 -0.26097411975387286 1.0 17653 -78709 Spink8 serine peptidase inhibitor, Kazal type 8 Novel U 0.00029037450056932686 -0.26097440914861386 1.0 17654 -14758 Gpm6b glycoprotein m6b Novel U 0.00029033690617000967 -0.2609747985501662 1.0 17655 -211535 Odad1 outer dynein arm docking complex subunit 1 Novel U 0.00029027513747902783 -0.26097543834823683 1.0 17656 -232679 Zc3hc1 zinc finger, C3HC type 1 Novel U 0.00029021722122922255 -0.26097603824284843 1.0 17657 -66259 Camk2n1 calcium/calmodulin-dependent protein kinase II inhibitor 1 Novel U 0.0002898353418634051 -0.26097999373676595 1.0 17658 -408067 Zfp874b zinc finger protein 874b Novel U 0.0002898264140485012 -0.2609800862107792 1.0 17659 -114674 Gtf2ird2 GTF2I repeat domain containing 2 Novel U 0.0002897177310021656 -0.2609812119462004 1.0 17660 -381694 B3glct beta-3-glucosyltransferase Novel U 0.00028965535502958114 -0.26098185803447393 1.0 17661 -232223 Txnrd3 thioredoxin reductase 3 Novel U 0.00028965099679270525 -0.2609819031769482 1.0 17662 -20475 Six5 sine oculis-related homeobox 5 Novel U 0.0002895392295385951 -0.26098306085849216 1.0 17663 -11670 Aldh3a1 aldehyde dehydrogenase family 3, subfamily A1 Novel N 0.00028952656273865463 -0.2609831920607895 1.0 17664 -72002 Slc39a5 solute carrier family 39 (metal ion transporter), member 5 Novel U 0.0002894385483719939 -0.2609841037107061 1.0 17665 -69354 Slc38a4 solute carrier family 38, member 4 Novel U 0.00028913049932178966 -0.2609872944726415 1.0 17666 -242707 Lactbl1 lactamase, beta-like 1 Novel U 0.0002890571463566365 -0.26098805426024324 1.0 17667 -113868 Acaa1a acetyl-Coenzyme A acyltransferase 1A Novel U 0.0002890339517521471 -0.2609882945091941 1.0 17668 -228662 Btbd3 BTB domain containing 3 Novel U 0.00028898699298557 -0.2609887809065546 1.0 17669 -19194 Bpifa2 BPI fold containing family A, member 2 Novel U 0.0002889819861220069 -0.26098883276748275 1.0 17670 -71994 Cnn3 calponin 3, acidic Novel U 0.00028895501764049104 -0.2609891121061278 1.0 17671 -330010 Ttll10 tubulin tyrosine ligase-like family, member 10 Novel N 0.00028886152400728403 -0.26099008051010714 1.0 17672 -101202 Hepacam2 HEPACAM family member 2 Novel N 0.00028878228916575705 -0.2609909012219909 1.0 17673 -407812 Zfp941 zinc finger protein 941 Novel U 0.0002887207377959885 -0.2609915387690556 1.0 17674 -56336 B4galt5 UDP-Gal:betaGlcNAc beta 1,4-galactosyltransferase, polypeptide 5 Novel N 0.0002885950432854328 -0.26099284070866396 1.0 17675 -78038 Mccc2 methylcrotonoyl-Coenzyme A carboxylase 2 (beta) Novel U 0.000287764905887163 -0.26100143924454594 1.0 17676 -20537 Slc5a1 solute carrier family 5 (sodium/glucose cotransporter), member 1 Novel U 0.0002876801114580393 -0.26100231754245534 1.0 17677 -66272 Cox16 cytochrome c oxidase assembly protein 16 Novel N 0.0002875683904315778 -0.26100347474517477 1.0 17678 -268417 Zkscan17 zinc finger with KRAB and SCAN domains 17 Novel U 0.00028750739493584845 -0.26100410653451445 1.0 17679 -214575 Tdrd5 tudor domain containing 5 Novel U 0.0002874041144017914 -0.26100517631089104 1.0 17680 -107686 Snrpd2 small nuclear ribonucleoprotein D2 Novel N 0.0002873009206469155 -0.2610062451884117 1.0 17681 -108098 Med21 mediator complex subunit 21 Novel N 0.0002871314777852237 -0.261008000272003 1.0 17682 -77782 Polq polymerase (DNA directed), theta Novel U 0.00028712319429072 -0.26100808607216675 1.0 17683 -546160 Fbxw25 F-box and WD-40 domain protein 25 Novel U 0.0002870912342704124 -0.2610084171130065 1.0 17684 -74703 Ccdc7a coiled-coil domain containing 7A Novel U 0.00028701022487714954 -0.26100925620563886 1.0 17685 -331004 Slc9a9 solute carrier family 9 (sodium/hydrogen exchanger), member 9 Novel N 0.0002870017671432371 -0.2610093438105687 1.0 17686 -226777 C130074G19Rik RIKEN cDNA C130074G19 gene Novel N 0.0002869311661416547 -0.2610100750934222 1.0 17687 -114644 Slc13a3 solute carrier family 13 (sodium-dependent dicarboxylate transporter), member 3 Novel N 0.00028681386525564 -0.26101129009214347 1.0 17688 -67884 Cfap410 cilia and flagella associated protein 410 Novel U 0.0002868100318806658 -0.2610113297981154 1.0 17689 -19291 Purb purine rich element binding protein B Novel U 0.0002864557750763109 -0.2610149991784494 1.0 17690 -17996 Neb nebulin Novel U 0.00028639386970068275 -0.26101564039229513 1.0 17691 -321008 Zswim9 zinc finger SWIM-type containing 9 Novel U 0.00028631933207553276 -0.2610164124505661 1.0 17692 -676527 Faxdc2 fatty acid hydroxylase domain containing 2 Novel N 0.00028629802381472855 -0.26101663316083107 1.0 17693 -239133 Dleu7 deleted in lymphocytic leukemia, 7 Novel U 0.0002860706010679788 -0.26101898879816576 1.0 17694 -66966 Trit1 tRNA isopentenyltransferase 1 Novel N 0.00028597442675166106 -0.26101998496857265 1.0 17695 -216643 Gabrp gamma-aminobutyric acid type A receptor subunit pi Novel U 0.00028588420240441135 -0.2610209195093955 1.0 17696 -100041585 Amd2 S-adenosylmethionine decarboxylase 2 Novel U 0.0002858494572690234 -0.26102127939836567 1.0 17697 -170441 Slc2a10 solute carrier family 2 (facilitated glucose transporter), member 10 Novel U 0.00028583183861802985 -0.26102146189177344 1.0 17698 -280411 Lix1l Lix1-like Novel U 0.00028576514620683917 -0.2610221526895762 1.0 17699 -26909 Exo1 exonuclease 1 Novel U 0.0002856753145959493 -0.2610230831624487 1.0 17700 -67871 Mrrf mitochondrial ribosome recycling factor Novel U 0.0002856674892197933 -0.2610231642174377 1.0 17701 -13236 Defa25 defensin, alpha, 25 Novel U 0.0002855318832256351 -0.2610245688198674 1.0 17702 -93708 Pcdhgc5 protocadherin gamma subfamily C, 5 Novel U 0.0002855031282854198 -0.26102486666259284 1.0 17703 -434778 Ccdc160 coiled-coil domain containing 160 Novel U 0.00028550292458713784 -0.2610248687724929 1.0 17704 -237091 Lhfpl1 lipoma HMGIC fusion partner-like 1 Novel U 0.0002854109255735657 -0.26102582169525124 1.0 17705 -70152 Tmt1a thiol methyltransferase 1A1 Novel U 0.0002852755322716076 -0.26102722409462215 1.0 17706 -382156 Fbxw22 F-box and WD-40 domain protein 22 Novel U 0.00028492040401744323 -0.26103090250140454 1.0 17707 -381582 Tmem240 transmembrane protein 240 Novel N 0.0002848163610066615 -0.26103198017548995 1.0 17708 -115489953 Gm21411 predicted gene, 21411 Novel U 0.0002847660140274158 -0.2610325016678459 1.0 17709 -319150 H3c2 H3 clustered histone 2 Novel U 0.00028474367677740377 -0.2610327330363473 1.0 17710 -394252 Serpinb3d serine (or cysteine) peptidase inhibitor, clade B (ovalbumin), member 3D Novel U 0.000284735469676312 -0.2610328180452306 1.0 17711 -214112 Nipal4 NIPA-like domain containing 4 Novel U 0.0002845359513544371 -0.26103488464944974 1.0 17712 -76758 Gsdma2 gasdermin A2 Novel U 0.0002845297519130794 -0.26103494886305956 1.0 17713 -70796 Zdhhc1 zinc finger, DHHC domain containing 1 Novel N 0.00028448255743315445 -0.26103543770193116 1.0 17714 -67840 Mrpl57 mitochondrial ribosomal protein L57 Novel U 0.000284413304383131 -0.26103615502274674 1.0 17715 -100043332 Ankrd66 ankyrin repeat domain 66 Novel U 0.0002838518057401448 -0.2610419710072325 1.0 17716 -237859 Nsrp1 nuclear speckle regulatory protein 1 Novel N 0.00028376391757626234 -0.26104288134994486 1.0 17717 -319615 Zfp944 zinc finger protein 944 Novel U 0.00028359357721285055 -0.26104464572982944 1.0 17718 -12705 Cited1 Cbp/p300-interacting transactivator with Glu/Asp-rich carboxy-terminal domain 1 Novel U 0.0002835678292681577 -0.26104491242619415 1.0 17719 -21906 Otop1 otopetrin 1 Novel N 0.0002835226509068821 -0.26104538038217506 1.0 17720 -100504180 LOC100504180 double homeobox protein 4-like protein 2 Novel U 0.0002834272642369282 -0.2610463683941668 1.0 17721 -245368 Zfp300 zinc finger protein 300 Novel U 0.00028338949768366006 -0.261046759578884 1.0 17722 -214922 Slc39a2 solute carrier family 39 (zinc transporter), member 2 Novel N 0.000283386135593001 -0.2610467944033085 1.0 17723 -240066 Zfp870 zinc finger protein 870 Novel U 0.0002833676897439584 -0.26104698546480654 1.0 17724 -66106 Smpx small muscle protein, X-linked Novel N 0.00028336612356272555 -0.26104700168726025 1.0 17725 -81906 Cyp4x1 cytochrome P450, family 4, subfamily x, polypeptide 1 Novel U 0.00028330435563391057 -0.2610476414774364 1.0 17726 -17150 Mfap2 microfibrillar-associated protein 2 Novel U 0.00028328072806079266 -0.26104788621106206 1.0 17727 -52020 Umodl1 uromodulin-like 1 Novel U 0.00028296813311021174 -0.2610511240592842 1.0 17728 -226591 Tiprl TIP41, TOR signalling pathway regulator-like (S. cerevisiae) Novel U 0.0002828691254698824 -0.261052149577168 1.0 17729 -72136 Chst14 carbohydrate sulfotransferase 14 Novel U 0.0002825056817008296 -0.2610559141157803 1.0 17730 -20509 Slc19a1 solute carrier family 19 (folate transporter), member 1 Novel U 0.00028247768305410107 -0.2610562041248427 1.0 17731 -75623 Tex30 testis expressed 30 Novel U 0.0002824528381250785 -0.26105646146780076 1.0 17732 -68607 Serhl serine hydrolase-like Novel U 0.000282280672552717 -0.26105824475313966 1.0 17733 -240669 Calhm3 calcium homeostasis modulator 3 Novel U 0.00028209594246039223 -0.2610601581813633 1.0 17734 -20611 Ssty1 spermiogenesis specific transcript on the Y 1 Novel U 0.0002820486226624481 -0.26106064831827486 1.0 17735 -63828 Fn3k fructosamine 3 kinase Novel N 0.0002820223985948419 -0.26106091994630504 1.0 17736 -57896 Krcc1 lysine-rich coiled-coil 1 Novel U 0.000282018396841127 -0.26106096139633844 1.0 17737 -435366 Platr25 pluripotency associated transcript 25 Novel U 0.0002816827036771 -0.26106443849509614 1.0 17738 -380660 Acss3 acyl-CoA synthetase short-chain family member 3 Novel N 0.00028157793755217156 -0.2610655236591741 1.0 17739 -74649 Cpa5 carboxypeptidase A5 Novel U 0.00028147632746339875 -0.2610665761331334 1.0 17740 -66403 Asf1a anti-silencing function 1A histone chaperone Novel N 0.0002813256999533544 -0.26106813632793086 1.0 17741 -319476 Lrtm1 leucine-rich repeats and transmembrane domains 1 Novel U 0.00028129295367995054 -0.2610684755127543 1.0 17742 -53814 Oaz3 ornithine decarboxylase antizyme 3 Novel N 0.00028113751262666604 -0.2610700855660743 1.0 17743 -64707 Suv39h2 suppressor of variegation 3-9 2 Novel N 0.00028090434104637035 -0.26107250074963795 1.0 17744 -217707 Coq6 coenzyme Q6 monooxygenase Novel U 0.00028089996692773084 -0.261072546056615 1.0 17745 -76509 Plet1 placenta expressed transcript 1 Novel U 0.000280670652300395 -0.26107492128998666 1.0 17746 -19378 Aldh1a2 aldehyde dehydrogenase family 1, subfamily A2 Novel U 0.00028052133775529985 -0.26107646788513633 1.0 17747 -67507 Spmip5 sperm microtubule inner protein 5 Novel U 0.00028051560318187007 -0.2610765272836594 1.0 17748 -67460 Decr1 2,4-dienoyl CoA reductase 1, mitochondrial Novel N 0.0002804810894269917 -0.26107688477599783 1.0 17749 -13097 Cyp2c38 cytochrome P450, family 2, subfamily c, polypeptide 38 Novel U 0.0002802087241717223 -0.2610797059263584 1.0 17750 -20476 Six6 sine oculis-related homeobox 6 Novel N 0.000280130445770899 -0.2610805167314608 1.0 17751 -246229 Bivm basic, immunoglobulin-like variable motif containing Novel U 0.0002800047709142523 -0.2610818184674946 1.0 17752 -67096 Mmachc methylmalonic aciduria cblC type, with homocystinuria Novel U 0.0002799623740055034 -0.26108225761328174 1.0 17753 -338371 Endov endonuclease V Novel U 0.0002798847572352131 -0.2610830615652369 1.0 17754 -30937 Lmcd1 LIM and cysteine-rich domains 1 Novel N 0.00027982129270382274 -0.26108371892876675 1.0 17755 -19046 Ppp1cb protein phosphatase 1 catalytic subunit beta Novel U 0.00027972173788034767 -0.2610847501143556 1.0 17756 -242773 Slc45a1 solute carrier family 45, member 1 Novel N 0.00027970594916222066 -0.261084913653379 1.0 17757 -20535 Slc4a2 solute carrier family 4 (anion exchanger), member 2 Novel N 0.00027935283259432976 -0.2610885712231811 1.0 17758 -67776 Vwa5a von Willebrand factor A domain containing 5A Novel U 0.0002793450671409757 -0.2610886516574916 1.0 17759 -83704 Slc12a9 solute carrier family 12 (potassium/chloride transporters), member 9 Novel U 0.0002793307059890672 -0.261088800409831 1.0 17760 -66077 Aurkaip1 aurora kinase A interacting protein 1 Novel N 0.0002792666757700182 -0.26108946363273505 1.0 17761 -16667 Krt17 keratin 17 Novel U 0.0002789461735408787 -0.26109278338428854 1.0 17762 -66176 Nat9 N-acetyltransferase 9 (GCN5-related, putative) Novel U 0.0002788513612321152 -0.2610937654470659 1.0 17763 -12319 Car8 carbonic anhydrase 8 Novel N 0.0002785639772749999 -0.2610967421606465 1.0 17764 -320159 Togaram2 TOG array regulator of axonemal microtubules 2 Novel U 0.0002784369150267663 -0.26109805826723675 1.0 17765 -56741 Igdcc4 immunoglobulin superfamily, DCC subclass, member 4 Novel U 0.0002781570650734814 -0.26110095694385327 1.0 17766 -13004 Ncan neurocan Novel U 0.00027793296052869683 -0.26110327821136115 1.0 17767 -67609 4930453N24Rik RIKEN cDNA 4930453N24 gene Novel N 0.0002778122622842034 -0.26110452839980985 1.0 17768 -433016 Cstdc4 cystatin domain containing 4 Novel U 0.0002777727612801459 -0.2611049375499114 1.0 17769 -69672 Txndc15 thioredoxin domain containing 15 Novel U 0.00027774446810496746 -0.26110523060968976 1.0 17770 -242502 Msantd5f1 Myb/SANT DNA binding domain containing 5 family member 1 Novel U 0.0002776883179438133 -0.2611058122112132 1.0 17771 -17268 Meis1 Meis homeobox 1 Novel U 0.00027764131112691825 -0.2611062991062773 1.0 17772 -74319 Mettl23 methyltransferase like 23 Novel N 0.00027743820598715655 -0.26110840286263826 1.0 17773 -241877 Slc10a5 solute carrier family 10 (sodium/bile acid cotransporter family), member 5 Novel U 0.0002774317528823556 -0.2611084697036856 1.0 17774 -52430 Echdc2 enoyl Coenzyme A hydratase domain containing 2 Novel U 0.0002774215109446791 -0.2611085757893394 1.0 17775 -106565 Dlk2 delta like non-canonical Notch ligand 2 Novel U 0.00027727053850941505 -0.2611101395568609 1.0 17776 -66493 Mrpl51 mitochondrial ribosomal protein L51 Novel U 0.00027715597318264733 -0.26111132622074945 1.0 17777 -67963 Npc2 NPC intracellular cholesterol transporter 2 Novel U 0.0002770991776940213 -0.2611119145065536 1.0 17778 -74369 Mei1 meiotic double-stranded break formation protein 1 Novel U 0.0002767707610939871 -0.26111531623490064 1.0 17779 -29858 Pmm1 phosphomannomutase 1 Novel N 0.00027661346377485147 -0.26111694551536135 1.0 17780 -252966 Cables2 CDK5 and Abl enzyme substrate 2 Novel U 0.0002765970699043448 -0.2611171153225331 1.0 17781 -229927 Clca3b chloride channel accessory 3B Novel U 0.0002765817787035398 -0.2611172737082884 1.0 17782 -330361 Gcfc2 GC-rich sequence DNA binding factor 2 Novel N 0.0002765184722339 -0.2611179294346198 1.0 17783 -54125 Polm polymerase (DNA directed), mu Novel N 0.0002764970299905807 -0.26111815153267126 1.0 17784 -216134 Pdxk pyridoxal (pyridoxine, vitamin B6) kinase Novel U 0.0002764523547711505 -0.2611186142771255 1.0 17785 -18781 Pla2g2c phospholipase A2, group IIC Novel U 0.00027641613511025776 -0.2611189894391824 1.0 17786 -219228 Pcdh17 protocadherin 17 Novel U 0.00027638468653621526 -0.2611193151824785 1.0 17787 -93757 Immp2l IMP2 inner mitochondrial membrane peptidase-like (S. cerevisiae) Novel U 0.0002763273983072293 -0.26111990857207107 1.0 17788 -56078 Car5b carbonic anhydrase 5b, mitochondrial Novel U 0.00027626786217972704 -0.2611205252453226 1.0 17789 -338467 Morc3 microrchidia 3 Novel N 0.00027617724082947464 -0.2611214638982895 1.0 17790 -22696 Zfp37 zinc finger protein 37 Novel U 0.00027608647854474575 -0.2611224040110511 1.0 17791 -69109 Ccnq cyclin Q Novel U 0.0002755242446543132 -0.26112822761120574 1.0 17792 -219257 Pcdh20 protocadherin 20 Novel U 0.0002754745258045847 -0.2611287425974168 1.0 17793 -384589 Scgb1b29 secretoglobin, family 1B, member 29 Novel U 0.0002753208192432253 -0.2611303346849265 1.0 17794 -17427 Mns1 meiosis-specific nuclear structural protein 1 Novel N 0.00027480276820824863 -0.26113570064051683 1.0 17795 -16429 Itln1 intelectin 1 (galactofuranose binding) Novel U 0.0002747291663918789 -0.26113646300571125 1.0 17796 -74176 Tgm5 transglutaminase 5 Novel U 0.0002744707689852391 -0.26113913947755485 1.0 17797 -236899 Pcyt1b phosphate cytidylyltransferase 1, choline, beta isoform Novel U 0.00027446300137389857 -0.26113921993421774 1.0 17798 -67709 Reg4 regenerating islet-derived family, member 4 Novel U 0.0002744377789368173 -0.26113948118739194 1.0 17799 -97122 H4c14 H4 clustered histone 14 Novel U 0.0002743433993234917 -0.2611404587683242 1.0 17800 -68891 Cd177 CD177 antigen Novel U 0.0002742974494773723 -0.2611409347153198 1.0 17801 -72050 Poglut2 protein O-glucosyltransferase 2 Novel N 0.000274092090747731 -0.2611430618142906 1.0 17802 -353499 Tmc4 transmembrane channel-like gene family 4 Novel U 0.0002740916914353197 -0.2611430659503554 1.0 17803 -74338 Slc6a19 solute carrier family 6 (neurotransmitter transporter), member 19 Novel U 0.0002740871968694235 -0.2611431125049212 1.0 17804 -240120 Zfp119b zinc finger protein 119b Novel U 0.00027387926586154386 -0.2611452662474655 1.0 17805 -55927 Hes6 hairy and enhancer of split 6 Novel N 0.00027372201851707313 -0.26114689501029026 1.0 17806 -320106 Slc38a11 solute carrier family 38, member 11 Novel U 0.00027372126437097736 -0.2611469028217107 1.0 17807 -435818 Slc2a7 solute carrier family 2 (facilitated glucose transporter), member 7 Novel N 0.0002736194414050126 -0.26114795750064496 1.0 17808 -667118 Zbed6 zinc finger, BED type containing 6 Novel U 0.0002735052082989187 -0.2611491407234027 1.0 17809 -66488 Fam136a family with sequence similarity 136, member A Novel U 0.0002735012010214478 -0.261149182230651 1.0 17810 -53878 Semg1 semenogelin 1 Novel U 0.00027344289451894957 -0.26114978616748713 1.0 17811 -69752 Zfp511 zinc finger protein 511 Novel U 0.00027341633469803644 -0.26115006127323903 1.0 17812 -100038854 Cstdc6 cystatin domain containing 6 Novel U 0.00027323747351939986 -0.2611519139114476 1.0 17813 -68737 Angel1 angel homolog 1 Novel U 0.000273057032957513 -0.261153782908856 1.0 17814 -78896 Ecrg4 ECRG4 augurin precursor Novel U 0.0002730119552821313 -0.26115424982193575 1.0 17815 -22718 Zfp60 zinc finger protein 60 Novel U 0.00027300419497744866 -0.26115433020291656 1.0 17816 -13358 Slc25a1 solute carrier family 25 (mitochondrial carrier, citrate transporter), member 1 Novel U 0.0002728757708404579 -0.26115566041590577 1.0 17817 -72254 1700030K09Rik RIKEN cDNA 1700030K09 gene Novel U 0.00027280431365579163 -0.2611564005670755 1.0 17818 -627821 Eddm13 epididymal protein 13 Novel U 0.00027279177254233684 -0.2611565304675164 1.0 17819 -67656 Ccdc121 coiled-coil domain containing 121 Novel U 0.0002726832157879226 -0.26115765489481 1.0 17820 -223706 Cyp2d34 cytochrome P450, family 2, subfamily d, polypeptide 34 Novel U 0.0002726597362565073 -0.26115789809502454 1.0 17821 -192156 Mvd mevalonate (diphospho) decarboxylase Novel N 0.00027257955809378755 -0.2611587285777983 1.0 17822 -210009 Mtrr 5-methyltetrahydrofolate-homocysteine methyltransferase reductase Novel U 0.00027257112282091055 -0.2611588159500775 1.0 17823 -13990 Smarcad1 SWI/SNF-related, matrix-associated actin-dependent regulator of chromatin, subfamily a, containing DEAD/H box 1 Novel U 0.00027246118668217985 -0.2611599546649885 1.0 17824 -75040 Efcab10 EF-hand calcium binding domain 10 Novel U 0.0002721700204591473 -0.2611629705551551 1.0 17825 -112417 Ugt2b37 UDP glucuronosyltransferase 2 family, polypeptide B37 Novel U 0.00027206807487785656 -0.2611640265041348 1.0 17826 -57780 Fxyd7 FXYD domain-containing ion transport regulator 7 Novel U 0.0002720633650876095 -0.26116407528798735 1.0 17827 -93875 Pcdhb4 protocadherin beta 4 Novel U 0.00027152177539685636 -0.26116968505620036 1.0 17828 -100043914 Zfp968 zinc finger protein 968 Novel U 0.0002714223778762604 -0.26117071461245117 1.0 17829 -66454 Nmnat1 nicotinamide nucleotide adenylyltransferase 1 Novel N 0.0002713786809171202 -0.2611711672241175 1.0 17830 -193116 Slu7 SLU7 splicing factor homolog (S. cerevisiae) Novel U 0.0002709570896855783 -0.26117553405223476 1.0 17831 -75033 Mei4 meiotic double-stranded break formation protein 4 Novel U 0.00027077187887805546 -0.2611774524596906 1.0 17832 -237911 Brip1 BRCA1 interacting protein C-terminal helicase 1 Novel U 0.0002706414310958055 -0.2611788036335309 1.0 17833 -69926 Dnah17 dynein, axonemal, heavy chain 17 Novel N 0.0002705582328790563 -0.261179665397925 1.0 17834 -233060 Zfp382 zinc finger protein 382 Novel U 0.000270500571398695 -0.2611802626536431 1.0 17835 -619294 Cldn34b4 claudin 34B4 Novel U 0.00027044160603580613 -0.2611808734149335 1.0 17836 -101055671 Lipo2 lipase, member O2 Novel U 0.0002703035118834396 -0.2611823037896241 1.0 17837 -72056 1810055G02Rik RIKEN cDNA 1810055G02 gene Novel U 0.0002702940173521473 -0.2611824021336671 1.0 17838 -68682 Slc44a2 solute carrier family 44, member 2 Novel U 0.0002702890937946453 -0.26118245313171384 1.0 17839 -80911 Acox3 acyl-Coenzyme A oxidase 3, pristanoyl Novel U 0.00027018012431628504 -0.26118358183398854 1.0 17840 -67070 Lsm14a LSM14A mRNA processing body assembly factor Novel U 0.00026993442568478586 -0.2611861267723367 1.0 17841 -21665 Tdg thymine DNA glycosylase Novel N 0.0002698247771801551 -0.26118726250794316 1.0 17842 -22348 Slc32a1 solute carrier family 32 (GABA vesicular transporter), member 1 Novel U 0.0002698042312303932 -0.26118747532221537 1.0 17843 -192166 Sardh sarcosine dehydrogenase Novel N 0.00026962753697585385 -0.2611893055154954 1.0 17844 -15132 Hbb-bh1 hemoglobin Z, beta-like embryonic chain Novel U 0.00026924505536140224 -0.2611932672474845 1.0 17845 -68693 Hnrnpul2 heterogeneous nuclear ribonucleoprotein U-like 2 Novel U 0.00026911044618207916 -0.26119466152493886 1.0 17846 -260298 Fev FEV transcription factor, ETS family member Novel U 0.0002690241683944427 -0.261195555187427 1.0 17847 -433813 Pusl1 pseudouridylate synthase-like 1 Novel U 0.0002689883165142605 -0.2611959265400233 1.0 17848 -75657 Speer4a1 spermatogenesis associated glutamate (E)-rich protein 4A1 Novel U 0.00026883829986845215 -0.26119748040750906 1.0 17849 -22661 Zfp148 zinc finger protein 148 Novel U 0.00026870679391399494 -0.2611988425418623 1.0 17850 -233210 Prr12 proline rich 12 Novel U 0.0002685268166141662 -0.2612007067408175 1.0 17851 -66585 Snrnp40 small nuclear ribonucleoprotein 40 (U5) Novel N 0.00026812770916152004 -0.26120484068269206 1.0 17852 -72112 Ppp1r14d protein phosphatase 1, regulatory inhibitor subunit 14D Novel U 0.0002680863236251822 -0.261205269352717 1.0 17853 -69382 H2bl1 H2B.L histone variant 1 Novel U 0.00026806644216294847 -0.26120547528424926 1.0 17854 -239606 Slc2a13 solute carrier family 2 (facilitated glucose transporter), member 13 Novel N 0.0002680232286957671 -0.26120592288792177 1.0 17855 -380855 Rsl1 regulator of sex limited protein 1 Novel U 0.00026800437994805036 -0.26120611812263095 1.0 17856 -329872 Frem1 Fras1 related extracellular matrix protein 1 Novel U 0.00026797733133521607 -0.2612063982912735 1.0 17857 -29861 Dpf1 double PHD fingers 1 Novel N 0.00026794511175157675 -0.2612067320206617 1.0 17858 -399676 Tdpoz5 TD and POZ domain containing 5 Novel U 0.0002677712311248157 -0.26120853307047764 1.0 17859 -22599 Slc6a20b solute carrier family 6 (neurotransmitter transporter), member 20B Novel U 0.0002677503134599856 -0.2612087497349624 1.0 17860 -78653 Bola3 bolA family member 3 Novel N 0.0002676989941712287 -0.26120928129846827 1.0 17861 -56531 Ylpm1 YLP motif containing 1 Novel U 0.0002676234202289586 -0.26121006409087794 1.0 17862 -232854 Zfp418 zinc finger protein 418 Novel U 0.0002674412837166863 -0.2612119506548847 1.0 17863 -69956 Ptcd3 pentatricopeptide repeat domain 3 Novel N 0.00026727584236909736 -0.26121366429092435 1.0 17864 -71950 Nanog Nanog homeobox Novel U 0.0002671584207310529 -0.2612148805403912 1.0 17865 -333424 A4gnt alpha-1,4-N-acetylglucosaminyltransferase Novel N 0.00026695097154807356 -0.261217029292209 1.0 17866 -212670 Catsper2 cation channel, sperm associated 2 Novel N 0.00026682484003799655 -0.26121833575824405 1.0 17867 -224794 Enpp4 ectonucleotide pyrophosphatase/phosphodiesterase 4 Novel N 0.00026674845308182735 -0.2612191269718249 1.0 17868 -170472 Recql5 RecQ protein-like 5 Novel U 0.0002667262912193565 -0.2612193565236679 1.0 17869 -211666 Mgst2 microsomal glutathione S-transferase 2 Novel N 0.0002666833596969795 -0.26121980120696536 1.0 17870 -20646 Snrpn small nuclear ribonucleoprotein N Novel U 0.0002666425709641957 -0.26122022369531867 1.0 17871 -15429 Hoxd1 homeobox D1 Novel U 0.00026658188072194476 -0.2612208523228528 1.0 17872 -100504608 Eef1akmt3 EEF1A lysine methyltransferase 3 Novel N 0.0002665199941486077 -0.26122149334194505 1.0 17873 -54375 Azin1 antizyme inhibitor 1 Novel U 0.0002664988449374727 -0.26122171240477876 1.0 17874 -76498 Paqr4 progestin and adipoQ receptor family member IV Novel U 0.0002663487951029004 -0.2612232666160326 1.0 17875 -69804 Tmem147 transmembrane protein 147 Novel U 0.00026631523534963484 -0.2612236142268537 1.0 17876 -94227 Pi15 peptidase inhibitor 15 Novel U 0.0002661234104726433 -0.2612256011426237 1.0 17877 -102639653 Gm2007 predicted gene 2007 Novel U 0.0002661042814174947 -0.2612257992807481 1.0 17878 -52397 Zfp644 zinc finger protein 644 Novel N 0.0002660023719070086 -0.2612268548561076 1.0 17879 -633057 Mplkipl1 M-phase specific PLK1 intereacting protein like 1 Novel U 0.00026597157847835223 -0.26122717381342936 1.0 17880 -381067 Zfp229 zinc finger protein 229 Novel U 0.0002659523269903079 -0.2612273732197097 1.0 17881 -71816 Rnf180 ring finger protein 180 Novel U 0.00026587902931563673 -0.26122813243461435 1.0 17882 -80892 Zfhx4 zinc finger homeodomain 4 Novel N 0.00026566581234592154 -0.26123034092897757 1.0 17883 -67149 Nkain1 Na+/K+ transporting ATPase interacting 1 Novel U 0.00026559043993118513 -0.26123112163397166 1.0 17884 -13371 Dio2 deiodinase, iodothyronine, type II Novel N 0.0002654760490506588 -0.26123230649095175 1.0 17885 -217843 Unc79 unc-79 homolog Novel U 0.0002653837721218896 -0.2612332622923465 1.0 17886 -208076 Pknox2 Pbx/knotted 1 homeobox 2 Novel U 0.0002648900095685693 -0.26123837666864225 1.0 17887 -93874 Pcdhb3 protocadherin beta 3 Novel U 0.00026474061441178064 -0.2612399240987651 1.0 17888 -68323 Nudt22 nudix hydrolase 22 Novel U 0.0002646914587093254 -0.26124043325191526 1.0 17889 -217827 Nrde2 nrde-2 necessary for RNA interference, domain containing Novel U 0.0002645774463111093 -0.26124161418858804 1.0 17890 -73721 Spmip6 sperm microtubule inner protein 6 Novel U 0.0002645412956123735 -0.26124198863633713 1.0 17891 -547210 H2al2c H2A histone family member L2C Novel U 0.0002645265339479896 -0.26124214153717157 1.0 17892 -28080 Atp5po ATP synthase peripheral stalk subunit OSCP Novel N 0.00026451049009496843 -0.26124230771887375 1.0 17893 -215723 Mfsd6l major facilitator superfamily domain containing 6-like Novel U 0.0002645051172141535 -0.2612423633709966 1.0 17894 -234959 Med17 mediator complex subunit 17 Novel N 0.00026435778434490505 -0.261243889440013 1.0 17895 -12349 Car2 carbonic anhydrase 2 Novel U 0.00026419136476362706 -0.2612456132085651 1.0 17896 -227099 Pms1 PMS1 homolog 1, mismatch repair system component Novel U 0.0002641707085306845 -0.2612458271651469 1.0 17897 -15400 Hoxa3 homeobox A3 Novel U 0.0002641456322448634 -0.2612460869044911 1.0 17898 -272411 B3gnt6 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 6 Novel N 0.0002641327332861905 -0.261246220511481 1.0 17899 -102637615 Scgb1b17 secretoglobin, family 1B, member 17 Novel U 0.0002640991073257167 -0.2612465688080742 1.0 17900 -241116 Cfap65 cilia and flagella associated protein 65 Novel N 0.00026405449648713266 -0.26124703088567375 1.0 17901 -67283 Slc25a19 solute carrier family 25 (mitochondrial thiamine pyrophosphate carrier), member 19 Novel U 0.00026398142725747765 -0.2612477877343525 1.0 17902 -116914 Slc19a2 solute carrier family 19 (thiamine transporter), member 2 Novel N 0.00026394904826856886 -0.2612481231148552 1.0 17903 -115486519 LOC115486519 zinc finger protein 120-like Novel U 0.0002637644273059161 -0.26125003541271724 1.0 17904 -330941 AI593442 expressed sequence AI593442 Novel U 0.0002637483818307259 -0.2612502016112218 1.0 17905 -269693 Ccdc60 coiled-coil domain containing 60 Novel U 0.00026371937566140724 -0.26125050205617006 1.0 17906 -64113 Moap1 modulator of apoptosis 1 Novel U 0.0002636911314145635 -0.2612507946091504 1.0 17907 -72014 Btbd17 BTB domain containing 17 Novel U 0.00026332536016784625 -0.26125458325569983 1.0 17908 -70900 4921517D22Rik RIKEN cDNA 4921517D22 gene Novel U 0.0002632453661571648 -0.2612554118310328 1.0 17909 -229595 Adamtsl4 ADAMTS-like 4 Novel U 0.00026318588446385023 -0.26125602794045677 1.0 17910 -245305 B230307C23Rik RIKEN cDNA B230307C23 gene Novel U 0.00026308041231577837 -0.2612571204174993 1.0 17911 -15427 Hoxc9 homeobox C9 Novel U 0.00026305348832925146 -0.2612573992952667 1.0 17912 -671564 Rnf212 ring finger protein 212 Novel N 0.0002629118514476032 -0.2612588663654307 1.0 17913 -226105 Cyp2c70 cytochrome P450, family 2, subfamily c, polypeptide 70 Novel U 0.0002628827807058901 -0.26125916747921774 1.0 17914 -242125 Mab21l3 mab-21-like 3 Novel U 0.0002628295734506467 -0.26125971859821845 1.0 17915 -93886 Pcdhb15 protocadherin beta 15 Novel U 0.000262811310624079 -0.2612599077639757 1.0 17916 -22184 Zrsr2 zinc finger (CCCH type), RNA binding motif and serine/arginine rich 2 Novel U 0.0002627652998151606 -0.26126038434242194 1.0 17917 -19819 Rnaseh1 ribonuclease H1 Novel U 0.00026270752919030496 -0.2612609827286551 1.0 17918 -74075 Syce1 synaptonemal complex central element protein 1 Novel U 0.0002626461642796311 -0.2612616183443826 1.0 17919 -210925 Ints9 integrator complex subunit 9 Novel U 0.000262622181709912 -0.26126186675505136 1.0 17920 -117591 Slc2a9 solute carrier family 2 (facilitated glucose transporter), member 9 Novel N 0.00026256077624177876 -0.2612625027908717 1.0 17921 -66311 Cenpw centromere protein W Novel U 0.0002625415435217022 -0.26126270200275403 1.0 17922 -208982 Hmgcll1 3-hydroxymethyl-3-methylglutaryl-Coenzyme A lyase-like 1 Novel N 0.00026248723181611497 -0.2612632645616151 1.0 17923 -666214 1700049E17Rik1 RIKEN cDNA 1700049E17 gene, gene 1 Novel U 0.00026235509241456805 -0.26126463325719246 1.0 17924 -20280 Scp2 sterol carrier protein 2, liver Novel U 0.0002623466673159224 -0.2612647205240873 1.0 17925 -28200 Dhrs4 dehydrogenase/reductase 4 Novel N 0.00026202403315164617 -0.2612680623581548 1.0 17926 -434869 Gm15097 predicted gene 15097 Novel U 0.00026201442808482776 -0.26126816184712115 1.0 17927 -12577 Cdkn1c cyclin dependent kinase inhibitor 1C Novel U 0.00026184800294944827 -0.2612698856732025 1.0 17928 -75483 Cox8c cytochrome c oxidase subunit 8C Novel U 0.00026175644687176966 -0.26127083400804535 1.0 17929 -56368 Cyb561d2 cytochrome b-561 domain containing 2 Novel N 0.00026156208897247057 -0.2612728471607771 1.0 17930 -239570 Ttc38 tetratricopeptide repeat domain 38 Novel U 0.000261370892857824 -0.2612748275638474 1.0 17931 -70155 Ogfrl1 opioid growth factor receptor-like 1 Novel U 0.00026129514849375726 -0.2612756121214804 1.0 17932 -328019 Spata32 spermatogenesis associated 32 Novel U 0.00026123941400792855 -0.26127618941745245 1.0 17933 -100039953 Gfy golgi-associated olfactory signaling regulator Novel U 0.00026117859666968375 -0.26127681936144276 1.0 17934 -216227 Slc17a8 solute carrier family 17 (sodium-dependent inorganic phosphate cotransporter), member 8 Novel U 0.000261145234758657 -0.26127716492302044 1.0 17935 -74245 Ctbs chitobiase Novel U 0.00026096939748569394 -0.26127898623971346 1.0 17936 -667988 Mageb6b2 MAGE family member B6B2 Novel U 0.0002604152516815905 -0.26128472606373576 1.0 17937 -70652 Tmem144 transmembrane protein 144 Novel U 0.0002603825060310002 -0.26128506524210815 1.0 17938 -235379 Gldn gliomedin Novel U 0.00026034436381295695 -0.2612854603179488 1.0 17939 -233058 Zfp420 zinc finger protein 420 Novel U 0.0002603070339909443 -0.2612858469790181 1.0 17940 -76826 Nubpl nucleotide binding protein-like Novel N 0.0002602989474000873 -0.26128593073966033 1.0 17941 -329777 Pigk phosphatidylinositol glycan anchor biosynthesis, class K Novel U 0.0002602848798637069 -0.2612860764507397 1.0 17942 -68770 Phtf2 putative homeodomain transcription factor 2 Novel U 0.000260262123139472 -0.2612863121641412 1.0 17943 -239510 Phf20l1 PHD finger protein 20-like 1 Novel U 0.00026024466206254105 -0.2612864930254021 1.0 17944 -109079 Sephs1 selenophosphate synthetase 1 Novel N 0.0002602432348181294 -0.2612865078087528 1.0 17945 -93696 Chrac1 chromatin accessibility complex 1 Novel N 0.00026020191235859004 -0.2612869358254303 1.0 17946 -240725 Sulf1 sulfatase 1 Novel U 0.0002600701140684955 -0.26128830098778644 1.0 17947 -52633 Nit2 nitrilase family, member 2 Novel N 0.0002600241836488738 -0.261288776733563 1.0 17948 -268512 Slc26a11 solute carrier family 26, member 11 Novel N 0.000260015576446597 -0.26128886588668127 1.0 17949 -67547 Slc39a8 solute carrier family 39 (metal ion transporter), member 8 Novel U 0.00025999868754700994 -0.26128904082134796 1.0 17950 -546038 Spag11b sperm associated antigen 11B Novel U 0.0002597967739486315 -0.26129113223576245 1.0 17951 -382059 Defa22 defensin, alpha, 22 Novel U 0.00025974457352641826 -0.26129167292601974 1.0 17952 -118445 Klf16 Kruppel-like transcription factor 16 Novel U 0.0002597438405328539 -0.26129168051834295 1.0 17953 -12877 Cpeb1 cytoplasmic polyadenylation element binding protein 1 Novel N 0.00025971782129289005 -0.2612919500247752 1.0 17954 -14028 Evx1 even-skipped homeobox 1 Novel U 0.00025962702415791196 -0.26129289049851445 1.0 17955 -72555 Shisa9 shisa family member 9 Novel U 0.00025955745855050767 -0.2612936110567891 1.0 17956 -22017 Tpmt thiopurine methyltransferase Novel N 0.0002593744454644275 -0.2612955067003185 1.0 17957 -13082 Cyp26a1 cytochrome P450, family 26, subfamily a, polypeptide 1 Novel N 0.0002593377616735238 -0.2612958866698188 1.0 17958 -331046 Tgm4 transglutaminase 4 (prostate) Novel U 0.00025886997092136615 -0.26130073203105186 1.0 17959 -28105 Trim36 tripartite motif-containing 36 Novel U 0.0002588274025954873 -0.26130117295237193 1.0 17960 -360217 Defb40 defensin beta 40 Novel U 0.0002588086841161555 -0.2613013668377655 1.0 17961 -69982 Spink2 serine peptidase inhibitor, Kazal type 2 Novel U 0.00025880163599702736 -0.26130143984195175 1.0 17962 -545085 Wdr70 WD repeat domain 70 Novel U 0.00025875135318718625 -0.2613019606696431 1.0 17963 -66971 Cdk5rap1 CDK5 regulatory subunit associated protein 1 Novel U 0.00025871830881203845 -0.26130230294219464 1.0 17964 -230612 Slc5a9 solute carrier family 5 (sodium/glucose cotransporter), member 9 Novel N 0.0002586719936042321 -0.2613027826735946 1.0 17965 -406221 Krt40 keratin 40 Novel U 0.00025866977439582557 -0.2613028056600823 1.0 17966 -19364 Rad51d RAD51 paralog D Novel U 0.00025863062874589046 -0.26130321112943744 1.0 17967 -234730 Fcsk fucose kinase Novel N 0.0002584961523044129 -0.2613046040319976 1.0 17968 -75469 Spata19 spermatogenesis associated 19 Novel U 0.00025843565181020575 -0.2613052306941278 1.0 17969 -228777 Nrsn2 neurensin 2 Novel U 0.0002583660826453103 -0.26130595128925077 1.0 17970 -211948 Pde12 phosphodiesterase 12 Novel U 0.00025835337238025766 -0.2613060829417584 1.0 17971 -245403 Dcaf12l2 DDB1 and CUL4 associated factor 12-like 2 Novel U 0.00025834997725264264 -0.2613061181083786 1.0 17972 -100126775 Esp38 exocrine gland secreted peptide 38 Novel U 0.000258232063788644 -0.2613073394521625 1.0 17973 -436563 Gm5773 TD and POZ domain containing 2 pseudogene Novel U 0.0002581133853398701 -0.2613085687196336 1.0 17974 -234967 Slc36a4 solute carrier family 36 (proton/amino acid symporter), member 4 Novel U 0.000258056960262107 -0.26130915316873415 1.0 17975 -226016 Abhd17b abhydrolase domain containing 17B Novel N 0.00025797984598424216 -0.2613099519158893 1.0 17976 -27358 Defb3 defensin beta 3 Novel U 0.0002579718620049977 -0.26131003461368385 1.0 17977 -57814 Kcne4 potassium voltage-gated channel, Isk-related subfamily, gene 4 Novel U 0.0002579678048614639 -0.2613100766374432 1.0 17978 -16678 Krt1 keratin 1 Novel U 0.00025793328799972873 -0.26131043416196237 1.0 17979 -56365 Clcnkb chloride channel, voltage-sensitive Kb Novel U 0.00025787040720293006 -0.2613110854791885 1.0 17980 -58200 Ppp1r1a protein phosphatase 1, regulatory inhibitor subunit 1A Novel U 0.0002578364074853527 -0.2613114376471455 1.0 17981 -73340 Nptxr neuronal pentraxin receptor Novel U 0.000257799012178688 -0.2613118249865026 1.0 17982 -73166 Tm7sf2 transmembrane 7 superfamily member 2 Novel N 0.00025772420525496344 -0.26131259983415944 1.0 17983 -103765 Tmem17 transmembrane protein 17 Novel N 0.00025758345860973323 -0.2613140576832839 1.0 17984 -434203 Slc28a1 solute carrier family 28 (sodium-coupled nucleoside transporter), member 1 Novel U 0.00025754873489802554 -0.2613144173503483 1.0 17985 -330230 Zfp853 zinc finger protein 853 Novel U 0.0002574728490010594 -0.26131520337397446 1.0 17986 -224792 Adgrf5 adhesion G protein-coupled receptor F5 Novel N 0.00025747219540471163 -0.26131521014390396 1.0 17987 -13018 Ctcf CCCTC-binding factor Novel U 0.000257401152512089 -0.26131594600385033 1.0 17988 -246190 Otoa otoancorin Novel N 0.00025738770566370833 -0.2613160852858638 1.0 17989 -170676 Peg10 paternally expressed 10 Novel U 0.0002572082336596346 -0.2613179442509822 1.0 17990 -22598 Slc6a18 solute carrier family 6 (neurotransmitter transporter), member 18 Novel N 0.00025720393865138693 -0.2613179887385364 1.0 17991 -329731 Tafa3 TAFA chemokine like family member 3 Novel U 0.0002571731540332618 -0.26131830760459895 1.0 17992 -23972 Papss2 3'-phosphoadenosine 5'-phosphosulfate synthase 2 Novel N 0.0002571408484381624 -0.26131864222489104 1.0 17993 -230579 Fam151a family with sequence simliarity 151, member A Novel U 0.0002570159033474836 -0.26131993640203294 1.0 17994 -330890 Piwil4 piwi-like RNA-mediated gene silencing 4 Novel N 0.0002569469190069166 -0.2613206509395648 1.0 17995 -246317 Neto1 neuropilin (NRP) and tolloid (TLL)-like 1 Novel U 0.00025688887360042153 -0.2613212521719771 1.0 17996 -27784 Commd8 COMM domain containing 8 Novel U 0.0002568592515967245 -0.26132155899571763 1.0 17997 -99003 Qser1 glutamine and serine rich 1 Novel U 0.00025673059018973345 -0.26132289166634176 1.0 17998 -15312 Hmgn1 high mobility group nucleosomal binding domain 1 Novel N 0.0002566923344006093 -0.26132328791854786 1.0 17999 -18516 Pbx3 pre B cell leukemia homeobox 3 Novel N 0.0002566705778720855 -0.26132351327195513 1.0 18000 -66116 Nat8f1 N-acetyltransferase 8 (GCN5-related) family member 1 Novel U 0.00025644425483723404 -0.2613258575185102 1.0 18001 -50724 Sap30l SAP30-like Novel U 0.0002563451932627653 -0.261326883595042 1.0 18002 -223267 Ggact gamma-glutamylamine cyclotransferase Novel N 0.00025634325635121616 -0.26132690365750816 1.0 18003 -667962 Zfp966 zinc finger protein 966 Novel U 0.00025630529985878355 -0.2613272968096091 1.0 18004 -13521 Slc26a2 solute carrier family 26 (sulfate transporter), member 2 Novel U 0.0002560438877256085 -0.261330004507891 1.0 18005 -68239 Krt42 keratin 42 Novel U 0.0002557392714371197 -0.26133315971339344 1.0 18006 -81879 Tfcp2l1 transcription factor CP2-like 1 Novel N 0.00025570105315263463 -0.2613335555771278 1.0 18007 -76960 Bcas1 brain enriched myelin associated protein 1 Novel U 0.0002556194266156175 -0.2613344010621149 1.0 18008 -72480 Tspyl4 TSPY-like 4 Novel U 0.0002555585702328141 -0.26133503141052744 1.0 18009 -66929 Asf1b anti-silencing function 1B histone chaperone Novel N 0.00025555110805922196 -0.2613351087034762 1.0 18010 -26565 Pla2g10 phospholipase A2, group X Novel U 0.00025500684653799325 -0.26134074614642144 1.0 18011 -74359 4931414P19Rik RIKEN cDNA 4931414P19 gene Novel U 0.0002549500047018216 -0.26134133491229194 1.0 18012 -18933 Prrx1 paired related homeobox 1 Novel U 0.00025493147750772527 -0.26134152681635936 1.0 18013 -619310 Zfp872 zinc finger protein 872 Novel U 0.0002549295976178255 -0.2613415462881971 1.0 18014 -22221 Ubp1 upstream binding protein 1 Novel N 0.0002548733401604433 -0.26134212900109133 1.0 18015 -17436 Me1 malic enzyme 1, NADP(+)-dependent, cytosolic Novel U 0.00025483548504405036 -0.2613425211031425 1.0 18016 -100041787 Defa40 defensin, alpha, 40 Novel U 0.00025470605032761637 -0.26134386178368035 1.0 18017 -665211 Gm14326 predicted gene 14326 Novel U 0.0002546750979465252 -0.26134418238742624 1.0 18018 -77704 Lcn9 lipocalin 9 Novel U 0.0002545989272553865 -0.2613449713609411 1.0 18019 -100504710 Nat8f6 N-acetyltransferase 8 (GCN5-related) family member 6 Novel U 0.0002544365429154304 -0.2613466533325962 1.0 18020 -234219 Helt helt bHLH transcription factor Novel U 0.00025443184129678555 -0.2613467020318076 1.0 18021 -80733 Car15 carbonic anhydrase 15 Novel U 0.0002543460066583491 -0.26134759110417083 1.0 18022 -212392 Ccdc110 coiled-coil domain containing 110 Novel U 0.0002543161978387847 -0.261347899862944 1.0 18023 -216151 Polrmt polymerase (RNA) mitochondrial (DNA directed) Novel N 0.000254183862508481 -0.261349270587945 1.0 18024 -15401 Hoxa4 homeobox A4 Novel N 0.00025413903751994496 -0.26134973488370267 1.0 18025 -68294 Mfsd10 major facilitator superfamily domain containing 10 Novel N 0.0002538883187079505 -0.26135233182091544 1.0 18026 -100312476 Vmn1r238 vomeronasal 1 receptor, 238 Novel U 0.0002536928340315369 -0.26135435664476747 1.0 18027 -211924 Dsg1c desmoglein 1 gamma Novel U 0.00025359739018219996 -0.2613553452490214 1.0 18028 -80902 Zfp202 zinc finger protein 202 Novel N 0.00025356442303939053 -0.26135568672160286 1.0 18029 -14862 Gstm1 glutathione S-transferase, mu 1 Novel U 0.00025354746945435946 -0.2613558623262793 1.0 18030 -109900 Asl argininosuccinate lyase Novel N 0.0002535422734502541 -0.261355916146319 1.0 18031 -78754 Galnt15 polypeptide N-acetylgalactosaminyltransferase 15 Novel N 0.0002534420000215978 -0.2613569547751967 1.0 18032 -404195 Cyp2c54 cytochrome P450, family 2, subfamily c, polypeptide 54 Novel U 0.0002534347270224901 -0.2613570301086824 1.0 18033 -67212 Mrpl55 mitochondrial ribosomal protein L55 Novel U 0.00025329559126377726 -0.2613584712722973 1.0 18034 -67430 4921536K21Rik RIKEN cDNA 4921536K21 gene Novel U 0.0002531268764873229 -0.2613602188144056 1.0 18035 -12856 Cox17 cytochrome c oxidase assembly protein 17, copper chaperone Novel N 0.0002530972704807198 -0.26136052547244876 1.0 18036 -211482 Efhb EF hand domain family, member B Novel U 0.00025286267322987074 -0.2613629554230611 1.0 18037 -59016 Thap11 THAP domain containing 11 Novel N 0.0002528336373081514 -0.2613632561761837 1.0 18038 -332175 Zdhhc23 zinc finger, DHHC domain containing 23 Novel U 0.0002527029094550663 -0.26136461025098856 1.0 18039 -170442 Bbox1 gamma-butyrobetaine hydroxylase 1 Novel N 0.0002526903495591094 -0.26136474034597795 1.0 18040 -20498 Slc12a4 solute carrier family 12, member 4 Novel U 0.00025249003091562733 -0.261366815239902 1.0 18041 -320225 Catsperg1 cation channel sperm associated auxiliary subunit gamma 1 Novel U 0.000252318784668756 -0.2613685890028977 1.0 18042 -75079 Zbtb49 zinc finger and BTB domain containing 49 Novel N 0.00025224427024328217 -0.26136936082086726 1.0 18043 -18984 Por cytochrome p450 oxidoreductase Novel U 0.00025219061450398194 -0.2613699165852511 1.0 18044 -27276 Plekhb1 pleckstrin homology domain containing, family B (evectins) member 1 Novel U 0.00025175141859003176 -0.26137446576209 1.0 18045 -100043381 Gm14308 predicted gene 14308 Novel U 0.00025172640005588026 -0.2613747249032443 1.0 18046 -12593 Cdyl chromodomain protein, Y chromosome-like Novel U 0.00025158848791393356 -0.261376153392677 1.0 18047 -100043133 Zfp696 zinc finger protein 696 Novel U 0.0002515583517406881 -0.26137646554216876 1.0 18048 -54650 Sfmbt1 Scm-like with four mbt domains 1 Novel N 0.0002514107169280822 -0.2613779947387045 1.0 18049 -72774 Neil1 nei endonuclease VIII-like 1 (E. coli) Novel N 0.0002513684648343593 -0.2613784323845023 1.0 18050 -15478 Hs3st3a1 heparan sulfate (glucosamine) 3-O-sulfotransferase 3A1 Novel N 0.00025135289440238157 -0.2613785936625249 1.0 18051 -76390 Zfp735 zinc finger protein 735 Novel U 0.00025131700660773723 -0.2613789653871221 1.0 18052 -235048 Zfp599 zinc finger protein 599 Novel U 0.0002512122999141765 -0.2613800499356119 1.0 18053 -11354 Scgb1b27 secretoglobin, family 1B, member 27 Novel U 0.00025118035602488757 -0.2613803808093671 1.0 18054 -107392 Brms1 breast cancer metastasis-suppressor 1 Novel U 0.0002511307705868115 -0.26138089441370466 1.0 18055 -625650 Samt1c spermatogenesis associated multipass transmembrane protein 1c Novel U 0.0002506702565617123 -0.26138566440283806 1.0 18056 -97086 Slc9b2 solute carrier family 9, subfamily B (NHA2, cation proton antiporter 2), member 2 Novel N 0.0002506435743977051 -0.26138594077581573 1.0 18057 -74186 Ccdc3 coiled-coil domain containing 3 Novel N 0.0002506124321230073 -0.26138626334647325 1.0 18058 -329154 Ankrd44 ankyrin repeat domain 44 Novel U 0.0002504760385344036 -0.2613876761067803 1.0 18059 -214106 4933430I17Rik RIKEN cDNA 4933430I17 gene Novel U 0.00025024338459622616 -0.2613900859286239 1.0 18060 -100042777 Erhrt-ps ERH mRNA splicing and mitosis factor retrotransposed, pseudogene Novel U 0.0002501913191241813 -0.26139062522107176 1.0 18061 -17122 Mxd4 Max dimerization protein 4 Novel U 0.0002501568256595755 -0.2613909825032442 1.0 18062 -75541 Nat8f4 N-acetyltransferase 8 (GCN5-related) family member 4 Novel U 0.000250152029686007 -0.2613910321797808 1.0 18063 -229706 Slc6a17 solute carrier family 6 (neurotransmitter transporter), member 17 Novel U 0.0002501196455315885 -0.2613913676137877 1.0 18064 -66625 Pnisr PNN interacting serine/arginine-rich Novel U 0.0002501186445879565 -0.26139137798152895 1.0 18065 -66596 Gtf3a general transcription factor III A Novel N 0.00025008378116782597 -0.2613917390956886 1.0 18066 -70257 Atp5mj ATP synthase membrane subunit j Novel U 0.00024999584118306177 -0.26139264997515993 1.0 18067 -20775 Sqle squalene epoxidase Novel N 0.00024996304985725967 -0.2613929896266346 1.0 18068 -208111 Zfp976 zinc finger protein 976 Novel U 0.0002496970737658315 -0.2613957445982461 1.0 18069 -98488 Gtf3c3 general transcription factor IIIC, polypeptide 3 Novel N 0.00024967084993121646 -0.261396016223863 1.0 18070 -320118 Fbxl13 F-box and leucine-rich repeat protein 13 Novel U 0.00024961416493820914 -0.2613966033651572 1.0 18071 -626708 Defa26 defensin, alpha, 26 Novel U 0.0002493876443097183 -0.2613989496583806 1.0 18072 -14317 Ftcd formiminotransferase cyclodeaminase Novel U 0.00024927073441904896 -0.26140016060718496 1.0 18073 -26358 Aldh1a7 aldehyde dehydrogenase family 1, subfamily A7 Novel U 0.00024902396018243857 -0.26140271668661547 1.0 18074 -66298 Defa21 defensin, alpha, 21 Novel U 0.00024897897028154024 -0.26140318269053003 1.0 18075 -80384 Tex21 testis expressed gene 21 Novel U 0.0002487338484442694 -0.2614057216544625 1.0 18076 -16469 Jrk jerky Novel U 0.0002486959266914921 -0.2614061144467312 1.0 18077 -11625 Ahsg alpha-2-HS-glycoprotein Novel U 0.00024861068529380154 -0.2614069973743263 1.0 18078 -245050 Gask1a golgi associated kinase 1A Novel U 0.0002484568948542135 -0.261408590330644 1.0 18079 -76383 H2al1m H2A histone family member L1M Novel U 0.0002484499306171594 -0.26140866246598243 1.0 18080 -228802 Bpifb5 BPI fold containing family B, member 5 Novel U 0.0002483895957260021 -0.26140928741280167 1.0 18081 -242726 Padi6 peptidyl arginine deiminase, type VI Novel N 0.0002480489573570002 -0.2614128157338299 1.0 18082 -115488195 Gm20379 predicted gene, 20379 Novel U 0.00024783587127544937 -0.26141502287245777 1.0 18083 -100042929 H2al1c H2A histone family member L1C Novel U 0.00024771527991461825 -0.261416271953809 1.0 18084 -74243 Slx4ip SLX4 interacting protein Novel U 0.0002477009321368056 -0.26141642056761993 1.0 18085 -15441 Hp1bp3 heterochromatin protein 1, binding protein 3 Novel U 0.00024750905043427024 -0.261418408071987 1.0 18086 -272538 Tango6 transport and golgi organization 6 Novel U 0.00024711226364844814 -0.2614225179764709 1.0 18087 -229759 Olfm3 olfactomedin 3 Novel U 0.000247088066495485 -0.26142276860978586 1.0 18088 -14080 Fabp1 fatty acid binding protein 1, liver Novel N 0.0002466732315730592 -0.2614270654562754 1.0 18089 -232664 Ccdc136 coiled-coil domain containing 136 Novel U 0.00024660120886920665 -0.26142781146507427 1.0 18090 -72982 Tmem138 transmembrane protein 138 Novel N 0.00024657841333940834 -0.2614280475804226 1.0 18091 -66190 Acer3 alkaline ceramidase 3 Novel U 0.00024653931485498084 -0.261428452561239 1.0 18092 -66356 Knop1 lysine rich nucleolar protein 1 Novel U 0.00024652284190570964 -0.261428623187506 1.0 18093 -217698 Acot5 acyl-CoA thioesterase 5 Novel U 0.00024628688782754604 -0.2614310671920911 1.0 18094 -52245 Commd2 COMM domain containing 2 Novel U 0.0002462202242549999 -0.26143175769118404 1.0 18095 -19711 Resp18 regulated endocrine-specific protein 18 Novel U 0.0002460174653409328 -0.2614338578613506 1.0 18096 -85031 Pla1a phospholipase A1 member A Novel U 0.0002459333093511402 -0.2614347295463264 1.0 18097 -13012 Cst8 cystatin 8 (cystatin-related epididymal spermatogenic) Novel U 0.0002456967585080372 -0.26143717973218306 1.0 18098 -100038977 Gm1993 predicted gene 1993 Novel U 0.0002455840090796886 -0.2614383475870555 1.0 18099 -117934532 Gm48552 predicted gene, 48552 Novel U 0.0002455511391987062 -0.26143868805220216 1.0 18100 -64103 Tnmd tenomodulin Novel U 0.0002455508346096043 -0.26143869120712604 1.0 18101 -213389 Prdm9 PR domain containing 9 Novel U 0.00024553403684931586 -0.26143886519777493 1.0 18102 -15077 H3c14 H3 clustered histone 14 Novel U 0.00024544800524593514 -0.2614397563102946 1.0 18103 -68147 Gar1 GAR1 ribonucleoprotein Novel U 0.0002453721333998315 -0.2614405421883824 1.0 18104 -330513 Gm5114 predicted gene 5114 Novel U 0.0002452682580889955 -0.2614416181254373 1.0 18105 -13101 Cyp2d10 cytochrome P450, family 2, subfamily d, polypeptide 10 Novel U 0.0002452031389774366 -0.26144229262705415 1.0 18106 -227638 Qsox2 quiescin Q6 sulfhydryl oxidase 2 Novel U 0.00024516114594611997 -0.2614427275894921 1.0 18107 -109222 Rarres1 retinoic acid receptor responder (tazarotene induced) 1 Novel U 0.00024507394454351106 -0.2614436308187537 1.0 18108 -75497 Fabp12 fatty acid binding protein 12 Novel U 0.0002448548732132599 -0.26144589995239087 1.0 18109 -72556 Zfp566 zinc finger protein 566 Novel U 0.000244849955754624 -0.2614459508872658 1.0 18110 -329557 Svs3b seminal vesicle secretory protein 3B Novel U 0.00024484564166536206 -0.2614459955724605 1.0 18111 -18114 Rrp1 ribosomal RNA processing 1 Novel U 0.0002448414461086348 -0.2614460390298992 1.0 18112 -224796 Clic5 chloride intracellular channel 5 Novel U 0.0002448325063413892 -0.26144613162771446 1.0 18113 -67715 2010106E10Rik RIKEN cDNA 2010106E10 gene Novel U 0.0002447585178551002 -0.2614468979980232 1.0 18114 -69541 Lyg1 lysozyme G-like 1 Novel U 0.00024459491860035637 -0.2614485925537258 1.0 18115 -64406 Sp5 trans-acting transcription factor 5 Novel U 0.00024441081975157036 -0.2614504994435496 1.0 18116 -20762 Sprr2h small proline-rich protein 2H Novel U 0.0002443876289040652 -0.2614507396535857 1.0 18117 -209225 Zfp710 zinc finger protein 710 Novel U 0.0002441832998534624 -0.2614528560871749 1.0 18118 -233168 AI987944 expressed sequence AI987944 Novel U 0.00024411726305768197 -0.26145354009413474 1.0 18119 -667034 Pnp2 purine-nucleoside phosphorylase 2 Novel U 0.0002441166267686486 -0.2614535466847956 1.0 18120 -241128 Fam124b family with sequence similarity 124, member B Novel U 0.0002441104384443126 -0.2614536107832557 1.0 18121 -30838 Fbxw4 F-box and WD-40 domain protein 4 Novel N 0.00024401588832067842 -0.2614545901303281 1.0 18122 -105827 Amigo2 adhesion molecule with Ig like domain 2 Novel U 0.00024387606918800065 -0.2614560383723081 1.0 18123 -72881 Zdhhc4 zinc finger, DHHC domain containing 4 Novel U 0.0002437081978244018 -0.26145777717837376 1.0 18124 -114584 Clic1 chloride intracellular channel 1 Novel N 0.0002437002191696511 -0.2614578598210174 1.0 18125 -105727 Slc38a1 solute carrier family 38, member 1 Novel U 0.00024366238947692604 -0.2614582516597311 1.0 18126 -66664 Tmem41a transmembrane protein 41a Novel U 0.00024344638722896667 -0.2614604890039147 1.0 18127 -56388 Cyp3a25 cytochrome P450, family 3, subfamily a, polypeptide 25 Novel U 0.00024339279204677622 -0.26146104414105 1.0 18128 -73173 Pcdh18 protocadherin 18 Novel U 0.0002433721560968847 -0.2614612578875406 1.0 18129 -97440 B3gnt9 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 9 Novel U 0.00024331353654893624 -0.26146186506689123 1.0 18130 -73720 Cst6 cystatin E/M Novel U 0.00024314306847005455 -0.26146363076964846 1.0 18131 -668198 Cdc5lrt5 cell division cycle 5 like, retrotransposed 5 Novel U 0.00024309721818703588 -0.2614641056853727 1.0 18132 -625464 Ccdc121rt2 coiled-coil domain containing 121, retrogene 2 Novel U 0.00024307324230665378 -0.26146435402675355 1.0 18133 -100042437 Vmn1r79 vomeronasal 1 receptor 79 Novel U 0.0002429460084147993 -0.2614656719112228 1.0 18134 -100073351 Yy2 Yy2 transcription factor Novel U 0.00024286265251431541 -0.2614665353088998 1.0 18135 -20020 Polr2a polymerase (RNA) II (DNA directed) polypeptide A Novel U 0.0002427679536068561 -0.26146751619707026 1.0 18136 -212503 Paox polyamine oxidase (exo-N4-amino) Novel N 0.0002426061653177546 -0.26146919199485025 1.0 18137 -110074 Dut deoxyuridine triphosphatase Novel U 0.00024253899191475833 -0.2614698877747503 1.0 18138 -71468 Obox1 oocyte specific homeobox 1 Novel U 0.0002424335311844357 -0.2614709801335281 1.0 18139 -14911 Thumpd3 THUMP domain containing 3 Novel N 0.0002422996790304635 -0.26147236656973877 1.0 18140 -243168 Hsd17b13 hydroxysteroid (17-beta) dehydrogenase 13 Novel N 0.000242288037748617 -0.26147248714975346 1.0 18141 -270028 Nalf1 NALCN channel auxiliary factor 1 Novel U 0.00024225708722570226 -0.2614728077342524 1.0 18142 -93876 Pcdhb5 protocadherin beta 5 Novel U 0.00024210715457930403 -0.261474360731675 1.0 18143 -100503992 Gm6040 predicted gene 6040 Novel U 0.00024204711419598417 -0.26147498262799174 1.0 18144 -68701 Ppp1r27 protein phosphatase 1, regulatory subunit 27 Novel U 0.00024201562505671027 -0.2614753087914612 1.0 18145 -668257 Dgat2l6 diacylglycerol O-acyltransferase 2-like 6 Novel U 0.00024194738247810592 -0.261476015645847 1.0 18146 -79233 Zfp319 zinc finger protein 319 Novel U 0.00024188809325380374 -0.2614766297616833 1.0 18147 -106648 Cyp4f15 cytochrome P450, family 4, subfamily f, polypeptide 15 Novel U 0.00024184147384163587 -0.261477112644022 1.0 18148 -93691 Klf7 Kruppel-like transcription factor 7 (ubiquitous) Novel U 0.00024181354770023332 -0.26147740190207663 1.0 18149 -235330 Ttc12 tetratricopeptide repeat domain 12 Novel N 0.0002417894962503149 -0.26147765102620424 1.0 18150 -94220 Cnnm4 cyclin M4 Novel N 0.00024178712199096725 -0.2614776756187045 1.0 18151 -69287 Cimap1a ciliary microtubule associated protein 1A Novel U 0.00024163813272847406 -0.26147921884458764 1.0 18152 -69089 Oxa1l oxidase assembly 1-like Novel U 0.0002415616616400479 -0.2614800109296077 1.0 18153 -384071 Slc25a34 solute carrier family 25, member 34 Novel U 0.0002415566040336084 -0.26148006331612894 1.0 18154 -78081 Crisp4 cysteine-rich secretory protein 4 Novel U 0.0002412859471095033 -0.2614828667716515 1.0 18155 -245522 Zc4h2 zinc finger, C4H2 domain containing Novel U 0.0002411882750397067 -0.2614838784557396 1.0 18156 -192653 Ttc36 tetratricopeptide repeat domain 36 Novel U 0.0002409295126287676 -0.2614865587082858 1.0 18157 -66078 Tsen34 tRNA splicing endonuclease subunit 34 Novel N 0.00024089826538150518 -0.26148688236624573 1.0 18158 -244486 Adam29 a disintegrin and metallopeptidase domain 29 Novel N 0.0002408922017535378 -0.2614869451731049 1.0 18159 -70536 Qpct glutaminyl-peptide cyclotransferase (glutaminyl cyclase) Novel N 0.00024058225879341496 -0.26149015555209704 1.0 18160 -72948 Tppp tubulin polymerization promoting protein Novel U 0.00024033034583204174 -0.2614927648582697 1.0 18161 -27400 Hsd17b6 hydroxysteroid (17-beta) dehydrogenase 6 Novel N 0.0002401544402067485 -0.2614945868829539 1.0 18162 -17425 Foxk1 forkhead box K1 Novel N 0.00024013540431723983 -0.2614947840560717 1.0 18163 -320685 Dctd dCMP deaminase Novel N 0.00024005691562477968 -0.261495597039368 1.0 18164 -226049 Dmrt2 doublesex and mab-3 related transcription factor 2 Novel U 0.00023990156049977273 -0.2614972062026458 1.0 18165 -80795 Selenok selenoprotein K Novel N 0.0002397943390510358 -0.26149831679888713 1.0 18166 -78619 Zfp449 zinc finger protein 449 Novel U 0.0002395905046327564 -0.26150042810909097 1.0 18167 -381546 Ccdc24 coiled-coil domain containing 24 Novel U 0.00023958555210366284 -0.2615004794072245 1.0 18168 -68966 Ngdn neuroguidin, EIF4E binding protein Novel N 0.00023946799932415271 -0.2615016970150503 1.0 18169 -22746 Zfp85 zinc finger protein 85 Novel U 0.00023932471140348307 -0.26150318118662225 1.0 18170 -66279 Tmem218 transmembrane protein 218 Novel U 0.00023916942081179338 -0.2615047896814661 1.0 18171 -28042 Selenoi selenoprotein I Novel U 0.0002391665250210135 -0.2615048196759718 1.0 18172 -105247240 Pnma8c PNMA family member 8C Novel U 0.0002391434860888817 -0.26150505831247345 1.0 18173 -100503036 Ccdc179 coiled-coil domain containing 179 Novel U 0.00023912976840328705 -0.2615052003998099 1.0 18174 -211712 Pcdh9 protocadherin 9 Novel U 0.0002389168726191836 -0.2615074055673431 1.0 18175 -235320 Zbtb16 zinc finger and BTB domain containing 16 Novel U 0.00023890826422836577 -0.2615074947327722 1.0 18176 -75753 Klf17 Kruppel-like transcription factor 17 Novel U 0.00023888715014206476 -0.261507713431784 1.0 18177 -13109 Cyp2j5 cytochrome P450, family 2, subfamily j, polypeptide 5 Novel U 0.00023882704170866576 -0.2615083360329612 1.0 18178 -11671 Aldh3a2 aldehyde dehydrogenase family 3, subfamily A2 Novel U 0.00023878276732320982 -0.2615087946255903 1.0 18179 -171286 Slc12a8 solute carrier family 12 (potassium/chloride transporters), member 8 Novel U 0.0002387552749903404 -0.2615090793902704 1.0 18180 -625662 Ankrd31 ankyrin repeat domain 31 Novel U 0.00023864606270158564 -0.2615102106075672 1.0 18181 -74322 Cxxc1 CXXC finger protein 1 Novel N 0.0002384699710194278 -0.2615120345594223 1.0 18182 -58188 Vstm2b V-set and transmembrane domain containing 2B Novel U 0.00023840217704681593 -0.26151273676716197 1.0 18183 -19682 Rdh5 retinol dehydrogenase 5 Novel U 0.00023833084344788971 -0.2615134756382347 1.0 18184 -260297 Prrt1 proline-rich transmembrane protein 1 Novel U 0.0002383185931334712 -0.26151360252658873 1.0 18185 -19683 Rdh16 retinol dehydrogenase 16 Novel U 0.0002382012814421581 -0.2615148176372309 1.0 18186 -66425 Pcp4l1 Purkinje cell protein 4-like 1 Novel U 0.00023809653276935503 -0.26151590262054036 1.0 18187 -434759 Rhox4c reproductive homeobox 4C Novel U 0.0002380205346187924 -0.2615166898068856 1.0 18188 -14854 Gss glutathione synthetase Novel U 0.0002376503988270667 -0.2615205236612487 1.0 18189 -68616 Gdpd3 glycerophosphodiester phosphodiesterase domain containing 3 Novel N 0.00023735581244319653 -0.26152357497732887 1.0 18190 -18096 Nkx6-1 NK6 homeobox 1 Novel N 0.00023721107715858058 -0.261525074140649 1.0 18191 -16372 Irx2 Iroquois homeobox 2 Novel N 0.00023710366437446287 -0.26152618671873584 1.0 18192 -72852 Mblac2 metallo-beta-lactamase domain containing 2 Novel U 0.00023697875911164818 -0.26152748048334207 1.0 18193 -270166 Clpx caseinolytic mitochondrial matrix peptidase chaperone subunit Novel U 0.00023692709190760336 -0.2615280156505431 1.0 18194 -319530 Zfp750 zinc finger protein 750 Novel U 0.00023686514186270884 -0.26152865732707165 1.0 18195 -17142 Magea6 MAGE family member A6 Novel U 0.00023673859295304242 -0.2615299681165179 1.0 18196 -76279 Cyp2d26 cytochrome P450, family 2, subfamily d, polypeptide 26 Novel U 0.00023673700090845242 -0.26152998460686344 1.0 18197 -69539 Trnp1 TMF1-regulated nuclear protein 1 Novel U 0.00023667383209495185 -0.26153063890735706 1.0 18198 -223726 Mpped1 metallophosphoesterase domain containing 1 Novel U 0.00023666998069530318 -0.261530678800028 1.0 18199 -226517 Smg7 SMG7 nonsense mediated mRNA decay factor Novel N 0.00023659172407449955 -0.26153148937953374 1.0 18200 -393082 Tmt1a2 thiol methyltransferase 1A2 Novel U 0.00023655572813864123 -0.26153186222425406 1.0 18201 -75764 Slx1b SLX1 structure-specific endonuclease subunit homolog B (S. cerevisiae) Novel U 0.00023648655174270466 -0.26153257875108915 1.0 18202 -14544 Gda guanine deaminase Novel N 0.00023646446213963437 -0.2615328075544716 1.0 18203 -140476 Strc stereocilin Novel N 0.00023644817792285386 -0.2615329762258537 1.0 18204 -66816 Thap2 THAP domain containing, apoptosis associated protein 2 Novel U 0.00023641541119266 -0.2615333156225679 1.0 18205 -56043 Akr1e1 aldo-keto reductase family 1, member E1 Novel U 0.0002364083033785564 -0.26153338924507274 1.0 18206 -73526 Speer4b spermatogenesis associated glutamate (E)-rich protein 4B Novel U 0.00023636179733950926 -0.2615338709530964 1.0 18207 -246081 Defb11 defensin beta 11 Novel U 0.00023636155695837748 -0.26153387344295626 1.0 18208 -664608 Rhox4g reproductive homeobox 4G Novel U 0.00023633838107952435 -0.26153411349794753 1.0 18209 -269023 Zfp608 zinc finger protein 608 Novel U 0.00023612906708065398 -0.261536281565467 1.0 18210 -245595 Zfp711 zinc finger protein 711 Novel N 0.00023612080301225715 -0.2615363671644158 1.0 18211 -20515 Slc20a1 solute carrier family 20, member 1 Novel N 0.00023606225591051637 -0.26153697359337097 1.0 18212 -19367 Rad9a RAD9 checkpoint clamp component A Novel U 0.00023588667955860357 -0.2615387922074523 1.0 18213 -73293 Ccdc103 coiled-coil domain containing 103 Novel U 0.00023587769221867838 -0.2615388852980238 1.0 18214 -14237 Foxd4 forkhead box D4 Novel U 0.00023585549789154625 -0.26153911518613465 1.0 18215 -73680 Zbtb8a zinc finger and BTB domain containing 8a Novel N 0.00023578722165082234 -0.2615398223891916 1.0 18216 -66491 Polr2l polymerase (RNA) II (DNA directed) polypeptide L Novel N 0.00023569920458831818 -0.26154073406703165 1.0 18217 -115489950 Zfp988 zinc finger protein 988 Novel U 0.00023563134006021602 -0.2615414370055828 1.0 18218 -235050 Zfp810 zinc finger protein 810 Novel U 0.0002355160491552658 -0.2615426311849863 1.0 18219 -11431 Acp1 acid phosphatase 1, soluble Novel U 0.00023551177776689558 -0.2615426754278866 1.0 18220 -545947 Scgb2b19 secretoglobin, family 2B, member 19 Novel U 0.00023540895269513556 -0.26154374048659973 1.0 18221 -664829 Slx Sycp3 like X-linked Novel U 0.0002353745794994903 -0.26154409652303023 1.0 18222 -102122 Psme3ip1 proteasome activator subunit 3 interacting protein 1 Novel U 0.00023531651511737506 -0.2615446979519914 1.0 18223 -20262 Stmn3 stathmin-like 3 Novel N 0.0002351837744416188 -0.2615460728755473 1.0 18224 -83491 Pramel1 PRAME like 1 Novel U 0.00023518048711499803 -0.26154610692556834 1.0 18225 -69674 Mif4gd MIF4G domain containing Novel N 0.00023501340340754568 -0.26154783757311756 1.0 18226 -435815 Aadacl4 arylacetamide deacetylase like 4 Novel U 0.0002349691620472318 -0.26154829582367334 1.0 18227 -333182 Cox6b2 cytochrome c oxidase subunit 6B2 Novel U 0.0002349561394502176 -0.2615484307113051 1.0 18228 -56370 Tagln3 transgelin 3 Novel N 0.00023479334637083199 -0.2615501169166699 1.0 18229 -70127 Dpf3 double PHD fingers 3 Novel U 0.0002347830130273339 -0.26155022394910216 1.0 18230 -99167 Ssx2ip SSX family member 2 interacting protein Novel N 0.00023475617299830026 -0.26155050195724056 1.0 18231 -235345 Hoatz HOATZ cilia and flagella associated protein Novel U 0.0002346169791820851 -0.26155194372221313 1.0 18232 -432825 Gm5458 predicted gene 5458 Novel U 0.00023459350414014704 -0.26155218687592585 1.0 18233 -11605 Gla galactosidase, alpha Novel U 0.0002345309274924727 -0.26155283504278537 1.0 18234 -380969 Nckap5l NCK-associated protein 5-like Novel U 0.0002344626619516917 -0.26155354213501264 1.0 18235 -12036 Bcat2 branched chain aminotransferase 2, mitochondrial Novel N 0.00023440133602283043 -0.26155417734696784 1.0 18236 -11694 Alx3 aristaless-like homeobox 3 Novel U 0.00023440081482103547 -0.26155418274555886 1.0 18237 -19777 Uri1 URI1, prefoldin-like chaperone Novel U 0.00023429647684995792 -0.2615552634748334 1.0 18238 -16870 Lhx2 LIM homeobox protein 2 Novel U 0.00023427920817933545 -0.26155544234315603 1.0 18239 -545475 Defb28 defensin beta 28 Novel U 0.00023426045142385424 -0.2615556366250127 1.0 18240 -66948 Acad8 acyl-Coenzyme A dehydrogenase family, member 8 Novel N 0.00023416784491741026 -0.26155659584016216 1.0 18241 -73833 Fam98c family with sequence similarity 98, member C Novel U 0.0002341324324013868 -0.26155696264183903 1.0 18242 -66978 Luc7l Luc7-like Novel U 0.00023410856123944044 -0.26155720989854975 1.0 18243 -406219 Krt87 keratin 87 Novel U 0.00023409518788912402 -0.2615573484192727 1.0 18244 -11500 Adam7 a disintegrin and metallopeptidase domain 7 Novel U 0.00023408478286913637 -0.2615574561941277 1.0 18245 -116748 Lsm10 U7 snRNP-specific Sm-like protein LSM10 Novel U 0.00023404120079186267 -0.2615579076158514 1.0 18246 -16889 Lipa lysosomal acid lipase A Novel U 0.0002340370496865069 -0.2615579506128642 1.0 18247 -414758 Zfp950 zinc finger protein 950 Novel U 0.00023398789054909473 -0.2615584598015935 1.0 18248 -71177 Ints13 integrator complex subunit 13 Novel N 0.0002339666880518494 -0.26155867941636296 1.0 18249 -547168 Rhox7a reproductive homeobox 7A Novel U 0.00023382763412806878 -0.26156011973233434 1.0 18250 -109254 Adtrp androgen dependent TFPI regulating protein Novel U 0.00023367951186176978 -0.26156165397789943 1.0 18251 -70859 Lrrc63 leucine rich repeat containing 63 Novel U 0.00023350402357334718 -0.261563471679822 1.0 18252 -235682 Zfp445 zinc finger protein 445 Novel N 0.00023348826807912496 -0.26156363487471324 1.0 18253 -17025 Alad aminolevulinate, delta-, dehydratase Novel U 0.00023348622414983054 -0.26156365604566567 1.0 18254 -67516 Kctd4 potassium channel tetramerisation domain containing 4 Novel U 0.00023333443321506113 -0.2615652282911782 1.0 18255 -212998 BC016579 cDNA sequence, BC016579 Novel N 0.0002332759609023876 -0.26156583394547067 1.0 18256 -78806 Stpg1 sperm tail PG rich repeat containing 1 Novel N 0.00023326196646911493 -0.26156597889935046 1.0 18257 -231329 Polr2b polymerase (RNA) II (DNA directed) polypeptide B Novel N 0.0002331708239491092 -0.26156692295057654 1.0 18258 -100043108 Cyp2c69 cytochrome P450, family 2, subfamily c, polypeptide 69 Novel U 0.0002330960149117541 -0.26156769782012623 1.0 18259 -26879 B3galnt1 UDP-GalNAc:betaGlcNAc beta 1,3-galactosaminyltransferase, polypeptide 1 Novel N 0.00023304617400070235 -0.26156821407064446 1.0 18260 -66401 Nudt2 nudix hydrolase 2 Novel N 0.00023302120102541884 -0.2615684727399015 1.0 18261 -74174 Gtsf1 gametocyte specific factor 1 Novel U 0.00023297488734197526 -0.26156895245551215 1.0 18262 -68545 Ecscr endothelial cell surface expressed chemotaxis and apoptosis regulator Novel U 0.0002329387698108322 -0.26156932655971243 1.0 18263 -117229 Stk33 serine/threonine kinase 33 Novel U 0.0002329328462180127 -0.26156938791609213 1.0 18264 -67932 1700129C05Rik RIKEN cDNA 1700129C05 gene Novel U 0.0002329326896617724 -0.2615693895376965 1.0 18265 -56315 Rhcg Rhesus blood group-associated C glycoprotein Novel N 0.00023278511034583824 -0.26157091815939953 1.0 18266 -100862115 LOC100862115 PRAME family member 8-like Novel U 0.0002326936332668381 -0.2615718656759767 1.0 18267 -67678 Lsm3 LSM3 homolog, U6 small nuclear RNA and mRNA degradation associated Novel N 0.00023256281136546544 -0.26157322072493056 1.0 18268 -12972 Cryz crystallin, zeta Novel U 0.00023255453705122114 -0.2615733064300055 1.0 18269 -105428 Fam149b family with sequence similarity 149, member B Novel U 0.00023253926642941773 -0.26157346460260417 1.0 18270 -77055 Krt76 keratin 76 Novel U 0.00023250054953795747 -0.2615738656308932 1.0 18271 -217738 Ism2 isthmin 2 Novel U 0.00023237697396849623 -0.26157514562257933 1.0 18272 -55951 Mpc1 mitochondrial pyruvate carrier 1 Novel U 0.000232211103946986 -0.26157686369880945 1.0 18273 -70892 Ttll7 tubulin tyrosine ligase-like family, member 7 Novel N 0.00023212574487273025 -0.26157774784529453 1.0 18274 -668205 Cdc5lrt7 cell division cycle 5 like, retrotransposed 7 Novel U 0.00023208589789554235 -0.2615781605789744 1.0 18275 -30951 Cbx8 chromobox 8 Novel N 0.00023197853922340115 -0.26157927259657116 1.0 18276 -21847 Klf10 Kruppel-like transcription factor 10 Novel N 0.00023189315699685093 -0.261580156982867 1.0 18277 -229731 Slc25a24 solute carrier family 25 (mitochondrial carrier, phosphate carrier), member 24 Novel U 0.00023185119302151719 -0.261580591644344 1.0 18278 -103537 Mbtd1 mbt domain containing 1 Novel N 0.00023184577422401595 -0.2615806477720704 1.0 18279 -319748 Zfp865 zinc finger protein 865 Novel U 0.00023163749882352573 -0.26158280508182197 1.0 18280 -433926 Lrrc8b leucine rich repeat containing 8 family, member B Novel N 0.00023150603772883102 -0.2615841667515193 1.0 18281 -71640 Zfp949 zinc finger protein 949 Novel U 0.00023130358949318485 -0.261586263703689 1.0 18282 -66225 Llph LLP homolog, long-term synaptic facilitation (Aplysia) Novel U 0.0002312954081841076 -0.26158634844541945 1.0 18283 -66717 Ccdc96 coiled-coil domain containing 96 Novel U 0.0002312820384754139 -0.2615864869284226 1.0 18284 -70026 Tspo2 translocator protein 2 Novel U 0.00023112446999447807 -0.26158811901756834 1.0 18285 -235469 Zfp280d zinc finger protein 280D Novel U 0.00023112139334986363 -0.2615881508853521 1.0 18286 -71735 Lrwd1 leucine-rich repeats and WD repeat domain containing 1 Novel U 0.00023099350273774944 -0.2615894755721082 1.0 18287 -67981 Hormad1 HORMA domain containing 1 Novel U 0.00023099125112910056 -0.2615894988941966 1.0 18288 -353169 Slc2a12 solute carrier family 2 (facilitated glucose transporter), member 12 Novel N 0.00023097395811028847 -0.26158967801471694 1.0 18289 -226115 Opalin oligodendrocytic myelin paranodal and inner loop protein Novel U 0.00023093437944538125 -0.261590087969227 1.0 18290 -246791 Obox3 oocyte specific homeobox 3 Novel U 0.0002309210097017254 -0.2615902264525923 1.0 18291 -381066 Zfp948 zinc finger protein 948 Novel U 0.00023085145424815525 -0.26159094690569384 1.0 18292 -71861 Zswim2 zinc finger SWIM-type containing 2 Novel U 0.00023082648173776557 -0.26159120557013554 1.0 18293 -382384 Cimap1d CIMAP1 family member D Novel U 0.0002308096898174697 -0.26159137950029393 1.0 18294 -382019 Zfp882 zinc finger protein 882 Novel U 0.0002307604281731306 -0.2615918897507866 1.0 18295 -20533 Slc4a1 solute carrier family 4 (anion exchanger), member 1 Novel U 0.00023070471743830197 -0.2615924668007466 1.0 18296 -52535 Mettl17 methyltransferase like 17 Novel U 0.00023044227833988716 -0.26159518513630076 1.0 18297 -74008 Arsg arylsulfatase G Novel U 0.00023035692869254482 -0.2615960691851422 1.0 18298 -68052 Rps13 ribosomal protein S13 Novel N 0.0002302730023163632 -0.2615969384917878 1.0 18299 -19300 Abcd4 ATP-binding cassette, sub-family D member 4 Novel U 0.00023027081029252476 -0.2615969611966986 1.0 18300 -545260 Arsi arylsulfatase i Novel N 0.00023022031256719348 -0.2615974842504776 1.0 18301 -109652 Acy1 aminoacylase 1 Novel N 0.00023020650460974095 -0.26159762727284697 1.0 18302 -268395 Mpg N-methylpurine-DNA glycosylase Novel N 0.00023018356033614133 -0.26159786492887865 1.0 18303 -237611 Stac3 SH3 and cysteine rich domain 3 Novel N 0.0002301551238645582 -0.26159815947291654 1.0 18304 -208439 Klhl29 kelch-like 29 Novel U 0.0002300166061473332 -0.261599594234878 1.0 18305 -105886298 Cmc4 C-X9-C motif containing 4 Novel U 0.0002299362528032317 -0.2616004265321747 1.0 18306 -18784 Pla2g5 phospholipase A2, group V Novel U 0.00022990331857104552 -0.2616007676638691 1.0 18307 -107373 Fam111a family with sequence similarity 111, member A Novel U 0.00022985938878465536 -0.26160122268715236 1.0 18308 -71164 Zdhhc11 zinc finger, DHHC domain containing 11 Novel U 0.00022983478447694567 -0.2616014775377628 1.0 18309 -20384 Srsf5 serine and arginine-rich splicing factor 5 Novel N 0.0002298059400480783 -0.26160177630740883 1.0 18310 -382253 Cdkl5 cyclin dependent kinase like 5 Novel U 0.00022978613732776304 -0.26160198142333485 1.0 18311 -18994 Pou3f4 POU domain, class 3, transcription factor 4 Novel U 0.00022962607349992555 -0.2616036393592018 1.0 18312 -78921 Zfp747l1 zinc finger protein 747 like 1 Novel U 0.00022961433828027098 -0.2616037609122212 1.0 18313 -67164 Lipt2 lipoyl(octanoyl) transferase 2 (putative) Novel N 0.0002296014664277156 -0.2616038942384468 1.0 18314 -67383 Carnmt1 carnosine N-methyltransferase 1 Novel N 0.00022953854183489327 -0.2616045460093107 1.0 18315 -110854 Ptpa protein phosphatase 2 protein activator Novel U 0.0002294060437562349 -0.2616059184200538 1.0 18316 -74246 Gale galactose-4-epimerase, UDP Novel N 0.0002293655957438786 -0.26160633737923616 1.0 18317 -18530 Pcdh8 protocadherin 8 Novel N 0.00022931737521168942 -0.26160683684592345 1.0 18318 -381203 Slc22a20 solute carrier family 22 (organic anion transporter), member 20 Novel U 0.00022919825925790704 -0.261608070645057 1.0 18319 -18991 Pou3f1 POU domain, class 3, transcription factor 1 Novel N 0.0002288819772635401 -0.2616113466835574 1.0 18320 -432480 Gm1553 predicted gene 1553 Novel U 0.00022849430839693953 -0.26161536214493375 1.0 18321 -15403 Hoxa6 homeobox A6 Novel U 0.00022843767868979738 -0.26161594871357874 1.0 18322 -67235 Zkscan14 zinc finger with KRAB and SCAN domains 14 Novel U 0.00022836504583993055 -0.26161670104224993 1.0 18323 -57355 BC051019 cDNA sequence BC051019 Novel U 0.00022836419185489498 -0.2616167098877989 1.0 18324 -74525 Fam234b family with sequence similarity 234, member B Novel U 0.00022834581598259028 -0.26161690022448014 1.0 18325 -57248 Ly6i lymphocyte antigen 6 family member I Novel U 0.00022830096168012165 -0.2616173648238706 1.0 18326 -14865 Gstm4 glutathione S-transferase, mu 4 Novel N 0.00022821055760366185 -0.26161830122632274 1.0 18327 -108156 Mthfd1 methylenetetrahydrofolate dehydrogenase (NADP+ dependent), methenyltetrahydrofolate cyclohydrolase, formyltetrahydrofolate synthase Novel U 0.0002280939102807109 -0.26161950945545925 1.0 18328 -20753 Sprr1a small proline-rich protein 1A Novel U 0.00022804010286310957 -0.2616200667909219 1.0 18329 -19075 Prim1 DNA primase, p49 subunit Novel U 0.0002280128669041052 -0.26162034890009 1.0 18330 -192651 Zfp286 zinc finger protein 286 Novel U 0.00022793416915830377 -0.2616211640487539 1.0 18331 -77485 Stk31 serine threonine kinase 31 Novel U 0.000227853562746477 -0.26162199896731786 1.0 18332 -751865 Sap25 sin3 associated polypeptide Novel U 0.000227849457837812 -0.26162204148582685 1.0 18333 -54388 H1f9 H1.9 linker histone Novel U 0.0002276276714651089 -0.2616243387417845 1.0 18334 -26356 Ing1 inhibitor of growth family, member 1 Novel U 0.00022760150152242485 -0.2616246098091905 1.0 18335 -13526 Adam24 ADAM metallopeptidase domain 24 Novel U 0.00022738079934679143 -0.26162689583507054 1.0 18336 -76775 Slc10a7 solute carrier family 10 (sodium/bile acid cotransporter family), member 7 Novel U 0.00022733979504003818 -0.2616273205563319 1.0 18337 -192852 Lrrc3c leucine rich repeat containing 3C Novel U 0.0002272095832683981 -0.2616286692855821 1.0 18338 -11792 Apex1 apurinic/apyrimidinic endonuclease 1 Novel U 0.0002269945794078435 -0.2616308962885019 1.0 18339 -234724 Tat tyrosine aminotransferase Novel U 0.00022670158912258822 -0.26163393107224503 1.0 18340 -109212 Pimreg PICALM interacting mitotic regulator Novel U 0.00022669953241027442 -0.2616339523756035 1.0 18341 -20342 Selenbp2 selenium binding protein 2 Novel U 0.00022669306525254182 -0.2616340193622107 1.0 18342 -71156 Lrrc72 leucine rich repeat containing 72 Novel U 0.00022665872710271053 -0.2616343750356379 1.0 18343 -78541 Asb8 ankyrin repeat and SOCS box-containing 8 Novel U 0.00022662975071239657 -0.2616346751721362 1.0 18344 -23885 Gmcl1 germ cell-less, spermatogenesis associated 1 Novel U 0.00022662574763267652 -0.2616347166359044 1.0 18345 -672682 Muc21 mucin 21 Novel U 0.00022655678350757194 -0.2616354309640451 1.0 18346 -104732 Tedc1 tubulin epsilon and delta complex 1 Novel U 0.0002265335667156783 -0.2616356714428123 1.0 18347 -207686 Cfap69 cilia and flagella associated protein 69 Novel N 0.0002264448977978244 -0.2616365898725486 1.0 18348 -16816 Lcat lecithin cholesterol acyltransferase Novel U 0.00022638357501710203 -0.26163722505189546 1.0 18349 -66059 Krtcap2 keratinocyte associated protein 2 Novel N 0.00022637578993816286 -0.2616373056894872 1.0 18350 -223631 Ly6g2 lymphocyte antigen 6 family member G2 Novel U 0.00022630421325179576 -0.2616380470784516 1.0 18351 -230753 Thrap3 thyroid hormone receptor associated protein 3 Novel N 0.00022626048210841766 -0.26163850004419714 1.0 18352 -72657 Selenoh selenoprotein H Novel U 0.000226176029122311 -0.261639374805451 1.0 18353 -70081 Zfp995 zinc finger protein 995 Novel U 0.00022611272178242665 -0.26164003054079643 1.0 18354 -228994 Ythdf1 YTH N6-methyladenosine RNA binding protein 1 Novel N 0.0002260378344389839 -0.261640806221438 1.0 18355 -18091 Nkx2-5 NK2 homeobox 5 Novel U 0.0002260175960890603 -0.26164101584960126 1.0 18356 -69611 Lce1d late cornified envelope 1D Novel U 0.00022599418568135493 -0.26164125833383467 1.0 18357 -278167 Mageb6b1 MAGE family member B6B1 Novel U 0.0002259098313368959 -0.26164213207336157 1.0 18358 -227683 Coq4 coenzyme Q4 Novel N 0.00022573523187455349 -0.2616439405688529 1.0 18359 -78771 Mctp1 multiple C2 domains, transmembrane 1 Novel U 0.0002256120808511986 -0.26164521616310443 1.0 18360 -14864 Gstm3 glutathione S-transferase, mu 3 Novel U 0.0002254402912143213 -0.26164699555451587 1.0 18361 -360198 H3c1 H3 clustered histone 1 Novel U 0.00022530324069221664 -0.2616484151193186 1.0 18362 -66431 Oxld1 oxidoreductase like domain containing 1 Novel U 0.0002251296059294555 -0.2616502136224833 1.0 18363 -69878 Snrpf small nuclear ribonucleoprotein polypeptide F Novel N 0.00022507015458794613 -0.26165082941752427 1.0 18364 -57869 Adck2 aarF domain containing kinase 2 Novel N 0.00022485190100184145 -0.26165309008099447 1.0 18365 -17116 Mab21l1 mab-21-like 1 Novel U 0.00022450316818823393 -0.26165670224401383 1.0 18366 -14240 Foxb2 forkhead box B2 Novel U 0.00022448252068744232 -0.2616569161101483 1.0 18367 -67848 Ddx55 DEAD box helicase 55 Novel U 0.00022445720732046747 -0.26165717830517127 1.0 18368 -71912 Jsrp1 junctional sarcoplasmic reticulum protein 1 Novel N 0.0002243441938117354 -0.2616583488953796 1.0 18369 -331532 Tceal5 transcription elongation factor A (SII)-like 5 Novel U 0.00022430279304840812 -0.2616587777231252 1.0 18370 -434128 Pnma8b PNMA family member 8B Novel U 0.0002242743997801827 -0.2616590718196641 1.0 18371 -66859 Slc16a9 solute carrier family 16 (monocarboxylic acid transporters), member 9 Novel N 0.00022421626124271643 -0.26165967401672396 1.0 18372 -100715 Tent2 terminal nucleotidyltransferase 2 Novel N 0.00022420280784699094 -0.26165981336655464 1.0 18373 -73919 Lyrm1 LYR motif containing 1 Novel U 0.00022417440725802686 -0.2616601075389215 1.0 18374 -75829 Pramex1 PRAME like, X-linked 1 Novel U 0.00022386057419008956 -0.2616633582115225 1.0 18375 -227835 Gtdc1 glycosyltransferase-like domain containing 1 Novel U 0.0002238368618851052 -0.261663603822798 1.0 18376 -51812 Mcrs1 microspherule protein 1 Novel U 0.00022378889828796375 -0.2616641006281605 1.0 18377 -69478 2300009A05Rik RIKEN cDNA 2300009A05 gene Novel U 0.00022377353751494098 -0.2616642597345425 1.0 18378 -69824 Glod5 glyoxalase domain containing 5 Novel U 0.00022377294697932686 -0.261664265851291 1.0 18379 -94179 Krt23 keratin 23 Novel U 0.00022358911193276612 -0.26166617000866 1.0 18380 -70887 Dmrtc1a DMRT-like family C1a Novel U 0.00022339736465625188 -0.26166815612064676 1.0 18381 -666184 Gm15080 predicted gene 15080 Novel U 0.00022333459724441926 -0.2616688062634352 1.0 18382 -668210 Spmip1 sperm microtubule inner protein 1 Novel U 0.00022327542762133317 -0.261669419140446 1.0 18383 -13105 Cyp2d9 cytochrome P450, family 2, subfamily d, polypeptide 9 Novel U 0.00022304824542175423 -0.26167177228620103 1.0 18384 -320718 Slc26a9 solute carrier family 26, member 9 Novel U 0.0002230448007477768 -0.26167180796602085 1.0 18385 -66369 Dus2 dihydrouridine synthase 2 Novel N 0.0002229200244928023 -0.2616731003943681 1.0 18386 -337924 Cyp3a44 cytochrome P450, family 3, subfamily a, polypeptide 44 Novel U 0.0002228628929384903 -0.2616736921611295 1.0 18387 -55947 Dclre1a DNA cross-link repair 1A Novel U 0.00022284983394619423 -0.26167382742574247 1.0 18388 -237934 Krt39 keratin 39 Novel U 0.00022278983056994966 -0.2616744489387411 1.0 18389 -225638 Alpk2 alpha-kinase 2 Novel U 0.0002227844651835246 -0.2616745045132373 1.0 18390 -102642386 Gm6871 predicted gene 6871 Novel U 0.00022275194495977155 -0.2616748413566459 1.0 18391 -78217 Tmem210 transmembrane protein 210 Novel U 0.00022232420733095225 -0.2616792718489441 1.0 18392 -67739 Slc48a1 solute carrier family 48 (heme transporter), member 1 Novel U 0.00022224653772747748 -0.26168007634814366 1.0 18393 -16840 Cnmd chondromodulin Novel U 0.0002221360523517419 -0.2616812207520335 1.0 18394 -76718 Catsperg2 cation channel sperm associated auxiliary subunit gamma 2 Novel U 0.00022202601455541002 -0.2616823605199106 1.0 18395 -12350 Car3 carbonic anhydrase 3 Novel U 0.00022199479695499854 -0.2616826838707894 1.0 18396 -106582 Nrm nurim (nuclear envelope membrane protein) Novel U 0.0002219725365467039 -0.2616829144433668 1.0 18397 -71089 Septin12 septin 12 Novel N 0.00022195849234804614 -0.2616830599127148 1.0 18398 -240067 Zfp952 zinc finger protein 952 Novel U 0.00022182753533843958 -0.2616844163611153 1.0 18399 -319804 Glt1d1 glycosyltransferase 1 domain containing 1 Novel U 0.00022179496356123133 -0.2616847537385129 1.0 18400 -109065 Dnaaf2 dynein, axonemal assembly factor 2 Novel N 0.0002217909699212054 -0.261684795104505 1.0 18401 -624860 Gm12253 predicted gene 12253 Novel U 0.00022169000155712032 -0.26168584093150105 1.0 18402 -236219 Tcstv3 2 cell stage variable group member 3 Novel U 0.00022166182171326184 -0.2616861328173974 1.0 18403 -21881 Tkt transketolase Novel U 0.00022165833883243817 -0.2616861688929625 1.0 18404 -101100 Ttll3 tubulin tyrosine ligase-like family, member 3 Novel N 0.00022162774092512007 -0.26168648582508064 1.0 18405 -12763 Cmah cytidine monophospho-N-acetylneuraminic acid hydroxylase Novel U 0.00022156562389451457 -0.2616871292312416 1.0 18406 -72605 Car10 carbonic anhydrase 10 Novel U 0.00022112956066046272 -0.26169164595988514 1.0 18407 -56640 Klk4 kallikrein related-peptidase 4 (prostase, enamel matrix, prostate) Novel N 0.0002211242213289887 -0.26169170126450503 1.0 18408 -243376 Aoc1l1 amine oxidase copper containing 1-like 1 Novel U 0.0002210583177276179 -0.2616923838918415 1.0 18409 -613264 Cfap92 cilia and flagella associated protein 92 Novel U 0.000221042015417787 -0.26169255275063086 1.0 18410 -100042840 H2al2b H2A histone family member L2B Novel U 0.0002208638106856809 -0.26169439858938787 1.0 18411 -213819 Casd1 CAS1 domain containing 1 Novel N 0.00022080297223976616 -0.26169502875201067 1.0 18412 -545912 Zscan4-ps1 zinc finger and SCAN domain containing 4, pseudogene 1 Novel U 0.00022057783639109645 -0.2616973607017303 1.0 18413 -17769 Mthfr methylenetetrahydrofolate reductase Novel U 0.0002203172056492789 -0.2617000603063862 1.0 18414 -18777 Lypla1 lysophospholipase 1 Novel N 0.00022028156401582196 -0.26170042948125394 1.0 18415 -20216 Acsm3 acyl-CoA synthetase medium-chain family member 3 Novel U 0.00022014650312299683 -0.2617018284375419 1.0 18416 -13434 Trdmt1 tRNA aspartic acid methyltransferase 1 Novel N 0.0002200677548474545 -0.2617026441095913 1.0 18417 -228889 Ddx27 DEAD box helicase 27 Novel U 0.00022002790890611357 -0.2617030568325418 1.0 18418 -272551 Gins2 GINS complex subunit 2 Novel U 0.00021999100992327436 -0.2617034390309931 1.0 18419 -80294 Pofut2 protein O-fucosyltransferase 2 Novel U 0.0002199003180799794 -0.2617043784141246 1.0 18420 -69263 Rfc3 replication factor C (activator 1) 3 Novel U 0.00021983622482701828 -0.2617050422899318 1.0 18421 -52874 Pum3 pumilio RNA-binding family member 3 Novel N 0.00021973823354821628 -0.2617060572803764 1.0 18422 -72303 Cyp2c65 cytochrome P450, family 2, subfamily c, polypeptide 65 Novel U 0.00021973249236131664 -0.2617061167474016 1.0 18423 -74134 Cyp2s1 cytochrome P450, family 2, subfamily s, polypeptide 1 Novel N 0.00021970901486040027 -0.26170635992658425 1.0 18424 -67929 Ccdc70 coiled-coil domain containing 70 Novel U 0.00021965730671067203 -0.26170689551789933 1.0 18425 -71003 Prss41 serine protease 41 Novel U 0.00021964154889971119 -0.26170705873678723 1.0 18426 -24052 Sgcd sarcoglycan, delta (dystrophin-associated glycoprotein) Novel U 0.00021955767393811023 -0.2617079275108823 1.0 18427 -20639 Snrpb2 U2 small nuclear ribonucleoprotein B Novel N 0.00021951151357279319 -0.2617084056384288 1.0 18428 -74276 Cldnd2 claudin domain containing 2 Novel U 0.0002195097931589788 -0.2617084234584185 1.0 18429 -67652 Spaca1 sperm acrosome associated 1 Novel N 0.0002194695843978392 -0.2617088399394446 1.0 18430 -69307 Pxt1 peroxisomal, testis specific 1 Novel U 0.00021920920520584098 -0.2617115369385558 1.0 18431 -59033 Slc4a8 solute carrier family 4 (anion exchanger), member 8 Novel N 0.00021907033819290324 -0.26171297531851084 1.0 18432 -18379 Omt2a oocyte maturation, alpha Novel U 0.00021872171027968013 -0.26171658639497547 1.0 18433 -21376 Tbrg1 transforming growth factor beta regulated gene 1 Novel N 0.0002186903202220718 -0.26171691153216026 1.0 18434 -20731 Spink4 serine peptidase inhibitor, Kazal type 4 Novel U 0.00021865701804549785 -0.2617172564750105 1.0 18435 -69714 Tfpt TCF3 (E2A) fusion partner Novel N 0.00021859202553212707 -0.2617179296653274 1.0 18436 -74125 Armc8 armadillo repeat containing 8 Novel U 0.0002185252047592633 -0.26171862179269617 1.0 18437 -269994 Gsg1l GSG1-like Novel U 0.00021842550689375905 -0.2617196544599097 1.0 18438 -67211 Armc10 armadillo repeat containing 10 Novel U 0.00021837863876852083 -0.26172013991841014 1.0 18439 -104271 Tex15 testis expressed gene 15 meiosis and synapsis associated Novel U 0.00021825097049133193 -0.2617214623022284 1.0 18440 -114652 Ly6g5c lymphocyte antigen 6 family member G5C Novel U 0.00021816177208713235 -0.2617223862163669 1.0 18441 -66330 1700020L24Rik RIKEN cDNA 1700020L24 gene Novel U 0.0002180391649986769 -0.26172365617655863 1.0 18442 -224440 Setd4 SET domain containing 4 Novel U 0.00021769956215113325 -0.26172717377168964 1.0 18443 -74052 Ttc21a tetratricopeptide repeat domain 21A Novel N 0.00021757986128095408 -0.261728413629368 1.0 18444 -100041230 H4c17 H4 clustered histone 17 Novel U 0.0002175405456729832 -0.2617288208591429 1.0 18445 -15417 Hoxb9 homeobox B9 Novel U 0.0002174926746860326 -0.26172931670525207 1.0 18446 -16548 Khk ketohexokinase Novel N 0.00021734906945086038 -0.2617308041635572 1.0 18447 -66220 Zdhhc12 zinc finger, DHHC domain containing 12 Novel U 0.00021732815614135343 -0.26173102078292965 1.0 18448 -218865 Chdh choline dehydrogenase Novel N 0.0002173201960829107 -0.2617311032329533 1.0 18449 -69786 Tprkb Tp53rk binding protein Novel U 0.00021725100816134962 -0.2617318198791704 1.0 18450 -104245 Slc6a5 solute carrier family 6 (neurotransmitter transporter, glycine), member 5 Novel U 0.0002172174526570816 -0.26173216744598055 1.0 18451 -20503 Slc16a7 solute carrier family 16 (monocarboxylic acid transporters), member 7 Novel N 0.000216973052258527 -0.2617346989372745 1.0 18452 -218103 Slc17a2 solute carrier family 17 (sodium phosphate), member 2 Novel N 0.000216945435886366 -0.2617349849867495 1.0 18453 -72043 Sulf2 sulfatase 2 Novel U 0.00021690616576187962 -0.261735391745408 1.0 18454 -102636051 Tmem274 transmembrame protein 274 Novel U 0.00021667261850954957 -0.26173781082017017 1.0 18455 -100039319 H2ab1 H2A.B variant histone 1 Novel U 0.00021666609138315963 -0.2617378784279308 1.0 18456 -75475 Oplah 5-oxoprolinase (ATP-hydrolysing) Novel N 0.00021663381609185835 -0.26173821273433706 1.0 18457 -433099 Ly6g6f lymphocyte antigen 6 family member G6F Novel U 0.0002162276213301758 -0.2617424200863257 1.0 18458 -15414 Hoxb6 homeobox B6 Novel U 0.00021616071822846337 -0.26174311306645387 1.0 18459 -66659 Acp6 acid phosphatase 6, lysophosphatidic Novel U 0.0002159842743148874 -0.26174494066671045 1.0 18460 -100862075 Gm21454 predicted gene, 21454 Novel U 0.0002158674103084381 -0.2617461511402475 1.0 18461 -73732 Muc16 mucin 16 Novel U 0.00021585196480900017 -0.261746311124223 1.0 18462 -246048 Chodl chondrolectin Novel U 0.00021556322664160319 -0.2617493018646691 1.0 18463 -102570 Slc22a13 solute carrier family 22 (organic cation transporter), member 13 Novel U 0.00021547766494293993 -0.26175018810993117 1.0 18464 -104184 Blmh bleomycin hydrolase Novel U 0.00021544371989597503 -0.2617505397116117 1.0 18465 -18045 Nfyb nuclear transcription factor-Y beta Novel N 0.0002151006657292202 -0.26175409305539366 1.0 18466 -382245 Vcf2 VCP nuclear cofactor family member 2 Novel U 0.00021478341790374768 -0.261757379097941 1.0 18467 -75659 Wdr54 WD repeat domain 54 Novel U 0.00021459636864251224 -0.2617593165480399 1.0 18468 -53315 Sult1d1 sulfotransferase family 1D, member 1 Novel U 0.00021455645357404304 -0.261759729987007 1.0 18469 -74087 Slc7a13 solute carrier family 7, (cationic amino acid transporter, y+ system) member 13 Novel U 0.0002144841973319955 -0.26176047841478683 1.0 18470 -16371 Irx1 Iroquois homeobox 1 Novel N 0.000214313234707116 -0.26176224924003527 1.0 18471 -68662 Scgb3a1 secretoglobin, family 3A, member 1 Novel U 0.0002141786351997457 -0.26176364341730785 1.0 18472 -76507 Aoc1 amine oxidase, copper-containing 1 Novel U 0.0002140235697549529 -0.2617652495800875 1.0 18473 -71776 Tha1 threonine aldolase 1 Novel U 0.00021402202744368477 -0.26176526555529694 1.0 18474 -545739 Gm5862 predicted gene 5862 Novel U 0.00021401334086316429 -0.2617653555306124 1.0 18475 -225131 Wac WW domain containing adaptor with coiled-coil Novel U 0.00021378624204690605 -0.2617677078126857 1.0 18476 -68195 Rnaset2b ribonuclease T2B Novel U 0.0002137754403021043 -0.26176781969680335 1.0 18477 -217847 Serpina10 serine (or cysteine) peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 10 Novel N 0.00021358884472316917 -0.2617697524476759 1.0 18478 -233073 U2af1l4 U2 small nuclear RNA auxiliary factor 1-like 4 Novel U 0.00021347214691011174 -0.2617709611997873 1.0 18479 -100862085 Gm16867 predicted gene, 16867 Novel U 0.0002134710502727557 -0.26177097255872106 1.0 18480 -102644 Oaf out at first homolog Novel U 0.00021333889036693657 -0.261772341466681 1.0 18481 -100312477 Vmn1r184 vomeronasal 1 receptor, 184 Novel U 0.0002132062930131827 -0.2617737149057122 1.0 18482 -228787 Xkr7 X-linked Kx blood group related 7 Novel U 0.00021318683812423115 -0.2617739164188125 1.0 18483 -68723 Hrnr hornerin Novel U 0.00021317448748635337 -0.26177404434631363 1.0 18484 -224694 Zfp81 zinc finger protein 81 Novel U 0.0002130750349501555 -0.2617750744724142 1.0 18485 -210027 Slc35f3 solute carrier family 35, member F3 Novel N 0.00021297776648714504 -0.26177608197595653 1.0 18486 -13849 Ephx1 epoxide hydrolase 1, microsomal Novel N 0.00021290573932872706 -0.2617768280308957 1.0 18487 -329504 Lcmt2 leucine carboxyl methyltransferase 2 Novel N 0.00021279943660317568 -0.2617779291110324 1.0 18488 -625098 Slc38a6 solute carrier family 38, member 6 Novel U 0.0002127906344877272 -0.2617780202830549 1.0 18489 -227731 Slc25a25 solute carrier family 25 (mitochondrial carrier, phosphate carrier), member 25 Novel U 0.0002127665097011132 -0.26177827016680155 1.0 18490 -14187 Akr1b8 aldo-keto reductase family 1, member B8 Novel U 0.00021275965921521293 -0.26177834112390935 1.0 18491 -619289 Rfx8 regulatory factor X 8 Novel U 0.0002127409993784382 -0.26177853440188525 1.0 18492 -434769 Rhox10 reproductive homeobox 10 Novel U 0.0002127125987338412 -0.26177882857482837 1.0 18493 -226178 Wbp1l WW domain binding protein 1 like Novel U 0.00021256744032791255 -0.26178033212082513 1.0 18494 -268595 D430019H16Rik RIKEN cDNA D430019H16 gene Novel U 0.00021248840471580697 -0.2617811507690972 1.0 18495 -67920 Mak16 MAK16 homolog Novel U 0.00021245813289742923 -0.2617814643235968 1.0 18496 -640543 Tgm7 transglutaminase 7 Novel U 0.00021234845126888108 -0.2617826004022997 1.0 18497 -210172 Zfp526 zinc finger protein 526 Novel U 0.00021224449655154245 -0.2617836771618446 1.0 18498 -69036 Zg16 zymogen granule protein 16 Novel U 0.00021218311275439264 -0.26178431297319754 1.0 18499 -12950 Hapln1 hyaluronan and proteoglycan link protein 1 Novel U 0.00021202953465085579 -0.2617859037301454 1.0 18500 -72341 Elp6 elongator acetyltransferase complex subunit 6 Novel U 0.0002119812774592272 -0.2617864035765499 1.0 18501 -433619 Kprp keratinocyte expressed, proline-rich Novel U 0.0002119331837901719 -0.261786901729193 1.0 18502 -53973 Cyp3a41a cytochrome P450, family 3, subfamily a, polypeptide 41A Novel U 0.00021178286630758753 -0.26178845871273615 1.0 18503 -70129 Slc44a4 solute carrier family 44, member 4 Novel U 0.00021154802417655652 -0.26179089119980936 1.0 18504 -232816 Zfp628 zinc finger protein 628 Novel U 0.0002114707456117928 -0.2617916916486428 1.0 18505 -234362 Zfp868 zinc finger protein 868 Novel U 0.00021145902272612 -0.26179181307390725 1.0 18506 -21853 Timeless timeless circadian clock 1 Novel N 0.00021135504415339487 -0.2617928900805454 1.0 18507 -224022 Slc7a4 solute carrier family 7 (cationic amino acid transporter, y+ system), member 4 Novel U 0.00021115129009351152 -0.2617950005583996 1.0 18508 -225160 Thoc1 THO complex 1 Novel U 0.00021113149552504914 -0.26179520558988906 1.0 18509 -68910 Zfp467 zinc finger protein 467 Novel U 0.0002111274806956967 -0.2617952471753595 1.0 18510 -72895 Setd5 SET domain containing 5 Novel U 0.0002110900618590099 -0.2617956347584398 1.0 18511 -106878 Smim3 small integral membrane protein 3 Novel U 0.00021108437839738168 -0.2617956936275485 1.0 18512 -319152 H3c10 H3 clustered histone 10 Novel U 0.0002109384229177806 -0.2617972054296082 1.0 18513 -383295 Ypel5 yippee like 5 Novel U 0.0002107931524663816 -0.2617987101361683 1.0 18514 -83554 Fstl3 follistatin-like 3 Novel U 0.00021079131274928285 -0.2617987291918975 1.0 18515 -71147 Oxsm 3-oxoacyl-ACP synthase, mitochondrial Novel N 0.00021078494766430612 -0.2617987951212385 1.0 18516 -108888 Atad3a ATPase family, AAA domain containing 3A Novel U 0.00021076757787966897 -0.26179897503689675 1.0 18517 -106931 Kctd1 potassium channel tetramerisation domain containing 1 Novel U 0.00021076401634201368 -0.2617990119271867 1.0 18518 -54351 Elp5 elongator acetyltransferase complex subunit 5 Novel U 0.00021071963977959177 -0.26179947157816147 1.0 18519 -100416477 Zfp582 zinc finger protein 582 Novel U 0.00021066485696700135 -0.26180003901673343 1.0 18520 -74414 Polr3c polymerase (RNA) III (DNA directed) polypeptide C Novel U 0.0002106583415220844 -0.26180010650349766 1.0 18521 -320145 Sp8 trans-acting transcription factor 8 Novel U 0.00021063561156161746 -0.26180034193968094 1.0 18522 -66073 Txndc12 thioredoxin domain containing 12 (endoplasmic reticulum) Novel N 0.0002106016820065165 -0.26180069338089734 1.0 18523 -434377 Zfp560 zinc finger protein 560 Novel U 0.00021057682995119942 -0.26180095079766935 1.0 18524 -545934 Vmn1r173 vomeronasal 1 receptor 173 Novel U 0.00021046694726509606 -0.2618020889589198 1.0 18525 -229801 Tram1l1 translocation associated membrane protein 1-like 1 Novel U 0.0002102537737500342 -0.26180429700318114 1.0 18526 -69865 A1cf APOBEC1 complementation factor Novel N 0.00021023065673496326 -0.2618045364484633 1.0 18527 -223732 Rtl6 retrotransposon Gag like 6 Novel U 0.00021022467725701795 -0.2618045983836993 1.0 18528 -192285 Phf21a PHD finger protein 21A Novel U 0.00021010280157486474 -0.26180586076800855 1.0 18529 -268564 Zbtb1 zinc finger and BTB domain containing 1 Novel U 0.0002100186438587481 -0.26180673247086556 1.0 18530 -71979 Prr23a3 proline rich 23A, member 3 Novel U 0.00020999803454701459 -0.261806945941439 1.0 18531 -317755 Zar1 zygote arrest 1 Novel U 0.0002099683648819524 -0.2618072532588544 1.0 18532 -244757 Glb1l2 galactosidase, beta 1-like 2 Novel U 0.00020996334423037825 -0.2618073052625984 1.0 18533 -330428 Tmem52b transmembrane protein 52B Novel U 0.00020973053126645483 -0.26180971673162534 1.0 18534 -20670 Sox15 SRY (sex determining region Y)-box 15 Novel N 0.00020959329511794974 -0.2618111382191402 1.0 18535 -227622 Paxx non-homologous end joining factor Novel N 0.00020955302323881803 -0.26181155535394035 1.0 18536 -12417 Cbx3 chromobox 3 Novel U 0.00020951161748183455 -0.26181198423341 1.0 18537 -67663 Tex46 testis expressed 46 Novel U 0.00020937180647454318 -0.2618134323912275 1.0 18538 -210510 Tdrd6 tudor domain containing 6 Novel U 0.0002092677739353709 -0.2618145099568484 1.0 18539 -66720 Klhl10 kelch-like 10 Novel N 0.00020884694372663625 -0.2618188689023164 1.0 18540 -83962 Btbd1 BTB domain containing 1 Novel U 0.00020883054278691366 -0.2618190387827109 1.0 18541 -627214 Insyn2a inhibitory synaptic factor 2A Novel U 0.00020881223502807765 -0.2618192284138751 1.0 18542 -105247282 Gm20824 predicted gene, 20824 Novel U 0.00020863331655473266 -0.26182108164554035 1.0 18543 -67036 Mrpl45 mitochondrial ribosomal protein L45 Novel U 0.00020852464108423043 -0.26182220730249134 1.0 18544 -70186 Fam162a family with sequence similarity 162, member A Novel N 0.00020844813234594266 -0.2618229997774874 1.0 18545 -13088 Cyp2b10 cytochrome P450, family 2, subfamily b, polypeptide 10 Novel U 0.00020833086879350616 -0.26182421438950876 1.0 18546 -100041096 Iqcf6 IQ motif containing F6 Novel U 0.00020828563617935304 -0.26182468290743915 1.0 18547 -208169 Slc9c1 solute carrier family 9, subfamily C (Na+-transporting carboxylic acid decarboxylase), member 1 Novel U 0.00020819801356518848 -0.2618255904995963 1.0 18548 -17450 Morc1 microrchidia 1 Novel U 0.00020810897393456587 -0.26182651276916324 1.0 18549 -326619 H4c1 H4 clustered histone 1 Novel U 0.00020797462493658725 -0.2618279043516678 1.0 18550 -329984 Pramel16 PRAME like 16 Novel U 0.00020754054845433347 -0.2618324005016015 1.0 18551 -434440 Fbxw20 F-box and WD-40 domain protein 20 Novel U 0.00020750940967594912 -0.2618327230360444 1.0 18552 -15450 Lipc lipase, hepatic Novel U 0.00020746676299286792 -0.2618331647689858 1.0 18553 -207740 Ubald1 UBA-like domain containing 1 Novel U 0.00020745070505761928 -0.2618333310965512 1.0 18554 -73713 Rbm20 RNA binding motif protein 20 Novel U 0.00020723808753044372 -0.2618355333819083 1.0 18555 -66617 Ntmt1 N-terminal Xaa-Pro-Lys N-methyltransferase 1 Novel U 0.00020723551529557789 -0.26183556002503244 1.0 18556 -233879 Asphd1 aspartate beta-hydroxylase domain containing 1 Novel U 0.00020722880167014563 -0.261835629564544 1.0 18557 -64335 Svs3a seminal vesicle secretory protein 3A Novel U 0.00020712999121791102 -0.26183665303996 1.0 18558 -553127 Rtl8b retrotransposon Gag like 8B Novel U 0.00020712574589292163 -0.2618366970128967 1.0 18559 -100037283 Rnaset2a ribonuclease T2A Novel U 0.00020698740175078775 -0.2618381299769731 1.0 18560 -76261 0610040J01Rik RIKEN cDNA 0610040J01 gene Novel U 0.00020693838104600103 -0.2618386377318218 1.0 18561 -12896 Cpt2 carnitine palmitoyltransferase 2 Novel U 0.00020663174834765572 -0.26184181382323124 1.0 18562 -68460 Dhrs7c dehydrogenase/reductase 7C Novel U 0.0002066146350920003 -0.26184199108177075 1.0 18563 -12299 Cacng1 calcium channel, voltage-dependent, gamma subunit 1 Novel U 0.00020646633798867702 -0.261843527138292 1.0 18564 -319848 Slc17a4 solute carrier family 17 (sodium phosphate), member 4 Novel N 0.00020642536312088302 -0.26184395155462564 1.0 18565 -13142 Dao D-amino acid oxidase Novel U 0.00020638900666716592 -0.2618443281335781 1.0 18566 -104080 Nxph4 neurexophilin 4 Novel U 0.00020631310587496907 -0.26184511431148855 1.0 18567 -21761 Morf4l1 mortality factor 4 like 1 Novel U 0.00020623694890100995 -0.26184590314292133 1.0 18568 -14397 Gabra4 gamma-aminobutyric acid type A receptor subunit alpha 4 Novel N 0.00020619763745108113 -0.26184631032962735 1.0 18569 -68980 Wdr53 WD repeat domain 53 Novel U 0.00020616408240634713 -0.26184665789167766 1.0 18570 -71166 4933424G06Rik RIKEN cDNA 4933424G06 gene Novel U 0.0002059883806852774 -0.2618484778043286 1.0 18571 -66873 Tril TLR4 interactor with leucine-rich repeats Novel U 0.00020574776101441454 -0.2618509701349695 1.0 18572 -380664 Lemd3 LEM domain containing 3 Novel U 0.0002055141482104735 -0.2618533898887131 1.0 18573 -66131 Tipin timeless interacting protein Novel N 0.00020548250615252129 -0.26185371763610915 1.0 18574 -232187 Smyd5 SET and MYND domain containing 5 Novel N 0.00020546371966005585 -0.26185391222598053 1.0 18575 -23966 Tenm4 teneurin transmembrane protein 4 Novel N 0.00020537913815895062 -0.26185478831838854 1.0 18576 -53324 Nptx2 neuronal pentraxin 2 Novel U 0.00020526504574834456 -0.261855970083827 1.0 18577 -236366 5730507C01Rik RIKEN cDNA 5730507C01 gene Novel U 0.00020519817109749825 -0.2618566627692621 1.0 18578 -399568 Cdin1 CDAN1 interacting nuclease 1 Novel N 0.00020513020931105442 -0.2618573667152119 1.0 18579 -52710 Slc52a2 solute carrier protein 52, member 2 Novel U 0.00020504373921801413 -0.2618582623695931 1.0 18580 -19139 Prps1 phosphoribosyl pyrophosphate synthetase 1 Novel U 0.00020489481131072995 -0.26185980495996103 1.0 18581 -14625 Gykl1 glycerol kinase-like 1 Novel U 0.0002047786053903565 -0.2618610086170642 1.0 18582 -74577 Glb1l galactosidase, beta 1-like Novel U 0.0002043764550734415 -0.2618651740768268 1.0 18583 -629219 Sult2a6 sulfotransferase family 2A, dehydroepiandrosterone (DHEA)-preferring, member 6 Novel U 0.00020419609965957456 -0.26186704219227475 1.0 18584 -54427 Dnmt3l DNA methyltransferase 3-like Novel N 0.00020419496747762334 -0.2618670539193782 1.0 18585 -665622 H2bc24 H2B clustered histone 24 Novel U 0.00020400447932554153 -0.2618690269893955 1.0 18586 -71827 Lrrc34 leucine rich repeat containing 34 Novel U 0.00020384432300119272 -0.26187068588333823 1.0 18587 -69944 2810021J22Rik RIKEN cDNA 2810021J22 gene Novel U 0.0002038167317078358 -0.26187097167304785 1.0 18588 -71863 Tex44 testis expressed 44 Novel U 0.00020380895723100256 -0.2618710522008233 1.0 18589 -67441 Isoc2b isochorismatase domain containing 2b Novel U 0.00020361909695010042 -0.26187301876737157 1.0 18590 -594844 Tceal3 transcription elongation factor A (SII)-like 3 Novel U 0.00020355981411467476 -0.2618736328170321 1.0 18591 -60532 Wtap WT1 associating protein Novel N 0.000203257189788698 -0.2618767673898523 1.0 18592 -64339 Fndc4 fibronectin type III domain containing 4 Novel U 0.00020313788335966354 -0.2618780031619223 1.0 18593 -67467 Gpalpp1 GPALPP motifs containing 1 Novel U 0.00020302169311333957 -0.26187920665667414 1.0 18594 -80797 Clca3a2 chloride channel accessory 3A2 Novel U 0.0002028694871450134 -0.2618807832010906 1.0 18595 -235067 Cypt4 cysteine-rich perinuclear theca 4 Novel U 0.00020282251668606117 -0.26188126971956033 1.0 18596 -666704 Samd1 sterile alpha motif domain containing 1 Novel U 0.0002028144973361131 -0.2618813527837235 1.0 18597 -104384 Rhox9 reproductive homeobox 9 Novel U 0.00020280000036356383 -0.2618815029428886 1.0 18598 -68281 Rlig1 RNA 5'-phosphate and 3'-OH ligase 1 Novel N 0.0002027214652711594 -0.261882316406794 1.0 18599 -107684 Coro2a coronin, actin binding protein 2A Novel N 0.00020270971856820068 -0.2618824380787571 1.0 18600 -74150 Slc35f5 solute carrier family 35, member F5 Novel U 0.00020270176587256023 -0.2618825204525171 1.0 18601 -71963 Cdca4 cell division cycle associated 4 Novel U 0.00020267400287798 -0.2618828080207023 1.0 18602 -66742 Cypt1 cysteine-rich perinuclear theca 1 Novel U 0.0002026345939751363 -0.2618832162168225 1.0 18603 -75775 4930402K13Rik RIKEN cDNA 4930402K13 gene Novel U 0.00020249897704415225 -0.2618846209325354 1.0 18604 -22381 Tceal9 transcription elongation factor A like 9 Novel U 0.00020236277492412892 -0.2618860317096172 1.0 18605 -240590 Dmrt3 doublesex and mab-3 related transcription factor 3 Novel U 0.00020235433856588764 -0.2618861190931385 1.0 18606 -675812 Zfp605 zinc finger protein 605 Novel U 0.000202245445579685 -0.26188724700311 1.0 18607 -381549 Zfp69 zinc finger protein 69 Novel U 0.0002019322670605435 -0.26189049089591604 1.0 18608 -56695 Pnkd paroxysmal nonkinesiogenic dyskinesia Novel U 0.0002019196817100702 -0.26189062125456253 1.0 18609 -215693 Zmat1 zinc finger, matrin type 1 Novel U 0.00020189032072095563 -0.2618909253747226 1.0 18610 -100041658 Mup7 major urinary protein 7 Novel U 0.00020184935351971522 -0.26189134971164635 1.0 18611 -434863 Gm15128 predicted gene 15128 Novel U 0.00020179528217018511 -0.26189190978090726 1.0 18612 -319160 H4c12 H4 clustered histone 12 Novel U 0.00020164499836702128 -0.2618934664156001 1.0 18613 -77652 Zfp955a zinc finger protein 955A Novel U 0.0002016329741617865 -0.26189359096192266 1.0 18614 -72023 Cyb561d1 cytochrome b-561 domain containing 1 Novel U 0.00020160350926440654 -0.2618938961583611 1.0 18615 -246293 Klhl8 kelch-like 8 Novel U 0.0002013609542067427 -0.2618964085356748 1.0 18616 -11947 Atp5f1b ATP synthase F1 subunit beta Novel U 0.0002013003621590653 -0.2618970361461128 1.0 18617 -77220 Tmem200a transmembrane protein 200A Novel U 0.0002012545574958994 -0.26189751058930816 1.0 18618 -69318 Fam24b family with sequence similarity 24 member B Novel U 0.0002012281253182921 -0.26189778437293487 1.0 18619 -13090 Cyp2b19 cytochrome P450, family 2, subfamily b, polypeptide 19 Novel U 0.00020098517096906693 -0.26190030088609745 1.0 18620 -100039028 Mup11 major urinary protein 11 Novel U 0.00020098080530473242 -0.2619003461055051 1.0 18621 -74127 Krt80 keratin 80 Novel U 0.0002009759919968492 -0.26190039596159 1.0 18622 -66912 Bzw2 basic leucine zipper and W2 domains 2 Novel N 0.00020081029434038236 -0.2619021122524686 1.0 18623 -226518 Nmnat2 nicotinamide nucleotide adenylyltransferase 2 Novel N 0.0002007268200376993 -0.26190297687655173 1.0 18624 -71149 Tex52 testis expressed 52 Novel U 0.0002007234479540337 -0.2619030118044835 1.0 18625 -69398 Cdhr4 cadherin-related family member 4 Novel U 0.00020065874600503478 -0.26190368198514424 1.0 18626 -76246 Rtf1 RTF1, Paf1/RNA polymerase II complex component Novel N 0.00020065425224139618 -0.2619037285314003 1.0 18627 -68725 1110032F04Rik RIKEN cDNA 1110032F04 gene Novel U 0.00020051024361586047 -0.26190522016800954 1.0 18628 -71991 Ercc8 excision repaiross-complementing rodent repair deficiency, complementation group 8 Novel U 0.0002005029843452123 -0.26190529535929635 1.0 18629 -23924 Katna1 katanin p60 (ATPase-containing) subunit A1 Novel N 0.00020046138717923868 -0.26190572622137404 1.0 18630 -18988 Pou2f3 POU domain, class 2, transcription factor 3 Novel U 0.0002002660148412283 -0.2619077498816286 1.0 18631 -18975 Polg polymerase (DNA directed), gamma Novel U 0.00020025152895962307 -0.26190789992591407 1.0 18632 -70882 Armc3 armadillo repeat containing 3 Novel U 0.00020000019568645354 -0.2619105032276955 1.0 18633 -66231 Thoc7 THO complex 7 Novel N 0.00019990881271044278 -0.26191144976955694 1.0 18634 -384569 Nova2 NOVA alternative splicing regulator 2 Novel U 0.00019974398533042668 -0.2619131570461407 1.0 18635 -227618 Lrrc26 leucine rich repeat containing 26 Novel N 0.00019968080086823413 -0.26191381150872306 1.0 18636 -66090 Ypel3 yippee like 3 Novel N 0.0001995150799990878 -0.26191552804003787 1.0 18637 -75823 Fam227b family with sequence similarity 227, member B Novel U 0.00019947951244520616 -0.2619158964475917 1.0 18638 -71578 Sval1 seminal vesicle antigen-like 1 Novel U 0.00019947103261008485 -0.2619159842814452 1.0 18639 -58866 Treh trehalase (brush-border membrane glycoprotein) Novel N 0.00019924974726183946 -0.26191827634780795 1.0 18640 -100216455 Zfp1005 zinc finger protein 1005 Novel U 0.0001989196404806982 -0.26192169558299533 1.0 18641 -30944 Zfp354c zinc finger protein 354C Novel U 0.0001989112753113485 -0.2619217822291445 1.0 18642 -72745 Tmem161b transmembrane protein 161B Novel U 0.00019881391264792435 -0.26192279070841157 1.0 18643 -216974 Proca1 protein interacting with cyclin A1 Novel U 0.0001986979978759619 -0.26192399134980904 1.0 18644 -72973 Fbxo47 F-box protein 47 Novel U 0.00019868599366388453 -0.26192411568904317 1.0 18645 -14957 H1f3 H1.3 linker histone, cluster member Novel U 0.00019858445940334766 -0.26192516737757604 1.0 18646 -223646 Naprt nicotinate phosphoribosyltransferase Novel N 0.0001985687390730583 -0.2619253302082404 1.0 18647 -57354 Cramp1 cramped chromatin regulator 1 Novel U 0.0001985325825473986 -0.26192570471634463 1.0 18648 -73388 Bpifa3 BPI fold containing family A, member 3 Novel U 0.00019828476659640372 -0.2619282715858185 1.0 18649 -665574 Gm7694 predicted gene 7694 Novel U 0.0001982723292212623 -0.26192840041174137 1.0 18650 -71890 Mad2l2 MAD2 mitotic arrest deficient-like 2 Novel U 0.00019817954863466161 -0.2619293614300074 1.0 18651 -22262 Uox urate oxidase Novel U 0.00019812141627172078 -0.2619299635631117 1.0 18652 -382427 Best3 bestrophin 3 Novel U 0.00019807883995295305 -0.2619304045672219 1.0 18653 -70153 Qng1 Q-nucleotide N-glycosylase 1 Novel N 0.0001980373172919271 -0.2619308346575798 1.0 18654 -70062 Ctag2 cancer/testis antigen 2 Novel U 0.00019789696794467968 -0.26193228839150484 1.0 18655 -270599 Ct45a cancer/testis antigen 45 Novel U 0.00019785982026939184 -0.2619326731659043 1.0 18656 -268465 Eme1 essential meiotic structure-specific endonuclease 1 Novel N 0.00019782712625042228 -0.2619330118094781 1.0 18657 -381072 Abca17 ATP-binding cassette, sub-family A member 17 Novel U 0.00019781788897663743 -0.26193310748885623 1.0 18658 -71412 Dhrs2 dehydrogenase/reductase member 2 Novel N 0.00019772457028540094 -0.2619340740807924 1.0 18659 -100862066 Cfap99 cilia and flagella associated protein 99 Novel U 0.0001976234832246813 -0.26193512113724426 1.0 18660 -13505 Dsc1 desmocollin 1 Novel U 0.00019752276100882578 -0.261936164414645 1.0 18661 -381572 Aadacl4fm1 AADACL4 family member 1 Novel U 0.00019751803144053525 -0.26193621340335793 1.0 18662 -241612 Slc5a12 solute carrier family 5 (sodium/glucose cotransporter), member 12 Novel N 0.0001974156528689362 -0.26193727383723703 1.0 18663 -791260 Tomt transmembrane O-methyltransferase Novel U 0.00019726560611697865 -0.26193882801656126 1.0 18664 -11704 Amelx amelogenin, X-linked Novel N 0.00019698753283918418 -0.2619417082904315 1.0 18665 -76413 Spaca7b sperm acrosome associated 7B Novel U 0.00019691648623811541 -0.26194244418878987 1.0 18666 -213393 Depp1 DEPP1 autophagy regulator Novel N 0.0001968189986960553 -0.2619434539615458 1.0 18667 -211064 Alkbh1 alkB homolog 1, histone H2A dioxygenase Novel U 0.00019669599768831476 -0.2619447280019405 1.0 18668 -17771 Tesmin testis expressed metallothionein like Novel U 0.00019662704327332283 -0.2619454422295042 1.0 18669 -83674 Cnnm1 cyclin M1 Novel U 0.0001963591065932518 -0.26194821750882846 1.0 18670 -242109 Zfp697 zinc finger protein 697 Novel U 0.00019627976756885615 -0.26194903929983504 1.0 18671 -54397 Ppt2 palmitoyl-protein thioesterase 2 Novel N 0.00019599565154858608 -0.26195198216423315 1.0 18672 -11987 Slc7a1 solute carrier family 7 (cationic amino acid transporter, y+ system), member 1 Novel U 0.00019596837180335975 -0.26195226472693744 1.0 18673 -100039150 Mup15 major urinary protein 15 Novel U 0.00019591820933337906 -0.2619527843081525 1.0 18674 -246079 Defb9 defensin beta 9 Novel U 0.00019584508035640994 -0.26195354177569197 1.0 18675 -435615 Alyreffm3 Aly/REF export factor family member 3 Novel U 0.0001958436714688581 -0.26195355636890294 1.0 18676 -320587 Tmem88b transmembrane protein 88B Novel U 0.00019584043541683564 -0.2619535898878234 1.0 18677 -13094 Cyp2b9 cytochrome P450, family 2, subfamily b, polypeptide 9 Novel U 0.00019583419240697608 -0.2619536545527143 1.0 18678 -545817 Cyp2w1 cytochrome P450, family 2, subfamily w, polypeptide 1 Novel N 0.00019573439211699207 -0.2619546882808372 1.0 18679 -70031 Cmtm8 CKLF-like MARVEL transmembrane domain containing 8 Novel U 0.00019568024252997253 -0.26195524916047946 1.0 18680 -171281 Acot3 acyl-CoA thioesterase 3 Novel U 0.00019558199564441716 -0.2619562667984904 1.0 18681 -68140 Tigd2 tigger transposable element derived 2 Novel U 0.0001954949219631313 -0.2619571687048187 1.0 18682 -15425 Hoxc6 homeobox C6 Novel U 0.00019546074978842533 -0.261957522659081 1.0 18683 -100039913 Rhox2b reproductive homeobox 2B Novel U 0.00019544930637672718 -0.26195764118956316 1.0 18684 -100041979 Gm3604 predicted gene 3604 Novel U 0.00019540785943819648 -0.26195807049559 1.0 18685 -110084 Dnah1 dynein, axonemal, heavy chain 1 Novel U 0.00019539752585593707 -0.26195817753049533 1.0 18686 -211347 Pank3 pantothenate kinase 3 Novel N 0.00019531411062426968 -0.2619590415427228 1.0 18687 -68947 Chst8 carbohydrate sulfotransferase 8 Novel N 0.00019530077326884284 -0.2619591796906119 1.0 18688 -213011 Zfp583 zinc finger protein 583 Novel U 0.00019510623934925953 -0.261961194666556 1.0 18689 -384281 Gatc glutamyl-tRNA amidotransferase subunit C Novel N 0.00019505083805247927 -0.26196176851136677 1.0 18690 -17144 Magea8 MAGE family member A8 Novel U 0.00019496431154047563 -0.2619626647501337 1.0 18691 -20231 Nkx1-2 NK1 homeobox 2 Novel U 0.00019492826908674356 -0.26196303807668464 1.0 18692 -100041687 Mup8 major urinary protein 8 Novel U 0.00019490844049347312 -0.2619632434606019 1.0 18693 -320394 Cenpt centromere protein T Novel U 0.0001948904440317094 -0.26196342986736126 1.0 18694 -103406 Zfr2 zinc finger RNA binding protein 2 Novel U 0.00019486899598417787 -0.2619636520255325 1.0 18695 -12348 Car11 carbonic anhydrase 11 Novel U 0.00019478451478321813 -0.2619645270790349 1.0 18696 -75019 Rnase10 ribonuclease, RNase A family, 10 (non-active) Novel U 0.00019475009660334155 -0.2619648835814106 1.0 18697 -27355 Pald1 phosphatase domain containing, paladin 1 Novel U 0.00019467692458662443 -0.2619656414947544 1.0 18698 -20765 Sprr2k small proline-rich protein 2K Novel U 0.00019465987820090628 -0.2619658180606573 1.0 18699 -620695 Gm13889 predicted gene 13889 Novel U 0.00019456114405158012 -0.2619668407457303 1.0 18700 -670593 Potefam3c POTE ankyrin domain family member 3C Novel U 0.0001944821220328567 -0.26196765925320253 1.0 18701 -621603 Aldh3b2 aldehyde dehydrogenase 3 family, member B2 Novel U 0.00019435644657617672 -0.26196896099545147 1.0 18702 -78803 Fbxo43 F-box protein 43 Novel N 0.00019427696736893404 -0.2619697842384673 1.0 18703 -100271704 Scpppq1 secretory calcium-binding phosphoprotein proline-glutamine rich 1 Novel U 0.00019423317270017538 -0.26197023786220663 1.0 18704 -192201 Wfdc15b WAP four-disulfide core domain 15B Novel U 0.00019409810086192796 -0.261971636931867 1.0 18705 -230936 Phf13 PHD finger protein 13 Novel U 0.00019407566492869895 -0.2619718693225258 1.0 18706 -23808 Ash2l ASH2 like histone lysine methyltransferase complex subunit Novel N 0.00019403873235016483 -0.26197225186896017 1.0 18707 -68371 Pbld1 phenazine biosynthesis-like protein domain containing 1 Novel U 0.00019395237100090613 -0.26197314639697683 1.0 18708 -18997 Pou4f2 POU domain, class 4, transcription factor 2 Novel U 0.00019382489917671775 -0.2619744667459414 1.0 18709 -194655 Klf11 Kruppel-like transcription factor 11 Novel U 0.00019382041652616635 -0.2619745131770884 1.0 18710 -231769 Sfswap splicing factor SWAP Novel U 0.00019372167796573425 -0.2619755359078515 1.0 18711 -68709 Cilp2 cartilage intermediate layer protein 2 Novel U 0.0001935924040019469 -0.2619768749233188 1.0 18712 -67646 4930522H14Rik RIKEN cDNA 4930522H14 gene Novel U 0.00019343202080961862 -0.2619785361671526 1.0 18713 -74978 Lrriq1 leucine-rich repeats and IQ motif containing 1 Novel U 0.0001934224612067676 -0.26197863518520464 1.0 18714 -240514 Ccdc85b coiled-coil domain containing 85B Novel N 0.00019341232643056887 -0.26197874016088335 1.0 18715 -70967 Eva1c eva-1 homolog C Novel U 0.00019337580947834652 -0.26197911840227406 1.0 18716 -242037 Ankub1 ankyrin repeat and ubiquitin domain containing 1 Novel U 0.00019334389511489004 -0.2619794489702016 1.0 18717 -57785 Rangrf RAN guanine nucleotide release factor Novel U 0.00019302460346875319 -0.26198275618257616 1.0 18718 -67968 Ooep oocyte expressed protein Novel U 0.00019280571856510203 -0.26198502338521273 1.0 18719 -71597 Isx intestine specific homeobox Novel U 0.00019280571005237 -0.2619850234733873 1.0 18720 -70422 Ints2 integrator complex subunit 2 Novel N 0.0001927947727183297 -0.26198513676193375 1.0 18721 -76917 Flywch2 FLYWCH family member 2 Novel U 0.00019274789820919634 -0.2619856222865584 1.0 18722 -67101 2310039H08Rik RIKEN cDNA 2310039H08 gene Novel U 0.0001927341221812304 -0.26198576497820325 1.0 18723 -105349 Akr1c18 aldo-keto reductase family 1, member C18 Novel U 0.00019264222035862504 -0.26198671689426073 1.0 18724 -72040 Cdhr5 cadherin-related family member 5 Novel U 0.0001922996241505367 -0.2619902654945218 1.0 18725 -101185 Pot1a protection of telomeres 1A Novel U 0.0001922771976796502 -0.26199049778717004 1.0 18726 -545677 Gm12888 predicted gene 12888 Novel U 0.0001921923675002046 -0.26199137645538007 1.0 18727 -11686 Alox12b arachidonate 12-lipoxygenase, 12R type Novel U 0.0001921195050697511 -0.2619921311620395 1.0 18728 -628456 Ctag2l1 CTAG2 like 1 Novel U 0.00019209683864880334 -0.26199236594008257 1.0 18729 -224291 Csnka2ip casein kinase 2, alpha prime interacting protein Novel U 0.0001919878912579393 -0.26199349441357567 1.0 18730 -108168963 Zfp978 zinc finger protein 978 Novel U 0.00019188758071226757 -0.2619945334269102 1.0 18731 -70974 Pgm2l1 phosphoglucomutase 2-like 1 Novel U 0.00019187423295972803 -0.26199467168249224 1.0 18732 -21463 Tcp11 t-complex protein 11 Novel U 0.00019180406992874786 -0.26199539842886066 1.0 18733 -18771 Pknox1 Pbx/knotted 1 homeobox Novel N 0.00019174329497808276 -0.2619960279338018 1.0 18734 -71508 Zfp935 zinc finger protein 935 Novel U 0.00019165767373073076 -0.2619969147958672 1.0 18735 -108755 Lyrm2 LYR motif containing 2 Novel N 0.00019160240338828182 -0.26199748728425737 1.0 18736 -110198 Akr7a5 aldo-keto reductase family 7, member A5 Novel U 0.0001915087201804319 -0.2619984576518446 1.0 18737 -121811722 Smim36 small integral membrane protein 36 Novel U 0.00019132600898978647 -0.262000350168351 1.0 18738 -229584 Pogz pogo transposable element with ZNF domain Novel U 0.00019117122310175524 -0.26200195343549093 1.0 18739 -224585 Zfp160 zinc finger protein 160 Novel U 0.00019111005336299193 -0.2620025870296342 1.0 18740 -50492 Thop1 thimet oligopeptidase 1 Novel U 0.00019109889155154142 -0.26200270264331027 1.0 18741 -76803 Zfp998 zinc finger protein 998 Novel U 0.00019099590751286445 -0.2620037693485975 1.0 18742 -434760 Rhox2d reproductive homeobox 2D Novel U 0.00019097188986200522 -0.2620040181226355 1.0 18743 -74437 Magec2 MAGE family member C2 Novel U 0.00019082724813236586 -0.26200551631691626 1.0 18744 -15233 Hgd homogentisate 1, 2-dioxygenase Novel U 0.000190635248566335 -0.26200750504210957 1.0 18745 -66648 Tpgs2 tubulin polyglutamylase complex subunit 2 Novel U 0.00019060010524273746 -0.26200786905550016 1.0 18746 -71881 Apmap adipocyte plasma membrane associated protein Novel U 0.00019033822808931303 -0.26201058157044654 1.0 18747 -109791 Clps colipase, pancreatic Novel U 0.0001902590869802734 -0.2620114013114524 1.0 18748 -93761 Smarca1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 1 Novel N 0.00019025068090452565 -0.2620114883813086 1.0 18749 -240068 Zfp563 zinc finger protein 563 Novel U 0.00019016612206462877 -0.26201236423899255 1.0 18750 -73102 Slc22a23 solute carrier family 22, member 23 Novel U 0.00019013803347797355 -0.2620126551796498 1.0 18751 -50917 Galns galactosamine (N-acetyl)-6-sulfatase Novel U 0.0001897467057792644 -0.26201670853908876 1.0 18752 -71797 Chst13 carbohydrate sulfotransferase 13 Novel N 0.00018974154746038732 -0.26201676196878615 1.0 18753 -67534 Ttll4 tubulin tyrosine ligase-like family, member 4 Novel U 0.00018972515381829688 -0.26201693177359203 1.0 18754 -77974 Rdh12 retinol dehydrogenase 12 Novel N 0.0001897229953991061 -0.262016954130427 1.0 18755 -72267 Lrrc8e leucine rich repeat containing 8 family, member E Novel U 0.00018964297329814307 -0.26201778299671824 1.0 18756 -241846 Lsm14b LSM family member 14B Novel U 0.0001895875929073782 -0.26201835662498524 1.0 18757 -666168 Cyp4a31 cytochrome P450, family 4, subfamily a, polypeptide 31 Novel U 0.00018952190803776272 -0.2620190369867055 1.0 18758 -53871 Pkd2l2 polycystic kidney disease 2-like 2 Novel U 0.00018941723944509235 -0.2620201211405475 1.0 18759 -76779 Cluap1 clusterin associated protein 1 Novel U 0.00018934884220673148 -0.26202082959689404 1.0 18760 -244071 Agbl1 ATP/GTP binding protein-like 1 Novel N 0.00018928104793404868 -0.26202153180774185 1.0 18761 -21684 Tectb tectorin beta Novel U 0.00018915262102542487 -0.2620228620494396 1.0 18762 -74854 4930402F06Rik RIKEN cDNA 4930402F06 gene Novel U 0.00018892395147323616 -0.262025230601144 1.0 18763 -100039123 Gm14295 predicted gene 14295 Novel U 0.00018887927244513403 -0.2620256933850484 1.0 18764 -240263 Fem1c fem 1 homolog c Novel U 0.000188855169000033 -0.26202594304774035 1.0 18765 -218630 Ccno cyclin O Novel U 0.00018878829401588408 -0.2620266357366278 1.0 18766 -494448 Cbx6 chromobox 6 Novel N 0.00018878156303188634 -0.26202670545593876 1.0 18767 -545913 Zscan4d zinc finger and SCAN domain containing 4D Novel U 0.00018869170348928782 -0.262027636218127 1.0 18768 -241158 Ankmy1 ankyrin repeat and MYND domain containing 1 Novel U 0.00018867617270156738 -0.2620277970855157 1.0 18769 -74519 Cyp2j9 cytochrome P450, family 2, subfamily j, polypeptide 9 Novel U 0.00018849441575938928 -0.2620296797179478 1.0 18770 -68721 Cfap68 cilia and flagella associated protein 68 Novel U 0.00018849139370764463 -0.26202971102026046 1.0 18771 -622665 Ccdc17 coiled-coil domain containing 17 Novel U 0.00018816879296272665 -0.26203305250817144 1.0 18772 -72486 Obi1 ORC ubiquitin ligase 1 Novel U 0.0001881134973551786 -0.26203362525825663 1.0 18773 -74337 Palm3 paralemmin 3 Novel U 0.0001880884500232545 -0.26203388469769734 1.0 18774 -108114 Slc22a7 solute carrier family 22 (organic anion transporter), member 7 Novel N 0.0001880767504819459 -0.2620340058811616 1.0 18775 -72301 Shisal1 shisa like 1 Novel U 0.00018800993860059793 -0.26203469791643225 1.0 18776 -269629 Lhfpl3 lipoma HMGIC fusion partner-like 3 Novel U 0.0001880024679095951 -0.2620347752976041 1.0 18777 -100039948 Rhox2c reproductive homeobox 2C Novel U 0.0001879833948262071 -0.2620349728559748 1.0 18778 -57312 Mrps31 mitochondrial ribosomal protein S31 Novel U 0.00018798287978766563 -0.26203497819072713 1.0 18779 -18400 Slc22a18 solute carrier family 22 (organic cation transporter), member 18 Novel U 0.0001878383529202355 -0.2620364751952689 1.0 18780 -13419 Dnase1 deoxyribonuclease I Novel U 0.00018783524098359798 -0.2620365074286063 1.0 18781 -170574 Sp7 Sp7 transcription factor 7 Novel U 0.00018780963767667125 -0.26203677262681774 1.0 18782 -70503 Ddo D-aspartate oxidase Novel N 0.0001876944123177094 -0.26203796612729807 1.0 18783 -67198 Spats2l spermatogenesis associated, serine-rich 2-like Novel U 0.0001876492161097917 -0.26203843426813395 1.0 18784 -620807 Mup6 major urinary protein 6 Novel U 0.00018763424374733286 -0.2620385893513721 1.0 18785 -69540 Klk10 kallikrein related-peptidase 10 Novel U 0.00018755121091783476 -0.26203944940269047 1.0 18786 -14869 Gstp2 glutathione S-transferase, pi 2 Novel U 0.0001875380360981047 -0.2620395858670401 1.0 18787 -13612 Edil3 EGF-like repeats and discoidin I-like domains 3 Novel U 0.0001874702654351924 -0.2620402878333387 1.0 18788 -217194 Klhl11 kelch-like 11 Novel U 0.00018743320019180777 -0.26204067175391127 1.0 18789 -75530 Lyrm7 LYR motif containing 7 Novel N 0.0001874278633582046 -0.2620407270326583 1.0 18790 -106861 Abhd3 abhydrolase domain containing 3 Novel U 0.0001873365546091813 -0.2620416728056791 1.0 18791 -76293 Mfap4 microfibrillar-associated protein 4 Novel U 0.0001870658447464011 -0.26204447680953863 1.0 18792 -210583 Gm4767 predicted gene 4767 Novel U 0.000186956609120441 -0.2620456082685614 1.0 18793 -235628 Prss42 serine protease 42 Novel U 0.00018673510320595915 -0.262047902619542 1.0 18794 -26886 Cenph centromere protein H Novel U 0.00018668590816702768 -0.262048412180138 1.0 18795 -69792 Med6 mediator complex subunit 6 Novel N 0.00018664667165628026 -0.2620488185906265 1.0 18796 -102636082 Ccdc168 coiled-coil domain containing 168 Novel U 0.0001866375690477557 -0.26204891287514637 1.0 18797 -74166 Tmem38a transmembrane protein 38A Novel U 0.00018648150356619323 -0.26205052939627405 1.0 18798 -394436 Ugt1a1 UDP glucuronosyltransferase 1 family, polypeptide A1 Novel U 0.00018645363555289384 -0.2620508180522397 1.0 18799 -381668 Fbrsl1 fibrosin-like 1 Novel U 0.00018637658347944155 -0.26205161615508354 1.0 18800 -72094 Ugt2a3 UDP glucuronosyltransferase 2 family, polypeptide A3 Novel U 0.00018622459910113014 -0.2620531904042779 1.0 18801 -381334 Gal3st2 galactose-3-O-sulfotransferase 2 Novel U 0.00018616862690345955 -0.26205377016246134 1.0 18802 -101867 Rrp8 ribosomal RNA processing 8 Novel U 0.00018616315032529462 -0.262053826888678 1.0 18803 -103098 Slc6a15 solute carrier family 6 (neurotransmitter transporter), member 15 Novel N 0.00018610156566710678 -0.262054464780543 1.0 18804 -243510 Ccdc142 coiled-coil domain containing 142 Novel U 0.00018605626488687132 -0.2620549340045355 1.0 18805 -74399 Duxf3 double homeobox family member 3 Novel U 0.00018602516040540812 -0.262055256183732 1.0 18806 -66292 Mrps21 mitochondrial ribosomal protein S21 Novel U 0.0001860190899168934 -0.26205531906165247 1.0 18807 -20756 Sprr2b small proline-rich protein 2B Novel U 0.0001859911438847685 -0.2620556085257345 1.0 18808 -100042944 H2al1h H2A histone family member L1H Novel U 0.00018588631516812157 -0.2620566943381355 1.0 18809 -217071 Gm525 predicted gene 525 Novel U 0.00018582782487729576 -0.26205730017864515 1.0 18810 -637093 Tex13c1 TEX13 family member C1 Novel U 0.0001858107818144152 -0.26205747671013013 1.0 18811 -108168559 Gm21477 predicted gene, 21477 Novel U 0.00018574459462161942 -0.26205816227489737 1.0 18812 -54364 Rpp30 ribonuclease P/MRP 30 subunit Novel N 0.00018561130632016102 -0.26205954287074223 1.0 18813 -270757 Bpifc BPI fold containing family C Novel U 0.00018553243517923742 -0.2620603598154272 1.0 18814 -100039060 Gm2026 predicted gene 2026 Novel U 0.00018545102387612547 -0.26206120307102854 1.0 18815 -50796 Dmrt1 doublesex and mab-3 related transcription factor 1 Novel N 0.00018542874165790874 -0.26206143386951236 1.0 18816 -78929 Polr3h polymerase (RNA) III (DNA directed) polypeptide H Novel N 0.00018527141073971428 -0.2620630634979911 1.0 18817 -216829 Mmgt2 membrane magnesium transporter 2 Novel U 0.0001852445083857828 -0.2620633421516887 1.0 18818 -74919 Slc35f6 solute carrier family 35, member F6 Novel N 0.00018523303591059753 -0.26206346098320954 1.0 18819 -229550 S100a7l2 S100 calcium binding protein A7 like 2 Novel U 0.0001851963218389427 -0.26206384126635685 1.0 18820 -78246 Phf23 PHD finger protein 23 Novel U 0.0001851663402396931 -0.26206415181477627 1.0 18821 -72075 Ogfr opioid growth factor receptor Novel U 0.00018488019967017325 -0.26206711564938895 1.0 18822 -223513 Abra actin-binding Rho activating protein Novel U 0.00018483203777520574 -0.2620676145087138 1.0 18823 -102680 Slc6a20a solute carrier family 6 (neurotransmitter transporter), member 20A Novel U 0.00018473124372579163 -0.26206865853016426 1.0 18824 -65973 Asph aspartate-beta-hydroxylase Novel U 0.00018467735291332842 -0.2620692167294282 1.0 18825 -71791 Cpa4 carboxypeptidase A4 Novel U 0.00018465500465186886 -0.2620694482119857 1.0 18826 -73068 Fut11 fucosyltransferase 11 Novel U 0.00018463046698949736 -0.2620697023722859 1.0 18827 -16588 Kin Kin17 DNA and RNA binding protein Novel N 0.00018462409163515076 -0.2620697684079966 1.0 18828 -11722 Amy1 amylase 1, salivary Novel U 0.00018460916742741448 -0.2620699229924498 1.0 18829 -64818 Krt81 keratin 81 Novel U 0.0001845443490832156 -0.2620705943787282 1.0 18830 -240816 Rgsl1 regulator of G-protein signaling like 1 Novel U 0.00018450910850684754 -0.26207095939945974 1.0 18831 -239673 Krt90 keratin 90 Novel U 0.00018447870821899963 -0.26207127428464194 1.0 18832 -21835 Thrsp thyroid hormone responsive Novel U 0.0001843772386716146 -0.2620723253028781 1.0 18833 -13095 Cyp2c29 cytochrome P450, family 2, subfamily c, polypeptide 29 Novel U 0.00018426204392576372 -0.2620735184862688 1.0 18834 -231452 Sdad1 SDA1 domain containing 1 Novel U 0.00018419053185893036 -0.26207425920590627 1.0 18835 -107227 Macrod1 mono-ADP ribosylhydrolase 1 Novel N 0.00018405618533653308 -0.26207565076276884 1.0 18836 -74895 Ccdc181 coiled-coil domain containing 181 Novel U 0.0001839828214108463 -0.2620764106638994 1.0 18837 -69314 Izumo3 IZUMO family member 3 Novel U 0.00018397620757918794 -0.26207647916975024 1.0 18838 -235493 Atosa atos homolog A Novel U 0.00018357966434337397 -0.26208058655155114 1.0 18839 -252868 Odf4 outer dense fiber of sperm tails 4 Novel U 0.00018351339443375213 -0.2620812729730965 1.0 18840 -434172 Gm5592 predicted gene 5592 Novel U 0.00018336141859120819 -0.2620828471338777 1.0 18841 -66308 Mplkip M-phase specific PLK1 intereacting protein Novel U 0.00018325779144918856 -0.26208392050040813 1.0 18842 -59038 Pxmp4 peroxisomal membrane protein 4 Novel U 0.00018319989894810543 -0.2620845201490313 1.0 18843 -240633 Lipk lipase, family member K Novel N 0.00018295195784324134 -0.2620870883148448 1.0 18844 -72535 Aldh1b1 aldehyde dehydrogenase 1 family, member B1 Novel U 0.00018288496992624185 -0.262087782173487 1.0 18845 -13392 Dlx2 distal-less homeobox 2 Novel N 0.00018275996391788733 -0.26208907698161216 1.0 18846 -29811 Ndrg2 N-myc downstream regulated gene 2 Novel U 0.0001827162649013242 -0.2620895296145892 1.0 18847 -100336 Ppp1r8 protein phosphatase 1, regulatory subunit 8 Novel N 0.00018253844355215293 -0.26209137148227835 1.0 18848 -20197 S100a3 S100 calcium binding protein A3 Novel U 0.00018252950663471783 -0.2620914640505754 1.0 18849 -11883 Arsa arylsulfatase A Novel U 0.00018250127095645539 -0.2620917565148026 1.0 18850 -320655 Pgap3 post-GPI attachment to proteins 3 Novel U 0.00018216227747936474 -0.2620952677980945 1.0 18851 -11433 Acp5 acid phosphatase 5, tartrate resistant Novel U 0.00018213143456282676 -0.26209558726801013 1.0 18852 -67483 Cfap95 cilia and flagella associated protein 95 Novel U 0.00018210328883003162 -0.26209587880058516 1.0 18853 -140482 Zfp358 zinc finger protein 358 Novel U 0.0001820804661386134 -0.2620961151972726 1.0 18854 -628147 Gm2004 predicted gene 2004 Novel U 0.00018202456739476448 -0.2620966941946238 1.0 18855 -14874 Gstz1 glutathione transferase zeta 1 (maleylacetoacetate isomerase) Novel N 0.00018193497068502644 -0.2620976222343979 1.0 18856 -26428 Orc4 origin recognition complex, subunit 4 Novel U 0.00018185829219922282 -0.2620984164676332 1.0 18857 -68165 Fdx2 ferredoxin 2 Novel U 0.0001818291110064151 -0.2620987187254691 1.0 18858 -208968 Zfp280c zinc finger protein 280C Novel U 0.00018176977578331788 -0.26209933331775936 1.0 18859 -381199 Tmem151a transmembrane protein 151A Novel N 0.0001817081737956863 -0.2620999713891222 1.0 18860 -66320 Tmem208 transmembrane protein 208 Novel U 0.00018152363338308313 -0.2621018828526495 1.0 18861 -230991 Fndc10 fibronectin type III domain containing 10 Novel U 0.0001814919628612028 -0.262102210894874 1.0 18862 -77264 Zfp142 zinc finger protein 142 Novel N 0.00018142919546200616 -0.26210286103753155 1.0 18863 -66271 Tmem126a transmembrane protein 126A Novel N 0.0001813795445577639 -0.2621033753199655 1.0 18864 -192170 Eif4a3 eukaryotic translation initiation factor 4A3 Novel U 0.00018130587134374565 -0.2621041384246944 1.0 18865 -242607 Slc1a7 solute carrier family 1 (glutamate transporter), member 7 Novel U 0.00018117619246384888 -0.26210548163426944 1.0 18866 -67719 2310057J18Rik RIKEN cDNA 2310057J18 gene Novel U 0.00018108742393083428 -0.2621064010958163 1.0 18867 -74934 Odad2 outer dynein arm docking complex subunit 2 Novel U 0.0001810421603556594 -0.26210686993444 1.0 18868 -12021 Bard1 BRCA1 associated RING domain 1 Novel U 0.0001810307940641976 -0.2621069876661133 1.0 18869 -67544 Fam120b family with sequence similarity 120, member B Novel U 0.00018087295203814886 -0.2621086225886303 1.0 18870 -56314 Zfp113 zinc finger protein 113 Novel U 0.00018085764225524243 -0.2621087811668584 1.0 18871 -232972 Lypd10 Ly6/PLAUR domain containing 10 Novel U 0.00018085516156491369 -0.26210880686176724 1.0 18872 -246083 Defb13 defensin beta 13 Novel U 0.00018082589079038798 -0.26210911004748755 1.0 18873 -68177 Ebpl emopamil binding protein-like Novel U 0.00018081634586919948 -0.2621092089134675 1.0 18874 -14233 Foxi1 forkhead box I1 Novel U 0.00018039728604265975 -0.26211354952137494 1.0 18875 -20944 Svs5 seminal vesicle secretory protein 5 Novel U 0.00018029788569907566 -0.26211457910686614 1.0 18876 -58523 Elp2 elongator acetyltransferase complex subunit 2 Novel N 0.00018025103927837675 -0.26211506434055176 1.0 18877 -623131 Prr19 proline rich 19 Novel U 0.00018006753333166497 -0.26211696508911536 1.0 18878 -232680 Cpa2 carboxypeptidase A2, pancreatic Novel N 0.00018000745288442526 -0.26211758740041285 1.0 18879 -22390 Wee1 WEE 1 homolog 1 (S. pombe) Novel U 0.0001799767098664225 -0.2621179058355827 1.0 18880 -72068 Cnot2 CCR4-NOT transcription complex, subunit 2 Novel U 0.000179874420236132 -0.26211896534821066 1.0 18881 -107970 H1f6 H1.6 linker histone, cluster member Novel U 0.00017975213893034543 -0.2621202319339562 1.0 18882 -78796 Zcchc4 zinc finger, CCHC domain containing 4 Novel N 0.00017969566240712363 -0.2621208169159272 1.0 18883 -69499 Tsr2 TSR2 20S rRNA accumulation Novel U 0.00017965934731832464 -0.2621211930664232 1.0 18884 -18221 Nudc nudC nuclear distribution protein Novel U 0.00017960743272195801 -0.26212173079610573 1.0 18885 -26971 Pla2g2f phospholipase A2, group IIF Novel U 0.00017938292499405226 -0.2621240562397711 1.0 18886 -243372 Zfp775 zinc finger protein 775 Novel U 0.00017922162708915575 -0.2621257269581676 1.0 18887 -74571 Kcnk16 potassium channel, subfamily K, member 16 Novel U 0.0001791860506366902 -0.2621260954578927 1.0 18888 -320709 Tmem117 transmembrane protein 117 Novel N 0.00017913294298966084 -0.26212664554515486 1.0 18889 -107932 Chd4 chromodomain helicase DNA binding protein 4 Novel U 0.0001791024808884341 -0.26212696107059796 1.0 18890 -11878 Arx aristaless related homeobox Novel U 0.00017904548651407595 -0.262127551416454 1.0 18891 -53817 Ddx39b DEAD box helicase 39b Novel N 0.00017898098851582345 -0.26212821948459963 1.0 18892 -66681 Pgm2 phosphoglucomutase 2 Novel U 0.00017896701507606253 -0.2621283642210293 1.0 18893 -320082 Fbxw21 F-box and WD-40 domain protein 21 Novel U 0.00017877148696854978 -0.26213038949473927 1.0 18894 -330064 Slc5a6 solute carrier family 5 (sodium-dependent vitamin transporter), member 6 Novel U 0.00017876254638315476 -0.2621304821010289 1.0 18895 -241230 St8sia6 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 6 Novel U 0.0001786339496432288 -0.26213181410183367 1.0 18896 -100859931 Gm20604 predicted gene 20604 Novel U 0.00017855726716252025 -0.26213260837644803 1.0 18897 -242747 Zfp933 zinc finger protein 933 Novel U 0.00017842492070949736 -0.2621339792166578 1.0 18898 -20467 Sin3b transcriptional regulator, SIN3B (yeast) Novel N 0.00017833471648678637 -0.26213491354903135 1.0 18899 -268482 Krt12 keratin 12 Novel U 0.00017809512450583603 -0.2621373952348939 1.0 18900 -270004 Foxi2 forkhead box I2 Novel U 0.00017807810590783426 -0.2621375715129725 1.0 18901 -94346 Tmem40 transmembrane protein 40 Novel U 0.0001779415476356807 -0.2621389859790664 1.0 18902 -108902 B4gat1 beta-1,4-glucuronyltransferase 1 Novel U 0.0001778391655052277 -0.262140046449808 1.0 18903 -231727 B3gnt4 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 4 Novel N 0.00017774942995280363 -0.2621409759277101 1.0 18904 -67456 Ergic2 ERGIC and golgi 2 Novel N 0.00017770634677063477 -0.2621414221818947 1.0 18905 -66192 Lage3 L antigen family, member 3 Novel U 0.0001775528788416527 -0.2621430117976581 1.0 18906 -73673 Rec114 REC114 meiotic recombination protein Novel N 0.0001773447973624889 -0.262145167098779 1.0 18907 -69920 Polr2i polymerase (RNA) II (DNA directed) polypeptide I Novel N 0.00017733361865807565 -0.26214528288743183 1.0 18908 -66654 Tex12 testis expressed 12 Novel U 0.000177280861770805 -0.26214582934153585 1.0 18909 -109342 Slc5a10 solute carrier family 5 (sodium/glucose cotransporter), member 10 Novel N 0.0001772214201053706 -0.2621464450363524 1.0 18910 -329470 Accs 1-aminocyclopropane-1-carboxylate synthase (inactive) Novel U 0.00017719855234346116 -0.2621466818998785 1.0 18911 -50934 Slc7a8 solute carrier family 7 (cationic amino acid transporter, y+ system), member 8 Novel U 0.0001771972284966723 -0.26214669561224 1.0 18912 -382105 Fbxw15 F-box and WD-40 domain protein 15 Novel U 0.00017717402758593069 -0.2621469359265108 1.0 18913 -20495 Slc12a1 solute carrier family 12, member 1 Novel U 0.00017704366872817818 -0.2621482861792741 1.0 18914 -230161 Acnat1 acyl-coenzyme A amino acid N-acyltransferase 1 Novel U 0.00017686796365134447 -0.26215010612668393 1.0 18915 -103677 Smg6 SMG6 nonsense mediated mRNA decay factor Novel N 0.00017674839541663467 -0.26215134461052847 1.0 18916 -226438 Igfn1 immunoglobulin-like and fibronectin type III domain containing 1 Novel U 0.00017668471793001554 -0.26215200417984164 1.0 18917 -235135 Tmem45b transmembrane protein 45b Novel U 0.00017657740253019684 -0.2621531157492251 1.0 18918 -212943 Tent5a terminal nucleotidyltransferase 5A Novel U 0.00017656046221442532 -0.262153291216459 1.0 18919 -66931 1700010I14Rik RIKEN cDNA 1700010I14 gene Novel U 0.0001764423366276596 -0.26215451475740353 1.0 18920 -78482 Nup50l nucleoporin 50 like Novel U 0.00017640465374726687 -0.26215490507543987 1.0 18921 -13098 Cyp2c39 cytochrome P450, family 2, subfamily c, polypeptide 39 Novel U 0.00017636787008093173 -0.2621552860794466 1.0 18922 -17703 Msx3 msh homeobox 3 Novel U 0.00017635526304250656 -0.2621554166627362 1.0 18923 -68276 Toe1 target of EGR1, member 1 (nuclear) Novel N 0.0001762810056630146 -0.26215618581823186 1.0 18924 -93762 Smarca5 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 5 Novel N 0.00017624666205821063 -0.2621565415481614 1.0 18925 -19120 Prm3 protamine 3 Novel U 0.00017615510648648415 -0.26215748987776366 1.0 18926 -102632745 Gm30737 predicted gene, 30737 Novel U 0.00017604950359841664 -0.26215858370900674 1.0 18927 -383977 Spopfm3 speckle-type BTB/POZ protein family member 3 Novel U 0.00017603387940637682 -0.2621587455438743 1.0 18928 -68975 Med27 mediator complex subunit 27 Novel U 0.00017603237991539454 -0.2621587610755526 1.0 18929 -268491 Meioc meiosis specific with coiled-coil domain Novel U 0.00017591590150832696 -0.26215996755506393 1.0 18930 -67486 Polr3g polymerase (RNA) III (DNA directed) polypeptide G Novel U 0.000175861355855538 -0.26216053253714244 1.0 18931 -213499 Fbxo42 F-box protein 42 Novel U 0.0001758307508756992 -0.26216084954251756 1.0 18932 -381760 Ssbp1 single-stranded DNA binding protein 1 Novel U 0.00017581137457428815 -0.26216105024161057 1.0 18933 -72585 Lypd1 Ly6/Plaur domain containing 1 Novel U 0.00017571760109932508 -0.2621620215441816 1.0 18934 -246049 Slc36a2 solute carrier family 36 (proton/amino acid symporter), member 2 Novel N 0.00017560470471430904 -0.26216319092122636 1.0 18935 -230613 Skint10 selection and upkeep of intraepithelial T cells 10 Novel U 0.00017547846794783902 -0.2621644984775036 1.0 18936 -70025 Acot7 acyl-CoA thioesterase 7 Novel N 0.00017544255616929762 -0.2621648704505253 1.0 18937 -228876 Zfp334 zinc finger protein 334 Novel U 0.000175418148984069 -0.2621651232593475 1.0 18938 -69574 Cmbl carboxymethylenebutenolidase homolog Novel N 0.0001753618883124847 -0.2621657060055343 1.0 18939 -216871 Gltpd2 glycolipid transfer protein domain containing 2 Novel U 0.00017522304110626015 -0.26216714418033205 1.0 18940 -71163 Zfp626 zinc finger protein 626 Novel U 0.0001751942086887655 -0.26216744282556464 1.0 18941 -100048884 Mup18 major urinary protein 18 Novel U 0.00017511385796432747 -0.26216827509572693 1.0 18942 -328059 Slc7a15 solute carrier family 7 (cationic amino acid transporter, y+ system), member 15 Novel U 0.0001750947229155189 -0.26216847329593346 1.0 18943 -233836 Slc5a11 solute carrier family 5 (sodium/glucose cotransporter), member 11 Novel N 0.00017494404940956881 -0.262170033967155 1.0 18944 -50776 Polg2 polymerase (DNA directed), gamma 2, accessory subunit Novel U 0.00017490832321077549 -0.26217040401794767 1.0 18945 -99377 Sall4 spalt like transcription factor 4 Novel U 0.00017488966563443818 -0.26217059727251 1.0 18946 -20443 St3gal4 ST3 beta-galactoside alpha-2,3-sialyltransferase 4 Novel U 0.00017483038285979205 -0.262171211321541 1.0 18947 -59032 Ppp2r3c protein phosphatase 2, regulatory subunit B'', gamma Novel U 0.0001745901146946109 -0.26217370001129753 1.0 18948 -67606 Fibin fin bud initiation factor homolog (zebrafish) Novel U 0.00017457925959160059 -0.2621738124480977 1.0 18949 -22755 Zfp93 zinc finger protein 93 Novel U 0.0001744847677838865 -0.26217479119113574 1.0 18950 -232853 Zfp954 zinc finger protein 954 Novel U 0.0001744451824930441 -0.262175201214277 1.0 18951 -101631 Pwwp2b PWWP domain containing 2B Novel U 0.00017439541655626205 -0.2621757166882142 1.0 18952 -15438 Hoxd9 homeobox D9 Novel N 0.00017404937987756524 -0.2621793009247568 1.0 18953 -100502723 Tsga8 testis specific gene A8 Novel U 0.0001738990052964392 -0.26218085849972483 1.0 18954 -67736 Yju2b YJU2 splicing factor homolog B Novel U 0.00017387943325618315 -0.2621810612262744 1.0 18955 -208518 Cep78 centrosomal protein 78 Novel U 0.00017378479972831698 -0.2621820414372451 1.0 18956 -72843 Prdm4 PR domain containing 4 Novel U 0.0001736621776041267 -0.2621833115531765 1.0 18957 -240660 Slc35g1 solute carrier family 35, member G1 Novel N 0.00017362473600243108 -0.26218369937205604 1.0 18958 -227671 Gbgt1 globoside alpha-1,3-N-acetylgalactosaminyltransferase 1 Novel N 0.0001735476663992877 -0.2621844976564719 1.0 18959 -16681 Krt2 keratin 2 Novel U 0.0001735131618982501 -0.26218485505295935 1.0 18960 -75199 Rhox2a reproductive homeobox 2A Novel U 0.00017348646642352988 -0.2621851315638089 1.0 18961 -102638882 Wdr97 WD repeat domain 97 Novel U 0.00017345125250026368 -0.2621854963084685 1.0 18962 -242800 Ttc34 tetratricopeptide repeat domain 34 Novel U 0.00017342602632143363 -0.2621857576003996 1.0 18963 -330277 Garin1b golgi associated RAB2 interactor 1B Novel U 0.00017336291324110515 -0.26218641132361087 1.0 18964 -68453 Gpihbp1 GPI-anchored HDL-binding protein 1 Novel U 0.0001732836169326909 -0.2621872326721667 1.0 18965 -100043468 Zfp955b zinc finger protein 955B Novel U 0.0001731912555421846 -0.26218818934841337 1.0 18966 -270150 Ccdc153 coiled-coil domain containing 153 Novel U 0.00017303800042220037 -0.2621897767599082 1.0 18967 -67926 Cby2 chibby family member 2 Novel U 0.0001730360512114379 -0.2621897969497691 1.0 18968 -11886 Asah1 N-acylsphingosine amidohydrolase 1 Novel U 0.00017299528921473412 -0.26219021916119106 1.0 18969 -327956 Vmo1 vitelline membrane outer layer 1 homolog (chicken) Novel U 0.00017289369368747183 -0.26219127148432264 1.0 18970 -70650 Zcchc8 zinc finger, CCHC domain containing 8 Novel N 0.00017282526065507233 -0.26219198031142266 1.0 18971 -22360 Nrsn1 neurensin 1 Novel U 0.00017281491635873884 -0.262192087457304 1.0 18972 -93681 Zkscan8 zinc finger with KRAB and SCAN domains 8 Novel U 0.00017277238882642575 -0.2621925279560857 1.0 18973 -13394 Dlx4 distal-less homeobox 4 Novel U 0.00017257446430532684 -0.26219457805176877 1.0 18974 -231868 Ints15 integrator complex subunit 15 Novel U 0.00017246381093275335 -0.2621957241957644 1.0 18975 -14863 Gstm2 glutathione S-transferase, mu 2 Novel U 0.00017241888865105043 -0.26219618949928153 1.0 18976 -56174 Nagk N-acetylglucosamine kinase Novel U 0.0001723234538397943 -0.26219717800991926 1.0 18977 -70891 Spdya speedy/RINGO cell cycle regulator family, member A Novel U 0.00017229973728343515 -0.2621974236652304 1.0 18978 -70673 Prdm16 PR domain containing 16 Novel U 0.00017221366597616454 -0.26219831518900166 1.0 18979 -667666 Zfp600 zinc finger protein 600 Novel U 0.00017215056329363308 -0.26219896880451293 1.0 18980 -15408 Hoxb13 homeobox B13 Novel U 0.00017203012611881422 -0.2622002162888106 1.0 18981 -28077 Med10 mediator complex subunit 10 Novel U 0.00017201120222647457 -0.2622004123018653 1.0 18982 -107701 Sf3b4 splicing factor 3b, subunit 4 Novel U 0.00017194008555994933 -0.26220114892595936 1.0 18983 -12411 Cbs cystathionine beta-synthase Novel U 0.0001715458644884269 -0.26220523225485887 1.0 18984 -73809 Satl1 spermidine/spermine N1-acetyl transferase-like 1 Novel U 0.00017144371496621798 -0.2622062903162519 1.0 18985 -69121 Chrdl2 chordin-like 2 Novel U 0.00017135678733076108 -0.2622071907098424 1.0 18986 -11298 Aanat arylalkylamine N-acetyltransferase Novel N 0.00017130640109413095 -0.2622077126088251 1.0 18987 -17215 Mcm3 minichromosome maintenance complex component 3 Novel U 0.00017125693127788153 -0.2622082250155555 1.0 18988 -70387 Ttc9c tetratricopeptide repeat domain 9C Novel U 0.0001712258269333229 -0.2622085471933339 1.0 18989 -13524 Adam18 a disintegrin and metallopeptidase domain 18 Novel U 0.00017122359460129084 -0.2622085703157558 1.0 18990 -73472 Spata18 spermatogenesis associated 18 Novel U 0.0001712080512100072 -0.2622087313136917 1.0 18991 -66469 Prxl2b peroxiredoxin like 2B Novel U 0.00017115316611320333 -0.26220929981172014 1.0 18992 -68977 Haghl hydroxyacylglutathione hydrolase-like Novel U 0.00017109787127191366 -0.2622098725538685 1.0 18993 -22786 Zp1 zona pellucida glycoprotein 1 Novel N 0.00017098747551285505 -0.2622110160295118 1.0 18994 -668346 Tdpoz9-ps1 TD and POZ domain containing 9, pseudogene 1 Novel U 0.00017086702756254882 -0.26221226362542155 1.0 18995 -66274 Lyrm9 LYR motif containing 9 Novel U 0.00017074599184875995 -0.26221351730936615 1.0 18996 -70178 Abhd17c abhydrolase domain containing 17C Novel N 0.00017070751032301256 -0.2622139158997448 1.0 18997 -68917 Hint2 histidine triad nucleotide binding protein 2 Novel U 0.00017066639137198447 -0.26221434180848785 1.0 18998 -235612 Fbxw19 F-box and WD-40 domain protein 19 Novel U 0.00017057026125247299 -0.26221533752110565 1.0 18999 -212281 Zfp729a zinc finger protein 729a Novel U 0.00017055817247023296 -0.2622154627363147 1.0 19000 -241520 Fam171b family with sequence similarity 171, member B Novel U 0.00017051929179516686 -0.2622158654610689 1.0 19001 -100039574 Gm20806 predicted gene, 20806 Novel U 0.00017038520451630374 -0.26221725433269544 1.0 19002 -14756 Gpld1 glycosylphosphatidylinositol specific phospholipase D1 Novel U 0.00017037403968591118 -0.26221736997764167 1.0 19003 -112422 Zfp979 zinc finger protein 979 Novel U 0.00017033394382334172 -0.2622177852892681 1.0 19004 -100515 Zfp518b zinc finger protein 518B Novel U 0.00017023846017931855 -0.262218774305714 1.0 19005 -75721 4932414N04Rik RIKEN cDNA 4932414N04 gene Novel U 0.00017023257734078185 -0.2622188352399622 1.0 19006 -11685 Alox12e arachidonate lipoxygenase, epidermal Novel U 0.00017013073242680784 -0.26221989014623315 1.0 19007 -73095 Slc25a42 solute carrier family 25, member 42 Novel U 0.00017010662930963042 -0.2622201398055285 1.0 19008 -216821 Tmem11 transmembrane protein 11 Novel N 0.0001700782832323649 -0.262220433413265 1.0 19009 -105446 Gmpr2 guanosine monophosphate reductase 2 Novel N 0.00016987825477358427 -0.26222250530146546 1.0 19010 -330830 Drc7 dynein regulatory complex subunit 7 Novel U 0.0001698668742650638 -0.26222262318039863 1.0 19011 -100201 Tmem64 transmembrane protein 64 Novel U 0.000169758667521679 -0.2622237439822895 1.0 19012 -214987 Chtf8 CTF8, chromosome transmission fidelity factor 8 Novel U 0.00016974978566352324 -0.2622238359802843 1.0 19013 -210503 Zfp677 zinc finger protein 677 Novel U 0.00016950593087838623 -0.2622263618201325 1.0 19014 -17146 Mageb2 MAGE family member B2 Novel U 0.00016936724108055381 -0.2622277983644992 1.0 19015 -269623 Rbm48 RNA binding motif protein 48 Novel U 0.00016936392069408584 -0.2622278327569531 1.0 19016 -74156 Acot12 acyl-CoA thioesterase 12 Novel U 0.00016936151745828275 -0.26222785764959056 1.0 19017 -19365 Rad52 RAD52 homolog, DNA repair protein Novel N 0.00016934050331125758 -0.2622280753134346 1.0 19018 -272465 Tmem255b transmembrane protein 255B Novel U 0.00016932730053127382 -0.2622282120673957 1.0 19019 -12353 Car6 carbonic anhydrase 6 Novel N 0.00016927020329414967 -0.26222880347870087 1.0 19020 -216766 Gemin5 gem nuclear organelle associated protein 5 Novel N 0.0001692511073914767 -0.262229001273433 1.0 19021 -237339 L3mbtl3 L3MBTL3 histone methyl-lysine binding protein Novel U 0.00016916878078773213 -0.26222985400968823 1.0 19022 -67311 Nanp N-acetylneuraminic acid phosphatase Novel N 0.0001690842149862933 -0.2622307299394796 1.0 19023 -574403 Insyn2b inhibitory synaptic factor family member 2B Novel U 0.00016905248494951964 -0.26223105859815743 1.0 19024 -277743 Fam131c family with sequence similarity 131, member C Novel U 0.00016899045211955031 -0.26223170113217104 1.0 19025 -621080 AI429214 expressed sequence AI429214 Novel U 0.00016885527236813213 -0.26223310131959243 1.0 19026 -100505096 Defa33 defensin, alpha, 33 Novel U 0.00016884031938131584 -0.26223325620213833 1.0 19027 -66994 Cep19 centrosomal protein 19 Novel U 0.00016879120090839295 -0.26223376496966616 1.0 19028 -15434 Hoxd3 homeobox D3 Novel N 0.00016877780298754194 -0.2622339037448899 1.0 19029 -100042314 Gsta5 glutathione S-transferase alpha 5 Novel U 0.00016872840040145208 -0.2622344154552526 1.0 19030 -243328 Slc29a4 solute carrier family 29 (nucleoside transporters), member 4 Novel U 0.00016868242045938817 -0.26223489171398096 1.0 19031 -100042109 Gm10488 predicted gene 10488 Novel U 0.00016867971074076917 -0.26223491978115737 1.0 19032 -84543 Sval2 seminal vesicle antigen-like 2 Novel U 0.00016861857850968356 -0.26223555298679735 1.0 19033 -69186 Tmem256 transmembrane protein 256 Novel U 0.00016859227042520086 -0.26223582548507157 1.0 19034 -99382 Abtb2 ankyrin repeat and BTB domain containing 2 Novel U 0.00016844164845164147 -0.2622373856225223 1.0 19035 -94229 Slc4a10 solute carrier family 4, sodium bicarbonate cotransporter-like, member 10 Novel N 0.00016836091794436334 -0.2622382218264628 1.0 19036 -57874 Hacd3 3-hydroxyacyl-CoA dehydratase 3 Novel N 0.00016833287718583643 -0.2622385122717178 1.0 19037 -70601 Ecd ecdysoneless cell cycle regulator Novel N 0.0001682959207984045 -0.26223889506476394 1.0 19038 -17216 Mcm2 minichromosome maintenance complex component 2 Novel U 0.00016825232529156018 -0.26223934662559073 1.0 19039 -210719 Mkx mohawk homeobox Novel U 0.00016818945493862365 -0.2622399978346397 1.0 19040 -12729 Clns1a chloride channel, nucleotide-sensitive, 1A Novel N 0.00016804756207214634 -0.2622414675562862 1.0 19041 -66213 Med7 mediator complex subunit 7 Novel N 0.00016796083851971318 -0.2622423658359914 1.0 19042 -69351 Smim23 small integral membrane protein 23 Novel U 0.00016792236681720555 -0.2622427643246213 1.0 19043 -69665 Upk3bl uroplakin 3B-like Novel U 0.0001678380214824173 -0.26224363797082634 1.0 19044 -17217 Mcm4 minichromosome maintenance complex component 4 Novel U 0.00016749501839633075 -0.2622471907855164 1.0 19045 -23971 Papss1 3'-phosphoadenosine 5'-phosphosulfate synthase 1 Novel N 0.00016743963269769563 -0.2622477644687622 1.0 19046 -73172 Exo5 exonuclease 5 Novel N 0.00016736323055947406 -0.2622485558395983 1.0 19047 -64379 Irx6 Iroquois homeobox 6 Novel U 0.000167338291349912 -0.26224881415911105 1.0 19048 -192196 Luc7l2 LUC7-like 2 (S. cerevisiae) Novel U 0.00016730288234902312 -0.26224918092437827 1.0 19049 -71841 Tcp11x2 t-complex 11 family, X-linked 2 Novel U 0.00016723671069122172 -0.2622498663282345 1.0 19050 -74424 Tmc5 transmembrane channel-like gene family 5 Novel U 0.0001672027678175976 -0.2622502179074037 1.0 19051 -68001 Cfap298 cilia and flagella associate protien 298 Novel U 0.00016708105591142246 -0.2622514785953268 1.0 19052 -103711 Pnpo pyridoxine 5'-phosphate oxidase Novel N 0.00016700749753986022 -0.2622522405105213 1.0 19053 -319734 Cacna2d4 calcium channel, voltage-dependent, alpha 2/delta subunit 4 Novel U 0.00016692543047810147 -0.2622530905584492 1.0 19054 -15331 Hmgn2 high mobility group nucleosomal binding domain 2 Novel U 0.0001668659837592584 -0.2622537063056088 1.0 19055 -108168533 Gm21650 predicted gene, 21650 Novel U 0.0001668060567050798 -0.262254327028066 1.0 19056 -622402 Akr1c12 aldo-keto reductase family 1, member C12 Novel U 0.000166752275564517 -0.26225488409135195 1.0 19057 -108707 Slx9 SLX9 ribosome biogenesis factor Novel U 0.0001667084571232033 -0.26225533796132666 1.0 19058 -434439 BC048562 cDNA sequence BC048562 Novel U 0.00016658776849585235 -0.26225658805016133 1.0 19059 -75811 Saxo1 stabilizer of axonemal microtubules 1 Novel U 0.00016656756802018835 -0.2622567972860242 1.0 19060 -26429 Orc5 origin recognition complex, subunit 5 Novel N 0.00016652168707628778 -0.26225727251933284 1.0 19061 -103149 Upb1 ureidopropionase, beta Novel U 0.00016640726275855377 -0.26225845772265444 1.0 19062 -12971 Crym crystallin, mu Novel N 0.00016633393637555664 -0.2622592172349191 1.0 19063 -100042946 H2al1i H2A histone family member L1I Novel U 0.00016615577415683263 -0.2622610626333238 1.0 19064 -319183 H2bc11 H2B clustered histone 11 Novel U 0.0001660334811924706 -0.2622623293398285 1.0 19065 -13516 Epyc epiphycan Novel N 0.00016597948827960738 -0.26226288859664504 1.0 19066 -20133 Rrm1 ribonucleotide reductase M1 Novel U 0.00016594035939760638 -0.26226329389231856 1.0 19067 -235559 Topbp1 topoisomerase (DNA) II binding protein 1 Novel U 0.00016593290804828835 -0.2622633710731498 1.0 19068 -225922 Oosp2 oocyte secreted protein 2 Novel U 0.0001657731823578102 -0.2622650255066011 1.0 19069 -15421 Hoxc12 homeobox C12 Novel U 0.00016567233792010792 -0.2622660700499717 1.0 19070 -320554 Tcp11l1 t-complex 11 like 1 Novel U 0.0001656473193466249 -0.2622663291915334 1.0 19071 -67967 Pold3 polymerase (DNA-directed), delta 3, accessory subunit Novel U 0.00016560271075356523 -0.26226679124587393 1.0 19072 -71778 Klhl5 kelch-like 5 Novel U 0.00016558027399326853 -0.2622670236450995 1.0 19073 -234725 Zfp612 zinc finger protein 612 Novel U 0.00016550457107398066 -0.2622678077734489 1.0 19074 -213464 Rbbp5 retinoblastoma binding protein 5, histone lysine methyltransferase complex subunit Novel N 0.00016545242122685782 -0.26226834793985104 1.0 19075 -271005 Klhdc1 kelch domain containing 1 Novel U 0.00016536426504969005 -0.2622692610586361 1.0 19076 -68079 Pdcd2l programmed cell death 2-like Novel U 0.00016535609150835414 -0.2622693457199086 1.0 19077 -238690 Zfp458 zinc finger protein 458 Novel U 0.00016534505944292287 -0.2622694599896797 1.0 19078 -108899 Zfta zinc finger translocation associated Novel U 0.00016529372067062398 -0.2622699917549955 1.0 19079 -13479 Dpep1 dipeptidase 1 Novel N 0.00016518954686790428 -0.26227107078381956 1.0 19080 -69367 Glrx2 glutaredoxin 2 Novel U 0.00016517693755467168 -0.2622712013906715 1.0 19081 -108017 Fxyd4 FXYD domain-containing ion transport regulator 4 Novel U 0.00016510330732630773 -0.26227196405015646 1.0 19082 -72440 Rhno1 RAD9-HUS1-RAD1 interacting nuclear orphan 1 Novel U 0.00016495449089972414 -0.2622735054858109 1.0 19083 -14598 Ggt1 gamma-glutamyltransferase 1 Novel U 0.0001648974850805259 -0.2622740959502122 1.0 19084 -67592 4930524B15Rik RIKEN cDNA 4930524B15 gene Novel U 0.00016485915323749369 -0.26227449299018224 1.0 19085 -497652 Acd adrenocortical dysplasia Novel U 0.00016485759672562114 -0.26227450911248107 1.0 19086 -330260 Pon2 paraoxonase 2 Novel U 0.0001648082362718183 -0.2622750203864389 1.0 19087 -67011 Mettl6 methyltransferase 6, methylcytidine Novel N 0.00016478578162224634 -0.262275252970961 1.0 19088 -105833 Ccdc65 coiled-coil domain containing 65 Novel U 0.00016471027448413696 -0.2622760350714154 1.0 19089 -77794 Adamtsl2 ADAMTS-like 2 Novel U 0.00016452053953519577 -0.2622780003397793 1.0 19090 -20530 Slc31a2 solute carrier family 31, member 2 Novel N 0.00016444824188136415 -0.26227874919650107 1.0 19091 -19725 Rfx2 regulatory factor X, 2 (influences HLA class II expression) Novel U 0.0001643434425373819 -0.26227983470466093 1.0 19092 -100463512 Mtrnr2l7 mt-Rnr2 like 7 Novel U 0.00016429891861021706 -0.26228029588203483 1.0 19093 -338350 Acad12 acyl-Coenzyme A dehydrogenase family, member 12 Novel U 0.00016418881493184768 -0.26228143633231593 1.0 19094 -26897 Acot1 acyl-CoA thioesterase 1 Novel U 0.0001641602852419778 -0.26228173184190573 1.0 19095 -239556 Cacna1i calcium channel, voltage-dependent, alpha 1I subunit Novel U 0.00016415959503668842 -0.26228173899102947 1.0 19096 -191578 Helq helicase, POLQ-like Novel N 0.00016404343964476601 -0.26228294212476055 1.0 19097 -382075 Cimap1c ciliary microtubule associated protein 1C Novel U 0.00016403654424134839 -0.26228301354712247 1.0 19098 -56746 Tex101 testis expressed gene 101 Novel U 0.00016382489678779606 -0.26228520578448883 1.0 19099 -107585 Dio3 deiodinase, iodothyronine type III Novel N 0.0001637335060336612 -0.2622861524069159 1.0 19100 -68988 Prpf31 pre-mRNA processing factor 31 Novel N 0.00016371757411069707 -0.2622863174292502 1.0 19101 -627081 Xlr5b X-linked lymphocyte-regulated 5B Novel U 0.00016364699187949183 -0.26228704851768075 1.0 19102 -66576 Uqcrh ubiquinol-cytochrome c reductase hinge protein Novel U 0.00016353567704776464 -0.2622882015130485 1.0 19103 -13370 Dio1 deiodinase, iodothyronine, type I Novel N 0.0001635264998944103 -0.26228829656970126 1.0 19104 -381667 Lrcol1 leucine rich colipase-like 1 Novel U 0.0001634777415195013 -0.26228880160734575 1.0 19105 -94218 Cnnm3 cyclin M3 Novel U 0.0001634658108328441 -0.26228892518500596 1.0 19106 -13798 En1 engrailed 1 Novel U 0.0001634599334270519 -0.2622889860629819 1.0 19107 -225280 Ino80c INO80 complex subunit C Novel N 0.0001634434246815005 -0.26228915706002565 1.0 19108 -30956 Aass aminoadipate-semialdehyde synthase Novel U 0.00016343562934997003 -0.26228923780381336 1.0 19109 -66780 4933436I01Rik RIKEN cDNA 4933436I01 gene Novel U 0.00016335327726021975 -0.26229009080405186 1.0 19110 -320040 Rnf222 ring finger protein 222 Novel U 0.00016329631812838255 -0.262290680784867 1.0 19111 -194738 Rhox11 reproductive homeobox 11 Novel U 0.00016323645641510364 -0.26229130083052526 1.0 19112 -226040 Tmem252 transmembrane protein 252 Novel U 0.00016309779507741608 -0.2622927370801028 1.0 19113 -269378 Ahcy S-adenosylhomocysteine hydrolase Novel U 0.0001630966607108772 -0.2622927488298341 1.0 19114 -69748 Aldh16a1 aldehyde dehydrogenase 16 family, member A1 Novel U 0.00016294244123804934 -0.262294346230064 1.0 19115 -545667 Shisal2a shisa like 2A Novel U 0.00016291493833711898 -0.2622946311042077 1.0 19116 -242126 Slc22a15 solute carrier family 22 (organic anion/cation transporter), member 15 Novel U 0.00016291123861113753 -0.2622946694258478 1.0 19117 -22776 Zim1 zinc finger, imprinted 1 Novel U 0.00016278387794033575 -0.2622959886234892 1.0 19118 -66991 Khdc3 KH domain containing 3, subcortical maternal complex member Novel U 0.00016265583988078034 -0.262297314837501 1.0 19119 -219149 Xkr6 X-linked Kx blood group related 6 Novel U 0.00016258333523661586 -0.26229806583822185 1.0 19120 -74121 Acoxl acyl-Coenzyme A oxidase-like Novel U 0.00016256596638188718 -0.26229824574424815 1.0 19121 -15468 Prmt2 protein arginine N-methyltransferase 2 Novel U 0.0001625479848092914 -0.262298431996786 1.0 19122 -14885 Gtf2h4 general transcription factor II H, polypeptide 4 Novel N 0.00016252390924041953 -0.2622986813707369 1.0 19123 -65102 Nif3l1 Ngg1 interacting factor 3-like 1 (S. pombe) Novel N 0.00016252282658005192 -0.2622986925848974 1.0 19124 -71726 Smug1 single-strand selective monofunctional uracil DNA glycosylase Novel N 0.0001625148743615722 -0.262298774953715 1.0 19125 -70989 Jhy junctional cadherin complex regulator Novel U 0.0001623730987354756 -0.2623002434609895 1.0 19126 -360214 Defb39 defensin beta 39 Novel U 0.00016218126554348438 -0.262302230462886 1.0 19127 -235028 Zfp426 zinc finger protein 426 Novel U 0.00016211268161443176 -0.2623029408529685 1.0 19128 -195333 Gsc2 goosecoid homebox 2 Novel N 0.00016210188905882572 -0.26230305264190473 1.0 19129 -13999 Gm14288 predicted gene 14288 Novel U 0.00016206904565046036 -0.26230339283284887 1.0 19130 -78609 Cstdc1 cystatin domain containing 1 Novel U 0.00016205623729003503 -0.2623035255014251 1.0 19131 -69384 Tmem89 transmembrane protein 89 Novel U 0.00016205477242149766 -0.2623035406744853 1.0 19132 -71670 Acy3 aminoacylase 3 Novel U 0.0001619186589590345 -0.262304950533255 1.0 19133 -619991 Gm6121 predicted gene 6121 Novel U 0.00016180857124098482 -0.2623060908182196 1.0 19134 -69663 Ddx51 DEAD box helicase 51 Novel U 0.00016172792441281988 -0.26230692615541457 1.0 19135 -623046 Fscb fibrous sheath CABYR binding protein Novel U 0.0001617016332102141 -0.26230719847882694 1.0 19136 -246221 Mpst mercaptopyruvate sulfurtransferase Novel N 0.00016168771722235194 -0.26230734262017175 1.0 19137 -67862 2310033P09Rik RIKEN cDNA 2310033P09 gene Novel U 0.00016168125098339598 -0.26230740959726223 1.0 19138 -223809 Smgc submandibular gland protein C Novel U 0.00016159966192041928 -0.26230825469409447 1.0 19139 -12396 Cbfa2t2 CBFA2/RUNX1 translocation partner 2 Novel U 0.00016147540612259783 -0.2623095417315636 1.0 19140 -140918 Slc7a12 solute carrier family 7 (cationic amino acid transporter, y+ system), member 12 Novel U 0.00016145749541954173 -0.2623097272500371 1.0 19141 -23831 Car14 carbonic anhydrase 14 Novel U 0.00016135365340879594 -0.2623108028421708 1.0 19142 -14238 Foxf2 forkhead box F2 Novel U 0.00016123396212700366 -0.262312042600533 1.0 19143 -20445 St6galnac1 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 1 Novel N 0.0001612174326472258 -0.2623122138123411 1.0 19144 -230234 Abitram actin binding transcription modulator Novel U 0.00016114041056286375 -0.262313011604559 1.0 19145 -171210 Acot2 acyl-CoA thioesterase 2 Novel U 0.0001610779613166759 -0.2623136584517981 1.0 19146 -56856 Insm2 insulinoma-associated 2 Novel U 0.00016107499038846081 -0.2623136892245749 1.0 19147 -216453 Rdh19 retinol dehydrogenase 19 Novel U 0.00016106815746323806 -0.26231375999978973 1.0 19148 -101055983 Gm14569 predicted gene 14569 Novel U 0.00016100805398553764 -0.2623143825496359 1.0 19149 -212390 Klhl32 kelch-like 32 Novel U 0.00016086506823043725 -0.26231586359138687 1.0 19150 -329659 E130311K13Rik RIKEN cDNA E130311K13 gene Novel U 0.00016074735222846372 -0.2623170828898656 1.0 19151 -243537 Uroc1 urocanase domain containing 1 Novel N 0.0001607073771088077 -0.2623174969508409 1.0 19152 -67037 Pmf1 polyamine-modulated factor 1 Novel U 0.0001606701118843514 -0.2623178829428108 1.0 19153 -218506 Mrps27 mitochondrial ribosomal protein S27 Novel N 0.00016059988371288497 -0.2623186103639022 1.0 19154 -215476 Prr14l proline rich 14-like Novel U 0.00016053772795535136 -0.26231925417119545 1.0 19155 -12457 Noct nocturnin Novel N 0.00016052507704052423 -0.26231938520895537 1.0 19156 -73016 Kremen2 kringle containing transmembrane protein 2 Novel U 0.00016052164313752756 -0.2623194207772097 1.0 19157 -66396 Ccdc82 coiled-coil domain containing 82 Novel U 0.00016048094573645772 -0.26231984231955213 1.0 19158 -116852 Akr1c20 aldo-keto reductase family 1, member C20 Novel U 0.00016039965980480992 -0.26232068427656 1.0 19159 -22404 Wiz widely-interspaced zinc finger motifs Novel U 0.00016037716981476009 -0.26232091722713763 1.0 19160 -74558 Gvin1 GTPase, very large interferon inducible 1 Novel U 0.00016034426171457133 -0.2623212580881576 1.0 19161 -72139 Zfp1006 zinc finger protein 1006 Novel U 0.00016024250236897072 -0.2623223121081142 1.0 19162 -545758 Slc10a4-ps solute carrier family 10 (sodium/bile acid cotransporter family), pseudogene Novel U 0.00016020805392073616 -0.2623226689240086 1.0 19163 -668106 Gm8978 predicted gene 8978 Novel U 0.00016019331338506043 -0.2623228216059925 1.0 19164 -75828 Hormad2 HORMA domain containing 2 Novel U 0.00016018726261425234 -0.26232288427967765 1.0 19165 -243937 Zfp536 zinc finger protein 536 Novel N 0.000160151732585121 -0.2623232522985514 1.0 19166 -104348 Zfp120 zinc finger protein 120 Novel U 0.00016014822978761237 -0.26232328858041287 1.0 19167 -15423 Hoxc4 homeobox C4 Novel N 0.00016014543877065806 -0.2623233174896747 1.0 19168 -75812 Tasp1 taspase, threonine aspartase 1 Novel U 0.00016006138600035925 -0.26232418810550634 1.0 19169 -628813 Gm11437 predicted gene 11437 Novel U 0.0001598176456831616 -0.2623267127596994 1.0 19170 -237558 Myrfl myelin regulatory factor-like Novel U 0.00015977413448493106 -0.2623271634472603 1.0 19171 -212127 Proser1 proline and serine rich 1 Novel U 0.0001597512672831683 -0.2623274003049844 1.0 19172 -11497 Adam3 ADAM metallopeptidase domain 3 Novel U 0.00015962261181940717 -0.2623287329140488 1.0 19173 -320209 Ddx11 DEAD/H box helicase 11 Novel U 0.00015949003767984804 -0.2623301061126282 1.0 19174 -18630 Dcaf8l DDB1 and CUL4 associated factor 8 like Novel U 0.00015925598247618991 -0.2623325304487335 1.0 19175 -380701 Slc47a2 solute carrier family 47, member 2 Novel U 0.00015918154591040585 -0.2623333014602349 1.0 19176 -80744 Cwc22 CWC22 spliceosome-associated protein Novel U 0.00015913139152725343 -0.26233382095768687 1.0 19177 -73667 2410004P03Rik RIKEN cDNA 2410004P03 gene Novel U 0.00015910964883991896 -0.26233404616772754 1.0 19178 -233537 Gdpd4 glycerophosphodiester phosphodiesterase domain containing 4 Novel U 0.00015910224641077215 -0.2623341228418453 1.0 19179 -20447 St6galnac3 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 3 Novel U 0.00015908378488703882 -0.26233431406570124 1.0 19180 -68214 Gsto2 glutathione S-transferase omega 2 Novel N 0.00015905941787754742 -0.26233456645838454 1.0 19181 -18416 Otc ornithine transcarbamylase Novel U 0.00015905590353911146 -0.26233460285978655 1.0 19182 -20019 Polr1a polymerase (RNA) I polypeptide A Novel U 0.0001588735897079754 -0.2623364912604562 1.0 19183 -242523 Dmrta1 doublesex and mab-3 related transcription factor like family A1 Novel U 0.0001588664496042455 -0.2623365652174159 1.0 19184 -73481 Prss59 serine protease 59 Novel U 0.00015885343567939654 -0.2623367000152217 1.0 19185 -227867 Epc2 enhancer of polycomb homolog 2 Novel N 0.00015852835689963662 -0.26234006717053604 1.0 19186 -24059 Slco2a1 solute carrier organic anion transporter family, member 2a1 Novel U 0.00015852469566538438 -0.2623401050934801 1.0 19187 -50757 Fbxw14 F-box and WD-40 domain protein 14 Novel U 0.00015846590879514295 -0.2623407140059495 1.0 19188 -100861839 Gm21258 predicted gene, 21258 Novel U 0.00015845492001320398 -0.2623408278273916 1.0 19189 -108168551 Gm21488 predicted gene, 21488 Novel U 0.00015842610554956676 -0.26234112628665873 1.0 19190 -399603 Lratd2 LRAT domain containing 1 Novel U 0.0001580814900953427 -0.26234469580220493 1.0 19191 -233826 Palb2 partner and localizer of BRCA2 Novel U 0.00015802793219713061 -0.26234525055315405 1.0 19192 -21785 Tff2 trefoil factor 2 (spasmolytic protein 1) Novel U 0.00015794683849207288 -0.2623460905190852 1.0 19193 -382073 Cenatac centrosomal AT-AC splicing factor Novel U 0.000157423847267474 -0.26235150764499715 1.0 19194 -17117 Amacr alpha-methylacyl-CoA racemase Novel N 0.00015735670533246804 -0.2623522030989528 1.0 19195 -72236 Tsnaxip1 translin-associated factor X (Tsnax) interacting protein 1 Novel U 0.00015732368067272634 -0.2623525451672928 1.0 19196 -19691 Recql RecQ protein-like Novel U 0.00015730675521921837 -0.2623527204805838 1.0 19197 -620292 Cntnap5c contactin associated protein-like 5C Novel U 0.00015729889176028343 -0.26235280193003296 1.0 19198 -20449 St8sia1 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 1 Novel N 0.00015723150562022987 -0.26235349991345647 1.0 19199 -67689 Aldh3b1 aldehyde dehydrogenase 3 family, member B1 Novel N 0.00015718674863842404 -0.26235396350480267 1.0 19200 -66284 Gkn2 gastrokine 2 Novel U 0.00015709309050721513 -0.2623549336126469 1.0 19201 -76788 Klhdc10 kelch domain containing 10 Novel U 0.0001570469364528555 -0.26235541167482473 1.0 19202 -239852 Zpld1 zona pellucida like domain containing 1 Novel U 0.0001569483571946297 -0.2623564327555408 1.0 19203 -240690 St18 suppression of tumorigenicity 18 Novel U 0.0001569179152768286 -0.26235674807192466 1.0 19204 -28248 Slco1a1 solute carrier organic anion transporter family, member 1a1 Novel U 0.00015691023471152885 -0.26235682762696755 1.0 19205 -26877 B3galt1 UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 1 Novel N 0.00015678673959611128 -0.26235810678531335 1.0 19206 -236852 Magea10 MAGE family member A10 Novel U 0.00015675215521853742 -0.2623584650091594 1.0 19207 -75328 Fam243 family with sequence similarity 243 Novel U 0.00015666197780026236 -0.26235939906389344 1.0 19208 -56386 B4galt6 UDP-Gal:betaGlcNAc beta 1,4-galactosyltransferase, polypeptide 6 Novel N 0.00015663047435701108 -0.26235972537552305 1.0 19209 -214779 Zfp879 zinc finger protein 879 Novel U 0.00015661819905850286 -0.2623598525226614 1.0 19210 -193742 Abhd16a abhydrolase domain containing 16A Novel N 0.00015657694866543615 -0.2623602797928768 1.0 19211 -235497 Leo1 Leo1, Paf1/RNA polymerase II complex component Novel N 0.00015651372659823766 -0.2623609346449705 1.0 19212 -18567 Pdcd2 programmed cell death 2 Novel N 0.00015649766587933164 -0.262361101001369 1.0 19213 -234595 Slc38a7 solute carrier family 38, member 7 Novel N 0.00015636687506133867 -0.26236245572836225 1.0 19214 -22619 Siae sialic acid acetylesterase Novel N 0.00015624482716893276 -0.26236371989641966 1.0 19215 -69469 Tmco2 transmembrane and coiled-coil domains 2 Novel U 0.0001561568966920069 -0.2623646306774091 1.0 19216 -228852 Ppp1r16b protein phosphatase 1, regulatory subunit 16B Novel U 0.0001561453419599824 -0.2623647503609436 1.0 19217 -67092 Gatm glycine amidinotransferase (L-arginine:glycine amidinotransferase) Novel N 0.00015613449511601922 -0.2623648627121968 1.0 19218 -434784 Ldoc1 regulator of NFKB signaling Novel U 0.00015604244904490522 -0.26236581612237553 1.0 19219 -83560 Tex14 testis expressed gene 14 intercellular bridge forming factor Novel N 0.00015602045459912228 -0.2623660439401219 1.0 19220 -68472 Tmem126b transmembrane protein 126B Novel U 0.00015599044327234909 -0.2623663547964581 1.0 19221 -69305 Dcps decapping enzyme, scavenger Novel U 0.0001559215264877808 -0.26236706863424714 1.0 19222 -72107 Dscc1 DNA replication and sister chromatid cohesion 1 Novel U 0.00015587824117864636 -0.26236751698205624 1.0 19223 -21366 Slc6a6 solute carrier family 6 (neurotransmitter transporter, taurine), member 6 Novel U 0.0001557760542341426 -0.2623685754310682 1.0 19224 -329977 Fhad1 forkhead-associated phosphopeptide binding domain 1 Novel U 0.0001557718269828245 -0.2623686192167983 1.0 19225 -72544 Exosc6 exosome component 6 Novel N 0.00015558514114397584 -0.26237055290258016 1.0 19226 -77432 9530002B09Rik RIKEN cDNA 9530002B09 gene Novel U 0.00015533417577920293 -0.26237315239357845 1.0 19227 -319953 Ttll1 tubulin tyrosine ligase-like 1 Novel N 0.0001552918567818645 -0.2623735907323617 1.0 19228 -107528 Magee1 MAGE family member E1 Novel U 0.00015513254968906374 -0.26237524082999203 1.0 19229 -230890 Aadacl4fm4 AADACL4 family member 4 Novel U 0.0001551261880045161 -0.2623753067241114 1.0 19230 -58198 Sall1 spalt like transcription factor 1 Novel U 0.00015501805750390042 -0.2623764267362822 1.0 19231 -228875 Slc35c2 solute carrier family 35, member C2 Novel U 0.00015497682847367885 -0.2623768537852219 1.0 19232 -68396 Nat8 N-acetyltransferase 8 (GCN5-related) Novel U 0.00015497640803503396 -0.2623768581401116 1.0 19233 -75667 Tmem225 transmembrane protein 225 Novel U 0.00015494372249588977 -0.2623771966958515 1.0 19234 -240726 Slco5a1 solute carrier organic anion transporter family, member 5A1 Novel U 0.00015476419485198058 -0.2623790562372855 1.0 19235 -668929 Rad21l RAD21-like (S. pombe) Novel U 0.00015470951731476245 -0.2623796225854186 1.0 19236 -63993 Slc5a7 solute carrier family 5 (choline transporter), member 7 Novel U 0.0001546636312799353 -0.2623800978714589 1.0 19237 -338403 Cndp1 carnosine dipeptidase 1 Novel N 0.00015464554691607666 -0.26238028518870526 1.0 19238 -104360 Isl2 insulin related protein 2 (islet 2) Novel N 0.0001546299849757136 -0.262380446378772 1.0 19239 -320522 Bhlha9 basic helix-loop-helix family, member a9 Novel U 0.00015461034333922328 -0.262380649826197 1.0 19240 -17145 Mageb1 MAGE family member B1 Novel U 0.0001544960598390692 -0.2623818335709348 1.0 19241 -11643 Akap4 A kinase anchor protein 4 Novel N 0.00015448317769544654 -0.26238196700375493 1.0 19242 -192136 Sugct succinyl-CoA glutarate-CoA transferase Novel U 0.00015447872248553846 -0.2623820131506727 1.0 19243 -69870 Polr3gl polymerase (RNA) III (DNA directed) polypeptide G like Novel U 0.00015430519803882997 -0.2623838105111874 1.0 19244 -329942 Csmd2 CUB and Sushi multiple domains 2 Novel U 0.0001542671973672324 -0.2623842041208946 1.0 19245 -75276 Ppp1r1c protein phosphatase 1, regulatory inhibitor subunit 1C Novel U 0.000154206606875887 -0.26238483171521215 1.0 19246 -68344 Tmem174 transmembrane protein 174 Novel U 0.00015417988054795066 -0.26238510854563835 1.0 19247 -66117 Fmc1 formation of mitochondrial complex V assembly factor 1 Novel N 0.00015417078815336806 -0.26238520272436255 1.0 19248 -77337 Akr1c21 aldo-keto reductase family 1, member C21 Novel U 0.00015396464863717455 -0.2623873379106948 1.0 19249 -23925 Kel Kell blood group Novel N 0.00015382381442304098 -0.2623887966668551 1.0 19250 -98256 Kmo kynurenine 3-monooxygenase Novel N 0.0001537475425322502 -0.26238958668859264 1.0 19251 -102294 Cyp4v3 cytochrome P450, family 4, subfamily v, polypeptide 3 Novel U 0.0001537444795559573 -0.26238961841480035 1.0 19252 -384452 Noto notochord homeobox Novel U 0.00015373261970779423 -0.2623897412587178 1.0 19253 -56409 Nudt3 nudix hydrolase 3 Novel N 0.00015362514923673496 -0.2623908544343241 1.0 19254 -15399 Hoxa2 homeobox A2 Novel U 0.00015353890940241646 -0.262391747703693 1.0 19255 -77809 Lrrc42 leucine rich repeat containing 42 Novel U 0.00015339592410119093 -0.26239322874074267 1.0 19256 -56306 Sinhcaf SIN3-HDAC complex associated factor Novel N 0.00015328011714347702 -0.26239442826540377 1.0 19257 -19662 Rbp4 retinol binding protein 4, plasma Novel U 0.00015309075781341715 -0.2623963896431197 1.0 19258 -110417 Pigh phosphatidylinositol glycan anchor biosynthesis, class H Novel U 0.00015304053060777258 -0.2623969098948646 1.0 19259 -239083 Ccnb1ip1 cyclin B1 interacting protein 1 Novel U 0.000153036852472593 -0.2623969479928679 1.0 19260 -233875 Ino80e INO80 complex subunit E Novel N 0.0001529399626939903 -0.2623979515740095 1.0 19261 -74271 Mageb5 MAGE family member B5 Novel U 0.0001529355164524047 -0.26239799762803373 1.0 19262 -218832 Polr3a polymerase (RNA) III (DNA directed) polypeptide A Novel U 0.00015288905896972826 -0.2623984788331121 1.0 19263 -13110 Cyp2j6 cytochrome P450, family 2, subfamily j, polypeptide 6 Novel U 0.00015277371452616066 -0.2623996735670668 1.0 19264 -114602 Zmynd10 zinc finger, MYND domain containing 10 Novel N 0.0001527412760408418 -0.2624000095638314 1.0 19265 -18998 Pou4f3 POU domain, class 4, transcription factor 3 Novel N 0.00015251090557957074 -0.2624023957334962 1.0 19266 -237761 Sowaha sosondowah ankyrin repeat domain family member A Novel U 0.0001524930977679812 -0.26240258018622326 1.0 19267 -217216 Hrob homologous recombination factor with OB-fold Novel N 0.00015248946433958678 -0.26240261782115515 1.0 19268 -50795 Sh3bgr SH3-binding domain glutamic acid-rich protein Novel U 0.0001524202474358044 -0.2624033347675691 1.0 19269 -245511 Ppp4r3c1 protein phosphatase 4 regulatory subunit 3C1 Novel U 0.00015236382178992412 -0.2624039192225543 1.0 19270 -73451 Zfp763 zinc finger protein 763 Novel U 0.0001522331146820762 -0.26240527308248063 1.0 19271 -66885 Acadsb acyl-Coenzyme A dehydrogenase, short/branched chain Novel N 0.00015217096626843368 -0.26240591681370606 1.0 19272 -75459 Syce3 synaptonemal complex central element protein 3 Novel U 0.0001521512440407702 -0.2624061210958919 1.0 19273 -231413 Grsf1 G-rich RNA sequence binding factor 1 Novel N 0.00015214970099936142 -0.2624061370786641 1.0 19274 -70873 Cnbd2 cyclic nucleotide binding domain containing 2 Novel U 0.0001517661975498689 -0.26241010939478693 1.0 19275 -639634 Aadacl2 arylacetamide deacetylase like 2 Novel U 0.00015160774552129541 -0.26241175063569006 1.0 19276 -67741 4930579F01Rik RIKEN cDNA 4930579F01 gene Novel U 0.0001515606090470217 -0.26241223887374104 1.0 19277 -218030 Pou6f2 POU domain, class 6, transcription factor 2 Novel U 0.00015151556182543526 -0.2624127054713814 1.0 19278 -384214 Ephx4 epoxide hydrolase 4 Novel U 0.00015150009594241867 -0.26241286566648925 1.0 19279 -70950 Ccdc178 coiled coil domain containing 178 Novel U 0.0001513221256710346 -0.26241470907670983 1.0 19280 -320116 Fndc9 fibronectin type III domain containing 9 Novel U 0.00015126457791339034 -0.26241530515449174 1.0 19281 -98314 D2hgdh D-2-hydroxyglutarate dehydrogenase Novel U 0.00015114765830167226 -0.26241651620398637 1.0 19282 -242669 Azin2 antizyme inhibitor 2 Novel U 0.0001510953735754495 -0.2624170577674618 1.0 19283 -66614 Gpatch4 G patch domain containing 4 Novel U 0.00015102006456463904 -0.26241783781572015 1.0 19284 -68002 Sdhaf4 succinate dehydrogenase complex assembly factor 4 Novel N 0.0001508259388423418 -0.26241984856357015 1.0 19285 -97827 Exd2 exonuclease 3'-5' domain containing 2 Novel N 0.00015080838850116448 -0.2624200303494271 1.0 19286 -56380 Arid3b AT-rich interaction domain 3B Novel U 0.0001508051060404108 -0.26242006434904774 1.0 19287 -544710 Krtap10-10 keratin associated protein 10-10 Novel U 0.00015078990650748585 -0.2624202217853101 1.0 19288 -211305 Fbxw13 F-box and WD-40 domain protein 13 Novel U 0.00015068728462060347 -0.2624212847394409 1.0 19289 -67288 Srek1ip1 splicing regulatory glutamine/lysine-rich protein 1interacting protein 1 Novel U 0.0001506361884908081 -0.26242181399147363 1.0 19290 -71807 Tars2 threonyl-tRNA synthetase 2, mitochondrial (putative) Novel N 0.0001506095515914746 -0.2624220898956013 1.0 19291 -72041 Alkbh4 alkB homolog 4, lysine demethylase Novel U 0.0001506025401762818 -0.26242216251960937 1.0 19292 -226143 Cyp2c23 cytochrome P450, family 2, subfamily c, polypeptide 23 Novel U 0.0001505190855596493 -0.26242302693978503 1.0 19293 -17752 Mt4 metallothionein 4 Novel U 0.00015045968360426158 -0.2624236422232862 1.0 19294 -629147 Ctxn3 cortexin 3 Novel U 0.00015008960634004038 -0.26242747547142337 1.0 19295 -194856 Rhox4e reproductive homeobox 4E Novel U 0.0001499824867265906 -0.2624285850128581 1.0 19296 -68880 Fam240b family with sequence similarity 240 member B Novel U 0.00014997645759329492 -0.26242864746242256 1.0 19297 -414069 Actmap actin maturation protease Novel N 0.00014982286204562453 -0.2624302384000562 1.0 19298 -70952 Poteg POTE ankyrin domain family, member G Novel U 0.00014975384884690805 -0.2624309532364998 1.0 19299 -245020 Slc35g2 solute carrier family 35, member G2 Novel U 0.0001497096118689612 -0.26243141144166315 1.0 19300 -69113 Alkbh3 alkB homolog 3, alpha-ketoglutarate-dependent dioxygenase Novel N 0.0001496639376278914 -0.2624318845339507 1.0 19301 -66658 Ccdc51 coiled-coil domain containing 51 Novel U 0.00014964250166446134 -0.2624321065669552 1.0 19302 -211896 Depdc7 DEP domain containing 7 Novel U 0.000149579909300443 -0.2624327548966041 1.0 19303 -72479 Hsdl2 hydroxysteroid dehydrogenase like 2 Novel U 0.0001494556997896953 -0.2624340414546333 1.0 19304 -110958 M1ap meiosis 1 associated protein Novel N 0.00014941285608168517 -0.26243448522835244 1.0 19305 -231044 Gbx1 gastrulation brain homeobox 1 Novel U 0.0001494011280355824 -0.2624346067070684 1.0 19306 -195531 Zfp982 zinc finger protein 982 Novel U 0.00014934154970356887 -0.2624352238174729 1.0 19307 -18778 Pla2g1b phospholipase A2, group IB, pancreas Novel U 0.00014922775767256893 -0.2624364024715893 1.0 19308 -66845 Mrpl33 mitochondrial ribosomal protein L33 Novel U 0.00014920072430659484 -0.26243668248230534 1.0 19309 -70163 Lypd8 LY6/PLAUR domain containing 8 Novel U 0.0001491751934353748 -0.2624369469302302 1.0 19310 -76606 Llcfc1 LLLL and CFNLAS motif containing 1 Novel U 0.0001491748055761606 -0.2624369509476632 1.0 19311 -100503361 Tmem95 transmembrane protein 95 Novel U 0.00014914990344316203 -0.26243720888313815 1.0 19312 -208164 Fam180a family with sequence similarity 180, member A Novel U 0.00014911315260091512 -0.262437589547154 1.0 19313 -22024 Crisp2 cysteine-rich secretory protein 2 Novel U 0.00014910676409561765 -0.2624376557190819 1.0 19314 -73748 Gadl1 glutamate decarboxylase-like 1 Novel U 0.00014906923356486948 -0.26243804445908564 1.0 19315 -216867 Slc16a11 solute carrier family 16 (monocarboxylic acid transporters), member 11 Novel U 0.00014895685835673107 -0.2624392084377974 1.0 19316 -544792 Gsg1l2 GSG1-like 2 Novel U 0.00014890637449953194 -0.2624397313479307 1.0 19317 -18503 Pax1 paired box 1 Novel U 0.00014885562969603328 -0.26244025696093715 1.0 19318 -230379 Acer2 alkaline ceramidase 2 Novel U 0.0001488079600780081 -0.26244075072127365 1.0 19319 -209743 Minar1 membrane integral NOTCH2 associated receptor 1 Novel U 0.00014876364603411032 -0.2624412097246836 1.0 19320 -108168509 Gm20835 predicted gene, 20835 Novel U 0.00014872473119229216 -0.2624416128033359 1.0 19321 -53422 Ybx2 Y box protein 2 Novel N 0.0001486771109038305 -0.26244210605271834 1.0 19322 -209550 Rad51ap2 RAD51 associated protein 2 Novel U 0.00014866549958537535 -0.2624422263223732 1.0 19323 -67760 Slc38a2 solute carrier family 38, member 2 Novel N 0.00014862917072844706 -0.262442602615479 1.0 19324 -21340 Taf1b TATA-box binding protein associated factor, RNA polymerase I, B Novel N 0.00014860854534808938 -0.2624428162524907 1.0 19325 -67219 Med18 mediator complex subunit 18 Novel U 0.00014858219345437748 -0.2624430892045395 1.0 19326 -69020 Zfp707 zinc finger protein 707 Novel U 0.00014857565152400534 -0.26244315696563925 1.0 19327 -74183 Perm1 PPARGC1 and ESRR induced regulator, muscle 1 Novel U 0.00014843030792579477 -0.26244466242985165 1.0 19328 -69232 Qrich1 glutamine-rich 1 Novel U 0.00014824288554872464 -0.26244660374467216 1.0 19329 -93889 Pcdhb18 protocadherin beta 18 Novel U 0.00014818439869381477 -0.26244720954959266 1.0 19330 -29859 Sult4a1 sulfotransferase family 4A, member 1 Novel U 0.0001480717777381941 -0.26244837607374877 1.0 19331 -14912 Nkx6-2 NK6 homeobox 2 Novel N 0.00014788622757760895 -0.26245029799621244 1.0 19332 -433956 Dnaaf5 dynein, axonemal assembly factor 5 Novel N 0.0001478403467216953 -0.2624507732286097 1.0 19333 -194952 Jmjd4 jumonji domain containing 4 Novel U 0.0001477920901369428 -0.26245127306872823 1.0 19334 -21384 Tbx15 T-box 15 Novel U 0.00014766478134529276 -0.26245259172900715 1.0 19335 -67935 Ces5a carboxylesterase 5A Novel U 0.00014766195367972294 -0.26245262101787414 1.0 19336 -109593 Lmo3 LIM domain only 3 Novel U 0.0001476093273784518 -0.26245316611937275 1.0 19337 -209448 Hoxc10 homeobox C10 Novel N 0.00014758196581949112 -0.26245344952950095 1.0 19338 -70810 Krt25 keratin 25 Novel N 0.00014752119787201786 -0.26245407896190326 1.0 19339 -353371 Oxct2b 3-oxoacid CoA transferase 2B Novel U 0.00014741579140433624 -0.26245517075863045 1.0 19340 -228003 Klhl41 kelch-like 41 Novel U 0.0001473243861277372 -0.2624561175314807 1.0 19341 -668963 Btbd35f20 BTB domain containing 35, family member 20 Novel U 0.00014730531651735085 -0.2624563150538782 1.0 19342 -66387 Nudt8 nudix hydrolase 8 Novel U 0.00014706968670248925 -0.2624587556997546 1.0 19343 -105377 Slf1 SMC5-SMC6 complex localization factor 1 Novel U 0.00014705718984887542 -0.26245888514175353 1.0 19344 -20524 Slc25a17 solute carrier family 25 (mitochondrial carrier, peroxisomal membrane protein), member 17 Novel N 0.00014697016609321414 -0.2624597865309539 1.0 19345 -76389 Ankrd36 ankyrin repeat domain 36 Novel U 0.00014696953798395477 -0.26245979303688893 1.0 19346 -78257 Lrrc9 leucine rich repeat containing 9 Novel U 0.000146932706727007 -0.2624601745338377 1.0 19347 -22715 Zfp57 zinc finger protein 57 Novel U 0.00014684963344594856 -0.26246103500415197 1.0 19348 -54194 Akap8l A kinase anchor protein 8-like Novel U 0.00014667095163630904 -0.26246288578446236 1.0 19349 -11409 Acads acyl-Coenzyme A dehydrogenase, short chain Novel N 0.00014654629841337932 -0.26246417693844776 1.0 19350 -56219 Extl1 exostosin-like glycosyltransferase 1 Novel N 0.00014630742214651166 -0.26246665121096735 1.0 19351 -100041351 Krtap10-24 keratin associated protein 10-24 Novel U 0.00014619491044260406 -0.26246781660349777 1.0 19352 -22787 Zp2 zona pellucida glycoprotein 2 Novel N 0.00014610980961836688 -0.2624686980750377 1.0 19353 -75538 Garin5a golgi associated RAB2 interactor 5A Novel U 0.00014604211723295968 -0.26246939923054047 1.0 19354 -108168548 Gm20897 predicted gene, 20897 Novel U 0.00014600124163953644 -0.2624698226185934 1.0 19355 -214932 Hdhd5 haloacid dehalogenase like hydrolase domain containing 5 Novel U 0.00014599873878937635 -0.2624698485430331 1.0 19356 -100038417 Spink13 serine peptidase inhibitor, Kazal type 13 Novel U 0.00014598177539244065 -0.2624700242493409 1.0 19357 -72082 Cyp2c55 cytochrome P450, family 2, subfamily c, polypeptide 55 Novel N 0.00014586754713876509 -0.26247120742183744 1.0 19358 -15208 Hes5 hes family bHLH transcription factor 5 Novel N 0.00014582951572446578 -0.26247160134997655 1.0 19359 -68636 Fahd1 fumarylacetoacetate hydrolase domain containing 1 Novel U 0.00014550583340866671 -0.2624749540407631 1.0 19360 -654795 Sdr39u1 short chain dehydrogenase/reductase family 39U, member 1 Novel U 0.0001454953573135961 -0.26247506255181147 1.0 19361 -208098 Panx3 pannexin 3 Novel U 0.0001454490408309817 -0.2624755422964158 1.0 19362 -100040911 Gm20854 predicted gene, 20854 Novel U 0.00014539634322959514 -0.26247608813643863 1.0 19363 -71227 Daw1 dynein assembly factor with WDR repeat domains 1 Novel N 0.00014538417114620604 -0.26247621421447825 1.0 19364 -51813 Ccnc cyclin C Novel U 0.00014534030900935263 -0.2624766685370499 1.0 19365 -75563 Dnali1 dynein, axonemal, light intermediate polypeptide 1 Novel N 0.00014528253301020595 -0.26247726697894974 1.0 19366 -73072 Prr36 proline rich 36 Novel U 0.00014509669779123324 -0.2624791918540389 1.0 19367 -11655 Alas1 aminolevulinic acid synthase 1 Novel U 0.0001450012030514196 -0.26248018098541465 1.0 19368 -103268 Cep57l1 centrosomal protein 57-like 1 Novel U 0.0001449945082013787 -0.2624802503304513 1.0 19369 -12733 Clcnka chloride channel, voltage-sensitive Ka Novel U 0.00014489403357665284 -0.2624812910433113 1.0 19370 -19360 Rad50 RAD50 double strand break repair protein Novel U 0.0001444210251364167 -0.2624861904491859 1.0 19371 -71967 Mageb16 MAGE family member B16 Novel U 0.0001444064495340618 -0.262486341422796 1.0 19372 -77032 Tstd3 thiosulfate sulfurtransferase (rhodanese)-like domain containing 3 Novel U 0.00014437142465766238 -0.2624867042093143 1.0 19373 -100039706 Gm2381 zinc finger protein 936 pseudogene Novel U 0.0001443536184723005 -0.262486888645197 1.0 19374 -232174 Cyp26b1 cytochrome P450, family 26, subfamily b, polypeptide 1 Novel U 0.00014433638877242482 -0.26248706710986186 1.0 19375 -319446 Dpep2 dipeptidase 2 Novel N 0.00014430489310295083 -0.26248739334097093 1.0 19376 -114679 Selenom selenoprotein M Novel U 0.00014426533709801796 -0.2624878030607697 1.0 19377 -18256 Oc90 otoconin 90 Novel U 0.0001442012625816279 -0.26248846674250415 1.0 19378 -69297 Lrrc46 leucine rich repeat containing 46 Novel U 0.00014404475669443898 -0.2624900878253388 1.0 19379 -15490 Hsd17b7 hydroxysteroid (17-beta) dehydrogenase 7 Novel N 0.00014382939880552893 -0.2624923184952726 1.0 19380 -66704 Rbm4b RNA binding motif protein 4B Novel U 0.00014367868311254329 -0.26249387960346604 1.0 19381 -58176 Rhbg Rhesus blood group-associated B glycoprotein Novel N 0.0001436028984308215 -0.262494664578708 1.0 19382 -74446 Slc9b1 solute carrier family 9, subfamily B (NHA1, cation proton antiporter 1), member 1 Novel N 0.00014344851767826756 -0.26249626364946793 1.0 19383 -100043915 Gm4724 predicted gene 4724 Novel U 0.00014341434191956806 -0.26249661764085314 1.0 19384 -223669 Zfp7 zinc finger protein 7 Novel U 0.00014339798029914337 -0.2624967871139796 1.0 19385 -20862 Stfa2 stefin A2 Novel U 0.00014333345937359373 -0.26249745541960545 1.0 19386 -58250 Chst11 carbohydrate sulfotransferase 11 Novel U 0.00014329883706942667 -0.26249781403629385 1.0 19387 -668357 Dmrtc1c2 DMRT-like family C1c2 Novel U 0.00014327913721473627 -0.26249801808674117 1.0 19388 -70977 Cabs1 calcium binding protein, spermatid specific 1 Novel U 0.00014321865764377572 -0.262498644532149 1.0 19389 -17692 Msl3 MSL complex subunit 3 Novel U 0.000143152269477763 -0.2624993321785902 1.0 19390 -76367 Trp53rkb transformation related protein 53 regulating kinase B Novel U 0.00014314018669914281 -0.2624994573316139 1.0 19391 -22701 Zfp41 zinc finger protein 41 Novel U 0.00014311666471340817 -0.2624997009715689 1.0 19392 -73332 Ccdc30 coiled-coil domain containing 30 Novel U 0.0001430350262094713 -0.262500546580509 1.0 19393 -240879 Ntmt2 N-terminal Xaa-Pro-Lys N-methyltransferase 2 Novel N 0.0001430045697845201 -0.2625008620471574 1.0 19394 -382118 Zkscan7 zinc finger with KRAB and SCAN domains 7 Novel U 0.0001429656887465944 -0.2625012647756701 1.0 19395 -330671 B4galnt4 beta-1,4-N-acetyl-galactosaminyl transferase 4 Novel U 0.0001428088086520989 -0.26250288973453173 1.0 19396 -14858 Gsta2 glutathione S-transferase, alpha 2 (Yc2) Novel U 0.00014280676963939902 -0.26250291085455824 1.0 19397 -107626 Asmt acetylserotonin O-methyltransferase Novel U 0.00014279127508388213 -0.2625030713466549 1.0 19398 -228368 Slc35c1 solute carrier family 35, member C1 Novel U 0.00014269448172524418 -0.26250407392908176 1.0 19399 -278203 Spaca5 sperm acrosome associated 5 Novel U 0.00014268736657250275 -0.2625041476276 1.0 19400 -22037 Trap1a tumor rejection antigen P1A Novel U 0.00014262439519221724 -0.2625047998830869 1.0 19401 -11881 Arsb arylsulfatase B Novel U 0.00014256147291240754 -0.2625054516299927 1.0 19402 -52477 Angel2 angel homolog 2 Novel N 0.00014253781391730636 -0.26250569668908624 1.0 19403 -69533 Krtap26-1 keratin associated protein 26-1 Novel U 0.00014249494402646513 -0.2625061407340063 1.0 19404 -240119 St6gal2 beta galactoside alpha 2,6 sialyltransferase 2 Novel N 0.00014248370176818978 -0.26250625718094794 1.0 19405 -231440 Parm1 prostate androgen-regulated mucin-like protein 1 Novel U 0.0001424708740681934 -0.2625063900498428 1.0 19406 -217733 Tmem63c transmembrane protein 63c Novel N 0.00014240799740352484 -0.2625070413242685 1.0 19407 -108037 Shmt2 serine hydroxymethyltransferase 2 (mitochondrial) Novel U 0.00014234779216481768 -0.26250766492815186 1.0 19408 -215210 Tmem120a transmembrane protein 120A Novel U 0.00014226823023154008 -0.2625084890280413 1.0 19409 -243535 BC048671 cDNA sequence BC048671 Novel U 0.0001421506056054862 -0.26250970738005125 1.0 19410 -66522 Pgpep1 pyroglutamyl-peptidase I Novel U 0.00014212356541252707 -0.2625099874614811 1.0 19411 -319170 H2ac22 H2A clustered histone 22 Novel U 0.00014208597295359347 -0.2625103768429349 1.0 19412 -69294 Cst13 cystatin 13 Novel U 0.0001419460119368646 -0.2625118265545452 1.0 19413 -98682 Mfsd6 major facilitator superfamily domain containing 6 Novel U 0.00014189860147781368 -0.2625123176305215 1.0 19414 -75965 Zdhhc20 zinc finger, DHHC domain containing 20 Novel U 0.00014179466406166765 -0.26251339421086123 1.0 19415 -20248 Serpinb3a serine (or cysteine) peptidase inhibitor, clade B (ovalbumin), member 3A Novel U 0.00014177250945636403 -0.2625136236875346 1.0 19416 -74453 Cfap53 cilia and flagella associated protein 53 Novel U 0.00014169173052953137 -0.2625144603930033 1.0 19417 -72315 Ccdc74a coiled-coil domain containing 74A Novel U 0.00014160872292793585 -0.26251532018301194 1.0 19418 -278174 Ssxb3 SSX member B3 Novel U 0.00014158871012409408 -0.26251552747497625 1.0 19419 -252974 Tspear thrombospondin type laminin G domain and EAR repeats Novel U 0.00014157666999955372 -0.26251565218619044 1.0 19420 -239706 Mettl22 methyltransferase 22, Kin17 lysine Novel N 0.00014143094062113231 -0.2625171616463015 1.0 19421 -230145 Galnt12 polypeptide N-acetylgalactosaminyltransferase 12 Novel N 0.00014128077624782812 -0.2625187170439438 1.0 19422 -100559 Ugt2b38 UDP glucuronosyltransferase 2 family, polypeptide B38 Novel U 0.00014097778064819632 -0.26252185546240436 1.0 19423 -22689 Zfp27 zinc finger protein 27 Novel U 0.0001408723009289724 -0.2625229480178686 1.0 19424 -171282 Acot4 acyl-CoA thioesterase 4 Novel N 0.00014075189444736583 -0.26252419518424697 1.0 19425 -329055 Lipo1 lipase, member O1 Novel U 0.00014053565453304973 -0.2625264349901709 1.0 19426 -232878 Zscan22 zinc finger and SCAN domain containing 22 Novel U 0.00014051172913385085 -0.2625266828086693 1.0 19427 -70592 5730480H06Rik RIKEN cDNA 5730480H06 gene Novel U 0.00014039018755809476 -0.26252794173231553 1.0 19428 -320604 Ccdc169 coiled-coil domain containing 169 Novel U 0.00014031219756790534 -0.2625287495500701 1.0 19429 -100861973 Gm21366 predicted gene, 21366 Novel U 0.00014018257243623766 -0.2625300922029228 1.0 19430 -207181 Rbms3 RNA binding motif, single stranded interacting protein Novel N 0.00014014030562847887 -0.2625305300011281 1.0 19431 -108168545 Gm20855 predicted gene, 20855 Novel U 0.00014011842791784805 -0.26253075660973557 1.0 19432 -449521 Zfp213 zinc finger protein 213 Novel U 0.0001400640587343609 -0.2625313197639509 1.0 19433 -231583 Slc26a1 solute carrier family 26 (sulfate transporter), member 1 Novel N 0.00014002976619641755 -0.26253167496493157 1.0 19434 -17240 Mdfi MyoD family inhibitor Novel U 0.00013998892703274824 -0.2625320979756463 1.0 19435 -52443 Mrpl48 mitochondrial ribosomal protein L48 Novel U 0.00013990605768178215 -0.2625329563336595 1.0 19436 -100504234 Ccdc170 coiled-coil domain containing 170 Novel N 0.00013985594535450538 -0.26253347539549804 1.0 19437 -70862 Spata16 spermatogenesis associated 16 Novel N 0.00013973834060728024 -0.26253469354160375 1.0 19438 -66559 Metap1d methionyl aminopeptidase type 1D (mitochondrial) Novel N 0.0001396741062468512 -0.2625353588789975 1.0 19439 -381409 Cdh26 cadherin-like 26 Novel U 0.00013958012826514288 -0.2625363322998427 1.0 19440 -22445 Xlr3a X-linked lymphocyte-regulated 3A Novel U 0.00013947291104651882 -0.2625374428522686 1.0 19441 -66957 Serpinb11 serine (or cysteine) peptidase inhibitor, clade B (ovalbumin), member 11 Novel U 0.00013941586934631517 -0.2625380336883242 1.0 19442 -228491 Zfp770 zinc finger protein 770 Novel U 0.0001393963433067694 -0.2625382359383999 1.0 19443 -75284 Bcdin3d BCDIN3 domain containing Novel N 0.00013935823283949542 -0.2625386306853671 1.0 19444 -236537 Zfp352 zinc finger protein 352 Novel U 0.00013932040216284766 -0.2625390225342722 1.0 19445 -668758 Fbxw28 F-box and WD-40 domain protein 28 Novel U 0.00013931808037740003 -0.26253904658324956 1.0 19446 -107587 Osr2 odd-skipped related 2 Novel U 0.00013931564014939984 -0.26253907185905095 1.0 19447 -72792 2810459M11Rik RIKEN cDNA 2810459M11 gene Novel U 0.00013925777221961597 -0.26253967125316535 1.0 19448 -319901 Dsel dermatan sulfate epimerase-like Novel N 0.0001392251996565101 -0.26254000863870325 1.0 19449 -233813 Vwa3a von Willebrand factor A domain containing 3A Novel U 0.0001389950389445721 -0.2625423926357914 1.0 19450 -320183 Msrb3 methionine sulfoxide reductase B3 Novel N 0.0001388164542306464 -0.26254424241038754 1.0 19451 -54373 Prss16 serine protease 16 (thymus) Novel U 0.00013877188047016 -0.2625447041039334 1.0 19452 -69161 Manbal mannosidase, beta A, lysosomal-like Novel U 0.00013870305582570937 -0.26254541698733813 1.0 19453 -20148 Dhrs3 dehydrogenase/reductase 3 Novel N 0.00013866545140533146 -0.2625458064926882 1.0 19454 -70363 Fam135b family with sequence similarity 135, member B Novel U 0.00013861874837280057 -0.2625462902411639 1.0 19455 -99334 Zscan29 zinc finger SCAN domains 29 Novel U 0.00013848276375921502 -0.26254769876532114 1.0 19456 -403088 Tcaf3 TRPM8 channel-associated factor 3 Novel U 0.00013848018553709907 -0.26254772547046107 1.0 19457 -76041 Ccdc125 coiled-coil domain containing 125 Novel U 0.00013847842419120352 -0.26254774371442396 1.0 19458 -71083 Dmrtc1c1 DMRT-like family C1c1 Novel U 0.0001383449219484462 -0.2625491265262658 1.0 19459 -74407 Odad4 outer dynein arm complex subunit 4 Novel U 0.00013814567712495135 -0.2625511902975977 1.0 19460 -108168590 Gm28553 predicted gene 28553 Novel U 0.00013810780114124462 -0.26255158261579187 1.0 19461 -269346 Slc28a2 solute carrier family 28 (sodium-coupled nucleoside transporter), member 2 Novel U 0.00013806152341791926 -0.2625520619589288 1.0 19462 -75785 Klhl24 kelch-like 24 Novel U 0.0001379945026852339 -0.26255275615747475 1.0 19463 -213402 Armc2 armadillo repeat containing 2 Novel N 0.00013795610356382858 -0.26255315389431194 1.0 19464 -110959 Nudt19 nudix hydrolase 19 Novel N 0.0001379479295664361 -0.2625532385603082 1.0 19465 -319776 Tmem72 transmembrane protein 72 Novel U 0.00013794079615451018 -0.26255331244795443 1.0 19466 -328779 Hs3st6 heparan sulfate (glucosamine) 3-O-sulfotransferase 6 Novel N 0.0001378798835798443 -0.26255394337840043 1.0 19467 -108760 Galnt16 polypeptide N-acetylgalactosaminyltransferase 16 Novel N 0.00013765474823135382 -0.2625562753229392 1.0 19468 -108943 Trmt10a tRNA methyltransferase 10A Novel U 0.00013755892070239226 -0.262557267901334 1.0 19469 -277345 Wfdc16 WAP four-disulfide core domain 16 Novel U 0.0001375437741402359 -0.2625574247889269 1.0 19470 -51938 Ccdc39 coiled-coil domain containing 39 Novel U 0.00013751476093729084 -0.2625577253067293 1.0 19471 -268663 Cdhr2 cadherin-related family member 2 Novel U 0.00013751155816060483 -0.2625577584809849 1.0 19472 -632708 Dmrtc1b DMRT-like family C1b Novel U 0.00013744728392536424 -0.2625584242314006 1.0 19473 -96935 Susd4 sushi domain containing 4 Novel U 0.00013703104879512828 -0.26256273558119664 1.0 19474 -69380 1700013G24Rik RIKEN cDNA 1700013G24 gene Novel U 0.00013691829802562003 -0.26256390344996067 1.0 19475 -232426 5530400C23Rik RIKEN cDNA 5530400C23 gene Novel U 0.0001368936780172255 -0.2625641584631983 1.0 19476 -71567 Mcm9 minichromosome maintenance 9 homologous recombination repair factor Novel U 0.00013665706244645568 -0.262566609319502 1.0 19477 -69207 Srsf11 serine and arginine-rich splicing factor 11 Novel U 0.0001366429265833071 -0.26256675573830784 1.0 19478 -108168594 Gm21117 predicted gene, 21117 Novel U 0.00013657349027460886 -0.2625674749573107 1.0 19479 -68045 Rtraf RNA transcription, translation and transport factor Novel U 0.0001364209705307034 -0.26256905475180425 1.0 19480 -240215 Slc4a9 solute carrier family 4, sodium bicarbonate cotransporter, member 9 Novel N 0.00013617249999574356 -0.2625716284014374 1.0 19481 -242721 Klhdc7a kelch domain containing 7A Novel U 0.00013605815137716283 -0.26257281282066963 1.0 19482 -52076 Tmem38b transmembrane protein 38B Novel N 0.00013605497417981238 -0.2625728457299753 1.0 19483 -100043231 Alyreffm6 Aly/REF export factor family member 6 Novel U 0.00013595295611721142 -0.26257390242971407 1.0 19484 -18546 Pcp4 Purkinje cell protein 4 Novel U 0.0001359034872062262 -0.26257441482706784 1.0 19485 -72055 Slc38a10 solute carrier family 38, member 10 Novel U 0.00013585144856396983 -0.26257495384161367 1.0 19486 -77938 Fam53b family with sequence similarity 53, member B Novel U 0.00013572512645469945 -0.26257626228186887 1.0 19487 -103889 Hoxb2 homeobox B2 Novel N 0.00013554494602254231 -0.26257812858486207 1.0 19488 -244698 Hephl1 hephaestin-like 1 Novel U 0.0001353876009243552 -0.26257975836021663 1.0 19489 -69017 Prrt2 proline-rich transmembrane protein 2 Novel U 0.00013537717507904786 -0.2625798663507796 1.0 19490 -330998 Ankrd34c ankyrin repeat domain 34C Novel U 0.00013537283860688413 -0.2625799112678157 1.0 19491 -72584 Cul4b cullin 4B Novel U 0.00013528714670286193 -0.26258079886174057 1.0 19492 -72106 Jmjd8 jumonji domain containing 8 Novel U 0.00013526608486409203 -0.2625810170195742 1.0 19493 -546335 Gm5938 predicted gene 5938 Novel U 0.00013523486521182027 -0.26258134039170616 1.0 19494 -17141 Magea5 MAGE family member A5 Novel U 0.00013512294114928985 -0.26258249969746655 1.0 19495 -209186 Acnat2 acyl-coenzyme A amino acid N-acyltransferase 2 Novel U 0.0001350880685568323 -0.26258286090663285 1.0 19496 -73261 1700037C18Rik RIKEN cDNA 1700037C18 gene Novel U 0.00013501609576891622 -0.2625836063984041 1.0 19497 -78128 Spag11a sperm associated antigen 11A Novel U 0.00013499582371567095 -0.2625838163756652 1.0 19498 -22722 Zfp64 zinc finger protein 64 Novel N 0.00013497997093243972 -0.26258398057827276 1.0 19499 -75071 Samt2b spermatogenesis associated multipass transmembrane protein 2b Novel U 0.00013482430775520922 -0.2625855929323454 1.0 19500 -100465 Mob3c MOB kinase activator 3C Novel U 0.00013470809151475079 -0.26258679669634366 1.0 19501 -19193 Pipox pipecolic acid oxidase Novel N 0.00013438079495211406 -0.26259018682338015 1.0 19502 -83395 Sp6 trans-acting transcription factor 6 Novel N 0.00013435299422635981 -0.2625904747823836 1.0 19503 -73385 Fam177a family with sequence similarity 177, member A Novel U 0.00013433294035506947 -0.26259068249972317 1.0 19504 -19301 Pxmp2 peroxisomal membrane protein 2 Novel U 0.00013421753822337974 -0.26259187783120963 1.0 19505 -18072 Nhlh2 nescient helix loop helix 2 Novel U 0.00013417737112168528 -0.2625922938807285 1.0 19506 -269788 Lhfpl4 lipoma HMGIC fusion partner-like protein 4 Novel U 0.0001341231669256508 -0.2625928553260092 1.0 19507 -69361 Cypt3 cysteine-rich perinuclear theca 3 Novel U 0.00013411241565232715 -0.26259296668734483 1.0 19508 -76781 Mettl4 methyltransferase 4, N6-adenosine Novel U 0.00013388329947361236 -0.2625953398651922 1.0 19509 -114654 Ly6g6d lymphocyte antigen 6 family member G6D Novel U 0.00013387872153640295 -0.2625953872833153 1.0 19510 -211488 Ado 2-aminoethanethiol dioxygenase Novel N 0.00013387489758147383 -0.2625954268917148 1.0 19511 -22774 Zic4 zinc finger protein of the cerebellum 4 Novel U 0.00013381760218356703 -0.2625960203555628 1.0 19512 -668203 Cdc5lrt6 cell division cycle 5 like, retrotransposed 6 Novel U 0.00013368682230746178 -0.2625973749692203 1.0 19513 -56220 Zfp386 zinc finger protein 386 (Kruppel-like) Novel U 0.00013364087943722845 -0.2625978508439599 1.0 19514 -27660 1700088E04Rik RIKEN cDNA 1700088E04 gene Novel U 0.00013359745295193464 -0.26259830065406703 1.0 19515 -50524 Sall2 spalt like transcription factor 2 Novel N 0.00013353082831031143 -0.2625989907499148 1.0 19516 -13487 Slc26a3 solute carrier family 26, member 3 Novel U 0.000133509333466598 -0.26259921339279935 1.0 19517 -69707 Iqcg IQ motif containing G Novel U 0.00013342232597033816 -0.2626001146135854 1.0 19518 -72572 Spats2 spermatogenesis associated, serine-rich 2 Novel U 0.00013335193580886077 -0.26260084371256404 1.0 19519 -56773 Chst5 carbohydrate sulfotransferase 5 Novel U 0.00013321744221536142 -0.26260223679278427 1.0 19520 -252967 Ropn1l ropporin 1-like Novel N 0.00013319409798551946 -0.26260247859154956 1.0 19521 -74711 Ttll9 tubulin tyrosine ligase-like family, member 9 Novel U 0.00013316638189656075 -0.2626027656738879 1.0 19522 -71583 9130008F23Rik RIKEN cDNA 9130008F23 gene Novel U 0.00013309337822693462 -0.262603521843498 1.0 19523 -319317 Snhg11 small nucleolar RNA host gene 11 Novel U 0.00013304945561138515 -0.26260397679250597 1.0 19524 -75773 Adad2 adenosine deaminase domain containing 2 Novel U 0.0001330147036871352 -0.26260433675179495 1.0 19525 -110821 Pcca propionyl-Coenzyme A carboxylase, alpha polypeptide Novel U 0.00013300128186795259 -0.2626044757745568 1.0 19526 -623166 Prr23a1 proline rich 23A, member 1 Novel U 0.00013287989342831218 -0.2626057331120242 1.0 19527 -104910 Slc25a47 solute carrier family 25, member 47 Novel U 0.0001328522373107445 -0.26260601957318086 1.0 19528 -75504 Cfap276 cilia and flagella associated protein 276 Novel U 0.00013278853487242522 -0.26260667940094284 1.0 19529 -26430 Parg poly (ADP-ribose) glycohydrolase Novel N 0.00013266209458192305 -0.26260798906531535 1.0 19530 -17535 Mre11a MRE11A homolog A, double strand break repair nuclease Novel U 0.0001325906674157947 -0.2626087289055541 1.0 19531 -68800 Prr32 proline rich 32 Novel U 0.0001323272110160284 -0.26261145777828215 1.0 19532 -15424 Hoxc5 homeobox C5 Novel U 0.0001321829105135024 -0.2626129524381437 1.0 19533 -56360 Acot9 acyl-CoA thioesterase 9 Novel U 0.00013215468142659763 -0.26261324483409787 1.0 19534 -64385 Cyp4f14 cytochrome P450, family 4, subfamily f, polypeptide 14 Novel U 0.00013203009550772382 -0.26261453529095 1.0 19535 -17285 Meox1 mesenchyme homeobox 1 Novel U 0.00013195100679508963 -0.2626153544892356 1.0 19536 -72221 Cimip1 ciliary microtubule inner protein 1 Novel U 0.0001319237696633744 -0.26261563661055054 1.0 19537 -104582 Rprml reprimo-like Novel U 0.0001318060835528425 -0.2626168555994147 1.0 19538 -73247 Mrgbp MRG/MORF4L binding protein Novel N 0.00013179329169403753 -0.2626169880970677 1.0 19539 -234378 Klhl26 kelch-like 26 Novel U 0.0001316257536143582 -0.2626187234509895 1.0 19540 -627901 Gm14419 predicted gene 14419 Novel U 0.0001314223878594134 -0.2626208299067939 1.0 19541 -320214 Cfap91 cilia and flagella associated protein 91 Novel N 0.00013127580642704594 -0.2626223481924518 1.0 19542 -20770 Mucl2 mucin-like 2 Novel U 0.00013125814307811764 -0.2626225311488393 1.0 19543 -320027 Fstl4 follistatin-like 4 Novel U 0.00013072726051715673 -0.26262803001295393 1.0 19544 -75140 Slxl1 Slx-like 1 Novel U 0.0001307196863358949 -0.2626281084660745 1.0 19545 -67343 Spmip10 sperm microtubule inner protein 10 Novel U 0.0001306423275970067 -0.26262890974534886 1.0 19546 -67135 Bpifa5 BPI fold containing family A, member 5 Novel U 0.0001304967137398786 -0.2626304180088942 1.0 19547 -100042165 Thoc2l THO complex subunit 2-like Novel U 0.00013044022049852407 -0.262631003164031 1.0 19548 -67985 Ssxb1 SSX member B1 Novel U 0.0001304181018782281 -0.2626312322679729 1.0 19549 -69934 Trmt10b tRNA methyltransferase 10B Novel U 0.00013036744416629746 -0.26263175697888785 1.0 19550 -68265 Iqcf3 IQ motif containing F3 Novel U 0.00013028733146074357 -0.26263258678365836 1.0 19551 -233876 Hirip3 HIRA interacting protein 3 Novel N 0.0001301975606248876 -0.2626335166270251 1.0 19552 -382301 Sly Sycp3 like Y-linked Novel U 0.00012998844400450703 -0.2626356826501047 1.0 19553 -229503 Mettl25b methyltransferase like 25B Novel U 0.00012990301676530006 -0.26263656750264014 1.0 19554 -257635 Sdsl serine dehydratase-like Novel U 0.00012986088065656355 -0.2626370039470693 1.0 19555 -69310 Pacrg PARK2 co-regulated Novel U 0.00012972338781425764 -0.26263842809341004 1.0 19556 -16687 Krt6a keratin 6A Novel U 0.00012965565879792616 -0.26263912962833474 1.0 19557 -118568488 Gm14402 predicted gene 14402 Novel U 0.00012956360049855663 -0.26264008316517334 1.0 19558 -67991 Nacc2 nucleus accumbens associated 2, BEN and BTB (POZ) domain containing Novel U 0.0001295574574583917 -0.2626401467945814 1.0 19559 -69083 Sult1c2 sulfotransferase family, cytosolic, 1C, member 2 Novel N 0.00012953025111543768 -0.2626404285969874 1.0 19560 -74400 Zfp819 zinc finger protein 819 Novel U 0.00012921464603960313 -0.2626436976239879 1.0 19561 -387564 Sval3 seminal vesicle antigen-like 3 Novel U 0.00012912733097847055 -0.2626446020305208 1.0 19562 -52538 Acaa2 acetyl-CoA acyltransferase 2 Novel N 0.00012908115622660437 -0.2626450803070827 1.0 19563 -26363 Btd biotinidase Novel U 0.00012904964789699918 -0.262645406669325 1.0 19564 -622301 Rhox2h reproductive homeobox 2H Novel U 0.00012896258961106604 -0.2626463084161888 1.0 19565 -67416 Armcx2 armadillo repeat containing, X-linked 2 Novel U 0.0001287879680639461 -0.2626481171404335 1.0 19566 -107605 Rdh1 retinol dehydrogenase 1 (all trans) Novel U 0.00012877255334518533 -0.2626482768055837 1.0 19567 -17702 Msx2 msh homeobox 2 Novel U 0.00012872010700426553 -0.26264882004305884 1.0 19568 -218989 Tmem260 transmembrane protein 260 Novel N 0.00012871283727141156 -0.2626488953427128 1.0 19569 -668066 Gm14418 novel KRAB box and zinc finger, C2H2 type domain containing protein Novel U 0.00012870329107367266 -0.2626489942219151 1.0 19570 -19733 Rgn regucalcin Novel U 0.00012864886854448867 -0.2626495579286834 1.0 19571 -76022 Gon4l gon-4 like Novel U 0.0001286077172426363 -0.2626499841725152 1.0 19572 -77574 Tcaf1 TRPM8 channel-associated factor 1 Novel U 0.00012847128860089937 -0.2626513972959015 1.0 19573 -381418 Ctxn2 cortexin 2 Novel U 0.0001283864527274169 -0.26265227602309016 1.0 19574 -54352 Irx5 Iroquois homeobox 5 Novel U 0.00012827660351234557 -0.2626534138376488 1.0 19575 -22654 Zfp13 zinc finger protein 13 Novel N 0.00012818557074212374 -0.2626543567520902 1.0 19576 -109697 Cpa1 carboxypeptidase A1, pancreatic Novel N 0.0001281546466210562 -0.2626546770631196 1.0 19577 -213012 Abhd10 abhydrolase domain containing 10 Novel N 0.0001280218050398615 -0.26265605303185074 1.0 19578 -244923 Klhl31 kelch-like 31 Novel U 0.00012801532063445216 -0.26265612019710877 1.0 19579 -27226 Pla2g7 phospholipase A2, group VII (platelet-activating factor acetylhydrolase, plasma) Novel U 0.00012788371497088823 -0.2626574833642457 1.0 19580 -93734 Mpv17l Mpv17 transgene, kidney disease mutant-like Novel N 0.00012787423291480307 -0.26265758157907093 1.0 19581 -240697 Mcmdc2 minichromosome maintenance domain containing 2 Novel U 0.00012773840319542257 -0.26265898849883906 1.0 19582 -236663 H2al1j H2A histone family member L1J Novel U 0.00012772900047144757 -0.2626590858919449 1.0 19583 -15396 Hoxa11 homeobox A11 Novel U 0.00012768236912603963 -0.2626595688978877 1.0 19584 -20222 Sf3a2 splicing factor 3a, subunit 2 Novel N 0.00012760892685595175 -0.262660329610507 1.0 19585 -629542 Mageb5b MAGE family member B5B Novel U 0.00012745482976499187 -0.26266192574310954 1.0 19586 -64660 Mrps24 mitochondrial ribosomal protein S24 Novel U 0.00012732516230394306 -0.2626632688344085 1.0 19587 -239650 Ccdc184 coiled-coil domain containing 184 Novel U 0.0001273191829973033 -0.2626633307678701 1.0 19588 -74229 Paqr8 progestin and adipoQ receptor family member VIII Novel U 0.000127261596163795 -0.2626639272503985 1.0 19589 -76547 Tmem101 transmembrane protein 101 Novel U 0.0001271273444330456 -0.2626653178254123 1.0 19590 -170789 Acot8 acyl-CoA thioesterase 8 Novel U 0.00012712509894385063 -0.26266534108411554 1.0 19591 -99929 Tiparp TCDD-inducible poly(ADP-ribose) polymerase Novel U 0.00012710213553101846 -0.2626655789383908 1.0 19592 -66570 Cenpm centromere protein M Novel U 0.0001270093145001118 -0.26266654037557763 1.0 19593 -55961 Slc13a1 solute carrier family 13 (sodium/sulfate symporters), member 1 Novel U 0.00012694066220512347 -0.2626672514737923 1.0 19594 -627470 Gm6760 predicted gene 6760 Novel U 0.00012687544784939584 -0.26266792696194513 1.0 19595 -66170 Chchd5 coiled-coil-helix-coiled-coil-helix domain containing 5 Novel U 0.0001268588242335698 -0.26266809914881134 1.0 19596 -100043920 Spata31f1d spermatogenesis associated 31 subfamily F member 1D Novel U 0.0001267995649780111 -0.2626687129542324 1.0 19597 -380654 Cfap54 cilia and flagella associated protein 54 Novel U 0.00012671085943911028 -0.2626696317632883 1.0 19598 -11451 Acrv1 acrosomal vesicle protein 1 Novel U 0.0001266302981183096 -0.26267046621480084 1.0 19599 -381833 Prb1a proline-rich protein BstNI subfamily 1A Novel U 0.00012597177486654447 -0.26267728717699484 1.0 19600 -75641 Frey1 Frey regulator of sperm-oocyte fusion 1 Novel U 0.00012594663653135027 -0.2626775475590444 1.0 19601 -654460 Defb18 defensin beta 18 Novel U 0.00012578997213070404 -0.2626791702837562 1.0 19602 -228061 Agps alkylglycerone phosphate synthase Novel N 0.00012577069403657486 -0.26267936996562147 1.0 19603 -67909 Galntl5 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase-like 5 Novel U 0.00012563659426034678 -0.26268075896669535 1.0 19604 -100042279 Gm20908 predicted gene, 20908 Novel U 0.00012559024403446733 -0.2626812390608113 1.0 19605 -22775 Zik1 zinc finger protein interacting with K protein 1 Novel U 0.00012554911058758016 -0.262681665119702 1.0 19606 -240186 Zfp438 zinc finger protein 438 Novel U 0.00012545932576810937 -0.2626825951079106 1.0 19607 -71591 Zfp251 zinc finger protein 251 Novel U 0.0001254559575836775 -0.26268262999545416 1.0 19608 -73729 Zfp383 zinc finger protein 383 Novel U 0.00012541059591579447 -0.2626830998501189 1.0 19609 -241159 Neu4 sialidase 4 Novel N 0.0001253745301183198 -0.2626834734184636 1.0 19610 -73670 Defb30 defensin beta 30 Novel U 0.00012534234966715888 -0.2626838067425188 1.0 19611 -408196 Csta3 cystatin A family member 3 Novel U 0.0001253224665847706 -0.2626840126908326 1.0 19612 -100042927 H2al1b H2A histone family member L1B Novel U 0.0001251752455550054 -0.26268553760141927 1.0 19613 -20768 Sephs2 selenophosphate synthetase 2 Novel N 0.0001250404853039006 -0.26268693344367017 1.0 19614 -11899 Astn1 astrotactin 1 Novel U 0.0001249482247129414 -0.26268788907583845 1.0 19615 -70209 Tmem143 transmembrane protein 143 Novel U 0.0001247820757515905 -0.2626896100413183 1.0 19616 -22441 Xlr X-linked lymphocyte-regulated Novel U 0.00012468812202165734 -0.26269058321096433 1.0 19617 -100042594 Gm20931 predicted gene, 20931 Novel U 0.00012462629120862202 -0.2626912236524932 1.0 19618 -545547 Lce1j late cornified envelope 1J Novel U 0.00012460397084147222 -0.2626914548461224 1.0 19619 -66039 Tmem254 transmembrane protein 254 Novel U 0.00012459146070446895 -0.2626915844257102 1.0 19620 -73719 Lce1c late cornified envelope 1C Novel U 0.00012458958799529534 -0.26269160382317025 1.0 19621 -67870 Enoph1 enolase-phosphatase 1 Novel N 0.00012458857774578523 -0.26269161428730153 1.0 19622 -73333 Slc25a31 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 31 Novel U 0.00012447101518839944 -0.26269283199640625 1.0 19623 -69563 Mrln myoregulin Novel U 0.00012439281941345367 -0.2626936419456726 1.0 19624 -67229 Prpf18 pre-mRNA processing factor 18 Novel N 0.00012430760400837252 -0.2626945246040371 1.0 19625 -103710 Slc35e4 solute carrier family 35, member E4 Novel U 0.0001242085049617756 -0.26269555106870407 1.0 19626 -213084 Cdkl3 cyclin dependent kinase like 3 Novel N 0.0001240655914736108 -0.26269703136191647 1.0 19627 -239652 Zfp641 zinc finger protein 641 Novel U 0.0001240600038878442 -0.2626970892379461 1.0 19628 -382088 Omt2b oocyte maturation, beta Novel U 0.00012403736571252043 -0.2626973237234219 1.0 19629 -628518 Ctag2l2 CTAG2 like 2 Novel U 0.00012399636317734838 -0.26269774842633337 1.0 19630 -77630 Prdm8 PR domain containing 8 Novel N 0.00012378304465926219 -0.26269995797253126 1.0 19631 -384198 Fam47e family with sequence similarity 47, member E Novel N 0.0001236189299238471 -0.26270165786756566 1.0 19632 -497113 Rnase11 ribonuclease, RNase A family, 11 (non-active) Novel U 0.0001235538801024338 -0.2627023316514775 1.0 19633 -236193 Zfp709 zinc finger protein 709 Novel U 0.0001235419150568884 -0.2627024555850259 1.0 19634 -210463 Slc22a22 solute carrier family 22 (organic cation transporter), member 22 Novel U 0.0001234345004991529 -0.2627035681814839 1.0 19635 -433597 Aadacl2fm2 AADACL2 family member 2 Novel U 0.00012338206522925096 -0.2627041113042858 1.0 19636 -73614 Rhox13 reproductive homeobox 13 Novel U 0.00012325978970647702 -0.2627053778301311 1.0 19637 -12269 C4bp complement component 4 binding protein Novel U 0.00012325324905796257 -0.2627054455779534 1.0 19638 -240084 Cchcr1 coiled-coil alpha-helical rod protein 1 Novel U 0.00012324444955491443 -0.2627055367229167 1.0 19639 -18393 Orc2 origin recognition complex, subunit 2 Novel N 0.00012320903820244324 -0.2627059035125415 1.0 19640 -71062 Tekt3 tektin 3 Novel N 0.0001231967043295391 -0.2627060312663916 1.0 19641 -100503584 Zfp534 zinc finger protein 534 Novel U 0.00012307345196669377 -0.2627073079103142 1.0 19642 -638345 Sbpl spermine binding protein-like Novel U 0.00012296566930385618 -0.2627084243195928 1.0 19643 -113002583 Shld3 shieldin complex subunit 3 Novel U 0.00012296116283455483 -0.26270847099745365 1.0 19644 -70481 Pnma1 paraneoplastic antigen MA1 Novel U 0.00012293455839075323 -0.262708746565408 1.0 19645 -245174 Zfp937 zinc finger protein 937 Novel U 0.00012274285338268397 -0.2627107322395796 1.0 19646 -71233 Enkur enkurin, TRPC channel interacting protein Novel N 0.0001226533944027019 -0.26271165885275344 1.0 19647 -103775 Slc25a41 solute carrier family 25, member 41 Novel U 0.00012263806565670075 -0.2627118176274006 1.0 19648 -244556 Zfp791 zinc finger protein 791 Novel U 0.0001226188480417395 -0.2627120166828246 1.0 19649 -18207 Nthl1 nth (endonuclease III)-like 1 (E.coli) Novel U 0.00012258182355045428 -0.2627124001812883 1.0 19650 -194219 Slfnl1 schlafen like 1 Novel U 0.00012256147713461584 -0.2627126109287946 1.0 19651 -330188 Ccdc63 coiled-coil domain containing 63 Novel U 0.00012241117390105795 -0.2627141677647469 1.0 19652 -14085 Fah fumarylacetoacetate hydrolase Novel U 0.00012239981216657318 -0.2627142854492192 1.0 19653 -193838 Eme2 essential meiotic structure-specific endonuclease subunit 2 Novel N 0.00012239513415760153 -0.2627143339038823 1.0 19654 -246700 Defb19 defensin beta 19 Novel U 0.00012238914051813961 -0.2627143959858029 1.0 19655 -20899 Stra8 stimulated by retinoic acid gene 8 Novel U 0.00012238519559261616 -0.26271443684721174 1.0 19656 -246196 Zfp277 zinc finger protein 277 Novel U 0.00012227646453194475 -0.2627155630799638 1.0 19657 -12346 Car1 carbonic anhydrase 1 Novel U 0.00012226957684292097 -0.2627156344224203 1.0 19658 -330502 Zfp82 zinc finger protein 82 Novel U 0.00012204506954023902 -0.2627179598616812 1.0 19659 -54678 Zfp108 zinc finger protein 108 Novel U 0.0001220106653414078 -0.2627183162192417 1.0 19660 -74098 Czib CXXC motif containing zinc binding protein Novel U 0.00012200835465984059 -0.26271834015320544 1.0 19661 -71421 Amtn amelotin Novel N 0.00012199382640569402 -0.2627184906363843 1.0 19662 -67009 Ttc23 tetratricopeptide repeat domain 23 Novel U 0.00012198210271384784 -0.2627186120699991 1.0 19663 -69496 Dydc1 DPY30 domain containing 1 Novel U 0.00012194850934565088 -0.2627189600290025 1.0 19664 -30959 Ddx25 DEAD box helicase 25 Novel U 0.00012193894942843227 -0.2627190590503108 1.0 19665 -627085 Aadacl4fm2 AADACL4 family member 2 Novel U 0.00012177092276520966 -0.2627207994649649 1.0 19666 -55990 Fmo2 flavin containing monooxygenase 2 Novel N 0.0001216096402406388 -0.26272247002405247 1.0 19667 -69542 2300002M23Rik RIKEN cDNA 2300002M23 gene Novel U 0.00012152226467297244 -0.2627233750573101 1.0 19668 -67573 Loxl4 lysyl oxidase-like 4 Novel U 0.00012150151098092241 -0.2627235900233701 1.0 19669 -70901 4921524L21Rik RIKEN cDNA 4921524L21 gene Novel U 0.00012144544347947165 -0.26272417076870697 1.0 19670 -24135 Zfp68 zinc finger protein 68 Novel U 0.00012142034309136069 -0.2627244307577019 1.0 19671 -67375 Qprt quinolinate phosphoribosyltransferase Novel N 0.00012124369408894047 -0.262726260482262 1.0 19672 -226442 Zfp281 zinc finger protein 281 Novel N 0.00012112847428229154 -0.26272745392523156 1.0 19673 -77015 Mpped2 metallophosphoesterase domain containing 2 Novel U 0.0001211024686287657 -0.2627277232909359 1.0 19674 -66441 Magohb mago homolog B, exon junction complex core component Novel U 0.00012098753598751651 -0.2627289137594558 1.0 19675 -74267 Iqcf1 IQ motif containing F1 Novel U 0.00012092829828900533 -0.2627295273415896 1.0 19676 -68552 Smim14 small integral membrane protein 14 Novel U 0.00012089208602911017 -0.2627299024269872 1.0 19677 -434121 Sult2a4 sulfotransferase family 2A, dehydroepiandrosterone (DHEA)-preferring, member 4 Novel U 0.00012068924248049142 -0.26273200347379566 1.0 19678 -654801 Zfp784 zinc finger protein 784 Novel U 0.00012065736251854607 -0.2627323336853935 1.0 19679 -108168558 Gm20920 predicted gene, 20920 Novel U 0.00012061526204069593 -0.2627327697607591 1.0 19680 -226527 Cryzl2 crystallin zeta like 2 Novel U 0.00012061199143784922 -0.26273280363755586 1.0 19681 -100042578 Gm20929 predicted gene, 20929 Novel U 0.00012057860614050523 -0.2627331494413683 1.0 19682 -231903 Urad ureidoimidazoline (2-oxo-4-hydroxy-4-carboxy-5) decarboxylase Novel U 0.00012056414642326936 -0.26273329921464406 1.0 19683 -100861966 Btbd35f23 BTB domain containing 35, family member 23 Novel U 0.00012055283028318774 -0.262733416426851 1.0 19684 -20234 Sbp spermine binding protein Novel U 0.0001205270277277856 -0.2627336836888717 1.0 19685 -17993 Ndufs4 NADH:ubiquinone oxidoreductase core subunit S4 Novel N 0.000120354519842456 -0.262735470519877 1.0 19686 -434676 Scgb1b19 secretoglobin, family 1B, member 19 Novel U 0.00012030091717916975 -0.2627360257345012 1.0 19687 -68758 Abhd11 abhydrolase domain containing 11 Novel U 0.00012009620432471926 -0.26273814614351804 1.0 19688 -23936 Lynx1 Ly6/neurotoxin 1 Novel U 0.00012008875002903761 -0.2627382233548677 1.0 19689 -68080 Gpn3 GPN-loop GTPase 3 Novel U 0.00011991872855180427 -0.26273998443173974 1.0 19690 -239546 Zfp647 zinc finger protein 647 Novel U 0.0001198911965788607 -0.2627402696070104 1.0 19691 -20861 Stfa1 stefin A1 Novel U 0.00011988131498243106 -0.2627403719602614 1.0 19692 -66904 Pccb propionyl Coenzyme A carboxylase, beta polypeptide Novel U 0.00011945571825889789 -0.262744780277133 1.0 19693 -56774 Slc6a14 solute carrier family 6 (neurotransmitter transporter), member 14 Novel U 0.00011924126167038083 -0.26274700161142694 1.0 19694 -241764 L3mbtl1 L3MBTL1 histone methyl-lysine binding protein Novel N 0.00011921241566976044 -0.26274730039735317 1.0 19695 -19356 Rad17 RAD17 checkpoint clamp loader component Novel N 0.0001191246498972425 -0.26274820947233973 1.0 19696 -74472 Stpg3 sperm tail PG rich repeat containing 3 Novel U 0.00011912267272450235 -0.26274822995183 1.0 19697 -215929 Mfsd4b1 major facilitator superfamily domain containing 4B1 Novel U 0.00011903272407917597 -0.2627491616369414 1.0 19698 -15227 Foxf1 forkhead box F1 Novel U 0.00011898733045915679 -0.2627496318225653 1.0 19699 -668096 Cwc22rt1 CWC22 spliceosome-associated protein, retrotransposed 1 Novel U 0.00011896508917825771 -0.26274986219702173 1.0 19700 -66634 Mcm8 minichromosome maintenance 8 homologous recombination repair factor Novel U 0.00011890401213963568 -0.26275049483097995 1.0 19701 -227058 Dnah7b dynein, axonemal, heavy chain 7B Novel U 0.00011880681477021812 -0.2627515015981372 1.0 19702 -66526 Tceanc2 transcription elongation factor A (SII) N-terminal and central domain containing 2 Novel U 0.00011870616937384978 -0.2627525440798442 1.0 19703 -227630 Lcn11 lipocalin 11 Novel U 0.00011869007760353703 -0.26275271075787215 1.0 19704 -224090 Tmem44 transmembrane protein 44 Novel U 0.00011862943113130331 -0.2627533389320379 1.0 19705 -100861906 Gm21317 predicted gene, 21317 Novel U 0.00011862339716273482 -0.26275340143168596 1.0 19706 -100504285 Abhd12b abhydrolase domain containing 12B Novel U 0.00011856422031324699 -0.2627540143835476 1.0 19707 -319166 H2ac8 H2A clustered histone 8 Novel U 0.00011856269650144954 -0.26275403016714016 1.0 19708 -100135657 Rhox3e reproductive homeobox 3E Novel U 0.0001183451616302641 -0.26275628338618484 1.0 19709 -12904 Crabp2 cellular retinoic acid binding protein II Novel N 0.00011806347201395991 -0.2627592011179704 1.0 19710 -67877 Naa20 N(alpha)-acetyltransferase 20, NatB catalytic subunit Novel U 0.00011801000004801407 -0.2627597549788359 1.0 19711 -24018 Rngtt RNA guanylyltransferase and 5'-phosphatase Novel N 0.00011789192452873777 -0.2627609780011831 1.0 19712 -66258 Mrps17 mitochondrial ribosomal protein S17 Novel U 0.00011788427588206873 -0.2627610572256138 1.0 19713 -77674 Defb12 defensin beta 12 Novel U 0.00011784828537111484 -0.26276143001414315 1.0 19714 -70274 Ly6g6e lymphocyte antigen 6 family member G6E Novel U 0.00011779957427077418 -0.26276193456211916 1.0 19715 -666921 Gm12886 predicted gene 12886 Novel U 0.00011779867041317533 -0.2627619439242465 1.0 19716 -328643 Vwa5b2 von Willebrand factor A domain containing 5B2 Novel U 0.00011764836995289694 -0.2627635007314732 1.0 19717 -56397 Morf4l2 mortality factor 4 like 2 Novel U 0.00011763245464070864 -0.2627636655817536 1.0 19718 -74626 Tmem81 transmembrane protein 81 Novel U 0.00011756351940218034 -0.2627643796106882 1.0 19719 -66343 Tmem177 transmembrane protein 177 Novel U 0.00011748338866622462 -0.26276520960221705 1.0 19720 -227095 Hibch 3-hydroxyisobutyryl-Coenzyme A hydrolase Novel N 0.00011747553539061106 -0.2627652909461877 1.0 19721 -212276 Zfp748 zinc finger protein 748 Novel U 0.0001173940937008788 -0.2627661345165327 1.0 19722 -19659 Rbp1 retinol binding protein 1, cellular Novel U 0.00011735587564328067 -0.262766530377917 1.0 19723 -71592 Pogk pogo transposable element with KRAB domain Novel U 0.00011688928956451244 -0.26277136326118267 1.0 19724 -52609 Cbx7 chromobox 7 Novel N 0.00011665443076746198 -0.26277379592088196 1.0 19725 -435145 Shisa8 shisa family member 8 Novel U 0.00011655394162616194 -0.2627748367841041 1.0 19726 -68801 Elovl5 ELOVL fatty acid elongase 5 Novel N 0.00011654271654601794 -0.26277495305311527 1.0 19727 -320995 Rfx6 regulatory factor X, 6 Novel U 0.0001163546330642656 -0.2627769012156363 1.0 19728 -100043034 Rex2 reduced expression 2 Novel U 0.00011630572706423589 -0.26277740778237696 1.0 19729 -76484 Kndc1 kinase non-catalytic C-lobe domain (KIND) containing 1 Novel U 0.0001162484607764298 -0.2627780009447035 1.0 19730 -69066 1810010H24Rik RIKEN cDNA 1810010H24 gene Novel U 0.00011619407428360293 -0.26277856427820834 1.0 19731 -67880 Dcxr dicarbonyl L-xylulose reductase Novel N 0.0001161393101644978 -0.26277913152315374 1.0 19732 -56794 Hacl1 2-hydroxyacyl-CoA lyase 1 Novel U 0.00011606652446531912 -0.26277988543503317 1.0 19733 -100862261 Spata31f1c spermatogenesis associated 31 subfamily F member 1C Novel U 0.00011589920036820558 -0.2627816185725306 1.0 19734 -434758 Rhox3h reproductive homeobox 3H Novel U 0.00011581061266548743 -0.26278253616104313 1.0 19735 -66561 Teddm3 transmembrane epididymal family member 3 Novel U 0.00011563445498771844 -0.26278436079647866 1.0 19736 -100042201 Gm20906 predicted gene, 20906 Novel U 0.00011559603464611288 -0.26278475875311397 1.0 19737 -195236 Pom121l2 POM121 transmembrane nucleoporin like 2 Novel U 0.00011555108454471528 -0.26278522434478657 1.0 19738 -252829 Obox5 oocyte specific homeobox 5 Novel U 0.00011554508512411386 -0.26278528648658794 1.0 19739 -68734 Ppp4r3a protein phosphatase 4 regulatory subunit 3A Novel U 0.00011552072726847634 -0.26278553878445593 1.0 19740 -53626 Insm1 insulinoma-associated 1 Novel U 0.00011544771772724074 -0.262786295014884 1.0 19741 -55935 Fnbp4 formin binding protein 4 Novel U 0.0001154477063659263 -0.26278629513256413 1.0 19742 -17294 Mest mesoderm specific transcript Novel N 0.00011534308127509658 -0.26278737883581554 1.0 19743 -27273 Pdk4 pyruvate dehydrogenase kinase, isoenzyme 4 Novel U 0.00011484072467129261 -0.26279258222900365 1.0 19744 -12116 Bhmt betaine-homocysteine methyltransferase Novel U 0.00011474606175771044 -0.26279356274435073 1.0 19745 -71665 Fuca1 fucosidase, alpha-L- 1, tissue Novel U 0.0001147323678793215 -0.2627937045850929 1.0 19746 -105866 Krt72 keratin 72 Novel U 0.0001145931576439391 -0.2627951465201347 1.0 19747 -72167 Thumpd2 THUMP domain containing 2 Novel U 0.00011449178088243036 -0.2627961965772978 1.0 19748 -17257 Mecp2 methyl CpG binding protein 2 Novel U 0.00011432564753323259 -0.26279791738106745 1.0 19749 -71954 Suds3 suppressor of defective silencing 3 homolog (S. cerevisiae) Novel N 0.00011424737120358426 -0.2627987281647168 1.0 19750 -381218 Spata6l spermatogenesis associated 6 like Novel U 0.00011423668379726785 -0.26279883886452005 1.0 19751 -381651 Odaph odontogenesis associated phosphoprotein Novel N 0.00011419078383120193 -0.2627993142948597 1.0 19752 -245847 Amdhd2 amidohydrolase domain containing 2 Novel N 0.00011418465972663788 -0.26279937772813344 1.0 19753 -240041 Zfp945 zinc finger protein 945 Novel U 0.00011417702975872279 -0.2627994567590903 1.0 19754 -27973 Vkorc1 vitamin K epoxide reductase complex, subunit 1 Novel U 0.00011416152675211708 -0.2627996173387231 1.0 19755 -277353 Tcfl5 transcription factor-like 5 (basic helix-loop-helix) Novel N 0.00011388063531832574 -0.26280252680296046 1.0 19756 -15360 Hmgcs2 3-hydroxy-3-methylglutaryl-Coenzyme A synthase 2 Novel N 0.00011374010764084847 -0.2628039823840242 1.0 19757 -69324 1700012B07Rik RIKEN cDNA 1700012B07 gene Novel U 0.0001137267913965508 -0.26280412031324485 1.0 19758 -240131 Lrrc30 leucine rich repeat containing 30 Novel U 0.00011369363247717791 -0.2628044637722417 1.0 19759 -18972 Pold2 polymerase (DNA directed), delta 2, regulatory subunit Novel N 0.00011369143325479968 -0.2628044865517148 1.0 19760 -20860 Sult1e1 sulfotransferase family 1E, member 1 Novel N 0.00011331710172241552 -0.2628083638654217 1.0 19761 -17537 Meis3 Meis homeobox 3 Novel U 0.00011330182610599351 -0.26280852208975447 1.0 19762 -432552 Garin3 golgi associated RAB2 interactor 3 Novel U 0.00011318836047537913 -0.2628096973630264 1.0 19763 -384619 Kash5 KASH domain containing 5 Novel N 0.00011318032781888472 -0.2628097805650183 1.0 19764 -72931 Swi5 SWI5 recombination repair homolog (yeast) Novel U 0.00011312777425563509 -0.26281032491309886 1.0 19765 -17219 Mcm6 minichromosome maintenance complex component 6 Novel U 0.00011301272741336955 -0.2628115165645091 1.0 19766 -433485 Syndig1 synapse differentiation inducing 1 Novel U 0.0001129022779423605 -0.26281266059649894 1.0 19767 -67621 Bend5 BEN domain containing 5 Novel N 0.00011286968956098337 -0.262812998145882 1.0 19768 -16675 Krt27 keratin 27 Novel U 0.00011285869852516937 -0.26281311199066965 1.0 19769 -18511 Pax9 paired box 9 Novel U 0.00011283357819660567 -0.2628133721862071 1.0 19770 -67473 Slc47a1 solute carrier family 47, member 1 Novel U 0.00011278826982206122 -0.2628138414888612 1.0 19771 -20859 Sult2a1 sulfotransferase family 2A, dehydroepiandrosterone (DHEA)-preferring, member 1 Novel U 0.00011274118321262947 -0.2628143292104138 1.0 19772 -100039899 Tex13d TEX13 family member D Novel U 0.00011269257677307094 -0.2628148326743169 1.0 19773 -108812 Flacc1 flagellum associated containing coiled-coil domains 1 Novel U 0.0001126506323501275 -0.2628152671332709 1.0 19774 -66104 Tceal6 transcription elongation factor A (SII)-like 6 Novel U 0.00011258568600926396 -0.2628159398453346 1.0 19775 -67367 Paxbp1 PAX3 and PAX7 binding protein 1 Novel U 0.00011253162495636575 -0.2628164998079433 1.0 19776 -69861 2010003K11Rik RIKEN cDNA 2010003K11 gene Novel U 0.0001124547005602009 -0.26281729658831005 1.0 19777 -55934 Rp9 retinitis pigmentosa 9 (human) Novel N 0.00011244144127480225 -0.2628174339275523 1.0 19778 -100503991 Acp4 acid phosphatase 4 Novel U 0.00011212138042682948 -0.2628207491072942 1.0 19779 -107141 Cyp2c50 cytochrome P450, family 2, subfamily c, polypeptide 50 Novel U 0.00011207056244870945 -0.262821275478241 1.0 19780 -27357 Gyg1 glycogenin 1 Novel N 0.00011196767034159807 -0.26282234123130405 1.0 19781 -15473 Rida reactive intermediate imine deaminase A homolog Novel N 0.00011192763704522687 -0.26282275589487186 1.0 19782 -66514 Asrgl1 asparaginase like 1 Novel N 0.00011185522513608319 -0.26282350593504633 1.0 19783 -170745 Xpnpep2 X-prolyl aminopeptidase (aminopeptidase P) 2, membrane-bound Novel U 0.0001118125674493601 -0.26282394778196316 1.0 19784 -268319 BC025920 zinc finger protein pseudogene Novel U 0.00011153007126359383 -0.2628268738681688 1.0 19785 -269855 Ssc5d scavenger receptor cysteine rich family, 5 domains Novel U 0.00011147500859158288 -0.26282744420551535 1.0 19786 -406217 Bex4 brain expressed X-linked 4 Novel U 0.00011142607685692024 -0.26282795103881446 1.0 19787 -59001 Pole3 polymerase (DNA directed), epsilon 3 (p17 subunit) Novel N 0.00011133802990022807 -0.2628288630262975 1.0 19788 -329178 Unc80 unc-80, NALCN activator Novel U 0.00011132478650287997 -0.2628290002009719 1.0 19789 -26465 Zfp146 zinc finger protein 146 Novel N 0.000111136382585769 -0.2628309516825518 1.0 19790 -104079 Nxph3 neurexophilin 3 Novel U 0.0001110678172578747 -0.2628316618799642 1.0 19791 -232875 Zscan18 zinc finger and SCAN domain containing 18 Novel U 0.00011101356616152348 -0.2628322238110368 1.0 19792 -19231 Ptma prothymosin alpha Novel U 0.00011095695189723875 -0.26283281021972515 1.0 19793 -57429 Sult5a1 sulfotransferase family 5A, member 1 Novel U 0.0001109057453471256 -0.2628333406154879 1.0 19794 -75939 4930579G24Rik RIKEN cDNA 4930579G24 gene Novel U 0.00011088564721763491 -0.2628335487912525 1.0 19795 -73940 Hapln2 hyaluronan and proteoglycan link protein 2 Novel U 0.00011087630798330123 -0.2628336455267347 1.0 19796 -227394 Slco4c1 solute carrier organic anion transporter family, member 4C1 Novel N 0.0001108145813006618 -0.26283428488968436 1.0 19797 -67538 Zswim3 zinc finger SWIM-type containing 3 Novel U 0.00011067433901998536 -0.26283573751461736 1.0 19798 -69444 Lyzl6 lysozyme-like 6 Novel U 0.00011036387651028799 -0.26283895327508694 1.0 19799 -330485 Tmem145 transmembrane protein 145 Novel U 0.0001103365945303648 -0.2628392358609381 1.0 19800 -11870 Art1 ADP-ribosyltransferase 1 Novel U 0.00011020447022103337 -0.2628406044001908 1.0 19801 -77862 Thyn1 thymocyte nuclear protein 1 Novel U 0.0001100938516424818 -0.2628417501837911 1.0 19802 -54624 Paf1 Paf1, RNA polymerase II complex component Novel N 0.00011008579793462505 -0.2628418336038323 1.0 19803 -66198 Them5 thioesterase superfamily member 5 Novel N 0.00010997474475208124 -0.26284298388904637 1.0 19804 -211739 Vstm2a V-set and transmembrane domain containing 2A Novel N 0.00010986385340890377 -0.26284413249793365 1.0 19805 -212547 Nepro nucleolus and neural progenitor protein Novel N 0.00010984930240426535 -0.26284428321676134 1.0 19806 -20429 Shox2 SHOX homeobox 2 Novel N 0.00010973284702344087 -0.2628454894577677 1.0 19807 -269823 Pon3 paraoxonase 3 Novel U 0.00010971394400847692 -0.2628456852545753 1.0 19808 -71275 Noxred1 NADP+ dependent oxidoreductase domain containing 1 Novel U 0.00010970705607507497 -0.26284575659956305 1.0 19809 -74123 Foxp4 forkhead box P4 Novel U 0.00010970277896182893 -0.26284580090176146 1.0 19810 -93877 Pcdhb6 protocadherin beta 6 Novel U 0.00010966776992723661 -0.2628461635241909 1.0 19811 -18740 Pitx1 paired-like homeodomain transcription factor 1 Novel U 0.000109518148952009 -0.2628477132933338 1.0 19812 -75029 Purg purine-rich element binding protein G Novel U 0.00010944515352788083 -0.2628484693775373 1.0 19813 -70911 Phyhipl phytanoyl-CoA hydroxylase interacting protein-like Novel U 0.00010912347953332518 -0.26285180126619845 1.0 19814 -66082 Abhd6 abhydrolase domain containing 6 Novel N 0.00010900477271507268 -0.26285303082751965 1.0 19815 -14121 Fbp1 fructose bisphosphatase 1 Novel U 0.00010896065762747952 -0.2628534877701467 1.0 19816 -102954 Nudt10 nudix hydrolase 10 Novel U 0.00010892501251252756 -0.2628538569810756 1.0 19817 -67371 Gtf3c6 general transcription factor IIIC, polypeptide 6, alpha Novel N 0.00010887044937993998 -0.2628544221442093 1.0 19818 -69698 Slc52a3 solute carrier protein family 52, member 3 Novel N 0.00010880267513626782 -0.26285512414759726 1.0 19819 -55963 Slc1a4 solute carrier family 1 (glutamate/neutral amino acid transporter), member 4 Novel U 0.0001087761561137739 -0.26285539883076053 1.0 19820 -100312949 Pate10 prostate and testis expressed 10 Novel U 0.00010874815054112402 -0.26285568891156136 1.0 19821 -100312948 Pate8 prostate and testis expressed 8 Novel U 0.00010864325193539272 -0.2628567754478712 1.0 19822 -102638610 Gm35134 predicted gene, 35134 Novel U 0.00010815559166585864 -0.26286182661691204 1.0 19823 -75801 4930447C04Rik RIKEN cDNA 4930447C04 gene Novel U 0.00010811181669738134 -0.2628622800365965 1.0 19824 -72230 Zfp558 zinc finger protein 558 Novel U 0.0001080100817646642 -0.26286333380368526 1.0 19825 -11684 Alox12 arachidonate 12-lipoxygenase Novel N 0.00010796099949673061 -0.262863842196203 1.0 19826 -73873 Fam161a family with sequence similarity 161, member A Novel U 0.00010791207387442819 -0.2628643489661905 1.0 19827 -104349 Zfp119a zinc finger protein 119a Novel U 0.00010789212071653962 -0.26286455564034394 1.0 19828 -224893 Zfp959 zinc finger protein 959 Novel U 0.00010787318604311896 -0.2628647517650688 1.0 19829 -59052 Mettl9 methyltransferase like 9 Novel U 0.00010782643450812324 -0.2628652360159314 1.0 19830 -331537 Dnaaf6 dynein axonemal assembly factor 6 Novel U 0.00010782244515850164 -0.26286527733748366 1.0 19831 -245509 Ppp4r3c2 protein phosphatase 4 regulatory subunit 3C2 Novel U 0.00010766483043982872 -0.2628669099055584 1.0 19832 -76479 Smndc1 survival motor neuron domain containing 1 Novel N 0.0001076538065011916 -0.26286702409115237 1.0 19833 -71860 Cfap52 cilia and flagella associated protein 52 Novel N 0.00010760802139496381 -0.2628674983317776 1.0 19834 -75514 1700013H16Rik RIKEN cDNA 1700013H16 gene Novel U 0.00010759592744837662 -0.2628676236004788 1.0 19835 -380709 Spata22 spermatogenesis associated 22 Novel U 0.00010754981519403448 -0.26286810122969334 1.0 19836 -75352 Magea13 MAGE family member A13 Novel U 0.00010750308468419178 -0.2628685852627781 1.0 19837 -668039 Gm14434 predicted gene 14434 Novel U 0.00010736520306849142 -0.26287001343602096 1.0 19838 -22767 Zfy1 zinc finger protein 1, Y-linked Novel U 0.0001072557494981826 -0.26287114715250415 1.0 19839 -228966 Ppp1r3d protein phosphatase 1, regulatory subunit 3D Novel U 0.00010725146967577307 -0.26287119148276394 1.0 19840 -98582 Khdc1b KH domain containing 1B Novel U 0.0001070576472609239 -0.2628731990889654 1.0 19841 -217316 Slc16a5 solute carrier family 16 (monocarboxylic acid transporters), member 5 Novel U 0.00010703098409251239 -0.2628734752651873 1.0 19842 -69339 Ccdc54 coiled-coil domain containing 54 Novel U 0.00010689519678119781 -0.2628748817456941 1.0 19843 -232077 Foxi3 forkhead box I3 Novel N 0.00010682781849785379 -0.26287557964773806 1.0 19844 -69064 Fuom fucose mutarotase Novel U 0.0001067402649603027 -0.2628764865244019 1.0 19845 -71985 Acad10 acyl-Coenzyme A dehydrogenase family, member 10 Novel U 0.00010660840586016258 -0.26287785231662647 1.0 19846 -107766 Haao 3-hydroxyanthranilate 3,4-dioxygenase Novel U 0.0001065982280854451 -0.2628779577376824 1.0 19847 -56857 Slc37a2 solute carrier family 37 (glycerol-3-phosphate transporter), member 2 Novel N 0.00010638514190426116 -0.2628801648773423 1.0 19848 -69554 Klhdc2 kelch domain containing 2 Novel U 0.00010634895591037309 -0.26288053969067743 1.0 19849 -243944 4930433I11Rik RIKEN cDNA 4930433I11 gene Novel U 0.00010632040275016136 -0.26288083544337226 1.0 19850 -51960 Kctd18 potassium channel tetramerisation domain containing 18 Novel U 0.00010627062655568407 -0.26288135102355836 1.0 19851 -72128 2610008E11Rik RIKEN cDNA 2610008E11 gene Novel U 0.00010624864423878477 -0.2628815787156742 1.0 19852 -12412 Cbx1 chromobox 1 Novel N 0.00010624077982163766 -0.26288166017504844 1.0 19853 -668526 Scgb2b17 secretoglobin, family 2B, member 17 Novel U 0.00010617766174124921 -0.26288231395005024 1.0 19854 -71998 Slc25a35 solute carrier family 25, member 35 Novel U 0.00010617764612805663 -0.26288231411177115 1.0 19855 -382209 Rhox3a reproductive homeobox 3A Novel U 0.00010606084923684 -0.2628835238901309 1.0 19856 -72701 Zfp618 zinc finger protein 618 Novel U 0.00010594055197450394 -0.2628847699252196 1.0 19857 -666504 Tmem249 transmembrane protein 249 Novel U 0.0001059180702974851 -0.2628850027896911 1.0 19858 -233987 Zfp958 zinc finger protein 958 Novel U 0.00010587559355751321 -0.2628854427623674 1.0 19859 -78414 1700034E13Rik RIKEN cDNA 1700034E13 gene Novel U 0.00010566830457325874 -0.26288758985485206 1.0 19860 -72958 Zfp493 zinc finger protein 493 Novel U 0.00010557742862093274 -0.26288853114497884 1.0 19861 -218194 Phactr1 phosphatase and actin regulator 1 Novel U 0.0001055704758141214 -0.26288860316192325 1.0 19862 -69325 1700012B09Rik RIKEN cDNA 1700012B09 gene Novel U 0.0001054854473033283 -0.2628894838844429 1.0 19863 -104382 Barhl2 BarH like homeobox 2 Novel U 0.00010544811822681478 -0.2628898705377903 1.0 19864 -72273 Smim24 small integral membrane protein 24 Novel U 0.00010544427225578945 -0.2628899103742317 1.0 19865 -100642166 Gm15446 predicted gene 15446 Novel U 0.00010542930080331391 -0.26289006544804433 1.0 19866 -110796 Tshz1 teashirt zinc finger family member 1 Novel U 0.00010533944643892661 -0.26289099615659683 1.0 19867 -233887 Zfp553 zinc finger protein 553 Novel U 0.00010533222122592845 -0.26289107099511555 1.0 19868 -12945 Dmbt1 deleted in malignant brain tumors 1 Novel U 0.00010506121758204205 -0.26289387804195014 1.0 19869 -329375 Cfap77 cilia and flagella associated protein 77 Novel U 0.00010504758342503436 -0.2628940192641002 1.0 19870 -11611 Agxt alanine-glyoxylate aminotransferase Novel U 0.00010501047128802773 -0.26289440367039535 1.0 19871 -76969 Chst1 carbohydrate sulfotransferase 1 Novel N 0.00010461103529101995 -0.2628985410153216 1.0 19872 -74149 Zfp946 zinc finger protein 946 Novel U 0.00010458672096969122 -0.26289879286226264 1.0 19873 -237625 Pla2g3 phospholipase A2, group III Novel U 0.00010452570189288326 -0.26289942489585433 1.0 19874 -19646 Rbbp4 retinoblastoma binding protein 4, chromatin remodeling factor Novel N 0.00010446634841280615 -0.26290003967724984 1.0 19875 -17939 Naga N-acetyl galactosaminidase, alpha Novel U 0.00010442626021879662 -0.2629004549094456 1.0 19876 -97212 Hadha hydroxyacyl-CoA dehydrogenase trifunctional multienzyme complex subunit alpha Novel U 0.00010441331625063255 -0.2629005889826423 1.0 19877 -26434 Prnd prion like protein doppel Novel U 0.00010436071169379822 -0.2629011338589127 1.0 19878 -226356 Cfap221 cilia and flagella associated protein 221 Novel N 0.0001043578541018953 -0.26290116345775566 1.0 19879 -102639505 Zfp969 zinc finger protein 969 Novel U 0.0001037683383562393 -0.2629072696424699 1.0 19880 -269033 4930503L19Rik RIKEN cDNA 4930503L19 gene Novel U 0.0001037482649499451 -0.26290747756215244 1.0 19881 -20425 Shmt1 serine hydroxymethyltransferase 1 (soluble) Novel U 0.00010349067046180282 -0.26291014571739263 1.0 19882 -225908 Myrf myelin regulatory factor Novel U 0.00010345122270905947 -0.26291055431591875 1.0 19883 -27374 Prmt5 protein arginine N-methyltransferase 5 Novel U 0.00010331818658703852 -0.26291193229969734 1.0 19884 -619331 Zfp551 zinc finger protein 551 Novel U 0.00010330486932149752 -0.26291207023949603 1.0 19885 -75642 Spata25 spermatogenesis associated 25 Novel U 0.0001030828705049756 -0.2629143696959398 1.0 19886 -268782 Agxt2 alanine-glyoxylate aminotransferase 2 Novel N 0.00010304803766620819 -0.26291473049333863 1.0 19887 -246084 Defb35 defensin beta 35 Novel U 0.00010298309818826249 -0.26291540313431644 1.0 19888 -212190 Ubxn10 UBX domain protein 10 Novel N 0.00010274299766922424 -0.26291789008759975 1.0 19889 -68240 Rpa3 replication protein A3 Novel U 0.00010256839861559154 -0.2629196985788576 1.0 19890 -67528 Nudt7 nudix hydrolase 7 Novel U 0.000102287915799046 -0.262922603810651 1.0 19891 -80721 Slc19a3 solute carrier family 19, member 3 Novel N 0.000102135727181817 -0.26292418017534536 1.0 19892 -102871 Radx RPA1 related single stranded DNA binding protein, X-linked Novel N 0.00010210676177340709 -0.2629244801980935 1.0 19893 -235956 Zfp825 zinc finger protein 825 Novel U 0.00010206490840276232 -0.2629249137139308 1.0 19894 -66268 Pigyl phosphatidylinositol glycan anchor biosynthesis, class Y-like Novel U 0.00010190376029082082 -0.2629265828807768 1.0 19895 -83434 Rsph6a radial spoke head 6 homolog A (Chlamydomonas) Novel U 0.00010176795348340587 -0.2629279895632236 1.0 19896 -100503970 AY761185 cDNA sequence AY761185 Novel U 0.00010111329655466463 -0.2629347704781708 1.0 19897 -215085 Slc35f1 solute carrier family 35, member F1 Novel U 0.00010093576252237244 -0.2629366093698412 1.0 19898 -100043456 Hsd3b8 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 8 Novel U 0.00010091048027674114 -0.2629368712425103 1.0 19899 -108167848 Gm12258 predicted gene 12258 Novel U 0.00010082866126974623 -0.2629377187210951 1.0 19900 -244810 AW551984 expressed sequence AW551984 Novel U 0.00010082408091150674 -0.2629377661642952 1.0 19901 -19355 Rad1 RAD1 checkpoint DNA exonuclease Novel U 0.00010080722205615132 -0.2629379407877648 1.0 19902 -77577 Spns3 SPNS lysolipid transporter 3, sphingosine-1-phosphate (putative) Novel U 0.00010051563070263133 -0.26294096108141896 1.0 19903 -67103 Ptgr1 prostaglandin reductase 1 Novel N 0.0001005095940455084 -0.262941023608915 1.0 19904 -433700 Spag8 sperm associated antigen 8 Novel U 0.00010050097969944484 -0.26294111283602833 1.0 19905 -76886 Fam81a family with sequence similarity 81, member A Novel U 0.00010044666382363588 -0.26294167543808444 1.0 19906 -116847 Prelp proline arginine-rich end leucine-rich repeat Novel N 0.00010036137054887045 -0.2629425589030206 1.0 19907 -21818 Tgm3 transglutaminase 3, E polypeptide Novel U 0.00010032907685036416 -0.26294289340008814 1.0 19908 -20451 St8sia3 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 3 Novel N 0.0001002989191331086 -0.26294320577273206 1.0 19909 -22626 Slc23a3 solute carrier family 23 (nucleobase transporters), member 3 Novel N 0.00010022396406566875 -0.26294398215485665 1.0 19910 -233799 Acsm2 acyl-CoA synthetase medium-chain family member 2 Novel U 0.00010018674710404006 -0.2629443676469217 1.0 19911 -268294 Zbtb24 zinc finger and BTB domain containing 24 Novel U 0.00010009753632300727 -0.262945291689259 1.0 19912 -71522 Ggt6 gamma-glutamyltransferase 6 Novel U 9.984837879043405e-05 -0.2629478724547908 1.0 19913 -69612 Kansl2 KAT8 regulatory NSL complex subunit 2 Novel U 9.959566617007228e-05 -0.26295049004380505 1.0 19914 -72350 Zc2hc1c zinc finger, C2HC-type containing 1C Novel U 9.959236469726425e-05 -0.2629505242403518 1.0 19915 -78725 Ly6g6g lymphocyte antigen 6 family member G6G Novel U 9.951281941053269e-05 -0.2629513481678169 1.0 19916 -81600 Chia1 chitinase, acidic 1 Novel U 9.947548919887824e-05 -0.26295173483292206 1.0 19917 -245404 Dcaf12l1 DDB1 and CUL4 associated factor 12-like 1 Novel U 9.944348594466671e-05 -0.2629520663215771 1.0 19918 -231642 Alkbh2 alkB homolog 2, alpha-ketoglutarate-dependent dioxygenase Novel N 9.943053464324815e-05 -0.2629522004707315 1.0 19919 -70045 Gpr15lg G protein coupled receptor 15 ligand Novel U 9.931538679434289e-05 -0.26295339316836513 1.0 19920 -14651 Hagh hydroxyacyl glutathione hydrolase Novel N 9.913432380367761e-05 -0.26295526861287033 1.0 19921 -66501 1700029H14Rik RIKEN cDNA 1700029H14 gene Novel U 9.907659169884515e-05 -0.26295586660011433 1.0 19922 -71868 Spmap2l sperm microtubule associated protein 2 like Novel U 9.905790978017423e-05 -0.26295606010681377 1.0 19923 -239591 Ttll8 tubulin tyrosine ligase-like family, member 8 Novel U 9.893423218857896e-05 -0.26295734115524183 1.0 19924 -382109 Fbxw26 F-box and WD-40 domain protein 26 Novel U 9.887286726861922e-05 -0.2629579767710655 1.0 19925 -20536 Slc4a3 solute carrier family 4 (anion exchanger), member 3 Novel U 9.880174400846251e-05 -0.2629587134634562 1.0 19926 -239559 A4galt alpha 1,4-galactosyltransferase Novel U 9.876901845845785e-05 -0.2629590524336273 1.0 19927 -546672 Krtap13-23 keratin associated protein 13-23 Novel U 9.876616702972982e-05 -0.2629590819686324 1.0 19928 -102633156 Gm4631 predicted gene 4631 Novel U 9.867429161409146e-05 -0.2629600336111673 1.0 19929 -66875 Swt1 SWT1 RNA endoribonuclease homolog (S. cerevisiae) Novel U 9.857474769067011e-05 -0.2629610646838538 1.0 19930 -72401 Slc43a1 solute carrier family 43, member 1 Novel U 9.84818963239402e-05 -0.26296202643525807 1.0 19931 -64290 Foxb1 forkhead box B1 Novel U 9.842418729224639e-05 -0.26296262418351124 1.0 19932 -75172 Ccdc146 coiled-coil domain containing 146 Novel U 9.83677949910253e-05 -0.2629632082931135 1.0 19933 -69890 Zfp219 zinc finger protein 219 Novel N 9.831238106526512e-05 -0.2629637822687349 1.0 19934 -277496 Lkaaear1 LKAAEAR motif containing 1 (IKAAEAR murine motif) Novel U 9.823425491881805e-05 -0.2629645914967915 1.0 19935 -73610 Zfp433 zinc finger protein 433 Novel U 9.810571500191698e-05 -0.26296592290902526 1.0 19936 -73466 Ms4a13 membrane-spanning 4-domains, subfamily A, member 13 Novel U 9.806843252395545e-05 -0.2629663090797064 1.0 19937 -108168557 Gm21627 predicted gene, 21627 Novel U 9.799144268174024e-05 -0.2629671065379611 1.0 19938 -75434 Cimip2c ciliary microtubule inner protein 2C Novel U 9.794213779126397e-05 -0.2629676172363959 1.0 19939 -20863 Stfa3 stefin A3 Novel U 9.790869596368594e-05 -0.2629679636257466 1.0 19940 -320256 Dlec1 deleted in lung and esophageal cancer 1 Novel U 9.78859440167854e-05 -0.2629681992896647 1.0 19941 -382106 Fbxw24 F-box and WD-40 domain protein 24 Novel U 9.779420853000244e-05 -0.26296914948282113 1.0 19942 -75859 4930568D16Rik RIKEN cDNA 4930568D16 gene Novel U 9.765852908832177e-05 -0.26297055484601783 1.0 19943 -218100 Zfp322a zinc finger protein 322A Novel U 9.764645937828526e-05 -0.2629706798636776 1.0 19944 -72482 Acbd6 acyl-Coenzyme A binding domain containing 6 Novel U 9.75360923272332e-05 -0.26297182304196426 1.0 19945 -67710 Polr2g polymerase (RNA) II (DNA directed) polypeptide G Novel N 9.745275575894692e-05 -0.26297268623939907 1.0 19946 -408022 Primpol primase and polymerase (DNA-directed) Novel N 9.73980540791909e-05 -0.26297325283759976 1.0 19947 -636177 Rhox4f reproductive homeobox 4F Novel U 9.735575482718309e-05 -0.2629736909718615 1.0 19948 -329993 Aadacl4fm5 AADACL4 family member 5 Novel U 9.724458803941383e-05 -0.2629748424337949 1.0 19949 -74218 1700016H13Rik RIKEN cDNA 1700016H13 gene Novel U 9.722314728522927e-05 -0.2629750645164219 1.0 19950 -67236 Cinp cyclin dependent kinase 2 interacting protein Novel N 9.719848279280927e-05 -0.26297531999042356 1.0 19951 -140483 Hnmt histamine N-methyltransferase Novel U 9.709396812409448e-05 -0.2629764025499264 1.0 19952 -69671 Tmem52 transmembrane protein 52 Novel U 9.708096964831712e-05 -0.2629765371877112 1.0 19953 -13409 Tmc1 transmembrane channel-like gene family 1 Novel N 9.703807362175263e-05 -0.2629769815033442 1.0 19954 -13599 Ecel1 endothelin converting enzyme-like 1 Novel U 9.68981690000305e-05 -0.2629784306308169 1.0 19955 -100048534 Cfap43 cilia and flagella associated protein 43 Novel N 9.686239495295734e-05 -0.26297880117722044 1.0 19956 -70691 3830403N18Rik RIKEN cDNA 3830403N18 gene Novel U 9.672929455035671e-05 -0.26298017982681515 1.0 19957 -192140 Tmc2 transmembrane channel-like gene family 2 Novel N 9.672141846549385e-05 -0.2629802614070432 1.0 19958 -243377 Aoc1l3 amine oxidase copper containing 1-like 3 Novel U 9.659036045782823e-05 -0.26298161890157834 1.0 19959 -14840 Gsg1 germ cell associated 1 Novel U 9.641408706817418e-05 -0.2629834447355537 1.0 19960 -20763 Sprr2i small proline-rich protein 2I Novel U 9.63024392536692e-05 -0.26298460117994615 1.0 19961 -268930 Pkmyt1 protein kinase, membrane associated tyrosine/threonine 1 Novel U 9.62924667914714e-05 -0.2629847044743817 1.0 19962 -17071 Ly6f lymphocyte antigen 6 family member F Novel U 9.623816207365933e-05 -0.26298526696086366 1.0 19963 -15160 Serpind1 serine (or cysteine) peptidase inhibitor, clade D, member 1 Novel U 9.621361897041521e-05 -0.2629855211775203 1.0 19964 -217700 Acot6 acyl-CoA thioesterase 6 Novel N 9.594066527403865e-05 -0.26298834842293445 1.0 19965 -70020 Ino80b INO80 complex subunit B Novel N 9.593390247554806e-05 -0.2629884184717789 1.0 19966 -72215 Spmap1 sperm microtubule associated protein 1 Novel U 9.588970268556717e-05 -0.26298887629175055 1.0 19967 -100862025 Gm21409 predicted gene, 21409 Novel U 9.588484277648626e-05 -0.26298892663052903 1.0 19968 -18601 Padi3 peptidyl arginine deiminase, type III Novel U 9.58060042414203e-05 -0.2629897432374836 1.0 19969 -68668 Klk5 kallikrein related-peptidase 5 Novel U 9.574081288324204e-05 -0.2629904184874285 1.0 19970 -227696 Phyhd1 phytanoyl-CoA dioxygenase domain containing 1 Novel U 9.566166822716154e-05 -0.26299123826517445 1.0 19971 -219249 Tdrd3 tudor domain containing 3 Novel U 9.565488881847218e-05 -0.26299130848606683 1.0 19972 -433247 Cyp2c68 cytochrome P450, family 2, subfamily c, polypeptide 68 Novel U 9.563136834162233e-05 -0.2629915521103928 1.0 19973 -77781 Epm2aip1 EPM2A interacting protein 1 Novel U 9.562385704836125e-05 -0.2629916299121215 1.0 19974 -214568 Gm136 predicted gene 136 Novel U 9.558672478647127e-05 -0.2629920145268695 1.0 19975 -22700 Zfp40 zinc finger protein 40 Novel U 9.533019999029127e-05 -0.2629946716022755 1.0 19976 -110446 Acat1 acetyl-Coenzyme A acetyltransferase 1 Novel N 9.522258237984456e-05 -0.2629957863019468 1.0 19977 -330096 Shisa3 shisa family member 3 Novel U 9.519975247869109e-05 -0.26299602277331247 1.0 19978 -76573 Spatc1l spermatogenesis and centriole associated 1 like Novel U 9.517760731925737e-05 -0.2629962521521459 1.0 19979 -69592 Odam odontogenic, ameloblast asssociated Novel U 9.513014261303803e-05 -0.2629967437900126 1.0 19980 -347712 Pramel7 PRAME like 7 Novel U 9.478531515219446e-05 -0.2630003155015164 1.0 19981 -16873 Lhx5 LIM homeobox protein 5 Novel U 9.475341784907974e-05 -0.26300064589273353 1.0 19982 -66643 Lix1 limb and CNS expressed 1 Novel U 9.471603714079698e-05 -0.2630010330808811 1.0 19983 -215928 Mfsd4b5 major facilitator superfamily domain containing 4B5 Novel U 9.470824837163243e-05 -0.26300111375669605 1.0 19984 -234413 Zfp961 zinc finger protein 961 Novel U 9.458839964149982e-05 -0.2630023551459029 1.0 19985 -66158 Rtl8a retrotransposon Gag like 8A Novel U 9.457738867186695e-05 -0.2630024691971644 1.0 19986 -207785 Csrnp2 cysteine-serine-rich nuclear protein 2 Novel U 9.450308335758468e-05 -0.26300323884916715 1.0 19987 -235184 Msantd2 Myb/SANT-like DNA-binding domain containing 2 Novel U 9.448371567140823e-05 -0.2630034394590239 1.0 19988 -56702 H1f5 H1.5 linker histone, cluster member Novel U 9.439837345014491e-05 -0.2630043234309462 1.0 19989 -194588 Obox7 oocyte specific homeobox 7 Novel U 9.43896566104462e-05 -0.26300441371968525 1.0 19990 -641361 Pinlyp phospholipase A2 inhibitor and LY6/PLAUR domain containing Novel U 9.430469214405875e-05 -0.2630052937788351 1.0 19991 -232333 Slc6a1 solute carrier family 6 (neurotransmitter transporter, GABA), member 1 Novel U 9.423141801021374e-05 -0.2630060527499047 1.0 19992 -54338 Slc23a2 solute carrier family 23 (nucleobase transporters), member 2 Novel N 9.422913062613279e-05 -0.2630060764425538 1.0 19993 -72668 Skida1 SKI/DACH domain containing 1 Novel U 9.412955856497869e-05 -0.26300710780669 1.0 19994 -546726 Cyp26c1 cytochrome P450, family 26, subfamily c, polypeptide 1 Novel U 9.411678787559131e-05 -0.2630072400850708 1.0 19995 -71761 Amdhd1 amidohydrolase domain containing 1 Novel N 9.400128082325515e-05 -0.26300843650332184 1.0 19996 -574437 Xlr3b X-linked lymphocyte-regulated 3B Novel U 9.395779835138658e-05 -0.263008886893336 1.0 19997 -68539 Tmem109 transmembrane protein 109 Novel U 9.394013447272122e-05 -0.2630090698552106 1.0 19998 -15220 Foxq1 forkhead box Q1 Novel N 9.390454385454616e-05 -0.26300943850166364 1.0 19999 -319192 H2ac19 H2A clustered histone 19 Novel U 9.388719171498287e-05 -0.2630096182345549 1.0 20000 -67855 Asprv1 aspartic peptidase, retroviral-like 1 Novel U 9.38429913060599e-05 -0.26301007606093746 1.0 20001 -99709 Clca4b chloride channel accessory 4B Novel U 9.370799176227505e-05 -0.26301147438177414 1.0 20002 -67922 Fam32a family with sequence similarity 32, member A Novel U 9.335039624957529e-05 -0.26301517834433935 1.0 20003 -60406 Sap30 sin3 associated polypeptide Novel U 9.319642683141477e-05 -0.26301677315451116 1.0 20004 -241066 Carf calcium response factor Novel N 9.318542481721246e-05 -0.26301688711301263 1.0 20005 -66757 Adat2 adenosine deaminase, tRNA-specific 2 Novel U 9.307128298426389e-05 -0.2630180693903661 1.0 20006 -12035 Bcat1 branched chain aminotransferase 1, cytosolic Novel N 9.305992601151515e-05 -0.2630181870255165 1.0 20007 -13850 Ephx2 epoxide hydrolase 2, cytoplasmic Novel U 9.297746510521847e-05 -0.2630190411528731 1.0 20008 -76650 Srxn1 sulfiredoxin 1 homolog (S. cerevisiae) Novel N 9.279892276286333e-05 -0.26302089048858596 1.0 20009 -214425 Cilp cartilage intermediate layer protein, nucleotide pyrophosphohydrolase Novel U 9.273876573239114e-05 -0.26302151359313003 1.0 20010 -71760 Etnppl ethanolamine phosphate phospholyase Novel U 9.271763591973613e-05 -0.26302173245503496 1.0 20011 -234356 Csgalnact1 chondroitin sulfate N-acetylgalactosaminyltransferase 1 Novel U 9.271616218485556e-05 -0.26302174771993236 1.0 20012 -319800 Slc22a30 solute carrier family 22, member 30 Novel U 9.270528877681869e-05 -0.26302186034633535 1.0 20013 -14431 Gamt guanidinoacetate methyltransferase Novel N 9.262681226350748e-05 -0.2630226732034805 1.0 20014 -243963 Zfp473 zinc finger protein 473 Novel U 9.258273021502395e-05 -0.26302312980388953 1.0 20015 -18857 Pmp2 peripheral myelin protein 2 Novel U 9.249883968604649e-05 -0.26302399873923094 1.0 20016 -67885 Mtln mitoregulin Novel N 9.245194376768432e-05 -0.2630244844856117 1.0 20017 -100113398 Adat3 adenosine deaminase, tRNA-specific 3 Novel U 9.235716155513355e-05 -0.2630254662366535 1.0 20018 -622408 Mcidas multiciliate differentiation and DNA synthesis associated cell cycle protein Novel U 9.234704369799641e-05 -0.2630255710370851 1.0 20019 -381148 Prob1 proline rich basic protein 1 Novel U 9.233390815183207e-05 -0.2630257070946405 1.0 20020 -230959 Ajap1 adherens junction associated protein 1 Novel U 9.223157031656091e-05 -0.2630267671065741 1.0 20021 -108168511 Gm21865 predicted gene, 21865 Novel U 9.219462005257992e-05 -0.26302714983619374 1.0 20022 -74561 Nkx6-3 NK6 homeobox 3 Novel N 9.216868498286134e-05 -0.2630274184707933 1.0 20023 -78465 Ccdc190 coiled-coil domain containing 190 Novel U 9.203022493899425e-05 -0.26302885263537606 1.0 20024 -664994 Isoc2a isochorismatase domain containing 2a Novel U 9.202962727835397e-05 -0.2630288588259253 1.0 20025 -213603 Slc44a3 solute carrier family 44, member 3 Novel U 9.201879363744435e-05 -0.2630289710404217 1.0 20026 -77908 Pate13 prostate and testis expressed 13 Novel U 9.19134608254647e-05 -0.2630300620742256 1.0 20027 -214580 Pstk phosphoseryl-tRNA kinase Novel U 9.179841618303255e-05 -0.26303125370284997 1.0 20028 -69987 Spaca9 sperm acrosome associated 9 Novel N 9.161229384724705e-05 -0.2630331815518856 1.0 20029 -66129 Prxl2c peroxiredoxin like 2C Novel U 9.14597055163454e-05 -0.26303476205680104 1.0 20030 -209837 Slc38a5 solute carrier family 38, member 5 Novel N 9.145865195037596e-05 -0.2630347729696027 1.0 20031 -232969 Zfp428 zinc finger protein 428 Novel U 9.143341139504518e-05 -0.26303503441044507 1.0 20032 -381476 Stpg2 sperm tail PG rich repeat containing 2 Novel U 9.141342343234581e-05 -0.26303524144510565 1.0 20033 -69281 Spata4 spermatogenesis associated 4 Novel U 9.135117011914636e-05 -0.26303588626287727 1.0 20034 -380994 Gm20736 predicted gene, 20736 Novel U 9.109412722861435e-05 -0.2630385487046876 1.0 20035 -117599 Helb helicase (DNA) B Novel N 9.107238784930222e-05 -0.26303877388046387 1.0 20036 -19660 Rbp2 retinol binding protein 2, cellular Novel N 9.104668170168617e-05 -0.26303904014389584 1.0 20037 -112418 1700102P08Rik RIKEN cDNA 1700102P08 gene Novel U 9.089163916025819e-05 -0.2630406460694432 1.0 20038 -234076 Tmco3 transmembrane and coiled-coil domains 3 Novel U 9.074882696793687e-05 -0.26304212531343657 1.0 20039 -67828 Lce1f late cornified envelope 1F Novel U 9.051008805208396e-05 -0.26304459816327885 1.0 20040 -73229 Zfp983 zinc finger protein 983 Novel U 9.050115142410217e-05 -0.2630446907285777 1.0 20041 -67290 3110040N11Rik RIKEN cDNA 3110040N11 gene Novel U 9.035993939787216e-05 -0.2630461533981033 1.0 20042 -100503949 Zfp965 zinc finger protein 965 Novel U 9.029444932845526e-05 -0.2630468317420895 1.0 20043 -67618 Aasdhppt aminoadipate-semialdehyde dehydrogenase-phosphopantetheinyl transferase Novel N 9.002135093537037e-05 -0.2630496604862674 1.0 20044 -70166 Lipn lipase, family member N Novel U 8.997670361086126e-05 -0.2630501229417869 1.0 20045 -78789 Vsig1 V-set and immunoglobulin domain containing 1 Novel U 8.996399983658788e-05 -0.26305025452706327 1.0 20046 -76813 Armc6 armadillo repeat containing 6 Novel U 8.985538131971158e-05 -0.2630513795940904 1.0 20047 -67750 4930578I06Rik RIKEN cDNA 4930578I06 gene Novel U 8.980638097430035e-05 -0.2630518871380574 1.0 20048 -66930 Fank1 fibronectin type 3 and ankyrin repeat domains 1 Novel U 8.971362785109215e-05 -0.2630528478718585 1.0 20049 -13445 Cdk2ap1 cyclin dependent kinase 2 associated protein 1 Novel U 8.952136912301087e-05 -0.2630548392814438 1.0 20050 -78444 Pgpep1l pyroglutamyl-peptidase I-like Novel U 8.938426928070252e-05 -0.26305625935710353 1.0 20051 -71241 Dmrtc2 doublesex and mab-3 related transcription factor like family C2 Novel U 8.925091819656312e-05 -0.2630576406032494 1.0 20052 -71932 Ephx3 epoxide hydrolase 3 Novel N 8.915678319023628e-05 -0.2630586156505504 1.0 20053 -233899 Cfap119 cilia and flagella associated protein 119 Novel U 8.913354031030759e-05 -0.2630588563995366 1.0 20054 -224598 Zfp758 zinc finger protein 758 Novel U 8.894884168643576e-05 -0.26306076950181106 1.0 20055 -382064 Gm1110 predicted gene 1110 Novel U 8.892018580708305e-05 -0.2630610663184673 1.0 20056 -100101807 Fam177a2 family with sequence similarity 177 member A2 Novel U 8.886892437445097e-05 -0.2630615972827014 1.0 20057 -76486 Ly6k lymphocyte antigen 6 family member K Novel U 8.885431075232487e-05 -0.263061748650119 1.0 20058 -28081 Vcf1 VCP nuclear cofactor family member 1 Novel U 8.851604909107028e-05 -0.26306525235328654 1.0 20059 -108927 Lhfpl6 LHFPL tetraspan subfamily member 6 Novel U 8.846445809004815e-05 -0.26306578673117914 1.0 20060 -234728 Cmtr2 cap methyltransferase 2 Novel N 8.84224416440405e-05 -0.26306622193614565 1.0 20061 -100504715 Tmppe transmembrane protein with metallophosphoesterase domain Novel U 8.834902159784781e-05 -0.2630669824185706 1.0 20062 -73463 C2cd6 C2 calcium dependent domain containing 6 Novel U 8.822649247783525e-05 -0.26306825157116775 1.0 20063 -243905 Zfp568 zinc finger protein 568 Novel U 8.816984866152603e-05 -0.263068838285955 1.0 20064 -74843 Mss51 MSS51 mitochondrial translational activator Novel U 8.816711082859215e-05 -0.26306886664433854 1.0 20065 -74203 Eif4enif1 eukaryotic translation initiation factor 4E nuclear import factor 1 Novel U 8.813086319843142e-05 -0.26306924209610016 1.0 20066 -381236 Lipo3 lipase, member O3 Novel U 8.798079315276732e-05 -0.2630707965166999 1.0 20067 -108168525 Gm20937 predicted gene, 20937 Novel U 8.790892409732267e-05 -0.2630715409340136 1.0 20068 -100043684 Amy2a4 amylase 2a4 Novel U 8.767667263650057e-05 -0.26307394658700994 1.0 20069 -70979 Fancd2os Fancd2 opposite strand Novel U 8.74585314818658e-05 -0.26307620608591864 1.0 20070 -75472 Cfap126 cilia and flagella associated protein 126 Novel U 8.74407375591976e-05 -0.2630763903947847 1.0 20071 -240817 Teddm2 transmembrane epididymal family member 2 Novel U 8.736469046296404e-05 -0.2630771780881076 1.0 20072 -268670 Zfp759 zinc finger protein 759 Novel U 8.732305865305766e-05 -0.263077609309026 1.0 20073 -240034 Zfp760 zinc finger protein 760 Novel U 8.726353073808551e-05 -0.2630782258972124 1.0 20074 -67667 Alkbh8 alkB homolog 8, tRNA methyltransferase Novel U 8.725786924580092e-05 -0.2630782845387634 1.0 20075 -268709 Fam107a family with sequence similarity 107, member A Novel U 8.7179204796294e-05 -0.2630790993425454 1.0 20076 -216136 Ilvbl ilvB (bacterial acetolactate synthase)-like Novel N 8.694208041749242e-05 -0.26308155546906603 1.0 20077 -74666 Brme1 break repair meiotic recombinase recruitment factor 1 Novel U 8.661465151270846e-05 -0.26308494696689816 1.0 20078 -78076 Lcn8 lipocalin 8 Novel U 8.661162700627301e-05 -0.26308497829463634 1.0 20079 -238662 Spata31d1b spermatogenesis associated 31 subfamily D, member 1B Novel U 8.660773421222119e-05 -0.2630850186160692 1.0 20080 -208665 Akr1d1 aldo-keto reductase family 1, member D1 Novel U 8.657926995671571e-05 -0.263085313447892 1.0 20081 -207182 Ggt7 gamma-glutamyltransferase 7 Novel N 8.655636514757455e-05 -0.2630855506951521 1.0 20082 -387132 Ssxb2 SSX member B2 Novel U 8.65250365281444e-05 -0.26308587519596227 1.0 20083 -74026 Msl1 male specific lethal 1 Novel U 8.649482193192672e-05 -0.26308618815775664 1.0 20084 -76568 Ift46 intraflagellar transport 46 Novel U 8.649340402432601e-05 -0.263086202844397 1.0 20085 -30928 Zbtb18 zinc finger and BTB domain containing 18 Novel U 8.634919091726233e-05 -0.2630876965990192 1.0 20086 -404634 Macroh2a2 macroH2A.2 histone Novel U 8.633869073829436e-05 -0.2630878053595278 1.0 20087 -67017 Fam210b family with sequence similarity 210, member B Novel U 8.616320890471984e-05 -0.26308962299459127 1.0 20088 -70984 4931406C07Rik RIKEN cDNA 4931406C07 gene Novel U 8.615685165644188e-05 -0.26308968884275996 1.0 20089 -100504183 Krtap16-1 keratin associated protein 16-1 Novel U 8.60292214282695e-05 -0.2630910108324678 1.0 20090 -235504 Slc17a5 solute carrier family 17 (anion/sugar transporter), member 5 Novel N 8.59659017421979e-05 -0.26309166669569456 1.0 20091 -16447 Ivl involucrin Novel U 8.58831370800338e-05 -0.2630925239693445 1.0 20092 -14867 Gstm6 glutathione S-transferase, mu 6 Novel U 8.582078355801566e-05 -0.26309316982507586 1.0 20093 -665270 Plb1 phospholipase B1 Novel U 8.560848095307465e-05 -0.26309536884847873 1.0 20094 -13215 Defb2 defensin beta 2 Novel U 8.549508280298651e-05 -0.26309654342278954 1.0 20095 -246703 Naxe NAD(P)HX epimerase Novel U 8.533752980571658e-05 -0.263098175351556 1.0 20096 -75210 Prr3 proline-rich polypeptide 3 Novel U 8.532670623691514e-05 -0.26309828746172587 1.0 20097 -626305 Scgb1b7 secretoglobin, family 1B, member 7 Novel U 8.526113911668434e-05 -0.26309896660380183 1.0 20098 -243616 Slc6a11 solute carrier family 6 (neurotransmitter transporter, GABA), member 11 Novel U 8.51904602929873e-05 -0.26309969869273425 1.0 20099 -108168552 Gm20890 predicted gene, 20890 Novel U 8.509437885440798e-05 -0.2631006939011165 1.0 20100 -20521 Slc22a12 solute carrier family 22 (organic anion/cation transporter), member 12 Novel N 8.504046704104305e-05 -0.2631012523179071 1.0 20101 -381411 Accsl 1-aminocyclopropane-1-carboxylate synthase (inactive)-like Novel U 8.482373587132256e-05 -0.2631034972122384 1.0 20102 -70061 Sdr9c7 4short chain dehydrogenase/reductase family 9C, member 7 Novel U 8.481923587235897e-05 -0.26310354382307977 1.0 20103 -68347 Mettl26 methyltransferase like 26 Novel U 8.449819549968441e-05 -0.2631068691487063 1.0 20104 -214663 Slc25a29 solute carrier family 25 (mitochondrial carrier, palmitoylcarnitine transporter), member 29 Novel N 8.444017936590407e-05 -0.2631074700779128 1.0 20105 -328789 Lhfpl5 lipoma HMGIC fusion partner-like 5 Novel N 8.439760554757976e-05 -0.26310791105612347 1.0 20106 -117171 1110038F14Rik RIKEN cDNA 1110038F14 gene Novel U 8.404000009365787e-05 -0.26311161512165954 1.0 20107 -64705 Dpys dihydropyrimidinase Novel N 8.399911495870138e-05 -0.26311203860854343 1.0 20108 -66595 Aste1 asteroid homolog 1 Novel U 8.398651996222721e-05 -0.26311216906710283 1.0 20109 -94353 Hmgn3 high mobility group nucleosomal binding domain 3 Novel U 8.383049990693478e-05 -0.26311378511770667 1.0 20110 -67993 Nudt12 nudix hydrolase 12 Novel N 8.381416049297192e-05 -0.26311395436081936 1.0 20111 -108168547 Gm20894 predicted gene, 20894 Novel U 8.37994939499384e-05 -0.26311410627639 1.0 20112 -544922 Zkscan4 zinc finger with KRAB and SCAN domains 4 Novel U 8.37899114373121e-05 -0.26311420553174075 1.0 20113 -72462 Rrp1b ribosomal RNA processing 1B Novel U 8.372544859253752e-05 -0.2631148732357678 1.0 20114 -69219 Ddah1 dimethylarginine dimethylaminohydrolase 1 Novel N 8.372403034615838e-05 -0.2631148879259172 1.0 20115 -238693 Zfp58 zinc finger protein 58 Novel U 8.370266870297096e-05 -0.2631151091891151 1.0 20116 -12023 Barx2 BarH-like homeobox 2 Novel N 8.350125757274436e-05 -0.263117195398981 1.0 20117 -69504 Zfp932 zinc finger protein 932 Novel U 8.344171900649955e-05 -0.2631178120974929 1.0 20118 -98388 Chst10 carbohydrate sulfotransferase 10 Novel N 8.329586805783638e-05 -0.26311932281682454 1.0 20119 -17192 Mbd3 methyl-CpG binding domain protein 3 Novel N 8.321811595127567e-05 -0.26312012817058833 1.0 20120 -269954 Ttll13 tubulin tyrosine ligase-like family, member 13 Novel U 8.306057790724165e-05 -0.2631217599444697 1.0 20121 -67971 Tppp3 tubulin polymerization-promoting protein family member 3 Novel N 8.290675898767128e-05 -0.26312335319578206 1.0 20122 -71754 Cyp2d40 cytochrome P450, family 2, subfamily d, polypeptide 40 Novel U 8.27226156821549e-05 -0.2631252605460872 1.0 20123 -64833 Acot10 acyl-CoA thioesterase 10 Novel U 8.258930325903711e-05 -0.26312664139178343 1.0 20124 -242735 Lrrc38 leucine rich repeat containing 38 Novel N 8.258136686589952e-05 -0.26312672359668265 1.0 20125 -74492 Kbtbd13 kelch repeat and BTB (POZ) domain containing 13 Novel U 8.2578047308299e-05 -0.2631267579805512 1.0 20126 -19118 Prm1 protamine 1 Novel U 8.248335301922358e-05 -0.2631277388208845 1.0 20127 -67278 Pagr1a PAXIP1 associated glutamate rich protein 1A Novel U 8.246370484173725e-05 -0.263127942336061 1.0 20128 -435927 Slco1a7 solute carrier organic anion transporter family, member 1a7 Novel U 8.242791642513137e-05 -0.26312831303130374 1.0 20129 -237775 Zfp867 zinc finger protein 867 Novel U 8.229001824282831e-05 -0.26312974137614287 1.0 20130 -665913 Zscan4-ps2 zinc finger and SCAN domain containing 4, pseudogene 2 Novel U 8.227435629632833e-05 -0.26312990360206984 1.0 20131 -69332 Lelp1 late cornified envelope-like proline-rich 1 Novel U 8.216470170904202e-05 -0.2631310394006803 1.0 20132 -67432 Hoga1 4-hydroxy-2-oxoglutarate aldolase 1 Novel N 8.207906237279653e-05 -0.26313192645010985 1.0 20133 -16688 Krt6b keratin 6B Novel U 8.191232401350447e-05 -0.2631336535205542 1.0 20134 -223917 Krt79 keratin 79 Novel U 8.157932611889273e-05 -0.26313710270179985 1.0 20135 -14871 Gstt1 glutathione S-transferase, theta 1 Novel U 8.150918969149277e-05 -0.26313782917260925 1.0 20136 -102423 Hinfp histone H4 transcription factor Novel N 8.134996901339062e-05 -0.26313947837515894 1.0 20137 -69216 Svbp small vasohibin binding protein Novel U 8.133256740706521e-05 -0.2631396586204252 1.0 20138 -74401 Terb2 telomere repeat binding bouquet formation protein 2 Novel N 8.119722427329975e-05 -0.26314106050015557 1.0 20139 -320244 Ttll5 tubulin tyrosine ligase-like family, member 5 Novel U 8.118797116041917e-05 -0.26314115634359464 1.0 20140 -56752 Aldh9a1 aldehyde dehydrogenase 9, subfamily A1 Novel U 8.104747237542075e-05 -0.263142611625391 1.0 20141 -240549 Gm4952 predicted gene 4952 Novel U 8.103463260987858e-05 -0.2631427446192604 1.0 20142 -74264 Rnf138rt1 ring finger protein 138, retrogene 1 Novel U 8.096664206009611e-05 -0.26314344886313995 1.0 20143 -11989 Slc7a3 solute carrier family 7 (cationic amino acid transporter, y+ system), member 3 Novel U 8.093466912856365e-05 -0.2631437800377137 1.0 20144 -70567 Fra10ac1 FRA10A associated CGG repeat 1 Novel U 8.090572096175124e-05 -0.26314407988187394 1.0 20145 -18979 Pon1 paraoxonase 1 Novel U 8.089820835012961e-05 -0.2631441576972582 1.0 20146 -66381 Rnf113a2 ring finger protein 113A2 Novel U 8.08969257033353e-05 -0.2631441709828715 1.0 20147 -232973 Lypd4 Ly6/Plaur domain containing 4 Novel U 8.077006659914513e-05 -0.26314548498530244 1.0 20148 -269870 Zfp446 zinc finger protein 446 Novel U 8.076921796894443e-05 -0.26314549377538615 1.0 20149 -75429 Cfap144 cilia and flagella associated protein 144 Novel U 8.068540884287004e-05 -0.26314636186755896 1.0 20150 -75185 Samt4 spermatogenesis associated multipass transmembrane protein 4 Novel U 8.05585524662408e-05 -0.2631476758417379 1.0 20151 -103551 Epop elongin BC and polycomb repressive complex 2 associated protein Novel U 8.044509335445129e-05 -0.26314885104748803 1.0 20152 -385377 Pnma5 paraneoplastic antigen family 5 Novel U 8.043897504212185e-05 -0.26314891442076604 1.0 20153 -217666 L2hgdh L-2-hydroxyglutarate dehydrogenase Novel U 8.004457647853426e-05 -0.26315299958812255 1.0 20154 -18292 Sebox SEBOX homeobox Novel U 8.003779900394018e-05 -0.26315306978898156 1.0 20155 -246082 Defb15 defensin beta 15 Novel U 7.976726889391223e-05 -0.263155871930968 1.0 20156 -234839 Piezo1 piezo-type mechanosensitive ion channel component 1 Novel U 7.944036808953559e-05 -0.2631592579587535 1.0 20157 -210853 Zfp947 zinc finger protein 947 Novel U 7.941301067761693e-05 -0.26315954132592684 1.0 20158 -227736 Cfap157 cilia and flagella associated protein 157 Novel U 7.903764672226658e-05 -0.2631634293334369 1.0 20159 -68625 Cfap57 cilia and flagella associated protein 57 Novel U 7.891492876100129e-05 -0.26316470044204554 1.0 20160 -232855 Zfp772 zinc finger protein 772 Novel U 7.890093960899679e-05 -0.26316484534122214 1.0 20161 -20888 Sult1c1 sulfotransferase family, cytosolic, 1C, member 1 Novel N 7.874513665165183e-05 -0.2631664591431326 1.0 20162 -269356 Slc4a11 solute carrier family 4, sodium bicarbonate transporter-like, member 11 Novel U 7.86252886834558e-05 -0.2631677005244474 1.0 20163 -320541 Slc35e2 solute carrier family 35, member E2 Novel U 7.84632125911925e-05 -0.26316937930328305 1.0 20164 -18027 Nfia nuclear factor I/A Novel U 7.836398220365734e-05 -0.26317040712837514 1.0 20165 -207151 Slc22a19 solute carrier family 22 (organic anion transporter), member 19 Novel U 7.835117518569621e-05 -0.26317053978304616 1.0 20166 -68185 Coa4 cytochrome c oxidase assembly factor 4 Novel U 7.824986139334401e-05 -0.26317158918797684 1.0 20167 -546123 Gm5916 predicted gene 5916 Novel U 7.823566506725008e-05 -0.26317173623305584 1.0 20168 -626316 Zfp987 zinc finger protein 987 Novel U 7.804731867363607e-05 -0.26317368711880934 1.0 20169 -245683 Klhl34 kelch-like 34 Novel U 7.791786778227593e-05 -0.2631750279668866 1.0 20170 -77684 Bsph2 binder of sperm protein homolog 2 Novel U 7.784424307969844e-05 -0.2631757905691356 1.0 20171 -225791 Ptgr3 prostaglandin reductase 3 Novel U 7.780541138738425e-05 -0.2631761927865281 1.0 20172 -68694 Lce1e late cornified envelope 1E Novel U 7.764666523986633e-05 -0.2631778370739055 1.0 20173 -67692 1700020N01Rik RIKEN cDNA 1700020N01 gene Novel U 7.756071786580166e-05 -0.26317872731398073 1.0 20174 -380768 Ccdc177 coiled-coil domain containing 177 Novel U 7.755012253609922e-05 -0.2631788370600575 1.0 20175 -16694 Krtap12-1 keratin associated protein 12-1 Novel U 7.746188102913572e-05 -0.2631797510626858 1.0 20176 -108168555 Gm20896 predicted gene, 20896 Novel U 7.741359914509957e-05 -0.2631802511648535 1.0 20177 -432467 Hnrnph3 heterogeneous nuclear ribonucleoprotein H3 Novel N 7.726856462474434e-05 -0.2631817534276476 1.0 20178 -67684 Luc7l3 LUC7-like 3 (S. cerevisiae) Novel N 7.715551190523447e-05 -0.2631829244239999 1.0 20179 -54169 Kat6b K(lysine) acetyltransferase 6B Novel U 7.708445757525007e-05 -0.2631836604024141 1.0 20180 -212892 Rsph4a radial spoke head 4 homolog A (Chlamydomonas) Novel N 7.701891545270163e-05 -0.26318433928556484 1.0 20181 -54613 St3gal6 ST3 beta-galactoside alpha-2,3-sialyltransferase 6 Novel N 7.695749814400242e-05 -0.26318497544402936 1.0 20182 -22255 Uncx UNC homeobox Novel U 7.6891498026636e-05 -0.2631856590710754 1.0 20183 -230125 Slc25a51 solute carrier family 25, member 51 Novel U 7.68245652825526e-05 -0.26318635235823834 1.0 20184 -434396 Pate9 prostate and testis expressed 9 Novel U 7.680934058254111e-05 -0.26318651005518057 1.0 20185 -666927 Gm12887 predicted gene 12887 Novel U 7.667413256475476e-05 -0.2631879105353841 1.0 20186 -638251 Sult2a7 sulfotransferase family 2A, dehydroepiandrosterone (DHEA)-preferring, member 7 Novel U 7.660024773614702e-05 -0.26318867583200994 1.0 20187 -229933 Clca2 chloride channel accessory 2 Novel N 7.653775859138352e-05 -0.2631893230925172 1.0 20188 -434171 Gm5591 predicted gene 5591 Novel U 7.64947324402069e-05 -0.26318976875597666 1.0 20189 -192287 Slc25a36 solute carrier family 25, member 36 Novel N 7.64577180234447e-05 -0.26319015215008873 1.0 20190 -675294 Krtap10-29 keratin associated protein 10-29 Novel U 7.644441950275107e-05 -0.2631902898957289 1.0 20191 -66071 Ethe1 ethylmalonic encephalopathy 1 Novel U 7.622352199363653e-05 -0.26319257794486667 1.0 20192 -68404 Nrn1 neuritin 1 Novel U 7.612558869510383e-05 -0.26319359233475353 1.0 20193 -211253 Mtrf1 mitochondrial translational release factor 1 Novel U 7.584363759950218e-05 -0.2631965127749331 1.0 20194 -11698 Ambn ameloblastin Novel N 7.57055755985141e-05 -0.2631979428166008 1.0 20195 -83885 Slc25a2 solute carrier family 25 (mitochondrial carrier, ornithine transporter) member 2 Novel N 7.569664098205174e-05 -0.2631980353610644 1.0 20196 -74910 4930480E11Rik RIKEN cDNA 4930480E11 gene Novel U 7.553002076778826e-05 -0.2631997612077664 1.0 20197 -68777 Tmem53 transmembrane protein 53 Novel U 7.547594371055865e-05 -0.26320032133614746 1.0 20198 -71386 Krtap28-13 keratin associated protein 28-13 Novel U 7.523719385897528e-05 -0.2632027942992617 1.0 20199 -435528 Glyatl3 glycine-N-acyltransferase-like 3 Novel U 7.520053249818874e-05 -0.26320317403643156 1.0 20200 -69315 Cfap90 cilia and flagella associated protein 90 Novel U 7.513729866908665e-05 -0.2632038290103547 1.0 20201 -330216 Mblac1 metallo-beta-lactamase domain containing 1 Novel U 7.497933162543984e-05 -0.2632054652277999 1.0 20202 -104457 0610010K14Rik RIKEN cDNA 0610010K14 gene Novel U 7.455202898660523e-05 -0.2632098912144861 1.0 20203 -16872 Lhx4 LIM homeobox protein 4 Novel U 7.448003570798455e-05 -0.26321063691849944 1.0 20204 -107435 Hat1 histone aminotransferase 1 Novel U 7.434296588234389e-05 -0.2632120566832475 1.0 20205 -403172 Defb21 defensin beta 21 Novel U 7.434278871560208e-05 -0.2632120585183348 1.0 20206 -237858 Trarg1 trafficking regulator of GLUT4 (SLC2A4) 1 Novel U 7.419919000503165e-05 -0.2632135459090583 1.0 20207 -545126 Redic1 regulator of DNA class I crossover intermediates 1 Novel U 7.416235108863422e-05 -0.2632139274853434 1.0 20208 -100647 Upk3b uroplakin 3B Novel N 7.41225637056743e-05 -0.2632143396017481 1.0 20209 -630994 Lce3d late cornified envelope 3D Novel U 7.39946402335288e-05 -0.2632156646288673 1.0 20210 -208501 Ndufaf8 NADH:ubiquinone oxidoreductase complex assembly factor 8 Novel N 7.38142364855178e-05 -0.2632175332449588 1.0 20211 -381196 Top6bl TOP6B like initiator of meiotic double strand breaks Novel U 7.374680539035068e-05 -0.26321823169402586 1.0 20212 -100040712 Gm20850 predicted gene, 20850 Novel U 7.37368317320747e-05 -0.2632183350008504 1.0 20213 -243753 Slc23a4 solute carrier family 23 member 4 Novel U 7.371633629454942e-05 -0.26321854729191857 1.0 20214 -74200 Khdc4 KH domain containing 4, pre-mRNA splicing factor Novel N 7.366544038033809e-05 -0.2632190744701248 1.0 20215 -54342 Gnpnat1 glucosamine-phosphate N-acetyltransferase 1 Novel U 7.345581113527626e-05 -0.263221245802954 1.0 20216 -20229 Sat1 spermidine/spermine N1-acetyl transferase 1 Novel U 7.338882896870387e-05 -0.26322193960203344 1.0 20217 -654458 Defb43 defensin beta 43 Novel U 7.338820312344429e-05 -0.26322194608451804 1.0 20218 -100504112 Ccer2 coiled-coil glutamate-rich protein 2 Novel U 7.335635028656978e-05 -0.2632222760151553 1.0 20219 -17830 Prol1 proline rich, lacrimal 1 Novel U 7.334789933187542e-05 -0.2632223635498662 1.0 20220 -234365 Yjefn3 YjeF N-terminal domain containing 3 Novel U 7.329786967148401e-05 -0.2632228817554439 1.0 20221 -16660 Krt31 keratin 31 Novel U 7.329482610064364e-05 -0.2632229132806506 1.0 20222 -108168515 Gm21209 predicted gene, 21209 Novel U 7.305130957309569e-05 -0.26322543561683776 1.0 20223 -114712 Ferd3l Fer3 like bHLH transcription factor Novel U 7.298482765260696e-05 -0.26322612423438474 1.0 20224 -74007 Abtb3 ankyrin repeat and BTB domain containing 3 Novel U 7.289658077916067e-05 -0.2632270382925989 1.0 20225 -15372 Hmx2 H6 homeobox 2 Novel U 7.282941154252473e-05 -0.2632277340293439 1.0 20226 -79455 Pdcl2 phosducin-like 2 Novel U 7.277303142615576e-05 -0.2632283180127359 1.0 20227 -242285 Sdr16c5 short chain dehydrogenase/reductase family 16C, member 5 Novel N 7.238526276757482e-05 -0.26323233450775424 1.0 20228 -270097 Vat1l vesicle amine transport protein 1 like Novel U 7.229712108921461e-05 -0.26323324747636123 1.0 20229 -223337 Ugt3a2 UDP glycosyltransferases 3 family, polypeptide A2 Novel U 7.221705509358641e-05 -0.2632340767973119 1.0 20230 -382282 Rhox12 reproductive homeobox 12 Novel U 7.216350670878178e-05 -0.26323463144972137 1.0 20231 -338365 Slc41a2 solute carrier family 41, member 2 Novel N 7.212438406957763e-05 -0.26323503668073217 1.0 20232 -58237 Nkain4 Na+/K+ transporting ATPase interacting 4 Novel U 7.212327333511565e-05 -0.2632350481856832 1.0 20233 -216119 Ybey ybeY metallopeptidase Novel U 7.211279115403347e-05 -0.2632351567597703 1.0 20234 -19716 Bex1 brain expressed X-linked 1 Novel U 7.185608604463208e-05 -0.26323781570285476 1.0 20235 -226791 Lyplal1 lysophospholipase-like 1 Novel U 7.17376455293343e-05 -0.2632390425058187 1.0 20236 -68221 Wfdc15a WAP four-disulfide core domain 15A Novel U 7.16614352498667e-05 -0.2632398318893881 1.0 20237 -52686 Mettl2 methyltransferase 2, methylcytidine Novel U 7.162003453278174e-05 -0.26324026071665474 1.0 20238 -100040533 Btbd35f5 BTB domain containing 35, family member 5 Novel U 7.137941467416833e-05 -0.2632427530492403 1.0 20239 -76187 Adhfe1 alcohol dehydrogenase, iron containing, 1 Novel N 7.10294345387178e-05 -0.2632463781319783 1.0 20240 -545611 Spata31f1b spermatogenesis associated 31 subfamily F member 1B Novel U 7.101249373917223e-05 -0.2632465536042231 1.0 20241 -67773 Kat8 K(lysine) acetyltransferase 8 Novel N 7.10011739651352e-05 -0.26324667085407044 1.0 20242 -20945 Svs6 seminal vesicle secretory protein 6 Novel U 7.098303262265936e-05 -0.26324685876149945 1.0 20243 -100312986 Pate7 prostate and testis expressed 7 Novel U 7.097280827156959e-05 -0.2632469646649919 1.0 20244 -72096 Eef1akmt2 EEF1A lysine methyltransferase 2 Novel N 7.096283219603255e-05 -0.26324706799685443 1.0 20245 -69576 Smco1 single-pass membrane protein with coiled-coil domains 1 Novel U 7.074038329195147e-05 -0.26324937211529026 1.0 20246 -69317 Hmgb4 high-mobility group box 4 Novel U 7.07396414504236e-05 -0.26324937979926044 1.0 20247 -217593 Slc25a21 solute carrier family 25 (mitochondrial oxodicarboxylate carrier), member 21 Novel N 7.064202546071712e-05 -0.2632503909024729 1.0 20248 -69329 Cfap206 cilia and flagella associated protein 206 Novel U 7.059874374023608e-05 -0.26325083921311077 1.0 20249 -14411 Slc6a12 solute carrier family 6 (neurotransmitter transporter, betaine/GABA), member 12 Novel U 7.051886313575561e-05 -0.2632516666137861 1.0 20250 -227998 4933409G03Rik RIKEN cDNA 4933409G03 gene Novel U 7.034200841860849e-05 -0.2632534984691325 1.0 20251 -68021 Bphl biphenyl hydrolase like Novel N 7.032956466246346e-05 -0.26325362736114954 1.0 20252 -69136 Tusc1 tumor suppressor candidate 1 Novel U 7.031189613365476e-05 -0.26325381037119017 1.0 20253 -329910 Acot11 acyl-CoA thioesterase 11 Novel U 7.025786769842806e-05 -0.26325436999594615 1.0 20254 -224674 Slc37a1 solute carrier family 37 (glycerol-3-phosphate transporter), member 1 Novel N 7.0216915849761e-05 -0.2632547941738484 1.0 20255 -353190 Edc3 enhancer of mRNA decapping 3 Novel U 7.01177771773562e-05 -0.26325582104895817 1.0 20256 -18092 Nkx2-6 NK2 homeobox 6 Novel U 7.008470227688405e-05 -0.26325616363769 1.0 20257 -100039945 Cdk2ap1rt cyclin dependent kinase 2 associated protein 1 retrotransposed Novel U 7.000426458566364e-05 -0.2632569968086514 1.0 20258 -69479 Cfap96 cilia and flagella associated protein 96 Novel U 6.996858384061834e-05 -0.2632573663886356 1.0 20259 -211135 Zfp781a zinc finger protein 781A Novel U 6.985610345539127e-05 -0.26325853145676825 1.0 20260 -73722 Lce1a2 late cornified envelope 1A2 Novel U 6.958068916522831e-05 -0.26326138418893197 1.0 20261 -100041412 Krtap2-22 keratin associated protein 2-22 Novel U 6.931834675077908e-05 -0.2632641015230368 1.0 20262 -11945 Atp4b ATPase, H+/K+ exchanging, beta polypeptide Novel U 6.927969715832555e-05 -0.2632645018542449 1.0 20263 -56362 Sult1b1 sulfotransferase family 1B, member 1 Novel N 6.926216061107566e-05 -0.2632646834972248 1.0 20264 -320865 Cdh18 cadherin 18 Novel U 6.913492068075168e-05 -0.26326600144424034 1.0 20265 -233552 Gdpd5 glycerophosphodiester phosphodiesterase domain containing 5 Novel U 6.90558699342155e-05 -0.2632668202492743 1.0 20266 -54128 Pmm2 phosphomannomutase 2 Novel U 6.903436526390352e-05 -0.26326704299394244 1.0 20267 -67217 L3hypdh L-3-hydroxyproline dehydratase (trans-) Novel U 6.895914133401928e-05 -0.26326782216093536 1.0 20268 -78890 Trmt44 tRNA methyltransferase 44 Novel U 6.888829556414142e-05 -0.2632685559790908 1.0 20269 -70884 Ccdc81 coiled-coil domain containing 81 Novel U 6.87883915903827e-05 -0.26326959078116685 1.0 20270 -21422 Tfcp2 transcription factor CP2 Novel N 6.868367432886856e-05 -0.26327067543911925 1.0 20271 -93961 B3galt5 UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 5 Novel N 6.868326696290906e-05 -0.2632706796586024 1.0 20272 -100303732 Zfp967 zinc finger protein 967 Novel U 6.854677704621339e-05 -0.2632720934166727 1.0 20273 -52665 Echdc1 enoyl Coenzyme A hydratase domain containing 1 Novel U 6.847312664947513e-05 -0.263272856285061 1.0 20274 -69962 Mettl18 methyltransferase like 18 Novel N 6.843882583277269e-05 -0.2632732115717928 1.0 20275 -116810 Foxn4 forkhead box N4 Novel U 6.842123053176713e-05 -0.26327339382334225 1.0 20276 -71846 Syce2 synaptonemal complex central element protein 2 Novel U 6.841707207074026e-05 -0.2632734368965448 1.0 20277 -102639117 Scgb2a2 secretoglobin, family 2A, member 2 Novel U 6.807631719538891e-05 -0.263276966424342 1.0 20278 -100043836 Scgb2b7 secretoglobin, family 2B, member 7 Novel U 6.79351284712554e-05 -0.26327842885250524 1.0 20279 -76487 Ppp1r3g protein phosphatase 1, regulatory subunit 3G Novel U 6.790375776921306e-05 -0.26327875378920573 1.0 20280 -77215 Krtap5-3 keratin associated protein 5-3 Novel U 6.776845255888722e-05 -0.2632801552761264 1.0 20281 -18232 Nxph2 neurexophilin 2 Novel U 6.75034235887317e-05 -0.2632829004374869 1.0 20282 -73495 Samt3 spermatogenesis associated multipass transmembrane protein 3 Novel U 6.745118611194499e-05 -0.26328344151155425 1.0 20283 -382206 Ssxb13 SSX member B13 Novel U 6.730810151687402e-05 -0.2632849235770863 1.0 20284 -103142 Rdh9 retinol dehydrogenase 9 Novel U 6.729472446450936e-05 -0.263285062136155 1.0 20285 -58184 Cnot9 CCR4-NOT transcription complex, subunit 9 Novel U 6.706938619270956e-05 -0.2632873961825667 1.0 20286 -78016 Ccdc150 coiled-coil domain containing 150 Novel U 6.703849772154886e-05 -0.26328771612433555 1.0 20287 -403200 Lypd9 LY6/PLAUR domain containing 9 Novel U 6.692501702762988e-05 -0.2632888915536327 1.0 20288 -214254 Nudt15 nudix hydrolase 15 Novel U 6.689052271308837e-05 -0.2632892488446088 1.0 20289 -100303744 Sprr2a2 small proline-rich protein 2A2 Novel U 6.68264805243078e-05 -0.2632899121914949 1.0 20290 -13089 Cyp2b13 cytochrome P450, family 2, subfamily b, polypeptide 13 Novel U 6.675460460917417e-05 -0.26329065667986107 1.0 20291 -69049 Nat8f5 N-acetyltransferase 8 (GCN5-related) family member 5 Novel U 6.6463993729954e-05 -0.2632936668177947 1.0 20292 -639025 Pate12 prostate and testis expressed 12 Novel U 6.641404161136884e-05 -0.2632941842201969 1.0 20293 -217356 Tmc8 transmembrane channel-like gene family 8 Novel U 6.640203086200908e-05 -0.263294308627144 1.0 20294 -242377 Pm20d2 peptidase M20 domain containing 2 Novel N 6.628897278936031e-05 -0.26329547967894384 1.0 20295 -56363 Tmeff2 transmembrane protein with EGF-like and two follistatin-like domains 2 Novel U 6.616331863929764e-05 -0.2632967812004996 1.0 20296 -385317 H2al3 H2A histone family member L3 Novel U 6.612997892545013e-05 -0.26329712653215964 1.0 20297 -19183 Psmc3ip proteasome (prosome, macropain) 26S subunit, ATPase 3, interacting protein Novel U 6.612110888235167e-05 -0.2632972184077744 1.0 20298 -83453 Chrdl1 chordin-like 1 Novel U 6.602710748431225e-05 -0.26329819207116517 1.0 20299 -629756 Wfdc10 WAP four-disulfide core domain 10 Novel U 6.601958084600281e-05 -0.26329827003183737 1.0 20300 -667742 Piezo2 piezo-type mechanosensitive ion channel component 2 Novel U 6.594056450334008e-05 -0.26329908848051714 1.0 20301 -21689 Tekt1 tektin 1 Novel U 6.593097927862146e-05 -0.26329918776395966 1.0 20302 -654453 Defb33 defensin beta 33 Novel U 6.587876803569342e-05 -0.26329972856629763 1.0 20303 -69549 2310009B15Rik RIKEN cDNA 2310009B15 gene Novel U 6.586747433258845e-05 -0.2632998455461031 1.0 20304 -67020 Tmem88 transmembrane protein 88 Novel U 6.575425494771669e-05 -0.2633010182687697 1.0 20305 -330440 Sult6b2 sulfotransferase family 6B, member 2 Novel U 6.547232126124754e-05 -0.2633039385286261 1.0 20306 -75400 Defb29 defensin beta 29 Novel U 6.546106643931708e-05 -0.26330405510570165 1.0 20307 -58246 Slc35b4 solute carrier family 35, member B4 Novel N 6.542461587424234e-05 -0.26330443265945647 1.0 20308 -19377 Rai1 retinoic acid induced 1 Novel U 6.540072725325678e-05 -0.2633046800970073 1.0 20309 -12352 Car5a carbonic anhydrase 5a, mitochondrial Novel N 6.537744670844258e-05 -0.2633049212361252 1.0 20310 -22751 Zfp90 zinc finger protein 90 Novel N 6.537313614373206e-05 -0.2633049658848128 1.0 20311 -629754 Wfdc9 WAP four-disulfide core domain 9 Novel U 6.531946440087102e-05 -0.263305521814961 1.0 20312 -100040248 Krtap4-25 keratin associated protein 4-25 Novel U 6.513495150140958e-05 -0.26330743299350806 1.0 20313 -213006 Mfsd4a major facilitator superfamily domain containing 4A Novel U 6.4987154154295e-05 -0.2633089638735709 1.0 20314 -101835 AW146154 expressed sequence AW146154 Novel U 6.479011291778097e-05 -0.2633110048202213 1.0 20315 -328258 Slc25a48 solute carrier family 25, member 48 Novel U 6.47093724250851e-05 -0.2633118411275905 1.0 20316 -76257 Slc38a3 solute carrier family 38, member 3 Novel U 6.466932202429421e-05 -0.2633122559683253 1.0 20317 -111368 Prn prion protein readthrough transcript Novel U 6.46510488768782e-05 -0.2633124452409855 1.0 20318 -216292 Mettl25 methyltransferase like 25 Novel U 6.463191984270381e-05 -0.26331264337889265 1.0 20319 -93837 Dach2 dachshund family transcription factor 2 Novel U 6.451381355545468e-05 -0.26331386671993345 1.0 20320 -215895 Sult3a2 sulfotransferase family 3A, member 2 Novel U 6.44818797250835e-05 -0.2633141974894987 1.0 20321 -277154 Nynrin NYN domain and retroviral integrase containing Novel U 6.446482764802679e-05 -0.26331437411435227 1.0 20322 -75422 Mettl5 methyltransferase 5, N6-adenosine Novel U 6.431702642617595e-05 -0.2633159050345495 1.0 20323 -18741 Pitx2 paired-like homeodomain transcription factor 2 Novel U 6.426657220895608e-05 -0.2633164276376728 1.0 20324 -100042417 Gm20916 predicted gene, 20916 Novel U 6.423139621380252e-05 -0.26331679198947433 1.0 20325 -72219 Spata31d1a spermatogenesis associated 31 subfamily D, member 1A Novel U 6.413968866913759e-05 -0.2633177418932072 1.0 20326 -320558 Sycp2 synaptonemal complex protein 2 Novel N 6.41170493068524e-05 -0.26331797639097754 1.0 20327 -78412 Cyren cell cycle regulator of NHEJ Novel N 6.41148770551642e-05 -0.2633179988910891 1.0 20328 -625716 Slco1a8 solute carrier organic anion transporter family, member 1a8 Novel U 6.410127735909667e-05 -0.2633181397562939 1.0 20329 -216873 Spag7 sperm associated antigen 7 Novel U 6.39928598619897e-05 -0.2633192627411649 1.0 20330 -229055 Zbtb10 zinc finger and BTB domain containing 10 Novel U 6.399240599566873e-05 -0.26331926744229733 1.0 20331 -67269 Agtpbp1 ATP/GTP binding protein 1 Novel U 6.393715402650278e-05 -0.26331983974037765 1.0 20332 -75986 Agmat agmatinase Novel N 6.390859119633887e-05 -0.26332013559323353 1.0 20333 -64452 Slc5a4a solute carrier family 5, member 4a Novel U 6.387592310769205e-05 -0.26332047396822184 1.0 20334 -636741 Zfp964 zinc finger protein 964 Novel U 6.380640529451954e-05 -0.26332119403144544 1.0 20335 -100233175 Gon7 GON7 subunit of KEOPS complex Novel U 6.37444675658174e-05 -0.26332183558040323 1.0 20336 -50764 Fbxo15 F-box protein 15 Novel U 6.365115547266184e-05 -0.26332280210399667 1.0 20337 -22709 Zfp51 zinc finger protein 51 Novel U 6.363711152593478e-05 -0.26332294757073516 1.0 20338 -242259 Slc44a5 solute carrier family 44, member 5 Novel U 6.363253462712614e-05 -0.2633229949781026 1.0 20339 -232156 Slc4a5 solute carrier family 4, sodium bicarbonate cotransporter, member 5 Novel N 6.360054034712748e-05 -0.26332332637380307 1.0 20340 -545548 Lce3a late cornified envelope 3A Novel U 6.330758256759904e-05 -0.2633263608208529 1.0 20341 -244954 Prss35 serine protease 35 Novel U 6.330001647545618e-05 -0.26332643919018667 1.0 20342 -71874 Mab21l4 mab-21-like 4 Novel U 6.322823828439177e-05 -0.2633271826663301 1.0 20343 -332934 Zmynd12 zinc finger, MYND domain containing 12 Novel U 6.317303500638942e-05 -0.26332775446006895 1.0 20344 -20941 Svs4 seminal vesicle secretory protein 4 Novel U 6.309344935930857e-05 -0.2633285788055852 1.0 20345 -77853 Msl2 MSL complex subunit 2 Novel U 6.295285803100865e-05 -0.263330035045942 1.0 20346 -239759 Liph lipase, member H Novel U 6.281101371322544e-05 -0.26333150426472274 1.0 20347 -26448 Mok MOK protein kinase Novel N 6.278629395069398e-05 -0.2633317603112104 1.0 20348 -11593 Aga aspartylglucosaminidase Novel U 6.270215897912343e-05 -0.26333263177848015 1.0 20349 -233424 Tmc3 transmembrane channel-like gene family 3 Novel U 6.264857754344616e-05 -0.2633331867732295 1.0 20350 -68499 Mrpl53 mitochondrial ribosomal protein L53 Novel U 6.258505773929627e-05 -0.2633338447092728 1.0 20351 -15373 Hmx3 H6 homeobox 3 Novel U 6.249039773824386e-05 -0.2633348251944519 1.0 20352 -69664 Krtap1-5 keratin associated protein 1-5 Novel U 6.244292650981731e-05 -0.26333531689987544 1.0 20353 -75509 1700020N15Rik RIKEN cDNA 1700020N15 gene Novel U 6.232948354740193e-05 -0.26333649193835085 1.0 20354 -20522 Slc23a1 solute carrier family 23 (nucleobase transporters), member 1 Novel N 6.213338475735621e-05 -0.26333852312317174 1.0 20355 -69457 Tmem45a2 transmembrane protein 45A2 Novel U 6.202568029651301e-05 -0.2633396387224366 1.0 20356 -212442 Lactb2 lactamase, beta 2 Novel U 6.199513672830876e-05 -0.263339955091712 1.0 20357 -76872 Ccdc116 coiled-coil domain containing 116 Novel U 6.196463920279766e-05 -0.2633402709840787 1.0 20358 -50916 Irx4 Iroquois homeobox 4 Novel U 6.181323967947104e-05 -0.2633418391753643 1.0 20359 -71453 Krtap2-4 keratin associated protein 2-4 Novel U 6.168723474796203e-05 -0.2633431443303027 1.0 20360 -20504 Slc17a1 solute carrier family 17 (sodium phosphate), member 1 Novel N 6.166075228764703e-05 -0.2633434186347561 1.0 20361 -18094 Nkx2-9 NK2 homeobox 9 Novel N 6.165925317598066e-05 -0.2633434341625054 1.0 20362 -66712 Spesp1 sperm equatorial segment protein 1 Novel U 6.13427560026727e-05 -0.26334671242982227 1.0 20363 -58207 Slc43a3 solute carrier family 43, member 3 Novel N 6.123778458619001e-05 -0.2633477997203034 1.0 20364 -75558 Spata45 spermatogenesis associated 45 Novel U 6.123283482968226e-05 -0.26334785098971863 1.0 20365 -69514 Lce3e late cornified envelope 3E Novel U 6.115180421116634e-05 -0.2633486903022015 1.0 20366 -76426 Fam209 family with sequence similarity 209 Novel U 6.114616633824799e-05 -0.26334874869910385 1.0 20367 -241850 Abhd16b abhydrolase domain containing 16B Novel U 6.101415306365534e-05 -0.26335011608826236 1.0 20368 -57441 Gmnn geminin Novel U 6.093098612699617e-05 -0.2633509775286583 1.0 20369 -77424 Spinkl serine protease inhibitor, Kazal type-like Novel U 6.067998938118294e-05 -0.2633535773447004 1.0 20370 -329008 Bhmt1b betaine--homocysteine S-methyltransferase 1B Novel U 6.054756329071618e-05 -0.2633549490097921 1.0 20371 -246792 Obox2 oocyte specific homeobox 2 Novel U 6.052692182319854e-05 -0.26335516281343413 1.0 20372 -75439 Cypt12 cysteine-rich perinuclear theca 12 Novel U 6.048326114856573e-05 -0.26335561504926674 1.0 20373 -20473 Six3 sine oculis-related homeobox 3 Novel U 6.044160674551693e-05 -0.2633560465042042 1.0 20374 -68044 Chac2 ChaC, cation transport regulator 2 Novel N 6.039014862127433e-05 -0.26335657950576347 1.0 20375 -233189 Ctu1 cytosolic thiouridylase subunit 1 Novel U 6.036010399355398e-05 -0.2633568907070297 1.0 20376 -78774 Cfap61 cilia and flagella associated protein 61 Novel N 6.0345642666894845e-05 -0.2633570404969759 1.0 20377 -434264 Sult2a5 sulfotransferase family 2A, dehydroepiandrosterone (DHEA)-preferring, member 5 Novel U 6.0330221346433085e-05 -0.2633572002305063 1.0 20378 -628236 Lipo4 lipase, member O4 Novel U 6.0261112336775507e-05 -0.2633579160593565 1.0 20379 -58214 Cst5 cystatin D Novel U 6.0002276273962704e-05 -0.2633605970747864 1.0 20380 -216225 Slc5a8 solute carrier family 5 (iodide transporter), member 8 Novel N 5.9995219584009725e-05 -0.2633606701677489 1.0 20381 -229725 Clcc1 chloride channel CLIC-like 1 Novel N 5.9863125201141656e-05 -0.26336203839702427 1.0 20382 -13013 Cst9 cystatin 9 Novel U 5.9851981893869746e-05 -0.26336215381903466 1.0 20383 -326620 H4c2 H4 clustered histone 2 Novel U 5.979316842945017e-05 -0.26336276300696576 1.0 20384 -668166 Zxdb zinc finger, X-linked, duplicated B Novel U 5.963194646438555e-05 -0.26336443293878 1.0 20385 -13134 Dach1 dachshund family transcription factor 1 Novel N 5.934172634703902e-05 -0.263367439029215 1.0 20386 -76964 2610028H24Rik RIKEN cDNA 2610028H24 gene Novel U 5.928035506348709e-05 -0.2633680747109526 1.0 20387 -320208 Tmem91 transmembrane protein 91 Novel U 5.918096285380284e-05 -0.2633691042121931 1.0 20388 -14664 Slc6a9 solute carrier family 6 (neurotransmitter transporter, glycine), member 9 Novel U 5.914534787355658e-05 -0.26336947311098774 1.0 20389 -71564 Izumo4 IZUMO family member 4 Novel U 5.907519975361267e-05 -0.26337019970290815 1.0 20390 -100040972 Tceal7 transcription elongation factor A (SII)-like 7 Novel U 5.8904202358373816e-05 -0.2633719708883068 1.0 20391 -16875 Lhx8 LIM homeobox protein 8 Novel U 5.888328868085474e-05 -0.263372187511491 1.0 20392 -54713 Fezf2 Fez family zinc finger 2 Novel U 5.881624938449363e-05 -0.26337288190231894 1.0 20393 -22264 Prap1 proline-rich acidic protein 1 Novel U 5.8771909395802725e-05 -0.26337334117446415 1.0 20394 -52575 Trmt10c tRNA methyltransferase 10C, mitochondrial RNase P subunit Novel N 5.868648139032875e-05 -0.2633742260349366 1.0 20395 -215113 Slc43a2 solute carrier family 43, member 2 Novel U 5.8671956684957546e-05 -0.26337437648135736 1.0 20396 -78124 Spata31 spermatogenesis associated 31 Novel U 5.865691930711567e-05 -0.2633745322380227 1.0 20397 -100216474 Ttll2 tubulin tyrosine ligase-like family, member 2 Novel U 5.855156901445141e-05 -0.26337562345289095 1.0 20398 -100155 Shoc1 shortage in chiasmata 1 Novel N 5.853119875629932e-05 -0.26337583444735524 1.0 20399 -231724 Rad9b RAD9 checkpoint clamp component B Novel U 5.842671733634261e-05 -0.2633769166624685 1.0 20400 -72077 Gcnt3 glucosaminyl (N-acetyl) transferase 3, mucin type Novel N 5.832194199078799e-05 -0.26337800192205346 1.0 20401 -108168510 Gm20905 predicted gene, 20905 Novel U 5.816307830010792e-05 -0.26337964742693915 1.0 20402 -20939 Sva seminal vesicle antigen Novel U 5.8034688087253103e-05 -0.2633809772885433 1.0 20403 -70426 Tekt5 tektin 5 Novel U 5.793241742634052e-05 -0.26338203660468706 1.0 20404 -101056194 Gm28998 predicted gene 28998 Novel U 5.7718494916361927e-05 -0.2633842524070131 1.0 20405 -20599 Smr3a submaxillary gland androgen regulated protein 3A Novel U 5.765762918703686e-05 -0.2633848828522366 1.0 20406 -16815 Lbx2 ladybird homeobox 2 Novel U 5.750338465368405e-05 -0.26338648051204255 1.0 20407 -58229 Efcc1 EF hand and coiled-coil domain containing 1 Novel U 5.7502454832864215e-05 -0.26338649014309606 1.0 20408 -433102 Sfta2 surfactant associated 2 Novel U 5.747049839932076e-05 -0.26338682114678413 1.0 20409 -72947 Phykpl 5-phosphohydroxy-L-lysine phospholyase Novel N 5.74067760597756e-05 -0.26338748118068245 1.0 20410 -244721 Zfp846 zinc finger protein 846 Novel U 5.733740197992216e-05 -0.263388199755121 1.0 20411 -71375 Foxn3 forkhead box N3 Novel U 5.707535703457011e-05 -0.2633909140080507 1.0 20412 -665992 Krtap4-8 keratin associated protein 4-8 Novel U 5.697247145252318e-05 -0.26339197969352734 1.0 20413 -234788 Slc38a8 solute carrier family 38, member 8 Novel N 5.672528270605788e-05 -0.26339454006643737 1.0 20414 -67778 Zfp639 zinc finger protein 639 Novel U 5.6663718635324984e-05 -0.2633951777450582 1.0 20415 -12570 Cdk5r2 cyclin dependent kinase 5, regulatory subunit 2 Novel U 5.6602686302966597e-05 -0.2633958099159504 1.0 20416 -229333 Aadacl2fm1 AADACL2 family member 1 Novel U 5.6421694674062354e-05 -0.2633976846212928 1.0 20417 -21884 Fabp9 fatty acid binding protein 9, testis Novel U 5.639220058185448e-05 -0.2633979901201303 1.0 20418 -94224 Srd5a2 steroid 5 alpha-reductase 2 Novel N 5.6128245602169606e-05 -0.2634007241571329 1.0 20419 -234549 Heatr3 HEAT repeat containing 3 Novel U 5.6023716587080915e-05 -0.26340180686523496 1.0 20420 -74847 Meikin meiotic kinetochore factor Novel U 5.589763614747922e-05 -0.2634031128022837 1.0 20421 -67307 Pbld2 phenazine biosynthesis-like protein domain containing 2 Novel U 5.5787482681602966e-05 -0.2634042537682621 1.0 20422 -66533 Kplce KPRP N-terminal and LCE C-terminal like protein Novel U 5.5614828618741533e-05 -0.26340604211336954 1.0 20423 -78052 Tmem190 transmembrane protein 190 Novel U 5.5584431844259186e-05 -0.2634063569621604 1.0 20424 -71872 Aox4 aldehyde oxidase 4 Novel U 5.543925514895763e-05 -0.2634078606975979 1.0 20425 -117172 Krtap13-20 keratin associated protein 13-20 Novel U 5.536083823589351e-05 -0.2634086729374056 1.0 20426 -67725 Nudt13 nudix hydrolase 13 Novel N 5.528294668153331e-05 -0.2634094797355651 1.0 20427 -223843 Dbx2 developing brain homeobox 2 Novel U 5.5005389027880384e-05 -0.26341235466861745 1.0 20428 -545798 Tmem233 transmembrane protein 233 Novel U 5.5001159126945626e-05 -0.26341239848179226 1.0 20429 -70088 Meaf6 MYST/Esa1-associated factor 6 Novel N 5.488262294964271e-05 -0.2634136262756201 1.0 20430 -224111 Ubxn7 UBX domain protein 7 Novel U 5.4842238645520535e-05 -0.26341404457491463 1.0 20431 -73473 Iws1 IWS1, SUPT6 interacting protein Novel U 5.467179864616246e-05 -0.26341580998682507 1.0 20432 -246257 Ovca2 candidate tumor suppressor in ovarian cancer 2 Novel U 5.4637848969196584e-05 -0.26341616163646303 1.0 20433 -26378 Decr2 2-4-dienoyl-Coenzyme A reductase 2, peroxisomal Novel N 5.4623860012586355e-05 -0.26341630653361575 1.0 20434 -268860 Abat 4-aminobutyrate aminotransferase Novel N 5.4564104231728915e-05 -0.26341692548202955 1.0 20435 -60322 Chst7 carbohydrate sulfotransferase 7 Novel N 5.454835803595457e-05 -0.26341708858060775 1.0 20436 -210155 Lypd11 Ly6/PLAUR domain containing 11 Novel U 5.451371359305275e-05 -0.26341744742660844 1.0 20437 -70605 Zdhhc24 zinc finger, DHHC domain containing 24 Novel U 5.442914458516038e-05 -0.26341832338961213 1.0 20438 -75860 Tex26 testis expressed 26 Novel U 5.435759068458974e-05 -0.26341906454256203 1.0 20439 -105887 Ugt3a1 UDP glycosyltransferases 3 family, polypeptide A1 Novel U 5.434491883509037e-05 -0.2634191957971626 1.0 20440 -20754 Sprr1b small proline-rich protein 1B Novel U 5.42122188970987e-05 -0.263420570298758 1.0 20441 -74533 Gzf1 GDNF-inducible zinc finger protein 1 Novel N 5.419138274048593e-05 -0.26342078611898323 1.0 20442 -57279 Slc25a20 solute carrier family 25 (mitochondrial carnitine/acylcarnitine translocase), member 20 Novel U 5.41853591153225e-05 -0.26342084851149467 1.0 20443 -434674 Slc22a28 solute carrier family 22, member 28 Novel U 5.405293428456653e-05 -0.26342222016353845 1.0 20444 -117158 Scgb3a2 secretoglobin, family 3A, member 2 Novel U 5.392444238509381e-05 -0.2634235510784092 1.0 20445 -219170 Fam216b family with sequence similarity 216, member B Novel U 5.3697136891253274e-05 -0.2634259055012422 1.0 20446 -22640 Zfp1 zinc finger protein 1 Novel U 5.369412189282451e-05 -0.26342593673049675 1.0 20447 -101056210 Gm28576 predicted gene 28576 Novel U 5.35218356592688e-05 -0.26342772126564035 1.0 20448 -18408 Slc25a15 solute carrier family 25 (mitochondrial carrier ornithine transporter), member 15 Novel N 5.349557730424659e-05 -0.26342799324881844 1.0 20449 -100009614 Krtap12-22 keratin associated protein 12-22 Novel U 5.3399535643447445e-05 -0.2634289880451838 1.0 20450 -381373 Sp9 trans-acting transcription factor 9 Novel U 5.320161978527957e-05 -0.2634310380511366 1.0 20451 -320662 Dnai7 dynein axonemal intermediate chain 7 Novel U 5.3193148924197075e-05 -0.2634311257920372 1.0 20452 -73287 Cabcoco1 ciliary associated calcium binding coiled-coil 1 Novel U 5.3179241377572695e-05 -0.26343126984594795 1.0 20453 -102632 Acad11 acyl-Coenzyme A dehydrogenase family, member 11 Novel N 5.314713341207713e-05 -0.26343160241919905 1.0 20454 -67053 Rpp14 ribonuclease P 14 subunit Novel U 5.3059149729117866e-05 -0.26343251375129484 1.0 20455 -330820 4933402J07Rik RIKEN cDNA 4933402J07 gene Novel U 5.305387165888943e-05 -0.2634325684213728 1.0 20456 -239789 Gmnc geminin coiled-coil domain containing Novel U 5.3012800565404306e-05 -0.26343299383440894 1.0 20457 -207854 Fmr1nb Fmr1 neighbor Novel U 5.2704506045917154e-05 -0.26343618713890715 1.0 20458 -170740 Zfp287 zinc finger protein 287 Novel U 5.269221719531579e-05 -0.2634363144264177 1.0 20459 -320022 Terb1 telomere repeat binding bouquet formation protein 1 Novel N 5.252318339490492e-05 -0.2634380652729657 1.0 20460 -20341 Selenbp1 selenium binding protein 1 Novel U 5.238232494328638e-05 -0.2634395242801771 1.0 20461 -66344 Lce3b late cornified envelope 3B Novel U 5.233867291687089e-05 -0.2634399764264317 1.0 20462 -70956 Tex19.2 testis expressed gene 19.2 Novel U 5.224898982463757e-05 -0.2634409053609529 1.0 20463 -74673 Spdye4a speedy/RINGO cell cycle regulator family, member E4A Novel U 5.223950871409286e-05 -0.2634410035659842 1.0 20464 -101604 Zfp764l1 zinc finger protein 764 like 1 Novel U 5.2150681374367106e-05 -0.2634419236366491 1.0 20465 -108167378 Gm20814 predicted gene, 20814 Novel U 5.203525714305122e-05 -0.26344311919704266 1.0 20466 -332131 Krt78 keratin 78 Novel U 5.199123770395481e-05 -0.2634435751489458 1.0 20467 -14857 Gsta1 glutathione S-transferase, alpha 1 (Ya) Novel U 5.197025314600743e-05 -0.2634437925063072 1.0 20468 -14916 Guca2b guanylate cyclase activator 2b (retina) Novel U 5.1858922138239015e-05 -0.2634449456692258 1.0 20469 -100042110 Gm20903 predicted gene, 20903 Novel U 5.185817509870165e-05 -0.2634449534070368 1.0 20470 -66209 Inip INTS3 and NABP interacting protein Novel U 5.1778184989855734e-05 -0.26344578194195467 1.0 20471 -442835 Defb22 defensin beta 22 Novel U 5.1448276148833644e-05 -0.26344919912688486 1.0 20472 -75470 Iqcf5 IQ motif containing F5 Novel U 5.1275853316929195e-05 -0.2634509850769096 1.0 20473 -69362 Cst12 cystatin 12 Novel U 5.115539858990503e-05 -0.2634522327430124 1.0 20474 -235973 Pate14 prostate and testis expressed 14 Novel U 5.1078633182477344e-05 -0.263453027876579 1.0 20475 -77803 Shisal2b shisa like 2B Novel U 5.094654778914127e-05 -0.2634543960127411 1.0 20476 -74088 Them7 thioesterase superfamily member 7 Novel U 5.093754784598144e-05 -0.26345448923385645 1.0 20477 -14375 Xrcc6 X-ray repair complementing defective repair in Chinese hamster cells 6 Novel U 5.091336817578875e-05 -0.26345473968608546 1.0 20478 -57430 Sult3a1 sulfotransferase family 3A, member 1 Novel U 5.0739576641024837e-05 -0.2634565398130895 1.0 20479 -12069 Bex2 brain expressed X-linked 2 Novel U 5.062360637781735e-05 -0.26345774102926345 1.0 20480 -14412 Slc6a13 solute carrier family 6 (neurotransmitter transporter, GABA), member 13 Novel U 5.058580530935903e-05 -0.26345813257148787 1.0 20481 -106757 Catsperd cation channel sperm associated auxiliary subunit delta Novel U 5.0529403998797364e-05 -0.26345871677440863 1.0 20482 -75122 Zc2hc1b zinc finger, C2HC-type containing 1B Novel U 5.035811676119447e-05 -0.26346049096198493 1.0 20483 -100040732 Btbd35f14 BTB domain containing 35, family member 14 Novel U 5.0137550673967435e-05 -0.2634627755782657 1.0 20484 -101055862 Krtap5-22 keratin associated protein 5-22 Novel U 5.004301602189461e-05 -0.2634637547650842 1.0 20485 -320864 Krt26 keratin 26 Novel U 4.995849406513899e-05 -0.2634646302407338 1.0 20486 -108168582 Gm20911 predicted gene, 20911 Novel U 4.9837423402990264e-05 -0.26346588428667234 1.0 20487 -330577 Saxo2 stabilizer of axonemal microtubules 2 Novel U 4.9572763692965365e-05 -0.2634686256232486 1.0 20488 -58875 Hibadh 3-hydroxyisobutyrate dehydrogenase Novel N 4.9404712211124776e-05 -0.26347036629497306 1.0 20489 -56872 Pate4 prostate and testis expressed 4 Novel U 4.932702850507956e-05 -0.2634711709402466 1.0 20490 -381229 Cfap58 cilia and flagella associated protein 58 Novel U 4.919489000990966e-05 -0.26347253962643574 1.0 20491 -243078 Tecrl trans-2,3-enoyl-CoA reductase-like Novel U 4.918066416015533e-05 -0.2634726869773198 1.0 20492 -625599 Gml glycosylphosphatidylinositol anchored molecule like Novel U 4.916918330006371e-05 -0.2634728058956912 1.0 20493 -234366 Gatad2a GATA zinc finger domain containing 2A Novel N 4.9124537419035413e-05 -0.2634732683362593 1.0 20494 -66174 Nudt14 nudix hydrolase 14 Novel N 4.9123438277052356e-05 -0.2634732797211358 1.0 20495 -99663 Clca4a chloride channel accessory 4A Novel U 4.9076269870187065e-05 -0.2634737682899435 1.0 20496 -83702 Akr1c6 aldo-keto reductase family 1, member C6 Novel U 4.90553751589637e-05 -0.26347398471667555 1.0 20497 -67645 Armc12 armadillo repeat containing 12 Novel N 4.8991710088206855e-05 -0.26347464415738553 1.0 20498 -170939 Krtap19-9b keratin associated protein 19-9B Novel U 4.892250102422465e-05 -0.2634753610225951 1.0 20499 -637079 Iqcn IQ motif containing N Novel U 4.865745026313949e-05 -0.2634781064096654 1.0 20500 -27083 Xlr4b X-linked lymphocyte-regulated 4B Novel U 4.8625664372893095e-05 -0.2634784356468716 1.0 20501 -229905 Kyat3 kynurenine aminotransferase 3 Novel U 4.855722414743242e-05 -0.26347914454847715 1.0 20502 -66307 Isoc1 isochorismatase domain containing 1 Novel U 4.8505704152957904e-05 -0.26347967819088625 1.0 20503 -70266 Kyat1 kynurenine aminotransferase 1 Novel N 4.8492970145413706e-05 -0.2634798100893178 1.0 20504 -631101 Lce1k late cornified envelope 1K Novel U 4.8436611859322236e-05 -0.26348039384659244 1.0 20505 -218476 Gcnt4 glucosaminyl (N-acetyl) transferase 4, core 2 (beta-1,6-N-acetylglucosaminyltransferase) Novel N 4.8333748979084834e-05 -0.2634814592969245 1.0 20506 -78833 Gins3 GINS complex subunit 3 Novel U 4.8297022854093274e-05 -0.2634818397049199 1.0 20507 -56296 Dmrtb1 DMRT-like family B with proline-rich C-terminal, 1 Novel U 4.828277251240711e-05 -0.2634819873094906 1.0 20508 -16699 Krtap13 keratin associated protein 13 Novel U 4.812133016481779e-05 -0.2634836595240198 1.0 20509 -16922 Phyh phytanoyl-CoA hydroxylase Novel N 4.8022201574836706e-05 -0.2634846862946961 1.0 20510 -67859 Cysrt1 cysteine rich tail 1 Novel U 4.722350733314252e-05 -0.26349295914339593 1.0 20511 -15223 Foxj1 forkhead box J1 Novel N 4.7206404693670226e-05 -0.26349313629197335 1.0 20512 -76491 Abhd14b abhydrolase domain containing 14b Novel N 4.713312470448077e-05 -0.26349389532369244 1.0 20513 -21786 Tff3 trefoil factor 3, intestinal Novel U 4.697602087324339e-05 -0.2634955226000119 1.0 20514 -320355 Lipi lipase, member I Novel U 4.662314073387002e-05 -0.2634991777208952 1.0 20515 -627191 Syndig1l synapse differentiation inducing 1 like Novel U 4.6598309685296175e-05 -0.2634994349200801 1.0 20516 -241452 Dhrs9 dehydrogenase/reductase 9 Novel N 4.654174710777228e-05 -0.2635000207933987 1.0 20517 -74091 Npl N-acetylneuraminate pyruvate lyase Novel N 4.653768980310286e-05 -0.2635000628188271 1.0 20518 -100043042 Zscan4-ps3 zinc finger and SCAN domain containing 4, pseudogene 3 Novel U 4.6195946501523446e-05 -0.2635036025847106 1.0 20519 -20758 Sprr2d small proline-rich protein 2D Novel U 4.613881462473726e-05 -0.26350419435481226 1.0 20520 -209232 Wfdc5 WAP four-disulfide core domain 5 Novel U 4.61318615223619e-05 -0.2635042663748181 1.0 20521 -100038538 Ramacl RNA guanine-7 methyltransferase activating subunit like Novel U 4.604815998806776e-05 -0.26350513335255876 1.0 20522 -78242 Spink12 serine peptidase inhibitor, Kazal type 12 Novel U 4.587244525240238e-05 -0.26350695340001445 1.0 20523 -108161 Fam50b family with sequence similarity 50, member B Novel U 4.560328250437605e-05 -0.2635097413789103 1.0 20524 -432677 Vrtn vertebrae development associated Novel U 4.54901248409834e-05 -0.26351091346226785 1.0 20525 -104923 Adi1 acireductone dioxygenase 1 Novel N 4.544437141690342e-05 -0.2635113873747304 1.0 20526 -17152 Mak male germ cell-associated kinase Novel U 4.532140889284091e-05 -0.2635126610165125 1.0 20527 -68267 Slc25a22 solute carrier family 25 (mitochondrial carrier, glutamate), member 22 Novel N 4.490521086891493e-05 -0.26351697198196256 1.0 20528 -67718 Lce1h late cornified envelope 1H Novel U 4.487495179661094e-05 -0.26351728540443875 1.0 20529 -74580 Pyroxd2 pyridine nucleotide-disulphide oxidoreductase domain 2 Novel N 4.4842001738402244e-05 -0.2635176267000585 1.0 20530 -19051 Ppp1r17 protein phosphatase 1, regulatory subunit 17 Novel U 4.473195460685159e-05 -0.26351876656462947 1.0 20531 -23887 Ggt5 gamma-glutamyltransferase 5 Novel N 4.470735702118897e-05 -0.26351902134561317 1.0 20532 -71313 Fsip1 fibrous sheath-interacting protein 1 Novel U 4.4690100401670655e-05 -0.2635192000891109 1.0 20533 -12359 Cat catalase Novel U 4.4659165829482796e-05 -0.26351952050839267 1.0 20534 -236149 Slc22a26 solute carrier family 22 (organic cation transporter), member 26 Novel U 4.439513268963034e-05 -0.26352225535497564 1.0 20535 -71207 Nudt4 nudix hydrolase 4 Novel U 4.4360884826085294e-05 -0.2635226100932204 1.0 20536 -108168530 Gm20843 predicted gene, 20843 Novel U 4.430110309296697e-05 -0.2635232293104468 1.0 20537 -234988 Mbd3l2 methyl-CpG binding domain protein 3-like 2 Novel U 4.426691312149283e-05 -0.2635235834490474 1.0 20538 -109663 Hoxc11 homeobox C11 Novel N 4.4239152308489166e-05 -0.2635238709946359 1.0 20539 -545824 Zar1l zygote arrest 1-like Novel U 4.422225012131402e-05 -0.2635240460669351 1.0 20540 -93878 Pcdhb7 protocadherin beta 7 Novel U 4.41849945838187e-05 -0.26352443195856773 1.0 20541 -244608 Ccdc113 coiled-coil domain containing 113 Novel N 4.398383252237053e-05 -0.26352651558858736 1.0 20542 -66758 Zfp474 zinc finger protein 474 Novel U 4.3966406653578485e-05 -0.26352669608516344 1.0 20543 -75784 Cfap299 cilia and flagella associated protein 299 Novel U 4.371325014089626e-05 -0.26352931827199977 1.0 20544 -14841 Haspin histone H3 associated protein kinase Novel U 4.3707782862759814e-05 -0.26352937490188694 1.0 20545 -105387 Akr1c14 aldo-keto reductase family 1, member C14 Novel U 4.319864957620912e-05 -0.26353464848773217 1.0 20546 -106564 Ppcs phosphopantothenoylcysteine synthetase Novel N 4.314143366119975e-05 -0.26353524112829896 1.0 20547 -100042514 Sprr2a3 small proline-rich protein 2A3 Novel U 4.309156462896535e-05 -0.2635357576700955 1.0 20548 -212989 Best2 bestrophin 2 Novel U 4.28404636862797e-05 -0.26353835856540536 1.0 20549 -54200 Sult2b1 sulfotransferase family, cytosolic, 2B, member 1 Novel U 4.282725538423037e-05 -0.2635384953765638 1.0 20550 -53607 Snrpa small nuclear ribonucleoprotein polypeptide A Novel N 4.278323179416167e-05 -0.26353895137146255 1.0 20551 -107146 Glyat glycine-N-acyltransferase Novel N 4.2749172300532085e-05 -0.2635393041585779 1.0 20552 -100066 Cyp2j11 cytochrome P450, family 2, subfamily j, polypeptide 11 Novel U 4.2738725797302165e-05 -0.26353941236311496 1.0 20553 -328573 4930407I10Rik RIKEN cDNA 4930407I10 gene Novel U 4.2711162089034054e-05 -0.2635396978670991 1.0 20554 -74318 Hopx HOP homeobox Novel N 4.2578803241152836e-05 -0.2635410688356944 1.0 20555 -108168553 Gm20883 predicted gene, 20883 Novel U 4.2566676086214084e-05 -0.26354119444836654 1.0 20556 -433047 Krtap13-24 keratin associated protein 13-24 Novel U 4.255649845352749e-05 -0.26354129986795133 1.0 20557 -23934 Ly6h lymphocyte antigen 6 family member H Novel N 4.250638436991641e-05 -0.263541818947982 1.0 20558 -73329 1700040F15Rik RIKEN cDNA 1700040F15 gene Novel U 4.2491339599426566e-05 -0.26354197478122016 1.0 20559 -50793 Orc3 origin recognition complex, subunit 3 Novel N 4.236428544326062e-05 -0.2635432908039931 1.0 20560 -100504474 Smlr1 small leucine-rich protein 1 Novel U 4.236382704002145e-05 -0.26354329555211875 1.0 20561 -332427 Lyg2 lysozyme G-like 2 Novel N 4.235465410631544e-05 -0.2635433905650645 1.0 20562 -100462664 Krtap29-1 keratin associated protein 29-1 Novel U 4.227253662169591e-05 -0.26354424113527075 1.0 20563 -116746 Defb6 defensin beta 6 Novel U 4.225576938154931e-05 -0.26354441480979296 1.0 20564 -67062 Slc25a53 solute carrier family 25, member 53 Novel U 4.216725483177836e-05 -0.26354533164058974 1.0 20565 -23917 Impdh1 inosine monophosphate dehydrogenase 1 Novel N 4.214305259373469e-05 -0.26354558232657577 1.0 20566 -22717 Zfp59 zinc finger protein 59 Novel U 4.210414840078704e-05 -0.26354598529492745 1.0 20567 -225579 Slc27a6 solute carrier family 27 (fatty acid transporter), member 6 Novel N 4.197570403477271e-05 -0.26354731571744827 1.0 20568 -243308 A430033K04Rik RIKEN cDNA A430033K04 gene Novel U 4.18492558464968e-05 -0.2635486254636256 1.0 20569 -71847 Btbd35f1 BTB domain containing 35, family member 1 Novel U 4.175937978877872e-05 -0.26354955639687694 1.0 20570 -76927 Tsacc TSSK6 activating co-chaperone Novel U 4.152873052774748e-05 -0.2635519454543405 1.0 20571 -72748 Hdhd3 haloacid dehalogenase-like hydrolase domain containing 3 Novel U 4.145853062483239e-05 -0.2635526725826272 1.0 20572 -100191037 Krtap10-4 keratin associated protein 10-4 Novel U 4.116788918369733e-05 -0.2635556830371202 1.0 20573 -73893 Tmem202 transmembrane protein 202 Novel U 4.115200678078116e-05 -0.2635558475465275 1.0 20574 -244653 Hydin HYDIN, axonemal central pair apparatus protein Novel N 4.089624394318265e-05 -0.2635584967295916 1.0 20575 -67127 Lce1a1 late cornified envelope 1A1 Novel U 4.084036578431285e-05 -0.26355907551372426 1.0 20576 -381832 Prb1b proline-rich protein BstNI subfamily 1B Novel U 4.074131501050622e-05 -0.2635601014783832 1.0 20577 -58242 Nudt11 nudix hydrolase 11 Novel U 4.069086870420685e-05 -0.26356062399956554 1.0 20578 -240023 Pnldc1 poly(A)-specific ribonuclease (PARN)-like domain containing 1 Novel N 4.057544517528602e-05 -0.26356181955268376 1.0 20579 -99681 Tchh trichohyalin Novel U 4.056828775383266e-05 -0.2635618936890199 1.0 20580 -219026 Eddm3b epididymal protein 3B Novel U 4.043407452343806e-05 -0.2635632838652483 1.0 20581 -546161 Fbxw18 F-box and WD-40 domain protein 18 Novel U 4.027327138663926e-05 -0.2635649494588531 1.0 20582 -330228 Spdye4b speedy/RINGO cell cycle regulator family, member E4B Novel U 4.0234122567517064e-05 -0.2635653549610346 1.0 20583 -21830 Spmap2 sperm microtubule associated protein 2 Novel N 4.021782366716563e-05 -0.2635655237845087 1.0 20584 -68222 Cimip2a ciliary microtubule inner protein 2A Novel U 4.0202620321380856e-05 -0.2635656812602646 1.0 20585 -69520 Lce3f late cornified envelope 3F Novel U 4.018477247238941e-05 -0.26356586612769767 1.0 20586 -23927 Krtap14 keratin associated protein 14 Novel U 4.0143396926711305e-05 -0.2635662946942397 1.0 20587 -100502803 Krtap2-20 keratin associated protein 2-20 Novel U 3.997202466434993e-05 -0.26356806976249963 1.0 20588 -66705 Dnase1l2 deoxyribonuclease 1-like 2 Novel N 3.9886554036563234e-05 -0.2635689550644526 1.0 20589 -213332 Mfsd4b4 major facilitator superfamily domain containing 4B4 Novel U 3.972416744242441e-05 -0.2635706370594565 1.0 20590 -17218 Mcm5 minichromosome maintenance complex component 5 Novel U 3.9679472644825856e-05 -0.26357110000670075 1.0 20591 -327942 Pigl phosphatidylinositol glycan anchor biosynthesis, class L Novel U 3.962627568044564e-05 -0.26357165101910907 1.0 20592 -16670 Krt32 keratin 32 Novel N 3.9378869156000726e-05 -0.2635742136477562 1.0 20593 -57277 Slurp1 secreted Ly6/Plaur domain containing 1 Novel U 3.9343261496836736e-05 -0.2635745824707193 1.0 20594 -71840 Tekt4 tektin 4 Novel U 3.9316142404407007e-05 -0.2635748633693872 1.0 20595 -433752 Frg2f1 FSHD region gene 2 family member 1 Novel U 3.8957132550787634e-05 -0.26357858198164913 1.0 20596 -110175 Ggct gamma-glutamyl cyclotransferase Novel N 3.891454647766171e-05 -0.26357902308679465 1.0 20597 -68468 Ly6g6c lymphocyte antigen 6 family member G6C Novel U 3.8866069210962276e-05 -0.26357952521272954 1.0 20598 -208613 Tmem212 transmembrane protein 212 Novel U 3.881674325757151e-05 -0.26358003612933323 1.0 20599 -240819 Teddm1a transmembrane epididymal protein 1A Novel U 3.8717984937789425e-05 -0.26358105906476303 1.0 20600 -238683 Spata31d1c spermatogenesis associated 31 subfamily D, member 1C Novel U 3.867325707977176e-05 -0.26358152235444604 1.0 20601 -100861623 Rhox3a2 reproductive homeobox 3A2 Novel U 3.8511058468916196e-05 -0.2635832024023253 1.0 20602 -108168527 Gm20888 predicted gene, 20888 Novel U 3.8159984327470313e-05 -0.26358683881674144 1.0 20603 -78240 Cst11 cystatin 11 Novel N 3.805678838502478e-05 -0.2635879077169209 1.0 20604 -74868 Tmem65 transmembrane protein 65 Novel U 3.772528229034642e-05 -0.2635913414461519 1.0 20605 -77763 Krtap10-30 keratin associated protein 10-30 Novel U 3.736904883844684e-05 -0.26359503130053613 1.0 20606 -76894 Mettl15 methyltransferase like 15 Novel N 3.7274716201459544e-05 -0.26359600839488906 1.0 20607 -75586 Krtap9-3 keratin associated protein 9-3 Novel U 3.7251306774663824e-05 -0.26359625086896227 1.0 20608 -20448 St6galnac4 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 4 Novel U 3.711024015886832e-05 -0.26359771203233134 1.0 20609 -434794 Xlr4a X-linked lymphocyte-regulated 4A Novel U 3.7071129024749304e-05 -0.26359811714417286 1.0 20610 -574438 Xlr5a X-linked lymphocyte-regulated 5A Novel U 3.705229524602676e-05 -0.2635983122238337 1.0 20611 -68554 Cebpzos CCAAT/enhancer binding protein zeta, opposite strand Novel U 3.7038274719226175e-05 -0.26359845744798943 1.0 20612 -246277 Csad cysteine sulfinic acid decarboxylase Novel U 3.69674554582377e-05 -0.26359919099156665 1.0 20613 -22685 Zfp239 zinc finger protein 239 Novel U 3.696538653213046e-05 -0.2635992124214353 1.0 20614 -68236 Gtsf1l gametocyte specific factor 1-like Novel U 3.693698444751505e-05 -0.26359950660929404 1.0 20615 -69363 Spaca4 sperm acrosome associated 4 Novel U 3.693187190259677e-05 -0.26359955956486625 1.0 20616 -104681 Slc16a6 solute carrier family 16 (monocarboxylic acid transporters), member 6 Novel U 3.658019935961736e-05 -0.2636032021775058 1.0 20617 -67442 Retsat retinol saturase (all trans retinol 13,14 reductase) Novel U 3.652513152041366e-05 -0.26360377256837403 1.0 20618 -104362 Meig1 meiosis expressed gene 1 Novel U 3.640412775522892e-05 -0.263605025921396 1.0 20619 -64661 Krtdap keratinocyte differentiation associated protein Novel U 3.6353600505890486e-05 -0.2636055492809837 1.0 20620 -74175 Crct1 cysteine-rich C-terminal 1 Novel U 3.6313606839339015e-05 -0.2636059635340671 1.0 20621 -69215 Sat2 spermidine/spermine N1-acetyl transferase 2 Novel N 3.621840519855999e-05 -0.26360694962953274 1.0 20622 -233893 Zfp764 zinc finger protein 764 Novel U 3.615566614367246e-05 -0.2636075994786008 1.0 20623 -380730 Lrrc37 leucine rich repeat containing 37 Novel U 3.6051688703860804e-05 -0.26360867647350433 1.0 20624 -170790 Mlc1 megalencephalic leukoencephalopathy with subcortical cysts 1 homolog (human) Novel U 3.5911122838675405e-05 -0.26361013245011505 1.0 20625 -105005 Lratd1 LRAT domain containing 1 Novel N 3.577011115325646e-05 -0.2636115930445171 1.0 20626 -76971 Sult2a8 sulfotransferase family 2A, dehydroepiandrosterone (DHEA)-preferring, member 8 Novel U 3.569280509262045e-05 -0.2636123937781519 1.0 20627 -68171 Pate6 prostate and testis expressed 6 Novel U 3.563318263265638e-05 -0.2636130113456322 1.0 20628 -434766 Rhox2g reproductive homeobox 2G Novel U 3.541457281825601e-05 -0.26361527569890336 1.0 20629 -75732 Iqcd IQ motif containing D Novel U 3.532232578166139e-05 -0.2636162311906759 1.0 20630 -100041261 Krtap10-22 keratin associated protein 10-22 Novel U 3.530513156163705e-05 -0.26361640928784175 1.0 20631 -66761 Tex56 testis expressed 56 Novel U 3.51980093443285e-05 -0.2636175188562471 1.0 20632 -16483 Kap kidney androgen regulated protein Novel U 3.519158895267964e-05 -0.2636175853584528 1.0 20633 -20755 Sprr2a1 small proline-rich protein 2A1 Novel U 3.510545742148311e-05 -0.26361847750602146 1.0 20634 -670895 Krtap10-28 keratin associated protein 10-28 Novel U 3.4914008709995844e-05 -0.26362046052548155 1.0 20635 -66432 Slc7a6os solute carrier family 7, member 6 opposite strand Novel N 3.489789740710371e-05 -0.26362062740582726 1.0 20636 -77673 Defb41 defensin beta 41 Novel U 3.4888102405374045e-05 -0.2636207288621332 1.0 20637 -434178 Zfp141 zinc finger protein 141 Novel U 3.4874490464729145e-05 -0.26362086985416694 1.0 20638 -75510 Izumo2 IZUMO family member 2 Novel U 3.4748881960846315e-05 -0.263622170902921 1.0 20639 -67334 H2ap H2A.P histone Novel U 3.4649613649956194e-05 -0.26362319912082194 1.0 20640 -210940 Spata31e2 spermatogenesis associated 31 subfamily E member 2 Novel U 3.459289962425345e-05 -0.26362378656283575 1.0 20641 -622554 Majin membrane anchored junction protein Novel U 3.4454779635475224e-05 -0.2636252172051391 1.0 20642 -56096 Plac1 placental specific protein 1 Novel U 3.442776547145278e-05 -0.263625497016962 1.0 20643 -20760 Sprr2f small proline-rich protein 2F Novel U 3.434166618885048e-05 -0.2636263888305008 1.0 20644 -270711 Calhm4 calcium homeostasis modulator family member 4 Novel U 3.4165983596426606e-05 -0.2636282085450179 1.0 20645 -107869 Cth cystathionine gamma lyase Novel U 3.413171607753493e-05 -0.2636285634868521 1.0 20646 -70840 Slc22a16 solute carrier family 22 (organic cation transporter), member 16 Novel U 3.405814243143787e-05 -0.26362932556025975 1.0 20647 -68591 Mocos molybdenum cofactor sulfurase Novel U 3.397115656732688e-05 -0.2636302265569807 1.0 20648 -108168520 Gm21518 predicted gene, 21518 Novel U 3.394938493692554e-05 -0.26363045206681274 1.0 20649 -381738 Drc1 dynein regulatory complex subunit 1 Novel N 3.3763203096568645e-05 -0.26363238053219473 1.0 20650 -67752 Saxo4 stabilizer of axonemal microtubules 4 Novel U 3.315077762327084e-05 -0.26363872401511473 1.0 20651 -78382 Lce6a late cornified envelope 6A Novel U 3.2971890826379114e-05 -0.2636405769186764 1.0 20652 -76942 Lypd5 Ly6/Plaur domain containing 5 Novel U 3.2964690169921124e-05 -0.2636406515028392 1.0 20653 -236293 Slc22a29 solute carrier family 22. member 29 Novel U 3.2749636468968445e-05 -0.2636428790220042 1.0 20654 -76974 Urah urate (5-hydroxyiso-) hydrolase Novel U 3.270820637810362e-05 -0.26364330815352344 1.0 20655 -105653 Phyhip phytanoyl-CoA hydroxylase interacting protein Novel N 3.269774134365553e-05 -0.2636434165500062 1.0 20656 -546886 Cfap73 cilia and flagella associated protein 73 Novel U 3.2650405965967136e-05 -0.26364390684829225 1.0 20657 -229780 Trmt13 tRNA methyltransferase 13 Novel U 3.263788842214103e-05 -0.2636440365045997 1.0 20658 -68527 Ucma upper zone of growth plate and cartilage matrix associated Novel U 3.250782543283442e-05 -0.26364538369276735 1.0 20659 -223989 Marf1 meiosis regulator and mRNA stability 1 Novel U 3.2473096544535325e-05 -0.2636457434134507 1.0 20660 -94041 Allc allantoicase Novel U 3.242615031259196e-05 -0.2636462296809779 1.0 20661 -71562 Afmid arylformamidase Novel U 3.207341710751209e-05 -0.26364988327992067 1.0 20662 -74708 Dnaaf6rt dynein axonemal assembly factor 6, retrotransposed Novel U 3.1977940196011725e-05 -0.26365087222663136 1.0 20663 -194854 Gm9 predicted gene 9 Novel U 3.187286366756221e-05 -0.26365196060585877 1.0 20664 -69693 Pof1b premature ovarian failure 1B Novel U 3.16079693583695e-05 -0.26365470437240546 1.0 20665 -68768 Krtap4-6 keratin associated protein 4-6 Novel U 3.1056650099612945e-05 -0.26366041491916403 1.0 20666 -67317 Spata31g1 SPATA31 subfamily G member 1 Novel U 3.104709247004764e-05 -0.2636605139167769 1.0 20667 -228756 Cstl1 cystatin-like 1 Novel U 3.0866211671281806e-05 -0.2636623874741444 1.0 20668 -20686 Spa17 sperm autoantigenic protein 17 Novel N 3.0609285037674146e-05 -0.26366504871176927 1.0 20669 -109275 Actr5 ARP5 actin-related protein 5 Novel U 3.0546196557386946e-05 -0.26366570218017416 1.0 20670 -67187 Zmynd19 zinc finger, MYND domain containing 19 Novel U 3.052684250162586e-05 -0.2636659026488475 1.0 20671 -100862329 Btbd35f21 BTB domain containing 35, family member 21 Novel U 3.0353324261517162e-05 -0.26366769994507444 1.0 20672 -269513 Nkain3 Na+/K+ transporting ATPase interacting 3 Novel U 3.0040609757190222e-05 -0.2636709390316303 1.0 20673 -93673 Nat8f2 N-acetyltransferase 8 (GCN5-related) family member 2 Novel U 3.0037497356885006e-05 -0.2636709712697704 1.0 20674 -73532 Nudt16l2 nudix hydrolase 16 like 2 Novel U 3.0007473472950123e-05 -0.2636712822561732 1.0 20675 -238663 Spata31d1d spermatogenesis associated 31 subfamily D, member 1D Novel U 2.9865545181769686e-05 -0.26367275234474763 1.0 20676 -664968 Tmem238 transmembrane protein 238 Novel U 2.9798462373897293e-05 -0.26367344718626634 1.0 20677 -229562 Sprr4 small proline-rich protein 4 Novel U 2.969211160486407e-05 -0.26367454876403584 1.0 20678 -230734 Yrdc yrdC domain containing (E.coli) Novel U 2.9659346514014065e-05 -0.2636748881437698 1.0 20679 -100041281 Krtap10-23 keratin associated protein 10-23 Novel U 2.9396577520569393e-05 -0.26367760989636585 1.0 20680 -22117 Tst thiosulfate sulfurtransferase, mitochondrial Novel N 2.936143277762446e-05 -0.2636779739244579 1.0 20681 -72180 Zfp661 zinc finger protein 661 Novel U 2.9276606897246378e-05 -0.2636788525481384 1.0 20682 -629761 Wfdc11 WAP four-disulfide core domain 11 Novel U 2.924897472117163e-05 -0.26367913876130983 1.0 20683 -100043617 Gm4553 predicted gene 4553 Novel U 2.9200570512151056e-05 -0.26367964013051565 1.0 20684 -26560 Krtap15-1 keratin associated protein 15-1 Novel U 2.8719477654140647e-05 -0.26368462327452385 1.0 20685 -22756 Zfp94 zinc finger protein 94 Novel U 2.7949066784060998e-05 -0.26369260316499027 1.0 20686 -171168 Acer1 alkaline ceramidase 1 Novel U 2.7831043889786406e-05 -0.26369382564224936 1.0 20687 -78373 Nudt17 nudix hydrolase 17 Novel U 2.737218531235796e-05 -0.2636985784843102 1.0 20688 -100041488 Krtap2-21 keratin associated protein 2-21 Novel U 2.7216020530796096e-05 -0.263700196033984 1.0 20689 -70767 Prpf3 pre-mRNA processing factor 3 Novel N 2.716697735383344e-05 -0.26370070402159873 1.0 20690 -243813 Leng9 leukocyte receptor cluster (LRC) member 9 Novel U 2.7027237894541923e-05 -0.2637021514383244 1.0 20691 -100312987 Pate1 prostate and testis expressed 1 Novel U 2.6813387829625554e-05 -0.26370436649026685 1.0 20692 -619548 Defb42 defensin beta 42 Novel N 2.6673046873888865e-05 -0.2637058201372729 1.0 20693 -102637705 Ly6l lymphocyte antigen 6 family member L Novel U 2.664725930503947e-05 -0.2637060872440633 1.0 20694 -333669 Gm5134 predicted gene 5134 Novel U 2.6542793910128e-05 -0.2637071692931897 1.0 20695 -15109 Hal histidine ammonia lyase Novel N 2.6542386186119136e-05 -0.26370717351638157 1.0 20696 -50887 Hmgn5 high-mobility group nucleosome binding domain 5 Novel U 2.6162478996291136e-05 -0.2637111085825651 1.0 20697 -672284 Nkx1-1 NK1 homeobox 1 Novel U 2.5925789975263183e-05 -0.26371356019966413 1.0 20698 -382217 Gm1140 predicted gene 1140 Novel U 2.557278690603197e-05 -0.2637172165938509 1.0 20699 -69699 2310079G19Rik RIKEN cDNA 2310079G19 gene Novel U 2.551025671654513e-05 -0.263717864279498 1.0 20700 -330921 Pate2 prostate and testis expressed 2 Novel U 2.5344991631503636e-05 -0.26371957608981605 1.0 20701 -239435 Aard alanine and arginine rich domain containing protein Novel U 2.5339173498609365e-05 -0.2637196363538453 1.0 20702 -71968 Wdr73 WD repeat domain 73 Novel U 2.5202031806187326e-05 -0.26372105686298714 1.0 20703 -246085 Defb10 defensin beta 10 Novel U 2.5123963192202825e-05 -0.26372186549512444 1.0 20704 -15377 Foxa3 forkhead box A3 Novel N 2.491318103238615e-05 -0.2637240487698067 1.0 20705 -67433 Ccdc127 coiled-coil domain containing 127 Novel U 2.4840844982574717e-05 -0.26372479802423276 1.0 20706 -72891 Xlr4c X-linked lymphocyte-regulated 4C Novel U 2.4598641949823012e-05 -0.263727306755284 1.0 20707 -435273 Krtap1-3 keratin associated protein 1-3 Novel U 2.4589313078109432e-05 -0.26372740338343054 1.0 20708 -94060 Lce3c late cornified envelope 3C Novel U 2.4578803456163652e-05 -0.2637275122417492 1.0 20709 -73671 Sult6b1 sulfotransferase family, cytosolic, 6B, member 1 Novel U 2.4467955921681768e-05 -0.2637286603968674 1.0 20710 -670482 Krtap4-20 keratin associated protein 4-20 Novel U 2.417821021087801e-05 -0.26373166157341504 1.0 20711 -670533 Krtap9-22 keratin associated protein 9-22 Novel U 2.4129290814837048e-05 -0.26373216827891105 1.0 20712 -77705 Cstdc2 cystatin domain containing 2 Novel U 2.4036866296334663e-05 -0.26373312560903545 1.0 20713 -382113 Slc22a14 solute carrier family 22 (organic cation transporter), member 14 Novel U 2.3987598683034658e-05 -0.26373363592135446 1.0 20714 -20540 Slc7a7 solute carrier family 7 (cationic amino acid transporter, y+ system), member 7 Novel U 2.3891081036684435e-05 -0.26373463564796246 1.0 20715 -73808 Tex36 testis expressed 36 Novel U 2.3865370958738424e-05 -0.2637349019521047 1.0 20716 -171405 Slc22a27 solute carrier family 22, member 27 Novel U 2.3827061226510184e-05 -0.26373529876305174 1.0 20717 -218739 Sntn sentan, cilia apical structure protein Novel U 2.380931622287672e-05 -0.263735482565216 1.0 20718 -23923 Aadat aminoadipate aminotransferase Novel N 2.3806264525350316e-05 -0.2637355141745987 1.0 20719 -622127 Cyp3a57 cytochrome P450, family 3, subfamily a, polypeptide 57 Novel U 2.370351429773683e-05 -0.2637365784580786 1.0 20720 -105244938 Krtap5-24 keratin associated protein 5-24 Novel U 2.3684382856376545e-05 -0.26373677662091927 1.0 20721 -69784 1500009L16Rik RIKEN cDNA 1500009L16 gene Novel U 2.3651708222511436e-05 -0.26373711506370273 1.0 20722 -331416 Gm773 predicted gene 773 Novel U 2.2875298657560007e-05 -0.2637451570884534 1.0 20723 -213043 Aox2 aldehyde oxidase 2 Novel U 2.272653103294387e-05 -0.2637466980186187 1.0 20724 -634504 Krtap10-25 keratin associated protein 10-25 Novel U 2.2435321245388788e-05 -0.2637497143600252 1.0 20725 -66112 Mtarc1 mitochondrial amidoxime reducing component 1 Novel N 2.2336027707749853e-05 -0.26375074283922395 1.0 20726 -56542 Cilk1 ciliogenesis associated kinase 1 Novel U 2.209741957827299e-05 -0.26375321433438526 1.0 20727 -73338 Itpripl1 inositol 1,4,5-triphosphate receptor interacting protein-like 1 Novel U 2.2056061951257045e-05 -0.2637536427153263 1.0 20728 -319259 Bricd5 BRICHOS domain containing 5 Novel U 2.2035036783569946e-05 -0.26375386049332206 1.0 20729 -16693 Krtap11-1 keratin associated protein 11-1 Novel U 2.185997652261827e-05 -0.2637556737617502 1.0 20730 -20689 Sall3 spalt like transcription factor 3 Novel U 2.1713170106182595e-05 -0.26375719437778566 1.0 20731 -102640500 Krtap10-26 keratin associated protein 10-26 Novel U 2.1645947341989316e-05 -0.2637578906689673 1.0 20732 -72691 Calhm2 calcium homeostasis modulator family member 2 Novel N 2.1434801516796654e-05 -0.2637600777104836 1.0 20733 -72434 Lypd3 Ly6/Plaur domain containing 3 Novel N 2.137177874438917e-05 -0.26376073049828846 1.0 20734 -225443 Gm94 predicted gene 94 Novel U 2.1295697655284805e-05 -0.2637615185437084 1.0 20735 -213234 Zbbx zinc finger, B-box domain containing Novel U 2.1289969047870063e-05 -0.26376157788043564 1.0 20736 -70556 Slc25a33 solute carrier family 25, member 33 Novel N 2.1148958021478582e-05 -0.2637630384680115 1.0 20737 -434756 Akap14 A kinase anchor protein 14 Novel U 2.102545009816366e-05 -0.2637643177590211 1.0 20738 -233918 4933402N03Rik RIKEN cDNA 4933402N03 gene Novel U 2.0783102069611414e-05 -0.26376682799193407 1.0 20739 -27361 Msrb1 methionine sulfoxide reductase B1 Novel N 2.0453124492661757e-05 -0.2637702458888287 1.0 20740 -71363 Krtap7-1 keratin associated protein 7-1 Novel U 2.0300161705114135e-05 -0.26377183027235374 1.0 20741 -68484 Krtap6-5 keratin associated protein 6-5 Novel U 2.028262566961911e-05 -0.26377201191003297 1.0 20742 -68644 Abhd14a abhydrolase domain containing 14A Novel U 2.023541313308228e-05 -0.26377250093593435 1.0 20743 -219038 Tppp2 tubulin polymerization-promoting protein family member 2 Novel U 2.0157151233435585e-05 -0.2637733115701182 1.0 20744 -100503388 Krtap10-34 keratin associated protein 10-34 Novel U 2.006709137365294e-05 -0.2637742444071853 1.0 20745 -226043 Zng1 Zn regulated GTPase metalloprotein activator 1 Novel U 2.0050176911773238e-05 -0.26377441960662534 1.0 20746 -12583 Cdo1 cysteine dioxygenase 1, cytosolic Novel N 1.983903687919069e-05 -0.263776606588142 1.0 20747 -100039551 Tgif2lx2 TGFB-induced factor homeobox 2-like, X-linked 2 Novel U 1.982183875989286e-05 -0.2637767847256964 1.0 20748 -71724 Aox3 aldehyde oxidase 3 Novel U 1.973414103772967e-05 -0.2637776930958196 1.0 20749 -15202 Gml2 glycosylphosphatidylinositol anchored molecule like 2 Novel U 1.961855766375016e-05 -0.26377889030460766 1.0 20750 -24115 Best1 bestrophin 1 Novel U 1.925444659863538e-05 -0.2637826617550506 1.0 20751 -245688 Rbbp7 retinoblastoma binding protein 7, chromatin remodeling factor Novel U 1.90193886371092e-05 -0.263785096477689 1.0 20752 -66965 Ctu2 cytosolic thiouridylase subunit 2 Novel N 1.8955312231372868e-05 -0.26378576017899324 1.0 20753 -100312956 Pate3 prostate and testis expressed 3 Novel U 1.8946842218268635e-05 -0.26378584791111054 1.0 20754 -629114 Defb23 defensin beta 23 Novel U 1.880933826240574e-05 -0.26378727217256515 1.0 20755 -69134 Fam25a family with sequence similarity 25, member A Novel U 1.8774355523432962e-05 -0.26378763452262544 1.0 20756 -100502953 Krtap12-20 keratin associated protein 12-20 Novel U 1.8721503609136502e-05 -0.26378818196101633 1.0 20757 -68720 Lce1b late cornified envelope 1B Novel U 1.8584141927844413e-05 -0.26378960474879565 1.0 20758 -71623 Krtap5-2 keratin associated protein 5-2 Novel U 1.8489358474035824e-05 -0.2637905865126943 1.0 20759 -27084 Xlr5c X-linked lymphocyte-regulated 5C Novel U 1.8335597329029304e-05 -0.2637921791655797 1.0 20760 -100502865 Krtap4-27 keratin associated protein 4-27 Novel U 1.82395325623922e-05 -0.2637931742012745 1.0 20761 -433490 Defb45 defensin beta 45 Novel U 1.8133292677268855e-05 -0.2637942746305122 1.0 20762 -245583 Tgif2lx1 TGFB-induced factor homeobox 2-like, X-linked 1 Novel U 1.8110385170666342e-05 -0.2637945119057125 1.0 20763 -16703 Krtap8-1 keratin associated protein 8-1 Novel U 1.8083362441963577e-05 -0.2637947918062481 1.0 20764 -108167466 Krtap5-26 keratin associated protein 5-26 Novel U 1.794474726686918e-05 -0.263796227577675 1.0 20765 -71369 Krtap16-3 keratin associated protein 16-3 Novel U 1.7482991958589135e-05 -0.2638010104239788 1.0 20766 -104776 Aldh6a1 aldehyde dehydrogenase family 6, subfamily A1 Novel N 1.7231086940110535e-05 -0.26380361964787924 1.0 20767 -266620 Defb36 defensin beta 36 Novel U 1.7179232756306544e-05 -0.2638041567518105 1.0 20768 -77914 Krtap17-1 keratin associated protein 17-1 Novel U 1.7126818325812605e-05 -0.2638046996587585 1.0 20769 -620779 Gm12695 predicted gene 12695 Novel U 1.7027667955844347e-05 -0.26380572665503127 1.0 20770 -71803 Slc25a18 solute carrier family 25 (mitochondrial carrier), member 18 Novel N 1.700075839595982e-05 -0.26380600538336796 1.0 20771 -666842 Gm14692 predicted gene 14692 Novel U 1.6934977806099836e-05 -0.2638066867365553 1.0 20772 -66765 4933411K16Rik RIKEN cDNA 4933411K16 gene Novel U 1.693189940517636e-05 -0.26380671862253086 1.0 20773 -68874 Klhdc9 kelch domain containing 9 Novel U 1.6837879182418648e-05 -0.2638076924809074 1.0 20774 -16671 Krt33b keratin 33B Novel U 1.6689544525310708e-05 -0.2638092289264095 1.0 20775 -66380 Krtap3-3 keratin associated protein 3-3 Novel U 1.6566211876585257e-05 -0.26381050640193066 1.0 20776 -237465 Ccdc38 coiled-coil domain containing 38 Novel U 1.6471018588856046e-05 -0.26381149241087565 1.0 20777 -75087 4930505A04Rik RIKEN cDNA 4930505A04 gene Novel U 1.6383023508137317e-05 -0.26381240386102905 1.0 20778 -622629 Krtap10-31 keratin associated protein 10-31 Novel U 1.6264790656556735e-05 -0.26381362851301904 1.0 20779 -69696 Krtap13-21 keratin associated protein 13-21 Novel U 1.6188734991781458e-05 -0.26381441629509456 1.0 20780 -11761 Aox1 aldehyde oxidase 1 Novel N 1.5943005038857697e-05 -0.26381696155786905 1.0 20781 -170651 Krtap19-2 keratin associated protein 19-2 Novel U 1.591107945981682e-05 -0.26381729224196726 1.0 20782 -66195 Lce1g late cornified envelope 1G Novel U 1.5899169180960926e-05 -0.2638174156082441 1.0 20783 -435285 Krtap4-16 keratin associated protein 4-16 Novel U 1.5655033165570843e-05 -0.263819944361066 1.0 20784 -114666 Krtap5-5 keratin associated protein 5-5 Novel U 1.5642694656113055e-05 -0.26382007216294134 1.0 20785 -654459 Defb25 defensin beta 25 Novel U 1.562816989437482e-05 -0.2638202226099459 1.0 20786 -76585 Lce1i late cornified envelope 1I Novel U 1.5568780021778607e-05 -0.26382083776829396 1.0 20787 -76444 Krtap4-7 keratin associated protein 4-7 Novel U 1.5468279033071597e-05 -0.2638218787542312 1.0 20788 -109314 Prr9 proline rich 9 Novel U 1.535808282945497e-05 -0.2638230201628857 1.0 20789 -670496 Krtap4-26 keratin associated protein 4-26 Novel U 1.534871804239913e-05 -0.26382311716304224 1.0 20790 -327747 Mettl24 methyltransferase like 24 Novel U 1.5293417200973273e-05 -0.2638236899673398 1.0 20791 -665998 Krtap4-9 keratin associated protein 4-9 Novel U 1.5191512721176258e-05 -0.2638247454905916 1.0 20792 -69464 Krtap4-13 keratin associated protein 4-13 Novel U 1.51273213087551e-05 -0.2638254103831313 1.0 20793 -16705 Krtap9-1 keratin associated protein 9-1 Novel U 1.4983342624911175e-05 -0.2638269017096055 1.0 20794 -654465 Defb47 defensin beta 47 Novel U 1.4266245991538242e-05 -0.2638343293729607 1.0 20795 -670464 Krtap4-23 keratin associated protein 4-23 Novel U 1.4106887165260817e-05 -0.26383598000644465 1.0 20796 -192200 Wfdc12 WAP four-disulfide core domain 12 Novel U 1.402424632763822e-05 -0.26383683599752406 1.0 20797 -100041250 Krtap10-21 keratin associated protein 10-21 Novel U 1.3953952453702867e-05 -0.2638375640991595 1.0 20798 -16704 Krtap19-5 keratin associated protein 19-5 Novel U 1.3953006408955438e-05 -0.2638375738982599 1.0 20799 -403205 Agr3 anterior gradient 3 Novel U 1.3927180006020803e-05 -0.2638378414072925 1.0 20800 -77918 Krtap19-3 keratin associated protein 19-3 Novel U 1.3850550586887807e-05 -0.26383863513229683 1.0 20801 -66203 Lce1m late cornified envelope 1M Novel U 1.3710084543439042e-05 -0.2638400900749573 1.0 20802 -100415785 Krtap9-20 keratin associated protein 9-20 Novel U 1.3662790660486826e-05 -0.2638405799434422 1.0 20803 -320204 Etfbkmt electron transfer flavoprotein beta subunit lysine methyltransferase Novel N 1.312820603710644e-05 -0.2638461171533977 1.0 20804 -223927 Gtsf2 gametocyte specific factor 2 Novel U 1.3070724480688254e-05 -0.26384671254546943 1.0 20805 -68659 Gask1b golgi associated kinase 1B Novel U 1.2348561849552119e-05 -0.2638541926822629 1.0 20806 -637277 Sycp2l synaptonemal complex protein 2-like Novel U 1.231446959830525e-05 -0.2638545458086806 1.0 20807 -73730 Lce1l late cornified envelope 1L Novel U 1.185070544278479e-05 -0.26385934946255807 1.0 20808 -20759 Sprr2e small proline-rich protein 2E Novel U 1.1491580212275524e-05 -0.26386306926989006 1.0 20809 -105243090 Krtap5-21 keratin associated protein 5-21 Novel U 1.1410527407454443e-05 -0.2638639088121779 1.0 20810 -69473 Krtap3-1 keratin associated protein 3-1 Novel U 1.13460868681505e-05 -0.2638645762851657 1.0 20811 -239099 Homez homeodomain leucine zipper-encoding gene Novel U 1.1141960213799584e-05 -0.26386669062234114 1.0 20812 -100042275 Btbd35f27 BTB domain containing 35, family member 27 Novel U 1.0756302755277086e-05 -0.2638706852496187 1.0 20813 -100040201 Krtap6-3 keratin associated protein 6-3 Novel U 1.0741377354313505e-05 -0.2638708398464313 1.0 20814 -78753 Lipm lipase, family member M Novel N 1.0714665608363917e-05 -0.2638711165258177 1.0 20815 -66708 Krtap3-2 keratin associated protein 3-2 Novel U 1.068723220467525e-05 -0.2638714006801113 1.0 20816 -100040249 Krtap20-1 keratin associated protein 20-1 Novel U 1.0593956172712461e-05 -0.26387236683018406 1.0 20817 -239933 Krtap27-1 keratin associated protein 27-1 Novel U 1.058506575009565e-05 -0.26387245891688926 1.0 20818 -243538 Cfap100 cilia and flagella associated protein 100 Novel U 1.0376139182102696e-05 -0.26387462297141245 1.0 20819 -268905 Krtap13-1 keratin associated protein 13-1 Novel U 1.0187734620850873e-05 -0.2638765744596644 1.0 20820 -665891 Krtap4-1 keratin associated protein 4-1 Novel U 9.621219174532239e-06 -0.2638824424080342 1.0 20821 -68311 Lypd2 Ly6/Plaur domain containing 2 Novel U 9.522228727110028e-06 -0.26388346774783444 1.0 20822 -319579 Defb20 defensin beta 20 Novel U 9.458748425866585e-06 -0.26388412527470795 1.0 20823 -170654 Krtap19-4 keratin associated protein 19-4 Novel U 9.458340147606767e-06 -0.2638841295036407 1.0 20824 -70821 Spmip4 sperm microtubule inner protein 4 Novel U 9.187840241474526e-06 -0.26388693133277624 1.0 20825 -100040276 Krtap4-22 keratin associated protein 4-22 Novel U 9.176120603634764e-06 -0.2638870527243997 1.0 20826 -73503 Mbd3l1 methyl-CpG binding domain protein 3-like 1 Novel U 9.041980982022492e-06 -0.2638884421381908 1.0 20827 -670472 Krtap4-21 keratin associated protein 4-21 Novel U 8.9920810779299e-06 -0.263888958999757 1.0 20828 -16701 Krtap6-2 keratin associated protein 6-2 Novel U 8.719554742190627e-06 -0.2638917818185838 1.0 20829 -435286 Krtap9-5 keratin associated protein 9-5 Novel U 8.54747208433827e-06 -0.2638935642450969 1.0 20830 -16697 Krtap12-23 keratin associated protein 12-23 Novel U 8.511313354426385e-06 -0.2638939387760327 1.0 20831 -629203 Sult2a3 sulfotransferase family 2A, dehydroepiandrosterone (DHEA)-preferring, member 3 Novel U 8.38134285290706e-06 -0.26389528500621484 1.0 20832 -115486481 Krtap5-25 keratin associated protein 5-25 Novel U 8.155602485434806e-06 -0.2638976232175203 1.0 20833 -170656 Krtap21-1 keratin associated protein 21-1 Novel U 8.01466750417691e-06 -0.2638990830174232 1.0 20834 -622935 Krtap20-2 keratin associated protein 20-2 Novel U 7.9313195257069e-06 -0.26389994633304426 1.0 20835 -100502921 Krtap12-21 keratin associated protein 12-21 Novel U 7.853866000862383e-06 -0.26390074859410845 1.0 20836 -76627 Prr30 proline rich 30 Novel U 7.846423902595472e-06 -0.26390082567911766 1.0 20837 -75173 Tex38 testis expressed 38 Novel U 7.82482638599166e-06 -0.2639010493854847 1.0 20838 -16700 Krtap6-1 keratin associated protein 6-1 Novel U 7.81669831874863e-06 -0.263901133575738 1.0 20839 -170657 Krtap19-1 keratin associated protein 19-1 Novel U 7.745234964011294e-06 -0.26390187379081714 1.0 20840 -100502831 Krtap10-33 keratin associated protein 10-33 Novel U 7.124566781440045e-06 -0.2639083026514488 1.0 20841 -76421 1700028K03Rik RIKEN cDNA 1700028K03 gene Novel U 7.069788892614578e-06 -0.2639088700390206 1.0 20842 -68673 Krtap4-2 keratin associated protein 4-2 Novel U 7.0491632768651726e-06 -0.26390908367847044 1.0 20843 -239932 Krtap24-1 keratin associated protein 24-1 Novel U 6.875669230235231e-06 -0.2639108807241022 1.0 20844 -670880 Krtap10-27 keratin associated protein 10-27 Novel U 6.839056005977642e-06 -0.2639112599626754 1.0 20845 -100043194 Sult2a2 sulfotransferase family 2A, dehydroepiandrosterone (DHEA)-preferring, member 2 Novel U 6.655059707026306e-06 -0.2639131657902914 1.0 20846 -546511 Krtap4-24 keratin associated protein 4-24 Novel U 6.425682513732788e-06 -0.26391554167171916 1.0 20847 -432867 Defb48 defensin beta 48 Novel U 6.368665239289246e-06 -0.2639161322547735 1.0 20848 -629873 Krtap1-4 keratin associated protein 1-4 Novel U 6.084447208055829e-06 -0.26391907617579785 1.0 20849 -381591 L1td1 LINE-1 type transposase domain containing 1 Novel U 5.333870275980066e-06 -0.2639268506269864 1.0 20850 -77080 Pate5 prostate and testis expressed 5 Novel U 5.275247817718287e-06 -0.26392745783648197 1.0 20851 -432600 Krtap9-21 keratin associated protein 9-21 Novel U 5.270874617430553e-06 -0.26392750313394675 1.0 20852 -102637417 Krtap20-22 keratin associated protein 20-22 Novel U 5.160099111252196e-06 -0.26392865054299824 1.0 20853 -68637 Krtap6-6 keratin associated protein 6-6 Novel U 4.953388617409077e-06 -0.26393079164349825 1.0 20854 -50775 Krtap5-4 keratin associated protein 5-4 Novel U 4.934347887421264e-06 -0.2639309888667535 1.0 20855 -432602 Krtap31-2 keratin associated protein 31-2 Novel U 4.880574974913597e-06 -0.26393154584481354 1.0 20856 -102637070 krtap20-23 keratin associated protein 20-23 Novel U 4.697813801421659e-06 -0.26393343887904064 1.0 20857 -100040214 Krtap6-7 keratin associated protein 6-7 Novel U 4.571132320059697e-06 -0.26393475104166014 1.0 20858 -69661 Krtap13-22 keratin associated protein 13-22 Novel U 4.479064230786727e-06 -0.2639357046799023 1.0 20859 -100043627 Krtap5-20 keratin associated protein 5-20 Novel U 4.296161541709008e-06 -0.26393759917994314 1.0 20860 -70831 Krtap31-1 keratin associated protein 31-1 Novel U 3.5418625099747623e-06 -0.2639454121845176 1.0 20861 -102637192 Krtap20-20 keratin associated protein 20-20 Novel U 3.5250615548769248e-06 -0.2639455862082582 1.0 20862 -640627 Krtap20-21 keratin associated protein 20-21 Novel U 3.4745037169511806e-06 -0.2639461098846815 1.0 20863 -68740 Krtap22-2 keratin associated protein 22-2 Novel U 3.322531270877319e-06 -0.26394768401028207 1.0 20864 -100041579 Gm20878 predicted gene, 20878 Novel U 2.9264737508814637e-06 -0.2639517863610545 1.0 20865 -621580 Gm21953 predicted gene, 21953 Novel U 2.722844410646067e-06 -0.26395389554706666 1.0 20866 -670550 Krtap31-3 keratin associated protein 31-3 Novel U 2.6597450514648053e-06 -0.2639545491281548 1.0 20867 -50774 Krtap5-1 keratin associated protein 5-1 Novel U 1.2914476714126879e-06 -0.26396872190743703 1.0 20868 -667693 Spata31e4 spermatogenesis associated 31 subfamily E member 4 Novel U 4.2091756394433606e-07 -0.263977738829673 1.0 20869 -380882 Spata31e3 spermatogenesis associated 31 subfamily E member 3 Novel U 1.0307382915619149e-07 -0.26398103104462944 1.0 20870 +20844 Stam signal transducing adaptor molecule (SH3 domain and ITAM motif) 1 Known P 0.9946579193783583 10.038651932623708 1.0755679521110301e-19 1 +13854 Epn1 epsin 1 Known P 0.9929483898311795 10.020944681771786 1.2868289275178728e-19 2 +20408 Sh3gl3 SH3-domain GRB2-like 3 Known P 0.9914512173591171 10.005437018523057 1.5052838054312762e-19 3 +56324 Stam2 signal transducing adaptor molecule (SH3 domain and ITAM motif) 2 Known P 0.9874374648961979 9.963862702457142 2.289127282503074e-19 4 +19344 Rab5b RAB5B, member RAS oncogene family Known P 0.987246893447169 9.9618887696528 2.3350446590814186e-19 5 +71889 Epn3 epsin 3 Known P 0.9867638834084191 9.956885767549528 2.455549437241731e-19 6 +15239 Hgs HGF-regulated tyrosine kinase substrate Known P 0.9812323070793991 9.899589881774313 4.361679434497276e-19 7 +72008 Zfyve19 zinc finger, FYVE domain containing 19 Novel U 0.9790828623167788 9.877326003582281 5.44784567023537e-19 8 +235406 Snx33 sorting nexin 33 Novel U 0.9774661487780828 9.860580137895063 6.437550094325901e-19 9 +13858 Eps15 epidermal growth factor receptor pathway substrate 15 Known P 0.9759034486424163 9.844393741260829 7.56275057813521e-19 10 +20405 Sh3gl1 SH3-domain GRB2-like 1 Known P 0.9733680574214255 9.818132242340301 9.81623129312812e-19 11 +13855 Epn2 epsin 2 Known P 0.9727274763408774 9.811497124565953 1.0483707591297987e-18 12 +72993 Appl1 adaptor protein, phosphotyrosine interaction, PH domain and leucine zipper containing 1 Novel U 0.9684371132613145 9.767057684825927 1.6269657348782786e-18 13 +259300 Ehd2 EH-domain containing 2 Known P 0.9681714003189577 9.764305438903838 1.671749246096532e-18 14 +52348 Vps37a vacuolar protein sorting 37A Known P 0.967780448714397 9.760255975035639 1.739867673218699e-18 15 +116733 Vps4a vacuolar protein sorting 4A Known P 0.9662873085376487 9.744790078169219 2.0262660064901052e-18 16 +26431 Git2 GIT ArfGAP 2 Known P 0.9654796030884659 9.73642389167847 2.2001556490112866e-18 17 +20404 Sh3gl2 SH3-domain GRB2-like 2 Known P 0.965250019370396 9.73404587107386 2.2522237554799003e-18 18 +22088 Tsg101 tumor susceptibility gene 101 Known P 0.9635937624065103 9.716890415888447 2.665765881329341e-18 19 +330192 Vps37b vacuolar protein sorting 37B Known P 0.9607998065907838 9.6879507133955 3.5402560440236226e-18 20 +67602 Necap1 NECAP endocytosis associated 1 Novel U 0.9592926876093386 9.672340024529557 4.124285227215749e-18 21 +20215 Sag S-antigen, retina and pineal gland (arrestin) Novel U 0.9590098477847568 9.669410378924399 4.2440658717190935e-18 22 +78618 Acap2 ArfGAP with coiled-coil, ankyrin repeat and PH domains 2 Known P 0.9587132652593989 9.666338386876365 4.3733646950050635e-18 23 +66616 Snx9 sorting nexin 9 Novel U 0.9583323212647452 9.662392581502601 4.545175527423677e-18 24 +98878 Ehd4 EH-domain containing 4 Known P 0.953760893189867 9.615041879780614 7.208626670917623e-18 25 +216859 Acap1 ArfGAP with coiled-coil, ankyrin repeat and PH domains 1 Known P 0.9505045304576586 9.581312581647557 9.998748408089433e-18 26 +66371 Chmp4c charged multivesicular body protein 4C Known P 0.9503206526418736 9.579407981276313 1.0184850519404064e-17 27 +260302 Gga3 golgi associated, gamma adaptin ear containing, ARF binding protein 3 Novel U 0.9496802093619774 9.572774290836588 1.0860198440543831e-17 28 +13196 Asap1 ArfGAP with SH3 domain, ankyrin repeat and PH domain1 Known P 0.9493967437877713 9.569838163737389 1.117308279236091e-17 29 +11765 Ap1g1 adaptor protein complex AP-1, gamma 1 subunit Novel U 0.9475167677743356 9.550365433991104 1.3486152310499726e-17 30 +72183 Snx6 sorting nexin 6 Novel U 0.9455650968471463 9.530150090685002 1.6388793034507983e-17 31 +170625 Snx18 sorting nexin 18 Novel U 0.9436389140799605 9.510198752902339 1.9857658939573155e-17 32 +19345 Rab5c RAB5C, member RAS oncogene family Known P 0.9430197383580916 9.503785351129526 2.112004033372121e-17 33 +66147 Necap2 NECAP endocytosis associated 2 Novel U 0.9429717355634891 9.50328813976104 2.122116121749307e-17 34 +12757 Clta clathrin light chain A Known P 0.9400712840388045 9.473245358215562 2.830822406132051e-17 35 +216190 Appl2 adaptor protein, phosphotyrosine interaction, PH domain and leucine zipper containing 2 Novel U 0.9396046836255479 9.468412326473715 2.9648890275205807e-17 36 +224754 H2-M11 histocompatibility 2, M region locus 11 Novel U 0.9362798945241955 9.433974270258458 4.1201383880806555e-17 37 +13660 Ehd1 EH-domain containing 1 Known P 0.9322529746016891 9.392263566078997 6.127892572687847e-17 38 +271457 Rab5a RAB5A, member RAS oncogene family Known P 0.9307520784305331 9.376717332877467 7.101921066419194e-17 39 +67300 Cltc clathrin heavy chain Novel U 0.9278685953102754 9.346850309507237 9.422451378862728e-17 40 +74325 Cltb clathrin light chain B Known P 0.9277067018952873 9.34517342283675 9.572965388204525e-17 41 +75608 Chmp4b charged multivesicular body protein 4B Known P 0.9262332023742047 9.329910963236063 1.1056913620999355e-16 42 +22320 Vamp8 vesicle-associated membrane protein 8 Novel U 0.9252953953814413 9.320197189233765 1.211756879304911e-16 43 +269774 Aak1 AP2 associated kinase 1 Novel U 0.922351267846284 9.289702013007583 1.6145123987810629e-16 44 +19159 Cyth3 cytohesin 3 Novel N 0.9222435069194321 9.288585828869701 1.6315311174875002e-16 45 +11845 Arf6 ADP-ribosylation factor 6 Known P 0.9211828269248681 9.277599340353982 1.8088024521568973e-16 46 +194309 Vps37d vacuolar protein sorting 37D Known P 0.9170303820850151 9.234588453207055 2.7055952485546766e-16 47 +232910 Ap2s1 adaptor-related protein complex 2, sigma 1 subunit Known P 0.9157809073733785 9.22164643521819 3.0529969197909775e-16 48 +66700 Chmp3 charged multivesicular body protein 3 Known P 0.9138825566066336 9.201983380381167 3.6668870873062877e-16 49 +11769 Ap1s1 adaptor protein complex AP-1, sigma 1 Novel U 0.9137651033729193 9.20076680364742 3.7086448464209233e-16 50 +252903 Ap1s3 adaptor-related protein complex AP-1, sigma 3 Novel U 0.9110498744624673 9.1726425518513 4.816408639864159e-16 51 +57440 Ehd3 EH-domain containing 3 Known P 0.9003133408132223 9.061433889256948 1.3434727388286652e-15 52 +18571 Pdcd6ip programmed cell death 6 interacting protein Novel U 0.896541276589221 9.022362972024672 1.9208243787984464e-15 53 +18710 Pik3r3 phosphoinositide-3-kinase regulatory subunit 3 Novel U 0.896418091629354 9.021087026259858 1.9433316408504588e-15 54 +69710 Arap1 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 1 Known P 0.8954426145999025 9.010983067255879 2.1310102006109707e-15 55 +21968 Tom1 target of myb1 trafficking protein Novel U 0.895010988964528 9.006512303113597 2.2196662734043587e-15 56 +216963 Git1 GIT ArfGAP 1 Known P 0.8918165268183675 8.973424169215953 2.9994015540551733e-15 57 +71920 Epgn epithelial mitogen Novel U 0.891539755853703 8.970557384662314 3.078509622325045e-15 58 +12402 Cbl Casitas B-lineage lymphoma Known P 0.8896330489823779 8.95080777756874 3.682411434395383e-15 59 +19332 Rab20 RAB20, member RAS oncogene family Novel U 0.8895821056706786 8.950280108420829 3.7000573180656895e-15 60 +70591 5730455P16Rik RIKEN cDNA 5730455P16 gene Novel U 0.8893878134205184 8.948267635680683 3.768127004076582e-15 61 +14787 Rhpn1 rhophilin, Rho GTPase binding protein 1 Novel U 0.8844355838027824 8.89697260409595 5.988715374512394e-15 62 +320634 Ocrl OCRL, inositol polyphosphate-5-phosphatase Novel U 0.884168018333376 8.89420116975958 6.1400605006230255e-15 63 +13859 Eps15l1 epidermal growth factor receptor pathway substrate 15-like 1 Novel N 0.8793696863251209 8.84450020455474 9.593822475135541e-15 64 +228998 Arfgap1 ADP-ribosylation factor GTPase activating protein 1 Known P 0.8792635000503484 8.843400330611331 9.688775012723756e-15 65 +77799 Sla2 Src-like-adaptor 2 Novel U 0.8789495016047603 8.840147945034072 9.975018749974818e-15 66 +215114 Hip1 huntingtin interacting protein 1 Novel U 0.8778904316499788 8.829178133257495 1.100346430935751e-14 67 +11771 Ap2a1 adaptor-related protein complex 2, alpha 1 subunit Known P 0.8759012624804642 8.808574384390075 1.322609603397137e-14 68 +11766 Ap1g2 adaptor protein complex AP-1, gamma 2 subunit Novel U 0.8751520778301404 8.800814354410141 1.4173535061532917e-14 69 +80794 Cblc Casitas B-lineage lymphoma c Known P 0.8730501071142653 8.779042210833671 1.720446079695569e-14 70 +217695 Zfyve1 zinc finger, FYVE domain containing 1 Novel U 0.8681241061145997 8.728018854412692 2.7044645603058597e-14 71 +70160 Vps36 vacuolar protein sorting 36 Known P 0.8667558500894917 8.713846503483618 3.065114707847676e-14 72 +69178 Snx5 sorting nexin 5 Novel U 0.8657395486672742 8.703319686761397 3.3633499288642904e-14 73 +100017 Ldlrap1 low density lipoprotein receptor adaptor protein 1 Known P 0.8645464407541359 8.69096151421842 3.750180180622476e-14 74 +11768 Ap1m2 adaptor protein complex AP-1, mu 2 subunit Novel U 0.8641733727679527 8.687097288281484 3.879917597688775e-14 75 +383075 Enthd1 ENTH domain containing 1 Novel U 0.8625925477762759 8.670723154984518 4.480627692625635e-14 76 +208650 Cblb Casitas B-lineage lymphoma b Novel U 0.8614646734376024 8.659040669661408 4.964462462144871e-14 77 +14990 H2-M2 histocompatibility 2, M region locus 2 Novel U 0.8614471258710804 8.658858912544218 4.9723835703749976e-14 78 +23970 Pacsin2 protein kinase C and casein kinase substrate in neurons 2 Novel U 0.8592478942556251 8.636079343767177 6.070573153786654e-14 79 +20975 Synj2 synaptojanin 2 Novel U 0.8551654279776104 8.59379329226335 8.780461603415135e-14 80 +67323 P3r3urf Pik3r3 upstream reading frame Novel U 0.8542978973467603 8.584807438507536 9.494671402897038e-14 81 +18717 Pip5k1c phosphatidylinositol-4-phosphate 5-kinase, type 1 gamma Known P 0.8518929889127055 8.559897476004702 1.1788204100528542e-13 82 +13430 Dnm2 dynamin 2 Known P 0.8495780901635507 8.535919830859152 1.4509319843243864e-13 83 +106572 Rab31 RAB31, member RAS oncogene family Known P 0.8478266452950223 8.517778422486582 1.6971796618766802e-13 84 +216991 Adap2 ArfGAP with dual PH domains 2 Novel U 0.8464467455142501 8.503485465919107 1.9198477882072477e-13 85 +58220 Pard6b par-6 family cell polarity regulator beta Known P 0.8431858991749092 8.46970972673076 2.5670653654299746e-13 86 +108012 Ap1s2 adaptor-related protein complex 1, sigma 2 subunit Novel U 0.8427958193293982 8.465669292514143 2.6576471479969343e-13 87 +630294 H2-T25 histocompatibility-2, T region locus 25 Novel U 0.8412874863449782 8.450046029045295 3.0385467672165455e-13 88 +11777 Ap3s1 adaptor-related protein complex 3, sigma 1 subunit Novel U 0.8375833538598568 8.411678746531203 4.217656293001815e-13 89 +76959 Chmp5 charged multivesicular body protein 5 Known P 0.8344143032304852 8.378853824289097 5.577048438359628e-13 90 +19334 Rab22a RAB22A, member RAS oncogene family Known P 0.8320977579808113 8.354859124745298 6.836056922264129e-13 91 +11774 Ap3b1 adaptor-related protein complex 3, beta 1 subunit Novel U 0.8316274005833383 8.349987178284438 7.124013866904717e-13 92 +215705 Arrdc1 arrestin domain containing 1 Novel U 0.8314418900705858 8.348065666491678 7.240845914525623e-13 93 +18704 Pik3c2a phosphatidylinositol-4-phosphate 3-kinase catalytic subunit type 2 alpha Novel U 0.8299129076282525 8.33222851661658 8.278568452153568e-13 94 +54189 Rabep1 rabaptin, RAB GTPase binding effector protein 1 Known P 0.8283256662671067 8.315787922775579 9.510947448315034e-13 95 +18707 Pik3cd phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit delta Novel U 0.8270500542802063 8.30257517574875 1.0631036648001123e-12 96 +78287 Rbsn rabenosyn, RAB effector Known P 0.8261205417103674 8.292947315106439 1.1528199980345243e-12 97 +11767 Ap1m1 adaptor-related protein complex AP-1, mu subunit 1 Novel U 0.8249684262335505 8.281013740871323 1.274437971326933e-12 98 +67123 Ubap1 ubiquitin-associated protein 1 Novel U 0.8245370336597099 8.27654539077275 1.323159960632932e-12 99 +18222 Numb NUMB endocytic adaptor protein Novel U 0.8221462250014484 8.251781473284078 1.6283878099063415e-12 100 +17113 M6pr mannose-6-phosphate receptor, cation dependent Novel U 0.8218921193462602 8.24914945526091 1.6646519948976868e-12 101 +68942 Chmp2b charged multivesicular body protein 2B Known P 0.8206742878264317 8.236535196412582 1.8498077526544627e-12 102 +109689 Arrb1 arrestin, beta 1 Known P 0.8160153969265764 8.188278557624667 2.7651596407165254e-12 103 +19158 Cyth2 cytohesin 2 Novel U 0.8105301209993873 8.131462249889573 4.425928208162148e-12 104 +104015 Synj1 synaptojanin 1 Novel U 0.8101603043840507 8.127631701544983 4.568014040133125e-12 105 +77407 Rab35 RAB35, member RAS oncogene family Novel U 0.8085777627192018 8.111239787003733 5.228547076770015e-12 106 +30930 Vps26a VPS26 retromer complex component A Novel U 0.8062836316517368 8.087477252822426 6.3562926704178905e-12 107 +22319 Vamp3 vesicle-associated membrane protein 3 Novel U 0.8047172134879377 8.071252344975017 7.260750157944781e-12 108 +14252 Flot2 flotillin 2 Novel U 0.804357462965615 8.06752606089096 7.485745147881467e-12 109 +209018 Vps8 VPS8 CORVET complex subunit Novel U 0.8019701888489248 8.042798754067691 9.162918392158364e-12 110 +19342 Rab4b RAB4B, member RAS oncogene family Novel N 0.8002921159834676 8.025417330490958 1.0558276520075638e-11 111 +11782 Ap4s1 adaptor-related protein complex AP-4, sigma 1 Novel U 0.7986391609790963 8.008296076893648 1.2136804642182146e-11 112 +20479 Vps4b vacuolar protein sorting 4B Known P 0.794023464433189 7.96048684380399 1.7881799621948484e-11 113 +107338 Gbf1 golgi-specific brefeldin A-resistance factor 1 Novel U 0.7938314818301415 7.958498294312712 1.8171487874055674e-11 114 +19765 Ralbp1 ralA binding protein 1 Novel U 0.7926435888679609 7.9461941380603225 2.0069524164462697e-11 115 +16004 Igf2r insulin-like growth factor 2 receptor Novel U 0.7858473884600007 7.875799317647721 3.5329915202053384e-11 116 +56440 Snx1 sorting nexin 1 Novel U 0.7774401576902658 7.788717497707628 7.063740264180325e-11 117 +218503 Fcho2 FCH domain only 2 Novel U 0.7764569218943735 7.778533173655911 7.656187004596891e-11 118 +73711 Mvb12a multivesicular body subunit 12A Known P 0.7758406561420164 7.772149913251641 8.052172416600142e-11 119 +545378 Sh2d1b2 SH2 domain containing 1B2 Novel U 0.7755500163194317 7.769139475523578 8.245853696919592e-11 120 +98366 Smap1 small ArfGAP 1 Known P 0.7754427317368228 7.768028225343706 8.318500304438292e-11 121 +84092 Usp8 ubiquitin specific peptidase 8 Known P 0.7720415403002155 7.732798796251473 1.0978403637231715e-10 122 +107305 Vps37c vacuolar protein sorting 37C Known P 0.7673211703354993 7.683905359330743 1.6102319488266895e-10 123 +76932 Arfip2 ADP-ribosylation factor interacting protein 2 Novel U 0.7665921890608466 7.676354595251859 1.7079971469274722e-10 124 +28084 Vps25 vacuolar protein sorting 25 Known P 0.7649617937475762 7.659467014193362 1.9482801810598202e-10 125 +12223 Btc betacellulin, epidermal growth factor family member Novel U 0.7630643599780748 7.6398134575836405 2.2699952747542672e-10 126 +11773 Ap2m1 adaptor-related protein complex 2, mu 1 subunit Known P 0.7607689358290772 7.616037529706328 2.729604629976515e-10 127 +15463 Agfg1 ArfGAP with FG repeats 1 Novel N 0.7584755492125567 7.592282706523431 3.279911506056915e-10 128 +27681 Snf8 SNF8, ESCRT-II complex subunit, homolog (S. cerevisiae) Known P 0.7570839269657944 7.5778683290385835 3.665592507886996e-10 129 +71678 Brox BRO1 domain and CAAX motif containing Novel U 0.7550919591150447 7.557235591522933 4.2963591227221934e-10 130 +216344 Rab21 RAB21, member RAS oncogene family Novel U 0.7540232873741923 7.5461663247618755 4.677567157880676e-10 131 +72543 Mvb12b multivesicular body subunit 12B Known P 0.7519724869854731 7.524924201751952 5.504558232604873e-10 132 +77038 Arfgap2 ADP-ribosylation factor GTPase activating protein 2 Known P 0.7519235178988739 7.524416981562729 5.525967784339018e-10 133 +74015 Fcho1 FCH domain only 1 Novel U 0.7496042610544749 7.500394195409905 6.639393687166269e-10 134 +74105 Gga2 golgi associated, gamma adaptin ear containing, ARF binding protein 2 Novel U 0.7438785041041752 7.44108699314282 1.0420407186240144e-09 135 +230837 Asap3 ArfGAP with SH3 domain, ankyrin repeat and PH domain 3 Known P 0.7425714700405004 7.427548777277706 1.1544093692875297e-09 136 +11844 Arf5 ADP-ribosylation factor 5 Novel N 0.7403509519050019 7.404548723425813 1.3732168410984313e-09 137 +71955 Ist1 increased sodium tolerance 1 homolog (yeast) Novel U 0.7397580935785952 7.3984079163700605 1.4382238648501486e-09 138 +11840 Arf1 ADP-ribosylation factor 1 Novel U 0.7277068622360925 7.273581658287302 3.653074463120738e-09 139 +18711 Pikfyve phosphoinositide kinase, FYVE type zinc finger containing Known P 0.7217595568691322 7.211979664803457 5.7542984158386035e-09 140 +13866 Erbb2 erb-b2 receptor tyrosine kinase 2 Novel U 0.7179474961854345 7.17249446555646 7.6846880975702e-09 141 +67073 Pi4k2b phosphatidylinositol 4-kinase type 2 beta Novel U 0.7127057149082756 7.118200267401924 1.141019417248275e-08 142 +67804 Snx2 sorting nexin 2 Novel U 0.7124355588111599 7.115401999428903 1.1644115057681318e-08 143 +13874 Ereg epiregulin Novel U 0.7107626004880088 7.098073552113244 1.3201094867551353e-08 144 +211673 Arfgef1 ADP ribosylation factor guanine nucleotide exchange factor 1 Novel U 0.7079422961712727 7.068860932713001 1.6300575596605163e-08 145 +14772 Grk4 G protein-coupled receptor kinase 4 Known P 0.707114085849471 7.060282357425727 1.7339277302472332e-08 146 +234852 Chmp1a charged multivesicular body protein 1A Novel U 0.7066945802473686 7.055937132189654 1.788990269997862e-08 147 +19329 Rab17 RAB17, member RAS oncogene family Novel N 0.7045586295159311 7.033813024729021 2.0970634061516107e-08 148 +240752 Pik3c2b phosphatidylinositol-4-phosphate 3-kinase catalytic subunit type 2 beta Novel U 0.7024795804578999 7.01227830293099 2.44667581912069e-08 149 +240095 H2-M5 histocompatibility 2, M region locus 5 Novel U 0.6974309578441487 6.95998483586228 3.551128245575306e-08 150 +216705 Clint1 clathrin interactor 1 Novel U 0.6941744225990711 6.926253750846596 4.509287605096358e-08 151 +74769 Pik3cb phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit beta Novel U 0.6907377928109791 6.890657252474656 5.7950979271382445e-08 152 +16330 Inpp5b inositol polyphosphate-5-phosphatase B Novel U 0.6875491339701063 6.8576292290224075 7.30582345363262e-08 153 +71770 Ap2b1 adaptor-related protein complex 2, beta 1 subunit Known P 0.6860912671822833 6.8425286927589255 8.119193253066046e-08 154 +140780 Bmp2k BMP2 inducible kinase Novel U 0.6845141751905681 6.826193225752845 9.099055641686606e-08 155 +235567 Dnajc13 DnaJ heat shock protein family (Hsp40) member C13 Novel U 0.6811919091771755 6.791781303599736 1.155753080401213e-07 156 +83814 Nedd4l neural precursor cell expressed, developmentally down-regulated gene 4-like Known P 0.68116918840902 6.791545962630085 1.1576404005034678e-07 157 +110696 H2-M10.3 histocompatibility 2, M region locus 10.3 Novel U 0.6803793377113687 6.783364715068756 1.225160172360365e-07 158 +84095 Pi4k2a phosphatidylinositol 4-kinase type 2 alpha Novel U 0.6771817426203159 6.750244130230906 1.5401704661336803e-07 159 +18223 Numbl numb-like Novel U 0.6763211827509663 6.7413304793935644 1.6376978475617596e-07 160 +68953 Chmp2a charged multivesicular body protein 2A Known P 0.6755043819220048 6.732870083258062 1.7358475016297464e-07 161 +208092 Chmp6 charged multivesicular body protein 6 Known P 0.6637017893801571 6.610619217698929 3.993638951760806e-07 162 +106039 Gga1 golgi associated, gamma adaptin ear containing, ARF binding protein 1 Novel U 0.6627978508447382 6.601256252064438 4.254225816948601e-07 163 +19336 Rab24 RAB24, member RAS oncogene family Novel U 0.6618162718175074 6.591089088768053 4.556043910856224e-07 164 +11841 Arf2 ADP-ribosylation factor 2 Novel U 0.6612926617876301 6.585665553291337 4.7255124219181997e-07 165 +192157 Socs7 suppressor of cytokine signaling 7 Novel U 0.659391023051191 6.565968441772306 5.394453030997471e-07 166 +73324 Clhc1 clathrin heavy chain linker domain containing 1 Novel U 0.6572125077982349 6.543403452397017 6.27501549196411e-07 167 +233489 Picalm phosphatidylinositol binding clathrin assembly protein Novel U 0.651651268764336 6.4858003212997755 9.210139419930236e-07 168 +70676 Gulp1 GULP, engulfment adaptor PTB domain containing 1 Novel U 0.6515981194555173 6.48524980250622 9.243833218028545e-07 169 +29816 Hip1r huntingtin interacting protein 1 related Novel U 0.6507181002718437 6.476134592730801 9.81955572934837e-07 170 +53620 Vamp5 vesicle-associated membrane protein 5 Novel N 0.6500648726229858 6.469368482217634 1.0269432318060474e-06 171 +56193 Plek pleckstrin Novel U 0.649714928090607 6.465743768255061 1.0518663705316638e-06 172 +65114 Vps35 VPS35 retromer complex component Novel U 0.6472622044771306 6.440338537695616 1.2439282746630001e-06 173 +16331 Inpp5d inositol polyphosphate-5-phosphatase D Novel U 0.6444458795610749 6.411167136796805 1.5069159523900817e-06 174 +67028 Chmp1b2 charged multivesicular body protein 1B2 Novel U 0.6425112192178503 6.391127988560216 1.7182946901133336e-06 175 +217030 Synrg synergin, gamma Novel U 0.6372779010763729 6.336921451286859 2.4459787475623833e-06 176 +170735 Arr3 arrestin 3, retinal Novel N 0.636941600926906 6.333438065393952 2.5018703030269133e-06 177 +227700 Sh3glb2 SH3-domain GRB2-like endophilin B2 Known P 0.6366689916202628 6.33061438715729 2.54809042860224e-06 178 +100041548 Gm3402 predicted gene 3402 Novel U 0.6351070714894774 6.3144360697879724 2.8294333557688043e-06 179 +19341 Rab4a RAB4A, member RAS oncogene family Known P 0.6340117112125344 6.303090364047426 3.0446060173286616e-06 180 +58194 Sh3kbp1 SH3-domain kinase binding protein 1 Known P 0.632808388419178 6.2906263861109455 3.2994165382063823e-06 181 +231801 Agfg2 ArfGAP with FG repeats 2 Novel U 0.632766023168181 6.290187568233802 3.3087570360639798e-06 182 +231834 Snx8 sorting nexin 8 Novel U 0.6307076422119848 6.26886692595515 3.795050525628728e-06 183 +231821 Adap1 ArfGAP with dual PH domains 1 Novel U 0.6301634549933331 6.263230252633547 3.9348630301915135e-06 184 +73341 Arhgef6 Rac/Cdc42 guanine nucleotide exchange factor 6 Novel U 0.6227231162172654 6.186163468178996 6.432768735892271e-06 185 +100504663 Atg14 autophagy related 14 Novel U 0.6216792989132113 6.175351642857248 6.888808362496738e-06 186 +11764 Ap1b1 adaptor protein complex AP-1, beta 1 subunit Novel U 0.6216176355597988 6.1747129358696755 6.9167137365999814e-06 187 +320129 Grk3 G protein-coupled receptor kinase 3 Known P 0.6214822467207219 6.173310582725185 6.978370572601755e-06 188 +15481 Hspa8 heat shock protein 8 Known P 0.6213670903224943 6.172117796537906 7.0312351708813945e-06 189 +20616 Snap91 synaptosomal-associated protein 91 Novel U 0.6212617422104456 6.171026604256439 7.079939167224901e-06 190 +26385 Grk6 G protein-coupled receptor kinase 6 Known P 0.6198996091544667 6.156917674840321 7.740096681872449e-06 191 +216439 Agap2 ArfGAP with GTPase domain, ankyrin repeat and PH domain 2 Known P 0.617401833333479 6.131045794996486 9.11009606177761e-06 192 +54126 Arhgef7 Rho guanine nucleotide exchange factor Novel U 0.6167980944806937 6.124792287806181 9.475186883699408e-06 193 +224756 H2-M1 histocompatibility 2, M region locus 1 Novel U 0.6151918999945591 6.108155378119599 1.0517353942119531e-05 194 +14991 H2-M3 histocompatibility 2, M region locus 3 Novel U 0.6133795818689197 6.089383446550974 1.182769139423862e-05 195 +18708 Pik3r1 phosphoinositide-3-kinase regulatory subunit 1 Novel U 0.6092567094300858 6.046678869361661 1.542940587203645e-05 196 +66251 Arfgap3 ADP-ribosylation factor GTPase activating protein 3 Known P 0.6072135164921284 6.025515544076647 1.7590427139036525e-05 197 +14773 Grk5 G protein-coupled receptor kinase 5 Known P 0.6064520733513749 6.017628541055817 1.8468985814494086e-05 198 +99371 Arfgef2 ADP ribosylation factor guanine nucleotide exchange factor 2 Novel U 0.6045931064679412 5.998373423187455 2.0797349733437486e-05 199 +14257 Flt4 FMS-like tyrosine kinase 4 Novel U 0.604559882337529 5.99802928873683 2.0841460663147327e-05 200 +19335 Rab23 RAB23, member RAS oncogene family Novel U 0.6034274354491589 5.986299441094277 2.240071019259936e-05 201 +54607 Socs6 suppressor of cytokine signaling 6 Novel U 0.5979002351694056 5.929048882293513 3.17948585631935e-05 202 +224705 Vps52 VPS52 GARP complex subunit Novel U 0.5937905928983999 5.886481342747646 4.1166520429751084e-05 203 +18709 Pik3r2 phosphoinositide-3-kinase regulatory subunit 2 Novel U 0.5919959389884165 5.867892376544107 4.605691560777959e-05 204 +19330 Rab18 RAB18, member RAS oncogene family Novel U 0.59176008086236 5.865449365827832 4.674023744415887e-05 205 +216869 Arrb2 arrestin, beta 2 Known P 0.5884641380575345 5.831310098603732 5.738610794779138e-05 206 +75869 Arl5b ADP-ribosylation factor-like 5B Novel U 0.5878853768176783 5.825315308707051 5.94845818533552e-05 207 +106952 Arap3 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 3 Known P 0.5878068099833144 5.824501516019455 5.9775142493432895e-05 208 +70369 Bag5 BCL2-associated athanogene 5 Novel U 0.5859984543441957 5.805770627755953 6.685769654805859e-05 209 +66201 Vta1 vesicle (multivesicular body) trafficking 1 Novel U 0.5859606406401623 5.8053789546526335 6.701418202374274e-05 210 +20334 Sec23a SEC23 homolog A, COPII coat complex component Novel U 0.5807180385150914 5.751076254182409 9.253455811773191e-05 211 +71943 Tom1l1 target of myb1-like 1 (chicken) Novel U 0.5779498142311777 5.722403078050101 0.0001095964706786737 212 +69091 Vps26b VPS26 retromer complex component B Novel U 0.5768192554621477 5.7106927874856055 0.00011741169448501784 213 +52428 Rhpn2 rhophilin, Rho GTPase binding protein 2 Novel U 0.5765372369437989 5.707771648943407 0.0001194440656451648 214 +108083 Pip4k2b phosphatidylinositol-5-phosphate 4-kinase, type II, beta Known P 0.574622578215668 5.687939676778441 0.00013417450632746683 215 +216810 Tom1l2 target of myb1-like 2 (chicken) Novel N 0.5724015477736989 5.6649343164729675 0.00015347888402899868 216 +11776 Ap3d1 adaptor-related protein complex 3, delta 1 subunit Novel U 0.5717034900928223 5.657703857961858 0.0001600849474730756 217 +53331 Stx7 syntaxin 7 Novel U 0.5712159006437416 5.65265342247692 0.0001648622182662421 218 +75669 Pik3r4 phosphoinositide-3-kinase regulatory subunit 4 Novel U 0.5705605582367483 5.645865407368504 0.0001715017185424114 219 +225861 Snx32 sorting nexin 32 Novel U 0.5679484777259444 5.618809563305117 0.00020064172061998948 220 +77057 Ston1 stonin 1 Novel U 0.5669365323546192 5.608327866414842 0.00021317739014600044 221 +70314 Rabep2 rabaptin, RAB GTPase binding effector protein 2 Novel U 0.5645970761824551 5.5840958562890455 0.0002451380978730288 222 +54673 Sh3glb1 SH3-domain GRB2-like B1 (endophilin) Known P 0.5630290526059742 5.567854319629854 0.0002691137380185798 223 +14083 Ptk2 PTK2 protein tyrosine kinase 2 Novel U 0.5629890833024065 5.567440318897419 0.00026975369718203846 224 +216238 Eea1 early endosome antigen 1 Known P 0.561270685594775 5.549641211931053 0.000298708611141714 225 +67588 Rnf41 ring finger protein 41 Known P 0.5611985268242408 5.548893793757951 0.00029998824000222285 226 +107650 Pi4kb phosphatidylinositol 4-kinase beta Novel U 0.5604169177204759 5.54079791235517 0.0003141942295431893 227 +52055 Rab11fip5 RAB11 family interacting protein 5 (class I) Known P 0.559828101698593 5.534698975356791 0.00032532503248390983 228 +53869 Rab11a RAB11A, member RAS oncogene family Known P 0.5564852220869064 5.500073538230188 0.00039614691396123276 229 +16835 Ldlr low density lipoprotein receptor Known P 0.5556950602309613 5.4918890677014796 0.00041495523798395 230 +76561 Snx7 sorting nexin 7 Novel U 0.554875725029029 5.483402420614059 0.0004353716319846516 231 +224761 H2-M10.5 histocompatibility 2, M region locus 10.5 Novel U 0.5526006803552816 5.459837582671447 0.0004973011646526535 232 +228765 Sdcbp2 syndecan binding protein (syntenin) 2 Novel N 0.5514337042792635 5.447750082838323 0.0005322994121158924 233 +70785 Dennd1c DENN domain containing 1C Novel U 0.5470307478405776 5.402144404785809 0.0006871333221451999 234 +11891 Rab27a RAB27A, member RAS oncogene family Novel U 0.5468510367888583 5.400282963619783 0.0006943017415898565 235 +20615 Snapin SNAP-associated protein Novel U 0.5457986519755605 5.389382396318932 0.0007377568708566614 236 +14184 Fgfr3 fibroblast growth factor receptor 3 Known P 0.5453740462533464 5.384984344206399 0.0007560257083428727 237 +18806 Pld2 phospholipase D2 Known P 0.5440042744470645 5.370796292865752 0.0008179967337152098 238 +140500 Acap3 ArfGAP with coiled-coil, ankyrin repeat and PH domains 3 Known P 0.5432835506317099 5.363331059278828 0.0008525506115006985 239 +16001 Igf1r insulin-like growth factor I receptor Known P 0.5385141856925536 5.313930134023472 0.0011195269719033907 240 +14186 Fgfr4 fibroblast growth factor receptor 4 Known P 0.538135018910329 5.310002736957626 0.0011439221480556956 241 +11772 Ap2a2 adaptor-related protein complex 2, alpha 2 subunit Known P 0.5365017684724511 5.293085582612303 0.001255013279736347 242 +208080 Ubap1l ubiquitin-associated protein 1-like Novel U 0.5346038989424533 5.273427512409684 0.0013972376834854308 243 +22042 Tfrc transferrin receptor Known P 0.533904602820793 5.266184226169648 0.001453475606799831 244 +68328 Rab13 RAB13, member RAS oncogene family Novel U 0.5270994003651803 5.19569616284339 0.002128271898114878 245 +227733 Pip5kl1 phosphatidylinositol-4-phosphate 5-kinase-like 1 Novel U 0.5270657433069331 5.195347544140482 0.0021322642668255383 246 +18720 Pip5k1a phosphatidylinositol-4-phosphate 5-kinase, type 1 alpha Known P 0.5248005307392443 5.171884546829211 0.0024182566008774465 247 +56382 Rab9 RAB9, member RAS oncogene family Novel U 0.5218565093254764 5.141390469804893 0.002845756180141717 248 +70432 Rufy2 RUN and FYVE domain-containing 2 Novel U 0.5214072599571455 5.136737159616 0.0029170990966005464 249 +381091 H2-Eb2 histocompatibility 2, class II antigen E beta2 Novel U 0.5171081420526307 5.09220703768692 0.003693148125509405 250 +228545 Vps18 VPS18 CORVET/HOPS core subunit Novel U 0.5160177090387321 5.080912368375014 0.003919661279380071 251 +100529082 H2-T27 histocompatibility 2, T region locus 27 Novel U 0.5153444782459797 5.073939065954955 0.004066142599679302 252 +56513 Pard6a par-6 family cell polarity regulator alpha Known P 0.5141707558400949 5.061781687858844 0.004334244889381961 253 +226720 Becn2 beclin 2 Novel U 0.5138673512082735 5.058639032656329 0.004406276025731359 254 +67042 Ift27 intraflagellar transport 27 Novel U 0.512669216994194 5.046228797853432 0.004702175393134493 255 +11839 Areg amphiregulin Novel U 0.5123361348251532 5.042778743695994 0.004787783300310569 256 +194590 Reps2 RALBP1 associated Eps domain containing protein 2 Novel U 0.5102869546126227 5.021553402417775 0.005348485195952 257 +70450 Unc13d unc-13 homolog D Novel U 0.510140197001051 5.02003329190151 0.005390984478709236 258 +67282 Washc3 WASH complex subunit 3 Novel U 0.5064537860940074 4.981849568910582 0.006571899089053827 259 +27260 Plek2 pleckstrin 2 Novel U 0.5034643708385961 4.950885303966763 0.007709026964397966 260 +242915 Garem2 GRB2 associated regulator of MAPK1 subtype 2 Novel U 0.503091857304313 4.947026821024383 0.007863356529744901 261 +16453 Jak3 Janus kinase 3 Novel U 0.5014152354840048 4.929660427325603 0.00859558800159378 262 +73728 Psd pleckstrin and Sec7 domain containing Known P 0.4989357389273403 4.903977883500729 0.00980003738091042 263 +66914 Vps28 vacuolar protein sorting 28 Known P 0.4988212890359151 4.902792415287684 0.009859386124216725 264 +17999 Nedd4 neural precursor cell expressed, developmentally down-regulated 4 Known P 0.4979981222591875 4.894266080874489 0.010296554991180457 265 +16396 Itch itchy, E3 ubiquitin protein ligase Known P 0.49743417366202136 4.888424719843854 0.01060676553766877 266 +17444 Grap2 GRB2-related adaptor protein 2 Novel N 0.4973873887259561 4.887940123014062 0.010632900742896963 267 +80743 Vps16 VSP16 CORVET/HOPS core subunit Novel U 0.49328674812115403 4.845465822430819 0.013180965673606498 268 +15511 Hspa1b heat shock protein 1B Novel U 0.4932397521841813 4.844979040060564 0.013213323522946322 269 +15043 H2-T3 histocompatibility 2, T region locus 3 Novel U 0.4914558877112731 4.826501830491566 0.01449965344826875 270 +266781 Snx17 sorting nexin 17 Novel U 0.48745718644496805 4.7850834142254 0.017835119612923965 271 +11843 Arf4 ADP-ribosylation factor 4 Novel U 0.4866356922889144 4.776574404762162 0.018606293350713562 272 +77573 Vps33a VPS33A CORVET/HOPS core subunit Novel U 0.4864721478326 4.774880416659891 0.018763598378932666 273 +22325 Vav2 vav 2 oncogene Novel U 0.48610177640256125 4.771044121562855 0.01912457773581442 274 +30955 Pik3cg phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit gamma Novel U 0.4854797666154873 4.764601364635813 0.01974587647030018 275 +73122 Tgfbrap1 transforming growth factor, beta receptor associated protein 1 Novel U 0.48522950376659846 4.76200915027397 0.020001285119145815 276 +101490 Inpp5f inositol polyphosphate-5-phosphatase F Novel U 0.48041328469609434 4.71212291146636 0.025581343597646262 277 +72318 Cyth4 cytohesin 4 Novel U 0.4799357526456874 4.707176650186264 0.02620971902529818 278 +231885 Gm4871 predicted gene 4871 Novel U 0.4793626432262844 4.701240401660046 0.026983434509819097 279 +94221 Gopc golgi associated PDZ and coiled-coil motif containing Novel U 0.4783238344692817 4.6904804547040095 0.02844208116836417 280 +64436 Inpp5e inositol polyphosphate-5-phosphatase E Novel U 0.4779717290055125 4.686833357885132 0.028953442292705866 281 +76742 Snx27 sorting nexin family member 27 Novel U 0.4767429370930004 4.674105571649689 0.03080802714242448 282 +668218 Bin2 bridging integrator 2 Novel U 0.4739974943900824 4.645668366384431 0.03537226872564474 283 +67903 Gipc1 GIPC PDZ domain containing family, member 1 Novel U 0.4706887303220353 4.611396296937357 0.04173720159073077 284 +14997 H2-M9 histocompatibility 2, M region locus 9 Novel U 0.47052491457346973 4.609699498798868 0.04207928488020754 285 +27059 Sh3d19 SH3 domain protein D19 Novel U 0.4704786302801039 4.609220087609699 0.04217642248019282 286 +19325 Rab10 RAB10, member RAS oncogene family Novel U 0.46859746368691846 4.589735025877504 0.0463114727874037 287 +74143 Opa1 OPA1, mitochondrial dynamin like GTPase Novel U 0.467144262083191 4.5746828114375235 0.04976889769484232 288 +67074 Mon2 MON2 homolog, regulator of endosome to Golgi trafficking Novel U 0.46639639566450986 4.566936435657608 0.05164323280300085 289 +20400 Sh2d1a SH2 domain containing 1A Novel U 0.465532637450596 4.55798965647241 0.053892162994977434 290 +53330 Vamp4 vesicle-associated membrane protein 4 Novel U 0.46546865649181157 4.557326943804581 0.05406242641250696 291 +18759 Prkci protein kinase C, iota Known P 0.4633083966633245 4.534951043515828 0.060123181187318034 292 +107371 Exoc6 exocyst complex component 6 Novel U 0.46272507299353716 4.528908996119903 0.06186809866098358 293 +56044 Rala v-ral simian leukemia viral oncogene A (ras related) Novel U 0.46096575289555086 4.510686016379493 0.06742920429779206 294 +15018 H2-Q7 histocompatibility 2, Q region locus 7 Novel U 0.46043665205337064 4.505205607249444 0.06919313678197468 295 +12282 Hyou1 hypoxia up-regulated 1 Novel U 0.45753378290278524 4.475137784014362 0.07968380184183128 296 +399549 H2-M10.6 histocompatibility 2, M region locus 10.6 Novel U 0.4562567759071738 4.461910587533161 0.08476571900874003 297 +243621 Iqsec3 IQ motif and Sec7 domain 3 Known P 0.4551771511804757 4.450727870104773 0.08930244994274268 298 +19744 Rheb Ras homolog enriched in brain Novel U 0.45501520116090716 4.449050397125903 0.0900026868952059 299 +19062 Inpp5k inositol polyphosphate 5-phosphatase K Novel U 0.4541230094780736 4.439809105004334 0.09395539130720433 300 +12765 Cxcr2 C-X-C motif chemokine receptor 2 Novel U 0.453269118948036 4.430964534964343 0.09789336351457932 301 +11555 Adrb2 adrenergic receptor, beta 2 Known P 0.45311634211121177 4.429382077510786 0.09861436984462046 302 +21462 Tcp10b t-complex protein 10b Novel U 0.45194614327649635 4.417261196449017 0.1043076447345414 303 +74053 Grip1 glutamate receptor interacting protein 1 Novel U 0.4512772638368461 4.410332965201347 0.10770150720313618 304 +319262 Fchsd1 FCH and double SH3 domains 1 Novel U 0.45030942128661344 4.4003080838821464 0.11279952713291559 305 +225870 Rin1 Ras and Rab interactor 1 Novel U 0.4498393247611911 4.395438839525412 0.11535807755228768 306 +209773 Dennd2a DENN domain containing 2A Novel U 0.4490117124805544 4.386866458728865 0.1199976404114258 307 +211914 Asap2 ArfGAP with SH3 domain, ankyrin repeat and PH domain 2 Known P 0.44772571514884846 4.37354614064194 0.1275620238579402 308 +17356 Afdn afadin, adherens junction formation factor Novel U 0.44622756109778283 4.358028310230163 0.1369483252379505 309 +224753 H2-M10.4 histocompatibility 2, M region locus 10.4 Novel U 0.4426999155053916 4.321489073149276 0.1617213462240129 310 +12874 Cpd carboxypeptidase D Novel U 0.44262904077839127 4.320754955056887 0.16226036588002737 311 +94190 Ophn1 oligophrenin 1 Novel U 0.4420428710209501 4.314683427978604 0.16678445930245497 312 +73178 Wasl WASP like actin nucleation promoting factor Novel U 0.4407727799218996 4.3015278661266345 0.17700310008634706 313 +107568 Wwp1 WW domain containing E3 ubiquitin protein ligase 1 Known P 0.44011939962810953 4.294760174522277 0.18248966224557883 314 +100041566 Gm3409 predicted gene 3409 Novel U 0.43936472258186565 4.286943254485954 0.18902850497909332 315 +13429 Dnm1 dynamin 1 Known P 0.4385594257250624 4.278602016115894 0.19625186852394066 316 +54721 Tyk2 tyrosine kinase 2 Novel U 0.43821221703507834 4.275005639918909 0.19944671814604972 317 +74002 Psd2 pleckstrin and Sec7 domain containing 2 Known P 0.43819853001175396 4.274863870181252 0.1995736690053592 318 +99889 Arfip1 ADP-ribosylation factor interacting protein 1 Novel U 0.43492131010041435 4.240918534072397 0.23229032919915432 319 +67296 Socs4 suppressor of cytokine signaling 4 Novel U 0.4349140818924014 4.240843664531413 0.23236783403768066 320 +104831 Ptpn23 protein tyrosine phosphatase, non-receptor type 23 Novel U 0.4340232594557225 4.231616555016503 0.24211047908529018 321 +67489 Ap4b1 adaptor-related protein complex AP-4, beta 1 Novel U 0.4321842327542958 4.21256797689787 0.26346673567111306 322 +74568 Mlkl mixed lineage kinase domain-like Novel U 0.43054342862457895 4.195572581660793 0.2840230696179565 323 +56792 Stap1 signal transducing adaptor family member 1 Novel N 0.42904469086699615 4.180048705236099 0.3041245965726014 324 +215632 Psd4 pleckstrin and Sec7 domain containing 4 Known P 0.4260391092392925 4.148916989539518 0.34858316553755864 325 +22134 Tgoln1 trans-golgi network protein Novel U 0.42417673521142235 4.129626580581086 0.379158761476165 326 +12703 Socs1 suppressor of cytokine signaling 1 Novel U 0.42248926953629384 4.112147866590551 0.4090468772404404 327 +67474 Snap29 synaptosomal-associated protein 29 Novel U 0.4223881628951742 4.111100607325535 0.4109068833799743 328 +105504 Exoc5 exocyst complex component 5 Novel U 0.4222033370131733 4.1091861869155935 0.4143277962628923 329 +24071 Synj2bp synaptojanin 2 binding protein Novel U 0.4197737239304266 4.084020334473729 0.4618860217225385 330 +15015 H2-Q4 histocompatibility 2, Q region locus 4 Novel U 0.4195593773968452 4.081800140125156 0.46632156195203 331 +20418 Shc3 src homology 2 domain-containing transforming protein C3 Novel U 0.4188566830201293 4.074521654870965 0.48114765376034613 332 +15040 H2-T23 histocompatibility 2, T region locus 23 Novel U 0.4183767466774427 4.069550490010475 0.4915295216690768 333 +21461 Tcp10a t-complex protein 10a Novel U 0.4162917860239389 4.047954536100871 0.5391470116435303 334 +219024 Pip4p1 phosphatidylinositol-4,5-bisphosphate 4-phosphatase 1 Novel U 0.4127214951411819 4.010973580504263 0.6309927348991305 335 +16151 Ikbkg inhibitor of kappaB kinase gamma Novel U 0.4105514775155046 3.9884966092729837 0.6938581405392842 336 +69780 Smap2 small ArfGAP 2 Known P 0.4082811339240764 3.964980464986495 0.7659494331553859 337 +69440 Dennd6b DENN domain containing 6B Novel U 0.40766038347041844 3.958550752193578 0.786860766606602 338 +21802 Tgfa transforming growth factor alpha Novel U 0.40562455855591534 3.937463744653293 0.8592947940326123 339 +271849 Shc4 SHC (Src homology 2 domain containing) family, member 4 Novel U 0.40507464809093585 3.931767790134368 0.8799156834976314 340 +69596 Ap5s1 adaptor-related protein 5 complex, sigma 1 subunit Novel U 0.40430659017263887 3.9238122714651915 0.909500643088688 341 +67064 Chmp1b charged multivesicular body protein 1B Known P 0.4033391352507952 3.9137914051881015 0.9481046145698064 342 +17246 Mdm2 transformed mouse 3T3 cell double minute 2 Known P 0.40274778943302336 3.9076662646470672 0.9724575770030571 343 +67384 Bag4 BCL2-associated athanogene 4 Novel U 0.40093290195484965 3.8888677198093555 1.0 344 +13639 Efna4 ephrin A4 Novel N 0.4009283928951639 3.8888210151173577 1.0 345 +58244 Stx6 syntaxin 6 Novel U 0.3996458370148578 3.8755363434709 1.0 346 +67826 Snap47 synaptosomal-associated protein, 47 Novel U 0.39786999401648304 3.8571422200714274 1.0 347 +212285 Arap2 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 2 Known P 0.3977994158054934 3.8564111732821305 1.0 348 +68299 Vps53 VPS53 GARP complex subunit Novel U 0.3975518800520295 3.853847206085051 1.0 349 +55988 Snx12 sorting nexin 12 Novel U 0.3973241076943347 3.851487947491661 1.0 350 +19707 Reps1 RalBP1 associated Eps domain containing protein Novel N 0.39664929033791785 3.8444982114973207 1.0 351 +23969 Pacsin1 protein kinase C and casein kinase substrate in neurons 1 Novel U 0.39619553928097495 3.8397982729657683 1.0 352 +234779 Plcg2 phospholipase C, gamma 2 Novel U 0.3948146380024181 3.8254949429171603 1.0 353 +14924 Magi1 membrane associated guanylate kinase, WW and PDZ domain containing 1 Novel U 0.39479238065150773 3.8252644020081017 1.0 354 +19713 Ret ret proto-oncogene Known P 0.39428497021299314 3.8200086613661868 1.0 355 +14972 H2-K1 histocompatibility 2, K1, K region Novel U 0.39345562009877494 3.811418280146531 1.0 356 +216549 Aftph aftiphilin Novel U 0.3932938262976626 3.8097424252732934 1.0 357 +19200 Pstpip1 proline-serine-threonine phosphatase-interacting protein 1 Novel U 0.3927777535171247 3.804396960377461 1.0 358 +54198 Snx3 sorting nexin 3 Novel U 0.3921913491368999 3.7983230030840978 1.0 359 +347722 Agap1 ArfGAP with GTPase domain, ankyrin repeat and PH domain 1 Known P 0.39050652354697113 3.7808716350092726 1.0 360 +99470 Magi3 membrane associated guanylate kinase, WW and PDZ domain containing 3 Novel U 0.38899293458648004 3.765193930313062 1.0 361 +18719 Pip5k1b phosphatidylinositol-4-phosphate 5-kinase, type 1 beta Known P 0.3885039894302488 3.760129452458025 1.0 362 +117150 Pip4k2c phosphatidylinositol-5-phosphate 4-kinase, type II, gamma Novel U 0.3875261261449903 3.7500007766948413 1.0 363 +26563 Ror1 receptor tyrosine kinase-like orphan receptor 1 Novel U 0.38467648315144876 3.720484268244704 1.0 364 +231580 Gak cyclin G associated kinase Novel U 0.38116970363812364 3.6841611613248477 1.0 365 +12521 Cd82 CD82 antigen Novel U 0.3787534939818005 3.659134141133266 1.0 366 +259000 Or5k3 olfactory receptor family 5 subfamily K member 3 Novel U 0.3780558219054907 3.6519076767015823 1.0 367 +16452 Jak2 Janus kinase 2 Novel U 0.3778857773867881 3.650146361166773 1.0 368 +110557 H2-Q6 histocompatibility 2, Q region locus 6 Novel U 0.3773517822230043 3.644615256814446 1.0 369 +27008 Micall1 microtubule associated monooxygenase, calponin and LIM domain containing -like 1 Novel U 0.37669523190429266 3.6378147301961596 1.0 370 +20416 Shc1 src homology 2 domain-containing transforming protein C1 Novel U 0.37652771330132334 3.6360795780134807 1.0 371 +18803 Plcg1 phospholipase C, gamma 1 Novel U 0.3763310904328339 3.6340429648052957 1.0 372 +11778 Ap3s2 adaptor-related protein complex 3, sigma 2 subunit Novel U 0.37587474085660155 3.629316110896365 1.0 373 +76658 1700123K08Rik RIKEN cDNA 1700123K08 gene Novel U 0.3748171644792763 3.6183617695459804 1.0 374 +333715 H2-M10.2 histocompatibility 2, M region locus 10.2 Novel U 0.3738425347815106 3.608266587175748 1.0 375 +209131 Snx30 sorting nexin family member 30 Novel U 0.3736439568248356 3.606209723228407 1.0 376 +14269 Fnbp1 formin binding protein 1 Novel U 0.37359179021858385 3.6056693832357363 1.0 377 +13867 Erbb3 erb-b2 receptor tyrosine kinase 3 Known P 0.3725753508792872 3.595141137972945 1.0 378 +106393 Srl sarcalumenin Novel U 0.3721737708594999 3.5909815853292195 1.0 379 +100041578 Gm3415 predicted gene 3415 Novel U 0.3705856378850532 3.5745317561869596 1.0 380 +18596 Pdgfrb platelet derived growth factor receptor, beta polypeptide Novel U 0.36956983799143023 3.564010134281435 1.0 381 +17973 Nck1 non-catalytic region of tyrosine kinase adaptor protein 1 Novel U 0.3691563695030147 3.5597274412704714 1.0 382 +13132 Dab2 disabled 2, mitogen-responsive phosphoprotein Known P 0.3676331545943933 3.543950031319963 1.0 383 +67839 Gpsm1 G-protein signalling modulator 1 (AGS3-like, C. elegans) Novel U 0.36758260008495175 3.543426389373057 1.0 384 +14255 Flt3 FMS-like tyrosine kinase 3 Novel U 0.36733778187669924 3.540890570419943 1.0 385 +105513 Chmp7 charged multivesicular body protein 7 Novel U 0.3666049675021997 3.533300103218851 1.0 386 +15006 H2-Q1 histocompatibility 2, Q region locus 1 Novel U 0.3663957478216199 3.5311330126451317 1.0 387 +227801 Dennd1a DENN domain containing 1A Novel U 0.3661435776060908 3.5285210418423305 1.0 388 +21336 Tacr1 tachykinin receptor 1 Novel U 0.3641015157115288 3.507369431867626 1.0 389 +53376 Usp2 ubiquitin specific peptidase 2 Novel U 0.3622345613920886 3.48803158039968 1.0 390 +19766 Ripk1 receptor (TNFRSF)-interacting serine-threonine kinase 1 Novel U 0.36196390076648527 3.4852280865371696 1.0 391 +13649 Egfr epidermal growth factor receptor Known P 0.36044538441168844 3.46949934405272 1.0 392 +50884 Nckap1 NCK-associated protein 1 Novel U 0.3601411804274809 3.4663484091844654 1.0 393 +17274 Rab8a RAB8A, member RAS oncogene family Novel U 0.35987574367578334 3.463599024036145 1.0 394 +245860 Atg9a autophagy related 9A Novel U 0.35868109102021256 3.451224851101833 1.0 395 +56041 Uso1 USO1 vesicle docking factor Novel U 0.3562655752418877 3.4262050180757466 1.0 396 +108011 Ap4e1 adaptor-related protein complex AP-4, epsilon 1 Novel U 0.3561544194377901 3.425053669910954 1.0 397 +83813 Tnk1 tyrosine kinase, non-receptor, 1 Novel U 0.3558055716940721 3.4214403164492753 1.0 398 +231123 Haus3 HAUS augmin-like complex, subunit 3 Novel U 0.3547620004238106 3.4106310395374635 1.0 399 +15013 H2-Q2 histocompatibility 2, Q region locus 2 Novel U 0.35468028967665055 3.4097846823044757 1.0 400 +18798 Plcb4 phospholipase C, beta 4 Novel U 0.3502278989046087 3.363666965052127 1.0 401 +20403 Itsn2 intersectin 2 Novel U 0.34987248010590366 3.3599855488189037 1.0 402 +269608 Plekhg5 pleckstrin homology domain containing, family G (with RhoGef domain) member 5 Novel U 0.34857964768311567 3.346594433083242 1.0 403 +245944 Vps54 VPS54 GARP complex subunit Novel U 0.3477079816400766 3.3375657448639204 1.0 404 +64143 Ralb v-ral simian leukemia viral oncogene B Novel U 0.3473118032798638 3.3334621424324977 1.0 405 +228355 Madd MAP-kinase activating death domain Novel U 0.3458068921836156 3.317874322768846 1.0 406 +110157 Raf1 v-raf-leukemia viral oncogene 1 Novel U 0.3422969728325922 3.2815186935133274 1.0 407 +74998 Rab11fip2 RAB11 family interacting protein 2 (class I) Known P 0.34082956674630627 3.2663193495099536 1.0 408 +12488 Cd2ap CD2-associated protein Novel U 0.338971501995103 3.2470735758975784 1.0 409 +22031 Traf3 TNF receptor-associated factor 3 Novel U 0.33883944386491827 3.245705722126302 1.0 410 +104215 Rhoq ras homolog family member Q Novel U 0.33650371687407593 3.221512338738045 1.0 411 +68767 Washc1 WASH complex subunit 1 Novel U 0.3350109652995295 3.206050467000457 1.0 412 +16797 Lat linker for activation of T cells Novel U 0.3346638912691387 3.202455485603113 1.0 413 +234729 Vac14 Vac14 homolog (S. cerevisiae) Novel U 0.3330244277250229 3.1854739761076214 1.0 414 +215445 Rab11fip3 RAB11 family interacting protein 3 (class II) Known P 0.3326697174153176 3.1817998983801674 1.0 415 +170749 Mtmr4 myotubularin related protein 4 Novel U 0.33226676343373135 3.1776261142852955 1.0 416 +72433 Rab38 RAB38, member RAS oncogene family Novel U 0.3319364207430528 3.1742044355546777 1.0 417 +24013 Grk1 G protein-coupled receptor kinase 1 Known P 0.33171891750725907 3.17195154418836 1.0 418 +277360 Prex1 phosphatidylinositol-3,4,5-trisphosphate-dependent Rac exchange factor 1 Novel U 0.3314473545943939 3.169138704464052 1.0 419 +98952 Eeig1 estrogen-induced osteoclastogenesis regulator 1 Novel U 0.33124686171666556 3.1670620058273906 1.0 420 +14251 Flot1 flotillin 1 Novel U 0.33015811271840073 3.1557847794940583 1.0 421 +24044 Scamp2 secretory carrier membrane protein 2 Novel U 0.3292280436649989 3.146151154813295 1.0 422 +66482 Exoc2 exocyst complex component 2 Novel U 0.32881174911095784 3.141839189507484 1.0 423 +110355 Grk2 G protein-coupled receptor kinase 2 Known P 0.32874158824900174 3.1411124656057567 1.0 424 +211484 Tsga10 testis specific 10 Novel N 0.3277067147762633 3.130393280194764 1.0 425 +50497 Hspa14 heat shock protein 14 Novel U 0.32667920039580933 3.1197503200197376 1.0 426 +110279 Bcr BCR activator of RhoGEF and GTPase Novel U 0.32663804096238314 3.1193239919613522 1.0 427 +13448 Dok1 docking protein 1 Novel N 0.32532657362280193 3.105739856370136 1.0 428 +225326 Pik3c3 phosphatidylinositol 3-kinase catalytic subunit type 3 Novel U 0.32431376284278784 3.0952491956051107 1.0 429 +218035 Vps41 VPS41 HOPS complex subunit Novel U 0.32412918462712065 3.093337340514912 1.0 430 +71982 Snx10 sorting nexin 10 Novel U 0.323153449152564 3.08323070454503 1.0 431 +100763 Ube3c ubiquitin protein ligase E3C Novel U 0.321932060146552 3.070579597371758 1.0 432 +11842 Arf3 ADP-ribosylation factor 3 Novel N 0.32160202399949334 3.0671610938098777 1.0 433 +235442 Rab8b RAB8B, member RAS oncogene family Novel U 0.3215687704690606 3.0668166548348066 1.0 434 +16456 F11r F11 receptor Novel U 0.32133398512469385 3.064384755956008 1.0 435 +51897 Atg13 autophagy related 13 Novel U 0.3205760471985167 3.0565340598325315 1.0 436 +71520 Grap GRB2-related adaptor protein Novel U 0.31951643037081845 3.04555858356426 1.0 437 +20849 Stat4 signal transducer and activator of transcription 4 Novel U 0.3183915798939503 3.0339074193023263 1.0 438 +19346 Rab6a RAB6A, member RAS oncogene family Novel U 0.31671869701406774 3.0165797534255647 1.0 439 +108800 Ston2 stonin 2 Novel U 0.3162414674241964 3.011636625021755 1.0 440 +16880 Lifr LIF receptor alpha Novel U 0.3146910552800345 2.995577506999579 1.0 441 +110920 Hspa13 heat shock protein 70 family, member 13 Novel U 0.314155999213215 2.9900354138484837 1.0 442 +14784 Grb2 growth factor receptor bound protein 2 Novel U 0.31103462081649785 2.9577042790250734 1.0 443 +56468 Socs5 suppressor of cytokine signaling 5 Novel U 0.3106711175774855 2.9539391244249087 1.0 444 +75914 Exoc6b exocyst complex component 6B Novel N 0.31066587665855827 2.9538848391589463 1.0 445 +15064 Mr1 major histocompatibility complex, class I-related Novel U 0.3095366012733555 2.9421878418419443 1.0 446 +16332 Inppl1 inositol polyphosphate phosphatase-like 1 Novel U 0.3093574747950227 2.9403324556678383 1.0 447 +70497 Arhgap17 Rho GTPase activating protein 17 Novel U 0.30892226075215395 2.935824522918695 1.0 448 +14964 H2-D1 histocompatibility 2, D region locus 1 Novel U 0.30420415824009495 2.8869545721980514 1.0 449 +21682 Tec tec protein tyrosine kinase Novel U 0.30387745365424906 2.8835705768376942 1.0 450 +14366 Fzd4 frizzled class receptor 4 Novel U 0.30335230339143976 2.8781310876789004 1.0 451 +57775 Usp29 ubiquitin specific peptidase 29 Novel U 0.3029598797577981 2.8740663765818715 1.0 452 +57257 Vav3 vav 3 oncogene Novel U 0.30278857602363346 2.872292018134701 1.0 453 +20661 Sort1 sortilin 1 Novel U 0.30173732355488075 2.8614031796214237 1.0 454 +16558 Kif16b kinesin family member 16B Novel U 0.2984062262649477 2.826899783396221 1.0 455 +170758 Rac3 Rac family small GTPase 3 Novel U 0.29832628638023234 2.826071768698221 1.0 456 +106628 Trip10 thyroid hormone receptor interactor 10 Novel U 0.2964287976932496 2.8064176432550334 1.0 457 +18799 Plcd1 phospholipase C, delta 1 Novel U 0.2960120619981309 2.802101108624442 1.0 458 +100041554 Gm3404 predicted gene 3404 Novel U 0.2937825202118889 2.7790075880947844 1.0 459 +97287 Mtmr14 myotubularin related protein 14 Novel U 0.2927468194956352 2.768279834122655 1.0 460 +12390 Cav2 caveolin 2 Novel U 0.2924823703074294 2.7655406781245184 1.0 461 +13844 Ephb2 Eph receptor B2 Novel U 0.2923694550130058 2.764371105216769 1.0 462 +68797 Pdgfrl platelet-derived growth factor receptor-like Novel U 0.2916437017530253 2.756853776807744 1.0 463 +622924 Gm6370 predicted gene 6370 Novel U 0.2916176780765 2.7565842244217773 1.0 464 +100226 Stx12 syntaxin 12 Novel U 0.2913154085387019 2.75345332648584 1.0 465 +83493 Sacm1l SAC1 suppressor of actin mutations 1-like (yeast) Novel U 0.29104737691010707 2.75067706368792 1.0 466 +227120 Plcl1 phospholipase C-like 1 Novel U 0.2896953634704947 2.736672952925462 1.0 467 +12928 Crk v-crk avian sarcoma virus CT10 oncogene homolog Novel U 0.28897649450545 2.729226931817073 1.0 468 +20459 Ptk6 PTK6 protein tyrosine kinase 6 Novel U 0.2887030839784144 2.726394954565925 1.0 469 +622306 Gm6309 predicted gene 6309 Novel U 0.28830908255394444 2.7223139007633645 1.0 470 +64933 Ap3m2 adaptor-related protein complex 3, mu 2 subunit Novel U 0.2879167897305137 2.7182505445942007 1.0 471 +20130 Rras related RAS viral (r-ras) oncogene Novel U 0.2878644586108553 2.717708500577072 1.0 472 +216148 Shc2 SHC (Src homology 2 domain containing) transforming protein 2 Novel U 0.28763357443293 2.7153170098520296 1.0 473 +15002 H2-Ob histocompatibility 2, O region beta locus Novel U 0.28742933090753336 2.7132014621301157 1.0 474 +224860 Plcl2 phospholipase C-like 2 Novel U 0.28578813133593334 2.6962019709190117 1.0 475 +269587 Epb41 erythrocyte membrane protein band 4.1 Novel U 0.2826720412913789 2.6639256126734576 1.0 476 +224020 Pi4ka phosphatidylinositol 4-kinase alpha Novel U 0.2825240882214756 2.662393119639095 1.0 477 +15042 H2-T24 histocompatibility 2, T region locus 24 Novel U 0.28165268875433874 2.653367192604205 1.0 478 +18762 Prkcz protein kinase C, zeta Known P 0.2804935217368196 2.641360578742304 1.0 479 +76688 Arfrp1 ADP-ribosylation factor related protein 1 Novel U 0.2798783053519569 2.6349881876520453 1.0 480 +14969 H2-Eb1 histocompatibility 2, class II antigen E beta Novel U 0.2797910561354302 2.634084463135425 1.0 481 +116701 Fgfrl1 fibroblast growth factor receptor-like 1 Novel U 0.27971402287299346 2.6332865551354376 1.0 482 +100041352 Tcp10c t-complex protein 10c Novel U 0.27894541653424915 2.625325355945296 1.0 483 +16800 Arhgef2 Rho/Rac guanine nucleotide exchange factor 2 Novel U 0.2782243781396879 2.6178568639572912 1.0 484 +53332 Mtmr1 myotubularin related protein 1 Novel U 0.27787598136198866 2.614248181586809 1.0 485 +213990 Agap3 ArfGAP with GTPase domain, ankyrin repeat and PH domain 3 Novel U 0.277852423419048 2.614004169188255 1.0 486 +16451 Jak1 Janus kinase 1 Novel U 0.27748367525163026 2.6101846877920853 1.0 487 +14254 Flt1 FMS-like tyrosine kinase 1 Known P 0.2767487477718054 2.6025723331154986 1.0 488 +67166 Arl8b ADP-ribosylation factor-like 8B Novel U 0.27597622064853 2.594570522568073 1.0 489 +17179 Matk megakaryocyte-associated tyrosine kinase Novel N 0.27563027285721453 2.590987206718048 1.0 490 +12929 Crkl v-crk avian sarcoma virus CT10 oncogene homolog-like Novel U 0.2754649295433119 2.5892745861080138 1.0 491 +13836 Epha2 Eph receptor A2 Novel U 0.2752055514434231 2.5865879562759613 1.0 492 +20336 Exoc4 exocyst complex component 4 Novel U 0.27496122194116007 2.58405719932342 1.0 493 +213827 Arcn1 archain 1 Novel U 0.2737449055601576 2.5714586342332435 1.0 494 +101540 Prkd2 protein kinase D2 Novel U 0.2731879302243264 2.5656895020142816 1.0 495 +72108 Ddhd2 DDHD domain containing 2 Novel N 0.27172740390869415 2.5505614184491785 1.0 496 +214459 Fnbp1l formin binding protein 1-like Novel U 0.27168855332730973 2.5501590054043426 1.0 497 +104418 Dgkz diacylglycerol kinase zeta Novel U 0.26978118676306523 2.5304025652331954 1.0 498 +18718 Pip4k2a phosphatidylinositol-5-phosphate 4-kinase, type II, alpha Novel U 0.26947111009297786 2.527190801277652 1.0 499 +65113 Ndfip1 Nedd4 family interacting protein 1 Novel U 0.268861005533183 2.5208713583034035 1.0 500 +69217 Plekha4 pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 4 Novel U 0.26819777825455493 2.514001671953796 1.0 501 +210535 Timd5 T cell immunoglobulin and mucin domain containing 5 Novel U 0.2681293939939921 2.5132933500308976 1.0 502 +75788 Smurf1 SMAD specific E3 ubiquitin protein ligase 1 Known P 0.26735701849541377 2.5052931100071 1.0 503 +14579 Gem GTP binding protein overexpressed in skeletal muscle Novel U 0.2668499673297118 2.500041090701168 1.0 504 +320435 Rinl Ras and Rab interactor-like Novel U 0.26671447060940523 2.498637620126447 1.0 505 +16553 Kif13a kinesin family member 13A Novel U 0.2666745578177695 2.4982242047427463 1.0 506 +16818 Lck lymphocyte protein tyrosine kinase Novel U 0.26659149526463016 2.4973638455478637 1.0 507 +14533 Bloc1s1 biogenesis of lysosomal organelles complex-1, subunit 1 Novel U 0.26465549330352384 2.4773108008773597 1.0 508 +15482 Hspa1l heat shock protein 1-like Known P 0.26446094258837605 2.475295650965369 1.0 509 +74107 Cep55 centrosomal protein 55 Novel U 0.26442339795758557 2.4749067649138548 1.0 510 +193740 Hspa1a heat shock protein 1A Novel U 0.2638682874321185 2.469156948339342 1.0 511 +20619 Snap23 synaptosomal-associated protein 23 Novel U 0.26248121695527504 2.4547897179376825 1.0 512 +20333 Sec22b SEC22 homolog B, vesicle trafficking protein Novel U 0.261339638328698 2.442965284050973 1.0 513 +242681 Rab42 RAB42, member RAS oncogene family Novel U 0.26074335034254303 2.4367889526922912 1.0 514 +29875 Iqgap1 IQ motif containing GTPase activating protein 1 Novel U 0.26067971354460673 2.436129804831214 1.0 515 +16783 Lamp1 lysosomal-associated membrane protein 1 Novel U 0.2604594184319588 2.4338479952962184 1.0 516 +20779 Src Rous sarcoma oncogene Known P 0.2583824182450477 2.4123344956378956 1.0 517 +11836 Araf Araf proto-oncogene, serine/threonine kinase Novel U 0.25838019311959787 2.4123114478616334 1.0 518 +12389 Cav1 caveolin 1, caveolae protein Novel U 0.25792539525481695 2.4076006665289067 1.0 519 +20912 Stxbp3 syntaxin binding protein 3 Novel U 0.2571246641604177 2.3993067201757357 1.0 520 +18705 Pik3c2g phosphatidylinositol-4-phosphate 3-kinase catalytic subunit type 2 gamma Novel U 0.2567699540894053 2.3956326449206546 1.0 521 +216831 Arhgap44 Rho GTPase activating protein 44 Novel U 0.2557833304292575 2.3854132294823494 1.0 522 +207495 Baiap2l2 BAI1-associated protein 2-like 2 Novel U 0.25558838180797 2.383393958071644 1.0 523 +12520 Cd81 CD81 antigen Novel U 0.25435688010801394 2.3706381039469364 1.0 524 +74451 Pgs1 phosphatidylglycerophosphate synthase 1 Novel U 0.2542003546235006 2.3690168181238453 1.0 525 +94212 Pag1 phosphoprotein associated with glycosphingolipid microdomains 1 Novel N 0.25410555001794244 2.368034835136007 1.0 526 +103967 Dnm3 dynamin 3 Known P 0.2534639570878154 2.3613892366569824 1.0 527 +27054 Sec23b SEC23 homolog B, COPII coat complex component Novel U 0.25268071629524985 2.3532764542752425 1.0 528 +19349 Rab7 RAB7, member RAS oncogene family Novel U 0.25262436832572094 2.3526928038592017 1.0 529 +329877 Dennd4c DENN domain containing 4C Novel U 0.2522794588719788 2.3491202430756277 1.0 530 +12978 Csf1r colony stimulating factor 1 receptor Known P 0.2522414526094717 2.3487265754579676 1.0 531 +21872 Tjp1 tight junction protein 1 Novel U 0.25182975972483457 2.344462274092571 1.0 532 +241035 Pkhd1 polycystic kidney and hepatic disease 1 Novel U 0.25113100792058146 2.337224625874345 1.0 533 +18797 Plcb3 phospholipase C, beta 3 Novel U 0.2503568087596876 2.3292054964162325 1.0 534 +16924 Lnx1 ligand of numb-protein X 1 Novel U 0.24996850593470854 2.3251834685198673 1.0 535 +19285 Cavin1 caveolae associated 1 Novel U 0.24866131467109592 2.3116436243829654 1.0 536 +110379 Sec13 SEC13 homolog, nuclear pore and COPII coat complex component Novel U 0.2480521702272204 2.3053341262578475 1.0 537 +26362 Axl AXL receptor tyrosine kinase Novel U 0.24745905483612363 2.299190656534485 1.0 538 +16971 Lrp1 low density lipoprotein receptor-related protein 1 Novel U 0.24736528740526345 2.2982194165680734 1.0 539 +78610 Uvrag UV radiation resistance associated gene Novel U 0.2463312139822275 2.287508518045599 1.0 540 +17772 Mtm1 X-linked myotubular myopathy gene 1 Novel U 0.24623812627863603 2.286544318671892 1.0 541 +232227 Iqsec1 IQ motif and Sec7 domain 1 Known P 0.2459897208334095 2.283971343236125 1.0 542 +327826 Frs2 fibroblast growth factor receptor substrate 2 Novel U 0.24532382656753426 2.2770740323202836 1.0 543 +13637 Efna2 ephrin A2 Novel N 0.24361070760729853 2.2593296024459137 1.0 544 +12662 Chm CHM Rab escort protein Novel U 0.24348872220221643 2.2580660816301275 1.0 545 +54390 Sit1 suppression inducing transmembrane adaptor 1 Novel N 0.2429297066798126 2.2522758172257134 1.0 546 +639545 Exoc1l exocyst complex component 1 like Novel U 0.24282035200023633 2.251143125049504 1.0 547 +21985 Tpd52 tumor protein D52 Novel U 0.24232447120922695 2.2460068081174316 1.0 548 +11652 Akt2 thymoma viral proto-oncogene 2 Novel U 0.2422640213542251 2.245380670506504 1.0 549 +94253 Hecw1 HECT, C2 and WW domain containing E3 ubiquitin protein ligase 1 Novel N 0.24221652322711393 2.2448886864673034 1.0 550 +76108 Rap2a RAS related protein 2a Novel U 0.24205084992440962 2.2431726478441085 1.0 551 +56349 Net1 neuroepithelial cell transforming gene 1 Novel U 0.24181427443554934 2.240722206707494 1.0 552 +98710 Rabif RAB interacting factor Novel U 0.24163291045088284 2.238843644516338 1.0 553 +58205 Pdcd1lg2 programmed cell death 1 ligand 2 Novel U 0.24074436425426013 2.229640112221103 1.0 554 +67727 Stx17 syntaxin 17 Novel U 0.2406383346905037 2.2285418614852475 1.0 555 +16443 Itsn1 intersectin 1 (SH3 domain protein 1A) Novel U 0.24062584695709668 2.22841251395313 1.0 556 +21846 Tie1 tyrosine kinase with immunoglobulin-like and EGF-like domains 1 Novel N 0.24061409674535078 2.2282908056461332 1.0 557 +12778 Ackr3 atypical chemokine receptor 3 Novel U 0.2398828689701809 2.2207167723887418 1.0 558 +329727 Dennd2c DENN domain containing 2C Novel U 0.23812001459359874 2.202457184706819 1.0 559 +12503 Cd247 CD247 antigen Novel U 0.23776171945511346 2.1987459754407066 1.0 560 +269180 Inpp4a inositol polyphosphate-4-phosphatase, type I Novel U 0.23752055417151505 2.1962479933610757 1.0 561 +17974 Nck2 non-catalytic region of tyrosine kinase adaptor protein 2 Novel U 0.23626420469009715 2.183234766732813 1.0 562 +170731 Mfn2 mitofusin 2 Novel U 0.2357459629579692 2.177866835907711 1.0 563 +67138 Herc6 hect domain and RLD 6 Novel U 0.23571023700894228 2.1774967877021174 1.0 564 +21873 Tjp2 tight junction protein 2 Novel U 0.2355755461577511 2.176101664293202 1.0 565 +667977 H2-T26 histocompatibility 2, T region locus 26 Novel U 0.23413760485202864 2.1612075155183024 1.0 566 +226098 Hectd2 HECT domain E3 ubiquitin protein ligase 2 Novel U 0.23299179000410478 2.1493392029901406 1.0 567 +140570 Plxnb2 plexin B2 Novel U 0.2327479933985635 2.1468139657643257 1.0 568 +229593 Golph3l golgi phosphoprotein 3-like Novel U 0.23155634895850236 2.134470951827373 1.0 569 +16554 Kif13b kinesin family member 13B Novel U 0.2313508030216838 2.1323419137707647 1.0 570 +29810 Bag3 BCL2-associated athanogene 3 Novel U 0.2303398454659856 2.121870448642282 1.0 571 +70231 Gorasp2 golgi reassembly stacking protein 2 Novel U 0.22982577965186976 2.1165457718386733 1.0 572 +72630 Hspa12b heat shock protein 12B Novel U 0.22963824924529766 2.114603338052129 1.0 573 +15039 H2-T22 histocompatibility 2, T region locus 22 Novel U 0.22825514435108857 2.1002771830250353 1.0 574 +67410 4930449I24Rik RIKEN cDNA 4930449I24 gene Novel U 0.22807748557188798 2.098436999230293 1.0 575 +15505 Hsph1 heat shock 105kDa/110kDa protein 1 Novel U 0.2279529067044089 2.097146615416255 1.0 576 +16179 Irak1 interleukin-1 receptor-associated kinase 1 Novel U 0.22777256642177904 2.095278656697142 1.0 577 +70527 Stambp STAM binding protein Known P 0.22671594567259978 2.0843342137116787 1.0 578 +66696 Snx31 sorting nexin 31 Novel U 0.22656723214281455 2.082793843858857 1.0 579 +216233 Socs2 suppressor of cytokine signaling 2 Novel U 0.22456216526146416 2.062025427014852 1.0 580 +56743 Lat2 linker for activation of T cells family, member 2 Novel U 0.22411779856892014 2.0574226914212494 1.0 581 +16542 Kdr kinase insert domain protein receptor Known P 0.22353639873338285 2.051400571037244 1.0 582 +19353 Rac1 Rac family small GTPase 1 Novel U 0.22269243413881745 2.0426588135105765 1.0 583 +27371 Sh2d2a SH2 domain containing 2A Novel N 0.221675970002483 2.032130311400883 1.0 584 +57784 Bin3 bridging integrator 3 Novel N 0.22099169994622608 2.0250426646523394 1.0 585 +71162 4933421I07Rik RIKEN cDNA 4933421I07 gene Novel U 0.22075227581707596 2.022562717393247 1.0 586 +54214 Golga4 golgin A4 Novel U 0.22045275934714864 2.019460335643813 1.0 587 +18479 Pak1 p21 (RAC1) activated kinase 1 Novel U 0.21950693295754847 2.009663496992702 1.0 588 +320484 Rasal3 RAS protein activator like 3 Novel U 0.21938170765355813 2.00836641741053 1.0 589 +641340 Nrbf2 nuclear receptor binding factor 2 Novel U 0.21863719233846468 2.0006547522514144 1.0 590 +16150 Ikbkb inhibitor of kappaB kinase beta Novel U 0.21861200229546138 2.000393834614064 1.0 591 +22034 Traf6 TNF receptor-associated factor 6 Known P 0.21842826724167377 1.9984907129668965 1.0 592 +56433 Vps29 VPS29 retromer complex component Novel U 0.21782302959659688 1.9922216813353057 1.0 593 +80718 Rab27b RAB27B, member RAS oncogene family Novel U 0.217519111523964 1.9890737079297427 1.0 594 +70349 Copb1 coatomer protein complex, subunit beta 1 Novel N 0.21715813471482137 1.9853347220071167 1.0 595 +227288 Cxcr1 C-X-C motif chemokine receptor 1 Novel U 0.21683924732719617 1.9820316969289529 1.0 596 +12501 Cd3e CD3 antigen, epsilon polypeptide Novel U 0.2168061437263532 1.9816888109196436 1.0 597 +228960 Stx16 syntaxin 16 Novel U 0.2158158839901613 1.9714317331252027 1.0 598 +16185 Il2rb interleukin 2 receptor, beta chain Known P 0.21531498401806218 1.9662434276803995 1.0 599 +66922 Rras2 related RAS viral (r-ras) oncogene 2 Novel U 0.2149715221230621 1.96268586066269 1.0 600 +17698 Msn moesin Novel U 0.2146988388445886 1.9598614162282413 1.0 601 +70356 St13 suppression of tumorigenicity 13 Novel U 0.21465955800176076 1.9594545465495188 1.0 602 +19769 Rit1 Ras-like without CAAX 1 Novel U 0.21444415661315552 1.957223426047285 1.0 603 +14369 Fzd7 frizzled class receptor 7 Novel U 0.21403783038696186 1.953014712353626 1.0 604 +20338 Sel1l sel-1 suppressor of lin-12-like (C. elegans) Novel U 0.21389753989083649 1.9515615880065609 1.0 605 +53378 Sdcbp syndecan binding protein Novel U 0.21377991401669297 1.9503432230689246 1.0 606 +381644 Cep135 centrosomal protein 135 Novel U 0.21376660036683826 1.950205320721392 1.0 607 +18595 Pdgfra platelet derived growth factor receptor, alpha polypeptide Known P 0.21350216092609572 1.9474662656871593 1.0 608 +12512 Cd63 CD63 antigen Novel U 0.21332111992323596 1.94559104893094 1.0 609 +71228 Dlg5 discs large MAGUK scaffold protein 5 Novel U 0.21272222239505045 1.93938768802169 1.0 610 +22365 Vps45 vacuolar protein sorting 45 Known P 0.21190228236502423 1.9308947761447548 1.0 611 +54399 Bet1l Bet1 golgi vesicular membrane trafficking protein like Novel U 0.21184832738304307 1.9303359122150683 1.0 612 +56795 Arl10 ADP-ribosylation factor-like 10 Novel U 0.21115272945690883 1.9231309317627197 1.0 613 +19376 Rab34 RAB34, member RAS oncogene family Novel U 0.21102471690960498 1.9218049820059322 1.0 614 +18545 Pcp2 Purkinje cell protein 2 (L7) Novel U 0.21101844881956902 1.921740057335392 1.0 615 +58179 Klrc3 killer cell lectin-like receptor subfamily C, member 3 Novel U 0.2101302663362091 1.912540292370176 1.0 616 +404710 Iqgap3 IQ motif containing GTPase activating protein 3 Novel U 0.21011083698081787 1.9123390437457393 1.0 617 +75767 Rab11fip1 RAB11 family interacting protein 1 (class I) Known P 0.20999903931582783 1.9111810472069226 1.0 618 +66673 Sorcs3 sortilin-related VPS10 domain containing receptor 3 Novel U 0.2099502508876666 1.910675698271862 1.0 619 +108802 Calr4 calreticulin 4 Novel U 0.20990245988432496 1.9101806806302937 1.0 620 +15461 Hras Harvey rat sarcoma virus oncogene Known P 0.20897075843842614 1.9005301476817085 1.0 621 +23900 Hcst hematopoietic cell signal transducer Novel U 0.2088587818323217 1.8993702976767113 1.0 622 +171207 Arhgap4 Rho GTPase activating protein 4 Novel U 0.20854929473775355 1.8961646405250145 1.0 623 +12768 Ccr1 C-C motif chemokine receptor 1 Novel U 0.2082502660693538 1.8930673114077676 1.0 624 +12775 Ccr7 C-C motif chemokine receptor 7 Novel U 0.20789421812615705 1.8893793785165813 1.0 625 +11861 Arl4a ADP-ribosylation factor-like 4A Novel U 0.20776331828837225 1.8880235222999067 1.0 626 +17295 Met met proto-oncogene Known P 0.20606854425981458 1.8704691086248006 1.0 627 +16369 Irs3 insulin receptor substrate 3 Novel U 0.20602835699520824 1.8700528502590934 1.0 628 +69159 Rhebl1 Ras homolog enriched in brain like 1 Novel U 0.2059033292283641 1.8687578167601882 1.0 629 +97064 Wwtr1 WW domain containing transcription regulator 1 Novel U 0.20526408732263307 1.8621365701145716 1.0 630 +67790 Rab39b RAB39B, member RAS oncogene family Novel U 0.20464768287162072 1.8557518730741902 1.0 631 +93737 Pard6g par-6 family cell polarity regulator gamma Known P 0.20421134522496753 1.8512323020739838 1.0 632 +69024 Snx15 sorting nexin 15 Novel U 0.20370589381228074 1.845996852957194 1.0 633 +20908 Stx3 syntaxin 3 Novel U 0.20270490391756216 1.8356286325334688 1.0 634 +76308 Rab1b RAB1B, member RAS oncogene family Novel U 0.20231323314271765 1.8315717195231125 1.0 635 +69288 Rhobtb1 Rho-related BTB domain containing 1 Novel U 0.20211662232010555 1.8295352310857287 1.0 636 +16801 Arhgef1 Rho guanine nucleotide exchange factor 1 Novel U 0.2016342886425086 1.824539234709045 1.0 637 +19730 Ralgds ral guanine nucleotide dissociation stimulator Novel U 0.2008134312015495 1.8160368203198252 1.0 638 +277978 Exoc3l exocyst complex component 3-like Novel U 0.200805190250351 1.8159514608182177 1.0 639 +170822 Usp33 ubiquitin specific peptidase 33 Novel U 0.20078461804968395 1.815738374639983 1.0 640 +21812 Tgfbr1 transforming growth factor, beta receptor I Novel U 0.2006047705363965 1.81387552000952 1.0 641 +229285 Spart spartin Novel U 0.19988365560263033 1.8064062352309462 1.0 642 +20410 Sorbs3 sorbin and SH3 domain containing 3 Novel U 0.19956774305493327 1.8031340234469657 1.0 643 +53413 Exoc7 exocyst complex component 7 Novel U 0.19951480199072832 1.8025856616442746 1.0 644 +117146 Ube3b ubiquitin protein ligase E3B Novel N 0.19880140420569184 1.7951963108385551 1.0 645 +269275 Acvr1c activin A receptor, type IC Novel U 0.19863756828537807 1.7934993037617608 1.0 646 +69581 Rhou ras homolog family member U Novel U 0.19861517423837138 1.7932673469590303 1.0 647 +56480 Tbk1 TANK-binding kinase 1 Novel U 0.19822300210564092 1.7892052409001724 1.0 648 +109294 Prex2 phosphatidylinositol-3,4,5-trisphosphate-dependent Rac exchange factor 2 Novel U 0.19787212907693547 1.7855709096031707 1.0 649 +224912 Crb3 crumbs family member 3 Novel U 0.19772578242955904 1.7840550558405326 1.0 650 +14725 Lrp2 low density lipoprotein receptor-related protein 2 Novel U 0.1970802994750536 1.7773691646168739 1.0 651 +74302 Mtmr3 myotubularin related protein 3 Novel U 0.196606200484188 1.7724584628546527 1.0 652 +20911 Stxbp2 syntaxin binding protein 2 Novel U 0.19645523715380578 1.7708947896412057 1.0 653 +78943 Ern1 endoplasmic reticulum to nucleus signalling 1 Novel U 0.19632812807148167 1.7695781979449785 1.0 654 +384185 Arl9 ADP-ribosylation factor-like 9 Novel U 0.1953381330428522 1.7593238619827676 1.0 655 +16641 Klrc1 killer cell lectin-like receptor subfamily C, member 1 Novel U 0.19525250552645373 1.7584369349827653 1.0 656 +72238 Tbc1d5 TBC1 domain family, member 5 Novel U 0.19493070513360547 1.7551037370922609 1.0 657 +76089 Rapgef2 Rap guanine nucleotide exchange factor (GEF) 2 Novel U 0.1949260875994648 1.7550559088254252 1.0 658 +19229 Ptk2b PTK2 protein tyrosine kinase 2 beta Novel U 0.19477063444838996 1.753445730196839 1.0 659 +50753 Fbxo8 F-box protein 8 Novel U 0.19462627127125176 1.7519504211537251 1.0 660 +213326 Scyl2 SCY1-like 2 (S. cerevisiae) Novel U 0.19381700828892123 1.7435681017858327 1.0 661 +16165 Il13ra2 interleukin 13 receptor, alpha 2 Novel U 0.193259967696111 1.7377982936372274 1.0 662 +13638 Efna3 ephrin A3 Novel U 0.19324838880064468 1.7376783598186227 1.0 663 +22163 Tnfrsf4 tumor necrosis factor receptor superfamily, member 4 Novel N 0.1928014786519945 1.7330492791902838 1.0 664 +20166 Rtkn rhotekin Novel N 0.19272563747498161 1.7322637187719288 1.0 665 +22032 Traf4 TNF receptor associated factor 4 Novel U 0.19246369259714896 1.729550502338312 1.0 666 +18796 Plcb2 phospholipase C, beta 2 Novel U 0.1921073761520224 1.725859788312963 1.0 667 +210789 Tbc1d4 TBC1 domain family, member 4 Novel N 0.19197620959710368 1.7245011694489831 1.0 668 +16784 Lamp2 lysosomal-associated membrane protein 2 Novel U 0.19186952748654557 1.7233961596548075 1.0 669 +12522 Cd83 CD83 antigen Novel N 0.19161846811308472 1.7207956949176324 1.0 670 +109135 Plekha5 pleckstrin homology domain containing, family A member 5 Novel U 0.1915072803786822 1.719644016019791 1.0 671 +76123 Gpsm2 G-protein signalling modulator 2 (AGS3-like, C. elegans) Novel U 0.19128563288982367 1.717348198616463 1.0 672 +69162 Sec31a SEC31 homolog A, COPII coat complex component Novel U 0.19112321285861691 1.715665857272494 1.0 673 +23920 Insrr insulin receptor-related receptor Novel U 0.19046409119950708 1.7088386967948916 1.0 674 +68505 Vps51 VPS51 GARP complex subunit Novel U 0.19028446888307265 1.7069781747460293 1.0 675 +239766 Rtp1 receptor transporter protein 1 Novel U 0.1896589215789103 1.7004987763332753 1.0 676 +71602 Myo1e myosin IE Novel U 0.18953093530633547 1.6991730987292673 1.0 677 +20299 Ccl22 C-C motif chemokine ligand 22 Novel U 0.18907634312965108 1.694464447907083 1.0 678 +218038 Amph amphiphysin Novel U 0.18869946286821415 1.6905607345483904 1.0 679 +102058 Exoc8 exocyst complex component 8 Novel U 0.18825568402959703 1.6859640879264375 1.0 680 +243864 Mill2 MHC I like leukocyte 2 Novel U 0.18801824321250243 1.683504683748418 1.0 681 +15200 Hbegf heparin-binding EGF-like growth factor Novel U 0.18801016349444333 1.6834209942943683 1.0 682 +50791 Magi2 membrane associated guanylate kinase, WW and PDZ domain containing 2 Novel U 0.1872438196938847 1.675483230400377 1.0 683 +22284 Usp9x ubiquitin specific peptidase 9, X chromosome Novel U 0.18689126489255203 1.671831479357788 1.0 684 +72145 Wdfy3 WD repeat and FYVE domain containing 3 Novel U 0.1868666984691976 1.6715770211522603 1.0 685 +70834 Spag9 sperm associated antigen 9 Novel U 0.18658004720038596 1.6686078967330622 1.0 686 +215280 Wipf1 WAS/WASL interacting protein family, member 1 Novel U 0.18618493647927545 1.6645153528723646 1.0 687 +218639 Arl15 ADP-ribosylation factor-like 15 Novel U 0.18597207909267097 1.662310583059225 1.0 688 +27277 Golga5 golgin A5 Novel U 0.18593696981746713 1.661946922340819 1.0 689 +15525 Hspa4 heat shock protein 4 Novel U 0.18481321907919962 1.650307149135159 1.0 690 +27375 Tjp3 tight junction protein 3 Novel U 0.18459639829596747 1.6480613265900397 1.0 691 +22324 Vav1 vav 1 oncogene Novel U 0.1841731554650841 1.6436773912611082 1.0 692 +12776 Ccr8 C-C motif chemokine receptor 8 Novel U 0.18416939507356375 1.6436384412493568 1.0 693 +24045 Scamp3 secretory carrier membrane protein 3 Novel U 0.18399425212536982 1.6418243163494781 1.0 694 +72823 Pard3b par-3 family cell polarity regulator beta Novel U 0.18397541383231267 1.6416291899292677 1.0 695 +140579 Elmo2 engulfment and cell motility 2 Novel U 0.18389766156214096 1.6408238344707973 1.0 696 +15512 Hspa2 heat shock protein 2 Known P 0.18382739231362125 1.6400959879046073 1.0 697 +66808 9030624G23Rik RIKEN cDNA 9030624G23 gene Novel U 0.18335379737799784 1.6351905071300146 1.0 698 +14182 Fgfr1 fibroblast growth factor receptor 1 Novel U 0.18238385308484764 1.6251438560267655 1.0 699 +23853 Def6 differentially expressed in FDCP 6 Novel U 0.1823536922424012 1.6248314510121895 1.0 700 +269437 Plch1 phospholipase C, eta 1 Novel U 0.18220156947269625 1.6232557683643525 1.0 701 +72469 Plcd3 phospholipase C, delta 3 Novel U 0.18162342690188918 1.6172673866213458 1.0 702 +11607 Agtr1a angiotensin II receptor, type 1a Novel U 0.18125858620379645 1.613488378663993 1.0 703 +226751 Cdc42bpa CDC42 binding protein kinase alpha Novel U 0.18117594731089415 1.6126324077279182 1.0 704 +30941 Usp21 ubiquitin specific peptidase 21 Novel U 0.18040793166804683 1.6046773269464596 1.0 705 +12145 Cxcr5 C-X-C motif chemokine receptor 5 Novel U 0.18039539868183305 1.604547510687257 1.0 706 +194231 Cnksr1 connector enhancer of kinase suppressor of Ras 1 Novel U 0.1801875297766162 1.602394411400343 1.0 707 +26564 Ror2 receptor tyrosine kinase-like orphan receptor 2 Novel U 0.1800158164703378 1.600615810618682 1.0 708 +104709 Pik3r6 phosphoinositide-3-kinase regulatory subunit 5 Novel U 0.17983012457830633 1.598692420105312 1.0 709 +16161 Il12rb1 interleukin 12 receptor, beta 1 Novel U 0.17951209077588332 1.5953982364346126 1.0 710 +28006 Washc2 WASH complex subunit 2 Novel U 0.17936945671387852 1.593920837509209 1.0 711 +11477 Acvr1 activin A receptor, type 1 Novel U 0.17934559129341687 1.5936736402686007 1.0 712 +14159 Fes feline sarcoma oncogene Novel U 0.1792624087117753 1.5928120378224373 1.0 713 +20963 Syk spleen tyrosine kinase Novel U 0.17886573055274 1.5887032584912415 1.0 714 +66313 Smurf2 SMAD specific E3 ubiquitin protein ligase 2 Known P 0.1786572401012779 1.5865437212487514 1.0 715 +11350 Abl1 c-abl oncogene 1, non-receptor tyrosine kinase Novel U 0.1785856198817129 1.585801881368885 1.0 716 +71130 Sh2d6 SH2 domain containing 6 Novel U 0.17846225928456477 1.584524116358886 1.0 717 +112406 Egln2 egl-9 family hypoxia-inducible factor 2 Novel U 0.17837536075148583 1.5836240242098896 1.0 718 +23921 Sh2b2 SH2B adaptor protein 2 Novel U 0.1782961855333106 1.5828039299027759 1.0 719 +19326 Rab11b RAB11B, member RAS oncogene family Known P 0.17785463154632816 1.578230328220917 1.0 720 +23912 Rhof ras homolog family member F (in filopodia) Novel U 0.17508923932410278 1.5495864864904776 1.0 721 +76273 Ndfip2 Nedd4 family interacting protein 2 Novel U 0.1743067805581145 1.541481804314317 1.0 722 +78757 Rictor RPTOR independent companion of MTOR, complex 2 Novel U 0.17418393602169382 1.5402093846443683 1.0 723 +70737 Cgn cingulin Novel U 0.17415361891336753 1.5398953610329458 1.0 724 +217151 Arl5c ADP-ribosylation factor-like 5C Novel U 0.17360330890768205 1.5341952680845223 1.0 725 +69583 Tnfsf13 tumor necrosis factor (ligand) superfamily, member 13 Novel U 0.17356957174257193 1.5338458196373612 1.0 726 +103724 Tbc1d10a TBC1 domain family, member 10a Novel U 0.1734090758282641 1.5321834082329795 1.0 727 +26403 Map3k11 mitogen-activated protein kinase kinase kinase 11 Novel U 0.17269291111732618 1.524765397699731 1.0 728 +73288 Vps50 VPS50 EARP/GARPII complex subunit Novel U 0.17254239000264648 1.5232063049419937 1.0 729 +245638 Tbc1d8b TBC1 domain family, member 8B Novel N 0.1725150467330365 1.5229230842542352 1.0 730 +22612 Yes1 YES proto-oncogene 1, Src family tyrosine kinase Novel U 0.17224989834364174 1.5201766859531678 1.0 731 +75423 Arl5a ADP-ribosylation factor-like 5A Novel U 0.17214785930053983 1.5191197688990712 1.0 732 +117600 Srgap1 SLIT-ROBO Rho GTPase activating protein 1 Novel U 0.17192358215654988 1.516796713614337 1.0 733 +16155 Il10rb interleukin 10 receptor, beta Novel U 0.17119737467649063 1.509274680408668 1.0 734 +140887 Lnx2 ligand of numb-protein X 2 Novel U 0.17107874445272106 1.5080459124506214 1.0 735 +66894 Wwp2 WW domain containing E3 ubiquitin protein ligase 2 Novel U 0.17094476654179083 1.5066581736534925 1.0 736 +20187 Ryk receptor-like tyrosine kinase Novel U 0.1706265833868338 1.5033624429941554 1.0 737 +55985 Cxcl13 C-X-C motif chemokine ligand 13 Novel U 0.1704068848327997 1.501086812593671 1.0 738 +245666 Iqsec2 IQ motif and Sec7 domain 2 Known P 0.17037726912126933 1.5007800540272034 1.0 739 +19354 Rac2 Rac family small GTPase 2 Novel U 0.1699409868738071 1.4962610568499957 1.0 740 +66898 Baiap2l1 BAI1-associated protein 2-like 1 Novel U 0.1696642592742758 1.4933947214709804 1.0 741 +17101 Lyst lysosomal trafficking regulator Novel U 0.1696140828863041 1.4928749960938295 1.0 742 +67526 Atg12 autophagy related 12 Novel U 0.1695277145036296 1.4919803952252944 1.0 743 +21939 Cd40 CD40 antigen Novel U 0.16894376467439742 1.4859318620904238 1.0 744 +21947 Cd40lg CD40 ligand Novel U 0.1689292739153172 1.4857817672842288 1.0 745 +11781 Ap4m1 adaptor-related protein complex AP-4, mu 1 Novel U 0.1671575065651765 1.467429859315185 1.0 746 +12493 Cd37 CD37 antigen Novel U 0.16713291977461273 1.4671751901467727 1.0 747 +19324 Rab1a RAB1A, member RAS oncogene family Novel U 0.16694542934416984 1.465233170431661 1.0 748 +55946 Ap3m1 adaptor-related protein complex 3, mu 1 subunit Novel U 0.16637551885584853 1.4593300563284268 1.0 749 +12766 Cxcr3 C-X-C motif chemokine receptor 3 Novel U 0.16591092595113485 1.4545178182940715 1.0 750 +209513 Taar4 trace amine-associated receptor 4 Novel U 0.16579800524494478 1.4533481893314228 1.0 751 +18706 Pik3ca phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit alpha Novel U 0.1657280288924563 1.452623376572696 1.0 752 +244218 Ctf2 cardiotrophin 2 Novel U 0.16559217221721204 1.4512161775965633 1.0 753 +12700 Cish cytokine inducible SH2-containing protein Novel U 0.16499002887379957 1.4449791966398928 1.0 754 +212139 Cc2d1a coiled-coil and C2 domain containing 1A Novel N 0.16479682901674403 1.4429780388716147 1.0 755 +19414 Rasa3 RAS p21 protein activator 3 Novel N 0.1646032759674322 1.4409732227495566 1.0 756 +99683 Sec24b SEC24 homolog B, COPII coat complex component Novel U 0.16442534445114512 1.4391302139530384 1.0 757 +73442 Hspa12a heat shock protein 12A Novel U 0.16432567584394556 1.4380978497960941 1.0 758 +66397 Sar1b secretion associated Ras related GTPase 1B Novel U 0.16417262814130937 1.4365125867233608 1.0 759 +16194 Il6ra interleukin 6 receptor, alpha Novel U 0.16408298544295166 1.4355840706006164 1.0 760 +14070 F8a factor 8-associated gene A Novel U 0.16371409184207833 1.4317630828094943 1.0 761 +14158 Fer FER tyrosine kinase Novel U 0.16347862046075795 1.4293240779824825 1.0 762 +17248 Mdm4 transformed mouse 3T3 cell double minute 4 Novel U 0.1631193491310904 1.4256027573601946 1.0 763 +14360 Fyn Fyn proto-oncogene Novel U 0.16255192530241444 1.4197253999958224 1.0 764 +56297 Arl6 ADP-ribosylation factor-like 6 Novel U 0.16254081502123433 1.4196103200685894 1.0 765 +211922 Dennd6a DENN domain containing 6A Novel U 0.16229129155755692 1.4170257642344608 1.0 766 +14672 Gna11 guanine nucleotide binding protein, alpha 11 Novel U 0.16161059091979105 1.4099750894053098 1.0 767 +109905 Rap1a RAS-related protein 1a Novel U 0.16111705527585227 1.404863063429502 1.0 768 +57390 Psors1c2 psoriasis susceptibility 1 candidate 2 (human) Novel U 0.16095104904152155 1.4031435763114655 1.0 769 +16184 Il2ra interleukin 2 receptor, alpha chain Known P 0.1606597419554373 1.4001262270900092 1.0 770 +67414 Mfn1 mitofusin 1 Novel U 0.16056061332507027 1.3990994559953456 1.0 771 +55978 Ift20 intraflagellar transport 20 Novel U 0.1605321450457837 1.3988045824943396 1.0 772 +219103 Cenpj centromere protein J Novel U 0.16036128534690758 1.3970348233500907 1.0 773 +22376 Was Wiskott-Aldrich syndrome Novel U 0.16033917868883563 1.3968058433124988 1.0 774 +20910 Stxbp1 syntaxin binding protein 1 Novel U 0.16021131878723188 1.395481474654855 1.0 775 +442827 Rab44 RAB44, member RAS oncogene family Novel U 0.1601260174553285 1.39459792626313 1.0 776 +71972 Dnmbp dynamin binding protein Novel U 0.1599498214510858 1.3927728938433155 1.0 777 +19700 Rem1 rad and gem related GTP binding protein 1 Novel U 0.15986149819541187 1.3918580444645157 1.0 778 +68365 Rab14 RAB14, member RAS oncogene family Novel U 0.1598308487614055 1.3915405786346233 1.0 779 +15526 Hspa9 heat shock protein 9 Novel U 0.15949353431154023 1.3880466866515342 1.0 780 +73094 Sgip1 SH3-domain GRB2-like (endophilin) interacting protein 1 Novel U 0.15947286294611918 1.3878325733280374 1.0 781 +22318 Vamp2 vesicle-associated membrane protein 2 Novel U 0.1594141700012242 1.387224633734242 1.0 782 +12068 Bet1 Bet1 golgi vesicular membrane trafficking protein Novel U 0.15929630441764742 1.3860037858941758 1.0 783 +26918 Ern2 endoplasmic reticulum to nucleus signalling 2 Novel U 0.15922700889729988 1.3852860251723835 1.0 784 +83435 Plekha3 pleckstrin homology domain-containing, family A (phosphoinositide binding specific) member 3 Novel U 0.15899225436675346 1.382854445462123 1.0 785 +19294 Nectin2 nectin cell adhesion molecule 2 Novel U 0.15754634909155596 1.3678778061532022 1.0 786 +328967 Arhgef37 Rho guanine nucleotide exchange factor 37 Novel U 0.15712258698921835 1.363488492227618 1.0 787 +74385 Ap5m1 adaptor-related protein complex 5, mu 1 subunit Novel U 0.15706878897786147 1.3629312541944978 1.0 788 +68813 Dock5 dedicator of cytokinesis 5 Novel U 0.15703437728158598 1.3625748189756997 1.0 789 +58235 Nectin1 nectin cell adhesion molecule 1 Novel U 0.1569848359386537 1.362061671374191 1.0 790 +67844 Rab32 RAB32, member RAS oncogene family Novel U 0.15677665624134463 1.3599053529130025 1.0 791 +56489 Ikbke inhibitor of kappaB kinase epsilon Novel U 0.1561167824623035 1.3530704020018764 1.0 792 +224139 Golgb1 golgin B1 Novel U 0.15544907450275 1.3461543049065376 1.0 793 +74349 Fhip1b FHF complex subunit HOOK interacting protein 1B Novel U 0.15486153702652639 1.3400686110420674 1.0 794 +380918 Siah3 siah E3 ubiquitin protein ligase family member 3 Novel U 0.15461945730422277 1.3375611572363886 1.0 795 +319934 Sbf2 SET binding factor 2 Novel N 0.15411346271908596 1.3323200819572174 1.0 796 +329152 Hecw2 HECT, C2 and WW domain containing E3 ubiquitin protein ligase 2 Novel U 0.1538589154319937 1.329683489525307 1.0 797 +69550 Bst2 bone marrow stromal cell antigen 2 Novel U 0.15377772288981098 1.3288424998424393 1.0 798 +22637 Zap70 zeta-chain (TCR) associated protein kinase Novel U 0.1531929065092354 1.32278499099724 1.0 799 +12771 Ccr3 C-C motif chemokine receptor 3 Novel U 0.15286493264489703 1.3193878484919832 1.0 800 +75739 Mpp7 membrane protein, palmitoylated 7 (MAGUK p55 subfamily member 7) Novel U 0.15271423119199692 1.3178268877968873 1.0 801 +56224 Tspan5 tetraspanin 5 Novel U 0.15218680632015497 1.3123638383125067 1.0 802 +100504346 Ccl21f C-C motif chemokine ligand 21F Novel U 0.15183599028383274 1.308730097340737 1.0 803 +218811 Sec24c SEC24 homolog C, COPII coat complex component Novel U 0.15165026911826296 1.3068064036130196 1.0 804 +26411 Map4k1 mitogen-activated protein kinase kinase kinase kinase 1 Novel U 0.15137165560979782 1.3039205340512632 1.0 805 +217371 Rab40b Rab40B, member RAS oncogene family Novel U 0.151356589635558 1.3037644811853544 1.0 806 +228543 Rhov ras homolog family member V Novel U 0.15111531587283025 1.301265375482468 1.0 807 +231134 Dok7 docking protein 7 Novel U 0.15095342018850966 1.299588465306309 1.0 808 +74055 Plce1 phospholipase C, epsilon 1 Novel U 0.15090899028443625 1.2991282618204711 1.0 809 +18844 Plxna1 plexin A1 Novel U 0.1508158416153467 1.2981634309681391 1.0 810 +68652 Tab2 TGF-beta activated kinase 1/MAP3K7 binding protein 2 Novel U 0.15064449747351671 1.2963886539796994 1.0 811 +14828 Hspa5 heat shock protein 5 Novel U 0.15052951704932097 1.2951976905256575 1.0 812 +18590 Pdgfa platelet derived growth factor, alpha Novel U 0.1492621899882713 1.2820707584884374 1.0 813 +100855 Tbc1d14 TBC1 domain family, member 14 Novel U 0.14904484613096708 1.2798195179592748 1.0 814 +72580 Zup1 zinc finger containing ubiquitin peptidase 1 Novel U 0.14856825581131025 1.274883011095332 1.0 815 +116732 Tsga13 testis specific gene A13 Novel U 0.14848615797739334 1.2740326444304415 1.0 816 +59026 Huwe1 HECT, UBA and WWE domain containing 1 Novel U 0.1482485315706521 1.271571317920963 1.0 817 +12803 Cntf ciliary neurotrophic factor Novel U 0.147987118215478 1.2688636069815706 1.0 818 +16186 Il2rg interleukin 2 receptor, gamma chain Known P 0.14772319762195718 1.266129926149804 1.0 819 +225825 Cd226 CD226 antigen Novel U 0.14761503961614905 1.2650096290811463 1.0 820 +14302 Frk fyn-related kinase Novel N 0.14759251529670325 1.2647763229207738 1.0 821 +223881 Rnd1 Rho family GTPase 1 Novel U 0.147349920063614 1.262263529471324 1.0 822 +59029 Psmd14 proteasome (prosome, macropain) 26S subunit, non-ATPase, 14 Novel U 0.14728926571599804 1.2616352737326222 1.0 823 +16985 Lsp1 lymphocyte specific 1 Novel U 0.14711577485011068 1.2598382610469658 1.0 824 +16415 Itgb2l integrin beta 2-like Novel U 0.14696308415287992 1.2582566958244858 1.0 825 +58801 Pmaip1 phorbol-12-myristate-13-acetate-induced protein 1 Novel U 0.14696189896109874 1.2582444196469773 1.0 826 +16573 Kif5b kinesin family member 5B Novel U 0.1468930746369013 1.257531539559418 1.0 827 +70423 Tspan15 tetraspanin 15 Novel U 0.14687020706867462 1.257294678039457 1.0 828 +14745 Lpar1 lysophosphatidic acid receptor 1 Novel U 0.14660540319737497 1.2545518482454934 1.0 829 +19731 Rgl1 ral guanine nucleotide dissociation stimulator,-like 1 Novel U 0.1456759680777737 1.2449247898301967 1.0 830 +14218 Sh3pxd2a SH3 and PX domains 2A Novel N 0.1455633784919422 1.2437585906013373 1.0 831 +19347 Dennd5a DENN domain containing 5A Novel U 0.1455041588179822 1.2431451951652017 1.0 832 +236573 Gbp9 guanylate-binding protein 9 Novel U 0.14488060571649386 1.236686452638189 1.0 833 +80708 Pacsin3 protein kinase C and casein kinase substrate in neurons 3 Novel U 0.14484093794525255 1.2362755751676793 1.0 834 +19732 Rgl2 ral guanine nucleotide dissociation stimulator-like 2 Novel U 0.14452502364028585 1.2330033451819575 1.0 835 +20851 Stat5b signal transducer and activator of transcription 5B Novel U 0.1437240219432099 1.224706595935157 1.0 836 +19248 Ptpn12 protein tyrosine phosphatase, non-receptor type 12 Novel U 0.14367118759950703 1.2241593395399182 1.0 837 +22317 Vamp1 vesicle-associated membrane protein 1 Novel U 0.14333102893570965 1.2206359872824184 1.0 838 +213498 Arhgef11 Rho guanine nucleotide exchange factor 11 Novel U 0.14304938591116786 1.2177187380927301 1.0 839 +76630 Stambpl1 STAM binding protein like 1 Novel N 0.14295508964966577 1.216742020515914 1.0 840 +13043 Cttn cortactin Novel U 0.14282721469390822 1.21541749592784 1.0 841 +69150 Snx4 sorting nexin 4 Novel U 0.14238498493779214 1.2108368946515096 1.0 842 +69190 Dym dymeclin Novel U 0.14234021790143017 1.2103731991605093 1.0 843 +72825 Mon1a MON1 homolog A, secretory traffciking associated Novel U 0.14198089232522113 1.206651316654328 1.0 844 +22030 Traf2 TNF receptor-associated factor 2 Novel U 0.14175153709898566 1.204275662760628 1.0 845 +20290 Ccl1 C-C motif chemokine ligand 1 Novel U 0.14145278830163913 1.20118123253855 1.0 846 +56424 Stub1 STIP1 homology and U-Box containing protein 1 Novel U 0.14134507297473137 1.2000655207233901 1.0 847 +56212 Rhog ras homolog family member G Novel U 0.14100006018959985 1.196491889636682 1.0 848 +320982 Arl4c ADP-ribosylation factor-like 4C Novel U 0.14032710164968126 1.1895214072025253 1.0 849 +632971 Rergl RERG/RAS-like Novel U 0.14017220518107967 1.187916994672697 1.0 850 +57752 Tacc2 transforming, acidic coiled-coil containing protein 2 Novel U 0.1401336860167181 1.1875180144344895 1.0 851 +381812 Cracr2a calcium release activated channel regulator 2A Novel N 0.13990228266981744 1.1851211461742674 1.0 852 +233824 Cog7 component of oligomeric golgi complex 7 Novel U 0.13988300300124304 1.1849214480009587 1.0 853 +243659 Styk1 serine/threonine/tyrosine kinase 1 Novel U 0.13968739074648492 1.1828953026965805 1.0 854 +13869 Erbb4 erb-b2 receptor tyrosine kinase 4 Known P 0.1395637070995368 1.1816141915473728 1.0 855 +270160 Rab39 RAB39, member RAS oncogene family Novel U 0.13954449207279288 1.181415162932019 1.0 856 +13636 Efna1 ephrin A1 Novel U 0.13948075032656468 1.1807549280199845 1.0 857 +623198 Gm6408 predicted gene 6408 Novel U 0.13926768228707334 1.1785479762711677 1.0 858 +213539 Bag2 BCL2-associated athanogene 2 Novel U 0.13900193381950438 1.1757953623800985 1.0 859 +66938 Sh3d21 SH3 domain containing 21 Novel U 0.13827438581872814 1.1682594441049101 1.0 860 +77371 Sec24a SEC24 homolog A, COPII coat complex component Novel U 0.13714451498692115 1.1565562791715558 1.0 861 +69940 Exoc1 exocyst complex component 1 Novel U 0.1364903400175587 1.1497803563437428 1.0 862 +76166 Cplane2 ciliogenesis and planar polarity effector 2 Novel U 0.1363015909905444 1.1478253001267187 1.0 863 +17472 Gbp4 guanylate binding protein 4 Novel U 0.13605329960979223 1.1452535061670273 1.0 864 +20359 Sema6b sema domain, transmembrane domain (TM), and cytoplasmic domain, (semaphorin) 6B Novel N 0.13591795389445213 1.143851599696785 1.0 865 +109880 Braf Braf transforming gene Novel U 0.1356134072174839 1.1406971152281808 1.0 866 +69226 Snx24 sorting nexing 24 Novel U 0.13462519203052853 1.130461214807521 1.0 867 +56418 Ykt6 YKT6 v-SNARE homolog (S. cerevisiae) Novel U 0.13460691416870071 1.1302718933155609 1.0 868 +76877 Rab36 RAB36, member RAS oncogene family Novel U 0.13454025026075545 1.1295813907485215 1.0 869 +108086 Rnf216 ring finger protein 216 Novel U 0.13429979464251715 1.127090759359362 1.0 870 +56637 Gsk3b glycogen synthase kinase 3 beta Novel U 0.13373228515698551 1.1212125147640943 1.0 871 +74030 Rin2 Ras and Rab interactor 2 Novel U 0.13316449684195286 1.1153313820620214 1.0 872 +18212 Ntrk2 neurotrophic tyrosine kinase, receptor, type 2 Novel U 0.13265645345980998 1.1100690854108117 1.0 873 +52915 Zmiz2 zinc finger, MIZ-type containing 2 Novel U 0.13259870282894487 1.1094709062747605 1.0 874 +18805 Pld1 phospholipase D1 Known P 0.13227442592530647 1.106112056766903 1.0 875 +227334 Usp40 ubiquitin specific peptidase 40 Novel U 0.13209550963717792 1.1042588477360236 1.0 876 +56077 Dgke diacylglycerol kinase, epsilon Novel U 0.13204656914474738 1.10375192372426 1.0 877 +232670 Tspan33 tetraspanin 33 Novel U 0.13169323428544857 1.1000920928669007 1.0 878 +70549 Tln2 talin 2 Novel U 0.13162988620629096 1.099435935545442 1.0 879 +228357 Lrp4 low density lipoprotein receptor-related protein 4 Novel U 0.13162846613348714 1.0994212264780223 1.0 880 +71116 Stx18 syntaxin 18 Novel U 0.13150688159791676 1.0981618578554606 1.0 881 +71648 Optn optineurin Novel U 0.13148872093230868 1.0979737502780917 1.0 882 +12124 Bik BCL2-interacting killer Novel U 0.13139115530787246 1.0969631687474786 1.0 883 +20846 Stat1 signal transducer and activator of transcription 1 Novel U 0.13132213048702052 1.0962482119221628 1.0 884 +52588 Tspan14 tetraspanin 14 Novel U 0.13121019642351753 1.095088802572033 1.0 885 +13640 Efna5 ephrin A5 Novel U 0.13118260443104035 1.0948030056209923 1.0 886 +101240 Wdr91 WD repeat domain 91 Novel U 0.13093435907684076 1.0922316884028191 1.0 887 +26409 Map3k7 mitogen-activated protein kinase kinase kinase 7 Novel U 0.13091519401792262 1.0920331773525624 1.0 888 +52118 Pvr poliovirus receptor Novel U 0.130800209243844 1.090842168842577 1.0 889 +15964 Ifna11 interferon alpha 11 Novel U 0.13079150727068317 1.0907520340906391 1.0 890 +56338 Txnip thioredoxin interacting protein Novel U 0.1306363211647092 1.0891446215064289 1.0 891 +11854 Rhod ras homolog family member D Novel U 0.13052993532958138 1.088042680523421 1.0 892 +19340 Rab3d RAB3D, member RAS oncogene family Novel U 0.13052588710454302 1.0880007491415518 1.0 893 +17096 Lyn LYN proto-oncogene, Src family tyrosine kinase Novel U 0.13035688733937129 1.086250255129471 1.0 894 +16196 Il7 interleukin 7 Novel U 0.1300523655661186 1.0830960286127336 1.0 895 +16428 Itk IL2 inducible T cell kinase Novel U 0.12964374379837235 1.0788635377751348 1.0 896 +69981 Tmem30a transmembrane protein 30A Novel U 0.12899142635943756 1.0721068551864286 1.0 897 +50797 Copb2 COPI coat complex subunit beta 2 Novel U 0.12870274820657557 1.0691167363688672 1.0 898 +108100 Baiap2 brain-specific angiogenesis inhibitor 1-associated protein 2 Novel U 0.12858780145588924 1.067926121703929 1.0 899 +105940408 S2bpcox16 synaptojanin 2 binding protein Cox16 readthrough Novel U 0.1282906934851455 1.0648486871098635 1.0 900 +93672 Il24 interleukin 24 Novel U 0.12827303450604288 1.0646657759848264 1.0 901 +21894 Tln1 talin 1 Novel U 0.12815156749155135 1.063407624641736 1.0 902 +116849 Il22b interleukin 22B Novel U 0.1279330732610762 1.0611444685850853 1.0 903 +77040 Atg16l1 autophagy related 16 like 1 Novel U 0.12776531162433327 1.0594067990665688 1.0 904 +105844 Card10 caspase recruitment domain family, member 10 Novel U 0.1277195508674239 1.0589328106508054 1.0 905 +280408 Rilp Rab interacting lysosomal protein Novel U 0.12737582412044943 1.0553725003050516 1.0 906 +22341 Vegfc vascular endothelial growth factor C Novel U 0.12721387573184734 1.0536950442196777 1.0 907 +78808 Stxbp5 syntaxin binding protein 5 (tomosyn) Novel U 0.12715845246859453 1.0531209718808467 1.0 908 +66102 Cxcl16 C-X-C motif chemokine ligand 16 Novel U 0.12694405358934774 1.0509002353375918 1.0 909 +14457 Gas7 growth arrest specific 7 Novel U 0.1267691295965756 1.0490883783707745 1.0 910 +213452 Dstyk dual serine/threonine and tyrosine protein kinase Novel U 0.12583360016649686 1.039398195287892 1.0 911 +56208 Becn1 beclin 1, autophagy related Novel U 0.12543619834518457 1.0352819202866204 1.0 912 +58998 Nectin3 nectin cell adhesion molecule 3 Novel U 0.12542955556466567 1.035213114584375 1.0 913 +216363 Rab3ip RAB3A interacting protein Novel U 0.12541070870592153 1.0350178994410604 1.0 914 +16177 Il1r1 interleukin 1 receptor, type I Novel U 0.12516843420242987 1.032508428098239 1.0 915 +108960 Irak2 interleukin-1 receptor-associated kinase 2 Novel U 0.12515002952726145 1.0323177930778655 1.0 916 +258396 Or4f56 olfactory receptor family 4 subfamily F member 56 Novel U 0.12502437662978047 1.031016284496374 1.0 917 +233765 Plekha7 pleckstrin homology domain containing, family A member 7 Novel U 0.12492210983673965 1.0299570084158969 1.0 918 +78514 Arhgap10 Rho GTPase activating protein 10 Novel U 0.12468034671689605 1.0274528339680913 1.0 919 +27261 Dok3 docking protein 3 Novel U 0.1246259571409721 1.026889468528632 1.0 920 +170835 Inpp5j inositol polyphosphate 5-phosphatase J Novel U 0.12459791541749023 1.0265990132786287 1.0 921 +78777 Tepsin TEPSIN, adaptor related protein complex 4 accessory protein Novel U 0.12452810297781061 1.0258758983233875 1.0 922 +14063 F2rl1 F2R like trypsin receptor 1 Novel U 0.12451297432848989 1.025719196271051 1.0 923 +14011 Etv6 ets variant 6 Novel U 0.1244575428121749 1.0251450384472733 1.0 924 +104886 Rab15 RAB15, member RAS oncogene family Novel U 0.12430194308025518 1.0235333415391143 1.0 925 +74006 Dnm1l dynamin 1-like Known P 0.12412690917081476 1.0217203460590603 1.0 926 +69181 Dyrk2 dual-specificity tyrosine phosphorylation regulated kinase 2 Novel U 0.12391917176394725 1.019568608827726 1.0 927 +235611 Plxnb1 plexin B1 Novel U 0.12374754017796376 1.0177908545021934 1.0 928 +228359 Arhgap1 Rho GTPase activating protein 1 Novel U 0.12373459874559911 1.017656807571187 1.0 929 +319757 Smo smoothened, frizzled class receptor Novel U 0.12358308793762976 1.01608746360289 1.0 930 +57915 Tbc1d1 TBC1 domain family, member 1 Novel U 0.1233261203077851 1.0134258013403146 1.0 931 +108124 Napa N-ethylmaleimide sensitive fusion protein attachment protein alpha Novel U 0.12295756227707977 1.0096082893739613 1.0 932 +16569 Kif3b kinesin family member 3B Novel U 0.12244544735915223 1.0043038198889387 1.0 933 +72519 Pip4p2 phosphatidylinositol-4,5-bisphosphate 4-phosphatase 2 Novel U 0.12219477919672783 1.0017074073028187 1.0 934 +56217 Pals1 protein associated with LIN7 1, MAGUK family member Novel N 0.12180426209791133 0.9976624440308353 1.0 935 +319740 Zfyve27 zinc finger, FYVE domain containing 27 Novel U 0.1216334055883589 0.9958927179214964 1.0 936 +55932 Gbp3 guanylate binding protein 3 Novel U 0.1215433702930441 0.9949601352923765 1.0 937 +17281 Fyco1 FYVE and coiled-coil domain containing 1 Novel U 0.12116611841649574 0.9910525727565759 1.0 938 +192656 Ripk2 receptor (TNFRSF)-interacting serine-threonine kinase 2 Novel U 0.12112333769932929 0.9906094514945061 1.0 939 +21940 Cd27 CD27 antigen Novel U 0.12109157467956869 0.9902804511799788 1.0 940 +68151 Wls wntless WNT ligand secretion mediator Novel U 0.12085281220930945 0.9878073573619269 1.0 941 +320207 Pik3r5 phosphoinositide-3-kinase regulatory subunit 5 Novel U 0.12083676737181309 0.9876411654625853 1.0 942 +17164 Mapkapk2 MAP kinase-activated protein kinase 2 Novel U 0.12056503610188506 0.9848265819013549 1.0 943 +56791 Ube2l6 ubiquitin-conjugating enzyme E2L 6 Novel N 0.12033485151985386 0.9824423375675861 1.0 944 +76338 Rab2b RAB2B, member RAS oncogene family Novel U 0.119760177349514 0.9764898814026014 1.0 945 +11352 Abl2 ABL proto-oncogene 2, non-receptor tyrosine kinase Novel U 0.11958031595759074 0.974626883017685 1.0 946 +13543 Dvl2 dishevelled segment polarity protein 2 Novel U 0.11923004339266025 0.9709987713047251 1.0 947 +93765 Ube2n ubiquitin-conjugating enzyme E2N Novel U 0.11872724890886473 0.9657908425700492 1.0 948 +14276 Folr2 folate receptor beta Novel U 0.11858470000192559 0.9643143256780164 1.0 949 +94178 Mcoln1 mucolipin 1 Novel U 0.11818298691891628 0.9601533947698121 1.0 950 +18752 Prkcg protein kinase C, gamma Novel U 0.11816424875283565 0.9599593054615331 1.0 951 +26397 Map2k3 mitogen-activated protein kinase kinase 3 Novel U 0.1180772323232364 0.9590579921442549 1.0 952 +14998 H2-DMa histocompatibility 2, class II, locus DMa Novel U 0.11806213758617563 0.9589016413539923 1.0 953 +18591 Pdgfb platelet derived growth factor, B polypeptide Novel U 0.11805980399243608 0.9588774700667507 1.0 954 +29864 Rnf11 ring finger protein 11 Novel U 0.11803943185297043 0.9586664561158635 1.0 955 +54644 Otud5 OTU domain containing 5 Novel U 0.11799316495232552 0.958187225079926 1.0 956 +15162 Hck hemopoietic cell kinase Novel U 0.1177673058980799 0.9558477844207662 1.0 957 +12000 Avpr2 arginine vasopressin receptor 2 Novel U 0.11775689159433367 0.9557399134049145 1.0 958 +24069 Sufu SUFU negative regulator of hedgehog signaling Novel U 0.11773075583983283 0.9554692001189615 1.0 959 +214952 Rhot2 ras homolog family member T2 Novel U 0.11751136437047686 0.9531967504914783 1.0 960 +210710 Gab3 growth factor receptor bound protein 2-associated protein 3 Novel U 0.11743514160777659 0.9524072376211172 1.0 961 +67345 Herc4 hect domain and RLD 4 Novel N 0.11740742858434781 0.9521201870354585 1.0 962 +23797 Akt3 thymoma viral proto-oncogene 3 Novel U 0.1169433300387197 0.9473130695562603 1.0 963 +259172 Mfrp membrane frizzled-related protein Novel N 0.11687017065391075 0.9465552870533943 1.0 964 +22343 Lin7c lin-7 homolog C, crumbs cell polarity complex component Novel N 0.11683672808522436 0.9462088900263058 1.0 965 +107368 Pdzd8 PDZ domain containing 8 Novel U 0.11676718352424934 0.9454885497498808 1.0 966 +56496 Tspan6 tetraspanin 6 Novel U 0.11667220305587661 0.9445047451807909 1.0 967 +50850 Spast spastin Novel U 0.11634239873285003 0.9410886428446145 1.0 968 +435626 Rufy4 RUN and FYVE domain containing 4 Novel U 0.11631444138880814 0.9407990615940768 1.0 969 +11540 Adora2a adenosine A2a receptor Novel U 0.11624728208840263 0.9401034277682195 1.0 970 +232946 Bloc1s3 biogenesis of lysosomal organelles complex-1, subunit 3 Novel U 0.11617648839677021 0.9393701490375082 1.0 971 +226422 Rab29 RAB29, member RAS oncogene family Novel U 0.11607657295603142 0.938335228186879 1.0 972 +18751 Prkcb protein kinase C, beta Novel U 0.11583547791640153 0.935837973691965 1.0 973 +170707 Usp48 ubiquitin specific peptidase 48 Novel U 0.11558860429206295 0.9332808648065991 1.0 974 +20609 Sstr5 somatostatin receptor 5 Novel U 0.11552938947809241 0.9326675197100743 1.0 975 +16706 Ksr1 kinase suppressor of ras 1 Novel U 0.11515604981725663 0.9288004797760174 1.0 976 +233328 Lrrk1 leucine-rich repeat kinase 1 Novel U 0.11508169210329323 0.9280302850191627 1.0 977 +12770 Ccr1l1 C-C motif chemokine receptor 1 like 1 Novel U 0.11503233682513271 0.9275190646704433 1.0 978 +14680 Gnal guanine nucleotide binding protein, alpha stimulating, olfactory type Novel N 0.11498164045438075 0.926993953328748 1.0 979 +27494 Amot angiomotin Novel U 0.11478442277444878 0.9249511790831946 1.0 980 +233204 Tbc1d17 TBC1 domain family, member 17 Novel U 0.11473966712286328 0.9244876015153347 1.0 981 +258353 Or2at1 olfactory receptor family 2 subfamily AT member 1 Novel U 0.11460968508916392 0.9231412518832058 1.0 982 +13449 Dok2 docking protein 2 Novel N 0.11453762501690472 0.9223948560235923 1.0 983 +14676 Gna15 guanine nucleotide binding protein, alpha 15 Novel U 0.11451718606489987 0.9221831500306205 1.0 984 +27057 Ncoa4 nuclear receptor coactivator 4 Novel U 0.11442634659583976 0.9212422377962824 1.0 985 +110524 Dgkq diacylglycerol kinase, theta Novel U 0.11405433585847718 0.917388962807875 1.0 986 +212539 Gm266 predicted gene 266 Novel U 0.11390422033740061 0.9158340711753457 1.0 987 +212541 Rho rhodopsin Novel U 0.11380426719609248 0.9147987598234585 1.0 988 +68178 Cgnl1 cingulin-like 1 Novel U 0.11357307729666295 0.912404102445126 1.0 989 +27218 Slamf1 signaling lymphocytic activation molecule family member 1 Novel U 0.1135700600112923 0.9123728495024447 1.0 990 +17524 Mpp1 membrane protein, palmitoylated Novel N 0.11350056073427026 0.911652978275716 1.0 991 +68724 Arl8a ADP-ribosylation factor-like 8A Novel U 0.11320504383669013 0.9085920239651756 1.0 992 +66412 Arrdc4 arrestin domain containing 4 Novel U 0.11231317151436843 0.8993540397692904 1.0 993 +18413 Osm oncostatin M Novel U 0.11227593251836356 0.898968319472838 1.0 994 +50873 Prkn parkin RBR E3 ubiquitin protein ligase Novel U 0.11193479912290628 0.8954348709768477 1.0 995 +227960 Gca grancalcin Novel U 0.1119312551814794 0.8953981629480487 1.0 996 +109042 Cavin3 caveolae associated 3 Novel U 0.11190079253159181 0.8950826318219188 1.0 997 +17289 Mertk MER proto-oncogene tyrosine kinase Novel U 0.11182918482426735 0.8943409215434286 1.0 998 +16169 Il15ra interleukin 15 receptor, alpha chain Novel U 0.11172021167668413 0.8932121812630608 1.0 999 +16149 Cd74 CD74 antigen (invariant polypeptide of major histocompatibility complex, class II antigen-associated) Novel U 0.11155641481206025 0.8915155787238185 1.0 1000 +22041 Trf transferrin Novel U 0.11139746588175606 0.8898691909288923 1.0 1001 +15893 Ica1 islet cell autoantigen 1 Novel U 0.11119393140017397 0.8877609874595006 1.0 1002 +12017 Bag1 BCL2-associated athanogene 1 Novel U 0.11103278486783881 0.8860918369749798 1.0 1003 +71452 Ankrd40 ankyrin repeat domain 40 Novel U 0.11101000666694077 0.8858559011188709 1.0 1004 +22084 Tsc2 TSC complex subunit 2 Novel U 0.11007500775977049 0.8761712131748342 1.0 1005 +114601 Ehbp1l1 EH domain binding protein 1-like 1 Novel U 0.10989406622890589 0.874297026746271 1.0 1006 +27007 Klrk1 killer cell lectin-like receptor subfamily K, member 1 Novel U 0.109881729220774 0.874169240421598 1.0 1007 +17475 Mpdz multiple PDZ domain crumbs cell polarity complex component Novel N 0.10955584118893368 0.870793702900788 1.0 1008 +98402 Sh3bp4 SH3-domain binding protein 4 Novel U 0.10955542413941541 0.8707893831155875 1.0 1009 +544963 Iqgap2 IQ motif containing GTPase activating protein 2 Novel U 0.109285238029703 0.8679908042730761 1.0 1010 +270192 Rab6b RAB6B, member RAS oncogene family Novel U 0.10903376174315449 0.8653860211638442 1.0 1011 +11852 Rhob ras homolog family member B Novel U 0.10889035088476437 0.8639005762070173 1.0 1012 +66508 Lamtor1 late endosomal/lysosomal adaptor, MAPK and MTOR activator 1 Novel U 0.10881147007385973 0.863083531360734 1.0 1013 +80981 Arl4d ADP-ribosylation factor-like 4D Novel U 0.1085805017271998 0.8606911688187057 1.0 1014 +12169 Bmx BMX non-receptor tyrosine kinase Novel U 0.10848811876680493 0.8597342691518619 1.0 1015 +12669 Chrm1 cholinergic receptor, muscarinic 1, CNS Novel N 0.10821006036117617 0.8568541493270367 1.0 1016 +11487 Adam10 a disintegrin and metallopeptidase domain 10 Novel U 0.10819375128940482 0.856685220497761 1.0 1017 +56494 Gosr2 golgi SNAP receptor complex member 2 Novel U 0.1081726270146694 0.8564664159544746 1.0 1018 +258999 Or5k15 olfactory receptor family 5 subfamily J member 15 Novel U 0.10813839428953417 0.8561118345128641 1.0 1019 +216835 Usp43 ubiquitin specific peptidase 43 Novel N 0.10808398032454658 0.8555482164522854 1.0 1020 +67095 Trak1 trafficking protein, kinesin binding 1 Novel U 0.10808070903587093 0.8555143325517208 1.0 1021 +60505 Il21 interleukin 21 Novel U 0.10799391832558454 0.8546153572276652 1.0 1022 +66724 Tab3 TGF-beta activated kinase 1/MAP3K7 binding protein 3 Novel N 0.10798145778924327 0.8544862914018604 1.0 1023 +71619 Arl14 ADP-ribosylation factor-like 14 Novel U 0.10789065744605768 0.8535457844320445 1.0 1024 +74479 Snx11 sorting nexin 11 Novel U 0.1077457780127228 0.8520451280242166 1.0 1025 +22350 Ezr ezrin Novel U 0.10760591361980273 0.8505964172401448 1.0 1026 +19201 Pstpip2 proline-serine-threonine phosphatase-interacting protein 2 Novel U 0.10758319645660534 0.8503611136105327 1.0 1027 +234515 Inpp4b inositol polyphosphate-4-phosphatase, type II Novel U 0.10757597187411255 0.8502862816225677 1.0 1028 +13857 Epor erythropoietin receptor Novel U 0.10734276814145456 0.8478707650258559 1.0 1029 +56524 Pals2 protein associated with LIN7 2, MAGUK family member Novel U 0.10733079533852537 0.8477467511267001 1.0 1030 +258178 Or5k16 olfactory receptor family 5 subfamily K member 16 Novel U 0.1072032084040345 0.846425209853438 1.0 1031 +70420 Arpin actin-related protein 2/3 complex inhibitor Novel U 0.10695496633426252 0.8438539266552583 1.0 1032 +67581 Tbc1d23 TBC1 domain family, member 23 Novel U 0.10678812281544768 0.8421257669720593 1.0 1033 +12526 Cd8b1 CD8 subunit beta 1 Novel U 0.1067697665595984 0.8419356334774019 1.0 1034 +259302 Srgap3 SLIT-ROBO Rho GTPase activating protein 3 Novel U 0.10639503537006845 0.8380541801348748 1.0 1035 +14674 Gna13 guanine nucleotide binding protein, alpha 13 Novel U 0.10595881022329655 0.8335357744047406 1.0 1036 +13191 Dctn1 dynactin 1 Novel U 0.10584707457963922 0.8323784202808494 1.0 1037 +20360 Sema6c sema domain, transmembrane domain (TM), and cytoplasmic domain, (semaphorin) 6C Novel U 0.10583250311049296 0.8322274894824435 1.0 1038 +66725 Lrrk2 leucine-rich repeat kinase 2 Novel U 0.10576842649373595 0.8315637859924798 1.0 1039 +19090 Prkdc protein kinase, DNA activated, catalytic polypeptide Novel U 0.10553053832915298 0.8290997482038814 1.0 1040 +12774 Ccr5 C-C motif chemokine receptor 5 Known P 0.10503917125341236 0.8240101841861824 1.0 1041 +242505 Rasef RAS and EF hand domain containing Novel U 0.10502425521183356 0.8238556843178476 1.0 1042 +243912 Hspb6 heat shock protein, alpha-crystallin-related, B6 Novel U 0.10501417344000111 0.8237512576566275 1.0 1043 +109168 Atl3 atlastin GTPase 3 Novel U 0.10500655384465876 0.8236723341385521 1.0 1044 +192662 Arhgdia Rho GDP dissociation inhibitor alpha Novel U 0.10500297758579773 0.8236352913668328 1.0 1045 +16337 Insr insulin receptor Novel U 0.10498105094978369 0.8234081759917986 1.0 1046 +30948 Bin1 bridging integrator 1 Novel U 0.10495420789987546 0.823130136563267 1.0 1047 +100502841 Epg5 ectopic P-granules 5 autophagy tethering factor Novel U 0.10454543324204847 0.8188960620952379 1.0 1048 +54609 Ubqln2 ubiquilin 2 Novel U 0.10445783725163173 0.8179887457060643 1.0 1049 +51789 Tnk2 tyrosine kinase, non-receptor, 2 Novel U 0.10420645972992755 0.8153849855998432 1.0 1050 +75141 Rasd2 RASD family, member 2 Novel U 0.10405546425310214 0.8138209794145944 1.0 1051 +18646 Prf1 perforin 1 (pore forming protein) Novel U 0.10399932859520933 0.813239528115501 1.0 1052 +74478 Snx29 sorting nexin 29 Novel U 0.10396157249484528 0.8128484516690951 1.0 1053 +11848 Rhoa ras homolog family member A Novel U 0.10394768347345092 0.8127045896420693 1.0 1054 +338374 Ifnl3 interferon lambda 3 Novel U 0.10393185560199919 0.8125406450698855 1.0 1055 +78891 Scyl1 SCY1-like 1 (S. cerevisiae) Novel U 0.10346615254442586 0.8077169081087041 1.0 1056 +18795 Plcb1 phospholipase C, beta 1 Novel U 0.10340615129140855 0.8070954171023859 1.0 1057 +14183 Fgfr2 fibroblast growth factor receptor 2 Known P 0.10336092144076825 0.8066269277963048 1.0 1058 +19877 Rock1 Rho-associated coiled-coil containing protein kinase 1 Novel U 0.1033183169636579 0.8061856320229425 1.0 1059 +18187 Nrp2 neuropilin 2 Novel U 0.10326304925244595 0.8056131708870372 1.0 1060 +15979 Ifngr1 interferon gamma receptor 1 Novel U 0.10324026983454497 0.8053772224252519 1.0 1061 +223593 Washc5 WASH complex subunit 5 Novel U 0.10309156073689076 0.8038368984802978 1.0 1062 +12988 Csk c-src tyrosine kinase Novel U 0.1030159353301803 0.8030535730036422 1.0 1063 +15565 Htr6 5-hydroxytryptamine (serotonin) receptor 6 Novel N 0.10290930574017912 0.8019491072156688 1.0 1064 +235323 Usp28 ubiquitin specific peptidase 28 Novel U 0.10290849546764604 0.8019407144394074 1.0 1065 +268749 Rnf31 ring finger protein 31 Novel U 0.10275779009999202 0.8003797131954191 1.0 1066 +16590 Kit KIT proto-oncogene receptor tyrosine kinase Known P 0.10270220963387827 0.7998040125545224 1.0 1067 +11479 Acvr1b activin A receptor, type 1B Novel U 0.10266972569554121 0.799467544989079 1.0 1068 +238257 Tmem30b transmembrane protein 30B Novel U 0.10265463331462964 0.7993112186037322 1.0 1069 +216131 Trappc10 trafficking protein particle complex 10 Novel N 0.10243127390444831 0.7969976691756191 1.0 1070 +65969 Cubn cubilin Novel U 0.10232498585540728 0.7958967410576834 1.0 1071 +59042 Cope coatomer protein complex, subunit epsilon Novel U 0.1021017969502012 0.7935849577144988 1.0 1072 +16172 Il17ra interleukin 17 receptor A Novel U 0.10208954055253898 0.7934580063504209 1.0 1073 +20850 Stat5a signal transducer and activator of transcription 5A Novel U 0.10197336600834545 0.7922546742406966 1.0 1074 +20303 Ccl4 C-C motif chemokine ligand 4 Novel U 0.10194500473575646 0.7919609091115465 1.0 1075 +21844 Tiam1 T cell lymphoma invasion and metastasis 1 Novel U 0.10192598295101322 0.7917638820904835 1.0 1076 +21687 Tek TEK receptor tyrosine kinase Novel U 0.10157539546878427 0.7881325084744986 1.0 1077 +58994 Smpd3 sphingomyelin phosphodiesterase 3, neutral Novel N 0.10156628886369451 0.7880381825583423 1.0 1078 +19338 Rab33b RAB33B, member RAS oncogene family Novel U 0.1014771103590503 0.787114474538823 1.0 1079 +18750 Prkca protein kinase C, alpha Novel U 0.10146436496496246 0.7869824581658434 1.0 1080 +54648 Ccdc120 coiled-coil domain containing 120 Novel N 0.10106157428774502 0.7828103655722554 1.0 1081 +18826 Lcp1 lymphocyte cytosolic protein 1 Novel U 0.10086243322210371 0.7807476689607524 1.0 1082 +100038489 Apela apelin receptor early endogenous ligand Novel U 0.10070936296812105 0.7791621723019135 1.0 1083 +12772 Ccr2 C-C motif chemokine receptor 2 Novel U 0.10045745711786307 0.7765529397859 1.0 1084 +18693 Pick1 protein interacting with C kinase 1 Novel U 0.10038817371347325 0.7758353045607994 1.0 1085 +239114 Il17d interleukin 17D Novel U 0.1003782609235998 0.7757326282091557 1.0 1086 +207278 Fchsd2 FCH and double SH3 domains 2 Novel U 0.10026940815066909 0.7746051347654815 1.0 1087 +58185 Rsad2 radical S-adenosyl methionine domain containing 2 Novel U 0.10024473858872449 0.7743496082538274 1.0 1088 +18747 Prkaca protein kinase, cAMP dependent, catalytic, alpha Novel U 0.10016181996730149 0.7734907398989308 1.0 1089 +67161 Sclt1 sodium channel and clathrin linker 1 Novel N 0.1000419272162728 0.7722488947250374 1.0 1090 +16562 Kif1c kinesin family member 1C Novel N 0.09987756018865647 0.7705463864562625 1.0 1091 +219140 Spata13 spermatogenesis associated 13 Novel U 0.09980623584971778 0.7698076112981967 1.0 1092 +19303 Pxn paxillin Novel U 0.09919549919337163 0.7634816210886493 1.0 1093 +52639 Wipi1 WD repeat domain, phosphoinositide interacting 1 Novel U 0.09893444951480981 0.7607776770996518 1.0 1094 +207227 Stxbp5l syntaxin binding protein 5-like Novel U 0.09874693301866906 0.7588353873968986 1.0 1095 +71544 Arhgap42 Rho GTPase activating protein 42 Novel U 0.09873385485067916 0.7586999241627808 1.0 1096 +338372 Map3k9 mitogen-activated protein kinase kinase kinase 9 Novel U 0.09872713921012538 0.7586303637786895 1.0 1097 +258914 Or13a1 olfactory receptor family 13 subfamily A member 1 Novel U 0.09871532673715053 0.7585080105719301 1.0 1098 +101113 Snx21 sorting nexin family member 21 Novel U 0.09867146940263526 0.7580537377427531 1.0 1099 +12773 Ccr4 C-C motif chemokine receptor 4 Novel U 0.09864829375374244 0.7578136851333798 1.0 1100 +11998 Avp arginine vasopressin Novel U 0.0984869135151699 0.7561421139273349 1.0 1101 +102635496 Malrd1 MAM and LDL receptor class A domain containing 1 Novel U 0.0981930481519806 0.7530982661557234 1.0 1102 +109246 Tspan9 tetraspanin 9 Novel U 0.0981832471235381 0.7529967474253074 1.0 1103 +107971 Frs3 fibroblast growth factor receptor substrate 3 Novel U 0.0981321034279991 0.752467002708173 1.0 1104 +258618 Or1l8 olfactory receptor family 1 subfamily L member 8 Novel U 0.0980946142409878 0.7520786909415005 1.0 1105 +170755 Sgk3 serum/glucocorticoid regulated kinase 3 Novel U 0.09791362625655131 0.7502040233483668 1.0 1106 +12166 Bmpr1a bone morphogenetic protein receptor, type 1A Novel U 0.09791016278030878 0.7501681487753024 1.0 1107 +14368 Fzd6 frizzled class receptor 6 Novel U 0.09785010191642791 0.7495460403216188 1.0 1108 +259143 Or52n4b olfactory receptor family 52 subfamily N member 4B Novel U 0.09770868647260365 0.7480812638032693 1.0 1109 +20868 Stk10 serine/threonine kinase 10 Novel U 0.09755574538526178 0.7464971050482496 1.0 1110 +12954 Cryaa crystallin, alpha A Novel U 0.09753940697939527 0.7463278723773804 1.0 1111 +233912 Armc5 armadillo repeat containing 5 Novel U 0.09729200148204292 0.7437652543688223 1.0 1112 +19126 Prom1 prominin 1 Novel N 0.09719340522400652 0.7427439975692586 1.0 1113 +12502 Cd3g CD3 antigen, gamma polypeptide Novel U 0.09711979215395757 0.7419815158095908 1.0 1114 +64930 Tsc1 TSC complex subunit 1 Novel U 0.09709554706469839 0.7417303859720586 1.0 1115 +71732 Vps11 VPS11, CORVET/HOPS core subunit Novel U 0.09707884274865554 0.7415573632156116 1.0 1116 +242519 Ifna12 interferon alpha 12 Novel U 0.09707180055004062 0.7414844203538581 1.0 1117 +12050 Bcl2l2 BCL2-like 2 Novel N 0.09675723131131159 0.7382261225200093 1.0 1118 +69253 Hspb2 heat shock protein 2 Novel U 0.09649355915151248 0.7354950149565653 1.0 1119 +15985 Cd79b CD79B antigen Novel U 0.09639296212705768 0.7344530342842116 1.0 1120 +20168 Rtn3 reticulon 3 Novel U 0.09637274108321463 0.7342435853768162 1.0 1121 +77777 Ulbp1 UL16 binding protein 1 Novel U 0.09623705876590682 0.7328381923944579 1.0 1122 +213948 Atg9b autophagy related 9B Novel U 0.09605332809969357 0.7309351161936413 1.0 1123 +14256 Flt3l FMS-like tyrosine kinase 3 ligand Novel N 0.09595403766305768 0.729906669114964 1.0 1124 +54160 Copg2 coatomer protein complex, subunit gamma 2 Novel N 0.09584797961072018 0.7288081232953227 1.0 1125 +209387 Trim30d tripartite motif-containing 30D Novel U 0.0958108253467483 0.7284232806504827 1.0 1126 +50931 Il27ra interleukin 27 receptor, alpha Novel N 0.09568862672396986 0.7271575513328068 1.0 1127 +219144 Arl11 ADP-ribosylation factor-like 11 Novel U 0.0956554245609982 0.7268136444202087 1.0 1128 +71607 Snx20 sorting nexin 20 Novel U 0.09564019028337972 0.7266558482734364 1.0 1129 +66682 Trappc5 trafficking protein particle complex 5 Novel U 0.09560636792348223 0.7263055173814684 1.0 1130 +18195 Nsf N-ethylmaleimide sensitive fusion protein Novel U 0.09540292709541742 0.7241982839721299 1.0 1131 +53868 Rab25 RAB25, member RAS oncogene family Novel U 0.09527773289003638 0.722901526508331 1.0 1132 +11798 Xiap X-linked inhibitor of apoptosis Novel U 0.09522934364855645 0.7224003123357924 1.0 1133 +225028 Map4k3 mitogen-activated protein kinase kinase kinase kinase 3 Novel N 0.0952014079459155 0.7221109552461742 1.0 1134 +77980 Sbf1 SET binding factor 1 Novel N 0.09494034191338296 0.7194068418632855 1.0 1135 +56717 Mtor mechanistic target of rapamycin kinase Novel U 0.09483774443475046 0.7183441405523204 1.0 1136 +75695 Rilpl1 Rab interacting lysosomal protein-like 1 Novel N 0.09449266664582388 0.7147698361584401 1.0 1137 +266632 Irak4 interleukin-1 receptor-associated kinase 4 Novel U 0.09437899536640915 0.7135924327830042 1.0 1138 +67596 Tespa1 thymocyte expressed, positive selection associated 1 Novel U 0.09437043085215226 0.7135037218258746 1.0 1139 +192786 Rapgef6 Rap guanine nucleotide exchange factor (GEF) 6 Novel U 0.09435315935489226 0.7133248242250254 1.0 1140 +20224 Sar1a secretion associated Ras related GTPase 1A Novel U 0.09428942706960008 0.7126646873090551 1.0 1141 +433031 Or5ac15 olfactory receptor family 5 subfamily AC member 15 Novel U 0.09420482854534025 0.7117884185757983 1.0 1142 +18760 Prkd1 protein kinase D1 Novel U 0.09409269375786633 0.7106269301333761 1.0 1143 +11502 Adam9 ADAM metallopeptidase domain 9 Novel U 0.09401369001908352 0.7098086120041717 1.0 1144 +16367 Irs1 insulin receptor substrate 1 Novel U 0.09400973685286479 0.7097676652384314 1.0 1145 +14367 Fzd5 frizzled class receptor 5 Novel U 0.09391005966703826 0.7087352122243512 1.0 1146 +246710 Rhobtb2 Rho-related BTB domain containing 2 Novel U 0.09384758144090255 0.7080880648118985 1.0 1147 +68521 Entrep3 endosomal transmembrane epsin interactor 3 Novel U 0.09379572535653181 0.7075509411946633 1.0 1148 +258459 Or2y16 olfactory receptor family 2 subfamily Y member 16 Novel U 0.09306370311401536 0.6999686788706126 1.0 1149 +16188 Il3ra interleukin 3 receptor, alpha chain Novel U 0.09302539691085525 0.6995719044775287 1.0 1150 +258638 Or5d36 olfactory receptor family 5 subfamily D member 36 Novel U 0.09297894764423437 0.699090784500807 1.0 1151 +329260 Dennd1b DENN domain containing 1B Novel U 0.09292809161026765 0.6985640193727818 1.0 1152 +56334 Tmed2 transmembrane p24 trafficking protein 2 Novel U 0.09288721553882918 0.6981406263685507 1.0 1153 +269881 Map3k10 mitogen-activated protein kinase kinase kinase 10 Novel U 0.09285513589194089 0.6978083464406432 1.0 1154 +56149 Tamalin trafficking regulator and scaffold protein tamalin Novel U 0.09268709709761201 0.6960678061329625 1.0 1155 +20312 Cx3cl1 C-X3-C motif chemokine ligand 1 Novel U 0.09264842258210339 0.6956672167726803 1.0 1156 +21354 Tap1 transporter 1, ATP-binding cassette, sub-family B (MDR/TAP) Novel U 0.09227280457379064 0.6917765777903536 1.0 1157 +258879 Or2t48 olfactory receptor family 2 subfamily T member 48 Novel U 0.09220058643402756 0.6910285446727311 1.0 1158 +234678 Phaf1 phagosome assembly factor 1 Novel U 0.09213929304335935 0.6903936697471015 1.0 1159 +26382 Fgd2 FYVE, RhoGEF and PH domain containing 2 Novel U 0.0920452137602696 0.6894191996255475 1.0 1160 +15945 Cxcl10 C-X-C motif chemokine ligand 10 Novel U 0.09192527918390844 0.6881769212262355 1.0 1161 +76510 Trappc9 trafficking protein particle complex 9 Novel U 0.09185441607631117 0.6874429234872421 1.0 1162 +13856 Epo erythropoietin Novel U 0.09184999650570773 0.6873971457202172 1.0 1163 +12045 Bcl2a1b B cell leukemia/lymphoma 2 related protein A1b Novel U 0.09181979000999625 0.6870842678306227 1.0 1164 +66629 Golph3 golgi phosphoprotein 3 Novel U 0.09180157143107975 0.6868955603891091 1.0 1165 +259058 Or52d1 olfactory receptor family 52 subfamily D member 1 Novel U 0.09169949185565386 0.685838223502533 1.0 1166 +268451 Rab11fip4 RAB11 family interacting protein 4 (class II) Known P 0.09142797023770412 0.6830258115096018 1.0 1167 +105171 Arrdc3 arrestin domain containing 3 Novel U 0.0913119656620854 0.681824239928788 1.0 1168 +73683 Atg16l2 autophagy related 16 like 2 Novel U 0.09121803240993591 0.680851282390913 1.0 1169 +18211 Ntrk1 neurotrophic tyrosine kinase, receptor, type 1 Known P 0.09085532006782746 0.6770943198748794 1.0 1170 +112407 Egln3 egl-9 family hypoxia-inducible factor 3 Novel N 0.09079003016460958 0.6764180492036387 1.0 1171 +231876 Lmtk2 lemur tyrosine kinase 2 Novel U 0.09072616747415055 0.6757565615552368 1.0 1172 +20437 Siah1a siah E3 ubiquitin protein ligase 1A Novel U 0.09054420057115808 0.6738717543558805 1.0 1173 +94245 Dtnbp1 dystrobrevin binding protein 1 Novel N 0.09029962218706297 0.6713384194935045 1.0 1174 +211323 Nrg1 neuregulin 1 Novel U 0.0902107978885355 0.6704183803292985 1.0 1175 +239618 Pdzrn4 PDZ domain containing RING finger 4 Novel U 0.09003030395325307 0.6685488300810615 1.0 1176 +258345 Or12e9 olfactory receptor family 12 subfamily E member 9 Novel U 0.09000733665300624 0.6683109355401141 1.0 1177 +13643 Efnb3 ephrin B3 Novel U 0.08999702696718288 0.6682041481532685 1.0 1178 +76608 Hectd3 HECT domain E3 ubiquitin protein ligase 3 Novel U 0.08997774902297087 0.6680044678408487 1.0 1179 +15519 Hsp90aa1 heat shock protein 90, alpha (cytosolic), class A member 1 Novel U 0.08997247000938009 0.6679497879916136 1.0 1180 +258540 Or6c202 olfactory receptor family 6 subfamily C member 202 Novel U 0.08969627305292428 0.6650889489961301 1.0 1181 +259031 Or12e8 olfactory receptor family 12 subfamily E member 8 Novel U 0.0896018277779698 0.6641106879428726 1.0 1182 +60510 Syt9 synaptotagmin IX Novel U 0.0893550755972545 0.6615548369665646 1.0 1183 +230398 Ifna16 interferon alpha 16 Novel U 0.08928403067574268 0.6608189560050212 1.0 1184 +11480 Acvr2a activin receptor IIA Novel U 0.0892260742154588 0.6602186448946167 1.0 1185 +20401 Sh3bp1 SH3-domain binding protein 1 Novel U 0.08905039042214956 0.658398917938813 1.0 1186 +94176 Dock2 dedicator of cyto-kinesis 2 Novel U 0.08902138592567363 0.6580984903177868 1.0 1187 +73174 Tbkbp1 TBK1 binding protein 1 Novel U 0.08882302019809987 0.6560438246324998 1.0 1188 +54473 Tollip toll interacting protein Novel U 0.08876653503624399 0.6554587531828462 1.0 1189 +72121 Dennd2d DENN domain containing 2D Novel U 0.08860726923874082 0.6538090832878893 1.0 1190 +12704 Cit citron Novel U 0.08851961491609428 0.6529011626953971 1.0 1191 +74781 Wipi2 WD repeat domain, phosphoinositide interacting 2 Novel U 0.08848984447251385 0.6525928014194415 1.0 1192 +101476 Plekha1 pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 1 Novel U 0.08796423232014626 0.6471485280237866 1.0 1193 +216724 Rufy1 RUN and FYVE domain containing 1 Known P 0.08785559450830933 0.6460232611400555 1.0 1194 +12927 Bcar1 breast cancer anti-estrogen resistance 1 Novel U 0.08781221785238869 0.6455739671639601 1.0 1195 +71517 Vps35l VPS35 endosomal protein sorting factor like Novel U 0.08777006836022853 0.6451373841097552 1.0 1196 +19698 Relb avian reticuloendotheliosis viral (v-rel) oncogene related B Novel U 0.0874655218594723 0.641982901466349 1.0 1197 +111173 Erc1 ELKS/RAB6-interacting/CAST family member 1 Novel U 0.08738709665661742 0.6411705757932677 1.0 1198 +19882 Mst1r macrophage stimulating 1 receptor (c-met-related tyrosine kinase) Novel U 0.08716275996771145 0.6388469037442509 1.0 1199 +240753 Plekha6 pleckstrin homology domain containing, family A member 6 Novel U 0.08710928271506534 0.6382929881193125 1.0 1200 +94232 Ubqln4 ubiquilin 4 Novel U 0.08709931138339569 0.6381897053936681 1.0 1201 +72049 Tnfrsf13c tumor necrosis factor receptor superfamily, member 13c Novel U 0.08709282206865923 0.6381224892849526 1.0 1202 +109332 Cdcp1 CUB domain containing protein 1 Novel U 0.08698072976583951 0.6369614408971819 1.0 1203 +107975 Pacs1 phosphofurin acidic cluster sorting protein 1 Novel U 0.08697869747570422 0.6369403905027685 1.0 1204 +17171 Mas1 MAS1 oncogene Novel N 0.08693338172811214 0.6364710114788847 1.0 1205 +18176 Nras neuroblastoma ras oncogene Novel U 0.0868006526681276 0.6350962082387975 1.0 1206 +11876 Artn artemin Novel N 0.08678610855070729 0.63494556074867 1.0 1207 +73914 Irak3 interleukin-1 receptor-associated kinase 3 Novel U 0.08655938648140588 0.6325971810079325 1.0 1208 +30957 Mapk8ip3 mitogen-activated protein kinase 8 interacting protein 3 Novel U 0.0864754717311729 0.6317279947835681 1.0 1209 +229488 Fhip1a FHF complex subunit HOOK interacting protein 1A Novel N 0.0863874950645 0.6308167353622472 1.0 1210 +11552 Adra2b adrenergic receptor, alpha 2b Novel U 0.08632100887426591 0.6301280735894184 1.0 1211 +404549 Ifna14 interferon alpha 14 Novel U 0.08625559675001715 0.6294505369567575 1.0 1212 +54634 Magix MAGI family member, X-linked Novel U 0.08612665673271318 0.6281149804961975 1.0 1213 +72607 Usp13 ubiquitin specific peptidase 13 (isopeptidase T-3) Novel U 0.08604611537610314 0.6272807357720852 1.0 1214 +20324 Cavin2 caveolae associated 2 Novel U 0.08604348819225936 0.6272535234881954 1.0 1215 +233405 Vps33b vacuolar protein sorting 33B Novel U 0.08602761382807705 0.6270890973458366 1.0 1216 +21933 Tnfrsf10b tumor necrosis factor receptor superfamily, member 10b Novel U 0.08599701862587798 0.6267721932472218 1.0 1217 +209815 Tbc1d25 TBC1 domain family, member 25 Novel U 0.08587382904279386 0.6254961995952758 1.0 1218 +13642 Efnb2 ephrin B2 Novel U 0.08577224388849791 0.6244439839065103 1.0 1219 +18846 Plxna3 plexin A3 Novel U 0.08574925804286967 0.624205897273112 1.0 1220 +27359 Sytl4 synaptotagmin-like 4 Novel U 0.08563619686483474 0.6230348133077122 1.0 1221 +217887 Clba1 clathrin binding box of aftiphilin containing 1 Novel U 0.08556800692530837 0.6223285041557216 1.0 1222 +14682 Gnaq guanine nucleotide binding protein, alpha q polypeptide Novel U 0.0855641825830328 0.6222888917441497 1.0 1223 +104303 Arl1 ADP-ribosylation factor-like 1 Novel U 0.08551760603433547 0.6218064533838643 1.0 1224 +219135 Mtmr6 myotubularin related protein 6 Novel U 0.08538722526463184 0.620455973657311 1.0 1225 +258135 Or52ab2 olfactory receptor family 52 subfamily AB member 2 Novel U 0.08538340559444198 0.6204164096390492 1.0 1226 +16642 Klrc2 killer cell lectin-like receptor subfamily C, member 2 Novel U 0.0852036842652667 0.6185548620194721 1.0 1227 +269338 Vps39 VPS39 HOPS complex subunit Novel U 0.0851519390430203 0.6180188867084765 1.0 1228 +230126 Shb src homology 2 domain-containing transforming protein B Novel N 0.08509410306220432 0.6174198235204399 1.0 1229 +84004 Mcam melanoma cell adhesion molecule Novel U 0.0850363830211243 0.6168219612323772 1.0 1230 +56350 Arl3 ADP-ribosylation factor-like 3 Novel U 0.08503113900513014 0.6167676438870974 1.0 1231 +103199 Fig4 FIG4 phosphoinositide 5-phosphatase Novel U 0.08486372223389707 0.6150335464741951 1.0 1232 +75083 Usp50 ubiquitin specific peptidase 50 Novel U 0.08473981220326807 0.6137500904502626 1.0 1233 +232790 Oscar osteoclast associated receptor Novel N 0.08471189727898312 0.6134609485821729 1.0 1234 +64540 Tspan4 tetraspanin 4 Novel N 0.08463205226765957 0.6126339165796469 1.0 1235 +74498 Gorasp1 golgi reassembly stacking protein 1 Novel U 0.08445048881225128 0.6107532882771048 1.0 1236 +20847 Stat2 signal transducer and activator of transcription 2 Novel U 0.08441366467837182 0.6103718651089095 1.0 1237 +258862 Or6c201 olfactory receptor family 6 subfamily C member 201 Novel U 0.08432301057500032 0.6094328728862806 1.0 1238 +13839 Epha5 Eph receptor A5 Novel U 0.08421634646327726 0.608328049523447 1.0 1239 +104445 Cdc42ep1 CDC42 effector protein 1 Novel U 0.08394631011926727 0.605531021949158 1.0 1240 +381809 Clec4b2 C-type lectin domain family 4, member b2 Novel U 0.08359171683532644 0.601858156370725 1.0 1241 +20199 S100a5 S100 calcium binding protein A5 Novel U 0.08357994897437478 0.6017362652538353 1.0 1242 +74140 Tm9sf1 transmembrane 9 superfamily member 1 Novel U 0.08357531618887834 0.6016882790139578 1.0 1243 +18457 Bloc1s6 biogenesis of lysosomal organelles complex-1, subunit 6, pallidin Novel U 0.08341557788925438 0.6000337149575665 1.0 1244 +75292 Prkd3 protein kinase D3 Novel N 0.08328672420033777 0.598699052683605 1.0 1245 +54161 Copg1 coatomer protein complex, subunit gamma 1 Novel U 0.08324071842198637 0.5982225263437997 1.0 1246 +12143 Blk B lymphoid kinase Novel U 0.08311943202867085 0.5969662458689129 1.0 1247 +433961 Gm5565 predicted gene 5565 Novel U 0.08307082524366727 0.5964627783877078 1.0 1248 +67881 Mdp1 magnesium-dependent phosphatase 1 Novel U 0.08305745013232771 0.5963242394241357 1.0 1249 +24108 Ubd ubiquitin D Novel U 0.08297389995861792 0.5954588294714138 1.0 1250 +110542 Amhr2 anti-Mullerian hormone type 2 receptor Novel N 0.08287582488058337 0.5944429710371764 1.0 1251 +18016 Nf2 neurofibromin 2 Novel U 0.0828306302290475 0.5939748463222619 1.0 1252 +68423 Ankrd13d ankyrin repeat domain 13 family, member D Novel U 0.08279725628294816 0.5936291600856743 1.0 1253 +208117 Aph1b aph1 homolog B, gamma secretase subunit Novel U 0.08275556314972743 0.5931973039823619 1.0 1254 +217325 Llgl2 LLGL2 scribble cell polarity complex component Novel N 0.0826311893230405 0.591909043974108 1.0 1255 +15965 Ifna2 interferon alpha 2 Novel U 0.08220513544330295 0.5874959918935531 1.0 1256 +17966 Nbr1 NBR1, autophagy cargo receptor Novel U 0.08219439332331821 0.5873847253678793 1.0 1257 +73124 Golim4 golgi integral membrane protein 4 Novel U 0.08219029256707593 0.5873422498695269 1.0 1258 +57916 Tnfrsf13b tumor necrosis factor receptor superfamily, member 13b Novel U 0.08208456755109049 0.5862471536294723 1.0 1259 +193003 Pirt phosphoinositide-interacting regulator of transient receptor potential channels Novel U 0.08201977959626386 0.5855760821231674 1.0 1260 +16992 Lta lymphotoxin A Novel N 0.08197551086196057 0.5851175480285101 1.0 1261 +68149 Otub2 OTU domain, ubiquitin aldehyde binding 2 Novel N 0.08187044130063197 0.5840292409662442 1.0 1262 +15974 Ifnab interferon alpha B Novel U 0.08183558579322528 0.5836682087663387 1.0 1263 +102657 Cd276 CD276 antigen Novel U 0.0815840729549743 0.5810630470557743 1.0 1264 +13383 Dlg1 discs large MAGUK scaffold protein 1 Novel U 0.08151811600335733 0.5803798671191436 1.0 1265 +102639650 Vamp9 vesicle-associated membrane protein 9 Novel U 0.08144006012481773 0.5795713668951792 1.0 1266 +243262 Oas1f 2'-5' oligoadenylate synthetase 1F Novel U 0.08143186906154662 0.5794865241310837 1.0 1267 +26408 Map3k5 mitogen-activated protein kinase kinase kinase 5 Novel U 0.0813476125765782 0.5786137982295635 1.0 1268 +16164 Il13ra1 interleukin 13 receptor, alpha 1 Novel N 0.08126264901306 0.5777337484316687 1.0 1269 +73998 Herc3 hect domain and RLD 3 Novel U 0.08120045111170096 0.5770895046140376 1.0 1270 +15944 Irgm1 immunity-related GTPase family M member 1 Novel U 0.08117102241202476 0.5767846831102078 1.0 1271 +16414 Itgb2 integrin beta 2 Novel U 0.08104257686716528 0.5754542483789731 1.0 1272 +213522 Plekhg6 pleckstrin homology domain containing, family G (with RhoGef domain) member 6 Novel U 0.08099309602624494 0.5749417274553152 1.0 1273 +100972 Rab28 RAB28, member RAS oncogene family Novel N 0.0807582494891095 0.5725091947438303 1.0 1274 +20292 Ccl11 C-C motif chemokine ligand 11 Novel U 0.08059364792325516 0.570804257135696 1.0 1275 +268396 Sh3pxd2b SH3 and PX domains 2B Novel U 0.08057428508811185 0.5706036975258005 1.0 1276 +240354 Malt1 MALT1 paracaspase Novel U 0.08054004865104304 0.5702490776361041 1.0 1277 +20300 Ccl25 C-C motif chemokine ligand 25 Novel U 0.08022652495335732 0.5670016094820116 1.0 1278 +211446 Exoc3 exocyst complex component 3 Novel U 0.0799875870272203 0.5645266982977454 1.0 1279 +20297 Ccl20 C-C motif chemokine ligand 20 Novel U 0.07977960681573423 0.5623724461041539 1.0 1280 +207792 BC034090 cDNA sequence BC034090 Novel U 0.07972912848635245 0.5618495932278031 1.0 1281 +68420 Ankrd13a ankyrin repeat domain 13a Novel U 0.07972413367090211 0.5617978570935642 1.0 1282 +93841 Uchl4 ubiquitin carboxyl-terminal esterase L4 Novel U 0.07965930168416606 0.5611263295061889 1.0 1283 +13845 Ephb3 Eph receptor B3 Novel U 0.07962235122810438 0.5607435978969827 1.0 1284 +58178 Sorcs1 sortilin-related VPS10 domain containing receptor 1 Novel U 0.07915812860190434 0.5559351951952993 1.0 1285 +11744 Anxa11 annexin A11 Novel U 0.07905336532262475 0.5548500605924286 1.0 1286 +107767 Scamp1 secretory carrier membrane protein 1 Novel U 0.07902055518261618 0.554510214240795 1.0 1287 +404194 Gfral GDNF family receptor alpha like Novel U 0.07874617590666518 0.5516682027202273 1.0 1288 +51799 Rundc3a RUN domain containing 3A Novel N 0.07870398840239116 0.5512312259377966 1.0 1289 +71779 Marchf8 membrane associated ring-CH-type finger 8 Novel U 0.07870379661298262 0.5512292393894076 1.0 1290 +13846 Ephb4 Eph receptor B4 Novel U 0.07864017032094227 0.5505702003480554 1.0 1291 +12516 Cd7 CD7 antigen Novel U 0.07855671708844396 0.5497057945092151 1.0 1292 +108030 Lin7a lin-7 homolog A, crumbs cell polarity complex component Novel N 0.07853382096191719 0.5494686371833204 1.0 1293 +18570 Pdcd6 programmed cell death 6 Novel U 0.0784149717696265 0.5482376011565301 1.0 1294 +73945 Otud4 OTU domain containing 4 Novel U 0.07826827907487258 0.5467181630465315 1.0 1295 +16565 Kif21b kinesin family member 21B Novel U 0.07824219562317283 0.5464479915112728 1.0 1296 +26419 Mapk8 mitogen-activated protein kinase 8 Novel U 0.07823696004610023 0.5463937615760651 1.0 1297 +66687 Tbc1d15 TBC1 domain family, member 15 Novel U 0.07817253042604488 0.5457264016895415 1.0 1298 +242362 Manea mannosidase, endo-alpha Novel U 0.07813302028855795 0.5453171569842776 1.0 1299 +12229 Btk Bruton agammaglobulinemia tyrosine kinase Novel U 0.07811808707754149 0.545162479275472 1.0 1300 +74270 Usp20 ubiquitin specific peptidase 20 Novel U 0.07807426779462377 0.5447086005834916 1.0 1301 +226278 Prlhr prolactin releasing hormone receptor Novel N 0.07787395881269492 0.5426338067334755 1.0 1302 +56705 Ranbp9 RAN binding protein 9 Novel U 0.07769054536083289 0.5407340162284809 1.0 1303 +233977 Ppfia1 protein tyrosine phosphatase, receptor type, f polypeptide (PTPRF), interacting protein (liprin), alpha 1 Novel U 0.07761558280246277 0.5399575565131446 1.0 1304 +244895 Peak1 pseudopodium-enriched atypical kinase 1 Novel U 0.07760471152495878 0.5398449521781322 1.0 1305 +75620 Kxd1 KxDL motif containing 1 Novel U 0.07712409543025163 0.5348667464685585 1.0 1306 +16170 Il16 interleukin 16 Novel U 0.076970178551475 0.533272480497935 1.0 1307 +12487 Cd28 CD28 antigen Novel U 0.07688966984738588 0.5324385739875608 1.0 1308 +230101 Gba2 glucosidase beta 2 Novel N 0.07669914660959946 0.5304651405536831 1.0 1309 +20439 Siah2 siah E3 ubiquitin protein ligase 2 Novel U 0.07666147227958768 0.530074911081898 1.0 1310 +231874 Ccz1 CCZ1 vacuolar protein trafficking and biogenesis associated Novel U 0.07652147474017132 0.5286248211707945 1.0 1311 +108123 Napg N-ethylmaleimide sensitive fusion protein attachment protein gamma Novel U 0.07642470352802651 0.5276224681365806 1.0 1312 +20346 Sema3a sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3A Novel U 0.07604361086303131 0.5236751228403068 1.0 1313 +50723 Icosl icos ligand Novel U 0.0760255930552772 0.5234884949798932 1.0 1314 +18049 Ngf nerve growth factor Novel U 0.0759268612331266 0.5224658340116911 1.0 1315 +76954 Dennd2b DENN domain containing 2B Novel U 0.07586230793889738 0.5217971931121401 1.0 1316 +20528 Slc2a4 solute carrier family 2 (facilitated glucose transporter), member 4 Novel N 0.07583027993802956 0.521465448132015 1.0 1317 +83563 Usp26 ubiquitin specific peptidase 26 Novel U 0.07579096849072903 0.5210582614531702 1.0 1318 +17480 Mpl myeloproliferative leukemia virus oncogene Novel U 0.07578007564904148 0.5209454337570535 1.0 1319 +229900 Gbp7 guanylate binding protein 7 Novel U 0.07571175180167625 0.5202377375920699 1.0 1320 +230514 Leprot leptin receptor overlapping transcript Novel U 0.07556949470641482 0.5187642432758021 1.0 1321 +14677 Gnai1 G protein subunit alpha i1 Novel U 0.07543636915392764 0.5173853331794066 1.0 1322 +78294 Rps27a ribosomal protein S27A Novel N 0.07540848414593979 0.5170965011833387 1.0 1323 +12767 Cxcr4 C-X-C motif chemokine receptor 4 Known P 0.07539835464946593 0.5169915801918518 1.0 1324 +16412 Itgb1 integrin beta 1 (fibronectin receptor beta) Novel U 0.07531883989006669 0.5161679689279013 1.0 1325 +12540 Cdc42 cell division cycle 42 Novel U 0.0751719322127032 0.5146463040350999 1.0 1326 +231855 Ap5z1 adaptor-related protein complex 5, zeta 1 subunit Novel U 0.07512311482430355 0.5141406551308415 1.0 1327 +242122 Vtcn1 V-set domain containing T cell activation inhibitor 1 Novel U 0.07506322560482956 0.513520324564282 1.0 1328 +67887 Saraf store-operated calcium entry-associated regulatory factor Novel N 0.0750452598156504 0.5133342355105577 1.0 1329 +231830 Micall2 MICAL-like 2 Novel U 0.07499894897977276 0.5128545493949238 1.0 1330 +11632 Aip aryl-hydrocarbon receptor-interacting protein Novel U 0.07462128049678333 0.5089426716633019 1.0 1331 +117149 Tirap toll-interleukin 1 receptor (TIR) domain-containing adaptor protein Novel U 0.0745787560576355 0.5085022049205242 1.0 1332 +70829 Ccdc93 coiled-coil domain containing 93 Novel U 0.07439675748506708 0.5066170696887412 1.0 1333 +16963 Xcl1 chemokine (C motif) ligand 1 Novel U 0.07439140110183078 0.5065615884472612 1.0 1334 +56434 Tspan3 tetraspanin 3 Novel U 0.07437290483366495 0.5063700047096316 1.0 1335 +20969 Sdc1 syndecan 1 Novel U 0.07419451698671223 0.5045222692550798 1.0 1336 +59126 Nek6 NIMA (never in mitosis gene a)-related expressed kinase 6 Novel U 0.07415502233749983 0.5041131849768545 1.0 1337 +68585 Rtn4 reticulon 4 Novel U 0.07411814015664579 0.5037311605600048 1.0 1338 +226970 Arhgef4 Rho guanine nucleotide exchange factor 4 Novel U 0.07404284864180247 0.5029512935243328 1.0 1339 +16594 Klc2 kinesin light chain 2 Novel U 0.07398091494426354 0.5023097863211852 1.0 1340 +69834 Rab43 RAB43, member RAS oncogene family Novel U 0.0735986792366372 0.49835060142691334 1.0 1341 +16419 Itgb5 integrin beta 5 Novel U 0.07356764234823052 0.4980291223570797 1.0 1342 +432940 Otulin OTU deubiquitinase with linear linkage specificity Novel U 0.07351728298448514 0.49750750172287994 1.0 1343 +258258 Or4f57 olfactory receptor family 4 subfamily F member 57 Novel U 0.073473475391021 0.4970537441098755 1.0 1344 +16834 Cog1 component of oligomeric golgi complex 1 Novel U 0.07342863884647985 0.4965893286554402 1.0 1345 +80837 Rhoj ras homolog family member J Novel U 0.07338008958586763 0.49608645700998977 1.0 1346 +76074 Gbp8 guanylate-binding protein 8 Novel U 0.07337844779172337 0.49606945136021463 1.0 1347 +259104 Or51ab3 olfactory receptor family 51 subfamily AB member 3 Novel U 0.07328833996914032 0.4951361174960344 1.0 1348 +19339 Rab3a RAB3A, member RAS oncogene family Novel U 0.07322123987161004 0.4944410968916127 1.0 1349 +60595 Actn4 actinin alpha 4 Novel U 0.07291994471889396 0.491320291604324 1.0 1350 +13363 Dhh desert hedgehog Novel U 0.07287667005841439 0.4908720540936545 1.0 1351 +104799 Vipas39 VPS33B interacting protein, apical-basolateral polarity regulator, spe-39 homolog Novel U 0.07278213985599326 0.48989291336448937 1.0 1352 +218441 Zfyve16 zinc finger, FYVE domain containing 16 Novel U 0.072709766939492 0.48914327707450067 1.0 1353 +20315 Cxcl12 C-X-C motif chemokine ligand 12 Novel U 0.0726827682696801 0.4888636257401226 1.0 1354 +13385 Dlg4 discs large MAGUK scaffold protein 4 Novel U 0.07264437873388743 0.4884659881903701 1.0 1355 +227929 Cytip cytohesin 1 interacting protein Novel N 0.07256555275190515 0.48764951126026224 1.0 1356 +21928 Tnfaip2 tumor necrosis factor, alpha-induced protein 2 Novel U 0.07246378989949272 0.4865954549802477 1.0 1357 +97761 Sgsm2 small G protein signaling modulator 2 Novel U 0.07244535400480262 0.48640449658909507 1.0 1358 +67561 Wdr48 WD repeat domain 48 Novel U 0.07241371819273844 0.48607681388770557 1.0 1359 +11308 Abi1 abl interactor 1 Novel U 0.0723883866138055 0.485814430225849 1.0 1360 +626578 Gbp10 guanylate-binding protein 10 Novel U 0.07233967979539262 0.4853099266018787 1.0 1361 +258286 Or14j2 olfactory receptor family 14 subfamily J member 2 Novel U 0.07212777598016976 0.48311503384976295 1.0 1362 +15968 Ifna5 interferon alpha 5 Novel U 0.07211369573718157 0.4829691911557544 1.0 1363 +26398 Map2k4 mitogen-activated protein kinase kinase 4 Novel U 0.07192868893572402 0.48105289678802793 1.0 1364 +19878 Rock2 Rho-associated coiled-coil containing protein kinase 2 Novel U 0.07189050023032797 0.48065733943292177 1.0 1365 +16197 Il7r interleukin 7 receptor Novel U 0.07187054424496996 0.48045063599260107 1.0 1366 +22187 Ubb ubiquitin B Novel U 0.0717420247808023 0.4791194356076023 1.0 1367 +67437 Ssr3 signal sequence receptor, gamma Novel U 0.07165530127778227 0.4782211564142024 1.0 1368 +20293 Ccl12 C-C motif chemokine ligand 12 Novel U 0.0716390325174133 0.4780526451291072 1.0 1369 +215474 Sec22c SEC22 homolog C, vesicle trafficking protein Novel U 0.07159454308651383 0.47759182506636183 1.0 1370 +217835 Rin3 Ras and Rab interactor 3 Novel U 0.07156207734215762 0.47725554595357406 1.0 1371 +93840 Vangl2 VANGL planar cell polarity 2 Novel N 0.07155068134860286 0.4771375066269569 1.0 1372 +229658 Vangl1 VANGL planar cell polarity 1 Novel U 0.07132301065703589 0.47477930108797695 1.0 1373 +54645 Gripap1 GRIP1 associated protein 1 Novel U 0.07123132735758105 0.4738296484861498 1.0 1374 +105835 Sgsm3 small G protein signaling modulator 3 Novel U 0.0712038614792777 0.47354515782157575 1.0 1375 +380752 Eipr1 EARP complex and GARP complex interacting protein 1 Novel U 0.0711747057941874 0.473243164193852 1.0 1376 +545649 Gm13276 predicted gene 13276 Novel U 0.07104144055378507 0.4718628072146234 1.0 1377 +19886 Ros1 Ros1 proto-oncogene Novel N 0.07092706793899772 0.4706781394304532 1.0 1378 +14293 Fpr1 formyl peptide receptor 1 Novel N 0.07080362898269578 0.4693995627789147 1.0 1379 +171580 Mical1 microtubule associated monooxygenase, calponin and LIM domain containing 1 Novel U 0.0707591033909773 0.46893836816359463 1.0 1380 +77647 Trat1 T cell receptor associated transmembrane adaptor 1 Novel U 0.07075192384607124 0.4688640026734725 1.0 1381 +73844 Ankrd45 ankyrin repeat domain 45 Novel N 0.07074061044788706 0.46874681886698866 1.0 1382 +22029 Traf1 TNF receptor-associated factor 1 Novel U 0.07070221876583332 0.4683491590863347 1.0 1383 +69908 Rab3b RAB3B, member RAS oncogene family Novel U 0.07058994863605603 0.4671862687727831 1.0 1384 +14270 Srgap2 SLIT-ROBO Rho GTPase activating protein 2 Novel U 0.07053622976779013 0.4666298505011976 1.0 1385 +16576 Kif7 kinesin family member 7 Novel U 0.07050845290914504 0.4663421387124667 1.0 1386 +74194 Rnd3 Rho family GTPase 3 Novel U 0.07050524299659928 0.466308890543838 1.0 1387 +258582 Or5m10b olfactory receptor family 5 subfamily M member 10B Novel U 0.07049144957034552 0.46616601868813595 1.0 1388 +68441 Rraga Ras-related GTP binding A Novel U 0.07047585274239905 0.4660044672569845 1.0 1389 +230735 Epha10 Eph receptor A10 Novel N 0.07041742325094812 0.46539925650530184 1.0 1390 +22330 Vcl vinculin Novel U 0.07024477982117769 0.4636110215350867 1.0 1391 +102639132 Ankrd40cl ANKRD40 C-terminal like Novel U 0.07021118495186116 0.46326304698307785 1.0 1392 +16199 Il9r interleukin 9 receptor Novel U 0.07010409217899458 0.46215378356221104 1.0 1393 +244548 Elmod2 ELMO/CED-12 domain containing 2 Novel N 0.07009382196936843 0.46204740506851844 1.0 1394 +243743 Plxna4 plexin A4 Novel U 0.06992265364211615 0.4602744491616949 1.0 1395 +103213 Traf3ip2 TRAF3 interacting protein 2 Novel U 0.06981118615637176 0.45911987260865067 1.0 1396 +99526 Usp53 ubiquitin specific peptidase 53 Novel U 0.06979182754104069 0.45891935670743156 1.0 1397 +69146 Gsdmd gasdermin D Novel U 0.06973861532103862 0.4583681862819076 1.0 1398 +103583 Fbxw11 F-box and WD-40 domain protein 11 Novel U 0.06949564546910696 0.45585151254280304 1.0 1399 +26400 Map2k7 mitogen-activated protein kinase kinase 7 Novel U 0.06947229289807003 0.4556096273796769 1.0 1400 +53612 Vti1b vesicle transport through interaction with t-SNAREs 1B Novel U 0.06945819653007552 0.455463617663383 1.0 1401 +622434 Arhgef26 Rho guanine nucleotide exchange factor 26 Novel U 0.06934808807314949 0.4543231178861636 1.0 1402 +208166 Cd200l1 CD200 molecule like 1 Novel U 0.06925649633479894 0.4533744136712448 1.0 1403 +15001 H2-Oa histocompatibility 2, O region alpha locus Novel U 0.06925327897994411 0.45334108841542337 1.0 1404 +17532 Mras muscle and microspikes RAS Novel U 0.06924472733295647 0.45325251073704564 1.0 1405 +330662 Dock1 dedicator of cytokinesis 1 Novel U 0.06910221801036877 0.4517764038584237 1.0 1406 +246730 Oas1a 2'-5' oligoadenylate synthetase 1A Novel U 0.06908857384210246 0.45163507801204916 1.0 1407 +20304 Ccl5 C-C motif chemokine ligand 5 Novel U 0.06899882589535186 0.45070547172991127 1.0 1408 +27279 Tnfrsf12a tumor necrosis factor receptor superfamily, member 12a Novel U 0.0689843182251186 0.450555201758549 1.0 1409 +11980 Atp8a1 ATPase phospholipid transporting 8A1 Novel N 0.06876100660020629 0.4482421472886815 1.0 1410 +237542 Osbpl8 oxysterol binding protein-like 8 Novel U 0.06857867917727309 0.44635360583563055 1.0 1411 +16973 Lrp5 low density lipoprotein receptor-related protein 5 Novel U 0.06844363583133883 0.4449548312977543 1.0 1412 +319642 Rab9b RAB9B, member RAS oncogene family Novel U 0.06839086381445288 0.4444082204816362 1.0 1413 +22165 Txk TXK tyrosine kinase Novel U 0.06837828227454797 0.44427790130489697 1.0 1414 +259093 Or51h5 olfactory receptor family 51 subfamily H member 5 Novel U 0.06821573197782577 0.44259421067500154 1.0 1415 +114713 Rasa2 RAS p21 protein activator 2 Novel U 0.06815995811244599 0.44201650681086485 1.0 1416 +545645 Gm13283 predicted gene 13283 Novel U 0.06813671828224564 0.4417757894136179 1.0 1417 +14747 Cmklr1 chemerin chemokine-like receptor 1 Novel U 0.06811832731615391 0.4415852963914102 1.0 1418 +78405 Ntf5 neurotrophin 5 Novel U 0.06805160262970236 0.4408941642826009 1.0 1419 +83430 Il23a interleukin 23, alpha subunit p19 Novel U 0.06798906785356251 0.44024643112706435 1.0 1420 +80888 Hspb8 heat shock protein 8 Novel U 0.06792299253664963 0.4395620251665897 1.0 1421 +74370 Rptor regulatory associated protein of MTOR, complex 1 Novel U 0.06773943940801348 0.4376607878941605 1.0 1422 +14683 Gnas GNAS complex locus Novel U 0.067719838398059 0.43745776127740055 1.0 1423 +59289 Ackr2 atypical chemokine receptor 2 Novel N 0.06769946206982624 0.4372467039394013 1.0 1424 +14961 H2-Ab1 histocompatibility 2, class II antigen A, beta 1 Novel U 0.06765461060088347 0.4367821338985046 1.0 1425 +74126 Syvn1 synovial apoptosis inhibitor 1, synoviolin Novel U 0.06758918640523952 0.4361044722307291 1.0 1426 +13838 Epha4 Eph receptor A4 Novel U 0.0675548357247031 0.43574866901095066 1.0 1427 +97484 Cog8 component of oligomeric golgi complex 8 Novel U 0.0675544580607453 0.43574475718009076 1.0 1428 +12695 Patj PATJ, crumbs cell polarity complex component Novel U 0.06742384638114235 0.4343918856963911 1.0 1429 +230972 Arhgef16 Rho guanine nucleotide exchange factor 16 Novel U 0.06742250541485058 0.4343779960116228 1.0 1430 +13367 Diaph1 diaphanous related formin 1 Novel U 0.06739561192820318 0.43409943416100477 1.0 1431 +12125 Bcl2l11 BCL2 like 11 Novel U 0.06734407650919999 0.4335656319851054 1.0 1432 +245880 Wasf3 WASP family, member 3 Novel U 0.06733138531695787 0.433434177033062 1.0 1433 +22601 Yap1 yes-associated protein 1 Novel U 0.06725621414527982 0.4326555565079399 1.0 1434 +217893 Pacs2 phosphofurin acidic cluster sorting protein 2 Novel U 0.06717731918214354 0.4318383650733064 1.0 1435 +64654 Fgf23 fibroblast growth factor 23 Novel U 0.06714802983136216 0.43153498694074843 1.0 1436 +245616 Kir3dl1 killer cell immunoglobulin-like receptor, three domains, long cytoplasmic tail, 1 Novel U 0.06703307464835882 0.4303442849341479 1.0 1437 +68497 Arel1 apoptosis resistant E3 ubiquitin protein ligase 1 Novel U 0.06702916415918635 0.4303037802158498 1.0 1438 +72699 Lime1 Lck interacting transmembrane adaptor 1 Novel U 0.0669462770719154 0.42944523849066357 1.0 1439 +77891 Ube2s ubiquitin-conjugating enzyme E2S Novel U 0.06687097459760033 0.4286652579371435 1.0 1440 +12518 Cd79a CD79A antigen (immunoglobulin-associated alpha) Novel U 0.06685051899588655 0.4284533794870339 1.0 1441 +73182 Pear1 platelet endothelial aggregation receptor 1 Novel U 0.06681645905482267 0.4281005877371544 1.0 1442 +27643 Ubl4a ubiquitin-like 4A Novel U 0.06681326652116612 0.42806751957848876 1.0 1443 +57439 Tmem183a transmembrane protein 183A Novel U 0.06671610261913659 0.42706109907535805 1.0 1444 +75841 Rnf139 ring finger protein 139 Novel U 0.06670618263902058 0.4269583482474182 1.0 1445 +112405 Egln1 egl-9 family hypoxia-inducible factor 1 Novel U 0.06669208386659574 0.4268123136261139 1.0 1446 +52357 Wwc2 WW, C2 and coiled-coil domain containing 2 Novel N 0.0665732999728075 0.42558195395906545 1.0 1447 +19331 Rab19 RAB19, member RAS oncogene family Novel U 0.06647844146001156 0.42459941260183065 1.0 1448 +244144 Usp35 ubiquitin specific peptidase 35 Novel N 0.06641111253871934 0.4239020218484049 1.0 1449 +109270 Prr5 proline rich 5 (renal) Novel U 0.06636001114216507 0.42337271526276365 1.0 1450 +320404 Itpkb inositol 1,4,5-trisphosphate 3-kinase B Novel U 0.06634208462038207 0.42318703293943805 1.0 1451 +12527 Cd9 CD9 antigen Novel U 0.06629578621399156 0.4227074755680232 1.0 1452 +66513 Tab1 TGF-beta activated kinase 1/MAP3K7 binding protein 1 Novel U 0.06621859107995869 0.421907890907364 1.0 1453 +56532 Ripk3 receptor-interacting serine-threonine kinase 3 Novel U 0.06607241710629007 0.42039382569331496 1.0 1454 +56047 Msln mesothelin Novel U 0.0660467031430004 0.42012748130686156 1.0 1455 +435965 Lrp3 low density lipoprotein receptor-related protein 3 Novel U 0.06598365741042506 0.41947445568136293 1.0 1456 +15902 Id2 inhibitor of DNA binding 2 Novel U 0.06578939822979814 0.4174623254743558 1.0 1457 +12421 Rb1cc1 RB1-inducible coiled-coil 1 Novel U 0.06559383952185861 0.4154367348061644 1.0 1458 +24057 Sh3yl1 Sh3 domain YSC-like 1 Novel U 0.06554307148782954 0.41491088117860037 1.0 1459 +109181 Trip11 thyroid hormone receptor interactor 11 Novel U 0.06550167307836986 0.4144820778143165 1.0 1460 +330122 Cxcl3 C-X-C motif chemokine ligand 3 Novel U 0.06528780418133011 0.4122668308093399 1.0 1461 +239170 Fhip2b FHF complex subunit HOOK interacting protein 2B Novel U 0.06522658626125885 0.4116327376056725 1.0 1462 +20913 Stxbp4 syntaxin binding protein 4 Novel U 0.0651645823038025 0.41099050265260983 1.0 1463 +93742 Pard3 par-3 family cell polarity regulator Known P 0.06509853829869232 0.41030642101875836 1.0 1464 +15000 H2-DMb2 histocompatibility 2, class II, locus Mb2 Novel U 0.06508139445692535 0.41012884566930946 1.0 1465 +54725 Cadm1 cell adhesion molecule 1 Novel U 0.06500246599367643 0.40931130724161063 1.0 1466 +19197 Pspn persephin Novel N 0.0649325908502871 0.40858754280340553 1.0 1467 +14688 Gnb1 guanine nucleotide binding protein (G protein), beta 1 Novel U 0.06488546253392954 0.40809938925183387 1.0 1468 +20662 Sos1 SOS Ras/Rac guanine nucleotide exchange factor 1 Novel U 0.06481154336755274 0.4073337369564646 1.0 1469 +207425 Wdr11 WD repeat domain 11 Novel U 0.06470549105031566 0.406235250540805 1.0 1470 +14089 Fap fibroblast activation protein Novel N 0.06463721006498345 0.40552799833935044 1.0 1471 +233789 Smg1 SMG1 nonsense mediated mRNA decay associated PI3K related kinase Novel U 0.06461342569196563 0.405281640585501 1.0 1472 +18738 Pitpna phosphatidylinositol transfer protein, alpha Novel N 0.0646105507565969 0.4052518620994601 1.0 1473 +259086 Or51af1 olfactory receptor family 51 subfamily AF member 1 Novel U 0.06457188713420112 0.4048513855696827 1.0 1474 +327957 Scimp SLP adaptor and CSK interacting membrane protein Novel U 0.06455095382265241 0.4046345590168068 1.0 1475 +12519 Cd80 CD80 antigen Novel U 0.06452480114560043 0.4043636704476252 1.0 1476 +270190 Ephb1 Eph receptor B1 Novel U 0.06444883258300295 0.4035767905735725 1.0 1477 +101314 Brk1 BRICK1, SCAR/WAVE actin-nucleating complex subunit Novel U 0.06436006976533241 0.4026573882260615 1.0 1478 +13641 Efnb1 ephrin B1 Novel U 0.06430205731772493 0.4020564972007996 1.0 1479 +70807 Arrdc2 arrestin domain containing 2 Novel U 0.06426355897378502 0.40165773261983495 1.0 1480 +74012 Rap2b RAP2B, member of RAS oncogene family Novel U 0.06425116540594038 0.4015293604515167 1.0 1481 +12982 Csf2ra colony stimulating factor 2 receptor, alpha, low-affinity (granulocyte-macrophage) Novel U 0.0642467809359188 0.401483946255165 1.0 1482 +21950 Tnfsf9 tumor necrosis factor (ligand) superfamily, member 9 Novel U 0.06418379189326115 0.4008315078219702 1.0 1483 +16068 Il18bp interleukin 18 binding protein Novel U 0.06417912568025312 0.40078317534102653 1.0 1484 +258359 Or4f59 olfactory receptor family 4 subfamily F member 59 Novel U 0.06410739400134054 0.40004018096890187 1.0 1485 +73296 Rhobtb3 Rho-related BTB domain containing 3 Novel U 0.06389706136067508 0.3978615623912021 1.0 1486 +15975 Ifnar1 interferon (alpha and beta) receptor 1 Novel U 0.06385362932637242 0.3974116948076464 1.0 1487 +14923 Guk1 guanylate kinase 1 Novel N 0.06362231386382905 0.39501573685070823 1.0 1488 +67865 Rgs10 regulator of G-protein signalling 10 Novel U 0.06359529540277656 0.3947358805193106 1.0 1489 +57294 Rps27 ribosomal protein S27 Novel U 0.06357857748394204 0.3945627168655946 1.0 1490 +12807 Hps3 HPS3, biogenesis of lysosomal organelles complex 2 subunit 1 Novel N 0.06345990971155152 0.39333355998016645 1.0 1491 +244668 Sipa1l2 signal-induced proliferation-associated 1 like 2 Novel U 0.06342884558150629 0.39301179874233616 1.0 1492 +75964 Trappc8 trafficking protein particle complex 8 Novel U 0.0634159348976086 0.39287807030293986 1.0 1493 +16191 Il5 interleukin 5 Novel U 0.06337716082557038 0.3924764497393968 1.0 1494 +68146 Arl13b ADP-ribosylation factor-like 13B Novel N 0.0633551783596614 0.3922487560801462 1.0 1495 +50915 Grb14 growth factor receptor bound protein 14 Novel U 0.06333494139316061 0.3920391422463855 1.0 1496 +17329 Cxcl9 C-X-C motif chemokine ligand 9 Novel U 0.06331332531110152 0.3918152435790079 1.0 1497 +11775 Ap3b2 adaptor-related protein complex 3, beta 2 subunit Novel U 0.06321873044595876 0.3908354330754978 1.0 1498 +69601 Dab2ip disabled 2 interacting protein Novel U 0.06316359335620132 0.39026432491232443 1.0 1499 +242517 Ifna15 interferon alpha 15 Novel U 0.06286919414607087 0.38721494757164576 1.0 1500 +15507 Hspb1 heat shock protein 1 Novel U 0.06283699182718681 0.38688139701123897 1.0 1501 +69608 Sec24d SEC24 homolog D, COPII coat complex component Novel U 0.06282581988386601 0.3867656783895799 1.0 1502 +56753 Tacstd2 tumor-associated calcium signal transducer 2 Novel U 0.06281101129221706 0.38661229148408627 1.0 1503 +381937 Gm5157 predicted gene 5157 Novel U 0.06272373186089736 0.38570825400363357 1.0 1504 +52250 Reep1 receptor accessory protein 1 Novel U 0.06270157195560302 0.38547872243306247 1.0 1505 +20909 Stx4a syntaxin 4A (placental) Novel U 0.06268799594593312 0.3853381025711889 1.0 1506 +77116 Mtmr2 myotubularin related protein 2 Novel U 0.06264654045373354 0.3849087079457615 1.0 1507 +56744 Pf4 platelet factor 4 Novel U 0.06254820362163345 0.38389013827151797 1.0 1508 +50779 Rgs6 regulator of G-protein signaling 6 Novel U 0.062465662248037325 0.3830351774372107 1.0 1509 +14319 Fth1 ferritin heavy polypeptide 1 Novel N 0.062435639283742655 0.38272420055999834 1.0 1510 +14062 F2r coagulation factor II thrombin receptor Known P 0.06241298589950576 0.3824895575507624 1.0 1511 +14388 Gab1 growth factor receptor bound protein 2-associated protein 1 Novel U 0.062372360272648766 0.3820687586432733 1.0 1512 +209630 Frmd4a FERM domain containing 4A Novel U 0.062329870161972105 0.3816286474736715 1.0 1513 +545647 Gm13289 predicted gene 13289 Novel U 0.06231387862000082 0.3814630076076266 1.0 1514 +67784 Plxnd1 plexin D1 Novel U 0.06228682036260447 0.38118273906700745 1.0 1515 +50907 Preb prolactin regulatory element binding Novel U 0.06225476903333202 0.3808507524520341 1.0 1516 +19701 Ren1 renin 1 structural Novel U 0.06224912494247588 0.3807922911444857 1.0 1517 +241576 Ldlrad3 low density lipoprotein receptor class A domain containing 3 Novel U 0.06218333957510054 0.38011088847178937 1.0 1518 +18260 Ocln occludin Novel U 0.062080471174664774 0.3790453809616921 1.0 1519 +23859 Dlg2 discs large MAGUK scaffold protein 2 Novel U 0.062016645883815565 0.3783842806972194 1.0 1520 +27060 Tcirg1 T cell, immune regulator 1, ATPase, H+ transporting, lysosomal V0 protein A3 Novel U 0.061955417300747516 0.37775007704658176 1.0 1521 +20295 Ccl17 C-C motif chemokine ligand 17 Novel U 0.061909763663129565 0.37727719816891747 1.0 1522 +257885 Or8b38 olfactory receptor family 8 subfamily B member 38 Novel U 0.06186516015890592 0.37681519653843026 1.0 1523 +66226 Trappc2 trafficking protein particle complex 2 Novel U 0.06175373598761918 0.3756610686351144 1.0 1524 +68861 Dipk2a divergent protein kinase domain 2A Novel U 0.06163182323298856 0.3743983003303164 1.0 1525 +170733 Klra17 killer cell lectin-like receptor, subfamily A, member 17 Novel U 0.061490304465137716 0.3729324535850962 1.0 1526 +14569 Gdi2 GDP dissociation inhibitor 2 Novel U 0.061421475888870286 0.3722195294547357 1.0 1527 +78937 Avl9 AVL9 cell migration associated Novel N 0.061361530101429945 0.37159861295904023 1.0 1528 +213233 Tapbpl TAP binding protein-like Novel U 0.06133517543583406 0.3713256321991609 1.0 1529 +74614 Ocstamp osteoclast stimulatory transmembrane protein Novel U 0.06132694076798023 0.3712403377802312 1.0 1530 +258625 Or14j10 olfactory receptor family 14 subfamily J member 10 Novel U 0.06130319069147562 0.3709943352685381 1.0 1531 +50782 Rgs11 regulator of G-protein signaling 11 Novel N 0.06122324610494644 0.3701662718693055 1.0 1532 +243547 Grip2 glutamate receptor interacting protein 2 Novel U 0.06121214631969698 0.37005130065857733 1.0 1533 +114255 Dok4 docking protein 4 Novel U 0.061156202944948376 0.3694718410219707 1.0 1534 +81003 Trim23 tripartite motif-containing 23 Novel N 0.06102929713523036 0.36815735481671513 1.0 1535 +21938 Tnfrsf1b tumor necrosis factor receptor superfamily, member 1b Novel U 0.06101924505395675 0.36805323568932746 1.0 1536 +12977 Csf1 colony stimulating factor 1 (macrophage) Novel U 0.060962791441284934 0.36746849102508533 1.0 1537 +211556 Ap1ar adaptor-related protein complex 1 associated regulatory protein Novel U 0.06095647481642161 0.36740306363239894 1.0 1538 +235574 Atp2c1 ATPase, Ca++-sequestering Novel U 0.060924414666228215 0.36707098565061635 1.0 1539 +22433 Xbp1 X-box binding protein 1 Novel U 0.0608458642248611 0.3662573627611425 1.0 1540 +108995 Tbc1d10c TBC1 domain family, member 10c Novel U 0.06081361404490109 0.3659233164572842 1.0 1541 +208898 Unc13c unc-13 homolog C Novel U 0.060784633640143165 0.3656231383774811 1.0 1542 +226525 Rasal2 RAS protein activator like 2 Novel N 0.06066703351787926 0.36440504017696734 1.0 1543 +381038 Parl presenilin associated, rhomboid-like Novel U 0.06066687491836008 0.3644033974083613 1.0 1544 +258697 Or5b21 olfactory receptor family 5 subfamily B member 21 Novel U 0.0606274894747748 0.36399544427843167 1.0 1545 +12675 Chuk conserved helix-loop-helix ubiquitous kinase Novel U 0.0606130328291687 0.3638457028184804 1.0 1546 +269344 Ell3 elongation factor RNA polymerase II-like 3 Novel N 0.06060225596381916 0.36373407640146016 1.0 1547 +226421 Rab7b RAB7B, member RAS oncogene family Novel U 0.06059435243310958 0.36365221189018493 1.0 1548 +16885 Limk1 LIM domain kinase 1 Novel U 0.060545418908514004 0.3631453600510269 1.0 1549 +58222 Rab37 RAB37, member RAS oncogene family Novel U 0.06052354617835962 0.362918803031115 1.0 1550 +15586 Hyal1 hyaluronoglucosaminidase 1 Novel U 0.060385352196505156 0.3614873943099488 1.0 1551 +72201 Otud6b OTU domain containing 6B Novel U 0.060252556457023175 0.3601119004058192 1.0 1552 +17828 Bloc1s5 biogenesis of lysosomal organelles complex-1, subunit 5, muted Novel U 0.06022350600215347 0.3598109967492611 1.0 1553 +107868 Usp9y ubiquitin specific peptidase 9, Y chromosome Novel U 0.06013241237358719 0.35886745193911324 1.0 1554 +97998 Deptor DEP domain containing MTOR-interacting protein Novel U 0.06009410117664234 0.3584706258205712 1.0 1555 +69282 1700001J03Rik RIKEN cDNA 1700001J03 gene Novel U 0.06007166760557238 0.3582382596288925 1.0 1556 +224055 Rtp2 receptor transporter protein 2 Novel U 0.06005205369769796 0.3580350994159018 1.0 1557 +12340 Capza1 capping actin protein of muscle Z-line subunit alpha 1 Novel U 0.06003673854115826 0.35787646552792224 1.0 1558 +74190 Exoc3l4 exocyst complex component 3-like 4 Novel U 0.05985174020461284 0.3559602588394774 1.0 1559 +20438 Siah1b siah E3 ubiquitin protein ligase 1B Novel U 0.059799530514431966 0.35541947258488493 1.0 1560 +69582 Plekhm2 pleckstrin homology domain containing, family M (with RUN domain) member 2 Novel U 0.05972551436181364 0.3546528157092143 1.0 1561 +59040 Rhot1 ras homolog family member T1 Novel U 0.05972413423396532 0.3546385203903306 1.0 1562 +23832 Xcr1 chemokine (C motif) receptor 1 Novel U 0.059706985156827305 0.35446089081308063 1.0 1563 +244859 Ankk1 ankyrin repeat and kinase domain containing 1 Novel N 0.05956786334387451 0.3530198716478988 1.0 1564 +19734 Rgs16 regulator of G-protein signaling 16 Novel U 0.0595407116436834 0.35273863522988325 1.0 1565 +258928 Or5p56 olfactory receptor family 5 subfamily P member 56 Novel U 0.05953776196873749 0.35270808259375885 1.0 1566 +18845 Plxna2 plexin A2 Novel U 0.05947585949901154 0.3520668988472715 1.0 1567 +216144 Vmn2r81 vomeronasal 2, receptor 81 Novel U 0.05942652071647183 0.3515558493596503 1.0 1568 +433486 Gm14151 predicted gene 14151 Novel U 0.05939997460139885 0.35128088557238085 1.0 1569 +100213 Rusc2 RUN and SH3 domain containing 2 Novel U 0.059325636440673214 0.3505108933473201 1.0 1570 +16168 Il15 interleukin 15 Novel U 0.059293448344372154 0.35017749010396043 1.0 1571 +217201 Rundc1 RUN domain containing 1 Novel U 0.059250603058903874 0.3497337000455428 1.0 1572 +83964 Jam3 junction adhesion molecule 3 Novel U 0.059163005237467335 0.34882636469072636 1.0 1573 +60425 Doc2g double C2, gamma Novel U 0.0590082368593036 0.3472232789174427 1.0 1574 +74448 Arl13a ADP-ribosylation factor-like 13A Novel U 0.05897703126915824 0.3469000524405456 1.0 1575 +22363 Vpreb1b V-set pre-B cell surrogate light chain 1B Novel U 0.0589452687962396 0.3465710577901894 1.0 1576 +236643 Sytl5 synaptotagmin-like 5 Novel U 0.05892944716091276 0.34640717781158215 1.0 1577 +76815 Calcoco2 calcium binding and coiled-coil domain 2 Novel U 0.058767991759177275 0.34473482806796635 1.0 1578 +234878 Map3k21 mitogen-activated protein kinase kinase kinase 21 Novel U 0.058708312634251796 0.34411667365383375 1.0 1579 +15194 Htt huntingtin Novel U 0.05843476725364794 0.34128329959385895 1.0 1580 +242406 Rgp1 RAB6A GEF compex partner 1 Novel U 0.05838847611066886 0.34080381745662097 1.0 1581 +19416 Rasd1 RAS, dexamethasone-induced 1 Novel N 0.05832987683132094 0.3401968480474827 1.0 1582 +15529 Sdc2 syndecan 2 Novel U 0.058262327621774225 0.3394971755555585 1.0 1583 +21948 Cd70 CD70 antigen Novel U 0.058256244054661406 0.33943416216739036 1.0 1584 +20302 Ccl3 C-C motif chemokine ligand 3 Novel U 0.05824395492615683 0.3393068717783234 1.0 1585 +231474 Paqr3 progestin and adipoQ receptor family member III Novel U 0.05823330793240854 0.3391965905670796 1.0 1586 +68581 Tmed10 transmembrane p24 trafficking protein 10 Novel U 0.05816046202621905 0.33844205506544905 1.0 1587 +257941 Or5al1 olfactory receptor family 5 subfamily AL member 1 Novel U 0.05802274097080311 0.3370155449007865 1.0 1588 +76920 Arrdc5 arrestin domain containing 5 Novel U 0.05796276318418373 0.3363942969586464 1.0 1589 +17060 Blnk B cell linker Novel U 0.05782947945709201 0.33501374849489685 1.0 1590 +24105 Rbck1 RanBP-type and C3HC4-type zinc finger containing 1 Novel U 0.057752567641845706 0.3342170984409154 1.0 1591 +83490 Pik3ap1 phosphoinositide-3-kinase adaptor protein 1 Novel U 0.05768728598241249 0.3335409131585251 1.0 1592 +257906 Or14c40 olfactory receptor family 14 subfamily C member 40 Novel U 0.057673486232722046 0.3333979758048738 1.0 1593 +56716 Mlst8 MTOR associated protein, LST8 homolog (S. cerevisiae) Novel U 0.057656121660999995 0.3332181141418063 1.0 1594 +387609 Zhx2 zinc fingers and homeoboxes 2 Novel N 0.057577648032515055 0.33240528687764087 1.0 1595 +74718 Snx16 sorting nexin 16 Novel U 0.057535758167564746 0.3319713930335407 1.0 1596 +258276 Or10d4b olfactory receptor family 10 subfamily D member 4B Novel U 0.0574641059890662 0.3312292221240911 1.0 1597 +53420 Syt5 synaptotagmin V Novel N 0.057415676871956305 0.3307275949210883 1.0 1598 +12018 Bak1 BCL2-antagonist/killer 1 Novel U 0.05736900332498909 0.33024415185591216 1.0 1599 +54122 Uevld UEV and lactate/malate dehyrogenase domains Novel U 0.057363372429411155 0.3301858272246216 1.0 1600 +65107 Lrp10 low-density lipoprotein receptor-related protein 10 Novel U 0.05732370294922301 0.32977493205289665 1.0 1601 +68047 Mpnd MPN domain containing Novel U 0.05708307801326496 0.3272825468763617 1.0 1602 +54153 Rasa4 RAS p21 protein activator 4 Novel U 0.05707961021072342 0.3272466274916343 1.0 1603 +114875 Plcz1 phospholipase C, zeta 1 Novel N 0.05696881348001825 0.3260989985972364 1.0 1604 +56437 Rrad Ras-related associated with diabetes Novel U 0.0568616239996993 0.32498873348375706 1.0 1605 +69770 Fam174c family with sequence similarity 174, member C Novel U 0.056816383384342334 0.3245201326770948 1.0 1606 +56696 Gpr132 G protein-coupled receptor 132 Novel U 0.05678436468778623 0.3241884840707245 1.0 1607 +13609 S1pr1 sphingosine-1-phosphate receptor 1 Novel N 0.05665557897849129 0.3228545259274497 1.0 1608 +16180 Il1rap interleukin 1 receptor accessory protein Novel U 0.05663099047227546 0.3225998389883697 1.0 1609 +80291 Rilpl2 Rab interacting lysosomal protein-like 2 Novel U 0.05663088023826509 0.322598697188114 1.0 1610 +266815 Mill1 MHC I like leukocyte 1 Novel U 0.056524096889322306 0.3214926387700781 1.0 1611 +18169 Npy6r neuropeptide Y receptor Y6 Novel U 0.05651022648533221 0.32134896958151365 1.0 1612 +606496 Gsk3a glycogen synthase kinase 3 alpha Novel U 0.056384714867107215 0.3200489243659113 1.0 1613 +213019 Pdlim2 PDZ and LIM domain 2 Novel U 0.05629079722017666 0.3190761284663809 1.0 1614 +106840 Unc119b unc-119 lipid binding chaperone B Novel U 0.056187793916878566 0.3180092236368704 1.0 1615 +76206 Gpr165 G protein-coupled receptor 165 Novel U 0.056175794339420486 0.3178849324080245 1.0 1616 +15967 Ifna4 interferon alpha 4 Novel U 0.056088380462674926 0.31697950234627037 1.0 1617 +328783 Mslnl mesothelin-like Novel U 0.0560616022394825 0.31670213439072986 1.0 1618 +54636 Wdr45 WD repeat domain 45 Novel U 0.05603075856255577 0.31638265659905407 1.0 1619 +270035 Letm2 leucine zipper-EF-hand containing transmembrane protein 2 Novel U 0.0559009384848939 0.3150379845022375 1.0 1620 +27096 Trappc3 trafficking protein particle complex 3 Novel U 0.0558839834560956 0.31486236487131125 1.0 1621 +67841 Atg3 autophagy related 3 Novel U 0.055835188973451626 0.31435695322411716 1.0 1622 +12330 Canx calnexin Novel U 0.05583038078125212 0.3143071501273755 1.0 1623 +20617 Snca synuclein, alpha Novel U 0.055795509419095245 0.31394595370448886 1.0 1624 +209039 Tns2 tensin 2 Novel U 0.05575669525921558 0.31354391791240205 1.0 1625 +13051 Cx3cr1 C-X3-C motif chemokine receptor 1 Novel U 0.05571399827060994 0.31310166390801264 1.0 1626 +105245 Txndc5 thioredoxin domain containing 5 Novel N 0.055701408488827125 0.31297125936217307 1.0 1627 +18348 Or6e1 olfactory receptor family 6 subfamily E member 1 Novel U 0.055506824263822634 0.3109557623561883 1.0 1628 +69459 Ubl7 ubiquitin-like 7 (bone marrow stromal cell-derived) Novel U 0.05540589833648966 0.30991037491863443 1.0 1629 +12702 Socs3 suppressor of cytokine signaling 3 Novel U 0.05540336061514672 0.3098840892843874 1.0 1630 +22190 Ubc ubiquitin C Novel U 0.05534523481492632 0.3092820241564872 1.0 1631 +233649 Cnga4 cyclic nucleotide gated channel alpha 4 Novel U 0.05529122756144477 0.30872261880031815 1.0 1632 +18755 Prkch protein kinase C, eta Novel U 0.055256697708042986 0.3083649597138902 1.0 1633 +14225 Fkbp1a FK506 binding protein 1a Novel U 0.055234936769621434 0.3081395606290721 1.0 1634 +66964 Golt1b golgi transport 1B Novel U 0.055182628355497865 0.3075977517951266 1.0 1635 +54219 Cd320 CD320 antigen Novel U 0.055132872067928 0.30708237780412784 1.0 1636 +24017 Rnf13 ring finger protein 13 Novel U 0.05507675428170874 0.3065011116192415 1.0 1637 +20818 Srprb signal recognition particle receptor, B subunit Novel U 0.055051800501629805 0.3062426411854952 1.0 1638 +258831 Or12d12 olfactory receptor family 12 subfamily D member 12 Novel U 0.05505112249440191 0.306235618408917 1.0 1639 +24066 Spry4 sprouty RTK signaling antagonist 4 Novel N 0.05500858241649979 0.30579498968043656 1.0 1640 +21987 Tpd52l1 tumor protein D52-like 1 Novel U 0.054997504423545035 0.3056802441935806 1.0 1641 +20660 Sorl1 sortilin-related receptor, LDLR class A repeats-containing Novel U 0.05487711110004628 0.30443321410649776 1.0 1642 +17203 Mc5r melanocortin 5 receptor Novel N 0.05486175732614474 0.3042741802211537 1.0 1643 +232441 Rerg RAS-like, estrogen-regulated, growth-inhibitor Novel N 0.05485822288363493 0.3042375705818256 1.0 1644 +54635 Pdgfc platelet-derived growth factor, C polypeptide Novel U 0.054822913522418464 0.3038718373790782 1.0 1645 +257888 Or2y1c olfactory receptor family 2 subfamily Y member 1C Novel U 0.05481194694344996 0.30375824591462924 1.0 1646 +267019 Rps15a ribosomal protein S15A Novel U 0.05479955023548148 0.30362984122101155 1.0 1647 +64291 Osbpl1a oxysterol binding protein-like 1A Novel N 0.054741282624857286 0.3030263072256107 1.0 1648 +72621 Pdzd11 PDZ domain containing 11 Novel N 0.054699674760438785 0.3025953343337487 1.0 1649 +11682 Alk anaplastic lymphoma kinase Novel U 0.054636190458722825 0.30193776602350875 1.0 1650 +13185 Vps26c VPS26 endosomal protein sorting factor C Novel U 0.05461696810535131 0.3017386615191875 1.0 1651 +240518 Peli3 pellino 3 Novel U 0.05458203691718058 0.301376845420416 1.0 1652 +13356 Dgcr2 DiGeorge syndrome critical region gene 2 Novel U 0.05448398659103825 0.30036124336546455 1.0 1653 +18220 Nucb1 nucleobindin 1 Novel U 0.054478789797840974 0.3003074151523625 1.0 1654 +70797 Ankib1 ankyrin repeat and IBR domain containing 1 Novel U 0.05444431362271441 0.29995031206374473 1.0 1655 +76482 Rmc1 regulator of MON1-CCZ1 Novel N 0.054405612822815724 0.29954945045061443 1.0 1656 +171285 Havcr2 hepatitis A virus cellular receptor 2 Novel U 0.05436830548581935 0.2991630222804186 1.0 1657 +259102 Or51l4 olfactory receptor family 51 subfamily L member 4 Novel U 0.05434076200975302 0.2988777278607665 1.0 1658 +56546 Sec1 secretory blood group 1 Novel U 0.054314309450174236 0.2986037331182305 1.0 1659 +100502698 Rubcn RUN domain and cysteine-rich domain containing, Beclin 1-interacting protein Novel U 0.054280131652271905 0.2982497206110928 1.0 1660 +22224 Usp10 ubiquitin specific peptidase 10 Novel U 0.05427005334530802 0.29814532983886727 1.0 1661 +20310 Cxcl2 C-X-C motif chemokine ligand 2 Novel U 0.05410618355740721 0.2964479719627198 1.0 1662 +14985 H2-M10.1 histocompatibility 2, M region locus 10.1 Novel U 0.05407107441404505 0.29608431260992546 1.0 1663 +257975 Or52ab7 olfactory receptor family 52 subfamily AB member 7 Novel U 0.05405026026142425 0.2958687203013076 1.0 1664 +28078 Prl5a1 prolactin family 5, subfamily a, member 1 Novel U 0.05403428113415912 0.29570320902638086 1.0 1665 +59079 Erbin Erbb2 interacting protein Novel U 0.054023498193595636 0.29559151968249436 1.0 1666 +21334 Tac2 tachykinin 2 Novel U 0.053824942905144835 0.2935348905318744 1.0 1667 +207304 Hectd1 HECT domain E3 ubiquitin protein ligase 1 Novel U 0.053789125439275394 0.29316389439783447 1.0 1668 +22174 Tyro3 TYRO3 protein tyrosine kinase 3 Novel U 0.053783514620874155 0.2931057777252802 1.0 1669 +269615 Plch2 phospholipase C, eta 2 Novel N 0.053771484010559444 0.2929811650591254 1.0 1670 +213573 Cracr2b calcium release activated channel regulator 2B Novel N 0.053724645937555875 0.29249601783867313 1.0 1671 +100862177 Ccl21d C-C motif chemokine ligand 21D Novel U 0.05361085840847647 0.29131741035303216 1.0 1672 +11750 Anxa7 annexin A7 Novel U 0.05344258551508964 0.28957444525500464 1.0 1673 +22359 Vldlr very low density lipoprotein receptor Novel U 0.053391846657089494 0.2890488938317892 1.0 1674 +14272 Fnta farnesyltransferase, CAAX box, alpha Novel U 0.05338515115583818 0.28897954204993087 1.0 1675 +56395 Tmem115 transmembrane protein 115 Novel N 0.053375792106888774 0.2888826013285751 1.0 1676 +23802 Amfr autocrine motility factor receptor Novel U 0.05337334908391582 0.28885729657693127 1.0 1677 +56187 Rabggta Rab geranylgeranyl transferase, a subunit Novel N 0.0533544105255819 0.28866113161228013 1.0 1678 +224624 Rab40c Rab40C, member RAS oncogene family Novel U 0.053331935490176334 0.2884283359343762 1.0 1679 +68203 Diras2 DIRAS family, GTP-binding RAS-like 2 Novel U 0.053292407771008396 0.2880189091186385 1.0 1680 +20612 Siglec1 sialic acid binding Ig-like lectin 1, sialoadhesin Novel N 0.053272899472126684 0.2878168428001225 1.0 1681 +13603 Opn3 opsin 3 Novel U 0.05311051528516447 0.2861348727296604 1.0 1682 +16160 Il12b interleukin 12b Novel U 0.05310937665779621 0.28612307886481037 1.0 1683 +20583 Snai2 snail family zinc finger 2 Novel U 0.053076530056560677 0.2857828548489865 1.0 1684 +20684 Sp100 nuclear antigen Sp100 Novel U 0.053067613176848535 0.28569049410205477 1.0 1685 +319430 C5ar2 complement component 5a receptor 2 Novel U 0.05304875979263343 0.28549521136812633 1.0 1686 +12458 Ccr6 C-C motif chemokine receptor 6 Novel U 0.052941276936753136 0.28438190748022674 1.0 1687 +258548 Or6c212 olfactory receptor family 6 subfamily C member 212 Novel U 0.052857017344761476 0.283509149396262 1.0 1688 +140743 Rem2 rad and gem related GTP binding protein 2 Novel U 0.05279187112981964 0.2828343670434609 1.0 1689 +258893 Or4c120 olfactory receptor family 4 subfamily C member 120 Novel U 0.05268124493480626 0.28168850455215255 1.0 1690 +218699 Pxk PX domain containing serine/threonine kinase Novel U 0.05260705730600568 0.28092007153182297 1.0 1691 +26941 Nherf1 NHERF family PDZ scaffold protein 1 Novel U 0.05249707055766586 0.27978083240813867 1.0 1692 +71746 Rgl3 ral guanine nucleotide dissociation stimulator-like 3 Novel U 0.0524173125380185 0.278954701462535 1.0 1693 +258181 Or1p1c olfactory receptor family 1 subfamily P member 1C Novel U 0.05239770265085632 0.27875158289594937 1.0 1694 +105689 Mycbp2 MYC binding protein 2, E3 ubiquitin protein ligase Novel U 0.052361541438615274 0.27837702624829247 1.0 1695 +54354 Rassf5 Ras association (RalGDS/AF-6) domain family member 5 Novel U 0.05234571401169201 0.27821308628051994 1.0 1696 +100043314 Tigit T cell immunoreceptor with Ig and ITIM domains Novel U 0.05231307085411106 0.27787496952738244 1.0 1697 +232196 C87436 expressed sequence C87436 Novel U 0.05225982010246129 0.27732339999231825 1.0 1698 +11853 Rhoc ras homolog family member C Novel U 0.05222663921962928 0.27697971349870704 1.0 1699 +22164 Tnfsf4 tumor necrosis factor (ligand) superfamily, member 4 Novel U 0.05216256315109007 0.27631601568716524 1.0 1700 +68070 Pdzd2 PDZ domain containing 2 Novel U 0.05209023432659634 0.2755668361007411 1.0 1701 +54525 Syt7 synaptotagmin VII Novel U 0.051999132731046026 0.27462320876883456 1.0 1702 +14365 Fzd3 frizzled class receptor 3 Novel N 0.05197725983720847 0.2743966500534978 1.0 1703 +16974 Lrp6 low density lipoprotein receptor-related protein 6 Novel U 0.051974203254149885 0.2743649900666567 1.0 1704 +240283 Dmxl1 Dmx-like 1 Novel U 0.05192416840122634 0.2738467307048818 1.0 1705 +76559 Atg2b autophagy related 2B Novel U 0.051913193511125444 0.2737330531539968 1.0 1706 +16878 Lif leukemia inhibitory factor Novel U 0.051827793031562985 0.2728484777940784 1.0 1707 +56085 Ubqln1 ubiquilin 1 Novel U 0.05176820459272864 0.2722312627034966 1.0 1708 +13835 Epha1 Eph receptor A1 Novel U 0.05176027702411154 0.27214914920836547 1.0 1709 +68449 Tbc1d10b TBC1 domain family, member 10b Novel U 0.05154780977056177 0.2699484203805816 1.0 1710 +225192 Hrh4 histamine receptor H4 Novel U 0.05152600868581803 0.269722605461478 1.0 1711 +118568473 LOC118568473 sp110 nuclear body protein-like Novel U 0.05132817920565683 0.26767349420926206 1.0 1712 +14588 Gfra4 glial cell line derived neurotrophic factor family receptor alpha 4 Novel U 0.051258872630938646 0.266955618986662 1.0 1713 +64010 Sav1 salvador family WW domain containing 1 Novel U 0.051200907672847164 0.2663552198562457 1.0 1714 +258461 Or2y11 olfactory receptor family 2 subfamily Y member 11 Novel U 0.051180464608339304 0.2661434712661029 1.0 1715 +381126 Garem1 GRB2 associated regulator of MAPK1 subtype 1 Novel U 0.05113676167149672 0.265690797682944 1.0 1716 +214585 Spg11 SPG11, spatacsin vesicle trafficking associated Novel U 0.051074031784730765 0.26504104357795616 1.0 1717 +14479 Usp15 ubiquitin specific peptidase 15 Novel U 0.05107190435585103 0.26501900773955533 1.0 1718 +66085 Eif3f eukaryotic translation initiation factor 3, subunit F Novel U 0.05102476630620784 0.2645307533709311 1.0 1719 +226922 Kcnq5 potassium voltage-gated channel, subfamily Q, member 5 Novel N 0.05083470898273946 0.26256214586224347 1.0 1720 +107260 Otub1 OTU domain, ubiquitin aldehyde binding 1 Novel N 0.050832169121112644 0.2625358380590064 1.0 1721 +67399 Pdlim7 PDZ and LIM domain 7 Novel U 0.05079703322565796 0.2621719016089171 1.0 1722 +16421 Itgb7 integrin beta 7 Novel U 0.05078186240450821 0.26201476274216184 1.0 1723 +15007 H2-Q10 histocompatibility 2, Q region locus 10 Novel U 0.05076239464240583 0.2618131163022736 1.0 1724 +214804 Syde2 synapse defective 1, Rho GTPase, homolog 2 (C. elegans) Novel U 0.05072019264513826 0.261375989401892 1.0 1725 +258614 Or6f1 olfactory receptor family 6 subfamily F member 1 Novel U 0.050698578194034095 0.26115210762789187 1.0 1726 +71751 Map3k13 mitogen-activated protein kinase kinase kinase 13 Novel U 0.050688732664169116 0.26105012795320476 1.0 1727 +213211 Rnf26 ring finger protein 26 Novel U 0.05067204364406924 0.2608772636316323 1.0 1728 +330496 Ifnl2 interferon lambda 2 Novel U 0.050658817666396176 0.2607402693896752 1.0 1729 +66593 Diablo diablo, IAP-binding mitochondrial protein Novel U 0.0506275545962982 0.2604164475373184 1.0 1730 +16981 Lrrn3 leucine rich repeat protein 3, neuronal Novel U 0.05059513532617805 0.26008064980314 1.0 1731 +74996 Usp47 ubiquitin specific peptidase 47 Novel U 0.05056805738515406 0.2598001773801529 1.0 1732 +67620 Lrp2bp Lrp2 binding protein Novel U 0.050359091113047455 0.25763571160306875 1.0 1733 +12962 Crybb3 crystallin, beta B3 Novel N 0.05024305813355069 0.25643384581581996 1.0 1734 +12632 Cfl2 cofilin 2, muscle Novel U 0.050222178313946805 0.25621757333074996 1.0 1735 +231655 Oasl1 2'-5' oligoadenylate synthetase-like 1 Novel U 0.05020677296248979 0.2560580052067819 1.0 1736 +11797 Birc2 baculoviral IAP repeat-containing 2 Novel U 0.050145518739093044 0.2554235359744625 1.0 1737 +14205 Vegfd vascular endothelial growth factor D Novel U 0.05014013277099336 0.25536774829394016 1.0 1738 +16653 Kras Kirsten rat sarcoma viral oncogene homolog Novel U 0.05003582861701699 0.2542873692958672 1.0 1739 +258786 Or4a39 olfactory receptor family 4subfamily A member 39 Novel U 0.04984086215619234 0.25226791310382257 1.0 1740 +214968 Sema6d sema domain, transmembrane domain (TM), and cytoplasmic domain, (semaphorin) 6D Novel U 0.049751797447679096 0.2513453837808869 1.0 1741 +407243 Peds1 plasmanylethanolamine desaturase 1 Novel N 0.049745038987194325 0.25127537986935805 1.0 1742 +226551 Suco SUN domain containing ossification factor Novel U 0.04952855936556072 0.24903309106486132 1.0 1743 +19374 Rag2 recombination activating gene 2 Novel U 0.049527818378178906 0.24902541594191913 1.0 1744 +13848 Ephb6 Eph receptor B6 Novel U 0.049507319451058414 0.248813088728671 1.0 1745 +71198 Otud1 OTU domain containing 1 Novel N 0.04948264985900962 0.2485575619051987 1.0 1746 +216350 Tspan8 tetraspanin 8 Novel U 0.04947426579284494 0.24847072002347628 1.0 1747 +258989 Or2r3 olfactory receptor family 2 subfamily R member 3 Novel U 0.04944765710819061 0.24819510814254012 1.0 1748 +224105 Pak2 p21 (RAC1) activated kinase 2 Novel U 0.049445700556994494 0.24817484224956893 1.0 1749 +19204 Ptafr platelet-activating factor receptor Novel N 0.04943812705385716 0.2480963961530379 1.0 1750 +18749 Prkacb protein kinase, cAMP dependent, catalytic, beta Novel U 0.049369698293173295 0.24738761329934875 1.0 1751 +258469 Or2h2 olfactory receptor family 2 subfamily H member 2 Novel U 0.049303433392840754 0.2467012436400455 1.0 1752 +231125 Zfyve28 zinc finger, FYVE domain containing 28 Novel U 0.04929411806603649 0.24660475579123178 1.0 1753 +26395 Map2k1 mitogen-activated protein kinase kinase 1 Novel U 0.04927865509615568 0.24644459085752413 1.0 1754 +22217 Usp12 ubiquitin specific peptidase 12 Novel N 0.049095875612610654 0.24455136697551655 1.0 1755 +14275 Folr1 folate receptor alpha Novel U 0.04902076278027658 0.24377335072740156 1.0 1756 +226594 Rcsd1 RCSD domain containing 1 Novel U 0.04897698929346516 0.2433199463899847 1.0 1757 +258763 Or8i2 olfactory receptor family 8 subfamily I member 2 Novel U 0.048970070083637705 0.2432482774420487 1.0 1758 +258883 Or8b12c olfactory receptor family 8 subfamily B member 12C Novel U 0.04893533883565477 0.2428885323171697 1.0 1759 +11749 Anxa6 annexin A6 Novel N 0.04890617094494052 0.24258641226399424 1.0 1760 +67374 Jam2 junction adhesion molecule 2 Novel U 0.0488851986660578 0.24236918208875352 1.0 1761 +72388 Ripk4 receptor-interacting serine-threonine kinase 4 Novel U 0.048848248938747986 0.24198645802793534 1.0 1762 +624910 Rgs21 regulator of G-protein signalling 21 Novel N 0.04883930338703583 0.24189380029736998 1.0 1763 +18654 Pgf placental growth factor Novel N 0.04872320826264113 0.24069129081531127 1.0 1764 +18387 Oprk1 opioid receptor, kappa 1 Novel U 0.048722222833418864 0.2406810837718213 1.0 1765 +14229 Fkbp5 FK506 binding protein 5 Novel U 0.048716861291259975 0.2406255490943907 1.0 1766 +77593 Usp45 ubiquitin specific petidase 45 Novel N 0.04871146512100055 0.24056965574023317 1.0 1767 +14191 Fgr FGR proto-oncogene, Src family tyrosine kinase Novel U 0.04865326009185797 0.23996676996176153 1.0 1768 +258790 Or4c52 olfactory receptor family 4 subfamily C member 52 Novel U 0.04854356743415838 0.238830577019261 1.0 1769 +100040268 Or13c7c olfactory receptor family 13 subfamily C member 7C Novel U 0.048524859021294706 0.23863679589382503 1.0 1770 +67169 Nradd neurotrophin receptor associated death domain Novel U 0.048476326114426815 0.23813409363992077 1.0 1771 +80885 Hcar2 hydroxycarboxylic acid receptor 2 Novel U 0.04838710583441093 0.2372099529124749 1.0 1772 +226418 Yod1 YOD1 deubiquitinase Novel U 0.04837876381267704 0.23712354652558448 1.0 1773 +321021 Fpr-rs7 formyl peptide receptor, related sequence 7 Novel U 0.04837858801382427 0.23712172560684652 1.0 1774 +69697 Camsap3 calmodulin regulated spectrin-associated protein family, member 3 Novel U 0.04836993186036626 0.23703206545388422 1.0 1775 +270058 Map1s microtubule-associated protein 1S Novel U 0.04831857959072505 0.23650016033305546 1.0 1776 +67653 4930544G11Rik RIKEN cDNA 4930544G11 gene Novel U 0.048229526680362 0.23557775321497165 1.0 1777 +71819 Kif23 kinesin family member 23 Novel U 0.04814692666498841 0.23472218497106123 1.0 1778 +258303 Or10a3 olfactory receptor family 10 subfamily A member 3 Novel U 0.04794424493024307 0.232622814225372 1.0 1779 +18566 Pdcd1 programmed cell death 1 Novel U 0.04792517235750907 0.23242526114397036 1.0 1780 +20608 Sstr4 somatostatin receptor 4 Novel N 0.04791937938685886 0.2323652577444091 1.0 1781 +105855 Nckap1l NCK associated protein 1 like Novel U 0.047866500084016564 0.23181753566388202 1.0 1782 +270163 Myo9a myosin IXa Novel U 0.04777549841138491 0.23087494333028216 1.0 1783 +17918 Myo5a myosin VA Novel U 0.04775947974431786 0.23070902250338693 1.0 1784 +258180 Or2ag17 olfactory receptor family 2 subfamily AG member 17 Novel U 0.04771938548823129 0.23029372751686994 1.0 1785 +67669 Hikeshi heat shock protein nuclear import factor Novel U 0.04769243229801803 0.2300145472586793 1.0 1786 +224014 Fgd4 FYVE, RhoGEF and PH domain containing 4 Novel U 0.047600330169368314 0.22906055643781995 1.0 1787 +71382 Pex1 peroxisomal biogenesis factor 1 Novel U 0.04752646334959672 0.22829544634686663 1.0 1788 +257939 Or12j2 olfactory receptor family 12 subfamily J member 2 Novel U 0.0475081911678688 0.22810618368919447 1.0 1789 +216856 Nlgn2 neuroligin 2 Novel U 0.04747616315689248 0.22777443860436586 1.0 1790 +259056 Or52r1c olfactory receptor family 52 subfamily R member 1C Novel U 0.047349989064708824 0.22646753150527735 1.0 1791 +235180 Fez1 fasciculation and elongation protein zeta 1 Novel U 0.047291167520273555 0.22585825988167094 1.0 1792 +68318 Aph1c aph1 homolog C, gamma secretase subunit Novel U 0.04727002212929853 0.22563923661706892 1.0 1793 +14567 Gdi1 GDP dissociation inhibitor 1 Novel U 0.047268430012600046 0.22562274552464404 1.0 1794 +19207 Ptch2 patched 2 Novel U 0.04725219239068995 0.22545455677068232 1.0 1795 +258272 Or13l2 olfactory receptor family 13 subfamily L member 2 Novel U 0.04724244413097389 0.22535358461700017 1.0 1796 +259028 Or13a21 olfactory receptor family 13 subfamily A member 21 Novel U 0.047220850616020466 0.22512991969896112 1.0 1797 +258439 Or4f15 olfactory receptor family 4 subfamily F member 15 Novel U 0.04721232910337318 0.2250416541510902 1.0 1798 +56430 Clip1 CAP-GLY domain containing linker protein 1 Novel U 0.04716786111526851 0.22458105619210833 1.0 1799 +230787 Themis2 thymocyte selection associated family member 2 Novel N 0.04715463947014719 0.2244441068265799 1.0 1800 +258762 Or5aq6 olfactory receptor family 5 subfamily AQ member 6 Novel U 0.047046519400631225 0.2233242027007893 1.0 1801 +258901 Or4c114 olfactory receptor family 4 subfamily C member 114 Novel U 0.047039848924454286 0.22325511012782864 1.0 1802 +16370 Irs4 insulin receptor substrate 4 Novel U 0.04701105654278862 0.22295687958503427 1.0 1803 +217463 Snx13 sorting nexin 13 Novel U 0.04695294162431615 0.22235492716992142 1.0 1804 +76829 Dok5 docking protein 5 Novel N 0.04692049961325228 0.2220188938857955 1.0 1805 +214301 Crygn crystallin, gamma N Novel U 0.046917781017249686 0.22199073475776965 1.0 1806 +258967 Or4a77 olfactory receptor family 4 subfamily A member 77 Novel U 0.04690508740558724 0.22185925474545007 1.0 1807 +14999 H2-DMb1 histocompatibility 2, class II, locus Mb1 Novel U 0.04688380885604219 0.221638852228757 1.0 1808 +11793 Atg5 autophagy related 5 Novel U 0.04685670880077814 0.22135815074719833 1.0 1809 +23962 Oasl2 2'-5' oligoadenylate synthetase-like 2 Novel U 0.04683085892166933 0.22109039854915824 1.0 1810 +258727 Or5p64 olfactory receptor family 5 subfamily P member 64 Novel U 0.046808976448010145 0.22086374060634398 1.0 1811 +270096 Mon1b MON1 homolog B, secretory traffciking associated Novel U 0.04678809316897116 0.220647432288559 1.0 1812 +20947 Swap70 SWA-70 protein Novel U 0.04676722703196222 0.22043130152735768 1.0 1813 +217124 Ppp1r9b protein phosphatase 1, regulatory subunit 9B Novel N 0.04674778351930868 0.22022990626246336 1.0 1814 +71785 Pdgfd platelet-derived growth factor, D polypeptide Novel U 0.046684578600966614 0.21957523179602598 1.0 1815 +209517 Taar7b trace amine-associated receptor 7B Novel U 0.04663874291490105 0.21910046726652585 1.0 1816 +11482 Acvrl1 activin A receptor, type II-like 1 Novel U 0.04661751499446189 0.2188805891644473 1.0 1817 +56470 Rgs19 regulator of G-protein signaling 19 Novel N 0.046612320698060435 0.21882678681307435 1.0 1818 +24099 Tnfsf13b tumor necrosis factor (ligand) superfamily, member 13b Novel U 0.04652140965560636 0.21788513322387457 1.0 1819 +26946 Trpc7 transient receptor potential cation channel, subfamily C, member 7 Novel N 0.04650738964001231 0.21773991436323456 1.0 1820 +12514 Cd68 CD68 antigen Novel U 0.04647283212305806 0.21738196873863963 1.0 1821 +11799 Birc5 baculoviral IAP repeat-containing 5 Novel N 0.046439395205823235 0.21703563024910072 1.0 1822 +56367 Scoc short coiled-coil protein Novel U 0.046409079928860404 0.21672162560688074 1.0 1823 +258988 Or2f1b olfactory receptor family 2 subfamily F member 1B Novel U 0.046395781186902775 0.2165838776748562 1.0 1824 +22418 Wnt5a wingless-type MMTV integration site family, member 5A Novel U 0.046390551051872786 0.216529704108147 1.0 1825 +12578 Cdkn2a cyclin dependent kinase inhibitor 2A Novel U 0.04635949010196519 0.21620797581007783 1.0 1826 +228607 Mavs mitochondrial antiviral signaling protein Novel U 0.04635339635101729 0.21614485693808078 1.0 1827 +53611 Vti1a vesicle transport through interaction with t-SNAREs 1A Novel U 0.046325139537917746 0.21585217379688837 1.0 1828 +59125 Nek7 NIMA (never in mitosis gene a)-related expressed kinase 7 Novel U 0.046319496309348784 0.2157937214208822 1.0 1829 +192193 Edem1 ER degradation enhancer, mannosidase alpha-like 1 Novel U 0.04629416387871918 0.21553132893717955 1.0 1830 +258643 Or9m1b olfactory receptor family 9 subfamily M member 1B Novel U 0.04622124823899315 0.21477607113786987 1.0 1831 +14678 Gnai2 G protein subunit alpha i2 Novel U 0.046172883157217855 0.21427510721075774 1.0 1832 +18003 Nedd9 neural precursor cell expressed, developmentally down-regulated gene 9 Novel U 0.046083412086383876 0.21334836880026237 1.0 1833 +70375 Ica1l islet cell autoantigen 1-like Novel U 0.046039033436842604 0.21288869620718337 1.0 1834 +258465 Or2y15 olfactory receptor family 2 subfamily Y member 15 Novel U 0.04598267735486095 0.2123049617626238 1.0 1835 +56389 Stx5a syntaxin 5A Novel U 0.04597942613049428 0.21227128568751205 1.0 1836 +20598 Smpd2 sphingomyelin phosphodiesterase 2, neutral Novel N 0.04597916590451361 0.21226859027535877 1.0 1837 +258985 Or4a47 olfactory receptor family 4 subfamily A member 47 Novel U 0.045932622917951804 0.2117864995505698 1.0 1838 +258758 Or10j7 olfactory receptor family 10 subfamily J member 7 Novel U 0.04590332003831059 0.21148298128652637 1.0 1839 +258653 Or5w13 olfactory receptor family 5 subfamily W member 13 Novel U 0.04581066026052151 0.21052321435421317 1.0 1840 +13841 Epha7 Eph receptor A7 Novel U 0.04571943890112842 0.20957834651236018 1.0 1841 +17948 Naip2 NLR family, apoptosis inhibitory protein 2 Novel U 0.045684384476358246 0.20921525393294282 1.0 1842 +52033 Pbk PDZ binding kinase Novel U 0.045683023743909 0.2092011595109652 1.0 1843 +433638 I830077J02Rik RIKEN cDNA I830077J02 gene Novel U 0.04561028668738439 0.20844775147058522 1.0 1844 +14389 Gab2 growth factor receptor bound protein 2-associated protein 2 Novel N 0.04558481765296787 0.20818394404934826 1.0 1845 +257919 Or5p5 olfactory receptor family 5 subfamily P member 5 Novel U 0.04547993510019326 0.20709757401553705 1.0 1846 +668200 Esp15 exocrine gland secreted peptide 15 Novel U 0.04545535683465029 0.20684299314900986 1.0 1847 +319965 Cc2d1b coiled-coil and C2 domain containing 1B Novel U 0.04542686084120841 0.20654783258569417 1.0 1848 +224617 Tbc1d24 TBC1 domain family, member 24 Novel U 0.04538125321415756 0.2060754302839715 1.0 1849 +14693 Gnb2 guanine nucleotide binding protein (G protein), beta 2 Novel U 0.04515302343043587 0.2037114336868321 1.0 1850 +435337 Eif1ad7 eukaryotic translation initiation factor 1A domain containing 7 Novel U 0.04509701039924011 0.20313125255103565 1.0 1851 +228550 Itpka inositol 1,4,5-trisphosphate 3-kinase A Novel U 0.045089524426672245 0.20305371309326575 1.0 1852 +68895 Rasl11a RAS-like, family 11, member A Novel U 0.04506111582308299 0.20275945771117077 1.0 1853 +244234 Scart2 scavenger receptor family member expressed on T cells 2 Novel U 0.045059099684271374 0.20273857461163705 1.0 1854 +12305 Ddr1 discoidin domain receptor family, member 1 Novel U 0.04505200159333078 0.20266505281901157 1.0 1855 +54712 Plxnc1 plexin C1 Novel N 0.0450131706478984 0.2022628431627215 1.0 1856 +27061 Bcap31 B cell receptor associated protein 31 Novel U 0.0449855054103002 0.201976287541125 1.0 1857 +67231 Tbc1d20 TBC1 domain family, member 20 Novel U 0.04496578449392162 0.2017720189375659 1.0 1858 +74158 Josd1 Josephin domain containing 1 Novel U 0.04494813919826479 0.20158924954521032 1.0 1859 +26904 Sh2d1b1 SH2 domain containing 1B1 Novel U 0.04493661912494062 0.2014699250044205 1.0 1860 +106766 Stap2 signal transducing adaptor family member 2 Novel U 0.044921957577729224 0.20131806118037732 1.0 1861 +98432 Phlpp1 PH domain and leucine rich repeat protein phosphatase 1 Novel U 0.0448606152294225 0.20068267915313734 1.0 1862 +16923 Sh2b3 SH2B adaptor protein 3 Novel U 0.044839803165321004 0.20046710847733376 1.0 1863 +12177 Bnip3l BCL2/adenovirus E1B interacting protein 3-like Novel U 0.04478038549081027 0.19985166215800243 1.0 1864 +259098 Or51l14 olfactory receptor family 51 subfamily L member 14 Novel U 0.04477369078110088 0.19978231857490927 1.0 1865 +214292 Syna syncytin a Novel U 0.0447629685000225 0.19967125753997542 1.0 1866 +213439 Gpr174 G protein-coupled receptor 174 Novel U 0.04476081825772057 0.1996489854008974 1.0 1867 +67125 Tspan31 tetraspanin 31 Novel N 0.04469470109481559 0.19896414600101225 1.0 1868 +240057 Syngap1 synaptic Ras GTPase activating protein 1 homolog (rat) Novel U 0.0446914271288696 0.19893023436936952 1.0 1869 +28040 D6Wsu163e DNA segment, Chr 6, Wayne State University 163, expressed Novel U 0.044651620658346255 0.19851792025625592 1.0 1870 +65964 Map3k20 mitogen-activated protein kinase kinase kinase 20 Novel U 0.044646051060252795 0.19846023054229453 1.0 1871 +14738 Gpr12 G-protein coupled receptor 12 Novel N 0.044640165744527824 0.19839927063548463 1.0 1872 +258659 Or4n4 olfactory receptor family 4 subfamily N member 4 Novel U 0.04455760715227395 0.19754413145088648 1.0 1873 +27390 Mmel1 membrane metallo-endopeptidase-like 1 Novel U 0.044554161840921896 0.19750844502916043 1.0 1874 +226641 Atf6 activating transcription factor 6 Novel U 0.04444629253445788 0.19639113829881852 1.0 1875 +24063 Spry1 sprouty RTK signaling antagonist 1 Novel U 0.04442927975241043 0.1962149204616361 1.0 1876 +258283 Or10g6 olfactory receptor family 10 subfamily G member 6 Novel U 0.04442735407014865 0.19619497430807203 1.0 1877 +17245 Mdm1 MDM1 nuclear protein Novel U 0.0443992803929891 0.19590418808292578 1.0 1878 +109934 Abr active BCR-related gene Novel U 0.04435981449131127 0.1954954015707184 1.0 1879 +20874 Slk STE20-like kinase Novel U 0.044355683057114584 0.19545260831112277 1.0 1880 +215856 Taar7a trace amine-associated receptor 7A Novel U 0.04429089139877696 0.19478149844397266 1.0 1881 +67675 Cuta cutA divalent cation tolerance homolog Novel U 0.04427116373603279 0.19457715996178054 1.0 1882 +100038947 Sirpb1c signal-regulatory protein beta 1C Novel U 0.04424783286007949 0.19433549951561743 1.0 1883 +231999 Plekha8 pleckstrin homology domain containing, family A (phosphoinositide binding specific) member 8 Novel U 0.04417687741035915 0.19360054529994894 1.0 1884 +11857 Arhgdib Rho, GDP dissociation inhibitor beta Novel U 0.04417637623143101 0.1935953541050866 1.0 1885 +639781 Skint1 selection and upkeep of intraepithelial T cells 1 Novel U 0.04411629964462868 0.19297308279389946 1.0 1886 +30945 Rnf19a ring finger protein 19A Novel N 0.04402650193467888 0.19204296106618007 1.0 1887 +83431 Ndel1 nudE neurodevelopment protein 1 like 1 Novel U 0.04400615244988741 0.19183218177166333 1.0 1888 +11481 Acvr2b activin receptor IIB Novel U 0.0439708017930427 0.19146602083015601 1.0 1889 +407814 Timd6 T cell immunoglobulin and mucin domain containing 6 Novel U 0.04383861845247086 0.19009687013380613 1.0 1890 +52838 Dnlz DNL-type zinc finger Novel U 0.04378027142218325 0.18949251351214233 1.0 1891 +668303 Kif26a kinesin family member 26A Novel U 0.043726701165113804 0.18893763455044432 1.0 1892 +258248 Or51a7 olfactory receptor family 51 subfamily A member 7 Novel U 0.043696090457073976 0.1886205698428406 1.0 1893 +68121 Cep70 centrosomal protein 70 Novel U 0.04367258657020577 0.18837711735530838 1.0 1894 +333883 Cd59b CD59b antigen Novel U 0.04365282333427191 0.18817241040718682 1.0 1895 +381353 Ajm1 apical junction component 1 Novel U 0.04354738554394634 0.1870802892410752 1.0 1896 +20852 Stat6 signal transducer and activator of transcription 6 Novel U 0.04352451567376428 0.1868434038775359 1.0 1897 +258294 Or10ag53 olfactory receptor family 10 subfamily AG member 53 Novel U 0.04350946808088256 0.18668754140513 1.0 1898 +329581 Birc7 baculoviral IAP repeat-containing 7 Novel U 0.043486596824046854 0.1864506416786778 1.0 1899 +12371 Casp9 caspase 9 Novel U 0.043478601336538164 0.18636782468190027 1.0 1900 +258299 Or5b107 olfactory receptor family 5 subfamily B member 107 Novel U 0.04340567639256985 0.18561247050955484 1.0 1901 +15972 Ifna9 interferon alpha 9 Novel U 0.04334967696565002 0.18503243028640126 1.0 1902 +235415 Cplx3 complexin 3 Novel U 0.04331735261576108 0.1846976157328573 1.0 1903 +230597 Zfyve9 zinc finger, FYVE domain containing 9 Novel U 0.04330580858366155 0.18457804302786002 1.0 1904 +245684 Cnksr2 connector enhancer of kinase suppressor of Ras 2 Novel U 0.04330500798468649 0.18456975044999463 1.0 1905 +12847 Copa coatomer protein complex subunit alpha Novel U 0.043239272077003094 0.18388886007916153 1.0 1906 +319651 Usp37 ubiquitin specific peptidase 37 Novel N 0.043236909581263874 0.18386438942595756 1.0 1907 +56715 Rabgef1 RAB guanine nucleotide exchange factor (GEF) 1 Novel U 0.04316670183240547 0.18313717987123765 1.0 1908 +11787 Apbb2 amyloid beta precursor protein binding family B member 2 Novel N 0.04315641167087701 0.18303059471639668 1.0 1909 +18213 Ntrk3 neurotrophic tyrosine kinase, receptor, type 3 Novel U 0.043150849030432856 0.18297297706953805 1.0 1910 +51800 Bok BCL2-related ovarian killer Novel N 0.04312691011849597 0.18272501860664508 1.0 1911 +100043645 Gm4567 predicted gene 4567 Novel U 0.04312091246912131 0.1826628951515845 1.0 1912 +18188 Nrtn neurturin Novel U 0.0430165218875661 0.1815816209394911 1.0 1913 +244187 Or56a4 olfactory receptor family 56 subfamily A member 4 Novel U 0.04288056684238925 0.1801734030508306 1.0 1914 +383592 Kif28 kinesin family member 28 Novel U 0.04287155383276322 0.1800800465934109 1.0 1915 +259033 Or10ag57 olfactory receptor family 10 subfamily AG member 57 Novel U 0.042835043399276976 0.17970187272357624 1.0 1916 +13400 Dmpk dystrophia myotonica-protein kinase Novel U 0.04281322158256775 0.17947584306345563 1.0 1917 +12044 Bcl2a1a B cell leukemia/lymphoma 2 related protein A1a Novel U 0.04280460831634245 0.1793866271350399 1.0 1918 +107221 Ffar4 free fatty acid receptor 4 Novel N 0.042773462738662595 0.17906402226528761 1.0 1919 +545156 Kalrn kalirin, RhoGEF kinase Novel U 0.042751468227926574 0.1788362038461145 1.0 1920 +18328 Or1j1 olfactory receptor family 1 subfamily J member 1 Novel U 0.04268097400234241 0.1781060269748865 1.0 1921 +223864 Rapgef3 Rap guanine nucleotide exchange factor (GEF) 3 Novel U 0.04261813314443814 0.177455123434496 1.0 1922 +14570 Arhgdig Rho GDP dissociation inhibitor gamma Novel N 0.04259153227902446 0.17717959254499743 1.0 1923 +14526 Gcg glucagon Novel N 0.04258627636517451 0.1771251519621185 1.0 1924 +74256 Cyld CYLD lysine 63 deubiquitinase Novel U 0.0425845234784941 0.17710699561950585 1.0 1925 +208154 Btla B and T lymphocyte associated Novel U 0.04258334338568042 0.17709477225693526 1.0 1926 +229877 Rap1gds1 RAP1, GTP-GDP dissociation stimulator 1 Novel N 0.042580369401769305 0.17706396782934836 1.0 1927 +239849 Cd200r4 CD200 receptor 4 Novel U 0.042541934586802166 0.1766658612793952 1.0 1928 +66552 Sppl2a signal peptide peptidase like 2A Novel U 0.04250414660577112 0.17627445461408858 1.0 1929 +14709 Gng8 guanine nucleotide binding protein (G protein), gamma 8 Novel U 0.04248973727947051 0.17612520328594794 1.0 1930 +226252 Fhip2a FHF complex subunit HOOK interacting protein 2A Novel U 0.04246234891233577 0.1758415154795104 1.0 1931 +72344 Usp36 ubiquitin specific peptidase 36 Novel U 0.04239805103410126 0.1751755201704362 1.0 1932 +83767 Wasf1 WASP family, member 1 Novel U 0.042366835760652984 0.17485219339420574 1.0 1933 +23805 Apc2 APC regulator of WNT signaling pathway 2 Novel U 0.04233907219107557 0.17456461925320108 1.0 1934 +17913 Myo1c myosin IC Novel U 0.04233716199807945 0.17454483353694147 1.0 1935 +18321 Or1e17 olfactory receptor family 1 subfamily E member 17 Novel U 0.04226027573935546 0.17374844819657795 1.0 1936 +16173 Il18 interleukin 18 Novel U 0.04224006443238155 0.1735391001433531 1.0 1937 +493809 Taar3 trace amine-associated receptor 3 Novel U 0.04223849398009441 0.17352283345018876 1.0 1938 +666926 Gm8369 predicted gene 8369 Novel U 0.04215995697328296 0.17270934971540075 1.0 1939 +68943 Pink1 PTEN induced putative kinase 1 Novel U 0.04210114780876434 0.172100206322564 1.0 1940 +192113 Atp12a ATPase, H+/K+ transporting, nongastric, alpha polypeptide Novel U 0.04209874273273255 0.17207529462408935 1.0 1941 +13645 Egf epidermal growth factor Known P 0.04208624698849503 0.1719458641160526 1.0 1942 +16190 Il4ra interleukin 4 receptor, alpha Novel U 0.04208502740894591 0.1719332317511743 1.0 1943 +234129 Tpte transmembrane phosphatase with tensin homology Novel U 0.042038319755992114 0.17144943541731025 1.0 1944 +67774 Borcs5 BLOC-1 related complex subunit 5 Novel U 0.04202666730034807 0.17132873966480308 1.0 1945 +259110 Or10g9b olfactory receptor family 10 subfamily G member 9B Novel U 0.04202002571999041 0.17125994639378864 1.0 1946 +258289 Or1aa2 olfactory receptor family 1 subfamily AA member 2 Novel U 0.04197564400081085 0.17080024200549718 1.0 1947 +329015 Atg2a autophagy related 2A Novel U 0.04197533303787439 0.17079702106162364 1.0 1948 +67268 Myl12a myosin, light chain 12A, regulatory, non-sarcomeric Novel U 0.04196439065159424 0.17068368018424546 1.0 1949 +55943 Stx8 syntaxin 8 Novel U 0.04193066608917543 0.17033436227534665 1.0 1950 +76983 Scfd1 Sec1 family domain containing 1 Novel U 0.041903452699479225 0.17005248687946536 1.0 1951 +100504239 Ccl21e C-C motif chemokine ligand 21E Novel U 0.04189238233840482 0.16993782044337516 1.0 1952 +60344 Fign fidgetin Novel U 0.04188060542188001 0.1698158355291565 1.0 1953 +237300 Gm4922 predicted gene 4922 Novel U 0.04186779078017306 0.16968310189161454 1.0 1954 +54215 Cd160 CD160 antigen Novel U 0.04185894343995087 0.16959146143243373 1.0 1955 +235623 Scap SREBF chaperone Novel N 0.04184389102780593 0.16943554904225785 1.0 1956 +72287 Plekhf1 pleckstrin homology domain containing, family F (with FYVE domain) member 1 Novel U 0.04183793288161497 0.16937383475987536 1.0 1957 +338346 Gpr21 G protein-coupled receptor 21 Novel U 0.041784343973748715 0.16881876261383713 1.0 1958 +16398 Itga2 integrin alpha 2 Novel U 0.04175976487895809 0.16856417315799005 1.0 1959 +13852 Stx2 syntaxin 2 Novel U 0.04172255669104486 0.1681787719707381 1.0 1960 +236781 Gpr119 G-protein coupled receptor 119 Novel U 0.04163430380443781 0.16726465147241962 1.0 1961 +245615 Kir3dl2 killer cell immunoglobulin-like receptor, three domains, long cytoplasmic tail, 2 Novel U 0.041621066364350694 0.16712753850315465 1.0 1962 +13842 Epha8 Eph receptor A8 Novel U 0.04160273652294555 0.16693767860844122 1.0 1963 +14697 Gnb5 guanine nucleotide binding protein (G protein), beta 5 Novel U 0.04158418502612725 0.16674552281424487 1.0 1964 +16768 Lag3 lymphocyte-activation gene 3 Novel U 0.04154361368737635 0.16632528622117396 1.0 1965 +12477 Ctla4 cytotoxic T-lymphocyte-associated protein 4 Novel U 0.04152741651170295 0.16615751640800233 1.0 1966 +76899 Golga1 golgin A1 Novel U 0.04151582778400716 0.16603748074748828 1.0 1967 +16159 Il12a interleukin 12a Novel U 0.0414678056435 0.1655400689947579 1.0 1968 +65945 Clstn1 calsyntenin 1 Novel N 0.04143913460635222 0.16524309533449077 1.0 1969 +20288 Msr1 macrophage scavenger receptor 1 Novel U 0.041438214533229545 0.16523356524733188 1.0 1970 +259119 Or51g1 olfactory receptor family 51 subfamily G member 1 Novel U 0.04143593921343377 0.16520999755968432 1.0 1971 +100042150 Nrg2 neuregulin 2 Novel N 0.041294024646623496 0.16374005114185355 1.0 1972 +21929 Tnfaip3 tumor necrosis factor, alpha-induced protein 3 Novel U 0.04128221538154265 0.1636177311623548 1.0 1973 +16162 Il12rb2 interleukin 12 receptor, beta 2 Novel U 0.04124688059903005 0.16325173464665768 1.0 1974 +11651 Akt1 thymoma viral proto-oncogene 1 Novel U 0.04124512939328276 0.16323359571509505 1.0 1975 +404310 Or5ac17 olfactory receptor family 5 subfamily AC member 17 Novel U 0.04124202001758391 0.1632013889038216 1.0 1976 +12517 Cd72 CD72 antigen Novel N 0.041185718167200014 0.1626182161883688 1.0 1977 +71609 Tradd TNFRSF1A-associated via death domain Novel U 0.04117429948398558 0.16249994184300265 1.0 1978 +12511 Cd6 CD6 antigen Novel U 0.04117365662039448 0.16249328308305908 1.0 1979 +218518 Marveld2 MARVEL (membrane-associating) domain containing 2 Novel U 0.04108843079940182 0.161610516830865 1.0 1980 +545192 Baiap3 BAI1-associated protein 3 Novel U 0.04099673773174128 0.1606607630502843 1.0 1981 +67196 Ube2t ubiquitin-conjugating enzyme E2T Novel U 0.040982735413689665 0.16051572750020712 1.0 1982 +66939 Aagab alpha- and gamma-adaptin binding protein Novel U 0.04094550809352223 0.16013012814169503 1.0 1983 +20054 Rps15 ribosomal protein S15 Novel U 0.04093788469436238 0.16005116522380305 1.0 1984 +258123 Or5b118 olfactory receptor family 5 subfamily B member 118 Novel U 0.04089329674778699 0.1595893247389249 1.0 1985 +66967 Edem3 ER degradation enhancer, mannosidase alpha-like 3 Novel U 0.04086851539580737 0.15933264030976305 1.0 1986 +80280 Cdk5rap3 CDK5 regulatory subunit associated protein 3 Novel U 0.04083830131399465 0.15901968384358134 1.0 1987 +64337 Gng13 guanine nucleotide binding protein (G protein), gamma 13 Novel U 0.04082632918355228 0.15889567691002185 1.0 1988 +14082 Fadd Fas associated via death domain Novel U 0.04074691132345157 0.1580730693258202 1.0 1989 +14370 Fzd8 frizzled class receptor 8 Novel N 0.04070028247484525 0.15759008924479675 1.0 1990 +74413 Tc2n tandem C2 domains, nuclear Novel U 0.040696374536625654 0.1575496109491847 1.0 1991 +72065 Rap2c RAP2C, member of RAS oncogene family Novel N 0.04068830610560782 0.1574660384059374 1.0 1992 +68159 Stx19 syntaxin 19 Novel U 0.040673865424149844 0.15731646230210747 1.0 1993 +102633783 LOC102633783 sp110 nuclear body protein-like Novel U 0.040669529928928284 0.1572715553851243 1.0 1994 +329244 Il19 interleukin 19 Novel U 0.04065029273841421 0.15707229719816806 1.0 1995 +18205 Ntf3 neurotrophin 3 Novel U 0.04064414100388546 0.1570085777341467 1.0 1996 +215859 Taar8a trace amine-associated receptor 8A Novel U 0.04063711909640146 0.1569358450472602 1.0 1997 +20469 Sipa1 signal-induced proliferation associated gene 1 Novel U 0.04060287817337978 0.15658117869221128 1.0 1998 +100702 Gbp6 guanylate binding protein 6 Novel U 0.040601826577727186 0.15657028629901107 1.0 1999 +228769 Psmf1 proteasome (prosome, macropain) inhibitor subunit 1 Novel U 0.04058668341468671 0.15641343391404244 1.0 2000 +17237 Mgrn1 mahogunin, ring finger 1 Novel U 0.04052607783527307 0.15578568331477705 1.0 2001 +16561 Kif1b kinesin family member 1B Novel U 0.0405259067404018 0.15578391111972495 1.0 2002 +259013 Or8u9 olfactory receptor family 8 subfamily U member 9 Novel U 0.04041157119512386 0.15459962730031457 1.0 2003 +24047 Ccl19 C-C motif chemokine ligand 19 Novel U 0.040402205173712395 0.15450261435842597 1.0 2004 +74841 Usp38 ubiquitin specific peptidase 38 Novel U 0.040400314023629695 0.15448302588803756 1.0 2005 +258710 Or10z1 olfactory receptor family 10 subfamily Z member 1 Novel U 0.04034810853320745 0.153942283134407 1.0 2006 +18361 Or13a27 olfactory receptor family 13 subfamily A member 27 Novel U 0.04033238947639405 0.15377946566066997 1.0 2007 +209478 Tbc1d12 TBC1D12: TBC1 domain family, member 12 Novel U 0.04032859391817744 0.15374015139343453 1.0 2008 +19246 Ptpn1 protein tyrosine phosphatase, non-receptor type 1 Novel U 0.04030933853048843 0.15354070472073855 1.0 2009 +383563 Gpr25 G protein-coupled receptor 25 Novel U 0.04029420546032983 0.15338395687750864 1.0 2010 +258198 Or2t43 olfactory receptor family 2 subfamily T member 43 Novel U 0.04028247045104873 0.1532624060371426 1.0 2011 +18347 Or4c58 olfactory receptor family 4 subfamily C member 58 Novel U 0.04027211702824987 0.1531551656241425 1.0 2012 +11491 Adam17 a disintegrin and metallopeptidase domain 17 Novel U 0.04026296303590938 0.15306034887240097 1.0 2013 +81840 Sorcs2 sortilin-related VPS10 domain containing receptor 2 Novel U 0.04025685071727634 0.1529970376769316 1.0 2014 +76884 Cyfip2 cytoplasmic FMR1 interacting protein 2 Novel U 0.04022207519959199 0.15263683400794067 1.0 2015 +230396 Ifna13 interferon alpha 13 Novel U 0.04018789011249852 0.1522827459996007 1.0 2016 +258558 Or7g22 olfactory receptor family 7 subfamily G member 22 Novel U 0.04017867740966724 0.15218732112652558 1.0 2017 +330401 Tmcc1 transmembrane and coiled coil domains 1 Novel U 0.04015551047164271 0.15194735874403953 1.0 2018 +13663 Ei24 etoposide induced 2.4 mRNA Novel N 0.04015241351931874 0.15191528061367468 1.0 2019 +55925 Syt8 synaptotagmin VIII Novel U 0.04008464866120515 0.1512133744409838 1.0 2020 +258546 Or6c213 olfactory receptor family 6 subfamily C member 213 Novel U 0.04006942678932292 0.15105570679241972 1.0 2021 +66124 Josd2 Josephin domain containing 2 Novel N 0.04002047594466398 0.15054867555261475 1.0 2022 +57295 Icmt isoprenylcysteine carboxyl methyltransferase Novel U 0.03999552050179249 0.15029018789571785 1.0 2023 +16798 Lats1 large tumor suppressor Novel U 0.0399751319702584 0.1500790041563246 1.0 2024 +227648 Sec16a SEC16 homolog A, endoplasmic reticulum export factor Novel U 0.039974837316733666 0.15007595214480163 1.0 2025 +54698 Crtam cytotoxic and regulatory T cell molecule Novel U 0.039969130061897534 0.15001683658682488 1.0 2026 +18053 Ngfr nerve growth factor receptor (TNFR superfamily, member 16) Novel U 0.03995967707307605 0.14991892283936223 1.0 2027 +109552 Sri sorcin Novel U 0.03992162029013048 0.14952473193266133 1.0 2028 +269523 Vcp valosin containing protein Novel U 0.03987811775679469 0.14907413412243792 1.0 2029 +73205 C9orf72 C9orf72, member of C9orf72-SMCR8 complex Novel U 0.03984077159493872 0.14868730380562273 1.0 2030 +14190 Fgl2 fibrinogen-like protein 2 Novel U 0.039836950830896015 0.14864772845726923 1.0 2031 +258749 Or52i2 olfactory receptor family 52 subfamily J member 2 Novel U 0.03972323008674185 0.14746981272768842 1.0 2032 +257898 Or7d11 olfactory receptor family 7 subfamily D member 11 Novel U 0.03972188027672406 0.1474558314398968 1.0 2033 +101869 Unc45a unc-45 myosin chaperone A Novel N 0.03964115574869931 0.14661968943229228 1.0 2034 +50905 Il17rb interleukin 17 receptor B Novel N 0.039625633252778285 0.1464589079298169 1.0 2035 +14128 Fcer2a Fc receptor, IgE, low affinity II, alpha polypeptide Novel U 0.03962235806260401 0.14642498361765782 1.0 2036 +100102 Pcsk9 proprotein convertase subtilisin/kexin type 9 Novel U 0.03959857953163586 0.14617868637556683 1.0 2037 +14163 Fgd1 FYVE, RhoGEF and PH domain containing 1 Novel U 0.03959679989316008 0.1461602529387372 1.0 2038 +14827 Pdia3 protein disulfide isomerase associated 3 Novel U 0.03958171713553023 0.1460040262310261 1.0 2039 +258807 Or8b46 olfactory receptor family 8 subfamily B member 46 Novel U 0.03957161803461216 0.14589942007570683 1.0 2040 +55950 Bri3 brain protein I3 Novel U 0.039450248507525244 0.14464227850394876 1.0 2041 +217449 Trappc12 trafficking protein particle complex 12 Novel U 0.0394502256427543 0.14464204167140296 1.0 2042 +70790 Ubr5 ubiquitin protein ligase E3 component n-recognin 5 Novel U 0.039431846469557705 0.14445167079961538 1.0 2043 +77733 Rnf170 ring finger protein 170 Novel U 0.039422921955104225 0.14435923097228384 1.0 2044 +12484 Cd24a CD24a antigen Novel U 0.039410528100530494 0.14423085583403517 1.0 2045 +258668 Or9r3 olfactory receptor family 9 subfamily R member 3 Novel U 0.03935545972883233 0.14366045945026076 1.0 2046 +259062 Or52n2b olfactory receptor family 52 subfamily N member 2B Novel U 0.03934961819961684 0.14359995308267665 1.0 2047 +12568 Cdk5 cyclin dependent kinase 5 Novel U 0.03934523914988129 0.14355459502946935 1.0 2048 +100038862 Btnl1 butyrophilin-like 1 Novel U 0.03933116222063447 0.1434087866590849 1.0 2049 +12042 Bcl10 B cell leukemia/lymphoma 10 Novel U 0.039328788740628104 0.14338420223120288 1.0 2050 +259148 Or2t29 olfactory receptor family 2 subfamily T member 29 Novel U 0.03932520787044789 0.14334711169559097 1.0 2051 +16423 Cd47 CD47 antigen (Rh-related antigen, integrin-associated signal transducer) Novel U 0.03932478689908789 0.14334275128808277 1.0 2052 +12047 Bcl2a1d B cell leukemia/lymphoma 2 related protein A1d Novel U 0.039305010896792385 0.143137912106407 1.0 2053 +67245 Peli1 pellino 1 Novel U 0.039250396164425015 0.1425722145039084 1.0 2054 +110351 Rap1gap Rap1 GTPase-activating protein Novel U 0.03917776149485848 0.14181986698427432 1.0 2055 +12753 Clock clock circadian regulator Novel U 0.03916913901072682 0.1417305555770875 1.0 2056 +227624 Rabl6 RAB, member RAS oncogene family-like 6 Novel U 0.039162410832736375 0.1416608653306394 1.0 2057 +232944 Mark4 MAP/microtubule affinity regulating kinase 4 Novel U 0.03915808056987722 0.141616012610294 1.0 2058 +211652 Wwc1 WW, C2 and coiled-coil domain containing 1 Novel U 0.03914048341974359 0.141433741907685 1.0 2059 +22323 Vasp vasodilator-stimulated phosphoprotein Novel U 0.039135951867295855 0.14138680423639813 1.0 2060 +258532 Or2z9 olfactory receptor family 2 subfamily Z member 9 Novel U 0.03913298925108039 0.1413561175550291 1.0 2061 +263406 Plekhg3 pleckstrin homology domain containing, family G (with RhoGef domain) member 3 Novel U 0.03910967533517483 0.14111463278048297 1.0 2062 +258438 Or6d15 olfactory receptor family 6 subfamily D member 15 Novel U 0.03895770851997189 0.13954056550425084 1.0 2063 +252870 Usp7 ubiquitin specific peptidase 7 Novel U 0.03894002834889949 0.1393574348734872 1.0 2064 +12481 Cd2 CD2 antigen Novel U 0.038900291778299546 0.1389458447814824 1.0 2065 +59021 Rab2a RAB2A, member RAS oncogene family Novel U 0.0388886077724944 0.13882482223344367 1.0 2066 +20128 Trim30a tripartite motif-containing 30A Novel U 0.03888264892953864 0.1387631007339943 1.0 2067 +258894 Or4c118 olfactory receptor family 4 subfamily C member 118 Novel U 0.03887778858246519 0.13871275741878283 1.0 2068 +22248 Unc119 unc-119 lipid binding chaperone Novel U 0.038797088844626244 0.13787687218710798 1.0 2069 +258443 Or2m12 olfactory receptor family 2 subfamily M member 12 Novel U 0.03876744093178586 0.13756978008052986 1.0 2070 +18362 Or13a28 olfactory receptor family 13 subfamily A member 28 Novel U 0.03874990586207357 0.1373881524048844 1.0 2071 +268591 Serpina5 serine (or cysteine) peptidase inhibitor, clade A, member 5 Novel N 0.03871813981219476 0.13705912070449228 1.0 2072 +14102 Fas Fas cell surface death receptor Novel U 0.038701882697584365 0.13689073004578164 1.0 2073 +67542 Cog6 component of oligomeric golgi complex 6 Novel U 0.03858810333631876 0.1357122071620875 1.0 2074 +15234 Hgf hepatocyte growth factor Novel U 0.038569479128102456 0.13551929822562087 1.0 2075 +246256 Fcgr4 Fc receptor, IgG, low affinity IV Novel U 0.03854014527789905 0.13521545916951233 1.0 2076 +21337 Tacr2 tachykinin receptor 2 Novel U 0.03846229934656007 0.13440913357175033 1.0 2077 +13139 Dgka diacylglycerol kinase, alpha Novel U 0.038367128793139756 0.13342336010798608 1.0 2078 +258468 Or4a81 olfactory receptor family 4 subfamily A member 81 Novel U 0.03835738516557879 0.13332243593401408 1.0 2079 +66676 Tmed7 transmembrane p24 trafficking protein 7 Novel U 0.03829885717690175 0.13271620495130126 1.0 2080 +11736 Ankfy1 ankyrin repeat and FYVE domain containing 1 Novel U 0.03819502355137671 0.13164069967145944 1.0 2081 +208643 Eif4g1 eukaryotic translation initiation factor 4, gamma 1 Novel U 0.03818821055302065 0.13157013085845262 1.0 2082 +211550 Tifa TRAF-interacting protein with forkhead-associated domain Novel U 0.03817090235674927 0.13139085313044996 1.0 2083 +30960 Vapa vesicle-associated membrane protein, associated protein A Novel U 0.038169888739299135 0.13138035411422233 1.0 2084 +67886 Camsap2 calmodulin regulated spectrin-associated protein family, member 2 Novel U 0.038127305549229454 0.13093927883132753 1.0 2085 +117197 Bloc1s4 biogenesis of lysosomal organelles complex-1, subunit 4, cappuccino Novel U 0.038088015071654165 0.13053230935620755 1.0 2086 +225049 Ttc7 tetratricopeptide repeat domain 7 Novel U 0.038079903906921765 0.13044829417854953 1.0 2087 +24064 Spry2 sprouty RTK signaling antagonist 2 Novel U 0.038072011006006615 0.13036653977033555 1.0 2088 +258964 Or13a26 olfactory receptor family 13 subfamily A member 26 Novel U 0.038045165091260345 0.13008847066790558 1.0 2089 +53978 Lpar2 lysophosphatidic acid receptor 2 Novel U 0.03804163334586916 0.13005188896524353 1.0 2090 +217378 Dnajc27 DnaJ heat shock protein family (Hsp40) member C27 Novel U 0.03800675957594437 0.129690667602776 1.0 2091 +53599 Cd164 CD164 antigen Novel N 0.037963218156219794 0.1292396670086159 1.0 2092 +20431 Pmel premelanosome protein Novel U 0.037959655080497805 0.12920276078741733 1.0 2093 +229323 Gpr171 G protein-coupled receptor 171 Novel U 0.03795124755197313 0.12911567588334133 1.0 2094 +100043665 Gm10662 predicted gene 10662 Novel U 0.037921600977659564 0.12880859764118008 1.0 2095 +16847 Lepr leptin receptor Novel U 0.03791940002814295 0.12878580027843933 1.0 2096 +71601 Ceacam20 CEA cell adhesion molecule 20 Novel U 0.03791604412951021 0.1287510399907206 1.0 2097 +20378 Frzb frizzled-related protein Novel U 0.03789761864777869 0.12856018945665063 1.0 2098 +75723 Amotl1 angiomotin-like 1 Novel U 0.037875950279499096 0.1283357492103198 1.0 2099 +68089 Arpc4 actin related protein 2/3 complex, subunit 4 Novel U 0.0378617713966558 0.1281888848079346 1.0 2100 +24001 Tiam2 T cell lymphoma invasion and metastasis 2 Novel U 0.037818614486500673 0.12774186695125478 1.0 2101 +14450 Gart phosphoribosylglycinamide formyltransferase Novel N 0.037812968027232836 0.12768338111177585 1.0 2102 +12663 Chml choroideremia-like Novel U 0.03781172895992799 0.12767054689336438 1.0 2103 +74732 Stx11 syntaxin 11 Novel U 0.037744012982309234 0.12696914702323217 1.0 2104 +329416 Nostrin nitric oxide synthase trafficker Novel U 0.037734571221136985 0.12687134957139118 1.0 2105 +241075 Plekhm3 pleckstrin homology domain containing, family M, member 3 Novel U 0.03771084535141328 0.126625597792739 1.0 2106 +18753 Prkcd protein kinase C, delta Novel U 0.03769234261809653 0.12643394708928868 1.0 2107 +230777 Hcrtr1 hypocretin (orexin) receptor 1 Novel N 0.03758204717229653 0.1252915104874597 1.0 2108 +258645 Or10j2 olfactory receptor family 10 subfamily J member 2 Novel U 0.03753852933641603 0.12484075417398124 1.0 2109 +50523 Lats2 large tumor suppressor 2 Novel U 0.03753577531280137 0.12481222808791424 1.0 2110 +20907 Stx1a syntaxin 1A (brain) Novel U 0.03751524029611897 0.12459952706017025 1.0 2111 +13163 Daxx Fas death domain-associated protein Novel U 0.037464864287382264 0.12407773401769753 1.0 2112 +258841 Or5aq1b olfactory receptor family 5 subfamily AQ member 1B Novel U 0.037427557586682536 0.12369131243824145 1.0 2113 +259042 Or7a35 olfactory receptor family 7 subfamily A member 35 Novel U 0.03742257354458706 0.12363968789405803 1.0 2114 +259096 Or51f5 olfactory receptor family 51 subfamily F member 5 Novel U 0.03738621767935443 0.1232631150371132 1.0 2115 +55983 Pdzrn3 PDZ domain containing RING finger 3 Novel U 0.03735780299164663 0.12296879663591828 1.0 2116 +228592 F830045P16Rik RIKEN cDNA F830045P16 gene Novel U 0.03732681958999961 0.12264787158018291 1.0 2117 +258569 Or9a2 olfactory receptor family 9 subfamily A member 2 Novel U 0.03732566804792128 0.12263594394519045 1.0 2118 +52822 Rufy3 RUN and FYVE domain containing 3 Novel N 0.03732219218672021 0.12259994108913261 1.0 2119 +20354 Sema4d sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4D Novel U 0.037301051764760985 0.12238096929343285 1.0 2120 +67511 Tmed9 transmembrane p24 trafficking protein 9 Novel U 0.03729940481991328 0.12236391029284069 1.0 2121 +259108 Or51r1 olfactory receptor family 51 subfamily R member 1 Novel U 0.037274834749008105 0.12210941430610249 1.0 2122 +213027 Evi5l ecotropic viral integration site 5 like Novel U 0.03725980913563157 0.1219537794966888 1.0 2123 +226407 Rab3gap1 RAB3 GTPase activating protein subunit 1 Novel U 0.03725806117861033 0.12193567421532374 1.0 2124 +12769 Ccr9 C-C motif chemokine receptor 9 Novel U 0.03722236097021454 0.12156589263034123 1.0 2125 +12984 Csf2rb2 colony stimulating factor 2 receptor, beta 2, low-affinity (granulocyte-macrophage) Novel U 0.03721264878921405 0.12146529417880894 1.0 2126 +73470 Kif2b kinesin family member 2B Novel U 0.03720081426158893 0.12134271253070708 1.0 2127 +17463 Psmd7 proteasome (prosome, macropain) 26S subunit, non-ATPase, 7 Novel U 0.03718553522391429 0.12118445276074445 1.0 2128 +15969 Ifna6 interferon alpha 6 Novel U 0.03713684682927607 0.12068013996962655 1.0 2129 +223870 Senp1 SUMO1/sentrin specific peptidase 1 Novel N 0.03712924598922234 0.12060141071821415 1.0 2130 +13728 Mark2 MAP/microtubule affinity regulating kinase 2 Novel U 0.0371153987891947 0.12045798187552999 1.0 2131 +20115 Rps7 ribosomal protein S7 Novel U 0.03710724068868525 0.12037348053863621 1.0 2132 +217866 Cdc42bpb CDC42 binding protein kinase beta Novel U 0.03709844072882002 0.12028233084363531 1.0 2133 +13840 Epha6 Eph receptor A6 Novel U 0.03709814881330328 0.12027930719230913 1.0 2134 +258568 Or5b104 olfactory receptor family 5 subfamily B member 104 Novel U 0.03707422942734809 0.12003155097889266 1.0 2135 +12539 Cdc37 cell division cycle 37 Novel U 0.037053463697827214 0.11981646023515204 1.0 2136 +98376 Gorab golgin, RAB6-interacting Novel U 0.03701431803769523 0.11941099077434922 1.0 2137 +17311 Kitl kit ligand Novel U 0.037004618717667845 0.11931052553635349 1.0 2138 +258039 Or4k1 olfactory receptor family 4 subfamily K member 1 Novel U 0.03695353057668252 0.11878135625145965 1.0 2139 +20980 Syt2 synaptotagmin II Novel U 0.03693457958728341 0.11858506252624389 1.0 2140 +29815 Bcar3 breast cancer anti-estrogen resistance 3 Novel U 0.036933840442061064 0.1185774064843289 1.0 2141 +231717 Pheta1 PH domain containing endocytic trafficking adaptor 1 Novel U 0.03688561757912391 0.11807791565526708 1.0 2142 +257904 Or14a256 olfactory receptor family 14 subfamily A member 256 Novel U 0.036869398837617896 0.11790992246391019 1.0 2143 +68520 Zfyve21 zinc finger, FYVE domain containing 21 Novel U 0.036853026535636824 0.11774033869820066 1.0 2144 +21934 Tnfrsf11a tumor necrosis factor receptor superfamily, member 11a, NFKB activator Novel U 0.036848739650004236 0.1176959352777421 1.0 2145 +259145 Or4a78 olfactory receptor family 4 subfamily A member 78 Novel U 0.03679795473927959 0.11716990684192019 1.0 2146 +12801 Cnr1 cannabinoid receptor 1 Novel N 0.03678334476563401 0.11701857721517629 1.0 2147 +72938 Ift25 intraflagellar transport 25 Novel U 0.03677598852227112 0.11694238148824693 1.0 2148 +16187 Il3 interleukin 3 Novel U 0.036772565444211446 0.11690692535823247 1.0 2149 +74734 Rhoh ras homolog family member H Novel U 0.03675312158132703 0.11670552646565822 1.0 2150 +258372 Or8b3b olfactory receptor family 8 subfamily B member 3B Novel U 0.03669067953011652 0.11605875375189159 1.0 2151 +74392 Specc1l sperm antigen with calponin homology and coiled-coil domains 1-like Novel U 0.03666301309801404 0.11577218575765912 1.0 2152 +19188 Psme2 proteasome (prosome, macropain) activator subunit 2 (PA28 beta) Novel U 0.03662917086468348 0.11542164901732463 1.0 2153 +276952 Rasl10b RAS-like, family 10, member B Novel U 0.036613101249963566 0.11525520047631588 1.0 2154 +16198 Il9 interleukin 9 Novel N 0.03658973770867102 0.11501320168364274 1.0 2155 +14232 Fkbp8 FK506 binding protein 8 Novel U 0.036574358868814015 0.11485390816595599 1.0 2156 +17387 Mmp14 matrix metallopeptidase 14 (membrane-inserted) Novel U 0.036506602770026174 0.11415209272207327 1.0 2157 +243219 2900026A02Rik RIKEN cDNA 2900026A02 gene Novel U 0.036503806746890376 0.11412313160634698 1.0 2158 +258726 Or52ab4 olfactory receptor family 52 subfamily AB member 4 Novel U 0.03649405657987207 0.11402213969689085 1.0 2159 +26412 Map4k2 mitogen-activated protein kinase kinase kinase kinase 2 Novel U 0.03647748229108076 0.11385046375844086 1.0 2160 +258285 Or10al6 olfactory receptor family 10 subfamily AL member 6 Novel U 0.036450193913463734 0.11356781164014076 1.0 2161 +245000 Atr ataxia telangiectasia and Rad3 related Novel U 0.03640156379288127 0.1130641024497767 1.0 2162 +258852 Or13p3 olfactory receptor family 13 subfamily P member 3 Novel U 0.03637424868523276 0.11278117346268918 1.0 2163 +231872 Aimp2 aminoacyl tRNA synthetase complex-interacting multifunctional protein 2 Novel N 0.03629388931619071 0.11194881375982356 1.0 2164 +17086 Ncr1 natural cytotoxicity triggering receptor 1 Novel U 0.036227400448097385 0.1112601242498167 1.0 2165 +73991 Atl1 atlastin GTPase 1 Novel U 0.036226884507212176 0.11125478015108833 1.0 2166 +14897 Trip12 thyroid hormone receptor interactor 12 Novel U 0.03619948691616145 0.11097099680363218 1.0 2167 +14699 Gngt1 guanine nucleotide binding protein (G protein), gamma transducing activity polypeptide 1 Novel U 0.03616876447376701 0.11065277475525648 1.0 2168 +258717 Or6n1 olfactory receptor family 6 subfamily N member 1 Novel U 0.03616033086212282 0.110565419683086 1.0 2169 +259012 Or5j3 olfactory receptor family 5 subfamily J member 3 Novel U 0.03614724610978109 0.11042988824846839 1.0 2170 +60409 Trappc4 trafficking protein particle complex 4 Novel U 0.036142614955079234 0.11038191890030759 1.0 2171 +102443351 Xntrpc Xndc1-transient receptor potential cation channel, subfamily C, member 2 readthrough Novel U 0.03611299831733061 0.11007515074010181 1.0 2172 +329324 Syt14 synaptotagmin XIV Novel U 0.03608425274891339 0.1097774050873959 1.0 2173 +171166 Mcoln3 mucolipin 3 Novel N 0.03608062381156839 0.10973981667367129 1.0 2174 +381104 Prickle4 prickle planar cell polarity protein 4 Novel U 0.03606340215549682 0.10956143532621342 1.0 2175 +19218 Ptger3 prostaglandin E receptor 3 (subtype EP3) Novel N 0.03606182562660617 0.10954510569178966 1.0 2176 +258502 Or11m3 olfactory receptor family 11 subfamily M member 3 Novel U 0.03605894868354452 0.1095153064101315 1.0 2177 +71302 Arhgap26 Rho GTPase activating protein 26 Novel U 0.03604689954908433 0.10939050187148679 1.0 2178 +226778 Mark1 MAP/microtubule affinity regulating kinase 1 Novel N 0.03600680184011036 0.10897517112007561 1.0 2179 +100986 Akap9 A kinase anchor protein 9 Novel U 0.03596590378611704 0.10855155042126388 1.0 2180 +23854 Def8 differentially expressed in FDCP 8 Novel U 0.03592995097608006 0.10817915239678579 1.0 2181 +107586 Ovol2 ovo like zinc finger 2 Novel U 0.03591796885030809 0.10805504193193088 1.0 2182 +258655 Or12e1 olfactory receptor family 12 subfamily E member 1 Novel U 0.035898096215667405 0.10784920183560033 1.0 2183 +13716 Ell elongation factor RNA polymerase II Novel N 0.03587372353426842 0.10759675040287836 1.0 2184 +20350 Sema3f sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3F Novel N 0.03583109371399362 0.10715519212585187 1.0 2185 +257917 Or2t44 olfactory receptor family 2 subfamily T member 44 Novel U 0.03581595633842635 0.1069983996873405 1.0 2186 +75985 Rab30 RAB30, member RAS oncogene family Novel U 0.03580832774488149 0.10691938296617931 1.0 2187 +13131 Dab1 disabled 1 Novel N 0.0357656660539658 0.1064774945741021 1.0 2188 +328778 Rab26 RAB26, member RAS oncogene family Novel U 0.03576434612625691 0.10646382280628372 1.0 2189 +21832 Thpo thrombopoietin Novel U 0.035714780135282904 0.10595041990116913 1.0 2190 +11858 Rnd2 Rho family GTPase 2 Novel U 0.035713242572376354 0.10593449387512774 1.0 2191 +258729 Or5p6 olfactory receptor family 5 subfamily P member 6 Novel U 0.03569961156862558 0.10579330438637237 1.0 2192 +74198 Dtx2 deltex 2, E3 ubiquitin ligase Novel U 0.03566476296683366 0.10543234371459766 1.0 2193 +259051 Or52n4 olfactory receptor family 52 subfamily N member 4 Novel U 0.03566204669990939 0.10540420871108856 1.0 2194 +55992 Trim3 tripartite motif-containing 3 Novel U 0.035640139704958745 0.10517729677754344 1.0 2195 +12859 Cox5b cytochrome c oxidase subunit 5B Novel U 0.035624332992978194 0.10501357137446655 1.0 2196 +258537 Or6c207 olfactory receptor family 6 subfamily C member 207 Novel U 0.03559740496098814 0.10473465170432496 1.0 2197 +20491 Sla src-like adaptor Novel U 0.03558511335332498 0.10460733563621477 1.0 2198 +258903 Or4c112 olfactory receptor family 4 subfamily C member 112 Novel U 0.03555239661151286 0.10426845670002977 1.0 2199 +14371 Fzd9 frizzled class receptor 9 Novel N 0.03552182575164985 0.10395180473853159 1.0 2200 +257664 Or6c204 olfactory receptor family 6 subfamily C member 204 Novel U 0.035469371678522994 0.10340848717341834 1.0 2201 +232288 Frmd4b FERM domain containing 4B Novel U 0.035457220088604656 0.10328262140450618 1.0 2202 +12777 Ccr10 C-C motif chemokine receptor 10 Novel U 0.0354479576273627 0.103186681135449 1.0 2203 +14673 Gna12 guanine nucleotide binding protein, alpha 12 Novel U 0.035442735936000135 0.10313259502796941 1.0 2204 +99899 Ifi44 interferon-induced protein 44 Novel N 0.03539952988693028 0.10268506819202618 1.0 2205 +435766 Tnni3k TNNI3 interacting kinase Novel N 0.03538993174062907 0.10258565090816034 1.0 2206 +258944 Or1n1 olfactory receptor family 1 subfamily N member 1 Novel U 0.035352009971640105 0.10219285847158362 1.0 2207 +12331 Cap1 cyclase associated actin cytoskeleton regulatory protein 1 Novel U 0.03533259409925277 0.10199174950365798 1.0 2208 +16995 Ltb4r1 leukotriene B4 receptor 1 Novel U 0.03529884176732719 0.10164214395912101 1.0 2209 +329908 Usp24 ubiquitin specific peptidase 24 Novel U 0.035241595207176964 0.10104918597096421 1.0 2210 +258484 Or9s14 olfactory receptor family 9 subfamily S member 14 Novel U 0.03523833906698847 0.10101545897793164 1.0 2211 +67703 Kirrel3 kirre like nephrin family adhesion molecule 3 Novel U 0.035215657542067694 0.10078052448841719 1.0 2212 +404316 Or1a1 olfactory receptor family 1 subfamily A member 1 Novel U 0.03517049332651184 0.10031271502838328 1.0 2213 +258963 Or13a25 olfactory receptor family 13 subfamily A member 25 Novel U 0.03513792588434091 0.09997538253297378 1.0 2214 +12504 Cd4 CD4 antigen Novel U 0.03512985537814665 0.09989178849511716 1.0 2215 +54637 Praf2 PRA1 domain family 2 Novel U 0.03510228945451536 0.09960626156432519 1.0 2216 +72685 Dnajc6 DnaJ heat shock protein family (Hsp40) member C6 Known P 0.0351019193047058 0.09960242756476578 1.0 2217 +21935 Tnfrsf17 tumor necrosis factor receptor superfamily, member 17 Novel N 0.03509741012192587 0.09955572159776266 1.0 2218 +71729 Rgs12 regulator of G-protein signaling 12 Novel N 0.03507342706628833 0.09930730589586956 1.0 2219 +12549 Arhgap31 Rho GTPase activating protein 31 Novel U 0.035066406957365126 0.09923459183841662 1.0 2220 +353047 Plekhm1 pleckstrin homology domain containing, family M (with RUN domain) member 1 Novel U 0.035039108407204644 0.09895183435324584 1.0 2221 +22793 Zyx zyxin Novel U 0.03500450553521676 0.09859341894270345 1.0 2222 +67023 Use1 unconventional SNARE in the ER 1 homolog (S. cerevisiae) Novel U 0.034989703335737574 0.09844009824709414 1.0 2223 +15970 Ifna7 interferon alpha 7 Novel U 0.03498918177030632 0.09843469588950275 1.0 2224 +268470 Ube2z ubiquitin-conjugating enzyme E2Z Novel N 0.03495816047867606 0.09811337837056652 1.0 2225 +17919 Myo5b myosin VB Novel U 0.03494385063959643 0.09796515752779034 1.0 2226 +54324 Arhgef5 Rho guanine nucleotide exchange factor 5 Novel U 0.03488448531123953 0.09735025340819957 1.0 2227 +384783 Irs2 insulin receptor substrate 2 Novel U 0.03485166134394561 0.09701026383399892 1.0 2228 +258973 Or4c122 olfactory receptor family 4 subfamily C member 122 Novel U 0.034844991522195945 0.09694117803957451 1.0 2229 +258926 Or5p55 olfactory receptor family 5 subfamily P member 55 Novel U 0.03484106365206817 0.09690049328991278 1.0 2230 +258745 Or56b35 olfactory receptor family 56 subfamily B member 35 Novel U 0.03483142075233446 0.09680061245146428 1.0 2231 +258784 Or4a72 olfactory receptor family 4 subfamily A member 72 Novel U 0.03478835682088054 0.096354557665115 1.0 2232 +225348 Wdr36 WD repeat domain 36 Novel U 0.03477147717967362 0.09617971889638205 1.0 2233 +258019 Or6d12 olfactory receptor family 6 subfamily D member 12 Novel U 0.03476567236835201 0.09611959285153575 1.0 2234 +286940 Flnb filamin, beta Novel U 0.03474859991744425 0.09594275696625973 1.0 2235 +231659 Gcn1 GCN1 activator of EIF2AK4 Novel U 0.034744277136578364 0.09589798174415465 1.0 2236 +320302 Glt28d2 glycosyltransferase 28 domain containing 2 Novel U 0.034702725504862704 0.09546759130878013 1.0 2237 +664821 Gm7356 predicted gene 7356 Novel U 0.03467190093312736 0.09514831140804864 1.0 2238 +16409 Itgam integrin alpha M Novel U 0.03463149942312495 0.09472983389557174 1.0 2239 +227800 Rabgap1 RAB GTPase activating protein 1 Novel U 0.03462295138529942 0.09464129360077657 1.0 2240 +103841 Cuedc1 CUE domain containing 1 Novel U 0.03457036110617067 0.09409656521837322 1.0 2241 +18101 Nmbr neuromedin B receptor Novel U 0.034522001372730635 0.09359565668914191 1.0 2242 +258624 Or10al4 olfactory receptor family 10 subfamily AL member 4 Novel U 0.03449821264327085 0.09334925381140978 1.0 2243 +258069 Or6c5c olfactory receptor family 6 subfamily C member 5C Novel U 0.034485497711539276 0.09321755296651502 1.0 2244 +17967 Ncam1 neural cell adhesion molecule 1 Novel U 0.034480884182887396 0.09316976618840044 1.0 2245 +17087 Ly96 lymphocyte antigen 96 Novel U 0.03445992890543545 0.09295271211342081 1.0 2246 +21766 Tex261 testis expressed gene 261 Novel U 0.03443022315284602 0.09264502090462352 1.0 2247 +78816 Gmip Gem-interacting protein Novel U 0.03442965981062142 0.09263918582437995 1.0 2248 +57914 Crlf2 cytokine receptor-like factor 2 Novel U 0.03438167340434982 0.09214214420568684 1.0 2249 +14127 Fcer1g Fc receptor, IgE, high affinity I, gamma polypeptide Novel U 0.03436855257191772 0.09200623905467926 1.0 2250 +243764 Chrm2 cholinergic receptor, muscarinic 2, cardiac Novel N 0.034342109769983795 0.09173234538150796 1.0 2251 +67443 Map1lc3b microtubule-associated protein 1 light chain 3 beta Novel U 0.03433831018859536 0.09169298944239104 1.0 2252 +16147 Ihh Indian hedgehog Novel U 0.03432105002127775 0.09151420919671269 1.0 2253 +258824 Or8b57 olfactory receptor family 8 subfamily B member 57 Novel U 0.034314794357013095 0.09144941323190328 1.0 2254 +16635 Klra4 killer cell lectin-like receptor, subfamily A, member 4 Novel U 0.034289541607092765 0.09118784607836793 1.0 2255 +258998 Or5k14 olfactory receptor family 5 subfamily K member 14 Novel U 0.03425721642221842 0.09085302287607265 1.0 2256 +83382 Siglece sialic acid binding Ig-like lectin E Novel U 0.034255847229157046 0.09083884081935274 1.0 2257 +18080 Nin ninein Novel N 0.034254733213286204 0.09082730187958385 1.0 2258 +19250 Ptpn14 protein tyrosine phosphatase, non-receptor type 14 Novel U 0.034249421681634515 0.09077228520934286 1.0 2259 +21814 Tgfbr3 transforming growth factor, beta receptor III Novel U 0.03424138572450925 0.09068904902960723 1.0 2260 +72972 Ccser2 coiled-coil serine rich 2 Novel U 0.03422767945205316 0.0905470799100765 1.0 2261 +19173 Psmb5 proteasome (prosome, macropain) subunit, beta type 5 Novel N 0.03421585310688091 0.09042458301555246 1.0 2262 +12231 Btn1a1 butyrophilin, subfamily 1, member A1 Novel U 0.034198135460044896 0.09024106421206128 1.0 2263 +108159 Ubxn8 UBX domain protein 8 Novel U 0.034193057849975346 0.09018847049387832 1.0 2264 +258545 Or6c215 olfactory receptor family 6 subfamily C member 215 Novel U 0.034191104645827725 0.09016823926952539 1.0 2265 +217369 Uts2r urotensin 2 receptor Novel U 0.034173259991984416 0.08998340493162778 1.0 2266 +12344 Capza3 capping actin protein of muscle Z-line subunit alpha 3 Novel U 0.03417008207954771 0.08995048821907665 1.0 2267 +109333 Pkn2 protein kinase N2 Novel U 0.03415555636623745 0.08980003135811601 1.0 2268 +218397 Rasa1 RAS p21 protein activator 1 Novel U 0.03413600237057073 0.08959749171380317 1.0 2269 +13605 Ect2 ect2 oncogene Novel U 0.03411024814137031 0.08933073025436983 1.0 2270 +22095 Tshr thyroid stimulating hormone receptor Novel U 0.03409625425223135 0.08918578201069287 1.0 2271 +26934 Racgap1 Rac GTPase-activating protein 1 Novel U 0.0340955406654396 0.08917839070216178 1.0 2272 +404308 Or10al2 olfactory receptor family 10 subfamily AL member 2 Novel U 0.03409241238132758 0.08914598803816631 1.0 2273 +109660 Ctrl chymotrypsin-like Novel N 0.034071549655879614 0.0889298926138014 1.0 2274 +258900 Or4c108 olfactory receptor family 4 subfamily C member 108 Novel U 0.03407070818922699 0.08892117672987528 1.0 2275 +216565 Ehbp1 EH domain binding protein 1 Novel U 0.03404018460525834 0.0886050144505367 1.0 2276 +14357 Dtx1 deltex 1, E3 ubiquitin ligase Novel U 0.034001208118903496 0.08820129728615621 1.0 2277 +225644 Cplx4 complexin 4 Novel U 0.03399658228616688 0.08815338306273639 1.0 2278 +71817 Tmem50a transmembrane protein 50A Novel U 0.033934831530418014 0.08751377076463636 1.0 2279 +387510 Ifnk interferon kappa Novel U 0.03386663574431102 0.08680740105395582 1.0 2280 +15163 Hcls1 hematopoietic cell specific Lyn substrate 1 Novel U 0.03384983409849651 0.08663337015893348 1.0 2281 +69097 Trim15 tripartite motif-containing 15 Novel U 0.03384097733263309 0.08654163206927064 1.0 2282 +18007 Neo1 neogenin Novel N 0.03383495945796202 0.08647929912125467 1.0 2283 +57349 Ppbp pro-platelet basic protein Novel U 0.03383103734989302 0.0864386740548083 1.0 2284 +71085 Arhgap19 Rho GTPase activating protein 19 Novel U 0.03382828459296969 0.08641016108908846 1.0 2285 +210998 Fam91a1 family with sequence similarity 91, member A1 Novel U 0.033825433242645635 0.086380626896165 1.0 2286 +13518 Dst dystonin Novel U 0.03381020847512455 0.0862229292546689 1.0 2287 +14362 Fzd1 frizzled class receptor 1 Novel U 0.03378246070171494 0.08593551872985107 1.0 2288 +257958 Or14c44 olfactory receptor family 14 subfamily C member 44 Novel U 0.033774239341429195 0.08585036215027396 1.0 2289 +258489 Or5p62 olfactory receptor family 5 subfamily P member 62 Novel U 0.033733730748541135 0.08543077547678768 1.0 2290 +258629 Or5b123 olfactory receptor family 5 subfamily B member 123 Novel U 0.03373335424079845 0.08542687562196598 1.0 2291 +50932 Mink1 misshapen-like kinase 1 (zebrafish) Novel U 0.03370194858111689 0.08510157683138983 1.0 2292 +226089 Ric1 RAB6A GEF complex partner 1 Novel U 0.033681891999818615 0.08489383142162686 1.0 2293 +106512 Gpsm3 G-protein signalling modulator 3 (AGS3-like, C. elegans) Novel U 0.03366895581210379 0.08475983881453093 1.0 2294 +18216 Ntsr1 neurotensin receptor 1 Novel N 0.03358773975904765 0.08391860560680935 1.0 2295 +433667 Ankrd13c ankyrin repeat domain 13c Novel U 0.033538426686313176 0.0834078224205056 1.0 2296 +100041505 Rbmyf9 RNA binding motif protein Y-linked family member 9 Novel U 0.03353461288460577 0.08336831918779225 1.0 2297 +258591 Or2ag13 olfactory receptor family 2 subfamily AG member 13 Novel U 0.03352744918295164 0.0832941178015528 1.0 2298 +258990 Or2a25 olfactory receptor family 2 subfamily A member 25 Novel U 0.03352217815260394 0.08323952064248713 1.0 2299 +216440 Os9 amplified in osteosarcoma Novel U 0.03350002535018452 0.08301006264326091 1.0 2300 +16189 Il4 interleukin 4 Novel U 0.03349529641193263 0.08296108045630325 1.0 2301 +258405 Or10v1 olfactory receptor family 10 subfamily V member 1 Novel U 0.03347472678616312 0.08274802094877268 1.0 2302 +258105 Or5d14 olfactory receptor family 5 subfamily D member 14 Novel U 0.03346657277094643 0.08266356192720706 1.0 2303 +17451 Mos Moloney sarcoma oncogene Novel U 0.03346360701858186 0.08263284276170865 1.0 2304 +258685 Or5b117 olfactory receptor family 5 subfamily B member 117 Novel U 0.033452577480212575 0.08251859916585617 1.0 2305 +258943 Or1n1b olfactory receptor family 1 subfamily N member 1B Novel U 0.03344806745949074 0.08247188451947837 1.0 2306 +333050 Ksr2 kinase suppressor of ras 2 Novel U 0.03343470075674719 0.08233343265186734 1.0 2307 +69816 Mzb1 marginal zone B and B1 cell-specific protein 1 Novel U 0.03342841179033551 0.08226829174451379 1.0 2308 +18015 Nf1 neurofibromin 1 Novel U 0.033411762440381895 0.08209583832501213 1.0 2309 +13033 Ctsd cathepsin D Novel U 0.03340915107566476 0.082068789895116 1.0 2310 +98910 Usp6nl USP6 N-terminal like Novel U 0.033396889976916394 0.08194178983734236 1.0 2311 +99100 Cep152 centrosomal protein 152 Novel U 0.033372783667615036 0.08169209747805112 1.0 2312 +16407 Itgae integrin alpha E, epithelial-associated Novel U 0.03337238723278467 0.08168799121911027 1.0 2313 +257667 Or6c2b olfactory receptor family 6 subfamily C member 2B Novel U 0.03337051699712731 0.081668619379652 1.0 2314 +240754 Lax1 lymphocyte transmembrane adaptor 1 Novel U 0.03332208044123169 0.08116691512595116 1.0 2315 +105841 Dennd3 DENN domain containing 3 Novel U 0.03330432741416275 0.08098302985517039 1.0 2316 +258959 Or2aj5 olfactory receptor family 2 subfamily AJ member 5 Novel U 0.0333003341362677 0.08094166761400542 1.0 2317 +623279 Dok6 docking protein 6 Novel U 0.033262855083716104 0.08055346081973348 1.0 2318 +22225 Usp5 ubiquitin specific peptidase 5 (isopeptidase T) Novel U 0.03326183450529854 0.08054288970203409 1.0 2319 +233103 Garre1 granule associated Rac and RHOG effector 1 Novel N 0.033246491501088965 0.08038396736880536 1.0 2320 +639510 Ighv6-5 immunoglobulin heavy variable V6-5 Novel U 0.03321013267196479 0.0800073638119693 1.0 2321 +16994 Ltb lymphotoxin B Novel N 0.033177204287099894 0.07966629268400101 1.0 2322 +68112 Entr1 endosome associated trafficking regulator 1 Novel U 0.033173345163195714 0.07962632000546337 1.0 2323 +242248 Bank1 B cell scaffold protein with ankyrin repeats 1 Novel U 0.03314884876012929 0.0793725870677772 1.0 2324 +18350 Or1j21 olfactory receptor family 1 subfamily J member 21 Novel U 0.03313320180124188 0.07921051638198748 1.0 2325 +80903 Fgf16 fibroblast growth factor 16 Novel U 0.0331300471287497 0.07917784038801777 1.0 2326 +69769 Tnfaip8l2 tumor necrosis factor, alpha-induced protein 8-like 2 Novel U 0.03308537829929055 0.07871516212088853 1.0 2327 +258357 Or51t4 olfactory receptor family 51 subfamily T member 4 Novel U 0.033068769441257154 0.0785431281153654 1.0 2328 +17059 Klrb1c killer cell lectin-like receptor subfamily B member 1C Novel U 0.03306259467608239 0.07847917010066968 1.0 2329 +58181 Il20 interleukin 20 Novel U 0.03302678656357411 0.07810827084843722 1.0 2330 +12985 Csf3 colony stimulating factor 3 (granulocyte) Novel U 0.03300755190434058 0.0779090388804016 1.0 2331 +258974 Or4c125 olfactory receptor family 4 subfamily C member 125 Novel U 0.03300167084799549 0.07784812309210849 1.0 2332 +259048 Or52ad1 olfactory receptor family 52 subfamily AD member 1 Novel U 0.03295411487421011 0.07735553987895791 1.0 2333 +85030 Tnfrsf25 tumor necrosis factor receptor superfamily, member 25 Novel N 0.032953511136900766 0.07734928638775455 1.0 2334 +17970 Ncf2 neutrophil cytosolic factor 2 Novel U 0.03295033265016473 0.07731636372662984 1.0 2335 +259147 Or4l1 olfactory receptor family 4 subfamily L member 1 Novel U 0.032943716888423895 0.07724783788399969 1.0 2336 +192897 Itgb4 integrin beta 4 Novel U 0.032941301095642785 0.07722281518178786 1.0 2337 +18582 Pde6d phosphodiesterase 6D, cGMP-specific, rod, delta Novel U 0.032914200466848564 0.0769421077596225 1.0 2338 +12122 Bid BH3 interacting domain death agonist Novel U 0.032891167503860196 0.07670353308615684 1.0 2339 +258930 Or6c65 olfactory receptor family 6 subfamily C member 65 Novel U 0.03286482126575499 0.07643063961794902 1.0 2340 +106326 Osbpl11 oxysterol binding protein-like 11 Novel N 0.032841683384234675 0.07619097820177848 1.0 2341 +26401 Map3k1 mitogen-activated protein kinase kinase kinase 1 Novel U 0.03282721357850331 0.07604110042968222 1.0 2342 +258458 Or2m13 olfactory receptor family 2 subfamily M member 13 Novel U 0.032775109439617006 0.07550140747192918 1.0 2343 +16410 Itgav integrin alpha V Novel U 0.03276303936149259 0.07537638599949888 1.0 2344 +54167 Icos inducible T cell co-stimulator Novel U 0.032753747861939006 0.07528014495256448 1.0 2345 +230979 Tnfrsf14 tumor necrosis factor receptor superfamily, member 14 (herpesvirus entry mediator) Novel U 0.03270745380600439 0.07480063264302886 1.0 2346 +231130 Tnip2 TNFAIP3 interacting protein 2 Novel U 0.03270553236547244 0.07478073042516284 1.0 2347 +57267 Apba3 amyloid beta precursor protein binding family A member 3 Novel N 0.03262211808594541 0.07391672805991856 1.0 2348 +20848 Stat3 signal transducer and activator of transcription 3 Novel U 0.032619602279788606 0.07389066942244907 1.0 2349 +18344 Or13a17 olfactory receptor family 13 subfamily A member 17 Novel U 0.03260941253132203 0.07378512434280222 1.0 2350 +15894 Icam1 intercellular adhesion molecule 1 Novel U 0.03260410196430095 0.07373011766417331 1.0 2351 +76577 Faf2 Fas associated factor family member 2 Novel U 0.032599551490917276 0.07368298401045399 1.0 2352 +74741 C2cd5 C2 calcium-dependent domain containing 5 Novel U 0.03258729990225975 0.07355608245788865 1.0 2353 +258315 Or6c8 olfactory receptor family 6 subfamily C member 8 Novel U 0.03257312435457665 0.07340925260098306 1.0 2354 +276742 Taar7e trace amine-associated receptor 7E Novel U 0.03257300969353867 0.07340806494572098 1.0 2355 +18099 Nlk nemo like kinase Novel U 0.03255474008357714 0.07321882892632048 1.0 2356 +317717 Sec22a SEC22 homolog A, vesicle trafficking protein Novel U 0.03253862742411967 0.07305193452933519 1.0 2357 +68137 Kdelr1 KDEL (Lys-Asp-Glu-Leu) endoplasmic reticulum protein retention receptor 1 Novel N 0.03246210336721253 0.07225930086348385 1.0 2358 +21679 Tead4 TEA domain family member 4 Novel N 0.0324252282108595 0.07187734920618459 1.0 2359 +107358 Tm9sf3 transmembrane 9 superfamily member 3 Novel U 0.0323961433028876 0.0715760886855265 1.0 2360 +258166 Or5ak20 olfactory receptor family 5 subfamily AK member 20 Novel U 0.032391286477517434 0.07152578184800186 1.0 2361 +258027 Or2y1 olfactory receptor family 2 subfamily Y member 1 Novel U 0.032382277952106756 0.07143247183793738 1.0 2362 +227743 Mapkap1 mitogen-activated protein kinase associated protein 1 Novel U 0.032362548043975495 0.07122811009809957 1.0 2363 +20349 Sema3e sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3E Novel U 0.03235667320454393 0.07116725870439239 1.0 2364 +258905 Or7h8 olfactory receptor family 7 subfamily H member 8 Novel U 0.03235393486744036 0.07113889509869159 1.0 2365 +57270 Or4e1 olfactory receptor family 4 subfamily E member 1 Novel U 0.03235326035452979 0.07113190851613728 1.0 2366 +404325 Or8j3b olfactory receptor family 8 subfamily J member 3B Novel U 0.03234713400022375 0.0710684519396284 1.0 2367 +442801 Arhgef15 Rho guanine nucleotide exchange factor 15 Novel U 0.03232364968155378 0.07082520213885023 1.0 2368 +17083 Tmed1 transmembrane p24 trafficking protein 1 Novel N 0.032310290994421245 0.07068683329667459 1.0 2369 +13650 Rhbdf1 rhomboid 5 homolog 1 Novel U 0.032294842953763864 0.07052682299937241 1.0 2370 +101489 Ric8a RIC8 guanine nucleotide exchange factor A Novel U 0.032216265104465465 0.06971291621944721 1.0 2371 +259084 Or51ah3 olfactory receptor family 51 subfamily AH member 3 Novel U 0.03216101532872856 0.06914064085860287 1.0 2372 +15442 Hpse heparanase Novel U 0.03212637824872256 0.0687818711225334 1.0 2373 +404324 Or8k20 olfactory receptor family 8 subfamily K member 20 Novel U 0.03210308597947908 0.0685406105634015 1.0 2374 +20970 Sdc3 syndecan 3 Novel U 0.03208805380194255 0.06838490776263437 1.0 2375 +258716 Or6k4 olfactory receptor family 6 subfamily K member 4 Novel U 0.0320753187804145 0.06825299882828811 1.0 2376 +59009 Sh3rf1 SH3 domain containing ring finger 1 Novel U 0.03206948059466428 0.06819252709220733 1.0 2377 +15898 Icam5 intercellular adhesion molecule 5, telencephalin Novel U 0.03206228554373331 0.0681180009911889 1.0 2378 +194126 Mtmr11 myotubularin related protein 11 Novel U 0.03204757145191411 0.06796559291182529 1.0 2379 +66747 Capza1b capping actin protein of muscle Z-line subunit alpha 1B Novel U 0.03203276676139117 0.06781224641406669 1.0 2380 +11975 Atp6v0a1 ATPase, H+ transporting, lysosomal V0 subunit A1 Novel U 0.03201783098649291 0.06765754214865768 1.0 2381 +22419 Wnt5b wingless-type MMTV integration site family, member 5B Novel N 0.03201649500491384 0.06764370409537968 1.0 2382 +381293 Kif14 kinesin family member 14 Novel U 0.03198292227493374 0.06729595886188983 1.0 2383 +18343 Or8g20 olfactory receptor family 8 subfamily G member 20 Novel U 0.031939533409387426 0.06684653841889322 1.0 2384 +338349 Cntln centlein, centrosomal protein Novel N 0.03191507837125833 0.0665932339378681 1.0 2385 +240505 Cdc42bpg CDC42 binding protein kinase gamma Novel N 0.03191015420579048 0.06654222959382532 1.0 2386 +258241 Or4c107 olfactory receptor family 4 subfamily C member 107 Novel U 0.03188673832213545 0.06629968864068221 1.0 2387 +257938 Or10q3 olfactory receptor family 10 subfamily Q member 3 Novel U 0.03187328220044029 0.06616031057450995 1.0 2388 +53603 Tslp thymic stromal lymphopoietin Novel U 0.031850304425874484 0.06592230754091097 1.0 2389 +235627 Nbeal2 neurobeachin-like 2 Novel N 0.03181860697252603 0.06559398636112532 1.0 2390 +77300 Raph1 Ras association (RalGDS/AF-6) and pleckstrin homology domains 1 Novel U 0.03180038905453786 0.06540528576548561 1.0 2391 +14825 Cxcl1 C-X-C motif chemokine ligand 1 Novel U 0.0317715429062682 0.06510649830997452 1.0 2392 +326623 Tnfsf15 tumor necrosis factor (ligand) superfamily, member 15 Novel U 0.031743960714868714 0.06482080287817435 1.0 2393 +19671 Rce1 Ras converting CAAX endopeptidase 1 Novel N 0.03174214825476167 0.06480202947596697 1.0 2394 +18414 Osmr oncostatin M receptor Novel U 0.031740023002097786 0.06478001617873841 1.0 2395 +231630 Ficd FIC domain containing Novel U 0.0317170093773966 0.06454164181061564 1.0 2396 +224647 Ilrun inflammation and lipid regulator with UBA-like and NBR1-like domains Novel U 0.03170983881102531 0.06446736931986148 1.0 2397 +232286 Tmf1 TATA element modulatory factor 1 Novel U 0.03170791452369564 0.06444743761495832 1.0 2398 +258919 Or4p18 olfactory receptor family 4 subfamily P member 18 Novel U 0.03168721821855521 0.06423306596666815 1.0 2399 +15980 Ifngr2 interferon gamma receptor 2 Novel U 0.0316763131167658 0.06412011128081936 1.0 2400 +100045792 Ect2l epithelial cell transforming sequence 2 oncogene-like Novel U 0.03166257144278937 0.06397777547350464 1.0 2401 +76895 Bicd2 BICD cargo adaptor 2 Novel U 0.03165017412782437 0.06384936449263698 1.0 2402 +69774 Ms4a6b membrane-spanning 4-domains, subfamily A, member 6B Novel U 0.0316454201105172 0.06380012253764919 1.0 2403 +258972 Or4a2 olfactory receptor family 4 subfamily A member 2 Novel U 0.031644742905242634 0.06379310806767717 1.0 2404 +404473 Or8k35 olfactory receptor family 8 subfamily K member 35 Novel U 0.03161878258147984 0.06352421188754181 1.0 2405 +66066 Gng11 guanine nucleotide binding protein (G protein), gamma 11 Novel N 0.031591579074847595 0.0632424388601121 1.0 2406 +258833 Or8w1 olfactory receptor family 8 subfamily U member 1 Novel U 0.031586976474333284 0.06319476527528721 1.0 2407 +258183 Or8b52 olfactory receptor family 8 subfamily B member 52 Novel U 0.03157047626694816 0.06302385666960718 1.0 2408 +19684 Rdx radixin Novel U 0.03153860338418488 0.06269371839770968 1.0 2409 +21856 Timm44 translocase of inner mitochondrial membrane 44 Novel U 0.03150549211930375 0.06235075300454516 1.0 2410 +75089 Bltp3b bridge-like lipid transfer protein family member 3B Novel U 0.031501952423527706 0.06231408895205811 1.0 2411 +382018 Unc13a unc-13 homolog A Novel U 0.03149250921146611 0.06221627647195298 1.0 2412 +224619 Traf7 TNF receptor-associated factor 7 Novel U 0.031457024899730214 0.061848731137476465 1.0 2413 +16181 Il1rn interleukin 1 receptor antagonist Novel U 0.03144694806733769 0.06174435563881275 1.0 2414 +13447 Doc2b double C2, beta Novel U 0.031436047799521104 0.061631451023095515 1.0 2415 +50933 Uchl3 ubiquitin carboxyl-terminal esterase L3 (ubiquitin thiolesterase) Novel U 0.031412589188737336 0.061388467503757524 1.0 2416 +257884 Or11g2 olfactory receptor family 11 subfamily G member 2 Novel U 0.03139367973687776 0.061192604023010785 1.0 2417 +628664 Gm6902 predicted gene 6902 Novel U 0.031366961273119436 0.060915855053724224 1.0 2418 +110511 Or5w22 olfactory receptor family 5 subfamily W member 22 Novel U 0.03134603053852529 0.060699055192858904 1.0 2419 +56455 Dynll1 dynein light chain LC8-type 1 Novel U 0.03130546087006617 0.06027883590061534 1.0 2420 +258314 Or4k15b olfactory receptor family 4 subfamily K member 15B Novel U 0.03129899740209944 0.06021188751189099 1.0 2421 +192236 Hps1 HPS1, biogenesis of lysosomal organelles complex 3 subunit 1 Novel U 0.03128627049197068 0.060080062595151904 1.0 2422 +14066 F3 coagulation factor III Novel U 0.03128199761721283 0.06003580429887329 1.0 2423 +237898 Usp32 ubiquitin specific peptidase 32 Novel U 0.03123541320360751 0.059553284474129484 1.0 2424 +100038859 Or10h1b olfactory receptor family 10 subfamily H member 1B Novel U 0.031234839597866826 0.05954734308472376 1.0 2425 +235040 Atg4d autophagy related 4D, cysteine peptidase Novel U 0.031223673290650174 0.05943168284164625 1.0 2426 +27399 Ip6k1 inositol hexaphosphate kinase 1 Novel U 0.03121790671356183 0.059371952825731204 1.0 2427 +15114 Hap1 huntingtin-associated protein 1 Novel N 0.031202073708602333 0.05920795508084272 1.0 2428 +68612 Ube2c ubiquitin-conjugating enzyme E2C Novel U 0.03118527516695756 0.05903395633870847 1.0 2429 +258364 Or10d5j olfactory receptor family 10 subfamily D member 5J Novel U 0.0311767460687403 0.05894561221975308 1.0 2430 +225745 Haus1 HAUS augmin-like complex, subunit 1 Novel U 0.031166238792267095 0.05883677819545172 1.0 2431 +69632 Arhgef12 Rho guanine nucleotide exchange factor 12 Novel U 0.03114371546894771 0.05860348235292389 1.0 2432 +18429 Oxt oxytocin Novel N 0.03114005961816458 0.05856561517069185 1.0 2433 +68708 Rabl2 RAB, member RAS oncogene family-like 2 Novel U 0.03112922096504452 0.05845334875797579 1.0 2434 +258573 Or5ap2 olfactory receptor family 5 subfamily AP member 2 Novel U 0.03109046598011705 0.05805192589809856 1.0 2435 +258016 Or2f1 olfactory receptor family 2 subfamily F member 1 Novel U 0.031081319939865744 0.057957191513835396 1.0 2436 +15901 Id1 inhibitor of DNA binding 1, HLH protein Novel U 0.03107380810591386 0.057879384184700004 1.0 2437 +13821 Epb41l1 erythrocyte membrane protein band 4.1 like 1 Novel U 0.031057096822537378 0.05770628926084026 1.0 2438 +258898 Or4c11c olfactory receptor family 4 subfamily C member 11C Novel U 0.031027158299687004 0.057396187025331995 1.0 2439 +258417 Or5p51 olfactory receptor family 5 subfamily P member 51 Novel U 0.03102502176468792 0.0573740568660463 1.0 2440 +258293 Or2a52 olfactory receptor family 2 subfamily A member 52 Novel U 0.031020867302984347 0.05733102508829124 1.0 2441 +329739 Eeig2 EEIG family member 2 Novel U 0.03101298611665933 0.05724939201941678 1.0 2442 +16634 Klra3 killer cell lectin-like receptor, subfamily A, member 3 Novel U 0.030968352581543505 0.056787079329935465 1.0 2443 +19058 Ppp3r1 protein phosphatase 3, regulatory subunit B, alpha isoform (calcineurin B, type I) Novel N 0.03095959726362128 0.05669639203471262 1.0 2444 +240028 Lnpep leucyl/cystinyl aminopeptidase Novel U 0.030931162176538737 0.05640186233746477 1.0 2445 +258557 Or7g21 olfactory receptor family 7 subfamily G member 21 Novel U 0.030905827949778947 0.056139451249504695 1.0 2446 +259014 Or8k3 olfactory receptor family 8 subfamily K member 3 Novel U 0.030895824173113148 0.056035832459656786 1.0 2447 +80297 Sptbn4 spectrin beta, non-erythrocytic 4 Novel N 0.030891668983277117 0.055992793139929685 1.0 2448 +258323 Or8g26 olfactory receptor family 8 subfamily G member 26 Novel U 0.030888709315267417 0.05596213699597905 1.0 2449 +257950 Or5al5 olfactory receptor family 5 subfamily AL member 5 Novel U 0.03087241239720313 0.05579333405440149 1.0 2450 +21944 Tnfsf12 tumor necrosis factor (ligand) superfamily, member 12 Novel U 0.03086026951223272 0.055667558451053825 1.0 2451 +258654 Or5w12 olfactory receptor family 5 subfamily W member 12 Novel U 0.03084168063840726 0.05547501550704602 1.0 2452 +18036 Nfkbib nuclear factor of kappa light polypeptide gene enhancer in B cells inhibitor, beta Novel N 0.03083602967205245 0.05541648298330839 1.0 2453 +16192 Il5ra interleukin 5 receptor, alpha Novel U 0.030825949100387662 0.05531206875338546 1.0 2454 +68118 Atg101 autophagy related 101 Novel U 0.030819581475408475 0.05524611310317543 1.0 2455 +258504 Or1o1 olfactory receptor family 1 subfamily O member 1 Novel U 0.030802394132490286 0.055068087170232295 1.0 2456 +23821 Bace1 beta-site APP cleaving enzyme 1 Novel N 0.03079576089261335 0.054999380289643 1.0 2457 +72772 Rint1 RAD50 interactor 1 Novel U 0.03078440497499155 0.05488175606822208 1.0 2458 +170780 Cd209e CD209e antigen Novel U 0.030769631991666376 0.054728737992575584 1.0 2459 +67726 Fam114a2 family with sequence similarity 114, member A2 Novel U 0.030724621720486577 0.05426252308332817 1.0 2460 +71795 Pitpnc1 phosphatidylinositol transfer protein, cytoplasmic 1 Novel N 0.030690165259999087 0.05390562419829385 1.0 2461 +11855 Arhgap5 Rho GTPase activating protein 5 Novel U 0.030663099823334396 0.05362528129504928 1.0 2462 +16322 Inha inhibin alpha Novel U 0.030640402306566644 0.05339018116250957 1.0 2463 +26893 Cops6 COP9 signalosome subunit 6 Novel N 0.03063327434288799 0.05331634994904526 1.0 2464 +56838 Ccl28 C-C motif chemokine ligand 28 Novel U 0.030620171152268845 0.05318062753135633 1.0 2465 +13405 Dmd dystrophin, muscular dystrophy Novel U 0.030613206803484186 0.05310849103558546 1.0 2466 +67657 Rabl3 RAB, member RAS oncogene family-like 3 Novel U 0.030609272261344675 0.053067737177445506 1.0 2467 +11796 Birc3 baculoviral IAP repeat-containing 3 Novel U 0.030609116170492827 0.05306612039353328 1.0 2468 +12631 Cfl1 cofilin 1, non-muscle Novel U 0.030581452669489598 0.05277958275953043 1.0 2469 +258503 Or1o3 olfactory receptor family 1 subfamily O member 3 Novel U 0.030573122356699678 0.052693297653496715 1.0 2470 +19186 Psme1 proteasome (prosome, macropain) activator subunit 1 (PA28 alpha) Novel U 0.03050602365986302 0.051998291557413416 1.0 2471 +259045 Or52n5 olfactory receptor family 52 subfamily N member 5 Novel U 0.030487694441846236 0.05180843811973616 1.0 2472 +26888 Clec4a2 C-type lectin domain family 4, member a2 Novel U 0.03046555757753245 0.05157914520688416 1.0 2473 +258224 Or10b1 olfactory receptor family 10 subfamily B member 1 Novel U 0.030451391938306115 0.051432417981448084 1.0 2474 +258830 Or12d13 olfactory receptor family 12 subfamily D member 13 Novel U 0.03044732289605862 0.05139027097561108 1.0 2475 +258954 Or6ae1 olfactory receptor family 6 subfamily AE member 1 Novel U 0.030442635964188364 0.05134172388937356 1.0 2476 +109299 Tmem250 transmembrane protein 250 Novel N 0.030441075740399438 0.05132556314265746 1.0 2477 +214230 Pak6 p21 (RAC1) activated kinase 6 Novel U 0.03039602364222942 0.05085891499082035 1.0 2478 +19106 Eif2ak2 eukaryotic translation initiation factor 2-alpha kinase 2 Novel U 0.030375325933352043 0.050644528802669 1.0 2479 +259025 Or1e26 olfactory receptor family 1 subfamily E member 26 Novel U 0.03034767874363841 0.050358160120467586 1.0 2480 +170732 Trhr2 thyrotropin releasing hormone receptor 2 Novel U 0.030327455502336332 0.0501486884518639 1.0 2481 +12478 Cd19 CD19 antigen Novel U 0.030311228565328367 0.0499806103717672 1.0 2482 +320191 Hook3 hook microtubule tethering protein 3 Novel U 0.03028801841788667 0.04974020042755859 1.0 2483 +225608 Sh3tc2 SH3 domain and tetratricopeptide repeats 2 Novel U 0.03027406281711341 0.04959564877351482 1.0 2484 +245596 Hdx highly divergent homeobox Novel U 0.030250090283408266 0.04934734205745153 1.0 2485 +237313 Il20ra interleukin 20 receptor, alpha Novel U 0.03020299365460604 0.04885951672453633 1.0 2486 +65098 Zfand6 zinc finger, AN1-type domain 6 Novel U 0.030196298898596183 0.04879017266186448 1.0 2487 +258369 Or10ab5 olfactory receptor family 10 subfamily AB member 5 Novel U 0.03019401555751065 0.04876652188996132 1.0 2488 +436062 Cibar2 CBY1 interacting BAR domain containing 2 Novel U 0.03015958836865749 0.04840992619955316 1.0 2489 +100038725 Cep85l centrosomal protein 85-like Novel N 0.030147844102576527 0.04828827947755848 1.0 2490 +258547 Or6c3b olfactory receptor family 6 subfamily C member 3B Novel U 0.030146821374807058 0.048277686096942676 1.0 2491 +71566 Clmp CXADR-like membrane protein Novel U 0.030117600785038535 0.04797502018869546 1.0 2492 +30940 Usp25 ubiquitin specific peptidase 25 Novel U 0.03004462368062092 0.04721912574013085 1.0 2493 +76303 Osbp oxysterol binding protein Novel U 0.03003759433226585 0.04714631598094642 1.0 2494 +83672 Sytl3 synaptotagmin-like 3 Novel U 0.030009779897835643 0.046858214983468593 1.0 2495 +238252 Gpr135 G protein-coupled receptor 135 Novel U 0.029988086303153673 0.04663351344289125 1.0 2496 +239739 Lamp3 lysosomal-associated membrane protein 3 Novel U 0.029958161592944826 0.046323554278269855 1.0 2497 +78177 Ninl ninein-like Novel U 0.029949800194701063 0.04623694719012712 1.0 2498 +94185 Tnfrsf21 tumor necrosis factor receptor superfamily, member 21 Novel U 0.029927759294042774 0.046008648265664136 1.0 2499 +52635 Esyt2 extended synaptotagmin-like protein 2 Novel U 0.02992474634562326 0.04597744024498016 1.0 2500 +69396 1700018F24Rik RIKEN cDNA 1700018F24 gene Novel U 0.029905755690327912 0.045780735661715095 1.0 2501 +20355 Sema4f sema domain, immunoglobulin domain (Ig), TM domain, and short cytoplasmic domain Novel N 0.029890275524745435 0.045620392615494824 1.0 2502 +15587 Hyal2 hyaluronoglucosaminidase 2 Novel U 0.02987533643628823 0.04546565402835116 1.0 2503 +258520 Or7g30 olfactory receptor family 7 subfamily G member 30 Novel U 0.029861800816451314 0.04532545252303991 1.0 2504 +23960 Oas1g 2'-5' oligoadenylate synthetase 1G Novel U 0.029822399159069878 0.044917331451142704 1.0 2505 +209456 Trp53bp2 transformation related protein 53 binding protein 2 Novel N 0.029793544822950612 0.04461845918615454 1.0 2506 +258605 Or8g53 olfactory receptor family 8 subfamily G member 53 Novel U 0.029772919823367973 0.044404826118487895 1.0 2507 +16822 Lcp2 lymphocyte cytosolic protein 2 Novel U 0.029770613025432834 0.04438093238130762 1.0 2508 +245049 Myrip myosin VIIA and Rab interacting protein Novel U 0.029763521753816333 0.0443074812230169 1.0 2509 +258430 Or8g24 olfactory receptor family 8 subfamily G member 24 Novel U 0.02974921677040455 0.04415931067508865 1.0 2510 +66840 Wdr45b WD repeat domain 45B Novel U 0.02968008655826461 0.04344326221027642 1.0 2511 +100317 AU040320 expressed sequence AU040320 Novel U 0.02967767100715208 0.04341824201125981 1.0 2512 +258788 Or4a73 olfactory receptor family 4 subfamily A member 73 Novel U 0.0296669491134474 0.04330718498872998 1.0 2513 +258590 Or13n4 olfactory receptor family 13 subfamily N member 4 Novel U 0.029663977335964042 0.0432764034152493 1.0 2514 +22241 Ulk1 unc-51 like kinase 1 Novel U 0.029633729597817345 0.04296309833786663 1.0 2515 +258875 Or8c17 olfactory receptor family 8 subfamily C member 17 Novel U 0.029628570784282743 0.04290966351686207 1.0 2516 +239393 Lrp12 low density lipoprotein-related protein 12 Novel U 0.029596469525018085 0.04257715972867079 1.0 2517 +19109 Prl prolactin Novel U 0.029575076437609725 0.042355570832554854 1.0 2518 +258663 Or11g24 olfactory receptor family 11 subfamily G member 24 Novel U 0.02956744963691178 0.042276572681643095 1.0 2519 +14103 Fasl Fas ligand Novel U 0.029487028789713255 0.04144357619005369 1.0 2520 +22202 Uba1y ubiquitin-activating enzyme, Chr Y Novel U 0.029476691487718892 0.04133650275581657 1.0 2521 +258348 Or5w1b olfactory receptor family 5 subfamily W member 1B Novel U 0.02946978778597392 0.0412649944400891 1.0 2522 +258927 Or5p4 olfactory receptor family 5 subfamily P member 4 Novel U 0.029394679111554287 0.0404870212595152 1.0 2523 +245240 9930111J21Rik2 RIKEN cDNA 9930111J21 gene 2 Novel U 0.029392582506619983 0.040465304694527846 1.0 2524 +94226 S1pr5 sphingosine-1-phosphate receptor 5 Novel U 0.029363498626460996 0.040164054819922114 1.0 2525 +57265 Fzd2 frizzled class receptor 2 Novel U 0.0293612034531839 0.0401402814905677 1.0 2526 +22378 Wbp2 WW domain binding protein 2 Novel U 0.029357816295387116 0.040105197421455435 1.0 2527 +257973 Olfr207 olfactory receptor 207 Novel U 0.0293196558068438 0.03970993233558224 1.0 2528 +320487 Heatr5a HEAT repeat containing 5A Novel U 0.02931696581672981 0.039682069506410185 1.0 2529 +237422 Ric8b RIC8 guanine nucleotide exchange factor B Novel U 0.029279630823147253 0.03929535487020385 1.0 2530 +140580 Elmo1 engulfment and cell motility 1 Novel U 0.029251185212285372 0.03900071616799557 1.0 2531 +12363 Casp4 caspase 4, apoptosis-related cysteine peptidase Novel U 0.029229384140956872 0.03877490138784657 1.0 2532 +12492 Scarb2 scavenger receptor class B, member 2 Novel U 0.029221429413552744 0.03869250658289219 1.0 2533 +67830 Rer1 retention in endoplasmic reticulum sorting receptor 1 Novel N 0.02921789240327481 0.03865587034670631 1.0 2534 +271375 Cd200r2 Cd200 receptor 2 Novel U 0.029208421304282462 0.03855776901468916 1.0 2535 +16913 Psmb8 proteasome (prosome, macropain) subunit, beta type 8 (large multifunctional peptidase 7) Novel U 0.029160023359400027 0.03805646469259361 1.0 2536 +20306 Ccl7 C-C motif chemokine ligand 7 Novel U 0.029158819878758287 0.03804399907966877 1.0 2537 +258584 Or5t16 olfactory receptor family 5 subfamily T member 16 Novel U 0.029144886413913298 0.03789967670884234 1.0 2538 +56486 Gabarap gamma-aminobutyric acid receptor associated protein Novel U 0.029130960599543815 0.03775543358138972 1.0 2539 +258201 Or13a24 olfactory receptor family 13 subfamily A member 24 Novel U 0.02912977093112683 0.037743111035034846 1.0 2540 +66905 Plin3 perilipin 3 Novel U 0.029117878269444522 0.037619927236279674 1.0 2541 +230249 Ecpas Ecm29 proteasome adaptor and scaffold Novel U 0.02910884611202326 0.03752637244662641 1.0 2542 +232906 Arhgap35 Rho GTPase activating protein 35 Novel U 0.029056628148716183 0.03698550049926477 1.0 2543 +17925 Myo9b myosin IXb Novel U 0.02905260357571543 0.03694381410442368 1.0 2544 +170799 Rtkn2 rhotekin 2 Novel U 0.029039843840331557 0.03681164918477123 1.0 2545 +60533 Cd274 CD274 antigen Novel U 0.0290255225789038 0.03666331002968864 1.0 2546 +216805 Flcn folliculin Novel U 0.02900522671043004 0.036453086091228146 1.0 2547 +72392 Tmem175 transmembrane protein 175 Novel U 0.029002571116211913 0.03642557953361474 1.0 2548 +259163 Or7a38 olfactory receptor family 7 subfamily A member 38 Novel U 0.028994115038980715 0.03633799176363256 1.0 2549 +17312 Clec10a C-type lectin domain family 10, member A Novel U 0.02898956809298299 0.03629089464646091 1.0 2550 +259099 Or52e7 olfactory receptor family 52 subfamily E member 7 Novel U 0.028981164721094743 0.036203852796688425 1.0 2551 +258555 Or7e170 olfactory receptor family 7 subfamily E member 170 Novel U 0.028968030837834804 0.03606781246563512 1.0 2552 +22627 Ywhae tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, epsilon polypeptide Novel U 0.028920763939137152 0.035578223482740416 1.0 2553 +258641 Or9m1 olfactory receptor family 9 subfamily M member 1 Novel U 0.028899158997515356 0.03535444020764605 1.0 2554 +382348 Taar8b trace amine-associated receptor 8B Novel U 0.028870849844457487 0.0350612149308859 1.0 2555 +14132 Fcgrt Fc fragment of IgG receptor and transporter Novel U 0.02885295726398599 0.03487588417054904 1.0 2556 +17242 Mdk midkine Novel U 0.028841347044859005 0.03475562590249711 1.0 2557 +26396 Map2k2 mitogen-activated protein kinase kinase 2 Novel U 0.028827555795179573 0.03461277659168046 1.0 2558 +76281 Tax1bp3 Tax1 (human T cell leukemia virus type I) binding protein 3 Novel U 0.028823465689546423 0.034570411411987266 1.0 2559 +12317 Calr calreticulin Novel U 0.02880618643027887 0.03439143341251899 1.0 2560 +319146 Ifnz interferon zeta Novel U 0.028777038213631877 0.034089517142685447 1.0 2561 +170760 Acbd3 acyl-Coenzyme A binding domain containing 3 Novel U 0.028776617640326154 0.03408516085821037 1.0 2562 +14291 Fpr-rs4 formyl peptide receptor, related sequence 4 Novel U 0.02874825192210124 0.033791349681309465 1.0 2563 +258961 Or51m1 olfactory receptor family 51 subfamily M member 1 Novel U 0.028739219441847468 0.033697791547767676 1.0 2564 +259036 Or10a5 olfactory receptor family 10 subfamily A member 5 Novel U 0.02873574263451631 0.03366177889172541 1.0 2565 +258238 Or10x1 olfactory receptor family 10 subfamily X member 1 Novel U 0.028721392105138494 0.03351313658017823 1.0 2566 +58240 Hs1bp3 HCLS1 binding protein 3 Novel N 0.028666438152928735 0.0329439253497034 1.0 2567 +70317 Arl16 ADP-ribosylation factor-like 16 Novel U 0.028625083676365487 0.03251557704091645 1.0 2568 +258441 Or4f6 olfactory receptor family 4 subfamily F member 6 Novel U 0.028624543846762957 0.032509985503639385 1.0 2569 +258672 Or9k2 olfactory receptor family 9 subfamily K member 2 Novel U 0.028622571247546684 0.032489553385802936 1.0 2570 +12633 Cflar CASP8 and FADD-like apoptosis regulator Novel U 0.028610576025148708 0.03236530726652639 1.0 2571 +21817 Tgm2 transglutaminase 2, C polypeptide Novel U 0.02860272507383541 0.03228398737090936 1.0 2572 +50997 Mpp2 membrane protein, palmitoylated 2 (MAGUK p55 subfamily member 2) Novel U 0.028601752543147743 0.03227391393001674 1.0 2573 +244958 Mrap2 melanocortin 2 receptor accessory protein 2 Novel U 0.02860118820295648 0.03226806851286733 1.0 2574 +381201 Ap5b1 adaptor-related protein complex 5, beta 1 subunit Novel U 0.028584200856706283 0.0320921141388367 1.0 2575 +215090 Maneal mannosidase, endo-alpha-like Novel U 0.028582612468264015 0.03207566166356714 1.0 2576 +258360 Or4k6 olfactory receptor family 4 subfamily K member 6 Novel U 0.028546391543838343 0.03170048651906477 1.0 2577 +245886 Ankrd27 ankyrin repeat domain 27 Novel U 0.028530052856661055 0.03153125093438782 1.0 2578 +21813 Tgfbr2 transforming growth factor, beta receptor II Novel U 0.028529575926712143 0.031526310909655214 1.0 2579 +259111 Or8d6 olfactory receptor family 8 subfamily D member 6 Novel U 0.028501796122968125 0.03123856861568652 1.0 2580 +16154 Il10ra interleukin 10 receptor, alpha Novel U 0.028467872909674768 0.03088719308755948 1.0 2581 +18186 Nrp1 neuropilin 1 Novel U 0.02845044466834949 0.030706671936834806 1.0 2582 +257901 Or8h6 olfactory receptor family 8 subfamily H member 6 Novel U 0.028432989089260997 0.030525867622457452 1.0 2583 +258225 Or8b49 olfactory receptor family 8 subfamily B member 49 Novel U 0.02840869979856883 0.03027427994793542 1.0 2584 +235636 Rtp3 receptor transporter protein 3 Novel U 0.028384182489554793 0.030020330467131116 1.0 2585 +11604 Agrp agouti related neuropeptide Novel U 0.028326125593412094 0.029418979045402673 1.0 2586 +59310 Myl10 myosin, light chain 10, regulatory Novel U 0.028269903376560376 0.02883663117145837 1.0 2587 +67299 Dock7 dedicator of cytokinesis 7 Novel U 0.028269792323707 0.028835480889653778 1.0 2588 +13610 S1pr3 sphingosine-1-phosphate receptor 3 Novel N 0.02826602627761558 0.02879647230804093 1.0 2589 +404313 Or8c11 olfactory receptor family 8 subfamily C member 11 Novel U 0.02825395515712268 0.028671440038792188 1.0 2590 +320165 Tacc1 transforming, acidic coiled-coil containing protein 1 Novel U 0.028241502757498198 0.02854245849283238 1.0 2591 +258363 Or5t5 olfactory receptor family 5 subfamily T member 5 Novel U 0.028222768336565382 0.02834840797667118 1.0 2592 +14130 Fcgr2b Fc receptor, IgG, low affinity IIb Novel U 0.02821651554147774 0.028283641730702934 1.0 2593 +14453 Gas2 growth arrest specific 2 Novel U 0.028116281409270655 0.02724541988432153 1.0 2594 +242851 Gnat3 G protein subunit alpha transducin 3 Novel U 0.02810322547562031 0.02711018695276194 1.0 2595 +258838 Or52z12 olfactory receptor family 52 subfamily Z member 12 Novel U 0.028084872517163118 0.026920087612383355 1.0 2596 +20218 Khdrbs1 KH domain containing, RNA binding, signal transduction associated 1 Novel U 0.028078988584534528 0.026859142031640276 1.0 2597 +74409 Hyal6 hyaluronoglucosaminidase 6 Novel U 0.028078949205189475 0.026858734141678754 1.0 2598 +15499 Hsf1 heat shock factor 1 Novel U 0.028057776423063154 0.026639427160432022 1.0 2599 +258946 Or1j19 olfactory receptor family 1 subfamily J member 19 Novel U 0.02802658781813171 0.02631637661582228 1.0 2600 +319742 Mpzl3 myelin protein zero-like 3 Novel U 0.028022872995486746 0.026277898604983953 1.0 2601 +14960 H2-Aa histocompatibility 2, class II antigen A, alpha Novel U 0.02802245513868089 0.026273570457925215 1.0 2602 +14586 Gfra2 glial cell line derived neurotrophic factor family receptor alpha 2 Novel U 0.028017813859958773 0.026225496245495333 1.0 2603 +67591 Ubl4b ubiquitin-like 4B Novel U 0.028003067097135664 0.026072749760947273 1.0 2604 +80901 Cxcr6 C-X-C motif chemokine receptor 6 Novel U 0.02799539101059739 0.025993241108921573 1.0 2605 +14231 Fkbp7 FK506 binding protein 7 Novel U 0.02797847263528593 0.02581800113360709 1.0 2606 +258695 Or5b101 olfactory receptor family 5 subfamily B member 101 Novel U 0.027964460281894612 0.02567286163781113 1.0 2607 +14061 F2 coagulation factor II Novel U 0.027963697842243798 0.025664964312971855 1.0 2608 +329165 Abi2 abl interactor 2 Novel U 0.027917109767325508 0.025182406564468646 1.0 2609 +20613 Snai1 snail family zinc finger 1 Novel N 0.027913344172574787 0.025143402657827944 1.0 2610 +12033 Bcap29 B cell receptor associated protein 29 Novel U 0.027902212280723093 0.025028098887969325 1.0 2611 +258982 Or4b1b olfactory receptor family 4 subfamily B member 1B Novel U 0.02787657648843537 0.02476256419418434 1.0 2612 +258670 Or6c33 olfactory receptor family 6 subfamily C member 33 Novel U 0.027861646776621788 0.024607922730007104 1.0 2613 +76740 Efr3a EFR3 homolog A Novel U 0.02782938393518793 0.024273745279018967 1.0 2614 +243780 Dennd11 DENN domain containing 11 Novel U 0.0278197485149085 0.024173941912512004 1.0 2615 +382423 Atxn7l3b ataxin 7-like 3B Novel U 0.027816673496624436 0.024142090974211456 1.0 2616 +11554 Adrb1 adrenergic receptor, beta 1 Known P 0.027778083642892526 0.02374237853782942 1.0 2617 +22288 Utrn utrophin Novel U 0.027771475909644412 0.023673935854062987 1.0 2618 +258331 Or10ak16 olfactory receptor family 10 subfamily AK member 16 Novel U 0.027752213152734635 0.02347441285122053 1.0 2619 +12500 Cd3d CD3 antigen, delta polypeptide Novel U 0.027708114162510383 0.02301763696015392 1.0 2620 +227753 Gsn gelsolin Novel U 0.02770584673420984 0.022994151012354604 1.0 2621 +209462 Hace1 HECT domain and ankyrin repeat containing, E3 ubiquitin protein ligase 1 Novel U 0.027693889770739503 0.02287030117779283 1.0 2622 +58217 Trem1 triggering receptor expressed on myeloid cells 1 Novel U 0.027641208446502964 0.022324629753155984 1.0 2623 +52855 Lair1 leukocyte-associated Ig-like receptor 1 Novel U 0.027638114604217074 0.022292583836463327 1.0 2624 +74556 Themis3 thymocyte selection associated family member 3 Novel U 0.027602228725604264 0.021920879085476536 1.0 2625 +54170 Rragc Ras-related GTP binding C Novel U 0.027577398542728605 0.021663688867498743 1.0 2626 +20983 Syt4 synaptotagmin IV Novel U 0.027573385336684898 0.021622120211225067 1.0 2627 +71712 Dram1 DNA-damage regulated autophagy modulator 1 Novel N 0.027568340559360267 0.021569866573534657 1.0 2628 +224742 Abcf1 ATP-binding cassette, sub-family F member 1 Novel N 0.027561537439937816 0.021499400086197416 1.0 2629 +258720 Or10a3b olfactory receptor family 10 subfamily A member 3B Novel U 0.027540808534963063 0.021284690769894966 1.0 2630 +666173 Vps13b vacuolar protein sorting 13B Novel U 0.02753955138383925 0.021271669239881132 1.0 2631 +258721 Or10a48 olfactory receptor family 10 subfamily A member 48 Novel U 0.02753856087998208 0.02126140963348962 1.0 2632 +258347 Or10ag2 olfactory receptor family 10 subfamily AG member 2 Novel U 0.027538221682224924 0.021257896234271517 1.0 2633 +257900 Or5m12 olfactory receptor family 5 subfamily M member 12 Novel U 0.02753300202004038 0.02120383114495116 1.0 2634 +102442 Dennd4a DENN domain containing 4A Novel U 0.02751455220751831 0.021012728593352462 1.0 2635 +258362 Or5t9 olfactory receptor family 5 subfamily T member 9 Novel U 0.02750654372596913 0.02092977700473071 1.0 2636 +259073 Or52e19b olfactory receptor family 52 subfamily E member 19B Novel U 0.027502607026022072 0.020889000796091118 1.0 2637 +24068 Sra1 steroid receptor RNA activator 1 Novel N 0.027488247932984208 0.02074026978243467 1.0 2638 +16182 Il18r1 interleukin 18 receptor 1 Novel U 0.027476838114258093 0.020622087255147154 1.0 2639 +231807 Trappc14 trafficking protein particle complex 14 Novel N 0.02744339011653898 0.020275633994316283 1.0 2640 +56447 Copz1 coatomer protein complex, subunit zeta 1 Novel N 0.027439944536930584 0.02023994479399983 1.0 2641 +20620 Plk2 polo like kinase 2 Novel U 0.02743360721971859 0.020174303070646066 1.0 2642 +692132 Trappc3l trafficking protein particle complex 3 like Novel U 0.02741930673007182 0.020026179068988098 1.0 2643 +259047 Or56a5 olfactory receptor family 56 subfamily A member 5 Novel U 0.027397649753886567 0.019801856821595985 1.0 2644 +56708 Clcf1 cardiotrophin-like cytokine factor 1 Novel U 0.02736920899060328 0.019507268330447403 1.0 2645 +70771 Gpr173 G-protein coupled receptor 173 Novel N 0.02735615537920019 0.019372059452648548 1.0 2646 +258767 Or5d46 olfactory receptor family 5 subfamily D member 46 Novel U 0.02733972267576668 0.019201850050680275 1.0 2647 +80987 Nckipsd NCK interacting protein with SH3 domain Novel U 0.02730800744157586 0.01887334469751394 1.0 2648 +258778 Or8b54 olfactory receptor family 8 subfamily B member 54 Novel U 0.02729969201694192 0.018787213802510434 1.0 2649 +26361 Avpr1b arginine vasopressin receptor 1B Novel U 0.027293652621155 0.018724657939483958 1.0 2650 +257947 Or55b3 olfactory receptor family 55 subfamily B member 3 Novel U 0.027290863096417938 0.01869576413395815 1.0 2651 +227157 Mpp4 membrane protein, palmitoylated 4 (MAGUK p55 subfamily member 4) Novel U 0.0272874379779857 0.018660286869831736 1.0 2652 +22209 Ube2a ubiquitin-conjugating enzyme E2A Novel U 0.02728393107606848 0.01862396249505634 1.0 2653 +229898 Gbp5 guanylate binding protein 5 Novel U 0.0272571132332201 0.018346184160421906 1.0 2654 +224630 Bnip1 BCL2/adenovirus E1B interacting protein 1 Novel U 0.027247506279845648 0.01824667565318092 1.0 2655 +50518 a nonagouti Novel N 0.02722584186177988 0.018022276323035075 1.0 2656 +258603 Or8g55 olfactory receptor family 8 subfamily G member 55 Novel U 0.027225482804564022 0.018018557220196577 1.0 2657 +20311 Cxcl5 C-X-C motif chemokine ligand 5 Novel U 0.027204956881143903 0.017805950380164366 1.0 2658 +170779 Cd209d CD209d antigen Novel U 0.027162561762282766 0.017366823132665157 1.0 2659 +21355 Tap2 transporter 2, ATP-binding cassette, sub-family B (MDR/TAP) Novel U 0.027160350092242273 0.017343914727090456 1.0 2660 +100038860 Or10h1 olfactory receptor family 10 subfamily H member 1 Novel U 0.027147135581197024 0.017207039256087416 1.0 2661 +258765 Or5aq1 olfactory receptor family 5 subfamily AQ member 1 Novel U 0.02707415820934865 0.016451142037483806 1.0 2662 +258826 Or8g19 olfactory receptor family 8 subfamily G member 19 Novel U 0.0270520232015253 0.016221868354098733 1.0 2663 +67864 Yipf4 Yip1 domain family, member 4 Novel U 0.02704536112687065 0.016152862803829757 1.0 2664 +71960 Myh14 myosin, heavy polypeptide 14 Novel U 0.02703663702252643 0.016062498817821815 1.0 2665 +404319 Or6s1 olfactory receptor family 6 subfamily S member 1 Novel U 0.027035955897371667 0.016055443745859554 1.0 2666 +353346 Gpr141 G protein-coupled receptor 141 Novel U 0.02703260584402986 0.016020744003472198 1.0 2667 +214137 Arhgap29 Rho GTPase activating protein 29 Novel U 0.02702924777961635 0.01598596128266747 1.0 2668 +258660 Or11j4 olfactory receptor family 11 subfamily J member 4 Novel U 0.027006282551976166 0.015748088209711623 1.0 2669 +258117 Or5an1b olfactory receptor family 5 subfamily AN member 1B Novel U 0.026996854001532507 0.01565042759416311 1.0 2670 +16401 Itga4 integrin alpha 4 Novel U 0.026990784016974245 0.015587554893648619 1.0 2671 +17909 Myo10 myosin X Novel U 0.0269856500031533 0.015534376947262885 1.0 2672 +258287 Or14j1 olfactory receptor family 14 subfamily J member 1 Novel U 0.026967817992535125 0.01534967356747559 1.0 2673 +20352 Sema4b sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4B Novel U 0.026945704242248642 0.015120620068958573 1.0 2674 +11423 Ache acetylcholinesterase Novel U 0.02692516324819369 0.014907857127786174 1.0 2675 +259117 Or51f23b olfactory receptor family 51 subfamily F member 23B Novel U 0.02692178178088719 0.014872832000585203 1.0 2676 +19247 Ptpn11 protein tyrosine phosphatase, non-receptor type 11 Novel U 0.026889206040815974 0.014535413555797303 1.0 2677 +12370 Casp8 caspase 8 Novel U 0.02687795317724891 0.014418856764887604 1.0 2678 +18310 Or2a7 olfactory receptor family 2 subfamily A member 7 Novel U 0.026877126525931466 0.014410294337716224 1.0 2679 +66734 Map1lc3a microtubule-associated protein 1 light chain 3 alpha Novel U 0.02686682701067695 0.014303612297288248 1.0 2680 +258844 Or8k40 olfactory receptor family 8 subfamily K member 40 Novel U 0.026856895472859695 0.01420074175505885 1.0 2681 +12804 Cntfr ciliary neurotrophic factor receptor Novel U 0.026848693451191532 0.014115785484246956 1.0 2682 +67898 Pef1 penta-EF hand domain containing 1 Novel U 0.026817848529017717 0.013796294794342764 1.0 2683 +16420 Itgb6 integrin beta 6 Novel N 0.02679857737427913 0.013596684807065551 1.0 2684 +258680 Or5an1 olfactory receptor family 5 subfamily AN member 1 Novel U 0.026791608614014546 0.013524502617330646 1.0 2685 +668225 Fignl2 fidgetin-like 2 Novel N 0.02676997785926708 0.013300451970729163 1.0 2686 +98845 Eps8l2 EPS8-like 2 Novel U 0.026766732650203722 0.013266838201931388 1.0 2687 +18763 Pkd1 polycystin 1, transient receptor potential channel interacting Novel U 0.026759177650357138 0.01318858376187771 1.0 2688 +27401 Skp2 S-phase kinase-associated protein 2 Novel U 0.026758082505001574 0.013177240282285743 1.0 2689 +229227 Bltp1 bridge-like lipid transfer protein family member 1 Novel U 0.02675440399237202 0.013139138369393415 1.0 2690 +54610 Tbc1d8 TBC1 domain family, member 8 Novel U 0.026720359008069832 0.012786501541159904 1.0 2691 +229603 Otud7b OTU domain containing 7B Novel U 0.02667495668400959 0.012316225761064921 1.0 2692 +22215 Ube3a ubiquitin protein ligase E3A Novel U 0.02664367814923514 0.011992243726097567 1.0 2693 +20430 Cyfip1 cytoplasmic FMR1 interacting protein 1 Novel U 0.026637065049636515 0.01192374545784896 1.0 2694 +69028 Mitd1 MIT, microtubule interacting and transport, domain containing 1 Novel U 0.026633098518818326 0.011882660262026832 1.0 2695 +224648 Bltp3a bridge-like lipid transfer protein family member 3A Novel U 0.02663060556684538 0.011856838347442451 1.0 2696 +257996 Or8b37 olfactory receptor family 8 subfamily B member 37 Novel U 0.026613440137229674 0.011679039391766052 1.0 2697 +170759 Atp13a1 ATPase type 13A1 Novel U 0.026606415368285376 0.011606277065967847 1.0 2698 +21912 Tspan7 tetraspanin 7 Novel N 0.026594362055370514 0.011481429247027018 1.0 2699 +18316 Or7a40 olfactory receptor family 7 subfamily A member 40 Novel U 0.026570057966215057 0.011229688290508683 1.0 2700 +114230 Aipl1 aryl hydrocarbon receptor-interacting protein-like 1 Novel N 0.026551962069650457 0.011042251588763109 1.0 2701 +12476 Cd151 CD151 antigen Novel U 0.026545676553968757 0.010977146423957251 1.0 2702 +279029 Stkld1 serine/threonine kinase-like domain containing 1 Novel U 0.026525983784972715 0.010773169370061147 1.0 2703 +13482 Dpp4 dipeptidylpeptidase 4 Novel U 0.02647146752069872 0.010208491696836726 1.0 2704 +12613 Cel carboxyl ester lipase Novel U 0.02647117743773586 0.010205487027043398 1.0 2705 +259080 Or52z14 olfactory receptor family 52 subfamily Z member 14 Novel U 0.02646771488706437 0.010169622041013323 1.0 2706 +258508 Or1o4 olfactory receptor family 1 subfamily O member 4 Novel U 0.026466192198185034 0.010153850079656862 1.0 2707 +68889 Ubac2 ubiquitin associated domain containing 2 Novel U 0.026465162359030923 0.010143183039552724 1.0 2708 +211978 Zfyve26 zinc finger, FYVE domain containing 26 Novel U 0.026445815695240935 0.009942790932003332 1.0 2709 +21425 Tfeb transcription factor EB Novel U 0.026432794505230887 0.009807917873927815 1.0 2710 +22035 Tnfsf10 tumor necrosis factor (ligand) superfamily, member 10 Novel U 0.02642484940748413 0.009725622812647917 1.0 2711 +65962 Nherf2 NHERF family PDZ scaffold protein 2 Novel N 0.026416951898880055 0.009643820678143514 1.0 2712 +215061 Trim50 tripartite motif-containing 50 Novel U 0.026407473696835403 0.009545645772944112 1.0 2713 +16886 Limk2 LIM domain kinase 2 Novel U 0.02639397250386521 0.00940580085998668 1.0 2714 +16136 Igll1 immunoglobulin lambda-like polypeptide 1 Novel U 0.026378220232904353 0.009242639355202111 1.0 2715 +258816 Or9s18 olfactory receptor family 9 subfamily S member 18 Novel U 0.026358405531686595 0.009037399331361788 1.0 2716 +21335 Tacc3 transforming, acidic coiled-coil containing protein 3 Novel U 0.026350262112436487 0.008953050062469643 1.0 2717 +114874 Ddhd1 DDHD domain containing 1 Novel U 0.026337343768626915 0.008819242281957771 1.0 2718 +619441 Tnfsfm13 tumor necrosis factor (ligand) superfamily, membrane-bound member 13 Novel U 0.02632453750870499 0.008686595462669587 1.0 2719 +67846 Tmem39a transmembrane protein 39a Novel U 0.02632313359959912 0.008672053818302 1.0 2720 +83556 Tex16 testis expressed gene 16 Novel U 0.026314121982731288 0.00857871178702595 1.0 2721 +100047671 Cd200l2 CD200 molecule like 2 Novel U 0.026301936750501263 0.008452497552155281 1.0 2722 +353344 Opn5 opsin 5 Novel U 0.026289809556036447 0.00832688447054875 1.0 2723 +236749 Tesl1 testin LIM domain protein like 1 Novel U 0.026280165910267054 0.008226995904687152 1.0 2724 +73379 Dcbld2 discoidin, CUB and LCCL domain containing 2 Novel U 0.026241272721938002 0.007824141538519513 1.0 2725 +24110 Usp18 ubiquitin specific peptidase 18 Novel U 0.026234169943683543 0.007750571194851078 1.0 2726 +29818 Hspb7 heat shock protein family, member 7 (cardiovascular) Novel U 0.026217425555454952 0.007577133372021441 1.0 2727 +109711 Actn1 actinin, alpha 1 Novel U 0.026190201700050705 0.0072951495726802755 1.0 2728 +257666 Or6c203 olfactory receptor family 6 subfamily C member 203 Novel U 0.026176688423772392 0.007155179501214539 1.0 2729 +237009 Ube2dnl1 ubiquitin-conjugating enzyme E2D N-terminal like 1 Novel U 0.026176137410462486 0.007149472123464112 1.0 2730 +15465 Hrh1 histamine receptor H1 Novel U 0.026172766541998415 0.007114556778724599 1.0 2731 +258595 Or2ag16 olfactory receptor family 2 subfamily AG member 16 Novel U 0.026170914618153795 0.007095374612420747 1.0 2732 +545653 Gm13279 predicted gene 13279 Novel U 0.026162950530632906 0.00701288285568465 1.0 2733 +360013 Myo18a myosin XVIIIA Novel U 0.026141979755707128 0.00679566825838052 1.0 2734 +258868 Or8c16 olfactory receptor family 8 subfamily C member 16 Novel U 0.026136616105962983 0.006740111750651149 1.0 2735 +258094 Or14j8 olfactory receptor family 14 subfamily J member 8 Novel U 0.026123791411286307 0.006607273984779268 1.0 2736 +276891 Timd4 T cell immunoglobulin and mucin domain containing 4 Novel U 0.026121176831948242 0.006580192257945254 1.0 2737 +258442 Or4f61 olfactory receptor family 4 subfamily F member 61 Novel U 0.026091301915074756 0.006270748851054664 1.0 2738 +14468 Gbp2b guanylate binding protein 2b Novel U 0.026078421361027195 0.006137332495655426 1.0 2739 +69721 Nkiras1 NFKB inhibitor interacting Ras-like protein 1 Novel U 0.026047058670330112 0.005812478776407949 1.0 2740 +18536 Pcm1 pericentriolar material 1 Novel U 0.026030762023242445 0.005643678641597301 1.0 2741 +381511 Pdp1 pyruvate dehydrogenase phosphatase catalytic subunit 1 Novel N 0.026024900344551127 0.005582963566404937 1.0 2742 +233071 Arhgap33 Rho GTPase activating protein 33 Novel U 0.026000181774471463 0.005326929430098987 1.0 2743 +258690 Or5b3 olfactory receptor family 5 subfamily B member 3 Novel U 0.025996496190474398 0.005288754272214425 1.0 2744 +64898 Lpin2 lipin 2 Novel U 0.025990608522671488 0.005227770002658537 1.0 2745 +257892 Or2ab1 olfactory receptor family 2 subfamily AB member 1 Novel U 0.025972805826885055 0.005043370264934759 1.0 2746 +218232 Ptpdc1 protein tyrosine phosphatase domain containing 1 Novel U 0.025957408100023935 0.004883881116280274 1.0 2747 +258682 Or5an10 olfactory receptor family 5 subfamily AN member 10 Novel U 0.025956709685500862 0.004876646961609429 1.0 2748 +70894 Efcab3 EF-hand calcium binding domain 3 Novel U 0.025921064989611192 0.00450744037334047 1.0 2749 +12385 Ctnna1 catenin alpha 1 Novel N 0.02590350845783864 0.004325590394380268 1.0 2750 +76816 Sdccag8 serologically defined colon cancer antigen 8 Novel U 0.02587184491290538 0.0039976204368445244 1.0 2751 +16178 Il1r2 interleukin 1 receptor, type II Novel N 0.02584614843367824 0.003731457149736021 1.0 2752 +102595 Plekho2 pleckstrin homology domain containing, family O member 2 Novel U 0.02582829923626467 0.0035465757496870296 1.0 2753 +259144 Or2r2 olfactory receptor family 2 subfamily R member 2 Novel U 0.02578417837447725 0.0030895733136881093 1.0 2754 +26406 Map3k3 mitogen-activated protein kinase kinase kinase 3 Novel U 0.025776578280800176 0.0030108517932206057 1.0 2755 +68196 Hsbp1 heat shock factor binding protein 1 Novel U 0.025770390747553586 0.0029467615272566173 1.0 2756 +629970 Cd300ld2 CD300 molecule like family member D2 Novel U 0.025741879351504123 0.0026514414242379313 1.0 2757 +258474 Or8b41 olfactory receptor family 8 subfamily B member 41 Novel U 0.0257172544212157 0.0023963772058114077 1.0 2758 +217066 Elobl elongin B-like Novel U 0.025705678183571976 0.0022764709168460297 1.0 2759 +215449 Rap1b RAS related protein 1b Novel U 0.025683014115851183 0.002041717248435141 1.0 2760 +19352 Rabggtb Rab geranylgeranyl transferase, b subunit Novel N 0.02568066160187069 0.002017349985959913 1.0 2761 +106522 Pkdcc protein kinase domain containing, cytoplasmic Novel U 0.02566838499446198 0.0018901892899922325 1.0 2762 +259034 Or2ag1 olfactory receptor family 2 subfamily AG member 1 Novel U 0.025666658517361038 0.001872306496935546 1.0 2763 +246709 Rgs13 regulator of G-protein signaling 13 Novel N 0.02566583514416089 0.0018637780243953449 1.0 2764 +24111 Uts2 urotensin 2 Novel U 0.025665483374780487 0.0018601344087169336 1.0 2765 +258950 Or1j14 olfactory receptor family 1 subfamily J member 14 Novel U 0.02565959336729222 0.0017991259047770132 1.0 2766 +258429 Or5g27 olfactory receptor family 5 subfamily G member 27 Novel U 0.02565239446020376 0.0017245598618060665 1.0 2767 +258220 Or12e13 olfactory receptor family 12 subfamily E member 13 Novel U 0.02564941210984652 0.0016936687748452773 1.0 2768 +259165 Or6c70 olfactory receptor family 6 subfamily C member 70 Novel U 0.025642623347972477 0.0016233510025224556 1.0 2769 +11541 Adora2b adenosine A2b receptor Novel U 0.02564254420782332 0.0016225312714590878 1.0 2770 +56422 Hbs1l Hbs1-like (S. cerevisiae) Novel U 0.02564186194230796 0.0016154643876792434 1.0 2771 +22421 Wnt7a wingless-type MMTV integration site family, member 7A Novel U 0.025625583972476607 0.0014468577112755191 1.0 2772 +68350 Mul1 mitochondrial ubiquitin ligase activator of NFKB 1 Novel U 0.02560910228827797 0.0012761409681522082 1.0 2773 +258306 Or10ak13 olfactory receptor family 10 subfamily AK member 13 Novel U 0.025607069023010017 0.0012550804733467563 1.0 2774 +399510 Map4k5 mitogen-activated protein kinase kinase kinase kinase 5 Novel N 0.02560607462138099 0.0012447804939624987 1.0 2775 +259118 Or51a6 olfactory receptor family 51 subfamily A member 6 Novel U 0.025598732965996143 0.0011687358688301597 1.0 2776 +68015 Trap1 TNF receptor-associated protein 1 Novel U 0.025570625031743066 0.0008775948098353411 1.0 2777 +12364 Casp12 caspase 12 Novel U 0.025531627550791587 0.0004736601841130364 1.0 2778 +227377 Farp2 FERM, RhoGEF and pleckstrin domain protein 2 Novel N 0.02551606955210057 0.00031251094511312123 1.0 2779 +26399 Map2k6 mitogen-activated protein kinase kinase 6 Novel U 0.025515133278871564 0.00030281305778540756 1.0 2780 +624681 Btnl6 butyrophilin-like 6 Novel U 0.025499662175167737 0.00014256387420630664 1.0 2781 +15245 Hhip Hedgehog-interacting protein Novel N 0.025496986173900102 0.00011484594104494145 1.0 2782 +625530 Usp17le ubiquitin specific peptidase 17-like E Novel U 0.025493414943134254 7.785525017017164e-05 1.0 2783 +71398 Tasl TLR adaptor interacting with endolysosomal SLC15A4 Novel U 0.025493314346498958 7.681327352871054e-05 1.0 2784 +50930 Tnfsf14 tumor necrosis factor (ligand) superfamily, member 14 Novel U 0.025454200949360187 -0.0003283220082510166 1.0 2785 +19206 Ptch1 patched 1 Novel U 0.025427560955900264 -0.0006042581847663075 1.0 2786 +75368 4930558K02Rik RIKEN cDNA 4930558K02 gene Novel U 0.02542235972184415 -0.000658132396138185 1.0 2787 +13618 Ednrb endothelin receptor type B Novel U 0.025418322909558443 -0.0006999455650904778 1.0 2788 +259020 Or8k23 olfactory receptor family 8 subfamily K member 23 Novel U 0.025403992789220124 -0.0008483764804774618 1.0 2789 +229663 Csde1 cold shock domain containing E1, RNA binding Novel U 0.02538460767276426 -0.0010491668794759173 1.0 2790 +259103 Or51ac3 olfactory receptor family 51 subfamily AC member 3 Novel U 0.02537824391153053 -0.001115082509137525 1.0 2791 +258297 Or9k7 olfactory receptor family 9 subfamily K member 7 Novel U 0.02536105531462936 -0.0012931214307951514 1.0 2792 +258756 Or6p1 olfactory receptor family 6 subfamily P member 1 Novel U 0.025358103370887196 -0.0013236975670365776 1.0 2793 +217517 Stxbp6 syntaxin binding protein 6 (amisyn) Novel U 0.02534955919137785 -0.0014121978975196318 1.0 2794 +54419 Cldn6 claudin 6 Novel U 0.025349230369969198 -0.00141560381886101 1.0 2795 +16411 Itgax integrin alpha X Novel U 0.02534208533289244 -0.0014896118780216346 1.0 2796 +258692 Or5b94 olfactory receptor family 5 subfamily B member 94 Novel U 0.025306865872853506 -0.0018544138873275399 1.0 2797 +258384 Or5bw2 olfactory receptor family 5 subfamily BW member 2 Novel U 0.025283411077267972 -0.0020973578889676397 1.0 2798 +13384 Mpp3 membrane protein, palmitoylated 3 (MAGUK p55 subfamily member 3) Novel U 0.02528232104765428 -0.0021086483798734706 1.0 2799 +20411 Sorbs1 sorbin and SH3 domain containing 1 Novel N 0.02527905012279364 -0.002142528512054109 1.0 2800 +13198 Ddit3 DNA-damage inducible transcript 3 Novel U 0.025276572098588336 -0.0021681958053119976 1.0 2801 +217410 Trib2 tribbles pseudokinase 2 Novel N 0.025273161024444397 -0.0022035275991619 1.0 2802 +106759 Ticam1 TIR domain containing adaptor molecule 1 Novel U 0.025265375623394856 -0.002284168527301771 1.0 2803 +80877 Lrba LPS-responsive beige-like anchor Novel U 0.0252626328448962 -0.0023125781368268845 1.0 2804 +78473 Skap1 src family associated phosphoprotein 1 Novel U 0.0252397311078509 -0.002549793576288045 1.0 2805 +258491 Or5p66 olfactory receptor family 5 subfamily P member 66 Novel U 0.02522373866606828 -0.002715442762549228 1.0 2806 +101055864 Gm4513 predicted gene 4513 Novel U 0.025168230623184074 -0.0032903932460152372 1.0 2807 +56868 Psg23 pregnancy-specific beta-1-glycoprotein 23 Novel U 0.025154449632208815 -0.0034331362975112915 1.0 2808 +234734 Aars1 alanyl-tRNA synthetase 1 Novel U 0.025149395184098484 -0.0034854901048820704 1.0 2809 +258481 Or2j3 olfactory receptor family 2 subfamily J member 3 Novel U 0.025144930562142127 -0.003531734512339478 1.0 2810 +258984 Or4c10b olfactory receptor family 4 subfamily C member 10B Novel U 0.02511809899861047 -0.0038096549653602522 1.0 2811 +16976 Lrpap1 low density lipoprotein receptor-related protein associated protein 1 Novel U 0.025108750037561203 -0.003906491196578026 1.0 2812 +667214 9930111J21Rik1 RIKEN cDNA 9930111J21 gene 1 Novel U 0.025107893575876936 -0.00391536239854901 1.0 2813 +259009 Or1e34 olfactory receptor family 1 subfamily E member 34 Novel U 0.02510063449255117 -0.003990551745007782 1.0 2814 +18412 Sqstm1 sequestosome 1 Novel U 0.025089262534144677 -0.004108342116349242 1.0 2815 +14173 Fgf2 fibroblast growth factor 2 Novel U 0.02504500225177864 -0.00456678866611827 1.0 2816 +13822 Epb41l2 erythrocyte membrane protein band 4.1 like 2 Novel U 0.02504191300767168 -0.004598786955024714 1.0 2817 +270152 Jaml junction adhesion molecule like Novel U 0.025028311567855954 -0.004739670221512776 1.0 2818 +12328 Caml calcium modulating ligand Novel U 0.024969639729550897 -0.0053473911939437915 1.0 2819 +319565 Syne2 spectrin repeat containing, nuclear envelope 2 Novel U 0.024966450181915387 -0.00538042842350168 1.0 2820 +258358 Or51d1 olfactory receptor family 51 subfamily D member 1 Novel U 0.02495851008389965 -0.0054626716977320125 1.0 2821 +12524 Cd86 CD86 antigen Novel U 0.024949521250073853 -0.005555777743007638 1.0 2822 +83671 Sytl2 synaptotagmin-like 2 Novel U 0.02491621857209949 -0.005900725786699538 1.0 2823 +234683 Elmo3 engulfment and cell motility 3 Novel U 0.024915142344204156 -0.005911873319860319 1.0 2824 +258997 Or5ac20 olfactory receptor family 5 subfamily AC member 20 Novel U 0.024906468269200826 -0.006001719103599959 1.0 2825 +11542 Adora3 adenosine A3 receptor Novel U 0.02490513643022866 -0.006015514247891811 1.0 2826 +100861908 Eif1ad19 eukaryotic translation initiation factor 1A domain containing 19 Novel U 0.024897839788390455 -0.006091092624187756 1.0 2827 +22379 Fmnl3 formin-like 3 Novel U 0.024885375195296145 -0.006220200469707198 1.0 2828 +216864 Mgl2 macrophage galactose N-acetyl-galactosamine specific lectin 2 Novel U 0.024884674763359288 -0.006227455520683705 1.0 2829 +70675 Vcpip1 valosin containing protein (p97)/p47 complex interacting protein 1 Novel N 0.024873973294292744 -0.006338300985483131 1.0 2830 +216795 Wnt9a wingless-type MMTV integration site family, member 9A Novel N 0.024866181528630314 -0.006419007838074078 1.0 2831 +22362 Vpreb1a V-set pre-B cell surrogate light chain 1A Novel U 0.0248638505219922 -0.006443152328203958 1.0 2832 +22160 Twist1 twist basic helix-loop-helix transcription factor 1 Novel U 0.024855757027230405 -0.006526984480887323 1.0 2833 +258597 Or2d36 olfactory receptor family 2 subfamily D member 36 Novel U 0.024834852358189746 -0.006743514355606493 1.0 2834 +258335 Or1ab2 olfactory receptor family 1 subfamily AB member 2 Novel U 0.024834714408530505 -0.0067449432336420595 1.0 2835 +67389 C1qtnf12 C1q and tumor necrosis factor related 12 Novel U 0.02483268574980036 -0.006765956014080333 1.0 2836 +207742 Rnf43 ring finger protein 43 Novel U 0.02480634126890325 -0.007038831281184464 1.0 2837 +100756 Usp30 ubiquitin specific peptidase 30 Novel U 0.024804375252108102 -0.007059195218519284 1.0 2838 +258731 Or5p1 olfactory receptor family 5 subfamily P member 1 Novel U 0.024802503398195362 -0.007078583819813559 1.0 2839 +76797 2410137M14Rik RIKEN cDNA 2410137M14 gene Novel U 0.024773635624266974 -0.00737759527318687 1.0 2840 +404311 Olfr209 olfactory receptor 209 Novel U 0.02475838067316889 -0.007535605555181336 1.0 2841 +14294 Fpr3 formyl peptide receptor 3 Novel U 0.024757068729994215 -0.007549194619456802 1.0 2842 +69076 Triap1 TP53 regulated inhibitor of apoptosis 1 Novel U 0.02471176449338217 -0.008018454412987833 1.0 2843 +208869 Dock3 dedicator of cyto-kinesis 3 Novel U 0.024678092908222014 -0.008367223585183 1.0 2844 +67112 Fgf22 fibroblast growth factor 22 Novel U 0.024654422825152858 -0.008612397527501257 1.0 2845 +216459 Myl6b myosin, light polypeptide 6B Novel U 0.0246527657924873 -0.008629561017379076 1.0 2846 +258818 Or52ae9 olfactory receptor family 52 subfamily AE member 9 Novel U 0.024650136888155278 -0.008656791122029602 1.0 2847 +258483 Or9s15 olfactory receptor family 9 subfamily S member 15 Novel U 0.024644806454728406 -0.008712003576236586 1.0 2848 +258275 Or4k5 olfactory receptor family 4 subfamily K member 5 Novel U 0.024641590247696923 -0.008745316942941572 1.0 2849 +257971 Or2y12 olfactory receptor family 2 subfamily Y member 12 Novel U 0.024632232043344117 -0.008842248915993549 1.0 2850 +258278 Or8s5 olfactory receptor family 8 subfamily S member 5 Novel U 0.024612583857427647 -0.009045764179817038 1.0 2851 +27373 Csnk1e casein kinase 1, epsilon Novel U 0.02455643427178055 -0.009627359742131471 1.0 2852 +624845 Vmn2r82 vomeronasal 2, receptor 82 Novel U 0.024544576258064728 -0.009750184658388774 1.0 2853 +223918 Spryd3 SPRY domain containing 3 Novel U 0.024526847194025952 -0.00993382172089083 1.0 2854 +18802 Plcd4 phospholipase C, delta 4 Novel U 0.02452549705007228 -0.00994780646757938 1.0 2855 +50490 Nox4 NADPH oxidase 4 Novel N 0.024486116035915953 -0.010355713717629524 1.0 2856 +22408 Wnt1 wingless-type MMTV integration site family, member 1 Novel U 0.024469825605804883 -0.010524449457200956 1.0 2857 +258462 Or2y1f olfactory receptor family 2 subfamily Y member 1F Novel U 0.02446834808174307 -0.010539753602862209 1.0 2858 +12960 Crybb1 crystallin, beta B1 Novel N 0.024451076317267614 -0.010718653971520336 1.0 2859 +217012 Unc45b unc-45 myosin chaperone B Novel U 0.024448477063899066 -0.010745576952465898 1.0 2860 +236509 Or1af1 olfactory receptor family 1 subfamily AF member 1 Novel U 0.02443773092349965 -0.010856885121462724 1.0 2861 +404339 Or5b121 olfactory receptor family 5 subfamily B member 121 Novel U 0.024436517600619212 -0.010869452679972457 1.0 2862 +19261 Sirpa signal-regulatory protein alpha Novel U 0.024434965928971673 -0.010885524843889204 1.0 2863 +258940 Or1j17 olfactory receptor family 1 subfamily J member 17 Novel U 0.02443268782999188 -0.010909121318233447 1.0 2864 +259069 Or2y1d olfactory receptor family 2 subfamily Y member 1D Novel U 0.0244065325149694 -0.011180037211426642 1.0 2865 +229521 Syt11 synaptotagmin XI Novel U 0.024406333165502968 -0.011182102066646672 1.0 2866 +23796 Aplnr apelin receptor Novel U 0.02439383620287292 -0.01131154519475321 1.0 2867 +22329 Vcam1 vascular cell adhesion molecule 1 Novel U 0.024392164706845892 -0.011328858495653682 1.0 2868 +23897 Hax1 HCLS1 associated X-1 Novel U 0.024389912617786398 -0.011352185560098477 1.0 2869 +15962 Ifna1 interferon alpha 1 Novel U 0.024388333104873313 -0.011368546102928524 1.0 2870 +26936 Mprip myosin phosphatase Rho interacting protein Novel U 0.02438725807246681 -0.011379681253255308 1.0 2871 +12400 Cbfb core binding factor beta Novel U 0.024387176108024166 -0.011380530238257766 1.0 2872 +17075 Epcam epithelial cell adhesion molecule Novel U 0.024374661112142204 -0.011510160154194805 1.0 2873 +15466 Hrh2 histamine receptor H2 Novel N 0.0243724102486204 -0.011533474524560508 1.0 2874 +77579 Myh10 myosin, heavy polypeptide 10, non-muscle Novel U 0.02435997316343982 -0.011662297444013793 1.0 2875 +330723 Htra4 HtrA serine peptidase 4 Novel N 0.024346654808687553 -0.011800248524720456 1.0 2876 +269717 Orai2 ORAI calcium release-activated calcium modulator 2 Novel U 0.024345445067374915 -0.011812778985468661 1.0 2877 +545812 Pilrb2 paired immunoglobin-like type 2 receptor beta 2 Novel U 0.02434322228045983 -0.011835802539264926 1.0 2878 +140571 Plxnb3 plexin B3 Novel U 0.024341019641412772 -0.011858617402106496 1.0 2879 +233186 Siglecf sialic acid binding Ig-like lectin F Novel U 0.024309962635812216 -0.012180304845173002 1.0 2880 +54384 Mtmr7 myotubularin related protein 7 Novel U 0.024297684775227903 -0.012307478521492402 1.0 2881 +243270 Hcar1 hydrocarboxylic acid receptor 1 Novel U 0.02429754795674441 -0.012308895682846769 1.0 2882 +258433 Or8d1b olfactory receptor family 8 subfamily D member 1B Novel U 0.024268734866607647 -0.012607340723304042 1.0 2883 +17775 Laptm4a lysosomal-associated protein transmembrane 4A Novel U 0.024262503902995895 -0.01267188083956268 1.0 2884 +17118 Marcks myristoylated alanine rich protein kinase C substrate Novel U 0.024244320652056065 -0.012860222355055264 1.0 2885 +277939 C2cd3 C2 calcium-dependent domain containing 3 Novel U 0.024240951509415836 -0.01289511982376816 1.0 2886 +258530 Or9e1 olfactory receptor family 9 subfamily E member 1 Novel U 0.024239919911030618 -0.012905805085930281 1.0 2887 +258321 Or6c76 olfactory receptor family 6 subfamily C member 76 Novel U 0.024238133967295062 -0.01292430383243343 1.0 2888 +433292 Nms neuromedin S Novel U 0.024229824387324444 -0.01301037418860637 1.0 2889 +258689 Or5b112 olfactory receptor family 5 subfamily B member 112 Novel U 0.024225597182335756 -0.013054159438917325 1.0 2890 +257883 Or1i2 olfactory receptor family 1 subfamily I member 1 Novel U 0.024222669456168962 -0.013084484730309156 1.0 2891 +258648 Or2a14 olfactory receptor family 2 subfamily A member 14 Novel U 0.024186400925531478 -0.013460152978388512 1.0 2892 +545651 Gm13278 predicted gene 13278 Novel U 0.02415278409671801 -0.013808354986144723 1.0 2893 +100043474 Or10h5 olfactory receptor family 10 subfamily H member 5 Novel U 0.024151451533561897 -0.013822157631510075 1.0 2894 +258374 Or14j6 olfactory receptor family 14 subfamily J member 6 Novel U 0.0241448632921823 -0.013890398419143156 1.0 2895 +215854 Taar5 trace amine-associated receptor 5 Novel N 0.024137231545089687 -0.013969447804648288 1.0 2896 +116891 Derl2 Der1-like domain family, member 2 Novel U 0.024109206686001118 -0.014259728373820082 1.0 2897 +258334 Or2v2 olfactory receptor family 2 subfamily V member 2 Novel U 0.02410028683593935 -0.014352119887535594 1.0 2898 +13423 Dnase2a deoxyribonuclease II alpha Novel U 0.02408424259520468 -0.014518305605639326 1.0 2899 +546896 Or10ac1 olfactory receptor family 10 subfamily AC member 1 Novel U 0.0240685619414777 -0.01468072530146966 1.0 2900 +258994 Or5ac22 olfactory receptor family 5 subfamily AC member 22 Novel U 0.024050464125809794 -0.014868181881224199 1.0 2901 +13052 Cxadr coxsackie virus and adenovirus receptor Novel U 0.02404298561541969 -0.014945644046002106 1.0 2902 +17912 Myo1b myosin IB Novel U 0.02404279387517069 -0.014947630085198138 1.0 2903 +108723 Card11 caspase recruitment domain family, member 11 Novel U 0.024040666038688565 -0.014969670145531126 1.0 2904 +257887 Or4a67 olfactory receptor family 4 subfamily A member 67 Novel U 0.024038498489106004 -0.014992121552852938 1.0 2905 +18550 Furin furin, paired basic amino acid cleaving enzyme Novel U 0.024033982072355818 -0.015038902449082164 1.0 2906 +258313 Or4k15c olfactory receptor family 4 subfamily K member 15C Novel U 0.024007256551809443 -0.015315724512347363 1.0 2907 +258377 Or52u1 olfactory receptor family 52 subfamily U member 1 Novel U 0.024004546845593017 -0.01534379156026031 1.0 2908 +14704 Gng3 guanine nucleotide binding protein (G protein), gamma 3 Novel U 0.024002361342984425 -0.015366428924435576 1.0 2909 +258534 Or2w6 olfactory receptor family 2 subfamily W member 6 Novel U 0.023989064385096993 -0.015504158377119659 1.0 2910 +71481 Alpk1 alpha-kinase 1 Novel U 0.023969896001233417 -0.01570270386705191 1.0 2911 +257891 Or10ab4 olfactory receptor family 10 subfamily AB member 4 Novel U 0.023968194298914614 -0.015720330043729632 1.0 2912 +258853 Or10s1 olfactory receptor family 10 subfamily S member 1 Novel U 0.023965727524108537 -0.01574588081608012 1.0 2913 +218952 Fermt2 fermitin family member 2 Novel U 0.023964064670071214 -0.01576310460353533 1.0 2914 +18453 P4hb prolyl 4-hydroxylase, beta polypeptide Novel U 0.02394147967709724 -0.0159970392183181 1.0 2915 +258631 Or5w8 olfactory receptor family 5 subfamily W member 8 Novel U 0.023940155386250023 -0.01601075617937987 1.0 2916 +21353 Tank TRAF family member-associated Nf-kappa B activator Novel U 0.023931261080646648 -0.016102883104435084 1.0 2917 +258402 Or8k32 olfactory receptor family 8 subfamily K member 32 Novel U 0.023899951731510542 -0.016427184313547467 1.0 2918 +70430 Tbce tubulin-specific chaperone E Novel U 0.023894250157154587 -0.016486241033297298 1.0 2919 +22340 Vegfb vascular endothelial growth factor B Novel U 0.023879820847326646 -0.016635699350157105 1.0 2920 +258319 Or5h19 olfactory receptor family 5 subfamily H member 19 Novel U 0.02385034525521944 -0.016941006564245645 1.0 2921 +170761 Nherf4 NHERF family PDZ scaffold protein 4 Novel N 0.023846231871795756 -0.01698361285452798 1.0 2922 +258666 Or6c69c olfactory receptor family 6 subfamily C member 69C Novel U 0.02382831147997733 -0.0171692316838821 1.0 2923 +11993 Aup1 ancient ubiquitous protein 1 Novel U 0.023803881115143012 -0.01742228059973099 1.0 2924 +14696 Gnb4 guanine nucleotide binding protein (G protein), beta 4 Novel U 0.023766273860807294 -0.017811815303868477 1.0 2925 +209512 Taar2 trace amine-associated receptor 2 Novel U 0.0237557573542036 -0.017920744933558025 1.0 2926 +258801 Or8b44 olfactory receptor family 8 subfamily B member 44 Novel U 0.02374818668476939 -0.0179991616786852 1.0 2927 +75668 Rasl10a RAS-like, family 10, member A Novel N 0.023727060512441632 -0.018217985877170637 1.0 2928 +242939 Cpz carboxypeptidase Z Novel N 0.023713460779907665 -0.018358851459690347 1.0 2929 +258809 Or52h9 olfactory receptor family 52 subfamily H member 9 Novel U 0.02369166314950588 -0.018584630598833526 1.0 2930 +258604 Or8g37 olfactory receptor family 8 subfamily G member 37 Novel U 0.023689503640007444 -0.018606998727228298 1.0 2931 +14702 Gng2 guanine nucleotide binding protein (G protein), gamma 2 Novel U 0.023681598490752586 -0.01868888000334233 1.0 2932 +240873 Tnfsf18 tumor necrosis factor (ligand) superfamily, member 18 Novel U 0.023675168484130468 -0.018755481800559148 1.0 2933 +545646 Gm13290 predicted gene 13290 Novel U 0.023646308375132426 -0.0190544138608359 1.0 2934 +259041 Or6b3 olfactory receptor family 6 subfamily B member 3 Novel U 0.023622059123816097 -0.01930558680881925 1.0 2935 +66943 Slc66a2 solute carrier family 66 member 2 Novel U 0.023601420781610396 -0.019519358078936958 1.0 2936 +245670 Rragb Ras-related GTP binding B Novel N 0.023595875289441265 -0.019576798104526585 1.0 2937 +245526 Pgr15l G protein-coupled receptor 15-like Novel U 0.023590220413907636 -0.019635371119409897 1.0 2938 +277935 Or10a3n olfactory receptor family 10 subfamily A member 3N Novel U 0.02357656355549035 -0.019776828409951114 1.0 2939 +110616 Atxn3 ataxin 3 Novel U 0.02355975486233902 -0.01995093230105659 1.0 2940 +243816 Gp6 glycoprotein 6 platelet Novel U 0.0235500052748054 -0.02005191820822939 1.0 2941 +217310 Hid1 HID1 domain containing Novel N 0.023542063683102403 -0.02013417695402327 1.0 2942 +258280 Or1f12 olfactory receptor family 1 subfamily F member 12 Novel U 0.02353956766231029 -0.020160030655335705 1.0 2943 +13998 Fgd6 FYVE, RhoGEF and PH domain containing 6 Novel U 0.02353788298994702 -0.020177480436293846 1.0 2944 +258609 Or14a259 olfactory receptor family 14 subfamily A member 259 Novel U 0.02348905708767311 -0.020683217526981955 1.0 2945 +258456 Or4a66 olfactory receptor family 4 subfamily A member 66 Novel U 0.023485709674305657 -0.02071788992460174 1.0 2946 +69860 Eif1ad eukaryotic translation initiation factor 1A domain containing Novel U 0.02347826549519911 -0.02079499648707316 1.0 2947 +98732 Rab3gap2 RAB3 GTPase activating protein subunit 2 Novel U 0.023477297678110794 -0.02080502110465865 1.0 2948 +546488 Or6c5b olfactory receptor family 6 subfamily C member 5B Novel U 0.023476555153358506 -0.020812712151633665 1.0 2949 +12425 Cckar cholecystokinin A receptor Novel N 0.023469195538467914 -0.02088894280073611 1.0 2950 +258464 Or2y14 olfactory receptor family 2 subfamily Y member 14 Novel U 0.023464109275588528 -0.02094162614443891 1.0 2951 +210108 D130043K22Rik RIKEN cDNA D130043K22 gene Novel U 0.023444532305306545 -0.021144403759061473 1.0 2952 +66949 Trim59 tripartite motif-containing 59 Novel N 0.02343783020988853 -0.02121382384308175 1.0 2953 +230895 Vps13d vacuolar protein sorting 13D Novel U 0.023434343258792956 -0.02124994156790237 1.0 2954 +56332 Amotl2 angiomotin-like 2 Novel U 0.023428096803147985 -0.02131464215013181 1.0 2955 +17886 Myh9 myosin, heavy polypeptide 9, non-muscle Novel U 0.023425837421139007 -0.02133804475470762 1.0 2956 +238130 Dock4 dedicator of cytokinesis 4 Novel U 0.023360430146112204 -0.022015531159286932 1.0 2957 +246104 Rhbdl3 rhomboid like 3 Novel U 0.023339283252778585 -0.02223456998526989 1.0 2958 +194908 Pld6 phospholipase D family member 6 Novel U 0.02333183989039938 -0.02231166808810635 1.0 2959 +56214 Scamp4 secretory carrier membrane protein 4 Novel U 0.02331916594633846 -0.022442944384055905 1.0 2960 +258361 Or5p70 olfactory receptor family 5 subfamily P member 70 Novel U 0.023309038599249893 -0.022547843112280662 1.0 2961 +54357 Epb41l4b erythrocyte membrane protein band 4.1 like 4b Novel U 0.023307026658363136 -0.022568682729846697 1.0 2962 +258470 Or2h1 olfactory receptor family 2 subfamily H member 1 Novel U 0.023303387223919617 -0.02260637987217271 1.0 2963 +71111 Gpr39 G protein-coupled receptor 39 Novel U 0.023291338325265466 -0.02273118196834621 1.0 2964 +64652 Nisch nischarin Novel U 0.023276592824189632 -0.02288391538375746 1.0 2965 +20614 Snap25 synaptosomal-associated protein 25 Novel U 0.023266591932415665 -0.022987504291990608 1.0 2966 +353283 Eras ES cell-expressed Ras Novel U 0.02326098592347483 -0.023045571148312172 1.0 2967 +59005 Trappc2l trafficking protein particle complex 2L Novel N 0.02323826261047588 -0.023280938477366613 1.0 2968 +18442 P2ry2 purinergic receptor P2Y, G-protein coupled 2 Novel N 0.023236599785811683 -0.023298161960575953 1.0 2969 +258621 Or1j15 olfactory receptor family 1 subfamily J member 15 Novel U 0.023229440682284157 -0.023372315719571223 1.0 2970 +56534 Hspb3 heat shock protein 3 Novel U 0.02322660527364344 -0.023401684789062745 1.0 2971 +12273 C5ar1 complement component 5a receptor 1 Novel U 0.02317095063205084 -0.0239781537371311 1.0 2972 +20709 Serpinb9f serine (or cysteine) peptidase inhibitor, clade B, member 9f Novel U 0.023141595755941515 -0.02428221057888194 1.0 2973 +258895 Or4c111 olfactory receptor family 4 subfamily C member 111 Novel U 0.023107077207065792 -0.02463975257340053 1.0 2974 +67457 Frmd8 FERM domain containing 8 Novel U 0.023065671304168343 -0.025068633554466587 1.0 2975 +56551 Txn2 thioredoxin 2 Novel N 0.023065254332080346 -0.025072952537646836 1.0 2976 +259052 Or52n20 olfactory receptor family 52 subfamily N member 20 Novel U 0.023064490514122578 -0.02508086413894424 1.0 2977 +237886 Slfn9 schlafen 9 Novel U 0.02306083125269534 -0.02511876664851582 1.0 2978 +13490 Drd3 dopamine receptor D3 Novel U 0.023058088061192212 -0.02514718053592767 1.0 2979 +57783 Tnip1 TNFAIP3 interacting protein 1 Novel U 0.023051745913324907 -0.025212872295050332 1.0 2980 +16416 Itgb3 integrin beta 3 Novel U 0.02303846423647351 -0.02535044346726551 1.0 2981 +26422 Nbea neurobeachin Novel N 0.023034135058296195 -0.025395284952512066 1.0 2982 +216157 Tmem259 transmembrane protein 259 Novel U 0.02301538718927581 -0.02558947476352224 1.0 2983 +78308 Gpr108 G protein-coupled receptor 108 Novel U 0.023013784331389373 -0.025606077112818825 1.0 2984 +258020 Or6d13 olfactory receptor family 6 subfamily D member 13 Novel U 0.023002945772307267 -0.025718342551492846 1.0 2985 +17847 Usp34 ubiquitin specific peptidase 34 Novel U 0.02299447696034026 -0.025806062227449928 1.0 2986 +12507 Cd5 CD5 antigen Novel U 0.0229765017040418 -0.025992249341284645 1.0 2987 +320832 Sirpb1a signal-regulatory protein beta 1A Novel U 0.022961561141886872 -0.026147003192940874 1.0 2988 +23833 Cd52 CD52 antigen Novel U 0.022907441291641503 -0.026707574822688183 1.0 2989 +12739 Cldn3 claudin 3 Novel U 0.022906977753246224 -0.026712376138148478 1.0 2990 +14694 Rack1 receptor for activated C kinase 1 Novel U 0.022902040941773793 -0.02676351146909099 1.0 2991 +258455 Or4c106 olfactory receptor family 4 subfamily C member 106 Novel U 0.02289695208936672 -0.026816221635036434 1.0 2992 +258951 Or1j11 olfactory receptor family 1 subfamily E member 1 Novel U 0.022872370603314828 -0.02707083585948912 1.0 2993 +258390 Or4f53 olfactory receptor family 4 subfamily F member 53 Novel U 0.02286365076118806 -0.027161155697588823 1.0 2994 +258336 Or7d10 olfactory receptor family 7 subfamily D member 10 Novel U 0.022863551098647388 -0.02716218799890887 1.0 2995 +258222 Or14c46 olfactory receptor family 14 subfamily C member 46 Novel U 0.02284878502310014 -0.027315134524018687 1.0 2996 +259032 Or5w1 olfactory receptor family 5 subfamily W member 1 Novel U 0.022843476940439738 -0.027370115469721314 1.0 2997 +620736 Gm6176 predicted gene 6176 Novel U 0.022828879747854185 -0.027521312710665623 1.0 2998 +100038882 Isg15 ISG15 ubiquitin-like modifier Novel U 0.02281947504917241 -0.027618726270448618 1.0 2999 +21936 Tnfrsf18 tumor necrosis factor receptor superfamily, member 18 Novel U 0.022807309134348114 -0.027744740416265793 1.0 3000 +27056 Irf5 interferon regulatory factor 5 Novel U 0.022806032737095867 -0.02775796129704526 1.0 3001 +101565 Ccp110 centriolar coiled coil protein 110 Novel U 0.022801993004705954 -0.027799804712340937 1.0 3002 +26754 Cops5 COP9 signalosome subunit 5 Novel U 0.022796183614788662 -0.027859978182130842 1.0 3003 +228602 Dnaaf9 dynein axonemal assembly factor 9 Novel U 0.022773640700694712 -0.028093476945257607 1.0 3004 +72310 Nkg7 natural killer cell group 7 sequence Novel N 0.022761135699071858 -0.02822300334098735 1.0 3005 +233670 Or6b9 olfactory receptor family 6 subfamily B member 9 Novel U 0.022755295749892233 -0.02828349334261191 1.0 3006 +93671 Cd163 CD163 antigen Novel U 0.022751595720781927 -0.028321818122504568 1.0 3007 +16571 Kif4 kinesin family member 4 Novel U 0.022744168292315792 -0.028398751182393236 1.0 3008 +14786 Grb7 growth factor receptor bound protein 7 Novel U 0.02274260849809861 -0.028414907479619347 1.0 3009 +545030 Wdfy4 WD repeat and FYVE domain containing 4 Novel U 0.022741721614344648 -0.028424093792388142 1.0 3010 +100042493 Ccl21b C-C motif chemokine ligand 21B (leucine) Novel U 0.02273321623253182 -0.02851219225760604 1.0 3011 +71704 Arhgef3 Rho guanine nucleotide exchange factor 3 Novel U 0.022722605650502353 -0.028622096317463173 1.0 3012 +20399 Sh2b1 SH2B adaptor protein 1 Novel U 0.022701049310810326 -0.028845376175366703 1.0 3013 +12505 Cd44 CD44 antigen Novel U 0.02269864936801781 -0.028870234703917735 1.0 3014 +192187 Stab1 stabilin 1 Novel U 0.022672786785864346 -0.029138118479676716 1.0 3015 +18386 Oprd1 opioid receptor, delta 1 Novel U 0.022653279378062025 -0.02934017556842168 1.0 3016 +235435 Lctl lactase-like Novel U 0.022644197937006356 -0.029434240836340008 1.0 3017 +258344 Or1e30 olfactory receptor family 1 subfamily E member 30 Novel U 0.022618674439369702 -0.02969861238582069 1.0 3018 +18810 Plec plectin Novel U 0.022614972194224283 -0.02973696011933219 1.0 3019 +258962 Or13a20 olfactory receptor family 13 subfamily A member 20 Novel U 0.022599313828800854 -0.02989914895364704 1.0 3020 +15257 Hipk1 homeodomain interacting protein kinase 1 Novel U 0.022584119420297633 -0.03005653213743413 1.0 3021 +258863 Or6c38 olfactory receptor family 6 subfamily C member 38 Novel U 0.022582280623691643 -0.030075578332231793 1.0 3022 +544748 Or6c8b olfactory receptor family 6 subfamily C member 8B Novel U 0.022581477357600563 -0.030083898535997255 1.0 3023 +52666 Arhgef25 Rho guanine nucleotide exchange factor 25 Novel U 0.022568212710861204 -0.030221293310871766 1.0 3024 +18776 Prl3b1 prolactin family 3, subfamily b, member 1 Novel U 0.022555243814737846 -0.03035562471058802 1.0 3025 +77125 Il33 interleukin 33 Novel U 0.022534078567881817 -0.030574853641752765 1.0 3026 +194401 Mical3 microtubule associated monooxygenase, calponin and LIM domain containing 3 Novel U 0.022531348377397724 -0.030603132865036825 1.0 3027 +259054 Or52e2 olfactory receptor family 52 subfamily E member 2 Novel U 0.02252661007075294 -0.030652212089500048 1.0 3028 +209200 Dtx3l deltex 3-like, E3 ubiquitin ligase Novel U 0.02250244134293355 -0.030902550977749167 1.0 3029 +68969 Eif1b eukaryotic translation initiation factor 1B Novel U 0.022489045261674497 -0.031041307147058002 1.0 3030 +242687 Wasf2 WASP family, member 2 Novel U 0.022475992339940208 -0.031176508881290088 1.0 3031 +333654 Ppp1r13l protein phosphatase 1, regulatory subunit 13 like Novel U 0.022465596200902375 -0.0312841917476893 1.0 3032 +258486 Or4k2 olfactory receptor family 4 subfamily K member 2 Novel U 0.022460755620197517 -0.0313343303235047 1.0 3033 +319924 Apba1 amyloid beta precursor protein binding family A member 1 Novel N 0.022417534392544965 -0.031782014378708534 1.0 3034 +404222 Or6k6 olfactory receptor family 6 subfamily K member 6 Novel U 0.022409652822659266 -0.031863651420491954 1.0 3035 +258931 Or6c214 olfactory receptor family 6 subfamily C member 214 Novel U 0.022409440713159392 -0.031865848443718925 1.0 3036 +70083 Metrn meteorin, glial cell differentiation regulator Novel U 0.022398394793772623 -0.03198026171361205 1.0 3037 +12931 Crlf1 cytokine receptor-like factor 1 Novel U 0.02238580953373443 -0.0321106194233695 1.0 3038 +74018 Als2 alsin Rho guanine nucleotide exchange factor Novel U 0.02236743569792512 -0.032300935010675054 1.0 3039 +258684 Or5b106 olfactory receptor family 5 subfamily B member 106 Novel U 0.022361744861750067 -0.03235988050470008 1.0 3040 +258770 Or5p52 olfactory receptor family 5 subfamily P member 52 Novel U 0.022359177897246348 -0.03238646903864519 1.0 3041 +240888 Gpr161 G protein-coupled receptor 161 Novel U 0.02235762140868854 -0.032402591095960165 1.0 3042 +20351 Sema4a sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4A Novel U 0.02235623859060468 -0.03241691428021508 1.0 3043 +433449 Or4a27 olfactory receptor family 4 subfamily A member 27 Novel U 0.02233041661883293 -0.03268437741497527 1.0 3044 +404315 Or2z8 olfactory receptor family 2 subfamily Z member 8 Novel U 0.022319706005661622 -0.03279531759411125 1.0 3045 +231147 Sh3tc1 SH3 domain and tetratricopeptide repeats 1 Novel U 0.022312096766228796 -0.0328741338460162 1.0 3046 +242202 Pde5a phosphodiesterase 5A, cGMP-specific Novel U 0.02231063634240325 -0.032889260867992355 1.0 3047 +226652 Arhgap30 Rho GTPase activating protein 30 Novel U 0.02229882550603895 -0.03301159712279343 1.0 3048 +383243 Or14j7 olfactory receptor family 14 subfamily J member 7 Novel U 0.022288861328067892 -0.03311480575066296 1.0 3049 +258559 Or7g18 olfactory receptor family 7 subfamily G member 18 Novel U 0.022270558428096963 -0.03330438658688643 1.0 3050 +12168 Bmpr2 bone morphogenetic protein receptor type 2 Novel U 0.022251415340352812 -0.033502670060445244 1.0 3051 +94217 Lrp1b low density lipoprotein-related protein 1B Novel U 0.022246809824704002 -0.03355037384013744 1.0 3052 +258626 Or9i2 olfactory receptor family 9 subfamily I member 2 Novel U 0.022243510946612945 -0.03358454351095984 1.0 3053 +50780 Rgs3 regulator of G-protein signaling 3 Novel U 0.022242175233992644 -0.033598378778371726 1.0 3054 +258594 Or2d4 olfactory receptor family 2 subfamily D member 4 Novel U 0.022235207213591773 -0.033670553304622625 1.0 3055 +73137 Prrc1 proline-rich coiled-coil 1 Novel U 0.02222684470488576 -0.03375717189489685 1.0 3056 +84652 Hycc1 hyccin PI4KA lipid kinase complex subunit 1 Novel U 0.02221379873667917 -0.033892301604717616 1.0 3057 +257632 Nod2 nucleotide-binding oligomerization domain containing 2 Novel U 0.022213045022659878 -0.033900108549752415 1.0 3058 +258041 Or5p61 olfactory receptor family 5 subfamily P member 61 Novel U 0.022205104210198653 -0.03398235922418564 1.0 3059 +224024 Scarf2 scavenger receptor class F, member 2 Novel U 0.022199294359052872 -0.03404253747136508 1.0 3060 +233090 Scgb2b24 secretoglobin, family 2B, member 24 Novel U 0.022177722037386598 -0.03426598287003248 1.0 3061 +240880 Scyl3 SCY1-like 3 (S. cerevisiae) Novel U 0.0221773126706353 -0.03427022307738523 1.0 3062 +259005 Or3a10 olfactory receptor family 3 subfamily A member 10 Novel U 0.022161917125680823 -0.03442968962592241 1.0 3063 +18415 Hspa4l heat shock protein 4 like Novel U 0.022132716922100185 -0.03473214437470569 1.0 3064 +241275 Noxa1 NADPH oxidase activator 1 Novel N 0.022121732562823505 -0.034845920007002186 1.0 3065 +17755 Map1b microtubule-associated protein 1B Novel U 0.02211469038235047 -0.03491886268084267 1.0 3066 +258939 Or10h28 olfactory receptor family 10 subfamily H member 28 Novel U 0.022111849439820887 -0.03494828907017313 1.0 3067 +14428 Galr2 galanin receptor 2 Novel N 0.02209548324349595 -0.0351178095936971 1.0 3068 +66786 Or2ag2b olfactory receptor family 2 subfamily AG member 2B Novel U 0.022095441262482897 -0.03511824443165027 1.0 3069 +258203 Or4p7 olfactory receptor family 4 subfamily P member 7 Novel U 0.02206058834795634 -0.035479249774588516 1.0 3070 +216150 Cdc34 cell division cycle 34 Novel U 0.022058432372305446 -0.03550158129950659 1.0 3071 +258214 Or10ak8 olfactory receptor family 10 subfamily AK member 8 Novel U 0.022028877071304832 -0.035807714135692774 1.0 3072 +213993 Ccdc186 coiled-coil domain containing 186 Novel U 0.022012837879571798 -0.03597384755640353 1.0 3073 +100043566 Gm10668 predicted gene 10668 Novel U 0.022011147406556787 -0.03599135742032171 1.0 3074 +72399 Brap BRCA1 associated protein Novel N 0.022003113203011845 -0.036074575436530004 1.0 3075 +100534273 Fer1l5 fer-1 like family member 5 Novel U 0.02196662569097063 -0.03645251188679056 1.0 3076 +258708 Or13p4 olfactory receptor family 13 subfamily P member 4 Novel U 0.0219650991019389 -0.03646832424579732 1.0 3077 +15171 Hcrt hypocretin Novel U 0.02196344556316661 -0.03648545154604356 1.0 3078 +627626 Ptchd4 patched domain containing 4 Novel U 0.021950427194604213 -0.036620295379657046 1.0 3079 +258792 Or9i14 olfactory receptor family 9 subfamily I member 14 Novel U 0.021949857597122348 -0.036626195251649694 1.0 3080 +75909 Vmp1 vacuole membrane protein 1 Novel U 0.02194789257057525 -0.03664654893202776 1.0 3081 +84544 Cd96 CD96 antigen Novel U 0.021947559319546762 -0.036650000735225806 1.0 3082 +80976 Syt13 synaptotagmin XIII Novel U 0.021941635494036393 -0.03671135952512694 1.0 3083 +258046 Or8g32 olfactory receptor family 8 subfamily G member 32 Novel U 0.02192860212156584 -0.0368463587687279 1.0 3084 +258633 Or5w20 olfactory receptor family 5 subfamily W member 20 Novel U 0.021923070461666153 -0.03690365552012533 1.0 3085 +258560 Or7g25 olfactory receptor family 7 subfamily G member 25 Novel U 0.021914169583430926 -0.0369958505242852 1.0 3086 +327958 Pitpnm3 PITPNM family member 3 Novel U 0.0219113540480938 -0.037025013746751406 1.0 3087 +53310 Dlg3 discs large MAGUK scaffold protein 3 Novel N 0.021897789635716924 -0.037165513484245065 1.0 3088 +22342 Lin7b lin-7 homolog B, crumbs cell polarity complex component Novel U 0.021896120570329015 -0.03718280160866546 1.0 3089 +12015 Bad BCL2-associated agonist of cell death Novel U 0.021888983785200284 -0.03725672419441969 1.0 3090 +16551 Kif11 kinesin family member 11 Novel U 0.02187907472634155 -0.03735936190033568 1.0 3091 +258509 Or1x6 olfactory receptor family 1 subfamily X member 6 Novel U 0.021866882721810785 -0.0374856462824748 1.0 3092 +77056 Tmco4 transmembrane and coiled-coil domains 4 Novel U 0.021865638177219687 -0.0374985372344372 1.0 3093 +105782 Scrib scribbled planar cell polarity Novel U 0.021855005122861326 -0.037608674061938276 1.0 3094 +74760 Rab3il1 RAB3A interacting protein (rabin3)-like 1 Novel U 0.021844730344165383 -0.03771509988190569 1.0 3095 +100040563 Dynlt1c dynein light chain Tctex-type 1C Novel U 0.021843479158412515 -0.03772805962280339 1.0 3096 +68050 Akirin1 akirin 1 Novel U 0.021840694479523328 -0.0377569032351962 1.0 3097 +258436 Or2r11 olfactory receptor family 2 subfamily R member 11 Novel U 0.02183772452970942 -0.037787665877736805 1.0 3098 +232089 Elmod3 ELMO/CED-12 domain containing 3 Novel N 0.021813408408212574 -0.03803953146485172 1.0 3099 +15977 Ifnb1 interferon beta 1, fibroblast Novel U 0.021776650374212222 -0.03842026997267211 1.0 3100 +19260 Ptpn22 protein tyrosine phosphatase, non-receptor type 22 (lymphoid) Novel U 0.021771064300993032 -0.03847813033544421 1.0 3101 +12795 Plk3 polo like kinase 3 Novel U 0.02175990153314227 -0.03859375391788617 1.0 3102 +26427 Creb3l1 cAMP responsive element binding protein 3-like 1 Novel U 0.02172236412853657 -0.038982565120816326 1.0 3103 +257909 Or4q3 olfactory receptor family 4 subfamily Q member 3 Novel U 0.021721484455006216 -0.03899167675032603 1.0 3104 +14020 Evi5 ecotropic viral integration site 5 Novel U 0.02170522175826134 -0.03916012522860211 1.0 3105 +19116 Prlr prolactin receptor Novel U 0.021681507982666492 -0.03940575173666517 1.0 3106 +108101 Fermt3 fermitin family member 3 Novel U 0.021666723338874583 -0.039558890591042783 1.0 3107 +110253 Triobp TRIO and F-actin binding protein Novel U 0.02164511553759765 -0.039782703486351066 1.0 3108 +75577 Dynap dynactin associated protein Novel U 0.021644215179474163 -0.03979202936619647 1.0 3109 +56508 Rapgef4 Rap guanine nucleotide exchange factor (GEF) 4 Novel U 0.021633021299541727 -0.03990797520655766 1.0 3110 +19268 Ptprf protein tyrosine phosphatase receptor type F Novel U 0.02163009600362597 -0.03993827532548916 1.0 3111 +258274 Or9s27 olfactory receptor family 9 subfamily S member 27 Novel U 0.02162813520047586 -0.03995858526006004 1.0 3112 +13350 Dgat1 diacylglycerol O-acyltransferase 1 Novel U 0.021610324381844317 -0.04014306913394646 1.0 3113 +14938 Gzma granzyme A Novel U 0.021606360230852113 -0.040184129679609264 1.0 3114 +258802 Or8c8 olfactory receptor family 8 subfamily C member 8 Novel U 0.021604177683914354 -0.04020673642904321 1.0 3115 +26359 Anxa10 annexin A10 Novel U 0.021600885862088037 -0.040240833011307396 1.0 3116 +12314 Calm2 calmodulin 2 Novel U 0.021598279354802522 -0.04026783112808644 1.0 3117 +74048 Vsir V-set immunoregulatory receptor Novel U 0.021581475542954972 -0.040441884458807816 1.0 3118 +258411 Or5ae1 olfactory receptor family 5 subfamily AE member 1 Novel U 0.021575750310236442 -0.04050118623109947 1.0 3119 +14685 Gnat1 G protein subunit alpha transducin 1 Novel U 0.021554714428208964 -0.04071907520562272 1.0 3120 +98417 Cnih4 cornichon family AMPA receptor auxiliary protein 4 Novel N 0.02153745104517846 -0.04089788875954953 1.0 3121 +19400 Rapsn receptor-associated protein of the synapse Novel U 0.02153655548927135 -0.040907164898195555 1.0 3122 +192190 Pkhd1l1 polycystic kidney and hepatic disease 1-like 1 Novel U 0.021526043638631996 -0.04101604630155953 1.0 3123 +71254 Naif1 nuclear apoptosis inducing factor 1 Novel N 0.02152142412818307 -0.041063895038931285 1.0 3124 +22631 Ywhaz tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, zeta polypeptide Novel U 0.021515733696236668 -0.04112283634596924 1.0 3125 +29809 Rabgap1l RAB GTPase activating protein 1-like Novel N 0.021487970643580215 -0.04141040513272359 1.0 3126 +54199 Ccrl2 C-C motif chemokine receptor-like 2 Novel U 0.021477792903579502 -0.04151582582907581 1.0 3127 +19216 Ptger1 prostaglandin E receptor 1 (subtype EP1) Novel N 0.021475440568866834 -0.041540191234700784 1.0 3128 +320795 Pkn1 protein kinase N1 Novel N 0.021470764836951844 -0.04158862231216984 1.0 3129 +258587 Or8h10 olfactory receptor family 8 subfamily H member 10 Novel U 0.021468032410802522 -0.04161692469240085 1.0 3130 +105242404 LOC105242404 sp110 nuclear body protein-like Novel U 0.02145039067700725 -0.04179965719111154 1.0 3131 +223433 Otulinl OTU deubiquitinase with linear linkage specificity like Novel N 0.02143869196327304 -0.041920832083395976 1.0 3132 +12380 Cast calpastatin Novel U 0.021420291246398007 -0.04211142610389659 1.0 3133 +20264 Scn10a sodium channel, voltage-gated, type X, alpha Novel U 0.02140351081250008 -0.04228523728658427 1.0 3134 +102640920 Pvrig poliovirus receptor related immunoglobulin domain containing Novel U 0.02138482390680172 -0.04247879564150896 1.0 3135 +621823 Psme2b protease (prosome, macropain) activator subunit 2B Novel U 0.021371999260547843 -0.0426116329058191 1.0 3136 +102502 Pls1 plastin 1 (I-isoform) Novel N 0.021367414687976136 -0.04265911975780714 1.0 3137 +378460 Pram1 PML-RAR alpha-regulated adaptor molecule 1 Novel U 0.021351832518961587 -0.04282051935222363 1.0 3138 +66532 Rep15 RAB15 effector protein Novel U 0.021347021207665486 -0.0428703547564653 1.0 3139 +15562 Htr4 5 hydroxytryptamine (serotonin) receptor 4 Novel N 0.021308156386308296 -0.04327291529847091 1.0 3140 +208943 Myo5c myosin VC Novel U 0.021299305244245295 -0.04336459513699385 1.0 3141 +22222 Ubr1 ubiquitin protein ligase E3 component n-recognin 1 Novel U 0.021297961682938585 -0.04337851170084156 1.0 3142 +15558 Htr2a 5-hydroxytryptamine (serotonin) receptor 2A Novel U 0.02129762529423623 -0.04338199600396237 1.0 3143 +666586 Uba52rt ubiquitin A-52 residue ribosomal protein fusion product 1, retrotransposed Novel U 0.021284841049496715 -0.04351441479071487 1.0 3144 +259027 Or1e21 olfactory receptor family 1 subfamily E member 21 Novel U 0.021284076540626935 -0.04352233354845617 1.0 3145 +226499 Odr4 odr4 GPCR localization factor homolog Novel U 0.021272007071611268 -0.04364734871175803 1.0 3146 +14695 Gnb3 guanine nucleotide binding protein (G protein), beta 3 Novel U 0.021266854170996028 -0.04370072228693821 1.0 3147 +227326 Gpr55 G protein-coupled receptor 55 Novel U 0.02126634831075825 -0.04370596197065185 1.0 3148 +258147 Or52e8b olfactory receptor family 52 subfamily E member 8B Novel U 0.021263305297379863 -0.0437374814031915 1.0 3149 +667281 H60b histocompatibility 60b Novel U 0.021241532415656843 -0.04396300419633363 1.0 3150 +258780 Or8b51 olfactory receptor family 8 subfamily B member 51 Novel U 0.02122901513677622 -0.04409265775949576 1.0 3151 +54633 Pqbp1 polyglutamine binding protein 1 Novel U 0.021225336527640196 -0.04413076067199892 1.0 3152 +259162 Or6k14 olfactory receptor family 6 subfamily K member 14 Novel U 0.02121643934424759 -0.044222917405100405 1.0 3153 +319236 Trim12c tripartite motif-containing 12C Novel U 0.021214711157018545 -0.04424081791160775 1.0 3154 +257943 Or8s16 olfactory receptor family 8 subfamily S member 16 Novel U 0.021213783425998813 -0.044250427319012624 1.0 3155 +258524 Or5d40 olfactory receptor family 5 subfamily D member 40 Novel U 0.021205865292340892 -0.04433244308714675 1.0 3156 +268783 Mtmr12 myotubularin related protein 12 Novel U 0.02115997975320517 -0.044807723993108714 1.0 3157 +269682 Golga3 golgin A3 Novel U 0.02115886522241945 -0.04481926826634899 1.0 3158 +22064 Trpc2 transient receptor potential cation channel, subfamily C, member 2 Novel U 0.021153029721506053 -0.0448797121929782 1.0 3159 +16560 Kif1a kinesin family member 1A Novel U 0.02114878715625205 -0.04492365654441232 1.0 3160 +231805 Pilra paired immunoglobin-like type 2 receptor alpha Novel U 0.02114240784616123 -0.04498973322862453 1.0 3161 +99326 Garnl3 GTPase activating RANGAP domain-like 3 Novel U 0.02114199467330943 -0.04499401285944116 1.0 3162 +54123 Irf7 interferon regulatory factor 7 Novel U 0.021140615293119006 -0.04500830043410888 1.0 3163 +29846 Or13c7b olfactory receptor family 13 subfamily C member 7B Novel U 0.02113634855514961 -0.04505249516573444 1.0 3164 +74772 Atp13a2 ATPase type 13A2 Novel U 0.02113051585822299 -0.045112910048760765 1.0 3165 +12046 Bcl2a1c B cell leukemia/lymphoma 2 related protein A1c Novel U 0.021103344907991657 -0.04539434585806006 1.0 3166 +11977 Atp7a ATPase, Cu++ transporting, alpha polypeptide Novel U 0.021099729601545224 -0.04543179308338542 1.0 3167 +258282 Or6c211 olfactory receptor family 6 subfamily C member 211 Novel U 0.0210939166273 -0.04549200367952621 1.0 3168 +16391 Irf9 interferon regulatory factor 9 Novel N 0.021091798768067282 -0.045513940395837844 1.0 3169 +21937 Tnfrsf1a tumor necrosis factor receptor superfamily, member 1a Novel U 0.021090244888621025 -0.04553003542806114 1.0 3170 +15258 Hipk2 homeodomain interacting protein kinase 2 Novel U 0.021076319734501237 -0.04567427171666912 1.0 3171 +77669 Arhgef38 Rho guanine nucleotide exchange factor 38 Novel U 0.021073525678539304 -0.045703212456473186 1.0 3172 +229487 Gatb glutamyl-tRNA amidotransferase subunit B Novel N 0.021065602114250504 -0.04578528447490343 1.0 3173 +258913 Or1ad1 olfactory receptor family 1 subfamily AD member 1 Novel U 0.02106522669025553 -0.045789173104301986 1.0 3174 +231238 Sel1l3 sel-1 suppressor of lin-12-like 3 (C. elegans) Novel U 0.021059559905883485 -0.04584786947054212 1.0 3175 +66235 Eif1ax eukaryotic translation initiation factor 1A, X-linked Novel U 0.021055406348098236 -0.045890891885540866 1.0 3176 +72018 Fundc1 FUN14 domain containing 1 Novel U 0.021042624521381798 -0.04602328562648982 1.0 3177 +74244 Atg7 autophagy related 7 Novel U 0.021038461599734715 -0.046066405032061636 1.0 3178 +258832 Or12d17 olfactory receptor family 12 subfamily D member 17 Novel U 0.021035783410228086 -0.046094145630930554 1.0 3179 +217337 Srp68 signal recognition particle 68 Novel U 0.02102889466631994 -0.046165499013875885 1.0 3180 +19108 Prkx protein kinase, X-linked Novel U 0.021027390115338603 -0.04618108310348112 1.0 3181 +233079 Ffar2 free fatty acid receptor 2 Novel U 0.02100830088197745 -0.04637880875511121 1.0 3182 +14177 Fgf6 fibroblast growth factor 6 Novel U 0.020983181293581062 -0.046638996625959016 1.0 3183 +216783 Or2ak7 olfactory receptor family 2 subfamily AK member 7 Novel U 0.020977091671823857 -0.04670207272793462 1.0 3184 +319991 Kif6 kinesin family member 6 Novel U 0.02096647338759451 -0.046812056566924894 1.0 3185 +74191 P2ry13 purinergic receptor P2Y, G-protein coupled 13 Novel U 0.02096500857804519 -0.046827229016083764 1.0 3186 +258150 Or6c66b olfactory receptor family 6 subfamily C member 66B Novel U 0.020956028385455388 -0.04692024555572099 1.0 3187 +100040048 Ccl27b C-C motif chemokine ligand 27b Novel U 0.020954394733067018 -0.046937166873456296 1.0 3188 +66587 Fastk Fas-activated serine/threonine kinase Novel N 0.0209535246711628 -0.04694617894605844 1.0 3189 +75212 Rnf121 ring finger protein 121 Novel U 0.020949082239435975 -0.046992193507847814 1.0 3190 +258887 Or4k44 olfactory receptor family 4 subfamily K member 44 Novel U 0.02094535388678448 -0.047030811662049025 1.0 3191 +14686 Gnat2 G protein subunit alpha transducin 2 Novel N 0.020937608191264438 -0.047111041321619584 1.0 3192 +217304 Cd300lb CD300 molecule like family member B Novel U 0.020923899368085693 -0.04725303686145175 1.0 3193 +22157 Tulp1 TUB like protein 1 Novel U 0.020922918680411386 -0.04726319479214385 1.0 3194 +241639 Fermt1 fermitin family member 1 Novel U 0.020920169081427683 -0.04729167504802885 1.0 3195 +12028 Bax BCL2-associated X protein Novel U 0.02091746574388985 -0.047319676129378305 1.0 3196 +404346 Or2w3 olfactory receptor family 2 subfamily W member 3 Novel U 0.02087685513053811 -0.04774031952747362 1.0 3197 +232237 Fgd5 FYVE, RhoGEF and PH domain containing 5 Novel U 0.020876652038551956 -0.047742423147589926 1.0 3198 +258550 Or7e175 olfactory receptor family 7 subfamily E member 175 Novel U 0.020875720907847797 -0.04775206776881433 1.0 3199 +69543 Capns2 calpain, small subunit 2 Novel U 0.0208700483573326 -0.04781082386057569 1.0 3200 +109620 Dsp desmoplakin Novel U 0.02086246952832483 -0.04788932512229759 1.0 3201 +258397 Or4f7 olfactory receptor family 4 subfamily F member 7 Novel U 0.02083505453005804 -0.048173288773125475 1.0 3202 +26369 Cetn1 centrin 1 Novel U 0.020817488113885993 -0.04835524113437074 1.0 3203 +258628 Or5b124 olfactory receptor family 5 subfamily B member 124 Novel U 0.02081156002560125 -0.0484166440779487 1.0 3204 +258918 Or6z5 olfactory receptor family 6 subfamily Z member 5 Novel U 0.020804070942588165 -0.0484942157536079 1.0 3205 +229541 Dennd4b DENN domain containing 4B Novel U 0.020791913342960815 -0.048620143770888434 1.0 3206 +14707 Gng5 G protein subunit gamma 5 Novel U 0.020789479555321413 -0.0486453528632509 1.0 3207 +227358 Erfe erythroferrone Novel U 0.020752175920180103 -0.049031742689753646 1.0 3208 +76088 Dock8 dedicator of cytokinesis 8 Novel U 0.02074404538248879 -0.04911595853188325 1.0 3209 +258368 Or5b98 olfactory receptor family 5 subfamily B member 98 Novel U 0.020734907447107574 -0.04921060896616845 1.0 3210 +107607 Nod1 nucleotide-binding oligomerization domain containing 1 Novel U 0.02073350154222174 -0.049225171282759266 1.0 3211 +76499 Clasp2 CLIP associating protein 2 Novel U 0.02072922651072174 -0.0492694519185022 1.0 3212 +20209 Saa2 serum amyloid A 2 Novel U 0.02072828183758378 -0.04927923681181071 1.0 3213 +14687 Gnaz guanine nucleotide binding protein, alpha z subunit Novel N 0.020718746787766983 -0.04937800054436523 1.0 3214 +104443 Npffr2 neuropeptide FF receptor 2 Novel N 0.020714162121418446 -0.04942548836769059 1.0 3215 +14459 Gast gastrin Novel U 0.020707091769667264 -0.04949872283870404 1.0 3216 +18155 Pnoc prepronociceptin Novel N 0.02070313920031084 -0.04953966342216417 1.0 3217 +258791 Or6c216 olfactory receptor family 6 subfamily C member 216 Novel U 0.02069867986445061 -0.04958585307641167 1.0 3218 +57436 Gabarapl1 GABA type A receptor associated protein like 1 Novel U 0.020678807142237327 -0.04979169407981631 1.0 3219 +22249 Unc13b unc-13 homolog B Novel U 0.0206773592311646 -0.04980669149511009 1.0 3220 +217692 Sipa1l1 signal-induced proliferation-associated 1 like 1 Novel U 0.020671675624292025 -0.049865562108257724 1.0 3221 +100039795 Ildr2 immunoglobulin-like domain containing receptor 2 Novel U 0.020662720490348226 -0.04995831909126342 1.0 3222 +259004 Or5k8 olfactory receptor family 5 subfamily K member 8 Novel U 0.02063901177470704 -0.05020389318849279 1.0 3223 +214897 Csnk1g1 casein kinase 1, gamma 1 Novel U 0.0206354129882598 -0.05024116930020958 1.0 3224 +258896 Or4c11 olfactory receptor family 4 subfamily C member 11 Novel U 0.020621950432476572 -0.05038061401045457 1.0 3225 +17916 Myo1f myosin IF Novel U 0.02060414875577849 -0.050565003192494705 1.0 3226 +60504 Il21r interleukin 21 receptor Novel U 0.020600941404937487 -0.05059822482706984 1.0 3227 +80904 Dtx3 deltex 3, E3 ubiquitin ligase Novel U 0.02059374129090407 -0.05067280337153698 1.0 3228 +258551 Or7e173 olfactory receptor family 7 subfamily E member 173 Novel U 0.020593512752191487 -0.05067517056800911 1.0 3229 +235661 Dync1li1 dynein cytoplasmic 1 light intermediate chain 1 Novel U 0.020590551862205014 -0.05070583936915498 1.0 3230 +18541 Pcnt pericentrin (kendrin) Novel U 0.020582069847420677 -0.050793695799459936 1.0 3231 +67803 Limd2 LIM domain containing 2 Novel U 0.020571487403605336 -0.05090330840462014 1.0 3232 +19298 Pex19 peroxisomal biogenesis factor 19 Novel U 0.020546680950945577 -0.05116025282580173 1.0 3233 +83397 Akap12 A kinase anchor protein 12 Novel N 0.020546113074666222 -0.05116613486963536 1.0 3234 +545654 Gm13285 predicted gene 13285 Novel U 0.02054057634860832 -0.05122348409613304 1.0 3235 +15516 Hsp90ab1 heat shock protein 90 alpha (cytosolic), class B member 1 Novel U 0.02053766944784785 -0.051253593678650775 1.0 3236 +329679 Fnip2 folliculin interacting protein 2 Novel U 0.02053379141048577 -0.0512937622621636 1.0 3237 +210145 Irgc immunity related GTPase cinema Novel U 0.020530583896255422 -0.051326985589120196 1.0 3238 +258113 Or11h23 olfactory receptor family 11 subfamily G member 23 Novel U 0.020527694940963116 -0.05135690929306862 1.0 3239 +56351 Ptges3 prostaglandin E synthase 3 Novel U 0.020516781538474152 -0.051469949957290526 1.0 3240 +195046 Nlrp1a NLR family, pyrin domain containing 1A Novel U 0.02050793492201098 -0.05156158291979921 1.0 3241 +76892 Rnft1 ring finger protein, transmembrane 1 Novel U 0.020498287628114627 -0.05166150927283994 1.0 3242 +22428 Dctn6 dynactin 6 Novel U 0.020493829105264684 -0.051707690505953606 1.0 3243 +28106 Mydgf myeloid derived growth factor Novel U 0.02048836517796633 -0.05176428568529302 1.0 3244 +57269 Or4e5 olfactory receptor family 4 subfamily E member 5 Novel U 0.02047847897470001 -0.051866686653734145 1.0 3245 +238988 Erc2 ELKS/RAB6-interacting/CAST family member 2 Novel U 0.02047469033079531 -0.051905929302754054 1.0 3246 +233578 Or52m2 olfactory receptor family 52 subfamily M member 2 Novel U 0.020455686014285674 -0.052102775388427634 1.0 3247 +258991 Or1s2 olfactory receptor family 1 subfamily S member 1 Novel U 0.020455655145070566 -0.052103095130742946 1.0 3248 +13830 Stom stomatin Novel U 0.020447411587405626 -0.05218848163004404 1.0 3249 +22630 Ywhaq tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein theta Novel N 0.020437659356825268 -0.052289494913808084 1.0 3250 +329421 Myo3b myosin IIIB Novel U 0.02043602593581732 -0.052306413834912587 1.0 3251 +259066 Or2at4 olfactory receptor family 2 subfamily AT member 4 Novel U 0.02042843024144681 -0.05238508978750731 1.0 3252 +83429 Ctns cystinosis, nephropathic Novel U 0.020416628882279773 -0.05250732787781072 1.0 3253 +93835 Amn amnionless Novel U 0.020410798862904908 -0.05256771502684401 1.0 3254 +14812 Grin2b glutamate receptor, ionotropic, NMDA2B (epsilon 2) Novel N 0.020404984137843033 -0.05262794375788612 1.0 3255 +111174 Taar1 trace amine-associated receptor 1 Novel U 0.02039886203957321 -0.052691356250511814 1.0 3256 +18190 Nrxn2 neurexin II Novel N 0.020376665209897206 -0.052921270282614404 1.0 3257 +257912 Or8g30 olfactory receptor family 8 subfamily G member 30 Novel U 0.020371300314086595 -0.052976839697059255 1.0 3258 +20111 Rps6ka1 ribosomal protein S6 kinase polypeptide 1 Novel U 0.02036439042089844 -0.05304841214355166 1.0 3259 +65086 Lpar3 lysophosphatidic acid receptor 3 Novel N 0.020353843289625022 -0.05315765898256348 1.0 3260 +17005 Ltk leukocyte tyrosine kinase Novel U 0.020344065613397893 -0.053258935831500286 1.0 3261 +67775 Rtp4 receptor transporter protein 4 Novel U 0.020338123941592835 -0.05332047947273515 1.0 3262 +22339 Vegfa vascular endothelial growth factor A Novel U 0.02033581988020432 -0.05334434486485544 1.0 3263 +383766 Tldc2 TBC/LysM associated domain containing 2 Novel U 0.020332735192940706 -0.05337629595412832 1.0 3264 +100042690 Or4x18 olfactory receptor family 4 subfamily X member 18 Novel U 0.02033227481434327 -0.05338106454050643 1.0 3265 +56699 Cdc42ep4 CDC42 effector protein 4 Novel U 0.020318934429409026 -0.05351924380911381 1.0 3266 +108687 Edem2 ER degradation enhancer, mannosidase alpha-like 2 Novel U 0.02028471493399548 -0.05387368821770201 1.0 3267 +76500 Ip6k2 inositol hexaphosphate kinase 2 Novel U 0.02027981209566613 -0.05392447165594531 1.0 3268 +219019 Or11g27 olfactory receptor family 11 subfamily G member 27 Novel U 0.020272415535423957 -0.054001084983784906 1.0 3269 +258549 Or6c66 olfactory receptor family 6 subfamily C member 66 Novel U 0.0202625221620468 -0.05410356021999836 1.0 3270 +258800 Or8b1c olfactory receptor family 8 subfamily B member 1C Novel U 0.020250257392251367 -0.05423059830235688 1.0 3271 +16643 Klrd1 killer cell lectin-like receptor, subfamily D, member 1 Novel U 0.020246395086443936 -0.0542706039389438 1.0 3272 +11820 App amyloid beta precursor protein Novel U 0.020225735305187953 -0.05448459727403955 1.0 3273 +331491 Fnd3c2 fibronectin type III domain containing 3C2 Novel U 0.02021885071829605 -0.05455590759874727 1.0 3274 +258111 Or10ag59 olfactory receptor family 10 subfamily AG member 59 Novel U 0.02021520646192443 -0.05459365468644606 1.0 3275 +66335 Atp6v1c1 ATPase, H+ transporting, lysosomal V1 subunit C1 Novel N 0.0202144696985686 -0.054601286057065934 1.0 3276 +259064 Or2b4 olfactory receptor family 2 subfamily B member 4 Novel U 0.020207298005557407 -0.054675570217519176 1.0 3277 +11303 Abca1 ATP-binding cassette, sub-family A member 1 Novel U 0.020206785260983982 -0.05468088120895514 1.0 3278 +258983 Or4c35 olfactory receptor family 4 subfamily C member 35 Novel U 0.02019990799019697 -0.05475211575368893 1.0 3279 +545652 Gm13275 predicted gene 13275 Novel U 0.020193965193264964 -0.054813671048951705 1.0 3280 +80910 Gpr84 G protein-coupled receptor 84 Novel U 0.02017234002725951 -0.05503766380754716 1.0 3281 +99412 Golga2 golgin A2 Novel U 0.020169284003918733 -0.05506931799684959 1.0 3282 +379043 Raet1e retinoic acid early transcript 1E Novel U 0.02015408186669477 -0.05522678123447207 1.0 3283 +100494 Zfand2a zinc finger, AN1-type domain 2A Novel U 0.020152472455268702 -0.05524345146511672 1.0 3284 +217344 Rhbdf2 rhomboid 5 homolog 2 Novel U 0.02014721921968628 -0.05529786430658863 1.0 3285 +11863 Arnt aryl hydrocarbon receptor nuclear translocator Novel U 0.020142741445626097 -0.055344244943105116 1.0 3286 +258493 Or2ak6 olfactory receptor family 2 subfamily AK member 6 Novel U 0.02013681955001869 -0.055405583743134805 1.0 3287 +210293 Dock10 dedicator of cytokinesis 10 Novel N 0.020129934734311673 -0.055476896437901976 1.0 3288 +258669 Or9r7 olfactory receptor family 9 subfamily R member 7 Novel U 0.02012978057281098 -0.05547849323765837 1.0 3289 +50527 Ero1a endoplasmic reticulum oxidoreductase 1 alpha Novel U 0.020096723479427873 -0.05582089752422719 1.0 3290 +241556 Tspan18 tetraspanin 18 Novel U 0.020084830207180805 -0.05594408764719206 1.0 3291 +67046 Tbc1d7 TBC1 domain family, member 7 Novel U 0.020077265536240667 -0.05602244226011485 1.0 3292 +320213 Senp5 SUMO/sentrin specific peptidase 5 Novel N 0.02007067367716475 -0.05609072051972752 1.0 3293 +234214 Sorbs2 sorbin and SH3 domain containing 2 Novel U 0.02006508016524993 -0.05614865793226441 1.0 3294 +18378 Omp olfactory marker protein Novel N 0.020056574833168674 -0.05623675588236434 1.0 3295 +258744 Or8b12b olfactory receptor family 8 subfamily B member 12B Novel U 0.02004622661353949 -0.05634394240110403 1.0 3296 +11601 Angpt2 angiopoietin 2 Novel U 0.020041630386958283 -0.05639154996493937 1.0 3297 +258799 Or8b1 olfactory receptor family 8 subfamily B member 1 Novel U 0.020034978274541395 -0.05646045232667708 1.0 3298 +108837 Ibtk inhibitor of Bruton agammaglobulinemia tyrosine kinase Novel U 0.02003187451082833 -0.05649260100918628 1.0 3299 +258750 Or52p2 olfactory receptor family 52 subfamily P member 2 Novel U 0.020027668958472016 -0.05653616198224289 1.0 3300 +263803 Pkn3 protein kinase N3 Novel N 0.020026253850666097 -0.05655081962237743 1.0 3301 +258949 Or1j10 olfactory receptor family 1 subfamily J member 10 Novel U 0.01998677044624794 -0.05695978742739373 1.0 3302 +70620 Ube2v2 ubiquitin-conjugating enzyme E2 variant 2 Novel U 0.01997556972820488 -0.05707580409667996 1.0 3303 +16163 Il13 interleukin 13 Novel U 0.01996831360263305 -0.057150962806820714 1.0 3304 +80985 Trim44 tripartite motif-containing 44 Novel U 0.019963789365423694 -0.05719782470710893 1.0 3305 +224170 Dzip3 DAZ interacting protein 3, zinc finger Novel U 0.019961854475860845 -0.057217866229594856 1.0 3306 +140493 Kcnn3 potassium intermediate/small conductance calcium-activated channel, subfamily N, member 3 Novel U 0.01995747634962931 -0.05726321471717795 1.0 3307 +55980 Impa1 inositol (myo)-1(or 4)-monophosphatase 1 Novel U 0.019935592022098023 -0.05748989186233851 1.0 3308 +18329 Or2z2 olfactory receptor family 2 subfamily Z member 2 Novel U 0.019930865414637827 -0.057538849907032376 1.0 3309 +13019 Ctf1 cardiotrophin 1 Novel U 0.019928089455901736 -0.05756760319636608 1.0 3310 +16647 Kpna2 karyopherin subunit alpha 2 Novel U 0.01992649542042686 -0.05758411416341376 1.0 3311 +246729 Oas1h 2'-5' oligoadenylate synthetase 1H Novel U 0.019925197656738836 -0.05759755635703262 1.0 3312 +258892 Or14j5 olfactory receptor family 14 subfamily J member 5 Novel U 0.019916424366551076 -0.057688429808391055 1.0 3313 +545985 Or51aa2 olfactory receptor family 51 subfamily AA member 2 Novel U 0.019915110704234636 -0.05770203667948043 1.0 3314 +22384 Eif4h eukaryotic translation initiation factor 4H Novel U 0.01991135421201681 -0.05774094630238464 1.0 3315 +215243 Traf3ip3 TRAF3 interacting protein 3 Novel U 0.019905629062370103 -0.05780024721422107 1.0 3316 +11610 Agtrap angiotensin II, type I receptor-associated protein Novel U 0.019892479881834572 -0.05793644599395208 1.0 3317 +435207 Taar7f trace amine-associated receptor 7F Novel U 0.019891129946844062 -0.057950428576207066 1.0 3318 +404331 Or4a79 olfactory receptor family 4 subfamily A member 79 Novel U 0.01987083660530756 -0.05816062634073449 1.0 3319 +170786 Cd209a CD209a antigen Novel U 0.01987082960504833 -0.05816069884918947 1.0 3320 +210274 Shank2 SH3 and multiple ankyrin repeat domains 2 Novel N 0.019870503254676205 -0.05816407917561576 1.0 3321 +434218 Trim34b tripartite motif-containing 34B Novel U 0.019867098304064874 -0.058199347542116205 1.0 3322 +14456 Gas6 growth arrest specific 6 Novel U 0.01986605114457674 -0.058210193985670795 1.0 3323 +56491 Vapb vesicle-associated membrane protein, associated protein B and C Novel U 0.01986353063952282 -0.058236301294162136 1.0 3324 +68606 Ppm1f protein phosphatase 1F (PP2C domain containing) Novel U 0.01986065665877011 -0.0582660698923217 1.0 3325 +258505 Or1o2 olfactory receptor family 1 subfamily O member 2 Novel U 0.01985577891200185 -0.05831659343300004 1.0 3326 +53602 Hpcal1 hippocalcin-like 1 Novel U 0.019840901147685414 -0.05847069682670954 1.0 3327 +14296 Frat1 frequently rearranged in advanced T cell lymphomas Novel U 0.019838580564689283 -0.0584947333490984 1.0 3328 +71722 Cic capicua transcriptional repressor Novel N 0.01983653534110842 -0.05851591770771586 1.0 3329 +12343 Capza2 capping actin protein of muscle Z-line subunit alpha 2 Novel N 0.019835648823994818 -0.05852510022283589 1.0 3330 +19226 Pth parathyroid hormone Novel U 0.019832292014692852 -0.05855986994323649 1.0 3331 +21356 Tapbp TAP binding protein Novel U 0.019830473573609567 -0.05857870529619912 1.0 3332 +257662 Or4k42 olfactory receptor family 4 subfamily K member 42 Novel U 0.019823623704259066 -0.05864965601775429 1.0 3333 +231699 Oas1e 2'-5' oligoadenylate synthetase 1E Novel U 0.01981624205178967 -0.05872611493137354 1.0 3334 +67574 Alg13 asparagine-linked glycosylation 13 Novel N 0.019816045282671137 -0.05872815305943487 1.0 3335 +58203 Zbp1 Z-DNA binding protein 1 Novel U 0.019815842519442975 -0.058730253274286694 1.0 3336 +70495 Atp6ap2 ATPase, H+ transporting, lysosomal accessory protein 2 Novel U 0.01981234989036679 -0.05876642981144382 1.0 3337 +12955 Cryab crystallin, alpha B Novel U 0.019809715435342587 -0.058793717409981475 1.0 3338 +212937 Tifab TRAF-interacting protein with forkhead-associated domain, family member B Novel U 0.019794693782215877 -0.05894931119925769 1.0 3339 +257910 Or52e8 olfactory receptor family 52 subfamily E member 8 Novel U 0.01979269961009306 -0.058969966768550965 1.0 3340 +67603 Dusp6 dual specificity phosphatase 6 Novel U 0.019767940980829707 -0.05922641583656469 1.0 3341 +17201 Mc3r melanocortin 3 receptor Novel N 0.01976660816662143 -0.05924022108232011 1.0 3342 +258543 Or6c69b olfactory receptor family 6 subfamily C member 69B Novel U 0.01976305299882067 -0.05927704539353052 1.0 3343 +71966 Nkiras2 NFKB inhibitor interacting Ras-like protein 2 Novel U 0.01976247992790895 -0.05928298124319544 1.0 3344 +68303 Fam114a1 family with sequence similarity 114, member A1 Novel U 0.019749799704448515 -0.05941432258095874 1.0 3345 +259078 Or52p1 olfactory receptor family 52 subfamily P member 1 Novel U 0.019744083658062857 -0.05947352920151649 1.0 3346 +258317 Or12e10 olfactory receptor family 12 subfamily E member 10 Novel U 0.019743493267454188 -0.05947964444803303 1.0 3347 +259107 Or51h1 olfactory receptor family 51 subfamily H member 1 Novel U 0.019743284664999368 -0.059481805145402626 1.0 3348 +258232 Or6c5 olfactory receptor family 6 subfamily C member 5 Novel U 0.019741180313183716 -0.05950360195233231 1.0 3349 +268288 Samd3 sterile alpha motif domain containing 3 Novel U 0.019739420285004503 -0.05952183226635479 1.0 3350 +56221 Ccl24 C-C motif chemokine ligand 24 Novel U 0.01968544796339437 -0.06008087579934807 1.0 3351 +258797 Or8b1b olfactory receptor family 8 subfamily B member 1B Novel U 0.019673934833877207 -0.0602001284164131 1.0 3352 +64378 Gpr88 G-protein coupled receptor 88 Novel N 0.019673577619886775 -0.06020382842718322 1.0 3353 +258379 Or4g17 olfactory receptor family 4 subfamily G member 17 Novel U 0.019664129888968252 -0.06030168771345986 1.0 3354 +78787 Usp54 ubiquitin specific peptidase 54 Novel U 0.019660106301610893 -0.06034336389903908 1.0 3355 +241694 Ralgapa2 Ral GTPase activating protein, alpha subunit 2 (catalytic) Novel U 0.019651472526629903 -0.06043279225647211 1.0 3356 +258897 Or4c11b olfactory receptor family 4 subfamily C member 11B Novel U 0.019648124012539823 -0.06046747605534069 1.0 3357 +224814 Abcc10 ATP-binding cassette, sub-family C member 10 Novel N 0.019646137399174982 -0.06048805333126731 1.0 3358 +19211 Pten phosphatase and tensin homolog Novel U 0.01960192161931917 -0.060946038925498366 1.0 3359 +20361 Sema7a sema domain, immunoglobulin domain (Ig), and GPI membrane anchor, (semaphorin) 7A Novel U 0.01959587346140844 -0.06100868554631524 1.0 3360 +114229 Kiss1r KISS1 receptor Novel N 0.019591935646880197 -0.0610494732997501 1.0 3361 +667772 Myh15 myosin, heavy chain 15 Novel U 0.019581551627883775 -0.0611570306271588 1.0 3362 +100041146 Pira13 paired-Ig-like receptor A13 Novel U 0.019578890703960412 -0.06118459238968383 1.0 3363 +258616 Or1q1 olfactory receptor family 1 subfamily Q member 1 Novel U 0.01957666987451236 -0.061207595668100925 1.0 3364 +20606 Sstr2 somatostatin receptor 2 Novel U 0.019573324374392992 -0.06124224824835995 1.0 3365 +258857 Or13f5 olfactory receptor family 13 subfamily F member 5 Novel U 0.01956981965395011 -0.061278550027495826 1.0 3366 +258687 Or5b102 olfactory receptor family 5 subfamily B member 102 Novel U 0.01955717993950269 -0.06140947177423401 1.0 3367 +26420 Mapk9 mitogen-activated protein kinase 9 Novel U 0.01955542842864945 -0.061427613866074045 1.0 3368 +408193 Otud6a OTU domain containing 6A Novel N 0.019551453956026595 -0.061468781322847825 1.0 3369 +387513 Tas2r138 taste receptor, type 2, member 138 Novel N 0.019524892140668697 -0.06174390773315229 1.0 3370 +18359 Or1p1 olfactory receptor family 1 subfamily P member 1 Novel U 0.019522620603903446 -0.06176743623629402 1.0 3371 +258612 Or6aa1 olfactory receptor family 6 subfamily AA member 1 Novel U 0.019507455345346772 -0.06192451748589303 1.0 3372 +20259 Scin scinderin Novel U 0.01950582335803206 -0.06194142155685012 1.0 3373 +320910 Itgb8 integrin beta 8 Novel U 0.019503771481279884 -0.06196267482879735 1.0 3374 +258579 Or2ah1 olfactory receptor family 2 subfamily AH member 1 Novel U 0.019492252709020576 -0.06208198589320002 1.0 3375 +258513 Or12j5 olfactory receptor family 12 subfamily J member 5 Novel U 0.01948508913201649 -0.06215618598831846 1.0 3376 +68939 Rasl11b RAS-like, family 11, member B Novel U 0.01948465440151368 -0.06216068891257555 1.0 3377 +320714 Trappc11 trafficking protein particle complex 11 Novel U 0.019475328305072787 -0.062257288312931425 1.0 3378 +14170 Fgf15 fibroblast growth factor 15 Novel U 0.01947179134896431 -0.062293923988031845 1.0 3379 +71801 Plekhf2 pleckstrin homology domain containing, family F (with FYVE domain) member 2 Novel U 0.01947131729091111 -0.06229883426576309 1.0 3380 +14168 Fgf13 fibroblast growth factor 13 Novel U 0.019455378720946773 -0.062463925449501426 1.0 3381 +69368 Wdfy1 WD repeat and FYVE domain containing 1 Novel U 0.019450832652523016 -0.06251101347679075 1.0 3382 +14700 Gng10 guanine nucleotide binding protein (G protein), gamma 10 Novel N 0.019435534889572198 -0.06266946720254847 1.0 3383 +434341 Nlrc5 NLR family, CARD domain containing 5 Novel U 0.019433626571811687 -0.06268923349517927 1.0 3384 +20353 Sema4c sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4C Novel U 0.019431428824281022 -0.06271199769185484 1.0 3385 +18976 Pomc pro-opiomelanocortin-alpha Novel U 0.019429513576253273 -0.06273183576796589 1.0 3386 +16912 Psmb9 proteasome (prosome, macropain) subunit, beta type 9 (large multifunctional peptidase 2) Novel U 0.01937271415409277 -0.06332016231552398 1.0 3387 +11603 Agrn agrin Novel U 0.019369330353256983 -0.06335521161334459 1.0 3388 +258732 Or5p69 olfactory receptor family 5 subfamily P member 69 Novel U 0.019362362702292937 -0.063427382312981 1.0 3389 +54524 Syt6 synaptotagmin VI Novel U 0.01936146298650566 -0.06343670153952903 1.0 3390 +16145 Igtp interferon gamma induced GTPase Novel U 0.01936012071890937 -0.06345060470316674 1.0 3391 +11302 Aatk apoptosis-associated tyrosine kinase Novel U 0.019355053593459397 -0.0635030898220048 1.0 3392 +12483 Cd22 CD22 antigen Novel U 0.019352781672496006 -0.06352662230465822 1.0 3393 +15552 Htr1d 5-hydroxytryptamine (serotonin) receptor 1D Novel U 0.019335227187461678 -0.06370845108357119 1.0 3394 +14945 Gzmk granzyme K Novel U 0.019327321695966564 -0.06379033590459855 1.0 3395 +50929 Il22 interleukin 22 Novel U 0.01932437711379068 -0.06382083578997845 1.0 3396 +229615 Pias3 protein inhibitor of activated STAT 3 Novel U 0.01931217496011953 -0.06394722529658001 1.0 3397 +14764 Ptgdr2 prostaglandin D2 receptor 2 Novel U 0.019304416105582877 -0.06402759125681207 1.0 3398 +18203 Ntan1 N-terminal Asn amidase Novel U 0.01930330186815993 -0.06403913249141036 1.0 3399 +72925 Marchf1 membrane associated ring-CH-type finger 1 Novel U 0.019299792819285046 -0.06407547910430265 1.0 3400 +14109 Fau FAU ubiquitin like and ribosomal protein S30 fusion Novel N 0.019299168289424094 -0.06408194796407207 1.0 3401 +258694 Or5b12b olfactory receptor family 5 subfamily B member 12B Novel U 0.019283972657858785 -0.06423934381629608 1.0 3402 +244373 Erlin2 ER lipid raft associated 2 Novel U 0.019238476393394516 -0.06471059262800787 1.0 3403 +19679 Pitpnm2 phosphatidylinositol transfer protein, membrane-associated 2 Novel U 0.019228554694501684 -0.06481336125898154 1.0 3404 +258453 Or4c29 olfactory receptor family 4 subfamily C member 29 Novel U 0.019228238054983075 -0.06481664100070632 1.0 3405 +258665 Or6c217 olfactory receptor family 6 subfamily C member 217 Novel U 0.0192096283819738 -0.06500939938197636 1.0 3406 +258416 Or8b101 olfactory receptor family 8 subfamily B member 101 Novel U 0.019205636372960487 -0.06505074848010603 1.0 3407 +100041840 Gm10408 predicted gene 10408 Novel U 0.01920369021888973 -0.06507090667999454 1.0 3408 +244562 Abcc12 ATP-binding cassette, sub-family C member 12 Novel U 0.019188714571895017 -0.06522602393926794 1.0 3409 +258679 Or5an6 olfactory receptor family 5 subfamily AN member 6 Novel U 0.019159233822957963 -0.06553138456763052 1.0 3410 +18330 Or2t1 olfactory receptor family 2 subfamily T member 1 Novel U 0.019142465396519197 -0.06570507137745095 1.0 3411 +258215 Or5p78 olfactory receptor family 5 subfamily P member 78 Novel U 0.019132579587327878 -0.06580746826407617 1.0 3412 +18315 Or7e178 olfactory receptor family 7 subfamily E member 178 Novel U 0.019126492984594727 -0.06587051309509985 1.0 3413 +634104 Or10ad1 olfactory receptor family 10 subfamily AD member 1 Novel U 0.019126243703738062 -0.06587309513801852 1.0 3414 +14299 Ncs1 neuronal calcium sensor 1 Novel U 0.01911010978745558 -0.06604020971249855 1.0 3415 +66480 Rpl15 ribosomal protein L15 Novel U 0.019093621866096987 -0.06621099105991965 1.0 3416 +258343 Or1e1f olfactory receptor family 1 subfamily E member 1F Novel U 0.019092885514253248 -0.06621861816811084 1.0 3417 +23991 Cib1 calcium and integrin binding 1 Novel U 0.019090869495516034 -0.06623950002391785 1.0 3418 +18739 Pitpnm1 phosphatidylinositol transfer protein, membrane-associated 1 Novel U 0.01908685571908691 -0.06628107458822491 1.0 3419 +635895 Gm7168 predicted gene 7168 Novel U 0.019085634811055505 -0.06629372071347904 1.0 3420 +56697 Akap10 A kinase anchor protein 10 Novel N 0.019083443902007356 -0.0663164140773775 1.0 3421 +17920 Myo6 myosin VI Novel U 0.01907559959805242 -0.06639766511987515 1.0 3422 +71951 Gpc2 glypican 2 cerebroglycan Novel U 0.019072543321584003 -0.06642932193106532 1.0 3423 +20305 Ccl6 C-C motif chemokine ligand 6 Novel U 0.01906843399889966 -0.06647188616034304 1.0 3424 +100273 Osbpl9 oxysterol binding protein-like 9 Novel N 0.019056078420742414 -0.06659986483272805 1.0 3425 +57764 Ntn4 netrin 4 Novel U 0.01903039904239966 -0.06686585098943822 1.0 3426 +329460 Or4s2b olfactory receptor family 4 subfamily S member 2B Novel U 0.01901085706865378 -0.06706826611109026 1.0 3427 +215748 Cnksr3 Cnksr family member 3 Novel U 0.019004818822950627 -0.06713081006158689 1.0 3428 +16709 Ktn1 kinectin 1 Novel U 0.01899915811391155 -0.06718944349972787 1.0 3429 +231225 Tapt1 transmembrane anterior posterior transformation 1 Novel U 0.018987515212522933 -0.0673100402895714 1.0 3430 +19358 Rad23a RAD23 homolog A, nucleotide excision repair protein Novel U 0.018976595881656715 -0.06742314235973002 1.0 3431 +22409 Wnt10a wingless-type MMTV integration site family, member 10A Novel U 0.01897376761266062 -0.06745243747701725 1.0 3432 +225020 Fez2 fasciculation and elongation protein zeta 2 Novel U 0.01896270904729471 -0.06756698173354657 1.0 3433 +56298 Atl2 atlastin GTPase 2 Novel U 0.01894594738602289 -0.06774059846999018 1.0 3434 +12048 Bcl2l1 BCL2-like 1 Novel U 0.018941442140484866 -0.06778726365517106 1.0 3435 +18132 Notch4 notch 4 Novel U 0.018939005868019658 -0.06781249848527754 1.0 3436 +101809 Spred3 sprouty-related EVH1 domain containing 3 Novel U 0.018930393933140298 -0.06790170062365584 1.0 3437 +258356 Or51f23 olfactory receptor family 51 subfamily F member 23 Novel U 0.018917797526791538 -0.06803217378653176 1.0 3438 +435864 Vmn2r9 vomeronasal 2, receptor 9 Novel U 0.0189114604455757 -0.06809781306544509 1.0 3439 +102638047 LOC102638047 sp110 nuclear body protein-like Novel U 0.01890904675142554 -0.06812281403010653 1.0 3440 +258365 Or12k8 olfactory receptor family 12 subfamily K member 8 Novel U 0.018906560141135727 -0.06814857025774548 1.0 3441 +57431 Dnajc4 DnaJ heat shock protein family (Hsp40) member C4 Novel U 0.01890209813234244 -0.0681947875981457 1.0 3442 +258420 Or5au1 olfactory receptor family 5 subfamily AU member 1 Novel U 0.018895956221408754 -0.06825840530969239 1.0 3443 +258154 Or5m11b olfactory receptor family 5 subfamily M member 11B Novel U 0.018892051381685173 -0.06829885151118456 1.0 3444 +257980 Or4f52 olfactory receptor family 4 subfamily F member 52 Novel U 0.01888947851956237 -0.06832550113247426 1.0 3445 +14175 Fgf4 fibroblast growth factor 4 Novel U 0.018887987852514092 -0.06834094141275729 1.0 3446 +102607 Snx19 sorting nexin 19 Novel U 0.018887967767997938 -0.06834114944751538 1.0 3447 +215855 Taar6 trace amine-associated receptor 6 Novel U 0.018869961370143986 -0.06852765912455817 1.0 3448 +14701 Gng12 guanine nucleotide binding protein (G protein), gamma 12 Novel N 0.018845039552148574 -0.06878579849609402 1.0 3449 +54612 Sfrp5 secreted frizzled-related sequence protein 5 Novel U 0.01883980888710674 -0.0688399775526485 1.0 3450 +18671 Abcb1a ATP-binding cassette, sub-family B member 1A Novel U 0.018834948520602177 -0.06889032106912682 1.0 3451 +69727 Usp46 ubiquitin specific peptidase 46 Novel N 0.018829956437195667 -0.06894202890494555 1.0 3452 +22026 Nr2c2 nuclear receptor subfamily 2, group C, member 2 Novel N 0.018824291946263418 -0.06900070151581167 1.0 3453 +57815 Afg2a AFG2 AAA ATPase homolog A Novel N 0.018820401833097297 -0.06904099518010579 1.0 3454 +258399 Or4f4b olfactory receptor family 4 subfamily F member 4B Novel U 0.01881315490969391 -0.0691160585744883 1.0 3455 +14126 Ms4a2 membrane-spanning 4-domains, subfamily A, member 2 Novel N 0.018811943094347385 -0.06912861051801131 1.0 3456 +210876 Vmn2r111 vomeronasal 2, receptor 111 Novel U 0.018794083902618827 -0.06931359543884642 1.0 3457 +279766 Rhbdd3 rhomboid domain containing 3 Novel U 0.018784220958712808 -0.06941575548759815 1.0 3458 +57890 Il17re interleukin 17 receptor E Novel U 0.018764095104350575 -0.06962421842548035 1.0 3459 +12123 Hrk harakiri, BCL2 interacting protein (contains only BH3 domain) Novel U 0.018752530434351336 -0.06974400489716442 1.0 3460 +26405 Map3k2 mitogen-activated protein kinase kinase kinase 2 Novel N 0.018735777990067447 -0.06991752616435001 1.0 3461 +257899 Or5g23 olfactory receptor family 5 subfamily G member 23 Novel U 0.01873325364841214 -0.06994367321223244 1.0 3462 +106025 Sharpin SHANK-associated RH domain interacting protein Novel U 0.01873081947271429 -0.06996888632409153 1.0 3463 +338367 Myo1d myosin ID Novel U 0.01872961805500384 -0.06998133056924187 1.0 3464 +12789 Cnga2 cyclic nucleotide gated channel alpha 2 Novel U 0.01872294583815271 -0.07005044117204857 1.0 3465 +15204 Herc2 HECT and RLD domain containing E3 ubiquitin protein ligase 2 Novel U 0.018715471249326175 -0.07012786271739997 1.0 3466 +234912 Cfap300 cilia and flagella associated protein 300 Novel N 0.018712147371077084 -0.07016229133903744 1.0 3467 +12822 Col18a1 collagen, type XVIII, alpha 1 Novel U 0.018705732449742905 -0.07022873688333768 1.0 3468 +259007 Or1e35 olfactory receptor family 1 subfamily E member 35 Novel U 0.018701967120265704 -0.070267738042284 1.0 3469 +16362 Irf1 interferon regulatory factor 1 Novel U 0.018699346454663066 -0.07029488281044638 1.0 3470 +218066 Or2b6 olfactory receptor family 2 subfamily B member 6 Novel U 0.01869702263337115 -0.07031895287499652 1.0 3471 +20309 Cxcl15 C-X-C motif chemokine ligand 15 Novel U 0.018685237169670167 -0.07044102632058508 1.0 3472 +320528 Vps13c vacuolar protein sorting 13C Novel U 0.018657212205365238 -0.07073130797958446 1.0 3473 +17167 Marco macrophage receptor with collagenous structure Novel N 0.01864318071957811 -0.07087664564810729 1.0 3474 +17210 Mcl1 myeloid cell leukemia sequence 1 Novel U 0.01863206231888443 -0.0709918096769947 1.0 3475 +27205 Podxl podocalyxin-like Novel U 0.018631281833510448 -0.07099989391884134 1.0 3476 +56431 Dstn destrin Novel U 0.01861941361234286 -0.07112282456354849 1.0 3477 +170743 Tlr7 toll-like receptor 7 Novel U 0.01861730486876627 -0.07114466686019359 1.0 3478 +258444 Or2ag1b olfactory receptor family 2 subfamily AG member 1B Novel U 0.018605936855600174 -0.0712624163668647 1.0 3479 +259001 Or5k17 olfactory receptor family 5 subfamily K member 17 Novel U 0.01859517531232799 -0.07137388407831133 1.0 3480 +258471 Or8c13 olfactory receptor family 8 subfamily C member 13 Novel U 0.018578782314637183 -0.07154368220950193 1.0 3481 +258600 Or13d1 olfactory receptor family 13 subfamily D member 1 Novel U 0.018560762649072908 -0.0717303293130521 1.0 3482 +109637 Upk1a uroplakin 1A Novel U 0.01854311558491779 -0.07191311702345482 1.0 3483 +268857 Nlrc3 NLR family, CARD domain containing 3 Novel U 0.018518165872246268 -0.07217154532712884 1.0 3484 +93735 Wnt16 wingless-type MMTV integration site family, member 16 Novel U 0.018517025213464634 -0.07218336023329186 1.0 3485 +22313 Vmn2r104 vomeronasal 2, receptor 104 Novel U 0.018514670523487018 -0.07220775003467375 1.0 3486 +18324 Or8d1 olfactory receptor family 8 subfamily D member 1 Novel U 0.01850446889622947 -0.07231341815444702 1.0 3487 +13549 Dyrk1b dual-specificity tyrosine phosphorylation regulated kinase 1b Novel U 0.01850390494922812 -0.07231925949894821 1.0 3488 +257951 Or5ak4 olfactory receptor family 5 subfamily AK member 4 Novel U 0.018491694792260864 -0.07244573190342778 1.0 3489 +381217 Entrep1 endosomal transmembrane epsin interactor 1 Novel U 0.01848522239053843 -0.07251277282770001 1.0 3490 +258650 Or2a56 olfactory receptor family 2 subfamily A member 56 Novel U 0.018484938739465332 -0.07251571087619063 1.0 3491 +118454 Gjc2 gap junction protein, gamma 2 Novel U 0.018457088165476025 -0.07280418620603359 1.0 3492 +56374 Tmem59 transmembrane protein 59 Novel U 0.01845601877351467 -0.07281526293281493 1.0 3493 +258527 Or2ad1 olfactory receptor family 2 subfamily AD member 1 Novel U 0.018443010788264012 -0.07294999921642677 1.0 3494 +258941 Or1n2 olfactory receptor family 1 subfamily N member 2 Novel U 0.018429420192312383 -0.07309077016252698 1.0 3495 +15930 Ido1 indoleamine 2,3-dioxygenase 1 Novel U 0.018425824823908 -0.0731280108702682 1.0 3496 +104836 Cbll1 Casitas B-lineage lymphoma-like 1 Novel N 0.018423175857520426 -0.07315544877703062 1.0 3497 +384061 Fndc5 fibronectin type III domain containing 5 Novel U 0.018419246500930388 -0.0731961489234196 1.0 3498 +211472 Or2y8 olfactory receptor family 2 subfamily Y member 8 Novel U 0.01841198678998987 -0.07327134477069133 1.0 3499 +74761 Mxra8 matrix-remodelling associated 8 Novel U 0.01839480671966616 -0.07344929537433995 1.0 3500 +21432 Tcl1 T cell lymphoma breakpoint 1 Novel U 0.01839364421217096 -0.07346133658875986 1.0 3501 +110829 Lims1 LIM and senescent cell antigen-like domains 1 Novel U 0.018383549495763596 -0.07356589732946141 1.0 3502 +19255 Ptpn2 protein tyrosine phosphatase, non-receptor type 2 Novel U 0.01837696402108879 -0.07363410945965723 1.0 3503 +259067 Or6b1 olfactory receptor family 6 subfamily B member 1 Novel U 0.018373901937253443 -0.07366582642336317 1.0 3504 +15958 Ifit2 interferon-induced protein with tetratricopeptide repeats 2 Novel U 0.018352366147303543 -0.07388889342771329 1.0 3505 +26441 Psma4 proteasome subunit alpha 4 Novel U 0.018341491680160076 -0.07400153080090648 1.0 3506 +70361 Lman1 lectin, mannose-binding, 1 Novel U 0.018340468387093845 -0.07401213003684755 1.0 3507 +56356 Gltp glycolipid transfer protein Novel N 0.01833819284522842 -0.0740357000246852 1.0 3508 +258552 Or7e174 olfactory receptor family 7 subfamily E member 174 Novel U 0.0183364547135312 -0.074053703535667 1.0 3509 +68839 Ankrd46 ankyrin repeat domain 46 Novel U 0.018327437253132663 -0.07414710609404203 1.0 3510 +258775 Or5h26 olfactory receptor family 5 subfamily H member 26 Novel U 0.018322262135132324 -0.07420070979616669 1.0 3511 +258386 Or8k24 olfactory receptor family 8 subfamily K member 24 Novel U 0.018321270731183628 -0.07421097872567664 1.0 3512 +243911 Kirrel2 kirre like nephrin family adhesion molecule 2 Novel U 0.018320201439422958 -0.07422205441458259 1.0 3513 +14761 Gpr27 G protein-coupled receptor 27 Novel N 0.01831628209599709 -0.07426265084494627 1.0 3514 +13199 Ddn dendrin Novel U 0.018314561049573994 -0.07428047738722032 1.0 3515 +78885 Coro7 coronin 7 Novel U 0.018310348788845254 -0.074324107845378 1.0 3516 +258475 Or8b40 olfactory receptor family 8 subfamily B member 40 Novel U 0.018308859048295014 -0.0743395385290248 1.0 3517 +13685 Eif4ebp1 eukaryotic translation initiation factor 4E binding protein 1 Novel U 0.01830874412821303 -0.07434072886745621 1.0 3518 +319899 Dock6 dedicator of cytokinesis 6 Novel U 0.018304345457700537 -0.07438629015202611 1.0 3519 +258330 Or4x13 olfactory receptor family 4 subfamily X member 13 Novel U 0.018303225037467383 -0.07439789542796929 1.0 3520 +18829 Ccl21a C-C motif chemokine ligand 21 (serine) Novel U 0.018280452751790664 -0.07463377001441018 1.0 3521 +76527 Il34 interleukin 34 Novel U 0.018276118160176633 -0.07467866757185629 1.0 3522 +14573 Gdnf glial cell line derived neurotrophic factor Novel U 0.018264788962479638 -0.07479601502917446 1.0 3523 +258639 Or9m2 olfactory receptor family 9 subfamily M member 2 Novel U 0.018245822885091096 -0.07499246503528878 1.0 3524 +20873 Plk4 polo like kinase 4 Novel U 0.018238697943683744 -0.0750662649441663 1.0 3525 +628475 Gm6882 predicted gene 6882 Novel U 0.018232703661169383 -0.07512835352539864 1.0 3526 +100126778 Esp8 exocrine gland secreted peptide 8 Novel U 0.0182085554683735 -0.07537847971254931 1.0 3527 +73689 Bloc1s2 biogenesis of lysosomal organelles complex-1, subunit 2 Novel U 0.018207822970652383 -0.07538606689986507 1.0 3528 +224997 Dlgap1 DLG associated protein 1 Novel U 0.018200082048363323 -0.07546624711846606 1.0 3529 +257915 Or9g20 olfactory receptor family 9 subfamily G member 20 Novel U 0.018192893612269966 -0.07554070470321395 1.0 3530 +18312 Or2c1 olfactory receptor family 2 subfamily C member 1 Novel U 0.018165098049869596 -0.07582861022482709 1.0 3531 +71213 Cage1 cancer antigen 1 Novel U 0.018164734530386566 -0.07583237554768225 1.0 3532 +12915 Atf6b activating transcription factor 6 beta Novel U 0.018143906704683205 -0.07604810948163979 1.0 3533 +22158 Tulp3 TUB like protein 3 Novel U 0.018134525544330756 -0.07614527923218142 1.0 3534 +258996 Or5ac19 olfactory receptor family 5 subfamily AC member 19 Novel U 0.018132145525949567 -0.0761699313843349 1.0 3535 +18073 Nid1 nidogen 1 Novel N 0.018118634430668613 -0.07630987886510168 1.0 3536 +258580 Or5m10 olfactory receptor family 5 subfamily M member 10 Novel U 0.018108976786603493 -0.07640991242485026 1.0 3537 +545655 Gm13287 predicted gene 13287 Novel U 0.018078654618017363 -0.07672398845027781 1.0 3538 +19337 Rab33a RAB33A, member RAS oncogene family Novel U 0.01805399877059642 -0.0769793729073466 1.0 3539 +258647 Or2a51 olfactory receptor family 2 subfamily A member 51 Novel U 0.01805274350405173 -0.07699237491695185 1.0 3540 +56419 Diaph3 diaphanous related formin 3 Novel N 0.01804035652344911 -0.07712067885483374 1.0 3541 +14219 Ccn2 cellular communication network factor 2 Novel U 0.018039813234310764 -0.07712630622586907 1.0 3542 +69754 Fbxo7 F-box protein 7 Novel U 0.01802327140333954 -0.07729764596728561 1.0 3543 +13837 Epha3 Eph receptor A3 Novel U 0.018016031483527026 -0.07737263681870409 1.0 3544 +14679 Gnai3 G protein subunit alpha i3 Novel U 0.0180038754544531 -0.0774985485682439 1.0 3545 +56632 Sphk2 sphingosine kinase 2 Novel U 0.017995087471266335 -0.07758957420920302 1.0 3546 +13176 Dcc deleted in colorectal carcinoma Novel U 0.01799200760748413 -0.07762147533701404 1.0 3547 +258434 Or10d1c olfactory receptor family 10 subfamily D member 1C Novel U 0.017983787131078503 -0.07770662276138991 1.0 3548 +19099 Mapk8ip1 mitogen-activated protein kinase 8 interacting protein 1 Novel N 0.017974808209572674 -0.07779962613518115 1.0 3549 +328829 9830107B12Rik RIKEN cDNA 9830107B12 gene Novel U 0.01796553780301532 -0.07789564870155402 1.0 3550 +70584 Pak4 p21 (RAC1) activated kinase 4 Novel U 0.017963978148754604 -0.07791180354911564 1.0 3551 +259017 Or5ar1 olfactory receptor family 5 subfamily AR member 1 Novel U 0.017959211590657498 -0.07796117540119332 1.0 3552 +258148 Or6c7 olfactory receptor family 6 subfamily C member 7 Novel U 0.017947368746329528 -0.07808384319342991 1.0 3553 +257933 Or8k39 olfactory receptor family 8 subfamily K member 39 Novel U 0.01794637525595787 -0.0780941337340403 1.0 3554 +77480 Kidins220 kinase D-interacting substrate 220 Novel U 0.01793506799595849 -0.07821125396140775 1.0 3555 +320615 Dop1a DOP1 leucine zipper like protein A Novel U 0.01791664932148237 -0.0784020339861501 1.0 3556 +12388 Ctnnd1 catenin delta 1 Novel U 0.017911682019556827 -0.07845348513620361 1.0 3557 +666806 Eif1ad8 eukaryotic translation initiation factor 1A domain containing 8 Novel U 0.01790954809842916 -0.07847558822109509 1.0 3558 +238037 Wdcp WD repeat and coiled coil containing Novel U 0.017905586266309344 -0.07851662474795394 1.0 3559 +224916 Vmn2r120 vomeronasal 2, receptor 120 Novel U 0.017903899897905695 -0.07853409209644256 1.0 3560 +667277 C1rb complement component 1, r subcomponent B Novel U 0.01790053919307619 -0.07856890216658935 1.0 3561 +258485 Or4l15 olfactory receptor family 4 subfamily L member 15 Novel U 0.017889043298234205 -0.07868797626745545 1.0 3562 +28185 Tomm70a translocase of outer mitochondrial membrane 70A Novel U 0.017880014775562333 -0.07878149340849402 1.0 3563 +22644 Rnf103 ring finger protein 103 Novel U 0.017866718967542085 -0.0789192109508916 1.0 3564 +242960 Fbxl5 F-box and leucine-rich repeat protein 5 Novel U 0.017858770518002293 -0.07900154072993357 1.0 3565 +54651 Usp27x ubiquitin specific peptidase 27, X chromosome Novel U 0.017858519511206993 -0.07900414065006788 1.0 3566 +66196 Myo19 myosin XIX Novel U 0.017832316403235283 -0.07927555158105809 1.0 3567 +259046 Or56a3 olfactory receptor family 56 subfamily A member 3 Novel U 0.017830892542760438 -0.07929029988104964 1.0 3568 +18607 Pdpk1 3-phosphoinositide dependent protein kinase 1 Novel U 0.01782885470755603 -0.07931140771110669 1.0 3569 +100502846 Gm19410 predicted gene, 19410 Novel U 0.01782416649735676 -0.07935996803823413 1.0 3570 +66795 Atg10 autophagy related 10 Novel U 0.017823929783630357 -0.07936241991123065 1.0 3571 +236733 Usp11 ubiquitin specific peptidase 11 Novel N 0.01780673486746391 -0.07954052428763028 1.0 3572 +381438 Gm5148 predicted gene 5148 Novel U 0.017775923677457353 -0.07985966558085492 1.0 3573 +258065 Or5af1 olfactory receptor family 5 subfamily AF member 1 Novel U 0.01775937842866847 -0.0800310407239144 1.0 3574 +258120 Or5b109 olfactory receptor family 5 subfamily B member 109 Novel U 0.017754279148690447 -0.08008385889829699 1.0 3575 +15978 Ifng interferon gamma Novel U 0.017725674377552618 -0.08038014617741142 1.0 3576 +667271 Or5b105 olfactory receptor family 5 subfamily B member 105 Novel U 0.017722543823865535 -0.08041257234959082 1.0 3577 +258822 Or7d9 olfactory receptor family 7 subfamily D member 9 Novel U 0.01771713089757338 -0.08046863926218459 1.0 3578 +104318 Csnk1d casein kinase 1, delta Novel U 0.017713932134972122 -0.08050177194005477 1.0 3579 +338337 Cog3 component of oligomeric golgi complex 3 Novel U 0.01770871440167129 -0.08055581705006105 1.0 3580 +56092 Cts7 cathepsin 7 Novel U 0.017708398645062053 -0.08055908764663959 1.0 3581 +258806 Or8b48 olfactory receptor family 8 subfamily B member 48 Novel U 0.017705146702052445 -0.08059277116543123 1.0 3582 +66917 Chordc1 cysteine and histidine rich domain containing 1 Novel U 0.017696258467237356 -0.08068483520946096 1.0 3583 +23892 Grem1 gremlin 1, DAN family BMP antagonist Novel U 0.017679812689793514 -0.08085518003159847 1.0 3584 +16400 Itga3 integrin alpha 3 Novel U 0.017677922415287713 -0.08087475943279013 1.0 3585 +11938 Atp2a2 ATPase, Ca++ transporting, cardiac muscle, slow twitch 2 Novel U 0.017676259306457286 -0.08089198585938392 1.0 3586 +16363 Irf2 interferon regulatory factor 2 Novel N 0.017667650152472417 -0.08098115919334853 1.0 3587 +18317 Or6a2 olfactory receptor family 6 subfamily A member 2 Novel U 0.017660075964611614 -0.08105961238222271 1.0 3588 +259035 Or10a2 olfactory receptor family 10 subfamily A member 2 Novel U 0.017659465561926404 -0.0810659349131702 1.0 3589 +213002 Ifitm6 interferon induced transmembrane protein 6 Novel U 0.017657179521807183 -0.08108961364157558 1.0 3590 +71395 Cdcp3 CUB domain containing protein 3 Novel U 0.017653084935624695 -0.08113202523065151 1.0 3591 +20743 Sptbn2 spectrin beta, non-erythrocytic 2 Novel N 0.01763645630004282 -0.08130426409137165 1.0 3592 +100502766 Kifc1 kinesin family member C1 Novel U 0.01762070667879465 -0.08146739815051929 1.0 3593 +258160 Or52l1 olfactory receptor family 52 subfamily L member 1 Novel U 0.01761788541490943 -0.08149662070909834 1.0 3594 +258937 Or2l5 olfactory receptor family 2 subfamily L member 5 Novel U 0.017616745582846285 -0.08150842705213843 1.0 3595 +67181 Ctdnep1 CTD nuclear envelope phosphatase 1 Novel U 0.017614756474721896 -0.08152903016870244 1.0 3596 +70296 Tbc1d13 TBC1 domain family, member 13 Novel U 0.01760992049154532 -0.08157912112347104 1.0 3597 +14681 Gnao1 guanine nucleotide binding protein, alpha O Novel N 0.017604684921505666 -0.08163335098583169 1.0 3598 +258338 Or4c12 olfactory receptor family 4 subfamily C member 12 Novel U 0.017603417591455676 -0.08164647794882825 1.0 3599 +11944 Atp4a ATPase, H+/K+ exchanging, gastric, alpha polypeptide Novel N 0.017584045797029484 -0.08184713035868131 1.0 3600 +403178 Plcxd1 phosphatidylinositol-specific phospholipase C, X domain containing 1 Novel U 0.017582936252932082 -0.0818586229799679 1.0 3601 +258159 Or10ak9 olfactory receptor family 10 subfamily AK member 9 Novel U 0.01757633014748776 -0.08192704880299619 1.0 3602 +19762 Rit2 Ras-like without CAAX 2 Novel U 0.017557263418291235 -0.08212454135722883 1.0 3603 +257972 Or5h25 olfactory receptor family 5 subfamily H member 25 Novel U 0.017552664624537216 -0.08217217551175576 1.0 3604 +257902 Or2ag20 olfactory receptor family 2 subfamily AG member 20 Novel U 0.01754918217281678 -0.08220824663219659 1.0 3605 +258835 Or10ag60 olfactory receptor family 10 subfamily AG member 60 Novel U 0.01754614711215982 -0.08223968369070914 1.0 3606 +56436 Adrm1 adhesion regulating molecule 1 26S proteasome ubiquitin receptor Novel U 0.0175446389776923 -0.08225530489794648 1.0 3607 +114715 Spred1 sprouty protein with EVH-1 domain 1, related sequence Novel U 0.017542898352536463 -0.08227333423609066 1.0 3608 +14783 Grb10 growth factor receptor bound protein 10 Novel U 0.017528974841000463 -0.08241755351086977 1.0 3609 +258189 Or51v8 olfactory receptor family 51 subfamily V member 8 Novel U 0.017524669502805932 -0.08246214806235835 1.0 3610 +319939 Tns3 tensin 3 Novel U 0.017517390266715192 -0.08253754615049425 1.0 3611 +70335 Reep6 receptor accessory protein 6 Novel U 0.01751340840449055 -0.08257879014852042 1.0 3612 +239167 Synb syncytin b Novel U 0.01750888074265185 -0.08262568752100681 1.0 3613 +20702 Serpina1c serine (or cysteine) peptidase inhibitor, clade A, member 1C Novel U 0.017507495464380164 -0.08264003618780637 1.0 3614 +381484 Gm5150 predicted gene 5150 Novel U 0.017504807244312078 -0.08266788068290112 1.0 3615 +67295 Rab3c RAB3C, member RAS oncogene family Novel U 0.017501090204782837 -0.08270638165615392 1.0 3616 +18554 Pcsk7 proprotein convertase subtilisin/kexin type 7 Novel N 0.017491982742506428 -0.08280071645102127 1.0 3617 +20170 Hps6 HPS6, biogenesis of lysosomal organelles complex 2 subunit 3 Novel U 0.01748165593361734 -0.0829076811980189 1.0 3618 +258151 Or9i1b olfactory receptor family 9 subfamily I member 1B Novel U 0.017472983713176994 -0.0829975077722561 1.0 3619 +69116 Ubr4 ubiquitin protein ligase E3 component n-recognin 4 Novel U 0.017471644435303912 -0.0830113799684391 1.0 3620 +109685 Hyal3 hyaluronoglucosaminidase 3 Novel U 0.017458586161930433 -0.08314663713477399 1.0 3621 +56636 Fgf21 fibroblast growth factor 21 Novel U 0.017457766994146348 -0.08315512204775286 1.0 3622 +258902 Or4c115 olfactory receptor family 4 subfamily C member 115 Novel U 0.017451460389937664 -0.08322044564682796 1.0 3623 +18166 Npy1r neuropeptide Y receptor Y1 Novel N 0.017449739798679656 -0.08323826747451701 1.0 3624 +100039042 Eif1ad3 eukaryotic translation initiation factor 1A domain containing 3 Novel U 0.017445166326309214 -0.08328563935098525 1.0 3625 +258899 Or4c109 olfactory receptor family 4 subfamily C member 109 Novel U 0.017444670226436105 -0.08329077793716251 1.0 3626 +67543 Pabpc6 poly(A) binding protein, cytoplasmic 6 Novel U 0.017442771118170167 -0.08331044883815127 1.0 3627 +258173 Or2d3b olfactory receptor family 2 subfamily D member 3B Novel U 0.017439281011928306 -0.0833465992438734 1.0 3628 +15976 Ifnar2 interferon (alpha and beta) receptor 2 Novel U 0.01743810376140385 -0.0833587931661057 1.0 3629 +19214 Ptgdr prostaglandin D receptor Novel U 0.017430642173404075 -0.08343608004932088 1.0 3630 +242557 Atg4c autophagy related 4C, cysteine peptidase Novel U 0.01742503513694886 -0.0834941575486026 1.0 3631 +224727 Bag6 BCL2-associated athanogene 6 Novel U 0.017414993933355525 -0.08359816400533558 1.0 3632 +258753 Or52e5 olfactory receptor family 52 subfamily E member 5 Novel U 0.017404400993313456 -0.08370788533006719 1.0 3633 +20663 Sos2 SOS Ras/Rho guanine nucleotide exchange factor 2 Novel U 0.017379626230254755 -0.08396450151140276 1.0 3634 +70784 Rasl12 RAS-like, family 12 Novel U 0.01737715904738377 -0.08399005651047615 1.0 3635 +258811 Or8d2b olfactory receptor family 8 subfamily D member 2D Novel U 0.017368475554603885 -0.08407999984323576 1.0 3636 +320148 Trem6l triggering receptor expressed on myeloid cells-like 6 Novel U 0.017367439892011106 -0.0840907272023262 1.0 3637 +15982 Ifrd1 interferon-related developmental regulator 1 Novel N 0.01735098470183057 -0.08426116952128096 1.0 3638 +258820 Or4p22 olfactory receptor family 4 subfamily P member 22 Novel U 0.017340149559505504 -0.08437339956929787 1.0 3639 +216984 Evi2b ecotropic viral integration site 2b Novel U 0.01733918138365225 -0.0843834279029588 1.0 3640 +66120 Fkbp11 FK506 binding protein 11 Novel U 0.01732576018803858 -0.08452244420592717 1.0 3641 +258479 Or5ac21 olfactory receptor family 5 subfamily AC member 21 Novel U 0.017325526004846218 -0.0845248698677353 1.0 3642 +16323 Inhba inhibin beta-A Novel U 0.01732164376631132 -0.08456508196685805 1.0 3643 +217207 Dhx8 DEAH-box helicase 8 Novel N 0.017313114122924522 -0.08465343173266159 1.0 3644 +11472 Actn2 actinin alpha 2 Novel U 0.01731120475879695 -0.08467320886352803 1.0 3645 +258634 Or5d37 olfactory receptor family 5 subfamily D member 37 Novel U 0.017309717737167843 -0.0846886113846791 1.0 3646 +16156 Il11 interleukin 11 Novel U 0.017296903600151563 -0.08482133979465167 1.0 3647 +100042776 Eif1ad6 eukaryotic translation initiation factor 1A domain containing 6 Novel U 0.017283955362892907 -0.08495545721052647 1.0 3648 +110596 Arhgef28 Rho guanine nucleotide exchange factor 28 Novel U 0.017265926130009834 -0.08514220341205024 1.0 3649 +231646 Myo1h myosin 1H Novel U 0.017264385804220125 -0.08515815805594457 1.0 3650 +56093 Pfpl pore forming protein-like Novel U 0.017254416974415196 -0.0852614148673564 1.0 3651 +99237 Tm9sf4 transmembrane 9 superfamily member 4 Novel U 0.01724358842797808 -0.08537357659538275 1.0 3652 +436002 Or52a20 olfactory receptor family 52 subfamily A member 20 Novel U 0.01724104915597871 -0.08539987829127817 1.0 3653 +14767 Nmur1 neuromedin U receptor 1 Novel N 0.01722751742153956 -0.08554003955176706 1.0 3654 +70772 Ggnbp1 gametogenetin binding protein 1 Novel U 0.017221127445016488 -0.08560622671853389 1.0 3655 +20112 Rps6ka2 ribosomal protein S6 kinase, polypeptide 2 Novel U 0.017218677092301883 -0.08563160739140077 1.0 3656 +380921 Dgkh diacylglycerol kinase, eta Novel U 0.0172144170848261 -0.08567573240879472 1.0 3657 +17344 Pias2 protein inhibitor of activated STAT 2 Novel N 0.01720119471967657 -0.08581268923235172 1.0 3658 +100503048 Or7g26 olfactory receptor family 7 subfamily G member 26 Novel U 0.01719970943632328 -0.08582807374849905 1.0 3659 +258700 Or5b99 olfactory receptor family 5 subfamily B member 99 Novel U 0.017190936173050016 -0.08591894692107803 1.0 3660 +258575 Or8k1 olfactory receptor family 8 subfamily K member 1 Novel U 0.017189062776138585 -0.08593835150470201 1.0 3661 +54631 Nphs1 nephrosis 1, nephrin Novel U 0.017180257036016097 -0.08602956107141764 1.0 3662 +407821 Znrf3 zinc and ring finger 3 Novel U 0.01717850671627803 -0.08604769082572589 1.0 3663 +64899 Lpin3 lipin 3 Novel U 0.017175990832689347 -0.08607375026523224 1.0 3664 +244178 Ubqln3 ubiquilin 3 Novel U 0.017174881188449547 -0.0860852439237905 1.0 3665 +56550 Ube2d2a ubiquitin-conjugating enzyme E2D 2A Novel U 0.017174006495138346 -0.08609430396835394 1.0 3666 +115487164 Vsig10l2 V-set and immunoglobulin domain containing 10 like 2 Novel U 0.017172411167532077 -0.0861108283192561 1.0 3667 +404317 Or52j3 olfactory receptor family 52 subfamily J member 3 Novel U 0.017164272623154585 -0.08619512709437792 1.0 3668 +259085 Or51ag1 olfactory receptor family 51 subfamily AG member 1 Novel U 0.017163631418891864 -0.08620176866705273 1.0 3669 +16174 Il18rap interleukin 18 receptor accessory protein Novel U 0.017157780309073015 -0.0862623742702115 1.0 3670 +110213 Tmbim6 transmembrane BAX inhibitor motif containing 6 Novel U 0.017155995053718693 -0.08628086588648445 1.0 3671 +73407 Spmip8 sperm microtubule inner protein 8 Novel U 0.017146306475217254 -0.0863812198641075 1.0 3672 +56228 Ube2j1 ubiquitin-conjugating enzyme E2J 1 Novel U 0.01714549820156006 -0.08638959193607816 1.0 3673 +381375 Pjvk pejvakin Novel N 0.017123355854952286 -0.08661894163435105 1.0 3674 +14748 Gpr3 G-protein coupled receptor 3 Novel U 0.017114901721422555 -0.08670650927153734 1.0 3675 +258742 Or8g17 olfactory receptor family 8 subfamily G member 17 Novel U 0.017107580864544933 -0.08678233846641555 1.0 3676 +17165 Mapkapk5 MAP kinase-activated protein kinase 5 Novel U 0.017096339080241354 -0.08689878049867827 1.0 3677 +258500 Or8g27 olfactory receptor family 8 subfamily G member 27 Novel U 0.017073961328540065 -0.08713056851517126 1.0 3678 +14763 Gpr37 G protein-coupled receptor 37 Novel U 0.017071785128383442 -0.08715310952485485 1.0 3679 +18002 Nedd8 neural precursor cell expressed, developmentally down-regulated gene 8 Novel U 0.01706978398430096 -0.08717383730947714 1.0 3680 +435804 Or10ak12 olfactory receptor family 10 subfamily AK member 12 Novel U 0.01706067993529629 -0.087268136749788 1.0 3681 +67425 Eps8l1 EPS8-like 1 Novel U 0.017047131920912076 -0.08740846663741272 1.0 3682 +81006 Gpr63 G protein-coupled receptor 63 Novel U 0.017039631065810325 -0.08748616024797932 1.0 3683 +192292 Nrbp1 nuclear receptor binding protein 1 Novel N 0.01703720412234874 -0.08751129844857297 1.0 3684 +258611 Or14c45 olfactory receptor family 14 subfamily C member 45 Novel U 0.017033358212403062 -0.08755113425736281 1.0 3685 +216080 Ube2d1 ubiquitin-conjugating enzyme E2D 1 Novel U 0.017032957129331658 -0.08755528866263153 1.0 3686 +213788 Chrm5 cholinergic receptor, muscarinic 5 Novel N 0.017028492257651948 -0.08760153565671522 1.0 3687 +258261 Or2t46 olfactory receptor family 2 subfamily T member 46 Novel U 0.017026940063827694 -0.08761761322932121 1.0 3688 +258008 Or10g3b olfactory receptor family 10 subfamily G member 3B Novel U 0.01702353579145064 -0.0876528745706933 1.0 3689 +16975 Lrp8 low density lipoprotein receptor-related protein 8, apolipoprotein e receptor Novel U 0.01701877872621266 -0.0877021480960482 1.0 3690 +258656 Or1l4 olfactory receptor family 1 subfamily L member 4 Novel U 0.017004282515347444 -0.08785229937165286 1.0 3691 +66615 Atg4b autophagy related 4B, cysteine peptidase Novel U 0.016997132522764757 -0.087926358759781 1.0 3692 +66610 Abi3 ABI family member 3 Novel U 0.01698933636255815 -0.08800711113091607 1.0 3693 +66691 Gapvd1 GTPase activating protein and VPS9 domains 1 Novel U 0.016983108625886364 -0.08807161782263662 1.0 3694 +258284 Or14j3 olfactory receptor family 14 subfamily J member 3 Novel U 0.016982559353227004 -0.08807730717078589 1.0 3695 +258525 Or5d41 olfactory receptor family 5 subfamily D member 41 Novel U 0.01698203331278104 -0.08808275588043255 1.0 3696 +56469 Pias1 protein inhibitor of activated STAT 1 Novel U 0.01697996061102708 -0.08810422485706368 1.0 3697 +257936 Or5m11 olfactory receptor family 5 subfamily M member 11 Novel U 0.016972058254310845 -0.08818607720815445 1.0 3698 +227333 Dgkd diacylglycerol kinase, delta Novel U 0.01697153008435005 -0.08819154797524571 1.0 3699 +69306 Efcab9 EF-hand calcium binding domain 9 Novel U 0.01696963389962326 -0.0882111885943121 1.0 3700 +228598 Ebf4 early B cell factor 4 Novel N 0.01696200888387095 -0.08829016825681564 1.0 3701 +11784 Apba2 amyloid beta precursor protein binding family A member 2 Novel N 0.01694858013773895 -0.08842926276780465 1.0 3702 +13644 Efs embryonal Fyn-associated substrate Novel N 0.016930033189950542 -0.08862137144329892 1.0 3703 +12301 Cacybp calcyclin binding protein Novel U 0.01692261818951819 -0.08869817577402221 1.0 3704 +269589 Sytl1 synaptotagmin-like 1 Novel U 0.016888761776860058 -0.08904885938336554 1.0 3705 +109700 Itga1 integrin alpha 1 Novel N 0.016886831753240912 -0.08906885050456655 1.0 3706 +259068 Or2y17 olfactory receptor family 2 subfamily Y member 17 Novel U 0.016883344260449216 -0.08910497384025778 1.0 3707 +258264 Or11h4b olfactory receptor family 11 subfamily H member 4B Novel U 0.016882549294975197 -0.08911320806650459 1.0 3708 +235380 Dmxl2 Dmx-like 2 Novel U 0.016877141329254806 -0.08916922359765911 1.0 3709 +546989 Or52d13 olfactory receptor family 52 subfamily D member 13 Novel U 0.01686272477307637 -0.08931854981263661 1.0 3710 +75717 Cul5 cullin 5 Novel U 0.01685925260853075 -0.08935451437885888 1.0 3711 +12828 Col4a3 collagen, type IV, alpha 3 Novel U 0.016857437974842873 -0.08937331029494504 1.0 3712 +170639 Or51e2 olfactory receptor family 51 subfamily E member 2 Novel U 0.016853582130085237 -0.08941324900819056 1.0 3713 +21981 Ppp1r13b protein phosphatase 1, regulatory subunit 13B Novel N 0.016851170212141636 -0.08943823157496285 1.0 3714 +30931 Tor1a torsin family 1, member A (torsin A) Novel U 0.016849963760754774 -0.089450727958768 1.0 3715 +75007 Mindy1 MINDY lysine 48 deubiquitinase 1 Novel U 0.01683996219180813 -0.0895543238811335 1.0 3716 +27406 Abcf3 ATP-binding cassette, sub-family F member 3 Novel U 0.01683754263033736 -0.08957938561930893 1.0 3717 +211651 Fancd2 Fanconi anemia, complementation group D2 Novel U 0.01682170597977666 -0.08974342112521483 1.0 3718 +107527 Il1rl2 interleukin 1 receptor-like 2 Novel U 0.01681847341738534 -0.08977690390019936 1.0 3719 +18196 Nsg1 neuron specific gene family member 1 Novel N 0.016817839439458294 -0.08978347062272679 1.0 3720 +11551 Adra2a adrenergic receptor, alpha 2a Novel U 0.016817207738327882 -0.08979001376226954 1.0 3721 +321020 Fpr-rs6 formyl peptide receptor, related sequence 6 Novel U 0.01681493220434279 -0.08981358366848297 1.0 3722 +19219 Ptger4 prostaglandin E receptor 4 (subtype EP4) Novel U 0.016803109491382383 -0.08993604294067611 1.0 3723 +258437 Or2q1 olfactory receptor family 2 subfamily Q member 1 Novel U 0.016796755977098593 -0.0900018524327671 1.0 3724 +12215 Bsg basigin Novel U 0.016794755272065386 -0.09002257566973142 1.0 3725 +94254 Rcc1l reculator of chromosome condensation 1 like Novel U 0.01678552815757939 -0.0901181498182523 1.0 3726 +20084 Rps18 ribosomal protein S18 Novel N 0.016785204093914666 -0.0901215064590385 1.0 3727 +258677 Or5a1 olfactory receptor family 5 subfamily A member 1 Novel U 0.016774686850082352 -0.09023044372491784 1.0 3728 +56015 Or13j1 olfactory receptor family 13 subfamily J member 1 Novel U 0.01676620343656212 -0.09031831464328322 1.0 3729 +70839 P2ry12 purinergic receptor P2Y, G-protein coupled 12 Novel U 0.016765898342136244 -0.090321474801317 1.0 3730 +19373 Rag1 recombination activating 1 Novel U 0.016738626227001858 -0.09060395847335649 1.0 3731 +330914 Arhgap32 Rho GTPase activating protein 32 Novel U 0.016720559330371258 -0.09079109479473903 1.0 3732 +258987 Or4b1 olfactory receptor family 4 subfamily B member 1 Novel U 0.016711552604615196 -0.09088438616404015 1.0 3733 +104859 Tecpr2 tectonin beta-propeller repeat containing 2 Novel U 0.016710920899315588 -0.0908909293467673 1.0 3734 +404335 Or2b7 olfactory receptor family 2 subfamily B member 7 Novel U 0.016702747408890627 -0.09097559009190002 1.0 3735 +22210 Ube2b ubiquitin-conjugating enzyme E2B Novel U 0.0167017458197482 -0.09098596451931182 1.0 3736 +53333 Tomm40 translocase of outer mitochondrial membrane 40 Novel U 0.016701271549465137 -0.09099087699531298 1.0 3737 +19288 Ptx3 pentraxin related gene Novel U 0.016686520456670136 -0.09114366832956756 1.0 3738 +78785 Clip4 CAP-GLY domain containing linker protein family, member 4 Novel U 0.016685511118777755 -0.09115412301827665 1.0 3739 +71435 Arhgap21 Rho GTPase activating protein 21 Novel U 0.016681268476715413 -0.09119806816528904 1.0 3740 +258644 Or5d38 olfactory receptor family 5 subfamily D member 38 Novel U 0.016678750875925314 -0.09122414539151122 1.0 3741 +100043638 Gm4565 predicted gene 4565 Novel U 0.016663662606096384 -0.09138042919439912 1.0 3742 +58182 Prokr1 prokineticin receptor 1 Novel U 0.016663212857571996 -0.09138508767483006 1.0 3743 +13611 S1pr4 sphingosine-1-phosphate receptor 4 Novel U 0.01666137459583348 -0.09140412832948801 1.0 3744 +670558 H60c histocompatibility 60c Novel U 0.01665040559812123 -0.09151774484720512 1.0 3745 +70729 Nos1ap nitric oxide synthase 1 (neuronal) adaptor protein Novel U 0.016645639494251865 -0.09156711199440677 1.0 3746 +232807 Ppp1r12c protein phosphatase 1, regulatory subunit 12C Novel U 0.01664434688698719 -0.0915805007779621 1.0 3747 +216438 Marchf9 membrane associated ring-CH-type finger 9 Novel U 0.016628323622114093 -0.09174646922878119 1.0 3748 +16513 Kcnj10 potassium inwardly-rectifying channel, subfamily J, member 10 Novel U 0.016626450588972847 -0.09176587004448557 1.0 3749 +73130 Tmed5 transmembrane p24 trafficking protein 5 Novel U 0.016606601650981406 -0.09197146469170224 1.0 3750 +404336 Or2y10 olfactory receptor family 2 subfamily Y member 10 Novel U 0.0165946754937421 -0.09209499543633569 1.0 3751 +435206 Taar7d trace amine-associated receptor 7D Novel U 0.016585804987219822 -0.09218687585129123 1.0 3752 +21899 Tlr6 toll-like receptor 6 Novel U 0.016580325507620716 -0.09224363212085059 1.0 3753 +259161 Or56b34 olfactory receptor family 56 subfamily B member 34 Novel U 0.016564491697500072 -0.09240763820557175 1.0 3754 +259112 Or10g9 olfactory receptor family 10 subfamily G member 9 Novel U 0.016557002469855277 -0.09248521137932145 1.0 3755 +11549 Adra1a adrenergic receptor, alpha 1a Novel U 0.01655300165378496 -0.09252665170065803 1.0 3756 +258060 Or4p20 olfactory receptor family 4 subfamily P member 20 Novel U 0.01654773193049176 -0.0925812353212962 1.0 3757 +235248 Or8g33 olfactory receptor family 8 subfamily G member 33 Novel U 0.016547278919561235 -0.09258592759362265 1.0 3758 +57765 Tbx21 T-box 21 Novel U 0.016533359628884633 -0.09273010314887886 1.0 3759 +75097 Ube2dnl2 ubiquitin-conjugating enzyme E2D N-terminal like 2 Novel U 0.01653267986144828 -0.09273714415763847 1.0 3760 +110786 Iglc2 immunoglobulin lambda constant 2 Novel U 0.01652444666987346 -0.09282242328531884 1.0 3761 +258613 Or14c39 olfactory receptor family 14 subfamily C member 39 Novel U 0.016524371916087188 -0.09282319758257965 1.0 3762 +69810 Clec4b1 C-type lectin domain family 4, member b1 Novel U 0.016522724145415994 -0.09284026513702434 1.0 3763 +56069 Il17b interleukin 17B Novel N 0.016520355563731375 -0.0928647988282507 1.0 3764 +258971 Or4a71 olfactory receptor family 4 subfamily A member 71 Novel U 0.016518613867752326 -0.09288283925794652 1.0 3765 +66871 Cpne8 copine VIII Novel U 0.016515124081237623 -0.09291898635194526 1.0 3766 +404327 Or10ag52 olfactory receptor family 10 subfamily AG member 52 Novel U 0.016510691030036037 -0.09296490375056259 1.0 3767 +105445 Dock9 dedicator of cytokinesis 9 Novel U 0.016508182989042667 -0.0929908819567245 1.0 3768 +18793 Plaur plasminogen activator, urokinase receptor Novel U 0.01650397267515704 -0.09303449224954521 1.0 3769 +338368 Pheta2 PH domain containing endocytic trafficking adaptor 2 Novel U 0.01650392878405828 -0.09303494687210331 1.0 3770 +12332 Capg capping actin protein, gelsolin like Novel U 0.016502251366228265 -0.09305232151084449 1.0 3771 +15563 Htr5a 5-hydroxytryptamine (serotonin) receptor 5A Novel N 0.016499207006310794 -0.09308385489079171 1.0 3772 +16622 Klk1b5 kallikrein 1-related peptidase b5 Novel U 0.016494112763428506 -0.09313662089110224 1.0 3773 +18214 Ddr2 discoidin domain receptor family, member 2 Novel U 0.016465698156133753 -0.0934309384593814 1.0 3774 +235441 Usp3 ubiquitin specific peptidase 3 Novel N 0.016464288535169805 -0.09344553926698718 1.0 3775 +75547 Akap13 A kinase anchor protein 13 Novel U 0.016445647008819467 -0.09363862758411683 1.0 3776 +12489 Cd33 CD33 molecule Novel U 0.016433823739158443 -0.09376109262259666 1.0 3777 +22422 Wnt7b wingless-type MMTV integration site family, member 7B Novel U 0.016432444366725557 -0.09377538011691207 1.0 3778 +56445 Dnaja2 DnaJ heat shock protein family (Hsp40) member A2 Novel U 0.016415905018408304 -0.09394669414308039 1.0 3779 +14739 S1pr2 sphingosine-1-phosphate receptor 2 Novel U 0.016412420527559278 -0.09398278638474813 1.0 3780 +666907 Ms4a4a membrane-spanning 4-domains, subfamily A, member 4A Novel U 0.016409897319940997 -0.09400892168631231 1.0 3781 +258521 Or7e169 olfactory receptor family 7 subfamily E member 169 Novel U 0.016409695790711686 -0.0940110091194446 1.0 3782 +192188 Stab2 stabilin 2 Novel U 0.01640481075653476 -0.09406160814286234 1.0 3783 +258055 Or6b13 olfactory receptor family 6 subfamily B member 13 Novel U 0.016404479183585834 -0.09406504256456745 1.0 3784 +18367 Or51b4 olfactory receptor family 51 subfamily B member 4 Novel U 0.016398853398521682 -0.09412331426132421 1.0 3785 +79202 Tnfrsf22 tumor necrosis factor receptor superfamily, member 22 Novel U 0.016381169995177452 -0.09430647837185319 1.0 3786 +327799 Usp44 ubiquitin specific peptidase 44 Novel U 0.016377348964979194 -0.09434605647703714 1.0 3787 +12361 Cask calcium/calmodulin dependent serine protein kinase Novel U 0.016375903627223617 -0.09436102723799648 1.0 3788 +258881 Or10j3b olfactory receptor family 10 subfamily J member 3B Novel U 0.016375370017728617 -0.09436655434760423 1.0 3789 +259088 Or51k1 olfactory receptor family 51 subfamily K member 1 Novel U 0.016351717038806775 -0.09461155112572689 1.0 3790 +637515 Nlrp1b NLR family, pyrin domain containing 1B Novel U 0.01634533081474035 -0.09467769942467112 1.0 3791 +13860 Eps8 epidermal growth factor receptor pathway substrate 8 Novel N 0.016339051825180227 -0.09474273699212421 1.0 3792 +80517 Herpud2 HERPUD family member 2 Novel U 0.016338953619310342 -0.09474375420529613 1.0 3793 +68795 Ubr3 ubiquitin protein ligase E3 component n-recognin 3 Novel U 0.016316442383302418 -0.0949769248478492 1.0 3794 +67838 Dnajb11 DnaJ heat shock protein family (Hsp40) member B11 Novel N 0.016313491175947027 -0.09500749335662062 1.0 3795 +258454 Or4c105 olfactory receptor family 4 subfamily C member 105 Novel U 0.01630797600530609 -0.09506461931281797 1.0 3796 +327978 Slfn5 schlafen 5 Novel U 0.016307724646716815 -0.09506722287682273 1.0 3797 +69296 Tmigd3 transmembrane and immunoglobulin domain containing 3 Novel U 0.01629889974110408 -0.0951586309590563 1.0 3798 +110784 Nr3c2 nuclear receptor subfamily 3, group C, member 2 Novel N 0.01629296836101767 -0.09522006799900773 1.0 3799 +22260 Nr1h2 nuclear receptor subfamily 1, group H, member 2 Novel U 0.016220301021033588 -0.09597275391775274 1.0 3800 +53320 Folh1 folate hydrolase 1 Novel N 0.016217052257591805 -0.09600640450268538 1.0 3801 +67116 Cuedc2 CUE domain containing 2 Novel U 0.016214995092309673 -0.09602771255305204 1.0 3802 +243655 Klre1 killer cell lectin-like receptor family E member 1 Novel U 0.01620703928499594 -0.09611011854367461 1.0 3803 +67488 Calcoco1 calcium binding and coiled coil domain 1 Novel N 0.016202883239653965 -0.09615316672470416 1.0 3804 +233046 Rasgrp4 RAS guanyl releasing protein 4 Novel U 0.016201373125557268 -0.09616880843687542 1.0 3805 +19697 Rela v-rel reticuloendotheliosis viral oncogene homolog A (avian) Novel U 0.01619904915461913 -0.09619288005145622 1.0 3806 +258351 Or51k2 olfactory receptor family 51 subfamily K member 2 Novel U 0.016193223101348776 -0.09625322611970936 1.0 3807 +22141 Tub TUB bipartite transcription factor Novel U 0.016177785505819525 -0.09641312822671774 1.0 3808 +258678 Or5a3 olfactory receptor family 5 subfamily A member 3 Novel U 0.016171901988607257 -0.0964740695045922 1.0 3809 +101358 Fbxl14 F-box and leucine-rich repeat protein 14 Novel U 0.01616780421045314 -0.09651651415600537 1.0 3810 +70192 Cd209g CD209g antigen Novel U 0.01616688936851155 -0.09652599005876251 1.0 3811 +16572 Kif5a kinesin family member 5A Novel N 0.016152963630760322 -0.09667023239260579 1.0 3812 +276865 Or2y6 olfactory receptor family 2 subfamily Y member 6 Novel U 0.016150603877642954 -0.09669467463782278 1.0 3813 +18761 Prkcq protein kinase C, theta Novel U 0.01614511998463998 -0.09675147662127431 1.0 3814 +100609 Nsun5 NOL1/NOP2/Sun domain family, member 5 Novel N 0.01614186638995778 -0.0967851772480364 1.0 3815 +20723 Serpinb9 serine (or cysteine) peptidase inhibitor, clade B, member 9 Novel U 0.01612913750978348 -0.09691702257044238 1.0 3816 +17921 Myo7a myosin VIIA Novel U 0.016126500066894443 -0.09694434111718576 1.0 3817 +77090 Ocel1 occludin/ELL domain containing 1 Novel U 0.01612420350700559 -0.09696812880901917 1.0 3818 +55994 Smad9 SMAD family member 9 Novel U 0.016122021235748574 -0.09699073270296105 1.0 3819 +213450 Wmp WAVE homology in membrane protrusions Novel U 0.016117265160982122 -0.09703999596904442 1.0 3820 +13041 Ctsw cathepsin W Novel N 0.016113944895359448 -0.09707438717121622 1.0 3821 +258837 Or55b10 olfactory receptor family 55 subfamily B member 10 Novel U 0.016106877836051216 -0.09714758753921383 1.0 3822 +20557 Slfn3 schlafen 3 Novel U 0.01610459833071968 -0.0971711985805032 1.0 3823 +257875 Or10ag54 olfactory receptor family 10 subfamily AG member 54 Novel U 0.01609552008723629 -0.09726523072807296 1.0 3824 +15550 Htr1a 5-hydroxytryptamine (serotonin) receptor 1A Novel N 0.016094162903546753 -0.09727928839211417 1.0 3825 +237310 Il22ra2 interleukin 22 receptor, alpha 2 Novel U 0.0160898738576913 -0.09732371418809016 1.0 3826 +30938 Fgd3 FYVE, RhoGEF and PH domain containing 3 Novel U 0.01608830566757774 -0.09733995744973495 1.0 3827 +78906 Misp mitotic spindle positioning Novel U 0.01607788234437173 -0.09744792188885451 1.0 3828 +258542 Or6c1b olfactory receptor family 6 subfamily C member 1B Novel U 0.016077479222950938 -0.09745209740727918 1.0 3829 +258533 Or2w2 olfactory receptor family 2 subfamily W member 2 Novel U 0.016056198834324586 -0.09767251897311585 1.0 3830 +226352 Epb41l5 erythrocyte membrane protein band 4.1 like 5 Novel U 0.01604078159442502 -0.0978322102371811 1.0 3831 +635253 Usp51 ubiquitin specific protease 51 Novel N 0.016029783771338558 -0.09794612532717671 1.0 3832 +238055 Apob apolipoprotein B Novel U 0.016028701671038637 -0.09795733368651116 1.0 3833 +12525 Cd8a CD8 subunit alpha Novel U 0.016022963836053672 -0.09801676599266428 1.0 3834 +69654 Dctn2 dynactin 2 Novel U 0.016016950350642066 -0.098079053476875 1.0 3835 +68991 Ssu72 Ssu72 RNA polymerase II CTD phosphatase homolog (yeast) Novel N 0.016016681986425675 -0.09808183318460638 1.0 3836 +18313 Or10j5 olfactory receptor family 10 subfamily J member 5 Novel U 0.016008643439773502 -0.09816509618657661 1.0 3837 +240832 Tor1aip2 torsin A interacting protein 2 Novel U 0.01600850021398639 -0.09816657971457123 1.0 3838 +66674 Spryd7 SPRY domain containing 7 Novel U 0.016006118313690025 -0.09819125135954021 1.0 3839 +72053 Tmub2 transmembrane and ubiquitin-like domain containing 2 Novel U 0.016004878197687197 -0.09820409644033089 1.0 3840 +20971 Sdc4 syndecan 4 Novel U 0.015987005646337187 -0.09838921973968583 1.0 3841 +258440 Or4f47 olfactory receptor family 4 subfamily F member 47 Novel U 0.01597869085291432 -0.09847534409662578 1.0 3842 +26921 Map4k4 mitogen-activated protein kinase kinase kinase kinase 4 Novel N 0.015972736068772937 -0.09853702355500925 1.0 3843 +574417 Tas2r137 taste receptor, type 2, member 137 Novel N 0.015966689218216194 -0.09859965663429647 1.0 3844 +259122 Or51q1 olfactory receptor family 51 subfamily Q member 1 Novel U 0.01596572009326336 -0.09860969479869965 1.0 3845 +19883 Rora RAR-related orphan receptor alpha Novel U 0.015963862094243084 -0.09862893989147326 1.0 3846 +12737 Cldn1 claudin 1 Novel U 0.01595751383264578 -0.0986946949764103 1.0 3847 +76707 Clasp1 CLIP associating protein 1 Novel U 0.015948898941808367 -0.09878392773250493 1.0 3848 +13169 Dbnl drebrin-like Novel U 0.015941968501995776 -0.0988557130002578 1.0 3849 +24109 Ubl3 ubiquitin-like 3 Novel U 0.01592966292959794 -0.09898317371463068 1.0 3850 +13009 Csrp3 cysteine and glycine-rich protein 3 Novel U 0.015924101301394773 -0.09904078087673042 1.0 3851 +380714 Rph3al rabphilin 3A-like (without C2 domains) Novel U 0.015921065258331334 -0.09907222811097699 1.0 3852 +258698 Or5b97 olfactory receptor family 5 subfamily B member 97 Novel U 0.015920023357969208 -0.09908302008067725 1.0 3853 +54401 Ywhab tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, beta polypeptide Novel U 0.01590903323029528 -0.09919685546184283 1.0 3854 +22193 Ube2e3 ubiquitin-conjugating enzyme E2E 3 Novel U 0.015901888396923275 -0.0992708614110363 1.0 3855 +21390 Tbxa2r thromboxane A2 receptor Novel N 0.015901163731096766 -0.09927836747584519 1.0 3856 +16593 Klc1 kinesin light chain 1 Novel U 0.015899591580871012 -0.09929465175620189 1.0 3857 +65019 Rpl23 ribosomal protein L23 Novel U 0.01589680651182027 -0.09932349940987527 1.0 3858 +16334 Ins2 insulin II Novel U 0.015895126909863205 -0.09934089667173261 1.0 3859 +620648 Prp2rt proteolipid protein 2, retrotransposed Novel U 0.015894769240487723 -0.0993446013993661 1.0 3860 +15559 Htr2b 5-hydroxytryptamine (serotonin) receptor 2B Novel U 0.01589428117523697 -0.09934965676318912 1.0 3861 +244595 Ces1a carboxylesterase 1A Novel U 0.015888512945521308 -0.09940940389696361 1.0 3862 +67128 Ube2g1 ubiquitin-conjugating enzyme E2G 1 Novel U 0.015887216829171564 -0.09942282902750672 1.0 3863 +17128 Smad4 SMAD family member 4 Novel U 0.015883578927472983 -0.09946051029371106 1.0 3864 +16202 Ilk integrin linked kinase Novel U 0.015874094166836068 -0.09955875313259352 1.0 3865 +80857 Fgf20 fibroblast growth factor 20 Novel U 0.015872293824424323 -0.0995774010201113 1.0 3866 +104759 Pld4 phospholipase D family member 4 Novel U 0.015867478442209336 -0.09962727859079698 1.0 3867 +668155 Rnf26rt ring finger protein 26, retrotransposed Novel U 0.015855915723586626 -0.09974704485018711 1.0 3868 +17112 Tm4sf1 transmembrane 4 superfamily member 1 Novel U 0.015851086398178234 -0.09979706684401171 1.0 3869 +258544 Or6c3 olfactory receptor family 6 subfamily C member 3 Novel U 0.015843057305677987 -0.09988023192018708 1.0 3870 +26951 Zw10 zw10 kinetochore protein Novel U 0.015839380003994208 -0.09991832129014289 1.0 3871 +117004 Or5d18 olfactory receptor family 5 subfamily D member 18 Novel U 0.015838014735457602 -0.09993246269676426 1.0 3872 +19299 Abcd3 ATP-binding cassette, sub-family D member 3 Novel U 0.015822462642810446 -0.100093550761156 1.0 3873 +258427 Or5ak23 olfactory receptor family 5 subfamily AK member 23 Novel U 0.0158147855577285 -0.10017306975606423 1.0 3874 +100210 Gpn2 GPN-loop GTPase 2 Novel U 0.015810359666247997 -0.10021891299452593 1.0 3875 +71169 Nbas neuroblastoma amplified sequence Novel U 0.015809017606976773 -0.10023281400033945 1.0 3876 +24055 Sh3bp2 SH3-domain binding protein 2 Novel U 0.015795717411848213 -0.10037057698426072 1.0 3877 +14227 Fkbp2 FK506 binding protein 2 Novel U 0.015791164836567294 -0.10041773240936262 1.0 3878 +238799 Tnpo1 transportin 1 Novel U 0.015789627575386433 -0.10043365531013924 1.0 3879 +69239 Pdzph1 PDZ and pleckstrin homology domains 1 Novel U 0.015780326021971942 -0.10053000049463444 1.0 3880 +237868 Sarm1 sterile alpha and HEAT/Armadillo motif containing 1 Novel U 0.01577430909484982 -0.10059232362796958 1.0 3881 +258592 Or2ag15 olfactory receptor family 2 subfamily AG member 15 Novel U 0.01575285056881827 -0.10081459033519334 1.0 3882 +103968 Plin1 perilipin 1 Novel N 0.01575252664730784 -0.10081794550355003 1.0 3883 +545648 Gm13272 predicted gene 13272 Novel U 0.015745226205767474 -0.10089356323703605 1.0 3884 +321006 Dcaf1 DDB1 and CUL4 associated factor 1 Novel U 0.01574365215053095 -0.10090986724943168 1.0 3885 +17754 Map1a microtubule-associated protein 1 A Novel U 0.015738258292563093 -0.10096573665294921 1.0 3886 +258541 Or6c210 olfactory receptor family 6 subfamily C member 210 Novel U 0.01572833291447252 -0.10106854339293214 1.0 3887 +226101 Myof myoferlin Novel N 0.015709304425202006 -0.10126563985926824 1.0 3888 +258097 Or9q1 olfactory receptor family 9 subfamily Q member 1 Novel U 0.01569578433930044 -0.1014056804645878 1.0 3889 +227789 Or12k5 olfactory receptor family 12 subfamily K member 5 Novel U 0.01569473956007135 -0.10141650225349744 1.0 3890 +258960 Or2aj6 olfactory receptor family 2 subfamily AJ member 6 Novel U 0.015693918299830353 -0.10142500884007621 1.0 3891 +27414 Sergef secretion regulating guanine nucleotide exchange factor Novel U 0.015690385842453386 -0.10146159791746355 1.0 3892 +258993 Or5ac24 olfactory receptor family 5 subfamily AC member 24 Novel U 0.01568629006071293 -0.10150402189008963 1.0 3893 +73297 Fundc2b FUN14 domain containing 2B Novel U 0.01568423522266077 -0.10152530583508473 1.0 3894 +258564 Or9g4b olfactory receptor family 9 subfamily G member 4B Novel U 0.01566581746725814 -0.10171607634009408 1.0 3895 +17888 Myh6 myosin, heavy polypeptide 6, cardiac muscle, alpha Novel U 0.015660680361489532 -0.10176928631277207 1.0 3896 +20725 Serpinb8 serine (or cysteine) peptidase inhibitor, clade B, member 8 Novel U 0.015658848795827865 -0.10178825760968614 1.0 3897 +94044 Bcl2l13 BCL2 like 13 Novel U 0.01565498172266728 -0.10182831262636031 1.0 3898 +13824 Epb41l4a erythrocyte membrane protein band 4.1 like 4a Novel U 0.015638118234205977 -0.10200298408548517 1.0 3899 +258242 Or8g35 olfactory receptor family 8 subfamily G member 35 Novel U 0.015626490873473182 -0.10212341990572657 1.0 3900 +69189 Mcemp1 mast cell expressed membrane protein 1 Novel U 0.015623441931954361 -0.10215500074174996 1.0 3901 +22145 Tuba4a tubulin, alpha 4A Novel N 0.0156080319338353 -0.1023146169956908 1.0 3902 +381924 Itgad integrin, alpha D Novel N 0.015602232721706879 -0.10237468504427816 1.0 3903 +75870 Tcam1 testicular cell adhesion molecule 1 Novel U 0.015564474072748101 -0.10276578788894447 1.0 3904 +68810 Nexn nexilin Novel N 0.015562122934773968 -0.10279014089879106 1.0 3905 +258979 Or4c12b olfactory receptor family 4 subfamily C member 12B Novel U 0.015558325399986677 -0.10282947563928058 1.0 3906 +14165 Fgf10 fibroblast growth factor 10 Novel U 0.01555778041078004 -0.10283512061956737 1.0 3907 +13982 Esr1 estrogen receptor 1 (alpha) Novel U 0.015553636630885666 -0.10287804175549388 1.0 3908 +68428 Steap3 STEAP family member 3 Novel U 0.015531656456980746 -0.10310571167424175 1.0 3909 +14469 Gbp2 guanylate binding protein 2 Novel U 0.015528863460815447 -0.10313464143670711 1.0 3910 +258699 Or5b96 olfactory receptor family 5 subfamily B member 96 Novel U 0.015527833244275844 -0.10314531238575778 1.0 3911 +14131 Fcgr3 Fc receptor, IgG, low affinity III Novel U 0.015516540015996705 -0.10326228727302822 1.0 3912 +258326 Or51a10 olfactory receptor family 51 subfamily A member 10 Novel U 0.015505844552316603 -0.1033730705342323 1.0 3913 +22151 Tubb2a tubulin, beta 2A class IIA Novel N 0.015489743629569024 -0.1035398433627624 1.0 3914 +64295 Tmub1 transmembrane and ubiquitin-like domain containing 1 Novel U 0.015486608745344391 -0.10357231439050738 1.0 3915 +23807 Arih2 ariadne RBR E3 ubiquitin protein ligase 2 Novel U 0.015472593335500716 -0.1037174855449364 1.0 3916 +67972 Atp2b1 ATPase, Ca++ transporting, plasma membrane 1 Novel N 0.015443202033958891 -0.10402191968011963 1.0 3917 +258269 Or8d23 olfactory receptor family 8 subfamily D member 23 Novel U 0.015430817451621205 -0.10415019877685218 1.0 3918 +258318 Or5h18 olfactory receptor family 5 subfamily H member 18 Novel U 0.0154152801437702 -0.10431113370081141 1.0 3919 +629524 Or10ad1b olfactory receptor family 10 subfamily AD member 1B Novel U 0.015388158128832912 -0.10459206263994364 1.0 3920 +258652 Or5w11 olfactory receptor family 5 subfamily W member 11 Novel U 0.01538726013880681 -0.10460136399111418 1.0 3921 +268977 Ltbp1 latent transforming growth factor beta binding protein 1 Novel U 0.015384995034117178 -0.10462482587102807 1.0 3922 +381260 Gm973 predicted gene 973 Novel U 0.015379004855856297 -0.10468687194053777 1.0 3923 +258924 Or1e1c olfactory receptor family 1 subfamily E member 1C Novel U 0.01537146159166449 -0.10476500482306507 1.0 3924 +57251 Or8b12i olfactory receptor family 8 subfamily B member 12I Novel U 0.01536270636882134 -0.10485569113346196 1.0 3925 +271564 Vps13a vacuolar protein sorting 13A Novel U 0.015362421955613749 -0.10485863707611662 1.0 3926 +67338 Rffl ring finger and FYVE like domain containing protein Novel U 0.01536075881141209 -0.10487586386908447 1.0 3927 +19720 Trim27 tripartite motif-containing 27 Novel U 0.015356830310759765 -0.10491655514969876 1.0 3928 +67615 Ube2r2 ubiquitin-conjugating enzyme E2R 2 Novel U 0.015355432229486226 -0.10493103642957063 1.0 3929 +67466 Pdcl phosducin-like Novel U 0.01535343184973411 -0.10495175629728411 1.0 3930 +107746 Rapgef1 Rap guanine nucleotide exchange factor (GEF) 1 Novel U 0.015330321378979163 -0.10519113379364806 1.0 3931 +63958 Ube4b ubiquitination factor E4B Novel U 0.015314264828858547 -0.10535744701196675 1.0 3932 +13380 Dkk1 dickkopf WNT signaling pathway inhibitor 1 Novel U 0.015309362641866647 -0.10540822370367814 1.0 3933 +12550 Cdh1 cadherin 1 Novel U 0.015298550803770863 -0.10552021236725423 1.0 3934 +13488 Drd1 dopamine receptor D1 Novel U 0.015290202515625687 -0.10560668366142678 1.0 3935 +14602 Ghrhr growth hormone releasing hormone receptor Novel U 0.01528954146792911 -0.10561353077173716 1.0 3936 +326618 Tpm4 tropomyosin 4 Novel N 0.015282790400701456 -0.10568345810415182 1.0 3937 +258630 Or5w17 olfactory receptor family 5 subfamily W member 17 Novel U 0.015281379133834363 -0.10569807595996827 1.0 3938 +27412 Peg12 paternally expressed 12 Novel U 0.015278605994203536 -0.10572680004910233 1.0 3939 +97848 Serpinb6c serine (or cysteine) peptidase inhibitor, clade B, member 6c Novel U 0.015274476083163747 -0.10576957753188895 1.0 3940 +14727 Lilrb4b leukocyte immunoglobulin-like receptor, subfamily B, member 4B Novel U 0.015269168706042661 -0.10582455116963853 1.0 3941 +20821 Trim21 tripartite motif-containing 21 Novel U 0.015263947564711534 -0.10587863157991056 1.0 3942 +503558 Taar9 trace amine-associated receptor 9 Novel U 0.015259374891080818 -0.105925995183059 1.0 3943 +258793 Or9i1 olfactory receptor family 9 subfamily I member 1 Novel U 0.015254664618104081 -0.10597478403571015 1.0 3944 +74596 Cds1 CDP-diacylglycerol synthase 1 Novel U 0.01525442261424059 -0.10597729070377272 1.0 3945 +13614 Edn1 endothelin 1 Novel U 0.015251104496966855 -0.10601165965341686 1.0 3946 +226144 Erlin1 ER lipid raft associated 1 Novel U 0.015247342073352859 -0.10605063071352762 1.0 3947 +258305 Or7c70 olfactory receptor family 7 subfamily C member 70 Novel U 0.015241526060458874 -0.10611087278389239 1.0 3948 +258339 Or4x6 olfactory receptor family 4 subfamily X member 6 Novel U 0.015232337932876166 -0.10620604310735066 1.0 3949 +13492 Drd5 dopamine receptor D5 Novel U 0.01522511932935326 -0.1062808131653421 1.0 3950 +20720 Serpine2 serine (or cysteine) peptidase inhibitor, clade E, member 2 Novel U 0.01522410517894094 -0.10629131770197452 1.0 3951 +77048 Cep83 centrosomal protein 83 Novel U 0.015217295948396851 -0.1063618474881088 1.0 3952 +210029 Metrnl meteorin, glial cell differentiation regulator-like Novel U 0.015212721532283603 -0.106409229139834 1.0 3953 +258247 Or51a24 olfactory receptor family 51 subfamily A member 24 Novel U 0.01520767933007659 -0.10646145610454077 1.0 3954 +74764 Klc4 kinesin light chain 4 Novel U 0.015206017245411464 -0.10647867192286406 1.0 3955 +258410 Or5ae2 olfactory receptor family 5 subfamily AE member 2 Novel U 0.015200978302733181 -0.1065308651254794 1.0 3956 +110651 Rps6ka3 ribosomal protein S6 kinase polypeptide 3 Novel U 0.01517539737155838 -0.10679583156966019 1.0 3957 +74257 Tspan17 tetraspanin 17 Novel U 0.01517182887897534 -0.10683279389852743 1.0 3958 +14166 Fgf11 fibroblast growth factor 11 Novel N 0.015167087981998005 -0.10688189995357009 1.0 3959 +18018 Nfatc1 nuclear factor of activated T cells, cytoplasmic, calcineurin dependent 1 Novel N 0.015162942266436637 -0.10692484113907168 1.0 3960 +64214 Rgs18 regulator of G-protein signaling 18 Novel N 0.015149684313272318 -0.10706216658211597 1.0 3961 +22417 Wnt4 wingless-type MMTV integration site family, member 4 Novel U 0.015148637218097548 -0.10707301235951483 1.0 3962 +258370 Or4a80 olfactory receptor family 4 subfamily A member 80 Novel U 0.015145973376250404 -0.10710060434579846 1.0 3963 +14065 F2rl3 F2R like thrombin or trypsin receptor 3 Novel U 0.015144159939142853 -0.10711938786774496 1.0 3964 +170720 Card14 caspase recruitment domain family, member 14 Novel U 0.01514339516196429 -0.10712730940461981 1.0 3965 +258787 Or4a75 olfactory receptor family 4 subfamily A member 75 Novel U 0.01513372547078053 -0.10722746774802723 1.0 3966 +230405 Ifne interferon epsilon Novel U 0.015126277592468018 -0.10730461262675242 1.0 3967 +58803 Pga5 pepsinogen 5, group I Novel U 0.015124920033203329 -0.10731867418098871 1.0 3968 +23943 Esyt1 extended synaptotagmin-like protein 1 Novel N 0.015116690300615396 -0.10740391748059663 1.0 3969 +329693 Fcrl5 Fc receptor-like 5 Novel U 0.015112829282351388 -0.10744390978085108 1.0 3970 +18655 Pgk1 phosphoglycerate kinase 1 Novel U 0.015107591119345154 -0.10749816650107434 1.0 3971 +258553 Or7e176 olfactory receptor family 7 subfamily E member 176 Novel U 0.015103946849865794 -0.10753591372454264 1.0 3972 +71461 Ptk7 PTK7 protein tyrosine kinase 7 Novel U 0.01510373742107362 -0.10753808298108739 1.0 3973 +338355 Fkbp15 FK506 binding protein 15 Novel U 0.01510213212041662 -0.10755471063252117 1.0 3974 +21808 Tgfb2 transforming growth factor, beta 2 Novel U 0.015085284608632054 -0.1077292166057536 1.0 3975 +100535 Oas1d 2'-5' oligoadenylate synthetase 1D Novel U 0.015084438823993795 -0.107737977215233 1.0 3976 +19043 Ppm1b protein phosphatase 1B, magnesium dependent, beta isoform Novel U 0.015082907548043631 -0.10775383812118683 1.0 3977 +259113 Or51g2 olfactory receptor family 51 subfamily G member 2 Novel U 0.015080259391709781 -0.10778126763743939 1.0 3978 +109050 Inka2 inka box actin regulator 2 Novel U 0.015079629376990387 -0.10778779330919225 1.0 3979 +192650 Cabp7 calcium binding protein 7 Novel U 0.015079505730848028 -0.10778907403187016 1.0 3980 +239318 Plcxd3 phosphatidylinositol-specific phospholipase C, X domain containing 3 Novel U 0.015072325821529644 -0.10786344329656318 1.0 3981 +257921 Or4c15b olfactory receptor family 4 subfamily C member 15B Novel U 0.015065478482716374 -0.1079343678068969 1.0 3982 +20811 Srms src-related kinase lacking C-terminal regulatory tyrosine and N-terminal myristylation sites Novel U 0.015059720376968884 -0.10799401007694187 1.0 3983 +17085 Ly9 lymphocyte antigen 9 Novel U 0.015054168675868732 -0.1080515144144349 1.0 3984 +57912 Cdc42se1 CDC42 small effector 1 Novel N 0.015036631766992959 -0.10823316114007535 1.0 3985 +26414 Mapk10 mitogen-activated protein kinase 10 Novel U 0.015036141490166889 -0.1082382394113228 1.0 3986 +73835 Ifitm5 interferon induced transmembrane protein 5 Novel N 0.015027133041314042 -0.10833154862840377 1.0 3987 +257961 Or5bb10 olfactory receptor family 5 subfamily BB member 10 Novel U 0.01501462286352174 -0.1084611286387265 1.0 3988 +71673 Rnf215 ring finger protein 215 Novel U 0.015012673132873492 -0.10848132388468712 1.0 3989 +68035 Rbm42 RNA binding motif protein 42 Novel U 0.015010453060720083 -0.10850431931907119 1.0 3990 +258101 Or5w14 olfactory receptor family 5 subfamily W member 14 Novel U 0.015006671729907108 -0.10854348621932744 1.0 3991 +15061 Ifi44l interferon-induced protein 44 like Novel U 0.014986913312631207 -0.10874814325594824 1.0 3992 +258281 Or6c68 olfactory receptor family 6 subfamily C member 68 Novel U 0.014986886512472422 -0.10874842085111193 1.0 3993 +20460 Stil Scl/Tal1 interrupting locus Novel U 0.01497601669436418 -0.10886101006975107 1.0 3994 +258586 Or5as1 olfactory receptor family 5 subfamily AS member 1 Novel U 0.014972644762376999 -0.10889593643042801 1.0 3995 +18034 Nfkb2 nuclear factor of kappa light polypeptide gene enhancer in B cells 2, p49/p100 Novel U 0.01495530759657072 -0.10907551422392084 1.0 3996 +11650 Alppl2 alkaline phosphatase, placental-like 2 Novel U 0.0149551848132663 -0.10907678600935174 1.0 3997 +258327 Or10d3 olfactory receptor family 10 subfamily D member 3 Novel U 0.014951784540939286 -0.10911200591833702 1.0 3998 +20357 Sema5b sema domain, seven thrombospondin repeats (type 1 and type 1-like), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 5B Novel U 0.014942580079230923 -0.10920734543013186 1.0 3999 +59287 Ncstn nicastrin Novel N 0.01493721405529687 -0.10926292652964224 1.0 4000 +53379 Hnrnpa2b1 heterogeneous nuclear ribonucleoprotein A2/B1 Novel N 0.014915812592714649 -0.10948460217553371 1.0 4001 +630146 Cd101 CD101 antigen Novel N 0.014914054713550557 -0.10950281023012821 1.0 4002 +258350 Or2ag2 olfactory receptor family 2 subfamily AG member 2 Novel U 0.014913969879945118 -0.1095036889338246 1.0 4003 +259030 Or10ag58 olfactory receptor family 10 subfamily AG member 58 Novel U 0.01491015833308629 -0.10954316881089049 1.0 4004 +225358 Fam13b family with sequence similarity 13, member B Novel U 0.014905980074689396 -0.10958644707401267 1.0 4005 +102626 Mapkapk3 mitogen-activated protein kinase-activated protein kinase 3 Novel U 0.014902773862254134 -0.10961965691701857 1.0 4006 +19208 Ptcra pre T cell antigen receptor alpha Novel U 0.014887213592790499 -0.1097808296766066 1.0 4007 +54615 Npff neuropeptide FF-amide peptide precursor Novel N 0.014882696822878592 -0.10982761423087331 1.0 4008 +76415 Fam187b family with sequence similarity 187, member B Novel U 0.01487691756612353 -0.10988747558235942 1.0 4009 +12010 B2m beta-2 microglobulin Novel U 0.014876458267393236 -0.10989223298350917 1.0 4010 +56320 Dbn1 drebrin 1 Novel N 0.014871207123246062 -0.10994662416196353 1.0 4011 +18174 Slc11a2 solute carrier family 11 (proton-coupled divalent metal ion transporters), member 2 Novel U 0.014861640380502139 -0.11004571616881537 1.0 4012 +100503710 Gng14 G protein subunit gamma 14 Novel U 0.014861173005167249 -0.11005055722717003 1.0 4013 +225362 Reep2 receptor accessory protein 2 Novel U 0.014859263213053737 -0.11007033879110074 1.0 4014 +17773 Mtnr1a melatonin receptor 1A Novel N 0.014856628698917972 -0.11009762700191401 1.0 4015 +12508 Cd53 CD53 antigen Novel U 0.01484378460915711 -0.11023066566143032 1.0 4016 +258536 Or2b2b olfactory receptor family 2 subfamily B member 2B Novel U 0.014842190353008173 -0.11024717891421267 1.0 4017 +109019 Nabp1 nucleic acid binding protein 1 Novel U 0.014828899484840096 -0.11038484528978385 1.0 4018 +80889 Tlnrd1 talin rod domain containing 1 Novel U 0.014822266871314285 -0.11045354568264878 1.0 4019 +258598 Or7g16 olfactory receptor family 7 subfamily G member 16 Novel U 0.01481206276205067 -0.11055923951095929 1.0 4020 +258421 Or2aa1 olfactory receptor family 2 subfamily AA member 1 Novel U 0.014799930999730603 -0.11068489990626035 1.0 4021 +20182 Rxrb retinoid X receptor beta Novel N 0.014783951146918365 -0.11085041869638015 1.0 4022 +12038 Bche butyrylcholinesterase Novel U 0.014777267592864195 -0.11091964672956324 1.0 4023 +435791 Gm13271 predicted gene 13271 Novel U 0.014773718503042082 -0.11095640808527064 1.0 4024 +74486 Osbpl10 oxysterol binding protein-like 10 Novel U 0.014766556570264187 -0.11103059114954823 1.0 4025 +259105 Or52b3 olfactory receptor family 52 subfamily B member 3 Novel U 0.014766455782804139 -0.11103163510274619 1.0 4026 +17221 Cd46 CD46 antigen, complement regulatory protein Novel U 0.014763077343950206 -0.11106662886133503 1.0 4027 +245828 Trappc1 trafficking protein particle complex 1 Novel U 0.0147515576581782 -0.11118594938787221 1.0 4028 +404329 Or5d43 olfactory receptor family 5 subfamily D member 43 Novel U 0.014749460478637615 -0.11120767190461253 1.0 4029 +57262 Retnla resistin like alpha Novel U 0.014745122650482136 -0.11125260298604855 1.0 4030 +381287 Sp140l1 Sp140 nuclear body protein like 1 Novel U 0.01473136860232404 -0.11139506696473014 1.0 4031 +258880 Or10j3 olfactory receptor family 10 subfamily J member 3B Novel U 0.014725720891054358 -0.11145356577240301 1.0 4032 +192192 Shkbp1 Sh3kbp1 binding protein 1 Novel U 0.014724922421097682 -0.11146183629796597 1.0 4033 +258757 Or9g19 olfactory receptor family 9 subfamily G member 19 Novel U 0.01472407059809864 -0.11147065945258787 1.0 4034 +105785 Kdelr3 KDEL (Lys-Asp-Glu-Leu) endoplasmic reticulum protein retention receptor 3 Novel N 0.014709949332814174 -0.1116169270541928 1.0 4035 +19253 Ptpn18 protein tyrosine phosphatase, non-receptor type 18 Novel U 0.014708589987315088 -0.11163100711018624 1.0 4036 +234836 Il17c interleukin 17C Novel N 0.014702289203712395 -0.11169627041961584 1.0 4037 +100043022 Adrm1b adhesion regulating molecule 1B Novel U 0.014695855660366566 -0.1117629088501006 1.0 4038 +67976 Trabd TraB domain containing Novel U 0.014687920867481033 -0.11184509717396668 1.0 4039 +228778 6820408C15Rik RIKEN cDNA 6820408C15 gene Novel U 0.014683031062726873 -0.1118957456108666 1.0 4040 +258236 Or1e31 olfactory receptor family 1 subfamily E member 31 Novel U 0.014669019256335125 -0.11204087944085901 1.0 4041 +258346 Or5w10 olfactory receptor family 5 subfamily W member 10 Novel U 0.014660116863034678 -0.11213309013801463 1.0 4042 +102098 Arhgef18 Rho/Rac guanine nucleotide exchange factor 18 Novel U 0.014659998430841752 -0.1121343168547757 1.0 4043 +13476 Reep5 receptor accessory protein 5 Novel U 0.0146536797335379 -0.11219976571373302 1.0 4044 +17470 Cd200 CD200 molecule Novel U 0.014652749141129337 -0.11220940475930934 1.0 4045 +70425 Csnk1g3 casein kinase 1, gamma 3 Novel N 0.01464995353765328 -0.11223836152821383 1.0 4046 +12970 Crygs crystallin, gamma S Novel N 0.014648191194420564 -0.11225661582148438 1.0 4047 +258719 Or10a3m olfactory receptor family 10 subfamily A member 3M Novel U 0.014644789780888632 -0.11229184755103269 1.0 4048 +258782 Or8b50 olfactory receptor family 8 subfamily B member 50 Novel U 0.014639271288615167 -0.11234900791259059 1.0 4049 +72512 Sting1 stimulator of interferon response cGAMP interactor 1 Novel U 0.014622722836208617 -0.11252041623861657 1.0 4050 +214547 She src homology 2 domain-containing transforming protein E Novel U 0.014615855053583865 -0.11259155250527755 1.0 4051 +54131 Irf3 interferon regulatory factor 3 Novel U 0.014607410243456046 -0.11267902357097333 1.0 4052 +19220 Ptgfr prostaglandin F receptor Novel U 0.014601636427547613 -0.11273882856634891 1.0 4053 +228983 Osbpl2 oxysterol binding protein-like 2 Novel U 0.014587846210287051 -0.11288166718340484 1.0 4054 +13591 Ebf1 early B cell factor 1 Novel U 0.014556457170156358 -0.11320679382921947 1.0 4055 +102339 Cog4 component of oligomeric golgi complex 4 Novel U 0.014537889638503247 -0.11339911571170767 1.0 4056 +72046 Urgcp upregulator of cell proliferation Novel U 0.01453551495419555 -0.11342371261370325 1.0 4057 +17057 Klrb1a killer cell lectin-like receptor subfamily B member 1A Novel U 0.01452917377303706 -0.11348939435968779 1.0 4058 +258674 Or4z4 olfactory receptor family 4 subfamily Z member 4 Novel U 0.01451895769321162 -0.11359521217868417 1.0 4059 +56444 Actr10 ARP10 actin-related protein 10 Novel U 0.014513912308068042 -0.11364747211214325 1.0 4060 +631797 Fer1l6 fer-1 like family member 6 Novel U 0.014509023109096672 -0.11369811427436495 1.0 4061 +110911 Cds2 CDP-diacylglycerol synthase 2 Novel U 0.01449480616635925 -0.11384537289988235 1.0 4062 +258291 Or5d39 olfactory receptor family 5 subfamily D member 39 Novel U 0.01449111274616067 -0.1138836292248846 1.0 4063 +259124 Or51q1c olfactory receptor family 51 subfamily Q member 1C Novel U 0.014483989431676945 -0.11395741228214067 1.0 4064 +269700 Hectd4 HECT domain E3 ubiquitin protein ligase 4 Novel U 0.014466879231296281 -0.11413463917521606 1.0 4065 +74675 Ptchd3 patched domain containing 3 Novel U 0.014463049583298302 -0.11417430654328622 1.0 4066 +232086 Tmem150a transmembrane protein 150A Novel U 0.014458636537339519 -0.11422001672825624 1.0 4067 +100042849 Rbmyf1 RNA binding motif protein Y-linked family member 1 Novel U 0.014457213065721073 -0.11423476100048599 1.0 4068 +209354 Eif2b1 eukaryotic translation initiation factor 2B, subunit alpha Novel U 0.014448772507368746 -0.11432218802643099 1.0 4069 +13661 Ehf ets homologous factor Novel N 0.01444764252656762 -0.11433389233042295 1.0 4070 +19124 Procr protein C receptor, endothelial Novel N 0.014445118453988874 -0.11436003659121917 1.0 4071 +54483 Mefv Mediterranean fever Novel U 0.014441743622317602 -0.11439499298672859 1.0 4072 +69641 Wdr20 WD repeat domain 20 Novel U 0.014441607581603318 -0.11439640209197505 1.0 4073 +75847 Crppa CDP-L-ribitol pyrophosphorylase A Novel U 0.01443939481799279 -0.11441932182471222 1.0 4074 +210757 Themis thymocyte selection associated Novel U 0.014435107534136737 -0.11446372936995634 1.0 4075 +50754 Fbxw7 F-box and WD-40 domain protein 7 Novel U 0.014422332615351256 -0.11459605155878354 1.0 4076 +259159 Or52a24 olfactory receptor family 52 subfamily A member 24 Novel U 0.014419117587143879 -0.11462935271526718 1.0 4077 +258418 Or5p50 olfactory receptor family 5 subfamily P member 50 Novel U 0.014418114025524733 -0.11463974757352799 1.0 4078 +259095 Or51f2 olfactory receptor family 51 subfamily F member 2 Novel U 0.01441609627100605 -0.11466064740850239 1.0 4079 +20277 Scnn1b sodium channel, nonvoltage-gated 1 beta Novel U 0.014414785918194449 -0.11467421999984943 1.0 4080 +14710 Gngt2 guanine nucleotide binding protein (G protein), gamma transducing activity polypeptide 2 Novel U 0.014412841677701314 -0.11469435837896386 1.0 4081 +14004 Chchd2 coiled-coil-helix-coiled-coil-helix domain containing 2 Novel N 0.01441041893349881 -0.11471945308376996 1.0 4082 +22213 Ube2g2 ubiquitin-conjugating enzyme E2G 2 Novel U 0.014408463219967567 -0.11473971030023597 1.0 4083 +108911 Rcc2 regulator of chromosome condensation 2 Novel U 0.01439779493795931 -0.11485021201457662 1.0 4084 +258945 Or1j18 olfactory receptor family 1 subfamily J member 18 Novel U 0.014394978187417725 -0.11487938782409068 1.0 4085 +12983 Csf2rb colony stimulating factor 2 receptor, beta, low-affinity (granulocyte-macrophage) Novel U 0.014393331677259853 -0.11489644232217981 1.0 4086 +67763 Prpsap1 phosphoribosyl pyrophosphate synthetase-associated protein 1 Novel N 0.014391814629187911 -0.1149121558562387 1.0 4087 +235439 Herc1 HECT and RLD domain containing E3 ubiquitin protein ligase family member 1 Novel U 0.014391562553185841 -0.1149147668511816 1.0 4088 +234290 BC030500 cDNA sequence BC030500 Novel U 0.014389914354193725 -0.11493183884216032 1.0 4089 +69470 Tmem127 transmembrane protein 127 Novel U 0.014388580005698919 -0.11494565998000518 1.0 4090 +258406 Or4d2b olfactory receptor family 4 subfamily D member 2B Novel U 0.014387479574170478 -0.11495705821360203 1.0 4091 +57438 Marchf7 membrane associated ring-CH-type finger 7 Novel U 0.014382229765817628 -0.1150114355559427 1.0 4092 +436440 Gpr31b G protein-coupled receptor 31, D17Leh66b region Novel U 0.014378131061214243 -0.11505388980348691 1.0 4093 +102639543 Ifi206 interferon activated gene 206 Novel U 0.01435507851765185 -0.11529266729189463 1.0 4094 +258378 Or52s1 olfactory receptor family 52 subfamily S member 1 Novel U 0.014343611942475507 -0.11541143770062785 1.0 4095 +382051 Pdp2 pyruvate dehydrogenase phosphatase catalytic subunit 2 Novel U 0.014342375858807186 -0.11542424101463025 1.0 4096 +259091 Or51f1e olfactory receptor family 51 subfamily F member 1E Novel U 0.014335516188915763 -0.11549529324986611 1.0 4097 +26386 Hsf4 heat shock transcription factor 4 Novel N 0.01431855066672776 -0.11567102157097797 1.0 4098 +258823 Or8g54 olfactory receptor family 8 subfamily G member 54 Novel U 0.01431819026810693 -0.11567475456804505 1.0 4099 +258854 Or8d4 olfactory receptor family 8 subfamily D member 4 Novel U 0.014315011860172854 -0.11570767641294168 1.0 4100 +207565 Camkk2 calcium/calmodulin-dependent protein kinase kinase 2, beta Novel U 0.014305880385307402 -0.11580225992941696 1.0 4101 +258922 Or2k2 olfactory receptor family 2 subfamily K member 2 Novel U 0.014302841056530928 -0.11583374119697114 1.0 4102 +114643 Oas1c 2'-5' oligoadenylate synthetase 1C Novel U 0.01429386006945767 -0.1159267659658419 1.0 4103 +75480 1700003F12Rik RIKEN cDNA 1700003F12 gene Novel U 0.014291651081731091 -0.11594964658809724 1.0 4104 +15528 Hspe1 heat shock protein 1 (chaperonin 10) Novel U 0.014287960519667712 -0.11598787330862903 1.0 4105 +232943 Klc3 kinesin light chain 3 Novel U 0.014287549807412706 -0.11599212745266495 1.0 4106 +16640 Klra9 killer cell lectin-like receptor subfamily A, member 9 Novel U 0.014280288267530987 -0.11606734224404952 1.0 4107 +73106 Prss57 serine protease 57 Novel N 0.014278261367109614 -0.11608833681198334 1.0 4108 +72729 Cdc42se2 CDC42 small effector 2 Novel N 0.014262638706795809 -0.11625015581394646 1.0 4109 +258764 Or8h9 olfactory receptor family 8 subfamily H member 9 Novel U 0.014262429297065173 -0.11625232487305241 1.0 4110 +545622 Ptpn3 protein tyrosine phosphatase, non-receptor type 3 Novel U 0.01426077042853282 -0.11626950737877816 1.0 4111 +259061 Or52n2c olfactory receptor family 52 subfamily N member 2C Novel U 0.014259470966762793 -0.11628296716107459 1.0 4112 +69551 2310022B05Rik RIKEN cDNA 2310022B05 gene Novel U 0.014256016509081641 -0.11631874832017679 1.0 4113 +102577428 Gm44501 predicted readthrough transcript, 44501 Novel U 0.014249130013712207 -0.11639007841283204 1.0 4114 +319278 Shfl shiftless antiviral inhibitor of ribosomal frameshifting Novel U 0.014247875264854585 -0.11640307506025165 1.0 4115 +108909 Aida axin interactor, dorsalization associated Novel U 0.014247262082137824 -0.11640942638667455 1.0 4116 +12479 Cd1d1 CD1d1 antigen Novel U 0.014244366997591441 -0.11643941357723521 1.0 4117 +226695 Ifi205 interferon activated gene 205 Novel U 0.014243460380849284 -0.11644880428364707 1.0 4118 +72322 Xpo5 exportin 5 Novel U 0.014242123716313884 -0.11646264941096426 1.0 4119 +14290 Fpr-rs3 formyl peptide receptor, related sequence 3 Novel U 0.014240377459177023 -0.11648073708498276 1.0 4120 +258216 Or5m9 olfactory receptor family 5 subfamily M member 9 Novel U 0.014229741192884277 -0.1165909071815946 1.0 4121 +246694 Hps5 HPS5, biogenesis of lysosomal organelles complex 2 subunit 2 Novel N 0.014208598109817993 -0.11680990654095376 1.0 4122 +114564 Csprs component of Sp100-rs Novel U 0.014205672790387425 -0.1168402069034509 1.0 4123 +218921 4930474N05Rik RIKEN cDNA 4930474N05 gene Novel U 0.01420346238694321 -0.11686310218966296 1.0 4124 +258747 Or5j1 olfactory receptor family 5 subfamily J member 1 Novel U 0.014200849775706015 -0.11689016353097287 1.0 4125 +226413 Lct lactase Novel N 0.014200439091024326 -0.11689441738940527 1.0 4126 +258691 Or5b120 olfactory receptor family 5 subfamily B member 120 Novel U 0.014193035394971073 -0.11697110462974147 1.0 4127 +21898 Tlr4 toll-like receptor 4 Novel U 0.014172836729857299 -0.1171803217389946 1.0 4128 +67281 Rpl37 ribosomal protein L37 Novel U 0.01416868893444234 -0.11722328446755133 1.0 4129 +667663 Myo3a myosin IIIA Novel U 0.01416757352851224 -0.11723483780550831 1.0 4130 +56724 Cript cysteine-rich PDZ-binding protein Novel N 0.0141646274824726 -0.11726535285354085 1.0 4131 +70568 Cpne3 copine III Novel U 0.014159963968627698 -0.11731365737664158 1.0 4132 +103236 Csnk1g2 casein kinase 1, gamma 2 Novel N 0.01415179000064522 -0.11739832306829938 1.0 4133 +20728 Spic Spi-C transcription factor (Spi-1/PU.1 related) Novel U 0.014139522841479893 -0.11752538589967271 1.0 4134 +13709 Elf1 E74 like ETS transcription factor 1 Novel N 0.014135537022613647 -0.11756667088046253 1.0 4135 +71720 Osbpl3 oxysterol binding protein-like 3 Novel N 0.014132625337071597 -0.11759683002359059 1.0 4136 +257956 Or4f14b olfactory receptor family 4 subfamily F member 14B Novel U 0.014132331993275378 -0.11759986846898866 1.0 4137 +12322 Camk2a calcium/calmodulin-dependent protein kinase II alpha Novel U 0.014113226511947132 -0.11779776241652778 1.0 4138 +319277 Washc4 WASH complex subunit 4 Novel U 0.014113069940253508 -0.11779938418098332 1.0 4139 +208666 Diras1 DIRAS family, GTP-binding RAS-like 1 Novel U 0.014112674597676999 -0.11780347912639462 1.0 4140 +81489 Dnajb1 DnaJ heat shock protein family (Hsp40) member B1 Novel U 0.014111610864524582 -0.117814497239419 1.0 4141 +252837 Ackr4 atypical chemokine receptor 4 Novel U 0.014106573611514798 -0.11786667294050358 1.0 4142 +171283 Havcr1 hepatitis A virus cellular receptor 1 Novel U 0.014105455626177195 -0.11787825299587869 1.0 4143 +258771 Or5p53 olfactory receptor family 5 subfamily P member 53 Novel U 0.014103895201680748 -0.11789441582151669 1.0 4144 +258968 Or4a74 olfactory receptor family 4 subfamily A member 74 Novel U 0.01410092321648516 -0.11792519954647385 1.0 4145 +73318 Ube2d2b ubiquitin-conjugating enzyme E2D 2B Novel U 0.014100550620043579 -0.11792905888816729 1.0 4146 +12925 Crip1 cysteine-rich protein 1 Novel U 0.014091964732489429 -0.11801799122920734 1.0 4147 +72536 Tagap T cell activation Rho GTPase activating protein Novel U 0.01409012473544384 -0.11803704985811889 1.0 4148 +192212 Prom2 prominin 2 Novel U 0.014089261088055064 -0.11804599548938097 1.0 4149 +77097 Tanc2 tetratricopeptide repeat, ankyrin repeat and coiled-coil containing 2 Novel N 0.014073126605321727 -0.11821311593114033 1.0 4150 +240667 Sec31b SEC31 homolog B, COPII coat complex component Novel U 0.014069815179957841 -0.1182474155662022 1.0 4151 +51797 Ctps1 cytidine 5'-triphosphate synthase 1 Novel U 0.014067893053726433 -0.11826732488652064 1.0 4152 +207352 Sec23ip Sec23 interacting protein Novel U 0.014062997011022272 -0.1183180379359016 1.0 4153 +11752 Anxa8 annexin A8 Novel U 0.014057579230770188 -0.11837415512565276 1.0 4154 +68098 Rchy1 ring finger and CHY zinc finger domain containing 1 Novel U 0.01405183279522312 -0.11843367651614539 1.0 4155 +99152 Anapc2 anaphase promoting complex subunit 2 Novel U 0.014051815881096316 -0.1184338517121148 1.0 4156 +257881 Or5ac23 olfactory receptor family 5 subfamily AC member 23 Novel U 0.014050754208444786 -0.11844484848253875 1.0 4157 +258290 Or5w18 olfactory receptor family 5 subfamily W member 18 Novel U 0.01404652084782907 -0.1184886974926321 1.0 4158 +66753 Erlec1 endoplasmic reticulum lectin 1 Novel U 0.014041190119630372 -0.11854391300007597 1.0 4159 +18005 Nek2 NIMA (never in mitosis gene a)-related expressed kinase 2 Novel U 0.014033573787443599 -0.11862280271849314 1.0 4160 +71909 Haus5 HAUS augmin-like complex, subunit 5 Novel U 0.01403157190257442 -0.11864353817615968 1.0 4161 +70980 Ubqln5 ubiquilin 5 Novel U 0.014029867155855026 -0.11866119588663862 1.0 4162 +668212 Efr3b EFR3 homolog B Novel U 0.01402564959600855 -0.11870488123288363 1.0 4163 +68016 Cavin4 caveolae associated 4 Novel N 0.014025403791898119 -0.11870742726377909 1.0 4164 +545925 Psg27 pregnancy-specific beta-1-glycoprotein 27 Novel U 0.014015827142267921 -0.11880662188583328 1.0 4165 +21819 Tg thyroglobulin Novel U 0.014006687837903929 -0.11890128649999707 1.0 4166 +544881 Eif1ad2 eukaryotic translation initiation factor 1A domain containing 2 Novel U 0.013996593547875875 -0.11900584282427575 1.0 4167 +258086 Or8g4 olfactory receptor family 8 subfamily G member 4 Novel U 0.013996587436223236 -0.11900590612857287 1.0 4168 +14226 Fkbp1b FK506 binding protein 1b Novel U 0.013995184704260383 -0.11902043558013177 1.0 4169 +12913 Creb3 cAMP responsive element binding protein 3 Novel U 0.013994455789752265 -0.1190279856526451 1.0 4170 +258834 Or12e7 olfactory receptor family 12 subfamily E member 7 Novel U 0.013993018673445146 -0.11904287125611157 1.0 4171 +67504 Rnf151 ring finger protein 151 Novel U 0.01399090864399241 -0.11906472687181953 1.0 4172 +244962 Snx14 sorting nexin 14 Novel U 0.01398646256389318 -0.11911077922333034 1.0 4173 +258703 Or3a1c olfactory receptor family 3 subfamily A member 1C Novel U 0.013985080483063128 -0.11912509477113456 1.0 4174 +66913 Kdelr2 KDEL (Lys-Asp-Glu-Leu) endoplasmic reticulum protein retention receptor 2 Novel N 0.013975482910141264 -0.11922450611595603 1.0 4175 +258103 Or5w19 olfactory receptor family 5 subfamily W member 19 Novel U 0.01396680760015235 -0.11931436469163575 1.0 4176 +257978 Or11n2 olfactory receptor family 11 subfamily N member 2 Novel U 0.013965579737009695 -0.11932708285770353 1.0 4177 +258392 Or5h22 olfactory receptor family 5 subfamily H member 22 Novel U 0.013960484318299547 -0.11937986103720039 1.0 4178 +258861 Or10p21 olfactory receptor family 10 subfamily P member 21 Novel U 0.013952061704058352 -0.11946710219863216 1.0 4179 +101706 Numa1 nuclear mitotic apparatus protein 1 Novel U 0.013940103021486929 -0.11959096983958645 1.0 4180 +225010 Lclat1 lysocardiolipin acyltransferase 1 Novel U 0.013934742409679535 -0.11964649488046682 1.0 4181 +67955 Sugt1 SGT1, suppressor of G2 allele of SKP1 (S. cerevisiae) Novel U 0.01393092561891712 -0.11968602907371369 1.0 4182 +50765 Tfr2 transferrin receptor 2 Novel U 0.013929790468356342 -0.11969778692590614 1.0 4183 +670940 Vmn2r70 vomeronasal 2, receptor 70 Novel U 0.013925634467324609 -0.11974083464797167 1.0 4184 +75647 Ssmem1 serine-rich single-pass membrane protein 1 Novel U 0.013923886182389114 -0.11975894332586175 1.0 4185 +241303 Fam78a family with sequence similarity 78, member A Novel U 0.013921699467556552 -0.11978159324621306 1.0 4186 +228850 Ralgapb Ral GTPase activating protein, beta subunit (non-catalytic) Novel U 0.013918797446622203 -0.11981165228365225 1.0 4187 +258606 Or8g2 olfactory receptor family 8 subfamily G member 2 Novel U 0.0139159156139008 -0.11984150221224539 1.0 4188 +258095 Or10al3 olfactory receptor family 10 subfamily AL member 3 Novel U 0.013915865125159105 -0.11984202517297214 1.0 4189 +381085 Tbc1d22b TBC1 domain family, member 22B Novel U 0.013908963469621893 -0.11991351229414687 1.0 4190 +100033459 Ifi208 interferon activated gene 208 Novel U 0.013901359017467394 -0.11999227895958028 1.0 4191 +100042480 Nhsl2 NHS like 2 Novel U 0.013895300341505485 -0.12005503452602549 1.0 4192 +17957 Napb N-ethylmaleimide sensitive fusion protein attachment protein beta Novel N 0.0138950915279692 -0.12005719740976996 1.0 4193 +67673 Elob elongin B Novel N 0.013889351490836822 -0.12011665252569358 1.0 4194 +258265 Or10ak11 olfactory receptor family 10 subfamily AK member 11 Novel U 0.013874618714965144 -0.1202692541338585 1.0 4195 +258610 Or14a260 olfactory receptor family 14 subfamily A member 260 Novel U 0.013868894171368037 -0.12032854876825311 1.0 4196 +21822 Tgtp1 T cell specific GTPase 1 Novel U 0.01386872365369528 -0.12033031498470206 1.0 4197 +259039 Or9s23 olfactory receptor family 9 subfamily S member 23 Novel U 0.013861689255001416 -0.1204031770551297 1.0 4198 +18323 Or8c9 olfactory receptor family 8 subfamily C member 9 Novel U 0.013861522141275603 -0.1204049080136081 1.0 4199 +211007 Trim41 tripartite motif-containing 41 Novel U 0.013860204202639753 -0.12041855917867333 1.0 4200 +432572 Specc1 sperm antigen with calponin homology and coiled-coil domains 1 Novel U 0.013858210069199548 -0.12043921434729338 1.0 4201 +258301 Or13p8 olfactory receptor family 13 subfamily P member 8 Novel U 0.013857471317024514 -0.12044686631803722 1.0 4202 +67921 Ube2f ubiquitin-conjugating enzyme E2F (putative) Novel N 0.013848328313123971 -0.12054156925187898 1.0 4203 +11553 Adra2c adrenergic receptor, alpha 2c Novel U 0.013848118222035126 -0.12054374536847086 1.0 4204 +20377 Sfrp1 secreted frizzled-related protein 1 Novel U 0.013845426641923928 -0.12057162466678172 1.0 4205 +14026 Evl Ena-vasodilator stimulated phosphoprotein Novel U 0.01384433532312281 -0.12058292851104853 1.0 4206 +272636 Esyt3 extended synaptotagmin-like protein 3 Novel U 0.013841687063649251 -0.12061035909561882 1.0 4207 +258640 Or5i1 olfactory receptor family 5 subfamily I member 1 Novel U 0.01383731500829994 -0.12065564470120341 1.0 4208 +68732 Carmil1 capping protein regulator and myosin 1 linker 1 Novel U 0.013836096445055762 -0.12066826653922849 1.0 4209 +67459 Nvl nuclear VCP-like Novel U 0.013834667214227282 -0.12068307046516645 1.0 4210 +14886 Gtf2i general transcription factor II I Novel U 0.01382584139359926 -0.1207744880250983 1.0 4211 +58231 Stk4 serine/threonine kinase 4 Novel U 0.0138219013617662 -0.12081529874530356 1.0 4212 +235459 Gtf2a2 general transcription factor II A, 2 Novel N 0.013821310237963663 -0.12082142158621809 1.0 4213 +320127 Dgki diacylglycerol kinase, iota Novel U 0.013819853479755938 -0.12083651063984535 1.0 4214 +258035 Or5h23 olfactory receptor family 5 subfamily H member 23 Novel U 0.013809856613767268 -0.12094005784912673 1.0 4215 +12986 Csf3r colony stimulating factor 3 receptor Novel U 0.013800205380281448 -0.12104002500830564 1.0 4216 +56014 Or13e8 olfactory receptor family 13 subfamily E member 8 Novel U 0.013795337874261479 -0.12109044247564986 1.0 4217 +22712 Zfp54 zinc finger protein 54 Novel U 0.013787114461822693 -0.12117562031136069 1.0 4218 +55960 Ebag9 estrogen receptor-binding fragment-associated gene 9 Novel U 0.01377722619388016 -0.12127804266565013 1.0 4219 +11972 Atp6v0d1 ATPase, H+ transporting, lysosomal V0 subunit D1 Novel N 0.013772630071410328 -0.12132564915110328 1.0 4220 +22629 Ywhah tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, eta polypeptide Novel U 0.01377079832349658 -0.12134462233577842 1.0 4221 +319594 Hif1an hypoxia-inducible factor 1, alpha subunit inhibitor Novel U 0.013769314333867461 -0.12135999345157329 1.0 4222 +259070 Or7g17 olfactory receptor family 7 subfamily G member 17 Novel U 0.013764105584178978 -0.12141394550961818 1.0 4223 +56274 Stk3 serine/threonine kinase 3 Novel U 0.01375747503864022 -0.12148262448234119 1.0 4224 +66589 Ube2v1 ubiquitin-conjugating enzyme E2 variant 1 Novel U 0.013744340701586285 -0.12161866951377778 1.0 4225 +59020 Pdzk1 PDZ domain containing 1 Novel U 0.013743637822093794 -0.12162594991645509 1.0 4226 +328833 Treml2 triggering receptor expressed on myeloid cells-like 2 Novel N 0.013736910430576862 -0.12169563201663638 1.0 4227 +11550 Adra1d adrenergic receptor, alpha 1d Novel N 0.013721591746771568 -0.12185430243991702 1.0 4228 +258522 Or4c31 olfactory receptor family 4 subfamily C member 31 Novel U 0.013716322641104532 -0.12190887966320367 1.0 4229 +66438 Hamp2 hepcidin antimicrobial peptide 2 Novel U 0.013715036429243104 -0.1219222022033824 1.0 4230 +216197 Ckap4 cytoskeleton-associated protein 4 Novel U 0.01371500915307916 -0.12192248472899186 1.0 4231 +258296 Or11h6 olfactory receptor family 11 subfamily H member 6 Novel U 0.013704529326367749 -0.12203103442956294 1.0 4232 +11981 Atp9a ATPase, class II, type 9A Novel U 0.013691964185112288 -0.12216118374963024 1.0 4233 +22415 Wnt3 wingless-type MMTV integration site family, member 3 Novel U 0.013691710478113019 -0.12216381163838849 1.0 4234 +68059 Tm9sf2 transmembrane 9 superfamily member 2 Novel N 0.013689978887124464 -0.12218174740092495 1.0 4235 +259109 Or10g7 olfactory receptor family 10 subfamily G member 7 Novel U 0.013686271598813762 -0.12222014737137667 1.0 4236 +67197 Zcrb1 zinc finger CCHC-type and RNA binding motif 1 Novel N 0.013681192402580136 -0.122272757518995 1.0 4237 +18754 Prkce protein kinase C, epsilon Novel U 0.013678320276722085 -0.12230250690421664 1.0 4238 +258688 Or5b108 olfactory receptor family 5 subfamily B member 108 Novel U 0.013678167930463059 -0.12230408490175951 1.0 4239 +70417 Megf10 multiple EGF-like-domains 10 Novel U 0.01367021297436306 -0.1223864820755382 1.0 4240 +84506 Hamp hepcidin antimicrobial peptide Novel N 0.013665163619358624 -0.12243878312868554 1.0 4241 +225467 Pggt1b protein geranylgeranyltransferase type I, beta subunit Novel N 0.013663863748469967 -0.12245224714861931 1.0 4242 +258415 Or8b39 olfactory receptor family 8 subfamily B member 39 Novel U 0.01364558929018486 -0.122641533386796 1.0 4243 +258401 Or8k30 olfactory receptor family 8 subfamily K member 30 Novel U 0.013645151128410716 -0.1226460718520488 1.0 4244 +12176 Bnip3 BCL2/adenovirus E1B interacting protein 3 Novel U 0.013634341495341753 -0.12275803767602957 1.0 4245 +100732 Mapre3 microtubule-associated protein, RP/EB family, member 3 Novel U 0.013628327274590901 -0.12282033277686004 1.0 4246 +108699 Chn1 chimerin 1 Novel U 0.013627888487296713 -0.12282487772122888 1.0 4247 +209446 Tfe3 transcription factor E3 Novel U 0.013619427355448178 -0.12291251784677129 1.0 4248 +68034 Pabir1 PP2A A alpha (PPP2R1A) and B55A (PPP2R2A) interacting phosphatase regulator 1 Novel U 0.013616202627758091 -0.122945919470178 1.0 4249 +18168 Npy5r neuropeptide Y receptor Y5 Novel N 0.013603650879941002 -0.12307593006145093 1.0 4250 +217340 Rnf157 ring finger protein 157 Novel U 0.013603359181381619 -0.12307895146553995 1.0 4251 +244179 Ubqlnl ubiquilin-like Novel U 0.013601642086673757 -0.12309673707607753 1.0 4252 +28146 Serp1 stress-associated endoplasmic reticulum protein 1 Novel U 0.013600974305494513 -0.12310365393158001 1.0 4253 +16639 Klra8 killer cell lectin-like receptor, subfamily A, member 8 Novel U 0.0135929111157029 -0.12318717218637847 1.0 4254 +26908 Eif2s3y eukaryotic translation initiation factor 2, subunit 3, structural gene Y-linked Novel U 0.013575322364978703 -0.12336935588818067 1.0 4255 +228361 Ambra1 autophagy/beclin 1 regulator 1 Novel U 0.013574115219231605 -0.12338185946414633 1.0 4256 +100040531 Dynlt1f dynein light chain Tctex-type 1F Novel U 0.013572869219258531 -0.12339476549090739 1.0 4257 +102414 Clk3 CDC-like kinase 3 Novel N 0.013572738713154972 -0.1233961172688379 1.0 4258 +18712 Pim1 proviral integration site 1 Novel U 0.013569075374207625 -0.12343406201322873 1.0 4259 +52551 Sgta small glutamine-rich tetratricopeptide repeat (TPR)-containing, alpha Novel U 0.013563990166003407 -0.12348673443264081 1.0 4260 +15364 Hmga2 high mobility group AT-hook 2 Novel U 0.013559420854210103 -0.12353406321398783 1.0 4261 +69893 Coa7 cytochrome c oxidase assembly factor 7 Novel N 0.013559302586211328 -0.12353528823003128 1.0 4262 +381413 Gpr176 G protein-coupled receptor 176 Novel N 0.01355429887373569 -0.12358711651936574 1.0 4263 +66437 Fis1 fission, mitochondrial 1 Novel U 0.01355363591660032 -0.12359398340758038 1.0 4264 +52850 Sgsm1 small G protein signaling modulator 1 Novel U 0.013547321032066253 -0.1236593927739936 1.0 4265 +258952 Or1j13 olfactory receptor family 1 subfamily J member 13 Novel U 0.013541351452742536 -0.1237212254803893 1.0 4266 +14705 Bscl2 BSCL2 lipid droplet biogenesis associated, seipin Novel N 0.013530583112169476 -0.12383276359805495 1.0 4267 +66050 Trappc2b trafficking protein particle complex 2B Novel U 0.013519573300280564 -0.12394680286767222 1.0 4268 +224826 Ubr2 ubiquitin protein ligase E3 component n-recognin 2 Novel N 0.013500638110637186 -0.12414293293953751 1.0 4269 +258724 Or6c208 olfactory receptor family 6 subfamily C member 208 Novel U 0.01349538286742651 -0.1241973665759569 1.0 4270 +66827 Ttc1 tetratricopeptide repeat domain 1 Novel U 0.0134793992056952 -0.12436292481873522 1.0 4271 +57342 Parva parvin, alpha Novel N 0.013471064345868037 -0.12444925702283123 1.0 4272 +259023 Or8k53 olfactory receptor family 8 subfamily K member 53 Novel U 0.01346331202769152 -0.12452955527965985 1.0 4273 +258608 Or6x1 olfactory receptor family 6 subfamily X member 1 Novel U 0.013445038926263909 -0.12471882746355122 1.0 4274 +75734 Mff mitochondrial fission factor Novel U 0.013444490376001317 -0.12472450932913852 1.0 4275 +12211 Birc6 baculoviral IAP repeat-containing 6 Novel U 0.013443044517523659 -0.12473948548372006 1.0 4276 +233011 Itpkc inositol 1,4,5-trisphosphate 3-kinase C Novel U 0.01343768097771844 -0.12479504085270565 1.0 4277 +258121 Or5b111 olfactory receptor family 5 subfamily B member 111 Novel U 0.013432342680508271 -0.12485033475972152 1.0 4278 +258068 Or6c6c olfactory receptor family 6 subfamily C member 6C Novel U 0.013429449336934646 -0.12488030391734357 1.0 4279 +57913 Pidd1 p53 induced death domain protein 1 Novel U 0.013426094017907134 -0.12491505820153039 1.0 4280 +12267 C3ar1 complement component 3a receptor 1 Novel U 0.013423770500545995 -0.12493912511797553 1.0 4281 +67154 Mtdh metadherin Novel U 0.013422871829113397 -0.12494843352713216 1.0 4282 +27632 Nelfe negative elongation factor complex member E, Rdbp Novel N 0.013422467214067976 -0.12495262451647163 1.0 4283 +53323 Ube2k ubiquitin-conjugating enzyme E2K Novel U 0.013421539702124587 -0.12496223165469093 1.0 4284 +74455 Nsun6 NOL1/NOP2/Sun domain family member 6 Novel N 0.013419718272542343 -0.12498109796242754 1.0 4285 +15900 Irf8 interferon regulatory factor 8 Novel U 0.013419341820966822 -0.12498499723547161 1.0 4286 +217218 Atxn7l3 ataxin 7-like 3 Novel N 0.013404516697955546 -0.12513855537227275 1.0 4287 +259044 Or7a37 olfactory receptor family 7 subfamily A member 37 Novel U 0.013376315011866903 -0.12543066750969845 1.0 4288 +12738 Cldn2 claudin 2 Novel N 0.013369469749212335 -0.12550157051524857 1.0 4289 +73010 Gpr22 G protein-coupled receptor 22 Novel U 0.013367649174824013 -0.12552042796491464 1.0 4290 +223697 Sun2 Sad1 and UNC84 domain containing 2 Novel U 0.013351935157184122 -0.12568319324305813 1.0 4291 +258451 Or4c110 olfactory receptor family 4 subfamily C member 110 Novel U 0.013351893000703613 -0.12568362989849743 1.0 4292 +24086 Tlk2 tousled-like kinase 2 (Arabidopsis) Novel U 0.013334123423822638 -0.1258676865916872 1.0 4293 +271424 Ip6k3 inositol hexaphosphate kinase 3 Novel U 0.013334080974811952 -0.12586812627714447 1.0 4294 +78748 Rassf10 Ras association (RalGDS/AF-6) domain family (N-terminal) member 10 Novel U 0.01333364552649845 -0.12587263663646112 1.0 4295 +72416 Lrpprc leucine-rich PPR-motif containing Novel U 0.013329463663557592 -0.12591595223533117 1.0 4296 +406186 Or4b13 olfactory receptor family 4 subfamily B member 13 Novel U 0.01332822523764373 -0.1259287798102359 1.0 4297 +68524 Wipf2 WAS/WASL interacting protein family, member 2 Novel U 0.013318255309906695 -0.1260320479939924 1.0 4298 +14799 Gria1 glutamate receptor, ionotropic, AMPA1 (alpha 1) Novel N 0.01331566514473591 -0.1260588768396843 1.0 4299 +241989 Pabpc4l poly(A) binding protein, cytoplasmic 4-like Novel U 0.01330080865412224 -0.12621275988107988 1.0 4300 +18764 Pkd2 polycystin 2, transient receptor potential cation channel Novel U 0.0132942020186257 -0.1262811911943716 1.0 4301 +75540 Fpgt fucose-1-phosphate guanylyltransferase Novel N 0.013285739274562565 -0.12636884801917983 1.0 4302 +229473 Tmem131l transmembrane 131 like Novel U 0.013283739174203179 -0.1263895649929526 1.0 4303 +258288 Or5b122 olfactory receptor family 5 subfamily B member 122 Novel U 0.013280120685693871 -0.12642704517798062 1.0 4304 +404242 Mrgprx1 MAS-related GPR, member X1 Novel U 0.01327730035526442 -0.1264562580678555 1.0 4305 +16568 Kif3a kinesin family member 3A Novel U 0.013256396683447929 -0.12667277761335952 1.0 4306 +54132 Pdlim1 PDZ and LIM domain 1 (elfin) Novel N 0.013235858702506686 -0.12688550934479917 1.0 4307 +69068 Tcim transcriptional and immune response regulator Novel U 0.01323425660486099 -0.12690210381954717 1.0 4308 +574418 Serinc4 serine incorporator 4 Novel U 0.013232900261202506 -0.12691615278257434 1.0 4309 +76380 Cep112 centrosomal protein 112 Novel N 0.013230439209747601 -0.12694164427264154 1.0 4310 +171095 Il17rc interleukin 17 receptor C Novel U 0.013223805403348858 -0.12701035702124508 1.0 4311 +70456 Mpc2 mitochondrial pyruvate carrier 2 Novel N 0.013223759878615286 -0.12701082856493887 1.0 4312 +64704 Htra2 HtrA serine peptidase 2 Novel U 0.013221690453200317 -0.12703226360535844 1.0 4313 +22670 Trim26 tripartite motif-containing 26 Novel U 0.013219699211278982 -0.12705288882372107 1.0 4314 +104001 Rtn1 reticulon 1 Novel N 0.013214967259672198 -0.12710190222290962 1.0 4315 +15170 Ptpn6 protein tyrosine phosphatase, non-receptor type 6 Novel U 0.01321352226907516 -0.12711686938801223 1.0 4316 +225288 Fhod3 formin homology 2 domain containing 3 Novel U 0.013208243454427919 -0.12717154717659668 1.0 4317 +69165 Cd209b CD209b antigen Novel U 0.013202465401083316 -0.1272313960631968 1.0 4318 +627873 Eif1ad16 eukaryotic translation initiation factor 1A domain containing 16 Novel U 0.013201397828124233 -0.12724245394881242 1.0 4319 +53598 Dctn3 dynactin 3 Novel U 0.013178815800558675 -0.1274763578479923 1.0 4320 +14942 Gzme granzyme E Novel U 0.013172093630547234 -0.12754598586399138 1.0 4321 +384732 Or2d2b olfactory receptor family 2 subfamily D member 2B Novel U 0.0131679825111415 -0.12758856870365018 1.0 4322 +26404 Map3k12 mitogen-activated protein kinase kinase kinase 12 Novel U 0.013164100173203385 -0.1276287818323882 1.0 4323 +207920 Esrp1 epithelial splicing regulatory protein 1 Novel U 0.013158846237104506 -0.12768320192978655 1.0 4324 +52036 Ppp6r3 protein phosphatase 6, regulatory subunit 3 Novel N 0.013155045002934357 -0.12772257498836212 1.0 4325 +56554 Raet1d retinoic acid early transcript delta Novel U 0.013151793466773436 -0.12775625429302845 1.0 4326 +258398 Or4k45 olfactory receptor family 4 subfamily K member 45 Novel U 0.013144995870534113 -0.12782666357141642 1.0 4327 +22195 Ube2l3 ubiquitin-conjugating enzyme E2L 3 Novel U 0.013143778501928155 -0.1278392730354181 1.0 4328 +258165 Or8g52 olfactory receptor family 8 subfamily G member 52 Novel U 0.01314208653752945 -0.12785679834703953 1.0 4329 +52120 Hgsnat heparan-alpha-glucosaminide N-acetyltransferase Novel U 0.013139257206572651 -0.12788610446408083 1.0 4330 +258888 Or4k48 olfactory receptor family 4 subfamily K member 48 Novel U 0.013125540052513289 -0.12802818629490056 1.0 4331 +12475 Cd14 CD14 antigen Novel U 0.013123184078257794 -0.1280525893987905 1.0 4332 +12057 Opn1sw opsin 1 (cone pigments), short-wave-sensitive (color blindness, tritan) Novel U 0.013122997661398362 -0.12805452029849235 1.0 4333 +106338 Nsun3 NOL1/NOP2/Sun domain family member 3 Novel N 0.013122916589440514 -0.12805536003916665 1.0 4334 +80886 Senp3 SUMO/sentrin specific peptidase 3 Novel N 0.01311897377953986 -0.12809619953450474 1.0 4335 +66141 Ifitm3 interferon induced transmembrane protein 3 Novel U 0.01310890320609026 -0.12820051020324344 1.0 4336 +235599 6430571L13Rik RIKEN cDNA 6430571L13 gene Novel U 0.013108730122368299 -0.1282023029987457 1.0 4337 +16897 Llgl1 LLGL1 scribble cell polarity complex component Novel U 0.013100185915789594 -0.12829080360961226 1.0 4338 +258445 Or2ag12 olfactory receptor family 2 subfamily AG member 12 Novel U 0.013099260468683553 -0.12830038936031418 1.0 4339 +57080 Gtf2ird1 general transcription factor II I repeat domain-containing 1 Novel U 0.013095794965880437 -0.12833628492442659 1.0 4340 +17126 Smad2 SMAD family member 2 Novel U 0.01309492098456294 -0.12834533759418265 1.0 4341 +50766 Crim1 cysteine rich transmembrane BMP regulator 1 Novel U 0.013094019482698662 -0.12835467532085754 1.0 4342 +259082 Or8j3c olfactory receptor family 8 subfamily J member 3C Novel U 0.013093312976683912 -0.1283619932869332 1.0 4343 +100862369 Btbd35f9 BTB domain containing 35, family member 9 Novel U 0.013092715154950044 -0.12836818550480028 1.0 4344 +230861 Eif4g3 eukaryotic translation initiation factor 4 gamma, 3 Novel N 0.013078700713787896 -0.1285133466256579 1.0 4345 +233099 Scgb2b27 secretoglobin, family 2B, member 27 Novel U 0.01307228841147975 -0.12857976504217258 1.0 4346 +74463 Exoc3l2 exocyst complex component 3-like 2 Novel U 0.013068538034787002 -0.12861861132066904 1.0 4347 +170952 Prima1 proline rich membrane anchor 1 Novel U 0.013067664638947667 -0.12862765792606154 1.0 4348 +71709 Syde1 synapse defective 1, Rho GTPase, homolog 1 (C. elegans) Novel U 0.013067051355622987 -0.12863401029457797 1.0 4349 +18033 Nfkb1 nuclear factor of kappa light polypeptide gene enhancer in B cells 1, p105 Novel U 0.013063025153147974 -0.12867571356745988 1.0 4350 +14113 Fbl fibrillarin Novel N 0.013055589637151196 -0.1287527303977251 1.0 4351 +56700 Glmp glycosylated lysosomal membrane protein Novel N 0.013041934769088121 -0.12889416707224283 1.0 4352 +100502950 Gm3336 predicted gene 3336 Novel U 0.013026267238277838 -0.1290564508413334 1.0 4353 +77963 Hook1 hook microtubule tethering protein 1 Novel U 0.01301904076888784 -0.12913130237371764 1.0 4354 +99011 Pomt1 protein-O-mannosyltransferase 1 Novel U 0.013007994894508643 -0.1292457151774238 1.0 4355 +258051 Or2h1b olfactory receptor family 2 subfamily H member 1B Novel U 0.013001968906220856 -0.129308132166015 1.0 4356 +258794 Or8b4 olfactory receptor family 8 subfamily B member 4 Novel U 0.012995996823473134 -0.12936999080279427 1.0 4357 +258821 Or13c3 olfactory receptor family 13 subfamily C member 3 Novel U 0.012986187709907707 -0.1294715932786477 1.0 4358 +18452 P4ha2 procollagen-proline, 2-oxoglutarate 4-dioxygenase (proline 4-hydroxylase), alpha II polypeptide Novel U 0.012985703785970233 -0.12947660574688394 1.0 4359 +11747 Anxa5 annexin A5 Novel N 0.01298285043228307 -0.12950616069057663 1.0 4360 +258836 Or13c25 olfactory receptor family 13 subfamily C member 25 Novel U 0.012980551658484812 -0.12952997131401087 1.0 4361 +258528 Or2p2 olfactory receptor family 2 subfamily P member 2 Novel U 0.012979245568926323 -0.1295434997467223 1.0 4362 +258942 Or1j20 olfactory receptor family 1 subfamily J member 20 Novel U 0.012978992387565266 -0.12954612219093725 1.0 4363 +16440 Itpr3 inositol 1,4,5-triphosphate receptor 3 Novel N 0.012972946621175888 -0.12960874404045455 1.0 4364 +101700 Trim68 tripartite motif-containing 68 Novel U 0.012970179325697223 -0.12963740759605263 1.0 4365 +258566 Or5g25 olfactory receptor family 5 subfamily G member 25 Novel U 0.012968701295433996 -0.12965271698493153 1.0 4366 +12740 Cldn4 claudin 4 Novel U 0.012967804022551918 -0.12966201090794782 1.0 4367 +15502 Dnaja1 DnaJ heat shock protein family (Hsp40) member A1 Novel U 0.012948577230015888 -0.12986116139298928 1.0 4368 +56619 Clec4e C-type lectin domain family 4, member e Novel U 0.012948021588395914 -0.12986691671062323 1.0 4369 +72404 Wdr44 WD repeat domain 44 Novel U 0.01293839776430592 -0.12996659996418122 1.0 4370 +56807 Scamp5 secretory carrier membrane protein 5 Novel U 0.012915600918907269 -0.13020272893941454 1.0 4371 +56305 Pitpnb phosphatidylinositol transfer protein, beta Novel U 0.012915144625278728 -0.1302074552138191 1.0 4372 +258519 Or7e168 olfactory receptor family 7 subfamily E member 168 Novel U 0.012911543955981276 -0.1302447508280365 1.0 4373 +13040 Ctss cathepsin S Novel U 0.012904462183851932 -0.13031810359095153 1.0 4374 +69655 Cd164l2 CD164 sialomucin-like 2 Novel U 0.012897770851351052 -0.13038741219302993 1.0 4375 +17390 Mmp2 matrix metallopeptidase 2 Novel U 0.012891419873613849 -0.13045319541165473 1.0 4376 +268973 Nlrc4 NLR family, CARD domain containing 4 Novel U 0.012889713154410485 -0.1304708735530578 1.0 4377 +17127 Smad3 SMAD family member 3 Novel U 0.012888215581607684 -0.13048638536291918 1.0 4378 +22186 Uba52 ubiquitin A-52 residue ribosomal protein fusion product 1 Novel N 0.012887591625379809 -0.13049284828101604 1.0 4379 +67163 Ccdc47 coiled-coil domain containing 47 Novel U 0.01288627939820693 -0.1305064402869356 1.0 4380 +211480 Kcnj14 potassium inwardly-rectifying channel, subfamily J, member 14 Novel U 0.012884060070231967 -0.13052942801314377 1.0 4381 +69807 Trim32 tripartite motif-containing 32 Novel U 0.012883934603038275 -0.13053072759821152 1.0 4382 +259026 Or1e19 olfactory receptor family 1 subfamily E member 19 Novel U 0.012875219470092476 -0.13062099865876955 1.0 4383 +70110 Ifi35 interferon-induced protein 35 Novel U 0.012869083376897187 -0.13068455611037316 1.0 4384 +69441 Efcab15 EF-hand calcium binding domain 15 Novel U 0.012865138737011995 -0.13072541456063091 1.0 4385 +14815 Nr3c1 nuclear receptor subfamily 3, group C, member 1 Novel U 0.012852289379648113 -0.13085850778180616 1.0 4386 +258617 Or1ak2 olfactory receptor family 1 subfamily AK member 2 Novel U 0.012838557682230743 -0.13100074025225003 1.0 4387 +263876 Spata2 spermatogenesis associated 2 Novel N 0.012831440938474242 -0.13107445525012953 1.0 4388 +13616 Edn3 endothelin 3 Novel U 0.01282208330797021 -0.13117138127927477 1.0 4389 +257926 Or55b4 olfactory receptor family 55 subfamily B member 4 Novel U 0.012807862050395784 -0.131318684597732 1.0 4390 +110197 Dgkg diacylglycerol kinase, gamma Novel U 0.012803552575022853 -0.13136332200197845 1.0 4391 +258583 Or8k38 olfactory receptor family 8 subfamily K member 38 Novel U 0.012802600113609126 -0.13137318756599137 1.0 4392 +66661 Srp72 signal recognition particle 72 Novel U 0.012801999303484492 -0.13137941073751175 1.0 4393 +230661 Tesk2 testis-specific kinase 2 Novel U 0.012796210050355554 -0.13143937563110986 1.0 4394 +16520 Kcnj4 potassium inwardly-rectifying channel, subfamily J, member 4 Novel N 0.012795868509767973 -0.13144291329728847 1.0 4395 +268816 Mroh5 maestro heat-like repeat family member 5 Novel U 0.012788181185365953 -0.13152253835073743 1.0 4396 +19192 Psme3 proteaseome (prosome, macropain) activator subunit 3 (PA28 gamma, Ki) Novel U 0.012786645543974058 -0.13153844447379318 1.0 4397 +72058 Igsf5 immunoglobulin superfamily, member 5 Novel U 0.012776298888489529 -0.13164561479117395 1.0 4398 +11608 Agtr1b angiotensin II receptor, type 1b Novel U 0.012771224022002068 -0.13169818009142384 1.0 4399 +13034 Ctse cathepsin E Novel U 0.012769339104727028 -0.1317177040025954 1.0 4400 +20979 Syt1 synaptotagmin I Novel U 0.012766762382352023 -0.1317443936082505 1.0 4401 +545384 Ifi214 interferon activated gene 214 Novel U 0.01276101611320586 -0.13180391327516805 1.0 4402 +60530 Fignl1 fidgetin-like 1 Novel U 0.012749837781343452 -0.131919698069131 1.0 4403 +56734 Tulp2 TUB like protein 2 Novel N 0.012747717981196753 -0.13194165488936582 1.0 4404 +209737 Kif15 kinesin family member 15 Novel U 0.012746460202667922 -0.1319546829180202 1.0 4405 +74374 Clec16a C-type lectin domain family 16, member A Novel U 0.012726550354035268 -0.13216090847565623 1.0 4406 +227634 Camsap1 calmodulin regulated spectrin-associated protein 1 Novel U 0.012719252635418322 -0.132236498005191 1.0 4407 +20358 Sema6a sema domain, transmembrane domain (TM), and cytoplasmic domain, (semaphorin) 6A Novel U 0.012702296498612991 -0.13241212911281763 1.0 4408 +19395 Rasgrp2 RAS, guanyl releasing protein 2 Novel U 0.01269242211208395 -0.13251440768388248 1.0 4409 +14829 Grpr gastrin releasing peptide receptor Novel U 0.01268678323037034 -0.13257281503530383 1.0 4410 +21809 Tgfb3 transforming growth factor, beta 3 Novel U 0.01268509032121468 -0.13259035013268675 1.0 4411 +67204 Eif2s2 eukaryotic translation initiation factor 2 subunit 2 beta Novel N 0.012681525402356817 -0.1326272754450261 1.0 4412 +214469 Fam168b family with sequence similarity 168, member B Novel U 0.012676288967499429 -0.1326815142651404 1.0 4413 +24012 Rgs7 regulator of G protein signaling 7 Novel U 0.01267309356352791 -0.13271461215443414 1.0 4414 +258328 Or8g34 olfactory receptor family 8 subfamily G member 34 Novel U 0.012672967626489525 -0.13271591660613777 1.0 4415 +16636 Klra5 killer cell lectin-like receptor, subfamily A, member 5 Novel U 0.012667685027275524 -0.13277063359514032 1.0 4416 +114716 Spred2 sprouty-related EVH1 domain containing 2 Novel U 0.012666164849898014 -0.13278637954244343 1.0 4417 +66212 Sec61b SEC61 translocon subunit beta Novel U 0.012665658722679735 -0.13279162199153233 1.0 4418 +18436 P2rx1 purinergic receptor P2X, ligand-gated ion channel, 1 Novel N 0.012664800674565433 -0.13280050962569345 1.0 4419 +383435 Ms4a14 membrane-spanning 4-domains, subfamily A, member 14 Novel U 0.012663924327984842 -0.13280958679476687 1.0 4420 +74603 Cd200r3 CD200 receptor 3 Novel U 0.012660580568288287 -0.1328442213477836 1.0 4421 +217305 Cd300ld CD300 molecule like family member d Novel U 0.012660470269749195 -0.13284536381642564 1.0 4422 +57385 P2ry4 pyrimidinergic receptor P2Y, G-protein coupled, 4 Novel N 0.012658390052776438 -0.132866910635446 1.0 4423 +258912 Or1ad6 olfactory receptor family 1 subfamily AD member 6 Novel U 0.012650559655259139 -0.13294801763551975 1.0 4424 +21930 Tnfaip6 tumor necrosis factor alpha induced protein 6 Novel U 0.012649084483479033 -0.13296329741632443 1.0 4425 +54366 Ctnnal1 catenin alpha like 1 Novel N 0.01264902242130808 -0.13296394025425098 1.0 4426 +240641 Kif20b kinesin family member 20B Novel U 0.012645666654354926 -0.13299869917803686 1.0 4427 +102639868 Anxa2r2 annexin A2 receptor 2 Novel U 0.012641742569150367 -0.13303934472358833 1.0 4428 +18128 Notch1 notch 1 Novel U 0.012631557704178972 -0.13314483922015263 1.0 4429 +56376 Pdlim5 PDZ and LIM domain 5 Novel U 0.012631327535596289 -0.1331472232987657 1.0 4430 +66152 Uqcr10 ubiquinol-cytochrome c reductase, complex III subunit X Novel U 0.012630445777789248 -0.13315635651714477 1.0 4431 +320664 Cass4 Cas scaffolding protein family member 4 Novel U 0.012627662440706403 -0.1331851862311516 1.0 4432 +258320 Or4c124 olfactory receptor family 4 subfamily C member 124 Novel U 0.012617073237820992 -0.13329486884653743 1.0 4433 +224065 Uts2b urotensin 2B Novel U 0.012615237736700377 -0.1333138809068059 1.0 4434 +12165 Gdf2 growth differentiation factor 2 Novel U 0.012608361869195419 -0.13338510091639028 1.0 4435 +258235 Or8k37 olfactory receptor family 8 subfamily K member 37 Novel U 0.012594910629278885 -0.13352442841726006 1.0 4436 +17874 Myd88 myeloid differentiation primary response gene 88 Novel U 0.012593481615655122 -0.1335392300933987 1.0 4437 +259071 Or2l13 olfactory receptor family 2 subfamily L member 13 Novel U 0.012581699070007944 -0.13366127331388186 1.0 4438 +16007 Ccn1 cellular communication network factor 1 Novel U 0.012575234173844863 -0.13372823649581703 1.0 4439 +20339 Sele selectin, endothelial cell Novel U 0.012572598878189966 -0.13375553280157979 1.0 4440 +66813 Bcl2l14 BCL2 like 14 Novel N 0.012567660801589303 -0.13380668123667894 1.0 4441 +76867 Rhbdd1 rhomboid domain containing 1 Novel U 0.012565829499955088 -0.13382564979880532 1.0 4442 +258426 Or5ak25 olfactory receptor family 5 subfamily AK member 25 Novel U 0.012565458970067505 -0.1338294877352004 1.0 4443 +17227 Mcpt4 mast cell protease 4 Novel U 0.012562338937524951 -0.13386180492971064 1.0 4444 +258302 Or6k2 olfactory receptor family 6 subfamily K member 2 Novel U 0.012557111758633499 -0.13391594787683403 1.0 4445 +193813 Mcfd2 multiple coagulation factor deficiency 2 Novel N 0.012554249269163473 -0.1339455974486653 1.0 4446 +16408 Itgal integrin alpha L Novel U 0.012552367856936373 -0.1339650850546655 1.0 4447 +22258 Usp4 ubiquitin specific peptidase 4 (proto-oncogene) Novel U 0.012546637862247323 -0.13402443615129125 1.0 4448 +110935 Atp6v1b1 ATPase, H+ transporting, lysosomal V1 subunit B1 Novel N 0.012540256505214068 -0.1340905340376659 1.0 4449 +100039129 Eif1ad11 eukaryotic translation initiation factor 1A domain containing 11 Novel U 0.01253634140008711 -0.1341310865678688 1.0 4450 +234155 Mboat4 membrane bound O-acyltransferase domain containing 4 Novel N 0.012532667989435675 -0.13416913563463947 1.0 4451 +237716 Gpr75 G protein-coupled receptor 75 Novel U 0.012526354637574112 -0.1342345291256813 1.0 4452 +18746 Pkm pyruvate kinase, muscle Novel U 0.01252387661707095 -0.13426019638059253 1.0 4453 +66985 Rassf7 Ras association (RalGDS/AF-6) domain family (N-terminal) member 7 Novel U 0.012522002007155258 -0.13427961352847476 1.0 4454 +71887 Ppm1j protein phosphatase 1J Novel U 0.01251773731044226 -0.13432378711683365 1.0 4455 +52440 Tax1bp1 Tax1 (human T cell leukemia virus type I) binding protein 1 Novel U 0.012510947822665326 -0.13439411240803475 1.0 4456 +100043813 Rps27rt ribosomal protein S27, retrogene Novel U 0.012502936584946351 -0.13447709254497264 1.0 4457 +259092 Or52r1 olfactory receptor family 52 subfamily R member 1 Novel U 0.0124909099883134 -0.1346016636375437 1.0 4458 +27387 Sh2d3c SH2 domain containing 3C Novel N 0.012489641287242547 -0.1346148048015293 1.0 4459 +57816 Tesc tescalcin Novel U 0.012489019987812626 -0.1346212402006003 1.0 4460 +18217 Ntsr2 neurotensin receptor 2 Novel N 0.012485067507795248 -0.1346621798586895 1.0 4461 +338366 Mia3 MIA SH3 domain ER export factor 3 Novel U 0.012470320531097373 -0.13481492855854535 1.0 4462 +57264 Retn resistin Novel N 0.012469847998645898 -0.13481982303414405 1.0 4463 +59044 Rnf130 ring finger protein 130 Novel U 0.012465005415257366 -0.13486998235369113 1.0 4464 +12981 Csf2 colony stimulating factor 2 (granulocyte-macrophage) Novel U 0.012455308041937254 -0.1349704274277569 1.0 4465 +387514 Tas2r143 taste receptor, type 2, member 143 Novel U 0.012447407266511883 -0.13505226339988888 1.0 4466 +18506 Pax4 paired box 4 Novel U 0.012444196533923469 -0.13508552006249253 1.0 4467 +258167 Or4p21 olfactory receptor family 4 subfamily P member 21 Novel U 0.012443123250253842 -0.1350966370994602 1.0 4468 +216742 Fnip1 folliculin interacting protein 1 Novel U 0.012440617424393088 -0.13512259236135132 1.0 4469 +76854 Gper1 G protein-coupled estrogen receptor 1 Novel U 0.012440184173850692 -0.1351270799562271 1.0 4470 +258932 Or6c2 olfactory receptor family 6 subfamily C member 2 Novel U 0.012430210395078758 -0.1352303880288765 1.0 4471 +13349 Ackr1 atypical chemokine receptor 1 (Duffy blood group) Novel U 0.012428430519002396 -0.13524882392676518 1.0 4472 +21942 Tnfrsf9 tumor necrosis factor receptor superfamily, member 9 Novel U 0.012427757831513073 -0.13525579160166618 1.0 4473 +23999 Twf2 twinfilin actin binding protein 2 Novel U 0.012425116429250206 -0.1352831511594735 1.0 4474 +258389 Or4f54 olfactory receptor family 4 subfamily F member 54 Novel U 0.012424638204512367 -0.13528810459558727 1.0 4475 +19217 Ptger2 prostaglandin E receptor 2 (subtype EP2) Novel N 0.012423893028483523 -0.1352958231043977 1.0 4476 +667823 Trim5 tripartite motif-containing 5 Novel U 0.01242344013345654 -0.13530051417619907 1.0 4477 +101148 Bmt2 base methyltransferase of 25S rRNA 2 Novel N 0.012419193938640806 -0.1353444961225143 1.0 4478 +258817 Or52ac1 olfactory receptor family 52 subfamily AC member 1 Novel U 0.012418630499627145 -0.13535033220529574 1.0 4479 +12750 Clk4 CDC like kinase 4 Novel N 0.012417622516262881 -0.13536077286384712 1.0 4480 +259100 Or52n2 olfactory receptor family 52 subfamily N member 2 Novel U 0.01241477247863568 -0.13539029345989972 1.0 4481 +100383 Bsdc1 BSD domain containing 1 Novel U 0.012413022048046054 -0.13540842436240477 1.0 4482 +20210 Saa3 serum amyloid A 3 Novel U 0.012406603851836905 -0.1354749038277523 1.0 4483 +71824 1700006A11Rik RIKEN cDNA 1700006A11 gene Novel U 0.01240592623904338 -0.13548192251879232 1.0 4484 +30044 Opn4 opsin 4 (melanopsin) Novel N 0.012393505543645105 -0.13561057567341928 1.0 4485 +12857 Cox4i1 cytochrome c oxidase subunit 4I1 Novel N 0.012391062262004838 -0.1356358831043306 1.0 4486 +102640594 Cdhr17 cadherin related family member 17 Novel U 0.012388302464208153 -0.13566446899918522 1.0 4487 +70612 Tmem230 transmembrane protein 230 Novel U 0.012387168856803134 -0.13567621086742107 1.0 4488 +18349 Or6z7 olfactory receptor family 6 subfamily Z member 7 Novel U 0.012386934848072356 -0.13567863472216185 1.0 4489 +18817 Plk1 polo like kinase 1 Novel U 0.012381014821591076 -0.13573995416184456 1.0 4490 +20710 Serpinb9e serine (or cysteine) peptidase inhibitor, clade B, member 9e Novel U 0.012374588125873486 -0.13580652166482113 1.0 4491 +252904 Vmn1r69 vomeronasal 1 receptor 69 Novel U 0.012368612152337652 -0.13586842060225574 1.0 4492 +258257 Or4f60 olfactory receptor family 4 subfamily F member 60 Novel U 0.012360635107608592 -0.13595104656932813 1.0 4493 +79196 Osbpl5 oxysterol binding protein-like 5 Novel U 0.01235178299415882 -0.13604273646944331 1.0 4494 +26442 Psma5 proteasome subunit alpha 5 Novel U 0.012346512665936437 -0.13609732635591806 1.0 4495 +214158 Trim38 tripartite motif-containing 38 Novel U 0.012346068789363522 -0.13610192401486865 1.0 4496 +71326 Treml1 triggering receptor expressed on myeloid cells-like 1 Novel U 0.012343623025095623 -0.13612725716075538 1.0 4497 +20715 Serpina3g serine (or cysteine) peptidase inhibitor, clade A, member 3G Novel U 0.012342169678166563 -0.13614231088047038 1.0 4498 +320924 Ccbe1 collagen and calcium binding EGF domains 1 Novel U 0.012341375207935507 -0.13615053997700685 1.0 4499 +100041187 Or52e19 olfactory receptor family 52 subfamily E member 19 Novel U 0.012336686150363764 -0.1361991090811905 1.0 4500 +224840 Treml4 triggering receptor expressed on myeloid cells-like 4 Novel U 0.012335052271874708 -0.1362160327408693 1.0 4501 +494124 Calm5 calmodulin 5 Novel U 0.012332535304272486 -0.13624210340855225 1.0 4502 +54208 Arl6ip1 ADP-ribosylation factor-like 6 interacting protein 1 Novel U 0.012328287890752881 -0.1362860979781621 1.0 4503 +16333 Ins1 insulin I Novel U 0.012327980407886553 -0.1362892828755836 1.0 4504 +18368 Or52z1 olfactory receptor family 52 subfamily Z member 1 Novel U 0.01232297340096088 -0.13634114528872324 1.0 4505 +380713 Scarf1 scavenger receptor class F, member 1 Novel U 0.012320065843980451 -0.1363712616683457 1.0 4506 +244701 Mtnr1b melatonin receptor 1B Novel U 0.012317034077294698 -0.13640266460801279 1.0 4507 +230828 Il22ra1 interleukin 22 receptor, alpha 1 Novel U 0.01231621567032288 -0.1364111416405232 1.0 4508 +20508 Slc18a3 solute carrier family 18 (vesicular monoamine), member 3 Novel U 0.012315917600652794 -0.13641422903636743 1.0 4509 +22121 Rpl13a ribosomal protein L13A Novel U 0.012315541682200636 -0.13641812278733725 1.0 4510 +71472 Usp19 ubiquitin specific peptidase 19 Novel U 0.01231467952717032 -0.13642705296079943 1.0 4511 +24056 Sh3bp5 SH3-domain binding protein 5 (BTK-associated) Novel N 0.012312319915616895 -0.13645149373970175 1.0 4512 +22066 Trpc4 transient receptor potential cation channel, subfamily C, member 4 Novel N 0.012310324659786539 -0.13647216053400207 1.0 4513 +20726 Serpinb9d serine (or cysteine) peptidase inhibitor, clade B, member 9d Novel U 0.012308871650922216 -0.13648721075205364 1.0 4514 +21762 Psmd2 proteasome (prosome, macropain) 26S subunit, non-ATPase, 2 Novel U 0.012307755512160623 -0.13649877168065513 1.0 4515 +234344 Naf1 nuclear assembly factor 1 ribonucleoprotein Novel U 0.012301209611767077 -0.13656657390174662 1.0 4516 +17202 Mc4r melanocortin 4 receptor Novel N 0.0123004391175559 -0.13657455465545734 1.0 4517 +16153 Il10 interleukin 10 Novel U 0.012291145697484837 -0.1366708155950487 1.0 4518 +230073 Rigi RNA sensor RIG-I Novel U 0.012284396344687457 -0.13674072516945093 1.0 4519 +381605 Tbc1d2 TBC1 domain family, member 2 Novel U 0.012283779545610789 -0.1367471139540109 1.0 4520 +258490 Or5p67 olfactory receptor family 5 subfamily P member 67 Novel U 0.012269822180714967 -0.13689168388077816 1.0 4521 +12802 Cnr2 cannabinoid receptor 2 Novel N 0.012264288078352243 -0.13694900593112744 1.0 4522 +14376 Ganab alpha glucosidase 2 alpha neutral subunit Novel N 0.012258973907478599 -0.1370040499383427 1.0 4523 +14525 Gcsam germinal center associated, signaling and motility Novel U 0.012255598151201851 -0.13703901591088524 1.0 4524 +30927 Snai3 snail family zinc finger 3 Novel U 0.012254066701990508 -0.13705487861147264 1.0 4525 +258858 Or7c19 olfactory receptor family 7 subfamily C member 19 Novel U 0.01224631367106048 -0.13713518425097873 1.0 4526 +18037 Nfkbie nuclear factor of kappa light polypeptide gene enhancer in B cells inhibitor, epsilon Novel U 0.012245782933565708 -0.13714068161250254 1.0 4527 +67444 Ilkap integrin-linked kinase-associated serine/threonine phosphatase 2C Novel U 0.012242662786012342 -0.13717299999829097 1.0 4528 +15557 Htr1f 5-hydroxytryptamine (serotonin) receptor 1F Novel N 0.012242617029557566 -0.13717347394214538 1.0 4529 +26370 Cetn2 centrin 2 Novel U 0.012238085337707802 -0.13722041305735388 1.0 4530 +226419 Dyrk3 dual-specificity tyrosine phosphorylation regulated kinase 3 Novel U 0.012236632945847299 -0.13723545688450017 1.0 4531 +258413 Or8b35 olfactory receptor family 8 subfamily B member 35 Novel U 0.012234664819107224 -0.13725584267657517 1.0 4532 +16591 Kl klotho Novel U 0.012232808790470423 -0.1372750673601815 1.0 4533 +27215 Azi2 5-azacytidine induced gene 2 Novel U 0.012231875856522197 -0.13728473065934868 1.0 4534 +224552 Vmn2r98 vomeronasal 2, receptor 98 Novel U 0.012230967640574807 -0.13729413793027576 1.0 4535 +73677 Psma8 proteasome subunit alpha 8 Novel U 0.012229623827059813 -0.13730805710648858 1.0 4536 +76795 Tbc1d9b TBC1 domain family, member 9B Novel U 0.012219200698577718 -0.13741601952866422 1.0 4537 +75826 Senp2 SUMO/sentrin specific peptidase 2 Novel U 0.012210326191123175 -0.13750794138514466 1.0 4538 +99010 Lpcat4 lysophosphatidylcholine acyltransferase 4 Novel U 0.01220940304729384 -0.1375175032785822 1.0 4539 +74136 Sec14l1 SEC14-like lipid binding 1 Novel U 0.012201816534026865 -0.13759608413360835 1.0 4540 +74477 4933427D14Rik RIKEN cDNA 4933427D14 gene Novel N 0.012194591817869799 -0.13767091750606347 1.0 4541 +83961 Nrg4 neuregulin 4 Novel U 0.012194143113728866 -0.13767556516880491 1.0 4542 +16399 Itga2b integrin alpha 2b Novel N 0.012192032619702847 -0.13769742559654768 1.0 4543 +239691 AU021092 expressed sequence AU021092 Novel U 0.012184194191061985 -0.13777861578273526 1.0 4544 +54446 Nfat5 nuclear factor of activated T cells 5 Novel U 0.012181921638440852 -0.1378021548080788 1.0 4545 +258381 Or9a4 olfactory receptor family 9 subfamily A member 4 Novel U 0.012181878463553333 -0.13780260201214442 1.0 4546 +622976 Gm6377 predicted gene 6377 Novel U 0.012178034166511007 -0.1378424211145344 1.0 4547 +68272 Rbm28 RNA binding motif protein 28 Novel U 0.012176597103424985 -0.1378573061667385 1.0 4548 +258487 Or4n5 olfactory receptor family 4 subfamily N member 5 Novel U 0.012176081770148233 -0.13786264397187842 1.0 4549 +19166 Psma2 proteasome subunit alpha 2 Novel U 0.012168018316806556 -0.1379461649565198 1.0 4550 +57778 Fmnl1 formin-like 1 Novel U 0.012162185988261512 -0.13800657602386188 1.0 4551 +69675 Pxdn peroxidasin Novel U 0.01216061736413626 -0.1380228237809855 1.0 4552 +93739 Gabarapl2 GABA type A receptor associated protein like 2 Novel U 0.012159104296015556 -0.13803849609084032 1.0 4553 +26357 Abcg2 ATP binding cassette subfamily G member 2 (Junior blood group) Novel U 0.01215698083721968 -0.13806049080724303 1.0 4554 +330177 Taok3 TAO kinase 3 Novel U 0.012154077075758508 -0.13809056787300183 1.0 4555 +21393 Tcap titin-cap Novel U 0.012141181508066807 -0.13822413973923356 1.0 4556 +235461 Mindy2 MINDY lysine 48 deubiquitinase 2 Novel U 0.012122733718093501 -0.13841522134133863 1.0 4557 +54526 Syt10 synaptotagmin X Novel U 0.012119473764477176 -0.1384489878337313 1.0 4558 +387341 Tas2r106 taste receptor, type 2, member 106 Novel U 0.012102994096274106 -0.1386196836952388 1.0 4559 +258139 Or52s1b olfactory receptor family 52 subfamily S member 1B Novel U 0.01208756960233487 -0.1387794500964085 1.0 4560 +258772 Or6c74 olfactory receptor family 6 subfamily C member 74 Novel U 0.012087196357210903 -0.13878331615713277 1.0 4561 +107831 Adgrb1 adhesion G protein-coupled receptor B1 Novel U 0.012084265664546097 -0.13881367217541352 1.0 4562 +69104 Marchf5 membrane associated ring-CH-type finger 5 Novel U 0.01208111870820087 -0.13884626824578675 1.0 4563 +258934 Or6c1 olfactory receptor family 6 subfamily C member 1 Novel U 0.012079651625637854 -0.13886146423874673 1.0 4564 +233919 Gpr26 G protein-coupled receptor 26 Novel N 0.012077256842643321 -0.13888626932227985 1.0 4565 +15560 Htr2c 5-hydroxytryptamine (serotonin) receptor 2C Novel U 0.01207462038608056 -0.1389135776526881 1.0 4566 +246788 Trpv3 transient receptor potential cation channel, subfamily V, member 3 Novel U 0.012073791389097463 -0.1389221643761872 1.0 4567 +20044 Rps14 ribosomal protein S14 Novel U 0.012072440939139284 -0.13893615229246037 1.0 4568 +65106 Arl6ip5 ADP-ribosylation factor-like 6 interacting protein 5 Novel U 0.012071905119639114 -0.13894170229322902 1.0 4569 +70604 Dnajb14 DnaJ heat shock protein family (Hsp40) member B14 Novel U 0.012069054193458072 -0.1389712320928931 1.0 4570 +258955 Or2j6 olfactory receptor family 2 subfamily J member 6 Novel U 0.012064401677431861 -0.13901942270094936 1.0 4571 +16792 Laptm5 lysosomal-associated protein transmembrane 5 Novel U 0.012055831384926104 -0.1391081935089908 1.0 4572 +625068 Vmn2r84 vomeronasal 2, receptor 84 Novel U 0.012045083756728702 -0.13921951708855027 1.0 4573 +56457 Clptm1 cleft lip and palate associated transmembrane protein 1 Novel U 0.012044308944388448 -0.13922754256930003 1.0 4574 +18363 Or13p10 olfactory receptor family 13 subfamily P member 10 Novel U 0.012038842406394606 -0.1392841647901375 1.0 4575 +56175 Bace2 beta-site APP-cleaving enzyme 2 Novel U 0.01203824242974869 -0.1392903793285127 1.0 4576 +73804 Kif2c kinesin family member 2C Novel U 0.012033646052475136 -0.13933798845321443 1.0 4577 +60345 Nrip2 nuclear receptor interacting protein 2 Novel U 0.012028684099611043 -0.13938938419786528 1.0 4578 +258169 Or52z15 olfactory receptor family 52 subfamily Z member 15 Novel U 0.012026679783654539 -0.13941014483665443 1.0 4579 +53945 Slc40a1 solute carrier family 40 (iron-regulated transporter), member 1 Novel U 0.012017601224911212 -0.13950418024967626 1.0 4580 +14609 Gja1 gap junction protein, alpha 1 Novel U 0.012016373453162844 -0.13951689746908505 1.0 4581 +18667 Pgr progesterone receptor Novel U 0.012015124332453424 -0.13952983582033057 1.0 4582 +70310 Plscr3 phospholipid scramblase 3 Novel U 0.012006732562125462 -0.13961675750152303 1.0 4583 +74206 Sipa1l3 signal-induced proliferation-associated 1 like 3 Novel U 0.012002505593176907 -0.13966054030693803 1.0 4584 +320802 Ifitm10 interferon induced transmembrane protein 10 Novel U 0.011997733591317842 -0.13970996854532314 1.0 4585 +245525 Hsf3 heat shock transcription factor 3 Novel U 0.011996672991260721 -0.13972095420584943 1.0 4586 +258615 Or12k7 olfactory receptor family 12 subfamily K member 7 Novel U 0.011989032364021296 -0.13980009557162332 1.0 4587 +238395 Serpina3j serine (or cysteine) peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 3J Novel U 0.011981967502952525 -0.13987327317032885 1.0 4588 +100041177 Gm3182 predicted gene 3182 Novel U 0.011979900772821028 -0.13989468029309082 1.0 4589 +77945 Rpgrip1 retinitis pigmentosa GTPase regulator interacting protein 1 Novel U 0.011969368584766504 -0.14000377235073255 1.0 4590 +72042 Cotl1 coactosin like F-actin binding protein 1 Novel U 0.011964965320049994 -0.14004938122191662 1.0 4591 +54151 Zftraf1 zinc finger TRAF type containing 1 Novel U 0.01195756354130629 -0.14012604860282354 1.0 4592 +209590 Il23r interleukin 23 receptor Novel U 0.011949005484361914 -0.1402146926753224 1.0 4593 +16175 Il1a interleukin 1 alpha Novel U 0.011942463493357534 -0.14028245440308942 1.0 4594 +14344 Fut2 fucosyltransferase 2 Novel N 0.011941809016652963 -0.1402892334512806 1.0 4595 +14728 Lilrb4a leukocyte immunoglobulin-like receptor, subfamily B, member 4A Novel U 0.011933393218715473 -0.14037640400966267 1.0 4596 +75316 Taf1d TATA-box binding protein associated factor, RNA polymerase I, D Novel U 0.011924444356121217 -0.14046909603423596 1.0 4597 +12217 Bsn bassoon Novel N 0.011920049484338814 -0.14051461797168446 1.0 4598 +258412 Or8b9 olfactory receptor family 8 subfamily B member 9 Novel U 0.011916980371155905 -0.14054640774514138 1.0 4599 +68514 Micu2 mitochondrial calcium uptake 2 Novel N 0.011915557495673792 -0.1405611458426106 1.0 4600 +434215 Lrrc32 leucine rich repeat containing 32 Novel U 0.011911953900224351 -0.1405984717658141 1.0 4601 +258683 Or5an1c olfactory receptor family 5 subfamily AN member 1C Novel U 0.011910057802416916 -0.14061811148457265 1.0 4602 +68053 Ubxn2b UBX domain protein 2B Novel U 0.011908726247686179 -0.14063190368470113 1.0 4603 +77042 Hyal4 hyaluronoglucosaminidase 4 Novel N 0.011900703702407135 -0.1407150009449745 1.0 4604 +258463 Or2y1g olfactory receptor family 2 subfamily Y member 1G Novel U 0.01189985637739063 -0.14072377750964116 1.0 4605 +244233 Scart1 scavenger receptor family member expressed on T cells 1 Novel U 0.011898402520512136 -0.14073883651139563 1.0 4606 +258798 Or8b43 olfactory receptor family 8 subfamily B member 43 Novel U 0.011891637310310559 -0.14080891033626924 1.0 4607 +64177 Trpv6 transient receptor potential cation channel, subfamily V, member 6 Novel U 0.011888586748160698 -0.14084050795873568 1.0 4608 +17975 Ncl nucleolin Novel U 0.011879393931893507 -0.1409357268474337 1.0 4609 +268739 Arhgef40 Rho guanine nucleotide exchange factor 40 Novel U 0.011879049423488733 -0.14093929525416524 1.0 4610 +20319 Sfrp2 secreted frizzled-related protein 2 Novel N 0.01187545330077796 -0.14097654377498728 1.0 4611 +387285 Hcrtr2 hypocretin (orexin) receptor 2 Novel N 0.011871592885485515 -0.14101652982968207 1.0 4612 +258329 Or2n1c olfactory receptor family 2 subfamily N member 1C Novel U 0.01186994043691087 -0.14103364583769695 1.0 4613 +65970 Lima1 LIM domain and actin binding 1 Novel U 0.011862278253751943 -0.1411130104789764 1.0 4614 +258904 Or4c116 olfactory receptor family 4 subfamily C member 116 Novel U 0.011853691292860704 -0.14120195393760673 1.0 4615 +50720 Sacs sacsin Novel U 0.011845855788511606 -0.14128311383407635 1.0 4616 +22628 Ywhag tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein, gamma polypeptide Novel U 0.011845525598652713 -0.14128653392978036 1.0 4617 +14800 Gria2 glutamate receptor, ionotropic, AMPA2 (alpha 2) Novel N 0.01183419356834695 -0.14140391072716704 1.0 4618 +258309 Or56b1 olfactory receptor family 56 subfamily B member 1 Novel U 0.011833325642553056 -0.14141290067400866 1.0 4619 +16183 Il2 interleukin 2 Novel U 0.011832688245405223 -0.14141950281271262 1.0 4620 +15951 Ifi204 interferon activated gene 204 Novel U 0.011832151566812098 -0.14142506171193783 1.0 4621 +258354 Or2l13b olfactory receptor family 2 subfamily L member 13B Novel U 0.011830228499018231 -0.1414449807849293 1.0 4622 +243407 Qrfprl pyroglutamylated RFamide peptide receptor like Novel U 0.011822791330334639 -0.14152201473367018 1.0 4623 +76824 Mtfr1l mitochondrial fission regulator 1-like Novel U 0.011821673091983547 -0.1415335974097507 1.0 4624 +258450 Or4c104 olfactory receptor family 4 subfamily C member 104 Novel U 0.01181564227927278 -0.14159606436955652 1.0 4625 +666279 Dspp dentin sialophosphoprotein Novel U 0.01181454493626191 -0.1416074306123899 1.0 4626 +20869 Stk11 serine/threonine kinase 11 Novel U 0.011807745120635817 -0.14167786287911308 1.0 4627 +66052 Sdhc succinate dehydrogenase complex, subunit C, integral membrane protein Novel U 0.01180627622599809 -0.14169307764148334 1.0 4628 +258087 Or10d4 olfactory receptor family 10 subfamily D member 4 Novel U 0.011805345104480702 -0.14170272216755148 1.0 4629 +208634 Tspan10 tetraspanin 10 Novel U 0.011798657431921478 -0.14177199286007452 1.0 4630 +230917 Tmem201 transmembrane protein 201 Novel U 0.011793950398568192 -0.14182074815681248 1.0 4631 +29820 Tnfrsf19 tumor necrosis factor receptor superfamily, member 19 Novel U 0.011788843097188462 -0.14187364941661024 1.0 4632 +217169 Tns4 tensin 4 Novel N 0.011781649354154381 -0.1419481619704757 1.0 4633 +258730 Or5p59 olfactory receptor family 5 subfamily P member 59 Novel U 0.011766506250393239 -0.1421050137414309 1.0 4634 +53859 Map3k14 mitogen-activated protein kinase kinase kinase 14 Novel N 0.011760786854471926 -0.14216425505636884 1.0 4635 +20347 Sema3b sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3B Novel U 0.0117576026506928 -0.14219723693443795 1.0 4636 +545814 Smok3a sperm motility kinase 3A Novel U 0.011755806287153643 -0.14221584360892428 1.0 4637 +60361 Ms4a4b membrane-spanning 4-domains, subfamily A, member 4B Novel U 0.011750985659672112 -0.14226577550990838 1.0 4638 +94040 Clmn calmin Novel U 0.011749359683993535 -0.14228261731253602 1.0 4639 +258776 Or2d2 olfactory receptor family 2 subfamily D member 2 Novel U 0.01174464257543923 -0.1423314769678749 1.0 4640 +16580 Kifc5b kinesin family member C5B Novel U 0.011741160164680572 -0.142367547664035 1.0 4641 +27027 Tspan32 tetraspanin 32 Novel N 0.011737784520260214 -0.14240251247797275 1.0 4642 +258804 Or4a68 olfactory receptor family 4 subfamily A member 68 Novel U 0.0117342704320427 -0.14243891128821035 1.0 4643 +434219 Trim30c tripartite motif-containing 30C Novel U 0.011733540530940745 -0.14244647157983018 1.0 4644 +229841 Cenpe centromere protein E Novel U 0.011733161674419382 -0.1424503957632242 1.0 4645 +66597 Trim13 tripartite motif-containing 13 Novel U 0.011732837375657303 -0.14245375483914108 1.0 4646 +258970 Or4a70 olfactory receptor family 4 subfamily A member 70 Novel U 0.011723574650014008 -0.14254969784685864 1.0 4647 +15530 Hspg2 perlecan (heparan sulfate proteoglycan 2) Novel U 0.011722153503819057 -0.14256441803242828 1.0 4648 +16952 Anxa1 annexin A1 Novel U 0.011720157063242656 -0.14258509709828918 1.0 4649 +30839 Fbxw5 F-box and WD-40 domain protein 5 Novel U 0.011717032007106994 -0.1426174663270117 1.0 4650 +404322 Or8d2 olfactory receptor family 8 subfamily D member 2 Novel U 0.011716240788371027 -0.14262566174466892 1.0 4651 +26364 Adgre5 adhesion G protein-coupled receptor E5 Novel N 0.011715803745932417 -0.14263018861588106 1.0 4652 +667759 Gm8797 ubiquitin B pseudogene Novel U 0.011713932221112559 -0.14264957380844207 1.0 4653 +13688 Eif4ebp2 eukaryotic translation initiation factor 4E binding protein 2 Novel N 0.011710538250396531 -0.14268472844554791 1.0 4654 +24058 Sigirr single immunoglobulin and toll-interleukin 1 receptor (TIR) domain Novel U 0.011708523675012917 -0.1427055953511458 1.0 4655 +18373 Or10p22 olfactory receptor family 10 subfamily P member 22 Novel U 0.011704544883601805 -0.14274680754178637 1.0 4656 +259115 Or51a5 olfactory receptor family 51 subfamily A member 5 Novel U 0.011699036788983385 -0.14280386020477512 1.0 4657 +101543 Wtip WT1 interacting protein Novel U 0.011695065614966506 -0.14284499349469662 1.0 4658 +53890 Sart3 squamous cell carcinoma antigen recognized by T cells 3 Novel N 0.011690129740732682 -0.14289611911775246 1.0 4659 +18332 Or51a39 olfactory receptor family 51 subfamily A member 39 Novel U 0.011689938557732876 -0.14289809938497963 1.0 4660 +319604 Fam168a family with sequence similarity 168, member A Novel N 0.011689474493639902 -0.1429029061455994 1.0 4661 +66340 Psenen presenilin enhancer gamma secretase subunit Novel U 0.011687859061204878 -0.1429196387416569 1.0 4662 +14245 Lpin1 lipin 1 Novel U 0.01167626026602062 -0.14303977868088558 1.0 4663 +320472 Ppm1e protein phosphatase 1E (PP2C domain containing) Novel U 0.011661546493299077 -0.1431921834550461 1.0 4664 +12306 Anxa2 annexin A2 Novel U 0.011660024451264068 -0.1432079487164103 1.0 4665 +327900 Ubtd2 ubiquitin domain containing 2 Novel U 0.011649865477697927 -0.1433131750306501 1.0 4666 +71690 Esm1 endothelial cell-specific molecule 1 Novel U 0.011649676559341744 -0.1433151318407731 1.0 4667 +20340 Glg1 golgi apparatus protein 1 Novel U 0.011646592864212183 -0.14334707265355406 1.0 4668 +11907 Ate1 arginyltransferase 1 Novel U 0.011641974996103652 -0.143394904379618 1.0 4669 +54598 Calcrl calcitonin receptor-like Novel U 0.011634597705287918 -0.143471318115372 1.0 4670 +102636558 LOC102636558 component of Sp100-rs-like Novel U 0.011631158687710882 -0.14350693934638334 1.0 4671 +214951 Rhbdl1 rhomboid like 1 Novel N 0.011630031744605331 -0.14351861218602438 1.0 4672 +108089 Rnf144a ring finger protein 144A Novel N 0.011607046314800246 -0.14375669451234016 1.0 4673 +433693 Akirin2 akirin 2 Novel U 0.01160557482430344 -0.14377193616253342 1.0 4674 +231997 Fkbp14 FK506 binding protein 14 Novel U 0.01160459563113733 -0.14378207861315875 1.0 4675 +258246 Or52e3 olfactory receptor family 52 subfamily E member 3 Novel U 0.01159950312067186 -0.14383482666915282 1.0 4676 +22201 Uba1 ubiquitin-like modifier activating enzyme 1 Novel U 0.011597649742162682 -0.14385402390282437 1.0 4677 +258783 Or8b53 olfactory receptor family 8 subfamily B member 53 Novel U 0.011597579326488935 -0.14385475326605823 1.0 4678 +258403 Or8k27 olfactory receptor family 8 subfamily K member 27 Novel U 0.011586881720271345 -0.14396555871959518 1.0 4679 +246103 Atxn7 ataxin 7 Novel U 0.0115864623648624 -0.14396990238913548 1.0 4680 +54197 Rnf5 ring finger protein 5 Novel U 0.011573260295050106 -0.14410664899425654 1.0 4681 +14164 Fgf1 fibroblast growth factor 1 Novel U 0.011562754123460686 -0.14421547157420797 1.0 4682 +104248 Cabin1 calcineurin binding protein 1 Novel N 0.01156187829711154 -0.1442245433547412 1.0 4683 +17761 Map7 microtubule-associated protein 7 Novel U 0.011556422224352972 -0.1442810571770157 1.0 4684 +54381 Cpq carboxypeptidase Q Novel N 0.011555229760669104 -0.14429340867665308 1.0 4685 +16638 Klra7 killer cell lectin-like receptor, subfamily A, member 7 Novel U 0.011552750598201197 -0.14431908775999758 1.0 4686 +50849 Rnf10 ring finger protein 10 Novel U 0.011547451479355032 -0.144373975858807 1.0 4687 +17910 Myo15a myosin XVA Novel N 0.011545525972903767 -0.1443939201913316 1.0 4688 +258277 Or8s8 olfactory receptor family 8 subfamily S member 8 Novel U 0.011544624503756267 -0.1444032575791272 1.0 4689 +546747 Or6y1 olfactory receptor family 6 subfamily Y member 1 Novel U 0.01153876752191567 -0.1444639240044942 1.0 4690 +13067 Cyct cytochrome c, testis Novel U 0.011537937619380876 -0.14447252010766803 1.0 4691 +28169 Agpat3 1-acylglycerol-3-phosphate O-acyltransferase 3 Novel U 0.011534161344234871 -0.144511634641492 1.0 4692 +22227 Ucp1 uncoupling protein 1 (mitochondrial, proton carrier) Novel N 0.011534159427687507 -0.14451165449302658 1.0 4693 +620246 Gpr52 G protein-coupled receptor 52 Novel N 0.011533250057119221 -0.14452107372347894 1.0 4694 +11746 Anxa4 annexin A4 Novel U 0.011531333721765461 -0.14454092306207705 1.0 4695 +258752 Or51f1d olfactory receptor family 51 subfamily F member 1D Novel U 0.011522119864049545 -0.14463635989740928 1.0 4696 +20184 Uimc1 ubiquitin interaction motif containing 1 Novel U 0.011521303287008768 -0.14464481797555412 1.0 4697 +381390 Gm14147 predicted gene 14147 Novel U 0.011520773145684192 -0.1446503091619666 1.0 4698 +24014 Rnasel ribonuclease L (2', 5'-oligoisoadenylate synthetase-dependent) Novel U 0.01151207524459923 -0.14474040173547656 1.0 4699 +258341 Or10q12 olfactory receptor family 10 subfamily Q member 12 Novel U 0.011509019100978936 -0.14477205717063024 1.0 4700 +257890 Or9s13 olfactory receptor family 9 subfamily S member 13 Novel U 0.01150787553091805 -0.14478390223172807 1.0 4701 +223921 Aaas achalasia, adrenocortical insufficiency, alacrimia Novel U 0.011503257550648563 -0.1448317351195515 1.0 4702 +404318 Or56a3b olfactory receptor family 56 subfamily A member 3B Novel U 0.011503145944615965 -0.1448328911311683 1.0 4703 +14760 Gpr19 G protein-coupled receptor 19 Novel U 0.011500854871613743 -0.14485662199001034 1.0 4704 +22411 Wnt11 wingless-type MMTV integration site family, member 11 Novel U 0.011497960848467116 -0.14488659818662722 1.0 4705 +54611 Pde3a phosphodiesterase 3A, cGMP inhibited Novel U 0.011491330156750426 -0.14495527867345645 1.0 4706 +16532 Kcnu1 potassium channel, subfamily U, member 1 Novel U 0.01148802576583454 -0.1449895054459372 1.0 4707 +231380 Uba6 ubiquitin-like modifier activating enzyme 6 Novel U 0.011487431711313539 -0.14499565864313724 1.0 4708 +257872 Or7g20 olfactory receptor family 7 subfamily G member 20 Novel U 0.01148293780548492 -0.14504220637198087 1.0 4709 +14129 Fcgr1 Fc receptor, IgG, high affinity I Novel U 0.011473247935186713 -0.14514257372999237 1.0 4710 +67072 Cdc37l1 cell division cycle 37-like 1 Novel U 0.011467604769745196 -0.14520102545212654 1.0 4711 +109624 Cald1 caldesmon 1 Novel U 0.01146130074731932 -0.14526632230918018 1.0 4712 +18985 Pou2af1 POU domain, class 2, associating factor 1 Novel U 0.011461059771244106 -0.14526881833144561 1.0 4713 +70350 Basp1 brain abundant, membrane attached signal protein 1 Novel N 0.011457048309079645 -0.1453103689246754 1.0 4714 +72368 Borcs8 BLOC-1 related complex subunit 8 Novel U 0.011456565563340092 -0.14531536918917626 1.0 4715 +381538 Mroh7 maestro heat-like repeat family member 7 Novel U 0.01145304584847375 -0.14535182628005744 1.0 4716 +21771 Utp4 UTP4 small subunit processome component Novel N 0.011450944062948358 -0.14537359650543696 1.0 4717 +214593 Duox2 dual oxidase 2 Novel U 0.011447793040723511 -0.14540623469005765 1.0 4718 +113939900 Gm50457 predicted gene, 50457 Novel U 0.011442470775071923 -0.14546136254271674 1.0 4719 +66439 Borcs7 BLOC-1 related complex subunit 7 Novel U 0.011439245220622373 -0.1454947727296708 1.0 4720 +226122 Ubtd1 ubiquitin domain containing 1 Novel U 0.011438385888656533 -0.14550367366192396 1.0 4721 +100042450 Smim17 small integral membrane protein 17 Novel U 0.011434146367677556 -0.14554758648085744 1.0 4722 +258865 Or5ak22 olfactory receptor family 5 subfamily AK member 22 Novel U 0.011434126158024138 -0.1455477958117832 1.0 4723 +12336 Capns1 calpain, small subunit 1 Novel N 0.011416205976986851 -0.14573341245787322 1.0 4724 +239027 Arhgap22 Rho GTPase activating protein 22 Novel U 0.011416110486860911 -0.1457344015414586 1.0 4725 +259053 Or1b1 olfactory receptor family 1 subfamily B member 1 Novel U 0.011410881508180164 -0.1457885631307404 1.0 4726 +328830 A530064D06Rik RIKEN cDNA A530064D06 gene Novel U 0.011405855981689762 -0.1458406173689227 1.0 4727 +381319 Batf3 basic leucine zipper transcription factor, ATF-like 3 Novel N 0.011403767865111535 -0.14586224601179684 1.0 4728 +217333 Trim47 tripartite motif-containing 47 Novel N 0.011401388313678254 -0.14588689332731922 1.0 4729 +170737 Znrf1 zinc and ring finger 1 Novel U 0.011396398178353575 -0.14593858098497037 1.0 4730 +60440 Iigp1 interferon inducible GTPase 1 Novel U 0.011392856335496438 -0.1459752672768528 1.0 4731 +18366 Or51b17 olfactory receptor family 51 subfamily B member 17 Novel U 0.011390204582670874 -0.1460027340454483 1.0 4732 +664987 Gm14393 predicted gene 14393 Novel U 0.011389837945903163 -0.14600653165703573 1.0 4733 +17952 Naip6 NLR family, apoptosis inhibitory protein 6 Novel U 0.011388869399194288 -0.146016563832007 1.0 4734 +266692 Cpne1 copine I Novel U 0.01138674854510179 -0.14603853156897775 1.0 4735 +258492 Or5p60 olfactory receptor family 5 subfamily P member 60 Novel U 0.01137736723317342 -0.1461357028895378 1.0 4736 +18129 Notch2 notch 2 Novel U 0.011366122771915264 -0.14625217264960805 1.0 4737 +258400 Or8k41 olfactory receptor family 8 subfamily K member 41 Novel U 0.011364518317079774 -0.14626879154005043 1.0 4738 +68416 Sycn syncollin Novel U 0.011354963824421159 -0.14636775666092136 1.0 4739 +20423 Shh sonic hedgehog Novel U 0.0113512029108919 -0.14640671207962405 1.0 4740 +12005 Axin1 axin 1 Novel U 0.011348422309874581 -0.1464355134535541 1.0 4741 +258422 Or11g26 olfactory receptor family 11 subfamily G member 26 Novel U 0.011346816263949271 -0.14645214882445254 1.0 4742 +258953 Or1j12 olfactory receptor family 1 subfamily J member 12 Novel U 0.01134016832691647 -0.14652100793769915 1.0 4743 +320407 Klri2 killer cell lectin-like receptor family I member 2 Novel U 0.011324350485562396 -0.14668484861846112 1.0 4744 +258869 Or8b3 olfactory receptor family 8 subfamily B member 3 Novel U 0.01132249140400541 -0.14670410492411437 1.0 4745 +171183 Vmn1r37 vomeronasal 1 receptor 37 Novel U 0.01131883759395217 -0.1467419509685333 1.0 4746 +268480 Rapgefl1 Rap guanine nucleotide exchange factor (GEF)-like 1 Novel N 0.011317600230670747 -0.14675476753672614 1.0 4747 +217684 Susd6 sushi domain containing 6 Novel N 0.011316763509447167 -0.14676343426765426 1.0 4748 +66686 Dcbld1 discoidin, CUB and LCCL domain containing 1 Novel U 0.011311777186697564 -0.14681508243477812 1.0 4749 +21951 Tnks tankyrase, TRF1-interacting ankyrin-related ADP-ribose polymerase Novel U 0.011306904167306077 -0.14686555700944326 1.0 4750 +258259 Or10ak14 olfactory receptor family 10 subfamily AK member 14 Novel U 0.011305472530899554 -0.14688038585227953 1.0 4751 +258739 Or2w4 olfactory receptor family 2 subfamily W member 4 Novel U 0.011297128803429686 -0.14696680990712715 1.0 4752 +257905 Or14a257 olfactory receptor family 14 subfamily A member 257 Novel U 0.01129520092230872 -0.14698677883640243 1.0 4753 +232408 Klrb1f killer cell lectin-like receptor subfamily B member 1F Novel U 0.011292767617734423 -0.14701198292519244 1.0 4754 +72828 Ubash3b ubiquitin associated and SH3 domain containing, B Novel U 0.011289714852534875 -0.1470436033667751 1.0 4755 +19230 Twf1 twinfilin actin binding protein 1 Novel U 0.01128330987087966 -0.14710994595620738 1.0 4756 +21338 Tacr3 tachykinin receptor 3 Novel U 0.011275987491502429 -0.1471857909210865 1.0 4757 +404312 Or8c10 olfactory receptor family 8 subfamily C member 10 Novel U 0.011265135600040232 -0.14729819445611522 1.0 4758 +320119 Rps6kc1 ribosomal protein S6 kinase polypeptide 1 Novel N 0.011264953798040088 -0.1473000775552563 1.0 4759 +238266 Syt16 synaptotagmin XVI Novel U 0.011262131813873838 -0.14732930757448257 1.0 4760 +53608 Map3k6 mitogen-activated protein kinase kinase kinase 6 Novel N 0.011256726375598032 -0.14738529692644917 1.0 4761 +74286 Tbc1d21 TBC1 domain family, member 21 Novel U 0.011252974985527093 -0.14742415370148365 1.0 4762 +66854 Trim35 tripartite motif-containing 35 Novel N 0.011239690941758005 -0.14756174939015446 1.0 4763 +69957 Cdc16 CDC16 cell division cycle 16 Novel U 0.011238168863089083 -0.1475775150309715 1.0 4764 +258746 Or52h1 olfactory receptor family 52 subfamily H member 1 Novel U 0.011237542292725078 -0.14758400502620447 1.0 4765 +142980 Tlr3 toll-like receptor 3 Novel U 0.01123543191485591 -0.14760586425079839 1.0 4766 +14762 Gpr33 G protein-coupled receptor 33 Novel U 0.011234257803127097 -0.1476180256614886 1.0 4767 +16581 Kifc2 kinesin family member C2 Novel U 0.011232866518939054 -0.14763243653737232 1.0 4768 +17169 Mark3 MAP/microtubule affinity regulating kinase 3 Novel U 0.011232035463740993 -0.14764104457979438 1.0 4769 +71835 Lancl2 LanC (bacterial lantibiotic synthetase component C)-like 2 Novel N 0.011229369545401461 -0.1476686580743179 1.0 4770 +268980 Strn striatin, calmodulin binding protein Novel N 0.011229084373124846 -0.14767161187938457 1.0 4771 +66114 Dnajc30 DnaJ heat shock protein family (Hsp40) member C30 Novel U 0.011217815144973034 -0.1477883381741251 1.0 4772 +20191 Ryr2 ryanodine receptor 2, cardiac Novel U 0.011217125793650291 -0.14779547845246488 1.0 4773 +93834 Peli2 pellino 2 Novel U 0.01121242220386836 -0.14784419808080393 1.0 4774 +233081 Ffar1 free fatty acid receptor 1 Novel U 0.01120539393569049 -0.14791699665154845 1.0 4775 +258517 Or7g35 olfactory receptor family 7 subfamily G member 35 Novel U 0.011191754911981256 -0.14805826921076995 1.0 4776 +12496 Entpd2 ectonucleoside triphosphate diphosphohydrolase 2 Novel U 0.011191499526770276 -0.14806091448238995 1.0 4777 +224650 Anks1 ankyrin repeat and SAM domain containing 1 Novel U 0.011190523894926913 -0.14807102004495132 1.0 4778 +21672 Prdx2 peroxiredoxin 2 Novel N 0.011189924379637098 -0.1480772298046152 1.0 4779 +11609 Agtr2 angiotensin II receptor, type 2 Novel U 0.01118914514545891 -0.14808530108661694 1.0 4780 +229499 Fcrl1 Fc receptor-like 1 Novel U 0.011178155932376341 -0.14819912699447527 1.0 4781 +12366 Casp2 caspase 2 Novel N 0.011177389079081636 -0.1482070700356929 1.0 4782 +57781 Cd200r1 CD200 receptor 1 Novel U 0.01116243055875409 -0.14836200989751075 1.0 4783 +259019 Or8j3 olfactory receptor family 8 subfamily J member 3 Novel U 0.011161609247719572 -0.14837051701020715 1.0 4784 +78506 Micu3 mitochondrial calcium uptake family, member 3 Novel U 0.011155116826761935 -0.14843776529305952 1.0 4785 +22152 Tubb3 tubulin, beta 3 class III Novel U 0.011150324339210706 -0.1484874057215706 1.0 4786 +237781 Mief2 mitochondrial elongation factor 2 Novel U 0.01113863706828293 -0.14860846208964218 1.0 4787 +68553 Col6a4 collagen, type VI, alpha 4 Novel U 0.011134387267826885 -0.14865248138306122 1.0 4788 +17897 Myl3 myosin, light polypeptide 3 Novel U 0.011134121259120978 -0.14865523669249245 1.0 4789 +30878 Apln apelin Novel U 0.011119958753937014 -0.14880193145562068 1.0 4790 +625605 Vmn2r49 vomeronasal 2, receptor 49 Novel U 0.01111478733609962 -0.1488554968315792 1.0 4791 +12585 Cdr2 cerebellar degeneration-related 2 Novel U 0.011111777992280792 -0.14888666751592777 1.0 4792 +259006 Or3a4 olfactory receptor family 3 subfamily A member 4 Novel U 0.011111101642669775 -0.1488936731229649 1.0 4793 +243369 Sspo SCO-spondin Novel U 0.011106304110550183 -0.14894336580294926 1.0 4794 +71764 C2cd2l C2 calcium-dependent domain containing 2-like Novel U 0.011103573396257494 -0.14897165045182553 1.0 4795 +76375 Det1 DET1 partner of COP1 E3 ubiquitin ligase Novel U 0.011102593482389692 -0.14898180036745529 1.0 4796 +170744 Tlr8 toll-like receptor 8 Novel U 0.01109822961663854 -0.14902700114545137 1.0 4797 +72029 Cnpy3 canopy FGF signaling regulator 3 Novel N 0.011095260858647735 -0.14905775144312747 1.0 4798 +20742 Sptbn1 spectrin beta, non-erythrocytic 1 Novel U 0.011082147637847 -0.14919357775310757 1.0 4799 +100125586 Vmn2r2 vomeronasal 2, receptor 2 Novel U 0.011081045426627701 -0.14920499442068383 1.0 4800 +66713 Actr2 actin related protein 2 Novel U 0.011069843820409934 -0.1493210202896545 1.0 4801 +66384 Srp19 signal recognition particle 19 Novel U 0.01106984107034286 -0.14932104877475882 1.0 4802 +20335 Sec61g SEC61 translocon subunit gamma Novel U 0.011062420479679102 -0.14939791100891528 1.0 4803 +12064 Bdnf brain derived neurotrophic factor Novel U 0.011055172125250609 -0.1494729892258088 1.0 4804 +26365 Ceacam1 CEA cell adhesion molecule 1 Novel U 0.011048458911324 -0.1495425244749756 1.0 4805 +18430 Oxtr oxytocin receptor Novel U 0.011044169549495927 -0.1495869535437856 1.0 4806 +258488 Or5p54 olfactory receptor family 5 subfamily P member 54 Novel U 0.011036940205409986 -0.14966183485217588 1.0 4807 +72282 1810062G17Rik RIKEN cDNA 1810062G17 gene Novel U 0.011030240626620242 -0.14973122886904328 1.0 4808 +75320 Etnk1 ethanolamine kinase 1 Novel U 0.01102409493064926 -0.14979488578588182 1.0 4809 +22420 Wnt6 wingless-type MMTV integration site family, member 6 Novel N 0.011019673138027701 -0.14984068656849733 1.0 4810 +258667 Or6c69 olfactory receptor family 6 subfamily C member 69 Novel U 0.011013752535420496 -0.14990201197567343 1.0 4811 +230721 Pabpc4 poly(A) binding protein, cytoplasmic 4 Novel U 0.011013402961683088 -0.1499056328489539 1.0 4812 +17131 Smad7 SMAD family member 7 Novel U 0.011013177134002001 -0.14990797196465092 1.0 4813 +258718 Or5e1 olfactory receptor family 5 subfamily E member 1 Novel U 0.011012346191869126 -0.14991657883594747 1.0 4814 +93679 Trim8 tripartite motif-containing 8 Novel U 0.011009453223829563 -0.14994654410380007 1.0 4815 +13368 Dffb DNA fragmentation factor, beta subunit Novel U 0.011004261580687062 -0.15000031897280403 1.0 4816 +68859 Smim1 small integral membrane protein 1 Novel U 0.01099294038174665 -0.15011758357926444 1.0 4817 +258585 Or5t7 olfactory receptor family 5 subfamily T member 17 Novel U 0.010986299713829497 -0.15018636739925012 1.0 4818 +258681 Or5an11 olfactory receptor family 5 subfamily AN member 11 Novel U 0.010984509395405434 -0.15020491145863302 1.0 4819 +13823 Epb41l3 erythrocyte membrane protein band 4.1 like 3 Novel U 0.01098228777575966 -0.15022792292189213 1.0 4820 +384557 Ceacam3 CEA cell adhesion molecule 3 Novel U 0.0109766134758604 -0.15028669713371612 1.0 4821 +78825 Desi2 desumoylating isopeptidase 2 Novel U 0.010971597809215172 -0.15033864924394622 1.0 4822 +18807 Pld3 phospholipase D family member 3 Novel N 0.010967709046577168 -0.1503789289195145 1.0 4823 +258252 Or6c76b olfactory receptor family 6 subfamily C member 76B Novel U 0.010957834004480653 -0.15048121428092567 1.0 4824 +207521 Dtx4 deltex 4, E3 ubiquitin ligase Novel U 0.010947596045380545 -0.1505872587247298 1.0 4825 +100039162 Eif1ad17 eukaryotic translation initiation factor 1A domain containing 17 Novel U 0.01094150057278098 -0.15065039542953823 1.0 4826 +22027 Hsp90b1 heat shock protein 90, beta (Grp94), member 1 Novel U 0.010940371047892458 -0.15066209501120242 1.0 4827 +258388 Or4g16 olfactory receptor family 4 subfamily G member 16 Novel U 0.010930645882913795 -0.15076282795035384 1.0 4828 +110834 Chrna3 cholinergic receptor, nicotinic, alpha polypeptide 3 Novel N 0.010918162985916219 -0.15089212538710162 1.0 4829 +53313 Atp2a3 ATPase, Ca++ transporting, ubiquitous Novel U 0.010917066585139695 -0.1509034818703026 1.0 4830 +20308 Ccl9 C-C motif chemokine ligand 9 Novel U 0.010913353242918786 -0.15094194454695722 1.0 4831 +15566 Htr7 5-hydroxytryptamine (serotonin) receptor 7 Novel N 0.010911738117488806 -0.1509586739630666 1.0 4832 +258845 Or5d35 olfactory receptor family 5 subfamily D member 35 Novel U 0.010907817968743407 -0.15099927873490349 1.0 4833 +228836 Dlgap4 DLG associated protein 4 Novel U 0.010905605294582125 -0.1510221975411283 1.0 4834 +74440 Cmip c-Maf inducing protein Novel U 0.010903894831357551 -0.15103991446297999 1.0 4835 +271278 BC024139 cDNA sequence BC024139 Novel U 0.010901926045616957 -0.15106030708096072 1.0 4836 +259116 Or51a25 olfactory receptor family 51 subfamily A member 25 Novel U 0.010898348022920256 -0.15109736812243196 1.0 4837 +66475 Rps23 ribosomal protein S23 Novel U 0.010898059009850553 -0.15110036171030716 1.0 4838 +100862383 Rbmyf6 RNA binding motif protein Y-linked family member 6 Novel U 0.010897421607173495 -0.15110696390628267 1.0 4839 +258777 Or8b55 olfactory receptor family 8 subfamily B member 55 Novel U 0.010896655851620474 -0.15111489557712798 1.0 4840 +22671 Rnf112 ring finger protein 112 Novel N 0.010894131279611521 -0.1511410450110059 1.0 4841 +236915 Arhgef9 CDC42 guanine nucleotide exchange factor 9 Novel U 0.010891513226894052 -0.1511681627149896 1.0 4842 +258177 Or4c117 olfactory receptor family 4 subfamily C member 117 Novel U 0.010891095223085328 -0.1511724923846992 1.0 4843 +102774 Bbs4 Bardet-Biedl syndrome 4 Novel U 0.010890943735654423 -0.15117406148652865 1.0 4844 +384309 Trim56 tripartite motif-containing 56 Novel U 0.010886119575558847 -0.1512240299782129 1.0 4845 +78560 Adgra2 adhesion G protein-coupled receptor A2 Novel N 0.010885722891407996 -0.15122813881960712 1.0 4846 +381853 Gipr gastric inhibitory polypeptide receptor Novel U 0.010885314220622925 -0.15123237181816457 1.0 4847 +433586 Maml3 mastermind like transcriptional coactivator 3 Novel N 0.010884830099328788 -0.15123738633061462 1.0 4848 +80284 Smim12 small integral membrane protein 12 Novel U 0.010882288971235204 -0.15126370725187288 1.0 4849 +259123 Or51ai2 olfactory receptor family 51 subfamily AI member 2 Novel U 0.010878847778750643 -0.15129935101050485 1.0 4850 +241324 Crb2 crumbs family member 2 Novel N 0.010877781492305028 -0.15131039557045625 1.0 4851 +258658 Or4m1 olfactory receptor family 4 subfamily M member 1 Novel U 0.010875572385167776 -0.15133327742956343 1.0 4852 +18669 Abcb1b ATP-binding cassette, sub-family B member 1B Novel U 0.010865748620373684 -0.15143503166236175 1.0 4853 +544817 Arhgap27 Rho GTPase activating protein 27 Novel U 0.01086166463842784 -0.15147733341310313 1.0 4854 +258925 Or1e1 olfactory receptor family 1 subfamily E member 1 Novel U 0.010857346312844265 -0.1515220624875405 1.0 4855 +67671 Rpl38 ribosomal protein L38 Novel N 0.010855025116625812 -0.15154610536166602 1.0 4856 +194433 Or2d3 olfactory receptor family 2 subfamily D member 3 Novel U 0.010850074339137731 -0.1515973853521395 1.0 4857 +100862365 Rbmyf5 RNA binding motif protein Y-linked family member 5 Novel U 0.010849026137479205 -0.15160824259046077 1.0 4858 +17850 Mmut methylmalonyl-Coenzyme A mutase Novel U 0.010839173456449682 -0.15171029633667513 1.0 4859 +259003 Or5k1b olfactory receptor family 5 subfamily K member 1B Novel U 0.0108346671800844 -0.15175697219913087 1.0 4860 +545929 Gm5891 predicted gene 5891 Novel U 0.010832455219604437 -0.15177988361306805 1.0 4861 +20211 Saa4 serum amyloid A 4 Novel U 0.010825342758326776 -0.15185355425317248 1.0 4862 +100502887 Or2t49 olfactory receptor family 2 subfamily T member 49 Novel U 0.01082518485277406 -0.15185518983369664 1.0 4863 +72199 Mms19 MMS19 cytosolic iron-sulfur assembly component Novel N 0.010819352092813385 -0.15191560536962767 1.0 4864 +320473 Heatr5b HEAT repeat containing 5B Novel U 0.010817978790351342 -0.15192982999138463 1.0 4865 +68097 Dynll2 dynein light chain LC8-type 2 Novel U 0.010805489636376968 -0.15205919223769238 1.0 4866 +16171 Il17a interleukin 17A Novel U 0.010791750762325162 -0.15220149904347982 1.0 4867 +56354 Dnajc7 DnaJ heat shock protein family (Hsp40) member C7 Novel U 0.010790729018435273 -0.15221208223310329 1.0 4868 +243819 Ppp6r1 protein phosphatase 6, regulatory subunit 1 Novel N 0.01078944323728689 -0.15222540031197043 1.0 4869 +242819 Rundc3b RUN domain containing 3B Novel U 0.01078831973988614 -0.15223703746111444 1.0 4870 +667373 Ifit1bl1 interferon induced protein with tetratricpeptide repeats 1B like 1 Novel U 0.010786767599172357 -0.15225311448360393 1.0 4871 +257962 Or2b11 olfactory receptor family 2 subfamily B member 11 Novel U 0.010784684264450358 -0.15227469359616844 1.0 4872 +98752 Fcrla Fc receptor-like A Novel U 0.010782826831081352 -0.15229393282994477 1.0 4873 +56312 Nupr1 nuclear protein transcription regulator 1 Novel U 0.010780553614864255 -0.1523174787287935 1.0 4874 +54130 Actr1a ARP1 actin-related protein 1A, centractin alpha Novel N 0.01077544511956126 -0.1523703923552092 1.0 4875 +224480 Nox3 NADPH oxidase 3 Novel U 0.010775018847942474 -0.15237480766262365 1.0 4876 +72088 Ush1c USH1 protein network component harmonin Novel U 0.010770398035154286 -0.15242266988958267 1.0 4877 +212555 Slc66a1 solute carrier family 66 member 1 Novel N 0.010769005917774167 -0.15243708939564254 1.0 4878 +257734 Or7a39 olfactory receptor family 7 subfamily A member 39 Novel U 0.010765236541302103 -0.1524761324732286 1.0 4879 +78369 Icam4 intercellular adhesion molecule 4, Landsteiner-Wiener blood group Novel U 0.010765200769291597 -0.1524765029985375 1.0 4880 +72415 Sgo1 shugoshin 1 Novel U 0.010764400963096575 -0.15248478736481333 1.0 4881 +16552 Kif12 kinesin family member 12 Novel U 0.010759157038320309 -0.15253910376526114 1.0 4882 +237256 Zc3h12d zinc finger CCCH type containing 12D Novel U 0.010752758965291643 -0.15260537479536676 1.0 4883 +258518 Or7g29 olfactory receptor family 7 subfamily G member 29 Novel U 0.010750621009068451 -0.15262751967564506 1.0 4884 +24015 Abce1 ATP-binding cassette, sub-family E member 1 Novel U 0.010747250353529315 -0.1526624328149151 1.0 4885 +104401 Pcnx3 pecanex homolog 3 Novel U 0.01074309105100719 -0.15270551473370955 1.0 4886 +259011 Or1e29 olfactory receptor family 1 subfamily E member 29 Novel U 0.010739981487482526 -0.15273772349047662 1.0 4887 +193053 Or1e25 olfactory receptor family 1 subfamily E member 25 Novel U 0.010738415518201462 -0.15275394374881143 1.0 4888 +14200 Fhl2 four and a half LIM domains 2 Novel N 0.010737005893666126 -0.15276854459340952 1.0 4889 +232415 Klrh1 killer cell lectin-like receptor subfamily H, member 1 Novel U 0.01073597747277155 -0.15277919694322803 1.0 4890 +19241 Tmsb4x thymosin, beta 4, X chromosome Novel U 0.010726713084060764 -0.15287515717694397 1.0 4891 +258696 Or5b12 olfactory receptor family 5 subfamily B member 12 Novel U 0.010724619254709782 -0.1528968449925305 1.0 4892 +258408 Or4d2 olfactory receptor family 4 subfamily D member 2 Novel U 0.010717991283801787 -0.15296549729731274 1.0 4893 +54630 Prickle3 prickle planar cell polarity protein 3 Novel N 0.010699489504512893 -0.15315713811897388 1.0 4894 +258980 Or4c10 olfactory receptor family 4 subfamily C member 10 Novel U 0.010699332462229472 -0.15315876475778306 1.0 4895 +19820 Rlim ring finger protein, LIM domain interacting Novel U 0.010698368414991642 -0.15316875032738117 1.0 4896 +72549 Reep4 receptor accessory protein 4 Novel U 0.010697185990033215 -0.1531809978462304 1.0 4897 +238123 Cog5 component of oligomeric golgi complex 5 Novel U 0.010683230959190966 -0.1533255435969475 1.0 4898 +57250 Or52d3 olfactory receptor family 52 subfamily D member 3 Novel U 0.010677414177905577 -0.15338579362628518 1.0 4899 +258935 Or6c75 olfactory receptor family 6 subfamily C member 75 Novel U 0.010667163037217823 -0.15349197460454084 1.0 4900 +68480 Card19 caspase recruitment domain family, member 19 Novel U 0.010660226157865837 -0.1535638265728311 1.0 4901 +319480 Itga11 integrin alpha 11 Novel N 0.010647646671446574 -0.1536941244796335 1.0 4902 +16637 Klra6 killer cell lectin-like receptor, subfamily A, member 6 Novel U 0.0106453855292743 -0.15371754531592285 1.0 4903 +23845 Clec5a C-type lectin domain family 5, member a Novel U 0.010641208404705496 -0.15376081183489096 1.0 4904 +140630 Ube4a ubiquitination factor E4A Novel U 0.010637467047402892 -0.15379956469084083 1.0 4905 +258515 Or7g34 olfactory receptor family 7 subfamily G member 34 Novel U 0.010630197214124606 -0.15387486538495443 1.0 4906 +67731 Fbxo32 F-box protein 32 Novel N 0.010629215757692231 -0.15388503127841732 1.0 4907 +12764 Cmas cytidine monophospho-N-acetylneuraminic acid synthetase Novel U 0.010627014436407145 -0.15390783249192372 1.0 4908 +80906 Kcnip2 Kv channel-interacting protein 2 Novel N 0.010626149141207573 -0.15391679519115584 1.0 4909 +209488 Hsh2d hematopoietic SH2 domain containing Novel U 0.010620345550213687 -0.15397690859588772 1.0 4910 +258432 Or8g51 olfactory receptor family 8 subfamily G member 51 Novel U 0.010609273247149649 -0.15409159514704268 1.0 4911 +20104 Rps6 ribosomal protein S6 Novel N 0.010608442353917062 -0.15410020151183168 1.0 4912 +17079 Cd180 CD180 antigen Novel U 0.010600915618366765 -0.15417816319123356 1.0 4913 +66855 Tcf25 transcription factor 25 (basic helix-loop-helix) Novel U 0.010595584195300036 -0.15423338589609764 1.0 4914 +13983 Esr2 estrogen receptor 2 (beta) Novel U 0.010589330241903382 -0.15429816413979253 1.0 4915 +66199 Commd4 COMM domain containing 4 Novel U 0.010585504954231724 -0.154337786343746 1.0 4916 +257959 Or8g18 olfactory receptor family 8 subfamily G member 18 Novel U 0.010582339232046383 -0.15437057679007427 1.0 4917 +258308 Or5p81 olfactory receptor family 5 subfamily P member 81 Novel U 0.010577147951576155 -0.15442434790253073 1.0 4918 +100683 Trrap transformation/transcription domain-associated protein Novel U 0.010570533981351604 -0.15449285518869407 1.0 4919 +23873 Faim Fas apoptotic inhibitory molecule Novel U 0.010563934642492712 -0.1545612109236529 1.0 4920 +258270 Or2a5 olfactory receptor family 2 subfamily A member 5 Novel U 0.01056017064952933 -0.154600198239033 1.0 4921 +269224 Pask PAS domain containing serine/threonine kinase Novel U 0.010560027610699196 -0.1546016798305334 1.0 4922 +258850 Or14c41 olfactory receptor family 14 subfamily C member 41 Novel U 0.01055432273500186 -0.15466077074546872 1.0 4923 +30050 Fbxw2 F-box and WD-40 domain protein 2 Novel N 0.010552665153969376 -0.15467793991531315 1.0 4924 +245865 Spag4 sperm associated antigen 4 Novel U 0.010551002520696025 -0.1546951614161024 1.0 4925 +20163 Rsu1 Ras suppressor protein 1 Novel U 0.010549192100767527 -0.15471391368620743 1.0 4926 +53382 Txnl1 thioredoxin-like 1 Novel U 0.010548963938911969 -0.15471627697920687 1.0 4927 +20345 Selplg selectin, platelet (p-selectin) ligand Novel U 0.01054887786710403 -0.15471716850816405 1.0 4928 +59025 Usp14 ubiquitin specific peptidase 14 Novel U 0.010547347421142736 -0.15473302081712045 1.0 4929 +58218 Trem3 triggering receptor expressed on myeloid cells 3 Novel U 0.010541821598342176 -0.154790257108037 1.0 4930 +53892 Ppm1d protein phosphatase 1D magnesium-dependent, delta isoform Novel U 0.010541509749962376 -0.1547934872233035 1.0 4931 +21648 Dynlt1b dynein light chain Tctex-type 1B Novel U 0.010532766734267543 -0.15488404709245943 1.0 4932 +56691 Dnajb8 DnaJ heat shock protein family (Hsp40) member B8 Novel U 0.010529947805749137 -0.1549132454613858 1.0 4933 +226562 Prrc2c proline-rich coiled-coil 2C Novel N 0.010525852239566492 -0.15495566720127116 1.0 4934 +258890 Or4k47 olfactory receptor family 4 subfamily K member 47 Novel U 0.010515592185445358 -0.15506194050457675 1.0 4935 +236312 Ifi209 interferon activated gene 209 Novel U 0.01050324035912915 -0.15518988031551562 1.0 4936 +210376 Mtmr9 myotubularin related protein 9 Novel N 0.010502364686952332 -0.15519895049913693 1.0 4937 +18577 Pde4a phosphodiesterase 4A, cAMP specific Novel N 0.010499535537411786 -0.15522825473707463 1.0 4938 +171543 Bmf BCL2 modifying factor Novel U 0.01048206071061784 -0.15540925841855233 1.0 4939 +27965 Spg21 SPG21, maspardin Novel U 0.010480812820598014 -0.15542218402235553 1.0 4940 +18201 Nsmaf neutral sphingomyelinase (N-SMase) activation associated factor Novel N 0.010471268199494448 -0.15552104689398374 1.0 4941 +100503185 Btbd8 BTB domain containing 8 Novel U 0.010460742802442581 -0.15563006861064319 1.0 4942 +666862 Eif1ad10 eukaryotic translation initiation factor 1A domain containing 10 Novel U 0.010458642610197574 -0.1556518223328769 1.0 4943 +54135 Lsr lipolysis stimulated lipoprotein receptor Novel U 0.010453706848542218 -0.15570294678984864 1.0 4944 +52331 Stbd1 starch binding domain 1 Novel U 0.01044963576683779 -0.1557451149203135 1.0 4945 +331461 Il1rapl1 interleukin 1 receptor accessory protein-like 1 Novel U 0.010438671373977458 -0.15585868374112583 1.0 4946 +26446 Psmb3 proteasome (prosome, macropain) subunit, beta type 3 Novel U 0.010435316787061139 -0.15589343044212894 1.0 4947 +252912 Vmn1r188 vomeronasal 1 receptor 188 Novel U 0.01043304807475135 -0.15591692968965384 1.0 4948 +66392 Prl2b1 prolactin family 2, subfamily b, member 1 Novel U 0.0104322190715246 -0.15592551647782452 1.0 4949 +258207 Or2f2 olfactory receptor family 2 subfamily F member 2 Novel U 0.010420200886446216 -0.15605000044378986 1.0 4950 +12043 Bcl2 B cell leukemia/lymphoma 2 Novel U 0.010417220867615542 -0.15608086738087515 1.0 4951 +100040462 Mndal myeloid nuclear differentiation antigen like Novel U 0.010412435403375555 -0.15613043506215926 1.0 4952 +258657 Or4n4b olfactory receptor family 4 subfamily N member 4B Novel U 0.010408023735062282 -0.15617613097752236 1.0 4953 +64450 Gpr85 G protein-coupled receptor 85 Novel N 0.01040345613977381 -0.15622344197936874 1.0 4954 +66222 Serpinb1a serine (or cysteine) peptidase inhibitor, clade B, member 1a Novel U 0.010403186424792736 -0.15622623567827632 1.0 4955 +208188 Ghsr growth hormone secretagogue receptor Novel U 0.01040070602166068 -0.1562519276123793 1.0 4956 +217328 Myo15b myosin XVB Novel U 0.010392476248327509 -0.15633717133402505 1.0 4957 +16404 Itga7 integrin alpha 7 Novel U 0.010390928277822533 -0.15635320516162882 1.0 4958 +67809 Rmdn3 regulator of microtubule dynamics 3 Novel N 0.010390893784013294 -0.156353562447371 1.0 4959 +69718 Ipmk inositol polyphosphate multikinase Novel N 0.010390447497518045 -0.1563581850682179 1.0 4960 +259126 Or51b6b olfactory receptor family 51 subfamily B member 6B Novel U 0.01039027002698256 -0.15636002330219043 1.0 4961 +56495 Get3 guided entry of tail-anchored proteins factor 3, ATPase Novel U 0.010388257875501778 -0.15638086510108243 1.0 4962 +23830 Capn10 calpain 10 Novel U 0.010385123918884692 -0.15641332652069895 1.0 4963 +217882 Cep170b centrosomal protein 170B Novel U 0.010384925864848514 -0.156415377957895 1.0 4964 +259021 Or8k22 olfactory receptor family 8 subfamily K member 22 Novel U 0.010383102550056523 -0.1564342637925722 1.0 4965 +18481 Pak3 p21 (RAC1) activated kinase 3 Novel U 0.010382767529112005 -0.1564377339285023 1.0 4966 +244310 Dlgap2 DLG associated protein 2 Novel U 0.010378171177660725 -0.15648534278573775 1.0 4967 +21804 Tgfb1i1 transforming growth factor beta 1 induced transcript 1 Novel U 0.010374606735763228 -0.15652226315773732 1.0 4968 +70377 Derl3 Der1-like domain family, member 3 Novel U 0.010372630003628322 -0.1565427380842091 1.0 4969 +171260 Vmn1r89 vomeronasal 1 receptor 89 Novel U 0.010372364031543551 -0.1565454930143198 1.0 4970 +14599 Gh growth hormone Novel U 0.010372286573053849 -0.1565462953268098 1.0 4971 +217198 Plekhh3 pleckstrin homology domain containing, family H (with MyTH4 domain) member 3 Novel U 0.010361050615891498 -0.15666267700173525 1.0 4972 +258495 Or2t47 olfactory receptor family 2 subfamily T member 47 Novel U 0.01035165746359303 -0.15675997096445954 1.0 4973 +18346 Or2a57 olfactory receptor family 2 subfamily A member 57 Novel U 0.010349167609194567 -0.15678576079446926 1.0 4974 +56358 Copz2 coatomer protein complex, subunit zeta 2 Novel U 0.010345476122516059 -0.15682399709213415 1.0 4975 +76787 Ppfia3 protein tyrosine phosphatase, receptor type, f polypeptide (PTPRF), interacting protein (liprin), alpha 3 Novel U 0.01033674182029092 -0.15691446670745743 1.0 4976 +244237 Tnfrsf26 tumor necrosis factor receptor superfamily, member 26 Novel U 0.010323870500522535 -0.15704778741449651 1.0 4977 +56045 Samhd1 SAM domain and HD domain, 1 Novel U 0.010319718661900493 -0.1570907920224593 1.0 4978 +18583 Pde7a phosphodiesterase 7A Novel N 0.010310523156193874 -0.1571860387682825 1.0 4979 +16559 Kif17 kinesin family member 17 Novel U 0.010305449916326802 -0.15723858722005185 1.0 4980 +22070 Tpt1 tumor protein, translationally-controlled 1 Novel U 0.010302147915166057 -0.15727278923952742 1.0 4981 +27381 Tcl1b2 T cell leukemia/lymphoma 1B, 2 Novel U 0.010290538035378587 -0.15739304399271178 1.0 4982 +52589 Ncald neurocalcin delta Novel U 0.010274201168425494 -0.15756226072356636 1.0 4983 +13542 Dvl1 dishevelled segment polarity protein 1 Novel U 0.010265311738843003 -0.15765433714295754 1.0 4984 +227154 Stradb STE20-related kinase adaptor beta Novel U 0.01026372959922589 -0.15767072489310158 1.0 4985 +21871 Atp6v0a2 ATPase, H+ transporting, lysosomal V0 subunit A2 Novel U 0.010261223033742224 -0.15769668781598248 1.0 4986 +69142 Cd209f CD209f antigen Novel U 0.010257562860855107 -0.15773459976642554 1.0 4987 +320051 Exph5 exophilin 5 Novel U 0.010249315147281203 -0.15782002931249506 1.0 4988 +258457 Or1o11 olfactory receptor family 1 subfamily O member 11 Novel U 0.01024698834207737 -0.15784413028430677 1.0 4989 +19185 Psmd4 proteasome (prosome, macropain) 26S subunit, non-ATPase, 4 Novel U 0.010240048099844572 -0.15791601708520592 1.0 4990 +258042 Or5p63 olfactory receptor family 5 subfamily P member 63 Novel U 0.01023944572921078 -0.15792225642042887 1.0 4991 +258340 Or4x11 olfactory receptor family 4 subfamily X member 11 Novel U 0.010233543124250994 -0.15798339540856465 1.0 4992 +319239 Npsr1 neuropeptide S receptor 1 Novel N 0.010227734325285611 -0.1580435627572941 1.0 4993 +12902 Cr2 complement receptor 2 Novel U 0.010226507841776065 -0.15805626663316752 1.0 4994 +12061 Bdkrb1 bradykinin receptor, beta 1 Novel N 0.0102177570645697 -0.15814690689580474 1.0 4995 +74137 Nuak2 NUAK family, SNF1-like kinase, 2 Novel U 0.010213169023450774 -0.15819442967489086 1.0 4996 +258263 Or2g25 olfactory receptor family 2 subfamily G member 25 Novel U 0.010211131303925267 -0.15821553630674962 1.0 4997 +258789 Or4b12 olfactory receptor family 4 subfamily B member 12 Novel U 0.010210448856486727 -0.15822260507488378 1.0 4998 +258268 Or10g1b olfactory receptor family 10 subfamily G member 1B Novel U 0.010208420123745702 -0.15824361862192432 1.0 4999 +19065 Npy4r neuropeptide Y receptor Y4 Novel U 0.010208046989796403 -0.15824748353110504 1.0 5000 +232201 Arhgap25 Rho GTPase activating protein 25 Novel U 0.01020736518641301 -0.15825454562813715 1.0 5001 +79560 Ublcp1 ubiquitin-like domain containing CTD phosphatase 1 Novel U 0.010205200413242847 -0.1582769682774706 1.0 5002 +71323 Rassf8 Ras association (RalGDS/AF-6) domain family (N-terminal) member 8 Novel U 0.01020167188092559 -0.1583135166992185 1.0 5003 +217648 Gm527 predicted gene 527 Novel U 0.010194685194773739 -0.15838588456470445 1.0 5004 +13532 Usp17lc ubiquitin specific peptidase 17-like C Novel U 0.010173667067110375 -0.15860358964010784 1.0 5005 +67475 Ero1b endoplasmic reticulum oxidoreductase 1 beta Novel U 0.01017265969414905 -0.15861402397612565 1.0 5006 +64380 Ms4a4c membrane-spanning 4-domains, subfamily A, member 4C Novel U 0.010170999912398037 -0.15863121594094026 1.0 5007 +28193 Reep3 receptor accessory protein 3 Novel U 0.010164065522252687 -0.15870304212611 1.0 5008 +258743 Or56b2 olfactory receptor family 56 subfamily B member 2 Novel U 0.010160944318096079 -0.1587353714561601 1.0 5009 +245474 Dkc1 dyskeratosis congenita 1, dyskerin Novel U 0.010159424962004542 -0.1587511088966101 1.0 5010 +381867 Ovol3 ovo like zinc finger 3 Novel U 0.010158209997823292 -0.1587636934556597 1.0 5011 +17002 Ltf lactotransferrin Novel U 0.010155516496169446 -0.15879159265724613 1.0 5012 +58239 Dexi dexamethasone-induced transcript Novel U 0.010150293772548828 -0.1588456894568207 1.0 5013 +66087 Emc3 ER membrane protein complex subunit 3 Novel U 0.010150077501296867 -0.15884792958733898 1.0 5014 +67091 Trappc6a trafficking protein particle complex 6A Novel U 0.010149867285990275 -0.1588501069905742 1.0 5015 +258843 Or8k3b olfactory receptor family 8 subfamily K member 3B Novel U 0.010144122181672852 -0.15890961459223393 1.0 5016 +387512 Tas2r135 taste receptor, type 2, member 135 Novel N 0.010141785794364146 -0.1589338148151729 1.0 5017 +21418 Tfap2a transcription factor AP-2, alpha Novel U 0.010140543793476816 -0.1589466794195353 1.0 5018 +72736 Tmx1 thioredoxin-related transmembrane protein 1 Novel U 0.010136887064423034 -0.15898455569886588 1.0 5019 +258607 Or8g2b olfactory receptor family 8 subfamily G member 2B Novel U 0.010132763130572415 -0.15902727127012356 1.0 5020 +258554 Or7e177 olfactory receptor family 7 subfamily E member 177 Novel U 0.010130718692508344 -0.15904844749238395 1.0 5021 +216976 Rskr ribosomal protein S6 kinase related Novel U 0.010126975722047543 -0.1590872170573734 1.0 5022 +66774 Carlr cardiac and apoptosis-related long non-coding RNA Novel U 0.0101175401845576 -0.15918495004451763 1.0 5023 +234663 Dync1li2 dynein, cytoplasmic 1 light intermediate chain 2 Novel U 0.010116211633544836 -0.15919871113223408 1.0 5024 +258227 Or10v9 olfactory receptor family 10 subfamily V member 9 Novel U 0.010110353782463364 -0.1592593865611695 1.0 5025 +75646 Rai14 retinoic acid induced 14 Novel U 0.010099279253379159 -0.15937409616936815 1.0 5026 +258704 Or3a1d olfactory receptor family 3 subfamily A member 1D Novel U 0.01009324979377812 -0.15943654911370791 1.0 5027 +67792 Rgs8 regulator of G-protein signaling 8 Novel U 0.010086259518688597 -0.15950895415329228 1.0 5028 +80796 Calm4 calmodulin 4 Novel U 0.010083226291477823 -0.1595403722210295 1.0 5029 +258025 Or4c15 olfactory receptor family 4 subfamily C member 15 Novel U 0.010082391166583904 -0.15954902241722746 1.0 5030 +258529 Or5af2 olfactory receptor family 5 subfamily AC member 20 Novel U 0.010081875015767239 -0.15955436869041895 1.0 5031 +93695 Gpnmb glycoprotein (transmembrane) nmb Novel U 0.01007453616003068 -0.15963038431688634 1.0 5032 +52014 Nus1 NUS1 dehydrodolichyl diphosphate synthase subunit Novel U 0.010073783057166108 -0.15963818493160065 1.0 5033 +217302 Gpr142 G protein-coupled receptor 142 Novel U 0.010067489348049286 -0.15970337496373815 1.0 5034 +54004 Diaph2 diaphanous related formin 2 Novel N 0.010066664134043085 -0.15971192250328695 1.0 5035 +258706 Or1a1b olfactory receptor family 1 subfamily A member 1B Novel U 0.010061529734733909 -0.1597651044425471 1.0 5036 +259040 Or6b2 olfactory receptor family 6 subfamily B member 2 Novel U 0.01005282938708204 -0.15985522235751665 1.0 5037 +619697 Vmn2r116 vomeronasal 2, receptor 116 Novel U 0.010052287579592614 -0.15986083438168117 1.0 5038 +30853 Mlf2 myeloid leukemia factor 2 Novel U 0.01005005939568326 -0.15988391383736664 1.0 5039 +258572 Or5m3 olfactory receptor family 5 subfamily M member 3 Novel U 0.010045474786795513 -0.15993140106551504 1.0 5040 +68938 Aspscr1 ASPSCR1 tether for SLC2A4, UBX domain containing Novel U 0.010044709015053287 -0.1599393329040476 1.0 5041 +223828 Pphln1 periphilin 1 Novel U 0.010040621579905139 -0.15998167042294495 1.0 5042 +258773 Or6c219 olfactory receptor family 6 subfamily C member 219 Novel U 0.010020774515312698 -0.16018724566555634 1.0 5043 +227399 Ppip5k2 diphosphoinositol pentakisphosphate kinase 2 Novel N 0.01002077405699954 -0.16018725041274898 1.0 5044 +100042024 Gm3629 predicted gene 3629 Novel U 0.010020454928916928 -0.1601905559309379 1.0 5045 +19647 Rbbp6 retinoblastoma binding protein 6, ubiquitin ligase Novel U 0.010019485824851593 -0.16020059387898905 1.0 5046 +494546 Taar8c trace amine-associated receptor 8C Novel U 0.010019476644291413 -0.1602006889709296 1.0 5047 +30953 Schip1 schwannomin interacting protein 1 Novel U 0.010012992616924165 -0.16026785031324864 1.0 5048 +258273 Or2o1 olfactory receptor family 2 subfamily O member 1 Novel U 0.010012791433894642 -0.1602699341604549 1.0 5049 +55948 Sfn stratifin Novel U 0.010005442138283123 -0.16034605792280396 1.0 5050 +22123 Psmd3 proteasome (prosome, macropain) 26S subunit, non-ATPase, 3 Novel U 0.010002530516555936 -0.16037621640493974 1.0 5051 +227580 C1ql3 C1q-like 3 Novel U 0.00999651478794832 -0.160438527124101 1.0 5052 +57743 Sec61a2 SEC61 translocon subunit alpha 2 Novel U 0.009993600458114075 -0.1604687136567207 1.0 5053 +100039968 Tmem35b transmembrane protein 35B Novel U 0.00998768992508114 -0.16052993476357752 1.0 5054 +22051 Trip6 thyroid hormone receptor interactor 6 Novel N 0.009982841556297776 -0.16058015400805406 1.0 5055 +56620 Clec4n C-type lectin domain family 4, member n Novel U 0.009981573109464013 -0.16059329253866025 1.0 5056 +171382 Trpm8 transient receptor potential cation channel, subfamily M, member 8 Novel N 0.009970562530458377 -0.16070733975404733 1.0 5057 +258271 Or4f58 olfactory receptor family 4 subfamily F member 58 Novel U 0.009967202200475455 -0.16074214594154554 1.0 5058 +223825 Mroh2b maestro heat-like repeat family member 2B Novel U 0.009964598911464551 -0.16076911072354197 1.0 5059 +18146 Npdc1 neural proliferation, differentiation and control 1 Novel U 0.009959220604069362 -0.16082481905473903 1.0 5060 +22402 Ccn4 cellular communication network factor 4 Novel U 0.009958803780638386 -0.16082913649813474 1.0 5061 +16439 Itpr2 inositol 1,4,5-triphosphate receptor 2 Novel N 0.0099540585705775 -0.16087828722795502 1.0 5062 +65116 Prrg2 proline-rich Gla (G-carboxyglutamic acid) polypeptide 2 Novel U 0.009951078802527599 -0.1609091515674613 1.0 5063 +60367 Il1rapl2 interleukin 1 receptor accessory protein-like 2 Novel N 0.009939527397222888 -0.16102880064387548 1.0 5064 +70261 Chp2 calcineurin-like EF hand protein 2 Novel U 0.009937596120219154 -0.16104880474759287 1.0 5065 +20750 Spp1 secreted phosphoprotein 1 Novel U 0.009935817030962973 -0.161067232495624 1.0 5066 +71742 Ulk3 unc-51-like kinase 3 Novel U 0.009926625803112795 -0.1611624349315508 1.0 5067 +67068 Dynlrb1 dynein light chain roadblock-type 1 Novel U 0.00992469579816362 -0.16118242585936884 1.0 5068 +258304 Or5p73 olfactory receptor family 5 subfamily P member 73 Novel U 0.009924395427447844 -0.1611855370893687 1.0 5069 +258375 Or6c88 olfactory receptor family 6 subfamily C member 88 Novel U 0.009915143065658645 -0.16128137274862622 1.0 5070 +11966 Atp6v1b2 ATPase, H+ transporting, lysosomal V1 subunit B2 Novel U 0.009901268070975593 -0.1614250894874374 1.0 5071 +258947 Or1j16 olfactory receptor family 1 subfamily J member 16 Novel U 0.00989817825069995 -0.16145709374428013 1.0 5072 +76808 Rpl18a ribosomal protein L18A Novel N 0.009896141307132402 -0.16147819233879188 1.0 5073 +52857 Gramd1a GRAM domain containing 1A Novel U 0.009894127355252422 -0.1614990527861596 1.0 5074 +20740 Sptan1 spectrin alpha, non-erythrocytic 1 Novel N 0.009892660908128284 -0.1615142421972646 1.0 5075 +381845 Rnf225 ring finger protein 225 Novel U 0.009892527263607823 -0.1615156264828142 1.0 5076 +171463 Il17rd interleukin 17 receptor D Novel N 0.009885679969900259 -0.1615865505259445 1.0 5077 +215890 Clvs2 clavesin 2 Novel U 0.009883919607480404 -0.16160478430202055 1.0 5078 +11539 Adora1 adenosine A1 receptor Novel U 0.009881596576892169 -0.16162884617648798 1.0 5079 +59090 Midn midnolin Novel U 0.009880554855305765 -0.1616396362944352 1.0 5080 +101320 Dyrk4 dual-specificity tyrosine phosphorylation regulated kinase 4 Novel U 0.009879411394684385 -0.1616514802219622 1.0 5081 +23983 Pcbp1 poly(rC) binding protein 1 Novel U 0.009872084416976316 -0.16172737281620098 1.0 5082 +380711 Rap1gap2 RAP1 GTPase activating protein 2 Novel U 0.009869728759083877 -0.16175177264321278 1.0 5083 +54445 Unc93b1 unc-93 homolog B1, TLR signaling regulator Novel U 0.009864924350298598 -0.16180153655147425 1.0 5084 +258774 Or4p8 olfactory receptor family 4 subfamily P member 8 Novel U 0.009864026860259474 -0.1618108327237961 1.0 5085 +21941 Tnfrsf8 tumor necrosis factor receptor superfamily, member 8 Novel U 0.009863025055706865 -0.16182120938241948 1.0 5086 +100862042 Gm21425 predicted gene, 21425 Novel U 0.009860435879008447 -0.16184802798954712 1.0 5087 +259114 Or51a8 olfactory receptor family 51 subfamily A member 8 Novel U 0.009856135169628624 -0.16189257459592513 1.0 5088 +76478 Haus8 4HAUS augmin-like complex, subunit 8 Novel U 0.009854321695349489 -0.16191135850289362 1.0 5089 +259089 Or51s1 olfactory receptor family 51 subfamily S member 1 Novel U 0.009853240176392893 -0.16192256084069304 1.0 5090 +72354 Ttc4 tetratricopeptide repeat domain 4 Novel N 0.009850951015097349 -0.16194627189814018 1.0 5091 +51791 Rgs14 regulator of G-protein signaling 14 Novel U 0.00984330560050919 -0.16202546285111483 1.0 5092 +73158 Larp1 La ribonucleoprotein 1, translational regulator Novel U 0.0098415973566226 -0.16204315678513664 1.0 5093 +233274 Siglech sialic acid binding Ig-like lectin H Novel U 0.00983833586457307 -0.1620769392125699 1.0 5094 +319876 Cobll1 Cobl-like 1 Novel U 0.009831386720422594 -0.16214891821923974 1.0 5095 +171180 Syt12 synaptotagmin XII Novel U 0.009822761138496892 -0.16223826171327543 1.0 5096 +237038 Nox1 NADPH oxidase 1 Novel U 0.009822471093271957 -0.16224126599218058 1.0 5097 +215999 Mcu mitochondrial calcium uniporter Novel U 0.009820514463470797 -0.16226153269934027 1.0 5098 +57811 Rgr retinal G protein coupled receptor Novel N 0.009812999124858774 -0.16233937632963014 1.0 5099 +20482 Skil SKI-like Novel U 0.00980963548287095 -0.16237421682276623 1.0 5100 +18951 Septin5 septin 5 Novel U 0.00980846573766176 -0.16238633300518973 1.0 5101 +14289 Fpr2 formyl peptide receptor 2 Novel U 0.009804147528183104 -0.16243106087701617 1.0 5102 +212398 Frat2 frequently rearranged in advanced T cell lymphomas 2 Novel U 0.009803891327253627 -0.16243371459782155 1.0 5103 +19415 Rasal1 RAS protein activator like 1 (GAP1 like) Novel U 0.009801462437500671 -0.1624588729580372 1.0 5104 +11804 Aplp2 amyloid beta precursor-like protein 2 Novel U 0.00980031850291941 -0.16247072179482508 1.0 5105 +12315 Calm3 calmodulin 3 Novel U 0.009798760637239551 -0.16248685811632496 1.0 5106 +625360 Tcstv4 Tcstv family member 4 Novel U 0.009798256237086763 -0.16249208267652632 1.0 5107 +235344 Sik2 salt inducible kinase 2 Novel U 0.009797353074573032 -0.16250143760415364 1.0 5108 +57751 Rnf25 ring finger protein 25 Novel U 0.009796894992328239 -0.1625061824049866 1.0 5109 +80876 Ifitm2 interferon induced transmembrane protein 2 Novel U 0.009792521248698007 -0.16255148549772944 1.0 5110 +64602 Ireb2 iron responsive element binding protein 2 Novel N 0.009791799518479822 -0.1625589611556038 1.0 5111 +258829 Or2n1 olfactory receptor family 2 subfamily N member 1 Novel U 0.009789015387425824 -0.16258779909353777 1.0 5112 +15564 Htr5b 5-hydroxytryptamine (serotonin) receptor 5B Novel U 0.009787326693144721 -0.16260529053338857 1.0 5113 +56631 Trim17 tripartite motif-containing 17 Novel U 0.009786788431161868 -0.16261086583331255 1.0 5114 +21754 Tesk1 testis specific protein kinase 1 Novel U 0.009783779927116681 -0.16264202781931336 1.0 5115 +217069 Trim25 tripartite motif-containing 25 Novel U 0.009778642646061942 -0.16269523960759935 1.0 5116 +80905 Polh polymerase (DNA directed), eta (RAD 30 related) Novel U 0.009778069479904025 -0.16270117644382123 1.0 5117 +78309 Cul9 cullin 9 Novel N 0.009778034425510403 -0.16270153953607802 1.0 5118 +320713 Mysm1 myb-like, SWIRM and MPN domains 1 Novel U 0.009774233782820583 -0.16274090646811976 1.0 5119 +108660 Rnf187 ring finger protein 187 Novel U 0.009756412455232153 -0.16292549919343613 1.0 5120 +258563 Or9g4 olfactory receptor family 9 subfamily G member 4 Novel U 0.009753825697503068 -0.16295229274495895 1.0 5121 +227615 Tmem203 transmembrane protein 203 Novel N 0.009749249838739522 -0.1629996893396085 1.0 5122 +110382 C8b complement component 8, beta polypeptide Novel U 0.009748423937517391 -0.16300824399731725 1.0 5123 +67171 Dram2 DNA-damage regulated autophagy modulator 2 Novel N 0.009743867183982657 -0.16305544270063488 1.0 5124 +15500 Hsf2 heat shock factor 2 Novel N 0.009739283897503689 -0.1631029162313166 1.0 5125 +12741 Cldn5 claudin 5 Novel U 0.009734306785350932 -0.16315446899538108 1.0 5126 +227723 Prrc2b proline-rich coiled-coil 2B Novel U 0.009724802838170378 -0.16325291056785182 1.0 5127 +76933 Ifi27l2a interferon, alpha-inducible protein 27 like 2A Novel U 0.009716727347975455 -0.1633365562298234 1.0 5128 +259063 Or52b2 olfactory receptor family 52 subfamily B member 2 Novel U 0.009716387110598598 -0.1633400803973882 1.0 5129 +68014 Zwilch zwilch kinetochore protein Novel N 0.009707860562782876 -0.16342839809936827 1.0 5130 +171209 Asic3 acid-sensing ion channel 3 Novel N 0.00970727161861552 -0.16343449836369325 1.0 5131 +258089 Or14a258 olfactory receptor family 14 subfamily A member 258 Novel U 0.009703813522545469 -0.1634703172091081 1.0 5132 +22194 Ube2e1 ubiquitin-conjugating enzyme E2E 1 Novel U 0.009699353926429843 -0.1635165095590724 1.0 5133 +30058 Timm8a1 translocase of inner mitochondrial membrane 8A1 Novel U 0.009696610232593912 -0.16354492864963088 1.0 5134 +74766 Yipf2 Yip1 domain family, member 2 Novel U 0.009694577385715839 -0.16356598481076773 1.0 5135 +624224 Clrn2 clarin 2 Novel N 0.00969070374604728 -0.16360610784311563 1.0 5136 +259018 Or8k18 olfactory receptor family 8 subfamily K member 18 Novel U 0.00968920210839743 -0.1636216617565291 1.0 5137 +17000 Ltbr lymphotoxin B receptor Novel U 0.009688658509988225 -0.1636272923309818 1.0 5138 +17969 Ncf1 neutrophil cytosolic factor 1 Novel U 0.009688080767509823 -0.16363327656858082 1.0 5139 +68929 Mospd3 motile sperm domain containing 3 Novel U 0.009683919596199358 -0.1636763778442235 1.0 5140 +18787 Serpine1 serine (or cysteine) peptidase inhibitor, clade E, member 1 Novel U 0.009683236067217419 -0.16368345781494859 1.0 5141 +258725 Or5t15 olfactory receptor family 5 subfamily T member 15 Novel U 0.0096816943729919 -0.16369942663305603 1.0 5142 +235256 Or10d1b olfactory receptor family 10 subfamily D member 1B Novel U 0.009678838592810636 -0.1637290067102949 1.0 5143 +258395 Or4g7 olfactory receptor family 4 subfamily G member 7 Novel U 0.009678050232392826 -0.16373717252158662 1.0 5144 +100502736 Gm19345 predicted gene, 19345 Novel U 0.00967301958226324 -0.16378927983025515 1.0 5145 +100041722 1700049E17Rik2 tandem duplication of RIKEN cDNA 1700049E17 gene, gene 2 Novel U 0.00967074338414007 -0.16381285661558898 1.0 5146 +675969 Vmn2r76 vomeronasal 2, receptor 76 Novel U 0.009670317696648207 -0.16381726587263598 1.0 5147 +15937 Ier3 immediate early response 3 Novel N 0.0096697178035619 -0.16382347954550347 1.0 5148 +230376 Haus6 HAUS augmin-like complex, subunit 6 Novel U 0.009668748081257282 -0.16383352389725686 1.0 5149 +170833 Hook2 hook microtubule tethering protein 2 Novel U 0.009667907877143691 -0.16384222670384518 1.0 5150 +272589 Tbcel tubulin folding cofactor E-like Novel U 0.00966200645839242 -0.16390335340527218 1.0 5151 +72090 Entpd8 ectonucleoside triphosphate diphosphohydrolase 8 Novel U 0.00966052280524493 -0.1639187210358014 1.0 5152 +210673 Prrt3 proline-rich transmembrane protein 3 Novel U 0.009644186031787353 -0.1640879367982325 1.0 5153 +244911 C2cd4a C2 calcium-dependent domain containing 4A Novel U 0.009634727696416925 -0.16418590592507337 1.0 5154 +70012 Cep85 centrosomal protein 85 Novel U 0.009633773436053495 -0.16419579012254815 1.0 5155 +53334 Gosr1 golgi SNAP receptor complex member 1 Novel U 0.009622557484908147 -0.1643119645758071 1.0 5156 +16579 Kifap3 kinesin-associated protein 3 Novel U 0.009617109296063402 -0.16436839673676143 1.0 5157 +259024 Or1e22 olfactory receptor family 1 subfamily E member 22 Novel U 0.009614536343976281 -0.1643950472898986 1.0 5158 +18679 Phka1 phosphorylase kinase alpha 1 Novel U 0.009611050111826131 -0.16443115756790613 1.0 5159 +258136 Or10a49 olfactory receptor family 10 subfamily A member 49 Novel U 0.00961104780201939 -0.16443118149280844 1.0 5160 +54638 Ccdc22 coiled-coil domain containing 22 Novel U 0.00960221604070619 -0.16452266058616208 1.0 5161 +66538 Rps19bp1 ribosomal protein S19 binding protein 1 Novel N 0.009593680356333014 -0.16461107292430388 1.0 5162 +320495 Ipcef1 interaction protein for cytohesin exchange factors 1 Novel U 0.009591162815786173 -0.16463714952652841 1.0 5163 +18389 Oprl1 opioid receptor-like 1 Novel U 0.009586663933352954 -0.16468374880287887 1.0 5164 +170930 Sumo2 small ubiquitin-like modifier 2 Novel U 0.009585358766943141 -0.1646972676736467 1.0 5165 +791303 Gm10277 predicted gene 10277 Novel U 0.009585097168365125 -0.1646999773031182 1.0 5166 +258702 Or3a1 olfactory receptor family 3 subfamily A member 1 Novel U 0.009575524088172823 -0.164799134953052 1.0 5167 +210766 Brcc3 BRCA1/BRCA2-containing complex, subunit 3 Novel U 0.009570893201715796 -0.16484710152274168 1.0 5168 +52840 Dbndd2 dysbindin domain containing 2 Novel U 0.009570057162632501 -0.16485576118808315 1.0 5169 +65079 Rtn4r reticulon 4 receptor Novel U 0.009569993314947055 -0.1648564225203101 1.0 5170 +12638 Cftr cystic fibrosis transmembrane conductance regulator Novel U 0.009568830192988764 -0.16486847009931854 1.0 5171 +71145 Scara5 scavenger receptor class A, member 5 Novel U 0.00956135046189427 -0.16494594490811237 1.0 5172 +20296 Ccl2 C-C motif chemokine ligand 2 Novel U 0.009560586456270177 -0.16495385845325142 1.0 5173 +14228 Fkbp4 FK506 binding protein 4 Novel U 0.009555624153182918 -0.1650052578255023 1.0 5174 +223752 Gramd4 GRAM domain containing 4 Novel N 0.009553735811221825 -0.16502481720945944 1.0 5175 +268934 Grm4 glutamate receptor, metabotropic 4 Novel U 0.009544417629031646 -0.16512133463426656 1.0 5176 +30934 Tor1b torsin family 1, member B Novel U 0.009542223537322305 -0.16514406096406506 1.0 5177 +12209 Brs3 bombesin-like receptor 3 Novel N 0.009538881318603221 -0.16517867955568777 1.0 5178 +218215 Rnf144b ring finger protein 144B Novel U 0.009538587634734492 -0.16518172152354574 1.0 5179 +30933 Tor2a torsin family 2, member A Novel U 0.009531703385285558 -0.1652530283530303 1.0 5180 +100503041 Pdzd7 PDZ domain containing 7 Novel U 0.009530731852465276 -0.16526309145804535 1.0 5181 +110326 Tas1r1 taste receptor, type 1, member 1 Novel N 0.009527051947002563 -0.16530120779785776 1.0 5182 +258511 Or6f2 olfactory receptor family 6 subfamily F member 2 Novel U 0.00951831032095259 -0.16539175327311792 1.0 5183 +240755 Mgat4f MGAT4 family, member F Novel U 0.009508386926544696 -0.16549453946618087 1.0 5184 +74840 Manf mesencephalic astrocyte-derived neurotrophic factor Novel U 0.009507559913786432 -0.1655031056371444 1.0 5185 +72361 Ces2g carboxylesterase 2G Novel U 0.009504889440457723 -0.16553076631209604 1.0 5186 +234130 Dkk4 dickkopf WNT signaling pathway inhibitor 4 Novel U 0.009504816600346574 -0.16553152078757286 1.0 5187 +258570 Or5al7 olfactory receptor family 5 subfamily AL member 7 Novel U 0.009503895947940795 -0.1655410568749271 1.0 5188 +258447 Or4a69 olfactory receptor family 4 subfamily A member 69 Novel U 0.0095005731498885 -0.1655754743079217 1.0 5189 +27984 Efhd2 EF hand domain containing 2 Novel U 0.009497231811721981 -0.16561008377880992 1.0 5190 +100042874 Rbmyf2 RNA binding motif protein Y-linked family member 2 Novel U 0.00949622845495135 -0.16562047651525652 1.0 5191 +22171 Tyms thymidylate synthase Novel U 0.009493587590389041 -0.16564783050357917 1.0 5192 +16476 Jun jun proto-oncogene Novel U 0.009488024894262627 -0.16570544872719278 1.0 5193 +14151 Fech ferrochelatase Novel U 0.009482474627393829 -0.1657629382089646 1.0 5194 +26367 Ceacam2 CEA cell adhesion molecule 2 Novel U 0.009480026533837789 -0.16578829548154134 1.0 5195 +217203 Tmem106a transmembrane protein 106A Novel U 0.009476247561866019 -0.1658274379489979 1.0 5196 +52668 Ifi27 interferon, alpha-inducible protein 27 Novel U 0.00945987028108295 -0.16599707328497484 1.0 5197 +70719 Arhgap45 Rho GTPase activating protein 45 Novel U 0.009457780772891833 -0.16601871634212956 1.0 5198 +230726 Rhbdl2 rhomboid like 2 Novel U 0.00945641553060177 -0.1660328574768901 1.0 5199 +258632 Or5w15 olfactory receptor family 5 subfamily W member 15 Novel U 0.009445156569240195 -0.16614947742855488 1.0 5200 +11827 Aqp2 aquaporin 2 Novel U 0.009439271797548106 -0.1662104317002901 1.0 5201 +21943 Tnfsf11 tumor necrosis factor (ligand) superfamily, member 11 Novel U 0.00943758200335812 -0.16622793453296097 1.0 5202 +18050 Klk1b3 kallikrein 1-related peptidase b3 Novel U 0.009436940597040153 -0.16623457819851736 1.0 5203 +66822 Fbxo25 F-box protein 25 Novel U 0.009434823933387486 -0.16625650253105018 1.0 5204 +258810 Or52n3 olfactory receptor family 52 subfamily N member 3 Novel U 0.00943286672771714 -0.16627677520304393 1.0 5205 +328660 Bex6 brain expressed family member 6 Novel U 0.009432442087061862 -0.166281173616992 1.0 5206 +240327 Iigp1c interferon inducible GTPase 1C Novel U 0.009424734046407097 -0.16636101324870584 1.0 5207 +116873 Stim2 stromal interaction molecule 2 Novel N 0.009415061977037741 -0.1664611962252815 1.0 5208 +170643 Kirrel1 kirre like nephrin family adhesion molecule 1 Novel U 0.00941121888402287 -0.16650100285639463 1.0 5209 +80898 Erap1 endoplasmic reticulum aminopeptidase 1 Novel U 0.009404608234961608 -0.16656947574205783 1.0 5210 +67454 Ikbip IKBKB interacting protein Novel N 0.00939667016248079 -0.16665169803586405 1.0 5211 +109032 Sp110 Sp110 nuclear body protein Novel U 0.009392248319327055 -0.1666974993418902 1.0 5212 +70093 Ube2q1 ubiquitin-conjugating enzyme E2Q family member 1 Novel U 0.009387684120010314 -0.16674477516837302 1.0 5213 +51792 Ppp2r1a protein phosphatase 2, regulatory subunit A, alpha Novel U 0.0093863613194273 -0.16675847669332716 1.0 5214 +19256 Ptpn20 protein tyrosine phosphatase, non-receptor type 20 Novel U 0.009385099091093928 -0.1667715508129107 1.0 5215 +20318 Sdf4 stromal cell derived factor 4 Novel U 0.009380240173727596 -0.16682187931926284 1.0 5216 +15932 Idua iduronidase, alpha-L Novel U 0.009379315215453139 -0.16683146000666335 1.0 5217 +108670 Epsti1 epithelial stromal interaction 1 Novel U 0.009378489658780938 -0.16684001109553526 1.0 5218 +19122 Prnp prion protein Novel U 0.00937813368221378 -0.1668436982891158 1.0 5219 +66787 Gskip GSK3B interacting protein Novel U 0.009377068451944652 -0.16685473190922584 1.0 5220 +233315 Mtmr10 myotubularin related protein 10 Novel U 0.00937593626572378 -0.16686645905688302 1.0 5221 +12571 Cdk6 cyclin dependent kinase 6 Novel U 0.009375697088143954 -0.1668689364503923 1.0 5222 +19035 Ppib peptidylprolyl isomerase B Novel U 0.009375387741096555 -0.16687214065694006 1.0 5223 +26436 Psg16 pregnancy specific beta-1-glycoprotein 16 Novel U 0.009373686530365449 -0.16688976174176856 1.0 5224 +53972 Ngef neuronal guanine nucleotide exchange factor Novel U 0.009371971373223334 -0.16690752728306382 1.0 5225 +72946 Lrrc47 leucine rich repeat containing 47 Novel U 0.00935913286259988 -0.16704050815405827 1.0 5226 +624219 Angptl8 angiopoietin-like 8 Novel U 0.009354578232449182 -0.16708768486343378 1.0 5227 +68090 Yif1a Yip1 interacting factor homolog A (S. cerevisiae) Novel U 0.009352259890292007 -0.16711169817528645 1.0 5228 +259083 Or52b4 olfactory receptor family 52 subfamily B member 4 Novel N 0.009350556298163703 -0.16712934392654885 1.0 5229 +75766 Dcstamp dendrocyte expressed seven transmembrane protein Novel U 0.009341372836266433 -0.1672244659229907 1.0 5230 +20717 Serpina3m serine (or cysteine) peptidase inhibitor, clade A, member 3M Novel U 0.009333565026692766 -0.16730533895788685 1.0 5231 +259016 Or8k17 olfactory receptor family 8 subfamily K member 17 Novel U 0.00933114825068441 -0.16733037184433414 1.0 5232 +630845 Tas2r122 taste receptor, type 2, member 122 Novel U 0.009330060487689383 -0.16734163885767836 1.0 5233 +12967 Crygd crystallin, gamma D Novel U 0.009325872031055525 -0.16738502275380376 1.0 5234 +16570 Kif3c kinesin family member 3C Novel U 0.009325631825584567 -0.16738751079417563 1.0 5235 +53624 Cldn7 claudin 7 Novel U 0.009322997925745051 -0.16741479264212852 1.0 5236 +16364 Irf4 interferon regulatory factor 4 Novel U 0.009319294313666189 -0.16745315453429171 1.0 5237 +54396 Irgm2 immunity-related GTPase family M member 2 Novel U 0.009313039905879514 -0.1675179374845435 1.0 5238 +71862 Gpr160 G protein-coupled receptor 160 Novel U 0.009312247078890534 -0.1675261495604326 1.0 5239 +381286 Serpinb3c serine (or cysteine) peptidase inhibitor, clade B, member 3C Novel U 0.009301333693830917 -0.16763919004412192 1.0 5240 +171531 Mlph melanophilin Novel N 0.009295280895971522 -0.1677018847253745 1.0 5241 +66322 Krt88 keratin 88 Novel U 0.009294192589487391 -0.16771315736816095 1.0 5242 +103806 Maml1 mastermind like transcriptional coactivator 1 Novel N 0.00929378749223389 -0.1677173533521959 1.0 5243 +632126 Btnl4 butyrophilin-like 4 Novel U 0.009287205994588639 -0.16778552428845034 1.0 5244 +14086 Fscn1 fascin actin-bundling protein 1 Novel U 0.009282871172482766 -0.16783042423332337 1.0 5245 +381820 Smim10l1 small integral membrane protein 10 like 1 Novel U 0.009279859311686765 -0.16786162098843874 1.0 5246 +258976 Or4c127 olfactory receptor family 4 subfamily C member 127 Novel U 0.00927487406272711 -0.1679132580332816 1.0 5247 +21959 Tnp2 transition protein 2 Novel U 0.009271586426428065 -0.16794731126199192 1.0 5248 +70686 Dusp16 dual specificity phosphatase 16 Novel U 0.009268126488094401 -0.16798314918951263 1.0 5249 +11516 Adcyap1 adenylate cyclase activating polypeptide 1 Novel U 0.009266612445614325 -0.1679988315917498 1.0 5250 +14339 Aktip AKT interacting protein Novel U 0.009259904576690209 -0.1680683114775565 1.0 5251 +19889 Rp2 retinitis pigmentosa 2 homolog Novel U 0.009256689382386014 -0.16810161435446552 1.0 5252 +74155 Errfi1 ERBB receptor feedback inhibitor 1 Novel U 0.009253614989592896 -0.16813345881395142 1.0 5253 +77034 2510039O18Rik RIKEN cDNA 2510039O18 gene Novel U 0.00925215238156436 -0.16814860845983037 1.0 5254 +11629 Aif1 allograft inflammatory factor 1 Novel U 0.009251679049733834 -0.168153511215371 1.0 5255 +64050 Yeats4 YEATS domain containing 4 Novel N 0.00924960953960954 -0.16817494713320696 1.0 5256 +11964 Atp6v1a ATPase, H+ transporting, lysosomal V1 subunit A Novel U 0.00923569401355876 -0.1683190836945927 1.0 5257 +208595 Mterf1b mitochondrial transcription termination factor 1b Novel U 0.009233343110229242 -0.168343434273998 1.0 5258 +20348 Sema3c sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3C Novel U 0.009230815721104093 -0.16836961288747287 1.0 5259 +58861 Cysltr1 cysteinyl leukotriene receptor 1 Novel N 0.009227789653417208 -0.16840095679709705 1.0 5260 +104111 Adcy3 adenylate cyclase 3 Novel N 0.009222714190529703 -0.16845352827483895 1.0 5261 +242860 Rsbn1l round spermatid basic protein 1-like Novel U 0.009219905559303593 -0.1684826199847502 1.0 5262 +15953 Ifi47 interferon gamma inducible protein 47 Novel U 0.009211863146314997 -0.168565923034106 1.0 5263 +68642 Tmem216 transmembrane protein 216 Novel U 0.00921096221150921 -0.1685752548872077 1.0 5264 +258324 Or10al7 olfactory receptor family 10 subfamily AL member 7 Novel U 0.009206837753671503 -0.16861797588590643 1.0 5265 +69917 Nabp2 nucleic acid binding protein 2 Novel U 0.009197442049875455 -0.16871529627695878 1.0 5266 +69527 Mrps9 mitochondrial ribosomal protein S9 Novel U 0.009194468657552482 -0.16874609457689513 1.0 5267 +56213 Htra1 HtrA serine peptidase 1 Novel U 0.009194006488880054 -0.16875088170481115 1.0 5268 +231532 Arhgap24 Rho GTPase activating protein 24 Novel N 0.00919309082784646 -0.16876036609169637 1.0 5269 +74330 Dnajc14 DnaJ heat shock protein family (Hsp40) member C14 Novel U 0.00919279635661834 -0.16876341621499705 1.0 5270 +666060 Frmpd1 FERM and PDZ domain containing 1 Novel U 0.00919084465835526 -0.1687836318414474 1.0 5271 +12961 Crybb2 crystallin, beta B2 Novel N 0.00918864994522832 -0.16880636460786894 1.0 5272 +66169 Tomm7 translocase of outer mitochondrial membrane 7 Novel U 0.00918757488817006 -0.16881750001353782 1.0 5273 +239188 Enox1 ecto-NOX disulfide-thiol exchanger 1 Novel U 0.009184597527787658 -0.16884833941450325 1.0 5274 +11658 Alcam activated leukocyte cell adhesion molecule Novel N 0.009183833494218684 -0.16885625324909442 1.0 5275 +408058 BC048507 cDNA sequence BC048507 Novel U 0.009182237739319508 -0.16887278202588252 1.0 5276 +68760 Synpo2l synaptopodin 2-like Novel U 0.009178051256044336 -0.16891614548202352 1.0 5277 +108068 Grm2 glutamate receptor, metabotropic 2 Novel N 0.009176532168843883 -0.16893188013730853 1.0 5278 +12922 Crhr2 corticotropin releasing hormone receptor 2 Novel U 0.009174986201348352 -0.16894789321780626 1.0 5279 +258499 Or8g28 olfactory receptor family 8 subfamily G member 28 Novel U 0.00917153614841945 -0.16898362875262948 1.0 5280 +140497 Cd300c2 CD300C molecule 2 Novel U 0.00915429046206084 -0.16916225900501056 1.0 5281 +664837 Gm7361 predicted gene 7361 Novel U 0.00914723047106316 -0.1692353861596798 1.0 5282 +195018 Zzef1 zinc finger, ZZ-type with EF hand domain 1 Novel U 0.009145805326659711 -0.16925014775856165 1.0 5283 +93806 Serpinb9g serine (or cysteine) peptidase inhibitor, clade B, member 9g Novel U 0.009143346676597027 -0.16927561437508715 1.0 5284 +15444 Hpca hippocalcin Novel N 0.009142692291442045 -0.1692823924750107 1.0 5285 +66270 Retreg1 reticulophagy regulator 1 Novel U 0.00914203487832188 -0.16928920193849809 1.0 5286 +104416 Bap1 Brca1 associated protein 1 Novel U 0.009141973130088321 -0.16928984152467141 1.0 5287 +16195 Il6st interleukin 6 signal transducer Novel U 0.009141202534445196 -0.16929782332901097 1.0 5288 +216987 Utp6 UTP6 small subunit processome component Novel N 0.009139535634100355 -0.1693150890279864 1.0 5289 +17319 Mif macrophage migration inhibitory factor (glycosylation-inhibiting factor) Novel U 0.009138039365607852 -0.16933058732784456 1.0 5290 +77106 Tmem181a transmembrane protein 181A Novel U 0.009136785539894313 -0.16934357441336811 1.0 5291 +240185 Jcad junctional cadherin 5 associated Novel U 0.009132795579869405 -0.16938490228814326 1.0 5292 +14172 Fgf18 fibroblast growth factor 18 Novel U 0.009132375967192633 -0.16938924862245522 1.0 5293 +60597 Mapk8ip2 mitogen-activated protein kinase 8 interacting protein 2 Novel N 0.009131611236190109 -0.16939716968104018 1.0 5294 +18483 Palm paralemmin Novel U 0.009130883197990984 -0.16940471067677376 1.0 5295 +268445 Ankrd13b ankyrin repeat domain 13b Novel U 0.009125426262779186 -0.16946123343231048 1.0 5296 +72750 Fam117b family with sequence similarity 117, member B Novel U 0.009123577026010826 -0.16948038776596677 1.0 5297 +18775 Prl3d1 prolactin family 3, subfamily d, member 1 Novel U 0.009121910195310556 -0.16949765274356607 1.0 5298 +29857 Mapk12 mitogen-activated protein kinase 12 Novel N 0.009120872293665455 -0.16950840329468686 1.0 5299 +70616 Sugp1 SURP and G patch domain containing 1 Novel U 0.009118749364480126 -0.16953039252540095 1.0 5300 +17156 Man1a2 mannosidase, alpha, class 1A, member 2 Novel N 0.009116935726086284 -0.16954917813226422 1.0 5301 +19383 Raly hnRNP-associated with lethal yellow Novel N 0.009112582614132824 -0.1695942675227773 1.0 5302 +211286 Cln5 ceroid-lipofuscinosis, neuronal 5 Novel U 0.009110859561274831 -0.16961211484763808 1.0 5303 +242316 Gdf6 growth differentiation factor 6 Novel U 0.00910885544598001 -0.16963287340798008 1.0 5304 +110385 Pde4c phosphodiesterase 4C, cAMP specific Novel U 0.009105989626862567 -0.16966255746818984 1.0 5305 +56016 Hebp2 heme binding protein 2 Novel U 0.009100911811697419 -0.1697151533107463 1.0 5306 +16206 Lrig1 leucine-rich repeats and immunoglobulin-like domains 1 Novel U 0.00909970039588355 -0.16972770111592317 1.0 5307 +26413 Mapk1 mitogen-activated protein kinase 1 Novel U 0.009093741241916494 -0.16978942583681733 1.0 5308 +83770 Tas1r2 taste receptor, type 1, member 2 Novel U 0.009088653709883274 -0.16984212232637377 1.0 5309 +11946 Atp5f1a ATP synthase F1 subunit alpha Novel U 0.009081689733884242 -0.1699142549608434 1.0 5310 +75612 Gns glucosamine (N-acetyl)-6-sulfatase Novel U 0.009081162204926456 -0.16991971908844655 1.0 5311 +68713 Ifitm1 interferon induced transmembrane protein 1 Novel U 0.009080013620248632 -0.16993161609078178 1.0 5312 +103733 Tubg1 tubulin, gamma 1 Novel U 0.009076342452409137 -0.16996964192658015 1.0 5313 +68576 Lamtor5 late endosomal/lysosomal adaptor, MAPK and MTOR activator 5 Novel U 0.009075192530214675 -0.1699815527828687 1.0 5314 +11835 Ar androgen receptor Novel U 0.009074748222919916 -0.16998615490322203 1.0 5315 +104099 Itga9 integrin alpha 9 Novel N 0.009074528727647546 -0.16998842842803769 1.0 5316 +258298 Or5b119 olfactory receptor family 5 subfamily B member 119 Novel U 0.009071327062917748 -0.1700215911660599 1.0 5317 +328424 Kcnrg potassium channel regulator Novel U 0.009067407266174178 -0.17006219229187344 1.0 5318 +231045 Iqca1l IQ motif containing with AAA domain 1 like Novel U 0.009064857324246545 -0.170088604506535 1.0 5319 +258577 Or5m13b olfactory receptor family 5 subfamily M member 13B Novel U 0.00906116520853291 -0.17012684731972508 1.0 5320 +69276 Sec62 SEC62 homolog, preprotein translocation Novel U 0.009060636774418408 -0.17013232082291174 1.0 5321 +20307 Ccl8 C-C motif chemokine ligand 8 Novel U 0.009060390168051923 -0.17013487516354905 1.0 5322 +51801 Ramp1 receptor (calcitonin) activity modifying protein 1 Novel U 0.009052276471647615 -0.17021891656418148 1.0 5323 +17965 Nbl1 NBL1, DAN family BMP antagonist Novel U 0.009049254456596044 -0.1702502184967423 1.0 5324 +69627 Fam89a family with sequence similarity 89, member A Novel U 0.009043212021020226 -0.17031280584580222 1.0 5325 +30939 Pttg1 pituitary tumor-transforming gene 1 Novel U 0.00904294138938783 -0.17031560903935405 1.0 5326 +218793 Ube2e2 ubiquitin-conjugating enzyme E2E 2 Novel U 0.009040106502270393 -0.17034497270692453 1.0 5327 +13628 Eef1a2 eukaryotic translation elongation factor 1 alpha 2 Novel U 0.009035141700371842 -0.17039639796178066 1.0 5328 +20181 Rxra retinoid X receptor alpha Novel U 0.009034261064607418 -0.17040551955807925 1.0 5329 +258958 Or13a19 olfactory receptor family 13 subfamily A member 19 Novel U 0.00902284665531205 -0.17052374963433214 1.0 5330 +30794 Pdlim4 PDZ and LIM domain 4 Novel U 0.0090167382103617 -0.1705870207063236 1.0 5331 +111266 Cdc34b cell division cycle 34B Novel U 0.00900686254958195 -0.1706893124760354 1.0 5332 +54353 Skap2 src family associated phosphoprotein 2 Novel N 0.00900063193151025 -0.17075384901320154 1.0 5333 +73162 Otud3 OTU domain containing 3 Novel U 0.009000481776358161 -0.1707554043153308 1.0 5334 +20238 Atxn1 ataxin 1 Novel U 0.009000214452114276 -0.17075817325106113 1.0 5335 +104771 Jkamp JNK1/MAPK8-associated membrane protein Novel U 0.008999791592476835 -0.17076255321728498 1.0 5336 +73608 Marveld3 MARVEL (membrane-associating) domain containing 3 Novel U 0.008993756561534524 -0.1708250638693945 1.0 5337 +381489 Rxfp1 relaxin/insulin-like family peptide receptor 1 Novel U 0.008976793687655204 -0.17100076475941206 1.0 5338 +14587 Gfra3 glial cell line derived neurotrophic factor family receptor alpha 3 Novel N 0.008974828249609077 -0.17102112270208353 1.0 5339 +53414 Bysl bystin-like Novel U 0.008972806627495939 -0.17104206259747415 1.0 5340 +56327 Arl2 ADP-ribosylation factor-like 2 Novel U 0.008972553114756384 -0.1710446884740967 1.0 5341 +101351 Eogt EGF domain specific O-linked N-acetylglucosamine transferase Novel U 0.00896952255354956 -0.1710760789274527 1.0 5342 +544971 Bdp1 B double prime 1, subunit of RNA polymerase III transcription initiation factor IIIB Novel N 0.008965251699212641 -0.17112031629627766 1.0 5343 +15357 Hmgcr 3-hydroxy-3-methylglutaryl-Coenzyme A reductase Novel N 0.008961105841448347 -0.1711632589547125 1.0 5344 +258228 Or6b2b olfactory receptor family 6 subfamily B member 2B Novel U 0.008948340857145397 -0.1712954782424962 1.0 5345 +13631 Eef2k eukaryotic elongation factor-2 kinase Novel U 0.00894122635369019 -0.17136917003540858 1.0 5346 +217125 Samd14 sterile alpha motif domain containing 14 Novel U 0.00893424685437333 -0.1714414634598939 1.0 5347 +258873 Or8b47 olfactory receptor family 8 subfamily B member 47 Novel U 0.008929076923914809 -0.17149501342963094 1.0 5348 +94332 Cadm3 cell adhesion molecule 3 Novel N 0.008927315737240395 -0.17151325574330864 1.0 5349 +212111 Inpp5a inositol polyphosphate-5-phosphatase A Novel N 0.008922120762279448 -0.1715670651231785 1.0 5350 +75398 Mrpl32 mitochondrial ribosomal protein L32 Novel U 0.008920861258768124 -0.1715801110191449 1.0 5351 +76299 Erp44 endoplasmic reticulum protein 44 Novel U 0.00891308141095146 -0.17166069442708118 1.0 5352 +328505 Skint7 selection and upkeep of intraepithelial T cells 7 Novel U 0.008912295507092452 -0.17166883479341757 1.0 5353 +626970 Scgb2b21 secretoglobin, family 2B, member 21 Novel U 0.008901116916300399 -0.17178462226936528 1.0 5354 +432735 Vmn1r207 vomeronasal 1 receptor 207 Novel U 0.00890051490550929 -0.17179085787734955 1.0 5355 +269061 Cpsf7 cleavage and polyadenylation specific factor 7 Novel U 0.008899660767045698 -0.17179970501547717 1.0 5356 +66185 Virma vir like m6A methyltransferase associated Novel N 0.008898005245435993 -0.17181685285388812 1.0 5357 +229697 Cym chymosin Novel U 0.00889272795010394 -0.17187151490545582 1.0 5358 +81910 Rrbp1 ribosome binding protein 1 Novel N 0.008886896698239784 -0.17193191482057266 1.0 5359 +66255 Hsbp1l1 heat shock factor binding protein 1-like 1 Novel U 0.008877814941823504 -0.17202598335498584 1.0 5360 +16627 Klra1 killer cell lectin-like receptor, subfamily A, member 1 Novel U 0.00887627542461345 -0.1720419296236387 1.0 5361 +75600 Calml4 calmodulin-like 4 Novel N 0.00887524154741474 -0.17205263848967603 1.0 5362 +236798 Adgrg4 adhesion G protein-coupled receptor G4 Novel N 0.008874745023062154 -0.17205778147259773 1.0 5363 +12234 Btrc beta-transducin repeat containing protein Novel U 0.00886405738227636 -0.17216848370451973 1.0 5364 +22416 Wnt3a wingless-type MMTV integration site family, member 3A Novel U 0.008861850200561797 -0.172191345620162 1.0 5365 +13666 Eif2ak3 eukaryotic translation initiation factor 2 alpha kinase 3 Novel U 0.008860250821827337 -0.17220791193251678 1.0 5366 +22147 Tuba3b tubulin, alpha 3B Novel U 0.008849371787652062 -0.17232059661087534 1.0 5367 +620858 Gm13539 predicted gene 13539 Novel U 0.00884902670789251 -0.1723241709356809 1.0 5368 +100040340 Cox5b-ps cytochrome c oxidase subunit 5B, pseudogene Novel U 0.008842241972770226 -0.17239444699904133 1.0 5369 +330286 D630045J12Rik RIKEN cDNA D630045J12 gene Novel N 0.008842227630458336 -0.17239459555623643 1.0 5370 +269999 Orai3 ORAI calcium release-activated calcium modulator 3 Novel U 0.008840922720230989 -0.17240811177347465 1.0 5371 +236784 Or11q2 olfactory receptor family 11 subfamily Q member 2 Novel U 0.00883686595637353 -0.17245013160015127 1.0 5372 +258769 Or5p80 olfactory receptor family 5 subfamily P member 80 Novel U 0.008836014152225876 -0.17245895455951113 1.0 5373 +108679 Cops8 COP9 signalosome subunit 8 Novel U 0.008835662162566418 -0.1724626004568328 1.0 5374 +228413 Prrg4 proline rich Gla (G-carboxyglutamic acid) 4 (transmembrane) Novel U 0.008826954549438219 -0.1725527936273673 1.0 5375 +259072 Or52x1 olfactory receptor family 52 subfamily X member 1 Novel U 0.008826209600501182 -0.17256050978396825 1.0 5376 +664787 LOC664787 Sp110 nuclear body protein pseudogene Novel U 0.008825997216910113 -0.1725627096462228 1.0 5377 +110168 Gpr18 G protein-coupled receptor 18 Novel U 0.00882537446704726 -0.1725691600688304 1.0 5378 +68979 Nol11 nucleolar protein 11 Novel N 0.008821554832366928 -0.1726087237192856 1.0 5379 +216033 Ctnna3 catenin alpha 3 Novel N 0.008820547592974235 -0.1726191566718039 1.0 5380 +258785 Or4c123 olfactory receptor family 4 subfamily C member 123 Novel U 0.00881434939048233 -0.17268335744946012 1.0 5381 +192176 Flna filamin, alpha Novel U 0.008808508261606052 -0.17274385967034384 1.0 5382 +11745 Anxa3 annexin A3 Novel U 0.008807305087995846 -0.17275632210304617 1.0 5383 +20652 Soat1 sterol O-acyltransferase 1 Novel U 0.00880608129754203 -0.17276899808433685 1.0 5384 +72351 Ptar1 protein prenyltransferase alpha subunit repeat containing 1 Novel U 0.008805771181425911 -0.1727722102568731 1.0 5385 +11647 Alpl alkaline phosphatase, liver/bone/kidney Novel U 0.008804746310234894 -0.17278282583897883 1.0 5386 +11548 Adra1b adrenergic receptor, alpha 1b Novel U 0.008796813321844218 -0.17286499547194648 1.0 5387 +20343 Sell selectin, lymphocyte Novel U 0.008796610514929108 -0.17286709613930631 1.0 5388 +353165 Tas2r136 taste receptor, type 2, member 136 Novel U 0.008795136293780405 -0.17288236607350213 1.0 5389 +68279 Mcoln2 mucolipin 2 Novel N 0.008793709437739336 -0.17289714540147014 1.0 5390 +67249 Tbc1d19 TBC1 domain family, member 19 Novel U 0.008785898705975482 -0.17297804870431618 1.0 5391 +71923 Borcs6 BLOC-1 related complex subunit 6 Novel U 0.008784701520284072 -0.17299044911435246 1.0 5392 +13800 Enah ENAH actin regulator Novel U 0.008782143853757429 -0.1730169413401567 1.0 5393 +13669 Eif3a eukaryotic translation initiation factor 3, subunit A Novel U 0.008776955574094237 -0.1730706813703525 1.0 5394 +382083 Snx22 sorting nexin 22 Novel U 0.008776483644682618 -0.1730755695996842 1.0 5395 +19152 Prtn3 proteinase 3 Novel U 0.008771736954455763 -0.17312473566101494 1.0 5396 +12626 Cetn3 centrin 3 Novel N 0.008769373698641387 -0.1731492141870524 1.0 5397 +17826 Fam89b family with sequence similarity 89, member B Novel U 0.00876765890434148 -0.17316697597004005 1.0 5398 +70144 Lrch3 leucine-rich repeats and calponin homology (CH) domain containing 3 Novel N 0.00876731191661711 -0.1731705700574824 1.0 5399 +270084 Lpcat2 lysophosphatidylcholine acyltransferase 2 Novel U 0.008767034020103473 -0.17317344850043534 1.0 5400 +12369 Casp7 caspase 7 Novel U 0.008766374515050841 -0.17318027963209046 1.0 5401 +104002 Ctsq cathepsin Q Novel U 0.008757381440160642 -0.1732734296061717 1.0 5402 +54409 Ramp2 receptor (calcitonin) activity modifying protein 2 Novel U 0.008752977754549644 -0.17331904283696706 1.0 5403 +258371 Or5c1 olfactory receptor family 5 subfamily C member 1 Novel U 0.008752206944072048 -0.17332702686655496 1.0 5404 +68755 Cgrrf1 cell growth regulator with ring finger domain 1 Novel N 0.008748284540499711 -0.17336765499381515 1.0 5405 +21676 Tead1 TEA domain family member 1 Novel N 0.00874452045356566 -0.17340664328254038 1.0 5406 +387353 Tas2r126 taste receptor, type 2, member 126 Novel N 0.008741028670798541 -0.173442811053656 1.0 5407 +269902 Vmn2r57 vomeronasal 2, receptor 57 Novel U 0.00873887158599261 -0.1734651540671655 1.0 5408 +67130 Ndufa6 NADH:ubiquinone oxidoreductase subunit A6 Novel U 0.008736326293794753 -0.17349151812007896 1.0 5409 +56199 Abcb10 ATP-binding cassette, sub-family B member 10 Novel U 0.008732222274220639 -0.17353402741991522 1.0 5410 +269060 Dagla diacylglycerol lipase, alpha Novel N 0.008728250178901933 -0.17357517025265082 1.0 5411 +56453 Mbtps1 membrane-bound transcription factor peptidase, site 1 Novel U 0.008725503371728532 -0.17360362159105647 1.0 5412 +217342 Ube2o ubiquitin-conjugating enzyme E2O Novel U 0.008722900923329587 -0.17363057766602183 1.0 5413 +637873 Vmn2r61 vomeronasal 2, receptor 61 Novel U 0.008719305087956151 -0.1736678232106132 1.0 5414 +80782 Klrb1b killer cell lectin-like receptor subfamily B member 1B Novel U 0.008718313602198746 -0.17367809298749506 1.0 5415 +29845 Or13c7 olfactory receptor family 13 subfamily C member 7 Novel U 0.008717056847611083 -0.17369111041020047 1.0 5416 +216274 Cep290 centrosomal protein 290 Novel U 0.008716055587522323 -0.1737014814292852 1.0 5417 +14809 Grik5 glutamate receptor, ionotropic, kainate 5 (gamma 2) Novel U 0.008711980306446586 -0.1737436930567 1.0 5418 +110052 Dek DEK proto-oncogene Novel U 0.008711423445281726 -0.1737494610063398 1.0 5419 +12946 Cr1l complement C3b/C4b receptor 1 like Novel U 0.008702387223683295 -0.1738430578926066 1.0 5420 +216792 Iba57 IBA57 homolog, iron-sulfur cluster assembly Novel N 0.008700739425236192 -0.17386012573475323 1.0 5421 +21803 Tgfb1 transforming growth factor, beta 1 Novel U 0.008699129153830216 -0.17387680487304152 1.0 5422 +107702 Rnh1 ribonuclease/angiogenin inhibitor 1 Novel U 0.008695509653861143 -0.17391429553473653 1.0 5423 +258593 Or2ag18 olfactory receptor family 2 subfamily AG member 18 Novel U 0.008687944639871265 -0.17399265370095723 1.0 5424 +258733 Or5p72 olfactory receptor family 5 subfamily P member 72 Novel U 0.008682594588299146 -0.1740480693592678 1.0 5425 +73825 Ppp1r21 protein phosphatase 1, regulatory subunit 21 Novel N 0.008676150007186243 -0.17411482211858106 1.0 5426 +546980 Vmn2r74 vomeronasal 2, receptor 74 Novel U 0.00867499922125978 -0.17412674192137728 1.0 5427 +232409 Clec2e C-type lectin domain family 2, member e Novel U 0.008667996417254891 -0.17419927673505517 1.0 5428 +20928 Abcc9 ATP-binding cassette, sub-family C member 9 Novel U 0.008667752555059591 -0.17420180265165752 1.0 5429 +75593 Malsu1 mitochondrial assembly of ribosomal large subunit 1 Novel N 0.008667003569080376 -0.17420956062380866 1.0 5430 +15370 Nr4a1 nuclear receptor subfamily 4, group A, member 1 Novel U 0.00866509866245426 -0.17422929158402156 1.0 5431 +19657 Rbmy RNA binding motif protein, Y chromosome Novel U 0.008661333841938311 -0.17426828747116394 1.0 5432 +67126 Atp5f1e ATP synthase F1 subunit epsilon Novel U 0.00865266222775344 -0.1743581077658269 1.0 5433 +16449 Jag1 jagged 1 Novel U 0.00864533261683382 -0.1744340276347843 1.0 5434 +258531 Or2t45 olfactory receptor family 2 subfamily T member 45 Novel U 0.008636446804960342 -0.17452606658206446 1.0 5435 +12482 Ms4a1 membrane-spanning 4-domains, subfamily A, member 1 Novel U 0.008632870401258763 -0.1745631108540375 1.0 5436 +216825 Usp22 ubiquitin specific peptidase 22 Novel U 0.008631756231278927 -0.17457465139006226 1.0 5437 +244650 Phlpp2 PH domain and leucine rich repeat protein phosphatase 2 Novel U 0.008619565871776654 -0.17470091873305035 1.0 5438 +18370 Or52a5b olfactory receptor family 52 subfamily A member 5B Novel U 0.00861789452260128 -0.17471823051286622 1.0 5439 +270669 Mbtps2 membrane-bound transcription factor peptidase, site 2 Novel U 0.00860826006959964 -0.17481802386034162 1.0 5440 +100043200 Or10u4 olfactory receptor family 10 subfamily U member 4 Novel U 0.008606709984011323 -0.17483407959590908 1.0 5441 +109075 Exosc4 exosome component 4 Novel N 0.008605949538578841 -0.17484195626470048 1.0 5442 +17762 Mapt microtubule-associated protein tau Novel U 0.00860394879952057 -0.17486267985409526 1.0 5443 +12991 Csn2 casein beta Novel U 0.008601777496675811 -0.17488517013758353 1.0 5444 +78286 Nav2 neuron navigator 2 Novel U 0.008600891938471175 -0.174894342720356 1.0 5445 +233437 Vmn2r66 vomeronasal 2, receptor 66 Novel U 0.008599683085695774 -0.17490686397766472 1.0 5446 +67254 Bmerb1 bMERB domain containing 1 Novel U 0.008598723949297933 -0.17491679868094367 1.0 5447 +671917 LOC671917 component of Sp100-rs-like Novel U 0.00859856997058541 -0.1749183935873862 1.0 5448 +28018 Ubfd1 ubiquitin family domain containing 1 Novel U 0.008595503994238226 -0.17495015086960175 1.0 5449 +12006 Axin2 axin 2 Novel U 0.008589661024174204 -0.17501067216144758 1.0 5450 +50789 Fbxl3 F-box and leucine-rich repeat protein 3 Novel U 0.00858854252012961 -0.17502225758957268 1.0 5451 +18484 Pam peptidylglycine alpha-amidating monooxygenase Novel N 0.008584926836334893 -0.17505970872345916 1.0 5452 +15242 Hhex hematopoietically expressed homeobox Novel U 0.008582332997165147 -0.1750865756243115 1.0 5453 +100043272 Inafm2 InaF motif containing 2 Novel U 0.008580901438711763 -0.17510140365971172 1.0 5454 +14230 Fkbp10 FK506 binding protein 10 Novel U 0.008579400973881551 -0.17511694542509795 1.0 5455 +106489 Sft2d1 SFT2 domain containing 1 Novel U 0.008577182392729423 -0.17513992541573972 1.0 5456 +258748 Or4c103 olfactory receptor family 4 subfamily C member 103 Novel U 0.008574948414644592 -0.17516306488730435 1.0 5457 +435376 Atp6ap1l ATPase, H+ transporting, lysosomal accessory protein 1-like Novel U 0.008571776965432371 -0.17519591465398876 1.0 5458 +19401 Rara retinoic acid receptor, alpha Novel U 0.008569140212633644 -0.17522322605279939 1.0 5459 +233208 Scaf1 SR-related CTD-associated factor 1 Novel U 0.008568525346663514 -0.1752295948143054 1.0 5460 +66460 Sys1 SYS1 Golgi-localized integral membrane protein homolog (S. cerevisiae) Novel U 0.008566997282963888 -0.17524542244787372 1.0 5461 +396184 Flrt1 fibronectin leucine rich transmembrane protein 1 Novel N 0.00856693184912053 -0.17524610020947218 1.0 5462 +114128 Laptm4b lysosomal-associated protein transmembrane 4B Novel U 0.008566010904457426 -0.1752556393240182 1.0 5463 +317758 Gimap9 GTPase, IMAP family member 9 Novel U 0.008564750668371316 -0.1752686928079701 1.0 5464 +74356 Matcap1 microtubule associated tyrosine carboxypeptidase 1 Novel U 0.008562427113669354 -0.1752927601111903 1.0 5465 +226519 Lamc1 laminin, gamma 1 Novel U 0.008561863076802156 -0.175298602386519 1.0 5466 +21823 Th tyrosine hydroxylase Novel U 0.00855965548950182 -0.17532146850320535 1.0 5467 +208691 Eif5a2 eukaryotic translation initiation factor 5A2 Novel U 0.008559097767390257 -0.17532724537050282 1.0 5468 +22045 Trhr thyrotropin releasing hormone receptor Novel U 0.00855561804580332 -0.17536328821231062 1.0 5469 +14612 Gja4 gap junction protein, alpha 4 Novel U 0.008548641970893148 -0.17543554616690404 1.0 5470 +66449 Pam16 presequence translocase-asssociated motor 16 Novel U 0.008547551231262744 -0.17544684401213967 1.0 5471 +14950 H13 histocompatibility 13 Novel U 0.008544621652159362 -0.1754771884961878 1.0 5472 +71949 Cers5 ceramide synthase 5 Novel N 0.008543688539017763 -0.175486853651434 1.0 5473 +257880 Or8k28 olfactory receptor family 8 subfamily K member 28 Novel U 0.008541346345400453 -0.17551111401592664 1.0 5474 +15551 Htr1b 5-hydroxytryptamine (serotonin) receptor 1B Novel N 0.008540635454109931 -0.17551847740454457 1.0 5475 +244667 Disc1 disrupted in schizophrenia 1 Novel U 0.008523585318326444 -0.1756950821504969 1.0 5476 +107513 Ssr1 signal sequence receptor, alpha Novel U 0.008517152161715396 -0.17576171657519554 1.0 5477 +12054 Bcl7b B cell CLL/lymphoma 7B Novel U 0.008511519952280803 -0.17582005481537014 1.0 5478 +68475 Ssna1 SS nuclear autoantigen 1 Novel U 0.00851047552394941 -0.17583087296969294 1.0 5479 +19273 Ptpru protein tyrosine phosphatase receptor type U Novel U 0.0085080818403462 -0.1758556666657669 1.0 5480 +217718 Nek9 NIMA (never in mitosis gene a)-related expressed kinase 9 Novel U 0.008507707705164347 -0.1758595419456815 1.0 5481 +67665 Dctn4 dynactin 4 Novel U 0.008506845369004923 -0.17586847399527306 1.0 5482 +258738 Or5p79 olfactory receptor family 5 subfamily P member 79 Novel U 0.008503589752389368 -0.17590219556515432 1.0 5483 +258394 Or10ak7 olfactory receptor family 10 subfamily AK member 7 Novel U 0.008501380712115422 -0.17592507673169358 1.0 5484 +100861753 Anxa2r1 annexin A2 receptor 1 Novel U 0.008498752055721863 -0.17595230426820566 1.0 5485 +382551 Cd300ld3 CD300 molecule like family member D3 Novel U 0.008495021103444987 -0.1759909493492411 1.0 5486 +76229 Vmn2r29 vomeronasal 2, receptor 29 Novel U 0.008494266432508227 -0.17599876620599555 1.0 5487 +237636 Npc1l1 NPC1 like intracellular cholesterol transporter 1 Novel U 0.008489973923600971 -0.1760432278721483 1.0 5488 +210094 Iglon5 IgLON family member 5 Novel U 0.00848932949697879 -0.17604990282191643 1.0 5489 +66839 Dele1 DAP3 binding cell death enhancer 1 Novel U 0.008489239414531665 -0.1760508358929425 1.0 5490 +11465 Actg1 actin, gamma, cytoplasmic 1 Novel U 0.00848919811716736 -0.17605126364968438 1.0 5491 +56032 Nprl2 NPR2 like, GATOR1 complex subunit Novel U 0.00848745483909579 -0.17606932046664253 1.0 5492 +17082 Il1rl1 interleukin 1 receptor-like 1 Novel U 0.008486079675462128 -0.17608356436635392 1.0 5493 +258448 Or2h2c olfactory receptor family 2 subfamily H member 2C Novel U 0.008483050320758278 -0.17611494232279173 1.0 5494 +546272 Gm5934 predicted gene 5934 Novel U 0.008481404624649127 -0.176131988388991 1.0 5495 +235633 Als2cl ALS2 C-terminal like Novel U 0.008479696017996962 -0.17614968608052667 1.0 5496 +12368 Casp6 caspase 6 Novel U 0.008466994913394867 -0.17628124370446885 1.0 5497 +257630 Il17f interleukin 17F Novel U 0.008464823070600966 -0.17630373958073262 1.0 5498 +100042225 Vmn2r130 vomeronasal 2, receptor 130 Novel U 0.008462024421877526 -0.17633272789220936 1.0 5499 +68774 Ms4a6d membrane-spanning 4-domains, subfamily A, member 6D Novel U 0.008460605488468751 -0.17634742515781254 1.0 5500 +258156 Or52s6 olfactory receptor family 52 subfamily S member 6 Novel U 0.008460513881346905 -0.17634837402136921 1.0 5501 +75782 Lca5 Leber congenital amaurosis 5 (human) Novel U 0.008454348247535225 -0.1764122374537063 1.0 5502 +14939 Gzmb granzyme B Novel U 0.008450584520040973 -0.1764512220193659 1.0 5503 +14528 Gch1 GTP cyclohydrolase 1 Novel U 0.008450515554677008 -0.1764519363603387 1.0 5504 +17381 Mmp12 matrix metallopeptidase 12 Novel U 0.008447483235297235 -0.17648334502479227 1.0 5505 +66849 Ppp1r2 protein phosphatase 1, regulatory inhibitor subunit 2 Novel U 0.008445519963625919 -0.1765036805282247 1.0 5506 +258414 Or8b36 olfactory receptor family 8 subfamily B member 36 Novel U 0.008440288569439318 -0.1765578671372367 1.0 5507 +546049 Rps23rg1 ribosomal protein S23, retrogene 1 Novel U 0.008440021463466963 -0.1765606338121177 1.0 5508 +69716 Trip13 thyroid hormone receptor interactor 13 Novel U 0.008438893014393118 -0.17657232225052882 1.0 5509 +68262 Agpat4 1-acylglycerol-3-phosphate O-acyltransferase 4 Novel U 0.008435177455531543 -0.17661080788707462 1.0 5510 +217379 Ubxn2a UBX domain protein 2A Novel U 0.008433887067189769 -0.17662417368709946 1.0 5511 +234094 Arhgef10 Rho guanine nucleotide exchange factor 10 Novel U 0.008432450790364922 -0.17663905059523616 1.0 5512 +258713 Or6n2 olfactory receptor family 6 subfamily N member 2 Novel U 0.008432198926020448 -0.17664165939783666 1.0 5513 +74112 Usp16 ubiquitin specific peptidase 16 Novel U 0.008424388256783504 -0.17672256205303097 1.0 5514 +20707 Serpinb9c serine (or cysteine) peptidase inhibitor, clade B, member 9c Novel U 0.008423283760635735 -0.17673400238782122 1.0 5515 +258478 Or5h17 olfactory receptor family 5 subfamily H member 17 Novel U 0.008423170986428545 -0.17673517049935203 1.0 5516 +105242399 Gm21083 predicted gene, 21083 Novel U 0.008415425886457184 -0.17681539399024893 1.0 5517 +368203 Brcc3dc BRCA1/BRCA2-containing complex, subunit 3, domain containing Novel U 0.008402030557274091 -0.17695414236957974 1.0 5518 +104718 Ttc7b tetratricopeptide repeat domain 7B Novel U 0.008398826522224994 -0.1769873296592913 1.0 5519 +258877 Or2t26 olfactory receptor family 2 subfamily T member 26 Novel U 0.008398429323136275 -0.176991443834395 1.0 5520 +80915 Dusp12 dual specificity phosphatase 12 Novel N 0.008395031066330704 -0.17702664286667544 1.0 5521 +14600 Ghr growth hormone receptor Novel U 0.008391582098014279 -0.17706236716711826 1.0 5522 +75458 Cklf chemokine-like factor Novel U 0.008389697955659666 -0.17708188305168948 1.0 5523 +258975 Or4a15 olfactory receptor family 4 subfamily A member 15 Novel U 0.008389261614209395 -0.17708640266208742 1.0 5524 +19170 Psmb1 proteasome (prosome, macropain) subunit, beta type 1 Novel N 0.008387068430886794 -0.17710911958284595 1.0 5525 +63873 Trpv4 transient receptor potential cation channel, subfamily V, member 4 Novel U 0.008384561881410884 -0.17713508233991904 1.0 5526 +57314 Nelfcd negative elongation factor complex member C/D, Th1l Novel N 0.008374004400074443 -0.1772444363845434 1.0 5527 +72661 Serp2 stress-associated endoplasmic reticulum protein family member 2 Novel U 0.00837351922261711 -0.17724946183669707 1.0 5528 +76072 Rnf183 ring finger protein 183 Novel U 0.008370667927489769 -0.17727899545789483 1.0 5529 +59069 Tpm3 tropomyosin 3, gamma Novel U 0.00836935757281469 -0.1772925680685437 1.0 5530 +72587 Pan3 PAN3 poly(A) specific ribonuclease subunit Novel U 0.008366822744557474 -0.17731882373630395 1.0 5531 +217365 Nploc4 NPL4 homolog, ubiquitin recognition factor Novel U 0.008366144425583819 -0.17732584974193452 1.0 5532 +100037258 Dnajc3 DnaJ heat shock protein family (Hsp40) member C3 Novel U 0.008363038681355952 -0.17735801893855097 1.0 5533 +12829 Col4a4 collagen, type IV, alpha 4 Novel U 0.008361328259163246 -0.17737573543539592 1.0 5534 +50770 Atp11a ATPase, class VI, type 11A Novel N 0.0083540325439619 -0.1774513042136177 1.0 5535 +66626 Cdip1 cell death inducing Trp53 target 1 Novel N 0.00835184893466695 -0.17747392196691253 1.0 5536 +12334 Capn2 calpain 2 Novel U 0.008351432350076462 -0.1774782369364063 1.0 5537 +93725 Ear10 eosinophil-associated, ribonuclease A family, member 10 Novel U 0.008349490489697292 -0.1774983506623785 1.0 5538 +12311 Calcr calcitonin receptor Novel U 0.008346929796024182 -0.17752487424326632 1.0 5539 +620235 Siglec15 sialic acid binding Ig-like lectin 15 Novel U 0.008344472100533068 -0.17755033097237088 1.0 5540 +667069 Vmn2r6 vomeronasal 2, receptor 6 Novel U 0.00834288830329829 -0.17756673589206418 1.0 5541 +170648 Or2n1e olfactory receptor family 2 subfamily N member 1E Novel U 0.008342244868262143 -0.1775734005710168 1.0 5542 +107321 Lpxn leupaxin Novel U 0.0083360689227198 -0.17763737081192113 1.0 5543 +18341 Or2w1 olfactory receptor family 2 subfamily W member 1 Novel U 0.008335973761935381 -0.1776383564841979 1.0 5544 +80861 Dhx58 DExH-box helicase 58 Novel U 0.008333715350254647 -0.1776617490381457 1.0 5545 +381716 Pttg1ip2 PTTG1IP family member 2 Novel U 0.008331520177680839 -0.17768448656350275 1.0 5546 +78244 Dnajc21 DnaJ heat shock protein family (Hsp40) member C21 Novel U 0.008331204295124964 -0.17768775846463244 1.0 5547 +80706 Or8a1b olfactory receptor family 8 subfamily A member 1B Novel U 0.008326333078998844 -0.1777382143611342 1.0 5548 +68465 Adipor2 adiponectin receptor 2 Novel U 0.008325478404274887 -0.17774706705382906 1.0 5549 +18131 Notch3 notch 3 Novel U 0.008323913365355786 -0.1777632776755052 1.0 5550 +19737 Rgs5 regulator of G-protein signaling 5 Novel U 0.008313798257619914 -0.1778680496289171 1.0 5551 +140740 Sec63 SEC63 homolog, protein translocation regulator Novel U 0.008312755349758937 -0.17787885203425735 1.0 5552 +233080 Ffar3 free fatty acid receptor 3 Novel U 0.008310706746312712 -0.17790007140140915 1.0 5553 +70835 Prss22 serine protease 22 Novel N 0.00830677423511238 -0.17794080422314784 1.0 5554 +18020 Nfatc2ip nuclear factor of activated T cells, cytoplasmic, calcineurin dependent 2 interacting protein Novel U 0.008304794038120353 -0.17796131503849577 1.0 5555 +11819 Nr2f2 nuclear receptor subfamily 2, group F, member 2 Novel U 0.008304281973832133 -0.17796661898355998 1.0 5556 +73830 Eif3k eukaryotic translation initiation factor 3, subunit K Novel N 0.0083024784331379 -0.17798529999878263 1.0 5557 +257889 Or2h15 olfactory receptor family 2 subfamily H member 15 Novel U 0.008300856406951385 -0.17800210089270133 1.0 5558 +67468 Mmd monocyte to macrophage differentiation-associated Novel U 0.008300380845344728 -0.1780070267441898 1.0 5559 +70508 Bbx bobby sox HMG box containing Novel U 0.008295969033703192 -0.1780527241441424 1.0 5560 +17342 Mitf melanogenesis associated transcription factor Novel U 0.008290729492219576 -0.178106995142589 1.0 5561 +108900 Fam72a family with sequence similarity 72, member A Novel U 0.008288959781368371 -0.17812532574940967 1.0 5562 +14675 Gna14 guanine nucleotide binding protein, alpha 14 Novel N 0.008286270289016458 -0.1781531834227785 1.0 5563 +66046 Ndufb5 NADH:ubiquinone oxidoreductase subunit B5 Novel N 0.008285261275170841 -0.17816363475502184 1.0 5564 +67767 Jagn1 jagunal homolog 1 Novel U 0.008284738269084546 -0.1781690520348708 1.0 5565 +54519 Apbb1ip amyloid beta precursor protein binding family B member 1 interacting protein Novel U 0.008282613045385183 -0.17819106503208584 1.0 5566 +56736 Rnf14 ring finger protein 14 Novel U 0.008280945983979873 -0.17820833239932035 1.0 5567 +66315 Senp7 SUMO1/sentrin specific peptidase 7 Novel U 0.008279909463646724 -0.17821906864285733 1.0 5568 +19653 Rbm4 RNA binding motif protein 4 Novel U 0.008279302666312582 -0.178225353829697 1.0 5569 +53419 Corin corin, serine peptidase Novel U 0.008278610847695515 -0.17823251966419026 1.0 5570 +98766 Ubac1 ubiquitin associated domain containing 1 Novel N 0.008274467517629542 -0.17827543614080898 1.0 5571 +171469 Gpr37l1 G protein-coupled receptor 37-like 1 Novel U 0.008273155417669709 -0.17828902682905995 1.0 5572 +637004 Vmn2r3 vomeronasal 2, receptor 3 Novel U 0.008268553620413774 -0.178336692093761 1.0 5573 +406218 Panx2 pannexin 2 Novel U 0.008265323138026633 -0.17837015332413061 1.0 5574 +72674 Adipor1 adiponectin receptor 1 Novel U 0.008260672586722532 -0.17841832358165985 1.0 5575 +232341 Wnk1 WNK lysine deficient protein kinase 1 Novel U 0.008256532709404582 -0.17846120429482804 1.0 5576 +51944 Knstrn kinetochore-localized astrin/SPAG5 binding Novel U 0.008252040434160128 -0.17850773513413448 1.0 5577 +77462 Tmem116 transmembrane protein 116 Novel U 0.008245792269872203 -0.1785724534144315 1.0 5578 +108671 Dnajc9 DnaJ heat shock protein family (Hsp40) member C9 Novel N 0.00824467285797863 -0.17858404824602644 1.0 5579 +385263 Gm1527 predicted gene 1527 Novel U 0.008241688533018286 -0.17861495978586128 1.0 5580 +210933 Adgrb3 adhesion G protein-coupled receptor B3 Novel N 0.008239390589342163 -0.17863876181091776 1.0 5581 +114332 Lyve1 lymphatic vessel endothelial hyaluronan receptor 1 Novel U 0.008238413601086465 -0.1786488814231535 1.0 5582 +100043346 Rpl10-ps3 ribosomal protein L10, pseudogene 3 Novel U 0.00823467491224824 -0.17868760663923708 1.0 5583 +14309 Fshr follicle stimulating hormone receptor Novel U 0.00823279998535672 -0.1787070270703445 1.0 5584 +14706 Gng4 guanine nucleotide binding protein (G protein), gamma 4 Novel U 0.008231667620853011 -0.1787187560646495 1.0 5585 +56760 Clec1b C-type lectin domain family 1, member b Novel N 0.00822535259352384 -0.1787841669101297 1.0 5586 +60363 Cldn15 claudin 15 Novel U 0.008217231656046015 -0.17886828331356355 1.0 5587 +246177 Myo1g myosin IG Novel U 0.008215585429590739 -0.17888533487307054 1.0 5588 +211329 Ncoa7 nuclear receptor coactivator 7 Novel N 0.008210865224816247 -0.17893422659895636 1.0 5589 +258867 Or2y3 olfactory receptor family 2 subfamily Y member 3 Novel U 0.008209462874676407 -0.17894875209560507 1.0 5590 +140494 Atp6v0a4 ATPase, H+ transporting, lysosomal V0 subunit A4 Novel N 0.008209377072158889 -0.17894964083526085 1.0 5591 +18390 Oprm1 opioid receptor, mu 1 Novel U 0.008205821053353008 -0.17898647396115439 1.0 5592 +258435 Or1e23 olfactory receptor family 1 subfamily E member 23 Novel U 0.008204438379086604 -0.17900079565575283 1.0 5593 +56207 Uchl5 ubiquitin carboxyl-terminal esterase L5 Novel U 0.008203061335259694 -0.17901505903044407 1.0 5594 +230316 Megf9 multiple EGF-like-domains 9 Novel U 0.008202206450062487 -0.1790239139032139 1.0 5595 +11785 Apbb1 amyloid beta precursor protein binding family B member 1 Novel U 0.00819945775545901 -0.17905238479155824 1.0 5596 +67604 Get4 golgi to ER traffic protein 4 Novel U 0.008196647872219869 -0.17908148946977934 1.0 5597 +17309 Mgat3 mannoside acetylglucosaminyltransferase 3 Novel N 0.008191825397237328 -0.17913144050711816 1.0 5598 +100042149 Gm3696 predicted gene 3696 Novel U 0.008187454442375997 -0.17917671471388444 1.0 5599 +73259 Cib4 calcium and integrin binding family member 4 Novel U 0.008185595222902456 -0.17919597244807287 1.0 5600 +235584 Dusp7 dual specificity phosphatase 7 Novel U 0.008183004584491563 -0.1792228061955702 1.0 5601 +320661 D5Ertd579e DNA segment, Chr 5, ERATO Doi 579, expressed Novel U 0.008182436381507284 -0.17922869162340274 1.0 5602 +258828 Or2n1b olfactory receptor family 2 subfamily N member 1B Novel U 0.008181292067744017 -0.17924054438774537 1.0 5603 +209224 Enox2 ecto-NOX disulfide-thiol exchanger 2 Novel N 0.008180684058357451 -0.17924684212898417 1.0 5604 +102926 Atg4a-ps autophagy related 4A, pseudogene Novel U 0.00817877509127491 -0.1792666151472712 1.0 5605 +93898 Cers1 ceramide synthase 1 Novel U 0.008176844339217428 -0.17928661381361255 1.0 5606 +235106 Ntm neurotrimin Novel N 0.008176781619378674 -0.17928726346364057 1.0 5607 +218460 Wdr41 WD repeat domain 41 Novel U 0.008175443815196463 -0.17930112039538196 1.0 5608 +19989 Rpl7 ribosomal protein L7 Novel U 0.008174377276325327 -0.1793121675699486 1.0 5609 +76132 Faxc failed axon connections homolog Novel U 0.008173579798291931 -0.17932042782120286 1.0 5610 +547431 Btnl2 butyrophilin-like 2 Novel U 0.008167450886652378 -0.17938391088648822 1.0 5611 +18358 Or7e165 olfactory receptor family 7 subfamily E member 165 Novel U 0.008167335216727127 -0.17938510899177154 1.0 5612 +100038909 Pira12 paired-Ig-like receptor A12 Novel U 0.00816406104874339 -0.17941902271611462 1.0 5613 +75747 Sesn3 sestrin 3 Novel N 0.008163512870603405 -0.1794247007272682 1.0 5614 +19652 Rbm3 RNA binding motif (RNP1, RRM) protein 3 Novel U 0.008160075323510315 -0.17946030672705515 1.0 5615 +258722 Or51aa5 olfactory receptor family 51 subfamily AA member 5 Novel U 0.008156584820526521 -0.1794964612422172 1.0 5616 +226971 Plekhb2 pleckstrin homology domain containing, family B (evectins) member 2 Novel U 0.008156002466631649 -0.1795024932447164 1.0 5617 +15185 Hdac6 histone deacetylase 6 Novel U 0.008155831621576546 -0.17950426285218093 1.0 5618 +102141 Snx25 sorting nexin 25 Novel U 0.008146274159701357 -0.17960325872809954 1.0 5619 +97487 Cmtm4 CKLF-like MARVEL transmembrane domain containing 4 Novel U 0.008144766499881244 -0.17961887501895463 1.0 5620 +72446 Prr5l proline rich 5 like Novel U 0.008141477930619806 -0.17965293791125866 1.0 5621 +75697 C2cd4b C2 calcium-dependent domain containing 4B Novel U 0.00814124298498125 -0.17965537147045943 1.0 5622 +56384 Letm1 leucine zipper-EF-hand containing transmembrane protein 1 Novel U 0.008137504096570148 -0.17969409875371228 1.0 5623 +217306 Cd300e CD300E molecule Novel U 0.008136005042591156 -0.17970962590554793 1.0 5624 +74069 Serpina3a serine (or cysteine) peptidase inhibitor, clade A, member 3A Novel U 0.008130868969332438 -0.17976282518352243 1.0 5625 +68498 Tspan11 tetraspanin 11 Novel U 0.008129664865495705 -0.17977529725148053 1.0 5626 +14744 Gpr65 G-protein coupled receptor 65 Novel U 0.008129156782587937 -0.17978055995753686 1.0 5627 +19752 Rnase1 ribonuclease, RNase A family, 1 (pancreatic) Novel N 0.008127778787080625 -0.17979483318970244 1.0 5628 +140795 P2ry14 purinergic receptor P2Y, G-protein coupled, 14 Novel U 0.008125477111469652 -0.1798186738700174 1.0 5629 +434197 Fam169b family with sequence similarity 169, member B Novel U 0.008121969068111873 -0.17985501006779656 1.0 5630 +258709 Or10x4 olfactory receptor family 10 subfamily X member 4 Novel U 0.00811875374816575 -0.17988831424610058 1.0 5631 +208628 Kntc1 kinetochore associated 1 Novel N 0.008115776728857691 -0.17991915011422918 1.0 5632 +11515 Adcy9 adenylate cyclase 9 Novel U 0.00811276017751763 -0.17995039545384575 1.0 5633 +246727 Oas3 2'-5' oligoadenylate synthetase 3 Novel U 0.008107308568972772 -0.1800068630359414 1.0 5634 +170719 Oxr1 oxidation resistance 1 Novel N 0.008096983290966798 -0.18011381192610207 1.0 5635 +66101 Ppih peptidyl prolyl isomerase H Novel U 0.008091966579734317 -0.1801657748561326 1.0 5636 +71268 Lrrfip2 leucine rich repeat (in FLII) interacting protein 2 Novel U 0.008089228092253996 -0.18019414001943085 1.0 5637 +245469 Pdzd4 PDZ domain containing 4 Novel U 0.008086837651165165 -0.18021890012964742 1.0 5638 +213391 Rassf4 Ras association (RalGDS/AF-6) domain family member 4 Novel U 0.008086522263507328 -0.1802221669046395 1.0 5639 +12579 Cdkn2b cyclin dependent kinase inhibitor 2B Novel U 0.008086138927821238 -0.18022613748307453 1.0 5640 +12745 Clgn calmegin Novel N 0.008084824636182689 -0.1802397508726616 1.0 5641 +79201 Tnfrsf23 tumor necrosis factor receptor superfamily, member 23 Novel U 0.008084234735139558 -0.18024586104827442 1.0 5642 +23829 C1ql1 complement component 1, q subcomponent-like 1 Novel U 0.008078547450375999 -0.18030476975689597 1.0 5643 +100043254 Nps neuropeptide S Novel U 0.008078382615667753 -0.18030647710938533 1.0 5644 +257665 Or4x15 olfactory receptor family 4 subfamily X member 15 Novel U 0.008070700435138191 -0.18038604888277243 1.0 5645 +29812 Ndrg3 N-myc downstream regulated gene 3 Novel U 0.008067784165770663 -0.1804162555050141 1.0 5646 +12014 Bach2 BTB and CNC homology, basic leucine zipper transcription factor 2 Novel U 0.008058092523017557 -0.18051664122205519 1.0 5647 +668940 Myh7b myosin, heavy chain 7B, cardiac muscle, beta Novel U 0.00805809214745573 -0.18051664511211227 1.0 5648 +13058 Cybb cytochrome b-245, beta polypeptide Novel U 0.00805621321831097 -0.1805361069984272 1.0 5649 +258620 Or1j4 olfactory receptor family 1 subfamily J member 4 Novel U 0.008054193361852424 -0.18055702860522563 1.0 5650 +214639 4930486L24Rik RIKEN cDNA 4930486L24 gene Novel U 0.00805312459735435 -0.18056809883276292 1.0 5651 +67313 Inava innate immunity activator Novel U 0.008050991661154116 -0.18059019171580848 1.0 5652 +229317 Eif2a eukaryotic translation initiation factor 2A Novel N 0.008050550936760803 -0.18059475672458639 1.0 5653 +244882 Tnfaip8l3 tumor necrosis factor, alpha-induced protein 8-like 3 Novel N 0.00804622579789014 -0.1806395563708274 1.0 5654 +69069 Tmem273 transmembrane protein 273 Novel U 0.008043861486988815 -0.1806640458254208 1.0 5655 +18507 Pax5 paired box 5 Novel N 0.008041675830445467 -0.1806866847840472 1.0 5656 +67943 Mesd mesoderm development LRP chaperone Novel U 0.008040142469879996 -0.18070256728237785 1.0 5657 +75590 Dusp9 dual specificity phosphatase 9 Novel N 0.008039023534351498 -0.18071415717979902 1.0 5658 +99439 Duox1 dual oxidase 1 Novel U 0.008036788883715314 -0.1807373036176284 1.0 5659 +102639802 Btnl12 butyrophilin-like 12 Novel U 0.008031677958632986 -0.18079024241161856 1.0 5660 +24030 Mrps12 mitochondrial ribosomal protein S12 Novel U 0.008028369609889618 -0.18082451017914625 1.0 5661 +224762 Trim31 tripartite motif-containing 31 Novel U 0.008025411988428995 -0.18085514512500883 1.0 5662 +19123 Proc protein C Novel U 0.008023628909160524 -0.18087361420145606 1.0 5663 +258023 Or4f14 olfactory receptor family 4 subfamily F member 14 Novel U 0.008018182167887515 -0.18093003136850994 1.0 5664 +77701 Lcn12 lipocalin 12 Novel U 0.008017873847959467 -0.1809332249361892 1.0 5665 +435975 Vmn2r63 vomeronasal 2, receptor 63 Novel U 0.008011133843015496 -0.1810030376858331 1.0 5666 +319772 C130050O18Rik RIKEN cDNA C130050O18 gene Novel U 0.008004132722988257 -0.18107555505692582 1.0 5667 +16859 Lgals9 lectin, galactose binding, soluble 9 Novel U 0.007998593571448089 -0.1811329294064891 1.0 5668 +21752 Tert telomerase reverse transcriptase Novel U 0.007988475568985976 -0.18123773134338025 1.0 5669 +14088 Fancc Fanconi anemia, complementation group C Novel U 0.007985662987134275 -0.18126686397374153 1.0 5670 +68794 Flnc filamin C, gamma Novel U 0.007980479893023314 -0.18132055029215782 1.0 5671 +320560 Dennd5b DENN domain containing 5B Novel U 0.007979209825763034 -0.1813337056070886 1.0 5672 +622307 Albfm1 albumin superfamily member 1 Novel U 0.007976818003150431 -0.181358480027083 1.0 5673 +258501 Or10d1 olfactory receptor family 10 subfamily D member 1 Novel U 0.007974282160301242 -0.18138474620395356 1.0 5674 +258196 Or13g1 olfactory receptor family 13 subfamily G member 1 Novel U 0.007974195367627565 -0.18138564519961434 1.0 5675 +26390 Mapkbp1 mitogen-activated protein kinase binding protein 1 Novel U 0.007972224091867151 -0.18140606360913852 1.0 5676 +234677 Ces4a carboxylesterase 4A Novel U 0.007969026073667573 -0.18143918857652055 1.0 5677 +103963 Rpn1 ribophorin I Novel N 0.007968240261185826 -0.18144732799637428 1.0 5678 +50908 C1s1 complement component 1, s subcomponent 1 Novel U 0.007968106143138533 -0.18144871718669925 1.0 5679 +18854 Pml promyelocytic leukemia Novel U 0.007966002285530337 -0.18147050887464436 1.0 5680 +213649 Arhgef19 Rho guanine nucleotide exchange factor 19 Novel U 0.00795839218323493 -0.18154933406405155 1.0 5681 +432478 Tmprss9 transmembrane protease, serine 9 Novel U 0.007953856324320215 -0.18159631634158185 1.0 5682 +11636 Ak1 adenylate kinase 1 Novel N 0.007951039920830773 -0.18162548855634122 1.0 5683 +22235 Ugdh UDP-glucose dehydrogenase Novel U 0.007951003695627429 -0.1816258637758066 1.0 5684 +30055 Timm13 translocase of inner mitochondrial membrane 13 Novel U 0.00794437372578694 -0.1816945367854659 1.0 5685 +56442 Serinc1 serine incorporator 1 Novel U 0.007940876387269997 -0.18173076210285558 1.0 5686 +72749 Tonsl tonsoku-like, DNA repair protein Novel U 0.007939705881949076 -0.18174288615849135 1.0 5687 +67267 Uqcc2 ubiquinol-cytochrome c reductase complex assembly factor 2 Novel N 0.007937803551583564 -0.18176259043388163 1.0 5688 +66667 Hspbap1 Hspb associated protein 1 Novel U 0.007937698766636029 -0.18176367579292357 1.0 5689 +22223 Uchl1 ubiquitin carboxy-terminal hydrolase L1 Novel U 0.007934518345982307 -0.18179661848550413 1.0 5690 +258460 Or2y1e olfactory receptor family 2 subfamily Y member 1E Novel U 0.007933647740127035 -0.1818056361923334 1.0 5691 +55979 Agpat1 1-acylglycerol-3-phosphate O-acyltransferase 1 Novel U 0.007930059641337481 -0.18184280160164318 1.0 5692 +229589 Prune1 prune exopolyphosphatase Novel U 0.007912591012214488 -0.18202374108784894 1.0 5693 +258623 Or2g1 olfactory receptor family 2 subfamily G member 1 Novel U 0.007910116133571737 -0.1820493757994733 1.0 5694 +105243 Slc9a3 solute carrier family 9 (sodium/hydrogen exchanger), member 3 Novel U 0.007908744660147004 -0.1820635814761219 1.0 5695 +22247 Umps uridine monophosphate synthetase Novel U 0.007904614133938217 -0.18210636533080882 1.0 5696 +217944 Rapgef5 Rap guanine nucleotide exchange factor (GEF) 5 Novel U 0.007903026973748844 -0.18212280508387527 1.0 5697 +319293 Gpr141b G protein-coupled receptor 141B Novel U 0.007901278924062907 -0.18214091132505814 1.0 5698 +103135 Pan2 PAN2 poly(A) specific ribonuclease subunit Novel N 0.007899634959793194 -0.18215793945292139 1.0 5699 +19227 Pthlh parathyroid hormone-like peptide Novel N 0.007898946737129556 -0.18216506804064728 1.0 5700 +68188 Sympk symplekin Novel U 0.007895429150242703 -0.18220150308998687 1.0 5701 +69195 Tmem121 transmembrane protein 121 Novel U 0.00789493172357382 -0.18220665541907113 1.0 5702 +20042 Rps12 ribosomal protein S12 Novel U 0.007888242478627327 -0.18227594239832984 1.0 5703 +20208 Saa1 serum amyloid A 1 Novel U 0.00788596090826535 -0.1822995748291366 1.0 5704 +58988 Rps6kb2 ribosomal protein S6 kinase, polypeptide 2 Novel N 0.007885693176594998 -0.1823023479849769 1.0 5705 +258067 Or2b2 olfactory receptor family 2 subfamily B member 2 Novel U 0.007884828769484232 -0.18231130148541436 1.0 5706 +20589 Ighmbp2 immunoglobulin mu DNA binding protein 2 Novel U 0.007873067042554333 -0.18243312906630832 1.0 5707 +18725 Pira2 paired-Ig-like receptor A2 Novel U 0.007870580394827919 -0.18245888568171437 1.0 5708 +29849 Or13c7d olfactory receptor family 13 subfamily C member 7D Novel U 0.007868869908045159 -0.182476602847581 1.0 5709 +237253 Lrp11 low density lipoprotein receptor-related protein 11 Novel U 0.007864515608651017 -0.1825217045375656 1.0 5710 +214552 Cep164 centrosomal protein 164 Novel U 0.007864020697142517 -0.18252683081470134 1.0 5711 +20741 Sptb spectrin beta, erythrocytic Novel U 0.00786053827018359 -0.1825629016786633 1.0 5712 +237782 Smcr8 Smith-Magenis syndrome chromosome region, candidate 8 homolog (human) Novel U 0.007855976329707208 -0.1826101541081519 1.0 5713 +382097 Gm1123 predicted gene 1123 Novel U 0.007854492357670445 -0.18262552504172577 1.0 5714 +258310 Or8b8 olfactory receptor family 8 subfamily B member 8 Novel U 0.007852156922847423 -0.18264971539884933 1.0 5715 +18357 Or7a41 olfactory receptor family 7 subfamily A member 41 Novel U 0.007851988946908596 -0.1826514552881018 1.0 5716 +66889 Rnf128 ring finger protein 128 Novel U 0.00785101941799737 -0.18266149763669273 1.0 5717 +238725 Gpr150 G protein-coupled receptor 150 Novel U 0.00784921890769153 -0.18268014726325205 1.0 5718 +73284 Ddit4l DNA-damage-inducible transcript 4-like Novel U 0.00784739871598442 -0.1826990007491187 1.0 5719 +224129 Adcy5 adenylate cyclase 5 Novel U 0.007843144169839038 -0.18274306919823188 1.0 5720 +94092 Trim16 tripartite motif-containing 16 Novel U 0.00784235273769923 -0.18275126682631912 1.0 5721 +54402 Stk19 serine/threonine kinase 19 Novel U 0.007841157333390306 -0.18276364878485413 1.0 5722 +258423 Or10g1 olfactory receptor family 10 subfamily G member 1 Novel U 0.0078392563963931 -0.1827833386277813 1.0 5723 +257931 Or2w3b olfactory receptor family 2 subfamily W member 3B Novel U 0.00783709356254865 -0.18280574118964274 1.0 5724 +27058 Srp9 signal recognition particle 9 Novel U 0.007835736365566481 -0.1828197989913686 1.0 5725 +12424 Cck cholecystokinin Novel U 0.007832735317580981 -0.1828508837477483 1.0 5726 +100042807 Eif3j2 eukaryotic translation initiation factor 3, subunit J2 Novel U 0.007825607959784677 -0.18292470868550312 1.0 5727 +239273 Abcc4 ATP-binding cassette, sub-family C member 4 Novel U 0.007824564513459581 -0.18293551666823699 1.0 5728 +541307 Ccl26 C-C motif chemokine ligand 26 Novel U 0.007815492607485156 -0.18302948317209727 1.0 5729 +16988 Lst1 leukocyte specific transcript 1 Novel U 0.007812578210920433 -0.18305967039590906 1.0 5730 +81018 Rnf114 ring finger protein 114 Novel U 0.00781042082305533 -0.18308201654849549 1.0 5731 +19245 Ptp4a3 protein tyrosine phosphatase 4a3 Novel U 0.007806151857553951 -0.18312623435282407 1.0 5732 +66140 Ska2 spindle and kinetochore associated complex subunit 2 Novel U 0.007805731099045357 -0.18313059255562442 1.0 5733 +72061 Aopep aminopeptidase O Novel N 0.007803676130889195 -0.1831518778482325 1.0 5734 +19212 Pter phosphotriesterase related Novel U 0.007802411549979857 -0.18316497633572054 1.0 5735 +16433 Cuzd1 CUB and zona pellucida-like domains 1 Novel U 0.007797862594426389 -0.18321209426780452 1.0 5736 +75619 Fastkd2 FAST kinase domains 2 Novel N 0.007795491574609174 -0.18323665321312815 1.0 5737 +78798 Eml4 echinoderm microtubule associated protein like 4 Novel U 0.007793985640829651 -0.18325225162571154 1.0 5738 +382056 Crtc1 CREB regulated transcription coactivator 1 Novel N 0.0077924239755413054 -0.18326842730343126 1.0 5739 +21991 Tpi1 triosephosphate isomerase 1 Novel N 0.007792398957791163 -0.18326868643646485 1.0 5740 +66525 Timm50 translocase of inner mitochondrial membrane 50 Novel N 0.007789387006024755 -0.18329988413384868 1.0 5741 +14179 Fgf8 fibroblast growth factor 8 Novel U 0.007788772170374334 -0.18330625258130412 1.0 5742 +64136 Sdf2l1 stromal cell-derived factor 2-like 1 Novel U 0.0077886190615008444 -0.18330783847798252 1.0 5743 +242083 Ppm1l protein phosphatase 1 (formerly 2C)-like Novel N 0.007783938263911568 -0.18335632202553936 1.0 5744 +67067 Romo1 reactive oxygen species modulator 1 Novel U 0.00778141936330858 -0.18338241271518071 1.0 5745 +108099 Prkag2 protein kinase, AMP-activated, gamma 2 non-catalytic subunit Novel U 0.007778121156485058 -0.18341657543303605 1.0 5746 +11803 Aplp1 amyloid beta precursor like protein 1 Novel U 0.007777215300653954 -0.1834259582579562 1.0 5747 +67035 Dnajb4 DnaJ heat shock protein family (Hsp40) member B4 Novel U 0.007775142127977759 -0.18344743211238435 1.0 5748 +101497 Plekhg2 pleckstrin homology domain containing, family G (with RhoGef domain) member 2 Novel U 0.00776927444544033 -0.18350820937521736 1.0 5749 +15259 Hipk3 homeodomain interacting protein kinase 3 Novel N 0.007767942335269027 -0.18352200732858095 1.0 5750 +18574 Pde1b phosphodiesterase 1B, Ca2+-calmodulin dependent Novel U 0.007767268799164476 -0.1835289837934106 1.0 5751 +19262 Ptpra protein tyrosine phosphatase receptor type A Novel U 0.007759515869889173 -0.18360928837998036 1.0 5752 +228228 Or5t17 olfactory receptor family 5 subfamily T member 17 Novel U 0.0077566048057996825 -0.18363944108612323 1.0 5753 +72503 Bltp2 bridge-like lipid transfer protein family member 2 Novel U 0.0077555093069011614 -0.18365078822770153 1.0 5754 +258233 Or11g25 olfactory receptor family 11 subfamily G member 25 Novel U 0.007755250449807613 -0.18365346946096703 1.0 5755 +17880 Myh11 myosin, heavy polypeptide 11, smooth muscle Novel U 0.00775478299649236 -0.18365831132703972 1.0 5756 +243958 Siglecg sialic acid binding Ig-like lectin G Novel U 0.007752406444989022 -0.18368292756938637 1.0 5757 +13039 Ctsl cathepsin L Novel U 0.007751322699013341 -0.18369415297457625 1.0 5758 +258562 Or9g8 olfactory receptor family 9 subfamily G member 8 Novel U 0.007744173399753338 -0.1837682051812908 1.0 5759 +258581 Or5m5 olfactory receptor family 5 subfamily M member 5 Novel U 0.007731417866418799 -0.1839003265762544 1.0 5760 +67105 Timm21 translocase of inner mitochondrial membrane 21 Novel U 0.007731172501351663 -0.18390286805955386 1.0 5761 +18008 Nes nestin Novel U 0.007730637324705208 -0.18390841140166483 1.0 5762 +27382 Tcl1b5 T cell leukemia/lymphoma 1B, 5 Novel U 0.007729357107423089 -0.18392167185018818 1.0 5763 +242603 Cdcp2 CUB domain containing protein 2 Novel U 0.007728104429337503 -0.1839346470486191 1.0 5764 +74388 Dpp8 dipeptidylpeptidase 8 Novel N 0.007727969616216466 -0.18393604343849507 1.0 5765 +259074 Or7a36 olfactory receptor family 7 subfamily A member 36 Novel U 0.007721614467872284 -0.18400186985612985 1.0 5766 +74838 Naa15 N(alpha)-acetyltransferase 15, NatA auxiliary subunit Novel N 0.007717189280075095 -0.1840477058058629 1.0 5767 +108078 Olr1 oxidized low density lipoprotein (lectin-like) receptor 1 Novel U 0.007710498370270635 -0.1841170100296657 1.0 5768 +319710 Frmd6 FERM domain containing 6 Novel U 0.007707124252826993 -0.18415195902722878 1.0 5769 +242705 E2f2 E2F transcription factor 2 Novel U 0.007707002835860796 -0.1841532166601733 1.0 5770 +268752 Wdfy2 WD repeat and FYVE domain containing 2 Novel N 0.007706770390200376 -0.1841556243246827 1.0 5771 +259097 Or51e1 olfactory receptor family 51 subfamily E member 1 Novel U 0.0077067173935489825 -0.18415617326225564 1.0 5772 +22346 Vhl von Hippel-Lindau tumor suppressor Novel U 0.007706377351923891 -0.1841596954022301 1.0 5773 +19228 Pth1r parathyroid hormone 1 receptor Novel U 0.007701262641171268 -0.18421267340806868 1.0 5774 +77975 Tmem50b transmembrane protein 50B Novel U 0.007696623458740219 -0.1842607259071846 1.0 5775 +56398 Chp1 calcineurin-like EF hand protein 1 Novel U 0.0076963644864969875 -0.18426340833316673 1.0 5776 +218581 Depdc1b DEP domain containing 1B Novel U 0.007691194808202701 -0.18431695569099493 1.0 5777 +12325 Camk2g calcium/calmodulin-dependent protein kinase II gamma Novel U 0.0076909057678041185 -0.18431994956194175 1.0 5778 +15567 Slc6a4 solute carrier family 6 (neurotransmitter transporter, serotonin), member 4 Novel U 0.0076766550840962 -0.1844675576753224 1.0 5779 +70510 Rnf167 ring finger protein 167 Novel U 0.007676587625912324 -0.1844682564049734 1.0 5780 +12959 Cryba4 crystallin, beta A4 Novel N 0.007676503316600209 -0.1844691296780568 1.0 5781 +242443 Grin3a glutamate receptor ionotropic, NMDA3A Novel N 0.007671524687699829 -0.1845206981525433 1.0 5782 +114893 Dcun1d1 defective in cullin neddylation 1 domain containing 1 Novel U 0.0076645908587133355 -0.18459251852524808 1.0 5783 +20692 Sparc secreted acidic cysteine rich glycoprotein Novel U 0.007664147112101374 -0.1845971148380674 1.0 5784 +225594 Gm4841 predicted gene 4841 Novel U 0.00766238963466671 -0.18461531873156167 1.0 5785 +100040635 Pramel3d PRAME like 3D Novel U 0.0076566827636160096 -0.18467443031430156 1.0 5786 +320736 Vstm4 V-set and transmembrane domain containing 4 Novel U 0.0076557845812579815 -0.18468373365763985 1.0 5787 +109658 Txlna taxilin alpha Novel U 0.007652541416659914 -0.18471732624993334 1.0 5788 +14176 Fgf5 fibroblast growth factor 5 Novel U 0.007652152998275005 -0.18472134947479568 1.0 5789 +77976 Nuak1 NUAK family, SNF1-like kinase, 1 Novel N 0.007650233817563778 -0.1847412282855129 1.0 5790 +76681 Trim12a tripartite motif-containing 12A Novel U 0.007648545156171969 -0.1847587193846975 1.0 5791 +17869 Myc myelocytomatosis oncogene Novel U 0.007634539027434671 -0.18490379440573174 1.0 5792 +235505 Cd109 CD109 antigen Novel U 0.0076321236231021725 -0.18492881308440565 1.0 5793 +100126768 Esp31 exocrine gland secreted peptide 31 Novel U 0.007631188392781005 -0.18493850016932822 1.0 5794 +258561 Or9g3 olfactory receptor family 9 subfamily G member 3 Novel U 0.007627183798977911 -0.18497997962029677 1.0 5795 +54217 Rpl36 ribosomal protein L36 Novel N 0.007627164371799485 -0.18498018084637227 1.0 5796 +78232 Trappc6b trafficking protein particle complex 6B Novel N 0.007625839980132838 -0.18499389885171835 1.0 5797 +16650 Kpna6 karyopherin subunit alpha 6 Novel U 0.007620254992886945 -0.18505174796601476 1.0 5798 +231470 Fras1 Fraser extracellular matrix complex subunit 1 Novel U 0.007615071225437937 -0.18510544125884443 1.0 5799 +329934 Foxo6 forkhead box O6 Novel U 0.007614147401666436 -0.18511501019510057 1.0 5800 +258859 Or1f19 olfactory receptor family 1 subfamily F member 19 Novel U 0.007613602986728158 -0.18512064922713456 1.0 5801 +245195 Retnlg resistin like gamma Novel U 0.007611001861662251 -0.18514759159505983 1.0 5802 +332579 Card9 caspase recruitment domain family, member 9 Novel U 0.007607024057959002 -0.18518879355505483 1.0 5803 +74355 Smchd1 SMC hinge domain containing 1 Novel U 0.007606259331430136 -0.18519671456730183 1.0 5804 +14167 Fgf12 fibroblast growth factor 12 Novel U 0.007600956345011629 -0.1852516427262984 1.0 5805 +53902 Rcan3 regulator of calcineurin 3 Novel N 0.007600912561843901 -0.18525209623091043 1.0 5806 +244867 Arhgap20 Rho GTPase activating protein 20 Novel U 0.007600907483120861 -0.18525214883615676 1.0 5807 +257913 Or5t18 olfactory receptor family 5 subfamily T member 18 Novel U 0.007599581293166388 -0.18526588546810904 1.0 5808 +217869 Eif5 eukaryotic translation initiation factor 5 Novel N 0.007598648758161708 -0.18527554463503204 1.0 5809 +71263 Mro maestro Novel U 0.007598351526514487 -0.185278623350663 1.0 5810 +257882 Or2bd2 olfactory receptor family 2 subfamily BD member 2 Novel U 0.0075982657008294595 -0.18527951233028717 1.0 5811 +52028 Bbs1 Bardet-Biedl syndrome 1 Novel U 0.007595120308959276 -0.18531209219587935 1.0 5812 +72000 Lmntd2 lamin tail domain containing 2 Novel U 0.007593947649212107 -0.1853242385669914 1.0 5813 +30935 Tor3a torsin family 3, member A Novel U 0.0075930290276733335 -0.18533375361869198 1.0 5814 +69993 Chn2 chimerin 2 Novel U 0.007591353871293942 -0.18535110483340192 1.0 5815 +27216 Or5g26 olfactory receptor family 5 subfamily G member 26 Novel U 0.007588686064652081 -0.18537873788689888 1.0 5816 +74334 Ranbp10 RAN binding protein 10 Novel U 0.007584946788987221 -0.18541746918131344 1.0 5817 +234695 Carmil2 capping protein regulator and myosin 1 linker 2 Novel U 0.007584836256984729 -0.1854186140681617 1.0 5818 +381903 Alg8 ALG8 alpha-1,3-glucosyltransferase Novel U 0.00758278562460809 -0.18543985445090805 1.0 5819 +114143 Atp6v0b ATPase, H+ transporting, lysosomal V0 subunit B Novel U 0.007580884682164339 -0.18545954435025028 1.0 5820 +278679 Apol7b apolipoprotein L 7b Novel U 0.007578556442324359 -0.18548366018197604 1.0 5821 +13877 Erh ERH mRNA splicing and mitosis factor Novel U 0.007578158085788658 -0.18548778634587756 1.0 5822 +100043216 Gm4297 predicted gene 4297 Novel U 0.0075715491684693525 -0.18555624129421447 1.0 5823 +258882 Or8b12 olfactory receptor family 8 subfamily B member 12 Novel U 0.0075710563502102025 -0.1855613458895422 1.0 5824 +74154 Unkl unkempt family like zinc finger Novel U 0.007569687307308706 -0.18557552639091107 1.0 5825 +22414 Wnt2b wingless-type MMTV integration site family, member 2B Novel U 0.007567643896466838 -0.18559669197323764 1.0 5826 +73024 Emc7 ER membrane protein complex subunit 7 Novel U 0.007566698787735521 -0.1856064813784078 1.0 5827 +12794 Cnih2 cornichon family AMPA receptor auxiliary protein 2 Novel U 0.007564186420481995 -0.18563250439583023 1.0 5828 +19674 Rcvrn recoverin Novel N 0.007560961272398928 -0.1856659103736536 1.0 5829 +213272 Txndc2 thioredoxin domain containing 2 (spermatozoa) Novel U 0.00755842105491263 -0.18569222186287154 1.0 5830 +27385 Magel2 MAGE family member L2 Novel U 0.007552828960072345 -0.18575014459739697 1.0 5831 +258064 Or2ak4 olfactory receptor family 2 subfamily AK member 4 Novel U 0.00755211603248129 -0.1857575290779489 1.0 5832 +226548 Aph1a aph1 homolog A, gamma secretase subunit Novel N 0.007552038106467979 -0.1857583362330331 1.0 5833 +117005 Or5d47 olfactory receptor family 5 subfamily D member 47 Novel U 0.007551698204432005 -0.18576185692714803 1.0 5834 +12957 Cryba1 crystallin, beta A1 Novel N 0.007548112604775574 -0.1857989964505191 1.0 5835 +102032 Smim19 small integral membrane protein 19 Novel U 0.007545597926707506 -0.18582504340328257 1.0 5836 +211612 Ptchd1 patched domain containing 1 Novel N 0.007541107984786222 -0.18587155007410433 1.0 5837 +258158 Or2aj4 olfactory receptor family 2 subfamily AJ member 4 Novel U 0.0075376364705826366 -0.1859075079041052 1.0 5838 +17855 Mvk mevalonate kinase Novel U 0.007536176110867457 -0.1859226342620283 1.0 5839 +14211 Smc2 structural maintenance of chromosomes 2 Novel U 0.007535639179990107 -0.18592819577440525 1.0 5840 +215708 Miga1 mitoguardin 1 Novel U 0.007533591393031164 -0.18594940668440857 1.0 5841 +100041749 Speer4f2 spermatogenesis associated glutamate (E)-rich protein 4f2 Novel U 0.007532186620696584 -0.18596395727007078 1.0 5842 +319217 Vmn2r7 vomeronasal 2, receptor 7 Novel U 0.0075319640577187095 -0.18596626257007923 1.0 5843 +666468 Atg4a autophagy related 4A, cysteine peptidase Novel U 0.007531157164452591 -0.1859746203440045 1.0 5844 +22354 Vipr1 vasoactive intestinal peptide receptor 1 Novel N 0.007521380682285879 -0.18607588482490278 1.0 5845 +414084 Tnip3 TNFAIP3 interacting protein 3 Novel U 0.007520831412192094 -0.1860815741464779 1.0 5846 +108989 Tpr translocated promoter region, nuclear basket protein Novel U 0.007518079491686349 -0.1861100784486119 1.0 5847 +258705 Or1r1 olfactory receptor family 1 subfamily JRmember 1 Novel U 0.007514232690839038 -0.1861499234853316 1.0 5848 +227231 Cps1 carbamoyl-phosphate synthetase 1 Novel U 0.007513126712282753 -0.1861613791748605 1.0 5849 +258851 Or13p5 olfactory receptor family 13 subfamily P member 5 Novel U 0.007510392705812962 -0.18618969792399898 1.0 5850 +12939 Pcdha7 protocadherin alpha 7 Novel U 0.007509005764583548 -0.18620406381566001 1.0 5851 +13511 Dsg2 desmoglein 2 Novel U 0.007504646273738665 -0.18624921927852078 1.0 5852 +209176 Ido2 indoleamine 2,3-dioxygenase 2 Novel N 0.00750169492557566 -0.18627978924577282 1.0 5853 +18189 Nrxn1 neurexin I Novel U 0.0074942575581178625 -0.18635682525341044 1.0 5854 +12161 Bmp6 bone morphogenetic protein 6 Novel U 0.007492943927374893 -0.1863704317974628 1.0 5855 +100043462 Nutf2-ps1 nuclear transport factor 2, pseudogene 1 Novel U 0.007489439562718143 -0.18640672989137763 1.0 5856 +235315 Rnf214 ring finger protein 214 Novel U 0.00748899641096921 -0.18641132004262526 1.0 5857 +624512 Vmn2r33 vomeronasal 2, receptor 33 Novel U 0.0074882621621251595 -0.1864189253680148 1.0 5858 +193385 Ripor2 RHO family interacting cell polarization regulator 2 Novel U 0.007488199941929388 -0.18641956984275726 1.0 5859 +57266 Cxcl14 C-X-C motif chemokine ligand 14 Novel U 0.0074880552124580065 -0.18642106894586408 1.0 5860 +74201 Cep97 centrosomal protein 97 Novel U 0.007475744246957332 -0.18654858552181888 1.0 5861 +258056 Or12j4 olfactory receptor family 12 subfamily J member 4 Novel U 0.007474471096552249 -0.18656177277186217 1.0 5862 +258482 Or11i1 olfactory receptor family 11 subfamily I member 1 Novel U 0.00747442841299568 -0.18656221488673794 1.0 5863 +258921 Or4c101 olfactory receptor family 4 subfamily C member 101 Novel U 0.0074666812800297565 -0.18664245943532573 1.0 5864 +71878 Fam83d family with sequence similarity 83, member D Novel U 0.007463758304641055 -0.18667273551831426 1.0 5865 +94093 Trim33 tripartite motif-containing 33 Novel U 0.0074588232169114504 -0.18672385299478522 1.0 5866 +70078 Nol7 nucleolar protein 7 Novel N 0.007452868847410915 -0.1867855281583324 1.0 5867 +384009 Glipr2 GLI pathogenesis-related 2 Novel U 0.00745270808395815 -0.18678719334089133 1.0 5868 +16348 Invs inversin Novel N 0.007452647109009848 -0.18678782491740142 1.0 5869 +94067 Mrpl43 mitochondrial ribosomal protein L43 Novel U 0.007452575193068051 -0.18678856982036243 1.0 5870 +434246 Trim72 tripartite motif-containing 72 Novel U 0.007450436116386508 -0.18681072630631151 1.0 5871 +258740 Or8g36 olfactory receptor family 8 subfamily G member 36 Novel U 0.007447910463118011 -0.1868368869398402 1.0 5872 +258842 Or8h8 olfactory receptor family 8 subfamily H member 8 Novel U 0.007444575502047113 -0.18687143035698164 1.0 5873 +20379 Sfrp4 secreted frizzled-related protein 4 Novel U 0.007442824781780972 -0.18688956425994652 1.0 5874 +381352 Mamdc4 MAM domain containing 4 Novel U 0.0074417918801687145 -0.18690026302089144 1.0 5875 +14084 Faf1 Fas-associated factor 1 Novel U 0.007433417843442624 -0.18698700101801868 1.0 5876 +386611 Rnf133 ring finger protein 133 Novel U 0.007432478946105537 -0.18699672608577164 1.0 5877 +233575 Pgap2 post-GPI attachment to proteins 2 Novel U 0.007432290721212669 -0.1869986757130244 1.0 5878 +12374 Casr calcium-sensing receptor Novel U 0.007426342179169744 -0.18706029051595724 1.0 5879 +17940 Naip1 NLR family, apoptosis inhibitory protein 1 Novel U 0.007419128260992541 -0.18713501204329192 1.0 5880 +329795 Tmem67 transmembrane protein 67 Novel U 0.007418080627268926 -0.18714586339896203 1.0 5881 +16589 Uhmk1 U2AF homology motif (UHM) kinase 1 Novel U 0.007406898106390589 -0.18726169158261427 1.0 5882 +211223 Vmn2r15 vomeronasal 2, receptor 15 Novel U 0.007401431980278955 -0.18731830953718936 1.0 5883 +19025 Ctsa cathepsin A Novel U 0.007397719857211181 -0.1873567595858959 1.0 5884 +258507 Or11a4 olfactory receptor family 11 subfamily A member 4 Novel U 0.007396613779013929 -0.18736821630750267 1.0 5885 +238875 Gapt Grb2-binding adaptor, transmembrane Novel U 0.007395646527827917 -0.18737823506349072 1.0 5886 +258923 Or1e16 olfactory receptor family 1 subfamily E member 16 Novel U 0.007393982630573525 -0.18739546965655404 1.0 5887 +258307 Or5p68 olfactory receptor family 5 subfamily P member 68 Novel U 0.007390978877802747 -0.1874265824290107 1.0 5888 +20872 Stk16 serine/threonine kinase 16 Novel U 0.007385812169475471 -0.18748009902401824 1.0 5889 +20708 Serpinb6b serine (or cysteine) peptidase inhibitor, clade B, member 6b Novel U 0.00738578311423918 -0.1874803999772006 1.0 5890 +21391 Tbxas1 thromboxane A synthase 1, platelet Novel U 0.007385003873172525 -0.18748847133055282 1.0 5891 +56405 Dusp14 dual specificity phosphatase 14 Novel U 0.007384349540001414 -0.18749524889202918 1.0 5892 +75234 Rnf19b ring finger protein 19B Novel U 0.007384294270331508 -0.18749582137345316 1.0 5893 +16432 Itm2b integral membrane protein 2B Novel N 0.007383257092307259 -0.18750656442933292 1.0 5894 +503550 Klri1 killer cell lectin-like receptor family I member 1 Novel U 0.007382858636718604 -0.1875106916192217 1.0 5895 +26903 Dysf dysferlin Novel U 0.007380555029610926 -0.18753455230591604 1.0 5896 +17130 Smad6 SMAD family member 6 Novel U 0.007378702427674122 -0.18755374149587642 1.0 5897 +268721 Zswim8 zinc finger SWIM-type containing 8 Novel U 0.007378601926484821 -0.1875547824838914 1.0 5898 +259055 Or52r1b olfactory receptor family 52 subfamily R member 1B Novel U 0.007367818129718762 -0.18766648069629605 1.0 5899 +100862398 Rbmyf8 RNA binding motif protein Y-linked family member 8 Novel U 0.007365491051551083 -0.1876905844954583 1.0 5900 +16905 Lmna lamin A Novel U 0.00736250174862291 -0.18772154759692025 1.0 5901 +19274 Ptprm protein tyrosine phosphatase receptor type M Novel U 0.007360618542126651 -0.18774105378790143 1.0 5902 +102640847 Gm17079 predicted gene 17079 Novel U 0.007360422261811096 -0.1877430868529576 1.0 5903 +258036 Or5ac16 olfactory receptor family 5 subfamily AC member 16 Novel U 0.007353418419904663 -0.18781563241718552 1.0 5904 +26360 Angptl2 angiopoietin-like 2 Novel N 0.007353160799098977 -0.18781830084502202 1.0 5905 +100862349 Gm21663 predicted gene, 21663 Novel U 0.007350963954463288 -0.18784105568954107 1.0 5906 +16011 Igfbp5 insulin-like growth factor binding protein 5 Novel N 0.007349943327447128 -0.1878516273106232 1.0 5907 +56378 Arpc3 actin related protein 2/3 complex, subunit 3 Novel U 0.007349868399299364 -0.18785240341391457 1.0 5908 +327743 Ccn6 cellular communication network factor 6 Novel U 0.007347581379360962 -0.18787609229125482 1.0 5909 +258889 Or4k51 olfactory receptor family 4 subfamily K member 51 Novel U 0.007346111393263828 -0.1878913183589257 1.0 5910 +67405 Nts neurotensin Novel U 0.007344644234039003 -0.1879065151459462 1.0 5911 +435350 Serpinb6e serine (or cysteine) peptidase inhibitor, clade B, member 6e Novel U 0.007342887143761946 -0.18792471502927474 1.0 5912 +13665 Eif2s1 eukaryotic translation initiation factor 2, subunit 1 alpha Novel U 0.00734079068717235 -0.18794643005771247 1.0 5913 +229277 Stoml3 stomatin (Epb7.2)-like 3 Novel U 0.007340654378351609 -0.1879478419399968 1.0 5914 +231841 Brat1 BRCA1-associated ATM activator 1 Novel U 0.00733345860121447 -0.18802237556303483 1.0 5915 +56737 Alg2 ALG2 alpha-1,3/1,6-mannosyltransferase Novel N 0.007331192714711822 -0.18804584554094228 1.0 5916 +67512 Agpat2 1-acylglycerol-3-phosphate O-acyltransferase 2 Novel U 0.007327528813202475 -0.18808379611233184 1.0 5917 +26557 Homer2 homer scaffolding protein 2 Novel N 0.007326115998596621 -0.1880984299995755 1.0 5918 +18542 Pcolce procollagen C-endopeptidase enhancer protein Novel N 0.007324500539222262 -0.18811516287466973 1.0 5919 +21859 Timp3 tissue inhibitor of metalloproteinase 3 Novel U 0.007323823733761501 -0.1881221732033835 1.0 5920 +12051 Bcl3 B cell leukemia/lymphoma 3 Novel U 0.007321621338000579 -0.18814498554627526 1.0 5921 +75736 Bcl2l12 BCL2 like 12 Novel U 0.007318950951649394 -0.18817264532031663 1.0 5922 +258661 Or11g7 olfactory receptor family 11 subfamily G member 7 Novel U 0.007318587014362285 -0.1881764149707727 1.0 5923 +11600 Angpt1 angiopoietin 1 Novel U 0.007315940557117934 -0.1882038268879121 1.0 5924 +16430 Stt3a STT3, subunit of the oligosaccharyltransferase complex, homolog A (S. cerevisiae) Novel U 0.007313413386276417 -0.18823000324041228 1.0 5925 +26945 Tpsg1 tryptase gamma 1 Novel U 0.00730613972658937 -0.188305343568342 1.0 5926 +22763 Zfr zinc finger RNA binding protein Novel N 0.007300286061072042 -0.18836597564334162 1.0 5927 +258920 Or4p19 olfactory receptor family 4 subfamily P member 19 Novel U 0.007297448809554675 -0.18839536380128888 1.0 5928 +22218 Sumo1 small ubiquitin-like modifier 1 Novel U 0.007296439506143738 -0.18840581813284032 1.0 5929 +28064 Yipf3 Yip1 domain family, member 3 Novel U 0.007295881959664955 -0.1884115931809392 1.0 5930 +21961 Tns1 tensin 1 Novel U 0.0072944398833078945 -0.18842653016043992 1.0 5931 +545291 Hpse2 heparanase 2 Novel N 0.007291180667675204 -0.1884602890088224 1.0 5932 +18139 Zfp638 zinc finger protein 638 Novel U 0.007288218754474004 -0.18849096840839277 1.0 5933 +226090 Ermp1 endoplasmic reticulum metallopeptidase 1 Novel U 0.007288107769054069 -0.188492117991724 1.0 5934 +15251 Hif1a hypoxia inducible factor 1, alpha subunit Novel U 0.007285007969279959 -0.1885242256158838 1.0 5935 +83433 Trem2 triggering receptor expressed on myeloid cells 2 Novel U 0.007280553634043955 -0.18857036347382997 1.0 5936 +102638913 Gm6619 predicted gene 6619 Novel U 0.00727921546605911 -0.1885842241738271 1.0 5937 +102635385 Gm32742 predicted gene, 32742 Novel U 0.007277774791209958 -0.18859914663655497 1.0 5938 +13497 Drp2 dystrophin related protein 2 Novel U 0.007272586322891393 -0.18865288862083696 1.0 5939 +214444 Cdk5rap2 CDK5 regulatory subunit associated protein 2 Novel U 0.0072724397895170345 -0.18865440640871153 1.0 5940 +243923 Rgs9bp regulator of G-protein signalling 9 binding protein Novel N 0.00727102692160035 -0.18866904084814703 1.0 5941 +107503 Atf5 activating transcription factor 5 Novel U 0.00726881823629224 -0.1886919183379618 1.0 5942 +226744 Cnst consortin, connexin sorting protein Novel U 0.007268293782758095 -0.18869735061042803 1.0 5943 +52864 Slx4 SLX4 structure-specific endonuclease subunit homolog (S. cerevisiae) Novel U 0.0072667116450163246 -0.1887137383411473 1.0 5944 +67013 Oma1 OMA1 zinc metallopeptidase Novel N 0.007264222915369205 -0.18873951652101956 1.0 5945 +50771 Atp9b ATPase, class II, type 9B Novel U 0.007261417570503856 -0.1887685741909141 1.0 5946 +20703 Serpina1d serine (or cysteine) peptidase inhibitor, clade A, member 1D Novel U 0.007260765716771065 -0.1887753260704498 1.0 5947 +258245 Or5m9b olfactory receptor family 5 subfamily M member 9B Novel U 0.007260425954498561 -0.18877884531689934 1.0 5948 +215512 Fam117a family with sequence similarity 117, member A Novel U 0.007260389450979884 -0.1887792234191458 1.0 5949 +68192 Leprotl1 leptin receptor overlapping transcript-like 1 Novel U 0.0072579440457060706 -0.1888045528465836 1.0 5950 +258385 Or5bh3 olfactory receptor family 5 subfamily BH member 3 Novel U 0.007256125596812289 -0.1888233882804471 1.0 5951 +259050 Or52h7 olfactory receptor family 52 subfamily H member 7 Novel U 0.007251461740646623 -0.18887169634929504 1.0 5952 +71962 Castor1 cytosolic arginine sensor for mTORC1 subunit 1 Novel N 0.007251144178478188 -0.1888749856477964 1.0 5953 +258428 Or5g29 olfactory receptor family 5 subfamily G member 29 Novel U 0.007251123509593389 -0.1888751997354257 1.0 5954 +72508 Rps6kb1 ribosomal protein S6 kinase, polypeptide 1 Novel U 0.007250896779164722 -0.18887754820175248 1.0 5955 +258728 Or5p58 olfactory receptor family 5 subfamily P member 58 Novel U 0.007250301190714177 -0.1888837172873443 1.0 5956 +269113 Nup54 nucleoporin 54 Novel N 0.007248184654817738 -0.18890564029658227 1.0 5957 +76846 Rps9 ribosomal protein S9 Novel N 0.007248022977078694 -0.18890731494928842 1.0 5958 +12339 Capn7 calpain 7 Novel U 0.007247207246588677 -0.1889157642588883 1.0 5959 +269862 Or10am5 olfactory receptor family 10 subfamily AM member 5 Novel U 0.007247137445538159 -0.18891648725587498 1.0 5960 +16854 Lgals3 lectin, galactose binding, soluble 3 Novel U 0.007245751901904617 -0.1889308386712839 1.0 5961 +19133 Prph2 peripherin 2 Novel U 0.007242827488566553 -0.18896112964850467 1.0 5962 +57750 Wdr12 WD repeat domain 12 Novel N 0.007239519790681287 -0.18899539067446555 1.0 5963 +231712 Trafd1 TRAF type zinc finger domain containing 1 Novel U 0.007237871402087795 -0.18901246462932905 1.0 5964 +67446 Dusp28 dual specificity phosphatase 28 Novel N 0.007237246427408161 -0.1890189380965158 1.0 5965 +14726 Pdpn podoplanin Novel U 0.0072334250766155185 -0.18905851952240585 1.0 5966 +259087 Or52a33 olfactory receptor family 52 subfamily A member 33 Novel U 0.007232355505441348 -0.18906959810546764 1.0 5967 +23880 Fyb1 FYN binding protein 1 Novel U 0.007231736170051211 -0.18907601316107914 1.0 5968 +269336 Ccdc32 coiled-coil domain containing 32 Novel U 0.007227486593146536 -0.18912003013896042 1.0 5969 +100503605 Hbb-bs hemoglobin, beta adult s chain Novel U 0.007227239675416699 -0.18912258770468912 1.0 5970 +71900 Tmem106b transmembrane protein 106B Novel U 0.007226664550885496 -0.18912854482567712 1.0 5971 +14792 Lpcat3 lysophosphatidylcholine acyltransferase 3 Novel U 0.007222773030642307 -0.18916885306442924 1.0 5972 +319481 Wdr59 WD repeat domain 59 Novel N 0.007213332517977471 -0.18926663758427145 1.0 5973 +23886 Gdf15 growth differentiation factor 15 Novel U 0.00721269727739403 -0.18927321738535233 1.0 5974 +223690 Ankrd54 ankyrin repeat domain 54 Novel U 0.007211088360446741 -0.18928988249420203 1.0 5975 +107449 Unc5b unc-5 netrin receptor B Novel U 0.007210721534257475 -0.18929368206781172 1.0 5976 +11490 Adam15 ADAM metallopeptidase domain 15 Novel U 0.007203279501343024 -0.18937076640009592 1.0 5977 +239336 Rxfp3 relaxin family peptide receptor 3 Novel U 0.007200095760505296 -0.1894037434830333 1.0 5978 +80986 Ckap2 cytoskeleton associated protein 2 Novel U 0.007190336110057047 -0.18950483362154502 1.0 5979 +15439 Hp haptoglobin Novel U 0.007189838615825939 -0.1895099866504366 1.0 5980 +233871 Atxn2l ataxin 2-like Novel N 0.007187162973016691 -0.18953770087069777 1.0 5981 +11556 Adrb3 adrenergic receptor, beta 3 Known P 0.007186752432777431 -0.18954195323300024 1.0 5982 +276829 Smtnl2 smoothelin-like 2 Novel U 0.007185354184340031 -0.1895564362443499 1.0 5983 +12793 Cnih1 cornichon family AMPA receptor auxiliary protein 1 Novel N 0.007185189245591927 -0.1895581446744807 1.0 5984 +22373 Wap whey acidic protein Novel U 0.007184067401540919 -0.18956976469828243 1.0 5985 +19155 Npepps aminopeptidase puromycin sensitive Novel U 0.007182123493044467 -0.18958989963858608 1.0 5986 +257916 Or5m8 olfactory receptor family 5 subfamily M member 8 Novel U 0.007179536937115372 -0.18961669109987123 1.0 5987 +384219 Vmn2r11 vomeronasal 2, receptor 11 Novel U 0.007178760865566039 -0.18962472962346724 1.0 5988 +20607 Sstr3 somatostatin receptor 3 Novel N 0.007175274971819712 -0.1896608363962991 1.0 5989 +30795 Fkbp3 FK506 binding protein 3 Novel U 0.0071750967882128714 -0.18966268201624129 1.0 5990 +22200 Uba3 ubiquitin-like modifier activating enzyme 3 Novel N 0.007174941683496239 -0.18966428858579737 1.0 5991 +94244 Fkbp6 FK506 binding protein 6 Novel U 0.007174558555192599 -0.18966825701617182 1.0 5992 +74132 Rnf6 ring finger protein (C3H2C3 type) 6 Novel U 0.007173059357197399 -0.18968378565972263 1.0 5993 +59288 Dctn5 dynactin 5 Novel U 0.007173052134369126 -0.18968386047354044 1.0 5994 +60613 Kcnq4 potassium voltage-gated channel, subfamily Q, member 4 Novel N 0.007168363602336187 -0.18973242413421043 1.0 5995 +75665 Bicdl1 BICD family like cargo adaptor 1 Novel U 0.0071645687718841 -0.18977173086328483 1.0 5996 +76071 Jakmip1 janus kinase and microtubule interacting protein 1 Novel N 0.007163810319633523 -0.18977958688676352 1.0 5997 +68507 Ppfia4 protein tyrosine phosphatase, receptor type, f polypeptide (PTPRF), interacting protein (liprin), alpha 4 Novel U 0.007162417625074412 -0.18979401237122442 1.0 5998 +404328 Or10ag56 olfactory receptor family 10 subfamily AG member 56 Novel U 0.007159477311909002 -0.18982446803833414 1.0 5999 +74117 Actr3 ARP3 actin-related protein 3 Novel U 0.0071502167473770665 -0.1899203886613313 1.0 6000 +23881 G3bp2 G3BP stress granule assembly factor 2 Novel U 0.007148455184327712 -0.18993863487348825 1.0 6001 +215351 Senp6 SUMO/sentrin specific peptidase 6 Novel U 0.00714828617391553 -0.18994038547778172 1.0 6002 +231887 Pdap1 PDGFA associated protein 1 Novel N 0.007148014527436613 -0.18994319918308042 1.0 6003 +19165 Psen2 presenilin 2 Novel U 0.007147818492218105 -0.18994522970942943 1.0 6004 +59007 Ngly1 N-glycanase 1 Novel U 0.007145075410730628 -0.18997364245730278 1.0 6005 +66853 Pnpla2 patatin-like phospholipase domain containing 2 Novel U 0.007144839947476938 -0.18997608137794406 1.0 6006 +381838 Vmn2r43 vomeronasal 2, receptor 43 Novel U 0.007142848220727352 -0.1899967116181418 1.0 6007 +109115 Supt3 SPT3, SAGA and STAGA complex component Novel N 0.00714060737256584 -0.1900199222497348 1.0 6008 +94091 Trim11 tripartite motif-containing 11 Novel U 0.007139633135216821 -0.19003001336816963 1.0 6009 +94065 Mrpl34 mitochondrial ribosomal protein L34 Novel U 0.0071385136759617 -0.19004160869033393 1.0 6010 +20544 Slc9a1 solute carrier family 9 (sodium/hydrogen exchanger), member 1 Novel U 0.00713424541067857 -0.19008581924182494 1.0 6011 +227682 Trub2 TruB pseudouridine (psi) synthase family member 2 Novel N 0.00712422223846944 -0.19018963893007304 1.0 6012 +258366 Or2a20 olfactory receptor family 2 subfamily A member 2 Novel U 0.007122939527803243 -0.19020292520498666 1.0 6013 +67048 Vma21 VMA21 vacuolar H+-ATPase homolog (S. cerevisiae) Novel N 0.007120468117366761 -0.19022852399304452 1.0 6014 +17159 Man2b1 mannosidase 2, alpha B1 Novel U 0.007108319035307458 -0.19035436378563522 1.0 6015 +11536 Gpr182 G protein-coupled receptor 182 Novel N 0.007106830532519232 -0.19036978164858379 1.0 6016 +76967 2700049A03Rik RIKEN cDNA 2700049A03 gene Novel U 0.007104456945954569 -0.1903943671801931 1.0 6017 +230935 Dnajc11 DnaJ heat shock protein family (Hsp40) member C11 Novel N 0.007097168559542929 -0.19046986004705205 1.0 6018 +102075 Plekhg4 pleckstrin homology domain containing, family G (with RhoGef domain) member 4 Novel U 0.007096153804705457 -0.19048037084430033 1.0 6019 +17076 Ly75 lymphocyte antigen 75 Novel N 0.00709276985346298 -0.19051542170002853 1.0 6020 +239528 Ago2 argonaute RISC catalytic subunit 2 Novel U 0.0070922498748323065 -0.19052080762159165 1.0 6021 +20167 Rtn2 reticulon 2 (Z-band associated protein) Novel N 0.007089646697555601 -0.19054777124624891 1.0 6022 +21982 Tmem165 transmembrane protein 165 Novel U 0.007087729632811348 -0.19056762813984976 1.0 6023 +20556 Slfn2 schlafen 2 Novel U 0.007085622440352649 -0.19058945437006675 1.0 6024 +227619 Man1b1 mannosidase, alpha, class 1B, member 1 Novel U 0.007083606214997934 -0.1906103383660111 1.0 6025 +71970 Zbed5 zinc finger BED-type containing 5 Novel U 0.007082036157100905 -0.19062660097409562 1.0 6026 +79264 Krit1 KRIT1, ankyrin repeat containing Novel U 0.007081532112926497 -0.1906318218470846 1.0 6027 +18167 Npy2r neuropeptide Y receptor Y2 Novel N 0.007080566538422305 -0.19064182323605744 1.0 6028 +381852 Ceacam23 CEA cell adhesion moleculen23 Novel U 0.007078462245981196 -0.19066361942798754 1.0 6029 +64011 Nrgn neurogranin Novel N 0.007077514027282595 -0.19067344104609665 1.0 6030 +258662 Or11g1 olfactory receptor family 11 subfamily G member 1 Novel U 0.007072547886774494 -0.1907248801662265 1.0 6031 +214084 Slc18a2 solute carrier family 18 (vesicular monoamine), member 2 Novel U 0.007072248659579341 -0.19072797955167733 1.0 6032 +19089 Prkcsh protein kinase C substrate 80K-H Novel U 0.0070670965301617835 -0.19078134513881725 1.0 6033 +54563 Nup210 nucleoporin 210 Novel U 0.0070663724474984485 -0.19078884516324116 1.0 6034 +28035 Usp39 ubiquitin specific peptidase 39 Novel N 0.00706338615983538 -0.19081977703268632 1.0 6035 +11838 Arc activity regulated cytoskeletal-associated protein Novel U 0.007063184962290717 -0.19082186103023993 1.0 6036 +269713 Clip2 CAP-GLY domain containing linker protein 2 Novel U 0.00706090111580344 -0.1908455170370777 1.0 6037 +65254 Dpysl5 dihydropyrimidinase-like 5 Novel U 0.007058342631715393 -0.19087201773115606 1.0 6038 +240328 F830016B08Rik RIKEN cDNA F830016B08 gene Novel U 0.007056037454715596 -0.19089589467874135 1.0 6039 +258498 Or10n1 olfactory receptor family 10 subfamily N member 1 Novel U 0.007054587681228737 -0.1909109113848595 1.0 6040 +381270 Marchf4 membrane associated ring-CH-type finger 4 Novel U 0.007053940134500087 -0.1909176186525879 1.0 6041 +70599 Itprid2 ITPR interacting domain containing 2 Novel U 0.007051753845972313 -0.19094026415728824 1.0 6042 +171284 Timd2 T cell immunoglobulin and mucin domain containing 2 Novel U 0.007050743534627938 -0.19095072892898107 1.0 6043 +223254 Farp1 FERM, ARH/RhoGEF and pleckstrin domain protein 1 Novel U 0.007049532520501886 -0.19096327257348877 1.0 6044 +93702 Pcdhgb5 protocadherin gamma subfamily B, 5 Novel U 0.007039752902097648 -0.19106456953943227 1.0 6045 +216749 Nmur2 neuromedin U receptor 2 Novel U 0.007038294753365683 -0.19107967299606388 1.0 6046 +106064 Rimoc1 RAB7A interacting MON1-CCZ1 complex subunit 1 Novel U 0.007037337407879072 -0.19108958914914315 1.0 6047 +18107 Nmt1 N-myristoyltransferase 1 Novel U 0.007033833859798461 -0.19112587878498918 1.0 6048 +320782 Tmem154 transmembrane protein 154 Novel U 0.0070318242990299595 -0.19114669374936857 1.0 6049 +360216 Zranb1 zinc finger, RAN-binding domain containing 1 Novel U 0.007029795061709497 -0.19116771252282636 1.0 6050 +170770 Bbc3 BCL2 binding component 3 Novel N 0.0070290987072144364 -0.19117492533979474 1.0 6051 +233406 Prc1 protein regulator of cytokinesis 1 Novel U 0.007026904629947158 -0.19119765152000284 1.0 6052 +18087 Nktr natural killer tumor recognition sequence Novel N 0.007026615223936933 -0.19120064917794302 1.0 6053 +100041774 Gm10413 predicted gene 10413 Novel U 0.0070158698418915375 -0.19131194949193384 1.0 6054 +232414 Clec9a C-type lectin domain family 9, member a Novel U 0.007014714417557937 -0.19132391733919873 1.0 6055 +665113 Tnik TRAF2 and NCK interacting kinase Novel U 0.007012160567114008 -0.19135037003814365 1.0 6056 +54448 Il36a interleukin 36A Novel U 0.007009758231913188 -0.19137525334718122 1.0 6057 +11640 Akap1 A kinase anchor protein 1 Novel N 0.00700524234150361 -0.19142202879159176 1.0 6058 +140559 Igsf8 immunoglobulin superfamily, member 8 Novel U 0.0070048688563546105 -0.19142589733848742 1.0 6059 +110312 Pmch pro-melanin-concentrating hormone Novel U 0.007004626876345817 -0.19142840375946382 1.0 6060 +75692 Nr2c2ap nuclear receptor 2C2-associated protein Novel U 0.0070002505891286725 -0.1914737331985963 1.0 6061 +70294 Rnf126 ring finger protein 126 Novel U 0.0069967528418159 -0.19150996275027976 1.0 6062 +75610 2010109A12Rik RIKEN cDNA 2010109A12 gene Novel U 0.0069957270081048495 -0.19152058830213636 1.0 6063 +66352 Blzf1 basic leucine zipper nuclear factor 1 Novel U 0.006992764684661839 -0.19155127195097793 1.0 6064 +56183 Nmu neuromedin U Novel N 0.006992538594704705 -0.1915536137833216 1.0 6065 +258701 Or3a1b olfactory receptor family 3 subfamily A member 1B Novel U 0.006987274404382457 -0.19160814009362853 1.0 6066 +74316 Isca2 iron-sulfur cluster assembly 2 Novel N 0.0069855646620181734 -0.19162584954883302 1.0 6067 +258866 Or8k16 olfactory receptor family 8 subfamily K member 16 Novel U 0.006984133903549431 -0.19164066929801862 1.0 6068 +105351 AW209491 expressed sequence AW209491 Novel U 0.00698329372200594 -0.19164937187082662 1.0 6069 +18824 Plp2 proteolipid protein 2 Novel U 0.0069827724698068114 -0.19165477098396994 1.0 6070 +55984 Camkk1 calcium/calmodulin-dependent protein kinase kinase 1, alpha Novel U 0.006981859112971494 -0.19166423150404518 1.0 6071 +212108 Rln3 relaxin 3 Novel U 0.00697863381164909 -0.19169763906911658 1.0 6072 +258815 Or4c113 olfactory receptor family 4 subfamily C member 113 Novel U 0.006978393899435004 -0.19170012407194337 1.0 6073 +108168683 LOC108168683 PRAME family member 8-like Novel U 0.006976066034374914 -0.19172423602171138 1.0 6074 +22306 Vmn2r30 vomeronasal 2, receptor 30 Novel U 0.006972845565858467 -0.19175759352873753 1.0 6075 +14563 Gdf5 growth differentiation factor 5 Novel U 0.006970065456590473 -0.1917863898091442 1.0 6076 +50928 Klrg1 killer cell lectin-like receptor subfamily G, member 1 Novel U 0.006965564655900661 -0.19183300895473346 1.0 6077 +50498 Ebi3 Epstein-Barr virus induced gene 3 Novel U 0.0069623679629509765 -0.19186612019522065 1.0 6078 +84682 Cox4i2 cytochrome c oxidase subunit 4I2 Novel U 0.00696222408131772 -0.19186761051644807 1.0 6079 +20927 Abcc8 ATP-binding cassette, sub-family C member 8 Novel U 0.006961639091983744 -0.19187366981673892 1.0 6080 +76483 Lmf1 lipase maturation factor 1 Novel N 0.006960906451360426 -0.19188125848423096 1.0 6081 +23994 Dazap2 DAZ associated protein 2 Novel N 0.006955633716213534 -0.19193587330155068 1.0 6082 +327951 Cyb5d1 cytochrome b5 domain containing 1 Novel U 0.006954655820878572 -0.1919460023092836 1.0 6083 +18119 Nodal nodal growth differentiation factor Novel U 0.0069545004748789935 -0.19194761137804053 1.0 6084 +67941 Rps27l ribosomal protein S27-like Novel N 0.006951487440747673 -0.19197882028652458 1.0 6085 +100042555 Il11ra3 interleukin 11 receptor subunit alpha 3 Novel U 0.00695012551628108 -0.1919929270553787 1.0 6086 +103768 Tubg2 tubulin, gamma 2 Novel U 0.006946998401107478 -0.19202531761154848 1.0 6087 +22068 Trpc6 transient receptor potential cation channel, subfamily C, member 6 Novel N 0.006945894937994317 -0.1920367472462002 1.0 6088 +72477 Tmem87b transmembrane protein 87B Novel U 0.0069448466577081 -0.1920476052989445 1.0 6089 +11443 Chrnb1 cholinergic receptor nicotinic beta 1 subunit Novel U 0.0069437767338167075 -0.1920586875354397 1.0 6090 +259151 Or8u10 olfactory receptor family 8 subfamily U member 10 Novel U 0.006939387381117584 -0.192104152306405 1.0 6091 +14616 Gja8 gap junction protein, alpha 8 Novel U 0.006934074307960053 -0.19215918494351283 1.0 6092 +17196 Mbp myelin basic protein Novel U 0.006932856875504403 -0.19217179506886753 1.0 6093 +108686 Ccdc88a coiled coil domain containing 88A Novel U 0.0069214031835681715 -0.1922904320334232 1.0 6094 +14585 Gfra1 glial cell line derived neurotrophic factor family receptor alpha 1 Novel U 0.00692059383348858 -0.19229881525494164 1.0 6095 +13615 Edn2 endothelin 2 Novel U 0.006918509330298707 -0.19232040647045798 1.0 6096 +53627 Porcn porcupine O-acyltransferase Novel U 0.006915473912801267 -0.1923518472251125 1.0 6097 +100042653 Vmn2r36 vomeronasal 2, receptor 36 Novel U 0.006913254591562305 -0.19237483488154944 1.0 6098 +228858 Gdap1l1 ganglioside-induced differentiation-associated protein 1-like 1 Novel U 0.006912260552922846 -0.19238513110109967 1.0 6099 +108077 Skic2 SKI2 subunit of superkiller complex Novel U 0.006910884273673979 -0.1923993865563167 1.0 6100 +258497 Or10d4c olfactory receptor family 10 subfamily D member 4C Novel U 0.006907221375402283 -0.19243732673620362 1.0 6101 +66164 Nip7 NIP7, nucleolar pre-rRNA processing protein Novel U 0.0069046576021257 -0.19246388221552296 1.0 6102 +214189 Scgn secretagogin, EF-hand calcium binding protein Novel U 0.00689638526530891 -0.19254956680833288 1.0 6103 +12182 Bst1 bone marrow stromal cell antigen 1 Novel U 0.006896305723759164 -0.19255039069709032 1.0 6104 +243978 Mrgprx2 MAS-related GPR, member X2 Novel U 0.006892440155723947 -0.19259043012372543 1.0 6105 +52187 Rragd Ras-related GTP binding D Novel N 0.00689037169192786 -0.19261185520372823 1.0 6106 +22312 Vmn2r107 vomeronasal 2, receptor 107 Novel U 0.006889919954617659 -0.19261653428393719 1.0 6107 +20964 Syn1 synapsin I Novel U 0.006886764209381714 -0.1926492213893516 1.0 6108 +387352 Tas2r125 taste receptor, type 2, member 125 Novel U 0.006886365854864489 -0.19265334753234578 1.0 6109 +241656 Pak5 p21 (RAC1) activated kinase 5 Novel N 0.006885425768009152 -0.1926630849210897 1.0 6110 +12337 Capn5 calpain 5 Novel U 0.0068798030618690735 -0.19272132472645212 1.0 6111 +232087 Mat2a methionine adenosyltransferase 2A Novel U 0.006879739476982129 -0.19272198333662083 1.0 6112 +13007 Csrp1 cysteine and glycine-rich protein 1 Novel U 0.0068776381179927945 -0.19274374914395392 1.0 6113 +68915 Vars2 valyl-tRNA synthetase 2, mitochondrial Novel N 0.006877486750615379 -0.19274531700227324 1.0 6114 +70381 Tecpr1 tectonin beta-propeller repeat containing 1 Novel U 0.006875862147382394 -0.19276214458915455 1.0 6115 +76890 Memo1 mediator of cell motility 1 Novel U 0.006874158638138815 -0.19277978948189972 1.0 6116 +258449 Or8s10 olfactory receptor family 8 subfamily S member 1 Novel U 0.006873614131936873 -0.19278542945923974 1.0 6117 +109136 Mmaa methylmalonic aciduria (cobalamin deficiency) type A Novel U 0.006873411543124442 -0.19278752786749917 1.0 6118 +404321 Or6c206 olfactory receptor family 6 subfamily C member 206 Novel U 0.006873296896854009 -0.19278871536979952 1.0 6119 +24100 Tpra1 transmembrane protein, adipocyte asscociated 1 Novel N 0.006872348493310524 -0.19279853890252582 1.0 6120 +241062 Pgap1 post-GPI attachment to proteins 1 Novel U 0.006871744649774448 -0.19280479349402221 1.0 6121 +230784 Sesn2 sestrin 2 Novel U 0.006870354413576453 -0.19281919351485952 1.0 6122 +18552 Pcsk5 proprotein convertase subtilisin/kexin type 5 Novel U 0.0068694182190996815 -0.19282889058647418 1.0 6123 +74482 Ifitm7 interferon induced transmembrane protein 7 Novel U 0.006867565296770625 -0.192848083095047 1.0 6124 +668208 Gm13288 predicted gene 13288 Novel U 0.006867527628394988 -0.19284847326284357 1.0 6125 +77582 Mboat7 membrane bound O-acyltransferase domain containing 7 Novel U 0.006862711559142833 -0.19289835794983765 1.0 6126 +106869 Tnfaip8 tumor necrosis factor, alpha-induced protein 8 Novel N 0.006862121263509602 -0.19290447221260174 1.0 6127 +13667 Eif2b4 eukaryotic translation initiation factor 2B, subunit 4 delta Novel U 0.0068611566673224085 -0.19291446346819927 1.0 6128 +22791 Dnajc2 DnaJ heat shock protein family (Hsp40) member C2 Novel U 0.00685906721062106 -0.19293610599202468 1.0 6129 +224640 Lemd2 LEM domain containing 2 Novel U 0.006856494019520732 -0.19296275902085275 1.0 6130 +17986 Ndp Norrie disease (pseudoglioma) (human) Novel U 0.0068527430298659 -0.1930016116483904 1.0 6131 +75705 Eif4b eukaryotic translation initiation factor 4B Novel N 0.00685056402087476 -0.19302418175188954 1.0 6132 +19881 Rom1 rod outer segment membrane protein 1 Novel N 0.0068492662218820645 -0.19303762431119303 1.0 6133 +29869 Ulk2 unc-51 like kinase 2 Novel U 0.006844844283263909 -0.1930834266060365 1.0 6134 +67923 Eloc elongin C Novel N 0.006839860968954262 -0.19313504361183817 1.0 6135 +74025 Nphp3 nephronophthisis 3 (adolescent) Novel U 0.006838723016856211 -0.1931468304822616 1.0 6136 +637021 Vmn2r124 vomeronasal 2, receptor 124 Novel U 0.00683569096759654 -0.19317823634882006 1.0 6137 +245537 Nlgn3 neuroligin 3 Novel U 0.006835030802521103 -0.19318507431696966 1.0 6138 +56707 Zfp111 zinc finger protein 111 Novel U 0.006834709639510575 -0.19318840091287506 1.0 6139 +65111 Dap3 death associated protein 3 Novel N 0.0068321687622103725 -0.1932147192364237 1.0 6140 +56533 Rgs17 regulator of G-protein signaling 17 Novel N 0.006830042865657501 -0.19323673920303328 1.0 6141 +433182 Eno1b enolase 1B, retrotransposed Novel U 0.006826820606777952 -0.1932701152545816 1.0 6142 +258218 Or12d2 olfactory receptor family 12 subfamily D member 2 Novel U 0.0068265793416074794 -0.19327261427128617 1.0 6143 +258480 Or2g7 olfactory receptor family 2 subfamily G member 7 Novel U 0.006826049734248358 -0.19327809992690206 1.0 6144 +18145 Npc1 NPC intracellular cholesterol transporter 1 Novel U 0.006823841810110602 -0.19330096953253934 1.0 6145 +56709 Dnajb12 DnaJ heat shock protein family (Hsp40) member B12 Novel U 0.006822211326774925 -0.19331785802533102 1.0 6146 +353236 Pcdhac1 protocadherin alpha subfamily C, 1 Novel U 0.006821991972386495 -0.1933201300908755 1.0 6147 +18035 Nfkbia nuclear factor of kappa light polypeptide gene enhancer in B cells inhibitor, alpha Novel U 0.006820493845479468 -0.19333564764013023 1.0 6148 +14160 Lgr5 leucine rich repeat containing G protein coupled receptor 5 Novel U 0.0068165889999887205 -0.19337609390135851 1.0 6149 +353170 Txlng taxilin gamma Novel N 0.006815748444046523 -0.193384800352176 1.0 6150 +100042960 Gm4131 predicted gene 4131 Novel U 0.006815317131839454 -0.19338926786983818 1.0 6151 +231858 Radil Ras association and DIL domains Novel N 0.006811371897253732 -0.19343013247998447 1.0 6152 +16716 Ky kyphoscoliosis peptidase Novel U 0.006805653688881379 -0.19348936149432933 1.0 6153 +66607 Ms4a4d membrane-spanning 4-domains, subfamily A, member 4D Novel U 0.006804331659693333 -0.19350305502919976 1.0 6154 +12167 Bmpr1b bone morphogenetic protein receptor, type 1B Novel U 0.00680336235724325 -0.19351309503211364 1.0 6155 +21825 Thbs1 thrombospondin 1 Novel U 0.006798832416291868 -0.19356001601157427 1.0 6156 +269397 Ss18l1 SS18, nBAF chromatin remodeling complex subunit like 1 Novel U 0.006797394364208169 -0.1935749113077838 1.0 6157 +387565 Cd300c CD300C molecule Novel U 0.006789735919053334 -0.19365423723093975 1.0 6158 +17882 Myh2 myosin, heavy polypeptide 2, skeletal muscle, adult Novel U 0.006789217718851812 -0.19365960473159222 1.0 6159 +56330 Pdcd5 programmed cell death 5 Novel U 0.00678809551372961 -0.19367122849535745 1.0 6160 +11512 Adcy6 adenylate cyclase 6 Novel U 0.006787429320873533 -0.1936781288990608 1.0 6161 +258846 Or5l14 olfactory receptor family 5 subfamily L member 14 Novel U 0.006787428716208845 -0.1936781351621578 1.0 6162 +104069 Sncb synuclein, beta Novel N 0.006786711806333497 -0.19368556089107947 1.0 6163 +258380 Or9a7 olfactory receptor family 9 subfamily A member 7 Novel U 0.006784659441864701 -0.19370681921477945 1.0 6164 +13498 Atn1 atrophin 1 Novel U 0.006781918505927606 -0.19373520973911243 1.0 6165 +17250 Abcc1 ATP-binding cassette, sub-family C member 1 Novel U 0.006781550690436124 -0.1937390195598819 1.0 6166 +68556 Uckl1 uridine-cytidine kinase 1-like 1 Novel N 0.0067809192545229885 -0.19374555995231282 1.0 6167 +217166 Nr1d1 nuclear receptor subfamily 1, group D, member 1 Novel U 0.006779951573132018 -0.1937555831643497 1.0 6168 +223672 Apol9a apolipoprotein L 9a Novel U 0.006779262354178849 -0.19376272207160977 1.0 6169 +259125 Or51a43 olfactory receptor family 51 subfamily A member 43 Novel U 0.006776226382361227 -0.19379416856789453 1.0 6170 +620913 Gm12185 predicted gene 12185 Novel U 0.006775645883127177 -0.19380018135987792 1.0 6171 +19016 Pparg peroxisome proliferator activated receptor gamma Novel U 0.006774256020578314 -0.1938145775104698 1.0 6172 +72776 Sass6 SAS-6 centriolar assembly protein Novel U 0.006767249276625731 -0.19388715313399632 1.0 6173 +18551 Pcsk4 proprotein convertase subtilisin/kexin type 4 Novel N 0.006764904665470348 -0.19391143853926884 1.0 6174 +73149 Clec4a3 C-type lectin domain family 4, member a3 Novel U 0.006764073551234039 -0.1939200471932071 1.0 6175 +19164 Psen1 presenilin 1 Novel U 0.006763381811885796 -0.1939272122066365 1.0 6176 +22192 Ube2m ubiquitin-conjugating enzyme E2M Novel N 0.00676221768089628 -0.19393927023715718 1.0 6177 +230673 Ipo13 importin 13 Novel U 0.006762029713737415 -0.1939412171948096 1.0 6178 +76551 Ccdc6 coiled-coil domain containing 6 Novel U 0.006756187327257553 -0.1940017324419099 1.0 6179 +320299 Iqcb1 IQ calmodulin-binding motif containing 1 Novel N 0.006754701507510742 -0.19401712251400371 1.0 6180 +269955 Rccd1 RCC1 domain containing 1 Novel U 0.0067458937953488755 -0.19410835250703837 1.0 6181 +12345 Capzb capping actin protein of muscle Z-line subunit beta Novel U 0.006743797820878139 -0.1941300625417048 1.0 6182 +192652 Wdr81 WD repeat domain 81 Novel U 0.006741525592663996 -0.19415359820685144 1.0 6183 +233571 P2ry6 pyrimidinergic receptor P2Y, G-protein coupled, 6 Novel U 0.006740507505669595 -0.1941641435184716 1.0 6184 +71027 Tmem30c transmembrane protein 30C Novel U 0.00673889134783913 -0.19418088362815125 1.0 6185 +22682 Zfand5 zinc finger, AN1-type domain 5 Novel U 0.006737185298246653 -0.1941985548337468 1.0 6186 +68971 Tamm41 TAM41 mitochondrial translocator assembly and maintenance homolog Novel N 0.006737114262253569 -0.19419929062222796 1.0 6187 +56030 Tmem131 transmembrane protein 131 Novel U 0.0067365775855287606 -0.1942048495021012 1.0 6188 +20278 Scnn1g sodium channel, nonvoltage-gated 1 gamma Novel U 0.006735945603124763 -0.19421139555506653 1.0 6189 +20200 S100a6 S100 calcium binding protein A6 (calcyclin) Novel N 0.006735266342980321 -0.19421843130931318 1.0 6190 +13864 Nr2f6 nuclear receptor subfamily 2, group F, member 6 Novel N 0.006728888785960417 -0.19428448983527447 1.0 6191 +18670 Abcb4 ATP-binding cassette, sub-family B member 4 Novel U 0.00672768596596778 -0.19429694860521762 1.0 6192 +68280 Larp7-ps La ribonucleoprotein 7, transcriptional regulator, pseudogene Novel U 0.006727484932873816 -0.1942990308993963 1.0 6193 +26381 Esrrg estrogen-related receptor gamma Novel N 0.0067246192164305794 -0.19432871389610998 1.0 6194 +238463 Tubal3 tubulin, alpha-like 3 Novel U 0.006724232919870723 -0.19433271514317818 1.0 6195 +230577 Pars2 prolyl-tRNA synthetase (mitochondrial)(putative) Novel U 0.006724219392241982 -0.19433285526191196 1.0 6196 +234388 Ccdc124 coiled-coil domain containing 124 Novel U 0.0067233313692200165 -0.1943420533751813 1.0 6197 +68519 Eml1 echinoderm microtubule associated protein like 1 Novel N 0.006720526399952004 -0.19437110715465097 1.0 6198 +59004 Pias4 protein inhibitor of activated STAT 4 Novel U 0.006719369001009384 -0.19438309545485122 1.0 6199 +241070 Cmklr2 chemerin chemokine-like receptor 2 Novel U 0.006713396638153823 -0.19444495699297826 1.0 6200 +13175 Dclk1 doublecortin-like kinase 1 Novel N 0.006700017503451259 -0.19458353763041206 1.0 6201 +224576 Vmn2r106 vomeronasal 2, receptor 106 Novel U 0.006699179851124651 -0.1945922140056747 1.0 6202 +208677 Creb3l3 cAMP responsive element binding protein 3-like 3 Novel N 0.006683609331679389 -0.1947534929342355 1.0 6203 +99662 Eps8l3 EPS8-like 3 Novel N 0.006683169296920694 -0.19475805079980066 1.0 6204 +93842 Igsf9 immunoglobulin superfamily, member 9 Novel U 0.006679449470897605 -0.19479658063546515 1.0 6205 +70385 Spdl1 spindle apparatus coiled-coil protein 1 Novel U 0.006678665358802543 -0.1948047024427695 1.0 6206 +13424 Dync1h1 dynein cytoplasmic 1 heavy chain 1 Novel U 0.006676584641875077 -0.19482625444030433 1.0 6207 +258819 Or51i1 olfactory receptor family 51 subfamily I member 1D Novel U 0.0066732803262642805 -0.19486048043277743 1.0 6208 +386649 Nsfl1c NSFL1 (p97) cofactor (p47) Novel U 0.006669616710707548 -0.1948984280422792 1.0 6209 +11908 Atf1 activating transcription factor 1 Novel N 0.006664671837991668 -0.19494964687131633 1.0 6210 +228421 Kif18a kinesin family member 18A Novel U 0.006664127544719861 -0.19495528464313303 1.0 6211 +214895 Lman2l lectin, mannose-binding 2-like Novel U 0.006662191532611469 -0.1949753377929088 1.0 6212 +68743 Anln anillin, actin binding protein Novel U 0.006659795262445828 -0.19500015828051137 1.0 6213 +666002 Vmn2r114 vomeronasal 2, receptor 114 Novel U 0.006652751508221711 -0.19507311725521384 1.0 6214 +74918 Iqca1 IQ motif containing with AAA domain 1 Novel U 0.00665255277740467 -0.1950751757024838 1.0 6215 +29805 Znhit2 zinc finger, HIT domain containing 2 Novel U 0.006651606620691448 -0.19508497596261615 1.0 6216 +100978 Nfxl1 nuclear transcription factor, X-box binding-like 1 Novel U 0.006650801106472384 -0.19509331945241734 1.0 6217 +73301 Ttc29 tetratricopeptide repeat domain 29 Novel N 0.00664947471349095 -0.19510705818731625 1.0 6218 +259002 Or5k1 olfactory receptor family 5 subfamily K member 1 Novel U 0.00664804742564975 -0.19512184198785582 1.0 6219 +244864 Layn layilin Novel U 0.006645818922877016 -0.19514492474631773 1.0 6220 +217109 Utp18 UTP18 small subunit processome component Novel N 0.006645362894550129 -0.19514964827273648 1.0 6221 +53322 Nucb2 nucleobindin 2 Novel U 0.006642033181332287 -0.19518413733278847 1.0 6222 +12494 Cd38 CD38 antigen Novel U 0.006638719412309071 -0.19521846124339667 1.0 6223 +68778 Gucd1 guanylyl cyclase domain containing 1 Novel U 0.006638408845238595 -0.1952216780869033 1.0 6224 +14180 Fgf9 fibroblast growth factor 9 Novel U 0.00663834762643545 -0.1952223121892538 1.0 6225 +70533 Btf3l4 basic transcription factor 3-like 4 Novel U 0.006637136360992715 -0.19523485843689148 1.0 6226 +66346 Ndufb11b NADH:ubiquinone oxidoreductase subunit B11B Novel U 0.006631193462461181 -0.1952964147845188 1.0 6227 +228071 Sestd1 SEC14 and spectrin domains 1 Novel U 0.006630096085334932 -0.1953077813807182 1.0 6228 +544736 Glipr1l3 GLI pathogenesis-related 1 like 3 Novel U 0.006629453136906587 -0.19531444101940318 1.0 6229 +381463 Nr1h5 nuclear receptor subfamily 1, group H, member 5 Novel U 0.006628706276308047 -0.19532217697693113 1.0 6230 +71599 Senp8 SUMO peptidase family member, NEDD8 specific Novel N 0.006628531220147277 -0.19532399020288974 1.0 6231 +258295 Or11h7 olfactory receptor family 11 subfamily H member 7 Novel U 0.006624565854422935 -0.1953650633307081 1.0 6232 +18744 Pja1 praja ring finger ubiquitin ligase 1 Novel U 0.006624198085677894 -0.1953688726672795 1.0 6233 +12153 Bmp1 bone morphogenetic protein 1 Novel U 0.006618565267006686 -0.19542721721790696 1.0 6234 +66443 Tnfaip8l1 tumor necrosis factor, alpha-induced protein 8-like 1 Novel U 0.006618197208000675 -0.1954310295609919 1.0 6235 +317677 C1s2 complement component 1, s subcomponent 2 Novel U 0.006613966189400422 -0.1954748543125661 1.0 6236 +218624 Il31ra interleukin 31 receptor A Novel U 0.006612933905666613 -0.19548554667354637 1.0 6237 +16904 Gzmm granzyme M (lymphocyte met-ase 1) Novel N 0.006608036842798434 -0.1955362702897527 1.0 6238 +17158 Man2a1 mannosidase 2, alpha 1 Novel U 0.00660701556962396 -0.19554684860372135 1.0 6239 +14608 Gpr83 G protein-coupled receptor 83 Novel U 0.006606726263174593 -0.19554984523041347 1.0 6240 +11305 Abca2 ATP-binding cassette, sub-family A member 2 Novel U 0.0066062789962999715 -0.1955544780059977 1.0 6241 +14432 Gap43 growth associated protein 43 Novel U 0.006604696141851322 -0.19557087316034324 1.0 6242 +12515 Cd69 CD69 antigen Novel U 0.006604124260045449 -0.1955767966932889 1.0 6243 +12889 Cplx1 complexin 1 Novel U 0.006602561068965271 -0.19559298817511023 1.0 6244 +258649 Or2a54 olfactory receptor family 2 subfamily A member 54 Novel U 0.0066013717756134415 -0.19560530683655258 1.0 6245 +78826 P2ry10 purinergic receptor P2Y, G-protein coupled 10 Novel U 0.006600941910746583 -0.19560975936271244 1.0 6246 +20555 Slfn1 schlafen 1 Novel U 0.006598628630533893 -0.1956337202431105 1.0 6247 +258342 Or10q1b olfactory receptor family 10 subfamily Q member 1B Novel U 0.006597672181693302 -0.1956436271087598 1.0 6248 +54188 Cpsf4 cleavage and polyadenylation specific factor 4 Novel U 0.006595501186656835 -0.1956661142039799 1.0 6249 +20090 Rps29 ribosomal protein S29 Novel U 0.006595416234591011 -0.19566699413468505 1.0 6250 +258693 Or5b95 olfactory receptor family 5 subfamily B member 95 Novel U 0.006586449331688512 -0.19575987302017808 1.0 6251 +239036 4930596D02Rik RIKEN cDNA 4930596D02 gene Novel U 0.006584775059843244 -0.19577721507291262 1.0 6252 +11990 Atrn attractin Novel U 0.006581280576683639 -0.19581341081460488 1.0 6253 +328699 Gabrr3 gamma-aminobutyric acid type A receptor subunit rho 3 Novel U 0.006580094837016278 -0.19582569266710034 1.0 6254 +81004 Tbl1xr1 transducin (beta)-like 1X-linked receptor 1 Novel U 0.0065797395443757765 -0.19582937277659102 1.0 6255 +110954 Rpl10 ribosomal protein L10 Novel U 0.0065754544278978835 -0.19587375787220343 1.0 6256 +258673 Or4d6 olfactory receptor family 4 subfamily D member 6 Novel U 0.006574264752702724 -0.19588608048876643 1.0 6257 +268759 9930012K11Rik RIKEN cDNA 9930012K11 gene Novel U 0.006573580555057033 -0.1958931673854887 1.0 6258 +18726 Lilra6 leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 6 Novel U 0.006571280569248575 -0.19591699056288475 1.0 6259 +329828 Myorg myogenesis regulating glycosidase (putative) Novel N 0.006571123712069411 -0.1959186152843901 1.0 6260 +54140 Avpr1a arginine vasopressin receptor 1A Novel U 0.006570866269298166 -0.19592128186815172 1.0 6261 +170484 Nphs2 nephrosis 2, podocin Novel U 0.0065697008540309045 -0.19593335320117905 1.0 6262 +195208 Dcdc2a doublecortin domain containing 2a Novel U 0.0065672825641947055 -0.1959584017678054 1.0 6263 +73389 Hbp1 high mobility group box transcription factor 1 Novel U 0.006565780014800933 -0.19597396512503243 1.0 6264 +18769 Pkig protein kinase inhibitor, gamma Novel U 0.006562378720895746 -0.19600919561549085 1.0 6265 +17125 Smad1 SMAD family member 1 Novel U 0.006560740157609302 -0.19602616780014698 1.0 6266 +245381 Sowahd sosondowah ankyrin repeat domain family member D Novel U 0.00655974702466142 -0.19603645463857367 1.0 6267 +26456 Sema4g sema domain, immunoglobulin domain (Ig), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 4G Novel U 0.006555152194446377 -0.19608404773889415 1.0 6268 +100039863 Ccl27al C-C motif chemokine ligand 27A like Novel U 0.006553850328319615 -0.19609753242543862 1.0 6269 +14064 F2rl2 coagulation factor II thrombin receptor like 2 Novel U 0.006543016176069695 -0.1962097522182897 1.0 6270 +232821 Ccdc106 coiled-coil domain containing 106 Novel U 0.006540472923430138 -0.1962360951455253 1.0 6271 +53614 Reck reversion-inducing-cysteine-rich protein with kazal motifs Novel N 0.00653841915976798 -0.19625736796202412 1.0 6272 +56216 Stx1b syntaxin 1B Novel N 0.006538085922679533 -0.19626081962083167 1.0 6273 +106672 Smim29 small integral membrane protein 29 Novel U 0.006537800948832934 -0.19626377137056672 1.0 6274 +67525 Trim62 tripartite motif-containing 62 Novel U 0.0065352245294910995 -0.19629045783741425 1.0 6275 +328234 Rnf182 ring finger protein 182 Novel N 0.006534103491674449 -0.196302069510267 1.0 6276 +259022 Or8k25 olfactory receptor family 8 subfamily K member 25 Novel U 0.0065335691326278535 -0.1963076043837055 1.0 6277 +75329 Atf7ip2 activating transcription factor 7 interacting protein 2 Novel U 0.0065285675394114425 -0.19635941072182259 1.0 6278 +70086 Cysltr2 cysteinyl leukotriene receptor 2 Novel U 0.006527209277035309 -0.1963734795588641 1.0 6279 +57810 Cdon cell adhesion molecule-related/down-regulated by oncogenes Novel U 0.006526217631375747 -0.19638375099200722 1.0 6280 +67948 Fbxo28 F-box protein 28 Novel U 0.006525427433675377 -0.19639193583381132 1.0 6281 +20706 Serpinb9b serine (or cysteine) peptidase inhibitor, clade B, member 9b Novel U 0.0065214318922382514 -0.1964333215206707 1.0 6282 +227699 Nup188 nucleoporin 188 Novel U 0.006519686879972822 -0.19645139630035183 1.0 6283 +227449 Zcchc2 zinc finger, CCHC domain containing 2 Novel U 0.006516886829510188 -0.1964803991309971 1.0 6284 +21983 Tpbg trophoblast glycoprotein Novel U 0.0065136876681321275 -0.1965135359393843 1.0 6285 +21423 Tcf3 transcription factor 3 Novel U 0.0065095106909629314 -0.19655680093159208 1.0 6286 +20610 Sumo3 small ubiquitin-like modifier 3 Novel U 0.006508971913880288 -0.19656238156690276 1.0 6287 +66111 Tmed3 transmembrane p24 trafficking protein 3 Novel U 0.0065072395099315195 -0.19658032575005444 1.0 6288 +22403 Ccn5 cellular communication network factor 5 Novel N 0.006501403340087263 -0.1966407766054475 1.0 6289 +258929 Or6c209 olfactory receptor family 6 subfamily C member 209 Novel U 0.006500559085071393 -0.19664952137114847 1.0 6290 +230103 Npr2 natriuretic peptide receptor 2 Novel U 0.006494344400747005 -0.19671389286708374 1.0 6291 +71939 Apol6 apolipoprotein L 6 Novel U 0.006494247579519887 -0.19671489573817139 1.0 6292 +17314 Mgmt O-6-methylguanine-DNA methyltransferase Novel U 0.00649223222349312 -0.1967357707296454 1.0 6293 +80749 Lrfn1 leucine rich repeat and fibronectin type III domain containing 1 Novel U 0.006487106027653302 -0.19678886769763962 1.0 6294 +14125 Fcer1a Fc receptor, IgE, high affinity I, alpha polypeptide Novel U 0.006486967528362914 -0.19679030226873653 1.0 6295 +17355 Aff1 AF4/FMR2 family, member 1 Novel U 0.006484914838575968 -0.1968115639620712 1.0 6296 +108079 Prkaa2 protein kinase, AMP-activated, alpha 2 catalytic subunit Novel U 0.00648403288431417 -0.1968206992153222 1.0 6297 +668814 Gm9376 predicted gene 9376 Novel U 0.006475985840753546 -0.19690405022799085 1.0 6298 +69785 Ceacam13 CEA cell adhesion molecule 13 Novel U 0.006474255984519255 -0.19692196802199965 1.0 6299 +20481 Ski ski sarcoma viral oncogene homolog (avian) Novel U 0.006468516738667247 -0.19698141494186724 1.0 6300 +52163 Camk1 calcium/calmodulin-dependent protein kinase I Novel U 0.006468041357891016 -0.19698633892032014 1.0 6301 +67203 Nde1 nudE neurodevelopment protein 1 Novel U 0.006464086528447312 -0.19702730291369 1.0 6302 +75050 Kif27 kinesin family member 27 Novel U 0.006463399981022907 -0.19703441414934295 1.0 6303 +69029 Smdt1 single-pass membrane protein with aspartate rich tail 1 Novel N 0.006463110677700159 -0.19703741074364967 1.0 6304 +14174 Fgf3 fibroblast growth factor 3 Novel U 0.006461384966247783 -0.19705528560614363 1.0 6305 +52858 Cdipt CDP-diacylglycerol--inositol 3-phosphatidyltransferase Novel U 0.006460240802899088 -0.19706713681249707 1.0 6306 +217737 Ahsa1 AHA1, activator of heat shock protein ATPase 1 Novel N 0.006459022346577445 -0.19707975754302207 1.0 6307 +17174 Masp1 MBL associated serine protease 1 Novel U 0.006458829947035885 -0.19708175041114878 1.0 6308 +432613 Trim80 tripartite motif-containing 80 Novel U 0.006457806155848783 -0.19709235480660944 1.0 6309 +258155 Or4d10 olfactory receptor family 4 subfamily D member 10 Novel U 0.0064551585583403044 -0.1971197785345672 1.0 6310 +19128 Pros1 protein S (alpha) Novel N 0.006448095526888307 -0.1971929371821623 1.0 6311 +258355 Or52e4 olfactory receptor family 52 subfamily E member 4 Novel U 0.006448043130479555 -0.19719347990244174 1.0 6312 +20788 Srebf2 sterol regulatory element binding factor 2 Novel U 0.006444070630865636 -0.19723462692285382 1.0 6313 +18441 P2ry1 purinergic receptor P2Y, G-protein coupled 1 Novel U 0.006443951050044588 -0.19723586553706723 1.0 6314 +226304 Npbwr1 neuropeptides B/W receptor 1 Novel U 0.006443457317879641 -0.19724097959860115 1.0 6315 +73626 1810009J06Rik RIKEN cDNA 1810009J06 gene Novel U 0.006438715621913022 -0.19729009392954855 1.0 6316 +12283 Cab39 calcium binding protein 39 Novel U 0.006433519282864848 -0.1973439174385891 1.0 6317 +626215 Ccdc196 coiled-coil domain containing 196 Novel U 0.006433322532688391 -0.19734595537044902 1.0 6318 +258814 Or5l13 olfactory receptor family 5 subfamily L member 13 Novel U 0.006429642892350365 -0.19738406896410868 1.0 6319 +22230 Ufd1 ubiquitin recognition factor in ER-associated degradation 1 Novel U 0.006427514385555488 -0.19740611596751909 1.0 6320 +63953 Dusp10 dual specificity phosphatase 10 Novel U 0.006420685991966874 -0.1974768442438386 1.0 6321 +232413 Clec12a C-type lectin domain family 12, member a Novel U 0.006419319323769795 -0.19749100014809715 1.0 6322 +193670 Rnf185 ring finger protein 185 Novel U 0.006418274128459072 -0.19750182624676668 1.0 6323 +18770 Pklr pyruvate kinase liver and red blood cell Novel N 0.006417577400986293 -0.19750904292702604 1.0 6324 +67220 Plekho1 pleckstrin homology domain containing, family O member 1 Novel U 0.006415583547597432 -0.19752969519488348 1.0 6325 +73658 Spns1 SPNS lysolipid transporter 1, lysophospholipid Novel U 0.006411750554899807 -0.19756939720724262 1.0 6326 +56226 Espn espin Novel U 0.00641103949149417 -0.1975767623786233 1.0 6327 +71330 Rcbtb1 regulator of chromosome condensation (RCC1) and BTB (POZ) domain containing protein 1 Novel U 0.006410441778351958 -0.19758295347170152 1.0 6328 +72560 Naalad2 N-acetylated alpha-linked acidic dipeptidase 2 Novel U 0.006407878942279358 -0.19760949924349283 1.0 6329 +214305 Hhipl1 hedgehog interacting protein-like 1 Novel U 0.006406028980245147 -0.19762866108942898 1.0 6330 +59041 Stk25 serine/threonine kinase 25 (yeast) Novel U 0.006405002446259619 -0.19763929389470558 1.0 6331 +381944 Usp17lb ubiquitin specific peptidase 17-like B Novel U 0.006402254790696926 -0.19766775402069967 1.0 6332 +20878 Aurka aurora kinase A Novel U 0.006399443872342353 -0.19769686942061235 1.0 6333 +270151 Nlrx1 NLR family member X1 Novel U 0.00639900088535498 -0.19770145786526516 1.0 6334 +24127 Xrn1 5'-3' exoribonuclease 1 Novel N 0.006396219052259095 -0.1977302720010245 1.0 6335 +258431 Or8g23 olfactory receptor family 8 subfamily G member 23 Novel U 0.006395641318397808 -0.1977362561493677 1.0 6336 +15957 Ifit1 interferon-induced protein with tetratricopeptide repeats 1 Novel U 0.006394170757223243 -0.19775148817367175 1.0 6337 +68338 Golt1a golgi transport 1A Novel U 0.006392862856982416 -0.19776503536137136 1.0 6338 +171225 Vmn1r226 vomeronasal 1 receptor 226 Novel U 0.006392793314642136 -0.19776575567864588 1.0 6339 +66128 Mrps36 mitochondrial ribosomal protein S36 Novel U 0.006392600018794732 -0.19776775783067904 1.0 6340 +17716 ND1 NADH dehydrogenase subunit 1 Novel N 0.006391544244126268 -0.19777869350998828 1.0 6341 +108058 Camk2d calcium/calmodulin-dependent protein kinase II, delta Novel U 0.006386442340740926 -0.19783153885753763 1.0 6342 +19876 Robo1 roundabout guidance receptor 1 Novel U 0.006382616039235211 -0.1978711715627509 1.0 6343 +207798 Gramd1c GRAM domain containing 1C Novel U 0.006379970291367678 -0.19789857613218853 1.0 6344 +18791 Plat plasminogen activator, tissue Novel U 0.006377609710548806 -0.19792302695071048 1.0 6345 +637898 Vmn2r60 vomeronasal 2, receptor 60 Novel U 0.00637454628275265 -0.19795475783511834 1.0 6346 +224703 Marchf2 membrane associated ring-CH-type finger 2 Novel U 0.006374374337524458 -0.19795653883813955 1.0 6347 +14803 Grid1 glutamate receptor, ionotropic, delta 1 Novel U 0.006374335583942651 -0.19795694024646596 1.0 6348 +75901 Dcp1a decapping mRNA 1A Novel N 0.0063723099285651575 -0.19797792191827618 1.0 6349 +258871 Or8c20 olfactory receptor family 8 subfamily C member 20 Novel U 0.006369368069865112 -0.1980083935939829 1.0 6350 +69047 Atp2c2 ATPase, Ca++ transporting, type 2C, member 2 Novel U 0.0063665832538219195 -0.19803723862701236 1.0 6351 +56860 Or52b1 olfactory receptor family 52 subfamily B member 1 Novel U 0.006365741677352253 -0.19804595564841984 1.0 6352 +13548 Dyrk1a dual-specificity tyrosine phosphorylation regulated kinase 1a Novel U 0.006363136637748388 -0.19807293856300062 1.0 6353 +217138 Prr15l proline rich 15-like Novel U 0.006362883583313012 -0.1980755596925235 1.0 6354 +258808 Or51v14 olfactory receptor family 51 subfamily V member 14 Novel U 0.006361033339761199 -0.19809472445440973 1.0 6355 +18127 Nos3 nitric oxide synthase 3, endothelial cell Novel U 0.006352201973573269 -0.19818619945506877 1.0 6356 +27999 Fam3c FAM3 metabolism regulating signaling molecule C Novel U 0.006351427721626612 -0.19819421913128007 1.0 6357 +16157 Il11ra1 interleukin 11 receptor subunit alpha 1 Novel U 0.006349958726218502 -0.19820943493742665 1.0 6358 +57808 Rpl35a ribosomal protein L35A Novel U 0.006347645987509456 -0.19823339020894779 1.0 6359 +677296 Fcrl6 Fc receptor-like 6 Novel U 0.0063465914879604225 -0.19824431268061182 1.0 6360 +69456 Commd10 COMM domain containing 10 Novel U 0.006345691906409107 -0.1982536305167482 1.0 6361 +79401 Spz1 spermatogenic leucine zipper 1 Novel U 0.006344815375948318 -0.1982627095904467 1.0 6362 +15504 Dnajb3 DnaJ heat shock protein family (Hsp40) member B3 Novel U 0.006339133342262409 -0.19832156390857855 1.0 6363 +16796 Lasp1 LIM and SH3 protein 1 Novel U 0.006337300666698835 -0.19834054670182008 1.0 6364 +100042891 Vmn2r47 vomeronasal 2, receptor 47 Novel U 0.0063372044834368105 -0.1983415429648863 1.0 6365 +12827 Col4a2 collagen, type IV, alpha 2 Novel U 0.006332880149499208 -0.19838633427365715 1.0 6366 +20132 Rrh retinal pigment epithelium derived rhodopsin homolog Novel U 0.006328668984946715 -0.19842995337765731 1.0 6367 +20867 Stip1 stress-induced phosphoprotein 1 Novel U 0.0063265822436799285 -0.19845156777510076 1.0 6368 +214133 Tet2 tet methylcytosine dioxygenase 2 Novel U 0.006326153902677858 -0.19845600451711926 1.0 6369 +19655 Rbmx RNA binding motif protein, X chromosome Novel U 0.0063251984255718995 -0.19846590131757316 1.0 6370 +14751 Gpi1 glucose-6-phosphate isomerase 1 Novel U 0.006323694346513111 -0.19848148051902012 1.0 6371 +13711 Elf5 E74-like factor 5 Novel U 0.006321107305468095 -0.19850827700512003 1.0 6372 +192167 Nlgn1 neuroligin 1 Novel U 0.006320965007064718 -0.19850975092730438 1.0 6373 +258267 Or10k2 olfactory receptor family 10 subfamily K member 2 Novel U 0.006319025798026932 -0.19852983719076972 1.0 6374 +56460 Pkp3 plakophilin 3 Novel U 0.006318881135223753 -0.1985313356033295 1.0 6375 +97541 Qars1 glutaminyl-tRNA synthetase 1 Novel U 0.006318859212793735 -0.198531562675139 1.0 6376 +11461 Actb actin, beta Novel U 0.006317344364743575 -0.19854725342144458 1.0 6377 +432516 Myo1a myosin IA Novel U 0.0063141606027618796 -0.19858023072339046 1.0 6378 +29867 Cabp1 calcium binding protein 1 Novel U 0.00631202409253052 -0.19860236062613287 1.0 6379 +258736 Or9q2 olfactory receptor family 9 subfamily Q member 2 Novel U 0.006310614978304921 -0.1986169561849595 1.0 6380 +69524 Esam endothelial cell-specific adhesion molecule Novel U 0.006307709192609177 -0.19864705421767345 1.0 6381 +224572 Vmn2r102 vomeronasal 2, receptor 102 Novel U 0.006306578342589612 -0.19865876752500142 1.0 6382 +102866 Pls3 plastin 3 (T-isoform) Novel N 0.006306456211565676 -0.1986600325541325 1.0 6383 +17129 Smad5 SMAD family member 5 Novel U 0.006306215486342596 -0.19866252597807976 1.0 6384 +625131 Vmn2r87 vomeronasal 2, receptor 87 Novel U 0.006305803121516004 -0.19866679723939784 1.0 6385 +434017 Vmn1r20 vomeronasal 1 receptor 20 Novel U 0.006304133037120741 -0.1986840959186629 1.0 6386 +72016 Tedc2 tubulin epsilon and delta complex 2 Novel U 0.006300380181650222 -0.19872296787225807 1.0 6387 +432763 Prr7 proline rich 7 (synaptic) Novel N 0.00629201451207276 -0.19880961920273482 1.0 6388 +21405 Hnf1a HNF1 homeobox A Novel U 0.00629165347679596 -0.19881335879426354 1.0 6389 +13528 Dtnb dystrobrevin, beta Novel U 0.0062905187212478455 -0.19882511255492785 1.0 6390 +15983 Ifrd2 interferon-related developmental regulator 2 Novel N 0.006289126688171758 -0.19883953118776931 1.0 6391 +20877 Aurkb aurora kinase B Novel U 0.006287324573800823 -0.19885819742918215 1.0 6392 +14943 Gzmf granzyme F Novel U 0.006285775717133991 -0.19887424043562127 1.0 6393 +13537 Dusp2 dual specificity phosphatase 2 Novel N 0.006285354271386751 -0.19887860575681693 1.0 6394 +19663 Rbpms RNA binding protein gene with multiple splicing Novel N 0.006285342427728726 -0.1988787284330374 1.0 6395 +268291 Rnf217 ring finger protein 217 Novel U 0.006284228970812561 -0.1988902615831721 1.0 6396 +233900 Rnf40 ring finger protein 40 Novel N 0.006282138817134112 -0.19891191132626337 1.0 6397 +74468 Hyal5 hyaluronoglucosaminidase 5 Novel U 0.006280490005545066 -0.19892898966250094 1.0 6398 +68292 Stt3b STT3, subunit of the oligosaccharyltransferase complex, homolog B (S. cerevisiae) Novel U 0.006279902329397343 -0.19893507679272027 1.0 6399 +216874 Camta2 calmodulin binding transcription activator 2 Novel N 0.0062711617638775835 -0.19902561128304333 1.0 6400 +100294583 Alkal2 ALK and LTK ligand 2 Novel U 0.006270204042265462 -0.1990355313320183 1.0 6401 +78913 Ltn1 listerin E3 ubiquitin protein ligase 1 Novel U 0.0062695060822269165 -0.1990427607791533 1.0 6402 +69587 Pcgf3 polycomb group ring finger 3 Novel U 0.006262976734559267 -0.1991103915476541 1.0 6403 +24088 Tlr2 toll-like receptor 2 Novel U 0.00625887076197012 -0.1991529210767559 1.0 6404 +19042 Ppm1a protein phosphatase 1A, magnesium dependent, alpha isoform Novel U 0.006258800710386395 -0.19915364666875732 1.0 6405 +64139 Ctsm cathepsin M Novel U 0.0062587098566155115 -0.19915458772912945 1.0 6406 +58799 Crbn cereblon Novel U 0.006257401531297028 -0.19916813931976945 1.0 6407 +93686 Rbfox2 RNA binding protein, fox-1 homolog (C. elegans) 2 Novel U 0.0062571854335758195 -0.19917037765286189 1.0 6408 +16493 Kcna5 potassium voltage-gated channel, shaker-related subfamily, member 5 Novel U 0.006257107155969265 -0.19917118844973733 1.0 6409 +384059 Tlr12 toll-like receptor 12 Novel U 0.006255281022230659 -0.1991901034829709 1.0 6410 +258085 Or5be3 olfactory receptor family 5 subfamily BE member 3 Novel U 0.006255060892566979 -0.19919238357879093 1.0 6411 +15950 Ifi203 interferon activated gene 203 Novel U 0.006253590695759126 -0.19920761182899654 1.0 6412 +100312473 Vmn1r86 vomeronasal 1 receptor 86 Novel U 0.006250662624329923 -0.1992379406966051 1.0 6413 +21990 Tph1 tryptophan hydroxylase 1 Novel U 0.006250284050515414 -0.19924186195173083 1.0 6414 +258266 Or10u3 olfactory receptor family 10 subfamily U member 3 Novel U 0.006247582568607921 -0.1992698438125222 1.0 6415 +18019 Nfatc2 nuclear factor of activated T cells, cytoplasmic, calcineurin dependent 2 Novel U 0.006247353868227932 -0.19927221268354 1.0 6416 +74277 Chic2 cysteine-rich hydrophobic domain 2 Novel U 0.006245107398668363 -0.19929548154138932 1.0 6417 +67434 Ankrd33b ankyrin repeat domain 33B Novel U 0.006242686998701888 -0.1993205519646757 1.0 6418 +223691 Eif3l eukaryotic translation initiation factor 3, subunit L Novel U 0.006242476120775726 -0.19932273623130264 1.0 6419 +258538 Or6c205 olfactory receptor family 6 subfamily C member 205 Novel U 0.006241881837016434 -0.19932889180294538 1.0 6420 +80860 Ghdc GH3 domain containing Novel U 0.006241180150983325 -0.19933615984380962 1.0 6421 +54339 Tes3-ps testis derived transcript 3, pseudogene Novel U 0.006238739920493827 -0.1993614356710016 1.0 6422 +12304 Pdia4 protein disulfide isomerase associated 4 Novel U 0.006238029352091739 -0.19936879571515173 1.0 6423 +258373 Or11l3 olfactory receptor family 11 subfamily L member 3 Novel U 0.00623770427018031 -0.19937216290290385 1.0 6424 +66257 Nicn1 nicolin 1 Novel U 0.006235205580072118 -0.19939804425290447 1.0 6425 +19143 St14 suppression of tumorigenicity 14 (colon carcinoma) Novel U 0.006233042177538379 -0.19942045270523093 1.0 6426 +11928 Atp1a1 ATPase, Na+/K+ transporting, alpha 1 polypeptide Novel U 0.006231896443853742 -0.1994323201770724 1.0 6427 +19317 Qki quaking, KH domain containing RNA binding Novel N 0.006231588899313408 -0.19943550571331123 1.0 6428 +241633 Atp8b4 ATPase, class I, type 8B, member 4 Novel U 0.006224787819639225 -0.19950595107300298 1.0 6429 +107182 Btaf1 B-TFIID TATA-box binding protein associated factor 1 Novel U 0.006222897870511021 -0.1995255271039442 1.0 6430 +211228 Lrrc25 leucine rich repeat containing 25 Novel U 0.006222023445524426 -0.19953458436921015 1.0 6431 +620697 Vmn2r68 vomeronasal 2, receptor 68 Novel U 0.006221431763768056 -0.19954071298939213 1.0 6432 +100041139 Gm3159 predicted gene 3159 Novel U 0.006215784769153451 -0.19959920437397527 1.0 6433 +14652 Glp1r glucagon-like peptide 1 receptor Novel U 0.006215162296566472 -0.1996056519245685 1.0 6434 +66326 Dnajc5b DnaJ heat shock protein family (Hsp40) member C5 beta Novel U 0.006214794206667731 -0.19960946458763937 1.0 6435 +258316 Or4k15 olfactory receptor family 4 subfamily K member 15 Novel U 0.006214516423394253 -0.19961234185765442 1.0 6436 +23922 Jtb jumping translocation breakpoint Novel U 0.006213522058142029 -0.19962264146024897 1.0 6437 +16918 Mycl v-myc avian myelocytomatosis viral oncogene lung carcinoma derived Novel U 0.00620901920614861 -0.19966928185317348 1.0 6438 +100042159 Btbd35f16 BTB domain containing 35, family member 16 Novel U 0.006207905585097117 -0.19968081670341656 1.0 6439 +18314 Or10a4 olfactory receptor family 10 subfamily A member 4 Novel U 0.006205418050416635 -0.19970658250586368 1.0 6440 +628900 Serpina3i serine (or cysteine) peptidase inhibitor, clade A, member 3I Novel U 0.006199365844406175 -0.19976927105676448 1.0 6441 +404323 Or5al6 olfactory receptor family 5 subfamily AL member 6 Novel U 0.006196008857422274 -0.19980404261758872 1.0 6442 +238217 Rpl10l ribosomal protein L10-like Novel N 0.006195778972103325 -0.19980642376216534 1.0 6443 +101056073 Zfp990 zinc finger protein 990 Novel U 0.006193274996678471 -0.19983235985730222 1.0 6444 +100503609 Lnp1 leukemia NUP98 fusion partner 1 Novel U 0.006193149245499815 -0.1998336623838769 1.0 6445 +382243 Gm10439 predicted gene 10439 Novel U 0.006192562320717763 -0.19983974173147526 1.0 6446 +258292 Or2a12 olfactory receptor family 2 subfamily A member 12 Novel U 0.006189854627283232 -0.19986778793105953 1.0 6447 +628398 Ighv6-4 immunoglobulin heavy variable V6-4 Novel U 0.0061844780766442155 -0.19992347806583385 1.0 6448 +258737 Or4f14d olfactory receptor family 4 subfamily F member 14D Novel U 0.006183496484865797 -0.19993364536120664 1.0 6449 +382053 Ces3a carboxylesterase 3A Novel U 0.006182113856620576 -0.19994796657911917 1.0 6450 +13418 Dnajc1 DnaJ heat shock protein family (Hsp40) member C1 Novel U 0.006176025132130734 -0.20001103338722892 1.0 6451 +107817 Jmjd6 jumonji domain containing 6 Novel U 0.006173536550320134 -0.20003681003581542 1.0 6452 +74268 Aven apoptosis, caspase activation inhibitor Novel N 0.006171088567657836 -0.2000621661597584 1.0 6453 +28010 Miip migration and invasion inhibitory protein Novel U 0.006170349100056265 -0.20006982554086677 1.0 6454 +68718 Rnf166 ring finger protein 166 Novel U 0.006169596979117071 -0.2000776159848303 1.0 6455 +105245665 Gm3542 predicted gene 3542 Novel U 0.00616943888041213 -0.20007925356601888 1.0 6456 +73656 Ms4a6c membrane-spanning 4-domains, subfamily A, member 6C Novel U 0.006168510634129215 -0.20008886831050288 1.0 6457 +19951 Rpl32 ribosomal protein L32 Novel U 0.006166368679938522 -0.20011105460159706 1.0 6458 +22003 Tpm1 tropomyosin 1, alpha Novel U 0.006166172767260089 -0.20011308385868 1.0 6459 +74450 Pank2 pantothenate kinase 2 Novel U 0.006163255814906286 -0.20014329755527108 1.0 6460 +77254 Yif1b Yip1 interacting factor homolog B (S. cerevisiae) Novel N 0.006161303751355354 -0.200163516965361 1.0 6461 +207592 Tbc1d16 TBC1 domain family, member 16 Novel U 0.006160468213063782 -0.20017217144351826 1.0 6462 +241308 Ralgps1 Ral GEF with PH domain and SH3 binding motif 1 Novel U 0.00615785628592148 -0.20019922569899573 1.0 6463 +235416 Lman1l lectin, mannose-binding 1 like Novel U 0.006156032139849429 -0.20021812014404447 1.0 6464 +107589 Mylk myosin, light polypeptide kinase Novel U 0.006155009486930353 -0.20022871274936235 1.0 6465 +70247 Psmd1 proteasome (prosome, macropain) 26S subunit, non-ATPase, 1 Novel U 0.0061531545915195825 -0.20024792569505073 1.0 6466 +257963 Or7e166 olfactory receptor family 7 subfamily E member 166 Novel U 0.006150283886760705 -0.20027766036057382 1.0 6467 +101214 Tra2a transformer 2 alpha Novel N 0.0061498830355013485 -0.20028181236474096 1.0 6468 +26388 Ifi202b interferon activated gene 202B Novel U 0.006147850979791879 -0.2003028603309794 1.0 6469 +381534 Ube2u ubiquitin-conjugating enzyme E2U (putative) Novel U 0.006145458091860832 -0.20032764578550727 1.0 6470 +115488204 Smim32 small integral membrane protein 32 Novel U 0.006144779210000075 -0.20033467762150392 1.0 6471 +212986 Scfd2 Sec1 family domain containing 2 Novel U 0.006143286536769938 -0.2003501386817527 1.0 6472 +320706 Mtcl2 microtubule crosslinking factor 2 Novel U 0.00613667943793293 -0.20041857479430977 1.0 6473 +67878 Tmem33 transmembrane protein 33 Novel N 0.006136005687029776 -0.20042555348401625 1.0 6474 +19222 Ptgir prostaglandin I receptor (IP) Novel N 0.006135596324089938 -0.20042979365189 1.0 6475 +12175 Bnip2 BCL2/adenovirus E1B interacting protein 2 Novel U 0.006134765794428861 -0.20043839625081727 1.0 6476 +64058 Perp PERP, TP53 apoptosis effector Novel U 0.006134742615200889 -0.20043863634049863 1.0 6477 +333670 Gm867 predicted gene 867 Novel U 0.006131793463453327 -0.20046918355735174 1.0 6478 +258424 Or10g3 olfactory receptor family 10 subfamily G member 3 Novel U 0.006131377104694141 -0.20047349618769236 1.0 6479 +231798 Lrch4 leucine-rich repeats and calponin homology (CH) domain containing 4 Novel N 0.006129237988111299 -0.20049565308693773 1.0 6480 +11806 Apoa1 apolipoprotein A-I Novel U 0.006121246229634523 -0.20057843145852527 1.0 6481 +231637 Ssh1 slingshot protein phosphatase 1 Novel U 0.006121229411842791 -0.2005786056566592 1.0 6482 +114570 Crip3 cysteine-rich protein 3 Novel U 0.0061201217340294874 -0.20059007894703645 1.0 6483 +19087 Prkar2a protein kinase, cAMP dependent regulatory, type II alpha Novel U 0.006118815413926315 -0.20060360976772215 1.0 6484 +223272 Itgbl1 integrin, beta-like 1 Novel U 0.006115553919890752 -0.20063739221572666 1.0 6485 +71891 Cdadc1 cytidine and dCMP deaminase domain containing 1 Novel N 0.006115126349295135 -0.20064182097790043 1.0 6486 +18322 Or1m1 olfactory receptor family 1 subfamily M member 1 Novel U 0.006114933414587716 -0.2006438193892575 1.0 6487 +238377 Gpr68 G protein-coupled receptor 68 Novel N 0.00611377637163528 -0.2006558040021231 1.0 6488 +98932 Myl9 myosin, light polypeptide 9, regulatory Novel U 0.006113173070940367 -0.20066205297088854 1.0 6489 +15369 Hmox2 heme oxygenase 2 Novel N 0.006110380464701717 -0.2006909786945065 1.0 6490 +17979 Ncoa3 nuclear receptor coactivator 3 Novel U 0.006108220830636015 -0.2007133481131649 1.0 6491 +68018 Cert1 ceramide transporter 1 Novel U 0.0061081889379631105 -0.20071367845642243 1.0 6492 +12323 Camk2b calcium/calmodulin-dependent protein kinase II, beta Novel U 0.006104382693411971 -0.20075310341235958 1.0 6493 +213491 Szrd1 SUZ RNA binding domain containing 1 Novel U 0.006103270006526314 -0.2007646285865436 1.0 6494 +258391 Or4k35 olfactory receptor family 4 subfamily K member 35 Novel U 0.0061028090473281196 -0.2007694031867653 1.0 6495 +16867 Lhcgr luteinizing hormone/choriogonadotropin receptor Novel N 0.006102515780247747 -0.20077244083754314 1.0 6496 +66996 Ceacam11 CEA cell adhesion molecule 11 Novel U 0.006099802356744594 -0.20080054638898984 1.0 6497 +18643 Pfn1 profilin 1 Novel U 0.006096728354294841 -0.20083238680531196 1.0 6498 +624765 Vmn2r80 vomeronasal 2, receptor 80 Novel U 0.006096106688001379 -0.2008388260043435 1.0 6499 +107849 Prl2c5 prolactin family 2, subfamily c, member 5 Novel U 0.006094600284051637 -0.20085442928693453 1.0 6500 +107771 Bmyc brain expressed myelocytomatosis oncogene Novel U 0.006092034629342594 -0.20088100425406946 1.0 6501 +319801 Tigar Trp53 induced glycolysis regulatory phosphatase Novel U 0.006091345913033883 -0.20088813795495478 1.0 6502 +93836 Rnf111 ring finger 111 Novel N 0.00609083990991856 -0.20089337911858932 1.0 6503 +13713 Elk3 ELK3, member of ETS oncogene family Novel N 0.006086864009596117 -0.20093456136342852 1.0 6504 +71790 Anxa9 annexin A9 Novel N 0.006084327923913821 -0.2009608300555564 1.0 6505 +54485 Dll4 delta like canonical Notch ligand 4 Novel U 0.006083989090238415 -0.2009643396836277 1.0 6506 +329502 Pla2g4e phospholipase A2, group IVE Novel U 0.006081601832337378 -0.20098906682248976 1.0 6507 +18383 Tnfrsf11b tumor necrosis factor receptor superfamily, member 11b (osteoprotegerin) Novel U 0.006081317043650589 -0.2009920166543456 1.0 6508 +16578 Kif9 kinesin family member 9 Novel U 0.0060808453829851285 -0.20099690210001345 1.0 6509 +14715 Gnrhr gonadotropin releasing hormone receptor Novel N 0.006079336503196103 -0.2010125310272664 1.0 6510 +67151 Psmd9 proteasome (prosome, macropain) 26S subunit, non-ATPase, 9 Novel N 0.006077220351145507 -0.20103445006064175 1.0 6511 +67158 Sft2d3 SFT2 domain containing 3 Novel U 0.006072195928969735 -0.20108649286036942 1.0 6512 +268390 Ahsa2 AHA1, activator of heat shock protein ATPase 2 Novel U 0.006068204811000442 -0.2011278327290944 1.0 6513 +258231 Or5b116 olfactory receptor family 5 subfamily B member 116 Novel U 0.006067777895464938 -0.20113225470617704 1.0 6514 +103655 Sec14l4 SEC14-like lipid binding 4 Novel U 0.006066668651140192 -0.20114374422242834 1.0 6515 +232345 A2m alpha-2-macroglobulin Novel U 0.0060660298244312955 -0.2011503611684788 1.0 6516 +213556 Plekhh2 pleckstrin homology domain containing, family H (with MyTH4 domain) member 2 Novel U 0.0060624963017020415 -0.2011869612807501 1.0 6517 +69635 Dapk1 death associated protein kinase 1 Novel U 0.006062204858382692 -0.20118998004107122 1.0 6518 +12096 Bglap bone gamma carboxyglutamate protein Novel U 0.006061166572507793 -0.2012007345720316 1.0 6519 +59093 Pcbp3 poly(rC) binding protein 3 Novel U 0.006058444103364305 -0.20122893381792356 1.0 6520 +214048 Larp1b La ribonucleoprotein 1B Novel U 0.006057744974919731 -0.20123617536736982 1.0 6521 +258956 Or13a22 olfactory receptor family 13 subfamily A member 22 Novel U 0.006056207103519863 -0.20125210458877485 1.0 6522 +210973 Kbtbd2 kelch repeat and BTB (POZ) domain containing 2 Novel U 0.00605285985892973 -0.2012867752382047 1.0 6523 +81909 Zfpl1 zinc finger like protein 1 Novel U 0.006051632183507459 -0.20129949145987097 1.0 6524 +14917 Gucy2c guanylate cyclase 2c Novel U 0.006046739721266667 -0.20135016742293005 1.0 6525 +100900 Hscb HscB iron-sulfur cluster co-chaperone Novel U 0.006045870951810491 -0.20135916610839785 1.0 6526 +195727 Nhs NHS actin remodeling regulator Novel N 0.006044427574007601 -0.2013741165682317 1.0 6527 +67847 Sncaip synuclein, alpha interacting protein (synphilin) Novel U 0.006043570842376154 -0.2013829905663067 1.0 6528 +353258 Ltv1 LTV1 ribosome biogenesis factor Novel U 0.006043137112158276 -0.20138748312964536 1.0 6529 +328580 Tubgcp6 tubulin, gamma complex component 6 Novel U 0.006040079256939256 -0.2014191562934824 1.0 6530 +383258 Vmn2r118 vomeronasal 2, receptor 118 Novel U 0.00603296045385749 -0.20149289262178527 1.0 6531 +14913 Guca1a guanylate cyclase activator 1a (retina) Novel N 0.00603182551933973 -0.20150464823621125 1.0 6532 +20239 Atxn2 ataxin 2 Novel U 0.006030566582034067 -0.201517688267438 1.0 6533 +14635 Galk1 galactokinase 1 Novel N 0.00602908950175118 -0.20153298781645174 1.0 6534 +258741 Or8g21 olfactory receptor family 8 subfamily G member 21 Novel U 0.006025222939740909 -0.20157303753864775 1.0 6535 +624866 Lekr1 leucine, glutamate and lysine rich 1 Novel U 0.0060250695632446 -0.20157462620735453 1.0 6536 +68337 Crip2 cysteine rich protein 2 Novel U 0.006024886342795577 -0.20157652399874249 1.0 6537 +74237 Tubgcp2 tubulin, gamma complex component 2 Novel U 0.006024122199526725 -0.20158443896960138 1.0 6538 +277010 Marveld1 MARVEL (membrane-associating) domain containing 1 Novel U 0.006018736135046343 -0.20164022764843187 1.0 6539 +229949 Ak5 adenylate kinase 5 Novel N 0.006010566874763143 -0.20172484457789527 1.0 6540 +18811 Prl2c2 prolactin family 2, subfamily c, member 2 Novel U 0.006007393217187128 -0.20175771721873925 1.0 6541 +74131 Sash3 SAM and SH3 domain containing 3 Novel U 0.006002172198988613 -0.20181179635360774 1.0 6542 +103694 Tmed4 transmembrane p24 trafficking protein 4 Novel U 0.005987198628917342 -0.2019668921001764 1.0 6543 +15184 Hdac5 histone deacetylase 5 Novel U 0.005986841410447673 -0.2019705921573423 1.0 6544 +19385 Ranbp1 RAN binding protein 1 Novel N 0.005983354655051335 -0.20200670785511665 1.0 6545 +100042810 Vmn2r45 vomeronasal 2, receptor 45 Novel U 0.0059818420560753946 -0.20202237530558542 1.0 6546 +110109 Nop2 NOP2 nucleolar protein Novel N 0.005981384255202382 -0.2020271171919787 1.0 6547 +50762 Fbxo6 F-box protein 6 Novel U 0.005977773734062115 -0.2020645148512601 1.0 6548 +22310 Vmn2r42 vomeronasal 2, receptor 42 Novel U 0.005977081878746779 -0.20207168106587284 1.0 6549 +258766 Or5aq7 olfactory receptor family 5 subfamily AQ member 7 Novel U 0.005972621234529152 -0.20211788427204322 1.0 6550 +13617 Ednra endothelin receptor type A Novel U 0.005968799970920324 -0.20215746479488622 1.0 6551 +276770 Eif5a eukaryotic translation initiation factor 5A Novel U 0.005968380875399608 -0.20216180577251275 1.0 6552 +215494 Pomgnt2 protein O-linked mannose beta 1,4-N-acetylglucosaminyltransferase 2 Novel N 0.005963967789891227 -0.20220751636713621 1.0 6553 +21907 Nr2e1 nuclear receptor subfamily 2, group E, member 1 Novel N 0.005963535241635798 -0.2022119966877467 1.0 6554 +11630 Crybg1 crystallin beta-gamma domain containing 1 Novel U 0.005963148007329987 -0.2022160076479566 1.0 6555 +68728 Trp53inp2 transformation related protein 53 inducible nuclear protein 2 Novel U 0.005962166516287338 -0.20222617389991163 1.0 6556 +70008 Ace2 angiotensin converting enzyme 2 Novel U 0.005954722679935976 -0.2023032769121361 1.0 6557 +14260 Fmn1 formin 1 Novel U 0.0059505847072518865 -0.20234613789716935 1.0 6558 +26417 Mapk3 mitogen-activated protein kinase 3 Novel U 0.005950294622283096 -0.20234914258774006 1.0 6559 +100040771 Gm2959 predicted gene 2959 Novel U 0.005945238718813614 -0.20240151146967308 1.0 6560 +12509 Cd59a CD59a antigen Novel U 0.005944769924154988 -0.20240636722933633 1.0 6561 +404330 Or4p23 olfactory receptor family 4 subfamily P member 23 Novel U 0.005943143672474054 -0.2024232118907873 1.0 6562 +54204 Septin1 septin 1 Novel U 0.005941834557619815 -0.20243677165941268 1.0 6563 +18351 Or1ad8 olfactory receptor family 1 subfamily AD member 8 Novel U 0.005941666223229396 -0.20243851526149495 1.0 6564 +67812 Ubxn4 UBX domain protein 4 Novel U 0.005940704316194481 -0.2024484786629416 1.0 6565 +225164 Mib1 MIB E3 ubiquitin protein ligase 1 Novel U 0.005940491445358213 -0.20245068357206594 1.0 6566 +17533 Mrc1 mannose receptor, C type 1 Novel U 0.005933894945806732 -0.20251900989757193 1.0 6567 +20655 Sod1 superoxide dismutase 1, soluble Novel U 0.005928616783993384 -0.20257368092412434 1.0 6568 +574081 Defb46 defensin beta 46 Novel U 0.005928309468090281 -0.20257686409214623 1.0 6569 +329509 1810024B03Rik RIKEN cDNA 1810024B03 gene Novel U 0.00592748105126834 -0.20258544480635518 1.0 6570 +67834 Idh3a isocitrate dehydrogenase 3 (NAD+) alpha Novel N 0.005926899245013338 -0.20259147113641862 1.0 6571 +101966 D8Ertd738e DNA segment, Chr 8, ERATO Doi 738, expressed Novel U 0.005926812045388237 -0.2025923743472689 1.0 6572 +14427 Galr1 galanin receptor 1 Novel U 0.005925190422468844 -0.20260917106415996 1.0 6573 +99349 Dnajc24 DnaJ heat shock protein family (Hsp40) member C24 Novel U 0.005920889727090449 -0.20265371752551165 1.0 6574 +18307 Or2y1b olfactory receptor family 2 subfamily Y member 1B Novel U 0.005919596088200017 -0.20266711699461268 1.0 6575 +73660 Cabp4 calcium binding protein 4 Novel U 0.00591812513687337 -0.20268235306009913 1.0 6576 +105787 Prkaa1 protein kinase, AMP-activated, alpha 1 catalytic subunit Novel U 0.005918014852407733 -0.2026834953829688 1.0 6577 +16450 Jag2 jagged 2 Novel U 0.005916752532228112 -0.20269657045389278 1.0 6578 +235472 Prtg protogenin Novel U 0.005915495828053245 -0.20270958735442415 1.0 6579 +234463 Tmem184c transmembrane protein 184C Novel U 0.005914526918926244 -0.20271962328331045 1.0 6580 +18352 Or8u8 olfactory receptor family 8 subfamily U member 8 Novel U 0.005913943362469149 -0.20272566774190964 1.0 6581 +80334 Kcnip4 Kv channel interacting protein 4 Novel U 0.005913317413160616 -0.20273215130427047 1.0 6582 +110599566 Eef1akmt4 EEF1A lysine methyltransferase 4 Novel U 0.005912728007009149 -0.20273825635381165 1.0 6583 +64095 Gpr35 G protein-coupled receptor 35 Novel U 0.0059110050623016825 -0.20275610255845286 1.0 6584 +52123 Agpat5 1-acylglycerol-3-phosphate O-acyltransferase 5 Novel U 0.005909169593213246 -0.2027751142869331 1.0 6585 +227612 Tor4a torsin family 4, member A Novel U 0.005904971997346607 -0.20281859284693118 1.0 6586 +629499 Mroh8 maestro heat-like repeat family member 8 Novel U 0.005901615036593689 -0.20285336413605579 1.0 6587 +321019 Gpr183 G protein-coupled receptor 183 Novel U 0.005900962095827472 -0.20286012727504799 1.0 6588 +67680 Sdhb succinate dehydrogenase complex, subunit B, iron sulfur (Ip) Novel U 0.00589671586991032 -0.20290410954351068 1.0 6589 +230796 Wdtc1 WD and tetratricopeptide repeats 1 Novel U 0.005896586828880529 -0.20290544614625527 1.0 6590 +210146 Irgq immunity-related GTPase family, Q Novel U 0.005895562001462959 -0.20291606127495707 1.0 6591 +71752 Gtf3c2 general transcription factor IIIC, polypeptide 2, beta Novel N 0.005895325192796688 -0.20291851413133763 1.0 6592 +17448 Mdh2 malate dehydrogenase 2, NAD (mitochondrial) Novel U 0.005893986157616676 -0.20293238381371378 1.0 6593 +258969 Or4c121 olfactory receptor family 4 subfamily C member 121 Novel U 0.005892013650611299 -0.2029528149764328 1.0 6594 +23950 Dnajb6 DnaJ heat shock protein family (Hsp40) member B6 Novel U 0.005888463827744745 -0.20298958392499045 1.0 6595 +271711 Tmem169 transmembrane protein 169 Novel U 0.005888437651955608 -0.20298985505295383 1.0 6596 +23947 Mid2 midline 2 Novel U 0.005888365871750866 -0.2029905985499549 1.0 6597 +620928 Vmn2r73 vomeronasal 2, receptor 73 Novel U 0.005887754019344871 -0.20299693609706262 1.0 6598 +70240 Ufsp1 UFM1-specific peptidase 1 Novel U 0.005886437210831516 -0.2030105755563562 1.0 6599 +16201 Ilf3 interleukin enhancer binding factor 3 Novel U 0.0058855053504467845 -0.203020227735588 1.0 6600 +116939 Pnpla3 patatin-like phospholipase domain containing 3 Novel U 0.005884599467422661 -0.20302961084217258 1.0 6601 +100705 Acacb acetyl-Coenzyme A carboxylase beta Novel U 0.0058814865078293645 -0.20306185477530692 1.0 6602 +28075 Desi1 desumoylating isopeptidase 1 Novel U 0.005879260447380394 -0.20308491223625955 1.0 6603 +282663 Serpinb1b serine (or cysteine) peptidase inhibitor, clade B, member 1b Novel U 0.0058737082225971855 -0.20314242199804447 1.0 6604 +619326 Degs1l delta 4-desaturase, sphingolipid 1 like Novel U 0.005870225734542404 -0.2031784934948353 1.0 6605 +21969 Top1 topoisomerase (DNA) I Novel U 0.00586984173168502 -0.20318247098380865 1.0 6606 +52637 Cisd1 CDGSH iron sulfur domain 1 Novel N 0.005867957352047119 -0.2032019893261524 1.0 6607 +241447 Cers6 ceramide synthase 6 Novel N 0.005862960896664606 -0.20325374244675481 1.0 6608 +269152 Kif26b kinesin family member 26B Novel U 0.005860463477745664 -0.20327961062981903 1.0 6609 +66163 Mrpl4 mitochondrial ribosomal protein L4 Novel U 0.005857883439296775 -0.20330633458325842 1.0 6610 +19073 Srgn serglycin Novel U 0.005857395140404639 -0.20331139236713122 1.0 6611 +673685 Gm9603 predicted gene 9603 Novel U 0.005857261931216078 -0.20331277214352728 1.0 6612 +384703 Or52e18 olfactory receptor family 52 subfamily E member 18 Novel U 0.005856853185824749 -0.20331700591485388 1.0 6613 +67145 Tomm34 translocase of outer mitochondrial membrane 34 Novel U 0.00585521184774725 -0.20333400684070455 1.0 6614 +140742 Sesn1 sestrin 1 Novel N 0.005853975694409344 -0.20334681087634224 1.0 6615 +218210 Nup153 nucleoporin 153 Novel U 0.005852539567799105 -0.20336168622856093 1.0 6616 +14802 Gria4 glutamate receptor, ionotropic, AMPA4 (alpha 4) Novel N 0.0058515688248644985 -0.20337174115196616 1.0 6617 +64209 Herpud1 homocysteine-inducible, endoplasmic reticulum stress-inducible, ubiquitin-like domain member 1 Novel U 0.005847674776629053 -0.20341207557557897 1.0 6618 +378700 Bpifb3 BPI fold containing family B, member 3 Novel U 0.005846953910713913 -0.2034195422810308 1.0 6619 +241688 Dzank1 double zinc ribbon and ankyrin repeat domains 1 Novel U 0.005841889034833061 -0.20347200409890587 1.0 6620 +75599 Pcdh1 protocadherin 1 Novel N 0.005838431954779136 -0.203507812420459 1.0 6621 +216505 Pik3ip1 phosphoinositide-3-kinase interacting protein 1 Novel U 0.005835332429797692 -0.2035399171983254 1.0 6622 +258812 Or8b56 olfactory receptor family 8 subfamily B member 56 Novel U 0.005831338901771245 -0.2035812820303432 1.0 6623 +18365 Or51b6 olfactory receptor family 51 subfamily B member 6 Novel U 0.005829469417078742 -0.20360064609133216 1.0 6624 +259075 Or51i2 olfactory receptor family 51 subfamily I member 2 Novel U 0.005827881374225016 -0.20361709498700695 1.0 6625 +436090 Gpr62 G protein-coupled receptor 62 Novel N 0.005823912794003088 -0.2036582014104856 1.0 6626 +18208 Ntn1 netrin 1 Novel U 0.005819994106501857 -0.20369879104680344 1.0 6627 +17951 Naip5 NLR family, apoptosis inhibitory protein 5 Novel U 0.005817657109001641 -0.20372299759008605 1.0 6628 +103554 Psme4 proteasome (prosome, macropain) activator subunit 4 Novel U 0.005817169003058108 -0.20372805337540353 1.0 6629 +195359 Trim40 tripartite motif-containing 40 Novel U 0.005814329031581095 -0.2037574697066034 1.0 6630 +77706 Abcb5 ATP-binding cassette, sub-family B member 5 Novel N 0.0058062139316558065 -0.20384152564486002 1.0 6631 +57014 Htr3b 5-hydroxytryptamine (serotonin) receptor 3B Novel N 0.005804958573444398 -0.2038545286039461 1.0 6632 +11905 Serpinc1 serine (or cysteine) peptidase inhibitor, clade C (antithrombin), member 1 Novel U 0.00580295398242424 -0.20387529209183552 1.0 6633 +23957 Nr0b2 nuclear receptor subfamily 0, group B, member 2 Novel U 0.005798619516044724 -0.20392018835210665 1.0 6634 +192197 Bcas3 BCAS3 microtubule associated cell migration factor Novel N 0.005796299017086351 -0.20394422400403517 1.0 6635 +212999 Tnpo2 transportin 2 (importin 3, karyopherin beta 2b) Novel N 0.005790255601209822 -0.20400682150701765 1.0 6636 +108735 Sft2d2 SFT2 domain containing 2 Novel U 0.005788330880342481 -0.2040267577024898 1.0 6637 +329207 Rbm44 RNA binding motif protein 44 Novel U 0.005784692840514528 -0.20406444039943364 1.0 6638 +67500 Ccar1 cell division cycle and apoptosis regulator 1 Novel N 0.005784681762361593 -0.20406455514657754 1.0 6639 +66413 Psmd6 proteasome (prosome, macropain) 26S subunit, non-ATPase, 6 Novel U 0.005780503012385272 -0.20410783850146327 1.0 6640 +226691 Ifi207 interferon activated gene 207 Novel U 0.005780437003510414 -0.20410852221921913 1.0 6641 +59056 Evc EvC ciliary complex subunit 1 Novel U 0.005777603139871218 -0.20413787528563568 1.0 6642 +14853 Gspt2 G1 to S phase transition 2 Novel U 0.005770702143448516 -0.20420935557972397 1.0 6643 +74552 Nipal3 NIPA-like domain containing 3 Novel U 0.005770107409276825 -0.20421551581672354 1.0 6644 +19111 Prl6a1 prolactin family 6, subfamily a, member 1 Novel U 0.0057686177931910365 -0.20423094521117163 1.0 6645 +12333 Capn1 calpain 1 Novel U 0.005759379411042538 -0.20432663606977033 1.0 6646 +381204 Naaladl1 N-acetylated alpha-linked acidic dipeptidase-like 1 Novel N 0.005754236691685928 -0.2043799041878083 1.0 6647 +170788 Crb1 crumbs family member 1, photoreceptor morphogenesis associated Novel U 0.005753722647986182 -0.204385228635552 1.0 6648 +23938 Map2k5 mitogen-activated protein kinase kinase 5 Novel N 0.005750445341929841 -0.20441917486394795 1.0 6649 +12159 Bmp4 bone morphogenetic protein 4 Novel U 0.005749821748369299 -0.2044256340255485 1.0 6650 +258407 Or4d1 olfactory receptor family 4 subfamily D member 1 Novel U 0.005749780505806497 -0.20442606121465823 1.0 6651 +387524 Znrf2 zinc and ring finger 2 Novel U 0.005748684802661774 -0.20443741047181196 1.0 6652 +81500 Sil1 SIL1 nucleotide exchange factor Novel N 0.005747400304758349 -0.20445071525887004 1.0 6653 +71373 Prr16 proline rich 16 Novel U 0.005743454631587996 -0.20449158441186158 1.0 6654 +18369 Or52a5 olfactory receptor family 52 subfamily A member 5 Novel U 0.0057413113707361135 -0.20451378423730945 1.0 6655 +13531 Usp17la ubiquitin specific peptidase 17-like A Novel U 0.005741081033835785 -0.20451617005935113 1.0 6656 +230770 Tmem39b transmembrane protein 39b Novel U 0.005739347383952573 -0.20453412714785077 1.0 6657 +258711 Or10aa3 olfactory receptor family 10 subfamily AA member 3 Novel U 0.0057373489586757705 -0.2045548267711732 1.0 6658 +16628 Klra10 killer cell lectin-like receptor subfamily A, member 10 Novel U 0.005737343122310607 -0.20455488722405168 1.0 6659 +244058 Rgma repulsive guidance molecule family member A Novel N 0.005733765454435116 -0.20459194459029656 1.0 6660 +80891 Fcrl2 Fc receptor like 2 Novel U 0.005733659939460926 -0.2045930375109306 1.0 6661 +102636989 Acte1 actin, epsilon 1 Novel U 0.005731364420445432 -0.20461681442143198 1.0 6662 +83379 Klb klotho beta Novel U 0.005724637851815655 -0.20468648799817518 1.0 6663 +213438 P2ry10b purinergic receptor P2Y, G-protein coupled 10B Novel U 0.005723799859400697 -0.20469516789606176 1.0 6664 +258383 Or6z6 olfactory receptor family 6 subfamily Z member 6 Novel U 0.005718368366596927 -0.20475142711997252 1.0 6665 +210711 Mcmbp minichromosome maintenance complex binding protein Novel U 0.005716957781483277 -0.2047660379142092 1.0 6666 +11920 Atm ataxia telangiectasia mutated Novel U 0.005715839622582836 -0.2047776197673425 1.0 6667 +68263 Pdhb pyruvate dehydrogenase (lipoamide) beta Novel N 0.005714978331362574 -0.20478654099348853 1.0 6668 +258393 Or13ae2 olfactory receptor family 13 subfamily AE member 2 Novel U 0.0057140731242865134 -0.2047959170986253 1.0 6669 +110380 Shroom2 shroom family member 2 Novel N 0.0057127018081901204 -0.20481012114567215 1.0 6670 +66864 Clec14a C-type lectin domain family 14, member a Novel U 0.005711071191063434 -0.20482701102426673 1.0 6671 +208846 Daam1 dishevelled associated activator of morphogenesis 1 Novel U 0.005707906279676296 -0.20485979307237387 1.0 6672 +19175 Psmb6 proteasome (prosome, macropain) subunit, beta type 6 Novel U 0.005704949417981454 -0.20489042014860745 1.0 6673 +667180 Vmn2r20 vomeronasal 2, receptor 20 Novel U 0.005703657397049624 -0.20490380285894644 1.0 6674 +15277 Hk2 hexokinase 2 Novel U 0.0057032844149445695 -0.20490766619532944 1.0 6675 +11450 Adipoq adiponectin, C1Q and collagen domain containing Novel U 0.005692102714303767 -0.20502348588298827 1.0 6676 +239555 Mief1 mitochondrial elongation factor 1 Novel U 0.005684383795395622 -0.20510343819129306 1.0 6677 +239408 Tmem74 transmembrane protein 74 Novel U 0.0056785631714657185 -0.20516372802261632 1.0 6678 +17228 Cma1 chymase 1, mast cell Novel U 0.005677629680113941 -0.20517339709535112 1.0 6679 +383619 Aim2 absent in melanoma 2 Novel U 0.005677492674830398 -0.20517481619157424 1.0 6680 +240058 Cpne5 copine V Novel U 0.005676264050134485 -0.20518754224578567 1.0 6681 +104252 Cdc42ep2 CDC42 effector protein 2 Novel U 0.005675727583545093 -0.20519309894908322 1.0 6682 +69257 Elf2 E74-like factor 2 Novel N 0.005673914303612272 -0.20521188084301897 1.0 6683 +83669 Wdr6 WD repeat domain 6 Novel N 0.005671983778456968 -0.20523187715911503 1.0 6684 +20287 Sct secretin Novel U 0.005668810852687274 -0.2052647422199332 1.0 6685 +242838 Lrrd1 leucine rich repeats and death domain containing 1 Novel U 0.0056668431479912915 -0.2052851236404894 1.0 6686 +69408 Dnajc17 DnaJ heat shock protein family (Hsp40) member C17 Novel U 0.0056626129244775536 -0.20532894015658357 1.0 6687 +75345 Slamf7 SLAM family member 7 Novel U 0.005659935428459679 -0.2053566735723188 1.0 6688 +545055 Cma2 chymase 2, mast cell Novel U 0.00565990067214941 -0.205357033577038 1.0 6689 +623121 Ifi213 interferon activated gene 213 Novel U 0.005658794903186639 -0.2053684870956042 1.0 6690 +53885 Nphp1 nephronophthisis 1 (juvenile) homolog (human) Novel U 0.005658513005051057 -0.20537140698722564 1.0 6691 +545486 Tubb1 tubulin, beta 1 class VI Novel N 0.0056482395521125234 -0.2054778190750414 1.0 6692 +77883 6030498E09Rik RIKEN cDNA 6030498E09 gene Novel U 0.005646085442874545 -0.20550013126771588 1.0 6693 +258404 Or8k33 olfactory receptor family 8 subfamily K member 33 Novel U 0.005643650113534266 -0.20552535632896535 1.0 6694 +211147 Marchf11 membrane associated ring-CH-type finger 11 Novel U 0.005641934887627016 -0.20554312258252763 1.0 6695 +329628 Fat4 FAT atypical cadherin 4 Novel U 0.005640953955234018 -0.20555328304800788 1.0 6696 +21767 Tex264 testis expressed gene 264 ER-phagy receptor Novel U 0.00564033633280129 -0.20555968036086283 1.0 6697 +19060 Ppp5c protein phosphatase 5, catalytic subunit Novel N 0.00563689859402805 -0.20559528834606647 1.0 6698 +74562 Fer1l4 fer-1 like family member 4 Novel U 0.005635074868868015 -0.20561417843132238 1.0 6699 +269582 Clspn claspin Novel U 0.005633252190260307 -0.2056330576764237 1.0 6700 +20301 Ccl27a C-C motif chemokine ligand 27A Novel U 0.005630728053856116 -0.2056592025983218 1.0 6701 +404337 Or2y13 olfactory receptor family 2 subfamily Y member 14 Novel U 0.005628465278710311 -0.2056826403488973 1.0 6702 +70291 Mkrn2os makorin, ring finger protein 2, opposite strand Novel U 0.0056279596244660285 -0.20568787789893708 1.0 6703 +192231 Hexim1 hexamethylene bis-acetamide inducible 1 Novel U 0.005627820592075125 -0.20568931799187162 1.0 6704 +13063 Cycs cytochrome c, somatic Novel U 0.005627517425268382 -0.2056924581836898 1.0 6705 +72562 Pcbd2 pterin 4 alpha carbinolamine dehydratase/dimerization cofactor of hepatocyte nuclear factor 1 alpha (TCF1) 2 Novel N 0.005625719913652594 -0.20571107674991612 1.0 6706 +13193 Dcx doublecortin Novel N 0.0056231159635464064 -0.20573804837951576 1.0 6707 +107035 Fbxo38 F-box protein 38 Novel U 0.005621689528844739 -0.20575282334326414 1.0 6708 +11489 Adam12 ADAM metallopeptidase domain 12 Novel U 0.005618761277959629 -0.20578315406967101 1.0 6709 +19112 Prl8a6 prolactin family 8, subfamily a, member 6 Novel U 0.005618424383220915 -0.20578664361429982 1.0 6710 +243628 Vmn2r24 vomeronasal 2, receptor 24 Novel U 0.005617666288656016 -0.20579449593288202 1.0 6711 +52174 Tmem222 transmembrane protein 222 Novel N 0.005614479363472542 -0.20582750599916794 1.0 6712 +17997 Nedd1 neural precursor cell expressed, developmentally down-regulated gene 1 Novel U 0.005614193896779275 -0.20583046285379258 1.0 6713 +114873 Dscaml1 DS cell adhesion molecule like 1 Novel N 0.005611153147651587 -0.20586195883329794 1.0 6714 +223922 Atf7 activating transcription factor 7 Novel N 0.005611134984616138 -0.20586214696542202 1.0 6715 +258028 Or8b42 olfactory receptor family 8 subfamily B member 42 Novel U 0.005609564974737108 -0.20587840907613775 1.0 6716 +56846 Necab3 N-terminal EF-hand calcium binding protein 3 Novel N 0.005608453321069811 -0.20588992354827992 1.0 6717 +109113 Uhrf2 ubiquitin-like, containing PHD and RING finger domains 2 Novel U 0.005605820564994846 -0.20591719354915725 1.0 6718 +382062 AB124611 cDNA sequence AB124611 Novel U 0.005605348303928472 -0.205922085213758 1.0 6719 +27993 Imp4 IMP4, U3 small nucleolar ribonucleoprotein Novel N 0.00560457103333789 -0.20593013615698386 1.0 6720 +66537 Pomp proteasome maturation protein Novel U 0.005603397560588535 -0.20594229094914585 1.0 6721 +76332 Cog2 component of oligomeric golgi complex 2 Novel U 0.005601560547512207 -0.20596131867020187 1.0 6722 +224273 Crybg3 beta-gamma crystallin domain containing 3 Novel U 0.005598627943312302 -0.20599169448810034 1.0 6723 +19921 Rpl19 ribosomal protein L19 Novel N 0.0055950518838920795 -0.2060287351940184 1.0 6724 +69155 1810030O07Rik RIKEN cDNA 1810030O07 gene Novel U 0.005594835088264908 -0.20603098075599785 1.0 6725 +239081 Tlr11 toll-like receptor 11 Novel U 0.0055937671256215266 -0.20604204267795062 1.0 6726 +434110 Vmn2r38 vomeronasal 2, receptor 38 Novel U 0.005592119833925017 -0.20605910527119128 1.0 6727 +100040019 Saxo3 stabilizer of axonemal microtubules 3 Novel U 0.005591288813189495 -0.20606771295665147 1.0 6728 +58992 F12 coagulation factor XII (Hageman factor) Novel U 0.005589176760353632 -0.20608958953049533 1.0 6729 +100504232 Mptx2 mucosal pentraxin 2 Novel U 0.005584823759732754 -0.2061346777678292 1.0 6730 +100041702 Gm3476 predicted gene 3476 Novel U 0.0055828657144078465 -0.20615495913693732 1.0 6731 +56347 Eif3c eukaryotic translation initiation factor 3, subunit C Novel U 0.0055815026383379636 -0.20616907783406047 1.0 6732 +73862 Spmip7 sperm microtubule inner protein 7 Novel U 0.005574217111655067 -0.20624454107994314 1.0 6733 +380629 Heca hdc homolog, cell cycle regulator Novel N 0.0055740601713697505 -0.20624616666225928 1.0 6734 +68968 Cdan1 codanin 1 Novel U 0.0055735434264588424 -0.2062515190890594 1.0 6735 +57437 Golga7 golgin A7 Novel U 0.005570457034402707 -0.20628348783651718 1.0 6736 +16002 Igf2 insulin-like growth factor 2 Novel U 0.005568007128331518 -0.20630886388306624 1.0 6737 +70028 Dop1b DOP1 leucine zipper like protein B Novel N 0.005567761805097569 -0.2063114049330589 1.0 6738 +110606 Fntb farnesyltransferase, CAAX box, beta Novel U 0.005566603592176477 -0.20632340166442137 1.0 6739 +259279 Tubgcp3 tubulin, gamma complex component 3 Novel U 0.0055658321282201365 -0.20633139246272067 1.0 6740 +258938 Or10v5 olfactory receptor family 10 subfamily V member 5 Novel U 0.005565626311580999 -0.206333524304703 1.0 6741 +12274 C6 complement component 6 Novel N 0.0055624162596745125 -0.20636677391682562 1.0 6742 +67387 Unc50 unc-50 homolog Novel U 0.005561872235496462 -0.206372408901378 1.0 6743 +66314 Tpd52l2 tumor protein D52-like 2 Novel U 0.005560663933635803 -0.20638492445232992 1.0 6744 +546912 Vmn2r21 vomeronasal 2, receptor 21 Novel U 0.005554275076376183 -0.2064511000258027 1.0 6745 +74039 Nfam1 Nfat activating molecule with ITAM motif 1 Novel U 0.00555406147625115 -0.20645331248887605 1.0 6746 +171205 Vmn1r8 vomeronasal 1 receptor 8 Novel U 0.005553680874026539 -0.20645725475420695 1.0 6747 +260299 Cadm4 cell adhesion molecule 4 Novel U 0.005552935612781075 -0.20646497414568835 1.0 6748 +73834 Atp6v1d ATPase, H+ transporting, lysosomal V1 subunit D Novel U 0.005552621037362394 -0.20646823250753393 1.0 6749 +69270 Gins1 GINS complex subunit 1 Novel U 0.005552419540464776 -0.2064703196057756 1.0 6750 +258891 Or4k52 olfactory receptor family 4 subfamily K member 52 Novel U 0.00555097521087474 -0.2064852799241894 1.0 6751 +13032 Ctsc cathepsin C Novel U 0.005550940951334641 -0.20648563478337956 1.0 6752 +20356 Sema5a sema domain, seven thrombospondin repeats (type 1 and type 1-like), transmembrane domain (TM) and short cytoplasmic domain, (semaphorin) 5A Novel N 0.005546854569690994 -0.20652796139011187 1.0 6753 +20558 Slfn4 schlafen 4 Novel U 0.0055452217851003046 -0.20654487371922736 1.0 6754 +75740 Egfem1 EGF-like and EMI domain containing 1 Novel U 0.005542481588526718 -0.20657325658525744 1.0 6755 +381059 Gm1604b predicted gene 1604b Novel N 0.005535070087158571 -0.20665002467278873 1.0 6756 +13143 Dapk2 death-associated protein kinase 2 Novel U 0.00553278341424533 -0.2066737099556538 1.0 6757 +68010 Bambi BMP and activin membrane-bound inhibitor Novel U 0.005532143712914824 -0.2066803359610061 1.0 6758 +665119 Sec14l5 SEC14-like lipid binding 5 Novel U 0.005531840567296802 -0.20668347593335218 1.0 6759 +226123 Morn4 MORN repeat containing 4 Novel U 0.005531456700593522 -0.20668745201204583 1.0 6760 +19210 Ptdss1 phosphatidylserine synthase 1 Novel U 0.005530987961889927 -0.20669230719212872 1.0 6761 +19650 Rbl1 RB transcriptional corepressor like 1 Novel N 0.005530957341474685 -0.2066926243573832 1.0 6762 +14169 Fgf14 fibroblast growth factor 14 Novel N 0.005530749382527409 -0.2066947783893228 1.0 6763 +57271 Or4e2 olfactory receptor family 4 subfamily E member 2 Novel U 0.005530668230808017 -0.20669561895616453 1.0 6764 +98999 Znfx1 zinc finger, NFX1-type containing 1 Novel U 0.0055284382766525204 -0.20671871674800138 1.0 6765 +74159 Acbd5 acyl-Coenzyme A binding domain containing 5 Novel U 0.00552676210358348 -0.20673607849354927 1.0 6766 +100040223 Gm20831 predicted gene, 20831 Novel U 0.005523150352473241 -0.20677348889281924 1.0 6767 +15288 Hmbs hydroxymethylbilane synthase Novel U 0.0055217972686303065 -0.20678750409078409 1.0 6768 +258686 Or5b113 olfactory receptor family 5 subfamily B member 113 Novel U 0.005520820128322976 -0.20679762527796566 1.0 6769 +67505 Prl7c1 prolactin family 7, subfamily c, member 1 Novel U 0.005520544594628984 -0.20680047924691036 1.0 6770 +258734 Or5p76 olfactory receptor family 5 subfamily P member 76 Novel U 0.005517321052512501 -0.20683386859018466 1.0 6771 +105348 Golm1 golgi membrane protein 1 Novel U 0.005516129051801169 -0.20684621529436772 1.0 6772 +242521 Klhl9 kelch-like 9 Novel U 0.005514751531715128 -0.20686048360213538 1.0 6773 +11733 Ank1 ankyrin 1, erythroid Novel U 0.005513556491556083 -0.20687286178881795 1.0 6774 +54127 Rps28 ribosomal protein S28 Novel U 0.005512619860911807 -0.2068825633782413 1.0 6775 +317750 Slc24a5 solute carrier family 24, member 5 Novel N 0.00551138249050066 -0.2068953800202836 1.0 6776 +67121 Mastl microtubule associated serine/threonine kinase-like Novel U 0.0055085913580373005 -0.20692429047858552 1.0 6777 +12672 Chrm4 cholinergic receptor, muscarinic 4 Novel N 0.005506716050686227 -0.20694371485048055 1.0 6778 +66278 Smim20 small integral membrane protein 20 Novel N 0.005505537478969951 -0.20695592245757427 1.0 6779 +83602 Gtf2a1 general transcription factor II A, 1 Novel N 0.005505021818821947 -0.2069612636484359 1.0 6780 +69553 Ripor3 RIPOR family member 3 Novel U 0.005502248936437881 -0.20698998507301644 1.0 6781 +259057 Or52h2 olfactory receptor family 52 subfamily H member 2 Novel U 0.005498619311825192 -0.20702758060543722 1.0 6782 +140859 Nek8 NIMA (never in mitosis gene a)-related expressed kinase 8 Novel U 0.00549582518096005 -0.20705652212108622 1.0 6783 +60594 Capn12 calpain 12 Novel U 0.005492267767539932 -0.20709336969234815 1.0 6784 +76179 Usp31 ubiquitin specific peptidase 31 Novel N 0.005488088057869421 -0.20713666298771471 1.0 6785 +70573 Tbccd1 TBCC domain containing 1 Novel U 0.00548764827676721 -0.20714121822591441 1.0 6786 +78755 Pabir2 PABIR family member 2 Novel U 0.005487327534953997 -0.20714454045907185 1.0 6787 +58233 Dnaja4 DnaJ heat shock protein family (Hsp40) member A4 Novel U 0.005487205678337617 -0.20714580264589852 1.0 6788 +216725 Adamts2 ADAM metallopeptidase with thrombospondin type 1 motif 2 Novel U 0.005486503651446311 -0.2071530742173608 1.0 6789 +93736 Aff4 AF4/FMR2 family, member 4 Novel N 0.005484340490629316 -0.20717548016599313 1.0 6790 +654462 Kncn kinocilin Novel U 0.005482193329344331 -0.20719772039199888 1.0 6791 +108978 4930555G01Rik RIKEN cDNA 4930555G01 gene Novel U 0.00547550921909282 -0.20726695418625574 1.0 6792 +16776 Lama5 laminin, alpha 5 Novel U 0.00547503446220866 -0.20727187170245506 1.0 6793 +71745 Cul2 cullin 2 Novel U 0.005474505796130751 -0.20727734760831107 1.0 6794 +26965 Cul1 cullin 1 Novel U 0.005472803920635254 -0.20729497557874732 1.0 6795 +17758 Map4 microtubule-associated protein 4 Novel U 0.0054721392751393375 -0.20730185995494496 1.0 6796 +320923 Map7d3 MAP7 domain containing 3 Novel U 0.005469996447456213 -0.20732405529364512 1.0 6797 +223453 Dap death-associated protein Novel U 0.005466830732508331 -0.207356845665008 1.0 6798 +77744 Bora bora, aurora kinase A activator Novel U 0.005465550435013427 -0.2073701069443727 1.0 6799 +13506 Dsc2 desmocollin 2 Novel U 0.005463364251220802 -0.20739275136422977 1.0 6800 +22393 Wfs1 wolframin ER transmembrane glycoprotein Novel U 0.0054606226220752134 -0.2074211490687936 1.0 6801 +22410 Wnt10b wingless-type MMTV integration site family, member 10B Novel U 0.005459863986346684 -0.2074290069927309 1.0 6802 +230738 Zc3h12a zinc finger CCCH type containing 12A Novel U 0.0054558646722895595 -0.20747043175626423 1.0 6803 +331529 Pramel3c PRAME like 3C Novel U 0.00545352398638484 -0.2074946765039194 1.0 6804 +77552 Shisa4 shisa family member 4 Novel U 0.005452011469090745 -0.20751034310833033 1.0 6805 +67555 Mgat4d MGAT4 family, member C Novel U 0.005451963954763281 -0.20751083526017222 1.0 6806 +76709 Arpc2 actin related protein 2/3 complex, subunit 2 Novel U 0.005451889145187328 -0.20751161013530073 1.0 6807 +84035 Kremen1 kringle containing transmembrane protein 1 Novel N 0.005442322299201343 -0.20761070321153044 1.0 6808 +16324 Inhbb inhibin beta-B Novel U 0.005439844223117515 -0.20763637104214439 1.0 6809 +116838 Rims2 regulating synaptic membrane exocytosis 2 Novel U 0.005438222158603245 -0.2076531723330607 1.0 6810 +246738 Dnajc28 DnaJ heat shock protein family (Hsp40) member C28 Novel U 0.005433828324978286 -0.20769868351730852 1.0 6811 +215821 Arfgef3 ARFGEF family member 3 Novel U 0.005433704014792313 -0.20769997111812832 1.0 6812 +14114 Fbln1 fibulin 1 Novel U 0.005433323804284963 -0.20770390932606475 1.0 6813 +100503856 1700024B05Rik RIKEN cDNA 1700024B05 gene Novel U 0.0054332615010563865 -0.20770455466085821 1.0 6814 +665210 Vmn2r91 vomeronasal 2, receptor 91 Novel U 0.0054329704483158 -0.20770756937557736 1.0 6815 +20363 Selenop selenoprotein P Novel N 0.005432028758104791 -0.2077173233718266 1.0 6816 +68999 Anapc10 anaphase promoting complex subunit 10 Novel U 0.005432027305509672 -0.20771733841775908 1.0 6817 +101187 Parp11 poly (ADP-ribose) polymerase family, member 11 Novel N 0.005431200984018841 -0.2077258974285973 1.0 6818 +56291 Styx serine/threonine/tyrosine interaction protein Novel U 0.005430677992113653 -0.20773131456155877 1.0 6819 +66390 Prelid3b PRELI domain containing 3B Novel U 0.005429648647880902 -0.20774197647528375 1.0 6820 +22334 Vdac2 voltage-dependent anion channel 2 Novel N 0.005429634435581453 -0.20774212368581424 1.0 6821 +73032 Ttc9b tetratricopeptide repeat domain 9B Novel U 0.005428097387910087 -0.20775804437506654 1.0 6822 +228859 Fitm2 fat storage-inducing transmembrane protein 2 Novel U 0.00542102618513366 -0.20783128766097148 1.0 6823 +71898 Apol9b apolipoprotein L 9b Novel U 0.00541993962211122 -0.2078425422450391 1.0 6824 +239857 Cadm2 cell adhesion molecule 2 Novel U 0.0054176114038485094 -0.2078666578532682 1.0 6825 +224419 Map3k7cl Map3k7 C-terminal like Novel U 0.005417452276173357 -0.20786830609249635 1.0 6826 +403174 Msantd1 Myb/SANT-like DNA-binding domain containing 1 Novel U 0.0054149734506410705 -0.2078939816858728 1.0 6827 +78390 Pla2g4d phospholipase A2, group IVD Novel U 0.005412600347865979 -0.20791856220640564 1.0 6828 +18645 Pfn2 profilin 2 Novel U 0.005411979253986604 -0.20792499547639084 1.0 6829 +66789 Alg14 asparagine-linked glycosylation 14 Novel U 0.005411940912231425 -0.2079253926190306 1.0 6830 +270162 Elmod1 ELMO/CED-12 domain containing 1 Novel U 0.005410689079278641 -0.20793835906360375 1.0 6831 +320376 Bcorl1 BCL6 co-repressor-like 1 Novel U 0.005409904509333903 -0.20794648561329995 1.0 6832 +408066 Cspg4b chondroitin sulfate proteoglycan 4B Novel U 0.005409039456172061 -0.20795544580551326 1.0 6833 +53623 Gria3 glutamate receptor, ionotropic, AMPA3 (alpha 3) Novel U 0.005407643909793572 -0.2079699008290255 1.0 6834 +100182 Akna AT-hook transcription factor Novel N 0.005407429383626157 -0.20797212288401543 1.0 6835 +71059 Hexim2 hexamethylene bis-acetamide inducible 2 Novel U 0.0054052526349433645 -0.20799466957531504 1.0 6836 +27041 G3bp1 G3BP stress granule assembly factor 1 Novel U 0.005404933396273324 -0.2079979762389649 1.0 6837 +242274 Lrrc7 leucine rich repeat containing 7 Novel U 0.00540396698949648 -0.20800798624859054 1.0 6838 +20621 Snn stannin Novel N 0.005401846746089985 -0.20802994766009575 1.0 6839 +23948 Mmp17 matrix metallopeptidase 17 Novel N 0.005399978073277466 -0.20804930331165852 1.0 6840 +108151 Sema3d sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3D Novel U 0.005398375738837121 -0.20806590023911772 1.0 6841 +20271 Scn5a sodium channel, voltage-gated, type V, alpha Novel U 0.005397036666481961 -0.20807977030655284 1.0 6842 +84111 Gpr87 G protein-coupled receptor 87 Novel U 0.0053924380587789 -0.20812740253397005 1.0 6843 +18293 Ogdh oxoglutarate (alpha-ketoglutarate) dehydrogenase (lipoamide) Novel U 0.005390970121748718 -0.20814260737747287 1.0 6844 +232987 B9d2 B9 protein domain 2 Novel U 0.005389578854026006 -0.20815701808280926 1.0 6845 +230484 Usp1 ubiquitin specific peptidase 1 Novel U 0.005388551844029267 -0.20816765581859437 1.0 6846 +14025 Bcl11a BCL11 transcription factor A Novel U 0.005388426108393326 -0.20816895818417805 1.0 6847 +17684 Cited2 Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 2 Novel U 0.005384771725888089 -0.20820681015803597 1.0 6848 +58522 Trim54 tripartite motif-containing 54 Novel U 0.005384451261083063 -0.2082101295219517 1.0 6849 +259010 Or1e33 olfactory receptor family 1 subfamily E member 33 Novel U 0.00538346850369731 -0.2082203088906469 1.0 6850 +259106 Or52k2 olfactory receptor family 52 subfamily K member 2 Novel U 0.005380358629806313 -0.2082525208621783 1.0 6851 +194352 Trpv5 transient receptor potential cation channel, subfamily V, member 5 Novel U 0.005379830357578057 -0.20825799268855255 1.0 6852 +68961 Phkg2 phosphorylase kinase, gamma 2 (testis) Novel U 0.005375954192328924 -0.20829814188078102 1.0 6853 +14566 Gdf9 growth differentiation factor 9 Novel U 0.005374732463195457 -0.20831079651098325 1.0 6854 +67287 Parp6 poly (ADP-ribose) polymerase family, member 6 Novel N 0.005372612114894244 -0.20833275900898457 1.0 6855 +71865 Fbxo30 F-box protein 30 Novel U 0.00537196464616758 -0.2083394654687709 1.0 6856 +100042235 Gm3739 predicted gene 3739 Novel U 0.005369955430967031 -0.20836027685376882 1.0 6857 +108961 E2f8 E2F transcription factor 8 Novel U 0.005369502941704369 -0.2083649637226767 1.0 6858 +171188 Vmn1r32 vomeronasal 1 receptor 32 Novel U 0.005369086834350556 -0.20836927374896871 1.0 6859 +12845 Comp cartilage oligomeric matrix protein Novel U 0.005364668173833394 -0.20841504208934983 1.0 6860 +329909 Tmem61 transmembrane protein 61 Novel U 0.005364523041624474 -0.20841654536399887 1.0 6861 +100038992 Ubl5c ubiquitin-like 5C Novel U 0.005364352772269493 -0.20841830900838043 1.0 6862 +106143 Cggbp1 CGG triplet repeat binding protein 1 Novel N 0.0053612324925644906 -0.2084506287629912 1.0 6863 +77613 Prss36 serine protease 36 Novel U 0.005359740999694159 -0.20846607759711192 1.0 6864 +77053 Sun1 Sad1 and UNC84 domain containing 1 Novel U 0.005352443094559821 -0.20854166905858768 1.0 6865 +54159 Rnase2b ribonuclease, RNase A family, 2B (liver, eosinophil-derived neurotoxin) Novel U 0.005351755146804047 -0.2085487947988269 1.0 6866 +67728 Dph2 DPH2 homolog Novel U 0.005347640689704572 -0.2085914122102078 1.0 6867 +50909 C1ra complement component 1, r subcomponent A Novel U 0.005346352437992135 -0.20860475587909622 1.0 6868 +106042 Prickle1 prickle planar cell polarity protein 1 Novel U 0.0053462943792996955 -0.20860535724912393 1.0 6869 +78317 Ccdc88b coiled-coil domain containing 88B Novel U 0.0053451729353961855 -0.20861697312821098 1.0 6870 +17423 Ndst2 N-deacetylase/N-sulfotransferase (heparan glucosaminyl) 2 Novel N 0.005344868265468229 -0.20862012888930928 1.0 6871 +218490 Btf3 basic transcription factor 3 Novel U 0.005341518747754929 -0.2086548230836742 1.0 6872 +16403 Itga6 integrin alpha 6 Novel U 0.005337749955830294 -0.20869386010653718 1.0 6873 +385354 Frmd7 FERM domain containing 7 Novel N 0.005337586859603369 -0.2086955494518942 1.0 6874 +68436 Rpl34 ribosomal protein L34 Novel U 0.005334458830263211 -0.20872794947697115 1.0 6875 +16564 Kif21a kinesin family member 21A Novel U 0.005332906666529195 -0.20874402673790343 1.0 6876 +631784 Gm7073 predicted gene 7073 Novel U 0.0053327960376209314 -0.20874517262849848 1.0 6877 +13627 Eef1a1 eukaryotic translation elongation factor 1 alpha 1 Novel U 0.005332072453086026 -0.20875266749332447 1.0 6878 +13491 Drd4 dopamine receptor D4 Novel U 0.005331635912542861 -0.20875718916592007 1.0 6879 +218203 Mylip myosin regulatory light chain interacting protein Novel U 0.005327382241548858 -0.20880124855024407 1.0 6880 +258565 Or5g9 olfactory receptor family 5 subfamily G member 9 Novel U 0.005323444691904811 -0.20884203356001713 1.0 6881 +70683 Utp20 UTP20 small subunit processome component Novel N 0.005322257199441344 -0.208854333567917 1.0 6882 +19082 Prkag1 protein kinase, AMP-activated, gamma 1 non-catalytic subunit Novel U 0.005319918247685383 -0.20887856035331637 1.0 6883 +11440 Chrna6 cholinergic receptor, nicotinic, alpha polypeptide 6 Novel N 0.005319565113821994 -0.20888221810226468 1.0 6884 +665186 Zpld2 zona pellucida like domain containing 2 Novel U 0.0053194095383273885 -0.20888382954812354 1.0 6885 +19027 Sypl1 synaptophysin like 1 Novel N 0.00531798594414423 -0.20889857508987458 1.0 6886 +258635 Or5w16 olfactory receptor family 5 subfamily W member 16 Novel U 0.005316706575541792 -0.20891182674780165 1.0 6887 +171257 Vmn1r195 vomeronasal 1 receptor 195 Novel U 0.0053119972527752995 -0.20896060575820632 1.0 6888 +74020 Cpne4 copine IV Novel U 0.005310711762270456 -0.2089739208265973 1.0 6889 +209378 Itih5 inter-alpha-trypsin inhibitor, heavy chain 5 Novel U 0.005309950293576711 -0.20898180809429517 1.0 6890 +100862247 Gm21586 predicted gene, 21586 Novel U 0.005307842524012598 -0.20900364030215104 1.0 6891 +112419 Ifit1bl2 interferon induced protein with tetratricopeptide repeats 1B like 2 Novel U 0.005306256518847903 -0.20902006809150986 1.0 6892 +270198 Pfkfb4 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 4 Novel U 0.00530510304433317 -0.209032015742615 1.0 6893 +319767 Atp10b ATPase, class V, type 10B Novel U 0.005303785752125893 -0.20904566021199436 1.0 6894 +381835 Sbk3 SH3 domain binding kinase family, member 3 Novel U 0.0053026785213356655 -0.2090571288721213 1.0 6895 +23806 Arih1 ariadne RBR E3 ubiquitin protein ligase 1 Novel U 0.005300631598050107 -0.20907833083622412 1.0 6896 +14134 Fcnb ficolin B Novel U 0.005300251821658425 -0.20908226454760467 1.0 6897 +72383 Cnfn cornifelin Novel U 0.005299212019698473 -0.2090930347821242 1.0 6898 +19656 Rbmxl1 RNA binding motif protein, X-linked like-1 Novel U 0.0052961539547621865 -0.2091247101182058 1.0 6899 +319229 Sctr secretin receptor Novel N 0.005296110484176161 -0.20912516038510684 1.0 6900 +110033 Kif22 kinesin family member 22 Novel U 0.005294568993059488 -0.20914112709941954 1.0 6901 +240442 Adnp2 ADNP homeobox 2 Novel U 0.005294267260656979 -0.20914425243372584 1.0 6902 +67089 Psmc6 proteasome (prosome, macropain) 26S subunit, ATPase, 6 Novel U 0.0052936521780427214 -0.20915062343922453 1.0 6903 +640524 Sptbn5 spectrin beta, non-erythrocytic 5 Novel U 0.005292525757424544 -0.20916229086695856 1.0 6904 +59290 Gpa33 glycoprotein A33 transmembrane Novel U 0.005292247670434671 -0.20916517128285803 1.0 6905 +78593 Nrip3 nuclear receptor interacting protein 3 Novel U 0.005291020489867786 -0.20917788237882842 1.0 6906 +117606 Boc BOC cell adhesion associated, oncogene regulated Novel U 0.005290566443644537 -0.20918258537468287 1.0 6907 +268780 Egflam EGF-like, fibronectin type III and laminin G domains Novel U 0.00529014025581362 -0.20918699981422537 1.0 6908 +210297 Lrch2 leucine-rich repeats and calponin homology (CH) domain containing 2 Novel U 0.005289490051932441 -0.2091937346046523 1.0 6909 +71782 Ankle2 ankyrin repeat and LEM domain containing 2 Novel U 0.005289227859305336 -0.20919645038726473 1.0 6910 +93685 Entpd7 ectonucleoside triphosphate diphosphohydrolase 7 Novel N 0.005287335877491573 -0.20921604747269615 1.0 6911 +268527 Greb1 gene regulated by estrogen in breast cancer protein Novel U 0.005286106150518951 -0.20922878494425348 1.0 6912 +108073 Grm7 glutamate receptor, metabotropic 7 Novel N 0.005285984880302614 -0.20923004105716775 1.0 6913 +12386 Ctnna2 catenin alpha 2 Novel U 0.005285096481542252 -0.20923924306232305 1.0 6914 +13008 Csrp2 cysteine and glycine-rich protein 2 Novel U 0.005284701548877494 -0.20924333376188187 1.0 6915 +13010 Cst3 cystatin C Novel U 0.005283854205631129 -0.20925211051537285 1.0 6916 +18000 Septin2 septin 2 Novel U 0.00528320654616596 -0.20925881895082238 1.0 6917 +226414 Dars1 aspartyl-tRNA synthetase 1 Novel N 0.005282873010462159 -0.20926227370267797 1.0 6918 +16772 Lama1 laminin, alpha 1 Novel N 0.005281435791434623 -0.20927716037011915 1.0 6919 +212627 Prpsap2 phosphoribosyl pyrophosphate synthetase-associated protein 2 Novel N 0.005276615054403219 -0.20932709340581723 1.0 6920 +474156 Zbtb9 zinc finger and BTB domain containing 9 Novel U 0.005274788496285153 -0.20934601283475932 1.0 6921 +18345 Or13a18 olfactory receptor family 13 subfamily A member 18 Novel U 0.005274516728141968 -0.20934882780025252 1.0 6922 +230584 Yipf1 Yip1 domain family, member 1 Novel U 0.005274383585124639 -0.20935020689124917 1.0 6923 +22177 Tyrobp TYRO protein tyrosine kinase binding protein Novel U 0.005274260353836606 -0.2093514833168796 1.0 6924 +277463 Gpr107 G protein-coupled receptor 107 Novel U 0.005273188311151424 -0.2093625874997712 1.0 6925 +17224 Mcpt1 mast cell protease 1 Novel U 0.0052693859197869555 -0.2094019725445275 1.0 6926 +64213 St7 suppression of tumorigenicity 7 Novel U 0.005269105313041736 -0.20940487905997002 1.0 6927 +19885 Rorc RAR-related orphan receptor gamma Novel U 0.005267149985807806 -0.20942513227518117 1.0 6928 +235072 Septin7 septin 7 Novel U 0.005265863967837214 -0.209438452807045 1.0 6929 +72141 Adpgk ADP-dependent glucokinase Novel N 0.00526462837309596 -0.2094512510567569 1.0 6930 +241113 Prkag3 protein kinase, AMP-activated, gamma 3 non-catalytic subunit Novel N 0.005264502386466699 -0.2094525560221212 1.0 6931 +71893 Noxo1 NADPH oxidase organizer 1 Novel U 0.00526366710845202 -0.20946120780433897 1.0 6932 +544998 Gm16440 predicted gene 16440 Novel U 0.0052600930977937 -0.20949822728924858 1.0 6933 +269109 Dpp10 dipeptidylpeptidase 10 Novel U 0.005258089769964339 -0.20951897769304925 1.0 6934 +13002 Dnajc5 DnaJ heat shock protein family (Hsp40) member C5 Novel U 0.005256550583253584 -0.20953492053840123 1.0 6935 +227937 Pkp4 plakophilin 4 Novel U 0.005256304936838231 -0.20953746493589623 1.0 6936 +54139 Irf6 interferon regulatory factor 6 Novel U 0.005255458070687507 -0.20954623674764625 1.0 6937 +102920 Cenpi centromere protein I Novel N 0.005253114048732695 -0.2095705160499986 1.0 6938 +100041598 Gm3424 predicted gene 3424 Novel U 0.005251013912937994 -0.20959226918752186 1.0 6939 +73635 Ptges3l prostaglandin E synthase 3 like Novel U 0.005250662224379509 -0.20959591196604951 1.0 6940 +54120 Gipc2 GIPC PDZ domain containing family, member 2 Novel U 0.005248157915971037 -0.20962185151021978 1.0 6941 +22327 Vbp1 von Hippel-Lindau binding protein 1 Novel U 0.005247935079790788 -0.20962415964004943 1.0 6942 +54667 Atp8b2 ATPase, class I, type 8B, member 2 Novel N 0.00524776560838274 -0.20962591501932293 1.0 6943 +171235 Vmn1r236 vomeronasal 1 receptor 236 Novel U 0.005245703877648939 -0.20964727035848787 1.0 6944 +16193 Il6 interleukin 6 Novel U 0.00524363435417537 -0.2096687064145952 1.0 6945 +65967 Eefsec eukaryotic elongation factor, selenocysteine-tRNA-specific Novel U 0.005242787201780169 -0.20967748119125607 1.0 6946 +229791 Plppr4 phospholipid phosphatase related 4 Novel N 0.005242331078843957 -0.2096822056976351 1.0 6947 +258602 Or8g50 olfactory receptor family 8 subfamily G member 50 Novel U 0.00524218193767838 -0.2096837504969254 1.0 6948 +74411 Plpp6 phospholipid phosphatase 6 Novel U 0.00523661399342779 -0.20974142308043672 1.0 6949 +52206 Anapc4 anaphase promoting complex subunit 4 Novel U 0.005232224456944682 -0.20978688975503051 1.0 6950 +269198 Nbeal1 neurobeachin like 1 Novel U 0.005230431897047017 -0.20980545703152328 1.0 6951 +19130 Prox1 prospero homeobox 1 Novel U 0.005230052145926361 -0.2098093904811474 1.0 6952 +76178 Coa5 cytochrome C oxidase assembly factor 5 Novel N 0.0052300160572527005 -0.20980976428644282 1.0 6953 +13876 Erg ETS transcription factor Novel N 0.005229430556763214 -0.2098158288812656 1.0 6954 +231128 Fam193a family with sequence homology 193, member A Novel U 0.0052267730148362595 -0.20984335561318304 1.0 6955 +54723 Tfip11 tuftelin interacting protein 11 Novel U 0.005226429704896619 -0.20984691160625213 1.0 6956 +83557 Lin28a lin-28 homolog A Novel N 0.0052238986897395825 -0.20987312777804606 1.0 6957 +52202 Rbm34 RNA binding motif protein 34 Novel U 0.005220796164091836 -0.20990526363671538 1.0 6958 +73916 Ift57 intraflagellar transport 57 Novel N 0.005218231664458528 -0.2099318266396138 1.0 6959 +17904 Myl6 myosin, light polypeptide 6, alkali, smooth muscle and non-muscle Novel U 0.00521564210278712 -0.20995864923427898 1.0 6960 +19172 Psmb4 proteasome (prosome, macropain) subunit, beta type 4 Novel U 0.005213691401290191 -0.20997885453625834 1.0 6961 +54343 Atf7ip activating transcription factor 7 interacting protein Novel U 0.005211639767535459 -0.21000010529124602 1.0 6962 +271842 Rpusd2 RNA pseudouridylate synthase domain containing 2 Novel N 0.005211511230210512 -0.21000143667663237 1.0 6963 +11949 Atp5f1c ATP synthase F1 subunit gamma Novel N 0.0052083065474277865 -0.2100346306755476 1.0 6964 +19015 Ppard peroxisome proliferator activator receptor delta Novel U 0.005208159290131301 -0.21003615596178377 1.0 6965 +93719 Ear6 eosinophil-associated, ribonuclease A family, member 6 Novel U 0.005203818658455511 -0.210081116081991 1.0 6966 +102580 Alg9 ALG9 alpha-1,2-mannosyltransferase Novel U 0.005200890395151946 -0.21011144693702788 1.0 6967 +665255 Vmn2r28 vomeronasal 2, receptor 28 Novel U 0.005200623731430794 -0.21011420903108546 1.0 6968 +18700 Piga phosphatidylinositol glycan anchor biosynthesis, class A Novel U 0.005197157690301373 -0.21015011017116406 1.0 6969 +68401 G6pc3 glucose 6 phosphatase, catalytic, 3 Novel U 0.005196842758033305 -0.21015337222924385 1.0 6970 +66405 Mcts2 malignant T cell amplified sequence 2 Novel U 0.005196001523884053 -0.21016208570490774 1.0 6971 +14539 Opn1mw opsin 1 (cone pigments), medium-wave-sensitive (color blindness, deutan) Novel U 0.005195524212078681 -0.21016702968489698 1.0 6972 +21389 Tbx6 T-box 6 Novel N 0.005192844560357389 -0.2101947854293373 1.0 6973 +17123 Madcam1 mucosal vascular addressin cell adhesion molecule 1 Novel U 0.0051908349534431015 -0.21021560087169325 1.0 6974 +23928 Lamc3 laminin gamma 3 Novel N 0.0051899292224700765 -0.21022498240333753 1.0 6975 +19359 Rad23b RAD23 homolog B, nucleotide excision repair protein Novel U 0.0051865449529935525 -0.2102600365553235 1.0 6976 +271944 C2cd4d C2 calcium-dependent domain containing 4D Novel U 0.0051849118761931046 -0.21027695191113804 1.0 6977 +12013 Bach1 BTB and CNC homology 1, basic leucine zipper transcription factor 1 Novel U 0.00518445079889099 -0.21028172773467624 1.0 6978 +217715 Eif2b2 eukaryotic translation initiation factor 2B, subunit 2 beta Novel U 0.005183805103311455 -0.21028841582826296 1.0 6979 +93697 Ice2 interactor of little elongation complex ELL subunit 2 Novel N 0.005181925822215916 -0.2103078813600725 1.0 6980 +217303 Cd300a CD300A molecule Novel U 0.005180127969371839 -0.21032650346073026 1.0 6981 +106618 Wdr90 WD repeat domain 90 Novel N 0.00517963066393477 -0.21033165453409938 1.0 6982 +14283 Fosl1 fos-like antigen 1 Novel U 0.005175329815009331 -0.2103762025858863 1.0 6983 +67800 Dgat2 diacylglycerol O-acyltransferase 2 Novel U 0.005173699554363147 -0.21039308877206753 1.0 6984 +100041115 Pramel43 PRAME like 43 Novel U 0.005173196439785336 -0.2103983000163255 1.0 6985 +229214 Qrfpr pyroglutamylated RFamide peptide receptor Novel U 0.0051730400689223984 -0.21039991970058336 1.0 6986 +232334 Vgll4 vestigial like family member 4 Novel N 0.0051712980220706625 -0.21041796376460695 1.0 6987 +93730 Lztfl1 leucine zipper transcription factor-like 1 Novel U 0.005168894903142991 -0.2104428551914615 1.0 6988 +17879 Myh1 myosin, heavy polypeptide 1, skeletal muscle, adult Novel U 0.005168849422010548 -0.21044332628353624 1.0 6989 +27368 Tbl2 transducin (beta)-like 2 Novel U 0.0051670574475154865 -0.2104618874964481 1.0 6990 +68817 Ddi2 DNA-damage inducible protein 2 Novel U 0.005165582200472218 -0.21047716805682615 1.0 6991 +100862323 Btbd35f22 BTB domain containing 35, family member 22 Novel U 0.005164186049896323 -0.2104916293385953 1.0 6992 +66481 Rps21 ribosomal protein S21 Novel N 0.005158580506180803 -0.21054969137612828 1.0 6993 +100039753 Gm20815 predicted gene, 20815 Novel U 0.0051561725276717514 -0.21057463313836705 1.0 6994 +17992 Ndufa4 Ndufa4, mitochondrial complex associated Novel U 0.005154300078015198 -0.21059402791035614 1.0 6995 +217732 Cipc CLOCK interacting protein, circadian Novel U 0.005150858439496266 -0.21062967628899748 1.0 6996 +218877 Sema3g sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3G Novel U 0.005149598174414644 -0.21064273007328393 1.0 6997 +71351 5430402E10Rik RIKEN cDNA 5430402E10 gene Novel U 0.0051467610178514795 -0.2106721172476987 1.0 6998 +233280 Nipa1 non imprinted in Prader-Willi/Angelman syndrome 1 homolog (human) Novel U 0.005144690001469774 -0.21069356876729942 1.0 6999 +21379 Tbrg4 transforming growth factor beta regulated gene 4 Novel N 0.0051392947933315 -0.21074945215583774 1.0 7000 +13433 Dnmt1 DNA methyltransferase 1 Novel N 0.005135907666128525 -0.21078453590806034 1.0 7001 +66940 Shisa5 shisa family member 5 Novel U 0.005135804364886472 -0.2107856058989297 1.0 7002 +230257 Ptbp3 polypyrimidine tract binding protein 3 Novel N 0.005132616599569178 -0.21081862466729406 1.0 7003 +12160 Bmp5 bone morphogenetic protein 5 Novel U 0.005132166551925077 -0.21082328624599714 1.0 7004 +243771 Parp12 poly (ADP-ribose) polymerase family, member 12 Novel N 0.005126706616902483 -0.21087984007347552 1.0 7005 +20719 Serpinb6a serine (or cysteine) peptidase inhibitor, clade B, member 6a Novel U 0.00512601200417501 -0.2108870348492725 1.0 7006 +258206 Or4c3 olfactory receptor family 4 subfamily C member 3 Novel U 0.005125368091454385 -0.21089370447606526 1.0 7007 +69090 Ascc1 activating signal cointegrator 1 complex subunit 1 Novel U 0.005123885412568953 -0.2109090620152201 1.0 7008 +230775 Adgrb2 adhesion G protein-coupled receptor B2 Novel N 0.005123190505655205 -0.21091625983818887 1.0 7009 +11421 Ace angiotensin I converting enzyme Novel U 0.005121884026799612 -0.21092979230322692 1.0 7010 +14030 Ewsr1 Ewing sarcoma breakpoint region 1 Novel U 0.005121376379413669 -0.21093505049816252 1.0 7011 +70827 Trak2 trafficking protein, kinesin binding 2 Novel U 0.005121253810851836 -0.21093632005929674 1.0 7012 +13806 Eno1 enolase 1, alpha non-neuron Novel U 0.00512071676265893 -0.21094188278682438 1.0 7013 +213895 Bms1 BMS1, ribosome biogenesis factor Novel N 0.005120339127494061 -0.210945794319448 1.0 7014 +381305 Rc3h1 RING CCCH (C3H) domains 1 Novel U 0.005119212608385546 -0.21095746276734167 1.0 7015 +66975 Trappc13 trafficking protein particle complex 13 Novel U 0.005118306227431924 -0.21096685103146362 1.0 7016 +245026 Col6a6 collagen, type VI, alpha 6 Novel U 0.005106032075413729 -0.21109398629457707 1.0 7017 +229600 BC028528 cDNA sequence BC028528 Novel U 0.005097679289120578 -0.21118050418041848 1.0 7018 +75704 Ces1h carboxylesterase 1H Novel U 0.005096812176471024 -0.21118948570473775 1.0 7019 +75974 Dock11 dedicator of cytokinesis 11 Novel U 0.005096373525247104 -0.21119402923969524 1.0 7020 +67563 Ciao3 cytosolic iron-sulfur assembly component 3 Novel N 0.0050960673265388005 -0.21119720083585009 1.0 7021 +319468 Ppm1h protein phosphatase 1H (PP2C domain containing) Novel U 0.00509527202923444 -0.2112054384991847 1.0 7022 +76454 Fbxo31 F-box protein 31 Novel U 0.005094092018178304 -0.21121766101491338 1.0 7023 +114871 Psg28 pregnancy-specific beta-1-glycoprotein 28 Novel U 0.005091065418045771 -0.21124901043959204 1.0 7024 +69301 Tescl tescalcin-like Novel U 0.005085411663852002 -0.21130757183967394 1.0 7025 +110196 Fdps farnesyl diphosphate synthetase Novel N 0.005084959404082557 -0.21131225633149864 1.0 7026 +56222 Cited4 Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 4 Novel U 0.005082654961835949 -0.21133612566853452 1.0 7027 +209086 Samd9l sterile alpha motif domain containing 9-like Novel U 0.005082047598479136 -0.21134241671821838 1.0 7028 +22226 Ucn urocortin Novel U 0.005080824750728081 -0.21135508293502486 1.0 7029 +328759 Vmn2r95 vomeronasal 2, receptor 95 Novel U 0.0050792435768307045 -0.21137146068227558 1.0 7030 +26875 Pclo piccolo (presynaptic cytomatrix protein) Novel N 0.005078221709573303 -0.2113820451497357 1.0 7031 +17064 Cd93 CD93 antigen Novel N 0.005077983922188373 -0.21138450814365198 1.0 7032 +52150 Kcnk6 potassium inwardly-rectifying channel, subfamily K, member 6 Novel N 0.005074400969720092 -0.2114216202475352 1.0 7033 +257929 Or14c43 olfactory receptor family 14 subfamily C member 43 Novel U 0.005071865214685928 -0.2114478855148206 1.0 7034 +56692 Lamtor3 late endosomal/lysosomal adaptor, MAPK and MTOR activator 3 Novel N 0.0050714496519523415 -0.2114521898999542 1.0 7035 +11720 Mat1a methionine adenosyltransferase 1A Novel U 0.005070260061406342 -0.211464511639724 1.0 7036 +382620 Tmed8 transmembrane p24 trafficking protein 8 Novel U 0.00506976729071201 -0.21146961574237694 1.0 7037 +20724 Serpinb5 serine (or cysteine) peptidase inhibitor, clade B, member 5 Novel U 0.005068078958013417 -0.21148710343696797 1.0 7038 +56812 Dnajb2 DnaJ heat shock protein family (Hsp40) member B2 Novel U 0.005067755047572432 -0.21149045849066772 1.0 7039 +381259 Tmem237 transmembrane protein 237 Novel U 0.005067590844458056 -0.21149215930112855 1.0 7040 +100043861 Klrb1 killer cell lectin-like receptor subfamily B member 1 Novel U 0.005066185353552765 -0.21150671732972254 1.0 7041 +16009 Igfbp3 insulin-like growth factor binding protein 3 Novel U 0.005063696134353001 -0.21153250058036502 1.0 7042 +626942 Vmn2r90 vomeronasal 2, receptor 90 Novel U 0.005063557454707039 -0.21153393701957904 1.0 7043 +100042855 Gm10267 predicted gene 10267 Novel U 0.005063019493454237 -0.21153950920455103 1.0 7044 +58245 Gpr180 G protein-coupled receptor 180 Novel U 0.005062237866466515 -0.2115476052711953 1.0 7045 +67052 Ndc80 NDC80 kinetochore complex component Novel U 0.005058686192264399 -0.2115843933958258 1.0 7046 +224897 Dpp9 dipeptidylpeptidase 9 Novel U 0.005057967567976635 -0.21159183688257496 1.0 7047 +18521 Pcbp2 poly(rC) binding protein 2 Novel U 0.005055837085083449 -0.21161390435434674 1.0 7048 +213989 Tmem82 transmembrane protein 82 Novel U 0.005050678052360767 -0.21166734144569418 1.0 7049 +110332 Pp2d1 protein phosphatase 2C-like domain containing 1 Novel U 0.005049624925348748 -0.211678249700665 1.0 7050 +226977 Actr1b ARP1 actin-related protein 1B, centractin beta Novel U 0.005046279035347672 -0.21171290631930592 1.0 7051 +59002 Wrap73 WD repeat containing, antisense to Trp73 Novel U 0.005045179340348921 -0.21172429692395245 1.0 7052 +258325 Or5v1 olfactory receptor family 5 subfamily V member 1 Novel U 0.005041022775134931 -0.21176735048979925 1.0 7053 +81701 Egfl8 EGF-like domain 8 Novel U 0.005038156739915076 -0.21179703678839068 1.0 7054 +107515 Lgr4 leucine-rich repeat-containing G protein-coupled receptor 4 Novel U 0.005031709599695938 -0.21186381605484222 1.0 7055 +212514 Spice1 spindle and centriole associated protein 1 Novel U 0.005028332398864092 -0.21189879699003897 1.0 7056 +17931 Ppp1r12a protein phosphatase 1, regulatory subunit 12A Novel U 0.005027249845704681 -0.21191001004007715 1.0 7057 +277562 Or4k40 olfactory receptor family 4 subfamily K member 40 Novel U 0.0050268921110738825 -0.21191371544362306 1.0 7058 +66105 Ube2d3 ubiquitin-conjugating enzyme E2D 3 Novel U 0.005026408182680136 -0.2119187279580172 1.0 7059 +56325 Abcb9 ATP-binding cassette, sub-family B member 9 Novel U 0.005025784186082863 -0.21192519129425896 1.0 7060 +230857 Ece1 endothelin converting enzyme 1 Novel U 0.005022450924815925 -0.21195971710488684 1.0 7061 +67398 Srpra signal recognition particle receptor alpha Novel U 0.005022092434396366 -0.2119634303368679 1.0 7062 +13135 Dad1 defender against cell death 1 Novel N 0.005021518280758233 -0.21196937740137742 1.0 7063 +16475 Ajuba ajuba LIM protein Novel U 0.005020901928102814 -0.21197576156192072 1.0 7064 +11982 Atp10a ATPase, class V, type 10A Novel U 0.00501934786011574 -0.2119918585470436 1.0 7065 +19249 Ptpn13 protein tyrosine phosphatase, non-receptor type 13 Novel U 0.005018513380307915 -0.212000502061461 1.0 7066 +70574 Cpm carboxypeptidase M Novel N 0.005017899208122767 -0.21200686363676494 1.0 7067 +71340 Riok1 RIO kinase 1 Novel N 0.005016900941089375 -0.21201720365388058 1.0 7068 +71538 Fbxo9 f-box protein 9 Novel U 0.005011854796030677 -0.21206947145851546 1.0 7069 +21413 Tcf4 transcription factor 4 Novel U 0.005010137135735201 -0.21208726292739097 1.0 7070 +228136 Zdhhc5 zinc finger, DHHC domain containing 5 Novel U 0.005009979784337743 -0.2120888927679932 1.0 7071 +100036521 Umad1 UMAP1-MVP12 associated (UMA) domain containing 1 Novel U 0.005008762090602893 -0.21210150559966925 1.0 7072 +69537 Dnase1l1 deoxyribonuclease 1-like 1 Novel N 0.005008349173867437 -0.2121057825776412 1.0 7073 +68537 Mrpl13 mitochondrial ribosomal protein L13 Novel U 0.005004348457759682 -0.21214722186356885 1.0 7074 +71336 Rbks ribokinase Novel N 0.005004326846361495 -0.21214744571372085 1.0 7075 +623734 Vmn2r85 vomeronasal 2, receptor 85 Novel U 0.005002557359601313 -0.21216577399941408 1.0 7076 +13712 Elk1 ELK1, member of ETS oncogene family Novel N 0.005001488600397874 -0.21217684417210975 1.0 7077 +22038 Plscr1 phospholipid scramblase 1 Novel U 0.0050005973190120805 -0.2121860760354045 1.0 7078 +58518 Cts6 cathepsin 6 Novel U 0.005000521752601803 -0.212186858749798 1.0 7079 +80890 Trim2 tripartite motif-containing 2 Novel N 0.004996428917698903 -0.21222925219917754 1.0 7080 +258153 Or1d2 olfactory receptor family 1 subfamily D member 2 Novel N 0.004994830464178683 -0.21224580892819367 1.0 7081 +94064 Mrpl27 mitochondrial ribosomal protein L27 Novel U 0.00499421975675566 -0.21225213461560544 1.0 7082 +67080 1700019D03Rik RIKEN cDNA 1700019D03 gene Novel U 0.004992243910977984 -0.21227260036121814 1.0 7083 +230809 Pdik1l PDLIM1 interacting kinase 1 like Novel U 0.004989090575785571 -0.21230526250348086 1.0 7084 +100039479 Vmn1r186 vomeronasal 1 receptor Vmn1r186 Novel U 0.004987861155619039 -0.2123179967971508 1.0 7085 +66290 Atp6v1g1 ATPase, H+ transporting, lysosomal V1 subunit G1 Novel N 0.00498429185163863 -0.21235496753044533 1.0 7086 +234329 Trim60 tripartite motif-containing 60 Novel N 0.004982629402920576 -0.21237218711961686 1.0 7087 +19013 Ppara peroxisome proliferator activated receptor alpha Novel U 0.004980974581993808 -0.212389327700377 1.0 7088 +64099 Parvg parvin, gamma Novel N 0.00498087926106119 -0.21239031503146358 1.0 7089 +100039796 Tgtp2 T cell specific GTPase 2 Novel U 0.004977478080773359 -0.21242554434507716 1.0 7090 +67900 Mtfp1 mitochondrial fission process 1 Novel U 0.004977379645112123 -0.21242656393842033 1.0 7091 +18074 Nid2 nidogen 2 Novel N 0.004977017651648944 -0.21243031345481206 1.0 7092 +13730 Emp1 epithelial membrane protein 1 Novel N 0.004973614563269673 -0.21246556253237406 1.0 7093 +629378 Dact3 dishevelled-binding antagonist of beta-catenin 3 Novel N 0.004972797900708761 -0.21247402149633363 1.0 7094 +17877 Myf5 myogenic factor 5 Novel N 0.004971715189164561 -0.21248523618691623 1.0 7095 +11534 Adk adenosine kinase Novel N 0.004971247690437654 -0.21249007852336135 1.0 7096 +70292 Afap1 actin filament associated protein 1 Novel U 0.004970689969746735 -0.2124958553759438 1.0 7097 +258754 Or6d14 olfactory receptor family 6 subfamily D member 14 Novel U 0.004970600373216961 -0.2124967834138539 1.0 7098 +12833 Col6a1 collagen, type VI, alpha 1 Novel U 0.004970084358996713 -0.21250212827218412 1.0 7099 +57260 Ltb4r2 leukotriene B4 receptor 2 Novel U 0.004968400389135391 -0.21251957077665018 1.0 7100 +19348 Kif20a kinesin family member 20A Novel U 0.004967684250112817 -0.21252698852110422 1.0 7101 +20102 Rps4x ribosomal protein S4, X-linked Novel N 0.004966957007503142 -0.2125345212761484 1.0 7102 +113856 Vmn1r46 vomeronasal 1 receptor 46 Novel U 0.0049662318714819974 -0.21254203221121787 1.0 7103 +66771 Gid4 GID complex subunit 4, VID24 homolog Novel U 0.004965128343500646 -0.21255346251777216 1.0 7104 +216543 Cep68 centrosomal protein 68 Novel N 0.004963459613305655 -0.21257074717027533 1.0 7105 +109242 Kif24 kinesin family member 24 Novel U 0.004957604362548122 -0.2126313956651409 1.0 7106 +19039 Lgals3bp lectin, galactoside-binding, soluble, 3 binding protein Novel U 0.004957033460101228 -0.2126373090539184 1.0 7107 +102247 Gpat4 glycerol-3-phosphate acyltransferase 4 Novel U 0.004954127556305817 -0.21266740830990483 1.0 7108 +11818 Apoh apolipoprotein H Novel U 0.004949976144786631 -0.21271040849395023 1.0 7109 +18391 Sigmar1 sigma non-opioid intracellular receptor 1 Novel U 0.004949917308843386 -0.21271101791471625 1.0 7110 +18779 Pla2r1 phospholipase A2 receptor 1 Novel U 0.004948034798138601 -0.2127305168987122 1.0 7111 +17384 Mmp10 matrix metallopeptidase 10 Novel U 0.004946726331837157 -0.21274406994964906 1.0 7112 +22293 Slc45a2 solute carrier family 45, member 2 Novel U 0.004946383243506193 -0.21274762364730276 1.0 7113 +12830 Col4a5 collagen, type IV, alpha 5 Novel U 0.004945934394944219 -0.21275227280595257 1.0 7114 +93687 Csnk1a1 casein kinase 1, alpha 1 Novel U 0.00494547210984016 -0.21275706113986362 1.0 7115 +16563 Kif2a kinesin family member 2A Novel U 0.004943600209284658 -0.2127764502242821 1.0 7116 +16176 Il1b interleukin 1 beta Novel U 0.00494314835941447 -0.21278113047038374 1.0 7117 +258163 Or56b1b olfactory receptor family 56 subfamily B member 1B Novel U 0.004942270366509906 -0.21279022469202674 1.0 7118 +22305 Vmn2r37 vomeronasal 2, receptor 37 Novel U 0.004940775048777904 -0.21280571314393892 1.0 7119 +215274 Il1f10 interleukin 1 family, member 10 Novel U 0.004940739400832734 -0.2128060823841831 1.0 7120 +18783 Pla2g4a phospholipase A2, group IVA (cytosolic, calcium-dependent) Novel U 0.004940286045276341 -0.21281077822613298 1.0 7121 +17199 Mc1r melanocortin 1 receptor Novel U 0.004939872991382115 -0.21281505662479092 1.0 7122 +11432 Acp2 acid phosphatase 2, lysosomal Novel U 0.004937697839105986 -0.2128375867805628 1.0 7123 +72265 Tram1 translocating chain-associating membrane protein 1 Novel U 0.004936983664882064 -0.21284498417369696 1.0 7124 +73181 Nfatc4 nuclear factor of activated T cells, cytoplasmic, calcineurin dependent 4 Novel N 0.004936307202359196 -0.21285199095027135 1.0 7125 +242506 Frmd3 FERM domain containing 3 Novel U 0.00493171894842864 -0.21289951593365333 1.0 7126 +11596 Ager advanced glycosylation end product-specific receptor Novel U 0.004931032218424287 -0.21290662906046337 1.0 7127 +217219 Fam171a2 family with sequence similarity 171, member A2 Novel U 0.004930795183938908 -0.21290908425587085 1.0 7128 +27403 Abca7 ATP-binding cassette, sub-family A member 7 Novel U 0.004930567273928041 -0.21291144494027128 1.0 7129 +20832 Ssr4 signal sequence receptor, delta Novel U 0.004929538835196107 -0.21292209747484853 1.0 7130 +72902 Spock3 sparc/osteonectin, cwcv and kazal-like domains proteoglycan 3 Novel N 0.004929416393043205 -0.21292336572664322 1.0 7131 +140806 Il25 interleukin 25 Novel U 0.004927442707676092 -0.21294380909479438 1.0 7132 +66245 Hspbp1 HSPA (heat shock 70kDa) binding protein, cytoplasmic cochaperone 1 Novel U 0.004927157652741679 -0.21294676168443435 1.0 7133 +83409 Lamtor2 late endosomal/lysosomal adaptor, MAPK and MTOR activator 2 Novel U 0.00492364613703326 -0.2129831338487073 1.0 7134 +12391 Cav3 caveolin 3 Novel U 0.00492033799107407 -0.21301739951580315 1.0 7135 +100608 Noc4l NOC4 like Novel U 0.004919659280955679 -0.21302442957289805 1.0 7136 +54411 Atp6ap1 ATPase, H+ transporting, lysosomal accessory protein 1 Novel U 0.004918816253105383 -0.21303316162765837 1.0 7137 +16617 Klk1b24 kallikrein 1-related peptidase b24 Novel U 0.004917544326909233 -0.21304633619738578 1.0 7138 +170741 Pilrb1 paired immunoglobin-like type 2 receptor beta 1 Novel U 0.004914928788420909 -0.21307342785906663 1.0 7139 +74375 Gcc1 golgi coiled coil 1 Novel U 0.004914841757270571 -0.2130743293248608 1.0 7140 +17718 ND3 NADH dehydrogenase subunit 3 Novel N 0.004914079563376577 -0.21308222410415906 1.0 7141 +78908 Igsf3 immunoglobulin superfamily, member 3 Novel U 0.0049135868546837025 -0.2130873275646029 1.0 7142 +20981 Syt3 synaptotagmin III Novel U 0.004912099469400288 -0.21310273385247336 1.0 7143 +215798 Adgrg6 adhesion G protein-coupled receptor G6 Novel U 0.004909716250360891 -0.21312741915693936 1.0 7144 +20420 Shd src homology 2 domain-containing transforming protein D Novel U 0.004907843940868015 -0.2131468124771177 1.0 7145 +14489 Mtpn myotrophin Novel U 0.004907046085075721 -0.2131550766411862 1.0 7146 +59030 Mkks McKusick-Kaufman syndrome Novel N 0.004902859094050503 -0.21319844535658547 1.0 7147 +100503043 Armcx4 armadillo repeat containing, X-linked 4 Novel U 0.004902096318315996 -0.2132063461625686 1.0 7148 +70405 Calml3 calmodulin-like 3 Novel U 0.004900069448220423 -0.21322734041638877 1.0 7149 +56484 Foxo3 forkhead box O3 Novel U 0.004899429766266693 -0.2132339662210371 1.0 7150 +99650 4933434E20Rik RIKEN cDNA 4933434E20 gene Novel U 0.004898431453722304 -0.2132443067095541 1.0 7151 +212733 Bicdl2 BICD family like cargo adaptor 2 Novel U 0.004898104011887278 -0.21324769834131724 1.0 7152 +16865 Eif2d eukaryotic translation initiation factor 2D Novel U 0.0048941207820121305 -0.2132889565054224 1.0 7153 +19302 Pex2 peroxisomal biogenesis factor 2 Novel U 0.004892660521338685 -0.21330408183747449 1.0 7154 +269389 Tox2 TOX high mobility group box family member 2 Novel N 0.004889173495573027 -0.21334020033572534 1.0 7155 +109676 Ank2 ankyrin 2, brain Novel U 0.004887398109353967 -0.21335858972781968 1.0 7156 +59036 Dact1 dishevelled-binding antagonist of beta-catenin 1 Novel U 0.004887165497688305 -0.21336099911180592 1.0 7157 +75820 Wdr64 WD repeat domain 64 Novel U 0.004886229741220281 -0.21337069164654038 1.0 7158 +54141 Spag5 sperm associated antigen 5 Novel U 0.004885478401262147 -0.21337847400112778 1.0 7159 +258907 Or7g32 olfactory receptor family 7 subfamily G member 32 Novel U 0.004876246846927401 -0.21347409413745608 1.0 7160 +20388 Sftpb surfactant associated protein B Novel U 0.004874739684547032 -0.21348970527584663 1.0 7161 +319758 Rfx7 regulatory factor X, 7 Novel U 0.0048734594962283615 -0.2135029654243675 1.0 7162 +66072 Sdhaf2 succinate dehydrogenase complex assembly factor 2 Novel U 0.0048725816330463245 -0.21351205830234884 1.0 7163 +16504 Kcnc3 potassium voltage gated channel, Shaw-related subfamily, member 3 Novel U 0.004870877885968002 -0.21352970565857843 1.0 7164 +12671 Chrm3 cholinergic receptor, muscarinic 3, cardiac Novel U 0.004869796154317295 -0.21354091019945645 1.0 7165 +320722 Akain1 A kinase anchor inhibitor 1 Novel N 0.0048657366121737265 -0.21358295880352926 1.0 7166 +210582 Coq10a coenzyme Q10A Novel U 0.00486541089749654 -0.2135863325454483 1.0 7167 +53870 Cntn6 contactin 6 Novel N 0.0048640407392283565 -0.2136005245997486 1.0 7168 +73192 Xpot exportin, tRNA (nuclear export receptor for tRNAs) Novel N 0.004861961822101515 -0.21362205795500772 1.0 7169 +231070 Insig1 insulin induced gene 1 Novel U 0.00486185900499533 -0.21362312293121363 1.0 7170 +19286 Pts 6-pyruvoyl-tetrahydropterin synthase Novel U 0.0048607596066648304 -0.21363451046298015 1.0 7171 +436522 Try10 trypsin 10 Novel U 0.00486063147120842 -0.21363583768582545 1.0 7172 +27062 Cadps Ca2+-dependent secretion activator Novel U 0.004859004826515806 -0.21365268641807847 1.0 7173 +54632 Ftsj1 FtsJ RNA 2'-O-methyltransferase 1 Novel U 0.004858249829897453 -0.2136605066482322 1.0 7174 +18569 Pdcd4 programmed cell death 4 Novel U 0.00485658631613636 -0.21367773726908454 1.0 7175 +93723 Pcdhga11 protocadherin gamma subfamily A, 11 Novel U 0.004855684773591038 -0.2136870754171324 1.0 7176 +67605 Akt1s1 AKT1 substrate 1 Novel U 0.0048540290903473105 -0.21370422492974323 1.0 7177 +20597 Smpd1 sphingomyelin phosphodiesterase 1, acid lysosomal Novel U 0.0048532784936444135 -0.21371199958571732 1.0 7178 +52335 Atxn1l ataxin 1-like Novel U 0.00484431255475684 -0.21380486848597544 1.0 7179 +66637 Tsen15 tRNA splicing endonuclease subunit 15 Novel N 0.004843750553976044 -0.21381068967158817 1.0 7180 +73420 Ccsap centriole, cilia and spindle associated protein Novel U 0.0048429218037210585 -0.2138192738394856 1.0 7181 +69169 Fcmr Fc fragment of IgM receptor Novel U 0.004840156935393868 -0.2138479122547285 1.0 7182 +387515 Tas2r144 taste receptor, type 2, member 144 Novel N 0.004839626412269717 -0.2138534073958084 1.0 7183 +59091 Jph2 junctophilin 2 Novel N 0.004839049986989905 -0.21385937798990776 1.0 7184 +15896 Icam2 intercellular adhesion molecule 2 Novel U 0.004838897235228926 -0.21386096018762654 1.0 7185 +66148 Dnajc15 DnaJ heat shock protein family (Hsp40) member C15 Novel U 0.004837652893156622 -0.21387384904190593 1.0 7186 +19277 Ptpro protein tyrosine phosphatase receptor type O Novel U 0.004836294587329833 -0.21388791832900791 1.0 7187 +13489 Drd2 dopamine receptor D2 Novel U 0.0048356487949125105 -0.21389460742563723 1.0 7188 +100862059 Gm21440 predicted gene, 21440 Novel U 0.004831732464841386 -0.21393517264377154 1.0 7189 +64381 Ms4a8a membrane-spanning 4-domains, subfamily A, member 8A Novel U 0.004829828247341535 -0.21395489646603724 1.0 7190 +258322 Or52m1 olfactory receptor family 52 subfamily M member 1 Novel U 0.004828267496051603 -0.2139710626765914 1.0 7191 +77578 Bcl9 B cell CLL/lymphoma 9 Novel N 0.004826802206131396 -0.21398624010141612 1.0 7192 +12394 Runx1 runt related transcription factor 1 Novel U 0.00482649350475915 -0.21398943762008182 1.0 7193 +26451 Rpl27a ribosomal protein L27A Novel U 0.004825294355539668 -0.2140018583682773 1.0 7194 +67391 Fundc2 FUN14 domain containing 2 Novel N 0.004824288704748013 -0.21401227486611826 1.0 7195 +12696 Cirbp cold inducible RNA binding protein Novel U 0.004823134730022057 -0.21402422769839485 1.0 7196 +19696 Rel reticuloendotheliosis oncogene Novel U 0.004822162043493375 -0.21403430275348356 1.0 7197 +319997 A630001G21Rik RIKEN cDNA A630001G21 gene Novel U 0.004822058317505078 -0.21403537714386056 1.0 7198 +13200 Ddost dolichyl-di-phosphooligosaccharide-protein glycotransferase Novel N 0.004819101355840461 -0.21406600525557778 1.0 7199 +17870 Mycs myc-like oncogene, s-myc protein Novel U 0.004816737762770807 -0.21409048727489433 1.0 7200 +57875 Angptl4 angiopoietin-like 4 Novel U 0.004816428863138773 -0.2140936868471284 1.0 7201 +110789 Adgrv1 adhesion G protein-coupled receptor V1 Novel U 0.0048142811194415895 -0.21411593310574056 1.0 7202 +269831 Tspan12 tetraspanin 12 Novel N 0.004813529590155901 -0.21412371742137654 1.0 7203 +17388 Mmp15 matrix metallopeptidase 15 Novel U 0.004811578625337826 -0.21414392545082764 1.0 7204 +14615 Gjc1 gap junction protein, gamma 1 Novel U 0.004808717662275468 -0.21417355921217845 1.0 7205 +12623 Ces1g carboxylesterase 1G Novel U 0.0048075225664848216 -0.2141859379750913 1.0 7206 +233979 Tpcn2 two pore segment channel 2 Novel U 0.004805362021835197 -0.21420831682554803 1.0 7207 +12649 Chek1 checkpoint kinase 1 Novel U 0.00480398070935258 -0.2142226244148348 1.0 7208 +118568141 LOC118568141 disks large homolog 5-like Novel U 0.004803029512869044 -0.21423247687674238 1.0 7209 +56544 Vmn2r1 vomeronasal 2, receptor 1 Novel U 0.004802689753051885 -0.21423599609775945 1.0 7210 +258333 Or8c15 olfactory receptor family 8 subfamily C member 15 Novel U 0.004800375995320258 -0.214259961924283 1.0 7211 +330222 Sdk1 sidekick cell adhesion molecule 1 Novel U 0.004793864824740338 -0.21432740441510661 1.0 7212 +76857 Spopl speckle-type BTB/POZ protein-like Novel U 0.004790125642679604 -0.2143661347399727 1.0 7213 +16613 Klk1b11 kallikrein 1-related peptidase b11 Novel U 0.00478902214500307 -0.21437756473263073 1.0 7214 +23997 Psmd13 proteasome (prosome, macropain) 26S subunit, non-ATPase, 13 Novel U 0.004787134854857528 -0.21439711322191693 1.0 7215 +545140 Or10ad1c olfactory receptor family 10 subfamily AD member 1C Novel U 0.0047859264437930225 -0.21440962990399867 1.0 7216 +71810 Ranbp3 RAN binding protein 3 Novel U 0.00478521587902341 -0.2144169899105238 1.0 7217 +246278 Cd207 CD207 antigen Novel N 0.004783554597540104 -0.21443419740951616 1.0 7218 +12097 Bglap2 bone gamma-carboxyglutamate protein 2 Novel U 0.004783148167756428 -0.21443840719585483 1.0 7219 +70415 Stk26 serine/threonine kinase 26 Novel U 0.004781723585522291 -0.2144531629718054 1.0 7220 +54709 Eif3i eukaryotic translation initiation factor 3, subunit I Novel N 0.004781215295645155 -0.21445842782164362 1.0 7221 +209047 Gipc3 GIPC PDZ domain containing family, member 3 Novel N 0.004781048221911377 -0.21446015836588586 1.0 7222 +20014 Rpn2 ribophorin II Novel N 0.004779902299835371 -0.21447202778907898 1.0 7223 +276846 Pigs phosphatidylinositol glycan anchor biosynthesis, class S Novel U 0.004778879148426476 -0.21448262555773803 1.0 7224 +19252 Dusp1 dual specificity phosphatase 1 Novel U 0.004777659633807862 -0.21449525725006827 1.0 7225 +18021 Nfatc3 nuclear factor of activated T cells, cytoplasmic, calcineurin dependent 3 Novel N 0.004771079863740824 -0.21456341029212433 1.0 7226 +20737 Spn sialophorin Novel U 0.004771063749336676 -0.21456357720459276 1.0 7227 +20514 Slc1a5 solute carrier family 1 (neutral amino acid transporter), member 5 Novel U 0.0047693100865859464 -0.21458174158571627 1.0 7228 +93728 Pabpc5 poly(A) binding protein, cytoplasmic 5 Novel U 0.0047671156787342595 -0.21460447119010678 1.0 7229 +17922 Myo7b myosin VIIB Novel N 0.004766221613881457 -0.21461373188446128 1.0 7230 +243084 Tmprss11e transmembrane protease, serine 11e Novel N 0.004763640542434719 -0.21464046653765848 1.0 7231 +258601 Or4d5 olfactory receptor family 4 subfamily D member 5 Novel U 0.004760802938284878 -0.2146698583481613 1.0 7232 +238555 Btn2a2 butyrophilin, subfamily 2, member A2 Novel U 0.00475747951030291 -0.2147042823059467 1.0 7233 +170711 Otud7a OTU domain containing 7A Novel N 0.004755323471414897 -0.2147266144858728 1.0 7234 +71617 Armh3 armadillo-like helical domain containing 3 Novel U 0.004754862523550107 -0.21473138896870342 1.0 7235 +214505 Gnptg N-acetylglucosamine-1-phosphotransferase, gamma subunit Novel U 0.0047534470724664565 -0.21474605016449744 1.0 7236 +29856 Smtn smoothelin Novel N 0.0047508379898278654 -0.214773074956699 1.0 7237 +140488 Igf2bp3 insulin-like growth factor 2 mRNA binding protein 3 Novel N 0.004750093273718234 -0.21478078870168132 1.0 7238 +12450 Ccng1 cyclin G1 Novel U 0.0047500425159731135 -0.21478131444873672 1.0 7239 +117592 B3galt6 UDP-Gal:betaGal beta 1,3-galactosyltransferase, polypeptide 6 Novel U 0.004748813284888342 -0.21479404678390399 1.0 7240 +237831 Slc13a5 solute carrier family 13 (sodium-dependent citrate transporter), member 5 Novel U 0.004746552023938283 -0.21481746885048977 1.0 7241 +27049 Etv3 ets variant 3 Novel U 0.004742968522060132 -0.21485458664514237 1.0 7242 +12426 Cckbr cholecystokinin B receptor Novel N 0.0047403032787816084 -0.2148821931474062 1.0 7243 +67938 Myl12b myosin, light chain 12B, regulatory Novel U 0.004739653333371928 -0.21488892526059383 1.0 7244 +103573 Xpo1 exportin 1 Novel U 0.004738428657796907 -0.21490161040994085 1.0 7245 +319520 Dusp4 dual specificity phosphatase 4 Novel U 0.004734228980208585 -0.21494511053234375 1.0 7246 +56463 Snd1 staphylococcal nuclease and tudor domain containing 1 Novel N 0.004732895520748265 -0.21495892246159862 1.0 7247 +399591 Tmsb15l thymosin beta 15b like Novel U 0.004731133562613558 -0.21497717276603664 1.0 7248 +100038941 Vmn2r121 vomeronasal 2, receptor 121 Novel U 0.004724745897170177 -0.215043335994716 1.0 7249 +231871 Daglb diacylglycerol lipase, beta Novel N 0.004722760921402894 -0.21506389630846096 1.0 7250 +14810 Grin1 glutamate receptor, ionotropic, NMDA1 (zeta 1) Novel U 0.004720139282516623 -0.21509105115786323 1.0 7251 +231912 Katnal1 katanin p60 subunit A-like 1 Novel N 0.004719221012354008 -0.2151005625700211 1.0 7252 +58234 Shank3 SH3 and multiple ankyrin repeat domains 3 Novel U 0.004716724274783609 -0.21512642369569945 1.0 7253 +208618 Etl4 enhancer trap locus 4 Novel U 0.004714944567459519 -0.21514485784565765 1.0 7254 +217366 Lrrc45 leucine rich repeat containing 45 Novel U 0.004710958808324212 -0.2151861422077564 1.0 7255 +666244 Tmsb15b1 thymosin beta 15b1 Novel U 0.0047090182765762625 -0.2152062421718101 1.0 7256 +94186 Strn3 striatin, calmodulin binding protein 3 Novel U 0.004708390176607671 -0.2152127480106371 1.0 7257 +258675 Or4d11 olfactory receptor family 4 subfamily D member 11 Novel U 0.0047083121916288405 -0.2152135557764842 1.0 7258 +20028 Pdc phosducin Novel N 0.004707750891111485 -0.21521936970879124 1.0 7259 +264064 Cdk8 cyclin dependent kinase 8 Novel N 0.004707616839337613 -0.21522075821265826 1.0 7260 +70435 Inf2 inverted formin, FH2 and WH2 domain containing Novel N 0.004706843931589378 -0.21522876396570653 1.0 7261 +114642 Brdt bromodomain, testis-specific Novel N 0.004704086073598535 -0.21525732976811596 1.0 7262 +16518 Kcnj2 potassium inwardly-rectifying channel, subfamily J, member 2 Novel U 0.004704006774483318 -0.21525815114574456 1.0 7263 +246228 Vwa1 von Willebrand factor A domain containing 1 Novel U 0.00470399248945526 -0.21525829910959557 1.0 7264 +66679 Rae1 ribonucleic acid export 1 Novel U 0.004702068466979332 -0.21527822807115243 1.0 7265 +67771 Arpc5 actin related protein 2/3 complex, subunit 5 Novel U 0.004700576315407851 -0.215293683728078 1.0 7266 +66701 Spryd4 SPRY domain containing 4 Novel U 0.004698876907588174 -0.2153112861384092 1.0 7267 +102566 Ano10 anoctamin 10 Novel N 0.004697380375494309 -0.2153267871686416 1.0 7268 +229534 Pbxip1 pre B cell leukemia transcription factor interacting protein 1 Novel N 0.004695898095690556 -0.21534214057412154 1.0 7269 +20018 Polr1d polymerase (RNA) I polypeptide D Novel U 0.004693480058668399 -0.21536718652210834 1.0 7270 +240174 Thada thyroid adenoma associated Novel N 0.004693139177715218 -0.21537071735581553 1.0 7271 +360212 Defb38 defensin beta 38 Novel U 0.004693062864282185 -0.21537150780784622 1.0 7272 +52432 Ppp2r2d protein phosphatase 2, regulatory subunit B, delta Novel U 0.004692309554761027 -0.21537931056310267 1.0 7273 +17700 Mstn myostatin Novel U 0.00469205015068896 -0.2153819974619537 1.0 7274 +228775 Trib3 tribbles pseudokinase 3 Novel U 0.004689654459380274 -0.21540681195377495 1.0 7275 +73316 Calr3 calreticulin 3 Novel U 0.004689090233716402 -0.2154126561846534 1.0 7276 +22173 Tyr tyrosinase Novel U 0.004689076563961355 -0.21541279777552685 1.0 7277 +13819 Epas1 endothelial PAS domain protein 1 Novel U 0.004686523163381514 -0.2154392458147943 1.0 7278 +17304 Mfge8 milk fat globule EGF and factor V/VIII domain containing Novel U 0.0046863445987541654 -0.21544109538133438 1.0 7279 +74306 Prss46 serine protease 46 Novel U 0.004686322926726563 -0.21544131985948387 1.0 7280 +108097 Prkab2 protein kinase, AMP-activated, beta 2 non-catalytic subunit Novel N 0.0046858031783875275 -0.2154467033956938 1.0 7281 +64293 Stk32b serine/threonine kinase 32B Novel U 0.004684927937397981 -0.21545576911309153 1.0 7282 +242667 Dlgap3 DLG associated protein 3 Novel U 0.004682921013122726 -0.21547655676876054 1.0 7283 +14308 Fshb follicle stimulating hormone beta Novel U 0.0046828359189235004 -0.21547743817167878 1.0 7284 +11648 Akp3 alkaline phosphatase 3, intestine, not Mn requiring Novel U 0.00468221956597525 -0.21548382233525523 1.0 7285 +105522 Ankrd28 ankyrin repeat domain 28 Novel U 0.004678333659074908 -0.21552407243118668 1.0 7286 +227289 Gpbar1 G protein-coupled bile acid receptor 1 Novel U 0.004677787862232212 -0.2155297257769412 1.0 7287 +72787 Ndc1 NDC1 transmembrane nucleoporin Novel U 0.004675990118359032 -0.21554834674888196 1.0 7288 +72778 Dnajc22 DnaJ heat shock protein family (Hsp40) member C22 Novel U 0.004673602991424584 -0.21557307253119642 1.0 7289 +21838 Thy1 thymus cell antigen 1, theta Novel U 0.004672780197093365 -0.21558159500783128 1.0 7290 +233230 Mrgprb4 MAS-related GPR, member B4 Novel U 0.0046688659003041744 -0.21562213916529813 1.0 7291 +66410 Mterf3 mitochondrial transcription termination factor 3 Novel N 0.004667984311251294 -0.2156312706357272 1.0 7292 +338351 Akap17b A kinase anchor protein 17B Novel U 0.0046662456512735016 -0.2156492796186218 1.0 7293 +66406 Sac3d1 SAC3 domain containing 1 Novel U 0.004662378676398931 -0.21568933361725265 1.0 7294 +20539 Slc7a5 solute carrier family 7 (cationic amino acid transporter, y+ system), member 5 Novel U 0.004660737389281901 -0.21570633401525646 1.0 7295 +66815 Mcub mitochondrial calcium uniporter dominant negative beta subunit Novel U 0.004659591045627143 -0.21571820780514842 1.0 7296 +213208 Il20rb interleukin 20 receptor beta Novel U 0.004658115082776576 -0.2157334957798349 1.0 7297 +72007 Fndc3b fibronectin type III domain containing 3B Novel U 0.004658092246040607 -0.21573373232199536 1.0 7298 +258352 Or52w1 olfactory receptor family 52 subfamily W member 1 Novel U 0.004654329393882387 -0.21577270782095312 1.0 7299 +76863 Dcun1d5 defective in cullin neddylation 1 domain containing 5 Novel N 0.004654125630326701 -0.21577481839716456 1.0 7300 +66899 Fip1l1 factor interacting with PAPOLA and CPSF1 Novel U 0.004653986142698753 -0.21577626320542945 1.0 7301 +224903 Safb scaffold attachment factor B Novel N 0.0046537366047416755 -0.2157788479113857 1.0 7302 +258526 Or2b28 olfactory receptor family 2 subfamily B member 28 Novel U 0.004651592972182833 -0.21580105158696206 1.0 7303 +74145 F13a1 coagulation factor XIII, A1 subunit Novel U 0.004649729819492797 -0.21582035006127762 1.0 7304 +56788 Scube2 signal peptide, CUB domain, EGF-like 2 Novel U 0.0046442891870295735 -0.21587670395348055 1.0 7305 +13345 Twist2 twist basic helix-loop-helix transcription factor 2 Novel U 0.004644267026218044 -0.21587693349443784 1.0 7306 +218275 BC051665 cDNA sequence BC051665 Novel U 0.004643510319910847 -0.2158847714334924 1.0 7307 +246179 Fktn fukutin Novel U 0.00464306592919524 -0.21588937441791614 1.0 7308 +13664 Eif1a eukaryotic translation initiation factor 1A Novel U 0.004641195914928113 -0.21590874396422163 1.0 7309 +327814 Ppfia2 protein tyrosine phosphatase, receptor type, f polypeptide (PTPRF), interacting protein (liprin), alpha 2 Novel U 0.004637922958039117 -0.2159426451440852 1.0 7310 +258636 Or5d16 olfactory receptor family 5 subfamily D member 16 Novel U 0.004637082882030559 -0.21595134662376583 1.0 7311 +19305 Pex5 peroxisomal biogenesis factor 5 Novel U 0.004635796266143826 -0.21596467334882538 1.0 7312 +71474 Ppp6r2 protein phosphatase 6, regulatory subunit 2 Novel U 0.004635378839703258 -0.21596899703817463 1.0 7313 +100043868 Scgb1b30 secretoglobin, family 1B, member 30 Novel U 0.00463467731524402 -0.21597626340546205 1.0 7314 +613262 Mmp24os1 matrix metallopeptidase 24 opposite strand transcript 1 Novel U 0.0046333502752319835 -0.21599000884228262 1.0 7315 +56742 Psrc1 proline/serine-rich coiled-coil 1 Novel U 0.004631568111677835 -0.216008468433791 1.0 7316 +17896 Myl4 myosin, light polypeptide 4 Novel U 0.0046312916953629765 -0.21601133154489366 1.0 7317 +67912 1600012H06Rik RIKEN cDNA 1600012H06 gene Novel U 0.00463122801371855 -0.21601199115727315 1.0 7318 +56629 Dnase2b deoxyribonuclease II beta Novel U 0.004627576551271915 -0.21604981288526007 1.0 7319 +67252 Cap2 cyclase associated actin cytoskeleton regulatory protein 2 Novel U 0.0046250979549101665 -0.2160754861048956 1.0 7320 +258723 Or6c35 olfactory receptor family 6 subfamily C member 35 Novel U 0.004624212615896477 -0.2160846564172954 1.0 7321 +12308 Calb2 calbindin 2 Novel U 0.004623561637928405 -0.21609139922568896 1.0 7322 +387131 Ssxb9 SSX member B9 Novel U 0.004623481591229577 -0.21609222834676403 1.0 7323 +229011 Samd10 sterile alpha motif domain containing 10 Novel U 0.004622894636014673 -0.2160983080095849 1.0 7324 +27207 Rps11 ribosomal protein S11 Novel N 0.0046213392024158275 -0.21611441913966964 1.0 7325 +19694 Reg3a regenerating islet-derived 3 alpha Novel U 0.004621209425340842 -0.2161157633663461 1.0 7326 +226610 Fam78b family with sequence similarity 78, member B Novel U 0.004620870849209888 -0.21611927032678044 1.0 7327 +232801 Lilra5 leukocyte immunoglobulin-like receptor, subfamily A (with TM domain), member 5 Novel U 0.004619985987081391 -0.21612843569961915 1.0 7328 +14221 Fjx1 four jointed box 1 Novel U 0.004619276787838511 -0.21613578156206323 1.0 7329 +13426 Dync1i1 dynein cytoplasmic 1 intermediate chain 1 Novel U 0.004618384151112391 -0.21614502746392852 1.0 7330 +269799 Clec4a1 C-type lectin domain family 4, member a1 Novel U 0.004617095641014046 -0.21615837380916972 1.0 7331 +320333 D830030K20Rik RIKEN cDNA D830030K20 gene Novel U 0.004615778472056621 -0.21617201700193112 1.0 7332 +227292 Ctdsp1 CTD small phosphatase 1 Novel N 0.004613401204473546 -0.21619664066140815 1.0 7333 +76784 Mtif2 mitochondrial translational initiation factor 2 Novel N 0.004613193710402187 -0.21619878987817828 1.0 7334 +170771 Khdrbs2 KH domain containing, RNA binding, signal transduction associated 2 Novel U 0.004612594083259903 -0.21620500079640637 1.0 7335 +320253 Marchf3 membrane associated ring-CH-type finger 3 Novel U 0.004611505905751185 -0.2162162721032698 1.0 7336 +22337 Vdr vitamin D (1,25-dihydroxyvitamin D3) receptor Novel U 0.004609823242288426 -0.21623370107610243 1.0 7337 +20492 Slbp stem-loop binding protein Novel N 0.004608677694788847 -0.21624556661944525 1.0 7338 +52892 Sco1 SCO1 cytochrome c oxidase assembly protein Novel N 0.004599901536761128 -0.2163364697757957 1.0 7339 +67974 Ccny cyclin Y Novel U 0.004599078336250467 -0.21634499645962388 1.0 7340 +76138 Ccdc138 coiled-coil domain containing 138 Novel U 0.0045974923053771115 -0.21636142451527215 1.0 7341 +16413 Itgb1bp1 integrin beta 1 binding protein 1 Novel U 0.004597128359956767 -0.216365194249972 1.0 7342 +53605 Nap1l1 nucleosome assembly protein 1-like 1 Novel N 0.004594384734543387 -0.21639361263181195 1.0 7343 +11991 Hnrnpd heterogeneous nuclear ribonucleoprotein D Novel N 0.004593359216980678 -0.21640423490901445 1.0 7344 +14919 Gucy2e guanylate cyclase 2e Novel U 0.004593357246636615 -0.21640425531777346 1.0 7345 +319455 Pld5 phospholipase D family member 5 Novel U 0.004592679698622337 -0.2164112733378322 1.0 7346 +19419 Rasgrp1 RAS guanyl releasing protein 1 Novel U 0.004590613569447778 -0.21643267423590193 1.0 7347 +72026 Trmu tRNA 5-methylaminomethyl-2-thiouridylate methyltransferase Novel U 0.004590375651803817 -0.21643513857903696 1.0 7348 +16998 Ltbp3 latent transforming growth factor beta binding protein 3 Novel U 0.0045895001850444934 -0.2164442066349506 1.0 7349 +382562 Pfn4 profilin family, member 4 Novel U 0.004589187057547713 -0.2164474499992687 1.0 7350 +27055 Fkbp9 FK506 binding protein 9 Novel U 0.004588482078830021 -0.21645475214565166 1.0 7351 +14068 F7 coagulation factor VII Novel U 0.004587072385066142 -0.21646935370731674 1.0 7352 +19069 Nup88 nucleoporin 88 Novel U 0.004586944982716142 -0.2164706733366699 1.0 7353 +16906 Lmnb1 lamin B1 Novel U 0.004583181813920664 -0.21650965211534598 1.0 7354 +76897 Ralyl RALY RNA binding protein-like Novel U 0.004583026606891352 -0.21651125974465343 1.0 7355 +67979 Atad1 ATPase family, AAA domain containing 1 Novel U 0.0045822483447334915 -0.21651932095850054 1.0 7356 +74569 Ttc17 tetratricopeptide repeat domain 17 Novel U 0.004582177451033813 -0.2165200552731113 1.0 7357 +22353 Vip vasoactive intestinal polypeptide Novel U 0.004581857372793969 -0.21652337063299762 1.0 7358 +66286 Sec11c SEC11 homolog C, signal peptidase complex subunit Novel N 0.004581835304865172 -0.21652359921187866 1.0 7359 +244585 Rpgrip1l Rpgrip1-like Novel U 0.004581685624897644 -0.21652514959206182 1.0 7360 +17105 Lyz2 lysozyme 2 Novel U 0.004581626358065953 -0.2165257634759562 1.0 7361 +73852 D3Ertd751e DNA segment, Chr 3, ERATO Doi 751, expressed Novel U 0.004577515698552241 -0.21656834155206858 1.0 7362 +26380 Esrrb estrogen related receptor, beta Novel N 0.004577050881511946 -0.21657315611169192 1.0 7363 +15415 Hoxb7 homeobox B7 Novel N 0.004576667537468671 -0.21657712677669042 1.0 7364 +110521 Hivep1 human immunodeficiency virus type I enhancer binding protein 1 Novel U 0.004572153243889024 -0.21662388568118895 1.0 7365 +52717 Anapc16 anaphase promoting complex subunit 16 Novel N 0.00457204621673132 -0.21662499426497014 1.0 7366 +22228 Ucp2 uncoupling protein 2 (mitochondrial, proton carrier) Novel N 0.0045718929787844816 -0.21662658149858607 1.0 7367 +320707 Atp2b3 ATPase, Ca++ transporting, plasma membrane 3 Novel N 0.004570556055135599 -0.21664042930979222 1.0 7368 +105675 Ppif peptidylprolyl isomerase F (cyclophilin F) Novel N 0.0045696692246500895 -0.21664961507080815 1.0 7369 +56420 Ppp4c protein phosphatase 4, catalytic subunit Novel N 0.00456856020254151 -0.21666110228535165 1.0 7370 +16006 Igfbp1 insulin-like growth factor binding protein 1 Novel N 0.004567434264808472 -0.21667276471137725 1.0 7371 +19411 Rarg retinoic acid receptor, gamma Novel U 0.004565703797591537 -0.21669068883392426 1.0 7372 +29806 Limd1 LIM domains containing 1 Novel U 0.004565503250640525 -0.2166927660926502 1.0 7373 +12523 Cd84 CD84 antigen Novel U 0.004563278765931789 -0.21671580723213726 1.0 7374 +171530 Ucn2 urocortin 2 Novel N 0.004562874275761026 -0.21671999692802915 1.0 7375 +72242 Psg21 pregnancy-specific beta-1-glycoprotein 21 Novel U 0.00456274144162219 -0.21672137281967252 1.0 7376 +68655 Fndc1 fibronectin type III domain containing 1 Novel U 0.004560843504510621 -0.21674103158988284 1.0 7377 +15531 Ndst1 N-deacetylase/N-sulfotransferase (heparan glucosaminyl) 1 Novel N 0.004554644868072718 -0.21680523686233744 1.0 7378 +268373 Ppia peptidylprolyl isomerase A Novel U 0.004552179998009276 -0.21683076790542632 1.0 7379 +14073 Faah fatty acid amide hydrolase Novel N 0.004550219580763383 -0.21685107384281405 1.0 7380 +16491 Kcna3 potassium voltage-gated channel, shaker-related subfamily, member 3 Novel N 0.004548849808625092 -0.21686526189759364 1.0 7381 +12558 Cdh2 cadherin 2 Novel U 0.004547398515617652 -0.21688029434285602 1.0 7382 +76007 Zmym2 zinc finger, MYM-type 2 Novel N 0.004547126864121226 -0.2168831081001259 1.0 7383 +331531 Pramel3e PRAME like 3E Novel U 0.004547069891984811 -0.21688369821564207 1.0 7384 +100045778 Rnf223 ring finger 223 Novel U 0.004546910355124983 -0.21688535069319168 1.0 7385 +223701 Mrtfa myocardin related transcription factor A Novel U 0.004545803096148339 -0.21689681964527258 1.0 7386 +26950 Vsnl1 visinin-like 1 Novel U 0.0045431581065861855 -0.216924216360208 1.0 7387 +71946 Endod1 endonuclease domain containing 1 Novel U 0.0045402678161870595 -0.21695415389314898 1.0 7388 +69439 Mroh4 maestro heat-like repeat family member 4 Novel U 0.004540092501866686 -0.21695596979311624 1.0 7389 +207175 Cetn4 centrin 4 Novel U 0.004539169815814191 -0.2169655269449163 1.0 7390 +224938 Pja2 praja ring finger ubiquitin ligase 2 Novel U 0.0045380544749827985 -0.21697707960858303 1.0 7391 +101592 Efl1 elongation factor like GTPase 1 Novel U 0.004537445532530535 -0.2169833870144857 1.0 7392 +380916 Lrch1 leucine-rich repeats and calponin homology (CH) domain containing 1 Novel U 0.004535723465012595 -0.2170012241332266 1.0 7393 +20648 Snta1 syntrophin, acidic 1 Novel U 0.004534182714623481 -0.2170171831751076 1.0 7394 +12316 Aspm abnormal spindle microtubule assembly Novel U 0.004530047055091522 -0.21706002020058715 1.0 7395 +12262 C1qc complement component 1, q subcomponent, C chain Novel U 0.004527327999256974 -0.21708818409153724 1.0 7396 +225849 Ppp2r5b protein phosphatase 2, regulatory subunit B', beta Novel U 0.004526243889540559 -0.21709941326434168 1.0 7397 +69482 Nup35 nucleoporin 35 Novel U 0.004523784918592807 -0.2171248832045842 1.0 7398 +57278 Bcam basal cell adhesion molecule Novel N 0.004523583639985471 -0.21712696804178228 1.0 7399 +14723 Gp1ba glycoprotein 1b, alpha polypeptide Novel U 0.0045221113426561505 -0.2171422180491202 1.0 7400 +414089 Gja6 gap junction protein, alpha 6 Novel U 0.004521049052255749 -0.21715322121816663 1.0 7401 +67216 Mboat2 membrane bound O-acyltransferase domain containing 2 Novel U 0.00452069634849686 -0.21715687451210672 1.0 7402 +100040657 Gm2888 predicted gene 2888 Novel U 0.00451716713760352 -0.21719342996252342 1.0 7403 +11815 Apod apolipoprotein D Novel U 0.004516634440045149 -0.2171989476263215 1.0 7404 +60441 Mrpl38 mitochondrial ribosomal protein L38 Novel U 0.004515805398947046 -0.2172075348067624 1.0 7405 +381922 Cdiptos CDIP transferase, opposite strand Novel U 0.004514190916698815 -0.21722425756081631 1.0 7406 +74019 Traf3ip1 TRAF3 interacting protein 1 Novel U 0.00451376932358695 -0.2172286244084099 1.0 7407 +223838 Adamts20 ADAM metallopeptidase with thrombospondin type 1 motif 20 Novel U 0.004511615995040668 -0.21725092851470543 1.0 7408 +18162 Npr3 natriuretic peptide receptor 3 Novel N 0.004510309670322168 -0.21726445938319655 1.0 7409 +100042499 Vmn2r55 vomeronasal 2, receptor 55 Novel U 0.004508238898846296 -0.21728590836607065 1.0 7410 +67713 Dnajc19 DnaJ heat shock protein family (Hsp40) member C19 Novel U 0.004507783017056409 -0.217290630374664 1.0 7411 +217232 Cdc27 cell division cycle 27 Novel U 0.004506931311421867 -0.2172994523136283 1.0 7412 +18331 Or4b1d olfactory receptor family 4 subfamily B member 1D Novel U 0.004506786827498501 -0.21730094887335685 1.0 7413 +381284 Crocc2 ciliary rootlet coiled-coil, rootletin family member 2 Novel U 0.004500593690046711 -0.21736509718749408 1.0 7414 +26368 Ceacam9 CEA cell adhesion molecule 9 Novel U 0.0044961136314873845 -0.2174115014867776 1.0 7415 +56458 Foxo1 forkhead box O1 Novel U 0.004492825889330987 -0.21744555581195485 1.0 7416 +14268 Fn1 fibronectin 1 Novel U 0.004492729567130451 -0.21744655351414158 1.0 7417 +665227 Vmn2r94 vomeronasal 2, receptor 94 Novel U 0.004492580397506899 -0.21744809860819866 1.0 7418 +72349 Dusp3 dual specificity phosphatase 3 (vaccinia virus phosphatase VH1-related) Novel U 0.00448903360166647 -0.21748483620291917 1.0 7419 +574402 Gpr17 G protein-coupled receptor 17 Novel N 0.004488851837746619 -0.2174867189076258 1.0 7420 +108112 Eif4ebp3 eukaryotic translation initiation factor 4E binding protein 3 Novel U 0.004488797472014724 -0.2174872820260896 1.0 7421 +102634532 Gm3642 predicted gene 3642 Novel U 0.004486769533951066 -0.21750828734188812 1.0 7422 +75219 Dusp18 dual specificity phosphatase 18 Novel N 0.004486587311417287 -0.21751017479690274 1.0 7423 +237500 Tmtc3 transmembrane and tetratricopeptide repeat containing 3 Novel U 0.004483588402421049 -0.21754123739770198 1.0 7424 +72632 Smim18 small integral membrane protein 18 Novel U 0.0044831217786096686 -0.21754607067180082 1.0 7425 +71999 Fbxo22 F-box protein 22 Novel U 0.004482474834465787 -0.21755277169797602 1.0 7426 +14852 Gspt1 G1 to S phase transition 1 Novel U 0.004478734265551161 -0.21759151638782914 1.0 7427 +11475 Acta2 actin alpha 2, smooth muscle, aorta Novel U 0.00447864646428429 -0.21759242583046504 1.0 7428 +387586 Ssxb5 SSX member B5 Novel U 0.004477385066541216 -0.2176054913468216 1.0 7429 +77531 Anks1b ankyrin repeat and sterile alpha motif domain containing 1B Novel U 0.004475209786198933 -0.2176280228290985 1.0 7430 +242093 Rxfp4 relaxin family peptide receptor 4 Novel U 0.004474625341954843 -0.2176340764833662 1.0 7431 +76130 Las1l LAS1-like (S. cerevisiae) Novel U 0.0044738953863209426 -0.21764163733982614 1.0 7432 +19271 Ptprj protein tyrosine phosphatase receptor type J Novel U 0.00447384008521332 -0.21764221014688098 1.0 7433 +238455 Macc1 metastasis associated in colon cancer 1 Novel N 0.004468145912951326 -0.21770119019598488 1.0 7434 +20650 Sntb2 syntrophin, basic 2 Novel U 0.0044675735913708315 -0.21770711828410155 1.0 7435 +69719 Cad carbamoyl-phosphate synthetase 2, aspartate transcarbamylase, and dihydroorotase Novel N 0.004466869472204833 -0.21771441152727633 1.0 7436 +17386 Mmp13 matrix metallopeptidase 13 Novel U 0.004462647820777211 -0.21775813925398432 1.0 7437 +75454 Phpt1 phosphohistidine phosphatase 1 Novel U 0.004459858694782089 -0.2177870289293542 1.0 7438 +72569 Bbs5 Bardet-Biedl syndrome 5 Novel N 0.00445751327231747 -0.2178113227381411 1.0 7439 +68054 Serpina12 serine (or cysteine) peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 12 Novel N 0.004457188638902249 -0.21781468528038425 1.0 7440 +76306 Slc18b1 solute carrier family 18, subfamily B, member 1 Novel U 0.004455132943234342 -0.21783597810853506 1.0 7441 +64292 Ptges prostaglandin E synthase Novel N 0.0044520418089374686 -0.2178679959759665 1.0 7442 +100041874 Gm3558 predicted gene 3558 Novel U 0.004452022783359606 -0.2178681930422766 1.0 7443 +246746 Cd300lf CD300 molecule like family member F Novel U 0.004451989504609038 -0.21786853774248097 1.0 7444 +258917 Or6z3 olfactory receptor family 6 subfamily Z member 3 Novel U 0.004450880194040771 -0.21788002794488048 1.0 7445 +14733 Gpc1 glypican 1 Novel N 0.004449324047180909 -0.21789614646289934 1.0 7446 +76113 Lpo lactoperoxidase Novel N 0.004445610946415988 -0.21793460663856082 1.0 7447 +115488284 Gm3752 predicted gene 3752 Novel U 0.004445106651247957 -0.21793983011133342 1.0 7448 +76055 Oga O-GlcNAcase Novel N 0.004445105899656558 -0.21793983789629243 1.0 7449 +76295 Atp11b ATPase, class VI, type 11B Novel N 0.004442687504289568 -0.21796488755600327 1.0 7450 +69183 C1qtnf2 C1q and tumor necrosis factor related protein 2 Novel U 0.004441550817597311 -0.21797666131939508 1.0 7451 +66729 Ankrd61 ankyrin repeat domain 61 Novel U 0.004441021748608835 -0.21798214139858554 1.0 7452 +118567354 Gm27179 predicted gene 27179 Novel U 0.004440828225627165 -0.21798414590326792 1.0 7453 +18285 Odf1 outer dense fiber of sperm tails 1 Novel U 0.004439466674250903 -0.21799824880766466 1.0 7454 +71952 Riox1 ribosomal oxygenase 1 Novel U 0.004434147675910849 -0.2180533428176183 1.0 7455 +227738 Lrsam1 leucine rich repeat and sterile alpha motif containing 1 Novel U 0.004433560396823135 -0.21805942583510307 1.0 7456 +269016 Sh3rf2 SH3 domain containing ring finger 2 Novel U 0.00443351637301831 -0.21805988183222627 1.0 7457 +230899 Nppa natriuretic peptide type A Novel U 0.004431659882842135 -0.21807911129644228 1.0 7458 +80914 Uck2 uridine-cytidine kinase 2 Novel N 0.00442610488431013 -0.21813664978862604 1.0 7459 +330581 Vmn2r69 vomeronasal 2, receptor 69 Novel U 0.004425364371642292 -0.21814431999449646 1.0 7460 +66977 Nuf2 NUF2, NDC80 kinetochore complex component Novel U 0.004424819389549172 -0.21814996490110167 1.0 7461 +66181 Nop10 NOP10 ribonucleoprotein Novel U 0.00442278335221873 -0.21817105410883927 1.0 7462 +229688 Chil6 chitinase-like 6 Novel U 0.0044204065371062605 -0.21819567308164065 1.0 7463 +67608 Narf nuclear prelamin A recognition factor Novel U 0.004419551509271233 -0.21820452943184832 1.0 7464 +319764 Sertm2 serine rich and transmembrane domain containing 2 Novel U 0.004414107020624167 -0.21826092326627672 1.0 7465 +258676 Or4d10b olfactory receptor family 4 subfamily D member 10B Novel U 0.004411085488651969 -0.21829222019511724 1.0 7466 +80751 Rnf34 ring finger protein 34 Novel U 0.004410476182207135 -0.21829853137124294 1.0 7467 +12263 C2 complement C2 Novel U 0.004409789209024821 -0.21830564701688235 1.0 7468 +115489970 Gm12790 predicted gene 12790 Novel U 0.004408415476323069 -0.21831987609504802 1.0 7469 +27362 Dnajb9 DnaJ heat shock protein family (Hsp40) member B9 Novel U 0.004405707147400683 -0.21834792887699458 1.0 7470 +218885 Oxnad1 oxidoreductase NAD-binding domain containing 1 Novel U 0.004402610443826885 -0.21838000443081335 1.0 7471 +107071 Wdr74 WD repeat domain 74 Novel N 0.004401322742981193 -0.21839334239384214 1.0 7472 +73569 Vgll3 vestigial like family member 3 Novel U 0.004400389608891546 -0.21840300776606758 1.0 7473 +26373 Clcn7 chloride channel, voltage-sensitive 7 Novel U 0.004393310707551967 -0.21847633079343662 1.0 7474 +69163 Mrpl44 mitochondrial ribosomal protein L44 Novel N 0.0043918028412558 -0.2184919492229639 1.0 7475 +11826 Aqp1 aquaporin 1 Novel U 0.004391612998699139 -0.21849391560592504 1.0 7476 +102638514 Tex51 testis expressed 51 Novel U 0.004391594417692265 -0.2184941080673834 1.0 7477 +223435 Trio triple functional domain (PTPRF interacting) Novel U 0.0043900270486077935 -0.2185103428248359 1.0 7478 +242341 Atp6v0d2 ATPase, H+ transporting, lysosomal V0 subunit D2 Novel U 0.004387232213919962 -0.2185392916306572 1.0 7479 +100041151 Gm3636 predicted gene 3636 Novel U 0.00438389678291702 -0.21857383991533927 1.0 7480 +71683 Gypc glycophorin C Novel N 0.0043815776837195 -0.21859786106859094 1.0 7481 +224813 Lrrc73 leucine rich repeat containing 73 Novel U 0.004380120254509483 -0.21861295707243786 1.0 7482 +278304 Zfp385c zinc finger protein 385C Novel U 0.004379794345056298 -0.21861633283184026 1.0 7483 +239405 Rspo2 R-spondin 2 Novel U 0.0043731105889834474 -0.2186855629575262 1.0 7484 +224088 Atp13a3 ATPase type 13A3 Novel N 0.004372188911449291 -0.2186951096631265 1.0 7485 +328795 Ubash3a ubiquitin associated and SH3 domain containing, A Novel U 0.004368213375007498 -0.21873628813890186 1.0 7486 +64085 Clstn2 calsyntenin 2 Novel U 0.004368106619703913 -0.218737393906827 1.0 7487 +12447 Ccne1 cyclin E1 Novel N 0.004367645674472688 -0.21874216836237928 1.0 7488 +12039 Bckdha branched chain ketoacid dehydrogenase E1, alpha polypeptide Novel N 0.004367479056505622 -0.21874389418580484 1.0 7489 +435772 Cnbd1 cyclic nucleotide binding domain containing 1 Novel U 0.004366941853501144 -0.21874945851686564 1.0 7490 +100042968 Vmn1r101 vomeronasal 1 receptor 101 Novel U 0.004365132766341316 -0.21876819698219663 1.0 7491 +20778 Scarb1 scavenger receptor class B, member 1 Novel U 0.00436505964319174 -0.21876895438937613 1.0 7492 +234686 Fhod1 formin homology 2 domain containing 1 Novel U 0.00436327416761328 -0.21878744828672345 1.0 7493 +11637 Ak2 adenylate kinase 2 Novel U 0.004363230386345413 -0.2187879017716568 1.0 7494 +17084 Ly86 lymphocyte antigen 86 Novel U 0.004362666544982642 -0.21879374202195712 1.0 7495 +19171 Psmb10 proteasome (prosome, macropain) subunit, beta type 10 Novel U 0.004362274259917295 -0.2187978052977683 1.0 7496 +69847 Wnk4 WNK lysine deficient protein kinase 4 Novel U 0.004360822286776237 -0.2188128447878323 1.0 7497 +258506 Or10c1 olfactory receptor family 10 subfamily C member 1 Novel U 0.004359248410496012 -0.2188291469466045 1.0 7498 +259008 Or1e32 olfactory receptor family 1 subfamily E member 32 Novel U 0.004359216053637872 -0.21882948209787745 1.0 7499 +74376 Myo18b myosin XVIIIb Novel N 0.004356901958641859 -0.21885345141777435 1.0 7500 +237362 Npffr1 neuropeptide FF receptor 1 Novel U 0.004355773562973139 -0.218865139303017 1.0 7501 +171227 Vmn1r232 vomeronasal 1 receptor 232 Novel U 0.004355691476137739 -0.2188659895557596 1.0 7502 +109901 Cela1 chymotrypsin-like elastase family, member 1 Novel U 0.004354681972171428 -0.21887644596465694 1.0 7503 +16425 Itih2 inter-alpha trypsin inhibitor, heavy chain 2 Novel U 0.00435384427194698 -0.21888512283604392 1.0 7504 +19038 Ppic peptidylprolyl isomerase C Novel N 0.004353141445693971 -0.2188924026872684 1.0 7505 +22780 Ikzf3 IKAROS family zinc finger 3 Novel N 0.004351968739515532 -0.21890454953931401 1.0 7506 +17928 Myog myogenin Novel N 0.004349975101161956 -0.21892519957984302 1.0 7507 +68028 Rpl22l1 ribosomal protein L22 like 1 Novel U 0.004347636080537566 -0.21894942707857928 1.0 7508 +26894 Cops7a COP9 signalosome subunit 7A Novel N 0.004347225261277337 -0.21895368233097182 1.0 7509 +13006 Smc3 structural maintenance of chromosomes 3 Novel U 0.004343821874997804 -0.2189889344941749 1.0 7510 +70297 Gcc2 GRIP and coiled-coil domain containing 2 Novel U 0.004343755013070357 -0.2189896270478214 1.0 7511 +435916 Vmn2r23 vomeronasal 2, receptor 23 Novel U 0.004343328095619403 -0.21899404904474426 1.0 7512 +16539 Kcns2 K+ voltage-gated channel, subfamily S, 2 Novel U 0.004336592394506155 -0.21906381721545104 1.0 7513 +243634 Ano2 anoctamin 2 Novel N 0.004335915210685882 -0.21907083146320022 1.0 7514 +50875 Tmod3 tropomodulin 3 Novel U 0.004333885232616475 -0.2190918579093112 1.0 7515 +238323 Rps6kl1 ribosomal protein S6 kinase-like 1 Novel U 0.004333568301387664 -0.21909514067256067 1.0 7516 +72999 Insig2 insulin induced gene 2 Novel U 0.004331488253248547 -0.21911668574280777 1.0 7517 +14611 Gja3 gap junction protein, alpha 3 Novel N 0.004331385606128257 -0.21911774895830538 1.0 7518 +215160 Rhbdd2 rhomboid domain containing 2 Novel U 0.004329749386214613 -0.21913469687038306 1.0 7519 +12608 Cebpb CCAAT/enhancer binding protein beta Novel N 0.004329097775895873 -0.21914144622864404 1.0 7520 +81703 Jdp2 Jun dimerization protein 2 Novel N 0.0043286365093034825 -0.2191462240128447 1.0 7521 +100929 Tyw1 tRNA-yW synthesizing protein 1 homolog (S. cerevisiae) Novel U 0.004328437274856253 -0.2191482876766996 1.0 7522 +12367 Casp3 caspase 3 Novel U 0.004327700883561069 -0.21915591519352756 1.0 7523 +18786 Plaa phospholipase A2, activating protein Novel U 0.004325006831433636 -0.21918382009690132 1.0 7524 +545874 Vmn2r25 vomeronasal 2, receptor 25 Novel U 0.004324641286661446 -0.21918760639763504 1.0 7525 +628444 Vmn2r59 vomeronasal 2, receptor 59 Novel U 0.0043242065066693425 -0.21919210983450063 1.0 7526 +116731 Pcdha1 protocadherin alpha 1 Novel U 0.004321980326237776 -0.21921516853822903 1.0 7527 +11474 Actn3 actinin alpha 3 Novel U 0.004321827816340469 -0.21921674823073187 1.0 7528 +12562 Cdh5 cadherin 5 Novel U 0.004321705073872587 -0.21921801959317924 1.0 7529 +100862274 Btbd35f25 BTB domain containing 35, family member 25 Novel U 0.00432127450176651 -0.2192224794448997 1.0 7530 +791411 Gm13199 predicted gene 13199 Novel U 0.004320144545796587 -0.21923418349169085 1.0 7531 +77035 Kdm8 lysine (K)-specific demethylase 8 Novel N 0.004319802503307034 -0.21923772635655359 1.0 7532 +408191 Semp2l1 SUMO/sentrin specific peptidase 2-like 1 Novel U 0.004319325175778224 -0.2192426704994057 1.0 7533 +22781 Ikzf4 IKAROS family zinc finger 4 Novel U 0.00431691282250158 -0.21926765757534336 1.0 7534 +23954 Nek3 NIMA (never in mitosis gene a)-related expressed kinase 3 Novel U 0.004315760269619462 -0.2192795956802082 1.0 7535 +110058 Syt17 synaptotagmin XVII Novel U 0.004314732229936064 -0.21929024408145384 1.0 7536 +12049 Bcl2l10 Bcl2-like 10 Novel U 0.004313853051418414 -0.21929935058363823 1.0 7537 +100038847 Gm10406 predicted gene 10406 Novel U 0.004313832066492618 -0.2192995679448098 1.0 7538 +271221 Rubcnl RUN and cysteine rich domain containing beclin 1 interacting protein like Novel U 0.0043120259404985616 -0.21931827573848303 1.0 7539 +12933 Crmp1 collapsin response mediator protein 1 Novel U 0.004309069966200085 -0.21934889362309423 1.0 7540 +84036 Kcnn1 potassium intermediate/small conductance calcium-activated channel, subfamily N, member 1 Novel N 0.004307837484644965 -0.2193616596265265 1.0 7541 +622486 Smok3c sperm motility kinase 3C Novel U 0.00430731799184183 -0.219367040515904 1.0 7542 +13586 Ear1 eosinophil-associated, ribonuclease A family, member 1 Novel U 0.004305636285017462 -0.21938445957990765 1.0 7543 +387511 Tas2r134 taste receptor, type 2, member 134 Novel U 0.0043038655153620296 -0.21940280115378769 1.0 7544 +382077 Ccdc33 coiled-coil domain containing 33 Novel U 0.0042989770921948705 -0.2194534352802549 1.0 7545 +380753 Atxn7l1 ataxin 7-like 1 Novel U 0.004297224385573625 -0.21947158975782063 1.0 7546 +108071 Grm5 glutamate receptor, metabotropic 5 Novel U 0.004295119901731405 -0.21949338793227716 1.0 7547 +66601 Tmigd1 transmembrane and immunoglobulin domain containing 1 Novel N 0.00429435892586258 -0.21950127009531073 1.0 7548 +98238 Lrrc59 leucine rich repeat containing 59 Novel U 0.0042930551559762446 -0.21951477450093423 1.0 7549 +22114 Tssk1 testis-specific serine kinase 1 Novel N 0.004292234146384649 -0.21952327849129474 1.0 7550 +213068 Tmem71 transmembrane protein 71 Novel U 0.00428997290845666 -0.21954670031941867 1.0 7551 +239833 Lmln leishmanolysin-like (metallopeptidase M8 family) Novel U 0.00428781091876689 -0.21956909413755374 1.0 7552 +234669 Ces2b carboxyesterase 2B Novel U 0.004286762985285042 -0.21957994859810973 1.0 7553 +74499 Sost sclerostin Novel U 0.004285912337699188 -0.2195887595778405 1.0 7554 +320452 P4ha3 procollagen-proline, 2-oxoglutarate 4-dioxygenase (proline 4-hydroxylase), alpha polypeptide III Novel U 0.0042844883553072345 -0.21960350914064544 1.0 7555 +11602 Angpt4 angiopoietin 4 Novel U 0.004283948276586852 -0.21960910325827707 1.0 7556 +102115 Dohh deoxyhypusine hydroxylase/monooxygenase Novel U 0.004279433891266051 -0.21965586311302748 1.0 7557 +11568 Aebp1 AE binding protein 1 Novel U 0.004279204593337223 -0.2196582381734365 1.0 7558 +17136 Mag myelin-associated glycoprotein Novel N 0.004277246282267174 -0.21967852229512408 1.0 7559 +237523 Ptprq protein tyrosine phosphatase receptor type Q Novel N 0.00427643717457645 -0.21968690300598664 1.0 7560 +102462 Imp3 IMP3, U3 small nucleolar ribonucleoprotein Novel N 0.004271748856292394 -0.2197354644526527 1.0 7561 +108903 Tbcd tubulin-specific chaperone d Novel U 0.00426911739106791 -0.21976272108294315 1.0 7562 +57320 Park7 Parkinson disease (autosomal recessive, early onset) 7 Novel U 0.0042677461418052865 -0.21977692443772803 1.0 7563 +77996 Cutal cutA divalent cation tolerance homolog-like Novel U 0.004266493248168454 -0.21978990186883166 1.0 7564 +225339 Ammecr1l AMME chromosomal region gene 1-like Novel U 0.004262006045171872 -0.2198363801699614 1.0 7565 +104175 Sbk1 SH3-binding kinase 1 Novel U 0.004261278602954615 -0.2198439149925344 1.0 7566 +13804 Endog endonuclease G Novel N 0.004258900210299727 -0.21986855030546826 1.0 7567 +76687 Spcs3 signal peptidase complex subunit 3 homolog (S. cerevisiae) Novel U 0.0042579516685195395 -0.21987837527004583 1.0 7568 +330938 Dixdc1 DIX domain containing 1 Novel N 0.004256731776311338 -0.21989101087343657 1.0 7569 +75712 Tmem14a transmembrane protein 14A Novel N 0.004256115745969684 -0.21989739169546454 1.0 7570 +72193 Scaf11 SR-related CTD-associated factor 11 Novel N 0.004254466377859351 -0.2199144757961313 1.0 7571 +70561 Txndc16 thioredoxin domain containing 16 Novel U 0.004251306237315684 -0.2199472084279986 1.0 7572 +258425 Or5ak24 olfactory receptor family 5 subfamily AK member 24 Novel U 0.0042499137454595935 -0.21996163181286826 1.0 7573 +53357 Pla2g6 phospholipase A2, group VI Novel U 0.004249778770960318 -0.2199630298742947 1.0 7574 +230676 Szt2 SZT2 subunit of KICSTOR complex Novel U 0.004249695045461504 -0.2199638971002591 1.0 7575 +272382 Spib Spi-B transcription factor (Spi-1/PU.1 related) Novel U 0.004245023020876579 -0.2200122897773252 1.0 7576 +109225 Ms4a7 membrane-spanning 4-domains, subfamily A, member 7 Novel U 0.00424476786954038 -0.22001493262647792 1.0 7577 +64659 Mrps14 mitochondrial ribosomal protein S14 Novel N 0.004243658141014971 -0.22002642715806373 1.0 7578 +381308 Ifi211 interferon activated gene 211 Novel U 0.004243475517451019 -0.22002831876693574 1.0 7579 +78733 Troap trophinin associated protein Novel U 0.004243108869000684 -0.2200321164995314 1.0 7580 +225115 Svil supervillin Novel U 0.004241863479721401 -0.22004501620074624 1.0 7581 +18605 Enpp1 ectonucleotide pyrophosphatase/phosphodiesterase 1 Novel U 0.004241598934115984 -0.22004775635543067 1.0 7582 +257984 Or4a76 olfactory receptor family 4 subfamily A member 76 Novel U 0.004241236508150094 -0.22005151035167125 1.0 7583 +74192 Arpc5l actin related protein 2/3 complex, subunit 5-like Novel U 0.004238291774206241 -0.22008201180905876 1.0 7584 +78784 Celf3 CUGBP, Elav-like family member 3 Novel N 0.004238156480939685 -0.22008341317226623 1.0 7585 +100040894 Gm16430 predicted gene 16430 Novel U 0.0042381489328608656 -0.2200834913550185 1.0 7586 +171236 Vmn1r233 vomeronasal 1 receptor 233 Novel U 0.004238122088007376 -0.22008376941312846 1.0 7587 +64294 Itm2c integral membrane protein 2C Novel U 0.0042369192263698105 -0.22009622861442843 1.0 7588 +546250 Gm5930 predicted gene 5930 Novel U 0.004236918454469847 -0.2200962366097429 1.0 7589 +20256 Clec11a C-type lectin domain family 11, member a Novel N 0.004236196652276998 -0.22010371301312845 1.0 7590 +226025 Trpm3 transient receptor potential cation channel, subfamily M, member 3 Novel U 0.004234109582347917 -0.22012533081484514 1.0 7591 +13544 Dvl3 dishevelled segment polarity protein 3 Novel U 0.004231858418890076 -0.22014864829193842 1.0 7592 +100088 Rcc1 regulator of chromosome condensation 1 Novel U 0.004231233088466524 -0.22015512544390897 1.0 7593 +67168 Lpar6 lysophosphatidic acid receptor 6 Novel N 0.004229287263351395 -0.22017528023648592 1.0 7594 +108015 Chrnb4 cholinergic receptor, nicotinic, beta polypeptide 4 Novel N 0.004228709778941834 -0.22018126180101635 1.0 7595 +67264 Ndufb8 NADH:ubiquinone oxidoreductase subunit B8 Novel N 0.004227242149769152 -0.22019646345574131 1.0 7596 +170776 Cd209c CD209c antigen Novel U 0.0042260214849920985 -0.22020910706137484 1.0 7597 +654818 Smco3 single-pass membrane protein with coiled-coil domains 3 Novel U 0.004225417255969945 -0.22021536564572333 1.0 7598 +230866 Emc1 ER membrane protein complex subunit 1 Novel U 0.004223596456409205 -0.22023422542771792 1.0 7599 +68332 Sdhaf1 succinate dehydrogenase complex assembly factor 1 Novel N 0.004222560655622365 -0.22024495421821788 1.0 7600 +107477 Guca1b guanylate cyclase activator 1B Novel U 0.0042223831889393265 -0.2202467924122869 1.0 7601 +19899 Rpl18 ribosomal protein L18 Novel U 0.004217360014702466 -0.22029882228590436 1.0 7602 +23888 Gpc6 glypican 6 Novel U 0.0042133822272395205 -0.22034002407768283 1.0 7603 +19933 Rpl21 ribosomal protein L21 Novel N 0.004212449798188776 -0.2203496821471385 1.0 7604 +53619 Blcap bladder cancer associated protein Novel U 0.004206023616122404 -0.2204162443297326 1.0 7605 +56048 Lgals8 lectin, galactose binding, soluble 8 Novel U 0.004204751054994933 -0.22042942547605776 1.0 7606 +209416 Gpkow G patch domain and KOW motifs Novel U 0.0042027709472948595 -0.2204499353665226 1.0 7607 +266690 Cyb5r4 cytochrome b5 reductase 4 Novel U 0.004202686813826496 -0.22045080681822216 1.0 7608 +72355 Cdpf1 cysteine rich, DPF motif domain containing 1 Novel U 0.004199146306487841 -0.22048747927684806 1.0 7609 +26440 Psma1 proteasome subunit alpha 1 Novel U 0.004198877533654001 -0.2204902632170255 1.0 7610 +233902 Fbxl19 F-box and leucine-rich repeat protein 19 Novel U 0.00419832682823929 -0.22049596740560765 1.0 7611 +109359 Abraxas2 BRISC complex subunit Novel U 0.004198051565741968 -0.22049881856550613 1.0 7612 +66897 Naa16 N(alpha)-acetyltransferase 16, NatA auxiliary subunit Novel N 0.004194442271628683 -0.2205362035152824 1.0 7613 +70747 Tspan2 tetraspanin 2 Novel U 0.004194227306541546 -0.22053843011658833 1.0 7614 +67501 Ccdc50 coiled-coil domain containing 50 Novel U 0.004193503895050573 -0.22054592318903096 1.0 7615 +78887 Sfi1 Sfi1 homolog, spindle assembly associated (yeast) Novel U 0.004191629954201763 -0.22056533340674045 1.0 7616 +66383 Iscu iron-sulfur cluster assembly enzyme Novel U 0.004191467384154046 -0.2205670173019505 1.0 7617 +434459 Gm5622 predicted gene 5622 Novel U 0.00419087249239437 -0.22057317917124122 1.0 7618 +22352 Vim vimentin Novel U 0.0041898421831630265 -0.2205838510803899 1.0 7619 +100042182 Gm16434 predicted gene 16434 Novel U 0.004187960345268446 -0.22060334309543986 1.0 7620 +224344 Rbm11 RNA binding motif protein 11 Novel N 0.004186895410535611 -0.2206143736543947 1.0 7621 +20817 Srpk2 serine/arginine-rich protein specific kinase 2 Novel N 0.004186368523940087 -0.22061983112843073 1.0 7622 +15139 Hc hemolytic complement Novel U 0.004184919941282852 -0.22063483549997476 1.0 7623 +320139 Ptpn7 protein tyrosine phosphatase, non-receptor type 7 Novel N 0.0041844525028801125 -0.2206396772115841 1.0 7624 +108168148 Gm5798 predicted gene 5798 Novel U 0.004183667222402392 -0.22064781112095763 1.0 7625 +14312 Brd2 bromodomain containing 2 Novel U 0.004183202231651657 -0.22065262747986802 1.0 7626 +432839 Gprin2 G protein regulated inducer of neurite outgrowth 2 Novel U 0.004181287992007883 -0.220672455111171 1.0 7627 +14613 Gja5 gap junction protein, alpha 5 Novel U 0.004180488412377155 -0.22068073713070127 1.0 7628 +170729 Scrt1 scratch family zinc finger 1 Novel N 0.004180132247719844 -0.22068442627251345 1.0 7629 +258627 Or9i16 olfactory receptor family 9 subfamily I member 16 Novel U 0.004179204024050867 -0.220694040782763 1.0 7630 +114663 Impa2 inositol monophosphatase 2 Novel N 0.004178645646382942 -0.22069982444029168 1.0 7631 +20344 Selp selectin, platelet Novel U 0.004177598940285664 -0.22071066618763868 1.0 7632 +20866 Stim1 stromal interaction molecule 1 Novel U 0.004177115654912756 -0.22071567204164413 1.0 7633 +12825 Col3a1 collagen, type III, alpha 1 Novel U 0.004177107776644958 -0.22071575364448295 1.0 7634 +14816 Grm1 glutamate receptor, metabotropic 1 Novel N 0.004177066613490006 -0.2207161800110888 1.0 7635 +208647 Creb3l2 cAMP responsive element binding protein 3-like 2 Novel N 0.0041755651080101226 -0.22073173255549008 1.0 7636 +66997 Psmd12 proteasome (prosome, macropain) 26S subunit, non-ATPase, 12 Novel U 0.004173219455974859 -0.22075602874216224 1.0 7637 +50768 Dlc1 deleted in liver cancer 1 Novel U 0.004170911782368361 -0.22077993154951764 1.0 7638 +68628 Fbxw9 F-box and WD-40 domain protein 9 Novel U 0.004169572315123044 -0.220793805707212 1.0 7639 +12260 C1qb complement component 1, q subcomponent, beta polypeptide Novel U 0.004169479494600939 -0.22079476713912868 1.0 7640 +66048 Emc6 ER membrane protein complex subunit 6 Novel U 0.004169011541477888 -0.2207996141821941 1.0 7641 +245424 Gpr101 G protein-coupled receptor 101 Novel U 0.004167794070154514 -0.2208122247101394 1.0 7642 +22351 Vill villin-like Novel U 0.004167734842216446 -0.2208128381911749 1.0 7643 +67366 Tmed11 transmembrane p24 trafficking protein 11 Novel U 0.004167287237400758 -0.2208174744671416 1.0 7644 +385312 Ssxb10 SSX member B10 Novel U 0.004166966569698861 -0.22082079593265644 1.0 7645 +12034 Phb2 prohibitin 2 Novel U 0.004166916649997605 -0.22082131299928104 1.0 7646 +22423 Wnt8b wingless-type MMTV integration site family, member 8B Novel N 0.0041665050275136095 -0.2208255765714389 1.0 7647 +81897 Tlr9 toll-like receptor 9 Novel U 0.004166197006320673 -0.22082876704482968 1.0 7648 +77134 Hnrnpa0 heterogeneous nuclear ribonucleoprotein A0 Novel N 0.004162370610695777 -0.22086840072492636 1.0 7649 +24131 Ldb3 LIM domain binding 3 Novel U 0.0041610360536900185 -0.22088222402252083 1.0 7650 +81011 Vmn1r148 vomeronasal 1 receptor 148 Novel U 0.004160801973124614 -0.2208846486213223 1.0 7651 +53424 Tsnax translin-associated factor X Novel N 0.004159313453271365 -0.2209000666610298 1.0 7652 +53421 Sec61a1 SEC61 translocon subunit alpha 1 Novel U 0.0041585632000346 -0.22090783775939296 1.0 7653 +229644 Trim45 tripartite motif-containing 45 Novel U 0.00415854532475802 -0.22090802291092013 1.0 7654 +69903 Rasip1 Ras interacting protein 1 Novel U 0.004158086919818565 -0.2209127710542138 1.0 7655 +17760 Map6 microtubule-associated protein 6 Novel U 0.004157947950178654 -0.2209142104971756 1.0 7656 +381043 Smbd1 somatomedin B domain containing 1 Novel U 0.004156924548705351 -0.22092481085599355 1.0 7657 +245282 Apol10a apolipoprotein L 10A Novel U 0.004156413421027017 -0.22093010509968333 1.0 7658 +19775 Xpr1 xenotropic and polytropic retrovirus receptor 1 Novel N 0.004155331690162114 -0.220941309632422 1.0 7659 +100041735 Gm3488 predicted gene, 3488 Novel U 0.004154232385966032 -0.22095269618914737 1.0 7660 +17259 Mef2b myocyte enhancer factor 2B Novel U 0.004151234468164478 -0.2209837485231846 1.0 7661 +212307 Mapre2 microtubule-associated protein, RP/EB family, member 2 Novel N 0.004150552625969771 -0.22099081102222304 1.0 7662 +232889 Pla2g4c phospholipase A2, group IVC (cytosolic, calcium-independent) Novel U 0.004150351035125519 -0.22099289909356082 1.0 7663 +242894 Actr3b ARP3 actin-related protein 3B Novel U 0.004149334450302127 -0.22100342884574312 1.0 7664 +66890 Lman2 lectin, mannose-binding 2 Novel U 0.004148954347643485 -0.22100736593658615 1.0 7665 +105203 Tasor2 transcription activation suppressor family member 2 Novel U 0.004147669095337196 -0.22102067853772428 1.0 7666 +69605 Lnpk lunapark, ER junction formation factor Novel U 0.004145420058091145 -0.22104397399158576 1.0 7667 +625286 Tmem236 transmembrane protein 236 Novel U 0.004144385565548264 -0.2210546892313378 1.0 7668 +14617 Gjd2 gap junction protein, delta 2 Novel U 0.0041429109104050895 -0.22106996366083415 1.0 7669 +19053 Ppp2cb protein phosphatase 2 (formerly 2A), catalytic subunit, beta isoform Novel U 0.004142520343492602 -0.22107400914007447 1.0 7670 +16402 Itga5 integrin alpha 5 (fibronectin receptor alpha) Novel U 0.004142496251073329 -0.22107425868856131 1.0 7671 +13244 Degs1 delta 4-desaturase, sphingolipid 1 Novel U 0.004142355503579488 -0.2210757165464757 1.0 7672 +751864 Sirpd signal regulatory protein delta Novel U 0.004141198136202162 -0.22108770451972362 1.0 7673 +22137 Ttk Ttk protein kinase Novel N 0.004139881971102076 -0.22110133731456375 1.0 7674 +12918 Crh corticotropin releasing hormone Novel U 0.004139557983942003 -0.22110469316291725 1.0 7675 +66811 Duoxa2 dual oxidase maturation factor 2 Novel U 0.004138173165533625 -0.22111903706646777 1.0 7676 +20843 Stag2 STAG2 cohesin complex component Novel U 0.004137596513896244 -0.2211250100051714 1.0 7677 +240396 Mex3c mex3 RNA binding family member C Novel U 0.004135068348903397 -0.22115119665505834 1.0 7678 +320011 Uggt1 UDP-glucose glycoprotein glucosyltransferase 1 Novel U 0.0041313995653877306 -0.22118919779410887 1.0 7679 +67205 Utp11 UTP11 small subunit processome component Novel N 0.004130880778025384 -0.22119457137655382 1.0 7680 +213527 Pth2r parathyroid hormone 2 receptor Novel N 0.004128793343486734 -0.22121619295488446 1.0 7681 +71738 Mamdc2 MAM domain containing 2 Novel U 0.0041285025721781885 -0.22121920475453977 1.0 7682 +225651 Mppe1 metallophosphoesterase 1 Novel U 0.0041275110034855915 -0.22122947539046164 1.0 7683 +216001 Micu1 mitochondrial calcium uptake 1 Novel U 0.004123884872357579 -0.22126703473748294 1.0 7684 +269473 Lrig2 leucine-rich repeats and immunoglobulin-like domains 2 Novel N 0.004121763618228854 -0.22128900661801582 1.0 7685 +76686 Clip3 CAP-GLY domain containing linker protein 3 Novel U 0.004121366601652911 -0.22129311890265818 1.0 7686 +13731 Emp2 epithelial membrane protein 2 Novel U 0.004120449026780876 -0.22130262311301907 1.0 7687 +665376 Vmn2r99 vomeronasal 2, receptor 99 Novel U 0.004118413139772623 -0.22132371076372442 1.0 7688 +58809 Rnase4 ribonuclease, RNase A family 4 Novel N 0.004118079578261213 -0.22132716578289433 1.0 7689 +258622 Or10al5 olfactory receptor family 10 subfamily AL member 5 Novel U 0.004117076360587576 -0.22133755707857888 1.0 7690 +17306 Sypl2 synaptophysin like 2 Novel U 0.004116785428462215 -0.22134057054396947 1.0 7691 +13654 Egr2 early growth response 2 Novel N 0.0041167446806364295 -0.22134099260860943 1.0 7692 +214498 Cdc73 cell division cycle 73, Paf1/RNA polymerase II complex component Novel U 0.0041167321618839885 -0.22134112227743571 1.0 7693 +108897 Aif1l allograft inflammatory factor 1-like Novel U 0.004115857667350385 -0.22135018026306733 1.0 7694 +258516 Or7g31 olfactory receptor family 7 subfamily G member 31 Novel U 0.004114903900068279 -0.22136005935322195 1.0 7695 +80515 Rnf227 ring finger protein 227 Novel U 0.004113931698762806 -0.22137012938238465 1.0 7696 +383787 Ankrd63 ankyrin repeat domain 63 Novel U 0.004112010255621786 -0.22139003162727527 1.0 7697 +69129 Pex11g peroxisomal biogenesis factor 11 gamma Novel U 0.0041118595859830215 -0.22139159225844063 1.0 7698 +118027458 Gm47189 predicted gene, 47189 Novel U 0.004109959811968424 -0.22141127005523212 1.0 7699 +208263 Tor1aip1 torsin A interacting protein 1 Novel N 0.0041092072895271845 -0.22141906465794065 1.0 7700 +73738 Haus7 HAUS augmin-like complex, subunit 7 Novel U 0.00410861887756685 -0.22142515940968277 1.0 7701 +70804 Pgrmc2 progesterone receptor membrane component 2 Novel N 0.004107423659813451 -0.22143753943588182 1.0 7702 +109006 Ciapin1 cytokine induced apoptosis inhibitor 1 Novel U 0.004106163950332345 -0.22145058746527638 1.0 7703 +21956 Tnnt2 troponin T2, cardiac Novel U 0.004104142477616595 -0.2214715258132138 1.0 7704 +58805 Mlxipl MLX interacting protein-like Novel U 0.004099016532807677 -0.22152462018103822 1.0 7705 +113847 Vmn1r43 vomeronasal 1 receptor 43 Novel U 0.00409638729370661 -0.22155185375321548 1.0 7706 +271844 Pla2g4f phospholipase A2, group IVF Novel U 0.004094826176748767 -0.22156802375134585 1.0 7707 +246313 Prokr2 prokineticin receptor 2 Novel N 0.00409422130318281 -0.22157428901185788 1.0 7708 +20965 Syn2 synapsin II Novel N 0.004092623955571103 -0.22159083428591 1.0 7709 +327959 Xaf1 XIAP associated factor 1 Novel U 0.0040924133967754385 -0.22159301524699374 1.0 7710 +69179 Stimate STIM activating enhancer Novel N 0.004092317832402337 -0.22159400509962882 1.0 7711 +225055 Fbxo11 F-box protein 11 Novel U 0.004091839993036515 -0.22159895454407189 1.0 7712 +17691 Sik1 salt inducible kinase 1 Novel U 0.0040913568814063 -0.22160395859845622 1.0 7713 +387344 Tas2r110 taste receptor, type 2, member 110 Novel U 0.004091275445642411 -0.2216048021074215 1.0 7714 +102640268 Gm2956 predicted gene 2956 Novel U 0.004090743146924064 -0.22161031564004777 1.0 7715 +319944 Taf2 TATA-box binding protein associated factor 2 Novel U 0.004089578762693036 -0.22162237629363568 1.0 7716 +14208 Ppm1g protein phosphatase 1G (formerly 2C), magnesium-dependent, gamma isoform Novel N 0.004088710875810657 -0.2216313658374331 1.0 7717 +13016 Ctbp1 C-terminal binding protein 1 Novel U 0.0040885646660050925 -0.2216328802737928 1.0 7718 +56196 Tdp2 tyrosyl-DNA phosphodiesterase 2 Novel U 0.0040884865199543345 -0.2216336897080176 1.0 7719 +668008 Speer1n spermatogenesis associated glutamate (E)-rich protein 1N Novel U 0.004087860780105637 -0.22164017110080034 1.0 7720 +78283 Map7d2 MAP7 domain containing 2 Novel U 0.0040860900871856785 -0.22165851187985686 1.0 7721 +66269 Tmed6 transmembrane p24 trafficking protein 6 Novel U 0.004084462247485764 -0.22167537298995624 1.0 7722 +17182 Matn3 matrilin 3 Novel U 0.00408360898765316 -0.22168421102725294 1.0 7723 +56322 Timm22 translocase of inner mitochondrial membrane 22 Novel U 0.004082625153747911 -0.2216944015465017 1.0 7724 +83675 Bicc1 BicC family RNA binding protein 1 Novel N 0.004080751686277394 -0.22171380686097442 1.0 7725 +215690 Nav1 neuron navigator 1 Novel U 0.004079872944061622 -0.22172290884395826 1.0 7726 +16633 Klra2 killer cell lectin-like receptor, subfamily A, member 2 Novel U 0.004079451391524671 -0.22172727527127822 1.0 7727 +77411 Esrp2 epithelial splicing regulatory protein 2 Novel N 0.004078650884814295 -0.22173556689346907 1.0 7728 +215028 Prl3d2 prolactin family 3, subfamily d, member 1 Novel U 0.004078457040922667 -0.2217375747221263 1.0 7729 +67630 Samd8 sterile alpha motif domain containing 8 Novel N 0.004075867188150047 -0.22176440033200823 1.0 7730 +66070 Cwc15 CWC15 spliceosome-associated protein Novel N 0.004074981047140841 -0.22177357895145128 1.0 7731 +56876 Nsmf NMDA receptor synaptonuclear signaling and neuronal migration factor Novel N 0.0040748426530306065 -0.2217750124330956 1.0 7732 +58175 Rgs20 regulator of G-protein signaling 20 Novel U 0.004074389886053093 -0.2217797021785648 1.0 7733 +70060 Spata3 spermatogenesis associated 3 Novel U 0.0040725111726649535 -0.22179916183007978 1.0 7734 +17711 CYTB cytochrome b Novel U 0.004071159576083271 -0.2218131616230415 1.0 7735 +57373 Akip1 A kinase interacting protein 1 Novel U 0.004069790503020796 -0.22182734243681676 1.0 7736 +108946 Zzz3 zinc finger, ZZ domain containing 3 Novel U 0.004069409900448496 -0.221831284705749 1.0 7737 +121021 Cspg4 chondroitin sulfate proteoglycan 4 Novel U 0.004066608168685979 -0.2218603049512432 1.0 7738 +16211 Kpnb1 karyopherin subunit beta 1 Novel U 0.004065161377353184 -0.22187529076830756 1.0 7739 +213119 Itga10 integrin, alpha 10 Novel N 0.004064025405057782 -0.22188705713200027 1.0 7740 +74204 Xpo6 exportin 6 Novel U 0.004063625491355866 -0.22189119942497826 1.0 7741 +232358 Vmn2r19 vomeronasal 2, receptor 19 Novel U 0.004063036418696864 -0.2218973010202155 1.0 7742 +13805 Eng endoglin Novel U 0.004062732100800353 -0.22190045313498363 1.0 7743 +194597 Tmprss11a transmembrane protease, serine 11a Novel U 0.004062139867815964 -0.22190658746476732 1.0 7744 +381393 4921509C19Rik RIKEN cDNA 4921509C19 gene Novel U 0.004061481836309345 -0.22191340333348128 1.0 7745 +102238433 Gm28042 predicted gene, 28042 Novel U 0.004059333225914273 -0.22193565856932168 1.0 7746 +53867 Col5a3 collagen, type V, alpha 3 Novel U 0.004058482528848386 -0.22194447006156495 1.0 7747 +269529 Fbxo10 F-box protein 10 Novel U 0.004057216501978848 -0.22195758352626127 1.0 7748 +17884 Myh4 myosin, heavy polypeptide 4, skeletal muscle Novel U 0.0040569024874525 -0.2219608360784025 1.0 7749 +20677 Sox4 SRY (sex determining region Y)-box 4 Novel U 0.004056424467926931 -0.22196578738893427 1.0 7750 +17139 Magea3 MAGE family member A3 Novel U 0.004054429795441859 -0.22198644814096333 1.0 7751 +171189 Vmn1r17 vomeronasal 1 receptor 17 Novel U 0.004053411961448576 -0.22199699083200627 1.0 7752 +224904 Micos13 mitochondrial contact site and cristae organizing system subunit 13 Novel N 0.004051255761593436 -0.22201932467922458 1.0 7753 +546134 Gramd2a GRAM domain containing 2A Novel U 0.0040504776832506325 -0.22202738398912136 1.0 7754 +214854 Neurl3 neuralized E3 ubiquitin protein ligase 3 Novel U 0.004048614823658862 -0.22204667942753473 1.0 7755 +13870 Ercc1 excision repair cross-complementing rodent repair deficiency, complementation group 1 Novel U 0.0040466570747911155 -0.2220669577259493 1.0 7756 +83703 Dbr1 debranching RNA lariats 1 Novel U 0.004046439685410187 -0.2220692094380107 1.0 7757 +22129 Ttc3 tetratricopeptide repeat domain 3 Novel U 0.004045040481541844 -0.22208370234568262 1.0 7758 +381612 Speer1c spermatogenesis associated glutamate (E)-rich protein 1C Novel U 0.00404217856789753 -0.22211334595313006 1.0 7759 +252907 Vmn1r192 vomeronasal 1 receptor 192 Novel U 0.0040419363171157905 -0.22211585517876378 1.0 7760 +74142 Lonp1 lon peptidase 1, mitochondrial Novel U 0.004040201748112778 -0.22213382178747612 1.0 7761 +16691 Krt8 keratin 8 Novel U 0.004039355012555102 -0.2221425922465476 1.0 7762 +50785 Hs6st1 heparan sulfate 6-O-sulfotransferase 1 Novel N 0.004038886354148761 -0.22214744659491414 1.0 7763 +18634 Pex7 peroxisomal biogenesis factor 7 Novel U 0.004038761133696615 -0.22214874362424109 1.0 7764 +74081 Cep350 centrosomal protein 350 Novel U 0.004038535689556764 -0.22215107876723056 1.0 7765 +75677 Cldn22 claudin 22 Novel U 0.0040382157953848825 -0.22215439222054695 1.0 7766 +381634 Gm1043 predicted gene 1043 Novel U 0.004037610635529162 -0.22216066044643898 1.0 7767 +257985 Or6c6 olfactory receptor family 6 subfamily C member 6 Novel U 0.004035596267685166 -0.2221815252023483 1.0 7768 +76237 Tmem275 transmembrane protein 275 Novel U 0.004034141584006591 -0.22219659276807083 1.0 7769 +226982 Eif5b eukaryotic translation initiation factor 5B Novel N 0.004033888584846456 -0.2221992133250546 1.0 7770 +18438 P2rx4 purinergic receptor P2X, ligand-gated ion channel 4 Novel U 0.004033319467340201 -0.22220510822547565 1.0 7771 +30045 Dnajc12 DnaJ heat shock protein family (Hsp40) member C12 Novel N 0.0040324494039601705 -0.2222141203133642 1.0 7772 +77596 Adgrf1 adhesion G protein-coupled receptor F1 Novel N 0.0040302058993708905 -0.22223735846014878 1.0 7773 +320825 Samd5 sterile alpha motif domain containing 5 Novel U 0.004029870506769643 -0.22224083244568704 1.0 7774 +83945 Dnaja3 DnaJ heat shock protein family (Hsp40) member A3 Novel N 0.004029826425141264 -0.2222412890417447 1.0 7775 +68209 Rnaseh2c ribonuclease H2, subunit C Novel U 0.004028626906711617 -0.22225371361420693 1.0 7776 +72726 Tbcc tubulin-specific chaperone C Novel U 0.004027732518708607 -0.22226297765574068 1.0 7777 +56811 Dkk2 dickkopf WNT signaling pathway inhibitor 2 Novel U 0.004027546114082763 -0.22226490842872743 1.0 7778 +15381 Hnrnpc heterogeneous nuclear ribonucleoprotein C Novel U 0.00402587193894469 -0.22228224947977207 1.0 7779 +387342 Tas2r107 taste receptor, type 2, member 107 Novel U 0.004024425226286644 -0.22229723448192598 1.0 7780 +319984 Jph4 junctophilin 4 Novel N 0.004023502527826498 -0.22230679176224408 1.0 7781 +100040458 Btbd35f26 BTB domain containing 35, family member 26 Novel U 0.004021515730577807 -0.2223273709428336 1.0 7782 +20116 Rps8 ribosomal protein S8 Novel U 0.004021456793256625 -0.22232798141366897 1.0 7783 +244281 Myo16 myosin XVI Novel U 0.0040212502199831884 -0.22233012109284447 1.0 7784 +16519 Kcnj3 potassium inwardly-rectifying channel, subfamily J, member 3 Novel U 0.004020740889514984 -0.2223353967210908 1.0 7785 +71300 Rnf148 ring finger protein 148 Novel U 0.004019977375604915 -0.2223433051730721 1.0 7786 +320938 Tnpo3 transportin 3 Novel U 0.004016282352650292 -0.2223815780993688 1.0 7787 +631002 Ssxb8 SSX member B8 Novel U 0.0040150297196894745 -0.22239455283039883 1.0 7788 +544696 Tbc1d32 TBC1 domain family, member 32 Novel U 0.0040127870058395245 -0.22241778278673138 1.0 7789 +215029 Prl3d3 prolactin family 3, subfamily d, member 3 Novel U 0.004012407442838762 -0.22242171428781582 1.0 7790 +75687 Ripor1 RHO family interacting cell polarization regulator 1 Novel U 0.004011855300550587 -0.22242743335948603 1.0 7791 +57394 Cltrn collectrin, amino acid transport regulator Novel U 0.004011695506696408 -0.2224290884989747 1.0 7792 +216343 Tph2 tryptophan hydroxylase 2 Novel U 0.004011179601168276 -0.22243443223147558 1.0 7793 +53317 Plrg1 pleiotropic regulator 1 Novel N 0.004007779976710901 -0.22246964542984846 1.0 7794 +16956 Lpl lipoprotein lipase Novel U 0.004005487685941752 -0.22249338890228026 1.0 7795 +56635 Prl2a1 prolactin family 2, subfamily a, member 1 Novel U 0.004004234452797189 -0.22250636984999386 1.0 7796 +20190 Ryr1 ryanodine receptor 1, skeletal muscle Novel U 0.004004086587556444 -0.22250790143329666 1.0 7797 +80859 Nfkbiz nuclear factor of kappa light polypeptide gene enhancer in B cells inhibitor, zeta Novel U 0.00400376472274883 -0.2225112352983932 1.0 7798 +20091 Rps3a1 ribosomal protein S3A1 Novel N 0.004003473203584384 -0.22251425484431536 1.0 7799 +16779 Lamb2 laminin, beta 2 Novel N 0.004002477986795092 -0.22252456326710288 1.0 7800 +17906 Myl2 myosin, light polypeptide 2, regulatory, cardiac, slow Novel U 0.003998250932126282 -0.22256834696040548 1.0 7801 +14118 Fbn1 fibrillin 1 Novel U 0.003997878585702377 -0.22257220371242406 1.0 7802 +54720 Rcan1 regulator of calcineurin 1 Novel N 0.003996427378309499 -0.22258723527089358 1.0 7803 +224902 Safb2 scaffold attachment factor B2 Novel U 0.003994977324493323 -0.2226022548806536 1.0 7804 +81896 Ift122 intraflagellar transport 122 Novel U 0.003993747748275884 -0.2226149907906937 1.0 7805 +66510 Rnf181 ring finger protein 181 Novel U 0.003991828755724325 -0.22263486765245924 1.0 7806 +21417 Zeb1 zinc finger E-box binding homeobox 1 Novel U 0.0039903351146205555 -0.22265033873791126 1.0 7807 +66092 Ghitm growth hormone inducible transmembrane protein Novel N 0.003990094926393131 -0.22265282659967517 1.0 7808 +23871 Ets1 E26 avian leukemia oncogene 1, 5' domain Novel U 0.00398946046909547 -0.2226593982875077 1.0 7809 +270802 Kics2 KICSTOR subunit 2 Novel U 0.003987511117252181 -0.22267958960981898 1.0 7810 +19024 Ppfibp2 PTPRF interacting protein, binding protein 2 (liprin beta 2) Novel U 0.0039860339278856675 -0.22269489028871736 1.0 7811 +194227 Pramel25 PRAME like 25 Novel U 0.003982477937014904 -0.22273172312525982 1.0 7812 +67059 Ola1 Obg-like ATPase 1 Novel N 0.003982423846375099 -0.22273228339432882 1.0 7813 +627132 Vmn2r93 vomeronasal 2, receptor 93 Novel U 0.003982062158484692 -0.22273602974560777 1.0 7814 +207214 Larp4 La ribonucleoprotein 4 Novel U 0.00398194796602525 -0.22273721254734882 1.0 7815 +72421 Ift70b intraflagellar transport 70B Novel U 0.0039802723471287944 -0.2227545685527953 1.0 7816 +54152 Dnal4 dynein, axonemal, light chain 4 Novel U 0.0039781247955285775 -0.2227768128216734 1.0 7817 +27278 Clnk cytokine-dependent hematopoietic cell linker Novel U 0.003977554026409724 -0.22278272482944345 1.0 7818 +12268 C4b complement C4B (Chido blood group) Novel U 0.003977397315614173 -0.22278434803471217 1.0 7819 +50788 Fbxl8 F-box and leucine-rich repeat protein 8 Novel U 0.003977103482818388 -0.22278739154515168 1.0 7820 +71492 Bbs7 Bardet-Biedl syndrome 7 Novel U 0.003976968628065085 -0.22278878836625327 1.0 7821 +52614 Adgre4 adhesion G protein-coupled receptor E4 Novel U 0.003975120649882572 -0.22280792966351873 1.0 7822 +70218 Kif18b kinesin family member 18B Novel U 0.0039750145266813424 -0.22280902888414844 1.0 7823 +237436 Gas2l3 growth arrest-specific 2 like 3 Novel U 0.003974703453353465 -0.22281225097145263 1.0 7824 +225372 Apbb3 amyloid beta precursor protein binding family B member 3 Novel U 0.003974435753093609 -0.22281502380194404 1.0 7825 +53609 Clasrp CLK4-associating serine/arginine rich protein Novel U 0.003971162872666693 -0.2228489241898159 1.0 7826 +12580 Cdkn2c cyclin dependent kinase inhibitor 2C Novel U 0.0039688654274108014 -0.222872721052252 1.0 7827 +171253 Vmn1r215 vomeronasal 1 receptor 215 Novel U 0.003968865004210133 -0.22287272543575057 1.0 7828 +100504164 Cmtm1 CKLF-like MARVEL transmembrane domain containing 1 Novel U 0.0039681381206207594 -0.22288025447207432 1.0 7829 +15366 Hmmr hyaluronan mediated motility receptor (RHAMM) Novel U 0.003966898808997965 -0.22289309122112302 1.0 7830 +239796 Mb21d2 Mab-21 domain containing 2 Novel U 0.003966561841172831 -0.22289658152277858 1.0 7831 +381836 Sbk2 SH3-binding domain kinase family, member 2 Novel U 0.003964383862732921 -0.22291914095186197 1.0 7832 +26895 Cops7b COP9 signalosome subunit 7B Novel N 0.003963876431942503 -0.2229243969033082 1.0 7833 +12728 Clcn5 chloride channel, voltage-sensitive 5 Novel N 0.003963316751644335 -0.22293019405343814 1.0 7834 +237926 Rsad1 radical S-adenosyl methionine domain containing 1 Novel U 0.00396313135766116 -0.22293211435822138 1.0 7835 +230709 Zmpste24 zinc metallopeptidase, STE24 Novel U 0.003957176042596053 -0.2229937993158953 1.0 7836 +18578 Pde4b phosphodiesterase 4B, cAMP specific Novel U 0.0039566128068576475 -0.22299963329315833 1.0 7837 +209318 Gps1 G protein pathway suppressor 1 Novel N 0.003955914289215197 -0.22300686851593632 1.0 7838 +29866 Cabp2 calcium binding protein 2 Novel N 0.00395584558454749 -0.2230075801566259 1.0 7839 +74097 Pop7 processing of precursor 7, ribonuclease P family, (S. cerevisiae) Novel N 0.003955688750712321 -0.22300920463633495 1.0 7840 +12683 Cidea cell death-inducing DNA fragmentation factor, alpha subunit-like effector A Novel U 0.003953586255260099 -0.22303098221511322 1.0 7841 +17901 Myl1 myosin, light polypeptide 1 Novel U 0.003952592695531018 -0.22304127347412556 1.0 7842 +21923 Tnc tenascin C Novel U 0.003948555614611313 -0.22308308942557997 1.0 7843 +78672 9530057J20Rik RIKEN cDNA 9530057J20 gene Novel U 0.003947106686904387 -0.22309809737113737 1.0 7844 +15903 Id3 inhibitor of DNA binding 3 Novel U 0.0039455239379395475 -0.2231144914328851 1.0 7845 +19079 Prkab1 protein kinase, AMP-activated, beta 1 non-catalytic subunit Novel N 0.003944995094603784 -0.22311996917477217 1.0 7846 +245866 Ift52 intraflagellar transport 52 Novel U 0.003944154160197876 -0.2231286795457043 1.0 7847 +319508 Syt15 synaptotagmin XV Novel U 0.003942815254230237 -0.22314254788970297 1.0 7848 +71956 Rnf135 ring finger protein 135 Novel U 0.003942203672553764 -0.2231488826326032 1.0 7849 +219072 Haus4 HAUS augmin-like complex, subunit 4 Novel U 0.003941209343385398 -0.22315918186144235 1.0 7850 +67894 Dennd10 DENN domain containing 10 Novel U 0.003940722296446799 -0.22316422667762154 1.0 7851 +12953 Cry2 cryptochrome circadian regulator 2 Novel U 0.003940426316577412 -0.22316729242737884 1.0 7852 +27979 Eif3b eukaryotic translation initiation factor 3, subunit B Novel U 0.003939858851032086 -0.22317317021684288 1.0 7853 +73086 Rps6ka5 ribosomal protein S6 kinase, polypeptide 5 Novel U 0.003935933105867387 -0.22321383295620692 1.0 7854 +18788 Serpinb2 serine (or cysteine) peptidase inhibitor, clade B, member 2 Novel U 0.003935129812181301 -0.22322215344580054 1.0 7855 +56279 Dipk1b divergent protein kinase domain 1B Novel U 0.003934560754358198 -0.22322804772802549 1.0 7856 +56784 Ralgapa1 Ral GTPase activating protein, alpha subunit 1 Novel U 0.003934481604135243 -0.22322886756343294 1.0 7857 +19181 Psmc2 proteasome (prosome, macropain) 26S subunit, ATPase 2 Novel U 0.003930781623563937 -0.2232671918405602 1.0 7858 +434232 Iqck IQ motif containing K Novel U 0.00393000894419795 -0.22327519522803263 1.0 7859 +17927 Myod1 myogenic differentiation 1 Novel U 0.003929662263669536 -0.22327878613354946 1.0 7860 +620639 LOC620639 uncharacterized LOC620639 Novel U 0.003926653845189656 -0.2233099472332676 1.0 7861 +243910 Nfkbid nuclear factor of kappa light polypeptide gene enhancer in B cells inhibitor, delta Novel U 0.0039262580691644365 -0.22331404666832638 1.0 7862 +68082 Dusp19 dual specificity phosphatase 19 Novel U 0.00392468297605357 -0.22333036143099036 1.0 7863 +73647 Capn9 calpain 9 Novel N 0.003921493498020956 -0.22336339793960372 1.0 7864 +20618 Sncg synuclein, gamma Novel U 0.003921022228016191 -0.22336827933882095 1.0 7865 +68876 Atp23 ATP23 metallopeptidase and ATP synthase assembly factor homolog Novel N 0.00391838486847109 -0.22339559702229053 1.0 7866 +26379 Esrra estrogen related receptor, alpha Novel N 0.0039173007055048545 -0.22340682674665488 1.0 7867 +216965 Taok1 TAO kinase 1 Novel U 0.0039164460371135575 -0.22341567937375623 1.0 7868 +22413 Wnt2 wingless-type MMTV integration site family, member 2 Novel U 0.003914911503206096 -0.22343157402552463 1.0 7869 +21897 Tlr1 toll-like receptor 1 Novel U 0.003914541519508678 -0.22343540630449993 1.0 7870 +12894 Cpt1a carnitine palmitoyltransferase 1a, liver Novel U 0.003912735989174749 -0.22345410792834514 1.0 7871 +211383 Amer3 APC membrane recruitment 3 Novel U 0.003910531941486599 -0.22347693738184485 1.0 7872 +18133 Ccn3 cellular communication network factor 3 Novel U 0.00390943993860166 -0.2234882483118294 1.0 7873 +101055939 Kif19b kinesin family member 19B Novel U 0.003908940981109237 -0.22349341649713353 1.0 7874 +20732 Spint1 serine protease inhibitor, Kunitz type 1 Novel U 0.0039067559496654145 -0.22351604898099964 1.0 7875 +66923 Pbrm1 polybromo 1 Novel U 0.003906599862746251 -0.22351766572417725 1.0 7876 +229279 Hnrnpa3 heterogeneous nuclear ribonucleoprotein A3 Novel N 0.00390531144010819 -0.22353101116350765 1.0 7877 +623898 Speer1h spermatogenesis associated glutamate (E)-rich protein 1H Novel U 0.0039034541629059754 -0.22355024877971352 1.0 7878 +431706 Zfp457 zinc finger protein 457 Novel U 0.0039032287600858227 -0.22355258349471493 1.0 7879 +381122 Capn13 calpain 13 Novel U 0.0039027605087522013 -0.22355743362663563 1.0 7880 +19386 Ranbp2 RAN binding protein 2 Novel U 0.0039023371818654013 -0.223561818432613 1.0 7881 +19177 Psmb7 proteasome (prosome, macropain) subunit, beta type 7 Novel U 0.0039010158413156208 -0.22357550483459088 1.0 7882 +330908 Opcml opioid binding protein/cell adhesion molecule-like Novel U 0.003899751436671737 -0.22358860149632717 1.0 7883 +100952 Emilin1 elastin microfibril interfacer 1 Novel U 0.003898565398144476 -0.22360088644440365 1.0 7884 +58859 Efemp2 epidermal growth factor-containing fibulin-like extracellular matrix protein 2 Novel U 0.003896039661653544 -0.2236270479399476 1.0 7885 +621054 Tpm3-rs7 tropomyosin 3, related sequence 7 Novel U 0.0038952126078193104 -0.22363561453637465 1.0 7886 +18597 Pdha1 pyruvate dehydrogenase E1 alpha 1 Novel U 0.0038934045834853825 -0.2236543419929899 1.0 7887 +14601 Ghrh growth hormone releasing hormone Novel U 0.003892576267650961 -0.22366292166117338 1.0 7888 +15199 Hebp1 heme binding protein 1 Novel N 0.0038919845102356877 -0.22366905106502782 1.0 7889 +100039452 Gm2244 predicted gene 2244 Novel U 0.0038909798787372545 -0.22367945700506311 1.0 7890 +67706 Tmem179b transmembrane protein 179B Novel U 0.003889582944772278 -0.22369392640115063 1.0 7891 +228846 D630003M21Rik RIKEN cDNA D630003M21 gene Novel U 0.0038876073545822238 -0.22371438949939518 1.0 7892 +140577 Ankrd6 ankyrin repeat domain 6 Novel U 0.0038875974642884627 -0.22371449194273282 1.0 7893 +14284 Fosl2 fos-like antigen 2 Novel N 0.0038853191637054666 -0.22373809050527638 1.0 7894 +218693 Paip1 polyadenylate binding protein-interacting protein 1 Novel U 0.0038824216604897493 -0.2237681027483345 1.0 7895 +66531 Cmc2 C-X9-C motif containing 2 Novel U 0.003881976556007349 -0.22377271312593117 1.0 7896 +73707 Gucy2g guanylate cyclase 2g Novel U 0.003876732800770577 -0.22382702777029453 1.0 7897 +114868 Psg25 pregnancy-specific beta-1-glycoprotein 25 Novel U 0.003874041399265501 -0.22385490521860904 1.0 7898 +68867 Rnf122 ring finger protein 122 Novel U 0.0038738630098762417 -0.22385675297003876 1.0 7899 +231589 Vmn2r13 vomeronasal 2, receptor 13 Novel U 0.00387196557845033 -0.22387640650237361 1.0 7900 +20690 Spam1 sperm adhesion molecule 1 Novel U 0.003871892371187614 -0.22387716478079428 1.0 7901 +64009 Syne1 spectrin repeat containing, nuclear envelope 1 Novel U 0.0038702828339220066 -0.22389383631488077 1.0 7902 +268996 Ss18 SS18, subunit of BAF chromatin remodeling complex Novel N 0.0038687613789231846 -0.2239095954957434 1.0 7903 +72149 Strada STE20-related kinase adaptor alpha Novel U 0.0038680445787715487 -0.22391702008815054 1.0 7904 +100862375 Entpd4b ectonucleoside triphosphate diphosphohydrolase 4B Novel U 0.0038666899060274566 -0.22393105174390138 1.0 7905 +258915 Or6z1 olfactory receptor family 6 subfamily Z member 1 Novel U 0.0038656466886022164 -0.22394185735569808 1.0 7906 +59022 Edf1 endothelial differentiation-related factor 1 Novel U 0.00386501540804034 -0.22394839613900577 1.0 7907 +70948 Wdr20rt WD repeat domain 20, retrogene Novel U 0.003864942504633128 -0.22394915127010112 1.0 7908 +77318 Ankrd55 ankyrin repeat domain 55 Novel U 0.0038633506974327055 -0.22396563915675521 1.0 7909 +17119 Mxd1 MAX dimerization protein 1 Novel N 0.003862884231958795 -0.22397047079079976 1.0 7910 +241263 Gpr158 G protein-coupled receptor 158 Novel U 0.0038618794632185646 -0.2239808781523811 1.0 7911 +107522 Ece2 endothelin converting enzyme 2 Novel N 0.003861460334220302 -0.22398521947676697 1.0 7912 +20085 Rps19 ribosomal protein S19 Novel U 0.0038607127066701014 -0.223992963378355 1.0 7913 +74241 Chpf chondroitin polymerizing factor Novel N 0.0038572942920961978 -0.22402837120413718 1.0 7914 +14562 Gdf3 growth differentiation factor 3 Novel U 0.0038566437549584862 -0.22403510944642432 1.0 7915 +218850 Tasor transcription activation suppressor Novel U 0.0038539901733737644 -0.2240625951572471 1.0 7916 +72278 Ccpg1 cell cycle progression 1 Novel N 0.0038533833072623 -0.22406888105647998 1.0 7917 +13386 Dlk1 delta like non-canonical Notch ligand 1 Novel U 0.0038529210399943768 -0.22407366920564492 1.0 7918 +83768 Dpp7 dipeptidylpeptidase 7 Novel U 0.003851516981810448 -0.22408821239415813 1.0 7919 +20890 Wnt8a wingless-type MMTV integration site family, member 8A Novel N 0.003851132171467308 -0.2240921982470424 1.0 7920 +56284 Mrpl19 mitochondrial ribosomal protein L19 Novel U 0.003851118338200617 -0.22409234153156407 1.0 7921 +13653 Egr1 early growth response 1 Novel U 0.003848986897790088 -0.224114418921269 1.0 7922 +621976 Tmem170b transmembrane protein 170B Novel N 0.0038485712294387326 -0.22411872440038796 1.0 7923 +56013 Srcin1 SRC kinase signaling inhibitor 1 Novel U 0.0038468350570945694 -0.22413670761645524 1.0 7924 +55944 Eif3d eukaryotic translation initiation factor 3, subunit D Novel U 0.0038462233183044862 -0.22414304398673307 1.0 7925 +21428 Mlx MAX-like protein X Novel U 0.00384607523933677 -0.22414457778381286 1.0 7926 +13710 Elf3 E74-like factor 3 Novel N 0.003845995196636945 -0.22414540686346637 1.0 7927 +226359 C1ql2 complement component 1, q subcomponent-like 2 Novel U 0.003845568604053212 -0.22414982549542523 1.0 7928 +100040870 Gm3005 predicted gene 3005 Novel U 0.0038446696252602696 -0.22415913708821017 1.0 7929 +170638 Hpcal4 hippocalcin-like 4 Novel N 0.0038434177121303282 -0.22417210436325566 1.0 7930 +22166 Txn1 thioredoxin 1 Novel U 0.0038432546829778457 -0.22417379301385779 1.0 7931 +229474 Fhdc1 FH2 domain containing 1 Novel U 0.003841359108033743 -0.22419342731681513 1.0 7932 +67891 Rpl4 ribosomal protein L4 Novel N 0.0038409243821015495 -0.22419793019372994 1.0 7933 +72500 Ier5l immediate early response 5-like Novel U 0.003837532499384118 -0.22423306320341496 1.0 7934 +21685 Tef thyrotroph embryonic factor Novel U 0.0038368617392028617 -0.22424001091532236 1.0 7935 +74104 Abcb6 ATP-binding cassette, sub-family B member 6 Novel U 0.003836711991336822 -0.22424156199879614 1.0 7936 +105245673 Gm6676 predicted gene 6676 Novel U 0.0038364936373839497 -0.22424382370186197 1.0 7937 +17349 Mlf1 myeloid leukemia factor 1 Novel U 0.0038354906877379083 -0.22425421222132547 1.0 7938 +12943 Pcdha10 protocadherin alpha 10 Novel U 0.0038352486512025917 -0.22425671922780177 1.0 7939 +328401 Rnase9 ribonuclease, RNase A family, 9 (non-active) Novel U 0.0038337727644900243 -0.2242720064138534 1.0 7940 +97031 Tprn taperin Novel N 0.003832692559716087 -0.224283195139392 1.0 7941 +21827 Thbs3 thrombospondin 3 Novel U 0.0038322771923437375 -0.22428749750098034 1.0 7942 +234673 Ces2e carboxylesterase 2E Novel U 0.003829908044908371 -0.22431203705223432 1.0 7943 +12609 Cebpd CCAAT/enhancer binding protein delta Novel N 0.003827994676048494 -0.22433185566398633 1.0 7944 +270328 Gsdmc3 gasdermin C3 Novel U 0.003826536052755844 -0.22434696403610194 1.0 7945 +23792 Adam23 a disintegrin and metallopeptidase domain 23 Novel N 0.003826138223486212 -0.22435108473859885 1.0 7946 +69802 Cox11 cytochrome c oxidase assembly protein 11, copper chaperone Novel N 0.0038254308227353897 -0.22435841197232134 1.0 7947 +26572 Cops3 COP9 signalosome subunit 3 Novel N 0.003822374653521861 -0.2243900676725689 1.0 7948 +212163 Ark2n arkadia (RNF111) N-terminal like PKA signaling regulator 2N Novel N 0.003821284979598182 -0.22440135447924928 1.0 7949 +215008 Vezt vezatin, adherens junctions transmembrane protein Novel U 0.003820635811917724 -0.22440807853674322 1.0 7950 +69724 Rnaseh2a ribonuclease H2, large subunit Novel U 0.003819891672867933 -0.2244157863045587 1.0 7951 +18510 Pax8 paired box 8 Novel U 0.003819439499888619 -0.22442046989741402 1.0 7952 +319581 Xkr5 X-linked Kx blood group related 5 Novel U 0.0038181894146288166 -0.22443341823944074 1.0 7953 +238393 Serpina3f serine (or cysteine) peptidase inhibitor, clade A, member 3F Novel U 0.003817418055049741 -0.2244414079566037 1.0 7954 +72240 1600014C23Rik RIKEN cDNA 1600014C23 gene Novel U 0.0038170044773929335 -0.2244456917803773 1.0 7955 +108907 Nusap1 nucleolar and spindle associated protein 1 Novel U 0.003815463168133227 -0.22446165661102152 1.0 7956 +65099 Irak1bp1 interleukin-1 receptor-associated kinase 1 binding protein 1 Novel U 0.003814608112502312 -0.22447051324913808 1.0 7957 +212706 N4bp3 NEDD4 binding protein 3 Novel N 0.0038133867662635155 -0.22448316391332995 1.0 7958 +68598 Dnajc8 DnaJ heat shock protein family (Hsp40) member C8 Novel U 0.003812908749343884 -0.22448811519686954 1.0 7959 +68877 Maf1 MAF1 homolog, negative regulator of RNA polymerase III Novel N 0.003810367263977491 -0.2245144398187478 1.0 7960 +75456 Prps1l1 phosphoribosyl pyrophosphate synthetase 1-like 1 Novel U 0.003807196915473906 -0.22454727818432835 1.0 7961 +69826 Ms4a10 membrane-spanning 4-domains, subfamily A, member 10 Novel U 0.0038071714970949458 -0.22454754146706205 1.0 7962 +171237 Vmn1r73 vomeronasal 1 receptor 73 Novel U 0.00380585742792572 -0.22456115255231918 1.0 7963 +215819 Nhsl1 NHS like 1 Novel U 0.003805619132369446 -0.22456362080985753 1.0 7964 +68736 Tyw5 tRNA-yW synthesizing protein 5 Novel N 0.0038053894668249595 -0.22456599967801746 1.0 7965 +66665 Msantd3 Myb/SANT-like DNA-binding domain containing 3 Novel U 0.0038049860114671413 -0.2245701786553509 1.0 7966 +216527 Ccm2 cerebral cavernous malformation 2 Novel U 0.0038041402969717073 -0.2245789385382932 1.0 7967 +384534 Vmn2r52 vomeronasal 2, receptor 52 Novel U 0.0038024865539004293 -0.22459606795466164 1.0 7968 +98828 Cdc123 cell division cycle 123 Novel N 0.0038022481365453625 -0.22459853747378786 1.0 7969 +21834 Thrb thyroid hormone receptor beta Novel U 0.0038013331501631437 -0.22460801487265633 1.0 7970 +54391 Rfk riboflavin kinase Novel N 0.0037995130161369716 -0.22462686776106575 1.0 7971 +77798 A930009A15Rik RIKEN cDNA A930009A15 gene Novel U 0.0037978994069045448 -0.22464358147245067 1.0 7972 +233115 Dpy19l3 dpy-19 like C-mannosyltransferase 3 Novel U 0.0037972436784884456 -0.22465037348582872 1.0 7973 +21678 Tead3 TEA domain family member 3 Novel U 0.0037970791774148338 -0.2246520773825415 1.0 7974 +21780 Tfam transcription factor A, mitochondrial Novel N 0.0037961245819425594 -0.2246619650510627 1.0 7975 +72333 Palld palladin, cytoskeletal associated protein Novel U 0.0037942921713982783 -0.2246809450992431 1.0 7976 +13184 Dcpp1 demilune cell and parotid protein 1 Novel U 0.003793552070051928 -0.2246886110446591 1.0 7977 +237353 Sh3rf3 SH3 domain containing ring finger 3 Novel U 0.0037935233336463944 -0.22468890869540292 1.0 7978 +18109 Mycn v-myc avian myelocytomatosis viral related oncogene, neuroblastoma derived Novel U 0.0037898566116771697 -0.22472688848102318 1.0 7979 +216799 Nlrp3 NLR family, pyrin domain containing 3 Novel U 0.0037896728270149977 -0.22472879211651234 1.0 7980 +14940 Gzmc granzyme C Novel U 0.0037881166279259523 -0.2247449111755194 1.0 7981 +319448 Fndc3a fibronectin type III domain containing 3A Novel U 0.0037880271255385186 -0.22474583823830618 1.0 7982 +21925 Tnnc2 troponin C2, fast Novel U 0.0037859902224686077 -0.22476693641334475 1.0 7983 +171504 Apobr apolipoprotein B receptor Novel U 0.003785168204040765 -0.22477545085319794 1.0 7984 +233231 Mrgprb1 MAS-related GPR, member B1 Novel U 0.0037838852430429276 -0.2247887397210385 1.0 7985 +19113 Prl7a1 prolactin family 7, subfamily a, member 1 Novel U 0.0037823710003222367 -0.22480442419736135 1.0 7986 +12921 Crhr1 corticotropin releasing hormone receptor 1 Novel U 0.0037801335294218997 -0.22482759984739414 1.0 7987 +193322 Oog1 oogenesin 1 Novel U 0.003779966448891661 -0.2248293304620339 1.0 7988 +14607 Gip gastric inhibitory polypeptide Novel U 0.003776933142598484 -0.22486074934890404 1.0 7989 +16846 Lep leptin Novel U 0.0037753229815827532 -0.22487742734377378 1.0 7990 +232827 Nlrp2 NLR family, pyrin domain containing 2 Novel U 0.003775176455376098 -0.22487894505740552 1.0 7991 +66711 Sbds SBDS ribosome maturation factor Novel U 0.0037733146337097963 -0.224898229745021 1.0 7992 +109648 Npy neuropeptide Y Novel U 0.003772301358103433 -0.22490872522044209 1.0 7993 +625249 Gpx4 glutathione peroxidase 4 Novel U 0.0037717335382637523 -0.22491460667967542 1.0 7994 +216781 Trim58 tripartite motif-containing 58 Novel U 0.003771012773959974 -0.2249220723326401 1.0 7995 +217845 Ifi27l2b interferon, alpha-inducible protein 27 like 2B Novel U 0.003771003826488213 -0.22492216501025847 1.0 7996 +14087 Fanca Fanconi anemia, complementation group A Novel U 0.0037709495681265428 -0.22492272701658503 1.0 7997 +68678 Smtnl1 smoothelin-like 1 Novel U 0.0037709325016843545 -0.22492290379023216 1.0 7998 +241489 Pde11a phosphodiesterase 11A Novel U 0.0037696165758822806 -0.22493653410643133 1.0 7999 +244114 Vmn2r72 vomeronasal 2, receptor 72 Novel U 0.003769579040869767 -0.22493692289285702 1.0 8000 +100862394 Rbmyf7 RNA binding motif protein Y-linked family member 7 Novel U 0.003769445205133418 -0.22493830915901453 1.0 8001 +381404 Pabpc1l poly(A) binding protein, cytoplasmic 1-like Novel U 0.0037670153264207176 -0.2249634777628427 1.0 8002 +67694 Ift74 intraflagellar transport 74 Novel N 0.0037658222497105633 -0.2249758356121862 1.0 8003 +666085 Vmn2r54 vomeronasal 2, receptor 54 Novel U 0.003763047002635753 -0.22500458153015573 1.0 8004 +12495 Entpd1 ectonucleoside triphosphate diphosphohydrolase 1 Novel U 0.0037604717107508193 -0.22503125631884174 1.0 8005 +637908 Vmn2r53 vomeronasal 2, receptor 53 Novel U 0.003760232677999669 -0.22503373221222037 1.0 8006 +231279 Guf1 GUF1 homolog, GTPase Novel U 0.0037580515265663345 -0.22505632450706536 1.0 8007 +320405 Cadps2 Ca2+-dependent activator protein for secretion 2 Novel U 0.0037579243908168543 -0.22505764137497913 1.0 8008 +75477 Pfn3 profilin 3 Novel U 0.0037567617106063346 -0.22506968437837863 1.0 8009 +58800 Trpm7 transient receptor potential cation channel, subfamily M, member 7 Novel N 0.0037566075424325424 -0.22507128124725478 1.0 8010 +67025 Rpl11 ribosomal protein L11 Novel U 0.003755965909362376 -0.225077927261503 1.0 8011 +20834 Znrf4 zinc and ring finger 4 Novel U 0.003755868844716268 -0.22507893265391657 1.0 8012 +17394 Mmp8 matrix metallopeptidase 8 Novel U 0.0037535897403142256 -0.2251025395423914 1.0 8013 +20005 Rpl9 ribosomal protein L9 Novel U 0.0037519091643058084 -0.22511994689344061 1.0 8014 +218121 Mboat1 membrane bound O-acyltransferase domain containing 1 Novel U 0.003751026153528522 -0.22512909309004434 1.0 8015 +215641 Mageb18 MAGE family member B18 Novel U 0.0037506317875375043 -0.22513317792001522 1.0 8016 +108664 Atp6v1h ATPase, H+ transporting, lysosomal V1 subunit H Novel U 0.003750371394836808 -0.22513587505904908 1.0 8017 +67016 Tbc1d2b TBC1 domain family, member 2B Novel U 0.0037489190930498966 -0.22515091795321604 1.0 8018 +66043 Atp5f1d ATP synthase F1 subunit delta Novel U 0.003748848021123421 -0.22515165411389412 1.0 8019 +192194 Btnl10 butyrophilin-like 10 Novel U 0.003748835495535638 -0.2251517838535206 1.0 8020 +14181 Fgfbp1 fibroblast growth factor binding protein 1 Novel U 0.0037484303041188985 -0.22515598081289528 1.0 8021 +117066 Cts3 cathepsin 3 Novel U 0.003748393030971216 -0.22515636688693366 1.0 8022 +72727 B3gat3 beta-1,3-glucuronyltransferase 3 Novel U 0.003748064913702439 -0.2251597655148174 1.0 8023 +19275 Ptprn protein tyrosine phosphatase receptor type N Novel U 0.0037480070544114066 -0.22516036481945187 1.0 8024 +108069 Grm3 glutamate receptor, metabotropic 3 Novel N 0.0037479524796458046 -0.22516093010307994 1.0 8025 +100503311 Cimap3 ciliary microtubule associated protein 3 Novel U 0.003743972020432153 -0.22520215956876438 1.0 8026 +67084 Ceacam14 CEA cell adhesion molecule 14 Novel U 0.0037393953046098603 -0.22524956504080026 1.0 8027 +59053 Hgh1 HGH1 homolog Novel U 0.0037379759106110568 -0.22526426707717984 1.0 8028 +68176 Inka1 inka box actin regulator 1 Novel U 0.003737824483904659 -0.2252658355500268 1.0 8029 +258671 Or9k2b olfactory receptor family 9 subfamily K member 2B Novel U 0.003736966112178858 -0.2252747265361452 1.0 8030 +546964 Vmn2r62 vomeronasal 2, receptor 62 Novel U 0.0037365911448031257 -0.22527861043589664 1.0 8031 +67836 Wdr83 WD repeat domain containing 83 Novel N 0.0037351924051115914 -0.22529309853564047 1.0 8032 +21949 Tnfsf8 tumor necrosis factor (ligand) superfamily, member 8 Novel U 0.003734737586115855 -0.22529780953584694 1.0 8033 +217038 Mrm1 mitochondrial rRNA methyltransferase 1 Novel N 0.0037344047407500067 -0.2253012571372047 1.0 8034 +494519 Scgb2b20 secretoglobin, family 2B, member 20 Novel U 0.0037335669265959447 -0.22530993518867082 1.0 8035 +380669 Lin28b lin-28 homolog B Novel U 0.003731622574343566 -0.2253300747253838 1.0 8036 +22094 Tshb thyroid stimulating hormone, beta subunit Novel U 0.0037311288727839907 -0.22533518846990833 1.0 8037 +11789 Apc APC, WNT signaling pathway regulator Novel U 0.003731032592975878 -0.22533618573299571 1.0 8038 +101533 Klk9 kallikrein related-peptidase 9 Novel U 0.003730652902959525 -0.22534011854970348 1.0 8039 +74694 Tbc1d30 TBC1 domain family, member 30 Novel U 0.0037302362674301232 -0.22534443404682086 1.0 8040 +212032 Hk3 hexokinase 3 Novel N 0.0037297659713240038 -0.2253493053584279 1.0 8041 +105372 Utp15 UTP15 small subunit processome component Novel N 0.003728841071878939 -0.22535888543647545 1.0 8042 +19896 Rpl10a ribosomal protein L10A Novel U 0.00372678346479756 -0.2253801980629842 1.0 8043 +544791 Myh13 myosin, heavy polypeptide 13, skeletal muscle Novel N 0.003724523677527521 -0.22540360486524075 1.0 8044 +14593 Ggps1 geranylgeranyl diphosphate synthase 1 Novel U 0.003724423054142605 -0.2254046471189539 1.0 8045 +18439 P2rx7 purinergic receptor P2X, ligand-gated ion channel, 7 Novel U 0.003724126527944128 -0.22540771852756994 1.0 8046 +14463 Gata4 GATA binding protein 4 Novel U 0.0037231920555762994 -0.22541739776163677 1.0 8047 +20776 Tmie transmembrane inner ear Novel N 0.00372249029332735 -0.2254246665919422 1.0 8048 +67549 Gpr89 G protein-coupled receptor 89 Novel U 0.0037209100963372893 -0.22544103422041908 1.0 8049 +68675 Arb2a ARB2 cotranscriptional regulator A Novel U 0.0037199538708619978 -0.22545093877245792 1.0 8050 +225898 Eml3 echinoderm microtubule associated protein like 3 Novel U 0.003718640330248481 -0.22546454438295244 1.0 8051 +100040599 Potefam3a POTE ankyrin domain family member 3A Novel U 0.0037177985398673566 -0.22547326362004774 1.0 8052 +98956 Nat10 N-acetyltransferase 10 Novel U 0.003717678474563312 -0.2254745072525201 1.0 8053 +381485 Trim55 tripartite motif-containing 55 Novel U 0.0037172610254248887 -0.225478831176973 1.0 8054 +193034 Trpv1 transient receptor potential cation channel, subfamily V, member 1 Novel U 0.003717007364024031 -0.2254814585934244 1.0 8055 +209707 Lcorl ligand dependent nuclear receptor corepressor-like Novel U 0.0037149244647085838 -0.22550303319606219 1.0 8056 +66191 Ier3ip1 immediate early response 3 interacting protein 1 Novel U 0.0037147384323662005 -0.2255049601129491 1.0 8057 +56722 Litaf LPS-induced TN factor Novel N 0.0037118741255079643 -0.22553462850922767 1.0 8058 +53417 Hif3a hypoxia inducible factor 3, alpha subunit Novel U 0.0037111146504510985 -0.22554249512690033 1.0 8059 +66462 Rex1bd required for excision 1-B domain containing Novel U 0.003710763936183024 -0.22554612781375993 1.0 8060 +84094 Plvap plasmalemma vesicle associated protein Novel U 0.003709380425484656 -0.22556045817209316 1.0 8061 +13011 Cst7 cystatin F (leukocystatin) Novel N 0.0037085515942074155 -0.22556904317921644 1.0 8062 +258933 Or10p1 olfactory receptor family 10 subfamily P member 1 Novel U 0.003706451262911286 -0.2255907983417371 1.0 8063 +12567 Cdk4 cyclin dependent kinase 4 Novel U 0.0037058483748398504 -0.22559704303656214 1.0 8064 +14628 Ostm1 osteopetrosis associated transmembrane protein 1 Novel U 0.003704996149400298 -0.22560587035964963 1.0 8065 +213988 Tnrc6b trinucleotide repeat containing 6b Novel N 0.00370356094699306 -0.22562073613900407 1.0 8066 +22673 Zfp185 zinc finger protein 185 Novel U 0.0037035127744029623 -0.22562123510910873 1.0 8067 +22253 Unc5c unc-5 netrin receptor C Novel N 0.003702809712641655 -0.2256285173997204 1.0 8068 +258446 Or4c1 olfactory receptor family 4 subfamily C member 1 Novel U 0.0037024866000966855 -0.22563186418883946 1.0 8069 +93683 Glce glucuronyl C5-epimerase Novel N 0.0037021199262770904 -0.22563566218420908 1.0 8070 +103964 Try5 trypsin 5 Novel U 0.003699942852949453 -0.22565821223816931 1.0 8071 +73822 Mfsd12 major facilitator superfamily domain containing 12 Novel N 0.0036993940513694807 -0.2256638967068938 1.0 8072 +16574 Kif5c kinesin family member 5C Novel U 0.003699187316948952 -0.2256660380552256 1.0 8073 +11937 Atp2a1 ATPase, Ca++ transporting, cardiac muscle, fast twitch 1 Novel U 0.0036979621781301018 -0.22567872800283695 1.0 8074 +238023 Hexd hexosaminidase D Novel U 0.003695811165743902 -0.2257010081184225 1.0 8075 +545389 Cep170 centrosomal protein 170 Novel U 0.003692263782827504 -0.2257377517940566 1.0 8076 +100042636 Vmn2r34 vomeronasal 2, receptor 34 Novel U 0.0036909574919783295 -0.22575128231173036 1.0 8077 +56526 Septin6 septin 6 Novel U 0.0036902869798382857 -0.22575822745443505 1.0 8078 +20320 Nptn neuroplastin Novel U 0.003689455138998254 -0.2257668436345108 1.0 8079 +338375 Atp6v1g3 ATPase, H+ transporting, lysosomal V1 subunit G3 Novel U 0.0036892359882598254 -0.22576911359065527 1.0 8080 +223775 Pim3 proviral integration site 3 Novel N 0.0036885774764836483 -0.22577593443398547 1.0 8081 +11705 Amh anti-Mullerian hormone Novel N 0.0036865734733531595 -0.22579669183253304 1.0 8082 +12163 Bmp8a bone morphogenetic protein 8a Novel U 0.0036855358514152493 -0.2258074394864559 1.0 8083 +17354 Mllt10 myeloid/lymphoid or mixed-lineage leukemia; translocated to, 10 Novel U 0.003684280719964014 -0.2258204400967676 1.0 8084 +71924 Tube1 tubulin, epsilon 1 Novel N 0.0036840861577515506 -0.2258224553657684 1.0 8085 +243862 Psg22 pregnancy-specific beta-1-glycoprotein 22 Novel U 0.0036836275964067158 -0.22582720512910384 1.0 8086 +11816 Apoe apolipoprotein E Novel U 0.003683434800720731 -0.2258292021004814 1.0 8087 +11813 Apoc2 apolipoprotein C2 Novel U 0.003682653143751054 -0.22583729847767775 1.0 8088 +64138 Ctsz cathepsin Z Novel N 0.0036807636183034437 -0.2258568701201493 1.0 8089 +22110 Tspyl1 testis-specific protein, Y-encoded-like 1 Novel U 0.003680664316250997 -0.22585789868754416 1.0 8090 +13555 E2f1 E2F transcription factor 1 Novel U 0.00367786260092052 -0.22588691876283581 1.0 8091 +244199 Ovch2 ovochymase 2 Novel U 0.0036776675381438623 -0.2258889392166641 1.0 8092 +52712 Zkscan6 zinc finger with KRAB and SCAN domains 6 Novel U 0.0036776355120522798 -0.2258892709418679 1.0 8093 +105243944 Fam237a family with sequence similarity 237, member A Novel U 0.0036767550973378998 -0.2258983902485374 1.0 8094 +118568164 LOC118568164 uncharacterized LOC118568164 Novel U 0.0036766659403129945 -0.2258993137340705 1.0 8095 +171248 Vmn1r214 vomeronasal 1 receptor 214 Novel U 0.0036760867829057266 -0.2259053126274562 1.0 8096 +233067 Lrfn3 leucine rich repeat and fibronectin type III domain containing 3 Novel U 0.0036759041062457616 -0.22590720478629492 1.0 8097 +21857 Timp1 tissue inhibitor of metalloproteinase 1 Novel U 0.0036757430116594043 -0.2259088733987247 1.0 8098 +403187 Opa3 optic atrophy 3 Novel U 0.003675578151117019 -0.2259105810188032 1.0 8099 +26891 Cops4 COP9 signalosome subunit 4 Novel N 0.0036752731911145462 -0.2259137397844838 1.0 8100 +19242 Ptn pleiotrophin Novel U 0.0036743488495990374 -0.22592331408351538 1.0 8101 +59015 Nup160 nucleoporin 160 Novel N 0.003673946992483455 -0.22592747650630826 1.0 8102 +26889 Cln8 CLN8 transmembrane ER and ERGIC protein Novel N 0.0036726505159963107 -0.2259409053671427 1.0 8103 +93700 Pcdhgb2 protocadherin gamma subfamily B, 2 Novel U 0.0036721112605108356 -0.22594649095773417 1.0 8104 +71927 Itfg1 integrin alpha FG-GAP repeat containing 1 Novel U 0.0036700825461407857 -0.22596750431448878 1.0 8105 +544990 Gm5795 predicted gene 5795 Novel U 0.0036674825306756793 -0.22599443518920545 1.0 8106 +546071 Mast3 microtubule associated serine/threonine kinase 3 Novel N 0.0036672443575040395 -0.22599690217908777 1.0 8107 +67006 Cisd2 CDGSH iron sulfur domain 2 Novel U 0.0036659552503952313 -0.2260102547081437 1.0 8108 +57748 Jmy junction-mediating and regulatory protein Novel N 0.00366567020100324 -0.22601320724037544 1.0 8109 +258825 Or10d5 olfactory receptor family 10 subfamily D member 5 Novel U 0.003662270268856701 -0.22604842362578256 1.0 8110 +67184 Ndufa13 NADH:ubiquinone oxidoreductase subunit A13 Novel U 0.0036613873542931086 -0.226057568825808 1.0 8111 +22099 Tsn translin Novel N 0.0036595910965159287 -0.22607617440481523 1.0 8112 +67201 Glod4 glyoxalase domain containing 4 Novel U 0.0036585918898343907 -0.22608652415477545 1.0 8113 +320609 Strip2 striatin interacting protein 2 Novel U 0.0036571069537161 -0.22610190507427405 1.0 8114 +67180 Yipf5 Yip1 domain family, member 5 Novel U 0.0036513105760920214 -0.2261619437631586 1.0 8115 +74610 Abcb8 ATP-binding cassette, sub-family B member 8 Novel U 0.003649443523941171 -0.22618128262796108 1.0 8116 +22687 Zpr1 ZPR1 zinc finger Novel U 0.003648091043576908 -0.22619529157511373 1.0 8117 +223780 Adm2 adrenomedullin 2 Novel U 0.003647986905966127 -0.22619637022906286 1.0 8118 +12944 Crp C-reactive protein, pentraxin-related Novel U 0.0036473887807951986 -0.22620256558992105 1.0 8119 +18553 Pcsk6 proprotein convertase subtilisin/kexin type 6 Novel U 0.0036467545370506248 -0.2262091350657777 1.0 8120 +11517 Adcyap1r1 adenylate cyclase activating polypeptide 1 receptor 1 Novel U 0.0036461639899958566 -0.2262152519327578 1.0 8121 +50529 Mrps7 mitchondrial ribosomal protein S7 Novel N 0.0036458439482671538 -0.22621856691446288 1.0 8122 +12934 Dpysl2 dihydropyrimidinase-like 2 Novel U 0.003645408762868773 -0.22622307455051335 1.0 8123 +30054 Rnf17 ring finger protein 17 Novel U 0.003643830396963372 -0.2262394232126755 1.0 8124 +231591 Vmn2r14 vomeronasal 2, receptor 14 Novel U 0.003642159161882831 -0.22625673381070086 1.0 8125 +209268 Igsf1 immunoglobulin superfamily, member 1 Novel N 0.003641055697077999 -0.22626816346287487 1.0 8126 +319477 Insyn1 inhibitory synaptic factor 1 Novel U 0.0036405549838756175 -0.2262733498337651 1.0 8127 +223774 Alg12 ALG12 alpha-1,6-mannosyltransferase Novel U 0.0036400887749326247 -0.2262781788106708 1.0 8128 +26561 Mmp23 matrix metallopeptidase 23 Novel U 0.0036396367023579235 -0.22628286136353848 1.0 8129 +50701 Elane elastase, neutrophil expressed Novel U 0.0036390950918409456 -0.22628847134746885 1.0 8130 +260409 Cdc42ep3 CDC42 effector protein 3 Novel N 0.003638492644932036 -0.22629471147274696 1.0 8131 +18733 Pirb paired Ig-like receptor B Novel U 0.0036369189107776203 -0.22631101215938468 1.0 8132 +18158 Nppb natriuretic peptide type B Novel U 0.003636699718228317 -0.22631328254860478 1.0 8133 +17972 Ncf4 neutrophil cytosolic factor 4 Novel U 0.0036359836896733056 -0.22632069914883943 1.0 8134 +73710 Tubb2b tubulin, beta 2B class IIB Novel U 0.0036347974403024915 -0.2263329862808265 1.0 8135 +107823 Nsd2 nuclear receptor binding SET domain protein 2 Novel U 0.0036307807769556583 -0.22637459074773228 1.0 8136 +57253 Tas2r108 taste receptor, type 2, member 108 Novel N 0.003629753255953334 -0.22638523377649641 1.0 8137 +68618 Eola1 endothelium and lymphocyte associated ASCH domain 1 Novel U 0.0036293702680238477 -0.22638920075287997 1.0 8138 +67956 Kmt5a lysine methyltransferase 5A Novel U 0.003628440001911421 -0.22639883641869163 1.0 8139 +26943 Serinc3 serine incorporator 3 Novel N 0.003628304039615175 -0.22640024471168665 1.0 8140 +68815 Btbd10 BTB domain containing 10 Novel U 0.0036271091702292616 -0.22641262112950675 1.0 8141 +544763 Hbq1b hemoglobin, theta 1B Novel U 0.0036268450532227414 -0.22641535684477787 1.0 8142 +14042 Ext1 exostosin glycosyltransferase 1 Novel U 0.0036267915520867364 -0.22641591100778585 1.0 8143 +21858 Timp2 tissue inhibitor of metalloproteinase 2 Novel N 0.0036255345036451357 -0.22642893147422072 1.0 8144 +192657 Ell2 elongation factor for RNA polymerase II 2 Novel N 0.003623572077384326 -0.2264492582209189 1.0 8145 +13036 Ctsh cathepsin H Novel U 0.003623557394307949 -0.22644941030774132 1.0 8146 +215751 Ginm1 glycoprotein integral membrane 1 Novel U 0.0036205785790145734 -0.22648026477862684 1.0 8147 +14561 Gdf11 growth differentiation factor 11 Novel N 0.0036198802379582918 -0.2264874981723311 1.0 8148 +54710 Hs3st3b1 heparan sulfate (glucosamine) 3-O-sulfotransferase 3B1 Novel N 0.0036194336440491704 -0.2264921239773608 1.0 8149 +320237 Smim10l2a small integral membrane protein 10 like 2A Novel U 0.003619281056929253 -0.22649370446973288 1.0 8150 +140499 Ube2j2 ubiquitin-conjugating enzyme E2J 2 Novel U 0.0036186082211577784 -0.2265006736805355 1.0 8151 +627111 Vmn2r92 vomeronasal 2, receptor 92 Novel U 0.0036182565505503616 -0.22650431627312656 1.0 8152 +231507 Plac8 placenta-specific 8 Novel U 0.003617957618376583 -0.2265074126027557 1.0 8153 +20918 Eif1 eukaryotic translation initiation factor 1 Novel N 0.0036168347603749316 -0.22651904312902485 1.0 8154 +57757 Pglyrp2 peptidoglycan recognition protein 2 Novel U 0.0036162145775984153 -0.2265254669618366 1.0 8155 +57377 Mogs mannosyl-oligosaccharide glucosidase Novel U 0.0036157926478150677 -0.22652983729666232 1.0 8156 +212085 Trim52 tripartite motif-containing 52 Novel U 0.0036156439600954202 -0.22653137739917456 1.0 8157 +66999 Med28 mediator complex subunit 28 Novel U 0.0036154179327812248 -0.22653371858266474 1.0 8158 +14944 Gzmg granzyme G Novel U 0.003615109017299145 -0.22653691831907313 1.0 8159 +628580 Vmn1r68 vomeronasal 1 receptor 68 Novel U 0.003614839838989713 -0.22653970645915344 1.0 8160 +16336 Insl3 insulin-like 3 Novel U 0.0036146779559706665 -0.2265413832381431 1.0 8161 +213550 Dis3l DIS3 like exosome 3'-5' exoribonuclease Novel N 0.0036124274504672842 -0.22656469390016576 1.0 8162 +98660 Atp1a2 ATPase, Na+/K+ transporting, alpha 2 polypeptide Novel U 0.0036122123350907104 -0.22656692205816475 1.0 8163 +16523 Kcnj8 potassium inwardly-rectifying channel, subfamily J, member 8 Novel U 0.003611474304363285 -0.226574566556178 1.0 8164 +140498 Rxfp2 relaxin/insulin-like family peptide receptor 2 Novel U 0.003608660238976398 -0.22660371455294795 1.0 8165 +11535 Adm adrenomedullin Novel U 0.003608230811079937 -0.22660816255298283 1.0 8166 +11306 Abcb7 ATP-binding cassette, sub-family B member 7 Novel U 0.0036066644237700437 -0.2266243871412465 1.0 8167 +211586 Tfdp2 transcription factor Dp 2 Novel N 0.0036052586154987722 -0.22663894845710683 1.0 8168 +50528 Tmprss2 transmembrane protease, serine 2 Novel U 0.003603448813904692 -0.2266576943225243 1.0 8169 +75581 Yipf7 Yip1 domain family, member 7 Novel U 0.003600284304699621 -0.22669047220484279 1.0 8170 +14462 Gata3 GATA binding protein 3 Novel U 0.003599935651388724 -0.22669408354437573 1.0 8171 +22142 Tuba1a tubulin, alpha 1A Novel U 0.003599158244781165 -0.22670213589646093 1.0 8172 +20316 Sdf2 stromal cell derived factor 2 Novel U 0.003598834241379621 -0.22670549191304312 1.0 8173 +105180375 Tmem265 transmembrane protein 265 Novel U 0.003598771080687284 -0.22670614612941803 1.0 8174 +100039672 Msmp microseminoprotein, prostate associated Novel U 0.00359824516446671 -0.22671159355234216 1.0 8175 +170725 Capn8 calpain 8 Novel U 0.0035977768656651264 -0.22671644417593448 1.0 8176 +72296 Rusc1 RUN and SH3 domain containing 1 Novel U 0.0035955704491234595 -0.22673929816594102 1.0 8177 +13346 Des desmin Novel U 0.003594370719376523 -0.22675172492722082 1.0 8178 +108853 Mtrf1l mitochondrial translational release factor 1-like Novel U 0.0035942575922091997 -0.2267528966947011 1.0 8179 +66568 Rwdd3 RWD domain containing 3 Novel U 0.0035939297682739783 -0.2267562922842455 1.0 8180 +14202 Fhl4 four and a half LIM domains 4 Novel U 0.0035926784190098223 -0.22676925371878773 1.0 8181 +94043 Tm2d1 TM2 domain containing 1 Novel U 0.0035919603718548294 -0.2267766912276146 1.0 8182 +83762 Otof otoferlin Novel U 0.003588753557385482 -0.22680990730646977 1.0 8183 +66208 Nenf neuron derived neurotrophic factor Novel U 0.0035872928397873505 -0.22682503737133272 1.0 8184 +18673 Phb1 prohibitin 1 Novel U 0.003587137668278631 -0.22682664463271904 1.0 8185 +16341 Eif3e eukaryotic translation initiation factor 3, subunit E Novel U 0.0035870089922408017 -0.22682797745488886 1.0 8186 +628422 Vmn2r58 vomeronasal 2, receptor 58 Novel U 0.003586449540126414 -0.2268337722414987 1.0 8187 +228482 Arhgap11a Rho GTPase activating protein 11A Novel U 0.0035855718502415743 -0.22684286332447337 1.0 8188 +434436 Lsmem2 leucine-rich single-pass membrane protein 2 Novel U 0.0035854481700218527 -0.2268441444001235 1.0 8189 +14560 Gdf10 growth differentiation factor 10 Novel U 0.00358460008701862 -0.22685292881599176 1.0 8190 +243374 Gimap8 GTPase, IMAP family member 8 Novel U 0.0035844301186298525 -0.22685468934297517 1.0 8191 +12062 Bdkrb2 bradykinin receptor, beta 2 Novel U 0.0035815384173540155 -0.22688464148973075 1.0 8192 +77595 Nup210l nucleoporin 210-like Novel U 0.003581290577406228 -0.22688720860776262 1.0 8193 +26374 Cop1 COP1, E3 ubiquitin ligase Novel U 0.0035812393805589706 -0.22688773890302352 1.0 8194 +18736 Pou1f1 POU domain, class 1, transcription factor 1 Novel U 0.003580887680881615 -0.22689138179672005 1.0 8195 +18024 Nfe2l2 nuclear factor, erythroid derived 2, like 2 Novel U 0.003580561425855653 -0.22689476113555393 1.0 8196 +140741 Gpr6 G protein-coupled receptor 6 Novel N 0.003579723431374958 -0.2269034410548374 1.0 8197 +80750 N4bp1 NEDD4 binding protein 1 Novel U 0.003579270336261747 -0.2269081341991253 1.0 8198 +66663 Uba5 ubiquitin-like modifier activating enzyme 5 Novel U 0.0035774408593806147 -0.2269270838605193 1.0 8199 +12387 Ctnnb1 catenin beta 1 Novel U 0.0035773984305751444 -0.22692752333669156 1.0 8200 +67905 Ppm1m protein phosphatase 1M Novel U 0.003576049705449836 -0.22694149338720257 1.0 8201 +50778 Rgs1 regulator of G-protein signaling 1 Novel U 0.0035729555701615773 -0.22697354233880412 1.0 8202 +68925 Rpap1 RNA polymerase II associated protein 1 Novel U 0.0035715074452087295 -0.22698854196946117 1.0 8203 +14282 Fosb FBJ osteosarcoma oncogene B Novel N 0.003566766691510969 -0.2270376465404187 1.0 8204 +233335 Synm synemin, intermediate filament protein Novel N 0.0035666265792833754 -0.22703909781826617 1.0 8205 +666744 Gm8267 predicted gene 8267 Novel U 0.0035652891833675973 -0.22705295052119726 1.0 8206 +245643 Frmpd3 FERM and PDZ domain containing 3 Novel U 0.0035651945548543936 -0.2270539306802263 1.0 8207 +72709 C1qtnf6 C1q and tumor necrosis factor related protein 6 Novel U 0.0035643741799774842 -0.22706242809623298 1.0 8208 +17929 Myom1 myomesin 1 Novel U 0.0035637923968921317 -0.22706845418630597 1.0 8209 +71805 Nup93 nucleoporin 93 Novel U 0.003562749732073223 -0.22707925407422444 1.0 8210 +102639995 Krtap10-35 keratin associated protein 10-35 Novel U 0.003561141331141101 -0.22709591383820601 1.0 8211 +75482 Hspb9 heat shock protein, alpha-crystallin-related, B9 Novel U 0.0035611410291118526 -0.22709591696661505 1.0 8212 +12465 Cct5 chaperonin containing TCP1 subunit 5 Novel U 0.003560381130323948 -0.22710378797327985 1.0 8213 +100042881 Rbmyf3 RNA binding motif protein Y-linked family member 3 Novel U 0.0035598263966933785 -0.2271095338859894 1.0 8214 +18120 Mrpl49 mitochondrial ribosomal protein L49 Novel U 0.003559765771572111 -0.22711016183900254 1.0 8215 +68487 Tmem140 transmembrane protein 140 Novel U 0.003559719393576906 -0.22711064222075228 1.0 8216 +21954 Tnni3 troponin I, cardiac 3 Novel U 0.0035588828752597538 -0.2271193068499823 1.0 8217 +17200 Mc2r melanocortin 2 receptor Novel U 0.003556357436075023 -0.22714546526603838 1.0 8218 +18126 Nos2 nitric oxide synthase 2, inducible Novel U 0.003553994937351792 -0.22716993595015067 1.0 8219 +258768 Or4c102 olfactory receptor family 4 subfamily C member 102 Novel U 0.003552148354674421 -0.22718906279281975 1.0 8220 +225998 Rorb RAR-related orphan receptor beta Novel N 0.0035516564024855634 -0.22719415841741986 1.0 8221 +66624 Spcs2 signal peptidase complex subunit 2 homolog (S. cerevisiae) Novel N 0.003550309529630507 -0.22720810928217647 1.0 8222 +16582 Kifc3 kinesin family member C3 Novel U 0.0035497134673902067 -0.22721428327526702 1.0 8223 +14712 Gnpat glyceronephosphate O-acyltransferase Novel U 0.0035473299796520033 -0.22723897136290638 1.0 8224 +233870 Tufm Tu translation elongation factor, mitochondrial Novel N 0.003546565660510772 -0.2272468881554456 1.0 8225 +66146 Maco1 macoilin 1 Novel N 0.003545960523278631 -0.22725315614700334 1.0 8226 +28135 Cep63 centrosomal protein 63 Novel U 0.0035454113531292034 -0.2272588444333581 1.0 8227 +14559 Gdf1 growth differentiation factor 1 Novel U 0.0035444301887512034 -0.22726900730173138 1.0 8228 +320878 Mical2 microtubule associated monooxygenase, calponin and LIM domain containing 2 Novel U 0.003543041293754881 -0.22728339343044582 1.0 8229 +380683 Sec14l3 SEC14-like lipid binding 3 Novel U 0.003542030491391988 -0.22729386328809234 1.0 8230 +100042179 Pam16l presequence translocase associated motor 16 like Novel U 0.003541380613527474 -0.2273005947016494 1.0 8231 +107889 Gcm2 glial cells missing homolog 2 Novel U 0.0035409376691226515 -0.22730518270523353 1.0 8232 +56520 Nme4 NME/NM23 nucleoside diphosphate kinase 4 Novel N 0.0035402341064554714 -0.22731247018421177 1.0 8233 +19084 Prkar1a protein kinase, cAMP dependent regulatory, type I, alpha Novel U 0.0035394524231452504 -0.22732056683424262 1.0 8234 +20371 Foxp3 forkhead box P3 Novel U 0.003538253399623696 -0.22733298628046308 1.0 8235 +140629 Ubox5 U box domain containing 5 Novel U 0.0035352088456040917 -0.22736452167091384 1.0 8236 +56747 Sez6l seizure related 6 homolog like Novel U 0.0035331801700881713 -0.2273855346252186 1.0 8237 +76670 Cfap70 cilia and flagella associated protein 70 Novel N 0.003533111668747605 -0.22738624415985237 1.0 8238 +319880 Tmcc3 transmembrane and coiled coil domains 3 Novel U 0.00353279168482336 -0.22738955854282075 1.0 8239 +69922 Vrk2 vaccinia related kinase 2 Novel U 0.0035324233439553627 -0.22739337380542293 1.0 8240 +214944 Mob3b MOB kinase activator 3B Novel N 0.0035321782482609027 -0.22739591249856908 1.0 8241 +77929 Yipf6 Yip1 domain family, member 6 Novel U 0.0035319736154312623 -0.22739803207869155 1.0 8242 +114228 Prss1 serine protease 1 (trypsin 1) Novel U 0.0035314934744393404 -0.22740300536330207 1.0 8243 +100503572 Bbip1 BBSome interacting protein 1 Novel N 0.0035313780792312933 -0.22740420062307362 1.0 8244 +21833 Thra thyroid hormone receptor alpha Novel U 0.0035312695209476423 -0.227405325066207 1.0 8245 +627805 Vmn2r108 vomeronasal 2, receptor 108 Novel U 0.00352971840057883 -0.22742139151999682 1.0 8246 +74153 Uba7 ubiquitin-like modifier activating enzyme 7 Novel N 0.0035292573141354655 -0.2274261674382198 1.0 8247 +75425 Tti1 TELO2 interacting protein 1 Novel U 0.003528834802029603 -0.227430543804723 1.0 8248 +78255 Ralgps2 Ral GEF with PH domain and SH3 binding motif 2 Novel U 0.0035287244374448317 -0.22743168695746402 1.0 8249 +21420 Tfap2c transcription factor AP-2, gamma Novel N 0.003527932397319585 -0.22743989088304442 1.0 8250 +243612 Ssu2 ssu-2 homolog Novel N 0.0035257168046425817 -0.2274628399191591 1.0 8251 +22074 Try4 trypsin 4 Novel U 0.0035247150632858695 -0.22747321592320147 1.0 8252 +66925 Sdhd succinate dehydrogenase complex, subunit D, integral membrane protein Novel U 0.0035247047368198695 -0.22747332288439684 1.0 8253 +268933 Wdr24 WD repeat domain 24 Novel U 0.0035215745862341775 -0.22750574488126526 1.0 8254 +100126779 Esp23 exocrine gland secreted peptide 23 Novel U 0.003521300813102744 -0.22750858061436088 1.0 8255 +72179 Fbxl2 F-box and leucine-rich repeat protein 2 Novel U 0.0035206108070444625 -0.22751572767442982 1.0 8256 +68671 Pcyt2 phosphate cytidylyltransferase 2, ethanolamine Novel U 0.0035198716963965307 -0.22752338335822414 1.0 8257 +211134 Lzts1 leucine zipper, putative tumor suppressor 1 Novel U 0.0035197207461034148 -0.227524946896398 1.0 8258 +53312 Nub1 negative regulator of ubiquitin-like proteins 1 Novel U 0.0035189530369947593 -0.2275328988021084 1.0 8259 +433022 Plcxd2 phosphatidylinositol-specific phospholipase C, X domain containing 2 Novel U 0.003516795633653623 -0.22755524511499506 1.0 8260 +72020 Zfp654 zinc finger protein 654 Novel U 0.0035165727151968062 -0.2275575540970427 1.0 8261 +230700 Foxj3 forkhead box J3 Novel N 0.003514419322678773 -0.22757985886595553 1.0 8262 +223754 Tbc1d22a TBC1 domain family, member 22a Novel U 0.003513404508566774 -0.22759037027716741 1.0 8263 +235134 Nfrkb nuclear factor related to kappa B binding protein Novel N 0.003513174743913532 -0.2275927501718926 1.0 8264 +68339 Ccdc88c coiled-coil domain containing 88C Novel U 0.003512816113917032 -0.22759646484960702 1.0 8265 +94352 Loxl2 lysyl oxidase-like 2 Novel U 0.003512368053001565 -0.2276011058498402 1.0 8266 +236794 Slc9a6 solute carrier family 9 (sodium/hydrogen exchanger), member 6 Novel U 0.0035089474051606907 -0.22763653680772825 1.0 8267 +74309 Osbp2 oxysterol binding protein 2 Novel U 0.0035078760385459816 -0.2276476339879041 1.0 8268 +23857 Dmtf1 cyclin D binding myb like transcription factor 1 Novel U 0.0035074508531943113 -0.2276520380437995 1.0 8269 +78388 Mvp major vault protein Novel U 0.003507199921401082 -0.22765463718706483 1.0 8270 +22349 Vil1 villin 1 Novel U 0.0035065895267737397 -0.22766095963454921 1.0 8271 +80288 Bcl9l B cell CLL/lymphoma 9-like Novel U 0.0035065238564702095 -0.2276616398453944 1.0 8272 +26900 Ddx3y DEAD box helicase 3, Y-linked Novel N 0.003506193701690215 -0.22766505957775232 1.0 8273 +102448 Xylb xylulokinase homolog (H. influenzae) Novel N 0.003506018547369477 -0.22766687382044865 1.0 8274 +214345 Lrrc1 leucine rich repeat containing 1 Novel U 0.0035059270982282873 -0.22766782104764682 1.0 8275 +258523 Or4c100 olfactory receptor family 4 subfamily C member 100 Novel U 0.003503670713870195 -0.2276911926026533 1.0 8276 +18613 Pecam1 platelet/endothelial cell adhesion molecule 1 Novel U 0.0035036471939053292 -0.22769143622167623 1.0 8277 +193286 Msantd5l Myb/SANT DNA binding domain containing 5 like Novel U 0.0035033176789132483 -0.227694849327132 1.0 8278 +108169097 Pramel44 PRAME like 44 Novel U 0.003501576320956933 -0.22771288625559943 1.0 8279 +54670 Atp8b1 ATPase, class I, type 8B, member 1 Novel U 0.0035015613123720577 -0.22771304171402817 1.0 8280 +70638 Entrep2 endosomal transmembrane epsin interactor 2 Novel U 0.00349986283355191 -0.22773063450181277 1.0 8281 +100039655 Idi2l isopentenyl-diphosphate delta isomerase 2 like Novel U 0.003499572240821958 -0.2277336444517569 1.0 8282 +12491 Cd36 CD36 molecule Novel U 0.003498638824172548 -0.2277433127507271 1.0 8283 +53356 Eif3g eukaryotic translation initiation factor 3, subunit G Novel U 0.0034976228905998588 -0.22775383575727598 1.0 8284 +212862 Chpt1 choline phosphotransferase 1 Novel U 0.003497476608812052 -0.22775535093922533 1.0 8285 +70603 Mutyh mutY DNA glycosylase Novel U 0.0034966480031184133 -0.2277639336097611 1.0 8286 +100037278 Niban3 niban apoptosis regulator 3 Novel U 0.0034965190645493984 -0.22776526915122033 1.0 8287 +433023 Gm5485 predicted gene 5485 Novel U 0.003494602121019636 -0.2277851247892855 1.0 8288 +12655 Chil3 chitinase-like 3 Novel U 0.0034937931196495097 -0.22779350439888274 1.0 8289 +230909 Gm572 predicted gene 572 Novel U 0.0034932313333432747 -0.227799323362975 1.0 8290 +626943 Pramel14 PRAME like 14 Novel U 0.0034925835764903082 -0.2278060328071642 1.0 8291 +67863 Slc25a11 solute carrier family 25 (mitochondrial carrier oxoglutarate carrier), member 11 Novel U 0.003492307470232281 -0.22780889270670834 1.0 8292 +107045 Lars1 leucyl-tRNA synthetase 1 Novel U 0.003491783912156816 -0.22781431570404292 1.0 8293 +93675 Clec2i C-type lectin domain family 2, member i Novel U 0.0034914591405029475 -0.22781767967815741 1.0 8294 +23996 Psmc4 proteasome (prosome, macropain) 26S subunit, ATPase, 4 Novel N 0.003489876503503565 -0.22783407258017063 1.0 8295 +382864 Colq collagen like tail subunit of asymmetric acetylcholinesterase Novel U 0.003489530729027723 -0.2278376541008247 1.0 8296 +14979 Hsd17b8 hydroxysteroid 17-beta dehydrogenase 8 Novel U 0.0034895066789039073 -0.22783790321121655 1.0 8297 +129135233 Gm57854 predicted gene, 57854 Novel U 0.00348855584174455 -0.2278477519512561 1.0 8298 +17687 Msh5 mutS homolog 5 Novel N 0.003486353835648734 -0.2278705602580095 1.0 8299 +226251 Ablim1 actin-binding LIM protein 1 Novel U 0.0034858345904035777 -0.22787593858318958 1.0 8300 +76073 Pcgf5 polycomb group ring finger 5 Novel N 0.0034848257738448046 -0.2278863878719423 1.0 8301 +117109 Pop5 processing of precursor 5, ribonuclease P/MRP family (S. cerevisiae) Novel N 0.003484097680784606 -0.22789392943592507 1.0 8302 +243842 Bicra BRD4 interacting chromatin remodeling complex associated protein Novel U 0.0034830247592643982 -0.22790504272176096 1.0 8303 +72205 Eml2 echinoderm microtubule associated protein like 2 Novel U 0.0034829049033369623 -0.2279062841855173 1.0 8304 +24075 Taf10 TATA-box binding protein associated factor 10 Novel N 0.003482427510367147 -0.2279112290062052 1.0 8305 +227290 Aamp angio-associated migratory protein Novel U 0.003480944416108817 -0.2279265908477789 1.0 8306 +71914 Antxr2 anthrax toxin receptor 2 Novel U 0.003480942296073457 -0.22792661280703544 1.0 8307 +14394 Gabra1 gamma-aminobutyric acid type A receptor subunit alpha 1 Novel U 0.003480156796900749 -0.22793474898164448 1.0 8308 +73847 Fam110a family with sequence similarity 110, member A Novel N 0.00347929578831546 -0.22794366728026677 1.0 8309 +18191 Nrxn3 neurexin III Novel N 0.003478504437418879 -0.2279518640668393 1.0 8310 +67298 Gprasp1 G protein-coupled receptor associated sorting protein 1 Novel U 0.0034772199360396357 -0.2279651688898998 1.0 8311 +259081 Or51a42 olfactory receptor family 51 subfamily A member 42 Novel U 0.003476417338946267 -0.22797348216420896 1.0 8312 +211499 Tmem87a transmembrane protein 87A Novel U 0.00347639641766016 -0.2279736988662027 1.0 8313 +16819 Lcn2 lipocalin 2 Novel U 0.003476113954589573 -0.22797662460940235 1.0 8314 +17380 Mme membrane metallo endopeptidase Novel U 0.0034756392308170243 -0.22798154178263272 1.0 8315 +67845 Rnf115 ring finger protein 115 Novel U 0.003475375829266576 -0.2279842700872334 1.0 8316 +12747 Clk1 CDC-like kinase 1 Novel N 0.0034753119733838458 -0.22798493150436758 1.0 8317 +21787 Tfg Trk-fused gene Novel N 0.0034747832123441843 -0.2279904083938343 1.0 8318 +71446 Get1 guided entry of tail-anchored proteins factor 1 Novel U 0.003474356179870928 -0.22799483158215433 1.0 8319 +497071 Rnase13 ribonuclease, RNase A family, 13 (non-active) Novel U 0.003473154572529997 -0.228007277791491 1.0 8320 +71728 Stk11ip serine/threonine kinase 11 interacting protein Novel N 0.003472714175195418 -0.22801183941260528 1.0 8321 +72033 Tsc22d2 TSC22 domain family, member 2 Novel N 0.003472249968282896 -0.2280166476525452 1.0 8322 +19739 Rgs9 regulator of G-protein signaling 9 Novel N 0.0034697728408205155 -0.22804230565736935 1.0 8323 +626995 Pramel30 PRAME like 30 Novel U 0.0034694745008808994 -0.2280453958526565 1.0 8324 +69656 Pir pirin Novel N 0.003469343829611272 -0.22804674934137173 1.0 8325 +384221 Vmn2r17 vomeronasal 2, receptor 17 Novel U 0.0034693207029327724 -0.22804698888674738 1.0 8326 +224824 Pex6 peroxisomal biogenesis factor 6 Novel U 0.003467454301872623 -0.2280663210075738 1.0 8327 +215303 Camk1g calcium/calmodulin-dependent protein kinase I gamma Novel U 0.0034660520035997454 -0.22808084596698616 1.0 8328 +100043842 Scgb2b11 secretoglobin, family 2B, member 11 Novel U 0.0034644099351210348 -0.22809785445830857 1.0 8329 +541610 Trcg1 taste receptor cell gene 1 Novel U 0.003462862714158764 -0.2281138805221736 1.0 8330 +170748 Smco4 single-pass membrane protein with coiled-coil domains 4 Novel U 0.003462767640585155 -0.22811486529112365 1.0 8331 +108168658 Gm20914 predicted gene, 20914 Novel U 0.00346241539353226 -0.2281185138545181 1.0 8332 +53860 Septin9 septin 9 Novel U 0.0034622321174143955 -0.22812041222252202 1.0 8333 +237823 Pfas phosphoribosylformylglycinamidine synthase (FGAR amidotransferase) Novel N 0.0034615747450623038 -0.22812722126373505 1.0 8334 +170767 Rfxap regulatory factor X-associated protein Novel U 0.0034614701398299145 -0.2281283047612934 1.0 8335 +27380 Tcl1b4 T cell leukemia/lymphoma 1B, 4 Novel U 0.0034596301767157007 -0.22814736303874494 1.0 8336 +231600 Chfr checkpoint with forkhead and ring finger domains Novel U 0.003458967783939376 -0.2281542240813471 1.0 8337 +70661 Sik3 SIK family kinase 3 Novel U 0.003458099777572494 -0.2281632148627611 1.0 8338 +14247 Fli1 Friend leukemia integration 1 Novel U 0.0034580362345130134 -0.2281638730396823 1.0 8339 +20024 Sub1 SUB1 homolog, transcriptional regulator Novel N 0.0034573692230941175 -0.22817078192203244 1.0 8340 +271127 Adamts16 ADAM metallopeptidase with thrombospondin type 1 motif 16 Novel U 0.0034572908728258433 -0.22817159347153557 1.0 8341 +258512 Or12j3 olfactory receptor family 12 subfamily J member 3 Novel U 0.0034570326469296735 -0.2281742681668794 1.0 8342 +338523 Kdm7a lysine (K)-specific demethylase 7A Novel U 0.003456512059788465 -0.22817966039137466 1.0 8343 +18194 Nsdhl NAD(P) dependent steroid dehydrogenase-like Novel U 0.003455259566684642 -0.22819263367377055 1.0 8344 +71409 Fmnl2 formin-like 2 Novel U 0.003454101041833255 -0.22820463363609675 1.0 8345 +12266 C3 complement component 3 Novel U 0.0034538464248946156 -0.22820727094997711 1.0 8346 +218756 Slc4a7 solute carrier family 4, sodium bicarbonate cotransporter, member 7 Novel U 0.0034519963982443196 -0.22822643346520455 1.0 8347 +27413 Abcb11 ATP-binding cassette, sub-family B member 11 Novel U 0.0034518404969185582 -0.2282280482860118 1.0 8348 +20658 Son Son DNA binding protein Novel U 0.003449488633032448 -0.22825240881483075 1.0 8349 +54325 Elovl1 ELOVL fatty acid elongase 1 Novel U 0.0034494037469731727 -0.22825328806184228 1.0 8350 +11973 Atp6v1e1 ATPase, H+ transporting, lysosomal V1 subunit E1 Novel U 0.003447616285007232 -0.22827180253412585 1.0 8351 +238161 Akap6 A kinase anchor protein 6 Novel N 0.0034471032697308106 -0.22827711632949452 1.0 8352 +106795 Tcf19 transcription factor 19 Novel U 0.0034438713700951982 -0.22831059223967723 1.0 8353 +207819 Bnip5 BCL2 interacting protein 5 Novel U 0.003442512073317648 -0.22832467179101462 1.0 8354 +21926 Tnf tumor necrosis factor Novel U 0.0034415628998980727 -0.22833450329809218 1.0 8355 +246691 Prok1 prokineticin 1 Novel U 0.0034405260426793745 -0.22834524303107862 1.0 8356 +69814 Prss32 serine protease 32 Novel U 0.003436278625225111 -0.22838923764144353 1.0 8357 +106200 Txndc11 thioredoxin domain containing 11 Novel U 0.003436131698871551 -0.2283907594997838 1.0 8358 +16649 Kpna4 karyopherin subunit alpha 4 Novel U 0.003435895715923756 -0.22839320380339953 1.0 8359 +208606 Rsrc2 arginine/serine-rich coiled-coil 2 Novel U 0.003435529655538457 -0.22839699544483685 1.0 8360 +60599 Trp53inp1 transformation related protein 53 inducible nuclear protein 1 Novel N 0.0034344513026720773 -0.22840816498837788 1.0 8361 +77045 Bcl7a B cell CLL/lymphoma 7A Novel U 0.003433769853056731 -0.22841522342109222 1.0 8362 +15235 Mst1 macrophage stimulating 1 (hepatocyte growth factor-like) Novel U 0.003432895737672966 -0.22842427747950222 1.0 8363 +96979 Ptges2 prostaglandin E synthase 2 Novel N 0.0034326764417758064 -0.22842654893919606 1.0 8364 +17686 Msh3 mutS homolog 3 Novel U 0.003432626952288198 -0.22842706154968181 1.0 8365 +380601 Fastkd5 FAST kinase domains 5 Novel N 0.0034310208122438368 -0.2284436978954623 1.0 8366 +19276 Ptprn2 protein tyrosine phosphatase receptor type N polypeptide 2 Novel N 0.003430410008381031 -0.22845002458179414 1.0 8367 +665927 Defa42 defensin, alpha, 42 Novel U 0.003427434782572082 -0.22848084187291798 1.0 8368 +75627 Snapc1 small nuclear RNA activating complex, polypeptide 1 Novel U 0.0034245824046021875 -0.22851038671016324 1.0 8369 +272381 Lrrc4b leucine rich repeat containing 4B Novel U 0.0034230245275611395 -0.22852652314934196 1.0 8370 +16490 Kcna2 potassium voltage-gated channel, shaker-related subfamily, member 2 Novel U 0.003422404504853832 -0.22853294532416213 1.0 8371 +27416 Abcc5 ATP-binding cassette, sub-family C member 5 Novel U 0.00342235929672051 -0.22853341358852095 1.0 8372 +353167 Tas2r123 taste receptor, type 2, member 123 Novel U 0.0034223097844129145 -0.22853392643537537 1.0 8373 +232970 Phldb3 pleckstrin homology like domain, family B, member 3 Novel U 0.003421819890029866 -0.2285390007452906 1.0 8374 +208431 Shroom4 shroom family member 4 Novel N 0.0034217992006879633 -0.2285392150448139 1.0 8375 +22116 Tsks testis-specific serine kinase substrate Novel U 0.003420384609354144 -0.22855386733534738 1.0 8376 +677289 Prr33 proline rich 33 Novel U 0.0034202776244401916 -0.2285549754815692 1.0 8377 +18354 Or1x2 olfactory receptor family 1 subfamily X member 2 Novel U 0.0034190141313074694 -0.22856806270190283 1.0 8378 +224079 Atp13a4 ATPase type 13A4 Novel N 0.00341810496624521 -0.2285774798037305 1.0 8379 +14766 Adgrg1 adhesion G protein-coupled receptor G1 Novel U 0.003417434741616195 -0.2285844219684054 1.0 8380 +56790 Supt20 SPT20 SAGA complex component Novel U 0.0034140759720446036 -0.22861921199321436 1.0 8381 +56392 Shoc2 Shoc2, leucine rich repeat scaffold protein Novel U 0.0034112593846652426 -0.22864838611269944 1.0 8382 +327963 Zfp616 zinc finger protein 616 Novel U 0.0034108854941083968 -0.22865225885879628 1.0 8383 +22371 Vwf Von Willebrand factor Novel U 0.003408778933121901 -0.22867407854824492 1.0 8384 +232367 Vmn2r27 vomeronasal 2, receptor27 Novel U 0.0034087741319675843 -0.22867412827844352 1.0 8385 +11889 Asgr1 asialoglycoprotein receptor 1 Novel U 0.003408330316352455 -0.22867872530599537 1.0 8386 +67333 Stk35 serine/threonine kinase 35 Novel U 0.0034076784914484847 -0.22868547688692312 1.0 8387 +232836 Galp galanin-like peptide Novel U 0.0034072835864186217 -0.22868956730024062 1.0 8388 +22296 Vmn1r51 vomeronasal 1 receptor 51 Novel U 0.003407115828104912 -0.22869130493533926 1.0 8389 +665301 Gm20773 predicted gene, 20773 Novel U 0.003406959031483533 -0.2286929290295891 1.0 8390 +170828 Vgll1 vestigial like family member 1 Novel U 0.003406601729452469 -0.22869662995228118 1.0 8391 +12156 Bmp2 bone morphogenetic protein 2 Novel U 0.003406596367925276 -0.2286966854868036 1.0 8392 +217370 Cybc1 cytochrome b 245 chaperone 1 Novel U 0.0034026162602949278 -0.22873791131079976 1.0 8393 +79221 Hdac9 histone deacetylase 9 Novel U 0.0034004938758007666 -0.22875989489962065 1.0 8394 +70238 Rnf168 ring finger protein 168 Novel U 0.0033988745194719573 -0.22877666813924097 1.0 8395 +83396 Glis2 GLIS family zinc finger 2 Novel N 0.003398755448293116 -0.22877790147459715 1.0 8396 +11909 Atf2 activating transcription factor 2 Novel U 0.0033977598857859066 -0.22878821347831949 1.0 8397 +12879 Cys1 cystin 1 Novel U 0.0033974960528407572 -0.22879094625129232 1.0 8398 +68667 Trpm4 transient receptor potential cation channel, subfamily M, member 4 Novel U 0.003396470387580748 -0.22880157005833857 1.0 8399 +258279 Or7g28 olfactory receptor family 7 subfamily G member 28 Novel U 0.0033945811753336216 -0.2288211384566898 1.0 8400 +22063 Trpc1 transient receptor potential cation channel, subfamily C, member 1 Novel N 0.003392976729801617 -0.228837757250767 1.0 8401 +77832 Tchp trichoplein, keratin filament binding Novel U 0.0033927993677473293 -0.22883959436109483 1.0 8402 +104383 Rcor2 REST corepressor 2 Novel U 0.003392290545322181 -0.22884486472704788 1.0 8403 +66154 Tmem14c transmembrane protein 14C Novel U 0.0033914755932576996 -0.22885330597374165 1.0 8404 +108657 Rnpepl1 arginyl aminopeptidase (aminopeptidase B)-like 1 Novel N 0.0033913112146684104 -0.22885500860176589 1.0 8405 +67860 S100a16 S100 calcium binding protein A16 Novel U 0.0033908418634655893 -0.2288598701260956 1.0 8406 +232337 Zfp637 zinc finger protein 637 Novel U 0.003387853511158754 -0.22889082338105302 1.0 8407 +17261 Mef2d myocyte enhancer factor 2D Novel N 0.0033868586103371263 -0.22890112853105782 1.0 8408 +11576 Afp alpha fetoprotein Novel U 0.0033859408336793686 -0.2289106348315086 1.0 8409 +69034 Nupr2 nuclear protein transcriptional regulator 2 Novel N 0.0033857963552600926 -0.228912131334226 1.0 8410 +226823 Kctd3 potassium channel tetramerisation domain containing 3 Novel U 0.003385291963565541 -0.22891735580681716 1.0 8411 +384701 Usp17ld ubiquitin specific peptidase 17-like D Novel U 0.003385225536348733 -0.22891804385774522 1.0 8412 +19645 Rb1 RB transcriptional corepressor 1 Novel U 0.0033847042701767535 -0.22892344311561885 1.0 8413 +108654 Fam210a family with sequence similarity 210, member A Novel U 0.0033815578887730706 -0.22895603323076652 1.0 8414 +329064 Pkd2l1 polycystic kidney disease 2-like 1 Novel U 0.003377829932051397 -0.22899464728393962 1.0 8415 +105193 Nhlrc1 NHL repeat containing 1 Novel U 0.003375566460199426 -0.2290180922509747 1.0 8416 +279572 Tlr13 toll-like receptor 13 Novel U 0.003374997581469147 -0.22902398467816204 1.0 8417 +79565 Mettl27 methyltransferase like 27 Novel U 0.003374945700356569 -0.22902452206102064 1.0 8418 +66530 Ubxn6 UBX domain protein 6 Novel U 0.0033705452810022813 -0.22907010146003634 1.0 8419 +81630 Zbtb22 zinc finger and BTB domain containing 22 Novel U 0.003370238574189992 -0.22907327831911561 1.0 8420 +216166 Plk5 polo like kinase 5 Novel U 0.0033693953586996796 -0.22908201231744504 1.0 8421 +14811 Grin2a glutamate receptor, ionotropic, NMDA2A (epsilon 1) Novel U 0.003368231757596237 -0.22909406485942316 1.0 8422 +56294 Ptpn9 protein tyrosine phosphatase, non-receptor type 9 Novel U 0.0033671590157360134 -0.22910517628434687 1.0 8423 +78926 Gas2l1 growth arrest-specific 2 like 1 Novel U 0.003365506063968697 -0.2291222975044149 1.0 8424 +381269 Mreg melanoregulin Novel U 0.003365500702567667 -0.2291223530376305 1.0 8425 +219132 Phf11d PHD finger protein 11D Novel U 0.0033639041453058624 -0.22913889012526428 1.0 8426 +94063 Mrpl16 mitochondrial ribosomal protein L16 Novel U 0.0033635966918486326 -0.22914207471806727 1.0 8427 +66411 Tbcb tubulin folding cofactor B Novel U 0.0033635372687382025 -0.2291426902206917 1.0 8428 +257974 Or8k21 olfactory receptor family 8 subfamily K member 21 Novel U 0.003363277361562621 -0.22914538233067236 1.0 8429 +67770 Caap1 caspase activity and apoptosis inhibitor 1 Novel N 0.0033610987423179873 -0.22916794839719004 1.0 8430 +170829 Tram2 translocating chain-associating membrane protein 2 Novel U 0.0033600582086533637 -0.2291787262106825 1.0 8431 +239319 Card6 caspase recruitment domain family, member 6 Novel U 0.003359966835835731 -0.22917967264732386 1.0 8432 +666675 Gm8229 predicted gene 8229 Novel U 0.003357850177217942 -0.2292015969277055 1.0 8433 +100043079 Vmn1r258 vomeronasal 1 receptor 258 Novel U 0.0033566416899282548 -0.2292141143993252 1.0 8434 +171193 Vmn1r6 vomeronasal 1 receptor 6 Novel U 0.003355195655971495 -0.2292290923715135 1.0 8435 +103978 Gpc5 glypican 5 Novel U 0.003354305961013394 -0.22923830780264237 1.0 8436 +66306 Fam53c family with sequence similarity 53, member C Novel U 0.003354242175662724 -0.22923896848920777 1.0 8437 +75409 Slitrk5 SLIT and NTRK-like family, member 5 Novel U 0.0033533394897277496 -0.22924831848044805 1.0 8438 +100048644 Pet117 PET117 homolog Novel N 0.003350252836307291 -0.22928028993510888 1.0 8439 +11808 Apoa4 apolipoprotein A-IV Novel U 0.0033487746034464596 -0.22929560142248712 1.0 8440 +108168685 LOC108168685 PRAME family member 8-like Novel U 0.003346865469020753 -0.22931537617410913 1.0 8441 +218772 Rarb retinoic acid receptor, beta Novel U 0.0033461877048512295 -0.22932239643309676 1.0 8442 +224836 Usp49 ubiquitin specific peptidase 49 Novel N 0.003345677406747442 -0.22932768208408064 1.0 8443 +76652 Actrt3 actin related protein T3 Novel U 0.0033443183664758317 -0.22934175897853795 1.0 8444 +66915 Cops9 COP9 signalosome subunit 9 Novel U 0.0033429585168589125 -0.22935584425616734 1.0 8445 +21821 Ift88 intraflagellar transport 88 Novel U 0.003341140794078816 -0.22937467216896917 1.0 8446 +19981 Rpl37a ribosomal protein L37a Novel U 0.00333945783398837 -0.2293921042142617 1.0 8447 +381921 Taok2 TAO kinase 2 Novel U 0.0033383162389341147 -0.22940392881830576 1.0 8448 +67043 Syap1 synapse associated protein 1 Novel U 0.0033372396472858574 -0.22941508011920733 1.0 8449 +627367 Vmn2r97 vomeronasal 2, receptor 97 Novel U 0.003337050407636202 -0.22941704025727758 1.0 8450 +71740 Nectin4 nectin cell adhesion molecule 4 Novel U 0.003334877302717895 -0.2294395492065844 1.0 8451 +69538 Antxr1 anthrax toxin receptor 1 Novel U 0.0033342169494544045 -0.22944638912397972 1.0 8452 +74427 Eaf1 ELL associated factor 1 Novel N 0.003334019079501293 -0.22944843865444942 1.0 8453 +237890 Slfn14 schlafen 14 Novel N 0.003333670844291657 -0.22945204566330318 1.0 8454 +170644 Ubn1 ubinuclein 1 Novel N 0.0033307548393023694 -0.22948224954712376 1.0 8455 +22412 Wnt9b wingless-type MMTV integration site family, member 9B Novel U 0.0033279246648701363 -0.22951156440085582 1.0 8456 +57444 Isg20 interferon-stimulated protein Novel U 0.0033232715517195984 -0.22955976119390625 1.0 8457 +12867 Cox7c cytochrome c oxidase subunit 7C Novel N 0.003318729987789504 -0.22960680256379828 1.0 8458 +258712 Or10aa1 olfactory receptor family 10 subfamily AA member 1 Novel U 0.0033182280894366004 -0.22961200121043868 1.0 8459 +22779 Ikzf2 IKAROS family zinc finger 2 Novel U 0.003316123606634388 -0.22963379937412282 1.0 8460 +104479 Ccdc117 coiled-coil domain containing 117 Novel N 0.0033156498072794607 -0.22963870697226588 1.0 8461 +107448 Unc5a unc-5 netrin receptor A Novel U 0.003315357139829728 -0.22964173841208926 1.0 8462 +494504 Apcdd1 adenomatosis polyposis coli down-regulated 1 Novel N 0.0033145163005843126 -0.22965044779735216 1.0 8463 +16205 Gimap1 GTPase, IMAP family member 1 Novel U 0.003313537651790188 -0.2296605846093904 1.0 8464 +331487 Uprt uracil phosphoribosyltransferase Novel U 0.00331347904159084 -0.22966119169190852 1.0 8465 +231098 Dnajc5g DnaJ heat shock protein family (Hsp40) member C5 gamma Novel U 0.0033134632343968153 -0.22966135542230462 1.0 8466 +68017 Mrm2 mitochondrial rRNA methyltransferase 2 Novel N 0.0033120766067409133 -0.22967571806598147 1.0 8467 +52897 Rbfox3 RNA binding protein, fox-1 homolog (C. elegans) 3 Novel U 0.0033113514729255045 -0.229683228978204 1.0 8468 +242570 Raver2 ribonucleoprotein, PTB-binding 2 Novel U 0.0033095084925194307 -0.2297023185086654 1.0 8469 +73750 Whrn whirlin Novel U 0.003309401413137026 -0.22970342763338833 1.0 8470 +545909 Vmn2r39 vomeronasal 2, receptor 39 Novel U 0.00330849321075356 -0.2297128347638207 1.0 8471 +74490 Mamstr MEF2 activating motif and SAP domain containing transcriptional regulator Novel U 0.0033063055791780816 -0.229735494179765 1.0 8472 +636931 Trim71 tripartite motif-containing 71 Novel N 0.0033060643613313087 -0.22973799270629225 1.0 8473 +74775 Lmbr1l limb region 1 like Novel U 0.003305439517772573 -0.22974446481533303 1.0 8474 +100503583 Fsbp fibrinogen silencer binding protein Novel U 0.003304385838843248 -0.22975537878704513 1.0 8475 +11674 Aldoa aldolase A, fructose-bisphosphate Novel U 0.003303310115946094 -0.2297665210894514 1.0 8476 +13648 Klk1b9 kallikrein 1-related peptidase b9 Novel U 0.0033025095624466564 -0.22977481319628176 1.0 8477 +71529 Kazn kazrin, periplakin interacting protein Novel U 0.0033024607558828794 -0.22977531873306492 1.0 8478 +100036518 Vmn1r223 vomeronasal 1 receptor 223 Novel U 0.0033013126565440798 -0.2297872107082745 1.0 8479 +16010 Igfbp4 insulin-like growth factor binding protein 4 Novel N 0.003300592757032094 -0.22979466740375423 1.0 8480 +12445 Ccnd3 cyclin D3 Novel U 0.0032999376791345504 -0.22980145267908247 1.0 8481 +629016 Zfp953 zinc finger protein 953 Novel U 0.0032997901047539697 -0.22980298124966528 1.0 8482 +100042953 Nfilz NFIL3 like basic leucine zipper Novel U 0.003299692393257167 -0.22980399334213705 1.0 8483 +19265 Ptprcap protein tyrosine phosphatase receptor type C polypeptide-associated protein Novel N 0.0032980957690267564 -0.22982053112342946 1.0 8484 +27280 Phlda3 pleckstrin homology like domain, family A, member 3 Novel U 0.0032980208422722927 -0.2298213072122891 1.0 8485 +258759 Or10j27 olfactory receptor family 10 subfamily J member 27 Novel U 0.0032979518530304908 -0.2298220218005878 1.0 8486 +76901 Jade2 jade family PHD finger 2 Novel N 0.0032970527766414803 -0.22983133440426964 1.0 8487 +19649 Robo3 roundabout guidance receptor 3 Novel N 0.0032929874885032264 -0.22987344252516653 1.0 8488 +68095 Ociad1 OCIA domain containing 1 Novel U 0.0032917951001353155 -0.22988579324468367 1.0 8489 +17286 Meox2 mesenchyme homeobox 2 Novel N 0.003289774274174322 -0.22990672489355657 1.0 8490 +56530 Cnpy2 canopy FGF signaling regulator 2 Novel U 0.0032892911021805173 -0.22991172957318498 1.0 8491 +19824 Trim10 tripartite motif-containing 10 Novel U 0.0032892228379229204 -0.2299124366521211 1.0 8492 +20977 Syp synaptophysin Novel N 0.003288847191573423 -0.22991632758466046 1.0 8493 +72129 Pex13 peroxisomal biogenesis factor 13 Novel U 0.003287729928194834 -0.22992790016200787 1.0 8494 +108956 Apol7c apolipoprotein L 7c Novel U 0.0032863094559072875 -0.22994261336726673 1.0 8495 +17279 Melk maternal embryonic leucine zipper kinase Novel U 0.003285215720163363 -0.22995394224614768 1.0 8496 +107476 Acaca acetyl-Coenzyme A carboxylase alpha Novel N 0.0032849663569065614 -0.2299565251425643 1.0 8497 +13690 Eif4g2 eukaryotic translation initiation factor 4, gamma 2 Novel N 0.0032839927210929405 -0.22996661003031518 1.0 8498 +107652 Uap1 UDP-N-acetylglucosamine pyrophosphorylase 1 Novel U 0.0032835247073486496 -0.22997145770129343 1.0 8499 +16948 Lox lysyl oxidase Novel U 0.003282496807846059 -0.22998210465055088 1.0 8500 +73884 Zdbf2 zinc finger, DBF-type containing 2 Novel U 0.0032823409780271605 -0.22998371873069243 1.0 8501 +18108 Nmt2 N-myristoyltransferase 2 Novel U 0.0032801878945182858 -0.23000602029889852 1.0 8502 +387354 Tas2r129 taste receptor, type 2, member 129 Novel U 0.0032790841751384144 -0.23001745258795242 1.0 8503 +22061 Trp63 transformation related protein 63 Novel U 0.003277508587770832 -0.23003377247011117 1.0 8504 +83921 Cemip2 cell migration inducing hyaluronidase 2 Novel U 0.0032773676029262413 -0.23003523278649685 1.0 8505 +27407 Abcf2 ATP-binding cassette, sub-family F member 2 Novel U 0.003277166138925886 -0.23003731954398976 1.0 8506 +13427 Dync1i2 dynein cytoplasmic 1 intermediate chain 2 Novel N 0.003277011176715651 -0.23003892463746925 1.0 8507 +104662 Tsr1 TSR1 20S rRNA accumulation Novel U 0.0032761116805572316 -0.23004824158910883 1.0 8508 +223693 Tmem184b transmembrane protein 184b Novel U 0.0032760287003432607 -0.23004910109543733 1.0 8509 +69372 Mocs3 molybdenum cofactor synthesis 3 Novel N 0.003275635633619438 -0.2300531724676413 1.0 8510 +93897 Fzd10 frizzled class receptor 10 Novel U 0.003275164252057593 -0.23005805502236304 1.0 8511 +52065 Mfhas1 malignant fibrous histiocytoma amplified sequence 1 Novel U 0.0032747546138261574 -0.23006229804169812 1.0 8512 +19946 Rpl30 ribosomal protein L30 Novel N 0.0032739228796075078 -0.2300709131173931 1.0 8513 +56299 Fkbpl FK506 binding protein-like Novel U 0.003273407297340839 -0.2300762535015624 1.0 8514 +664610 Rhox4d reproductive homeobox 4D Novel U 0.0032733676468738137 -0.23007666419979642 1.0 8515 +19267 Ptpre protein tyrosine phosphatase receptor type E Novel N 0.0032710547622845513 -0.23010062098234002 1.0 8516 +240595 Kcnv2 potassium channel, subfamily V, member 2 Novel N 0.003270810858156417 -0.23010314733328133 1.0 8517 +100041621 Ermardl1 ER membrane associated RNA degradation like 1 Novel U 0.0032696447115014085 -0.2301152262419989 1.0 8518 +67358 1700093K21Rik RIKEN cDNA 1700093K21 gene Novel U 0.0032683770438199323 -0.23012835670217127 1.0 8519 +100039740 Rps18-ps6 ribosomal protein S18, pseudogene 6 Novel U 0.003267652060599254 -0.23013586605453853 1.0 8520 +14464 Gata5 GATA binding protein 5 Novel U 0.0032673741407388828 -0.23013874473931614 1.0 8521 +16764 Aff3 AF4/FMR2 family, member 3 Novel U 0.00326691206253612 -0.23014353093015036 1.0 8522 +97863 Fam8a1 family with sequence similarity 8, member A1 Novel U 0.003266271581482917 -0.23015016501184477 1.0 8523 +668958 Btbd35f11 BTB domain containing 35, family member 11 Novel U 0.0032651819048856393 -0.23016145184621814 1.0 8524 +546983 Vmn2r77 vomeronasal 2, receptor 77 Novel U 0.0032632023197511906 -0.23018195632396543 1.0 8525 +268656 Sptlc1 serine palmitoyltransferase, long chain base subunit 1 Novel U 0.003262399418655205 -0.2301902727471237 1.0 8526 +627636 Vmn2r103 vomeronasal 2, receptor 103 Novel U 0.003262242984779242 -0.23019189308406843 1.0 8527 +71883 Coq2 coenzyme Q2 4-hydroxybenzoate polyprenyltransferase Novel U 0.003261839948387054 -0.2301960677217696 1.0 8528 +620078 Sp140l2 Sp140 nuclear body protein like 2 Novel U 0.003261404408083522 -0.230200579033916 1.0 8529 +15378 Hnf4a hepatic nuclear factor 4, alpha Novel U 0.0032601916596758404 -0.23021314064205578 1.0 8530 +74288 Spem1 spermatid maturation 1 Novel U 0.0032590034174343548 -0.23022544841613174 1.0 8531 +12835 Col6a3 collagen, type VI, alpha 3 Novel U 0.0032581800153263702 -0.23023397718809835 1.0 8532 +68879 Prpf6 pre-mRNA splicing factor 6 Novel N 0.003257318961468287 -0.23024289595565478 1.0 8533 +66309 Tmem128 transmembrane protein 128 Novel U 0.0032561958663216636 -0.23025452893826373 1.0 8534 +26457 Slc27a1 solute carrier family 27 (fatty acid transporter), member 1 Novel U 0.003255579695409498 -0.2302609112163164 1.0 8535 +17936 Nab1 Ngfi-A binding protein 1 Novel U 0.0032555463259119864 -0.23026125685647467 1.0 8536 +69388 Fam236c family with sequence similarity 236, member C Novel U 0.0032544442145646087 -0.23027267248958086 1.0 8537 +234664 Nae1 NEDD8 activating enzyme E1 subunit 1 Novel U 0.003254169846082604 -0.23027551438929805 1.0 8538 +18372 Or7a42 olfactory receptor family 7 subfamily A member 42 Novel U 0.0032530175412544995 -0.23028744992482758 1.0 8539 +22004 Tpm2 tropomyosin 2, beta Novel U 0.003252546397366493 -0.23029233001773156 1.0 8540 +17763 Mtcp1 mature T cell proliferation 1 Novel N 0.0032515903900676947 -0.23030223230990546 1.0 8541 +18789 Papola poly (A) polymerase alpha Novel N 0.0032512982963330836 -0.2303052578072065 1.0 8542 +56309 Mycbp MYC binding protein Novel N 0.0032500765221051783 -0.23031791290449546 1.0 8543 +20409 Ostf1 osteoclast stimulating factor 1 Novel N 0.003249994788759451 -0.2303187594958037 1.0 8544 +19822 Rnf4 ring finger protein 4 Novel U 0.0032497233357725573 -0.23032157119691837 1.0 8545 +14823 Grm8 glutamate receptor, metabotropic 8 Novel N 0.003249601131475122 -0.23032283698501396 1.0 8546 +239719 Mrtfb myocardin related transcription factor B Novel N 0.0032495210352190334 -0.2303236666194015 1.0 8547 +78521 B230219D22Rik RIKEN cDNA B230219D22 gene Novel U 0.003249279760257006 -0.23032616573752668 1.0 8548 +52856 Mtg2 mitochondrial ribosome associated GTPase 2 Novel N 0.0032483681524999473 -0.23033560814070683 1.0 8549 +330963 Ankdd1a ankyrin repeat and death domain containing 1A Novel U 0.0032474599005065646 -0.23034501578499714 1.0 8550 +672125 Gm14496 predicted gene 14496 Novel U 0.0032460041309424507 -0.23036009459828635 1.0 8551 +619788 Vmn2r117 vomeronasal 2, receptor 117 Novel U 0.0032457587996009138 -0.23036263573225715 1.0 8552 +21374 Tbp TATA box binding protein Novel U 0.003245628358762832 -0.23036398683417 1.0 8553 +102022 Ces2a carboxylesterase 2A Novel U 0.0032453140118350494 -0.23036724282931437 1.0 8554 +67490 Ufl1 UFM1 specific ligase 1 Novel U 0.0032452876388987533 -0.23036751599932156 1.0 8555 +113852 Vmn1r50 vomeronasal 1 receptor 50 Novel U 0.0032442866171428462 -0.23037788454976244 1.0 8556 +20563 Slit2 slit guidance ligand 2 Novel U 0.0032437975049355856 -0.23038295075792653 1.0 8557 +329919 Skint2 selection and upkeep of intraepithelial T cells 2 Novel U 0.0032417469562156377 -0.2304041902741596 1.0 8558 +16646 Kpna1 karyopherin subunit alpha 1 Novel U 0.0032388350681111272 -0.23043435151542296 1.0 8559 +218343 Skic3 SKI3 subunit of superkiller complex Novel U 0.0032371048175032615 -0.23045227339434032 1.0 8560 +103425 Ncln nicalin Novel U 0.0032356556140761077 -0.2304672841957988 1.0 8561 +432838 Gm5460 predicted gene 5460 Novel U 0.0032353515751218725 -0.230470433421292 1.0 8562 +66892 Eif4e3 eukaryotic translation initiation factor 4E member 3 Novel U 0.0032328438998463927 -0.23049640783936 1.0 8563 +20807 Srf serum response factor Novel U 0.0032310838445312137 -0.23051463843445594 1.0 8564 +56417 Adar adenosine deaminase, RNA-specific Novel U 0.0032307962904744685 -0.2305176169099229 1.0 8565 +93760 Arid1a AT-rich interaction domain 1A Novel U 0.0032306189778576796 -0.2305194535081788 1.0 8566 +100042781 Vmn2r40 vomeronasal 2, receptor 40 Novel U 0.003230475518074833 -0.2305209394598935 1.0 8567 +22589 Atrx ATRX, chromatin remodeler Novel U 0.003230461166490765 -0.2305210881131295 1.0 8568 +258409 Or5an9 olfactory receptor family 5 subfamily AN member 9 Novel U 0.003230340045824265 -0.23052234267701147 1.0 8569 +258992 Or10q1 olfactory receptor family 10 subfamily Q member 1 Novel U 0.003229566435430945 -0.2305303557080344 1.0 8570 +258249 Or7g27 olfactory receptor family 7 subfamily G member 27 Novel U 0.0032276490866782214 -0.23055021554338567 1.0 8571 +621239 Nhlrc4 NHL repeat containing 4 Novel U 0.0032268035235254954 -0.23055897385872523 1.0 8572 +13589 Mapre1 microtubule-associated protein, RP/EB family, member 1 Novel U 0.003225417051976047 -0.23057333488545662 1.0 8573 +59003 Maea macrophage erythroblast attacher Novel N 0.003225059792421832 -0.2305770353681749 1.0 8574 +228576 Mall mal, T cell differentiation protein-like Novel U 0.003224781032285075 -0.23057992275650765 1.0 8575 +93872 Pcdhb1 protocadherin beta 1 Novel U 0.0032247432440635966 -0.23058031416566352 1.0 8576 +75430 Anapc15 anaphase promoting complex C subunit 15 Novel U 0.0032246257039451843 -0.2305815316423461 1.0 8577 +78688 Nol3 nucleolar protein 3 (apoptosis repressor with CARD domain) Novel U 0.0032246147122671457 -0.23058164549378593 1.0 8578 +13872 Ercc3 excision repair cross-complementing rodent repair deficiency, complementation group 3 Novel U 0.003224041973106452 -0.23058757790718457 1.0 8579 +16000 Igf1 insulin-like growth factor 1 Novel U 0.003222871394372569 -0.23059970272322947 1.0 8580 +140546 Eri3 exoribonuclease 3 Novel U 0.0032228703708046817 -0.23059971332531198 1.0 8581 +72119 Tpx2 TPX2, microtubule-associated Novel U 0.00322284499742356 -0.23059997614195954 1.0 8582 +20186 Nr1h4 nuclear receptor subfamily 1, group H, member 4 Novel U 0.003222468453849677 -0.23060387636791962 1.0 8583 +231915 Uspl1 ubiquitin specific peptidase like 1 Novel U 0.0032223950171479843 -0.23060463702286166 1.0 8584 +16773 Lama2 laminin, alpha 2 Novel U 0.00322206651158391 -0.23060803967269528 1.0 8585 +12406 Serpinh1 serine (or cysteine) peptidase inhibitor, clade H, member 1 Novel U 0.003221804389825291 -0.23061075472125425 1.0 8586 +65112 Pmepa1 prostate transmembrane protein, androgen induced 1 Novel U 0.003221060940998714 -0.2306184553397604 1.0 8587 +100041678 Gm3500 predicted gene 3500 Novel U 0.0032210337171184973 -0.23061873732381674 1.0 8588 +14807 Grik3 glutamate receptor, ionotropic, kainate 3 Novel N 0.0032194943885451455 -0.2306346816385768 1.0 8589 +16763 Lad1 ladinin Novel U 0.0032186808178116897 -0.23064310857748924 1.0 8590 +271377 Zbtb11 zinc finger and BTB domain containing 11 Novel U 0.0032180152222786767 -0.23065000279413994 1.0 8591 +227446 Relch RAB11 binding and LisH domain, coiled-coil and HEAT repeat containing Novel U 0.0032174309118177405 -0.23065605506268613 1.0 8592 +239743 Klhl6 kelch-like 6 Novel U 0.003217019788905547 -0.2306603134602957 1.0 8593 +13038 Ctsk cathepsin K Novel U 0.003216388672369271 -0.2306668505446316 1.0 8594 +72542 Pgam5 phosphoglycerate mutase family member 5 Novel U 0.0032137739979017973 -0.23069393325681292 1.0 8595 +387343 Tas2r109 taste receptor, type 2, member 109 Novel U 0.0032132061031601667 -0.23069981549187818 1.0 8596 +54722 Gsdme gasdermin E Novel U 0.0032131511391880305 -0.23070038480689473 1.0 8597 +625029 Vmn2r83 vomeronasal 2, receptor 83 Novel U 0.00321229526090949 -0.23070924996596837 1.0 8598 +68379 Ciz1 CDKN1A interacting zinc finger protein 1 Novel U 0.0032110974553298905 -0.2307216567967861 1.0 8599 +14941 Gzmd granzyme D Novel U 0.003210455421658402 -0.2307283069604497 1.0 8600 +54484 Mkrn1 makorin, ring finger protein, 1 Novel U 0.0032099846021648995 -0.23073318369328602 1.0 8601 +208258 Ankrd33 ankyrin repeat domain 33 Novel U 0.0032097297639533304 -0.2307358232991041 1.0 8602 +74646 Spsb1 splA/ryanodine receptor domain and SOCS box containing 1 Novel U 0.003207605182279768 -0.230757829646237 1.0 8603 +432555 Gm5431 predicted gene 5431 Novel U 0.0032064111273638076 -0.2307701976278041 1.0 8604 +321022 Cdv3 carnitine deficiency-associated gene expressed in ventricle 3 Novel U 0.003205527119926166 -0.230779354147783 1.0 8605 +11731 Ang2 angiogenin, ribonuclease A family, member 2 Novel U 0.003205351042684783 -0.23078117795006098 1.0 8606 +237615 Ankrd52 ankyrin repeat domain 52 Novel U 0.00320223228734897 -0.2308134819153058 1.0 8607 +17829 Muc1 mucin 1, transmembrane Novel U 0.0032015937464852677 -0.2308200959005811 1.0 8608 +78658 Ncapd3 non-SMC condensin II complex, subunit D3 Novel U 0.0032000198649678024 -0.2308363981136005 1.0 8609 +76217 Jakmip2 janus kinase and microtubule interacting protein 2 Novel U 0.003199760720768464 -0.2308390823206983 1.0 8610 +73254 Ccdc18 coiled-coil domain containing 18 Novel U 0.003199752731529459 -0.23083916507297328 1.0 8611 +69387 Dnajb13 DnaJ heat shock protein family (Hsp40) member B13 Novel N 0.003198080843804402 -0.23085648243106907 1.0 8612 +14248 Flii flightless I actin binding protein Novel U 0.0031972943420415347 -0.23086462899047402 1.0 8613 +14161 Fga fibrinogen alpha chain Novel U 0.0031945368766582204 -0.2308931907262676 1.0 8614 +15510 Hspd1 heat shock protein 1 (chaperonin) Novel U 0.0031939071085314136 -0.23089971384382255 1.0 8615 +380839 Serpinb1c serine (or cysteine) peptidase inhibitor, clade B, member 1c Novel U 0.0031926443005019923 -0.2309127939678787 1.0 8616 +276950 Slfn8 schlafen 8 Novel U 0.0031914583545870276 -0.23092507795668005 1.0 8617 +53321 Cntnap1 contactin associated protein-like 1 Novel U 0.00319113934126344 -0.23092838228619877 1.0 8618 +100042921 Vmn2r51 vomeronasal 2, receptor 51 Novel U 0.0031909902405165675 -0.23092992666683346 1.0 8619 +107508 Eprs1 glutamyl-prolyl-tRNA synthetase 1 Novel U 0.0031882419597431275 -0.23095839326873988 1.0 8620 +72113 Adck1 aarF domain containing kinase 1 Novel N 0.003188178376193651 -0.23095905186505514 1.0 8621 +16774 Lama3 laminin, alpha 3 Novel U 0.0031879602214674426 -0.23096131150453778 1.0 8622 +18023 Nfe2l1 nuclear factor, erythroid derived 2,-like 1 Novel N 0.003184584851569753 -0.23099627347497872 1.0 8623 +12575 Cdkn1a cyclin dependent kinase inhibitor 1A Novel U 0.0031832363550810027 -0.23101024115727978 1.0 8624 +22245 Uck1 uridine-cytidine kinase 1 Novel N 0.0031829000161786012 -0.23101372494457428 1.0 8625 +14266 Aff2 AF4/FMR2 family, member 2 Novel U 0.003182646898841093 -0.23101634672563542 1.0 8626 +18458 Pabpc1 poly(A) binding protein, cytoplasmic 1 Novel U 0.0031819794610725965 -0.2310232600241007 1.0 8627 +66144 Atp6v1f ATPase, H+ transporting, lysosomal V1 subunit F Novel U 0.00318159824376991 -0.23102720866039006 1.0 8628 +74435 Lrriq3 leucine-rich repeats and IQ motif containing 3 Novel U 0.003181364320104024 -0.2310296316340315 1.0 8629 +223455 Marchf6 membrane associated ring-CH-type finger 6 Novel U 0.0031793772220840085 -0.2310502139300005 1.0 8630 +22388 Wdr1 WD repeat domain 1 Novel U 0.0031784158261388327 -0.23106017203759643 1.0 8631 +68366 Tmem129 transmembrane protein 129 Novel U 0.00317826892677919 -0.23106169361633455 1.0 8632 +12443 Ccnd1 cyclin D1 Novel U 0.0031779435431919145 -0.23106506392883513 1.0 8633 +321007 Serac1 serine active site containing 1 Novel U 0.0031769398892191702 -0.23107545974369148 1.0 8634 +18160 Npr1 natriuretic peptide receptor 1 Novel U 0.003174423843316738 -0.2311015208644383 1.0 8635 +258300 Or5b24 olfactory receptor family 5 subfamily B member 24 Novel U 0.003173548410665898 -0.2311105885670574 1.0 8636 +328561 Apol10b apolipoprotein L 10B Novel U 0.0031720645477465287 -0.2311259583703969 1.0 8637 +320360 Ric3 RIC3 acetylcholine receptor chaperone Novel U 0.003169274675599135 -0.23115485577438746 1.0 8638 +71287 Cpvl carboxypeptidase, vitellogenic-like Novel U 0.003168592602834388 -0.2311619206616628 1.0 8639 +75573 Prr29 proline rich 29 Novel U 0.00316756047439558 -0.23117261141410256 1.0 8640 +215001 Wfikkn1 WAP, FS, Ig, KU, and NTR-containing protein 1 Novel U 0.0031660911571507384 -0.23118783055382341 1.0 8641 +194225 Pramel27 PRAME like 27 Novel U 0.003165745317194991 -0.2311914127527162 1.0 8642 +208994 Fam83b family with sequence similarity 83, member B Novel U 0.0031656686017909317 -0.23119220736834956 1.0 8643 +225913 Tkfc triokinase, FMN cyclase Novel U 0.0031650766685547816 -0.23119833859335087 1.0 8644 +259037 Or6b6 olfactory receptor family 6 subfamily B member 6 Novel U 0.0031642947296844194 -0.23120643789046522 1.0 8645 +140781 Myh7 myosin, heavy polypeptide 7, cardiac muscle, beta Novel U 0.0031639654148715728 -0.23120984892247104 1.0 8646 +67693 Hypk huntingtin interacting protein K Novel N 0.003163144004926391 -0.2312183570596808 1.0 8647 +18103 Nme2 NME/NM23 nucleoside diphosphate kinase 2 Novel N 0.0031630440073674316 -0.23121939283110926 1.0 8648 +21341 Taf1c TATA-box binding protein associated factor, RNA polymerase I, C Novel N 0.003162438870852606 -0.23122566081523707 1.0 8649 +102634333 1110002E22Rik RIKEN cDNA 1110002E22 gene Novel U 0.003162244949609992 -0.2312276694450932 1.0 8650 +66592 Stoml2 stomatin (Epb7.2)-like 2 Novel U 0.0031620694799755966 -0.23122948695379802 1.0 8651 +67702 Rnf149 ring finger protein 149 Novel U 0.0031613769508791567 -0.2312366601474133 1.0 8652 +58909 Fam13a family with sequence similarity 13, member A Novel U 0.0031580687013438146 -0.23127092688734754 1.0 8653 +50722 Dkkl1 dickkopf-like 1 Novel N 0.003157717856710096 -0.2312745609245302 1.0 8654 +330369 Fbxo41 F-box protein 41 Novel U 0.003157162093945329 -0.23128031749697794 1.0 8655 +18576 Pde3b phosphodiesterase 3B, cGMP-inhibited Novel U 0.00315625264780848 -0.231289737510167 1.0 8656 +75266 Tomm20l translocase of outer mitochondrial membrane 20-like Novel U 0.0031547843765751885 -0.2313049458153346 1.0 8657 +18505 Pax3 paired box 3 Novel U 0.00315411941602482 -0.23131183345485593 1.0 8658 +414077 Wdr83os WD repeat domain 83 opposite strand Novel U 0.003152404050325046 -0.23132960115638457 1.0 8659 +20317 Serpinf1 serine (or cysteine) peptidase inhibitor, clade F, member 1 Novel U 0.003151191190580201 -0.23134216391775106 1.0 8660 +11783 Apaf1 apoptotic peptidase activating factor 1 Novel N 0.0031510510687710424 -0.23134361529484407 1.0 8661 +170813 Ms4a3 membrane-spanning 4-domains, subfamily A, member 3 Novel U 0.0031506960439364263 -0.2313472926304102 1.0 8662 +268301 Sowahc sosondowah ankyrin repeat domain family member C Novel U 0.003150361819768879 -0.23135075451335063 1.0 8663 +244202 Nlrp10 NLR family, pyrin domain containing 10 Novel U 0.0031493226334134827 -0.23136151837145844 1.0 8664 +387355 Tas2r130 taste receptor, type 2, member 130 Novel N 0.0031486189602896847 -0.23136880699454274 1.0 8665 +232371 C1rl complement component 1, r subcomponent-like Novel U 0.0031484023391536477 -0.23137105074914874 1.0 8666 +574429 Psg26 pregnancy-specific beta-1-glycoprotein 26 Novel U 0.003147727104704358 -0.23137804480537733 1.0 8667 +433070 Vmn2r96 vomeronasal 2, receptor 96 Novel U 0.0031471309954366738 -0.231384219285576 1.0 8668 +66818 Smim7 small integral membrane protein 7 Novel U 0.00314709221650036 -0.23138462095652354 1.0 8669 +81898 Sf3b1 splicing factor 3b, subunit 1 Novel U 0.0031464880569731304 -0.2313908788210459 1.0 8670 +270110 Irf2bp2 interferon regulatory factor 2 binding protein 2 Novel U 0.0031463791836638913 -0.23139200652720399 1.0 8671 +18261 Ocm oncomodulin Novel U 0.003144907921335726 -0.231407245814034 1.0 8672 +244049 Mctp2 multiple C2 domains, transmembrane 2 Novel U 0.0031444747336787098 -0.2314117327575451 1.0 8673 +67747 Ribc2 RIB43A domain with coiled-coils 2 Novel U 0.0031430468902489857 -0.23142652231285232 1.0 8674 +16618 Klk1b26 kallikrein 1-related petidase b26 Novel U 0.003142367369738694 -0.2314335607639599 1.0 8675 +13057 Cyba cytochrome b-245, alpha polypeptide Novel U 0.0031423537910301403 -0.23143370141177672 1.0 8676 +108832 Tmem74b transmembrane protein 74B Novel U 0.0031417825630986845 -0.23143961817191264 1.0 8677 +18619 Penk preproenkephalin Novel N 0.0031410492843790146 -0.23144721344878574 1.0 8678 +319197 Gpr4 G protein-coupled receptor 4 Novel U 0.0031402161067620696 -0.23145584347515283 1.0 8679 +107951 Cdk9 cyclin dependent kinase 9 Novel U 0.0031398949028868207 -0.23145917049433362 1.0 8680 +329366 Ccdc187 coiled-coil domain containing 187 Novel U 0.003139109895522038 -0.23146730157481232 1.0 8681 +14178 Fgf7 fibroblast growth factor 7 Novel U 0.0031372366380234364 -0.2314867047144028 1.0 8682 +75216 Cep128 centrosomal protein 128 Novel N 0.0031365131266309684 -0.23149419882162187 1.0 8683 +13388 Dll1 delta like canonical Notch ligand 1 Novel U 0.0031361159177345703 -0.2314983130983132 1.0 8684 +17095 Lyl1 lymphoblastomic leukemia 1 Novel N 0.0031356610444995135 -0.23150302466032877 1.0 8685 +50911 Exosc9 exosome component 9 Novel U 0.003135426270779721 -0.2315054564388006 1.0 8686 +70646 Naa30 N(alpha)-acetyltransferase 30, NatC catalytic subunit Novel U 0.0031332991795431767 -0.23152748877990437 1.0 8687 +12040 Bckdhb branched chain ketoacid dehydrogenase E1, beta polypeptide Novel N 0.003133262811023587 -0.23152786548383475 1.0 8688 +668894 Vinac1 vinculin/alpha-catenin family member 1 Novel U 0.0031322237596243473 -0.2315386279440711 1.0 8689 +100043123 Cd300ld4 CD300 molecule like family member D4 Novel U 0.0031300794789147716 -0.23156083833317143 1.0 8690 +217331 Unk unkempt family zinc finger Novel N 0.003129306206392645 -0.2315688478645357 1.0 8691 +56461 Kcnip3 Kv channel interacting protein 3, calsenilin Novel N 0.003124119646754169 -0.23162257007877204 1.0 8692 +170823 Glmn glomulin, FKBP associated protein Novel U 0.003123988570592144 -0.2316239277613494 1.0 8693 +89867 Sec16b SEC16 homolog B, endoplasmic reticulum export factor Novel U 0.0031218074306576084 -0.2316465199370902 1.0 8694 +108803 Spem2 SPEM family member 2 Novel U 0.003118285245267866 -0.23168300261757155 1.0 8695 +227737 Niban2 niban apoptosis regulator 2 Novel U 0.00311813751277808 -0.2316845328258443 1.0 8696 +17898 Myl7 myosin, light polypeptide 7, regulatory Novel U 0.0031174140897848564 -0.2316920260174269 1.0 8697 +448987 Fbxl7 F-box and leucine-rich repeat protein 7 Novel U 0.003116185880526877 -0.23170474776854583 1.0 8698 +12727 Clcn4 chloride channel, voltage-sensitive 4 Novel U 0.0031160694653686602 -0.2317059535929277 1.0 8699 +16515 Kcnj12 potassium inwardly-rectifying channel, subfamily J, member 12 Novel U 0.003115805331796644 -0.2317086894797837 1.0 8700 +58996 Arhgap23 Rho GTPase activating protein 23 Novel U 0.0031156083051775162 -0.23171073027502773 1.0 8701 +100169868 Gm3173 predicted gene 3173 Novel U 0.0031150586532501198 -0.23171642355162286 1.0 8702 +72713 Angptl1 angiopoietin-like 1 Novel U 0.0031143813124996935 -0.2317234394248494 1.0 8703 +22214 Ube2h ubiquitin-conjugating enzyme E2H Novel U 0.003114334966321461 -0.23172391947704 1.0 8704 +56552 Vmn2r26 vomeronasal 2, receptor 26 Novel U 0.0031141822579570932 -0.2317255012252581 1.0 8705 +20714 Serpina3k serine (or cysteine) peptidase inhibitor, clade A, member 3K Novel U 0.0031141417173137717 -0.23172592114390891 1.0 8706 +12151 Bmi1 Bmi1 polycomb ring finger oncogene Novel U 0.003112789487018376 -0.23173992750085645 1.0 8707 +74307 Tex54 testis expressed 54 Novel U 0.0031117934368294336 -0.23175024455597015 1.0 8708 +72690 Fam110d family with sequence similarity 110, member D Novel U 0.0031116429299731544 -0.23175180350103983 1.0 8709 +66109 Tspan13 tetraspanin 13 Novel U 0.0031110642305993592 -0.23175779765012988 1.0 8710 +233445 Vmn2r71 vomeronasal 2, receptor 71 Novel U 0.003107941470008969 -0.23179014310166993 1.0 8711 +66860 Tanc1 tetratricopeptide repeat, ankyrin repeat and coiled-coil containing 1 Novel U 0.003106324907374572 -0.23180688740429536 1.0 8712 +56535 Pex3 peroxisomal biogenesis factor 3 Novel U 0.003105036563277567 -0.23182023203010013 1.0 8713 +673977 Vmn1r107 vomeronasal 1 receptor 107 Novel U 0.0031041289955034104 -0.23182963258727016 1.0 8714 +72650 Mtrfr mitochondrial translation release factor in rescue Novel U 0.0031036274870909967 -0.2318348271949197 1.0 8715 +207683 Igsf11 immunoglobulin superfamily, member 11 Novel N 0.003103388147120488 -0.23183730627046636 1.0 8716 +26444 Psma7 proteasome subunit alpha 7 Novel U 0.0031027953068739453 -0.2318434468902515 1.0 8717 +78938 Fbxo34 F-box protein 34 Novel U 0.0031011377105978444 -0.2318606162179888 1.0 8718 +71175 Nipbl NIPBL cohesin loading factor Novel U 0.003100758009731051 -0.23186454914708504 1.0 8719 +66374 2310011J03Rik RIKEN cDNA 2310011J03 gene Novel U 0.003100273594733442 -0.23186956670170603 1.0 8720 +245607 Gprasp2 G protein-coupled receptor associated sorting protein 2 Novel U 0.0030984679884625004 -0.2318882691121043 1.0 8721 +380732 Milr1 mast cell immunoglobulin like receptor 1 Novel U 0.0030979908879993447 -0.23189321090301784 1.0 8722 +110794 Cebpe CCAAT/enhancer binding protein epsilon Novel U 0.003097777658226657 -0.2318954195299938 1.0 8723 +20415 Shbg sex hormone binding globulin Novel U 0.0030976385953283645 -0.23189685993892284 1.0 8724 +223473 Nipal2 NIPA-like domain containing 2 Novel U 0.003097608809698244 -0.2318971684575005 1.0 8725 +474145 Clec4a4 C-type lectin domain family 4, member a4 Novel U 0.0030976060438559785 -0.2318971971060038 1.0 8726 +327987 Med13 mediator complex subunit 13 Novel N 0.00309659709314047 -0.23190764778434753 1.0 8727 +14977 Slc39a7 solute carrier family 39 (zinc transporter), member 7 Novel U 0.0030957720926885605 -0.23191619311190798 1.0 8728 +67326 Adissp adipose secreted signaling protein Novel N 0.0030953850374551193 -0.23192020221729223 1.0 8729 +11307 Abcg1 ATP binding cassette subfamily G member 1 Novel U 0.0030949591522965096 -0.23192461352176486 1.0 8730 +101056205 Gm29797 predicted gene, 29797 Novel U 0.0030928630611585114 -0.23194632476486698 1.0 8731 +74717 Spata17 spermatogenesis associated 17 Novel U 0.003091322207322611 -0.23196228487824638 1.0 8732 +100310872 Dynlt1a dynein light chain Tctex-type 1A Novel U 0.003088646201985492 -0.23199000285355934 1.0 8733 +93707 Pcdhgc4 protocadherin gamma subfamily C, 4 Novel U 0.0030886001261615603 -0.23199048010542894 1.0 8734 +16833 Ldhc lactate dehydrogenase C Novel U 0.0030851385098662684 -0.2320263354132211 1.0 8735 +109672 Cyb5a cytochrome b5 type A (microsomal) Novel N 0.003085102022666669 -0.23202671334643507 1.0 8736 +70397 Tmem70 transmembrane protein 70 Novel U 0.0030829164181185105 -0.23204935176649702 1.0 8737 +20393 Sgk1 serum/glucocorticoid regulated kinase 1 Novel U 0.0030778944585018813 -0.23210136905911807 1.0 8738 +381629 Atraid all-trans retinoic acid induced differentiation factor Novel U 0.0030772463142037148 -0.23210808251645187 1.0 8739 +56873 Lmbr1 limb region 1 Novel U 0.0030769066885918605 -0.23211160034737485 1.0 8740 +68564 Nufip2 nuclear FMR1 interacting protein 2 Novel U 0.003074997478061446 -0.232131375887287 1.0 8741 +68799 Rgmb repulsive guidance molecule family member B Novel U 0.0030743599065978307 -0.23213797983154807 1.0 8742 +545650 Gm13277 predicted gene 13277 Novel U 0.0030743420572892665 -0.2321381647140994 1.0 8743 +19014 Med1 mediator complex subunit 1 Novel U 0.0030718559957683762 -0.23216391525760793 1.0 8744 +232975 Atp1a3 ATPase, Na+/K+ transporting, alpha 3 polypeptide Novel U 0.0030718366874825462 -0.2321641152521978 1.0 8745 +20226 Sars1 seryl-tRNA synthetase 1 Novel U 0.0030705139715829976 -0.2321778159000034 1.0 8746 +102635514 Gm6993 predicted gene 6993 Novel U 0.003067737171834529 -0.23220657790051566 1.0 8747 +449000 Zfp960 zinc finger protein 960 Novel U 0.0030669765265092432 -0.23221445663979012 1.0 8748 +106021 Topors topoisomerase I binding, arginine/serine-rich Novel U 0.003066737657492961 -0.2322169308372084 1.0 8749 +29813 Zfp385a zinc finger protein 385A Novel N 0.003066436746634095 -0.2322200476619926 1.0 8750 +218271 B4galt7 beta-1,4-galactosyltransferase 7 Novel U 0.003065201614967747 -0.23223284111518985 1.0 8751 +19944 Rpl29 ribosomal protein L29 Novel U 0.0030644190587136555 -0.2322409468071446 1.0 8752 +11812 Apoc1 apolipoprotein C-I Novel U 0.0030640672149189613 -0.2322445911936038 1.0 8753 +217480 Dgkb diacylglycerol kinase, beta Novel U 0.0030629960288365895 -0.23225568650383166 1.0 8754 +76524 Cln6 ceroid-lipofuscinosis, neuronal 6 Novel U 0.0030629237645273034 -0.23225643501517165 1.0 8755 +19041 Ppl periplakin Novel U 0.003062375272872928 -0.232262116273697 1.0 8756 +14661 Glud1 glutamate dehydrogenase 1 Novel U 0.0030619556159953223 -0.23226646306583976 1.0 8757 +13592 Ebf2 early B cell factor 2 Novel U 0.003061768782950927 -0.23226839827637183 1.0 8758 +27419 Naglu alpha-N-acetylglucosaminidase (Sanfilippo disease IIIB) Novel U 0.0030613544496948717 -0.23227268992661756 1.0 8759 +623078 Gm8108 predicted gene 8108 Novel U 0.0030591289278207503 -0.23229574180902965 1.0 8760 +13655 Egr3 early growth response 3 Novel U 0.0030578983731525773 -0.23230848785383024 1.0 8761 +228012 Tlk1 tousled-like kinase 1 Novel U 0.003057413605532043 -0.23231350906090786 1.0 8762 +27204 Syn3 synapsin III Novel N 0.003056992218538376 -0.2323178737735359 1.0 8763 +67453 Slc25a46 solute carrier family 25, member 46 Novel U 0.003056169431173602 -0.23232639617801257 1.0 8764 +26443 Psma6 proteasome subunit alpha 6 Novel U 0.0030561006572289223 -0.23232710853627073 1.0 8765 +72211 1700025C18Rik RIKEN cDNA 1700025C18 gene Novel U 0.0030513351346687116 -0.23237646966229128 1.0 8766 +23890 Gpr34 G protein-coupled receptor 34 Novel U 0.003051238374844284 -0.2323774718973719 1.0 8767 +74054 Siglecl2 Siglec family like 2 Novel U 0.003050271534554034 -0.23238748639731516 1.0 8768 +66273 Aamdc adipogenesis associated Mth938 domain containing Novel U 0.0030495949943758916 -0.23239449397824027 1.0 8769 +12490 Cd34 CD34 antigen Novel U 0.003048501270473059 -0.23240582273447158 1.0 8770 +237403 Lingo3 leucine rich repeat and Ig domain containing 3 Novel U 0.0030484064487585655 -0.23240680489467322 1.0 8771 +29819 Stau2 staufen double-stranded RNA binding protein 2 Novel U 0.0030441057896627485 -0.23245135098021116 1.0 8772 +243025 Tmem156 transmembrane protein 156 Novel U 0.0030424460883504206 -0.23246854211184448 1.0 8773 +545205 Or5v1b olfactory receptor family 5 subfamily V member 1B Novel U 0.0030406366153468162 -0.23248728457373258 1.0 8774 +67075 Magt1 magnesium transporter 1 Novel U 0.0030406194148411025 -0.23248746273600535 1.0 8775 +14531 Gcm1 glial cells missing homolog 1 Novel N 0.0030403319322901833 -0.2324904404708173 1.0 8776 +66588 Cmpk1 cytidine/uridine monophosphate kinase 1 Novel N 0.003040168517533686 -0.23249213311549313 1.0 8777 +50772 Mapk6 mitogen-activated protein kinase 6 Novel N 0.003036834159787443 -0.2325266702834176 1.0 8778 +11910 Atf3 activating transcription factor 3 Novel U 0.0030364734552813435 -0.23253040644883427 1.0 8779 +12642 Ch25h cholesterol 25-hydroxylase Novel N 0.003035009110849572 -0.23254557408032084 1.0 8780 +22333 Vdac1 voltage-dependent anion channel 1 Novel U 0.0030345404294349716 -0.23255042866700618 1.0 8781 +12444 Ccnd2 cyclin D2 Novel U 0.0030341509684610824 -0.23255446269097088 1.0 8782 +435811 Ldlrad2 low density lipoprotein receptor class A domain containing 2 Novel U 0.0030333793395198854 -0.2325624551981779 1.0 8783 +56612 Pfdn5 prefoldin 5 Novel U 0.0030322591186963516 -0.23257405840864276 1.0 8784 +230558 C8a complement component 8, alpha polypeptide Novel U 0.0030317716007501345 -0.23257910810350338 1.0 8785 +108937 Rnf169 ring finger protein 169 Novel N 0.0030310830194569794 -0.232586240405902 1.0 8786 +382133 Gm20738 predicted gene, 20738 Novel U 0.0030297227182380605 -0.23260033036121006 1.0 8787 +328099 Prps1l3 phosphoribosyl pyrophosphate synthetase 1-like 3 Novel U 0.0030296171729765685 -0.232601423595559 1.0 8788 +28071 Polr1f RNA polymerase I subunit F Novel U 0.0030296104083973683 -0.23260149366284794 1.0 8789 +69019 Spcs1 signal peptidase complex subunit 1 homolog (S. cerevisiae) Novel U 0.0030295194435181584 -0.23260243587407653 1.0 8790 +193796 Kdm4b lysine (K)-specific demethylase 4B Novel N 0.0030290222217246934 -0.23260758608106794 1.0 8791 +231042 Nup42 nucleoporin 42 Novel U 0.0030267213749765993 -0.23263141817604846 1.0 8792 +19763 Ring1 ring finger protein 1 Novel N 0.003026457187128001 -0.2326341546250995 1.0 8793 +11911 Atf4 activating transcription factor 4 Novel U 0.0030264287012572643 -0.23263444968081218 1.0 8794 +320557 Fam169a family with sequence similarity 169, member A Novel U 0.003026371994085648 -0.23263503705183164 1.0 8795 +140904 Caln1 calneuron 1 Novel U 0.003025723765853391 -0.23264175137855198 1.0 8796 +15207 Hes3 hes family bHLH transcription factor 3 Novel U 0.003025697926083782 -0.23264201902603615 1.0 8797 +20840 Stac src homology three (SH3) and cysteine rich domain Novel U 0.0030255307586869663 -0.23264375054043707 1.0 8798 +74041 Ddias DNA damage-induced apoptosis suppressor Novel U 0.0030253249725970583 -0.23264588206599146 1.0 8799 +18432 Mybbp1a MYB binding protein (P160) 1a Novel N 0.003024243804623572 -0.23265708076831934 1.0 8800 +330953 Hcn4 hyperpolarization-activated, cyclic nucleotide-gated K+ 4 Novel U 0.0030242390249891568 -0.2326571302756155 1.0 8801 +258096 Or14j9 olfactory receptor family 14 subfamily J member 9 Novel U 0.003022657386999881 -0.23267351282991486 1.0 8802 +192164 Pcdha12 protocadherin alpha 12 Novel U 0.0030217506763178213 -0.23268290450935314 1.0 8803 +100502861 Ccdc13 coiled-coil domain containing 13 Novel N 0.0030216654640349643 -0.2326837871353778 1.0 8804 +331063 Gsdmc2 gasdermin C2 Novel U 0.003021053088670893 -0.23269013009926806 1.0 8805 +11735 Ank3 ankyrin 3, epithelial Novel U 0.003021006492426598 -0.2326906127416347 1.0 8806 +19156 Psap prosaposin Novel U 0.003020994094179018 -0.23269074116227556 1.0 8807 +67373 Prss3b serine protease 3B Novel U 0.0030190153286934725 -0.23271123715012645 1.0 8808 +320817 Atad2b ATPase family, AAA domain containing 2B Novel U 0.0030186022881872935 -0.23271551541011148 1.0 8809 +436135 Vmn1r113 vomeronasal 1 receptor 113 Novel U 0.003018288445342522 -0.2327187661839806 1.0 8810 +104263 Kdm3a lysine (K)-specific demethylase 3A Novel U 0.003016907757769471 -0.23273306730047458 1.0 8811 +11486 Ada adenosine deaminase Novel U 0.0030123576422887662 -0.2327801972470467 1.0 8812 +101055912 Speer1i spermatogenesis associated glutamate (E)-rich protein 1I Novel U 0.003011375549870333 -0.23279036972803233 1.0 8813 +66119 Tomm6 translocase of outer mitochondrial membrane 6 Novel U 0.0030106262189473387 -0.23279813127309978 1.0 8814 +13884 Ces1c carboxylesterase 1C Novel U 0.0030098567497506947 -0.23280610140974367 1.0 8815 +67041 Oxct1 3-oxoacid CoA transferase 1 Novel N 0.00300916819317093 -0.23281323345616178 1.0 8816 +353148 Tas2r139 taste receptor, type 2, member 139 Novel N 0.0030084515522729154 -0.23282065639902516 1.0 8817 +15959 Ifit3 interferon-induced protein with tetratricopeptide repeats 3 Novel U 0.0030075542413695966 -0.23282995071586418 1.0 8818 +57895 Ccdc126 coiled-coil domain containing 126 Novel U 0.0030073310555423878 -0.23283226246732558 1.0 8819 +27356 Insl6 insulin-like 6 Novel U 0.0030070724617578945 -0.23283494097324456 1.0 8820 +260301 Otos otospiralin Novel U 0.003005679885858193 -0.2328493652286352 1.0 8821 +235044 Plppr2 phospholipid phosphatase related 2 Novel U 0.003005498490456319 -0.23285124411624475 1.0 8822 +75471 1700009N14Rik RIKEN cDNA 1700009N14 gene Novel U 0.0030042834183717057 -0.23286382979295384 1.0 8823 +26905 Eif2s3x eukaryotic translation initiation factor 2, subunit 3, structural gene X-linked Novel U 0.0030037493382700817 -0.23286936177708953 1.0 8824 +56863 Cldn9 claudin 9 Novel N 0.0030037024547038896 -0.23286984739552694 1.0 8825 +28114 Nsun2 NOL1/NOP2/Sun domain family member 2 Novel U 0.0030036415820805687 -0.2328704779121582 1.0 8826 +72775 Fance Fanconi anemia, complementation group E Novel U 0.003003331105633221 -0.23287369381699347 1.0 8827 +546981 Vmn2r75 vomeronasal 2, receptor 75 Novel U 0.0030005152302544293 -0.2329028605616001 1.0 8828 +94216 Col4a6 collagen, type IV, alpha 6 Novel U 0.0029995751163130954 -0.23291259823089983 1.0 8829 +74753 Trmo tRNA methyltransferase O Novel N 0.0029990835246009977 -0.23291769012169353 1.0 8830 +264134 Ift56 intraflagellar transport 56 Novel U 0.0029986830956722902 -0.23292183775137368 1.0 8831 +12226 Btg1 BTG anti-proliferation factor 1 Novel U 0.0029979433770814935 -0.2329294997322202 1.0 8832 +211429 Pla2g4b phospholipase A2, group IVB (cytosolic) Novel U 0.0029968146189910208 -0.23294119137141542 1.0 8833 +67117 Dynlt3 dynein light chain Tctex-type 3 Novel U 0.0029965656660265396 -0.23294377001803765 1.0 8834 +666765 Gm8279 predicted gene 8279 Novel U 0.0029960573026838865 -0.2329490356288293 1.0 8835 +26439 Psg19 pregnancy specific beta-1-glycoprotein 19 Novel U 0.002995775542366782 -0.23295195409293148 1.0 8836 +70902 Lpcat2b lysophosphatidylcholine acyltransferase 2B Novel U 0.0029940113313009957 -0.2329702277331556 1.0 8837 +258074 Or7g12 olfactory receptor family 7 subfamily G member 12 Novel U 0.00299379084276147 -0.2329725115461998 1.0 8838 +76025 Cant1 calcium activated nucleotidase 1 Novel U 0.002993669709567718 -0.23297376623983868 1.0 8839 +192986 Cyb5d2 cytochrome b5 domain containing 2 Novel U 0.0029935919293722266 -0.2329745718845467 1.0 8840 +18598 Pdha2 pyruvate dehydrogenase E1 alpha 2 Novel N 0.0029925713117126746 -0.23298514340871332 1.0 8841 +227526 Cdnf cerebral dopamine neurotrophic factor Novel U 0.002992520889300195 -0.23298566568240425 1.0 8842 +52463 Tet1 tet methylcytosine dioxygenase 1 Novel N 0.002992473373502387 -0.23298615784947593 1.0 8843 +269254 Setx senataxin Novel U 0.002989727592447489 -0.2330145985593799 1.0 8844 +286942 Kif19a kinesin family member 19A Novel U 0.0029895337384667304 -0.23301660649253997 1.0 8845 +98193 Dcaf8 DDB1 and CUL4 associated factor 8 Novel N 0.002989299722492826 -0.23301903042230482 1.0 8846 +67213 Cmtm6 CKLF-like MARVEL transmembrane domain containing 6 Novel U 0.0029886815655753313 -0.2330254332713354 1.0 8847 +434325 Tmem221 transmembrane protein 221 Novel U 0.0029872804892705327 -0.2330399455736426 1.0 8848 +12162 Bmp7 bone morphogenetic protein 7 Novel U 0.002985769662680491 -0.23305559466579653 1.0 8849 +239436 Slc30a8 solute carrier family 30 (zinc transporter), member 8 Novel U 0.002984710193329253 -0.23306656861450845 1.0 8850 +66175 Mustn1 musculoskeletal, embryonic nuclear protein 1 Novel U 0.0029843928138576607 -0.23306985602064192 1.0 8851 +74915 Atp6v1e2 ATPase, H+ transporting, lysosomal V1 subunit E2 Novel U 0.0029834964548655905 -0.23307914047761555 1.0 8852 +636104 Cfap47 cilia and flagella associated protein 47 Novel U 0.0029824929767759785 -0.2330895344706802 1.0 8853 +13024 Ctla2a cytotoxic T lymphocyte-associated protein 2 alpha Novel U 0.0029811563730919224 -0.2331033789677012 1.0 8854 +108143 Taf9 TATA-box binding protein associated factor 9 Novel U 0.0029806461565690286 -0.23310866377367284 1.0 8855 +113857 Vmn1r41 vomeronasal 1 receptor 41 Novel U 0.0029804692288189355 -0.23311049638549214 1.0 8856 +15112 Hao1 hydroxyacid oxidase 1, liver Novel N 0.0029782309018627864 -0.23313368090252287 1.0 8857 +272643 Prss43 serine protease 43 Novel U 0.0029772195713503795 -0.2331441562307247 1.0 8858 +73737 Bbln bublin coiled coil protein Novel N 0.0029771583545695588 -0.23314479031212806 1.0 8859 +71903 Ces2f carboxylesterase 2F Novel U 0.0029758767330871233 -0.23315806530531208 1.0 8860 +73218 Sppl2b signal peptide peptidase like 2B Novel N 0.002972540354239228 -0.23319262340774105 1.0 8861 +12868 Cox8a cytochrome c oxidase subunit 8A Novel U 0.002972284755823345 -0.23319527088773043 1.0 8862 +226757 Wdr26 WD repeat domain 26 Novel U 0.0029717259176941326 -0.23320105931470195 1.0 8863 +74011 Slc25a27 solute carrier family 25, member 27 Novel U 0.0029709924239238045 -0.23320865681906272 1.0 8864 +12816 Col12a1 collagen, type XII, alpha 1 Novel U 0.00297031210746016 -0.23321570351462897 1.0 8865 +207704 Gtpbp10 GTP-binding protein 10 (putative) Novel U 0.002969434397191521 -0.23322479480873837 1.0 8866 +230649 Atpaf1 ATP synthase mitochondrial F1 complex assembly factor 1 Novel U 0.00296884580320996 -0.23323089144585038 1.0 8867 +66556 Drap1 DR1 associated protein 1 Novel N 0.002966385013075814 -0.23325638022916576 1.0 8868 +230779 Serinc2 serine incorporator 2 Novel U 0.002965963393922781 -0.23326074734649285 1.0 8869 +12909 Crcp calcitonin gene-related peptide-receptor component protein Novel N 0.0029655840258329663 -0.23326467682869614 1.0 8870 +15289 Hmgb1 high mobility group box 1 Novel U 0.0029650204988008032 -0.23327051382317032 1.0 8871 +99296 Hrh3 histamine receptor H3 Novel U 0.00296369398198443 -0.2332842538407474 1.0 8872 +58230 Rnf8 ring finger protein 8 Novel U 0.0029631564578874543 -0.23328982149767372 1.0 8873 +28015 Polr2m polymerase (RNA) II (DNA directed) polypeptide M Novel U 0.002962689970819591 -0.2332946533553877 1.0 8874 +329918 Skint9 selection and upkeep of intraepithelial T cells 9 Novel U 0.002962440460403074 -0.2332972377760798 1.0 8875 +13137 Cd55b CD55 molecule, decay accelerating factor for complement B Novel U 0.002960974301642443 -0.23331242420032505 1.0 8876 +223696 Tomm22 translocase of outer mitochondrial membrane 22 Novel U 0.002960912109729258 -0.23331306838211738 1.0 8877 +51902 Rnf24 ring finger protein 24 Novel U 0.0029598875294255637 -0.23332368095122177 1.0 8878 +268935 Scube3 signal peptide, CUB domain, EGF-like 3 Novel U 0.0029596796158194738 -0.23332583451351885 1.0 8879 +171259 Vmn1r193 vomeronasal 1 receptor 193 Novel U 0.002957768340651447 -0.23334563143887949 1.0 8880 +93714 Pcdhga6 protocadherin gamma subfamily A, 6 Novel U 0.0029568622793889744 -0.23335501639165102 1.0 8881 +171262 Vmn1r70 vomeronasal 1 receptor 70 Novel U 0.0029567143921812792 -0.2333565482024868 1.0 8882 +18509 Pax7 paired box 7 Novel U 0.002955941380162232 -0.2333645550355687 1.0 8883 +84113 Ptov1 prostate tumor over expressed gene 1 Novel U 0.0029558803171688274 -0.23336518752404703 1.0 8884 +12362 Casp1 caspase 1 Novel U 0.0029558599954923447 -0.233365398015304 1.0 8885 +100042591 Vmn2r31 vomeronasal 2, receptor 31 Novel U 0.002955206097943729 -0.23337217106461686 1.0 8886 +234582 Ccdc102a coiled-coil domain containing 102A Novel U 0.002954299894201595 -0.233381557493188 1.0 8887 +102436 Lars2 leucyl-tRNA synthetase, mitochondrial Novel U 0.0029542860477389746 -0.23338170091439264 1.0 8888 +74315 Rnf145 ring finger protein 145 Novel U 0.0029534735590712375 -0.23339011664530396 1.0 8889 +100043067 Vmn1r158 vomeronasal 1 receptor 158 Novel U 0.0029523057758872894 -0.2334022125051345 1.0 8890 +24136 Zeb2 zinc finger E-box binding homeobox 2 Novel U 0.00294999149374549 -0.23342618376348132 1.0 8891 +73353 Actrt2 actin-related protein T2 Novel U 0.0029492488765143474 -0.23343387576834926 1.0 8892 +353156 Egfl7 EGF-like domain 7 Novel U 0.002948804514651424 -0.23343847845391782 1.0 8893 +66521 Rwdd1 RWD domain containing 1 Novel U 0.0029487442012032477 -0.23343910317863134 1.0 8894 +17695 Msmb beta-microseminoprotein Novel U 0.002948307535267052 -0.23344362615004383 1.0 8895 +27176 Rpl7a ribosomal protein L7A Novel N 0.0029474584583663137 -0.23345242086066978 1.0 8896 +258751 Or52ae7 olfactory receptor family 52 subfamily AE member 7 Novel U 0.0029451311400363785 -0.23347652714742478 1.0 8897 +67382 Brd3 bromodomain containing 3 Novel N 0.002944604058384288 -0.23348198664185027 1.0 8898 +94184 Pdxdc1 pyridoxal-dependent decarboxylase domain containing 1 Novel U 0.002944366125938414 -0.23348445113830302 1.0 8899 +57272 Or4c3d olfactory receptor family 4 subfamily C member 3D Novel U 0.0029438610094284115 -0.2334896831185088 1.0 8900 +667961 Speer1f spermatogenesis associated glutamate (E)-rich protein 1F Novel U 0.002942670869070356 -0.2335020105532138 1.0 8901 +673676 Gm9602 predicted gene 9602 Novel U 0.0029423982443088784 -0.23350483439153114 1.0 8902 +353242 Mrpl21 mitochondrial ribosomal protein L21 Novel U 0.0029421628405262423 -0.2335072726961732 1.0 8903 +72320 Kifbp kinesin family binding protein Novel U 0.0029398156429035855 -0.2335315848919887 1.0 8904 +14056 Ezh2 enhancer of zeste 2 polycomb repressive complex 2 subunit Novel U 0.002939657082719738 -0.23353322725316059 1.0 8905 +30942 Hnf4g hepatocyte nuclear factor 4, gamma Novel N 0.002939517752937017 -0.2335346704264698 1.0 8906 +18611 Pea15a proliferation and apoptosis adaptor protein 15A Novel U 0.0029393938329465024 -0.2335359539856579 1.0 8907 +70598 Filip1 filamin A interacting protein 1 Novel U 0.0029390245650913137 -0.23353977884996294 1.0 8908 +12748 Clk2 CDC-like kinase 2 Novel N 0.002938582361497315 -0.23354435918025288 1.0 8909 +100312485 Vmn1r221 vomeronasal 1 receptor 221 Novel U 0.0029379490904588423 -0.23355091858085175 1.0 8910 +14732 Gpam glycerol-3-phosphate acyltransferase, mitochondrial Novel U 0.0029379097944409144 -0.23355132560771363 1.0 8911 +74360 Cep57 centrosomal protein 57 Novel U 0.0029374960011849306 -0.2335556116646564 1.0 8912 +624245 Speer4e1 spermatogenesis associated glutamate (E)-rich protein 4E1 Novel U 0.0029371718975549424 -0.2335589687194015 1.0 8913 +105245684 Gm3012 predicted gene 3012 Novel U 0.002935175189846656 -0.23357965055220567 1.0 8914 +257935 Or4k41 olfactory receptor family 4 subfamily K member 41 Novel U 0.0029346132661386163 -0.23358547093950133 1.0 8915 +68544 Trir telomerase RNA component interacting RNase Novel N 0.0029339557314373597 -0.23359228166232165 1.0 8916 +75526 Eppin epididymal peptidase inhibitor Novel U 0.0029335115706225897 -0.23359688226544004 1.0 8917 +100861755 Gm21190 predicted gene, 21190 Novel U 0.0029317393168749465 -0.23361523921149843 1.0 8918 +74347 Meak7 MTOR associated protein, eak-7 homolog Novel U 0.0029315000348410923 -0.23361771768693912 1.0 8919 +170787 Hdac10 histone deacetylase 10 Novel U 0.002931254720247524 -0.23362025864743502 1.0 8920 +29865 Cabp5 calcium binding protein 5 Novel U 0.002931211485062979 -0.23362070647605526 1.0 8921 +67417 Ears2 glutamyl-tRNA synthetase 2, mitochondrial Novel U 0.002930795263070669 -0.23362501768976904 1.0 8922 +241636 Tgm6 transglutaminase 6 Novel N 0.0029304511551697626 -0.2336285819480947 1.0 8923 +213773 Tbl3 transducin (beta)-like 3 Novel N 0.0029296894980627955 -0.23363647116737052 1.0 8924 +68051 Nutf2 nuclear transport factor 2 Novel U 0.0029296557448024395 -0.23363682078253173 1.0 8925 +17229 Tpsb2 tryptase beta 2 Novel U 0.0029287971478508747 -0.23364571410153118 1.0 8926 +208449 Sgms1 sphingomyelin synthase 1 Novel U 0.002927316767971553 -0.23366104782765632 1.0 8927 +225471 Ticam2 TIR domain containing adaptor molecule 2 Novel U 0.002925788992405771 -0.23367687247674376 1.0 8928 +214058 Megf11 multiple EGF-like-domains 11 Novel U 0.002924943841608254 -0.23368562652092162 1.0 8929 +70998 Phf6 PHD finger protein 6 Novel U 0.0029248043385240834 -0.23368707148928153 1.0 8930 +234421 Cib3 calcium and integrin binding family member 3 Novel U 0.002924415446070387 -0.2336910996245328 1.0 8931 +27103 Eif2ak4 eukaryotic translation initiation factor 2 alpha kinase 4 Novel U 0.0029243803458201224 -0.23369146319177114 1.0 8932 +64685 Nmi N-myc (and STAT) interactor Novel U 0.0029235316583754905 -0.23370025386842355 1.0 8933 +53416 Stk39 serine/threonine kinase 39 Novel U 0.002923247857178743 -0.23370319347189003 1.0 8934 +230904 Fbxo2 F-box protein 2 Novel N 0.0029231340631846116 -0.23370437214634043 1.0 8935 +21778 Tex9 testis expressed gene 9 Novel U 0.002920410370165866 -0.23373258406909203 1.0 8936 +71941 Cars2 cysteinyl-tRNA synthetase 2, mitochondrial Novel N 0.002919016479366577 -0.23374702194416935 1.0 8937 +74563 Rasgef1c RasGEF domain family, member 1C Novel U 0.0029185625054968687 -0.2337517241905882 1.0 8938 +279706 Nup62cl nucleoporin 62 C-terminal like Novel U 0.0029177729100548612 -0.23375990279422 1.0 8939 +17121 Mxd3 Max dimerization protein 3 Novel U 0.002913166638203622 -0.2338076144066321 1.0 8940 +93712 Pcdhga4 protocadherin gamma subfamily A, 4 Novel U 0.002912668227090789 -0.23381277693255445 1.0 8941 +109093 Rars2 arginyl-tRNA synthetase 2, mitochondrial Novel U 0.0029114804496324733 -0.23382507989242157 1.0 8942 +12892 Cpox coproporphyrinogen oxidase Novel U 0.002911355059323891 -0.2338263786811159 1.0 8943 +15117 Has2 hyaluronan synthase 2 Novel U 0.002911335203980506 -0.23382658434210996 1.0 8944 +24000 Ptpn21 protein tyrosine phosphatase, non-receptor type 21 Novel N 0.002911315556716065 -0.2338267878478292 1.0 8945 +269701 Cfap251 cilia and flagella associated protein 251 Novel N 0.002909297447902593 -0.23384769135257738 1.0 8946 +238871 Pde4d phosphodiesterase 4D, cAMP specific Novel U 0.0029087690490341355 -0.23385316449068666 1.0 8947 +67857 Ppp6c protein phosphatase 6, catalytic subunit Novel U 0.0029084333549224376 -0.23385664159926028 1.0 8948 +269966 Nup98 nucleoporin 98 Novel U 0.0029082376920828495 -0.23385866826852067 1.0 8949 +74467 Pus10 pseudouridylate synthase 10 Novel N 0.002907925252691283 -0.23386190450546762 1.0 8950 +195040 Tmem199 transmembrane protein 199 Novel U 0.002907126447258457 -0.23387017850588152 1.0 8951 +19693 Reg2 regenerating islet-derived 2 Novel U 0.0029068685367805466 -0.23387284993413338 1.0 8952 +100040671 Gm2897 predicted gene 2897 Novel U 0.0029051419158293646 -0.23389073421718612 1.0 8953 +50883 Chek2 checkpoint kinase 2 Novel U 0.0029050677918988446 -0.23389150199042172 1.0 8954 +71371 Arid5b AT-rich interaction domain 5B Novel U 0.00290506772898303 -0.23389150264210168 1.0 8955 +11941 Atp2b2 ATPase, Ca++ transporting, plasma membrane 2 Novel N 0.00290472493088908 -0.23389505333348995 1.0 8956 +239530 Gpr20 G protein-coupled receptor 20 Novel U 0.0029030407871775206 -0.23391249763869104 1.0 8957 +67579 Cpeb4 cytoplasmic polyadenylation element binding protein 4 Novel U 0.0029007220785689848 -0.23393651474623478 1.0 8958 +224109 Nrros negative regulator of reactive oxygen species Novel N 0.002900547637035369 -0.23393832160590555 1.0 8959 +52685 Cd300lg CD300 molecule like family member G Novel U 0.002899754437795337 -0.23394653753755879 1.0 8960 +627607 Lrrc74a leucine rich repeat containing 74A Novel U 0.0028977143220635755 -0.23396766898924315 1.0 8961 +225852 Gm550 predicted gene 550 Novel U 0.0028973289373875194 -0.23397166079104892 1.0 8962 +114141 Cldn16 claudin 16 Novel N 0.0028966196073785502 -0.23397900800796387 1.0 8963 +216161 Sbno2 strawberry notch 2 Novel U 0.0028962887741219904 -0.23398243476795974 1.0 8964 +545728 Speer1e spermatogenesis associated glutamate (E)-rich protein 1E Novel U 0.0028962311144834687 -0.2339830320046001 1.0 8965 +28028 Mrpl50 mitochondrial ribosomal protein L50 Novel U 0.0028954687500237068 -0.2339909285506129 1.0 8966 +70380 Mospd1 motile sperm domain containing 1 Novel U 0.002895342914459995 -0.23399223195124522 1.0 8967 +30932 Zfp330 zinc finger protein 330 Novel U 0.002895104087558837 -0.2339947057124364 1.0 8968 +13136 Cd55 CD55 molecule, decay accelerating factor for complement Novel U 0.0028947456355992926 -0.23399841854604989 1.0 8969 +228770 Rspo4 R-spondin 4 Novel U 0.002893902845294572 -0.23400714814032098 1.0 8970 +67144 Lrrc40 leucine rich repeat containing 40 Novel U 0.00289389040020081 -0.23400727704619304 1.0 8971 +80879 Slc16a3 solute carrier family 16 (monocarboxylic acid transporters), member 3 Novel N 0.0028937973109741098 -0.23400824126134304 1.0 8972 +19272 Ptprk protein tyrosine phosphatase receptor type K Novel U 0.00289227790685355 -0.2340239791992761 1.0 8973 +13239 Defa5 defensin, alpha, 5 Novel U 0.0028921441544813927 -0.23402536460195003 1.0 8974 +432508 Cpsf6 cleavage and polyadenylation specific factor 6 Novel U 0.0028912520892778824 -0.2340346045840029 1.0 8975 +76651 1700122O11Rik RIKEN cDNA 1700122O11 gene Novel U 0.0028905193852944004 -0.23404219390777747 1.0 8976 +72098 Tmem68 transmembrane protein 68 Novel U 0.0028890310197338285 -0.23405761034932648 1.0 8977 +118453 Mmp28 matrix metallopeptidase 28 (epilysin) Novel U 0.002888641231706131 -0.2340616477609038 1.0 8978 +18861 Pms2 PMS1 homolog2, mismatch repair system component Novel U 0.002887970757837514 -0.23406859250719428 1.0 8979 +171239 Vmn1r76 vomeronasal 1 receptor 76 Novel U 0.0028875924935880455 -0.2340725105558555 1.0 8980 +105734727 Gm27021 predicted gene, 27021 Novel U 0.002887440512879891 -0.23407408476703448 1.0 8981 +223499 Dcaf13 DDB1 and CUL4 associated factor 13 Novel U 0.0028867893737184133 -0.23408082924506401 1.0 8982 +69713 Pin4 peptidyl-prolyl cis/trans isomerase, NIMA-interacting, 4 (parvulin) Novel U 0.0028865341928064744 -0.23408347240056127 1.0 8983 +107753 Lgals2 lectin, galactose-binding, soluble 2 Novel N 0.002886237310902333 -0.23408654749356492 1.0 8984 +140481 Man2a2 mannosidase 2, alpha 2 Novel U 0.002885463069623726 -0.23409456705927692 1.0 8985 +245857 Ssh3 slingshot protein phosphatase 3 Novel U 0.0028844633572064162 -0.23410492204763161 1.0 8986 +66249 Pno1 partner of NOB1 homolog Novel N 0.00288417617044262 -0.23410789671869026 1.0 8987 +71897 Lypd6b LY6/PLAUR domain containing 6B Novel U 0.002884161160805989 -0.23410805218801306 1.0 8988 +78895 Pus7l pseudouridylate synthase 7-like Novel N 0.002884104818088778 -0.23410863578402577 1.0 8989 +67994 Mrps11 mitochondrial ribosomal protein S11 Novel U 0.002883360141299563 -0.23411634912172852 1.0 8990 +625580 Vmn2r48 vomeronasal 2, receptor 48 Novel U 0.002883148214255441 -0.23411854425508483 1.0 8991 +12292 Cacna1s calcium channel, voltage-dependent, L type, alpha 1S subunit Novel U 0.002882399035040393 -0.23412630422876637 1.0 8992 +22283 Ush2a usherin Novel U 0.0028810854590066996 -0.23413991020614186 1.0 8993 +545732 Speer1m spermatogenesis associated glutamate (E)-rich protein 1M Novel U 0.0028800183783560802 -0.2341509629924426 1.0 8994 +100041264 Pramel46 PRAME like 46 Novel U 0.002878765729718764 -0.23416393788584933 1.0 8995 +242291 Bpnt2 3'(2'), 5'-bisphosphate nucleotidase 2 Novel U 0.0028777415430110507 -0.23417454637809945 1.0 8996 +53601 Pcdh12 protocadherin 12 Novel N 0.0028764570691857884 -0.23418785091575675 1.0 8997 +26407 Map3k4 mitogen-activated protein kinase kinase kinase 4 Novel U 0.0028755640373682692 -0.2341971009099658 1.0 8998 +105239 Rnf44 ring finger protein 44 Novel U 0.0028749156024733425 -0.23420381737729126 1.0 8999 +102791 Tcta T cell leukemia translocation altered gene Novel U 0.0028735144225182784 -0.23421833075320453 1.0 9000 +547109 Trim43a tripartite motif-containing 43A Novel U 0.0028733139159879515 -0.23422040759325435 1.0 9001 +13797 Emx2 empty spiracles homeobox 2 Novel N 0.0028715016847975007 -0.23423917862435112 1.0 9002 +22040 Trex1 three prime repair exonuclease 1 Novel U 0.0028708315071107873 -0.2342461203027992 1.0 9003 +319433 Serpine3 serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 3 Novel U 0.002869580810768276 -0.23425907497440052 1.0 9004 +100043125 Cd300ld5 CD300 molecule like family member D5 Novel U 0.002868042137562755 -0.23427501250088217 1.0 9005 +217143 Gpr179 G protein-coupled receptor 179 Novel U 0.0028676684722304885 -0.2342788829141102 1.0 9006 +12288 Cacna1c calcium channel, voltage-dependent, L type, alpha 1C subunit Novel U 0.002867135498253869 -0.23428440344103943 1.0 9007 +12824 Col2a1 collagen, type II, alpha 1 Novel U 0.002866848877077841 -0.23428737225375856 1.0 9008 +68972 Tatdn3 TatD DNase domain containing 3 Novel U 0.0028663999452388333 -0.23429202227498916 1.0 9009 +628438 Hspe1-rs1 heat shock protein 1 (chaperonin 10), related sequence 1 Novel U 0.0028657939386035245 -0.23429829927179632 1.0 9010 +76051 Ganc glucosidase, alpha; neutral C Novel U 0.0028657710002301944 -0.2342985368667132 1.0 9011 +67222 Srfbp1 serum response factor binding protein 1 Novel U 0.0028654008309520855 -0.2343023710679272 1.0 9012 +546157 Prr23a4 proline rich 23A, member 4 Novel U 0.002864342801731879 -0.23431333009980926 1.0 9013 +52705 Krr1 KRR1, small subunit (SSU) processome component, homolog (yeast) Novel N 0.002862955680120127 -0.23432769785986463 1.0 9014 +66586 Crls1 cardiolipin synthase 1 Novel U 0.00286156051313675 -0.23434214895361477 1.0 9015 +241589 D430041D05Rik RIKEN cDNA D430041D05 gene Novel U 0.0028596592932582485 -0.2343618417266171 1.0 9016 +17391 Mmp24 matrix metallopeptidase 24 Novel U 0.0028593224682175932 -0.23436533054931563 1.0 9017 +67310 Prl8a9 prolactin family8, subfamily a, member 9 Novel U 0.002857782824433458 -0.23438127812901866 1.0 9018 +623503 Prlh prolactin releasing hormone Novel U 0.0028573983470289973 -0.23438526053333505 1.0 9019 +75746 Morc4 microrchidia 4 Novel U 0.0028569829788729567 -0.23438956290304083 1.0 9020 +14603 Cblif cobalamin binding intrinsic factor Novel U 0.0028554825181422378 -0.23440510462596464 1.0 9021 +98221 Eif3m eukaryotic translation initiation factor 3, subunit M Novel N 0.0028533105219294263 -0.23442760209133642 1.0 9022 +14824 Grn granulin Novel U 0.0028518572899746517 -0.23444265462015154 1.0 9023 +100040031 Gm20823 predicted gene, 20823 Novel U 0.002851514852271023 -0.23444620157862867 1.0 9024 +217212 Pyy peptide YY Novel U 0.002850843244054734 -0.23445315807445508 1.0 9025 +17883 Myh3 myosin, heavy polypeptide 3, skeletal muscle, embryonic Novel U 0.0028506867470510294 -0.23445477906527487 1.0 9026 +100039324 Gm10147 predicted gene 10147 Novel U 0.0028498393636742386 -0.23446355623443543 1.0 9027 +81907 Tmem108 transmembrane protein 108 Novel U 0.002849777687731247 -0.23446419507182545 1.0 9028 +332713 Fndc11 fibronectin type III domain containing 11 Novel U 0.0028496533444454537 -0.23446548301549214 1.0 9029 +12560 Cdh3 cadherin 3 Novel U 0.002849453845074502 -0.2344675494234183 1.0 9030 +78935 Saal1 serum amyloid A-like 1 Novel N 0.0028490160503625754 -0.2344720840866527 1.0 9031 +76477 Pcolce2 procollagen C-endopeptidase enhancer 2 Novel U 0.002848765349793291 -0.234474680834908 1.0 9032 +246154 Vasn vasorin Novel U 0.002848560249090501 -0.23447680526124517 1.0 9033 +20957 Sycp1 synaptonemal complex protein 1 Novel U 0.0028485593469166825 -0.23447681460593192 1.0 9034 +14460 Gata1 GATA binding protein 1 Novel U 0.002847900723251519 -0.23448363660820462 1.0 9035 +56289 Rassf1 Ras association (RalGDS/AF-6) domain family member 1 Novel N 0.0028474660789101465 -0.2344881386400044 1.0 9036 +11567 Avil advillin Novel U 0.0028417298373362102 -0.23454755444165842 1.0 9037 +258908 Or7g33 olfactory receptor family 7 subfamily G member 33 Novel U 0.0028415920693890214 -0.23454898143752653 1.0 9038 +71310 Tbc1d9 TBC1 domain family, member 9 Novel U 0.0028396090101834083 -0.2345695218995887 1.0 9039 +72162 Dhx36 DEAH-box helicase 36 Novel U 0.0028395221144446874 -0.23457042196279385 1.0 9040 +381677 Vgf VGF nerve growth factor inducible Novel U 0.002839516521478521 -0.23457047989455354 1.0 9041 +27421 Abcc6 ATP-binding cassette, sub-family C member 6 Novel U 0.002838193254637669 -0.23458418624899105 1.0 9042 +22067 Trpc5 transient receptor potential cation channel, subfamily C, member 5 Novel N 0.0028380774165379158 -0.2345853860962203 1.0 9043 +22169 Cmpk2 cytidine/uridine monophosphate kinase 2 Novel U 0.002837191922445736 -0.23459455801491805 1.0 9044 +72148 Tdrp testis development related protein Novel N 0.0028366565145814043 -0.2346001037519762 1.0 9045 +103172 Chchd10 coiled-coil-helix-coiled-coil-helix domain containing 10 Novel U 0.0028364577284619216 -0.2346021627720671 1.0 9046 +67480 Cwc25 CWC25 spliceosome-associated protein Novel N 0.0028355980207925863 -0.23461106759584466 1.0 9047 +245884 Garin1a golgi associated RAB2 interactor 1A Novel U 0.002834989618316314 -0.23461736940869377 1.0 9048 +382090 Cep162 centrosomal protein 162 Novel N 0.0028337573655005536 -0.2346301330428513 1.0 9049 +74238 Mterf2 mitochondrial transcription termination factor 2 Novel U 0.0028329099077736525 -0.23463891098212786 1.0 9050 +16795 Large1 LARGE xylosyl- and glucuronyltransferase 1 Novel U 0.0028322978694911155 -0.23464525045453868 1.0 9051 +12836 Col7a1 collagen, type VII, alpha 1 Novel U 0.0028318583024469195 -0.2346498034755325 1.0 9052 +14171 Fgf17 fibroblast growth factor 17 Novel N 0.0028315688849285562 -0.2346528012526736 1.0 9053 +70082 Lysmd2 LysM, putative peptidoglycan-binding, domain containing 2 Novel U 0.002830395499141708 -0.2346649551440808 1.0 9054 +217995 Heatr1 HEAT repeat containing 1 Novel N 0.0028300110409697353 -0.23466893734918773 1.0 9055 +627743 Vmn2r105 vomeronasal 2, receptor 105 Novel U 0.002829487155629688 -0.23467436373631811 1.0 9056 +381510 Dpy19l4 dpy-19 like 4 Novel U 0.0028294354723179187 -0.23467489907036243 1.0 9057 +79566 Sh3bp5l SH3 binding domain protein 5 like Novel U 0.002828806793369903 -0.23468141090623926 1.0 9058 +11639 Ak4 adenylate kinase 4 Novel U 0.002828531907743476 -0.23468425816252142 1.0 9059 +328232 Gfod1 glucose-fructose oxidoreductase domain containing 1 Novel U 0.002828131716154426 -0.23468840333384522 1.0 9060 +94112 Med15 mediator complex subunit 15 Novel U 0.0028275608765267724 -0.2346943160719431 1.0 9061 +80912 Pum1 pumilio RNA-binding family member 1 Novel U 0.002825491763598092 -0.23471574787563998 1.0 9062 +20183 Rxrg retinoid X receptor gamma Novel U 0.0028249195664082215 -0.23472167467532268 1.0 9063 +258466 Or4c126 olfactory receptor family 4 subfamily C member 126 Novel U 0.0028236230716456793 -0.23473510372545311 1.0 9064 +66805 Tspan1 tetraspanin 1 Novel N 0.002822675231506207 -0.2347449214224592 1.0 9065 +22073 Prss3 serine protease 3 Novel U 0.002821636380353107 -0.23475568180855264 1.0 9066 +14378 G6pc2 glucose-6-phosphatase, catalytic, 2 Novel U 0.00282041995331126 -0.23476828151986417 1.0 9067 +110877 Slc18a1 solute carrier family 18 (vesicular monoamine), member 1 Novel U 0.0028203947718769963 -0.23476854234833247 1.0 9068 +66153 Fbxo36 F-box protein 36 Novel U 0.0028201324371398802 -0.23477125960291576 1.0 9069 +66797 Cntnap2 contactin associated protein-like 2 Novel U 0.0028200142410550275 -0.23477248387407715 1.0 9070 +14797 Tle5 TLE family member 5, transcriptional modulator Novel U 0.002819565696667062 -0.2347771298821026 1.0 9071 +382231 8030474K03Rik RIKEN cDNA 8030474K03 gene Novel U 0.0028188909374784283 -0.23478411901559695 1.0 9072 +66736 Emc2 ER membrane protein complex subunit 2 Novel U 0.002818502721943859 -0.23478814013934213 1.0 9073 +242653 Cldn19 claudin 19 Novel U 0.0028165513512184424 -0.23480835237316813 1.0 9074 +18419 Otog otogelin Novel N 0.002816454617235585 -0.23480935434058262 1.0 9075 +79263 Trim39 tripartite motif-containing 39 Novel U 0.0028138502189658516 -0.23483633061224554 1.0 9076 +100042823 Rpl9-ps6 ribosomal protein L9, pseudogene 6 Novel U 0.0028129335600542136 -0.23484582533511875 1.0 9077 +330863 Trim67 tripartite motif-containing 67 Novel U 0.002810824023097537 -0.2348676758495687 1.0 9078 +68032 Emc4 ER membrane protein complex subunit 4 Novel U 0.0028092216450182053 -0.23488427322903907 1.0 9079 +11565 Adss1 adenylosuccinate synthase 1 Novel N 0.002807581264350813 -0.23490126423806734 1.0 9080 +11979 Atp7b ATPase, Cu++ transporting, beta polypeptide Novel U 0.0028062711106292214 -0.23491483476724662 1.0 9081 +381590 Pramel32 PRAME like 32 Novel U 0.002805044509206216 -0.23492753986446374 1.0 9082 +16777 Lamb1 laminin B1 Novel N 0.002804570995008922 -0.23493244450895337 1.0 9083 +14936 Gys1 glycogen synthase 1, muscle Novel N 0.0028045357352507274 -0.23493280972836963 1.0 9084 +14804 Grid2 glutamate receptor, ionotropic, delta 2 Novel U 0.0028017440627399826 -0.23496172578046465 1.0 9085 +14311 Cidec cell death-inducing DFFA-like effector c Novel U 0.0027994392989352636 -0.23498559844818892 1.0 9086 +26432 Plod2 procollagen lysine, 2-oxoglutarate 5-dioxygenase 2 Novel U 0.0027993415943013663 -0.23498661046957495 1.0 9087 +69585 Hjv hemojuvelin BMP co-receptor Novel U 0.002798047545295223 -0.235000014186641 1.0 9088 +69046 Isca1 iron-sulfur cluster assembly 1 Novel U 0.0027977706772000766 -0.23500288197726898 1.0 9089 +66515 Cul7 cullin 7 Novel U 0.002796019444710119 -0.2350210211858313 1.0 9090 +338320 Mia2 MIA SH3 domain ER export factor 2 Novel U 0.002795082269052932 -0.23503072842048042 1.0 9091 +432732 AK157302 cDNA sequence AK157302 Novel U 0.0027948393800775084 -0.23503324425650335 1.0 9092 +15166 Hcn2 hyperpolarization-activated, cyclic nucleotide-gated K+ 2 Novel U 0.0027947788893684174 -0.23503387081727958 1.0 9093 +432582 Ccdc92b coiled-coil domain containing 92B Novel U 0.0027946397736684676 -0.23503531177312648 1.0 9094 +215707 Ccdc92 coiled-coil domain containing 92 Novel U 0.002794281204875625 -0.23503902581689542 1.0 9095 +54601 Foxo4 forkhead box O4 Novel U 0.002793666978256751 -0.23504538795602212 1.0 9096 +100503549 Speer4e2 spermatogenesis associated glutamate (E)-rich protein 4E2 Novel U 0.002793259738274812 -0.23504960613436773 1.0 9097 +280635 Emilin3 elastin microfibril interfacer 3 Novel U 0.0027931840244809904 -0.2350503903753552 1.0 9098 +113863 Vmn1r15 vomeronasal 1 receptor 15 Novel U 0.0027930904682505037 -0.2350513594277151 1.0 9099 +27426 Nagpa N-acetylglucosamine-1-phosphodiester alpha-N-acetylglucosaminidase Novel U 0.002792862113002736 -0.23505372472386468 1.0 9100 +69274 Ctdspl CTD small phosphatase like Novel U 0.0027927586692719935 -0.23505479619062716 1.0 9101 +108705 Pttg1ip pituitary tumor-transforming 1 interacting protein Novel U 0.0027925713196521634 -0.2350567367518306 1.0 9102 +80719 Igsf6 immunoglobulin superfamily, member 6 Novel N 0.002791068775265584 -0.2350723000571933 1.0 9103 +620631 Ift70a2 intraflagellar transport 70A2 Novel U 0.0027910276388882762 -0.23507272614643715 1.0 9104 +66878 Riok3 RIO kinase 3 Novel U 0.002787423056154599 -0.23511006229589831 1.0 9105 +30952 Cngb3 cyclic nucleotide gated channel beta 3 Novel N 0.0027869248714684322 -0.2351152224765007 1.0 9106 +74387 Epcip exosomal polycystin 1 interacting protein Novel U 0.002785979683659436 -0.23512501270075492 1.0 9107 +15111 Hand2 heart and neural crest derivatives expressed 2 Novel U 0.0027854254985653438 -0.23513075293174168 1.0 9108 +78802 Ift70a1 intraflagellar transport 70A1 Novel U 0.0027847543379796906 -0.23513770479102464 1.0 9109 +16624 Klk1b8 kallikrein 1-related peptidase b8 Novel U 0.0027845885830571947 -0.23513942167506297 1.0 9110 +17865 Mybl2 myeloblastosis oncogene-like 2 Novel N 0.0027823937523426255 -0.23516215565945328 1.0 9111 +18952 Septin4 septin 4 Novel U 0.002782380058608421 -0.23516229749870202 1.0 9112 +67951 Tubb6 tubulin, beta 6 class V Novel N 0.0027813687411997407 -0.23517277269117587 1.0 9113 +55936 Ctps2 cytidine 5'-triphosphate synthase 2 Novel N 0.0027805982050532188 -0.23518075387925153 1.0 9114 +13607 Eda ectodysplasin-A Novel U 0.002778924005832499 -0.2351980951797434 1.0 9115 +235626 Setd2 SET domain containing 2 Novel U 0.002777935968272662 -0.2352083292403082 1.0 9116 +74653 Pomk protein-O-mannose kinase Novel N 0.002777864870597105 -0.23520906566769442 1.0 9117 +93716 Pcdhga8 protocadherin gamma subfamily A, 8 Novel U 0.002777170827312703 -0.2352162545452188 1.0 9118 +11689 Alox5 arachidonate 5-lipoxygenase Novel U 0.0027766636874424046 -0.23522150748332404 1.0 9119 +74430 Cfap20dc CFAP20 domain containing Novel U 0.002776401937704435 -0.23522421867850535 1.0 9120 +665687 Gm20777 predicted gene, 20777 Novel U 0.002775430706981181 -0.23523427865440935 1.0 9121 +71781 Slc16a14 solute carrier family 16 (monocarboxylic acid transporters), member 14 Novel U 0.002774496751824002 -0.23524395253122526 1.0 9122 +68512 Tomm5 translocase of outer mitochondrial membrane 5 Novel U 0.002774361078704501 -0.23524535782893707 1.0 9123 +11363 Acadl acyl-Coenzyme A dehydrogenase, long-chain Novel U 0.0027737378214368735 -0.23525181350722668 1.0 9124 +100126824 Sco2 SCO2 cytochrome c oxidase assembly protein Novel N 0.002770303377102111 -0.23528738736874485 1.0 9125 +53975 Ddx20 DEAD box helicase 20 Novel N 0.0027683425713472746 -0.23530769733029544 1.0 9126 +219151 Scara3 scavenger receptor class A, member 3 Novel U 0.0027680073028757816 -0.2353111700301018 1.0 9127 +93694 Clec2d C-type lectin domain family 2, member d Novel U 0.0027678301337805203 -0.23531300514176642 1.0 9128 +11864 Arnt2 aryl hydrocarbon receptor nuclear translocator 2 Novel U 0.0027670851987574097 -0.23532072115424738 1.0 9129 +67120 Ttc14 tetratricopeptide repeat domain 14 Novel U 0.002766347945261217 -0.23532835760172505 1.0 9130 +101055754 Gm2974 predicted gene 2974 Novel U 0.0027661104277384926 -0.23533081780041745 1.0 9131 +100861615 Gm3411 predicted gene 3411 Novel U 0.0027659919838251795 -0.2353320446385779 1.0 9132 +22367 Vrk1 vaccinia related kinase 1 Novel U 0.002765908798969339 -0.23533290626458014 1.0 9133 +56501 Elf4 E74 like ETS transcription factor 4 Novel U 0.002765348023335351 -0.2353387147601625 1.0 9134 +69035 Zdhhc3 zinc finger, DHHC domain containing 3 Novel U 0.0027646002945147766 -0.23534645971070575 1.0 9135 +74551 Pck2 phosphoenolpyruvate carboxykinase 2 (mitochondrial) Novel U 0.002764347410946557 -0.23534907907039224 1.0 9136 +269704 Zfp664 zinc finger protein 664 Novel U 0.0027619180958344033 -0.23537424183646452 1.0 9137 +16770 Lalba lactalbumin, alpha Novel N 0.0027618348324468522 -0.23537510427589564 1.0 9138 +70478 Mipep mitochondrial intermediate peptidase Novel U 0.0027614029257731786 -0.23537957795102335 1.0 9139 +12265 Ciita class II transactivator Novel U 0.0027599331829896464 -0.23539480149846 1.0 9140 +100041223 Gm20865 predicted gene, 20865 Novel U 0.0027586195561254017 -0.2354084080023367 1.0 9141 +258805 Or4d10c olfactory receptor family 4 subfamily D member 10C Novel U 0.0027567651855256213 -0.23542761551205008 1.0 9142 +234577 Cpne2 copine II Novel U 0.0027566412192968227 -0.2354288995501728 1.0 9143 +16891 Lipg lipase, endothelial Novel U 0.002756187040332893 -0.23543360392095086 1.0 9144 +382793 Mtx3 metaxin 3 Novel N 0.002755863801784455 -0.23543695201520967 1.0 9145 +11470 Actl7a actin-like 7a Novel N 0.0027550457887272543 -0.23544542496756543 1.0 9146 +22635 Zan zonadhesin Novel U 0.0027542138119189957 -0.2354540425559956 1.0 9147 +16978 Lrrfip1 leucine rich repeat (in FLII) interacting protein 1 Novel U 0.00275405027593629 -0.23545573645632853 1.0 9148 +102060 Gadd45gip1 growth arrest and DNA-damage-inducible, gamma interacting protein 1 Novel U 0.0027540310470436755 -0.23545593562856612 1.0 9149 +75616 Smim15 small integral membrane protein 15 Novel U 0.002753855061410063 -0.23545775848197384 1.0 9150 +76366 Mtif3 mitochondrial translational initiation factor 3 Novel U 0.002753759205019298 -0.2354587513593183 1.0 9151 +235854 Mrgpra4 MAS-related GPR, member A4 Novel U 0.0027536048535836896 -0.23546035012641428 1.0 9152 +13714 Elk4 ELK4, member of ETS oncogene family Novel N 0.0027525640849508197 -0.23547113037370013 1.0 9153 +17300 Foxc1 forkhead box C1 Novel U 0.0027524541091869465 -0.2354722694990471 1.0 9154 +14107 Fat1 FAT atypical cadherin 1 Novel N 0.0027506017200201725 -0.2354914564851425 1.0 9155 +67510 Tvp23b trans-golgi network vesicle protein 23B Novel U 0.0027499849436378367 -0.23549784503463533 1.0 9156 +71753 Tmprss6 transmembrane serine protease 6 Novel U 0.0027486560422877895 -0.2355116097511338 1.0 9157 +17720 ND4L NADH dehydrogenase subunit 4L Novel U 0.0027478178266913196 -0.2355202919607272 1.0 9158 +26920 Cntrl centriolin Novel U 0.0027471273106213796 -0.23552744430348013 1.0 9159 +58251 Cep295nl CEP295 N-terminal like Novel U 0.0027467129116984707 -0.23553173663390098 1.0 9160 +72140 Cep89 centrosomal protein 89 Novel N 0.002746657153991163 -0.23553231417040035 1.0 9161 +14399 Gabra6 gamma-aminobutyric acid type A receptor subunit alpha 6 Novel N 0.002743985048898389 -0.2355599917471106 1.0 9162 +74187 Katnb1 katanin p80 (WD40-containing) subunit B 1 Novel U 0.002741727118738957 -0.23558337931347656 1.0 9163 +102641463 Gm17175 predicted gene 17175 Novel U 0.0027417199337190458 -0.23558345373567657 1.0 9164 +76199 Med13l mediator complex subunit 13-like Novel U 0.00273830846723327 -0.2356187895933903 1.0 9165 +11875 Art5 ADP-ribosyltransferase 5 Novel U 0.0027377169255556415 -0.23562491676264133 1.0 9166 +225655 Prelid3a PRELI domain containing 3A Novel N 0.002737614089522276 -0.2356259819348944 1.0 9167 +208177 Phldb2 pleckstrin homology like domain, family B, member 2 Novel U 0.0027374692078302645 -0.23562748261469751 1.0 9168 +57908 Zfp318 zinc finger protein 318 Novel U 0.002737350974533048 -0.23562870727130336 1.0 9169 +71780 Isyna1 myo-inositol 1-phosphate synthase A1 Novel N 0.002737064211612838 -0.23563167755220404 1.0 9170 +100910 Chpf2 chondroitin polymerizing factor 2 Novel N 0.0027358569785577236 -0.2356441820325033 1.0 9171 +116904 Alpk3 alpha-kinase 3 Novel U 0.0027358112623577496 -0.2356446555593998 1.0 9172 +19088 Prkar2b protein kinase, cAMP dependent regulatory, type II beta Novel U 0.002735800784852881 -0.23564476408505078 1.0 9173 +546901 Vmn1r34 vomeronasal 1 receptor 34 Novel U 0.00273568476006746 -0.23564596586596406 1.0 9174 +385643 Kng2 kininogen 2 Novel U 0.002735656044649913 -0.23564626329931507 1.0 9175 +93843 Pnck pregnancy upregulated non-ubiquitously expressed CaM kinase Novel U 0.0027347027823851036 -0.23565613715851713 1.0 9176 +18828 Plscr2 phospholipid scramblase 2 Novel U 0.0027338942883037417 -0.23566451151363407 1.0 9177 +668101 Sirpb1b signal-regulatory protein beta 1B Novel U 0.002732815753509356 -0.2356756829415794 1.0 9178 +67049 Pus3 pseudouridine synthase 3 Novel U 0.002732185941868104 -0.23568220650985552 1.0 9179 +236690 Nyx nyctalopin Novel U 0.002731919895732508 -0.23568496220698223 1.0 9180 +329650 Med12l mediator complex subunit 12-like Novel U 0.0027306634356454025 -0.2356979765792606 1.0 9181 +66440 Cdc26 cell division cycle 26 Novel U 0.002730493354946249 -0.23569973826955132 1.0 9182 +394435 Ugt1a6b UDP glucuronosyltransferase 1 family, polypeptide A6B Novel U 0.00272972228555278 -0.23570772498098133 1.0 9183 +435684 Shf Src homology 2 domain containing F Novel U 0.0027294923494993345 -0.23571010665106418 1.0 9184 +13813 Eomes eomesodermin Novel U 0.002729466291111772 -0.2357103765629859 1.0 9185 +78928 Pigt phosphatidylinositol glycan anchor biosynthesis, class T Novel U 0.002729450178908021 -0.2357105434526627 1.0 9186 +66408 Aptx aprataxin Novel N 0.0027290629551955533 -0.23571455430314717 1.0 9187 +66932 Rexo1 REX1, RNA exonuclease 1 Novel U 0.002727774492176085 -0.2357279001607469 1.0 9188 +67157 Cfap418 cilia and flagella associated protein 418 Novel N 0.002727560847485057 -0.23573011308543335 1.0 9189 +53610 Nono non-POU-domain-containing, octamer binding protein Novel U 0.0027268625938897144 -0.23573734557322007 1.0 9190 +72795 Ttc19 tetratricopeptide repeat domain 19 Novel U 0.002724268728412833 -0.23576421274656087 1.0 9191 +268958 Capn11 calpain 11 Novel U 0.002724034344710088 -0.23576664048524895 1.0 9192 +67260 Cers4 ceramide synthase 4 Novel N 0.002723624094284943 -0.23577088984566635 1.0 9193 +100040244 Styx-ps serine/threonine/tyrosine interacting protein, pseudogene Novel U 0.0027228437746039907 -0.23577897237127002 1.0 9194 +239659 C1ql4 complement component 1, q subcomponent-like 4 Novel U 0.002720924558964638 -0.23579885154377161 1.0 9195 +329360 Rnf224 ring finger protein 224 Novel U 0.002720258968909215 -0.2358057457036856 1.0 9196 +11429 Aco2 aconitase 2, mitochondrial Novel N 0.0027199557308183434 -0.23580888663386243 1.0 9197 +59024 Med12 mediator complex subunit 12 Novel U 0.002719879149797752 -0.23580967985755624 1.0 9198 +108168186 Gm7876 predicted gene 7876 Novel U 0.0027197814016599975 -0.23581069232955382 1.0 9199 +17132 Maf MAF bZIP transcription factor Novel U 0.0027182283759803485 -0.23582677851849068 1.0 9200 +258909 Or4k38 olfactory receptor family 4 subfamily K member 38 Novel U 0.002718077970885764 -0.23582833640951606 1.0 9201 +381678 Zcwpw1 zinc finger, CW type with PWWP domain 1 Novel U 0.0027175291074758496 -0.23583402151867303 1.0 9202 +216797 Prss38 serine protease 38 Novel U 0.0027153026199048494 -0.23585708340374162 1.0 9203 +114641 Rpl31 ribosomal protein L31 Novel U 0.0027152365128433136 -0.23585776813851186 1.0 9204 +230806 Crybg2 crystallin beta-gamma domain containing 2 Novel U 0.002714759353790459 -0.23586271053629557 1.0 9205 +78455 Helz helicase with zinc finger domain Novel U 0.002714618190914843 -0.2358641726967207 1.0 9206 +626615 Apol11a apolipoprotein L 11a Novel U 0.00271428975042957 -0.23586757467247027 1.0 9207 +77031 Slc9a8 solute carrier family 9 (sodium/hydrogen exchanger), member 8 Novel N 0.002714225350012333 -0.23586824172987497 1.0 9208 +71750 R3hdm2 R3H domain containing 2 Novel U 0.002712213121697083 -0.23588908432461586 1.0 9209 +27053 Asns asparagine synthetase Novel U 0.002710833856435286 -0.23590337070885667 1.0 9210 +214899 Kdm5a lysine demethylase 5A Novel U 0.002709585587974075 -0.23591630023254329 1.0 9211 +26445 Psmb2 proteasome (prosome, macropain) subunit, beta type 2 Novel U 0.002709120004748825 -0.2359211227282852 1.0 9212 +209588 Sectm1a secreted and transmembrane 1A Novel U 0.002709018255179114 -0.23592217664698342 1.0 9213 +50781 Dkk3 dickkopf WNT signaling pathway inhibitor 3 Novel N 0.0027089040849678 -0.2359233592182791 1.0 9214 +233276 Tubgcp5 tubulin, gamma complex component 5 Novel U 0.002708694893040556 -0.23592552602138467 1.0 9215 +80290 Gpr146 G protein-coupled receptor 146 Novel U 0.002708404881988402 -0.23592852994632926 1.0 9216 +230908 Tardbp TAR DNA binding protein Novel U 0.002707522003652536 -0.2359376747711091 1.0 9217 +100503964 Gm17266 predicted gene, 17266 Novel U 0.0027070091695559364 -0.2359429866898232 1.0 9218 +12261 C1qbp complement component 1, q subcomponent binding protein Novel U 0.0027065593739502387 -0.23594764565792076 1.0 9219 +100041964 Gm3594 predicted gene 3594 Novel U 0.0027057274985424797 -0.2359562621960479 1.0 9220 +227746 Rabepk Rab9 effector protein with kelch motifs Novel U 0.002704789673946854 -0.23596597615238007 1.0 9221 +382066 Prdm10 PR domain containing 10 Novel N 0.0027028096742592453 -0.23598648492405533 1.0 9222 +216860 Neurl4 neuralized E3 ubiquitin protein ligase 4 Novel U 0.002700832672438951 -0.2360069626439195 1.0 9223 +15108 Hsd17b10 hydroxysteroid (17-beta) dehydrogenase 10 Novel U 0.0026999490430849775 -0.23601611524772023 1.0 9224 +67472 Mtfr1 mitochondrial fission regulator 1 Novel U 0.0026988783260901727 -0.23602720569915447 1.0 9225 +68836 Mrpl52 mitochondrial ribosomal protein L52 Novel U 0.0026988479587579392 -0.23602752024298349 1.0 9226 +15925 Ide insulin degrading enzyme Novel U 0.0026988085836024936 -0.2360279280895492 1.0 9227 +259049 Or52z13 olfactory receptor family 52 subfamily Z member 13 Novel U 0.002698638336955966 -0.23602969149871736 1.0 9228 +55949 Eef1b2 eukaryotic translation elongation factor 1 beta 2 Novel U 0.0026975618795127172 -0.2360408414095279 1.0 9229 +12462 Cct3 chaperonin containing TCP1 subunit 3 Novel U 0.002697235671210002 -0.23604422026440391 1.0 9230 +13808 Eno3 enolase 3, beta muscle Novel U 0.002696939168979143 -0.2360472914247642 1.0 9231 +19736 Rgs4 regulator of G-protein signaling 4 Novel U 0.002696047613154917 -0.2360565261306832 1.0 9232 +258910 Or4k36 olfactory receptor family 4 subfamily K member 36 Novel U 0.002694481854897943 -0.2360727442032374 1.0 9233 +74205 Acsl3 acyl-CoA synthetase long-chain family member 3 Novel U 0.002694421180325312 -0.23607337266846612 1.0 9234 +26942 Spag1 sperm associated antigen 1 Novel N 0.0026931852365153063 -0.23608617453382072 1.0 9235 +245527 Eda2r ectodysplasin A2 receptor Novel U 0.0026931170543591444 -0.23608688076235287 1.0 9236 +232560 Caprin2 caprin family member 2 Novel U 0.002692507288741389 -0.23609319669457662 1.0 9237 +241568 Lrrc4c leucine rich repeat containing 4C Novel U 0.0026890468800319684 -0.236129039494234 1.0 9238 +246696 Slc25a28 solute carrier family 25, member 28 Novel U 0.0026887295397970946 -0.23613232649395482 1.0 9239 +20698 Sphk1 sphingosine kinase 1 Novel U 0.002685918319119844 -0.23616144502531586 1.0 9240 +219158 Ccar2 cell cycle activator and apoptosis regulator 2 Novel U 0.00268554442572587 -0.23616531780079958 1.0 9241 +226539 Dars2 aspartyl-tRNA synthetase 2 (mitochondrial) Novel N 0.00268514485870502 -0.23616945650286647 1.0 9242 +78558 Htra3 HtrA serine peptidase 3 Novel N 0.0026847877617195513 -0.23617315530170302 1.0 9243 +13121 Cyp51 cytochrome P450, family 51 Novel N 0.0026841581376796627 -0.23617967692681044 1.0 9244 +110006 Gusb glucuronidase, beta Novel U 0.0026816025093834347 -0.236206148040691 1.0 9245 +56858 Or11h4 olfactory receptor family 11 subfamily H member 4 Novel U 0.002681204529416406 -0.2362102703041066 1.0 9246 +67000 Prl3a1 prolactin family 3, subfamily a, member 1 Novel U 0.0026810224422931504 -0.23621215635654347 1.0 9247 +107022 Gramd2b GRAM domain containing 2B Novel U 0.002680243935601128 -0.23622022010326743 1.0 9248 +56273 Pex14 peroxisomal biogenesis factor 14 Novel U 0.0026790373818096924 -0.23623271754777578 1.0 9249 +59046 Arpp19 cAMP-regulated phosphoprotein 19 Novel U 0.0026790330598049803 -0.23623276231495852 1.0 9250 +233863 Gtf3c1 general transcription factor III C 1 Novel N 0.002678354052791739 -0.2362397954472805 1.0 9251 +18230 Nxn nucleoredoxin Novel N 0.002677898836306971 -0.23624451056466533 1.0 9252 +380608 Tagap1 T cell activation GTPase activating protein 1 Novel U 0.0026777768536418523 -0.23624577405710065 1.0 9253 +228684 Sel1l2 sel-1 suppressor of lin-12-like 2 (C. elegans) Novel U 0.002675157078673876 -0.23627290960009847 1.0 9254 +228005 Ppig peptidyl-prolyl isomerase G (cyclophilin G) Novel N 0.002674837802698192 -0.236276216650159 1.0 9255 +77569 Limch1 LIM and calponin homology domains 1 Novel U 0.0026745651676170308 -0.23627904059536725 1.0 9256 +17318 Mid1 midline 1 Novel U 0.0026716510399197734 -0.23630922503425866 1.0 9257 +217558 G2e3 G2/M-phase specific E3 ubiquitin ligase Novel U 0.0026715919392790314 -0.23630983719675266 1.0 9258 +18185 Nrl neural retina leucine zipper gene Novel N 0.0026709572035264646 -0.2363164117688119 1.0 9259 +15209 Hesx1 homeobox gene expressed in ES cells Novel U 0.002670235903399472 -0.23632388297181584 1.0 9260 +110350 Dync2h1 dynein cytoplasmic 2 heavy chain 1 Novel U 0.0026685544933965012 -0.23634129896135325 1.0 9261 +75991 Slain2 SLAIN motif family, member 2 Novel U 0.002667558925875212 -0.23635161101701121 1.0 9262 +106504 Stk38 serine/threonine kinase 38 Novel U 0.0026674185274706483 -0.23635306525907035 1.0 9263 +20937 Suv39h1 suppressor of variegation 3-9 1 Novel U 0.0026669406089414303 -0.23635801552348526 1.0 9264 +13726 Emd emerin Novel U 0.0026667827057740754 -0.23635965107930196 1.0 9265 +192216 Tmem47 transmembrane protein 47 Novel U 0.0026665542545775372 -0.23636201736928575 1.0 9266 +71660 Rarres2 retinoic acid receptor responder (tazarotene induced) 2 Novel U 0.002665960640429721 -0.23636816600511482 1.0 9267 +105246 Brd9 bromodomain containing 9 Novel U 0.002665065678416199 -0.2363774359922306 1.0 9268 +100039595 Gm20807 predicted gene, 20807 Novel U 0.002664792165073977 -0.23638026903443807 1.0 9269 +57255 Cldn13 claudin 13 Novel U 0.002664479152150086 -0.23638351121201398 1.0 9270 +52323 Klhl7 kelch-like 7 Novel N 0.0026642866812854158 -0.2363855048189031 1.0 9271 +545013 Gm5797 predicted gene 5797 Novel U 0.002662691606076987 -0.23640202655547674 1.0 9272 +627488 Alyreffm14 Aly/REF export factor family member 14 Novel U 0.00266024749124555 -0.23642734261655482 1.0 9273 +258494 Or2ak5 olfactory receptor family 2 subfamily AK member 5 Novel U 0.0026588463219892676 -0.23644185588165043 1.0 9274 +12499 Entpd5 ectonucleoside triphosphate diphosphohydrolase 5 Novel U 0.0026581615912204437 -0.2364489483004446 1.0 9275 +12968 Cryge crystallin, gamma E Novel U 0.0026581487045438637 -0.23644908178021698 1.0 9276 +634731 Susd1 sushi domain containing 1 Novel U 0.0026579656099852346 -0.23645097826763636 1.0 9277 +71365 Pdss2 prenyl (solanesyl) diphosphate synthase, subunit 2 Novel N 0.0026562982104261423 -0.23646824913745662 1.0 9278 +17846 Commd1 COMM domain containing 1 Novel U 0.0026553117480689085 -0.23647846688212465 1.0 9279 +22278 Usf1 upstream transcription factor 1 Novel U 0.0026552837193020468 -0.2364787572031704 1.0 9280 +237221 Gemin8 gem nuclear organelle associated protein 8 Novel N 0.002654024634147941 -0.23649179876580645 1.0 9281 +13025 Ctla2b cytotoxic T lymphocyte-associated protein 2 beta Novel U 0.002653347722473564 -0.23649881019467736 1.0 9282 +667530 Vmn1r155 vomeronasal 1 receptor 155 Novel U 0.002652739868156432 -0.23650510632971206 1.0 9283 +77352 Axdnd1 axonemal dynein light chain domain containing 1 Novel U 0.002652727761073605 -0.23650523173447802 1.0 9284 +19672 Rcn1 reticulocalbin 1 Novel U 0.002650793734973673 -0.23652526431324342 1.0 9285 +76425 Gid8 GID complex subunit 8 Novel U 0.0026498161544760094 -0.23653539005990198 1.0 9286 +20196 S100a13 S100 calcium binding protein A13 Novel U 0.002649701797329639 -0.2365365745674648 1.0 9287 +228564 Frmd5 FERM domain containing 5 Novel U 0.0026484579503672392 -0.23654945829341206 1.0 9288 +18175 Nrap nebulin-related anchoring protein Novel U 0.002647787837024951 -0.2365563993053827 1.0 9289 +230098 Arhgef39 Rho guanine nucleotide exchange factor 39 Novel N 0.002647636947946056 -0.23655796220950168 1.0 9290 +20591 Kdm5c lysine demethylase 5C Novel U 0.002647478708965493 -0.23655960124366054 1.0 9291 +72759 Tmem135 transmembrane protein 135 Novel U 0.0026467065630483818 -0.23656759910568706 1.0 9292 +71902 Cand1 cullin associated and neddylation disassociated 1 Novel N 0.002646664703798411 -0.23656803268242219 1.0 9293 +13124 Cyp8b1 cytochrome P450, family 8, subfamily b, polypeptide 1 Novel N 0.0026454751189405423 -0.2365803543632745 1.0 9294 +26932 Ppp2r5e protein phosphatase 2, regulatory subunit B', epsilon Novel U 0.0026452107155101766 -0.23658309304531444 1.0 9295 +23908 Hs2st1 heparan sulfate 2-O-sulfotransferase 1 Novel U 0.0026437260631615466 -0.23659847102553622 1.0 9296 +12969 Crygf crystallin, gamma F Novel U 0.0026425444300293456 -0.23661071034267547 1.0 9297 +13629 Eef2 eukaryotic translation elongation factor 2 Novel N 0.0026414753610126346 -0.23662178372440681 1.0 9298 +18193 Nsd1 nuclear receptor-binding SET-domain protein 1 Novel U 0.0026408366171103855 -0.23662839981274875 1.0 9299 +12660 Chka choline kinase alpha Novel U 0.0026402089105261655 -0.23663490157691333 1.0 9300 +625353 Vmn2r35 vomeronasal 2, receptor 35 Novel U 0.002638886982910684 -0.23664859405969849 1.0 9301 +209824 Vmn1r183 vomeronasal 1 receptor 183 Novel U 0.0026382666564159544 -0.23665501938113875 1.0 9302 +76916 Timmdc1 translocase of inner mitochondrial membrane domain containing 1 Novel N 0.002637466724032729 -0.23666330505446784 1.0 9303 +12826 Col4a1 collagen, type IV, alpha 1 Novel U 0.002636868759690448 -0.2366694987494682 1.0 9304 +17907 Mylpf myosin light chain, phosphorylatable, fast skeletal muscle Novel U 0.002636379565622008 -0.23667456580554766 1.0 9305 +353187 Nr1d2 nuclear receptor subfamily 1, group D, member 2 Novel N 0.002635280837549494 -0.23668594639480403 1.0 9306 +211232 Cpne9 copine family member IX Novel U 0.0026345200476517996 -0.23669382663155472 1.0 9307 +104158 Ces1d carboxylesterase 1D Novel U 0.0026338781602475944 -0.23670047528018656 1.0 9308 +66998 Psmd5 proteasome (prosome, macropain) 26S subunit, non-ATPase, 5 Novel N 0.0026333937314916536 -0.23670549297731588 1.0 9309 +381686 Kpna7 karyopherin subunit alpha 7 Novel N 0.0026302515532917892 -0.23673803955581652 1.0 9310 +68588 Cthrc1 collagen triple helix repeat containing 1 Novel U 0.002630161523585301 -0.23673897208055675 1.0 9311 +75180 Tmem269 transmembrane protein 269 Novel U 0.0026284243276842602 -0.23675696589859252 1.0 9312 +83766 Actl6b actin-like 6B Novel U 0.002627928978887488 -0.23676209670514578 1.0 9313 +71643 Zgrf1 zinc finger, GRF-type containing 1 Novel U 0.0026270918734591212 -0.23677076741565442 1.0 9314 +21855 Timm17b translocase of inner mitochondrial membrane 17b Novel U 0.002626568128505776 -0.236776192348664 1.0 9315 +21885 Tle1 transducin-like enhancer of split 1 Novel N 0.0026255769184267393 -0.23678645927007838 1.0 9316 +69757 Leng1 leukocyte receptor cluster (LRC) member 1 Novel U 0.0026247486109942037 -0.23679503885123546 1.0 9317 +30053 Reg3d regenerating islet-derived 3 delta Novel U 0.0026230903257152154 -0.236812215315642 1.0 9318 +80883 Ntng1 netrin G1 Novel U 0.0026230378489561436 -0.2368127588681874 1.0 9319 +18183 Nrg3 neuregulin 3 Novel U 0.0026228565803116896 -0.23681463644284775 1.0 9320 +68283 Matcap2 microtubule associated tyrosine carboxypeptidase 2 Novel U 0.002622160988276092 -0.23682184136228612 1.0 9321 +100503890 Pet100 PET100 homolog Novel N 0.0026220731956401824 -0.23682275071552283 1.0 9322 +15165 Hcn1 hyperpolarization activated cyclic nucleotide gated potassium channel 1 Novel U 0.0026207322981429393 -0.23683663968771967 1.0 9323 +113865 Vmn1r25 vomeronasal 1 receptor 25 Novel U 0.0026207219431434734 -0.23683674694446374 1.0 9324 +20973 Syngr2 synaptogyrin 2 Novel U 0.0026186990190752743 -0.23685770032546208 1.0 9325 +100042848 Vmn2r41 vomeronasal 2, receptor 41 Novel U 0.0026164957850994346 -0.23688052135055643 1.0 9326 +76505 Smim45 small integral membrane protein 45 Novel U 0.0026159362269337146 -0.23688631723564246 1.0 9327 +26554 Cul3 cullin 3 Novel U 0.0026148872716704142 -0.23689718227977719 1.0 9328 +170461 Stard6 StAR related lipid transfer domain containing 6 Novel U 0.002614302338151731 -0.23690324100193505 1.0 9329 +110639 Prps2 phosphoribosyl pyrophosphate synthetase 2 Novel N 0.002613835742172421 -0.23690807398775024 1.0 9330 +14313 Fst follistatin Novel N 0.0026114261767511675 -0.2369330321871734 1.0 9331 +229707 Strip1 striatin interacting protein 1 Novel U 0.002610731844834044 -0.236940224054346 1.0 9332 +118568150 LOC118568150 disks large homolog 5-like Novel U 0.0026095290159812924 -0.23695268291606195 1.0 9333 +16648 Kpna3 karyopherin subunit alpha 3 Novel N 0.0026090288769772887 -0.23695786333942423 1.0 9334 +68558 Ankra2 ankyrin repeat family A member 2 Novel U 0.002608478692518188 -0.23696356213196523 1.0 9335 +380928 Lmo7 LIM domain only 7 Novel N 0.002608173156604106 -0.23696672686291936 1.0 9336 +69573 Hilpda hypoxia inducible lipid droplet associated Novel U 0.0026073945816983955 -0.23697479131619842 1.0 9337 +17885 Myh8 myosin, heavy polypeptide 8, skeletal muscle, perinatal Novel U 0.0026062550155542714 -0.23698659490485807 1.0 9338 +81010 Vmn1r172 vomeronasal 1 receptor 172 Novel U 0.0026050919713107297 -0.23699864167889964 1.0 9339 +13992 Khdrbs3 KH domain containing, RNA binding, signal transduction associated 3 Novel U 0.0026047545964215505 -0.23700213619691116 1.0 9340 +360211 Defb34 defensin beta 34 Novel U 0.002604349039253244 -0.2370063369447285 1.0 9341 +63955 Cables1 CDK5 and Abl enzyme substrate 1 Novel U 0.0026038085893368397 -0.2370119349071963 1.0 9342 +50500 Ttpa tocopherol (alpha) transfer protein Novel U 0.0026020395784170387 -0.23703025826415047 1.0 9343 +215653 Rassf2 Ras association (RalGDS/AF-6) domain family member 2 Novel U 0.002602014167428478 -0.23703052147033468 1.0 9344 +22652 Mkrn3 makorin, ring finger protein, 3 Novel U 0.0026010105238660148 -0.23704091717736167 1.0 9345 +68742 Tmem219 transmembrane protein 219 Novel U 0.0026009046731602045 -0.23704201357549276 1.0 9346 +93721 Cpn1 carboxypeptidase N, polypeptide 1 Novel N 0.002600896735003025 -0.2370420957986639 1.0 9347 +100043536 Vmn1r100 vomeronasal 1 receptor 100 Novel U 0.002600632736369681 -0.23704483028782958 1.0 9348 +15413 Hoxb5 homeobox B5 Novel N 0.0025995215056188437 -0.23705634037941703 1.0 9349 +116872 Serpinb7 serine (or cysteine) peptidase inhibitor, clade B, member 7 Novel U 0.0025986725386534103 -0.2370651339513367 1.0 9350 +19888 Rp1 retinitis pigmentosa 1 (human) Novel N 0.0025974339734853944 -0.23707796296863134 1.0 9351 +59045 Stard3 StAR related lipid transfer domain containing 3 Novel U 0.0025972542825249785 -0.23707982420169232 1.0 9352 +223649 Nrbp2 nuclear receptor binding protein 2 Novel U 0.002596352077562075 -0.2370891692110397 1.0 9353 +54672 Adgrg3 adhesion G protein-coupled receptor G3 Novel N 0.002595747623770667 -0.23709543012354076 1.0 9354 +11699 Ambp alpha 1 microglobulin/bikunin precursor Novel N 0.0025949461088963246 -0.2371037321882608 1.0 9355 +240892 Styxl2 serine/threonine/tyrosine interacting like 2 Novel U 0.0025933285493530095 -0.23712048681683606 1.0 9356 +100504518 3425401B19Rik RIKEN cDNA 3425401B19 gene Novel U 0.0025926209052825225 -0.2371278165708556 1.0 9357 +320720 Fastkd1 FAST kinase domains 1 Novel N 0.0025922467762166234 -0.23713169178742138 1.0 9358 +404286 Vmn1r179 vomeronasal 1 receptor 179 Novel U 0.0025908253874261508 -0.23714641448578744 1.0 9359 +27263 Smok2a sperm motility kinase 2A Novel U 0.002589419190479505 -0.23716097982753456 1.0 9360 +102643076 Percc1 proline and glutamate rich with coiled coil 1 Novel U 0.0025891933604180687 -0.23716331896788714 1.0 9361 +16828 Ldha lactate dehydrogenase A Novel U 0.002588708665999522 -0.237168339416741 1.0 9362 +17534 Mrc2 mannose receptor, C type 2 Novel N 0.002588245487713373 -0.23717313700220277 1.0 9363 +78134 Lpar4 lysophosphatidic acid receptor 4 Novel U 0.0025867630971308578 -0.23718849155512547 1.0 9364 +53318 Pdlim3 PDZ and LIM domain 3 Novel U 0.00258654288641644 -0.23719077249046638 1.0 9365 +170753 Zfp704 zinc finger protein 704 Novel U 0.0025861948080524774 -0.23719437787471787 1.0 9366 +19266 Ptprd protein tyrosine phosphatase receptor type D Novel U 0.0025860633585911186 -0.23719573942391745 1.0 9367 +171264 Vmn1r66 vomeronasal 1 receptor 66 Novel U 0.00258606290811723 -0.23719574408991118 1.0 9368 +93724 Pcdhga12 protocadherin gamma subfamily A, 12 Novel U 0.002585671180748593 -0.23719980158911816 1.0 9369 +60365 Rbm8a RNA binding motif protein 8a Novel U 0.0025849919789589513 -0.23720683673892773 1.0 9370 +66118 Sarnp SAP domain containing ribonucleoprotein Novel N 0.002583633657445125 -0.23722090618851552 1.0 9371 +258022 Or4f62 olfactory receptor family 4 subfamily F member 62 Novel U 0.0025829911455204236 -0.2372275613059101 1.0 9372 +27410 Abca3 ATP-binding cassette, sub-family A member 3 Novel U 0.002582853353684796 -0.2372289885492139 1.0 9373 +328035 Fads6 fatty acid desaturase domain family, member 6 Novel U 0.0025825240639425714 -0.23723239932153903 1.0 9374 +436008 Sdr42e2 short chain dehydrogenase/reductase family 42E, member 2 Novel U 0.002582441215948144 -0.23723325745834187 1.0 9375 +107173 Gpr137 G protein-coupled receptor 137 Novel U 0.002582002224378101 -0.23723780451859328 1.0 9376 +103080 Septin10 septin 10 Novel U 0.002581975529037549 -0.23723808102805316 1.0 9377 +67896 Ccdc80 coiled-coil domain containing 80 Novel U 0.0025814852670194345 -0.23724315914592028 1.0 9378 +319200 Gpr82 G protein-coupled receptor 82 Novel U 0.0025812056260922185 -0.2372460556574517 1.0 9379 +225896 Ubxn1 UBX domain protein 1 Novel U 0.002581000671283422 -0.2372481785726237 1.0 9380 +100862389 Btbd35f8 BTB domain containing 35, family member 8 Novel U 0.0025801660931111517 -0.23725682310589677 1.0 9381 +12581 Cdkn2d cyclin dependent kinase inhibitor 2D Novel U 0.002579891102920968 -0.2372596714452469 1.0 9382 +259038 Or8s2 olfactory receptor family 8 subfamily S member 2 Novel U 0.0025767750120611064 -0.23729194781193738 1.0 9383 +11544 Adprh ADP-ribosylarginine hydrolase Novel N 0.002576397168943433 -0.2372958614985293 1.0 9384 +66824 Pycard PYD and CARD domain containing Novel U 0.0025756137044101613 -0.2373039765984099 1.0 9385 +20853 Stau1 staufen double-stranded RNA binding protein 1 Novel N 0.0025734923143314165 -0.23732594988710864 1.0 9386 +58521 Eid1 EP300 interacting inhibitor of differentiation 1 Novel N 0.0025727379553583613 -0.2373337635125533 1.0 9387 +243382 Ppm1k protein phosphatase 1K (PP2C domain containing) Novel N 0.0025708513225298577 -0.23735330519337122 1.0 9388 +20932 Surf4 surfeit gene 4 Novel U 0.0025702662823216234 -0.23735936502061597 1.0 9389 +140477 Dmbx1 diencephalon/mesencephalon homeobox 1 Novel U 0.002570230984106507 -0.23735973063836777 1.0 9390 +21824 Thbd thrombomodulin Novel U 0.00256838805658512 -0.23737881962105134 1.0 9391 +74485 Lrrc71 leucine rich repeat containing 71 Novel U 0.002567298497558148 -0.2373901052376354 1.0 9392 +66506 Psmg3 proteasome (prosome, macropain) assembly chaperone 3 Novel N 0.0025670395199234395 -0.23739278771946223 1.0 9393 +17688 Msh6 mutS homolog 6 Novel U 0.0025663285153640645 -0.23740015228131525 1.0 9394 +12545 Cdc7 cell division cycle 7 Novel U 0.0025656707034668784 -0.23740696587532192 1.0 9395 +446099 Nlrp4e NLR family, pyrin domain containing 4E Novel U 0.00256548380329792 -0.23740890178112797 1.0 9396 +12815 Col11a2 collagen, type XI, alpha 2 Novel U 0.0025648195179770322 -0.23741578242664452 1.0 9397 +207781 C2cd2 C2 calcium-dependent domain containing 2 Novel U 0.002564700875442933 -0.23741701132211254 1.0 9398 +100034748 Prr35 proline rich 35 Novel U 0.0025643793718618407 -0.23742034144563662 1.0 9399 +14069 F8 coagulation factor VIII Novel U 0.0025640279824580407 -0.2374239811255299 1.0 9400 +11501 Adam8 a disintegrin and metallopeptidase domain 8 Novel U 0.0025638663535226228 -0.23742565527272969 1.0 9401 +68259 Ift80 intraflagellar transport 80 Novel U 0.002562694328467093 -0.23743779506972662 1.0 9402 +70925 Cdkn2aip CDKN2A interacting protein Novel N 0.002562509754068802 -0.23743970688527657 1.0 9403 +66825 Rnf186 ring finger protein 186 Novel U 0.0025620769625443224 -0.23744418972565987 1.0 9404 +27206 Nrk Nik related kinase Novel U 0.002561105754987268 -0.23745424946160912 1.0 9405 +240239 Gpr151 G protein-coupled receptor 151 Novel U 0.002559747679305685 -0.23746831636487462 1.0 9406 +13557 E2f3 E2F transcription factor 3 Novel U 0.0025596972697235986 -0.23746883850566874 1.0 9407 +78911 Trim42 tripartite motif-containing 42 Novel U 0.0025592547806591315 -0.23747342179285244 1.0 9408 +19309 Pygm muscle glycogen phosphorylase Novel U 0.002559103133856681 -0.23747499254544713 1.0 9409 +72293 Nkd2 naked cuticle 2 Novel U 0.002559093865770106 -0.23747508854398316 1.0 9410 +76893 Cers2 ceramide synthase 2 Novel N 0.002557538892308309 -0.23749119490798348 1.0 9411 +100039229 Gapdhrt2 glyceraldehyde-3-phosphate dehydrogenase, retrotransposed 2 Novel U 0.0025574194133609245 -0.23749243246699284 1.0 9412 +68729 Trim37 tripartite motif-containing 37 Novel U 0.00255713072739568 -0.2374954226667308 1.0 9413 +246707 Emilin2 elastin microfibril interfacer 2 Novel U 0.0025565384360196368 -0.23750155760133332 1.0 9414 +76980 Ube2ql1 ubiquitin-conjugating enzyme E2Q family-like 1 Novel U 0.002556276546600504 -0.23750427024332754 1.0 9415 +232585 Vwde von Willebrand factor D and EGF domains Novel U 0.002556040864801604 -0.23750671142765292 1.0 9416 +353166 Tas2r117 taste receptor, type 2, member 117 Novel U 0.002555355111208673 -0.23751381444082556 1.0 9417 +113862 Vmn1r13 vomeronasal 1 receptor 13 Novel U 0.0025546903691291813 -0.23752069981743273 1.0 9418 +17168 Nprl3 nitrogen permease regulator-like 3 Novel U 0.0025540584303453137 -0.23752724541858217 1.0 9419 +665943 Pramel55 PRAME like 55 Novel U 0.0025540252063643108 -0.2375275895514852 1.0 9420 +330790 Hapln4 hyaluronan and proteoglycan link protein 4 Novel U 0.002553668968441996 -0.23753127945217387 1.0 9421 +108958 Miga2 mitoguardin 2 Novel U 0.00255351420512604 -0.23753288248551294 1.0 9422 +258098 Or10w1 olfactory receptor family 10 subfamily W member 1 Novel U 0.002552474768401863 -0.23754364893693236 1.0 9423 +20751 Spr sepiapterin reductase Novel N 0.0025516704844268283 -0.23755197968390634 1.0 9424 +18171 Nr1i2 nuclear receptor subfamily 1, group I, member 2 Novel N 0.00255078981741507 -0.23756110160386376 1.0 9425 +235339 Dlat dihydrolipoamide S-acetyltransferase Novel U 0.002549901095272005 -0.23757030695860645 1.0 9426 +76874 4930469K13Rik RIKEN cDNA 4930469K13 gene Novel U 0.0025492375180559937 -0.23757718026959598 1.0 9427 +14663 Glycam1 glycosylation dependent cell adhesion molecule 1 Novel U 0.0025486004187768893 -0.23758377932298544 1.0 9428 +208777 Sned1 sushi, nidogen and EGF-like domains 1 Novel U 0.002548215693987779 -0.23758776428970388 1.0 9429 +140765 Tmprss3 transmembrane protease, serine 3 Novel N 0.002544527190004705 -0.23762596969270755 1.0 9430 +102633100 Pramel41 PRAME like 41 Novel U 0.002544286670992378 -0.23762846098073057 1.0 9431 +17184 Matr3 matrin 3 Novel U 0.002544094918599553 -0.23763044714571194 1.0 9432 +13861 Epx eosinophil peroxidase Novel U 0.002543965527173207 -0.23763178737785254 1.0 9433 +14619 Gjb2 gap junction protein, beta 2 Novel U 0.0025439605234264936 -0.23763183920649647 1.0 9434 +71844 Nup58 nucleoporin 58 Novel U 0.0025434136149858465 -0.2376375040661461 1.0 9435 +22282 Usf2 upstream transcription factor 2 Novel U 0.002542897448424564 -0.2376428505024198 1.0 9436 +232232 Hdac11 histone deacetylase 11 Novel N 0.0025427313409151103 -0.2376445710385422 1.0 9437 +96957 Tmem62 transmembrane protein 62 Novel U 0.0025413704156065737 -0.23765866745815 1.0 9438 +192120 Bspry B-box and SPRY domain containing Novel U 0.0025402249046858217 -0.2376705326226105 1.0 9439 +241727 Snph syntaphilin Novel U 0.0025395261247732055 -0.23767777056197426 1.0 9440 +57755 Dnajb7 DnaJ heat shock protein family (Hsp40) member B7 Novel U 0.002539515169988561 -0.2376778840312735 1.0 9441 +100861702 Gm21149 predicted gene, 21149 Novel U 0.002539317759512645 -0.23767992880249347 1.0 9442 +338521 Fa2h fatty acid 2-hydroxylase Novel N 0.0025383756230831674 -0.23768968742065896 1.0 9443 +70762 Dclk2 doublecortin-like kinase 2 Novel U 0.0025379742524730994 -0.2376938448042437 1.0 9444 +18038 Nfkbil1 nuclear factor of kappa light polypeptide gene enhancer in B cells inhibitor like 1 Novel U 0.002537824454117309 -0.2376953964106886 1.0 9445 +16821 Lcn4 lipocalin 4 Novel U 0.0025370892139216015 -0.23770301200446603 1.0 9446 +100504491 Dcdc2b doublecortin domain containing 2b Novel U 0.0025359368563021584 -0.2377149480868065 1.0 9447 +100041354 Pramel57 PRAME like 57 Novel U 0.0025349475407908753 -0.23772519538435039 1.0 9448 +54616 Extl3 exostosin-like glycosyltransferase 3 Novel U 0.0025343684386527165 -0.23773119370526047 1.0 9449 +76422 Mroh3 maestro heat-like repeat family member 3 Novel U 0.0025338766445371324 -0.23773628769254282 1.0 9450 +382985 Rrm2b ribonucleotide reductase M2 B (TP53 inducible) Novel U 0.002533571955066464 -0.2377394436560639 1.0 9451 +240444 Kcng2 potassium voltage-gated channel, subfamily G, member 2 Novel N 0.002532989853984853 -0.23774547303993165 1.0 9452 +66075 Chchd3 coiled-coil-helix-coiled-coil-helix domain containing 3 Novel U 0.00253124510429785 -0.2377635450998341 1.0 9453 +110075 Bmp3 bone morphogenetic protein 3 Novel N 0.0025309060658044815 -0.2377670568494031 1.0 9454 +66098 Chchd6 coiled-coil-helix-coiled-coil-helix domain containing 6 Novel N 0.0025296590090415623 -0.23777997382235866 1.0 9455 +17474 Clec4d C-type lectin domain family 4, member d Novel N 0.002527508707675775 -0.23780224657321816 1.0 9456 +57753 Noc3l NOC3 like DNA replication regulator Novel U 0.0025274865567156213 -0.23780247601213525 1.0 9457 +100036568 Gm3373 predicted gene 3373 Novel U 0.0025268531961637687 -0.2378090363399107 1.0 9458 +226470 Zbtb41 zinc finger and BTB domain containing 41 Novel U 0.0025268409241917126 -0.23780916345259387 1.0 9459 +208624 Alg3 ALG3 alpha-1,3- mannosyltransferase Novel N 0.002526466843099659 -0.2378130381722481 1.0 9460 +12891 Cpne6 copine VI Novel U 0.0025264048580803476 -0.23781368021104046 1.0 9461 +22059 Trp53 transformation related protein 53 Novel U 0.0025251170936315716 -0.23782701883286791 1.0 9462 +107733 Mrpl41 mitochondrial ribosomal protein L41 Novel N 0.0025244619259481606 -0.2378338050381952 1.0 9463 +19941 Rpl26 ribosomal protein L26 Novel U 0.0025239627220021944 -0.23783897577625707 1.0 9464 +71667 Tmem248 transmembrane protein 248 Novel U 0.002522674207185726 -0.23785232217036842 1.0 9465 +17523 Mpo myeloperoxidase Novel U 0.0025224115585541357 -0.23785504267626031 1.0 9466 +11628 Aicda activation-induced cytidine deaminase Novel U 0.0025220779914092296 -0.23785849775378182 1.0 9467 +381884 Slc6a16 solute carrier family 6, member 16 Novel U 0.0025215385722245874 -0.2378640850399639 1.0 9468 +16438 Itpr1 inositol 1,4,5-trisphosphate receptor 1 Novel U 0.002520475213912515 -0.23787509927040434 1.0 9469 +12823 Col19a1 collagen, type XIX, alpha 1 Novel N 0.0025204295341308336 -0.23787557242008134 1.0 9470 +21371 Tbca tubulin cofactor A Novel U 0.002519164116468298 -0.23788867957463153 1.0 9471 +217837 Itpk1 inositol 1,3,4-triphosphate 5/6 kinase Novel U 0.0025188680120665535 -0.23789174661429088 1.0 9472 +13529 Prl8a2 prolactin family 8, subfamily a, member 2 Novel U 0.002518575555662204 -0.23789477586811317 1.0 9473 +68026 Pclaf PCNA clamp associated factor Novel N 0.0025185150079727555 -0.23789540301909004 1.0 9474 +27360 Add3 adducin 3 Novel N 0.0025179625327639284 -0.23790112553914144 1.0 9475 +21415 Tcf7l1 transcription factor 7 like 1 (T cell specific, HMG box) Novel U 0.002517582069483236 -0.2379050663652958 1.0 9476 +234847 Spg7 SPG7, paraplegin matrix AAA peptidase subunit Novel U 0.0025162802480776926 -0.23791855058861935 1.0 9477 +16511 Kcnh2 potassium voltage-gated channel, subfamily H (eag-related), member 2 Novel U 0.002516057189417739 -0.2379208610228865 1.0 9478 +20656 Sod2 superoxide dismutase 2, mitochondrial Novel U 0.002515708943497468 -0.23792446814268067 1.0 9479 +171226 Vmn1r228 vomeronasal 1 receptor 228 Novel U 0.0025149660070129956 -0.23793216345436413 1.0 9480 +320091 Ano4 anoctamin 4 Novel N 0.002514480969220787 -0.23793718745987108 1.0 9481 +71904 Paqr7 progestin and adipoQ receptor family member VII Novel U 0.002514026326524897 -0.23794189663396953 1.0 9482 +269941 Chsy1 chondroitin sulfate synthase 1 Novel U 0.002513924103173053 -0.2379429554600875 1.0 9483 +546263 Ssxb15 SSX member B15 Novel U 0.0025124327169756032 -0.23795840318929404 1.0 9484 +382045 Adgrg5 adhesion G protein-coupled receptor G5 Novel N 0.0025123451090260313 -0.23795931062955575 1.0 9485 +546801 Etv3l ets variant 3-like Novel U 0.0025120953044670226 -0.23796189809696605 1.0 9486 +225895 Taf6l TATA-box binding protein associated factor 6 like Novel U 0.0025110079403908585 -0.2379731609783218 1.0 9487 +237979 Sdk2 sidekick cell adhesion molecule 2 Novel U 0.002510565744093474 -0.2379777412330337 1.0 9488 +15874 Iapp islet amyloid polypeptide Novel U 0.0025105371970686585 -0.2379780369221783 1.0 9489 +235542 Ppp2r3a protein phosphatase 2, regulatory subunit B'', alpha Novel U 0.00251015207979333 -0.2379820259542561 1.0 9490 +83997 Slmap sarcolemma associated protein Novel U 0.0025090027942371207 -0.23799393021626658 1.0 9491 +67681 Mrpl18 mitochondrial ribosomal protein L18 Novel N 0.002508546051947251 -0.23799866113789045 1.0 9492 +19167 Psma3 proteasome subunit alpha 3 Novel N 0.002508410090613358 -0.23800006942091745 1.0 9493 +242748 Disp3 dispatched RND transporter family member 3 Novel N 0.0025081761603533478 -0.2380024924628606 1.0 9494 +58916 Myot myotilin Novel U 0.002507857154358918 -0.23800579671646413 1.0 9495 +84585 Rnf123 ring finger protein 123 Novel U 0.0025077984027099777 -0.23800640526411249 1.0 9496 +18772 Pkp1 plakophilin 1 Novel U 0.0025074015250376425 -0.2380105161099959 1.0 9497 +237754 Btnl9 butyrophilin-like 9 Novel U 0.0025063835266007114 -0.23802106050434071 1.0 9498 +18640 Pfkfb2 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 Novel N 0.002505475236914541 -0.2380304685390517 1.0 9499 +228790 Asxl1 ASXL transcriptional regulator 1 Novel U 0.0025046907478267493 -0.23803859425123433 1.0 9500 +11727 Ang angiogenin, ribonuclease, RNase A family, 5 Novel U 0.0025042577397647275 -0.23804307933450636 1.0 9501 +110012 Tpgs1 tubulin polyglutamylase complex subunit 1 Novel U 0.002504221394186513 -0.2380434558008107 1.0 9502 +74747 Ddit4 DNA-damage-inducible transcript 4 Novel N 0.0025041912962191393 -0.23804376755456735 1.0 9503 +68316 Apoo apolipoprotein O Novel N 0.00250273383481221 -0.2380588638919089 1.0 9504 +66241 Tmem9 transmembrane protein 9 Novel U 0.0025025117400992954 -0.23806116434164426 1.0 9505 +72307 2510002D24Rik RIKEN cDNA 2510002D24 gene Novel U 0.0025014233350981775 -0.23807243800486647 1.0 9506 +628185 Vmn2r112 vomeronasal 2, receptor 112 Novel U 0.002500736269630065 -0.23807955460639912 1.0 9507 +66329 Susd3 sushi domain containing 3 Novel U 0.0024993122716237574 -0.23809430433093703 1.0 9508 +16467 Atcay ataxia, cerebellar, Cayman type Novel N 0.0024980923554904443 -0.23810694018214332 1.0 9509 +78801 Ak7 adenylate kinase 7 Novel N 0.0024977083001374396 -0.23811091821486458 1.0 9510 +229906 Gtf2b general transcription factor IIB Novel U 0.0024969536554576054 -0.2381187347996507 1.0 9511 +98303 D630023F18Rik RIKEN cDNA D630023F18 gene Novel U 0.0024957386410934227 -0.23813131987849348 1.0 9512 +223527 Eny2 ENY2 transcription and export complex 2 subunit Novel N 0.002495726859435202 -0.238131441912522 1.0 9513 +216760 Mfap3 microfibrillar-associated protein 3 Novel U 0.0024955052947902108 -0.2381337368718313 1.0 9514 +269695 Rnft2 ring finger protein, transmembrane 2 Novel U 0.00249450610174683 -0.23814408648052793 1.0 9515 +67286 Ift22 intraflagellar transport 22 Novel U 0.0024943977596858344 -0.23814520868403416 1.0 9516 +54426 Hgfac hepatocyte growth factor activator Novel N 0.002493485841152217 -0.23815465430622768 1.0 9517 +94089 Trim7 tripartite motif-containing 7 Novel N 0.002493360605547252 -0.238155951492507 1.0 9518 +70354 Secisbp2l SECIS binding protein 2-like Novel U 0.002490903608102481 -0.2381814009912705 1.0 9519 +232533 Stk38l serine/threonine kinase 38 like Novel N 0.0024897748406933176 -0.23819309272698838 1.0 9520 +215031 Vgll2 vestigial like family member 2 Novel U 0.002489579984082695 -0.23819511104535562 1.0 9521 +434234 Rexo5 RNA exonuclease 5 Novel U 0.00248868405291223 -0.23820439107096716 1.0 9522 +76252 Atp6v0e2 ATPase, H+ transporting, lysosomal V0 subunit E2 Novel U 0.002488666733991484 -0.23820457045977894 1.0 9523 +56874 Rnf32 ring finger protein 32 Novel U 0.002487050855622847 -0.23822130767480212 1.0 9524 +102631639 Gm17078 predicted gene 17078 Novel U 0.0024866114165024308 -0.23822585937076562 1.0 9525 +210198 Gprc6a G protein-coupled receptor, family C, group 6, member A Novel N 0.002485065904486337 -0.23824186773342235 1.0 9526 +67451 Pkp2 plakophilin 2 Novel U 0.0024848906691995317 -0.23824368281476252 1.0 9527 +59011 Myoz1 myozenin 1 Novel U 0.0024848838100042605 -0.23824375386208166 1.0 9528 +14104 Fasn fatty acid synthase Novel U 0.0024841230906731513 -0.238251633367906 1.0 9529 +74481 Batf2 basic leucine zipper transcription factor, ATF-like 2 Novel U 0.0024839550810959988 -0.23825337360558313 1.0 9530 +66715 Henmt1 HEN1 methyltransferase homolog 1 (Arabidopsis) Novel N 0.0024833835227775288 -0.23825929378785687 1.0 9531 +71947 Tmem94 transmembrane protein 94 Novel U 0.0024832638700963048 -0.23826053314639564 1.0 9532 +78304 Naa38 N(alpha)-acetyltransferase 38, NatC auxiliary subunit Novel N 0.0024821456482430116 -0.23827211565159245 1.0 9533 +110078 Pygb brain glycogen phosphorylase Novel U 0.002481844975537292 -0.23827523000959425 1.0 9534 +52882 Rgs7bp regulator of G-protein signalling 7 binding protein Novel U 0.0024815609548563358 -0.23827817188647088 1.0 9535 +383548 Serpinb3b serine (or cysteine) peptidase inhibitor, clade B (ovalbumin), member 3B Novel U 0.002480818383457969 -0.23828586341660446 1.0 9536 +72313 Fryl FRY like transcription coactivator Novel U 0.0024798487046819753 -0.23829590731748973 1.0 9537 +13486 Dr1 down-regulator of transcription 1 Novel U 0.002479476833249612 -0.23829975914956153 1.0 9538 +78249 Adgrf4 adhesion G protein-coupled receptor F4 Novel N 0.0024779327040145905 -0.23831575318941736 1.0 9539 +230279 Tmem268 transmembrane protein 268 Novel U 0.0024769598485604666 -0.2383258299942303 1.0 9540 +11807 Apoa2 apolipoprotein A-II Novel U 0.002476767701491439 -0.23832782024725477 1.0 9541 +18610 Pdyn prodynorphin Novel N 0.002476069338363436 -0.23833505386957718 1.0 9542 +19259 Ptpn5 protein tyrosine phosphatase, non-receptor type 5 Novel N 0.0024758588964723 -0.23833723361976766 1.0 9543 +67781 Ilf2 interleukin enhancer binding factor 2 Novel N 0.0024749268403301355 -0.23834688782664853 1.0 9544 +76614 Immt inner membrane protein, mitochondrial Novel N 0.002474544008189071 -0.23835085318938073 1.0 9545 +108954 Ppp1r15b protein phosphatase 1, regulatory subunit 15B Novel U 0.002474266094758014 -0.23835373180756372 1.0 9546 +17476 Mpeg1 macrophage expressed gene 1 Novel U 0.0024726820444070903 -0.23837013934902573 1.0 9547 +99633 Adgrl2 adhesion G protein-coupled receptor L2 Novel U 0.002472294495397438 -0.23837415356892772 1.0 9548 +217351 Tnrc6c trinucleotide repeat containing 6C Novel U 0.0024720133366735596 -0.23837706580174706 1.0 9549 +100041530 Gm10409 predicted pseudogene 8348 Novel U 0.0024715397061255305 -0.23838197165139377 1.0 9550 +69668 Ccdc115 coiled-coil domain containing 115 Novel U 0.0024701756664435525 -0.23839610032957934 1.0 9551 +13587 Ear2 eosinophil-associated, ribonuclease A family, member 2 Novel U 0.0024696197895115743 -0.2384018580845673 1.0 9552 +12677 Vsx2 visual system homeobox 2 Novel U 0.0024684961550077086 -0.2384134966538208 1.0 9553 +14765 Gpr50 G-protein-coupled receptor 50 Novel N 0.0024657788985609297 -0.23844164190677156 1.0 9554 +229672 Bcl2l15 BCLl2-like 15 Novel U 0.0024656221018784417 -0.23844326600165436 1.0 9555 +241516 Fsip2 fibrous sheath-interacting protein 2 Novel U 0.0024654332602019532 -0.2384452220175316 1.0 9556 +18451 P4ha1 procollagen-proline, 2-oxoglutarate 4-dioxygenase (proline 4-hydroxylase), alpha 1 polypeptide Novel U 0.0024654291500050105 -0.2384452645908164 1.0 9557 +20924 Supt5 suppressor of Ty 5, DSIF elongation factor subunit Novel U 0.0024651342663952387 -0.23844831898555263 1.0 9558 +246728 Oas2 2'-5' oligoadenylate synthetase 2 Novel U 0.002464715989023202 -0.23845265148882205 1.0 9559 +16325 Inhbc inhibin beta-C Novel U 0.0024642049569147495 -0.23845794474260215 1.0 9560 +212167 Gsap gamma-secretase activating protein Novel N 0.002462225254704422 -0.23847845043301752 1.0 9561 +81017 Vmn1r63 vomeronasal 1 receptor 63 Novel U 0.002459028848463953 -0.2385115587037801 1.0 9562 +432736 Vmn1r209 vomeronasal 1 receptor 209 Novel U 0.0024583256052917732 -0.2385188428734397 1.0 9563 +13527 Dtna dystrobrevin alpha Novel U 0.0024582487827906896 -0.2385196385983805 1.0 9564 +66427 Cyb5b cytochrome b5 type B Novel N 0.002458095856446527 -0.23852122260442613 1.0 9565 +69692 Hddc2 HD domain containing 2 Novel U 0.002457503095173633 -0.2385273624062048 1.0 9566 +56094 Cts8 cathepsin 8 Novel U 0.002457439809921255 -0.23852801791276856 1.0 9567 +77018 Col25a1 collagen, type XXV, alpha 1 Novel U 0.0024573993364697035 -0.23852843713544924 1.0 9568 +224481 Tfb1m transcription factor B1, mitochondrial Novel N 0.002456764724502471 -0.23853501042534406 1.0 9569 +69821 Mterf4 mitochondrial transcription termination factor 4 Novel U 0.002456719842243752 -0.23853547531430444 1.0 9570 +67819 Derl1 Der1-like domain family, member 1 Novel U 0.0024564704259808934 -0.238538058759756 1.0 9571 +243961 Shank1 SH3 and multiple ankyrin repeat domains 1 Novel N 0.002455796133826453 -0.23854504305572555 1.0 9572 +18209 Ntn3 netrin 3 Novel U 0.0024552022673907208 -0.23855119430474456 1.0 9573 +67122 Nrarp Notch-regulated ankyrin repeat protein Novel U 0.0024543746329442513 -0.23855976691513409 1.0 9574 +100039499 Vmn1r187 vomeronasal 1 receptor Vmn1r187 Novel U 0.0024541777025020237 -0.23856180671418092 1.0 9575 +13646 Klk1b22 kallikrein 1-related peptidase b22 Novel U 0.002454154669478487 -0.23856204528948155 1.0 9576 +171261 Vmn1r87 vomeronasal 1 receptor 87 Novel U 0.002452785770437358 -0.23857622430074943 1.0 9577 +16521 Kcnj5 potassium inwardly-rectifying channel, subfamily J, member 5 Novel U 0.00245193293711491 -0.23858505792026796 1.0 9578 +20704 Serpina1e serine (or cysteine) peptidase inhibitor, clade A, member 1E Novel U 0.0024515298829159153 -0.23858923274241148 1.0 9579 +231201 Semp2l2a SUMO/sentrin specific peptidase 2-like 2A Novel U 0.0024508178453864276 -0.23859660800373492 1.0 9580 +22072 Prss2 serine protease 2 Novel U 0.0024498953853640992 -0.23860616281432198 1.0 9581 +216152 Plppr3 phospholipid phosphatase related 3 Novel U 0.0024497582986875116 -0.23860758275361157 1.0 9582 +667444 Vmn1r139 vomeronasal 1 receptor 139 Novel U 0.002449542730721568 -0.23860981559951638 1.0 9583 +97387 Strn4 striatin, calmodulin binding protein 4 Novel U 0.0024483825513332545 -0.2386218326994817 1.0 9584 +171230 Vmn1r231 vomeronasal 1 receptor 231 Novel U 0.0024481792225665372 -0.2386239387721633 1.0 9585 +320571 Atp8b5 ATPase, class I, type 8B, member 5 Novel U 0.0024466415535274954 -0.23863986589752156 1.0 9586 +546519 Tmem235 transmembrane protein 235 Novel U 0.002446019541824899 -0.23864630867428951 1.0 9587 +77590 Chst15 carbohydrate sulfotransferase 15 Novel N 0.002445992960040658 -0.23864658400753683 1.0 9588 +13608 Edar ectodysplasin-A receptor Novel U 0.002445150425889924 -0.23865531094857334 1.0 9589 +545662 Pramel17 PRAME like 17 Novel U 0.002444989174413882 -0.23865698118606132 1.0 9590 +85305 Kars1 lysyl-tRNA synthetase 1 Novel U 0.0024441310431157904 -0.2386658696818374 1.0 9591 +319552 Spx spexin hormone Novel N 0.002444062275162575 -0.2386665819780362 1.0 9592 +56282 Mrpl12 mitochondrial ribosomal protein L12 Novel N 0.0024437650743042686 -0.2386696603747566 1.0 9593 +258840 Or8h7 olfactory receptor family 8 subfamily H member 7 Novel U 0.002442981467530489 -0.2386777769479597 1.0 9594 +330959 Snapc5 small nuclear RNA activating complex, polypeptide 5 Novel N 0.0024403719506954358 -0.23870480623755394 1.0 9595 +330323 Mindy4 MINDY lysine 48 deubiquitinase 4 Novel U 0.002439173579259183 -0.23871721892949632 1.0 9596 +277414 Trp53i11 transformation related protein 53 inducible protein 11 Novel N 0.0024391700605872306 -0.23871725537578473 1.0 9597 +209032 Zc3hav1l zinc finger CCCH-type, antiviral 1-like Novel U 0.002437807688127845 -0.23873136678493348 1.0 9598 +58248 1700123O20Rik RIKEN cDNA 1700123O20 gene Novel U 0.0024371252309110638 -0.2387384356543503 1.0 9599 +230766 Fam167b family with sequence similarity 167, member B Novel U 0.0024368001027329504 -0.2387418033213312 1.0 9600 +100503240 Trpc5os transient receptor potential cation channel, subfamily C, member 5, opposite strand Novel U 0.0024364848925385006 -0.23874506825816333 1.0 9601 +24061 Smc1a structural maintenance of chromosomes 1A Novel U 0.0024360993077371107 -0.2387490621328607 1.0 9602 +235283 Gramd1b GRAM domain containing 1B Novel U 0.0024360466207132966 -0.23874960786332136 1.0 9603 +15284 Hlx H2.0-like homeobox Novel N 0.002435188916068055 -0.23875849193984125 1.0 9604 +19221 Ptgfrn prostaglandin F2 receptor negative regulator Novel U 0.002433668312045898 -0.23877424230631558 1.0 9605 +236920 Stard8 StAR related lipid transfer domain containing 8 Novel U 0.002433177451424969 -0.23877932662449103 1.0 9606 +69010 Anapc13 anaphase promoting complex subunit 13 Novel U 0.0024330733962764236 -0.23878040442429904 1.0 9607 +75786 Ckap5 cytoskeleton associated protein 5 Novel U 0.0024322791243958117 -0.23878863146632812 1.0 9608 +58212 Srrm3 serine/arginine repetitive matrix 3 Novel U 0.002431960780481412 -0.23879192886212847 1.0 9609 +14043 Ext2 exostosin glycosyltransferase 2 Novel U 0.0024308559883014515 -0.23880337226321044 1.0 9610 +30954 Siva1 SIVA1, apoptosis-inducing factor Novel U 0.002430736173085705 -0.23880461330527641 1.0 9611 +71910 Plpp5 phospholipid phosphatase 5 Novel N 0.002430735030836909 -0.23880462513665188 1.0 9612 +192232 Hps4 HPS4, biogenesis of lysosomal organelles complex 3 subunit 2 Novel U 0.002430722474463296 -0.238804755195157 1.0 9613 +94088 Trim6 tripartite motif-containing 6 Novel U 0.0024298567606072267 -0.23881372223081934 1.0 9614 +101056084 Cirop ciliated left-right organizer metallopeptidase Novel N 0.002429828003529529 -0.2388140200956848 1.0 9615 +108062 Cstf2 cleavage stimulation factor, 3' pre-RNA subunit 2 Novel U 0.0024295958376058524 -0.2388164248626902 1.0 9616 +12590 Cdx1 caudal type homeobox 1 Novel N 0.002428021432307322 -0.2388327325010166 1.0 9617 +17719 ND4 NADH dehydrogenase subunit 4 Novel N 0.002426816053428488 -0.23884521777581885 1.0 9618 +667464 Vmn1r142 vomeronasal 1 receptor 142 Novel U 0.0024265983735547595 -0.2388474724967951 1.0 9619 +433375 Creg1 cellular repressor of E1A-stimulated genes 1 Novel N 0.002426036206567425 -0.23885329540396966 1.0 9620 +214063 Dnajc16 DnaJ heat shock protein family (Hsp40) member C16 Novel U 0.002425624640245322 -0.23885755839440448 1.0 9621 +327762 Dna2 DNA replication helicase/nuclease 2 Novel U 0.0024232397925296892 -0.2388822605686454 1.0 9622 +57296 Psmd8 proteasome (prosome, macropain) 26S subunit, non-ATPase, 8 Novel U 0.0024212200221436705 -0.2389031812839074 1.0 9623 +69875 Ndufa11 NADH:ubiquinone oxidoreductase subunit A11 Novel N 0.0024206893216686867 -0.23890867826198145 1.0 9624 +104112 Acly ATP citrate lyase Novel N 0.002420557379374526 -0.238910044915927 1.0 9625 +13437 Dnpep aspartyl aminopeptidase Novel N 0.002419154206392583 -0.2389245789355471 1.0 9626 +72552 Hsdl1 hydroxysteroid dehydrogenase like 1 Novel U 0.0024187802478913395 -0.2389284523854098 1.0 9627 +20276 Scnn1a sodium channel, nonvoltage-gated 1 alpha Novel U 0.0024187687999554872 -0.238928570962753 1.0 9628 +23980 Pebp1 phosphatidylethanolamine binding protein 1 Novel U 0.0024185400171585158 -0.23893094068744322 1.0 9629 +20815 Srpk1 serine/arginine-rich protein specific kinase 1 Novel U 0.0024181427800047867 -0.23893505525682304 1.0 9630 +17988 Ndrg1 N-myc downstream regulated gene 1 Novel N 0.0024179343301020113 -0.2389372143740636 1.0 9631 +76131 Depdc1a DEP domain containing 1a Novel N 0.0024172084329719054 -0.23894473319267465 1.0 9632 +106347 Ildr1 immunoglobulin-like domain containing receptor 1 Novel N 0.0024164898735365226 -0.23895217600768498 1.0 9633 +16328 Cep250 centrosomal protein 250 Novel U 0.0024161911165883564 -0.23895527052233298 1.0 9634 +12941 Pcdha5 protocadherin alpha 5 Novel U 0.0024160415207168102 -0.23895682003145274 1.0 9635 +84112 Sucnr1 succinate receptor 1 Novel N 0.0024154055572525564 -0.23896340732010932 1.0 9636 +243979 Mrgprb2 MAS-related GPR, member B2 Novel U 0.002414442966818618 -0.2389733778001806 1.0 9637 +12121 Bicd1 BICD cargo adaptor 1 Novel U 0.002414402023112353 -0.23897380189374415 1.0 9638 +12142 Prdm1 PR domain containing 1, with ZNF domain Novel N 0.002413326477956651 -0.23898494235511025 1.0 9639 +207215 Fbxo40 F-box protein 40 Novel U 0.002411194601792044 -0.23900702425834158 1.0 9640 +70993 Prss54 serine protease 54 Novel U 0.0024111482932119327 -0.23900750392109207 1.0 9641 +67939 Prorsd1 prolyl-tRNA synthetase domain containing 1 Novel U 0.0024108458499156695 -0.23901063661881247 1.0 9642 +76580 Mib2 mindbomb E3 ubiquitin protein ligase 2 Novel N 0.002410204739048636 -0.23901727722409782 1.0 9643 +12467 Cct6b chaperonin containing TCP1 subunit 6B Novel U 0.002409766909513333 -0.23902181224803162 1.0 9644 +240322 Adamts19 ADAM metallopeptidase with thrombospondin type 1 motif 19 Novel U 0.002409373536836488 -0.23902588678928696 1.0 9645 +78920 Dlst dihydrolipoamide S-succinyltransferase Novel U 0.0024084180941753536 -0.2390357832329625 1.0 9646 +239134 Gucy1b2 guanylate cyclase 1, soluble, beta 2 Novel U 0.002407691175186582 -0.23904331263595205 1.0 9647 +23959 Nt5e 5' nucleotidase, ecto Novel N 0.0024070630019477055 -0.23904981923371021 1.0 9648 +271697 Cdk15 cyclin dependent kinase 15 Novel U 0.0024055289761110736 -0.23906570862289767 1.0 9649 +230459 Cyp2j13 cytochrome P450, family 2, subfamily j, polypeptide 13 Novel U 0.0024052940789179088 -0.23906814168030266 1.0 9650 +171256 Vmn1r218 vomeronasal 1 receptor 218 Novel U 0.002404614664519426 -0.2390751790323076 1.0 9651 +12442 Ccnb2 cyclin B2 Novel U 0.0024016673930648638 -0.2391057067731476 1.0 9652 +15382 Hnrnpa1 heterogeneous nuclear ribonucleoprotein A1 Novel U 0.0024012624371546557 -0.23910990129315332 1.0 9653 +66790 Grtp1 GH regulated TBC protein 1 Novel U 0.002401141702120971 -0.2391111518626633 1.0 9654 +279028 Adamts13 ADAM metallopeptidase with thrombospondin type 1 motif 13 Novel U 0.0024009292133655795 -0.23911335281420648 1.0 9655 +622474 Smok3b sperm motility kinase 3B Novel U 0.0024004887135485016 -0.23911791549683112 1.0 9656 +212728 Tarbp1 TAR RNA binding protein 1 Novel N 0.0023999154918255008 -0.2391238529085943 1.0 9657 +16534 Kcnn4 potassium intermediate/small conductance calcium-activated channel, subfamily N, member 4 Novel U 0.002399802811410076 -0.2391250200486331 1.0 9658 +21826 Thbs2 thrombospondin 2 Novel U 0.0023974698920212504 -0.23914918435097196 1.0 9659 +192159 Prpf8 pre-mRNA processing factor 8 Novel N 0.002397419564733973 -0.23914970563935917 1.0 9660 +252838 Tox thymocyte selection-associated high mobility group box Novel N 0.0023972888429833056 -0.23915105965095532 1.0 9661 +113855 Vmn1r40 vomeronasal 1 receptor 40 Novel U 0.002397287787217062 -0.23915107058654736 1.0 9662 +11951 Atp5mc1 ATP synthase membrane subunit c locus 1 Novel U 0.0023967364688286573 -0.23915678112429087 1.0 9663 +22385 Baz1b bromodomain adjacent to zinc finger domain, 1B Novel U 0.0023967064537152873 -0.23915709201984844 1.0 9664 +76582 Ipo11 importin 11 Novel U 0.0023965306208139792 -0.23915891329126 1.0 9665 +74691 Tdrd9 tudor domain containing 9 Novel N 0.0023951719794941006 -0.23917298605338835 1.0 9666 +67705 Stmp1 short transmembrane mitochondrial protein 1 Novel N 0.0023946810049104185 -0.23917807155198623 1.0 9667 +240255 Ythdc2 YTH domain containing 2 Novel U 0.002394087708795853 -0.2391842168936373 1.0 9668 +329252 Lgr6 leucine-rich repeat-containing G protein-coupled receptor 6 Novel U 0.0023939281976497148 -0.23918586910484538 1.0 9669 +70951 Spata1 spermatogenesis associated 1 Novel U 0.002393467490804902 -0.23919064109119903 1.0 9670 +66177 Ubl5 ubiquitin-like 5 Novel U 0.0023933145680861074 -0.23919222505969326 1.0 9671 +224613 Flywch1 FLYWCH-type zinc finger 1 Novel N 0.002392422673328029 -0.23920146327627795 1.0 9672 +215193 Utp25 UTP25 small subunit processome component Novel N 0.002392093102933535 -0.2392048769555901 1.0 9673 +74122 Tmem43 transmembrane protein 43 Novel U 0.0023917235796271593 -0.2392087044658501 1.0 9674 +14009 Etv1 ets variant 1 Novel N 0.0023915064121459587 -0.2392109538794814 1.0 9675 +66409 Rsl1d1 ribosomal L1 domain containing 1 Novel N 0.0023912851365898526 -0.23921324584441747 1.0 9676 +12181 Bop1 block of proliferation 1 Novel N 0.0023899853906019573 -0.23922670857063327 1.0 9677 +52563 Cdc23 CDC23 cell division cycle 23 Novel U 0.0023897978806022703 -0.23922865079304595 1.0 9678 +217674 Gphb5 glycoprotein hormone beta 5 Novel N 0.0023892466307253424 -0.23923436062114983 1.0 9679 +11983 Atp5if1 ATP synthase inhibitory factor subunit 1 Novel U 0.0023891357019285692 -0.23923550961798024 1.0 9680 +216560 Wdpcp WD repeat containing planar cell polarity effector Novel N 0.002386596008569137 -0.2392618156783093 1.0 9681 +76626 Msi2 musashi RNA-binding protein 2 Novel U 0.002386132878425599 -0.23926661276511146 1.0 9682 +13001 Csnk2b casein kinase 2, beta polypeptide Novel U 0.0023861302953258013 -0.23926663952077426 1.0 9683 +20202 S100a9 S100 calcium binding protein A9 (calgranulin B) Novel U 0.0023852221102185407 -0.23927604647226028 1.0 9684 +115489547 Zfp1010 zinc finger protein 1010 Novel U 0.0023846996169163636 -0.23928145844070822 1.0 9685 +27267 Cars1 cysteinyl-tRNA synthetase 1 Novel U 0.0023832812746372523 -0.23929614958340975 1.0 9686 +329278 Tnn tenascin N Novel U 0.0023831048428757926 -0.23929797705779504 1.0 9687 +72747 Ttc39c tetratricopeptide repeat domain 39C Novel U 0.002381590182736459 -0.23931366585772654 1.0 9688 +66229 Rpl7l1 ribosomal protein L7-like 1 Novel U 0.002381406102119713 -0.23931557255870342 1.0 9689 +257932 Or2av9 olfactory receptor family 2 subfamily AV member 9 Novel U 0.002379332543210871 -0.23933705041371667 1.0 9690 +320506 Lmbrd2 LMBR1 domain containing 2 Novel U 0.0023783018991427726 -0.2393477257910934 1.0 9691 +66161 Pop4 processing of precursor 4, ribonuclease P/MRP family, (S. cerevisiae) Novel N 0.0023782428908501164 -0.23934833699704897 1.0 9692 +665700 Hmcn2 hemicentin 2 Novel U 0.0023780411959731847 -0.23935042614595387 1.0 9693 +108168614 Gm20812 predicted gene, 20812 Novel U 0.0023771356898349234 -0.23935980534876705 1.0 9694 +57741 Noc2l NOC2 like nucleolar associated transcriptional repressor Novel U 0.002376777634748702 -0.2393635140715797 1.0 9695 +14793 Cdca3 cell division cycle associated 3 Novel U 0.002376498709776439 -0.23936640316727323 1.0 9696 +100042964 Vmn1r243 vomeronasal 1 receptor 243 Novel U 0.002375476438704474 -0.2393769918174313 1.0 9697 +22658 Pcgf2 polycomb group ring finger 2 Novel U 0.0023743932438147672 -0.23938821151449077 1.0 9698 +107581 Col16a1 collagen, type XVI, alpha 1 Novel U 0.0023738501270957617 -0.23939383709961223 1.0 9699 +16993 Lta4h leukotriene A4 hydrolase Novel N 0.0023737102206724215 -0.239395286245746 1.0 9700 +20249 Scd1 stearoyl-Coenzyme A desaturase 1 Novel U 0.002372281531993366 -0.23941008455611806 1.0 9701 +19064 Ppy pancreatic polypeptide Novel U 0.002369983641331837 -0.2394338860320511 1.0 9702 +230872 Crocc ciliary rootlet coiled-coil, rootletin Novel U 0.0023694677728290287 -0.2394392293810449 1.0 9703 +72658 2700097O09Rik RIKEN cDNA 2700097O09 gene Novel U 0.0023691936096620256 -0.23944206915411612 1.0 9704 +235402 Lingo1 leucine rich repeat and Ig domain containing 1 Novel U 0.0023679275718768667 -0.23945518273187602 1.0 9705 +66958 Tmx2 thioredoxin-related transmembrane protein 2 Novel N 0.002367781258222467 -0.2394566982438985 1.0 9706 +12053 Bcl6 B cell leukemia/lymphoma 6 Novel U 0.0023671299110927012 -0.23946344487605675 1.0 9707 +22178 Tyrp1 tyrosinase-related protein 1 Novel N 0.002366839238729515 -0.2394664556508393 1.0 9708 +66989 Kctd20 potassium channel tetramerisation domain containing 20 Novel U 0.002366091490422533 -0.2394742008032221 1.0 9709 +218914 Wapl WAPL cohesin release factor Novel U 0.002365785686013754 -0.23947736831523544 1.0 9710 +171273 Vmn1r217 vomeronasal 1 receptor 217 Novel U 0.002364359814666702 -0.23949213744377523 1.0 9711 +433759 Hdac1 histone deacetylase 1 Novel U 0.002364243878616507 -0.23949333830557193 1.0 9712 +12995 Csnk2a1 casein kinase 2, alpha 1 polypeptide Novel U 0.002363280420676434 -0.23950331777124326 1.0 9713 +66394 Nosip nitric oxide synthase interacting protein Novel N 0.0023627135290709765 -0.23950918961585702 1.0 9714 +227613 Tubb4b tubulin, beta 4B class IVB Novel N 0.0023620447270533015 -0.23951611704517042 1.0 9715 +14421 B4galnt1 beta-1,4-N-acetyl-galactosaminyl transferase 1 Novel N 0.00236090493707001 -0.2395279229523488 1.0 9716 +269784 Cntn4 contactin 4 Novel N 0.0023604809651825366 -0.2395323144392219 1.0 9717 +239037 Lrit1 leucine-rich repeat, immunoglobulin-like and transmembrane domains 1 Novel U 0.0023602025663076835 -0.23953519808561577 1.0 9718 +20922 Supt4a SPT4A, DSIF elongation factor subunit Novel N 0.002359912256214432 -0.2395382051080182 1.0 9719 +104082 Wdr7 WD repeat domain 7 Novel U 0.0023591273677450496 -0.23954633495698227 1.0 9720 +75462 Cimip3 ciliary microtubule inner protein 3 Novel U 0.0023579154697008628 -0.23955888775708495 1.0 9721 +546294 Rhox3g reproductive homeobox 3G Novel U 0.0023578037846049226 -0.23956004458763727 1.0 9722 +19943 Rpl28 ribosomal protein L28 Novel N 0.0023576766442262452 -0.23956136150350008 1.0 9723 +11801 Cd5l CD5 antigen-like Novel U 0.0023571852567478195 -0.23956645127884812 1.0 9724 +59308 Emcn endomucin Novel U 0.0023571439946471068 -0.23956687867033089 1.0 9725 +68828 Sync syncoilin Novel U 0.0023568564809597595 -0.23956985672765294 1.0 9726 +73412 Nme8 NME/NM23 family member 8 Novel N 0.002355585622575678 -0.23958302023701802 1.0 9727 +76800 Usp42 ubiquitin specific peptidase 42 Novel N 0.002355461324237783 -0.23958430771511585 1.0 9728 +100340 Smpdl3b sphingomyelin phosphodiesterase, acid-like 3B Novel U 0.0023553598420235967 -0.23958535886455434 1.0 9729 +73487 1700084M14Rik Gm5941 pseudogene Novel U 0.002354852799688395 -0.23959061079239424 1.0 9730 +272009 Srsf12 serine and arginine-rich splicing factor 12 Novel N 0.0023535533245404635 -0.2396040707132586 1.0 9731 +72722 Fam98a family with sequence similarity 98, member A Novel N 0.002353435904241231 -0.23960528694885805 1.0 9732 +381819 A630073D07Rik RIKEN cDNA A630073D07 gene Novel U 0.0023531013067938974 -0.23960875269821824 1.0 9733 +66180 P3h4 prolyl 3-hydroxylase family member 4 (non-enzymatic) Novel U 0.0023525373978904953 -0.23961459364810214 1.0 9734 +109754 Cyb5r3 cytochrome b5 reductase 3 Novel N 0.002351358699934414 -0.23962680256278365 1.0 9735 +225030 Kcng3 potassium voltage-gated channel, subfamily G, member 3 Novel N 0.002350667692500572 -0.23963395999506773 1.0 9736 +271981 Tbck TBC1 domain containing kinase Novel U 0.0023503377228644286 -0.23963737780971173 1.0 9737 +242662 Rims3 regulating synaptic membrane exocytosis 3 Novel U 0.0023479699564677367 -0.23966190305621254 1.0 9738 +52132 Ccdc97 coiled-coil domain containing 97 Novel U 0.0023458474503533435 -0.2396838879047718 1.0 9739 +269643 Ppp2r2c protein phosphatase 2, regulatory subunit B, gamma Novel U 0.0023456931069392103 -0.23968548658878164 1.0 9740 +100040981 Pramel36 PRAME like 36 Novel U 0.0023440916901983394 -0.23970207401073984 1.0 9741 +380773 Slirp SRA stem-loop interacting RNA binding protein Novel U 0.0023436781699262975 -0.2397063572401239 1.0 9742 +78923 Chsy3 chondroitin sulfate synthase 3 Novel N 0.00234332242993797 -0.23971004198322868 1.0 9743 +18633 Pex16 peroxisomal biogenesis factor 16 Novel U 0.0023423988977601764 -0.23971960789916674 1.0 9744 +667199 Vmn1r128 vomeronasal 1 receptor 128 Novel U 0.0023422238281956297 -0.23972142126396123 1.0 9745 +67738 Ppid peptidylprolyl isomerase D (cyclophilin D) Novel U 0.0023417164681876464 -0.23972667648224538 1.0 9746 +234404 Nxnl1 nucleoredoxin-like 1 Novel N 0.0023416089609412023 -0.2397277900387699 1.0 9747 +12785 Cnbp cellular nucleic acid binding protein Novel U 0.0023411845966108576 -0.2397321855905534 1.0 9748 +330474 Zc3h4 zinc finger CCCH-type containing 4 Novel N 0.0023411744910998566 -0.23973229026310416 1.0 9749 +231162 Cytl1 cytokine-like 1 Novel N 0.0023410629501362107 -0.2397334456007389 1.0 9750 +170762 Nup155 nucleoporin 155 Novel U 0.0023407265848639394 -0.23973692966117166 1.0 9751 +12338 Capn6 calpain 6 Novel U 0.0023405423774345404 -0.2397388376756699 1.0 9752 +258803 Or2n1d olfactory receptor family 2 subfamily N member 1D Novel U 0.0023402285741160756 -0.2397420880401268 1.0 9753 +667599 Vmn1r260 vomeronasal 1 receptor 260 Novel U 0.0023391837976341648 -0.23975290980058125 1.0 9754 +66826 Tafazzin tafazzin, phospholipid-lysophospholipid transacylase Novel U 0.002338580541894108 -0.2397591583037058 1.0 9755 +27404 Abca8b ATP-binding cassette, sub-family A member 8b Novel U 0.002337755259688824 -0.23976770654965845 1.0 9756 +70445 Cd248 CD248 antigen, endosialin Novel U 0.0023376241274470403 -0.2397690648131081 1.0 9757 +67292 Pigc phosphatidylinositol glycan anchor biosynthesis, class C Novel U 0.0023354815360418914 -0.23979125770444873 1.0 9758 +63985 Gmfb glia maturation factor, beta Novel N 0.0023350838848161404 -0.23979537656277297 1.0 9759 +12622 Cer1 cerberus 1, DAN family BMP antagonist Novel U 0.0023337352499320737 -0.23980934567856815 1.0 9760 +67655 Ctdp1 CTD phosphatase subunit 1 Novel U 0.002333498944617184 -0.2398117933212517 1.0 9761 +107934 Celsr3 cadherin, EGF LAG seven-pass G-type receptor 3 Novel U 0.0023325039430411045 -0.23982209951486783 1.0 9762 +64435 Fcamr Fc receptor, IgA, IgM, high affinity Novel U 0.0023323003394221335 -0.23982420843445998 1.0 9763 +105638 Dph3 diphthamine biosynthesis 3 Novel U 0.0023318030338325135 -0.23982935950940923 1.0 9764 +70645 Oip5 Opa interacting protein 5 Novel U 0.002329242720503977 -0.23985587915070045 1.0 9765 +71099 Tssk4 testis-specific serine kinase 4 Novel U 0.002328756279037446 -0.23986091769541987 1.0 9766 +233805 Dcun1d3 defective in cullin neddylation 1 domain containing 3 Novel U 0.0023282190959160545 -0.2398664818205323 1.0 9767 +71995 Erv3 endogenous retroviral sequence 3 Novel U 0.0023279935562803607 -0.23986881795266463 1.0 9768 +270118 Maml2 mastermind like transcriptional coactivator 2 Novel N 0.0023278876288315236 -0.2398699151456975 1.0 9769 +74365 Lonrf3 LON peptidase N-terminal domain and ring finger 3 Novel U 0.002327373866952478 -0.23987523667435162 1.0 9770 +106248 Qtrt2 queuine tRNA-ribosyltransferase accessory subunit 2 Novel N 0.0023273498931502606 -0.23987548499420688 1.0 9771 +12009 Cep131 centrosomal protein 131 Novel U 0.0023245230614503134 -0.23990476522402787 1.0 9772 +227632 Kcnt1 potassium channel, subfamily T, member 1 Novel N 0.0023244317546576646 -0.23990571097678456 1.0 9773 +18081 Ninj1 ninjurin 1 Novel U 0.0023235667053727043 -0.23991467112884124 1.0 9774 +80893 Tmprss5 transmembrane protease, serine 5 (spinesin) Novel N 0.0023221833202744877 -0.23992900018621222 1.0 9775 +623781 Gm14137 predicted gene 14137 Novel U 0.002321565290654653 -0.23993540171669783 1.0 9776 +22153 Tubb4a tubulin, beta 4A class IVA Novel U 0.002319882845990361 -0.2399528284232232 1.0 9777 +67952 Tomm20 translocase of outer mitochondrial membrane 20 Novel U 0.0023194341932159194 -0.23995747555391217 1.0 9778 +21367 Cntn2 contactin 2 Novel U 0.002318801151161481 -0.23996403258270194 1.0 9779 +102093 Phkb phosphorylase kinase beta Novel U 0.0023185395646892807 -0.23996674208678181 1.0 9780 +100042465 Gm3858 predicted gene 3858 Novel U 0.0023182325489873234 -0.23996992214533006 1.0 9781 +12555 Cdh15 cadherin 15 Novel N 0.0023173119247263266 -0.23997945794116157 1.0 9782 +16775 Lama4 laminin, alpha 4 Novel N 0.0023167370704337965 -0.23998541226302628 1.0 9783 +225289 AW554918 expressed sequence AW554918 Novel U 0.0023161590785650576 -0.2399913990838022 1.0 9784 +105988 Espl1 extra spindle pole bodies 1, separase Novel U 0.0023152697634549746 -0.2400006105804778 1.0 9785 +329003 Zfp516 zinc finger protein 516 Novel U 0.0023142378804802874 -0.2400112987904083 1.0 9786 +58869 Pex5l peroxisomal biogenesis factor 5-like Novel U 0.0023138084793073084 -0.2400157465136422 1.0 9787 +72615 Anks3 ankyrin repeat and sterile alpha motif domain containing 3 Novel U 0.002312831606913852 -0.24002586492578068 1.0 9788 +70325 Pigw phosphatidylinositol glycan anchor biosynthesis, class W Novel U 0.002312608396590213 -0.24002817693097528 1.0 9789 +14038 Wfdc18 WAP four-disulfide core domain 18 Novel U 0.0023125244421715323 -0.24002904652808413 1.0 9790 +223601 Cyrib CYFIP related Rac1 interactor B Novel U 0.002311908802610259 -0.24003542330242172 1.0 9791 +78977 Popdc3 popeye domain containing 3 Novel N 0.0023115330193890188 -0.24003931565267414 1.0 9792 +57426 Scgb1b2 secretoglobin, family 1B, member 2 Novel U 0.0023107617157759274 -0.2400473047901433 1.0 9793 +71088 4933412E24Rik RIKEN cDNA 4933412E24 gene Novel U 0.0023106023441365913 -0.24004895555634445 1.0 9794 +71908 Cldn23 claudin 23 Novel U 0.002310162543341558 -0.24005351099852176 1.0 9795 +77697 Mmab methylmalonic aciduria (cobalamin deficiency) cblB type homolog (human) Novel U 0.0023097023795033912 -0.24005827736043042 1.0 9796 +320311 Rnf152 ring finger protein 152 Novel U 0.0023096123575791277 -0.24005920980456263 1.0 9797 +100042175 Gm10230 predicted gene 10230 Novel U 0.0023088392511053106 -0.24006721761600391 1.0 9798 +17161 Maoa monoamine oxidase A Novel U 0.0023078573211225747 -0.24007738841448592 1.0 9799 +13807 Eno2 enolase 2, gamma neuronal Novel N 0.0023077604384377005 -0.24007839192215097 1.0 9800 +12449 Ccnf cyclin F Novel U 0.002306915833816214 -0.24008714030905545 1.0 9801 +17308 Mgat1 mannoside acetylglucosaminyltransferase 1 Novel U 0.0023067222994212584 -0.2400891449319563 1.0 9802 +16008 Igfbp2 insulin-like growth factor binding protein 2 Novel U 0.0023067077067721576 -0.240089296082136 1.0 9803 +329002 Zfp236 zinc finger protein 236 Novel U 0.0023064280038942297 -0.24009219323535083 1.0 9804 +241627 Wdr76 WD repeat domain 76 Novel N 0.00230617550340286 -0.24009480862713994 1.0 9805 +226250 Afap1l2 actin filament associated protein 1-like 2 Novel U 0.002305429146277944 -0.24010253936970466 1.0 9806 +625480 Ssxb14 SSX member B14 Novel U 0.002305290322630877 -0.24010397730047736 1.0 9807 +240168 Rasgrp3 RAS, guanyl releasing protein 3 Novel N 0.002304825742052345 -0.24010878941083755 1.0 9808 +665095 Cyp2j8 cytochrome P450, family 2, subfamily j, polypeptide 8 Novel U 0.002302171185533448 -0.24013628521999641 1.0 9809 +67038 Ly6m lymphocyte antigen 6 family member M Novel U 0.0023019684462056793 -0.24013838518728878 1.0 9810 +15412 Hoxb4 homeobox B4 Novel N 0.0023011611187478687 -0.2401467474585573 1.0 9811 +53857 Tuba8 tubulin, alpha 8 Novel N 0.00229990896791842 -0.24015971719568652 1.0 9812 +100041586 Dynlt2a3 dynein light chain Tctex-type 2A3 Novel U 0.002297236964206374 -0.2401873937222985 1.0 9813 +210801 Unc5d unc-5 netrin receptor D Novel N 0.0022970228856048396 -0.2401896111414157 1.0 9814 +218442 Serinc5 serine incorporator 5 Novel N 0.0022963334462920617 -0.2401967523311534 1.0 9815 +320534 Tmem104 transmembrane protein 104 Novel U 0.0022962321959861423 -0.24019780107849364 1.0 9816 +19821 Rnf2 ring finger protein 2 Novel U 0.0022954909266615585 -0.2402054791217898 1.0 9817 +100043051 Vmn1r149 vomeronasal 1 receptor 149 Novel U 0.0022951375342974336 -0.24020913954828027 1.0 9818 +14714 Gnrh1 gonadotropin releasing hormone 1 Novel N 0.002294520938928439 -0.24021552622284278 1.0 9819 +22143 Tuba1b tubulin, alpha 1B Novel U 0.00229432895987693 -0.24021751473554737 1.0 9820 +64144 Mllt1 myeloid/lymphoid or mixed-lineage leukemia; translocated to, 1 Novel U 0.0022925650258793285 -0.2402357855059083 1.0 9821 +22259 Nr1h3 nuclear receptor subfamily 1, group H, member 3 Novel U 0.0022923573222000267 -0.24023793689379064 1.0 9822 +258755 Or52e15 olfactory receptor family 52 subfamily E member 15 Novel U 0.0022919441806684487 -0.24024221620019343 1.0 9823 +100038949 Gm1979 predicted gene 1979 Novel U 0.0022880694158615602 -0.24028235088668715 1.0 9824 +13164 Dazl deleted in azoospermia-like Novel N 0.0022879098460369773 -0.2402840037056846 1.0 9825 +75406 Ndufs7 NADH:ubiquinone oxidoreductase core subunit S7 Novel N 0.0022878115999527947 -0.24028502133539492 1.0 9826 +171191 Vmn1r24 vomeronasal 1 receptor 24 Novel U 0.0022877958853592226 -0.24028518410663852 1.0 9827 +238011 Enpp7 ectonucleotide pyrophosphatase/phosphodiesterase 7 Novel N 0.0022877549924997815 -0.24028560767353233 1.0 9828 +75516 Ttc32 tetratricopeptide repeat domain 32 Novel U 0.0022875982021511314 -0.24028723170280944 1.0 9829 +68916 Cdkal1 CDK5 regulatory subunit associated protein 1-like 1 Novel U 0.002287543205645594 -0.2402878013548059 1.0 9830 +627569 Vmn2r12 vomeronasal 2, receptor 12 Novel U 0.0022871873150047462 -0.2402914876583645 1.0 9831 +22364 Vpreb3 V-set pre-B cell surrogate light chain 3 Novel U 0.002287132567265316 -0.2402920547336498 1.0 9832 +18612 Etv4 ets variant 4 Novel N 0.00228708042728436 -0.24029259479785853 1.0 9833 +78057 4930583I09Rik RIKEN cDNA 4930583I09 gene Novel U 0.002287014975082037 -0.24029327274961856 1.0 9834 +13717 Eln elastin Novel U 0.0022868239559370794 -0.24029525131964263 1.0 9835 +18519 Kat2b K(lysine) acetyltransferase 2B Novel U 0.002286760546513819 -0.2402959081123643 1.0 9836 +595136 Ndufs5 NADH:ubiquinone oxidoreductase core subunit S5 Novel N 0.0022861701989085876 -0.24030202291345262 1.0 9837 +100040867 Gm16405 predicted gene 16405 Novel U 0.0022861497613288675 -0.24030223460523154 1.0 9838 +72124 Seh1l SEH1-like (S. cerevisiae Novel U 0.0022856899201426114 -0.2403069976251223 1.0 9839 +407819 BC031181 cDNA sequence BC031181 Novel N 0.002285583268443513 -0.24030810231991556 1.0 9840 +73902 Psmb11 proteasome (prosome, macropain) subunit, beta type, 11 Novel N 0.0022835750773753253 -0.24032890309698415 1.0 9841 +404239 Mrgprb5 MAS-related GPR, member B5 Novel U 0.0022834433602360324 -0.240330267418783 1.0 9842 +11668 Aldh1a1 aldehyde dehydrogenase family 1, subfamily A1 Novel U 0.002283048826191979 -0.24033435398944167 1.0 9843 +68077 Nop53 NOP53 ribosome biogenesis factor Novel U 0.0022821207734900336 -0.24034396672882033 1.0 9844 +217140 Scrn2 secernin 2 Novel U 0.0022820297546533724 -0.24034490949893839 1.0 9845 +272790 Magee2 MAGE family member E2 Novel U 0.0022819934645221126 -0.240345285390925 1.0 9846 +16728 L1cam L1 cell adhesion molecule Novel U 0.0022818154361186403 -0.2403471294032758 1.0 9847 +18813 Pa2g4 proliferation-associated 2G4 Novel N 0.0022791950163705654 -0.2403742716248847 1.0 9848 +20392 Sgce sarcoglycan, epsilon Novel U 0.002278941400848767 -0.24037689856612232 1.0 9849 +77583 Notum notum palmitoleoyl-protein carboxylesterase Novel N 0.0022778579013866948 -0.24038812141793234 1.0 9850 +319190 H2bc21 H2B clustered histone 21 Novel U 0.0022778124913633824 -0.24038859177346106 1.0 9851 +14962 Cfb complement factor B Novel U 0.0022774376125255743 -0.24039247475613956 1.0 9852 +19362 Rad51ap1 RAD51 associated protein 1 Novel U 0.0022768703480447188 -0.24039835046298447 1.0 9853 +68431 Fbxl15 F-box and leucine-rich repeat protein 15 Novel U 0.0022756568774753147 -0.24041091955125166 1.0 9854 +76205 Stard3nl STARD3 N-terminal like Novel U 0.002275529667396911 -0.24041223718906196 1.0 9855 +66680 Oser1 oxidative stress responsive serine rich 1 Novel U 0.00227384723146654 -0.24042966380512165 1.0 9856 +15201 Hells helicase, lymphoid specific Novel U 0.0022737849445119834 -0.24043030897134937 1.0 9857 +21375 Tbr1 T-box brain transcription factor 1 Novel U 0.002271949171593204 -0.2404493238468943 1.0 9858 +56233 Hdac7 histone deacetylase 7 Novel U 0.002271637091367683 -0.24045255636361115 1.0 9859 +19651 Rbl2 RB transcriptional corepressor like 2 Novel N 0.002271557993395792 -0.24045337565780378 1.0 9860 +13684 Eif4e eukaryotic translation initiation factor 4E Novel U 0.0022714558327552943 -0.24045443383435974 1.0 9861 +68273 Pomgnt1 protein O-linked mannose beta 1,2-N-acetylglucosaminyltransferase Novel U 0.0022708470603280003 -0.24046073947914934 1.0 9862 +99138 Stard7 StAR related lipid transfer domain containing 7 Novel N 0.002270778509536466 -0.24046144952599455 1.0 9863 +19654 Rbm6 RNA binding motif protein 6 Novel N 0.0022699301778162785 -0.24047023651806484 1.0 9864 +474160 Smim40 small integral membrane protein 40 Novel U 0.0022697847943310184 -0.24047174239542596 1.0 9865 +54652 Cacna1f calcium channel, voltage-dependent, alpha 1F subunit Novel U 0.0022693983907539433 -0.24047574475097497 1.0 9866 +214764 Edrf1 erythroid differentiation regulatory factor 1 Novel N 0.002267199422965956 -0.24049852158703577 1.0 9867 +54376 Cacng3 calcium channel, voltage-dependent, gamma subunit 3 Novel U 0.0022670531567532117 -0.24050003660765912 1.0 9868 +67973 Mphosph10 M-phase phosphoprotein 10 (U3 small nucleolar ribonucleoprotein) Novel N 0.0022666254522266246 -0.24050446675708548 1.0 9869 +320398 Lrig3 leucine-rich repeats and immunoglobulin-like domains 3 Novel U 0.0022661351050178233 -0.24050954575735495 1.0 9870 +15929 Idh3g isocitrate dehydrogenase 3 (NAD+), gamma Novel U 0.00226612454015502 -0.24050965518785658 1.0 9871 +12335 Capn3 calpain 3 Novel U 0.002265680506140025 -0.24051425447758706 1.0 9872 +76701 Ctrc chymotrypsin C Novel U 0.002263775756685837 -0.24053398380981825 1.0 9873 +17260 Mef2c myocyte enhancer factor 2C Novel U 0.002263118876063755 -0.240540787757708 1.0 9874 +170768 Pfkfb3 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 3 Novel U 0.0022606701030304685 -0.24056615206828771 1.0 9875 +373864 Col27a1 collagen, type XXVII, alpha 1 Novel U 0.0022603085461145533 -0.24056989706293724 1.0 9876 +66361 Zfand1 zinc finger, AN1-type domain 1 Novel U 0.0022599532720768306 -0.24057357697974094 1.0 9877 +66125 Sf3b5 splicing factor 3b, subunit 5 Novel N 0.0022595500885489793 -0.24057775314146848 1.0 9878 +19184 Psmc5 protease (prosome, macropain) 26S subunit, ATPase 5 Novel U 0.0022592165934301844 -0.2405812074729459 1.0 9879 +72039 Mccc1 methylcrotonoyl-Coenzyme A carboxylase 1 (alpha) Novel U 0.0022587651671016323 -0.24058588333201722 1.0 9880 +433801 Zfp268 zinc finger protein 268 Novel U 0.0022584428619542513 -0.24058922175813857 1.0 9881 +70465 Wdr77 WD repeat domain 77 Novel U 0.0022575677609629444 -0.24059828602543912 1.0 9882 +211255 Kbtbd7 kelch repeat and BTB (POZ) domain containing 7 Novel U 0.0022571732237664332 -0.24060237262875087 1.0 9883 +434113 Vmn2r44 vomeronasal 2, receptor 44 Novel U 0.0022570799293666036 -0.24060333896907743 1.0 9884 +14325 Ftl1 ferritin light polypeptide 1 Novel U 0.002256748647868631 -0.24060677037194314 1.0 9885 +226849 Ppp2r5a protein phosphatase 2, regulatory subunit B', alpha Novel U 0.0022566235943202186 -0.2406080656724867 1.0 9886 +56525 Zfp235 zinc finger protein 235 Novel U 0.0022559496828567275 -0.24061504602527187 1.0 9887 +242418 Dcaf10 DDB1 and CUL4 associated factor 10 Novel U 0.002252804320913738 -0.24064762558087915 1.0 9888 +13035 Ctsg cathepsin G Novel U 0.0022527329503652807 -0.2406483648346739 1.0 9889 +83485 Ngrn neugrin, neurite outgrowth associated Novel N 0.002252684972838872 -0.24064886178431524 1.0 9890 +11924 Neurog2 neurogenin 2 Novel U 0.0022512109489613488 -0.24066412967518275 1.0 9891 +70928 Trim69 tripartite motif-containing 69 Novel N 0.002250469385616098 -0.24067181076393526 1.0 9892 +53380 Psmd10 proteasome (prosome, macropain) 26S subunit, non-ATPase, 10 Novel U 0.002250141542076202 -0.24067520655654423 1.0 9893 +67150 Rnf141 ring finger protein 141 Novel U 0.0022499678686298723 -0.24067700546039208 1.0 9894 +72133 Trub1 TruB pseudouridine (psi) synthase family member 1 Novel N 0.0022498318350727977 -0.24067841449150443 1.0 9895 +50874 Tmod4 tropomodulin 4 Novel U 0.002249695088397303 -0.24067983090907388 1.0 9896 +12428 Ccna2 cyclin A2 Novel U 0.0022487948650758214 -0.24068915539264452 1.0 9897 +66642 Ctnnbl1 catenin, beta like 1 Novel U 0.002248649992976662 -0.24069065597308523 1.0 9898 +18100 Mrpl40 mitochondrial ribosomal protein L40 Novel N 0.0022476271171632946 -0.24070125088713484 1.0 9899 +102631912 Ndufb1 NADH:ubiquinone oxidoreductase subunit B1 Novel N 0.002246967955811331 -0.2407080784587497 1.0 9900 +66399 Tsfm Ts translation elongation factor, mitochondrial Novel U 0.002246911487394082 -0.2407086633567593 1.0 9901 +56379 Kcnj1 potassium inwardly-rectifying channel, subfamily J, member 1 Novel U 0.0022464806544836803 -0.24071312590988234 1.0 9902 +18242 Oat ornithine aminotransferase Novel N 0.0022455546250940745 -0.24072271769185832 1.0 9903 +13656 Egr4 early growth response 4 Novel N 0.0022454146070626474 -0.240724167994025 1.0 9904 +72935 Ddx41 DEAD box helicase 41 Novel U 0.0022446523065028545 -0.24073206387816404 1.0 9905 +58172 Sertad2 SERTA domain containing 2 Novel N 0.002244406598508537 -0.240734608913492 1.0 9906 +69590 Gpx8 glutathione peroxidase 8 (putative) Novel N 0.002243674937845399 -0.2407421874305887 1.0 9907 +110751 Adam33 a disintegrin and metallopeptidase domain 33 Novel U 0.002242864613366798 -0.24075058074490005 1.0 9908 +68083 Pak1ip1 PAK1 interacting protein 1 Novel N 0.0022424249400447515 -0.24075513486671637 1.0 9909 +16541 Napsa napsin A aspartic peptidase Novel N 0.002241533058897937 -0.24076437294231606 1.0 9910 +71183 Clec12b C-type lectin domain family 12, member B Novel U 0.002240894391533434 -0.2407709882378825 1.0 9911 +16535 Kcnq1 potassium voltage-gated channel, subfamily Q, member 1 Novel U 0.0022408681107548905 -0.24077126045332273 1.0 9912 +66627 Ogfod2 2-oxoglutarate and iron-dependent oxygenase domain containing 2 Novel U 0.0022401985944605113 -0.24077819528109073 1.0 9913 +73827 Tmem198b transmembrane protein 198b Novel U 0.0022401251803042064 -0.24077895570250837 1.0 9914 +381570 Oog2 oogenesin 2 Novel U 0.0022400223088402766 -0.24078002124175005 1.0 9915 +72754 Arhgef10l Rho guanine nucleotide exchange factor 10-like Novel U 0.0022398097192321666 -0.24078222323792237 1.0 9916 +213753 Zfp598 zinc finger protein 598 Novel U 0.002239779837334061 -0.24078253275364062 1.0 9917 +627009 Pramel15 PRAME like 15 Novel U 0.00223932529017513 -0.2407872409381704 1.0 9918 +244579 Tox3 TOX high mobility group box family member 3 Novel N 0.0022390183578260697 -0.24079042013335208 1.0 9919 +387616 Tas2r140 taste receptor, type 2, member 140 Novel U 0.0022390003950889053 -0.24079060619079318 1.0 9920 +20419 Shcbp1 Shc SH2-domain binding protein 1 Novel U 0.0022387226200797222 -0.24079348337520692 1.0 9921 +110880 Scn4a sodium channel, voltage-gated, type IV, alpha Novel U 0.0022373622760118073 -0.24080757377434348 1.0 9922 +66162 Bola2 bolA family member 2 Novel U 0.002237156783314847 -0.24080970226094336 1.0 9923 +232941 Ppm1n protein phosphatase, Mg2+/Mn2+ dependent, 1N (putative) Novel U 0.002237078724777402 -0.24081051078870822 1.0 9924 +74035 Nol9 nucleolar protein 9 Novel N 0.0022361725044179434 -0.24081989738940107 1.0 9925 +14297 Fxn frataxin Novel N 0.0022360252960973125 -0.24082142216834695 1.0 9926 +22704 Zfp46 zinc finger protein 46 Novel U 0.0022359977647799394 -0.24082170733682726 1.0 9927 +328788 Clpsl2 colipase-like 2 Novel U 0.0022359578560527437 -0.24082212071011164 1.0 9928 +76572 Rbmxl2 RNA binding motif protein, X-linked-like 2 Novel U 0.002235562009678456 -0.24082622087384375 1.0 9929 +171279 Vmn1r216 vomeronasal 1 receptor 216 Novel U 0.0022353861395304005 -0.2408280425310559 1.0 9930 +16329 Inpp1 inositol polyphosphate-1-phosphatase Novel N 0.0022346639986932236 -0.2408355224421083 1.0 9931 +14067 F5 coagulation factor V Novel U 0.002234106993168712 -0.2408412918870206 1.0 9932 +232493 Gys2 glycogen synthase 2 Novel N 0.002233085208512373 -0.24085187549890158 1.0 9933 +353234 Pcdha2 protocadherin alpha 2 Novel U 0.0022319700369041327 -0.24086342640976047 1.0 9934 +228677 Sptlc3 serine palmitoyltransferase, long chain base subunit 3 Novel N 0.002231609949473264 -0.24086715618353216 1.0 9935 +237504 Rassf9 Ras association (RalGDS/AF-6) domain family (N-terminal) member 9 Novel U 0.0022302140950917386 -0.24088161439732977 1.0 9936 +12190 Brca2 breast cancer 2, early onset Novel U 0.002228815997522637 -0.24089609584599053 1.0 9937 +13205 Ddx3x DEAD box helicase 3, X-linked Novel U 0.002228484240362368 -0.24089953217575066 1.0 9938 +233020 Hipk4 homeodomain interacting protein kinase 4 Novel U 0.0022272310580991627 -0.24091251259643678 1.0 9939 +231293 Cwh43 cell wall biogenesis 43 C-terminal homolog Novel U 0.002224957620010595 -0.24093606079342295 1.0 9940 +15216 Hfe homeostatic iron regulator Novel U 0.002224519352969592 -0.2409406003490264 1.0 9941 +240672 Dusp5 dual specificity phosphatase 5 Novel N 0.0022234759948700847 -0.24095140741792254 1.0 9942 +76799 Tmem234 transmembrane protein 234 Novel U 0.002223297752480038 -0.24095325364673922 1.0 9943 +232449 Dera deoxyribose-phosphate aldolase Novel N 0.0022230139294770386 -0.2409561934760741 1.0 9944 +378431 Txlnb taxilin beta Novel U 0.0022225367810244263 -0.24096113576406086 1.0 9945 +68172 Rpl39l ribosomal protein L39-like Novel U 0.002221931671192675 -0.24096740347180626 1.0 9946 +22401 Zmat3 zinc finger matrin type 3 Novel U 0.0022218167631890733 -0.24096859368513016 1.0 9947 +70225 Ppil3 peptidylprolyl isomerase (cyclophilin)-like 3 Novel N 0.002221618212111882 -0.2409706502706607 1.0 9948 +236874 Gm14743 predicted gene 14743 Novel U 0.0022215671782735203 -0.24097117887748076 1.0 9949 +19735 Rgs2 regulator of G-protein signaling 2 Novel U 0.002221552241148027 -0.2409713335957356 1.0 9950 +50530 Mfap5 microfibrillar associated protein 5 Novel U 0.002220803432750638 -0.24097908972850002 1.0 9951 +65247 Asb1 ankyrin repeat and SOCS box-containing 1 Novel N 0.0022205744567388125 -0.24098146145450333 1.0 9952 +380698 Obscn obscurin, cytoskeletal calmodulin and titin-interacting RhoGEF Novel U 0.002219961661567713 -0.24098780876674103 1.0 9953 +21763 Tex2 testis expressed gene 2 Novel U 0.0022188731065993766 -0.24099908398331876 1.0 9954 +170757 Adgrl4 adhesion G protein-coupled receptor L4 Novel N 0.002217867682807351 -0.24100949812990502 1.0 9955 +666317 Prl2c1 Prolactin family 2, subfamily c, member 1 Novel U 0.0022167043104109516 -0.24102154830294312 1.0 9956 +53604 Zpbp zona pellucida binding protein Novel N 0.0022162067589131646 -0.24102670192500109 1.0 9957 +12461 Cct2 chaperonin containing TCP1 subunit 2 Novel U 0.0022147801846087297 -0.2410414783347503 1.0 9958 +67248 Rpl39 ribosomal protein L39 Novel U 0.0022146567530224454 -0.24104275683506343 1.0 9959 +545366 Cfhr2 complement factor H-related 2 Novel U 0.0022123930882817474 -0.24106620380003363 1.0 9960 +239552 Apol8 apolipoprotein L 8 Novel U 0.0022103212299048663 -0.24108766404099266 1.0 9961 +66523 2810004N23Rik RIKEN cDNA 2810004N23 gene Novel N 0.0022079471270431655 -0.24111225492038973 1.0 9962 +242235 Lrit3 leucine-rich repeat, immunoglobulin-like and transmembrane domains 3 Novel U 0.002207599346932 -0.24111585721534856 1.0 9963 +72826 Fam76b family with sequence similarity 76, member B Novel U 0.0022074438276441445 -0.24111746807901974 1.0 9964 +654812 Angptl7 angiopoietin-like 7 Novel U 0.0022071090672790344 -0.24112093551587688 1.0 9965 +13831 Epc1 enhancer of polycomb homolog 1 Novel U 0.0022062993544734095 -0.24112932249449964 1.0 9966 +11846 Arg1 arginase, liver Novel U 0.0022055883422354944 -0.24113668713588673 1.0 9967 +58208 Bcl11b B cell leukemia/lymphoma 11B Novel U 0.0022054883015800966 -0.24113772335370667 1.0 9968 +80289 Lysmd3 LysM, putative peptidoglycan-binding, domain containing 3 Novel U 0.002205343919498991 -0.24113921885855644 1.0 9969 +20462 Tra2b transformer 2 beta Novel N 0.002205059791572472 -0.24114216184627912 1.0 9970 +319601 Zfp653 zinc finger protein 653 Novel N 0.0022032178068057814 -0.24116124106394052 1.0 9971 +232962 Vmn1r180 vomeronasal 1 receptor 180 Novel U 0.0022031082987226795 -0.2411623753450654 1.0 9972 +329506 Ctdspl2 CTD small phosphatase like 2 Novel U 0.002203079103986829 -0.24116267774317962 1.0 9973 +258571 Or5m3b olfactory receptor family 5 subfamily M member 3B Novel U 0.0022029445776048113 -0.24116407116302224 1.0 9974 +80913 Pum2 pumilio RNA-binding family member 2 Novel U 0.0022022166890579863 -0.2411716106086622 1.0 9975 +11529 Adh7 alcohol dehydrogenase 7 (class IV), mu or sigma polypeptide Novel N 0.0021994248717188045 -0.24120052816088544 1.0 9976 +229389 Otol1 otolin 1 Novel U 0.002199274612940616 -0.2412020845363704 1.0 9977 +20088 Rps24 ribosomal protein S24 Novel U 0.0021989406489183365 -0.2412055437247347 1.0 9978 +108075 Ltbp4 latent transforming growth factor beta binding protein 4 Novel U 0.002198871906964607 -0.24120625575163168 1.0 9979 +237336 Tbpl1 TATA box binding protein-like 1 Novel N 0.0021978165682216876 -0.24121718691563843 1.0 9980 +67379 Dedd2 death effector domain-containing DNA binding protein 2 Novel U 0.0021975328837504794 -0.24122012531006556 1.0 9981 +11513 Adcy7 adenylate cyclase 7 Novel N 0.002197271273903891 -0.2412228350562566 1.0 9982 +72170 Chchd4 coiled-coil-helix-coiled-coil-helix domain containing 4 Novel U 0.0021963929064434356 -0.2412319331575372 1.0 9983 +53951 Gpatch11 G patch domain containing 11 Novel U 0.002194947923391132 -0.2412469002444917 1.0 9984 +14007 Celf2 CUGBP, Elav-like family member 2 Novel U 0.0021946609962240266 -0.24124987222665634 1.0 9985 +19125 Prodh proline dehydrogenase Novel U 0.002194537692411206 -0.24125114940349618 1.0 9986 +170721 Papln papilin, proteoglycan-like sulfated glycoprotein Novel U 0.0021943894702362065 -0.24125268468391228 1.0 9987 +100416706 Zfp729b zinc finger protein 729b Novel U 0.0021939770083483296 -0.24125695695058796 1.0 9988 +246198 Mllt6 myeloid/lymphoid or mixed-lineage leukemia; translocated to, 6 Novel N 0.0021927780006565393 -0.24126937623284425 1.0 9989 +18054 Ngp neutrophilic granule protein Novel U 0.0021909375440759314 -0.24128843962160446 1.0 9990 +100504309 Smim27 small integral membrane protein 27 Novel U 0.0021905932611956656 -0.24129200569236053 1.0 9991 +238880 Actbl2 actin, beta-like 2 Novel U 0.0021904014163116855 -0.24129399281536226 1.0 9992 +622744 Pramel53 PRAME like 53 Novel U 0.0021896377682276516 -0.24130190265711307 1.0 9993 +14780 Gpx5 glutathione peroxidase 5 Novel U 0.0021894782535275235 -0.24130355490513325 1.0 9994 +66156 Anapc11 anaphase promoting complex subunit 11 Novel U 0.002189416949708566 -0.24130418988807478 1.0 9995 +224582 Vmn2r110 vomeronasal 2, receptor 110 Novel U 0.0021887932422166374 -0.24131065022977288 1.0 9996 +171238 Vmn1r80 vomeronasal 1 receptor 80 Novel U 0.0021887731856612054 -0.24131085797491472 1.0 9997 +66296 Haus2 HAUS augmin-like complex, subunit 2 Novel U 0.002188661526896172 -0.24131201453273238 1.0 9998 +26410 Map3k8 mitogen-activated protein kinase kinase kinase 8 Novel U 0.0021881161627859908 -0.24131766339625774 1.0 9999 +239731 Rimbp3 RIMS binding protein 3 Novel U 0.002188090801416338 -0.2413179260884909 1.0 10000 +83771 Tas1r3 taste receptor, type 1, member 3 Novel N 0.0021872782414492395 -0.24132634255791863 1.0 10001 +74144 Robo4 roundabout guidance receptor 4 Novel U 0.0021870060651429228 -0.24132916175115213 1.0 10002 +14058 F10 coagulation factor X Novel U 0.0021862747462000507 -0.24133673672872158 1.0 10003 +108168554 Gm20909 predicted gene, 20909 Novel U 0.00218494917319727 -0.2413504669703085 1.0 10004 +320226 Ccdc171 coiled-coil domain containing 171 Novel U 0.002184726085226919 -0.24135277770817182 1.0 10005 +77521 Mtus2 microtubule associated tumor suppressor candidate 2 Novel U 0.0021846995754739524 -0.24135305229532159 1.0 10006 +20135 Rrm2 ribonucleotide reductase M2 Novel U 0.002182549369735861 -0.2413753240556725 1.0 10007 +17258 Mef2a myocyte enhancer factor 2A Novel U 0.0021814278591804426 -0.24138694062513788 1.0 10008 +21406 Tcf12 transcription factor 12 Novel U 0.0021805572732824874 -0.24139595812524992 1.0 10009 +268903 Nrip1 nuclear receptor interacting protein 1 Novel U 0.002179719914776915 -0.24140463145712396 1.0 10010 +15387 Hnrnpk heterogeneous nuclear ribonucleoprotein K Novel U 0.0021796712513871296 -0.2414051355109156 1.0 10011 +66848 Fuca2 fucosidase, alpha-L- 2, plasma Novel N 0.0021795678027498808 -0.24140620702849958 1.0 10012 +11418 Asic2 acid-sensing ion channel 2 Novel N 0.0021786269244234145 -0.24141595261527538 1.0 10013 +70223 Nars1 asparaginyl-tRNA synthetase 1 Novel U 0.002178397113543198 -0.24141833298881804 1.0 10014 +11828 Aqp3 aquaporin 3 Novel U 0.0021781867441658218 -0.2414205119879134 1.0 10015 +76464 Knl1 kinetochore scaffold 1 Novel U 0.0021778053550460244 -0.24142446240387874 1.0 10016 +12399 Runx3 runt related transcription factor 3 Novel U 0.002177099838480459 -0.24143177012127226 1.0 10017 +277667 Pramel23 PRAME like 23 Novel U 0.002176622078392415 -0.24143671874455874 1.0 10018 +241311 Zbtb34 zinc finger and BTB domain containing 34 Novel U 0.002176172716514666 -0.24144137322011647 1.0 10019 +327655 Ppip5k1 diphosphoinositol pentakisphosphate kinase 1 Novel N 0.002175937103984059 -0.24144381368696313 1.0 10020 +234671 Ces2c carboxylesterase 2C Novel U 0.0021756852723027104 -0.24144642215124001 1.0 10021 +13595 Ebp EBP cholestenol delta-isomerase Novel U 0.002174566795736435 -0.2414580072947456 1.0 10022 +81845 Gpank1 G patch domain and ankyrin repeats 1 Novel U 0.002174452645130583 -0.24145918966296848 1.0 10023 +244654 Mtss2 MTSS I-BAR domain containing 2 Novel U 0.0021741461800351995 -0.24146236401835197 1.0 10024 +66442 Spc25 SPC25, NDC80 kinetochore complex component, homolog (S. cerevisiae) Novel U 0.0021734831007609997 -0.2414692321716766 1.0 10025 +67439 Xab2 XPA binding protein 2 Novel N 0.0021734174696820467 -0.24146991197623488 1.0 10026 +67378 Bbs2 Bardet-Biedl syndrome 2 Novel U 0.002172323968129007 -0.24148123842937433 1.0 10027 +235312 C1qtnf5 C1q and tumor necrosis factor related protein 5 Novel N 0.0021719750430526973 -0.24148485258384447 1.0 10028 +67654 Ctxnd2 cortexin domain containing 2 Novel U 0.0021712584741677547 -0.24149227478079877 1.0 10029 +56758 Mbnl1 muscleblind like splicing regulator 1 Novel N 0.00217013738720683 -0.2415038869626863 1.0 10030 +319832 Tmem229a transmembrane protein 229A Novel U 0.0021691378979866323 -0.24151423963917265 1.0 10031 +667240 Vmn1r121 vomeronasal 1 receptor 121 Novel U 0.0021667548196962214 -0.24153892348576525 1.0 10032 +11814 Apoc3 apolipoprotein C-III Novel U 0.002166698835419348 -0.24153950336906468 1.0 10033 +18604 Pdk2 pyruvate dehydrogenase kinase, isoenzyme 2 Novel N 0.0021663873498542013 -0.24154272972630897 1.0 10034 +74094 Tjap1 tight junction associated protein 1 Novel U 0.00216621210316793 -0.24154454492572444 1.0 10035 +100043019 Vmn1r247 vomeronasal 1 receptor 247 Novel U 0.0021660876903707924 -0.24154583358938733 1.0 10036 +232798 Leng8 leukocyte receptor cluster (LRC) member 8 Novel U 0.0021648438926414166 -0.24155871680538057 1.0 10037 +56464 Ctsf cathepsin F Novel U 0.002164622093132348 -0.24156101419740425 1.0 10038 +71718 Telo2 telomere maintenance 2 Novel U 0.0021634155710272738 -0.24157351131370633 1.0 10039 +83946 Phip pleckstrin homology domain interacting protein Novel U 0.0021617072962385564 -0.24159120556781133 1.0 10040 +58249 Fibp fibroblast growth factor (acidic) intracellular binding protein Novel U 0.0021617028611514064 -0.24159125150629826 1.0 10041 +233806 Ldaf1 lipid droplet assembly factor 1 Novel N 0.002161395098759416 -0.24159443929903732 1.0 10042 +64383 Sirt2 sirtuin 2 Novel U 0.0021606280271570014 -0.24160238460147904 1.0 10043 +14077 Fabp3 fatty acid binding protein 3, muscle and heart Novel N 0.0021600695523729544 -0.24160816926493334 1.0 10044 +230815 Man1c1 mannosidase, alpha, class 1C, member 1 Novel N 0.002160025064999866 -0.24160863006368133 1.0 10045 +12942 Pcdha11 protocadherin alpha 11 Novel U 0.0021586477031064564 -0.24162289673289492 1.0 10046 +17346 Mknk1 MAP kinase-interacting serine/threonine kinase 1 Novel N 0.0021584035193044065 -0.24162542598068948 1.0 10047 +627479 Vmn2r8 vomeronasal 2, receptor 8 Novel U 0.0021573367727508526 -0.24163647530642376 1.0 10048 +233726 Ipo7 importin 7 Novel U 0.0021572647996797884 -0.24163722080112784 1.0 10049 +75604 Tm4sf5 transmembrane 4 superfamily member 5 Novel N 0.002156355039126599 -0.241646644071031 1.0 10050 +72454 Ccdc71 coiled-coil domain containing 71 Novel U 0.002154656842610086 -0.24166423393472386 1.0 10051 +66863 Lztr1 leucine-zipper-like transcriptional regulator, 1 Novel U 0.0021545671544051016 -0.24166516292220275 1.0 10052 +171185 Vmn1r35 vomeronasal 1 receptor 35 Novel U 0.002154153320154612 -0.24166944940376525 1.0 10053 +208727 Hdac4 histone deacetylase 4 Novel U 0.002153292046876731 -0.24167837044406473 1.0 10054 +545047 Gm5800 predicted gene 5800 Novel U 0.0021507103219044407 -0.24170511186645807 1.0 10055 +57837 Eral1 Era like 12S mitochondrial rRNA chaperone 1 Novel N 0.0021496644805674785 -0.24171594465664614 1.0 10056 +404285 Vmn1r64 vomeronasal 1 receptor 64 Novel U 0.002149604451078586 -0.2417165664401187 1.0 10057 +100012 Oog3 oogenesin 3 Novel U 0.002149556146225154 -0.24171706678020263 1.0 10058 +74090 Paqr5 progestin and adipoQ receptor family member V Novel U 0.0021494219783399797 -0.24171845648674672 1.0 10059 +67634 Ftmt ferritin mitochondrial Novel N 0.002148963850371709 -0.24172320176118192 1.0 10060 +67087 Ctnnbip1 catenin beta interacting protein 1 Novel U 0.0021486005706063695 -0.24172696460104917 1.0 10061 +12192 Zfp36l1 zinc finger protein 36, C3H type-like 1 Novel U 0.002147711506568039 -0.24173617349713178 1.0 10062 +633285 Rbm46 RNA binding motif protein 46 Novel U 0.002146980748520283 -0.24174374266496804 1.0 10063 +118449 Synpo2 synaptopodin 2 Novel U 0.002146404662385218 -0.24174970974621723 1.0 10064 +28030 Gfm1 G elongation factor, mitochondrial 1 Novel N 0.002146131372703085 -0.24175254047176084 1.0 10065 +76594 Dnajc18 DnaJ heat shock protein family (Hsp40) member C18 Novel U 0.002145708610893917 -0.24175691942468266 1.0 10066 +71238 Sdhaf3 succinate dehydrogenase complex assembly factor 3 Novel U 0.0021453388930978935 -0.24176074894946006 1.0 10067 +19052 Ppp2ca protein phosphatase 2 (formerly 2A), catalytic subunit, alpha isoform Novel U 0.0021435717025742626 -0.24177905345081058 1.0 10068 +18489 Reg3b regenerating islet-derived 3 beta Novel U 0.0021433875546034652 -0.24178096084943856 1.0 10069 +218294 Cdc14b CDC14 cell division cycle 14B Novel U 0.0021425230590669826 -0.24178991526578666 1.0 10070 +68260 Trmt12 tRNA methyltransferase 12 Novel U 0.0021424175147261248 -0.24179100849059973 1.0 10071 +100043058 Gm10665 predicted gene 10665 Novel U 0.0021423202805818317 -0.2417920156386699 1.0 10072 +76757 Trdn triadin Novel U 0.0021412758172347883 -0.24180283415568368 1.0 10073 +13138 Dag1 dystroglycan 1 Novel U 0.002140989528442269 -0.24180579952558537 1.0 10074 +12796 Camp cathelicidin antimicrobial peptide Novel U 0.0021402334484021497 -0.24181363097778613 1.0 10075 +100039010 LOC100039010 PRAME family member 8-like Novel U 0.002138639292648717 -0.24183014319067517 1.0 10076 +229096 Ythdf3 YTH N6-methyladenosine RNA binding protein 3 Novel N 0.0021386247848112646 -0.24183029346237855 1.0 10077 +83564 Nlrp4c NLR family, pyrin domain containing 4C Novel U 0.002138113013132596 -0.24183559437660263 1.0 10078 +20016 Polr1c polymerase (RNA) I polypeptide C Novel U 0.0021376567271319566 -0.24184032057199764 1.0 10079 +118452 Baalc brain and acute leukemia, cytoplasmic Novel U 0.0021368302662254385 -0.2418488810268989 1.0 10080 +353237 Pcdhac2 protocadherin alpha subfamily C, 2 Novel N 0.002136441563689181 -0.24185290719499156 1.0 10081 +101055944 Speer1j spermatogenesis associated glutamate (E)-rich protein 1J Novel U 0.0021360284103697667 -0.24185718662349237 1.0 10082 +545370 Hmcn1 hemicentin 1 Novel U 0.0021337510367703547 -0.24188077558437046 1.0 10083 +140792 Colec12 collectin sub-family member 12 Novel U 0.002133023218601189 -0.24188831430104094 1.0 10084 +100502876 Kcnmb3 potassium large conductance calcium-activated channel, subfamily M, beta member 3 Novel N 0.0021325960440942596 -0.24189273896054111 1.0 10085 +108168637 Gm20834 predicted gene, 20834 Novel U 0.0021324201002303838 -0.2418945613812993 1.0 10086 +54447 Asah2 N-acylsphingosine amidohydrolase 2 Novel U 0.0021323344719096837 -0.24189544831663023 1.0 10087 +56441 Naa80 N(alpha)-acetyltransferase 80, NatH catalytic subunit Novel U 0.00213189766119021 -0.24189997278770314 1.0 10088 +69073 Kdf1 keratinocyte differentiation factor 1 Novel U 0.0021317779896506033 -0.24190121234157644 1.0 10089 +59092 Pcbp4 poly(rC) binding protein 4 Novel N 0.0021294949951859367 -0.24192485952319204 1.0 10090 +15568 Elavl1 ELAV like RNA binding protein 1 Novel U 0.002129311370213697 -0.24192676150461814 1.0 10091 +94230 Cpsf1 cleavage and polyadenylation specific factor 1 Novel N 0.002128255193317076 -0.2419377013501934 1.0 10092 +626870 Gm11992 predicted gene 11992 Novel U 0.0021276822110964004 -0.2419436362811994 1.0 10093 +74023 Rd3 retinal degeneration 3 Novel U 0.0021273661559996775 -0.2419469099695015 1.0 10094 +230233 Elp1 elongator complex protein 1 Novel U 0.002126993873646654 -0.241950766057876 1.0 10095 +51798 Ech1 enoyl coenzyme A hydratase 1, peroxisomal Novel U 0.0021267748216469064 -0.24195303499128845 1.0 10096 +245827 Fat2 FAT atypical cadherin 2 Novel N 0.0021265496986996777 -0.2419553668073753 1.0 10097 +73779 Prr27 proline rich 27 Novel U 0.002126415647077254 -0.24195675530967364 1.0 10098 +11997 Akr1b7 aldo-keto reductase family 1, member B7 Novel U 0.002126260855771928 -0.24195835863292575 1.0 10099 +26433 Plod3 procollagen-lysine, 2-oxoglutarate 5-dioxygenase 3 Novel U 0.0021250899229413546 -0.24197048711669247 1.0 10100 +105670 Rcbtb2 regulator of chromosome condensation (RCC1) and BTB (POZ) domain containing protein 2 Novel U 0.0021250642191813734 -0.2419707533553934 1.0 10101 +53761 Prrc2a proline-rich coiled-coil 2A Novel U 0.0021246295304076413 -0.24197525584742208 1.0 10102 +94282 Sfxn5 sideroflexin 5 Novel U 0.002124594719256721 -0.24197561642017895 1.0 10103 +73250 Ceacam5 CEA cell adhesion molecule 5 Novel U 0.002123802296774109 -0.24198382430620435 1.0 10104 +171255 Vmn1r201 vomeronasal 1 receptor 201 Novel U 0.0021229787352390777 -0.24199235472951108 1.0 10105 +277668 Pramel22 PRAME like 22 Novel U 0.0021220739778531838 -0.2420017261767719 1.0 10106 +18159 Nppc natriuretic peptide type C Novel U 0.002121901245689378 -0.24200351533084632 1.0 10107 +19714 Rev3l REV3 like, DNA directed polymerase zeta catalytic subunit Novel U 0.0021216788888695115 -0.24200581849547692 1.0 10108 +56371 Fzr1 fizzy and cell division cycle 20 related 1 Novel U 0.002120688603052551 -0.24201607584341508 1.0 10109 +217653 Mis18bp1 MIS18 binding protein 1 Novel U 0.002119709745587351 -0.24202621481686146 1.0 10110 +245650 Gucy2f guanylate cyclase 2f Novel U 0.0021183974887711127 -0.24203980712982592 1.0 10111 +214791 Sertad4 SERTA domain containing 4 Novel U 0.002117991636478375 -0.24204401093453243 1.0 10112 +66549 Aggf1 angiogenic factor with G patch and FHA domains 1 Novel U 0.00211788580346856 -0.24204510714936903 1.0 10113 +627576 Vmn2r101 vomeronasal 2, receptor 101 Novel U 0.0021167789862302252 -0.242056571525939 1.0 10114 +320343 Lypd6 LY6/PLAUR domain containing 6 Novel U 0.0021158528216406814 -0.2420661647083115 1.0 10115 +75272 Erich6b glutamate rich 6B Novel U 0.002115571161053174 -0.2420690821394178 1.0 10116 +234857 Spire2 spire type actin nucleation factor 2 Novel U 0.002115540144364915 -0.24206940340925517 1.0 10117 +100039810 Gm20816 predicted gene, 20816 Novel U 0.0021137773121543122 -0.2420876627673426 1.0 10118 +666420 Gm8094 predicted gene 8094 Novel U 0.00211255878004293 -0.24210028428289523 1.0 10119 +13480 Dpm1 dolichyl-phosphate mannosyltransferase subunit 1, catalytic Novel U 0.0021114215790514913 -0.24211206337338106 1.0 10120 +216618 Cfap36 cilia and flagella associated protein 36 Novel U 0.002110646104053469 -0.24212009571791823 1.0 10121 +17287 Mep1a meprin 1 alpha Novel U 0.002110150424475185 -0.2421252299506955 1.0 10122 +216846 Cntrob centrobin, centrosomal BRCA2 interacting protein Novel U 0.0021101419895223996 -0.24212531731965917 1.0 10123 +382236 Brwd3 bromodomain and WD repeat domain containing 3 Novel U 0.002110012464841386 -0.2421266589320472 1.0 10124 +637896 Vmn2r78 vomeronasal 2, receptor 78 Novel U 0.0021092334091515597 -0.24213472836527236 1.0 10125 +70681 Abraxas1 BRCA1 A complex subunit Novel U 0.002109033005182849 -0.24213680414299232 1.0 10126 +353025 Caps2 calcyphosphine 2 Novel U 0.0021089774515545934 -0.24213737956564757 1.0 10127 +102633301 Gm31160 predicted gene, 31160 Novel U 0.0021089027828182093 -0.24213815298196445 1.0 10128 +672511 Rnf213 ring finger protein 213 Novel U 0.0021078833541265194 -0.24214871219084105 1.0 10129 +242737 Oog4 oogenesin 4 Novel U 0.002107600679044407 -0.2421516401300491 1.0 10130 +56307 Metap2 methionine aminopeptidase 2 Novel N 0.0021064316541996265 -0.24216374885096173 1.0 10131 +319184 H2bc12 H2B clustered histone 12 Novel U 0.0021064299456152852 -0.2421637665484222 1.0 10132 +15451 Hpn hepsin Novel U 0.002106128531362443 -0.24216688858734467 1.0 10133 +192191 Med9 mediator complex subunit 9 Novel U 0.0021061111669888454 -0.2421670684469556 1.0 10134 +211623 Plac9 placenta specific 9 Novel U 0.0021051881915382844 -0.24217662859633132 1.0 10135 +22368 Trpv2 transient receptor potential cation channel, subfamily V, member 2 Novel U 0.0021048861083468127 -0.2421797575640981 1.0 10136 +171196 Vmn1r22 vomeronasal 1 receptor 22 Novel U 0.0021045226158475203 -0.24218352260745662 1.0 10137 +268379 Abca13 ATP-binding cassette, sub-family A member 13 Novel N 0.0021038443363025627 -0.24219054820468605 1.0 10138 +99045 Mrps26 mitochondrial ribosomal protein S26 Novel U 0.0021021088995538625 -0.24220852380147967 1.0 10139 +14976 Pfdn6 prefoldin subunit 6 Novel U 0.0021009424071491735 -0.24222060629146108 1.0 10140 +16949 Loxl1 lysyl oxidase-like 1 Novel N 0.0020999804380740783 -0.24223057033551787 1.0 10141 +77006 Ddrgk1 DDRGK domain containing 1 Novel U 0.0020987579851404533 -0.2422432324628184 1.0 10142 +16765 Stmn1 stathmin 1 Novel U 0.0020978202790290106 -0.24225294519189527 1.0 10143 +100042312 Gm10128 alpha-takusan pseudogene Novel U 0.0020977155188192063 -0.24225403029470463 1.0 10144 +319188 H2bc22 H2B clustered histone 22 Novel U 0.0020971650741653442 -0.24225973178233443 1.0 10145 +319156 H4c4 H4 clustered histone 4 Novel U 0.0020966939056765443 -0.2422646121300526 1.0 10146 +67285 Cwc27 CWC27 spliceosome-associated protein Novel U 0.0020953862347198723 -0.24227815694283444 1.0 10147 +16500 Kcnb1 potassium voltage gated channel, Shab-related subfamily, member 1 Novel U 0.0020953444333817466 -0.24227858991972062 1.0 10148 +21848 Trim24 tripartite motif-containing 24 Novel N 0.0020952506635398284 -0.24227956118466068 1.0 10149 +11468 Actg2 actin, gamma 2, smooth muscle, enteric Novel U 0.0020951994580933457 -0.24228009156899205 1.0 10150 +11634 Aire autoimmune regulator Novel U 0.0020940851364227996 -0.24229163367622422 1.0 10151 +80281 Cttnbp2nl CTTNBP2 N-terminal like Novel U 0.0020940117683751042 -0.24229239362005042 1.0 10152 +243548 Prickle2 prickle planar cell polarity protein 2 Novel U 0.0020939225172795055 -0.24229331807996465 1.0 10153 +211401 Mtss1 MTSS I-BAR domain containing 1 Novel U 0.0020923267413646435 -0.24230984707443246 1.0 10154 +68184 Denr density-regulated protein Novel U 0.0020916740321556496 -0.24231660781496256 1.0 10155 +19225 Ptgs2 prostaglandin-endoperoxide synthase 2 Novel N 0.0020915791023089453 -0.24231759109519407 1.0 10156 +13030 Ctsb cathepsin B Novel N 0.00209116733256319 -0.24232185619268443 1.0 10157 +246102 Rttn rotatin Novel N 0.0020907742167360615 -0.24232592807349884 1.0 10158 +66877 Crnkl1 crooked neck pre-mRNA splicing factor 1 Novel N 0.0020898430441020984 -0.24233557312903078 1.0 10159 +171567 Nme7 NME/NM23 family member 7 Novel U 0.002089371269614806 -0.2423404597536614 1.0 10160 +319817 Rc3h2 ring finger and CCCH-type zinc finger domains 2 Novel U 0.0020883281946627416 -0.24235126388972564 1.0 10161 +19942 Rpl27 ribosomal protein L27 Novel U 0.0020882772837253487 -0.24235179122354156 1.0 10162 +104943 Fam110c family with sequence similarity 110, member C Novel U 0.002088061043525182 -0.24235403103242636 1.0 10163 +232146 Eva1a eva-1 homolog A, regulator of programmed cell death Novel U 0.0020871322942528814 -0.24236365098685786 1.0 10164 +66375 Dhrs7 dehydrogenase/reductase 7 Novel U 0.002087005856857594 -0.24236496062124183 1.0 10165 +665378 Gm7609 predicted pseudogene 7609 Novel U 0.0020865194569802538 -0.2423699987351818 1.0 10166 +208144 Dhx37 DEAH-box helicase 37 Novel U 0.0020863741826855414 -0.2423715034815508 1.0 10167 +239364 Tspyl5 testis-specific protein, Y-encoded-like 5 Novel U 0.0020863051308363536 -0.24237221871833473 1.0 10168 +18106 Cd244a CD244 molecule A Novel U 0.002086025310155158 -0.24237511709175194 1.0 10169 +14632 Gli1 GLI-Kruppel family member GLI1 Novel U 0.002085767179171796 -0.24237779080399202 1.0 10170 +242151 Kcna10 potassium voltage-gated channel, shaker-related subfamily, member 10 Novel N 0.0020856971321656296 -0.2423785163485792 1.0 10171 +381622 5031410I06Rik RIKEN cDNA 5031410I06 gene Novel U 0.002082848240734529 -0.2424080250723703 1.0 10172 +100041546 Ly6c2 lymphocyte antigen 6 family memberC2 Novel U 0.002082602977435351 -0.24241056550156057 1.0 10173 +102636873 Gm8247 predicted gene 8247 Novel U 0.002081908498261469 -0.24241775889401385 1.0 10174 +27405 Abcg3 ATP binding cassette subfamily G member 3 Novel U 0.0020805365962503347 -0.24243196900994635 1.0 10175 +102638847 Gm35315 predicted gene, 35315 Novel U 0.002079536716431317 -0.24244232573224245 1.0 10176 +64931 Izumo1r IZUMO1 receptor, JUNO Novel U 0.0020794964649067755 -0.24244274265621046 1.0 10177 +237988 Cdr2l cerebellar degeneration-related protein 2-like Novel U 0.0020793580369654952 -0.24244417648827565 1.0 10178 +210126 Lpp LIM domain containing preferred translocation partner in lipoma Novel U 0.002078291675569964 -0.24245522182455584 1.0 10179 +17395 Mmp9 matrix metallopeptidase 9 Novel U 0.0020782593764279433 -0.24245555637800711 1.0 10180 +16803 Lbp lipopolysaccharide binding protein Novel U 0.002078152069775028 -0.2424566678567905 1.0 10181 +100043103 Vmn1r169 vomeronasal 1 receptor 169 Novel U 0.002078138147912669 -0.24245681205898315 1.0 10182 +21924 Tnnc1 troponin C, cardiac/slow skeletal Novel U 0.0020765521802331662 -0.24247323946007154 1.0 10183 +50786 Hs6st2 heparan sulfate 6-O-sulfotransferase 2 Novel U 0.002075449433319952 -0.24248466167634777 1.0 10184 +100041256 Gm20867 predicted gene, 20867 Novel U 0.0020748321578968206 -0.24249105539488874 1.0 10185 +76117 Arhgap15 Rho GTPase activating protein 15 Novel U 0.0020738174521622616 -0.24250156568353065 1.0 10186 +668100 Cwc22rt2 CWC22 spliceosome-associated protein, retrotransposed 2 Novel U 0.0020737937736429327 -0.24250181094485548 1.0 10187 +546913 Vmn2r22 vomeronasal 2, receptor 22 Novel U 0.0020737834244947866 -0.24250191814099176 1.0 10188 +24117 Wif1 Wnt inhibitory factor 1 Novel U 0.002073618789660295 -0.24250362342319534 1.0 10189 +12652 Chga chromogranin A Novel U 0.002073383080410765 -0.24250606489185345 1.0 10190 +66349 Dmac2 distal membrane arm assembly complex 2 Novel N 0.0020732936452700535 -0.24250699125810093 1.0 10191 +381626 Rbm33 RNA binding motif protein 33 Novel N 0.0020732126992129224 -0.24250782969469972 1.0 10192 +18030 Nfil3 nuclear factor, interleukin 3, regulated Novel N 0.0020729808323524924 -0.24251023136401786 1.0 10193 +24112 Vmn1r49 vomeronasal 1, receptor 49 Novel U 0.002072411652808681 -0.24251612690702187 1.0 10194 +27878 Tada1 transcriptional adaptor 1 Novel U 0.002072373052564244 -0.24251652672708485 1.0 10195 +243725 Ppp1r9a protein phosphatase 1, regulatory subunit 9A Novel U 0.0020722165514900984 -0.24251814776006614 1.0 10196 +14618 Gjb1 gap junction protein, beta 1 Novel U 0.002069411331070342 -0.24254720414095735 1.0 10197 +100039087 Gm2042 predicted gene 2042 Novel U 0.002069104156119043 -0.24255038584900504 1.0 10198 +17225 Mcpt2 mast cell protease 2 Novel U 0.002068931625144024 -0.24255217291917266 1.0 10199 +408190 Wfdc13 WAP four-disulfide core domain 13 Novel U 0.0020686472279505637 -0.24255511869595345 1.0 10200 +226154 Lzts2 leucine zipper, putative tumor suppressor 2 Novel U 0.0020683924053641104 -0.2425577581399271 1.0 10201 +18636 Cfp complement factor properdin Novel N 0.0020680291262159096 -0.24256152097340203 1.0 10202 +17721 ND5 NADH dehydrogenase subunit 5 Novel N 0.0020667854878795144 -0.242574402538408 1.0 10203 +67867 Lrrc28 leucine rich repeat containing 28 Novel U 0.0020667000294918806 -0.24257528771357778 1.0 10204 +241950 Bbs12 Bardet-Biedl syndrome 12 Novel N 0.0020664052797095744 -0.24257834072213352 1.0 10205 +17690 Msi1 musashi RNA-binding protein 1 Novel N 0.0020661096963104824 -0.24258140236526457 1.0 10206 +100039441 Gm2237 predicted gene 2237 Novel U 0.00206568701060475 -0.24258578052990948 1.0 10207 +330817 Dhps deoxyhypusine synthase Novel U 0.0020651728427113496 -0.24259110626404698 1.0 10208 +244484 Wdr17 WD repeat domain 17 Novel U 0.0020647025814003656 -0.24259597721524712 1.0 10209 +69863 Ttc39b tetratricopeptide repeat domain 39B Novel U 0.002064693284607532 -0.2425960735111217 1.0 10210 +76574 Mfsd2a MFSD2 lysolipid transporter A, lysophospholipid Novel U 0.0020622849451708194 -0.24262101901183727 1.0 10211 +75596 Prl7b1 prolactin family 7, subfamily b, member 1 Novel U 0.002062271113695057 -0.24262116227780853 1.0 10212 +14029 Evx2 even-skipped homeobox 2 Novel U 0.002061894048462656 -0.2426250679070904 1.0 10213 +23872 Ets2 E26 avian leukemia oncogene 2, 3' domain Novel N 0.0020602960750348586 -0.24264161966332495 1.0 10214 +226075 Glis3 GLIS family zinc finger 3 Novel U 0.002060167011250595 -0.24264295650175963 1.0 10215 +434117 Vmn2r50 vomeronasal 2, receptor 50 Novel U 0.0020601596231319534 -0.24264303302764964 1.0 10216 +171206 Vmn1r27 vomeronasal 1 receptor 27 Novel U 0.0020597494915633335 -0.24264728115695505 1.0 10217 +211578 Mrgprd MAS-related GPR, member D Novel U 0.0020591407645480877 -0.24265358633136813 1.0 10218 +102631730 4930512M02Rik RIKEN cDNA 4930512M02 gene Novel U 0.0020586524903971008 -0.2426586438589729 1.0 10219 +19263 Ptprb protein tyrosine phosphatase receptor type B Novel N 0.002057541853860765 -0.24267014779570606 1.0 10220 +233221 Mrgpra1 MAS-related GPR, member A1 Novel U 0.002056138949077226 -0.24268467903733598 1.0 10221 +347710 Pramel4 PRAME like 4 Novel U 0.0020553617321673913 -0.2426927294245384 1.0 10222 +100861655 LOC100861655 PRAME family member 9/15-like Novel U 0.002054670155116006 -0.2426998927569023 1.0 10223 +17441 Mog myelin oligodendrocyte glycoprotein Novel U 0.0020543608337350618 -0.2427030966975977 1.0 10224 +207375 Fam120c family with sequence similarity 120, member C Novel U 0.002053681508188239 -0.24271013312928008 1.0 10225 +100042168 Btbd35f3 BTB domain containing 35, family member 3 Novel U 0.002053448134064146 -0.24271255041078568 1.0 10226 +14904 Gtpbp1 GTP binding protein 1 Novel N 0.002052905066895216 -0.24271817548266908 1.0 10227 +269633 Wdr86 WD repeat domain 86 Novel U 0.0020528715046947035 -0.24271852311883868 1.0 10228 +626299 Vmn1r194 vomeronasal 1 receptor 194 Novel U 0.00205276271676008 -0.24271964994068929 1.0 10229 +94071 Clec2h C-type lectin domain family 2, member h Novel U 0.002052126642732045 -0.2427262383745619 1.0 10230 +20541 Slc8a1 solute carrier family 8 (sodium/calcium exchanger), member 1 Novel U 0.002051459273332224 -0.24273315096486667 1.0 10231 +378702 Serf2 small EDRK-rich factor 2 Novel U 0.0020511110081121355 -0.24273675828456776 1.0 10232 +360213 Trim46 tripartite motif-containing 46 Novel U 0.0020510101565673414 -0.2427378029015534 1.0 10233 +378462 Morn2 MORN repeat containing 2 Novel U 0.0020507933097990688 -0.24274004899325072 1.0 10234 +22268 Upk1b uroplakin 1B Novel N 0.002050778253716661 -0.24274020494365733 1.0 10235 +234814 Mthfsd methenyltetrahydrofolate synthetase domain containing Novel U 0.0020501848340861114 -0.24274635156468294 1.0 10236 +78334 Cdk19 cyclin dependent kinase 19 Novel U 0.0020490765637246936 -0.2427578309926541 1.0 10237 +79554 Cptp ceramide-1-phosphate transfer protein Novel U 0.0020482053356202655 -0.24276685514471968 1.0 10238 +59050 Nsa2 NSA2 ribosome biogenesis homolog Novel U 0.0020478823091448985 -0.2427702010423326 1.0 10239 +227298 Retreg2 reticulophagy regulator family member 2 Novel U 0.002047231690578659 -0.24277694012805376 1.0 10240 +67226 Tmem19 transmembrane protein 19 Novel U 0.0020471015548165954 -0.24277828806999927 1.0 10241 +54561 Nap1l3 nucleosome assembly protein 1-like 3 Novel U 0.0020462269787176485 -0.24278734690048198 1.0 10242 +241490 Rbm45 RNA binding motif protein 45 Novel U 0.002044254949303217 -0.2428077731163297 1.0 10243 +246316 Lgi2 leucine-rich repeat LGI family, member 2 Novel U 0.0020438704112942297 -0.2428117561483858 1.0 10244 +16480 Jup junction plakoglobin Novel U 0.00204263944207603 -0.24282450648708198 1.0 10245 +228913 Zfp217 zinc finger protein 217 Novel N 0.0020421160146913715 -0.24282992813072551 1.0 10246 +243300 Nyap1 neuronal tyrosine-phosphorylated phosphoinositide 3-kinase adaptor 1 Novel U 0.002041724916096431 -0.24283397911711527 1.0 10247 +102635357 Cdc5lrt1 cell division cycle 5 like, retrotransposed 1 Novel U 0.0020414719442631685 -0.24283659939104818 1.0 10248 +13478 Dpagt1 dolichyl-phosphate N-acetylglucosaminephosphotransferase 1 Novel U 0.0020414115146686093 -0.24283722531880209 1.0 10249 +58206 Zbtb32 zinc finger and BTB domain containing 32 Novel N 0.0020413491646586834 -0.24283787113815528 1.0 10250 +67529 Fgfr1op2 FGFR1 oncogene partner 2 Novel U 0.0020413040254042146 -0.24283833868906918 1.0 10251 +19110 Prl4a1 prolactin family 4, subfamily a, member 1 Novel U 0.002041104710180949 -0.24284040318959965 1.0 10252 +20624 Eftud2 elongation factor Tu GTP binding domain containing 2 Novel U 0.0020406082839801013 -0.24284554515586887 1.0 10253 +68119 Cmtm3 CKLF-like MARVEL transmembrane domain containing 3 Novel U 0.0020405981622362676 -0.24284564999655878 1.0 10254 +546648 Klhdc7b kelch domain containing 7B Novel U 0.0020395069555878727 -0.24285695267915136 1.0 10255 +73736 Fcf1 FCF1 rRNA processing protein Novel U 0.002039457961741741 -0.24285746015579904 1.0 10256 +50767 Pnpla6 patatin-like phospholipase domain containing 6 Novel U 0.002039013118841929 -0.24286206782393185 1.0 10257 +17288 Mep1b meprin 1 beta Novel U 0.0020386027008774837 -0.2428663189197158 1.0 10258 +20568 Slpi secretory leukocyte peptidase inhibitor Novel U 0.0020371423442883305 -0.24288144524525962 1.0 10259 +26559 Hunk hormonally upregulated Neu-associated kinase Novel N 0.0020366619616164748 -0.24288642103318295 1.0 10260 +69709 Ptrhd1 peptidyl-tRNA hydrolase domain containing 1 Novel U 0.0020356888907761004 -0.2428965000689596 1.0 10261 +11545 Parp1 poly (ADP-ribose) polymerase family, member 1 Novel U 0.002035332828409743 -0.2429001881512454 1.0 10262 +320790 Chd7 chromodomain helicase DNA binding protein 7 Novel U 0.0020344829967072374 -0.24290899068008323 1.0 10263 +50755 Fbh1 F-box DNA helicase 1 Novel N 0.002034339022172884 -0.24291048196357715 1.0 10264 +66193 Pithd1 PITH (C-terminal proteasome-interacting domain of thioredoxin-like) domain containing 1 Novel N 0.002034049183067507 -0.24291348410750274 1.0 10265 +320808 Dcaf5 DDB1 and CUL4 associated factor 5 Novel U 0.00203327274695361 -0.2429215264072465 1.0 10266 +105245675 Gm21560 predicted gene, 21560 Novel U 0.0020315080277755605 -0.2429398053104807 1.0 10267 +14008 Etv2 ets variant 2 Novel U 0.002031261984555904 -0.24294235381806167 1.0 10268 +20826 Snu13 SNU13 homolog, small nuclear ribonucleoprotein (U4/U6.U5) Novel N 0.002031155919412076 -0.24294345243733473 1.0 10269 +71820 Dync2i2 dynein 2 intermediate chain 2 Novel U 0.002031121654096351 -0.24294380735634863 1.0 10270 +20917 Suclg2 succinate-Coenzyme A ligase, GDP-forming, beta subunit Novel U 0.002031107314544585 -0.2429439558849544 1.0 10271 +665802 Pramel35 PRAME like 35 Novel U 0.0020303150158693414 -0.24295216248858717 1.0 10272 +236285 Lancl3 LanC lantibiotic synthetase component C-like 3 (bacterial) Novel U 0.0020284863129678686 -0.24297110413312525 1.0 10273 +407788 Tsbp1 testis expressed basic protein 1 Novel U 0.002028188387289568 -0.2429741900375073 1.0 10274 +108168662 Gm20924 predicted gene, 20924 Novel U 0.00202786637421901 -0.24297752543830656 1.0 10275 +13446 Doc2a double C2, alpha Novel U 0.0020278324954831886 -0.24297787635313847 1.0 10276 +12905 Cradd CASP2 and RIPK1 domain containing adaptor with death domain Novel U 0.0020277667782380854 -0.24297855705020294 1.0 10277 +22062 Trp73 transformation related protein 73 Novel N 0.002027665215456629 -0.24297960903415455 1.0 10278 +214917 Antkmt adenine nucleotide translocase lysine methyltransferase Novel N 0.0020275460046911436 -0.2429808438153446 1.0 10279 +100727 Ugt2b34 UDP glucuronosyltransferase 2 family, polypeptide B34 Novel U 0.0020273792067699455 -0.2429825715027292 1.0 10280 +20623 Snrk SNF related kinase Novel N 0.002027183834657986 -0.24298459516064236 1.0 10281 +68955 Srrm4 serine/arginine repetitive matrix 4 Novel N 0.00202701695941874 -0.24298632364888473 1.0 10282 +667992 Tas2r103 taste receptor, type 2, member 103 Novel U 0.002027006919576666 -0.2429864276412389 1.0 10283 +237891 Gas2l2 growth arrest-specific 2 like 2 Novel U 0.002026884492501563 -0.24298769573685824 1.0 10284 +230393 Focad focadhesin Novel U 0.0020261798659875073 -0.2429949942351275 1.0 10285 +100042130 Gm10376 predicted gene 10376 Novel U 0.002026167174244771 -0.24299512569578155 1.0 10286 +208922 Cpeb3 cytoplasmic polyadenylation element binding protein 3 Novel N 0.002025036394110175 -0.24300683827924327 1.0 10287 +73419 Armt1 acidic residue methyltransferase 1 Novel N 0.0020235304236709325 -0.24302243707154686 1.0 10288 +171241 Vmn1r75 vomeronasal 1 receptor 75 Novel U 0.0020235214564438358 -0.24302252995379034 1.0 10289 +69171 Cnppd1 cyclin Pas1/PHO80 domain containing 1 Novel U 0.0020226579213328986 -0.24303147442208223 1.0 10290 +19894 Rph3a rabphilin 3A Novel U 0.002022575580651463 -0.24303232730415372 1.0 10291 +387349 Tas2r121 taste receptor, type 2, member 121 Novel U 0.0020207792413835172 -0.24305093372723965 1.0 10292 +19070 Mob4 MOB family member 4, phocein Novel U 0.002019919120035878 -0.24305984283588353 1.0 10293 +330406 B4galnt3 beta-1,4-N-acetyl-galactosaminyl transferase 3 Novel U 0.002019887955678448 -0.24306016563527333 1.0 10294 +69168 Bola1 bolA family member 1 Novel U 0.002019601493688117 -0.24306313279915223 1.0 10295 +240913 Adamts4 ADAM metallopeptidase with thrombospondin type 1 motif 4 Novel U 0.0020190528565232056 -0.2430688155648709 1.0 10296 +171228 Vmn1r225 vomeronasal 1 receptor 225 Novel U 0.0020178927270068556 -0.24308083214826406 1.0 10297 +329941 Col8a2 collagen, type VIII, alpha 2 Novel N 0.0020177204298963357 -0.24308261679607088 1.0 10298 +12873 Cpa3 carboxypeptidase A3, mast cell Novel N 0.0020158815306063893 -0.24310166405446557 1.0 10299 +56404 Trip4 thyroid hormone receptor interactor 4 Novel U 0.002015314262567245 -0.24310753979816707 1.0 10300 +16431 Itm2a integral membrane protein 2A Novel U 0.002014984839734999 -0.24311095194903432 1.0 10301 +14198 Fhit fragile histidine triad gene Novel U 0.0020148882542060137 -0.24311195237876845 1.0 10302 +67888 Tmem100 transmembrane protein 100 Novel U 0.002014850834571313 -0.24311233997011458 1.0 10303 +11464 Actc1 actin, alpha, cardiac muscle 1 Novel U 0.0020139264569206065 -0.2431219146434333 1.0 10304 +109346 Ankrd39 ankyrin repeat domain 39 Novel U 0.0020133074151532445 -0.24312832665770975 1.0 10305 +14470 Rabac1 Rab acceptor 1 (prenylated) Novel U 0.0020125785931793413 -0.24313587577175672 1.0 10306 +12790 Cnga3 cyclic nucleotide gated channel alpha 3 Novel N 0.0020123687124669587 -0.24313804970927613 1.0 10307 +382137 Fdxacb1 ferredoxin-fold anticodon binding domain containing 1 Novel U 0.002012361101653647 -0.2431381285418302 1.0 10308 +80748 BC004004 cDNA sequence BC004004 Novel U 0.00201195009202888 -0.24314238576601233 1.0 10309 +19935 Mrpl23 mitochondrial ribosomal protein L23 Novel U 0.0020114427097084496 -0.24314764121540805 1.0 10310 +171269 Vmn1r210 vomeronasal 1 receptor 210 Novel U 0.0020109259253674613 -0.24315299405062366 1.0 10311 +268567 Tmem229b transmembrane protein 229B Novel U 0.002009505689012264 -0.24316770481210304 1.0 10312 +93896 Glp2r glucagon-like peptide 2 receptor Novel N 0.0020087858805180134 -0.24317516056482402 1.0 10313 +450219 Gsdma3 gasdermin A3 Novel U 0.002007503232478767 -0.2431884461910498 1.0 10314 +627814 Vmn2r109 vomeronasal 2, receptor 109 Novel U 0.002007395917626085 -0.24318955775476606 1.0 10315 +29807 Tpk1 thiamine pyrophosphokinase Novel N 0.0020073551471914966 -0.24318998005358727 1.0 10316 +225182 Rbbp8 retinoblastoma binding protein 8, endonuclease Novel U 0.0020071744535932706 -0.24319185167193771 1.0 10317 +100038991 Rpl35rt ribosomal protein L35, retrotransposed Novel U 0.002006926137080394 -0.2431944237262151 1.0 10318 +434285 BB014433 expressed sequence BB014433 Novel U 0.0020060778893143966 -0.24320320984869068 1.0 10319 +100040208 Gm2663 predicted gene 2663 Novel U 0.002005934692380078 -0.24320469307782902 1.0 10320 +666706 Gm8246 predicted gene 8246 Novel U 0.0020058169712126508 -0.24320591242981138 1.0 10321 +58860 Adamdec1 ADAM-like, decysin 1 Novel U 0.0020047610563828097 -0.24321684956090753 1.0 10322 +71276 Ccdc57 coiled-coil domain containing 57 Novel U 0.0020042071791287327 -0.2432225866032975 1.0 10323 +68099 Cibar1 CBY1 interacting BAR domain containing 1 Novel N 0.002003203012179664 -0.24323298773154572 1.0 10324 +75415 Arhgap12 Rho GTPase activating protein 12 Novel U 0.0020030432841336514 -0.24323464218939558 1.0 10325 +624855 Cks1brt CDC28 protein kinase 1b, retrogene Novel U 0.0020029403689472446 -0.24323570818151322 1.0 10326 +16531 Kcnma1 potassium large conductance calcium-activated channel, subfamily M, alpha member 1 Novel U 0.002002668609832141 -0.24323852305349386 1.0 10327 +18647 Cdk14 cyclin dependent kinase 14 Novel N 0.0020023473112111417 -0.24324185105404805 1.0 10328 +636808 Cntnap5a contactin associated protein-like 5A Novel U 0.002002023417656163 -0.2432452059328431 1.0 10329 +21414 Tcf7 transcription factor 7, T cell specific Novel U 0.0020018195975131637 -0.24324731709518407 1.0 10330 +20657 Sod3 superoxide dismutase 3, extracellular Novel U 0.0020013431195742473 -0.243252252438012 1.0 10331 +574405 Pwwp4b PWWP domain containing 4B Novel U 0.0020007483794241914 -0.24325841273693524 1.0 10332 +140810 Ttbk2 tau tubulin kinase 2 Novel U 0.0019995852424828744 -0.24327046047113732 1.0 10333 +14536 Nr6a1 nuclear receptor subfamily 6, group A, member 1 Novel U 0.0019993823357240953 -0.24327256217267457 1.0 10334 +71853 Pdia6 protein disulfide isomerase associated 6 Novel U 0.0019984046386852623 -0.24328268912646273 1.0 10335 +639774 Skint8 selection and upkeep of intraepithelial T cells 8 Novel U 0.001998015535634909 -0.2432867194430672 1.0 10336 +101359 Prrt4 proline-rich transmembrane protein 4 Novel U 0.00199782184487744 -0.24328872568556587 1.0 10337 +12563 Cdh6 cadherin 6 Novel N 0.001996868634702612 -0.2432985990052216 1.0 10338 +16780 Lamb3 laminin, beta 3 Novel U 0.0019963967294124706 -0.24330348698470386 1.0 10339 +83553 Tktl1 transketolase-like 1 Novel N 0.00199579997190433 -0.24330966817935581 1.0 10340 +12993 Csn1s2a casein alpha s2-like A Novel U 0.0019955489634588164 -0.243312268116583 1.0 10341 +72554 Utp14a UTP14A small subunit processome component Novel U 0.001995097849764641 -0.2433169407373977 1.0 10342 +19892 Rpe65 retinal pigment epithelium 65 Novel U 0.0019950775283726833 -0.24331715122570757 1.0 10343 +68440 Dusp23 dual specificity phosphatase 23 Novel N 0.00199339831608114 -0.24333454445142225 1.0 10344 +238328 Vash1 vasohibin 1 Novel U 0.001993204441395423 -0.24333655259904363 1.0 10345 +270106 Rpl13 ribosomal protein L13 Novel N 0.0019927893335929467 -0.24334085227201574 1.0 10346 +101142 Itfg2 integrin alpha FG-GAP repeat containing 2 Novel N 0.0019926125843157828 -0.24334268303521825 1.0 10347 +69376 Zpbp2 zona pellucida binding protein 2 Novel U 0.0019919861398406766 -0.24334917172649814 1.0 10348 +215654 Cdh12 cadherin 12 Novel U 0.001991813013600933 -0.24335096496239825 1.0 10349 +671535 Parp10 poly (ADP-ribose) polymerase family, member 10 Novel U 0.0019917252843655066 -0.24335187365893482 1.0 10350 +72981 Thap12 THAP domain containing 12 Novel N 0.001991400380018119 -0.2433552390074844 1.0 10351 +75452 Ascc2 activating signal cointegrator 1 complex subunit 2 Novel U 0.0019913136710765778 -0.2433561371358505 1.0 10352 +67241 Smc6 structural maintenance of chromosomes 6 Novel U 0.0019910444814142877 -0.24335892539352336 1.0 10353 +381062 Ermard ER membrane associated RNA degradation Novel U 0.0019908301291266333 -0.24336114564747244 1.0 10354 +72194 Fbxl20 F-box and leucine-rich repeat protein 20 Novel U 0.001989900215025883 -0.24337077766715873 1.0 10355 +233549 Mogat2 monoacylglycerol O-acyltransferase 2 Novel U 0.0019896562615317978 -0.2433733045294309 1.0 10356 +68115 Maip1 matrix AAA peptidase interacting protein 1 Novel U 0.001989539654458893 -0.24337451234165883 1.0 10357 +108168681 LOC108168681 PRAME family member 8-like Novel U 0.001988787479402616 -0.24338230334616529 1.0 10358 +102443350 Xndc1 Xrcc1 N-terminal domain containing 1 Novel U 0.0019887322987499406 -0.24338287490555174 1.0 10359 +240047 Mmp25 matrix metallopeptidase 25 Novel U 0.0019871999283771627 -0.24339874714749904 1.0 10360 +16651 Sspn sarcospan Novel N 0.0019870898391510083 -0.24339988744808455 1.0 10361 +230119 Zbtb5 zinc finger and BTB domain containing 5 Novel N 0.0019868106356055347 -0.24340277942923022 1.0 10362 +60507 Qtrt1 queuine tRNA-ribosyltransferase catalytic subunit 1 Novel N 0.001986601784635463 -0.24340494270071264 1.0 10363 +68897 Disp1 dispatched RND transporter family member 1 Novel U 0.0019857357040973947 -0.2434139135344551 1.0 10364 +231207 Cpeb2 cytoplasmic polyadenylation element binding protein 2 Novel N 0.001985662678526658 -0.2434146699309162 1.0 10365 +56698 Phax phosphorylated adaptor for RNA export Novel N 0.0019849999331486017 -0.24342153462575553 1.0 10366 +237730 Fbll1 fibrillarin-like 1 Novel U 0.001982383658826523 -0.24344863390917823 1.0 10367 +242627 Skint5 selection and upkeep of intraepithelial T cells 5 Novel U 0.001982367071438519 -0.2434488057207979 1.0 10368 +100038657 Myocos myocilin opposite strand Novel U 0.0019822266456048236 -0.24345026024696706 1.0 10369 +16625 Serpina3c serine (or cysteine) peptidase inhibitor, clade A, member 3C Novel U 0.0019810555314590263 -0.24346239060879094 1.0 10370 +258075 Or7g19 olfactory receptor family 7 subfamily G member 19 Novel U 0.001980820157177626 -0.24346482860786015 1.0 10371 +54124 Cks1b CDC28 protein kinase 1b Novel U 0.0019806779532605683 -0.24346630155135834 1.0 10372 +114896 Afg3l1 AFG3-like AAA ATPase 1 Novel U 0.0019805623396576258 -0.24346749907325702 1.0 10373 +628946 Vmn1r77 vomeronasal 1 receptor 77 Novel U 0.0019805354017182215 -0.24346777809554782 1.0 10374 +319583 Lig4 ligase IV, DNA, ATP-dependent Novel U 0.001979956065859382 -0.24347377883732904 1.0 10375 +16477 Junb jun B proto-oncogene Novel N 0.001979758534230385 -0.2434758248634487 1.0 10376 +381994 E030018B13Rik RIKEN cDNA E030018B13 gene Novel U 0.0019795557046756672 -0.24347792576530883 1.0 10377 +22311 Vmn2r32 vomeronasal 2, receptor 32 Novel U 0.001978485697266643 -0.24348900886687688 1.0 10378 +232430 Crebl2 cAMP responsive element binding protein-like 2 Novel N 0.0019784473396620003 -0.2434894061736848 1.0 10379 +18010 Neu1 neuraminidase 1 Novel U 0.0019783787654471473 -0.24349011646314803 1.0 10380 +227606 Tbpl2 TATA box binding protein like 2 Novel U 0.0019778209386546535 -0.2434958944147271 1.0 10381 +57330 Gigyf1 GRB10 interacting GYF protein 1 Novel U 0.0019776098919630507 -0.24349808042942095 1.0 10382 +20493 Slc10a1 solute carrier family 10 (sodium/bile acid cotransporter family), member 1 Novel N 0.001977465321601052 -0.243499577884478 1.0 10383 +50493 Txnrd1 thioredoxin reductase 1 Novel U 0.0019767781908322313 -0.24350669516239326 1.0 10384 +224405 Cyyr1 cysteine and tyrosine-rich protein 1 Novel U 0.0019767621239158545 -0.24350686158298493 1.0 10385 +667916 Speer1g spermatogenesis associated glutamate (E)-rich protein 1G Novel U 0.001975439050428772 -0.24352056593467045 1.0 10386 +228942 Cbln4 cerebellin 4 precursor protein Novel U 0.0019754180619520056 -0.2435207833326228 1.0 10387 +238564 Mylk4 myosin light chain kinase family, member 4 Novel U 0.0019753273642031752 -0.24352172277692366 1.0 10388 +106794 Dhx57 DExH-box helicase 57 Novel U 0.001974909339844106 -0.24352605265949312 1.0 10389 +74522 Morc2a microrchidia 2A Novel U 0.0019741804073697537 -0.24353360291810006 1.0 10390 +171265 Vmn1r185 vomeronasal 1 receptor 185 Novel U 0.001972909696417675 -0.24354676490036933 1.0 10391 +103136 Pwp1 PWP1 homolog, endonuclein Novel N 0.0019729057444005647 -0.24354680583523264 1.0 10392 +80385 Tusc2 tumor suppressor 2, mitochondrial calcium regulator Novel U 0.0019718304224617712 -0.24355794398452538 1.0 10393 +17180 Matn1 matrilin 1, cartilage matrix protein Novel N 0.0019716652709519233 -0.24355965461843532 1.0 10394 +72325 Vps9d1 VPS9 domain containing 1 Novel N 0.001971348692166145 -0.24356293373109142 1.0 10395 +70394 Kptn kaptin Novel U 0.0019711075803505256 -0.2435654311593515 1.0 10396 +11606 Agt angiotensinogen Novel U 0.0019703793339293785 -0.24357297431184194 1.0 10397 +108072 Grm6 glutamate receptor, metabotropic 6 Novel U 0.0019703096182396695 -0.24357369642466417 1.0 10398 +19119 Prm2 protamine 2 Novel U 0.001969838719823102 -0.243578573974983 1.0 10399 +207212 Arhgef17 Rho guanine nucleotide exchange factor 17 Novel U 0.001969802984177885 -0.2435789441236214 1.0 10400 +71458 Bcor BCL6 interacting corepressor Novel U 0.0019690582979639162 -0.24358665755894546 1.0 10401 +22321 Vars1 valyl-tRNA synthetase 1 Novel N 0.001968967495833827 -0.24358759808442396 1.0 10402 +17717 ND2 NADH dehydrogenase subunit 2 Novel N 0.001968773763809717 -0.24358960475436112 1.0 10403 +244886 Tmem266 transmembrane protein 266 Novel U 0.00196870240707773 -0.24359034386504527 1.0 10404 +236785 Or5o1 olfactory receptor family 5 subfamily N member 1 Novel U 0.001968668345531036 -0.24359069667342623 1.0 10405 +14194 Fh1 fumarate hydratase 1 Novel U 0.0019674831859526074 -0.24360297251737958 1.0 10406 +21770 Ppp2r5d protein phosphatase 2, regulatory subunit B', delta Novel U 0.0019673189960855196 -0.24360467319062543 1.0 10407 +208440 Dip2c disco interacting protein 2 homolog C Novel U 0.0019665268806300863 -0.24361287789647343 1.0 10408 +77987 Ascc3 activating signal cointegrator 1 complex subunit 3 Novel U 0.0019665228250755383 -0.24361291990377412 1.0 10409 +14734 Gpc3 glypican 3 Novel U 0.001966285626245456 -0.2436153768014586 1.0 10410 +68525 Evc2 EvC ciliary complex subunit 2 Novel U 0.001966262024748207 -0.24361562126499126 1.0 10411 +24046 Scn11a sodium channel, voltage-gated, type XI, alpha Novel U 0.0019655791495982234 -0.24362269446334645 1.0 10412 +228785 Mylk2 myosin, light polypeptide kinase 2, skeletal muscle Novel U 0.0019647859517226062 -0.24363091038086712 1.0 10413 +268686 S100z S100 calcium binding protein, zeta Novel U 0.0019634639657173103 -0.24364460346845204 1.0 10414 +278279 Tmtc2 transmembrane and tetratricopeptide repeat containing 2 Novel N 0.0019627213299241914 -0.24365229566558433 1.0 10415 +75625 Mageh1 MAGE family member H1 Novel N 0.0019620159873979023 -0.24365960158028477 1.0 10416 +68307 Lrriq4 leucine-rich repeats and IQ motif containing 4 Novel U 0.0019619877119420328 -0.24365989445652717 1.0 10417 +237711 Eml6 echinoderm microtubule associated protein like 6 Novel U 0.001960962904801455 -0.24367050937520052 1.0 10418 +117586 A1bg alpha-1-B glycoprotein Novel U 0.00196055667206556 -0.24367471712052474 1.0 10419 +54608 Abhd2 abhydrolase domain containing 2 Novel U 0.0019603312954438084 -0.243677051564164 1.0 10420 +68031 Rnf146 ring finger protein 146 Novel U 0.001960257093216106 -0.24367782014839928 1.0 10421 +70285 Rpf1 ribosome production factor 1 homolog Novel U 0.0019602489820457997 -0.24367790416363466 1.0 10422 +378425 Nlrp12 NLR family, pyrin domain containing 12 Novel U 0.0019596398063131577 -0.2436842139858478 1.0 10423 +279561 Wnk3 WNK lysine deficient protein kinase 3 Novel U 0.001958971139028333 -0.24369114001960274 1.0 10424 +18627 Per2 period circadian clock 2 Novel N 0.0019588155677246373 -0.2436927514220523 1.0 10425 +71206 Katnal2 katanin p60 subunit A-like 2 Novel U 0.0019584726241911625 -0.24369630361989836 1.0 10426 +75772 Pnpla5 patatin-like phospholipase domain containing 5 Novel N 0.001958022885936856 -0.24370096199395214 1.0 10427 +207911 Mchr1 melanin-concentrating hormone receptor 1 Novel N 0.0019575675167700208 -0.24370567869281276 1.0 10428 +142681 Slc34a3 solute carrier family 34 (sodium phosphate), member 3 Novel N 0.001956124934831176 -0.24372062090911298 1.0 10429 +18286 Odf2 outer dense fiber of sperm tails 2 Novel N 0.0019560122221101797 -0.24372178838377181 1.0 10430 +12854 Cort cortistatin Novel N 0.001955536926548554 -0.24372671147957464 1.0 10431 +74528 Mgme1 mitochondrial genome maintenance exonuclease 1 Novel U 0.001955329275417561 -0.2437288623231633 1.0 10432 +381290 Atp2b4 ATPase, Ca++ transporting, plasma membrane 4 Novel U 0.0019549895923602783 -0.24373238074910417 1.0 10433 +171250 Vmn1r206 vomeronasal 1 receptor 206 Novel U 0.001953842276231296 -0.2437442646118522 1.0 10434 +70935 Speer4f1 spermatogenesis associated glutamate (E)-rich protein 4F1 Novel U 0.0019535962316768736 -0.2437468131332586 1.0 10435 +100129 Gpr153 G protein-coupled receptor 153 Novel U 0.00195240312169418 -0.24375917132723796 1.0 10436 +243897 Ggn gametogenetin Novel N 0.0019520830712367388 -0.24376248639935505 1.0 10437 +70571 Tcerg1l transcription elongation regulator 1-like Novel U 0.0019517524728001633 -0.24376591072709325 1.0 10438 +16485 Kcna1 potassium voltage-gated channel, shaker-related subfamily, member 1 Novel N 0.0019510483256078167 -0.243773204260564 1.0 10439 +72599 Pdia5 protein disulfide isomerase associated 5 Novel U 0.0019502597649679004 -0.24378137214574971 1.0 10440 +332937 Tfap2e transcription factor AP-2, epsilon Novel U 0.0019494217220414633 -0.24379005256683256 1.0 10441 +382014 Ano8 anoctamin 8 Novel N 0.0019494002029689127 -0.24379027546067866 1.0 10442 +58991 Ghrl ghrelin Novel U 0.0019488435452114398 -0.2437960413034314 1.0 10443 +75015 Samd13 sterile alpha motif domain containing 13 Novel U 0.001948351319469809 -0.24380113976148218 1.0 10444 +56772 Mllt11 myeloid/lymphoid or mixed-lineage leukemia; translocated to, 11 Novel U 0.0019474020060755957 -0.24381097271841246 1.0 10445 +214766 Mmp21 matrix metallopeptidase 21 Novel N 0.0019473758888247114 -0.24381124324003853 1.0 10446 +68509 Ptx4 pentraxin 4 Novel U 0.0019472006103247398 -0.2438130587689793 1.0 10447 +74185 Gbe1 1,4-alpha-glucan branching enzyme 1 Novel U 0.0019471240033801275 -0.24381385226119326 1.0 10448 +76889 Coq8b coenzyme Q8B Novel N 0.0019465119695513966 -0.24382019168747174 1.0 10449 +210622 Pamr1 peptidase domain containing associated with muscle regeneration 1 Novel U 0.0019456840490727448 -0.24382876726057318 1.0 10450 +664804 Gm7347 predicted gene 7347 Novel U 0.001945621985546951 -0.24382941011253312 1.0 10451 +83925 Trps1 transcriptional repressor GATA binding 1 Novel U 0.0019454693237478716 -0.2438309913784295 1.0 10452 +213696 Duoxa1 dual oxidase maturation factor 1 Novel N 0.0019454061484415394 -0.24383164574617572 1.0 10453 +385380 Tex28 testis expressed 28 Novel U 0.0019440962159009865 -0.24384521398436904 1.0 10454 +11847 Arg2 arginase type II Novel N 0.0019430977297698563 -0.24385555627089184 1.0 10455 +113853 Vmn1r53 vomeronasal 1 receptor 53 Novel U 0.001942633980805516 -0.24386035976741954 1.0 10456 +21744 Adad1 adenosine deaminase domain containing 1 Novel U 0.0019423999681547183 -0.2438627836627638 1.0 10457 +76453 Prss23 serine protease 23 Novel U 0.0019423759588920442 -0.24386303234991727 1.0 10458 +382034 Gse1 genetic suppressor element 1, coiled-coil protein Novel U 0.0019422322630326231 -0.24386452074690543 1.0 10459 +22355 Vipr2 vasoactive intestinal peptide receptor 2 Novel N 0.001940955770146643 -0.24387774261825595 1.0 10460 +432442 Akap7 A kinase anchor protein 7 Novel U 0.0019409350191028514 -0.24387795755688538 1.0 10461 +100504425 Tincr TINCR ubiquitin domain containing Novel U 0.0019399969909772831 -0.24388767362137403 1.0 10462 +75512 Gpx6 glutathione peroxidase 6 Novel U 0.0019399823691144855 -0.24388782507414822 1.0 10463 +12862 Cox6a2 cytochrome c oxidase subunit 6A2 Novel N 0.001938661577772539 -0.2439015057874494 1.0 10464 +76438 Rftn1 raftlin lipid raft linker 1 Novel U 0.0019367842146940982 -0.2439209514525009 1.0 10465 +234740 Tmem231 transmembrane protein 231 Novel U 0.0019366703169719033 -0.24392213120136322 1.0 10466 +11428 Aco1 aconitase 1 Novel N 0.0019362066511493911 -0.24392693383671063 1.0 10467 +12817 Col13a1 collagen, type XIII, alpha 1 Novel U 0.0019354256286797484 -0.24393502364177644 1.0 10468 +101434 Ceacam15 CEA cell adhesion molecule 15 Novel U 0.0019352343965388012 -0.24393700441800595 1.0 10469 +17256 Mea1 male enhanced antigen 1 Novel N 0.0019350847197862767 -0.24393855476488827 1.0 10470 +242785 Klhl21 kelch-like 21 Novel U 0.0019347638496191467 -0.24394187832753134 1.0 10471 +17995 Ndufv1 NADH:ubiquinone oxidoreductase core subunit V1 Novel N 0.0019346667925600931 -0.24394288364135844 1.0 10472 +110611 Hdlbp high density lipoprotein (HDL) binding protein Novel U 0.0019345175400148392 -0.24394442959431578 1.0 10473 +12497 Entpd6 ectonucleoside triphosphate diphosphohydrolase 6 Novel U 0.0019338572088512444 -0.24395126928280106 1.0 10474 +252905 Vmn1r72 vomeronasal 1 receptor 72 Novel U 0.0019337806541169593 -0.2439520622342222 1.0 10475 +100041179 Pramel56 PRAME like 56 Novel U 0.0019332962325709527 -0.24395707985667123 1.0 10476 +119065974 Msantd7 Myb/SANT DNA binding domain containing 7 Novel U 0.001933097731826933 -0.24395913592085242 1.0 10477 +384220 Vmn2r16 vomeronasal 2, receptor 16 Novel U 0.0019326121348204233 -0.2439641657186827 1.0 10478 +81799 C1qtnf3 C1q and tumor necrosis factor related protein 3 Novel U 0.0019322069888920628 -0.2439683622068902 1.0 10479 +74549 Mau2 MAU2 sister chromatid cohesion factor Novel U 0.0019318474405587097 -0.24397208639670753 1.0 10480 +100039239 Ctxnd1 cortexin domain containing 1 Novel U 0.0019317613426730277 -0.24397297819577712 1.0 10481 +16907 Lmnb2 lamin B2 Novel U 0.0019315862658168365 -0.24397479163609823 1.0 10482 +626834 Klk13 kallikrein related-peptidase 13 Novel U 0.0019309960761471337 -0.24398090480129556 1.0 10483 +67471 Gpatch1 G patch domain containing 1 Novel N 0.0019303745771749006 -0.2439873422672193 1.0 10484 +258311 Or52s19 olfactory receptor family 52 subfamily S member 19 Novel U 0.0019291781713645863 -0.2439997345992728 1.0 10485 +328572 Ep300 E1A binding protein p300 Novel U 0.0019289808549657714 -0.24400177839604528 1.0 10486 +66722 Spag16 sperm associated antigen 16 Novel N 0.0019269185286917756 -0.24402313990379604 1.0 10487 +226896 Tfap2d transcription factor AP-2, delta Novel U 0.0019267634317454733 -0.24402474639286728 1.0 10488 +12805 Cntn1 contactin 1 Novel U 0.0019254311447128708 -0.2440385461781544 1.0 10489 +14782 Gsr glutathione reductase Novel N 0.001925332353806032 -0.24403956945111988 1.0 10490 +115488379 Gm6526 predicted gene 6526 Novel U 0.0019217243656181042 -0.24407694087416418 1.0 10491 +67088 Cand2 cullin associated and neddylation dissociated 2 (putative) Novel U 0.0019216975386387545 -0.2440772187471344 1.0 10492 +26416 Mapk14 mitogen-activated protein kinase 14 Novel U 0.0019212790276908977 -0.24408155366977452 1.0 10493 +381356 Cacfd1 calcium channel flower domain containing 1 Novel U 0.0019195973139533072 -0.24409897280538512 1.0 10494 +56615 Mgst1 microsomal glutathione S-transferase 1 Novel U 0.0019174851540056425 -0.2441208504886895 1.0 10495 +547176 Zc3h12b zinc finger CCCH-type containing 12B Novel U 0.0019174528497278528 -0.2441211850953369 1.0 10496 +245839 Gzmn granzyme N Novel U 0.001916849615691439 -0.2441274333736558 1.0 10497 +382007 Adam26b a disintegrin and metallopeptidase domain 26B Novel U 0.0019159682435438343 -0.24413656259738717 1.0 10498 +72324 Plxdc1 plexin domain containing 1 Novel U 0.0019149321273256063 -0.2441472946551151 1.0 10499 +100470 Lao1 L-amino acid oxidase 1 Novel U 0.0019149098658080147 -0.24414752523918248 1.0 10500 +12890 Cplx2 complexin 2 Novel U 0.0019148490081055554 -0.244148155601264 1.0 10501 +54137 Acrbp proacrosin binding protein Novel U 0.0019146404434511074 -0.24415031590709854 1.0 10502 +68634 Tm2d3 TM2 domain containing 3 Novel N 0.0019140757326013532 -0.24415616516351646 1.0 10503 +54192 Pbsn probasin Novel U 0.0019138627100127943 -0.244158371644486 1.0 10504 +26462 Txnrd2 thioredoxin reductase 2 Novel U 0.0019135699467039446 -0.24416140407721498 1.0 10505 +74434 Sohlh2 spermatogenesis and oogenesis specific basic helix-loop-helix 2 Novel U 0.0019134966559851948 -0.2441621632200705 1.0 10506 +14789 P3h3 prolyl 3-hydroxylase 3 Novel N 0.0019134037715305792 -0.24416312531419798 1.0 10507 +243362 Stard13 StAR related lipid transfer domain containing 13 Novel U 0.0019130678033632276 -0.24416660526143105 1.0 10508 +12819 Col15a1 collagen, type XV, alpha 1 Novel U 0.0019128950691319818 -0.24416839443691996 1.0 10509 +29863 Pde7b phosphodiesterase 7B Novel N 0.001912678280422714 -0.24417063992724403 1.0 10510 +64340 Dhx38 DEAH-box helicase 38 Novel N 0.0019111821283502013 -0.24418613702122774 1.0 10511 +64424 Polr1e polymerase (RNA) I polypeptide E Novel N 0.0019110642234527984 -0.24418735827627913 1.0 10512 +243874 Nlrp9b NLR family, pyrin domain containing 9B Novel U 0.0019110173542936967 -0.24418784374548838 1.0 10513 +16514 Kcnj11 potassium inwardly rectifying channel, subfamily J, member 11 Novel U 0.001910387907438131 -0.24419436353532636 1.0 10514 +66366 Ergic3 ERGIC and golgi 3 Novel U 0.001908895959237644 -0.24420981708574185 1.0 10515 +100710 Pds5b PDS5 cohesin associated factor B Novel U 0.0019083266357419041 -0.24421571411979523 1.0 10516 +231670 Fbxo21 F-box protein 21 Novel U 0.0019082788321311533 -0.24421620926802395 1.0 10517 +19934 Rpl22 ribosomal protein L22 Novel N 0.0019082410146471125 -0.24421660098028045 1.0 10518 +81877 Tnxb tenascin XB Novel U 0.001908138406972622 -0.24421766378719978 1.0 10519 +13144 Dapk3 death-associated protein kinase 3 Novel U 0.0019077875672090304 -0.2442212977739378 1.0 10520 +245423 Tm9sf5 transmembrane 9 superfamily member 5 Novel U 0.001907166900872324 -0.24422772661545014 1.0 10521 +381280 Hjurp Holliday junction recognition protein Novel U 0.0019064711673021859 -0.2442349330008986 1.0 10522 +68166 Spire1 spire type actin nucleation factor 1 Novel U 0.0019063978210138827 -0.24423569271934173 1.0 10523 +18559 Pctp phosphatidylcholine transfer protein Novel N 0.0019057348369018155 -0.2442425598869801 1.0 10524 +268882 Fbxo45 F-box protein 45 Novel U 0.0019054030741893417 -0.24424599627424975 1.0 10525 +102637189 Gm34066 predicted gene, 34066 Novel U 0.001904850016513815 -0.2442517248274721 1.0 10526 +70461 Crtc3 CREB regulated transcription coactivator 3 Novel N 0.0019046589258309462 -0.24425370413848346 1.0 10527 +17984 Ndn necdin, MAGE family member Novel U 0.0019038609834164625 -0.24426196919978174 1.0 10528 +17827 Mtx1 metaxin 1 Novel N 0.00190373810445316 -0.2442632419760442 1.0 10529 +319535 Zfp182 zinc finger protein 182 Novel U 0.0019036385774352466 -0.24426427287362396 1.0 10530 +12055 Bcl7c B cell CLL/lymphoma 7C Novel U 0.0019034777267182461 -0.244265938960063 1.0 10531 +636697 Vmn1r60 vomeronasal 1 receptor 60 Novel U 0.0019026302205159909 -0.24427471740144568 1.0 10532 +15118 Has3 hyaluronan synthase 3 Novel U 0.0019024670764252074 -0.24427640724257493 1.0 10533 +239420 Csmd3 CUB and Sushi multiple domains 3 Novel U 0.001902415393318709 -0.24427694257449306 1.0 10534 +66901 Proz protein Z, vitamin K-dependent plasma glycoprotein Novel N 0.0019013879821777671 -0.24428758446531662 1.0 10535 +347711 Pramel6 PRAME like 6 Novel U 0.0019010436046270711 -0.24429115151666592 1.0 10536 +19045 Ppp1ca protein phosphatase 1 catalytic subunit alpha Novel N 0.0019010352231834447 -0.24429123833138347 1.0 10537 +75404 Arhgap36 Rho GTPase activating protein 36 Novel U 0.0019008463946958004 -0.2442931942106511 1.0 10538 +66694 Uqcrfs1 ubiquinol-cytochrome c reductase, Rieske iron-sulfur polypeptide 1 Novel U 0.0019004778455885385 -0.24429701163018874 1.0 10539 +75565 Sgf29 SAGA complex associated factor 29 Novel U 0.001898638303828881 -0.2443160655432636 1.0 10540 +75744 Svip small VCP/p97-interacting protein Novel U 0.0018983068984565353 -0.24431949822921598 1.0 10541 +69534 Avpi1 arginine vasopressin-induced 1 Novel U 0.0018973706739728326 -0.24432919561164146 1.0 10542 +329547 Bpi bactericidal permeablility increasing protein Novel U 0.0018967365386927109 -0.24433576396402687 1.0 10543 +26415 Mapk13 mitogen-activated protein kinase 13 Novel U 0.0018953396529033464 -0.24435023286111296 1.0 10544 +20021 Polr2c polymerase (RNA) II (DNA directed) polypeptide C Novel N 0.0018950877190409895 -0.24435284238377736 1.0 10545 +52513 Ddx56 DEAD box helicase 56 Novel U 0.001894455751657446 -0.24435938828116133 1.0 10546 +258589 Or2ag19 olfactory receptor family 2 subfamily AG member 19 Novel U 0.0018920582290996885 -0.24438422174100025 1.0 10547 +15126 Hba-x hemoglobin X, alpha-like embryonic chain in Hba complex Novel N 0.0018903296913614196 -0.24440212587807064 1.0 10548 +13347 Dffa DNA fragmentation factor, alpha subunit Novel U 0.0018901776177453874 -0.24440370105158635 1.0 10549 +83457 Fthl17e ferritin, heavy polypeptide-like 17, member E Novel U 0.0018896404452157453 -0.2444092650669898 1.0 10550 +503610 Zdhhc18 zinc finger, DHHC domain containing 18 Novel U 0.001889437195228883 -0.24441137032367222 1.0 10551 +384695 Vmn1r123 vomeronasal 1 receptor 123 Novel U 0.001888378596422971 -0.2444223352553043 1.0 10552 +70799 Cep192 centrosomal protein 192 Novel U 0.0018879035138166633 -0.24442725614532293 1.0 10553 +68911 Pygo2 pygopus 2 Novel U 0.001887167168980401 -0.2444348831809309 1.0 10554 +68775 Atp6v1c2 ATPase, H+ transporting, lysosomal V1 subunit C2 Novel U 0.0018870338372237343 -0.2444362642268834 1.0 10555 +241770 Rims4 regulating synaptic membrane exocytosis 4 Novel U 0.0018870078623019232 -0.24443653327426965 1.0 10556 +12725 Clcn3 chloride channel, voltage-sensitive 3 Novel U 0.0018861187394631019 -0.24444574277940584 1.0 10557 +15395 Hoxa10 homeobox A10 Novel N 0.0018860696632100671 -0.24444625110962145 1.0 10558 +382244 Gm15091 predicted gene 15091 Novel U 0.0018859892052875882 -0.2444470844901376 1.0 10559 +18459 Pabpc2 poly(A) binding protein, cytoplasmic 2 Novel U 0.001885899151930478 -0.2444480172598502 1.0 10560 +545279 Ms4a15 membrane-spanning 4-domains, subfamily A, member 15 Novel U 0.0018854501344536404 -0.24445266816811462 1.0 10561 +66887 Lonp2 lon peptidase 2, peroxisomal Novel U 0.001884971438386942 -0.2444576264862372 1.0 10562 +17863 Myb myeloblastosis oncogene Novel U 0.001884177159224671 -0.24446585360368947 1.0 10563 +21753 Tes testin LIM domain protein Novel U 0.0018831736561385345 -0.2444762478556673 1.0 10564 +14404 Gabre gamma-aminobutyric acid (GABA) A receptor, subunit epsilon Novel U 0.0018829747043221199 -0.2444783085920415 1.0 10565 +223666 Arhgap39 Rho GTPase activating protein 39 Novel U 0.001882656996318027 -0.2444815994011038 1.0 10566 +231946 Fam221a family with sequence similarity 221, member A Novel U 0.0018825250611411973 -0.24448296598132832 1.0 10567 +20588 Smarcc1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily c, member 1 Novel U 0.0018824832371344105 -0.2444833991930157 1.0 10568 +73469 Rnf38 ring finger protein 38 Novel N 0.0018824774556617627 -0.24448345907731933 1.0 10569 +11504 Adamts1 ADAM metallopeptidase with thrombospondin type 1 motif 1 Novel U 0.0018823579656621415 -0.2444846967508074 1.0 10570 +68730 Dus1l dihydrouridine synthase 1 like Novel N 0.0018822987501995528 -0.24448531010262228 1.0 10571 +26919 Zfp346 zinc finger protein 346 Novel U 0.001882181671607701 -0.24448652279882793 1.0 10572 +216850 Kdm6b KDM1 lysine (K)-specific demethylase 6B Novel N 0.0018809949450167363 -0.24449881487384562 1.0 10573 +216445 Arhgap9 Rho GTPase activating protein 9 Novel U 0.00188089397234381 -0.24449986074547247 1.0 10574 +93893 Pcdhb22 protocadherin beta 22 Novel U 0.0018799227651243365 -0.24450992047792505 1.0 10575 +107993 Bfsp2 beaded filament structural protein 2, phakinin Novel N 0.0018797368650279355 -0.24451184602501247 1.0 10576 +110862 Kcnq3 potassium voltage-gated channel, subfamily Q, member 3 Novel N 0.0018772031700306788 -0.2445380899545033 1.0 10577 +12534 Cdk1 cyclin dependent kinase 1 Novel U 0.0018770131582223008 -0.2445400580905682 1.0 10578 +11958 Atp5me ATP synthase membrane subunit e Novel N 0.0018768450731493148 -0.24454179911022866 1.0 10579 +66772 Asb17 ankyrin repeat and SOCS box-containing 17 Novel U 0.0018763741500590657 -0.2445466769161167 1.0 10580 +217951 Tmem196 transmembrane protein 196 Novel U 0.0018756883180728978 -0.24455378074128392 1.0 10581 +18041 Nfs1 nitrogen fixation gene 1 (S. cerevisiae) Novel N 0.0018752727804610524 -0.24455808486620736 1.0 10582 +271209 Rp1l1 retinitis pigmentosa 1 homolog like 1 Novel U 0.0018751216161536077 -0.2445596506211346 1.0 10583 +22273 Uqcrc1 ubiquinol-cytochrome c reductase core protein 1 Novel N 0.0018751171408379673 -0.24455969697630686 1.0 10584 +23801 Aloxe3 arachidonate lipoxygenase 3 Novel U 0.001874892956704695 -0.24456201906818967 1.0 10585 +238021 Fscn2 fascin actin-bundling protein 2 Novel N 0.0018747620555022134 -0.24456337493854183 1.0 10586 +63986 Gmfg glia maturation factor, gamma Novel N 0.0018744459566174315 -0.2445666490803992 1.0 10587 +101206 Tada3 transcriptional adaptor 3 Novel U 0.0018735135133788974 -0.2445763072968115 1.0 10588 +18504 Pax2 paired box 2 Novel U 0.0018731734783316687 -0.24457982936865266 1.0 10589 +107250 Kazald1 Kazal-type serine peptidase inhibitor domain 1 Novel U 0.001872791722588407 -0.24458378358209182 1.0 10590 +26438 Psg18 pregnancy specific beta-1-glycoprotein 18 Novel U 0.0018719553274291411 -0.2445924469356565 1.0 10591 +18150 Npm3 nucleoplasmin 3 Novel U 0.001871519075786113 -0.244596965615834 1.0 10592 +16825 Ldb1 LIM domain binding 1 Novel N 0.0018710910681260335 -0.24460139890510707 1.0 10593 +11416 Slc33a1 solute carrier family 33 (acetyl-CoA transporter), member 1 Novel N 0.0018710649953262873 -0.24460166896630975 1.0 10594 +210573 Tmem151b transmembrane protein 151B Novel U 0.0018710633409860105 -0.244601686101912 1.0 10595 +100034251 Wfdc17 WAP four-disulfide core domain 17 Novel U 0.0018700097067050172 -0.24461259961115814 1.0 10596 +60321 Wbp11 WW domain binding protein 11 Novel U 0.0018689885528390584 -0.24462317668933312 1.0 10597 +16790 Anpep alanyl aminopeptidase, membrane Novel U 0.0018688904929120885 -0.24462419239083313 1.0 10598 +668725 Mrgpra9 MAS-related GPR, member A9 Novel U 0.0018679182378636434 -0.24463426297666374 1.0 10599 +242474 Tmem245 transmembrane protein 245 Novel U 0.0018678407259687042 -0.24463506584232347 1.0 10600 +66294 Fam3a FAM3 metabolism regulating signaling molecule A Novel U 0.0018677113909292477 -0.2446364054904105 1.0 10601 +320844 Amigo3 adhesion molecule with Ig like domain 3 Novel U 0.0018669110259718104 -0.24464469564432906 1.0 10602 +268932 Caskin1 CASK interacting protein 1 Novel U 0.0018655837053732423 -0.2446584439874557 1.0 10603 +433294 Mettl21c methyltransferase 21C, AARS1 lysine Novel N 0.001864821258592226 -0.24466634138614937 1.0 10604 +71066 Hsfy2 heat shock transcription factor, Y-linked 2 Novel U 0.001863473066122659 -0.2446803059194297 1.0 10605 +12788 Cnga1 cyclic nucleotide gated channel alpha 1 Novel N 0.0018631616911938137 -0.24468353113070682 1.0 10606 +229700 Rbm15 RNA binding motif protein 15 Novel N 0.0018631150979494238 -0.24468401374200052 1.0 10607 +665525 Vmn1r224 vomeronasal 1 receptor 224 Novel U 0.0018625978055477352 -0.24468937183969214 1.0 10608 +238386 Btbd7 BTB domain containing 7 Novel U 0.0018611072837384985 -0.24470481061559396 1.0 10609 +99543 Olfml3 olfactomedin-like 3 Novel U 0.0018609737983513956 -0.24470619325284546 1.0 10610 +26377 Dapp1 dual adaptor for phosphotyrosine and 3-phosphoinositides 1 Novel N 0.0018606150729926895 -0.2447099089183185 1.0 10611 +27217 Mixl1 Mix paired-like homeobox Novel U 0.0018603886318330188 -0.24471225438840652 1.0 10612 +11936 Fxyd2 FXYD domain-containing ion transport regulator 2 Novel U 0.0018603586414566492 -0.24471256502773908 1.0 10613 +98741 Kcnb2 potassium voltage gated channel, Shab-related subfamily, member 2 Novel U 0.0018601566364275463 -0.24471465738918993 1.0 10614 +54405 Ndufa1 NADH:ubiquinone oxidoreductase subunit A1 Novel N 0.0018600271511368361 -0.2447159985935745 1.0 10615 +81904 Cacng7 calcium channel, voltage-dependent, gamma subunit 7 Novel U 0.001859633855119099 -0.24472007234079732 1.0 10616 +107047 Psmg2 proteasome (prosome, macropain) assembly chaperone 2 Novel U 0.0018592485840022758 -0.2447240629663603 1.0 10617 +271047 Serpina3b serine (or cysteine) peptidase inhibitor, clade A, member 3B Novel U 0.001858976504707322 -0.24472688115475327 1.0 10618 +94090 Trim9 tripartite motif-containing 9 Novel U 0.0018572995933901597 -0.24474425054705096 1.0 10619 +666485 Gm8127 predicted gene 8127 Novel U 0.0018555525625398646 -0.24476234623516777 1.0 10620 +73690 Glipr1 GLI pathogenesis related 1 Novel U 0.0018546440913166594 -0.24477175615023336 1.0 10621 +76589 Unc5cl unc-5 family C-terminal like Novel U 0.001854570881114739 -0.24477251445909817 1.0 10622 +231503 Tmem150c transmembrane protein 150C Novel U 0.0018543805765613409 -0.2447744856274064 1.0 10623 +244180 Olfm5 olfactomedin 5 Novel U 0.0018537988045212116 -0.24478051160307332 1.0 10624 +140709 Col26a1 collagen, type XXVI, alpha 1 Novel U 0.00185366741557438 -0.2447818725254654 1.0 10625 +29870 Gtse1 G two S phase expressed protein 1 Novel U 0.0018532870321625956 -0.24478581252434026 1.0 10626 +319554 Idi1 isopentenyl-diphosphate delta isomerase Novel U 0.0018529948493277745 -0.24478883894453832 1.0 10627 +78767 Efcab11 EF-hand calcium binding domain 11 Novel U 0.0018526415865511186 -0.24479249802876604 1.0 10628 +15183 Hdac3 histone deacetylase 3 Novel U 0.0018525734633743106 -0.24479320364639198 1.0 10629 +387340 Tas2r104 taste receptor, type 2, member 104 Novel U 0.001852326676476212 -0.2447957598569698 1.0 10630 +20665 Sox10 SRY (sex determining region Y)-box 10 Novel U 0.0018523137824635223 -0.24479589341272937 1.0 10631 +110094 Phka2 phosphorylase kinase alpha 2 Novel U 0.001851980099069465 -0.24479934969435577 1.0 10632 +21402 Skp1 S-phase kinase-associated protein 1 Novel U 0.0018516360786194445 -0.24480291304686802 1.0 10633 +18573 Pde1a phosphodiesterase 1A, calmodulin-dependent Novel U 0.0018509930455599178 -0.24480957356216002 1.0 10634 +74251 Ankrd9 ankyrin repeat domain 9 Novel U 0.0018497613867118417 -0.2448223310440198 1.0 10635 +106264 Ncbp2as2 Ncbp2 antisense 2 (head to head) Novel U 0.001849575455411133 -0.2448242569143204 1.0 10636 +12848 Cops2 COP9 signalosome subunit 2 Novel N 0.0018495563175278608 -0.24482445514388618 1.0 10637 +622117 Triml2 tripartite motif family-like 2 Novel U 0.0018491776169995142 -0.24482837771150967 1.0 10638 +114640 Pth2 parathyroid hormone 2 Novel U 0.0018491506889554965 -0.2448286566313044 1.0 10639 +19056 Ppp3cb protein phosphatase 3, catalytic subunit, beta isoform Novel U 0.0018488795902050483 -0.24483146466324965 1.0 10640 +245450 Slitrk2 SLIT and NTRK-like family, member 2 Novel U 0.0018486217883921362 -0.24483413496595305 1.0 10641 +212168 Zswim4 zinc finger SWIM-type containing 4 Novel U 0.0018486149498679644 -0.2448342057991616 1.0 10642 +26549 Itgb1bp2 integrin beta 1 binding protein 2 Novel N 0.0018483632578565811 -0.24483681281674155 1.0 10643 +242864 Napepld N-acyl phosphatidylethanolamine phospholipase D Novel U 0.0018477511819534416 -0.2448431526788254 1.0 10644 +66200 Commd6 COMM domain containing 6 Novel U 0.0018473565772554191 -0.24484723998131558 1.0 10645 +240776 Kcnt2 potassium channel, subfamily T, member 2 Novel N 0.001847331074567641 -0.2448475041373172 1.0 10646 +69072 Ebna1bp2 EBNA1 binding protein 2 Novel U 0.0018472710220754232 -0.2448481261590575 1.0 10647 +12937 Pcdha6 protocadherin alpha 6 Novel U 0.0018470549651598894 -0.2448503640694861 1.0 10648 +52837 Tmx4 thioredoxin-related transmembrane protein 4 Novel U 0.0018469743734572661 -0.24485119883569256 1.0 10649 +27883 Tango2 transport and golgi organization 2 Novel U 0.001846734182717655 -0.2448536867234776 1.0 10650 +319765 Igf2bp2 insulin-like growth factor 2 mRNA binding protein 2 Novel N 0.0018454550986237645 -0.2448669354344745 1.0 10651 +12286 Cacna1a calcium channel, voltage-dependent, P/Q type, alpha 1A subunit Novel U 0.0018451037578794797 -0.2448705746103541 1.0 10652 +77905 Fate1 fetal and adult testis expressed 1 Novel U 0.0018448940866104492 -0.24487274637846615 1.0 10653 +113845 Vmn1r48 vomeronasal 1 receptor 48 Novel U 0.001844167805467657 -0.24488026917466796 1.0 10654 +319211 Nol4 nucleolar protein 4 Novel U 0.001844158172263334 -0.2448803689550817 1.0 10655 +17393 Mmp7 matrix metallopeptidase 7 Novel U 0.001843619571212074 -0.24488594776706507 1.0 10656 +12453 Ccni cyclin I Novel U 0.001843021656308404 -0.2448921409499819 1.0 10657 +212980 Slc45a3 solute carrier family 45, member 3 Novel N 0.0018428354714082776 -0.2448940694470569 1.0 10658 +71026 Speer3 spermatogenesis associated glutamate (E)-rich protein 3 Novel U 0.00184231219372138 -0.24489948954013596 1.0 10659 +13117 Cyp4a10 cytochrome P450, family 4, subfamily a, polypeptide 10 Novel U 0.00184225521210018 -0.24490007975389522 1.0 10660 +69106 Stoml1 stomatin-like 1 Novel U 0.001841512315647822 -0.24490777465092733 1.0 10661 +14466 Gba1 glucosylceramidase beta 1 Novel U 0.0018413842502014357 -0.24490910114861106 1.0 10662 +108829 Jmjd1c jumonji domain containing 1C Novel U 0.0018412064455363688 -0.2449109428434868 1.0 10663 +76804 Kdm4c lysine (K)-specific demethylase 4C Novel U 0.0018402282527187903 -0.24492107493253493 1.0 10664 +100043088 Vmn1r166 vomeronasal 1 receptor 166 Novel U 0.0018398936611453297 -0.24492454062105373 1.0 10665 +71830 Pdilt protein disulfide isomerase-like, testis expressed Novel U 0.0018396077401874218 -0.2449275021809366 1.0 10666 +227656 Rexo4 REX4, 3'-5' exonuclease Novel N 0.0018393951976004095 -0.24492970369006592 1.0 10667 +17392 Mmp3 matrix metallopeptidase 3 Novel U 0.0018390433349486585 -0.24493334827184587 1.0 10668 +100043029 Vmn1r138 vomeronasal 1 receptor 138 Novel U 0.0018388409180783779 -0.24493544489913413 1.0 10669 +224454 Zdhhc14 zinc finger, DHHC domain containing 14 Novel N 0.0018381868665675442 -0.24494221954318257 1.0 10670 +75758 9130401M01Rik RIKEN cDNA 9130401M01 gene Novel U 0.0018380436620134655 -0.24494370285124611 1.0 10671 +211770 Trib1 tribbles pseudokinase 1 Novel U 0.0018380219806774863 -0.24494392742581148 1.0 10672 +76560 Prss8 serine protease 8 (prostasin) Novel U 0.0018375956985627307 -0.24494834284194283 1.0 10673 +382044 Ces1b carboxylesterase 1B Novel U 0.0018366862601341064 -0.24495776277529036 1.0 10674 +13197 Gadd45a growth arrest and DNA-damage-inducible 45 alpha Novel U 0.001836057982270632 -0.2449642704567467 1.0 10675 +170458 Gpha2 glycoprotein hormone alpha 2 Novel N 0.0018355162746577093 -0.24496988144639367 1.0 10676 +70726 Angptl6 angiopoietin-like 6 Novel N 0.0018354822096684372 -0.24497023429043271 1.0 10677 +19224 Ptgs1 prostaglandin-endoperoxide synthase 1 Novel N 0.0018336953476467115 -0.24498874254851385 1.0 10678 +18548 Pcsk1 proprotein convertase subtilisin/kexin type 1 Novel N 0.0018328312073751698 -0.2449976932850394 1.0 10679 +229504 Isg20l2 interferon stimulated exonuclease gene 20-like 2 Novel U 0.0018327558315456955 -0.24499847402540323 1.0 10680 +209027 Pycr1 pyrroline-5-carboxylate reductase 1 Novel U 0.0018324159837213743 -0.24500199415799565 1.0 10681 +69187 Erp27 endoplasmic reticulum protein 27 Novel U 0.0018322579161135601 -0.2450036314170812 1.0 10682 +14718 Got1 glutamic-oxaloacetic transaminase 1, soluble Novel N 0.001832123638921479 -0.24500502225582263 1.0 10683 +19280 Ptprs protein tyrosine phosphatase receptor type S Novel U 0.0018306368586858861 -0.24502042227662765 1.0 10684 +320429 Trank1 tetratricopeptide repeat and ankyrin repeat containing 1 Novel N 0.0018303982040760941 -0.24502289425323054 1.0 10685 +114585 D17H6S53E DNA segment, Chr 17, human D6S53E Novel U 0.0018297410119471444 -0.24502970142769817 1.0 10686 +435921 Clec2f C-type lectin domain family 2, member f Novel U 0.0018283938397486823 -0.24504365539304396 1.0 10687 +241226 Itga8 integrin alpha 8 Novel U 0.001826745431207971 -0.24506072955452013 1.0 10688 +625424 Ccdc121rt3 coiled-coil domain containing 121, retrogene 3 Novel U 0.001826482337904334 -0.24506345466631047 1.0 10689 +15904 Id4 inhibitor of DNA binding 4 Novel N 0.0018264302738461755 -0.24506399394411335 1.0 10690 +170677 Cdhr1 cadherin-related family member 1 Novel N 0.001826428809744169 -0.24506400910923382 1.0 10691 +14594 Ggta1 glycoprotein galactosyltransferase alpha 1, 3 Novel U 0.0018246800650210844 -0.24508212254958864 1.0 10692 +234684 Fbxl9 F-box and leucine-rich repeat protein 9 Novel U 0.0018245868466282163 -0.24508308810263757 1.0 10693 +73708 Dppa3 developmental pluripotency-associated 3 Novel U 0.0018244756192088386 -0.24508424019259106 1.0 10694 +245038 Dclk3 doublecortin-like kinase 3 Novel U 0.001824237007671234 -0.24508671172305366 1.0 10695 +70945 Mmrn1 multimerin 1 Novel U 0.0018241398115906168 -0.24508771847686153 1.0 10696 +17938 Naca nascent polypeptide-associated complex alpha polypeptide Novel U 0.0018233474399294884 -0.24509592583647968 1.0 10697 +70233 Cd2bp2 CD2 cytoplasmic tail binding protein 2 Novel U 0.0018231522846335042 -0.2450979472486201 1.0 10698 +67695 Ost4 oligosaccharyltransferase complex subunit 4 (non-catalytic) Novel N 0.0018230680323328915 -0.2450988199311802 1.0 10699 +328780 Prss34 serine protease 34 Novel U 0.0018224586941318441 -0.24510513143623575 1.0 10700 +333467 Tcstv5a Tcstv family member 5A Novel U 0.0018221505958350708 -0.24510832270826555 1.0 10701 +71389 Chd6 chromodomain helicase DNA binding protein 6 Novel N 0.001822067713629714 -0.24510918119942401 1.0 10702 +56317 Anapc7 anaphase promoting complex subunit 7 Novel U 0.0018220466658821805 -0.24510939921130107 1.0 10703 +56323 Dnajb5 DnaJ heat shock protein family (Hsp40) member B5 Novel U 0.0018220128838668834 -0.24510974912430497 1.0 10704 +66143 Eef1e1 eukaryotic translation elongation factor 1 epsilon 1 Novel N 0.0018217581328052637 -0.24511238782742675 1.0 10705 +18044 Nfya nuclear transcription factor-Y alpha Novel N 0.0018211826261586388 -0.24511834890635373 1.0 10706 +21915 Dtymk deoxythymidylate kinase Novel N 0.0018207461822127445 -0.245122869578398 1.0 10707 +15460 Hr lysine demethylase and nuclear receptor corepressor Novel U 0.001820678882757389 -0.2451235666639442 1.0 10708 +14605 Tsc22d3 TSC22 domain family, member 3 Novel U 0.0018205029305199654 -0.24512538917143534 1.0 10709 +75387 Sirt4 sirtuin 4 Novel U 0.0018203064726334938 -0.2451274240757652 1.0 10710 +75099 Lysmd4 LysM, putative peptidoglycan-binding, domain containing 4 Novel U 0.0018200760827558403 -0.24512981044654425 1.0 10711 +258387 Or2t6 olfactory receptor family 2 subfamily T member 6 Novel U 0.0018199768259442005 -0.24513083854533635 1.0 10712 +667094 Vmn1r252 vomeronasal 1 receptor 252 Novel U 0.0018195992467723986 -0.2451347494979856 1.0 10713 +217682 Plekhd1 pleckstrin homology domain containing, family D (with coiled-coil domains) member 1 Novel U 0.0018194025788922413 -0.2451367865774232 1.0 10714 +56693 Crtap cartilage associated protein Novel U 0.0018187627124892445 -0.24514341429259093 1.0 10715 +30785 Cttnbp2 cortactin binding protein 2 Novel U 0.001818651702041665 -0.2451445641351577 1.0 10716 +320234 Ccdc66 coiled-coil domain containing 66 Novel N 0.00181819758733362 -0.2451492678403754 1.0 10717 +79044 Mrps34 mitochondrial ribosomal protein S34 Novel N 0.0018174061399562876 -0.2451574656262924 1.0 10718 +66246 Osgep O-sialoglycoprotein endopeptidase Novel U 0.0018172597814471948 -0.24515898160291832 1.0 10719 +79362 Bhlhe41 basic helix-loop-helix family, member e41 Novel N 0.0018167932622479676 -0.2451638137934479 1.0 10720 +101056159 Gm8104 predicted gene 8104 Novel U 0.0018158327665284465 -0.24517376257653611 1.0 10721 +67445 C1qtnf4 C1q and tumor necrosis factor related protein 4 Novel U 0.001814932460942232 -0.24518308791220217 1.0 10722 +227627 Obp2a odorant binding protein 2A Novel U 0.0018148604943883967 -0.24518383333940102 1.0 10723 +78339 Ttyh3 tweety family member 3 Novel N 0.0018145495197166293 -0.24518705440482844 1.0 10724 +14000 Drosha drosha, ribonuclease type III Novel N 0.0018143330991679167 -0.24518929608175755 1.0 10725 +79459 Aldoart2 aldolase 1 A, retrogene 2 Novel U 0.001814225199852435 -0.24519041369932032 1.0 10726 +98053 Gtf2f1 general transcription factor IIF, polypeptide 1 Novel U 0.0018141638695295544 -0.24519104895678862 1.0 10727 +233038 Nccrp1 non-specific cytotoxic cell receptor protein 1 homolog (zebrafish) Novel N 0.0018130667469451252 -0.24520241291645214 1.0 10728 +19258 Ptpn4 protein tyrosine phosphatase, non-receptor type 4 Novel N 0.0018112742741853538 -0.2452209792903735 1.0 10729 +238057 Gdf7 growth differentiation factor 7 Novel U 0.0018112149888480542 -0.24522159336594834 1.0 10730 +71159 4933416I08Rik RIKEN cDNA 4933416I08 gene Novel U 0.0018111876629390109 -0.24522187640681592 1.0 10731 +14814 Grin2d glutamate receptor, ionotropic, NMDA2D (epsilon 4) Novel U 0.0018109496236195545 -0.24522434201026175 1.0 10732 +100039801 Cldn24 claudin 24 Novel U 0.0018106702993508097 -0.2452272352418551 1.0 10733 +56786 Tmem9b TMEM9 domain family, member B Novel U 0.0018091545948772795 -0.24524293485896584 1.0 10734 +233744 Spon1 spondin 1, (f-spondin) extracellular matrix protein Novel U 0.0018090287489784017 -0.24524423836664946 1.0 10735 +13626 Eed embryonic ectoderm development Novel U 0.0018087820283273293 -0.24524679389104276 1.0 10736 +330627 Trim66 tripartite motif-containing 66 Novel U 0.0018084686248626845 -0.24525004011382698 1.0 10737 +104086 Cyp27a1 cytochrome P450, family 27, subfamily a, polypeptide 1 Novel U 0.0018082381595098855 -0.2452524272663751 1.0 10738 +105440 Kctd9 potassium channel tetramerisation domain containing 9 Novel U 0.0018074806347094263 -0.24526027368335596 1.0 10739 +627280 Vmn1r90 vomeronasal 1 receptor 90 Novel U 0.0018072549324294443 -0.24526261150015247 1.0 10740 +114671 Semp2l2b SUMO/sentrin specific peptidase 2-like 2B Novel U 0.0018071766396735814 -0.24526342245394395 1.0 10741 +109218 Tmem139 transmembrane protein 139 Novel U 0.0018068679975544863 -0.24526661935886748 1.0 10742 +67533 Ppfibp1 PTPRF interacting protein, binding protein 1 (liprin beta 1) Novel N 0.00180659436819687 -0.2452694536027586 1.0 10743 +215446 Entpd3 ectonucleoside triphosphate diphosphohydrolase 3 Novel U 0.0018060414465938077 -0.24527518074654678 1.0 10744 +210530 P3h2 prolyl 3-hydroxylase 2 Novel N 0.001805175797716943 -0.24528414710915666 1.0 10745 +11364 Acadm acyl-Coenzyme A dehydrogenase, medium chain Novel U 0.0018048033384211448 -0.2452880050302986 1.0 10746 +66205 Cd302 CD302 antigen Novel U 0.0018043003141464925 -0.24529321533919946 1.0 10747 +102545 Cmtm7 CKLF-like MARVEL transmembrane domain containing 7 Novel U 0.0018042488083624335 -0.24529374883441757 1.0 10748 +113858 Vmn1r10 vomeronasal 1 receptor 10 Novel U 0.0018041731197827881 -0.2452945328142374 1.0 10749 +259277 Klk8 kallikrein related-peptidase 8 Novel U 0.0018026084610721813 -0.24531073949772647 1.0 10750 +71586 Ifih1 interferon induced with helicase C domain 1 Novel U 0.0018025073670082893 -0.245311786626717 1.0 10751 +245492 Srsf8 serine and arginine rich splicing factor 8 Novel U 0.0018022881099820575 -0.245314057683787 1.0 10752 +109674 Ampd2 adenosine monophosphate deaminase 2 Novel U 0.001802190868912923 -0.24531506490358448 1.0 10753 +117903916 Naa12 N(alpha)-acetyltransferase 12, NatA catalytic subunit Novel U 0.001802101128450049 -0.24531599443234886 1.0 10754 +28253 Slco1b2 solute carrier organic anion transporter family, member 1b2 Novel U 0.0018019625867272653 -0.24531742944295915 1.0 10755 +68735 Mrps18c mitochondrial ribosomal protein S18C Novel U 0.0018017772291496232 -0.24531934937065505 1.0 10756 +14420 Galc galactosylceramidase Novel N 0.001801655434071074 -0.24532061092007487 1.0 10757 +16506 Kcnd1 potassium voltage-gated channel, Shal-related family, member 1 Novel U 0.0018005792842549467 -0.2453317576444938 1.0 10758 +232714 Mgam maltase-glucoamylase Novel N 0.001800479727834852 -0.2453327888466204 1.0 10759 +629747 Spint3 serine peptidase inhibitor, Kunitz type, 3 Novel U 0.0017997957815187296 -0.2453398731400793 1.0 10760 +101612 Grwd1 glutamate-rich WD repeat containing 1 Novel U 0.0017997864172172454 -0.24533997013520623 1.0 10761 +667370 Ifit3b interferon-induced protein with tetratricopeptide repeats 3B Novel U 0.0017992014733287643 -0.2453460289647741 1.0 10762 +20250 Scd2 stearoyl-Coenzyme A desaturase 2 Novel U 0.0017988226386914065 -0.24534995292149434 1.0 10763 +14381 G6pdx glucose-6-phosphate dehydrogenase X-linked Novel U 0.0017987625336427 -0.24535057548761302 1.0 10764 +74202 Fblim1 filamin binding LIM protein 1 Novel U 0.001798498684013249 -0.24535330843340128 1.0 10765 +22375 Wars1 tryptophanyl-tRNA synthetase1 Novel U 0.0017974224450811357 -0.24536445608088064 1.0 10766 +52829 Lurap1l leucine rich adaptor protein 1-like Novel U 0.0017973357735142214 -0.24536535382212155 1.0 10767 +333307 Trim75 tripartite motif-containing 75 Novel U 0.001796586893874103 -0.24537311069281584 1.0 10768 +57911 Gsdma gasdermin A Novel U 0.0017961982135668957 -0.24537713663066069 1.0 10769 +83408 Gimap3 GTPase, IMAP family member 3 Novel U 0.0017961669294588249 -0.24537746067042368 1.0 10770 +15561 Htr3a 5-hydroxytryptamine (serotonin) receptor 3A Novel N 0.0017961052255451267 -0.24537809979753336 1.0 10771 +69961 Rpp25l ribonuclease P/MRP 25 subunit-like Novel U 0.0017960654924126123 -0.24537851135201377 1.0 10772 +67949 Nifk nucleolar protein interacting with the FHA domain of MKI67 Novel U 0.0017959930643816604 -0.24537926155917747 1.0 10773 +12506 Cd48 CD48 antigen Novel U 0.0017951759789562257 -0.2453877249031539 1.0 10774 +23789 Coro1b coronin, actin binding protein 1B Novel U 0.0017950271339807187 -0.24538926663451713 1.0 10775 +320202 Lefty2 left-right determination factor 2 Novel U 0.001794992458898583 -0.245389625797878 1.0 10776 +68421 Lmbrd1 LMBR1 domain containing 1 Novel U 0.0017946000766690725 -0.24539369008011244 1.0 10777 +53328 Pgrmc1 progesterone receptor membrane component 1 Novel U 0.001794337690794327 -0.24539640786437755 1.0 10778 +654457 Defb26 defensin beta 26 Novel U 0.001794177550591564 -0.24539806659133348 1.0 10779 +26562 Ncdn neurochondrin Novel N 0.001793757107537369 -0.2454024215266675 1.0 10780 +70382 Kctd2 potassium channel tetramerisation domain containing 2 Novel U 0.0017935097866866238 -0.24540498326790927 1.0 10781 +227659 Slc2a6 solute carrier family 2 (facilitated glucose transporter), member 6 Novel N 0.0017931136207469723 -0.24540908674168893 1.0 10782 +13481 Dpm2 dolichyl-phosphate mannosyltransferase subunit 2, regulatory Novel U 0.0017931100241357861 -0.24540912399526935 1.0 10783 +545763 LOC545763 uncharacterized LOC545763 Novel U 0.001791638683510973 -0.24542436409309348 1.0 10784 +16069 Jchain immunoglobulin joining chain Novel U 0.0017910848394030005 -0.2454301007921572 1.0 10785 +112408 Tas2r116 taste receptor, type 2, member 116 Novel U 0.001790382091508166 -0.24543737983175032 1.0 10786 +24067 Srp54a signal recognition particle 54A Novel U 0.0017903654499410008 -0.24543755220455596 1.0 10787 +75691 Anks6 ankyrin repeat and sterile alpha motif domain containing 6 Novel U 0.0017899376564671236 -0.24544198327529543 1.0 10788 +69772 Bdh2 3-hydroxybutyrate dehydrogenase, type 2 Novel N 0.0017898081417604009 -0.24544332478437006 1.0 10789 +194388 Tet3 tet methylcytosine dioxygenase 3 Novel U 0.0017890350865028763 -0.2454513320653147 1.0 10790 +57740 Stk32c serine/threonine kinase 32C Novel U 0.0017889244648478463 -0.245452477880781 1.0 10791 +100040160 Gm20826 predicted gene, 20826 Novel U 0.0017888419379911034 -0.24545333269125022 1.0 10792 +100101919 Dnah7c dynein, axonemal, heavy chain 7C Novel U 0.0017883581280962262 -0.245458343978237 1.0 10793 +72198 Mtrex Mtr4 exosome RNA helicase Novel N 0.001787903799350465 -0.24546304990045031 1.0 10794 +51811 Clec4f C-type lectin domain family 4, member f Novel U 0.0017873610726608414 -0.24546867144566026 1.0 10795 +74362 Spag17 sperm associated antigen 17 Novel N 0.0017866199632920127 -0.24547634783213992 1.0 10796 +93759 Sirt1 sirtuin 1 Novel U 0.0017865122592177545 -0.2454774634274005 1.0 10797 +20701 Serpina1b serine (or cysteine) preptidase inhibitor, clade A, member 1B Novel U 0.001785743809506788 -0.24548542300424528 1.0 10798 +17968 Ncam2 neural cell adhesion molecule 2 Novel N 0.0017857337038059032 -0.24548552767876283 1.0 10799 +100040766 Mroh2a maestro heat-like repeat family member 2A Novel U 0.001785195873128217 -0.2454910985112421 1.0 10800 +12189 Brca1 breast cancer 1, early onset Novel U 0.00178430445348158 -0.2455003318066381 1.0 10801 +545975 Cers3 ceramide synthase 3 Novel U 0.0017840165923167005 -0.245503313463121 1.0 10802 +20871 Aurkc aurora kinase C Novel U 0.0017833503061173474 -0.24551021483367094 1.0 10803 +100503085 Klhl3 kelch-like 3 Novel U 0.0017822532773287543 -0.24552157782180029 1.0 10804 +234564 Ces1f carboxylesterase 1F Novel U 0.001780944446893858 -0.24553513464441945 1.0 10805 +75288 Slc35f4 solute carrier family 35, member F4 Novel U 0.001780735114860968 -0.24553730289873474 1.0 10806 +11856 Arhgap6 Rho GTPase activating protein 6 Novel U 0.0017801968218638436 -0.2455428785199035 1.0 10807 +213054 Gabpb2 GA repeat binding protein, beta 2 Novel N 0.0017801739787815963 -0.24554311512779847 1.0 10808 +242711 Cela3a chymotrypsin-like elastase family, member 3A Novel U 0.001779531746585569 -0.2455497673477727 1.0 10809 +15205 Hes1 hes family bHLH transcription factor 1 Novel N 0.001777924652335462 -0.24556641357718492 1.0 10810 +330149 Hfm1 HFM1, ATP-dependent DNA helicase homolog Novel N 0.0017771807514380532 -0.24557411887822586 1.0 10811 +404287 V1rd19 vomeronasal 1 receptor, D19 Novel U 0.0017768653948248114 -0.24557738533165904 1.0 10812 +20813 Srp14 signal recognition particle 14 Novel U 0.001775939684845523 -0.24558697380519345 1.0 10813 +68995 Mcts1 malignant T cell amplified sequence 1 Novel U 0.0017758436904730436 -0.24558796811174793 1.0 10814 +14300 Frg1 FSHD region gene 1 Novel U 0.0017754325789584066 -0.245592226391302 1.0 10815 +213056 Hycc2 hyccin PI4KA lipid kinase complex subunit 2 Novel U 0.0017747551637884587 -0.24559924303536348 1.0 10816 +100042971 Gm10670 predicted gene 10670 Novel U 0.0017743355153523824 -0.24560358974006913 1.0 10817 +277328 Trpa1 transient receptor potential cation channel, subfamily A, member 1 Novel U 0.0017738860844141505 -0.2456082449309531 1.0 10818 +100502967 Speer4c1 spermatogenesis associated glutamate (E)-rich protein 4C1 Novel U 0.0017736226555849996 -0.2456109735181057 1.0 10819 +78284 Creb3l4 cAMP responsive element binding protein 3-like 4 Novel N 0.0017732609108921005 -0.24561472045774302 1.0 10820 +99571 Fgg fibrinogen gamma chain Novel U 0.0017726254154766183 -0.2456213028983658 1.0 10821 +381112 Arhgef33 Rho guanine nucleotide exchange factor 33 Novel U 0.0017719410827663137 -0.24562839119408292 1.0 10822 +171201 Vmn1r21 vomeronasal 1 receptor 21 Novel U 0.001771647388742762 -0.2456314332671242 1.0 10823 +52690 Setd3 SET domain containing 3 Novel U 0.0017713487947372466 -0.24563452609401756 1.0 10824 +230868 Igsf21 immunoglobulin superfamily, member 21 Novel U 0.0017706470795561947 -0.24564179443679526 1.0 10825 +22146 Tuba1c tubulin, alpha 1C Novel U 0.001770046778259753 -0.24564801233788996 1.0 10826 +107271 Yars1 tyrosyl-tRNA synthetase 1 Novel U 0.001769961747799057 -0.24564889308060664 1.0 10827 +217335 Fbf1 Fas binding factor 1 Novel U 0.0017693851346241081 -0.2456548656209176 1.0 10828 +110960 Tars1 threonyl-tRNA synthetase 1 Novel U 0.0017691555897219487 -0.24565724323946828 1.0 10829 +653016 Mymx myomixer, myoblast fusion factor Novel N 0.0017677833692430432 -0.24567145665407947 1.0 10830 +268936 Brpf3 bromodomain and PHD finger containing, 3 Novel N 0.0017674791539328755 -0.24567460770626165 1.0 10831 +67892 Coa6 cytochrome c oxidase assembly factor 6 Novel U 0.0017660929843159626 -0.24568896560558579 1.0 10832 +268902 Robo2 roundabout guidance receptor 2 Novel U 0.0017660026322620407 -0.24568990146919015 1.0 10833 +71392 5430401F13Rik RIKEN cDNA 5430401F13 gene Novel U 0.0017659511540749817 -0.24569043467855944 1.0 10834 +329065 Scd4 stearoyl-coenzyme A desaturase 4 Novel U 0.0017657570537091356 -0.24569244516376817 1.0 10835 +235293 Sc5d sterol-C5-desaturase Novel U 0.0017654012635086994 -0.2456961304269683 1.0 10836 +12531 Cdc25b cell division cycle 25B Novel U 0.001764585121878003 -0.24570458399514986 1.0 10837 +100532 Rell1 RELT-like 1 Novel U 0.0017634782100659273 -0.24571604935131156 1.0 10838 +11484 Aspa aspartoacylase Novel U 0.0017632677737609325 -0.245718229043641 1.0 10839 +16495 Kcna7 potassium voltage-gated channel, shaker-related subfamily, member 7 Novel U 0.0017626168611161934 -0.24572497117541758 1.0 10840 +18537 Pcmt1 protein-L-isoaspartate (D-aspartate) O-methyltransferase 1 Novel U 0.0017625103357223764 -0.24572607456194492 1.0 10841 +11933 Atp1b3 ATPase, Na+/K+ transporting, beta 3 polypeptide Novel U 0.0017606935519900765 -0.24574489274812053 1.0 10842 +54006 Deaf1 DEAF1, transcription factor Novel U 0.0017606443172948582 -0.2457454027194751 1.0 10843 +14918 Gucy2d guanylate cyclase 2d Novel U 0.0017602793511670954 -0.24574918302662885 1.0 10844 +72003 Synpr synaptoporin Novel U 0.0017600716115795635 -0.24575133478644742 1.0 10845 +329559 Zfp335 zinc finger protein 335 Novel U 0.001760066451381138 -0.24575138823561307 1.0 10846 +387356 Tas2r131 taste receptor, type 2, member 131 Novel U 0.0017596800620011549 -0.2457553904441091 1.0 10847 +241943 Gm57858 gene model 57858 Novel U 0.0017596321072947546 -0.24575588715738156 1.0 10848 +66179 Ogfod3 2-oxoglutarate and iron-dependent oxygenase domain containing 3 Novel U 0.0017583273684749403 -0.24576940159918623 1.0 10849 +380967 Tmem106c transmembrane protein 106C Novel U 0.0017572967118125633 -0.2457800771070141 1.0 10850 +12258 Serping1 serine (or cysteine) peptidase inhibitor, clade G, member 1 Novel U 0.0017563098109042627 -0.24579029939417968 1.0 10851 +72323 Asb6 ankyrin repeat and SOCS box-containing 6 Novel U 0.0017562167716438477 -0.24579126309178054 1.0 10852 +75524 Tex48 testis expressed 48 Novel U 0.0017546823848137588 -0.24580715622012636 1.0 10853 +237860 Ssh2 slingshot protein phosphatase 2 Novel U 0.0017545061445182414 -0.24580898171131374 1.0 10854 +100009609 Vmn2r65 vomeronasal 2, receptor 65 Novel U 0.0017544976192643295 -0.2458090700156135 1.0 10855 +70433 Draxin dorsal inhibitory axon guidance protein Novel U 0.0017541591708588392 -0.24581257565307169 1.0 10856 +12936 Pcdha4 protocadherin alpha 4 Novel U 0.001753990378560231 -0.2458143239981519 1.0 10857 +72873 Bbof1 basal body orientation factor 1 Novel U 0.0017536019984398725 -0.24581834682667128 1.0 10858 +171274 Vmn1r222 vomeronasal 1 receptor 222 Novel U 0.001753438363491187 -0.24582004175209055 1.0 10859 +228443 Or4k77 olfactory receptor family 4 subfamily K member 77 Novel U 0.0017524367164765808 -0.2458304167789405 1.0 10860 +77627 Efcab6 EF-hand calcium binding domain 6 Novel U 0.0017518915561963487 -0.24583606353120194 1.0 10861 +23825 Banf1 BAF nuclear assembly factor 1 Novel U 0.0017515959183922933 -0.24583912573785777 1.0 10862 +171231 Vmn1r230 vomeronasal 1 receptor 230 Novel U 0.0017515303157466325 -0.24583980524790497 1.0 10863 +230603 Ttc39a tetratricopeptide repeat domain 39A Novel U 0.001751241786784099 -0.245842793821414 1.0 10864 +75678 Ippk inositol 1,3,4,5,6-pentakisphosphate 2-kinase Novel N 0.0017511540914873095 -0.24584370216641532 1.0 10865 +74438 Clvs1 clavesin 1 Novel U 0.0017511263088425377 -0.24584398993813655 1.0 10866 +23793 Adam25 ADAM metallopeptidase domain 25 Novel U 0.001750554971891827 -0.2458499078274903 1.0 10867 +12155 Bmp15 bone morphogenetic protein 15 Novel N 0.0017504185346646803 -0.24585132103980398 1.0 10868 +320696 Ccdc158 coiled-coil domain containing 158 Novel U 0.0017502402797077725 -0.24585316739878785 1.0 10869 +620758 Vmn1r160 vomeronasal 1 receptor 160 Novel U 0.0017499210238927487 -0.24585647424002488 1.0 10870 +56248 Ak3 adenylate kinase 3 Novel U 0.0017497332995849938 -0.24585841868223346 1.0 10871 +20511 Slc1a2 solute carrier family 1 (glial high affinity glutamate transporter), member 2 Novel U 0.0017492647000682195 -0.24586327242062386 1.0 10872 +13166 Dbh dopamine beta hydroxylase Novel N 0.0017486560653809545 -0.24586957663870676 1.0 10873 +208836 Fanci Fanconi anemia, complementation group I Novel U 0.0017483408407670087 -0.24587284172489557 1.0 10874 +54604 Pcnx1 pecanex 1 Novel U 0.0017475406807948215 -0.24588112975558363 1.0 10875 +69259 Kctd5 potassium channel tetramerisation domain containing 5 Novel U 0.0017468824278499382 -0.24588794791794785 1.0 10876 +30056 Timm9 translocase of inner mitochondrial membrane 9 Novel U 0.0017466337652592536 -0.2458905235568878 1.0 10877 +223255 Stk24 serine/threonine kinase 24 Novel U 0.0017456310303867403 -0.24590090985173418 1.0 10878 +12183 Bpgm 2,3-bisphosphoglycerate mutase Novel N 0.001745335787298359 -0.24590396796993802 1.0 10879 +14790 Grcc10 gene rich cluster, C10 gene Novel U 0.0017452882101743395 -0.24590446077222458 1.0 10880 +106557 Ldhal6b lactate dehydrogenase A-like 6B Novel N 0.001744919985472877 -0.2459082748315776 1.0 10881 +15278 Tfb2m transcription factor B2, mitochondrial Novel N 0.001743999094384626 -0.24591781339119706 1.0 10882 +50769 Atp8a2 ATPase, aminophospholipid transporter-like, class I, type 8A, member 2 Novel N 0.0017437841321711783 -0.24592003996273745 1.0 10883 +74469 Taf7l TATA-box binding protein associated factor 7 like Novel U 0.0017431323477075113 -0.24592679112478585 1.0 10884 +24051 Sgcb sarcoglycan, beta (dystrophin-associated glycoprotein) Novel N 0.0017430761177022812 -0.24592737355333155 1.0 10885 +93838 Dqx1 DEAQ RNA-dependent ATPase Novel U 0.001742605978282484 -0.24593224324198681 1.0 10886 +18514 Pbx1 pre B cell leukemia homeobox 1 Novel U 0.001742222680545932 -0.24593621342734182 1.0 10887 +14246 Flg filaggrin Novel U 0.0017419598514401176 -0.24593893580257978 1.0 10888 +240916 Vsig8 V-set and immunoglobulin domain containing 8 Novel U 0.0017416497761554152 -0.24594214755218555 1.0 10889 +68393 Mogat1 monoacylglycerol O-acyltransferase 1 Novel U 0.001741186630498307 -0.24594694479967677 1.0 10890 +226861 Hhat hedgehog acyltransferase Novel U 0.001740397951450712 -0.24595511391132535 1.0 10891 +20747 Spop speckle-type BTB/POZ protein Novel U 0.0017398594591237983 -0.24596069159714554 1.0 10892 +19279 Ptprr protein tyrosine phosphatase receptor type R Novel U 0.0017373973773648667 -0.24598619375906797 1.0 10893 +235041 Kank2 KN motif and ankyrin repeat domains 2 Novel U 0.0017370480230242066 -0.24598981235984413 1.0 10894 +12843 Col1a2 collagen, type I, alpha 2 Novel U 0.0017362836119211471 -0.24599773010492096 1.0 10895 +66398 Commd5 COMM domain containing 5 Novel U 0.0017355188599949506 -0.24600565138023262 1.0 10896 +77505 Dnhd1 dynein heavy chain domain 1 Novel N 0.0017354691518979704 -0.2460061662550671 1.0 10897 +105847 Lmf2 lipase maturation factor 2 Novel U 0.0017347708859851917 -0.24601339887043738 1.0 10898 +100039240 Gm10058 predicted gene 10058 Novel U 0.00173438637334511 -0.2460173816397232 1.0 10899 +230674 Kdm4a lysine (K)-specific demethylase 4A Novel N 0.0017337019337586457 -0.24602447104246003 1.0 10900 +269053 Gpr152 G protein-coupled receptor 152 Novel U 0.0017334869886018534 -0.24602669743732816 1.0 10901 +20103 Rps5 ribosomal protein S5 Novel N 0.0017332814752120196 -0.24602882613826418 1.0 10902 +101861 Ints4 integrator complex subunit 4 Novel N 0.0017327439344022573 -0.24603439396830096 1.0 10903 +319998 Tmem198 transmembrane protein 198 Novel U 0.0017326253021097233 -0.24603562275768723 1.0 10904 +21769 Zfand3 zinc finger, AN1-type domain 3 Novel U 0.0017320269764629283 -0.24604182019506782 1.0 10905 +12154 Bmp10 bone morphogenetic protein 10 Novel U 0.0017318476064804435 -0.24604367810344993 1.0 10906 +353325 Tas2r115 taste receptor, type 2, member 115 Novel U 0.0017315709209781093 -0.24604654400278758 1.0 10907 +100042100 Gm3667 predicted gene 3667 Novel U 0.0017297526200182904 -0.24606537790435595 1.0 10908 +52552 Parp8 poly (ADP-ribose) polymerase family, member 8 Novel N 0.0017295379645854698 -0.24606760129827268 1.0 10909 +68202 Ndufa5 NADH:ubiquinone oxidoreductase subunit A5 Novel N 0.0017279655134596205 -0.2460838886953427 1.0 10910 +216877 Dhx33 DEAH-box helicase 33 Novel U 0.001727773584275884 -0.24608587669151852 1.0 10911 +17750 Mt2 metallothionein 2 Novel U 0.001727605450325126 -0.24608761821745337 1.0 10912 +216345 Zfc3h1 zinc finger, C3H1-type containing Novel U 0.0017275663905260983 -0.24608802279756767 1.0 10913 +15206 Hes2 hes family bHLH transcription factor 2 Novel U 0.0017270587901614541 -0.24609328050545817 1.0 10914 +77683 Ehmt1 euchromatic histone methyltransferase 1 Novel U 0.0017265667150894674 -0.2460983774028777 1.0 10915 +320438 Alg6 ALG6 alpha-1,3-glucosyltransferase Novel N 0.0017263475415124079 -0.24610064759558395 1.0 10916 +333193 Proser3 proline and serine rich 3 Novel U 0.0017260825043196493 -0.24610339284211394 1.0 10917 +67118 Bfar bifunctional apoptosis regulator Novel U 0.0017260574819509288 -0.24610365202298654 1.0 10918 +545527 Erich6 glutamate rich 6 Novel U 0.0017251737155471994 -0.24611280604634414 1.0 10919 +19283 Ptprz1 protein tyrosine phosphatase receptor type Z, polypeptide 1 Novel N 0.001725164314798024 -0.24611290341899505 1.0 10920 +239217 Kctd12 potassium channel tetramerisation domain containing 12 Novel U 0.0017248652851371714 -0.24611600075839213 1.0 10921 +72297 B3gnt3 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 3 Novel N 0.001724538413425197 -0.2461193864848394 1.0 10922 +18782 Pla2g2d phospholipase A2, group IID Novel U 0.001723981989709063 -0.24612514990339968 1.0 10923 +67448 Plxdc2 plexin domain containing 2 Novel U 0.0017239364089477857 -0.2461256220274266 1.0 10924 +545725 Mterf1a mitochondrial transcription termination factor 1a Novel U 0.0017239186390387016 -0.24612580608756074 1.0 10925 +545007 Gm5796 predicted gene 5796 Novel U 0.0017234494249108389 -0.24613066619207258 1.0 10926 +68268 Zdhhc21 zinc finger, DHHC domain containing 21 Novel N 0.0017233831255773979 -0.24613135291838886 1.0 10927 +18148 Npm1 nucleophosmin 1 Novel U 0.0017233598868624488 -0.24613159362423437 1.0 10928 +381544 Armh1 armadillo-like helical domain containing 1 Novel U 0.0017232365186814083 -0.24613287146779808 1.0 10929 +50995 Uba2 ubiquitin-like modifier activating enzyme 2 Novel N 0.0017230561245085959 -0.24613473998470994 1.0 10930 +100039045 Speer4a2 spermatogenesis associated glutamate (E)-rich protein 4A2 Novel U 0.0017229826307469398 -0.2461355012306772 1.0 10931 +18767 Pkia protein kinase inhibitor, alpha Novel U 0.0017224977543324738 -0.24614052356463878 1.0 10932 +665615 Smr2l submaxillary gland androgen regulated protein 2 like Novel U 0.0017215272371066087 -0.24615057615016026 1.0 10933 +13180 Pcbd1 pterin 4 alpha carbinolamine dehydratase/dimerization cofactor of hepatocyte nuclear factor 1 alpha (TCF1) 1 Novel N 0.0017203877285852593 -0.24616237914196507 1.0 10934 +216516 Ccdc157 coiled-coil domain containing 157 Novel U 0.0017177395128269094 -0.24618980927373466 1.0 10935 +16997 Ltbp2 latent transforming growth factor beta binding protein 2 Novel U 0.0017176330256754233 -0.24619091226414916 1.0 10936 +14731 Gpaa1 GPI anchor attachment protein 1 Novel U 0.0017175702143287543 -0.24619156286201316 1.0 10937 +21984 Tpbpa trophoblast specific protein alpha Novel U 0.0017171888770886642 -0.24619551274061022 1.0 10938 +667135 Vmn1r104 vomeronasal 1 receptor 104 Novel U 0.0017170800171409917 -0.24619664030836963 1.0 10939 +14027 Evpl envoplakin Novel N 0.001717030323517143 -0.2461971550332919 1.0 10940 +381306 Firrm FIGNL1 interacting regulator of recombination and mitosis Novel U 0.0017163906395827346 -0.24620378085845598 1.0 10941 +226844 Flvcr1 feline leukemia virus subgroup C cellular receptor 1 Novel U 0.0017161082836100292 -0.24620670549233933 1.0 10942 +73047 Camk2n2 calcium/calmodulin-dependent protein kinase II inhibitor 2 Novel U 0.001716057279246983 -0.2462072337938551 1.0 10943 +72309 Tmem158 transmembrane protein 158 Novel U 0.0017160185617681207 -0.24620763482822836 1.0 10944 +544923 Serpinb9h serine (or cysteine) peptidase inhibitor, clade B, member 9h Novel U 0.0017158958905074833 -0.24620890545311347 1.0 10945 +21349 Tal1 T cell acute lymphocytic leukemia 1 Novel U 0.001715866772841318 -0.24620920705294239 1.0 10946 +236732 Rbm10 RNA binding motif protein 10 Novel U 0.0017156956463641494 -0.24621097957536744 1.0 10947 +76407 Sun5 Sad1 and UNC84 domain containing 5 Novel N 0.0017153542092235954 -0.24621451617004514 1.0 10948 +21683 Tecta tectorin alpha Novel U 0.0017152497035049256 -0.24621559863684367 1.0 10949 +21380 Tbx1 T-box 1 Novel U 0.0017150074289931237 -0.2462181081082726 1.0 10950 +56449 Ybx3 Y box protein 3 Novel U 0.0017145481150362535 -0.24622286566713872 1.0 10951 +230075 Ndufb6 NADH:ubiquinone oxidoreductase subunit B6 Novel N 0.0017142861125344017 -0.24622557948044005 1.0 10952 +328365 Zmiz1 zinc finger, MIZ-type containing 1 Novel U 0.0017140737609362478 -0.246227779011313 1.0 10953 +74670 Zfp943 zinc finger prtoein 943 Novel U 0.0017137616940384487 -0.24623101138998177 1.0 10954 +229714 Gpr61 G protein-coupled receptor 61 Novel N 0.0017131242660034947 -0.24623761384861353 1.0 10955 +76858 Nlrp14 NLR family, pyrin domain containing 14 Novel N 0.0017128452982790646 -0.24624050338713258 1.0 10956 +218613 Mier3 MIER family member 3 Novel U 0.0017118335606770973 -0.2462509829319547 1.0 10957 +66197 Cks2 CDC28 protein kinase regulatory subunit 2 Novel U 0.0017117200711635851 -0.24625215845260487 1.0 10958 +230598 Nrdc nardilysin convertase Novel U 0.0017106257655455858 -0.24626349323422275 1.0 10959 +258886 Or4k49 olfactory receptor family 4 subfamily K member 49 Novel U 0.0017103641814099153 -0.24626620271410093 1.0 10960 +14433 Gapdh glyceraldehyde-3-phosphate dehydrogenase Novel U 0.001710032898253932 -0.24626963413414024 1.0 10961 +665755 LOC665755 PRAME family member 8-like Novel U 0.0017088828679302475 -0.24628154611042777 1.0 10962 +68133 Gcsh glycine cleavage system protein H (aminomethyl carrier) Novel N 0.0017087078124299994 -0.2462833593295447 1.0 10963 +19893 Rpgr retinitis pigmentosa GTPase regulator Novel U 0.0017086098372293857 -0.2462843741534519 1.0 10964 +51885 Tubgcp4 tubulin, gamma complex component 4 Novel U 0.0017084643005502351 -0.2462858816175903 1.0 10965 +19243 Ptp4a1 protein tyrosine phosphatase 4a1 Novel U 0.001708096066541306 -0.24628969577334972 1.0 10966 +212377 Mms22l MMS22-like, DNA repair protein Novel N 0.001708094236525948 -0.24628971472858863 1.0 10967 +78252 Nxpe2 neurexophilin and PC-esterase domain family, member 2 Novel U 0.0017079211198877153 -0.24629150786503654 1.0 10968 +12628 Cfh complement component factor h Novel U 0.0017075780567649519 -0.24629506130158454 1.0 10969 +234875 Ttc13 tetratricopeptide repeat domain 13 Novel U 0.0017071593881150212 -0.24629939785769753 1.0 10970 +58238 Fam181b family with sequence similarity 181, member B Novel U 0.0017071446720407885 -0.24629955028631068 1.0 10971 +68952 Tlcd3b TLC domain containing 3B Novel N 0.0017069299084632315 -0.24630177480038704 1.0 10972 +56057 Btg4 BTG anti-proliferation factor 4 Novel N 0.001706915509281271 -0.24630192394664044 1.0 10973 +12990 Csn1s1 casein alpha s1 Novel U 0.001706596012496178 -0.24630523328383752 1.0 10974 +224907 Dus3l dihydrouridine synthase 3 like Novel N 0.0017062820741946844 -0.24630848504644423 1.0 10975 +99712 Cept1 choline/ethanolaminephosphotransferase 1 Novel N 0.0017060023935967154 -0.246311381968884 1.0 10976 +171263 Vmn1r67 vomeronasal 1 receptor 67 Novel U 0.0017056878365926313 -0.24631464013999177 1.0 10977 +12298 Cacnb4 calcium channel, voltage-dependent, beta 4 subunit Novel N 0.0017054649096710903 -0.2463169492097168 1.0 10978 +666040 Pramel3b PRAME like 3B Novel U 0.0017053792881485184 -0.24631783607463292 1.0 10979 +631584 Catspere1 cation channel sperm associated auxiliary subunit epsilon 1 Novel U 0.0017047613830569292 -0.24632423631525907 1.0 10980 +13074 Cyp17a1 cytochrome P450, family 17, subfamily a, polypeptide 1 Novel N 0.0017046050234819181 -0.24632585588259698 1.0 10981 +56727 Miox myo-inositol oxygenase Novel N 0.0017042892823028299 -0.24632912631935058 1.0 10982 +19114 Prl7a2 prolactin family 7, subfamily a, member 2 Novel U 0.0017035144020738095 -0.24633715250328997 1.0 10983 +229681 St7l suppression of tumorigenicity 7-like Novel U 0.0017029234848290823 -0.24634327320468546 1.0 10984 +208990 Npb neuropeptide B Novel N 0.001702868301506227 -0.24634384479172955 1.0 10985 +11867 Arpc1b actin related protein 2/3 complex, subunit 1B Novel U 0.0017026688256654983 -0.2463459109559304 1.0 10986 +16492 Kcna4 potassium voltage-gated channel, shaker-related subfamily, member 4 Novel N 0.0017026625704614513 -0.24634597574712827 1.0 10987 +76943 Psapl1 prosaposin-like 1 Novel U 0.0017026029439234853 -0.24634659335684841 1.0 10988 +243083 Tmprss11f transmembrane protease, serine 11f Novel U 0.001701756677471507 -0.2463553589569385 1.0 10989 +212518 Sprn shadow of prion protein Novel U 0.0017014890164569422 -0.24635813138092846 1.0 10990 +329093 Cpa6 carboxypeptidase A6 Novel N 0.0017013924685988556 -0.2463591314204687 1.0 10991 +12965 Crygb crystallin, gamma B Novel N 0.0017007670084639532 -0.24636560991598513 1.0 10992 +17140 Magea4 MAGE family member A4 Novel U 0.0017007314410541717 -0.24636597832204643 1.0 10993 +14933 Gk glycerol kinase Novel U 0.0016989014676311628 -0.24638493312660484 1.0 10994 +216285 Alx1 ALX homeobox 1 Novel U 0.0016987826754578067 -0.24638616357203136 1.0 10995 +66578 Mis18a MIS18 kinetochore protein A Novel U 0.0016987404307865649 -0.24638660114094738 1.0 10996 +100042761 Tdpoz7 Td and POZ domain containing 7 Novel U 0.001698691999287057 -0.24638710279282716 1.0 10997 +18575 Pde1c phosphodiesterase 1C Novel N 0.001698572854389103 -0.2463883368917635 1.0 10998 +68870 Ak8 adenylate kinase 8 Novel U 0.0016983335590558413 -0.246390815504959 1.0 10999 +74281 Spatc1 spermatogenesis and centriole associated 1 Novel U 0.0016982635778117574 -0.2463915403683847 1.0 11000 +118568222 Tmdd1 transmembrane and death domain 1 Novel U 0.0016977358905680266 -0.2463970061355085 1.0 11001 +67931 Serpini2 serine (or cysteine) peptidase inhibitor, clade I, member 2 Novel U 0.001697280642668899 -0.2464017215782822 1.0 11002 +67842 Nop9 NOP9 nucleolar protein Novel U 0.0016971928282604957 -0.2464026311570377 1.0 11003 +20974 Syngr3 synaptogyrin 3 Novel U 0.0016968892802848043 -0.2464057752969913 1.0 11004 +18173 Slc11a1 solute carrier family 11 (proton-coupled divalent metal ion transporters), member 1 Novel U 0.0016954539211925176 -0.24642064269928432 1.0 11005 +17151 Ccndbp1 cyclin D-type binding-protein 1 Novel U 0.0016949667010869752 -0.24642568930912104 1.0 11006 +230623 Skint11 selection and upkeep of intraepithelial T cells 11 Novel U 0.0016947952653598097 -0.24642746503474738 1.0 11007 +320563 Islr2 immunoglobulin superfamily containing leucine-rich repeat 2 Novel U 0.0016947122912141736 -0.24642832447822022 1.0 11008 +30946 Abt1 activator of basal transcription 1 Novel N 0.0016943064526621224 -0.24643252814060115 1.0 11009 +57749 Piwil1 piwi-like RNA-mediated gene silencing 1 Novel N 0.0016938071542399046 -0.24643769985724495 1.0 11010 +22057 Tob1 transducer of ErbB-2.1 Novel N 0.0016932941829924807 -0.24644301319656275 1.0 11011 +232934 Mypop Myb-related transcription factor, partner of profilin Novel U 0.0016931283737158472 -0.24644473064359942 1.0 11012 +19891 Rpa2 replication protein A2 Novel U 0.0016931046139807174 -0.24644497674615484 1.0 11013 +93715 Pcdhga7 protocadherin gamma subfamily A, 7 Novel U 0.0016930347409909027 -0.24644570048828637 1.0 11014 +319660 Agmo alkylglycerol monooxygenase Novel U 0.001692333617743464 -0.24645296269983516 1.0 11015 +241201 Cdh7 cadherin 7, type 2 Novel U 0.0016922621178811518 -0.24645370329305857 1.0 11016 +67495 Tmem167b transmembrane protein 167B Novel U 0.001691815955836264 -0.24645832462485273 1.0 11017 +404291 Vmn1r174 vomeronasal 1 receptor 174 Novel U 0.001691014650373274 -0.2464666245204969 1.0 11018 +83492 Gsdmc gasdermin C Novel U 0.0016910041385627848 -0.24646673340148437 1.0 11019 +94275 Maged1 MAGE family member D1 Novel N 0.0016910024891947139 -0.24646675048558464 1.0 11020 +13179 Dcn decorin Novel U 0.0016906043754750326 -0.24647087413440583 1.0 11021 +319875 Tmprss11b transmembrane protease, serine 11B Novel U 0.0016904027774963012 -0.24647296227964235 1.0 11022 +67315 Ceacam12 CEA cell adhesion molecule 12 Novel U 0.0016899672714783631 -0.24647747323665964 1.0 11023 +140489 Bhlhe23 basic helix-loop-helix family, member e23 Novel U 0.001689867777936148 -0.24647850378749925 1.0 11024 +75002 Tmprss12 transmembrane (C-terminal) protease, serine 12 Novel U 0.0016894445363843213 -0.24648288770957974 1.0 11025 +382252 Bclaf3 Bclaf1 and Thrap3 family member 3 Novel U 0.0016891571731224258 -0.2464858642087999 1.0 11026 +83679 Pde4dip phosphodiesterase 4D interacting protein (myomegalin) Novel U 0.0016869026136968049 -0.24650921686121582 1.0 11027 +230622 Skint6 selection and upkeep of intraepithelial T cells 6 Novel U 0.0016866898446716717 -0.24651142071578377 1.0 11028 +12041 Bckdk branched chain ketoacid dehydrogenase kinase Novel N 0.0016866353229312 -0.24651198545017924 1.0 11029 +69379 C8g complement component 8, gamma polypeptide Novel U 0.001686036926693259 -0.24651818361874064 1.0 11030 +15161 Hcfc1 host cell factor C1 Novel U 0.0016859380659838617 -0.2465192076147187 1.0 11031 +319186 H2bc14 H2B clustered histone 14 Novel U 0.0016856612960687914 -0.24652207438840068 1.0 11032 +331026 Gmppb GDP-mannose pyrophosphorylase B Novel U 0.0016853983456682408 -0.24652479802000554 1.0 11033 +100043906 Kpna2rt karyopherin subunit alpha 2, retrotransposed Novel U 0.0016852419961207066 -0.2465264174834792 1.0 11034 +21664 Phlda1 pleckstrin homology like domain, family A, member 1 Novel U 0.0016849576902824603 -0.2465293623140057 1.0 11035 +632793 Vmn1r204 vomeronasal 1 receptor 204 Novel U 0.0016845652080738514 -0.24653342763182032 1.0 11036 +67239 Rpf2 ribosome production factor 2 homolog Novel N 0.0016844111580405835 -0.24653502327700078 1.0 11037 +67998 Retreg3 reticulophagy regulator family member 3 Novel U 0.0016841189864056744 -0.24653804958119055 1.0 11038 +386655 Eid2 EP300 interacting inhibitor of differentiation 2 Novel U 0.0016834445609028494 -0.2465450352583783 1.0 11039 +14451 Gas1 growth arrest specific 1 Novel U 0.0016826785653486958 -0.24655296941514745 1.0 11040 +75778 Them4 thioesterase superfamily member 4 Novel N 0.0016817252009964307 -0.24656284433176806 1.0 11041 +16512 Kcnh3 potassium voltage-gated channel, subfamily H (eag-related), member 3 Novel N 0.001680840481685859 -0.24657200822530337 1.0 11042 +54138 Atxn10 ataxin 10 Novel N 0.0016808183942535319 -0.24657223700620132 1.0 11043 +93699 Pcdhgb1 protocadherin gamma subfamily B, 1 Novel U 0.0016793357158813433 -0.24658759454004 1.0 11044 +70699 Nup205 nucleoporin 205 Novel U 0.001677899909611997 -0.24660246657417834 1.0 11045 +67623 Tm7sf3 transmembrane 7 superfamily member 3 Novel U 0.0016778386227969263 -0.24660310138099414 1.0 11046 +100039763 Cldn34c6 claudin 34C6 Novel U 0.0016777347215680266 -0.2466041775865075 1.0 11047 +631304 Cyp4f40 cytochrome P450, family 4, subfamily f, polypeptide 40 Novel U 0.0016776406206855052 -0.24660515228035526 1.0 11048 +328110 Prpf39 pre-mRNA processing factor 39 Novel U 0.0016773953166398766 -0.24660769313159595 1.0 11049 +386454 Rnf39 ring finger protein 39 Novel U 0.0016771383708486603 -0.24661035456765473 1.0 11050 +26940 Ecsit ECSIT signalling integrator Novel U 0.0016769115053597652 -0.2466127044329309 1.0 11051 +208211 Alg1 ALG1 chitobiosyldiphosphodolichol beta-mannosyltransferase Novel U 0.0016766701729591638 -0.24661520414600296 1.0 11052 +14400 Gabrb1 gamma-aminobutyric acid type A receptor subunit beta 1 Novel N 0.0016763720439893683 -0.24661829215607164 1.0 11053 +27398 Mrpl2 mitochondrial ribosomal protein L2 Novel U 0.001676308765408438 -0.24661894759353273 1.0 11054 +231602 P2rx2 purinergic receptor P2X, ligand-gated ion channel, 2 Novel N 0.001675953804508461 -0.246622624266866 1.0 11055 +20520 Slc22a5 solute carrier family 22 (organic cation transporter), member 5 Novel U 0.0016755050811514804 -0.24662727212864663 1.0 11056 +21952 Tnni1 troponin I, skeletal, slow 1 Novel U 0.0016752908240235387 -0.2466294913969345 1.0 11057 +71703 Armcx3 armadillo repeat containing, X-linked 3 Novel U 0.0016751408889988542 -0.24663104441899134 1.0 11058 +26757 Dpysl4 dihydropyrimidinase-like 4 Novel N 0.0016747568840342715 -0.246635021929791 1.0 11059 +504186 Chrna10 cholinergic receptor, nicotinic, alpha polypeptide 10 Novel N 0.0016739423427119613 -0.2466434589220309 1.0 11060 +74412 Gle1 GLE1 RNA export mediator Novel U 0.0016736248438878566 -0.24664674756441374 1.0 11061 +213311 Fbxl21 F-box and leucine-rich repeat protein 21 Novel U 0.001673050563147382 -0.24665269594544514 1.0 11062 +232933 Ccdc61 coiled-coil domain containing 61 Novel U 0.00167248619301759 -0.24665854167269685 1.0 11063 +109331 Rnf20 ring finger protein 20 Novel U 0.0016723838931151295 -0.2466596012917236 1.0 11064 +230757 5730409E04Rik RIKEN cDNA 5730409E04Rik gene Novel U 0.0016722986642089817 -0.24666048408993174 1.0 11065 +109264 Me3 malic enzyme 3, NADP(+)-dependent, mitochondrial Novel N 0.0016720305429938265 -0.24666326128066432 1.0 11066 +20680 Sox7 SRY (sex determining region Y)-box 7 Novel N 0.0016716864948545219 -0.24666682491998126 1.0 11067 +19094 Mapk11 mitogen-activated protein kinase 11 Novel U 0.0016710226801810557 -0.24667370069054728 1.0 11068 +23850 Pappa2 pappalysin 2 Novel N 0.0016705003602966951 -0.24667911086273916 1.0 11069 +108116 Slco3a1 solute carrier organic anion transporter family, member 3a1 Novel U 0.0016698289028040296 -0.24668606579737518 1.0 11070 +18226 Nup62 nucleoporin 62 Novel U 0.0016690322489792335 -0.24669431751150384 1.0 11071 +75725 Phf14 PHD finger protein 14 Novel U 0.0016682896289251276 -0.24670200954561197 1.0 11072 +66404 Rtf2 replication termination factor 2 Novel N 0.0016680804483333333 -0.2467041762313053 1.0 11073 +268741 Tox4 TOX high mobility group box family member 4 Novel U 0.0016680442500998489 -0.24670455117141782 1.0 11074 +70235 Poc1a POC1 centriolar protein A Novel U 0.0016678713330121227 -0.24670634224092813 1.0 11075 +15368 Hmox1 heme oxygenase 1 Novel U 0.0016677805664842846 -0.2467072823976397 1.0 11076 +28194 Apon apolipoprotein N Novel U 0.0016674993948696834 -0.24671019476398068 1.0 11077 +53600 Timm23 translocase of inner mitochondrial membrane 23 Novel U 0.001666954660008144 -0.24671583710976935 1.0 11078 +66500 Slc30a7 solute carrier family 30 (zinc transporter), member 7 Novel U 0.0016657214077994132 -0.24672861109560637 1.0 11079 +67044 Higd2a HIG1 domain family, member 2A Novel U 0.0016654219673247355 -0.24673171269019953 1.0 11080 +626415 Potefam3e POTE ankyrin domain family member 3E Novel U 0.0016654124083922515 -0.24673181170130795 1.0 11081 +107995 Cdc20 cell division cycle 20 Novel U 0.0016650135299341024 -0.24673594327126502 1.0 11082 +433698 Spata31f1a spermatogenesis associated 31 subfamily F member 1A Novel U 0.0016647253165451956 -0.24673892857607285 1.0 11083 +17022 Lum lumican Novel N 0.001662378183054321 -0.24676324010761347 1.0 11084 +56538 Klk11 kallikrein related-peptidase 11 Novel U 0.0016617647239454967 -0.2467695942968963 1.0 11085 +18164 Nptx1 neuronal pentraxin 1 Novel N 0.0016613970996746518 -0.24677340213700868 1.0 11086 +13211 Dhx9 DExH-box helicase 9 Novel U 0.001661254096679875 -0.2467748833573276 1.0 11087 +215456 Gpat2 glycerol-3-phosphate acyltransferase 2, mitochondrial Novel U 0.0016598926549831305 -0.24678898512566752 1.0 11088 +257979 Or4k37 olfactory receptor family 4 subfamily K member 37 Novel U 0.0016597734684998544 -0.24679021965534326 1.0 11089 +12908 Crat carnitine acetyltransferase Novel N 0.001659516479791813 -0.2467928815359331 1.0 11090 +170938 Zfp617 zinc finger protein 617 Novel U 0.0016586871147522852 -0.2468014720717486 1.0 11091 +19293 Pvalb parvalbumin Novel U 0.0016580915541767507 -0.246807640868612 1.0 11092 +13389 Dll3 delta like canonical Notch ligand 3 Novel U 0.0016580266379863933 -0.24680831326837774 1.0 11093 +67586 Ubxn11 UBX domain protein 11 Novel U 0.0016567545935557047 -0.2468214890627746 1.0 11094 +66136 Polr1h RNA polymerase I subunit H Novel N 0.0016565296406450337 -0.24682381911762838 1.0 11095 +75388 Boll boule homolog, RNA binding protein Novel N 0.0016563213571543392 -0.24682597651117805 1.0 11096 +16619 Klk1b27 kallikrein 1-related peptidase b27 Novel U 0.0016553303376947166 -0.24683624145816283 1.0 11097 +225341 Lims2 LIM and senescent cell antigen like domains 2 Novel N 0.001655002262619802 -0.24683963964900388 1.0 11098 +27411 Slc14a2 solute carrier family 14 (urea transporter), member 2 Novel N 0.0016548711698527807 -0.24684099750357527 1.0 11099 +70769 Nolc1 nucleolar and coiled-body phosphoprotein 1 Novel N 0.0016543780224466933 -0.24684610550819616 1.0 11100 +20893 Bhlhe40 basic helix-loop-helix family, member e40 Novel U 0.0016541263995237044 -0.24684871181016083 1.0 11101 +19727 Rfxank regulatory factor X-associated ankyrin-containing protein Novel U 0.0016530487014450475 -0.24685987457143213 1.0 11102 +74182 Gpcpd1 glycerophosphocholine phosphodiesterase 1 Novel U 0.0016524476367058612 -0.2468661003802417 1.0 11103 +60527 Fads3 fatty acid desaturase 3 Novel U 0.0016516036946657348 -0.2468748419041502 1.0 11104 +67832 Brix1 BRX1, biogenesis of ribosomes Novel U 0.001651556975185996 -0.24687532582298552 1.0 11105 +67464 Entpd4 ectonucleoside triphosphate diphosphohydrolase 4 Novel U 0.0016514663677261365 -0.2468762643320762 1.0 11106 +216616 Efemp1 epidermal growth factor-containing fibulin-like extracellular matrix protein 1 Novel U 0.0016512312760721562 -0.24687869940369989 1.0 11107 +235604 Camkv CaM kinase-like vesicle-associated Novel U 0.0016508162235089113 -0.24688299850450587 1.0 11108 +70560 Wars2 tryptophanyl tRNA synthetase 2 (mitochondrial) Novel U 0.0016498358276669524 -0.2468931534124081 1.0 11109 +212153 Ccdc191 coiled-coil domain containing 191 Novel U 0.0016496335426662452 -0.24689524867379567 1.0 11110 +53872 Caprin1 cell cycle associated protein 1 Novel U 0.001649243345729943 -0.24689929032083485 1.0 11111 +66167 Tma7 translational machinery associated 7 Novel U 0.001648965485328019 -0.2469021683897438 1.0 11112 +56310 Gps2 G protein pathway suppressor 2 Novel N 0.0016489170346536725 -0.24690267024023596 1.0 11113 +217431 Nol10 nucleolar protein 10 Novel U 0.0016486270847789278 -0.246905673531507 1.0 11114 +69481 Actl9 actin-like 9 Novel U 0.0016484108573038162 -0.24690791320858607 1.0 11115 +13382 Dld dihydrolipoamide dehydrogenase Novel N 0.0016482676931630557 -0.24690939609804982 1.0 11116 +69617 Pitrm1 pitrilysin metallepetidase 1 Novel U 0.0016479397369833033 -0.24691279305737873 1.0 11117 +328440 Npm2 nucleophosmin/nucleoplasmin 2 Novel N 0.0016477413585685502 -0.2469148478544774 1.0 11118 +219033 Ang4 angiogenin, ribonuclease A family, member 4 Novel U 0.0016476139632208072 -0.2469161674113014 1.0 11119 +14791 Emg1 EMG1 N1-specific pseudouridine methyltransferase Novel U 0.0016475490157792894 -0.24691684013476564 1.0 11120 +17232 Mcpt9 mast cell protease 9 Novel U 0.0016468764293252657 -0.24692380676314632 1.0 11121 +66520 Smim30 small integral membrane protein 30 Novel U 0.0016466557140401405 -0.24692609292481402 1.0 11122 +100043596 Vmn1r130 vomeronasal 1 receptor 130 Novel U 0.0016466167265904135 -0.24692649675553666 1.0 11123 +66492 Zmat2 zinc finger, matrin type 2 Novel N 0.001645480357548529 -0.24693826722871637 1.0 11124 +100039089 Mup13 major urinary protein 13 Novel U 0.0016449703881067394 -0.24694354947543007 1.0 11125 +14199 Fhl1 four and a half LIM domains 1 Novel U 0.0016444972946808934 -0.2469484497615829 1.0 11126 +269295 Rtn4rl2 reticulon 4 receptor-like 2 Novel U 0.0016444004242775056 -0.24694945314203673 1.0 11127 +77058 Ccdc183 coiled-coil domain containing 183 Novel U 0.0016440872723764903 -0.24695269675913312 1.0 11128 +319352 Pianp PILR alpha associated neural protein Novel U 0.0016440579776888535 -0.24695300019254465 1.0 11129 +68695 Hddc3 HD domain containing 3 Novel U 0.0016427075755870819 -0.24696698761312275 1.0 11130 +627049 Zfp800 zinc finger protein 800 Novel U 0.0016422292917915439 -0.24697194166095418 1.0 11131 +246779 Il27 interleukin 27 Novel U 0.0016420918213907447 -0.24697336557484656 1.0 11132 +620551 LOC620551 PRAME family member 8-like Novel U 0.0016413867220954107 -0.24698066897016877 1.0 11133 +12164 Bmp8b bone morphogenetic protein 8b Novel U 0.0016410535378243054 -0.24698412008189602 1.0 11134 +383103 Tvp23a trans-golgi network vesicle protein 23A Novel U 0.0016405067243561798 -0.24698978395782334 1.0 11135 +229776 Cdc14a CDC14 cell division cycle 14A Novel N 0.0016404946665732024 -0.24698990885194305 1.0 11136 +73327 Pradc1 protease-associated domain containing 1 Novel U 0.001640205342979418 -0.24699290565621645 1.0 11137 +15182 Hdac2 histone deacetylase 2 Novel U 0.0016399612324029503 -0.2469954341455428 1.0 11138 +22229 Ucp3 uncoupling protein 3 (mitochondrial, proton carrier) Novel U 0.0016398616597216096 -0.24699646551610285 1.0 11139 +69706 Lrr1 leucine rich repeat protein 1 Novel U 0.001639639782497557 -0.24699876371309576 1.0 11140 +53856 Prg3 proteoglycan 3 Novel U 0.0016394445581473646 -0.24700078584049742 1.0 11141 +20501 Slc16a1 solute carrier family 16 (monocarboxylic acid transporters), member 1 Novel U 0.001639358411089404 -0.24700167814889185 1.0 11142 +213945 Col28a1 collagen, type XXVIII, alpha 1 Novel U 0.0016384954722329578 -0.24701061644119932 1.0 11143 +234199 Fgl1 fibrinogen-like protein 1 Novel N 0.001638222827875812 -0.24701344048248794 1.0 11144 +100042428 Gm20917 predicted gene, 20917 Novel U 0.001638008487714721 -0.24701566061083044 1.0 11145 +330470 Bsph1 binder of sperm protein homolog 1 Novel U 0.0016376971571472648 -0.24701888536261374 1.0 11146 +99480 Dnttip2 deoxynucleotidyltransferase, terminal, interacting protein 2 Novel N 0.0016365579117966977 -0.24703068562850425 1.0 11147 +230099 Car9 carbonic anhydrase 9 Novel U 0.001636010954927844 -0.24703635098977159 1.0 11148 +241514 Zfp804a zinc finger protein 804A Novel U 0.0016347852697971368 -0.24704904659606325 1.0 11149 +74253 Klrg2 killer cell lectin-like receptor subfamily G, member 2 Novel U 0.0016345663795513693 -0.24705131385403326 1.0 11150 +67005 Polr3k polymerase (RNA) III (DNA directed) polypeptide K Novel U 0.001634343014525242 -0.24705362746163115 1.0 11151 +68703 Rere arginine glutamic acid dipeptide (RE) repeats Novel U 0.0016342282431649486 -0.24705481625960818 1.0 11152 +554327 2610042L04Rik RIKEN cDNA 2610042L04 gene Novel U 0.0016341667548684603 -0.2470554531533619 1.0 11153 +67628 Anp32b acidic nuclear phosphoprotein 32 family member B Novel U 0.001634067299706199 -0.24705648330666316 1.0 11154 +93701 Pcdhgb4 protocadherin gamma subfamily B, 4 Novel U 0.0016331046351350164 -0.24706645455464557 1.0 11155 +22772 Zic2 zinc finger protein of the cerebellum 2 Novel U 0.001632891570947217 -0.2470686614664987 1.0 11156 +23874 Farsb phenylalanyl-tRNA synthetase, beta subunit Novel U 0.001632841115936904 -0.2470691840778369 1.0 11157 +69237 Gtpbp4 GTP binding protein 4 Novel U 0.00163272647927181 -0.24707037148064545 1.0 11158 +210992 Lpcat1 lysophosphatidylcholine acyltransferase 1 Novel U 0.0016325874540917447 -0.24707181149889038 1.0 11159 +16365 Acod1 aconitate decarboxylase 1 Novel U 0.0016322351055731376 -0.24707546111326328 1.0 11160 +381715 Speer4c2 spermatogenesis associated glutamate (E)-rich protein 4C2 Novel U 0.001631629272057056 -0.24708173631690714 1.0 11161 +11732 Ank progressive ankylosis Novel U 0.0016314982715291432 -0.24708309321606883 1.0 11162 +18968 Pola1 polymerase (DNA directed), alpha 1 Novel U 0.0016313782721860768 -0.24708433616531955 1.0 11163 +27015 Polk polymerase (DNA directed), kappa Novel U 0.0016312095262932 -0.24708608402973076 1.0 11164 +171395 Pkd1l1 polycystic kidney disease 1 like 1 Novel N 0.0016308294674805411 -0.24709002066641853 1.0 11165 +69416 Ms4a19 membrane-spanning 4-domains, subfamily A, member 19 Novel U 0.001630635780316521 -0.24709202687169632 1.0 11166 +114606 Tle6 transducin-like enhancer of split 6 Novel U 0.0016301493315150628 -0.2470970654923907 1.0 11167 +230971 Megf6 multiple EGF-like-domains 6 Novel U 0.0016299992959546007 -0.2470986195557938 1.0 11168 +240087 Mdc1 mediator of DNA damage checkpoint 1 Novel U 0.0016298081737581606 -0.24710059919322172 1.0 11169 +70097 Sash1 SAM and SH3 domain containing 1 Novel U 0.0016296751199840343 -0.2471019773598402 1.0 11170 +67590 Tctn3 tectonic family member 3 Novel U 0.0016295415143851681 -0.24710336124224122 1.0 11171 +66934 Dsn1 DSN1 homolog, MIS12 kinetochore complex component Novel U 0.0016294847111623276 -0.2471039496081561 1.0 11172 +67733 Itgb3bp integrin beta 3 binding protein (beta3-endonexin) Novel N 0.0016287530492567052 -0.24711152813812243 1.0 11173 +56089 Ramp3 receptor (calcitonin) activity modifying protein 3 Novel U 0.0016285089768226812 -0.24711405623237062 1.0 11174 +171275 Vmn1r212 vomeronasal 1 receptor 212 Novel U 0.0016281212914415004 -0.24711807186480444 1.0 11175 +320181 Fndc7 fibronectin type III domain containing 7 Novel U 0.0016273711247465914 -0.2471258420667699 1.0 11176 +171203 Vmn1r9 vomeronasal 1 receptor 9 Novel U 0.0016273253709707493 -0.247126315982876 1.0 11177 +19017 Ppargc1a peroxisome proliferative activated receptor, gamma, coactivator 1 alpha Novel U 0.0016261481579093657 -0.24713850951706698 1.0 11178 +21674 Sry sex determining region of Chr Y Novel U 0.0016260699776278343 -0.24713931930585306 1.0 11179 +12919 Crhbp corticotropin releasing hormone binding protein Novel U 0.0016255719746082111 -0.24714447760475938 1.0 11180 +80907 Lactb lactamase, beta Novel N 0.0016252669811814286 -0.24714763671664786 1.0 11181 +15081 H3f3b H3.3 histone B Novel U 0.0016242252773801134 -0.2471584266503777 1.0 11182 +98396 Slc41a1 solute carrier family 41, member 1 Novel U 0.0016235891243281285 -0.24716501590277776 1.0 11183 +213956 Fam83f family with sequence similarity 83, member F Novel U 0.001622770558680826 -0.24717349457884363 1.0 11184 +238896 Cdc20b cell division cycle 20B Novel N 0.001622487462214058 -0.2471764268827401 1.0 11185 +433766 Trim63 tripartite motif-containing 63 Novel U 0.0016223317900513278 -0.24717803932988422 1.0 11186 +20055 Rps16 ribosomal protein S16 Novel N 0.0016217199683349693 -0.24718437655910971 1.0 11187 +227720 Nup214 nucleoporin 214 Novel U 0.0016217156078594862 -0.2471844217247714 1.0 11188 +74901 Kbtbd11 kelch repeat and BTB (POZ) domain containing 11 Novel U 0.0016209601386027643 -0.24719224685049782 1.0 11189 +433938 Mn1 meningioma 1 Novel U 0.0016206458860006994 -0.24719550186861952 1.0 11190 +240121 Fsd1 fibronectin type 3 and SPRY domain-containing protein Novel U 0.0016201089955784345 -0.24720106296196404 1.0 11191 +218311 Zfp455 zinc finger protein 455 Novel U 0.001620025229454423 -0.2472019306087229 1.0 11192 +73360 Actrt1 actin-related protein T1 Novel N 0.0016195622945012092 -0.2472067256737501 1.0 11193 +74470 Cep72 centrosomal protein 72 Novel U 0.0016191772237134207 -0.24721071422431148 1.0 11194 +215789 Phactr2 phosphatase and actin regulator 2 Novel U 0.0016185807436999821 -0.24721689254468246 1.0 11195 +114872 Psg29 pregnancy-specific beta-1-glycoprotein 29 Novel U 0.0016180632957656107 -0.24722225225337652 1.0 11196 +103742 Mien1 migration and invasion enhancer 1 Novel U 0.0016180564175822137 -0.247222323497374 1.0 11197 +23939 Mapk7 mitogen-activated protein kinase 7 Novel U 0.0016179771787839538 -0.24722314425024156 1.0 11198 +207618 Zfp804b zinc finger protein 804B Novel U 0.001617757742864766 -0.24722541716027893 1.0 11199 +66416 Ndufa7 NADH:ubiquinone oxidoreductase subunit A7 Novel U 0.0016175282976646796 -0.2472277937461188 1.0 11200 +100503895 Tpsab1 tryptase alpha/beta 1 Novel U 0.001617472650436231 -0.24722837013828178 1.0 11201 +17339 Mip major intrinsic protein of lens fiber Novel U 0.001617399657626107 -0.24722912619540954 1.0 11202 +171508 Creld1 cysteine-rich with EGF-like domains 1 Novel N 0.0016168480176071138 -0.2472348400645921 1.0 11203 +387348 Tas2r120 taste receptor, type 2, member 120 Novel U 0.0016154206713788705 -0.24724962446990273 1.0 11204 +22695 Zfp36 zinc finger protein 36 Novel U 0.001615368551310266 -0.24725016432785998 1.0 11205 +233222 Mrgpra3 MAS-related GPR, member A3 Novel U 0.0016152297540371172 -0.24725160198545257 1.0 11206 +434960 Gm20747 predicted gene, 20747 Novel U 0.0016144636867201092 -0.24725953688553903 1.0 11207 +109815 Selenos selenoprotein S Novel U 0.0016130182753175616 -0.24727450840933127 1.0 11208 +24050 Septin3 septin 3 Novel U 0.0016127509345510056 -0.2472772775162029 1.0 11209 +216853 Wrap53 WD repeat containing, antisense to Trp53 Novel U 0.0016123319442835362 -0.2472816174036198 1.0 11210 +71101 Uvssa UV stimulated scaffold protein A Novel N 0.0016119198136595747 -0.24728588623907474 1.0 11211 +333639 Mamld1 mastermind-like domain containing 1 Novel N 0.001611522752777806 -0.2472899989826354 1.0 11212 +320595 Phf8 PHD finger protein 8 Novel N 0.001611375356701943 -0.2472915257063438 1.0 11213 +233066 Syne4 spectrin repeat containing, nuclear envelope family member 4 Novel N 0.001611164019514787 -0.24729371472998105 1.0 11214 +385138 BC061237 cDNA sequence BC061237 Novel U 0.0016103921545489004 -0.247301709681924 1.0 11215 +244418 Prag1 PEAK1 related kinase activating pseudokinase 1 Novel N 0.0016099830783043304 -0.2473059468802176 1.0 11216 +83410 Cstf2t cleavage stimulation factor, 3' pre-RNA subunit 2, tau Novel U 0.0016081716712742782 -0.2473247093746881 1.0 11217 +66594 Uqcr11 ubiquinol-cytochrome c reductase, complex III subunit XI Novel N 0.0016081081259000998 -0.24732536757558488 1.0 11218 +13075 Cyp19a1 cytochrome P450, family 19, subfamily a, polypeptide 1 Novel U 0.0016079249555467543 -0.24732726484808346 1.0 11219 +77727 6030468B19Rik RIKEN cDNA 6030468B19 gene Novel U 0.001607886383788362 -0.2473276643730889 1.0 11220 +66541 Immp1l IMP1 inner mitochondrial membrane peptidase-like (S. cerevisiae) Novel U 0.0016072246252070899 -0.24733451884671956 1.0 11221 +27395 Mrpl15 mitochondrial ribosomal protein L15 Novel U 0.0016071735736430262 -0.2473350476371419 1.0 11222 +28036 Larp7 La ribonucleoprotein 7, transcriptional regulator Novel U 0.0016064329165801378 -0.24734271933865148 1.0 11223 +19428 Rasl2-9 RAS-like, family 2, locus 9 Novel U 0.0016060557681885094 -0.24734662582929393 1.0 11224 +226541 Klhl20 kelch-like 20 Novel U 0.0016054344745103587 -0.24735306116878827 1.0 11225 +70981 Potegl POTE ankyrin domain family, member G like Novel U 0.0016048979766655543 -0.24735861819582833 1.0 11226 +70727 Rasgef1a RasGEF domain family, member 1A Novel U 0.0016046445703963626 -0.24736124296963435 1.0 11227 +233833 Tnrc6a trinucleotide repeat containing 6a Novel N 0.001604416069374244 -0.24736360977570987 1.0 11228 +57261 Brd4 bromodomain containing 4 Novel U 0.0016042584206912673 -0.2473652426955857 1.0 11229 +18295 Ogn osteoglycin Novel U 0.0016039311247586965 -0.24736863281609603 1.0 11230 +11974 Atp6v0e ATPase, H+ transporting, lysosomal V0 subunit E Novel N 0.0016027625672302883 -0.24738073669656102 1.0 11231 +224023 Klhl22 kelch-like 22 Novel U 0.0016025281915568988 -0.2473831643520813 1.0 11232 +215919 Rfpl4b ret finger protein-like 4B Novel U 0.0016014697118739833 -0.2473941280498413 1.0 11233 +244853 Nxpe4 neurexophilin and PC-esterase domain family, member 4 Novel U 0.001601201415140413 -0.24739690705858786 1.0 11234 +69126 Rbis ribosomal biogenesis factor Novel N 0.0016010073193208545 -0.24739891749670626 1.0 11235 +17685 Msh2 mutS homolog 2 Novel U 0.0016002477622342676 -0.24740678496404003 1.0 11236 +104027 Synpo synaptopodin Novel U 0.0015997198055535925 -0.24741225352198284 1.0 11237 +380959 Alg10b ALG10 alpha-1,2-glucosyltransferase Novel U 0.001599185643546087 -0.24741778635449693 1.0 11238 +209586 Nudcd3 NudC domain containing 3 Novel N 0.0015988479159761045 -0.2474212845255646 1.0 11239 +69894 Fam241b family with sequence similarity 241, member B Novel U 0.0015982433658788481 -0.2474275464355985 1.0 11240 +69399 1700025G04Rik RIKEN cDNA 1700025G04 gene Novel U 0.0015958743875758108 -0.24745208423498538 1.0 11241 +667259 Vmn1r118 vomeronasal 1 receptor 118 Novel U 0.0015952386074794295 -0.24745866962432356 1.0 11242 +72357 2210016L21Rik RIKEN cDNA 2210016L21 gene Novel U 0.0015950646550006926 -0.24746047141837993 1.0 11243 +78830 Slc25a12 solute carrier family 25 (mitochondrial carrier, Aralar), member 12 Novel U 0.001595025754822397 -0.24746087434514796 1.0 11244 +12798 Cnn2 calponin 2 Novel U 0.0015946921046347937 -0.247464330282823 1.0 11245 +621430 Vmn2r79 vomeronasal 2, receptor 79 Novel U 0.0015945013366867845 -0.2474663062509573 1.0 11246 +241547 Harbi1 harbinger transposase derived 1 Novel U 0.0015937365585378953 -0.24747422779788278 1.0 11247 +280667 Adam1b a disintegrin and metallopeptidase domain 1b Novel U 0.0015932276706195178 -0.24747949884221254 1.0 11248 +319195 Rpl17 ribosomal protein L17 Novel U 0.001592897482830224 -0.24748291891647972 1.0 11249 +231863 Fbxl18 F-box and leucine-rich repeat protein 18 Novel U 0.0015926493239196264 -0.2474854893383179 1.0 11250 +71354 Wdr31 WD repeat domain 31 Novel U 0.001591784997191218 -0.24749444200615753 1.0 11251 +67580 Lrrc18 leucine rich repeat containing 18 Novel U 0.001591645904145204 -0.24749588272735573 1.0 11252 +58243 Nap1l5 nucleosome assembly protein 1-like 5 Novel U 0.0015912906329649725 -0.24749956261456166 1.0 11253 +74574 Lvrn laeverin Novel U 0.0015912719058915157 -0.24749975658897289 1.0 11254 +217734 Pomt2 protein-O-mannosyltransferase 2 Novel U 0.0015910455017691407 -0.24750210167542983 1.0 11255 +212679 Mars2 methionine-tRNA synthetase 2 (mitochondrial) Novel N 0.0015910192849515439 -0.24750237322836463 1.0 11256 +74762 Mdga1 MAM domain containing glycosylphosphatidylinositol anchor 1 Novel N 0.0015907662092967665 -0.2475049945776774 1.0 11257 +56835 Ctsr cathepsin R Novel U 0.0015904125984014753 -0.2475086572677065 1.0 11258 +22648 Zfp11 zinc finger protein 11 Novel U 0.0015903866198659872 -0.24750892635252308 1.0 11259 +66884 Appbp2 amyloid beta precursor protein binding protein 2 Novel U 0.0015897302230676634 -0.24751572528898225 1.0 11260 +16012 Igfbp6 insulin-like growth factor binding protein 6 Novel U 0.0015888524638661896 -0.24752481708993632 1.0 11261 +13897 Ces1e carboxylesterase 1E Novel U 0.0015885610974920182 -0.24752783505326187 1.0 11262 +381560 Xkr8 X-linked Kx blood group related 8 Novel U 0.0015884789745263235 -0.24752868568024086 1.0 11263 +641376 Tomm40l translocase of outer mitochondrial membrane 40-like Novel U 0.0015884301087031071 -0.24752919183083136 1.0 11264 +72515 Wdr43 WD repeat domain 43 Novel N 0.0015882458446734092 -0.24753110043159363 1.0 11265 +27221 Chaf1a chromatin assembly factor 1, subunit A Novel N 0.001588203037669285 -0.24753154382513515 1.0 11266 +26898 Ctsj cathepsin J Novel U 0.0015880847387975702 -0.24753276916095948 1.0 11267 +545428 Ccdc141 coiled-coil domain containing 141 Novel N 0.0015866516348553368 -0.2475476132044824 1.0 11268 +74637 Shpk sedoheptulokinase Novel U 0.0015865671918179525 -0.2475484878626877 1.0 11269 +67153 Rnaseh2b ribonuclease H2, subunit B Novel U 0.001586079551738112 -0.2475535388226044 1.0 11270 +12259 C1qa complement component 1, q subcomponent, alpha polypeptide Novel U 0.0015859318447979946 -0.24755506876623454 1.0 11271 +76563 Qrsl1 glutaminyl-tRNA synthase (glutamine-hydrolyzing)-like 1 Novel N 0.0015859087245889856 -0.2475553082445994 1.0 11272 +192950 Nacad NAC alpha domain containing Novel U 0.001585683795704422 -0.24755763805059156 1.0 11273 +66869 Zfp869 zinc finger protein 869 Novel U 0.001585674574159572 -0.24755773356704996 1.0 11274 +69683 Emc10 ER membrane protein complex subunit 10 Novel U 0.0015855967163626796 -0.24755854001555078 1.0 11275 +59027 Nampt nicotinamide phosphoribosyltransferase Novel U 0.0015843305264264082 -0.24757165516928692 1.0 11276 +78832 Cacul1 CDK2 associated, cullin domain 1 Novel U 0.0015840601541525724 -0.24757445567641131 1.0 11277 +269132 Colgalt2 collagen beta(1-O)galactosyltransferase 2 Novel N 0.0015837337511679331 -0.24757783654779625 1.0 11278 +213541 Ythdf2 YTH N6-methyladenosine RNA binding protein 2 Novel U 0.0015832949556644597 -0.24758238157719661 1.0 11279 +434437 Amt aminomethyltransferase Novel N 0.0015831409491024243 -0.24758397677210348 1.0 11280 +20201 S100a8 S100 calcium binding protein A8 (calgranulin A) Novel U 0.0015829086273419018 -0.2475863831532618 1.0 11281 +76965 Slitrk1 SLIT and NTRK-like family, member 1 Novel U 0.001581850150419993 -0.2475973468224234 1.0 11282 +215772 Adgb androglobin Novel U 0.0015806855402159751 -0.24760940981663213 1.0 11283 +68846 Rnf208 ring finger protein 208 Novel U 0.0015804061301698345 -0.24761230393670491 1.0 11284 +17768 Mthfd2 methylenetetrahydrofolate dehydrogenase (NAD+ dependent), methenyltetrahydrofolate cyclohydrolase Novel N 0.0015802540851115833 -0.24761387881442007 1.0 11285 +228980 Taf4 TATA-box binding protein associated factor 4 Novel N 0.0015794757865061704 -0.24762194040578978 1.0 11286 +52585 Dhrs1 dehydrogenase/reductase 1 Novel U 0.0015794370675078267 -0.24762234145590178 1.0 11287 +270086 Ogfod1 2-oxoglutarate and iron-dependent oxygenase domain containing 1 Novel N 0.001579073658746962 -0.24762610563190038 1.0 11288 +269401 Zfp512b zinc finger protein 512B Novel N 0.0015789233591942788 -0.24762766242972628 1.0 11289 +380787 Lbhd2 LBH domain containing 2 Novel U 0.001578846573622634 -0.24762845777215317 1.0 11290 +110095 Pygl liver glycogen phosphorylase Novel U 0.0015786587664419472 -0.24763040307275688 1.0 11291 +268880 Xxylt1 xyloside xylosyltransferase 1 Novel N 0.001578468369546356 -0.24763237519754247 1.0 11292 +18637 Pfdn2 prefoldin 2 Novel U 0.0015784271191895858 -0.24763280246738187 1.0 11293 +70918 Nsun7 NOL1/NOP2/Sun domain family, member 7 Novel U 0.0015768512319928338 -0.2476491254551613 1.0 11294 +17350 Mlh1 mutL homolog 1 Novel U 0.0015765163168073714 -0.2476525944956426 1.0 11295 +226182 Taf5 TATA-box binding protein associated factor 5 Novel N 0.0015762596037999588 -0.24765525352053439 1.0 11296 +381983 Lmtk3 lemur tyrosine kinase 3 Novel U 0.0015762547229480025 -0.2476553040762385 1.0 11297 +233107 Kctd15 potassium channel tetramerisation domain containing 15 Novel U 0.001576178952977892 -0.2476560888990981 1.0 11298 +93873 Pcdhb2 protocadherin beta 2 Novel U 0.0015758962851133726 -0.24765901676354657 1.0 11299 +20700 Serpina1a serine (or cysteine) peptidase inhibitor, clade A, member 1A Novel U 0.0015757554946418265 -0.24766047506662264 1.0 11300 +98267 Stk17b serine/threonine kinase 17b (apoptosis-inducing) Novel N 0.001575614083038467 -0.24766193980336157 1.0 11301 +15926 Idh1 isocitrate dehydrogenase 1 (NADP+), soluble Novel U 0.0015755847923002303 -0.24766224319586533 1.0 11302 +212114 Nhlrc3 NHL repeat containing 3 Novel U 0.0015754432436610607 -0.2476637093520167 1.0 11303 +14407 Gabrg3 gamma-aminobutyric acid type A receptor, subunit gamma 3 Novel U 0.0015753644613356046 -0.24766452537675396 1.0 11304 +113851 Vmn1r54 vomeronasal 1 receptor 54 Novel U 0.0015738646907419878 -0.2476800599512603 1.0 11305 +56258 Hnrnph2 heterogeneous nuclear ribonucleoprotein H2 Novel U 0.0015736612844302533 -0.24768216682715063 1.0 11306 +104816 Aspg asparaginase Novel N 0.0015735322350574033 -0.24768350351631235 1.0 11307 +668178 Tmt1a3 thiol methyltransferase 1A3 Novel U 0.0015730208453085567 -0.24768880047451988 1.0 11308 +74493 Tnks2 tankyrase, TRF1-interacting ankyrin-related ADP-ribose polymerase 2 Novel U 0.0015717431476269805 -0.24770203482510358 1.0 11309 +27409 Abcg5 ATP binding cassette subfamily G member 5 Novel U 0.0015714814418446284 -0.24770474556499408 1.0 11310 +269637 Cnpy1 canopy FGF signaling regulator 1 Novel U 0.0015694990220356986 -0.24772527940420644 1.0 11311 +235036 Ppan peter pan homolog Novel U 0.0015687143782365388 -0.24773340671888436 1.0 11312 +100040049 Smim38 small integral membrane protein 38 Novel U 0.0015678546434545724 -0.2477423118234937 1.0 11313 +70315 Hdac8 histone deacetylase 8 Novel U 0.0015675550576257965 -0.24774541492365984 1.0 11314 +67889 Rbm18 RNA binding motif protein 18 Novel U 0.0015665637215736027 -0.2477556831499 1.0 11315 +100312475 Vmn1r95 vomeronasal 1 receptor, 95 Novel U 0.0015652762005643184 -0.2477690192501892 1.0 11316 +67207 Lsm1 LSM1 homolog, mRNA degradation associated Novel N 0.0015651420762030721 -0.2477704085059139 1.0 11317 +71436 Flrt3 fibronectin leucine rich transmembrane protein 3 Novel U 0.0015649335557396194 -0.24777256835401962 1.0 11318 +320940 Atp11c ATPase, class VI, type 11C Novel N 0.0015648924212457783 -0.24777299442375458 1.0 11319 +71707 Ubiad1 UbiA prenyltransferase domain containing 1 Novel U 0.0015647235042143442 -0.24777474406081335 1.0 11320 +226841 Vash2 vasohibin 2 Novel U 0.001564258434424926 -0.2477795612384038 1.0 11321 +171251 Vmn1r205 vomeronasal 1 receptor 205 Novel U 0.0015637408553604661 -0.24778492230533897 1.0 11322 +19074 Prg2 proteoglycan 2, bone marrow Novel U 0.0015635032417174591 -0.2477873834996421 1.0 11323 +100043227 Alyreffm5 Aly/REF export factor family member 5 Novel U 0.0015630240808968947 -0.24779234663166996 1.0 11324 +66498 Dda1 DET1 and DDB1 associated 1 Novel U 0.0015620416738860506 -0.24780252237119338 1.0 11325 +71983 Tmco6 transmembrane and coiled-coil domains 6 Novel U 0.0015617568568146488 -0.24780547249705612 1.0 11326 +70693 Adgra3 adhesion G protein-coupled receptor A3 Novel U 0.0015616648219904847 -0.24780642579073933 1.0 11327 +53314 Batf basic leucine zipper transcription factor, ATF-like Novel U 0.001561242129102147 -0.24781080402978145 1.0 11328 +13340 Slc29a2 solute carrier family 29 (nucleoside transporters), member 2 Novel N 0.0015607503106700017 -0.2478158982689339 1.0 11329 +11447 Chrnd cholinergic receptor, nicotinic, delta polypeptide Novel U 0.001560721586907271 -0.24781619578872408 1.0 11330 +15275 Hk1 hexokinase 1 Novel U 0.0015604931099802205 -0.2478185623452237 1.0 11331 +71775 Inhca inhibitor of carbonic anhydrase Novel U 0.001560421215002561 -0.24781930703103885 1.0 11332 +244152 Tsku tsukushi, small leucine rich proteoglycan Novel U 0.0015597678723185406 -0.24782607433308246 1.0 11333 +230822 Ncmap noncompact myelin associated protein Novel U 0.0015595692068966548 -0.24782813210299157 1.0 11334 +195564 Skint3 selection and upkeep of intraepithelial T cells 3 Novel U 0.001558675752071903 -0.2478373864786956 1.0 11335 +102103 Mtus1 mitochondrial tumor suppressor 1 Novel U 0.0015583222535821364 -0.247841048004432 1.0 11336 +218341 Rfesd Rieske (Fe-S) domain containing Novel U 0.0015570003271888901 -0.24785474047455722 1.0 11337 +67868 Cela3b chymotrypsin-like elastase family, member 3B Novel U 0.001556789833692199 -0.24785692075927637 1.0 11338 +212073 Syne3 spectrin repeat containing, nuclear envelope family member 3 Novel U 0.0015558597576963607 -0.24786655445586664 1.0 11339 +99151 Cercam cerebral endothelial cell adhesion molecule Novel N 0.001555174196308465 -0.24787365547818585 1.0 11340 +100039624 Sft2d1rt SFT2 domain containing 1, retrotransposed Novel U 0.0015540482613113477 -0.2478853178758729 1.0 11341 +72123 Ccdc71l coiled-coil domain containing 71 like Novel U 0.0015539644639853997 -0.24788618584582034 1.0 11342 +14261 Fmo1 flavin containing monooxygenase 1 Novel N 0.0015538361280427486 -0.2478875151452955 1.0 11343 +69225 Naxd NAD(P)HX dehydratase Novel U 0.001553827617642363 -0.24788760329574297 1.0 11344 +20375 Spi1 Spi-1 proto-oncogene Novel U 0.001553374224742161 -0.24789229952449873 1.0 11345 +214685 Chadl chondroadherin-like Novel U 0.0015524103531353844 -0.2479022832749162 1.0 11346 +68481 Mpzl1 myelin protein zero-like 1 Novel U 0.001551209808609314 -0.24791471847565144 1.0 11347 +107765 Ankrd1 ankyrin repeat domain 1 Novel U 0.0015510078766147776 -0.2479168100806127 1.0 11348 +67849 Cdca5 cell division cycle associated 5 Novel U 0.0015509758648988646 -0.24791714165691378 1.0 11349 +16623 Klk1b1 kallikrein 1-related peptidase b1 Novel U 0.0015509178711875548 -0.2479177423538691 1.0 11350 +57340 Jph3 junctophilin 3 Novel N 0.0015505694622795405 -0.247921351161885 1.0 11351 +19699 Reln reelin Novel N 0.0015504885071014342 -0.24792218969295857 1.0 11352 +66237 Atp6v1g2 ATPase, H+ transporting, lysosomal V1 subunit G2 Novel U 0.0015504140539096063 -0.24792296087667198 1.0 11353 +16950 Loxl3 lysyl oxidase-like 3 Novel N 0.0015504089574862 -0.24792301366525807 1.0 11354 +66234 Msmo1 methylsterol monoxygenase 1 Novel U 0.0015498180725695254 -0.24792913403180072 1.0 11355 +26558 Homer3 homer scaffolding protein 3 Novel U 0.0015492762428225776 -0.2479347462865079 1.0 11356 +13875 Erf Ets2 repressor factor Novel U 0.001549074246689905 -0.24793683855580986 1.0 11357 +13681 Eif4a1 eukaryotic translation initiation factor 4A1 Novel N 0.0015490708305436576 -0.24793687394014038 1.0 11358 +237052 Tceal1 transcription elongation factor A (SII)-like 1 Novel U 0.0015480585039969446 -0.2479473595852328 1.0 11359 +68617 Mtcl1 microtubule crosslinking factor 1 Novel U 0.0015480066375560637 -0.24794789681612242 1.0 11360 +74383 Ubap2l ubiquitin-associated protein 2-like Novel U 0.0015449933198803199 -0.2479791086615503 1.0 11361 +76357 Trmt5 TRM5 tRNA methyltransferase 5 Novel N 0.001544482244148387 -0.24798440236718097 1.0 11362 +216028 Lrrtm3 leucine rich repeat transmembrane neuronal 3 Novel N 0.0015434326341672183 -0.24799527419286183 1.0 11363 +99887 Tlcd4 TLC domain containing 4 Novel U 0.0015434135164089221 -0.24799547221397378 1.0 11364 +56622 Adam21 a disintegrin and metallopeptidase domain 21 Novel N 0.00154324274692316 -0.24799724103869358 1.0 11365 +100312474 Vmn1r88 vomeronasal 1 receptor, 88 Novel U 0.00154197193403787 -0.24801040407678368 1.0 11366 +18424 Otx2 orthodenticle homeobox 2 Novel U 0.0015419659428725127 -0.2480104661330775 1.0 11367 +14580 Gfap glial fibrillary acidic protein Novel U 0.001541091889770262 -0.24801951954637766 1.0 11368 +50505 Ercc4 excision repair cross-complementing rodent repair deficiency, complementation group 4 Novel U 0.0015409056619524106 -0.24802144848799307 1.0 11369 +100043899 R3hdml R3H domain containing-like Novel U 0.0015408298445387767 -0.24802223380227112 1.0 11370 +77011 Ticrr TOPBP1-interacting checkpoint and replication regulator Novel N 0.001540472514002938 -0.24802593502021472 1.0 11371 +103466 Nt5dc3 5'-nucleotidase domain containing 3 Novel U 0.0015398271970793675 -0.24803261919169542 1.0 11372 +83924 Gpr137b G protein-coupled receptor 137B Novel U 0.0015389333644615598 -0.2480418774805675 1.0 11373 +333605 Frmpd4 FERM and PDZ domain containing 4 Novel N 0.0015386050116807575 -0.24804527854787703 1.0 11374 +628991 Obp1b odorant binding protein IB Novel U 0.001538553280403654 -0.24804581437874473 1.0 11375 +100502936 Ube2q2l ubiquitin conjugating enzyme E2 Q2 like Novel U 0.0015385166193420839 -0.24804619411281528 1.0 11376 +104156 Etv5 ets variant 5 Novel N 0.00153844421546866 -0.24804694406975605 1.0 11377 +11790 Speg SPEG complex locus Novel U 0.001538392559615035 -0.24804747911938982 1.0 11378 +72459 Htatsf1 HIV TAT specific factor 1 Novel N 0.0015380233306415126 -0.2480513035809598 1.0 11379 +244091 Fsd2 fibronectin type III and SPRY domain containing 2 Novel U 0.0015378384126020282 -0.24805321895593394 1.0 11380 +72185 Dbndd1 dysbindin domain containing 1 Novel U 0.0015366602979450378 -0.2480654218288226 1.0 11381 +110593 Prdm2 PR domain containing 2, with ZNF domain Novel N 0.0015366571364030333 -0.24806545457597076 1.0 11382 +11859 Phox2a paired-like homeobox 2a Novel N 0.0015366448127956376 -0.24806558222349107 1.0 11383 +68515 Myadml2 myeloid-associated differentiation marker-like 2 Novel U 0.0015365549383068698 -0.24806651314049125 1.0 11384 +22065 Trpc3 transient receptor potential cation channel, subfamily C, member 3 Novel N 0.0015363914369085107 -0.24806820668260063 1.0 11385 +18639 Pfkfb1 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 Novel N 0.0015363676047094473 -0.2480684535357351 1.0 11386 +66494 Prelid1 PRELI domain containing 1 Novel N 0.0015359077538944473 -0.24807321665536008 1.0 11387 +67412 Mtcl3 MTCL family member 3 Novel U 0.001535809269667999 -0.24807423675174015 1.0 11388 +66536 Nipsnap3b nipsnap homolog 3B Novel U 0.0015356527303238773 -0.2480758581811206 1.0 11389 +213582 Map9 microtubule-associated protein 9 Novel U 0.001534339140826135 -0.24808946429795628 1.0 11390 +338363 Tmem241 transmembrane protein 241 Novel N 0.0015335145670379666 -0.24809800520614772 1.0 11391 +18632 Pex11b peroxisomal biogenesis factor 11 beta Novel U 0.0015329783803632907 -0.24810355901009784 1.0 11392 +11692 Gfer growth factor, augmenter of liver regeneration Novel N 0.001532631990826807 -0.2481071469015298 1.0 11393 +546325 Pwwp4d PWWP domain containing 4D Novel U 0.0015326101510224183 -0.24810737311750572 1.0 11394 +77951 Cyp20a1 cytochrome P450, family 20, subfamily a, polypeptide 1 Novel U 0.0015323392841390718 -0.24811017874777916 1.0 11395 +21346 Tagln2 transgelin 2 Novel N 0.0015322686972492176 -0.24811090988446383 1.0 11396 +66089 Rmnd5b required for meiotic nuclear division 5 homolog B Novel U 0.0015319624669385473 -0.24811408180795497 1.0 11397 +210044 Adcy2 adenylate cyclase 2 Novel U 0.001531587325715618 -0.24811796750840998 1.0 11398 +18488 Cntn3 contactin 3 Novel U 0.0015312642398838837 -0.24812131402083418 1.0 11399 +69952 Tunar Tcl1 upstream neural differentiation associated RNA Novel U 0.0015310467866856319 -0.2481235663939133 1.0 11400 +50913 Olig2 oligodendrocyte transcription factor 2 Novel U 0.0015305269954850923 -0.24812895037408128 1.0 11401 +18588 Pde6g phosphodiesterase 6G, cGMP-specific, rod, gamma Novel N 0.0015299457627335686 -0.24813497076381455 1.0 11402 +100384868 Pcdha4b protocadherin alpha 4B Novel U 0.0015297634356714964 -0.24813685930152984 1.0 11403 +12611 Cebpg CCAAT/enhancer binding protein gamma Novel U 0.0015293034677864416 -0.2481416236337626 1.0 11404 +56390 Znrd2 zinc ribbon domain containing 2 Novel N 0.0015292402153422155 -0.2481422788005006 1.0 11405 +12427 Ccna1 cyclin A1 Novel U 0.0015289404984019737 -0.2481453832587149 1.0 11406 +233332 Adamts17 ADAM metallopeptidase with thrombospondin type 1 motif 17 Novel U 0.0015288018621820206 -0.2481468192481238 1.0 11407 +235587 Parp3 poly (ADP-ribose) polymerase family, member 3 Novel U 0.0015285237785396602 -0.24814969962934985 1.0 11408 +100039377 Gm10096 predicted gene 10096 Novel U 0.0015278301870377353 -0.24815688382732617 1.0 11409 +66632 Dph6 diphthamine biosynthesis 6 Novel N 0.0015271825899007086 -0.2481635916171829 1.0 11410 +231510 Gpat3 glycerol-3-phosphate acyltransferase 3 Novel U 0.001527131613203141 -0.24816411963214052 1.0 11411 +674895 Nek10 NIMA (never in mitosis gene a)- related kinase 10 Novel U 0.0015264736508522573 -0.24817093478454164 1.0 11412 +74249 Lrrc2 leucine rich repeat containing 2 Novel U 0.0015263444129762667 -0.2481722734262127 1.0 11413 +99730 Taf13 TATA-box binding protein associated factor 13 Novel N 0.0015262369967890836 -0.24817338603954844 1.0 11414 +237459 Cdk17 cyclin dependent kinase 17 Novel N 0.001525401691402554 -0.24818203810528294 1.0 11415 +76843 Dtl denticleless E3 ubiquitin protein ligase Novel U 0.0015253000660124232 -0.24818309073773315 1.0 11416 +231672 Fbxw8 F-box and WD-40 domain protein 8 Novel U 0.0015245117988218983 -0.2481912555833797 1.0 11417 +72308 Brf1 BRF1, RNA polymerase III transcription initiation factor 90 kDa subunit Novel N 0.0015244871190434625 -0.24819151121571342 1.0 11418 +231382 Tmprss11d transmembrane protease, serine 11d Novel N 0.00152442330583802 -0.24819217219079767 1.0 11419 +73103 3110009E18Rik RIKEN cDNA 3110009E18 gene Novel U 0.0015229632313796015 -0.2482072955940406 1.0 11420 +68066 Slc25a39 solute carrier family 25, member 39 Novel N 0.001522890095662356 -0.24820805313139563 1.0 11421 +60364 Donson downstream neighbor of SON Novel U 0.0015228049822769583 -0.24820893473304365 1.0 11422 +17120 Mad1l1 MAD1 mitotic arrest deficient 1-like 1 Novel U 0.0015223455018571648 -0.24821369401612722 1.0 11423 +66282 Tma16 translation machinery associated 16 Novel N 0.001521993235486905 -0.24821734277961027 1.0 11424 +18858 Pmp22 peripheral myelin protein 22 Novel U 0.0015216873591896607 -0.24822051103624196 1.0 11425 +20265 Scn1a sodium channel, voltage-gated, type I, alpha Novel U 0.0015213169711829648 -0.24822434750303946 1.0 11426 +20321 Frrs1 ferric-chelate reductase 1 Novel U 0.0015212431835321628 -0.24822511179310083 1.0 11427 +75956 Srrm2 serine/arginine repetitive matrix 2 Novel U 0.0015207794014292157 -0.24822991563287716 1.0 11428 +17708 COX1 cytochrome c oxidase subunit I Novel U 0.0015207181324636925 -0.24823055025480792 1.0 11429 +56406 Ncoa6 nuclear receptor coactivator 6 Novel N 0.0015205371771570963 -0.24823242458392505 1.0 11430 +434727 Fthl17c ferritin, heavy polypeptide-like 17, member C Novel U 0.0015205196114612975 -0.24823260652882473 1.0 11431 +14345 Fut4 fucosyltransferase 4 Novel U 0.00152050742205962 -0.24823273278624658 1.0 11432 +71997 Smg9 SMG9 nonsense mediated mRNA decay factor Novel U 0.001520264829360093 -0.2482352455534535 1.0 11433 +104725 Sptssa serine palmitoyltransferase, small subunit A Novel N 0.0015202564696090097 -0.2482353321434804 1.0 11434 +13722 Aimp1 aminoacyl tRNA synthetase complex-interacting multifunctional protein 1 Novel U 0.0015202545061543252 -0.24823535248087947 1.0 11435 +101943 Sf3b3 splicing factor 3b, subunit 3 Novel U 0.0015189891080894797 -0.24824845943243742 1.0 11436 +71037 Prss55 serine protease 55 Novel U 0.0015189118574814732 -0.2482492595916957 1.0 11437 +214523 Tmprss4 transmembrane protease, serine 4 Novel U 0.0015188859804786596 -0.24824952762484015 1.0 11438 +218214 Kdm1b lysine (K)-specific demethylase 1B Novel U 0.0015187043115960075 -0.2482514093451546 1.0 11439 +192195 Ash1l ASH1 like histone lysine methyltransferase Novel U 0.0015186939287388029 -0.24825151689044822 1.0 11440 +218543 Srek1 splicing regulatory glutamine/lysine-rich protein 1 Novel U 0.001518215619290255 -0.24825647120399272 1.0 11441 +116848 Baz2a bromodomain adjacent to zinc finger domain, 2A Novel U 0.001516481005456836 -0.2482744382770569 1.0 11442 +78892 Crispld2 cysteine-rich secretory protein LCCL domain containing 2 Novel N 0.001515899172356615 -0.24828046488518227 1.0 11443 +17756 Map2 microtubule-associated protein 2 Novel U 0.0015151538770394224 -0.2482881846295775 1.0 11444 +67393 Cxxc5 CXXC finger 5 Novel N 0.001514523150569937 -0.24829471767361438 1.0 11445 +18475 Pafah1b2 platelet-activating factor acetylhydrolase, isoform 1b, subunit 2 Novel U 0.0015140624801423513 -0.24829948928275963 1.0 11446 +107895 Mgat5 mannoside acetylglucosaminyltransferase 5 Novel U 0.0015131004072066532 -0.24830945440260113 1.0 11447 +13206 Ddx4 DEAD box helicase 4 Novel N 0.0015127140643986937 -0.24831345612870565 1.0 11448 +19055 Ppp3ca protein phosphatase 3, catalytic subunit, alpha isoform Novel U 0.0015123775247205418 -0.24831694199562876 1.0 11449 +272031 Plppr1 phospholipid phosphatase related 1 Novel U 0.001512101846426111 -0.24831979746234006 1.0 11450 +100503386 Tpbgl trophoblast glycoprotein-like Novel U 0.0015118610328085853 -0.24832229180187407 1.0 11451 +83993 Tbx19 T-box 19 Novel N 0.0015116914050888588 -0.2483240488002188 1.0 11452 +68818 Zfand2b zinc finger, AN1 type domain 2B Novel U 0.001511631917652597 -0.24832466496912806 1.0 11453 +56264 Cpxm1 carboxypeptidase X, M14 family member 1 Novel U 0.0015113859535318443 -0.24832721265740518 1.0 11454 +13508 Dscam DS cell adhesion molecule Novel U 0.0015106486237409112 -0.24833484989514124 1.0 11455 +75146 Mfsd13a major facilitator superfamily domain containing 13a Novel U 0.001510299578869588 -0.24833846529044418 1.0 11456 +70357 Kcnip1 Kv channel-interacting protein 1 Novel N 0.0015102529128423847 -0.24833894865561987 1.0 11457 +320460 Vwc2l von Willebrand factor C domain-containing protein 2-like Novel U 0.0015096861834844786 -0.24834481881967888 1.0 11458 +208171 Tmprss7 transmembrane serine protease 7 Novel U 0.0015095813939075074 -0.24834590422667235 1.0 11459 +258219 Or2i1 olfactory receptor family 2 subfamily I member 1 Novel U 0.0015093176346439442 -0.2483486362364537 1.0 11460 +83486 Rbm5 RNA binding motif protein 5 Novel N 0.001509270711053968 -0.24834912226945616 1.0 11461 +107094 Rrp12 ribosomal RNA processing 12 homolog Novel U 0.0015092427389665991 -0.24834941200341756 1.0 11462 +70617 Fam241a family with sequence similarity 241, member A Novel U 0.0015089926943323052 -0.24835200195751986 1.0 11463 +20273 Scn8a sodium channel, voltage-gated, type VIII, alpha Novel U 0.0015088421472694642 -0.2483535613190478 1.0 11464 +114741 Supt16 SPT16, facilitates chromatin remodeling subunit Novel U 0.00150873569474655 -0.24835466395078068 1.0 11465 +545660 I0C0044D17Rik RIKEN cDNA I0C0044D17 gene Novel U 0.0015083893244849703 -0.24835825164256384 1.0 11466 +668173 Pex10 peroxisomal biogenesis factor 10 Novel U 0.0015067807371188212 -0.24837491333762293 1.0 11467 +23882 Gadd45g growth arrest and DNA-damage-inducible 45 gamma Novel U 0.0015066113221104975 -0.24837666813270995 1.0 11468 +233878 Sez6l2 seizure related 6 homolog like 2 Novel U 0.0015055259549490475 -0.2483879103300887 1.0 11469 +70866 Slco6d1 solute carrier organic anion transporter family, member 6d1 Novel U 0.0015051378958363757 -0.248391929833621 1.0 11470 +68114 Pwwp3a PWWP domain containing 3A, DNA repair factor Novel N 0.0015046379741821294 -0.24839710800568163 1.0 11471 +52040 Ppp1r10 protein phosphatase 1, regulatory subunit 10 Novel U 0.0015044872264522295 -0.24839866944571237 1.0 11472 +56410 Cbln3 cerebellin 3 precursor protein Novel U 0.0015044612295001029 -0.24839893872128793 1.0 11473 +14155 Fem1b fem 1 homolog b Novel U 0.0015040479599038132 -0.24840321935418075 1.0 11474 +233064 Wdr62 WD repeat domain 62 Novel U 0.0015038014257577731 -0.24840577294676108 1.0 11475 +66580 Esf1 ESF1 nucleolar pre-rRNA processing protein homolog Novel U 0.0015035654384368497 -0.24840821729567353 1.0 11476 +12075 Bfsp1 beaded filament structural protein 1, in lens-CP94 Novel N 0.0015034883843852134 -0.2484090154190074 1.0 11477 +231760 Rimbp2 RIMS binding protein 2 Novel U 0.0015031614788671148 -0.24841240149561739 1.0 11478 +106707 Rpusd1 RNA pseudouridylate synthase domain containing 1 Novel U 0.0015031323960677208 -0.24841270273429747 1.0 11479 +545902 Ptprh protein tyrosine phosphatase receptor type H Novel U 0.001502548610936016 -0.24841874956150076 1.0 11480 +20193 S100a1 S100 calcium binding protein A1 Novel U 0.0015022225736388314 -0.2484221266451071 1.0 11481 +22370 Vtn vitronectin Novel U 0.001501309454835254 -0.2484315846996574 1.0 11482 +623474 Rad54b RAD54 homolog B (S. cerevisiae) Novel U 0.0015010273065748632 -0.2484345071820634 1.0 11483 +71576 Tmem238l transmembrane protein 238 like Novel N 0.0015009570510054627 -0.24843523488694172 1.0 11484 +53325 Banp BTG3 associated nuclear protein Novel U 0.0015002414752172222 -0.24844264679743303 1.0 11485 +59028 Rcl1 RNA terminal phosphate cyclase-like 1 Novel N 0.0014999969441190273 -0.24844517964250962 1.0 11486 +232791 Cnot3 CCR4-NOT transcription complex, subunit 3 Novel U 0.0014992484588070498 -0.24845293242876595 1.0 11487 +554292 Methig1 methyltransferase hypoxia inducible domain containing 1 Novel U 0.0014992018252248892 -0.24845341545787694 1.0 11488 +56173 Cldn14 claudin 14 Novel N 0.0014989734955912649 -0.2484557804887161 1.0 11489 +18814 Prl7d1 prolactin family 7, subfamily d, member 1 Novel U 0.0014989574565361559 -0.24845594662072168 1.0 11490 +69723 Rpain RPA interacting protein Novel U 0.0014986957414929371 -0.24845865745653592 1.0 11491 +320683 Zfp629 zinc finger protein 629 Novel U 0.001498666755236806 -0.24845895769522405 1.0 11492 +107734 Mrpl30 mitochondrial ribosomal protein L30 Novel U 0.0014986046177901178 -0.2484596013128542 1.0 11493 +12452 Ccng2 cyclin G2 Novel U 0.0014985164985447234 -0.24846051404910122 1.0 11494 +18766 Pkdrej polycystin (PKD) family receptor for egg jelly Novel N 0.0014984982105314926 -0.2484607034757411 1.0 11495 +113854 Vmn1r44 vomeronasal 1 receptor 44 Novel U 0.001498378092567005 -0.24846194765366858 1.0 11496 +66253 Aig1 androgen-induced 1 Novel N 0.001497179044453182 -0.24847436735461498 1.0 11497 +100177 Zmym6 zinc finger, MYM-type 6 Novel U 0.0014957067229504355 -0.24848961761234048 1.0 11498 +56249 Actr8 ARP8 actin-related protein 8 Novel N 0.0014951601458421898 -0.2484952790400599 1.0 11499 +66233 Dmap1 DNA methyltransferase 1-associated protein 1 Novel U 0.0014946037227500136 -0.24850104245215726 1.0 11500 +19771 Rlbp1 retinaldehyde binding protein 1 Novel U 0.0014942150642154397 -0.24850506816448192 1.0 11501 +66053 Ppil2 peptidylprolyl isomerase (cyclophilin)-like 2 Novel U 0.0014937614900131044 -0.24850976627115923 1.0 11502 +226255 Atrnl1 attractin like 1 Novel U 0.0014935926698069536 -0.24851151490530488 1.0 11503 +20450 St8sia2 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 2 Novel N 0.0014935295830598451 -0.2485121683557576 1.0 11504 +73244 Prl8a1 prolactin family 8, subfamily a, member 1 Novel U 0.0014927140842862154 -0.24852061526524674 1.0 11505 +78070 Cpt1c carnitine palmitoyltransferase 1c Novel N 0.0014926939630915508 -0.24852082367991965 1.0 11506 +331623 Bend3 BEN domain containing 3 Novel U 0.001492524355318365 -0.24852258047165876 1.0 11507 +208151 Tmem132b transmembrane protein 132B Novel U 0.001491209206555437 -0.24853620273931198 1.0 11508 +21789 Tfpi2 tissue factor pathway inhibitor 2 Novel U 0.0014911631108632181 -0.24853668019697667 1.0 11509 +67003 Uqcrc2 ubiquinol cytochrome c reductase core protein 2 Novel N 0.0014907093576227452 -0.24854138015812516 1.0 11510 +100861667 Gm21118 predicted gene, 21118 Novel U 0.001490313424788968 -0.24854548121740183 1.0 11511 +16832 Ldhb lactate dehydrogenase B Novel U 0.001490308198276296 -0.24854553535344825 1.0 11512 +237387 Lrrc3 leucine rich repeat containing 3 Novel U 0.0014902014433001993 -0.2485466411179813 1.0 11513 +67143 Ikzf5 IKAROS family zinc finger 5 Novel N 0.0014898396063485527 -0.2485503890132317 1.0 11514 +81702 Ankrd17 ankyrin repeat domain 17 Novel U 0.0014895712581801442 -0.24855316855473863 1.0 11515 +68023 Pdf peptide deformylase (mitochondrial) Novel N 0.0014895651896318525 -0.2485532314125623 1.0 11516 +13435 Dnmt3a DNA methyltransferase 3A Novel U 0.001489464266998447 -0.2485542767658815 1.0 11517 +18935 Phox2b paired-like homeobox 2b Novel U 0.0014886515948044296 -0.24856269439775197 1.0 11518 +12307 Calb1 calbindin 1 Novel N 0.0014883424110728849 -0.24856589691267944 1.0 11519 +15467 Eif2ak1 eukaryotic translation initiation factor 2 alpha kinase 1 Novel N 0.0014876503410826256 -0.24857306535088797 1.0 11520 +68205 Urm1 ubiquitin related modifier 1 Novel N 0.0014871172561947133 -0.2485785870266327 1.0 11521 +100041362 Gm20873 predicted gene, 20873 Novel U 0.0014870636981709348 -0.2485791417788824 1.0 11522 +12587 Mia MIA SH3 domain containing Novel U 0.0014870404802995538 -0.2485793822688309 1.0 11523 +76976 Arxes2 adipocyte-related X-chromosome expressed sequence 2 Novel U 0.001486503385150334 -0.24858494548273047 1.0 11524 +68117 Apool apolipoprotein O-like Novel N 0.0014863645458528798 -0.24858638357560942 1.0 11525 +111241 Hmga1b high mobility group AT-hook 1B Novel U 0.001485961537245349 -0.248590557925518 1.0 11526 +66591 Mad2l1bp MAD2L1 binding protein Novel U 0.0014853314720881584 -0.2485970841197039 1.0 11527 +215051 Bud13 BUD13 homolog Novel N 0.0014852154728394302 -0.248598285636109 1.0 11528 +320717 Pptc7 PTC7 protein phosphatase homolog Novel N 0.001485189446134391 -0.2485985552198642 1.0 11529 +80908 Abo ABO, alpha 1-3-N-acetylgalactosaminyltransferase and alpha 1-3-galactosyltransferase Novel U 0.0014850881520979688 -0.2485996044201636 1.0 11530 +15407 Hoxb1 homeobox B1 Novel U 0.0014850630079428532 -0.24859986486249572 1.0 11531 +668433 4930544D05Rik RIKEN cDNA 4930544D05 gene Novel U 0.0014838816626917659 -0.24861210119777186 1.0 11532 +57756 Fhl5 four and a half LIM domains 5 Novel U 0.0014834265836206166 -0.2486168148918309 1.0 11533 +232023 Vopp1 vesicular, overexpressed in cancer, prosurvival protein 1 Novel U 0.0014834013930682193 -0.24861707581474454 1.0 11534 +109821 F11 coagulation factor XI Novel U 0.0014832104903443673 -0.2486190531788826 1.0 11535 +668381 Scgb1b12 secretoglobin, family 1B, member 12 Novel U 0.0014826646780308629 -0.2486247066848833 1.0 11536 +21386 Tbx3 T-box 3 Novel U 0.0014826193370438034 -0.24862517632533673 1.0 11537 +218236 Fam120a family with sequence similarity 120, member A Novel U 0.0014825370124767051 -0.24862602904049644 1.0 11538 +233199 Mybpc2 myosin binding protein C, fast-type Novel U 0.0014825307981627938 -0.2486260934081557 1.0 11539 +13560 E4f1 E4F transcription factor 1 Novel N 0.0014822800419493996 -0.24862869073277083 1.0 11540 +381714 Gm9758 predicted gene 9758 Novel U 0.0014816237918623242 -0.2486354881495997 1.0 11541 +21407 Tcf15 transcription factor 15 Novel N 0.0014814229980588845 -0.248637567965215 1.0 11542 +71918 Zcchc24 zinc finger, CCHC domain containing 24 Novel U 0.0014811401112987353 -0.2486404980969772 1.0 11543 +328977 Zfp532 zinc finger protein 532 Novel U 0.001480905399639105 -0.24864292923263195 1.0 11544 +21892 Tll1 tolloid-like Novel U 0.0014807751650886957 -0.24864427819782384 1.0 11545 +319713 Ablim3 actin binding LIM protein family, member 3 Novel N 0.0014804821517365367 -0.2486473132204932 1.0 11546 +329972 Spata21 spermatogenesis associated 21 Novel U 0.0014803316262805362 -0.24864887235821823 1.0 11547 +227717 Qrfp pyroglutamylated RFamide peptide Novel N 0.0014798722364544152 -0.24865363070293556 1.0 11548 +217353 Tmc6 transmembrane channel-like gene family 6 Novel U 0.0014797687150969333 -0.24865470297375328 1.0 11549 +225392 Rell2 RELT-like 2 Novel U 0.0014792188479636045 -0.24866039847944438 1.0 11550 +56543 Kcnd3 potassium voltage-gated channel, Shal-related family, member 3 Novel N 0.0014788836213029085 -0.24866387074617588 1.0 11551 +13202 Ddt D-dopachrome tautomerase Novel U 0.0014787703486887499 -0.2486650440201897 1.0 11552 +380614 Intu inturned planar cell polarity protein Novel U 0.0014785679435640338 -0.24866714052581781 1.0 11553 +83984 Tssk6 testis-specific serine kinase 6 Novel N 0.0014782926330390903 -0.24866999218318483 1.0 11554 +11448 Chrne cholinergic receptor, nicotinic, epsilon polypeptide Novel U 0.0014776594830421266 -0.2486765503300397 1.0 11555 +381157 Greb1l growth regulation by estrogen in breast cancer-like Novel U 0.001477603019360881 -0.24867713517899387 1.0 11556 +21745 Tep1 telomerase associated protein 1 Novel U 0.0014774292917132021 -0.24867893464425755 1.0 11557 +14123 Fbrs fibrosin Novel U 0.0014771754234423236 -0.24868156420346182 1.0 11558 +14239 Foxs1 forkhead box S1 Novel U 0.0014771457912072085 -0.24868187113317905 1.0 11559 +242700 Ifnlr1 interferon lambda receptor 1 Novel N 0.001477105225349386 -0.24868229131300087 1.0 11560 +93704 Pcdhgb7 protocadherin gamma subfamily B, 7 Novel U 0.00147702144013666 -0.24868315915747996 1.0 11561 +18141 Nup50 nucleoporin 50 Novel U 0.0014766669793044712 -0.2486868306511275 1.0 11562 +22113 Phlda2 pleckstrin homology like domain, family A, member 2 Novel N 0.0014763139609679187 -0.24869048720345266 1.0 11563 +76539 Fam204a family with sequence similarity 204, member A Novel U 0.0014762503698717774 -0.24869114587793606 1.0 11564 +101602 AI467606 expressed sequence AI467606 Novel U 0.0014755138184455246 -0.24869877505339635 1.0 11565 +118568460 LOC118568460 Y-linked testis-specific protein 1-like Novel U 0.0014753621067367054 -0.24870034647828904 1.0 11566 +98258 Txndc9 thioredoxin domain containing 9 Novel U 0.0014750646694496501 -0.24870342732393064 1.0 11567 +237082 Nxt2 nuclear transport factor 2-like export factor 2 Novel U 0.0014744707690598853 -0.24870957892464443 1.0 11568 +13108 Cyp2g1 cytochrome P450, family 2, subfamily g, polypeptide 1 Novel U 0.0014742177269296635 -0.24871219992671095 1.0 11569 +83436 Plekha2 pleckstrin homology domain-containing, family A (phosphoinositide binding specific) member 2 Novel U 0.00147418424073723 -0.24871254677559138 1.0 11570 +16855 Lgals4 lectin, galactose binding, soluble 4 Novel N 0.001473812016214771 -0.24871640226495878 1.0 11571 +320135 BC049715 cDNA sequence BC049715 Novel U 0.0014737078380272662 -0.24871748133920027 1.0 11572 +192161 Pcdha9 protocadherin alpha 9 Novel U 0.001473486335186787 -0.24871977565834044 1.0 11573 +76167 Snrnp35 small nuclear ribonucleoprotein 35 (U11/U12) Novel N 0.0014728246770906509 -0.24872662909114937 1.0 11574 +224247 Ftdc2 ferritin domain containing 2 Novel U 0.0014726943596934106 -0.24872797891446605 1.0 11575 +320769 Prdx6b peroxiredoxin 6B Novel U 0.0014725980821240813 -0.2487289761543642 1.0 11576 +100041076 Gm3127 predicted gene 3127 Novel U 0.0014721812230650325 -0.24873329396679433 1.0 11577 +433256 Acsl5 acyl-CoA synthetase long-chain family member 5 Novel N 0.0014719659489036982 -0.2487355237694807 1.0 11578 +69137 Vstm5 V-set and transmembrane domain containing 5 Novel U 0.0014718305886397844 -0.24873692582664458 1.0 11579 +13360 Dhcr7 7-dehydrocholesterol reductase Novel U 0.0014716597355407862 -0.2487386955174275 1.0 11580 +67788 Sfr1 SWI5 dependent recombination repair 1 Novel U 0.00147093580290428 -0.24874619398787842 1.0 11581 +16210 Impact impact, RWD domain protein Novel U 0.0014706735897928173 -0.24874890998266716 1.0 11582 +98403 Zfp451 zinc finger protein 451 Novel U 0.0014691470666229366 -0.24876472165947902 1.0 11583 +74763 Naa60 N(alpha)-acetyltransferase 60, NatF catalytic subunit Novel N 0.0014685662840786976 -0.24877073738598005 1.0 11584 +229004 Gmeb2 glucocorticoid modulatory element binding protein 2 Novel N 0.0014684367875978457 -0.24877207870627177 1.0 11585 +381933 Spef1l sperm flagellar 1 like Novel U 0.0014679877631314459 -0.24877672968693385 1.0 11586 +214424 Parp16 poly (ADP-ribose) polymerase family, member 16 Novel U 0.001467863489603155 -0.2487780169080546 1.0 11587 +12617 Cenpc1 centromere protein C1 Novel U 0.0014676356905001535 -0.24878037644367504 1.0 11588 +13706 Cela2a chymotrypsin-like elastase family, member 2A Novel U 0.0014668529795524136 -0.2487884837379415 1.0 11589 +113859 Vmn1r29 vomeronasal 1 receptor 29 Novel U 0.0014668111068850429 -0.24878891745365359 1.0 11590 +71325 Tchhl1 trichohyalin-like 1 Novel U 0.0014667738782810043 -0.24878930306631042 1.0 11591 +68142 Ino80 INO80 complex subunit Novel U 0.0014667152542223037 -0.24878991029238326 1.0 11592 +67711 Nsmce1 NSE1 homolog, SMC5-SMC6 complex component Novel N 0.00146669941888451 -0.2487900743142916 1.0 11593 +74188 Prl8a8 prolactin family 8, subfamily a, member 81 Novel U 0.0014664790804846675 -0.24879235657219392 1.0 11594 +22344 Vezf1 vascular endothelial zinc finger 1 Novel U 0.0014662380135494495 -0.24879485353558425 1.0 11595 +19182 Psmc3 proteasome (prosome, macropain) 26S subunit, ATPase 3 Novel U 0.001466011061450163 -0.248797204297968 1.0 11596 +18245 Oaz1 ornithine decarboxylase antizyme 1 Novel U 0.0014658141825565334 -0.2487992435630762 1.0 11597 +100043013 Vmn1r126 vomeronasal 1 receptor 126 Novel U 0.0014657494853302418 -0.24879991369481932 1.0 11598 +27219 Sgk2 serum/glucocorticoid regulated kinase 2 Novel N 0.001465706177582901 -0.2488003622750426 1.0 11599 +14729 Gp5 glycoprotein 5 platelet Novel U 0.001465663084641102 -0.24880080863031714 1.0 11600 +329274 Fam163a family with sequence similarity 163, member A Novel U 0.0014655289503315528 -0.248802197989086 1.0 11601 +14465 Gata6 GATA binding protein 6 Novel U 0.001464981667590134 -0.24880786672573071 1.0 11602 +21333 Tac1 tachykinin 1 Novel N 0.0014646528528780717 -0.24881127257770905 1.0 11603 +18587 Pde6b phosphodiesterase 6B, cGMP, rod receptor, beta polypeptide Novel U 0.0014644178447276127 -0.248813706784406 1.0 11604 +227674 Ddx31 DEAD/H box helicase 31 Novel N 0.0014641957539628194 -0.2488160071932469 1.0 11605 +75613 Med25 mediator complex subunit 25 Novel U 0.0014640789836432237 -0.24881721669637866 1.0 11606 +72125 Amer2 APC membrane recruitment 2 Novel N 0.0014628369999199076 -0.24883008112295674 1.0 11607 +67463 Poc5 POC5 centriolar protein Novel U 0.0014624945129230944 -0.24883362859201108 1.0 11608 +633640 Tmem267 transmembrane protein 267 Novel U 0.0014622923382344335 -0.2488357227107901 1.0 11609 +77626 Smpd4 sphingomyelin phosphodiesterase 4 Novel U 0.0014622690970435641 -0.24883596344228112 1.0 11610 +332923 Pramel19 PRAME like 19 Novel U 0.001462188637300417 -0.24883679684165566 1.0 11611 +93709 Pcdhga1 protocadherin gamma subfamily A, 1 Novel U 0.0014619661589247452 -0.24883910126535727 1.0 11612 +66435 Uggt2 UDP-glucose glycoprotein glucosyltransferase 2 Novel U 0.0014619402475408143 -0.24883936965462025 1.0 11613 +102634529 LOC102634529 PRAME family member 8-like Novel U 0.0014617423636875146 -0.24884141932906764 1.0 11614 +110816 Pwp2 PWP2 periodic tryptophan protein homolog (yeast) Novel N 0.0014616904012306235 -0.24884195755448796 1.0 11615 +667705 Fam237b family with sequence similarity 237, member B Novel U 0.0014615795259601417 -0.24884310599689477 1.0 11616 +11430 Acox1 acyl-Coenzyme A oxidase 1, palmitoyl Novel U 0.0014613963724461976 -0.24884500309497135 1.0 11617 +252910 Vmn1r71 vomeronasal 1 receptor 71 Novel U 0.0014612067348167403 -0.24884696735530326 1.0 11618 +69048 Slc30a5 solute carrier family 30 (zinc transporter), member 5 Novel U 0.0014599809362091474 -0.24885966413698477 1.0 11619 +68922 Dnai1 dynein axonemal intermediate chain 1 Novel N 0.0014599582255041088 -0.24885989937372097 1.0 11620 +67808 Tprg1l transformation related protein 63 regulated 1 like Novel U 0.0014592770840553561 -0.24886695461445585 1.0 11621 +18218 Dusp8 dual specificity phosphatase 8 Novel U 0.0014591514612171223 -0.24886825581168465 1.0 11622 +15405 Hoxa9 homeobox A9 Novel N 0.001459111703638332 -0.2488686676193788 1.0 11623 +20972 Syngr1 synaptogyrin 1 Novel U 0.0014588414354162822 -0.2488714670487382 1.0 11624 +70546 Zdhhc2 zinc finger, DHHC domain containing 2 Novel U 0.0014579412912411726 -0.24888079071251334 1.0 11625 +217980 Larp4b La ribonucleoprotein 4B Novel N 0.0014578378228503315 -0.2488818624347043 1.0 11626 +232400 A2ml1 alpha-2-macroglobulin like 1 Novel U 0.0014573447969788468 -0.24888696918047382 1.0 11627 +53404 Atoh7 atonal bHLH transcription factor 7 Novel U 0.001457337941852152 -0.24888704018565078 1.0 11628 +18102 Nme1 NME/NM23 nucleoside diphosphate kinase 1 Novel U 0.0014568094325341744 -0.24889251446779256 1.0 11629 +67160 Eef1g eukaryotic translation elongation factor 1 gamma Novel U 0.001456804748824907 -0.2488925629814992 1.0 11630 +231803 Mepce methylphosphate capping enzyme Novel U 0.0014566144342984672 -0.2488945342531078 1.0 11631 +226654 Tstd1 thiosulfate sulfurtransferase (rhodanese)-like domain containing 1 Novel N 0.0014564573023085523 -0.24889616182109392 1.0 11632 +56088 Psmg1 proteasome (prosome, macropain) assembly chaperone 1 Novel N 0.0014561499607604088 -0.24889934525474627 1.0 11633 +56321 Aatf apoptosis antagonizing transcription factor Novel N 0.0014555101235410803 -0.24890597266763057 1.0 11634 +277396 Klhl23 kelch-like 23 Novel U 0.0014554504055125802 -0.24890659122500663 1.0 11635 +74013 Rftn2 raftlin family member 2 Novel U 0.0014552310879370786 -0.248908862909244 1.0 11636 +109154 Mlec malectin Novel N 0.0014551707564390234 -0.24890948782091754 1.0 11637 +18143 Npas2 neuronal PAS domain protein 2 Novel N 0.001454418006389725 -0.24891728478118288 1.0 11638 +72780 Rspo3 R-spondin 3 Novel U 0.0014540517025372422 -0.24892107894444532 1.0 11639 +74585 Sppl3 signal peptide peptidase 3 Novel U 0.0014540023254900375 -0.24892159039027706 1.0 11640 +234396 Ankle1 ankyrin repeat and LEM domain containing 1 Novel U 0.0014534300330510419 -0.24892751817654707 1.0 11641 +26885 Casp8ap2 caspase 8 associated protein 2 Novel U 0.0014532632513060265 -0.24892924569637928 1.0 11642 +73230 Bmper BMP-binding endothelial regulator Novel U 0.001453151019029962 -0.24893040819460535 1.0 11643 +16782 Lamc2 laminin, gamma 2 Novel U 0.0014530344805092803 -0.24893161529677155 1.0 11644 +213350 Gatd1 glutamine amidotransferase like class 1 domain containing 1 Novel U 0.0014528719293982076 -0.24893329899583647 1.0 11645 +231103 Gckr glucokinase regulatory protein Novel N 0.0014524435515769225 -0.24893773611922715 1.0 11646 +106529 Tecr trans-2,3-enoyl-CoA reductase Novel N 0.0014521862619958617 -0.24894040111624988 1.0 11647 +70362 Actl10 actin-like 10 Novel U 0.0014520540005233036 -0.24894177107623475 1.0 11648 +100041433 Zfp981 zinc finger protein 981 Novel U 0.0014519517887951819 -0.24894282978195462 1.0 11649 +100504162 Prss51 serine protease 51 Novel U 0.0014517356692826697 -0.24894506834076066 1.0 11650 +14724 Gp1bb glycoprotein Ib, beta polypeptide Novel U 0.0014505978108563511 -0.2489568542409354 1.0 11651 +17714 Grpel2 GrpE-like 2, mitochondrial Novel U 0.0014504446428310603 -0.24895844075030624 1.0 11652 +65961 Utp3 UTP3 small subunit processome component Novel N 0.0014500849911279936 -0.2489621660108237 1.0 11653 +21781 Tfdp1 transcription factor Dp 1 Novel U 0.0014495672306424194 -0.2489675289569128 1.0 11654 +633979 Ak9 adenylate kinase 9 Novel N 0.0014493217061307497 -0.2489700720917335 1.0 11655 +71885 Faap100 Fanconi anemia core complex associated protein 100 Novel U 0.0014491840742653394 -0.248971497678071 1.0 11656 +100862314 Spin2j spindlin family, member 2J Novel U 0.0014490716305154922 -0.24897266236673551 1.0 11657 +72654 Ccdc12 coiled-coil domain containing 12 Novel U 0.0014488997133045556 -0.24897444307955496 1.0 11658 +76002 Ms4a18 membrane-spanning 4-domains, subfamily A, member 18 Novel U 0.0014488582697661388 -0.2489748723503635 1.0 11659 +52679 E2f7 E2F transcription factor 7 Novel U 0.0014486375210181828 -0.24897715885863808 1.0 11660 +56748 Nfu1 NFU1 iron-sulfur cluster scaffold Novel N 0.0014482964855273852 -0.24898069129304085 1.0 11661 +18130 Ints6 integrator complex subunit 6 Novel N 0.0014480830466650164 -0.24898290208576085 1.0 11662 +381917 Dnah3 dynein, axonemal, heavy chain 3 Novel U 0.0014473001950053538 -0.24899101083751674 1.0 11663 +19240 Tmsb10 thymosin beta 10 Novel U 0.001447212133341942 -0.2489919229773315 1.0 11664 +11872 Art2b ADP-ribosyltransferase 2b Novel U 0.0014470800747871145 -0.24899329083550123 1.0 11665 +110595 Timp4 tissue inhibitor of metalloproteinase 4 Novel U 0.0014459680101903776 -0.24900480956403706 1.0 11666 +93690 Gpr45 G protein-coupled receptor 45 Novel U 0.0014459482544328646 -0.24900501419352392 1.0 11667 +65960 Twsg1 twisted gastrulation BMP signaling modulator 1 Novel U 0.0014443722960082149 -0.24902133791907963 1.0 11668 +81007 Defb5 defensin beta 5 Novel U 0.0014433913851123893 -0.24903149816189288 1.0 11669 +76820 Cyria CYFIP related Rac1 interactor A Novel U 0.0014429977606208277 -0.24903557531143675 1.0 11670 +22144 Tuba3a tubulin, alpha 3A Novel U 0.001442584332381352 -0.24903985758755054 1.0 11671 +73826 Poldip3 polymerase (DNA-directed), delta interacting protein 3 Novel N 0.001442553995117122 -0.24904017181993612 1.0 11672 +70047 Trnt1 tRNA nucleotidyl transferase, CCA-adding, 1 Novel U 0.0014425522526636725 -0.24904018986821172 1.0 11673 +16524 Kcnj9 potassium inwardly-rectifying channel, subfamily J, member 9 Novel U 0.0014418915080790075 -0.24904703383889884 1.0 11674 +13072 Cyp11b2 cytochrome P450, family 11, subfamily b, polypeptide 2 Novel U 0.0014414049177583332 -0.24905207392544462 1.0 11675 +382913 Neil2 nei like 2 (E. coli) Novel N 0.0014412312977352137 -0.24905387227593662 1.0 11676 +217830 Dglucy D-glutamate cyclase Novel U 0.0014410662720903205 -0.2490555816061415 1.0 11677 +73988 4930438A08Rik RIKEN cDNA 4930438A08 gene Novel U 0.0014408860410784021 -0.24905744843303815 1.0 11678 +72522 Atxn7l2 ataxin 7-like 2 Novel U 0.0014405852008333587 -0.24906056452640674 1.0 11679 +236266 Alms1 ALMS1, centrosome and basal body associated Novel U 0.0014399922589355368 -0.24906670619909246 1.0 11680 +170738 Kcnh7 potassium voltage-gated channel, subfamily H (eag-related), member 7 Novel U 0.0014399106034255135 -0.249067551984181 1.0 11681 +101197 Zfp956 zinc finger protein 956 Novel U 0.001438052124922191 -0.24908680204342423 1.0 11682 +171254 Vmn1r198 vomeronasal 1 receptor 198 Novel U 0.0014379578535212703 -0.24908777850349595 1.0 11683 +105663 Thtpa thiamine triphosphatase Novel N 0.0014371059324888532 -0.24909660267354433 1.0 11684 +20068 Rps17 ribosomal protein S17 Novel U 0.0014370673051369081 -0.24909700277438598 1.0 11685 +83922 Cep41 centrosomal protein 41 Novel N 0.001436972199496754 -0.24909798787548026 1.0 11686 +76157 Slc35d3 solute carrier family 35, member D3 Novel N 0.0014369010523757574 -0.2490987248150207 1.0 11687 +57230 Sap30bp SAP30 binding protein Novel U 0.0014364278310935413 -0.2491036264255056 1.0 11688 +73274 Gpbp1 GC-rich promoter binding protein 1 Novel U 0.0014363348592303917 -0.2491045894250078 1.0 11689 +12813 Col10a1 collagen, type X, alpha 1 Novel U 0.0014361553373366373 -0.24910644890688188 1.0 11690 +665150 Vmn1r57 vomeronasal 1 receptor 57 Novel U 0.0014354531957667426 -0.24911372166618118 1.0 11691 +56506 Cib2 calcium and integrin binding family member 2 Novel U 0.0014352810356649047 -0.24911550489485654 1.0 11692 +100042996 Vmn1r114 vomeronasal 1 receptor 114 Novel U 0.0014351937494621269 -0.24911640900247556 1.0 11693 +246747 Adig adipogenin Novel U 0.0014347786788991746 -0.24912070828972188 1.0 11694 +67273 Ndufa10 NADH:ubiquinone oxidoreductase subunit A10 Novel N 0.0014347604987755783 -0.24912089659884445 1.0 11695 +27028 Ermap erythroblast membrane-associated protein Novel U 0.0014341898052178733 -0.24912680782395463 1.0 11696 +22236 Ugt1a2 UDP glucuronosyltransferase 1 family, polypeptide A2 Novel U 0.0014340985054978092 -0.24912775350345376 1.0 11697 +384696 Vmn1r119 vomeronasal 1 receptor 119 Novel U 0.001433846230601038 -0.2491303665585414 1.0 11698 +78703 Zfp972 zinc finger protein 972 Novel U 0.0014336592334022755 -0.24913230346937898 1.0 11699 +116940 Tgs1 trimethylguanosine synthase 1 Novel N 0.0014331770384374241 -0.2491372980289736 1.0 11700 +194604 Serpina16 serine (or cysteine) peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 16 Novel U 0.0014328485998701646 -0.24914069998485644 1.0 11701 +433931 Pigg phosphatidylinositol glycan anchor biosynthesis, class G Novel U 0.0014325781152578275 -0.24914350165557933 1.0 11702 +68298 Ncapd2 non-SMC condensin I complex, subunit D2 Novel U 0.0014323990562242052 -0.24914535634316332 1.0 11703 +18557 Cdk18 cyclin dependent kinase 18 Novel U 0.0014312962129387446 -0.2491567795576601 1.0 11704 +23942 Mta2 metastasis-associated gene family, member 2 Novel N 0.0014308950056091752 -0.24916093524999083 1.0 11705 +30843 Fbxl12 F-box and leucine-rich repeat protein 12 Novel U 0.0014308358061441092 -0.2491615484361039 1.0 11706 +67291 Ccdc137 coiled-coil domain containing 137 Novel U 0.0014307305712791584 -0.24916263845537565 1.0 11707 +66451 2610528J11Rik RIKEN cDNA 2610528J11 gene Novel U 0.0014300907570669015 -0.24916926562995345 1.0 11708 +100861899 Gm21310 predicted gene, 21310 Novel U 0.0014300750292826742 -0.24916942853782548 1.0 11709 +53311 Mybph myosin binding protein H Novel N 0.0014295828872498647 -0.249174526128823 1.0 11710 +620393 Alkal1 ALK and LTK ligand 1 Novel U 0.0014293435267745643 -0.2491770054167576 1.0 11711 +16527 Kcnk3 potassium channel, subfamily K, member 3 Novel N 0.0014292776791270767 -0.24917768746452565 1.0 11712 +68067 Mrnip MRN complex interacting protein Novel U 0.0014291953863084337 -0.24917853985083593 1.0 11713 +66495 Ndufb3 NADH:ubiquinone oxidoreductase subunit B3 Novel N 0.0014289761391170013 -0.24918081080603743 1.0 11714 +100312470 Vmn1r2 vomeronasal 1 receptor 2 Novel U 0.0014282127316022353 -0.2491887181559797 1.0 11715 +11821 Aprt adenine phosphoribosyl transferase Novel N 0.0014279625059205137 -0.24919130998536523 1.0 11716 +54369 Nme6 NME/NM23 nucleoside diphosphate kinase 6 Novel N 0.0014277350409086496 -0.2491936660604806 1.0 11717 +171234 Vmn1r237 vomeronasal 1 receptor 237 Novel U 0.001427598156816578 -0.24919508390140646 1.0 11718 +14050 Eya3 EYA transcriptional coactivator and phosphatase 3 Novel N 0.0014265434431204203 -0.24920600859119943 1.0 11719 +100043667 Vmn1r165 vomeronasal 1 receptor 165 Novel U 0.001424912686229505 -0.2492228999174673 1.0 11720 +668310 Cc2d2b coiled-coil and C2 domain containing 2B Novel U 0.0014247437339814624 -0.24922464991929852 1.0 11721 +12614 Celsr1 cadherin, EGF LAG seven-pass G-type receptor 1 Novel N 0.0014246000252526104 -0.2492261384495878 1.0 11722 +13115 Cyp27b1 cytochrome P450, family 27, subfamily b, polypeptide 1 Novel U 0.0014244976352994739 -0.2492271990013565 1.0 11723 +14894 Cfap20 cilia and flagella associated protein 20 Novel U 0.001424463693325663 -0.24922755057120546 1.0 11724 +60531 Npvf neuropeptide VF precursor Novel U 0.0014244034056347956 -0.24922817502912561 1.0 11725 +11537 Cfd complement factor D Novel N 0.0014228961207362336 -0.2492437874365556 1.0 11726 +67397 Erp29 endoplasmic reticulum protein 29 Novel U 0.001422691694907363 -0.24924590487257087 1.0 11727 +77037 Mrap melanocortin 2 receptor accessory protein Novel U 0.0014225678228835558 -0.2492471879349214 1.0 11728 +56075 Pdss1 prenyl (solanesyl) diphosphate synthase, subunit 1 Novel U 0.001422567251994775 -0.24924719384816862 1.0 11729 +624421 Pramel40 PRAME like 40 Novel U 0.0014221243816321969 -0.24925178108482562 1.0 11730 +17878 Myf6 myogenic factor 6 Novel U 0.0014221181411130494 -0.24925184572391784 1.0 11731 +225884 Gstp3 glutathione S-transferase pi 3 Novel U 0.0014220199604060976 -0.2492528626764529 1.0 11732 +68875 Tmcc2 transmembrane and coiled-coil domains 2 Novel N 0.0014219662311783933 -0.24925341920202723 1.0 11733 +219022 Ttc5 tetratricopeptide repeat domain 5 Novel U 0.0014219359847034469 -0.2492537324940204 1.0 11734 +637776 Zfp977 zinc finger protein 977 Novel U 0.0014203710501965489 -0.24926994203419842 1.0 11735 +225743 Ark2c arkadia (RNF111) C-terminal like ring finger ubiquitin ligase 2C Novel U 0.001420192140782677 -0.24927179517202597 1.0 11736 +231327 Ppat phosphoribosyl pyrophosphate amidotransferase Novel U 0.0014201267881340635 -0.24927247209261197 1.0 11737 +20510 Slc1a1 solute carrier family 1 (neuronal/epithelial high affinity glutamate transporter, system Xag), member 1 Novel U 0.001419605799714567 -0.24927786847353453 1.0 11738 +22724 Zbtb7b zinc finger and BTB domain containing 7B Novel N 0.0014187627765866186 -0.24928660047938092 1.0 11739 +69462 Slurp2 secreted Ly6/Plaur domain containing 2 Novel U 0.001418302546575493 -0.24929136752670691 1.0 11740 +21426 Tfec transcription factor EC Novel N 0.0014182019338559821 -0.24929240966994815 1.0 11741 +171244 Vmn1r81 vomeronasal 1 receptor 81 Novel U 0.0014178371300704751 -0.24929618829556613 1.0 11742 +71913 Tmem79 transmembrane protein 79 Novel U 0.0014171151488436642 -0.24930366655337963 1.0 11743 +227522 Rpp38 ribonuclease P/MRP 38 subunit Novel N 0.001416118375569746 -0.2493139910981837 1.0 11744 +71884 Chit1 chitinase 1 Novel N 0.0014148826048212967 -0.24932679117097237 1.0 11745 +654821 Gcnt7 glucosaminyl (N-acetyl) transferase family member 7 Novel U 0.0014146306417421536 -0.2493294009962633 1.0 11746 +18609 Pdx1 pancreatic and duodenal homeobox 1 Novel U 0.0014146230122245647 -0.24932948002255564 1.0 11747 +170935 Grid2ip glutamate receptor, ionotropic, delta 2 (Grid2) interacting protein 1 Novel U 0.0014144012811297864 -0.24933177670594636 1.0 11748 +225929 Patl1 protein associated with topoisomerase II homolog 1 (yeast) Novel N 0.0014140614239116 -0.2493352969358401 1.0 11749 +71876 Cenpu centromere protein U Novel U 0.0014137455209610088 -0.2493385690482176 1.0 11750 +67470 Abcg8 ATP binding cassette subfamily G member 8 Novel U 0.001413565637443629 -0.2493404322757773 1.0 11751 +101122 Rpusd3 RNA pseudouridylate synthase domain containing 3 Novel N 0.0014122370260429896 -0.24935419398898934 1.0 11752 +547154 H2al1k H2A histone family member L1K Novel U 0.0014122318796024778 -0.24935424729565098 1.0 11753 +13178 Dck deoxycytidine kinase Novel N 0.001411925458370881 -0.24935742119669482 1.0 11754 +12651 Chkb choline kinase beta Novel U 0.0014114651830154164 -0.24936218871369598 1.0 11755 +76566 Rflnb refilin B Novel U 0.0014096306740453662 -0.2493811904973015 1.0 11756 +72475 Ssbp3 single-stranded DNA binding protein 3 Novel U 0.001409034858176918 -0.24938736193848052 1.0 11757 +20394 Scg5 secretogranin V Novel U 0.0014085615766065058 -0.24939226417342855 1.0 11758 +74777 Selenon selenoprotein N Novel U 0.0014082610257516188 -0.2493953772693034 1.0 11759 +101401 Adamts9 ADAM metallopeptidase with thrombospondin type 1 motif 9 Novel N 0.0014080202799200017 -0.24939787090671317 1.0 11760 +213109 Phf3 PHD finger protein 3 Novel U 0.0014078972963561256 -0.24939914476642497 1.0 11761 +72507 Dzip1l DAZ interacting protein 1-like Novel U 0.0014074641861827866 -0.24940363090736267 1.0 11762 +229357 Gpr149 G protein-coupled receptor 149 Novel U 0.001406872186254909 -0.2494097628231547 1.0 11763 +208194 Exog exo/endonuclease G Novel U 0.0014063673758744494 -0.24941499163248074 1.0 11764 +109305 Orai1 ORAI calcium release-activated calcium modulator 1 Novel U 0.001406255635025187 -0.24941614904052412 1.0 11765 +12404 Cbln1 cerebellin 1 precursor protein Novel N 0.0014059721916529632 -0.2494190849376559 1.0 11766 +18602 Padi4 peptidyl arginine deiminase, type IV Novel N 0.001405932957759049 -0.24941949132103933 1.0 11767 +234736 Rfwd3 ring finger and WD repeat domain 3 Novel U 0.0014058396784397847 -0.24942045750516184 1.0 11768 +233724 Tmem41b transmembrane protein 41B Novel U 0.0014052337106437661 -0.24942673409967292 1.0 11769 +66289 Mptx1 mucosal pentraxin 1 Novel U 0.0014052130081571386 -0.24942694853534886 1.0 11770 +170483 Grin3b glutamate receptor, ionotropic, NMDA3B Novel U 0.001405051962859494 -0.24942861663724775 1.0 11771 +229524 Msto1 misato 1, mitochondrial distribution and morphology regulator Novel U 0.001404651642417733 -0.24943276314322368 1.0 11772 +380997 Cyp2d12 cytochrome P450, family 2, subfamily d, polypeptide 12 Novel U 0.0014044606415733734 -0.24943474152369075 1.0 11773 +56541 Habp4 hyaluronic acid binding protein 4 Novel U 0.0014041865662971444 -0.24943758038639222 1.0 11774 +52570 Ccdc69 coiled-coil domain containing 69 Novel U 0.0014040303332228902 -0.24943919864343944 1.0 11775 +100534287 Dchs2 dachsous cadherin related 2 Novel U 0.0014031764835441293 -0.24944804279034324 1.0 11776 +277250 Kdm3b KDM3B lysine (K)-specific demethylase 3B Novel U 0.0014030386562805257 -0.24944947040060883 1.0 11777 +268510 Mgat5b mannoside acetylglucosaminyltransferase 5, isoenzyme B Novel N 0.001402861996866338 -0.24945130023301362 1.0 11778 +68626 Elac2 elaC ribonuclease Z 2 Novel N 0.001402547279261871 -0.2494545600676149 1.0 11779 +103468 Nup107 nucleoporin 107 Novel U 0.0014022580465268472 -0.24945755593077626 1.0 11780 +18197 Nsg2 neuron specific gene family member 2 Novel U 0.0014020805407328075 -0.24945939452995572 1.0 11781 +229445 Ctso cathepsin O Novel N 0.0014019584357690476 -0.2494606592891564 1.0 11782 +80292 Zxdc ZXD family zinc finger C Novel N 0.001400394582738749 -0.24947685762743532 1.0 11783 +69077 Psmd11 proteasome (prosome, macropain) 26S subunit, non-ATPase, 11 Novel U 0.0014002177047837655 -0.2494786897234785 1.0 11784 +109145 Gins4 GINS complex subunit 4 Novel U 0.001400183063175238 -0.24947904854012082 1.0 11785 +21788 Tfpi tissue factor pathway inhibitor Novel U 0.0014001294324752747 -0.24947960404514805 1.0 11786 +78376 Sapcd1 suppressor APC domain containing 1 Novel U 0.0013999817939106985 -0.24948113328054655 1.0 11787 +100302688 Gm17455 predicted gene, 17455 Novel U 0.0013996918895136403 -0.2494841361007612 1.0 11788 +69882 Ints14 integrator complex subunit 14 Novel U 0.001399632822490478 -0.2494847479150454 1.0 11789 +94222 Olig3 oligodendrocyte transcription factor 3 Novel U 0.0013996202633639206 -0.2494848780020654 1.0 11790 +383348 Kctd16 potassium channel tetramerisation domain containing 16 Novel U 0.001399153435460154 -0.24948971339014647 1.0 11791 +67704 1810037I17Rik RIKEN cDNA 1810037I17 gene Novel U 0.0013987172323546625 -0.24949423156757375 1.0 11792 +328133 Slc39a9 solute carrier family 39 (zinc transporter), member 9 Novel N 0.0013982973911482969 -0.24949858026898775 1.0 11793 +24070 Mpdu1 mannose-P-dolichol utilization defect 1 Novel U 0.0013982055356812101 -0.24949953170489625 1.0 11794 +73139 Cenpv centromere protein V Novel U 0.0013977000790392482 -0.2495047672081777 1.0 11795 +58186 Rad18 RAD18 E3 ubiquitin protein ligase Novel U 0.0013971884434659276 -0.24951006671262704 1.0 11796 +667586 Vmn1r163 vomeronasal 1 receptor 163 Novel U 0.0013966519167558462 -0.2495156240386527 1.0 11797 +69151 Lzic leucine zipper and CTNNBIP1 domain containing Novel U 0.001396478565398059 -0.24951741960631807 1.0 11798 +192663 Abcg4 ATP binding cassette subfamily G member 4 Novel U 0.0013947948560298362 -0.24953485941260514 1.0 11799 +215095 Astl astacin like metalloendopeptidase Novel N 0.0013944645814461306 -0.249538280385886 1.0 11800 +68275 Rpa1 replication protein A1 Novel U 0.0013942974277179423 -0.24954001175870766 1.0 11801 +97187 Pramel29 PRAME like 29 Novel U 0.0013937262244546093 -0.24954592826333197 1.0 11802 +16494 Kcna6 potassium voltage-gated channel, shaker-related, subfamily, member 6 Novel N 0.0013933309708576416 -0.24955002228709608 1.0 11803 +70080 Igsf23 immunoglobulin superfamily, member 23 Novel U 0.0013927008139557 -0.2495565494315711 1.0 11804 +74152 Stra6l STRA6-like Novel U 0.0013925517549368532 -0.2495580933799883 1.0 11805 +19141 Lgmn legumain Novel U 0.001391835064961271 -0.24956551683119546 1.0 11806 +20930 Surf1 surfeit gene 1 Novel N 0.0013916535492635748 -0.24956739696482516 1.0 11807 +14314 Fstl1 follistatin-like 1 Novel U 0.0013913412316563312 -0.24957063194033413 1.0 11808 +333315 Frem3 Fras1 related extracellular matrix protein 3 Novel U 0.0013913140228133994 -0.24957091376863477 1.0 11809 +223776 Selenoo selenoprotein O Novel N 0.0013906087846026088 -0.24957821860283866 1.0 11810 +271887 Rbbp8nl RBBP8 N-terminal like Novel U 0.0013901958549617345 -0.24958249571448454 1.0 11811 +21410 Hnf1b HNF1 homeobox B Novel U 0.0013899110696463204 -0.24958544551141976 1.0 11812 +102634296 Gm4779 predicted gene 4779 Novel U 0.0013893740234780787 -0.24959100821797597 1.0 11813 +20471 Six1 sine oculis-related homeobox 1 Novel U 0.001389028154534028 -0.2495945907171286 1.0 11814 +545893 Mansc4 MANSC domain containing 4 Novel U 0.0013889816190305305 -0.2495950727303441 1.0 11815 +232339 Ankrd26 ankyrin repeat domain 26 Novel U 0.0013881703257114897 -0.24960347607987288 1.0 11816 +66359 Cox20 cytochrome c oxidase assembly protein 20 Novel N 0.001387743763183211 -0.24960789440051828 1.0 11817 +16668 Krt18 keratin 18 Novel U 0.0013875348807590186 -0.24961005799780145 1.0 11818 +72281 Sh2d4a SH2 domain containing 4A Novel U 0.001387523875513542 -0.2496101719897723 1.0 11819 +77609 Odad3 outer dynein arm docking complex subunit 3 Novel N 0.0013865788505453293 -0.24961996052732704 1.0 11820 +66618 Snrnp27 small nuclear ribonucleoprotein 27 (U4/U6.U5) Novel U 0.0013861311325440125 -0.24962459797566675 1.0 11821 +240756 Klhl12 kelch-like 12 Novel U 0.0013861303591255188 -0.24962460598671005 1.0 11822 +407786 Taf9b TATA-box binding protein associated factor 9B Novel N 0.001385563673359684 -0.2496304756992438 1.0 11823 +53618 Fut8 fucosyltransferase 8 Novel U 0.0013852159472168967 -0.24963407743519989 1.0 11824 +11434 Acr acrosin prepropeptide Novel U 0.0013848967085077584 -0.24963738409925473 1.0 11825 +71804 Mtfr2 mitochondrial fission regulator 2 Novel U 0.0013848328030543525 -0.24963804602984035 1.0 11826 +11441 Chrna7 cholinergic receptor, nicotinic, alpha polypeptide 7 Novel U 0.0013847519186805184 -0.2496388838275256 1.0 11827 +14402 Gabrb3 GABRB3, gamma-aminobutyric acid type A receptor subunit beta 3 Novel U 0.0013846821824261698 -0.24963960615335568 1.0 11828 +230576 Ttc22 tetratricopeptide repeat domain 22 Novel U 0.0013845682915552332 -0.24964078583125288 1.0 11829 +17527 Mpv17 MpV17 mitochondrial inner membrane protein Novel U 0.0013829560919413491 -0.2496574849418553 1.0 11830 +100271882 Zfp1004 zinc finger protein 1004 Novel U 0.0013827862237921129 -0.24965924443056095 1.0 11831 +68653 Samm50 SAMM50 sorting and assembly machinery component Novel U 0.0013823489920481323 -0.2496637732625919 1.0 11832 +54394 Crlf3 cytokine receptor-like factor 3 Novel U 0.0013806672360227458 -0.2496811928362181 1.0 11833 +238803 Zfp366 zinc finger protein 366 Novel N 0.0013803391065011572 -0.24968459159101605 1.0 11834 +74405 Efhc2 EF-hand domain (C-terminal) containing 2 Novel U 0.0013802403815590988 -0.24968561418072047 1.0 11835 +15115 Hars1 histidyl-tRNA synthetase 1 Novel U 0.0013800842916076095 -0.24968723095530682 1.0 11836 +70458 2610318N02Rik RIKEN cDNA 2610318N02 gene Novel U 0.0013798859177473434 -0.24968928570523025 1.0 11837 +15267 H2ac18 H2A clustered histone 18 Novel U 0.0013795406347370638 -0.24969286213530018 1.0 11838 +66069 Snupn snurportin 1 Novel N 0.0013794791454339109 -0.24969349903948088 1.0 11839 +22625 Map3k19 mitogen-activated protein kinase kinase kinase 19 Novel U 0.0013794519726647407 -0.24969378049413068 1.0 11840 +57254 Tas2r119 taste receptor, type 2, member 119 Novel U 0.00137944087308679 -0.24969389546319423 1.0 11841 +71916 Dus4l dihydrouridine synthase 4 like Novel N 0.0013793915532616231 -0.24969440631632198 1.0 11842 +67712 Slc25a37 solute carrier family 25, member 37 Novel U 0.0013791830300069023 -0.24969656619333955 1.0 11843 +66733 Kcng4 potassium voltage-gated channel, subfamily G, member 4 Novel N 0.0013790857363344766 -0.24969757395800019 1.0 11844 +385658 Nxpe3 neurexophilin and PC-esterase domain family, member 3 Novel U 0.001378993280792141 -0.2496985316094684 1.0 11845 +68691 Kansl1l KAT8 regulatory NSL complex subunit 1-like Novel U 0.00137867488565914 -0.24970182953578934 1.0 11846 +76400 Pbp2 phosphatidylethanolamine binding protein 2 Novel U 0.001378428206483176 -0.24970438463058484 1.0 11847 +68349 Ndufs3 NADH:ubiquinone oxidoreductase core subunit S3 Novel U 0.0013782171508873963 -0.24970657073750782 1.0 11848 +22594 Xrcc1 X-ray repair complementing defective repair in Chinese hamster cells 1 Novel N 0.0013778522681940247 -0.2497103501804509 1.0 11849 +234023 Arglu1 arginine and glutamate rich 1 Novel U 0.00137778260920297 -0.24971107170599033 1.0 11850 +234964 Deup1 deuterosome assembly protein 1 Novel U 0.0013777096227717482 -0.24971182769704564 1.0 11851 +97159 A430005L14Rik RIKEN cDNA A430005L14 gene Novel U 0.0013771971208801604 -0.2497171361747911 1.0 11852 +72805 Zfp839 zinc finger protein 839 Novel U 0.0013770213385106208 -0.24971895692279625 1.0 11853 +208266 Dot1l DOT1 like histone lysine methyltransferase Novel U 0.0013766283660258886 -0.24972302731887486 1.0 11854 +66395 Ahnak AHNAK nucleoprotein Novel N 0.0013764820225288183 -0.24972454314000672 1.0 11855 +209351 Wfdc6a WAP four-disulfide core domain 6A Novel U 0.001376138883890975 -0.2497280973587374 1.0 11856 +65020 Zfp110 zinc finger protein 110 Novel U 0.0013761234543789166 -0.2497282571771161 1.0 11857 +100040944 Gm3055 predicted gene 3055 Novel U 0.0013760713935022282 -0.24972879642196544 1.0 11858 +78749 Filip1l filamin A interacting protein 1-like Novel U 0.0013757851750311578 -0.24973176106347986 1.0 11859 +12455 Ccnt1 cyclin T1 Novel U 0.0013757072228543813 -0.24973256848956438 1.0 11860 +94062 Mrpl3 mitochondrial ribosomal protein L3 Novel N 0.0013753093623300042 -0.24973668951579692 1.0 11861 +18407 Orm3 orosomucoid 3 Novel U 0.0013752482769948103 -0.24973732223569076 1.0 11862 +12640 Cga glycoprotein hormones, alpha subunit Novel U 0.0013752038424322045 -0.24973778248742953 1.0 11863 +21387 Tbx4 T-box 4 Novel U 0.001374620130782939 -0.24974382855350413 1.0 11864 +67801 Pllp plasma membrane proteolipid Novel U 0.001374379464863971 -0.24974632136318134 1.0 11865 +278097 Armcx6 armadillo repeat containing, X-linked 6 Novel U 0.0013739724365711603 -0.24975053734885796 1.0 11866 +72284 LTO1 ABCE maturation factor Novel N 0.0013733926173610154 -0.2497565430971761 1.0 11867 +54387 Mcm3ap minichromosome maintenance complex component 3 associated protein Novel U 0.0013729825338165025 -0.2497607907290494 1.0 11868 +99696 Ankrd50 ankyrin repeat domain 50 Novel U 0.001372838255361804 -0.24976228516054025 1.0 11869 +68944 Tmco1 transmembrane and coiled-coil domains 1 Novel U 0.0013727767064642192 -0.24976292268199812 1.0 11870 +16841 Lect2 leukocyte cell-derived chemotaxin 2 Novel N 0.0013713945172897778 -0.24977723935202997 1.0 11871 +66365 Ccdc90b coiled-coil domain containing 90B Novel U 0.0013713791854637679 -0.24977739815857977 1.0 11872 +14768 Lancl1 LanC (bacterial lantibiotic synthetase component C)-like 1 Novel N 0.0013707515936893784 -0.24978389873354792 1.0 11873 +225523 Cep120 centrosomal protein 120 Novel U 0.0013706965965981015 -0.24978446839161145 1.0 11874 +70791 Hars2 histidyl-tRNA synthetase 2 Novel N 0.00137038817353527 -0.2497876630275574 1.0 11875 +17137 Magea1 MAGE family member A1 Novel U 0.0013702002273176693 -0.2497896097683009 1.0 11876 +624153 H2ab2 H2A.B variant histone 2 Novel U 0.0013693875314288455 -0.2497980276456014 1.0 11877 +83797 Smarcd1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 1 Novel U 0.0013693508010167925 -0.249798408098002 1.0 11878 +14633 Gli2 GLI-Kruppel family member GLI2 Novel U 0.0013690778183956215 -0.24980123564301826 1.0 11879 +268878 Atp13a5 ATPase type 13A5 Novel N 0.001368953932797628 -0.2498025188459698 1.0 11880 +71338 Tprg1 transformation related protein 63 regulated 1 Novel U 0.0013685627166195738 -0.24980657105028153 1.0 11881 +268729 Frmpd2 FERM and PDZ domain containing 2 Novel U 0.0013680722932492802 -0.24981165083942922 1.0 11882 +108912 Cdca2 cell division cycle associated 2 Novel N 0.0013678163728773089 -0.24981430165422916 1.0 11883 +77836 Mlana melan-A Novel U 0.001367814885373901 -0.24981431706174057 1.0 11884 +434484 Sp140 Sp140 nuclear body protein Novel U 0.0013677907737126172 -0.2498145668095355 1.0 11885 +76987 Hdhd2 haloacid dehalogenase-like hydrolase domain containing 2 Novel U 0.001367631431038071 -0.24981621727572037 1.0 11886 +68278 Ddx39a DEAD box helicase 39a Novel N 0.0013675676953197522 -0.2498168774481955 1.0 11887 +433178 Spink14 serine peptidase inhibitor, Kazal type 14 Novel U 0.0013666668807480792 -0.24982620805591624 1.0 11888 +67027 Mkrn2 makorin, ring finger protein, 2 Novel U 0.001365221243401346 -0.24984118192003088 1.0 11889 +56504 Srpk3 serine/arginine-rich protein specific kinase 3 Novel U 0.0013647542947006642 -0.24984601855932245 1.0 11890 +71833 Dcaf7 DDB1 and CUL4 associated factor 7 Novel U 0.0013646902447187917 -0.24984668198692916 1.0 11891 +17207 Mcf2l mcf.2 transforming sequence-like Novel U 0.0013645310137150232 -0.24984833129643175 1.0 11892 +22784 Slc30a3 solute carrier family 30 (zinc transporter), member 3 Novel U 0.0013644346586532258 -0.24984932933899434 1.0 11893 +74617 Scpep1 serine carboxypeptidase 1 Novel U 0.0013636677194493834 -0.24985727327005597 1.0 11894 +394433 Ugt1a5 UDP glucuronosyltransferase 1 family, polypeptide A5 Novel U 0.0013636351259401192 -0.2498576108725535 1.0 11895 +100039052 Eif1ad4 eukaryotic translation initiation factor 1A domain containing 4 Novel U 0.00136327550153137 -0.2498613358503573 1.0 11896 +245263 Duxf4 double homeobox family member 4 Novel U 0.0013632676479969688 -0.24986141719700844 1.0 11897 +215378 Brinp3 bone morphogenetic protein/retinoic acid inducible neural specific 3 Novel U 0.0013631860211879318 -0.24986226268481312 1.0 11898 +69352 Necab1 N-terminal EF-hand calcium binding protein 1 Novel U 0.001363163199197461 -0.24986249907424019 1.0 11899 +116972 Tlcd3a TLC domain containing 3A Novel U 0.0013626190472871976 -0.24986813538183866 1.0 11900 +78834 Zfp623 zinc finger protein 623 Novel U 0.0013614685029005426 -0.24988005268277355 1.0 11901 +225642 Grp gastrin releasing peptide Novel N 0.0013607231835280175 -0.2498877726763331 1.0 11902 +106633 Ift140 intraflagellar transport 140 Novel U 0.0013604375675612627 -0.24989073107712761 1.0 11903 +12235 Bub1 BUB1, mitotic checkpoint serine/threonine kinase Novel U 0.001359719857765124 -0.24989816509160256 1.0 11904 +97112 Nmd3 NMD3 ribosome export adaptor Novel U 0.0013586608071135986 -0.24990913470343668 1.0 11905 +78752 Csgalnact2 chondroitin sulfate N-acetylgalactosaminyltransferase 2 Novel N 0.0013585807458174315 -0.2499099639757105 1.0 11906 +380686 Cnrip1 cannabinoid receptor interacting protein 1 Novel U 0.0013583923929740276 -0.2499119149282707 1.0 11907 +56516 Rbms2 RNA binding motif, single stranded interacting protein 2 Novel N 0.0013579891102834419 -0.2499160921171226 1.0 11908 +63859 Impg1 interphotoreceptor matrix proteoglycan 1 Novel N 0.0013575406443936137 -0.24992073731206693 1.0 11909 +53375 Mtx2 metaxin 2 Novel U 0.0013575339378246593 -0.2499208067784877 1.0 11910 +66793 Clxn calaxin Novel U 0.0013572538763220025 -0.24992370764632565 1.0 11911 +66357 Ostc oligosaccharyltransferase complex subunit (non-catalytic) Novel N 0.001357143267261199 -0.2499248533313414 1.0 11912 +100039596 Tcf24 transcription factor 24 Novel U 0.00135667433242708 -0.24992971054293778 1.0 11913 +19202 Rhox6 reproductive homeobox 6 Novel U 0.0013565306355454061 -0.24993119895051438 1.0 11914 +241391 Galnt5 polypeptide N-acetylgalactosaminyltransferase 5 Novel N 0.0013564551039716907 -0.24993198130407196 1.0 11915 +75871 Zfp821 zinc finger protein 821 Novel U 0.0013561176891217872 -0.24993547623599535 1.0 11916 +16418 Eif6 eukaryotic translation initiation factor 6 Novel N 0.0013561015229027256 -0.24993564368516094 1.0 11917 +70930 Nol8 nucleolar protein 8 Novel N 0.0013559876437720152 -0.2499368232414533 1.0 11918 +106957 Slc39a6 solute carrier family 39 (metal ion transporter), member 6 Novel U 0.0013556969451352836 -0.24993983428837635 1.0 11919 +97961 Nol12 nucleolar protein 12 Novel U 0.0013556408311622297 -0.24994041551506457 1.0 11920 +76238 Grhpr glyoxylate reductase/hydroxypyruvate reductase Novel N 0.0013556087382268548 -0.24994074793263418 1.0 11921 +15191 Hdgf heparin binding growth factor Novel N 0.0013551906596071723 -0.24994507837723326 1.0 11922 +20526 Slc2a2 solute carrier family 2 (facilitated glucose transporter), member 2 Novel N 0.0013550376470188319 -0.24994666327659332 1.0 11923 +23893 Grem2 gremlin 2, DAN family BMP antagonist Novel N 0.0013550111078237728 -0.24994693816870328 1.0 11924 +67532 Mfap1a microfibrillar-associated protein 1A Novel U 0.0013547051870483157 -0.24995010688603886 1.0 11925 +105243794 Spem3 SPEM family member 3 Novel U 0.0013546970105806821 -0.24995019157762186 1.0 11926 +242022 Frem2 Fras1 related extracellular matrix protein 2 Novel U 0.0013539330617460255 -0.24995810453453773 1.0 11927 +28254 Slco1a6 solute carrier organic anion transporter family, member 1a6 Novel U 0.0013535662996486 -0.2499619034442862 1.0 11928 +56369 Apip APAF1 interacting protein Novel U 0.0013532558465946666 -0.24996511910681327 1.0 11929 +98985 Clp1 CLP1, cleavage and polyadenylation factor I subunit Novel N 0.0013532298799002098 -0.24996538806898083 1.0 11930 +330962 Slc51b solute carrier family 51, beta subunit Novel U 0.0013525859891742888 -0.24997205746795317 1.0 11931 +215900 Calhm6 calcium homeostasis modulator family member 6 Novel U 0.0013518859401381966 -0.24997930855285613 1.0 11932 +100862368 Gm21680 predicted gene, 21680 Novel U 0.0013514429942300852 -0.24998389657201128 1.0 11933 +72269 Cda cytidine deaminase Novel N 0.0013514219858668792 -0.24998411417594676 1.0 11934 +12630 Cfi complement component factor i Novel U 0.0013511084563050757 -0.24998736170484118 1.0 11935 +57259 Tob2 transducer of ERBB2, 2 Novel N 0.001351083465162219 -0.24998762056227736 1.0 11936 +319148 H3c3 H3 clustered histone 3 Novel U 0.0013509542234900558 -0.24998895924326905 1.0 11937 +67370 Zfp606 zinc finger protein 606 Novel U 0.0013503977565265445 -0.2499947231097842 1.0 11938 +230157 Tmeff1 transmembrane protein with EGF-like and two follistatin-like domains 1 Novel U 0.0013495617636602446 -0.25000338229641156 1.0 11939 +20464 Sim1 single-minded family bHLH transcription factor 1 Novel U 0.0013495150825959153 -0.25000386581734135 1.0 11940 +18526 Pcdh10 protocadherin 10 Novel U 0.0013494735499390005 -0.25000429601123636 1.0 11941 +64945 Cldn12 claudin 12 Novel U 0.0013493632603899608 -0.2500054383867597 1.0 11942 +14204 Il4i1 interleukin 4 induced 1 Novel U 0.0013493156273781189 -0.25000593176793057 1.0 11943 +74004 Jakmip3 janus kinase and microtubule interacting protein 3 Novel U 0.0013488083044130865 -0.250011186602525 1.0 11944 +224805 Aars2 alanyl-tRNA synthetase 2, mitochondrial Novel N 0.0013488020742527267 -0.2500112511343212 1.0 11945 +239845 Gpr156 G protein-coupled receptor 156 Novel N 0.0013487127847426192 -0.25001217599213166 1.0 11946 +245126 Tarm1 T cell-interacting, activating receptor on myeloid cells 1 Novel U 0.0013482447119742569 -0.2500170242744793 1.0 11947 +66479 1700029F12Rik RIKEN cDNA 1700029F12 gene Novel U 0.0013478386547002158 -0.25002123020237543 1.0 11948 +68194 Ndufb4 NADH:ubiquinone oxidoreductase subunit B4 Novel U 0.0013477275800410481 -0.2500223807100437 1.0 11949 +66446 Exosc7 exosome component 7 Novel N 0.0013472818690034752 -0.2500269973703189 1.0 11950 +280287 Kiss1 KiSS-1 metastasis-suppressor Novel U 0.0013471750116212599 -0.25002810419557114 1.0 11951 +244871 Zc3h12c zinc finger CCCH type containing 12C Novel U 0.0013466804255355797 -0.250033227101988 1.0 11952 +17231 Mcpt8 mast cell protease 8 Novel U 0.0013465511966574417 -0.25003456565045956 1.0 11953 +67708 Pcnx4 pecanex homolog 4 Novel U 0.0013456455905607998 -0.2500439458886384 1.0 11954 +68197 Ndufc2 NADH:ubiquinone oxidoreductase subunit C2 Novel N 0.0013452654680469866 -0.2500478831851406 1.0 11955 +319191 H2ac13 H2A clustered histone 13 Novel U 0.001344897964232866 -0.25005168977756626 1.0 11956 +67341 Ascl4 achaete-scute family bHLH transcription factor 4 Novel U 0.0013442931773533886 -0.25005795414018256 1.0 11957 +69694 Tatdn1 TatD DNase domain containing 1 Novel U 0.0013439635760455913 -0.25006136813969365 1.0 11958 +74513 Neto2 neuropilin (NRP) and tolloid (TLL)-like 2 Novel U 0.0013433526148515322 -0.25006769645565746 1.0 11959 +21886 Tle2 transducin-like enhancer of split 2 Novel N 0.0013429795423200372 -0.2500715607286746 1.0 11960 +52906 Ahi1 Abelson helper integration site 1 Novel N 0.0013426957728757114 -0.2500745000032505 1.0 11961 +270156 Nkapd1 NKAP domain containing 1 Novel U 0.0013426016046781404 -0.2500754753943453 1.0 11962 +434423 Dppa5a developmental pluripotency associated 5A Novel U 0.0013417049234970414 -0.25008476318854234 1.0 11963 +70717 Medag mesenteric estrogen dependent adipogenesis Novel U 0.001341690958025622 -0.2500849078424362 1.0 11964 +666747 Trim43b tripartite motif-containing 43B Novel U 0.0013415303254636318 -0.25008657166923276 1.0 11965 +68744 Zfp740 zinc finger protein 740 Novel U 0.0013414067436809671 -0.2500878517252751 1.0 11966 +100043061 Vmn1r256 vomeronasal 1 receptor 256 Novel U 0.0013413750917696656 -0.25008817957473184 1.0 11967 +666187 Pramel49 PRAME like 49 Novel U 0.0013413691212888514 -0.2500882414167758 1.0 11968 +68842 Tulp4 TUB like protein 4 Novel U 0.0013412963386667813 -0.2500889952967827 1.0 11969 +319518 Pdpr pyruvate dehydrogenase phosphatase regulatory subunit Novel U 0.001341151054839986 -0.25009050014188466 1.0 11970 +66086 Cep20 centrosomal protein 20 Novel N 0.0013410897575153516 -0.25009113505755814 1.0 11971 +230967 Cep104 centrosomal protein 104 Novel N 0.001340667565049966 -0.25009550811323583 1.0 11972 +70300 Fuz fuzzy planar cell polarity protein Novel U 0.0013403797690195447 -0.2500984890950581 1.0 11973 +66497 Cmss1 cms small ribosomal subunit 1 Novel U 0.0013401653378327218 -0.2501007101662422 1.0 11974 +66612 Ormdl3 ORM1-like 3 (S. cerevisiae) Novel U 0.001339207184197767 -0.2501106346900955 1.0 11975 +227721 Plpp7 phospholipid phosphatase 7 (inactive) Novel U 0.0013391073168472678 -0.250111669112829 1.0 11976 +14347 Fut7 fucosyltransferase 7 Novel U 0.0013386266278272206 -0.25011664807389683 1.0 11977 +192169 Ufsp2 UFM1-specific peptidase 2 Novel U 0.0013382922388659154 -0.2501201116637656 1.0 11978 +50918 Myadm myeloid-associated differentiation marker Novel U 0.0013378809869573527 -0.2501243713975153 1.0 11979 +380836 Mrs2 MRS2 magnesium transporter Novel N 0.0013375730901848042 -0.2501275605821638 1.0 11980 +277666 Pramel24 PRAME like 24 Novel U 0.0013373258146714049 -0.25013012185380284 1.0 11981 +16820 Lcn3 lipocalin 3 Novel U 0.001337195981769359 -0.2501314666587342 1.0 11982 +73747 Shld1 shieldin complex subunit 1 Novel U 0.0013371594777169308 -0.25013184476650924 1.0 11983 +668017 Speer1b spermatogenesis associated glutamate (E)-rich protein 1B Novel U 0.0013368823602691556 -0.2501347151399235 1.0 11984 +227707 BC005624 cDNA sequence BC005624 Novel N 0.0013364649875609353 -0.2501390382727149 1.0 11985 +67515 Ttc33 tetratricopeptide repeat domain 33 Novel U 0.001336438215436649 -0.2501393155774982 1.0 11986 +17926 Myoc myocilin Novel U 0.0013361055258841752 -0.25014276156494614 1.0 11987 +243833 Zfp128 zinc finger protein 128 Novel U 0.0013357801303557101 -0.25014613200113317 1.0 11988 +230761 Zfp362 zinc finger protein 362 Novel U 0.0013357184553784921 -0.2501467708285197 1.0 11989 +70373 Gpatch2l G patch domain containing 2 like Novel U 0.0013357085521911 -0.2501468734054092 1.0 11990 +20227 Sart1 squamous cell carcinoma antigen recognized by T cells 1 Novel U 0.0013352881013769077 -0.25015122842112103 1.0 11991 +78889 Wsb1 WD repeat and SOCS box-containing 1 Novel U 0.001335254948466341 -0.25015157181787884 1.0 11992 +231932 Gimap7 GTPase, IMAP family member 7 Novel N 0.00133443495451098 -0.2501600652883126 1.0 11993 +30049 Scd3 stearoyl-coenzyme A desaturase 3 Novel U 0.001334276250074403 -0.25016170914364955 1.0 11994 +16644 Kng1 kininogen 1 Novel U 0.0013341501039413682 -0.2501630157611487 1.0 11995 +65256 Asb2 ankyrin repeat and SOCS box-containing 2 Novel U 0.0013338181326880945 -0.2501664543084771 1.0 11996 +56808 Cacna2d2 calcium channel, voltage-dependent, alpha 2/delta subunit 2 Novel N 0.0013334698150951462 -0.2501700621706546 1.0 11997 +30800 Mmp20 matrix metallopeptidase 20 (enamelysin) Novel N 0.0013331198118286015 -0.2501736874929837 1.0 11998 +67893 Tmem86a transmembrane protein 86A Novel U 0.0013321349060660813 -0.25018388911449485 1.0 11999 +73225 Fam118a family with sequence similarity 118, member A Novel U 0.0013308046247493413 -0.250197668124643 1.0 12000 +20592 Kdm5d lysine demethylase 5D Novel N 0.001330606765250919 -0.25019971754682335 1.0 12001 +666329 Gm3317 predicted gene 3317 Novel U 0.001330467221006258 -0.25020116294152234 1.0 12002 +23849 Klf6 Kruppel-like transcription factor 6 Novel U 0.00133029195832083 -0.2502029783066565 1.0 12003 +20564 Slit3 slit guidance ligand 3 Novel U 0.0013302768827721863 -0.2502031344586938 1.0 12004 +21454 Tcp1 t-complex protein 1 Novel U 0.0013302218229754427 -0.2502037047662584 1.0 12005 +66910 Tmem107 transmembrane protein 107 Novel U 0.0013299587068631184 -0.25020643011430044 1.0 12006 +67155 Smarca2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 2 Novel U 0.0013298800005545643 -0.2502072453516571 1.0 12007 +73046 Glrx5 glutaredoxin 5 Novel N 0.0013298700925632083 -0.25020734797830585 1.0 12008 +93674 Nat8f3 N-acetyltransferase 8 (GCN5-related) family member 3 Novel U 0.0013297259865679202 -0.2502088406234678 1.0 12009 +667292 Vmn1r111 vomeronasal 1 receptor 111 Novel U 0.001329614292824474 -0.25020999754359075 1.0 12010 +212198 Wdr25 WD repeat domain 25 Novel U 0.0013293207855451573 -0.2502130376823413 1.0 12011 +74096 Hvcn1 hydrogen voltage-gated channel 1 Novel U 0.0013290317344761401 -0.2502160316638122 1.0 12012 +242594 Fyb2 FYN binding protein 2 Novel U 0.0013288721104035832 -0.25021768504470837 1.0 12013 +13056 Cyb561 cytochrome b-561 Novel N 0.0013285179319666538 -0.2502213536133151 1.0 12014 +330450 Far2 fatty acyl CoA reductase 2 Novel N 0.0013281996579986336 -0.25022465028461316 1.0 12015 +216635 Hbq1a hemoglobin, theta 1A Novel U 0.0013281279017923718 -0.25022539353303874 1.0 12016 +67914 Coq9 coenzyme Q9 Novel N 0.0013276446523258058 -0.25023039901512745 1.0 12017 +71834 Zbtb43 zinc finger and BTB domain containing 43 Novel U 0.0013271716991542387 -0.25023529784853105 1.0 12018 +77110 Gpbp1l1 GC-rich promoter binding protein 1-like 1 Novel U 0.0013271195925867007 -0.25023583756664475 1.0 12019 +12952 Cry1 cryptochrome circadian regulator 1 Novel N 0.0013269504552963663 -0.2502375894851379 1.0 12020 +208426 Iqcj IQ motif containing J Novel U 0.0013268085928272598 -0.25023905889192943 1.0 12021 +223262 Timm8a2 translocase of inner mitochondrial membrane 8A2 Novel U 0.0013259817530667135 -0.25024762327098826 1.0 12022 +23790 Coro1c coronin, actin binding protein 1C Novel U 0.0013259655053049183 -0.25024779156477084 1.0 12023 +319675 Cep295 centrosomal protein 295 Novel U 0.0013252118388697002 -0.25025559801693137 1.0 12024 +319922 Vwc2 von Willebrand factor C domain containing 2 Novel U 0.001325097148668552 -0.25025678597426465 1.0 12025 +664805 Skor2 SKI family transcriptional corepressor 2 Novel U 0.0013250413963856122 -0.2502573634545786 1.0 12026 +241794 Kcng1 potassium voltage-gated channel, subfamily G, member 1 Novel N 0.0013241046260012786 -0.2502670664914248 1.0 12027 +68477 Rmnd5a required for meiotic nuclear division 5 homolog A Novel U 0.0013236956610863887 -0.25027130253656926 1.0 12028 +93790 Nipa2 non imprinted in Prader-Willi/Angelman syndrome 2 homolog (human) Novel U 0.001323089400146877 -0.250277582167451 1.0 12029 +68170 Iftap intraflagellar transport associated protein Novel U 0.0013228471252399489 -0.2502800916429726 1.0 12030 +100043856 Scgb2b18 secretoglobin, family 2B, member 18 Novel U 0.0013227426363576517 -0.2502811739353805 1.0 12031 +171486 Cd99l2 CD99 antigen-like 2 Novel U 0.0013226765857412175 -0.25028185808549425 1.0 12032 +667469 Vmn1r143 vomeronasal 1 receptor 143 Novel U 0.0013226135035594008 -0.2502825114886598 1.0 12033 +353235 Pcdha8 protocadherin alpha 8 Novel U 0.00132260262828879 -0.25028262413435526 1.0 12034 +67755 Ddx47 DEAD box helicase 47 Novel U 0.0013224548230202898 -0.25028415509646756 1.0 12035 +170772 Glcci1 glucocorticoid induced transcript 1 Novel U 0.0013223336771741108 -0.25028540992115983 1.0 12036 +224132 Slc49a4 solute carrier family 49 member 4 Novel N 0.00132200489452598 -0.25028881544102105 1.0 12037 +69745 Pold4 polymerase (DNA-directed), delta 4 Novel N 0.0013218784380289782 -0.25029012527325994 1.0 12038 +56462 Mtch1 mitochondrial carrier 1 Novel U 0.001321584712543202 -0.2502931676721859 1.0 12039 +217935 Dync2i1 dynein 2 intermediate chain 1 Novel U 0.0013212303724331892 -0.25029683791539714 1.0 12040 +102614 Rpp25 ribonuclease P/MRP 25 subunit Novel N 0.0013211117368391527 -0.2502980667389802 1.0 12041 +20365 Serf1 small EDRK-rich factor 1 Novel N 0.0013205721007604222 -0.2503036562717441 1.0 12042 +66266 Eapp E2F-associated phosphoprotein Novel N 0.0013203499011409017 -0.2503059578080987 1.0 12043 +229715 Amigo1 adhesion molecule with Ig like domain 1 Novel U 0.0013202638376807933 -0.25030684925058927 1.0 12044 +68572 Mrpl58 mitochondrial ribosomal protein L58 Novel U 0.001320015234119442 -0.2503094242781054 1.0 12045 +60596 Gucy1a1 guanylate cyclase 1, soluble, alpha 1 Novel U 0.0013197691235475341 -0.25031197348331874 1.0 12046 +71532 Fam217b family with sequence similarity 217, member B Novel U 0.0013191723608490307 -0.2503181547317323 1.0 12047 +76399 Il31 interleukin 31 Novel U 0.001317940830251437 -0.25033091088517784 1.0 12048 +670764 Vmn1r124 vomeronasal 1 receptor 124 Novel U 0.0013175445301877103 -0.25033501574821027 1.0 12049 +67937 Tmem59l transmembrane protein 59-like Novel U 0.0013172602579030628 -0.25033796023118965 1.0 12050 +17067 Ly6c1 lymphocyte antigen 6 family member C1 Novel U 0.0013171373083584418 -0.2503392337385311 1.0 12051 +12022 Barx1 BarH-like homeobox 1 Novel U 0.001316900101997989 -0.2503416907142149 1.0 12052 +56316 Ggcx gamma-glutamyl carboxylase Novel U 0.0013165603982012305 -0.2503452093549746 1.0 12053 +19692 Reg1 regenerating islet-derived 1 Novel U 0.00131581058026915 -0.25035297594446615 1.0 12054 +74443 P4htm prolyl 4-hydroxylase, transmembrane (endoplasmic reticulum) Novel N 0.0013154439106518685 -0.25035677389630834 1.0 12055 +320351 Lyset lysosomal enzyme trafficking factor Novel U 0.0013152327698950108 -0.250358960885327 1.0 12056 +381175 Ccdc68 coiled-coil domain containing 68 Novel N 0.0013145193965632186 -0.2503663499828468 1.0 12057 +109267 Ssc4d scavenger receptor cysteine rich family, 4 domains Novel U 0.0013144981443927537 -0.25036657011212987 1.0 12058 +94191 Adarb2 adenosine deaminase, RNA-specific, B2 Novel U 0.0013144301060041069 -0.2503672748515228 1.0 12059 +74361 4931429L15Rik RIKEN cDNA 4931429L15 gene Novel U 0.0013139616921090868 -0.2503721266672492 1.0 12060 +18422 Ott ovary testis transcribed Novel U 0.001313272688922438 -0.25037926333960675 1.0 12061 +18987 Pou2f2 POU domain, class 2, transcription factor 2 Novel N 0.001312730673090054 -0.25038487752178074 1.0 12062 +67199 Pfdn1 prefoldin 1 Novel U 0.0013121883300471144 -0.25039049509319095 1.0 12063 +15221 Foxd3 forkhead box D3 Novel U 0.0013121354783779383 -0.2503910425290429 1.0 12064 +26910 Figla folliculogenesis specific basic helix-loop-helix Novel N 0.0013114603686476124 -0.2503980352934365 1.0 12065 +13590 Lefty1 left right determination factor 1 Novel U 0.0013110255720664523 -0.25040253890213104 1.0 12066 +18124 Nr4a3 nuclear receptor subfamily 4, group A, member 3 Novel U 0.0013101308875558195 -0.250411806014881 1.0 12067 +380912 Zfp395 zinc finger protein 395 Novel N 0.0013089680728120242 -0.25042385041177173 1.0 12068 +20604 Sst somatostatin Novel N 0.001308806045946027 -0.2504255286807234 1.0 12069 +100038570 Prcd photoreceptor disc component Novel N 0.0013085666208534565 -0.2504280086379616 1.0 12070 +73067 Tmem192 transmembrane protein 192 Novel U 0.001308328694830065 -0.25043047306789046 1.0 12071 +57315 Wdr46 WD repeat domain 46 Novel N 0.0013083144888116722 -0.250430620213362 1.0 12072 +12468 Cct7 chaperonin containing TCP1 subunit 7 Novel U 0.0013083109393263645 -0.2504306569788141 1.0 12073 +100034729 Gm15114 predicted gene 15114 Novel U 0.0013082488878460865 -0.250431299706007 1.0 12074 +100043016 Vmn1r131 vomeronasal 1 receptor 131 Novel U 0.0013070474995788 -0.25044374364618605 1.0 12075 +20383 Srsf3 serine and arginine-rich splicing factor 3 Novel N 0.0013068470684637424 -0.250445819705087 1.0 12076 +15437 Hoxd8 homeobox D8 Novel N 0.0013063857091874021 -0.25045059844930495 1.0 12077 +12554 Cdh13 cadherin 13 Novel U 0.0013063047348780444 -0.2504514371785394 1.0 12078 +24132 Zfp53 zinc finger protein 53 Novel U 0.001305041631279001 -0.250464520364096 1.0 12079 +18641 Pfkl phosphofructokinase, liver, B-type Novel N 0.0013047736549318318 -0.2504672960542907 1.0 12080 +69815 Krtcap3 keratinocyte associated protein 3 Novel U 0.0013047280148964122 -0.2504677687922773 1.0 12081 +74354 Lrguk leucine-rich repeats and guanylate kinase domain containing Novel U 0.0013045552960013157 -0.25046955780891483 1.0 12082 +16538 Kcns1 K+ voltage-gated channel, subfamily S, 1 Novel N 0.0013042647841855633 -0.25047256692075237 1.0 12083 +117198 Ivns1abp influenza virus NS1A binding protein Novel U 0.001303712420885231 -0.25047828828165924 1.0 12084 +227325 Dner delta/notch-like EGF repeat containing Novel U 0.0013035305125688758 -0.2504801724820201 1.0 12085 +72568 Lin9 lin-9 DREAM MuvB core complex component Novel U 0.001303390362181955 -0.25048162415512065 1.0 12086 +319822 Smyd4 SET and MYND domain containing 4 Novel N 0.001303316950543258 -0.250482384550461 1.0 12087 +232959 Vmn1r178 vomeronasal 1 receptor 178 Novel U 0.0013027014648904361 -0.25048875973061996 1.0 12088 +218544 Sgtb small glutamine-rich tetratricopeptide repeat (TPR)-containing, beta Novel U 0.001302696212132048 -0.25048881413851865 1.0 12089 +21399 Tcea1 transcription elongation factor A (SII) 1 Novel N 0.001301749003021052 -0.2504986252993525 1.0 12090 +319263 Pcmtd1 protein-L-isoaspartate (D-aspartate) O-methyltransferase domain containing 1 Novel N 0.0013016327750450397 -0.25049982918490726 1.0 12091 +22018 Tpo thyroid peroxidase Novel U 0.001301593196500226 -0.2505002391381734 1.0 12092 +668727 Mrgpra2a MAS-related GPR, member A2A Novel U 0.0013015329473994135 -0.250500863196379 1.0 12093 +66707 Nkapl NFKB activating protein-like Novel U 0.0013012583136033425 -0.2505037078442106 1.0 12094 +225888 Kmt5b lysine methyltransferase 5B Novel U 0.0013012000095489753 -0.2505043117556891 1.0 12095 +108168152 Gm8126 predicted gene 8126 Novel U 0.001301165296201289 -0.25050467131540327 1.0 12096 +70134 Misp3 MISP family member 3 Novel U 0.0013003448246446901 -0.25051316973281496 1.0 12097 +19361 Rad51 RAD51 recombinase Novel U 0.001300220424383635 -0.25051445826662955 1.0 12098 +237759 Col23a1 collagen, type XXIII, alpha 1 Novel U 0.0013001629305834169 -0.2505150537855222 1.0 12099 +93882 Pcdhb11 protocadherin beta 11 Novel U 0.0013001422912627986 -0.2505152675669267 1.0 12100 +100041102 Pramel42 PRAME like 42 Novel U 0.0013001302441483778 -0.2505153923505418 1.0 12101 +217119 Xylt2 xylosyltransferase II Novel U 0.001300058981828191 -0.2505161304833117 1.0 12102 +116621581 Derpc DERPC proline and glycine rich nuclear protein Novel U 0.0012993685054978727 -0.250523282414443 1.0 12103 +263764 Creg2 cellular repressor of E1A-stimulated genes 2 Novel U 0.0012989208874618413 -0.25052791882734554 1.0 12104 +22295 Cdh23 cadherin related 23 (otocadherin) Novel U 0.001298586409825672 -0.2505313833357056 1.0 12105 +67402 Txndc8 thioredoxin domain containing 8 Novel U 0.0012984668913388463 -0.2505326213042632 1.0 12106 +50759 Fbxo16 F-box protein 16 Novel U 0.0012982643756651033 -0.2505347189549545 1.0 12107 +635702 Naaladl2 N-acetylated alpha-linked acidic dipeptidase-like 2 Novel U 0.001297954560098335 -0.2505379280144104 1.0 12108 +278180 Vsig4 V-set and immunoglobulin domain containing 4 Novel U 0.0012972362402585763 -0.25054536834769714 1.0 12109 +328370 Rft1 RFT1 homolog Novel N 0.001297094138456626 -0.2505468402334904 1.0 12110 +242736 Pramel12 PRAME like 12 Novel U 0.0012970433087711143 -0.250547366725702 1.0 12111 +104458 Rars1 arginyl-tRNA synthetase 1 Novel N 0.0012968945269351713 -0.25054890780306777 1.0 12112 +214597 Sidt2 SID1 transmembrane family, member 2 Novel N 0.0012967433428058735 -0.25055047376330913 1.0 12113 +68565 Mrps18a mitochondrial ribosomal protein S18A Novel U 0.0012965106469531727 -0.2505528840193019 1.0 12114 +27379 Tcl1b1 T cell leukemia/lymphoma 1B, 1 Novel U 0.0012964567252040577 -0.2505534425390067 1.0 12115 +192976 Lrrc75a leucine rich repeat containing 75A Novel U 0.0012961549076472298 -0.2505565687553386 1.0 12116 +76856 Catsper3 cation channel, sperm associated 3 Novel U 0.0012954747949738088 -0.25056361334005234 1.0 12117 +71907 Serpina9 serine (or cysteine) peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 9 Novel U 0.0012953835891165984 -0.25056455804732314 1.0 12118 +26459 Slc27a5 solute carrier family 27 (fatty acid transporter), member 5 Novel N 0.001294989486940022 -0.2505686401447127 1.0 12119 +67530 Uqcrb ubiquinol-cytochrome c reductase binding protein Novel U 0.0012949477973864575 -0.25056907196373807 1.0 12120 +381142 Arl14epl ADP-ribosylation factor-like 14 effector protein-like Novel U 0.0012947605835775828 -0.25057101111821606 1.0 12121 +432486 Gnptab N-acetylglucosamine-1-phosphate transferase, alpha and beta subunits Novel U 0.0012947221409526366 -0.2505714093056615 1.0 12122 +76156 Fam131b family with sequence similarity 131, member B Novel U 0.0012946573522757251 -0.2505720803846472 1.0 12123 +11595 Acan aggrecan Novel U 0.0012945049256875977 -0.2505736592142362 1.0 12124 +66960 Mindy3 MINDY lysine 48 deubiquitinase 3 Novel U 0.0012942104969077466 -0.2505767088978591 1.0 12125 +99512 Wdr47 WD repeat domain 47 Novel U 0.0012940339779183695 -0.2505785372757483 1.0 12126 +71223 Gpr15 G protein-coupled receptor 15 Novel U 0.0012940017028378837 -0.250578871579971 1.0 12127 +73813 Fam83e family with sequence similarity 83, member E Novel U 0.0012935334932065764 -0.2505837212799405 1.0 12128 +15376 Foxa2 forkhead box A2 Novel U 0.0012933219515038326 -0.25058591242194345 1.0 12129 +320538 Ubn2 ubinuclein 2 Novel U 0.0012931949354670139 -0.25058722804987743 1.0 12130 +22025 Nr2c1 nuclear receptor subfamily 2, group C, member 1 Novel N 0.001293014475100626 -0.2505890972524201 1.0 12131 +11419 Asic1 acid-sensing ion channel 1 Novel U 0.0012922243216089088 -0.25059728163631245 1.0 12132 +20587 Smarcb1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily b, member 1 Novel U 0.0012921663700706067 -0.2505978818964411 1.0 12133 +15254 Hint1 histidine triad nucleotide binding protein 1 Novel N 0.001291711844285552 -0.250602589859581 1.0 12134 +64051 Sv2a synaptic vesicle glycoprotein 2a Novel U 0.0012915217079617941 -0.2506045592853721 1.0 12135 +17764 Mtf1 metal response element binding transcription factor 1 Novel N 0.0012912287051772794 -0.25060759419858214 1.0 12136 +224697 Adamts10 ADAM metallopeptidase with thrombospondin type 1 motif 10 Novel U 0.0012912189556264636 -0.250607695184109 1.0 12137 +97908 H3c8 H3 clustered histone 8 Novel U 0.0012910081494797207 -0.2506098787072471 1.0 12138 +16510 Kcnh1 potassium voltage-gated channel, subfamily H (eag-related), member 1 Novel U 0.0012909331116715873 -0.25061065594639703 1.0 12139 +225215 Rsl24d1 ribosomal L24 domain containing 1 Novel U 0.0012903834624382268 -0.2506163491950874 1.0 12140 +22314 Vmn2r129 vomeronasal 2, receptor 129 Novel U 0.0012898970960675009 -0.25062138696196695 1.0 12141 +21453 Tcof1 treacle ribosome biogenesis factor 1 Novel U 0.0012892143200431544 -0.25062845913358206 1.0 12142 +107723 Slc12a6 solute carrier family 12, member 6 Novel U 0.0012888182447340682 -0.2506325616686133 1.0 12143 +27225 Ddx24 DEAD box helicase 24 Novel U 0.0012884344812938394 -0.25063653667771163 1.0 12144 +14836 Gsc goosecoid homeobox Novel U 0.0012881444772402126 -0.25063954053016574 1.0 12145 +320581 Idi2 isopentenyl-diphosphate delta isomerase 2 Novel U 0.0012880299802880222 -0.25064072648583263 1.0 12146 +100040233 Prss3l serine protease 3 like Novel U 0.0012878440930331005 -0.2506426518999084 1.0 12147 +433809 Rnf207 ring finger protein 207 Novel N 0.0012877402932001754 -0.25064372705516563 1.0 12148 +27140 Tlx3 T cell leukemia, homeobox 3 Novel U 0.001287647092783775 -0.25064469242201487 1.0 12149 +69731 Gemin7 gem nuclear organelle associated protein 7 Novel N 0.0012875010839965928 -0.25064620477623273 1.0 12150 +27376 Slc25a10 solute carrier family 25 (mitochondrial carrier, dicarboxylate transporter), member 10 Novel N 0.0012870425146177273 -0.25065095462278436 1.0 12151 +353204 Aldoart1 aldolase 1 A, retrogene 1 Novel U 0.0012859554492060912 -0.2506622144105828 1.0 12152 +18682 Phkg1 phosphorylase kinase gamma 1 Novel U 0.0012856540967869784 -0.2506653358090335 1.0 12153 +100039585 Gm14819 predicted gene 14819 Novel U 0.001285647536001413 -0.2506654037654347 1.0 12154 +67742 Samsn1 SAM domain, SH3 domain and nuclear localization signals, 1 Novel U 0.0012853796767308696 -0.2506681782429536 1.0 12155 +195646 Hs3st2 heparan sulfate (glucosamine) 3-O-sulfotransferase 2 Novel N 0.0012851034170678443 -0.25067103973146165 1.0 12156 +245007 Zbtb38 zinc finger and BTB domain containing 38 Novel N 0.001284986277010232 -0.25067225306432767 1.0 12157 +13170 Dbp D site albumin promoter binding protein Novel N 0.0012847490960196577 -0.2506747097772311 1.0 12158 +171194 Vmn1r4 vomeronasal 1 receptor 4 Novel U 0.0012846941243336695 -0.2506752791721475 1.0 12159 +18938 Ppp1r14b protein phosphatase 1, regulatory inhibitor subunit 14B Novel U 0.0012843841535739508 -0.2506784898390869 1.0 12160 +78416 Rnase6 ribonuclease, RNase A family, 6 Novel N 0.0012841513103222274 -0.250680901621834 1.0 12161 +629079 Vmn2r56 vomeronasal 2, receptor 56 Novel U 0.0012837235014199729 -0.25068533285238004 1.0 12162 +56626 Poll polymerase (DNA directed), lambda Novel N 0.0012835949514757024 -0.2506866643684769 1.0 12163 +665276 Gm20772 predicted gene, 20772 Novel U 0.0012835010951306137 -0.250687636529414 1.0 12164 +69260 Ing2 inhibitor of growth family, member 2 Novel N 0.0012833590582940488 -0.25068910774229797 1.0 12165 +108138 Xrcc4 X-ray repair complementing defective repair in Chinese hamster cells 4 Novel U 0.0012832928888299841 -0.25068979312343154 1.0 12166 +18301 Fxyd5 FXYD domain-containing ion transport regulator 5 Novel U 0.001283157653880615 -0.2506911938825915 1.0 12167 +622480 Spocd1 SPOC domain containing 1 Novel U 0.0012829033863314863 -0.25069382757750674 1.0 12168 +109910 Zfp91 zinc finger protein 91 Novel U 0.0012828475279729437 -0.2506944061565483 1.0 12169 +12964 Cryga crystallin, gamma A Novel U 0.0012827784222351596 -0.25069512195150856 1.0 12170 +666209 Pramel54 PRAME like 54 Novel U 0.0012826069694152752 -0.2506968978541807 1.0 12171 +78267 Klhdc8b kelch domain containing 8B Novel U 0.0012823339892925052 -0.2506997253733186 1.0 12172 +626359 Wdr93 WD repeat domain 93 Novel U 0.0012818862109850665 -0.25070436344630714 1.0 12173 +100039681 Zcwpw2 zinc finger, CW type with PWWP domain 2 Novel U 0.0012816697167811547 -0.2507066058861544 1.0 12174 +52398 Septin11 septin 11 Novel U 0.001281399812119512 -0.25070940154976706 1.0 12175 +435529 Adgrf2 adhesion G protein-coupled receptor F2 Novel U 0.0012811544583228075 -0.25071194291632776 1.0 12176 +13046 Celf1 CUGBP, Elav-like family member 1 Novel N 0.0012809607900373238 -0.25071394892606225 1.0 12177 +20441 St3gal3 ST3 beta-galactoside alpha-2,3-sialyltransferase 3 Novel U 0.001280651241094313 -0.25071715522383814 1.0 12178 +104570 Ppp4r3b protein phosphatase 4 regulatory subunit 3B Novel N 0.0012799053824787822 -0.250724880802859 1.0 12179 +68970 Dcaf12 DDB1 and CUL4 associated factor 12 Novel U 0.0012798998066808147 -0.25072493855679107 1.0 12180 +74222 Septin14 septin 14 Novel N 0.0012796924467364924 -0.25072708638427776 1.0 12181 +268566 Gphn gephyrin Novel U 0.0012793170286829626 -0.250730974952135 1.0 12182 +57754 Cend1 cell cycle exit and neuronal differentiation 1 Novel U 0.0012791574861954291 -0.2507326274879762 1.0 12183 +12300 Cacng2 calcium channel, voltage-dependent, gamma subunit 2 Novel N 0.0012788754379971692 -0.25073554893394195 1.0 12184 +231296 Lrrc66 leucine rich repeat containing 66 Novel U 0.0012787007820529155 -0.250737358014471 1.0 12185 +80707 Wwox WW domain-containing oxidoreductase Novel U 0.0012784430689525988 -0.25074002739829226 1.0 12186 +15936 Ier2 immediate early response 2 Novel N 0.0012784034539266638 -0.2507404377294286 1.0 12187 +19142 Prss12 serine protease 12 neurotrypsin (motopsin) Novel N 0.0012782856785094922 -0.250741657643328 1.0 12188 +232491 Pyroxd1 pyridine nucleotide-disulphide oxidoreductase domain 1 Novel U 0.0012774738721960687 -0.25075006630643576 1.0 12189 +67897 Rnmt RNA (guanine-7-) methyltransferase Novel N 0.0012773918185410968 -0.2507509162154966 1.0 12190 +30840 Fbxl6 F-box and leucine-rich repeat protein 6 Novel N 0.0012768223357673446 -0.25075681489934637 1.0 12191 +70897 Garin2 golgi associated RAB2 interactor 2 Novel U 0.0012760135192905102 -0.250765192593825 1.0 12192 +497114 Defa23 defensin, alpha, 23 Novel U 0.001275634970021246 -0.25076911359471193 1.0 12193 +243371 Lrrc61 leucine rich repeat containing 61 Novel U 0.0012756245081072802 -0.25076922195887286 1.0 12194 +236904 Klhl15 kelch-like 15 Novel U 0.0012748278693974805 -0.25077747351644086 1.0 12195 +68235 Mturn maturin, neural progenitor differentiation regulator homolog (Xenopus) Novel U 0.0012747222716903847 -0.25077856729401965 1.0 12196 +66861 Dnajc10 DnaJ heat shock protein family (Hsp40) member C10 Novel U 0.0012746273211769559 -0.2507795507883164 1.0 12197 +66368 Rtca RNA 3'-terminal phosphate cyclase Novel U 0.0012741121361428312 -0.2507848870579641 1.0 12198 +70044 Tut1 terminal uridylyl transferase 1, U6 snRNA-specific Novel N 0.001273563686394243 -0.25079056788243065 1.0 12199 +22591 Xpc xeroderma pigmentosum, complementation group C Novel U 0.0012734577136920052 -0.25079166554419674 1.0 12200 +17172 Ascl1 achaete-scute family bHLH transcription factor 1 Novel U 0.001272787586027861 -0.2507986067045127 1.0 12201 +15116 Has1 hyaluronan synthase 1 Novel U 0.0012727592564641872 -0.25079890014120193 1.0 12202 +12576 Cdkn1b cyclin dependent kinase inhibitor 1B Novel U 0.0012723340476097492 -0.2508033044405382 1.0 12203 +68348 Serpina1f serine (or cysteine) peptidase inhibitor, clade A, member 1F Novel U 0.001271958447929038 -0.25080719488968384 1.0 12204 +100043757 Zfp831 zinc finger protein 831 Novel U 0.0012716896208249647 -0.2508099793919906 1.0 12205 +105450 Mmrn2 multimerin 2 Novel U 0.001271520830309671 -0.2508117277185994 1.0 12206 +68802 Mypn myopalladin Novel U 0.001270948936318435 -0.2508176513777606 1.0 12207 +667067 Vmn1r91 vomeronasal 1 receptor 91 Novel U 0.0012709284557734805 -0.25081786351457197 1.0 12208 +252909 Vmn1r85 vomeronasal 1 receptor 85 Novel U 0.0012708584567687694 -0.25081858856196165 1.0 12209 +100041688 Defa35 defensin, alpha, 35 Novel U 0.001270797088371103 -0.2508192242138073 1.0 12210 +14461 Gata2 GATA binding protein 2 Novel U 0.0012694483970621343 -0.25083319391404973 1.0 12211 +100043101 Vmn1r168 vomeronasal 1 receptor 168 Novel U 0.0012693898081923807 -0.25083380077563666 1.0 12212 +110893 Slc8a3 solute carrier family 8 (sodium/calcium exchanger), member 3 Novel N 0.001269202091386497 -0.2508357451401412 1.0 12213 +102182 Prmt9 protein arginine methyltransferase 9 Novel N 0.0012691881669340958 -0.2508358893691614 1.0 12214 +68075 Lurap1 leucine rich adaptor protein 1 Novel U 0.0012688550465479833 -0.25083933981917 1.0 12215 +17385 Mmp11 matrix metallopeptidase 11 Novel U 0.0012687270584815838 -0.2508406655153544 1.0 12216 +66065 Hsd17b14 hydroxysteroid (17-beta) dehydrogenase 14 Novel N 0.001268645197524626 -0.2508415134284555 1.0 12217 +27045 Nit1 nitrilase 1 Novel U 0.0012685962661048659 -0.25084202025849284 1.0 12218 +73666 Thoc3 THO complex 3 Novel N 0.0012675996207472306 -0.2508523434783443 1.0 12219 +26913 Gprin1 G protein-regulated inducer of neurite outgrowth 1 Novel U 0.0012673726358143666 -0.25085469458081716 1.0 12220 +56191 Tro trophinin Novel U 0.0012671402598816279 -0.25085710152308954 1.0 12221 +268469 Zfp652 zinc finger protein 652 Novel U 0.0012669677451197414 -0.25085888842532206 1.0 12222 +12589 Ift81 intraflagellar transport 81 Novel N 0.0012668680594740997 -0.2508599209659626 1.0 12223 +66622 Ubr7 ubiquitin protein ligase E3 component n-recognin 7 (putative) Novel U 0.0012664563786585214 -0.2508641851423171 1.0 12224 +16522 Kcnj6 potassium inwardly-rectifying channel, subfamily J, member 6 Novel U 0.0012657201248205572 -0.25087181123536767 1.0 12225 +381628 Adgrf3 adhesion G protein-coupled receptor F3 Novel N 0.0012654864671777224 -0.2508742314535511 1.0 12226 +70696 Magea9 MAGE family member A9 Novel U 0.001265357998115939 -0.25087556213186984 1.0 12227 +234374 Ddx49 DEAD box helicase 49 Novel N 0.0012647861814669677 -0.2508814849899224 1.0 12228 +54451 Cpsf3 cleavage and polyadenylation specificity factor 3 Novel U 0.0012647460678238361 -0.2508819004857193 1.0 12229 +234069 Pcid2 PCI domain containing 2 Novel N 0.0012643104001026121 -0.250886413117654 1.0 12230 +13000 Csnk2a2 casein kinase 2, alpha prime polypeptide Novel N 0.0012632825336786058 -0.2508970597242845 1.0 12231 +234797 6430548M08Rik RIKEN cDNA 6430548M08 gene Novel U 0.0012631127545476362 -0.2508988182909419 1.0 12232 +67498 Kcnv1 potassium channel, subfamily V, member 1 Novel N 0.0012631016634723554 -0.25089893317193507 1.0 12233 +69125 Cnot8 CCR4-NOT transcription complex, subunit 8 Novel N 0.0012624347997795744 -0.25090584052414294 1.0 12234 +20586 Smarca4 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 4 Novel U 0.0012623195629151017 -0.25090703414379695 1.0 12235 +235534 Pxylp1 2-phosphoxylose phosphatase 1 Novel N 0.001262275645132168 -0.25090748904274884 1.0 12236 +74168 Zdhhc16 zinc finger, DHHC domain containing 16 Novel N 0.0012619355060420603 -0.2509110121922627 1.0 12237 +100503879 Gm5901 predicted gene 5901 Novel U 0.001261935055429932 -0.2509110168596883 1.0 12238 +231842 Amz1 archaelysin family metallopeptidase 1 Novel U 0.0012618800884551132 -0.25091158620580656 1.0 12239 +94061 Mrpl1 mitochondrial ribosomal protein L1 Novel U 0.001261680185274351 -0.2509136567963814 1.0 12240 +56361 Pus1 pseudouridine synthase 1 Novel U 0.001261542718487733 -0.25091508067283824 1.0 12241 +56072 Lgals12 lectin, galactose binding, soluble 12 Novel N 0.0012610840810593667 -0.2509198312242444 1.0 12242 +242100 Pglyrp3 peptidoglycan recognition protein 3 Novel U 0.0012609637331449809 -0.2509210777839853 1.0 12243 +66671 Ccnh cyclin H Novel U 0.0012608629550423353 -0.2509221216402597 1.0 12244 +106821 Oard1 O-acyl-ADP-ribose deacylase 1 Novel N 0.0012602556126424407 -0.25092841247287245 1.0 12245 +69761 Aoc1l2 amine oxidase copper containing 1-like 2 Novel U 0.0012594723711524286 -0.25093652526247834 1.0 12246 +107751 Drgx dorsal root ganglia homeobox Novel U 0.0012591632785613797 -0.2509397268333755 1.0 12247 +13114 Cyp3a16 cytochrome P450, family 3, subfamily a, polypeptide 16 Novel U 0.0012582197432389067 -0.25094949994122867 1.0 12248 +330390 Mdfic2 MyoD family inhibitor domain containing 2 Novel U 0.001257908571015854 -0.2509527230528858 1.0 12249 +26961 Rpl8 ribosomal protein L8 Novel U 0.0012575008357552913 -0.25095694636131116 1.0 12250 +14735 Gpc4 glypican 4 Novel U 0.0012574784108930403 -0.25095717863729716 1.0 12251 +209011 Sirt7 sirtuin 7 Novel U 0.0012573694521691874 -0.25095830722817697 1.0 12252 +16158 Il11ra2 interleukin 11 receptor subunit alpha 2 Novel U 0.0012570265929950928 -0.2509618585522314 1.0 12253 +106205 Zc3h7a zinc finger CCCH type containing 7 A Novel N 0.0012567791099081984 -0.2509644219739099 1.0 12254 +14281 Fos FBJ osteosarcoma oncogene Novel U 0.0012564767727176254 -0.25096755357259104 1.0 12255 +207209 Ccdc154 coiled-coil domain containing 154 Novel U 0.001256028611062987 -0.25097219561627726 1.0 12256 +73674 Wdr75 WD repeat domain 75 Novel N 0.0012558993459429683 -0.25097353454014104 1.0 12257 +83380 Prp2 proline rich protein 2 Novel U 0.0012551775097094224 -0.250981011296119 1.0 12258 +328417 Parp4 poly (ADP-ribose) polymerase family, member 4 Novel N 0.0012550115776835274 -0.25098273001458854 1.0 12259 +14794 Spsb2 splA/ryanodine receptor domain and SOCS box containing 2 Novel U 0.001254872286365199 -0.2509841727894848 1.0 12260 +114889 Vsx1 visual system homeobox 1 Novel U 0.0012548414325227876 -0.25098449237257026 1.0 12261 +237847 Rtn4rl1 reticulon 4 receptor-like 1 Novel U 0.0012540603189575728 -0.250992583121201 1.0 12262 +209683 Ttc28 tetratricopeptide repeat domain 28 Novel N 0.0012540230024366621 -0.2509929696444979 1.0 12263 +381970 Scgb2b2 secretoglobin, family 2B, member 2 Novel U 0.0012538539658993775 -0.2509947205193943 1.0 12264 +108168395 Gm45871 predicted gene 45871 Novel U 0.0012538445796520744 -0.2509948177418353 1.0 12265 +12606 Cebpa CCAAT/enhancer binding protein alpha Novel U 0.0012531798183803096 -0.2510017033172354 1.0 12266 +103988 Gck glucokinase Novel U 0.0012524041561622844 -0.2510097376009912 1.0 12267 +66868 Mfsd1 major facilitator superfamily domain containing 1 Novel U 0.0012520371934038592 -0.2510135385891797 1.0 12268 +12537 Cdk11b cyclin dependent kinase 11B Novel U 0.0012519251992528274 -0.25101469862091447 1.0 12269 +19668 Rbpjl recombination signal binding protein for immunoglobulin kappa J region-like Novel N 0.0012516602853354893 -0.2510174425905617 1.0 12270 +68566 Caly calcyon neuron-specific vesicular protein Novel U 0.0012515625642330007 -0.2510184547825288 1.0 12271 +66477 Atp5mk ATP synthase membrane subunit k Novel U 0.0012511640419743363 -0.2510225826629834 1.0 12272 +70396 Asnsd1 asparagine synthetase domain containing 1 Novel U 0.0012508065781120204 -0.2510262852619183 1.0 12273 +104394 E2f4 E2F transcription factor 4 Novel N 0.0012505808606164276 -0.2510286232363176 1.0 12274 +319655 Podxl2 podocalyxin-like 2 Novel U 0.0012501167192745992 -0.25103343079707835 1.0 12275 +100041480 Myef2l myelin expression factor 2 like Novel U 0.0012491568081281507 -0.2510433735251779 1.0 12276 +100862245 LOC100862245 PRAME family member 8-like Novel U 0.0012489305829670515 -0.25104571675795984 1.0 12277 +20745 Spock1 sparc/osteonectin, cwcv and kazal-like domains proteoglycan 1 Novel U 0.0012484953174734198 -0.2510502252236343 1.0 12278 +71829 Ddi1 DNA-damage inducible 1 Novel U 0.0012481568555490058 -0.25105373100112105 1.0 12279 +67015 Ccdc91 coiled-coil domain containing 91 Novel U 0.0012477075096386217 -0.2510583853112894 1.0 12280 +67996 Srsf6 serine and arginine-rich splicing factor 6 Novel N 0.001247643860358765 -0.25105904458843775 1.0 12281 +54420 Cldn8 claudin 8 Novel U 0.001247551333008754 -0.25106000298368747 1.0 12282 +319187 H2bc15 H2B clustered histone 15 Novel U 0.0012473653946979831 -0.25106192892659807 1.0 12283 +233187 Lim2 lens intrinsic membrane protein 2 Novel N 0.0012472054273207174 -0.25106358586343314 1.0 12284 +18663 Pgk2 phosphoglycerate kinase 2 Novel N 0.0012469842389582284 -0.25106587692522064 1.0 12285 +100041712 LOC100041712 PRAME family member 8-like Novel U 0.0012469629992855693 -0.25106609692505183 1.0 12286 +16785 Rpsa ribosomal protein SA Novel U 0.0012462001641621453 -0.2510739983461834 1.0 12287 +66204 Acyp1 acylphosphatase 1 Novel U 0.00124619217950101 -0.2510740810510409 1.0 12288 +319177 H2bc1 H2B clustered histone 1 Novel N 0.0012461573643017872 -0.25107444166573 1.0 12289 +14071 F9 coagulation factor IX Novel U 0.0012461249739257694 -0.25107477716418 1.0 12290 +110135 Fgb fibrinogen beta chain Novel U 0.0012456536483189166 -0.2510796591393218 1.0 12291 +667273 Vmn1r115 vomeronasal 1 receptor 115 Novel U 0.0012455698099290411 -0.2510805275346081 1.0 12292 +319945 Flad1 flavin adenine dinucleotide synthetase 1 Novel N 0.0012454421075163485 -0.25108185027200075 1.0 12293 +77805 Esco1 establishment of sister chromatid cohesion N-acetyltransferase 1 Novel U 0.0012453491796769823 -0.2510828128155061 1.0 12294 +100043326 Scgb2b3 secretoglobin, family 2B, member 3 Novel U 0.0012452933801544162 -0.25108339078512654 1.0 12295 +74103 Nebl nebulette Novel U 0.0012451400191048965 -0.25108497929383594 1.0 12296 +56710 Brinp1 bone morphogenic protein/retinoic acid inducible neural specific 1 Novel N 0.0012447951004927107 -0.2510885519494824 1.0 12297 +73542 Tssk5 testis-specific serine kinase 5 Novel U 0.0012447382034440407 -0.25108914128724213 1.0 12298 +74116 Pi16 peptidase inhibitor 16 Novel U 0.001244525721973258 -0.25109134216333157 1.0 12299 +76719 Kansl1 KAT8 regulatory NSL complex subunit 1 Novel U 0.0012443414566973572 -0.25109325077700195 1.0 12300 +404289 Vmn1r181 vomeronasal 1 receptor 181 Novel U 0.001244332292073626 -0.25109334570387326 1.0 12301 +106722 Mpig6b megakaryocyte and platelet inhibitory receptor G6b Novel N 0.0012440094744170104 -0.25109668943854846 1.0 12302 +66142 Cox7b cytochrome c oxidase subunit 7B Novel U 0.0012437957828449584 -0.251098902848827 1.0 12303 +78248 Armcx1 armadillo repeat containing, X-linked 1 Novel U 0.0012435832999389647 -0.2511011037397823 1.0 12304 +171233 Vmn1r235 vomeronasal 1 receptor 235 Novel U 0.0012434191306014192 -0.25110280420038383 1.0 12305 +72157 Pgm1 phosphoglucomutase 1 Novel U 0.0012432676315005564 -0.2511043734230903 1.0 12306 +68038 Chid1 chitinase domain containing 1 Novel N 0.0012431816639656432 -0.2511052638719909 1.0 12307 +108689 Stn1 STN1, CST complex subunit Novel U 0.001242711889272032 -0.2511101297828243 1.0 12308 +268890 Lsamp limbic system-associated membrane protein Novel N 0.001242317528887561 -0.25111421455472277 1.0 12309 +66895 Pxdc1 PX domain containing 1 Novel U 0.0012420342496222907 -0.2511171487520401 1.0 12310 +27886 Ess2 ess-2 splicing factor Novel U 0.0012418557856139188 -0.25111899727637216 1.0 12311 +11837 Rplp0 ribosomal protein lateral stalk subunit P0 Novel U 0.001241721950219117 -0.2511203835389919 1.0 12312 +50540 Igbp1b immunoglobulin (CD79A) binding protein 1b Novel U 0.001241328869390198 -0.251124455057296 1.0 12313 +56809 Gmeb1 glucocorticoid modulatory element binding protein 1 Novel U 0.0012412549735452665 -0.25112522046802865 1.0 12314 +18048 Klk1b4 kallikrein 1-related pepidase b4 Novel U 0.0012410061001392702 -0.2511277982905866 1.0 12315 +67097 Rps10 ribosomal protein S10 Novel U 0.0012407806401899544 -0.2511301335973301 1.0 12316 +435953 Vmn1r120 vomeronasal 1 receptor 120 Novel U 0.001240370124874722 -0.2511343857014703 1.0 12317 +15168 Hcn3 hyperpolarization-activated, cyclic nucleotide-gated K+ 3 Novel N 0.001240357285182143 -0.2511345186945839 1.0 12318 +17347 Mknk2 MAP kinase-interacting serine/threonine kinase 2 Novel N 0.0012402467811300894 -0.2511356632919225 1.0 12319 +100861668 Potefam3b POTE ankyrin domain family member 3B Novel U 0.0012397667422663669 -0.2511406355186925 1.0 12320 +23794 Adamts5 ADAM metallopeptidase with thrombospondin type 1 motif 5 Novel U 0.00123958141927279 -0.2511425550881678 1.0 12321 +54383 Phc2 polyhomeotic 2 Novel U 0.0012391337870733261 -0.2511471916477747 1.0 12322 +270627 Taf1 TATA-box binding protein associated factor 1 Novel U 0.00123891007419063 -0.25114950885845955 1.0 12323 +209558 Enpp3 ectonucleotide pyrophosphatase/phosphodiesterase 3 Novel N 0.0012386035625155437 -0.25115268369631405 1.0 12324 +77767 Ermn ermin, ERM-like protein Novel U 0.0012381840525155785 -0.25115702896710307 1.0 12325 +13077 Cyp1a2 cytochrome P450, family 1, subfamily a, polypeptide 2 Novel N 0.0012380226780931754 -0.25115870047806543 1.0 12326 +77036 1700109H08Rik RIKEN cDNA 1700109H08 gene Novel U 0.0012380219988451975 -0.2511587075136936 1.0 12327 +56055 Gtpbp2 GTP binding protein 2 Novel U 0.0012379072485700757 -0.25115989609327116 1.0 12328 +171277 Vmn1r211 vomeronasal 1 receptor 211 Novel U 0.0012375586409108857 -0.25116350695994516 1.0 12329 +18648 Pgam1 phosphoglycerate mutase 1 Novel N 0.0012373998737005446 -0.2511651514654907 1.0 12330 +319555 Nwd1 NACHT and WD repeat domain containing 1 Novel U 0.0012371604875116072 -0.2511676310197663 1.0 12331 +100042784 Prdm11 PR domain containing 11 Novel N 0.0012370705163985227 -0.251168562937598 1.0 12332 +103850 Nt5m 5',3'-nucleotidase, mitochondrial Novel N 0.0012366872626361585 -0.25117253266746975 1.0 12333 +66300 Inafm1 InaF motif containing 1 Novel U 0.001236327501620963 -0.25117625906023866 1.0 12334 +107526 Gimap4 GTPase, IMAP family member 4 Novel U 0.0012361590261260758 -0.25117800412387636 1.0 12335 +67945 Rpl41 ribosomal protein L41 Novel U 0.0012360415902349549 -0.2511792205209761 1.0 12336 +69453 Prss56 serine protease 56 Novel N 0.0012353787213741135 -0.2511860864948461 1.0 12337 +71886 2310002L09Rik RIKEN cDNA 2310002L09 gene Novel U 0.0012353690178483177 -0.25118618700364725 1.0 12338 +72960 Top1mt DNA topoisomerase 1, mitochondrial Novel U 0.001235331974168628 -0.25118657070086375 1.0 12339 +14373 G0s2 G0/G1 switch gene 2 Novel U 0.0012351646721256093 -0.25118830360992556 1.0 12340 +72962 Tymp thymidine phosphorylase Novel U 0.0012350589933648073 -0.25118939822705594 1.0 12341 +70383 Cox10 heme A:farnesyltransferase cytochrome c oxidase assembly factor 10 Novel N 0.0012350312932986128 -0.251189685143431 1.0 12342 +101513 Mob2 MOB kinase activator 2 Novel U 0.0012348915101035168 -0.2511911330131707 1.0 12343 +20203 S100b S100 protein, beta polypeptide, neural Novel N 0.0012346842951853883 -0.2511932793384808 1.0 12344 +14626 Gk2 glycerol kinase 2 Novel U 0.0012345137855838302 -0.2511950454713286 1.0 12345 +100039030 Gm2012 predicted gene 2012 Novel U 0.001234068460003284 -0.2511996581390526 1.0 12346 +243822 Garin5b golgi associated RAB2 interactor family member 5B Novel U 0.001233539838078881 -0.2512051335875681 1.0 12347 +18405 Orm1 orosomucoid 1 Novel U 0.0012332585131559892 -0.2512080475418713 1.0 12348 +66155 Ufc1 ubiquitin-fold modifier conjugating enzyme 1 Novel U 0.0012332344066492823 -0.2512082972362753 1.0 12349 +13168 Dbil5 diazepam binding inhibitor-like 5 Novel U 0.001232992591017176 -0.2512108019546434 1.0 12350 +238384 Slc24a4 solute carrier family 24 (sodium/potassium/calcium exchanger), member 4 Novel N 0.0012326513102767687 -0.25121433692933354 1.0 12351 +104885 Tmem179 transmembrane protein 179 Novel U 0.0012326234957312594 -0.25121462503148156 1.0 12352 +27386 Npas3 neuronal PAS domain protein 3 Novel U 0.0012324429952053296 -0.2512164946499955 1.0 12353 +75731 Idnk idnK gluconokinase homolog (E. coli) Novel U 0.0012323391604432486 -0.25121757016704777 1.0 12354 +69983 Sis sucrase isomaltase Novel U 0.0012322122502482064 -0.25121888469867604 1.0 12355 +63857 Bco1 beta-carotene oxygenase 1 Novel N 0.0012316501438869188 -0.251224706977888 1.0 12356 +18585 Pde9a phosphodiesterase 9A Novel N 0.0012312277464759168 -0.2512290821563856 1.0 12357 +244646 Pkd1l3 polycystic kidney disease 1 like 3 Novel U 0.0012311377276019006 -0.25123001456892347 1.0 12358 +104871 Spata7 spermatogenesis associated 7 Novel U 0.0012310238151680237 -0.2512311944701689 1.0 12359 +382131 Gm20737 predicted gene, 20737 Novel U 0.0012306829216987814 -0.25123472543351705 1.0 12360 +230752 Eva1b eva-1 homolog B Novel U 0.0012303421507101515 -0.251238255128215 1.0 12361 +69562 Cdk13 cyclin dependent kinase 13 Novel U 0.0012298917146115055 -0.2512429207305175 1.0 12362 +243653 Clec1a C-type lectin domain family 1, member a Novel N 0.001229834533276018 -0.25124351301291076 1.0 12363 +51869 Rif1 replication timing regulatory factor 1 Novel U 0.001229199703575264 -0.2512500885580823 1.0 12364 +100689 Spon2 spondin 2, extracellular matrix protein Novel U 0.0012286226003444154 -0.2512560661743761 1.0 12365 +215436 Slc35e3 solute carrier family 35, member E3 Novel U 0.0012281532082306108 -0.2512609281224605 1.0 12366 +171229 Vmn1r227 vomeronasal 1 receptor 227 Novel U 0.0012278413649178086 -0.2512641581852432 1.0 12367 +546944 Vmn1r170 vomeronasal 1 receptor 170 Novel U 0.0012275863574080898 -0.251266799544646 1.0 12368 +207728 Pde2a phosphodiesterase 2A, cGMP-stimulated Novel U 0.0012275419560521768 -0.2512672594524309 1.0 12369 +229320 Clrn1 clarin 1 Novel U 0.0012274672656870237 -0.25126803309277784 1.0 12370 +18125 Nos1 nitric oxide synthase 1, neuronal Novel U 0.0012272868563942675 -0.25126990176630154 1.0 12371 +13909 Ces3b carboxylesterase 3B Novel U 0.0012265322269602189 -0.2512777181931723 1.0 12372 +52023 Pibf1 progesterone immunomodulatory binding factor 1 Novel U 0.0012257560271079705 -0.2512857580457257 1.0 12373 +382038 Urb2 URB2 ribosome biogenesis 2 homolog (S. cerevisiae) Novel U 0.001225294970748865 -0.25129053365233694 1.0 12374 +333329 Cngb1 cyclic nucleotide gated channel beta 1 Novel N 0.0012244833041410964 -0.2512989408683781 1.0 12375 +72978 Cnih3 cornichon family AMPA receptor auxiliary protein 3 Novel U 0.0012239513131774107 -0.25130445121329165 1.0 12376 +105352 Dusp22 dual specificity phosphatase 22 Novel U 0.0012237767755399317 -0.2513062590684031 1.0 12377 +18549 Pcsk2 proprotein convertase subtilisin/kexin type 2 Novel N 0.0012227343575853052 -0.25131705639930946 1.0 12378 +14377 G6pc1 glucose-6-phosphatase catalytic subunit 1 Novel U 0.001222566155615036 -0.2513187986297882 1.0 12379 +67331 Atp8b3 ATPase, class I, type 8B, member 3 Novel U 0.0012224612688931428 -0.25131988504300556 1.0 12380 +210808 Lacc1 laccase domain containing 1 Novel U 0.00122224217840438 -0.251322154375086 1.0 12381 +546943 Vmn1r176 vomeronasal 1 receptor 176 Novel U 0.001221987478021688 -0.25132479255327705 1.0 12382 +226856 Lpgat1 lysophosphatidylglycerol acyltransferase 1 Novel U 0.0012217022539635068 -0.25132774689469545 1.0 12383 +16890 Lipe lipase, hormone sensitive Novel N 0.0012215477735303662 -0.2513293469979437 1.0 12384 +217026 Heatr6 HEAT repeat containing 6 Novel U 0.001221086605265051 -0.2513341237636757 1.0 12385 +12684 Cideb cell death-inducing DNA fragmentation factor, alpha subunit-like effector B Novel U 0.001220878399734706 -0.25133628034971467 1.0 12386 +243853 Fkrp fukutin related protein Novel U 0.001220422584080259 -0.2513410016732793 1.0 12387 +93670 Tac4 tachykinin 4 Novel U 0.001219538882025714 -0.2513501550301101 1.0 12388 +100039614 Gm20809 predicted gene, 20809 Novel U 0.0012192725692329845 -0.25135291348926264 1.0 12389 +66660 Sltm SAFB-like, transcription modulator Novel U 0.0012189788120365852 -0.2513559562166462 1.0 12390 +76905 Lrg1 leucine-rich alpha-2-glycoprotein 1 Novel U 0.0012189271948783746 -0.2513564908654741 1.0 12391 +380684 Nefh neurofilament, heavy polypeptide Novel U 0.0012189192861954898 -0.25135657278335144 1.0 12392 +66310 Dpy30 dpy-30, histone methyltransferase complex regulatory subunit Novel U 0.0012187983325776285 -0.25135782561694914 1.0 12393 +18538 Pcna proliferating cell nuclear antigen Novel U 0.0012187400107389562 -0.25135842971263683 1.0 12394 +13119 Cyp4a14 cytochrome P450, family 4, subfamily a, polypeptide 14 Novel U 0.0012185944951781794 -0.2513599369580318 1.0 12395 +142688 Asb13 ankyrin repeat and SOCS box-containing 13 Novel U 0.0012185785219756646 -0.2513601024079384 1.0 12396 +404284 Vmn1r59 vomeronasal 1 receptor 59 Novel U 0.00121819963497766 -0.2513640269070085 1.0 12397 +100043043 Vmn1r253 vomeronasal 1 receptor 253 Novel U 0.0012179694032704834 -0.25136641163946294 1.0 12398 +268420 Alkbh5 alkB homolog 5, RNA demethylase Novel N 0.0012172687920684174 -0.25137366854726256 1.0 12399 +11984 Atp6v0c ATPase, H+ transporting, lysosomal V0 subunit C Novel U 0.0012171607200367625 -0.2513747879538138 1.0 12400 +230259 E130308A19Rik RIKEN cDNA E130308A19 gene Novel U 0.0012170651866850654 -0.2513757774851302 1.0 12401 +16616 Klk1b21 kallikrein 1-related peptidase b21 Novel U 0.0012161950026236539 -0.2513847908230325 1.0 12402 +20516 Slc20a2 solute carrier family 20, member 2 Novel N 0.0012158116178756315 -0.2513887619096494 1.0 12403 +73863 Spmip11 sperm microtubule inner protein 11 Novel U 0.0012153019934094105 -0.2513940405831176 1.0 12404 +110208 Pgd phosphogluconate dehydrogenase Novel N 0.0012147758074874946 -0.25139949079959933 1.0 12405 +67308 Mrpl46 mitochondrial ribosomal protein L46 Novel U 0.0012142868474583836 -0.2514045554315072 1.0 12406 +12530 Cdc25a cell division cycle 25A Novel U 0.0012138739806263237 -0.2514088318925814 1.0 12407 +20823 Ssb small RNA binding exonuclease protection factor La Novel U 0.0012137196326088518 -0.25141043062427243 1.0 12408 +14805 Grik1 glutamate receptor, ionotropic, kainate 1 Novel N 0.0012136621527570391 -0.251411025998688 1.0 12409 +21887 Tle3 transducin-like enhancer of split 3 Novel N 0.001213457207692793 -0.25141314881292626 1.0 12410 +244219 Zfp668 zinc finger protein 668 Novel U 0.0012134175873016722 -0.25141355919963504 1.0 12411 +225912 Cyb561a3 cytochrome b561 family, member A3 Novel U 0.0012126815765336402 -0.2514211827749752 1.0 12412 +225363 Etf1 eukaryotic translation termination factor 1 Novel U 0.0012123114519849956 -0.2514250165128829 1.0 12413 +15547 Trmt2a TRM2 tRNA methyltransferase 2A Novel U 0.0012117685126016395 -0.2514306402611675 1.0 12414 +214253 Etnk2 ethanolamine kinase 2 Novel U 0.0012114938943612204 -0.2514334847478742 1.0 12415 +238722 Zfp72 zinc finger protein 72 Novel U 0.0012110645802431985 -0.25143793156939576 1.0 12416 +20733 Spint2 serine protease inhibitor, Kunitz type 2 Novel U 0.0012107646823174406 -0.2514410379022521 1.0 12417 +272396 Tars3 threonyl-tRNA synthetase 3 Novel U 0.0012106265668223996 -0.25144246849800944 1.0 12418 +353502 Hcfc1r1 host cell factor C1 regulator 1 (XPO1-dependent) Novel U 0.0012096650226558917 -0.2514524281408771 1.0 12419 +235606 Apeh acylpeptide hydrolase Novel U 0.0012095371222711271 -0.25145375292885797 1.0 12420 +12958 Cryba2 crystallin, beta A2 Novel N 0.0012094209883688836 -0.2514549558399997 1.0 12421 +17190 Mbd1 methyl-CpG binding domain protein 1 Novel N 0.0012093338237479162 -0.2514558586882783 1.0 12422 +211151 Churc1 churchill domain containing 1 Novel U 0.0012086448556980782 -0.25146299499668995 1.0 12423 +212439 AA986860 expressed sequence AA986860 Novel U 0.001207565548246777 -0.2514741744277902 1.0 12424 +434701 Vmn2r113 vomeronasal 2, receptor 113 Novel U 0.0012075600775351882 -0.251474231093241 1.0 12425 +329831 Cimip2b ciliary microtubule inner protein 2B Novel U 0.0012072562211109918 -0.2514773784280941 1.0 12426 +66473 Ctrb1 chymotrypsinogen B1 Novel U 0.0012070731052578158 -0.25147927513608165 1.0 12427 +71973 Rbpms2 RNA binding protein with multiple splicing 2 Novel N 0.0012070352323917803 -0.251479667421983 1.0 12428 +382543 Ankfn1 ankyrin-repeat and fibronectin type III domain containing 1 Novel U 0.0012067980883758646 -0.2514821237519042 1.0 12429 +19205 Ptbp1 polypyrimidine tract binding protein 1 Novel U 0.0012066848807291237 -0.25148329635298766 1.0 12430 +18111 Nnat neuronatin Novel U 0.0012064140207510335 -0.2514861019117367 1.0 12431 +435391 Dusp29 dual specificity phosphatase 29 Novel N 0.0012063602758740505 -0.2514866585994057 1.0 12432 +68463 Mrpl14 mitochondrial ribosomal protein L14 Novel U 0.0012062918722206145 -0.2514873671221993 1.0 12433 +668119 Cwc22rt6 CWC22 spliceosome-associated protein, retrotransposed 6 Novel U 0.0012055015333442688 -0.25149555342629953 1.0 12434 +52377 Rcn3 reticulocalbin 3, EF-hand calcium binding domain Novel U 0.001205191181090305 -0.2514987680447438 1.0 12435 +387351 Tas2r124 taste receptor, type 2, member 124 Novel U 0.001205028335754278 -0.2515004547913811 1.0 12436 +12797 Cnn1 calponin 1 Novel N 0.0012047395610637098 -0.25150344591013307 1.0 12437 +330460 Tmem150b transmembrane protein 150B Novel U 0.0012046716959092526 -0.251504148855172 1.0 12438 +668339 Fam236f family with sequence similarity 236, member F Novel U 0.0012042233291237583 -0.2515087930235969 1.0 12439 +81016 Vmn1r62 vomeronasal 1 receptor 62 Novel U 0.0012036693693586763 -0.25151453092063314 1.0 12440 +102635315 Gm32687 predicted gene, 32687 Novel U 0.0012034031456308288 -0.2515172884572546 1.0 12441 +52064 Coq5 coenzyme Q5 methyltransferase Novel N 0.0012028462504997004 -0.25152305675871584 1.0 12442 +207777 Tspoap1 TSPO associated protein 1 Novel U 0.0012028383266244117 -0.2515231388339556 1.0 12443 +13204 Dhx15 DEAH-box helicase 15 Novel N 0.0012028279605951775 -0.25152324620494565 1.0 12444 +67664 Rnf125 ring finger protein 125 Novel U 0.0012016834456027442 -0.2515351010536134 1.0 12445 +17181 Matn2 matrilin 2 Novel U 0.001201679984728364 -0.2515351369012364 1.0 12446 +69156 Comtd1 catechol-O-methyltransferase domain containing 1 Novel U 0.0012010527243825294 -0.2515416340432785 1.0 12447 +387345 Tas2r113 taste receptor, type 2, member 113 Novel U 0.0012009735053311822 -0.2515424545916082 1.0 12448 +239647 Pced1b PC-esterase domain containing 1B Novel U 0.001200815437665066 -0.2515440918512976 1.0 12449 +100042786 Ubl5b ubiquitin-like 5B Novel U 0.001200434035944149 -0.251548042397785 1.0 12450 +58810 Akr1a1 aldo-keto reductase family 1, member A1 Novel N 0.0012000702062689623 -0.2515518109336003 1.0 12451 +20442 St3gal1 ST3 beta-galactoside alpha-2,3-sialyltransferase 1 Novel U 0.0012000627739603134 -0.25155188791720895 1.0 12452 +244723 Olfm2 olfactomedin 2 Novel U 0.0011999317674791367 -0.2515532448780344 1.0 12453 +17293 Mesp2 mesoderm posterior 2 Novel U 0.0011998250907349578 -0.2515543498322438 1.0 12454 +67983 Pdzd9 PDZ domain containing 9 Novel U 0.0011997960929329764 -0.2515546501905235 1.0 12455 +20230 Satb1 special AT-rich sequence binding protein 1 Novel U 0.0011992928197783238 -0.25155986307731515 1.0 12456 +12814 Col11a1 collagen, type XI, alpha 1 Novel U 0.0011990018950143598 -0.25156287646645664 1.0 12457 +100039139 Ccdc152 coiled-coil domain containing 152 Novel U 0.001198944241526182 -0.2515634736393919 1.0 12458 +67418 Ppil4 peptidylprolyl isomerase (cyclophilin)-like 4 Novel U 0.0011982845822315989 -0.25157030636868005 1.0 12459 +15107 Hadh hydroxyacyl-Coenzyme A dehydrogenase Novel U 0.001197957447795164 -0.2515736948164187 1.0 12460 +20254 Scg2 secretogranin II Novel U 0.001197778924228914 -0.25157554395764925 1.0 12461 +331535 Serpina7 serine (or cysteine) peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 7 Novel N 0.0011975095552165685 -0.2515783340730241 1.0 12462 +21957 Tnnt3 troponin T3, skeletal, fast Novel U 0.0011975066090986607 -0.25157836458881655 1.0 12463 +102635744 Gm28729 predicted gene 28729 Novel U 0.0011970196971564182 -0.2515834080067079 1.0 12464 +76522 Lsm8 LSM8 homolog, U6 small nuclear RNA associated Novel N 0.0011969753117969247 -0.2515838677488025 1.0 12465 +78330 Ndufv3 NADH:ubiquinone oxidoreductase core subunit V3 Novel U 0.0011969413006373284 -0.25158422003527553 1.0 12466 +100041550 Gm20877 predicted gene, 20877 Novel U 0.0011969192438237666 -0.25158444849902534 1.0 12467 +75317 Parpbp PARP1 binding protein Novel N 0.0011960338883261333 -0.2515936189821653 1.0 12468 +230793 Ahdc1 AT hook, DNA binding motif, containing 1 Novel U 0.0011957214761992535 -0.2515968549367055 1.0 12469 +11740 Slc25a5 solute carrier family 25 (mitochondrial carrier, adenine nucleotide translocator), member 5 Novel N 0.0011955977124452767 -0.25159813687760074 1.0 12470 +114664 Hsd17b11 hydroxysteroid (17-beta) dehydrogenase 11 Novel N 0.0011953725063050674 -0.2516004695553978 1.0 12471 +69487 Ndufaf5 NADH:ubiquinone oxidoreductase complex assembly factor 5 Novel N 0.0011952695685894573 -0.2516015357808722 1.0 12472 +192734 Lrrc75b leucine rich repeat containing 75B Novel U 0.0011948552416094287 -0.25160582736611103 1.0 12473 +93871 Brwd1 bromodomain and WD repeat domain containing 1 Novel U 0.0011947190101805753 -0.25160723844677274 1.0 12474 +17178 Fxyd3 FXYD domain-containing ion transport regulator 3 Novel N 0.001194470154752165 -0.2516098160831195 1.0 12475 +27366 Txnl4a thioredoxin-like 4A Novel U 0.001194164402654808 -0.2516129830532929 1.0 12476 +237943 Gpatch8 G patch domain containing 8 Novel U 0.0011936812980617494 -0.25161798703478655 1.0 12477 +68865 Arv1 ARV1 homolog, fatty acid homeostasis modulator Novel U 0.0011933036819957855 -0.2516218983695844 1.0 12478 +22185 U2af2 U2 small nuclear ribonucleoprotein auxiliary factor (U2AF) 2 Novel U 0.001193232238935492 -0.2516226383744543 1.0 12479 +12861 Cox6a1 cytochrome c oxidase subunit 6A1 Novel N 0.0011930373484232376 -0.2516246570439736 1.0 12480 +12839 Col9a1 collagen, type IX, alpha 1 Novel U 0.0011928916042175282 -0.25162616665766524 1.0 12481 +21372 Tbl1x transducin (beta)-like 1 X-linked Novel N 0.0011925704778510023 -0.25162949287401326 1.0 12482 +243967 Ntn5 netrin 5 Novel U 0.0011919622814815024 -0.2516357925520151 1.0 12483 +50501 Prok2 prokineticin 2 Novel U 0.001191893167113245 -0.25163650843636953 1.0 12484 +13853 Epm2a epilepsy, progressive myoclonic epilepsy, type 2 gene alpha Novel U 0.0011915515680780444 -0.25164004670794665 1.0 12485 +12831 Col5a1 collagen, type V, alpha 1 Novel U 0.001191411652410538 -0.2516414959498312 1.0 12486 +243499 Lrrtm4 leucine rich repeat transmembrane neuronal 4 Novel U 0.0011910256742493869 -0.2516454938989361 1.0 12487 +21647 Dynlt2a1 dynein light chain Tctex-type 2A1 Novel U 0.0011908858299097588 -0.25164694240200886 1.0 12488 +77519 Zfp266 zinc finger protein 266 Novel U 0.0011903561315036216 -0.2516524290006867 1.0 12489 +21953 Tnni2 troponin I, skeletal, fast 2 Novel U 0.0011902131229689693 -0.25165391027838746 1.0 12490 +320640 Skint4 selection and upkeep of intraepithelial T cells 4 Novel U 0.001189920020404219 -0.2516569462251179 1.0 12491 +27998 Exosc5 exosome component 5 Novel U 0.0011897269663319508 -0.2516589458728522 1.0 12492 +320292 Rasgef1b RasGEF domain family, member 1B Novel U 0.001189630549164486 -0.2516599445587032 1.0 12493 +18241 Gpr143 G protein-coupled receptor 143 Novel U 0.0011892517779875606 -0.25166386785810235 1.0 12494 +230582 Cyb5rl cytochrome b5 reductase-like Novel N 0.001189171963203629 -0.25166469457701063 1.0 12495 +109054 Pfdn4 prefoldin 4 Novel U 0.0011889886818909595 -0.25166659299882216 1.0 12496 +667485 Vmn1r254 vomeronasal 1 receptor 254 Novel U 0.0011889787769264223 -0.25166669559411925 1.0 12497 +16434 Itpa inosine triphosphatase (nucleoside triphosphate pyrophosphatase) Novel N 0.0011884984692636176 -0.2516716706051013 1.0 12498 +16664 Krt14 keratin 14 Novel U 0.0011875864057448945 -0.2516811177290458 1.0 12499 +67942 Atp5mc2 ATP synthase membrane subunit c locus 2 Novel U 0.0011875716156966854 -0.25168127092387893 1.0 12500 +67911 Zfp169 zinc finger protein 169 Novel U 0.0011871149657726042 -0.251686000888781 1.0 12501 +236792 Mmgt1 membrane magnesium transporter 1 Novel U 0.001187028188393564 -0.25168689972602043 1.0 12502 +59014 Rrs1 ribosome biogenesis regulator 1 Novel U 0.0011868571686950696 -0.2516886711424355 1.0 12503 +68852 Lrrn4cl LRRN4 C-terminal like Novel U 0.0011860318242793778 -0.25169722003276146 1.0 12504 +22526 Gm4836 predicted gene 4836 Novel U 0.001185895580346233 -0.25169863124294223 1.0 12505 +620592 Nalf2 NALCN channel auxiliary factor 2 Novel U 0.0011852762019212049 -0.2517050467443077 1.0 12506 +21419 Tfap2b transcription factor AP-2 beta Novel U 0.0011846594306116527 -0.2517114352412568 1.0 12507 +414872 Zyg11b zyg-ll family member B, cell cycle regulator Novel U 0.0011845806338948042 -0.25171225141505954 1.0 12508 +75751 Ipo4 importin 4 Novel U 0.0011845029756872504 -0.25171305579622055 1.0 12509 +237029 Dmtf1l cyclin D binding myb like transcription factor 1 like Novel U 0.0011843064263779336 -0.2517150916475053 1.0 12510 +72567 Bclaf1 BCL2-associated transcription factor 1 Novel N 0.0011842675402660636 -0.25171549442857366 1.0 12511 +71242 Spata24 spermatogenesis associated 24 Novel U 0.0011838561840542528 -0.251719755242693 1.0 12512 +70428 Polr3b polymerase (RNA) III (DNA directed) polypeptide B Novel U 0.001183127949302537 -0.25172729827431184 1.0 12513 +16598 Klf2 Kruppel-like transcription factor 2 (lung) Novel U 0.001183092432281648 -0.25172766615844666 1.0 12514 +70551 Tmtc4 transmembrane and tetratricopeptide repeat containing 4 Novel N 0.0011829709411117762 -0.25172892455999035 1.0 12515 +56095 Ftsj3 FtsJ RNA 2'-O-methyltransferase 3 Novel N 0.0011827114397961007 -0.2517316124660875 1.0 12516 +20856 Stc2 stanniocalcin 2 Novel N 0.0011826159329830486 -0.2517326017225175 1.0 12517 +27372 Prl3c1 prolactin family 3, subfamily c, member 1 Novel U 0.0011824706953105597 -0.25173410608955465 1.0 12518 +228788 Ccm2l cerebral cavernous malformation 2-like Novel U 0.0011820018145539703 -0.2517389627410178 1.0 12519 +68614 Letmd1 LETM1 domain containing 1 Novel U 0.0011818816826631637 -0.25174020706319367 1.0 12520 +231633 Tmem119 transmembrane protein 119 Novel N 0.0011817329766132946 -0.25174174735556976 1.0 12521 +12557 Cdh17 cadherin 17 Novel U 0.0011813711527170975 -0.25174549511559224 1.0 12522 +67988 Tmx3 thioredoxin-related transmembrane protein 3 Novel U 0.0011807559954084585 -0.2517518668947729 1.0 12523 +332110 Mapk15 mitogen-activated protein kinase 15 Novel U 0.0011806675793033753 -0.25175278270588286 1.0 12524 +71828 Gtf2a1l general transcription factor IIA, 1-like Novel N 0.0011804537076256193 -0.2517549979816904 1.0 12525 +227620 Uap1l1 UDP-N-acteylglucosamine pyrophosphorylase 1-like 1 Novel U 0.0011804197616506408 -0.25175534959298335 1.0 12526 +21974 Top2b topoisomerase (DNA) II beta Novel U 0.0011801735119617547 -0.2517579002391658 1.0 12527 +66866 Nhlrc2 NHL repeat containing 2 Novel U 0.0011800098676356787 -0.25175959526171576 1.0 12528 +278676 AY358078 cDNA sequence AY358078 Novel U 0.0011798329342120515 -0.25176142793230133 1.0 12529 +22773 Zic3 zinc finger protein of the cerebellum 3 Novel U 0.0011797999459815071 -0.2517617696233089 1.0 12530 +28113 Tinf2 Terf1 (TRF1)-interacting nuclear factor 2 Novel U 0.0011795186766120718 -0.25176468300219124 1.0 12531 +72373 Psca prostate stem cell antigen Novel U 0.001179196786032202 -0.25176801713423597 1.0 12532 +67026 Thap4 THAP domain containing 4 Novel N 0.0011791951098290556 -0.25176803449629304 1.0 12533 +22044 Trh thyrotropin releasing hormone Novel N 0.0011784922586092613 -0.2517753146061227 1.0 12534 +104183 Chil4 chitinase-like 4 Novel U 0.0011784209977588093 -0.2517760527236691 1.0 12535 +13972 Gnb1l guanine nucleotide binding protein (G protein), beta polypeptide 1-like Novel N 0.0011779078074018834 -0.2517813683325159 1.0 12536 +241431 Xirp2 xin actin-binding repeat containing 2 Novel U 0.001176219712098436 -0.2517988535681759 1.0 12537 +108168638 Gm20830 predicted gene, 20830 Novel U 0.0011751145592510254 -0.2518103007050394 1.0 12538 +15374 Jpt1 Jupiter microtubule associated homolog 1 Novel U 0.0011748911093488299 -0.25181261519178083 1.0 12539 +229228 Nudt6 nudix hydrolase 6 Novel N 0.0011745979422734692 -0.25181565180671006 1.0 12540 +100038995 LOC100038995 PRAME family member 8-like Novel U 0.0011745967362377008 -0.25181566429878893 1.0 12541 +72169 Trim29 tripartite motif-containing 29 Novel U 0.0011743392490765774 -0.2518183313423394 1.0 12542 +238406 Adam6a a disintegrin and metallopeptidase domain 6A Novel U 0.0011742105082305418 -0.2518196648357905 1.0 12543 +387346 Tas2r114 taste receptor, type 2, member 114 Novel U 0.0011741626573963074 -0.25182016047315847 1.0 12544 +241769 Kcnk15 potassium channel, subfamily K, member 15 Novel U 0.0011739209519434956 -0.2518226640502931 1.0 12545 +216971 Fam222b family with sequence similarity 222, member B Novel U 0.0011733836128677351 -0.25182822979077574 1.0 12546 +101772 Ano1 anoctamin 1, calcium activated chloride channel Novel U 0.001173327655862793 -0.2518288093915934 1.0 12547 +73739 Cby1 chibby family member 1, beta catenin antagonist Novel U 0.0011730744912176164 -0.25183143166266586 1.0 12548 +239038 Lrit2 leucine-rich repeat, immunoglobulin-like and transmembrane domains 2 Novel U 0.0011728998550356287 -0.25183324053849804 1.0 12549 +434179 Zfp975 zinc finger protein 975 Novel U 0.0011724987833612113 -0.2518373948257171 1.0 12550 +66047 Mrpl54 mitochondrial ribosomal protein L54 Novel U 0.0011724612030849 -0.25183778408098373 1.0 12551 +353287 Clec18a C-type lectin domain family 18, member A Novel U 0.0011724161897633302 -0.25183825032748886 1.0 12552 +52662 Ldlrad4 low density lipoprotein receptor class A domain containing 4 Novel U 0.0011723725834048644 -0.25183870200071634 1.0 12553 +76792 Spring1 SREBF pathway regulator in golgi 1 Novel N 0.001172365380823065 -0.25183877660482185 1.0 12554 +223645 Mroh6 maestro heat-like repeat family member 6 Novel U 0.0011715482744236374 -0.2518472401660462 1.0 12555 +233532 Rsf1 remodeling and spacing factor 1 Novel U 0.0011715204203232655 -0.2518475286779022 1.0 12556 +319845 Bbs9 Bardet-Biedl syndrome 9 Novel U 0.001171491926869167 -0.25184782381216303 1.0 12557 +100039034 Gm20795 predicted gene, 20795 Novel U 0.0011708165597289178 -0.2518548192428003 1.0 12558 +21677 Tead2 TEA domain family member 2 Novel N 0.001170560388267704 -0.2518574726583743 1.0 12559 +56745 C1qtnf1 C1q and tumor necrosis factor related protein 1 Novel U 0.0011700769329900892 -0.2518624802722471 1.0 12560 +66745 Trpd52l3 tumor protein D52-like 3 Novel U 0.0011696323679309746 -0.25186708506251515 1.0 12561 +237073 Rbm41 RNA binding motif protein 41 Novel U 0.0011691043706873777 -0.2518725540406074 1.0 12562 +71248 4933428M09Rik RIKEN cDNA 4933428M09 gene Novel U 0.0011690115134554322 -0.25187351585276335 1.0 12563 +71919 Rpap3 RNA polymerase II associated protein 3 Novel U 0.00116858305903186 -0.25187795376959804 1.0 12564 +81601 Kat5 K(lysine) acetyltransferase 5 Novel U 0.0011685689064953092 -0.25187810036110636 1.0 12565 +15931 Ids iduronate 2-sulfatase Novel U 0.0011684237873454207 -0.2518796035004904 1.0 12566 +18792 Plau plasminogen activator, urokinase Novel U 0.0011678047407499604 -0.25188601556477613 1.0 12567 +23984 Pde10a phosphodiesterase 10A Novel U 0.0011677486829812765 -0.2518865962093013 1.0 12568 +67452 Pnpla8 patatin-like phospholipase domain containing 8 Novel U 0.001167154915711787 -0.25189274643115966 1.0 12569 +54422 Barhl1 BarH like homeobox 1 Novel U 0.0011671055569565396 -0.2518932576875239 1.0 12570 +16980 Lrrn2 leucine rich repeat protein 2, neuronal Novel N 0.0011667596514757066 -0.25189684056512335 1.0 12571 +236546 Tcstv2a 2 cell stage variable group member 2A Novel U 0.0011666688381021303 -0.2518977812070616 1.0 12572 +22702 Zfp42 zinc finger protein 42 Novel U 0.0011658599247552808 -0.2519061599049166 1.0 12573 +71078 Adam30 a disintegrin and metallopeptidase domain 30 Novel U 0.0011658396632191152 -0.25190636977324216 1.0 12574 +65105 Arl6ip4 ADP-ribosylation factor-like 6 interacting protein 4 Novel U 0.001165696037796268 -0.2519078574406506 1.0 12575 +17173 Ascl2 achaete-scute family bHLH transcription factor 2 Novel N 0.0011655826597155958 -0.2519090318070831 1.0 12576 +211945 Plekhh1 pleckstrin homology domain containing, family H (with MyTH4 domain) member 1 Novel U 0.0011652670541221345 -0.25191230083944516 1.0 12577 +108148 Galnt2 polypeptide N-acetylgalactosaminyltransferase 2 Novel N 0.0011650358754454646 -0.25191469538057853 1.0 12578 +67537 Glipr1l2 GLI pathogenesis-related 1 like 2 Novel U 0.001164937212849541 -0.25191571732450374 1.0 12579 +100503915 Smpd5 sphingomyelin phosphodiesterase 5 Novel U 0.0011647032274494454 -0.2519181409375861 1.0 12580 +12296 Cacnb2 calcium channel, voltage-dependent, beta 2 subunit Novel U 0.0011645594430405059 -0.2519196302517672 1.0 12581 +23876 Fbln5 fibulin 5 Novel U 0.0011645315851550528 -0.25191991880282893 1.0 12582 +110835 Chrna5 cholinergic receptor, nicotinic, alpha polypeptide 5 Novel N 0.001164448167669609 -0.25192078283840097 1.0 12583 +66433 Chchd7 coiled-coil-helix-coiled-coil-helix domain containing 7 Novel U 0.0011644122082815277 -0.2519211553045606 1.0 12584 +27047 Omd osteomodulin Novel U 0.00116378618788269 -0.25192763960327247 1.0 12585 +381680 Nxpe5 neurexophilin and PC-esterase domain family, member 5 Novel U 0.0011637569385365648 -0.2519279425670381 1.0 12586 +69241 Polr2d polymerase (RNA) II (DNA directed) polypeptide D Novel N 0.0011635999798905827 -0.25192956833953345 1.0 12587 +80720 Pbx4 pre B cell leukemia homeobox 4 Novel N 0.0011634252519646501 -0.2519313781656464 1.0 12588 +105278 Cdk20 cyclin dependent kinase 20 Novel U 0.0011633537945936723 -0.25193211831874596 1.0 12589 +100043604 Vmn1r132 vomeronasal 1 receptor 132 Novel U 0.0011632912470926123 -0.2519327661837058 1.0 12590 +171506 H1f8 H1.8 linker histone Novel U 0.0011626057492689617 -0.2519398665476287 1.0 12591 +15458 Hpx hemopexin Novel U 0.001161608173612988 -0.2519501994034797 1.0 12592 +74239 Iqce IQ motif containing E Novel U 0.001161299953224529 -0.25195339194013117 1.0 12593 +217721 Flvcr2 feline leukemia virus subgroup C cellular receptor 2 Novel N 0.0011610481157810339 -0.25195600046409217 1.0 12594 +66471 Anp32e acidic nuclear phosphoprotein 32 family member E Novel U 0.0011606210365453446 -0.25196042413677594 1.0 12595 +70544 Tmem242 transmembrane protein 242 Novel N 0.0011602927039174504 -0.25196382499534237 1.0 12596 +20562 Slit1 slit guidance ligand 1 Novel U 0.0011602038083325078 -0.2519647457728889 1.0 12597 +100042922 H2al1a H2A histone family member L1A Novel U 0.0011597727071972434 -0.2519692111042762 1.0 12598 +75302 Asxl2 ASXL transcriptional regulator 2 Novel N 0.0011596096337260936 -0.25197090021392965 1.0 12599 +66049 Rogdi rogdi homolog Novel N 0.0011591744175080672 -0.251975408169209 1.0 12600 +20531 Slc34a2 solute carrier family 34 (sodium phosphate), member 2 Novel U 0.0011579796348707727 -0.25198778368848973 1.0 12601 +20192 Ryr3 ryanodine receptor 3 Novel U 0.001157794460114256 -0.2519897017225305 1.0 12602 +97243 Naa11 N(alpha)-acetyltransferase 11, NatA catalytic subunit Novel U 0.0011577753320599965 -0.2519898998502877 1.0 12603 +99738 Kcnc4 potassium voltage gated channel, Shaw-related subfamily, member 4 Novel N 0.001157636209007489 -0.25199134088229214 1.0 12604 +75443 Fam236e family with sequence similarity 236, member E Novel U 0.001157144874603302 -0.25199643010789896 1.0 12605 +100040608 Fancf Fanconi anemia, complementation group F Novel U 0.0011569102133398373 -0.25199886072155187 1.0 12606 +113849 Vmn1r52 vomeronasal 1 receptor 52 Novel U 0.0011568581166411427 -0.2519994003374444 1.0 12607 +93888 Pcdhb17 protocadherin beta 17 Novel U 0.0011564397832301663 -0.2520037334211633 1.0 12608 +70809 Clec2g C-type lectin domain family 2, member g Novel U 0.0011557205949247623 -0.2520111827499886 1.0 12609 +18572 Pdcd11 programmed cell death 11 Novel U 0.0011554882351110663 -0.25201358952530045 1.0 12610 +12372 Casq1 calsequestrin 1 Novel U 0.0011553528341457242 -0.2520149920040484 1.0 12611 +58170 Asic5 acid-sensing ion channel family member 5 Novel U 0.0011551483354558401 -0.25201711019475564 1.0 12612 +381379 Med19 mediator complex subunit 19 Novel U 0.001155031472394872 -0.25201832065849955 1.0 12613 +13601 Ecm1 extracellular matrix protein 1 Novel U 0.0011549077410147176 -0.2520196022640677 1.0 12614 +52808 Tspyl2 TSPY-like 2 Novel N 0.0011546207785309447 -0.25202257461204125 1.0 12615 +78394 Ddx52 DExD box helicase 52 Novel U 0.0011544517024606644 -0.25202432589641915 1.0 12616 +18406 Orm2 orosomucoid 2 Novel U 0.001153628353808908 -0.2520328541146879 1.0 12617 +11927 Atox1 antioxidant 1 copper chaperone Novel N 0.0011526321647774653 -0.25204317260792763 1.0 12618 +28088 Rtcb RNA 2',3'-cyclic phosphate and 5'-OH ligase Novel N 0.0011523496223446754 -0.2520460991731584 1.0 12619 +71869 Serpinb12 serine (or cysteine) peptidase inhibitor, clade B (ovalbumin), member 12 Novel U 0.0011523247048038756 -0.2520463572682269 1.0 12620 +14788 Gpr162 G protein-coupled receptor 162 Novel U 0.0011522845860033786 -0.2520467728174436 1.0 12621 +18014 Neurog1 neurogenin 1 Novel U 0.0011513911955753247 -0.25205602652612874 1.0 12622 +320100 Relt RELT tumor necrosis factor receptor Novel N 0.0011511618281771399 -0.2520584023060991 1.0 12623 +19011 Endou endonuclease, polyU-specific Novel N 0.0011509053420825873 -0.2520610589806349 1.0 12624 +74716 Wbp2nl WBP2 N-terminal like Novel N 0.00114913039082933 -0.2520794438673678 1.0 12625 +546644 Ly6g lymphocyte antigen 6 family member G Novel U 0.001148645782536723 -0.252084463424132 1.0 12626 +100041032 Pramel38 PRAME like 38 Novel U 0.001148473508415989 -0.25208624783381134 1.0 12627 +213980 Fbxw10 F-box and WD-40 domain protein 10 Novel U 0.0011483840396131575 -0.2520871745487299 1.0 12628 +27275 Nufip1 nuclear FMR1 interacting protein 1 Novel N 0.0011481899982192035 -0.2520891844231098 1.0 12629 +236511 Ago1 argonaute RISC catalytic subunit 1 Novel U 0.0011480559886823051 -0.25209057248948763 1.0 12630 +12355 Nr1i3 nuclear receptor subfamily 1, group I, member 3 Novel N 0.001147930438867955 -0.25209187293033747 1.0 12631 +170722 Nxf7 nuclear RNA export factor 7 Novel U 0.0011476398666041257 -0.25209488266829416 1.0 12632 +13507 Dsc3 desmocollin 3 Novel U 0.001147566189012554 -0.2520956458183656 1.0 12633 +28199 Dcaf11 DDB1 and CUL4 associated factor 11 Novel U 0.0011473341837939322 -0.25209804892079335 1.0 12634 +70337 Iyd iodotyrosine deiodinase Novel U 0.0011463606954017665 -0.25210813228155765 1.0 12635 +67238 Fam220a family with sequence similarity 220, member A Novel U 0.0011462796712160663 -0.25210897152740963 1.0 12636 +64008 Aqp9 aquaporin 9 Novel N 0.0011458533714389478 -0.2521133871264872 1.0 12637 +110957 D1Pas1 DNA segment, Chr 1, Pasteur Institute 1 Novel U 0.0011458354273733997 -0.2521135729905283 1.0 12638 +214763 Cgas cyclic GMP-AMP synthase Novel U 0.0011452723254492825 -0.2521194055817473 1.0 12639 +74100 Arpp21 cyclic AMP-regulated phosphoprotein, 21 Novel U 0.0011451018160648888 -0.25212117171234566 1.0 12640 +108645 Mat2b methionine adenosyltransferase 2 non-catalytic beta subunit methionine Novel N 0.0011447406908060317 -0.2521249122359055 1.0 12641 +100042856 Gvin2 GTPase, very large interferon inducible, family member 2 Novel U 0.0011445731808471871 -0.2521266472985526 1.0 12642 +24004 Rai2 retinoic acid induced 2 Novel U 0.0011445114930273609 -0.2521272862589625 1.0 12643 +20773 Sptlc2 serine palmitoyltransferase, long chain base subunit 2 Novel U 0.0011443086665870556 -0.25212938712856364 1.0 12644 +621561 Vmn1r127 vomeronasal 1 receptor 127 Novel U 0.0011439426397810615 -0.2521331784221877 1.0 12645 +69085 Zcchc9 zinc finger, CCHC domain containing 9 Novel U 0.0011437690530073012 -0.25213497642828386 1.0 12646 +74682 Wdr35 WD repeat domain 35 Novel U 0.0011435700165864848 -0.25213703804098775 1.0 12647 +74178 Stk40 serine/threonine kinase 40 Novel U 0.001143097016065929 -0.2521419373648306 1.0 12648 +327954 Dnah2 dynein, axonemal, heavy chain 2 Novel N 0.0011430225574107311 -0.25214270860513344 1.0 12649 +18181 Nrf1 nuclear respiratory factor 1 Novel N 0.0011428059834457964 -0.2521449518711428 1.0 12650 +21908 Tlx1 T cell leukemia, homeobox 1 Novel U 0.0011426493365953075 -0.2521465744140706 1.0 12651 +226139 Cox15 cytochrome c oxidase assembly protein 15 Novel U 0.0011425097040071303 -0.2521480207238288 1.0 12652 +100043188 Spopfm2 speckle-type BTB/POZ protein family member 2 Novel U 0.0011421482423126796 -0.2521517647321775 1.0 12653 +68152 Fam133b family with sequence similarity 133, member B Novel U 0.001141562701567724 -0.25215782974396517 1.0 12654 +445007 Nup85 nucleoporin 85 Novel U 0.0011414359190997946 -0.25215914295260017 1.0 12655 +11865 Bmal1 basic helix-loop-helix ARNT like 1 Novel N 0.0011412359605573973 -0.2521612141166091 1.0 12656 +100039116 Mup14 major urinary protein 14 Novel U 0.0011404513841050158 -0.2521693407337113 1.0 12657 +381695 N4bp2l2 NEDD4 binding protein 2-like 2 Novel N 0.0011404163784041615 -0.25216970332161 1.0 12658 +26426 Nubp2 nucleotide binding protein 2 Novel U 0.00114036649227847 -0.25217022004045997 1.0 12659 +106014 Tafa5 TAFA chemokine like family member 5 Novel N 0.0011403589550800777 -0.2521702981105131 1.0 12660 +234407 Colgalt1 collagen beta(1-O)galactosyltransferase 1 Novel U 0.001140134772462444 -0.25217262018669695 1.0 12661 +16869 Lhx1 LIM homeobox protein 1 Novel N 0.001139784210933776 -0.25217625129148685 1.0 12662 +107829 Thoc5 THO complex 5 Novel N 0.0011393201666994742 -0.25218105784641115 1.0 12663 +100862202 LOC100862202 PRAME family member 8-like Novel U 0.0011388301154993004 -0.2521861337806329 1.0 12664 +380785 Begain brain-enriched guanylate kinase-associated Novel U 0.0011385965643932934 -0.2521885528953114 1.0 12665 +66074 Tmem167 transmembrane protein 167 Novel U 0.001137558772783374 -0.2521993023066914 1.0 12666 +219134 Shisa2 shisa family member 2 Novel U 0.0011374052218246675 -0.25220089278247393 1.0 12667 +14391 Gabpb1 GA repeat binding protein, beta 1 Novel N 0.0011370347279191578 -0.25220473034616786 1.0 12668 +18983 Cnot7 CCR4-NOT transcription complex, subunit 7 Novel U 0.0011368317315460258 -0.2522068329759276 1.0 12669 +216767 Mrpl22 mitochondrial ribosomal protein L22 Novel U 0.001136085071302607 -0.25221456685818383 1.0 12670 +68041 Mid1ip1 Mid1 interacting protein 1 (gastrulation specific G12-like (zebrafish)) Novel U 0.0011358378247821588 -0.25221712782951483 1.0 12671 +67772 Chd8 chromodomain helicase DNA binding protein 8 Novel U 0.0011350558497630887 -0.2522252275010563 1.0 12672 +330267 Thsd7a thrombospondin, type I, domain containing 7A Novel U 0.001134287961610098 -0.25223318126130206 1.0 12673 +68020 Coa8 cytochrome c oxidase assembly factor 8 Novel N 0.0011342138362377195 -0.2522339490494724 1.0 12674 +100503670 Rpl5 ribosomal protein L5 Novel U 0.0011341597933670817 -0.25223450882374987 1.0 12675 +27801 Zdhhc8 zinc finger, DHHC domain containing 8 Novel U 0.001133816787111273 -0.2522380616712719 1.0 12676 +100040022 Gm20822 predicted gene, 20822 Novel U 0.0011336079741942101 -0.25224022454860245 1.0 12677 +171199 Vmn1r18 vomeronasal 1 receptor 18 Novel U 0.0011335997137781892 -0.25224031010972003 1.0 12678 +404290 Vmn1r93 vomeronasal 1 receptor 93 Novel U 0.0011335340855911605 -0.25224098988432386 1.0 12679 +213435 Mylk3 myosin light chain kinase 3 Novel U 0.001133388348316283 -0.2522424994262262 1.0 12680 +233810 Abca16 ATP-binding cassette, sub-family A member 16 Novel U 0.0011331809779177512 -0.25224464736199725 1.0 12681 +19729 Slc50a1 solute carrier family 50 (sugar transporter), member 1 Novel N 0.0011331701077185938 -0.25224475995516277 1.0 12682 +56150 Mad2l1 MAD2 mitotic arrest deficient-like 1 Novel U 0.0011330247593146407 -0.25224626546915285 1.0 12683 +17722 ND6 NADH dehydrogenase subunit 6 Novel N 0.0011326498652036727 -0.25225014861003026 1.0 12684 +50912 Exosc10 exosome component 10 Novel N 0.0011326395125792644 -0.2522502558421736 1.0 12685 +53858 Rwdd2b RWD domain containing 2B Novel U 0.00113260934574508 -0.25225056830925036 1.0 12686 +68992 Zfp580 zinc finger protein 580 Novel U 0.0011325591947257837 -0.2522510877718596 1.0 12687 +74196 Ttc27 tetratricopeptide repeat domain 27 Novel U 0.0011321422438546377 -0.25225540653527645 1.0 12688 +330217 Gal3st4 galactose-3-O-sulfotransferase 4 Novel N 0.001132013751452097 -0.252256737455358 1.0 12689 +52653 Nudcd2 NudC domain containing 2 Novel U 0.0011319831689354644 -0.2522570542280599 1.0 12690 +434624 Ftl1-ps2 ferritin light polypeptide, pseudogene 2 Novel U 0.0011315898981146288 -0.25226112771429404 1.0 12691 +245532 Awat2 acyl-CoA wax alcohol acyltransferase 2 Novel U 0.001131521834004374 -0.2522618327201106 1.0 12692 +69912 Nup43 nucleoporin 43 Novel U 0.0011311746053633523 -0.25226542930295975 1.0 12693 +21960 Tnr tenascin R Novel N 0.0011307646300677961 -0.25226967581359394 1.0 12694 +228139 P2rx3 purinergic receptor P2X, ligand-gated ion channel, 3 Novel U 0.0011304905867683564 -0.2522725143450808 1.0 12695 +226412 R3hdm1 R3H domain containing 1 Novel U 0.0011303031812800832 -0.25227445548496774 1.0 12696 +66647 Nsmce3 NSE3 homolog, SMC5-SMC6 complex component Novel U 0.0011299867188413995 -0.2522777333925045 1.0 12697 +66874 Ncbp3 nuclear cap binding subunit 3 Novel N 0.001129796454204953 -0.2522797041473542 1.0 12698 +16596 Klf1 Kruppel-like transcription factor 1 (erythroid) Novel U 0.0011293465850958952 -0.25228436387679715 1.0 12699 +19387 Rangap1 RAN GTPase activating protein 1 Novel U 0.0011291934164075084 -0.2522859503930363 1.0 12700 +19664 Rbpj recombination signal binding protein for immunoglobulin kappa J region Novel U 0.0011291856078967306 -0.25228603127333427 1.0 12701 +626922 Pramel28 PRAME like 28 Novel U 0.0011290685242835818 -0.25228724402155034 1.0 12702 +67427 Rps20 ribosomal protein S20 Novel U 0.001128750729062329 -0.2522905357340051 1.0 12703 +50799 Slc25a13 solute carrier family 25 (mitochondrial carrier, adenine nucleotide translocator), member 13 Novel U 0.001128627751227301 -0.2522918095343777 1.0 12704 +113864 Vmn1r14 vomeronasal 1 receptor 14 Novel U 0.0011284918984063566 -0.2522932166934311 1.0 12705 +630022 Btbd35f18 BTB domain containing 35, family member 18 Novel U 0.001128467674922747 -0.252293467599478 1.0 12706 +50914 Olig1 oligodendrocyte transcription factor 1 Novel U 0.0011277738078726517 -0.25230065465157325 1.0 12707 +217705 Fam161b family with sequence similarity 161, member B Novel U 0.00112751936918934 -0.25230329011909075 1.0 12708 +381077 Ccdc78 coiled-coil domain containing 78 Novel U 0.0011274387885436999 -0.25230412477076936 1.0 12709 +66590 Farsa phenylalanyl-tRNA synthetase, alpha subunit Novel U 0.001127118801753521 -0.252307439183423 1.0 12710 +17283 Men1 multiple endocrine neoplasia 1 Novel U 0.0011267245246382764 -0.25231152309282157 1.0 12711 +12966 Crygc crystallin, gamma C Novel N 0.0011266756513722772 -0.25231202932050417 1.0 12712 +11687 Alox15 arachidonate 15-lipoxygenase Novel U 0.00112662942980584 -0.25231250808196987 1.0 12713 +18822 Plod1 procollagen-lysine, 2-oxoglutarate 5-dioxygenase 1 Novel U 0.0011264975011142573 -0.25231387459502036 1.0 12714 +76925 Spata46 spermatogenesis associated 46 Novel U 0.001126145831887899 -0.2523175171733065 1.0 12715 +278795 Lrrc10b leucine rich repeat containing 10B Novel U 0.0011260600318212506 -0.2523184058875763 1.0 12716 +110826 Etfb electron transferring flavoprotein, beta polypeptide Novel N 0.0011254049904775498 -0.252325190784281 1.0 12717 +628870 Otogl otogelin-like Novel N 0.0011251925199335492 -0.2523273915471912 1.0 12718 +269063 Ms4a5 membrane-spanning 4-domains, subfamily A, member 5 Novel U 0.0011249216770841675 -0.2523301969285216 1.0 12719 +16530 Kcnk7 potassium channel, subfamily K, member 7 Novel N 0.0011249115534222756 -0.25233030178907867 1.0 12720 +20198 S100a4 S100 calcium binding protein A4 Novel N 0.0011240140914520185 -0.25233959767066416 1.0 12721 +75453 Ccdc7b coiled-coil domain containing 7B Novel U 0.001123842755693257 -0.25234137236082105 1.0 12722 +108155 Ogt O-linked N-acetylglucosamine (GlcNAc) transferase (UDP-N-acetylglucosamine:polypeptide-N-acetylglucosaminyl transferase) Novel U 0.001123773871135695 -0.2523420858648038 1.0 12723 +386612 Thoc6 THO complex 6 Novel U 0.0011236991258433814 -0.25234286007408446 1.0 12724 +72074 Anks4b ankyrin repeat and sterile alpha motif domain containing 4B Novel N 0.001123680870694122 -0.2523430491603204 1.0 12725 +620401 Vmn1r240 vomeronasal 1 receptor 240 Novel U 0.0011228279708099288 -0.2523518834692833 1.0 12726 +626802 Gm14322 predicted gene 14322 Novel U 0.0011227322737849498 -0.25235287469592216 1.0 12727 +381798 4930590J08Rik RIKEN cDNA 4930590J08 gene Novel U 0.0011223758147392777 -0.25235656688699926 1.0 12728 +100861891 Alyreffm16 Aly/REF export factor family member 16 Novel U 0.0011215412033033405 -0.25236521176481636 1.0 12729 +140492 Kcnn2 potassium intermediate/small conductance calcium-activated channel, subfamily N, member 2 Novel U 0.001121279191501263 -0.2523679256744491 1.0 12730 +381759 Wee2 WEE1 homolog 2 (S. pombe) Novel N 0.0011206991458009544 -0.2523739337687449 1.0 12731 +79555 BC005537 cDNA sequence BC005537 Novel U 0.0011204478451553128 -0.2523765367325714 1.0 12732 +117934533 Gm48551 predicted gene, 48551 Novel U 0.0011199261618833828 -0.2523819403107526 1.0 12733 +57432 Zc3h8 zinc finger CCCH type containing 8 Novel U 0.0011194735593494467 -0.25238662835292064 1.0 12734 +74778 Rrp7a ribosomal RNA processing 7 homolog A Novel U 0.00111836000713476 -0.2523981624901543 1.0 12735 +11425 Apoc4 apolipoprotein C-IV Novel U 0.00111744992674632 -0.25240758907290045 1.0 12736 +114604 Prdm15 PR domain containing 15 Novel U 0.0011168169304374244 -0.2524141456278594 1.0 12737 +13929 Amz2 archaelysin family metallopeptidase 2 Novel U 0.0011166225276090338 -0.2524161592459652 1.0 12738 +319885 Zcchc7 zinc finger, CCHC domain containing 7 Novel U 0.0011162147973507312 -0.2524203825025773 1.0 12739 +16881 Lig1 ligase I, DNA, ATP-dependent Novel U 0.0011156505036734204 -0.2524262274379367 1.0 12740 +399548 Scn4b sodium channel, type IV, beta Novel U 0.0011147986454222 -0.2524350509576995 1.0 12741 +213081 Wdr19 WD repeat domain 19 Novel U 0.0011146723495446956 -0.25243635912624696 1.0 12742 +14387 Gaa glucosidase, alpha, acid Novel U 0.0011146191787158707 -0.25243690986794404 1.0 12743 +71406 Spaar small regulatory polypeptide of amino acid response Novel N 0.0011144791683874635 -0.2524383600903231 1.0 12744 +217154 Stac2 SH3 and cysteine rich domain 2 Novel U 0.0011143273461658508 -0.25243993265990367 1.0 12745 +76571 Styxl1 serine/threonine/tyrosine interacting-like 1 Novel U 0.001114230591199697 -0.25244093484466246 1.0 12746 +665563 Mthfd2l methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 2-like Novel N 0.001114181283325895 -0.2524414455739984 1.0 12747 +68603 Pmvk phosphomevalonate kinase Novel N 0.0011141271380075636 -0.2524420064094257 1.0 12748 +317757 Gimap5 GTPase, IMAP family member 5 Novel U 0.0011138870144742049 -0.2524444936010906 1.0 12749 +435802 Cyp4a30b cytochrome P450, family 4, subfamily a, polypeptide 30b Novel U 0.0011138491586554049 -0.2524448857104173 1.0 12750 +18082 Nipsnap1 nipsnap homolog 1 Novel U 0.0011137441069949082 -0.25244597383206335 1.0 12751 +629059 Fam124a family with sequence similarity 124, member A Novel U 0.001112955583091054 -0.25245414133673816 1.0 12752 +69928 Cenps centromere protein S Novel U 0.0011128697160535134 -0.2524550307446902 1.0 12753 +665155 Srp54b signal recognition particle 54B Novel U 0.0011127841887330857 -0.2524559166338637 1.0 12754 +71020 Spats1 spermatogenesis associated, serine-rich 1 Novel U 0.0011123098946692843 -0.25246082935618497 1.0 12755 +12393 Runx2 runt related transcription factor 2 Novel U 0.0011122976396907764 -0.2524609562928495 1.0 12756 +12864 Cox6c cytochrome c oxidase subunit 6C Novel N 0.0011112717224936752 -0.25247158270945186 1.0 12757 +81015 Vmn1r56 vomeronasal 1 receptor 56 Novel U 0.0011111470548124645 -0.2524728740131956 1.0 12758 +12818 Col14a1 collagen, type XIV, alpha 1 Novel U 0.0011110730803210898 -0.25247364023854546 1.0 12759 +69480 Ttc9 tetratricopeptide repeat domain 9 Novel U 0.0011108702425869166 -0.2524757412251281 1.0 12760 +100101806 Srp54c signal recognition particle 54C Novel U 0.0011107338866016853 -0.25247715359594064 1.0 12761 +58867 Syngr4 synaptogyrin 4 Novel U 0.0011103896683131642 -0.2524807189976576 1.0 12762 +71984 Sars2 seryl-aminoacyl-tRNA synthetase 2 Novel N 0.001110023599631407 -0.2524845107250294 1.0 12763 +22437 Xirp1 xin actin-binding repeat containing 1 Novel U 0.00110980850740952 -0.25248673864319293 1.0 12764 +53901 Rcan2 regulator of calcineurin 2 Novel U 0.001109797844977305 -0.2524868490843153 1.0 12765 +67557 Larp6 La ribonucleoprotein 6, translational regulator Novel N 0.0011093342605362324 -0.25249165087671643 1.0 12766 +118567363 Gm21103 predicted gene, 21103 Novel U 0.0011087466712047336 -0.25249773710769613 1.0 12767 +100042976 Vmn1r246 vomeronasal 1 receptor 246 Novel U 0.0011087086483821563 -0.2524981309468424 1.0 12768 +53906 Phgr1 proline/histidine/glycine-rich 1 Novel U 0.0011086467808610267 -0.25249877176859253 1.0 12769 +94175 Hrg histidine-rich glycoprotein Novel U 0.0011086030402997669 -0.25249922483188814 1.0 12770 +320492 A830018L16Rik RIKEN cDNA A830018L16 gene Novel U 0.0011084945633394099 -0.25250034843267755 1.0 12771 +22240 Dpysl3 dihydropyrimidinase-like 3 Novel U 0.0011083557759403967 -0.2525017859879941 1.0 12772 +332359 Tigd3 tigger transposable element derived 3 Novel U 0.0011083408646704704 -0.2525019404384379 1.0 12773 +20833 Ssrp1 structure specific recognition protein 1 Novel U 0.0011083121256186866 -0.2525022381165915 1.0 12774 +20669 Sox14 SRY (sex determining region Y)-box 14 Novel N 0.001108310440148018 -0.2525022555746413 1.0 12775 +16536 Kcnq2 potassium voltage-gated channel, subfamily Q, member 2 Novel N 0.0011081672901455972 -0.2525037383176605 1.0 12776 +22750 Zfp9 zinc finger protein 9 Novel U 0.00110792831528231 -0.25250621361143855 1.0 12777 +59035 Carm1 coactivator-associated arginine methyltransferase 1 Novel U 0.0011071606340058839 -0.2525141652288636 1.0 12778 +94111 Mepe matrix extracellular phosphoglycoprotein with ASARM motif (bone) Novel U 0.0011070334893282404 -0.252515482189255 1.0 12779 +434689 Gm10220 predicted gene 10220 Novel U 0.0011069617368361859 -0.252516225399209 1.0 12780 +225659 Cep76 centrosomal protein 76 Novel U 0.0011063358593614678 -0.2525227082175175 1.0 12781 +108121 U2af1 U2 small nuclear ribonucleoprotein auxiliary factor (U2AF) 1 Novel U 0.001105103339109883 -0.2525354746217665 1.0 12782 +24128 Xrn2 5'-3' exoribonuclease 2 Novel N 0.0011045658951466333 -0.25254104144867034 1.0 12783 +12914 Crebbp CREB binding protein Novel U 0.0011045405384375135 -0.2525413040926298 1.0 12784 +21388 Tbx5 T-box 5 Novel U 0.0011045285348972582 -0.2525414284249052 1.0 12785 +13483 Dpp6 dipeptidylpeptidase 6 Novel U 0.001103772478940047 -0.252549259627656 1.0 12786 +108168578 Gm20825 predicted gene, 20825 Novel U 0.0011036634207678433 -0.2525503892486186 1.0 12787 +56749 Dhodh dihydroorotate dehydrogenase Novel U 0.001103170185965078 -0.25255549815849143 1.0 12788 +239853 Adgrg7 adhesion G protein-coupled receptor G7 Novel N 0.0011030066115939336 -0.2525571924564505 1.0 12789 +80982 Cemip cell migration inducing protein, hyaluronan binding Novel U 0.0011017128668616711 -0.2525705930218577 1.0 12790 +50787 Hs6st3 heparan sulfate 6-O-sulfotransferase 3 Novel U 0.0011015322083263433 -0.2525724642770278 1.0 12791 +109169 Igip IgA inducing protein Novel U 0.0011014452467455647 -0.2525733650222228 1.0 12792 +94215 Ugt2a1 UDP glucuronosyltransferase 2 family, polypeptide A1 Novel N 0.0011012506185406551 -0.2525753809747712 1.0 12793 +225997 Trpm6 transient receptor potential cation channel, subfamily M, member 6 Novel N 0.0011012223477346733 -0.2525756738028502 1.0 12794 +69736 Nup37 nucleoporin 37 Novel N 0.0011009451481696045 -0.25257854502683275 1.0 12795 +74255 Smu1 smu-1 suppressor of mec-8 and unc-52 homolog (C. elegans) Novel N 0.0011008059957163833 -0.2525799863633688 1.0 12796 +72080 Sapcd2 suppressor APC domain containing 2 Novel U 0.001100502592315803 -0.25258312900581814 1.0 12797 +101502 Hsd3b7 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 7 Novel N 0.0011004697700842151 -0.252583468977414 1.0 12798 +100039890 Gm15093 predicted gene 15093 Novel U 0.001100319326664082 -0.25258502726541415 1.0 12799 +11810 Apobec1 apolipoprotein B mRNA editing enzyme, catalytic polypeptide 1 Novel N 0.0010999178348637484 -0.2525891859042837 1.0 12800 +72927 Hepacam hepatocyte cell adhesion molecule Novel U 0.001099523485934159 -0.25259327055753283 1.0 12801 +626828 Vmn1r31 vomeronasal 1 receptor 31 Novel U 0.0010994944209412395 -0.25259357161177404 1.0 12802 +77522 Tmem213 transmembrane protein 213 Novel U 0.0010994700097344276 -0.25259382446225176 1.0 12803 +381493 S100a7a S100 calcium binding protein A7A Novel U 0.0010994433710257005 -0.25259410038512103 1.0 12804 +246735 AY074887 cDNA sequence AY074887 Novel U 0.0010992157190043341 -0.2525964583972747 1.0 12805 +231051 Kmt2c lysine (K)-specific methyltransferase 2C Novel U 0.0010992066379484544 -0.252596552458553 1.0 12806 +66168 Grina glutamate receptor, ionotropic, N-methyl D-aspartate-associated protein 1 (glutamate binding) Novel U 0.0010989776313750116 -0.2525989245011125 1.0 12807 +74044 Ttf2 transcription termination factor, RNA polymerase II Novel N 0.0010984898091885677 -0.2526039773472834 1.0 12808 +17434 Mocs2 molybdenum cofactor synthesis 2 Novel N 0.0010978791494005197 -0.25261030254129363 1.0 12809 +245671 Klf8 Kruppel-like transcription factor 8 Novel N 0.0010977367849627142 -0.2526117771474604 1.0 12810 +140557 Smc1b structural maintenance of chromosomes 1B Novel U 0.0010976887912735656 -0.25261227426451494 1.0 12811 +20387 Sftpa1 surfactant associated protein A1 Novel U 0.001097369863880087 -0.2526155777039724 1.0 12812 +66973 Mrps18b mitochondrial ribosomal protein S18B Novel U 0.0010971952558229687 -0.2526173862884881 1.0 12813 +71514 Sfpq splicing factor proline/glutamine rich (polypyrimidine tract binding protein associated) Novel U 0.0010971745958004307 -0.2526176002843224 1.0 12814 +75624 Metap1 methionyl aminopeptidase 1 Novel N 0.0010969000859905145 -0.2526204436479095 1.0 12815 +170765 Ripply3 ripply transcriptional repressor 3 Novel U 0.0010968147193809409 -0.2526213278724452 1.0 12816 +110187 Scgb2b26 secretoglobin, family 2B, member 26 Novel U 0.001096174387106928 -0.2526279604130896 1.0 12817 +74442 Sgms2 sphingomyelin synthase 2 Novel U 0.0010956849254437576 -0.25263303024090655 1.0 12818 +66166 S100a14 S100 calcium binding protein A14 Novel U 0.0010956256954930065 -0.25263364374278935 1.0 12819 +242384 Lingo2 leucine rich repeat and Ig domain containing 2 Novel U 0.0010955089855134285 -0.25263485262092117 1.0 12820 +66756 Cfap97 cilia and flagella associated protein 97 Novel U 0.001095454364389384 -0.25263541838472847 1.0 12821 +67554 Slc25a30 solute carrier family 25, member 30 Novel N 0.0010951677326594574 -0.2526383873067645 1.0 12822 +66628 Thg1l tRNA-histidine guanylyltransferase 1-like (S. cerevisiae) Novel U 0.0010948703176011613 -0.25264146792216136 1.0 12823 +11569 Aebp2 AE binding protein 2 Novel U 0.001094503874344852 -0.25264526352936406 1.0 12824 +622032 Vmn1r167 vomeronasal 1 receptor 167 Novel U 0.0010943432921829484 -0.2526469268341182 1.0 12825 +225631 Onecut2 one cut domain, family member 2 Novel N 0.001094270045158041 -0.2526476855243943 1.0 12826 +72147 Zbtb46 zinc finger and BTB domain containing 46 Novel N 0.0010941611441531772 -0.25264881351742274 1.0 12827 +408068 Zfp738 zinc finger protein 738 Novel U 0.0010937683856956286 -0.2526528816966148 1.0 12828 +68024 H2bc4 H2B clustered histone 4 Novel U 0.0010933943765268244 -0.2526567556712904 1.0 12829 +387314 Tmtc1 transmembrane and tetratricopeptide repeat containing 1 Novel N 0.0010932409234094788 -0.2526583451336354 1.0 12830 +72114 Zbed3 zinc finger, BED type containing 3 Novel U 0.001092962036857081 -0.25266123383137723 1.0 12831 +11614 Nr0b1 nuclear receptor subfamily 0, group B, member 1 Novel U 0.001092934065627799 -0.2526615235564506 1.0 12832 +27377 Yme1l1 YME1-like 1 (S. cerevisiae) Novel U 0.0010927190914146487 -0.2526637502522835 1.0 12833 +71176 Fbxo24 F-box protein 24 Novel U 0.0010926757766836364 -0.2526641989048435 1.0 12834 +241638 Lzts3 leucine zipper, putative tumor suppressor family member 3 Novel U 0.0010924978798255802 -0.25266604155465117 1.0 12835 +14667 Gm2a GM2 ganglioside activator protein Novel U 0.0010922569205280978 -0.2526685374031334 1.0 12836 +14629 Gclc glutamate-cysteine ligase, catalytic subunit Novel U 0.0010922254311277531 -0.25266886356930696 1.0 12837 +76376 Slc24a2 solute carrier family 24 (sodium/potassium/calcium exchanger), member 2 Novel U 0.001092213710518841 -0.25266898497098883 1.0 12838 +12876 Cpe carboxypeptidase E Novel U 0.001091578058445339 -0.2526755690342702 1.0 12839 +70248 Dazap1 DAZ associated protein 1 Novel U 0.0010915741994993583 -0.2526756090051058 1.0 12840 +14621 Gjb4 gap junction protein, beta 4 Novel N 0.0010910650840116145 -0.2526808824065916 1.0 12841 +110083 Dnah12 dynein, axonemal, heavy chain 12 Novel U 0.0010909869261494837 -0.25268169196315826 1.0 12842 +67054 Paics phosphoribosylaminoimidazole carboxylase, phosphoribosylaminoribosylaminoimidazole, succinocarboxamide synthetase Novel N 0.001090837154232973 -0.25268324329574593 1.0 12843 +63954 Rbp7 retinol binding protein 7, cellular Novel U 0.0010907796456393352 -0.2526838389678684 1.0 12844 +117167 Steap4 STEAP family member 4 Novel U 0.001090591700357623 -0.252685785698918 1.0 12845 +100043083 Vmn1r259 vomeronasal 1 receptor 259 Novel U 0.0010903834973192503 -0.25268794225914515 1.0 12846 +70054 Ccdc89 coiled-coil domain containing 89 Novel U 0.001090285557987346 -0.2526889567115254 1.0 12847 +11830 Aqp5 aquaporin 5 Novel U 0.0010901818149808649 -0.2526900312781762 1.0 12848 +110855 Pde6c phosphodiesterase 6C, cGMP specific, cone, alpha prime Novel N 0.0010899574867043508 -0.25269235486308994 1.0 12849 +100502590 Tex50 testis expressed 50 Novel U 0.0010893538340826423 -0.2526986074771016 1.0 12850 +670857 Vmn1r159 vomeronasal 1 receptor 159 Novel U 0.0010892789642490389 -0.25269938297637684 1.0 12851 +105439 Slain1 SLAIN motif family, member 1 Novel U 0.001089130891783403 -0.2527009167061083 1.0 12852 +63913 Niban1 niban apoptosis regulator 1 Novel U 0.0010886307001029489 -0.2527060976750915 1.0 12853 +117160 Ttyh2 tweety family member 2 Novel U 0.0010885765275884696 -0.25270665879221565 1.0 12854 +15493 Hsd3b2 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 2 Novel U 0.0010883058547936251 -0.2527094624121267 1.0 12855 +22297 Vmn1r45 vomeronasal 1 receptor 45 Novel U 0.0010880570925579378 -0.2527120390831864 1.0 12856 +17705 ATP6 ATP synthase F0 subunit 6 Novel N 0.0010880336625181785 -0.252712281770768 1.0 12857 +67224 Med29 mediator complex subunit 29 Novel U 0.00108748338544231 -0.2527179815226304 1.0 12858 +20422 Sem1 SEM1, 26S proteasome complex subunit Novel N 0.0010873941958477779 -0.25271890534551866 1.0 12859 +319180 H2bc7 H2B clustered histone 7 Novel U 0.001087089981413139 -0.25272205638863215 1.0 12860 +241289 Ppp1r26 protein phosphatase 1, regulatory subunit 26 Novel U 0.00108704478936145 -0.2527225244864179 1.0 12861 +71986 Ddx28 DEAD box helicase 28 Novel N 0.001087028070927172 -0.2527226976554106 1.0 12862 +56209 Gde1 glycerophosphodiester phosphodiesterase 1 Novel U 0.001086971501156786 -0.2527232836032326 1.0 12863 +330319 Wipf3 WAS/WASL interacting protein family, member 3 Novel U 0.0010865210789504029 -0.25272794906163953 1.0 12864 +78751 Zc3h6 zinc finger CCCH type containing 6 Novel U 0.0010863409313224119 -0.2527298150248482 1.0 12865 +547253 Parp14 poly (ADP-ribose) polymerase family, member 14 Novel U 0.001085105779658966 -0.25274260868517473 1.0 12866 +20672 Sox18 SRY (sex determining region Y)-box 18 Novel N 0.0010845445248765764 -0.2527484221437605 1.0 12867 +75617 Rps25 ribosomal protein S25 Novel N 0.0010845163915328988 -0.25274871354800943 1.0 12868 +16497 Kcnab1 potassium voltage-gated channel, shaker-related subfamily, beta member 1 Novel U 0.0010836300649535273 -0.25275789408958216 1.0 12869 +225876 Kdm2a lysine (K)-specific demethylase 2A Novel N 0.0010834832519585277 -0.2527594147737582 1.0 12870 +12780 Abcc2 ATP-binding cassette, sub-family member 2 Novel U 0.0010834095516318143 -0.2527601781593195 1.0 12871 +226026 Smc5 structural maintenance of chromosomes 5 Novel U 0.00108329311277284 -0.25276138422919303 1.0 12872 +17977 Ncoa1 nuclear receptor coactivator 1 Novel N 0.0010831667532632402 -0.2527626930568396 1.0 12873 +70976 Tektl1 tektin like 1 Novel U 0.0010824782522355532 -0.25276982452785113 1.0 12874 +171190 Vmn1r26 vomeronasal 1 receptor 26 Novel U 0.0010824423592082273 -0.25277019630664826 1.0 12875 +114886 Cygb cytoglobin Novel U 0.0010821820237276463 -0.2527728928529981 1.0 12876 +14148 Fdx1 ferredoxin 1 Novel N 0.0010817350494252865 -0.2527775225981284 1.0 12877 +12648 Chd1 chromodomain helicase DNA binding protein 1 Novel U 0.0010815011947255305 -0.25277994485742095 1.0 12878 +76763 Mospd2 motile sperm domain containing 2 Novel U 0.0010809306743410465 -0.25278585428880856 1.0 12879 +108168642 Gm20918 predicted gene, 20918 Novel U 0.0010808421819630718 -0.2527867708899506 1.0 12880 +207958 Alg11 ALG11 alpha-1,2-mannosyltransferase Novel U 0.0010806158381279367 -0.2527891153519543 1.0 12881 +625109 Vmn2r86 vomeronasal 2, receptor 86 Novel U 0.0010802541798928002 -0.25279286139606494 1.0 12882 +12799 Cnp 2',3'-cyclic nucleotide 3' phosphodiesterase Novel N 0.0010793521711526038 -0.25280220437294393 1.0 12883 +78321 Ankrd23 ankyrin repeat domain 23 Novel U 0.0010791890382608224 -0.2528038940980743 1.0 12884 +232164 Paip2b poly(A) binding protein interacting protein 2B Novel N 0.0010791354910443785 -0.252804448738382 1.0 12885 +72429 Dnajc25 DnaJ heat shock protein family (Hsp40) member C25 Novel U 0.001079058502630963 -0.2528052461818373 1.0 12886 +76080 Ttpal tocopherol (alpha) transfer protein-like Novel U 0.001079057215855017 -0.25280525951022026 1.0 12887 +20892 Cenpx centromere protein X Novel U 0.0010785814493062128 -0.25281018748449274 1.0 12888 +72565 Uaca uveal autoantigen with coiled-coil domains and ankyrin repeats Novel U 0.0010784939797447842 -0.2528110934913346 1.0 12889 +18477 Prdx1 peroxiredoxin 1 Novel U 0.0010783755155989389 -0.252812320539063 1.0 12890 +394430 Ugt1a10 UDP glycosyltransferase 1 family, polypeptide A10 Novel U 0.001078196179782463 -0.2528141780935547 1.0 12891 +100043037 Vmn1r250 vomeronasal 1 receptor 250 Novel U 0.0010781421021907607 -0.25281473822747186 1.0 12892 +269233 Fam171a1 family with sequence similarity 171, member A1 Novel U 0.0010780603951792763 -0.25281558454601083 1.0 12893 +226351 Tmem185b transmembrane protein 185B Novel U 0.001077823447638547 -0.25281803884084847 1.0 12894 +100503884 Ccdc149 coiled-coil domain containing 149 Novel U 0.0010775004270096367 -0.252821384677904 1.0 12895 +18508 Pax6 paired box 6 Novel U 0.0010773519239921847 -0.252822922867277 1.0 12896 +72656 Ints8 integrator complex subunit 8 Novel N 0.0010769139832966118 -0.2528274590426052 1.0 12897 +18947 Pnliprp2 pancreatic lipase-related protein 2 Novel U 0.0010768913024873446 -0.252827693969682 1.0 12898 +22778 Ikzf1 IKAROS family zinc finger 1 Novel U 0.0010760609372852926 -0.2528362948651481 1.0 12899 +12224 Klf5 Kruppel-like transcription factor 5 Novel N 0.00107594088505761 -0.2528375383621759 1.0 12900 +93713 Pcdhga5 protocadherin gamma subfamily A, 5 Novel U 0.0010757894234712584 -0.2528391071963083 1.0 12901 +380705 Tmem102 transmembrane protein 102 Novel U 0.0010752306446068223 -0.25284489500941726 1.0 12902 +68493 Ndufaf4 NADH:ubiquinone oxidoreductase complex assembly factor 4 Novel N 0.0010752114178044544 -0.25284509416000417 1.0 12903 +15469 Prmt1 protein arginine N-methyltransferase 1 Novel U 0.0010750805522167027 -0.25284644966146014 1.0 12904 +27052 Aoah acyloxyacyl hydrolase Novel N 0.0010749795053430493 -0.2528474963016557 1.0 12905 +67487 Dhx40 DEAH-box helicase 40 Novel U 0.0010749472634360023 -0.252847830262269 1.0 12906 +171202 Vmn1r16 vomeronasal 1 receptor 16 Novel U 0.0010749343864185786 -0.25284796364199214 1.0 12907 +106068 Slc45a4 solute carrier family 45, member 4 Novel U 0.001074430909834474 -0.2528531786358994 1.0 12908 +22269 Upk2 uroplakin 2 Novel N 0.0010737288550455944 -0.25286045049632383 1.0 12909 +277744 Srarp steroid receptor associated and regulated protein Novel U 0.001073357652703409 -0.25286429539798155 1.0 12910 +238276 Akap5 A kinase anchor protein 5 Novel U 0.0010731523600965608 -0.25286642181205465 1.0 12911 +223604 Kcnk9 potassium channel, subfamily K, member 9 Novel U 0.001072631750503946 -0.2528718142691008 1.0 12912 +68215 Fam98b family with sequence similarity 98, member B Novel N 0.001072371437790629 -0.25287451057962806 1.0 12913 +74195 Elp3 elongator acetyltransferase complex subunit 3 Novel N 0.0010715297935741674 -0.2528832283027546 1.0 12914 +69773 Timm29 translocase of inner mitochondrial membrane 29 Novel U 0.0010710702804493399 -0.2528879879245959 1.0 12915 +11656 Alas2 aminolevulinic acid synthase 2, erythroid Novel U 0.0010708402943471731 -0.25289037011308174 1.0 12916 +16424 Itih1 inter-alpha trypsin inhibitor, heavy chain 1 Novel U 0.0010705805145178708 -0.25289306090401387 1.0 12917 +270210 Zbtb47 zinc finger and BTB domain containing 47 Novel U 0.0010703644837323505 -0.2528952985437886 1.0 12918 +665033 Col6a5 collagen, type VI, alpha 5 Novel U 0.0010703560413845544 -0.2528953859893496 1.0 12919 +14659 Glrp1 glutamine repeat protein 1 Novel U 0.001070212095223641 -0.25289687697895236 1.0 12920 +381022 Kmt2d lysine (K)-specific methyltransferase 2D Novel U 0.0010699663721211554 -0.25289942217077016 1.0 12921 +18974 Pole2 polymerase (DNA directed), epsilon 2 (p59 subunit) Novel N 0.0010696101230702729 -0.2529031121867282 1.0 12922 +266744 Lgsn lengsin, lens protein with glutamine synthetase domain Novel U 0.001069215536724687 -0.2529071992991244 1.0 12923 +17991 Ndufa2 NADH:ubiquinone oxidoreductase subunit A2 Novel N 0.0010687539839495767 -0.2529119800475963 1.0 12924 +12841 Col9a3 collagen, type IX, alpha 3 Novel U 0.0010686704534967905 -0.25291284525328034 1.0 12925 +100042931 H2al1d H2A histone family member L1D Novel U 0.0010684765394157918 -0.25291485380895673 1.0 12926 +207965 Vcpkmt valosin containing protein lysine (K) methyltransferase Novel N 0.0010682261235813236 -0.25291744760793816 1.0 12927 +80283 Abtb1 ankyrin repeat and BTB domain containing 1 Novel U 0.001068109290690405 -0.25291865775918165 1.0 12928 +14115 Fbln2 fibulin 2 Novel U 0.001067802554077665 -0.252921834926933 1.0 12929 +67959 Puf60 poly-U binding splicing factor 60 Novel U 0.0010675578596824038 -0.25292436946343516 1.0 12930 +73582 Camkmt calmodulin-lysine N-methyltransferase Novel U 0.001067309559996781 -0.2529269413434165 1.0 12931 +66084 Rmnd1 required for meiotic nuclear division 1 homolog Novel U 0.001067244633394459 -0.25292761385102897 1.0 12932 +66988 Lap3 leucine aminopeptidase 3 Novel U 0.001066960970538094 -0.2529305520215703 1.0 12933 +233908 Fus fused in sarcoma Novel U 0.0010667131201787547 -0.25293311924744466 1.0 12934 +239554 Foxred2 FAD-dependent oxidoreductase domain containing 2 Novel U 0.0010666712367868568 -0.2529335530742411 1.0 12935 +66821 Bcs1l BCS1 homolog, ubiquinol-cytochrome c reductase complex chaperone Novel N 0.0010663940653749006 -0.2529364240066146 1.0 12936 +22122 Gfus GDP-L-fucose synthase Novel U 0.001066022606919122 -0.25294027156108856 1.0 12937 +50721 Sirt6 sirtuin 6 Novel U 0.0010658518771815197 -0.2529420399740982 1.0 12938 +27418 Mkln1 muskelin 1, intracellular mediator containing kelch motifs Novel U 0.0010653793328919507 -0.2529469345723155 1.0 12939 +110599584 Eef1ece2 Eef1akmt4-endothelin converting enzyme 2 readthrough Novel U 0.0010651984729397742 -0.2529488079137547 1.0 12940 +435946 Vmn1r245 vomeronasal 1 receptor 245 Novel U 0.0010650600462288628 -0.25295024173307573 1.0 12941 +81905 Cacng8 calcium channel, voltage-dependent, gamma subunit 8 Novel U 0.0010647729786160182 -0.25295321516997277 1.0 12942 +18973 Pole polymerase (DNA directed), epsilon Novel U 0.001064676535905189 -0.25295421412040114 1.0 12943 +22083 Ctr9 CTR9 homolog, Paf1/RNA polymerase II complex component Novel N 0.00106466690375044 -0.2529543138899434 1.0 12944 +252866 Adam34 a disintegrin and metallopeptidase domain 34 Novel U 0.0010639485366483504 -0.2529617547127718 1.0 12945 +21946 Pglyrp1 peptidoglycan recognition protein 1 Novel U 0.001063751763550913 -0.2529637928820465 1.0 12946 +66880 Rsrc1 arginine/serine-rich coiled-coil 1 Novel U 0.00106359537399121 -0.25296541275996487 1.0 12947 +243880 Nlrp4a NLR family, pyrin domain containing 4A Novel U 0.0010634412008186252 -0.25296700968061836 1.0 12948 +78303 H2bc27 H2B clustered histone 27 Novel U 0.0010629818052241794 -0.25297176808508376 1.0 12949 +98733 Obsl1 obscurin-like 1 Novel U 0.0010629591248544439 -0.2529720030076079 1.0 12950 +53895 Clpp caseinolytic mitochondrial matrix peptidase proteolytic subunit Novel N 0.0010627402397514606 -0.25297427021230917 1.0 12951 +654470 Tctn1 tectonic family member 1 Novel U 0.0010624428521441858 -0.25297735054336923 1.0 12952 +252972 Tpcn1 two pore channel 1 Novel U 0.001062334547853417 -0.2529784723556527 1.0 12953 +219114 Ska3 spindle and kinetochore associated complex subunit 3 Novel U 0.001061487793064581 -0.2529872430139199 1.0 12954 +109594 Lmo1 LIM domain only 1 Novel U 0.0010614814986865482 -0.2529873082108806 1.0 12955 +17859 Mxi1 MAX interactor 1, dimerization protein Novel U 0.0010612615618668466 -0.2529895863092291 1.0 12956 +67629 Spc24 SPC24, NDC80 kinetochore complex component, homolog (S. cerevisiae) Novel U 0.0010611807691098475 -0.2529904231579502 1.0 12957 +67997 Ddx59 DEAD box helicase 59 Novel U 0.001061152430228482 -0.25299071669115175 1.0 12958 +18948 Pnmt phenylethanolamine-N-methyltransferase Novel N 0.0010610075065782159 -0.2529922178055571 1.0 12959 +13171 Dbt dihydrolipoamide branched chain transacylase E2 Novel N 0.0010607580070673935 -0.25299480211328834 1.0 12960 +215814 Ccdc28a coiled-coil domain containing 28A Novel U 0.0010605128669473704 -0.252997341266593 1.0 12961 +668976 Ssxb6 SSX member B6 Novel U 0.0010604930531897933 -0.25299754649684264 1.0 12962 +67356 Tmco5 transmembrane and coiled-coil domains 5 Novel U 0.0010597006883932565 -0.2530057537853576 1.0 12963 +106877 Afap1l1 actin filament associated protein 1-like 1 Novel U 0.0010575370645174585 -0.25302816453033783 1.0 12964 +101488143 Hbb-bt hemoglobin, beta adult t chain Novel U 0.0010564761721904117 -0.2530391532181864 1.0 12965 +68533 Mphosph6 M phase phosphoprotein 6 Novel N 0.0010557719512258978 -0.2530464475157868 1.0 12966 +11834 Aqr aquarius Novel N 0.001055513518614022 -0.2530491243522851 1.0 12967 +101437 Dhx32 DEAH-box helicase 32 (putative) Novel U 0.001055147082780842 -0.25305291988259926 1.0 12968 +381405 Zfp663 zinc finger protein 663 Novel U 0.0010551152671299825 -0.25305324942806495 1.0 12969 +19223 Ptgis prostaglandin I2 (prostacyclin) synthase Novel U 0.0010550420098417671 -0.2530540082246481 1.0 12970 +77605 H2az2 H2A.Z histone variant 2 Novel U 0.0010550355327685855 -0.2530540753139592 1.0 12971 +11754 Aoc3 amine oxidase, copper containing 3 Novel N 0.001054949698398961 -0.25305496438353814 1.0 12972 +328329 Mast4 microtubule associated serine/threonine kinase family member 4 Novel U 0.0010548371411051038 -0.25305613024828777 1.0 12973 +14105 Srsf10 serine and arginine-rich splicing factor 10 Novel N 0.00105438991620334 -0.25306076258911847 1.0 12974 +21652 Phf1 PHD finger protein 1 Novel N 0.0010541000165993457 -0.2530637653596867 1.0 12975 +70099 Smc4 structural maintenance of chromosomes 4 Novel U 0.0010536073301227558 -0.25306886859001504 1.0 12976 +218763 Lrrc3b leucine rich repeat containing 3B Novel U 0.001053443486663276 -0.25307056567518227 1.0 12977 +217578 Baz1a bromodomain adjacent to zinc finger domain 1A Novel N 0.0010530445669373095 -0.2530746976725901 1.0 12978 +67916 Plpp3 phospholipid phosphatase 3 Novel U 0.0010529616627044601 -0.2530755563919086 1.0 12979 +100041806 LOC100041806 PRAME family member 9/15-like Novel U 0.0010528884129830122 -0.2530763151101154 1.0 12980 +26931 Ppp2r5c protein phosphatase 2, regulatory subunit B', gamma Novel U 0.001052247873033193 -0.253082949801859 1.0 12981 +110173 Manba mannosidase, beta A, lysosomal Novel N 0.0010519440631337805 -0.2530860966548099 1.0 12982 +381107 Tmem232 transmembrane protein 232 Novel U 0.0010516356898384017 -0.25308929077526626 1.0 12983 +66096 Lamtor4 late endosomal/lysosomal adaptor, MAPK and MTOR activator 4 Novel U 0.0010513365630594438 -0.25309238912060944 1.0 12984 +98870 AI182371 expressed sequence AI182371 Novel U 0.0010510050203838906 -0.2530958232287439 1.0 12985 +56031 Ppie peptidylprolyl isomerase E (cyclophilin E) Novel N 0.0010509331815660035 -0.253096567332858 1.0 12986 +14349 Fv1 Friend virus susceptibility 1 Novel U 0.0010509301833581525 -0.25309659838819637 1.0 12987 +17954 Nap1l2 nucleosome assembly protein 1-like 2 Novel U 0.0010503044485824366 -0.2531030797284333 1.0 12988 +68201 Ccdc34 coiled-coil domain containing 34 Novel N 0.0010493325290859914 -0.2531131468386274 1.0 12989 +20933 Med22 mediator complex subunit 22 Novel U 0.0010492466087990268 -0.25311403679813527 1.0 12990 +54368 Gp9 glycoprotein 9 platelet Novel U 0.0010486495132470972 -0.2531202214942337 1.0 12991 +209497 Tmem164 transmembrane protein 164 Novel N 0.0010484499093804018 -0.2531222889845233 1.0 12992 +73246 Rassf6 Ras association (RalGDS/AF-6) domain family member 6 Novel U 0.0010474981792721468 -0.2531321469736982 1.0 12993 +50758 Fbxl17 F-box and leucine-rich repeat protein 17 Novel U 0.0010471989500530348 -0.2531352463801131 1.0 12994 +230639 Cyp4a29 cytochrome P450, family 4, subfamily a, polypeptide 29 Novel U 0.0010469043535981546 -0.2531382978005084 1.0 12995 +100048658 Ddx43 DEAD box helicase 43 Novel U 0.001046224347415687 -0.2531453412821924 1.0 12996 +27397 Mrpl17 mitochondrial ribosomal protein L17 Novel U 0.0010458304403770666 -0.25314942135834945 1.0 12997 +17449 Mdh1 malate dehydrogenase 1, NAD (soluble) Novel U 0.0010457550431087162 -0.25315020232077645 1.0 12998 +18300 Fam3d FAM3 metabolism regulating signaling molecule D Novel U 0.001045498626241291 -0.25315285827826 1.0 12999 +69008 Cab39l calcium binding protein 39-like Novel U 0.0010453189986787518 -0.25315471885464785 1.0 13000 +270091 Lrrc36 leucine rich repeat containing 36 Novel U 0.0010439988880260318 -0.2531683925173924 1.0 13001 +103712 6330403K07Rik RIKEN cDNA 6330403K07 gene Novel U 0.0010434872211888247 -0.2531736923456721 1.0 13002 +78586 Srbd1 S1 RNA binding domain 1 Novel U 0.0010433748769971129 -0.2531748560031167 1.0 13003 +544717 Uqcc6 ubiquinol-cytochrome c reductase complex assembly factor 6 Novel U 0.0010432655518684488 -0.2531759883892055 1.0 13004 +72900 Ndufv2 NADH:ubiquinone oxidoreductase core subunit V2 Novel N 0.0010432532154256613 -0.2531761161696744 1.0 13005 +60525 Acss2 acyl-CoA synthetase short-chain family member 2 Novel N 0.0010429621529637874 -0.2531791309850863 1.0 13006 +69546 Mapk1ip1 mitogen-activated protein kinase 1 interacting protein 1 Novel U 0.0010426118801581087 -0.25318275909929294 1.0 13007 +18249 Obp1a odorant binding protein IA Novel U 0.0010422823295947899 -0.2531861725731944 1.0 13008 +21810 Tgfbi transforming growth factor, beta induced Novel U 0.001042096447268872 -0.2531880979362157 1.0 13009 +436336 Litafd LITAF domain containing Novel U 0.0010420392723240767 -0.25318869015241435 1.0 13010 +382867 Zfp488 zinc finger protein 488 Novel U 0.0010417605520032162 -0.2531915771283354 1.0 13011 +20185 Ncor1 nuclear receptor co-repressor 1 Novel U 0.001041716476892985 -0.2531920336568783 1.0 13012 +99311 Commd7 COMM domain containing 7 Novel U 0.0010416919271027216 -0.2531922879427988 1.0 13013 +66364 Pigbos1 Pigb opposite strand 1 Novel N 0.0010412307633812666 -0.25319706466146574 1.0 13014 +66248 Alg5 ALG5 dolichyl-phosphate beta-glucosyltransferase Novel N 0.0010411601229378489 -0.25319779635285644 1.0 13015 +57170 Dolpp1 dolichyl pyrophosphate phosphatase 1 Novel U 0.001040764355422262 -0.25320189569977275 1.0 13016 +12212 Chic1 cysteine-rich hydrophobic domain 1 Novel U 0.001039961604366734 -0.2532102105688169 1.0 13017 +12326 Camk4 calcium/calmodulin-dependent protein kinase IV Novel U 0.0010396649020064197 -0.25321328380211144 1.0 13018 +108168579 Gm21394 predicted gene, 21394 Novel U 0.0010393626114621262 -0.25321641491763197 1.0 13019 +280645 B3gat2 beta-1,3-glucuronyltransferase 2 Novel U 0.001039123773131212 -0.2532188887972122 1.0 13020 +320679 Samd12 sterile alpha motif domain containing 12 Novel N 0.0010384356223666325 -0.25322601664021 1.0 13021 +622320 Kctd21 potassium channel tetramerisation domain containing 21 Novel U 0.0010382805237514727 -0.2532276231465672 1.0 13022 +78772 Hhipl2 hedgehog interacting protein-like 2 Novel U 0.0010379644289011823 -0.2532308972466355 1.0 13023 +14395 Gabra2 gamma-aminobutyric acid type A receptor subunit alpha 2 Novel U 0.0010378186230674403 -0.25323240749866827 1.0 13024 +74648 S100pbp S100P binding protein Novel U 0.0010374981884184776 -0.25323572655022847 1.0 13025 +68479 Phf5a PHD finger protein 5A Novel N 0.0010374872075262671 -0.253235840289949 1.0 13026 +17364 Trpm1 transient receptor potential cation channel, subfamily M, member 1 Novel U 0.0010374677148635204 -0.25323604219430895 1.0 13027 +79456 Recql4 RecQ protein-like 4 Novel U 0.0010370723331605699 -0.25324013754499064 1.0 13028 +353188 Adam32 a disintegrin and metallopeptidase domain 32 Novel U 0.0010368356929969765 -0.25324258865602606 1.0 13029 +108168669 Gm21244 predicted gene, 21244 Novel U 0.001036747471345461 -0.2532435024529923 1.0 13030 +11925 Neurog3 neurogenin 3 Novel U 0.001036260838026508 -0.25324854298491284 1.0 13031 +75555 Nscme3l NSE3 homolog, SMC5-SMC6 complex component like Novel U 0.001035923386085915 -0.25325203830102033 1.0 13032 +76223 Agbl3 ATP/GTP binding protein-like 3 Novel U 0.0010358403068877816 -0.25325289883262353 1.0 13033 +252864 Dusp15 dual specificity phosphatase-like 15 Novel N 0.0010355961152322065 -0.2532554281617646 1.0 13034 +170706 Tmem37 transmembrane protein 37 Novel U 0.0010353962375414382 -0.2532574984883149 1.0 13035 +17089 Lyar Ly1 antibody reactive clone Novel U 0.001035129340554044 -0.2532602629985366 1.0 13036 +66489 Rpl35 ribosomal protein L35 Novel U 0.0010346020134402937 -0.2532657250354459 1.0 13037 +93881 Pcdhb10 protocadherin beta 10 Novel U 0.0010345189437544033 -0.2532665854685216 1.0 13038 +74748 Slamf8 SLAM family member 8 Novel U 0.0010342288079213191 -0.25326959068594296 1.0 13039 +19290 Pura purine rich element binding protein A Novel U 0.001033737484325711 -0.2532746797995949 1.0 13040 +72739 Zkscan3 zinc finger with KRAB and SCAN domains 3 Novel U 0.0010337144661216708 -0.25327491822139564 1.0 13041 +96875 Prg4 proteoglycan 4 (megakaryocyte stimulating factor, articular superficial zone protein) Novel U 0.0010329582280693451 -0.25328275131028166 1.0 13042 +67228 Dph7 diphthamine biosynethesis 7 Novel N 0.0010327733118056868 -0.25328466666686184 1.0 13043 +407831 Tmem204 transmembrane protein 204 Novel U 0.0010321495207429247 -0.2532911278741839 1.0 13044 +233865 Katnip katanin interacting protein Novel N 0.0010321007627407668 -0.2532916329079674 1.0 13045 +78697 Pus7 pseudouridylate synthase 7 Novel U 0.0010318695487300884 -0.25329402781508925 1.0 13046 +107065 Lrrtm2 leucine rich repeat transmembrane neuronal 2 Novel U 0.001031567882401155 -0.2532971524650076 1.0 13047 +18830 Pltp phospholipid transfer protein Novel N 0.0010315386166206617 -0.25329745559899985 1.0 13048 +217246 Ace3 angiotensin I converting enzyme 3 Novel U 0.0010315368285152278 -0.2532974741201372 1.0 13049 +79059 Nme3 NME/NM23 nucleoside diphosphate kinase 3 Novel U 0.0010314991184868327 -0.25329786471937166 1.0 13050 +93883 Pcdhb12 protocadherin beta 12 Novel U 0.0010313292631554498 -0.2532996240753104 1.0 13051 +19264 Ptprc protein tyrosine phosphatase receptor type C Novel U 0.0010311274206359455 -0.2533017147534922 1.0 13052 +328381 Sh2d4b SH2 domain containing 4B Novel U 0.001030902421015408 -0.2533040452921653 1.0 13053 +73212 3110082I17Rik RIKEN cDNA 3110082I17 gene Novel U 0.0010304355728545035 -0.25330888089006914 1.0 13054 +68549 Sgo2a shugoshin 2A Novel U 0.0010298313019268149 -0.2533151399084738 1.0 13055 +19244 Ptp4a2 protein tyrosine phosphatase 4a2 Novel U 0.0010289123290385899 -0.2533246585994404 1.0 13056 +100041057 LOC100041057 nuclear body protein SP140-like Novel U 0.0010288525512430816 -0.2533252777758812 1.0 13057 +12029 Bcl6b B cell CLL/lymphoma 6, member B Novel U 0.0010285456843991347 -0.2533284562925631 1.0 13058 +215201 Trmt2b TRM2 tRNA methyltransferase 2B Novel U 0.0010285072771041386 -0.2533288541140621 1.0 13059 +83454 Nxf2 nuclear RNA export factor 2 Novel U 0.0010282954417771312 -0.25333104829741554 1.0 13060 +207165 Bptf bromodomain PHD finger transcription factor Novel U 0.0010277776188531585 -0.25333641189023953 1.0 13061 +17153 Mal myelin and lymphocyte protein, T cell differentiation protein Novel U 0.0010275181099524962 -0.2533390998749017 1.0 13062 +12974 Cs citrate synthase Novel U 0.0010272473526810742 -0.25334190436981846 1.0 13063 +74213 Rbm26 RNA binding motif protein 26 Novel U 0.001027241884943621 -0.25334196100446327 1.0 13064 +83996 Mmp1b matrix metallopeptidase 1b (interstitial collagenase) Novel U 0.0010270815755731668 -0.2533436214836525 1.0 13065 +78655 Eif3j1 eukaryotic translation initiation factor 3, subunit J1 Novel U 0.0010270605333819105 -0.25334383943797784 1.0 13066 +12354 Car7 carbonic anhydrase 7 Novel U 0.0010266615734946846 -0.25334797185137464 1.0 13067 +55981 Pigb phosphatidylinositol glycan anchor biosynthesis, class B Novel U 0.0010266286746713031 -0.2533483126163057 1.0 13068 +75209 Sv2c synaptic vesicle glycoprotein 2c Novel U 0.001026487567439425 -0.25334977420037486 1.0 13069 +338359 Supv3l1 suppressor of var1, 3-like 1 (S. cerevisiae) Novel U 0.0010264487723615637 -0.253350176038516 1.0 13070 +74735 Trim14 tripartite motif-containing 14 Novel U 0.0010264370967018209 -0.2533502969746158 1.0 13071 +68094 Smarcc2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily c, member 2 Novel U 0.001026356457735432 -0.2533511322303788 1.0 13072 +20525 Slc2a1 solute carrier family 2 (facilitated glucose transporter), member 1 Novel U 0.0010260362826007782 -0.2533544485938984 1.0 13073 +16468 Jarid2 jumonji and AT-rich interaction domain containing 2 Novel U 0.0010258255468495253 -0.2533566313878823 1.0 13074 +140475 Bsnd barttin CLCNK type accessory beta subunit Novel N 0.001025525287330133 -0.2533597414661136 1.0 13075 +228026 Pdk1 pyruvate dehydrogenase kinase, isoenzyme 1 Novel N 0.0010252532278157628 -0.25336255944962 1.0 13076 +114479 Slc5a5 solute carrier family 5 (sodium iodide symporter), member 5 Novel U 0.001025135062948461 -0.25336378339743104 1.0 13077 +546205 Spin2h spindlin family, member 2H Novel U 0.0010247387350804996 -0.2533678885484588 1.0 13078 +228869 Ncoa5 nuclear receptor coactivator 5 Novel U 0.001024685985340642 -0.25336843492853023 1.0 13079 +12759 Clu clusterin Novel U 0.001024381497555088 -0.2533715888030035 1.0 13080 +14595 B4galt1 UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 1 Novel U 0.0010243489977950296 -0.2533719254344498 1.0 13081 +75553 Zc3h14 zinc finger CCCH type containing 14 Novel N 0.001024054936250808 -0.25337497131425807 1.0 13082 +70351 Ppp4r1 protein phosphatase 4, regulatory subunit 1 Novel U 0.0010233149314470198 -0.2533826362596894 1.0 13083 +320454 Tmprss11g transmembrane protease, serine 11g Novel U 0.0010223959071940588 -0.2533921554826903 1.0 13084 +30924 Angptl3 angiopoietin-like 3 Novel U 0.0010219851006940165 -0.2533964106029132 1.0 13085 +18025 Nfe2l3 nuclear factor, erythroid derived 2, like 3 Novel N 0.0010213594877748968 -0.2534028906809635 1.0 13086 +73694 Ndufaf7 NADH:ubiquinone oxidoreductase complex assembly factor 7 Novel N 0.001021103983784422 -0.2534055371828976 1.0 13087 +381802 Tsen2 tRNA splicing endonuclease subunit 2 Novel N 0.0010209825385272173 -0.2534067951088794 1.0 13088 +100503924 Fcor Foxo1 corepressor Novel U 0.0010209629301580578 -0.2534069982117226 1.0 13089 +76448 Ppp1r18 protein phosphatase 1, regulatory subunit 18 Novel U 0.001020958961665039 -0.25340703931724284 1.0 13090 +19012 Plpp1 phospholipid phosphatase 1 Novel U 0.0010206379074273499 -0.2534103647864827 1.0 13091 +68277 2310057M21Rik RIKEN cDNA 2310057M21 gene Novel U 0.0010198808147590627 -0.25341820672745274 1.0 13092 +74782 Glt8d2 glycosyltransferase 8 domain containing 2 Novel U 0.001019825621409053 -0.25341877841835775 1.0 13093 +11666 Abcd1 ATP-binding cassette, sub-family D member 1 Novel U 0.0010196189162344704 -0.25342091946376105 1.0 13094 +66337 Fam229b family with sequence similarity 229, member B Novel U 0.0010194667120265706 -0.25342249598994304 1.0 13095 +243277 Adgrd1 adhesion G protein-coupled receptor D1 Novel N 0.0010192844967552692 -0.25342438336973316 1.0 13096 +234311 Ddx60 DExD/H box helicase 60 Novel U 0.0010186589245627224 -0.2534308630259389 1.0 13097 +246133 Kcne2 potassium voltage-gated channel, Isk-related subfamily, gene 2 Novel U 0.0010186181743217153 -0.2534312851155957 1.0 13098 +70466 Ckap2l cytoskeleton associated protein 2-like Novel U 0.0010183712900363202 -0.25343384233490795 1.0 13099 +244550 Podnl1 podocan-like 1 Novel U 0.001017484253064527 -0.25344303023470205 1.0 13100 +11717 Ampd3 adenosine monophosphate deaminase 3 Novel U 0.0010173495836424626 -0.2534444251361488 1.0 13101 +15430 Hoxd10 homeobox D10 Novel N 0.0010171810024968931 -0.25344617129411273 1.0 13102 +319670 Eml5 echinoderm microtubule associated protein like 5 Novel U 0.0010170278533464673 -0.2534477576079784 1.0 13103 +20538 Slc6a2 solute carrier family 6 (neurotransmitter transporter, noradrenalin), member 2 Novel N 0.001016991217066587 -0.253448137085361 1.0 13104 +107770 Tm6sf2 transmembrane 6 superfamily member 2 Novel N 0.0010167575039724762 -0.25345055787790693 1.0 13105 +24083 Natd1 N-acetyltransferase domain containing 1 Novel U 0.001015888396657681 -0.25345956006290316 1.0 13106 +26896 Med14 mediator complex subunit 14 Novel N 0.0010156649964789546 -0.25346187403461057 1.0 13107 +237211 Fancb Fanconi anemia, complementation group B Novel U 0.0010154766848186078 -0.253463824560598 1.0 13108 +100505386 Iqschfp Iqcj and Schip1 fusion protein Novel U 0.0010146833404813275 -0.25347204199516377 1.0 13109 +105722 Ano6 anoctamin 6 Novel U 0.0010145258112375165 -0.25347367367789264 1.0 13110 +226162 Dpcd deleted in primary ciliary dyskinesia Novel U 0.0010144674472881924 -0.25347427820976115 1.0 13111 +243867 Fbxo46 F-box protein 46 Novel U 0.0010143778125911891 -0.25347520664300616 1.0 13112 +626391 Zfp951 zinc finger protein 951 Novel U 0.0010128079886507217 -0.2534914668277763 1.0 13113 +243373 AI854703 expressed sequence AI854703 Novel U 0.0010127929041409268 -0.2534916230726329 1.0 13114 +234072 Adprhl1 ADP-ribosylhydrolase like 1 Novel U 0.0010120597204127018 -0.2534992173655877 1.0 13115 +100039315 Pramel51 PRAME like 51 Novel U 0.0010119548628806571 -0.25350030347645763 1.0 13116 +328801 Zfp414 zinc finger protein 414 Novel U 0.0010119106456354585 -0.25350076147722983 1.0 13117 +65115 Bean1 brain expressed, associated with Nedd4, 1 Novel N 0.0010119049179045658 -0.2535008208048781 1.0 13118 +328695 Ftdc1 ferritin domain containing 1 Novel U 0.0010111826879975361 -0.2535083016385131 1.0 13119 +330050 Fam185a family with sequence similarity 185, member A Novel U 0.001010733332777129 -0.25351295604511437 1.0 13120 +230027 Coq3 coenzyme Q3 methyltransferase Novel N 0.0010104752202863682 -0.25351562956580864 1.0 13121 +56426 Pdcd10 programmed cell death 10 Novel U 0.0010104346711205551 -0.25351604957273516 1.0 13122 +333048 Lhfpl7 LHFPL tetraspan subfamily member 7 Novel U 0.0010103621979993033 -0.2535168002469427 1.0 13123 +329384 Ptrh1 peptidyl-tRNA hydrolase 1 homolog Novel U 0.0010101604433491085 -0.25351889001497707 1.0 13124 +223770 Brd1 bromodomain containing 1 Novel U 0.001009278346351649 -0.2535280267466794 1.0 13125 +320727 Ipo8 importin 8 Novel U 0.001009255802999529 -0.25352826024997954 1.0 13126 +66139 Mymk myomaker, myoblast fusion factor Novel U 0.001008905243482025 -0.25353189133393783 1.0 13127 +30057 Timm8b translocase of inner mitochondrial membrane 8B Novel U 0.0010088250275335272 -0.2535327222080954 1.0 13128 +243043 Kctd8 potassium channel tetramerisation domain containing 8 Novel U 0.0010085678859576943 -0.25353538567208483 1.0 13129 +68009 Defa20 defensin, alpha, 20 Novel U 0.0010084405225841266 -0.2535367048977214 1.0 13130 +11657 Alb albumin Novel U 0.0010080869208343823 -0.2535403674930212 1.0 13131 +57746 Piwil2 piwi-like RNA-mediated gene silencing 2 Novel N 0.0010079697907057624 -0.253541580723043 1.0 13132 +13494 Drg1 developmentally regulated GTP binding protein 1 Novel U 0.0010076140428481642 -0.25354526554765744 1.0 13133 +228033 Atp5mc3 ATP synthase membrane subunit c locus 3 Novel N 0.0010074476517049715 -0.2535469890216488 1.0 13134 +69009 Thap7 THAP domain containing 7 Novel N 0.0010074383248601171 -0.2535470856288012 1.0 13135 +216019 Hkdc1 hexokinase domain containing 1 Novel N 0.0010065685411632884 -0.2535560948197404 1.0 13136 +12592 Cdx4 caudal type homeobox 4 Novel N 0.0010057205723574495 -0.25356487805275574 1.0 13137 +67186 Rplp2 ribosomal protein lateral stalk subunit P2 Novel U 0.001005542188083712 -0.25356672575119904 1.0 13138 +78258 Mroh9 maestro heat-like repeat family member 9 Novel U 0.001005491050490125 -0.25356725543271236 1.0 13139 +320840 Negr1 neuronal growth regulator 1 Novel U 0.001005461849230006 -0.2535675578984048 1.0 13140 +66583 Exosc1 exosome component 1 Novel N 0.0010052278823401333 -0.25356998131975883 1.0 13141 +56215 Acin1 apoptotic chromatin condensation inducer 1 Novel U 0.0010048925823324987 -0.25357345434621553 1.0 13142 +12228 Btg3 BTG anti-proliferation factor 3 Novel N 0.0010046202832462699 -0.2535762748111993 1.0 13143 +11370 Acadvl acyl-Coenzyme A dehydrogenase, very long chain Novel U 0.0010045906279443463 -0.2535765819798418 1.0 13144 +74720 Tmem114 transmembrane protein 114 Novel U 0.0010043462170067168 -0.25357911358029916 1.0 13145 +632534 Vmn1r191 vomeronasal 1 receptor 191 Novel U 0.0010042174039542277 -0.25358044782166234 1.0 13146 +66566 Ntpcr nucleoside-triphosphatase, cancer-related Novel U 0.001003953715394606 -0.2535831790990946 1.0 13147 +71691 Pnma8a PNMA family member 8A Novel U 0.0010039345221560078 -0.25358337790202906 1.0 13148 +230883 Aadacl3 arylacetamide deacetylase like 3 Novel U 0.0010033863777893612 -0.25358905556335953 1.0 13149 +24060 Slc35a1 solute carrier family 35 (CMP-sialic acid transporter), member 1 Novel U 0.0010032387525579034 -0.25359058466065404 1.0 13150 +53861 Zranb2 zinc finger, RAN-binding domain containing 2 Novel U 0.0010030864997421158 -0.2535921616903149 1.0 13151 +239463 Fam83a family with sequence similarity 83, member A Novel U 0.0010024288888896313 -0.25359897320190716 1.0 13152 +18011 Neurl1a neuralized E3 ubiquitin protein ligase 1A Novel U 0.0010021110966329074 -0.25360226488365545 1.0 13153 +215257 Il36g interleukin 36G Novel U 0.0010020715963503755 -0.2536026740262834 1.0 13154 +230088 Atosb atos homolog B Novel U 0.0010020553288050485 -0.25360284252498316 1.0 13155 +109575 Tbx10 T-box 10 Novel U 0.001002029058860072 -0.25360311462820967 1.0 13156 +66867 Hmg20a high mobility group 20A Novel U 0.0010016072190289806 -0.25360748403131284 1.0 13157 +19132 Prph peripherin Novel U 0.0010009455359384087 -0.25361433772301334 1.0 13158 +74032 Sdr42e1 short chain dehydrogenase/reductase family 42E, member 1 Novel U 0.0010006469788905383 -0.25361743016710064 1.0 13159 +66350 Pla2g12a phospholipase A2, group XIIA Novel U 0.0010005293202565617 -0.25361864887136354 1.0 13160 +68346 Sirt5 sirtuin 5 Novel N 0.0010003695892362293 -0.2536203033600213 1.0 13161 +12556 Cdh16 cadherin 16 Novel U 0.00100027469569843 -0.25362128626416636 1.0 13162 +622404 Ccdc107 coiled-coil domain containing 107 Novel U 0.001000162128160027 -0.25362245223502866 1.0 13163 +26874 Abcd2 ATP-binding cassette, sub-family D member 2 Novel N 0.0010000554138491465 -0.25362355757835275 1.0 13164 +218977 Dlgap5 DLG associated protein 5 Novel U 0.0009996192566957562 -0.25362807527980963 1.0 13165 +241274 Pnpla7 patatin-like phospholipase domain containing 7 Novel U 0.0009993495412081036 -0.25363086898396436 1.0 13166 +67707 Mrpl24 mitochondrial ribosomal protein L24 Novel U 0.0009989791240105849 -0.2536347057531194 1.0 13167 +320007 Sidt1 SID1 transmembrane family, member 1 Novel U 0.0009987601461470177 -0.25363697391863177 1.0 13168 +20931 Surf2 surfeit gene 2 Novel U 0.0009986506670594574 -0.25363810789942176 1.0 13169 +85308 Emc9 ER membrane protein complex subunit 9 Novel U 0.0009985546479272028 -0.2536391024624372 1.0 13170 +73132 Slc25a16 solute carrier family 25 (mitochondrial carrier, Graves disease autoantigen), member 16 Novel N 0.0009981220032481346 -0.2536435837818005 1.0 13171 +94279 Sfxn2 sideroflexin 2 Novel N 0.0009980580178784587 -0.25364424654015627 1.0 13172 +76915 Mnd1 meiotic nuclear divisions 1 Novel U 0.000997635243646637 -0.2536486256217515 1.0 13173 +66264 Ccdc28b coiled coil domain containing 28B Novel U 0.0009975721794287823 -0.2536492788388469 1.0 13174 +109263 Rlf rearranged L-myc fusion sequence Novel U 0.0009968973295948465 -0.2536562689112423 1.0 13175 +403395 Clec3a C-type lectin domain family 3, member a Novel N 0.0009966069093929452 -0.2536592770741466 1.0 13176 +192174 Rwdd4a RWD domain containing 4A Novel U 0.0009962708473542818 -0.25366275799369564 1.0 13177 +67856 Echdc3 enoyl Coenzyme A hydratase domain containing 3 Novel N 0.0009961235786729757 -0.2536642833978554 1.0 13178 +627537 Vmn2r100 vomeronasal 2, receptor 100 Novel U 0.000996024887265043 -0.25366530564021444 1.0 13179 +260305 Nphp4 nephronophthisis 4 (juvenile) homolog (human) Novel U 0.0009957367726260594 -0.2536682899221738 1.0 13180 +54393 Gabbr1 gamma-aminobutyric acid type B receptor subunit 1 Novel N 0.000995570213897764 -0.2536700151320061 1.0 13181 +74987 Cldn34d claudin 34D Novel U 0.0009954052974636128 -0.25367172333100974 1.0 13182 +73634 Chct1 CHD1 helical C-terminal domain containing 1 Novel U 0.0009953305915151697 -0.2536724971327679 1.0 13183 +57252 Tas2r105 taste receptor, type 2, member 105 Novel U 0.0009951830204479929 -0.2536740256690306 1.0 13184 +75137 Rprd2 regulation of nuclear pre-mRNA domain containing 2 Novel U 0.0009949228077806693 -0.2536767209432847 1.0 13185 +106639 Vmac vimentin-type intermediate filament associated coiled-coil protein Novel U 0.0009947067196377911 -0.2536789591771651 1.0 13186 +68926 Ubap2 ubiquitin-associated protein 2 Novel U 0.0009940052706174018 -0.25368622476305935 1.0 13187 +13809 Enpep glutamyl aminopeptidase Novel N 0.0009936290045492284 -0.25369012211462444 1.0 13188 +17063 Muc13 mucin 13, epithelial transmembrane Novel U 0.0009934901345408944 -0.25369156052560565 1.0 13189 +66236 1500011B03Rik RIKEN cDNA 1500011B03 gene Novel U 0.0009933812821694109 -0.25369268801489114 1.0 13190 +319387 Adgrl3 adhesion G protein-coupled receptor L3 Novel N 0.00099327266823834 -0.25369381303441874 1.0 13191 +244329 Mcph1 microcephaly, primary autosomal recessive 1 Novel N 0.0009931980556889008 -0.25369458586875304 1.0 13192 +624439 Scgb2b15 secretoglobin, family 2B, member 15 Novel U 0.0009923803956700906 -0.25370305516434877 1.0 13193 +57376 Smarce1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily e, member 1 Novel U 0.000992357160190717 -0.2537032958366803 1.0 13194 +100039934 Gm15085 predicted gene 15085 Novel U 0.0009922033994260282 -0.25370488848562633 1.0 13195 +83383 Tfap4 transcription factor AP4 Novel U 0.0009921115860667149 -0.2537058394853839 1.0 13196 +106029237 Tcstv2b 2 cell stage variable group member 2B Novel U 0.0009920011624203853 -0.25370698324988256 1.0 13197 +110454 Ly6a lymphocyte antigen 6 family member A Novel U 0.0009919985445977467 -0.25370701036520343 1.0 13198 +100579149 Gm17416 predicted gene, 17416 Novel U 0.0009915813304162563 -0.2537113318559801 1.0 13199 +51796 Srrm1 serine/arginine repetitive matrix 1 Novel N 0.0009912945257209357 -0.25371430256958605 1.0 13200 +218440 Ankrd34b ankyrin repeat domain 34B Novel U 0.000990749322962475 -0.2537199497618356 1.0 13201 +56690 Mlycd malonyl-CoA decarboxylase Novel N 0.0009906496165863494 -0.2537209825172018 1.0 13202 +246787 Slc5a2 solute carrier family 5 (sodium/glucose cotransporter), member 2 Novel U 0.0009898194561206225 -0.2537295812920158 1.0 13203 +435951 Vmn1r122 vomeronasal 1 receptor 122 Novel U 0.000989543243585211 -0.25373244229237757 1.0 13204 +625638 Fam43b family with sequence similarity 43, member B Novel U 0.0009894399177896491 -0.25373351253757137 1.0 13205 +27370 Rps26 ribosomal protein S26 Novel U 0.0009887371337833832 -0.25374079195120547 1.0 13206 +270624 Spin4 spindlin family, member 4 Novel U 0.0009879543120801567 -0.2537489003926736 1.0 13207 +60411 Cenpk centromere protein K Novel U 0.0009879419012748508 -0.253749028943387 1.0 13208 +229588 Gm128 predicted gene 128 Novel N 0.0009873979981770092 -0.2537546626737946 1.0 13209 +242584 Dnai4 dynein axonemal intermediate chain 4 Novel U 0.0009871803261215588 -0.25375691731378935 1.0 13210 +94315 Prcc papillary renal cell carcinoma (translocation-associated) Novel U 0.000986303361882295 -0.253766000880551 1.0 13211 +76365 Tbx18 T-box18 Novel U 0.0009858150910067927 -0.2537710583742284 1.0 13212 +17183 Matn4 matrilin 4 Novel U 0.0009856972728706662 -0.25377227873060937 1.0 13213 +230848 Zbtb40 zinc finger and BTB domain containing 40 Novel N 0.0009856764702288847 -0.2537724942036891 1.0 13214 +56529 Sec11a SEC11 homolog A, signal peptidase complex subunit Novel N 0.0009855223664496308 -0.2537740904055687 1.0 13215 +113850 V1ra8 vomeronasal 1 receptor, A8 Novel U 0.0009853465131887042 -0.2537759118878645 1.0 13216 +269470 Wdr3 WD repeat domain 3 Novel N 0.0009846570100652994 -0.25378305373855053 1.0 13217 +225583 Minar2 membrane integral NOTCH2 associated receptor 2 Novel U 0.0009843337291846584 -0.25378640227128496 1.0 13218 +66223 Mrpl35 mitochondrial ribosomal protein L35 Novel U 0.000983969387950052 -0.25379017610581595 1.0 13219 +69080 Gmppa GDP-mannose pyrophosphorylase A Novel U 0.0009837024967771773 -0.253792940555811 1.0 13220 +77721 Mrps5 mitochondrial ribosomal protein S5 Novel U 0.0009830046834939357 -0.25380016848285947 1.0 13221 +18584 Pde8a phosphodiesterase 8A Novel U 0.000982792559339093 -0.2538023656578821 1.0 13222 +78523 Mrpl9 mitochondrial ribosomal protein L9 Novel U 0.0009827693816993777 -0.25380260573111235 1.0 13223 +227331 Gigyf2 GRB10 interacting GYF protein 2 Novel U 0.0009820917788414207 -0.2538096243192401 1.0 13224 +75686 Nudt16 nudix hydrolase 16 Novel U 0.0009817351345546106 -0.25381331842903876 1.0 13225 +668137 Eif4a3l1 eukaryotic translation initiation factor 4A3 like 1 Novel U 0.0009816635327436832 -0.2538140600782426 1.0 13226 +26944 Tinag tubulointerstitial nephritis antigen Novel N 0.0009815823114230342 -0.25381490136601187 1.0 13227 +57263 Retnlb resistin like beta Novel U 0.000981521666850243 -0.25381552952050324 1.0 13228 +100043614 Vmn1r137 vomeronasal 1 receptor 137 Novel U 0.0009813477657935191 -0.2538173307819321 1.0 13229 +67582 Slc25a26 solute carrier family 25 (mitochondrial carrier, phosphate carrier), member 26 Novel U 0.000981250649233913 -0.253818336712064 1.0 13230 +16673 Krt36 keratin 36 Novel U 0.0009805674036954654 -0.25382541374689077 1.0 13231 +83815 Cenpq centromere protein Q Novel U 0.0009804246629792764 -0.2538268922505367 1.0 13232 +436003 Hbb-bh2 hemoglobin beta, bh2 Novel U 0.000980027078809723 -0.253831010414295 1.0 13233 +100039781 Hrct1 histidine rich carboxyl terminus 1 Novel U 0.0009800105573245124 -0.2538311815432957 1.0 13234 +223658 Mroh1 maestro heat-like repeat family member 1 Novel U 0.000979949889049391 -0.2538318099432951 1.0 13235 +14423 Galnt1 polypeptide N-acetylgalactosaminyltransferase 1 Novel U 0.000979438916920286 -0.25383710257581105 1.0 13236 +320271 Scai suppressor of cancer cell invasion Novel N 0.0009793889503436149 -0.2538376201279696 1.0 13237 +654824 Ankrd37 ankyrin repeat domain 37 Novel U 0.0009790056499254973 -0.25384159034110015 1.0 13238 +171278 Vmn1r197 vomeronasal 1 receptor 197 Novel U 0.0009789499384952668 -0.2538421673982631 1.0 13239 +171167 Fut10 fucosyltransferase 10 Novel N 0.000978886510550951 -0.25384282438282524 1.0 13240 +70202 Ctsll3 cathepsin L-like 3 Novel U 0.000978880790177801 -0.2538428836342623 1.0 13241 +244885 Sh2d7 SH2 domain containing 7 Novel U 0.0009788650782998638 -0.2538430463773774 1.0 13242 +56195 Ptbp2 polypyrimidine tract binding protein 2 Novel N 0.0009787605012898703 -0.25384412958260916 1.0 13243 +11829 Aqp4 aquaporin 4 Novel U 0.000978600693034388 -0.2538457848712661 1.0 13244 +399674 Tdpoz3 TD and POZ domain containing 3 Novel U 0.00097851656166258 -0.2538466563012496 1.0 13245 +56492 Cldn18 claudin 18 Novel U 0.0009783141553621256 -0.2538487528190559 1.0 13246 +50935 St6galnac6 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 6 Novel N 0.0009779419269022645 -0.2538526083492068 1.0 13247 +71768 Vwce von Willebrand factor C and EGF domains Novel U 0.0009774039936717256 -0.2538581802439251 1.0 13248 +212508 Mtg1 mitochondrial ribosome-associated GTPase 1 Novel N 0.000977239060145655 -0.2538598886199663 1.0 13249 +69639 Exosc8 exosome component 8 Novel N 0.0009769290394868232 -0.2538630998037591 1.0 13250 +170736 Parvb parvin, beta Novel U 0.0009767776941223964 -0.2538646674340686 1.0 13251 +14051 Eya4 EYA transcriptional coactivator and phosphatase 4 Novel U 0.0009767580633554184 -0.2538648707689076 1.0 13252 +380780 Serpina11 serine (or cysteine) peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 11 Novel U 0.0009766345123044043 -0.2538661505066325 1.0 13253 +229675 Rsbn1 rosbin, round spermatid basic protein 1 Novel U 0.0009764972596495692 -0.25386757216511935 1.0 13254 +93722 Pcdhga10 protocadherin gamma subfamily A, 10 Novel U 0.0009763976295754846 -0.25386860413015155 1.0 13255 +17357 Marcksl1 MARCKS-like 1 Novel U 0.0009762044295987244 -0.2538706052891597 1.0 13256 +100040937 Cldn34b1 claudin 34B1 Novel U 0.0009761469197582937 -0.25387120097419635 1.0 13257 +13086 Cyp2a4 cytochrome P450, family 2, subfamily a, polypeptide 4 Novel U 0.0009758551488507514 -0.2538742231276652 1.0 13258 +11677 Akr1b1 aldo-keto reductase family 1 member B Novel U 0.0009758163308547002 -0.25387462520319226 1.0 13259 +240960 Dnah14 dynein, axonemal, heavy chain 14 Novel U 0.0009757687636919614 -0.2538751179023002 1.0 13260 +667268 Vmn1r116 vomeronasal 1 receptor 116 Novel U 0.000975480786075538 -0.2538781007649844 1.0 13261 +269003 Sap130 Sin3A associated protein Novel N 0.0009753105594216167 -0.2538798639670698 1.0 13262 +232947 Ppp1r37 protein phosphatase 1, regulatory subunit 37 Novel U 0.0009752798607275516 -0.2538801819431338 1.0 13263 +68169 Ndnf neuron-derived neurotrophic factor Novel U 0.0009751577284876482 -0.2538814469848598 1.0 13264 +233033 Samd4b sterile alpha motif domain containing 4B Novel U 0.000974573677881222 -0.2538874965618415 1.0 13265 +23992 Prkra protein kinase, interferon inducible double stranded RNA dependent activator Novel N 0.0009744221452789261 -0.25388906613155476 1.0 13266 +110323 Cox6b1 cytochrome c oxidase, subunit 6B1 Novel U 0.0009743523572621635 -0.25388978899353826 1.0 13267 +55987 Cpxm2 carboxypeptidase X, M14 family member 2 Novel U 0.0009742800346688504 -0.2538905381085823 1.0 13268 +78651 Lsm6 LSM6 homolog, U6 small nuclear RNA and mRNA degradation associated Novel N 0.0009742670121963094 -0.25389067299492474 1.0 13269 +22768 Zfy2 zinc finger protein 2, Y-linked Novel U 0.0009742663634894246 -0.25389067971420937 1.0 13270 +27378 Tcl1b3 T cell leukemia/lymphoma 1B, 3 Novel U 0.0009741000461788919 -0.25389240242344446 1.0 13271 +66573 Dzip1 DAZ interacting protein 1 Novel U 0.0009736023326606053 -0.2538975577237054 1.0 13272 +75064 Zcchc13 zinc finger, CCHC domain containing 13 Novel U 0.0009734233059810878 -0.2538994120761667 1.0 13273 +22275 Urod uroporphyrinogen decarboxylase Novel U 0.000972739063326886 -0.25390649943908566 1.0 13274 +19179 Psmc1 protease (prosome, macropain) 26S subunit, ATPase 1 Novel N 0.0009724644187862239 -0.2539093441982094 1.0 13275 +668661 2410002F23Rik RIKEN cDNA 2410002F23 gene Novel U 0.0009715354062524328 -0.2539189668794947 1.0 13276 +13079 Cyp21a1 cytochrome P450, family 21, subfamily a, polypeptide 1 Novel N 0.0009713806985780737 -0.2539205693365 1.0 13277 +78088 Sowahb sosondowah ankyrin repeat domain family member B Novel U 0.0009708793724940653 -0.25392576205559797 1.0 13278 +18121 Nog noggin Novel U 0.0009708584185229334 -0.2539259790961421 1.0 13279 +234373 Sugp2 SURP and G patch domain containing 2 Novel U 0.0009707769861068207 -0.25392682257043125 1.0 13280 +67553 Gstcd glutathione S-transferase, C-terminal domain containing Novel U 0.0009707678306253202 -0.2539269174026077 1.0 13281 +75178 Meiob meiosis specific with OB domains Novel N 0.0009704747695460118 -0.2539299529196333 1.0 13282 +69677 Il36b interleukin 36B Novel U 0.0009704306676768039 -0.2539304097253448 1.0 13283 +269593 Luzp1 leucine zipper protein 1 Novel U 0.0009704160777012042 -0.25393056084783244 1.0 13284 +17292 Mesp1 mesoderm posterior 1 Novel N 0.0009703331063823938 -0.25393142026202514 1.0 13285 +108013 Celf4 CUGBP, Elav-like family member 4 Novel N 0.0009701425018528594 -0.25393339453747626 1.0 13286 +353208 Zfp931 zinc finger protein 931 Novel U 0.0009701084276186273 -0.25393374747727426 1.0 13287 +103784 Dnaaf10 dynein axonemal assembly factor 10 Novel U 0.0009700169326856493 -0.25393469517878237 1.0 13288 +98415 Nucks1 nuclear casein kinase and cyclin-dependent kinase substrate 1 Novel U 0.0009694267465021351 -0.25394080830786986 1.0 13289 +14429 Galr3 galanin receptor 3 Novel N 0.0009691792021854456 -0.2539433723637646 1.0 13290 +80285 Parp9 poly (ADP-ribose) polymerase family, member 9 Novel U 0.000969055759071419 -0.2539446509834817 1.0 13291 +209239 Gan giant axonal neuropathy Novel N 0.0009680443964836118 -0.25395512664391945 1.0 13292 +71367 Chst9 carbohydrate sulfotransferase 9 Novel N 0.0009678012989427121 -0.25395764464025666 1.0 13293 +329738 Aknad1 AKNA domain containing 1 Novel U 0.000967666105095941 -0.2539590449736773 1.0 13294 +71001 Mgat4e MGAT4 family, member E Novel U 0.0009676162359590166 -0.2539595615165582 1.0 13295 +109229 Fam118b family with sequence similarity 118, member B Novel U 0.0009674397880961564 -0.25396138915772126 1.0 13296 +17840 Mup1 major urinary protein 1 Novel U 0.0009673882544096942 -0.2539619229419516 1.0 13297 +56218 Patz1 POZ (BTB) and AT hook containing zinc finger 1 Novel N 0.0009672214604105366 -0.2539636505887118 1.0 13298 +16866 Lhb luteinizing hormone beta Novel U 0.0009671315651593727 -0.2539645817207682 1.0 13299 +83691 Crispld1 cysteine-rich secretory protein LCCL domain containing 1 Novel N 0.0009667911078862406 -0.25396810816601134 1.0 13300 +116903 Calcb calcitonin-related polypeptide, beta Novel N 0.0009667414391848488 -0.25396862263278763 1.0 13301 +68226 Efcab2 EF-hand calcium binding domain 2 Novel U 0.0009666997945578017 -0.2539690539864656 1.0 13302 +59048 C1galt1c1 C1GALT1-specific chaperone 1 Novel U 0.000966342791990822 -0.2539727518073185 1.0 13303 +66611 Ribc1 RIB43A domain with coiled-coils 1 Novel U 0.000966336992729604 -0.25397281187587556 1.0 13304 +53897 Gal3st1 galactose-3-O-sulfotransferase 1 Novel N 0.0009662819320589659 -0.253973382192492 1.0 13305 +52521 Zfp622 zinc finger protein 622 Novel U 0.0009660406711451627 -0.25397588116510617 1.0 13306 +77044 Arid2 AT-rich interaction domain 2 Novel U 0.0009659050071293161 -0.25397728636852257 1.0 13307 +56205 Ensa endosulfine alpha Novel U 0.0009656657135666517 -0.2539797649633783 1.0 13308 +13120 Cyp4b1 cytochrome P450, family 4, subfamily b, polypeptide 1 Novel N 0.0009655146301273259 -0.25398132988067623 1.0 13309 +54450 Il36rn interleukin 36 receptor antagonist Novel U 0.0009647675991516247 -0.25398906760296525 1.0 13310 +93688 Klhl1 kelch-like 1 Novel U 0.0009646632697490355 -0.2539901482434876 1.0 13311 +238829 Cldn34b3 claudin 34B3 Novel U 0.0009641100534352743 -0.25399587843987953 1.0 13312 +13404 Dmc1 DNA meiotic recombinase 1 Novel U 0.0009633413266633156 -0.254003840886513 1.0 13313 +15122 Hba-a1 hemoglobin alpha, adult chain 1 Novel U 0.000962789463887596 -0.2540095570630023 1.0 13314 +116913 Tpbpb trophoblast specific protein beta Novel U 0.0009624226674227732 -0.2540133563287272 1.0 13315 +67917 Zcchc3 zinc finger, CCHC domain containing 3 Novel U 0.000962410401371691 -0.2540134833800811 1.0 13316 +100126773 Esp34 exocrine gland secreted peptide 34 Novel U 0.0009619456587778735 -0.25401829716859026 1.0 13317 +23879 Fxr2 FMR1 autosomal homolog 2 Novel U 0.0009618160557615663 -0.2540196395923727 1.0 13318 +70579 Zc3h11a zinc finger CCCH type containing 11A Novel U 0.0009618117616295298 -0.2540196840708512 1.0 13319 +381113 Cdkl4 cyclin dependent kinase like 4 Novel U 0.0009617332709084162 -0.2540204970751602 1.0 13320 +14060 F13b coagulation factor XIII, beta subunit Novel U 0.0009615103887834453 -0.2540228056808838 1.0 13321 +192163 Pcdha3 protocadherin alpha 3 Novel U 0.0009615016633049214 -0.25402289605910355 1.0 13322 +18417 Cldn11 claudin 11 Novel U 0.000961308237595254 -0.25402489955624574 1.0 13323 +12858 Cox5a cytochrome c oxidase subunit 5A Novel U 0.0009611891197793688 -0.2540261333746669 1.0 13324 +269209 Stk36 serine/threonine kinase 36 Novel U 0.0009611819640434932 -0.2540262074935439 1.0 13325 +26366 Ceacam10 CEA cell adhesion molecule 10 Novel U 0.0009610990305578999 -0.2540270665158613 1.0 13326 +67610 Rspry1 ring finger and SPRY domain containing 1 Novel U 0.0009606626922500178 -0.2540315860937105 1.0 13327 +207818 Smagp small cell adhesion glycoprotein Novel U 0.0009606053999364857 -0.2540321795256107 1.0 13328 +319996 Golm2 golgi membrane protein 2 Novel U 0.0009604328568508336 -0.25403396672121986 1.0 13329 +114774 Pawr PRKC, apoptosis, WT1, regulator Novel U 0.0009599994953782153 -0.2540384554651073 1.0 13330 +56210 Rev1 REV1, DNA directed polymerase Novel N 0.0009597850061942928 -0.2540406771370234 1.0 13331 +668960 Btbd35f10 BTB domain containing 35, family member 10 Novel U 0.0009597458010555003 -0.2540410832225622 1.0 13332 +72930 Ppp2r2b protein phosphatase 2, regulatory subunit B, beta Novel N 0.0009597252030018086 -0.2540412965765252 1.0 13333 +78656 Brd8 bromodomain containing 8 Novel N 0.0009595797171323814 -0.25404280351437813 1.0 13334 +195209 Zfp469 zinc finger protein 469 Novel U 0.0009593780495419771 -0.25404489238065003 1.0 13335 +66151 Prr13 proline rich 13 Novel U 0.0009590124116672791 -0.2540486796457365 1.0 13336 +212569 Zfp273 zinc finger protein 273 Novel U 0.0009585198549511308 -0.2540537815320104 1.0 13337 +244694 Kdm4d lysine (K)-specific demethylase 4D Novel U 0.0009584438388342131 -0.25405456890445055 1.0 13338 +394434 Ugt1a9 UDP glucuronosyltransferase 1 family, polypeptide A9 Novel U 0.0009583201927538152 -0.2540558496264867 1.0 13339 +100126765 Esp36 exocrine gland secreted peptide 36 Novel U 0.0009583047132244711 -0.25405600996294275 1.0 13340 +23856 Dido1 death inducer-obliterator 1 Novel U 0.0009582750595748952 -0.25405631711447024 1.0 13341 +99031 Osbpl6 oxysterol binding protein-like 6 Novel N 0.0009576812053018988 -0.25406246823750805 1.0 13342 +225875 Lrfn4 leucine rich repeat and fibronectin type III domain containing 4 Novel U 0.0009576451755603676 -0.2540628414323864 1.0 13343 +71733 Susd2 sushi domain containing 2 Novel U 0.0009571068683322205 -0.2540684172009597 1.0 13344 +12752 Cln3 CLN3 lysosomal/endosomal transmembrane protein, battenin Novel U 0.0009570232069492112 -0.2540692837628146 1.0 13345 +56456 Actl6a actin-like 6A Novel N 0.0009567487167904915 -0.2540721269228553 1.0 13346 +15214 Hey2 hairy/enhancer-of-split related with YRPW motif 2 Novel U 0.0009558254486609419 -0.2540816901037904 1.0 13347 +109205 Sobp sine oculis binding protein Novel U 0.0009555718909163373 -0.25408431644657375 1.0 13348 +53621 Cnot4 CCR4-NOT transcription complex, subunit 4 Novel U 0.0009553482918015694 -0.25408663247885405 1.0 13349 +212090 Tmem60 transmembrane protein 60 Novel U 0.0009551541884660263 -0.2540886429948228 1.0 13350 +68135 Eif3h eukaryotic translation initiation factor 3, subunit H Novel U 0.0009550784738793735 -0.2540894272440224 1.0 13351 +114566 Krt82 keratin 82 Novel U 0.0009548786405206982 -0.2540914971113824 1.0 13352 +13593 Ebf3 early B cell factor 3 Novel U 0.000954385365422305 -0.25409660643863596 1.0 13353 +20683 Sp1 trans-acting transcription factor 1 Novel U 0.0009539634764565138 -0.2541009763506748 1.0 13354 +104806 Fancm Fanconi anemia, complementation group M Novel U 0.0009537431138558692 -0.2541032588592482 1.0 13355 +545762 Gm16367 predicted gene 16367 Novel U 0.0009534465762571173 -0.254106330385948 1.0 13356 +71701 Pnpt1 polyribonucleotide nucleotidyltransferase 1 Novel U 0.0009533147496207845 -0.2541076958419135 1.0 13357 +20897 Stra6 stimulated by retinoic acid gene 6 Novel U 0.0009533036785849599 -0.2541078105153387 1.0 13358 +13406 Dmp1 dentin matrix protein 1 Novel U 0.0009532822581066939 -0.2541080323879484 1.0 13359 +319701 Fbxo48 F-box protein 48 Novel U 0.0009528766558076877 -0.25411223360322804 1.0 13360 +14422 B4galnt2 beta-1,4-N-acetyl-galactosaminyl transferase 2 Novel N 0.0009524994132984951 -0.2541161410687371 1.0 13361 +244666 Sprtn SprT-like N-terminal domain Novel U 0.0009523352706008563 -0.2541178412534033 1.0 13362 +11435 Chrna1 cholinergic receptor nicotinic alpha 1 subunit Novel U 0.0009521229549137875 -0.2541200404123105 1.0 13363 +269702 Mphosph9 M-phase phosphoprotein 9 Novel U 0.0009519835060177817 -0.2541214848193912 1.0 13364 +434016 Vmn1r7 vomeronasal 1 receptor 7 Novel U 0.0009518926740661073 -0.25412242565376064 1.0 13365 +56485 Slc2a5 solute carrier family 2 (facilitated glucose transporter), member 5 Novel U 0.0009515390452766899 -0.25412608852913654 1.0 13366 +14430 Galt galactose-1-phosphate uridyl transferase Novel U 0.0009515189158525373 -0.2541262970290502 1.0 13367 +14620 Gjb3 gap junction protein, beta 3 Novel U 0.0009513883405148201 -0.2541276495241058 1.0 13368 +217708 Lin52 lin-52 DREAM MuvB core complex component Novel U 0.0009510481832971616 -0.25413117286138426 1.0 13369 +73547 Dusp21 dual specificity phosphatase 21 Novel N 0.0009508416619888871 -0.2541333120023063 1.0 13370 +64706 Scube1 signal peptide, CUB domain, EGF-like 1 Novel U 0.0009505778522744137 -0.2541360445346566 1.0 13371 +240479 Dipk1c divergent protein kinase domain 1C Novel U 0.0009504471782875753 -0.2541373980515166 1.0 13372 +546903 Vmn1r39 vomeronasal 1 receptor 39 Novel U 0.0009500643934768185 -0.254141362924003 1.0 13373 +56357 Ivd isovaleryl coenzyme A dehydrogenase Novel N 0.0009497891948574791 -0.25414421342225546 1.0 13374 +16005 Igfals insulin-like growth factor binding protein, acid labile subunit Novel U 0.0009497768297255507 -0.2541443414998855 1.0 13375 +170947 Myoz3 myozenin 3 Novel U 0.0009496540334388145 -0.2541456134197868 1.0 13376 +80287 Apobec3 apolipoprotein B mRNA editing enzyme, catalytic polypeptide 3 Novel U 0.0009494161470707779 -0.2541480774389669 1.0 13377 +277973 Slc9a5 solute carrier family 9 (sodium/hydrogen exchanger), member 5 Novel N 0.0009492840586983012 -0.2541494456059868 1.0 13378 +171249 Vmn1r213 vomeronasal 1 receptor 213 Novel U 0.0009491352407460948 -0.25415098705744366 1.0 13379 +108811 Ccdc122 coiled-coil domain containing 122 Novel U 0.0009491089391081755 -0.25415125948894457 1.0 13380 +105837 Mtbp Mdm2, transformed 3T3 cell double minute p53 binding protein Novel N 0.0009490743166415195 -0.25415161810731607 1.0 13381 +70846 Ttc6 tetratricopeptide repeat domain 6 Novel U 0.0009482257603854757 -0.25416040742512136 1.0 13382 +73382 Prss52 serine protease 52 Novel U 0.0009479364338623565 -0.25416340425973677 1.0 13383 +81535 Sgpp1 sphingosine-1-phosphate phosphatase 1 Novel U 0.0009478753581834682 -0.25416403687961087 1.0 13384 +231086 Hadhb hydroxyacyl-CoA dehydrogenase trifunctional multienzyme complex subunit beta Novel U 0.0009477790842453941 -0.2541650340818966 1.0 13385 +269878 Megf8 multiple EGF-like-domains 8 Novel U 0.0009476681587849533 -0.25416618304416944 1.0 13386 +94109 Csmd1 CUB and Sushi multiple domains 1 Novel U 0.0009476427258238616 -0.25416644647794434 1.0 13387 +107885 Mthfs 5, 10-methenyltetrahydrofolate synthetase Novel U 0.0009473777231439781 -0.25416919136699107 1.0 13388 +14582 Gfi1b growth factor independent 1B Novel N 0.0009469972528502324 -0.2541731322657864 1.0 13389 +15486 Hsd17b2 hydroxysteroid (17-beta) dehydrogenase 2 Novel U 0.0009468847069523252 -0.2541742980124972 1.0 13390 +17836 Mug1 murinoglobulin 1 Novel U 0.0009467975464928331 -0.25417520081767137 1.0 13391 +66108 Ndufa9 NADH:ubiquinone oxidoreductase subunit A9 Novel N 0.0009466766351304343 -0.25417645321358834 1.0 13392 +217716 Mlh3 mutL homolog 3 Novel U 0.0009464521779503165 -0.25417877813368134 1.0 13393 +218304 Prss47 serine protease 47 Novel U 0.0009460176463251792 -0.2541832789979701 1.0 13394 +18039 Nefl neurofilament, light polypeptide Novel U 0.0009449601456517171 -0.2541942325551823 1.0 13395 +19384 Ran RAN, member RAS oncogene family Novel U 0.000944931151352538 -0.2541945328771801 1.0 13396 +239447 Colec10 collectin sub-family member 10 Novel U 0.0009443004834332605 -0.2542010653147559 1.0 13397 +214111 Slc24a1 solute carrier family 24 (sodium/potassium/calcium exchanger), member 1 Novel U 0.0009442635601555411 -0.2542014477648527 1.0 13398 +11519 Add2 adducin 2 Novel U 0.000943757659033672 -0.2542066878720424 1.0 13399 +381974 Mrgprg MAS-related GPR, member G Novel U 0.0009436943320249086 -0.2542073438111174 1.0 13400 +22693 Zfp30 zinc finger protein 30 Novel U 0.0009436349723840677 -0.2542079586563259 1.0 13401 +353155 Gjd3 gap junction protein, delta 3 Novel U 0.0009436160870044857 -0.25420815427046684 1.0 13402 +242425 Gabbr2 gamma-aminobutyric acid type B receptor subunit 2 Novel U 0.0009435872254252571 -0.2542084532177557 1.0 13403 +624931 LOC624931 PRAME family member 8-like Novel U 0.0009433480734094237 -0.25421093034647396 1.0 13404 +67895 Ppa1 pyrophosphatase (inorganic) 1 Novel U 0.0009423982771527045 -0.2542207683048782 1.0 13405 +272322 Bmal2 basic helix-loop-helix ARNT like 2 Novel N 0.0009423530016085212 -0.25422123726747653 1.0 13406 +243085 Ugt2b35 UDP glucuronosyltransferase 2 family, polypeptide B35 Novel U 0.0009423138900299383 -0.25422164238392175 1.0 13407 +628100 Fbxo39 F-box protein 39 Novel U 0.0009422091394615649 -0.25422272738686547 1.0 13408 +109820 Pgc progastricsin (pepsinogen C) Novel U 0.0009420826799400151 -0.2542240372504326 1.0 13409 +94242 Tinagl1 tubulointerstitial nephritis antigen-like 1 Novel U 0.000941393740236581 -0.25423117326523303 1.0 13410 +74068 Asz1 ankyrin repeat, SAM and basic leucine zipper domain containing 1 Novel U 0.0009411721115229207 -0.2542334688881635 1.0 13411 +12111 Bgn biglycan Novel U 0.0009411120871120339 -0.2542340906190383 1.0 13412 +244631 Pskh1 protein serine kinase H1 Novel U 0.0009410218872552523 -0.25423502490618965 1.0 13413 +69797 1600029I14Rik RIKEN cDNA 1600029I14 gene Novel U 0.0009410094206845311 -0.25423515403451935 1.0 13414 +217364 Engase endo-beta-N-acetylglucosaminidase Novel U 0.0009408424547302824 -0.25423688346238477 1.0 13415 +28109 Nopchap1 NOP protein chaperone 1 Novel N 0.0009408386410051286 -0.25423692296482453 1.0 13416 +12661 Chl1 cell adhesion molecule L1-like Novel N 0.0009408143532854227 -0.25423717453622685 1.0 13417 +67337 Cstf1 cleavage stimulation factor, 3' pre-RNA, subunit 1 Novel U 0.0009405161491538855 -0.25424026332481836 1.0 13418 +66194 Pycr3 pyrroline-5-carboxylate reductase 3 Novel N 0.0009404702781250874 -0.2542407384554267 1.0 13419 +20195 S100a11 S100 calcium binding protein A11 Novel N 0.0009403404460069467 -0.2542420832522384 1.0 13420 +11546 Parp2 poly (ADP-ribose) polymerase family, member 2 Novel N 0.0009400202093360339 -0.2542454002531485 1.0 13421 +20716 Serpina3n serine (or cysteine) peptidase inhibitor, clade A, member 3N Novel U 0.0009400111320695125 -0.25424549427517673 1.0 13422 +56018 Stard10 StAR related lipid transfer domain containing 10 Novel U 0.0009395289325809608 -0.2542504888816277 1.0 13423 +102640804 Tcstv1b 2 cell stage variable group member 1B Novel U 0.0009395004724016381 -0.25425078367122955 1.0 13424 +53319 Nxf1 nuclear RNA export factor 1 Novel N 0.0009394270638260068 -0.2542515440348428 1.0 13425 +232236 Ccdc174 coiled-coil domain containing 174 Novel U 0.0009388129434765755 -0.2542579050732341 1.0 13426 +544678 Cfap74 cilia and flagella associated protein 74 Novel N 0.0009386749283323302 -0.25425933462956113 1.0 13427 +12832 Col5a2 collagen, type V, alpha 2 Novel U 0.0009386199258138174 -0.2542599043438398 1.0 13428 +76265 Tsen54 tRNA splicing endonuclease subunit 54 Novel N 0.0009383041391934404 -0.25426317525127273 1.0 13429 +12653 Chgb chromogranin B Novel U 0.0009379984572481345 -0.2542663414948135 1.0 13430 +66423 Coprs coordinator of PRMT5, differentiation stimulator Novel U 0.0009377309712922698 -0.2542691121055512 1.0 13431 +18426 Ovol1 ovo like zinc finger 1 Novel U 0.0009375772728534062 -0.2542707041089284 1.0 13432 +226153 Twnk twinkle mtDNA helicase Novel U 0.0009375680497813801 -0.25427079964120525 1.0 13433 +16427 Itih4 inter alpha-trypsin inhibitor, heavy chain 4 Novel U 0.0009375627562208543 -0.25427085447173114 1.0 13434 +211660 Cspp1 centrosome and spindle pole associated protein 1 Novel U 0.0009375511452366257 -0.2542709747379241 1.0 13435 +12869 Cox8b cytochrome c oxidase subunit 8B Novel U 0.0009373976796166948 -0.2542725643297704 1.0 13436 +70988 Alyreffm1 Aly/REF export factor family member 1 Novel U 0.0009368657253537922 -0.2542780742945385 1.0 13437 +72195 Supt7l SPT7-like, STAGA complex gamma subunit Novel N 0.0009361866535144986 -0.25428510809832666 1.0 13438 +66467 Gtf2h5 general transcription factor IIH, polypeptide 5 Novel U 0.00093583750972124 -0.25428872451825973 1.0 13439 +26939 Polr3e polymerase (RNA) III (DNA directed) polypeptide E Novel U 0.0009358317551166076 -0.25428878412426537 1.0 13440 +80884 Maged2 MAGE family member D2 Novel N 0.0009351233765206083 -0.254296121486476 1.0 13441 +50760 Fbxo17 F-box protein 17 Novel U 0.0009351171549260871 -0.2542961859295475 1.0 13442 +66801 Prkrip1 Prkr interacting protein 1 (IL11 inducible) Novel N 0.0009349552651897726 -0.2542978627781144 1.0 13443 +110902 Chrna2 cholinergic receptor nicotinic alpha 2 subunit Novel N 0.0009349301230769027 -0.254298123199293 1.0 13444 +12866 Cox7a2 cytochrome c oxidase subunit 7A2 Novel U 0.0009348607054728891 -0.25429884222455346 1.0 13445 +110948 Hlcs holocarboxylase synthetase (biotin- [propriony-Coenzyme A-carboxylase (ATP-hydrolysing)] ligase) Novel U 0.0009344223886922734 -0.25430338229535815 1.0 13446 +68274 Toporsl topoisomerase I binding, arginine/serine-rich like Novel U 0.000934122918868349 -0.25430648419394986 1.0 13447 +106052 Fbxo4 F-box protein 4 Novel U 0.0009340015141013342 -0.2543077417005356 1.0 13448 +17420 Mnat1 menage a trois 1 Novel N 0.0009339770350480663 -0.25430799525376463 1.0 13449 +100072 Camta1 calmodulin binding transcription activator 1 Novel U 0.000933924149751839 -0.25430854303792444 1.0 13450 +14776 Gpx2 glutathione peroxidase 2 Novel U 0.0009334093388398771 -0.25431387543242706 1.0 13451 +20194 S100a10 S100 calcium binding protein A10 (calpactin) Novel U 0.0009333865259840935 -0.25431411172723734 1.0 13452 +26372 Clcn6 chloride channel, voltage-sensitive 6 Novel N 0.000933351386353531 -0.25431447570237553 1.0 13453 +56642 Ankrd2 ankyrin repeat domain 2 Novel N 0.0009333302439423041 -0.254314694694776 1.0 13454 +57339 Jph1 junctophilin 1 Novel N 0.0009331274570431763 -0.2543167951548109 1.0 13455 +446101 Xrra1 X-ray radiation resistance associated 1 Novel N 0.0009327402673373978 -0.2543208056530552 1.0 13456 +20289 Scx scleraxis scleraxis bHLH transcription factor Novel N 0.0009325880238473896 -0.25432238258611994 1.0 13457 +110119 Mpi mannose phosphate isomerase Novel U 0.0009325760862844627 -0.25432250623500435 1.0 13458 +320705 Bend6 BEN domain containing 6 Novel U 0.0009323760549533763 -0.25432457815295606 1.0 13459 +234865 Nup133 nucleoporin 133 Novel U 0.0009322940711931925 -0.25432542733804897 1.0 13460 +231986 Jazf1 JAZF zinc finger 1 Novel U 0.0009319736866903001 -0.2543287458701978 1.0 13461 +26992 Brd7 bromodomain containing 7 Novel N 0.0009317839734025734 -0.2543307109141956 1.0 13462 +217057 Ptrh2 peptidyl-tRNA hydrolase 2 Novel U 0.0009306114304967754 -0.2543428560750686 1.0 13463 +71699 Slc41a3 solute carrier family 41, member 3 Novel N 0.0009304558775839869 -0.25434446728702576 1.0 13464 +244141 Nars2 asparaginyl-tRNA synthetase 2 (mitochondrial)(putative) Novel N 0.0009303571873167608 -0.2543454895175694 1.0 13465 +72017 Cyb5r1 cytochrome b5 reductase 1 Novel N 0.000930330321755126 -0.25434576779017365 1.0 13466 +232974 Erfl ETS repressor factor like Novel U 0.0009297353187583902 -0.2543519308116542 1.0 13467 +84653 Hes7 hes family bHLH transcription factor 7 Novel U 0.0009297175748608 -0.2543521146023621 1.0 13468 +171258 Vmn1r202 vomeronasal 1 receptor 202 Novel U 0.0009295586789595315 -0.25435376044088404 1.0 13469 +72832 Crtac1 cartilage acidic protein 1 Novel U 0.0009294022810945116 -0.25435538040482863 1.0 13470 +381073 Npw neuropeptide W Novel N 0.0009293847989569317 -0.254355561484235 1.0 13471 +113846 Vmn1r47 vomeronasal 1 receptor 47 Novel U 0.0009289620083055843 -0.2543599407359032 1.0 13472 +12365 Casp14 caspase 14 Novel U 0.0009289057329507076 -0.254360523634179 1.0 13473 +57782 Rbak RB-associated KRAB zinc finger Novel N 0.0009283380293064656 -0.2543664038898638 1.0 13474 +67821 Atp1b4 ATPase Na+/K+ transporting, beta 4 polypeptide Novel N 0.0009281512730918924 -0.2543683383045951 1.0 13475 +209294 Csta1 cystatin A1 Novel U 0.0009281456767317804 -0.25436839627150915 1.0 13476 +665989 Ppihl peptidyl prolyl isomerase H like Novel U 0.0009281027959858837 -0.2543688404288655 1.0 13477 +237320 Aldh8a1 aldehyde dehydrogenase 8 family, member A1 Novel N 0.0009273195486771727 -0.25437695327874127 1.0 13478 +22634 Plagl1 pleiomorphic adenoma gene-like 1 Novel U 0.0009272127461475001 -0.2543780595358327 1.0 13479 +27050 Rps3 ribosomal protein S3 Novel U 0.0009269767527429465 -0.2543805039477592 1.0 13480 +29808 Mga MAX gene associated Novel U 0.0009268830896809414 -0.25438147410667644 1.0 13481 +216443 Mars1 methionine-tRNA synthetase 1 Novel U 0.0009267281811432842 -0.25438307864421716 1.0 13482 +214742 Rcor3 REST corepressor 3 Novel U 0.0009266813028631224 -0.25438356420790204 1.0 13483 +20916 Sucla2 succinate-Coenzyme A ligase, ADP-forming, beta subunit Novel N 0.0009258056199995449 -0.2543926345022164 1.0 13484 +74591 Abca12 ATP-binding cassette, sub-family A member 12 Novel U 0.0009258033663891814 -0.2543926578450385 1.0 13485 +664883 Nova1 NOVA alternative splicing regulator 1 Novel N 0.0009257892332398955 -0.2543928042357342 1.0 13486 +434881 Samt2 spermatogenesis associated multipass transmembrane protein 2 Novel U 0.0009255924184823477 -0.2543948428365229 1.0 13487 +16478 Jund jun D proto-oncogene Novel N 0.0009254930486466989 -0.254395872106014 1.0 13488 +213469 Lgi3 leucine-rich repeat LGI family, member 3 Novel N 0.0009253102394596115 -0.25439776563756433 1.0 13489 +27967 Cherp calcium homeostasis endoplasmic reticulum protein Novel N 0.0009252096233367901 -0.2543988078160569 1.0 13490 +56087 Dnah10 dynein, axonemal, heavy chain 10 Novel N 0.0009252039576305635 -0.25439886650125576 1.0 13491 +100504125 Btf3l4b basic transcription factor 3 like 4B Novel U 0.000924615254423312 -0.25440496426972387 1.0 13492 +52715 Ccdc43 coiled-coil domain containing 43 Novel U 0.0009240690201493212 -0.2544106221463774 1.0 13493 +107732 Mrpl10 mitochondrial ribosomal protein L10 Novel U 0.0009233890415398531 -0.2544176653424612 1.0 13494 +26371 Ciao1 cytosolic iron-sulfur protein assembly 1 Novel N 0.0009227803813688676 -0.2544239698245036 1.0 13495 +620672 Vmn2r67 vomeronasal 2, receptor 67 Novel U 0.0009222351763502217 -0.2544296170401641 1.0 13496 +72649 Tmem209 transmembrane protein 209 Novel U 0.000922059161239811 -0.2544314401988915 1.0 13497 +230085 Phf24 PHD finger protein 24 Novel U 0.0009218194016128327 -0.25443392362122613 1.0 13498 +74326 Hnrnpr heterogeneous nuclear ribonucleoprotein R Novel N 0.0009217246903772469 -0.25443490463709084 1.0 13499 +15492 Hsd3b1 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 1 Novel U 0.0009214776949523361 -0.2544374630075826 1.0 13500 +630579 Zfp808 zinc finger protein 808 Novel U 0.0009209166215945195 -0.2544432745869785 1.0 13501 +67815 Sec14l2 SEC14-like lipid binding 2 Novel U 0.0009207548569854596 -0.25444495013948143 1.0 13502 +93677 Lmod2 leiomodin 2 (cardiac) Novel U 0.0009205406220792127 -0.25444716917759774 1.0 13503 +76747 Dapl1 death associated protein-like 1 Novel U 0.0009205286397016623 -0.2544472932906705 1.0 13504 +214384 Myocd myocardin Novel U 0.0009202199704943306 -0.25445049047617313 1.0 13505 +224171 Cip2a cell proliferation regulating inhibitor of protein phosphatase 2A Novel U 0.0009200111154330828 -0.2544526537900318 1.0 13506 +14133 Fcna ficolin A Novel U 0.0009200014556067919 -0.2544527538461949 1.0 13507 +66727 Plaat5 phospholipase A and acyltransferase 5 Novel U 0.0009197132413824092 -0.2544557391596566 1.0 13508 +192775 Kcnh6 potassium voltage-gated channel, subfamily H (eag-related), member 6 Novel U 0.0009194215796934747 -0.2544587601818427 1.0 13509 +21828 Thbs4 thrombospondin 4 Novel U 0.0009191591324944189 -0.254461478601303 1.0 13510 +104010 Cdh22 cadherin 22 Novel U 0.0009190057269751975 -0.2544630675706282 1.0 13511 +71989 Rpusd4 RNA pseudouridylate synthase domain containing 4 Novel N 0.0009184951380407631 -0.2544683562340263 1.0 13512 +66784 Fam187a family with sequence similarity 187, member A Novel U 0.0009184221437434961 -0.2544691123065579 1.0 13513 +16516 Kcnj15 potassium inwardly-rectifying channel, subfamily J, member 15 Novel N 0.0009181274385404879 -0.2544721648533627 1.0 13514 +20362 Septin8 septin 8 Novel U 0.0009180430088493996 -0.25447303937332755 1.0 13515 +12095 Bglap3 bone gamma-carboxyglutamate protein 3 Novel U 0.0009179383097212544 -0.2544741238434551 1.0 13516 +192678 Rassf3 Ras association (RalGDS/AF-6) domain family member 3 Novel U 0.0009174993007505112 -0.2544786710839424 1.0 13517 +332309 Grxcr2 glutaredoxin, cysteine rich 2 Novel N 0.0009174496224925588 -0.2544791856497052 1.0 13518 +71521 Pds5a PDS5 cohesin associated factor A Novel U 0.0009172827368586054 -0.2544809142456156 1.0 13519 +14775 Gpx1 glutathione peroxidase 1 Novel U 0.0009171500838523915 -0.2544822882610932 1.0 13520 +272158 Poln DNA polymerase N Novel N 0.0009170359147626046 -0.2544834708207721 1.0 13521 +241073 Dytn dystrotelin Novel U 0.000916780605959901 -0.2544861153009577 1.0 13522 +546729 Calhm1 calcium homeostasis modulator 1 Novel U 0.000916676765643873 -0.25448719087553756 1.0 13523 +11444 Chrnb2 cholinergic receptor nicotinic beta 2 subunit Novel N 0.0009166205278304774 -0.25448777338496 1.0 13524 +68394 Ccdc163 coiled-coil domain containing 163 Novel U 0.0009163972640314305 -0.2544900859440511 1.0 13525 +228807 Zfp341 zinc finger protein 341 Novel U 0.0009161519496420891 -0.2544926269024317 1.0 13526 +434797 Pwwp4c PWWP domain containing 4C Novel U 0.0009158420608219116 -0.254495836720644 1.0 13527 +628923 Gm14744 predicted gene 14744 Novel U 0.0009157638506936113 -0.2544966468185819 1.0 13528 +12448 Ccne2 cyclin E2 Novel U 0.0009154453830569697 -0.25449994549589317 1.0 13529 +110257 Hba-a2 hemoglobin alpha, adult chain 2 Novel U 0.0009153556331023165 -0.2545008751229731 1.0 13530 +380842 Stmnd1 stathmin domain containing 1 Novel U 0.0009152665793850608 -0.2545017975384489 1.0 13531 +234776 Atmin ATM interactor Novel N 0.0009149058930662796 -0.25450553351548194 1.0 13532 +27392 Pign phosphatidylinositol glycan anchor biosynthesis, class N Novel U 0.000914805202654769 -0.25450657646345437 1.0 13533 +66214 Rgcc regulator of cell cycle Novel U 0.0009138898487810756 -0.2545160576687875 1.0 13534 +100504207 Arhgap33os Rho GTPase activating protein 33, opposite strand Novel U 0.0009138875860784977 -0.2545160811057864 1.0 13535 +72393 Faim2 Fas apoptotic inhibitory molecule 2 Novel U 0.0009136172642119725 -0.25451888109079346 1.0 13536 +72514 Fgfbp3 fibroblast growth factor binding protein 3 Novel N 0.0009131947057710623 -0.25452325793723357 1.0 13537 +434008 Tmem178b transmembrane protein 178B Novel U 0.0009128808947392238 -0.25452650838158536 1.0 13538 +229665 Ampd1 adenosine monophosphate deaminase 1 Novel U 0.0009126856728230811 -0.2545285304837752 1.0 13539 +68796 Tmem214 transmembrane protein 214 Novel U 0.0009125191392160231 -0.25453025543340263 1.0 13540 +113848 Vmn1r42 vomeronasal 1 receptor 42 Novel U 0.0009123054625234034 -0.25453246868956053 1.0 13541 +20687 Sp3 trans-acting transcription factor 3 Novel N 0.0009116487989112076 -0.254539270389669 1.0 13542 +54418 Fmn2 formin 2 Novel U 0.0009113397574413202 -0.2545424714310549 1.0 13543 +68212 Tmbim4 transmembrane BAX inhibitor motif containing 4 Novel N 0.0009113285734384462 -0.25454258727458906 1.0 13544 +246080 Defb7 defensin beta 7 Novel U 0.0009112515566337803 -0.25454338501212 1.0 13545 +17428 Mnt max binding protein Novel N 0.0009111866723007503 -0.2545440570819085 1.0 13546 +21452 Tcn2 transcobalamin 2 Novel U 0.0009111138170920261 -0.2545448117137655 1.0 13547 +213409 Lemd1 LEM domain containing 1 Novel U 0.0009108122908973535 -0.25454793491217775 1.0 13548 +66653 Brf2 BRF2, RNA polymerase III transcription initiation factor 50kDa subunit Novel N 0.0009105699037241893 -0.2545504455505494 1.0 13549 +68427 Slc39a13 solute carrier family 39 (metal ion transporter), member 13 Novel N 0.0009092130002273997 -0.25456450031236333 1.0 13550 +208104 Mlxip MLX interacting protein Novel N 0.0009090839403287152 -0.25456583711055125 1.0 13551 +13522 Adam28 a disintegrin and metallopeptidase domain 28 Novel N 0.0009089997083380823 -0.25456670958274125 1.0 13552 +436240 Foxr2 forkhead box R2 Novel U 0.0009087857447513863 -0.2545689258105386 1.0 13553 +52013 R3hcc1l R3H domain and coiled-coil containing 1 like Novel U 0.0009083409766747291 -0.2545735327036557 1.0 13554 +17345 Mki67 antigen identified by monoclonal antibody Ki 67 Novel U 0.0009082262679200498 -0.2545747208531658 1.0 13555 +233801 Acsm4 acyl-CoA synthetase medium-chain family member 4 Novel U 0.0009081816470493237 -0.2545751830346779 1.0 13556 +100039707 Mthfsl 5, 10-methenyltetrahydrofolate synthetase-like Novel U 0.0009080734466622156 -0.2545763037707307 1.0 13557 +209334 Gen1 GEN1, Holliday junction 5' flap endonuclease Novel U 0.0009079589361830249 -0.25457748986650985 1.0 13558 +619597 Gal3st2c galactose-3-O-sulfotransferase 2C Novel U 0.0009077802828771291 -0.25457934035157936 1.0 13559 +24116 Nelfa negative elongation factor complex member A, Whsc2 Novel U 0.000907175766608829 -0.25458560191121404 1.0 13560 +232035 Ccser1 coiled-coil serine rich 1 Novel U 0.0009071415074477523 -0.25458595676647827 1.0 13561 +245877 Map7d1 MAP7 domain containing 1 Novel U 0.0009069977387808891 -0.25458744591760346 1.0 13562 +72391 Cdkn3 cyclin dependent kinase inhibitor 3 Novel U 0.0009067280758494861 -0.25459023907738226 1.0 13563 +640530 Gm7298 murinoglobulin 1 pseudogene Novel U 0.0009064164923177319 -0.2545934664493614 1.0 13564 +230810 Slc30a2 solute carrier family 30 (zinc transporter), member 2 Novel U 0.0009059412049372983 -0.25459838946042374 1.0 13565 +81013 Vmn1r65 vomeronasal 1 receptor 65 Novel U 0.0009059061298237028 -0.2545987527672973 1.0 13566 +15273 Hivep2 human immunodeficiency virus type I enhancer binding protein 2 Novel U 0.0009058893874745678 -0.25459892618399926 1.0 13567 +69386 H4c8 H4 clustered histone 8 Novel U 0.000905856817911761 -0.25459926353846013 1.0 13568 +12236 Bub1b BUB1B, mitotic checkpoint serine/threonine kinase Novel U 0.000905302139880264 -0.2546050088752764 1.0 13569 +272350 Lgalsl2 galectin like 2 Novel U 0.000904900335374483 -0.2546091707531386 1.0 13570 +67722 Actl11 actin-like 11 Novel U 0.0009046223973814661 -0.2546120496257336 1.0 13571 +76640 1700113H08Rik RIKEN cDNA 1700113H08 gene Novel U 0.0009044329861784771 -0.2546140115407476 1.0 13572 +103534 Mgat4b mannoside acetylglucosaminyltransferase 4, isoenzyme B Novel U 0.0009036989425510922 -0.25462161474050965 1.0 13573 +109052 Krt75 keratin 75 Novel U 0.0009033428415860586 -0.25462530322259924 1.0 13574 +381813 Prmt8 protein arginine N-methyltransferase 8 Novel U 0.00090271794290094 -0.2546317759026373 1.0 13575 +15260 Hira histone cell cycle regulator Novel U 0.0009024461523278016 -0.2546345911004592 1.0 13576 +387347 Tas2r118 taste receptor, type 2, member 118 Novel U 0.0009024406558214804 -0.254634648033091 1.0 13577 +109095 Rbm15b RNA binding motif protein 15B Novel N 0.0009022563630660114 -0.25463655693139386 1.0 13578 +667055 Unc93a2 unc-93 homolog A2 Novel U 0.0009020984507338216 -0.2546381925821396 1.0 13579 +100040448 Btbd35f19 BTB domain containing 35, family member 19 Novel U 0.0009020883463819801 -0.2546382972426838 1.0 13580 +207932 Urb1 URB1 ribosome biogenesis 1 homolog (S. cerevisiae) Novel U 0.000901886206655984 -0.2546403909993207 1.0 13581 +67785 Zmym4 zinc finger, MYM-type 4 Novel U 0.0009018242883650545 -0.2546410323469427 1.0 13582 +93689 Lmod1 leiomodin 1 (smooth muscle) Novel U 0.0009017579080254433 -0.25464171991231827 1.0 13583 +12398 Cbfa2t3 CBFA2/RUNX1 translocation partner 3 Novel U 0.0009016649909225433 -0.2546426823446156 1.0 13584 +68792 Srpx2 sushi-repeat-containing protein, X-linked 2 Novel U 0.0009016559584860288 -0.2546427759022961 1.0 13585 +434935 Gm21943 predicted gene, 21943 Novel U 0.0009013241384081957 -0.2546462128837543 1.0 13586 +67861 Akr1b10 aldo-keto reductase family 1, member B10 Novel U 0.0009010514930206043 -0.2546490369357162 1.0 13587 +272359 Irf2bp1 interferon regulatory factor 2 binding protein 1 Novel U 0.000900292649331038 -0.2546568970137071 1.0 13588 +69094 Tmem160 transmembrane protein 160 Novel U 0.0008999698867414584 -0.2546602401779997 1.0 13589 +226151 Slf2 SMC5-SMC6 complex localization factor 2 Novel U 0.0008996081458310681 -0.25466398707845794 1.0 13590 +18703 Pigr polymeric immunoglobulin receptor Novel U 0.0008995823981022109 -0.25466425377258706 1.0 13591 +70359 Gtpbp3 GTP binding protein 3 Novel N 0.0008992296951230509 -0.2546679070584507 1.0 13592 +17837 Mug2 murinoglobulin 2 Novel U 0.0008991346094144876 -0.2546688919530942 1.0 13593 +623459 Faiml Fas apoptotic inhibitory molecule like Novel U 0.0008989925613984493 -0.2546703632817748 1.0 13594 +228812 Pigu phosphatidylinositol glycan anchor biosynthesis, class U Novel U 0.0008988342121598312 -0.2546720034579829 1.0 13595 +381535 Pramel18 PRAME like 18 Novel U 0.0008987937693377697 -0.25467242236340437 1.0 13596 +27393 Mrpl39 mitochondrial ribosomal protein L39 Novel U 0.0008983428415441318 -0.25467709305866737 1.0 13597 +17134 Mafg v-maf musculoaponeurotic fibrosarcoma oncogene family, protein G (avian) Novel U 0.0008983003987803477 -0.25467753267941945 1.0 13598 +219148 Fam167a family with sequence similarity 167, member A Novel U 0.0008978455850302648 -0.2546822436252916 1.0 13599 +93703 Pcdhgb6 protocadherin gamma subfamily B, 6 Novel U 0.0008977406367572 -0.25468333067605403 1.0 13600 +170571 Cntnap4 contactin associated protein-like 4 Novel U 0.0008976396211356711 -0.2546843769925411 1.0 13601 +69191 Pdia2 protein disulfide isomerase associated 2 Novel U 0.0008972846507067695 -0.25468805376457465 1.0 13602 +78306 Tsga10ip testis specific 10 interacting protein Novel U 0.0008969955871547814 -0.2546910478753437 1.0 13603 +239029 Antxrl anthrax toxin receptor-like Novel U 0.0008966050419699081 -0.25469509312953015 1.0 13604 +627264 Btbd35f28 BTB domain containing 35, family member 28 Novel U 0.0008965306798379839 -0.25469586337004807 1.0 13605 +20480 Clpb ClpB caseinolytic peptidase B Novel U 0.0008963352136665963 -0.2546978880022257 1.0 13606 +236451 Phf11b PHD finger protein 11B Novel U 0.0008961298211956858 -0.2547000154506875 1.0 13607 +19773 Rln1 relaxin 1 Novel U 0.0008958272912992006 -0.25470314904541014 1.0 13608 +384572 Vmn1r177 vomeronasal 1 receptor 177 Novel U 0.0008950955206240433 -0.2547107287020078 1.0 13609 +13017 Ctbp2 C-terminal binding protein 2 Novel U 0.0008950926197394332 -0.2547107587492752 1.0 13610 +77559 Agl amylo-1,6-glucosidase, 4-alpha-glucanotransferase Novel U 0.0008949471018622509 -0.25471226601866337 1.0 13611 +225845 Plaat3 phospholipase A and acyltransferase 3 Novel U 0.0008949218665266786 -0.25471252740543965 1.0 13612 +20220 Sap18 Sin3-associated polypeptide 18 Novel U 0.0008949144031819694 -0.2547126047105188 1.0 13613 +71990 Ddx54 DEAD box helicase 54 Novel U 0.000894828540511432 -0.2547134940732377 1.0 13614 +66631 Mfsd14b major facilitator superfamily domain containing 14B Novel U 0.0008947355044663929 -0.2547144577375338 1.0 13615 +14527 Gcgr glucagon receptor Novel U 0.0008945502389844528 -0.2547163767113055 1.0 13616 +106583 Scaf8 SR-related CTD-associated factor 8 Novel N 0.0008941607573948032 -0.25472041094880754 1.0 13617 +19661 Rbp3 retinol binding protein 3, interstitial Novel N 0.0008940758512483144 -0.2547212904038817 1.0 13618 +56176 Pigp phosphatidylinositol glycan anchor biosynthesis, class P Novel U 0.0008940404943327207 -0.2547216566296512 1.0 13619 +638102 Vmn2r115 vomeronasal 2, receptor 115 Novel U 0.0008939476320457173 -0.2547226184941673 1.0 13620 +66367 2310022A10Rik RIKEN cDNA 2310022A10 gene Novel U 0.0008936413610274813 -0.254725790839306 1.0 13621 +21385 Tbx2 T-box 2 Novel U 0.0008935557070721033 -0.2547266780401601 1.0 13622 +240069 Morc2b microrchidia 2B Novel U 0.0008931470046792521 -0.2547309113661099 1.0 13623 +68251 Babam1 BRISC and BRCA1 A complex member 1 Novel U 0.0008931327024059808 -0.25473105950858627 1.0 13624 +68134 Upf3b UPF3 regulator of nonsense transcripts homolog B (yeast) Novel U 0.0008928502446769557 -0.25473398519645823 1.0 13625 +171272 Vmn1r219 vomeronasal 1 receptor 219 Novel U 0.0008927691680650885 -0.25473482498533867 1.0 13626 +217031 Tada2a transcriptional adaptor 2A Novel U 0.000892707605060328 -0.25473546265291824 1.0 13627 +66990 Tmem134 transmembrane protein 134 Novel U 0.000892390474609744 -0.25473874747970027 1.0 13628 +244745 Dpy19l1 dpy-19 like C-mannosyltransferase 1 Novel U 0.0008923781435372602 -0.2547388752045437 1.0 13629 +104110 Adcy4 adenylate cyclase 4 Novel U 0.0008920211855985373 -0.25474257256313865 1.0 13630 +12309 S100g S100 calcium binding protein G Novel U 0.0008919253785641544 -0.25474356492925126 1.0 13631 +72831 Dhx30 DExH-box helicase 30 Novel U 0.0008919092918779362 -0.2547437315546183 1.0 13632 +19743 Rhag Rhesus blood group-associated A glycoprotein Novel N 0.0008918918850757632 -0.254743911853703 1.0 13633 +18701 Pigf phosphatidylinositol glycan anchor biosynthesis, class F Novel U 0.0008918372733156313 -0.2547444775205192 1.0 13634 +269951 Idh2 isocitrate dehydrogenase 2 (NADP+), mitochondrial Novel U 0.0008915826148319051 -0.25474711526472216 1.0 13635 +18377 Omg oligodendrocyte myelin glycoprotein Novel U 0.0008911399001338625 -0.254751700889011 1.0 13636 +110147 Ehmt2 euchromatic histone lysine N-methyltransferase 2 Novel N 0.0008909264733845134 -0.25475391155626476 1.0 13637 +75410 Kmt2b lysine (K)-specific methyltransferase 2B Novel U 0.0008909240706264572 -0.2547539364439537 1.0 13638 +11737 Anp32a acidic nuclear phosphoprotein 32 family member A Novel U 0.0008906391939971173 -0.2547568871867156 1.0 13639 +320080 Zbtb39 zinc finger and BTB domain containing 39 Novel U 0.0008903431268310006 -0.25475995384068956 1.0 13640 +214901 Chtf18 CTF18, chromosome transmission fidelity factor 18 Novel U 0.0008895921847459793 -0.2547677320741203 1.0 13641 +211949 Spsb4 splA/ryanodine receptor domain and SOCS box containing 4 Novel U 0.0008895085257165061 -0.25476859861159745 1.0 13642 +14380 G6pd2 glucose-6-phosphate dehydrogenase 2 Novel U 0.0008895013256838241 -0.2547686731892993 1.0 13643 +69101 Ydjc YdjC homolog (bacterial) Novel U 0.0008892964460285697 -0.25477079532603336 1.0 13644 +22019 Tpp2 tripeptidyl peptidase II Novel U 0.0008892556282283225 -0.2547712181154665 1.0 13645 +20822 Ro60 Ro60, Y RNA binding protein Novel U 0.000889066412418225 -0.25477317800660737 1.0 13646 +230654 Lrrc41 leucine rich repeat containing 41 Novel U 0.00088896745939934 -0.2547742029587241 1.0 13647 +52024 Ankrd22 ankyrin repeat domain 22 Novel U 0.0008883629449011064 -0.25478046450002445 1.0 13648 +382571 Kcnf1 potassium voltage-gated channel, subfamily F, member 1 Novel N 0.0008880997706883862 -0.25478319044986836 1.0 13649 +68087 Dcakd dephospho-CoA kinase domain containing Novel N 0.0008879237416604707 -0.2547850137527529 1.0 13650 +216820 Dhrs7b dehydrogenase/reductase 7B Novel N 0.0008877364398843108 -0.25478695381839317 1.0 13651 +667504 Vmn1r152 vomeronasal 1 receptor 152 Novel U 0.0008877343996970276 -0.254786974950586 1.0 13652 +72054 Cyp4f18 cytochrome P450, family 4, subfamily f, polypeptide 18 Novel U 0.0008872040633194912 -0.2547924681573506 1.0 13653 +69051 Pycr2 pyrroline-5-carboxylate reductase family, member 2 Novel U 0.0008871192463236298 -0.25479334668900555 1.0 13654 +68036 Zfp706 zinc finger protein 706 Novel U 0.0008869971241160002 -0.25479461162681766 1.0 13655 +667543 Vmn1r257 vomeronasal 1 receptor 257 Novel U 0.0008866405263789151 -0.25479830525445585 1.0 13656 +432530 Adcy1 adenylate cyclase 1 Novel N 0.0008864251016406203 -0.2548005366168134 1.0 13657 +26926 Aifm1 apoptosis-inducing factor, mitochondrion-associated 1 Novel U 0.0008861314917486901 -0.2548035778184221 1.0 13658 +71839 Osgin1 oxidative stress induced growth inhibitor 1 Novel N 0.000885828632217515 -0.25480671482749 1.0 13659 +19213 Ptf1a pancreas specific transcription factor, 1a Novel U 0.000885735203582314 -0.25480768255822217 1.0 13660 +74199 Vit vitrin Novel U 0.0008852868227961516 -0.2548123268716655 1.0 13661 +56200 Ddx21 DExD box helicase 21 Novel N 0.0008852795830657501 -0.254812401860555 1.0 13662 +12715 Ckm creatine kinase, muscle Novel U 0.0008850132771325112 -0.25481516024865714 1.0 13663 +12821 Col17a1 collagen, type XVII, alpha 1 Novel U 0.000884681786189428 -0.2548185938209484 1.0 13664 +213053 Slc39a14 solute carrier family 39 (zinc transporter), member 14 Novel U 0.000884246658609018 -0.25482310085812226 1.0 13665 +71765 Klhdc3 kelch domain containing 3 Novel U 0.0008840670752459877 -0.25482496097669305 1.0 13666 +109785 Pgm3 phosphoglucomutase 3 Novel U 0.0008838799037322774 -0.25482689969307915 1.0 13667 +243834 Zfp324 zinc finger protein 324 Novel U 0.0008837602732582696 -0.2548281388215962 1.0 13668 +112403 Dxo decapping exoribonuclease Novel N 0.0008833393607359262 -0.2548324986196659 1.0 13669 +277854 Depdc5 DEP domain containing 5 Novel U 0.0008830843272089047 -0.254835140248555 1.0 13670 +108014 Srsf9 serine and arginine-rich splicing factor 9 Novel N 0.000882095872654071 -0.25484537862834034 1.0 13671 +18227 Nr4a2 nuclear receptor subfamily 4, group A, member 2 Novel U 0.0008819224465720985 -0.2548471749699963 1.0 13672 +76629 Tmem270 transmembrane protein 270 Novel U 0.0008818391798820365 -0.25484803744363477 1.0 13673 +170742 Sertad3 SERTA domain containing 3 Novel N 0.0008815672050540395 -0.2548508545499624 1.0 13674 +71787 Trnau1ap tRNA selenocysteine 1 associated protein 1 Novel U 0.0008812960121442198 -0.25485366355720734 1.0 13675 +231430 Cox18 cytochrome c oxidase assembly protein 18 Novel U 0.0008811517123284836 -0.25485515820995513 1.0 13676 +625591 Cldn34c2 claudin 34C2 Novel U 0.0008809926745079797 -0.25485680551847184 1.0 13677 +71693 Colec11 collectin sub-family member 11 Novel U 0.0008809254142327622 -0.2548575021981915 1.0 13678 +13116 Cyp46a1 cytochrome P450, family 46, subfamily a, polypeptide 1 Novel N 0.0008804570434923999 -0.2548623535669233 1.0 13679 +214162 Kmt2a lysine (K)-specific methyltransferase 2A Novel U 0.0008800737644883673 -0.25486632355824745 1.0 13680 +244879 Npat nuclear protein in the AT region Novel N 0.0008798799776180565 -0.25486833079627974 1.0 13681 +17713 Grpel1 GrpE-like 1, mitochondrial Novel U 0.0008797177654020856 -0.25487001098508033 1.0 13682 +233651 Dchs1 dachsous cadherin related 1 Novel U 0.0008796584201016123 -0.2548706256817518 1.0 13683 +140703 Emid1 EMI domain containing 1 Novel U 0.0008792533798054894 -0.25487482107582404 1.0 13684 +17872 Ppp1r15a protein phosphatase 1, regulatory subunit 15A Novel U 0.0008792198349567754 -0.2548751685322643 1.0 13685 +76938 Rbm17 RNA binding motif protein 17 Novel N 0.000878900410765177 -0.25487847711754036 1.0 13686 +68764 Cdhr3 cadherin-related family member 3 Novel U 0.0008785927541082663 -0.25488166381507893 1.0 13687 +76192 Abhd12 abhydrolase domain containing 12 Novel U 0.0008785278502374142 -0.25488233608723965 1.0 13688 +668612 Vmn2r-ps158 vomeronasal 2, receptor, pseudogene 158 Novel U 0.0008780031644158869 -0.25488777076573094 1.0 13689 +435949 Vmn1r244 vomeronasal 1 receptor 244 Novel U 0.0008779227269333968 -0.25488860393453033 1.0 13690 +100862015 Msantd5f4 Myb/SANT DNA binding domain containing 5 family member 4 Novel U 0.0008777110217649334 -0.25489079676970583 1.0 13691 +232811 Kmt5c lysine methyltransferase 5C Novel N 0.0008775618196185512 -0.2548923422006333 1.0 13692 +214239 Ccdc9b coiled-coil domain containing 9B Novel U 0.0008773596696313639 -0.2548944360635552 1.0 13693 +64242 Ngb neuroglobin Novel N 0.0008768766853104237 -0.2548994387992743 1.0 13694 +12840 Col9a2 collagen, type IX, alpha 2 Novel U 0.0008762017050791821 -0.2549064302223207 1.0 13695 +67824 Nmral1 NmrA-like family domain containing 1 Novel U 0.0008758194702624623 -0.254910389397987 1.0 13696 +72345 Amer1 APC membrane recruitment 1 Novel U 0.0008756553389599849 -0.2549120894646225 1.0 13697 +77087 Ankrd11 ankyrin repeat domain 11 Novel U 0.0008756273562986739 -0.2549123793081085 1.0 13698 +68510 Ints1 integrator complex subunit 1 Novel N 0.0008754048325688981 -0.2549146842015864 1.0 13699 +171267 Vmn1r84 vomeronasal 1 receptor 84 Novel U 0.000875392310909201 -0.25491481390052595 1.0 13700 +12895 Cpt1b carnitine palmitoyltransferase 1b, muscle Novel U 0.0008751922400269906 -0.2549168862281469 1.0 13701 +22788 Zp3 zona pellucida glycoprotein 3 Novel U 0.0008751693323684953 -0.2549171235049206 1.0 13702 +56443 Arpc1a actin related protein 2/3 complex, subunit 1A Novel U 0.0008751163361500174 -0.25491767243800945 1.0 13703 +17876 Myef2 myelin basic protein expression factor 2, repressor Novel U 0.0008751038150473067 -0.2549178021311797 1.0 13704 +320162 Cep95 centrosomal protein 95 Novel U 0.0008748764333404268 -0.25492015734342477 1.0 13705 +14630 Gclm glutamate-cysteine ligase, modifier subunit Novel N 0.0008747592832215699 -0.25492137078050475 1.0 13706 +67685 Dnaaf4 dynein axonemal assembly factor 4 Novel U 0.0008746714715454029 -0.25492228033095987 1.0 13707 +52231 Ankzf1 ankyrin repeat and zinc finger domain containing 1 Novel U 0.0008744861380279198 -0.25492420000944144 1.0 13708 +20505 Slc34a1 solute carrier family 34 (sodium phosphate), member 1 Novel N 0.0008740747465664457 -0.2549284611886756 1.0 13709 +319807 Nwd2 NACHT and WD repeat domain containing 2 Novel U 0.0008740650477464172 -0.2549285616487346 1.0 13710 +72634 Tdrkh tudor and KH domain containing protein Novel U 0.0008740303208545277 -0.25492892134873923 1.0 13711 +552899 Ugt2a2 UDP glucuronosyltransferase 2 family, polypeptide A2 Novel N 0.0008736926773039712 -0.2549324186495365 1.0 13712 +81014 Vmn1r58 vomeronasal 1 receptor 58 Novel U 0.0008734998064898555 -0.2549344163990888 1.0 13713 +27078 B9d1 B9 protein domain 1 Novel U 0.0008734575752460467 -0.2549348538289239 1.0 13714 +18089 Nkx2-3 NK2 homeobox 3 Novel U 0.0008734406963384444 -0.254935028660094 1.0 13715 +75305 Ankrd53 ankyrin repeat domain 53 Novel U 0.0008731051680631491 -0.2549385040509396 1.0 13716 +73703 Dppa2 developmental pluripotency associated 2 Novel U 0.000873089121568731 -0.2549386702600013 1.0 13717 +74165 Fbxl22 F-box and leucine-rich repeat protein 22 Novel U 0.000872947765004526 -0.2549401344266465 1.0 13718 +97130 Nhsl3 NHS like 3 Novel U 0.000872851082138473 -0.25494113586459477 1.0 13719 +50702 Cfhr1 complement factor H-related 1 Novel U 0.0008727132738674311 -0.254942563278136 1.0 13720 +67593 4930519G04Rik RIKEN cDNA 4930519G04 gene Novel U 0.0008723851567700335 -0.25494596190424457 1.0 13721 +71345 Ano9 anoctamin 9 Novel N 0.0008723837356491684 -0.2549459766241678 1.0 13722 +231991 Creb5 cAMP responsive element binding protein 5 Novel N 0.0008722815983541255 -0.25494703455891227 1.0 13723 +30060 Meltf melanotransferrin Novel U 0.0008720769278245317 -0.2549491545295296 1.0 13724 +76137 Mcur1 mitochondrial calcium uniporter regulator 1 Novel N 0.0008717551203430246 -0.25495248780084423 1.0 13725 +14547 Gdap2 ganglioside-induced differentiation-associated-protein 2 Novel N 0.0008714452110874886 -0.25495569783072536 1.0 13726 +19823 Rnf7 ring finger protein 7 Novel U 0.0008713359475405537 -0.25495682957895266 1.0 13727 +53622 Krt85 keratin 85 Novel N 0.0008711437321100552 -0.254958820540063 1.0 13728 +207952 Klhl25 kelch-like 25 Novel U 0.0008707958227542655 -0.2549624241737334 1.0 13729 +194744 Slc25a43 solute carrier family 25, member 43 Novel U 0.0008707651218328254 -0.2549627421728684 1.0 13730 +78903 Wrnip1 Werner helicase interacting protein 1 Novel N 0.0008703314054953222 -0.2549672345924346 1.0 13731 +21877 Tk1 thymidine kinase 1 Novel U 0.0008703274562137873 -0.2549672754989629 1.0 13732 +56277 Tmem45a transmembrane protein 45a Novel U 0.000870024527784171 -0.2549704132216787 1.0 13733 +17937 Nab2 Ngfi-A binding protein 2 Novel U 0.0008699781222737904 -0.2549708938884297 1.0 13734 +23945 Mgll monoglyceride lipase Novel N 0.0008699149642077991 -0.25497154807760103 1.0 13735 +12566 Cdk2 cyclin dependent kinase 2 Novel U 0.0008698975105595201 -0.25497172886191616 1.0 13736 +71710 Lrrcc1 leucine rich repeat and coiled-coil domain containing 1 Novel U 0.0008697756434832547 -0.25497299115708594 1.0 13737 +22238 Ugt2b5 UDP glucuronosyltransferase 2 family, polypeptide B5 Novel U 0.0008696326824497219 -0.2549744719427717 1.0 13738 +19059 Ppp3r2 protein phosphatase 3, regulatory subunit B, alpha isoform (calcineurin B, type II) Novel U 0.0008694067440042534 -0.2549768122057625 1.0 13739 +19009 Pou6f1 POU domain, class 6, transcription factor 1 Novel N 0.0008689907998508326 -0.25498112054163025 1.0 13740 +76184 Abca6 ATP-binding cassette, sub-family A member 6 Novel U 0.0008688413052460021 -0.2549826690018327 1.0 13741 +239250 Slitrk6 SLIT and NTRK-like family, member 6 Novel U 0.0008686388590243029 -0.25498476593314195 1.0 13742 +15488 Hsd17b4 hydroxysteroid (17-beta) dehydrogenase 4 Novel N 0.0008682750045594603 -0.25498853472572774 1.0 13743 +67279 Med31 mediator complex subunit 31 Novel U 0.0008682732084075691 -0.25498855333021 1.0 13744 +13081 Cyp24a1 cytochrome P450, family 24, subfamily a, polypeptide 1 Novel U 0.000868118485640561 -0.2549901559435444 1.0 13745 +232925 Igfl3 IGF-like family member 3 Novel U 0.0008678209588697307 -0.254993237716056 1.0 13746 +208638 Slc25a38 solute carrier family 25, member 38 Novel N 0.0008677992408629568 -0.25499346267045625 1.0 13747 +73062 Ppp1r16a protein phosphatase 1, regulatory subunit 16A Novel U 0.0008677041438750641 -0.2549944476819307 1.0 13748 +20219 Apcs amyloid P component, serum Novel U 0.0008676834310803863 -0.25499466222437706 1.0 13749 +66841 Etfdh electron transferring flavoprotein, dehydrogenase Novel N 0.0008674680511666081 -0.2549968931224437 1.0 13750 +71096 Sntg1 syntrophin, gamma 1 Novel N 0.000867007564060219 -0.25500166283275405 1.0 13751 +103266 Tmem263 transmembrane protein 263 Novel U 0.0008664774982336173 -0.255007153237161 1.0 13752 +109778 Blvra biliverdin reductase A Novel U 0.0008659462304838349 -0.25501265609104873 1.0 13753 +317652 Klk15 kallikrein related-peptidase 15 Novel U 0.0008655734416789086 -0.2550165174252354 1.0 13754 +104884 Tdp1 tyrosyl-DNA phosphodiesterase 1 Novel U 0.0008654581964379545 -0.2550177111316527 1.0 13755 +16672 Krt34 keratin 34 Novel N 0.0008652055938430518 -0.2550203275810269 1.0 13756 +100862118 Spin2e spindlin family, member 2E Novel U 0.0008646156763261177 -0.25502643792727475 1.0 13757 +14634 Gli3 GLI-Kruppel family member GLI3 Novel U 0.0008646152358939403 -0.2550264424892568 1.0 13758 +320712 Abi3bp ABI family member 3 binding protein Novel U 0.000864267185216798 -0.2550300475867291 1.0 13759 +546837 Cyp2j7 cytochrome P450, family 2, subfamily j, polypeptide 7 Novel U 0.0008642554160334462 -0.25503016949154333 1.0 13760 +24053 Sgcg sarcoglycan, gamma (dystrophin-associated glycoprotein) Novel N 0.0008640882223711854 -0.25503190127800085 1.0 13761 +212712 Satb2 special AT-rich sequence binding protein 2 Novel U 0.000863880268139475 -0.2550340552610968 1.0 13762 +260408 Prss45 serine protease 45 Novel U 0.0008638696760841614 -0.25503416497325754 1.0 13763 +67270 Mrpl42 mitochondrial ribosomal protein L42 Novel U 0.0008637285045428942 -0.2550356272234412 1.0 13764 +52530 Nhp2 NHP2 ribonucleoprotein Novel U 0.0008636482105829896 -0.25503645890563836 1.0 13765 +384077 Pramel5 PRAME like 5 Novel U 0.0008635587931651088 -0.2550373850883133 1.0 13766 +67109 Zfp787 zinc finger protein 787 Novel U 0.0008632048298729189 -0.2550410514284579 1.0 13767 +78243 9230112D13Rik RIKEN cDNA 9230112D13 gene Novel U 0.0008625138221535106 -0.2550482088636999 1.0 13768 +15569 Elavl2 ELAV like RNA binding protein 1 Novel N 0.0008618710757947591 -0.2550548664093547 1.0 13769 +223642 Zc3h3 zinc finger CCCH type containing 3 Novel U 0.0008617352020397988 -0.2550562737852419 1.0 13770 +228432 Ano3 anoctamin 3 Novel N 0.0008616445276615876 -0.25505721298747075 1.0 13771 +67182 Pdzk1ip1 PDZK1 interacting protein 1 Novel U 0.0008615819921898177 -0.2550578607278316 1.0 13772 +241322 Zbtb6 zinc finger and BTB domain containing 6 Novel U 0.0008614244283615568 -0.25505949276878503 1.0 13773 +73712 Dmkn dermokine Novel U 0.0008611760659559618 -0.25506206529841774 1.0 13774 +667262 Vmn1r117 vomeronasal 1 receptor 117 Novel U 0.000861052276257223 -0.25506334750804793 1.0 13775 +16502 Kcnc1 potassium voltage gated channel, Shaw-related subfamily, member 1 Novel U 0.000860241152173907 -0.25507174910463865 1.0 13776 +243914 Lgi4 leucine-rich repeat LGI family, member 4 Novel U 0.0008600733827748536 -0.25507348685455894 1.0 13777 +54614 Prpf40b pre-mRNA processing factor 40B Novel U 0.0008596807323798562 -0.2550775539144426 1.0 13778 +56040 Rplp1 ribosomal protein lateral stalk subunit P1 Novel U 0.0008596497515530801 -0.2550778748128279 1.0 13779 +72425 Katnbl1 katanin p80 subunit B like 1 Novel U 0.0008596043566932237 -0.255078345011294 1.0 13780 +75863 Clec4g C-type lectin domain family 4, member g Novel U 0.0008592093265800096 -0.2550824367202208 1.0 13781 +54377 Cacng4 calcium channel, voltage-dependent, gamma subunit 4 Novel U 0.0008590756785189648 -0.25508382104244365 1.0 13782 +20364 Selenow selenoprotein W Novel U 0.0008590744914546899 -0.2550838333380164 1.0 13783 +23963 Tenm1 teneurin transmembrane protein 1 Novel N 0.0008590332435572153 -0.2550842605823825 1.0 13784 +76809 Bri3bp Bri3 binding protein Novel U 0.0008589225059426372 -0.255085407598954 1.0 13785 +76161 Lamp5 lysosomal-associated membrane protein family, member 5 Novel U 0.0008585511875459098 -0.25508925370270086 1.0 13786 +212772 Arl14ep ADP-ribosylation factor-like 14 effector protein Novel U 0.0008582977920680237 -0.25509187836473085 1.0 13787 +574428 Zmynd15 zinc finger, MYND-type containing 15 Novel N 0.0008577125752534143 -0.25509794002125863 1.0 13788 +227715 Exosc2 exosome component 2 Novel U 0.0008573027899616327 -0.25510218456383993 1.0 13789 +66422 Dctpp1 dCTP pyrophosphatase 1 Novel N 0.0008572146825282062 -0.255103097177739 1.0 13790 +210045 Nlrp4b NLR family, pyrin domain containing 4B Novel U 0.0008571306385532551 -0.2551039677024687 1.0 13791 +209645 Bend7 BEN domain containing 7 Novel U 0.0008569859148648728 -0.25510546674567547 1.0 13792 +69536 Hemk1 HemK methyltransferase family member 1 Novel U 0.0008569078966666473 -0.25510627485560794 1.0 13793 +69185 Dtwd1 DTW domain containing 1 Novel N 0.0008557076270834404 -0.25511870720849406 1.0 13794 +234135 Nsd3 nuclear receptor binding SET domain protein 3 Novel N 0.000855690996577876 -0.255118879466724 1.0 13795 +435489 Cbr1b carbonyl reductase 1B Novel U 0.000855568129150596 -0.2551201521234967 1.0 13796 +237222 Ofd1 OFD1, centriole and centriolar satellite protein Novel U 0.0008553760976826253 -0.2551221411791293 1.0 13797 +21351 Taldo1 transaldolase 1 Novel N 0.0008542977003757358 -0.2551333111829836 1.0 13798 +207615 Wdr37 WD repeat domain 37 Novel U 0.0008541796285501081 -0.2551345341670721 1.0 13799 +353310 Zfp703 zinc finger protein 703 Novel U 0.0008540896420665236 -0.25513546624411093 1.0 13800 +210356 Nckap5 NCK-associated protein 5 Novel U 0.0008540784377170164 -0.2551355822983948 1.0 13801 +58223 Mmp19 matrix metallopeptidase 19 Novel U 0.0008539688966877271 -0.25513671692077516 1.0 13802 +22431 Wt1 WT1 transcription factor Novel U 0.0008536853224328456 -0.25513965417358525 1.0 13803 +214321 Gm4787 predicted gene 4787 Novel U 0.0008536182139168279 -0.25514034928138807 1.0 13804 +73836 Slc35b2 solute carrier family 35, member B2 Novel N 0.0008532028460515014 -0.2551446516480827 1.0 13805 +627872 Dnah7a dynein, axonemal, heavy chain 7A Novel U 0.0008531380092722928 -0.2551453232253103 1.0 13806 +14013 Mecom MDS1 and EVI1 complex locus Novel U 0.0008530243316863264 -0.2551465006940088 1.0 13807 +667512 Vmn1r255 vomeronasal 1 receptor 255 Novel U 0.0008529617028982236 -0.25514714940093713 1.0 13808 +319613 Sybu syntabulin (syntaxin-interacting) Novel U 0.0008524221276067418 -0.25515273830406876 1.0 13809 +239985 Arid1b AT-rich interaction domain 1B Novel U 0.0008522895111235842 -0.25515411194124177 1.0 13810 +71682 Wdr27 WD repeat domain 27 Novel U 0.0008522791924473282 -0.2551542188217512 1.0 13811 +104174 Gldc glycine decarboxylase Novel N 0.0008517475018636369 -0.2551597260553387 1.0 13812 +14590 Ggh gamma-glutamyl hydrolase Novel U 0.0008516800058268569 -0.2551604251770689 1.0 13813 +16319 Incenp inner centromere protein Novel U 0.0008514254236364871 -0.2551630621310278 1.0 13814 +666048 Trabd2b TraB domain containing 2B Novel U 0.0008512146897164592 -0.2551652449060439 1.0 13815 +13190 Dct dopachrome tautomerase Novel N 0.0008511923615011753 -0.2551654761809638 1.0 13816 +108737 Oxsr1 oxidative-stress responsive 1 Novel U 0.000850985742913832 -0.2551676163294993 1.0 13817 +235634 Fam240a family with sequence similarity 240 member A Novel U 0.0008509655915269305 -0.2551678250569024 1.0 13818 +100504689 Plscr5 phospholipid scramblase family, member 5 Novel U 0.0008508499554457015 -0.2551690228116304 1.0 13819 +12290 Cacna1e calcium channel, voltage-dependent, R type, alpha 1E subunit Novel N 0.0008507452147818585 -0.25517010771198334 1.0 13820 +266645 Acmsd amino carboxymuconate semialdehyde decarboxylase Novel N 0.0008506971797061254 -0.25517060525771873 1.0 13821 +665596 H2bc23 H2B clustered histone 23 Novel U 0.0008505414444187583 -0.25517221835870574 1.0 13822 +21854 Timm17a translocase of inner mitochondrial membrane 17a Novel U 0.0008505035113664881 -0.25517261126801416 1.0 13823 +626596 Rgs22 regulator of G-protein signalling 22 Novel U 0.0008504303275726729 -0.2551733693033447 1.0 13824 +21807 Tsc22d1 TSC22 domain family, member 1 Novel N 0.0008504042089427801 -0.25517363983925456 1.0 13825 +217082 Hlf hepatic leukemia factor Novel N 0.0008492502250402223 -0.2551855927665821 1.0 13826 +17933 Myt1l myelin transcription factor 1-like Novel N 0.0008490166038323736 -0.25518801260737306 1.0 13827 +76615 Got1l1 glutamic-oxaloacetic transaminase 1-like 1 Novel U 0.0008487705556285506 -0.2551905611665799 1.0 13828 +333473 Zfp36l3 zinc finger protein 36, C3H type-like 3 Novel U 0.0008486294277212425 -0.2551920229648044 1.0 13829 +76411 Ift43 intraflagellar transport 43 Novel U 0.0008483491995115322 -0.25519492555938866 1.0 13830 +72413 Kcnmb2 potassium large conductance calcium-activated channel, subfamily M, beta member 2 Novel N 0.0008482327418544554 -0.2551961318239723 1.0 13831 +72175 Mfsd8 major facilitator superfamily domain containing 8 Novel N 0.0008482019367711025 -0.255196450902013 1.0 13832 +52898 Rnasek ribonuclease, RNase K Novel U 0.0008481159918086387 -0.2551973411171089 1.0 13833 +56364 Zmym3 zinc finger, MYM-type 3 Novel U 0.0008481015167456005 -0.25519749104933603 1.0 13834 +70572 Ipo5 importin 5 Novel U 0.0008480693657127707 -0.2551978240686772 1.0 13835 +666348 Apol7e apolipoprotein L 7e Novel U 0.0008475937895497898 -0.25520275007093957 1.0 13836 +243274 Tmem132d transmembrane protein 132D Novel U 0.000847506728377036 -0.255203651847705 1.0 13837 +15212 Hexb hexosaminidase B Novel U 0.0008475021300382325 -0.25520369947714716 1.0 13838 +333088 Kcp kielin/chordin-like protein Novel U 0.0008473789213531238 -0.25520497566865724 1.0 13839 +59054 Mrps30 mitochondrial ribosomal protein S30 Novel N 0.0008470763691841101 -0.255208109494078 1.0 13840 +13122 Cyp7a1 cytochrome P450, family 7, subfamily a, polypeptide 1 Novel U 0.0008469119728915208 -0.25520981230547246 1.0 13841 +69837 Pcgf1 polycomb group ring finger 1 Novel N 0.0008468277992747407 -0.25521068417302795 1.0 13842 +67872 Nsmce4a NSE4 homolog A, SMC5-SMC6 complex component Novel N 0.0008467853362808515 -0.2552111240033228 1.0 13843 +18970 Polb polymerase (DNA directed), beta Novel N 0.0008467541286940708 -0.2552114472504808 1.0 13844 +171192 Vmn1r5 vomeronasal 1 receptor 5 Novel U 0.0008466686194931299 -0.25521233295197315 1.0 13845 +433323 Sgpp2 sphingosine-1-phosphate phosphatase 2 Novel N 0.0008464928032158876 -0.2552141540511932 1.0 13846 +20286 Zc3h7b zinc finger CCCH type containing 7B Novel N 0.0008463710100234301 -0.2552154155810769 1.0 13847 +269585 Zscan20 zinc finger and SCAN domains 20 Novel U 0.0008463678483519144 -0.25521544832956655 1.0 13848 +218138 Gmds GDP-mannose 4, 6-dehydratase Novel N 0.0008462018114021478 -0.255217168134834 1.0 13849 +94066 Mrpl36 mitochondrial ribosomal protein L36 Novel U 0.0008461778368788801 -0.25521741646215795 1.0 13850 +214403 Cfhr4 complement factor H-related 4 Novel U 0.0008459787768051687 -0.2552194783198577 1.0 13851 +268448 Phf12 PHD finger protein 12 Novel N 0.0008454374134601187 -0.2552250857435894 1.0 13852 +231148 Ablim2 actin-binding LIM protein 2 Novel U 0.0008453986503847719 -0.25522548725024957 1.0 13853 +209776 Gpr139 G protein-coupled receptor 139 Novel N 0.0008453712803675251 -0.2552257707479884 1.0 13854 +105298 Epdr1 ependymin related 1 Novel U 0.0008451767342830548 -0.25522778584993605 1.0 13855 +224093 Fam43a family with sequence similarity 43, member A Novel U 0.0008444615128975579 -0.2552351940895354 1.0 13856 +228356 Cstpp1 centriolar satellite-associated tubulin polyglutamylase complex regulator 1 Novel N 0.0008441708296369193 -0.25523820497719335 1.0 13857 +545123 Cyp2d11 cytochrome P450, family 2, subfamily d, polypeptide 11 Novel U 0.000844127793783895 -0.25523865074114427 1.0 13858 +107029 Me2 malic enzyme 2, NAD(+)-dependent, mitochondrial Novel N 0.0008439635258472039 -0.2552403522230325 1.0 13859 +69228 Zfp746 zinc finger protein 746 Novel U 0.0008435574335173511 -0.25524455851403555 1.0 13860 +107747 Aldh1l1 aldehyde dehydrogenase 1 family, member L1 Novel N 0.0008435525862311352 -0.25524460872206683 1.0 13861 +319513 Pced1a PC-esterase domain containing 1A Novel U 0.0008433895703622876 -0.25524629723507747 1.0 13862 +52700 Txndc17 thioredoxin domain containing 17 Novel U 0.0008433369051074857 -0.25524684274005544 1.0 13863 +16509 Kcne1 potassium voltage-gated channel, Isk-related subfamily, member 1 Novel U 0.00084223262690983 -0.25525828081732554 1.0 13864 +237397 C2cd4c C2 calcium-dependent domain containing 4C Novel U 0.0008421239574843918 -0.25525940641166195 1.0 13865 +433791 Zfp992 zinc finger protein 992 Novel U 0.0008419977313347146 -0.25526071385797083 1.0 13866 +76722 Ckmt2 creatine kinase, mitochondrial 2 Novel N 0.0008418667113880677 -0.2552620709582712 1.0 13867 +64297 Gprc5b G protein-coupled receptor, family C, group 5, member B Novel N 0.0008415366987663424 -0.2552654892181584 1.0 13868 +171212 Galnt10 polypeptide N-acetylgalactosaminyltransferase 10 Novel N 0.0008414504128056624 -0.25526638296530263 1.0 13869 +74071 Lmntd1 lamin tail domain containing 1 Novel U 0.0008412572113907376 -0.25526838413920727 1.0 13870 +18534 Pck1 phosphoenolpyruvate carboxykinase 1, cytosolic Novel U 0.0008410069011809502 -0.25527097684413175 1.0 13871 +56523 Pmfbp1 polyamine modulated factor 1 binding protein 1 Novel N 0.0008407604852420235 -0.25527352921232666 1.0 13872 +19417 Rasgrf1 RAS protein-specific guanine nucleotide-releasing factor 1 Novel U 0.0008402757883552759 -0.25527854968674607 1.0 13873 +114615 Elac1 elaC ribonuclease Z 1 Novel U 0.0008402655921974417 -0.2552786552982137 1.0 13874 +68193 Rpl24 ribosomal protein L24 Novel N 0.0008400766671814873 -0.2552806121773184 1.0 13875 +12723 Clcn1 chloride channel, voltage-sensitive 1 Novel U 0.0008399385580140164 -0.25528204270753496 1.0 13876 +26450 Rbbp9 retinoblastoma binding protein 9, serine hydrolase Novel U 0.0008396982189247258 -0.2552845321319211 1.0 13877 +16326 Inhbe inhibin beta-E Novel U 0.0008396543801142606 -0.25528498621287876 1.0 13878 +20257 Stmn2 stathmin-like 2 Novel U 0.0008396301026693725 -0.2552852376778548 1.0 13879 +19895 Rpia ribose 5-phosphate isomerase A Novel N 0.0008396237749990915 -0.25528530321965565 1.0 13880 +66865 Pmpca peptidase (mitochondrial processing) alpha Novel U 0.0008394902991367516 -0.2552866857582499 1.0 13881 +240675 Vwa2 von Willebrand factor A domain containing 2 Novel N 0.0008393648405663892 -0.25528798525399754 1.0 13882 +320951 Pisd phosphatidylserine decarboxylase Novel U 0.0008390650747660502 -0.25529109021830315 1.0 13883 +231003 Klhl17 kelch-like 17 Novel U 0.0008386712525876857 -0.25529516941548047 1.0 13884 +66054 Cndp2 CNDP dipeptidase 2 Novel U 0.000838575559943863 -0.25529616059673943 1.0 13885 +54683 Prdx5 peroxiredoxin 5 Novel N 0.0008384219110752274 -0.2552977520866698 1.0 13886 +71743 Coasy Coenzyme A synthase Novel N 0.0008384090470742668 -0.25529788533156894 1.0 13887 +15446 Hpgd hydroxyprostaglandin dehydrogenase 15 (NAD) Novel U 0.0008382852055814696 -0.2552991680776802 1.0 13888 +18142 Npas1 neuronal PAS domain protein 1 Novel N 0.0008382203433655035 -0.255299839918381 1.0 13889 +107242 AI837181 expressed sequence AI837181 Novel U 0.0008380945148745027 -0.2553011432457544 1.0 13890 +102162 Taf5l TATA-box binding protein associated factor 5 like Novel N 0.0008379537218851937 -0.25530260157490936 1.0 13891 +171170 Mbnl3 muscleblind like splicing factor 3 Novel N 0.0008379003115569875 -0.2553031547973331 1.0 13892 +76850 Ago4 argonaute RISC catalytic subunit 4 Novel N 0.000837851688238039 -0.2553036584360724 1.0 13893 +15213 Hey1 hairy/enhancer-of-split related with YRPW motif 1 Novel U 0.0008376228393455771 -0.2553060288453775 1.0 13894 +546368 Cldn34c5 claudin 34C5 Novel U 0.0008375864907438213 -0.2553064053429996 1.0 13895 +102747 Lrrc49 leucine rich repeat containing 49 Novel U 0.0008374469576286544 -0.25530785062241956 1.0 13896 +319582 Trmt9b tRNA methyltransferase 9B Novel N 0.0008372706617566644 -0.25530967668926624 1.0 13897 +232314 Ppp4r2 protein phosphatase 4, regulatory subunit 2 Novel U 0.0008371643862025694 -0.25531077748796194 1.0 13898 +26383 Fto FTO alpha-ketoglutarate dependent dioxygenase Novel N 0.0008371072564121846 -0.2553113692364527 1.0 13899 +67513 Faap20 Fanconi anemia core complex associated protein 20 Novel N 0.0008370288956860171 -0.2553121808942784 1.0 13900 +12227 Btg2 BTG anti-proliferation factor 2 Novel N 0.0008365356778766872 -0.25531728962813377 1.0 13901 +22021 Tpst1 protein-tyrosine sulfotransferase 1 Novel U 0.0008365333630672628 -0.25531731360485366 1.0 13902 +210962 Spata31e5 spermatogenesis associated 31 subfamily E member 5 Novel U 0.0008365139844030466 -0.2553175143284206 1.0 13903 +20744 Strbp spermatid perinuclear RNA binding protein Novel U 0.0008364150233889405 -0.2553185393633515 1.0 13904 +435947 Vmn1r151 vomeronasal 1 receptor 151 Novel U 0.0008363390388201434 -0.2553193264090173 1.0 13905 +67811 Poldip2 polymerase (DNA-directed), delta interacting protein 2 Novel N 0.0008362077337925952 -0.2553206864621762 1.0 13906 +244682 Cntn5 contactin 5 Novel U 0.0008361427066511506 -0.2553213600111697 1.0 13907 +16842 Lef1 lymphoid enhancer binding factor 1 Novel U 0.0008361304906344145 -0.2553214865442694 1.0 13908 +320752 Dpy19l2 dpy-19 like 2 Novel N 0.0008360582970159172 -0.25532223432339657 1.0 13909 +245128 AU018091 expressed sequence AU018091 Novel U 0.0008360442608128214 -0.2553223797099268 1.0 13910 +14081 Acsl1 acyl-CoA synthetase long-chain family member 1 Novel U 0.0008359610706223625 -0.25532324139118484 1.0 13911 +224143 Poglut1 protein O-glucosyltransferase 1 Novel U 0.0008358953449986135 -0.255323922175035 1.0 13912 +436523 Prss1l serine protease 1 (trypsin 1) like Novel U 0.0008357034154230735 -0.2553259101752691 1.0 13913 +75578 Fggy FGGY carbohydrate kinase domain containing Novel N 0.0008347646727304594 -0.2553356336412197 1.0 13914 +100312484 Vmn1r196 vomeronasal 1 receptor 196 Novel U 0.000834625715709392 -0.25533707295347596 1.0 13915 +668113 Cwc22rt5 CWC22 spliceosome-associated protein, retrotransposed 5 Novel U 0.0008344506818734815 -0.2553388859481944 1.0 13916 +72155 Cenpn centromere protein N Novel U 0.0008343702499774508 -0.25533971905912944 1.0 13917 +21869 Nkx2-1 NK2 homeobox 1 Novel U 0.0008342250288677738 -0.25534122325460956 1.0 13918 +329540 Nol4l nucleolar protein 4-like Novel U 0.0008340988229265606 -0.2553425304915999 1.0 13919 +330483 Ceacam16 CEA cell adhesion molecule 16 Novel N 0.0008334732160326093 -0.2553490105072417 1.0 13920 +70552 Lrrc56 leucine rich repeat containing 56 Novel N 0.000833081702613115 -0.2553530657903705 1.0 13921 +269614 Pank4 pantothenate kinase 4 Novel U 0.0008329368284719408 -0.25535456639196236 1.0 13922 +17978 Ncoa2 nuclear receptor coactivator 2 Novel N 0.00083259238559762 -0.2553581341199316 1.0 13923 +22761 Zfpm1 zinc finger protein, multitype 1 Novel U 0.0008319667230380103 -0.25536461471215643 1.0 13924 +217149 Cisd3 CDGSH iron sulfur domain 3 Novel N 0.0008317218870185321 -0.2553671507155977 1.0 13925 +75761 Apol7a apolipoprotein L 7a Novel U 0.0008316992886220203 -0.25536738478904586 1.0 13926 +18742 Pitx3 paired-like homeodomain transcription factor 3 Novel U 0.000831623364346983 -0.25536817121019084 1.0 13927 +12287 Cacna1b calcium channel, voltage-dependent, N type, alpha 1B subunit Novel U 0.0008312073825859897 -0.25537247993559653 1.0 13928 +12810 Coch cochlin Novel U 0.0008310916870031857 -0.25537367830663993 1.0 13929 +71355 Col24a1 collagen, type XXIV, alpha 1 Novel U 0.0008309605265992684 -0.255375036861792 1.0 13930 +74484 Rbm31y RNA binding motif 31, Y-linked Novel U 0.000830919262108291 -0.2553754642780331 1.0 13931 +22668 Sf1 splicing factor 1 Novel N 0.0008308594678394216 -0.2553760836251044 1.0 13932 +78925 Srd5a1 steroid 5 alpha-reductase 1 Novel N 0.0008307123698664214 -0.2553776072610731 1.0 13933 +71702 Cdc5l cell division cycle 5-like Novel U 0.0008304190221993696 -0.2553806457465652 1.0 13934 +19712 Rest RE1-silencing transcription factor Novel U 0.0008301579627989455 -0.25538334979125293 1.0 13935 +381816 Clec2m C-type lectin domain family 2, member m Novel U 0.0008298174546298264 -0.25538687676367505 1.0 13936 +208718 Dis3l2 DIS3 like 3'-5' exoribonuclease 2 Novel U 0.0008296176220795646 -0.2553889466226615 1.0 13937 +619288 Garin4 golgi associated RAB2 interactor family member 4 Novel U 0.0008293774944325111 -0.2553914338569359 1.0 13938 +243272 Sbno1 strawberry notch 1 Novel U 0.0008292823238187105 -0.2553924196310251 1.0 13939 +242891 Cct8l1 chaperonin containing TCP1 subunit 8-like 1 Novel U 0.0008291342694606906 -0.25539395317319846 1.0 13940 +432879 Kbtbd6 kelch repeat and BTB (POZ) domain containing 6 Novel U 0.0008286840365923685 -0.25539861667044794 1.0 13941 +260296 Trim61 tripartite motif-containing 61 Novel U 0.0008284895457696569 -0.255400631199996 1.0 13942 +18476 Pafah1b3 platelet-activating factor acetylhydrolase, isoform 1b, subunit 3 Novel N 0.0008284000501558245 -0.2554015581926221 1.0 13943 +271508 Brd8dc BRD8 domain containing Novel U 0.0008281058126091413 -0.2554046058954581 1.0 13944 +122152370 Spacdr sperm acrosome developmental regulator Novel U 0.0008279570263917399 -0.25540614701820685 1.0 13945 +328162 Trmt61a tRNA methyltransferase 61A Novel N 0.0008275052133338316 -0.2554108268830081 1.0 13946 +216613 Ccdc85a coiled-coil domain containing 85A Novel U 0.0008270653852561694 -0.25541538260777796 1.0 13947 +225207 Zfp521 zinc finger protein 521 Novel U 0.0008267757050803403 -0.2554183831055165 1.0 13948 +217874 Rd3l retinal degeneration 3-like Novel U 0.000826430120846213 -0.2554219626556531 1.0 13949 +241112 Catip ciliogenesis associated TTC17 interacting protein Novel U 0.0008263114739295181 -0.25542319159651594 1.0 13950 +14755 Pigq phosphatidylinositol glycan anchor biosynthesis, class Q Novel U 0.0008261465753331674 -0.2554248996107562 1.0 13951 +20962 Sycp3 synaptonemal complex protein 3 Novel U 0.0008261040794665793 -0.2554253397815453 1.0 13952 +70208 Med23 mediator complex subunit 23 Novel N 0.0008259442280077852 -0.2554269955177007 1.0 13953 +76866 Morn1 MORN repeat containing 1 Novel U 0.0008258074069265541 -0.25542841270596234 1.0 13954 +219094 Khnyn KH and NYN domain containing Novel U 0.000825526724261084 -0.2554313200077843 1.0 13955 +234723 Txnl4b thioredoxin-like 4B Novel U 0.0008254667170694264 -0.2554319415603029 1.0 13956 +78266 Zfp687 zinc finger protein 687 Novel U 0.0008252282134288632 -0.25543441197317146 1.0 13957 +72160 Tmem163 transmembrane protein 163 Novel N 0.0008250703215374408 -0.2554360474121924 1.0 13958 +268449 Rpl23a ribosomal protein L23A Novel U 0.0008245633670044061 -0.25544129843058033 1.0 13959 +11757 Prdx3 peroxiredoxin 3 Novel U 0.0008240999813128036 -0.25544609816434094 1.0 13960 +22698 Zfp39 zinc finger protein 39 Novel U 0.0008238182907501539 -0.25544901590592883 1.0 13961 +20255 Scg3 secretogranin III Novel U 0.0008237451873159057 -0.2554497731088976 1.0 13962 +57246 Tbx20 T-box 20 Novel U 0.0008234511732885004 -0.2554528184965283 1.0 13963 +12454 Ccnk cyclin K Novel U 0.0008231070536245408 -0.25545638287669525 1.0 13964 +70392 Asb12 ankyrin repeat and SOCS box-containing 12 Novel N 0.0008230259502985808 -0.2554572229422794 1.0 13965 +12401 Serpina6 serine (or cysteine) peptidase inhibitor, clade A, member 6 Novel N 0.0008223992052398235 -0.2554637147469949 1.0 13966 +109929 Zbtb25 zinc finger and BTB domain containing 25 Novel U 0.0008219868138056532 -0.25546798628391343 1.0 13967 +74111 Rbm19 RNA binding motif protein 19 Novel U 0.0008219693990339864 -0.25546816666554584 1.0 13968 +434204 Whamm WAS protein homolog associated with actin, golgi membranes and microtubules Novel U 0.0008219185422007678 -0.25546869343895245 1.0 13969 +67272 Cmtm5 CKLF-like MARVEL transmembrane domain containing 5 Novel U 0.0008208443316008996 -0.2554798200770331 1.0 13970 +12994 Csn3 casein kappa Novel U 0.0008207684240662623 -0.2554806063247816 1.0 13971 +216558 Ugp2 UDP-glucose pyrophosphorylase 2 Novel N 0.000820620735226538 -0.25548213608092846 1.0 13972 +13014 Cstb cystatin B Novel N 0.0008200563377608766 -0.2554879820913242 1.0 13973 +17135 Mafk v-maf musculoaponeurotic fibrosarcoma oncogene family, protein K (avian) Novel N 0.0008191927252984678 -0.25549692736082014 1.0 13974 +101023 Zfp513 zinc finger protein 513 Novel N 0.0008187481767904716 -0.2555015319796522 1.0 13975 +17930 Myom2 myomesin 2 Novel U 0.0008186763947645774 -0.2555022754955167 1.0 13976 +76743 Gje1 gap junction protein, epsilon 1 Novel U 0.0008186751837681908 -0.25550228803897745 1.0 13977 +64074 Smoc2 SPARC related modular calcium binding 2 Novel U 0.0008185253627176454 -0.2555038398804939 1.0 13978 +226604 Gm4847 predicted gene 4847 Novel U 0.0008176675177772898 -0.25551272541018594 1.0 13979 +233164 Gm4884 predicted gene 4884 Novel U 0.0008173401593323897 -0.2555161161781969 1.0 13980 +109161 Ube2q2 ubiquitin-conjugating enzyme E2Q family member 2 Novel U 0.0008173338927913344 -0.25551618108682317 1.0 13981 +667404 Vmn1r135 vomeronasal 1 receptor 135 Novel U 0.0008171320454185991 -0.2555182718152746 1.0 13982 +628705 Phf11c PHD finger protein 11C Novel U 0.0008166680836947188 -0.25552307751555864 1.0 13983 +56429 Dpt dermatopontin Novel U 0.0008166037927509677 -0.25552374343904055 1.0 13984 +27369 Dguok deoxyguanosine kinase Novel U 0.00081657067945032 -0.2555240864255201 1.0 13985 +14622 Gjb5 gap junction protein, beta 5 Novel N 0.0008165427003063007 -0.2555243762325741 1.0 13986 +18992 Pou3f2 POU domain, class 3, transcription factor 2 Novel N 0.0008164893699247756 -0.2555249286269128 1.0 13987 +381350 Spag6 sperm associated antigen 6 Novel U 0.0008164277113034401 -0.2555255672848856 1.0 13988 +76441 Daam2 dishevelled associated activator of morphogenesis 2 Novel U 0.000816223261177927 -0.2555276849725648 1.0 13989 +68490 Zfp579 zinc finger protein 579 Novel N 0.0008161065464250993 -0.2555288939001378 1.0 13990 +667551 Vmn1r157 vomeronasal 1 receptor 157 Novel U 0.0008160393091478289 -0.25552959034164546 1.0 13991 +97165 Hmgb2 high mobility group box 2 Novel U 0.0008159475106396767 -0.2555305411875752 1.0 13992 +230789 Fam76a family with sequence similarity 76, member A Novel U 0.000815886777426009 -0.25553117026020583 1.0 13993 +72720 Zfp248 zinc finger protein 248 Novel U 0.0008154822723800795 -0.2555353601101742 1.0 13994 +238405 Adam6b a disintegrin and metallopeptidase domain 6B Novel U 0.0008150167933643809 -0.25554018152651703 1.0 13995 +22289 Kdm6a lysine (K)-specific demethylase 6A Novel N 0.0008149398956702735 -0.2555409780303047 1.0 13996 +105594 Cphx1 cytoplasmic polyadenylated homeobox 1 Novel U 0.0008147268304261408 -0.2555431849530993 1.0 13997 +245631 Pwwp3b PWWP domain containing 3B Novel U 0.0008144797416163466 -0.2555457442908685 1.0 13998 +269536 Tex10 testis expressed gene 10 Novel U 0.0008143535768315849 -0.2555470511015616 1.0 13999 +665578 Potefam3d POTE ankyrin domain family member 3D Novel U 0.0008143427695359619 -0.25554716304317443 1.0 14000 +12572 Cdk7 cyclin dependent kinase 7 Novel U 0.0008142595605875391 -0.25554802491872686 1.0 14001 +68043 Eef1akmt1 EEF1A alpha lysine methyltransferase 1 Novel N 0.0008142586456014928 -0.2555480343961222 1.0 14002 +228366 Large2 LARGE xylosyl- and glucuronyltransferase 2 Novel N 0.0008139904303920419 -0.25555081256044465 1.0 14003 +13512 Dsg3 desmoglein 3 Novel N 0.0008138924949922932 -0.2555518269720958 1.0 14004 +66952 2310030G06Rik RIKEN cDNA 2310030G06 gene Novel U 0.0008138634871009421 -0.2555521274348808 1.0 14005 +18618 Pemt phosphatidylethanolamine N-methyltransferase Novel U 0.0008138103948759998 -0.25555267736240145 1.0 14006 +415115 Neurl2 neuralized E3 ubiquitin protein ligase 2 Novel U 0.0008137723114521796 -0.25555307182925346 1.0 14007 +230678 Tmem125 transmembrane protein 125 Novel U 0.0008137600676377836 -0.2555531986502805 1.0 14008 +69742 Tm2d2 TM2 domain containing 2 Novel U 0.0008137436420354762 -0.2555533687861292 1.0 14009 +546840 Ldlrad1 low density lipoprotein receptor class A domain containing 1 Novel U 0.0008137216855846248 -0.25555359621032536 1.0 14010 +105511 Fam170b family with sequence similarity 170, member B Novel U 0.0008136479200594684 -0.25555436027121003 1.0 14011 +103836 Zfp692 zinc finger protein 692 Novel N 0.0008134977360811808 -0.25555591587192006 1.0 14012 +636731 Vmn1r61 vomeronasal 1 receptor 61 Novel U 0.0008131733679766702 -0.25555927566608355 1.0 14013 +18140 Uhrf1 ubiquitin-like, containing PHD and RING finger domains, 1 Novel U 0.0008129620315170347 -0.25556146468218516 1.0 14014 +109801 Glo1 glyoxalase 1 Novel N 0.0008126236731761134 -0.2555649693867575 1.0 14015 +69358 Lrrc51 leucine rich repeat containing 51 Novel U 0.0008125636544135798 -0.2555655910591268 1.0 14016 +21975 Top3a topoisomerase (DNA) III alpha Novel U 0.0008117474607120369 -0.2555740451666565 1.0 14017 +435940 Vmn1r249 vomeronasal 1 receptor 249 Novel U 0.0008116964861547632 -0.25557457315944504 1.0 14018 +17189 Mb myoglobin Novel N 0.0008113063031939107 -0.25557861466172693 1.0 14019 +66323 1700001K19Rik RIKEN cDNA 1700001K19 gene Novel U 0.0008106602204079061 -0.25558530676598556 1.0 14020 +116905 Dph1 diphthamide biosynthesis 1 Novel U 0.0008106414696357438 -0.2555855009858672 1.0 14021 +57738 Slc15a2 solute carrier family 15 (H+/peptide transporter), member 2 Novel U 0.0008105518442789211 -0.2555864293223669 1.0 14022 +236539 Phgdh 3-phosphoglycerate dehydrogenase Novel U 0.0008103539753621032 -0.25558847884210273 1.0 14023 +223827 Gxylt1 glucoside xylosyltransferase 1 Novel N 0.0008100495719044592 -0.2555916318431103 1.0 14024 +217262 Abca9 ATP-binding cassette, sub-family A member 9 Novel U 0.0008094061729254976 -0.25559829614858376 1.0 14025 +78809 4930562C15Rik RIKEN cDNA 4930562C15 gene Novel U 0.0008091608242480914 -0.2556008374621189 1.0 14026 +76952 Nt5c2 5'-nucleotidase, cytosolic II Novel U 0.0008087724696370355 -0.25560486002641375 1.0 14027 +171246 Vmn1r200 vomeronasal 1 receptor 200 Novel U 0.0008084811321827426 -0.2556078776901881 1.0 14028 +208084 Pif1 PIF1 5'-to-3' DNA helicase Novel U 0.0008082262457798717 -0.25561051779517013 1.0 14029 +665180 Clec2l C-type lectin domain family 2, member L Novel U 0.0008080666243390416 -0.25561217114880697 1.0 14030 +667215 Vmn1r125 vomeronasal 1 receptor 125 Novel U 0.0008080204255151795 -0.25561264967470587 1.0 14031 +225865 Catsper1 cation channel, sperm associated 1 Novel U 0.0008079838400120336 -0.2556130286261447 1.0 14032 +217826 Kcnk13 potassium channel, subfamily K, member 13 Novel U 0.0008079559160073289 -0.25561331786206754 1.0 14033 +20272 Scn7a sodium channel, voltage-gated, type VII, alpha Novel N 0.0008078791354257827 -0.25561411315280713 1.0 14034 +76406 Saxo5 stabilizer of axonemal microtubules 5 Novel U 0.0008078212116769638 -0.25561471312509326 1.0 14035 +228410 Cstf3 cleavage stimulation factor, 3' pre-RNA, subunit 3 Novel N 0.0008077361199294501 -0.2556155945026168 1.0 14036 +16826 Ldb2 LIM domain binding 2 Novel U 0.0008076553004967244 -0.25561643162764414 1.0 14037 +30806 Adamts8 ADAM metallopeptidase with thrombospondin type 1 motif 8 Novel N 0.0008074130472137468 -0.2556189408791856 1.0 14038 +57316 C1d C1D nuclear receptor co-repressor Novel N 0.0008073759028024125 -0.2556193256197771 1.0 14039 +223753 Cerk ceramide kinase Novel N 0.000807029429138975 -0.2556229143825933 1.0 14040 +102638837 Tle7 TLE family member 7 Novel U 0.0008069168108398115 -0.2556240808792339 1.0 14041 +353130 Prss33 serine protease 33 Novel N 0.00080675067124522 -0.25562580174769317 1.0 14042 +279499 Kctd19 potassium channel tetramerisation domain containing 19 Novel U 0.0008067008577255479 -0.2556263177144924 1.0 14043 +56292 Naa10 N(alpha)-acetyltransferase 10, NatA catalytic subunit Novel U 0.0008066924193613818 -0.25562640511879103 1.0 14044 +338370 Nalcn sodium leak channel, non-selective Novel U 0.000806624486613898 -0.2556271087639563 1.0 14045 +12837 Col8a1 collagen, type VIII, alpha 1 Novel U 0.0008059329510891999 -0.25563427166618813 1.0 14046 +268747 Carmil3 capping protein regulator and myosin 1 linker 3 Novel U 0.0008059000471702568 -0.25563461248389885 1.0 14047 +71711 Mus81 MUS81 structure-specific endonuclease subunit Novel N 0.0008057639442040399 -0.2556360222339488 1.0 14048 +241175 Cntnap5b contactin associated protein-like 5B Novel U 0.0008056309190192782 -0.2556374001044396 1.0 14049 +333433 Gpd1l glycerol-3-phosphate dehydrogenase 1-like Novel U 0.0008056037117845962 -0.25563768191608205 1.0 14050 +12615 Cenpa centromere protein A Novel U 0.0008054427043841768 -0.25563934962544277 1.0 14051 +67246 Resf1 retroelement silencing factor 1 Novel U 0.0008053594645055468 -0.2556402118213692 1.0 14052 +75124 Nxnl2 nucleoredoxin-like 2 Novel U 0.000805233439511199 -0.2556415171841179 1.0 14053 +69743 Casz1 castor zinc finger 1 Novel U 0.0008051918853115591 -0.25564194760115166 1.0 14054 +16987 Lss lanosterol synthase Novel U 0.0008050653002658336 -0.2556432587648941 1.0 14055 +13087 Cyp2a5 cytochrome P450, family 2, subfamily a, polypeptide 5 Novel U 0.0008048097765286793 -0.2556459054713636 1.0 14056 +211548 Nomo1 nodal modulator 1 Novel U 0.0008047693327005932 -0.2556463243872054 1.0 14057 +78617 Cstad CSA-conditional, T cell activation-dependent protein Novel U 0.0008046413320079235 -0.2556476502141723 1.0 14058 +245555 Nexmif neurite extension and migration factor Novel U 0.0008045382418774409 -0.2556487180183549 1.0 14059 +20523 Slc25a14 solute carrier family 25 (mitochondrial carrier, brain), member 14 Novel N 0.0008044616912304881 -0.2556495109274396 1.0 14060 +14660 Gls glutaminase Novel U 0.0008043804361105676 -0.2556503525653006 1.0 14061 +74464 Zswim5 zinc finger SWIM-type containing 5 Novel U 0.0008042094680455866 -0.2556521234468974 1.0 14062 +208715 Hmgcs1 3-hydroxy-3-methylglutaryl-Coenzyme A synthase 1 Novel N 0.0008036849715870753 -0.2556575561639728 1.0 14063 +21749 Terf1 telomeric repeat binding factor 1 Novel U 0.0008031900095923158 -0.2556626829640435 1.0 14064 +17068 Ly6d lymphocyte antigen 6 family member D Novel U 0.0008029844826954206 -0.2556648118048852 1.0 14065 +628779 Hs3st4 heparan sulfate (glucosamine) 3-O-sulfotransferase 4 Novel U 0.000802863432590003 -0.2556660656378978 1.0 14066 +217473 Ankmy2 ankyrin repeat and MYND domain containing 2 Novel U 0.0008027991694954074 -0.2556667312729191 1.0 14067 +66609 Cryzl1 crystallin zeta like 1 Novel U 0.0008024013303361898 -0.255670852077852 1.0 14068 +78174 Cox7b2 cytochrome c oxidase subunit 7B2 Novel U 0.000802370331985164 -0.2556711731577529 1.0 14069 +626397 Vmn1r12 vomeronasal 1 receptor 12 Novel U 0.000802230462850305 -0.25567262191765383 1.0 14070 +110532 Adarb1 adenosine deaminase, RNA-specific, B1 Novel U 0.0008022104876659835 -0.2556728288199564 1.0 14071 +102693 Phldb1 pleckstrin homology like domain, family B, member 1 Novel U 0.0008019969875472427 -0.25567504024716786 1.0 14072 +18999 Pou5f1 POU domain, class 5, transcription factor 1 Novel U 0.0008009175036122081 -0.25568622150628084 1.0 14073 +121022 Mrps6 mitochondrial ribosomal protein S6 Novel U 0.0008008411367301048 -0.2556870125119352 1.0 14074 +50926 Hnrnpdl heterogeneous nuclear ribonucleoprotein D-like Novel N 0.0008004435156502095 -0.2556911310580097 1.0 14075 +236848 Tmem185a transmembrane protein 185A Novel N 0.0007999972468130908 -0.2556957534959543 1.0 14076 +244238 Mrgpre MAS-related GPR, member E Novel U 0.0007999861471681671 -0.2556958684657115 1.0 14077 +234733 Ddx19b DEAD box helicase 19b Novel N 0.0007998089023066034 -0.255697704362161 1.0 14078 +270066 Slc35e1 solute carrier family 35, member E1 Novel U 0.0007998020894648947 -0.2556977749293514 1.0 14079 +14872 Gstt2 glutathione S-transferase, theta 2 Novel U 0.0007996630071296707 -0.2556992155396076 1.0 14080 +433181 Spink11 serine peptidase inhibitor, Kazal type 11 Novel U 0.0007990919842448735 -0.255705130175877 1.0 14081 +231549 Lrrc8d leucine rich repeat containing 8D Novel U 0.0007989182622079956 -0.25570692958302416 1.0 14082 +69726 Smyd3 SET and MYND domain containing 3 Novel U 0.0007988634555653736 -0.25570749726842673 1.0 14083 +13495 Drg2 developmentally regulated GTP binding protein 2 Novel N 0.0007985549154956032 -0.2557106931163267 1.0 14084 +270672 Map3k15 mitogen-activated protein kinase kinase kinase 15 Novel U 0.0007985017625951707 -0.2557112436723221 1.0 14085 +619287 Rtl4 retrotransposon Gag like 4 Novel U 0.000798408046497794 -0.25571221438057795 1.0 14086 +20845 Star steroidogenic acute regulatory protein Novel U 0.0007983553251218237 -0.25571276046685715 1.0 14087 +51793 Ddah2 DDAH family member 2, ADMA independent Novel N 0.0007983192705291397 -0.25571313391914297 1.0 14088 +14425 Galnt3 polypeptide N-acetylgalactosaminyltransferase 3 Novel U 0.0007983051677241758 -0.2557132799955331 1.0 14089 +380712 Tlcd2 TLC domain containing 2 Novel U 0.0007981503947294003 -0.25571488312912516 1.0 14090 +100121 Tdrd7 tudor domain containing 7 Novel N 0.0007978425743792585 -0.2557180715221929 1.0 14091 +73598 1700001O22Rik RIKEN cDNA 1700001O22 gene Novel U 0.0007977028127030821 -0.2557195191690403 1.0 14092 +106407 Slc51a solute carrier family 51, alpha subunit Novel U 0.0007976526892534724 -0.25572003834608364 1.0 14093 +240613 Brd10 bromodomain containing 10 Novel U 0.0007973243240896506 -0.2557234395416561 1.0 14094 +20502 Slc16a2 solute carrier family 16 (monocarboxylic acid transporters), member 2 Novel U 0.0007972406367721889 -0.2557243063721393 1.0 14095 +78689 Naa35 N(alpha)-acetyltransferase 35, NatC auxiliary subunit Novel N 0.0007968019268913309 -0.2557288505146634 1.0 14096 +76294 Asb5 ankyrin repeat and SOCs box-containing 5 Novel U 0.0007966738843630541 -0.2557301767749621 1.0 14097 +212996 Galnt17 polypeptide N-acetylgalactosaminyltransferase 17 Novel U 0.0007965041653456727 -0.25573193471896494 1.0 14098 +210982 Bicral BRD4 interacting chromatin remodeling complex associated protein like Novel U 0.0007963445300252184 -0.25573358821636644 1.0 14099 +232879 Zbtb45 zinc finger and BTB domain containing 45 Novel U 0.0007962789553591212 -0.2557342674366022 1.0 14100 +269424 Jade1 jade family PHD finger 1 Novel N 0.0007958028488858432 -0.2557391989318013 1.0 14101 +101744 Acp7 acid phosphatase 7, tartrate resistant Novel U 0.0007957017497157034 -0.2557402461136822 1.0 14102 +386750 Slitrk3 SLIT and NTRK-like family, member 3 Novel U 0.0007955677328393276 -0.2557416342560821 1.0 14103 +114301 Palmd palmdelphin Novel U 0.000794442831260212 -0.2557532859496594 1.0 14104 +50525 Spag6l sperm associated antigen 6-like Novel U 0.0007943686976053303 -0.25575405382361965 1.0 14105 +109241 Mbd5 methyl-CpG binding domain protein 5 Novel U 0.0007943298350900439 -0.25575445636027544 1.0 14106 +23956 Neu2 neuraminidase 2 Novel N 0.0007943078812418101 -0.2557546837575138 1.0 14107 +71151 Eri2 exoribonuclease 2 Novel U 0.0007940671124483884 -0.2557571776327612 1.0 14108 +100604 Lrrc8c leucine rich repeat containing 8 family, member C Novel U 0.0007940283397549499 -0.2557575792390453 1.0 14109 +19047 Ppp1cc protein phosphatase 1 catalytic subunit gamma Novel U 0.000793771713879325 -0.25576023736142883 1.0 14110 +21645 Tcte1 t-complex-associated testis expressed 1 Novel U 0.0007937403641943464 -0.2557605620804353 1.0 14111 +11532 Adh5 alcohol dehydrogenase 5 (class III), chi polypeptide Novel U 0.0007932784305839674 -0.25576534677358637 1.0 14112 +270120 Fat3 FAT atypical cadherin 3 Novel U 0.000793036534221343 -0.2557678523281585 1.0 14113 +240063 Zfp811 zinc finger protein 811 Novel U 0.0007930121924512995 -0.2557681044594124 1.0 14114 +16852 Lgals1 lectin, galactose binding, soluble 1 Novel U 0.0007923980637283607 -0.25577446558453626 1.0 14115 +623186 Prr23a2 proline rich 23A, member 2 Novel U 0.0007922751193576055 -0.25577573903828693 1.0 14116 +69082 Zc3h15 zinc finger CCCH-type containing 15 Novel U 0.0007915785842542937 -0.2557829537259897 1.0 14117 +75273 Pelp1 proline, glutamic acid and leucine rich protein 1 Novel N 0.0007913702470179309 -0.25578511167623524 1.0 14118 +16669 Krt19 keratin 19 Novel U 0.0007912692167241759 -0.25578615814469674 1.0 14119 +13070 Cyp11a1 cytochrome P450, family 11, subfamily a, polypeptide 1 Novel N 0.0007912642521084979 -0.2557862095680227 1.0 14120 +77619 Prelid2 PRELI domain containing 2 Novel U 0.0007911797697668977 -0.2557870846333398 1.0 14121 +56012 Pgam2 phosphoglycerate mutase 2 Novel U 0.0007910875222889633 -0.25578804012968376 1.0 14122 +12007 Azgp1 alpha-2-glycoprotein 1, zinc Novel N 0.0007908775616135126 -0.255790214895458 1.0 14123 +69923 Agk acylglycerol kinase Novel U 0.000790805525435199 -0.2557909610438249 1.0 14124 +57442 Kcne3 potassium voltage-gated channel, Isk-related subfamily, gene 3 Novel U 0.0007907441843938817 -0.2557915964123144 1.0 14125 +234825 Klhdc4 kelch domain containing 4 Novel U 0.0007907378237635653 -0.25579166229551414 1.0 14126 +77604 Rbm12b2 RNA binding motif protein 12 B2 Novel U 0.0007905417388057792 -0.2557936933370609 1.0 14127 +80979 Slc26a5 solute carrier family 26, member 5 Novel N 0.0007903494478050341 -0.25579568508092543 1.0 14128 +27222 Atp1a4 ATPase, Na+/K+ transporting, alpha 4 polypeptide Novel N 0.0007901488378520329 -0.25579776299222395 1.0 14129 +229003 Helz2 helicase with zinc finger 2, transcriptional coactivator Novel N 0.0007901181463468638 -0.2557980808938255 1.0 14130 +100637 N4bp2l1 NEDD4 binding protein 2-like 1 Novel U 0.0007901093447545394 -0.2557981720604295 1.0 14131 +14472 Gbx2 gastrulation brain homeobox 2 Novel N 0.0007899353929453786 -0.25579997384755043 1.0 14132 +93960 Nkd1 naked cuticle 1 Novel U 0.0007894679116883106 -0.2558048160030435 1.0 14133 +100043569 Vmn1r112 vomeronasal 1 receptor 112 Novel U 0.0007893596273730698 -0.25580593760842113 1.0 14134 +78581 Utp23 UTP23 small subunit processome component Novel U 0.0007892437691413744 -0.2558071376641764 1.0 14135 +20389 Sftpc surfactant associated protein C Novel U 0.0007887472206596919 -0.2558122808970265 1.0 14136 +66817 Tmem170 transmembrane protein 170 Novel U 0.0007886582734269435 -0.25581320220953935 1.0 14137 +66121 Chchd1 coiled-coil-helix-coiled-coil-helix domain containing 1 Novel U 0.0007883505770514558 -0.25581638931848166 1.0 14138 +171242 Vmn1r78 vomeronasal 1 receptor 78 Novel U 0.0007882827717318926 -0.2558170916437527 1.0 14139 +67647 4930523C07Rik RIKEN cDNA 4930523C07 gene Novel U 0.0007881999163473498 -0.2558179498571021 1.0 14140 +22036 Traip TRAF-interacting protein Novel U 0.0007875469599415576 -0.2558247131580885 1.0 14141 +73381 Cmtm2a CKLF-like MARVEL transmembrane domain containing 2A Novel U 0.0007874849484659772 -0.25582535547091406 1.0 14142 +27224 Eloa elongin A Novel N 0.0007872866570925063 -0.25582740936644194 1.0 14143 +227693 Zer1 zyg-11 related, cell cycle regulator Novel U 0.0007868927301699776 -0.2558314896485559 1.0 14144 +12237 Bub3 BUB3 mitotic checkpoint protein Novel U 0.0007865397400233714 -0.2558351459088905 1.0 14145 +66983 Zfp830 zinc finger protein 830 Novel U 0.0007864410019135324 -0.25583616863498637 1.0 14146 +21849 Trim28 tripartite motif-containing 28 Novel U 0.000786355311995563 -0.2558370562083398 1.0 14147 +71723 Dhx34 DExH-box helicase 34 Novel N 0.0007861874713395521 -0.2558387946963373 1.0 14148 +100009600 Zglp1 zinc finger, GATA-like protein 1 Novel U 0.0007858420222483778 -0.2558423728466676 1.0 14149 +226565 Fmo6 flavin containing monooxygenase 6 Novel U 0.0007858061092703813 -0.25584274483211317 1.0 14150 +12565 Cdh9 cadherin 9 Novel U 0.0007857058961209586 -0.2558437828366205 1.0 14151 +140486 Igf2bp1 insulin-like growth factor 2 mRNA binding protein 1 Novel N 0.0007851316815450659 -0.25584973053232135 1.0 14152 +16529 Kcnk5 potassium channel, subfamily K, member 5 Novel N 0.0007850864522943038 -0.25585019901541395 1.0 14153 +19718 Rfc2 replication factor C (activator 1) 2 Novel U 0.0007849604187968995 -0.2558515044662369 1.0 14154 +100043461 Hsd3b9 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 9 Novel U 0.0007843456092060139 -0.2558578726437685 1.0 14155 +66455 Cnpy4 canopy FGF signaling regulator 4 Novel U 0.0007840485142188652 -0.2558609499438789 1.0 14156 +21429 Ubtf upstream binding transcription factor, RNA polymerase I Novel U 0.0007838269905632993 -0.2558632444786211 1.0 14157 +56198 Heyl hairy/enhancer-of-split related with YRPW motif-like Novel U 0.0007835062142341195 -0.2558665670692938 1.0 14158 +101685 Spty2d1 SPT2 chromatin protein domain containing 1 Novel N 0.0007834067249910738 -0.25586759757560273 1.0 14159 +69823 Fyttd1 forty-two-three domain containing 1 Novel N 0.0007831962687917267 -0.25586977747399714 1.0 14160 +238247 Arid4a AT-rich interaction domain 4A Novel N 0.0007831888978172099 -0.2558698538223089 1.0 14161 +57319 Smpdl3a sphingomyelin phosphodiesterase, acid-like 3A Novel N 0.0007831344758081052 -0.25587041752369016 1.0 14162 +13194 Ddb1 damage specific DNA binding protein 1 Novel U 0.0007828262243819121 -0.2558736103818295 1.0 14163 +76408 Abcc3 ATP-binding cassette, sub-family C member 3 Novel N 0.0007827619089197496 -0.2558742765592723 1.0 14164 +66606 Lrrc57 leucine rich repeat containing 57 Novel U 0.0007827028400945119 -0.25587488839222233 1.0 14165 +28126 Nop16 NOP16 nucleolar protein Novel U 0.0007824581170363672 -0.25587742322561374 1.0 14166 +66690 Tmem186 transmembrane protein 186 Novel N 0.0007822299424134916 -0.25587978665085664 1.0 14167 +14884 Gtf2h1 general transcription factor II H, polypeptide 1 Novel U 0.0007822034266937323 -0.2558800612998103 1.0 14168 +69660 Tmbim1 transmembrane BAX inhibitor motif containing 1 Novel U 0.0007819524466036172 -0.2558826609433332 1.0 14169 +68753 Mybphl myosin binding protein H-like Novel U 0.0007813386741495456 -0.25588901837823574 1.0 14170 +56318 Acp3 acid phosphatase 3 Novel U 0.0007812770132735285 -0.25588965705956257 1.0 14171 +78408 Fam131a family with sequence similarity 131, member A Novel U 0.0007810911532299432 -0.2558915821917842 1.0 14172 +170826 Ppargc1b peroxisome proliferative activated receptor, gamma, coactivator 1 beta Novel U 0.0007809777234000368 -0.25589275709423354 1.0 14173 +338362 Ust uronyl-2-sulfotransferase Novel N 0.0007807576941265201 -0.2558950361502156 1.0 14174 +66218 Ndufb9 NADH:ubiquinone oxidoreductase subunit B9 Novel N 0.0007807552300962553 -0.25589506167256004 1.0 14175 +100861971 Btbd35f24 BTB domain containing 35, family member 24 Novel U 0.0007806541127651575 -0.2558961090425515 1.0 14176 +279653 Pcdh19 protocadherin 19 Novel U 0.0007806017432631504 -0.2558966514841317 1.0 14177 +56412 Noa1 nitric oxide associated 1 Novel N 0.0007805588890507484 -0.25589709536665506 1.0 14178 +76737 Creld2 cysteine-rich with EGF-like domains 2 Novel U 0.0007805056938677199 -0.25589764636061213 1.0 14179 +72057 Phf10 PHD finger protein 10 Novel U 0.0007804729864198655 -0.2558979851432818 1.0 14180 +20452 St8sia4 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 4 Novel N 0.000780264355973428 -0.2559001461305877 1.0 14181 +268534 Sntg2 syntrophin, gamma 2 Novel N 0.0007799915676018271 -0.2559029716635733 1.0 14182 +58864 Tssk3 testis-specific serine kinase 3 Novel U 0.0007798866336915426 -0.2559040585655665 1.0 14183 +231386 Ythdc1 YTH domain containing 1 Novel N 0.0007796460732826102 -0.2559065502823742 1.0 14184 +71988 Esco2 establishment of sister chromatid cohesion N-acetyltransferase 2 Novel U 0.0007796307176910738 -0.2559067093350866 1.0 14185 +208146 Yeats2 YEATS domain containing 2 Novel U 0.0007791350987415986 -0.2559118429398726 1.0 14186 +77296 Fam162b family with sequence similarity 162, member B Novel U 0.0007789863574187804 -0.2559133835976048 1.0 14187 +13885 Esd esterase D/formylglutathione hydrolase Novel U 0.0007788730553703517 -0.2559145571764978 1.0 14188 +18518 Igbp1 immunoglobulin (CD79A) binding protein 1 Novel U 0.0007787753394182791 -0.2559155693151171 1.0 14189 +433470 AA467197 expressed sequence AA467197 Novel U 0.0007787537854635327 -0.25591579257027186 1.0 14190 +69149 Kbtbd3 kelch repeat and BTB (POZ) domain containing 3 Novel U 0.0007783233370310187 -0.2559202511409856 1.0 14191 +101613 Nlrp6 NLR family, pyrin domain containing 6 Novel U 0.0007782194896320324 -0.2559213267889305 1.0 14192 +100416956 Pnma6e PNMA family member 6E Novel U 0.000778029979461842 -0.25592328972904355 1.0 14193 +78779 Spata2l spermatogenesis associated 2-like Novel U 0.0007778611983853689 -0.25592503795788524 1.0 14194 +64658 Mrps25 mitochondrial ribosomal protein S25 Novel N 0.0007778494968156514 -0.2559251591623597 1.0 14195 +56488 Nxt1 NTF2-related export protein 1 Novel N 0.0007776419392620485 -0.2559273090366768 1.0 14196 +17389 Mmp16 matrix metallopeptidase 16 Novel N 0.0007769453765661368 -0.25593452401018285 1.0 14197 +226781 Slc30a10 solute carrier family 30, member 10 Novel U 0.0007765978148739787 -0.2559381240427647 1.0 14198 +66377 Ndufc1 NADH:ubiquinone oxidoreductase subunit C1 Novel N 0.0007763971807195497 -0.25594020220474084 1.0 14199 +18815 Plg plasminogen Novel U 0.0007763411774668176 -0.2559407822845916 1.0 14200 +67556 Pigm phosphatidylinositol glycan anchor biosynthesis, class M Novel U 0.0007761612540880755 -0.25594264592503396 1.0 14201 +68048 Aen apoptosis enhancing nuclease Novel N 0.000775618968225932 -0.25594826290416733 1.0 14202 +50790 Acsl4 acyl-CoA synthetase long-chain family member 4 Novel N 0.0007756148852559839 -0.2559483051954358 1.0 14203 +16599 Klf3 Kruppel-like transcription factor 3 (basic) Novel N 0.0007756127968399181 -0.25594832682718077 1.0 14204 +69606 Mtfmt mitochondrial methionyl-tRNA formyltransferase Novel N 0.0007754088706556545 -0.2559504390878937 1.0 14205 +66256 Ssr2 signal sequence receptor, beta Novel U 0.0007753378040838415 -0.25595117519310834 1.0 14206 +209692 Dhtkd1 dehydrogenase E1 and transketolase domain containing 1 Novel N 0.0007753143602995363 -0.2559514180230555 1.0 14207 +67883 Uxs1 UDP-glucuronate decarboxylase 1 Novel N 0.0007752984473416185 -0.2559515828489505 1.0 14208 +11800 Api5 apoptosis inhibitor 5 Novel N 0.0007751777080423608 -0.25595283346264314 1.0 14209 +11770 Fabp4 fatty acid binding protein 4, adipocyte Novel U 0.0007745685968775422 -0.25595914261606484 1.0 14210 +107239 Carns1 carnosine synthase 1 Novel N 0.0007743004666164999 -0.25596191990049444 1.0 14211 +100061 Lrrc19 leucine rich repeat containing 19 Novel N 0.0007742942947860447 -0.2559619838281114 1.0 14212 +93885 Pcdhb14 protocadherin beta 14 Novel U 0.000774001605516669 -0.25596501549394196 1.0 14213 +19289 Igdcc3 immunoglobulin superfamily, DCC subclass, member 3 Novel U 0.0007738705684259996 -0.2559663727718195 1.0 14214 +668107 Cwc22rt4 CWC22 spliceosome-associated protein, retrotransposed 4 Novel U 0.0007738512276521378 -0.25596657310291937 1.0 14215 +16592 Fabp5 fatty acid binding protein 5, epidermal Novel N 0.000773646387393495 -0.25596869483158463 1.0 14216 +69852 Tcf23 transcription factor 23 Novel N 0.0007732570210116405 -0.25597272787576814 1.0 14217 +12552 Cdh11 cadherin 11 Novel U 0.0007727913416378829 -0.2559775513674131 1.0 14218 +269120 Optc opticin Novel U 0.0007723558455393272 -0.2559820622216858 1.0 14219 +73699 Ppp2r1b protein phosphatase 2, regulatory subunit A, beta Novel U 0.0007720649252456549 -0.2559850755645242 1.0 14220 +22130 Ttf1 transcription termination factor, RNA polymerase I Novel U 0.0007720293317772046 -0.25598544424050035 1.0 14221 +404545 Ano7 anoctamin 7 Novel N 0.0007719895607191726 -0.255985856187812 1.0 14222 +210035 Nemp1 nuclear envelope integral membrane protein 1 Novel U 0.0007718573884127988 -0.2559872252242165 1.0 14223 +11459 Acta1 actin alpha 1, skeletal muscle Novel U 0.0007717875053931455 -0.25598794907023675 1.0 14224 +22286 Utf1 undifferentiated embryonic cell transcription factor 1 Novel U 0.0007714995529548907 -0.2559909316721263 1.0 14225 +11931 Atp1b1 ATPase, Na+/K+ transporting, beta 1 polypeptide Novel U 0.0007713112840127689 -0.2559928817556398 1.0 14226 +17149 Magoh mago homolog, exon junction complex core component Novel N 0.0007709040372794506 -0.255997100003916 1.0 14227 +68705 Gtf2f2 general transcription factor IIF, polypeptide 2 Novel N 0.0007707104098775347 -0.25599910559017985 1.0 14228 +77644 Steep1 STING1 ER exit protein 1 Novel U 0.0007705166263990998 -0.25600111279307924 1.0 14229 +23955 Nek4 NIMA (never in mitosis gene a)-related expressed kinase 4 Novel N 0.0007704656697362054 -0.2560016406005184 1.0 14230 +15436 Hoxd4 homeobox D4 Novel N 0.0007701689303750382 -0.25600471421706655 1.0 14231 +22287 Scgb1a1 secretoglobin, family 1A, member 1 Novel N 0.0007700037392821724 -0.2560064252609761 1.0 14232 +218314 Zfp595 zinc finger protein 595 Novel U 0.0007699881906434367 -0.256006586313265 1.0 14233 +69312 Ppp1r42 protein phosphatase 1, regulatory subunit 42 Novel U 0.000769858264289874 -0.2560079320861641 1.0 14234 +68291 Mto1 mitochondrial tRNA translation optimization 1 Novel N 0.0007696931372470029 -0.25600964246664587 1.0 14235 +59006 Myoz2 myozenin 2 Novel U 0.000769544752038756 -0.256011179435755 1.0 14236 +74386 Rmi1 RecQ mediated genome instability 1 Novel N 0.0007694805029515802 -0.2560118449256879 1.0 14237 +319178 H2bc3 H2B clustered histone 3 Novel U 0.0007692636849070511 -0.25601409071986564 1.0 14238 +13525 Adam26a ADAM metallopeptidase domain 26A Novel U 0.0007692198297487828 -0.2560145449701533 1.0 14239 +73447 Wdr13 WD repeat domain 13 Novel U 0.0007690855937642673 -0.2560159353820682 1.0 14240 +99035 Olah oleoyl-ACP hydrolase Novel N 0.0007690743278318911 -0.25601605207422534 1.0 14241 +217664 Mgat2 mannoside acetylglucosaminyltransferase 2 Novel U 0.0007688795797204922 -0.25601806926876125 1.0 14242 +216021 Stox1 storkhead box 1 Novel U 0.0007686739827375951 -0.25602019883555144 1.0 14243 +140721 Caskin2 CASK-interacting protein 2 Novel U 0.0007685702123587522 -0.25602127368572425 1.0 14244 +73314 Lrrc69 leucine rich repeat containing 69 Novel U 0.0007684919929061988 -0.25602208388024245 1.0 14245 +67031 Upf3a UPF3 regulator of nonsense transcripts homolog A (yeast) Novel N 0.0007681100082792058 -0.25602604046445177 1.0 14246 +100042055 Gm10377 predicted gene 10377 Novel U 0.000768032340610076 -0.25602684494361544 1.0 14247 +80978 Mrgprh MAS-related GPR, member H Novel U 0.0007678603722915827 -0.25602862618580524 1.0 14248 +97884 B3galnt2 UDP-GalNAc:betaGlcNAc beta 1,3-galactosaminyltransferase, polypeptide 2 Novel N 0.0007677638616212283 -0.25602962584015615 1.0 14249 +225027 Srsf7 serine and arginine-rich splicing factor 7 Novel N 0.0007672783722237845 -0.25603465452337526 1.0 14250 +83555 Tex13b testis expressed 13B Novel U 0.0007666018124836456 -0.25604166230692293 1.0 14251 +71069 Stox2 storkhead box 2 Novel U 0.0007664397009121285 -0.2560433414532516 1.0 14252 +229007 Zgpat zinc finger, CCCH-type with G patch domain Novel U 0.0007662527964358938 -0.2560452774036722 1.0 14253 +234889 Gucy1a2 guanylate cyclase 1, soluble, alpha 2 Novel N 0.0007661253487363716 -0.25604659750275427 1.0 14254 +118451 Mrps2 mitochondrial ribosomal protein S2 Novel U 0.0007661209768123893 -0.2560466427869992 1.0 14255 +114661 Prss28 serine protease 28 Novel U 0.0007659661143994583 -0.25604824684678146 1.0 14256 +14356 Timm10b translocase of inner mitochondrial membrane 10B Novel U 0.0007658823141252593 -0.25604911484726683 1.0 14257 +108115 Slco4a1 solute carrier organic anion transporter family, member 4a1 Novel U 0.0007657610258471659 -0.2560503711472642 1.0 14258 +67119 Ccdc159 coiled-coil domain containing 159 Novel U 0.0007655327939774472 -0.25605273516546806 1.0 14259 +56401 P3h1 prolyl 3-hydroxylase 1 Novel U 0.0007654947782997977 -0.25605312893060744 1.0 14260 +17873 Gadd45b growth arrest and DNA-damage-inducible 45 beta Novel U 0.0007654497754131436 -0.256053595069028 1.0 14261 +56726 Sh3bgrl SH3-binding domain glutamic acid-rich protein like Novel U 0.0007652770598699787 -0.2560553840509464 1.0 14262 +100042939 H2al1f H2A histone family member L1F Novel U 0.0007645867558829473 -0.2560625341969515 1.0 14263 +19146 Tmprss15 transmembrane protease, serine 15 Novel U 0.000764472269994313 -0.25606372003802247 1.0 14264 +58187 Cldn10 claudin 10 Novel U 0.0007642254433326066 -0.25606627666047044 1.0 14265 +56643 Slc15a1 solute carrier family 15 (oligopeptide transporter), member 1 Novel U 0.0007642105437464602 -0.25606643098989396 1.0 14266 +215493 A3galt2 alpha 1,3-galactosyltransferase 2 Novel U 0.0007641583895630828 -0.2560669712012109 1.0 14267 +171171 Ntng2 netrin G2 Novel U 0.0007639656004084088 -0.2560689681049374 1.0 14268 +22272 Uqcrq ubiquinol-cytochrome c reductase, complex III subunit VII Novel N 0.0007639540259142521 -0.2560690879931674 1.0 14269 +14405 Gabrg1 gamma-aminobutyric acid type A receptor subunit gamma 1 Novel U 0.0007638572709539569 -0.2560700901778655 1.0 14270 +244495 Sgo2b shugoshin 2B Novel U 0.0007630486251857431 -0.25607846610414986 1.0 14271 +19134 Prpf4b pre-mRNA processing factor 4B Novel N 0.0007630158403785813 -0.2560788056881047 1.0 14272 +19703 Renbp renin binding protein Novel N 0.0007628946845355218 -0.2560800606163443 1.0 14273 +14415 Gad1 glutamate decarboxylase 1 Novel N 0.0007626703164525434 -0.2560823846135721 1.0 14274 +74570 Zkscan1 zinc finger with KRAB and SCAN domains 1 Novel U 0.0007623719876973477 -0.2560854746930114 1.0 14275 +12321 Calu calumenin Novel U 0.00076225630492538 -0.25608667293136056 1.0 14276 +171198 Vmn1r28 vomeronasal 1 receptor 28 Novel U 0.000762244694696248 -0.25608679318973226 1.0 14277 +142682 Zcchc14 zinc finger, CCHC domain containing 14 Novel U 0.0007619938131452329 -0.2560893918125904 1.0 14278 +110082 Dnah5 dynein, axonemal, heavy chain 5 Novel N 0.0007618733346765598 -0.2560906397246084 1.0 14279 +235033 Rdh8 retinol dehydrogenase 8 Novel N 0.000761867444882805 -0.2560907007308985 1.0 14280 +74148 Cluh clustered mitochondria homolog Novel U 0.0007618309245378048 -0.25609107900743144 1.0 14281 +76768 Alpi alkaline phosphatase, intestinal Novel U 0.0007617969787305853 -0.25609143061698675 1.0 14282 +20497 Slc12a3 solute carrier family 12, member 3 Novel U 0.0007617086825931701 -0.2560923451854755 1.0 14283 +22139 Ttr transthyretin Novel U 0.0007616838256079858 -0.2560926026533109 1.0 14284 +13421 Dnase1l3 deoxyribonuclease 1-like 3 Novel U 0.0007616526289819792 -0.25609292578693754 1.0 14285 +65246 Xpo7 exportin 7 Novel U 0.0007615954465510493 -0.2560935180806773 1.0 14286 +14262 Fmo3 flavin containing monooxygenase 3 Novel U 0.000761474017180855 -0.25609477584210205 1.0 14287 +217946 Cdca7l cell division cycle associated 7 like Novel N 0.0007609404910726863 -0.2561003020879917 1.0 14288 +229571 Tdpoz8 TD and POZ domain containing 8 Novel U 0.0007609087103124367 -0.2561006312720617 1.0 14289 +68832 Ldah lipid droplet associated hydrolase Novel U 0.000760757599806904 -0.2561021964697105 1.0 14290 +217864 Rcor1 REST corepressor 1 Novel N 0.0007606767702867767 -0.2561030336992228 1.0 14291 +330657 Prss53 serine protease 53 Novel U 0.0007605854527412776 -0.25610397956335723 1.0 14292 +71091 Cdkl1 cyclin dependent kinase like 1 Novel N 0.0007604800638998119 -0.25610507117751263 1.0 14293 +16979 Lrrn1 leucine rich repeat protein 1, neuronal Novel U 0.0007603117796386988 -0.2561068142603572 1.0 14294 +78459 Plscr1l1 phospholipid scramblase 1 like 1 Novel U 0.000760193934930284 -0.256108034891973 1.0 14295 +14235 Foxm1 forkhead box M1 Novel U 0.0007601375395216153 -0.2561086190337621 1.0 14296 +20842 Stag1 STAG1 cohesin complex component Novel U 0.0007600202831109831 -0.25610983357180883 1.0 14297 +100502896 Msantd5f3 Myb/SANT DNA binding domain containing 5 family member 3 Novel U 0.0007597574352451363 -0.25611255614136264 1.0 14298 +67568 Mrfap1 Morf4 family associated protein 1 Novel U 0.0007595480722013422 -0.25611472471688784 1.0 14299 +380878 Tcstv7a Tcstv family member 7A Novel U 0.0007594792325385487 -0.25611543775585205 1.0 14300 +434800 Smim9 small integral membrane protein 9 Novel U 0.0007594582604282898 -0.2561156549842807 1.0 14301 +57434 Xrcc2 X-ray repair complementing defective repair in Chinese hamster cells 2 Novel U 0.0007593851848249052 -0.25611641189897827 1.0 14302 +94281 Sfxn4 sideroflexin 4 Novel U 0.000759178798899456 -0.25611854963760955 1.0 14303 +67458 Ergic1 endoplasmic reticulum-golgi intermediate compartment 1 Novel U 0.0007588532669351699 -0.2561219214869943 1.0 14304 +68153 Gtf2e2 general transcription factor II E, polypeptide 2 (beta subunit) Novel U 0.0007587374460890879 -0.2561231211555106 1.0 14305 +12464 Cct4 chaperonin containing TCP1 subunit 4 Novel U 0.0007587279345973506 -0.2561232196752294 1.0 14306 +100042144 Gm14632 predicted gene 14632 Novel U 0.0007586591780810501 -0.25612393185296495 1.0 14307 +635169 CK137956 cDNA sequence CK137956 Novel U 0.0007584882106291311 -0.2561257027282117 1.0 14308 +21357 Tarbp2 TARBP2, RISC loading complex RNA binding subunit Novel U 0.0007580460171984963 -0.25613028295322987 1.0 14309 +67622 Mxra7 matrix-remodelling associated 7 Novel U 0.0007578520900109602 -0.2561322916446634 1.0 14310 +240614 Ranbp6 RAN binding protein 6 Novel U 0.0007578157687733547 -0.2561326678588485 1.0 14311 +102635990 Spata31h1 SPATA31 subfamily H member 1 Novel U 0.0007576907852477818 -0.25613396243409775 1.0 14312 +14623 Gjb6 gap junction protein, beta 6 Novel U 0.0007573314340783237 -0.25613768458169794 1.0 14313 +20602 Ncor2 nuclear receptor co-repressor 2 Novel N 0.0007571809212935066 -0.25613924358817525 1.0 14314 +100038927 Defa30 defensin, alpha, 30 Novel U 0.0007566918075442487 -0.25614430981231134 1.0 14315 +78795 Armc9 armadillo repeat containing 9 Novel N 0.0007562625802761847 -0.25614875573424384 1.0 14316 +73724 Mcee methylmalonyl CoA epimerase Novel N 0.0007561210728785795 -0.2561502214632164 1.0 14317 +70823 Hmgxb4 HMG box domain containing 4 Novel U 0.0007559391364799296 -0.2561521059544528 1.0 14318 +67085 1700024G13Rik RIKEN cDNA 1700024G13 gene Novel U 0.000755749430366974 -0.25615407092413456 1.0 14319 +66810 Rbm22 RNA binding motif protein 22 Novel U 0.0007557410022417003 -0.2561541582223791 1.0 14320 +56490 Zbtb20 zinc finger and BTB domain containing 20 Novel U 0.0007553230704038783 -0.2561584871466165 1.0 14321 +70920 Tex47 testis expressed 47 Novel U 0.0007552288188320231 -0.2561594634012994 1.0 14322 +194237 Rimkla ribosomal modification protein rimK-like family member A Novel N 0.0007550979220583148 -0.2561608192257785 1.0 14323 +75605 Kdm5b lysine demethylase 5B Novel N 0.0007546676075459775 -0.25616527640935144 1.0 14324 +75906 Fam184a family with sequence similarity 184, member A Novel U 0.0007544380142076341 -0.2561676545296025 1.0 14325 +230996 9430015G10Rik RIKEN cDNA 9430015G10 gene Novel U 0.0007541361015643395 -0.2561707817308369 1.0 14326 +234395 Ushbp1 USH1 protein network component harmonin binding protein 1 Novel U 0.000753724354194277 -0.2561750465965606 1.0 14327 +381693 Wdr95 WD40 repeat domain 95 Novel U 0.0007537111776618814 -0.25617518307864995 1.0 14328 +21345 Tagln transgelin Novel N 0.0007534212628532275 -0.2561781860067076 1.0 14329 +108673 Ccdc86 coiled-coil domain containing 86 Novel U 0.0007532604197745006 -0.2561798520140296 1.0 14330 +74393 Map10 microtubule-associated protein 10 Novel U 0.0007531103430704637 -0.2561814065035965 1.0 14331 +100044509 Tgfbr3l transforming growth factor, beta receptor III-like Novel U 0.0007530568396687968 -0.2561819606900721 1.0 14332 +170756 Slc8b1 solute carrier family 8 (sodium/lithium/calcium exchanger), member B1 Novel U 0.0007529576117915427 -0.25618298848916277 1.0 14333 +11492 Adam19 ADAM metallopeptidase domain 19 Novel U 0.0007529203748903199 -0.25618337418776155 1.0 14334 +56381 Spen spen family transcription repressor Novel U 0.0007522880413016882 -0.25618992387828576 1.0 14335 +67134 Nop56 NOP56 ribonucleoprotein Novel N 0.0007519625791974362 -0.2561932950040626 1.0 14336 +18115 Nnt nicotinamide nucleotide transhydrogenase Novel U 0.000751883134103656 -0.25619411789373236 1.0 14337 +114142 Foxp2 forkhead box P2 Novel U 0.0007517250935908127 -0.2561957548721691 1.0 14338 +26556 Homer1 homer scaffolding protein 1 Novel N 0.0007517042177146538 -0.2561959711038081 1.0 14339 +245269 Nim1k NIM1 serine/threonine protein kinase Novel N 0.0007516814276283844 -0.25619620716277247 1.0 14340 +320549 Pramel48 PRAME like 48 Novel U 0.0007516311573948673 -0.2561967278601987 1.0 14341 +667129 Vmn1r103 vomeronasal 1 receptor 103 Novel U 0.0007515015774741829 -0.2561980700447575 1.0 14342 +12846 Comt catechol-O-methyltransferase Novel U 0.0007512755682238019 -0.25620041104114327 1.0 14343 +78781 Zc3hav1 zinc finger CCCH type, antiviral 1 Novel N 0.0007507137437274143 -0.25620623040080787 1.0 14344 +330554 Fan1 FANCD2/FANCI-associated nuclease 1 Novel U 0.0007504844836626075 -0.2562086050690226 1.0 14345 +20266 Scn1b sodium channel, voltage-gated, type I, beta Novel U 0.0007504192552528245 -0.25620928070274684 1.0 14346 +12091 Glb1 galactosidase, beta 1 Novel U 0.0007502896074268951 -0.2562106235906659 1.0 14347 +67178 Zmat5 zinc finger, matrin type 5 Novel N 0.0007500903718420188 -0.25621268726630453 1.0 14348 +100038948 Mup9 major urinary protein 9 Novel U 0.0007498799308690482 -0.2562148670069847 1.0 14349 +78250 Iqch IQ motif containing H Novel U 0.0007493463831731449 -0.2562203934764794 1.0 14350 +78910 Asb15 ankyrin repeat and SOCS box-containing 15 Novel U 0.0007490684591519718 -0.2562232722043545 1.0 14351 +171187 Vmn1r33 vomeronasal 1 receptor 33 Novel U 0.0007489270864315808 -0.2562247365383449 1.0 14352 +208228 Mob3a MOB kinase activator 3A Novel U 0.000748883101086173 -0.2562251921371067 1.0 14353 +225518 Prdm6 PR domain containing 6 Novel N 0.0007480957717508514 -0.2562333472684799 1.0 14354 +71146 Golga7b golgin A7B Novel U 0.0007480372817297895 -0.2562339531061953 1.0 14355 +99890 Prmt6 protein arginine N-methyltransferase 6 Novel N 0.0007478109540015552 -0.2562362974013642 1.0 14356 +18950 Pnp purine-nucleoside phosphorylase Novel U 0.0007476349265992302 -0.2562381206874109 1.0 14357 +12643 Chad chondroadherin Novel U 0.00074748855824103 -0.25623963676605355 1.0 14358 +78933 Agbl4 ATP/GTP binding protein-like 4 Novel U 0.0007472229870884718 -0.25624238754332157 1.0 14359 +17777 Mttp microsomal triglyceride transfer protein Novel U 0.0007472088870322093 -0.25624253359124083 1.0 14360 +260315 Nav3 neuron navigator 3 Novel U 0.0007472022661689887 -0.2562426021699244 1.0 14361 +234542 Rtbdn retbindin Novel U 0.0007470572746923342 -0.25624410398687325 1.0 14362 +22380 Wbp4 WW domain binding protein 4 Novel N 0.0007470419399048939 -0.25624426282409746 1.0 14363 +22596 Xrcc5 X-ray repair complementing defective repair in Chinese hamster cells 5 Novel U 0.0007461325778132074 -0.25625368196674947 1.0 14364 +381318 Nsl1 NSL1, MIS12 kinetochore complex component Novel U 0.0007460973842075172 -0.2562540465009603 1.0 14365 +380702 Shisa6 shisa family member 6 Novel U 0.0007460863444227209 -0.2562541608506883 1.0 14366 +243574 Kbtbd8 kelch repeat and BTB (POZ) domain containing 8 Novel N 0.0007458521581199626 -0.2562565865447138 1.0 14367 +332578 Lcn10 lipocalin 10 Novel U 0.0007456654585259527 -0.25625852037297114 1.0 14368 +208760 Aqp12 aquaporin 12 Novel U 0.0007455085247409253 -0.25626014588795754 1.0 14369 +110304 Glra3 glycine receptor, alpha 3 subunit Novel U 0.0007453841488734516 -0.25626143416910424 1.0 14370 +16615 Klk1b16 kallikrein 1-related peptidase b16 Novel U 0.0007452740163040822 -0.2562625749186373 1.0 14371 +74419 Tktl2 transketolase-like 2 Novel U 0.0007451962569030158 -0.25626338034795737 1.0 14372 +27274 Zfp354b zinc finger protein 354B Novel U 0.0007450441119860976 -0.2562649562600053 1.0 14373 +224432 Scaf4 SR-related CTD-associated factor 4 Novel N 0.0007449495590507601 -0.25626593563620126 1.0 14374 +208372 Asb18 ankyrin repeat and SOCS box-containing 18 Novel U 0.0007449179314031475 -0.25626626323433555 1.0 14375 +16426 Itih3 inter-alpha trypsin inhibitor, heavy chain 3 Novel U 0.0007448240350332812 -0.25626723580984795 1.0 14376 +21973 Top2a topoisomerase (DNA) II alpha Novel U 0.0007446370332447218 -0.25626917276822647 1.0 14377 +207259 Zbtb7c zinc finger and BTB domain containing 7C Novel N 0.0007443563307359079 -0.2562720802755852 1.0 14378 +66244 Nemf nuclear export mediator factor Novel U 0.0007443038057225899 -0.25627262432794645 1.0 14379 +100041574 Ermardl2 ER membrane associated RNA degradation like 2 Novel U 0.0007440983414692554 -0.25627475251992826 1.0 14380 +71041 Pcgf6 polycomb group ring finger 6 Novel N 0.0007438964731058838 -0.25627684346579993 1.0 14381 +81012 Vmn1r171 vomeronasal 1 receptor 171 Novel U 0.000743465756146749 -0.2562813048179036 1.0 14382 +12294 Cacna2d3 calcium channel, voltage-dependent, alpha2/delta subunit 3 Novel U 0.0007432855388023983 -0.2562831715032321 1.0 14383 +280662 Afm afamin Novel U 0.0007427519546928123 -0.25628869834989854 1.0 14384 +66836 Tmem223 transmembrane protein 223 Novel N 0.0007426975772500708 -0.25628926158966286 1.0 14385 +94094 Trim34a tripartite motif-containing 34A Novel U 0.0007426439929010453 -0.2562898166145886 1.0 14386 +67666 Hapln3 hyaluronan and proteoglycan link protein 3 Novel U 0.0007425625711728181 -0.25629065997817296 1.0 14387 +327992 Hsf5 heat shock transcription factor family member 5 Novel U 0.0007420768758930079 -0.2562956907939149 1.0 14388 +100270744 Btbd18 BTB domain containing 18 Novel U 0.000742019133680541 -0.25629628888585343 1.0 14389 +14419 Gal galanin and GMAP prepropeptide Novel U 0.00074197369406777 -0.2562967595478688 1.0 14390 +108052 Slc14a1 solute carrier family 14 (urea transporter), member 1 Novel N 0.000741868166221154 -0.25629785260183496 1.0 14391 +381654 Pramel34 PRAME like 34 Novel U 0.0007418584939483859 -0.25629795278691836 1.0 14392 +66773 Gm17019 predicted gene 17019 Novel U 0.0007417691346723904 -0.2562988783673616 1.0 14393 +72821 Scn2b sodium channel, voltage-gated, type II, beta Novel U 0.0007416782222256727 -0.2562998200354961 1.0 14394 +192119 Dicer1 dicer 1, ribonuclease type III Novel U 0.0007415375570250947 -0.2563012770410196 1.0 14395 +66882 Bzw1 basic leucine zipper and W2 domains 1 Novel N 0.0007413878625356872 -0.25630282757161993 1.0 14396 +212898 Dse dermatan sulfate epimerase Novel U 0.0007412683241754438 -0.2563040657460257 1.0 14397 +268756 Gulo gulonolactone (L-) oxidase Novel U 0.0007411251129834597 -0.2563055491228445 1.0 14398 +110599589 Asdurf Asnsd1 upstream reading frame Novel U 0.0007405040397999853 -0.25631198217846224 1.0 14399 +75465 Dynlrb2 dynein light chain roadblock-type 2 Novel U 0.000740125731961049 -0.25631590067862176 1.0 14400 +14057 Sfxn1 sideroflexin 1 Novel N 0.0007400262918369078 -0.2563169306761587 1.0 14401 +17305 Mfng MFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase Novel U 0.0007396442614766603 -0.2563208877340715 1.0 14402 +225724 Mapk4 mitogen-activated protein kinase 4 Novel N 0.0007395770486738726 -0.2563215839220733 1.0 14403 +66107 Wfdc21 WAP four-disulfide core domain 21 Novel U 0.0007395067518453188 -0.25632231205431255 1.0 14404 +14813 Grin2c glutamate receptor, ionotropic, NMDA2C (epsilon 3) Novel N 0.0007387894397432629 -0.2563297419494853 1.0 14405 +214150 Ago3 argonaute RISC catalytic subunit 3 Novel N 0.0007381950627153668 -0.2563358984872012 1.0 14406 +320352 Lrrc31 leucine rich repeat containing 31 Novel U 0.0007380823297699255 -0.25633706617134416 1.0 14407 +214642 Cped1 cadherin-like and PC-esterase domain containing 1 Novel U 0.0007380662490743402 -0.2563372327346604 1.0 14408 +75568 Capsl calcyphosine-like Novel U 0.0007379487432660285 -0.2563384498559601 1.0 14409 +433899 Grxcr1 glutaredoxin, cysteine rich 1 Novel N 0.00073756672416484 -0.256342406797252 1.0 14410 +71519 Cyp2u1 cytochrome P450, family 2, subfamily u, polypeptide 1 Novel N 0.0007374974395294578 -0.25634312444522767 1.0 14411 +381633 Nicol1 NELL2 interacting cell ontogeny regulator 1 Novel U 0.0007373923181393326 -0.25634421328913093 1.0 14412 +245566 Cypt2 cysteine-rich perinuclear theca 2 Novel U 0.0007372787938103595 -0.2563453891703985 1.0 14413 +26569 Slc27a4 solute carrier family 27 (fatty acid transporter), member 4 Novel U 0.0007371284164740638 -0.25634694677390446 1.0 14414 +668620 Zfp936 zinc finger protein 936 Novel U 0.0007370433508161842 -0.2563478278811924 1.0 14415 +234911 Mmp27 matrix metallopeptidase 27 Novel U 0.0007370387516753042 -0.25634787551894245 1.0 14416 +381522 Ccdc180 coiled-coil domain containing 180 Novel U 0.000736794534955759 -0.2563504051076953 1.0 14417 +30923 Foxe3 forkhead box E3 Novel U 0.0007367540223546023 -0.25635082473588633 1.0 14418 +100040293 Mindy4b-ps MINDY lysine 48 deubiquitinase 4B, pseudogene Novel U 0.0007365371344375317 -0.2563530712538015 1.0 14419 +20402 Zfp106 zinc finger protein 106 Novel U 0.0007363838287055063 -0.2563546591895342 1.0 14420 +233271 Luzp2 leucine zipper protein 2 Novel U 0.0007362619587976087 -0.2563559215140339 1.0 14421 +433771 Micos10 mitochondrial contact site and cristae organizing system subunit 10 Novel N 0.000735694691004291 -0.2563617972551892 1.0 14422 +67674 Trmt112 tRNA methyltransferase 11-2 Novel N 0.0007356644375664887 -0.2563621106193034 1.0 14423 +216456 Gls2 glutaminase 2 (liver, mitochondrial) Novel N 0.0007356403250539854 -0.25636236037591525 1.0 14424 +67698 Fam174a family with sequence similarity 174, member A Novel U 0.0007354546084097453 -0.2563642840228112 1.0 14425 +368204 Khdc1a KH domain containing 1A Novel U 0.0007350515487169523 -0.25636845890185933 1.0 14426 +93880 Pcdhb9 protocadherin beta 9 Novel U 0.0007350257324099396 -0.2563687263063187 1.0 14427 +66980 Zdhhc6 zinc finger, DHHC domain containing 6 Novel N 0.0007349644602606702 -0.2563693609612266 1.0 14428 +56184 Msgn1 mesogenin 1 Novel U 0.0007348578688701907 -0.2563704650313452 1.0 14429 +66755 Ppp1r14bl protein phosphatase 1, regulatory inhibitor subunit 14B like Novel U 0.0007346942842175249 -0.25637215943579994 1.0 14430 +107569 Nt5c3 5'-nucleotidase, cytosolic III Novel N 0.0007344954674304031 -0.2563742187735452 1.0 14431 +66881 Pcyox1 prenylcysteine oxidase 1 Novel U 0.0007344425894689679 -0.25637476648173146 1.0 14432 +100040722 Btbd35f13 BTB domain containing 35, family member 13 Novel U 0.000733984868111723 -0.25637950754450306 1.0 14433 +14610 Gja10 gap junction protein, alpha 10 Novel U 0.0007337450473969147 -0.25638199159958336 1.0 14434 +59010 Sqor sulfide quinone oxidoreductase Novel N 0.0007334270518389473 -0.2563852853871192 1.0 14435 +211577 Mrgprf MAS-related GPR, member F Novel U 0.0007332397005726009 -0.2563872259653772 1.0 14436 +238333 Samd15 sterile alpha motif domain containing 15 Novel U 0.0007331277528766201 -0.25638838551593207 1.0 14437 +110895 Slc9a4 solute carrier family 9 (sodium/hydrogen exchanger), member 4 Novel N 0.0007330095869621906 -0.2563896094745892 1.0 14438 +620419 Zfp963 zinc finger protein 963 Novel U 0.0007329671478035001 -0.25639004905799984 1.0 14439 +664799 Ctcfl CCCTC-binding factor like Novel U 0.0007327580387073052 -0.25639221500314413 1.0 14440 +230587 Glis1 GLIS family zinc finger 1 Novel U 0.0007326631319554378 -0.2563931980441601 1.0 14441 +17841 Mup2 major urinary protein 2 Novel U 0.0007326578452691385 -0.256393252803483 1.0 14442 +13733 Adgre1 adhesion G protein-coupled receptor E1 Novel N 0.0007325668162068488 -0.25639419567951777 1.0 14443 +66706 Ndufaf3 NADH:ubiquinone oxidoreductase complex assembly factor 3 Novel N 0.0007325161272104648 -0.256394720714476 1.0 14444 +52468 Ctdsp2 CTD small phosphatase 2 Novel N 0.0007323968832599265 -0.25639595583939573 1.0 14445 +214812 Zfp609 zinc finger protein 609 Novel N 0.0007321687236707411 -0.2563983191089202 1.0 14446 +71864 Fam217a family with sequence similarity 217, member A Novel U 0.0007321481977376967 -0.2563985317158599 1.0 14447 +277898 Slc15a5 solute carrier family 15, member 5 Novel U 0.0007321181339586142 -0.2563988431154953 1.0 14448 +171195 Vmn1r30 vomeronasal 1 receptor 30 Novel U 0.0007320303911823727 -0.25639975195228726 1.0 14449 +67223 Rrp15 ribosomal RNA processing 15 homolog Novel U 0.0007320243967654634 -0.2563998140422606 1.0 14450 +57370 B4galt3 UDP-Gal:betaGlcNAc beta 1,4-galactosyltransferase, polypeptide 3 Novel N 0.00073170774714381 -0.25640309388863236 1.0 14451 +432999 A930007A09Rik RIKEN cDNA A930007A09 gene Novel U 0.0007308210271007739 -0.25641227850568876 1.0 14452 +677884 Pakap paralemmin A kinase anchor protein Novel U 0.0007304296403053591 -0.25641633247724954 1.0 14453 +320916 Wscd2 WSC domain containing 2 Novel U 0.000730133317004725 -0.2564194017842564 1.0 14454 +70316 Ndufab1 NADH:ubiquinone oxidoreductase subunit AB1 Novel N 0.0007299518102201784 -0.256421281825564 1.0 14455 +18004 Nek1 NIMA (never in mitosis gene a)-related expressed kinase 1 Novel U 0.0007298808978687139 -0.25642201633336936 1.0 14456 +71063 Zfp597 zinc finger protein 597 Novel U 0.0007296439040621743 -0.2564244711074267 1.0 14457 +72693 Zcchc12 zinc finger, CCHC domain containing 12 Novel U 0.0007296334052636169 -0.25642457985363704 1.0 14458 +244672 Cwf19l2 CWF19 like cell cycle control factor 2 Novel U 0.0007295967193372798 -0.2564249598452561 1.0 14459 +68597 Ccdc167 coiled-coil domain containing 167 Novel U 0.0007294764195526508 -0.25642620590647064 1.0 14460 +67789 Dalrd3 DALR anticodon binding domain containing 3 Novel U 0.0007292988713028215 -0.2564280449454058 1.0 14461 +227545 Proser2 proline and serine rich 2 Novel U 0.0007291679278668567 -0.25642940125321095 1.0 14462 +228715 Smim26 small integral membrane protein 26 Novel U 0.0007290292648630107 -0.25643083752004653 1.0 14463 +270109 Pcnx2 pecanex homolog 2 Novel U 0.0007290202545666791 -0.2564309308483997 1.0 14464 +100043033 Gm16451 predicted pseudogene 16451 Novel U 0.0007288795965643233 -0.2564323877793642 1.0 14465 +432779 Lrrc14b leucine rich repeat containing 14B Novel U 0.0007288716434200561 -0.2564324701577711 1.0 14466 +64655 Mrps22 mitochondrial ribosomal protein S22 Novel U 0.0007286324798942991 -0.2564349474057088 1.0 14467 +434729 Fthl17f ferritin, heavy polypeptide-like 17, member F Novel U 0.0007282435200061457 -0.25643897623944395 1.0 14468 +12564 Cdh8 cadherin 8 Novel N 0.0007279431926772123 -0.2564420870200443 1.0 14469 +213673 9530068E07Rik RIKEN cDNA 9530068E07 gene Novel U 0.0007277676634844996 -0.2564439051456522 1.0 14470 +234796 Klhl36 kelch-like 36 Novel U 0.0007277655860267921 -0.2564439266638909 1.0 14471 +77113 Klhl2 kelch-like 2, Mayven Novel U 0.0007276528586916338 -0.2564450942899227 1.0 14472 +29873 Cspg5 chondroitin sulfate proteoglycan 5 Novel N 0.0007275545852302641 -0.256446112203205 1.0 14473 +66206 1110059E24Rik RIKEN cDNA 1110059E24 gene Novel U 0.0007270590071302105 -0.2564512453848741 1.0 14474 +433180 Spink6 serine peptidase inhibitor, Kazal type 6 Novel U 0.0007269795213323159 -0.2564520686961557 1.0 14475 +245109 Zscan4c zinc finger and SCAN domain containing 4C Novel U 0.0007269420907924242 -0.2564524564004575 1.0 14476 +213449 Tent5d terminal nucleotidyltransferase 5D Novel U 0.0007268670584328192 -0.25645323358317174 1.0 14477 +240894 Fmo9 flavin containing monooxygenase 9 Novel U 0.0007268076886233095 -0.25645384853370695 1.0 14478 +72899 Macrod2 mono-ADP ribosylhydrolase 2 Novel N 0.0007267641527044231 -0.2564542994773236 1.0 14479 +56427 Tubd1 tubulin, delta 1 Novel U 0.000726594734751607 -0.2564560543029096 1.0 14480 +70052 Prpf4 pre-mRNA processing factor 4 Novel N 0.0007264502702651464 -0.2564575506613113 1.0 14481 +546143 Pierce2 piercer of microtubule wall 2 Novel U 0.0007263402359565692 -0.25645869039306235 1.0 14482 +226243 Habp2 hyaluronic acid binding protein 2 Novel U 0.0007263146767213981 -0.25645895513478006 1.0 14483 +20391 Sgca sarcoglycan, alpha (dystrophin-associated glycoprotein) Novel N 0.0007261562866869205 -0.2564605957335504 1.0 14484 +232566 Amn1 antagonist of mitotic exit network 1 Novel U 0.0007260740045412578 -0.2564614480093103 1.0 14485 +328092 Dtd2 D-tyrosyl-tRNA deacylase 2 Novel N 0.0007260112924726838 -0.256462097578855 1.0 14486 +22789 Zp3r zona pellucida 3 receptor Novel U 0.0007259976018866987 -0.25646223938549456 1.0 14487 +50709 H1f4 H1.4 linker histone, cluster member Novel U 0.0007259935110465831 -0.256462281758282 1.0 14488 +224019 Tmem191 transmembrane protein 191 Novel U 0.0007258848078957 -0.2564634077019454 1.0 14489 +319909 Ism1 isthmin 1, angiogenesis inhibitor Novel U 0.0007258603868778668 -0.25646366065404536 1.0 14490 +52713 Ccdc59 coiled-coil domain containing 59 Novel U 0.0007256940199841497 -0.25646538387686146 1.0 14491 +21343 Taf6 TATA-box binding protein associated factor 6 Novel N 0.0007256170829280375 -0.25646618078835953 1.0 14492 +56229 Thsd1 thrombospondin, type I, domain 1 Novel U 0.0007250891527110393 -0.2564716490721924 1.0 14493 +74252 Armc1 armadillo repeat containing 1 Novel U 0.0007247335933415366 -0.2564753319444533 1.0 14494 +110886 Gabra5 gamma-aminobutyric acid type A receptor subunit alpha 5 Novel U 0.0007247070610348108 -0.2564756067652142 1.0 14495 +56046 Uqcc1 ubiquinol-cytochrome c reductase complex assembly factor 1 Novel N 0.0007245907496410619 -0.2564768115148071 1.0 14496 +319636 Fsd1l fibronectin type III and SPRY domain containing 1-like Novel U 0.0007245759709665402 -0.256476964591832 1.0 14497 +11921 Atoh1 atonal bHLH transcription factor 1 Novel N 0.0007245683962978128 -0.2564770430500017 1.0 14498 +110310 Krt7 keratin 7 Novel U 0.0007244907956997935 -0.25647784683444497 1.0 14499 +68526 Gpr155 G protein-coupled receptor 155 Novel U 0.000724364558365358 -0.25647915439660524 1.0 14500 +67661 Ift172 intraflagellar transport 172 Novel N 0.0007242921385061064 -0.25647990451912667 1.0 14501 +329575 Gm14325 predicted gene 14325 Novel U 0.0007242402387004172 -0.2564804420956079 1.0 14502 +382406 Poc1b POC1 centriolar protein B Novel N 0.0007242032388236092 -0.25648082533911554 1.0 14503 +330812 Rnf150 ring finger protein 150 Novel U 0.0007241701882447064 -0.2564811676759253 1.0 14504 +320873 Cdh10 cadherin 10 Novel U 0.0007237784356759821 -0.25648522543615404 1.0 14505 +11833 Aqp8 aquaporin 8 Novel N 0.0007236414212811155 -0.25648664462675197 1.0 14506 +236930 Ercc6l excision repair cross-complementing rodent repair deficiency complementation group 6 like Novel U 0.0007236357919640788 -0.2564867029350328 1.0 14507 +100043300 Esp16 exocrine gland secreted peptide 16 Novel U 0.0007236075981023607 -0.25648699496612565 1.0 14508 +329641 Sertm1 serine rich and transmembrane domain containing 1 Novel U 0.0007234281032724143 -0.25648885416767364 1.0 14509 +100862359 Speer4a3 spermatogenesis associated glutamate (E)-rich protein 4A3 Novel U 0.0007232840835660988 -0.2564903459190572 1.0 14510 +68948 Fam216a family with sequence similarity 216, member A Novel U 0.0007230657354467279 -0.2564926075616999 1.0 14511 +73458 Aldh3b3 aldehyde dehydrogenase 3 family, member B3 Novel U 0.0007230002802433769 -0.2564932855445445 1.0 14512 +18606 Enpp2 ectonucleotide pyrophosphatase/phosphodiesterase 2 Novel U 0.000722964829191841 -0.2564936527453709 1.0 14513 +100041734 4930522L14Rik RIKEN cDNA 4930522L14 gene Novel U 0.0007228532224463219 -0.25649480876437214 1.0 14514 +209540 Rtl9 retrotransposon Gag like 9 Novel U 0.000722722729051546 -0.2564961604106655 1.0 14515 +68964 Ctc1 CTS telomere maintenance complex component 1 Novel U 0.000722703936340079 -0.25649635506495305 1.0 14516 +19092 Prkg2 protein kinase, cGMP-dependent, type II Novel U 0.0007225861268999054 -0.2564975753312616 1.0 14517 +547160 H2al1e H2A histone family member L1E Novel U 0.0007225395946896833 -0.2564980573103654 1.0 14518 +74043 Pex26 peroxisomal biogenesis factor 26 Novel U 0.000722438999751628 -0.25649909926942693 1.0 14519 +74770 Hhatl hedgehog acyltransferase-like Novel U 0.000722431344313247 -0.256499178564206 1.0 14520 +26912 Gcat glycine C-acetyltransferase (2-amino-3-ketobutyrate-coenzyme A ligase) Novel U 0.0007224046608319189 -0.25649945495082843 1.0 14521 +70370 Fbln7 fibulin 7 Novel U 0.0007215892534782595 -0.25650790091339254 1.0 14522 +11564 Adsl adenylosuccinate lyase Novel U 0.0007212997300523325 -0.25651089978752073 1.0 14523 +22290 Uty ubiquitously transcribed tetratricopeptide repeat containing, Y-linked Novel U 0.0007210898161061237 -0.25651307406927504 1.0 14524 +21958 Tnp1 transition protein 1 Novel U 0.0007210386299591135 -0.2565136042537031 1.0 14525 +14343 Fut1 fucosyltransferase 1 Novel U 0.0007208442283501955 -0.25651561785917765 1.0 14526 +66358 Adprm ADP-ribose/CDP-alcohol diphosphatase, manganese dependent Novel U 0.0007207983032917072 -0.2565160935494238 1.0 14527 +230737 Gnl2 guanine nucleotide binding protein nucleolar 2 Novel U 0.0007207194979273267 -0.25651690981279746 1.0 14528 +18823 Plp1 proteolipid protein (myelin) 1 Novel U 0.000720619438516892 -0.25651794622488144 1.0 14529 +71679 Atp5pd ATP synthase peripheral stalk subunit d Novel N 0.0007205694076738572 -0.2565184644427089 1.0 14530 +109828 C7 complement component 7 Novel N 0.0007204865667939654 -0.2565193225058196 1.0 14531 +102633750 Zfp1001 zinc finger protein 1001 Novel U 0.000720462148230485 -0.2565195754324974 1.0 14532 +13047 Cux1 cut-like homeobox 1 Novel U 0.0007203419819016428 -0.25652082011138133 1.0 14533 +69202 Ptms parathymosin Novel U 0.0007200959410755777 -0.2565233685941695 1.0 14534 +65257 Asb3 ankyrin repeat and SOCS box-containing 3 Novel U 0.0007197239673112717 -0.2565272214861922 1.0 14535 +70472 Atad2 ATPase family, AAA domain containing 2 Novel U 0.0007196857438076875 -0.25652761740398583 1.0 14536 +71306 Mfap3l microfibrillar-associated protein 3-like Novel U 0.0007195463347420577 -0.2565290613985048 1.0 14537 +20600 Smr2 submaxillary gland androgen regulated protein 2 Novel U 0.0007192208996277753 -0.25653243224472044 1.0 14538 +74890 Morn3 MORN repeat containing 3 Novel U 0.0007188433187760417 -0.2565363432147704 1.0 14539 +52708 Zfp410 zinc finger protein 410 Novel N 0.0007188416983450979 -0.2565363599991408 1.0 14540 +213262 Fstl5 follistatin-like 5 Novel U 0.0007186934480981529 -0.25653789557032525 1.0 14541 +75291 Zbtb3 zinc finger and BTB domain containing 3 Novel U 0.0007185714883603567 -0.2565391588252801 1.0 14542 +381338 Lonrf2 LON peptidase N-terminal domain and ring finger 2 Novel U 0.000718529762347917 -0.2565395910219453 1.0 14543 +67493 Mettl16 methyltransferase 16, N6-methyladenosine Novel N 0.0007184867610065931 -0.25654003642842516 1.0 14544 +13401 Dmwd dystrophia myotonica-containing WD repeat motif Novel U 0.0007184794025823949 -0.2565401126467411 1.0 14545 +93684 Selenof selenoprotein F Novel U 0.0007183784493101741 -0.2565411583174161 1.0 14546 +93892 Pcdhb21 protocadherin beta 21 Novel U 0.0007180606137233437 -0.2565444504479762 1.0 14547 +218335 Clptm1l CLPTM1-like Novel U 0.0007180536880216343 -0.2565445221841668 1.0 14548 +100862388 Gm21698 predicted gene, 21698 Novel U 0.0007174620179977236 -0.2565506506828244 1.0 14549 +14264 Fmod fibromodulin Novel U 0.0007172540269465904 -0.25655280504729466 1.0 14550 +108168468 Spin2g spindlin family, member 2G Novel U 0.0007170003640360805 -0.256555432479383 1.0 14551 +433415 Prrt1b proline rich transmembrane protein 1B Novel U 0.0007165595592893304 -0.25655999832045917 1.0 14552 +13436 Dnmt3b DNA methyltransferase 3B Novel U 0.0007165028058895386 -0.2565605861703086 1.0 14553 +381457 Crnn cornulin Novel U 0.0007159507302610575 -0.2565663045515199 1.0 14554 +230596 Prpf38a PRP38 pre-mRNA processing factor 38 (yeast) domain containing A Novel N 0.0007159000727298099 -0.25656682926056323 1.0 14555 +268859 Rbfox1 RNA binding protein, fox-1 homolog (C. elegans) 1 Novel U 0.0007158295939177063 -0.25656755927778213 1.0 14556 +213236 Dnd1 DND microRNA-mediated repression inhibitor 1 Novel N 0.0007157248793920561 -0.25656864390739653 1.0 14557 +102637163 Scgb1b15 secretoglobin, family 1B, member 15 Novel U 0.0007156255404355894 -0.256569672857042 1.0 14558 +74108 Parn poly(A)-specific ribonuclease (deadenylation nuclease) Novel U 0.0007155462435957219 -0.2565704942111027 1.0 14559 +235527 Plscr4 phospholipid scramblase 4 Novel U 0.0007152271541120977 -0.25657379932948454 1.0 14560 +78634 Spaca7 sperm acrosome associated 7 Novel U 0.0007149521979964708 -0.25657664731589147 1.0 14561 +56372 1110004F10Rik RIKEN cDNA 1110004F10 gene Novel U 0.0007145850137308799 -0.2565804505984439 1.0 14562 +100198 H6pd hexose-6-phosphate dehydrogenase (glucose 1-dehydrogenase) Novel N 0.0007145640901728967 -0.25658066732396967 1.0 14563 +228961 Npepl1 aminopeptidase-like 1 Novel U 0.000714417075500161 -0.2565821900971171 1.0 14564 +214531 Tmprss13 transmembrane protease, serine 13 Novel U 0.0007143641542301873 -0.2565827382538918 1.0 14565 +23919 Insl5 insulin-like 5 Novel U 0.0007142491304002642 -0.2565839296669409 1.0 14566 +101056136 Gm17026 predicted gene 17026 Novel U 0.0007142123796070874 -0.2565843103304485 1.0 14567 +75196 Ankrd7 ankyrin repeat domain 7 Novel U 0.0007131558088196068 -0.2565952542559323 1.0 14568 +100504263 2210418O10Rik RIKEN cDNA 2210418O10 gene Novel U 0.0007129825338373172 -0.2565970490325028 1.0 14569 +215387 Ncaph non-SMC condensin I complex, subunit H Novel U 0.0007129147666818183 -0.2565977509624717 1.0 14570 +11688 Alox8 arachidonate 8-lipoxygenase Novel U 0.0007128754718410103 -0.2565981579771411 1.0 14571 +677156 Cyp4f37 cytochrome P450, family 4, subfamily f, polypeptide 37 Novel U 0.0007127697364984981 -0.25659925318034293 1.0 14572 +228911 Tshz2 teashirt zinc finger family member 2 Novel U 0.0007127151174156958 -0.2565998189230071 1.0 14573 +100504429 Spin2d spindlin family, member 2D Novel U 0.0007122163173192176 -0.25660498547800925 1.0 14574 +277432 Vstm2l V-set and transmembrane domain containing 2-like Novel N 0.0007118309297331767 -0.2566089773099565 1.0 14575 +218734 Cep15 centrosomal protein 15 Novel U 0.0007116775890228935 -0.25661056560799284 1.0 14576 +234267 Gpm6a glycoprotein m6a Novel N 0.0007115759231809566 -0.2566116186594415 1.0 14577 +13118 Cyp4a12b cytochrome P450, family 4, subfamily a, polypeptide 12B Novel U 0.0007110124038119913 -0.2566174555745406 1.0 14578 +17160 Man2b2 mannosidase 2, alpha B2 Novel U 0.0007109069506598499 -0.25661854785482385 1.0 14579 +338364 Trim65 tripartite motif-containing 65 Novel U 0.0007107160922552757 -0.2566205247599043 1.0 14580 +75437 Cfap97d1 CFAP97 domain containing 1 Novel U 0.0007105818591478517 -0.2566219151420183 1.0 14581 +13113 Cyp3a13 cytochrome P450, family 3, subfamily a, polypeptide 13 Novel U 0.0007104391642260128 -0.25662339317132793 1.0 14582 +100043597 Srcap Snf2-related CREBBP activator protein Novel U 0.0007104229787998164 -0.2566235608194404 1.0 14583 +14719 Got2 glutamatic-oxaloacetic transaminase 2, mitochondrial Novel N 0.0007103773408887141 -0.2566240335354233 1.0 14584 +14154 Fem1a fem 1 homolog a Novel U 0.0007103314258798101 -0.2566245091215762 1.0 14585 +69888 Cyp2c66 cytochrome P450, family 2, subfamily c, polypeptide 66 Novel U 0.0007103013054543978 -0.2566248211079524 1.0 14586 +252906 Vmn1r189 vomeronasal 1 receptor 189 Novel U 0.0007102185534739034 -0.25662567825024607 1.0 14587 +20472 Six2 sine oculis-related homeobox 2 Novel N 0.0007101456861372567 -0.25662643300772364 1.0 14588 +70439 Taf15 TATA-box binding protein associated factor 15 Novel U 0.0007101450530320473 -0.2566264395654066 1.0 14589 +19281 Ptprt protein tyrosine phosphatase receptor type T Novel U 0.0007100144355821403 -0.2566277924966589 1.0 14590 +102640043 Gm36210 predicted gene, 36210 Novel U 0.0007099678083977245 -0.2566282754595023 1.0 14591 +64451 Dip2a disco interacting protein 2 homolog A Novel N 0.0007097272374363648 -0.25663076728561174 1.0 14592 +18247 Oaz2 ornithine decarboxylase antizyme 2 Novel N 0.0007096859202822734 -0.2566311952473356 1.0 14593 +226564 Fmo4 flavin containing monooxygenase 4 Novel U 0.0007092326440774168 -0.25663589026736483 1.0 14594 +56869 Zfp109 zinc finger protein 109 Novel U 0.0007086767903521986 -0.25664164778197796 1.0 14595 +378435 Mafa MAF bZIP transcription factor A Novel U 0.0007083306630953431 -0.25664523295672614 1.0 14596 +210321 BC048679 cDNA sequence BC048679 Novel U 0.0007083234459920286 -0.256645307711245 1.0 14597 +76251 Ercc6l2 excision repair cross-complementing rodent repair deficiency, complementation group 6 like 2 Novel U 0.0007081990177910838 -0.25664659653446004 1.0 14598 +71449 Mettl13 methyltransferase 13, eEF1A lysine and N-terminal methyltransferase Novel N 0.0007081538028721048 -0.2566470648691045 1.0 14599 +94213 Ddx50 DExD box helicase 50 Novel U 0.0007080998619119193 -0.25664762358779686 1.0 14600 +12850 Coq7 demethyl-Q 7 Novel N 0.0007080752429472269 -0.2566478785902238 1.0 14601 +76429 Lhpp phospholysine phosphohistidine inorganic pyrophosphate phosphatase Novel N 0.0007076520126029737 -0.25665226239621663 1.0 14602 +17765 Mtf2 metal response element binding transcription factor 2 Novel U 0.000707461042424434 -0.25665424045904817 1.0 14603 +12916 Crem cAMP responsive element modulator Novel N 0.0007074574753736201 -0.25665427740644325 1.0 14604 +57258 Xpo4 exportin 4 Novel U 0.0007073175468361564 -0.2566557267816344 1.0 14605 +433940 Fam222a family with sequence similarity 222, member A Novel U 0.000707216887290847 -0.2566567694098957 1.0 14606 +109272 Mybpc1 myosin binding protein C, slow-type Novel U 0.0007070434857816449 -0.25665856549702776 1.0 14607 +67636 Etfrf1 electron transfer flavoprotein regulatory factor 1 Novel N 0.0007070400283118011 -0.2566586013093867 1.0 14608 +76405 1700018B08Rik RIKEN cDNA 1700018B08 gene Novel U 0.0007066931939899695 -0.25666219380789074 1.0 14609 +80752 Fam20c FAM20C, golgi associated secretory pathway kinase Novel U 0.0007061996516419837 -0.2566673059033068 1.0 14610 +67429 Nudcd1 NudC domain containing 1 Novel U 0.0007061777143320582 -0.25666753312924184 1.0 14611 +329954 Catsper4 cation channel, sperm associated 4 Novel U 0.0007061531220356081 -0.25666778785544003 1.0 14612 +12373 Casq2 calsequestrin 2 Novel U 0.0007058313398173761 -0.2566711208650785 1.0 14613 +225994 Nmrk1 nicotinamide riboside kinase 1 Novel N 0.0007056400907308704 -0.2566731018168295 1.0 14614 +231214 Cc2d2a coiled-coil and C2 domain containing 2A Novel U 0.0007055070100336751 -0.25667448026231626 1.0 14615 +13680 Ddx19a DEAD box helicase 19a Novel U 0.0007053966190434902 -0.2566756236885637 1.0 14616 +212123 Dcaf15 DDB1 and CUL4 associated factor 15 Novel U 0.0007051930365707158 -0.25667773238912434 1.0 14617 +27223 Trp53bp1 transformation related protein 53 binding protein 1 Novel U 0.0007048225803682238 -0.25668156956229166 1.0 14618 +232157 Mob1a MOB kinase activator 1A Novel N 0.0007046080356621836 -0.256683791809304 1.0 14619 +319504 Nrcam neuronal cell adhesion molecule Novel U 0.0007042310360850538 -0.2566876967585307 1.0 14620 +22022 Tpst2 protein-tyrosine sulfotransferase 2 Novel U 0.0007040981059860171 -0.25668907364412674 1.0 14621 +22270 Upk3a uroplakin 3A Novel N 0.000703874230572885 -0.2566913925382964 1.0 14622 +12020 Nkx3-2 NK3 homeobox 2 Novel N 0.0007036351144809291 -0.2566938692949164 1.0 14623 +192658 Rfpl4 ret finger protein-like 4 Novel U 0.0007036127769232965 -0.25669410066660403 1.0 14624 +58202 Nelfb negative elongation factor complex member B Novel N 0.000703146316008556 -0.2566989322534249 1.0 14625 +330814 Adgrl1 adhesion G protein-coupled receptor L1 Novel N 0.0007030929109416416 -0.25669948542135235 1.0 14626 +108096 Slco1a5 solute carrier organic anion transporter family, member 1a5 Novel U 0.0007028978102195174 -0.2567015062682185 1.0 14627 +75660 Lin37 lin-37 DREAM MuvB core complex component Novel U 0.0007027063316099628 -0.2567034895973618 1.0 14628 +18600 Padi2 peptidyl arginine deiminase, type II Novel U 0.0007026447454001811 -0.25670412750529814 1.0 14629 +432628 Mfsd2b MFSD2 lysolipid transporter B, sphingolipid Novel N 0.0007025826378252256 -0.25670477081351784 1.0 14630 +80880 Kank3 KN motif and ankyrin repeat domains 3 Novel U 0.0007025076390330967 -0.2567055476485413 1.0 14631 +19072 Prep prolyl endopeptidase Novel U 0.0007022699472430891 -0.2567080096522885 1.0 14632 +18104 Nqo1 NAD(P)H dehydrogenase, quinone 1 Novel U 0.0007020811905304516 -0.2567099647881129 1.0 14633 +70239 Gtf3c5 general transcription factor IIIC, polypeptide 5 Novel N 0.0007020291178505468 -0.2567105041552196 1.0 14634 +30963 Hacd1 3-hydroxyacyl-CoA dehydratase 1 Novel U 0.0007018960455842405 -0.25671188251337945 1.0 14635 +620574 Vmn1r241 vomeronasal 1 receptor 241 Novel U 0.0007016654272091643 -0.25671427125092733 1.0 14636 +66979 Pole4 polymerase (DNA-directed), epsilon 4 (p12 subunit) Novel N 0.0007016537172445255 -0.2567143925423561 1.0 14637 +56738 Mocs1 molybdenum cofactor synthesis 1 Novel N 0.000701403080497943 -0.256716988629538 1.0 14638 +101471 Phrf1 PHD and ring finger domains 1 Novel U 0.000701245751645325 -0.2567186182366215 1.0 14639 +232370 Clstn3 calsyntenin 3 Novel U 0.0007007635613847221 -0.25672361274748967 1.0 14640 +20513 Slc1a6 solute carrier family 1 (high affinity aspartate/glutamate transporter), member 6 Novel U 0.0007006117931557471 -0.2567251847578163 1.0 14641 +17833 Muc5ac mucin 5, subtypes A and C, tracheobronchial/gastric Novel U 0.0007005283698380636 -0.25672604885379846 1.0 14642 +665433 H2ac23 H2A clustered histone 23 Novel U 0.0007004621290404956 -0.2567267349738021 1.0 14643 +219131 Phf11a PHD finger protein 11A Novel U 0.0007002935686234959 -0.2567284809170603 1.0 14644 +238317 Mideas mitotic deacetylase associated SANT domain protein Novel U 0.0007000051326464215 -0.256731468527429 1.0 14645 +668110 Syce1l synaptonemal complex central element protein 1 like Novel U 0.0006999872973131021 -0.25673165326522523 1.0 14646 +19704 Upf1 UPF1 RNA helicase and ATPase Novel U 0.0006997441438558491 -0.2567341718407422 1.0 14647 +78469 Tmem247 transmembrane protein 247 Novel U 0.0006986886246081413 -0.2567451048744116 1.0 14648 +55982 Paxip1 PAX interacting (with transcription-activation domain) protein 1 Novel U 0.000698587162890792 -0.2567461558115446 1.0 14649 +230767 Iqcc IQ motif containing C Novel U 0.0006985780400685712 -0.25674625030543724 1.0 14650 +171186 Vmn1r38 vomeronasal 1 receptor 38 Novel U 0.000698296310920228 -0.25674916844669443 1.0 14651 +73398 Nipsnap3a nipsnap homolog 3A Novel U 0.0006980045255233963 -0.25675219075024286 1.0 14652 +20637 Snrnp70 small nuclear ribonucleoprotein 70 (U1) Novel U 0.0006979786038223461 -0.25675245924637025 1.0 14653 +14778 Gpx3 glutathione peroxidase 3 Novel U 0.0006977421295676677 -0.2567549086389265 1.0 14654 +72590 Ppme1 protein phosphatase methylesterase 1 Novel N 0.000697704260346929 -0.25675530088707005 1.0 14655 +67759 Plgrkt plasminogen receptor, C-terminal lysine transmembrane protein Novel U 0.0006976739090365984 -0.25675561526494467 1.0 14656 +384522 Vmn1r55 vomeronasal 1 receptor 55 Novel U 0.0006975187022974322 -0.2567572228912468 1.0 14657 +13099 Cyp2c40 cytochrome P450, family 2, subfamily c, polypeptide 40 Novel U 0.0006973235312766452 -0.25675924446626425 1.0 14658 +270201 Klhl18 kelch-like 18 Novel U 0.0006972471164743132 -0.2567600359682748 1.0 14659 +171252 Vmn1r208 vomeronasal 1 receptor 208 Novel U 0.0006970326835284161 -0.2567622570576793 1.0 14660 +108150 Galnt7 polypeptide N-acetylgalactosaminyltransferase 7 Novel N 0.0006970060846832466 -0.2567625325676432 1.0 14661 +16917 Lmx1b LIM homeobox transcription factor 1 beta Novel U 0.0006965757423126435 -0.25676699003977116 1.0 14662 +21916 Tmod1 tropomodulin 1 Novel U 0.0006963419527080938 -0.25676941162480965 1.0 14663 +100678 Psph phosphoserine phosphatase Novel U 0.0006962713250724914 -0.25677014318353747 1.0 14664 +69401 Plac8l1 PLAC8-like 1 Novel U 0.0006961292153876365 -0.25677161515098157 1.0 14665 +227644 Snapc4 small nuclear RNA activating complex, polypeptide 4 Novel N 0.0006959091305884097 -0.25677389478209706 1.0 14666 +71132 Cabyr calcium binding tyrosine phosphorylation regulated Novel U 0.000695870713059199 -0.2567742927096017 1.0 14667 +266614 Ly6g5b lymphocyte antigen 6 family member G5B Novel U 0.0006956914998680924 -0.2567761489939439 1.0 14668 +12686 Elovl3 ELOVL fatty acid elongase 3 Novel N 0.0006949891555049893 -0.25678342385376857 1.0 14669 +622222 Vmn1r175 vomeronasal 1 receptor 175 Novel U 0.0006947780772530497 -0.25678561019536333 1.0 14670 +16898 Rps2 ribosomal protein S2 Novel U 0.000694686756520811 -0.2567865560925059 1.0 14671 +18616 Peg3 paternally expressed 3 Novel U 0.0006944139566067018 -0.2567893817450484 1.0 14672 +67440 Mtpap mitochondrial poly(A) polymerase Novel N 0.0006943606578030275 -0.25678993381230475 1.0 14673 +12667 Chrd chordin Novel U 0.0006943546893123312 -0.25678999563373517 1.0 14674 +17709 COX2 cytochrome c oxidase subunit II Novel U 0.0006942321132993359 -0.2567912652720483 1.0 14675 +213248 Wdr49 WD repeat domain 49 Novel U 0.0006940238576781579 -0.2567934223769265 1.0 14676 +320981 Enpp6 ectonucleotide pyrophosphatase/phosphodiesterase 6 Novel U 0.0006939114381860228 -0.2567945868143304 1.0 14677 +432770 Rslcan18 regulator of sex-limitation candidate 18 Novel U 0.000693475850638662 -0.2567990986158268 1.0 14678 +66447 Mgst3 microsomal glutathione S-transferase 3 Novel N 0.0006931791846991304 -0.2568021714718761 1.0 14679 +102640913 Gm36864 predicted gene, 36864 Novel U 0.000693168613483705 -0.2568022809681779 1.0 14680 +68957 Paqr6 progestin and adipoQ receptor family member VI Novel U 0.0006931169525403852 -0.2568028160705306 1.0 14681 +21888 Tle4 transducin-like enhancer of split 4 Novel U 0.000693091309100125 -0.2568030816844418 1.0 14682 +328949 Mcc mutated in colorectal cancers Novel U 0.0006929925218469273 -0.256804104919563 1.0 14683 +80909 Castor2 cytosolic arginine sensor for mTORC1 subunit 2 Novel N 0.000692945666274492 -0.256804590248042 1.0 14684 +20147 Rs1 retinoschisis (X-linked, juvenile) 1 (human) Novel U 0.0006928965847973797 -0.25680509863236844 1.0 14685 +170718 Idh3b isocitrate dehydrogenase 3 (NAD+) beta Novel N 0.0006927435790080088 -0.256806683461305 1.0 14686 +11514 Adcy8 adenylate cyclase 8 Novel U 0.0006927093078730067 -0.2568070384405947 1.0 14687 +15402 Hoxa5 homeobox A5 Novel U 0.000692471386120399 -0.25680950282628695 1.0 14688 +100043712 Tmsb10b thymosin beta 10b Novel U 0.0006924048024657194 -0.2568101924975933 1.0 14689 +233410 Zfp592 zinc finger protein 592 Novel N 0.0006919767560775277 -0.25681462618801093 1.0 14690 +56473 Fads2 fatty acid desaturase 2 Novel N 0.0006917059474099646 -0.2568174312152872 1.0 14691 +15487 Hsd17b3 hydroxysteroid (17-beta) dehydrogenase 3 Novel N 0.0006914799831615527 -0.25681977174554405 1.0 14692 +65971 Tbata thymus, brain and testes associated Novel U 0.0006914552992786803 -0.25682002742039145 1.0 14693 +19044 Ppox protoporphyrinogen oxidase Novel U 0.0006913529384634555 -0.2568210876703506 1.0 14694 +228866 Pcif1 phosphorylated CTD interacting factor 1 Novel N 0.0006912539723725573 -0.2568221127578668 1.0 14695 +52615 Suz12 SUZ12 polycomb repressive complex 2 subunit Novel U 0.0006911898296319453 -0.25682277714626545 1.0 14696 +235674 Acaa1b acetyl-Coenzyme A acyltransferase 1B Novel U 0.0006908231522402584 -0.25682657517863466 1.0 14697 +75690 Vsig10l V-set and immunoglobulin domain containing 10 like Novel U 0.0006907447206278534 -0.2568273875706977 1.0 14698 +78100 Msantd4 Myb/SANT-like DNA-binding domain containing 4 with coiled-coils Novel U 0.0006906951419598486 -0.25682790110491105 1.0 14699 +215627 Zbtb8b zinc finger and BTB domain containing 8b Novel U 0.0006905788372535241 -0.2568291057852359 1.0 14700 +497106 Rnase12 ribonuclease, RNase A family, 12 (non-active) Novel U 0.0006904552464949306 -0.25683038593425056 1.0 14701 +170716 Cyp4f13 cytochrome P450, family 4, subfamily f, polypeptide 13 Novel U 0.0006904260051123636 -0.2568306888155299 1.0 14702 +19144 Klk6 kallikrein related-peptidase 6 Novel U 0.0006897109958318979 -0.2568380948581523 1.0 14703 +54711 Plagl2 pleiomorphic adenoma gene-like 2 Novel U 0.000689643819090641 -0.25683879067262994 1.0 14704 +16549 Khsrp KH-type splicing regulatory protein Novel U 0.0006885815919162395 -0.2568497931867836 1.0 14705 +17844 Mup5 major urinary protein 5 Novel U 0.00068780971734851 -0.25685778823818206 1.0 14706 +69597 Afg3l2 AFG3-like AAA ATPase 2 Novel N 0.0006870511492671688 -0.25686564546143204 1.0 14707 +20787 Srebf1 sterol regulatory element binding transcription factor 1 Novel U 0.0006869549601382928 -0.2568666417852669 1.0 14708 +227059 Slc39a10 solute carrier family 39 (zinc transporter), member 10 Novel N 0.000686848951847104 -0.2568677398156622 1.0 14709 +241528 Lrrc55 leucine rich repeat containing 55 Novel N 0.0006867477673378218 -0.25686878788148304 1.0 14710 +320365 Fry FRY microtubule binding protein Novel U 0.0006859416142932182 -0.2568771379882182 1.0 14711 +14426 Galnt4 polypeptide N-acetylgalactosaminyltransferase 4 Novel N 0.0006856944994975519 -0.2568796975951483 1.0 14712 +13076 Cyp1a1 cytochrome P450, family 1, subfamily a, polypeptide 1 Novel N 0.000685367585619779 -0.25688308375834756 1.0 14713 +12297 Cacnb3 calcium channel, voltage-dependent, beta 3 subunit Novel N 0.0006853447284436114 -0.2568833205122269 1.0 14714 +23988 Pin1 peptidyl-prolyl cis/trans isomerase, NIMA-interacting 1 Novel U 0.0006852470020990662 -0.2568843327584911 1.0 14715 +17187 Max Max protein Novel U 0.0006851273115725101 -0.25688557250903055 1.0 14716 +52830 Pnrc2 proline-rich nuclear receptor coactivator 2 Novel N 0.0006850594275187078 -0.2568862756498283 1.0 14717 +12032 Bcan brevican Novel U 0.0006850048445578441 -0.2568868410183426 1.0 14718 +20688 Sp4 trans-acting transcription factor 4 Novel N 0.0006848449181882897 -0.25688849753042114 1.0 14719 +69364 Cfap107 cilia and flagella associated protein 107 Novel U 0.0006847691656350818 -0.25688928217287704 1.0 14720 +74342 Lrrtm1 leucine rich repeat transmembrane neuronal 1 Novel U 0.0006843255304131073 -0.2568938773319225 1.0 14721 +81000 Rad54l2 RAD54 like 2 (S. cerevisiae) Novel U 0.0006842216815983959 -0.25689495299453147 1.0 14722 +76378 Ropn1 ropporin, rhophilin associated protein 1 Novel U 0.0006841764908298614 -0.25689542107902635 1.0 14723 +14534 Kat2a K(lysine) acetyltransferase 2A Novel U 0.0006840798616858904 -0.2568964219605231 1.0 14724 +66468 Ska1 spindle and kinetochore associated complex subunit 1 Novel U 0.00068396535047173 -0.25689760806391504 1.0 14725 +15464 Hrc histidine rich calcium binding protein Novel N 0.0006837884854183033 -0.25689944002632426 1.0 14726 +19726 Rfx3 regulatory factor X, 3 (influences HLA class II expression) Novel N 0.000683734641859953 -0.25689999773613165 1.0 14727 +30051 Spdef SAM pointed domain containing ets transcription factor Novel N 0.000683693146182349 -0.25690042754699616 1.0 14728 +26384 Gnpda1 glucosamine-6-phosphate deaminase 1 Novel N 0.0006835646414866336 -0.25690175859441006 1.0 14729 +210544 Tbc1d31 TBC1 domain family, member 31 Novel N 0.0006835523945706626 -0.2569018854475631 1.0 14730 +233001 Nlrp9a NLR family, pyrin domain containing 9A Novel U 0.0006834995228231576 -0.25690243309138566 1.0 14731 +244813 Bsx brain specific homeobox Novel U 0.0006834701428724387 -0.2569027374079494 1.0 14732 +69876 Thap3 THAP domain containing, apoptosis associated protein 3 Novel N 0.0006831615313631644 -0.2569059339958174 1.0 14733 +634825 Defa38 defensin, alpha, 38 Novel U 0.0006831472227397773 -0.2569060822040681 1.0 14734 +78625 Acsbg3 acyl-CoA synthetase bubblegum family member 3 Novel U 0.0006831163543468894 -0.25690640193786685 1.0 14735 +544806 Tmem92 transmembrane protein 92 Novel U 0.0006829941676649174 -0.2569076675435021 1.0 14736 +20274 Scn9a sodium channel, voltage-gated, type IX, alpha Novel U 0.0006828376292554917 -0.256909288963201 1.0 14737 +18302 Oit3 oncoprotein induced transcript 3 Novel U 0.0006824917284288069 -0.2569128717925929 1.0 14738 +102635473 Cdc5lrt4 cell division cycle 5 like, retrotransposed 4 Novel U 0.0006824704823261378 -0.2569130918590259 1.0 14739 +102638083 Ccdc188 coiled-coil domain containing 188 Novel U 0.0006822001847417274 -0.2569158915925197 1.0 14740 +50706 Postn periostin, osteoblast specific factor Novel N 0.000682169859002633 -0.2569162057055283 1.0 14741 +619665 Klf14 Kruppel-like transcription factor 14 Novel N 0.0006821555159053192 -0.2569163542708588 1.0 14742 +68342 Ndufb10 NADH:ubiquinone oxidoreductase subunit B10 Novel U 0.0006818996696370575 -0.25691900431809495 1.0 14743 +70530 Lrfn2 leucine rich repeat and fibronectin type III domain containing 2 Novel U 0.0006816782983147353 -0.25692129727497437 1.0 14744 +102631856 Gm30083 predicted gene, 30083 Novel U 0.000681452397932556 -0.2569236371437069 1.0 14745 +50784 Plpp2 phospholipid phosphatase 2 Novel N 0.0006814351461153452 -0.25692381583746243 1.0 14746 +110876 Scn2a sodium channel, voltage-gated, type II, alpha Novel U 0.0006814155165668265 -0.25692401915968077 1.0 14747 +208366 Rpp40 ribonuclease P 40 subunit Novel N 0.0006810726883187368 -0.25692757016340456 1.0 14748 +171224 Vmn1r229 vomeronasal 1 receptor 229 Novel U 0.0006810628658889508 -0.2569276719038094 1.0 14749 +75572 Acyp2 acylphosphatase 2, muscle type Novel N 0.0006810462961999711 -0.25692784353210313 1.0 14750 +20729 Spin1 spindlin 1 Novel U 0.0006810138685730397 -0.2569281794163969 1.0 14751 +55991 Panx1 pannexin 1 Novel U 0.000680932360637428 -0.25692902367291454 1.0 14752 +101118 Tmem168 transmembrane protein 168 Novel U 0.0006807549026842458 -0.25693086177656 1.0 14753 +14467 Nipsnap2 nipsnap homolog 2 Novel N 0.0006801397327641116 -0.2569372336863701 1.0 14754 +66942 Ddx18 DEAD box helicase 18 Novel U 0.0006799885447199702 -0.2569387996871613 1.0 14755 +107351 Kank1 KN motif and ankyrin repeat domains 1 Novel U 0.0006795695360061446 -0.2569431397656449 1.0 14756 +75645 Ccdc172 coiled-coil domain containing 172 Novel U 0.0006794923198329551 -0.2569439395682285 1.0 14757 +53881 Slc5a3 solute carrier family 5 (inositol transporters), member 3 Novel N 0.0006793699711184414 -0.2569452068521914 1.0 14758 +74133 Smg8 SMG8 nonsense mediated mRNA decay factor Novel N 0.0006793273245179951 -0.25694564858427693 1.0 14759 +66832 Rsph3a radial spoke 3A homolog (Chlamydomonas) Novel U 0.0006791958681970747 -0.25694701020452765 1.0 14760 +105853 Mal2 mal, T cell differentiation protein 2 Novel U 0.0006788289876775175 -0.2569508103408886 1.0 14761 +71974 Prmt3 protein arginine N-methyltransferase 3 Novel U 0.0006787736469121738 -0.25695138355871683 1.0 14762 +56847 Aldh1a3 aldehyde dehydrogenase family 1, subfamily A3 Novel U 0.0006782322325886803 -0.2569569915104815 1.0 14763 +239839 Ccdc14 coiled-coil domain containing 14 Novel N 0.0006779117197347097 -0.2569603113720867 1.0 14764 +13112 Cyp3a11 cytochrome P450, family 3, subfamily a, polypeptide 11 Novel U 0.0006778159593354245 -0.25696130325515454 1.0 14765 +74320 Wdr33 WD repeat domain 33 Novel U 0.0006777059167678828 -0.2569624430724517 1.0 14766 +320590 Svopl SV2 related protein homolog (rat)-like Novel U 0.00067768864766092 -0.2569626219452939 1.0 14767 +394432 Ugt1a7c UDP glucuronosyltransferase 1 family, polypeptide A7C Novel U 0.000677528388190862 -0.2569642819076165 1.0 14768 +11499 Adam5 a disintegrin and metallopeptidase domain 5 Novel U 0.0006774828581161982 -0.25696475350663317 1.0 14769 +328563 Apol11b apolipoprotein L 11b Novel U 0.0006773996162560191 -0.25696561572308446 1.0 14770 +11438 Chrna4 cholinergic receptor, nicotinic, alpha polypeptide 4 Novel N 0.0006772174159478955 -0.2569675029478865 1.0 14771 +68632 Myct1 myc target 1 Novel U 0.0006767583715381787 -0.2569722577147921 1.0 14772 +67390 Mrm3 mitochondrial rRNA methyltransferase 3 Novel N 0.000676427141321132 -0.2569756885864916 1.0 14773 +226999 Slc9a2 solute carrier family 9 (sodium/hydrogen exchanger), member 2 Novel N 0.0006762980414706858 -0.2569770257984986 1.0 14774 +76219 Arxes1 adipocyte-related X-chromosome expressed sequence 1 Novel U 0.0006762405849203853 -0.25697762093155785 1.0 14775 +100233208 Gm10778 predicted gene 10778 Novel U 0.0006759604245304761 -0.25698052282366673 1.0 14776 +218165 Ofcc1 orofacial cleft 1 candidate 1 Novel U 0.0006759112840873671 -0.2569810318187611 1.0 14777 +101055863 Msantd5f2 Myb/SANT DNA binding domain containing 5 family member 2 Novel U 0.0006757251734815301 -0.2569829595462983 1.0 14778 +21673 Dntt deoxynucleotidyltransferase, terminal Novel N 0.0006754841453892658 -0.25698545610735457 1.0 14779 +72290 Lsm11 U7 snRNP-specific Sm-like protein LSM11 Novel U 0.000675235269189219 -0.2569880339588533 1.0 14780 +75533 Nme5 NME/NM23 family member 5 Novel N 0.000674888438639831 -0.25699162641828244 1.0 14781 +192173 Mcrip1 MAPK regulated corepressor interacting protein 1 Novel N 0.0006748669420543872 -0.2569918490792078 1.0 14782 +320633 Zbtb26 zinc finger and BTB domain containing 26 Novel U 0.0006747470318967543 -0.2569930911046787 1.0 14783 +224008 Spidr scaffolding protein involved in DNA repair Novel U 0.0006747034979816033 -0.25699354202754077 1.0 14784 +66916 Ndufb7 NADH:ubiquinone oxidoreductase subunit B7 Novel N 0.0006746857815918219 -0.2569937255333237 1.0 14785 +15431 Hoxd11 homeobox D11 Novel U 0.000674023254016435 -0.2570005879721701 1.0 14786 +240665 Ccnj cyclin J Novel U 0.0006737889284329535 -0.2570030151088608 1.0 14787 +56375 B4galt4 UDP-Gal:betaGlcNAc beta 1,4-galactosyltransferase, polypeptide 4 Novel N 0.0006735288374802373 -0.257005709122399 1.0 14788 +73191 Fezf1 Fez family zinc finger 1 Novel N 0.000673145665615213 -0.25700967800398083 1.0 14789 +241196 Serpinb13 serine (or cysteine) peptidase inhibitor, clade B (ovalbumin), member 13 Novel N 0.0006731044754831127 -0.2570101046500151 1.0 14790 +68936 Smim11 small integral membrane protein 11 Novel U 0.0006727252935545231 -0.25701403220396646 1.0 14791 +20517 Slc22a1 solute carrier family 22 (organic cation transporter), member 1 Novel U 0.0006724418803240743 -0.25701696778889077 1.0 14792 +230235 Frrs1l ferric-chelate reductase 1 like Novel U 0.0006721872421263952 -0.2570196053229715 1.0 14793 +59031 Chst12 carbohydrate sulfotransferase 12 Novel N 0.0006720659582450177 -0.2570208615774279 1.0 14794 +68523 Ciao2b cytosolic iron-sulfur assembly component 2B Novel U 0.000672023346630622 -0.257021302947129 1.0 14795 +76497 Ppp1r11 protein phosphatase 1, regulatory inhibitor subunit 11 Novel U 0.0006718811096112172 -0.25702277623350017 1.0 14796 +11690 Alox5ap arachidonate 5-lipoxygenase activating protein Novel U 0.0006718062984736346 -0.25702355112480396 1.0 14797 +78894 Aacs acetoacetyl-CoA synthetase Novel N 0.0006717188933291455 -0.25702445646441735 1.0 14798 +63959 Slc29a1 solute carrier family 29 (nucleoside transporters), member 1 Novel N 0.000671714484118767 -0.2570245021348735 1.0 14799 +319181 H2bc8 H2B clustered histone 8 Novel U 0.0006714541868501648 -0.25702719828542486 1.0 14800 +72635 Lins1 lines homolog 1 Novel N 0.000671409443639306 -0.25702766173413205 1.0 14801 +20739 Spta1 spectrin alpha, erythrocytic 1 Novel U 0.000671366379825819 -0.2570281077876965 1.0 14802 +619605 Zcchc17 zinc finger, CCHC domain containing 17 Novel U 0.0006710497471647507 -0.25703138745839116 1.0 14803 +217588 Mbip MAP3K12 binding inhibitory protein 1 Novel U 0.000670818921096173 -0.25703377834722146 1.0 14804 +69833 Polr2f polymerase (RNA) II (DNA directed) polypeptide F Novel N 0.0006703456925871165 -0.25703868003256175 1.0 14805 +70024 Mcm10 minichromosome maintenance 10 replication initiation factor Novel U 0.0006703197104865554 -0.25703894915430525 1.0 14806 +18716 Pip prolactin induced protein Novel U 0.0006696671297158687 -0.25704570856447556 1.0 14807 +72135 Pygo1 pygopus 1 Novel U 0.0006695573567144629 -0.25704684558961555 1.0 14808 +24074 Taf7 TATA-box binding protein associated factor 7 Novel U 0.0006694585715248335 -0.25704786880336233 1.0 14809 +268281 Shprh SNF2 histone linker PHD RING helicase Novel U 0.0006693778913246202 -0.2570487044862239 1.0 14810 +319634 Efcab5 EF-hand calcium binding domain 5 Novel U 0.0006691015989303523 -0.25705156631376114 1.0 14811 +77065 Ints7 integrator complex subunit 7 Novel U 0.0006688821066044209 -0.2570538398080577 1.0 14812 +328108 Togaram1 TOG array regulator of axonemal microtubules 1 Novel U 0.0006686420320988984 -0.25705632649189386 1.0 14813 +26570 Slc7a11 solute carrier family 7 (cationic amino acid transporter, y+ system), member 11 Novel N 0.0006685854540615923 -0.25705691252534435 1.0 14814 +67683 Pbdc1 polysaccharide biosynthesis domain containing 1 Novel U 0.0006683602717615114 -0.25705924495620613 1.0 14815 +71756 Cpn2 carboxypeptidase N, polypeptide 2 Novel U 0.0006682788585735926 -0.2570600882313303 1.0 14816 +18555 Cdk16 cyclin dependent kinase 16 Novel U 0.0006680129323368549 -0.25706284268654855 1.0 14817 +66646 Rpe ribulose-5-phosphate-3-epimerase Novel U 0.0006679790099569608 -0.25706319405344435 1.0 14818 +22326 Vax1 ventral anterior homeobox 1 Novel N 0.0006679009990550716 -0.25706400208780167 1.0 14819 +26437 Psg17 pregnancy specific beta-1-glycoprotein 17 Novel U 0.0006677027543372873 -0.25706605550007156 1.0 14820 +140484 Pofut1 protein O-fucosyltransferase 1 Novel U 0.0006676592086341335 -0.25706650654503327 1.0 14821 +110962 Mbd6 methyl-CpG binding domain protein 6 Novel U 0.0006674454505280973 -0.25706872064446873 1.0 14822 +23958 Nr2e3 nuclear receptor subfamily 2, group E, member 3 Novel N 0.0006673128184879194 -0.25707009444278084 1.0 14823 +382221 Pasd1 PAS domain containing repressor 1 Novel U 0.0006670298737944867 -0.2570730251746141 1.0 14824 +13353 Dgcr6 DiGeorge syndrome critical region gene 6 Novel U 0.000666977129631665 -0.25707357149691873 1.0 14825 +69640 Fam83g family with sequence similarity 83, member G Novel U 0.000666556808088544 -0.2570779251736451 1.0 14826 +15426 Hoxc8 homeobox C8 Novel U 0.0006665275044429667 -0.25707822869984265 1.0 14827 +229937 Znhit6 zinc finger, HIT type 6 Novel U 0.0006664068256193902 -0.25707947868713016 1.0 14828 +21755 Prss39 serine protease 39 Novel U 0.0006663698572333696 -0.2570798616044573 1.0 14829 +56278 Gkap1 G kinase anchoring protein 1 Novel U 0.0006661416546991991 -0.2570822253188045 1.0 14830 +56459 Sae1 SUMO1 activating enzyme subunit 1 Novel N 0.0006660047015758664 -0.25708364387475385 1.0 14831 +277343 Wfdc8 WAP four-disulfide core domain 8 Novel U 0.0006658081301277981 -0.25708567995535103 1.0 14832 +103284 Zc3h10 zinc finger CCCH type containing 10 Novel N 0.0006655342735867766 -0.25708851655240034 1.0 14833 +94180 Acsbg1 acyl-CoA synthetase bubblegum family member 1 Novel N 0.0006650802397405168 -0.25709321942005436 1.0 14834 +18028 Nfib nuclear factor I/B Novel N 0.0006649927975256595 -0.2570941251436413 1.0 14835 +16876 Lhx9 LIM homeobox protein 9 Novel U 0.0006648602036024056 -0.25709549854713964 1.0 14836 +241327 Olfml2a olfactomedin-like 2A Novel U 0.000664672332052628 -0.2570974445144763 1.0 14837 +231252 Chrna9 cholinergic receptor, nicotinic, alpha polypeptide 9 Novel N 0.0006645837425020544 -0.2570983621221289 1.0 14838 +12912 Creb1 cAMP responsive element binding protein 1 Novel U 0.000664239440893545 -0.2571019283868715 1.0 14839 +11890 Asgr2 asialoglycoprotein receptor 2 Novel N 0.0006639191062046399 -0.25710524640304877 1.0 14840 +171184 Vmn1r36 vomeronasal 1 receptor 36 Novel U 0.0006633816296081999 -0.2571108135679661 1.0 14841 +212919 Kctd7 potassium channel tetramerisation domain containing 7 Novel N 0.0006627511853057544 -0.2571173436893261 1.0 14842 +404238 Mrgprb3 MAS-related GPR, member B3 Novel U 0.0006626944900826135 -0.2571179309365836 1.0 14843 +387339 Tas2r102 taste receptor, type 2, member 102 Novel U 0.0006625641341986854 -0.25711928115854416 1.0 14844 +100503353 Zfp1009 zinc finger protein 1009 Novel U 0.0006624347652828831 -0.25712062115752127 1.0 14845 +52683 Ncaph2 non-SMC condensin II complex, subunit H2 Novel U 0.000662427275155208 -0.2571206987400175 1.0 14846 +269328 Muc15 mucin 15 Novel U 0.0006624170216508936 -0.25712080494547807 1.0 14847 +69053 Hapstr1 HUWE1 associated protein modifying stress responses Novel N 0.0006622058226433424 -0.25712299253785553 1.0 14848 +55938 Apom apolipoprotein M Novel U 0.0006621531487264078 -0.25712353813255556 1.0 14849 +53418 B4galt2 UDP-Gal:betaGlcNAc beta 1,4- galactosyltransferase, polypeptide 2 Novel U 0.0006620884133333973 -0.2571242086596283 1.0 14850 +18676 Phf2 PHD finger protein 2 Novel N 0.0006618186188033629 -0.25712700318250137 1.0 14851 +53415 Htatip2 HIV-1 Tat interactive protein 2 Novel U 0.0006615549180885087 -0.25712973458583716 1.0 14852 +319955 Ercc6 excision repair cross-complementing rodent repair deficiency, complementation group 6 Novel U 0.0006613453065758729 -0.25713190573499445 1.0 14853 +399675 Tdpoz4 TD and POZ domain containing 4 Novel U 0.0006608612080749915 -0.2571369200113527 1.0 14854 +72338 Wdr89 WD repeat domain 89 Novel U 0.0006608056090697794 -0.25713749590402096 1.0 14855 +57249 Gabrq gamma-aminobutyric acid type A receptor subunit theta Novel N 0.0006605866293626302 -0.25713976408862904 1.0 14856 +13167 Dbi diazepam binding inhibitor Novel U 0.0006598981537703892 -0.25714689529618107 1.0 14857 +20463 Cox7a2l cytochrome c oxidase subunit 7A2 like Novel U 0.0006598411491970486 -0.25714748574767776 1.0 14858 +66870 Serbp1 serpine1 mRNA binding protein 1 Novel U 0.0006597791209535983 -0.25714812823418437 1.0 14859 +18816 Serpinf2 serine (or cysteine) peptidase inhibitor, clade F, member 2 Novel U 0.0006594304100978383 -0.2571517401697651 1.0 14860 +73693 Dppa4 developmental pluripotency associated 4 Novel U 0.0006594147468532292 -0.2571519024091378 1.0 14861 +13214 Defb1 defensin beta 1 Novel U 0.0006591986562985248 -0.25715414066799985 1.0 14862 +271639 Adcy10 adenylate cyclase 10 Novel N 0.000659115733582946 -0.2571549995787619 1.0 14863 +69662 2310061I04Rik RIKEN cDNA 2310061I04 gene Novel U 0.0006590125019147457 -0.25715606884898756 1.0 14864 +227357 Espnl espin-like Novel U 0.0006590063303536032 -0.257156132773815 1.0 14865 +13865 Nr2f1 nuclear receptor subfamily 2, group F, member 1 Novel U 0.0006590034701622388 -0.25715616239958317 1.0 14866 +214627 Tent4b terminal nucleotidyltransferase 4B Novel U 0.0006588349407295554 -0.25715790802190674 1.0 14867 +70237 Bhlhb9 basic helix-loop-helix domain containing, class B9 Novel U 0.0006587721795313447 -0.25715855810033467 1.0 14868 +228730 Kiz kizuna centrosomal protein Novel N 0.0006587205397110612 -0.25715909298389555 1.0 14869 +56373 Cpb2 carboxypeptidase B2 Novel U 0.0006585249109957699 -0.25716111929969765 1.0 14870 +237553 Trhde TRH-degrading enzyme Novel N 0.0006585014264946668 -0.25716136255138805 1.0 14871 +14806 Grik2 glutamate receptor, ionotropic, kainate 2 (beta 2) Novel U 0.0006584424052517268 -0.2571619738914822 1.0 14872 +69117 Adh6a alcohol dehydrogenase 6A (class V) Novel U 0.000658348760705442 -0.2571629438586142 1.0 14873 +623230 Tmem200b transmembrane protein 200B Novel U 0.0006583102207117145 -0.2571633430546023 1.0 14874 +110750 Cse1l chromosome segregation 1 like Novel U 0.0006583004123067369 -0.2571634446497386 1.0 14875 +56070 Tcerg1 transcription elongation regulator 1 (CA150) Novel N 0.000658198904883348 -0.25716449606029324 1.0 14876 +22276 Uros uroporphyrinogen III synthase Novel U 0.0006580920374251666 -0.257165602989912 1.0 14877 +13078 Cyp1b1 cytochrome P450, family 1, subfamily b, polypeptide 1 Novel U 0.0006574550324782144 -0.2571722010662121 1.0 14878 +54195 Gucy1b1 guanylate cyclase 1, soluble, beta 1 Novel N 0.0006572550084459959 -0.2571742729085624 1.0 14879 +19085 Prkar1b protein kinase, cAMP dependent regulatory, type I beta Novel U 0.0006570563433378742 -0.25717633067522155 1.0 14880 +545391 Catspere2 cation channel sperm associated auxiliary subunit epsilon 2 Novel U 0.0006570111187334016 -0.257176799110188 1.0 14881 +208748 Prrg3 proline rich Gla (G-carboxyglutamic acid) 3 (transmembrane) Novel U 0.0006568867866356311 -0.2571780869379695 1.0 14882 +105014 Rdh14 retinol dehydrogenase 14 (all-trans and 9-cis) Novel U 0.0006567875076588891 -0.25717911526634696 1.0 14883 +15135 Hbb-y hemoglobin Y, beta-like embryonic chain Novel N 0.000656695219263541 -0.2571800711865122 1.0 14884 +140917 Dclre1b DNA cross-link repair 1B Novel U 0.0006566683375588302 -0.25718034962632585 1.0 14885 +100040781 Btbd35f6 BTB domain containing 35, family member 6 Novel U 0.0006563214683215884 -0.2571839424864825 1.0 14886 +66362 Exosc3 exosome component 3 Novel N 0.0006558123820791738 -0.25718921558504615 1.0 14887 +70118 Srrd SRR1 domain containing Novel U 0.0006557284999212115 -0.25719008443368085 1.0 14888 +100042405 Hmgn2-ps high mobility group nucleosomal binding domain 2, pseudogene Novel U 0.0006554432781483795 -0.2571930387514277 1.0 14889 +69700 Col22a1 collagen, type XXII, alpha 1 Novel U 0.000654941693599577 -0.2571982341476955 1.0 14890 +27220 Cartpt CART prepropeptide Novel U 0.0006547638578420709 -0.2572000761646257 1.0 14891 +56522 Papolb poly (A) polymerase beta (testis specific) Novel U 0.0006546832283876174 -0.25720091132186435 1.0 14892 +245468 Pnma3 paraneoplastic antigen MA3 Novel U 0.0006545672945255313 -0.25720211216099675 1.0 14893 +64059 Oxct2a 3-oxoacid CoA transferase 2A Novel U 0.0006544925026037583 -0.2572028868532638 1.0 14894 +76501 Commd9 COMM domain containing 9 Novel U 0.0006544687634405129 -0.2572031327427363 1.0 14895 +71911 Bdh1 3-hydroxybutyrate dehydrogenase, type 1 Novel U 0.0006542708956976561 -0.25720518225031225 1.0 14896 +68927 Ptcd2 pentatricopeptide repeat domain 2 Novel U 0.0006541915403953222 -0.2572060042099252 1.0 14897 +72789 Veph1 ventricular zone expressed PH domain-containing 1 Novel U 0.0006541400526127587 -0.2572065375186844 1.0 14898 +268970 Arhgap28 Rho GTPase activating protein 28 Novel U 0.0006540199610537891 -0.2572077814231044 1.0 14899 +67139 Mis12 MIS12 kinetochore complex component Novel U 0.0006539479286559493 -0.2572085275323133 1.0 14900 +238692 Zfp874a zinc finger protein 874a Novel U 0.0006538653569782868 -0.25720938280703615 1.0 14901 +13559 E2f5 E2F transcription factor 5 Novel U 0.0006538266857874418 -0.25720978336195965 1.0 14902 +242253 Dnai3 dynein axonemal intermediate chain 3 Novel U 0.0006536105081977574 -0.25721202252232717 1.0 14903 +353282 Sfmbt2 Scm-like with four mbt domains 2 Novel N 0.000653606118421449 -0.2572120679914858 1.0 14904 +27428 Shroom3 shroom family member 3 Novel U 0.0006535015742502145 -0.2572131508565748 1.0 14905 +64657 Mrps10 mitochondrial ribosomal protein S10 Novel U 0.0006534799086343812 -0.2572133752683114 1.0 14906 +66261 Tm4sf20 transmembrane 4 L six family member 20 Novel N 0.0006531923556006492 -0.25721635373318197 1.0 14907 +14236 Foxn2 forkhead box N2 Novel U 0.0006529520155336014 -0.2572188431676957 1.0 14908 +241525 Ypel4 yippee like 4 Novel U 0.0006529147329947069 -0.257219229339008 1.0 14909 +433107 Esp6 exocrine gland secreted peptide 6 Novel U 0.0006526559059701891 -0.2572219102608194 1.0 14910 +11496 Adam22 a disintegrin and metallopeptidase domain 22 Novel N 0.0006525987099747277 -0.2572225026950602 1.0 14911 +209584 Tyw3 tRNA-yW synthesizing protein 3 homolog (S. cerevisiae) Novel U 0.0006524192598227845 -0.2572243614338349 1.0 14912 +330721 Nek5 NIMA (never in mitosis gene a)-related expressed kinase 5 Novel U 0.0006523223603348109 -0.25722536511554595 1.0 14913 +14934 Gypa glycophorin A Novel U 0.0006521809708106766 -0.257226829623589 1.0 14914 +29817 Igfbp7 insulin-like growth factor binding protein 7 Novel N 0.0006521591642945855 -0.2572270554947659 1.0 14915 +224823 Rrp36 ribosomal RNA processing 36 Novel N 0.0006517395117927924 -0.2572314022415841 1.0 14916 +71448 Tmem80 transmembrane protein 80 Novel U 0.0006516480770286374 -0.25723234931986544 1.0 14917 +106581 Fam234a family with sequence similarity 234, member A Novel U 0.0006507542079825297 -0.25724160798606066 1.0 14918 +319888 Oacyl O-acyltransferase like Novel U 0.0006502812050639538 -0.25724650733474214 1.0 14919 +115489946 Gm30191 predicted gene, 30191 Novel U 0.0006501328058123578 -0.2572480444493118 1.0 14920 +268345 Kcnc2 potassium voltage gated channel, Shaw-related subfamily, member 2 Novel U 0.0006498130662404152 -0.25725135630128715 1.0 14921 +399566 Btbd6 BTB domain containing 6 Novel U 0.0006497847402800742 -0.2572516497006532 1.0 14922 +68918 1190005I06Rik RIKEN cDNA 1190005I06 gene Novel U 0.0006496456655843035 -0.2572530902317801 1.0 14923 +12144 Blm Bloom syndrome, RecQ like helicase Novel U 0.0006496337620583424 -0.2572532135281107 1.0 14924 +17155 Man1a mannosidase 1, alpha Novel U 0.0006495188469056667 -0.25725440381548453 1.0 14925 +666584 BC024063 cDNA sequence BC024063 Novel U 0.0006494325267379789 -0.2572552979169438 1.0 14926 +279185 Pramel21 PRAME like 21 Novel U 0.0006493722414710257 -0.25725592234975714 1.0 14927 +74343 Crtc2 CREB regulated transcription coactivator 2 Novel U 0.0006492377481424102 -0.2572573154272337 1.0 14928 +235043 Tmem205 transmembrane protein 205 Novel U 0.0006492181488992876 -0.25725751843554967 1.0 14929 +272347 Zfp398 zinc finger protein 398 Novel U 0.0006489785844231597 -0.25725999983651815 1.0 14930 +12291 Cacna1g calcium channel, voltage-dependent, T type, alpha 1G subunit Novel U 0.0006488427163336293 -0.2572614071537231 1.0 14931 +140858 Wdr5 WD repeat domain 5 Novel U 0.0006488390574439654 -0.25726144505238197 1.0 14932 +217214 Nags N-acetylglutamate synthase Novel N 0.0006486197513803294 -0.2572637166173798 1.0 14933 +208820 Triqk triple QxxK/R motif containing Novel U 0.0006485446514843637 -0.2572644944996334 1.0 14934 +621852 Rhox3f reproductive homeobox 3F Novel U 0.00064831846245989 -0.25726683735811334 1.0 14935 +28019 Ing4 inhibitor of growth family, member 4 Novel U 0.0006481541285021675 -0.25726853952384526 1.0 14936 +140723 Cacng5 calcium channel, voltage-dependent, gamma subunit 5 Novel U 0.0006480900923218298 -0.2572692028084961 1.0 14937 +16969 Zbtb7a zinc finger and BTB domain containing 7a Novel U 0.0006476752700710942 -0.2572734995237327 1.0 14938 +67564 Tmem35a transmembrane protein 35A Novel U 0.0006476671732952059 -0.25727358338987116 1.0 14939 +66464 Taf12 TATA-box binding protein associated factor 12 Novel N 0.0006476207517858952 -0.25727406422233856 1.0 14940 +106763 Ttbk1 tau tubulin kinase 1 Novel U 0.0006474538955914765 -0.2572757925133153 1.0 14941 +68027 Tmem178 transmembrane protein 178 Novel U 0.0006473248665799772 -0.2572771289915748 1.0 14942 +225004 Pcare photoreceptor cilium actin regulator Novel N 0.0006471513983492002 -0.2572789257698067 1.0 14943 +56519 Defb4 defensin beta 4 Novel U 0.0006467418718954811 -0.25728316763135184 1.0 14944 +231713 Naa25 N(alpha)-acetyltransferase 25, NatB auxiliary subunit Novel U 0.0006465717863200786 -0.25728492937215064 1.0 14945 +635396 Cldn34a claudin 34A Novel U 0.0006461765542816239 -0.25728902317261243 1.0 14946 +11615 Ahcyl adenosylhomocysteinase like Novel U 0.0006460257639096329 -0.2572905850543285 1.0 14947 +70021 Nt5dc2 5'-nucleotidase domain containing 2 Novel U 0.0006459477364890385 -0.257291393259786 1.0 14948 +78914 Nadsyn1 NAD synthetase 1 Novel N 0.0006455498855647786 -0.25729551418658086 1.0 14949 +70713 Gpr137c G protein-coupled receptor 137C Novel U 0.0006455411407165997 -0.2572956047654308 1.0 14950 +100042782 Fthl17d ferritin, heavy polypeptide-like 17, member D Novel U 0.0006454577487256326 -0.2572964685369319 1.0 14951 +214704 Iqub IQ motif and ubiquitin domain containing Novel N 0.0006454473330448199 -0.2572965764222113 1.0 14952 +216156 Wdr18 WD repeat domain 18 Novel U 0.0006453414764415107 -0.2572976728814286 1.0 14953 +66113 Apoa5 apolipoprotein A-V Novel U 0.0006451809467153102 -0.25729933564305546 1.0 14954 +12865 Cox7a1 cytochrome c oxidase subunit 7A1 Novel N 0.0006442214975576043 -0.2573092735858908 1.0 14955 +56428 Mtch2 mitochondrial carrier 2 Novel U 0.0006439476849042974 -0.2573121097283526 1.0 14956 +18399 Slc22a6 solute carrier family 22 (organic anion transporter), member 6 Novel N 0.0006438405302990604 -0.25731321963223114 1.0 14957 +224224 Impg2 interphotoreceptor matrix proteoglycan 2 Novel N 0.0006437292388131237 -0.257314372385784 1.0 14958 +236900 Pdk3 pyruvate dehydrogenase kinase, isoenzyme 3 Novel U 0.0006437129826466493 -0.2573145407666219 1.0 14959 +66338 Cdrt4 CMT1A duplicated region transcript 4 Novel U 0.0006434335920974004 -0.25731743468474655 1.0 14960 +22666 Zbtb14 zinc finger and BTB domain containing 14 Novel N 0.0006431226379103772 -0.25732065553799366 1.0 14961 +66276 1810009A15Rik RIKEN cDNA 1810009A15 gene Novel U 0.0006430331127332547 -0.2573215828368353 1.0 14962 +171268 Vmn1r82 vomeronasal 1 receptor 82 Novel U 0.0006429609298750302 -0.2573223305045079 1.0 14963 +72144 Slc37a3 solute carrier family 37 (glycerol-3-phosphate transporter), member 3 Novel U 0.000642656060656161 -0.2573254883298549 1.0 14964 +212326 Fam149a family with sequence similarity 149, member A Novel U 0.0006425699665957306 -0.2573263800893027 1.0 14965 +384605 Wdr88 WD repeat domain 88 Novel U 0.0006425258301136817 -0.25732683725353284 1.0 14966 +69389 H2bw2 H2B.W histone 2 Novel U 0.0006425105109567982 -0.2573269959288563 1.0 14967 +17299 Mettl1 methyltransferase 1, tRNA methylguanosine Novel N 0.0006423136391287049 -0.25732903512077987 1.0 14968 +67933 Hcfc2 host cell factor C2 Novel U 0.0006422829526401315 -0.2573293529704197 1.0 14969 +620537 Vmn1r94 vomeronasal 1 receptor 94 Novel U 0.0006422694917537082 -0.2573294923978388 1.0 14970 +17138 Magea2 MAGE family member A2 Novel U 0.0006421876470083977 -0.2573303401430202 1.0 14971 +57274 Slc16a8 solute carrier family 16 (monocarboxylic acid transporters), member 8 Novel N 0.0006419312024203149 -0.2573329963876334 1.0 14972 +12992 Csn1s2b casein alpha s2-like B Novel U 0.0006417970224517787 -0.2573343862193366 1.0 14973 +381979 Brsk1 BR serine/threonine kinase 1 Novel U 0.0006416270655096956 -0.2573361466277556 1.0 14974 +66953 Cdca7 cell division cycle associated 7 Novel U 0.0006415371168435822 -0.25733707831308233 1.0 14975 +319370 Ubald2 UBA-like domain containing 2 Novel U 0.0006412886497882382 -0.2573396519266737 1.0 14976 +75552 Paqr9 progestin and adipoQ receptor family member IX Novel U 0.0006412797927246416 -0.2573397436678473 1.0 14977 +66385 Ppp1r7 protein phosphatase 1, regulatory subunit 7 Novel U 0.0006412164403074651 -0.25734039987010177 1.0 14978 +73078 Pmpcb peptidase (mitochondrial processing) beta Novel U 0.0006408224854125179 -0.25734448044195307 1.0 14979 +16543 Mdfic MyoD family inhibitor domain containing Novel U 0.0006407406408382091 -0.25734532818536326 1.0 14980 +11522 Adh1 alcohol dehydrogenase 1 (class I) Novel U 0.0006402106454966827 -0.2573508178596881 1.0 14981 +245578 Pcdh11x protocadherin 11 X-linked Novel U 0.0006398949653517584 -0.25735408766425183 1.0 14982 +11994 Pcdh15 protocadherin 15 Novel U 0.000639806124883465 -0.25735500787090193 1.0 14983 +52392 Macir macrophage immunometabolism regulator Novel U 0.0006398041301606576 -0.25735502853217523 1.0 14984 +83456 Mov10l1 Mov10 like RISC complex RNA helicase 1 Novel N 0.0006397829002425674 -0.2573552484309689 1.0 14985 +100040698 Btbd35f15 BTB domain containing 35, family member 15 Novel U 0.0006395855579209225 -0.2573572924962492 1.0 14986 +94223 Dgcr8 DGCR8, microprocessor complex subunit Novel U 0.0006395791684323891 -0.2573573586783614 1.0 14987 +75706 Krt24 keratin 24 Novel U 0.000639508402841274 -0.25735809166602786 1.0 14988 +67729 Mansc1 MANSC domain containing 1 Novel U 0.0006394218835001172 -0.2573589878305194 1.0 14989 +54156 Egfl6 EGF-like-domain, multiple 6 Novel U 0.0006393028037658149 -0.25736022125449276 1.0 14990 +227631 Sohlh1 spermatogenesis and oogenesis specific basic helix-loop-helix 1 Novel U 0.0006392959656111977 -0.2573602920838735 1.0 14991 +319930 Ceacam19 CEA cell adhesion molecule 19 Novel U 0.0006391958846477814 -0.2573613287192026 1.0 14992 +100126774 Esp18 exocrine gland secreted peptide 18 Novel U 0.0006387801367840824 -0.2573656350219078 1.0 14993 +66060 Cystm1 cysteine-rich transmembrane module containing 1 Novel U 0.0006386925098652386 -0.2573665426586526 1.0 14994 +70207 Taco1 translational activator of mitochondrially encoded cytochrome c oxidase I Novel N 0.0006385613550613132 -0.2573679011558002 1.0 14995 +94280 Sfxn3 sideroflexin 3 Novel U 0.0006384435130406277 -0.2573691217595766 1.0 14996 +71767 Tysnd1 trypsin domain containing 1 Novel N 0.0006384097935441836 -0.2573694710250123 1.0 14997 +245572 Tbx22 T-box 22 Novel U 0.0006383098038234363 -0.2573705067152528 1.0 14998 +320150 Zdhhc17 zinc finger, DHHC domain containing 17 Novel U 0.0006380400664568201 -0.2573733006460291 1.0 14999 +238331 Zdhhc22 zinc finger, DHHC-type containing 22 Novel U 0.0006379666971409985 -0.2573740606029905 1.0 15000 +107566 Arl2bp ADP-ribosylation factor-like 2 binding protein Novel U 0.0006379215035985484 -0.2573745287162175 1.0 15001 +224656 Zfp523 zinc finger protein 523 Novel N 0.0006376023720592683 -0.2573778342702105 1.0 15002 +52009 Jpt2 Jupiter microtubule associated homolog 2 Novel U 0.0006374421494748861 -0.2573794938504725 1.0 15003 +70864 Fam47c family with sequence similarity 47, member C Novel U 0.0006372468799688824 -0.25738151644559654 1.0 15004 +74559 Elovl7 ELOVL fatty acid elongase 7 Novel N 0.0006372055888057316 -0.2573819441381071 1.0 15005 +100434 Slc44a1 solute carrier family 44, member 1 Novel U 0.00063707654519728 -0.25738328076756134 1.0 15006 +100043860 Scgb1b24 secretoglobin, family 1B, member 24 Novel U 0.0006365579359814506 -0.25738865250477055 1.0 15007 +16498 Kcnab2 potassium voltage-gated channel, shaker-related subfamily, beta member 2 Novel U 0.0006364133359506053 -0.2573901502671366 1.0 15008 +68039 Nmb neuromedin B Novel N 0.0006364001693631721 -0.2573902866462164 1.0 15009 +75013 Ct55 cancer/testis antigen 55 Novel U 0.0006363945313632421 -0.2573903450444343 1.0 15010 +229687 Chil5 chitinase-like 5 Novel U 0.0006362269633520114 -0.25739208070838615 1.0 15011 +77286 Nkrf NF-kappaB repressing factor Novel N 0.0006361160592304513 -0.25739322944963144 1.0 15012 +226830 Smyd2 SET and MYND domain containing 2 Novel N 0.0006358842185510274 -0.2573956308477676 1.0 15013 +72258 Kcnk10 potassium channel, subfamily K, member 10 Novel U 0.0006358759009727495 -0.25739571700096997 1.0 15014 +75416 Nop14 NOP14 nucleolar protein Novel U 0.0006357856807043617 -0.2573966514995441 1.0 15015 +224807 Tmem63b transmembrane protein 63b Novel U 0.0006356430699229517 -0.25739812865732986 1.0 15016 +21756 Prss40 serine protease 40 Novel U 0.0006355809432043567 -0.2573987721638388 1.0 15017 +17188 Maz MYC-associated zinc finger protein (purine-binding transcription factor) Novel U 0.0006353601331566799 -0.25740105930705387 1.0 15018 +66448 Mrpl20 mitochondrial ribosomal protein L20 Novel U 0.0006349945551514819 -0.25740484595201396 1.0 15019 +264895 Acsf2 acyl-CoA synthetase family member 2 Novel N 0.0006349711782211741 -0.25740508808948964 1.0 15020 +668880 Stard9 StAR related lipid transfer domain containing 9 Novel U 0.0006348718061702439 -0.2574061173819265 1.0 15021 +268297 Scml4 Scm polycomb group protein like 4 Novel U 0.0006348169372423847 -0.25740668571247755 1.0 15022 +54218 B3galt4 UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 4 Novel N 0.000634732813079231 -0.25740755706779406 1.0 15023 +66684 Tceal8 transcription elongation factor A (SII)-like 8 Novel U 0.0006346595581376447 -0.25740831584007084 1.0 15024 +76633 Lrmda leucine rich melanocyte differentiation associated Novel N 0.000634528349341379 -0.2574096748964694 1.0 15025 +331188 Zfp781b zinc finger protein 781B Novel U 0.0006343150009268061 -0.257411884752334 1.0 15026 +236574 Smok2b sperm motility kinase 2B Novel U 0.0006342899670064886 -0.2574121440528577 1.0 15027 +629303 Heatr9 HEAT repeat containing 9 Novel U 0.0006339898723560946 -0.2574152524233814 1.0 15028 +229211 Acad9 acyl-Coenzyme A dehydrogenase family, member 9 Novel U 0.0006338838110591436 -0.2574163510028087 1.0 15029 +384724 Cyp2t4 cytochrome P450, family 2, subfamily t, polypeptide 4 Novel U 0.0006334970724103802 -0.2574203568290192 1.0 15030 +100043688 Amy2a2 amylase 2a2 Novel U 0.0006333863280303635 -0.2574215039156669 1.0 15031 +22154 Tubb5 tubulin, beta 5 class I Novel U 0.0006333791751462224 -0.2574215780050057 1.0 15032 +20675 Sox3 SRY (sex determining region Y)-box 3 Novel U 0.0006333216264027474 -0.2574221740929988 1.0 15033 +57329 Otor otoraplin Novel N 0.0006331046580918524 -0.25742442144363065 1.0 15034 +237400 Mex3d mex3 RNA binding family member D Novel U 0.000632937027445755 -0.25742615775635236 1.0 15035 +641368 Spint5 serine protease inhibitor, Kunitz type 5 Novel U 0.0006326007733309763 -0.25742964066541946 1.0 15036 +224044 Cyp2ab1 cytochrome P450, family 2, subfamily ab, polypeptide 1 Novel U 0.0006325405478930426 -0.2574302644785258 1.0 15037 +239122 Setdb2 SET domain, bifurcated 2 Novel U 0.0006324686211212542 -0.2574310094936635 1.0 15038 +170459 Stard4 StAR related lipid transfer domain containing 4 Novel U 0.0006320449678685076 -0.2574353976801286 1.0 15039 +56190 Rbm38 RNA binding motif protein 38 Novel N 0.0006320386016548542 -0.2574354636211603 1.0 15040 +171197 Vmn1r23 vomeronasal 1 receptor 23 Novel U 0.0006319411191232345 -0.25743647334201825 1.0 15041 +241118 Asic4 acid-sensing ion channel family member 4 Novel U 0.0006319242231512953 -0.2574366483499402 1.0 15042 +12416 Cbx2 chromobox 2 Novel N 0.0006319094215907513 -0.2574368016640177 1.0 15043 +20667 Sox12 SRY (sex determining region Y)-box 12 Novel U 0.0006318535299600518 -0.25743738058769117 1.0 15044 +21427 Vps72 vacuolar protein sorting 72 Novel N 0.0006316774183007948 -0.2574392047464684 1.0 15045 +66171 Pgls 6-phosphogluconolactonase Novel N 0.0006314455452319634 -0.25744160648009295 1.0 15046 +56223 Fscn3 fascin actin-bundling protein 3 Novel U 0.0006313959452551844 -0.25744212023502194 1.0 15047 +217217 Asb16 ankyrin repeat and SOCS box-containing 16 Novel U 0.0006312548276401822 -0.2574435819266391 1.0 15048 +67876 Coq10b coenzyme Q10B Novel U 0.0006312189928917711 -0.25744395310178514 1.0 15049 +224318 Speer2 spermatogenesis associated glutamate (E)-rich protein 2 Novel U 0.0006311301667073662 -0.2574448731604832 1.0 15050 +100862067 Btbd35f29 BTB domain containing 35, family member 29 Novel U 0.0006310759889851296 -0.25744543433154915 1.0 15051 +75338 Ccdc83 coiled-coil domain containing 83 Novel U 0.0006306366729950882 -0.25744998475213227 1.0 15052 +230696 AU022252 expressed sequence AU022252 Novel U 0.0006306210315148995 -0.25745014676606987 1.0 15053 +73251 Setd7 SET domain containing (lysine methyltransferase) 7 Novel N 0.0006305982434550906 -0.25745038280404425 1.0 15054 +106073 Mfsd5 major facilitator superfamily domain containing 5 Novel U 0.0006303580097045077 -0.2574528711373355 1.0 15055 +171270 Vmn1r203 vomeronasal 1 receptor 203 Novel U 0.0006301163422568661 -0.25745537432081383 1.0 15056 +57357 Srd5a3 steroid 5 alpha-reductase 3 Novel U 0.0006300205805768001 -0.25745636621714796 1.0 15057 +433904 Ociad2 OCIA domain containing 2 Novel U 0.0006300033041038641 -0.2574565451662867 1.0 15058 +238205 Lrfn5 leucine rich repeat and fibronectin type III domain containing 5 Novel U 0.000629845428212396 -0.25745818043958063 1.0 15059 +30925 Slamf6 SLAM family member 6 Novel U 0.0006297132369075093 -0.25745954967277107 1.0 15060 +26987 Eif4e2 eukaryotic translation initiation factor 4E member 2 Novel U 0.0006296977692890818 -0.25745970988585426 1.0 15061 +15375 Foxa1 forkhead box A1 Novel U 0.0006294599513276312 -0.2574621731964811 1.0 15062 +19982 Rpl36a ribosomal protein L36A Novel U 0.0006293531253621383 -0.25746327969632 1.0 15063 +238330 Irf2bpl interferon regulatory factor 2 binding protein-like Novel N 0.0006292284562813544 -0.2574645710145605 1.0 15064 +668158 Ccdc85c coiled-coil domain containing 85C Novel U 0.0006291253955282921 -0.25746563851445275 1.0 15065 +545474 Scrt2 scratch family zinc finger 2 Novel U 0.0006291054369567052 -0.25746584524468114 1.0 15066 +225742 St8sia5 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 5 Novel N 0.0006290434991288571 -0.25746648679466594 1.0 15067 +54216 Pcdh7 protocadherin 7 Novel U 0.0006289930402646267 -0.2574670094459229 1.0 15068 +333564 Fndc3c1 fibronectin type III domain containing 3C1 Novel U 0.0006285163625269104 -0.2574719468582602 1.0 15069 +72611 Zfp655 zinc finger protein 655 Novel N 0.0006284314109824461 -0.25747282678356515 1.0 15070 +11538 Adnp activity-dependent neuroprotective protein Novel U 0.0006281368020397322 -0.25747587833330904 1.0 15071 +228094 Cerkl ceramide kinase-like Novel N 0.0006278292167153846 -0.25747906429198725 1.0 15072 +13207 Ddx5 DEAD box helicase 5 Novel U 0.0006275259364755555 -0.2574822056587416 1.0 15073 +103737 Pex12 peroxisomal biogenesis factor 12 Novel U 0.0006271940801713954 -0.2574856430154309 1.0 15074 +12070 Bex3 brain expressed X-linked 3 Novel U 0.0006271541682076797 -0.2574860564222391 1.0 15075 +52184 Odf2l outer dense fiber of sperm tails 2-like Novel U 0.0006269025556113955 -0.25748866261724007 1.0 15076 +67242 Gemin6 gem nuclear organelle associated protein 6 Novel N 0.0006267953298096814 -0.2574897732585693 1.0 15077 +66407 Mrps15 mitochondrial ribosomal protein S15 Novel U 0.0006267169670658664 -0.2574905849372937 1.0 15078 +70419 2810408A11Rik RIKEN cDNA 2810408A11 gene Novel U 0.0006266482056333849 -0.257491297165951 1.0 15079 +69568 Vkorc1l1 vitamin K epoxide reductase complex, subunit 1-like 1 Novel N 0.000626482132604001 -0.25749301734492996 1.0 15080 +22678 Zfp2 zinc finger protein 2 Novel U 0.0006264362981753881 -0.25749349209643485 1.0 15081 +20529 Slc31a1 solute carrier family 31, member 1 Novel U 0.0006262203974969004 -0.25749572838856527 1.0 15082 +14583 Gfpt1 glutamine fructose-6-phosphate transaminase 1 Novel U 0.0006255084641860061 -0.25750310257039594 1.0 15083 +73121 Rflna refilin A Novel U 0.0006254955108411565 -0.25750323674071607 1.0 15084 +109129 Mmadhc methylmalonic aciduria (cobalamin deficiency) cblD type, with homocystinuria Novel N 0.0006253910744321548 -0.25750431848960736 1.0 15085 +328274 Zfp459 zinc finger protein 459 Novel U 0.0006252032029552724 -0.25750626445618896 1.0 15086 +68058 Chd1l chromodomain helicase DNA binding protein 1-like Novel N 0.0006250445127825963 -0.2575079081637809 1.0 15087 +433502 Wfdc6b WAP four-disulfide core domain 6B Novel U 0.000624823586016837 -0.2575101965159581 1.0 15088 +380850 Gm5141 predicted gene 5141 Novel U 0.0006246985626677993 -0.25751149150369745 1.0 15089 +234384 Mpv17l2 MPV17 mitochondrial membrane protein-like 2 Novel N 0.0006245586938891397 -0.25751294025990884 1.0 15090 +69454 Clic3 chloride intracellular channel 3 Novel N 0.0006244149038990978 -0.2575144296318989 1.0 15091 +69885 Aunip aurora kinase A and ninein interacting protein Novel N 0.0006241475268203139 -0.25751719911489135 1.0 15092 +66847 Hint3 histidine triad nucleotide binding protein 3 Novel U 0.000624093576063004 -0.25751775793506204 1.0 15093 +233812 Mosmo modulator of smoothened Novel U 0.0006239875691386057 -0.2575188559513002 1.0 15094 +100019 Mdn1 midasin AAA ATPase 1 Novel N 0.0006234049477372301 -0.257524890724623 1.0 15095 +11566 Adss2 adenylosuccinate synthase 2 Novel N 0.0006233022236813565 -0.25752595473701684 1.0 15096 +67111 Naaa N-acylethanolamine acid amidase Novel U 0.0006232225663950407 -0.2575267798245699 1.0 15097 +20997 T brachyury, T-box transcription factor T Novel U 0.0006230136850976526 -0.2575289434101817 1.0 15098 +629141 Misfa mitochondrial sheath formation associated Novel U 0.0006229432955479621 -0.25752967250282344 1.0 15099 +23993 Klk7 kallikrein related-peptidase 7 (chymotryptic, stratum corneum) Novel U 0.0006222638848978334 -0.257536709816003 1.0 15100 +382639 Zbtb42 zinc finger and BTB domain containing 42 Novel U 0.0006222366072486553 -0.2575369923569965 1.0 15101 +238076 Kcns3 potassium voltage-gated channel, delayed-rectifier, subfamily S, member 3 Novel N 0.0006214504476477477 -0.2575451353722991 1.0 15102 +12408 Cbr1 carbonyl reductase 1 Novel U 0.0006212883734079593 -0.25754681413194697 1.0 15103 +108043 Chrnb3 cholinergic receptor, nicotinic, beta polypeptide 3 Novel N 0.0006212804059267478 -0.2575468966588554 1.0 15104 +652925 Tmem243 transmembrane protein 243, mitochondrial Novel U 0.0006210300613210661 -0.2575494897200514 1.0 15105 +239096 Cdh24 cadherin-like 24 Novel N 0.0006210155060866509 -0.257549640482691 1.0 15106 +15078 H3f3a H3.3 histone A Novel U 0.0006210128618551873 -0.2575496678715536 1.0 15107 +74080 Nmnat3 nicotinamide nucleotide adenylyltransferase 3 Novel N 0.0006209522075426048 -0.2575502961269294 1.0 15108 +433779 Pramel31 PRAME like 31 Novel U 0.0006205324117174476 -0.25755464435828634 1.0 15109 +77771 Csrnp3 cysteine-serine-rich nuclear protein 3 Novel U 0.0006201357861847722 -0.2575587525925155 1.0 15110 +13732 Emp3 epithelial membrane protein 3 Novel N 0.0006201091251013119 -0.2575590287471415 1.0 15111 +15445 Hpd 4-hydroxyphenylpyruvic acid dioxygenase Novel N 0.0006199962489995217 -0.25756019791409324 1.0 15112 +54367 Zfp326 zinc finger protein 326 Novel N 0.0006199081229077592 -0.2575611107212547 1.0 15113 +434768 Rhox8 reproductive homeobox 8 Novel U 0.0006198135040023461 -0.2575620907807666 1.0 15114 +13871 Ercc2 excision repair cross-complementing rodent repair deficiency, complementation group 2 Novel U 0.0006195268141045644 -0.25756506030530335 1.0 15115 +100294660 Defa2 defensin, alpha, 2 Novel U 0.0006191666766296532 -0.25756879059742965 1.0 15116 +78611 Btbd19 BTB domain containing 19 Novel U 0.0006187979529490244 -0.2575726098251924 1.0 15117 +50868 Keap1 kelch-like ECH-associated protein 1 Novel U 0.0006185377000408721 -0.25757530551625973 1.0 15118 +228608 Smox spermine oxidase Novel N 0.0006184192207361088 -0.25757653272100367 1.0 15119 +226041 Pgm5 phosphoglucomutase 5 Novel U 0.0006183185515111158 -0.2575775754495268 1.0 15120 +14670 Gnl1 guanine nucleotide binding protein-like 1 Novel N 0.0006181785512062256 -0.2575790255680826 1.0 15121 +239017 Ogdhl oxoglutarate dehydrogenase-like Novel N 0.0006178454257035053 -0.25758247607108886 1.0 15122 +432611 Dnai2 dynein axonemal intermediate chain 2 Novel N 0.0006177454921178002 -0.2575835111798845 1.0 15123 +66445 Cyc1 cytochrome c-1 Novel N 0.0006175345534191135 -0.25758569607599124 1.0 15124 +17235 Smcp sperm mitochondria-associated cysteine-rich protein Novel U 0.0006174987216852096 -0.2575860672199131 1.0 15125 +15356 Hmgcl 3-hydroxy-3-methylglutaryl-Coenzyme A lyase Novel N 0.0006174301118312368 -0.25758677787852513 1.0 15126 +240427 Setbp1 SET binding protein 1 Novel U 0.0006174279507725018 -0.2575868002627005 1.0 15127 +240899 Lrrc52 leucine rich repeat containing 52 Novel N 0.0006169680464415444 -0.25759156393664195 1.0 15128 +52696 Zwint ZW10 interactor Novel U 0.0006163323751162741 -0.2575981481993325 1.0 15129 +68073 Atpsckmt ATP synthase C subunit lysine N-methyltransferase Novel N 0.0006160572284862204 -0.2576009981590817 1.0 15130 +320277 Spef2 sperm flagellar 2 Novel N 0.0006157951762104211 -0.25760371248793995 1.0 15131 +74022 Glyr1 glyoxylate reductase 1 homolog (Arabidopsis) Novel N 0.0006150867138128153 -0.25761105071816487 1.0 15132 +22710 Zfp52 zinc finger protein 52 Novel U 0.0006149501564632054 -0.25761246517470304 1.0 15133 +109979 Art3 ADP-ribosyltransferase 3 Novel U 0.0006148894968223843 -0.25761309348526856 1.0 15134 +74157 Cmtr1 cap methyltransferase 1 Novel N 0.0006147273256773897 -0.25761477324865734 1.0 15135 +50817 Capn15 calpain 15 Novel N 0.0006146873082151554 -0.2576151877482157 1.0 15136 +72431 Ceacam18 CEA cell adhesion molecule 18 Novel U 0.0006146590836105208 -0.25761548009774266 1.0 15137 +217779 Lysmd1 LysM, putative peptidoglycan-binding, domain containing 1 Novel U 0.000614589735697725 -0.2576161984011437 1.0 15138 +74167 Nudt9 nudix hydrolase 9 Novel N 0.0006143220454290108 -0.2576189711281472 1.0 15139 +12395 Runx1t1 RUNX1 translocation partner 1 Novel N 0.000614264011498273 -0.257619572241694 1.0 15140 +57745 Zfp112 zinc finger protein 112 Novel U 0.0006141876383260755 -0.25762036331250104 1.0 15141 +77252 9430038I01Rik RIKEN cDNA 9430038I01 gene Novel U 0.0006141723367814575 -0.2576205218053972 1.0 15142 +321003 Xpnpep3 X-prolyl aminopeptidase 3, mitochondrial Novel N 0.0006140588808094729 -0.2576216969786253 1.0 15143 +100040786 Gm20852 predicted gene, 20852 Novel U 0.0006134410517240017 -0.2576280964319826 1.0 15144 +29876 Clic4 chloride intracellular channel 4 Novel N 0.0006129524952980326 -0.25763315688338234 1.0 15145 +70564 Prxl2a peroxiredoxin like 2A Novel N 0.0006128994723441942 -0.25763370609339514 1.0 15146 +66254 Dimt1 DIM1 rRNA methyltransferase and ribosome maturation factor Novel N 0.000612778624740165 -0.25763495782890505 1.0 15147 +326622 Upf2 UPF2 regulator of nonsense transcripts homolog (yeast) Novel N 0.000612349201039567 -0.2576394057854793 1.0 15148 +17748 Mt1 metallothionein 1 Novel U 0.0006122520931919311 -0.2576404116253729 1.0 15149 +76233 Dnttip1 deoxynucleotidyltransferase, terminal, interacting protein 1 Novel U 0.000612219920869574 -0.2576407448652302 1.0 15150 +68198 Ndufb2 NADH:ubiquinone oxidoreductase subunit B2 Novel N 0.0006116364657217298 -0.2576467882744715 1.0 15151 +75805 Nln neurolysin (metallopeptidase M3 family) Novel N 0.0006113317364605543 -0.25764994465014135 1.0 15152 +75010 Tmbim7 transmembrane BAX inhibitor motif containing 7 Novel U 0.0006112641621880627 -0.25765064458223447 1.0 15153 +13417 Dnah8 dynein, axonemal, heavy chain 8 Novel N 0.000611251646652859 -0.25765077421773663 1.0 15154 +245533 Awat1 acyl-CoA wax alcohol acyltransferase 1 Novel N 0.0006111483147100517 -0.2576518445266034 1.0 15155 +12418 Cbx4 chromobox 4 Novel N 0.000610616463383254 -0.2576573534251627 1.0 15156 +108682 Gpt2 glutamic pyruvate transaminase (alanine aminotransferase) 2 Novel U 0.0006105332309003325 -0.25765821554448465 1.0 15157 +12569 Cdk5r1 cyclin dependent kinase 5, regulatory subunit 1 Novel U 0.0006104150477038436 -0.2576594396821488 1.0 15158 +67899 Cmc1 C-X9-C motif containing 1 Novel U 0.0006101864015142193 -0.2576618079918646 1.0 15159 +269604 Gpr157 G protein-coupled receptor 157 Novel U 0.0006100280262441915 -0.2576634484377053 1.0 15160 +66011 Ranbp17 RAN binding protein 17 Novel U 0.0006099403633049348 -0.25766435644754837 1.0 15161 +68310 Zmym1 zinc finger, MYM domain containing 1 Novel U 0.0006099264255470252 -0.2576645008143866 1.0 15162 +16533 Kcnmb1 potassium large conductance calcium-activated channel, subfamily M, beta member 1 Novel N 0.000609831747391889 -0.2576654814876051 1.0 15163 +100040861 Gm13057 predicted gene 13057 Novel U 0.0006097927511104976 -0.25766588540980584 1.0 15164 +27762 Vwa7 von Willebrand factor A domain containing 7 Novel U 0.0006097079102371991 -0.2576667641887825 1.0 15165 +381530 Mup20 major urinary protein 20 Novel U 0.000609394761073395 -0.2576700077775269 1.0 15166 +545693 Gm13043 predicted gene 13043 Novel U 0.0006091382719942341 -0.25767266448297726 1.0 15167 +14658 Glrb glycine receptor, beta subunit Novel U 0.0006090598284808984 -0.2576734769983097 1.0 15168 +68352 Aspdh aspartate dehydrogenase domain containing Novel U 0.0006090013507286753 -0.2576740827089449 1.0 15169 +67050 Nkap NFKB activating protein Novel U 0.0006089418468093414 -0.2576746990485852 1.0 15170 +666311 Zscan25 zinc finger and SCAN domain containing 25 Novel U 0.0006087090444040443 -0.2576771104082463 1.0 15171 +113860 Vmn1r11 vomeronasal 1 receptor 11 Novel U 0.0006084390924182561 -0.25767990656204093 1.0 15172 +14359 Fxr1 FMR1 autosomal homolog 1 Novel U 0.000608360026474493 -0.2576807255244873 1.0 15173 +22590 Xpa xeroderma pigmentosum, complementation group A Novel U 0.0006083537023488737 -0.2576807910295726 1.0 15174 +71774 Shroom1 shroom family member 1 Novel U 0.000608048195096048 -0.2576839554636543 1.0 15175 +208768 Sde2 SDE2 telomere maintenance homolog (S. pombe) Novel U 0.0006071807360186502 -0.2576929405762618 1.0 15176 +282619 Sbsn suprabasin Novel U 0.0006071506991470934 -0.25769325169719004 1.0 15177 +74466 Mfsd13b major facilitator superfamily domain containing 13B Novel U 0.0006069524145133198 -0.25769530552290837 1.0 15178 +17962 Nat3 N-acetyltransferase 3 Novel U 0.0006069374733034598 -0.2576954602834689 1.0 15179 +224671 Btbd9 BTB domain containing 9 Novel U 0.0006066101156943772 -0.2576988510428225 1.0 15180 +73692 Cplane1 ciliogenesis and planar polarity effector 1 Novel U 0.0006065509177575268 -0.25769946421310636 1.0 15181 +100040482 Btbd35f2 BTB domain containing 35, family member 2 Novel U 0.0006065281554810569 -0.25769969998401776 1.0 15182 +381410 Zfp408 zinc finger protein 408 Novel N 0.0006065234010068591 -0.2576997492307052 1.0 15183 +666145 Armh2 armadillo-like helical domain containing 2 Novel U 0.0006064213150871304 -0.2577008066333059 1.0 15184 +20649 Sntb1 syntrophin, basic 1 Novel N 0.0006063421228286549 -0.25770162690411585 1.0 15185 +107375 Slc25a45 solute carrier family 25, member 45 Novel U 0.0006059182643073459 -0.25770601721674596 1.0 15186 +19988 Rpl6 ribosomal protein L6 Novel N 0.0006055249672741148 -0.25771009097448727 1.0 15187 +243529 H1f10 H1.10 linker histone Novel U 0.0006053193204966364 -0.2577122210570481 1.0 15188 +666532 Zfp991 zinc finger protein 991 Novel U 0.0006053045002654847 -0.2577123745645152 1.0 15189 +101883 Igflr1 IGF-like family receptor 1 Novel U 0.0006052042697642482 -0.2577134127487521 1.0 15190 +15247 Mfsd14a major facilitator superfamily domain containing 14A Novel U 0.0006049758225172366 -0.2577157789978268 1.0 15191 +223664 Lrrc14 leucine rich repeat containing 14 Novel U 0.0006049648806885133 -0.257715892332929 1.0 15192 +117589 Asb7 ankyrin repeat and SOCS box-containing 7 Novel U 0.0006048817223941315 -0.2577167536838086 1.0 15193 +70881 Nt5c1b 5'-nucleotidase, cytosolic IB Novel N 0.0006048395514988086 -0.25771719048855607 1.0 15194 +229699 Slc16a4 solute carrier family 16 (monocarboxylic acid transporters), member 4 Novel U 0.0006047780866289502 -0.25771782713965746 1.0 15195 +12460 Ccs copper chaperone for superoxide dismutase Novel N 0.0006046751331342685 -0.25771889352857097 1.0 15196 +13829 Dmtn dematin actin binding protein Novel U 0.0006046465318314598 -0.25771918977992525 1.0 15197 +381925 Plpp4 phospholipid phosphatase 4 Novel U 0.0006042081475911125 -0.25772373054947567 1.0 15198 +100040606 Btbd35f12 BTB domain containing 35, family member 12 Novel U 0.0006041631568880279 -0.25772419656169926 1.0 15199 +66540 Fam107b family with sequence similarity 107, member B Novel U 0.0006041593777989985 -0.25772423570537917 1.0 15200 +328845 Acsbg2 acyl-CoA synthetase bubblegum family member 2 Novel N 0.0006037125446904507 -0.25772886398802863 1.0 15201 +494468 Armcx5 armadillo repeat containing, X-linked 5 Novel U 0.0006036139238994601 -0.25772988549893977 1.0 15202 +545136 Fam186b family with sequence similarity 186, member B Novel U 0.000603489757620332 -0.2577311716091772 1.0 15203 +75735 Pank1 pantothenate kinase 1 Novel N 0.0006033484316833385 -0.25773263545858677 1.0 15204 +11449 Chrng cholinergic receptor, nicotinic, gamma polypeptide Novel U 0.0006033428294688633 -0.25773269348614014 1.0 15205 +69327 Pierce1 piercer of microtubule wall 1 Novel U 0.0006031813260950961 -0.25773436633277647 1.0 15206 +15410 Hoxb3 homeobox B3 Novel N 0.0006031751440654784 -0.25773443036603605 1.0 15207 +66716 Ccer1 coiled-coil glutamate-rich protein 1 Novel U 0.0006031253988982447 -0.25773494562484295 1.0 15208 +319189 H2bc18 H2B clustered histone 18 Novel U 0.0006030623485929373 -0.25773559869783264 1.0 15209 +72168 Aifm3 apoptosis-inducing factor, mitochondrion-associated 3 Novel N 0.0006025681604010698 -0.25774071748287847 1.0 15210 +233890 Zfp768 zinc finger protein 768 Novel U 0.0006023038773557072 -0.2577434549179745 1.0 15211 +15285 Mnx1 motor neuron and pancreas homeobox 1 Novel U 0.0006022558479062017 -0.2577439524054336 1.0 15212 +66414 Ndufa12 NADH:ubiquinone oxidoreductase subunit A12 Novel N 0.0006021803403436854 -0.25774473451028396 1.0 15213 +69188 Kmt2e lysine (K)-specific methyltransferase 2E Novel U 0.0006021708366979898 -0.2577448329487336 1.0 15214 +399599 Ccdc87 coiled-coil domain containing 87 Novel U 0.0006019765633526846 -0.25774684522565794 1.0 15215 +384813 Adam34l a disintegrin and metallopeptidase domain 34 like Novel U 0.0006012841404445108 -0.25775401731937864 1.0 15216 +195522 Zfp691 zinc finger protein 691 Novel U 0.0006010097891361147 -0.2577568590412122 1.0 15217 +57773 Wdr4 WD repeat domain 4 Novel U 0.0006005651418886487 -0.25776146468278444 1.0 15218 +67958 U2surp U2 snRNP-associated SURP domain containing Novel U 0.0006005283433858915 -0.2577618458404663 1.0 15219 +107769 Tm6sf1 transmembrane 6 superfamily member 1 Novel U 0.0006004649040543588 -0.25776250294297687 1.0 15220 +245386 Tmem255a transmembrane protein 255A Novel U 0.0006001931265619454 -0.2577653180053091 1.0 15221 +407823 Baz2b bromodomain adjacent to zinc finger domain, 2B Novel N 0.0005999755129454135 -0.25776757203999545 1.0 15222 +74287 Kcmf1 potassium channel modulatory factor 1 Novel U 0.0005999403671731911 -0.25776793607874876 1.0 15223 +227197 Ndufs1 NADH:ubiquinone oxidoreductase core subunit S1 Novel U 0.0005998654390536231 -0.2577687121817482 1.0 15224 +103743 Tmem98 transmembrane protein 98 Novel N 0.0005996338877370963 -0.2577711105826729 1.0 15225 +213783 Plekhg1 pleckstrin homology domain containing, family G (with RhoGef domain) member 1 Novel U 0.0005996249046580407 -0.25777120362911043 1.0 15226 +170752 Bco2 beta-carotene oxygenase 2 Novel N 0.0005993688811497205 -0.2577738555121933 1.0 15227 +11811 Apobec2 apolipoprotein B mRNA editing enzyme, catalytic polypeptide 2 Novel N 0.0005991208529225689 -0.25777642458041666 1.0 15228 +21917 Tmpo thymopoietin Novel U 0.0005990409347803208 -0.2577772523699069 1.0 15229 +20440 St6gal1 beta galactoside alpha 2,6 sialyltransferase 1 Novel U 0.0005988851005270944 -0.25777886649597903 1.0 15230 +20935 Surf6 surfeit gene 6 Novel U 0.0005988286683588168 -0.25777945101852295 1.0 15231 +78478 Tmsb15a thymosin beta 15a Novel U 0.0005986308603085935 -0.2577814999078046 1.0 15232 +435653 Fcrlb Fc receptor-like B Novel U 0.0005984660586427393 -0.2577832069180419 1.0 15233 +666731 Trim43c tripartite motif-containing 43C Novel U 0.0005984132305846491 -0.257783754109331 1.0 15234 +55942 Sertad1 SERTA domain containing 1 Novel U 0.0005984097293784818 -0.2577837903747094 1.0 15235 +380728 Kcnh4 potassium voltage-gated channel, subfamily H (eag-related), member 4 Novel N 0.0005982899677538975 -0.25778503086167986 1.0 15236 +13828 Epb42 erythrocyte membrane protein band 4.2 Novel U 0.0005982425786327218 -0.2577855217166392 1.0 15237 +100039467 Gm10487 predicted gene 10487 Novel U 0.0005979595358314193 -0.25778845346467055 1.0 15238 +71281 Apobec4 apolipoprotein B mRNA editing enzyme catalytic polypeptide-like 4 Novel U 0.0005977254841871803 -0.2577908777639075 1.0 15239 +17540 Irag1 inositol 1,4,5-triphosphate receptor associated 1 Novel U 0.000597713320676802 -0.2577910037531482 1.0 15240 +20668 Sox13 SRY (sex determining region Y)-box 13 Novel N 0.0005974980093871941 -0.25779323394040793 1.0 15241 +69397 1700019A02Rik RIKEN cDNA 1700019A02 gene Novel U 0.0005974754602584504 -0.2577934675035422 1.0 15242 +269514 Fbxl4 F-box and leucine-rich repeat protein 4 Novel U 0.0005973940408343305 -0.2577943108432607 1.0 15243 +66083 Setd6 SET domain containing 6 Novel U 0.0005973514428597716 -0.25779475207168084 1.0 15244 +56185 Hao2 hydroxyacid oxidase 2 Novel N 0.0005969006042597726 -0.25779942184307914 1.0 15245 +13209 Ddx6 DEAD-box helicase 6 Novel U 0.0005967511457496571 -0.2578009699294137 1.0 15246 +71584 Gdpd2 glycerophosphodiester phosphodiesterase domain containing 2 Novel U 0.0005967019659163828 -0.2578014793325101 1.0 15247 +319475 Zfp672 zinc finger protein 672 Novel U 0.0005960770256188678 -0.25780795244356797 1.0 15248 +65221 Slc15a3 solute carrier family 15, member 3 Novel U 0.000595619536723123 -0.25781269109851096 1.0 15249 +106389 Eaf2 ELL associated factor 2 Novel N 0.0005951425784648433 -0.25781763141647107 1.0 15250 +74180 Muc5b mucin 5, subtype B, tracheobronchial Novel U 0.0005948142114493522 -0.257821032631223 1.0 15251 +320267 Fubp3 far upstream element (FUSE) binding protein 3 Novel N 0.0005946886342502834 -0.25782233335572285 1.0 15252 +108797 Mex3b mex3 RNA binding family member B Novel U 0.0005946590263437604 -0.2578226400334453 1.0 15253 +231014 Elapor2 endosome-lysosome associated apoptosis and autophagy regulator family member 2 Novel U 0.0005944237090802757 -0.25782507744192484 1.0 15254 +68229 Spindoc spindlin interactor and repressor of chromatin binding Novel N 0.0005943043775875223 -0.25782631347360396 1.0 15255 +18163 Ctnnd2 catenin delta 2 Novel U 0.0005942450149986488 -0.25782692834934806 1.0 15256 +66402 Sln sarcolipin Novel U 0.0005940605615652921 -0.2578288389119472 1.0 15257 +23863 Dand5 DAN domain family member 5, BMP antagonist Novel U 0.0005936850915988223 -0.257832728017517 1.0 15258 +70427 Mier2 MIER family member 2 Novel U 0.000593676274805287 -0.2578328193415746 1.0 15259 +57423 Atp5mf ATP synthase membrane subunit f Novel N 0.0005936442001405023 -0.25783315156989806 1.0 15260 +71361 Aifm2 apoptosis-inducing factor, mitochondrion-associated 2 Novel N 0.0005932712678116725 -0.25783701439070056 1.0 15261 +214240 Disp2 dispatched RND transporter family member 2 Novel U 0.000592950899493827 -0.25784033275520524 1.0 15262 +75051 Cfap210 cilia and flagella associated protein 210 Novel U 0.0005926267032847067 -0.257843690768882 1.0 15263 +228714 Kat14 lysine acetyltransferase 14 Novel U 0.00059241166960857 -0.2578459180806305 1.0 15264 +66317 Skic8 SKI8 subunit of superkiller complex Novel U 0.0005915150759364887 -0.257855204968412 1.0 15265 +78600 Pde6h phosphodiesterase 6H, cGMP-specific, cone, gamma Novel N 0.0005912383208941202 -0.257858071588043 1.0 15266 +234258 Neil3 nei like 3 (E. coli) Novel N 0.0005909812533211341 -0.25786073428551337 1.0 15267 +20585 Hltf helicase-like transcription factor Novel N 0.000589971896757464 -0.2578711891676191 1.0 15268 +69740 Dph5 diphthamide biosynthesis 5 Novel U 0.0005897440695451306 -0.257873548994395 1.0 15269 +667780 Msantd5f10 Myb/SANT DNA binding domain containing 5 family member 10 Novel U 0.0005897047007735694 -0.25787395677483665 1.0 15270 +66743 Rnf220 ring finger protein 220 Novel U 0.0005896389593502886 -0.2578746377223379 1.0 15271 +380863 Tmem171 transmembrane protein 171 Novel U 0.0005896363593853902 -0.2578746646526888 1.0 15272 +69535 Ten1 TEN1 telomerase capping complex subunit Novel U 0.0005895670684474725 -0.2578753823659459 1.0 15273 +15159 Hccs holocytochrome c synthetase Novel U 0.0005893554563678322 -0.2578775742369105 1.0 15274 +229722 Elapor1 endosome-lysosome associated apoptosis and autophagy regulator 1 Novel U 0.0005891037197087333 -0.25788018171695004 1.0 15275 +235907 Zfp65 zinc finger protein 65 Novel U 0.0005889924206088203 -0.2578813345493682 1.0 15276 +20527 Slc2a3 solute carrier family 2 (facilitated glucose transporter), member 3 Novel U 0.0005887820512751208 -0.2578835135480111 1.0 15277 +15228 Foxg1 forkhead box G1 Novel U 0.0005886570394225948 -0.25788480841667005 1.0 15278 +66599 Rdm1 RAD52 motif 1 Novel U 0.0005885187490137971 -0.2578862408241783 1.0 15279 +277753 Cyp4a12a cytochrome P450, family 4, subfamily a, polypeptide 12a Novel U 0.0005882067736381146 -0.25788947225486397 1.0 15280 +238568 Serpinb6d serine (or cysteine) peptidase inhibitor, clade B, member 6d Novel U 0.0005881985903937706 -0.2578895570166399 1.0 15281 +399558 Flrt2 fibronectin leucine rich transmembrane protein 2 Novel U 0.0005881887378801901 -0.2578896590686517 1.0 15282 +17175 Masp2 MBL associated serine protease 2 Novel N 0.0005879526397446571 -0.25789210456537826 1.0 15283 +71978 Ppp2r2a protein phosphatase 2, regulatory subunit B, alpha Novel N 0.0005876936731288614 -0.25789478693307155 1.0 15284 +18012 Neurod1 neurogenic differentiation 1 Novel U 0.0005876824108053567 -0.2578949035878482 1.0 15285 +59008 Anapc5 anaphase-promoting complex subunit 5 Novel U 0.000587146315836409 -0.2579004564419134 1.0 15286 +11702 Amd1 S-adenosylmethionine decarboxylase 1 Novel U 0.0005871096139978799 -0.2579008365983504 1.0 15287 +278507 Wfikkn2 WAP, follistatin/kazal, immunoglobulin, kunitz and netrin domain containing 2 Novel U 0.0005868965055383688 -0.25790304396876845 1.0 15288 +380694 Ccnjl cyclin J-like Novel U 0.0005868362411559405 -0.25790366818526056 1.0 15289 +52276 Cdca8 cell division cycle associated 8 Novel U 0.0005867905504411721 -0.2579041414481821 1.0 15290 +239790 Ostn osteocrin Novel U 0.000586729825975754 -0.2579047704301987 1.0 15291 +639910 Tcstv2c two cell stage variable group member 2C Novel U 0.0005866509009704063 -0.25790558793280954 1.0 15292 +68033 Cox19 cytochrome c oxidase assembly protein 19 Novel N 0.0005864237928832595 -0.25790794031091047 1.0 15293 +108153 Adamts7 ADAM metallopeptidase with thrombospondin type 1 motif 7 Novel U 0.0005860933371385908 -0.2579113631606506 1.0 15294 +271813 Agbl2 ATP/GTP binding protein-like 2 Novel U 0.0005860120632207655 -0.2579122049932197 1.0 15295 +68528 Smim6 small integral membrane protein 6 Novel U 0.0005858422499843072 -0.2579139639131406 1.0 15296 +239283 Oxgr1 oxoglutarate (alpha-ketoglutarate) receptor 1 Novel N 0.0005855045291518843 -0.25791746201442084 1.0 15297 +24102 Trex2 three prime repair exonuclease 2 Novel N 0.0005854633287412585 -0.25791788876691973 1.0 15298 +73828 Dcaf4 DDB1 and CUL4 associated factor 4 Novel U 0.0005852488675755167 -0.2579201101486244 1.0 15299 +105590 Zfp957 zinc finger protein 957 Novel U 0.0005852288555672037 -0.2579203174323487 1.0 15300 +22427 Wrn Werner syndrome RecQ like helicase Novel U 0.000585069960689674 -0.2579219632602668 1.0 15301 +70355 Gprc5c G protein-coupled receptor, family C, group 5, member C Novel U 0.0005848217677977557 -0.2579245340340824 1.0 15302 +108767 Pnrc1 proline-rich nuclear receptor coactivator 1 Novel U 0.0005848076972771259 -0.25792467977607253 1.0 15303 +98363 Efhd1 EF hand domain containing 1 Novel N 0.000584325867216275 -0.2579296705560035 1.0 15304 +226747 Ahctf1 AT hook containing transcription factor 1 Novel U 0.000584240391684606 -0.2579305559087507 1.0 15305 +69032 Lyzl4 lysozyme-like 4 Novel U 0.0005837096345668864 -0.25793605347352827 1.0 15306 +625823 Vmn1r1 vomeronasal 1 receptor 1 Novel U 0.0005835936050624294 -0.2579372553033212 1.0 15307 +226976 Kansl3 KAT8 regulatory NSL complex subunit 3 Novel U 0.0005835776077513631 -0.25793742100294337 1.0 15308 +546055 Adam39 a disintegrin and metallopeptidase domain 39 Novel U 0.0005832322798136789 -0.25794099789836983 1.0 15309 +71713 Cdc40 cell division cycle 40 Novel U 0.0005829459461755586 -0.2579439637327808 1.0 15310 +71777 Ing3 inhibitor of growth family, member 3 Novel N 0.000582687609208083 -0.25794663957859754 1.0 15311 +17681 Msc musculin Novel N 0.0005826686740816342 -0.2579468357080148 1.0 15312 +71769 Bbs10 Bardet-Biedl syndrome 10 Novel U 0.0005825938429708228 -0.25794761080620066 1.0 15313 +71007 D7Ertd443e DNA segment, Chr 7, ERATO Doi 443, expressed Novel U 0.0005822913861578172 -0.25795074364392706 1.0 15314 +319158 H4c9 H4 clustered histone 9 Novel U 0.0005820501211900673 -0.2579532426585318 1.0 15315 +320111 Prr18 proline rich 18 Novel U 0.0005819879345233458 -0.25795388678598147 1.0 15316 +14571 Gpd2 glycerol phosphate dehydrogenase 2, mitochondrial Novel N 0.0005819401391454076 -0.257954381848935 1.0 15317 +332942 Ldc1 leucine decarboxylase 1 Novel U 0.0005818242346786919 -0.25795558238359106 1.0 15318 +665775 Bod1l biorientation of chromosomes in cell division 1-like Novel N 0.0005815464921194571 -0.25795845923188926 1.0 15319 +71653 Shtn1 shootin 1 Novel N 0.0005812677314844131 -0.2579613466253833 1.0 15320 +212632 Iffo2 intermediate filament family orphan 2 Novel U 0.0005809270388267763 -0.25796487550873143 1.0 15321 +213436 Rtl3 retrotransposon Gag like 3 Novel U 0.0005808221552856919 -0.2579659618890021 1.0 15322 +102193 Zdhhc7 zinc finger, DHHC domain containing 7 Novel U 0.0005807922333015104 -0.25796627181993065 1.0 15323 +212516 Efcab12 EF-hand calcium binding domain 12 Novel U 0.000580745079301221 -0.25796676023951554 1.0 15324 +50773 Nt5c 5',3'-nucleotidase, cytosolic Novel N 0.0005804997019709252 -0.2579693018498364 1.0 15325 +407790 Ndufa4l2 Ndufa4, mitochondrial complex associated like 2 Novel U 0.000580350493994273 -0.2579708473411536 1.0 15326 +105732 Fam83h family with sequence similarity 83, member H Novel N 0.000580260530268339 -0.25797177918246944 1.0 15327 +22138 Ttn titin Novel U 0.0005801085394584097 -0.25797335349828227 1.0 15328 +57435 Plin4 perilipin 4 Novel U 0.0005797702165764512 -0.25797685783557184 1.0 15329 +15452 Hprt1 hypoxanthine phosphoribosyltransferase 1 Novel U 0.0005795256921789806 -0.25797939061124253 1.0 15330 +67230 Zfp329 zinc finger protein 329 Novel U 0.0005794064338958912 -0.25798062588461834 1.0 15331 +71836 Shcbp1l Shc SH2-domain binding protein 1-like Novel U 0.0005792469927453635 -0.2579822773708142 1.0 15332 +667472 Vmn1r251 vomeronasal 1 receptor 251 Novel U 0.0005791741875018244 -0.2579830314851334 1.0 15333 +67008 Yae1d1 Yae1 domain containing 1 Novel N 0.000579012286996215 -0.25798470844524835 1.0 15334 +224045 Eif2b5 eukaryotic translation initiation factor 2B, subunit 5 epsilon Novel U 0.0005789821475952638 -0.2579850206281726 1.0 15335 +223773 Zbed4 zinc finger, BED type containing 4 Novel U 0.0005789540849278198 -0.25798531130035945 1.0 15336 +320332 H4c16 H4 histone 16 Novel U 0.0005788718338436444 -0.2579861632543855 1.0 15337 +78323 Fam219b family with sequence similarity 219, member B Novel U 0.000578831003278848 -0.25798658617603343 1.0 15338 +242691 Gpatch3 G patch domain containing 3 Novel U 0.0005788134256594998 -0.25798676824443684 1.0 15339 +319169 H2ac15 H2A clustered histone 15 Novel U 0.000578802143465736 -0.25798688510502893 1.0 15340 +71236 Rsph14 radial spoke head homolog 14 (Chlamydomonas) Novel U 0.00057871097704875 -0.2579878294037791 1.0 15341 +216578 Papolg poly(A) polymerase gamma Novel U 0.0005783814332074679 -0.25799124280805397 1.0 15342 +330355 Dnah6 dynein, axonemal, heavy chain 6 Novel U 0.0005782537236157993 -0.25799256561980627 1.0 15343 +223626 Them6 thioesterase superfamily member 6 Novel U 0.000578049446213407 -0.257994681518425 1.0 15344 +70625 Med26 mediator complex subunit 26 Novel N 0.0005780209114072312 -0.2579949770810093 1.0 15345 +20397 Sgpl1 sphingosine phosphate lyase 1 Novel N 0.0005779750292315074 -0.25799545232707716 1.0 15346 +319182 H2bc9 H2B clustered histone 9 Novel U 0.0005779636629402904 -0.25799557005874796 1.0 15347 +70615 Ankrd24 ankyrin repeat domain 24 Novel U 0.0005778481600727093 -0.2579967664336534 1.0 15348 +257633 Acsf3 acyl-CoA synthetase family member 3 Novel N 0.0005777198692670231 -0.25799809526560136 1.0 15349 +66732 Ccdc202 coiled-coil domain containing 202 Novel U 0.0005776463778443565 -0.25799885648734144 1.0 15350 +72672 Zfp518a zinc finger protein 518A Novel U 0.0005776218653105863 -0.2579991103873604 1.0 15351 +214931 Fbxl16 F-box and leucine-rich repeat protein 16 Novel U 0.0005775925319136498 -0.2579994142217216 1.0 15352 +110695 Aldh7a1 aldehyde dehydrogenase family 7, member A1 Novel U 0.0005775710507332368 -0.2579996367230822 1.0 15353 +219150 Hmbox1 homeobox containing 1 Novel U 0.0005775311645159708 -0.25800004986320946 1.0 15354 +230718 Nt5c1a 5'-nucleotidase, cytosolic IA Novel N 0.0005775278365587685 -0.2580000843340807 1.0 15355 +212517 Cfap44 cilia and flagella associated protein 44 Novel N 0.0005775030201899178 -0.25800034138121347 1.0 15356 +11495 Adam2 a disintegrin and metallopeptidase domain 2 Novel U 0.000577114525659342 -0.2580043653947901 1.0 15357 +68241 Mcrip2 MAPK regulated corepressor interacting protein 2 Novel U 0.00057706267228723 -0.2580049024903139 1.0 15358 +66483 Rpl36al ribosomal protein L36A-like Novel U 0.0005768935548211437 -0.2580066542034682 1.0 15359 +381314 Iars2 isoleucine-tRNA synthetase 2, mitochondrial Novel U 0.0005762764774013158 -0.2580130458710974 1.0 15360 +18291 Nobox NOBOX oogenesis homeobox Novel U 0.0005762169167374292 -0.25801366279849597 1.0 15361 +67133 Gp2 glycoprotein 2 zymogen granule membrane Novel U 0.0005761369921108734 -0.2580144906551505 1.0 15362 +67019 Actr6 ARP6 actin-related protein 6 Novel U 0.0005759480819881154 -0.2580164473799919 1.0 15363 +19746 Rhd Rh blood group, D antigen Novel U 0.0005758929198241372 -0.25801701874787303 1.0 15364 +72662 Dis3 DIS3 homolog, exosome endoribonuclease and 3'-5' exoribonuclease Novel N 0.0005757007140918875 -0.25801900960852925 1.0 15365 +12532 Cdc25c cell division cycle 25C Novel U 0.0005755901760520398 -0.2580201545579123 1.0 15366 +13803 Enc1 ectodermal-neural cortex 1 Novel U 0.000575513104076361 -0.25802095286690274 1.0 15367 +333789 N4bp2 NEDD4 binding protein 2 Novel U 0.0005752936465422793 -0.2580232260008265 1.0 15368 +64656 Mrps23 mitochondrial ribosomal protein S23 Novel N 0.0005752048429710953 -0.25802414582529754 1.0 15369 +80732 Mynn myoneurin Novel U 0.0005749114636110349 -0.2580271846390647 1.0 15370 +321000 Lrif1 ligand dependent nuclear receptor interacting factor 1 Novel U 0.0005746579201831658 -0.2580298108335558 1.0 15371 +66138 Bud23 BUD23, rRNA methyltransferase and ribosome maturation factor Novel U 0.0005745163580873683 -0.25803127712909046 1.0 15372 +104625 Cnot6 CCR4-NOT transcription complex, subunit 6 Novel U 0.0005743741283888989 -0.25803275033963163 1.0 15373 +69065 Chac1 ChaC, cation transport regulator 1 Novel U 0.0005742623122286335 -0.25803390852774394 1.0 15374 +67469 Abhd5 abhydrolase domain containing 5 Novel U 0.0005731918930627462 -0.25804499589427604 1.0 15375 +19826 Rnps1 RNA binding protein with serine rich domain 1 Novel N 0.0005731273429510613 -0.25804566450221095 1.0 15376 +114863 Plpbp pyridoxal phosphate binding protein Novel U 0.0005731001028894775 -0.2580459466538733 1.0 15377 +329251 Ppp1r12b protein phosphatase 1, regulatory subunit 12B Novel N 0.0005730538380903441 -0.2580464258631419 1.0 15378 +384997 Pglyrp4 peptidoglycan recognition protein 4 Novel U 0.0005728715362842196 -0.2580483141392569 1.0 15379 +14447 Gapdhs glyceraldehyde-3-phosphate dehydrogenase, spermatogenic Novel N 0.0005727630283888867 -0.25804943806046976 1.0 15380 +23836 Cdh20 cadherin 20 Novel U 0.0005724814523776553 -0.25805235461553777 1.0 15381 +78670 Plekhj1 pleckstrin homology domain containing, family J member 1 Novel U 0.000572169530761667 -0.2580555854893823 1.0 15382 +18996 Pou4f1 POU domain, class 4, transcription factor 1 Novel U 0.000572069549365846 -0.2580566210933935 1.0 15383 +15203 Heph hephaestin Novel U 0.0005718846928238838 -0.25805853583137833 1.0 15384 +71425 Bpifb9a BPI fold containing family B, member 9A Novel U 0.0005718169740473959 -0.258059237260239 1.0 15385 +53412 Ppp1r3c protein phosphatase 1, regulatory subunit 3C Novel U 0.0005714032349282899 -0.2580635227564338 1.0 15386 +434726 Fthl17b ferritin, heavy polypeptide-like 17, member B Novel U 0.0005713363423979215 -0.2580642156270644 1.0 15387 +225497 Fam170a family with sequence similarity 170, member A Novel U 0.0005712825589037534 -0.25806477271472894 1.0 15388 +27367 Rpl3 ribosomal protein L3 Novel N 0.000570310931998628 -0.2580748367942717 1.0 15389 +75467 Stpg4 sperm tail PG rich repeat containing 4 Novel U 0.0005701602774780785 -0.25807639726884307 1.0 15390 +216881 Wscd1 WSC domain containing 1 Novel U 0.0005695450280063224 -0.2580827700026463 1.0 15391 +56403 Syncrip synaptotagmin binding, cytoplasmic RNA interacting protein Novel U 0.000569509502017773 -0.2580831379796678 1.0 15392 +207667 Skor1 SKI family transcriptional corepressor 1 Novel U 0.0005693049475300542 -0.2580852567483272 1.0 15393 +320974 Lrrn4 leucine rich repeat neuronal 4 Novel U 0.0005692322709307114 -0.2580860095301541 1.0 15394 +227485 Cdh19 cadherin 19, type 2 Novel U 0.000569026761858025 -0.2580881381863733 1.0 15395 +70333 Polr1g RNA polymerase I subunit G Novel U 0.0005690176512771571 -0.25808823255347035 1.0 15396 +242602 Cimap2 ciliary microtubule associated protein 2 Novel U 0.0005690163018042752 -0.25808824653126616 1.0 15397 +68375 Ndufa8 NADH:ubiquinone oxidoreductase subunit A8 Novel N 0.0005687918700063605 -0.25809057118845113 1.0 15398 +381213 Ms4a12 membrane-spanning 4-domains, subfamily A, member 12 Novel U 0.000568767382427869 -0.2580908248299842 1.0 15399 +103140 Gstt3 glutathione S-transferase, theta 3 Novel U 0.0005685264861263636 -0.2580933200259561 1.0 15400 +13106 Cyp2e1 cytochrome P450, family 2, subfamily e, polypeptide 1 Novel N 0.0005682089153248903 -0.25809660941387824 1.0 15401 +66962 Swsap1 SWIM type zinc finger 7 associated protein 1 Novel N 0.0005681634264599402 -0.25809708058604597 1.0 15402 +54486 Hpgds hematopoietic prostaglandin D synthase Novel N 0.0005681187781828245 -0.2580975430514326 1.0 15403 +621510 Vmn1r129 vomeronasal 1 receptor 129 Novel U 0.0005680989099552529 -0.25809774884588066 1.0 15404 +68750 Rreb1 ras responsive element binding protein 1 Novel U 0.0005678776059320061 -0.25810004110567847 1.0 15405 +71766 Raver1 ribonucleoprotein, PTB-binding 1 Novel U 0.0005678257898242812 -0.25810057781521895 1.0 15406 +230082 Nol6 nucleolar protein family 6 (RNA-associated) Novel N 0.0005673348193243396 -0.25810566327151757 1.0 15407 +268697 Ccnb1 cyclin B1 Novel U 0.0005672151369198505 -0.25810690293792893 1.0 15408 +241915 Phc3 polyhomeotic 3 Novel U 0.0005671194385692564 -0.25810789417829844 1.0 15409 +239667 Dip2b disco interacting protein 2 homolog B Novel N 0.000566982848278058 -0.2581093089760445 1.0 15410 +67420 Far1 fatty acyl CoA reductase 1 Novel U 0.0005669096143845735 -0.2581100675303058 1.0 15411 +108934 Smim13 small integral membrane protein 13 Novel U 0.0005668318725861484 -0.2581108727772982 1.0 15412 +212448 9330159F19Rik RIKEN cDNA 9330159F19 gene Novel U 0.0005666553634748477 -0.2581127010528707 1.0 15413 +27388 Ptdss2 phosphatidylserine synthase 2 Novel U 0.0005666355235046108 -0.2581129065546302 1.0 15414 +209012 Ulk4 unc-51-like kinase 4 Novel U 0.0005665590031250627 -0.25811369915020604 1.0 15415 +20269 Scn3a sodium channel, voltage-gated, type III, alpha Novel U 0.0005662627555355668 -0.25811676767299946 1.0 15416 +23989 Med24 mediator complex subunit 24 Novel N 0.0005659319456026579 -0.25812019419140975 1.0 15417 +215194 Kri1 KRI1 homolog Novel U 0.0005658887560521939 -0.25812064154735365 1.0 15418 +218461 Pde8b phosphodiesterase 8B Novel N 0.0005658488464547114 -0.2581210549296524 1.0 15419 +238271 Kcnh5 potassium voltage-gated channel, subfamily H (eag-related), member 5 Novel U 0.0005658255314853298 -0.2581212964253388 1.0 15420 +53381 Prdx4 peroxiredoxin 4 Novel N 0.0005655712685295676 -0.2581239300726762 1.0 15421 +14538 Gcnt2 glucosaminyl (N-acetyl) transferase 2 (I blood group) Novel U 0.0005654897460990714 -0.25812477447933135 1.0 15422 +74954 4930503E14Rik RIKEN cDNA 4930503E14 gene Novel U 0.0005652963367691514 -0.2581267778068127 1.0 15423 +216154 Med16 mediator complex subunit 16 Novel N 0.0005646827718953927 -0.25813313309160524 1.0 15424 +18631 Pex11a peroxisomal biogenesis factor 11 alpha Novel U 0.0005645718295364615 -0.258134282228912 1.0 15425 +381801 Tatdn2 TatD DNase domain containing 2 Novel U 0.0005643420680012748 -0.25813666209134045 1.0 15426 +210529 Mettl14 methyltransferase 14, N6-adenosine-methyltransferase subunit Novel N 0.0005642146571812507 -0.25813798180842584 1.0 15427 +22256 Ung uracil DNA glycosylase Novel U 0.0005641630381319361 -0.2581385164768418 1.0 15428 +106298 Rrn3 RRN3 RNA polymerase I transcription factor homolog (yeast) Novel U 0.0005640276219637348 -0.25813991911306045 1.0 15429 +14265 Fmr1 fragile X messenger ribonucleoprotein 1 Novel U 0.0005639527847500563 -0.25814069427445957 1.0 15430 +77864 Ypel2 yippee like 2 Novel U 0.0005633670725201336 -0.25814676106248285 1.0 15431 +207806 Usf3 upstream transcription factor family member 3 Novel U 0.0005632445918328428 -0.2581480297134155 1.0 15432 +231571 Rpap2 RNA polymerase II associated protein 2 Novel U 0.0005630301760387567 -0.2581502506251621 1.0 15433 +545554 Ankrd34a ankyrin repeat domain 34A Novel U 0.0005628414227792733 -0.25815220572521885 1.0 15434 +28295 Gatd3a glutamine amidotransferase like class 1 domain containing 3A Novel U 0.0005628410328112252 -0.25815220976449516 1.0 15435 +68816 Ppil1 peptidylprolyl isomerase (cyclophilin)-like 1 Novel U 0.0005624109704749573 -0.2581566643360366 1.0 15436 +241732 Tspyl3 TSPY-like 3 Novel U 0.0005621433834658286 -0.25815943599348073 1.0 15437 +18431 Oca2 oculocutaneous albinism II Novel U 0.0005621190424796148 -0.2581596881166158 1.0 15438 +22361 Vnn1 vanin 1 Novel N 0.0005618944870654588 -0.25816201405421374 1.0 15439 +67902 Sumf2 sulfatase modifying factor 2 Novel U 0.0005618845923397642 -0.2581621165434572 1.0 15440 +630836 2010315B03Rik RIKEN cDNA 2010315B03 gene Novel U 0.0005617541926409409 -0.258163467219251 1.0 15441 +319695 Ankar ankyrin and armadillo repeat containing Novel U 0.0005617225973493484 -0.25816379448224264 1.0 15442 +76183 Celf6 CUGBP, Elav-like family member 6 Novel N 0.0005615186822428826 -0.25816590662821204 1.0 15443 +12812 Coil coilin Novel U 0.0005614638277432622 -0.2581664748093159 1.0 15444 +170439 Elovl6 ELOVL fatty acid elongase 6 Novel N 0.0005612728991589313 -0.2581684524413159 1.0 15445 +225256 Dsg1b desmoglein 1 beta Novel U 0.0005611781653156673 -0.2581694336913503 1.0 15446 +14234 Foxc2 forkhead box C2 Novel U 0.0005610700703280986 -0.2581705533356781 1.0 15447 +381531 Mup21 major urinary protein 21 Novel U 0.0005610285585537892 -0.25817098331327176 1.0 15448 +218629 Dhx29 DExH-box helicase 29 Novel N 0.0005608348279747506 -0.2581729899682409 1.0 15449 +210105 Zfp719 zinc finger protein 719 Novel U 0.0005607866378657826 -0.2581734891198054 1.0 15450 +16517 Kcnj16 potassium inwardly-rectifying channel, subfamily J, member 16 Novel U 0.0005607184386675555 -0.2581741955248587 1.0 15451 +227525 Dclre1c DNA cross-link repair 1C Novel U 0.0005604766097650118 -0.2581767003806816 1.0 15452 +382207 Jade3 jade family PHD finger 3 Novel N 0.0005600847606278181 -0.2581807591411633 1.0 15453 +73112 Abracl ABRA C-terminal like Novel U 0.0005600161176729418 -0.2581814701426334 1.0 15454 +17195 Mbl2 mannose-binding lectin (protein C) 2 Novel U 0.0005599630814914912 -0.25818201948965736 1.0 15455 +93726 Rnase2a ribonuclease, RNase A family, 2A (liver, eosinophil-derived neurotoxin) Novel U 0.0005598964794647545 -0.2581827093512609 1.0 15456 +233057 Zfp940 zinc finger protein 940 Novel U 0.000559871447965744 -0.25818296862670476 1.0 15457 +101055670 Heatr4 HEAT repeat containing 4 Novel U 0.0005595900398423868 -0.2581858834427957 1.0 15458 +100862192 LOC100862192 PRAME family member 8-like Novel U 0.0005594729524297925 -0.25818709623036634 1.0 15459 +208583 Nek11 NIMA (never in mitosis gene a)-related expressed kinase 11 Novel N 0.0005591669386821345 -0.2581902659107049 1.0 15460 +74548 Gsdmc4 gasdermin C4 Novel U 0.0005590155910217899 -0.25819183356479547 1.0 15461 +332396 Kcnk18 potassium channel, subfamily K, member 18 Novel U 0.0005590136385001308 -0.2581918537889506 1.0 15462 +66067 Gtpbp8 GTP-binding protein 8 (putative) Novel U 0.0005589842960522602 -0.25819215771706105 1.0 15463 +331474 Rtl5 retrotransposon Gag like 5 Novel U 0.0005588103515371847 -0.2581939594286301 1.0 15464 +225872 Npas4 neuronal PAS domain protein 4 Novel N 0.0005583568373968473 -0.2581986569131873 1.0 15465 +105734733 Gm13030 predicted gene 13030 Novel U 0.0005583116447234284 -0.2581991250174129 1.0 15466 +13602 Sparcl1 SPARC-like 1 Novel U 0.000558193318214026 -0.2582003506395075 1.0 15467 +17955 Nap1l4 nucleosome assembly protein 1-like 4 Novel N 0.0005576450423526079 -0.2582060296628565 1.0 15468 +11832 Aqp7 aquaporin 7 Novel U 0.0005574164164958158 -0.25820839776196547 1.0 15469 +433386 Ccdc185 coiled-coil domain containing 185 Novel U 0.0005573628504419967 -0.25820895259739 1.0 15470 +75104 Mmd2 monocyte to macrophage differentiation-associated 2 Novel U 0.0005572241442908893 -0.2582103893111435 1.0 15471 +68255 Tmem86b transmembrane protein 86B Novel U 0.0005571633299437256 -0.25821101922415224 1.0 15472 +106947 Slc39a3 solute carrier family 39 (zinc transporter), member 3 Novel N 0.0005568664543593965 -0.25821409425169545 1.0 15473 +54403 Slc4a4 solute carrier family 4 (anion exchanger), member 4 Novel U 0.0005567316385663954 -0.25821549066924754 1.0 15474 +71877 Efhc1 EF-hand domain (C-terminal) containing 1 Novel U 0.0005566957430062276 -0.25821586247427974 1.0 15475 +242585 Slc35d1 solute carrier family 35 (UDP-glucuronic acid/UDP-N-acetylgalactosamine dual transporter), member D1 Novel N 0.0005564969557318643 -0.2582179215063328 1.0 15476 +319149 H3c4 H3 clustered histone 4 Novel U 0.0005564623270612704 -0.2582182801889645 1.0 15477 +66333 Aqp11 aquaporin 11 Novel U 0.0005564397510340396 -0.2582185140307124 1.0 15478 +109323 C1qtnf7 C1q and tumor necrosis factor related protein 7 Novel U 0.0005563197056680853 -0.2582197574566667 1.0 15479 +225187 Ankrd29 ankyrin repeat domain 29 Novel U 0.0005557289146581845 -0.258225876850526 1.0 15480 +69572 Mfsd3 major facilitator superfamily domain containing 3 Novel U 0.0005555797333237014 -0.25822742206588456 1.0 15481 +11676 Aldoc aldolase C, fructose-bisphosphate Novel N 0.0005554518628850569 -0.2582287465436845 1.0 15482 +75444 Ccdc192 coiled-coil domain containing 192 Novel U 0.0005553216050320061 -0.2582300957502444 1.0 15483 +78251 Zfp712 zinc finger protein 712 Novel U 0.000554921317734754 -0.2582342419129106 1.0 15484 +75495 Morn5 MORN repeat containing 5 Novel U 0.0005548818628568316 -0.2582346505852391 1.0 15485 +319586 Celf5 CUGBP, Elav-like family member 5 Novel N 0.0005547765235099779 -0.25823574168673097 1.0 15486 +74737 Pcf11 PCF11 cleavage and polyadenylation factor subunit Novel N 0.0005546336636765699 -0.25823722142418915 1.0 15487 +76789 Mzt1 mitotic spindle organizing protein 1 Novel N 0.0005546147082429092 -0.2582374177639479 1.0 15488 +71148 Mier1 MEIR1 treanscription regulator Novel N 0.0005544722238137031 -0.2582388936129817 1.0 15489 +72137 Wdsub1 WD repeat, SAM and U-box domain containing 1 Novel U 0.0005544604174322056 -0.2582390159030931 1.0 15490 +50996 Pdcd7 programmed cell death 7 Novel N 0.0005537289976166982 -0.25824659192549804 1.0 15491 +16470 Ush1g USH1 protein network component sans Novel U 0.0005535862784277343 -0.25824807020616564 1.0 15492 +231691 Sds serine dehydratase Novel N 0.0005533666159922443 -0.25825034546245146 1.0 15493 +78245 Acbd7 acyl-Coenzyme A binding domain containing 7 Novel U 0.0005531356441887935 -0.25825273786079883 1.0 15494 +74488 Lrrc15 leucine rich repeat containing 15 Novel U 0.0005531135428372729 -0.25825296678587134 1.0 15495 +21955 Tnnt1 troponin T1, skeletal, slow Novel U 0.0005531108920510843 -0.2582529942426275 1.0 15496 +226265 Eno4 enolase 4 Novel U 0.0005529515462177867 -0.2582546447415306 1.0 15497 +72667 Zfp444 zinc finger protein 444 Novel U 0.0005525965351185371 -0.25825832193482623 1.0 15498 +269639 Zfp512 zinc finger protein 512 Novel U 0.0005524919225195864 -0.25825940550868726 1.0 15499 +277468 Slc39a12 solute carrier family 39 (zinc transporter), member 12 Novel U 0.0005524605775573715 -0.25825973017877546 1.0 15500 +269261 Rpl12 ribosomal protein L12 Novel N 0.0005524353920411384 -0.25825999104952463 1.0 15501 +75296 Cep43 centrosomal protein 43 Novel U 0.0005523250128391322 -0.25826113435367054 1.0 15502 +66420 Polr2e polymerase (RNA) II (DNA directed) polypeptide E Novel N 0.0005521658070837723 -0.25826278340165093 1.0 15503 +72102 Dusp11 dual specificity phosphatase 11 (RNA/RNP complex 1-interacting) Novel N 0.0005519828400209962 -0.25826467856847246 1.0 15504 +214572 Prmt7 protein arginine N-methyltransferase 7 Novel U 0.0005517111495409242 -0.2582674927295337 1.0 15505 +338352 Nell1 NEL-like 1 Novel U 0.000551703126116874 -0.25826757583589627 1.0 15506 +210741 Kcnk12 potassium channel, subfamily K, member 12 Novel U 0.0005513737153273643 -0.2582709878620252 1.0 15507 +22762 Zfpm2 zinc finger protein, multitype 2 Novel U 0.00055124529260634 -0.2582723180603479 1.0 15508 +56703 Pigo phosphatidylinositol glycan anchor biosynthesis, class O Novel U 0.0005510945993950666 -0.2582738789356765 1.0 15509 +319163 H2ac1 H2A clustered histone 1 Novel U 0.0005510906611404139 -0.25827391972798874 1.0 15510 +98558 Mael maelstrom spermatogenic transposon silencer Novel U 0.000551001253868861 -0.25827484580556836 1.0 15511 +24087 Tll2 tolloid-like 2 Novel N 0.0005509525719353659 -0.25827535005143515 1.0 15512 +71799 Ptcd1 pentatricopeptide repeat domain 1 Novel N 0.0005509331162306572 -0.258275551572985 1.0 15513 +100135654 Rhox3c reproductive homeobox 3C Novel U 0.0005509094701452893 -0.2582757964983599 1.0 15514 +22092 Rsph1 radial spoke head 1 homolog (Chlamydomonas) Novel N 0.000550695641850839 -0.25827801132480455 1.0 15515 +230162 Zfp189 zinc finger protein 189 Novel U 0.0005506734803062261 -0.25827824087335516 1.0 15516 +235631 Prss50 serine protease 50 Novel N 0.0005505240041181734 -0.25827978914279726 1.0 15517 +20671 Sox17 SRY (sex determining region Y)-box 17 Novel U 0.0005502817784160918 -0.25828229810865666 1.0 15518 +216739 Acsl6 acyl-CoA synthetase long-chain family member 6 Novel N 0.0005500847780876532 -0.2582843386315826 1.0 15519 +77998 Grifin galectin-related inter-fiber protein Novel U 0.000550035430245966 -0.25828484977490457 1.0 15520 +100503545 Nuggc nuclear GTPase, germinal center associated Novel U 0.0005500347846850233 -0.2582848564616036 1.0 15521 +21841 Tia1 cytotoxic granule-associated RNA binding protein 1 Novel N 0.0005495721945391835 -0.2582896479551274 1.0 15522 +269019 Stk32a serine/threonine kinase 32A Novel U 0.0005494689940252634 -0.25829071690265804 1.0 15523 +66921 Prpf38b PRP38 pre-mRNA processing factor 38 (yeast) domain containing B Novel U 0.0005494162554992179 -0.2582912631665771 1.0 15524 +22757 Zkscan5 zinc finger with KRAB and SCAN domains 5 Novel U 0.0005493193363921443 -0.25829226705150216 1.0 15525 +69994 Rsc1a1 regulatory solute carrier protein, family 1, member 1 Novel U 0.0005490597984547433 -0.25829495533692587 1.0 15526 +227541 Camk1d calcium/calmodulin-dependent protein kinase ID Novel U 0.0005489580127478539 -0.2582960096299318 1.0 15527 +70941 4921539E11Rik RIKEN cDNA 4921539E11 gene Novel U 0.0005489422744773884 -0.2582961726464199 1.0 15528 +269642 Nat8l N-acetyltransferase 8-like Novel N 0.0005489162756141278 -0.2582964419417909 1.0 15529 +328250 Nutm2 NUT family member 2 Novel U 0.0005487570436797286 -0.258298091260933 1.0 15530 +94181 Nans N-acetylneuraminic acid synthase (sialic acid synthase) Novel U 0.0005482151832600197 -0.2583037038333476 1.0 15531 +56451 Suclg1 succinate-CoA ligase, GDP-forming, alpha subunit Novel N 0.0005481518157806196 -0.2583043601916161 1.0 15532 +110172 Slc35b1 solute carrier family 35, member B1 Novel U 0.0005478471089644012 -0.2583075163348018 1.0 15533 +235712 Mrgpra2b MAS-related GPR, member A2B Novel U 0.0005476793729939056 -0.2583092537384702 1.0 15534 +30791 Slc39a1 solute carrier family 39 (zinc transporter), member 1 Novel N 0.0005476422304862675 -0.25830963845934335 1.0 15535 +15229 Foxd1 forkhead box D1 Novel U 0.0005475939104402169 -0.2583101389567919 1.0 15536 +331401 Thoc2 THO complex 2 Novel U 0.0005471604515918207 -0.2583146287092944 1.0 15537 +70701 Nipal1 NIPA-like domain containing 1 Novel U 0.0005470541050669665 -0.25831573024310284 1.0 15538 +15495 Hsd3b4 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 4 Novel U 0.0005470411038413017 -0.2583158649093709 1.0 15539 +75528 Tex29 testis expressed 29 Novel U 0.0005469873421149559 -0.25831642177156505 1.0 15540 +105559 Mbnl2 muscleblind like splicing factor 2 Novel N 0.0005467706236762156 -0.2583186665340293 1.0 15541 +73744 Man2c1 mannosidase, alpha, class 2C, member 1 Novel U 0.0005465808669720506 -0.25832063202773314 1.0 15542 +231464 Cnot6l CCR4-NOT transcription complex, subunit 6-like Novel U 0.0005462515234443831 -0.25832404335716613 1.0 15543 +73934 Cldn34c4 claudin 34C4 Novel U 0.0005461109743596812 -0.25832549915996517 1.0 15544 +74616 Scrn3 secernin 3 Novel U 0.0005456464634485949 -0.2583303105487122 1.0 15545 +433278 Khdc1c KH domain containing 1C Novel U 0.0005455195092868902 -0.25833162553574573 1.0 15546 +100038347 Fam174b family with sequence similarity 174, member B Novel U 0.0005453429747241889 -0.258333454074943 1.0 15547 +15353 Hmg20b high mobility group 20B Novel U 0.0005451514136448981 -0.2583354382583051 1.0 15548 +75339 Mphosph8 M-phase phosphoprotein 8 Novel U 0.0005449448282688207 -0.2583375780628393 1.0 15549 +320678 Iffo1 intermediate filament family orphan 1 Novel U 0.0005448052182614771 -0.25833902413870596 1.0 15550 +58804 Cdc42ep5 CDC42 effector protein 5 Novel U 0.0005446970614459036 -0.2583401444234462 1.0 15551 +76793 Snip1 Smad nuclear interacting protein 1 Novel U 0.0005445953165741771 -0.25834119829348284 1.0 15552 +67045 Riok2 RIO kinase 2 Novel U 0.00054422052426819 -0.25834508037986764 1.0 15553 +50878 Stag3 STAG3 cohesin complex component Novel U 0.0005442032319554713 -0.2583452594930743 1.0 15554 +68501 Nsmce2 NSE2/MMS21 homolog, SMC5-SMC6 complex SUMO ligase Novel U 0.0005440648752470175 -0.25834669258731224 1.0 15555 +57028 Pdxp pyridoxal (pyridoxine, vitamin B6) phosphatase Novel U 0.0005438577236147128 -0.2583488382571099 1.0 15556 +15571 Elavl3 ELAV like RNA binding protein 3 Novel U 0.0005438369181966447 -0.25834905375894635 1.0 15557 +100503068 Smim43 small integral membrane protein 43 Novel U 0.0005433536059741704 -0.2583540598910587 1.0 15558 +67332 Snrpd3 small nuclear ribonucleoprotein D3 Novel N 0.0005433294170811862 -0.258354310438817 1.0 15559 +14645 Glul glutamate-ammonia ligase Novel U 0.0005433000522082203 -0.2583546145992059 1.0 15560 +21976 Top3b topoisomerase (DNA) III beta Novel U 0.0005430303336549183 -0.2583574083351145 1.0 15561 +77766 Elp4 elongator acetyltransferase complex subunit 4 Novel U 0.0005429965656548261 -0.2583577581029494 1.0 15562 +631145 Fam90a1b family with sequence similarity 90, member A1B Novel U 0.0005429536732716751 -0.25835820238084406 1.0 15563 +230590 Zyg11a zyg-11 family member A, cell cycle regulator Novel U 0.0005424823828156592 -0.25836308399189467 1.0 15564 +67851 Mtres1 mitochondrial transcription rescue factor 1 Novel U 0.0005421277891136187 -0.2583667568618037 1.0 15565 +65255 Asb4 ankyrin repeat and SOCS box-containing 4 Novel U 0.0005419684136327476 -0.2583684076677954 1.0 15566 +17864 Mybl1 myeloblastosis oncogene-like 1 Novel N 0.0005418556192826926 -0.25836957598796534 1.0 15567 +66505 Zmynd11 zinc finger, MYND domain containing 11 Novel U 0.0005416629815471341 -0.25837157132329763 1.0 15568 +320508 Cachd1 cache domain containing 1 Novel U 0.0005414462289240778 -0.2583738164398419 1.0 15569 +66183 Sptssb serine palmitoyltransferase, small subunit B Novel N 0.0005413825678625218 -0.2583744758390248 1.0 15570 +11950 Atp5pb ATP synthase peripheral stalk-membrane subunit b Novel N 0.0005409747071899642 -0.25837870044646344 1.0 15571 +665956 Defa43 defensin, alpha, 43 Novel U 0.0005407974351488475 -0.25838053662443783 1.0 15572 +232431 Gprc5a G protein-coupled receptor, family C, group 5, member A Novel N 0.0005404971413127847 -0.2583836470581201 1.0 15573 +105000 Dnal1 dynein, axonemal, light chain 1 Novel N 0.0005403829358521497 -0.25838482999452705 1.0 15574 +107656 Krt9 keratin 9 Novel U 0.0005400848743788426 -0.25838791730546934 1.0 15575 +102278 Cpne7 copine VII Novel N 0.0005400296603553366 -0.2583884892105097 1.0 15576 +503491 Defa24 defensin, alpha, 24 Novel U 0.0005398541934713144 -0.25839030669072627 1.0 15577 +442829 Ccin calicin Novel U 0.0005398149311631021 -0.25839071336842406 1.0 15578 +102902673 Gm21992 predicted gene 21992 Novel U 0.0005396313381057513 -0.2583926150192768 1.0 15579 +319622 Itpripl2 inositol 1,4,5-triphosphate receptor interacting protein-like 2 Novel U 0.000539365942218434 -0.2583953639811532 1.0 15580 +319942 A530016L24Rik RIKEN cDNA A530016L24 gene Novel U 0.0005392809451800905 -0.25839624437768227 1.0 15581 +12469 Cct8 chaperonin containing TCP1 subunit 8 Novel U 0.0005390419089218236 -0.2583987203073875 1.0 15582 +67717 Lipf lipase, gastric Novel U 0.0005387547599783397 -0.2584016945867046 1.0 15583 +116871 Mta3 metastasis associated 3 Novel N 0.0005385316367080938 -0.258404005690203 1.0 15584 +100503659 Cbarp calcium channel, voltage-dependent, beta subunit associated regulatory protein Novel U 0.0005381985534011437 -0.2584074557561469 1.0 15585 +100041895 Defa37 defensin, alpha, 37 Novel U 0.0005381719808110866 -0.2584077309941612 1.0 15586 +320024 Nceh1 neutral cholesterol ester hydrolase 1 Novel U 0.0005381272196099786 -0.2584081946292108 1.0 15587 +56448 Cyp2d22 cytochrome P450, family 2, subfamily d, polypeptide 22 Novel U 0.0005380859532692388 -0.2584086220646116 1.0 15588 +100039008 Mup10 major urinary protein 10 Novel U 0.0005378276170678539 -0.25841129790249323 1.0 15589 +333452 H2al1o H2A histone family member L1O Novel U 0.0005372361801747387 -0.25841742398638967 1.0 15590 +110391 Qdpr quinoid dihydropteridine reductase Novel U 0.0005372300814787568 -0.25841748715648216 1.0 15591 +76457 Ccdc134 coiled-coil domain containing 134 Novel N 0.0005371780584082439 -0.2584180260097364 1.0 15592 +56454 Aldh18a1 aldehyde dehydrogenase 18 family, member A1 Novel U 0.0005369960244346244 -0.25841991151165106 1.0 15593 +70059 Degs2 delta 4-desaturase, sphingolipid 2 Novel N 0.000536669144040298 -0.2584232973280299 1.0 15594 +67255 Zfp422 zinc finger protein 422 Novel U 0.000536012884293541 -0.2584300948449134 1.0 15595 +545432 Cwc22rt3 CWC22 spliceosome-associated protein, retrotransposed 3 Novel U 0.0005359502196529989 -0.2584307439232002 1.0 15596 +241296 Lrrc8a leucine rich repeat containing 8A VRAC subunit A Novel U 0.0005359116833838849 -0.2584311430806088 1.0 15597 +232813 Shisa7 shisa family member 7 Novel U 0.0005358373644946319 -0.2584319128732206 1.0 15598 +209361 Taf3 TATA-box binding protein associated factor 3 Novel U 0.0005358292945357458 -0.2584319964615895 1.0 15599 +668923 Zfp442 zinc finger protein 442 Novel U 0.0005357737820412897 -0.2584325714581822 1.0 15600 +22294 Uxt ubiquitously expressed prefoldin like chaperone Novel U 0.0005354220957364696 -0.25843621421336643 1.0 15601 +93732 Acox2 acyl-Coenzyme A oxidase 2, branched chain Novel N 0.0005352876606586671 -0.258437606687483 1.0 15602 +432720 Akr1c19 aldo-keto reductase family 1, member C19 Novel U 0.000535285346703748 -0.25843763065535197 1.0 15603 +100043761 Gm14399 predicted gene 14399 Novel U 0.0005352847949654973 -0.25843763637023864 1.0 15604 +195434 Utp14b UTP14B small subunit processome component Novel U 0.000535212591894407 -0.25843838424727544 1.0 15605 +319482 Fcgbpl1 Fc fragment of IgG binding protein like 1 Novel U 0.0005351868399044777 -0.2584386509855406 1.0 15606 +231605 Galnt9 polypeptide N-acetylgalactosaminyltransferase 9 Novel N 0.0005351196983501299 -0.2584393464355534 1.0 15607 +623272 Msantd5f8 Myb/SANT DNA binding domain containing 5 family member 8 Novel U 0.0005350504572047706 -0.2584400636330608 1.0 15608 +12544 Cdc45 cell division cycle 45 Novel U 0.0005350412696282806 -0.25844015879767607 1.0 15609 +22785 Slc30a4 solute carrier family 30 (zinc transporter), member 4 Novel U 0.0005349560727041205 -0.2584410412646158 1.0 15610 +13003 Vcan versican Novel N 0.0005348941717915919 -0.2584416824322329 1.0 15611 +18949 Pnn pinin Novel N 0.0005346296715547072 -0.2584444221169916 1.0 15612 +16656 Hivep3 human immunodeficiency virus type I enhancer binding protein 3 Novel N 0.0005345882462756477 -0.25844485119867033 1.0 15613 +238939 Cdhr18 cadherin related family member 18 Novel U 0.0005342499939774765 -0.25844835480485534 1.0 15614 +56771 Med20 mediator complex subunit 20 Novel N 0.0005339855928021787 -0.25845109346353734 1.0 15615 +17341 Bhlha15 basic helix-loop-helix family, member a15 Novel U 0.0005338442482439351 -0.2584525575058252 1.0 15616 +100503733 LOC100503733 PRAME family member 8-like Novel U 0.0005338108662588099 -0.2584529032753297 1.0 15617 +14385 Slc37a4 solute carrier family 37 (glucose-6-phosphate transporter), member 4 Novel U 0.0005336664007730187 -0.2584543996440825 1.0 15618 +71279 Slc29a3 solute carrier family 29 (nucleoside transporters), member 3 Novel U 0.0005335186371078746 -0.25845593017526863 1.0 15619 +242297 Fam110b family with sequence similarity 110, member B Novel U 0.00053343966878328 -0.2584567481265788 1.0 15620 +100502940 Pou2af3 POU class 2 homeobox associating factor 3 Novel U 0.0005332370845469652 -0.25845884648743894 1.0 15621 +74197 Gtf2e1 general transcription factor II E, polypeptide 1 (alpha subunit) Novel N 0.0005330689108702187 -0.2584605884248543 1.0 15622 +66645 Pspc1 paraspeckle protein 1 Novel U 0.0005329714254701092 -0.25846159817542397 1.0 15623 +55993 Msh4 mutS homolog 4 Novel N 0.0005329192114979745 -0.2584621390060309 1.0 15624 +380924 Olfm4 olfactomedin 4 Novel U 0.0005328834244691344 -0.25846250968689916 1.0 15625 +56194 Prpf40a pre-mRNA processing factor 40A Novel U 0.0005324440118124799 -0.2584670611087519 1.0 15626 +68106 Nt5c3b 5'-nucleotidase, cytosolic IIIB Novel U 0.0005324068079057695 -0.2584674464655946 1.0 15627 +17701 Msx1 msh homeobox 1 Novel U 0.0005323716062662454 -0.2584678110830196 1.0 15628 +232984 B3gnt8 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 8 Novel N 0.000532317531938242 -0.2584683711831315 1.0 15629 +216177 AU041133 expressed sequence AU041133 Novel U 0.0005321089422210973 -0.2584705317485646 1.0 15630 +75710 Rbm12 RNA binding motif protein 12 Novel U 0.0005320918048012404 -0.2584707092573961 1.0 15631 +219189 Vwa8 von Willebrand factor A domain containing 8 Novel N 0.000531947287280923 -0.25847220616512084 1.0 15632 +22234 Ugcg UDP-glucose ceramide glucosyltransferase Novel N 0.0005318922861760277 -0.25847277586475725 1.0 15633 +235132 Zbtb44 zinc finger and BTB domain containing 44 Novel U 0.0005317694184525167 -0.2584740485245983 1.0 15634 +239337 Adamts12 ADAM metallopeptidase with thrombospondin type 1 motif 12 Novel U 0.0005314734926285565 -0.2584771137145549 1.0 15635 +12351 Car4 carbonic anhydrase 4 Novel N 0.0005314690855434528 -0.2584771593629975 1.0 15636 +233781 Xylt1 xylosyltransferase 1 Novel U 0.0005314317200092772 -0.2584775463939722 1.0 15637 +70312 Cactin cactin, spliceosome C complex subunit Novel U 0.0005312558450512829 -0.25847936810100547 1.0 15638 +245446 Slitrk4 SLIT and NTRK-like family, member 4 Novel N 0.0005312192674413077 -0.2584797469706872 1.0 15639 +238831 Ppwd1 peptidylprolyl isomerase domain and WD repeat containing 1 Novel N 0.0005309452128915157 -0.2584825856187049 1.0 15640 +209760 Tmc7 transmembrane channel-like gene family 7 Novel U 0.0005307586341775503 -0.2584845181948907 1.0 15641 +117148 Necab2 N-terminal EF-hand calcium binding protein 2 Novel U 0.0005307429605358731 -0.25848468054195595 1.0 15642 +57276 Vsig2 V-set and immunoglobulin domain containing 2 Novel U 0.0005306218558321412 -0.2584859349404961 1.0 15643 +69256 Zfp397 zinc finger protein 397 Novel U 0.0005306031438992826 -0.2584861287580815 1.0 15644 +29862 Ninj2 ninjurin 2 Novel N 0.0005305936129750833 -0.25848622747908107 1.0 15645 +68854 Asb11 ankyrin repeat and SOCS box-containing 11 Novel U 0.0005304757606481017 -0.2584874481896097 1.0 15646 +110115 Cyp11b1 cytochrome P450, family 11, subfamily b, polypeptide 1 Novel U 0.0005302745892871747 -0.2584895319159531 1.0 15647 +269800 Zfp384 zinc finger protein 384 Novel U 0.0005302455204428129 -0.2584898330100874 1.0 15648 +100042254 Btbd35f4 BTB domain containing 35, family member 4 Novel U 0.0005299816328616964 -0.25849256634897777 1.0 15649 +230801 Pigv phosphatidylinositol glycan anchor biosynthesis, class V Novel U 0.0005299270731437244 -0.25849313147674297 1.0 15650 +232784 Zfp212 Zinc finger protein 212 Novel U 0.0005299009892249531 -0.25849340165311613 1.0 15651 +57813 Tk2 thymidine kinase 2, mitochondrial Novel U 0.0005296114873480235 -0.25849640030404053 1.0 15652 +75571 Spata9 spermatogenesis associated 9 Novel U 0.0005295887899333187 -0.2584966354031159 1.0 15653 +17751 Mt3 metallothionein 3 Novel U 0.0005293979799193571 -0.2584986118069679 1.0 15654 +26901 Ss18l2 SS18, nBAF chromatin remodeling complex subunit like 2 Novel U 0.0005291744430511849 -0.2585009271945001 1.0 15655 +18040 Nefm neurofilament, medium polypeptide Novel U 0.0005286052687753662 -0.2585068226829384 1.0 15656 +231889 Bud31 BUD31 homolog Novel U 0.0005285062355731186 -0.25850784846559177 1.0 15657 +18628 Per3 period circadian clock 3 Novel N 0.0005284792762916698 -0.2585081277089428 1.0 15658 +170728 Rtn4ip1 reticulon 4 interacting protein 1 Novel N 0.0005284347854856119 -0.2585085885432494 1.0 15659 +75656 1700020A23Rik RIKEN cDNA 1700020A23 gene Novel U 0.0005281040923859812 -0.2585120138515044 1.0 15660 +100043025 Vmn1r248 vomeronasal 1 receptor 248 Novel U 0.000527780579974641 -0.2585153647824262 1.0 15661 +435845 Tmprss11c transmembrane protease, serine 11c Novel U 0.0005275797843776327 -0.2585174446166192 1.0 15662 +20017 Polr1b polymerase (RNA) I polypeptide B Novel U 0.0005275172924070468 -0.2585180919063962 1.0 15663 +67276 Eri1 exoribonuclease 1 Novel U 0.0005273816933574561 -0.2585194964368943 1.0 15664 +240334 Pcyox1l prenylcysteine oxidase 1 like Novel U 0.0005272807637039758 -0.2585205418629271 1.0 15665 +71832 Csl citrate synthase like Novel U 0.0005272592219375719 -0.2585207649918354 1.0 15666 +269997 Zfp747 zinc finger protein 747 Novel U 0.0005269951320674513 -0.2585235004260286 1.0 15667 +74685 Lrrc74b leucine rich repeat containing 74B Novel U 0.000526457927778507 -0.2585290647703939 1.0 15668 +235300 Tlcd5 TLC domain containing 5 Novel U 0.0005264525620320676 -0.25852912034861913 1.0 15669 +58865 Tdh L-threonine dehydrogenase Novel U 0.0005263970009287147 -0.25852969584870117 1.0 15670 +104009 Qsox1 quiescin Q6 sulfhydryl oxidase 1 Novel U 0.0005262966094219594 -0.25853073570062796 1.0 15671 +71772 Plbd2 phospholipase B domain containing 2 Novel U 0.0005258514415282185 -0.2585353467350372 1.0 15672 +72084 Pigx phosphatidylinositol glycan anchor biosynthesis, class X Novel U 0.0005258073028960841 -0.2585358039215379 1.0 15673 +20666 Sox11 SRY (sex determining region Y)-box 11 Novel U 0.0005256697782071143 -0.25853722839774534 1.0 15674 +52469 Coa3 cytochrome C oxidase assembly factor 3 Novel U 0.0005256295291863463 -0.25853764529577933 1.0 15675 +69938 Scrn1 secernin 1 Novel U 0.0005256066959549665 -0.2585378818016394 1.0 15676 +224691 Zfp472 zinc finger protein 472 Novel U 0.0005255793123973986 -0.2585381654396285 1.0 15677 +210148 Slc30a6 solute carrier family 30 (zinc transporter), member 6 Novel N 0.0005253324854445863 -0.2585407220650917 1.0 15678 +56503 Ankrd49 ankyrin repeat domain 49 Novel N 0.0005253000679698896 -0.2585410578442289 1.0 15679 +94214 Spock2 sparc/osteonectin, cwcv and kazal-like domains proteoglycan 2 Novel N 0.000525193961846372 -0.2585421568879683 1.0 15680 +228993 Slc17a9 solute carrier family 17, member 9 Novel N 0.0005250573368624215 -0.25854357204506073 1.0 15681 +23967 Osr1 odd-skipped related transcription factor 1 Novel U 0.00052499205236072 -0.2585442482597833 1.0 15682 +15404 Hoxa7 homeobox A7 Novel U 0.000524895329320375 -0.25854525011385554 1.0 15683 +226646 Ndufs2 NADH:ubiquinone oxidoreductase core subunit S2 Novel N 0.0005248639135436949 -0.2585455755174377 1.0 15684 +231832 Tmem184a transmembrane protein 184a Novel U 0.0005248460641839107 -0.2585457604005195 1.0 15685 +67737 Ttc39d tetratricopeptide repeat domain 39D Novel U 0.0005248164617883767 -0.25854606702115934 1.0 15686 +218820 Zfp503 zinc finger protein 503 Novel N 0.0005246843689327283 -0.2585474352346158 1.0 15687 +244551 Nanos3 nanos C2HC-type zinc finger 3 Novel N 0.0005245509766773466 -0.2585488169072121 1.0 15688 +57344 As3mt arsenite methyltransferase Novel N 0.0005242405732023493 -0.25855203205620214 1.0 15689 +27029 Sgsh N-sulfoglucosamine sulfohydrolase (sulfamidase) Novel U 0.0005239180295432848 -0.25855537295281966 1.0 15690 +56517 Slc22a21 solute carrier family 22 (organic cation transporter), member 21 Novel U 0.000523478758640715 -0.25855992290638824 1.0 15691 +50880 Scly selenocysteine lyase Novel N 0.0005233362818326805 -0.25856139867648215 1.0 15692 +76373 Zfp773 zinc finger protein 773 Novel U 0.000523010935773669 -0.2585647686002662 1.0 15693 +319625 Galm galactose mutarotase Novel U 0.0005228798315697977 -0.25856612657330014 1.0 15694 +68243 A930018P22Rik RIKEN cDNA A930018P22 gene Novel U 0.0005228450048301914 -0.2585664873075241 1.0 15695 +448850 Znhit3 zinc finger, HIT type 3 Novel N 0.0005227907787940073 -0.25856704897902427 1.0 15696 +239368 Erich5 glutamate rich 5 Novel U 0.0005227055263214577 -0.25856793202133244 1.0 15697 +385668 Lca5l Leber congenital amaurosis 5-like Novel U 0.0005226920354344227 -0.25856807175949686 1.0 15698 +74051 Steap2 six transmembrane epithelial antigen of prostate 2 Novel U 0.0005224977435738018 -0.25857008422820216 1.0 15699 +15354 Hmgb3 high mobility group box 3 Novel U 0.000522449447348628 -0.25857058447891484 1.0 15700 +240332 Slc6a7 solute carrier family 6 (neurotransmitter transporter, L-proline), member 7 Novel N 0.0005224341864299325 -0.25857074255100904 1.0 15701 +69564 Nmrk2 nicotinamide riboside kinase 2 Novel N 0.000521622284596809 -0.2585791522035067 1.0 15702 +226432 Ipo9 importin 9 Novel U 0.0005213560257955754 -0.2585819101034171 1.0 15703 +320997 Cyp4f39 cytochrome P450, family 4, subfamily f, polypeptide 39 Novel U 0.0005211876562197736 -0.25858365406994843 1.0 15704 +30926 Glrx3 glutaredoxin 3 Novel N 0.000521164492671813 -0.2585838939972167 1.0 15705 +11518 Add1 adducin 1 Novel U 0.0005210335532726815 -0.2585852502632085 1.0 15706 +66970 Ssbp2 single-stranded DNA binding protein 2 Novel U 0.0005209583990830927 -0.2585860287078337 1.0 15707 +75770 Brsk2 BR serine/threonine kinase 2 Novel U 0.0005208501437098268 -0.2585871500134313 1.0 15708 +216011 Lrrc20 leucine rich repeat containing 20 Novel U 0.0005207582581297708 -0.25858810176124897 1.0 15709 +66094 Lsm7 LSM7 homolog, U6 small nuclear RNA and mRNA degradation associated Novel N 0.0005205482935541315 -0.2585902765674212 1.0 15710 +211986 Tmem18 transmembrane protein 18 Novel N 0.0005201025089151764 -0.25859489399005714 1.0 15711 +210762 Ppp1r36 protein phosphatase 1, regulatory subunit 36 Novel U 0.0005199334455240311 -0.25859664514310493 1.0 15712 +276852 Mtnap1 mitochondrial nucleoid associated protein 1 Novel U 0.0005198432718108708 -0.2585975791594615 1.0 15713 +75202 Spaca6 sperm acrosome associated 6 Novel U 0.0005197504806624971 -0.25859854028712603 1.0 15714 +232313 Gxylt2 glucoside xylosyltransferase 2 Novel N 0.0005197128791369759 -0.2585989297624913 1.0 15715 +94219 Cnnm2 cyclin M2 Novel N 0.0005195878532045772 -0.2586002247769891 1.0 15716 +381580 Ccdc27 coiled-coil domain containing 27 Novel U 0.0005195812054013424 -0.2586002936347165 1.0 15717 +75689 Higd1b HIG1 domain family, member 1B Novel U 0.0005195554405706222 -0.2586005605059861 1.0 15718 +12607 Cebpz CCAAT/enhancer binding protein zeta Novel N 0.0005195508630927006 -0.2586006079193519 1.0 15719 +73075 Ppil6 peptidylprolyl isomerase (cyclophilin)-like 6 Novel U 0.0005195371786010722 -0.2586007496628664 1.0 15720 +65963 Tmem176b transmembrane protein 176B Novel U 0.0005194726304737383 -0.2586014182502474 1.0 15721 +73456 Izumo1 izumo sperm-egg fusion 1 Novel U 0.0005193424111260726 -0.2586027670579698 1.0 15722 +243866 Meiosin meiosis initiator Novel U 0.0005189554062071477 -0.2586067756421979 1.0 15723 +71103 Glt6d1 glycosyltransferase 6 domain containing 1 Novel U 0.0005189134426240184 -0.2586072102996125 1.0 15724 +83428 Ucn3 urocortin 3 Novel N 0.0005188882037509366 -0.25860747172303017 1.0 15725 +71200 Dydc2 DPY30 domain containing 2 Novel U 0.0005187622186016642 -0.2586087766730648 1.0 15726 +12709 Ckb creatine kinase, brain Novel U 0.0005185249337131181 -0.25861123446214007 1.0 15727 +223978 Cpped1 calcineurin-like phosphoesterase domain containing 1 Novel U 0.000518338899031956 -0.25861316140325197 1.0 15728 +116870 Mta1 metastasis associated 1 Novel U 0.0005182214096815303 -0.2586143783540814 1.0 15729 +15422 Hoxc13 homeobox C13 Novel N 0.0005181925070447038 -0.25861467772664354 1.0 15730 +242466 Zfp462 zinc finger protein 462 Novel U 0.0005181222758388269 -0.2586154051791653 1.0 15731 +100043523 Vmn1r242 vomeronasal 1 receptor 242 Novel U 0.0005178954313907261 -0.2586177548265016 1.0 15732 +18768 Pkib protein kinase inhibitor beta, cAMP dependent, testis specific Novel U 0.0005173611997494986 -0.25862328838027954 1.0 15733 +69286 Glipr1l1 GLI pathogenesis-related 1 like 1 Novel U 0.0005171229661201489 -0.2586257559963808 1.0 15734 +70788 Klhl30 kelch-like 30 Novel U 0.0005170852661085603 -0.25862614649186155 1.0 15735 +233545 Emsy EMSY, BRCA2-interacting transcriptional repressor Novel U 0.0005168517268327187 -0.25862856548400354 1.0 15736 +620709 Lcn6 lipocalin 6 Novel U 0.000516779499595413 -0.25862931361135316 1.0 15737 +15379 Onecut1 one cut domain, family member 1 Novel U 0.0005165633103502882 -0.2586315528924473 1.0 15738 +66260 Tmem54 transmembrane protein 54 Novel U 0.000516360077208068 -0.25863365797465354 1.0 15739 +98685 Trmt1l tRNA methyltransferase 1 like Novel U 0.0005163027600924446 -0.258634251663453 1.0 15740 +26611 Rcn2 reticulocalbin 2 Novel U 0.0005161933235119609 -0.25863538520395607 1.0 15741 +239931 Cldn17 claudin 17 Novel U 0.0005160209852550337 -0.258637170277956 1.0 15742 +66132 Prorp protein only RNase P catalytic subunit Novel U 0.0005159914893222106 -0.25863747579585855 1.0 15743 +209195 Clic6 chloride intracellular channel 6 Novel U 0.0005156728270872424 -0.2586407764888129 1.0 15744 +26447 Poli polymerase (DNA directed), iota Novel N 0.0005156657540641105 -0.25864084975095397 1.0 15745 +214601 Slc10a3 solute carrier family 10 (sodium/bile acid cotransporter family), member 3 Novel U 0.0005156550708002388 -0.25864096040785 1.0 15746 +13619 Phc1 polyhomeotic 1 Novel N 0.0005155772778538616 -0.25864176618463125 1.0 15747 +60534 Fancg Fanconi anemia, complementation group G Novel U 0.000515492181773436 -0.2586426476070349 1.0 15748 +242546 Cyp2j12 cytochrome P450, family 2, subfamily j, polypeptide 12 Novel U 0.0005154830032698603 -0.25864274267767323 1.0 15749 +16508 Kcnd2 potassium voltage-gated channel, Shal-related family, member 2 Novel N 0.0005154004124630189 -0.2586435981505355 1.0 15750 +667929 Prb1c proline-rich protein BstNI subfamily 1C Novel U 0.0005151469051022004 -0.2586462239714452 1.0 15751 +74645 Tent5c terminal nucleotidyltransferase 5C Novel N 0.0005150910259750331 -0.2586468027656075 1.0 15752 +320586 A630089N07Rik RIKEN cDNA A630089N07 gene Novel U 0.0005150225918694291 -0.2586475116038237 1.0 15753 +232536 Mrps35 mitochondrial ribosomal protein S35 Novel U 0.0005148631056635078 -0.2586491635567018 1.0 15754 +110749 Chaf1b chromatin assembly factor 1, subunit B Novel N 0.0005147226828980763 -0.25865061805108996 1.0 15755 +69227 Selenot selenoprotein T Novel N 0.0005146053693544257 -0.2586518331809186 1.0 15756 +56505 Ruvbl1 RuvB-like AAA ATPase 1 Novel U 0.0005145506324360738 -0.25865240014411955 1.0 15757 +103161 Apof apolipoprotein F Novel N 0.0005145460764337543 -0.25865244733504184 1.0 15758 +22439 Xk X-linked Kx blood group Novel N 0.0005145252040211602 -0.25865266353080535 1.0 15759 +270906 Prr11 proline rich 11 Novel N 0.0005145066646548128 -0.2586528555609525 1.0 15760 +331493 Gm5127 predicted gene 5127 Novel U 0.0005143774039089216 -0.2586541944395092 1.0 15761 +320632 Snrnp200 small nuclear ribonucleoprotein 200 (U5) Novel N 0.0005142958685693266 -0.2586550389798764 1.0 15762 +243312 Elfn1 leucine rich repeat and fibronectin type III, extracellular 1 Novel U 0.0005142045253982492 -0.25865598510943966 1.0 15763 +231004 Samd11 sterile alpha motif domain containing 11 Novel U 0.0005140562101545583 -0.2586575213538582 1.0 15764 +16661 Krt10 keratin 10 Novel U 0.0005140009409519545 -0.2586580938304419 1.0 15765 +406220 Krt77 keratin 77 Novel U 0.0005139906171755051 -0.25865820076377904 1.0 15766 +67869 Paip2 polyadenylate-binding protein-interacting protein 2 Novel N 0.0005137821416263679 -0.2586603601466637 1.0 15767 +215951 Afg1l AFG1 like ATPase Novel N 0.0005136327443410162 -0.25866190759883423 1.0 15768 +269400 Rtel1 regulator of telomere elongation helicase 1 Novel U 0.000513490391580633 -0.25866338208404666 1.0 15769 +76142 Ppp1r14c protein phosphatase 1, regulatory inhibitor subunit 14C Novel U 0.0005134707556890882 -0.2586635854719658 1.0 15770 +70120 Yars2 tyrosyl-tRNA synthetase 2 (mitochondrial) Novel N 0.0005134414756331613 -0.25866388875382257 1.0 15771 +71405 Fam83c family with sequence similarity 83, member C Novel U 0.0005133768435257769 -0.2586645582110662 1.0 15772 +233905 Zfp646 zinc finger protein 646 Novel U 0.0005132512938320232 -0.2586658586506668 1.0 15773 +211936 Ccdc73 coiled-coil domain containing 73 Novel U 0.0005130356085457144 -0.25866809271177216 1.0 15774 +192160 Casc3 exon junction complex subunit Novel N 0.0005128318518367858 -0.2586702032170651 1.0 15775 +70103 Znhit1 zinc finger, HIT domain containing 1 Novel N 0.0005127716350359062 -0.25867082694070914 1.0 15776 +56009 Alyref2 Aly/REF export factor 2 Novel U 0.000512710835056945 -0.2586714567048925 1.0 15777 +192185 Nadk NAD kinase Novel U 0.0005127089097296027 -0.25867147664736984 1.0 15778 +69942 Rnf113a1 ring finger protein 113A1 Novel U 0.0005122277847910538 -0.2586764601236672 1.0 15779 +64075 Smoc1 SPARC related modular calcium binding 1 Novel U 0.0005121181420230524 -0.25867759579985383 1.0 15780 +73845 Ankrd42 ankyrin repeat domain 42 Novel U 0.0005119072781005277 -0.25867977992143154 1.0 15781 +13863 Lcn5 lipocalin 5 Novel U 0.0005113681489614018 -0.2586853642033317 1.0 15782 +16597 Klf12 Kruppel-like transcription factor 12 Novel N 0.0005113250922875282 -0.2586858101829443 1.0 15783 +66569 Gdpd1 glycerophosphodiester phosphodiesterase domain containing 1 Novel N 0.000511237654194937 -0.25868671586383296 1.0 15784 +66950 Pacc1 proton activated chloride channel 1 Novel N 0.0005110733481185374 -0.258688417740771 1.0 15785 +100041639 Dynlt2a2 dynein light chain Tctex-type 2A2 Novel U 0.000510950087672145 -0.2586896944684228 1.0 15786 +26922 Mecr mitochondrial trans-2-enoyl-CoA reductase Novel N 0.0005106013013222928 -0.25869330718596883 1.0 15787 +72836 Pot1b protection of telomeres 1B Novel U 0.0005105343711958772 -0.25869400044601804 1.0 15788 +100233207 Spmip2 sperm microtubule inner protein 2 Novel U 0.0005104383148284285 -0.25869499539471436 1.0 15789 +64929 Scel sciellin Novel U 0.0005103439383681071 -0.25869597294298796 1.0 15790 +108652 Slc35b3 solute carrier family 35, member B3 Novel N 0.0005103166182716555 -0.25869625592364887 1.0 15791 +71675 Sanbr SANT and BTB domain regulator of CSR Novel U 0.000510045425809979 -0.25869906492625194 1.0 15792 +20679 Sox6 SRY (sex determining region Y)-box 6 Novel U 0.0005100020586659561 -0.2586995141217041 1.0 15793 +109245 Lrrc39 leucine rich repeat containing 39 Novel U 0.0005098087950984735 -0.2587015159393829 1.0 15794 +194357 Moxd2 monooxygenase, DBH-like 2 Novel U 0.0005097740603847792 -0.25870187572040554 1.0 15795 +170791 Rbm39 RNA binding motif protein 39 Novel N 0.0005097508897266157 -0.25870211572132107 1.0 15796 +30943 Prss30 serine protease 30 Novel U 0.0005094734581193667 -0.2587049893487889 1.0 15797 +11898 Ass1 argininosuccinate synthetase 1 Novel U 0.0005092057982535495 -0.2587077617608802 1.0 15798 +22690 Zfp28 zinc finger protein 28 Novel U 0.0005091781895877336 -0.25870804773053313 1.0 15799 +50794 Klf13 Kruppel-like transcription factor 13 Novel N 0.0005091719716239321 -0.25870811213599776 1.0 15800 +12409 Cbr2 carbonyl reductase 2 Novel U 0.0005089069937860978 -0.25871085676773137 1.0 15801 +54003 Nell2 NEL-like 2 Novel N 0.0005089013408154762 -0.25871091532101526 1.0 15802 +12279 C9 complement component 9 Novel U 0.000508745955853595 -0.2587125247933424 1.0 15803 +100039206 Mup17 major urinary protein 17 Novel U 0.0005086824533989384 -0.2587131825496802 1.0 15804 +70802 Pwwp2a PWWP domain containing 2A Novel N 0.0005085916833433109 -0.2587141227429325 1.0 15805 +434864 Gm15107 predicted gene 15107 Novel U 0.0005085582881179737 -0.25871446864957875 1.0 15806 +216964 Trp53i13 transformation related protein 53 inducible protein 13 Novel N 0.0005084383454982514 -0.2587157110112909 1.0 15807 +78912 Sp2 Sp2 transcription factor Novel N 0.0005083367194007463 -0.2587167636510681 1.0 15808 +71826 1700001F09Rik RIKEN cDNA 1700001F09 gene Novel U 0.0005080105796915045 -0.25872014179545516 1.0 15809 +74589 Kbtbd12 kelch repeat and BTB (POZ) domain containing 12 Novel U 0.0005079459139513109 -0.2587208116010663 1.0 15810 +330463 Zfp78 zinc finger protein 78 Novel U 0.000507780896637089 -0.2587225208449824 1.0 15811 +74729 Setmar SET domain without mariner transposase fusion Novel U 0.0005076100900539598 -0.2587242900539555 1.0 15812 +75560 Ep400 E1A binding protein p400 Novel N 0.000507546259124117 -0.25872495121262845 1.0 15813 +320184 Lrrc58 leucine rich repeat containing 58 Novel U 0.0005070438032877578 -0.2587301556336641 1.0 15814 +226180 Ina internexin neuronal intermediate filament protein, alpha Novel U 0.0005069985145999078 -0.25873062473240405 1.0 15815 +12405 Cbln2 cerebellin 2 precursor protein Novel U 0.0005068743895508395 -0.2587319104155819 1.0 15816 +105886299 Apoc2l apolipoprotein C2 like Novel U 0.0005068197870218308 -0.25873247598678245 1.0 15817 +107976 Babam2 BRISC and BRCA1 A complex member 2 Novel U 0.0005065987666119803 -0.25873476530892203 1.0 15818 +319173 H2ac10 H2A clustered histone 10 Novel U 0.0005065654433625431 -0.25873511047004427 1.0 15819 +68473 Mob1b MOB kinase activator 1B Novel N 0.0005064814360117891 -0.25873598061542175 1.0 15820 +105148 Iars1 isoleucyl-tRNA synthetase 1 Novel N 0.000506270748412461 -0.2587381629106496 1.0 15821 +433091 Pnpla1 patatin-like phospholipase domain containing 1 Novel U 0.0005061681263300988 -0.2587392258668052 1.0 15822 +100041449 Cyp3a59 cytochrome P450, family 3, subfamily a, polypeptide 59 Novel U 0.0005060097048601461 -0.25874086679118313 1.0 15823 +269854 Nat14 N-acetyltransferase 14 Novel U 0.0005058759377888284 -0.2587422523461105 1.0 15824 +75420 Secisbp2 SECIS binding protein 2 Novel N 0.0005057176774315743 -0.2587438916016884 1.0 15825 +67768 N6amt1 N-6 adenine-specific DNA methyltransferase 1 (putative) Novel N 0.0005055324824921632 -0.25874580984478285 1.0 15826 +23828 Bves blood vessel epicardial substance Novel U 0.000505419794556659 -0.2587469770627144 1.0 15827 +110637 Grik4 glutamate receptor, ionotropic, kainate 4 Novel N 0.0005053521224368656 -0.2587476780083066 1.0 15828 +15270 H2ax H2A.X variant histone Novel N 0.000505343000206169 -0.2587477724960723 1.0 15829 +98758 Hnrnpf heterogeneous nuclear ribonucleoprotein F Novel N 0.0005052774508894892 -0.25874845145373965 1.0 15830 +66042 Sostdc1 sclerostin domain containing 1 Novel U 0.0005051585713472188 -0.2587496828041306 1.0 15831 +71957 Ints11 integrator complex subunit 11 Novel N 0.0005050656648417413 -0.2587506451266602 1.0 15832 +15193 Hdgfl2 HDGF like 2 Novel N 0.0005050201483846953 -0.25875111658462596 1.0 15833 +75799 4930444P10Rik RIKEN cDNA 4930444P10 gene Novel U 0.0005048794674881567 -0.2587525737527277 1.0 15834 +244421 Lonrf1 LON peptidase N-terminal domain and ring finger 1 Novel U 0.0005047203654817401 -0.2587542217260799 1.0 15835 +76947 Ndufaf6 NADH:ubiquinone oxidoreductase complex assembly factor 6 Novel N 0.0005046712793315325 -0.2587547301588102 1.0 15836 +269116 Nfasc neurofascin Novel U 0.0005044949158320068 -0.25875655692614064 1.0 15837 +67065 Polr3d polymerase (RNA) III (DNA directed) polypeptide D Novel U 0.0005044894582017685 -0.2587566134560952 1.0 15838 +236790 Ints6l integrator complex subunit 6 like Novel U 0.0005044650969061668 -0.2587568657895942 1.0 15839 +244334 Defb8 defensin beta 8 Novel U 0.0005043923224560477 -0.25875761958495624 1.0 15840 +319415 Hs3st5 heparan sulfate (glucosamine) 3-O-sulfotransferase 5 Novel N 0.0005042769895131854 -0.258758814199787 1.0 15841 +101095 Zfp282 zinc finger protein 282 Novel N 0.0005042571237808193 -0.2587590199683898 1.0 15842 +240411 Loxhd1 lipoxygenase homology domains 1 Novel N 0.0005038034157825393 -0.25876371946092114 1.0 15843 +278672 Duxbl1 double homeobox B-like 1 Novel U 0.0005037433871622545 -0.2587643412353967 1.0 15844 +72117 Naa50 N(alpha)-acetyltransferase 50, NatE catalytic subunit Novel U 0.0005036536941306408 -0.25876527027286966 1.0 15845 +109959 Amy2a5 amylase 2a5 Novel U 0.0005034302830446487 -0.25876758435755415 1.0 15846 +74106 Dcaf6 DDB1 and CUL4 associated factor 6 Novel N 0.0005034002213650186 -0.25876789573544356 1.0 15847 +58193 Extl2 exostosin-like glycosyltransferase 2 Novel N 0.0005033536085766445 -0.2587683785491732 1.0 15848 +230903 Fbxo44 F-box protein 44 Novel U 0.0005029869807853738 -0.25877217606778297 1.0 15849 +74441 Slco6c1 solute carrier organic anion transporter family, member 6c1 Novel U 0.0005027906264943704 -0.25877420989907435 1.0 15850 +71843 R3hcc1 R3H domain and coiled-coil containing 1 Novel U 0.0005027150967160331 -0.2587749922340355 1.0 15851 +68776 Taf11 TATA-box binding protein associated factor 11 Novel U 0.0005026284916752269 -0.25877588928620116 1.0 15852 +12808 Cobl cordon-bleu WH2 repeat Novel U 0.0005026131057515013 -0.25877604865309334 1.0 15853 +242553 Kank4 KN motif and ankyrin repeat domains 4 Novel U 0.000502604517034506 -0.2587761376147416 1.0 15854 +545477 Bpifa6 BPI fold containing family A, member 6 Novel U 0.0005024877742552889 -0.25877734683261105 1.0 15855 +104130 Ndufb11 NADH:ubiquinone oxidoreductase subunit B11 Novel U 0.0005024318369105793 -0.2587779262297887 1.0 15856 +23964 Tenm2 teneurin transmembrane protein 2 Novel U 0.0005024276708353264 -0.2587779693818592 1.0 15857 +76612 Lrrc27 leucine rich repeat containing 27 Novel U 0.0005022646338554043 -0.2587796581135377 1.0 15858 +72190 2510009E07Rik RIKEN cDNA 2510009E07 gene Novel U 0.000502177016184811 -0.2587805656544894 1.0 15859 +14156 Fen1 flap structure specific endonuclease 1 Novel U 0.0005015178871106991 -0.25878739289177133 1.0 15860 +665290 LOC665290 PRAME family member 8 Novel U 0.0005014411985080478 -0.25878818722979663 1.0 15861 +67200 Ccdc77 coiled-coil domain containing 77 Novel U 0.0005011648207275248 -0.25879104994176183 1.0 15862 +69123 Eci3 enoyl-Coenzyme A delta isomerase 3 Novel U 0.0005011510602043138 -0.2587911924728089 1.0 15863 +613123 Ugt1a8 UDP glucuronosyltransferase 1 family, polypeptide A8 Novel U 0.0005010778793742637 -0.2587919504774409 1.0 15864 +102124 Enkd1 enkurin domain containing 1 Novel U 0.0005010505532899112 -0.2587922335201243 1.0 15865 +77634 Snapc3 small nuclear RNA activating complex, polypeptide 3 Novel N 0.0005009705998757252 -0.25879306167496013 1.0 15866 +67732 Iah1 isoamyl acetate-hydrolyzing esterase 1 homolog Novel U 0.0005009700184395352 -0.2587930676974571 1.0 15867 +66496 Ppdpf pancreatic progenitor cell differentiation and proliferation factor Novel U 0.0005009401411732569 -0.258793377165199 1.0 15868 +30936 Slc46a2 solute carrier family 46, member 2 Novel U 0.0005008954022388101 -0.2587938405696113 1.0 15869 +21843 Tial1 Tia1 cytotoxic granule-associated RNA binding protein-like 1 Novel N 0.0005005985958721002 -0.25879691488020073 1.0 15870 +668209 Cdc5lrt8 cell division cycle 5 like, retrotransposed 8 Novel U 0.0005001654631887155 -0.25880140125429674 1.0 15871 +17313 Mgp matrix Gla protein Novel U 0.0005001615384481233 -0.2588014419066308 1.0 15872 +170460 Stard5 StAR related lipid transfer domain containing 5 Novel U 0.0005001532130638584 -0.2588015281406873 1.0 15873 +67115 Rpl14 ribosomal protein L14 Novel N 0.0005000819100718222 -0.25880226669473483 1.0 15874 +338348 Ttc16 tetratricopeptide repeat domain 16 Novel U 0.0004999495436049812 -0.2588036377422471 1.0 15875 +225995 D030056L22Rik RIKEN cDNA D030056L22 gene Novel U 0.0004997743099287728 -0.25880545280690476 1.0 15876 +14581 Gfi1 growth factor independent 1 transcription repressor Novel U 0.0004996946375365565 -0.2588062780509242 1.0 15877 +239102 Zfhx2 zinc finger homeobox 2 Novel U 0.0004994435675927596 -0.2588088786251486 1.0 15878 +68550 Tefm transcription elongation factor, mitochondrial Novel N 0.000499437098837093 -0.25880894562830714 1.0 15879 +232966 Zfp114 zinc finger protein 114 Novel U 0.0004994312189055421 -0.2588090065324449 1.0 15880 +26466 Zfp260 zinc finger protein 260 Novel U 0.0004993070844451937 -0.25881029231310443 1.0 15881 +666803 Aadacl2fm3 AADACL2 family member 3 Novel U 0.0004990548102634884 -0.2588129053607855 1.0 15882 +56295 Higd1a HIG1 domain family, member 1A Novel N 0.0004989877554120251 -0.2588135999127327 1.0 15883 +228140 Tnks1bp1 tankyrase 1 binding protein 1 Novel U 0.0004989003968253641 -0.2588145047701015 1.0 15884 +100126766 Esp3 exocrine gland secreted peptide 3 Novel U 0.0004987766364828696 -0.2588157866756607 1.0 15885 +18071 Nhlh1 nescient helix loop helix 1 Novel N 0.0004986731563520265 -0.2588168585194542 1.0 15886 +26914 Macroh2a1 macroH2A.1 histone Novel U 0.0004986440377484644 -0.2588171601289927 1.0 15887 +171240 Vmn1r74 vomeronasal 1 receptor 74 Novel U 0.0004986019542516212 -0.2588175960284696 1.0 15888 +381110 Rmdn2 regulator of microtubule dynamics 2 Novel U 0.0004985565411411548 -0.25881806641597493 1.0 15889 +104721 Ddx1 DEAD box helicase 1 Novel U 0.0004983777710692174 -0.2588199181105033 1.0 15890 +217265 Abca5 ATP-binding cassette, sub-family A member 5 Novel U 0.000498083594225047 -0.25882296518458464 1.0 15891 +22694 Zfp35 zinc finger protein 35 Novel U 0.0004978916869824824 -0.25882495295349456 1.0 15892 +70451 Dhrs13 dehydrogenase/reductase 13 Novel U 0.0004977072286403936 -0.2588268635669381 1.0 15893 +70484 Slc35d2 solute carrier family 35, member D2 Novel N 0.0004974743032844761 -0.25882927620011775 1.0 15894 +20022 Polr2j polymerase (RNA) II (DNA directed) polypeptide J Novel U 0.0004972896527941599 -0.2588311888038264 1.0 15895 +74335 Xrcc3 X-ray repair complementing defective repair in Chinese hamster cells 3 Novel U 0.0004969528507731273 -0.25883467738808846 1.0 15896 +78919 Fndc8 fibronectin type III domain containing 8 Novel U 0.0004964507980952754 -0.2588398776332215 1.0 15897 +234915 Cep126 centrosomal protein 126 Novel N 0.0004964461001115085 -0.258839926294783 1.0 15898 +216848 Chd3 chromodomain helicase DNA binding protein 3 Novel N 0.00049623132164217 -0.2588421509631079 1.0 15899 +23965 Tenm3 teneurin transmembrane protein 3 Novel N 0.0004962179247909453 -0.2588422897272525 1.0 15900 +65103 Arl6ip6 ADP-ribosylation factor-like 6 interacting protein 6 Novel U 0.0004960995340664904 -0.2588435160144845 1.0 15901 +232983 Cxcl17 C-X-C motif chemokine ligand 17 Novel U 0.0004959881002439329 -0.25884467024235536 1.0 15902 +72844 Kctd17 potassium channel tetramerisation domain containing 17 Novel U 0.000495986470094947 -0.258844687127385 1.0 15903 +19023 Ppef2 protein phosphatase, EF hand calcium-binding domain 2 Novel U 0.0004959851046564001 -0.2588447012705526 1.0 15904 +16204 Fabp6 fatty acid binding protein 6 Novel N 0.0004959535417569022 -0.25884502819802796 1.0 15905 +16666 Krt16 keratin 16 Novel U 0.0004959503597260734 -0.2588450611573987 1.0 15906 +30947 Adat1 adenosine deaminase, tRNA-specific 1 Novel N 0.0004958947344193346 -0.2588456373224973 1.0 15907 +102991 Ezhip EZH inhibitory protein Novel U 0.0004955433990151485 -0.2588492764430644 1.0 15908 +74855 Fam228a family with sequence similarity 228, member A Novel U 0.0004954222720530407 -0.25885053107215605 1.0 15909 +12870 Cp ceruloplasmin Novel N 0.0004953167702764292 -0.25885162385609 1.0 15910 +68563 Dpm3 dolichyl-phosphate mannosyltransferase polypeptide 3 Novel U 0.0004952600061277658 -0.25885221181727586 1.0 15911 +67426 Coq8a coenzyme Q8A Novel U 0.00049523149427053 -0.2588525071421558 1.0 15912 +52793 Fam3b FAM3 metabolism regulating signaling molecule B Novel U 0.0004949424028380613 -0.25885550154170994 1.0 15913 +68559 Pdrg1 p53 and DNA damage regulated 1 Novel U 0.0004946053173966101 -0.2588589930616314 1.0 15914 +74340 Ahcyl2 S-adenosylhomocysteine hydrolase-like 2 Novel U 0.0004945780185699403 -0.25885927582198065 1.0 15915 +216188 Aldh1l2 aldehyde dehydrogenase 1 family, member L2 Novel N 0.0004945084385439724 -0.2588599965296023 1.0 15916 +268822 Adck5 aarF domain containing kinase 5 Novel U 0.0004943306812432359 -0.2588618377338799 1.0 15917 +666339 Muc17 mucin 17, cell surface associated Novel U 0.0004941593391643091 -0.25886361248950085 1.0 15918 +30052 Pcsk1n proprotein convertase subtilisin/kexin type 1 inhibitor Novel U 0.0004939287347530286 -0.25886600108241214 1.0 15919 +215615 Rnpep arginyl aminopeptidase (aminopeptidase B) Novel N 0.0004938393481470117 -0.2588669269459389 1.0 15920 +54326 Elovl2 ELOVL fatty acid elongase 2 Novel N 0.0004938293021010048 -0.25886703100255315 1.0 15921 +22156 Tuft1 tuftelin 1 Novel U 0.0004937298312804399 -0.2588680613180427 1.0 15922 +68920 1110065P20Rik RIKEN cDNA 1110065P20 gene Novel U 0.0004936622233250701 -0.2588687615990219 1.0 15923 +27081 Zfp275 zinc finger protein 275 Novel U 0.0004936241708029562 -0.258869155745795 1.0 15924 +433804 Zfp985 zinc finger protein 985 Novel U 0.0004934556163644704 -0.25887090162712795 1.0 15925 +242509 Bnc2 basonuclin zinc finger protein 2 Novel N 0.0004933369044851846 -0.2588721312408711 1.0 15926 +69864 1810065E05Rik RIKEN cDNA 1810065E05 gene Novel U 0.0004932669830876769 -0.25887285548440797 1.0 15927 +235533 Gk5 glycerol kinase 5 Novel U 0.0004930024647319145 -0.2588755953568414 1.0 15928 +66091 Ndufa3 NADH:ubiquinone oxidoreductase subunit A3 Novel N 0.0004929884156681377 -0.25887574087658216 1.0 15929 +233246 Ano5 anoctamin 5 Novel U 0.0004928634167739046 -0.2588770356110195 1.0 15930 +73723 Sh3bgrl3 SH3 domain binding glutamic acid-rich protein-like 3 Novel N 0.0004926177270843654 -0.25887958045674714 1.0 15931 +56348 Hsd17b12 hydroxysteroid (17-beta) dehydrogenase 12 Novel N 0.0004924070534835549 -0.2588817626069788 1.0 15932 +11287 Pzp PZP, alpha-2-macroglobulin like Novel U 0.0004922236882380976 -0.2588836618981634 1.0 15933 +69955 Fars2 phenylalanine-tRNA synthetase 2, mitochondrial Novel N 0.0004919824006796786 -0.25888616114676166 1.0 15934 +208967 Thnsl1 threonine synthase-like 1 (bacterial) Novel U 0.0004913655492438148 -0.25889255047365645 1.0 15935 +66262 Ing5 inhibitor of growth family, member 5 Novel N 0.0004913369420292962 -0.25889284678624397 1.0 15936 +69349 1700008O03Rik RIKEN cDNA 1700008O03 gene Novel U 0.000491273173522523 -0.2588935072983409 1.0 15937 +69309 Slc16a13 solute carrier family 16 (monocarboxylic acid transporters), member 13 Novel U 0.0004911773188570556 -0.25889450015781473 1.0 15938 +17433 Mobp myelin-associated oligodendrocytic basic protein Novel N 0.0004910210694467544 -0.2588961185840702 1.0 15939 +109232 Sccpdh saccharopine dehydrogenase (putative) Novel U 0.000490954716110607 -0.2588968058697448 1.0 15940 +74230 Liat1 ligand of ATE1 Novel U 0.0004908498297469073 -0.25889789227925203 1.0 15941 +73336 Prss44 serine protease 44 Novel U 0.000490815548816376 -0.25889824736000355 1.0 15942 +233877 Kctd13 potassium channel tetramerisation domain containing 13 Novel U 0.0004906856078546251 -0.2588995932842138 1.0 15943 +22782 Slc30a1 solute carrier family 30 (zinc transporter), member 1 Novel N 0.0004903339045499327 -0.25890323621548217 1.0 15944 +20474 Six4 sine oculis-related homeobox 4 Novel N 0.0004903065493204073 -0.2589035195600503 1.0 15945 +100043247 Alyreffm9 Aly/REF export factor family member 9 Novel U 0.0004900203525305987 -0.25890648397699095 1.0 15946 +68680 Fitm1 fat storage-inducing transmembrane protein 1 Novel U 0.0004899108327848451 -0.25890761837891724 1.0 15947 +17254 Slc3a2 solute carrier family 3 (activators of dibasic and neutral amino acid transport), member 2 Novel U 0.0004896939997174605 -0.25890986432870117 1.0 15948 +384244 Foxl3 forkhead box L3 Novel U 0.0004896444695787296 -0.2589103773602499 1.0 15949 +56280 Mrpl37 mitochondrial ribosomal protein L37 Novel U 0.0004895935992611937 -0.2589109042733267 1.0 15950 +69638 Enho energy homeostasis associated Novel U 0.000489578079642797 -0.25891106502502387 1.0 15951 +231866 Zfp12 zinc finger protein 12 Novel N 0.0004893077435797142 -0.2589138651570785 1.0 15952 +207474 Kctd12b potassium channel tetramerisation domain containing 12b Novel U 0.0004892257311235577 -0.25891471463940335 1.0 15953 +56839 Lgi1 leucine-rich repeat LGI family, member 1 Novel N 0.0004891960696156146 -0.2589150218723275 1.0 15954 +223970 Rmi2 RecQ mediated genome instability 2 Novel N 0.0004891161004823853 -0.2589158501899807 1.0 15955 +382111 Susd5 sushi domain containing 5 Novel U 0.0004884845150760096 -0.25892239213085766 1.0 15956 +140919 Slc17a6 solute carrier family 17 (sodium-dependent inorganic phosphate cotransporter), member 6 Novel U 0.0004884136651066377 -0.2589231259925114 1.0 15957 +59083 Fetub fetuin beta Novel U 0.0004883769279965613 -0.25892350651428986 1.0 15958 +83558 Tex11 testis expressed gene 11 Novel N 0.0004883565407866596 -0.2589237176843398 1.0 15959 +77041 Arsk arylsulfatase K Novel U 0.0004883019097520473 -0.25892428355080044 1.0 15960 +212483 Fam193b family with sequence similarity 193, member B Novel U 0.00048825004589930787 -0.25892482075488216 1.0 15961 +18013 Neurod2 neurogenic differentiation 2 Novel N 0.00048759113512163274 -0.2589316457310568 1.0 15962 +235169 Foxred1 FAD-dependent oxidoreductase domain containing 1 Novel N 0.0004874037465244767 -0.2589335866959861 1.0 15963 +76773 Ntaq1 N-terminal glutamine amidase 1 Novel U 0.00048723550281226777 -0.25893532935882646 1.0 15964 +243881 Cyp2b23 cytochrome P450, family 2, subfamily b, polypeptide 23 Novel U 0.000487118424871968 -0.2589365420482833 1.0 15965 +71687 Tmem25 transmembrane protein 25 Novel U 0.00048699054395075176 -0.2589378666346614 1.0 15966 +231050 Galnt11 polypeptide N-acetylgalactosaminyltransferase 11 Novel N 0.0004868206727669113 -0.25893962615479943 1.0 15967 +55989 Nop58 NOP58 ribonucleoprotein Novel N 0.00048669434112453755 -0.2589409346937982 1.0 15968 +330788 Zfp866 zinc finger protein 866 Novel U 0.0004866509477443019 -0.2589413841610042 1.0 15969 +171388 Bnipl BCL2/adenovirus E1B 19kD interacting protein like Novel N 0.0004865943182587515 -0.2589419707273539 1.0 15970 +15394 Hoxa1 homeobox A1 Novel U 0.0004863765504154444 -0.2589442263595162 1.0 15971 +77219 Ptgr2 prostaglandin reductase 2 Novel N 0.00048624518656729525 -0.25894558702193693 1.0 15972 +20674 Sox2 SRY (sex determining region Y)-box 2 Novel U 0.00048620702276220987 -0.25894598232137545 1.0 15973 +64697 Keg1 kidney expressed gene 1 Novel U 0.00048605842383109054 -0.25894752150421907 1.0 15974 +228880 Zmynd8 zinc finger, MYND-type containing 8 Novel N 0.00048598854424026627 -0.25894824531472366 1.0 15975 +550619 Arid3c AT-rich interaction domain 3C Novel U 0.00048588711694695907 -0.2589492958952935 1.0 15976 +17194 Mbl1 mannose-binding lectin (protein A) 1 Novel U 0.00048579727321046163 -0.2589502264937627 1.0 15977 +56527 Mast1 microtubule associated serine/threonine kinase 1 Novel N 0.0004855790427303828 -0.2589524869179014 1.0 15978 +53893 Nudt5 nudix hydrolase 5 Novel N 0.00048548705437396133 -0.2589534397302733 1.0 15979 +108857 Ankhd1 ankyrin repeat and KH domain containing 1 Novel U 0.00048543049643988857 -0.2589540255554952 1.0 15980 +214855 Arid5a AT-rich interaction domain 5A Novel N 0.0004853928599983094 -0.2589544153925198 1.0 15981 +12012 Baat bile acid-Coenzyme A: amino acid N-acyltransferase Novel N 0.0004851455325619196 -0.25895697720197547 1.0 15982 +209091 Ccnb3 cyclin B3 Novel U 0.00048495605373204793 -0.2589589398174665 1.0 15983 +436059 Ces2h carboxylesterase 2H Novel U 0.0004847911784285497 -0.2589606475904402 1.0 15984 +27364 Srr serine racemase Novel N 0.0004846214508255514 -0.2589624056233725 1.0 15985 +105859 Csdc2 cold shock domain containing C2, RNA binding Novel U 0.00048461335513851566 -0.2589624894782327 1.0 15986 +67177 Cdt1 chromatin licensing and DNA replication factor 1 Novel U 0.0004845924485895088 -0.25896270602758004 1.0 15987 +102941 B630019K06Rik F-box and leucine-rich repeat protein 17 pseudogene Novel U 0.0004845734129898529 -0.2589629031976955 1.0 15988 +75607 Wnk2 WNK lysine deficient protein kinase 2 Novel U 0.0004844780991198834 -0.2589638904556274 1.0 15989 +208285 Cyp4f17 cytochrome P450, family 4, subfamily f, polypeptide 17 Novel U 0.0004844722737359875 -0.25896395079476225 1.0 15990 +19049 Ppp1r1b protein phosphatase 1, regulatory inhibitor subunit 1B Novel U 0.0004844601700828872 -0.2589640761640032 1.0 15991 +73649 Cybrd1 cytochrome b reductase 1 Novel U 0.0004844211429024906 -0.2589644804062548 1.0 15992 +56188 Fxyd1 FXYD domain-containing ion transport regulator 1 Novel N 0.00048413596140439946 -0.25896743430683716 1.0 15993 +66291 Smim8 small integral membrane protein 8 Novel U 0.00048370956900667107 -0.25897185086527597 1.0 15994 +54392 Ncapg non-SMC condensin I complex, subunit G Novel U 0.00048368952484543684 -0.25897205848203914 1.0 15995 +21681 Alyref Aly/REF export factor Novel U 0.00048351300736809407 -0.25897388684426675 1.0 15996 +19363 Rad51b RAD51 paralog B Novel U 0.00048340723685084616 -0.2589749824118074 1.0 15997 +70470 Rprd1b regulation of nuclear pre-mRNA domain containing 1B Novel N 0.0004833275179862151 -0.2589758081371866 1.0 15998 +101994 Champ1 chromosome alignment maintaining phosphoprotein 1 Novel U 0.00048298778731848747 -0.25897932705627486 1.0 15999 +20682 Sox9 SRY (sex determining region Y)-box 9 Novel U 0.000482634307104528 -0.25898298839271106 1.0 16000 +234700 Nrn1l neuritin 1-like Novel U 0.00048256368297683316 -0.25898371991510405 1.0 16001 +209005 Fsip2l fibrous sheath-interacting protein 2-like Novel U 0.0004824229947450939 -0.2589851771591835 1.0 16002 +320158 Zmat4 zinc finger, matrin type 4 Novel U 0.0004822559957456325 -0.2589869069293302 1.0 16003 +67422 Dhdds dehydrodolichyl diphosphate synthase Novel U 0.0004822454034232213 -0.2589870166442575 1.0 16004 +102637511 Strit1 small transmembrane regulator of ion transport 1 Novel U 0.00048219105650821714 -0.25898757956781654 1.0 16005 +268885 Stfa2l1 stefin A2 like 1 Novel U 0.0004821779370651363 -0.2589877154585767 1.0 16006 +66695 Aspn asporin Novel U 0.0004821289373612743 -0.2589882229958985 1.0 16007 +18626 Per1 period circadian clock 1 Novel N 0.0004821281679907957 -0.25898823096501267 1.0 16008 +71046 4933405L10Rik RIKEN cDNA 4933405L10 gene Novel U 0.00048192079444763565 -0.25899037893335564 1.0 16009 +192970 Dhrs11 dehydrogenase/reductase 11 Novel N 0.00048179176711352154 -0.2589917153942409 1.0 16010 +208884 Zdhhc9 zinc finger, DHHC domain containing 9 Novel U 0.00048165207461552985 -0.2589931623245429 1.0 16011 +381101 Dnph1 2'-deoxynucleoside 5'-phosphate N-hydrolase 1 Novel N 0.00048164063049488447 -0.2589932808623684 1.0 16012 +93890 Pcdhb19 protocadherin beta 19 Novel U 0.0004816118566836244 -0.2589935789005595 1.0 16013 +268949 Mucl3 mucin like 3 Novel U 0.0004815141059187146 -0.2589945913997691 1.0 16014 +171271 Vmn1r220 vomeronasal 1 receptor 220 Novel U 0.00048148336037614125 -0.25899490986108836 1.0 16015 +67030 Fancl Fanconi anemia, complementation group L Novel U 0.0004814038547285855 -0.2589957333779721 1.0 16016 +22764 Zfx zinc finger protein X-linked Novel N 0.00048117601402288636 -0.2589980933445119 1.0 16017 +101568 Vrk3 vaccinia related kinase 3 Novel N 0.00048115008693185284 -0.25899836189646847 1.0 16018 +240843 Brinp2 bone morphogenic protein/retinoic acid inducible neural-specific 2 Novel U 0.00048108640104877365 -0.2589990215527519 1.0 16019 +193452 Zfp184 zinc finger protein 184 (Kruppel-like) Novel U 0.000480957032502771 -0.25900036154789857 1.0 16020 +64176 Sv2b synaptic vesicle glycoprotein 2b Novel U 0.0004809434721001471 -0.2590005020061032 1.0 16021 +67381 Med4 mediator complex subunit 4 Novel N 0.00048080681423110205 -0.2590019175038184 1.0 16022 +654498 Hhla1 HERV-H LTR-associating 1 Novel U 0.000480802714415859 -0.25900195996956993 1.0 16023 +27389 Dusp13b dual specificity phosphatase 13B Novel N 0.00048065952714499994 -0.25900344309861445 1.0 16024 +76998 Fbxw27 F-box and WD-40 domain protein 27 Novel U 0.0004805961671912672 -0.2590040993789324 1.0 16025 +75777 Ttc23l tetratricopeptide repeat domain 23-like Novel U 0.0004805836049209794 -0.25900422949851504 1.0 16026 +56787 Ascl3 achaete-scute family bHLH transcription factor 3 Novel U 0.0004804450419864004 -0.2590056647288364 1.0 16027 +76982 Vxn vexin Novel U 0.0004803712880994965 -0.2590064286691724 1.0 16028 +20810 Srm spermidine synthase Novel N 0.00048034820651295503 -0.25900666774748704 1.0 16029 +432964 Iqank1 IQ motif and ankyrin repeat containing 1 Novel U 0.0004802352891927233 -0.25900783734137806 1.0 16030 +103844 Inca1 inhibitor of CDK, cyclin A1 interacting protein 1 Novel U 0.0004802249209077681 -0.2590079447357328 1.0 16031 +100043057 Tmem207 transmembrane protein 207 Novel U 0.00048019246737630194 -0.2590082808883449 1.0 16032 +209357 Gtf2h3 general transcription factor IIH, polypeptide 3 Novel N 0.0004801776261534016 -0.2590084346132438 1.0 16033 +240261 Ccdc112 coiled-coil domain containing 112 Novel U 0.00047997579018516735 -0.2590105252235677 1.0 16034 +72083 Mzt2 mitotic spindle organizing protein 2 Novel U 0.0004796936054137153 -0.2590134480841541 1.0 16035 +74120 Zfp263 zinc finger protein 263 Novel N 0.00047951537861166434 -0.25901529415151087 1.0 16036 +74147 Ehhadh enoyl-Coenzyme A, hydratase/3-hydroxyacyl Coenzyme A dehydrogenase Novel N 0.00047916851040926875 -0.2590188870009486 1.0 16037 +74408 4933414I15Rik RIKEN cDNA 4933414I15 gene Novel U 0.0004791374509407487 -0.25901920871390255 1.0 16038 +100040299 Krtap10-20 keratin associated protein 10-20 Novel U 0.000478828410767029 -0.25902240974186275 1.0 16039 +56421 Pfkp phosphofructokinase, platelet Novel U 0.00047877780809087075 -0.2590229338827189 1.0 16040 +280621 Selenov selenoprotein V Novel U 0.00047867121839590077 -0.25902403793527545 1.0 16041 +71971 Zswim1 zinc finger SWIM-type containing 1 Novel U 0.0004783614960378819 -0.2590272460292783 1.0 16042 +58802 Kcnmb4 potassium large conductance calcium-activated channel, subfamily M, beta member 4 Novel U 0.0004780495991298985 -0.2590304766471981 1.0 16043 +231396 Ugt2b36 UDP glucuronosyltransferase 2 family, polypeptide B36 Novel U 0.00047796250019864733 -0.2590313788150648 1.0 16044 +214105 Sox30 SRY (sex determining region Y)-box 30 Novel N 0.0004778389712730375 -0.25903265832361544 1.0 16045 +241624 Exd1 exonuclease 3'-5' domain containing 1 Novel U 0.0004777665962857215 -0.2590334079813548 1.0 16046 +13085 Cyp2a12 cytochrome P450, family 2, subfamily a, polypeptide 12 Novel U 0.0004777360228145987 -0.2590337246603637 1.0 16047 +100861909 Mup22 major urinary protein 22 Novel U 0.0004776983339470194 -0.2590341150404152 1.0 16048 +107272 Psat1 phosphoserine aminotransferase 1 Novel U 0.00047759381508687956 -0.2590351976433326 1.0 16049 +213765 Nutm1 NUT midline carcinoma, family member 1 Novel U 0.00047734155500891523 -0.2590378105449275 1.0 16050 +76044 Ncapg2 non-SMC condensin II complex, subunit G2 Novel U 0.0004773127149783581 -0.259038109269016 1.0 16051 +381569 Pramel26 PRAME like 26 Novel U 0.0004772873845340926 -0.259038371640925 1.0 16052 +69902 Mrto4 mRNA turnover 4, ribosome maturation factor Novel U 0.0004772850269713604 -0.2590383960604823 1.0 16053 +72181 Nsun4 NOL1/NOP2/Sun domain family, member 4 Novel U 0.00047722300149265245 -0.25903903851835175 1.0 16054 +17222 Anapc1 anaphase promoting complex subunit 1 Novel U 0.00047687826419595897 -0.25904260929593825 1.0 16055 +21400 Tcea2 transcription elongation factor A (SII), 2 Novel U 0.0004762664797603173 -0.2590489461390113 1.0 16056 +73910 Arhgap18 Rho GTPase activating protein 18 Novel U 0.0004761440667960129 -0.25905021408847145 1.0 16057 +229517 Slc25a44 solute carrier family 25, member 44 Novel N 0.0004759555473317396 -0.2590521667668852 1.0 16058 +223920 Soat2 sterol O-acyltransferase 2 Novel U 0.00047569137744131863 -0.25905490302992606 1.0 16059 +665780 Zscan4b zinc finger and SCAN domain containing 4B Novel U 0.00047547767063118565 -0.2590571165980402 1.0 16060 +14545 Gdap1 ganglioside-induced differentiation-associated-protein 1 Novel U 0.00047512274951313127 -0.2590607928593136 1.0 16061 +56036 Ccnl2 cyclin L2 Novel N 0.0004751190454208896 -0.25906083122617923 1.0 16062 +72277 Fam186a family with sequence similarity 186, member A Novel U 0.00047511106185613335 -0.25906091391968056 1.0 16063 +194268 Airim AFG2 interacting ribosome maturation factor Novel N 0.0004750543461582114 -0.2590615013790152 1.0 16064 +69684 Aarsd1 alanyl-tRNA synthetase domain containing 1 Novel U 0.00047497713018440613 -0.25906230117953355 1.0 16065 +51795 Srpx sushi-repeat-containing protein Novel U 0.00047496300402449765 -0.25906244749783347 1.0 16066 +69556 Bod1 biorientation of chromosomes in cell division 1 Novel U 0.0004749207497637309 -0.2590628851660775 1.0 16067 +11831 Aqp6 aquaporin 6 Novel N 0.0004748160594464946 -0.2590639695449419 1.0 16068 +76898 B3gat1 beta-1,3-glucuronyltransferase 1 Novel U 0.00047481517793004967 -0.2590639786756603 1.0 16069 +381536 Prame62 PRAME like 62 Novel U 0.00047480818582128686 -0.259064051099693 1.0 16070 +15484 Hsd11b2 hydroxysteroid 11-beta dehydrogenase 2 Novel N 0.00047471800229551334 -0.25906498521768834 1.0 16071 +16600 Klf4 Kruppel-like transcription factor 4 (gut) Novel U 0.000474649887866899 -0.25906569074470076 1.0 16072 +72997 Kantr Kdm5c adjacent non-coding transcript Novel U 0.0004745437563889122 -0.25906679005106087 1.0 16073 +403175 Tigd4 tigger transposable element derived 4 Novel U 0.00047399921674616357 -0.25907243037477967 1.0 16074 +20887 Sult1a1 sulfotransferase family 1A, phenol-preferring, member 1 Novel U 0.00047391146881912576 -0.2590733392649234 1.0 16075 +17220 Mcm7 minichromosome maintenance complex component 7 Novel U 0.0004737518910949804 -0.25907499216574426 1.0 16076 +98386 Lbr lamin B receptor Novel U 0.000473735423887675 -0.25907516273253617 1.0 16077 +118446 Gjc3 gap junction protein, gamma 3 Novel U 0.00047363425587163303 -0.2590762106275206 1.0 16078 +320415 Gchfr GTP cyclohydrolase I feedback regulator Novel N 0.000473391408935418 -0.2590787260281028 1.0 16079 +408065 Zfp456 zinc finger protein 456 Novel U 0.00047336916885015913 -0.25907895639017475 1.0 16080 +72461 Prcp prolylcarboxypeptidase (angiotensinase C) Novel U 0.00047334238775655795 -0.2590792337878619 1.0 16081 +20512 Slc1a3 solute carrier family 1 (glial high affinity glutamate transporter), member 3 Novel U 0.000473117048393913 -0.25908156784557257 1.0 16082 +73376 Cimip4 ciliary microtubule inner protein 4 Novel U 0.00047302920748849045 -0.2590824776987833 1.0 16083 +20204 Prrx2 paired related homeobox 2 Novel U 0.00047284903022018845 -0.25908434396900537 1.0 16084 +109857 Cbr3 carbonyl reductase 3 Novel N 0.0004728209966378593 -0.2590846343399296 1.0 16085 +68837 Foxk2 forkhead box K2 Novel N 0.00047273879261501073 -0.25908548580649593 1.0 16086 +78893 Cnot10 CCR4-NOT transcription complex, subunit 10 Novel U 0.0004725619714200064 -0.2590873173146211 1.0 16087 +64934 Pes1 pescadillo ribosomal biogenesis factor 1 Novel N 0.0004725264491125608 -0.2590876852535139 1.0 16088 +432731 Zscan26 zinc finger and SCAN domain containing 26 Novel U 0.00047252244533925344 -0.25908772672446617 1.0 16089 +68011 Snrpg small nuclear ribonucleoprotein polypeptide G Novel N 0.0004724643003574659 -0.25908832898827616 1.0 16090 +18993 Pou3f3 POU domain, class 3, transcription factor 3 Novel U 0.00047231454121298636 -0.2590898801885716 1.0 16091 +546118 Ubtfl1 upstream binding transcription factor, RNA polymerase I-like 1 Novel U 0.0004722075583058062 -0.2590909883140073 1.0 16092 +75953 Samd7 sterile alpha motif domain containing 7 Novel U 0.00047209737065783655 -0.25909212963404277 1.0 16093 +17252 Rdh11 retinol dehydrogenase 11 Novel N 0.0004720096051682952 -0.2590930387060983 1.0 16094 +69511 Klk12 kallikrein related-peptidase 12 Novel N 0.00047195776443021456 -0.25909357567075914 1.0 16095 +68187 Fam135a family with sequence similarity 135, member A Novel U 0.00047179909567596527 -0.2590952191564997 1.0 16096 +20454 St3gal5 ST3 beta-galactoside alpha-2,3-sialyltransferase 5 Novel N 0.00047156208903367005 -0.2590976740635094 1.0 16097 +100169 Phactr4 phosphatase and actin regulator 4 Novel U 0.0004715455817078403 -0.2590978450458477 1.0 16098 +69519 Rwdd2a RWD domain containing 2A Novel U 0.0004715382218692855 -0.25909792127881354 1.0 16099 +66211 Rpl3l ribosomal protein L3-like Novel U 0.0004713078857420884 -0.25910030709284715 1.0 16100 +380975 Higd1c HIG1 domain family, member 1C Novel U 0.0004710231657975098 -0.25910325621267344 1.0 16101 +98970 Fibcd1 fibrinogen C domain containing 1 Novel U 0.00047090101631324527 -0.259104521433016 1.0 16102 +111175 Pecr peroxisomal trans-2-enoyl-CoA reductase Novel N 0.000470502044365018 -0.2591086539713402 1.0 16103 +240216 E230025N22Rik Riken cDNA E230025N22 gene Novel U 0.0004703395901501193 -0.25911033666675776 1.0 16104 +237175 Adgrg2 adhesion G protein-coupled receptor G2 Novel N 0.00047033906800140617 -0.259110342075157 1.0 16105 +110809 Srsf1 serine and arginine-rich splicing factor 1 Novel N 0.0004699435416814199 -0.25911443892377717 1.0 16106 +67946 Spata6 spermatogenesis associated 6 Novel U 0.0004699338684337213 -0.2591145391189588 1.0 16107 +244416 Ppp1r3b protein phosphatase 1, regulatory subunit 3B Novel U 0.00046993224671860816 -0.2591145559166307 1.0 16108 +278240 Spin2c spindlin family, member 2C Novel U 0.0004698847464014585 -0.2591150479233542 1.0 16109 +14873 Gsto1 glutathione S-transferase omega 1 Novel U 0.00046981900626779396 -0.2591157288574976 1.0 16110 +21815 Tgif1 TGFB-induced factor homeobox 1 Novel U 0.0004696697927998094 -0.2591172744056939 1.0 16111 +13237 Defa3 defensin, alpha, 3 Novel U 0.0004695777069733264 -0.25911822822765745 1.0 16112 +12647 Chat choline acetyltransferase Novel U 0.0004694034510071616 -0.2591200331652266 1.0 16113 +70073 Zdhhc25 zinc finger, DHHC domain containing 25 Novel U 0.00046938094872597027 -0.25912026624311546 1.0 16114 +21750 Terf2 telomeric repeat binding factor 2 Novel U 0.00046909473346996383 -0.2591232308513283 1.0 16115 +79235 Lrat lecithin-retinol acyltransferase (phosphatidylcholine-retinol-O-acyltransferase) Novel U 0.00046894496073155345 -0.2591247821924293 1.0 16116 +56079 Astn2 astrotactin 2 Novel U 0.0004684115612938006 -0.25913030712627094 1.0 16117 +66557 Bpifb2 BPI fold containing family B, member 2 Novel U 0.00046841084740845514 -0.2591303145206719 1.0 16118 +68183 Bcas2 BCAS2 pre-mRNA processing factor Novel N 0.00046835513972530636 -0.2591308915390227 1.0 16119 +276920 Ccdc42 coiled-coil domain containing 42 Novel U 0.0004681463277904605 -0.2591330544061795 1.0 16120 +30949 Lcmt1 leucine carboxyl methyltransferase 1 Novel U 0.00046811506821417315 -0.25913337819184307 1.0 16121 +66400 Alkbh7 alkB homolog 7 Novel N 0.0004680888985539404 -0.2591336492563235 1.0 16122 +56843 Trpm5 transient receptor potential cation channel, subfamily M, member 5 Novel U 0.0004679842402968356 -0.2591347333031101 1.0 16123 +69071 Tmem97 transmembrane protein 97 Novel U 0.000467980587671711 -0.2591347711368811 1.0 16124 +18563 Pcx pyruvate carboxylase Novel U 0.0004678270902392977 -0.25913636105824006 1.0 16125 +67724 Pop1 processing of precursor 1, ribonuclease P/MRP family, (S. cerevisiae) Novel N 0.0004677022876644517 -0.25913765375920766 1.0 16126 +56050 Cyp39a1 cytochrome P450, family 39, subfamily a, polypeptide 1 Novel N 0.0004675698958474252 -0.25913902506929626 1.0 16127 +71721 Fam13c family with sequence similarity 13, member C Novel U 0.00046749255266534786 -0.2591398261874337 1.0 16128 +11572 Crisp3 cysteine-rich secretory protein 3 Novel U 0.000467274963534059 -0.25914207996850275 1.0 16129 +66945 Sdha succinate dehydrogenase complex, subunit A, flavoprotein (Fp) Novel U 0.00046722362682272877 -0.2591426117124711 1.0 16130 +50876 Tmod2 tropomodulin 2 Novel N 0.0004671192750374728 -0.2591436925848324 1.0 16131 +237178 Ppef1 protein phosphatase with EF hand calcium-binding domain 1 Novel N 0.0004666151271429822 -0.25914891453215055 1.0 16132 +74221 Spmip9 sperm microtubule inner protein 9 Novel U 0.00046633357167570784 -0.25915183087442495 1.0 16133 +16814 Lbx1 ladybird homeobox 1 Novel N 0.00046586865528630783 -0.25915664646310305 1.0 16134 +230648 Efcab14 EF-hand calcium binding domain 14 Novel U 0.00046585321394640244 -0.2591568064039942 1.0 16135 +632687 Marchf10 membrane associated ring-CH-type finger 10 Novel U 0.00046567266450547575 -0.2591586765291681 1.0 16136 +67148 Ramac RNA guanine-7 methyltransferase activating subunit Novel U 0.00046550385642049445 -0.25916042503776304 1.0 16137 +75886 Gstt4 glutathione S-transferase, theta 4 Novel U 0.00046540268990577244 -0.2591614729171969 1.0 16138 +71838 Phf7 PHD finger protein 7 Novel U 0.00046540167793950596 -0.25916148339911016 1.0 16139 +108000 Cenpf centromere protein F Novel U 0.00046536735615715396 -0.25916183890300354 1.0 16140 +66605 1700017N19Rik RIKEN cDNA 1700017N19 gene Novel U 0.0004653267053519604 -0.2591622599627074 1.0 16141 +671232 Topaz1 testis and ovary specific PAZ domain containing 1 Novel U 0.0004651109309553379 -0.25916449494681437 1.0 16142 +70893 Glb1l3 galactosidase, beta 1 like 3 Novel U 0.00046507728686678607 -0.2591648434311776 1.0 16143 +16680 Krt84 keratin 84 Novel U 0.00046493515572961923 -0.2591663156208241 1.0 16144 +66058 Tmem176a transmembrane protein 176A Novel U 0.00046467621893220843 -0.25916899767965956 1.0 16145 +66650 Nepn nephrocan Novel U 0.00046455848212201566 -0.2591702171936692 1.0 16146 +67320 Iqcf4 IQ motif containing F4 Novel U 0.00046436733565803276 -0.25917219708245953 1.0 16147 +74410 Ttll11 tubulin tyrosine ligase-like family, member 11 Novel U 0.0004641852990351178 -0.2591740826118155 1.0 16148 +171247 Vmn1r199 vomeronasal 1 receptor 199 Novel U 0.00046415224039411375 -0.2591744250321323 1.0 16149 +77739 Adamtsl1 ADAMTS-like 1 Novel U 0.00046414276378008195 -0.2591745231905889 1.0 16150 +75718 Vwa5b1 von Willebrand factor A domain containing 5B1 Novel U 0.0004640979549126066 -0.2591749873193652 1.0 16151 +50877 Neu3 neuraminidase 3 Novel U 0.0004640770473261481 -0.25917520387945847 1.0 16152 +68731 Rbfa ribosome binding factor A Novel U 0.00046401963058374107 -0.25917579860018886 1.0 16153 +93879 Pcdhb8 protocadherin beta 8 Novel U 0.0004639514894574172 -0.2591765044037353 1.0 16154 +109731 Maob monoamine oxidase B Novel N 0.0004638032271890659 -0.259178040099437 1.0 16155 +170834 Oosp1 oocyte secreted protein 1 Novel U 0.0004634546569463333 -0.2591816505785526 1.0 16156 +242608 Podn podocan Novel N 0.00046343716830449087 -0.2591818317253299 1.0 16157 +69371 Smco2 single-pass membrane protein with coiled-coil domains 2 Novel U 0.0004634352378356281 -0.2591818517210629 1.0 16158 +69192 Dhx16 DEAH-box helicase 16 Novel N 0.0004632539216615162 -0.25918372978803395 1.0 16159 +214579 Aldh5a1 aldhehyde dehydrogenase family 5, subfamily A1 Novel N 0.00046315251345773855 -0.25918478017087504 1.0 16160 +70885 Ints10 integrator complex subunit 10 Novel N 0.00046285188399367965 -0.2591878940809811 1.0 16161 +71141 4933407L21Rik RIKEN cDNA 4933407L21 gene Novel U 0.00046248357507046013 -0.2591917090127003 1.0 16162 +71685 Galnt14 polypeptide N-acetylgalactosaminyltransferase 14 Novel N 0.00046243166481887933 -0.2591922466973797 1.0 16163 +102635992 Scgb1b10 secretoglobin, family 1B, member 10 Novel U 0.00046236783199407995 -0.2591929078756806 1.0 16164 +98170 Tmem132a transmembrane protein 132A Novel U 0.0004623479839470148 -0.25919311346109963 1.0 16165 +70101 Cyp4f16 cytochrome P450, family 4, subfamily f, polypeptide 16 Novel U 0.0004622873880480673 -0.25919374111142895 1.0 16166 +252876 Gin1 gypsy retrotransposon integrase 1 Novel U 0.0004621849168706101 -0.2591948025045165 1.0 16167 +69634 Clybl citrate lyase beta like Novel U 0.00046210097031041205 -0.2591956720202274 1.0 16168 +239126 C1qtnf9 C1q and tumor necrosis factor related protein 9 Novel U 0.00046200604929207053 -0.259196655209015 1.0 16169 +53886 Cdkl2 cyclin dependent kinase like 2 Novel N 0.00046196305501906783 -0.25919710054228146 1.0 16170 +70611 Fbxo33 F-box protein 33 Novel U 0.00046194686284186667 -0.25919726826032063 1.0 16171 +72306 Zfp777 zinc finger protein 777 Novel U 0.00046192568515868155 -0.2591974876180668 1.0 16172 +216454 Rdh16f2 RDH16 family member 2 Novel U 0.00046171578490918286 -0.25919966175795106 1.0 16173 +329702 Dcst2 DC-STAMP domain containing 2 Novel U 0.00046166601270477534 -0.25920017729680817 1.0 16174 +11498 Adam4 a disintegrin and metallopeptidase domain 4 Novel U 0.0004616031456903477 -0.25920082847127696 1.0 16175 +12180 Smyd1 SET and MYND domain containing 1 Novel N 0.00046148168574391203 -0.25920208654940935 1.0 16176 +382089 Ripply2 ripply transcriptional repressor 2 Novel U 0.00046143438347749557 -0.2592025765047299 1.0 16177 +11957 Atp5pf ATP synthase peripheral stalk subunit F6 Novel N 0.0004613878334754087 -0.25920305866812127 1.0 16178 +56177 Olfm1 olfactomedin 1 Novel N 0.00046102619203945916 -0.2592068045382265 1.0 16179 +218973 Wdhd1 WD repeat and HMG-box DNA binding protein 1 Novel U 0.00046095108579542824 -0.2592075824862332 1.0 16180 +434764 Rhox2f reproductive homeobox 2F Novel U 0.00046085864950817134 -0.25920853993825793 1.0 16181 +77117 Zfp934 zinc finger protein 934 Novel U 0.00046039806870451483 -0.2592133106190814 1.0 16182 +230025 Prdm13 PR domain containing 13 Novel N 0.00046039302161771263 -0.2592133628966406 1.0 16183 +74351 Ddx23 DEAD box helicase 23 Novel N 0.00046024885146688925 -0.2592148562063235 1.0 16184 +18420 Otp orthopedia homeobox Novel N 0.0004601998694821908 -0.25921536356011077 1.0 16185 +140491 Ppp1r3a protein phosphatase 1, regulatory subunit 3A Novel U 0.0004601558568910943 -0.2592158194410826 1.0 16186 +16977 Lrrc23 leucine rich repeat containing 23 Novel U 0.00046001088065522687 -0.2592173211001678 1.0 16187 +432769 Zfp708 zinc finger protein 708 Novel U 0.00045978022333887817 -0.2592197102410681 1.0 16188 +58887 Repin1 replication initiator 1 Novel U 0.00045976367200118324 -0.2592198816792799 1.0 16189 +66714 4921524J17Rik RIKEN cDNA 4921524J17 gene Novel U 0.0004597226838002096 -0.2592203062337181 1.0 16190 +66748 Erich2 glutamate rich 2 Novel U 0.00045965272970951434 -0.25922103081588993 1.0 16191 +215418 Csrnp1 cysteine-serine-rich nuclear protein 1 Novel U 0.0004590755544385993 -0.2592270091783725 1.0 16192 +70575 Gfod2 glucose-fructose oxidoreductase domain containing 2 Novel U 0.00045895400532608774 -0.25922826818008415 1.0 16193 +102371 Myzap myocardial zonula adherens protein Novel U 0.00045863823365168864 -0.2592315389327071 1.0 16194 +13390 Dlx1 distal-less homeobox 1 Novel U 0.0004585006413801876 -0.2592329641089322 1.0 16195 +68981 Snrpa1 small nuclear ribonucleoprotein polypeptide A' Novel N 0.00045803668183289195 -0.2592377697866713 1.0 16196 +15497 Hsd3b6 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 6 Novel U 0.00045797300448119317 -0.2592384293545869 1.0 16197 +66055 Sf3b6 splicing factor 3B, subunit 6 Novel N 0.00045761027896122386 -0.2592421864535988 1.0 16198 +380993 Zfat zinc finger and AT hook domain containing Novel U 0.00045757169123043534 -0.2592425861440458 1.0 16199 +69666 Psmg4 proteasome (prosome, macropain) assembly chaperone 4 Novel U 0.0004575690590295651 -0.2592426134082959 1.0 16200 +27402 Pdhx pyruvate dehydrogenase complex, component X Novel N 0.000457508344072299 -0.2592432422918274 1.0 16201 +208659 Fam20a FAM20A, golgi associated secretory pathway pseudokinase Novel U 0.0004573974618195794 -0.2592443908065559 1.0 16202 +67388 Rab5if RAB5 interacting factor Novel U 0.00045731391870819366 -0.25924525614335736 1.0 16203 +228536 Bahd1 bromo adjacent homology domain containing 1 Novel N 0.0004572000371494018 -0.25924643572479966 1.0 16204 +56805 Zbtb33 zinc finger and BTB domain containing 33 Novel N 0.0004571026125290539 -0.2592474448458146 1.0 16205 +631624 Gm7072 predicted gene 7072 Novel U 0.00045707194238402994 -0.2592477625261685 1.0 16206 +50798 Gne glucosamine (UDP-N-acetyl)-2-epimerase/N-acetylmannosamine kinase Novel U 0.00045706076229289804 -0.25924787832918494 1.0 16207 +26878 B3galt2 UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 2 Novel N 0.0004569451300891496 -0.25924907604375014 1.0 16208 +21909 Tlx2 T cell leukemia, homeobox 2 Novel N 0.00045686331308293155 -0.2592499235016109 1.0 16209 +13226 Defa31 defensin, alpha, 31 Novel U 0.0004567608277316162 -0.25925098504151084 1.0 16210 +171200 Vmn1r19 vomeronasal 1 receptor 19 Novel U 0.000456665725300003 -0.2592519701093712 1.0 16211 +233529 Kctd14 potassium channel tetramerisation domain containing 14 Novel U 0.0004565506347238238 -0.25925316221377587 1.0 16212 +19127 Prop1 paired like homeodomain factor 1 Novel U 0.00045622850641443966 -0.25925649880821505 1.0 16213 +11304 Abca4 ATP-binding cassette, sub-family A member 4 Novel N 0.00045620551657907644 -0.259256736936174 1.0 16214 +66487 Uqcc5 ubiquinol-cytochrome c reductase complex assembly factor 5 Novel U 0.0004561023840402639 -0.2592578051796207 1.0 16215 +73233 Zfp942 zinc finger protein 942 Novel U 0.00045606673290796455 -0.2592581744528771 1.0 16216 +69038 Tmem258 transmembrane protein 258 Novel N 0.0004560312529690102 -0.2592585419529185 1.0 16217 +75062 Sf3a3 splicing factor 3a, subunit 3 Novel N 0.00045602139725734906 -0.2592586440380558 1.0 16218 +319266 A130010J15Rik RIKEN cDNA A130010J15 gene Novel U 0.0004559888219326066 -0.25925898145219867 1.0 16219 +18022 Nfe2 nuclear factor, erythroid derived 2 Novel U 0.00045580393787554466 -0.25926089647518397 1.0 16220 +16658 Mafb MAF bZIP transcription factor B Novel U 0.00045557542181187525 -0.2592632634370594 1.0 16221 +20446 St6galnac2 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 2 Novel U 0.0004555651700673327 -0.25926336962429236 1.0 16222 +84704 Snurf SNRPN upstream reading frame Novel U 0.00045548806973070123 -0.2592641682270447 1.0 16223 +242484 D630039A03Rik RIKEN cDNA D630039A03 gene Novel U 0.0004553992597262756 -0.2592650881181511 1.0 16224 +320078 Olfml2b olfactomedin-like 2B Novel U 0.0004551483462909442 -0.25926768707126585 1.0 16225 +20496 Slc12a2 solute carrier family 12, member 2 Novel U 0.0004550301673969591 -0.25926891116436485 1.0 16226 +97114 H3c15 H3 clustered histone 15 Novel U 0.00045494525752159774 -0.2592697906580626 1.0 16227 +63856 Taf8 TATA-box binding protein associated factor 8 Novel N 0.00045492880131104243 -0.2592699611109505 1.0 16228 +23986 Eci2 enoyl-Coenzyme A delta isomerase 2 Novel U 0.0004547711327225242 -0.25927159423700735 1.0 16229 +227327 B3gnt7 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 7 Novel N 0.00045465036012049464 -0.25927284519564897 1.0 16230 +20534 Slc4a1ap solute carrier family 4 (anion exchanger), member 1, adaptor protein Novel U 0.00045452650534601787 -0.2592741280793315 1.0 16231 +17454 Mov10 Mov10 RISC complex RNA helicase Novel N 0.00045428530032969315 -0.2592766264729614 1.0 16232 +22307 Vmn2r10 vomeronasal 2, receptor 10 Novel U 0.0004541870737213806 -0.25927764390094127 1.0 16233 +73344 1700034J05Rik RIKEN cDNA 1700034J05 gene Novel U 0.00045413695812394835 -0.259278162996652 1.0 16234 +74521 Ppp4r4 protein phosphatase 4, regulatory subunit 4 Novel U 0.00045385116277349164 -0.259281123255497 1.0 16235 +64454 Slc5a4b solute carrier family 5 (neutral amino acid transporters, system A), member 4b Novel U 0.00045385066258585245 -0.25928112843642415 1.0 16236 +14842 Gsx1 GS homeobox 1 Novel N 0.00045335696887852323 -0.25928624209961537 1.0 16237 +67980 Gnpda2 glucosamine-6-phosphate deaminase 2 Novel N 0.0004531851261000432 -0.25928802204146584 1.0 16238 +12842 Col1a1 collagen, type I, alpha 1 Novel U 0.0004529224873578028 -0.25929074244492417 1.0 16239 +100504446 Prr22 proline rich 22 Novel U 0.00045290725793558387 -0.2592909001907789 1.0 16240 +78239 Spint4 serine protease inhibitor, Kunitz type 4 Novel U 0.0004526212560813932 -0.2592938625885828 1.0 16241 +233040 Fbxo27 F-box protein 27 Novel U 0.00045252771126965124 -0.2592948315226677 1.0 16242 +68250 Ciao2a cytosolic iron-sulfur assembly component 2A Novel N 0.0004520270918338595 -0.2593000169223266 1.0 16243 +24084 Tekt2 tektin 2 Novel U 0.00045198306205897974 -0.25930047298128744 1.0 16244 +75763 Dcaf17 DDB1 and CUL4 associated factor 17 Novel U 0.00045196879638330015 -0.2593006207446872 1.0 16245 +193736 Zbtb12 zinc finger and BTB domain containing 12 Novel U 0.0004516740924920981 -0.2593036732779044 1.0 16246 +17710 COX3 cytochrome c oxidase subunit III Novel N 0.00045166322686812145 -0.2593037858236803 1.0 16247 +100040843 Cyp4a32 cytochrome P450, family 4, subfamily a, polypeptide 32 Novel U 0.0004516356751365445 -0.25930407120361026 1.0 16248 +13172 Dbx1 developing brain homeobox 1 Novel U 0.0004514081784439406 -0.2593064276068737 1.0 16249 +75564 Rsph9 radial spoke head 9 homolog (Chlamydomonas) Novel N 0.0004512485456779832 -0.2593080810778159 1.0 16250 +67928 Abca14 ATP-binding cassette, sub-family A member 14 Novel U 0.000451225025326165 -0.2593083247008468 1.0 16251 +15110 Hand1 heart and neural crest derivatives expressed 1 Novel U 0.0004512189076795935 -0.2593083880672289 1.0 16252 +70999 Naa40 N(alpha)-acetyltransferase 40, NatD catalytic subunit Novel U 0.0004510227842486392 -0.2593104195072795 1.0 16253 +16858 Lgals7 lectin, galactose binding, soluble 7 Novel U 0.00045094542515314203 -0.2593112207902476 1.0 16254 +227933 Ccdc148 coiled-coil domain containing 148 Novel U 0.00045087582883371834 -0.2593119416666364 1.0 16255 +229512 Smg5 SMG5 nonsense mediated mRNA decay factor Novel N 0.00045084668655476673 -0.25931224352140375 1.0 16256 +100417514 Adh6b alcohol dehydrogenase 6B (class V) Novel N 0.0004507268241802948 -0.25931348505193824 1.0 16257 +11520 Plin2 perilipin 2 Novel U 0.00045059573504003056 -0.2593148428689438 1.0 16258 +242408 Fam221b family with sequence similarity 221, member B Novel U 0.00045033894551489657 -0.25931750268640363 1.0 16259 +93747 Echs1 enoyl Coenzyme A hydratase, short chain, 1, mitochondrial Novel N 0.00045015209520500094 -0.2593194380757711 1.0 16260 +30877 Gnl3 guanine nucleotide binding protein nucleolar 3 Novel U 0.0004497594371913754 -0.2593235052145684 1.0 16261 +105355 Slc17a3 solute carrier family 17 (sodium phosphate), member 3 Novel N 0.0004497257472156009 -0.25932385417422993 1.0 16262 +13218 Defa29 defensin, alpha, 29 Novel U 0.0004496804486001957 -0.2593243233757992 1.0 16263 +20681 Sox8 SRY (sex determining region Y)-box 8 Novel N 0.0004496005106877996 -0.25932515137006795 1.0 16264 +16882 Lig3 ligase III, DNA, ATP-dependent Novel N 0.00044942159051526785 -0.2593270046193334 1.0 16265 +319159 H4c11 H4 clustered histone 11 Novel U 0.0004493093449303585 -0.259328167255412 1.0 16266 +73435 Tex35 testis expressed 35 Novel U 0.00044875280567809874 -0.25933393187069165 1.0 16267 +381058 Unc93a unc-93 homolog A Novel U 0.00044849982373941716 -0.25933655224929614 1.0 16268 +69976 Galk2 galactokinase 2 Novel N 0.00044844479435004325 -0.2593371222419023 1.0 16269 +68592 Syf2 SYF2 homolog, RNA splicing factor (S. cerevisiae) Novel N 0.00044827865454384825 -0.25933884311255334 1.0 16270 +223722 Mcat malonyl CoA:ACP acyltransferase (mitochondrial) Novel N 0.00044768783918453 -0.2593449627586231 1.0 16271 +70358 Steap1 six transmembrane epithelial antigen of the prostate 1 Novel U 0.00044768386182851685 -0.259345003955946 1.0 16272 +76703 Cpb1 carboxypeptidase B1 Novel N 0.00044767597466850343 -0.2593450856508901 1.0 16273 +235431 Coro2b coronin, actin binding protein, 2B Novel U 0.0004474828263624578 -0.25934708627469477 1.0 16274 +666794 Rbm24 RNA binding motif protein 24 Novel N 0.0004473592976920042 -0.2593483657806025 1.0 16275 +68231 H2al2a H2A histone family member L2A Novel U 0.00044715565762189067 -0.25935047507775444 1.0 16276 +107328 Trpt1 tRNA phosphotransferase 1 Novel U 0.0004469278299092779 -0.2593528349097123 1.0 16277 +245945 Rbm47 RNA binding motif protein 47 Novel U 0.00044675306179009424 -0.25935464515214557 1.0 16278 +381724 Pramel37 PRAME like 37 Novel U 0.0004466632228087987 -0.25935557570136053 1.0 16279 +404240 Mrgprb8 MAS-related GPR, member B8 Novel U 0.0004465116473660404 -0.25935714571481383 1.0 16280 +170763 Zfp87 zinc finger protein 87 Novel U 0.00044645134215861665 -0.2593577703541699 1.0 16281 +67365 Pudp pseudouridine 5'-phosphatase Novel U 0.0004464447988059276 -0.25935783813000196 1.0 16282 +108147 Atic 5-aminoimidazole-4-carboxamide ribonucleotide formyltransferase/IMP cyclohydrolase Novel N 0.0004460024931836181 -0.2593624195170978 1.0 16283 +245841 Polr2h polymerase (RNA) II (DNA directed) polypeptide H Novel N 0.00044595560359302663 -0.25936290519793576 1.0 16284 +66928 Dmac1 distal membrane arm assembly complex 1 Novel N 0.0004458210598116028 -0.2593642987980009 1.0 16285 +103511 Calhm5 calcium homeostasis modulator family member 5 Novel U 0.0004455828745673189 -0.25936676591293123 1.0 16286 +66995 Zcchc18 zinc finger, CCHC domain containing 18 Novel U 0.00044547346291389124 -0.2593678991952407 1.0 16287 +268490 Lsm12 LSM12 homolog Novel U 0.000444844124605037 -0.25937441786075544 1.0 16288 +19695 Reg3g regenerating islet-derived 3 gamma Novel U 0.00044443093556780557 -0.2593786976592202 1.0 16289 +231290 Slc10a4 solute carrier family 10 (sodium/bile acid cotransporter family), member 4 Novel U 0.0004444089512853325 -0.2593789253716954 1.0 16290 +72465 Zfp131 zinc finger protein 131 Novel U 0.0004444032038447114 -0.2593789849034964 1.0 16291 +433864 Nom1 nucleolar protein with MIF4G domain 1 Novel U 0.00044424702946178966 -0.2593806025526208 1.0 16292 +51786 Cpsf2 cleavage and polyadenylation specific factor 2 Novel N 0.0004442186317411954 -0.2593808966952772 1.0 16293 +434130 Ccdc8 coiled-coil domain containing 8 Novel U 0.0004439694832861389 -0.2593834773667843 1.0 16294 +18472 Pafah1b1 platelet-activating factor acetylhydrolase, isoform 1b, subunit 1 Novel U 0.0004434770678865548 -0.2593885777893059 1.0 16295 +226439 Ascl5 achaete-scute family bHLH transcription factor 5 Novel U 0.00044324557591057394 -0.2593909755755832 1.0 16296 +360220 Speer4d spermatogenesis associated glutamate (E)-rich protein 4D Novel U 0.00044313313091932043 -0.2593921402771062 1.0 16297 +100087 Kti12 KTI12 homolog, chromatin associated Novel U 0.00044301280986882587 -0.2593933865585919 1.0 16298 +207921 Fam228b family with sequence similarity 228, member B Novel U 0.00044260701220713464 -0.2593975897974318 1.0 16299 +100126776 Esp24 exocrine gland secreted peptide 24 Novel U 0.0004425747567550166 -0.2593979238983445 1.0 16300 +100764 Rita1 RBPJ interacting and tubulin associated 1 Novel U 0.00044254019986483074 -0.25939828183747704 1.0 16301 +50783 Lsm4 LSM4 homolog, U6 small nuclear RNA and mRNA degradation associated Novel N 0.00044248713411592733 -0.25939883149075976 1.0 16302 +15218 Foxn1 forkhead box N1 Novel N 0.00044239332623945886 -0.25939980314966044 1.0 16303 +69528 1700030J22Rik RIKEN cDNA 1700030J22 gene Novel U 0.00044232861451573655 -0.2594004734315675 1.0 16304 +18392 Orc1 origin recognition complex, subunit 1 Novel U 0.0004420174515648022 -0.2594036964471843 1.0 16305 +22115 Tssk2 testis-specific serine kinase 2 Novel U 0.0004420083107033445 -0.25940379112792683 1.0 16306 +18423 Otx1 orthodenticle homeobox 1 Novel N 0.0004419678278517209 -0.2594042104479731 1.0 16307 +242574 C130073F10Rik RIKEN cDNA C130073F10 gene Novel U 0.0004416391308833735 -0.2594076150803659 1.0 16308 +67392 4833420G17Rik RIKEN cDNA 4833420G17 gene Novel U 0.0004415463674063898 -0.2594085759214111 1.0 16309 +338369 Tmem220 transmembrane protein 220 Novel U 0.00044130935097222245 -0.25941103092984474 1.0 16310 +105734 Tigd5 tigger transposable element derived 5 Novel U 0.0004412670893908924 -0.25941146867391485 1.0 16311 +14048 Eya1 EYA transcriptional coactivator and phosphatase 1 Novel U 0.0004408777275452721 -0.2594155016711122 1.0 16312 +104601 Mycbpap MYCBP associated protein Novel U 0.00044081518033654024 -0.25941614953304415 1.0 16313 +114249 Npnt nephronectin Novel U 0.0004407570170942514 -0.25941675198599573 1.0 16314 +243846 Ccdc9 coiled-coil domain containing 9 Novel U 0.00044073317400770257 -0.2594169989519024 1.0 16315 +70065 Ankrd60 ankyrin repeat domain 60 Novel U 0.0004406192179071235 -0.25941817930544614 1.0 16316 +230863 Sh2d5 SH2 domain containing 5 Novel U 0.00044058121177497576 -0.2594185729717135 1.0 16317 +667692 Alyreffm13 Aly/REF export factor family member 13 Novel U 0.00044044948514918904 -0.2594199373917731 1.0 16318 +58911 Sumf1 sulfatase modifying factor 1 Novel U 0.0004403753726749845 -0.2594207050463446 1.0 16319 +15496 Hsd3b5 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 5 Novel U 0.000440191878598394 -0.2594226056719579 1.0 16320 +319172 H2ac4 H2A clustered histone 4 Novel U 0.0004401608979438011 -0.25942292656855975 1.0 16321 +67305 Gpx7 glutathione peroxidase 7 Novel N 0.00044008580209949506 -0.25942370440884643 1.0 16322 +72640 Mex3a mex3 RNA binding family member A Novel U 0.0004400170522044668 -0.2594244165179991 1.0 16323 +216622 Fem1al fem-1 homolog A like Novel U 0.0004399785182961875 -0.2594248156509543 1.0 16324 +100039120 Gm14525 predicted gene 14525 Novel U 0.0004399759354295011 -0.25942484240420255 1.0 16325 +27384 Akr1c13 aldo-keto reductase family 1, member C13 Novel U 0.0004398628633185342 -0.25942601360141093 1.0 16326 +74279 Magea14 MAGE family member A14 Novel U 0.00043982589699911515 -0.25942639649733223 1.0 16327 +18971 Pold1 polymerase (DNA directed), delta 1, catalytic subunit Novel U 0.0004397885651725731 -0.25942678317916434 1.0 16328 +208890 Slc26a7 solute carrier family 26, member 7 Novel N 0.00043965337764506846 -0.2594281834471302 1.0 16329 +625713 Samt1d spermatogenesis associated multipass transmembrane protein 1d Novel U 0.0004394632435404323 -0.2594301528499357 1.0 16330 +269959 Adamtsl3 ADAMTS-like 3 Novel U 0.00043930668017763913 -0.25943177452810073 1.0 16331 +233904 Setd1a SET domain containing 1A Novel U 0.00043918806697690733 -0.2594330031197348 1.0 16332 +78428 Pym1 PYM homolog 1, exon junction complex associated factor Novel U 0.00043903346117856037 -0.2594346045215116 1.0 16333 +52592 Brms1l breast cancer metastasis-suppressor 1-like Novel U 0.00043875890581671875 -0.25943744835692406 1.0 16334 +17706 ATP8 ATP synthase F0 subunit 8 Novel U 0.0004386517288631951 -0.2594385584922854 1.0 16335 +668359 Tdpoz9 TD and POZ domain containing 9 Novel U 0.00043817744376590964 -0.2594434711217318 1.0 16336 +242409 Tmem8b transmembrane protein 8B Novel N 0.0004379307573051054 -0.25944602629198343 1.0 16337 +23844 Clca1 chloride channel accessory 1 Novel N 0.0004378084762093446 -0.25944729287555357 1.0 16338 +13123 Cyp7b1 cytochrome P450, family 7, subfamily b, polypeptide 1 Novel N 0.00043775137700514824 -0.2594478843072336 1.0 16339 +79464 Lias lipoic acid synthetase Novel N 0.00043768424526519984 -0.2594485796555891 1.0 16340 +74164 Nfx1 nuclear transcription factor, X-box binding 1 Novel U 0.0004376626313505356 -0.2594488035318067 1.0 16341 +436022 Dnaaf3 dynein, axonemal assembly factor 3 Novel N 0.0004373717378808435 -0.25945181659680316 1.0 16342 +17191 Mbd2 methyl-CpG binding domain protein 2 Novel N 0.0004371667500201264 -0.25945393985432585 1.0 16343 +223665 C030006K11Rik RIKEN cDNA C030006K11 gene Novel U 0.0004371036930636103 -0.25945459299620854 1.0 16344 +233913 Rusf1 RUS family member 1 Novel U 0.00043707805507288904 -0.2594548585536737 1.0 16345 +20382 Srsf2 serine and arginine-rich splicing factor 2 Novel U 0.00043679613432090204 -0.2594577786795551 1.0 16346 +378937 Lrrc24 leucine rich repeat containing 24 Novel U 0.00043677856964351657 -0.2594579606139061 1.0 16347 +21667 Cripto cripto, EGF-CFC family member Novel U 0.000436710853277735 -0.2594586620177967 1.0 16348 +76282 Gpt glutamic pyruvic transaminase, soluble Novel U 0.000436563753746478 -0.25946018566990586 1.0 16349 +15416 Hoxb8 homeobox B8 Novel U 0.00043641775088685246 -0.2594616979627263 1.0 16350 +72692 Hnrnpll heterogeneous nuclear ribonucleoprotein L-like Novel N 0.0004364141867508962 -0.25946173487992935 1.0 16351 +23985 Slc26a4 solute carrier family 26, member 4 Novel U 0.00043623862297332856 -0.2594635533637661 1.0 16352 +12257 Tspo translocator protein Novel U 0.00043621363625723187 -0.25946381217535 1.0 16353 +19131 Prh1 proline rich protein HaeIII subfamily 1 Novel U 0.00043611338665299013 -0.2594648505574552 1.0 16354 +68312 Gstm7 glutathione S-transferase, mu 7 Novel U 0.0004360880545281178 -0.2594651129467719 1.0 16355 +56353 Rybp RING1 and YY1 binding protein Novel U 0.00043602457693557383 -0.2594657704455888 1.0 16356 +16970 Irag2 inositol 1,4,5-triphosphate receptor associated 2 Novel U 0.00043587096320647263 -0.259467361571545 1.0 16357 +382275 Gm5168 predicted gene 5168 Novel U 0.000435737259515044 -0.2594687464699855 1.0 16358 +66689 Klhl28 kelch-like 28 Novel U 0.00043538071616671173 -0.25947243953426685 1.0 16359 +19708 Dpf2 double PHD fingers 2 Novel U 0.0004348692740794153 -0.2594777370345943 1.0 16360 +68611 Mrpl28 mitochondrial ribosomal protein L28 Novel U 0.00043479708469441295 -0.25947848476987107 1.0 16361 +20444 St3gal2 ST3 beta-galactoside alpha-2,3-sialyltransferase 2 Novel U 0.00043463231735230774 -0.2594801914245841 1.0 16362 +237010 Klhl4 kelch-like 4 Novel U 0.0004346002343472484 -0.2594805237392959 1.0 16363 +14870 Gstp1 glutathione S-transferase, pi 1 Novel U 0.0004344565169438464 -0.25948201235943585 1.0 16364 +208213 Tmem132c transmembrane protein 132C Novel U 0.0004341029389316145 -0.2594856747088633 1.0 16365 +231931 Gimap6 GTPase, IMAP family member 6 Novel U 0.0004340614483556911 -0.2594861044668848 1.0 16366 +11906 Zfhx3 zinc finger homeobox 3 Novel U 0.0004339814744339568 -0.2594869328341371 1.0 16367 +67509 Saysd1 SAYSVFN motif domain containing 1 Novel U 0.0004338994161125508 -0.25948778279153273 1.0 16368 +93711 Pcdhga3 protocadherin gamma subfamily A, 3 Novel U 0.000433755097483927 -0.25948927763914376 1.0 16369 +59095 Fxyd6 FXYD domain-containing ion transport regulator 6 Novel U 0.00043358587965262955 -0.25949103039187765 1.0 16370 +18440 P2rx6 purinergic receptor P2X, ligand-gated ion channel, 6 Novel N 0.00043357853841545003 -0.259491106432171 1.0 16371 +50927 Nasp nuclear autoantigenic sperm protein (histone-binding) Novel N 0.0004335419673957999 -0.25949148523359034 1.0 16372 +100163 Pafah2 platelet-activating factor acetylhydrolase 2 Novel U 0.000433382689797485 -0.2594931350257177 1.0 16373 +13984 Esx1 extraembryonic, spermatogenesis, homeobox 1 Novel U 0.0004329861224744139 -0.2594972426570136 1.0 16374 +67082 Ccdc198 coiled-coil domain containing 198 Novel U 0.00043291828089851015 -0.25949794535782666 1.0 16375 +382000 Defa39 defensin, alpha, 39 Novel U 0.00043260665023194905 -0.25950117321802657 1.0 16376 +20465 Sim2 single-minded family bHLH transcription factor 2 Novel U 0.00043228931613687176 -0.25950446015415163 1.0 16377 +76469 Cmya5 cardiomyopathy associated 5 Novel U 0.00043220416245129796 -0.2595053421732275 1.0 16378 +67619 Nob1 NIN1/RPN12 binding protein 1 homolog Novel N 0.0004321094806452182 -0.2595063228842624 1.0 16379 +100041581 Zkscan16 zinc finger with KRAB and SCAN domains 16 Novel U 0.0004320910696574567 -0.2595065135846684 1.0 16380 +226409 Zranb3 zinc finger, RAN-binding domain containing 3 Novel U 0.00043208628795879243 -0.25950656311334597 1.0 16381 +70122 Mllt3 myeloid/lymphoid or mixed-lineage leukemia; translocated to, 3 Novel U 0.0004320196129214611 -0.2595072537311908 1.0 16382 +57317 Srsf4 serine and arginine-rich splicing factor 4 Novel N 0.00043199148166076087 -0.2595075451138644 1.0 16383 +13796 Emx1 empty spiracles homeobox 1 Novel U 0.0004319549804301238 -0.2595079231924114 1.0 16384 +13801 Enam enamelin Novel N 0.00043195151584783095 -0.25950795907844093 1.0 16385 +223915 Krt73 keratin 73 Novel U 0.00043188795246815295 -0.2595086174658381 1.0 16386 +244431 Sgcz sarcoglycan zeta Novel N 0.00043171454043073747 -0.259510413662021 1.0 16387 +626848 Zfp971 zinc finger protein 971 Novel U 0.00043168418419803437 -0.25951072809088144 1.0 16388 +106894 Hmgxb3 HMG box domain containing 3 Novel U 0.0004316457981372691 -0.259511125692437 1.0 16389 +72504 Taf4b TATA-box binding protein associated factor 4b Novel N 0.0004314644059314195 -0.2595130045469422 1.0 16390 +98711 Rdh10 retinol dehydrogenase 10 (all-trans) Novel N 0.0004314405708049241 -0.25951325143039894 1.0 16391 +12903 Crabp1 cellular retinoic acid binding protein I Novel N 0.00043140156438505024 -0.25951365545761373 1.0 16392 +108672 Zdhhc15 zinc finger, DHHC domain containing 15 Novel U 0.000431269357991533 -0.2595150248470917 1.0 16393 +76263 Gstk1 glutathione S-transferase kappa 1 Novel U 0.0004312413543915631 -0.25951531490745966 1.0 16394 +17330 Minpp1 multiple inositol polyphosphate histidine phosphatase 1 Novel U 0.00043103925979719746 -0.25951740819662455 1.0 16395 +52504 Cenpo centromere protein O Novel U 0.00043078691459689036 -0.259520021979914 1.0 16396 +66809 Krt20 keratin 20 Novel N 0.0004306179335833012 -0.25952177227969775 1.0 16397 +217039 Ggnbp2 gametogenetin binding protein 2 Novel U 0.0004305721735826823 -0.25952224626027987 1.0 16398 +11739 Slc25a4 solute carrier family 25 (mitochondrial carrier, adenine nucleotide translocator), member 4 Novel U 0.0004304267919825878 -0.2595237521181145 1.0 16399 +228839 Tgif2 TGFB-induced factor homeobox 2 Novel N 0.0004304133533064602 -0.25952389131548004 1.0 16400 +67944 Tex13a testis expressed 13A Novel U 0.0004302581581361696 -0.25952549882195214 1.0 16401 +14843 Gsx2 GS homeobox 2 Novel N 0.00043017166828604274 -0.2595263946809766 1.0 16402 +102334 Ankrd10 ankyrin repeat domain 10 Novel U 0.00042998910894505977 -0.25952828562462915 1.0 16403 +574404 Pwwp4a PWWP domain containing 4A Novel U 0.0004298041513830961 -0.2595302014089758 1.0 16404 +56086 Set SET nuclear oncogene Novel U 0.0004297857052487215 -0.2595303924734293 1.0 16405 +215335 Slc36a1 solute carrier family 36 (proton/amino acid symporter), member 1 Novel U 0.0004297785894715346 -0.25953046617841546 1.0 16406 +227102 Ormdl1 ORM1-like 1 (S. cerevisiae) Novel N 0.00042973751563594016 -0.2595308916198544 1.0 16407 +97476 Fam90a1a family with sequence similarity 90, member A1A Novel U 0.00042967516562359835 -0.2595315374392325 1.0 16408 +216961 Coro6 coronin 6 Novel U 0.0004296657297387822 -0.2595316351758173 1.0 16409 +12561 Cdh4 cadherin 4 Novel N 0.00042964578533960523 -0.2595318417592483 1.0 16410 +77397 Lyz3 lysozyme 3 Novel N 0.0004296053430595619 -0.25953226065905555 1.0 16411 +68145 Etaa1 Ewing tumor-associated antigen 1 Novel U 0.00042944327186816416 -0.2595339393871282 1.0 16412 +213121 Ankrd35 ankyrin repeat domain 35 Novel U 0.0004293158559470183 -0.2595352591570509 1.0 16413 +26968 Islr immunoglobulin superfamily containing leucine-rich repeat Novel N 0.0004292660018594492 -0.25953577554405105 1.0 16414 +380840 Lyrm4 LYR motif containing 4 Novel N 0.0004291404646228628 -0.2595370758546208 1.0 16415 +68833 Pdcl3 phosducin-like 3 Novel U 0.00042906654209112755 -0.25953784154177445 1.0 16416 +213484 Nudt18 nudix hydrolase 18 Novel N 0.0004289504455113958 -0.2595390440663308 1.0 16417 +432479 Tektip1 tektin bundle interacting protein 1 Novel U 0.00042880290153299614 -0.25954057232200883 1.0 16418 +433719 Msantd5f6 Myb/SANT DNA binding domain containing 5 family member 6 Novel U 0.00042864977022539277 -0.2595421584510591 1.0 16419 +73490 Mipol1 mirror-image polydactyly 1 Novel U 0.0004285997414755293 -0.2595426766472056 1.0 16420 +66242 Mrps16 mitochondrial ribosomal protein S16 Novel U 0.0004285511387385332 -0.2595431800727576 1.0 16421 +213760 Prepl prolyl endopeptidase-like Novel U 0.00042849481599548247 -0.2595437634618787 1.0 16422 +216169 Abhd17a abhydrolase domain containing 17A Novel U 0.00042838555003532765 -0.25954489523510205 1.0 16423 +20630 Snrpc U1 small nuclear ribonucleoprotein C Novel N 0.00042834236740963344 -0.25954534251931943 1.0 16424 +27528 Nrep neuronal regeneration related protein Novel U 0.0004282542821647349 -0.2595462549033904 1.0 16425 +94284 Ugt1a6a UDP glucuronosyltransferase 1 family, polypeptide A6A Novel U 0.00042712206567299855 -0.2595579823645922 1.0 16426 +13361 Dhfr dihydrofolate reductase Novel U 0.0004271021156633405 -0.2595581890061364 1.0 16427 +30841 Kdm2b lysine (K)-specific demethylase 2B Novel N 0.00042667907485665355 -0.2595625708489054 1.0 16428 +16911 Lmo4 LIM domain only 4 Novel U 0.00042662317555021385 -0.2595631498520839 1.0 16429 +227210 Ccnyl1 cyclin Y-like 1 Novel U 0.0004265448182474824 -0.2595639614744497 1.0 16430 +13411 Dnah11 dynein, axonemal, heavy chain 11 Novel U 0.0004265382613285166 -0.2595640293908008 1.0 16431 +20855 Stc1 stanniocalcin 1 Novel U 0.0004264670759801853 -0.25956476672629875 1.0 16432 +78118 4930451I11Rik RIKEN cDNA 4930451I11 gene Novel U 0.0004263190093530846 -0.25956630039555484 1.0 16433 +100737 Dcun1d4 defective in cullin neddylation 1 domain containing 4 Novel N 0.0004259495483205111 -0.2595701272607848 1.0 16434 +233895 Prr14 proline rich 14 Novel U 0.00042581970902307633 -0.2595714721319594 1.0 16435 +20322 Sord sorbitol dehydrogenase Novel U 0.00042578330304514285 -0.2595718492238821 1.0 16436 +320502 Lmod3 leiomodin 3 (fetal) Novel U 0.00042541580213905576 -0.2595756557861864 1.0 16437 +320309 Grep1 glycine rich extracellular protein 1 Novel U 0.0004254140911422754 -0.2595756735086348 1.0 16438 +68385 Tlcd1 TLC domain containing 1 Novel U 0.00042532789658875054 -0.25957656630898673 1.0 16439 +319179 H2bc6 H2B clustered histone 6 Novel U 0.00042524471773006307 -0.25957742787287064 1.0 16440 +171243 Vmn1r83 vomeronasal 1 receptor 83 Novel U 0.00042510645452053326 -0.25957885999864977 1.0 16441 +383678 Obp2b odorant binding protein 2B Novel U 0.0004250954007501179 -0.2595789744932404 1.0 16442 +30046 Zfp292 zinc finger protein 292 Novel U 0.0004250953615298274 -0.2595789748994829 1.0 16443 +100041375 Cyp3a41b cytochrome P450, family 3, subfamily a, polypeptide 41B Novel U 0.0004248414623785476 -0.25958160477854536 1.0 16444 +67477 Abhd15 abhydrolase domain containing 15 Novel U 0.00042473022222764146 -0.2595827570003716 1.0 16445 +67797 Snrnp48 small nuclear ribonucleoprotein 48 (U11/U12) Novel N 0.00042468980285913715 -0.2595831756628619 1.0 16446 +239827 Pigz phosphatidylinositol glycan anchor biosynthesis, class Z Novel U 0.00042460939381099266 -0.2595840085371392 1.0 16447 +54378 Cacng6 calcium channel, voltage-dependent, gamma subunit 6 Novel U 0.0004245760133072227 -0.25958435429129995 1.0 16448 +78797 Ndor1 NADPH dependent diflavin oxidoreductase 1 Novel N 0.00042447480485563054 -0.2595854026051145 1.0 16449 +22335 Vdac3 voltage-dependent anion channel 3 Novel N 0.00042442729361470515 -0.25958589472498617 1.0 16450 +52389 Adgra1 adhesion G protein-coupled receptor A1 Novel U 0.0004240044457269131 -0.25959027456950756 1.0 16451 +16392 Isl1 ISL1 transcription factor, LIM/homeodomain Novel U 0.0004239792984932935 -0.2595905350437267 1.0 16452 +227695 Spout1 SPOUT domain containing methyltransferase 1 Novel U 0.0004238964221409194 -0.2595913934742602 1.0 16453 +64580 Ndst4 N-deacetylase/N-sulfotransferase (heparin glucosaminyl) 4 Novel U 0.00042374870359151886 -0.25959292353813884 1.0 16454 +24113 Vax2 ventral anterior homeobox 2 Novel N 0.0004236661801663019 -0.25959377831306446 1.0 16455 +432987 Gm5478 predicted pseudogene 5478 Novel U 0.00042349594123162706 -0.25959554164235354 1.0 16456 +93710 Pcdhga2 protocadherin gamma subfamily A, 2 Novel U 0.0004233333293679721 -0.2595972259706917 1.0 16457 +229543 Ints3 integrator complex subunit 3 Novel U 0.00042311115782196654 -0.25959952721626167 1.0 16458 +11695 Alx4 aristaless-like homeobox 4 Novel U 0.0004226901514615106 -0.25960388798630346 1.0 16459 +66373 Lsm5 LSM5 homolog, U6 small nuclear RNA and mRNA degradation associated Novel N 0.0004226789084905834 -0.25960400444062676 1.0 16460 +368202 Prss48 serine protease 48 Novel U 0.0004225465120497486 -0.2596053757986086 1.0 16461 +381990 Zbtb2 zinc finger and BTB domain containing 2 Novel N 0.0004224267646955384 -0.25960661613776703 1.0 16462 +218333 Ice1 interactor of little elongation complex ELL subunit 1 Novel U 0.0004223708120996521 -0.25960719569291585 1.0 16463 +667256 Samt1b spermatogenesis associated multipass transmembrane protein 1b Novel U 0.0004223588199361362 -0.25960731990735136 1.0 16464 +69836 Pla2g12b phospholipase A2, group XIIB Novel U 0.0004222807266903269 -0.2596081287946243 1.0 16465 +26568 Slc27a3 solute carrier family 27 (fatty acid transporter), member 3 Novel N 0.0004222697570759399 -0.2596082424175295 1.0 16466 +270049 Galntl6 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase-like 6 Novel N 0.00042226870528541953 -0.2596082533119411 1.0 16467 +432995 Smim22 small integral membrane protein 22 Novel U 0.0004221880302485596 -0.25960908894132084 1.0 16468 +330171 Kctd10 potassium channel tetramerisation domain containing 10 Novel U 0.00042218558158984193 -0.2596091143044474 1.0 16469 +276905 Armc7 armadillo repeat containing 7 Novel U 0.0004220426508199111 -0.2596105947766637 1.0 16470 +66834 Acot13 acyl-CoA thioesterase 13 Novel U 0.0004216518459049015 -0.2596146427211264 1.0 16471 +215015 Fam20b FAM20B, glycosaminoglycan xylosylkinase Novel U 0.00042147433892041736 -0.25961648133263643 1.0 16472 +225266 Klhl14 kelch-like 14 Novel U 0.0004213685464240975 -0.25961757712783556 1.0 16473 +320265 Tafa1 TAFA chemokine like family member 1 Novel U 0.00042133508588874236 -0.2596179237109608 1.0 16474 +252875 Mios meiosis regulator for oocyte development Novel N 0.00042109241159691353 -0.2596204373232981 1.0 16475 +107939 Pom121 nuclear pore membrane protein 121 Novel U 0.00042102374569742354 -0.25962114856242774 1.0 16476 +436198 Rhox7b reproductive homeobox 7B Novel U 0.0004209072838869617 -0.25962235487003205 1.0 16477 +382239 Cpxcr1 CPX chromosome region, candidate 1 Novel U 0.00042071296180714706 -0.25962436765174673 1.0 16478 +26394 Lypla2 lysophospholipase 2 Novel N 0.00042053679987150963 -0.2596261923312851 1.0 16479 +212531 Sh3bgrl2 SH3 domain binding glutamic acid-rich protein like 2 Novel U 0.00042033743121652723 -0.2596282573852595 1.0 16480 +76713 Slc6a21 solute carrier family 6 member 21 Novel U 0.0004203140052634422 -0.25962850003051147 1.0 16481 +17035 Lxn latexin Novel U 0.0004202884047688968 -0.2596287651995924 1.0 16482 +330660 Btbd16 BTB domain containing 16 Novel U 0.00041982713409643025 -0.25963354302605435 1.0 16483 +59058 Bhlhe22 basic helix-loop-helix family, member e22 Novel U 0.0004195143098148495 -0.2596367832496794 1.0 16484 +66277 Klf15 Kruppel-like transcription factor 15 Novel U 0.0004194103701238996 -0.25963785985358145 1.0 16485 +16545 Kera keratocan Novel U 0.0004193644544920866 -0.25963833544618636 1.0 16486 +242050 Igsf10 immunoglobulin superfamily, member 10 Novel U 0.00041897824775187064 -0.25964233576290563 1.0 16487 +242805 Ankrd65 ankyrin repeat domain 65 Novel U 0.00041894576821067226 -0.2596426721849257 1.0 16488 +100043239 Alyreffm8 Aly/REF export factor family member 8 Novel U 0.0004187400420891219 -0.25964480308932986 1.0 16489 +237806 Dnah9 dynein, axonemal, heavy chain 9 Novel N 0.00041872904106821145 -0.2596449170375428 1.0 16490 +66126 Elof1 ELF1 homolog, elongation factor 1 Novel U 0.0004185241635842433 -0.2596470391517867 1.0 16491 +58210 Sectm1b secreted and transmembrane 1B Novel U 0.0004183690776481511 -0.2596486455268146 1.0 16492 +108154 Adamts6 ADAM metallopeptidase with thrombospondin type 1 motif 6 Novel U 0.0004183080906356525 -0.25964927722828524 1.0 16493 +381310 Stum mechanosensory transduction mediator Novel U 0.00041820897435972544 -0.259650303871413 1.0 16494 +23968 Nlrp5 NLR family, pyrin domain containing 5 Novel U 0.00041799316341546185 -0.25965253923407927 1.0 16495 +70123 Nbdy negative regulator of P-body association Novel U 0.00041775783142088135 -0.25965497679514304 1.0 16496 +12751 Tpp1 tripeptidyl peptidase I Novel N 0.0004177484979923701 -0.2596550734704887 1.0 16497 +76260 Ttc8 tetratricopeptide repeat domain 8 Novel U 0.0004176990002510383 -0.2596555861664663 1.0 16498 +66641 Sike1 suppressor of IKBKE 1 Novel U 0.00041760478621047527 -0.25965656203240134 1.0 16499 +22770 Zhx1 zinc fingers and homeoboxes 1 Novel N 0.00041757972260004074 -0.2596568216404543 1.0 16500 +66044 Dtd1 D-tyrosyl-tRNA deacylase 1 Novel U 0.00041754468179458135 -0.2596571845919653 1.0 16501 +622645 Tmem200c transmembrane protein 200C Novel U 0.0004174797993817482 -0.2596578566418646 1.0 16502 +319176 H2ac20 H2A clustered histone 20 Novel U 0.00041746322843030204 -0.25965802828323487 1.0 16503 +100126777 Esp4 exocrine gland secreted peptide 4 Novel U 0.00041743156262646257 -0.2596583562765901 1.0 16504 +16874 Lhx6 LIM homeobox protein 6 Novel U 0.0004173664281830277 -0.25965903093701403 1.0 16505 +71137 Rfx4 regulatory factor X, 4 (influences HLA class II expression) Novel N 0.0004171999325275217 -0.2596607554935405 1.0 16506 +17301 Foxd2 forkhead box D2 Novel N 0.0004167932445657606 -0.2596649679540793 1.0 16507 +112415 Zfp607b zinc finger protein 607B Novel U 0.0004167260385912299 -0.25966566407135416 1.0 16508 +67890 Ufm1 ubiquitin-fold modifier 1 Novel U 0.00041628067677322675 -0.2596702771144246 1.0 16509 +229542 Gatad2b GATA zinc finger domain containing 2B Novel U 0.0004162401919526566 -0.2596706964548652 1.0 16510 +319171 H2ac24 H2A clustered histone 24 Novel U 0.0004161487520689659 -0.25967164358617456 1.0 16511 +56878 Rbms1 RNA binding motif, single stranded interacting protein 1 Novel N 0.00041575191834022256 -0.25967575397689163 1.0 16512 +20641 Snrpd1 small nuclear ribonucleoprotein D1 Novel N 0.00041532268633000604 -0.2596801999479432 1.0 16513 +77446 Heg1 heart development protein with EGF-like domains 1 Novel U 0.0004150892055339335 -0.2596826183343537 1.0 16514 +66354 Snw1 SNW domain containing 1 Novel U 0.0004149317340512814 -0.25968424941879437 1.0 16515 +12616 Cenpb centromere protein B Novel U 0.00041461951374890385 -0.2596874833864227 1.0 16516 +320869 Spata33 spermatogenesis associated 33 Novel U 0.00041461776110797026 -0.2596875015402199 1.0 16517 +101488 Slco2b1 solute carrier organic anion transporter family, member 2b1 Novel N 0.0004144669440488189 -0.25968906369836076 1.0 16518 +70750 Kdsr 3-ketodihydrosphingosine reductase Novel U 0.00041435009278278895 -0.259690274039933 1.0 16519 +67966 Zcchc10 zinc finger, CCHC domain containing 10 Novel U 0.0004143023332934368 -0.2596907687311537 1.0 16520 +72097 Cracdl capping protein inhibiting regulator of actin like Novel U 0.00041412522184560785 -0.2596926032457081 1.0 16521 +12591 Cdx2 caudal type homeobox 2 Novel N 0.0004138887127143958 -0.2596950529995144 1.0 16522 +17843 Mup4 major urinary protein 4 Novel U 0.0004136885189728184 -0.2596971265997086 1.0 16523 +75796 Cdyl2 chromodomain protein, Y chromosome-like 2 Novel U 0.0004136493085212116 -0.2596975327402774 1.0 16524 +353326 Rtl1 retrotransposon Gaglike 1 Novel U 0.0004136445622215055 -0.2596975819022937 1.0 16525 +66763 Nt5el 5' nucleotidase, ecto-like Novel U 0.00041350513215574733 -0.2596990261143313 1.0 16526 +224530 Acat3 acetyl-Coenzyme A acetyltransferase 3 Novel U 0.00041326195565983723 -0.25970154492848196 1.0 16527 +26927 Foxl2 forkhead box L2 Novel U 0.0004132606126544655 -0.25970155883928747 1.0 16528 +231861 Tnrc18 trinucleotide repeat containing 18 Novel U 0.0004125576978366994 -0.2597088396078628 1.0 16529 +15248 Hic1 hypermethylated in cancer 1 Novel N 0.00041246407247834735 -0.2597098093762468 1.0 16530 +381246 Xkr9 X-linked Kx blood group related 9 Novel U 0.0004123279642654746 -0.2597112191806415 1.0 16531 +15384 Hnrnpab heterogeneous nuclear ribonucleoprotein A/B Novel N 0.00041219838586213685 -0.25971256134948356 1.0 16532 +100034684 Cstdc5 cystatin domain containing 5 Novel U 0.00041217884439875027 -0.25971276375931895 1.0 16533 +69547 Nkpd1 NTPase, KAP family P-loop domain containing 1 Novel U 0.0004120800130657293 -0.2597137874510175 1.0 16534 +13799 En2 engrailed 2 Novel U 0.00041203349400806863 -0.25971426929388747 1.0 16535 +212391 Lcor ligand dependent nuclear receptor corepressor Novel U 0.0004117585075984428 -0.2597171175940787 1.0 16536 +76302 Pcnp PEST proteolytic signal containing nuclear protein Novel U 0.00041174681336630004 -0.2597172387225508 1.0 16537 +193043 Zfp3 zinc finger protein 3 Novel U 0.0004113288805924455 -0.2597215676564836 1.0 16538 +20678 Sox5 SRY (sex determining region Y)-box 5 Novel U 0.000410762894055087 -0.25972743012643174 1.0 16539 +94047 Tmem121b transmembrane protein 121B Novel U 0.00041057021720050906 -0.2597294258669575 1.0 16540 +93717 Pcdhga9 protocadherin gamma subfamily A, 9 Novel U 0.0004102621280496376 -0.2597326170442544 1.0 16541 +230594 Tut4 terminal uridylyl transferase 4 Novel N 0.0004102512494519949 -0.2597327297244112 1.0 16542 +74189 Phactr3 phosphatase and actin regulator 3 Novel U 0.00041020584538062533 -0.2597332000182898 1.0 16543 +75507 Pou5f2 POU domain class 5, transcription factor 2 Novel U 0.00041018502916245726 -0.2597334156319933 1.0 16544 +71856 Wfdc3 WAP four-disulfide core domain 3 Novel U 0.0004101388192199584 -0.25973389427305865 1.0 16545 +66911 Nudt16l1 nudix hydrolase 16 like 1 Novel N 0.0004099985077506411 -0.25973534761464534 1.0 16546 +235130 Adamts15 ADAM metallopeptidase with thrombospondin type 1 motif 15 Novel U 0.0004099753645524245 -0.2597355873311317 1.0 16547 +53896 Slc7a10 solute carrier family 7 (cationic amino acid transporter, y+ system), member 10 Novel N 0.00040995554389053286 -0.259735792632896 1.0 16548 +15574 Hus1 HUS1 checkpoint clamp component Novel U 0.00040961057164536606 -0.25973936584407104 1.0 16549 +280668 Adam1a a disintegrin and metallopeptidase domain 1a Novel U 0.00040955348057219917 -0.25973995719153015 1.0 16550 +101985 Usb1 U6 snRNA biogenesis 1 Novel U 0.00040942284746313656 -0.2597413102849795 1.0 16551 +102632837 Rnf212b ring finger protein 212B Novel U 0.00040936690423433637 -0.25974188974310436 1.0 16552 +241593 Pin1rt1 peptidyl-prolyl cis/trans isomerase, NIMA-interacting 1, retrogene 1 Novel U 0.00040931367887795934 -0.25974244104959604 1.0 16553 +224833 AI661453 expressed sequence AI661453 Novel U 0.00040925575571874255 -0.2597430410157751 1.0 16554 +330695 Ctxn1 cortexin 1 Novel U 0.0004090496308730498 -0.2597451760501508 1.0 16555 +224250 Cldnd1 claudin domain containing 1 Novel U 0.00040885233686954747 -0.2597472196149534 1.0 16556 +78372 Snrnp25 small nuclear ribonucleoprotein 25 (U11/U12) Novel U 0.0004088406533364161 -0.25974734063260546 1.0 16557 +71888 Krt33a keratin 33A Novel U 0.00040883472881937335 -0.2597474019985582 1.0 16558 +57737 Rhox4b reproductive homeobox 4B Novel U 0.00040877587801505525 -0.2597480115732547 1.0 16559 +231668 Vsig10 V-set and immunoglobulin domain containing 10 Novel U 0.0004086924775353398 -0.259748875432682 1.0 16560 +68738 Acss1 acyl-CoA synthetase short-chain family member 1 Novel N 0.0004086797542344903 -0.259749007220214 1.0 16561 +69131 Cdk12 cyclin dependent kinase 12 Novel U 0.000407931088589283 -0.259756761874356 1.0 16562 +97895 Nlrp4f NLR family, pyrin domain containing 4F Novel U 0.0004078172122529318 -0.2597579414017044 1.0 16563 +20532 Slc3a1 solute carrier family 3, member 1 Novel U 0.000407810852451707 -0.2597580072763164 1.0 16564 +67484 Eepd1 endonuclease/exonuclease/phosphatase family domain containing 1 Novel N 0.00040757345974245417 -0.259760466182195 1.0 16565 +252973 Grhl2 grainyhead like transcription factor 2 Novel U 0.00040727163451052063 -0.2597635924780254 1.0 16566 +27981 Rsrp1 arginine/serine rich protein 1 Novel N 0.0004071899871490765 -0.2597644381787112 1.0 16567 +15192 Hdgfl1 HDGF like 1 Novel U 0.0004067828193133577 -0.25976865560976864 1.0 16568 +23837 Cfdp1 craniofacial development protein 1 Novel U 0.00040671894780641775 -0.2597693171887379 1.0 16569 +433492 Bpifb9b BPI fold containing family B, member 9B Novel U 0.0004066063829304787 -0.2597704831320225 1.0 16570 +245695 Tceanc transcription elongation factor A (SII) N-terminal and central domain containing Novel U 0.0004064967106054087 -0.2597716191143603 1.0 16571 +210417 Thsd7b thrombospondin, type I, domain containing 7B Novel U 0.0004064188480652499 -0.25977242561199165 1.0 16572 +20370 Sez6 seizure related gene 6 Novel U 0.0004063387699005946 -0.25977325505898874 1.0 16573 +237928 Phospho1 phosphatase, orphan 1 Novel U 0.00040633718046158697 -0.25977327152234575 1.0 16574 +546144 Wdr72 WD repeat domain 72 Novel N 0.00040620698504561647 -0.2597746200821844 1.0 16575 +237958 Sppl2c signal peptide peptidase 2C Novel N 0.0004062056004296972 -0.25977463442399057 1.0 16576 +70757 Hacd2 3-hydroxyacyl-CoA dehydratase 2 Novel N 0.0004059992730330862 -0.259776771556382 1.0 16577 +102323 Dcun1d2 defective in cullin neddylation 1 domain containing 2 Novel N 0.00040590604745720894 -0.25977773718383235 1.0 16578 +67102 D16Ertd472e DNA segment, Chr 16, ERATO Doi 472, expressed Novel U 0.00040588586320403015 -0.2597779462516632 1.0 16579 +17001 Ltc4s leukotriene C4 synthase Novel U 0.00040586933582816497 -0.25977811744167917 1.0 16580 +69642 Mlip muscular LMNA-interacting protein Novel U 0.00040586812761664537 -0.25977812995629435 1.0 16581 +20926 Supt6 SPT6, histone chaperone and transcription elongation factor Novel N 0.0004058600609874886 -0.25977821351017394 1.0 16582 +20643 Snrpe small nuclear ribonucleoprotein E Novel N 0.0004057527958161562 -0.2597793245592925 1.0 16583 +30805 Slc22a4 solute carrier family 22 (organic cation transporter), member 4 Novel U 0.00040568335068187194 -0.2597800438697105 1.0 16584 +20766 Sprr3 small proline-rich protein 3 Novel U 0.00040552827866357995 -0.25978165010057824 1.0 16585 +64082 Popdc2 popeye domain containing 2 Novel U 0.00040528997458429914 -0.25978411844639765 1.0 16586 +66902 Mtap methylthioadenosine phosphorylase Novel U 0.0004050000387288944 -0.2597871215924568 1.0 16587 +74776 Ppa2 pyrophosphatase (inorganic) 2 Novel U 0.0004049656501833195 -0.25978747778788136 1.0 16588 +237877 Atad5 ATPase family, AAA domain containing 5 Novel U 0.0004049327872756519 -0.2597878181807987 1.0 16589 +14654 Glra1 glycine receptor, alpha 1 subunit Novel U 0.000404749710441876 -0.2597897144846246 1.0 16590 +70004 1700028J19Rik RIKEN cDNA 1700028J19 gene Novel U 0.000404679516180953 -0.25979044155447173 1.0 16591 +67873 Mri1 methylthioribose-1-phosphate isomerase 1 Novel N 0.00040454877206780966 -0.2597917957976977 1.0 16592 +29871 Scmh1 sex comb on midleg homolog 1 Novel U 0.0004045048030487587 -0.2597922512273516 1.0 16593 +237360 Adamts14 ADAM metallopeptidase with thrombospondin type 1 motif 14 Novel N 0.0004044077153634237 -0.25979325685840476 1.0 16594 +434725 Btbd35f7 BTB domain containing 35, family member 7 Novel U 0.00040435343038856456 -0.2597938191403898 1.0 16595 +100041677 Zfp984 zinc finger protein 984 Novel U 0.00040426818318332533 -0.2597947021281393 1.0 16596 +110460 Acat2 acetyl-Coenzyme A acetyltransferase 2 Novel U 0.0004041085141620883 -0.2597963559746125 1.0 16597 +74377 Hsf2bp heat shock transcription factor 2 binding protein Novel N 0.00040390364429009084 -0.2597984780100119 1.0 16598 +19091 Prkg1 protein kinase, cGMP-dependent, type I Novel U 0.0004038071053281258 -0.2597994779574064 1.0 16599 +60315 Myg1 melanocyte proliferating gene 1 Novel U 0.00040378925387461273 -0.25979966286217504 1.0 16600 +18617 Rhox5 reproductive homeobox 5 Novel U 0.00040370530241254577 -0.25980053242865936 1.0 16601 +108168208 Gm45521 predicted gene 45521 Novel U 0.00040370438949202496 -0.2598005418846601 1.0 16602 +233056 Zfp790 zinc finger protein 790 Novel U 0.0004036710135305724 -0.25980088759177167 1.0 16603 +22719 Zfp61 zinc finger protein 61 Novel U 0.000403561314487918 -0.25980202385084933 1.0 16604 +83561 Tdrd1 tudor domain containing 1 Novel U 0.00040345303053364334 -0.25980314545248806 1.0 16605 +71093 Atoh8 atonal bHLH transcription factor 8 Novel U 0.00040336695227179733 -0.2598040370482946 1.0 16606 +216049 Zfp365 zinc finger protein 365 Novel U 0.00040321136700255785 -0.2598056485953988 1.0 16607 +22759 Zfp97 zinc finger protein 97 Novel U 0.00040300582413046657 -0.25980777760171103 1.0 16608 +66459 Pyurf Pigy upstream reading frame Novel U 0.000402813906038429 -0.2598097654829994 1.0 16609 +18088 Nkx2-2 NK2 homeobox 2 Novel N 0.0004025902315800487 -0.2598120822956864 1.0 16610 +53970 Rfx5 regulatory factor X, 5 (influences HLA class II expression) Novel U 0.00040254661161225725 -0.2598125341098788 1.0 16611 +74254 Gpn1 GPN-loop GTPase 1 Novel U 0.00040249240064415794 -0.2598130956253043 1.0 16612 +20730 Spink1 serine peptidase inhibitor, Kazal type 1 Novel U 0.00040238870856360286 -0.259814169664466 1.0 16613 +19357 Rad21 RAD21 cohesin complex component Novel U 0.0004023602865688984 -0.25981446405855285 1.0 16614 +269037 Ctif CBP80/20-dependent translation initiation factor Novel N 0.0004022146094660664 -0.2598159729771951 1.0 16615 +66056 Zfp524 zinc finger protein 524 Novel U 0.00040203757929840997 -0.25981780664985216 1.0 16616 +14409 Gabrr2 gamma-aminobutyric acid type A receptor subunit rho 2 Novel N 0.0004015112606941116 -0.25982325824065367 1.0 16617 +69544 Wdr5b WD repeat domain 5B Novel U 0.00040149401266270076 -0.25982343689519605 1.0 16618 +13393 Dlx3 distal-less homeobox 3 Novel N 0.00040140378801460387 -0.25982437143913506 1.0 16619 +23827 Bpnt1 3'(2'), 5'-bisphosphate nucleotidase 1 Novel N 0.0004012731903427141 -0.2598257241655273 1.0 16620 +26458 Slc27a2 solute carrier family 27 (fatty acid transporter), member 2 Novel U 0.00040105331621790696 -0.25982800161448405 1.0 16621 +28250 Slco1a4 solute carrier organic anion transporter family, member 1a4 Novel U 0.0004009785014904953 -0.2598287765429712 1.0 16622 +72886 Yju2 YJU2 splicing factor Novel U 0.00040088251606006044 -0.2598297707569043 1.0 16623 +19054 Ppp2r3d protein phosphatase 2 (formerly 2A), regulatory subunit B'', delta Novel U 0.00040081765381368644 -0.25983044259792004 1.0 16624 +22608 Ybx1 Y box protein 1 Novel N 0.0004007754875465501 -0.25983087935472887 1.0 16625 +14012 Mpzl2 myelin protein zero-like 2 Novel N 0.00040072732663066037 -0.25983137820391244 1.0 16626 +68126 Fahd2a fumarylacetoacetate hydrolase domain containing 2A Novel U 0.0004001485447548785 -0.25983737320755534 1.0 16627 +70779 Prdm5 PR domain containing 5 Novel U 0.00039999473576523593 -0.2598389663560139 1.0 16628 +338354 Zfp780b zinc finger protein 780B Novel U 0.0003998248212271597 -0.25984072632521366 1.0 16629 +320701 Tafa4 TAFA chemokine like family member 4 Novel U 0.0003997146669149921 -0.25984186729995795 1.0 16630 +320083 Fbxw16 F-box and WD-40 domain protein 16 Novel U 0.00039951070324728067 -0.25984397994892316 1.0 16631 +72275 2200002D01Rik RIKEN cDNA 2200002D01 gene Novel U 0.00039933281692109063 -0.2598458224896421 1.0 16632 +238680 Cntnap3 contactin associated protein-like 3 Novel U 0.00039921173554792553 -0.25984707664652507 1.0 16633 +18685 Phtf1 putative homeodomain transcription factor 1 Novel U 0.00039916485977927076 -0.25984756218419586 1.0 16634 +18642 Pfkm phosphofructokinase, muscle Novel U 0.00039915562938734513 -0.25984765779229196 1.0 16635 +109077 Ints5 integrator complex subunit 5 Novel N 0.00039904024384788874 -0.2598488529519165 1.0 16636 +15371 Hmx1 H6 homeobox 1 Novel U 0.00039891133903995 -0.25985018814367966 1.0 16637 +242646 Dynlt4 dynein light chain Tctex-type 4 Novel U 0.00039854673840678803 -0.25985396466505234 1.0 16638 +208158 Map6d1 MAP6 domain containing 1 Novel U 0.0003976852903103298 -0.25986288751611686 1.0 16639 +378430 Nanos2 nanos C2HC-type zinc finger 2 Novel N 0.00039732450946719776 -0.25986662447223 1.0 16640 +18624 Pepd peptidase D Novel U 0.0003971727670391153 -0.2598681962153118 1.0 16641 +94249 Slc24a3 solute carrier family 24 (sodium/potassium/calcium exchanger), member 3 Novel N 0.0003969941740923884 -0.2598700460751831 1.0 16642 +12419 Cbx5 chromobox 5 Novel N 0.00039696643788621693 -0.2598703333658949 1.0 16643 +83965 Enpp5 ectonucleotide pyrophosphatase/phosphodiesterase 5 Novel U 0.00039665216884935756 -0.2598735885542476 1.0 16644 +11988 Slc7a2 solute carrier family 7 (cationic amino acid transporter, y+ system), member 2 Novel N 0.0003962590658963142 -0.2598776603017126 1.0 16645 +229782 Slc35a3 solute carrier family 35 (UDP-N-acetylglucosamine (UDP-GlcNAc) transporter), member 3 Novel U 0.0003960637222642867 -0.25987968366463166 1.0 16646 +243755 Slc13a4 solute carrier family 13 (sodium/sulfate symporters), member 4 Novel N 0.00039603182365666114 -0.2598800140693608 1.0 16647 +59043 Wsb2 WD repeat and SOCS box-containing 2 Novel U 0.00039599025984267665 -0.2598804445859797 1.0 16648 +18969 Pola2 polymerase (DNA directed), alpha 2 Novel N 0.00039589795300847366 -0.25988140069713395 1.0 16649 +18599 Padi1 peptidyl arginine deiminase, type I Novel U 0.00039583166769175754 -0.25988208727826545 1.0 16650 +23855 Defa17 defensin, alpha, 17 Novel U 0.0003956672095698898 -0.25988379073008555 1.0 16651 +83796 Smarcd2 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 2 Novel U 0.00039565856817509835 -0.2598838802373687 1.0 16652 +338417 Scgb1c1 secretoglobin, family 1C, member 1 Novel U 0.00039564387821426877 -0.25988403239550006 1.0 16653 +67141 Fbxo5 F-box protein 5 Novel U 0.00039562810684152307 -0.2598841957548605 1.0 16654 +22232 Slc35a2 solute carrier family 35 (UDP-galactose transporter), member A2 Novel U 0.00039517164562096147 -0.25988892376517775 1.0 16655 +67039 Rbm25 RNA binding motif protein 25 Novel N 0.00039506527881193757 -0.25989002550908896 1.0 16656 +78092 Samt1 spermatogenesis associated multipass transmembrane protein 1 Novel U 0.0003945968469288768 -0.2598948775111348 1.0 16657 +100503355 Zfp648 zinc finger protein 648 Novel U 0.0003945256375583736 -0.25989561509545367 1.0 16658 +434903 Mageb4 MAGE family member B4 Novel U 0.00039448293708429025 -0.2598960573855605 1.0 16659 +20713 Serpini1 serine (or cysteine) peptidase inhibitor, clade I, member 1 Novel N 0.0003944204725200822 -0.2598967043914632 1.0 16660 +214359 Tmem51 transmembrane protein 51 Novel U 0.0003943797746153288 -0.2598971259390227 1.0 16661 +228829 Phf20 PHD finger protein 20 Novel U 0.00039418091647880403 -0.25989918570506376 1.0 16662 +67701 Wfdc2 WAP four-disulfide core domain 2 Novel U 0.0003939896431904611 -0.25990116690749665 1.0 16663 +16525 Kcnk1 potassium channel, subfamily K, member 1 Novel N 0.0003938538348169959 -0.25990257360616453 1.0 16664 +20500 Slc13a2 solute carrier family 13 (sodium-dependent dicarboxylate transporter), member 2 Novel N 0.00039374295036707615 -0.25990372214365165 1.0 16665 +237560 Lrrc10 leucine rich repeat containing 10 Novel U 0.0003936874227186262 -0.25990429729720893 1.0 16666 +66240 Kcne5 potassium voltage-gated channel subfamily E regulatory subunit 5 Novel U 0.00039350396997924993 -0.2599061974946527 1.0 16667 +319322 Sf3b2 splicing factor 3b, subunit 2 Novel U 0.00039341931492784606 -0.25990707434889226 1.0 16668 +98404 AI597479 expressed sequence AI597479 Novel U 0.00039332237209341135 -0.2599080784795845 1.0 16669 +71393 Kctd6 potassium channel tetramerisation domain containing 6 Novel U 0.0003933106106314467 -0.2599082003044209 1.0 16670 +70861 Akr1cl aldo-keto reductase family 1, member C-like Novel U 0.0003929316609862307 -0.25991212545238873 1.0 16671 +68327 Tsr3 TSR3 20S rRNA accumulation Novel N 0.0003928719201995407 -0.25991274424549343 1.0 16672 +67014 Riox2 ribosomal oxygenase 2 Novel U 0.00039272310631769856 -0.2599142856547895 1.0 16673 +65100 Zic5 zinc finger protein of the cerebellum 5 Novel U 0.00039245696508462486 -0.2599170423369328 1.0 16674 +382277 Gm5169 predicted gene 5169 Novel U 0.00039239176975935615 -0.2599177176279688 1.0 16675 +234086 Erich1 glutamate rich 1 Novel U 0.0003921750388360772 -0.2599199625197474 1.0 16676 +14408 Gabrr1 gamma-aminobutyric acid type A receptor subunit rho 1 Novel N 0.00039214244786568985 -0.2599203000959473 1.0 16677 +14711 Gnmt glycine N-methyltransferase Novel U 0.00039212367264171996 -0.2599204945691 1.0 16678 +56438 Rbx1 ring-box 1 Novel U 0.0003918977744054056 -0.25992283441560576 1.0 16679 +23918 Impdh2 inosine monophosphate dehydrogenase 2 Novel U 0.00039184470983141134 -0.2599233840567188 1.0 16680 +380755 Lsmem1 leucine-rich single-pass membrane protein 1 Novel U 0.00039182648273296185 -0.2599235728524053 1.0 16681 +12310 Calca calcitonin/calcitonin-related polypeptide, alpha Novel U 0.00039179922870680964 -0.2599238551487123 1.0 16682 +67302 Zc3h13 zinc finger CCCH type containing 13 Novel U 0.00039179448543583855 -0.2599239042793571 1.0 16683 +114714 Rad51c RAD51 paralog C Novel U 0.00039176250263967086 -0.25992423555610844 1.0 16684 +320635 Cyb5r2 cytochrome b5 reductase 2 Novel N 0.0003915971369962995 -0.25992594840800637 1.0 16685 +94045 P2rx5 purinergic receptor P2X, ligand-gated ion channel, 5 Novel N 0.00039157504479682377 -0.25992617723828226 1.0 16686 +26938 St6galnac5 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 5 Novel U 0.0003915419741249295 -0.2599265197832146 1.0 16687 +73936 Ccdc175 coiled-coil domain containing 175 Novel U 0.00039140063059327993 -0.25992798381486903 1.0 16688 +13048 Cux2 cut-like homeobox 2 Novel N 0.0003912721550718756 -0.2599293145600963 1.0 16689 +192199 Rspo1 R-spondin 1 Novel U 0.00039127142958085917 -0.2599293220747084 1.0 16690 +245622 Fam199x family with sequence similarity 199, X-linked Novel U 0.0003912278391735231 -0.25992977358271463 1.0 16691 +70843 Krt28 keratin 28 Novel U 0.00039121610943089225 -0.2599298950790032 1.0 16692 +403171 Banf2 BANF family member 2 Novel U 0.000391210497722655 -0.2599299532048927 1.0 16693 +319153 H3c11 H3 clustered histone 11 Novel U 0.00039102037211676547 -0.2599319225196684 1.0 16694 +68270 Dnaaf1 dynein, axonemal assembly factor 1 Novel U 0.00039087679986642295 -0.25993340963631784 1.0 16695 +67225 Rnpc3 RNA-binding region (RNP1, RRM) containing 3 Novel N 0.0003907949373433921 -0.25993425756564026 1.0 16696 +231093 Agbl5 ATP/GTP binding protein-like 5 Novel N 0.00039059352052148394 -0.25993634383446035 1.0 16697 +100041952 Defa34 defensin, alpha, 34 Novel U 0.0003905109541789399 -0.2599371990539222 1.0 16698 +50496 E2f6 E2F transcription factor 6 Novel N 0.00039025624999113566 -0.2599398372715266 1.0 16699 +223227 Sox21 SRY (sex determining region Y)-box 21 Novel N 0.00039010624597104955 -0.2599413910082355 1.0 16700 +319155 H4c3 H4 clustered histone 3 Novel U 0.00038966611783002676 -0.25994594984105174 1.0 16701 +22632 Yy1 YY1 transcription factor Novel U 0.00038948035641448055 -0.25994787395168745 1.0 16702 +67040 Ddx17 DEAD box helicase 17 Novel U 0.0003894140383321058 -0.2599485608722046 1.0 16703 +18032 Nfix nuclear factor I/X Novel U 0.00038901611957488103 -0.259952682501611 1.0 16704 +59047 Pnkp polynucleotide kinase 3'- phosphatase Novel U 0.00038889285278825066 -0.25995395929493476 1.0 16705 +12659 Ovgp1 oviductal glycoprotein 1 Novel N 0.00038870399572052313 -0.25995591547023394 1.0 16706 +110265 Msra methionine sulfoxide reductase A Novel N 0.00038843169194918253 -0.25995873598374597 1.0 16707 +69602 Otop3 otopetrin 3 Novel U 0.0003883509005864719 -0.25995957281802506 1.0 16708 +17961 Nat2 N-acetyltransferase 2 (arylamine N-acetyltransferase) Novel U 0.00038834829829543274 -0.2599595997724701 1.0 16709 +242620 Dmrta2 doublesex and mab-3 related transcription factor like family A2 Novel U 0.00038832242076235944 -0.259959867811107 1.0 16710 +75698 Shld2 shieldin complex subunit 2 Novel U 0.0003880009090039885 -0.25996319801933104 1.0 16711 +76014 Zc3h18 zinc finger CCCH-type containing 18 Novel N 0.00038785006040402474 -0.2599647605041706 1.0 16712 +74016 Phf19 PHD finger protein 19 Novel N 0.00038783818456343186 -0.2599648835137371 1.0 16713 +22688 Zfp26 zinc finger protein 26 Novel U 0.00038778118800113844 -0.25996547388225566 1.0 16714 +14055 Ezh1 enhancer of zeste 1 polycomb repressive complex 2 subunit Novel N 0.0003877296871193405 -0.25996600732669634 1.0 16715 +108841 Rdh13 retinol dehydrogenase 13 (all-trans and 9-cis) Novel N 0.000387696762290559 -0.2599663483609905 1.0 16716 +17133 Maff v-maf musculoaponeurotic fibrosarcoma oncogene family, protein F (avian) Novel N 0.0003876091059969886 -0.25996725630199774 1.0 16717 +20519 Slc22a3 solute carrier family 22 (organic cation transporter), member 3 Novel U 0.00038760772820801824 -0.2599672705730906 1.0 16718 +93891 Pcdhb20 protocadherin beta 20 Novel U 0.0003875204765049226 -0.25996817432336305 1.0 16719 +100041347 Ccdc201 coiled coil domain 201 Novel U 0.00038751114307239307 -0.25996827099875036 1.0 16720 +75729 Fam227a family with sequence similarity 227, member A Novel U 0.00038743989016829525 -0.2599690090339887 1.0 16721 +69809 Pou2af2 POU domain, class 2, associating factor 2 Novel U 0.00038740072042836566 -0.2599694147528672 1.0 16722 +74114 Crot carnitine O-octanoyltransferase Novel N 0.0003871888405193853 -0.2599716093979993 1.0 16723 +12722 Clca3a1 chloride channel accessory 3A1 Novel U 0.0003871555784699018 -0.25997195392521444 1.0 16724 +69930 Zfp715 zinc finger protein 715 Novel U 0.00038715186203653115 -0.2599719924199091 1.0 16725 +67344 Dynlt5 dynein light chain Tctex-type 5 Novel U 0.00038713780560183184 -0.2599721380159976 1.0 16726 +16373 Irx3 Iroquois related homeobox 3 Novel U 0.00038705879072785165 -0.25997295644946483 1.0 16727 +330119 Adamts3 ADAM metallopeptidase with thrombospondin type 1 motif 3 Novel U 0.00038677858370399475 -0.2599758588246066 1.0 16728 +232440 H2aj H2J.A histone Novel U 0.00038676860114446077 -0.2599759622236301 1.0 16729 +70348 Ube3d ubiquitin protein ligase E3D Novel U 0.00038656751940496976 -0.25997804502167754 1.0 16730 +70454 Cenpl centromere protein L Novel U 0.00038655775051689325 -0.25997814620749915 1.0 16731 +243906 Zfp14 zinc finger protein 14 Novel U 0.0003865456926111652 -0.2599782711028903 1.0 16732 +211468 Kcnh8 potassium voltage-gated channel, subfamily H (eag-related), member 8 Novel U 0.0003864811228478379 -0.2599789399143762 1.0 16733 +240055 Neurl1b neuralized E3 ubiquitin protein ligase 1B Novel U 0.0003864804725179091 -0.2599789466504722 1.0 16734 +102639598 Gm14296 predicted gene 14296 Novel U 0.0003863603813503303 -0.2599801905508382 1.0 16735 +56407 Trpc4ap transient receptor potential cation channel, subfamily C, member 4 associated protein Novel U 0.0003862171153310045 -0.2599816744955568 1.0 16736 +27354 Nbn nibrin Novel U 0.0003861710371642759 -0.25998215177169304 1.0 16737 +75502 Cmtm2b CKLF-like MARVEL transmembrane domain containing 2B Novel U 0.0003860788990082398 -0.25998310613568437 1.0 16738 +246086 Onecut3 one cut domain, family member 3 Novel U 0.0003860551694985884 -0.25998335192516525 1.0 16739 +74102 Slc35a5 solute carrier family 35, member A5 Novel U 0.0003860109870203509 -0.25998380956582245 1.0 16740 +353320 Defb37 defensin beta 37 Novel U 0.00038600816125313196 -0.2599838388350264 1.0 16741 +76267 Fads1 fatty acid desaturase 1 Novel U 0.0003859549203691723 -0.25998439030235226 1.0 16742 +11669 Aldh2 aldehyde dehydrogenase 2, mitochondrial Novel U 0.00038590572602091724 -0.2599848998557943 1.0 16743 +212952 Mageb11 MAGE family member B11 Novel U 0.00038589665461659335 -0.2599849938171021 1.0 16744 +26887 Chst4 carbohydrate sulfotransferase 4 Novel N 0.00038587300912480547 -0.2599852387363287 1.0 16745 +228019 Mettl8 methyltransferase 8, methylcytidine Novel N 0.0003857781504839831 -0.25998622127901205 1.0 16746 +15494 Hsd3b3 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 3 Novel U 0.00038571006308048657 -0.2599869265260992 1.0 16747 +18046 Nfyc nuclear transcription factor-Y gamma Novel U 0.00038555827927097476 -0.2599884986978085 1.0 16748 +56335 Mettl3 methyltransferase 3, N6-adenosine-methyltransferase complex catalytic subunit Novel U 0.00038555245503814394 -0.2599885590250207 1.0 16749 +20764 Sprr2j-ps small proline-rich protein 2J, pseudogene Novel U 0.00038547261002196733 -0.2599893860570735 1.0 16750 +12654 Chi3l1 chitinase 3 like 1 Novel U 0.00038546909903935814 -0.2599894224237159 1.0 16751 +18117 Emc8 ER membrane protein complex subunit 8 Novel U 0.0003852005989287068 -0.2599922035390356 1.0 16752 +66379 Cox14 cytochrome c oxidase assembly protein 14 Novel U 0.00038514669910700796 -0.2599927618316169 1.0 16753 +58807 Slco1c1 solute carrier organic anion transporter family, member 1c1 Novel N 0.0003850371098655027 -0.2599938969533779 1.0 16754 +51810 Hnrnpu heterogeneous nuclear ribonucleoprotein U Novel U 0.0003849960721236361 -0.25999432202095907 1.0 16755 +231326 Aasdh aminoadipate-semialdehyde dehydrogenase Novel U 0.0003843826143835697 -0.2600006761960643 1.0 16756 +107999 Gtpbp6 GTP binding protein 6 (putative) Novel U 0.0003842203700356395 -0.26000235671768673 1.0 16757 +14263 Fmo5 flavin containing monooxygenase 5 Novel N 0.0003841513661089369 -0.2600030714580911 1.0 16758 +216393 D930020B18Rik RIKEN cDNA D930020B18 gene Novel U 0.0003841054325518595 -0.2600035472363654 1.0 16759 +381823 Apold1 apolipoprotein L domain containing 1 Novel U 0.00038403082414255785 -0.26000432002781626 1.0 16760 +71870 Cfap45 cilia and flagella associated protein 45 Novel N 0.0003839314532441456 -0.26000534930831537 1.0 16761 +382030 Cnep1r1 CTD nuclear envelope phosphatase 1 regulatory subunit 1 Novel N 0.0003835710491040726 -0.2600090823625506 1.0 16762 +22771 Zic1 zinc finger protein of the cerebellum 1 Novel U 0.0003833360028330882 -0.26001151696409874 1.0 16763 +66844 Ormdl2 ORM1-like 2 (S. cerevisiae) Novel N 0.0003832081433803665 -0.26001284132810687 1.0 16764 +237412 Gm4924 predicted gene 4924 Novel U 0.00038309554008530115 -0.2600140076693355 1.0 16765 +26972 Spo11 SPO11 initiator of meiotic double stranded breaks Novel N 0.0003830749191626699 -0.26001422126017426 1.0 16766 +66548 Adamtsl5 ADAMTS-like 5 Novel U 0.00038306129302813856 -0.2600143623992278 1.0 16767 +66959 Dusp26 dual specificity phosphatase 26 Novel U 0.0003830302879195246 -0.2600146835491236 1.0 16768 +381359 Prdm12 PR domain containing 12 Novel U 0.0003830072516547557 -0.26001492215799676 1.0 16769 +194974 Sun3 Sad1 and UNC84 domain containing 3 Novel U 0.0003828182964225474 -0.26001687935008044 1.0 16770 +210004 B3gntl1 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase-like 1 Novel U 0.0003826330013288753 -0.2600187986305694 1.0 16771 +414801 Itprip inositol 1,4,5-triphosphate receptor interacting protein Novel U 0.00038258906218836917 -0.2600192537507424 1.0 16772 +71138 Tmem217 transmembrane protein 217 Novel U 0.0003825106876705092 -0.26002006555142193 1.0 16773 +67758 Aadac arylacetamide deacetylase Novel N 0.00038248297742822296 -0.26002035257320066 1.0 16774 +12724 Clcn2 chloride channel, voltage-sensitive 2 Novel U 0.00038242056772393613 -0.26002099901086606 1.0 16775 +67106 Zbtb8os zinc finger and BTB domain containing 8 opposite strand Novel N 0.000382323662677076 -0.2600220027501558 1.0 16776 +327766 Tmem26 transmembrane protein 26 Novel U 0.000382149397277173 -0.2600238077854394 1.0 16777 +223739 5031439G07Rik RIKEN cDNA 5031439G07 gene Novel U 0.00038207398979627714 -0.2600245888536476 1.0 16778 +70009 Ssty2 spermiogenesis specific transcript on the Y 2 Novel U 0.00038205250634932696 -0.2600248113784849 1.0 16779 +12627 Cfc1 cryptic, EGF-CFC family member 1 Novel U 0.0003818488884581477 -0.26002692044590814 1.0 16780 +110842 Etfa electron transferring flavoprotein, alpha polypeptide Novel N 0.00038177103152408135 -0.26002772688547177 1.0 16781 +66355 Gmpr guanosine monophosphate reductase Novel U 0.0003817476446273826 -0.260027969126179 1.0 16782 +14348 Fut9 fucosyltransferase 9 Novel U 0.0003815520605490045 -0.26002999497963336 1.0 16783 +117590 Asb10 ankyrin repeat and SOCS box-containing 10 Novel U 0.0003815442110091059 -0.26003007628490954 1.0 16784 +225887 Ndufs8 NADH:ubiquinone oxidoreductase core subunit S8 Novel N 0.000381526081156062 -0.2600302640733314 1.0 16785 +15483 Hsd11b1 hydroxysteroid 11-beta dehydrogenase 1 Novel N 0.0003814382639770766 -0.2600311736807845 1.0 16786 +244332 Defb14 defensin beta 14 Novel U 0.0003814014607319025 -0.26003155488758817 1.0 16787 +16621 Klkb1 kallikrein B, plasma 1 Novel U 0.0003810870806271032 -0.260034811226379 1.0 16788 +14860 Gsta4 glutathione S-transferase, alpha 4 Novel U 0.00038078524800298 -0.26003793759877747 1.0 16789 +433215 Tmem262 transmembrane protein 262 Novel U 0.00038061143937514824 -0.2600397379028309 1.0 16790 +14866 Gstm5 glutathione S-transferase, mu 5 Novel U 0.00038057973056452606 -0.26004006634164895 1.0 16791 +108160 Fam50a family with sequence similarity 50, member A Novel N 0.0003803799107818836 -0.26004213606838883 1.0 16792 +71684 Rbm43 RNA binding motif protein 43 Novel U 0.0003803232865495546 -0.2600427225803259 1.0 16793 +382010 Cep44 centrosomal protein 44 Novel N 0.0003803157231028957 -0.26004280092225773 1.0 16794 +68304 Poglut3 protein O-glucosyltransferase 3 Novel N 0.00038021033579220943 -0.2600438925205574 1.0 16795 +21408 Zfp354a zinc finger protein 354A Novel N 0.0003800271593578378 -0.26004578985604304 1.0 16796 +100043497 Nat8f7 N-acetyltransferase 8 (GCN5-related) family member 7 Novel U 0.00037980916797249214 -0.2600480478036463 1.0 16797 +28240 Trpm2 transient receptor potential cation channel, subfamily M, member 2 Novel U 0.0003798031331310487 -0.2600481103123356 1.0 16798 +381339 Tmem182 transmembrane protein 182 Novel U 0.0003796711156208816 -0.2600494777453661 1.0 16799 +213575 Dync2li1 dynein cytoplasmic 2 light intermediate chain 1 Novel U 0.00037963379049939786 -0.2600498643577474 1.0 16800 +237107 Gnl3l guanine nucleotide binding protein nucleolar 3 like Novel U 0.00037926159276223793 -0.2600537195696736 1.0 16801 +21816 Tgm1 transglutaminase 1, K polypeptide Novel U 0.0003792243207088647 -0.2600541056323772 1.0 16802 +71996 Fthl17a ferritin, heavy polypeptide-like 17, member A Novel U 0.00037910318568110476 -0.26005536034501264 1.0 16803 +73523 Pebp4 phosphatidylethanolamine binding protein 4 Novel U 0.0003790575741730676 -0.26005583278751343 1.0 16804 +72027 Slc39a4 solute carrier family 39 (zinc transporter), member 4 Novel U 0.0003789181061482489 -0.26005727739272977 1.0 16805 +211187 Lrtm2 leucine-rich repeats and transmembrane domains 2 Novel U 0.0003789045270680549 -0.260057418044396 1.0 16806 +433653 Gimd1 GIMAP family P-loop NTPase domain containing 1 Novel U 0.000378903971084064 -0.2600574238032599 1.0 16807 +234699 Edc4 enhancer of mRNA decapping 4 Novel U 0.00037880155417563486 -0.2600584846342307 1.0 16808 +19366 Rad54l RAD54 like (S. cerevisiae) Novel U 0.00037874628057928594 -0.26005905715632466 1.0 16809 +13195 Ddc dopa decarboxylase Novel U 0.00037869794046400555 -0.2600595578616496 1.0 16810 +14119 Fbn2 fibrillin 2 Novel U 0.0003786046319664427 -0.26006052434800003 1.0 16811 +100126226 Krt83 keratin 83 Novel U 0.0003785691970585174 -0.2600608913816114 1.0 16812 +16528 Kcnk4 potassium channel, subfamily K, member 4 Novel U 0.0003783831979669401 -0.2600628179540876 1.0 16813 +18812 Prl2c3 prolactin family 2, subfamily c, member 3 Novel U 0.0003781650339312776 -0.26006507768999726 1.0 16814 +26424 Nr5a2 nuclear receptor subfamily 5, group A, member 2 Novel N 0.00037814008291863963 -0.2600653361317659 1.0 16815 +234854 Cdk10 cyclin dependent kinase 10 Novel U 0.0003780753568618073 -0.26006600656213485 1.0 16816 +19076 Prim2 DNA primase, p58 subunit Novel U 0.0003778954808827042 -0.2600678697116133 1.0 16817 +20174 Ruvbl2 RuvB-like AAA ATPase 2 Novel U 0.00037771247020340604 -0.2600697653302133 1.0 16818 +14396 Gabra3 gamma-aminobutyric acid type A receptor subunit alpha 3 Novel U 0.00037761221639097647 -0.2600708037559068 1.0 16819 +320799 Zhx3 zinc fingers and homeoboxes 3 Novel N 0.0003774950120306275 -0.26007201775481836 1.0 16820 +70113 Cimap1b ciliary microtubule associated protein 1B Novel U 0.0003774763556074454 -0.26007221099743644 1.0 16821 +66283 Gkn1 gastrokine 1 Novel U 0.00037737575728885586 -0.2600732529915134 1.0 16822 +212528 Trmt1 tRNA methyltransferase 1 Novel U 0.000377297445164343 -0.2600740641459247 1.0 16823 +225600 Pde6a phosphodiesterase 6A, cGMP-specific, rod, alpha Novel N 0.0003772728708909747 -0.2600743186854404 1.0 16824 +83398 Ndst3 N-deacetylase/N-sulfotransferase (heparan glucosaminyl) 3 Novel N 0.00037712144934509895 -0.26007588710483487 1.0 16825 +105083 Pelo pelota mRNA surveillance and ribosome rescue factor Novel U 0.000377049494948361 -0.26007663240611095 1.0 16826 +99375 Cul4a cullin 4A Novel U 0.00037668501608465653 -0.2600804076661996 1.0 16827 +57256 Prss21 serine protease 21 Novel U 0.000376510339506693 -0.2600822169604519 1.0 16828 +15211 Hexa hexosaminidase A Novel N 0.00037636886533071905 -0.260083682345316 1.0 16829 +385328 H2al1n H2A histone family member L1N Novel U 0.00037626923849007067 -0.26008471427685637 1.0 16830 +100043235 Alyreffm7 Aly/REF export factor family member 7 Novel U 0.000376223347005545 -0.26008518961934446 1.0 16831 +272027 Tstd2 thiosulfate sulfurtransferase (rhodanese)-like domain containing 2 Novel U 0.00037619814986786346 -0.2600854506104683 1.0 16832 +68845 Pih1d1 PIH1 domain containing 1 Novel U 0.0003761891850775645 -0.2600855434674715 1.0 16833 +244349 Kat6a K(lysine) acetyltransferase 6A Novel U 0.0003761824655820046 -0.2600856130677856 1.0 16834 +12951 Crx cone-rod homeobox Novel N 0.00037611138499388827 -0.26008634931818064 1.0 16835 +67328 Lyzl1 lysozyme-like 1 Novel U 0.0003759738751924305 -0.26008777364018376 1.0 16836 +84505 Setdb1 SET domain, bifurcated 1 Novel U 0.0003759445819349625 -0.2600880770587817 1.0 16837 +72612 Hpf1 histone PARylation factor 1 Novel N 0.00037575804287227134 -0.26009000922426084 1.0 16838 +99982 Kdm1a lysine (K)-specific demethylase 1A Novel U 0.00037563883221629867 -0.2600912440043166 1.0 16839 +71831 Iqcm IQ motif containing M Novel U 0.0003756198379144829 -0.2600914407466704 1.0 16840 +71901 Fam219a family with sequence similarity 219, member A Novel U 0.00037558878880524817 -0.2600917623523232 1.0 16841 +22754 Zfp92 zinc finger protein 92 Novel U 0.0003754119975601268 -0.26009359355022843 1.0 16842 +18675 Phex phosphate regulating endopeptidase homolog, X-linked Novel U 0.00037527150837970356 -0.2600950487325409 1.0 16843 +73754 Thap1 THAP domain containing, apoptosis associated protein 1 Novel N 0.0003752236782369902 -0.2600955441555868 1.0 16844 +58520 Erg28 ergosterol biosynthesis 28 Novel U 0.00037514833195535573 -0.2600963245898951 1.0 16845 +317653 Klk14 kallikrein related-peptidase 14 Novel U 0.00037505491855150427 -0.26009729216286137 1.0 16846 +52670 Cpsf4l cleavage and polyadenylation specific factor 4-like Novel U 0.0003748721829250403 -0.2600991849324732 1.0 16847 +623197 Msantd5f5 Myb/SANT DNA binding domain containing 5 family member 5 Novel U 0.0003748386150078872 -0.26009953262785557 1.0 16848 +73373 Phospho2 phosphatase, orphan 2 Novel U 0.0003746495762841196 -0.2601014906847421 1.0 16849 +93884 Pcdhb13 protocadherin beta 13 Novel U 0.0003744089019144062 -0.2601039835819518 1.0 16850 +216892 Spns2 SPNS lysolipid transporter 2, sphingosine-1-phosphate Novel N 0.0003743830870852306 -0.2601042509711038 1.0 16851 +14049 Eya2 EYA transcriptional coactivator and phosphatase 2 Novel N 0.0003742891996261534 -0.2601052234543185 1.0 16852 +66775 Hacd4 3-hydroxyacyl-CoA dehydratase 4 Novel N 0.00037403373373343297 -0.26010786956163734 1.0 16853 +109349 Fam163b family with sequence similarity 163, member B Novel U 0.0003740149328333324 -0.2601080643007425 1.0 16854 +14657 Glra4 glycine receptor, alpha 4 subunit Novel U 0.00037380328343710725 -0.26011025655823106 1.0 16855 +54562 Dnaaf11 dynein axonemal assembly factor 11 Novel U 0.00037362873583926103 -0.2601120645165116 1.0 16856 +19153 Prx periaxin Novel N 0.00037333628414937833 -0.26011509372150154 1.0 16857 +229302 Tm4sf4 transmembrane 4 superfamily member 4 Novel U 0.00037325643070024276 -0.2601159208409027 1.0 16858 +626682 Defa28 defensin, alpha, 28 Novel U 0.0003732183166636048 -0.2601163156248413 1.0 16859 +67136 Kbtbd4 kelch repeat and BTB (POZ) domain containing 4 Novel U 0.0003730744820119339 -0.2601178054594349 1.0 16860 +93887 Pcdhb16 protocadherin beta 16 Novel U 0.0003730434192370229 -0.2601181272066363 1.0 16861 +271970 Arsj arylsulfatase J Novel U 0.00037287144879230523 -0.2601199084708495 1.0 16862 +74211 1700017B05Rik RIKEN cDNA 1700017B05 gene Novel U 0.00037255920166333887 -0.26012314271634673 1.0 16863 +98496 Pid1 phosphotyrosine interaction domain containing 1 Novel U 0.00037253233432402497 -0.26012342100736413 1.0 16864 +270076 Gcdh glutaryl-Coenzyme A dehydrogenase Novel N 0.0003725102018501983 -0.26012365025480044 1.0 16865 +19057 Ppp3cc protein phosphatase 3, catalytic subunit, gamma isoform Novel N 0.0003724247538263331 -0.2601245353226227 1.0 16866 +77772 Dcst1 DC-STAMP domain containing 1 Novel U 0.00037227818340410855 -0.2601260534942379 1.0 16867 +13177 Eci1 enoyl-Coenzyme A delta isomerase 1 Novel U 0.00037218003168512247 -0.2601270701465166 1.0 16868 +229363 Gmps guanine monophosphate synthetase Novel N 0.0003721592898293696 -0.2601272849899766 1.0 16869 +64918 Bhmt2 betaine-homocysteine methyltransferase 2 Novel N 0.0003721523529049531 -0.26012735684241167 1.0 16870 +77622 Apex2 apurinic/apyrimidinic endonuclease 2 Novel U 0.00037214176174092054 -0.2601274665453406 1.0 16871 +23795 Agr2 anterior gradient 2 Novel U 0.0003720099549087407 -0.26012883179617535 1.0 16872 +16871 Lhx3 LIM homeobox protein 3 Novel U 0.00037192655290217946 -0.26012969567141764 1.0 16873 +245308 Zdhhc19 zinc finger, DHHC domain containing 19 Novel N 0.0003718286689156155 -0.2601307095505327 1.0 16874 +22239 Ugt8a UDP galactosyltransferase 8A Novel N 0.000371822944845755 -0.26013076884026015 1.0 16875 +382035 Pabpn1l poly(A)binding protein nuclear 1-like Novel U 0.0003714253589019688 -0.26013488702239596 1.0 16876 +69299 Asb9 ankyrin repeat and SOCS box-containing 9 Novel U 0.00037139603627983495 -0.26013519074515207 1.0 16877 +406223 Gm5414 predicted gene 5414 Novel U 0.00037136517856968163 -0.26013551036829946 1.0 16878 +102209 Snapc2 small nuclear RNA activating complex, polypeptide 2 Novel N 0.0003713125229616818 -0.26013605577335613 1.0 16879 +67063 Pgap4 post-GPI attachment to proteins GalNAc transferase 4 Novel U 0.0003712039672802374 -0.26013718018953597 1.0 16880 +53625 B3gnt2 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 2 Novel N 0.0003706145371923483 -0.2601432854870099 1.0 16881 +22720 Zfp62 zinc finger protein 62 Novel U 0.0003705201461340362 -0.2601442631864889 1.0 16882 +67769 Gpatch2 G patch domain containing 2 Novel U 0.00037020155423836756 -0.2601475631508711 1.0 16883 +15939 Ier5 immediate early response 5 Novel U 0.0003701421344598719 -0.2601481786189835 1.0 16884 +319165 H2ac7 H2A clustered histone 7 Novel U 0.0003701405351179738 -0.2601481951849143 1.0 16885 +94246 Arid4b AT-rich interaction domain 4B Novel U 0.0003697812524707438 -0.2601519166227635 1.0 16886 +399673 Tdpoz2 TD and POZ domain containing 2 Novel U 0.00036965641245088123 -0.26015320971158534 1.0 16887 +381417 Slc28a2b solute carrier family 28 member 2b Novel U 0.00036964821199462664 -0.26015329465164166 1.0 16888 +19434 Rax retina and anterior neural fold homeobox Novel N 0.00036950554286552197 -0.2601547724137909 1.0 16889 +11622 Ahr aryl-hydrocarbon receptor Novel U 0.00036943199819137025 -0.26015553418710813 1.0 16890 +20499 Slc12a7 solute carrier family 12, member 7 Novel N 0.0003693845683206702 -0.2601560254641497 1.0 16891 +232748 Tcaf2 TRPM8 channel-associated factor 2 Novel U 0.0003691875809564705 -0.26015806585279244 1.0 16892 +100043772 Zfp850 zinc finger protein 850 Novel U 0.00036911410716106873 -0.2601588268919499 1.0 16893 +67465 Sf3a1 splicing factor 3a, subunit 1 Novel N 0.00036893498038874075 -0.2601606822811692 1.0 16894 +11758 Prdx6 peroxiredoxin 6 Novel U 0.0003688307939572309 -0.26016176144080183 1.0 16895 +545948 Scgb1b20 secretoglobin, family 1B, member 20 Novel U 0.0003686034472542613 -0.2601641162904776 1.0 16896 +73368 Col20a1 collagen, type XX, alpha 1 Novel U 0.000368521488819773 -0.2601649652132477 1.0 16897 +21416 Tcf7l2 transcription factor 7 like 2, T cell specific, HMG box Novel U 0.00036850273885515847 -0.26016515942476487 1.0 16898 +68666 Svop SV2 related protein Novel U 0.00036843193388643906 -0.2601658928203033 1.0 16899 +19719 Rfng RFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase Novel U 0.000368421698527747 -0.2601659988378121 1.0 16900 +72330 Klhl40 kelch-like 40 Novel U 0.0003683703897840311 -0.26016653029209286 1.0 16901 +244209 Cyp2r1 cytochrome P450, family 2, subfamily r, polypeptide 1 Novel N 0.00036833967185148365 -0.2601668484674284 1.0 16902 +216858 Kctd11 potassium channel tetramerisation domain containing 11 Novel U 0.0003682881238113465 -0.26016738240033355 1.0 16903 +100039177 Mup16 major urinary protein 16 Novel U 0.000368093312160952 -0.2601694002530043 1.0 16904 +245610 Nxf3 nuclear RNA export factor 3 Novel U 0.00036801470636269734 -0.26017021444927857 1.0 16905 +67210 Gatad1 GATA zinc finger domain containing 1 Novel N 0.0003679788305208986 -0.26017058605006854 1.0 16906 +407785 Ndufs6 NADH:ubiquinone oxidoreductase core subunit S6 Novel N 0.0003679315713520118 -0.26017107555898633 1.0 16907 +66341 Eid3 EP300 interacting inhibitor of differentiation 3 Novel U 0.0003678604287028969 -0.26017181245220716 1.0 16908 +666528 Zfp541 zinc finger protein 541 Novel U 0.00036780067278685075 -0.2601724314020212 1.0 16909 +215384 Fcgbp Fc fragment of IgG binding protein Novel U 0.0003676519562523855 -0.2601739718029964 1.0 16910 +620253 Dcpp3 demilune cell and parotid protein 3 Novel U 0.00036764802867134594 -0.2601740124847517 1.0 16911 +22242 Umod uromodulin Novel U 0.00036756769552450134 -0.2601748445728459 1.0 16912 +71929 Tmem123 transmembrane protein 123 Novel U 0.0003675530039185184 -0.2601749967480177 1.0 16913 +69737 Ttl tubulin tyrosine ligase Novel U 0.00036740524585076386 -0.26017652722122625 1.0 16914 +77305 Wdr82 WD repeat domain containing 82 Novel N 0.0003673782105189997 -0.2601768072523039 1.0 16915 +434156 Eid2b EP300 interacting inhibitor of differentiation 2B Novel U 0.0003673711090384176 -0.2601768808092063 1.0 16916 +56017 Slc2a8 solute carrier family 2, (facilitated glucose transporter), member 8 Novel N 0.0003672051099035922 -0.26017860022278794 1.0 16917 +434865 Luzp4 leucine zipper protein 4 Novel U 0.00036712294037933256 -0.26017945133201903 1.0 16918 +242702 Myom3 myomesin family, member 3 Novel U 0.00036710280147540385 -0.2601796599301239 1.0 16919 +105244402 Gm14444 predicted gene 14444 Novel U 0.00036702072395851767 -0.26018051008634563 1.0 16920 +403185 Cfap97d2 CFAP97 domain containing 2 Novel U 0.0003669859653375758 -0.26018087011499874 1.0 16921 +54371 Chst2 carbohydrate sulfotransferase 2 Novel N 0.0003669607234768671 -0.2601811315693622 1.0 16922 +66968 Plin5 perilipin 5 Novel U 0.00036695902563864386 -0.26018114915551466 1.0 16923 +234371 Tmem161a transmembrane protein 161A Novel U 0.00036693849796206376 -0.2601813617805139 1.0 16924 +243996 4933405O20Rik RIKEN cDNA 4933405O20 gene Novel U 0.00036679126908269286 -0.26018288677240653 1.0 16925 +76485 Glt8d1 glycosyltransferase 8 domain containing 1 Novel U 0.00036671587326992224 -0.2601836677197567 1.0 16926 +14406 Gabrg2 gamma-aminobutyric acid type A receptor, subunit gamma 2 Novel U 0.00036668259765560004 -0.26018401238747596 1.0 16927 +16769 Dsg4 desmoglein 4 Novel U 0.00036661512952934904 -0.2601847112201098 1.0 16928 +67099 Mettl21a methyltransferase 21A, HSPA lysine Novel N 0.0003665665914746294 -0.26018521397568495 1.0 16929 +14401 Gabrb2 gamma-aminobutyric acid type A receptor subunit beta 2 Novel U 0.000366548841816663 -0.2601853978260587 1.0 16930 +232989 Hnrnpul1 heterogeneous nuclear ribonucleoprotein U-like 1 Novel N 0.00036641699906873453 -0.2601867634489076 1.0 16931 +381741 Lrrc43 leucine rich repeat containing 43 Novel U 0.00036630543969356805 -0.2601879189772483 1.0 16932 +18105 Nqo2 N-ribosyldihydronicotinamide quinone reductase 2 Novel U 0.0003658203681208725 -0.2601929433326524 1.0 16933 +56399 Akap8 A kinase anchor protein 8 Novel N 0.0003658198902184621 -0.26019294828274986 1.0 16934 +20603 Sms spermine synthase Novel U 0.0003657350643468472 -0.2601938269063396 1.0 16935 +72085 Osgepl1 O-sialoglycoprotein endopeptidase-like 1 Novel N 0.000365636720382388 -0.26019484554989053 1.0 16936 +626832 Gm6710 predicted gene 6710 Novel U 0.0003655339293087939 -0.2601959102564517 1.0 16937 +227094 Nemp2 nuclear envelope integral membrane protein 2 Novel U 0.0003654843070468146 -0.26019642424221007 1.0 16938 +74480 Samd4 sterile alpha motif domain containing 4 Novel N 0.00036539585941489805 -0.2601973403798739 1.0 16939 +105651 Ppp1r3e protein phosphatase 1, regulatory subunit 3E Novel U 0.00036527459291610056 -0.26019859645428206 1.0 16940 +14106 Foxh1 forkhead box H1 Novel U 0.0003652732903307533 -0.26019860994641825 1.0 16941 +235582 Glyctk glycerate kinase Novel U 0.0003652260866975096 -0.2601990988800996 1.0 16942 +22691 Zscan2 zinc finger and SCAN domain containing 2 Novel U 0.00036511667477514653 -0.2602002321651947 1.0 16943 +30059 Timm10 translocase of inner mitochondrial membrane 10 Novel U 0.00036502961274341634 -0.26020113395085737 1.0 16944 +69369 Ms4a20 membrane-spanning 4-domains, subfamily A, member 20 Novel U 0.00036474344668641366 -0.26020409804946865 1.0 16945 +52846 Cnot11 CCR4-NOT transcription complex, subunit 11 Novel U 0.0003647107657836474 -0.26020443655718517 1.0 16946 +21412 Tcf21 transcription factor 21 Novel N 0.0003647092962056108 -0.2602044517790262 1.0 16947 +233005 Cyp2a22 cytochrome P450, family 2, subfamily a, polypeptide 22 Novel U 0.00036457981462729847 -0.2602057929449578 1.0 16948 +319164 H2ac6 H2A clustered histone 6 Novel U 0.00036455692492950157 -0.26020603003569515 1.0 16949 +66079 Tmem42 transmembrane protein 42 Novel U 0.00036455016771699285 -0.2602061000266802 1.0 16950 +244216 Zfp771 zinc finger protein 771 Novel U 0.0003644950277167254 -0.26020667116499036 1.0 16951 +231151 Tada2b transcriptional adaptor 2B Novel U 0.0003644773879421989 -0.260206853877195 1.0 16952 +214489 Uqcc4 ubiquinol-cytochrome c reductase complex assembly factor 4 Novel U 0.0003644724669698222 -0.26020690484846515 1.0 16953 +68567 Cgref1 cell growth regulator with EF hand domain 1 Novel N 0.000364309853707846 -0.26020858919128703 1.0 16954 +16612 Klk1 kallikrein 1 Novel U 0.0003642518143473963 -0.26020919036107465 1.0 16955 +15891 Ibsp integrin binding sialoprotein Novel U 0.0003640291834833799 -0.2602114963642455 1.0 16956 +217011 Nle1 notchless homolog 1 Novel U 0.0003639963973539132 -0.2602118359618968 1.0 16957 +17868 Mybpc3 myosin binding protein C, cardiac Novel U 0.0003639851719550589 -0.26021195223420907 1.0 16958 +102216272 Ak6 adenylate kinase 6 Novel U 0.00036382303753646524 -0.26021363161718697 1.0 16959 +100039054 Mup12 major urinary protein 12 Novel U 0.0003637492965982665 -0.26021439542340075 1.0 16960 +20901 Strap serine/threonine kinase receptor associated protein Novel U 0.0003637381333008775 -0.2602145110524681 1.0 16961 +271786 Galnt13 polypeptide N-acetylgalactosaminyltransferase 13 Novel N 0.00036367498432351536 -0.2602151651474997 1.0 16962 +16939 Loricrin loricrin cornified envelope precursor protein Novel U 0.000363360773564394 -0.2602184197322136 1.0 16963 +104346 Gas8 growth arrest specific 8 Novel U 0.0003631669697004386 -0.2602204271462655 1.0 16964 +240638 Slc16a12 solute carrier family 16 (monocarboxylic acid transporters), member 12 Novel N 0.0003631358063662355 -0.2602207499350567 1.0 16965 +270893 Tmem132e transmembrane protein 132E Novel N 0.00036306704899819576 -0.26022146212161457 1.0 16966 +12834 Col6a2 collagen, type VI, alpha 2 Novel U 0.00036302000065094374 -0.2602219494468488 1.0 16967 +100041759 Defa41 defensin, alpha, 41 Novel U 0.0003630111682100882 -0.26022204093298085 1.0 16968 +214669 L3mbtl2 L3MBTL2 polycomb repressive complex 1 subunit Novel U 0.00036289840233553317 -0.2602232089582025 1.0 16969 +80509 Med8 mediator complex subunit 8 Novel U 0.00036284220490604525 -0.26022379104932974 1.0 16970 +75671 Tex22 testis expressed gene 22 Novel U 0.0003626533524958833 -0.260225747176386 1.0 16971 +269181 Mgat4a mannoside acetylglucosaminyltransferase 4, isoenzyme A Novel U 0.0003625780863505312 -0.26022652678064534 1.0 16972 +93692 Glrx glutaredoxin Novel N 0.00036255728056657866 -0.2602267422862715 1.0 16973 +14287 Fpgs folylpolyglutamyl synthetase Novel N 0.0003625560411710534 -0.26022675512388965 1.0 16974 +22680 Zfp207 zinc finger protein 207 Novel U 0.0003621630270005201 -0.2602308259517484 1.0 16975 +382117 Tcaim T cell activation inhibitor, mitochondrial Novel U 0.00036208382916813516 -0.2602316462802927 1.0 16976 +13026 Pcyt1a phosphate cytidylyltransferase 1, choline, alpha isoform Novel U 0.00036206250291716084 -0.2602318671768993 1.0 16977 +385343 Rhox1 reproductive homeobox 1 Novel U 0.0003619817689227494 -0.2602327034169594 1.0 16978 +77591 Ddx10 DEAD box helicase 10 Novel U 0.0003618427616040073 -0.26023414325019734 1.0 16979 +243197 Slc49a3 solute carrier family 49 member 3 Novel U 0.0003617881317100771 -0.26023470910484275 1.0 16980 +14241 Foxl1 forkhead box L1 Novel N 0.00036171549918581283 -0.2602354614301415 1.0 16981 +56471 Stmn4 stathmin-like 4 Novel U 0.00036170022803894657 -0.2602356196081787 1.0 16982 +21927 Tnfaip1 tumor necrosis factor, alpha-induced protein 1 (endothelial) Novel U 0.00036160533489481195 -0.2602366025082462 1.0 16983 +60455 Pgap6 post-glycosylphosphatidylinositol attachment to proteins 6 Novel U 0.0003615697774394898 -0.2602369708111995 1.0 16984 +319653 Slc25a40 solute carrier family 25, member 40 Novel U 0.0003615440309359479 -0.26023723749263683 1.0 16985 +319168 H2ac12 H2A clustered histone 12 Novel U 0.0003615250905921878 -0.26023743367609486 1.0 16986 +67753 Eqtn equatorin, sperm acrosome associated Novel U 0.00036152178061603666 -0.26023746796071906 1.0 16987 +76654 Upp2 uridine phosphorylase 2 Novel N 0.00036143401818481926 -0.26023837700109653 1.0 16988 +14584 Gfpt2 glutamine fructose-6-phosphate transaminase 2 Novel N 0.00036138605536393235 -0.2602388737984186 1.0 16989 +276919 Gemin4 gem nuclear organelle associated protein 4 Novel U 0.0003612033068468604 -0.2602407667015509 1.0 16990 +70853 Vwa3b von Willebrand factor A domain containing 3B Novel N 0.0003609405283486677 -0.2602434885525968 1.0 16991 +384806 Adam20 a disintegrin and metallopeptidase domain 20 Novel U 0.00036070470120873983 -0.2602459312423598 1.0 16992 +74129 Dmgdh dimethylglycine dehydrogenase precursor Novel N 0.00036066059706579275 -0.2602463880716226 1.0 16993 +628324 S100a2 S100 calcium binding protein A2 Novel U 0.00036063142553273403 -0.26024669022940305 1.0 16994 +226866 Sbspon somatomedin B and thrombospondin, type 1 domain containing Novel U 0.0003605583940223205 -0.2602474466873871 1.0 16995 +60611 Foxj2 forkhead box J2 Novel U 0.000360490373603126 -0.2602481512406531 1.0 16996 +407800 Ecm2 extracellular matrix protein 2, female organ and adipocyte specific Novel N 0.0003604889175618607 -0.26024816632228065 1.0 16997 +170750 Xpnpep1 X-prolyl aminopeptidase (aminopeptidase P) 1, soluble Novel N 0.0003600430757313976 -0.2602527843373043 1.0 16998 +216198 Tcp11l2 t-complex 11 (mouse) like 2 Novel U 0.0003599279083497557 -0.26025397723725746 1.0 16999 +72400 Pinx1 PIN2/TERF1 interacting, telomerase inhibitor 1 Novel U 0.00035972966632794924 -0.26025603062160246 1.0 17000 +19724 Rfx1 regulatory factor X, 1 (influences HLA class II expression) Novel N 0.0003596618493801978 -0.2602567330673179 1.0 17001 +67247 Mtarc2 mitochondrial amidoxime reducing component 2 Novel N 0.0003596075696900128 -0.2602572952945645 1.0 17002 +66302 Rmdn1 regulator of microtubule dynamics 1 Novel U 0.0003596065558484959 -0.26025730579590156 1.0 17003 +66172 Med11 mediator complex subunit 11 Novel N 0.000359463106919812 -0.2602587916351893 1.0 17004 +105501 Abhd4 abhydrolase domain containing 4 Novel U 0.00035929686295510093 -0.26026051358471075 1.0 17005 +170936 Zfp369 zinc finger protein 369 Novel U 0.0003592627176225388 -0.260260867260943 1.0 17006 +100189605 Mup19 major urinary protein 19 Novel U 0.00035925786748687967 -0.26026091749848873 1.0 17007 +27281 Plaat1 phospholipase A and acyltransferase 1 Novel U 0.00035916742411080705 -0.2602618543080049 1.0 17008 +69234 Zfp688 zinc finger protein 688 Novel U 0.0003591526655504425 -0.260262007176688 1.0 17009 +72961 Slc17a7 solute carrier family 17 (sodium-dependent inorganic phosphate cotransporter), member 7 Novel N 0.0003590504261680266 -0.26026306616885014 1.0 17010 +232016 Itprid1 ITPR interacting domain containing 1 Novel U 0.0003590327326066496 -0.2602632494381772 1.0 17011 +328971 Spink10 serine peptidase inhibitor, Kazal type 10 Novel U 0.00035884004957726143 -0.26026524524266154 1.0 17012 +320500 Tmem215 transmembrane protein 215 Novel U 0.0003588301577052132 -0.260265347702347 1.0 17013 +22642 Zbtb17 zinc finger and BTB domain containing 17 Novel N 0.00035862892531266926 -0.26026743206085384 1.0 17014 +67936 Wdr55 WD repeat domain 55 Novel U 0.00035860722541520483 -0.26026765682767844 1.0 17015 +237213 Glra2 glycine receptor, alpha 2 subunit Novel N 0.0003585682225709533 -0.260268060817857 1.0 17016 +229599 Ciart circadian associated repressor of transcription Novel U 0.000358333232464536 -0.2602704948376544 1.0 17017 +67369 Qpctl glutaminyl-peptide cyclotransferase-like Novel N 0.00035831245160923434 -0.26027071008507047 1.0 17018 +100312471 Vmn1r3 vomeronasal 1 receptor 3 Novel U 0.00035827565964609786 -0.2602710911750152 1.0 17019 +214290 Tut7 terminal uridylyl transferase 7 Novel N 0.0003582172129688999 -0.26027169656377624 1.0 17020 +107197 Uqcc3 ubiquinol-cytochrome c reductase complex assembly factor 3 Novel N 0.0003581112577850823 -0.26027279404408715 1.0 17021 +192654 Pla2g15 phospholipase A2, group XV Novel U 0.00035805306044506486 -0.26027339685022194 1.0 17022 +74665 Drc3 dynein regulatory complex subunit 3 Novel U 0.00035773339204517036 -0.2602767079649995 1.0 17023 +217430 Slc66a3 solute carrier family 66 member 3 Novel U 0.00035752118107966924 -0.2602789060392041 1.0 17024 +20518 Slc22a2 solute carrier family 22 (organic cation transporter), member 2 Novel U 0.00035752071855365 -0.2602789108300334 1.0 17025 +270685 Mthfd1l methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1-like Novel N 0.00035733345582933065 -0.260280850491176 1.0 17026 +75622 Spaca3 sperm acrosome associated 3 Novel U 0.0003573052375658111 -0.2602811427750219 1.0 17027 +100322896 Dthd1 death domain containing 1 Novel U 0.00035715645744036404 -0.2602826838346704 1.0 17028 +72614 Pih1d2 PIH1 domain containing 2 Novel U 0.00035711252123457507 -0.2602831389244456 1.0 17029 +268706 Slc38a9 solute carrier family 38, member 9 Novel N 0.00035707909033481146 -0.2602834852006064 1.0 17030 +100043292 Alyreffm10 Aly/REF export factor family member 10 Novel U 0.0003570639416615313 -0.26028364211006627 1.0 17031 +67057 Yaf2 YY1 associated factor 2 Novel N 0.00035696223535285076 -0.26028469558066814 1.0 17032 +66935 Cir1 corepressor interacting with RBPJ, 1 Novel N 0.0003568818254482186 -0.260285528463817 1.0 17033 +100042943 H2al1g H2A histone family member L1G Novel U 0.00035679751830659014 -0.2602864017144185 1.0 17034 +13162 Slc6a3 solute carrier family 6 (neurotransmitter transporter, dopamine), member 3 Novel U 0.00035678181984203375 -0.2602865643185983 1.0 17035 +319154 H3c13 H3 clustered histone 13 Novel U 0.0003567389564962636 -0.26028700829572476 1.0 17036 +73347 Cldn34b2 claudin 34B2 Novel U 0.0003567085908873586 -0.26028732282170364 1.0 17037 +76668 Mdh1b malate dehydrogenase 1B, NAD (soluble) Novel U 0.00035651179927649737 -0.26028936118273976 1.0 17038 +235047 Zfp809 zinc finger protein 809 Novel U 0.0003564734089970735 -0.260289758827992 1.0 17039 +74754 Dhcr24 24-dehydrocholesterol reductase Novel U 0.0003564583449476638 -0.26028991486092057 1.0 17040 +621893 H2ac21 H2A clustered histone 21 Novel U 0.00035603578167434514 -0.2602942917574146 1.0 17041 +100040591 Kcnj13 potassium inwardly-rectifying channel, subfamily J, member 13 Novel N 0.00035603224777402113 -0.26029432836143795 1.0 17042 +67266 Dipk1a divergent protein kinase domain 1A Novel U 0.00035597968293169256 -0.26029487282634683 1.0 17043 +207393 Elfn2 leucine rich repeat and fibronectin type III, extracellular 2 Novel U 0.0003556115037863696 -0.26029868641383086 1.0 17044 +22643 Zfp101 zinc finger protein 101 Novel U 0.0003553877611625515 -0.2603010039325732 1.0 17045 +13496 Arid3a AT-rich interaction domain 3A Novel U 0.00035518686383530126 -0.2603030848204847 1.0 17046 +240038 Zfp994 zinc finger protein 994 Novel U 0.00035514397083772937 -0.2603035291047436 1.0 17047 +73430 Zfp974 zinc finger protein 974 Novel U 0.0003551029980394224 -0.2603039534996415 1.0 17048 +20595 Smn1 survival motor neuron 1 Novel U 0.0003550849038191758 -0.26030414091898 1.0 17049 +16909 Lmo2 LIM domain only 2 Novel N 0.0003550661786033371 -0.2603043348741501 1.0 17050 +22758 Zscan12 zinc finger and SCAN domain containing 12 Novel U 0.0003549973849898141 -0.2603050474361375 1.0 17051 +11624 Ahrr aryl-hydrocarbon receptor repressor Novel U 0.00035492580697153134 -0.2603057888388979 1.0 17052 +68364 0610030E20Rik RIKEN cDNA 0610030E20 gene Novel U 0.0003548244701908722 -0.2603068384819407 1.0 17053 +21743 Inmt indolethylamine N-methyltransferase Novel N 0.0003547966894158547 -0.2603071262342951 1.0 17054 +66812 Ppcdc phosphopantothenoylcysteine decarboxylase Novel N 0.00035449279385535117 -0.2603102739745207 1.0 17055 +244713 Zfp317 zinc finger protein 317 Novel U 0.000354434464300357 -0.2603108781501339 1.0 17056 +28000 Prpf19 pre-mRNA processing factor 19 Novel U 0.000354325728572798 -0.26031200443122543 1.0 17057 +242286 Sdr16c6 short chain dehydrogenase/reductase family 16C, member 6 Novel U 0.0003542854477581097 -0.2603124216585798 1.0 17058 +64384 Sirt3 sirtuin 3 Novel N 0.00035409912903775116 -0.26031435154176036 1.0 17059 +75556 Cfap161 cilia and flagella associated protein 161 Novel U 0.00035369173536160977 -0.26031857131206554 1.0 17060 +217341 Qrich2 glutamine rich 2 Novel U 0.00035364273110059433 -0.2603190788965902 1.0 17061 +29877 Hdgfl3 HDGF like 3 Novel U 0.000353575901551343 -0.26031977111486443 1.0 17062 +208795 Tmem63a transmembrane protein 63a Novel N 0.00035318757088409085 -0.26032379343115014 1.0 17063 +67676 Rpp21 ribonuclease P 21 subunit Novel U 0.00035316839457919305 -0.2603239920586859 1.0 17064 +68631 Cryl1 crystallin, lambda 1 Novel U 0.0003530220924705274 -0.26032550745111804 1.0 17065 +100041890 Defa32 defensin, alpha, 32 Novel U 0.0003528333652837297 -0.2603274622811148 1.0 17066 +18095 Nkx3-1 NK3 homeobox 1 Novel U 0.0003528179628155754 -0.26032762181937363 1.0 17067 +22646 Zfp105 zinc finger protein 105 Novel N 0.00035279462356174935 -0.2603278635665975 1.0 17068 +68107 Cntd1 cyclin N-terminal domain containing 1 Novel U 0.00035273023425441073 -0.26032853050892624 1.0 17069 +619517 Esp1 exocrine gland secreted peptide 1 Novel U 0.0003527098916628698 -0.2603287412168207 1.0 17070 +98365 Slamf9 SLAM family member 9 Novel U 0.00035251956093949627 -0.2603307126561966 1.0 17071 +236727 Slc9a7 solute carrier family 9 (sodium/hydrogen exchanger), member 7 Novel U 0.00035241320722370373 -0.2603318142644886 1.0 17072 +19018 Scand1 SCAN domain-containing 1 Novel U 0.0003523245088205984 -0.26033273299963217 1.0 17073 +432536 Pom121l12 POM121 membrane glycoprotein-like 12 Novel U 0.0003522183794355777 -0.2603338322843134 1.0 17074 +56275 Rbm14 RNA binding motif protein 14 Novel U 0.0003516539680587136 -0.26033967843880096 1.0 17075 +77422 C330018D20Rik RIKEN cDNA C330018D20 gene Novel U 0.0003516134355854481 -0.2603400982728266 1.0 17076 +76936 Hnrnpm heterogeneous nuclear ribonucleoprotein M Novel N 0.000351444648328731 -0.2603418465656831 1.0 17077 +234309 Cbr4 carbonyl reductase 4 Novel U 0.0003510772773454353 -0.2603456517822514 1.0 17078 +66972 Slc25a23 solute carrier family 25 (mitochondrial carrier; phosphate carrier), member 23 Novel N 0.00035103004540323684 -0.26034614100915604 1.0 17079 +78004 Prr15 proline rich 15 Novel U 0.00035086620581342807 -0.26034783805424133 1.0 17080 +73679 Tex19.1 testis expressed gene 19.1 Novel U 0.0003508069972035345 -0.2603484513350762 1.0 17081 +380718 Mks1 MKS transition zone complex subunit 1 Novel U 0.00035073113730164495 -0.26034923708944624 1.0 17082 +72432 Spink5 serine peptidase inhibitor, Kazal type 5 Novel U 0.000350672164839757 -0.26034984792426785 1.0 17083 +260423 H3c7 H3 clustered histone 7 Novel U 0.00035048890733030755 -0.26035174609952644 1.0 17084 +67010 Rbm7 RNA binding motif protein 7 Novel N 0.0003503088435243843 -0.26035361119450895 1.0 17085 +69501 Etd embryonic testis differentiation Novel U 0.0003502820436572454 -0.2603538887866518 1.0 17086 +330836 Slc7a6 solute carrier family 7 (cationic amino acid transporter, y+ system), member 6 Novel N 0.00035013123243336124 -0.2603554508843511 1.0 17087 +243339 Tmem130 transmembrane protein 130 Novel U 0.0003501170514755168 -0.2603555977702463 1.0 17088 +72371 2210408I21Rik RIKEN cDNA 2210408I21 gene Novel N 0.0003500623921006081 -0.26035616393025474 1.0 17089 +11642 Akap3 A kinase anchor protein 3 Novel N 0.0003500612481002007 -0.2603561757797733 1.0 17090 +14390 Gabpa GA repeat binding protein, alpha Novel N 0.00035002798968312965 -0.26035652026936407 1.0 17091 +232717 Prss58 serine protease 58 Novel U 0.0003498874137109043 -0.26035797635066316 1.0 17092 +70069 H1f7 H1.7 linker histone Novel U 0.00034988435193286877 -0.2603580080644594 1.0 17093 +243385 Gprin3 GPRIN family member 3 Novel U 0.00034986413062742296 -0.2603582175160765 1.0 17094 +219105 Zmym5 zinc finger, MYM-type 5 Novel N 0.0003498200876683128 -0.2603586737115991 1.0 17095 +52004 Cdk2ap2 cyclin dependent kinase 2 associated protein 2 Novel N 0.0003497986354244952 -0.26035889591323536 1.0 17096 +109978 Art4 ADP-ribosyltransferase 4 Novel U 0.00034973321252025825 -0.2603595735615268 1.0 17097 +224116 Muc20 mucin 20 Novel U 0.0003497045384718245 -0.2603598705663779 1.0 17098 +100040187 Gm20828 predicted gene, 20828 Novel U 0.0003496920009806926 -0.26036000042929885 1.0 17099 +15476 Hs3st1 heparan sulfate (glucosamine) 3-O-sulfotransferase 1 Novel N 0.00034957307667292555 -0.26036123224336927 1.0 17100 +381337 Fam178b family with sequence similarity 178, member B Novel U 0.00034954063235446395 -0.2603615683005534 1.0 17101 +56844 Tssc4 tumor-suppressing subchromosomal transferable fragment 4 Novel N 0.00034951487382511794 -0.2603618351065536 1.0 17102 +241494 Zfp385b zinc finger protein 385B Novel N 0.00034950041115769343 -0.2603619849103873 1.0 17103 +73090 2900092C05Rik RIKEN cDNA 2900092C05 gene Novel U 0.0003492731687432612 -0.2603643386798458 1.0 17104 +67866 Wfdc1 WAP four-disulfide core domain 1 Novel U 0.0003487391413854052 -0.2603698701176633 1.0 17105 +56293 Slc35g3 solute carrier family 35, member G3 Novel U 0.0003487378152908973 -0.2603698838533066 1.0 17106 +277203 Tm4sf19 transmembrane 4 L six family member 19 Novel U 0.00034866019364655434 -0.260370687855747 1.0 17107 +238726 Fam81b family with sequence similarity 81, member B Novel U 0.0003486154389240475 -0.26037115142369155 1.0 17108 +66421 2410004B18Rik RIKEN cDNA 2410004B18 gene Novel U 0.0003485336062817954 -0.2603719990435099 1.0 17109 +108655 Foxp1 forkhead box P1 Novel U 0.00034850078067075446 -0.26037233905011 1.0 17110 +210162 Zkscan2 zinc finger with KRAB and SCAN domains 2 Novel U 0.0003483154446528544 -0.2603742587544908 1.0 17111 +114304 Slc28a3 solute carrier family 28 (sodium-coupled nucleoside transporter), member 3 Novel N 0.0003482656015503204 -0.26037477502770834 1.0 17112 +381045 Mix23 mitochondrial matrix import factor 23 Novel U 0.000347969690134318 -0.26037784006842773 1.0 17113 +217127 Kat7 K(lysine) acetyltransferase 7 Novel U 0.0003479152169889868 -0.26037840429947634 1.0 17114 +13396 Dlx6 distal-less homeobox 6 Novel N 0.0003477719368287644 -0.26037988839066584 1.0 17115 +53617 Krt35 keratin 35 Novel U 0.00034759941442864014 -0.26038167537201495 1.0 17116 +74600 Mrpl47 mitochondrial ribosomal protein L47 Novel U 0.0003473803430005664 -0.26038394450666535 1.0 17117 +66511 Chtop chromatin target of PRMT1 Novel N 0.0003472772455209073 -0.26038501238697054 1.0 17118 +73061 Cldn34c1 claudin 34C1 Novel U 0.0003472315640428312 -0.26038548555421875 1.0 17119 +20638 Snrpb small nuclear ribonucleoprotein B Novel U 0.00034709357442605753 -0.26038691484613313 1.0 17120 +100043403 Gm14410 predicted gene 14410 Novel U 0.00034701979701054627 -0.2603876790301777 1.0 17121 +108067 Eif2b3 eukaryotic translation initiation factor 2B, subunit 3 Novel U 0.0003470086092648986 -0.2603877949124793 1.0 17122 +78354 Lypd8l LY6/PLAUR domain containing 8 like Novel U 0.00034689661788339074 -0.2603889549155275 1.0 17123 +30962 Slc7a9 solute carrier family 7 (cationic amino acid transporter, y+ system), member 9 Novel N 0.0003468535411105079 -0.2603894011033249 1.0 17124 +13096 Cyp2c37 cytochrome P450, family 2. subfamily c, polypeptide 37 Novel U 0.00034677840928537567 -0.2603901793162998 1.0 17125 +619301 Tmem253 transmembrane protein 253 Novel U 0.0003467080479371996 -0.2603909081168312 1.0 17126 +52626 Cdkn2aipnl CDKN2A interacting protein N-terminal like Novel U 0.0003466752248664971 -0.26039124809711856 1.0 17127 +235281 Scn3b sodium channel, voltage-gated, type III, beta Novel U 0.000346633865110005 -0.2603916765001167 1.0 17128 +16682 Krt4 keratin 4 Novel U 0.00034659486877867274 -0.2603920804228347 1.0 17129 +232078 Thnsl2 threonine synthase-like 2 (bacterial) Novel U 0.0003465639288016201 -0.2603924008980999 1.0 17130 +209212 Osgin2 oxidative stress induced growth inhibitor family member 2 Novel U 0.000346516417792002 -0.26039289301557567 1.0 17131 +235386 Hykk hydroxylysine kinase 1 Novel N 0.00034639789345611717 -0.2603941206867505 1.0 17132 +26425 Nubp1 nucleotide binding protein 1 Novel N 0.0003461289950492204 -0.26039690592760956 1.0 17133 +56452 Orc6 origin recognition complex, subunit 6 Novel U 0.00034605056048205533 -0.26039771835027786 1.0 17134 +23877 Fiz1 Flt3 interacting zinc finger protein 1 Novel U 0.00034576446229886497 -0.2604006817458544 1.0 17135 +408062 Zfp873 zinc finger protein 873 Novel U 0.0003457273548979187 -0.26040106610309355 1.0 17136 +70511 Eef2kmt eukaryotic elongation factor 2 lysine methyltransferase Novel U 0.0003456197479295097 -0.26040218069253496 1.0 17137 +100043686 Amy2a3 amylase 2a3 Novel U 0.00034532995797012663 -0.2604051823274079 1.0 17138 +72103 Aplf aprataxin and PNKP like factor Novel N 0.0003452162244090416 -0.2604063603758948 1.0 17139 +230163 Aldob aldolase B, fructose-bisphosphate Novel N 0.00034491750281361467 -0.2604094545243603 1.0 17140 +20284 Scrg1 scrapie responsive gene 1 Novel N 0.00034479778597870523 -0.2604106945474008 1.0 17141 +225283 Rprd1a regulation of nuclear pre-mRNA domain containing 1A Novel N 0.00034467224011108094 -0.26041199494737055 1.0 17142 +57776 Ttyh1 tweety family member 1 Novel N 0.0003445318724012982 -0.26041344887149415 1.0 17143 +70227 Zfp619 zinc finger protein 619 Novel U 0.0003444304714283173 -0.26041449917943893 1.0 17144 +212070 Clrn3 clarin 3 Novel U 0.00034439507946481114 -0.26041486576823347 1.0 17145 +68233 Fam229a family with sequence similarity 229, member A Novel U 0.0003442681422687773 -0.26041618057953714 1.0 17146 +234593 Ndrg4 N-myc downstream regulated gene 4 Novel U 0.00034423724179255706 -0.2604165006456541 1.0 17147 +233490 Crebzf CREB/ATF bZIP transcription factor Novel U 0.0003442028402465286 -0.2604168569757369 1.0 17148 +77629 Sphkap SPHK1 interactor, AKAP domain containing Novel U 0.00034405562637467447 -0.2604183818121822 1.0 17149 +67077 Catsperz cation channel sperm associated auxiliary subunit zeta Novel U 0.00034398859735055643 -0.2604190760966105 1.0 17150 +77877 6030458C11Rik RIKEN cDNA 6030458C11 gene Novel U 0.000343894744842885 -0.26042004821779974 1.0 17151 +57321 Terf2ip telomeric repeat binding factor 2, interacting protein Novel U 0.0003437358867799209 -0.26042169366439377 1.0 17152 +227697 Dolk dolichol kinase Novel U 0.00034366372373058443 -0.26042244112688656 1.0 17153 +212974 Pgghg protein glucosylgalactosylhydroxylysine glucosidase Novel N 0.00034340496297557835 -0.2604251213622806 1.0 17154 +67690 Prss37 serine protease 37 Novel N 0.0003433171599083026 -0.2604260308235651 1.0 17155 +320747 Lingo4 leucine rich repeat and Ig domain containing 4 Novel U 0.00034312644981924513 -0.2604280061923983 1.0 17156 +17960 Nat1 N-acetyl transferase 1 Novel U 0.0003426975080370818 -0.26043244915727726 1.0 17157 +54196 Pabpn1 poly(A) binding protein, nuclear 1 Novel N 0.000342668479851697 -0.2604327498302672 1.0 17158 +319185 H2bc13 H2B clustered histone 13 Novel U 0.00034261067353201003 -0.26043334858622624 1.0 17159 +56068 Ammecr1 AMMECR nuclear protein 1 Novel U 0.00034243361045538785 -0.26043518259975323 1.0 17160 +108105 B3gnt5 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 5 Novel N 0.0003423497518772595 -0.2604360512041488 1.0 17161 +319638 Nt5dc1 5'-nucleotidase domain containing 1 Novel U 0.0003421843721092082 -0.2604377642023497 1.0 17162 +100042295 Gsta13 glutathione S-transferase alpha 13 Novel U 0.00034203871132114524 -0.26043927295200414 1.0 17163 +59013 Hnrnph1 heterogeneous nuclear ribonucleoprotein H1 Novel U 0.00034154047143168247 -0.2604444337044004 1.0 17164 +671003 Pate11 prostate and testis expressed 11 Novel U 0.00034153841765498434 -0.2604444549773519 1.0 17165 +75426 Igfbpl1 insulin-like growth factor binding protein-like 1 Novel U 0.00034140678752702037 -0.26044581839789027 1.0 17166 +110805 Foxe1 forkhead box E1 Novel U 0.0003411933135564959 -0.2604480295542594 1.0 17167 +218268 Eif4e1b eukaryotic translation initiation factor 4E family member 1B Novel U 0.00034106104498755115 -0.26044939958774843 1.0 17168 +226601 Gm4846 predicted gene 4846 Novel U 0.0003410255746240468 -0.2604497669886076 1.0 17169 +319207 Pgbd1 piggyBac transposable element derived 1 Novel U 0.000340990377773342 -0.26045013155643015 1.0 17170 +18491 Pappa pregnancy-associated plasma protein A Novel N 0.00034087444573274955 -0.26045133237669554 1.0 17171 +69277 3300002I08Rik RIKEN cDNA 3300002I08 gene Novel U 0.00034076167316726577 -0.26045250047122165 1.0 17172 +76416 Polr1has RNA polymerase I subunit H, antisense Novel U 0.0003405933600200266 -0.26045424385326776 1.0 17173 +75580 Zbtb4 zinc finger and BTB domain containing 4 Novel N 0.00034056496168850613 -0.2604545380022521 1.0 17174 +668213 Cdc5lrt9 cell division cycle 5 like, retrotransposed 9 Novel U 0.0003405462798424151 -0.2604547315081998 1.0 17175 +11923 Neurod4 neurogenic differentiation 4 Novel U 0.00034052422025524474 -0.2604549600006785 1.0 17176 +64453 Zfp280b zinc finger protein 280B Novel U 0.0003403657183423052 -0.2604566017582823 1.0 17177 +241134 Nyap2 neuronal tyrosine-phophorylated phosphoinositide 3-kinase adaptor 2 Novel U 0.00034024126411860814 -0.26045789085104015 1.0 17178 +14555 Gpd1 glycerol-3-phosphate dehydrogenase 1 (soluble) Novel U 0.00034017749617779443 -0.2604585513572748 1.0 17179 +210104 Zfp658 zinc finger protein 658 Novel U 0.00034002780700771344 -0.26046010183277774 1.0 17180 +330189 Tmem120b transmembrane protein 120B Novel U 0.0003400222707376547 -0.26046015917728105 1.0 17181 +208908 Ccdc62 coiled-coil domain containing 62 Novel U 0.00033997910213857865 -0.26046060631621115 1.0 17182 +68888 Gkn3 gastrokine 3 Novel U 0.00033983039459042317 -0.26046214662410644 1.0 17183 +70909 4921504E06Rik RIKEN cDNA 4921504E06 gene Novel U 0.0003396538641608215 -0.26046397512049313 1.0 17184 +71715 Dhx35 DEAH-box helicase 35 Novel N 0.00033959789861521996 -0.2604645548097747 1.0 17185 +117147 Acsm1 acyl-CoA synthetase medium-chain family member 1 Novel N 0.00033953977662125784 -0.2604651568354775 1.0 17186 +237987 Otop2 otopetrin 2 Novel U 0.000339510624389819 -0.26046545879333244 1.0 17187 +58180 Hic2 hypermethylated in cancer 2 Novel U 0.0003394376921701104 -0.26046621422286664 1.0 17188 +66353 Riiad1 regulatory subunit of type II PKA R-subunit (RIIa) domain containing 1 Novel U 0.00033939410631755683 -0.2604666656836946 1.0 17189 +68040 Zfp593 zinc finger protein 593 Novel U 0.00033936500823764093 -0.2604669670806498 1.0 17190 +245902 Ccdc15 coiled-coil domain containing 15 Novel U 0.0003392976428831478 -0.26046766484877715 1.0 17191 +12173 Bnc1 basonuclin zinc finger protein 1 Novel N 0.0003391925761399829 -0.26046875312664897 1.0 17192 +94187 Zfp423 zinc finger protein 423 Novel U 0.0003390685135070134 -0.2604700381633229 1.0 17193 +21784 Tff1 trefoil factor 1 Novel N 0.0003390307264273738 -0.26047042956065164 1.0 17194 +18515 Pbx2 pre B cell leukemia homeobox 2 Novel N 0.0003389682188756618 -0.26047107701181743 1.0 17195 +12140 Fabp7 fatty acid binding protein 7, brain Novel N 0.00033885406173869356 -0.2604722594476894 1.0 17196 +18113 Nnmt nicotinamide N-methyltransferase Novel N 0.0003386815167342395 -0.2604740466631735 1.0 17197 +545471 Zfp345 zinc finger protein 345 Novel U 0.00033857705746093207 -0.2604751286488925 1.0 17198 +237940 Aoc2 amine oxidase copper containing 2 Novel N 0.0003384043985031391 -0.26047691704470144 1.0 17199 +209003 Rbmx2 RNA binding motif protein, X-linked 2 Novel N 0.0003382823498935337 -0.2604781812201876 1.0 17200 +77200 Zfp1007 zinc finger protein 1007 Novel U 0.00033823660546605723 -0.2604786550394636 1.0 17201 +75570 Nhej1 non-homologous end joining factor 1 Novel U 0.00033817787711036264 -0.2604792633458413 1.0 17202 +18674 Slc25a3 solute carrier family 25 (mitochondrial carrier, phosphate carrier), member 3 Novel N 0.0003380546299390465 -0.2604805399359903 1.0 17203 +68295 Aar2 AAR2 splicing factor homolog Novel U 0.0003380476832436889 -0.26048061188963245 1.0 17204 +223648 Ccdc166 coiled-coil domain containing 166 Novel U 0.0003375895708122601 -0.2604853570031375 1.0 17205 +73242 Atat1 alpha tubulin acetyltransferase 1 Novel N 0.00033753443316124847 -0.2604859281171142 1.0 17206 +69900 Mfsd11 major facilitator superfamily domain containing 11 Novel U 0.0003374756348694528 -0.2604865371478877 1.0 17207 +237411 Zfp938 zinc finger protein 938 Novel U 0.00033715499410643106 -0.26048985833437055 1.0 17208 +73603 Trp53tg5 transformation related protein 53 target 5 Novel U 0.0003371211694321604 -0.2604902086892347 1.0 17209 +56720 Tdo2 tryptophan 2,3-dioxygenase Novel U 0.0003371006833076254 -0.2604904208838392 1.0 17210 +70896 Speer1a spermatogenesis associated glutamate (E)-rich protein 1A Novel U 0.0003369750688717968 -0.2604917219940362 1.0 17211 +69790 Med30 mediator complex subunit 30 Novel N 0.0003369269095561681 -0.26049222082664436 1.0 17212 +14120 Fbp2 fructose bisphosphatase 2 Novel N 0.00033690029833212073 -0.26049249646482825 1.0 17213 +623661 Lipt1 lipoyltransferase 1 Novel N 0.0003368331881216467 -0.26049319159018214 1.0 17214 +63872 Zfp296 zinc finger protein 296 Novel U 0.0003368108192170719 -0.26049342328656044 1.0 17215 +103220 Ttc41 tetratricopeptide repeat domain 41 Novel U 0.00033633602014070254 -0.26049834123978527 1.0 17216 +545490 Zfp973 zinc finger protein 973 Novel U 0.00033632258965871775 -0.2604984803522762 1.0 17217 +76459 Car12 carbonic anhydrase 12 Novel N 0.0003363219818198508 -0.26049848664825115 1.0 17218 +66061 Dynlt2b dynein light chain Tctex-type 2B Novel U 0.0003362966940728175 -0.26049874857790367 1.0 17219 +104444 Rexo2 RNA exonuclease 2 Novel U 0.00033622369208988683 -0.2604995047300431 1.0 17220 +383491 Prdm14 PR domain containing 14 Novel U 0.00033599175436182615 -0.26050190713340576 1.0 17221 +76355 Tgds TDP-glucose 4,6-dehydratase Novel U 0.0003355409880199514 -0.26050657615635675 1.0 17222 +237954 Lrrc37a leucine rich repeat containing 37A Novel U 0.0003354384091758062 -0.2605076386646523 1.0 17223 +268354 Tafa2 TAFA chemokine like family member 2 Novel U 0.00033534811592693305 -0.2605085739191559 1.0 17224 +72949 Ccnt2 cyclin T2 Novel U 0.0003353070322259842 -0.2605089994627798 1.0 17225 +71755 Dhdh dihydrodiol dehydrogenase Novel U 0.0003351365797290741 -0.26051076500413944 1.0 17226 +68046 2700062C07Rik RIKEN cDNA 2700062C07 gene Novel U 0.00033487583463270984 -0.26051346579327606 1.0 17227 +230751 Oscp1 organic solute carrier partner 1 Novel N 0.0003347434187346589 -0.2605148373527951 1.0 17228 +18986 Pou2f1 POU domain, class 2, transcription factor 1 Novel N 0.0003347131993948587 -0.26051515036372336 1.0 17229 +70997 Spef1 sperm flagellar 1 Novel N 0.00033464371211640727 -0.2605158701106693 1.0 17230 +12289 Cacna1d calcium channel, voltage-dependent, L type, alpha 1D subunit Novel U 0.00033453749804679753 -0.2605169702725107 1.0 17231 +75311 4930550C14Rik RIKEN cDNA 4930550C14 gene Novel U 0.00033450907977859636 -0.26051726462799857 1.0 17232 +233733 Galnt18 polypeptide N-acetylgalactosaminyltransferase 18 Novel N 0.000334458782016323 -0.2605177856105667 1.0 17233 +22436 Xdh xanthine dehydrogenase Novel U 0.00033428961923863247 -0.2605195377930571 1.0 17234 +385674 Zfp174 zinc finger protein 174 Novel N 0.0003341128890066974 -0.2605213683589898 1.0 17235 +12193 Zfp36l2 zinc finger protein 36, C3H type-like 2 Novel U 0.0003340371438072943 -0.26052215292527525 1.0 17236 +666203 Pramel50 PRAME like 50 Novel U 0.0003339352327574288 -0.2605232085165796 1.0 17237 +75221 Dpp3 dipeptidylpeptidase 3 Novel N 0.0003338654769917686 -0.2605239310445072 1.0 17238 +13395 Dlx5 distal-less homeobox 5 Novel U 0.00033374890569466833 -0.26052513848617054 1.0 17239 +67306 Zc2hc1a zinc finger, C2HC-type containing 1A Novel U 0.00033371515374744896 -0.26052548808773024 1.0 17240 +381399 Bpifb4 BPI fold containing family B, member 4 Novel U 0.00033369461081842865 -0.26052570087071375 1.0 17241 +234358 Zfp930 zinc finger protein 930 Novel U 0.00033353658826814904 -0.2605273376630948 1.0 17242 +320806 Gfm2 G elongation factor, mitochondrial 2 Novel U 0.0003334015198945995 -0.26052873669686794 1.0 17243 +76770 Csta2 cystatin A family member 2 Novel U 0.00033340052576048406 -0.2605287469940764 1.0 17244 +497097 Xkr4 X-linked Kx blood group related 4 Novel U 0.0003330826244953961 -0.2605320398049298 1.0 17245 +66993 Smarcd3 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 3 Novel U 0.0003329678121386137 -0.26053322902754705 1.0 17246 +71131 Zfp689 zinc finger protein 689 Novel U 0.0003328854437111696 -0.2605340821970108 1.0 17247 +630537 Dcpp2 demilune cell and parotid protein 2 Novel U 0.00033277029335789155 -0.26053527492058465 1.0 17248 +18843 Bpifa1 BPI fold containing family A, member 1 Novel U 0.00033259529506429676 -0.260537087547157 1.0 17249 +66766 Tmem239 transmembrane 239 Novel U 0.00033257033740940393 -0.26053734605772594 1.0 17250 +545938 Zfp607a zinc finger protein 607A Novel U 0.0003325407007375049 -0.2605376530333992 1.0 17251 +71793 Ints12 integrator complex subunit 12 Novel N 0.0003324951685959321 -0.2605381246538248 1.0 17252 +67578 Patl2 protein associated with topoisomerase II homolog 2 (yeast) Novel N 0.0003324380506592127 -0.2605387162795357 1.0 17253 +232539 Klhl42 kelch-like 42 Novel U 0.00033221750427574615 -0.2605410006917256 1.0 17254 +240064 Zfp799 zinc finger protein 799 Novel U 0.0003320468408888092 -0.2605427684174772 1.0 17255 +68857 Dtwd2 DTW domain containing 2 Novel N 0.00033200993859930437 -0.2605431506501788 1.0 17256 +18946 Pnliprp1 pancreatic lipase related protein 1 Novel U 0.0003318114975589143 -0.2605452060959518 1.0 17257 +50708 H1f2 H1.2 linker histone, cluster member Novel U 0.0003318064333179035 -0.2605452585511937 1.0 17258 +192198 Lrrc4 leucine rich repeat containing 4 Novel U 0.00033173658642158887 -0.2605459820230496 1.0 17259 +19063 Ppt1 palmitoyl-protein thioesterase 1 Novel U 0.00033165046843454973 -0.2605468740303284 1.0 17260 +107815 Scml2 Scm polycomb group protein like 2 Novel U 0.00033118038544561085 -0.2605517431344747 1.0 17261 +241944 Zfp267 zinc finger protein 267 Novel U 0.0003311158386892843 -0.26055241170765486 1.0 17262 +211798 Mfsd9 major facilitator superfamily domain containing 9 Novel U 0.00033093048940105186 -0.26055433154948937 1.0 17263 +110891 Slc8a2 solute carrier family 8 (sodium/calcium exchanger), member 2 Novel N 0.0003307833330346934 -0.26055585579029455 1.0 17264 +208043 Setd1b SET domain containing 1B Novel U 0.00033070295638872325 -0.2605566883289513 1.0 17265 +13723 Emb embigin Novel U 0.00033067122325053096 -0.26055701701975353 1.0 17266 +68904 Abhd13 abhydrolase domain containing 13 Novel U 0.0003306224997542522 -0.2605575216961263 1.0 17267 +100034361 Mfap1b microfibrillar-associated protein 1B Novel U 0.0003306125498555982 -0.2605576247568494 1.0 17268 +74504 Fam53a family with sequence similarity 53, member A Novel U 0.00033036705917160525 -0.26056016754128414 1.0 17269 +110308 Krt5 keratin 5 Novel U 0.00033026889580009013 -0.2605611843142594 1.0 17270 +108653 Rimklb ribosomal modification protein rimK-like family member B Novel N 0.000330046718721599 -0.2605634856171347 1.0 17271 +228151 Fads2b fatty acid desaturase 2B Novel U 0.0003300216577853846 -0.2605637451974882 1.0 17272 +668964 Btbd35f17 BTB domain containing 35, family member 17 Novel U 0.0003299753719073692 -0.2605642246250911 1.0 17273 +434402 Gm5617 predicted gene 5617 Novel U 0.00032959769635786384 -0.26056813657601746 1.0 17274 +216441 Slc26a10 solute carrier family 26, member 10 Novel U 0.00032953506338187933 -0.26056878532632377 1.0 17275 +71934 Car13 carbonic anhydrase 13 Novel U 0.00032938320814113956 -0.2605703582379154 1.0 17276 +269252 Gtf3c4 general transcription factor IIIC, polypeptide 4 Novel N 0.00032937564578937057 -0.2605704365685064 1.0 17277 +20390 Sftpd surfactant associated protein D Novel U 0.00032918849127758497 -0.2605723751087871 1.0 17278 +232210 Hmces 5-hydroxymethylcytosine (hmC) binding, ES cell specific Novel N 0.0003289381938670579 -0.26057496768113725 1.0 17279 +503847 Ear14 eosinophil-associated, ribonuclease A family, member 14 Novel U 0.0003288814101477993 -0.26057555584503467 1.0 17280 +353211 Prune2 prune homolog 2 Novel U 0.0003286547112827081 -0.260577903984427 1.0 17281 +75597 Ndufaf2 NADH:ubiquinone oxidoreductase complex assembly factor 2 Novel N 0.00032823077944676987 -0.2605822950564476 1.0 17282 +73300 1700031F05Rik RIKEN cDNA 1700031F05 gene Novel U 0.00032802549376706897 -0.26058442139876953 1.0 17283 +319162 H2ac25 H2A clustered histone 25 Novel U 0.0003280027611582638 -0.26058465686238425 1.0 17284 +384763 Zfp667 zinc finger protein 667 Novel U 0.000327904507514468 -0.2605856745703968 1.0 17285 +12716 Ckmt1 creatine kinase, mitochondrial 1, ubiquitous Novel U 0.00032786207351814415 -0.2605861141003358 1.0 17286 +109284 R3hdm4 R3H domain containing 4 Novel U 0.00032779707271827845 -0.260586787376484 1.0 17287 +18478 Pah phenylalanine hydroxylase Novel N 0.00032769257921439366 -0.2605878697167622 1.0 17288 +12293 Cacna2d1 calcium channel, voltage-dependent, alpha2/delta subunit 1 Novel U 0.0003275269446120518 -0.26058958535452825 1.0 17289 +100041296 Pramel47 PRAME like 47 Novel U 0.00032725711656256994 -0.2605923802245947 1.0 17290 +57247 Zfp276 zinc finger protein (C2H2 type) 276 Novel U 0.00032713792760902244 -0.26059361477985743 1.0 17291 +319167 H2ac11 H2A clustered histone 11 Novel U 0.00032695728276321026 -0.26059548589323195 1.0 17292 +57138 Slc12a5 solute carrier family 12, member 5 Novel U 0.00032695080967871574 -0.2605955529412284 1.0 17293 +17193 Mbd4 methyl-CpG binding domain protein 4 Novel U 0.0003269116558846747 -0.26059595849493994 1.0 17294 +407795 Smim31 small integral membrane protein 31 Novel U 0.0003268594963242022 -0.2605964987619527 1.0 17295 +68223 Fam24a family with sequence similarity 24, member A Novel U 0.0003266376483985047 -0.26059879665547414 1.0 17296 +66419 Mrpl11 mitochondrial ribosomal protein L11 Novel U 0.00032653158066192644 -0.2605998953016029 1.0 17297 +216551 Lgalsl galectin like Novel U 0.0003264136111553766 -0.26060111722587365 1.0 17298 +106585 Ankrd12 ankyrin repeat domain 12 Novel U 0.0003261760451918774 -0.260603577926314 1.0 17299 +16601 Klf9 Kruppel-like transcription factor 9 Novel U 0.0003261103120795961 -0.2606042587877302 1.0 17300 +20841 Zfp143 zinc finger protein 143 Novel N 0.0003260161532443265 -0.2606052340818506 1.0 17301 +69428 Spmip3 sperm microtubule inner protein 3 Novel U 0.00032592865008576404 -0.2606061404366905 1.0 17302 +72723 Zfp74 zinc finger protein 74 Novel U 0.0003258944278644802 -0.2606064949093335 1.0 17303 +210135 Zfp180 zinc finger protein 180 Novel U 0.0003258708745613078 -0.2606067388736735 1.0 17304 +271036 Catsperb cation channel sperm associated auxiliary subunit beta Novel U 0.00032560638258369025 -0.260609478472883 1.0 17305 +319151 H3c6 H3 clustered histone 6 Novel U 0.00032559102727938016 -0.26060963752262023 1.0 17306 +15186 Hdc histidine decarboxylase Novel N 0.0003255898717691015 -0.26060964949135773 1.0 17307 +240025 Dact2 dishevelled-binding antagonist of beta-catenin 2 Novel U 0.00032529624425577824 -0.2606126908754883 1.0 17308 +664609 Rhox4a reproductive homeobox 4A Novel U 0.00032522613335647134 -0.26061341708187846 1.0 17309 +77889 Lbh limb-bud and heart Novel N 0.00032513979909386 -0.26061431132933255 1.0 17310 +70640 Dcp2 decapping mRNA 2 Novel N 0.0003251229260036744 -0.260614486100246 1.0 17311 +27966 Rrp9 ribosomal RNA processing 9, U3 small nucleolar RNA binding protein Novel N 0.00032505205801811727 -0.26061522014851074 1.0 17312 +330301 Zfp786 zinc finger protein 786 Novel U 0.00032495120424378836 -0.26061626478858985 1.0 17313 +14915 Guca2a guanylate cyclase activator 2a (guanylin) Novel U 0.0003248412228330375 -0.260617403972427 1.0 17314 +330409 Cecr2 CECR2, histone acetyl-lysine reader Novel U 0.00032483715210431294 -0.2606174461369013 1.0 17315 +73681 Trmt11 tRNA methyltransferase 11 Novel U 0.0003247978506283902 -0.26061785322029696 1.0 17316 +22127 Tsx testis specific X-linked gene Novel U 0.00032450767803956273 -0.2606208588184331 1.0 17317 +225923 Oosp3 oocyte secreted protein 3 Novel U 0.0003244618526223465 -0.2606213334765982 1.0 17318 +224092 Lsg1 large 60S subunit nuclear export GTPase 1 Novel N 0.00032445510862721564 -0.26062140333067807 1.0 17319 +319618 Dcp1b decapping mRNA 1B Novel U 0.0003243937169101257 -0.26062203922406557 1.0 17320 +17110 Lyz1 lysozyme 1 Novel U 0.00032436344521764713 -0.2606223527772611 1.0 17321 +71664 Tmt1b thiol methyltransferase 1B Novel U 0.0003241877728602666 -0.26062417238576396 1.0 17322 +218975 Mapk1ip1l mitogen-activated protein kinase 1 interacting protein 1-like Novel U 0.0003239086678301005 -0.2606270633464913 1.0 17323 +230824 Grhl3 grainyhead like transcription factor 3 Novel U 0.0003238810475800348 -0.2606273494361335 1.0 17324 +76382 1700012A03Rik RIKEN cDNA 1700012A03 gene Novel U 0.00032372410961878725 -0.26062897499437704 1.0 17325 +93746 Gprc5d G protein-coupled receptor, family C, group 5, member D Novel U 0.00032360687745235274 -0.26063018928130316 1.0 17326 +17536 Meis2 Meis homeobox 2 Novel U 0.0003233693764261539 -0.2606326493091251 1.0 17327 +14403 Gabrd gamma-aminobutyric acid (GABA) A receptor, subunit delta Novel U 0.0003233155348897039 -0.26063320699798975 1.0 17328 +216395 Rxylt1 ribitol xylosyltransferase 1 Novel N 0.0003231602453714414 -0.260634815481715 1.0 17329 +432450 Nkain2 Na+/K+ transporting ATPase interacting 2 Novel U 0.0003230237326425123 -0.2606362294760737 1.0 17330 +238673 Zfp367 zinc finger protein 367 Novel N 0.00032294981586282153 -0.2606369951036478 1.0 17331 +66528 Smim5 small integral membrane protein 5 Novel U 0.0003228122059716404 -0.260638420462377 1.0 17332 +319157 H4c6 H4 clustered histone 6 Novel U 0.0003227403233736981 -0.2606391650199635 1.0 17333 +331524 Xkrx X-linked Kx blood group related, X-linked Novel U 0.0003226154651316421 -0.2606404582975302 1.0 17334 +53883 Celsr2 cadherin, EGF LAG seven-pass G-type receptor 2 Novel U 0.0003225609983539778 -0.2606410224626227 1.0 17335 +228801 Bpifb1 BPI fold containing family B, member 1 Novel U 0.0003224056585443485 -0.26064263146726435 1.0 17336 +547097 B020011L13Rik RIKEN cDNA B020011L13 gene Novel U 0.0003223967617488738 -0.2606427236199794 1.0 17337 +433466 Jmjd7 jumonji domain containing 7 Novel N 0.0003223393986690352 -0.26064331778487465 1.0 17338 +72472 Slc16a10 solute carrier family 16 (monocarboxylic acid transporters), member 10 Novel N 0.00032227812524507793 -0.26064395245298577 1.0 17339 +233065 Alkbh6 alkB homolog 6 Novel U 0.0003221311618842105 -0.2606454746946465 1.0 17340 +210554 Hus1b HUS1 checkpoint clamp component B Novel U 0.00032211380765777915 -0.26064565444915333 1.0 17341 +70408 Polr3f polymerase (RNA) III (DNA directed) polypeptide F Novel U 0.0003221082408194561 -0.2606457121102817 1.0 17342 +78783 Brpf1 bromodomain and PHD finger containing, 1 Novel U 0.00032194858744592986 -0.26064736579467634 1.0 17343 +71706 Slc46a3 solute carrier family 46, member 3 Novel N 0.00032146984448930835 -0.2606523245984832 1.0 17344 +71773 Ugt2b1 UDP glucuronosyltransferase 2 family, polypeptide B1 Novel U 0.0003213737242650835 -0.26065332020860593 1.0 17345 +14473 Gc vitamin D binding protein Novel N 0.0003213626077349601 -0.2606534353532595 1.0 17346 +240476 Zfp407 zinc finger protein 407 Novel N 0.00032131845654668583 -0.2606538926698163 1.0 17347 +16848 Lfng LFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase Novel U 0.0003212481886508084 -0.26065462050237187 1.0 17348 +228796 Bpifb6 BPI fold containing family B, member 6 Novel U 0.00032102674431642823 -0.2606569142155078 1.0 17349 +21922 Clec3b C-type lectin domain family 3, member b Novel N 0.00032096686919227583 -0.26065753440007544 1.0 17350 +64296 Abhd8 abhydrolase domain containing 8 Novel U 0.0003208569963995053 -0.2606586724588511 1.0 17351 +75304 4930563E22Rik RIKEN cDNA 4930563E22 gene Novel U 0.0003208256937792837 -0.26065899669036235 1.0 17352 +54646 Ppp1r3f protein phosphatase 1, regulatory subunit 3F Novel U 0.00032052917011979044 -0.2606620680726797 1.0 17353 +245867 Pcmtd2 protein-L-isoaspartate (D-aspartate) O-methyltransferase domain containing 2 Novel U 0.00032049136835440254 -0.2606624596221229 1.0 17354 +19215 Ptgds prostaglandin D2 synthase (brain) Novel N 0.00032027663026282737 -0.2606646838722163 1.0 17355 +69577 Fastkd3 FAST kinase domains 3 Novel N 0.0003200836854855039 -0.2606666823878771 1.0 17356 +22697 Zscan21 zinc finger and SCAN domain containing 21 Novel N 0.0003200302345514191 -0.26066723603089526 1.0 17357 +403180 Ccdc121rt1 coiled-coil domain containing 121, retrogene 1 Novel U 0.0003199275877688481 -0.2606682992428948 1.0 17358 +238505 Mtr 5-methyltetrahydrofolate-homocysteine methyltransferase Novel U 0.00031991830441904757 -0.26066839539952685 1.0 17359 +54380 Smarcal1 SWI/SNF related matrix associated, actin dependent regulator of chromatin, subfamily a-like 1 Novel U 0.0003198631103200567 -0.2606689670981898 1.0 17360 +226245 Plekhs1 pleckstrin homology domain containing, family S member 1 Novel U 0.0003196838953075767 -0.2606708234013977 1.0 17361 +11922 Neurod6 neurogenic differentiation 6 Novel U 0.0003196744348943759 -0.2606709213920466 1.0 17362 +67078 Pgp phosphoglycolate phosphatase Novel U 0.0003195397323517179 -0.2606723166365554 1.0 17363 +17147 Mageb3 MAGE family member B3 Novel U 0.00031936059100140784 -0.2606741721767729 1.0 17364 +15485 Hsd17b1 hydroxysteroid (17-beta) dehydrogenase 1 Novel N 0.0003193578077636367 -0.2606742010054583 1.0 17365 +240869 Zbtb37 zinc finger and BTB domain containing 37 Novel U 0.0003192967236089255 -0.2606748337131247 1.0 17366 +20129 Rptn repetin Novel U 0.00031929000672975945 -0.26067490328633836 1.0 17367 +72154 Zfp157 zinc finger protein 157 Novel U 0.00031924449907325727 -0.2606753746531484 1.0 17368 +74352 Zfp84 zinc finger protein 84 Novel U 0.0003192157481402027 -0.26067567245436785 1.0 17369 +211378 Zfp1008 zinc finger protein 1008 Novel U 0.000319165653422242 -0.2606761913338097 1.0 17370 +668501 Zfp507 zinc finger protein 507 Novel U 0.00031894662445422956 -0.2606784600286602 1.0 17371 +51875 Tmem141 transmembrane protein 141 Novel U 0.00031893719478853945 -0.26067855770082743 1.0 17372 +233016 Blvrb biliverdin reductase B Novel N 0.0003188642708255791 -0.2606793130448385 1.0 17373 +93706 Pcdhgc3 protocadherin gamma subfamily C, 3 Novel U 0.0003188498004290777 -0.2606794629287298 1.0 17374 +114565 Zbtb21 zinc finger and BTB domain containing 21 Novel N 0.000318642547729651 -0.2606816096453774 1.0 17375 +665902 Zscan4f zinc finger and SCAN domain containing 4F Novel U 0.00031863389449958185 -0.26068169927525 1.0 17376 +72184 Klhl35 kelch-like 35 Novel U 0.0003186156360619377 -0.2606818883955469 1.0 17377 +215332 Slc36a3 solute carrier family 36 (proton/amino acid symporter), member 3 Novel U 0.00031856669825470937 -0.2606823952917454 1.0 17378 +319196 Ankef1 ankyrin repeat and EF-hand domain containing 1 Novel U 0.00031833910467594283 -0.26068475269855257 1.0 17379 +66165 Bccip BRCA2 and CDKN1A interacting protein Novel U 0.0003183308048462355 -0.2606848386679158 1.0 17380 +632778 Erich4 glutamate rich 4 Novel U 0.00031828970485709525 -0.26068526438025225 1.0 17381 +237758 Zfp454 zinc finger protein 454 Novel U 0.0003182350712944194 -0.2606858302728985 1.0 17382 +16499 Kcnab3 potassium voltage-gated channel, shaker-related subfamily, beta member 3 Novel N 0.00031803657314360636 -0.2606878863102193 1.0 17383 +27756 Lsm2 LSM2 homolog, U6 small nuclear RNA and mRNA degradation associated Novel N 0.00031794448878871655 -0.26068884011694016 1.0 17384 +332397 Nanos1 nanos C2HC-type zinc finger 1 Novel N 0.00031793942935144507 -0.26068889252242505 1.0 17385 +26949 Vat1 vesicle amine transport 1 Novel N 0.00031781046109356445 -0.2606902283714006 1.0 17386 +76900 Ssbp4 single stranded DNA binding protein 4 Novel U 0.0003177839576512258 -0.2606905028931851 1.0 17387 +23937 Mab21l2 mab-21-like 2 Novel N 0.0003177002629955148 -0.2606913697996776 1.0 17388 +71854 Dpep3 dipeptidase 3 Novel U 0.0003176370105679049 -0.2606920249662435 1.0 17389 +56739 Rec8 REC8 meiotic recombination protein Novel U 0.00031742960121780334 -0.2606941733054737 1.0 17390 +14417 Gad2 glutamic acid decarboxylase 2 Novel N 0.00031740128228938927 -0.26069446663200324 1.0 17391 +17528 Mpz myelin protein zero Novel U 0.0003173570111223909 -0.2606949251912956 1.0 17392 +232976 Zfp574 zinc finger protein 574 Novel U 0.0003171654275034212 -0.260696909608123 1.0 17393 +208936 Adamts18 ADAM metallopeptidase with thrombospondin type 1 motif 18 Novel U 0.0003171597234460421 -0.26069696869056175 1.0 17394 +77632 Pramel13 PRAME like 13 Novel U 0.0003170814098978536 -0.26069777985971954 1.0 17395 +212647 Aldh4a1 aldehyde dehydrogenase 4 family, member A1 Novel U 0.00031700590546356706 -0.2606985619321678 1.0 17396 +72047 Ddx42 DEAD box helicase 42 Novel N 0.0003169559416611565 -0.2606990794555907 1.0 17397 +74686 Slc25a54 solute carrier family 25, member 54 Novel U 0.00031679914460917244 -0.2607007035543007 1.0 17398 +76832 Hyls1 HYLS1, centriolar and ciliogenesis associated Novel U 0.0003166313227604171 -0.26070244184749325 1.0 17399 +109151 Chd9 chromodomain helicase DNA binding protein 9 Novel U 0.00031652173296222146 -0.2607035769750204 1.0 17400 +14201 Fhl3 four and a half LIM domains 3 Novel N 0.0003163731159901442 -0.26070511634473165 1.0 17401 +244198 Olfml1 olfactomedin-like 1 Novel U 0.00031630707354616383 -0.26070580041019537 1.0 17402 +403183 Mettl21e methyltransferase like 21E Novel U 0.0003162153600415395 -0.2607067503756613 1.0 17403 +12295 Cacnb1 calcium channel, voltage-dependent, beta 1 subunit Novel U 0.00031617909967399116 -0.2607071259593564 1.0 17404 +26970 Pla2g2e phospholipase A2, group IIE Novel U 0.00031615723768330697 -0.26070735240513726 1.0 17405 +71837 1700003E16Rik RIKEN cDNA 1700003E16 gene Novel U 0.0003160060335030384 -0.26070891857306594 1.0 17406 +23834 Cdc6 cell division cycle 6 Novel U 0.0003159487801250348 -0.26070951160167316 1.0 17407 +319719 Simc1 SUMO-interacting motifs containing 1 Novel U 0.000315900676126507 -0.2607100098613086 1.0 17408 +100043387 Gm14305 predicted gene 14305 Novel U 0.0003157714247238138 -0.26071134864308876 1.0 17409 +17766 Nudt1 nudix hydrolase 1 Novel N 0.000315598426447738 -0.26071314055354533 1.0 17410 +13107 Cyp2f2 cytochrome P450, family 2, subfamily f, polypeptide 2 Novel N 0.0003154460456767018 -0.26071471890856246 1.0 17411 +11932 Atp1b2 ATPase, Na+/K+ transporting, beta 2 polypeptide Novel U 0.0003153151965819382 -0.26071607423918464 1.0 17412 +546336 Prrg1 proline rich Gla (G-carboxyglutamic acid) 1 Novel U 0.0003151444131184505 -0.26071784320868524 1.0 17413 +245536 Gm614 predicted gene 614 Novel U 0.00031508533002230673 -0.2607184551894528 1.0 17414 +319161 H4c18 H4 clustered histone 18 Novel U 0.0003148362804684362 -0.26072103483654474 1.0 17415 +504193 Npcd neuronal pentraxin chromo domain Novel U 0.00031480417392339274 -0.2607213673950829 1.0 17416 +21350 Tal2 T cell acute lymphocytic leukemia 2 Novel U 0.0003147952459353408 -0.2607214598708896 1.0 17417 +624957 H2ab3 H2A.B variant histone 3 Novel U 0.00031459522419696544 -0.26072353168948037 1.0 17418 +100037282 Rsph3b radial spoke 3B homolog (Chlamydomonas) Novel U 0.0003145530917763526 -0.260723968095708 1.0 17419 +622675 Zfp827 zinc finger protein 827 Novel U 0.00031451588358745783 -0.2607243534969054 1.0 17420 +15572 Elavl4 ELAV like RNA binding protein 4 Novel N 0.0003144888704110336 -0.2607246332984988 1.0 17421 +14079 Fabp2 fatty acid binding protein 2, intestinal Novel N 0.00031447399707361086 -0.26072478735603893 1.0 17422 +67179 Ccdc25 coiled-coil domain containing 25 Novel N 0.00031416677384930923 -0.26072796956409683 1.0 17423 +72865 Rtl8c retrotransposon Gag like 8C Novel U 0.0003141323633677994 -0.2607283259867331 1.0 17424 +101831 Faap24 Fanconi anemia core complex associated protein 24 Novel N 0.0003141214996594383 -0.2607284385126672 1.0 17425 +67419 Armh4 armadillo-like helical domain containing 4 Novel N 0.0003139312727264414 -0.2607304088769858 1.0 17426 +59057 Zfp24 zinc finger protein 24 Novel N 0.0003138875164154963 -0.26073086210341617 1.0 17427 +69871 Ppp1r35 protein phosphatase 1, regulatory subunit 35 Novel U 0.00031371345053879743 -0.2607326650720449 1.0 17428 +69906 Slc25a32 solute carrier family 25, member 32 Novel N 0.0003135461700926204 -0.26073439775740737 1.0 17429 +27425 Atp5mg ATP synthase membrane subunit g Novel U 0.0003133799411634096 -0.26073611955119164 1.0 17430 +67687 1700011L22Rik RIKEN cDNA 1700011L22 gene Novel U 0.0003132037678320155 -0.26073794434876685 1.0 17431 +217116 Spata20 spermatogenesis associated 20 Novel U 0.000313178485891066 -0.2607382062182801 1.0 17432 +69702 Ndufaf1 NADH:ubiquinone oxidoreductase complex assembly factor 1 Novel N 0.0003131161110681329 -0.26073885229464555 1.0 17433 +109082 Fbxw17 F-box and WD-40 domain protein 17 Novel U 0.0003129650442946059 -0.2607404170393197 1.0 17434 +67607 Zfp788 zinc finger protein 788 Novel U 0.00031295439129540027 -0.2607405273827353 1.0 17435 +628308 Zfp970 zinc finger protein 970 Novel U 0.00031291645046238674 -0.2607409203726364 1.0 17436 +381406 Trp53rka transformation related protein 53 regulating kinase A Novel U 0.0003128889202151657 -0.2607412055300321 1.0 17437 +223723 Ttll12 tubulin tyrosine ligase-like family, member 12 Novel U 0.00031269534634796435 -0.2607432105617852 1.0 17438 +171211 Edaradd EDAR associated via death domain Novel U 0.00031259116429210106 -0.26074428967609503 1.0 17439 +668115 Cwc22rt7 CWC22 spliceosome-associated protein, retrotransposed 7 Novel U 0.0003125814619282624 -0.2607443901728607 1.0 17440 +209601 Erich3 glutamate rich 3 Novel U 0.00031256168425545795 -0.2607445950293455 1.0 17441 +59049 Slc22a17 solute carrier family 22 (organic cation transporter), member 17 Novel N 0.0003122876012595877 -0.26074743397200667 1.0 17442 +66328 Scp2d1 SCP2 sterol-binding domain containing 1 Novel U 0.0003122147676620048 -0.2607481883800162 1.0 17443 +76645 Pkd1l2 polycystic kidney disease 1 like 2 Novel U 0.00031215819910506456 -0.2607487743152694 1.0 17444 +66336 Cenpp centromere protein P Novel U 0.0003119517318877451 -0.2607509128959191 1.0 17445 +212933 Pm20d1 peptidase M20 domain containing 1 Novel N 0.0003118654862926973 -0.26075180622495747 1.0 17446 +107986 Ddb2 damage specific DNA binding protein 2 Novel U 0.00031181779941782777 -0.2607523001640398 1.0 17447 +11992 Auh AU RNA binding protein/enoyl-coenzyme A hydratase Novel N 0.0003118063773559417 -0.26075241847338126 1.0 17448 +100041953 Sap18b Sin3-associated polypeptide 18B Novel U 0.00031158006195281966 -0.2607547626408871 1.0 17449 +252830 Obox6 oocyte specific homeobox 6 Novel U 0.00031153648099931845 -0.2607552140509708 1.0 17450 +68055 Dmac2l distal membrane arm assembly component 2 like Novel U 0.0003114800740188719 -0.26075579831262 1.0 17451 +67843 Slc35a4 solute carrier family 35, member A4 Novel U 0.00031131615343930614 -0.26075749619659455 1.0 17452 +102308570 Lbhd1 LBH domain containing 1 Novel U 0.0003111048193395936 -0.26075968518825215 1.0 17453 +268481 Krt222 keratin 222 Novel U 0.00031104943066881976 -0.2607602589022832 1.0 17454 +75275 Tmco5b transmembrane and coiled-coil domains 5B Novel U 0.0003109002098813782 -0.26076180452629416 1.0 17455 +23894 Gtf2h2 general transcription factor II H, polypeptide 2 Novel U 0.0003108174754502915 -0.2607626614868116 1.0 17456 +330490 Nlrp9c NLR family, pyrin domain containing 9C Novel U 0.0003106635236933042 -0.2607642561140496 1.0 17457 +100041596 Gal3st2b galactose-3-O-sulfotransferase 2B Novel U 0.00031060283362983134 -0.260764884739732 1.0 17458 +52815 Ldhd lactate dehydrogenase D Novel N 0.0003105806291619884 -0.26076511473287994 1.0 17459 +21401 Tcea3 transcription elongation factor A (SII), 3 Novel U 0.00031056283853409244 -0.26076529900761886 1.0 17460 +102637973 B3galt9 beta-1,3-galactosyltransferase 9 Novel U 0.00031055269504464116 -0.26076540407354915 1.0 17461 +14958 H1f0 H1.0 linker histone Novel U 0.0003104407694803252 -0.260766563394865 1.0 17462 +75894 Adal adenosine deaminase-like Novel U 0.00031042208534010757 -0.2607667569245751 1.0 17463 +228731 Nkx2-4 NK2 homeobox 4 Novel U 0.0003104075625177606 -0.2607669073514916 1.0 17464 +56515 Rnf138 ring finger protein 138 Novel U 0.0003102972764389449 -0.2607680496910705 1.0 17465 +100861640 Rhox4a2 reproductive homeobox 4A2 Novel U 0.0003102876602980534 -0.2607681492947418 1.0 17466 +15432 Hoxd12 homeobox D12 Novel U 0.0003100100056128704 -0.26077102523284346 1.0 17467 +54382 Tcstv1a 2 cell stage variable group member 1A Novel U 0.0003099833289000861 -0.2607713015493575 1.0 17468 +665001 Gm14391 predicted gene 14391 Novel U 0.00030986235047275975 -0.2607725546399308 1.0 17469 +170734 Zscan5b zinc finger and SCAN domain containing 5B Novel U 0.00030985679670885623 -0.2607726121656348 1.0 17470 +57275 Lenep lens epithelial protein Novel N 0.0003098165365727665 -0.2607730291788009 1.0 17471 +235610 Atrip ATR interacting protein Novel U 0.00030953642295187883 -0.26077593058647786 1.0 17472 +226169 Pprc1 peroxisome proliferative activated receptor, gamma, coactivator-related 1 Novel U 0.00030953538283957265 -0.26077594135992693 1.0 17473 +100040016 Rhox2e reproductive homeobox 2E Novel U 0.00030941345375569895 -0.2607772042973695 1.0 17474 +382074 Foxr1 forkhead box R1 Novel N 0.00030923825456726764 -0.2607790190048039 1.0 17475 +69747 Zswim7 zinc finger SWIM-type containing 7 Novel N 0.00030920754626954044 -0.2607793370803423 1.0 17476 +56711 Plag1 pleiomorphic adenoma gene 1 Novel U 0.00030917755504958615 -0.2607796477284126 1.0 17477 +52466 Slc46a1 solute carrier family 46, member 1 Novel U 0.0003091081869938776 -0.2607803662404533 1.0 17478 +69806 Slc39a11 solute carrier family 39 (metal ion transporter), member 11 Novel U 0.00030904156830693344 -0.2607810562746227 1.0 17479 +54201 Zfp316 zinc finger protein 316 Novel U 0.0003087597031014373 -0.2607839758251554 1.0 17480 +243931 Tshz3 teashirt zinc finger family member 3 Novel N 0.00030838082456048854 -0.26078790023662757 1.0 17481 +75424 Zfp820 zinc finger protein 820 Novel U 0.0003082597657289344 -0.26078915416002524 1.0 17482 +94192 C1galt1 core 1 synthase, glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase, 1 Novel U 0.00030825005158615845 -0.2607892547787968 1.0 17483 +195733 Grhl1 grainyhead like transcription factor 1 Novel N 0.0003082216294136844 -0.2607895491747249 1.0 17484 +26423 Nr5a1 nuclear receptor subfamily 5, group A, member 1 Novel U 0.00030820507537773935 -0.26078972064088507 1.0 17485 +17749 Polr2k polymerase (RNA) II (DNA directed) polypeptide K Novel N 0.0003081896261690547 -0.26078988066328074 1.0 17486 +225152 Gjd4 gap junction protein, delta 4 Novel U 0.0003080749686247331 -0.26079106828235565 1.0 17487 +320816 Ankrd16 ankyrin repeat domain 16 Novel U 0.00030803408188663994 -0.26079149178584476 1.0 17488 +80838 H1f1 H1.1 linker histone, cluster member Novel U 0.00030798885803202415 -0.26079196021304424 1.0 17489 +15388 Hnrnpl heterogeneous nuclear ribonucleoprotein L Novel N 0.0003078601309500364 -0.2607932935639278 1.0 17490 +19687 Rfc1 replication factor C (activator 1) 1 Novel U 0.0003078488279150402 -0.2607934106403927 1.0 17491 +73449 Smim33 small integral membrane protein 33 Novel U 0.0003077284230297064 -0.2607946577902369 1.0 17492 +16351 Ipp IAP promoted placental gene Novel U 0.00030724508406268546 -0.2607996641993684 1.0 17493 +546849 AAdacl4fm3 AADACL4 family member 3 Novel U 0.00030722682595291594 -0.2607998533162692 1.0 17494 +211389 Suox sulfite oxidase Novel U 0.00030710666687676255 -0.2608010979200299 1.0 17495 +242642 Hpdl 4-hydroxyphenylpyruvate dioxygenase-like Novel U 0.0003070946682465186 -0.2608012222014476 1.0 17496 +73390 Msl3l2 MSL3 like 2 Novel U 0.00030706044975502636 -0.2608015766354576 1.0 17497 +233802 Thumpd1 THUMP domain containing 1 Novel N 0.00030683485557953135 -0.2608039133325114 1.0 17498 +433702 Ncbp1 nuclear cap binding protein subunit 1 Novel U 0.0003068000522476238 -0.2608042738242792 1.0 17499 +66857 Plbd1 phospholipase B domain containing 1 Novel U 0.00030672254583889307 -0.2608050766331129 1.0 17500 +101739 Psip1 PC4 and SFRS1 interacting protein 1 Novel N 0.0003067112837338636 -0.26080519328562657 1.0 17501 +18231 Nxph1 neurexophilin 1 Novel U 0.00030627841843377265 -0.26080967689017526 1.0 17502 +97820 4833439L19Rik RIKEN cDNA 4833439L19 gene Novel U 0.000306107080283181 -0.26081145160510666 1.0 17503 +269610 Chd5 chromodomain helicase DNA binding protein 5 Novel N 0.0003060166191851901 -0.2608123885981859 1.0 17504 +15433 Hoxd13 homeobox D13 Novel U 0.00030599009988340506 -0.26081266328424196 1.0 17505 +272428 Acsm5 acyl-CoA synthetase medium-chain family member 5 Novel U 0.00030593253809436163 -0.2608132595073607 1.0 17506 +21945 Dedd death effector domain-containing Novel U 0.00030591734942170875 -0.2608134168311327 1.0 17507 +100206 Adprs ADP-ribosylserine hydrolase Novel N 0.00030587615635312723 -0.2608138435075829 1.0 17508 +66388 Cutc cutC copper transporter Novel U 0.00030584363321394615 -0.2608141803811894 1.0 17509 +106344 Rfc4 replication factor C (activator 1) 4 Novel U 0.0003058204424879376 -0.26081442058996707 1.0 17510 +271305 Phf21b PHD finger protein 21B Novel U 0.00030573994009510736 -0.2608152544311056 1.0 17511 +56706 Ccnl1 cyclin L1 Novel N 0.00030570469476542267 -0.26081561950107185 1.0 17512 +100342 Tent5b terminal nucleotidyltransferase 5B Novel N 0.0003054808913506328 -0.26081793764948513 1.0 17513 +347708 Dppa1 developmental pluripotency associated 1 Novel U 0.00030547060023237 -0.2608180442445498 1.0 17514 +72171 Shq1 SHQ1 homolog (S. cerevisiae) Novel U 0.0003052415882669704 -0.260820416342959 1.0 17515 +75769 Plppr5 phospholipid phosphatase related 5 Novel U 0.0003051293529611711 -0.26082157887256696 1.0 17516 +59012 Moxd1 monooxygenase, DBH-like 1 Novel U 0.0003051181939556044 -0.2608216944571798 1.0 17517 +56189 Prodh2 proline dehydrogenase (oxidase) 2 Novel N 0.00030509927283531074 -0.2608218904415218 1.0 17518 +545276 Gal3st3 galactose-3-O-sulfotransferase 3 Novel U 0.0003049736498148791 -0.2608231916406378 1.0 17519 +73942 Fam151b family with sequence similarity 151, member B Novel U 0.0003049288226582284 -0.26082365595885276 1.0 17520 +110648 Lmx1a LIM homeobox transcription factor 1 alpha Novel N 0.00030488855267852367 -0.26082407307397876 1.0 17521 +229709 Ahcyl1 S-adenosylhomocysteine hydrolase-like 1 Novel U 0.0003047429367687552 -0.26082558135878525 1.0 17522 +13510 Dsg1a desmoglein 1 alpha Novel U 0.00030470282452048423 -0.26082599684013424 1.0 17523 +68092 Ncbp2 nuclear cap binding protein subunit 2 Novel N 0.00030467138069113694 -0.26082632253428495 1.0 17524 +386463 Cdsn corneodesmosin Novel U 0.0003045300813274479 -0.26082778610844903 1.0 17525 +11571 Crisp1 cysteine-rich secretory protein 1 Novel U 0.0003044317278501938 -0.2608288048505333 1.0 17526 +73668 Ttc21b tetratricopeptide repeat domain 21B Novel U 0.0003043029611977348 -0.26083013861128646 1.0 17527 +20466 Sin3a transcriptional regulator, SIN3A (yeast) Novel U 0.00030421258126940007 -0.2608310747636131 1.0 17528 +241919 Slc7a14 solute carrier family 7 (cationic amino acid transporter, y+ system), member 14 Novel N 0.00030415432349738806 -0.26083167819570047 1.0 17529 +69060 Pnlip pancreatic lipase Novel U 0.00030391129125980514 -0.2608341955156281 1.0 17530 +22592 Ercc5 excision repair cross-complementing rodent repair deficiency, complementation group 5 Novel U 0.000303844078885626 -0.2608348916991904 1.0 17531 +64817 Svep1 sushi, von Willebrand factor type A, EGF and pentraxin domain containing 1 Novel U 0.0003036299541936092 -0.26083710959571127 1.0 17532 +19879 Slc22a8 solute carrier family 22 (organic anion transporter), member 8 Novel N 0.00030358901728966937 -0.26083753361881656 1.0 17533 +75905 Dipk2b divergent protein kinase domain 2B Novel U 0.0003032554279070328 -0.2608409889266758 1.0 17534 +211006 Sepsecs Sep (O-phosphoserine) tRNA:Sec (selenocysteine) tRNA synthase Novel N 0.00030300105884101773 -0.2608436236730996 1.0 17535 +14137 Fdft1 farnesyl diphosphate farnesyl transferase 1 Novel U 0.000302864987385466 -0.2608450330967631 1.0 17536 +14537 Gcnt1 glucosaminyl (N-acetyl) transferase 1, core 2 Novel U 0.0003028014459116574 -0.26084569125726 1.0 17537 +237930 Ttll6 tubulin tyrosine ligase-like family, member 6 Novel U 0.00030279639220599395 -0.26084574360337714 1.0 17538 +68458 Ppp1r14a protein phosphatase 1, regulatory inhibitor subunit 14A Novel U 0.0003025053553291208 -0.26084875815378045 1.0 17539 +208292 Zfp871 zinc finger protein 871 Novel U 0.00030222692271861175 -0.26085164214960715 1.0 17540 +18821 Pln phospholamban Novel U 0.00030220782807106677 -0.2608518399313387 1.0 17541 +77128 Crebrf CREB3 regulatory factor Novel N 0.00030220328141585467 -0.26085188702544393 1.0 17542 +16663 Krt13 keratin 13 Novel U 0.0003020370767279515 -0.26085360856813755 1.0 17543 +51788 H2az1 H2A.Z variant histone 1 Novel U 0.0003019925588711296 -0.260854069682635 1.0 17544 +67874 Rprm reprimo, TP53 dependent G2 arrest mediator candidate Novel N 0.00030197804091353347 -0.2608542200591626 1.0 17545 +106369 Ypel1 yippee like 1 Novel U 0.00030174447220456414 -0.2608566393561719 1.0 17546 +71981 Tdrd12 tudor domain containing 12 Novel U 0.00030173262669541803 -0.26085676205156627 1.0 17547 +20664 Sox1 SRY (sex determining region Y)-box 1 Novel U 0.0003016803575802308 -0.2608573034533431 1.0 17548 +26876 Adh4 alcohol dehydrogenase 4 (class II), pi polypeptide Novel N 0.00030162660643252354 -0.2608578602059641 1.0 17549 +72502 Cwf19l1 CWF19 like cell cycle control factor 1 Novel N 0.00030078559555603545 -0.260866571368976 1.0 17550 +114662 Prss29 serine protease 29 Novel U 0.00030063258357826005 -0.2608681562620118 1.0 17551 +93966 Hemgn hemogen Novel U 0.00030034342882540613 -0.26087115131743643 1.0 17552 +72151 Rfc5 replication factor C (activator 1) 5 Novel U 0.0003001865445994846 -0.2608727763190912 1.0 17553 +109108 Slc30a9 solute carrier family 30 (zinc transporter), member 9 Novel U 0.00029999747048392697 -0.26087473474256473 1.0 17554 +54150 Rdh7 retinol dehydrogenase 7 Novel U 0.0002999856539390702 -0.2608748571379479 1.0 17555 +72807 Zfp429 zinc finger protein 429 Novel U 0.0002998932774781543 -0.26087581397029336 1.0 17556 +73467 1700066M21Rik RIKEN cDNA 1700066M21 gene Novel N 0.000299877979067076 -0.2608759724307324 1.0 17557 +207213 Tdpoz1 TD and POZ domain containing 1 Novel U 0.00029986299288049 -0.2608761276571604 1.0 17558 +73422 Prox2 prospero homeobox 2 Novel U 0.00029973553997070826 -0.2608774478102101 1.0 17559 +434438 Iho1 interactor of HORMAD1 1 Novel U 0.0002996867183829828 -0.2608779535026109 1.0 17560 +269952 Gdpgp1 GDP-D-glucose phosphorylase 1 Novel N 0.0002995632319144209 -0.26087923257139284 1.0 17561 +353172 Gars1 glycyl-tRNA synthetase 1 Novel N 0.00029951883219858687 -0.2608796924621899 1.0 17562 +207839 Galnt6 polypeptide N-acetylgalactosaminyltransferase 6 Novel N 0.00029947227624152164 -0.2608801746872627 1.0 17563 +16665 Krt15 keratin 15 Novel N 0.00029929155196423645 -0.2608820466233859 1.0 17564 +244448 Triml1 tripartite motif family-like 1 Novel U 0.00029917966983751705 -0.2608832054947765 1.0 17565 +73234 Snorc secondary ossification center associated regulator of chondrocyte maturation Novel U 0.0002989149075270074 -0.26088594789408515 1.0 17566 +207596 Thsd4 thrombospondin, type I, domain containing 4 Novel U 0.00029856372178610935 -0.26088958546444474 1.0 17567 +76646 Wdr38 WD repeat domain 38 Novel U 0.0002982717512654029 -0.2608926096855002 1.0 17568 +16679 Krt86 keratin 86 Novel U 0.0002982219795410621 -0.2608931252193848 1.0 17569 +16526 Kcnk2 potassium channel, subfamily K, member 2 Novel U 0.00029818886732135857 -0.26089346819466797 1.0 17570 +384585 Scgb1b3 secretoglobin, family 1B, member 3 Novel U 0.0002979850567407502 -0.260895579257962 1.0 17571 +18294 Ogg1 8-oxoguanine DNA-glycosylase 1 Novel U 0.0002979781334547253 -0.2608956509691311 1.0 17572 +545288 Cyp2c67 cytochrome P450, family 2, subfamily c, polypeptide 67 Novel U 0.00029796132377092735 -0.26089582508328324 1.0 17573 +76467 Msrb2 methionine sulfoxide reductase B2 Novel N 0.0002977492533666413 -0.2608980217015594 1.0 17574 +26464 Vnn3 vanin 3 Novel U 0.00029767331747577156 -0.26089880824302075 1.0 17575 +14548 Mrps33 mitochondrial ribosomal protein S33 Novel U 0.00029764700799757136 -0.2608990807557311 1.0 17576 +239157 Pnma2 paraneoplastic antigen MA2 Novel U 0.0002975799933667614 -0.260899774891074 1.0 17577 +171232 Vmn1r234 vomeronasal 1 receptor 234 Novel U 0.0002973638898565748 -0.2609020132841285 1.0 17578 +224661 Slc26a8 solute carrier family 26, member 8 Novel N 0.0002970757913883349 -0.26090499739859185 1.0 17579 +66926 Trmt6 tRNA methyltransferase 6 Novel N 0.0002968837166868507 -0.2609069869020357 1.0 17580 +51886 Fubp1 far upstream element (FUSE) binding protein 1 Novel N 0.00029674715656309683 -0.26090840138730836 1.0 17581 +15361 Hmga1 high mobility group AT-hook 1 Novel U 0.00029669525531486813 -0.26090893897873135 1.0 17582 +666938 Bend4 BEN domain containing 4 Novel U 0.0002965635779453604 -0.260910302888596 1.0 17583 +18263 Odc1 ornithine decarboxylase, structural 1 Novel U 0.0002963157523272044 -0.26091286985820206 1.0 17584 +72397 Rbm12b1 RNA binding motif protein 12 B1 Novel U 0.0002962380489857244 -0.2609136747068587 1.0 17585 +72022 Slc35f2 solute carrier family 35, member F2 Novel U 0.0002961669296521985 -0.2609144113585775 1.0 17586 +100043224 Alyreffm4 Aly/REF export factor family member 4 Novel U 0.0002960687454107165 -0.26091542834772313 1.0 17587 +22377 Wbp1 WW domain binding protein 1 Novel U 0.00029606557172943206 -0.26091546122060955 1.0 17588 +67749 Mgarp mitochondria localized glutamic acid rich protein Novel U 0.0002960650939924883 -0.2609154661689931 1.0 17589 +244059 Chd2 chromodomain helicase DNA binding protein 2 Novel U 0.0002960495313709906 -0.26091562736611495 1.0 17590 +408198 Spink7 serine peptidase inhibitor, Kazal type 7 (putative) Novel U 0.00029602813371112365 -0.2609158490023725 1.0 17591 +109889 Mzf1 myeloid zinc finger 1 Novel N 0.0002960064892468347 -0.2609160731950221 1.0 17592 +77827 Krba1 KRAB-A domain containing 1 Novel U 0.00029570497257923404 -0.26091919629475324 1.0 17593 +66603 Gemin2 gem nuclear organelle associated protein 2 Novel U 0.00029564266462088685 -0.26091984167853755 1.0 17594 +243983 Zdhhc13 zinc finger, DHHC domain containing 13 Novel U 0.00029559488160102107 -0.2609203366134865 1.0 17595 +668379 Scgb2b12 secretoglobin, family 2B, member 12 Novel U 0.00029553457227630075 -0.2609209612954894 1.0 17596 +619309 Muc3a mucin 3A, cell surface associated Novel U 0.00029548466099277613 -0.2609214782749234 1.0 17597 +22271 Upp1 uridine phosphorylase 1 Novel N 0.0002954782754660252 -0.2609215444159996 1.0 17598 +101544 Zfp575 zinc finger protein 575 Novel U 0.00029539963458551387 -0.26092235897565474 1.0 17599 +22446 Xlr3c X-linked lymphocyte-regulated 3C Novel U 0.00029535136341906954 -0.26092285896680995 1.0 17600 +434866 Gm15127 predicted gene 15127 Novel U 0.00029514834639961387 -0.2609249618104237 1.0 17601 +218454 Lhfpl2 lipoma HMGIC fusion partner-like 2 Novel U 0.00029501338985802645 -0.26092635968584493 1.0 17602 +213417 Klhdc8a kelch domain containing 8A Novel U 0.0002948465816698408 -0.26092808747957463 1.0 17603 +14859 Gsta3 glutathione S-transferase, alpha 3 Novel U 0.00029479044772667785 -0.2609286689131126 1.0 17604 +268807 Klhl38 kelch-like 38 Novel U 0.00029470208525832057 -0.26092958416865514 1.0 17605 +238024 Fn3krp fructosamine 3 kinase related protein Novel N 0.00029463239285270276 -0.26093030604030154 1.0 17606 +70789 Kynu kynureninase Novel U 0.00029461505964966273 -0.2609304855770488 1.0 17607 +57905 Isy1 ISY1 splicing factor homolog Novel N 0.00029460194641374763 -0.2609306214035153 1.0 17608 +68219 Nudt21 nudix hydrolase 21 Novel U 0.0002944817166772009 -0.2609318667391742 1.0 17609 +225432 Rbm27 RNA binding motif protein 27 Novel U 0.00029439962531592435 -0.2609327170387956 1.0 17610 +66230 Mrps28 mitochondrial ribosomal protein S28 Novel N 0.00029435634834786353 -0.26093316530020816 1.0 17611 +259301 Leap2 liver-expressed antimicrobial peptide 2 Novel U 0.00029426383168756404 -0.2609341235847342 1.0 17612 +332221 Zscan10 zinc finger and SCAN domain containing 10 Novel U 0.0002942612140782971 -0.2609341506978449 1.0 17613 +74663 Tex55 testis expressed 55 Novel U 0.0002941545919674909 -0.26093525508616366 1.0 17614 +11488 Adam11 a disintegrin and metallopeptidase domain 11 Novel N 0.0002941485942054927 -0.2609353172107853 1.0 17615 +74297 Ccdc182 coiled-coil domain containing 182 Novel U 0.000294069209755714 -0.2609361394723065 1.0 17616 +99586 Dpyd dihydropyrimidine dehydrogenase Novel U 0.0002938837245155344 -0.2609380607223267 1.0 17617 +100090 Zbtb48 zinc finger and BTB domain containing 48 Novel U 0.00029385845124197443 -0.26093832250206345 1.0 17618 +17932 Myt1 myelin transcription factor 1 Novel U 0.0002938498058173085 -0.260938412051088 1.0 17619 +18029 Nfic nuclear factor I/C Novel N 0.0002937366767391283 -0.2609395838383608 1.0 17620 +387334 Defb50 defensin beta 50 Novel U 0.0002934354380012865 -0.2609427040593047 1.0 17621 +52502 Carhsp1 calcium regulated heat stable protein 1 Novel N 0.0002932512996261184 -0.26094461135854147 1.0 17622 +20494 Slc10a2 solute carrier family 10, member 2 Novel U 0.00029313115531224274 -0.26094585580939506 1.0 17623 +11471 Actl7b actin-like 7b Novel U 0.0002931128157237212 -0.26094604577025005 1.0 17624 +75750 Slc10a6 solute carrier family 10 (sodium/bile acid cotransporter family), member 6 Novel N 0.00029307229849410483 -0.2609464654463825 1.0 17625 +14149 Fdxr ferredoxin reductase Novel U 0.00029295397356023475 -0.2609476910521578 1.0 17626 +319478 Cxxc4 CXXC finger 4 Novel N 0.0002928259330725339 -0.26094901729132036 1.0 17627 +102857 Slc6a8 solute carrier family 6 (neurotransmitter transporter, creatine), member 8 Novel U 0.00029269147104604216 -0.26095041004457054 1.0 17628 +320631 Abca15 ATP-binding cassette, sub-family A member 15 Novel U 0.0002926368283179386 -0.26095097603215195 1.0 17629 +100561 Slc15a4 solute carrier family 15, member 4 Novel U 0.0002926098714935331 -0.26095125525005297 1.0 17630 +433365 Teddm1b transmembrane epididymal protein 1B Novel U 0.00029258655427273427 -0.2609514967690595 1.0 17631 +57443 Fbxo3 F-box protein 3 Novel U 0.00029226506708078314 -0.26095482672282544 1.0 17632 +546611 Klhl33 kelch-like 33 Novel U 0.00029220843260617215 -0.26095541334085165 1.0 17633 +213171 Prss27 serine protease 27 Novel U 0.0002921684819911589 -0.2609558271480087 1.0 17634 +234594 Cnot1 CCR4-NOT transcription complex, subunit 1 Novel U 0.0002921560812761138 -0.2609559555942075 1.0 17635 +77532 Jrkl Jrk-like Novel N 0.0002921353738190507 -0.260956170081367 1.0 17636 +72898 Asphd2 aspartate beta-hydroxylase domain containing 2 Novel U 0.0002921026667753732 -0.2609565088598502 1.0 17637 +66830 Nacc1 nucleus accumbens associated 1, BEN and BTB (POZ) domain containing Novel N 0.00029207427801439766 -0.2609568029097032 1.0 17638 +12721 Coro1a coronin, actin binding protein 1A Novel U 0.00029188031822902045 -0.260958811938784 1.0 17639 +83603 Elovl4 ELOVL fatty acid elongase 4 Novel U 0.00029178939473308723 -0.26095975372136593 1.0 17640 +100041379 Zfp980 zinc finger protein 980 Novel U 0.00029177439757763505 -0.2609599090614091 1.0 17641 +67455 Klhl13 kelch-like 13 Novel U 0.00029176231628440095 -0.2609600341990473 1.0 17642 +75396 Spp2 secreted phosphoprotein 2 Novel N 0.000291687375993053 -0.2609608104281216 1.0 17643 +668216 Cdc5lrt10 cell division cycle 5 like, retrotransposed 10 Novel U 0.00029162779305550097 -0.26096142758623003 1.0 17644 +27214 Dbf4 DBF4 zinc finger Novel N 0.0002915230111842325 -0.2609625129134081 1.0 17645 +100504156 Fam181a family with sequence similarity 181, member A Novel U 0.0002913698679866095 -0.26096409916561475 1.0 17646 +74511 Lrrc17 leucine rich repeat containing 17 Novel U 0.0002912501981424894 -0.26096533870192623 1.0 17647 +622473 Ripply1 ripply transcriptional repressor 1 Novel U 0.0002912292451024922 -0.26096555573282576 1.0 17648 +234138 Tti2 TELO2 interacting protein 2 Novel U 0.00029115800816965654 -0.26096629360263424 1.0 17649 +21411 Tcf20 transcription factor 20 Novel U 0.0002908540563770041 -0.2609694419253107 1.0 17650 +56735 Krt71 keratin 71 Novel N 0.00029080786534168397 -0.26096992037053607 1.0 17651 +66202 1110059G10Rik RIKEN cDNA 1110059G10 gene Novel U 0.00029051517167843214 -0.2609729520818782 1.0 17652 +58227 Fam184b family with sequence similarity 184, member B Novel U 0.0002904024399069261 -0.26097411975386164 1.0 17653 +78709 Spink8 serine peptidase inhibitor, Kazal type 8 Novel U 0.0002903745005692763 -0.26097440914860254 1.0 17654 +14758 Gpm6b glycoprotein m6b Novel U 0.00029033690616996175 -0.2609747985501548 1.0 17655 +211535 Odad1 outer dynein arm docking complex subunit 1 Novel U 0.0002902751374789655 -0.2609754383482256 1.0 17656 +232679 Zc3hc1 zinc finger, C3HC type 1 Novel U 0.0002902172212291463 -0.2609760382428374 1.0 17657 +66259 Camk2n1 calcium/calmodulin-dependent protein kinase II inhibitor 1 Novel U 0.000289835341863368 -0.26097999373675446 1.0 17658 +408067 Zfp874b zinc finger protein 874b Novel U 0.00028982641404845695 -0.26098008621076785 1.0 17659 +114674 Gtf2ird2 GTF2I repeat domain containing 2 Novel U 0.0002897177310021094 -0.2609812119461892 1.0 17660 +381694 B3glct beta-3-glucosyltransferase Novel U 0.0002896553550295385 -0.26098185803446255 1.0 17661 +232223 Txnrd3 thioredoxin reductase 3 Novel U 0.00028965099679261424 -0.26098190317693737 1.0 17662 +20475 Six5 sine oculis-related homeobox 5 Novel U 0.00028953922953852367 -0.26098306085848105 1.0 17663 +11670 Aldh3a1 aldehyde dehydrogenase family 3, subfamily A1 Novel N 0.00028952656273858166 -0.2609831920607784 1.0 17664 +72002 Slc39a5 solute carrier family 39 (metal ion transporter), member 5 Novel U 0.00028943854837192094 -0.260984103710695 1.0 17665 +69354 Slc38a4 solute carrier family 38, member 4 Novel U 0.00028913049932172136 -0.2609872944726304 1.0 17666 +242707 Lactbl1 lactamase, beta-like 1 Novel U 0.0002890571463565677 -0.26098805426023214 1.0 17667 +113868 Acaa1a acetyl-Coenzyme A acyltransferase 1A Novel U 0.00028903395175206134 -0.26098829450918315 1.0 17668 +228662 Btbd3 BTB domain containing 3 Novel U 0.000288986992985493 -0.26098878090654354 1.0 17669 +19194 Bpifa2 BPI fold containing family A, member 2 Novel U 0.00028898198612194534 -0.2609888327674716 1.0 17670 +71994 Cnn3 calponin 3, acidic Novel U 0.00028895501764041406 -0.26098911210611675 1.0 17671 +330010 Ttll10 tubulin tyrosine ligase-like family, member 10 Novel N 0.00028886152400720195 -0.2609900805100961 1.0 17672 +101202 Hepacam2 HEPACAM family member 2 Novel N 0.0002887822891656981 -0.2609909012219797 1.0 17673 +407812 Zfp941 zinc finger protein 941 Novel U 0.0002887207377959444 -0.2609915387690442 1.0 17674 +56336 B4galt5 UDP-Gal:betaGlcNAc beta 1,4-galactosyltransferase, polypeptide 5 Novel N 0.00028859504328537745 -0.2609928407086527 1.0 17675 +78038 Mccc2 methylcrotonoyl-Coenzyme A carboxylase 2 (beta) Novel U 0.00028776490588706944 -0.26100143924453506 1.0 17676 +20537 Slc5a1 solute carrier family 5 (sodium/glucose cotransporter), member 1 Novel U 0.0002876801114579458 -0.26100231754244446 1.0 17677 +66272 Cox16 cytochrome c oxidase assembly protein 16 Novel N 0.0002875683904315012 -0.2610034747451637 1.0 17678 +268417 Zkscan17 zinc finger with KRAB and SCAN domains 17 Novel U 0.00028750739493578465 -0.26100410653450323 1.0 17679 +214575 Tdrd5 tudor domain containing 5 Novel U 0.0002874041144017123 -0.26100517631088 1.0 17680 +107686 Snrpd2 small nuclear ribonucleoprotein D2 Novel N 0.0002873009206468268 -0.2610062451884008 1.0 17681 +108098 Med21 mediator complex subunit 21 Novel N 0.0002871314777851293 -0.2610080002719921 1.0 17682 +77782 Polq polymerase (DNA directed), theta Novel U 0.0002871231942906435 -0.2610080860721557 1.0 17683 +546160 Fbxw25 F-box and WD-40 domain protein 25 Novel U 0.0002870912342703374 -0.2610084171129954 1.0 17684 +74703 Ccdc7a coiled-coil domain containing 7A Novel U 0.00028701022487709755 -0.26100925620562754 1.0 17685 +331004 Slc9a9 solute carrier family 9 (sodium/hydrogen exchanger), member 9 Novel N 0.0002870017671431775 -0.26100934381055746 1.0 17686 +226777 C130074G19Rik RIKEN cDNA C130074G19 gene Novel N 0.0002869311661416099 -0.2610100750934108 1.0 17687 +114644 Slc13a3 solute carrier family 13 (sodium-dependent dicarboxylate transporter), member 3 Novel N 0.0002868138652555631 -0.2610112900921324 1.0 17688 +67884 Cfap410 cilia and flagella associated protein 410 Novel U 0.0002868100318805991 -0.26101132979810426 1.0 17689 +19291 Purb purine rich element binding protein B Novel U 0.0002864557750762422 -0.2610149991784383 1.0 17690 +17996 Neb nebulin Novel U 0.00028639386970061715 -0.261015640392284 1.0 17691 +321008 Zswim9 zinc finger SWIM-type containing 9 Novel U 0.0002863193320754961 -0.2610164124505547 1.0 17692 +676527 Faxdc2 fatty acid hydroxylase domain containing 2 Novel N 0.0002862980238146462 -0.2610166331608201 1.0 17693 +239133 Dleu7 deleted in lymphocytic leukemia, 7 Novel U 0.00028607060106794073 -0.2610189887981543 1.0 17694 +66966 Trit1 tRNA isopentenyltransferase 1 Novel N 0.0002859744267515742 -0.2610199849685617 1.0 17695 +216643 Gabrp gamma-aminobutyric acid type A receptor subunit pi Novel U 0.0002858842024043535 -0.2610209195093842 1.0 17696 +100041585 Amd2 S-adenosylmethionine decarboxylase 2 Novel U 0.0002858494572689523 -0.2610212793983545 1.0 17697 +170441 Slc2a10 solute carrier family 2 (facilitated glucose transporter), member 10 Novel U 0.0002858318386179638 -0.2610214618917623 1.0 17698 +280411 Lix1l Lix1-like Novel U 0.00028576514620678637 -0.26102215268956486 1.0 17699 +26909 Exo1 exonuclease 1 Novel U 0.0002856753145958773 -0.2610230831624376 1.0 17700 +67871 Mrrf mitochondrial ribosome recycling factor Novel U 0.00028566748921970606 -0.2610231642174268 1.0 17701 +13236 Defa25 defensin, alpha, 25 Novel U 0.0002855318832255844 -0.26102456881985603 1.0 17702 +93708 Pcdhgc5 protocadherin gamma subfamily C, 5 Novel U 0.00028550312828537516 -0.26102486666258146 1.0 17703 +434778 Ccdc160 coiled-coil domain containing 160 Novel U 0.00028550292458705826 -0.26102486877248193 1.0 17704 +237091 Lhfpl1 lipoma HMGIC fusion partner-like 1 Novel U 0.000285410925573514 -0.26102582169523997 1.0 17705 +70152 Tmt1a thiol methyltransferase 1A1 Novel U 0.0002852755322715331 -0.26102722409461104 1.0 17706 +382156 Fbxw22 F-box and WD-40 domain protein 22 Novel U 0.0002849204040173643 -0.2610309025013935 1.0 17707 +381582 Tmem240 transmembrane protein 240 Novel N 0.0002848163610066053 -0.2610319801754787 1.0 17708 +115489953 Gm21411 predicted gene, 21411 Novel U 0.00028476601402734855 -0.2610325016678348 1.0 17709 +319150 H3c2 H3 clustered histone 2 Novel U 0.00028474367677731275 -0.2610327330363364 1.0 17710 +394252 Serpinb3d serine (or cysteine) peptidase inhibitor, clade B (ovalbumin), member 3D Novel U 0.00028473546967626147 -0.2610328180452193 1.0 17711 +214112 Nipal4 NIPA-like domain containing 4 Novel U 0.0002845359513543664 -0.26103488464943864 1.0 17712 +76758 Gsdma2 gasdermin A2 Novel U 0.0002845297519130253 -0.26103494886304823 1.0 17713 +70796 Zdhhc1 zinc finger, DHHC domain containing 1 Novel N 0.0002844825574330837 -0.26103543770192006 1.0 17714 +67840 Mrpl57 mitochondrial ribosomal protein L57 Novel U 0.00028441330438305225 -0.26103615502273575 1.0 17715 +100043332 Ankrd66 ankyrin repeat domain 66 Novel U 0.0002838518057400778 -0.2610419710072214 1.0 17716 +237859 Nsrp1 nuclear speckle regulatory protein 1 Novel N 0.00028376391757620087 -0.26104288134993364 1.0 17717 +319615 Zfp944 zinc finger protein 944 Novel U 0.0002835935772127846 -0.2610446457298183 1.0 17718 +12705 Cited1 Cbp/p300-interacting transactivator with Glu/Asp-rich carboxy-terminal domain 1 Novel U 0.0002835678292680958 -0.26104491242618294 1.0 17719 +21906 Otop1 otopetrin 1 Novel N 0.0002835226509068206 -0.26104538038216385 1.0 17720 +100504180 LOC100504180 double homeobox protein 4-like protein 2 Novel U 0.00028342726423685776 -0.2610463683941557 1.0 17721 +245368 Zfp300 zinc finger protein 300 Novel U 0.0002833894976836037 -0.26104675957887274 1.0 17722 +214922 Slc39a2 solute carrier family 39 (zinc transporter), member 2 Novel N 0.0002833861355929225 -0.26104679440329753 1.0 17723 +240066 Zfp870 zinc finger protein 870 Novel U 0.0002833676897439142 -0.26104698546479516 1.0 17724 +66106 Smpx small muscle protein, X-linked Novel N 0.0002833661235626727 -0.261047001687249 1.0 17725 +81906 Cyp4x1 cytochrome P450, family 4, subfamily x, polypeptide 1 Novel U 0.0002833043556338457 -0.26104764147742526 1.0 17726 +17150 Mfap2 microfibrillar-associated protein 2 Novel U 0.00028328072806075845 -0.2610478862110506 1.0 17727 +52020 Umodl1 uromodulin-like 1 Novel U 0.00028296813311013536 -0.2610511240592731 1.0 17728 +226591 Tiprl TIP41, TOR signalling pathway regulator-like (S. cerevisiae) Novel U 0.00028286912546981004 -0.26105214957715694 1.0 17729 +72136 Chst14 carbohydrate sulfotransferase 14 Novel U 0.00028250568170077385 -0.261055914115769 1.0 17730 +20509 Slc19a1 solute carrier family 19 (folate transporter), member 1 Novel U 0.00028247768305401526 -0.26105620412483177 1.0 17731 +75623 Tex30 testis expressed 30 Novel U 0.0002824528381250007 -0.26105646146778977 1.0 17732 +68607 Serhl serine hydrolase-like Novel U 0.00028228067255264984 -0.26105824475312855 1.0 17733 +240669 Calhm3 calcium homeostasis modulator 3 Novel U 0.00028209594246034214 -0.261060158181352 1.0 17734 +20611 Ssty1 spermiogenesis specific transcript on the Y 1 Novel U 0.0002820486226623855 -0.26106064831826364 1.0 17735 +63828 Fn3k fructosamine 3 kinase Novel N 0.00028202239859478483 -0.26106091994629377 1.0 17736 +57896 Krcc1 lysine-rich coiled-coil 1 Novel U 0.0002820183968410639 -0.2610609613963273 1.0 17737 +435366 Platr25 pluripotency associated transcript 25 Novel U 0.00028168270367703445 -0.261064438495085 1.0 17738 +380660 Acss3 acyl-CoA synthetase short-chain family member 3 Novel N 0.000281577937552097 -0.2610655236591631 1.0 17739 +74649 Cpa5 carboxypeptidase A5 Novel U 0.0002814763274633368 -0.26106657613312223 1.0 17740 +66403 Asf1a anti-silencing function 1A histone chaperone Novel N 0.0002813256999532665 -0.26106813632791986 1.0 17741 +319476 Lrtm1 leucine-rich repeats and transmembrane domains 1 Novel U 0.00028129295367989313 -0.26106847551274304 1.0 17742 +53814 Oaz3 ornithine decarboxylase antizyme 3 Novel N 0.0002811375126266021 -0.26107008556606315 1.0 17743 +64707 Suv39h2 suppressor of variegation 3-9 2 Novel N 0.000280904341046296 -0.26107250074962685 1.0 17744 +217707 Coq6 coenzyme Q6 monooxygenase Novel U 0.0002808999669276475 -0.26107254605660407 1.0 17745 +76509 Plet1 placenta expressed transcript 1 Novel U 0.00028067065230035214 -0.2610749212899752 1.0 17746 +19378 Aldh1a2 aldehyde dehydrogenase family 1, subfamily A2 Novel U 0.00028052133775522607 -0.26107646788512523 1.0 17747 +67507 Spmip5 sperm microtubule inner protein 5 Novel U 0.0002805156031818402 -0.26107652728364783 1.0 17748 +67460 Decr1 2,4-dienoyl CoA reductase 1, mitochondrial Novel N 0.000280481089426913 -0.2610768847759868 1.0 17749 +13097 Cyp2c38 cytochrome P450, family 2, subfamily c, polypeptide 38 Novel U 0.0002802087241716467 -0.2610797059263473 1.0 17750 +20476 Six6 sine oculis-related homeobox 6 Novel N 0.0002801304457708219 -0.2610805167314498 1.0 17751 +246229 Bivm basic, immunoglobulin-like variable motif containing Novel U 0.00028000477091418767 -0.26108181846748346 1.0 17752 +67096 Mmachc methylmalonic aciduria cblC type, with homocystinuria Novel U 0.00027996237400543185 -0.26108225761327064 1.0 17753 +338371 Endov endonuclease V Novel U 0.00027988475723514497 -0.26108306156522576 1.0 17754 +30937 Lmcd1 LIM and cysteine-rich domains 1 Novel N 0.00027982129270379396 -0.2610837189287552 1.0 17755 +19046 Ppp1cb protein phosphatase 1 catalytic subunit beta Novel U 0.00027972173788027514 -0.26108475011434457 1.0 17756 +242773 Slc45a1 solute carrier family 45, member 1 Novel N 0.00027970594916216753 -0.26108491365336767 1.0 17757 +20535 Slc4a2 solute carrier family 4 (anion exchanger), member 2 Novel N 0.00027935283259425387 -0.26108857122317003 1.0 17758 +67776 Vwa5a von Willebrand factor A domain containing 5A Novel U 0.00027934506714090624 -0.2610886516574805 1.0 17759 +83704 Slc12a9 solute carrier family 12 (potassium/chloride transporters), member 9 Novel U 0.0002793307059889903 -0.26108880040981997 1.0 17760 +66077 Aurkaip1 aurora kinase A interacting protein 1 Novel N 0.0002792666757699284 -0.2610894636327241 1.0 17761 +16667 Krt17 keratin 17 Novel U 0.0002789461735408034 -0.2610927833842775 1.0 17762 +66176 Nat9 N-acetyltransferase 9 (GCN5-related, putative) Novel U 0.00027885136123204085 -0.26109376544705487 1.0 17763 +12319 Car8 carbonic anhydrase 8 Novel N 0.0002785639772749292 -0.2610967421606354 1.0 17764 +320159 Togaram2 TOG array regulator of axonemal microtubules 2 Novel U 0.000278436915026705 -0.26109805826722554 1.0 17765 +56741 Igdcc4 immunoglobulin superfamily, DCC subclass, member 4 Novel U 0.00027815706507343347 -0.26110095694384194 1.0 17766 +13004 Ncan neurocan Novel U 0.00027793296052866273 -0.26110327821134965 1.0 17767 +67609 4930453N24Rik RIKEN cDNA 4930453N24 gene Novel N 0.00027781226228412845 -0.2611045283997988 1.0 17768 +433016 Cstdc4 cystatin domain containing 4 Novel U 0.0002777727612800916 -0.2611049375499001 1.0 17769 +69672 Txndc15 thioredoxin domain containing 15 Novel U 0.00027774446810491026 -0.26110523060967855 1.0 17770 +242502 Msantd5f1 Myb/SANT DNA binding domain containing 5 family member 1 Novel U 0.0002776883179437512 -0.26110581221120194 1.0 17771 +17268 Meis1 Meis homeobox 1 Novel U 0.0002776413111268512 -0.26110629910626615 1.0 17772 +74319 Mettl23 methyltransferase like 23 Novel N 0.0002774382059871009 -0.261108402862627 1.0 17773 +241877 Slc10a5 solute carrier family 10 (sodium/bile acid cotransporter family), member 5 Novel U 0.00027743175288228274 -0.2611084697036745 1.0 17774 +52430 Echdc2 enoyl Coenzyme A hydratase domain containing 2 Novel U 0.000277421510944586 -0.2611085757893285 1.0 17775 +106565 Dlk2 delta like non-canonical Notch ligand 2 Novel U 0.0002772705385093702 -0.26111013955684953 1.0 17776 +66493 Mrpl51 mitochondrial ribosomal protein L51 Novel U 0.0002771559731825568 -0.2611113262207385 1.0 17777 +67963 Npc2 NPC intracellular cholesterol transporter 2 Novel U 0.00027709917769392283 -0.26111191450654275 1.0 17778 +74369 Mei1 meiotic double-stranded break formation protein 1 Novel U 0.000276770761093936 -0.2611153162348893 1.0 17779 +29858 Pmm1 phosphomannomutase 1 Novel N 0.0002766134637747714 -0.26111694551535036 1.0 17780 +252966 Cables2 CDK5 and Abl enzyme substrate 2 Novel U 0.00027659706990428295 -0.2611171153225219 1.0 17781 +229927 Clca3b chloride channel accessory 3B Novel U 0.0002765817787034818 -0.26111727370827714 1.0 17782 +330361 Gcfc2 GC-rich sequence DNA binding factor 2 Novel N 0.0002765184722338303 -0.2611179294346087 1.0 17783 +54125 Polm polymerase (DNA directed), mu Novel N 0.0002764970299905081 -0.2611181515326602 1.0 17784 +216134 Pdxk pyridoxal (pyridoxine, vitamin B6) kinase Novel U 0.00027645235477105525 -0.26111861427711464 1.0 17785 +18781 Pla2g2c phospholipase A2, group IIC Novel U 0.00027641613511018853 -0.2611189894391713 1.0 17786 +219228 Pcdh17 protocadherin 17 Novel U 0.0002763846865361863 -0.26111931518246695 1.0 17787 +93757 Immp2l IMP2 inner mitochondrial membrane peptidase-like (S. cerevisiae) Novel U 0.00027632739830716843 -0.26111990857205986 1.0 17788 +56078 Car5b carbonic anhydrase 5b, mitochondrial Novel U 0.00027626786217964903 -0.2611205252453116 1.0 17789 +338467 Morc3 microrchidia 3 Novel N 0.00027617724082939127 -0.26112146389827856 1.0 17790 +22696 Zfp37 zinc finger protein 37 Novel U 0.0002760864785446874 -0.2611224040110398 1.0 17791 +69109 Ccnq cyclin Q Novel U 0.0002755242446542335 -0.2611282276111947 1.0 17792 +219257 Pcdh20 protocadherin 20 Novel U 0.0002754745258045397 -0.2611287425974054 1.0 17793 +384589 Scgb1b29 secretoglobin, family 1B, member 29 Novel U 0.0002753208192431696 -0.26113033468491526 1.0 17794 +17427 Mns1 meiosis-specific nuclear structural protein 1 Novel N 0.0002748027682081769 -0.26113570064050573 1.0 17795 +16429 Itln1 intelectin 1 (galactofuranose binding) Novel U 0.00027472916639183155 -0.26113646300569987 1.0 17796 +74176 Tgm5 transglutaminase 5 Novel U 0.0002744707689851982 -0.26113913947754347 1.0 17797 +236899 Pcyt1b phosphate cytidylyltransferase 1, choline, beta isoform Novel U 0.00027446300137383276 -0.2611392199342066 1.0 17798 +67709 Reg4 regenerating islet-derived family, member 4 Novel U 0.00027443777893676805 -0.26113948118738056 1.0 17799 +97122 H4c14 H4 clustered histone 14 Novel U 0.0002743433993234197 -0.2611404587683131 1.0 17800 +68891 Cd177 CD177 antigen Novel U 0.0002742974494773402 -0.26114093471530825 1.0 17801 +72050 Poglut2 protein O-glucosyltransferase 2 Novel N 0.0002740920907476814 -0.26114306181427926 1.0 17802 +353499 Tmc4 transmembrane channel-like gene family 4 Novel U 0.0002740916914352501 -0.2611430659503443 1.0 17803 +74338 Slc6a19 solute carrier family 6 (neurotransmitter transporter), member 19 Novel U 0.0002740871968693461 -0.2611431125049102 1.0 17804 +240120 Zfp119b zinc finger protein 119b Novel U 0.0002738792658614758 -0.2611452662474543 1.0 17805 +55927 Hes6 hairy and enhancer of split 6 Novel N 0.00027372201851701676 -0.261146895010279 1.0 17806 +320106 Slc38a11 solute carrier family 38, member 11 Novel U 0.00027372126437090694 -0.2611469028216996 1.0 17807 +435818 Slc2a7 solute carrier family 2 (facilitated glucose transporter), member 7 Novel N 0.0002736194414049421 -0.26114795750063385 1.0 17808 +667118 Zbed6 zinc finger, BED type containing 6 Novel U 0.0002735052082988803 -0.2611491407233912 1.0 17809 +66488 Fam136a family with sequence similarity 136, member A Novel U 0.0002735012010213798 -0.2611491822306399 1.0 17810 +53878 Semg1 semenogelin 1 Novel U 0.0002734428945188986 -0.2611497861674758 1.0 17811 +69752 Zfp511 zinc finger protein 511 Novel U 0.00027341633469798836 -0.2611500612732277 1.0 17812 +100038854 Cstdc6 cystatin domain containing 6 Novel U 0.0002732374735193431 -0.26115191391143633 1.0 17813 +68737 Angel1 angel homolog 1 Novel U 0.00027305703295744905 -0.2611537829088448 1.0 17814 +78896 Ecrg4 ECRG4 augurin precursor Novel U 0.0002730119552820857 -0.26115424982192437 1.0 17815 +22718 Zfp60 zinc finger protein 60 Novel U 0.0002730041949774021 -0.2611543302029052 1.0 17816 +13358 Slc25a1 solute carrier family 25 (mitochondrial carrier, citrate transporter), member 1 Novel U 0.00027287577084036973 -0.26115566041589483 1.0 17817 +72254 1700030K09Rik RIKEN cDNA 1700030K09 gene Novel U 0.0002728043136557383 -0.26115640056706424 1.0 17818 +627821 Eddm13 epididymal protein 13 Novel U 0.00027279177254228306 -0.26115653046750514 1.0 17819 +67656 Ccdc121 coiled-coil domain containing 121 Novel U 0.00027268321578786063 -0.2611576548947988 1.0 17820 +223706 Cyp2d34 cytochrome P450, family 2, subfamily d, polypeptide 34 Novel U 0.00027265973625642884 -0.26115789809501355 1.0 17821 +192156 Mvd mevalonate (diphospho) decarboxylase Novel N 0.00027257955809371106 -0.26115872857778727 1.0 17822 +210009 Mtrr 5-methyltetrahydrofolate-homocysteine methyltransferase reductase Novel U 0.00027257112282083693 -0.2611588159500664 1.0 17823 +13990 Smarcad1 SWI/SNF-related, matrix-associated actin-dependent regulator of chromatin, subfamily a, containing DEAD/H box 1 Novel U 0.00027246118668209133 -0.26115995466497754 1.0 17824 +75040 Efcab10 EF-hand calcium binding domain 10 Novel U 0.00027217002045909895 -0.26116297055514376 1.0 17825 +112417 Ugt2b37 UDP glucuronosyltransferase 2 family, polypeptide B37 Novel U 0.0002720680748777754 -0.26116402650412385 1.0 17826 +57780 Fxyd7 FXYD domain-containing ion transport regulator 7 Novel U 0.0002720633650875757 -0.2611640752879759 1.0 17827 +93875 Pcdhb4 protocadherin beta 4 Novel U 0.000271521775396813 -0.261169685056189 1.0 17828 +100043914 Zfp968 zinc finger protein 968 Novel U 0.0002714223778762083 -0.2611707146124399 1.0 17829 +66454 Nmnat1 nicotinamide nucleotide adenylyltransferase 1 Novel N 0.00027137868091705176 -0.2611711672241064 1.0 17830 +193116 Slu7 SLU7 splicing factor homolog (S. cerevisiae) Novel U 0.0002709570896854898 -0.2611755340522238 1.0 17831 +75033 Mei4 meiotic double-stranded break formation protein 4 Novel U 0.00027077187887801605 -0.26117745245967916 1.0 17832 +237911 Brip1 BRCA1 interacting protein C-terminal helicase 1 Novel U 0.00027064143109572765 -0.26117880363351986 1.0 17833 +69926 Dnah17 dynein, axonemal, heavy chain 17 Novel N 0.0002705582328789987 -0.26117966539791376 1.0 17834 +233060 Zfp382 zinc finger protein 382 Novel U 0.0002705005713986513 -0.2611802626536317 1.0 17835 +619294 Cldn34b4 claudin 34B4 Novel U 0.0002704416060357658 -0.2611808734149221 1.0 17836 +101055671 Lipo2 lipase, member O2 Novel U 0.0002703035118833748 -0.26118230378961294 1.0 17837 +72056 1810055G02Rik RIKEN cDNA 1810055G02 gene Novel U 0.0002702940173520873 -0.2611824021336559 1.0 17838 +68682 Slc44a2 solute carrier family 44, member 2 Novel U 0.00027028909379456895 -0.2611824531317028 1.0 17839 +80911 Acox3 acyl-Coenzyme A oxidase 3, pristanoyl Novel U 0.00027018012431621164 -0.26118358183397744 1.0 17840 +67070 Lsm14a LSM14A mRNA processing body assembly factor Novel U 0.00026993442568469766 -0.2611861267723258 1.0 17841 +21665 Tdg thymine DNA glycosylase Novel N 0.0002698247771800827 -0.26118726250793206 1.0 17842 +22348 Slc32a1 solute carrier family 32 (GABA vesicular transporter), member 1 Novel U 0.0002698042312303372 -0.26118747532220415 1.0 17843 +192166 Sardh sarcosine dehydrogenase Novel N 0.0002696275369757839 -0.26118930551548425 1.0 17844 +15132 Hbb-bh1 hemoglobin Z, beta-like embryonic chain Novel U 0.000269245055361342 -0.26119326724747327 1.0 17845 +68693 Hnrnpul2 heterogeneous nuclear ribonucleoprotein U-like 2 Novel U 0.00026911044618198787 -0.261194661524928 1.0 17846 +260298 Fev FEV transcription factor, ETS family member Novel U 0.0002690241683943877 -0.2611955551874157 1.0 17847 +433813 Pusl1 pseudouridylate synthase-like 1 Novel U 0.00026898831651418596 -0.2611959265400123 1.0 17848 +75657 Speer4a1 spermatogenesis associated glutamate (E)-rich protein 4A1 Novel U 0.0002688382998683858 -0.2611974804074979 1.0 17849 +22661 Zfp148 zinc finger protein 148 Novel U 0.0002687067939139224 -0.2611988425418513 1.0 17850 +233210 Prr12 proline rich 12 Novel U 0.0002685268166141109 -0.26120070674080625 1.0 17851 +66585 Snrnp40 small nuclear ribonucleoprotein 40 (U5) Novel N 0.00026812770916144675 -0.26120484068268096 1.0 17852 +72112 Ppp1r14d protein phosphatase 1, regulatory inhibitor subunit 14D Novel U 0.0002680863236251351 -0.26120526935270566 1.0 17853 +69382 H2bl1 H2B.L histone variant 1 Novel U 0.0002680664421628552 -0.2612054752842384 1.0 17854 +239606 Slc2a13 solute carrier family 2 (facilitated glucose transporter), member 13 Novel N 0.0002680232286957043 -0.26120592288791056 1.0 17855 +380855 Rsl1 regulator of sex limited protein 1 Novel U 0.0002680043799479932 -0.26120611812261973 1.0 17856 +329872 Frem1 Fras1 related extracellular matrix protein 1 Novel U 0.0002679773313351656 -0.2612063982912622 1.0 17857 +29861 Dpf1 double PHD fingers 1 Novel N 0.0002679451117515159 -0.2612067320206505 1.0 17858 +399676 Tdpoz5 TD and POZ domain containing 5 Novel U 0.00026777123112475197 -0.2612085330704665 1.0 17859 +22599 Slc6a20b solute carrier family 6 (neurotransmitter transporter), member 20B Novel U 0.0002677503134599138 -0.26120874973495123 1.0 17860 +78653 Bola3 bolA family member 3 Novel N 0.0002676989941711565 -0.2612092812984572 1.0 17861 +56531 Ylpm1 YLP motif containing 1 Novel U 0.000267623420228884 -0.2612100640908669 1.0 17862 +232854 Zfp418 zinc finger protein 418 Novel U 0.00026744128371661557 -0.2612119506548735 1.0 17863 +69956 Ptcd3 pentatricopeptide repeat domain 3 Novel N 0.0002672758423690048 -0.26121366429091347 1.0 17864 +71950 Nanog Nanog homeobox Novel U 0.00026715842073097315 -0.26121488054038017 1.0 17865 +333424 A4gnt alpha-1,4-N-acetylglucosaminyltransferase Novel N 0.0002669509715480214 -0.2612170292921977 1.0 17866 +212670 Catsper2 cation channel, sperm associated 2 Novel N 0.0002668248400379473 -0.26121833575823267 1.0 17867 +224794 Enpp4 ectonucleotide pyrophosphatase/phosphodiesterase 4 Novel N 0.00026674845308179374 -0.26121912697181343 1.0 17868 +170472 Recql5 RecQ protein-like 5 Novel U 0.00026672629121927266 -0.2612193565236569 1.0 17869 +211666 Mgst2 microsomal glutathione S-transferase 2 Novel N 0.0002666833596969302 -0.26121980120695404 1.0 17870 +20646 Snrpn small nuclear ribonucleoprotein N Novel U 0.000266642570964137 -0.26122022369530745 1.0 17871 +15429 Hoxd1 homeobox D1 Novel U 0.0002665818807218946 -0.26122085232284153 1.0 17872 +100504608 Eef1akmt3 EEF1A lysine methyltransferase 3 Novel N 0.00026651999414853574 -0.26122149334193395 1.0 17873 +54375 Azin1 antizyme inhibitor 1 Novel U 0.00026649884493741116 -0.26122171240476755 1.0 17874 +76498 Paqr4 progestin and adipoQ receptor family member IV Novel U 0.0002663487951028422 -0.2612232666160214 1.0 17875 +69804 Tmem147 transmembrane protein 147 Novel U 0.00026631523534955065 -0.26122361422684276 1.0 17876 +94227 Pi15 peptidase inhibitor 15 Novel U 0.0002661234104725998 -0.2612256011426123 1.0 17877 +102639653 Gm2007 predicted gene 2007 Novel U 0.0002661042814174361 -0.26122579928073686 1.0 17878 +52397 Zfp644 zinc finger protein 644 Novel N 0.0002660023719069382 -0.26122685485609654 1.0 17879 +633057 Mplkipl1 M-phase specific PLK1 intereacting protein like 1 Novel U 0.0002659715784783022 -0.26122717381341803 1.0 17880 +381067 Zfp229 zinc finger protein 229 Novel U 0.0002659523269902531 -0.26122737321969836 1.0 17881 +71816 Rnf180 ring finger protein 180 Novel U 0.0002658790293155886 -0.261228132434603 1.0 17882 +80892 Zfhx4 zinc finger homeodomain 4 Novel N 0.0002656658123458715 -0.26123034092896624 1.0 17883 +67149 Nkain1 Na+/K+ transporting ATPase interacting 1 Novel U 0.0002655904399311521 -0.2612311216339602 1.0 17884 +13371 Dio2 deiodinase, iodothyronine, type II Novel N 0.0002654760490506036 -0.2612323064909405 1.0 17885 +217843 Unc79 unc-79 homolog Novel U 0.0002653837721218288 -0.2612332622923353 1.0 17886 +208076 Pknox2 Pbx/knotted 1 homeobox 2 Novel U 0.00026489000956851053 -0.261238376668631 1.0 17887 +93874 Pcdhb3 protocadherin beta 3 Novel U 0.00026474061441173835 -0.26123992409875374 1.0 17888 +68323 Nudt22 nudix hydrolase 22 Novel U 0.0002646914587092539 -0.26124043325190416 1.0 17889 +217827 Nrde2 nrde-2 necessary for RNA interference, domain containing Novel U 0.00026457744631104964 -0.26124161418857683 1.0 17890 +73721 Spmip6 sperm microtubule inner protein 6 Novel U 0.0002645412956123152 -0.2612419886363259 1.0 17891 +547210 H2al2c H2A histone family member L2C Novel U 0.00026452653394790744 -0.2612421415371606 1.0 17892 +28080 Atp5po ATP synthase peripheral stalk subunit OSCP Novel N 0.00026451049009488343 -0.2612423077188628 1.0 17893 +215723 Mfsd6l major facilitator superfamily domain containing 6-like Novel U 0.0002645051172140929 -0.2612423633709854 1.0 17894 +234959 Med17 mediator complex subunit 17 Novel N 0.0002643577843448328 -0.2612438894400019 1.0 17895 +12349 Car2 carbonic anhydrase 2 Novel U 0.00026419136476355106 -0.26124561320855405 1.0 17896 +227099 Pms1 PMS1 homolog 1, mismatch repair system component Novel U 0.0002641707085306001 -0.26124582716513595 1.0 17897 +15400 Hoxa3 homeobox A3 Novel U 0.0002641456322448123 -0.26124608690447976 1.0 17898 +272411 B3gnt6 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 6 Novel N 0.0002641327332861464 -0.2612462205114696 1.0 17899 +102637615 Scgb1b17 secretoglobin, family 1B, member 17 Novel U 0.00026409910732566795 -0.26124656880806285 1.0 17900 +241116 Cfap65 cilia and flagella associated protein 65 Novel N 0.00026405449648708203 -0.2612470308856624 1.0 17901 +67283 Slc25a19 solute carrier family 25 (mitochondrial thiamine pyrophosphate carrier), member 19 Novel U 0.00026398142725740404 -0.26124778773434143 1.0 17902 +116914 Slc19a2 solute carrier family 19 (thiamine transporter), member 2 Novel N 0.00026394904826850603 -0.261248123114844 1.0 17903 +115486519 LOC115486519 zinc finger protein 120-like Novel U 0.00026376442730586836 -0.2612500354127059 1.0 17904 +330941 AI593442 expressed sequence AI593442 Novel U 0.0002637483818306842 -0.26125020161121043 1.0 17905 +269693 Ccdc60 coiled-coil domain containing 60 Novel U 0.0002637193756613735 -0.26125050205615863 1.0 17906 +64113 Moap1 modulator of apoptosis 1 Novel U 0.0002636911314145251 -0.26125079460913897 1.0 17907 +72014 Btbd17 BTB domain containing 17 Novel U 0.0002633253601677808 -0.2612545832556887 1.0 17908 +70900 4921517D22Rik RIKEN cDNA 4921517D22 gene Novel U 0.00026324536615712 -0.2612554118310214 1.0 17909 +229595 Adamtsl4 ADAMTS-like 4 Novel U 0.00026318588446380816 -0.26125602794044545 1.0 17910 +245305 B230307C23Rik RIKEN cDNA B230307C23 gene Novel U 0.0002630804123157284 -0.261257120417488 1.0 17911 +15427 Hoxc9 homeobox C9 Novel U 0.00026305348832920337 -0.2612573992952554 1.0 17912 +671564 Rnf212 ring finger protein 212 Novel N 0.0002629118514475355 -0.2612588663654196 1.0 17913 +226105 Cyp2c70 cytochrome P450, family 2, subfamily c, polypeptide 70 Novel U 0.00026288278070580933 -0.2612591674792068 1.0 17914 +242125 Mab21l3 mab-21-like 3 Novel U 0.0002628295734505921 -0.26125971859820724 1.0 17915 +93886 Pcdhb15 protocadherin beta 15 Novel U 0.00026281131062404304 -0.26125990776396424 1.0 17916 +22184 Zrsr2 zinc finger (CCCH type), RNA binding motif and serine/arginine rich 2 Novel U 0.0002627652998150952 -0.26126038434241083 1.0 17917 +19819 Rnaseh1 ribonuclease H1 Novel U 0.00026270752919022657 -0.26126098272864406 1.0 17918 +74075 Syce1 synaptonemal complex central element protein 1 Novel U 0.00026264616427956993 -0.2612616183443714 1.0 17919 +210925 Ints9 integrator complex subunit 9 Novel U 0.0002626221817098299 -0.26126186675504043 1.0 17920 +117591 Slc2a9 solute carrier family 2 (facilitated glucose transporter), member 9 Novel N 0.0002625607762417107 -0.26126250279086055 1.0 17921 +66311 Cenpw centromere protein W Novel U 0.0002625415435216499 -0.2612627020027427 1.0 17922 +208982 Hmgcll1 3-hydroxymethyl-3-methylglutaryl-Coenzyme A lyase-like 1 Novel N 0.00026248723181603853 -0.26126326456160404 1.0 17923 +666214 1700049E17Rik1 RIKEN cDNA 1700049E17 gene, gene 1 Novel U 0.00026235509241451124 -0.2612646332571812 1.0 17924 +20280 Scp2 sterol carrier protein 2, liver Novel U 0.0002623466673158418 -0.2612647205240763 1.0 17925 +28200 Dhrs4 dehydrogenase/reductase 4 Novel N 0.000262024033151581 -0.26126806235814365 1.0 17926 +434869 Gm15097 predicted gene 15097 Novel U 0.00026201442808476683 -0.26126816184710994 1.0 17927 +12577 Cdkn1c cyclin dependent kinase inhibitor 1C Novel U 0.0002618480029493692 -0.2612698856731915 1.0 17928 +75483 Cox8c cytochrome c oxidase subunit 8C Novel U 0.0002617564468717204 -0.261270834008034 1.0 17929 +56368 Cyb561d2 cytochrome b-561 domain containing 2 Novel N 0.0002615620889724135 -0.2612728471607659 1.0 17930 +239570 Ttc38 tetratricopeptide repeat domain 38 Novel U 0.0002613708928577655 -0.26127482756383613 1.0 17931 +70155 Ogfrl1 opioid growth factor receptor-like 1 Novel U 0.0002612951484936946 -0.26127561212146927 1.0 17932 +328019 Spata32 spermatogenesis associated 32 Novel U 0.0002612394140078696 -0.26127618941744124 1.0 17933 +100039953 Gfy golgi-associated olfactory signaling regulator Novel U 0.00026117859666962016 -0.26127681936143154 1.0 17934 +216227 Slc17a8 solute carrier family 17 (sodium-dependent inorganic phosphate cotransporter), member 8 Novel U 0.0002611452347585921 -0.2612771649230093 1.0 17935 +74245 Ctbs chitobiase Novel U 0.0002609693974856226 -0.26127898623970236 1.0 17936 +667988 Mageb6b2 MAGE family member B6B2 Novel U 0.0002604152516815521 -0.2612847260637244 1.0 17937 +70652 Tmem144 transmembrane protein 144 Novel U 0.0002603825060309364 -0.261285065242097 1.0 17938 +235379 Gldn gliomedin Novel U 0.00026034436381292323 -0.2612854603179373 1.0 17939 +233058 Zfp420 zinc finger protein 420 Novel U 0.0002603070339908949 -0.26128584697900675 1.0 17940 +76826 Nubpl nucleotide binding protein-like Novel N 0.00026029894740001516 -0.26128593073964923 1.0 17941 +329777 Pigk phosphatidylinositol glycan anchor biosynthesis, class K Novel U 0.00026028487986365514 -0.26128607645072843 1.0 17942 +68770 Phtf2 putative homeodomain transcription factor 2 Novel U 0.0002602621231394059 -0.2612863121641301 1.0 17943 +239510 Phf20l1 PHD finger protein 20-like 1 Novel U 0.00026024466206248375 -0.26128649302539086 1.0 17944 +109079 Sephs1 selenophosphate synthetase 1 Novel N 0.0002602432348180573 -0.2612865078087417 1.0 17945 +93696 Chrac1 chromatin accessibility complex 1 Novel N 0.00026020191235852347 -0.2612869358254191 1.0 17946 +240725 Sulf1 sulfatase 1 Novel U 0.0002600701140684539 -0.26128830098777506 1.0 17947 +52633 Nit2 nitrilase family, member 2 Novel N 0.0002600241836488078 -0.26128877673355183 1.0 17948 +268512 Slc26a11 solute carrier family 26, member 11 Novel N 0.0002600155764465287 -0.2612888658866701 1.0 17949 +67547 Slc39a8 solute carrier family 39 (metal ion transporter), member 8 Novel U 0.0002599986875469522 -0.26128904082133675 1.0 17950 +546038 Spag11b sperm associated antigen 11B Novel U 0.00025979677394859273 -0.261291132235751 1.0 17951 +382059 Defa22 defensin, alpha, 22 Novel U 0.000259744573526368 -0.2612916729260084 1.0 17952 +118445 Klf16 Kruppel-like transcription factor 16 Novel U 0.00025974384053280134 -0.2612916805183317 1.0 17953 +12877 Cpeb1 cytoplasmic polyadenylation element binding protein 1 Novel N 0.00025971782129281996 -0.2612919500247641 1.0 17954 +14028 Evx1 even-skipped homeobox 1 Novel U 0.00025962702415786404 -0.2612928904985031 1.0 17955 +72555 Shisa9 shisa family member 9 Novel U 0.00025955745855046577 -0.26129361105677773 1.0 17956 +22017 Tpmt thiopurine methyltransferase Novel N 0.0002593744454643658 -0.2612955067003073 1.0 17957 +13082 Cyp26a1 cytochrome P450, family 26, subfamily a, polypeptide 1 Novel N 0.00025933776167344133 -0.2612958866698078 1.0 17958 +331046 Tgm4 transglutaminase 4 (prostate) Novel U 0.00025886997092132067 -0.2613007320310405 1.0 17959 +28105 Trim36 tripartite motif-containing 36 Novel U 0.0002588274025954147 -0.2613011729523608 1.0 17960 +360217 Defb40 defensin beta 40 Novel U 0.0002588086841160999 -0.26130136683775423 1.0 17961 +69982 Spink2 serine peptidase inhibitor, Kazal type 2 Novel U 0.0002588016359969805 -0.26130143984194043 1.0 17962 +545085 Wdr70 WD repeat domain 70 Novel U 0.00025875135318710856 -0.26130196066963207 1.0 17963 +66971 Cdk5rap1 CDK5 regulatory subunit associated protein 1 Novel U 0.00025871830881197183 -0.2613023029421835 1.0 17964 +230612 Slc5a9 solute carrier family 5 (sodium/glucose cotransporter), member 9 Novel N 0.0002586719936041531 -0.26130278267358353 1.0 17965 +406221 Krt40 keratin 40 Novel U 0.00025866977439575753 -0.26130280566007114 1.0 17966 +19364 Rad51d RAD51 paralog D Novel U 0.00025863062874581744 -0.2613032111294264 1.0 17967 +234730 Fcsk fucose kinase Novel N 0.00025849615230435867 -0.26130460403198635 1.0 17968 +75469 Spata19 spermatogenesis associated 19 Novel U 0.000258435651810158 -0.26130523069411643 1.0 17969 +228777 Nrsn2 neurensin 2 Novel U 0.0002583660826452704 -0.26130595128923934 1.0 17970 +211948 Pde12 phosphodiesterase 12 Novel U 0.0002583533723801778 -0.2613060829417474 1.0 17971 +245403 Dcaf12l2 DDB1 and CUL4 associated factor 12-like 2 Novel U 0.00025834997725257655 -0.26130611810836746 1.0 17972 +100126775 Esp38 exocrine gland secreted peptide 38 Novel U 0.0002582320637885812 -0.2613073394521513 1.0 17973 +436563 Gm5773 TD and POZ domain containing 2 pseudogene Novel U 0.00025811338533981146 -0.2613085687196223 1.0 17974 +234967 Slc36a4 solute carrier family 36 (proton/amino acid symporter), member 4 Novel U 0.0002580569602620447 -0.261309153168723 1.0 17975 +226016 Abhd17b abhydrolase domain containing 17B Novel N 0.00025797984598418443 -0.2613099519158781 1.0 17976 +27358 Defb3 defensin beta 3 Novel U 0.00025797186200495235 -0.26131003461367247 1.0 17977 +57814 Kcne4 potassium voltage-gated channel, Isk-related subfamily, gene 4 Novel U 0.00025796780486142404 -0.2613100766374318 1.0 17978 +16678 Krt1 keratin 1 Novel U 0.0002579332879996632 -0.2613104341619512 1.0 17979 +56365 Clcnkb chloride channel, voltage-sensitive Kb Novel U 0.0002578704072028655 -0.26131108547917736 1.0 17980 +58200 Ppp1r1a protein phosphatase 1, regulatory inhibitor subunit 1A Novel U 0.0002578364074853161 -0.26131143764713405 1.0 17981 +73340 Nptxr neuronal pentraxin receptor Novel U 0.00025779901217861886 -0.2613118249864915 1.0 17982 +73166 Tm7sf2 transmembrane 7 superfamily member 2 Novel N 0.00025772420525489297 -0.2613125998341483 1.0 17983 +103765 Tmem17 transmembrane protein 17 Novel N 0.0002575834586096673 -0.26131405768327276 1.0 17984 +434203 Slc28a1 solute carrier family 28 (sodium-coupled nucleoside transporter), member 1 Novel U 0.0002575487348979743 -0.261314417350337 1.0 17985 +330230 Zfp853 zinc finger protein 853 Novel U 0.000257472849001021 -0.261315203373963 1.0 17986 +224792 Adgrf5 adhesion G protein-coupled receptor F5 Novel N 0.0002574721954046897 -0.26131521014389236 1.0 17987 +13018 Ctcf CCCTC-binding factor Novel U 0.00025740115251203456 -0.26131594600383906 1.0 17988 +246190 Otoa otoancorin Novel N 0.0002573877056636516 -0.2613160852858526 1.0 17989 +170676 Peg10 paternally expressed 10 Novel U 0.00025720823365958206 -0.2613179442509709 1.0 17990 +22598 Slc6a18 solute carrier family 6 (neurotransmitter transporter), member 18 Novel N 0.0002572039386513184 -0.2613179887385253 1.0 17991 +329731 Tafa3 TAFA chemokine like family member 3 Novel U 0.0002571731540332198 -0.2613183076045876 1.0 17992 +23972 Papss2 3'-phosphoadenosine 5'-phosphosulfate synthase 2 Novel N 0.0002571408484381039 -0.26131864222487977 1.0 17993 +230579 Fam151a family with sequence simliarity 151, member A Novel U 0.00025701590334743974 -0.26131993640202156 1.0 17994 +330890 Piwil4 piwi-like RNA-mediated gene silencing 4 Novel N 0.00025694691900686044 -0.26132065093955353 1.0 17995 +246317 Neto1 neuropilin (NRP) and tolloid (TLL)-like 1 Novel U 0.0002568888736003901 -0.2613212521719656 1.0 17996 +27784 Commd8 COMM domain containing 8 Novel U 0.00025685925159665563 -0.2613215589957065 1.0 17997 +99003 Qser1 glutamine and serine rich 1 Novel U 0.00025673059018968146 -0.26132289166633044 1.0 17998 +15312 Hmgn1 high mobility group nucleosomal binding domain 1 Novel N 0.00025669233440053546 -0.2613232879185368 1.0 17999 +18516 Pbx3 pre B cell leukemia homeobox 3 Novel N 0.00025667057787204765 -0.2613235132719437 1.0 18000 +66116 Nat8f1 N-acetyltransferase 8 (GCN5-related) family member 1 Novel U 0.0002564442548371643 -0.26132585751849907 1.0 18001 +50724 Sap30l SAP30-like Novel U 0.0002563451932626979 -0.26132688359503087 1.0 18002 +223267 Ggact gamma-glutamylamine cyclotransferase Novel N 0.0002563432563511397 -0.2613269036574971 1.0 18003 +667962 Zfp966 zinc finger protein 966 Novel U 0.0002563052998587221 -0.2613272968095978 1.0 18004 +13521 Slc26a2 solute carrier family 26 (sulfate transporter), member 2 Novel U 0.00025604388772555345 -0.26133000450787974 1.0 18005 +68239 Krt42 keratin 42 Novel U 0.0002557392714370489 -0.2613331597133824 1.0 18006 +81879 Tfcp2l1 transcription factor CP2-like 1 Novel N 0.00025570105315255787 -0.26133355557711674 1.0 18007 +76960 Bcas1 brain enriched myelin associated protein 1 Novel U 0.000255619426615583 -0.2613344010621034 1.0 18008 +72480 Tspyl4 TSPY-like 4 Novel U 0.0002555585702327533 -0.2613350314105162 1.0 18009 +66929 Asf1b anti-silencing function 1B histone chaperone Novel N 0.00025555110805916114 -0.261335108703465 1.0 18010 +26565 Pla2g10 phospholipase A2, group X Novel U 0.00025500684653793345 -0.26134074614641023 1.0 18011 +74359 4931414P19Rik RIKEN cDNA 4931414P19 gene Novel U 0.00025495000470177634 -0.26134133491228057 1.0 18012 +18933 Prrx1 paired related homeobox 1 Novel U 0.00025493147750767773 -0.261341526816348 1.0 18013 +619310 Zfp872 zinc finger protein 872 Novel U 0.0002549295976177707 -0.26134154628818584 1.0 18014 +22221 Ubp1 upstream binding protein 1 Novel N 0.00025487334016035276 -0.2613421290010804 1.0 18015 +17436 Me1 malic enzyme 1, NADP(+)-dependent, cytosolic Novel U 0.0002548354850439807 -0.2613425211031314 1.0 18016 +100041787 Defa40 defensin, alpha, 40 Novel U 0.0002547060503275847 -0.26134386178366886 1.0 18017 +665211 Gm14326 predicted gene 14326 Novel U 0.0002546750979464732 -0.2613441823874149 1.0 18018 +77704 Lcn9 lipocalin 9 Novel U 0.0002545989272553385 -0.2613449713609297 1.0 18019 +100504710 Nat8f6 N-acetyltransferase 8 (GCN5-related) family member 6 Novel U 0.00025443654291536444 -0.26134665333258505 1.0 18020 +234219 Helt helt bHLH transcription factor Novel U 0.00025443184129672814 -0.26134670203179633 1.0 18021 +80733 Car15 carbonic anhydrase 15 Novel U 0.0002543460066582768 -0.2613475911041598 1.0 18022 +212392 Ccdc110 coiled-coil domain containing 110 Novel U 0.00025431619783874813 -0.2613478998629325 1.0 18023 +216151 Polrmt polymerase (RNA) mitochondrial (DNA directed) Novel N 0.0002541838625084178 -0.26134927058793384 1.0 18024 +15401 Hoxa4 homeobox A4 Novel N 0.00025413903751989216 -0.2613497348836914 1.0 18025 +68294 Mfsd10 major facilitator superfamily domain containing 10 Novel N 0.00025388831870789007 -0.26135233182090417 1.0 18026 +100312476 Vmn1r238 vomeronasal 1 receptor, 238 Novel U 0.0002536928340315004 -0.26135435664475604 1.0 18027 +211924 Dsg1c desmoglein 1 gamma Novel U 0.0002535973901821545 -0.26135534524901 1.0 18028 +80902 Zfp202 zinc finger protein 202 Novel N 0.0002535644230393464 -0.2613556867215915 1.0 18029 +14862 Gstm1 glutathione S-transferase, mu 1 Novel U 0.00025354746945429555 -0.2613558623262681 1.0 18030 +109900 Asl argininosuccinate lyase Novel N 0.0002535422734501762 -0.261355916146308 1.0 18031 +78754 Galnt15 polypeptide N-acetylgalactosaminyltransferase 15 Novel N 0.00025344200002156667 -0.2613569547751852 1.0 18032 +404195 Cyp2c54 cytochrome P450, family 2, subfamily c, polypeptide 54 Novel U 0.0002534347270224126 -0.26135703010867134 1.0 18033 +67212 Mrpl55 mitochondrial ribosomal protein L55 Novel U 0.0002532955912637017 -0.26135847127228623 1.0 18034 +67430 4921536K21Rik RIKEN cDNA 4921536K21 gene Novel U 0.00025312687648727344 -0.26136021881439425 1.0 18035 +12856 Cox17 cytochrome c oxidase assembly protein 17, copper chaperone Novel N 0.0002530972704806429 -0.2613605254724377 1.0 18036 +211482 Efhb EF hand domain family, member B Novel U 0.000252862673229802 -0.26136295542305 1.0 18037 +59016 Thap11 THAP domain containing 11 Novel N 0.0002528336373080809 -0.2613632561761726 1.0 18038 +332175 Zdhhc23 zinc finger, DHHC domain containing 23 Novel U 0.0002527029094550147 -0.26136461025097724 1.0 18039 +170442 Bbox1 gamma-butyrobetaine hydroxylase 1 Novel N 0.00025269034955904075 -0.26136474034596685 1.0 18040 +20498 Slc12a4 solute carrier family 12, member 4 Novel U 0.0002524900309155466 -0.2613668152398911 1.0 18041 +320225 Catsperg1 cation channel sperm associated auxiliary subunit gamma 1 Novel U 0.00025231878466872194 -0.2613685890028863 1.0 18042 +75079 Zbtb49 zinc finger and BTB domain containing 49 Novel N 0.0002522442702432329 -0.26136936082085593 1.0 18043 +18984 Por cytochrome p450 oxidoreductase Novel U 0.0002521906145038982 -0.2613699165852401 1.0 18044 +27276 Plekhb1 pleckstrin homology domain containing, family B (evectins) member 1 Novel U 0.0002517514185899893 -0.2613744657620786 1.0 18045 +100043381 Gm14308 predicted gene 14308 Novel U 0.0002517264000558266 -0.26137472490323305 1.0 18046 +12593 Cdyl chromodomain protein, Y chromosome-like Novel U 0.00025158848791385674 -0.26137615339266596 1.0 18047 +100043133 Zfp696 zinc finger protein 696 Novel U 0.00025155835174063714 -0.2613764655421575 1.0 18048 +54650 Sfmbt1 Scm-like with four mbt domains 1 Novel N 0.00025141071692801433 -0.2613779947386934 1.0 18049 +72774 Neil1 nei endonuclease VIII-like 1 (E. coli) Novel N 0.0002513684648343026 -0.2613784323844911 1.0 18050 +15478 Hs3st3a1 heparan sulfate (glucosamine) 3-O-sulfotransferase 3A1 Novel N 0.00025135289440235344 -0.26137859366251337 1.0 18051 +76390 Zfp735 zinc finger protein 735 Novel U 0.0002513170066076868 -0.26137896538711075 1.0 18052 +235048 Zfp599 zinc finger protein 599 Novel U 0.000251212299914127 -0.26138004993560066 1.0 18053 +11354 Scgb1b27 secretoglobin, family 1B, member 27 Novel U 0.0002511803560248264 -0.2613803808093559 1.0 18054 +107392 Brms1 breast cancer metastasis-suppressor 1 Novel U 0.00025113077058673837 -0.26138089441369355 1.0 18055 +625650 Samt1c spermatogenesis associated multipass transmembrane protein 1c Novel U 0.0002506702565616482 -0.2613856644028269 1.0 18056 +97086 Slc9b2 solute carrier family 9, subfamily B (NHA2, cation proton antiporter 2), member 2 Novel N 0.00025064357439763703 -0.26138594077580457 1.0 18057 +74186 Ccdc3 coiled-coil domain containing 3 Novel N 0.0002506124321229619 -0.2613862633464619 1.0 18058 +329154 Ankrd44 ankyrin repeat domain 44 Novel U 0.00025047603853435953 -0.26138767610676894 1.0 18059 +214106 4933430I17Rik RIKEN cDNA 4933430I17 gene Novel U 0.00025024338459617726 -0.26139008592861257 1.0 18060 +100042777 Erhrt-ps ERH mRNA splicing and mitosis factor retrotransposed, pseudogene Novel U 0.00025019131912410223 -0.26139062522106077 1.0 18061 +17122 Mxd4 Max dimerization protein 4 Novel U 0.00025015682565951913 -0.261390982503233 1.0 18062 +75541 Nat8f4 N-acetyltransferase 8 (GCN5-related) family member 4 Novel U 0.0002501520296859368 -0.2613910321797697 1.0 18063 +229706 Slc6a17 solute carrier family 6 (neurotransmitter transporter), member 17 Novel U 0.0002501196455315352 -0.26139136761377646 1.0 18064 +66625 Pnisr PNN interacting serine/arginine-rich Novel U 0.000250118644587905 -0.2613913779815176 1.0 18065 +66596 Gtf3a general transcription factor III A Novel N 0.00025008378116776243 -0.26139173909567737 1.0 18066 +70257 Atp5mj ATP synthase membrane subunit j Novel U 0.0002499958411830089 -0.2613926499751486 1.0 18067 +20775 Sqle squalene epoxidase Novel N 0.00024996304985718464 -0.26139298962662355 1.0 18068 +208111 Zfp976 zinc finger protein 976 Novel U 0.0002496970737657743 -0.2613957445982349 1.0 18069 +98488 Gtf3c3 general transcription factor IIIC, polypeptide 3 Novel N 0.0002496708499311513 -0.26139601622385183 1.0 18070 +320118 Fbxl13 F-box and leucine-rich repeat protein 13 Novel U 0.0002496141649381409 -0.26139660336514603 1.0 18071 +626708 Defa26 defensin, alpha, 26 Novel U 0.0002493876443096917 -0.261398949658369 1.0 18072 +14317 Ftcd formiminotransferase cyclodeaminase Novel U 0.0002492707344189932 -0.2614001606071737 1.0 18073 +26358 Aldh1a7 aldehyde dehydrogenase family 1, subfamily A7 Novel U 0.0002490239601823643 -0.2614027166866044 1.0 18074 +66298 Defa21 defensin, alpha, 21 Novel U 0.00024897897028150267 -0.2614031826905186 1.0 18075 +80384 Tex21 testis expressed gene 21 Novel U 0.0002487338484441978 -0.2614057216544514 1.0 18076 +16469 Jrk jerky Novel U 0.0002486959266914444 -0.26140611444671985 1.0 18077 +11625 Ahsg alpha-2-HS-glycoprotein Novel U 0.00024861068529373665 -0.2614069973743151 1.0 18078 +245050 Gask1a golgi associated kinase 1A Novel U 0.0002484568948541619 -0.2614085903306327 1.0 18079 +76383 H2al1m H2A histone family member L1M Novel U 0.0002484499306170839 -0.2614086624659714 1.0 18080 +228802 Bpifb5 BPI fold containing family B, member 5 Novel U 0.00024838959572594916 -0.26140928741279035 1.0 18081 +242726 Padi6 peptidyl arginine deiminase, type VI Novel N 0.0002480489573569496 -0.2614128157338186 1.0 18082 +115488195 Gm20379 predicted gene, 20379 Novel U 0.0002478358712753807 -0.26141502287244667 1.0 18083 +100042929 H2al1c H2A histone family member L1C Novel U 0.0002477152799145496 -0.2614162719537979 1.0 18084 +74243 Slx4ip SLX4 interacting protein Novel U 0.0002477009321367515 -0.26141642056760866 1.0 18085 +15441 Hp1bp3 heterochromatin protein 1, binding protein 3 Novel U 0.0002475090504341982 -0.26141840807197597 1.0 18086 +272538 Tango6 transport and golgi organization 6 Novel U 0.00024711226364838883 -0.2614225179764597 1.0 18087 +229759 Olfm3 olfactomedin 3 Novel U 0.00024708806649546134 -0.2614227686097743 1.0 18088 +14080 Fabp1 fatty acid binding protein 1, liver Novel N 0.00024667323157299785 -0.2614270654562642 1.0 18089 +232664 Ccdc136 coiled-coil domain containing 136 Novel U 0.00024660120886916723 -0.26142781146506283 1.0 18090 +72982 Tmem138 transmembrane protein 138 Novel N 0.000246578413339354 -0.2614280475804113 1.0 18091 +66190 Acer3 alkaline ceramidase 3 Novel U 0.0002465393148549226 -0.26142845256122776 1.0 18092 +66356 Knop1 lysine rich nucleolar protein 1 Novel U 0.00024652284190566193 -0.26142862318749466 1.0 18093 +217698 Acot5 acyl-CoA thioesterase 5 Novel U 0.0002462868878274769 -0.2614310671920799 1.0 18094 +52245 Commd2 COMM domain containing 2 Novel U 0.0002462202242549282 -0.26143175769117294 1.0 18095 +19711 Resp18 regulated endocrine-specific protein 18 Novel U 0.00024601746534087603 -0.2614338578613394 1.0 18096 +85031 Pla1a phospholipase A1 member A Novel U 0.00024593330935109 -0.2614347295463151 1.0 18097 +13012 Cst8 cystatin 8 (cystatin-related epididymal spermatogenic) Novel U 0.0002456967585079931 -0.26143717973217173 1.0 18098 +100038977 Gm1993 predicted gene 1993 Novel U 0.0002455840090796445 -0.2614383475870441 1.0 18099 +117934532 Gm48552 predicted gene, 48552 Novel U 0.0002455511391986308 -0.26143868805219106 1.0 18100 +64103 Tnmd tenomodulin Novel U 0.00024555083460954844 -0.26143869120711477 1.0 18101 +213389 Prdm9 PR domain containing 9 Novel U 0.0002455340368492601 -0.2614388651977637 1.0 18102 +15077 H3c14 H3 clustered histone 14 Novel U 0.0002454480052458724 -0.26143975631028343 1.0 18103 +68147 Gar1 GAR1 ribonucleoprotein Novel U 0.00024537213339976703 -0.2614405421883712 1.0 18104 +330513 Gm5114 predicted gene 5114 Novel U 0.00024526825808892234 -0.26144161812542627 1.0 18105 +13101 Cyp2d10 cytochrome P450, family 2, subfamily d, polypeptide 10 Novel U 0.0002452031389773691 -0.261442292627043 1.0 18106 +227638 Qsox2 quiescin Q6 sulfhydryl oxidase 2 Novel U 0.0002451611459460634 -0.26144272758948084 1.0 18107 +109222 Rarres1 retinoic acid receptor responder (tazarotene induced) 1 Novel U 0.00024507394454348016 -0.2614436308187422 1.0 18108 +75497 Fabp12 fatty acid binding protein 12 Novel U 0.000244854873213206 -0.2614458999523796 1.0 18109 +72556 Zfp566 zinc finger protein 566 Novel U 0.00024484995575457574 -0.2614459508872545 1.0 18110 +329557 Svs3b seminal vesicle secretory protein 3B Novel U 0.00024484564166529424 -0.2614459955724494 1.0 18111 +18114 Rrp1 ribosomal RNA processing 1 Novel U 0.0002448414461085548 -0.2614460390298882 1.0 18112 +224796 Clic5 chloride intracellular channel 5 Novel U 0.00024483250634134136 -0.26144613162770314 1.0 18113 +67715 2010106E10Rik RIKEN cDNA 2010106E10 gene Novel U 0.0002447585178550524 -0.26144689799801185 1.0 18114 +69541 Lyg1 lysozyme G-like 1 Novel U 0.00024459491860030904 -0.26144859255371444 1.0 18115 +64406 Sp5 trans-acting transcription factor 5 Novel U 0.000244410819751517 -0.2614504994435383 1.0 18116 +20762 Sprr2h small proline-rich protein 2H Novel U 0.00024438762890402184 -0.26145073965357435 1.0 18117 +209225 Zfp710 zinc finger protein 710 Novel U 0.00024418329985340776 -0.2614528560871636 1.0 18118 +233168 AI987944 expressed sequence AI987944 Novel U 0.00024411726305762865 -0.26145354009412347 1.0 18119 +667034 Pnp2 purine-nucleoside phosphorylase 2 Novel U 0.00024411662676860523 -0.26145354668478427 1.0 18120 +241128 Fam124b family with sequence similarity 124, member B Novel U 0.00024411043844428356 -0.26145361078324414 1.0 18121 +30838 Fbxw4 F-box and WD-40 domain protein 4 Novel N 0.00024401588832061253 -0.26145459013031697 1.0 18122 +105827 Amigo2 adhesion molecule with Ig like domain 2 Novel U 0.00024387606918797208 -0.26145603837229653 1.0 18123 +72881 Zdhhc4 zinc finger, DHHC domain containing 4 Novel U 0.00024370819782434467 -0.2614577771783625 1.0 18124 +114584 Clic1 chloride intracellular channel 1 Novel N 0.0002437002191695927 -0.26145785982100617 1.0 18125 +105727 Slc38a1 solute carrier family 38, member 1 Novel U 0.00024366238947686375 -0.26145825165971986 1.0 18126 +66664 Tmem41a transmembrane protein 41a Novel U 0.00024344638722890785 -0.2614604890039035 1.0 18127 +56388 Cyp3a25 cytochrome P450, family 3, subfamily a, polypeptide 25 Novel U 0.00024339279204670363 -0.26146104414103893 1.0 18128 +73173 Pcdh18 protocadherin 18 Novel U 0.00024337215609685186 -0.2614612578875291 1.0 18129 +97440 B3gnt9 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 9 Novel U 0.0002433135365488982 -0.2614618650668798 1.0 18130 +73720 Cst6 cystatin E/M Novel U 0.0002431430684700079 -0.2614636307696371 1.0 18131 +668198 Cdc5lrt5 cell division cycle 5 like, retrotransposed 5 Novel U 0.00024309721818696766 -0.2614641056853616 1.0 18132 +625464 Ccdc121rt2 coiled-coil domain containing 121, retrogene 2 Novel U 0.00024307324230660887 -0.2614643540267422 1.0 18133 +100042437 Vmn1r79 vomeronasal 1 receptor 79 Novel U 0.00024294600841476738 -0.2614656719112113 1.0 18134 +100073351 Yy2 Yy2 transcription factor Novel U 0.00024286265251425115 -0.2614665353088887 1.0 18135 +20020 Polr2a polymerase (RNA) II (DNA directed) polypeptide A Novel U 0.0002427679536067505 -0.2614675161970595 1.0 18136 +212503 Paox polyamine oxidase (exo-N4-amino) Novel N 0.0002426061653176956 -0.26146919199483903 1.0 18137 +110074 Dut deoxyuridine triphosphatase Novel U 0.00024253899191468772 -0.2614698877747392 1.0 18138 +71468 Obox1 oocyte specific homeobox 1 Novel U 0.0002424335311843828 -0.26147098013351683 1.0 18139 +14911 Thumpd3 THUMP domain containing 3 Novel N 0.00024229967903039638 -0.26147236656972767 1.0 18140 +243168 Hsd17b13 hydroxysteroid (17-beta) dehydrogenase 13 Novel N 0.00024228803774856454 -0.2614724871497422 1.0 18141 +270028 Nalf1 NALCN channel auxiliary factor 1 Novel U 0.0002422570872256713 -0.2614728077342409 1.0 18142 +93876 Pcdhb5 protocadherin beta 5 Novel U 0.0002421071545792817 -0.2614743607316634 1.0 18143 +100503992 Gm6040 predicted gene 6040 Novel U 0.00024204711419594633 -0.2614749826279803 1.0 18144 +68701 Ppp1r27 protein phosphatase 1, regulatory subunit 27 Novel U 0.00024201562505665744 -0.26147530879144987 1.0 18145 +668257 Dgat2l6 diacylglycerol O-acyltransferase 2-like 6 Novel U 0.00024194738247805992 -0.26147601564583567 1.0 18146 +79233 Zfp319 zinc finger protein 319 Novel U 0.00024188809325373668 -0.2614766297616722 1.0 18147 +106648 Cyp4f15 cytochrome P450, family 4, subfamily f, polypeptide 15 Novel U 0.00024184147384155943 -0.26147711264401097 1.0 18148 +93691 Klf7 Kruppel-like transcription factor 7 (ubiquitous) Novel U 0.00024181354770019467 -0.2614774019020652 1.0 18149 +235330 Ttc12 tetratricopeptide repeat domain 12 Novel N 0.0002417894962502303 -0.26147765102619325 1.0 18150 +94220 Cnnm4 cyclin M4 Novel N 0.00024178712199090109 -0.2614776756186934 1.0 18151 +69287 Cimap1a ciliary microtubule associated protein 1A Novel U 0.00024163813272842042 -0.26147921884457637 1.0 18152 +69089 Oxa1l oxidase assembly 1-like Novel U 0.00024156166163997236 -0.26148001092959666 1.0 18153 +384071 Slc25a34 solute carrier family 25, member 34 Novel U 0.00024155660403353378 -0.2614800633161179 1.0 18154 +78081 Crisp4 cysteine-rich secretory protein 4 Novel U 0.0002412859471094536 -0.2614828667716402 1.0 18155 +245522 Zc4h2 zinc finger, C4H2 domain containing Novel U 0.0002411882750396613 -0.2614838784557283 1.0 18156 +192653 Ttc36 tetratricopeptide repeat domain 36 Novel U 0.00024092951262871373 -0.2614865587082745 1.0 18157 +66078 Tsen34 tRNA splicing endonuclease subunit 34 Novel N 0.00024089826538143715 -0.2614868823662346 1.0 18158 +244486 Adam29 a disintegrin and metallopeptidase domain 29 Novel N 0.00024089220175350486 -0.2614869451730934 1.0 18159 +70536 Qpct glutaminyl-peptide cyclotransferase (glutaminyl cyclase) Novel N 0.00024058225879335598 -0.2614901555520858 1.0 18160 +72948 Tppp tubulin polymerization promoting protein Novel U 0.00024033034583199352 -0.2614927648582584 1.0 18161 +27400 Hsd17b6 hydroxysteroid (17-beta) dehydrogenase 6 Novel N 0.0002401544402066743 -0.26149458688294286 1.0 18162 +17425 Foxk1 forkhead box K1 Novel N 0.00024013540431717798 -0.26149478405606047 1.0 18163 +320685 Dctd dCMP deaminase Novel N 0.00024005691562472764 -0.2614955970393567 1.0 18164 +226049 Dmrt2 doublesex and mab-3 related transcription factor 2 Novel U 0.00023990156049971646 -0.26149720620263456 1.0 18165 +80795 Selenok selenoprotein K Novel N 0.00023979433905096766 -0.261498316798876 1.0 18166 +78619 Zfp449 zinc finger protein 449 Novel U 0.0002395905046327002 -0.2615004281090797 1.0 18167 +381546 Ccdc24 coiled-coil domain containing 24 Novel U 0.00023958555210361774 -0.26150047940721316 1.0 18168 +68966 Ngdn neuroguidin, EIF4E binding protein Novel N 0.00023946799932407105 -0.26150169701503934 1.0 18169 +22746 Zfp85 zinc finger protein 85 Novel U 0.00023932471140343628 -0.2615031811866109 1.0 18170 +66279 Tmem218 transmembrane protein 218 Novel U 0.00023916942081173565 -0.26150478968145485 1.0 18171 +28042 Selenoi selenoprotein I Novel U 0.00023916652502095788 -0.26150481967596056 1.0 18172 +105247240 Pnma8c PNMA family member 8C Novel U 0.0002391434860888299 -0.2615050583124622 1.0 18173 +100503036 Ccdc179 coiled-coil domain containing 179 Novel U 0.0002391297684032471 -0.26150520039979847 1.0 18174 +211712 Pcdh9 protocadherin 9 Novel U 0.00023891687261915439 -0.26150740556733154 1.0 18175 +235320 Zbtb16 zinc finger and BTB domain containing 16 Novel U 0.00023890826422831658 -0.26150749473276086 1.0 18176 +75753 Klf17 Kruppel-like transcription factor 17 Novel U 0.00023888715014201554 -0.26150771343177265 1.0 18177 +13109 Cyp2j5 cytochrome P450, family 2, subfamily j, polypeptide 5 Novel U 0.00023882704170859193 -0.26150833603295015 1.0 18178 +11671 Aldh3a2 aldehyde dehydrogenase family 3, subfamily A2 Novel U 0.00023878276732313856 -0.2615087946255792 1.0 18179 +171286 Slc12a8 solute carrier family 12 (potassium/chloride transporters), member 8 Novel U 0.0002387552749902628 -0.26150907939025936 1.0 18180 +625662 Ankrd31 ankyrin repeat domain 31 Novel U 0.0002386460627015318 -0.2615102106075559 1.0 18181 +74322 Cxxc1 CXXC finger protein 1 Novel N 0.00023846997101937019 -0.261512034559411 1.0 18182 +58188 Vstm2b V-set and transmembrane domain containing 2B Novel U 0.0002384021770467922 -0.26151273676715037 1.0 18183 +19682 Rdh5 retinol dehydrogenase 5 Novel U 0.00023833084344781775 -0.2615134756382236 1.0 18184 +260297 Prrt1 proline-rich transmembrane protein 1 Novel U 0.00023831859313342636 -0.26151360252657735 1.0 18185 +19683 Rdh16 retinol dehydrogenase 16 Novel U 0.00023820128144208576 -0.26151481763721984 1.0 18186 +66425 Pcp4l1 Purkinje cell protein 4-like 1 Novel U 0.00023809653276930852 -0.26151590262052904 1.0 18187 +434759 Rhox4c reproductive homeobox 4C Novel U 0.0002380205346187586 -0.26151668980687415 1.0 18188 +14854 Gss glutathione synthetase Novel U 0.00023765039882699116 -0.2615205236612377 1.0 18189 +68616 Gdpd3 glycerophosphodiester phosphodiesterase domain containing 3 Novel N 0.00023735581244312658 -0.26152357497731776 1.0 18190 +18096 Nkx6-1 NK6 homeobox 1 Novel N 0.00023721107715852493 -0.26152507414063775 1.0 18191 +16372 Irx2 Iroquois homeobox 2 Novel N 0.00023710366437440137 -0.2615261867187247 1.0 18192 +72852 Mblac2 metallo-beta-lactamase domain containing 2 Novel U 0.00023697875911157703 -0.26152748048333097 1.0 18193 +270166 Clpx caseinolytic mitochondrial matrix peptidase chaperone subunit Novel U 0.00023692709190751624 -0.2615280156505322 1.0 18194 +319530 Zfp750 zinc finger protein 750 Novel U 0.00023686514186268236 -0.2615286573270601 1.0 18195 +17142 Magea6 MAGE family member A6 Novel U 0.00023673859295299195 -0.2615299681165066 1.0 18196 +76279 Cyp2d26 cytochrome P450, family 2, subfamily d, polypeptide 26 Novel U 0.00023673700090838594 -0.2615299846068523 1.0 18197 +69539 Trnp1 TMF1-regulated nuclear protein 1 Novel U 0.00023667383209491653 -0.2615306389073456 1.0 18198 +223726 Mpped1 metallophosphoesterase domain containing 1 Novel U 0.00023666998069525532 -0.2615306788000167 1.0 18199 +226517 Smg7 SMG7 nonsense mediated mRNA decay factor Novel N 0.0002365917240744281 -0.2615314893795227 1.0 18200 +393082 Tmt1a2 thiol methyltransferase 1A2 Novel U 0.00023655572813857065 -0.261531862224243 1.0 18201 +75764 Slx1b SLX1 structure-specific endonuclease subunit homolog B (S. cerevisiae) Novel U 0.00023648655174264837 -0.2615325787510779 1.0 18202 +14544 Gda guanine deaminase Novel N 0.00023646446213958314 -0.2615328075544603 1.0 18203 +140476 Strc stereocilin Novel N 0.00023644817792281268 -0.2615329762258423 1.0 18204 +66816 Thap2 THAP domain containing, apoptosis associated protein 2 Novel U 0.00023641541119261256 -0.26153331562255655 1.0 18205 +56043 Akr1e1 aldo-keto reductase family 1, member E1 Novel U 0.0002364083033784842 -0.26153338924506164 1.0 18206 +73526 Speer4b spermatogenesis associated glutamate (E)-rich protein 4B Novel U 0.0002363617973394551 -0.2615338709530851 1.0 18207 +246081 Defb11 defensin beta 11 Novel U 0.00023636155695832962 -0.2615338734429449 1.0 18208 +664608 Rhox4g reproductive homeobox 4G Novel U 0.0002363383810794753 -0.2615341134979362 1.0 18209 +269023 Zfp608 zinc finger protein 608 Novel U 0.00023612906708060617 -0.26153628156545566 1.0 18210 +245595 Zfp711 zinc finger protein 711 Novel N 0.00023612080301221942 -0.26153636716440437 1.0 18211 +20515 Slc20a1 solute carrier family 20, member 1 Novel N 0.00023606225591044718 -0.26153697359335987 1.0 18212 +19367 Rad9a RAD9 checkpoint clamp component A Novel U 0.0002358866795585466 -0.2615387922074411 1.0 18213 +73293 Ccdc103 coiled-coil domain containing 103 Novel U 0.0002358776922186277 -0.2615388852980125 1.0 18214 +14237 Foxd4 forkhead box D4 Novel U 0.00023585549789150394 -0.26153911518612327 1.0 18215 +73680 Zbtb8a zinc finger and BTB domain containing 8a Novel N 0.00023578722165077374 -0.2615398223891803 1.0 18216 +66491 Polr2l polymerase (RNA) II (DNA directed) polypeptide L Novel N 0.0002356992045882441 -0.26154073406702055 1.0 18217 +115489950 Zfp988 zinc finger protein 988 Novel U 0.0002356313400601641 -0.26154143700557153 1.0 18218 +235050 Zfp810 zinc finger protein 810 Novel U 0.00023551604915521228 -0.261542631184975 1.0 18219 +11431 Acp1 acid phosphatase 1, soluble Novel U 0.0002355117777668316 -0.26154267542787546 1.0 18220 +545947 Scgb2b19 secretoglobin, family 2B, member 19 Novel U 0.00023540895269509 -0.26154374048658835 1.0 18221 +664829 Slx Sycp3 like X-linked Novel U 0.00023537457949943932 -0.26154409652301897 1.0 18222 +102122 Psme3ip1 proteasome activator subunit 3 interacting protein 1 Novel U 0.0002353165151173136 -0.26154469795198027 1.0 18223 +20262 Stmn3 stathmin-like 3 Novel N 0.00023518377444156825 -0.261546072875536 1.0 18224 +83491 Pramel1 PRAME like 1 Novel U 0.00023518048711494794 -0.2615461069255571 1.0 18225 +69674 Mif4gd MIF4G domain containing Novel N 0.00023501340340748307 -0.2615478375731064 1.0 18226 +435815 Aadacl4 arylacetamide deacetylase like 4 Novel U 0.00023496916204716298 -0.26154829582366224 1.0 18227 +333182 Cox6b2 cytochrome c oxidase subunit 6B2 Novel U 0.00023495613945015127 -0.261548430711294 1.0 18228 +56370 Tagln3 transgelin 3 Novel N 0.00023479334637078946 -0.26155011691665847 1.0 18229 +70127 Dpf3 double PHD fingers 3 Novel U 0.000234783013027288 -0.26155022394909083 1.0 18230 +99167 Ssx2ip SSX family member 2 interacting protein Novel N 0.00023475617299825857 -0.2615505019572292 1.0 18231 +235345 Hoatz HOATZ cilia and flagella associated protein Novel U 0.0002346169791820368 -0.2615519437222018 1.0 18232 +432825 Gm5458 predicted gene 5458 Novel U 0.00023459350414008413 -0.26155218687591464 1.0 18233 +11605 Gla galactosidase, alpha Novel U 0.0002345309274924036 -0.26155283504277427 1.0 18234 +380969 Nckap5l NCK-associated protein 5-like Novel U 0.0002344626619516405 -0.26155354213500137 1.0 18235 +12036 Bcat2 branched chain aminotransferase 2, mitochondrial Novel N 0.0002344013360227572 -0.2615541773469568 1.0 18236 +11694 Alx3 aristaless-like homeobox 3 Novel U 0.00023440081482099134 -0.26155418274554754 1.0 18237 +19777 Uri1 URI1, prefoldin-like chaperone Novel U 0.00023429647684988634 -0.2615552634748223 1.0 18238 +16870 Lhx2 LIM homeobox protein 2 Novel U 0.00023427920817928468 -0.2615554423431447 1.0 18239 +545475 Defb28 defensin beta 28 Novel U 0.0002342604514238193 -0.26155563662500125 1.0 18240 +66948 Acad8 acyl-Coenzyme A dehydrogenase family, member 8 Novel N 0.00023416784491734623 -0.261556595840151 1.0 18241 +73833 Fam98c family with sequence similarity 98, member C Novel U 0.0002341324324013161 -0.26155696264182793 1.0 18242 +66978 Luc7l Luc7-like Novel U 0.00023410856123936725 -0.26155720989853865 1.0 18243 +406219 Krt87 keratin 87 Novel U 0.0002340951878890575 -0.26155734841926154 1.0 18244 +11500 Adam7 a disintegrin and metallopeptidase domain 7 Novel U 0.0002340847828690903 -0.2615574561941163 1.0 18245 +116748 Lsm10 U7 snRNP-specific Sm-like protein LSM10 Novel U 0.00023404120079180906 -0.26155790761584014 1.0 18246 +16889 Lipa lysosomal acid lipase A Novel U 0.00023403704968645448 -0.2615579506128529 1.0 18247 +414758 Zfp950 zinc finger protein 950 Novel U 0.00023398789054904155 -0.2615584598015822 1.0 18248 +71177 Ints13 integrator complex subunit 13 Novel N 0.00023396668805176964 -0.26155867941635197 1.0 18249 +547168 Rhox7a reproductive homeobox 7A Novel U 0.00023382763412801812 -0.26156011973232307 1.0 18250 +109254 Adtrp androgen dependent TFPI regulating protein Novel U 0.00023367951186172167 -0.2615616539778881 1.0 18251 +70859 Lrrc63 leucine rich repeat containing 63 Novel U 0.00023350402357330194 -0.26156347167981064 1.0 18252 +235682 Zfp445 zinc finger protein 445 Novel N 0.00023348826807908677 -0.2615636348747018 1.0 18253 +17025 Alad aminolevulinate, delta-, dehydratase Novel U 0.00023348622414977828 -0.2615636560456544 1.0 18254 +67516 Kctd4 potassium channel tetramerisation domain containing 4 Novel U 0.0002333344332150089 -0.2615652282911669 1.0 18255 +212998 BC016579 cDNA sequence, BC016579 Novel N 0.0002332759609023644 -0.2615658339454591 1.0 18256 +78806 Stpg1 sperm tail PG rich repeat containing 1 Novel N 0.00023326196646907018 -0.2615659788993391 1.0 18257 +231329 Polr2b polymerase (RNA) II (DNA directed) polypeptide B Novel N 0.000233170823949028 -0.26156692295056555 1.0 18258 +100043108 Cyp2c69 cytochrome P450, family 2, subfamily c, polypeptide 69 Novel U 0.00023309601491169202 -0.2615676978201151 1.0 18259 +26879 B3galnt1 UDP-GalNAc:betaGlcNAc beta 1,3-galactosaminyltransferase, polypeptide 1 Novel N 0.0002330461740006564 -0.26156821407063313 1.0 18260 +66401 Nudt2 nudix hydrolase 2 Novel N 0.00023302120102535677 -0.26156847273989037 1.0 18261 +74174 Gtsf1 gametocyte specific factor 1 Novel U 0.0002329748873419289 -0.2615689524555008 1.0 18262 +68545 Ecscr endothelial cell surface expressed chemotaxis and apoptosis regulator Novel U 0.00023293876981080408 -0.2615693265597009 1.0 18263 +117229 Stk33 serine/threonine kinase 33 Novel U 0.0002329328462179473 -0.261569387916081 1.0 18264 +67932 1700129C05Rik RIKEN cDNA 1700129C05 gene Novel U 0.00023293268966172314 -0.2615693895376852 1.0 18265 +56315 Rhcg Rhesus blood group-associated C glycoprotein Novel N 0.00023278511034578245 -0.2615709181593883 1.0 18266 +100862115 LOC100862115 PRAME family member 8-like Novel U 0.00023269363326680628 -0.2615718656759652 1.0 18267 +67678 Lsm3 LSM3 homolog, U6 small nuclear RNA and mRNA degradation associated Novel N 0.0002325628113653919 -0.2615732207249195 1.0 18268 +12972 Cryz crystallin, zeta Novel U 0.0002325545370511509 -0.26157330642999443 1.0 18269 +105428 Fam149b family with sequence similarity 149, member B Novel U 0.00023253926642937724 -0.26157346460259273 1.0 18270 +77055 Krt76 keratin 76 Novel U 0.0002325005495378914 -0.26157386563088203 1.0 18271 +217738 Ism2 isthmin 2 Novel U 0.00023237697396844177 -0.261575145622568 1.0 18272 +55951 Mpc1 mitochondrial pyruvate carrier 1 Novel U 0.000232211103946915 -0.26157686369879835 1.0 18273 +70892 Ttll7 tubulin tyrosine ligase-like family, member 7 Novel N 0.00023212574487268818 -0.26157774784528315 1.0 18274 +668205 Cdc5lrt7 cell division cycle 5 like, retrotransposed 7 Novel U 0.0002320858978954698 -0.26157816057896327 1.0 18275 +30951 Cbx8 chromobox 8 Novel N 0.000231978539223327 -0.2615792725965601 1.0 18276 +21847 Klf10 Kruppel-like transcription factor 10 Novel N 0.00023189315699679902 -0.2615801569828557 1.0 18277 +229731 Slc25a24 solute carrier family 25 (mitochondrial carrier, phosphate carrier), member 24 Novel U 0.00023185119302145498 -0.26158059164433284 1.0 18278 +103537 Mbtd1 mbt domain containing 1 Novel N 0.00023184577422395914 -0.26158064777205914 1.0 18279 +319748 Zfp865 zinc finger protein 865 Novel U 0.0002316374988234706 -0.2615828050818107 1.0 18280 +433926 Lrrc8b leucine rich repeat containing 8 family, member B Novel N 0.0002315060377287792 -0.261584166751508 1.0 18281 +71640 Zfp949 zinc finger protein 949 Novel U 0.00023130358949314378 -0.26158626370367755 1.0 18282 +66225 Llph LLP homolog, long-term synaptic facilitation (Aplysia) Novel U 0.00023129540818403772 -0.26158634844540835 1.0 18283 +66717 Ccdc96 coiled-coil domain containing 96 Novel U 0.0002312820384753576 -0.26158648692841135 1.0 18284 +70026 Tspo2 translocator protein 2 Novel U 0.0002311244699944013 -0.2615881190175573 1.0 18285 +235469 Zfp280d zinc finger protein 280D Novel U 0.00023112139334981768 -0.26158815088534076 1.0 18286 +71735 Lrwd1 leucine-rich repeats and WD repeat domain containing 1 Novel U 0.00023099350273769203 -0.261589475572097 1.0 18287 +67981 Hormad1 HORMA domain containing 1 Novel U 0.00023099125112905093 -0.26158949889418526 1.0 18288 +353169 Slc2a12 solute carrier family 2 (facilitated glucose transporter), member 12 Novel N 0.00023097395811021832 -0.26158967801470584 1.0 18289 +226115 Opalin oligodendrocytic myelin paranodal and inner loop protein Novel U 0.00023093437944535992 -0.2615900879692154 1.0 18290 +246791 Obox3 oocyte specific homeobox 3 Novel U 0.00023092100970167496 -0.26159022645258095 1.0 18291 +381066 Zfp948 zinc finger protein 948 Novel U 0.0002308514542481134 -0.26159094690568246 1.0 18292 +71861 Zswim2 zinc finger SWIM-type containing 2 Novel U 0.0002308264817376832 -0.26159120557012455 1.0 18293 +382384 Cimap1d CIMAP1 family member D Novel U 0.00023080968981741888 -0.26159137950028266 1.0 18294 +382019 Zfp882 zinc finger protein 882 Novel U 0.0002307604281730843 -0.2615918897507753 1.0 18295 +20533 Slc4a1 solute carrier family 4 (anion exchanger), member 1 Novel U 0.0002307047174382438 -0.2615924668007354 1.0 18296 +52535 Mettl17 methyltransferase like 17 Novel U 0.00023044227833982254 -0.2615951851362896 1.0 18297 +74008 Arsg arylsulfatase G Novel U 0.00023035692869249454 -0.2615960691851309 1.0 18298 +68052 Rps13 ribosomal protein S13 Novel N 0.00023027300231627938 -0.2615969384917768 1.0 18299 +19300 Abcd4 ATP-binding cassette, sub-family D member 4 Novel U 0.00023027081029246177 -0.26159696119668746 1.0 18300 +545260 Arsi arylsulfatase i Novel N 0.0002302203125671387 -0.2615974842504663 1.0 18301 +109652 Acy1 aminoacylase 1 Novel N 0.00023020650460966614 -0.2615976272728359 1.0 18302 +268395 Mpg N-methylpurine-DNA glycosylase Novel N 0.0002301835603360845 -0.2615978649288674 1.0 18303 +237611 Stac3 SH3 and cysteine rich domain 3 Novel N 0.00023015512386452143 -0.26159815947290505 1.0 18304 +208439 Klhl29 kelch-like 29 Novel U 0.00023001660614727358 -0.2615995942348668 1.0 18305 +105886298 Cmc4 C-X9-C motif containing 4 Novel U 0.00022993625280317125 -0.26160042653216353 1.0 18306 +18784 Pla2g5 phospholipase A2, group V Novel U 0.00022990331857099163 -0.2616007676638578 1.0 18307 +107373 Fam111a family with sequence similarity 111, member A Novel U 0.0002298593887846072 -0.26160122268714103 1.0 18308 +71164 Zdhhc11 zinc finger, DHHC domain containing 11 Novel U 0.00022983478447688847 -0.2616014775377516 1.0 18309 +20384 Srsf5 serine and arginine-rich splicing factor 5 Novel N 0.00022980594004800854 -0.2616017763073977 1.0 18310 +382253 Cdkl5 cyclin dependent kinase like 5 Novel U 0.00022978613732771734 -0.2616019814233235 1.0 18311 +18994 Pou3f4 POU domain, class 3, transcription factor 4 Novel U 0.00022962607349988028 -0.26160363935919045 1.0 18312 +78921 Zfp747l1 zinc finger protein 747 like 1 Novel U 0.00022961433828022572 -0.2616037609122098 1.0 18313 +67164 Lipt2 lipoyl(octanoyl) transferase 2 (putative) Novel N 0.00022960146642765693 -0.2616038942384356 1.0 18314 +67383 Carnmt1 carnosine N-methyltransferase 1 Novel N 0.00022953854183483497 -0.2616045460092995 1.0 18315 +110854 Ptpa protein phosphatase 2 protein activator Novel U 0.00022940604375617864 -0.2616059184200426 1.0 18316 +74246 Gale galactose-4-epimerase, UDP Novel N 0.00022936559574381177 -0.26160633737922506 1.0 18317 +18530 Pcdh8 protocadherin 8 Novel N 0.00022931737521165522 -0.26160683684591196 1.0 18318 +381203 Slc22a20 solute carrier family 22 (organic anion transporter), member 20 Novel U 0.0002291982592578407 -0.2616080706450458 1.0 18319 +18991 Pou3f1 POU domain, class 3, transcription factor 1 Novel N 0.00022888197726349211 -0.2616113466835461 1.0 18320 +432480 Gm1553 predicted gene 1553 Novel U 0.0002284943083968884 -0.2616153621449225 1.0 18321 +15403 Hoxa6 homeobox A6 Novel U 0.00022843767868975965 -0.2616159487135673 1.0 18322 +67235 Zkscan14 zinc finger with KRAB and SCAN domains 14 Novel U 0.00022836504583987984 -0.26161670104223866 1.0 18323 +57355 BC051019 cDNA sequence BC051019 Novel U 0.0002283641918548581 -0.26161670988778746 1.0 18324 +74525 Fam234b family with sequence similarity 234, member B Novel U 0.00022834581598253468 -0.2616169002244689 1.0 18325 +57248 Ly6i lymphocyte antigen 6 family member I Novel U 0.00022830096168008677 -0.26161736482385917 1.0 18326 +14865 Gstm4 glutathione S-transferase, mu 4 Novel N 0.00022821055760360311 -0.2616183012263115 1.0 18327 +108156 Mthfd1 methylenetetrahydrofolate dehydrogenase (NADP+ dependent), methenyltetrahydrofolate cyclohydrolase, formyltetrahydrofolate synthase Novel U 0.00022809391028064693 -0.2616195094554481 1.0 18328 +20753 Sprr1a small proline-rich protein 1A Novel U 0.0002280401028630715 -0.26162006679091054 1.0 18329 +19075 Prim1 DNA primase, p49 subunit Novel U 0.00022801286690403717 -0.26162034890007885 1.0 18330 +192651 Zfp286 zinc finger protein 286 Novel U 0.00022793416915825354 -0.26162116404874264 1.0 18331 +77485 Stk31 serine threonine kinase 31 Novel U 0.0002278535627464252 -0.26162199896730653 1.0 18332 +751865 Sap25 sin3 associated polypeptide Novel U 0.00022784945783776062 -0.2616220414858156 1.0 18333 +54388 H1f9 H1.9 linker histone Novel U 0.00022762767146505594 -0.2616243387417732 1.0 18334 +26356 Ing1 inhibitor of growth family, member 1 Novel U 0.0002276015015223711 -0.2616246098091793 1.0 18335 +13526 Adam24 ADAM metallopeptidase domain 24 Novel U 0.00022738079934675508 -0.2616268958350591 1.0 18336 +76775 Slc10a7 solute carrier family 10 (sodium/bile acid cotransporter family), member 7 Novel U 0.00022733979503998042 -0.2616273205563207 1.0 18337 +192852 Lrrc3c leucine rich repeat containing 3C Novel U 0.0002272095832683513 -0.26162866928557077 1.0 18338 +11792 Apex1 apurinic/apyrimidinic endonuclease 1 Novel U 0.00022699457940777054 -0.2616308962884908 1.0 18339 +234724 Tat tyrosine aminotransferase Novel U 0.00022670158912252984 -0.26163393107223376 1.0 18340 +109212 Pimreg PICALM interacting mitotic regulator Novel U 0.00022669953241022286 -0.2616339523755922 1.0 18341 +20342 Selenbp2 selenium binding protein 2 Novel U 0.0002266930652524818 -0.26163401936219954 1.0 18342 +71156 Lrrc72 leucine rich repeat containing 72 Novel U 0.00022665872710266947 -0.2616343750356265 1.0 18343 +78541 Asb8 ankyrin repeat and SOCS box-containing 8 Novel U 0.00022662975071232656 -0.2616346751721251 1.0 18344 +23885 Gmcl1 germ cell-less, spermatogenesis associated 1 Novel U 0.00022662574763262537 -0.26163471663589305 1.0 18345 +672682 Muc21 mucin 21 Novel U 0.00022655678350753654 -0.26163543096403363 1.0 18346 +104732 Tedc1 tubulin epsilon and delta complex 1 Novel U 0.00022653356671563084 -0.26163567144280103 1.0 18347 +207686 Cfap69 cilia and flagella associated protein 69 Novel N 0.00022644489779778822 -0.2616365898725372 1.0 18348 +16816 Lcat lecithin cholesterol acyltransferase Novel U 0.0002263835750170429 -0.26163722505188425 1.0 18349 +66059 Krtcap2 keratinocyte associated protein 2 Novel N 0.0002263757899380901 -0.26163730568947613 1.0 18350 +223631 Ly6g2 lymphocyte antigen 6 family member G2 Novel U 0.000226304213251758 -0.26163804707844024 1.0 18351 +230753 Thrap3 thyroid hormone receptor associated protein 3 Novel N 0.00022626048210837383 -0.2616385000441858 1.0 18352 +72657 Selenoh selenoprotein H Novel U 0.00022617602912224834 -0.26163937480543986 1.0 18353 +70081 Zfp995 zinc finger protein 995 Novel U 0.00022611272178238247 -0.26164003054078505 1.0 18354 +228994 Ythdf1 YTH N6-methyladenosine RNA binding protein 1 Novel N 0.00022603783443891286 -0.26164080622142694 1.0 18355 +18091 Nkx2-5 NK2 homeobox 5 Novel U 0.00022601759608901857 -0.2616410158495898 1.0 18356 +69611 Lce1d late cornified envelope 1D Novel U 0.0002259941856813104 -0.2616412583338233 1.0 18357 +278167 Mageb6b1 MAGE family member B6B1 Novel U 0.0002259098313368598 -0.26164213207335013 1.0 18358 +227683 Coq4 coenzyme Q4 Novel N 0.00022573523187449418 -0.26164394056884166 1.0 18359 +78771 Mctp1 multiple C2 domains, transmembrane 1 Novel U 0.00022561208085115575 -0.261645216163093 1.0 18360 +14864 Gstm3 glutathione S-transferase, mu 3 Novel U 0.00022544029121425603 -0.26164699555450477 1.0 18361 +360198 H3c1 H3 clustered histone 1 Novel U 0.00022530324069215026 -0.2616484151193074 1.0 18362 +66431 Oxld1 oxidoreductase like domain containing 1 Novel U 0.0002251296059294163 -0.26165021362247187 1.0 18363 +69878 Snrpf small nuclear ribonucleoprotein polypeptide F Novel N 0.000225070154587873 -0.2616508294175132 1.0 18364 +57869 Adck2 aarF domain containing kinase 2 Novel N 0.00022485190100177358 -0.26165309008098336 1.0 18365 +17116 Mab21l1 mab-21-like 1 Novel U 0.00022450316818818568 -0.2616567022440025 1.0 18366 +14240 Foxb2 forkhead box B2 Novel U 0.00022448252068740405 -0.26165691611013686 1.0 18367 +67848 Ddx55 DEAD box helicase 55 Novel U 0.00022445720732040052 -0.26165717830516017 1.0 18368 +71912 Jsrp1 junctional sarcoplasmic reticulum protein 1 Novel N 0.00022434419381168677 -0.2616583488953683 1.0 18369 +331532 Tceal5 transcription elongation factor A (SII)-like 5 Novel U 0.00022430279304838503 -0.2616587777231136 1.0 18370 +434128 Pnma8b PNMA family member 8B Novel U 0.00022427439978013372 -0.26165907181965276 1.0 18371 +66859 Slc16a9 solute carrier family 16 (monocarboxylic acid transporters), member 9 Novel N 0.0002242162612426615 -0.2616596740167127 1.0 18372 +100715 Tent2 terminal nucleotidyltransferase 2 Novel N 0.00022420280784692922 -0.2616598133665435 1.0 18373 +73919 Lyrm1 LYR motif containing 1 Novel U 0.00022417440725796593 -0.2616601075389103 1.0 18374 +75829 Pramex1 PRAME like, X-linked 1 Novel U 0.00022386057419003947 -0.2616633582115112 1.0 18375 +227835 Gtdc1 glycosyltransferase-like domain containing 1 Novel U 0.00022383686188505867 -0.2616636038227867 1.0 18376 +51812 Mcrs1 microspherule protein 1 Novel U 0.0002237888982878938 -0.2616641006281494 1.0 18377 +69478 2300009A05Rik RIKEN cDNA 2300009A05 gene Novel U 0.00022377353751488533 -0.2616642597345312 1.0 18378 +69824 Glod5 glyoxalase domain containing 5 Novel U 0.00022377294697926447 -0.26166426585127983 1.0 18379 +94179 Krt23 keratin 23 Novel U 0.00022358911193272243 -0.2616661700086486 1.0 18380 +70887 Dmrtc1a DMRT-like family C1a Novel U 0.00022339736465620702 -0.26166815612063543 1.0 18381 +666184 Gm15080 predicted gene 15080 Novel U 0.0002233345972443693 -0.26166880626342387 1.0 18382 +668210 Spmip1 sperm microtubule inner protein 1 Novel U 0.00022327542762127963 -0.26166941914043473 1.0 18383 +13105 Cyp2d9 cytochrome P450, family 2, subfamily d, polypeptide 9 Novel U 0.00022304824542169482 -0.2616717722861898 1.0 18384 +320718 Slc26a9 solute carrier family 26, member 9 Novel U 0.00022304480074772216 -0.2616718079660096 1.0 18385 +66369 Dus2 dihydrouridine synthase 2 Novel N 0.0002229200244927528 -0.26167310039435676 1.0 18386 +337924 Cyp3a44 cytochrome P450, family 3, subfamily a, polypeptide 44 Novel U 0.00022286289293843011 -0.26167369216111835 1.0 18387 +55947 Dclre1a DNA cross-link repair 1A Novel U 0.00022284983394613606 -0.26167382742573125 1.0 18388 +237934 Krt39 keratin 39 Novel U 0.00022278983056988794 -0.26167444893872993 1.0 18389 +225638 Alpk2 alpha-kinase 2 Novel U 0.00022278446518348303 -0.26167450451322594 1.0 18390 +102642386 Gm6871 predicted gene 6871 Novel U 0.00022275194495972723 -0.2616748413566345 1.0 18391 +78217 Tmem210 transmembrane protein 210 Novel U 0.00022232420733090644 -0.26167927184893275 1.0 18392 +67739 Slc48a1 solute carrier family 48 (heme transporter), member 1 Novel U 0.0002222465377274218 -0.2616800763481324 1.0 18393 +16840 Cnmd chondromodulin Novel U 0.00022213605235169847 -0.2616812207520221 1.0 18394 +76718 Catsperg2 cation channel sperm associated auxiliary subunit gamma 2 Novel U 0.00022202601455537967 -0.26168236051989907 1.0 18395 +12350 Car3 carbonic anhydrase 3 Novel U 0.00022199479695493148 -0.2616826838707783 1.0 18396 +106582 Nrm nurim (nuclear envelope membrane protein) Novel U 0.00022197253654665267 -0.2616829144433555 1.0 18397 +71089 Septin12 septin 12 Novel N 0.0002219584923480178 -0.26168305991270324 1.0 18398 +240067 Zfp952 zinc finger protein 952 Novel U 0.0002218275353384002 -0.2616844163611039 1.0 18399 +319804 Glt1d1 glycosyltransferase 1 domain containing 1 Novel U 0.0002217949635611931 -0.2616847537385015 1.0 18400 +109065 Dnaaf2 dynein, axonemal assembly factor 2 Novel N 0.0002217909699211428 -0.26168479510449383 1.0 18401 +624860 Gm12253 predicted gene 12253 Novel U 0.00022169000155708093 -0.2616858409314896 1.0 18402 +236219 Tcstv3 2 cell stage variable group member 3 Novel U 0.0002216618217132087 -0.2616861328173861 1.0 18403 +21881 Tkt transketolase Novel U 0.00022165833883237086 -0.2616861688929513 1.0 18404 +101100 Ttll3 tubulin tyrosine ligase-like family, member 3 Novel N 0.00022162774092505315 -0.2616864858250695 1.0 18405 +12763 Cmah cytidine monophospho-N-acetylneuraminic acid hydroxylase Novel U 0.00022156562389446814 -0.2616871292312303 1.0 18406 +72605 Car10 carbonic anhydrase 10 Novel U 0.00022112956066041477 -0.2616916459598738 1.0 18407 +56640 Klk4 kallikrein related-peptidase 4 (prostase, enamel matrix, prostate) Novel N 0.00022112422132893096 -0.2616917012644938 1.0 18408 +243376 Aoc1l1 amine oxidase copper containing 1-like 1 Novel U 0.00022105831772757 -0.26169238389183025 1.0 18409 +613264 Cfap92 cilia and flagella associated protein 92 Novel U 0.00022104201541771668 -0.26169255275061976 1.0 18410 +100042840 H2al2b H2A histone family member L2B Novel U 0.00022086381068561894 -0.2616943985893767 1.0 18411 +213819 Casd1 CAS1 domain containing 1 Novel N 0.0002208029722397301 -0.26169502875199924 1.0 18412 +545912 Zscan4-ps1 zinc finger and SCAN domain containing 4, pseudogene 1 Novel U 0.00022057783639105533 -0.26169736070171884 1.0 18413 +17769 Mthfr methylenetetrahydrofolate reductase Novel U 0.00022031720564921317 -0.2617000603063751 1.0 18414 +18777 Lypla1 lysophospholipase 1 Novel N 0.00022028156401576407 -0.2617004294812427 1.0 18415 +20216 Acsm3 acyl-CoA synthetase medium-chain family member 3 Novel U 0.00022014650312294758 -0.2617018284375306 1.0 18416 +13434 Trdmt1 tRNA aspartic acid methyltransferase 1 Novel N 0.0002200677548473943 -0.2617026441095801 1.0 18417 +228889 Ddx27 DEAD box helicase 27 Novel U 0.00022002790890604719 -0.2617030568325307 1.0 18418 +272551 Gins2 GINS complex subunit 2 Novel U 0.00021999100992321497 -0.26170343903098187 1.0 18419 +80294 Pofut2 protein O-fucosyltransferase 2 Novel U 0.00021990031807993764 -0.2617043784141132 1.0 18420 +69263 Rfc3 replication factor C (activator 1) 3 Novel U 0.0002198362248269527 -0.2617050422899207 1.0 18421 +52874 Pum3 pumilio RNA-binding family member 3 Novel N 0.00021973823354814762 -0.2617060572803653 1.0 18422 +72303 Cyp2c65 cytochrome P450, family 2, subfamily c, polypeptide 65 Novel U 0.0002197324923612558 -0.26170611674739036 1.0 18423 +74134 Cyp2s1 cytochrome P450, family 2, subfamily s, polypeptide 1 Novel N 0.00021970901486034685 -0.261706359926573 1.0 18424 +67929 Ccdc70 coiled-coil domain containing 70 Novel U 0.00021965730671062793 -0.26170689551788795 1.0 18425 +71003 Prss41 serine protease 41 Novel U 0.00021964154889965814 -0.26170705873677597 1.0 18426 +24052 Sgcd sarcoglycan, delta (dystrophin-associated glycoprotein) Novel U 0.00021955767393806697 -0.2617079275108709 1.0 18427 +20639 Snrpb2 U2 small nuclear ribonucleoprotein B Novel N 0.00021951151357272773 -0.26170840563841763 1.0 18428 +74276 Cldnd2 claudin domain containing 2 Novel U 0.00021950979315894136 -0.26170842345840706 1.0 18429 +67652 Spaca1 sperm acrosome associated 1 Novel N 0.00021946958439778697 -0.26170883993943334 1.0 18430 +69307 Pxt1 peroxisomal, testis specific 1 Novel U 0.00021920920520579313 -0.2617115369385445 1.0 18431 +59033 Slc4a8 solute carrier family 4 (anion exchanger), member 8 Novel N 0.00021907033819285423 -0.2617129753184995 1.0 18432 +18379 Omt2a oocyte maturation, alpha Novel U 0.00021872171027962728 -0.26171658639496415 1.0 18433 +21376 Tbrg1 transforming growth factor beta regulated gene 1 Novel N 0.00021869032022199723 -0.2617169115321492 1.0 18434 +20731 Spink4 serine peptidase inhibitor, Kazal type 4 Novel U 0.0002186570180454528 -0.26171725647499916 1.0 18435 +69714 Tfpt TCF3 (E2A) fusion partner Novel N 0.00021859202553207153 -0.2617179296653162 1.0 18436 +74125 Armc8 armadillo repeat containing 8 Novel U 0.00021852520475917946 -0.26171862179268524 1.0 18437 +269994 Gsg1l GSG1-like Novel U 0.0002184255068937249 -0.2617196544598982 1.0 18438 +67211 Armc10 armadillo repeat containing 10 Novel U 0.00021837863876847583 -0.2617201399183988 1.0 18439 +104271 Tex15 testis expressed gene 15 meiosis and synapsis associated Novel U 0.00021825097049128387 -0.2617214623022171 1.0 18440 +114652 Ly6g5c lymphocyte antigen 6 family member G5C Novel U 0.00021816177208710137 -0.2617223862163554 1.0 18441 +66330 1700020L24Rik RIKEN cDNA 1700020L24 gene Novel U 0.00021803916499865634 -0.261723656176547 1.0 18442 +224440 Setd4 SET domain containing 4 Novel U 0.00021769956215108414 -0.2617271737716783 1.0 18443 +74052 Ttc21a tetratricopeptide repeat domain 21A Novel N 0.00021757986128090304 -0.2617284136293567 1.0 18444 +100041230 H4c17 H4 clustered histone 17 Novel U 0.00021754054567291287 -0.26172882085913185 1.0 18445 +15417 Hoxb9 homeobox B9 Novel U 0.00021749267468598938 -0.2617293167052407 1.0 18446 +16548 Khk ketohexokinase Novel N 0.00021734906945080517 -0.261730804163546 1.0 18447 +66220 Zdhhc12 zinc finger, DHHC domain containing 12 Novel U 0.0002173281561412998 -0.2617310207829183 1.0 18448 +218865 Chdh choline dehydrogenase Novel N 0.0002173201960828482 -0.26173110323294213 1.0 18449 +69786 Tprkb Tp53rk binding protein Novel U 0.00021725100816128828 -0.2617318198791592 1.0 18450 +104245 Slc6a5 solute carrier family 6 (neurotransmitter transporter, glycine), member 5 Novel U 0.0002172174526570322 -0.2617321674459692 1.0 18451 +20503 Slc16a7 solute carrier family 16 (monocarboxylic acid transporters), member 7 Novel N 0.0002169730522584592 -0.26173469893726337 1.0 18452 +218103 Slc17a2 solute carrier family 17 (sodium phosphate), member 2 Novel N 0.0002169454358863159 -0.2617349849867382 1.0 18453 +72043 Sulf2 sulfatase 2 Novel U 0.0002169061657618357 -0.2617353917453967 1.0 18454 +102636051 Tmem274 transmembrame protein 274 Novel U 0.00021667261850949801 -0.2617378108201589 1.0 18455 +100039319 H2ab1 H2A.B variant histone 1 Novel U 0.00021666609138309997 -0.26173787842791957 1.0 18456 +75475 Oplah 5-oxoprolinase (ATP-hydrolysing) Novel N 0.00021663381609180645 -0.2617382127343258 1.0 18457 +433099 Ly6g6f lymphocyte antigen 6 family member G6F Novel U 0.00021622762133014623 -0.26174242008631415 1.0 18458 +15414 Hoxb6 homeobox B6 Novel U 0.00021616071822842077 -0.2617431130664425 1.0 18459 +66659 Acp6 acid phosphatase 6, lysophosphatidic Novel U 0.00021598427431483027 -0.2617449406666992 1.0 18460 +100862075 Gm21454 predicted gene, 21454 Novel U 0.00021586741030839364 -0.2617461511402362 1.0 18461 +73732 Muc16 mucin 16 Novel U 0.00021585196480897065 -0.26174631112421143 1.0 18462 +246048 Chodl chondrolectin Novel U 0.0002155632266415649 -0.26174930186465767 1.0 18463 +102570 Slc22a13 solute carrier family 22 (organic cation transporter), member 13 Novel U 0.00021547766494288862 -0.2617501881099199 1.0 18464 +104184 Blmh bleomycin hydrolase Novel U 0.00021544371989591036 -0.2617505397116006 1.0 18465 +18045 Nfyb nuclear transcription factor-Y beta Novel N 0.00021510066572915678 -0.26175409305538255 1.0 18466 +382245 Vcf2 VCP nuclear cofactor family member 2 Novel U 0.0002147834179037126 -0.2617573790979295 1.0 18467 +75659 Wdr54 WD repeat domain 54 Novel U 0.00021459636864246652 -0.2617593165480286 1.0 18468 +53315 Sult1d1 sulfotransferase family 1D, member 1 Novel U 0.00021455645357399658 -0.2617597299869957 1.0 18469 +74087 Slc7a13 solute carrier family 7, (cationic amino acid transporter, y+ system) member 13 Novel U 0.00021448419733193302 -0.2617604784147757 1.0 18470 +16371 Irx1 Iroquois homeobox 1 Novel N 0.00021431323470707186 -0.2617622492400239 1.0 18471 +68662 Scgb3a1 secretoglobin, family 3A, member 1 Novel U 0.00021417863519970767 -0.26176364341729647 1.0 18472 +76507 Aoc1 amine oxidase, copper-containing 1 Novel U 0.00021402356975491795 -0.2617652495800761 1.0 18473 +71776 Tha1 threonine aldolase 1 Novel U 0.00021402202744361942 -0.26176526555528584 1.0 18474 +545739 Gm5862 predicted gene 5862 Novel U 0.00021401334086312054 -0.26176535553060104 1.0 18475 +225131 Wac WW domain containing adaptor with coiled-coil Novel U 0.00021378624204683927 -0.2617677078126746 1.0 18476 +68195 Rnaset2b ribonuclease T2B Novel U 0.00021377544030204624 -0.2617678196967921 1.0 18477 +217847 Serpina10 serine (or cysteine) peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 10 Novel N 0.00021358884472312667 -0.26176975244766454 1.0 18478 +233073 U2af1l4 U2 small nuclear RNA auxiliary factor 1-like 4 Novel U 0.0002134721469100526 -0.2617709611997761 1.0 18479 +100862085 Gm16867 predicted gene, 16867 Novel U 0.00021347105027269583 -0.26177097255870985 1.0 18480 +102644 Oaf out at first homolog Novel U 0.00021333889036689567 -0.2617723414666696 1.0 18481 +100312477 Vmn1r184 vomeronasal 1 receptor, 184 Novel U 0.00021320629301314862 -0.2617737149057008 1.0 18482 +228787 Xkr7 X-linked Kx blood group related 7 Novel U 0.00021318683812421486 -0.2617739164188008 1.0 18483 +68723 Hrnr hornerin Novel U 0.00021317448748630038 -0.2617740443463023 1.0 18484 +224694 Zfp81 zinc finger protein 81 Novel U 0.0002130750349501075 -0.2617750744724029 1.0 18485 +210027 Slc35f3 solute carrier family 35, member F3 Novel N 0.00021297776648709888 -0.2617760819759452 1.0 18486 +13849 Ephx1 epoxide hydrolase 1, microsomal Novel N 0.0002129057393286802 -0.2617768280308843 1.0 18487 +329504 Lcmt2 leucine carboxyl methyltransferase 2 Novel N 0.00021279943660312204 -0.26177792911102116 1.0 18488 +625098 Slc38a6 solute carrier family 38, member 6 Novel U 0.00021279063448767619 -0.2617780202830436 1.0 18489 +227731 Slc25a25 solute carrier family 25 (mitochondrial carrier, phosphate carrier), member 25 Novel U 0.00021276650970105537 -0.26177827016679034 1.0 18490 +14187 Akr1b8 aldo-keto reductase family 1, member B8 Novel U 0.00021275965921514493 -0.26177834112389825 1.0 18491 +619289 Rfx8 regulatory factor X 8 Novel U 0.00021274099937841027 -0.2617785344018737 1.0 18492 +434769 Rhox10 reproductive homeobox 10 Novel U 0.0002127125987338019 -0.26177882857481694 1.0 18493 +226178 Wbp1l WW domain binding protein 1 like Novel U 0.00021256744032786462 -0.2617803321208138 1.0 18494 +268595 D430019H16Rik RIKEN cDNA D430019H16 gene Novel U 0.00021248840471577526 -0.2617811507690857 1.0 18495 +67920 Mak16 MAK16 homolog Novel U 0.00021245813289735304 -0.2617814643235858 1.0 18496 +640543 Tgm7 transglutaminase 7 Novel U 0.00021234845126883695 -0.26178260040228835 1.0 18497 +210172 Zfp526 zinc finger protein 526 Novel U 0.00021224449655149797 -0.2617836771618332 1.0 18498 +69036 Zg16 zymogen granule protein 16 Novel U 0.00021218311275435607 -0.2617843129731861 1.0 18499 +12950 Hapln1 hyaluronan and proteoglycan link protein 1 Novel U 0.00021202953465081854 -0.26178590373013394 1.0 18500 +72341 Elp6 elongator acetyltransferase complex subunit 6 Novel U 0.0002119812774591843 -0.26178640357653854 1.0 18501 +433619 Kprp keratinocyte expressed, proline-rich Novel U 0.00021193318379010567 -0.26178690172918184 1.0 18502 +53973 Cyp3a41a cytochrome P450, family 3, subfamily a, polypeptide 41A Novel U 0.00021178286630752738 -0.261788458712725 1.0 18503 +70129 Slc44a4 solute carrier family 44, member 4 Novel U 0.00021154802417650356 -0.2617908911997981 1.0 18504 +232816 Zfp628 zinc finger protein 628 Novel U 0.0002114707456117451 -0.2617916916486315 1.0 18505 +234362 Zfp868 zinc finger protein 868 Novel U 0.0002114590227260727 -0.26179181307389593 1.0 18506 +21853 Timeless timeless circadian clock 1 Novel N 0.00021135504415333107 -0.26179289008053425 1.0 18507 +224022 Slc7a4 solute carrier family 7 (cationic amino acid transporter, y+ system), member 4 Novel U 0.0002111512900934515 -0.26179500055838845 1.0 18508 +225160 Thoc1 THO complex 1 Novel U 0.0002111314955249693 -0.26179520558987807 1.0 18509 +68910 Zfp467 zinc finger protein 467 Novel U 0.00021112748069565656 -0.26179524717534813 1.0 18510 +72895 Setd5 SET domain containing 5 Novel U 0.00021109006185895856 -0.26179563475842854 1.0 18511 +106878 Smim3 small integral membrane protein 3 Novel U 0.00021108437839734343 -0.26179569362753713 1.0 18512 +319152 H3c10 H3 clustered histone 10 Novel U 0.00021093842291771428 -0.26179720542959706 1.0 18513 +383295 Ypel5 yippee like 5 Novel U 0.00021079315246631195 -0.2617987101361572 1.0 18514 +83554 Fstl3 follistatin-like 3 Novel U 0.0002107913127492379 -0.2617987291918862 1.0 18515 +71147 Oxsm 3-oxoacyl-ACP synthase, mitochondrial Novel N 0.00021078494766423614 -0.2617987951212274 1.0 18516 +108888 Atad3a ATPase family, AAA domain containing 3A Novel U 0.00021076757787961474 -0.2617989750368855 1.0 18517 +106931 Kctd1 potassium channel tetramerisation domain containing 1 Novel U 0.00021076401634196427 -0.2617990119271754 1.0 18518 +54351 Elp5 elongator acetyltransferase complex subunit 5 Novel U 0.00021071963977952404 -0.26179947157815037 1.0 18519 +100416477 Zfp582 zinc finger protein 582 Novel U 0.00021066485696695159 -0.2618000390167221 1.0 18520 +74414 Polr3c polymerase (RNA) III (DNA directed) polypeptide C Novel U 0.00021065834152202267 -0.2618001065034865 1.0 18521 +320145 Sp8 trans-acting transcription factor 8 Novel U 0.00021063561156157404 -0.2618003419396696 1.0 18522 +66073 Txndc12 thioredoxin domain containing 12 (endoplasmic reticulum) Novel N 0.00021060168200646003 -0.26180069338088613 1.0 18523 +434377 Zfp560 zinc finger protein 560 Novel U 0.00021057682995116015 -0.2618009507976579 1.0 18524 +545934 Vmn1r173 vomeronasal 1 receptor 173 Novel U 0.0002104669472650576 -0.2618020889589084 1.0 18525 +229801 Tram1l1 translocation associated membrane protein 1-like 1 Novel U 0.0002102537737499909 -0.2618042970031697 1.0 18526 +69865 A1cf APOBEC1 complementation factor Novel N 0.0002102306567349095 -0.26180453644845203 1.0 18527 +223732 Rtl6 retrotransposon Gag like 6 Novel U 0.00021022467725698878 -0.26180459838368775 1.0 18528 +192285 Phf21a PHD finger protein 21A Novel U 0.00021010280157480614 -0.26180586076799733 1.0 18529 +268564 Zbtb1 zinc finger and BTB domain containing 1 Novel U 0.0002100186438587082 -0.2618067324708542 1.0 18530 +71979 Prr23a3 proline rich 23A, member 3 Novel U 0.00020999803454698477 -0.2618069459414275 1.0 18531 +317755 Zar1 zygote arrest 1 Novel U 0.0002099683648819009 -0.26180725325884313 1.0 18532 +244757 Glb1l2 galactosidase, beta 1-like 2 Novel U 0.00020996334423032195 -0.2618073052625871 1.0 18533 +330428 Tmem52b transmembrane protein 52B Novel U 0.00020973053126642396 -0.26180971673161385 1.0 18534 +20670 Sox15 SRY (sex determining region Y)-box 15 Novel N 0.0002095932951179151 -0.2618111382191287 1.0 18535 +227622 Paxx non-homologous end joining factor Novel N 0.00020955302323876708 -0.2618115553539291 1.0 18536 +12417 Cbx3 chromobox 3 Novel U 0.0002095116174817683 -0.2618119842333989 1.0 18537 +67663 Tex46 testis expressed 46 Novel U 0.0002093718064744978 -0.2618134323912162 1.0 18538 +210510 Tdrd6 tudor domain containing 6 Novel U 0.00020926777393530775 -0.26181450995683725 1.0 18539 +66720 Klhl10 kelch-like 10 Novel N 0.00020884694372658397 -0.26181886890230516 1.0 18540 +83962 Btbd1 BTB domain containing 1 Novel U 0.00020883054278685509 -0.26181903878269974 1.0 18541 +627214 Insyn2a inhibitory synaptic factor 2A Novel U 0.00020881223502806318 -0.26181922841386346 1.0 18542 +105247282 Gm20824 predicted gene, 20824 Novel U 0.00020863331655468045 -0.2618210816455291 1.0 18543 +67036 Mrpl45 mitochondrial ribosomal protein L45 Novel U 0.00020852464108415858 -0.26182220730248024 1.0 18544 +70186 Fam162a family with sequence similarity 162, member A Novel N 0.00020844813234587603 -0.2618229997774763 1.0 18545 +13088 Cyp2b10 cytochrome P450, family 2, subfamily b, polypeptide 10 Novel U 0.00020833086879344583 -0.26182421438949754 1.0 18546 +100041096 Iqcf6 IQ motif containing F6 Novel U 0.0002082856361793057 -0.26182468290742783 1.0 18547 +208169 Slc9c1 solute carrier family 9, subfamily C (Na+-transporting carboxylic acid decarboxylase), member 1 Novel U 0.00020819801356513598 -0.261825590499585 1.0 18548 +17450 Morc1 microrchidia 1 Novel U 0.00020810897393452668 -0.2618265127691518 1.0 18549 +326619 H4c1 H4 clustered histone 1 Novel U 0.00020797462493652816 -0.2618279043516566 1.0 18550 +329984 Pramel16 PRAME like 16 Novel U 0.00020754054845428333 -0.2618324005015902 1.0 18551 +434440 Fbxw20 F-box and WD-40 domain protein 20 Novel U 0.00020750940967589494 -0.2618327230360331 1.0 18552 +15450 Lipc lipase, hepatic Novel U 0.00020746676299281965 -0.2618331647689745 1.0 18553 +207740 Ubald1 UBA-like domain containing 1 Novel U 0.00020745070505757068 -0.26183333109653995 1.0 18554 +73713 Rbm20 RNA binding motif protein 20 Novel U 0.00020723808753039734 -0.2618355333818969 1.0 18555 +66617 Ntmt1 N-terminal Xaa-Pro-Lys N-methyltransferase 1 Novel U 0.00020723551529551937 -0.2618355600250213 1.0 18556 +233879 Asphd1 aspartate beta-hydroxylase domain containing 1 Novel U 0.0002072288016701029 -0.2618356295645326 1.0 18557 +64335 Svs3a seminal vesicle secretory protein 3A Novel U 0.00020712999121785843 -0.26183665303994874 1.0 18558 +553127 Rtl8b retrotransposon Gag like 8B Novel U 0.000207125745892887 -0.26183669701288526 1.0 18559 +100037283 Rnaset2a ribonuclease T2A Novel U 0.00020698740175073078 -0.2618381299769619 1.0 18560 +76261 0610040J01Rik RIKEN cDNA 0610040J01 gene Novel U 0.0002069383810459775 -0.26183863773181026 1.0 18561 +12896 Cpt2 carnitine palmitoyltransferase 2 Novel U 0.00020663174834760508 -0.26184181382321997 1.0 18562 +68460 Dhrs7c dehydrogenase/reductase 7C Novel U 0.00020661463509195262 -0.2618419910817595 1.0 18563 +12299 Cacng1 calcium channel, voltage-dependent, gamma subunit 1 Novel U 0.00020646633798864365 -0.2618435271382805 1.0 18564 +319848 Slc17a4 solute carrier family 17 (sodium phosphate), member 4 Novel N 0.00020642536312083062 -0.2618439515546144 1.0 18565 +13142 Dao D-amino acid oxidase Novel U 0.000206389006667097 -0.26184432813356695 1.0 18566 +104080 Nxph4 neurexophilin 4 Novel U 0.000206313105874935 -0.2618451143114771 1.0 18567 +21761 Morf4l1 mortality factor 4 like 1 Novel U 0.00020623694890094035 -0.26184590314291023 1.0 18568 +14397 Gabra4 gamma-aminobutyric acid type A receptor subunit alpha 4 Novel N 0.00020619763745103573 -0.261846310329616 1.0 18569 +68980 Wdr53 WD repeat domain 53 Novel U 0.000206164082406294 -0.2618466578916664 1.0 18570 +71166 4933424G06Rik RIKEN cDNA 4933424G06 gene Novel U 0.00020598838068523566 -0.26184847780431725 1.0 18571 +66873 Tril TLR4 interactor with leucine-rich repeats Novel U 0.00020574776101437873 -0.261850970134958 1.0 18572 +380664 Lemd3 LEM domain containing 3 Novel U 0.00020551414821042092 -0.2618533898887018 1.0 18573 +66131 Tipin timeless interacting protein Novel N 0.00020548250615245485 -0.26185371763609805 1.0 18574 +232187 Smyd5 SET and MYND domain containing 5 Novel N 0.00020546371966000622 -0.26185391222596927 1.0 18575 +23966 Tenm4 teneurin transmembrane protein 4 Novel N 0.00020537913815891234 -0.2618547883183771 1.0 18576 +53324 Nptx2 neuronal pentraxin 2 Novel U 0.000205265045748307 -0.26185597008381556 1.0 18577 +236366 5730507C01Rik RIKEN cDNA 5730507C01 gene Novel U 0.00020519817109746397 -0.2618566627692506 1.0 18578 +399568 Cdin1 CDAN1 interacting nuclease 1 Novel N 0.0002051302093109859 -0.2618573667152008 1.0 18579 +52710 Slc52a2 solute carrier protein 52, member 2 Novel U 0.00020504373921795442 -0.26185826236958193 1.0 18580 +19139 Prps1 phosphoribosyl pyrophosphate synthetase 1 Novel U 0.000204894811310671 -0.2618598049599498 1.0 18581 +14625 Gykl1 glycerol kinase-like 1 Novel U 0.00020477860539029323 -0.261861008617053 1.0 18582 +74577 Glb1l galactosidase, beta 1-like Novel U 0.00020437645507339505 -0.2618651740768155 1.0 18583 +629219 Sult2a6 sulfotransferase family 2A, dehydroepiandrosterone (DHEA)-preferring, member 6 Novel U 0.0002041960996595314 -0.2618670421922634 1.0 18584 +54427 Dnmt3l DNA methyltransferase 3-like Novel N 0.00020419496747756748 -0.261867053919367 1.0 18585 +665622 H2bc24 H2B clustered histone 24 Novel U 0.00020400447932547813 -0.26186902698938436 1.0 18586 +71827 Lrrc34 leucine rich repeat containing 34 Novel U 0.0002038443230011471 -0.2618706858833269 1.0 18587 +69944 2810021J22Rik RIKEN cDNA 2810021J22 gene Novel U 0.0002038167317077924 -0.26187097167303647 1.0 18588 +71863 Tex44 testis expressed 44 Novel U 0.00020380895723096201 -0.2618710522008119 1.0 18589 +67441 Isoc2b isochorismatase domain containing 2b Novel U 0.00020361909695004618 -0.2618730187673603 1.0 18590 +594844 Tceal3 transcription elongation factor A (SII)-like 3 Novel U 0.0002035598141146509 -0.26187363281702053 1.0 18591 +60532 Wtap WT1 associating protein Novel N 0.00020325718978864314 -0.2618767673898411 1.0 18592 +64339 Fndc4 fibronectin type III domain containing 4 Novel U 0.0002031378833596339 -0.26187800316191073 1.0 18593 +67467 Gpalpp1 GPALPP motifs containing 1 Novel U 0.00020302169311329016 -0.26187920665666287 1.0 18594 +80797 Clca3a2 chloride channel accessory 3A2 Novel U 0.0002028694871449716 -0.26188078320107916 1.0 18595 +235067 Cypt4 cysteine-rich perinuclear theca 4 Novel U 0.00020282251668601758 -0.26188126971954895 1.0 18596 +666704 Samd1 sterile alpha motif domain containing 1 Novel U 0.00020281449733604791 -0.26188135278371233 1.0 18597 +104384 Rhox9 reproductive homeobox 9 Novel U 0.00020280000036351412 -0.26188150294287726 1.0 18598 +68281 Rlig1 RNA 5'-phosphate and 3'-OH ligase 1 Novel N 0.0002027214652711173 -0.2618823164067826 1.0 18599 +107684 Coro2a coronin, actin binding protein 2A Novel N 0.00020270971856817008 -0.2618824380787456 1.0 18600 +74150 Slc35f5 solute carrier family 35, member F5 Novel U 0.0002027017658725102 -0.2618825204525058 1.0 18601 +71963 Cdca4 cell division cycle associated 4 Novel U 0.00020267400287794077 -0.2618828080206909 1.0 18602 +66742 Cypt1 cysteine-rich perinuclear theca 1 Novel U 0.00020263459397509457 -0.26188321621681104 1.0 18603 +75775 4930402K13Rik RIKEN cDNA 4930402K13 gene Novel U 0.00020249897704411663 -0.26188462093252396 1.0 18604 +22381 Tceal9 transcription elongation factor A like 9 Novel U 0.00020236277492408433 -0.2618860317096059 1.0 18605 +240590 Dmrt3 doublesex and mab-3 related transcription factor 3 Novel U 0.00020235433856584522 -0.2618861190931272 1.0 18606 +675812 Zfp605 zinc finger protein 605 Novel U 0.0002022454455796412 -0.2618872470030986 1.0 18607 +381549 Zfp69 zinc finger protein 69 Novel U 0.00020193226706051088 -0.2618904908959046 1.0 18608 +56695 Pnkd paroxysmal nonkinesiogenic dyskinesia Novel U 0.00020191968171001787 -0.26189062125455126 1.0 18609 +215693 Zmat1 zinc finger, matrin type 1 Novel U 0.00020189032072092983 -0.26189092537471104 1.0 18610 +100041658 Mup7 major urinary protein 7 Novel U 0.00020184935351967259 -0.26189134971163497 1.0 18611 +434863 Gm15128 predicted gene 15128 Novel U 0.00020179528217013494 -0.26189190978089594 1.0 18612 +319160 H4c12 H4 clustered histone 12 Novel U 0.0002016449983669582 -0.2618934664155889 1.0 18613 +77652 Zfp955a zinc finger protein 955A Novel U 0.00020163297416173713 -0.26189359096191134 1.0 18614 +72023 Cyb561d1 cytochrome b-561 domain containing 1 Novel U 0.00020160350926436138 -0.2618938961583498 1.0 18615 +246293 Klhl8 kelch-like 8 Novel U 0.00020136095420669048 -0.26189640853566354 1.0 18616 +11947 Atp5f1b ATP synthase F1 subunit beta Novel U 0.00020130036215898985 -0.26189703614610177 1.0 18617 +77220 Tmem200a transmembrane protein 200A Novel U 0.00020125455749586937 -0.2618975105892966 1.0 18618 +69318 Fam24b family with sequence similarity 24 member B Novel U 0.00020122812531826745 -0.2618977843729233 1.0 18619 +13090 Cyp2b19 cytochrome P450, family 2, subfamily b, polypeptide 19 Novel U 0.00020098517096900877 -0.2619003008860863 1.0 18620 +100039028 Mup11 major urinary protein 11 Novel U 0.00020098080530468564 -0.26190034610549384 1.0 18621 +74127 Krt80 keratin 80 Novel U 0.00020097599199680354 -0.2619003959615786 1.0 18622 +66912 Bzw2 basic leucine zipper and W2 domains 2 Novel N 0.00020081029434033352 -0.2619021122524573 1.0 18623 +226518 Nmnat2 nicotinamide nucleotide adenylyltransferase 2 Novel N 0.0002007268200376469 -0.26190297687654046 1.0 18624 +71149 Tex52 testis expressed 52 Novel U 0.0002007234479539881 -0.2619030118044721 1.0 18625 +69398 Cdhr4 cadherin-related family member 4 Novel U 0.00020065874600500304 -0.26190368198513275 1.0 18626 +76246 Rtf1 RTF1, Paf1/RNA polymerase II complex component Novel N 0.00020065425224132172 -0.26190372853138927 1.0 18627 +68725 1110032F04Rik RIKEN cDNA 1110032F04 gene Novel U 0.00020051024361583198 -0.26190522016799805 1.0 18628 +71991 Ercc8 excision repaiross-complementing rodent repair deficiency, complementation group 8 Novel U 0.0002005029843451543 -0.2619052953592851 1.0 18629 +23924 Katna1 katanin p60 (ATPase-containing) subunit A1 Novel N 0.00020046138717916674 -0.261905726221363 1.0 18630 +18988 Pou2f3 POU domain, class 2, transcription factor 3 Novel U 0.00020026601484118527 -0.26190774988161725 1.0 18631 +18975 Polg polymerase (DNA directed), gamma Novel U 0.0002002515289595651 -0.2619078999259029 1.0 18632 +70882 Armc3 armadillo repeat containing 3 Novel U 0.00020000019568639673 -0.2619105032276842 1.0 18633 +66231 Thoc7 THO complex 7 Novel N 0.0001999088127103782 -0.2619114497695458 1.0 18634 +384569 Nova2 NOVA alternative splicing regulator 2 Novel U 0.0001997439853303827 -0.2619131570461294 1.0 18635 +227618 Lrrc26 leucine rich repeat containing 26 Novel N 0.00019968080086820114 -0.26191381150871157 1.0 18636 +66090 Ypel3 yippee like 3 Novel N 0.00019951507999901836 -0.26191552804002677 1.0 18637 +75823 Fam227b family with sequence similarity 227, member B Novel U 0.0001994795124451831 -0.2619158964475802 1.0 18638 +71578 Sval1 seminal vesicle antigen-like 1 Novel U 0.0001994710326100438 -0.2619159842814338 1.0 18639 +58866 Treh trehalase (brush-border membrane glycoprotein) Novel N 0.00019924974726177045 -0.26191827634779685 1.0 18640 +100216455 Zfp1005 zinc finger protein 1005 Novel U 0.00019891964048065756 -0.26192169558298395 1.0 18641 +30944 Zfp354c zinc finger protein 354C Novel U 0.00019891127531130646 -0.2619217822291331 1.0 18642 +72745 Tmem161b transmembrane protein 161B Novel U 0.00019881391264789323 -0.2619227907084001 1.0 18643 +216974 Proca1 protein interacting with cyclin A1 Novel U 0.0001986979978759083 -0.2619239913497978 1.0 18644 +72973 Fbxo47 F-box protein 47 Novel U 0.00019868599366384078 -0.2619241156890318 1.0 18645 +14957 H1f3 H1.3 linker histone, cluster member Novel U 0.0001985844594032958 -0.26192516737756477 1.0 18646 +223646 Naprt nicotinate phosphoribosyltransferase Novel N 0.00019856873907301244 -0.26192533020822906 1.0 18647 +57354 Cramp1 cramped chromatin regulator 1 Novel U 0.00019853258254735347 -0.26192570471633325 1.0 18648 +73388 Bpifa3 BPI fold containing family A, member 3 Novel U 0.00019828476659637523 -0.26192827158580695 1.0 18649 +665574 Gm7694 predicted gene 7694 Novel U 0.00019827232922121966 -0.26192840041173 1.0 18650 +71890 Mad2l2 MAD2 mitotic arrest deficient-like 2 Novel U 0.00019817954863459122 -0.2619293614299963 1.0 18651 +22262 Uox urate oxidase Novel U 0.0001981214162716578 -0.26192996356310055 1.0 18652 +382427 Best3 bestrophin 3 Novel U 0.00019807883995289887 -0.2619304045672106 1.0 18653 +70153 Qng1 Q-nucleotide N-glycosylase 1 Novel N 0.00019803731729187786 -0.2619308346575685 1.0 18654 +70062 Ctag2 cancer/testis antigen 2 Novel U 0.0001978969679446396 -0.26193228839149346 1.0 18655 +270599 Ct45a cancer/testis antigen 45 Novel U 0.00019785982026934192 -0.261932673165893 1.0 18656 +268465 Eme1 essential meiotic structure-specific endonuclease 1 Novel N 0.0001978271262503692 -0.2619330118094668 1.0 18657 +381072 Abca17 ATP-binding cassette, sub-family A member 17 Novel U 0.00019781788897659 -0.26193310748884496 1.0 18658 +71412 Dhrs2 dehydrogenase/reductase member 2 Novel N 0.00019772457028535706 -0.26193407408078107 1.0 18659 +100862066 Cfap99 cilia and flagella associated protein 99 Novel U 0.00019762348322463496 -0.26193512113723294 1.0 18660 +13505 Dsc1 desmocollin 1 Novel U 0.00019752276100879209 -0.2619361644146336 1.0 18661 +381572 Aadacl4fm1 AADACL4 family member 1 Novel U 0.0001975180314404872 -0.2619362134033466 1.0 18662 +241612 Slc5a12 solute carrier family 5 (sodium/glucose cotransporter), member 12 Novel N 0.00019741565286887487 -0.2619372738372258 1.0 18663 +791260 Tomt transmembrane O-methyltransferase Novel U 0.00019726560611693417 -0.26193882801654994 1.0 18664 +11704 Amelx amelogenin, X-linked Novel N 0.0001969875328391401 -0.2619417082904202 1.0 18665 +76413 Spaca7b sperm acrosome associated 7B Novel U 0.00019691648623807346 -0.2619424441887785 1.0 18666 +213393 Depp1 DEPP1 autophagy regulator Novel N 0.00019681899869601965 -0.26194345396153434 1.0 18667 +211064 Alkbh1 alkB homolog 1, histone H2A dioxygenase Novel U 0.00019669599768825537 -0.2619447280019293 1.0 18668 +17771 Tesmin testis expressed metallothionein like Novel U 0.00019662704327328998 -0.2619454422294928 1.0 18669 +83674 Cnnm1 cyclin M1 Novel U 0.0001963591065931974 -0.26194821750881725 1.0 18670 +242109 Zfp697 zinc finger protein 697 Novel U 0.0001962797675688108 -0.2619490392998237 1.0 18671 +54397 Ppt2 palmitoyl-protein thioesterase 2 Novel N 0.00019599565154853005 -0.26195198216422194 1.0 18672 +11987 Slc7a1 solute carrier family 7 (cationic amino acid transporter, y+ system), member 1 Novel U 0.00019596837180329118 -0.2619522647269264 1.0 18673 +100039150 Mup15 major urinary protein 15 Novel U 0.0001959182093333352 -0.2619527843081412 1.0 18674 +246079 Defb9 defensin beta 9 Novel U 0.00019584508035637167 -0.2619535417756806 1.0 18675 +435615 Alyreffm3 Aly/REF export factor family member 3 Novel U 0.00019584367146879895 -0.2619535563688917 1.0 18676 +320587 Tmem88b transmembrane protein 88B Novel U 0.0001958404354168061 -0.2619535898878119 1.0 18677 +13094 Cyp2b9 cytochrome P450, family 2, subfamily b, polypeptide 9 Novel U 0.00019583419240691555 -0.26195365455270314 1.0 18678 +545817 Cyp2w1 cytochrome P450, family 2, subfamily w, polypeptide 1 Novel N 0.0001957343921169305 -0.261954688280826 1.0 18679 +70031 Cmtm8 CKLF-like MARVEL transmembrane domain containing 8 Novel U 0.00019568024252994266 -0.261955249160468 1.0 18680 +171281 Acot3 acyl-CoA thioesterase 3 Novel U 0.0001955819956443661 -0.2619562667984791 1.0 18681 +68140 Tigd2 tigger transposable element derived 2 Novel U 0.00019549492196309484 -0.2619571687048073 1.0 18682 +15425 Hoxc6 homeobox C6 Novel U 0.00019546074978839755 -0.26195752265906946 1.0 18683 +100039913 Rhox2b reproductive homeobox 2B Novel U 0.00019544930637669107 -0.2619576411895517 1.0 18684 +100041979 Gm3604 predicted gene 3604 Novel U 0.00019540785943815552 -0.2619580704955786 1.0 18685 +110084 Dnah1 dynein, axonemal, heavy chain 1 Novel U 0.00019539752585589858 -0.26195817753048395 1.0 18686 +211347 Pank3 pantothenate kinase 3 Novel N 0.0001953141106242166 -0.26195904154271155 1.0 18687 +68947 Chst8 carbohydrate sulfotransferase 8 Novel N 0.0001953007732688078 -0.2619591796906004 1.0 18688 +213011 Zfp583 zinc finger protein 583 Novel U 0.00019510623934921933 -0.2619611946665446 1.0 18689 +384281 Gatc glutamyl-tRNA amidotransferase subunit C Novel N 0.0001950508380524322 -0.2619617685113555 1.0 18690 +17144 Magea8 MAGE family member A8 Novel U 0.00019496431154044345 -0.2619626647501222 1.0 18691 +20231 Nkx1-2 NK1 homeobox 2 Novel U 0.00019492826908671136 -0.26196303807667315 1.0 18692 +100041687 Mup8 major urinary protein 8 Novel U 0.00019490844049342568 -0.2619632434605906 1.0 18693 +320394 Cenpt centromere protein T Novel U 0.00019489044403166753 -0.2619634298673499 1.0 18694 +103406 Zfr2 zinc finger RNA binding protein 2 Novel U 0.00019486899598412523 -0.26196365202552124 1.0 18695 +12348 Car11 carbonic anhydrase 11 Novel U 0.00019478451478317454 -0.2619645270790235 1.0 18696 +75019 Rnase10 ribonuclease, RNase A family, 10 (non-active) Novel U 0.00019475009660330835 -0.26196488358139913 1.0 18697 +27355 Pald1 phosphatase domain containing, paladin 1 Novel U 0.00019467692458659955 -0.26196564149474283 1.0 18698 +20765 Sprr2k small proline-rich protein 2K Novel U 0.00019465987820086687 -0.2619658180606459 1.0 18699 +620695 Gm13889 predicted gene 13889 Novel U 0.00019456114405154556 -0.26196684074571885 1.0 18700 +670593 Potefam3c POTE ankyrin domain family member 3C Novel U 0.00019448212203280283 -0.26196765925319127 1.0 18701 +621603 Aldh3b2 aldehyde dehydrogenase 3 family, member B2 Novel U 0.00019435644657612945 -0.2619689609954401 1.0 18702 +78803 Fbxo43 F-box protein 43 Novel N 0.00019427696736888056 -0.26196978423845607 1.0 18703 +100271704 Scpppq1 secretory calcium-binding phosphoprotein proline-glutamine rich 1 Novel U 0.0001942331727001381 -0.26197023786219525 1.0 18704 +192201 Wfdc15b WAP four-disulfide core domain 15B Novel U 0.00019409810086188487 -0.2619716369318556 1.0 18705 +230936 Phf13 PHD finger protein 13 Novel U 0.00019407566492864482 -0.26197186932251454 1.0 18706 +23808 Ash2l ASH2 like histone lysine methyltransferase complex subunit Novel N 0.00019403873235011282 -0.2619722518689489 1.0 18707 +68371 Pbld1 phenazine biosynthesis-like protein domain containing 1 Novel U 0.00019395237100085583 -0.26197314639696556 1.0 18708 +18997 Pou4f2 POU domain, class 4, transcription factor 2 Novel U 0.00019382489917666988 -0.26197446674593006 1.0 18709 +194655 Klf11 Kruppel-like transcription factor 11 Novel U 0.00019382041652612296 -0.26197451317707704 1.0 18710 +231769 Sfswap splicing factor SWAP Novel U 0.0001937216779656802 -0.26197553590784023 1.0 18711 +68709 Cilp2 cartilage intermediate layer protein 2 Novel U 0.00019359240400190737 -0.26197687492330735 1.0 18712 +67646 4930522H14Rik RIKEN cDNA 4930522H14 gene Novel U 0.00019343202080958634 -0.2619785361671411 1.0 18713 +74978 Lrriq1 leucine-rich repeats and IQ motif containing 1 Novel U 0.00019342246120673289 -0.2619786351851932 1.0 18714 +240514 Ccdc85b coiled-coil domain containing 85B Novel N 0.00019341232643053935 -0.26197874016087186 1.0 18715 +70967 Eva1c eva-1 homolog C Novel U 0.0001933758094783132 -0.26197911840226257 1.0 18716 +242037 Ankub1 ankyrin repeat and ubiquitin domain containing 1 Novel U 0.00019334389511485432 -0.26197944897019015 1.0 18717 +57785 Rangrf RAN guanine nucleotide release factor Novel U 0.0001930246034687093 -0.2619827561825648 1.0 18718 +67968 Ooep oocyte expressed protein Novel U 0.00019280571856505687 -0.2619850233852014 1.0 18719 +71597 Isx intestine specific homeobox Novel U 0.00019280571005233336 -0.2619850234733759 1.0 18720 +70422 Ints2 integrator complex subunit 2 Novel N 0.0001927947727182626 -0.26198513676192264 1.0 18721 +76917 Flywch2 FLYWCH family member 2 Novel U 0.0001927478982091573 -0.26198562228654704 1.0 18722 +67101 2310039H08Rik RIKEN cDNA 2310039H08 gene Novel U 0.0001927341221811811 -0.2619857649781919 1.0 18723 +105349 Akr1c18 aldo-keto reductase family 1, member C18 Novel U 0.0001926422203585717 -0.26198671689424946 1.0 18724 +72040 Cdhr5 cadherin-related family member 5 Novel U 0.00019229962415050564 -0.2619902654945103 1.0 18725 +101185 Pot1a protection of telomeres 1A Novel U 0.00019227719767959898 -0.26199049778715877 1.0 18726 +545677 Gm12888 predicted gene 12888 Novel U 0.0001921923675001473 -0.2619913764553689 1.0 18727 +11686 Alox12b arachidonate 12-lipoxygenase, 12R type Novel U 0.00019211950506970848 -0.26199213116202813 1.0 18728 +628456 Ctag2l1 CTAG2 like 1 Novel U 0.00019209683864875217 -0.26199236594007125 1.0 18729 +224291 Csnka2ip casein kinase 2, alpha prime interacting protein Novel U 0.0001919878912578895 -0.2619934944135644 1.0 18730 +108168963 Zfp978 zinc finger protein 978 Novel U 0.00019188758071223453 -0.26199453342689877 1.0 18731 +70974 Pgm2l1 phosphoglucomutase 2-like 1 Novel U 0.0001918742329596834 -0.26199467168248086 1.0 18732 +21463 Tcp11 t-complex protein 11 Novel U 0.00019180406992868755 -0.26199539842884945 1.0 18733 +18771 Pknox1 Pbx/knotted 1 homeobox Novel N 0.0001917432949780381 -0.2619960279337904 1.0 18734 +71508 Zfp935 zinc finger protein 935 Novel U 0.00019165767373068788 -0.26199691479585585 1.0 18735 +108755 Lyrm2 LYR motif containing 2 Novel N 0.0001916024033882301 -0.2619974872842461 1.0 18736 +110198 Akr7a5 aldo-keto reductase family 7, member A5 Novel U 0.00019150872018038295 -0.26199845765183327 1.0 18737 +121811722 Smim36 small integral membrane protein 36 Novel U 0.0001913260089897321 -0.2620003501683398 1.0 18738 +229584 Pogz pogo transposable element with ZNF domain Novel U 0.00019117122310170398 -0.26200195343547966 1.0 18739 +224585 Zfp160 zinc finger protein 160 Novel U 0.0001911100533629539 -0.26200258702962276 1.0 18740 +50492 Thop1 thimet oligopeptidase 1 Novel U 0.00019109889155147558 -0.2620027026432991 1.0 18741 +76803 Zfp998 zinc finger protein 998 Novel U 0.00019099590751282816 -0.26200376934858605 1.0 18742 +434760 Rhox2d reproductive homeobox 2D Novel U 0.0001909718898619703 -0.2620040181226241 1.0 18743 +74437 Magec2 MAGE family member C2 Novel U 0.00019082724813232078 -0.26200551631690494 1.0 18744 +15233 Hgd homogentisate 1, 2-dioxygenase Novel U 0.00019063524856628895 -0.26200750504209824 1.0 18745 +66648 Tpgs2 tubulin polyglutamylase complex subunit 2 Novel U 0.0001906001052426914 -0.2620078690554888 1.0 18746 +71881 Apmap adipocyte plasma membrane associated protein Novel U 0.00019033822808926806 -0.2620105815704352 1.0 18747 +109791 Clps colipase, pancreatic Novel U 0.00019025908698022944 -0.262011401311441 1.0 18748 +93761 Smarca1 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 1 Novel N 0.0001902506809044669 -0.2620114883812974 1.0 18749 +240068 Zfp563 zinc finger protein 563 Novel U 0.00019016612206458725 -0.26201236423898117 1.0 18750 +73102 Slc22a23 solute carrier family 22, member 23 Novel U 0.00019013803347792628 -0.26201265517963845 1.0 18751 +50917 Galns galactosamine (N-acetyl)-6-sulfatase Novel U 0.00018974670577922428 -0.2620167085390774 1.0 18752 +71797 Chst13 carbohydrate sulfotransferase 13 Novel N 0.0001897415474603516 -0.2620167619687747 1.0 18753 +67534 Ttll4 tubulin tyrosine ligase-like family, member 4 Novel U 0.00018972515381824532 -0.26201693177358076 1.0 18754 +77974 Rdh12 retinol dehydrogenase 12 Novel N 0.00018972299539904815 -0.2620169541304158 1.0 18755 +72267 Lrrc8e leucine rich repeat containing 8 family, member E Novel U 0.0001896429732981013 -0.26201778299670686 1.0 18756 +241846 Lsm14b LSM family member 14B Novel U 0.00018958759290732568 -0.26201835662497397 1.0 18757 +666168 Cyp4a31 cytochrome P450, family 4, subfamily a, polypeptide 31 Novel U 0.00018952190803770178 -0.26201903698669426 1.0 18758 +53871 Pkd2l2 polycystic kidney disease 2-like 2 Novel U 0.00018941723944504557 -0.2620201211405362 1.0 18759 +76779 Cluap1 clusterin associated protein 1 Novel U 0.000189348842206675 -0.26202082959688283 1.0 18760 +244071 Agbl1 ATP/GTP binding protein-like 1 Novel N 0.00018928104793399956 -0.2620215318077306 1.0 18761 +21684 Tectb tectorin beta Novel U 0.00018915262102538657 -0.2620228620494282 1.0 18762 +74854 4930402F06Rik RIKEN cDNA 4930402F06 gene Novel U 0.00018892395147320027 -0.26202523060113264 1.0 18763 +100039123 Gm14295 predicted gene 14295 Novel U 0.0001888792724450911 -0.262025693385037 1.0 18764 +240263 Fem1c fem 1 homolog c Novel U 0.00018885516899997968 -0.26202594304772914 1.0 18765 +218630 Ccno cyclin O Novel U 0.00018878829401584453 -0.2620266357366164 1.0 18766 +494448 Cbx6 chromobox 6 Novel N 0.00018878156303183001 -0.26202670545592754 1.0 18767 +545913 Zscan4d zinc finger and SCAN domain containing 4D Novel U 0.00018869170348924562 -0.26202763621811564 1.0 18768 +241158 Ankmy1 ankyrin repeat and MYND domain containing 1 Novel U 0.00018867617270152987 -0.2620277970855043 1.0 18769 +74519 Cyp2j9 cytochrome P450, family 2, subfamily j, polypeptide 9 Novel U 0.0001884944157593347 -0.2620296797179366 1.0 18770 +68721 Cfap68 cilia and flagella associated protein 68 Novel U 0.00018849139370760847 -0.2620297110202491 1.0 18771 +622665 Ccdc17 coiled-coil domain containing 17 Novel U 0.0001881687929626765 -0.2620330525081601 1.0 18772 +72486 Obi1 ORC ubiquitin ligase 1 Novel U 0.00018811349735513652 -0.26203362525824525 1.0 18773 +74337 Palm3 paralemmin 3 Novel U 0.00018808845002321638 -0.2620338846976859 1.0 18774 +108114 Slc22a7 solute carrier family 22 (organic anion transporter), member 7 Novel N 0.00018807675048189445 -0.26203400588115033 1.0 18775 +72301 Shisal1 shisa like 1 Novel U 0.00018800993860057055 -0.26203469791642076 1.0 18776 +269629 Lhfpl3 lipoma HMGIC fusion partner-like 3 Novel U 0.0001880024679095584 -0.26203477529759267 1.0 18777 +100039948 Rhox2c reproductive homeobox 2C Novel U 0.00018798339482616638 -0.26203497285596344 1.0 18778 +57312 Mrps31 mitochondrial ribosomal protein S31 Novel U 0.00018798287978760453 -0.262034978190716 1.0 18779 +18400 Slc22a18 solute carrier family 22 (organic cation transporter), member 18 Novel U 0.00018783835292019712 -0.2620364751952575 1.0 18780 +13419 Dnase1 deoxyribonuclease I Novel U 0.00018783524098354892 -0.26203650742859497 1.0 18781 +170574 Sp7 Sp7 transcription factor 7 Novel U 0.00018780963767663187 -0.26203677262680636 1.0 18782 +70503 Ddo D-aspartate oxidase Novel N 0.0001876944123176567 -0.2620379661272868 1.0 18783 +67198 Spats2l spermatogenesis associated, serine-rich 2-like Novel U 0.0001876492161097467 -0.2620384342681226 1.0 18784 +620807 Mup6 major urinary protein 6 Novel U 0.00018763424374728622 -0.26203858935136076 1.0 18785 +69540 Klk10 kallikrein related-peptidase 10 Novel U 0.00018755121091779012 -0.26203944940267915 1.0 18786 +14869 Gstp2 glutathione S-transferase, pi 2 Novel U 0.00018753803609805475 -0.26203958586702886 1.0 18787 +13612 Edil3 EGF-like repeats and discoidin I-like domains 3 Novel U 0.00018747026543514976 -0.2620402878333274 1.0 18788 +217194 Klhl11 kelch-like 11 Novel U 0.00018743320019176752 -0.2620406717538999 1.0 18789 +75530 Lyrm7 LYR motif containing 7 Novel N 0.00018742786335814834 -0.2620407270326471 1.0 18790 +106861 Abhd3 abhydrolase domain containing 3 Novel U 0.0001873365546091427 -0.26204167280566765 1.0 18791 +76293 Mfap4 microfibrillar-associated protein 4 Novel U 0.0001870658447463702 -0.26204447680952714 1.0 18792 +210583 Gm4767 predicted gene 4767 Novel U 0.00018695660912040015 -0.26204560826855006 1.0 18793 +235628 Prss42 serine protease 42 Novel U 0.00018673510320592034 -0.2620479026195306 1.0 18794 +26886 Cenph centromere protein H Novel U 0.00018668590816697795 -0.26204841218012676 1.0 18795 +69792 Med6 mediator complex subunit 6 Novel N 0.00018664667165623253 -0.26204881859061524 1.0 18796 +102636082 Ccdc168 coiled-coil domain containing 168 Novel U 0.00018663756904771923 -0.262048912875135 1.0 18797 +74166 Tmem38a transmembrane protein 38A Novel U 0.00018648150356615745 -0.2620505293962626 1.0 18798 +394436 Ugt1a1 UDP glucuronosyltransferase 1 family, polypeptide A1 Novel U 0.0001864536355528369 -0.26205081805222846 1.0 18799 +381668 Fbrsl1 fibrosin-like 1 Novel U 0.00018637658347939187 -0.2620516161550723 1.0 18800 +72094 Ugt2a3 UDP glucuronosyltransferase 2 family, polypeptide A3 Novel U 0.00018622459910107853 -0.2620531904042666 1.0 18801 +381334 Gal3st2 galactose-3-O-sulfotransferase 2 Novel U 0.00018616862690343212 -0.26205377016244985 1.0 18802 +101867 Rrp8 ribosomal RNA processing 8 Novel U 0.00018616315032523643 -0.26205382688866674 1.0 18803 +103098 Slc6a15 solute carrier family 6 (neurotransmitter transporter), member 15 Novel N 0.0001861015656670688 -0.26205446478053157 1.0 18804 +243510 Ccdc142 coiled-coil domain containing 142 Novel U 0.00018605626488683565 -0.26205493400452406 1.0 18805 +74399 Duxf3 double homeobox family member 3 Novel U 0.00018602516040535727 -0.26205525618372066 1.0 18806 +66292 Mrps21 mitochondrial ribosomal protein S21 Novel U 0.00018601908991682073 -0.2620553190616414 1.0 18807 +20756 Sprr2b small proline-rich protein 2B Novel U 0.00018599114388473284 -0.26205560852572307 1.0 18808 +100042944 H2al1h H2A histone family member L1H Novel U 0.0001858863151680681 -0.26205669433812423 1.0 18809 +217071 Gm525 predicted gene 525 Novel U 0.00018582782487727264 -0.26205730017863355 1.0 18810 +637093 Tex13c1 TEX13 family member C1 Novel U 0.00018581078181436996 -0.26205747671011886 1.0 18811 +108168559 Gm21477 predicted gene, 21477 Novel U 0.00018574459462156962 -0.2620581622748861 1.0 18812 +54364 Rpp30 ribonuclease P/MRP 30 subunit Novel N 0.0001856113063201195 -0.26205954287073085 1.0 18813 +270757 Bpifc BPI fold containing family C Novel U 0.00018553243517920745 -0.2620603598154157 1.0 18814 +100039060 Gm2026 predicted gene 2026 Novel U 0.00018545102387608231 -0.2620612030710172 1.0 18815 +50796 Dmrt1 doublesex and mab-3 related transcription factor 1 Novel N 0.0001854287416578567 -0.2620614338695011 1.0 18816 +78929 Polr3h polymerase (RNA) III (DNA directed) polypeptide H Novel N 0.00018527141073965174 -0.2620630634979799 1.0 18817 +216829 Mmgt2 membrane magnesium transporter 2 Novel U 0.00018524450838572755 -0.2620633421516775 1.0 18818 +74919 Slc35f6 solute carrier family 35, member F6 Novel N 0.00018523303591054226 -0.2620634609831983 1.0 18819 +229550 S100a7l2 S100 calcium binding protein A7 like 2 Novel U 0.00018519632183890353 -0.2620638412663454 1.0 18820 +78246 Phf23 PHD finger protein 23 Novel U 0.0001851663402396352 -0.26206415181476506 1.0 18821 +72075 Ogfr opioid growth factor receptor Novel U 0.00018488019967012072 -0.26206711564937774 1.0 18822 +223513 Abra actin-binding Rho activating protein Novel U 0.00018483203777517587 -0.26206761450870236 1.0 18823 +102680 Slc6a20a solute carrier family 6 (neurotransmitter transporter), member 20A Novel U 0.0001847312437257385 -0.262068658530153 1.0 18824 +65973 Asph aspartate-beta-hydroxylase Novel U 0.00018467735291328218 -0.2620692167294168 1.0 18825 +71791 Cpa4 carboxypeptidase A4 Novel U 0.0001846550046518295 -0.2620694482119743 1.0 18826 +73068 Fut11 fucosyltransferase 11 Novel U 0.0001846304669894767 -0.26206970237227434 1.0 18827 +16588 Kin Kin17 DNA and RNA binding protein Novel N 0.0001846240916351019 -0.26206976840798535 1.0 18828 +11722 Amy1 amylase 1, salivary Novel U 0.0001846091674273558 -0.2620699229924386 1.0 18829 +64818 Krt81 keratin 81 Novel U 0.00018454434908316645 -0.2620705943787169 1.0 18830 +240816 Rgsl1 regulator of G-protein signaling like 1 Novel U 0.00018450910850681545 -0.2620709593994483 1.0 18831 +239673 Krt90 keratin 90 Novel U 0.0001844787082189436 -0.2620712742846307 1.0 18832 +21835 Thrsp thyroid hormone responsive Novel U 0.00018437723867156317 -0.26207232530286684 1.0 18833 +13095 Cyp2c29 cytochrome P450, family 2, subfamily c, polypeptide 29 Novel U 0.00018426204392571135 -0.26207351848625754 1.0 18834 +231452 Sdad1 SDA1 domain containing 1 Novel U 0.0001841905318588813 -0.26207425920589494 1.0 18835 +107227 Macrod1 mono-ADP ribosylhydrolase 1 Novel N 0.00018405618533648795 -0.26207565076275746 1.0 18836 +74895 Ccdc181 coiled-coil domain containing 181 Novel U 0.00018398282141081262 -0.2620764106638879 1.0 18837 +69314 Izumo3 IZUMO family member 3 Novel U 0.00018397620757915268 -0.2620764791697388 1.0 18838 +235493 Atosa atos homolog A Novel U 0.00018357966434333743 -0.26208058655153976 1.0 18839 +252868 Odf4 outer dense fiber of sperm tails 4 Novel U 0.00018351339443371627 -0.26208127297308514 1.0 18840 +434172 Gm5592 predicted gene 5592 Novel U 0.00018336141859115089 -0.2620828471338665 1.0 18841 +66308 Mplkip M-phase specific PLK1 intereacting protein Novel U 0.0001832577914491482 -0.26208392050039675 1.0 18842 +59038 Pxmp4 peroxisomal membrane protein 4 Novel U 0.00018319989894806344 -0.2620845201490199 1.0 18843 +240633 Lipk lipase, family member K Novel N 0.00018295195784319977 -0.2620870883148334 1.0 18844 +72535 Aldh1b1 aldehyde dehydrogenase 1 family, member B1 Novel U 0.00018288496992618407 -0.2620877821734758 1.0 18845 +13392 Dlx2 distal-less homeobox 2 Novel N 0.00018275996391785195 -0.2620890769816007 1.0 18846 +29811 Ndrg2 N-myc downstream regulated gene 2 Novel U 0.0001827162649012768 -0.2620895296145779 1.0 18847 +100336 Ppp1r8 protein phosphatase 1, regulatory subunit 8 Novel N 0.00018253844355210755 -0.262091371482267 1.0 18848 +20197 S100a3 S100 calcium binding protein A3 Novel U 0.00018252950663467634 -0.262091464050564 1.0 18849 +11883 Arsa arylsulfatase A Novel U 0.0001825012709564113 -0.2620917565147913 1.0 18850 +320655 Pgap3 post-GPI attachment to proteins 3 Novel U 0.0001821622774793285 -0.26209526779808306 1.0 18851 +11433 Acp5 acid phosphatase 5, tartrate resistant Novel U 0.00018213143456278244 -0.26209558726799875 1.0 18852 +67483 Cfap95 cilia and flagella associated protein 95 Novel U 0.00018210328882998863 -0.2620958788005738 1.0 18853 +140482 Zfp358 zinc finger protein 358 Novel U 0.00018208046613857201 -0.2620961151972612 1.0 18854 +628147 Gm2004 predicted gene 2004 Novel U 0.00018202456739472734 -0.2620966941946124 1.0 18855 +14874 Gstz1 glutathione transferase zeta 1 (maleylacetoacetate isomerase) Novel N 0.00018193497068497348 -0.2620976222343867 1.0 18856 +26428 Orc4 origin recognition complex, subunit 4 Novel U 0.0001818582921991592 -0.26209841646762205 1.0 18857 +68165 Fdx2 ferredoxin 2 Novel U 0.0001818291110063531 -0.26209871872545787 1.0 18858 +208968 Zfp280c zinc finger protein 280C Novel U 0.00018176977578328104 -0.26209933331774793 1.0 18859 +381199 Tmem151a transmembrane protein 151A Novel N 0.00018170817379565597 -0.2620999713891107 1.0 18860 +66320 Tmem208 transmembrane protein 208 Novel U 0.00018152363338302767 -0.2621018828526383 1.0 18861 +230991 Fndc10 fibronectin type III domain containing 10 Novel U 0.00018149196286116026 -0.26210221089486263 1.0 18862 +77264 Zfp142 zinc finger protein 142 Novel N 0.00018142919546195396 -0.2621028610375203 1.0 18863 +66271 Tmem126a transmembrane protein 126A Novel N 0.00018137954455771496 -0.2621033753199542 1.0 18864 +192170 Eif4a3 eukaryotic translation initiation factor 4A3 Novel U 0.00018130587134368157 -0.2621041384246833 1.0 18865 +242607 Slc1a7 solute carrier family 1 (glutamate transporter), member 7 Novel U 0.00018117619246379096 -0.26210548163425823 1.0 18866 +67719 2310057J18Rik RIKEN cDNA 2310057J18 gene Novel U 0.00018108742393078896 -0.2621064010958049 1.0 18867 +74934 Odad2 outer dynein arm docking complex subunit 2 Novel U 0.0001810421603556131 -0.26210686993442867 1.0 18868 +12021 Bard1 BRCA1 associated RING domain 1 Novel U 0.0001810307940641362 -0.26210698766610213 1.0 18869 +67544 Fam120b family with sequence similarity 120, member B Novel U 0.00018087295203810392 -0.262108622588619 1.0 18870 +56314 Zfp113 zinc finger protein 113 Novel U 0.00018085764225519554 -0.26210878116684705 1.0 18871 +232972 Lypd10 Ly6/PLAUR domain containing 10 Novel U 0.00018085516156488476 -0.26210880686175575 1.0 18872 +246083 Defb13 defensin beta 13 Novel U 0.0001808258907903511 -0.26210911004747617 1.0 18873 +68177 Ebpl emopamil binding protein-like Novel U 0.0001808163458691426 -0.26210920891345624 1.0 18874 +14233 Foxi1 forkhead box I1 Novel U 0.0001803972860426226 -0.2621135495213635 1.0 18875 +20944 Svs5 seminal vesicle secretory protein 5 Novel U 0.00018029788569903657 -0.26211457910685476 1.0 18876 +58523 Elp2 elongator acetyltransferase complex subunit 2 Novel N 0.0001802510392783038 -0.2621150643405407 1.0 18877 +623131 Prr19 proline rich 19 Novel U 0.00018006753333163012 -0.2621169650891039 1.0 18878 +232680 Cpa2 carboxypeptidase A2, pancreatic Novel N 0.00018000745288438083 -0.2621175874004015 1.0 18879 +22390 Wee1 WEE 1 homolog 1 (S. pombe) Novel U 0.0001799767098663755 -0.2621179058355714 1.0 18880 +72068 Cnot2 CCR4-NOT transcription complex, subunit 2 Novel U 0.00017987442023606942 -0.2621189653481995 1.0 18881 +107970 H1f6 H1.6 linker histone, cluster member Novel U 0.0001797521389303052 -0.2621202319339448 1.0 18882 +78796 Zcchc4 zinc finger, CCHC domain containing 4 Novel N 0.0001796956624070681 -0.26212081691591593 1.0 18883 +69499 Tsr2 TSR2 20S rRNA accumulation Novel U 0.00017965934731827265 -0.2621211930664119 1.0 18884 +18221 Nudc nudC nuclear distribution protein Novel U 0.00017960743272189773 -0.2621217307960945 1.0 18885 +26971 Pla2g2f phospholipase A2, group IIF Novel U 0.0001793829249940083 -0.26212405623975976 1.0 18886 +243372 Zfp775 zinc finger protein 775 Novel U 0.000179221627089122 -0.26212572695815617 1.0 18887 +74571 Kcnk16 potassium channel, subfamily K, member 16 Novel U 0.0001791860506366428 -0.26212609545788146 1.0 18888 +320709 Tmem117 transmembrane protein 117 Novel N 0.00017913294298963061 -0.26212664554514337 1.0 18889 +107932 Chd4 chromodomain helicase DNA binding protein 4 Novel U 0.00017910248088837016 -0.2621269610705868 1.0 18890 +11878 Arx aristaless related homeobox Novel U 0.00017904548651402762 -0.2621275514164427 1.0 18891 +53817 Ddx39b DEAD box helicase 39b Novel N 0.0001789809885157659 -0.2621282194845884 1.0 18892 +66681 Pgm2 phosphoglucomutase 2 Novel U 0.00017896701507602692 -0.2621283642210179 1.0 18893 +320082 Fbxw21 F-box and WD-40 domain protein 21 Novel U 0.00017877148696850246 -0.262130389494728 1.0 18894 +330064 Slc5a6 solute carrier family 5 (sodium-dependent vitamin transporter), member 6 Novel U 0.00017876254638310397 -0.26213048210101764 1.0 18895 +241230 St8sia6 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 6 Novel U 0.0001786339496432034 -0.2621318141018221 1.0 18896 +100859931 Gm20604 predicted gene 20604 Novel U 0.0001785572671624749 -0.2621326083764367 1.0 18897 +242747 Zfp933 zinc finger protein 933 Novel U 0.0001784249207094619 -0.26213397921664633 1.0 18898 +20467 Sin3b transcriptional regulator, SIN3B (yeast) Novel N 0.000178334716486736 -0.2621349135490201 1.0 18899 +268482 Krt12 keratin 12 Novel U 0.0001780951245057832 -0.2621373952348826 1.0 18900 +270004 Foxi2 forkhead box I2 Novel U 0.00017807810590779948 -0.2621375715129611 1.0 18901 +94346 Tmem40 transmembrane protein 40 Novel U 0.00017794154763565575 -0.26213898597905483 1.0 18902 +108902 B4gat1 beta-1,4-glucuronyltransferase 1 Novel U 0.00017783916550518725 -0.26214004644979655 1.0 18903 +231727 B3gnt4 UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 4 Novel N 0.00017774942995276702 -0.2621409759276987 1.0 18904 +67456 Ergic2 ERGIC and golgi 2 Novel N 0.00017770634677057544 -0.2621414221818835 1.0 18905 +66192 Lage3 L antigen family, member 3 Novel U 0.00017755287884160416 -0.2621430117976468 1.0 18906 +73673 Rec114 REC114 meiotic recombination protein Novel N 0.00017734479736245302 -0.26214516709876756 1.0 18907 +69920 Polr2i polymerase (RNA) II (DNA directed) polypeptide I Novel N 0.0001773336186580133 -0.26214528288742067 1.0 18908 +66654 Tex12 testis expressed 12 Novel U 0.00017728086177076408 -0.2621458293415245 1.0 18909 +109342 Slc5a10 solute carrier family 5 (sodium/glucose cotransporter), member 10 Novel N 0.0001772214201053253 -0.2621464450363411 1.0 18910 +329470 Accs 1-aminocyclopropane-1-carboxylate synthase (inactive) Novel U 0.00017719855234341175 -0.26214668189986723 1.0 18911 +50934 Slc7a8 solute carrier family 7 (cationic amino acid transporter, y+ system), member 8 Novel U 0.0001771972284966251 -0.26214669561222875 1.0 18912 +382105 Fbxw15 F-box and WD-40 domain protein 15 Novel U 0.00017717402758588444 -0.2621469359264995 1.0 18913 +20495 Slc12a1 solute carrier family 12, member 1 Novel U 0.00017704366872811435 -0.26214828617926295 1.0 18914 +230161 Acnat1 acyl-coenzyme A amino acid N-acyltransferase 1 Novel U 0.0001768679636512986 -0.2621501061266726 1.0 18915 +103677 Smg6 SMG6 nonsense mediated mRNA decay factor Novel N 0.00017674839541658254 -0.2621513446105172 1.0 18916 +226438 Igfn1 immunoglobulin-like and fibronectin type III domain containing 1 Novel U 0.00017668471792997665 -0.2621520041798302 1.0 18917 +235135 Tmem45b transmembrane protein 45b Novel U 0.0001765774025301614 -0.2621531157492137 1.0 18918 +212943 Tent5a terminal nucleotidyltransferase 5A Novel U 0.00017656046221438515 -0.2621532912164476 1.0 18919 +66931 1700010I14Rik RIKEN cDNA 1700010I14 gene Novel U 0.00017644233662762824 -0.26215451475739204 1.0 18920 +78482 Nup50l nucleoporin 50 like Novel U 0.0001764046537472152 -0.26215490507542866 1.0 18921 +13098 Cyp2c39 cytochrome P450, family 2, subfamily c, polypeptide 39 Novel U 0.00017636787008087784 -0.26215528607943533 1.0 18922 +17703 Msx3 msh homeobox 3 Novel U 0.00017635526304247588 -0.2621554166627247 1.0 18923 +68276 Toe1 target of EGR1, member 1 (nuclear) Novel N 0.00017628100566296484 -0.2621561858182206 1.0 18924 +93762 Smarca5 SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 5 Novel N 0.0001762466620581496 -0.26215654154815027 1.0 18925 +19120 Prm3 protamine 3 Novel U 0.0001761551064864435 -0.2621574898777523 1.0 18926 +102632745 Gm30737 predicted gene, 30737 Novel U 0.00017604950359837503 -0.26215858370899536 1.0 18927 +383977 Spopfm3 speckle-type BTB/POZ protein family member 3 Novel U 0.00017603387940633115 -0.2621587455438629 1.0 18928 +68975 Med27 mediator complex subunit 27 Novel U 0.0001760323799153501 -0.26215876107554126 1.0 18929 +268491 Meioc meiosis specific with coiled-coil domain Novel U 0.00017591590150828446 -0.2621599675550526 1.0 18930 +67486 Polr3g polymerase (RNA) III (DNA directed) polypeptide G Novel U 0.00017586135585549115 -0.2621605325371312 1.0 18931 +213499 Fbxo42 F-box protein 42 Novel U 0.00017583075087563614 -0.2621608495425064 1.0 18932 +381760 Ssbp1 single-stranded DNA binding protein 1 Novel U 0.00017581137457424003 -0.2621610502415993 1.0 18933 +72585 Lypd1 Ly6/Plaur domain containing 1 Novel U 0.00017571760109929825 -0.2621620215441701 1.0 18934 +246049 Slc36a2 solute carrier family 36 (proton/amino acid symporter), member 2 Novel N 0.00017560470471426475 -0.262163190921215 1.0 18935 +230613 Skint10 selection and upkeep of intraepithelial T cells 10 Novel U 0.0001754784679477979 -0.2621644984774923 1.0 18936 +70025 Acot7 acyl-CoA thioesterase 7 Novel N 0.0001754425561692568 -0.26216487045051384 1.0 18937 +228876 Zfp334 zinc finger protein 334 Novel U 0.00017541814898403162 -0.2621651232593361 1.0 18938 +69574 Cmbl carboxymethylenebutenolidase homolog Novel N 0.00017536188831242738 -0.2621657060055231 1.0 18939 +216871 Gltpd2 glycolipid transfer protein domain containing 2 Novel U 0.00017522304110619789 -0.2621671441803209 1.0 18940 +71163 Zfp626 zinc finger protein 626 Novel U 0.0001751942086887207 -0.26216744282555327 1.0 18941 +100048884 Mup18 major urinary protein 18 Novel U 0.00017511385796428985 -0.26216827509571555 1.0 18942 +328059 Slc7a15 solute carrier family 7 (cationic amino acid transporter, y+ system), member 15 Novel U 0.00017509472291546261 -0.26216847329592224 1.0 18943 +233836 Slc5a11 solute carrier family 5 (sodium/glucose cotransporter), member 11 Novel N 0.0001749440494095213 -0.26217003396714367 1.0 18944 +50776 Polg2 polymerase (DNA directed), gamma 2, accessory subunit Novel U 0.00017490832321072577 -0.26217040401793634 1.0 18945 +99377 Sall4 spalt like transcription factor 4 Novel U 0.00017488966563440248 -0.2621705972724986 1.0 18946 +20443 St3gal4 ST3 beta-galactoside alpha-2,3-sialyltransferase 4 Novel U 0.0001748303828597694 -0.26217121132152943 1.0 18947 +59032 Ppp2r3c protein phosphatase 2, regulatory subunit B'', gamma Novel U 0.0001745901146945678 -0.2621737000112862 1.0 18948 +67606 Fibin fin bud initiation factor homolog (zebrafish) Novel U 0.00017457925959157362 -0.26217381244808613 1.0 18949 +22755 Zfp93 zinc finger protein 93 Novel U 0.0001744847677838493 -0.2621747911911243 1.0 18950 +232853 Zfp954 zinc finger protein 954 Novel U 0.00017444518249301063 -0.2621752012142655 1.0 18951 +101631 Pwwp2b PWWP domain containing 2B Novel U 0.00017439541655622055 -0.26217571668820283 1.0 18952 +15438 Hoxd9 homeobox D9 Novel N 0.00017404937987752938 -0.2621793009247454 1.0 18953 +100502723 Tsga8 testis specific gene A8 Novel U 0.0001738990052963944 -0.26218085849971345 1.0 18954 +67736 Yju2b YJU2 splicing factor homolog B Novel U 0.00017387943325613495 -0.2621810612262631 1.0 18955 +208518 Cep78 centrosomal protein 78 Novel U 0.0001737847997282707 -0.2621820414372338 1.0 18956 +72843 Prdm4 PR domain containing 4 Novel U 0.0001736621776040789 -0.2621833115531652 1.0 18957 +240660 Slc35g1 solute carrier family 35, member G1 Novel N 0.00017362473600239747 -0.26218369937204455 1.0 18958 +227671 Gbgt1 globoside alpha-1,3-N-acetylgalactosaminyltransferase 1 Novel N 0.00017354766639927075 -0.26218449765646024 1.0 18959 +16681 Krt2 keratin 2 Novel U 0.00017351316189819925 -0.26218485505294803 1.0 18960 +75199 Rhox2a reproductive homeobox 2A Novel U 0.00017348646642349416 -0.26218513156379747 1.0 18961 +102638882 Wdr97 WD repeat domain 97 Novel U 0.00017345125250021565 -0.2621854963084572 1.0 18962 +242800 Ttc34 tetratricopeptide repeat domain 34 Novel U 0.0001734260263214013 -0.2621857576003881 1.0 18963 +330277 Garin1b golgi associated RAB2 interactor 1B Novel U 0.00017336291324107622 -0.2621864113235994 1.0 18964 +68453 Gpihbp1 GPI-anchored HDL-binding protein 1 Novel U 0.00017328361693266905 -0.26218723267215516 1.0 18965 +100043468 Zfp955b zinc finger protein 955B Novel U 0.00017319125554214894 -0.26218818934840193 1.0 18966 +270150 Ccdc153 coiled-coil domain containing 153 Novel U 0.00017303800042214564 -0.2621897767598969 1.0 18967 +67926 Cby2 chibby family member 2 Novel U 0.00017303605121139117 -0.26218979694975786 1.0 18968 +11886 Asah1 N-acylsphingosine amidohydrolase 1 Novel U 0.00017299528921468652 -0.26219021916117974 1.0 18969 +327956 Vmo1 vitelline membrane outer layer 1 homolog (chicken) Novel U 0.00017289369368741903 -0.2621912714843114 1.0 18970 +70650 Zcchc8 zinc finger, CCHC domain containing 8 Novel N 0.00017282526065502506 -0.26219198031141133 1.0 18971 +22360 Nrsn1 neurensin 1 Novel U 0.00017281491635870786 -0.2621920874572925 1.0 18972 +93681 Zkscan8 zinc finger with KRAB and SCAN domains 8 Novel U 0.00017277238882639477 -0.2621925279560742 1.0 18973 +13394 Dlx4 distal-less homeobox 4 Novel U 0.00017257446430529253 -0.26219457805175733 1.0 18974 +231868 Ints15 integrator complex subunit 15 Novel U 0.00017246381093270616 -0.26219572419575304 1.0 18975 +14863 Gstm2 glutathione S-transferase, mu 2 Novel U 0.00017241888865099958 -0.26219618949927026 1.0 18976 +56174 Nagk N-acetylglucosamine kinase Novel U 0.00017232345383975424 -0.2621971780099079 1.0 18977 +70891 Spdya speedy/RINGO cell cycle regulator family, member A Novel U 0.00017229973728338864 -0.2621974236652191 1.0 18978 +70673 Prdm16 PR domain containing 16 Novel U 0.00017221366597612142 -0.2621983151889903 1.0 18979 +667666 Zfp600 zinc finger protein 600 Novel U 0.0001721505632935979 -0.2621989688045015 1.0 18980 +15408 Hoxb13 homeobox B13 Novel U 0.00017203012611877663 -0.26220021628879914 1.0 18981 +28077 Med10 mediator complex subunit 10 Novel U 0.00017201120222642359 -0.26220041230185404 1.0 18982 +107701 Sf3b4 splicing factor 3b, subunit 4 Novel U 0.0001719400855599081 -0.262201148925948 1.0 18983 +12411 Cbs cystathionine beta-synthase Novel U 0.00017154586448837327 -0.26220523225484765 1.0 18984 +73809 Satl1 spermidine/spermine N1-acetyl transferase-like 1 Novel U 0.00017144371496618176 -0.2622062903162405 1.0 18985 +69121 Chrdl2 chordin-like 2 Novel U 0.000171356787330734 -0.2622071907098309 1.0 18986 +11298 Aanat arylalkylamine N-acetyltransferase Novel N 0.00017130640109408988 -0.26220771260881365 1.0 18987 +17215 Mcm3 minichromosome maintenance complex component 3 Novel U 0.00017125693127782921 -0.26220822501554425 1.0 18988 +70387 Ttc9c tetratricopeptide repeat domain 9C Novel U 0.00017122582693326237 -0.2622085471933228 1.0 18989 +13524 Adam18 a disintegrin and metallopeptidase domain 18 Novel U 0.00017122359460126254 -0.26220857031574424 1.0 18990 +73472 Spata18 spermatogenesis associated 18 Novel U 0.00017120805120997287 -0.2622087313136803 1.0 18991 +66469 Prxl2b peroxiredoxin like 2B Novel U 0.00017115316611315682 -0.2622092998117088 1.0 18992 +68977 Haghl hydroxyacylglutathione hydrolase-like Novel U 0.000171097871271869 -0.2622098725538572 1.0 18993 +22786 Zp1 zona pellucida glycoprotein 1 Novel N 0.00017098747551281255 -0.2622110160295004 1.0 18994 +668346 Tdpoz9-ps1 TD and POZ domain containing 9, pseudogene 1 Novel U 0.00017086702756250756 -0.26221226362541017 1.0 18995 +66274 Lyrm9 LYR motif containing 9 Novel U 0.00017074599184872295 -0.2622135173093547 1.0 18996 +70178 Abhd17c abhydrolase domain containing 17C Novel N 0.00017070751032296615 -0.2622139158997335 1.0 18997 +68917 Hint2 histidine triad nucleotide binding protein 2 Novel U 0.00017066639137193265 -0.2622143418084766 1.0 18998 +235612 Fbxw19 F-box and WD-40 domain protein 19 Novel U 0.00017057026125243179 -0.26221533752109427 1.0 18999 +212281 Zfp729a zinc finger protein 729a Novel U 0.00017055817247019694 -0.26221546273630325 1.0 19000 +241520 Fam171b family with sequence similarity 171, member B Novel U 0.00017051929179513658 -0.2622158654610574 1.0 19001 +100039574 Gm20806 predicted gene, 20806 Novel U 0.00017038520451626894 -0.262217254332684 1.0 19002 +14756 Gpld1 glycosylphosphatidylinositol specific phospholipase D1 Novel U 0.0001703740396858891 -0.2622173699776301 1.0 19003 +112422 Zfp979 zinc finger protein 979 Novel U 0.00017033394382330843 -0.2622177852892566 1.0 19004 +100515 Zfp518b zinc finger protein 518B Novel U 0.00017023846017928982 -0.2622187743057025 1.0 19005 +75721 4932414N04Rik RIKEN cDNA 4932414N04 gene Novel U 0.000170232577340738 -0.2622188352399508 1.0 19006 +11685 Alox12e arachidonate lipoxygenase, epidermal Novel U 0.00017013073242676526 -0.26221989014622177 1.0 19007 +73095 Slc25a42 solute carrier family 25, member 42 Novel U 0.00017010662930958207 -0.2622201398055172 1.0 19008 +216821 Tmem11 transmembrane protein 11 Novel N 0.0001700782832323184 -0.2622204334132537 1.0 19009 +105446 Gmpr2 guanosine monophosphate reductase 2 Novel N 0.00016987825477353418 -0.2622225053014542 1.0 19010 +330830 Drc7 dynein regulatory complex subunit 7 Novel U 0.000169866874265024 -0.26222262318038725 1.0 19011 +100201 Tmem64 transmembrane protein 64 Novel U 0.00016975866752163679 -0.2622237439822781 1.0 19012 +214987 Chtf8 CTF8, chromosome transmission fidelity factor 8 Novel U 0.00016974978566347437 -0.262223835980273 1.0 19013 +210503 Zfp677 zinc finger protein 677 Novel U 0.0001695059308783504 -0.26222636182012105 1.0 19014 +17146 Mageb2 MAGE family member B2 Novel U 0.00016936724108052405 -0.26222779836448773 1.0 19015 +269623 Rbm48 RNA binding motif protein 48 Novel U 0.00016936392069404163 -0.2622278327569418 1.0 19016 +74156 Acot12 acyl-CoA thioesterase 12 Novel U 0.00016936151745824184 -0.2622278576495792 1.0 19017 +19365 Rad52 RAD52 homolog, DNA repair protein Novel N 0.00016934050331120077 -0.2622280753134234 1.0 19018 +272465 Tmem255b transmembrane protein 255B Novel U 0.00016932730053124224 -0.2622282120673842 1.0 19019 +12353 Car6 carbonic anhydrase 6 Novel N 0.0001692702032941016 -0.26222880347868954 1.0 19020 +216766 Gemin5 gem nuclear organelle associated protein 5 Novel N 0.0001692511073914226 -0.26222900127342175 1.0 19021 +237339 L3mbtl3 L3MBTL3 histone methyl-lysine binding protein Novel U 0.00016916878078768405 -0.2622298540096769 1.0 19022 +67311 Nanp N-acetylneuraminic acid phosphatase Novel N 0.00016908421498624976 -0.2622307299394682 1.0 19023 +574403 Insyn2b inhibitory synaptic factor family member 2B Novel U 0.0001690524849495058 -0.26223105859814577 1.0 19024 +277743 Fam131c family with sequence similarity 131, member C Novel U 0.0001689904521195212 -0.26223170113215954 1.0 19025 +621080 AI429214 expressed sequence AI429214 Novel U 0.00016885527236810602 -0.2622331013195809 1.0 19026 +100505096 Defa33 defensin, alpha, 33 Novel U 0.00016884031938129844 -0.2622332562021267 1.0 19027 +66994 Cep19 centrosomal protein 19 Novel U 0.0001687912009083471 -0.26223376496965484 1.0 19028 +15434 Hoxd3 homeobox D3 Novel N 0.00016877780298751017 -0.2622339037448784 1.0 19029 +100042314 Gsta5 glutathione S-transferase alpha 5 Novel U 0.00016872840040140264 -0.2622344154552413 1.0 19030 +243328 Slc29a4 solute carrier family 29 (nucleoside transporters), member 4 Novel U 0.00016868242045933632 -0.26223489171396974 1.0 19031 +100042109 Gm10488 predicted gene 10488 Novel U 0.0001686797107407371 -0.2622349197811459 1.0 19032 +84543 Sval2 seminal vesicle antigen-like 2 Novel U 0.00016861857850964762 -0.2622355529867859 1.0 19033 +69186 Tmem256 transmembrane protein 256 Novel U 0.00016859227042515535 -0.26223582548506025 1.0 19034 +99382 Abtb2 ankyrin repeat and BTB domain containing 2 Novel U 0.000168441648451599 -0.2622373856225109 1.0 19035 +94229 Slc4a10 solute carrier family 4, sodium bicarbonate cotransporter-like, member 10 Novel N 0.00016836091794432658 -0.26223822182645135 1.0 19036 +57874 Hacd3 3-hydroxyacyl-CoA dehydratase 3 Novel N 0.00016833287718579458 -0.26223851227170647 1.0 19037 +70601 Ecd ecdysoneless cell cycle regulator Novel N 0.00016829592079834534 -0.2622388950647528 1.0 19038 +17216 Mcm2 minichromosome maintenance complex component 2 Novel U 0.0001682523252915088 -0.26223934662557946 1.0 19039 +210719 Mkx mohawk homeobox Novel U 0.00016818945493858662 -0.2622399978346283 1.0 19040 +12729 Clns1a chloride channel, nucleotide-sensitive, 1A Novel N 0.00016804756207208725 -0.26224146755627503 1.0 19041 +66213 Med7 mediator complex subunit 7 Novel N 0.00016796083851966184 -0.26224236583598015 1.0 19042 +69351 Smim23 small integral membrane protein 23 Novel U 0.00016792236681716858 -0.2622427643246099 1.0 19043 +69665 Upk3bl uroplakin 3B-like Novel U 0.00016783802148237197 -0.262243637970815 1.0 19044 +17217 Mcm4 minichromosome maintenance complex component 4 Novel U 0.00016749501839628193 -0.2622471907855051 1.0 19045 +23971 Papss1 3'-phosphoadenosine 5'-phosphosulfate synthase 1 Novel N 0.00016743963269765758 -0.26224776446875075 1.0 19046 +73172 Exo5 exonuclease 5 Novel N 0.00016736323055943034 -0.26224855583958695 1.0 19047 +64379 Irx6 Iroquois homeobox 6 Novel U 0.00016733829134987337 -0.2622488141590997 1.0 19048 +192196 Luc7l2 LUC7-like 2 (S. cerevisiae) Novel U 0.00016730288234897408 -0.262249180924367 1.0 19049 +71841 Tcp11x2 t-complex 11 family, X-linked 2 Novel U 0.00016723671069117686 -0.26224986632822317 1.0 19050 +74424 Tmc5 transmembrane channel-like gene family 5 Novel U 0.00016720276781756433 -0.2622502179073922 1.0 19051 +68001 Cfap298 cilia and flagella associate protien 298 Novel U 0.00016708105591138183 -0.2622514785953154 1.0 19052 +103711 Pnpo pyridoxine 5'-phosphate oxidase Novel N 0.0001670074975398083 -0.2622522405105101 1.0 19053 +319734 Cacna2d4 calcium channel, voltage-dependent, alpha 2/delta subunit 4 Novel U 0.00016692543047807303 -0.26225309055843776 1.0 19054 +15331 Hmgn2 high mobility group nucleosomal binding domain 2 Novel U 0.00016686598375920507 -0.2622537063055976 1.0 19055 +108168533 Gm21650 predicted gene, 21650 Novel U 0.00016680605670504127 -0.26225432702805457 1.0 19056 +622402 Akr1c12 aldo-keto reductase family 1, member C12 Novel U 0.00016675227556446965 -0.2622548840913407 1.0 19057 +108707 Slx9 SLX9 ribosome biogenesis factor Novel U 0.00016670845712314883 -0.2622553379613154 1.0 19058 +434439 BC048562 cDNA sequence BC048562 Novel U 0.00016658776849582513 -0.2622565880501498 1.0 19059 +75811 Saxo1 stabilizer of axonemal microtubules 1 Novel U 0.00016656756802015284 -0.26225679728601275 1.0 19060 +26429 Orc5 origin recognition complex, subunit 5 Novel N 0.0001665216870762378 -0.26225727251932157 1.0 19061 +103149 Upb1 ureidopropionase, beta Novel U 0.0001664072627585077 -0.26225845772264317 1.0 19062 +12971 Crym crystallin, mu Novel N 0.0001663339363755135 -0.2622592172349077 1.0 19063 +100042946 H2al1i H2A histone family member L1I Novel U 0.00016615577415678718 -0.2622610626333125 1.0 19064 +319183 H2bc11 H2B clustered histone 11 Novel U 0.00016603348119241136 -0.26226232933981736 1.0 19065 +13516 Epyc epiphycan Novel N 0.00016597948827957732 -0.26226288859663355 1.0 19066 +20133 Rrm1 ribonucleotide reductase M1 Novel U 0.00016594035939755395 -0.2622632938923073 1.0 19067 +235559 Topbp1 topoisomerase (DNA) II binding protein 1 Novel U 0.00016593290804823235 -0.26226337107313863 1.0 19068 +225922 Oosp2 oocyte secreted protein 2 Novel U 0.00016577318235777957 -0.2622650255065896 1.0 19069 +15421 Hoxc12 homeobox C12 Novel U 0.000165672337920072 -0.2622660700499603 1.0 19070 +320554 Tcp11l1 t-complex 11 like 1 Novel U 0.00016564731934658576 -0.26226632919152204 1.0 19071 +67967 Pold3 polymerase (DNA-directed), delta 3, accessory subunit Novel U 0.00016560271075351582 -0.2622667912458626 1.0 19072 +71778 Klhl5 kelch-like 5 Novel U 0.00016558027399322828 -0.2622670236450881 1.0 19073 +234725 Zfp612 zinc finger protein 612 Novel U 0.0001655045710739554 -0.26226780777343733 1.0 19074 +213464 Rbbp5 retinoblastoma binding protein 5, histone lysine methyltransferase complex subunit Novel N 0.0001654524212268105 -0.2622683479398397 1.0 19075 +271005 Klhdc1 kelch domain containing 1 Novel U 0.0001653642650496366 -0.2622692610586249 1.0 19076 +68079 Pdcd2l programmed cell death 2-like Novel U 0.00016535609150830773 -0.26226934571989735 1.0 19077 +238690 Zfp458 zinc finger protein 458 Novel U 0.00016534505944288907 -0.2622694599896683 1.0 19078 +108899 Zfta zinc finger translocation associated Novel U 0.00016529372067058582 -0.2622699917549841 1.0 19079 +13479 Dpep1 dipeptidase 1 Novel N 0.0001651895468678626 -0.2622710707838082 1.0 19080 +69367 Glrx2 glutaredoxin 2 Novel U 0.00016517693755461476 -0.2622712013906603 1.0 19081 +108017 Fxyd4 FXYD domain-containing ion transport regulator 4 Novel U 0.00016510330732627225 -0.262271964050145 1.0 19082 +72440 Rhno1 RAD9-HUS1-RAD1 interacting nuclear orphan 1 Novel U 0.00016495449089967785 -0.2622735054857996 1.0 19083 +14598 Ggt1 gamma-glutamyltransferase 1 Novel U 0.00016489748508047818 -0.2622740959502009 1.0 19084 +67592 4930524B15Rik RIKEN cDNA 4930524B15 gene Novel U 0.00016485915323746292 -0.26227449299017075 1.0 19085 +497652 Acd adrenocortical dysplasia Novel U 0.00016485759672557927 -0.2622745091124697 1.0 19086 +330260 Pon2 paraoxonase 2 Novel U 0.00016480823627178053 -0.2622750203864275 1.0 19087 +67011 Mettl6 methyltransferase 6, methylcytidine Novel N 0.0001647857816222036 -0.2622752529709496 1.0 19088 +105833 Ccdc65 coiled-coil domain containing 65 Novel U 0.00016471027448409573 -0.262276035071404 1.0 19089 +77794 Adamtsl2 ADAMTS-like 2 Novel U 0.0001645205395351724 -0.2622780003397678 1.0 19090 +20530 Slc31a2 solute carrier family 31, member 2 Novel N 0.00016444824188132298 -0.2622787491964897 1.0 19091 +19725 Rfx2 regulatory factor X, 2 (influences HLA class II expression) Novel U 0.00016434344253735537 -0.2622798347046494 1.0 19092 +100463512 Mtrnr2l7 mt-Rnr2 like 7 Novel U 0.0001642989186101812 -0.2622802958820234 1.0 19093 +338350 Acad12 acyl-Coenzyme A dehydrogenase family, member 12 Novel U 0.00016418881493179984 -0.26228143633230466 1.0 19094 +26897 Acot1 acyl-CoA thioesterase 1 Novel U 0.0001641602852419361 -0.26228173184189435 1.0 19095 +239556 Cacna1i calcium channel, voltage-dependent, alpha 1I subunit Novel U 0.00016415959503666392 -0.2622817389910179 1.0 19096 +191578 Helq helicase, POLQ-like Novel N 0.00016404343964472522 -0.2622829421247492 1.0 19097 +382075 Cimap1c ciliary microtubule associated protein 1C Novel U 0.00016403654424131637 -0.26228301354711103 1.0 19098 +56746 Tex101 testis expressed gene 101 Novel U 0.00016382489678776842 -0.26228520578447734 1.0 19099 +107585 Dio3 deiodinase, iodothyronine type III Novel N 0.00016373350603362223 -0.2622861524069045 1.0 19100 +68988 Prpf31 pre-mRNA processing factor 31 Novel N 0.00016371757411064126 -0.26228631742923897 1.0 19101 +627081 Xlr5b X-linked lymphocyte-regulated 5B Novel U 0.000163646991879452 -0.2622870485176694 1.0 19102 +66576 Uqcrh ubiquinol-cytochrome c reductase hinge protein Novel U 0.0001635356770477054 -0.26228820151303733 1.0 19103 +13370 Dio1 deiodinase, iodothyronine, type I Novel N 0.0001635264998943737 -0.2622882965696899 1.0 19104 +381667 Lrcol1 leucine rich colipase-like 1 Novel U 0.00016347774151946937 -0.26228880160733425 1.0 19105 +94218 Cnnm3 cyclin M3 Novel U 0.00016346581083280344 -0.2622889251849946 1.0 19106 +13798 En1 engrailed 1 Novel U 0.00016345993342701357 -0.2622889860629705 1.0 19107 +225280 Ino80c INO80 complex subunit C Novel N 0.00016344342468145725 -0.2622891570600143 1.0 19108 +30956 Aass aminoadipate-semialdehyde synthase Novel U 0.00016343562934992504 -0.26228923780380203 1.0 19109 +66780 4933436I01Rik RIKEN cDNA 4933436I01 gene Novel U 0.00016335327726018725 -0.26229009080404037 1.0 19110 +320040 Rnf222 ring finger protein 222 Novel U 0.00016329631812835008 -0.2622906807848555 1.0 19111 +194738 Rhox11 reproductive homeobox 11 Novel U 0.00016323645641507466 -0.2622913008305138 1.0 19112 +226040 Tmem252 transmembrane protein 252 Novel U 0.00016309779507738854 -0.26229273708009126 1.0 19113 +269378 Ahcy S-adenosylhomocysteine hydrolase Novel U 0.00016309666071082448 -0.26229274882982284 1.0 19114 +69748 Aldh16a1 aldehyde dehydrogenase 16 family, member A1 Novel U 0.0001629424412379984 -0.2622943462300527 1.0 19115 +545667 Shisal2a shisa like 2A Novel U 0.00016291493833709466 -0.26229463110419615 1.0 19116 +242126 Slc22a15 solute carrier family 22 (organic anion/cation transporter), member 15 Novel U 0.0001629112386110898 -0.26229466942583646 1.0 19117 +22776 Zim1 zinc finger, imprinted 1 Novel U 0.00016278387794029875 -0.26229598862347775 1.0 19118 +66991 Khdc3 KH domain containing 3, subcortical maternal complex member Novel U 0.0001626558398807324 -0.26229731483748975 1.0 19119 +219149 Xkr6 X-linked Kx blood group related 6 Novel U 0.00016258333523660058 -0.2622980658382102 1.0 19120 +74121 Acoxl acyl-Coenzyme A oxidase-like Novel U 0.00016256596638184966 -0.26229824574423677 1.0 19121 +15468 Prmt2 protein arginine N-methyltransferase 2 Novel U 0.00016254798480924522 -0.26229843199677466 1.0 19122 +14885 Gtf2h4 general transcription factor II H, polypeptide 4 Novel N 0.00016252390924036817 -0.26229868137072565 1.0 19123 +65102 Nif3l1 Ngg1 interacting factor 3-like 1 (S. pombe) Novel N 0.0001625228265800011 -0.26229869258488614 1.0 19124 +71726 Smug1 single-strand selective monofunctional uracil DNA glycosylase Novel N 0.00016251487436152833 -0.2622987749537037 1.0 19125 +70989 Jhy junctional cadherin complex regulator Novel U 0.0001623730987354479 -0.262300243460978 1.0 19126 +360214 Defb39 defensin beta 39 Novel U 0.00016218126554345358 -0.2623022304628745 1.0 19127 +235028 Zfp426 zinc finger protein 426 Novel U 0.000162112681614388 -0.2623029408529572 1.0 19128 +195333 Gsc2 goosecoid homebox 2 Novel N 0.00016210188905878368 -0.26230305264189335 1.0 19129 +13999 Gm14288 predicted gene 14288 Novel U 0.00016206904565043215 -0.2623033928328374 1.0 19130 +78609 Cstdc1 cystatin domain containing 1 Novel U 0.00016205623728999846 -0.2623035255014137 1.0 19131 +69384 Tmem89 transmembrane protein 89 Novel U 0.0001620547724214697 -0.26230354067447376 1.0 19132 +71670 Acy3 aminoacylase 3 Novel U 0.00016191865895899137 -0.2623049505332436 1.0 19133 +619991 Gm6121 predicted gene 6121 Novel U 0.00016180857124095346 -0.2623060908182081 1.0 19134 +69663 Ddx51 DEAD box helicase 51 Novel U 0.00016172792441277164 -0.2623069261554033 1.0 19135 +623046 Fscb fibrous sheath CABYR binding protein Novel U 0.00016170163321017677 -0.2623071984788155 1.0 19136 +246221 Mpst mercaptopyruvate sulfurtransferase Novel N 0.0001616877172223054 -0.2623073426201604 1.0 19137 +67862 2310033P09Rik RIKEN cDNA 2310033P09 gene Novel U 0.00016168125098335207 -0.2623074095972509 1.0 19138 +223809 Smgc submandibular gland protein C Novel U 0.00016159966192038602 -0.26230825469408303 1.0 19139 +12396 Cbfa2t2 CBFA2/RUNX1 translocation partner 2 Novel U 0.00016147540612256026 -0.26230954173155224 1.0 19140 +140918 Slc7a12 solute carrier family 7 (cationic amino acid transporter, y+ system), member 12 Novel U 0.00016145749541949354 -0.2623097272500258 1.0 19141 +23831 Car14 carbonic anhydrase 14 Novel U 0.0001613536534087467 -0.2623108028421595 1.0 19142 +14238 Foxf2 forkhead box F2 Novel U 0.000161233962126973 -0.2623120426005215 1.0 19143 +20445 St6galnac1 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 1 Novel N 0.00016121743264720117 -0.26231221381232955 1.0 19144 +230234 Abitram actin binding transcription modulator Novel U 0.00016114041056280995 -0.26231301160454773 1.0 19145 +171210 Acot2 acyl-CoA thioesterase 2 Novel U 0.0001610779613166364 -0.26231365845178667 1.0 19146 +56856 Insm2 insulinoma-associated 2 Novel U 0.0001610749903884271 -0.2623136892245634 1.0 19147 +216453 Rdh19 retinol dehydrogenase 19 Novel U 0.00016106815746318772 -0.2623137599997784 1.0 19148 +101055983 Gm14569 predicted gene 14569 Novel U 0.00016100805398551476 -0.26231438254962436 1.0 19149 +212390 Klhl32 kelch-like 32 Novel U 0.00016086506823039982 -0.26231586359137543 1.0 19150 +329659 E130311K13Rik RIKEN cDNA E130311K13 gene Novel U 0.00016074735222841547 -0.2623170828898543 1.0 19151 +243537 Uroc1 urocanase domain containing 1 Novel N 0.00016070737710876517 -0.2623174969508295 1.0 19152 +67037 Pmf1 polyamine-modulated factor 1 Novel U 0.00016067011188431945 -0.2623178829427993 1.0 19153 +218506 Mrps27 mitochondrial ribosomal protein S27 Novel N 0.00016059988371283618 -0.26231861036389087 1.0 19154 +215476 Prr14l proline rich 14-like Novel U 0.00016053772795531545 -0.262319254171184 1.0 19155 +12457 Noct nocturnin Novel N 0.00016052507704048173 -0.262319385208944 1.0 19156 +73016 Kremen2 kringle containing transmembrane protein 2 Novel U 0.00016052164313749192 -0.2623194207771983 1.0 19157 +66396 Ccdc82 coiled-coil domain containing 82 Novel U 0.00016048094573641638 -0.26231984231954075 1.0 19158 +116852 Akr1c20 aldo-keto reductase family 1, member C20 Novel U 0.00016039965980476346 -0.2623206842765487 1.0 19159 +22404 Wiz widely-interspaced zinc finger motifs Novel U 0.0001603771698147168 -0.2623209172271263 1.0 19160 +74558 Gvin1 GTPase, very large interferon inducible 1 Novel U 0.00016034426171452975 -0.26232125808814627 1.0 19161 +72139 Zfp1006 zinc finger protein 1006 Novel U 0.0001602425023689357 -0.26232231210810275 1.0 19162 +545758 Slc10a4-ps solute carrier family 10 (sodium/bile acid cotransporter family), pseudogene Novel U 0.0001602080539206946 -0.2623226689239972 1.0 19163 +668106 Gm8978 predicted gene 8978 Novel U 0.00016019331338501376 -0.2623228216059812 1.0 19164 +75828 Hormad2 HORMA domain containing 2 Novel U 0.00016018726261421223 -0.26232288427966627 1.0 19165 +243937 Zfp536 zinc finger protein 536 Novel N 0.00016015173258508174 -0.26232325229854003 1.0 19166 +104348 Zfp120 zinc finger protein 120 Novel U 0.00016014822978757513 -0.26232328858040144 1.0 19167 +15423 Hoxc4 homeobox C4 Novel N 0.0001601454387706285 -0.2623233174896632 1.0 19168 +75812 Tasp1 taspase, threonine aspartase 1 Novel U 0.00016006138600031407 -0.262324188105495 1.0 19169 +628813 Gm11437 predicted gene 11437 Novel U 0.00015981764568313064 -0.2623267127596879 1.0 19170 +237558 Myrfl myelin regulatory factor-like Novel U 0.00015977413448489417 -0.2623271634472489 1.0 19171 +212127 Proser1 proline and serine rich 1 Novel U 0.00015975126728313795 -0.262327400304973 1.0 19172 +11497 Adam3 ADAM metallopeptidase domain 3 Novel U 0.00015962261181937202 -0.26232873291403735 1.0 19173 +320209 Ddx11 DEAD/H box helicase 11 Novel U 0.0001594900376797999 -0.26233010611261687 1.0 19174 +18630 Dcaf8l DDB1 and CUL4 associated factor 8 like Novel U 0.00015925598247615313 -0.26233253044872207 1.0 19175 +380701 Slc47a2 solute carrier family 47, member 2 Novel U 0.00015918154591037617 -0.26233330146022343 1.0 19176 +80744 Cwc22 CWC22 spliceosome-associated protein Novel U 0.00015913139152720933 -0.26233382095767555 1.0 19177 +73667 2410004P03Rik RIKEN cDNA 2410004P03 gene Novel U 0.00015910964883988676 -0.2623340461677161 1.0 19178 +233537 Gdpd4 glycerophosphodiester phosphodiesterase domain containing 4 Novel U 0.00015910224641072865 -0.26233412284183394 1.0 19179 +20447 St6galnac3 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 3 Novel U 0.00015908378488701735 -0.2623343140656897 1.0 19180 +68214 Gsto2 glutathione S-transferase omega 2 Novel N 0.00015905941787750844 -0.2623345664583731 1.0 19181 +18416 Otc ornithine transcarbamylase Novel U 0.00015905590353906964 -0.26233460285977517 1.0 19182 +20019 Polr1a polymerase (RNA) I polypeptide A Novel U 0.000158873589707915 -0.262336491260445 1.0 19183 +242523 Dmrta1 doublesex and mab-3 related transcription factor like family A1 Novel U 0.00015886644960421025 -0.2623365652174045 1.0 19184 +73481 Prss59 serine protease 59 Novel U 0.00015885343567936266 -0.26233670001521026 1.0 19185 +227867 Epc2 enhancer of polycomb homolog 2 Novel N 0.00015852835689959496 -0.26234006717052466 1.0 19186 +24059 Slco2a1 solute carrier organic anion transporter family, member 2a1 Novel U 0.00015852469566534272 -0.2623401050934687 1.0 19187 +50757 Fbxw14 F-box and WD-40 domain protein 14 Novel U 0.00015846590879509985 -0.26234071400593817 1.0 19188 +100861839 Gm21258 predicted gene, 21258 Novel U 0.00015845492001316289 -0.2623408278273802 1.0 19189 +108168551 Gm21488 predicted gene, 21488 Novel U 0.00015842610554953074 -0.2623411262866473 1.0 19190 +399603 Lratd2 LRAT domain containing 1 Novel U 0.00015808149009532136 -0.2623446958021934 1.0 19191 +233826 Palb2 partner and localizer of BRCA2 Novel U 0.00015802793219708654 -0.2623452505531427 1.0 19192 +21785 Tff2 trefoil factor 2 (spasmolytic protein 1) Novel U 0.00015794683849204734 -0.2623460905190737 1.0 19193 +382073 Cenatac centrosomal AT-AC splicing factor Novel U 0.00015742384726744575 -0.26235150764498566 1.0 19194 +17117 Amacr alpha-methylacyl-CoA racemase Novel N 0.00015735670533242055 -0.26235220309894147 1.0 19195 +72236 Tsnaxip1 translin-associated factor X (Tsnax) interacting protein 1 Novel U 0.00015732368067267828 -0.26235254516728146 1.0 19196 +19691 Recql RecQ protein-like Novel U 0.00015730675521917757 -0.26235272048057245 1.0 19197 +620292 Cntnap5c contactin associated protein-like 5C Novel U 0.00015729889176025938 -0.2623528019300214 1.0 19198 +20449 St8sia1 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 1 Novel N 0.00015723150562020613 -0.2623534999134449 1.0 19199 +67689 Aldh3b1 aldehyde dehydrogenase 3 family, member B1 Novel N 0.00015718674863837712 -0.2623539635047914 1.0 19200 +66284 Gkn2 gastrokine 2 Novel U 0.00015709309050719058 -0.2623549336126354 1.0 19201 +76788 Klhdc10 kelch domain containing 10 Novel U 0.00015704693645281057 -0.26235541167481335 1.0 19202 +239852 Zpld1 zona pellucida like domain containing 1 Novel U 0.00015694835719460323 -0.2623564327555293 1.0 19203 +240690 St18 suppression of tumorigenicity 18 Novel U 0.00015691791527680323 -0.26235674807191317 1.0 19204 +28248 Slco1a1 solute carrier organic anion transporter family, member 1a1 Novel U 0.00015691023471149095 -0.26235682762695617 1.0 19205 +26877 B3galt1 UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 1 Novel N 0.00015678673959608288 -0.26235810678530186 1.0 19206 +236852 Magea10 MAGE family member A10 Novel U 0.00015675215521850736 -0.2623584650091479 1.0 19207 +75328 Fam243 family with sequence similarity 243 Novel U 0.0001566619778002301 -0.262359399063882 1.0 19208 +56386 B4galt6 UDP-Gal:betaGlcNAc beta 1,4-galactosyltransferase, polypeptide 6 Novel N 0.00015663047435698048 -0.26235972537551155 1.0 19209 +214779 Zfp879 zinc finger protein 879 Novel U 0.00015661819905847058 -0.26235985252265 1.0 19210 +193742 Abhd16a abhydrolase domain containing 16A Novel N 0.00015657694866539804 -0.2623602797928654 1.0 19211 +235497 Leo1 Leo1, Paf1/RNA polymerase II complex component Novel N 0.0001565137265981793 -0.26236093464495935 1.0 19212 +18567 Pdcd2 programmed cell death 2 Novel N 0.00015649766587928578 -0.2623611010013577 1.0 19213 +234595 Slc38a7 solute carrier family 38, member 7 Novel N 0.00015636687506129674 -0.2623624557283509 1.0 19214 +22619 Siae sialic acid acetylesterase Novel N 0.00015624482716890666 -0.26236371989640817 1.0 19215 +69469 Tmco2 transmembrane and coiled-coil domains 2 Novel U 0.00015615689669197972 -0.2623646306773976 1.0 19216 +228852 Ppp1r16b protein phosphatase 1, regulatory subunit 16B Novel U 0.00015614534195995274 -0.2623647503609321 1.0 19217 +67092 Gatm glycine amidinotransferase (L-arginine:glycine amidinotransferase) Novel N 0.00015613449511596515 -0.26236486271218556 1.0 19218 +434784 Ldoc1 regulator of NFKB signaling Novel U 0.00015604244904488497 -0.2623658161223639 1.0 19219 +83560 Tex14 testis expressed gene 14 intercellular bridge forming factor Novel N 0.00015602045459909677 -0.26236604394011037 1.0 19220 +68472 Tmem126b transmembrane protein 126B Novel U 0.00015599044327231445 -0.26236635479644665 1.0 19221 +69305 Dcps decapping enzyme, scavenger Novel U 0.00015592152648772462 -0.2623670686342359 1.0 19222 +72107 Dscc1 DNA replication and sister chromatid cohesion 1 Novel U 0.00015587824117860953 -0.2623675169820448 1.0 19223 +21366 Slc6a6 solute carrier family 6 (neurotransmitter transporter, taurine), member 6 Novel U 0.00015577605423409776 -0.26236857543105685 1.0 19224 +329977 Fhad1 forkhead-associated phosphopeptide binding domain 1 Novel U 0.0001557718269827888 -0.2623686192167869 1.0 19225 +72544 Exosc6 exosome component 6 Novel N 0.00015558514114393716 -0.2623705529025688 1.0 19226 +77432 9530002B09Rik RIKEN cDNA 9530002B09 gene Novel U 0.00015533417577915742 -0.2623731523935671 1.0 19227 +319953 Ttll1 tubulin tyrosine ligase-like 1 Novel N 0.00015529185678181485 -0.26237359073235045 1.0 19228 +107528 Magee1 MAGE family member E1 Novel U 0.0001551325496890384 -0.2623752408299805 1.0 19229 +230890 Aadacl4fm4 AADACL4 family member 4 Novel U 0.00015512618800448303 -0.2623753067241 1.0 19230 +58198 Sall1 spalt like transcription factor 1 Novel U 0.00015501805750387068 -0.2623764267362707 1.0 19231 +228875 Slc35c2 solute carrier family 35, member C2 Novel U 0.00015497682847363784 -0.26237685378521053 1.0 19232 +68396 Nat8 N-acetyltransferase 8 (GCN5-related) Novel U 0.00015497640803498137 -0.2623768581401003 1.0 19233 +75667 Tmem225 transmembrane protein 225 Novel U 0.000154943722495857 -0.2623771966958401 1.0 19234 +240726 Slco5a1 solute carrier organic anion transporter family, member 5A1 Novel U 0.00015476419485194924 -0.26237905623727403 1.0 19235 +668929 Rad21l RAD21-like (S. pombe) Novel U 0.00015470951731471355 -0.26237962258540726 1.0 19236 +63993 Slc5a7 solute carrier family 5 (choline transporter), member 7 Novel U 0.00015466363127989078 -0.26238009787144756 1.0 19237 +338403 Cndp1 carnosine dipeptidase 1 Novel N 0.00015464554691603408 -0.2623802851886939 1.0 19238 +104360 Isl2 insulin related protein 2 (islet 2) Novel N 0.00015462998497568507 -0.26238044637876046 1.0 19239 +320522 Bhlha9 basic helix-loop-helix family, member a9 Novel U 0.0001546103433391947 -0.2623806498261856 1.0 19240 +17145 Mageb1 MAGE family member B1 Novel U 0.0001544960598390338 -0.2623818335709234 1.0 19241 +11643 Akap4 A kinase anchor protein 4 Novel N 0.00015448317769542046 -0.2623819670037434 1.0 19242 +192136 Sugct succinyl-CoA glutarate-CoA transferase Novel U 0.0001544787224854962 -0.26238201315066134 1.0 19243 +69870 Polr3gl polymerase (RNA) III (DNA directed) polypeptide G like Novel U 0.00015430519803878503 -0.2623838105111761 1.0 19244 +329942 Csmd2 CUB and Sushi multiple domains 2 Novel U 0.00015426719736721513 -0.262384204120883 1.0 19245 +75276 Ppp1r1c protein phosphatase 1, regulatory inhibitor subunit 1C Novel U 0.00015420660687587385 -0.2623848317152005 1.0 19246 +68344 Tmem174 transmembrane protein 174 Novel U 0.00015417988054791754 -0.2623851085456269 1.0 19247 +66117 Fmc1 formation of mitochondrial complex V assembly factor 1 Novel N 0.00015417078815332288 -0.26238520272435123 1.0 19248 +77337 Akr1c21 aldo-keto reductase family 1, member C21 Novel U 0.00015396464863712695 -0.2623873379106835 1.0 19249 +23925 Kel Kell blood group Novel N 0.000153823814423003 -0.2623887966668437 1.0 19250 +98256 Kmo kynurenine 3-monooxygenase Novel N 0.00015374754253220433 -0.2623895866885813 1.0 19251 +102294 Cyp4v3 cytochrome P450, family 4, subfamily v, polypeptide 3 Novel U 0.00015374447955590842 -0.2623896184147891 1.0 19252 +384452 Noto notochord homeobox Novel U 0.0001537326197077612 -0.26238974125870634 1.0 19253 +56409 Nudt3 nudix hydrolase 3 Novel N 0.00015362514923668885 -0.26239085443431276 1.0 19254 +15399 Hoxa2 homeobox A2 Novel U 0.000153538909402384 -0.2623917477036815 1.0 19255 +77809 Lrrc42 leucine rich repeat containing 42 Novel U 0.0001533959241011618 -0.26239322874073123 1.0 19256 +56306 Sinhcaf SIN3-HDAC complex associated factor Novel N 0.00015328011714344894 -0.2623944282653922 1.0 19257 +19662 Rbp4 retinol binding protein 4, plasma Novel U 0.00015309075781337524 -0.2623963896431083 1.0 19258 +110417 Pigh phosphatidylinositol glycan anchor biosynthesis, class H Novel U 0.00015304053060774593 -0.2623969098948531 1.0 19259 +239083 Ccnb1ip1 cyclin B1 interacting protein 1 Novel U 0.0001530368524725604 -0.2623969479928564 1.0 19260 +233875 Ino80e INO80 complex subunit E Novel N 0.00015293996269394577 -0.2623979515739982 1.0 19261 +74271 Mageb5 MAGE family member B5 Novel U 0.00015293551645237293 -0.2623979976280223 1.0 19262 +218832 Polr3a polymerase (RNA) III (DNA directed) polypeptide A Novel U 0.00015288905896966527 -0.26239847883310097 1.0 19263 +13110 Cyp2j6 cytochrome P450, family 2, subfamily j, polypeptide 6 Novel U 0.00015277371452611236 -0.2623996735670555 1.0 19264 +114602 Zmynd10 zinc finger, MYND domain containing 10 Novel N 0.0001527412760408076 -0.26240000956382 1.0 19265 +18998 Pou4f3 POU domain, class 4, transcription factor 3 Novel N 0.0001525109055795382 -0.2624023957334848 1.0 19266 +237761 Sowaha sosondowah ankyrin repeat domain family member A Novel U 0.00015249309776795955 -0.2624025801862117 1.0 19267 +217216 Hrob homologous recombination factor with OB-fold Novel N 0.00015248946433955428 -0.26240261782114366 1.0 19268 +50795 Sh3bgr SH3-binding domain glutamic acid-rich protein Novel U 0.000152420247435773 -0.26240333476755767 1.0 19269 +245511 Ppp4r3c1 protein phosphatase 4 regulatory subunit 3C1 Novel U 0.00015236382178988598 -0.26240391922254286 1.0 19270 +73451 Zfp763 zinc finger protein 763 Novel U 0.00015223311468204833 -0.2624052730824691 1.0 19271 +66885 Acadsb acyl-Coenzyme A dehydrogenase, short/branched chain Novel N 0.00015217096626839231 -0.26240591681369474 1.0 19272 +75459 Syce3 synaptonemal complex central element protein 3 Novel U 0.00015215124404073887 -0.2624061210958804 1.0 19273 +231413 Grsf1 G-rich RNA sequence binding factor 1 Novel N 0.00015214970099930818 -0.26240613707865285 1.0 19274 +70873 Cnbd2 cyclic nucleotide binding domain containing 2 Novel U 0.0001517661975498244 -0.2624101093947756 1.0 19275 +639634 Aadacl2 arylacetamide deacetylase like 2 Novel U 0.00015160774552125744 -0.2624117506356787 1.0 19276 +67741 4930579F01Rik RIKEN cDNA 4930579F01 gene Novel U 0.00015156060904700016 -0.2624122388737295 1.0 19277 +218030 Pou6f2 POU domain, class 6, transcription factor 2 Novel U 0.00015151556182540295 -0.2624127054713699 1.0 19278 +384214 Ephx4 epoxide hydrolase 4 Novel U 0.00015150009594239286 -0.26241286566647776 1.0 19279 +70950 Ccdc178 coiled coil domain containing 178 Novel U 0.00015132212567101714 -0.26241470907669817 1.0 19280 +320116 Fndc9 fibronectin type III domain containing 9 Novel U 0.00015126457791337476 -0.2624153051544801 1.0 19281 +98314 D2hgdh D-2-hydroxyglutarate dehydrogenase Novel U 0.0001511476583016325 -0.262416516203975 1.0 19282 +242669 Azin2 antizyme inhibitor 2 Novel U 0.00015109537357541113 -0.2624170577674504 1.0 19283 +66614 Gpatch4 G patch domain containing 4 Novel U 0.0001510200645645948 -0.2624178378157088 1.0 19284 +68002 Sdhaf4 succinate dehydrogenase complex assembly factor 4 Novel N 0.00015082593884229467 -0.2624198485635588 1.0 19285 +97827 Exd2 exonuclease 3'-5' domain containing 2 Novel N 0.00015080838850111894 -0.2624200303494158 1.0 19286 +56380 Arid3b AT-rich interaction domain 3B Novel U 0.00015080510604037305 -0.2624200643490363 1.0 19287 +544710 Krtap10-10 keratin associated protein 10-10 Novel U 0.00015078990650744972 -0.26242022178529867 1.0 19288 +211305 Fbxw13 F-box and WD-40 domain protein 13 Novel U 0.00015068728462056224 -0.26242128473942955 1.0 19289 +67288 Srek1ip1 splicing regulatory glutamine/lysine-rich protein 1interacting protein 1 Novel U 0.00015063618849078323 -0.2624218139914621 1.0 19290 +71807 Tars2 threonyl-tRNA synthetase 2, mitochondrial (putative) Novel N 0.00015060955159142567 -0.26242208989559 1.0 19291 +72041 Alkbh4 alkB homolog 4, lysine demethylase Novel U 0.00015060254017624356 -0.26242216251959793 1.0 19292 +226143 Cyp2c23 cytochrome P450, family 2, subfamily c, polypeptide 23 Novel U 0.0001505190855596052 -0.26242302693977365 1.0 19293 +17752 Mt4 metallothionein 4 Novel U 0.00015045968360422044 -0.2624236422232748 1.0 19294 +629147 Ctxn3 cortexin 3 Novel U 0.0001500896063400116 -0.2624274754714119 1.0 19295 +194856 Rhox4e reproductive homeobox 4E Novel U 0.0001499824867265573 -0.26242858501284666 1.0 19296 +68880 Fam240b family with sequence similarity 240 member B Novel U 0.00014997645759325708 -0.2624286474624112 1.0 19297 +414069 Actmap actin maturation protease Novel N 0.00014982286204558355 -0.2624302384000448 1.0 19298 +70952 Poteg POTE ankyrin domain family, member G Novel U 0.00014975384884686975 -0.2624309532364884 1.0 19299 +245020 Slc35g2 solute carrier family 35, member G2 Novel U 0.00014970961186892902 -0.2624314114416517 1.0 19300 +69113 Alkbh3 alkB homolog 3, alpha-ketoglutarate-dependent dioxygenase Novel N 0.00014966393762784382 -0.2624318845339394 1.0 19301 +66658 Ccdc51 coiled-coil domain containing 51 Novel U 0.00014964250166442678 -0.26243210656694377 1.0 19302 +211896 Depdc7 DEP domain containing 7 Novel U 0.0001495799093004122 -0.2624327548965926 1.0 19303 +72479 Hsdl2 hydroxysteroid dehydrogenase like 2 Novel U 0.0001494556997896523 -0.2624340414546219 1.0 19304 +110958 M1ap meiosis 1 associated protein Novel N 0.00014941285608165278 -0.262434485228341 1.0 19305 +231044 Gbx1 gastrulation brain homeobox 1 Novel U 0.0001494011280355511 -0.262434606707057 1.0 19306 +195531 Zfp982 zinc finger protein 982 Novel U 0.00014934154970354556 -0.26243522381746137 1.0 19307 +18778 Pla2g1b phospholipase A2, group IB, pancreas Novel U 0.0001492277576725321 -0.2624364024715779 1.0 19308 +66845 Mrpl33 mitochondrial ribosomal protein L33 Novel U 0.00014920072430654768 -0.26243668248229407 1.0 19309 +70163 Lypd8 LY6/PLAUR domain containing 8 Novel U 0.00014917519343534937 -0.26243694693021863 1.0 19310 +76606 Llcfc1 LLLL and CFNLAS motif containing 1 Novel U 0.0001491748055761304 -0.2624369509476517 1.0 19311 +100503361 Tmem95 transmembrane protein 95 Novel U 0.00014914990344313183 -0.2624372088831267 1.0 19312 +208164 Fam180a family with sequence similarity 180, member A Novel U 0.00014911315260089924 -0.2624375895471424 1.0 19313 +22024 Crisp2 cysteine-rich secretory protein 2 Novel U 0.0001491067640955811 -0.26243765571907046 1.0 19314 +73748 Gadl1 glutamate decarboxylase-like 1 Novel U 0.00014906923356483638 -0.2624380444590742 1.0 19315 +216867 Slc16a11 solute carrier family 16 (monocarboxylic acid transporters), member 11 Novel U 0.000148956858356693 -0.262439208437786 1.0 19316 +544792 Gsg1l2 GSG1-like 2 Novel U 0.00014890637449951343 -0.2624397313479191 1.0 19317 +18503 Pax1 paired box 1 Novel U 0.0001488556296960026 -0.2624402569609257 1.0 19318 +230379 Acer2 alkaline ceramidase 2 Novel U 0.00014880796007797295 -0.2624407507212622 1.0 19319 +209743 Minar1 membrane integral NOTCH2 associated receptor 1 Novel U 0.0001487636460340855 -0.26244120972467205 1.0 19320 +108168509 Gm20835 predicted gene, 20835 Novel U 0.0001487247311922552 -0.26244161280332445 1.0 19321 +53422 Ybx2 Y box protein 2 Novel N 0.0001486771109037856 -0.262442106052707 1.0 19322 +209550 Rad51ap2 RAD51 associated protein 2 Novel U 0.00014866549958535106 -0.26244222632236164 1.0 19323 +67760 Slc38a2 solute carrier family 38, member 2 Novel N 0.0001486291707284006 -0.2624426026154677 1.0 19324 +21340 Taf1b TATA-box binding protein associated factor, RNA polymerase I, B Novel N 0.00014860854534806117 -0.2624428162524792 1.0 19325 +67219 Med18 mediator complex subunit 18 Novel U 0.00014858219345433526 -0.2624430892045282 1.0 19326 +69020 Zfp707 zinc finger protein 707 Novel U 0.0001485756515239758 -0.2624431569656278 1.0 19327 +74183 Perm1 PPARGC1 and ESRR induced regulator, muscle 1 Novel U 0.00014843030792576574 -0.2624446624298401 1.0 19328 +69232 Qrich1 glutamine-rich 1 Novel U 0.00014824288554867303 -0.2624466037446609 1.0 19329 +93889 Pcdhb18 protocadherin beta 18 Novel U 0.00014818439869379975 -0.262447209549581 1.0 19330 +29859 Sult4a1 sulfotransferase family 4A, member 1 Novel U 0.00014807177773816936 -0.2624483760737372 1.0 19331 +14912 Nkx6-2 NK6 homeobox 2 Novel N 0.0001478862275775832 -0.26245029799620095 1.0 19332 +433956 Dnaaf5 dynein, axonemal assembly factor 5 Novel N 0.00014784034672165905 -0.26245077322859833 1.0 19333 +194952 Jmjd4 jumonji domain containing 4 Novel U 0.00014779209013689607 -0.26245127306871696 1.0 19334 +21384 Tbx15 T-box 15 Novel U 0.00014766478134526495 -0.2624525917289956 1.0 19335 +67935 Ces5a carboxylesterase 5A Novel U 0.00014766195367969462 -0.26245262101786265 1.0 19336 +109593 Lmo3 LIM domain only 3 Novel U 0.000147609327378434 -0.2624531661193611 1.0 19337 +209448 Hoxc10 homeobox C10 Novel N 0.00014758196581946283 -0.26245344952948946 1.0 19338 +70810 Krt25 keratin 25 Novel N 0.0001475211978719741 -0.26245407896189193 1.0 19339 +353371 Oxct2b 3-oxoacid CoA transferase 2B Novel U 0.00014741579140429436 -0.26245517075861907 1.0 19340 +228003 Klhl41 kelch-like 41 Novel U 0.00014732438612769771 -0.2624561175314693 1.0 19341 +668963 Btbd35f20 BTB domain containing 35, family member 20 Novel U 0.00014730531651732388 -0.2624563150538667 1.0 19342 +66387 Nudt8 nudix hydrolase 8 Novel U 0.00014706968670244772 -0.26245875569974325 1.0 19343 +105377 Slf1 SMC5-SMC6 complex localization factor 1 Novel U 0.00014705718984884015 -0.2624588851417421 1.0 19344 +20524 Slc25a17 solute carrier family 25 (mitochondrial carrier, peroxisomal membrane protein), member 17 Novel N 0.00014697016609316874 -0.2624597865309426 1.0 19345 +76389 Ankrd36 ankyrin repeat domain 36 Novel U 0.00014696953798390753 -0.26245979303687766 1.0 19346 +78257 Lrrc9 leucine rich repeat containing 9 Novel U 0.0001469327067269783 -0.2624601745338262 1.0 19347 +22715 Zfp57 zinc finger protein 57 Novel U 0.000146849633445917 -0.26246103500414053 1.0 19348 +54194 Akap8l A kinase anchor protein 8-like Novel U 0.0001466709516362736 -0.26246288578445093 1.0 19349 +11409 Acads acyl-Coenzyme A dehydrogenase, short chain Novel N 0.0001465462984133356 -0.2624641769384364 1.0 19350 +56219 Extl1 exostosin-like glycosyltransferase 1 Novel N 0.00014630742214649008 -0.26246665121095575 1.0 19351 +100041351 Krtap10-24 keratin associated protein 10-24 Novel U 0.00014619491044257654 -0.2624678166034862 1.0 19352 +22787 Zp2 zona pellucida glycoprotein 2 Novel N 0.00014610980961832692 -0.2624686980750263 1.0 19353 +75538 Garin5a golgi associated RAB2 interactor 5A Novel U 0.00014604211723293298 -0.2624693992305289 1.0 19354 +108168548 Gm20897 predicted gene, 20897 Novel U 0.00014600124163950117 -0.26246982261858204 1.0 19355 +214932 Hdhd5 haloacid dehalogenase like hydrolase domain containing 5 Novel U 0.00014599873878934027 -0.2624698485430217 1.0 19356 +100038417 Spink13 serine peptidase inhibitor, Kazal type 13 Novel U 0.00014598177539240282 -0.2624700242493295 1.0 19357 +72082 Cyp2c55 cytochrome P450, family 2, subfamily c, polypeptide 55 Novel N 0.00014586754713872595 -0.26247120742182606 1.0 19358 +15208 Hes5 hes family bHLH transcription factor 5 Novel N 0.0001458295157244259 -0.26247160134996517 1.0 19359 +68636 Fahd1 fumarylacetoacetate hydrolase domain containing 1 Novel U 0.00014550583340862795 -0.2624749540407517 1.0 19360 +654795 Sdr39u1 short chain dehydrogenase/reductase family 39U, member 1 Novel U 0.00014549535731356688 -0.2624750625518 1.0 19361 +208098 Panx3 pannexin 3 Novel U 0.00014544904083095228 -0.26247554229640435 1.0 19362 +100040911 Gm20854 predicted gene, 20854 Novel U 0.00014539634322956 -0.2624760881364272 1.0 19363 +71227 Daw1 dynein assembly factor with WDR repeat domains 1 Novel N 0.00014538417114616937 -0.2624762142144668 1.0 19364 +51813 Ccnc cyclin C Novel U 0.00014534030900931002 -0.26247666853703855 1.0 19365 +75563 Dnali1 dynein, axonemal, light intermediate polypeptide 1 Novel N 0.00014528253301017497 -0.2624772669789383 1.0 19366 +73072 Prr36 proline rich 36 Novel U 0.00014509669779120052 -0.2624791918540274 1.0 19367 +11655 Alas1 aminolevulinic acid synthase 1 Novel U 0.0001450012030513748 -0.2624801809854033 1.0 19368 +103268 Cep57l1 centrosomal protein 57-like 1 Novel U 0.00014499450820134498 -0.26248025033043987 1.0 19369 +12733 Clcnka chloride channel, voltage-sensitive Ka Novel U 0.00014489403357661578 -0.26248129104329987 1.0 19370 +19360 Rad50 RAD50 double strand break repair protein Novel U 0.00014442102513637157 -0.2624861904491746 1.0 19371 +71967 Mageb16 MAGE family member B16 Novel U 0.00014440644953403692 -0.26248634142278443 1.0 19372 +77032 Tstd3 thiosulfate sulfurtransferase (rhodanese)-like domain containing 3 Novel U 0.000144371424657617 -0.26248670420930303 1.0 19373 +100039706 Gm2381 zinc finger protein 936 pseudogene Novel U 0.00014435361847227129 -0.2624868886451855 1.0 19374 +232174 Cyp26b1 cytochrome P450, family 26, subfamily b, polypeptide 1 Novel U 0.0001443363887723851 -0.26248706710985054 1.0 19375 +319446 Dpep2 dipeptidase 2 Novel N 0.00014430489310291676 -0.2624873933409595 1.0 19376 +114679 Selenom selenoprotein M Novel U 0.00014426533709797722 -0.26248780306075836 1.0 19377 +18256 Oc90 otoconin 90 Novel U 0.00014420126258160384 -0.2624884667424926 1.0 19378 +69297 Lrrc46 leucine rich repeat containing 46 Novel U 0.00014404475669440597 -0.26249008782532735 1.0 19379 +15490 Hsd17b7 hydroxysteroid (17-beta) dehydrogenase 7 Novel N 0.00014382939880549085 -0.2624923184952612 1.0 19380 +66704 Rbm4b RNA binding motif protein 4B Novel U 0.0001436786831124994 -0.2624938796034547 1.0 19381 +58176 Rhbg Rhesus blood group-associated B glycoprotein Novel N 0.00014360289843078119 -0.26249466457869663 1.0 19382 +74446 Slc9b1 solute carrier family 9, subfamily B (NHA1, cation proton antiporter 1), member 1 Novel N 0.00014344851767822886 -0.2624962636494566 1.0 19383 +100043915 Gm4724 predicted gene 4724 Novel U 0.00014341434191953266 -0.2624966176408417 1.0 19384 +223669 Zfp7 zinc finger protein 7 Novel U 0.00014339798029911076 -0.2624967871139682 1.0 19385 +20862 Stfa2 stefin A2 Novel U 0.0001433334593735581 -0.262497455419594 1.0 19386 +58250 Chst11 carbohydrate sulfotransferase 11 Novel U 0.00014329883706939512 -0.26249781403628236 1.0 19387 +668357 Dmrtc1c2 DMRT-like family C1c2 Novel U 0.00014327913721470039 -0.26249801808672973 1.0 19388 +70977 Cabs1 calcium binding protein, spermatid specific 1 Novel U 0.00014321865764374369 -0.26249864453213756 1.0 19389 +17692 Msl3 MSL complex subunit 3 Novel U 0.00014315226947772487 -0.26249933217857874 1.0 19390 +76367 Trp53rkb transformation related protein 53 regulating kinase B Novel U 0.00014314018669910723 -0.26249945733160246 1.0 19391 +22701 Zfp41 zinc finger protein 41 Novel U 0.00014311666471337616 -0.26249970097155745 1.0 19392 +73332 Ccdc30 coiled-coil domain containing 30 Novel U 0.00014303502620942988 -0.2625005465804976 1.0 19393 +240879 Ntmt2 N-terminal Xaa-Pro-Lys N-methyltransferase 2 Novel N 0.00014300456978448504 -0.26250086204714596 1.0 19394 +382118 Zkscan7 zinc finger with KRAB and SCAN domains 7 Novel U 0.0001429656887465672 -0.26250126477565855 1.0 19395 +330671 B4galnt4 beta-1,4-N-acetyl-galactosaminyl transferase 4 Novel U 0.00014280880865208292 -0.2625028897345201 1.0 19396 +14858 Gsta2 glutathione S-transferase, alpha 2 (Yc2) Novel U 0.00014280676963936197 -0.26250291085454686 1.0 19397 +107626 Asmt acetylserotonin O-methyltransferase Novel U 0.00014279127508384434 -0.2625030713466435 1.0 19398 +228368 Slc35c1 solute carrier family 35, member C1 Novel U 0.0001426944817252168 -0.26250407392907027 1.0 19399 +278203 Spaca5 sperm acrosome associated 5 Novel U 0.0001426873665724713 -0.2625041476275885 1.0 19400 +22037 Trap1a tumor rejection antigen P1A Novel U 0.00014262439519219418 -0.26250479988307535 1.0 19401 +11881 Arsb arylsulfatase B Novel U 0.00014256147291237512 -0.2625054516299813 1.0 19402 +52477 Angel2 angel homolog 2 Novel N 0.00014253781391726888 -0.2625056966890748 1.0 19403 +69533 Krtap26-1 keratin associated protein 26-1 Novel U 0.0001424949440264226 -0.2625061407339949 1.0 19404 +240119 St6gal2 beta galactoside alpha 2,6 sialyltransferase 2 Novel N 0.0001424837017681693 -0.26250625718093634 1.0 19405 +231440 Parm1 prostate androgen-regulated mucin-like protein 1 Novel U 0.00014247087406816202 -0.2625063900498314 1.0 19406 +217733 Tmem63c transmembrane protein 63c Novel N 0.00014240799740348993 -0.26250704132425706 1.0 19407 +108037 Shmt2 serine hydroxymethyltransferase 2 (mitochondrial) Novel U 0.00014234779216477117 -0.26250766492814054 1.0 19408 +215210 Tmem120a transmembrane protein 120A Novel U 0.00014226823023151457 -0.26250848902802976 1.0 19409 +243535 BC048671 cDNA sequence BC048671 Novel U 0.0001421506056054617 -0.26250970738003976 1.0 19410 +66522 Pgpep1 pyroglutamyl-peptidase I Novel U 0.00014212356541248996 -0.26250998746146964 1.0 19411 +319170 H2ac22 H2A clustered histone 22 Novel U 0.00014208597295355005 -0.26251037684292355 1.0 19412 +69294 Cst13 cystatin 13 Novel U 0.00014194601193683712 -0.2625118265545337 1.0 19413 +98682 Mfsd6 major facilitator superfamily domain containing 6 Novel U 0.00014189860147778292 -0.2625123176305101 1.0 19414 +75965 Zdhhc20 zinc finger, DHHC domain containing 20 Novel U 0.00014179466406163014 -0.2625133942108498 1.0 19415 +20248 Serpinb3a serine (or cysteine) peptidase inhibitor, clade B (ovalbumin), member 3A Novel U 0.00014177250945633256 -0.2625136236875232 1.0 19416 +74453 Cfap53 cilia and flagella associated protein 53 Novel U 0.00014169173052949738 -0.26251446039299187 1.0 19417 +72315 Ccdc74a coiled-coil domain containing 74A Novel U 0.0001416087229279014 -0.26251532018300044 1.0 19418 +278174 Ssxb3 SSX member B3 Novel U 0.0001415887101240596 -0.2625155274749648 1.0 19419 +252974 Tspear thrombospondin type laminin G domain and EAR repeats Novel U 0.00014157666999951878 -0.262515652186179 1.0 19420 +239706 Mettl22 methyltransferase 22, Kin17 lysine Novel N 0.0001414309406210901 -0.2625171616462902 1.0 19421 +230145 Galnt12 polypeptide N-acetylgalactosaminyltransferase 12 Novel N 0.000141280776247801 -0.26251871704393226 1.0 19422 +100559 Ugt2b38 UDP glucuronosyltransferase 2 family, polypeptide B38 Novel U 0.00014097778064815552 -0.262521855462393 1.0 19423 +22689 Zfp27 zinc finger protein 27 Novel U 0.00014087230092894388 -0.2625229480178571 1.0 19424 +171282 Acot4 acyl-CoA thioesterase 4 Novel N 0.00014075189444732786 -0.26252419518423553 1.0 19425 +329055 Lipo1 lipase, member O1 Novel U 0.0001405356545330088 -0.26252643499015954 1.0 19426 +232878 Zscan22 zinc finger and SCAN domain containing 22 Novel U 0.00014051172913381743 -0.2625266828086579 1.0 19427 +70592 5730480H06Rik RIKEN cDNA 5730480H06 gene Novel U 0.0001403901875580584 -0.2625279417323041 1.0 19428 +320604 Ccdc169 coiled-coil domain containing 169 Novel U 0.0001403121975678809 -0.26252874955005856 1.0 19429 +100861973 Gm21366 predicted gene, 21366 Novel U 0.0001401825724362003 -0.26253009220291135 1.0 19430 +207181 Rbms3 RNA binding motif, single stranded interacting protein Novel N 0.00014014030562845199 -0.26253053000111654 1.0 19431 +108168545 Gm20855 predicted gene, 20855 Novel U 0.00014011842791780875 -0.2625307566097242 1.0 19432 +449521 Zfp213 zinc finger protein 213 Novel U 0.00014006405873433328 -0.2625313197639394 1.0 19433 +231583 Slc26a1 solute carrier family 26 (sulfate transporter), member 1 Novel N 0.0001400297661963785 -0.2625316749649202 1.0 19434 +17240 Mdfi MyoD family inhibitor Novel U 0.00013998892703272588 -0.2625320979756348 1.0 19435 +52443 Mrpl48 mitochondrial ribosomal protein L48 Novel U 0.00013990605768173943 -0.2625329563336481 1.0 19436 +100504234 Ccdc170 coiled-coil domain containing 170 Novel N 0.00013985594535446364 -0.2625334753954867 1.0 19437 +70862 Spata16 spermatogenesis associated 16 Novel N 0.00013973834060724996 -0.26253469354159226 1.0 19438 +66559 Metap1d methionyl aminopeptidase type 1D (mitochondrial) Novel N 0.00013967410624681398 -0.2625353588789861 1.0 19439 +381409 Cdh26 cadherin-like 26 Novel U 0.00013958012826512155 -0.2625363322998311 1.0 19440 +22445 Xlr3a X-linked lymphocyte-regulated 3A Novel U 0.00013947291104648464 -0.26253744285225716 1.0 19441 +66957 Serpinb11 serine (or cysteine) peptidase inhibitor, clade B (ovalbumin), member 11 Novel U 0.00013941586934628495 -0.2625380336883127 1.0 19442 +228491 Zfp770 zinc finger protein 770 Novel U 0.00013939634330673373 -0.2625382359383885 1.0 19443 +75284 Bcdin3d BCDIN3 domain containing Novel N 0.00013935823283945902 -0.2625386306853557 1.0 19444 +236537 Zfp352 zinc finger protein 352 Novel U 0.000139320402162816 -0.26253902253426076 1.0 19445 +668758 Fbxw28 F-box and WD-40 domain protein 28 Novel U 0.00013931808037735452 -0.26253904658323823 1.0 19446 +107587 Osr2 odd-skipped related 2 Novel U 0.00013931564014937363 -0.26253907185903946 1.0 19447 +72792 2810459M11Rik RIKEN cDNA 2810459M11 gene Novel U 0.00013925777221959645 -0.26253967125315375 1.0 19448 +319901 Dsel dermatan sulfate epimerase-like Novel N 0.00013922519965648886 -0.26254000863869165 1.0 19449 +233813 Vwa3a von Willebrand factor A domain containing 3A Novel U 0.00013899503894454764 -0.26254239263577983 1.0 19450 +320183 Msrb3 methionine sulfoxide reductase B3 Novel N 0.00013881645423060842 -0.26254424241037616 1.0 19451 +54373 Prss16 serine protease 16 (thymus) Novel U 0.00013877188047012944 -0.2625447041039219 1.0 19452 +69161 Manbal mannosidase, beta A, lysosomal-like Novel U 0.00013870305582567956 -0.26254541698732664 1.0 19453 +20148 Dhrs3 dehydrogenase/reductase 3 Novel N 0.0001386654514052918 -0.26254580649267684 1.0 19454 +70363 Fam135b family with sequence similarity 135, member B Novel U 0.00013861874837277596 -0.26254629024115234 1.0 19455 +99334 Zscan29 zinc finger SCAN domains 29 Novel U 0.00013848276375918255 -0.2625476987653097 1.0 19456 +403088 Tcaf3 TRPM8 channel-associated factor 3 Novel U 0.00013848018553707351 -0.2625477254704495 1.0 19457 +76041 Ccdc125 coiled-coil domain containing 125 Novel U 0.00013847842419117672 -0.2625477437144125 1.0 19458 +71083 Dmrtc1c1 DMRT-like family C1c1 Novel U 0.00013834492194840934 -0.2625491265262544 1.0 19459 +74407 Odad4 outer dynein arm complex subunit 4 Novel U 0.00013814567712490866 -0.2625511902975864 1.0 19460 +108168590 Gm28553 predicted gene 28553 Novel U 0.0001381078011412098 -0.26255158261578043 1.0 19461 +269346 Slc28a2 solute carrier family 28 (sodium-coupled nucleoside transporter), member 2 Novel U 0.00013806152341788443 -0.26255206195891734 1.0 19462 +75785 Klhl24 kelch-like 24 Novel U 0.00013799450268520353 -0.26255275615746326 1.0 19463 +213402 Armc2 armadillo repeat containing 2 Novel N 0.00013795610356380996 -0.26255315389430034 1.0 19464 +110959 Nudt19 nudix hydrolase 19 Novel N 0.00013794792956639836 -0.26255323856029683 1.0 19465 +319776 Tmem72 transmembrane protein 72 Novel U 0.00013794079615448224 -0.26255331244794294 1.0 19466 +328779 Hs3st6 heparan sulfate (glucosamine) 3-O-sulfotransferase 6 Novel N 0.00013787988357982474 -0.2625539433783889 1.0 19467 +108760 Galnt16 polypeptide N-acetylgalactosaminyltransferase 16 Novel N 0.00013765474823133477 -0.2625562753229276 1.0 19468 +108943 Trmt10a tRNA methyltransferase 10A Novel U 0.00013755892070234875 -0.2625572679013227 1.0 19469 +277345 Wfdc16 WAP four-disulfide core domain 16 Novel U 0.00013754377414020876 -0.2625574247889154 1.0 19470 +51938 Ccdc39 coiled-coil domain containing 39 Novel U 0.00013751476093726227 -0.2625577253067178 1.0 19471 +268663 Cdhr2 cadherin-related family member 2 Novel U 0.0001375115581605787 -0.26255775848097335 1.0 19472 +632708 Dmrtc1b DMRT-like family C1b Novel U 0.0001374472839253325 -0.26255842423138914 1.0 19473 +96935 Susd4 sushi domain containing 4 Novel U 0.0001370310487951032 -0.2625627355811851 1.0 19474 +69380 1700013G24Rik RIKEN cDNA 1700013G24 gene Novel U 0.00013691829802558818 -0.26256390344994923 1.0 19475 +232426 5530400C23Rik RIKEN cDNA 5530400C23 gene Novel U 0.00013689367801719221 -0.2625641584631868 1.0 19476 +71567 Mcm9 minichromosome maintenance 9 homologous recombination repair factor Novel U 0.00013665706244641297 -0.26256660931949066 1.0 19477 +69207 Srsf11 serine and arginine-rich splicing factor 11 Novel U 0.00013664292658326923 -0.2625667557382964 1.0 19478 +108168594 Gm21117 predicted gene, 21117 Novel U 0.00013657349027457297 -0.2625674749572993 1.0 19479 +68045 Rtraf RNA transcription, translation and transport factor Novel U 0.0001364209705306513 -0.26256905475179304 1.0 19480 +240215 Slc4a9 solute carrier family 4, sodium bicarbonate cotransporter, member 9 Novel N 0.0001361724999957102 -0.2625716284014259 1.0 19481 +242721 Klhdc7a kelch domain containing 7A Novel U 0.00013605815137713554 -0.26257281282065814 1.0 19482 +52076 Tmem38b transmembrane protein 38B Novel N 0.00013605497417977708 -0.26257284572996387 1.0 19483 +100043231 Alyreffm6 Aly/REF export factor family member 6 Novel U 0.00013595295611717472 -0.2625739024297027 1.0 19484 +18546 Pcp4 Purkinje cell protein 4 Novel U 0.00013590348720619823 -0.26257441482705635 1.0 19485 +72055 Slc38a10 solute carrier family 38, member 10 Novel U 0.00013585144856393774 -0.26257495384160223 1.0 19486 +77938 Fam53b family with sequence similarity 53, member B Novel U 0.00013572512645466665 -0.26257626228185743 1.0 19487 +103889 Hoxb2 homeobox B2 Novel N 0.00013554494602251244 -0.2625781285848506 1.0 19488 +244698 Hephl1 hephaestin-like 1 Novel U 0.00013538760092431215 -0.2625797583602053 1.0 19489 +69017 Prrt2 proline-rich transmembrane protein 2 Novel U 0.0001353771750790325 -0.26257986635076797 1.0 19490 +330998 Ankrd34c ankyrin repeat domain 34C Novel U 0.00013537283860686538 -0.2625799112678041 1.0 19491 +72584 Cul4b cullin 4B Novel U 0.0001352871467028045 -0.2625807988617294 1.0 19492 +72106 Jmjd8 jumonji domain containing 8 Novel U 0.00013526608486405045 -0.2625810170195628 1.0 19493 +546335 Gm5938 predicted gene 5938 Novel U 0.0001352348652117929 -0.2625813403916947 1.0 19494 +17141 Magea5 MAGE family member A5 Novel U 0.00013512294114926415 -0.262582499697455 1.0 19495 +209186 Acnat2 acyl-coenzyme A amino acid N-acyltransferase 2 Novel U 0.00013508806855679824 -0.2625828609066214 1.0 19496 +73261 1700037C18Rik RIKEN cDNA 1700037C18 gene Novel U 0.0001350160957688944 -0.2625836063983925 1.0 19497 +78128 Spag11a sperm associated antigen 11A Novel U 0.00013499582371564458 -0.2625838163756537 1.0 19498 +22722 Zfp64 zinc finger protein 64 Novel N 0.0001349799709324119 -0.26258398057826127 1.0 19499 +75071 Samt2b spermatogenesis associated multipass transmembrane protein 2b Novel U 0.00013482430775517952 -0.2625855929323339 1.0 19500 +100465 Mob3c MOB kinase activator 3C Novel U 0.00013470809151472615 -0.2625867966963321 1.0 19501 +19193 Pipox pipecolic acid oxidase Novel N 0.00013438079495207012 -0.2625901868233688 1.0 19502 +83395 Sp6 trans-acting transcription factor 6 Novel N 0.00013435299422633404 -0.2625904747823721 1.0 19503 +73385 Fam177a family with sequence similarity 177, member A Novel U 0.00013433294035504703 -0.2625906824997116 1.0 19504 +19301 Pxmp2 peroxisomal membrane protein 2 Novel U 0.00013421753822333925 -0.2625918778311982 1.0 19505 +18072 Nhlh2 nescient helix loop helix 2 Novel U 0.00013417737112166478 -0.262592293880717 1.0 19506 +269788 Lhfpl4 lipoma HMGIC fusion partner-like protein 4 Novel U 0.00013412316692563127 -0.2625928553259976 1.0 19507 +69361 Cypt3 cysteine-rich perinuclear theca 3 Novel U 0.00013411241565229525 -0.2625929666873334 1.0 19508 +76781 Mettl4 methyltransferase 4, N6-adenosine Novel U 0.00013388329947357477 -0.2625953398651808 1.0 19509 +114654 Ly6g6d lymphocyte antigen 6 family member G6D Novel U 0.0001338787215363825 -0.2625953872833037 1.0 19510 +211488 Ado 2-aminoethanethiol dioxygenase Novel N 0.0001338748975814403 -0.26259542689170334 1.0 19511 +22774 Zic4 zinc finger protein of the cerebellum 4 Novel U 0.00013381760218353803 -0.2625960203555513 1.0 19512 +668203 Cdc5lrt6 cell division cycle 5 like, retrotransposed 6 Novel U 0.0001336868223074176 -0.262597374969209 1.0 19513 +56220 Zfp386 zinc finger protein 386 (Kruppel-like) Novel U 0.00013364087943719592 -0.26259785084394843 1.0 19514 +27660 1700088E04Rik RIKEN cDNA 1700088E04 gene Novel U 0.0001335974529518988 -0.2625983006540556 1.0 19515 +50524 Sall2 spalt like transcription factor 2 Novel N 0.00013353082831028774 -0.2625989907499032 1.0 19516 +13487 Slc26a3 solute carrier family 26, member 3 Novel U 0.00013350933346656434 -0.2625992133927879 1.0 19517 +69707 Iqcg IQ motif containing G Novel U 0.00013342232597030878 -0.26260011461357397 1.0 19518 +72572 Spats2 spermatogenesis associated, serine-rich 2 Novel U 0.00013335193580883115 -0.26260084371255255 1.0 19519 +56773 Chst5 carbohydrate sulfotransferase 5 Novel U 0.0001332174422153373 -0.2626022367927727 1.0 19520 +252967 Ropn1l ropporin 1-like Novel N 0.00013319409798548873 -0.2626024785915381 1.0 19521 +74711 Ttll9 tubulin tyrosine ligase-like family, member 9 Novel U 0.00013316638189652576 -0.26260276567387647 1.0 19522 +71583 9130008F23Rik RIKEN cDNA 9130008F23 gene Novel U 0.00013309337822690342 -0.26260352184348656 1.0 19523 +319317 Snhg11 small nucleolar RNA host gene 11 Novel U 0.0001330494556113646 -0.2626039767924944 1.0 19524 +75773 Adad2 adenosine deaminase domain containing 2 Novel U 0.00013301470368711017 -0.26260433675178346 1.0 19525 +110821 Pcca propionyl-Coenzyme A carboxylase, alpha polypeptide Novel U 0.0001330012818679143 -0.26260447577454543 1.0 19526 +623166 Prr23a1 proline rich 23A, member 1 Novel U 0.00013287989342828998 -0.2626057331120127 1.0 19527 +104910 Slc25a47 solute carrier family 25, member 47 Novel U 0.00013285223731069684 -0.26260601957316954 1.0 19528 +75504 Cfap276 cilia and flagella associated protein 276 Novel U 0.0001327885348723882 -0.2626066794009314 1.0 19529 +26430 Parg poly (ADP-ribose) glycohydrolase Novel N 0.00013266209458188225 -0.26260798906530397 1.0 19530 +17535 Mre11a MRE11A homolog A, double strand break repair nuclease Novel U 0.0001325906674157556 -0.26260872890554265 1.0 19531 +68800 Prr32 proline rich 32 Novel U 0.0001323272110160044 -0.26261145777827066 1.0 19532 +15424 Hoxc5 homeobox C5 Novel U 0.00013218291051348175 -0.26261295243813215 1.0 19533 +56360 Acot9 acyl-CoA thioesterase 9 Novel U 0.00013215468142656196 -0.2626132448340865 1.0 19534 +64385 Cyp4f14 cytochrome P450, family 4, subfamily f, polypeptide 14 Novel U 0.00013203009550768208 -0.2626145352909387 1.0 19535 +17285 Meox1 mesenchyme homeobox 1 Novel U 0.00013195100679506153 -0.26261535448922413 1.0 19536 +72221 Cimip1 ciliary microtubule inner protein 1 Novel U 0.00013192376966335049 -0.26261563661053905 1.0 19537 +104582 Rprml reprimo-like Novel U 0.00013180608355282378 -0.2626168555994031 1.0 19538 +73247 Mrgbp MRG/MORF4L binding protein Novel N 0.00013179329169400755 -0.26261698809705625 1.0 19539 +234378 Klhl26 kelch-like 26 Novel U 0.00013162575361432217 -0.2626187234509781 1.0 19540 +627901 Gm14419 predicted gene 14419 Novel U 0.00013142238785938192 -0.2626208299067825 1.0 19541 +320214 Cfap91 cilia and flagella associated protein 91 Novel N 0.0001312758064270105 -0.26262234819244035 1.0 19542 +20770 Mucl2 mucin-like 2 Novel U 0.00013125814307808826 -0.26262253114882783 1.0 19543 +320027 Fstl4 follistatin-like 4 Novel U 0.00013072726051714 -0.2626280300129423 1.0 19544 +75140 Slxl1 Slx-like 1 Novel U 0.00013071968633586122 -0.26262810846606305 1.0 19545 +67343 Spmip10 sperm microtubule inner protein 10 Novel U 0.00013064232759698 -0.2626289097453373 1.0 19546 +67135 Bpifa5 BPI fold containing family A, member 5 Novel U 0.00013049671373985448 -0.26263041800888265 1.0 19547 +100042165 Thoc2l THO complex subunit 2-like Novel U 0.00013044022049848422 -0.26263100316401966 1.0 19548 +67985 Ssxb1 SSX member B1 Novel U 0.0001304181018782026 -0.2626312322679614 1.0 19549 +69934 Trmt10b tRNA methyltransferase 10B Novel U 0.00013036744416626182 -0.2626317569788764 1.0 19550 +68265 Iqcf3 IQ motif containing F3 Novel U 0.0001302873314607098 -0.262632586783647 1.0 19551 +233876 Hirip3 HIRA interacting protein 3 Novel N 0.00013019756062485245 -0.2626335166270137 1.0 19552 +382301 Sly Sycp3 like Y-linked Novel U 0.0001299884440044708 -0.2626356826500933 1.0 19553 +229503 Mettl25b methyltransferase like 25B Novel U 0.0001299030167652696 -0.26263656750262865 1.0 19554 +257635 Sdsl serine dehydratase-like Novel U 0.00012986088065652755 -0.26263700394705786 1.0 19555 +69310 Pacrg PARK2 co-regulated Novel U 0.00012972338781422213 -0.2626384280933986 1.0 19556 +16687 Krt6a keratin 6A Novel U 0.0001296556587978884 -0.26263912962832336 1.0 19557 +118568488 Gm14402 predicted gene 14402 Novel U 0.00012956360049853362 -0.2626400831651618 1.0 19558 +67991 Nacc2 nucleus accumbens associated 2, BEN and BTB (POZ) domain containing Novel U 0.00012955745745836547 -0.26264014679456993 1.0 19559 +69083 Sult1c2 sulfotransferase family, cytosolic, 1C, member 2 Novel N 0.00012953025111540545 -0.26264042859697595 1.0 19560 +74400 Zfp819 zinc finger protein 819 Novel U 0.00012921464603957123 -0.2626436976239765 1.0 19561 +387564 Sval3 seminal vesicle antigen-like 3 Novel U 0.0001291273309784478 -0.26264460203050927 1.0 19562 +52538 Acaa2 acetyl-CoA acyltransferase 2 Novel N 0.000129081156226567 -0.26264508030707134 1.0 19563 +26363 Btd biotinidase Novel U 0.00012904964789697352 -0.26264540666931346 1.0 19564 +622301 Rhox2h reproductive homeobox 2H Novel U 0.00012896258961103536 -0.2626463084161773 1.0 19565 +67416 Armcx2 armadillo repeat containing, X-linked 2 Novel U 0.00012878796806392 -0.262648117140422 1.0 19566 +107605 Rdh1 retinol dehydrogenase 1 (all trans) Novel U 0.0001287725533451444 -0.26264827680557234 1.0 19567 +17702 Msx2 msh homeobox 2 Novel U 0.0001287201070042301 -0.26264882004304746 1.0 19568 +218989 Tmem260 transmembrane protein 260 Novel N 0.00012871283727138 -0.2626488953427013 1.0 19569 +668066 Gm14418 novel KRAB box and zinc finger, C2H2 type domain containing protein Novel U 0.00012870329107365162 -0.2626489942219036 1.0 19570 +19733 Rgn regucalcin Novel U 0.0001286488685444478 -0.26264955792867206 1.0 19571 +76022 Gon4l gon-4 like Novel U 0.00012860771724259565 -0.26264998417250385 1.0 19572 +77574 Tcaf1 TRPM8 channel-associated factor 1 Novel U 0.00012847128860087335 -0.26265139729588993 1.0 19573 +381418 Ctxn2 cortexin 2 Novel U 0.00012838645272739548 -0.2626522760230786 1.0 19574 +54352 Irx5 Iroquois homeobox 5 Novel U 0.00012827660351231776 -0.2626534138376373 1.0 19575 +22654 Zfp13 zinc finger protein 13 Novel N 0.00012818557074209368 -0.2626543567520787 1.0 19576 +109697 Cpa1 carboxypeptidase A1, pancreatic Novel N 0.00012815464662102163 -0.2626546770631082 1.0 19577 +213012 Abhd10 abhydrolase domain containing 10 Novel N 0.00012802180503983354 -0.26265605303183925 1.0 19578 +244923 Klhl31 kelch-like 31 Novel U 0.00012801532063441646 -0.2626561201970974 1.0 19579 +27226 Pla2g7 phospholipase A2, group VII (platelet-activating factor acetylhydrolase, plasma) Novel U 0.00012788371497085733 -0.2626574833642342 1.0 19580 +93734 Mpv17l Mpv17 transgene, kidney disease mutant-like Novel N 0.0001278742329147681 -0.2626575815790595 1.0 19581 +240697 Mcmdc2 minichromosome maintenance domain containing 2 Novel U 0.00012773840319538058 -0.26265898849882774 1.0 19582 +236663 H2al1j H2A histone family member L1J Novel U 0.00012772900047141014 -0.2626590858919335 1.0 19583 +15396 Hoxa11 homeobox A11 Novel U 0.00012768236912601833 -0.26265956889787617 1.0 19584 +20222 Sf3a2 splicing factor 3a, subunit 2 Novel N 0.0001276089268559173 -0.2626603296104956 1.0 19585 +629542 Mageb5b MAGE family member B5B Novel U 0.00012745482976496674 -0.262661925743098 1.0 19586 +64660 Mrps24 mitochondrial ribosomal protein S24 Novel U 0.00012732516230390192 -0.2626632688343971 1.0 19587 +239650 Ccdc184 coiled-coil domain containing 184 Novel U 0.0001273191829972895 -0.26266333076785847 1.0 19588 +74229 Paqr8 progestin and adipoQ receptor family member VIII Novel U 0.000127261596163767 -0.262663927250387 1.0 19589 +76547 Tmem101 transmembrane protein 101 Novel U 0.00012712734443301717 -0.2626653178254008 1.0 19590 +170789 Acot8 acyl-CoA thioesterase 8 Novel U 0.00012712509894381518 -0.26266534108410416 1.0 19591 +99929 Tiparp TCDD-inducible poly(ADP-ribose) polymerase Novel U 0.00012710213553099588 -0.2626655789383793 1.0 19592 +66570 Cenpm centromere protein M Novel U 0.00012700931450007865 -0.26266654037556614 1.0 19593 +55961 Slc13a1 solute carrier family 13 (sodium/sulfate symporters), member 1 Novel U 0.0001269406622050892 -0.26266725147378084 1.0 19594 +627470 Gm6760 predicted gene 6760 Novel U 0.00012687544784936497 -0.26266792696193364 1.0 19595 +66170 Chchd5 coiled-coil-helix-coiled-coil-helix domain containing 5 Novel U 0.0001268588242335396 -0.2626680991487999 1.0 19596 +100043920 Spata31f1d spermatogenesis associated 31 subfamily F member 1D Novel U 0.0001267995649779859 -0.2626687129542209 1.0 19597 +380654 Cfap54 cilia and flagella associated protein 54 Novel U 0.00012671085943908642 -0.26266963176327673 1.0 19598 +11451 Acrv1 acrosomal vesicle protein 1 Novel U 0.00012663029811827768 -0.26267046621478934 1.0 19599 +381833 Prb1a proline-rich protein BstNI subfamily 1A Novel U 0.00012597177486651202 -0.26267728717698335 1.0 19600 +75641 Frey1 Frey regulator of sperm-oocyte fusion 1 Novel U 0.0001259466365313299 -0.26267754755903283 1.0 19601 +654460 Defb18 defensin beta 18 Novel U 0.0001257899721306844 -0.2626791702837446 1.0 19602 +228061 Agps alkylglycerone phosphate synthase Novel N 0.00012577069403653463 -0.26267936996561014 1.0 19603 +67909 Galntl5 UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase-like 5 Novel U 0.0001256365942603238 -0.2626807589666838 1.0 19604 +100042279 Gm20908 predicted gene, 20908 Novel U 0.0001255902440344312 -0.26268123906079993 1.0 19605 +22775 Zik1 zinc finger protein interacting with K protein 1 Novel U 0.00012554911058755517 -0.2626816651196905 1.0 19606 +240186 Zfp438 zinc finger protein 438 Novel U 0.00012545932576808375 -0.26268259510789904 1.0 19607 +71591 Zfp251 zinc finger protein 251 Novel U 0.00012545595758364832 -0.26268262999544273 1.0 19608 +73729 Zfp383 zinc finger protein 383 Novel U 0.00012541059591576707 -0.2626830998501074 1.0 19609 +241159 Neu4 sialidase 4 Novel N 0.00012537453011829218 -0.2626834734184521 1.0 19610 +73670 Defb30 defensin beta 30 Novel U 0.0001253423496671364 -0.2626838067425073 1.0 19611 +408196 Csta3 cystatin A family member 3 Novel U 0.00012532246658473632 -0.26268401269082114 1.0 19612 +100042927 H2al1b H2A histone family member L1B Novel U 0.0001251752455549683 -0.2626855376014079 1.0 19613 +20768 Sephs2 selenophosphate synthetase 2 Novel N 0.00012504048530386684 -0.2626869334436588 1.0 19614 +11899 Astn1 astrotactin 1 Novel U 0.0001249482247129194 -0.2626878890758269 1.0 19615 +70209 Tmem143 transmembrane protein 143 Novel U 0.00012478207575156568 -0.26268961004130675 1.0 19616 +22441 Xlr X-linked lymphocyte-regulated Novel U 0.00012468812202162856 -0.26269058321095284 1.0 19617 +100042594 Gm20931 predicted gene, 20931 Novel U 0.00012462629120858835 -0.26269122365248176 1.0 19618 +545547 Lce1j late cornified envelope 1J Novel U 0.00012460397084144387 -0.2626914548461109 1.0 19619 +66039 Tmem254 transmembrane protein 254 Novel U 0.00012459146070443731 -0.2626915844256988 1.0 19620 +73719 Lce1c late cornified envelope 1C Novel U 0.00012458958799526658 -0.2626916038231588 1.0 19621 +67870 Enoph1 enolase-phosphatase 1 Novel N 0.00012458857774575157 -0.26269161428729004 1.0 19622 +73333 Slc25a31 solute carrier family 25 (mitochondrial carrier; adenine nucleotide translocator), member 31 Novel U 0.0001244710151883636 -0.2626928319963948 1.0 19623 +69563 Mrln myoregulin Novel U 0.00012439281941342494 -0.2626936419456611 1.0 19624 +67229 Prpf18 pre-mRNA processing factor 18 Novel N 0.0001243076040083363 -0.2626945246040257 1.0 19625 +103710 Slc35e4 solute carrier family 35, member E4 Novel U 0.00012420850496174362 -0.2626955510686926 1.0 19626 +213084 Cdkl3 cyclin dependent kinase like 3 Novel N 0.0001240655914735793 -0.262697031361905 1.0 19627 +239652 Zfp641 zinc finger protein 641 Novel U 0.00012406000388781886 -0.2626970892379346 1.0 19628 +382088 Omt2b oocyte maturation, beta Novel U 0.00012403736571248782 -0.2626973237234105 1.0 19629 +628518 Ctag2l2 CTAG2 like 2 Novel U 0.00012399636317732087 -0.2626977484263219 1.0 19630 +77630 Prdm8 PR domain containing 8 Novel N 0.00012378304465923755 -0.2626999579725197 1.0 19631 +384198 Fam47e family with sequence similarity 47, member E Novel N 0.00012361892992382033 -0.2627016578675542 1.0 19632 +497113 Rnase11 ribonuclease, RNase A family, 11 (non-active) Novel U 0.0001235538801024158 -0.2627023316514659 1.0 19633 +236193 Zfp709 zinc finger protein 709 Novel U 0.00012354191505686206 -0.2627024555850144 1.0 19634 +210463 Slc22a22 solute carrier family 22 (organic cation transporter), member 22 Novel U 0.00012343450049911585 -0.26270356818147245 1.0 19635 +433597 Aadacl2fm2 AADACL2 family member 2 Novel U 0.0001233820652292205 -0.26270411130427435 1.0 19636 +73614 Rhox13 reproductive homeobox 13 Novel U 0.00012325978970645032 -0.2627053778301196 1.0 19637 +12269 C4bp complement component 4 binding protein Novel U 0.00012325324905793937 -0.26270544557794184 1.0 19638 +240084 Cchcr1 coiled-coil alpha-helical rod protein 1 Novel U 0.00012324444955488816 -0.2627055367229052 1.0 19639 +18393 Orc2 origin recognition complex, subunit 2 Novel N 0.00012320903820240515 -0.2627059035125301 1.0 19640 +71062 Tekt3 tektin 3 Novel N 0.00012319670432950783 -0.26270603126638015 1.0 19641 +100503584 Zfp534 zinc finger protein 534 Novel U 0.0001230734519666647 -0.2627073079103028 1.0 19642 +638345 Sbpl spermine binding protein-like Novel U 0.00012296566930383498 -0.2627084243195812 1.0 19643 +113002583 Shld3 shieldin complex subunit 3 Novel U 0.0001229611628345186 -0.2627084709974422 1.0 19644 +70481 Pnma1 paraneoplastic antigen MA1 Novel U 0.00012293455839073401 -0.2627087465653964 1.0 19645 +245174 Zfp937 zinc finger protein 937 Novel U 0.00012274285338265717 -0.26271073223956803 1.0 19646 +71233 Enkur enkurin, TRPC channel interacting protein Novel N 0.00012265339440266923 -0.26271165885274195 1.0 19647 +103775 Slc25a41 solute carrier family 25, member 41 Novel U 0.0001226380656566644 -0.2627118176273892 1.0 19648 +244556 Zfp791 zinc finger protein 791 Novel U 0.00012261884804170986 -0.26271201668281313 1.0 19649 +18207 Nthl1 nth (endonuclease III)-like 1 (E.coli) Novel U 0.00012258182355040877 -0.26271240018127695 1.0 19650 +194219 Slfnl1 schlafen like 1 Novel U 0.000122561477134581 -0.26271261092878323 1.0 19651 +330188 Ccdc63 coiled-coil domain containing 63 Novel U 0.0001224111739010236 -0.26271416776473544 1.0 19652 +14085 Fah fumarylacetoacetate hydrolase Novel U 0.00012239981216654187 -0.2627142854492077 1.0 19653 +193838 Eme2 essential meiotic structure-specific endonuclease subunit 2 Novel N 0.00012239513415756892 -0.2627143339038709 1.0 19654 +246700 Defb19 defensin beta 19 Novel U 0.00012238914051811265 -0.2627143959857913 1.0 19655 +20899 Stra8 stimulated by retinoic acid gene 8 Novel U 0.00012238519559258683 -0.26271443684720025 1.0 19656 +246196 Zfp277 zinc finger protein 277 Novel U 0.00012227646453191412 -0.26271556307995236 1.0 19657 +12346 Car1 carbonic anhydrase 1 Novel U 0.00012226957684288644 -0.26271563442240886 1.0 19658 +330502 Zfp82 zinc finger protein 82 Novel U 0.00012204506954021366 -0.2627179598616697 1.0 19659 +54678 Zfp108 zinc finger protein 108 Novel U 0.00012201066534138506 -0.2627183162192302 1.0 19660 +74098 Czib CXXC motif containing zinc binding protein Novel U 0.00012200835465980871 -0.262718340153194 1.0 19661 +71421 Amtn amelotin Novel N 0.00012199382640565912 -0.26271849063637287 1.0 19662 +67009 Ttc23 tetratricopeptide repeat domain 23 Novel U 0.00012198210271382013 -0.26271861206998753 1.0 19663 +69496 Dydc1 DPY30 domain containing 1 Novel U 0.00012194850934562402 -0.262718960028991 1.0 19664 +30959 Ddx25 DEAD box helicase 25 Novel U 0.00012193894942839849 -0.26271905905029935 1.0 19665 +627085 Aadacl4fm2 AADACL4 family member 2 Novel U 0.00012177092276517874 -0.2627207994649534 1.0 19666 +55990 Fmo2 flavin containing monooxygenase 2 Novel N 0.00012160964024061075 -0.262722470024041 1.0 19667 +69542 2300002M23Rik RIKEN cDNA 2300002M23 gene Novel U 0.00012152226467293748 -0.26272337505729865 1.0 19668 +67573 Loxl4 lysyl oxidase-like 4 Novel U 0.00012150151098089177 -0.2627235900233586 1.0 19669 +70901 4921524L21Rik RIKEN cDNA 4921524L21 gene Novel U 0.00012144544347944665 -0.2627241707686955 1.0 19670 +24135 Zfp68 zinc finger protein 68 Novel U 0.00012142034309133198 -0.2627244307576904 1.0 19671 +67375 Qprt quinolinate phosphoribosyltransferase Novel N 0.00012124369408890667 -0.2627262604822505 1.0 19672 +226442 Zfp281 zinc finger protein 281 Novel N 0.00012112847428226058 -0.2627274539252201 1.0 19673 +77015 Mpped2 metallophosphoesterase domain containing 2 Novel U 0.00012110246862874225 -0.26272772329092436 1.0 19674 +66441 Magohb mago homolog B, exon junction complex core component Novel U 0.00012098753598748129 -0.26272891375944435 1.0 19675 +74267 Iqcf1 IQ motif containing F1 Novel U 0.00012092829828897871 -0.2627295273415781 1.0 19676 +68552 Smim14 small integral membrane protein 14 Novel U 0.00012089208602908099 -0.26272990242697575 1.0 19677 +434121 Sult2a4 sulfotransferase family 2A, dehydroepiandrosterone (DHEA)-preferring, member 4 Novel U 0.00012068924248046443 -0.26273200347378417 1.0 19678 +654801 Zfp784 zinc finger protein 784 Novel U 0.00012065736251852293 -0.26273233368538196 1.0 19679 +108168558 Gm20920 predicted gene, 20920 Novel U 0.00012061526204066679 -0.2627327697607476 1.0 19680 +226527 Cryzl2 crystallin zeta like 2 Novel U 0.00012061199143781665 -0.2627328036375444 1.0 19681 +100042578 Gm20929 predicted gene, 20929 Novel U 0.0001205786061404744 -0.2627331494413568 1.0 19682 +231903 Urad ureidoimidazoline (2-oxo-4-hydroxy-4-carboxy-5) decarboxylase Novel U 0.00012056414642324367 -0.2627332992146325 1.0 19683 +100861966 Btbd35f23 BTB domain containing 35, family member 23 Novel U 0.00012055283028315968 -0.2627334164268395 1.0 19684 +20234 Sbp spermine binding protein Novel U 0.00012052702772776417 -0.26273368368886013 1.0 19685 +17993 Ndufs4 NADH:ubiquinone oxidoreductase core subunit S4 Novel N 0.00012035451984241986 -0.2627354705198656 1.0 19686 +434676 Scgb1b19 secretoglobin, family 1B, member 19 Novel U 0.00012030091717914262 -0.26273602573448973 1.0 19687 +68758 Abhd11 abhydrolase domain containing 11 Novel U 0.00012009620432468983 -0.2627381461435066 1.0 19688 +23936 Lynx1 Ly6/neurotoxin 1 Novel U 0.00012008875002902011 -0.26273822335485614 1.0 19689 +68080 Gpn3 GPN-loop GTPase 3 Novel U 0.00011991872855175933 -0.2627399844317284 1.0 19690 +239546 Zfp647 zinc finger protein 647 Novel U 0.00011989119657883515 -0.2627402696069989 1.0 19691 +20861 Stfa1 stefin A1 Novel U 0.00011988131498240466 -0.2627403719602499 1.0 19692 +66904 Pccb propionyl Coenzyme A carboxylase, beta polypeptide Novel U 0.00011945571825886098 -0.2627447802771216 1.0 19693 +56774 Slc6a14 solute carrier family 6 (neurotransmitter transporter), member 14 Novel U 0.00011924126167034737 -0.26274700161141556 1.0 19694 +241764 L3mbtl1 L3MBTL1 histone methyl-lysine binding protein Novel N 0.00011921241566972741 -0.2627473003973417 1.0 19695 +19356 Rad17 RAD17 checkpoint clamp loader component Novel N 0.00011912464989720142 -0.2627482094723284 1.0 19696 +74472 Stpg3 sperm tail PG rich repeat containing 3 Novel U 0.00011912267272448732 -0.2627482299518184 1.0 19697 +215929 Mfsd4b1 major facilitator superfamily domain containing 4B1 Novel U 0.0001190327240791485 -0.2627491616369299 1.0 19698 +15227 Foxf1 forkhead box F1 Novel U 0.00011898733045913182 -0.2627496318225538 1.0 19699 +668096 Cwc22rt1 CWC22 spliceosome-associated protein, retrotransposed 1 Novel U 0.00011896508917822474 -0.26274986219701024 1.0 19700 +66634 Mcm8 minichromosome maintenance 8 homologous recombination repair factor Novel U 0.00011890401213959937 -0.2627504948309686 1.0 19701 +227058 Dnah7b dynein, axonemal, heavy chain 7B Novel U 0.00011880681477019532 -0.26275150159812566 1.0 19702 +66526 Tceanc2 transcription elongation factor A (SII) N-terminal and central domain containing 2 Novel U 0.00011870616937381459 -0.26275254407983284 1.0 19703 +227630 Lcn11 lipocalin 11 Novel U 0.00011869007760350856 -0.26275271075786066 1.0 19704 +224090 Tmem44 transmembrane protein 44 Novel U 0.00011862943113128267 -0.26275333893202635 1.0 19705 +100861906 Gm21317 predicted gene, 21317 Novel U 0.00011862339716270575 -0.26275340143167447 1.0 19706 +100504285 Abhd12b abhydrolase domain containing 12B Novel U 0.00011856422031322318 -0.26275401438353607 1.0 19707 +319166 H2ac8 H2A clustered histone 8 Novel U 0.00011856269650141121 -0.2627540301671288 1.0 19708 +100135657 Rhox3e reproductive homeobox 3E Novel U 0.00011834516163023679 -0.26275628338617335 1.0 19709 +12904 Crabp2 cellular retinoic acid binding protein II Novel N 0.00011806347201393285 -0.2627592011179589 1.0 19710 +67877 Naa20 N(alpha)-acetyltransferase 20, NatB catalytic subunit Novel U 0.00011801000004797508 -0.26275975497882453 1.0 19711 +24018 Rngtt RNA guanylyltransferase and 5'-phosphatase Novel N 0.00011789192452870637 -0.2627609780011716 1.0 19712 +66258 Mrps17 mitochondrial ribosomal protein S17 Novel U 0.00011788427588202394 -0.2627610572256025 1.0 19713 +77674 Defb12 defensin beta 12 Novel U 0.00011784828537109663 -0.2627614300141316 1.0 19714 +70274 Ly6g6e lymphocyte antigen 6 family member G6E Novel U 0.00011779957427075828 -0.26276193456210756 1.0 19715 +666921 Gm12886 predicted gene 12886 Novel U 0.00011779867041313787 -0.26276194392423513 1.0 19716 +328643 Vwa5b2 von Willebrand factor A domain containing 5B2 Novel U 0.00011764836995287271 -0.26276350073146165 1.0 19717 +56397 Morf4l2 mortality factor 4 like 2 Novel U 0.00011763245464067396 -0.2627636655817422 1.0 19718 +74626 Tmem81 transmembrane protein 81 Novel U 0.00011756351940215904 -0.26276437961067667 1.0 19719 +66343 Tmem177 transmembrane protein 177 Novel U 0.00011748338866619332 -0.2627652096022056 1.0 19720 +227095 Hibch 3-hydroxyisobutyryl-Coenzyme A hydrolase Novel N 0.00011747553539057016 -0.26276529094617634 1.0 19721 +212276 Zfp748 zinc finger protein 748 Novel U 0.00011739409370085085 -0.2627661345165212 1.0 19722 +19659 Rbp1 retinol binding protein 1, cellular Novel U 0.00011735587564324649 -0.26276653037790554 1.0 19723 +71592 Pogk pogo transposable element with KRAB domain Novel U 0.00011688928956449021 -0.2627713632611711 1.0 19724 +52609 Cbx7 chromobox 7 Novel N 0.00011665443076742822 -0.26277379592087047 1.0 19725 +435145 Shisa8 shisa family member 8 Novel U 0.00011655394162614333 -0.2627748367840925 1.0 19726 +68801 Elovl5 ELOVL fatty acid elongase 5 Novel N 0.00011654271654598483 -0.2627749530531038 1.0 19727 +320995 Rfx6 regulatory factor X, 6 Novel U 0.0001163546330642441 -0.2627769012156248 1.0 19728 +100043034 Rex2 reduced expression 2 Novel U 0.00011630572706420881 -0.26277740778236547 1.0 19729 +76484 Kndc1 kinase non-catalytic C-lobe domain (KIND) containing 1 Novel U 0.0001162484607764141 -0.2627780009446919 1.0 19730 +69066 1810010H24Rik RIKEN cDNA 1810010H24 gene Novel U 0.00011619407428357199 -0.2627785642781969 1.0 19731 +67880 Dcxr dicarbonyl L-xylulose reductase Novel N 0.00011613931016446004 -0.26277913152314236 1.0 19732 +56794 Hacl1 2-hydroxyacyl-CoA lyase 1 Novel U 0.0001160665244652853 -0.26277988543502173 1.0 19733 +100862261 Spata31f1c spermatogenesis associated 31 subfamily F member 1C Novel U 0.00011589920036818191 -0.262781618572519 1.0 19734 +434758 Rhox3h reproductive homeobox 3H Novel U 0.00011581061266546069 -0.26278253616103164 1.0 19735 +66561 Teddm3 transmembrane epididymal family member 3 Novel U 0.00011563445498770117 -0.26278436079646705 1.0 19736 +100042201 Gm20906 predicted gene, 20906 Novel U 0.00011559603464608558 -0.2627847587531025 1.0 19737 +195236 Pom121l2 POM121 transmembrane nucleoporin like 2 Novel U 0.00011555108454469147 -0.262785224344775 1.0 19738 +252829 Obox5 oocyte specific homeobox 5 Novel U 0.00011554508512407773 -0.26278528648657656 1.0 19739 +68734 Ppp4r3a protein phosphatase 4 regulatory subunit 3A Novel U 0.0001155207272684435 -0.2627855387844445 1.0 19740 +53626 Insm1 insulinoma-associated 1 Novel U 0.00011544771772721984 -0.26278629501487244 1.0 19741 +55935 Fnbp4 formin binding protein 4 Novel U 0.00011544770636589557 -0.2627862951325527 1.0 19742 +17294 Mest mesoderm specific transcript Novel N 0.00011534308127507304 -0.262787378835804 1.0 19743 +27273 Pdk4 pyruvate dehydrogenase kinase, isoenzyme 4 Novel U 0.00011484072467126182 -0.2627925822289922 1.0 19744 +12116 Bhmt betaine-homocysteine methyltransferase Novel U 0.00011474606175767803 -0.26279356274433924 1.0 19745 +71665 Fuca1 fucosidase, alpha-L- 1, tissue Novel U 0.00011473236787929482 -0.2627937045850814 1.0 19746 +105866 Krt72 keratin 72 Novel U 0.00011459315764391366 -0.26279514652012315 1.0 19747 +72167 Thumpd2 THUMP domain containing 2 Novel U 0.00011449178088239946 -0.26279619657728637 1.0 19748 +17257 Mecp2 methyl CpG binding protein 2 Novel U 0.00011432564753320295 -0.262797917381056 1.0 19749 +71954 Suds3 suppressor of defective silencing 3 homolog (S. cerevisiae) Novel N 0.0001142473712035457 -0.2627987281647054 1.0 19750 +381218 Spata6l spermatogenesis associated 6 like Novel U 0.00011423668379724675 -0.2627988388645085 1.0 19751 +381651 Odaph odontogenesis associated phosphoprotein Novel N 0.0001141907838311784 -0.26279931429484815 1.0 19752 +245847 Amdhd2 amidohydrolase domain containing 2 Novel N 0.00011418465972660401 -0.262799377728122 1.0 19753 +240041 Zfp945 zinc finger protein 945 Novel U 0.00011417702975869745 -0.26279945675907873 1.0 19754 +27973 Vkorc1 vitamin K epoxide reductase complex, subunit 1 Novel U 0.0001141615267520891 -0.2627996173387116 1.0 19755 +277353 Tcfl5 transcription factor-like 5 (basic helix-loop-helix) Novel N 0.00011388063531830873 -0.26280252680294885 1.0 19756 +15360 Hmgcs2 3-hydroxy-3-methylglutaryl-Coenzyme A synthase 2 Novel N 0.00011374010764081211 -0.2628039823840128 1.0 19757 +69324 1700012B07Rik RIKEN cDNA 1700012B07 gene Novel U 0.00011372679139652636 -0.26280412031323336 1.0 19758 +240131 Lrrc30 leucine rich repeat containing 30 Novel U 0.00011369363247715612 -0.26280446377223016 1.0 19759 +18972 Pold2 polymerase (DNA directed), delta 2, regulatory subunit Novel N 0.00011369143325476375 -0.26280448655170335 1.0 19760 +20860 Sult1e1 sulfotransferase family 1E, member 1 Novel N 0.00011331710172239117 -0.2628083638654102 1.0 19761 +17537 Meis3 Meis homeobox 3 Novel U 0.00011330182610596977 -0.262808522089743 1.0 19762 +432552 Garin3 golgi associated RAB2 interactor 3 Novel U 0.00011318836047535984 -0.2628096973630148 1.0 19763 +384619 Kash5 KASH domain containing 5 Novel N 0.00011318032781886743 -0.2628097805650067 1.0 19764 +72931 Swi5 SWI5 recombination repair homolog (yeast) Novel U 0.00011312777425559531 -0.2628103249130875 1.0 19765 +17219 Mcm6 minichromosome maintenance complex component 6 Novel U 0.00011301272741333103 -0.2628115165644977 1.0 19766 +433485 Syndig1 synapse differentiation inducing 1 Novel U 0.00011290227794234308 -0.26281266059648734 1.0 19767 +67621 Bend5 BEN domain containing 5 Novel N 0.00011286968956096812 -0.26281299814587034 1.0 19768 +16675 Krt27 keratin 27 Novel U 0.0001128586985251403 -0.26281311199065815 1.0 19769 +18511 Pax9 paired box 9 Novel U 0.00011283357819658341 -0.26281337218619555 1.0 19770 +67473 Slc47a1 solute carrier family 47, member 1 Novel U 0.00011278826982203718 -0.2628138414888497 1.0 19771 +20859 Sult2a1 sulfotransferase family 2A, dehydroepiandrosterone (DHEA)-preferring, member 1 Novel U 0.00011274118321260464 -0.26281432921040226 1.0 19772 +100039899 Tex13d TEX13 family member D Novel U 0.0001126925767730461 -0.2628148326743054 1.0 19773 +108812 Flacc1 flagellum associated containing coiled-coil domains 1 Novel U 0.00011265063235011029 -0.2628152671332593 1.0 19774 +66104 Tceal6 transcription elongation factor A (SII)-like 6 Novel U 0.00011258568600924555 -0.262815939845323 1.0 19775 +67367 Paxbp1 PAX3 and PAX7 binding protein 1 Novel U 0.00011253162495633698 -0.26281649980793187 1.0 19776 +69861 2010003K11Rik RIKEN cDNA 2010003K11 gene Novel U 0.00011245470056017854 -0.2628172965882985 1.0 19777 +55934 Rp9 retinitis pigmentosa 9 (human) Novel N 0.00011244144127476708 -0.2628174339275409 1.0 19778 +100503991 Acp4 acid phosphatase 4 Novel U 0.00011212138042679661 -0.26282074910728276 1.0 19779 +107141 Cyp2c50 cytochrome P450, family 2, subfamily c, polypeptide 50 Novel U 0.0001120705624486774 -0.2628212754782296 1.0 19780 +27357 Gyg1 glycogenin 1 Novel N 0.00011196767034156647 -0.2628223412312926 1.0 19781 +15473 Rida reactive intermediate imine deaminase A homolog Novel N 0.00011192763704519329 -0.2628227558948604 1.0 19782 +66514 Asrgl1 asparaginase like 1 Novel N 0.00011185522513605896 -0.26282350593503484 1.0 19783 +170745 Xpnpep2 X-prolyl aminopeptidase (aminopeptidase P) 2, membrane-bound Novel U 0.00011181256744933013 -0.2628239477819517 1.0 19784 +268319 BC025920 zinc finger protein pseudogene Novel U 0.00011153007126357204 -0.2628268738681572 1.0 19785 +269855 Ssc5d scavenger receptor cysteine rich family, 5 domains Novel U 0.00011147500859155989 -0.2628274442055038 1.0 19786 +406217 Bex4 brain expressed X-linked 4 Novel U 0.00011142607685690836 -0.2628279510388028 1.0 19787 +59001 Pole3 polymerase (DNA directed), epsilon 3 (p17 subunit) Novel N 0.00011133802990018752 -0.2628288630262861 1.0 19788 +329178 Unc80 unc-80, NALCN activator Novel U 0.00011132478650285054 -0.2628290002009604 1.0 19789 +26465 Zfp146 zinc finger protein 146 Novel N 0.00011113638258573939 -0.2628309516825404 1.0 19790 +104079 Nxph3 neurexophilin 3 Novel U 0.00011106781725785517 -0.26283166187995266 1.0 19791 +232875 Zscan18 zinc finger and SCAN domain containing 18 Novel U 0.00011101356616150298 -0.2628322238110252 1.0 19792 +19231 Ptma prothymosin alpha Novel U 0.00011095695189720209 -0.2628328102197138 1.0 19793 +57429 Sult5a1 sulfotransferase family 5A, member 1 Novel U 0.00011090574534709882 -0.2628333406154764 1.0 19794 +75939 4930579G24Rik RIKEN cDNA 4930579G24 gene Novel U 0.00011088564721761245 -0.262833548791241 1.0 19795 +73940 Hapln2 hyaluronan and proteoglycan link protein 2 Novel U 0.00011087630798328333 -0.2628336455267231 1.0 19796 +227394 Slco4c1 solute carrier organic anion transporter family, member 4C1 Novel N 0.00011081458130064015 -0.2628342848896728 1.0 19797 +67538 Zswim3 zinc finger SWIM-type containing 3 Novel U 0.00011067433901995862 -0.26283573751460587 1.0 19798 +69444 Lyzl6 lysozyme-like 6 Novel U 0.00011036387651026663 -0.26283895327507534 1.0 19799 +330485 Tmem145 transmembrane protein 145 Novel U 0.0001103365945303405 -0.26283923586092656 1.0 19800 +11870 Art1 ADP-ribosyltransferase 1 Novel U 0.00011020447022101476 -0.26284060440017926 1.0 19801 +77862 Thyn1 thymocyte nuclear protein 1 Novel U 0.00011009385164245699 -0.26284175018377953 1.0 19802 +54624 Paf1 Paf1, RNA polymerase II complex component Novel N 0.0001100857979345828 -0.26284183360382096 1.0 19803 +66198 Them5 thioesterase superfamily member 5 Novel N 0.00010997474475205057 -0.26284298388903493 1.0 19804 +211739 Vstm2a V-set and transmembrane domain containing 2A Novel N 0.00010986385340888817 -0.26284413249792205 1.0 19805 +212547 Nepro nucleolus and neural progenitor protein Novel N 0.00010984930240423861 -0.26284428321674985 1.0 19806 +20429 Shox2 SHOX homeobox 2 Novel N 0.00010973284702342469 -0.2628454894577561 1.0 19807 +269823 Pon3 paraoxonase 3 Novel U 0.0001097139440084512 -0.26284568525456375 1.0 19808 +71275 Noxred1 NADP+ dependent oxidoreductase domain containing 1 Novel U 0.00010970705607504244 -0.2628457565995516 1.0 19809 +74123 Foxp4 forkhead box P4 Novel U 0.000109702778961811 -0.26284580090174986 1.0 19810 +93877 Pcdhb6 protocadherin beta 6 Novel U 0.00010966776992721674 -0.26284616352417933 1.0 19811 +18740 Pitx1 paired-like homeodomain transcription factor 1 Novel U 0.00010951814895198003 -0.2628477132933223 1.0 19812 +75029 Purg purine-rich element binding protein G Novel U 0.00010944515352785069 -0.2628484693775258 1.0 19813 +70911 Phyhipl phytanoyl-CoA hydroxylase interacting protein-like Novel U 0.00010912347953330132 -0.2628518012661869 1.0 19814 +66082 Abhd6 abhydrolase domain containing 6 Novel N 0.00010900477271505331 -0.26285303082750805 1.0 19815 +14121 Fbp1 fructose bisphosphatase 1 Novel U 0.00010896065762744236 -0.2628534877701353 1.0 19816 +102954 Nudt10 nudix hydrolase 10 Novel U 0.00010892501251250048 -0.2628538569810641 1.0 19817 +67371 Gtf3c6 general transcription factor IIIC, polypeptide 6, alpha Novel N 0.00010887044937990748 -0.26285442214419785 1.0 19818 +69698 Slc52a3 solute carrier protein family 52, member 3 Novel N 0.00010880267513623807 -0.26285512414758583 1.0 19819 +55963 Slc1a4 solute carrier family 1 (glutamate/neutral amino acid transporter), member 4 Novel U 0.00010877615611374723 -0.262855398830749 1.0 19820 +100312949 Pate10 prostate and testis expressed 10 Novel U 0.00010874815054110509 -0.2628556889115498 1.0 19821 +100312948 Pate8 prostate and testis expressed 8 Novel U 0.00010864325193536803 -0.2628567754478597 1.0 19822 +102638610 Gm35134 predicted gene, 35134 Novel U 0.00010815559166583041 -0.2628618266169006 1.0 19823 +75801 4930447C04Rik RIKEN cDNA 4930447C04 gene Novel U 0.00010811181669735675 -0.262862280036585 1.0 19824 +72230 Zfp558 zinc finger protein 558 Novel U 0.00010801008176464293 -0.2628633338036737 1.0 19825 +11684 Alox12 arachidonate 12-lipoxygenase Novel N 0.00010796099949670472 -0.2628638421961915 1.0 19826 +73873 Fam161a family with sequence similarity 161, member A Novel U 0.00010791207387439542 -0.26286434896617905 1.0 19827 +104349 Zfp119a zinc finger protein 119a Novel U 0.00010789212071651816 -0.2628645556403324 1.0 19828 +224893 Zfp959 zinc finger protein 959 Novel U 0.00010787318604309403 -0.2628647517650573 1.0 19829 +59052 Mettl9 methyltransferase like 9 Novel U 0.00010782643450809756 -0.2628652360159199 1.0 19830 +331537 Dnaaf6 dynein axonemal assembly factor 6 Novel U 0.0001078224451584733 -0.26286527733747217 1.0 19831 +245509 Ppp4r3c2 protein phosphatase 4 regulatory subunit 3C2 Novel U 0.00010766483043980024 -0.2628669099055469 1.0 19832 +76479 Smndc1 survival motor neuron domain containing 1 Novel N 0.00010765380650115834 -0.262867024091141 1.0 19833 +71860 Cfap52 cilia and flagella associated protein 52 Novel N 0.00010760802139493533 -0.2628674983317661 1.0 19834 +75514 1700013H16Rik RIKEN cDNA 1700013H16 gene Novel U 0.00010759592744834947 -0.2628676236004673 1.0 19835 +380709 Spata22 spermatogenesis associated 22 Novel U 0.00010754981519401003 -0.26286810122968185 1.0 19836 +75352 Magea13 MAGE family member A13 Novel U 0.00010750308468417308 -0.2628685852627666 1.0 19837 +668039 Gm14434 predicted gene 14434 Novel U 0.00010736520306846833 -0.2628700134360094 1.0 19838 +22767 Zfy1 zinc finger protein 1, Y-linked Novel U 0.00010725574949816049 -0.26287114715249255 1.0 19839 +228966 Ppp1r3d protein phosphatase 1, regulatory subunit 3D Novel U 0.00010725146967575153 -0.2628711914827524 1.0 19840 +98582 Khdc1b KH domain containing 1B Novel U 0.00010705764726089689 -0.2628731990889539 1.0 19841 +217316 Slc16a5 solute carrier family 16 (monocarboxylic acid transporters), member 5 Novel U 0.00010703098409248141 -0.26287347526517585 1.0 19842 +69339 Ccdc54 coiled-coil domain containing 54 Novel U 0.00010689519678117522 -0.2628748817456826 1.0 19843 +232077 Foxi3 forkhead box I3 Novel N 0.00010682781849783444 -0.26287557964772645 1.0 19844 +69064 Fuom fucose mutarotase Novel U 0.00010674026496027427 -0.2628764865243904 1.0 19845 +71985 Acad10 acyl-Coenzyme A dehydrogenase family, member 10 Novel U 0.00010660840586012848 -0.26287785231661503 1.0 19846 +107766 Haao 3-hydroxyanthranilate 3,4-dioxygenase Novel U 0.00010659822808541671 -0.2628779577376709 1.0 19847 +56857 Slc37a2 solute carrier family 37 (glycerol-3-phosphate transporter), member 2 Novel N 0.00010638514190423792 -0.26288016487733074 1.0 19848 +69554 Klhdc2 kelch domain containing 2 Novel U 0.00010634895591033493 -0.26288053969066605 1.0 19849 +243944 4930433I11Rik RIKEN cDNA 4930433I11 gene Novel U 0.00010632040275012982 -0.2628808354433608 1.0 19850 +51960 Kctd18 potassium channel tetramerisation domain containing 18 Novel U 0.00010627062655565877 -0.2628813510235468 1.0 19851 +72128 2610008E11Rik RIKEN cDNA 2610008E11 gene Novel U 0.0001062486442387612 -0.26288157871566264 1.0 19852 +12412 Cbx1 chromobox 1 Novel N 0.00010624077982160124 -0.26288166017503706 1.0 19853 +668526 Scgb2b17 secretoglobin, family 2B, member 17 Novel U 0.00010617766174122751 -0.2628823139500387 1.0 19854 +71998 Slc25a35 solute carrier family 25, member 35 Novel U 0.0001061776461280208 -0.2628823141117597 1.0 19855 +382209 Rhox3a reproductive homeobox 3A Novel U 0.00010606084923681608 -0.2628835238901194 1.0 19856 +72701 Zfp618 zinc finger protein 618 Novel U 0.00010594055197447797 -0.2628847699252081 1.0 19857 +666504 Tmem249 transmembrane protein 249 Novel U 0.00010591807029746477 -0.2628850027896795 1.0 19858 +233987 Zfp958 zinc finger protein 958 Novel U 0.00010587559355749253 -0.2628854427623558 1.0 19859 +78414 1700034E13Rik RIKEN cDNA 1700034E13 gene Novel U 0.00010566830457323135 -0.26288758985484056 1.0 19860 +72958 Zfp493 zinc finger protein 493 Novel U 0.00010557742862090949 -0.26288853114496735 1.0 19861 +218194 Phactr1 phosphatase and actin regulator 1 Novel U 0.00010557047581410019 -0.2628886031619117 1.0 19862 +69325 1700012B09Rik RIKEN cDNA 1700012B09 gene Novel U 0.00010548544730330582 -0.26288948388443134 1.0 19863 +104382 Barhl2 BarH like homeobox 2 Novel U 0.0001054481182267968 -0.2628898705377787 1.0 19864 +72273 Smim24 small integral membrane protein 24 Novel U 0.00010544427225576115 -0.2628899103742202 1.0 19865 +100642166 Gm15446 predicted gene 15446 Novel U 0.00010542930080329142 -0.26289006544803273 1.0 19866 +110796 Tshz1 teashirt zinc finger family member 1 Novel U 0.00010533944643890436 -0.2628909961565853 1.0 19867 +233887 Zfp553 zinc finger protein 553 Novel U 0.00010533222122590301 -0.26289107099510406 1.0 19868 +12945 Dmbt1 deleted in malignant brain tumors 1 Novel U 0.00010506121758201892 -0.26289387804193864 1.0 19869 +329375 Cfap77 cilia and flagella associated protein 77 Novel U 0.00010504758342501476 -0.2628940192640887 1.0 19870 +11611 Agxt alanine-glyoxylate aminotransferase Novel U 0.0001050104712879919 -0.26289440367038397 1.0 19871 +76969 Chst1 carbohydrate sulfotransferase 1 Novel N 0.00010461103529100341 -0.26289854101531 1.0 19872 +74149 Zfp946 zinc finger protein 946 Novel U 0.00010458672096966874 -0.2628987928622511 1.0 19873 +237625 Pla2g3 phospholipase A2, group III Novel U 0.00010452570189285243 -0.26289942489584284 1.0 19874 +19646 Rbbp4 retinoblastoma binding protein 4, chromatin remodeling factor Novel N 0.00010446634841277666 -0.2629000396772384 1.0 19875 +17939 Naga N-acetyl galactosaminidase, alpha Novel U 0.00010442626021876379 -0.2629004549094341 1.0 19876 +97212 Hadha hydroxyacyl-CoA dehydrogenase trifunctional multienzyme complex subunit alpha Novel U 0.00010441331625059397 -0.2629005889826309 1.0 19877 +26434 Prnd prion like protein doppel Novel U 0.00010436071169377673 -0.2629011338589011 1.0 19878 +226356 Cfap221 cilia and flagella associated protein 221 Novel N 0.00010435785410186732 -0.26290116345774417 1.0 19879 +102639505 Zfp969 zinc finger protein 969 Novel U 0.00010376833835621811 -0.26290726964245836 1.0 19880 +269033 4930503L19Rik RIKEN cDNA 4930503L19 gene Novel U 0.00010374826494992446 -0.2629074775621409 1.0 19881 +20425 Shmt1 serine hydroxymethyltransferase 1 (soluble) Novel U 0.0001034906704617668 -0.26291014571738125 1.0 19882 +225908 Myrf myelin regulatory factor Novel U 0.00010345122270903707 -0.26291055431590726 1.0 19883 +27374 Prmt5 protein arginine N-methyltransferase 5 Novel U 0.00010331818658700145 -0.26291193229968596 1.0 19884 +619331 Zfp551 zinc finger protein 551 Novel U 0.00010330486932147257 -0.26291207023948454 1.0 19885 +75642 Spata25 spermatogenesis associated 25 Novel U 0.0001030828705049591 -0.26291436969592813 1.0 19886 +268782 Agxt2 alanine-glyoxylate aminotransferase 2 Novel N 0.00010304803766618071 -0.26291473049332714 1.0 19887 +246084 Defb35 defensin beta 35 Novel U 0.00010298309818824218 -0.26291540313430484 1.0 19888 +212190 Ubxn10 UBX domain protein 10 Novel N 0.00010274299766919375 -0.2629178900875883 1.0 19889 +68240 Rpa3 replication protein A3 Novel U 0.00010256839861555712 -0.26291969857884623 1.0 19890 +67528 Nudt7 nudix hydrolase 7 Novel U 0.00010228791579901475 -0.2629226038106396 1.0 19891 +80721 Slc19a3 solute carrier family 19, member 3 Novel N 0.00010213572718178776 -0.2629241801753339 1.0 19892 +102871 Radx RPA1 related single stranded DNA binding protein, X-linked Novel N 0.00010210676177338206 -0.262924480198082 1.0 19893 +235956 Zfp825 zinc finger protein 825 Novel U 0.00010206490840273513 -0.2629249137139193 1.0 19894 +66268 Pigyl phosphatidylinositol glycan anchor biosynthesis, class Y-like Novel U 0.00010190376029080238 -0.2629265828807652 1.0 19895 +83434 Rsph6a radial spoke head 6 homolog A (Chlamydomonas) Novel U 0.00010176795348338074 -0.26292798956321206 1.0 19896 +100503970 AY761185 cDNA sequence AY761185 Novel U 0.00010111329655464487 -0.2629347704781593 1.0 19897 +215085 Slc35f1 solute carrier family 35, member F1 Novel U 0.00010093576252234733 -0.26293660936982965 1.0 19898 +100043456 Hsd3b8 hydroxy-delta-5-steroid dehydrogenase, 3 beta- and steroid delta-isomerase 8 Novel U 0.00010091048027670887 -0.26293687124249887 1.0 19899 +108167848 Gm12258 predicted gene 12258 Novel U 0.00010082866126972653 -0.26293771872108357 1.0 19900 +244810 AW551984 expressed sequence AW551984 Novel U 0.00010082408091148702 -0.2629377661642836 1.0 19901 +19355 Rad1 RAD1 checkpoint DNA exonuclease Novel U 0.0001008072220561252 -0.2629379407877533 1.0 19902 +77577 Spns3 SPNS lysolipid transporter 3, sphingosine-1-phosphate (putative) Novel U 0.00010051563070260739 -0.26294096108140746 1.0 19903 +67103 Ptgr1 prostaglandin reductase 1 Novel N 0.00010050959404548341 -0.2629410236089035 1.0 19904 +433700 Spag8 sperm associated antigen 8 Novel U 0.0001005009796994218 -0.26294111283601684 1.0 19905 +76886 Fam81a family with sequence similarity 81, member A Novel U 0.00010044666382361875 -0.26294167543807284 1.0 19906 +116847 Prelp proline arginine-rich end leucine-rich repeat Novel N 0.00010036137054885225 -0.262942558903009 1.0 19907 +21818 Tgm3 transglutaminase 3, E polypeptide Novel U 0.00010032907685034169 -0.2629428934000766 1.0 19908 +20451 St8sia3 ST8 alpha-N-acetyl-neuraminide alpha-2,8-sialyltransferase 3 Novel N 0.00010029891913309187 -0.2629432057727205 1.0 19909 +22626 Slc23a3 solute carrier family 23 (nucleobase transporters), member 3 Novel N 0.00010022396406563776 -0.26294398215484516 1.0 19910 +233799 Acsm2 acyl-CoA synthetase medium-chain family member 2 Novel U 0.0001001867471040148 -0.2629443676469102 1.0 19911 +268294 Zbtb24 zinc finger and BTB domain containing 24 Novel U 0.00010009753632298311 -0.26294529168924746 1.0 19912 +71522 Ggt6 gamma-glutamyltransferase 6 Novel U 9.984837879040248e-05 -0.26294787245477935 1.0 19913 +69612 Kansl2 KAT8 regulatory NSL complex subunit 2 Novel U 9.959566617004344e-05 -0.26295049004379356 1.0 19914 +72350 Zc2hc1c zinc finger, C2HC-type containing 1C Novel U 9.959236469723665e-05 -0.2629505242403403 1.0 19915 +78725 Ly6g6g lymphocyte antigen 6 family member G6G Novel U 9.951281941051591e-05 -0.2629513481678053 1.0 19916 +81600 Chia1 chitinase, acidic 1 Novel U 9.947548919885421e-05 -0.2629517348329105 1.0 19917 +245404 Dcaf12l1 DDB1 and CUL4 associated factor 12-like 1 Novel U 9.944348594464516e-05 -0.26295206632156554 1.0 19918 +231642 Alkbh2 alkB homolog 2, alpha-ketoglutarate-dependent dioxygenase Novel N 9.943053464322023e-05 -0.26295220047072 1.0 19919 +70045 Gpr15lg G protein coupled receptor 15 ligand Novel U 9.931538679432383e-05 -0.26295339316835353 1.0 19920 +14651 Hagh hydroxyacyl glutathione hydrolase Novel N 9.913432380364785e-05 -0.26295526861285884 1.0 19921 +66501 1700029H14Rik RIKEN cDNA 1700029H14 gene Novel U 9.907659169882348e-05 -0.2629558666001028 1.0 19922 +71868 Spmap2l sperm microtubule associated protein 2 like Novel U 9.905790978015594e-05 -0.2629560601068022 1.0 19923 +239591 Ttll8 tubulin tyrosine ligase-like family, member 8 Novel U 9.893423218855419e-05 -0.26295734115523034 1.0 19924 +382109 Fbxw26 F-box and WD-40 domain protein 26 Novel U 9.887286726859166e-05 -0.26295797677105404 1.0 19925 +20536 Slc4a3 solute carrier family 4 (anion exchanger), member 3 Novel U 9.880174400843688e-05 -0.2629587134634447 1.0 19926 +239559 A4galt alpha 1,4-galactosyltransferase Novel U 9.87690184584354e-05 -0.2629590524336158 1.0 19927 +546672 Krtap13-23 keratin associated protein 13-23 Novel U 9.876616702970946e-05 -0.26295908196862083 1.0 19928 +102633156 Gm4631 predicted gene 4631 Novel U 9.867429161407044e-05 -0.2629600336111558 1.0 19929 +66875 Swt1 SWT1 RNA endoribonuclease homolog (S. cerevisiae) Novel U 9.857474769064388e-05 -0.2629610646838423 1.0 19930 +72401 Slc43a1 solute carrier family 43, member 1 Novel U 9.84818963239129e-05 -0.2629620264352466 1.0 19931 +64290 Foxb1 forkhead box B1 Novel U 9.842418729223205e-05 -0.2629626241834996 1.0 19932 +75172 Ccdc146 coiled-coil domain containing 146 Novel U 9.836779499100608e-05 -0.26296320829310194 1.0 19933 +69890 Zfp219 zinc finger protein 219 Novel N 9.831238106524312e-05 -0.26296378226872336 1.0 19934 +277496 Lkaaear1 LKAAEAR motif containing 1 (IKAAEAR murine motif) Novel U 9.823425491879957e-05 -0.2629645914967799 1.0 19935 +73610 Zfp433 zinc finger protein 433 Novel U 9.810571500189398e-05 -0.2629659229090137 1.0 19936 +73466 Ms4a13 membrane-spanning 4-domains, subfamily A, member 13 Novel U 9.806843252393472e-05 -0.26296630907969487 1.0 19937 +108168557 Gm21627 predicted gene, 21627 Novel U 9.799144268171709e-05 -0.26296710653794964 1.0 19938 +75434 Cimip2c ciliary microtubule inner protein 2C Novel U 9.794213779124379e-05 -0.26296761723638434 1.0 19939 +20863 Stfa3 stefin A3 Novel U 9.790869596366647e-05 -0.26296796362573505 1.0 19940 +320256 Dlec1 deleted in lung and esophageal cancer 1 Novel U 9.788594401676418e-05 -0.26296819928965315 1.0 19941 +382106 Fbxw24 F-box and WD-40 domain protein 24 Novel U 9.779420852997377e-05 -0.26296914948280964 1.0 19942 +75859 4930568D16Rik RIKEN cDNA 4930568D16 gene Novel U 9.765852908830858e-05 -0.26297055484600623 1.0 19943 +218100 Zfp322a zinc finger protein 322A Novel U 9.764645937826566e-05 -0.26297067986366607 1.0 19944 +72482 Acbd6 acyl-Coenzyme A binding domain containing 6 Novel U 9.753609232720427e-05 -0.2629718230419528 1.0 19945 +67710 Polr2g polymerase (RNA) II (DNA directed) polypeptide G Novel N 9.74527557589066e-05 -0.2629726862393877 1.0 19946 +408022 Primpol primase and polymerase (DNA-directed) Novel N 9.739805407916567e-05 -0.26297325283758827 1.0 19947 +636177 Rhox4f reproductive homeobox 4F Novel U 9.735575482716236e-05 -0.26297369097184997 1.0 19948 +329993 Aadacl4fm5 AADACL4 family member 5 Novel U 9.724458803938808e-05 -0.26297484243378333 1.0 19949 +74218 1700016H13Rik RIKEN cDNA 1700016H13 gene Novel U 9.722314728520839e-05 -0.2629750645164103 1.0 19950 +67236 Cinp cyclin dependent kinase 2 interacting protein Novel N 9.719848279277164e-05 -0.2629753199904122 1.0 19951 +140483 Hnmt histamine N-methyltransferase Novel U 9.709396812407361e-05 -0.26297640254991483 1.0 19952 +69671 Tmem52 transmembrane protein 52 Novel U 9.708096964830056e-05 -0.26297653718769953 1.0 19953 +13409 Tmc1 transmembrane channel-like gene family 1 Novel N 9.703807362172817e-05 -0.26297698150333265 1.0 19954 +13599 Ecel1 endothelin converting enzyme-like 1 Novel U 9.689816900000986e-05 -0.2629784306308053 1.0 19955 +100048534 Cfap43 cilia and flagella associated protein 43 Novel N 9.686239495293927e-05 -0.2629788011772089 1.0 19956 +70691 3830403N18Rik RIKEN cDNA 3830403N18 gene Novel U 9.672929455033265e-05 -0.2629801798268036 1.0 19957 +192140 Tmc2 transmembrane channel-like gene family 2 Novel N 9.672141846547254e-05 -0.2629802614070317 1.0 19958 +243377 Aoc1l3 amine oxidase copper containing 1-like 3 Novel U 9.659036045780695e-05 -0.2629816189015668 1.0 19959 +14840 Gsg1 germ cell associated 1 Novel U 9.641408706815808e-05 -0.2629834447355421 1.0 19960 +20763 Sprr2i small proline-rich protein 2I Novel U 9.630243925364904e-05 -0.26298460117993455 1.0 19961 +268930 Pkmyt1 protein kinase, membrane associated tyrosine/threonine 1 Novel U 9.629246679144437e-05 -0.2629847044743703 1.0 19962 +17071 Ly6f lymphocyte antigen 6 family member F Novel U 9.623816207364445e-05 -0.26298526696085206 1.0 19963 +15160 Serpind1 serine (or cysteine) peptidase inhibitor, clade D, member 1 Novel U 9.621361897038923e-05 -0.26298552117750873 1.0 19964 +217700 Acot6 acyl-CoA thioesterase 6 Novel N 9.594066527401138e-05 -0.26298834842292296 1.0 19965 +70020 Ino80b INO80 complex subunit B Novel N 9.5933902475515e-05 -0.26298841847176746 1.0 19966 +72215 Spmap1 sperm microtubule associated protein 1 Novel U 9.588970268554604e-05 -0.26298887629173895 1.0 19967 +100862025 Gm21409 predicted gene, 21409 Novel U 9.588484277646326e-05 -0.2629889266305175 1.0 19968 +18601 Padi3 peptidyl arginine deiminase, type III Novel U 9.580600424140055e-05 -0.26298974323747204 1.0 19969 +68668 Klk5 kallikrein related-peptidase 5 Novel U 9.574081288322231e-05 -0.26299041848741694 1.0 19970 +227696 Phyhd1 phytanoyl-CoA dioxygenase domain containing 1 Novel U 9.566166822713165e-05 -0.262991238265163 1.0 19971 +219249 Tdrd3 tudor domain containing 3 Novel U 9.565488881844806e-05 -0.2629913084860553 1.0 19972 +433247 Cyp2c68 cytochrome P450, family 2, subfamily c, polypeptide 68 Novel U 9.563136834159362e-05 -0.2629915521103814 1.0 19973 +77781 Epm2aip1 EPM2A interacting protein 1 Novel U 9.562385704834427e-05 -0.2629916299121099 1.0 19974 +214568 Gm136 predicted gene 136 Novel U 9.558672478645411e-05 -0.2629920145268579 1.0 19975 +22700 Zfp40 zinc finger protein 40 Novel U 9.533019999026993e-05 -0.26299467160226403 1.0 19976 +110446 Acat1 acetyl-Coenzyme A acetyltransferase 1 Novel N 9.522258237981648e-05 -0.2629957863019353 1.0 19977 +330096 Shisa3 shisa family member 3 Novel U 9.519975247867518e-05 -0.26299602277330086 1.0 19978 +76573 Spatc1l spermatogenesis and centriole associated 1 like Novel U 9.517760731923555e-05 -0.26299625215213435 1.0 19979 +69592 Odam odontogenic, ameloblast asssociated Novel U 9.513014261301927e-05 -0.262996743790001 1.0 19980 +347712 Pramel7 PRAME like 7 Novel U 9.478531515217291e-05 -0.2630003155015049 1.0 19981 +16873 Lhx5 LIM homeobox protein 5 Novel U 9.475341784906408e-05 -0.26300064589272193 1.0 19982 +66643 Lix1 limb and CNS expressed 1 Novel U 9.471603714077965e-05 -0.26300103308086953 1.0 19983 +215928 Mfsd4b5 major facilitator superfamily domain containing 4B5 Novel U 9.4708248371604e-05 -0.26300111375668456 1.0 19984 +234413 Zfp961 zinc finger protein 961 Novel U 9.458839964147681e-05 -0.26300235514589143 1.0 19985 +66158 Rtl8a retrotransposon Gag like 8A Novel U 9.457738867184982e-05 -0.26300246919715287 1.0 19986 +207785 Csrnp2 cysteine-serine-rich nuclear protein 2 Novel U 9.450308335756823e-05 -0.26300323884915555 1.0 19987 +235184 Msantd2 Myb/SANT-like DNA-binding domain containing 2 Novel U 9.448371567137834e-05 -0.2630034394590124 1.0 19988 +56702 H1f5 H1.5 linker histone, cluster member Novel U 9.439837345011743e-05 -0.26300432343093477 1.0 19989 +194588 Obox7 oocyte specific homeobox 7 Novel U 9.438965661042138e-05 -0.26300441371967376 1.0 19990 +641361 Pinlyp phospholipase A2 inhibitor and LY6/PLAUR domain containing Novel U 9.430469214404151e-05 -0.2630052937788235 1.0 19991 +232333 Slc6a1 solute carrier family 6 (neurotransmitter transporter, GABA), member 1 Novel U 9.423141801018696e-05 -0.2630060527498932 1.0 19992 +54338 Slc23a2 solute carrier family 23 (nucleobase transporters), member 2 Novel N 9.422913062610568e-05 -0.2630060764425423 1.0 19993 +72668 Skida1 SKI/DACH domain containing 1 Novel U 9.412955856495928e-05 -0.2630071078066784 1.0 19994 +546726 Cyp26c1 cytochrome P450, family 26, subfamily c, polypeptide 1 Novel U 9.411678787556122e-05 -0.2630072400850594 1.0 19995 +71761 Amdhd1 amidohydrolase domain containing 1 Novel N 9.400128082323092e-05 -0.2630084365033103 1.0 19996 +574437 Xlr3b X-linked lymphocyte-regulated 3B Novel U 9.395779835136406e-05 -0.2630088868933245 1.0 19997 +68539 Tmem109 transmembrane protein 109 Novel U 9.394013447269953e-05 -0.263009069855199 1.0 19998 +15220 Foxq1 forkhead box Q1 Novel N 9.39045438545253e-05 -0.2630094385016521 1.0 19999 +319192 H2ac19 H2A clustered histone 19 Novel U 9.388719171495419e-05 -0.2630096182345434 1.0 20000 +67855 Asprv1 aspartic peptidase, retroviral-like 1 Novel U 9.384299130604524e-05 -0.26301007606092586 1.0 20001 +99709 Clca4b chloride channel accessory 4B Novel U 9.370799176225724e-05 -0.26301147438176253 1.0 20002 +67922 Fam32a family with sequence similarity 32, member A Novel U 9.335039624954178e-05 -0.2630151783443279 1.0 20003 +60406 Sap30 sin3 associated polypeptide Novel U 9.319642683138963e-05 -0.2630167731544997 1.0 20004 +241066 Carf calcium response factor Novel N 9.318542481719376e-05 -0.26301688711300103 1.0 20005 +66757 Adat2 adenosine deaminase, tRNA-specific 2 Novel U 9.307128298423943e-05 -0.26301806939035455 1.0 20006 +12035 Bcat1 branched chain aminotransferase 1, cytosolic Novel N 9.305992601148555e-05 -0.263018187025505 1.0 20007 +13850 Ephx2 epoxide hydrolase 2, cytoplasmic Novel U 9.297746510519253e-05 -0.2630190411528616 1.0 20008 +76650 Srxn1 sulfiredoxin 1 homolog (S. cerevisiae) Novel N 9.279892276283217e-05 -0.2630208904885745 1.0 20009 +214425 Cilp cartilage intermediate layer protein, nucleotide pyrophosphohydrolase Novel U 9.27387657323745e-05 -0.26302151359311843 1.0 20010 +71760 Etnppl ethanolamine phosphate phospholyase Novel U 9.271763591971241e-05 -0.2630217324550234 1.0 20011 +234356 Csgalnact1 chondroitin sulfate N-acetylgalactosaminyltransferase 1 Novel U 9.271616218483877e-05 -0.2630217477199208 1.0 20012 +319800 Slc22a30 solute carrier family 22, member 30 Novel U 9.270528877679234e-05 -0.2630218603463239 1.0 20013 +14431 Gamt guanidinoacetate methyltransferase Novel N 9.26268122634739e-05 -0.26302267320346906 1.0 20014 +243963 Zfp473 zinc finger protein 473 Novel U 9.258273021500305e-05 -0.263023129803878 1.0 20015 +18857 Pmp2 peripheral myelin protein 2 Novel U 9.249883968602562e-05 -0.2630239987392194 1.0 20016 +67885 Mtln mitoregulin Novel N 9.245194376766265e-05 -0.2630244844856002 1.0 20017 +100113398 Adat3 adenosine deaminase, tRNA-specific 3 Novel U 9.235716155510912e-05 -0.263025466236642 1.0 20018 +622408 Mcidas multiciliate differentiation and DNA synthesis associated cell cycle protein Novel U 9.234704369797543e-05 -0.2630255710370736 1.0 20019 +381148 Prob1 proline rich basic protein 1 Novel U 9.233390815182289e-05 -0.2630257070946288 1.0 20020 +230959 Ajap1 adherens junction associated protein 1 Novel U 9.22315703165473e-05 -0.2630267671065625 1.0 20021 +108168511 Gm21865 predicted gene, 21865 Novel U 9.219462005255602e-05 -0.2630271498361822 1.0 20022 +74561 Nkx6-3 NK6 homeobox 3 Novel N 9.216868498284464e-05 -0.2630274184707817 1.0 20023 +78465 Ccdc190 coiled-coil domain containing 190 Novel U 9.203022493897726e-05 -0.26302885263536446 1.0 20024 +664994 Isoc2a isochorismatase domain containing 2a Novel U 9.202962727832716e-05 -0.2630288588259138 1.0 20025 +213603 Slc44a3 solute carrier family 44, member 3 Novel U 9.201879363741884e-05 -0.26302897104041023 1.0 20026 +77908 Pate13 prostate and testis expressed 13 Novel U 9.191346082544543e-05 -0.263030062074214 1.0 20027 +214580 Pstk phosphoseryl-tRNA kinase Novel U 9.179841618300304e-05 -0.26303125370283853 1.0 20028 +69987 Spaca9 sperm acrosome associated 9 Novel N 9.161229384722508e-05 -0.26303318155187405 1.0 20029 +66129 Prxl2c peroxiredoxin like 2C Novel U 9.145970551631973e-05 -0.2630347620567895 1.0 20030 +209837 Slc38a5 solute carrier family 38, member 5 Novel N 9.145865195035272e-05 -0.26303477296959116 1.0 20031 +232969 Zfp428 zinc finger protein 428 Novel U 9.143341139501823e-05 -0.2630350344104336 1.0 20032 +381476 Stpg2 sperm tail PG rich repeat containing 2 Novel U 9.141342343232115e-05 -0.2630352414450941 1.0 20033 +69281 Spata4 spermatogenesis associated 4 Novel U 9.135117011912868e-05 -0.2630358862628657 1.0 20034 +380994 Gm20736 predicted gene, 20736 Novel U 9.109412722858976e-05 -0.2630385487046761 1.0 20035 +117599 Helb helicase (DNA) B Novel N 9.107238784927715e-05 -0.2630387738804523 1.0 20036 +19660 Rbp2 retinol binding protein 2, cellular Novel N 9.104668170166045e-05 -0.26303904014388435 1.0 20037 +112418 1700102P08Rik RIKEN cDNA 1700102P08 gene Novel U 9.089163916024351e-05 -0.26304064606943156 1.0 20038 +234076 Tmco3 transmembrane and coiled-coil domains 3 Novel U 9.07488269679085e-05 -0.2630421253134251 1.0 20039 +67828 Lce1f late cornified envelope 1F Novel U 9.05100880520629e-05 -0.2630445981632673 1.0 20040 +73229 Zfp983 zinc finger protein 983 Novel U 9.050115142408354e-05 -0.2630446907285661 1.0 20041 +67290 3110040N11Rik RIKEN cDNA 3110040N11 gene Novel U 9.035993939784744e-05 -0.2630461533980918 1.0 20042 +100503949 Zfp965 zinc finger protein 965 Novel U 9.02944493284344e-05 -0.26304683174207794 1.0 20043 +67618 Aasdhppt aminoadipate-semialdehyde dehydrogenase-phosphopantetheinyl transferase Novel N 9.002135093533808e-05 -0.26304966048625594 1.0 20044 +70166 Lipn lipase, family member N Novel U 8.997670361083983e-05 -0.26305012294177543 1.0 20045 +78789 Vsig1 V-set and immunoglobulin domain containing 1 Novel U 8.996399983657606e-05 -0.2630502545270516 1.0 20046 +76813 Armc6 armadillo repeat containing 6 Novel U 8.985538131969243e-05 -0.26305137959407887 1.0 20047 +67750 4930578I06Rik RIKEN cDNA 4930578I06 gene Novel U 8.980638097428361e-05 -0.2630518871380458 1.0 20048 +66930 Fank1 fibronectin type 3 and ankyrin repeat domains 1 Novel U 8.971362785107286e-05 -0.26305284787184696 1.0 20049 +13445 Cdk2ap1 cyclin dependent kinase 2 associated protein 1 Novel U 8.95213691229886e-05 -0.26305483928143225 1.0 20050 +78444 Pgpep1l pyroglutamyl-peptidase I-like Novel U 8.938426928067393e-05 -0.26305625935709204 1.0 20051 +71241 Dmrtc2 doublesex and mab-3 related transcription factor like family C2 Novel U 8.925091819654602e-05 -0.2630576406032378 1.0 20052 +71932 Ephx3 epoxide hydrolase 3 Novel N 8.91567831902149e-05 -0.26305861565053884 1.0 20053 +233899 Cfap119 cilia and flagella associated protein 119 Novel U 8.913354031028528e-05 -0.2630588563995251 1.0 20054 +224598 Zfp758 zinc finger protein 758 Novel U 8.894884168641585e-05 -0.26306076950179946 1.0 20055 +382064 Gm1110 predicted gene 1110 Novel U 8.892018580706316e-05 -0.26306106631845577 1.0 20056 +100101807 Fam177a2 family with sequence similarity 177 member A2 Novel U 8.886892437443518e-05 -0.26306159728268985 1.0 20057 +76486 Ly6k lymphocyte antigen 6 family member K Novel U 8.885431075231066e-05 -0.2630617486501074 1.0 20058 +28081 Vcf1 VCP nuclear cofactor family member 1 Novel U 8.851604909104482e-05 -0.26306525235327505 1.0 20059 +108927 Lhfpl6 LHFPL tetraspan subfamily member 6 Novel U 8.846445809003669e-05 -0.2630657867311675 1.0 20060 +234728 Cmtr2 cap methyltransferase 2 Novel N 8.842244164401662e-05 -0.26306622193613416 1.0 20061 +100504715 Tmppe transmembrane protein with metallophosphoesterase domain Novel U 8.834902159781942e-05 -0.26306698241855914 1.0 20062 +73463 C2cd6 C2 calcium dependent domain containing 6 Novel U 8.822649247781739e-05 -0.2630682515711562 1.0 20063 +243905 Zfp568 zinc finger protein 568 Novel U 8.816984866150677e-05 -0.26306883828594346 1.0 20064 +74843 Mss51 MSS51 mitochondrial translational activator Novel U 8.816711082856522e-05 -0.26306886664432705 1.0 20065 +74203 Eif4enif1 eukaryotic translation initiation factor 4E nuclear import factor 1 Novel U 8.81308631983998e-05 -0.26306924209608873 1.0 20066 +381236 Lipo3 lipase, member O3 Novel U 8.798079315274029e-05 -0.2630707965166884 1.0 20067 +108168525 Gm20937 predicted gene, 20937 Novel U 8.790892409730002e-05 -0.2630715409340021 1.0 20068 +100043684 Amy2a4 amylase 2a4 Novel U 8.767667263646834e-05 -0.2630739465869985 1.0 20069 +70979 Fancd2os Fancd2 opposite strand Novel U 8.745853148184748e-05 -0.2630762060859071 1.0 20070 +75472 Cfap126 cilia and flagella associated protein 126 Novel U 8.744073755917867e-05 -0.26307639039477315 1.0 20071 +240817 Teddm2 transmembrane epididymal family member 2 Novel U 8.736469046294791e-05 -0.263077178088096 1.0 20072 +268670 Zfp759 zinc finger protein 759 Novel U 8.73230586530375e-05 -0.26307760930901447 1.0 20073 +240034 Zfp760 zinc finger protein 760 Novel U 8.726353073807047e-05 -0.2630782258972008 1.0 20074 +67667 Alkbh8 alkB homolog 8, tRNA methyltransferase Novel U 8.725786924577427e-05 -0.2630782845387519 1.0 20075 +268709 Fam107a family with sequence similarity 107, member A Novel U 8.717920479628192e-05 -0.2630790993425338 1.0 20076 +216136 Ilvbl ilvB (bacterial acetolactate synthase)-like Novel N 8.6942080417466e-05 -0.2630815554690545 1.0 20077 +74666 Brme1 break repair meiotic recombinase recruitment factor 1 Novel U 8.661465151268891e-05 -0.26308494696688656 1.0 20078 +78076 Lcn8 lipocalin 8 Novel U 8.661162700625807e-05 -0.26308497829462474 1.0 20079 +238662 Spata31d1b spermatogenesis associated 31 subfamily D, member 1B Novel U 8.660773421220089e-05 -0.2630850186160576 1.0 20080 +208665 Akr1d1 aldo-keto reductase family 1, member D1 Novel U 8.657926995668557e-05 -0.26308531344788055 1.0 20081 +207182 Ggt7 gamma-glutamyltransferase 7 Novel N 8.655636514754904e-05 -0.2630855506951406 1.0 20082 +387132 Ssxb2 SSX member B2 Novel U 8.652503652812566e-05 -0.2630858751959507 1.0 20083 +74026 Msl1 male specific lethal 1 Novel U 8.649482193190122e-05 -0.2630861881577452 1.0 20084 +76568 Ift46 intraflagellar transport 46 Novel U 8.649340402429805e-05 -0.26308620284438555 1.0 20085 +30928 Zbtb18 zinc finger and BTB domain containing 18 Novel U 8.634919091724101e-05 -0.26308769659900766 1.0 20086 +404634 Macroh2a2 macroH2A.2 histone Novel U 8.633869073826692e-05 -0.2630878053595163 1.0 20087 +67017 Fam210b family with sequence similarity 210, member B Novel U 8.616320890469321e-05 -0.26308962299457983 1.0 20088 +70984 4931406C07Rik RIKEN cDNA 4931406C07 gene Novel U 8.615685165642077e-05 -0.2630896888427484 1.0 20089 +100504183 Krtap16-1 keratin associated protein 16-1 Novel U 8.60292214282452e-05 -0.26309101083245623 1.0 20090 +235504 Slc17a5 solute carrier family 17 (anion/sugar transporter), member 5 Novel N 8.596590174217622e-05 -0.263091666695683 1.0 20091 +16447 Ivl involucrin Novel U 8.588313708001594e-05 -0.26309252396933297 1.0 20092 +14867 Gstm6 glutathione S-transferase, mu 6 Novel U 8.582078355799539e-05 -0.26309316982506425 1.0 20093 +665270 Plb1 phospholipase B1 Novel U 8.560848095305411e-05 -0.2630953688484672 1.0 20094 +13215 Defb2 defensin beta 2 Novel U 8.549508280297163e-05 -0.263096543422778 1.0 20095 +246703 Naxe NAD(P)HX epimerase Novel U 8.533752980568504e-05 -0.26309817535154456 1.0 20096 +75210 Prr3 proline-rich polypeptide 3 Novel U 8.532670623689468e-05 -0.2630982874617143 1.0 20097 +626305 Scgb1b7 secretoglobin, family 1B, member 7 Novel U 8.52611391166642e-05 -0.26309896660379023 1.0 20098 +243616 Slc6a11 solute carrier family 6 (neurotransmitter transporter, GABA), member 11 Novel U 8.519046029296702e-05 -0.2630996986927227 1.0 20099 +108168552 Gm20890 predicted gene, 20890 Novel U 8.509437885438621e-05 -0.26310069390110497 1.0 20100 +20521 Slc22a12 solute carrier family 22 (organic anion/cation transporter), member 12 Novel N 8.504046704101857e-05 -0.2631012523178956 1.0 20101 +381411 Accsl 1-aminocyclopropane-1-carboxylate synthase (inactive)-like Novel U 8.482373587130268e-05 -0.26310349721222687 1.0 20102 +70061 Sdr9c7 4short chain dehydrogenase/reductase family 9C, member 7 Novel U 8.481923587233337e-05 -0.2631035438230683 1.0 20103 +68347 Mettl26 methyltransferase like 26 Novel U 8.449819549966325e-05 -0.26310686914869474 1.0 20104 +214663 Slc25a29 solute carrier family 25 (mitochondrial carrier, palmitoylcarnitine transporter), member 29 Novel N 8.444017936588038e-05 -0.26310747007790125 1.0 20105 +328789 Lhfpl5 lipoma HMGIC fusion partner-like 5 Novel N 8.43976055475631e-05 -0.26310791105611187 1.0 20106 +117171 1110038F14Rik RIKEN cDNA 1110038F14 gene Novel U 8.404000009363474e-05 -0.26311161512164805 1.0 20107 +64705 Dpys dihydropyrimidinase Novel N 8.399911495868184e-05 -0.26311203860853183 1.0 20108 +66595 Aste1 asteroid homolog 1 Novel U 8.39865199622078e-05 -0.2631121690670913 1.0 20109 +94353 Hmgn3 high mobility group nucleosomal binding domain 3 Novel U 8.383049990690828e-05 -0.2631137851176952 1.0 20110 +67993 Nudt12 nudix hydrolase 12 Novel N 8.381416049295243e-05 -0.2631139543608078 1.0 20111 +108168547 Gm20894 predicted gene, 20894 Novel U 8.379949394991741e-05 -0.26311410627637843 1.0 20112 +544922 Zkscan4 zinc finger with KRAB and SCAN domains 4 Novel U 8.378991143729603e-05 -0.26311420553172915 1.0 20113 +72462 Rrp1b ribosomal RNA processing 1B Novel U 8.372544859250941e-05 -0.26311487323575633 1.0 20114 +69219 Ddah1 dimethylarginine dimethylaminohydrolase 1 Novel N 8.372403034612997e-05 -0.26311488792590576 1.0 20115 +238693 Zfp58 zinc finger protein 58 Novel U 8.37026687029485e-05 -0.2631151091891036 1.0 20116 +12023 Barx2 BarH-like homeobox 2 Novel N 8.350125757272908e-05 -0.26311719539896933 1.0 20117 +69504 Zfp932 zinc finger protein 932 Novel U 8.344171900648383e-05 -0.2631178120974813 1.0 20118 +98388 Chst10 carbohydrate sulfotransferase 10 Novel N 8.329586805781952e-05 -0.26311932281681294 1.0 20119 +17192 Mbd3 methyl-CpG binding domain protein 3 Novel N 8.321811595125069e-05 -0.26312012817057684 1.0 20120 +269954 Ttll13 tubulin tyrosine ligase-like family, member 13 Novel U 8.306057790722219e-05 -0.26312175994445813 1.0 20121 +67971 Tppp3 tubulin polymerization-promoting protein family member 3 Novel N 8.29067589876567e-05 -0.2631233531957704 1.0 20122 +71754 Cyp2d40 cytochrome P450, family 2, subfamily d, polypeptide 40 Novel U 8.27226156821289e-05 -0.2631252605460757 1.0 20123 +64833 Acot10 acyl-CoA thioesterase 10 Novel U 8.258930325901482e-05 -0.2631266413917719 1.0 20124 +242735 Lrrc38 leucine rich repeat containing 38 Novel N 8.258136686588367e-05 -0.2631267235966711 1.0 20125 +74492 Kbtbd13 kelch repeat and BTB (POZ) domain containing 13 Novel U 8.257804730827817e-05 -0.26312675798053964 1.0 20126 +19118 Prm1 protamine 1 Novel U 8.248335301920205e-05 -0.263127738820873 1.0 20127 +67278 Pagr1a PAXIP1 associated glutamate rich protein 1A Novel U 8.246370484171761e-05 -0.26312794233604947 1.0 20128 +435927 Slco1a7 solute carrier organic anion transporter family, member 1a7 Novel U 8.242791642511247e-05 -0.2631283130312922 1.0 20129 +237775 Zfp867 zinc finger protein 867 Novel U 8.22900182428112e-05 -0.26312974137613127 1.0 20130 +665913 Zscan4-ps2 zinc finger and SCAN domain containing 4, pseudogene 2 Novel U 8.227435629630933e-05 -0.2631299036020583 1.0 20131 +69332 Lelp1 late cornified envelope-like proline-rich 1 Novel U 8.216470170902568e-05 -0.2631310394006687 1.0 20132 +67432 Hoga1 4-hydroxy-2-oxoglutarate aldolase 1 Novel N 8.207906237277349e-05 -0.26313192645009836 1.0 20133 +16688 Krt6b keratin 6B Novel U 8.191232401348177e-05 -0.26313365352054263 1.0 20134 +223917 Krt79 keratin 79 Novel U 8.157932611887229e-05 -0.2631371027017883 1.0 20135 +14871 Gstt1 glutathione S-transferase, theta 1 Novel U 8.150918969146858e-05 -0.26313782917259776 1.0 20136 +102423 Hinfp histone H4 transcription factor Novel N 8.134996901337153e-05 -0.2631394783751474 1.0 20137 +69216 Svbp small vasohibin binding protein Novel U 8.133256740704369e-05 -0.26313965862041366 1.0 20138 +74401 Terb2 telomere repeat binding bouquet formation protein 2 Novel N 8.119722427328087e-05 -0.263141060500144 1.0 20139 +320244 Ttll5 tubulin tyrosine ligase-like family, member 5 Novel U 8.118797116039912e-05 -0.2631411563435831 1.0 20140 +56752 Aldh9a1 aldehyde dehydrogenase 9, subfamily A1 Novel U 8.104747237539699e-05 -0.2631426116253795 1.0 20141 +240549 Gm4952 predicted gene 4952 Novel U 8.103463260985843e-05 -0.26314274461924886 1.0 20142 +74264 Rnf138rt1 ring finger protein 138, retrogene 1 Novel U 8.096664206006965e-05 -0.26314344886312846 1.0 20143 +11989 Slc7a3 solute carrier family 7 (cationic amino acid transporter, y+ system), member 3 Novel U 8.093466912853807e-05 -0.2631437800377022 1.0 20144 +70567 Fra10ac1 FRA10A associated CGG repeat 1 Novel U 8.090572096173054e-05 -0.2631440798818624 1.0 20145 +18979 Pon1 paraoxonase 1 Novel U 8.089820835010763e-05 -0.26314415769724664 1.0 20146 +66381 Rnf113a2 ring finger protein 113A2 Novel U 8.08969257033123e-05 -0.26314417098285997 1.0 20147 +232973 Lypd4 Ly6/Plaur domain containing 4 Novel U 8.07700665991351e-05 -0.2631454849852908 1.0 20148 +269870 Zfp446 zinc finger protein 446 Novel U 8.076921796892837e-05 -0.26314549377537455 1.0 20149 +75429 Cfap144 cilia and flagella associated protein 144 Novel U 8.068540884285686e-05 -0.26314636186754736 1.0 20150 +75185 Samt4 spermatogenesis associated multipass transmembrane protein 4 Novel U 8.055855246622393e-05 -0.2631476758417263 1.0 20151 +103551 Epop elongin BC and polycomb repressive complex 2 associated protein Novel U 8.044509335443072e-05 -0.2631488510474765 1.0 20152 +385377 Pnma5 paraneoplastic antigen family 5 Novel U 8.04389750421087e-05 -0.2631489144207544 1.0 20153 +217666 L2hgdh L-2-hydroxyglutarate dehydrogenase Novel U 8.004457647850781e-05 -0.263152999588111 1.0 20154 +18292 Sebox SEBOX homeobox Novel U 8.003779900392369e-05 -0.26315306978896996 1.0 20155 +246082 Defb15 defensin beta 15 Novel U 7.976726889389596e-05 -0.26315587193095646 1.0 20156 +234839 Piezo1 piezo-type mechanosensitive ion channel component 1 Novel U 7.94403680895082e-05 -0.263159257958742 1.0 20157 +210853 Zfp947 zinc finger protein 947 Novel U 7.941301067759717e-05 -0.26315954132591524 1.0 20158 +227736 Cfap157 cilia and flagella associated protein 157 Novel U 7.903764672225071e-05 -0.2631634293334253 1.0 20159 +68625 Cfap57 cilia and flagella associated protein 57 Novel U 7.891492876098531e-05 -0.263164700442034 1.0 20160 +232855 Zfp772 zinc finger protein 772 Novel U 7.89009396089818e-05 -0.26316484534121054 1.0 20161 +20888 Sult1c1 sulfotransferase family, cytosolic, 1C, member 1 Novel N 7.874513665163435e-05 -0.263166459143121 1.0 20162 +269356 Slc4a11 solute carrier family 4, sodium bicarbonate transporter-like, member 11 Novel U 7.862528868343584e-05 -0.2631677005244358 1.0 20163 +320541 Slc35e2 solute carrier family 35, member E2 Novel U 7.846321259117299e-05 -0.2631693793032715 1.0 20164 +18027 Nfia nuclear factor I/A Novel U 7.83639822036398e-05 -0.26317040712836354 1.0 20165 +207151 Slc22a19 solute carrier family 22 (organic anion transporter), member 19 Novel U 7.835117518567324e-05 -0.2631705397830347 1.0 20166 +68185 Coa4 cytochrome c oxidase assembly factor 4 Novel U 7.824986139332219e-05 -0.2631715891879653 1.0 20167 +546123 Gm5916 predicted gene 5916 Novel U 7.823566506723535e-05 -0.2631717362330442 1.0 20168 +626316 Zfp987 zinc finger protein 987 Novel U 7.804731867362137e-05 -0.26317368711879774 1.0 20169 +245683 Klhl34 kelch-like 34 Novel U 7.791786778225214e-05 -0.26317502796687503 1.0 20170 +77684 Bsph2 binder of sperm protein homolog 2 Novel U 7.784424307968462e-05 -0.263175790569124 1.0 20171 +225791 Ptgr3 prostaglandin reductase 3 Novel U 7.780541138736324e-05 -0.26317619278651655 1.0 20172 +68694 Lce1e late cornified envelope 1E Novel U 7.764666523985034e-05 -0.26317783707389397 1.0 20173 +67692 1700020N01Rik RIKEN cDNA 1700020N01 gene Novel U 7.756071786578182e-05 -0.2631787273139692 1.0 20174 +380768 Ccdc177 coiled-coil domain containing 177 Novel U 7.755012253608999e-05 -0.2631788370600458 1.0 20175 +16694 Krtap12-1 keratin associated protein 12-1 Novel U 7.74618810291159e-05 -0.26317975106267427 1.0 20176 +108168555 Gm20896 predicted gene, 20896 Novel U 7.741359914507702e-05 -0.263180251164842 1.0 20177 +432467 Hnrnph3 heterogeneous nuclear ribonucleoprotein H3 Novel N 7.726856462471881e-05 -0.26318175342763606 1.0 20178 +67684 Luc7l3 LUC7-like 3 (S. cerevisiae) Novel N 7.715551190521075e-05 -0.26318292442398833 1.0 20179 +54169 Kat6b K(lysine) acetyltransferase 6B Novel U 7.708445757522816e-05 -0.26318366040240254 1.0 20180 +212892 Rsph4a radial spoke head 4 homolog A (Chlamydomonas) Novel N 7.701891545268275e-05 -0.26318433928555324 1.0 20181 +54613 St3gal6 ST3 beta-galactoside alpha-2,3-sialyltransferase 6 Novel N 7.695749814399176e-05 -0.2631849754440177 1.0 20182 +22255 Uncx UNC homeobox Novel U 7.689149802662345e-05 -0.2631856590710638 1.0 20183 +230125 Slc25a51 solute carrier family 25, member 51 Novel U 7.682456528253445e-05 -0.26318635235822674 1.0 20184 +434396 Pate9 prostate and testis expressed 9 Novel U 7.680934058252173e-05 -0.263186510055169 1.0 20185 +666927 Gm12887 predicted gene 12887 Novel U 7.667413256473106e-05 -0.26318791053537255 1.0 20186 +638251 Sult2a7 sulfotransferase family 2A, dehydroepiandrosterone (DHEA)-preferring, member 7 Novel U 7.660024773613042e-05 -0.26318867583199834 1.0 20187 +229933 Clca2 chloride channel accessory 2 Novel N 7.653775859136341e-05 -0.26318932309250564 1.0 20188 +434171 Gm5591 predicted gene 5591 Novel U 7.649473244018136e-05 -0.26318976875596517 1.0 20189 +192287 Slc25a36 solute carrier family 25, member 36 Novel N 7.645771802341971e-05 -0.2631901521500772 1.0 20190 +675294 Krtap10-29 keratin associated protein 10-29 Novel U 7.644441950273871e-05 -0.26319028989571724 1.0 20191 +66071 Ethe1 ethylmalonic encephalopathy 1 Novel U 7.622352199361392e-05 -0.2631925779448551 1.0 20192 +68404 Nrn1 neuritin 1 Novel U 7.612558869509302e-05 -0.2631935923347419 1.0 20193 +211253 Mtrf1 mitochondrial translational release factor 1 Novel U 7.584363759947673e-05 -0.2631965127749216 1.0 20194 +11698 Ambn ameloblastin Novel N 7.570557559849124e-05 -0.26319794281658926 1.0 20195 +83885 Slc25a2 solute carrier family 25 (mitochondrial carrier, ornithine transporter) member 2 Novel N 7.569664098203346e-05 -0.2631980353610528 1.0 20196 +74910 4930480E11Rik RIKEN cDNA 4930480E11 gene Novel U 7.553002076777391e-05 -0.2631997612077548 1.0 20197 +68777 Tmem53 transmembrane protein 53 Novel U 7.547594371054202e-05 -0.2632003213361359 1.0 20198 +71386 Krtap28-13 keratin associated protein 28-13 Novel U 7.523719385895871e-05 -0.26320279429925014 1.0 20199 +435528 Glyatl3 glycine-N-acyltransferase-like 3 Novel U 7.52005324981655e-05 -0.2632031740364201 1.0 20200 +69315 Cfap90 cilia and flagella associated protein 90 Novel U 7.513729866907143e-05 -0.2632038290103431 1.0 20201 +330216 Mblac1 metallo-beta-lactamase domain containing 1 Novel U 7.497933162542199e-05 -0.26320546522778837 1.0 20202 +104457 0610010K14Rik RIKEN cDNA 0610010K14 gene Novel U 7.455202898658378e-05 -0.26320989121447463 1.0 20203 +16872 Lhx4 LIM homeobox protein 4 Novel U 7.448003570796734e-05 -0.2632106369184879 1.0 20204 +107435 Hat1 histone aminotransferase 1 Novel U 7.434296588231669e-05 -0.26321205668323605 1.0 20205 +403172 Defb21 defensin beta 21 Novel U 7.434278871558834e-05 -0.2632120585183232 1.0 20206 +237858 Trarg1 trafficking regulator of GLUT4 (SLC2A4) 1 Novel U 7.419919000501912e-05 -0.2632135459090467 1.0 20207 +545126 Redic1 regulator of DNA class I crossover intermediates 1 Novel U 7.416235108862158e-05 -0.26321392748533173 1.0 20208 +100647 Upk3b uroplakin 3B Novel N 7.412256370566535e-05 -0.26321433960173646 1.0 20209 +630994 Lce3d late cornified envelope 3D Novel U 7.399464023351449e-05 -0.26321566462885576 1.0 20210 +208501 Ndufaf8 NADH:ubiquinone oxidoreductase complex assembly factor 8 Novel N 7.381423648549617e-05 -0.26321753324494723 1.0 20211 +381196 Top6bl TOP6B like initiator of meiotic double strand breaks Novel U 7.374680539033549e-05 -0.26321823169401426 1.0 20212 +100040712 Gm20850 predicted gene, 20850 Novel U 7.373683173205546e-05 -0.26321833500083885 1.0 20213 +243753 Slc23a4 solute carrier family 23 member 4 Novel U 7.37163362945282e-05 -0.263218547291907 1.0 20214 +74200 Khdc4 KH domain containing 4, pre-mRNA splicing factor Novel N 7.36654403803203e-05 -0.2632190744701133 1.0 20215 +54342 Gnpnat1 glucosamine-phosphate N-acetyltransferase 1 Novel U 7.345581113525943e-05 -0.26322124580294237 1.0 20216 +20229 Sat1 spermidine/spermine N1-acetyl transferase 1 Novel U 7.338882896868471e-05 -0.26322193960202184 1.0 20217 +654458 Defb43 defensin beta 43 Novel U 7.338820312343192e-05 -0.26322194608450644 1.0 20218 +100504112 Ccer2 coiled-coil glutamate-rich protein 2 Novel U 7.335635028655727e-05 -0.26322227601514364 1.0 20219 +17830 Prol1 proline rich, lacrimal 1 Novel U 7.334789933186057e-05 -0.2632223635498546 1.0 20220 +234365 Yjefn3 YjeF N-terminal domain containing 3 Novel U 7.329786967146109e-05 -0.2632228817554324 1.0 20221 +16660 Krt31 keratin 31 Novel U 7.32948261006249e-05 -0.26322291328063907 1.0 20222 +108168515 Gm21209 predicted gene, 21209 Novel U 7.305130957307636e-05 -0.2632254356168262 1.0 20223 +114712 Ferd3l Fer3 like bHLH transcription factor Novel U 7.29848276525905e-05 -0.26322612423437314 1.0 20224 +74007 Abtb3 ankyrin repeat and BTB domain containing 3 Novel U 7.289658077914022e-05 -0.26322703829258737 1.0 20225 +15372 Hmx2 H6 homeobox 2 Novel U 7.282941154250868e-05 -0.26322773402933236 1.0 20226 +79455 Pdcl2 phosducin-like 2 Novel U 7.277303142613508e-05 -0.26322831801272434 1.0 20227 +242285 Sdr16c5 short chain dehydrogenase/reductase family 16C, member 5 Novel N 7.238526276755283e-05 -0.26323233450774275 1.0 20228 +270097 Vat1l vesicle amine transport protein 1 like Novel U 7.229712108919613e-05 -0.26323324747634963 1.0 20229 +223337 Ugt3a2 UDP glycosyltransferases 3 family, polypeptide A2 Novel U 7.221705509356627e-05 -0.2632340767973004 1.0 20230 +382282 Rhox12 reproductive homeobox 12 Novel U 7.216350670876858e-05 -0.26323463144970977 1.0 20231 +338365 Slc41a2 solute carrier family 41, member 2 Novel N 7.21243840695556e-05 -0.2632350366807206 1.0 20232 +58237 Nkain4 Na+/K+ transporting ATPase interacting 4 Novel U 7.212327333510386e-05 -0.26323504818567156 1.0 20233 +216119 Ybey ybeY metallopeptidase Novel U 7.211279115401463e-05 -0.2632351567597587 1.0 20234 +19716 Bex1 brain expressed X-linked 1 Novel U 7.185608604462162e-05 -0.2632378157028431 1.0 20235 +226791 Lyplal1 lysophospholipase-like 1 Novel U 7.173764552931977e-05 -0.2632390425058071 1.0 20236 +68221 Wfdc15a WAP four-disulfide core domain 15A Novel U 7.166143524985014e-05 -0.26323983188937655 1.0 20237 +52686 Mettl2 methyltransferase 2, methylcytidine Novel U 7.162003453276624e-05 -0.26324026071664314 1.0 20238 +100040533 Btbd35f5 BTB domain containing 35, family member 5 Novel U 7.137941467415109e-05 -0.2632427530492287 1.0 20239 +76187 Adhfe1 alcohol dehydrogenase, iron containing, 1 Novel N 7.102943453869684e-05 -0.2632463781319668 1.0 20240 +545611 Spata31f1b spermatogenesis associated 31 subfamily F member 1B Novel U 7.101249373915773e-05 -0.26324655360421145 1.0 20241 +67773 Kat8 K(lysine) acetyltransferase 8 Novel N 7.100117396511213e-05 -0.26324667085405895 1.0 20242 +20945 Svs6 seminal vesicle secretory protein 6 Novel U 7.098303262264373e-05 -0.26324685876148785 1.0 20243 +100312986 Pate7 prostate and testis expressed 7 Novel U 7.097280827155522e-05 -0.2632469646649803 1.0 20244 +72096 Eef1akmt2 EEF1A lysine methyltransferase 2 Novel N 7.096283219601288e-05 -0.26324706799684283 1.0 20245 +69576 Smco1 single-pass membrane protein with coiled-coil domains 1 Novel U 7.074038329193324e-05 -0.2632493721152787 1.0 20246 +69317 Hmgb4 high-mobility group box 4 Novel U 7.073964145040388e-05 -0.2632493797992489 1.0 20247 +217593 Slc25a21 solute carrier family 25 (mitochondrial oxodicarboxylate carrier), member 21 Novel N 7.064202546069968e-05 -0.2632503909024613 1.0 20248 +69329 Cfap206 cilia and flagella associated protein 206 Novel U 7.059874374022078e-05 -0.26325083921309916 1.0 20249 +14411 Slc6a12 solute carrier family 6 (neurotransmitter transporter, betaine/GABA), member 12 Novel U 7.051886313573508e-05 -0.2632516666137745 1.0 20250 +227998 4933409G03Rik RIKEN cDNA 4933409G03 gene Novel U 7.034200841859087e-05 -0.26325349846912094 1.0 20251 +68021 Bphl biphenyl hydrolase like Novel N 7.032956466244897e-05 -0.26325362736113794 1.0 20252 +69136 Tusc1 tumor suppressor candidate 1 Novel U 7.031189613364415e-05 -0.2632538103711785 1.0 20253 +329910 Acot11 acyl-CoA thioesterase 11 Novel U 7.025786769841234e-05 -0.26325436999593455 1.0 20254 +224674 Slc37a1 solute carrier family 37 (glycerol-3-phosphate transporter), member 1 Novel N 7.021691584974329e-05 -0.2632547941738368 1.0 20255 +353190 Edc3 enhancer of mRNA decapping 3 Novel U 7.01177771773303e-05 -0.2632558210489467 1.0 20256 +18092 Nkx2-6 NK2 homeobox 6 Novel U 7.008470227686812e-05 -0.2632561636376784 1.0 20257 +100039945 Cdk2ap1rt cyclin dependent kinase 2 associated protein 1 retrotransposed Novel U 7.000426458564487e-05 -0.26325699680863984 1.0 20258 +69479 Cfap96 cilia and flagella associated protein 96 Novel U 6.996858384060106e-05 -0.26325736638862407 1.0 20259 +211135 Zfp781a zinc finger protein 781A Novel U 6.985610345537688e-05 -0.2632585314567566 1.0 20260 +73722 Lce1a2 late cornified envelope 1A2 Novel U 6.958068916521175e-05 -0.2632613841889204 1.0 20261 +100041412 Krtap2-22 keratin associated protein 2-22 Novel U 6.931834675076282e-05 -0.2632641015230252 1.0 20262 +11945 Atp4b ATPase, H+/K+ exchanging, beta polypeptide Novel U 6.927969715830634e-05 -0.26326450185423333 1.0 20263 +56362 Sult1b1 sulfotransferase family 1B, member 1 Novel N 6.926216061106139e-05 -0.2632646834972132 1.0 20264 +320865 Cdh18 cadherin 18 Novel U 6.913492068074013e-05 -0.2632660014442287 1.0 20265 +233552 Gdpd5 glycerophosphodiester phosphodiesterase domain containing 5 Novel U 6.90558699341987e-05 -0.2632668202492627 1.0 20266 +54128 Pmm2 phosphomannomutase 2 Novel U 6.903436526387801e-05 -0.263267042993931 1.0 20267 +67217 L3hypdh L-3-hydroxyproline dehydratase (trans-) Novel U 6.895914133399846e-05 -0.2632678221609238 1.0 20268 +78890 Trmt44 tRNA methyltransferase 44 Novel U 6.88882955641211e-05 -0.2632685559790793 1.0 20269 +70884 Ccdc81 coiled-coil domain containing 81 Novel U 6.878839159037e-05 -0.2632695907811552 1.0 20270 +21422 Tfcp2 transcription factor CP2 Novel N 6.868367432884781e-05 -0.2632706754391077 1.0 20271 +93961 B3galt5 UDP-Gal:betaGlcNAc beta 1,3-galactosyltransferase, polypeptide 5 Novel N 6.868326696289699e-05 -0.2632706796585908 1.0 20272 +100303732 Zfp967 zinc finger protein 967 Novel U 6.854677704619782e-05 -0.2632720934166611 1.0 20273 +52665 Echdc1 enoyl Coenzyme A hydratase domain containing 1 Novel U 6.847312664945178e-05 -0.2632728562850495 1.0 20274 +69962 Mettl18 methyltransferase like 18 Novel N 6.843882583275445e-05 -0.26327321157178124 1.0 20275 +116810 Foxn4 forkhead box N4 Novel U 6.842123053175509e-05 -0.2632733938233306 1.0 20276 +71846 Syce2 synaptonemal complex central element protein 2 Novel U 6.841707207072496e-05 -0.2632734368965332 1.0 20277 +102639117 Scgb2a2 secretoglobin, family 2A, member 2 Novel U 6.807631719537827e-05 -0.26327696642433035 1.0 20278 +100043836 Scgb2b7 secretoglobin, family 2B, member 7 Novel U 6.79351284712414e-05 -0.26327842885249364 1.0 20279 +76487 Ppp1r3g protein phosphatase 1, regulatory subunit 3G Novel U 6.790375776919654e-05 -0.2632787537891942 1.0 20280 +77215 Krtap5-3 keratin associated protein 5-3 Novel U 6.776845255887326e-05 -0.2632801552761148 1.0 20281 +18232 Nxph2 neurexophilin 2 Novel U 6.750342358871804e-05 -0.26328290043747526 1.0 20282 +73495 Samt3 spermatogenesis associated multipass transmembrane protein 3 Novel U 6.745118611192762e-05 -0.26328344151154265 1.0 20283 +382206 Ssxb13 SSX member B13 Novel U 6.73081015168611e-05 -0.2632849235770747 1.0 20284 +103142 Rdh9 retinol dehydrogenase 9 Novel U 6.729472446449048e-05 -0.2632850621361434 1.0 20285 +58184 Cnot9 CCR4-NOT transcription complex, subunit 9 Novel U 6.706938619268501e-05 -0.2632873961825552 1.0 20286 +78016 Ccdc150 coiled-coil domain containing 150 Novel U 6.703849772153886e-05 -0.2632877161243239 1.0 20287 +403200 Lypd9 LY6/PLAUR domain containing 9 Novel U 6.692501702761346e-05 -0.2632888915536211 1.0 20288 +214254 Nudt15 nudix hydrolase 15 Novel U 6.68905227130715e-05 -0.2632892488445972 1.0 20289 +100303744 Sprr2a2 small proline-rich protein 2A2 Novel U 6.682648052429498e-05 -0.26328991219148323 1.0 20290 +13089 Cyp2b13 cytochrome P450, family 2, subfamily b, polypeptide 13 Novel U 6.675460460915402e-05 -0.2632906566798495 1.0 20291 +69049 Nat8f5 N-acetyltransferase 8 (GCN5-related) family member 5 Novel U 6.646399372993581e-05 -0.26329366681778316 1.0 20292 +639025 Pate12 prostate and testis expressed 12 Novel U 6.641404161135174e-05 -0.26329418422018536 1.0 20293 +217356 Tmc8 transmembrane channel-like gene family 8 Novel U 6.640203086199705e-05 -0.2632943086271323 1.0 20294 +242377 Pm20d2 peptidase M20 domain containing 2 Novel N 6.628897278934619e-05 -0.26329547967893224 1.0 20295 +56363 Tmeff2 transmembrane protein with EGF-like and two follistatin-like domains 2 Novel U 6.616331863928496e-05 -0.26329678120048794 1.0 20296 +385317 H2al3 H2A histone family member L3 Novel U 6.612997892543297e-05 -0.26329712653214804 1.0 20297 +19183 Psmc3ip proteasome (prosome, macropain) 26S subunit, ATPase 3, interacting protein Novel U 6.612110888232925e-05 -0.26329721840776293 1.0 20298 +83453 Chrdl1 chordin-like 1 Novel U 6.602710748429864e-05 -0.26329819207115357 1.0 20299 +629756 Wfdc10 WAP four-disulfide core domain 10 Novel U 6.601958084598979e-05 -0.26329827003182577 1.0 20300 +667742 Piezo2 piezo-type mechanosensitive ion channel component 2 Novel U 6.594056450331982e-05 -0.2632990884805056 1.0 20301 +21689 Tekt1 tektin 1 Novel U 6.59309792786046e-05 -0.2632991877639481 1.0 20302 +654453 Defb33 defensin beta 33 Novel U 6.587876803567914e-05 -0.263299728566286 1.0 20303 +69549 2310009B15Rik RIKEN cDNA 2310009B15 gene Novel U 6.586747433257055e-05 -0.26329984554609154 1.0 20304 +67020 Tmem88 transmembrane protein 88 Novel U 6.575425494770617e-05 -0.26330101826875807 1.0 20305 +330440 Sult6b2 sulfotransferase family 6B, member 2 Novel U 6.547232126123323e-05 -0.2633039385286145 1.0 20306 +75400 Defb29 defensin beta 29 Novel U 6.546106643930557e-05 -0.26330405510569005 1.0 20307 +58246 Slc35b4 solute carrier family 35, member B4 Novel N 6.542461587422723e-05 -0.26330443265944486 1.0 20308 +19377 Rai1 retinoic acid induced 1 Novel U 6.540072725323947e-05 -0.26330468009699576 1.0 20309 +12352 Car5a carbonic anhydrase 5a, mitochondrial Novel N 6.537744670841949e-05 -0.2633049212361137 1.0 20310 +22751 Zfp90 zinc finger protein 90 Novel N 6.537313614371917e-05 -0.2633049658848012 1.0 20311 +629754 Wfdc9 WAP four-disulfide core domain 9 Novel U 6.531946440085942e-05 -0.2633055218149493 1.0 20312 +100040248 Krtap4-25 keratin associated protein 4-25 Novel U 6.513495150139615e-05 -0.2633074329934964 1.0 20313 +213006 Mfsd4a major facilitator superfamily domain containing 4A Novel U 6.498715415427837e-05 -0.2633089638735593 1.0 20314 +101835 AW146154 expressed sequence AW146154 Novel U 6.479011291776797e-05 -0.2633110048202097 1.0 20315 +328258 Slc25a48 solute carrier family 25, member 48 Novel U 6.470937242506866e-05 -0.2633118411275789 1.0 20316 +76257 Slc38a3 solute carrier family 38, member 3 Novel U 6.46693220242756e-05 -0.2633122559683137 1.0 20317 +111368 Prn prion protein readthrough transcript Novel U 6.465104887686523e-05 -0.26331244524097386 1.0 20318 +216292 Mettl25 methyltransferase like 25 Novel U 6.463191984268729e-05 -0.26331264337888105 1.0 20319 +93837 Dach2 dachshund family transcription factor 2 Novel U 6.451381355544104e-05 -0.26331386671992185 1.0 20320 +215895 Sult3a2 sulfotransferase family 3A, member 2 Novel U 6.448187972506884e-05 -0.26331419748948703 1.0 20321 +277154 Nynrin NYN domain and retroviral integrase containing Novel U 6.44648276480126e-05 -0.26331437411434067 1.0 20322 +75422 Mettl5 methyltransferase 5, N6-adenosine Novel U 6.43170264261515e-05 -0.263315905034538 1.0 20323 +18741 Pitx2 paired-like homeodomain transcription factor 2 Novel U 6.426657220893632e-05 -0.2633164276376613 1.0 20324 +100042417 Gm20916 predicted gene, 20916 Novel U 6.42313962137845e-05 -0.26331679198946273 1.0 20325 +72219 Spata31d1a spermatogenesis associated 31 subfamily D, member 1A Novel U 6.413968866912551e-05 -0.26331774189319557 1.0 20326 +320558 Sycp2 synaptonemal complex protein 2 Novel N 6.4117049306836e-05 -0.263317976390966 1.0 20327 +78412 Cyren cell cycle regulator of NHEJ Novel N 6.411487705514894e-05 -0.26331799889107754 1.0 20328 +625716 Slco1a8 solute carrier organic anion transporter family, member 1a8 Novel U 6.410127735908369e-05 -0.2633181397562823 1.0 20329 +216873 Spag7 sperm associated antigen 7 Novel U 6.399285986197265e-05 -0.26331926274115336 1.0 20330 +229055 Zbtb10 zinc finger and BTB domain containing 10 Novel U 6.39924059956543e-05 -0.2633192674422858 1.0 20331 +67269 Agtpbp1 ATP/GTP binding protein 1 Novel U 6.393715402648484e-05 -0.2633198397403661 1.0 20332 +75986 Agmat agmatinase Novel N 6.390859119632288e-05 -0.263320135593222 1.0 20333 +64452 Slc5a4a solute carrier family 5, member 4a Novel U 6.387592310767253e-05 -0.2633204739682103 1.0 20334 +636741 Zfp964 zinc finger protein 964 Novel U 6.380640529450242e-05 -0.26332119403143384 1.0 20335 +100233175 Gon7 GON7 subunit of KEOPS complex Novel U 6.374446756580211e-05 -0.2633218355803916 1.0 20336 +50764 Fbxo15 F-box protein 15 Novel U 6.365115547264115e-05 -0.2633228021039851 1.0 20337 +22709 Zfp51 zinc finger protein 51 Novel U 6.363711152592314e-05 -0.26332294757072355 1.0 20338 +242259 Slc44a5 solute carrier family 44, member 5 Novel U 6.363253462710762e-05 -0.26332299497809103 1.0 20339 +232156 Slc4a5 solute carrier family 4, sodium bicarbonate cotransporter, member 5 Novel N 6.360054034711041e-05 -0.26332332637379147 1.0 20340 +545548 Lce3a late cornified envelope 3A Novel U 6.330758256758713e-05 -0.2633263608208413 1.0 20341 +244954 Prss35 serine protease 35 Novel U 6.330001647544439e-05 -0.263326439190175 1.0 20342 +71874 Mab21l4 mab-21-like 4 Novel U 6.322823828438413e-05 -0.26332718266631844 1.0 20343 +332934 Zmynd12 zinc finger, MYND domain containing 12 Novel U 6.317303500637437e-05 -0.26332775446005735 1.0 20344 +20941 Svs4 seminal vesicle secretory protein 4 Novel U 6.309344935929546e-05 -0.26332857880557353 1.0 20345 +77853 Msl2 MSL complex subunit 2 Novel U 6.29528580309865e-05 -0.26333003504593044 1.0 20346 +239759 Liph lipase, member H Novel U 6.281101371320947e-05 -0.26333150426471114 1.0 20347 +26448 Mok MOK protein kinase Novel N 6.278629395067369e-05 -0.26333176031119887 1.0 20348 +11593 Aga aspartylglucosaminidase Novel U 6.270215897910962e-05 -0.26333263177846855 1.0 20349 +233424 Tmc3 transmembrane channel-like gene family 3 Novel U 6.264857754343392e-05 -0.2633331867732179 1.0 20350 +68499 Mrpl53 mitochondrial ribosomal protein L53 Novel U 6.25850577392768e-05 -0.26333384470926124 1.0 20351 +15373 Hmx3 H6 homeobox 3 Novel U 6.24903977382281e-05 -0.2633348251944403 1.0 20352 +69664 Krtap1-5 keratin associated protein 1-5 Novel U 6.24429265098031e-05 -0.26333531689986384 1.0 20353 +75509 1700020N15Rik RIKEN cDNA 1700020N15 gene Novel U 6.232948354738886e-05 -0.26333649193833925 1.0 20354 +20522 Slc23a1 solute carrier family 23 (nucleobase transporters), member 1 Novel N 6.213338475733568e-05 -0.2633385231231602 1.0 20355 +69457 Tmem45a2 transmembrane protein 45A2 Novel U 6.202568029650475e-05 -0.26333963872242494 1.0 20356 +212442 Lactb2 lactamase, beta 2 Novel U 6.199513672828696e-05 -0.26333995509170044 1.0 20357 +76872 Ccdc116 coiled-coil domain containing 116 Novel U 6.196463920278622e-05 -0.26334027098406704 1.0 20358 +50916 Irx4 Iroquois homeobox 4 Novel U 6.181323967945873e-05 -0.2633418391753527 1.0 20359 +71453 Krtap2-4 keratin associated protein 2-4 Novel U 6.168723474794855e-05 -0.26334314433029105 1.0 20360 +20504 Slc17a1 solute carrier family 17 (sodium phosphate), member 1 Novel N 6.166075228762995e-05 -0.2633434186347445 1.0 20361 +18094 Nkx2-9 NK2 homeobox 9 Novel N 6.165925317596796e-05 -0.2633434341624938 1.0 20362 +66712 Spesp1 sperm equatorial segment protein 1 Novel U 6.134275600266094e-05 -0.2633467124298106 1.0 20363 +58207 Slc43a3 solute carrier family 43, member 3 Novel N 6.123778458617261e-05 -0.2633477997202919 1.0 20364 +75558 Spata45 spermatogenesis associated 45 Novel U 6.123283482967235e-05 -0.263347850989707 1.0 20365 +69514 Lce3e late cornified envelope 3E Novel U 6.11518042111545e-05 -0.2633486903021898 1.0 20366 +76426 Fam209 family with sequence similarity 209 Novel U 6.11461663382304e-05 -0.26334874869909225 1.0 20367 +241850 Abhd16b abhydrolase domain containing 16B Novel U 6.1014153063641245e-05 -0.26335011608825076 1.0 20368 +57441 Gmnn geminin Novel U 6.093098612697712e-05 -0.2633509775286468 1.0 20369 +77424 Spinkl serine protease inhibitor, Kazal type-like Novel U 6.0679989381168924e-05 -0.2633535773446888 1.0 20370 +329008 Bhmt1b betaine--homocysteine S-methyltransferase 1B Novel U 6.054756329069834e-05 -0.26335494900978057 1.0 20371 +246792 Obox2 oocyte specific homeobox 2 Novel U 6.0526921823183815e-05 -0.2633551628134225 1.0 20372 +75439 Cypt12 cysteine-rich perinuclear theca 12 Novel U 6.048326114855005e-05 -0.26335561504925514 1.0 20373 +20473 Six3 sine oculis-related homeobox 3 Novel U 6.044160674549966e-05 -0.26335604650419264 1.0 20374 +68044 Chac2 ChaC, cation transport regulator 2 Novel N 6.0390148621253416e-05 -0.263356579505752 1.0 20375 +233189 Ctu1 cytosolic thiouridylase subunit 1 Novel U 6.0360103993531896e-05 -0.26335689070701823 1.0 20376 +78774 Cfap61 cilia and flagella associated protein 61 Novel N 6.0345642666880697e-05 -0.2633570404969643 1.0 20377 +434264 Sult2a5 sulfotransferase family 2A, dehydroepiandrosterone (DHEA)-preferring, member 5 Novel U 6.033022134641766e-05 -0.2633572002304947 1.0 20378 +628236 Lipo4 lipase, member O4 Novel U 6.026111233675773e-05 -0.26335791605934494 1.0 20379 +58214 Cst5 cystatin D Novel U 6.0002276273949694e-05 -0.2633605970747747 1.0 20380 +216225 Slc5a8 solute carrier family 5 (iodide transporter), member 8 Novel N 5.999521958399266e-05 -0.2633606701677373 1.0 20381 +229725 Clcc1 chloride channel CLIC-like 1 Novel N 5.986312520112465e-05 -0.2633620383970127 1.0 20382 +13013 Cst9 cystatin 9 Novel U 5.985198189385763e-05 -0.26336215381902306 1.0 20383 +326620 H4c2 H4 clustered histone 2 Novel U 5.979316842943031e-05 -0.2633627630069542 1.0 20384 +668166 Zxdb zinc finger, X-linked, duplicated B Novel U 5.963194646437136e-05 -0.26336443293876843 1.0 20385 +13134 Dach1 dachshund family transcription factor 1 Novel N 5.9341726347027006e-05 -0.26336743902920334 1.0 20386 +76964 2610028H24Rik RIKEN cDNA 2610028H24 gene Novel U 5.9280355063477184e-05 -0.2633680747109409 1.0 20387 +320208 Tmem91 transmembrane protein 91 Novel U 5.918096285379559e-05 -0.26336910421218146 1.0 20388 +14664 Slc6a9 solute carrier family 6 (neurotransmitter transporter, glycine), member 9 Novel U 5.914534787353997e-05 -0.2633694731109762 1.0 20389 +71564 Izumo4 IZUMO family member 4 Novel U 5.90751997535941e-05 -0.26337019970289655 1.0 20390 +100040972 Tceal7 transcription elongation factor A (SII)-like 7 Novel U 5.890420235836482e-05 -0.2633719708882951 1.0 20391 +16875 Lhx8 LIM homeobox protein 8 Novel U 5.888328868083747e-05 -0.26337218751147945 1.0 20392 +54713 Fezf2 Fez family zinc finger 2 Novel U 5.881624938448234e-05 -0.2633728819023073 1.0 20393 +22264 Prap1 proline-rich acidic protein 1 Novel U 5.877190939579468e-05 -0.26337334117445255 1.0 20394 +52575 Trmt10c tRNA methyltransferase 10C, mitochondrial RNase P subunit Novel N 5.868648139030988e-05 -0.26337422603492505 1.0 20395 +215113 Slc43a2 solute carrier family 43, member 2 Novel U 5.867195668494182e-05 -0.26337437648134576 1.0 20396 +78124 Spata31 spermatogenesis associated 31 Novel U 5.865691930710401e-05 -0.2633745322380111 1.0 20397 +100216474 Ttll2 tubulin tyrosine ligase-like family, member 2 Novel U 5.855156901443653e-05 -0.26337562345287935 1.0 20398 +100155 Shoc1 shortage in chiasmata 1 Novel N 5.8531198756288926e-05 -0.2633758344473436 1.0 20399 +231724 Rad9b RAD9 checkpoint clamp component B Novel U 5.842671733632559e-05 -0.26337691666245694 1.0 20400 +72077 Gcnt3 glucosaminyl (N-acetyl) transferase 3, mucin type Novel N 5.8321941990774215e-05 -0.26337800192204186 1.0 20401 +108168510 Gm20905 predicted gene, 20905 Novel U 5.816307830009304e-05 -0.26337964742692754 1.0 20402 +20939 Sva seminal vesicle antigen Novel U 5.8034688087239504e-05 -0.2633809772885317 1.0 20403 +70426 Tekt5 tektin 5 Novel U 5.793241742632714e-05 -0.26338203660467546 1.0 20404 +101056194 Gm28998 predicted gene 28998 Novel U 5.7718494916345006e-05 -0.26338425240700153 1.0 20405 +20599 Smr3a submaxillary gland androgen regulated protein 3A Novel U 5.7657629187020885e-05 -0.263384882852225 1.0 20406 +16815 Lbx2 ladybird homeobox 2 Novel U 5.7503384653672705e-05 -0.2633864805120309 1.0 20407 +58229 Efcc1 EF hand and coiled-coil domain containing 1 Novel U 5.7502454832854417e-05 -0.2633864901430844 1.0 20408 +433102 Sfta2 surfactant associated 2 Novel U 5.747049839931117e-05 -0.2633868211467725 1.0 20409 +72947 Phykpl 5-phosphohydroxy-L-lysine phospholyase Novel N 5.740677605975786e-05 -0.26338748118067085 1.0 20410 +244721 Zfp846 zinc finger protein 846 Novel U 5.733740197991117e-05 -0.26338819975510935 1.0 20411 +71375 Foxn3 forkhead box N3 Novel U 5.7075357034557536e-05 -0.26339091400803905 1.0 20412 +665992 Krtap4-8 keratin associated protein 4-8 Novel U 5.6972471452509515e-05 -0.26339197969351574 1.0 20413 +234788 Slc38a8 solute carrier family 38, member 8 Novel N 5.672528270604074e-05 -0.26339454006642576 1.0 20414 +67778 Zfp639 zinc finger protein 639 Novel U 5.666371863531009e-05 -0.26339517774504656 1.0 20415 +12570 Cdk5r2 cyclin dependent kinase 5, regulatory subunit 2 Novel U 5.6602686302952515e-05 -0.2633958099159388 1.0 20416 +229333 Aadacl2fm1 AADACL2 family member 1 Novel U 5.642169467404691e-05 -0.2633976846212812 1.0 20417 +21884 Fabp9 fatty acid binding protein 9, testis Novel U 5.6392200581840564e-05 -0.2633979901201187 1.0 20418 +94224 Srd5a2 steroid 5 alpha-reductase 2 Novel N 5.612824560215006e-05 -0.26340072415712135 1.0 20419 +234549 Heatr3 HEAT repeat containing 3 Novel U 5.6023716587065994e-05 -0.26340180686522335 1.0 20420 +74847 Meikin meiotic kinetochore factor Novel U 5.589763614746333e-05 -0.2634031128022721 1.0 20421 +67307 Pbld2 phenazine biosynthesis-like protein domain containing 2 Novel U 5.578748268158552e-05 -0.26340425376825055 1.0 20422 +66533 Kplce KPRP N-terminal and LCE C-terminal like protein Novel U 5.5614828618728984e-05 -0.26340604211335794 1.0 20423 +78052 Tmem190 transmembrane protein 190 Novel U 5.558443184424842e-05 -0.26340635696214876 1.0 20424 +71872 Aox4 aldehyde oxidase 4 Novel U 5.54392551489405e-05 -0.2634078606975863 1.0 20425 +117172 Krtap13-20 keratin associated protein 13-20 Novel U 5.536083823588229e-05 -0.263408672937394 1.0 20426 +67725 Nudt13 nudix hydrolase 13 Novel N 5.528294668152034e-05 -0.2634094797355535 1.0 20427 +223843 Dbx2 developing brain homeobox 2 Novel U 5.5005389027870416e-05 -0.2634123546686058 1.0 20428 +545798 Tmem233 transmembrane protein 233 Novel U 5.5001159126934886e-05 -0.2634123984817806 1.0 20429 +70088 Meaf6 MYST/Esa1-associated factor 6 Novel N 5.488262294962634e-05 -0.26341362627560855 1.0 20430 +224111 Ubxn7 UBX domain protein 7 Novel U 5.484223864549501e-05 -0.26341404457490314 1.0 20431 +73473 Iws1 IWS1, SUPT6 interacting protein Novel U 5.467179864614099e-05 -0.2634158099868135 1.0 20432 +246257 Ovca2 candidate tumor suppressor in ovarian cancer 2 Novel U 5.463784896918009e-05 -0.2634161616364515 1.0 20433 +26378 Decr2 2-4-dienoyl-Coenzyme A reductase 2, peroxisomal Novel N 5.462386001256977e-05 -0.2634163065336042 1.0 20434 +268860 Abat 4-aminobutyrate aminotransferase Novel N 5.456410423170962e-05 -0.26341692548201795 1.0 20435 +60322 Chst7 carbohydrate sulfotransferase 7 Novel N 5.454835803594701e-05 -0.26341708858059604 1.0 20436 +210155 Lypd11 Ly6/PLAUR domain containing 11 Novel U 5.451371359304423e-05 -0.26341744742659673 1.0 20437 +70605 Zdhhc24 zinc finger, DHHC domain containing 24 Novel U 5.4429144585145584e-05 -0.26341832338960053 1.0 20438 +75860 Tex26 testis expressed 26 Novel U 5.435759068458375e-05 -0.2634190645425503 1.0 20439 +105887 Ugt3a1 UDP glycosyltransferases 3 family, polypeptide A1 Novel U 5.4344918835072515e-05 -0.263419195797151 1.0 20440 +20754 Sprr1b small proline-rich protein 1B Novel U 5.4212218897088676e-05 -0.2634205702987464 1.0 20441 +74533 Gzf1 GDNF-inducible zinc finger protein 1 Novel N 5.419138274047111e-05 -0.2634207861189717 1.0 20442 +57279 Slc25a20 solute carrier family 25 (mitochondrial carnitine/acylcarnitine translocase), member 20 Novel U 5.418535911530488e-05 -0.2634208485114831 1.0 20443 +434674 Slc22a28 solute carrier family 22, member 28 Novel U 5.4052934284551176e-05 -0.26342222016352684 1.0 20444 +117158 Scgb3a2 secretoglobin, family 3A, member 2 Novel U 5.3924442385084044e-05 -0.26342355107839754 1.0 20445 +219170 Fam216b family with sequence similarity 216, member B Novel U 5.369713689124631e-05 -0.26342590550123046 1.0 20446 +22640 Zfp1 zinc finger protein 1 Novel U 5.369412189281077e-05 -0.26342593673048514 1.0 20447 +101056210 Gm28576 predicted gene 28576 Novel U 5.3521835659254344e-05 -0.26342772126562874 1.0 20448 +18408 Slc25a15 solute carrier family 25 (mitochondrial carrier ornithine transporter), member 15 Novel N 5.3495577304230715e-05 -0.2634279932488069 1.0 20449 +100009614 Krtap12-22 keratin associated protein 12-22 Novel U 5.339953564343606e-05 -0.2634289880451722 1.0 20450 +381373 Sp9 trans-acting transcription factor 9 Novel U 5.320161978527106e-05 -0.2634310380511249 1.0 20451 +320662 Dnai7 dynein axonemal intermediate chain 7 Novel U 5.319314892418432e-05 -0.2634311257920256 1.0 20452 +73287 Cabcoco1 ciliary associated calcium binding coiled-coil 1 Novel U 5.317924137756013e-05 -0.26343126984593634 1.0 20453 +102632 Acad11 acyl-Coenzyme A dehydrogenase family, member 11 Novel N 5.3147133412059115e-05 -0.2634316024191875 1.0 20454 +67053 Rpp14 ribonuclease P 14 subunit Novel U 5.3059149729100525e-05 -0.26343251375128324 1.0 20455 +330820 4933402J07Rik RIKEN cDNA 4933402J07 gene Novel U 5.305387165887643e-05 -0.26343256842136115 1.0 20456 +239789 Gmnc geminin coiled-coil domain containing Novel U 5.301280056539319e-05 -0.26343299383439733 1.0 20457 +207854 Fmr1nb Fmr1 neighbor Novel U 5.270450604590714e-05 -0.2634361871388955 1.0 20458 +170740 Zfp287 zinc finger protein 287 Novel U 5.2692217195305594e-05 -0.2634363144264061 1.0 20459 +320022 Terb1 telomere repeat binding bouquet formation protein 1 Novel N 5.252318339489354e-05 -0.26343806527295405 1.0 20460 +20341 Selenbp1 selenium binding protein 1 Novel U 5.2382324943268786e-05 -0.2634395242801655 1.0 20461 +66344 Lce3b late cornified envelope 3B Novel U 5.233867291686178e-05 -0.2634399764264201 1.0 20462 +70956 Tex19.2 testis expressed gene 19.2 Novel U 5.224898982462551e-05 -0.2634409053609412 1.0 20463 +74673 Spdye4a speedy/RINGO cell cycle regulator family, member E4A Novel U 5.2239508714084325e-05 -0.26344100356597255 1.0 20464 +101604 Zfp764l1 zinc finger protein 764 like 1 Novel U 5.2150681374354786e-05 -0.26344192363663743 1.0 20465 +108167378 Gm20814 predicted gene, 20814 Novel U 5.203525714303653e-05 -0.2634431191970311 1.0 20466 +332131 Krt78 keratin 78 Novel U 5.199123770393783e-05 -0.2634435751489342 1.0 20467 +14857 Gsta1 glutathione S-transferase, alpha 1 (Ya) Novel U 5.19702531459909e-05 -0.26344379250629557 1.0 20468 +14916 Guca2b guanylate cyclase activator 2b (retina) Novel U 5.185892213822731e-05 -0.26344494566921417 1.0 20469 +100042110 Gm20903 predicted gene, 20903 Novel U 5.1858175098687276e-05 -0.2634449534070252 1.0 20470 +66209 Inip INTS3 and NABP interacting protein Novel U 5.1778184989843605e-05 -0.263445781941943 1.0 20471 +442835 Defb22 defensin beta 22 Novel U 5.144827614882351e-05 -0.26344919912687315 1.0 20472 +75470 Iqcf5 IQ motif containing F5 Novel U 5.127585331691763e-05 -0.26345098507689796 1.0 20473 +69362 Cst12 cystatin 12 Novel U 5.115539858989395e-05 -0.2634522327430007 1.0 20474 +235973 Pate14 prostate and testis expressed 14 Novel U 5.107863318246419e-05 -0.2634530278765674 1.0 20475 +77803 Shisal2b shisa like 2B Novel U 5.094654778913277e-05 -0.2634543960127294 1.0 20476 +74088 Them7 thioesterase superfamily member 7 Novel U 5.0937547845966695e-05 -0.26345448923384485 1.0 20477 +14375 Xrcc6 X-ray repair complementing defective repair in Chinese hamster cells 6 Novel U 5.0913368175770116e-05 -0.2634547396860739 1.0 20478 +57430 Sult3a1 sulfotransferase family 3A, member 1 Novel U 5.073957664101204e-05 -0.2634565398130778 1.0 20479 +12069 Bex2 brain expressed X-linked 2 Novel U 5.062360637780934e-05 -0.2634577410292518 1.0 20480 +14412 Slc6a13 solute carrier family 6 (neurotransmitter transporter, GABA), member 13 Novel U 5.058580530934197e-05 -0.2634581325714763 1.0 20481 +106757 Catsperd cation channel sperm associated auxiliary subunit delta Novel U 5.0529403998788216e-05 -0.2634587167743969 1.0 20482 +75122 Zc2hc1b zinc finger, C2HC-type containing 1B Novel U 5.035811676118043e-05 -0.2634604909619733 1.0 20483 +100040732 Btbd35f14 BTB domain containing 35, family member 14 Novel U 5.013755067395604e-05 -0.26346277557825404 1.0 20484 +101055862 Krtap5-22 keratin associated protein 5-22 Novel U 5.0043016021883766e-05 -0.26346375476507256 1.0 20485 +320864 Krt26 keratin 26 Novel U 4.995849406512425e-05 -0.2634646302407222 1.0 20486 +108168582 Gm20911 predicted gene, 20911 Novel U 4.983742340297716e-05 -0.26346588428666073 1.0 20487 +330577 Saxo2 stabilizer of axonemal microtubules 2 Novel U 4.957276369295216e-05 -0.2634686256232369 1.0 20488 +58875 Hibadh 3-hydroxyisobutyrate dehydrogenase Novel N 4.940471221110792e-05 -0.26347036629496146 1.0 20489 +56872 Pate4 prostate and testis expressed 4 Novel U 4.932702850506974e-05 -0.2634711709402349 1.0 20490 +381229 Cfap58 cilia and flagella associated protein 58 Novel U 4.919489000989699e-05 -0.2634725396264241 1.0 20491 +243078 Tecrl trans-2,3-enoyl-CoA reductase-like Novel U 4.918066416014206e-05 -0.2634726869773082 1.0 20492 +625599 Gml glycosylphosphatidylinositol anchored molecule like Novel U 4.9169183300056546e-05 -0.26347280589567956 1.0 20493 +234366 Gatad2a GATA zinc finger domain containing 2A Novel N 4.912453741902363e-05 -0.2634732683362476 1.0 20494 +66174 Nudt14 nudix hydrolase 14 Novel N 4.912343827703779e-05 -0.2634732797211242 1.0 20495 +99663 Clca4a chloride channel accessory 4A Novel U 4.907626987017738e-05 -0.2634737682899319 1.0 20496 +83702 Akr1c6 aldo-keto reductase family 1, member C6 Novel U 4.905537515894706e-05 -0.2634739847166639 1.0 20497 +67645 Armc12 armadillo repeat containing 12 Novel N 4.8991710088199374e-05 -0.26347464415737387 1.0 20498 +170939 Krtap19-9b keratin associated protein 19-9B Novel U 4.8922501024213617e-05 -0.2634753610225835 1.0 20499 +637079 Iqcn IQ motif containing N Novel U 4.865745026312929e-05 -0.26347810640965375 1.0 20500 +27083 Xlr4b X-linked lymphocyte-regulated 4B Novel U 4.862566437288307e-05 -0.26347843564686 1.0 20501 +229905 Kyat3 kynurenine aminotransferase 3 Novel U 4.855722414741854e-05 -0.26347914454846555 1.0 20502 +66307 Isoc1 isochorismatase domain containing 1 Novel U 4.8505704152944114e-05 -0.26347967819087464 1.0 20503 +70266 Kyat1 kynurenine aminotransferase 1 Novel N 4.849297014540191e-05 -0.26347981008930615 1.0 20504 +631101 Lce1k late cornified envelope 1K Novel U 4.84366118593114e-05 -0.2634803938465808 1.0 20505 +218476 Gcnt4 glucosaminyl (N-acetyl) transferase 4, core 2 (beta-1,6-N-acetylglucosaminyltransferase) Novel N 4.833374897907238e-05 -0.2634814592969129 1.0 20506 +78833 Gins3 GINS complex subunit 3 Novel U 4.829702285407767e-05 -0.26348183970490824 1.0 20507 +56296 Dmrtb1 DMRT-like family B with proline-rich C-terminal, 1 Novel U 4.828277251239476e-05 -0.26348198730947897 1.0 20508 +16699 Krtap13 keratin associated protein 13 Novel U 4.81213301648071e-05 -0.26348365952400815 1.0 20509 +16922 Phyh phytanoyl-CoA hydroxylase Novel N 4.802220157481998e-05 -0.2634846862946846 1.0 20510 +67859 Cysrt1 cysteine rich tail 1 Novel U 4.722350733313111e-05 -0.26349295914338433 1.0 20511 +15223 Foxj1 forkhead box J1 Novel N 4.720640469366293e-05 -0.26349313629196175 1.0 20512 +76491 Abhd14b abhydrolase domain containing 14b Novel N 4.713312470446788e-05 -0.26349389532368084 1.0 20513 +21786 Tff3 trefoil factor 3, intestinal Novel U 4.69760208732338e-05 -0.26349552260000025 1.0 20514 +320355 Lipi lipase, member I Novel U 4.662314073385659e-05 -0.2634991777208836 1.0 20515 +627191 Syndig1l synapse differentiation inducing 1 like Novel U 4.65983096852889e-05 -0.2634994349200684 1.0 20516 +241452 Dhrs9 dehydrogenase/reductase 9 Novel N 4.6541747107759305e-05 -0.2635000207933871 1.0 20517 +74091 Npl N-acetylneuraminate pyruvate lyase Novel N 4.653768980309261e-05 -0.26350006281881544 1.0 20518 +100043042 Zscan4-ps3 zinc finger and SCAN domain containing 4, pseudogene 3 Novel U 4.619594650151179e-05 -0.263503602584699 1.0 20519 +20758 Sprr2d small proline-rich protein 2D Novel U 4.6138814624727996e-05 -0.2635041943548006 1.0 20520 +209232 Wfdc5 WAP four-disulfide core domain 5 Novel U 4.613186152235313e-05 -0.2635042663748064 1.0 20521 +100038538 Ramacl RNA guanine-7 methyltransferase activating subunit like Novel U 4.604815998805574e-05 -0.2635051333525471 1.0 20522 +78242 Spink12 serine peptidase inhibitor, Kazal type 12 Novel U 4.587244525239268e-05 -0.26350695340000285 1.0 20523 +108161 Fam50b family with sequence similarity 50, member B Novel U 4.56032825043652e-05 -0.26350974137889865 1.0 20524 +432677 Vrtn vertebrae development associated Novel U 4.54901248409725e-05 -0.2635109134622562 1.0 20525 +104923 Adi1 acireductone dioxygenase 1 Novel N 4.5444371416892116e-05 -0.2635113873747188 1.0 20526 +17152 Mak male germ cell-associated kinase Novel U 4.532140889282545e-05 -0.2635126610165009 1.0 20527 +68267 Slc25a22 solute carrier family 25 (mitochondrial carrier, glutamate), member 22 Novel N 4.490521086890153e-05 -0.26351697198195095 1.0 20528 +67718 Lce1h late cornified envelope 1H Novel U 4.487495179660225e-05 -0.2635172854044271 1.0 20529 +74580 Pyroxd2 pyridine nucleotide-disulphide oxidoreductase domain 2 Novel N 4.484200173839005e-05 -0.26351762670004686 1.0 20530 +19051 Ppp1r17 protein phosphatase 1, regulatory subunit 17 Novel U 4.4731954606845234e-05 -0.2635187665646178 1.0 20531 +23887 Ggt5 gamma-glutamyltransferase 5 Novel N 4.4707357021176576e-05 -0.26351902134560157 1.0 20532 +71313 Fsip1 fibrous sheath-interacting protein 1 Novel U 4.469010040165954e-05 -0.26351920008909924 1.0 20533 +12359 Cat catalase Novel U 4.465916582946907e-05 -0.26351952050838107 1.0 20534 +236149 Slc22a26 solute carrier family 22 (organic cation transporter), member 26 Novel U 4.43951326896174e-05 -0.26352225535496404 1.0 20535 +71207 Nudt4 nudix hydrolase 4 Novel U 4.4360884826072135e-05 -0.26352261009320876 1.0 20536 +108168530 Gm20843 predicted gene, 20843 Novel U 4.430110309295454e-05 -0.2635232293104352 1.0 20537 +234988 Mbd3l2 methyl-CpG binding domain protein 3-like 2 Novel U 4.4266913121480574e-05 -0.2635235834490358 1.0 20538 +109663 Hoxc11 homeobox C11 Novel N 4.423915230848241e-05 -0.26352387099462427 1.0 20539 +545824 Zar1l zygote arrest 1-like Novel U 4.422225012130342e-05 -0.2635240460669234 1.0 20540 +93878 Pcdhb7 protocadherin beta 7 Novel U 4.4184994583810616e-05 -0.26352443195855607 1.0 20541 +244608 Ccdc113 coiled-coil domain containing 113 Novel N 4.3983832522361707e-05 -0.2635265155885757 1.0 20542 +66758 Zfp474 zinc finger protein 474 Novel U 4.396640665356763e-05 -0.26352669608515183 1.0 20543 +75784 Cfap299 cilia and flagella associated protein 299 Novel U 4.371325014088321e-05 -0.2635293182719881 1.0 20544 +14841 Haspin histone H3 associated protein kinase Novel U 4.3707782862744994e-05 -0.2635293749018754 1.0 20545 +105387 Akr1c14 aldo-keto reductase family 1, member C14 Novel U 4.3198649576194546e-05 -0.26353464848772057 1.0 20546 +106564 Ppcs phosphopantothenoylcysteine synthetase Novel N 4.314143366118826e-05 -0.26353524112828736 1.0 20547 +100042514 Sprr2a3 small proline-rich protein 2A3 Novel U 4.309156462895525e-05 -0.26353575767008386 1.0 20548 +212989 Best2 bestrophin 2 Novel U 4.284046368626524e-05 -0.26353835856539376 1.0 20549 +54200 Sult2b1 sulfotransferase family, cytosolic, 2B, member 1 Novel U 4.28272553842204e-05 -0.26353849537655216 1.0 20550 +53607 Snrpa small nuclear ribonucleoprotein polypeptide A Novel N 4.278323179414943e-05 -0.2635389513714509 1.0 20551 +107146 Glyat glycine-N-acyltransferase Novel N 4.2749172300520694e-05 -0.2635393041585663 1.0 20552 +100066 Cyp2j11 cytochrome P450, family 2, subfamily j, polypeptide 11 Novel U 4.2738725797288884e-05 -0.26353941236310335 1.0 20553 +328573 4930407I10Rik RIKEN cDNA 4930407I10 gene Novel U 4.271116208902116e-05 -0.2635396978670875 1.0 20554 +74318 Hopx HOP homeobox Novel N 4.257880324114406e-05 -0.2635410688356827 1.0 20555 +108168553 Gm20883 predicted gene, 20883 Novel U 4.256667608620214e-05 -0.26354119444835494 1.0 20556 +433047 Krtap13-24 keratin associated protein 13-24 Novel U 4.2556498453518265e-05 -0.2635412998679397 1.0 20557 +23934 Ly6h lymphocyte antigen 6 family member H Novel N 4.2506384369909764e-05 -0.2635418189479703 1.0 20558 +73329 1700040F15Rik RIKEN cDNA 1700040F15 gene Novel U 4.249133959941562e-05 -0.2635419747812085 1.0 20559 +50793 Orc3 origin recognition complex, subunit 3 Novel N 4.236428544324632e-05 -0.2635432908039814 1.0 20560 +100504474 Smlr1 small leucine-rich protein 1 Novel U 4.2363827040012715e-05 -0.26354329555210704 1.0 20561 +332427 Lyg2 lysozyme G-like 2 Novel N 4.235465410630445e-05 -0.2635433905650529 1.0 20562 +100462664 Krtap29-1 keratin associated protein 29-1 Novel U 4.227253662168577e-05 -0.2635442411352591 1.0 20563 +116746 Defb6 defensin beta 6 Novel U 4.225576938154022e-05 -0.2635444148097813 1.0 20564 +67062 Slc25a53 solute carrier family 25, member 53 Novel U 4.21672548317666e-05 -0.26354533164057814 1.0 20565 +23917 Impdh1 inosine monophosphate dehydrogenase 1 Novel N 4.2143052593720394e-05 -0.2635455823265642 1.0 20566 +22717 Zfp59 zinc finger protein 59 Novel U 4.210414840077799e-05 -0.26354598529491574 1.0 20567 +225579 Slc27a6 solute carrier family 27 (fatty acid transporter), member 6 Novel N 4.197570403476048e-05 -0.2635473157174366 1.0 20568 +243308 A430033K04Rik RIKEN cDNA A430033K04 gene Novel U 4.184925584648669e-05 -0.26354862546361396 1.0 20569 +71847 Btbd35f1 BTB domain containing 35, family member 1 Novel U 4.175937978876707e-05 -0.26354955639686534 1.0 20570 +76927 Tsacc TSSK6 activating co-chaperone Novel U 4.152873052773922e-05 -0.26355194545432886 1.0 20571 +72748 Hdhd3 haloacid dehalogenase-like hydrolase domain containing 3 Novel U 4.145853062481943e-05 -0.2635526725826156 1.0 20572 +100191037 Krtap10-4 keratin associated protein 10-4 Novel U 4.116788918368827e-05 -0.2635556830371085 1.0 20573 +73893 Tmem202 transmembrane protein 202 Novel U 4.115200678077195e-05 -0.26355584754651584 1.0 20574 +244653 Hydin HYDIN, axonemal central pair apparatus protein Novel N 4.0896243943172556e-05 -0.2635584967295799 1.0 20575 +67127 Lce1a1 late cornified envelope 1A1 Novel U 4.084036578430298e-05 -0.2635590755137126 1.0 20576 +381832 Prb1b proline-rich protein BstNI subfamily 1B Novel U 4.0741315010495867e-05 -0.26356010147837156 1.0 20577 +58242 Nudt11 nudix hydrolase 11 Novel U 4.069086870419579e-05 -0.26356062399955393 1.0 20578 +240023 Pnldc1 poly(A)-specific ribonuclease (PARN)-like domain containing 1 Novel N 4.057544517527463e-05 -0.2635618195526721 1.0 20579 +99681 Tchh trichohyalin Novel U 4.056828775382185e-05 -0.26356189368900823 1.0 20580 +219026 Eddm3b epididymal protein 3B Novel U 4.0434074523430015e-05 -0.2635632838652366 1.0 20581 +546161 Fbxw18 F-box and WD-40 domain protein 18 Novel U 4.027327138662811e-05 -0.2635649494588415 1.0 20582 +330228 Spdye4b speedy/RINGO cell cycle regulator family, member E4B Novel U 4.023412256751092e-05 -0.26356535496102296 1.0 20583 +21830 Spmap2 sperm microtubule associated protein 2 Novel N 4.021782366715777e-05 -0.26356552378449705 1.0 20584 +68222 Cimip2a ciliary microtubule inner protein 2A Novel U 4.020262032137242e-05 -0.26356568126025287 1.0 20585 +69520 Lce3f late cornified envelope 3F Novel U 4.0184772472380705e-05 -0.26356586612768607 1.0 20586 +23927 Krtap14 keratin associated protein 14 Novel U 4.014339692670146e-05 -0.26356629469422804 1.0 20587 +100502803 Krtap2-20 keratin associated protein 2-20 Novel U 3.997202466434056e-05 -0.26356806976248803 1.0 20588 +66705 Dnase1l2 deoxyribonuclease 1-like 2 Novel N 3.9886554036552676e-05 -0.26356895506444095 1.0 20589 +213332 Mfsd4b4 major facilitator superfamily domain containing 4B4 Novel U 3.972416744241453e-05 -0.26357063705944483 1.0 20590 +17218 Mcm5 minichromosome maintenance complex component 5 Novel U 3.9679472644811267e-05 -0.26357110000668915 1.0 20591 +327942 Pigl phosphatidylinositol glycan anchor biosynthesis, class L Novel U 3.9626275680432546e-05 -0.2635716510190974 1.0 20592 +16670 Krt32 keratin 32 Novel N 3.9378869155989884e-05 -0.2635742136477446 1.0 20593 +57277 Slurp1 secreted Ly6/Plaur domain containing 1 Novel U 3.934326149683101e-05 -0.2635745824707076 1.0 20594 +71840 Tekt4 tektin 4 Novel U 3.931614240439744e-05 -0.2635748633693755 1.0 20595 +433752 Frg2f1 FSHD region gene 2 family member 1 Novel U 3.895713255078182e-05 -0.26357858198163747 1.0 20596 +110175 Ggct gamma-glutamyl cyclotransferase Novel N 3.8914546477649266e-05 -0.26357902308678305 1.0 20597 +68468 Ly6g6c lymphocyte antigen 6 family member G6C Novel U 3.886606921095475e-05 -0.2635795252127178 1.0 20598 +208613 Tmem212 transmembrane protein 212 Novel U 3.8816743257565096e-05 -0.26358003612932157 1.0 20599 +240819 Teddm1a transmembrane epididymal protein 1A Novel U 3.8717984937782337e-05 -0.2635810590647514 1.0 20600 +238683 Spata31d1c spermatogenesis associated 31 subfamily D, member 1C Novel U 3.867325707976337e-05 -0.2635815223544344 1.0 20601 +100861623 Rhox3a2 reproductive homeobox 3A2 Novel U 3.8511058468906546e-05 -0.26358320240231364 1.0 20602 +108168527 Gm20888 predicted gene, 20888 Novel U 3.8159984327459465e-05 -0.2635868388167298 1.0 20603 +78240 Cst11 cystatin 11 Novel N 3.8056788385017076e-05 -0.2635879077169092 1.0 20604 +74868 Tmem65 transmembrane protein 65 Novel U 3.772528229033536e-05 -0.26359134144614027 1.0 20605 +77763 Krtap10-30 keratin associated protein 10-30 Novel U 3.7369048838439804e-05 -0.2635950313005245 1.0 20606 +76894 Mettl15 methyltransferase like 15 Novel N 3.7274716201447563e-05 -0.2635960083948774 1.0 20607 +75586 Krtap9-3 keratin associated protein 9-3 Novel U 3.725130677465549e-05 -0.26359625086895055 1.0 20608 +20448 St6galnac4 ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 4 Novel U 3.711024015886225e-05 -0.2635977120323197 1.0 20609 +434794 Xlr4a X-linked lymphocyte-regulated 4A Novel U 3.707112902474068e-05 -0.26359811714416115 1.0 20610 +574438 Xlr5a X-linked lymphocyte-regulated 5A Novel U 3.7052295246016095e-05 -0.2635983122238221 1.0 20611 +68554 Cebpzos CCAAT/enhancer binding protein zeta, opposite strand Novel U 3.703827471921676e-05 -0.2635984574479778 1.0 20612 +246277 Csad cysteine sulfinic acid decarboxylase Novel U 3.6967455458227984e-05 -0.26359919099155504 1.0 20613 +22685 Zfp239 zinc finger protein 239 Novel U 3.696538653212107e-05 -0.26359921242142365 1.0 20614 +68236 Gtsf1l gametocyte specific factor 1-like Novel U 3.69369844475077e-05 -0.2635995066092824 1.0 20615 +69363 Spaca4 sperm acrosome associated 4 Novel U 3.6931871902588766e-05 -0.2635995595648546 1.0 20616 +104681 Slc16a6 solute carrier family 16 (monocarboxylic acid transporters), member 6 Novel U 3.658019935960788e-05 -0.26360320217749417 1.0 20617 +67442 Retsat retinol saturase (all trans retinol 13,14 reductase) Novel U 3.652513152040289e-05 -0.2636037725683624 1.0 20618 +104362 Meig1 meiosis expressed gene 1 Novel U 3.640412775521974e-05 -0.2636050259213844 1.0 20619 +64661 Krtdap keratinocyte differentiation associated protein Novel U 3.63536005058819e-05 -0.2636055492809721 1.0 20620 +74175 Crct1 cysteine-rich C-terminal 1 Novel U 3.631360683933108e-05 -0.26360596353405547 1.0 20621 +69215 Sat2 spermidine/spermine N1-acetyl transferase 2 Novel N 3.6218405198550085e-05 -0.2636069496295211 1.0 20622 +233893 Zfp764 zinc finger protein 764 Novel U 3.61556661436636e-05 -0.26360759947858914 1.0 20623 +380730 Lrrc37 leucine rich repeat containing 37 Novel U 3.605168870385318e-05 -0.2636086764734926 1.0 20624 +170790 Mlc1 megalencephalic leukoencephalopathy with subcortical cysts 1 homolog (human) Novel U 3.591112283867247e-05 -0.26361013245010334 1.0 20625 +105005 Lratd1 LRAT domain containing 1 Novel N 3.5770111153250366e-05 -0.26361159304450543 1.0 20626 +76971 Sult2a8 sulfotransferase family 2A, dehydroepiandrosterone (DHEA)-preferring, member 8 Novel U 3.569280509261233e-05 -0.2636123937781402 1.0 20627 +68171 Pate6 prostate and testis expressed 6 Novel U 3.5633182632648346e-05 -0.26361301134562054 1.0 20628 +434766 Rhox2g reproductive homeobox 2G Novel U 3.541457281824897e-05 -0.26361527569889165 1.0 20629 +75732 Iqcd IQ motif containing D Novel U 3.532232578165267e-05 -0.2636162311906643 1.0 20630 +100041261 Krtap10-22 keratin associated protein 10-22 Novel U 3.5305131561629085e-05 -0.26361640928783003 1.0 20631 +66761 Tex56 testis expressed 56 Novel U 3.5198009344320684e-05 -0.26361751885623547 1.0 20632 +16483 Kap kidney androgen regulated protein Novel U 3.519158895266995e-05 -0.26361758535844115 1.0 20633 +20755 Sprr2a1 small proline-rich protein 2A1 Novel U 3.5105457421475064e-05 -0.2636184775060098 1.0 20634 +670895 Krtap10-28 keratin associated protein 10-28 Novel U 3.4914008709989386e-05 -0.2636204605254699 1.0 20635 +66432 Slc7a6os solute carrier family 7, member 6 opposite strand Novel N 3.489789740709285e-05 -0.26362062740581566 1.0 20636 +77673 Defb41 defensin beta 41 Novel U 3.488810240536612e-05 -0.2636207288621215 1.0 20637 +434178 Zfp141 zinc finger protein 141 Novel U 3.487449046472035e-05 -0.2636208698541552 1.0 20638 +75510 Izumo2 IZUMO family member 2 Novel U 3.4748881960838536e-05 -0.2636221709029093 1.0 20639 +67334 H2ap H2A.P histone Novel U 3.464961364994536e-05 -0.2636231991208103 1.0 20640 +210940 Spata31e2 spermatogenesis associated 31 subfamily E member 2 Novel U 3.459289962424601e-05 -0.2636237865628241 1.0 20641 +622554 Majin membrane anchored junction protein Novel U 3.445477963546861e-05 -0.26362521720512744 1.0 20642 +56096 Plac1 placental specific protein 1 Novel U 3.442776547144476e-05 -0.2636254970169503 1.0 20643 +20760 Sprr2f small proline-rich protein 2F Novel U 3.434166618884316e-05 -0.2636263888304891 1.0 20644 +270711 Calhm4 calcium homeostasis modulator family member 4 Novel U 3.4165983596417865e-05 -0.26362820854500624 1.0 20645 +107869 Cth cystathionine gamma lyase Novel U 3.413171607752444e-05 -0.26362856348684044 1.0 20646 +70840 Slc22a16 solute carrier family 22 (organic cation transporter), member 16 Novel U 3.40581424314288e-05 -0.2636293255602481 1.0 20647 +68591 Mocos molybdenum cofactor sulfurase Novel U 3.397115656731603e-05 -0.2636302265569691 1.0 20648 +108168520 Gm21518 predicted gene, 21518 Novel U 3.394938493691613e-05 -0.263630452066801 1.0 20649 +381738 Drc1 dynein regulatory complex subunit 1 Novel N 3.3763203096560364e-05 -0.2636323805321831 1.0 20650 +67752 Saxo4 stabilizer of axonemal microtubules 4 Novel U 3.31507776232613e-05 -0.2636387240151031 1.0 20651 +78382 Lce6a late cornified envelope 6A Novel U 3.297189082637296e-05 -0.26364057691866466 1.0 20652 +76942 Lypd5 Ly6/Plaur domain containing 5 Novel U 3.296469016991614e-05 -0.2636406515028275 1.0 20653 +236293 Slc22a29 solute carrier family 22. member 29 Novel U 3.274963646895861e-05 -0.2636428790219925 1.0 20654 +76974 Urah urate (5-hydroxyiso-) hydrolase Novel U 3.2708206378093914e-05 -0.2636433081535118 1.0 20655 +105653 Phyhip phytanoyl-CoA hydroxylase interacting protein Novel N 3.269774134364781e-05 -0.26364341654999457 1.0 20656 +546886 Cfap73 cilia and flagella associated protein 73 Novel U 3.265040596595856e-05 -0.2636439068482806 1.0 20657 +229780 Trmt13 tRNA methyltransferase 13 Novel U 3.263788842213129e-05 -0.26364403650458806 1.0 20658 +68527 Ucma upper zone of growth plate and cartilage matrix associated Novel U 3.2507825432827604e-05 -0.2636453836927557 1.0 20659 +223989 Marf1 meiosis regulator and mRNA stability 1 Novel U 3.247309654452436e-05 -0.2636457434134391 1.0 20660 +94041 Allc allantoicase Novel U 3.242615031258217e-05 -0.26364622968096624 1.0 20661 +71562 Afmid arylformamidase Novel U 3.2073417107501664e-05 -0.263649883279909 1.0 20662 +74708 Dnaaf6rt dynein axonemal assembly factor 6, retrotransposed Novel U 3.197794019600287e-05 -0.26365087222661965 1.0 20663 +194854 Gm9 predicted gene 9 Novel U 3.187286366755479e-05 -0.2636519606058471 1.0 20664 +69693 Pof1b premature ovarian failure 1B Novel U 3.1607969358363656e-05 -0.2636547043723938 1.0 20665 +68768 Krtap4-6 keratin associated protein 4-6 Novel U 3.105665009960594e-05 -0.2636604149191524 1.0 20666 +67317 Spata31g1 SPATA31 subfamily G member 1 Novel U 3.10470924700408e-05 -0.2636605139167652 1.0 20667 +228756 Cstl1 cystatin-like 1 Novel U 3.086621167127348e-05 -0.2636623874741327 1.0 20668 +20686 Spa17 sperm autoantigenic protein 17 Novel N 3.060928503766529e-05 -0.2636650487117576 1.0 20669 +109275 Actr5 ARP5 actin-related protein 5 Novel U 3.0546196557376964e-05 -0.2636657021801625 1.0 20670 +67187 Zmynd19 zinc finger, MYND domain containing 19 Novel U 3.0526842501616e-05 -0.2636659026488359 1.0 20671 +100862329 Btbd35f21 BTB domain containing 35, family member 21 Novel U 3.0353324261509454e-05 -0.2636676999450628 1.0 20672 +269513 Nkain3 Na+/K+ transporting ATPase interacting 3 Novel U 3.0040609757184777e-05 -0.26367093903161865 1.0 20673 +93673 Nat8f2 N-acetyltransferase 8 (GCN5-related) family member 2 Novel U 3.0037497356876255e-05 -0.26367097126975875 1.0 20674 +73532 Nudt16l2 nudix hydrolase 16 like 2 Novel U 3.000747347294159e-05 -0.26367128225616154 1.0 20675 +238663 Spata31d1d spermatogenesis associated 31 subfamily D, member 1D Novel U 2.9865545181762795e-05 -0.26367275234473597 1.0 20676 +664968 Tmem238 transmembrane protein 238 Novel U 2.979846237389179e-05 -0.26367344718625463 1.0 20677 +229562 Sprr4 small proline-rich protein 4 Novel U 2.9692111604858008e-05 -0.2636745487640242 1.0 20678 +230734 Yrdc yrdC domain containing (E.coli) Novel U 2.9659346514004737e-05 -0.2636748881437581 1.0 20679 +100041281 Krtap10-23 keratin associated protein 10-23 Novel U 2.939657752056276e-05 -0.26367760989635414 1.0 20680 +22117 Tst thiosulfate sulfurtransferase, mitochondrial Novel N 2.9361432777614078e-05 -0.2636779739244463 1.0 20681 +72180 Zfp661 zinc finger protein 661 Novel U 2.9276606897238626e-05 -0.26367885254812673 1.0 20682 +629761 Wfdc11 WAP four-disulfide core domain 11 Novel U 2.924897472116534e-05 -0.26367913876129817 1.0 20683 +100043617 Gm4553 predicted gene 4553 Novel U 2.9200570512142704e-05 -0.263679640130504 1.0 20684 +26560 Krtap15-1 keratin associated protein 15-1 Novel U 2.871947765413243e-05 -0.2636846232745122 1.0 20685 +22756 Zfp94 zinc finger protein 94 Novel U 2.7949066784053303e-05 -0.26369260316497856 1.0 20686 +171168 Acer1 alkaline ceramidase 1 Novel U 2.7831043889778945e-05 -0.26369382564223764 1.0 20687 +78373 Nudt17 nudix hydrolase 17 Novel U 2.7372185312351247e-05 -0.2636985784842985 1.0 20688 +100041488 Krtap2-21 keratin associated protein 2-21 Novel U 2.721602053079068e-05 -0.26370019603397227 1.0 20689 +70767 Prpf3 pre-mRNA processing factor 3 Novel N 2.7166977353823307e-05 -0.2637007040215871 1.0 20690 +243813 Leng9 leukocyte receptor cluster (LRC) member 9 Novel U 2.7027237894533422e-05 -0.2637021514383127 1.0 20691 +100312987 Pate1 prostate and testis expressed 1 Novel U 2.6813387829620648e-05 -0.26370436649025514 1.0 20692 +619548 Defb42 defensin beta 42 Novel N 2.6673046873884457e-05 -0.2637058201372612 1.0 20693 +102637705 Ly6l lymphocyte antigen 6 family member L Novel U 2.664725930503592e-05 -0.2637060872440516 1.0 20694 +333669 Gm5134 predicted gene 5134 Novel U 2.654279391012003e-05 -0.26370716929317806 1.0 20695 +15109 Hal histidine ammonia lyase Novel N 2.6542386186111638e-05 -0.2637071735163699 1.0 20696 +50887 Hmgn5 high-mobility group nucleosome binding domain 5 Novel U 2.6162478996284722e-05 -0.26371110858255337 1.0 20697 +672284 Nkx1-1 NK1 homeobox 1 Novel U 2.5925789975258118e-05 -0.2637135601996524 1.0 20698 +382217 Gm1140 predicted gene 1140 Novel U 2.5572786906024928e-05 -0.26371721659383923 1.0 20699 +69699 2310079G19Rik RIKEN cDNA 2310079G19 gene Novel U 2.551025671654051e-05 -0.2637178642794863 1.0 20700 +330921 Pate2 prostate and testis expressed 2 Novel U 2.5344991631499407e-05 -0.2637195760898044 1.0 20701 +239435 Aard alanine and arginine rich domain containing protein Novel U 2.533917349860374e-05 -0.26371963635383366 1.0 20702 +71968 Wdr73 WD repeat domain 73 Novel U 2.5202031806178775e-05 -0.2637210568629755 1.0 20703 +246085 Defb10 defensin beta 10 Novel U 2.5123963192197428e-05 -0.26372186549511273 1.0 20704 +15377 Foxa3 forkhead box A3 Novel N 2.491318103238111e-05 -0.26372404876979505 1.0 20705 +67433 Ccdc127 coiled-coil domain containing 127 Novel U 2.484084498256801e-05 -0.26372479802422105 1.0 20706 +72891 Xlr4c X-linked lymphocyte-regulated 4C Novel U 2.459864194981786e-05 -0.26372730675527234 1.0 20707 +435273 Krtap1-3 keratin associated protein 1-3 Novel U 2.4589313078103144e-05 -0.2637274033834188 1.0 20708 +94060 Lce3c late cornified envelope 3C Novel U 2.4578803456157455e-05 -0.2637275122417375 1.0 20709 +73671 Sult6b1 sulfotransferase family, cytosolic, 6B, member 1 Novel U 2.4467955921676595e-05 -0.2637286603968557 1.0 20710 +670482 Krtap4-20 keratin associated protein 4-20 Novel U 2.417821021087238e-05 -0.26373166157340333 1.0 20711 +670533 Krtap9-22 keratin associated protein 9-22 Novel U 2.412929081483195e-05 -0.2637321682788994 1.0 20712 +77705 Cstdc2 cystatin domain containing 2 Novel U 2.4036866296328643e-05 -0.2637331256090238 1.0 20713 +382113 Slc22a14 solute carrier family 22 (organic cation transporter), member 14 Novel U 2.398759868302822e-05 -0.26373363592134275 1.0 20714 +20540 Slc7a7 solute carrier family 7 (cationic amino acid transporter, y+ system), member 7 Novel U 2.3891081036678072e-05 -0.2637346356479508 1.0 20715 +73808 Tex36 testis expressed 36 Novel U 2.3865370958732745e-05 -0.263734901952093 1.0 20716 +171405 Slc22a27 solute carrier family 22, member 27 Novel U 2.3827061226502818e-05 -0.26373529876304 1.0 20717 +218739 Sntn sentan, cilia apical structure protein Novel U 2.3809316222872532e-05 -0.2637354825652043 1.0 20718 +23923 Aadat aminoadipate aminotransferase Novel N 2.3806264525342706e-05 -0.263735514174587 1.0 20719 +622127 Cyp3a57 cytochrome P450, family 3, subfamily a, polypeptide 57 Novel U 2.3703514297729082e-05 -0.2637365784580669 1.0 20720 +105244938 Krtap5-24 keratin associated protein 5-24 Novel U 2.368438285637238e-05 -0.26373677662090755 1.0 20721 +69784 1500009L16Rik RIKEN cDNA 1500009L16 gene Novel U 2.365170822250715e-05 -0.263737115063691 1.0 20722 +331416 Gm773 predicted gene 773 Novel U 2.287529865755306e-05 -0.2637451570884417 1.0 20723 +213043 Aox2 aldehyde oxidase 2 Novel U 2.2726531032935797e-05 -0.263746698018607 1.0 20724 +634504 Krtap10-25 keratin associated protein 10-25 Novel U 2.2435321245383526e-05 -0.2637497143600135 1.0 20725 +66112 Mtarc1 mitochondrial amidoxime reducing component 1 Novel N 2.2336027707743144e-05 -0.2637507428392123 1.0 20726 +56542 Cilk1 ciliogenesis associated kinase 1 Novel U 2.2097419578265766e-05 -0.2637532143343736 1.0 20727 +73338 Itpripl1 inositol 1,4,5-triphosphate receptor interacting protein-like 1 Novel U 2.2056061951250974e-05 -0.26375364271531465 1.0 20728 +319259 Bricd5 BRICHOS domain containing 5 Novel U 2.203503678356513e-05 -0.26375386049331034 1.0 20729 +16693 Krtap11-1 keratin associated protein 11-1 Novel U 2.1859976522612635e-05 -0.26375567376173853 1.0 20730 +20689 Sall3 spalt like transcription factor 3 Novel U 2.1713170106178353e-05 -0.26375719437777395 1.0 20731 +102640500 Krtap10-26 keratin associated protein 10-26 Novel U 2.164594734198447e-05 -0.26375789066895566 1.0 20732 +72691 Calhm2 calcium homeostasis modulator family member 2 Novel N 2.1434801516792046e-05 -0.26376007771047194 1.0 20733 +72434 Lypd3 Ly6/Plaur domain containing 3 Novel N 2.137177874438545e-05 -0.26376073049827675 1.0 20734 +225443 Gm94 predicted gene 94 Novel U 2.1295697655280756e-05 -0.26376151854369667 1.0 20735 +213234 Zbbx zinc finger, B-box domain containing Novel U 2.1289969047865144e-05 -0.263761577880424 1.0 20736 +70556 Slc25a33 solute carrier family 25, member 33 Novel N 2.114895802147201e-05 -0.26376303846799987 1.0 20737 +434756 Akap14 A kinase anchor protein 14 Novel U 2.1025450098158427e-05 -0.26376431775900944 1.0 20738 +233918 4933402N03Rik RIKEN cDNA 4933402N03 gene Novel U 2.0783102069607612e-05 -0.2637668279919224 1.0 20739 +27361 Msrb1 methionine sulfoxide reductase B1 Novel N 2.0453124492654452e-05 -0.26377024588881703 1.0 20740 +71363 Krtap7-1 keratin associated protein 7-1 Novel U 2.0300161705108222e-05 -0.2637718302723421 1.0 20741 +68484 Krtap6-5 keratin associated protein 6-5 Novel U 2.0282625669614137e-05 -0.26377201191002125 1.0 20742 +68644 Abhd14a abhydrolase domain containing 14A Novel U 2.0235413133076745e-05 -0.2637725009359227 1.0 20743 +219038 Tppp2 tubulin polymerization-promoting protein family member 2 Novel U 2.0157151233431537e-05 -0.2637733115701065 1.0 20744 +100503388 Krtap10-34 keratin associated protein 10-34 Novel U 2.0067091373648058e-05 -0.26377424440717356 1.0 20745 +226043 Zng1 Zn regulated GTPase metalloprotein activator 1 Novel U 2.0050176911770535e-05 -0.2637744196066137 1.0 20746 +12583 Cdo1 cysteine dioxygenase 1, cytosolic Novel N 1.983903687918516e-05 -0.26377660658813035 1.0 20747 +100039551 Tgif2lx2 TGFB-induced factor homeobox 2-like, X-linked 2 Novel U 1.9821838759886906e-05 -0.26377678472568467 1.0 20748 +71724 Aox3 aldehyde oxidase 3 Novel U 1.9734141037722518e-05 -0.2637776930958079 1.0 20749 +15202 Gml2 glycosylphosphatidylinositol anchored molecule like 2 Novel U 1.9618557663746257e-05 -0.26377889030459595 1.0 20750 +24115 Best1 bestrophin 1 Novel U 1.9254446598628473e-05 -0.26378266175503895 1.0 20751 +245688 Rbbp7 retinoblastoma binding protein 7, chromatin remodeling factor Novel U 1.9019388637101872e-05 -0.26378509647767734 1.0 20752 +66965 Ctu2 cytosolic thiouridylase subunit 2 Novel N 1.895531223136573e-05 -0.26378576017898153 1.0 20753 +100312956 Pate3 prostate and testis expressed 3 Novel U 1.8946842218265403e-05 -0.2637858479110988 1.0 20754 +629114 Defb23 defensin beta 23 Novel U 1.8809338262402164e-05 -0.26378727217255343 1.0 20755 +69134 Fam25a family with sequence similarity 25, member A Novel U 1.877435552342876e-05 -0.2637876345226137 1.0 20756 +100502953 Krtap12-20 keratin associated protein 12-20 Novel U 1.8721503609132016e-05 -0.2637881819610046 1.0 20757 +68720 Lce1b late cornified envelope 1B Novel U 1.8584141927839527e-05 -0.26378960474878393 1.0 20758 +71623 Krtap5-2 keratin associated protein 5-2 Novel U 1.8489358474031423e-05 -0.2637905865126826 1.0 20759 +27084 Xlr5c X-linked lymphocyte-regulated 5C Novel U 1.8335597329024188e-05 -0.26379217916556796 1.0 20760 +100502865 Krtap4-27 keratin associated protein 4-27 Novel U 1.823953256238747e-05 -0.26379317420126286 1.0 20761 +433490 Defb45 defensin beta 45 Novel U 1.8133292677265277e-05 -0.2637942746305005 1.0 20762 +245583 Tgif2lx1 TGFB-induced factor homeobox 2-like, X-linked 1 Novel U 1.8110385170661256e-05 -0.26379451190570086 1.0 20763 +16703 Krtap8-1 keratin associated protein 8-1 Novel U 1.808336244195911e-05 -0.26379479180623644 1.0 20764 +108167466 Krtap5-26 keratin associated protein 5-26 Novel U 1.7944747266865228e-05 -0.2637962275776633 1.0 20765 +71369 Krtap16-3 keratin associated protein 16-3 Novel U 1.7482991958585344e-05 -0.2638010104239671 1.0 20766 +104776 Aldh6a1 aldehyde dehydrogenase family 6, subfamily A1 Novel N 1.7231086940105148e-05 -0.2638036196478676 1.0 20767 +266620 Defb36 defensin beta 36 Novel U 1.717923275630273e-05 -0.2638041567517988 1.0 20768 +77914 Krtap17-1 keratin associated protein 17-1 Novel U 1.712681832580859e-05 -0.2638046996587468 1.0 20769 +620779 Gm12695 predicted gene 12695 Novel U 1.70276679558409e-05 -0.26380572665501956 1.0 20770 +71803 Slc25a18 solute carrier family 25 (mitochondrial carrier), member 18 Novel N 1.7000758395954743e-05 -0.26380600538335625 1.0 20771 +666842 Gm14692 predicted gene 14692 Novel U 1.693497780609541e-05 -0.26380668673654356 1.0 20772 +66765 4933411K16Rik RIKEN cDNA 4933411K16 gene Novel U 1.693189940517134e-05 -0.2638067186225192 1.0 20773 +68874 Klhdc9 kelch domain containing 9 Novel U 1.6837879182413983e-05 -0.26380769248089575 1.0 20774 +16671 Krt33b keratin 33B Novel U 1.6689544525305934e-05 -0.2638092289263978 1.0 20775 +66380 Krtap3-3 keratin associated protein 3-3 Novel U 1.6566211876580903e-05 -0.263810506401919 1.0 20776 +237465 Ccdc38 coiled-coil domain containing 38 Novel U 1.6471018588851573e-05 -0.26381149241086393 1.0 20777 +75087 4930505A04Rik RIKEN cDNA 4930505A04 gene Novel U 1.638302350813388e-05 -0.26381240386101734 1.0 20778 +622629 Krtap10-31 keratin associated protein 10-31 Novel U 1.6264790656553035e-05 -0.2638136285130073 1.0 20779 +69696 Krtap13-21 keratin associated protein 13-21 Novel U 1.6188734991778094e-05 -0.26381441629508284 1.0 20780 +11761 Aox1 aldehyde oxidase 1 Novel N 1.5943005038852175e-05 -0.26381696155785733 1.0 20781 +170651 Krtap19-2 keratin associated protein 19-2 Novel U 1.591107945981258e-05 -0.26381729224195555 1.0 20782 +66195 Lce1g late cornified envelope 1G Novel U 1.589916918095683e-05 -0.2638174156082324 1.0 20783 +435285 Krtap4-16 keratin associated protein 4-16 Novel U 1.5655033165567282e-05 -0.26381994436105427 1.0 20784 +114666 Krtap5-5 keratin associated protein 5-5 Novel U 1.5642694656109107e-05 -0.26382007216292963 1.0 20785 +654459 Defb25 defensin beta 25 Novel U 1.56281698943721e-05 -0.2638202226099342 1.0 20786 +76585 Lce1i late cornified envelope 1I Novel U 1.556878002177421e-05 -0.26382083776828225 1.0 20787 +76444 Krtap4-7 keratin associated protein 4-7 Novel U 1.546827903306742e-05 -0.2638218787542195 1.0 20788 +109314 Prr9 proline rich 9 Novel U 1.535808282945148e-05 -0.26382302016287407 1.0 20789 +670496 Krtap4-26 keratin associated protein 4-26 Novel U 1.5348718042395693e-05 -0.26382311716303053 1.0 20790 +327747 Mettl24 methyltransferase like 24 Novel U 1.529341720096936e-05 -0.26382368996732813 1.0 20791 +665998 Krtap4-9 keratin associated protein 4-9 Novel U 1.5191512721172184e-05 -0.2638247454905799 1.0 20792 +69464 Krtap4-13 keratin associated protein 4-13 Novel U 1.5127321308751633e-05 -0.2638254103831196 1.0 20793 +16705 Krtap9-1 keratin associated protein 9-1 Novel U 1.4983342624907314e-05 -0.2638269017095938 1.0 20794 +654465 Defb47 defensin beta 47 Novel U 1.4266245991535202e-05 -0.263834329372949 1.0 20795 +670464 Krtap4-23 keratin associated protein 4-23 Novel U 1.4106887165257536e-05 -0.26383598000643294 1.0 20796 +192200 Wfdc12 WAP four-disulfide core domain 12 Novel U 1.4024246327634485e-05 -0.26383683599751234 1.0 20797 +100041250 Krtap10-21 keratin associated protein 10-21 Novel U 1.395395245369989e-05 -0.26383756409914777 1.0 20798 +16704 Krtap19-5 keratin associated protein 19-5 Novel U 1.395300640895167e-05 -0.2638375738982482 1.0 20799 +403205 Agr3 anterior gradient 3 Novel U 1.3927180006018575e-05 -0.2638378414072808 1.0 20800 +77918 Krtap19-3 keratin associated protein 19-3 Novel U 1.3850550586884286e-05 -0.2638386351322851 1.0 20801 +66203 Lce1m late cornified envelope 1M Novel U 1.3710084543435584e-05 -0.2638400900749456 1.0 20802 +100415785 Krtap9-20 keratin associated protein 9-20 Novel U 1.3662790660483233e-05 -0.2638405799434305 1.0 20803 +320204 Etfbkmt electron transfer flavoprotein beta subunit lysine methyltransferase Novel N 1.3128206037102012e-05 -0.26384611715338596 1.0 20804 +223927 Gtsf2 gametocyte specific factor 2 Novel U 1.3070724480685122e-05 -0.2638467125454577 1.0 20805 +68659 Gask1b golgi associated kinase 1B Novel U 1.2348561849550013e-05 -0.2638541926822512 1.0 20806 +637277 Sycp2l synaptonemal complex protein 2-like Novel U 1.2314469598302143e-05 -0.2638545458086689 1.0 20807 +73730 Lce1l late cornified envelope 1L Novel U 1.1850705442782159e-05 -0.26385934946254636 1.0 20808 +20759 Sprr2e small proline-rich protein 2E Novel U 1.1491580212272422e-05 -0.26386306926987835 1.0 20809 +105243090 Krtap5-21 keratin associated protein 5-21 Novel U 1.1410527407452396e-05 -0.26386390881216626 1.0 20810 +69473 Krtap3-1 keratin associated protein 3-1 Novel U 1.1346086868147718e-05 -0.263864576285154 1.0 20811 +239099 Homez homeodomain leucine zipper-encoding gene Novel U 1.1141960213796557e-05 -0.2638666906223294 1.0 20812 +100042275 Btbd35f27 BTB domain containing 35, family member 27 Novel U 1.0756302755274564e-05 -0.263870685249607 1.0 20813 +100040201 Krtap6-3 keratin associated protein 6-3 Novel U 1.0741377354310965e-05 -0.2638708398464195 1.0 20814 +78753 Lipm lipase, family member M Novel N 1.0714665608360777e-05 -0.26387111652580597 1.0 20815 +66708 Krtap3-2 keratin associated protein 3-2 Novel U 1.0687232204672041e-05 -0.26387140068009957 1.0 20816 +100040249 Krtap20-1 keratin associated protein 20-1 Novel U 1.0593956172709922e-05 -0.26387236683017234 1.0 20817 +239933 Krtap27-1 keratin associated protein 27-1 Novel U 1.058506575009281e-05 -0.26387245891687755 1.0 20818 +243538 Cfap100 cilia and flagella associated protein 100 Novel U 1.0376139182100095e-05 -0.26387462297140074 1.0 20819 +268905 Krtap13-1 keratin associated protein 13-1 Novel U 1.0187734620848102e-05 -0.26387657445965274 1.0 20820 +665891 Krtap4-1 keratin associated protein 4-1 Novel U 9.62121917452983e-06 -0.2638824424080225 1.0 20821 +68311 Lypd2 Ly6/Plaur domain containing 2 Novel U 9.522228727108422e-06 -0.26388346774782273 1.0 20822 +319579 Defb20 defensin beta 20 Novel U 9.458748425864785e-06 -0.26388412527469624 1.0 20823 +170654 Krtap19-4 keratin associated protein 19-4 Novel U 9.4583401476047e-06 -0.263884129503629 1.0 20824 +70821 Spmip4 sperm microtubule inner protein 4 Novel U 9.187840241472257e-06 -0.26388693133276453 1.0 20825 +100040276 Krtap4-22 keratin associated protein 4-22 Novel U 9.176120603632497e-06 -0.26388705272438806 1.0 20826 +73503 Mbd3l1 methyl-CpG binding domain protein 3-like 1 Novel U 9.041980982020002e-06 -0.2638884421381791 1.0 20827 +670472 Krtap4-21 keratin associated protein 4-21 Novel U 8.99208107792757e-06 -0.2638889589997453 1.0 20828 +16701 Krtap6-2 keratin associated protein 6-2 Novel U 8.71955474218832e-06 -0.2638917818185721 1.0 20829 +435286 Krtap9-5 keratin associated protein 9-5 Novel U 8.547472084336434e-06 -0.26389356424508514 1.0 20830 +16697 Krtap12-23 keratin associated protein 12-23 Novel U 8.51131335442395e-06 -0.26389393877602096 1.0 20831 +629203 Sult2a3 sulfotransferase family 2A, dehydroepiandrosterone (DHEA)-preferring, member 3 Novel U 8.381342852904812e-06 -0.26389528500620313 1.0 20832 +115486481 Krtap5-25 keratin associated protein 5-25 Novel U 8.155602485433416e-06 -0.2638976232175086 1.0 20833 +170656 Krtap21-1 keratin associated protein 21-1 Novel U 8.014667504174718e-06 -0.2638990830174115 1.0 20834 +622935 Krtap20-2 keratin associated protein 20-2 Novel U 7.931319525705039e-06 -0.2638999463330326 1.0 20835 +100502921 Krtap12-21 keratin associated protein 12-21 Novel U 7.853866000860499e-06 -0.26390074859409673 1.0 20836 +76627 Prr30 proline rich 30 Novel U 7.846423902593953e-06 -0.26390082567910594 1.0 20837 +75173 Tex38 testis expressed 38 Novel U 7.824826385989658e-06 -0.26390104938547293 1.0 20838 +16700 Krtap6-1 keratin associated protein 6-1 Novel U 7.816698318747226e-06 -0.26390113357572625 1.0 20839 +170657 Krtap19-1 keratin associated protein 19-1 Novel U 7.745234964009257e-06 -0.2639018737908054 1.0 20840 +100502831 Krtap10-33 keratin associated protein 10-33 Novel U 7.124566781438135e-06 -0.2639083026514371 1.0 20841 +76421 1700028K03Rik RIKEN cDNA 1700028K03 gene Novel U 7.069788892612846e-06 -0.2639088700390088 1.0 20842 +68673 Krtap4-2 keratin associated protein 4-2 Novel U 7.049163276863283e-06 -0.2639090836784587 1.0 20843 +239932 Krtap24-1 keratin associated protein 24-1 Novel U 6.87566923023346e-06 -0.2639108807240904 1.0 20844 +670880 Krtap10-27 keratin associated protein 10-27 Novel U 6.839056005975978e-06 -0.2639112599626637 1.0 20845 +100043194 Sult2a2 sulfotransferase family 2A, dehydroepiandrosterone (DHEA)-preferring, member 2 Novel U 6.655059707024567e-06 -0.2639131657902797 1.0 20846 +546511 Krtap4-24 keratin associated protein 4-24 Novel U 6.425682513730985e-06 -0.26391554167170744 1.0 20847 +432867 Defb48 defensin beta 48 Novel U 6.368665239288001e-06 -0.2639161322547618 1.0 20848 +629873 Krtap1-4 keratin associated protein 1-4 Novel U 6.084447208054401e-06 -0.26391907617578614 1.0 20849 +381591 L1td1 LINE-1 type transposase domain containing 1 Novel U 5.333870275978219e-06 -0.2639268506269747 1.0 20850 +77080 Pate5 prostate and testis expressed 5 Novel U 5.2752478177172e-06 -0.26392745783647026 1.0 20851 +432600 Krtap9-21 keratin associated protein 9-21 Novel U 5.270874617429243e-06 -0.2639275031339351 1.0 20852 +102637417 Krtap20-22 keratin associated protein 20-22 Novel U 5.160099111251105e-06 -0.26392865054298653 1.0 20853 +68637 Krtap6-6 keratin associated protein 6-6 Novel U 4.953388617407995e-06 -0.2639307916434865 1.0 20854 +50775 Krtap5-4 keratin associated protein 5-4 Novel U 4.934347887420116e-06 -0.26393098886674177 1.0 20855 +432602 Krtap31-2 keratin associated protein 31-2 Novel U 4.880574974912305e-06 -0.26393154584480183 1.0 20856 +102637070 krtap20-23 keratin associated protein 20-23 Novel U 4.697813801420598e-06 -0.2639334388790289 1.0 20857 +100040214 Krtap6-7 keratin associated protein 6-7 Novel U 4.571132320058585e-06 -0.26393475104164843 1.0 20858 +69661 Krtap13-22 keratin associated protein 13-22 Novel U 4.479064230785613e-06 -0.2639357046798906 1.0 20859 +100043627 Krtap5-20 keratin associated protein 5-20 Novel U 4.2961615417079465e-06 -0.2639375991799314 1.0 20860 +70831 Krtap31-1 keratin associated protein 31-1 Novel U 3.5418625099738628e-06 -0.2639454121845059 1.0 20861 +102637192 Krtap20-20 keratin associated protein 20-20 Novel U 3.5250615548762044e-06 -0.2639455862082465 1.0 20862 +640627 Krtap20-21 keratin associated protein 20-21 Novel U 3.474503716950378e-06 -0.2639461098846697 1.0 20863 +68740 Krtap22-2 keratin associated protein 22-2 Novel U 3.322531270876463e-06 -0.2639476840102703 1.0 20864 +100041579 Gm20878 predicted gene, 20878 Novel U 2.926473750881074e-06 -0.2639517863610427 1.0 20865 +621580 Gm21953 predicted gene, 21953 Novel U 2.722844410645695e-06 -0.26395389554705495 1.0 20866 +670550 Krtap31-3 keratin associated protein 31-3 Novel U 2.6597450514641768e-06 -0.2639545491281431 1.0 20867 +50774 Krtap5-1 keratin associated protein 5-1 Novel U 1.291447671412337e-06 -0.2639687219074253 1.0 20868 +667693 Spata31e4 spermatogenesis associated 31 subfamily E member 4 Novel U 4.2091756394428746e-07 -0.2639777388296613 1.0 20869 +380882 Spata31e3 spermatogenesis associated 31 subfamily E member 3 Novel U 1.0307382915618196e-07 -0.26398103104461773 1.0 20870 diff --git a/test/expected_result/df_sim.tsv b/test/expected_result/expected_pipeline/All-Genes/Mouse-Combined/df_sim.tsv similarity index 53% rename from test/expected_result/df_sim.tsv rename to test/expected_result/expected_pipeline/All-Genes/Mouse-Combined/df_sim.tsv index 31dbd502..2ec9cce1 100644 --- a/test/expected_result/df_sim.tsv +++ b/test/expected_result/expected_pipeline/All-Genes/Mouse-Combined/df_sim.tsv @@ -1,9151 +1,9151 @@ Task ID Name Similarity Z-score P-adjusted Rank -Biological Process GO:0007032 endosome organization 0.2822645269896451 4.072798299032309 0.21251629726110532 1 -Biological Process GO:0097178 ruffle assembly 0.2774815444878791 3.986107645824648 0.3072846740275221 2 -Biological Process GO:0031529 ruffle organization 0.27496968365475205 3.9405806433089325 0.37187712894853325 3 -Biological Process GO:0002090 regulation of receptor internalization 0.26171637952327265 3.700367012610195 0.9849420470552709 4 -Biological Process GO:0140238 presynaptic endocytosis 0.2570436407675596 3.6156745064486207 1.0 5 -Biological Process GO:1903540 establishment of protein localization to postsynaptic membrane 0.25681907067664733 3.6116042160252504 1.0 6 -Biological Process GO:0098969 neurotransmitter receptor transport to postsynaptic membrane 0.25681907067664733 3.6116042160252504 1.0 6 -Biological Process GO:0048259 regulation of receptor-mediated endocytosis 0.24912566762549182 3.4721627408268296 1.0 8 -Biological Process GO:0099149 regulation of postsynaptic neurotransmitter receptor internalization 0.24554485118617286 3.40726112012747 1.0 9 -Biological Process GO:0006458 'de novo' protein folding 0.24244068477462288 3.3509986910294773 1.0 10 -Biological Process GO:0051084 'de novo' post-translational protein folding 0.24244068477462288 3.3509986910294773 1.0 10 -Biological Process GO:0036465 synaptic vesicle recycling 0.24173726095575288 3.3382492673556183 1.0 12 -Biological Process GO:0034446 substrate adhesion-dependent cell spreading 0.23939709866051573 3.295834268364687 1.0 13 -Biological Process GO:0006893 Golgi to plasma membrane transport 0.2390878758614492 3.290229663616942 1.0 14 -Phenotype MP:0030951 abnormal endocytosis 0.23571448194912592 3.2290875369881964 1.0 15 -Biological Process GO:0098876 vesicle-mediated transport to the plasma membrane 0.23566932347243352 3.2282690481392655 1.0 16 -Biological Process GO:0002830 positive regulation of type 2 immune response 0.23520724610135546 3.219893983184199 1.0 17 -Biological Process GO:0048488 synaptic vesicle endocytosis 0.23426599544177262 3.20283399300417 1.0 18 -Biological Process GO:0098877 neurotransmitter receptor transport to plasma membrane 0.23388890614886637 3.195999320891615 1.0 19 -Biological Process GO:0031623 receptor internalization 0.23363804442815006 3.1914524996507545 1.0 20 -Biological Process GO:0045954 positive regulation of natural killer cell mediated cytotoxicity 0.22842374391915088 3.0969442891399956 1.0 21 -Biological Process GO:2001243 negative regulation of intrinsic apoptotic signaling pathway 0.2274399146722884 3.0791125701186908 1.0 22 -Biological Process GO:0051261 protein depolymerization 0.2261252363889361 3.055284274886656 1.0 23 -Biological Process GO:0007259 cell surface receptor signaling pathway via JAK-STAT 0.22511415835483306 3.0369586767503574 1.0 24 -Biological Process GO:0030866 cortical actin cytoskeleton organization 0.2238602460518313 3.0142317534191077 1.0 25 -Biological Process GO:0002504 antigen processing and presentation of peptide or polysaccharide antigen via MHC class II 0.2203833129599282 2.951212998743521 1.0 26 -Biological Process GO:0051496 positive regulation of stress fiber assembly 0.21922770328340158 2.9302677919245133 1.0 27 -Biological Process GO:0035022 positive regulation of Rac protein signal transduction 0.21730804292330008 2.8954743109756267 1.0 28 -Biological Process GO:0045840 positive regulation of mitotic nuclear division 0.21538287634064157 2.8605810307843225 1.0 29 -Biological Process GO:0097696 cell surface receptor signaling pathway via STAT 0.21490414098721777 2.851904043049873 1.0 30 -Biological Process GO:0001919 regulation of receptor recycling 0.21483817776583525 2.8507084721383715 1.0 31 -Biological Process GO:0099072 regulation of postsynaptic membrane neurotransmitter receptor levels 0.2137593370447094 2.831154688116186 1.0 32 -Biological Process GO:0002828 regulation of type 2 immune response 0.2129956747206646 2.8173134529293375 1.0 33 -Biological Process GO:0048260 positive regulation of receptor-mediated endocytosis 0.2113036691204424 2.786646171445426 1.0 34 -Biological Process GO:0010634 positive regulation of epithelial cell migration 0.21127912137941807 2.786201248282235 1.0 35 -Biological Process GO:0033598 mammary gland epithelial cell proliferation 0.2104854494343562 2.7718160943903687 1.0 36 -Biological Process GO:0002717 positive regulation of natural killer cell mediated immunity 0.2102467190006636 2.767489150432343 1.0 37 -Biological Process GO:0007173 epidermal growth factor receptor signaling pathway 0.2102338136787405 2.767255243913355 1.0 38 -Biological Process GO:0033028 myeloid cell apoptotic process 0.20876116174551873 2.740563706156028 1.0 39 -Biological Process GO:0043507 positive regulation of JUN kinase activity 0.20837091317044343 2.7334905245430603 1.0 40 -Phenotype MP:0020415 abnormal fibroblast chemotaxis 0.20783749391378703 2.7238224014052452 1.0 41 -Biological Process GO:0048489 synaptic vesicle transport 0.20749294796838258 2.717577571311024 1.0 42 -Biological Process GO:0043154 negative regulation of cysteine-type endopeptidase activity involved in apoptotic process 0.2071439938820182 2.7112528444956445 1.0 43 -Biological Process GO:0051492 regulation of stress fiber assembly 0.20703943515171686 2.7093577372848108 1.0 44 -Biological Process GO:0036119 response to platelet-derived growth factor 0.2069532556721766 2.7077957505178336 1.0 45 -Phenotype MP:0004250 tau protein deposits 0.2069501562882492 2.7077395747703568 1.0 46 -Biological Process GO:0072583 clathrin-dependent endocytosis 0.2057608778026605 2.686184127155101 1.0 47 -Biological Process GO:1901741 positive regulation of myoblast fusion 0.20564373004119263 2.68406084613542 1.0 48 -Biological Process GO:0061077 chaperone-mediated protein folding 0.20550766560847167 2.681594704027111 1.0 49 -Biological Process GO:0150117 positive regulation of cell-substrate junction organization 0.2053076223394421 2.6779689576114456 1.0 50 -Biological Process GO:0032456 endocytic recycling 0.20337357639642462 2.6429147406930467 1.0 51 -Biological Process GO:1903911 positive regulation of receptor clustering 0.2026693699294304 2.630151131669964 1.0 52 -Phenotype MP:0009379 abnormal foot pigmentation 0.2016888217951872 2.612378882194305 1.0 53 -Biological Process GO:0048661 positive regulation of smooth muscle cell proliferation 0.20110212217630297 2.6017450625683747 1.0 54 -Phenotype MP:0000380 small hair follicles 0.19836044296754096 2.552052645461332 1.0 55 -Biological Process GO:0045625 regulation of T-helper 1 cell differentiation 0.19809277918683432 2.5472012900610306 1.0 56 -Biological Process GO:0048532 anatomical structure arrangement 0.19772467743765865 2.540529515478719 1.0 57 -Biological Process GO:0055094 response to lipoprotein particle 0.1974094842575631 2.5348166987040406 1.0 58 -Biological Process GO:0071404 cellular response to low-density lipoprotein particle stimulus 0.1974094842575631 2.5348166987040406 1.0 58 -Biological Process GO:2001234 negative regulation of apoptotic signaling pathway 0.19727505399736722 2.532380175663667 1.0 60 -Biological Process GO:0097120 receptor localization to synapse 0.19711368497107995 2.5294553925829923 1.0 61 -Biological Process GO:1902236 negative regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway 0.19701342238803654 2.5276381522286506 1.0 62 -Biological Process GO:2000672 negative regulation of motor neuron apoptotic process 0.19696107745635905 2.5266894102423363 1.0 63 -Biological Process GO:0006457 protein folding 0.19688085827366186 2.52523545272833 1.0 64 -Biological Process GO:2000117 negative regulation of cysteine-type endopeptidase activity 0.1968309085003177 2.524330122533795 1.0 65 -Phenotype MP:0002358 abnormal spleen periarteriolar lymphoid sheath morphology 0.19652949509772266 2.5188670616200537 1.0 66 -Biological Process GO:1904064 positive regulation of cation transmembrane transport 0.19644382919769332 2.517314383384575 1.0 67 -Biological Process GO:0099637 neurotransmitter receptor transport 0.1958556201001802 2.5066532047439942 1.0 68 -Biological Process GO:0061951 establishment of protein localization to plasma membrane 0.19576808037713767 2.50506656382081 1.0 69 -Phenotype MP:0011074 abnormal macrophage nitric oxide production 0.19574941331663187 2.504728226879766 1.0 70 -Biological Process GO:2000671 regulation of motor neuron apoptotic process 0.19515466198428222 2.4939484714701488 1.0 71 -Biological Process GO:0030163 protein catabolic process 0.19495238107385293 2.490282168227333 1.0 72 -Biological Process GO:0046635 positive regulation of alpha-beta T cell activation 0.19426534870375733 2.477829836462288 1.0 73 -Phenotype MP:0003950 abnormal plasma membrane morphology 0.1941788457804713 2.4762619873385936 1.0 74 -Biological Process GO:0006892 post-Golgi vesicle-mediated transport 0.1929898362370438 2.454711414249143 1.0 75 -Biological Process GO:0051905 establishment of pigment granule localization 0.19262879062390081 2.4481675307978508 1.0 76 -Biological Process GO:0051904 pigment granule transport 0.19262879062390081 2.4481675307978508 1.0 76 -Biological Process GO:1903539 protein localization to postsynaptic membrane 0.19168667018078078 2.4310917759557182 1.0 78 -Biological Process GO:0062237 protein localization to postsynapse 0.19168667018078078 2.4310917759557182 1.0 78 -Biological Process GO:0042269 regulation of natural killer cell mediated cytotoxicity 0.1911466617805493 2.4213042258368525 1.0 80 -Phenotype MP:0001704 abnormal dorsal-ventral axis patterning 0.19093671257710154 2.417498936233432 1.0 81 -Biological Process GO:0032402 melanosome transport 0.19068540378235543 2.412944011860339 1.0 82 -Biological Process GO:0032401 establishment of melanosome localization 0.19068540378235543 2.412944011860339 1.0 82 -Biological Process GO:0038128 ERBB2 signaling pathway 0.19051081777222023 2.4097796734472356 1.0 84 -Biological Process GO:0007260 tyrosine phosphorylation of STAT protein 0.19013996403906852 2.4030580196758593 1.0 85 -Biological Process GO:1900024 regulation of substrate adhesion-dependent cell spreading 0.1897984980758547 2.396869013676306 1.0 86 -Biological Process GO:0046777 protein autophosphorylation 0.1896604350859239 2.3943666480965686 1.0 87 -Biological Process GO:0002495 antigen processing and presentation of peptide antigen via MHC class II 0.18961390927210098 2.393523376520761 1.0 88 -Biological Process GO:0051928 positive regulation of calcium ion transport 0.18936466955953668 2.3890059538708743 1.0 89 -Phenotype MP:0000275 heart hyperplasia 0.18927452659527555 2.387372129692971 1.0 90 -Biological Process GO:0051057 positive regulation of small GTPase mediated signal transduction 0.1885457978426015 2.374164058880002 1.0 91 -Biological Process GO:0006511 ubiquitin-dependent protein catabolic process 0.18844470848205586 2.372331833339806 1.0 92 -Biological Process GO:0045058 T cell selection 0.18842351051385953 2.3719476241755584 1.0 93 -Phenotype MP:0009511 distended stomach 0.18838552483632875 2.3712591409547934 1.0 94 -Biological Process GO:0016197 endosomal transport 0.18821209347807122 2.3681157303885856 1.0 95 -Phenotype MP:0004770 abnormal synaptic vesicle recycling 0.18755043040125097 2.3561232122658957 1.0 96 -Biological Process GO:0007034 vacuolar transport 0.18701841582656586 2.3464805487231337 1.0 97 -Biological Process GO:0043406 positive regulation of MAP kinase activity 0.18693341648706419 2.3449399517711482 1.0 98 -Biological Process GO:0033033 negative regulation of myeloid cell apoptotic process 0.1865934695570015 2.3387784779601546 1.0 99 -Biological Process GO:0032231 regulation of actin filament bundle assembly 0.18657486588509498 2.338441289925483 1.0 100 -Biological Process GO:0060749 mammary gland alveolus development 0.18641195803747546 2.3354886159992088 1.0 101 -Biological Process GO:0061377 mammary gland lobule development 0.18641195803747546 2.3354886159992088 1.0 101 -Biological Process GO:0007041 lysosomal transport 0.18628933495363498 2.333266095797108 1.0 103 -Biological Process GO:0071402 cellular response to lipoprotein particle stimulus 0.18624714906582518 2.332501484559449 1.0 104 -Biological Process GO:0090022 regulation of neutrophil chemotaxis 0.18605368680620282 2.32899501769458 1.0 105 -Biological Process GO:0060143 positive regulation of syncytium formation by plasma membrane fusion 0.18585787568616952 2.3254459781790175 1.0 106 -Biological Process GO:2001242 regulation of intrinsic apoptotic signaling pathway 0.1856636233031983 2.3219251904778915 1.0 107 -Biological Process GO:0010595 positive regulation of endothelial cell migration 0.18537768610138172 2.316742632776144 1.0 108 -Biological Process GO:0038127 ERBB signaling pathway 0.1848408695922803 2.3070129350803077 1.0 109 -Biological Process GO:0032233 positive regulation of actin filament bundle assembly 0.18478857291400785 2.3060650676778334 1.0 110 -Phenotype MP:0013588 small thymus medulla 0.18399887972157125 2.291752027924772 1.0 111 -Biological Process GO:2000551 regulation of T-helper 2 cell cytokine production 0.1838232080493124 2.288568012091016 1.0 112 -Biological Process GO:0035739 CD4-positive, alpha-beta T cell proliferation 0.18377506941808697 2.28769550850483 1.0 113 -Phenotype MP:0011174 lipodystrophy 0.18365281512670062 2.285479672596208 1.0 114 -Biological Process GO:0019941 modification-dependent protein catabolic process 0.18358471979440705 2.284245457577704 1.0 115 -Biological Process GO:0031098 stress-activated protein kinase signaling cascade 0.18340712221654143 2.2810265350690844 1.0 116 -Biological Process GO:0034332 adherens junction organization 0.1829724559308763 2.273148290852689 1.0 117 -Biological Process GO:0051896 regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction 0.18269173338730837 2.268060247845416 1.0 118 -Phenotype MP:0031048 increased susceptibility to Coronaviridae infection induced morbidity/mortality 0.182575668331739 2.265956590665366 1.0 119 -Biological Process GO:0061462 protein localization to lysosome 0.18249159823010053 2.2644328359738988 1.0 120 -Biological Process GO:0018108 peptidyl-tyrosine phosphorylation 0.18209883283203232 2.257314037420208 1.0 121 -Biological Process GO:0072659 protein localization to plasma membrane 0.1820135616608607 2.255768513570618 1.0 122 -Biological Process GO:0035025 positive regulation of Rho protein signal transduction 0.1818859591877191 2.2534557428792192 1.0 123 -Biological Process GO:1904395 positive regulation of skeletal muscle acetylcholine-gated channel clustering 0.181777212087869 2.2514847222624885 1.0 124 -Biological Process GO:0034143 regulation of toll-like receptor 4 signaling pathway 0.18163599150444132 2.2489251258978364 1.0 125 -Biological Process GO:0006898 receptor-mediated endocytosis 0.18149352547186015 2.246342956002838 1.0 126 -Biological Process GO:0033059 cellular pigmentation 0.18125922274144535 2.2420962633292816 1.0 127 -Biological Process GO:0097479 synaptic vesicle localization 0.18121964445210836 2.2413789143207503 1.0 128 -Phenotype MP:0001044 abnormal enteric nervous system morphology 0.18108941821567726 2.2390185884159783 1.0 129 -Biological Process GO:0051897 positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction 0.1808798763407885 2.235220681565649 1.0 130 -Biological Process GO:0034341 response to type II interferon 0.18064044499382925 2.230881033687233 1.0 131 -Biological Process GO:0019058 viral life cycle 0.18028966982866867 2.224523300163105 1.0 132 -Biological Process GO:0046638 positive regulation of alpha-beta T cell differentiation 0.18005058350762193 2.220189905814097 1.0 133 -Biological Process GO:0072666 establishment of protein localization to vacuole 0.1797201537153995 2.2142009283264192 1.0 134 -Biological Process GO:0071346 cellular response to type II interferon 0.17966057378816647 2.2131210534140626 1.0 135 -Biological Process GO:0035773 insulin secretion involved in cellular response to glucose stimulus 0.1796248052892908 2.212472756137072 1.0 136 -Biological Process GO:0050731 positive regulation of peptidyl-tyrosine phosphorylation 0.17944212164835338 2.2091616496972364 1.0 137 -Biological Process GO:0019882 antigen processing and presentation 0.17931408775849145 2.2068410596593777 1.0 138 -Biological Process GO:2000008 regulation of protein localization to cell surface 0.1791641075634205 2.2041226969904546 1.0 139 -Biological Process GO:0002715 regulation of natural killer cell mediated immunity 0.17914330242729037 2.2037456078331084 1.0 140 -Biological Process GO:0019886 antigen processing and presentation of exogenous peptide antigen via MHC class II 0.1790764351269991 2.20253365066238 1.0 141 -Phenotype MP:0011706 abnormal fibroblast migration 0.178450511785195 2.191188908477167 1.0 142 -Biological Process GO:0016482 cytosolic transport 0.17836943929152227 2.189719484863121 1.0 143 -Biological Process GO:0034767 positive regulation of monoatomic ion transmembrane transport 0.17816232709976876 2.1859656155600757 1.0 144 -Biological Process GO:0032438 melanosome organization 0.17815519678622949 2.1858363799757794 1.0 145 -Biological Process GO:0051875 pigment granule localization 0.17808216008981836 2.1845126036672373 1.0 146 -Phenotype MP:0008976 delayed female fertility 0.1775201820702197 2.1743268583526 1.0 147 -Biological Process GO:0110020 regulation of actomyosin structure organization 0.17686942429272878 2.162531996717663 1.0 148 -Biological Process GO:0048753 pigment granule organization 0.17669179700059978 2.1593125356436396 1.0 149 -Biological Process GO:0070374 positive regulation of ERK1 and ERK2 cascade 0.17667318557840606 2.158975207136479 1.0 150 -Biological Process GO:1904393 regulation of skeletal muscle acetylcholine-gated channel clustering 0.17641103886569343 2.154223847550089 1.0 151 -Phenotype MP:0031580 enlarged semilunar valve 0.17637589180911095 2.153586813797125 1.0 152 -Biological Process GO:0048340 paraxial mesoderm morphogenesis 0.17614580902182275 2.1494166067945932 1.0 153 -Phenotype MP:0008109 abnormal small intestinal microvillus morphology 0.17608215855499498 2.1482629541219698 1.0 154 -Biological Process GO:0002228 natural killer cell mediated immunity 0.1760727584569367 2.148092579122566 1.0 155 -Biological Process GO:0071806 protein transmembrane transport 0.17570969321060792 2.141512090201768 1.0 156 -Biological Process GO:0002724 regulation of T cell cytokine production 0.1756893679671615 2.141143699008548 1.0 157 -Biological Process GO:0046849 bone remodeling 0.17547762020739222 2.1373058109119722 1.0 158 -Biological Process GO:0006661 phosphatidylinositol biosynthetic process 0.17546272679497044 2.1370358706287162 1.0 159 -Biological Process GO:0032695 negative regulation of interleukin-12 production 0.17534985379647527 2.134990068879402 1.0 160 -Phenotype MP:0002353 abnormal inguinal lymph node morphology 0.17512555486756698 2.130924693216066 1.0 161 -Biological Process GO:0032400 melanosome localization 0.17486869791205306 2.126269209478417 1.0 162 -Biological Process GO:0043523 regulation of neuron apoptotic process 0.17457623374808906 2.120968351822235 1.0 163 -Phenotype MP:0010740 abnormal dendritic cell chemotaxis 0.1743289767348033 2.1164868652217708 1.0 164 -Phenotype MP:0011825 decreased cell chemotaxis 0.17418294155933312 2.1138400052869644 1.0 165 -Biological Process GO:0110053 regulation of actin filament organization 0.1735566023655578 2.1024877258634262 1.0 166 -Biological Process GO:0032414 positive regulation of ion transmembrane transporter activity 0.17320492619378025 2.0961136617647784 1.0 167 -Biological Process GO:0042267 natural killer cell mediated cytotoxicity 0.1729872384272868 2.0921681121697997 1.0 168 -Biological Process GO:0090023 positive regulation of neutrophil chemotaxis 0.17289679975097716 2.0905289282669473 1.0 169 -Biological Process GO:0071624 positive regulation of granulocyte chemotaxis 0.17289679975097716 2.0905289282669473 1.0 169 -Biological Process GO:0007097 nuclear migration 0.17254727981903584 2.084193945607508 1.0 171 -Biological Process GO:0099003 vesicle-mediated transport in synapse 0.172490356013844 2.0831622124047784 1.0 172 -Biological Process GO:0043632 modification-dependent macromolecule catabolic process 0.17247613815755258 2.082904516448613 1.0 173 -Biological Process GO:0007265 Ras protein signal transduction 0.1723905283613072 2.0813528550836073 1.0 174 -Phenotype MP:0004187 cardia bifida 0.17236598811612336 2.080908067781108 1.0 175 -Phenotype MP:0005324 ascites 0.17232374942010242 2.08014249940461 1.0 176 -Phenotype MP:0001253 abnormal body height 0.1722504088044563 2.0788132146174156 1.0 177 -Phenotype MP:0001255 decreased body height 0.1722504088044563 2.0788132146174156 1.0 177 -Biological Process GO:0035728 response to hepatocyte growth factor 0.1722489014135623 2.0787858934425647 1.0 179 -Biological Process GO:0035729 cellular response to hepatocyte growth factor stimulus 0.1722489014135623 2.0787858934425647 1.0 179 -Phenotype MP:0002950 abnormal neural crest cell migration 0.17158286533054723 2.0667141154096886 1.0 181 -Phenotype MP:0005264 glomerulosclerosis 0.1715540936825375 2.0661926347312827 1.0 182 -Biological Process GO:1904036 negative regulation of epithelial cell apoptotic process 0.17142653377522854 2.06388063553755 1.0 183 -Biological Process GO:0032743 positive regulation of interleukin-2 production 0.17140971161701413 2.0635757371015986 1.0 184 -Biological Process GO:0010951 negative regulation of endopeptidase activity 0.1712156439857685 2.0600582979905555 1.0 185 -Biological Process GO:0045624 positive regulation of T-helper cell differentiation 0.1711527778667652 2.058918861473902 1.0 186 -Biological Process GO:0014910 regulation of smooth muscle cell migration 0.17114494952692494 2.0587769742949225 1.0 187 -Biological Process GO:0010466 negative regulation of peptidase activity 0.17099004160701148 2.055969297545242 1.0 188 -Phenotype MP:0005335 abnormal gonadal fat pad morphology 0.17098579669284997 2.055892359278933 1.0 189 -Biological Process GO:0060856 establishment of blood-brain barrier 0.17096102215223097 2.0554433254159847 1.0 190 -Biological Process GO:0048710 regulation of astrocyte differentiation 0.17057786041935963 2.0484985914775833 1.0 191 -Biological Process GO:0033032 regulation of myeloid cell apoptotic process 0.17056649037168503 2.048292511513973 1.0 192 -Biological Process GO:0070830 bicellular tight junction assembly 0.17054201499736443 2.0478488999836 1.0 193 -Biological Process GO:0006984 ER-nucleus signaling pathway 0.1704861190775877 2.0468357970096087 1.0 194 -Biological Process GO:2000573 positive regulation of DNA biosynthetic process 0.17033676411117538 2.0441287664918697 1.0 195 -Phenotype MP:0010856 dilated respiratory conducting tube 0.1701436349707105 2.0406283373487244 1.0 196 -Phenotype MP:0004545 enlarged esophagus 0.17009569444885098 2.039759424457326 1.0 197 -Biological Process GO:0050679 positive regulation of epithelial cell proliferation 0.17006819461543665 2.0392609951779153 1.0 198 -Phenotype MP:0009302 increased renal fat pad weight 0.17006048273360275 2.0391212187782743 1.0 199 -Biological Process GO:0010762 regulation of fibroblast migration 0.17005888125105373 2.0390921922099725 1.0 200 -Biological Process GO:0051650 establishment of vesicle localization 0.16974637609612442 2.033428095383028 1.0 201 -Phenotype MP:0010373 myeloid hyperplasia 0.16971840699379404 2.0329211606932693 1.0 202 -Biological Process GO:1990778 protein localization to cell periphery 0.16970352050023774 2.0326513458131417 1.0 203 -Biological Process GO:0043297 apical junction assembly 0.16968002536351978 2.0322255009039183 1.0 204 -Biological Process GO:2001259 positive regulation of cation channel activity 0.1696297793219601 2.0313148009040125 1.0 205 -Biological Process GO:0030865 cortical cytoskeleton organization 0.16922583107179867 2.023993315271218 1.0 206 -Phenotype MP:0004702 increased circulating insulin-like growth factor I level 0.16921965714611875 2.0238814140359844 1.0 207 -Biological Process GO:0051603 proteolysis involved in protein catabolic process 0.16894098618662734 2.0188305556020687 1.0 208 -Biological Process GO:0018212 peptidyl-tyrosine modification 0.16890784087893007 2.0182298031690453 1.0 209 -Biological Process GO:0009306 protein secretion 0.16869362674485822 2.014347212504717 1.0 210 -Biological Process GO:0035592 establishment of protein localization to extracellular region 0.16869362674485822 2.014347212504717 1.0 210 -Biological Process GO:2001135 regulation of endocytic recycling 0.16849663865613118 2.0107768406541884 1.0 212 -Biological Process GO:0038129 ERBB3 signaling pathway 0.16846520720789626 2.0102071515997664 1.0 213 -Biological Process GO:0038133 ERBB2-ERBB3 signaling pathway 0.16846520720789626 2.0102071515997664 1.0 213 -Biological Process GO:0070371 ERK1 and ERK2 cascade 0.1683968194383857 2.008967636212015 1.0 215 -Phenotype MP:0009971 decreased hippocampus pyramidal cell number 0.1683421097829607 2.0079760340550328 1.0 216 -Biological Process GO:0060976 coronary vasculature development 0.16826334725181358 2.006548478074865 1.0 217 -Biological Process GO:0035418 protein localization to synapse 0.16824512575365458 2.006218216867085 1.0 218 -Biological Process GO:0010640 regulation of platelet-derived growth factor receptor signaling pathway 0.16802429098648797 2.002215628480118 1.0 219 -Biological Process GO:2000561 regulation of CD4-positive, alpha-beta T cell proliferation 0.16786196337130788 1.999273471157065 1.0 220 -Biological Process GO:0051647 nucleus localization 0.16773069606770974 1.9968942761067947 1.0 221 -Biological Process GO:0046634 regulation of alpha-beta T cell activation 0.16766783610718528 1.9957549512114054 1.0 222 -Biological Process GO:0008064 regulation of actin polymerization or depolymerization 0.16755386569082786 1.9936892589708997 1.0 223 -Phenotype MP:0002607 decreased basophil cell number 0.1675419404865598 1.993473116899033 1.0 224 -Phenotype MP:0002683 delayed fertility 0.1674429526096176 1.9916789803516821 1.0 225 -Biological Process GO:1904427 positive regulation of calcium ion transmembrane transport 0.16702606216920535 1.984122919968433 1.0 226 -Biological Process GO:1902414 protein localization to cell junction 0.16688654517040458 1.981594200752934 1.0 227 -Biological Process GO:1904035 regulation of epithelial cell apoptotic process 0.16684958907963043 1.9809243785974002 1.0 228 -Biological Process GO:0072665 protein localization to vacuole 0.16668042984075204 1.9778583993869256 1.0 229 -Biological Process GO:1900076 regulation of cellular response to insulin stimulus 0.1666376824157756 1.9770836103943283 1.0 230 -Biological Process GO:0060099 regulation of phagocytosis, engulfment 0.16659976012660038 1.976396276075519 1.0 231 -Biological Process GO:1905153 regulation of membrane invagination 0.16659976012660038 1.976396276075519 1.0 231 -Biological Process GO:0035023 regulation of Rho protein signal transduction 0.166500035424331 1.9745887847084733 1.0 233 -Biological Process GO:0051785 positive regulation of nuclear division 0.16649068468691475 1.97441930436137 1.0 234 -Biological Process GO:0030032 lamellipodium assembly 0.16643612909453065 1.9734304945678651 1.0 235 -Biological Process GO:2000278 regulation of DNA biosynthetic process 0.16633372310552874 1.9715744053859219 1.0 236 -Biological Process GO:0030838 positive regulation of actin filament polymerization 0.16632737787837426 1.9714593993438614 1.0 237 -Biological Process GO:1902254 negative regulation of intrinsic apoptotic signaling pathway by p53 class mediator 0.16608692466341524 1.9671012303012225 1.0 238 -Biological Process GO:0043506 regulation of JUN kinase activity 0.16593257104179993 1.9643036001033578 1.0 239 -Phenotype MP:0008522 abnormal lymph node germinal center morphology 0.165887281846003 1.9634827419953809 1.0 240 -Biological Process GO:0001912 positive regulation of leukocyte mediated cytotoxicity 0.16575967832428362 1.9611699522987083 1.0 241 -Phenotype MP:0012028 abnormal visceral endoderm physiology 0.16564194763692308 1.9590361058574755 1.0 242 -Biological Process GO:1902532 negative regulation of intracellular signal transduction 0.16563314693723719 1.9588765948402027 1.0 243 -Phenotype MP:0000474 abnormal foregut morphology 0.16538614835449605 1.9543997922444813 1.0 244 -Phenotype MP:0001194 dermatitis 0.16512681437290255 1.949699412877636 1.0 245 -Biological Process GO:0032970 regulation of actin filament-based process 0.16510163855023252 1.9492431058534099 1.0 246 -Biological Process GO:0045453 bone resorption 0.16504385415729417 1.9481957746605436 1.0 247 -Biological Process GO:1901739 regulation of myoblast fusion 0.16502602873614203 1.9478726922735998 1.0 248 -Biological Process GO:0033138 positive regulation of peptidyl-serine phosphorylation 0.16493744425261014 1.9462671152641486 1.0 249 -Phenotype MP:0002346 abnormal lymph node secondary follicle morphology 0.16485218705294047 1.944721844645389 1.0 250 -Biological Process GO:0034764 positive regulation of transmembrane transport 0.16480680224071753 1.9438992535077755 1.0 251 -Biological Process GO:0043281 regulation of cysteine-type endopeptidase activity involved in apoptotic process 0.1641543597884988 1.9320738574620306 1.0 252 -Phenotype MP:0005535 abnormal body temperature 0.16394213136405655 1.9282272574091688 1.0 253 -Biological Process GO:0045861 negative regulation of proteolysis 0.16375845126996158 1.9248980904443183 1.0 254 -Phenotype MP:0011339 abnormal glomerular mesangium morphology 0.1636061783646865 1.9221381728365805 1.0 255 -Biological Process GO:1990776 response to angiotensin 0.1634864914085945 1.919968869394592 1.0 256 -Biological Process GO:0050918 positive chemotaxis 0.16295285879004373 1.910296879112796 1.0 257 -Biological Process GO:0099558 maintenance of synapse structure 0.16279905906894587 1.9075092882570472 1.0 258 -Biological Process GO:0002024 diet induced thermogenesis 0.1627888299918705 1.9073238881697485 1.0 259 -Biological Process GO:0030834 regulation of actin filament depolymerization 0.16277612252387563 1.9070935677157883 1.0 260 -Biological Process GO:0043524 negative regulation of neuron apoptotic process 0.16269249125724938 1.9055777668259175 1.0 261 -Biological Process GO:0070849 response to epidermal growth factor 0.16262380042660618 1.9043327585124568 1.0 262 -Biological Process GO:0071364 cellular response to epidermal growth factor stimulus 0.16262380042660618 1.9043327585124568 1.0 262 -Phenotype MP:0012745 abnormal neural crest cell physiology 0.16242725914100353 1.900770484884051 1.0 264 -Phenotype MP:0013647 abnormal CD11b-high dendritic cell number 0.1623506613615453 1.899382164618811 1.0 265 -Biological Process GO:0032411 positive regulation of transporter activity 0.16216201571030808 1.8959629978699255 1.0 266 -Phenotype MP:0020146 abnormal vascular endothelial cell proliferation 0.16208479326166392 1.8945633555938381 1.0 267 -Biological Process GO:0051898 negative regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction 0.16198362262886734 1.8927296570094654 1.0 268 -Phenotype MP:0011753 decreased podocyte number 0.1617454238771293 1.8884123496863057 1.0 269 -Biological Process GO:2001240 negative regulation of extrinsic apoptotic signaling pathway in absence of ligand 0.1616227828058031 1.8861895034644285 1.0 270 -Biological Process GO:1901099 negative regulation of signal transduction in absence of ligand 0.1616227828058031 1.8861895034644285 1.0 270 -Phenotype MP:0001046 abnormal enteric neuron morphology 0.16146762071033993 1.883377219830983 1.0 272 -Biological Process GO:0014047 glutamate secretion 0.16125913291427585 1.8795984179599856 1.0 273 -Biological Process GO:0030073 insulin secretion 0.16106711361178183 1.8761181044201516 1.0 274 -Phenotype MP:0002148 abnormal hypersensitivity reaction 0.16102095791777749 1.875281541196052 1.0 275 -Phenotype MP:0000836 abnormal substantia nigra morphology 0.1606255212138118 1.868114325728211 1.0 276 -Phenotype MP:0009118 increased white fat cell size 0.1604603908430262 1.8651213689899122 1.0 277 -Biological Process GO:0030833 regulation of actin filament polymerization 0.16026603290207642 1.861598668070389 1.0 278 -Biological Process GO:0034394 protein localization to cell surface 0.16026266021739077 1.8615375387983597 1.0 279 -Biological Process GO:0032956 regulation of actin cytoskeleton organization 0.16020068795451126 1.860414303254889 1.0 280 -Biological Process GO:0043270 positive regulation of monoatomic ion transport 0.16017574482219066 1.8599622136992364 1.0 281 -Phenotype MP:0001107 decreased Schwann cell number 0.16015636333616645 1.8596109279307953 1.0 282 -Biological Process GO:0002643 regulation of tolerance induction 0.16009897154600017 1.858570712588917 1.0 283 -Biological Process GO:0001938 positive regulation of endothelial cell proliferation 0.16000512259578015 1.8568697181164464 1.0 284 -Biological Process GO:0051648 vesicle localization 0.15999611700857508 1.8567064935516404 1.0 285 -Biological Process GO:0032092 positive regulation of protein binding 0.15995133140542772 1.8558947629651894 1.0 286 -Biological Process GO:2000351 regulation of endothelial cell apoptotic process 0.15994059708012487 1.8557002053493286 1.0 287 -Phenotype MP:0009481 cecum inflammation 0.15984843607231147 1.8540298045137265 1.0 288 -Biological Process GO:0043368 positive T cell selection 0.1598090498610225 1.8533159368834866 1.0 289 -Biological Process GO:0014812 muscle cell migration 0.15980118856410763 1.853173452363763 1.0 290 -Biological Process GO:0002726 positive regulation of T cell cytokine production 0.159744980412451 1.8521546902460029 1.0 291 -Biological Process GO:0048008 platelet-derived growth factor receptor signaling pathway 0.15956515495660284 1.8488953878703227 1.0 292 -Biological Process GO:0034614 cellular response to reactive oxygen species 0.15944557076576038 1.8467279470290454 1.0 293 -Biological Process GO:0006929 substrate-dependent cell migration 0.1589734296444889 1.8381704785051465 1.0 294 -Biological Process GO:0016032 viral process 0.15889033285816367 1.836664364969642 1.0 295 -Biological Process GO:0018105 peptidyl-serine phosphorylation 0.15888011559755788 1.8364791790536195 1.0 296 -Biological Process GO:0010324 membrane invagination 0.15883567148191824 1.835673637863658 1.0 297 -Phenotype MP:0004803 increased susceptibility to autoimmune diabetes 0.158599842657017 1.8313992850161749 1.0 298 -Biological Process GO:2000010 positive regulation of protein localization to cell surface 0.15803615732284648 1.8211825949478386 1.0 299 -Biological Process GO:0030832 regulation of actin filament length 0.15781529886118495 1.8171795771026324 1.0 300 -Biological Process GO:0051056 regulation of small GTPase mediated signal transduction 0.15779320516041873 1.8167791329549712 1.0 301 -Biological Process GO:0097049 motor neuron apoptotic process 0.15772676645803219 1.8155749440402027 1.0 302 -Biological Process GO:1901797 negative regulation of signal transduction by p53 class mediator 0.15762701197014173 1.8137669128144087 1.0 303 -Biological Process GO:0046637 regulation of alpha-beta T cell differentiation 0.15729977002271545 1.8078357144107229 1.0 304 -Phenotype MP:0008011 intestine polyps 0.15723770477323984 1.806710793502785 1.0 305 -Phenotype MP:0011014 decreased core body temperature 0.15723659176038163 1.8066906203552415 1.0 306 -Phenotype MP:0009120 abnormal white fat cell lipid droplet size 0.15712768394576693 1.8047166868137992 1.0 307 -Biological Process GO:0050765 negative regulation of phagocytosis 0.15700334117811854 1.8024629976679354 1.0 308 -Biological Process GO:0120162 positive regulation of cold-induced thermogenesis 0.15697666307588654 1.8019794621107847 1.0 309 -Biological Process GO:1903018 regulation of glycoprotein metabolic process 0.15693712701839346 1.8012628785464366 1.0 310 -Biological Process GO:0010559 regulation of glycoprotein biosynthetic process 0.15693712701839346 1.8012628785464366 1.0 310 -Biological Process GO:0090150 establishment of protein localization to membrane 0.15688945232169604 1.800398783685824 1.0 312 -Biological Process GO:0002040 sprouting angiogenesis 0.15677165986957042 1.798263817769906 1.0 313 -Biological Process GO:0043491 phosphatidylinositol 3-kinase/protein kinase B signal transduction 0.15665611338875884 1.7961695596592597 1.0 314 -Biological Process GO:0060142 regulation of syncytium formation by plasma membrane fusion 0.1564411078405601 1.7922726247635667 1.0 315 -Phenotype MP:0010860 abnormal anterior commissure pars posterior morphology 0.15641074771550834 1.7917223532392133 1.0 316 -Biological Process GO:1902905 positive regulation of supramolecular fiber organization 0.15629820828261276 1.789682597303302 1.0 317 -Phenotype MP:0012051 spasticity 0.15628288305685334 1.7894048304849728 1.0 318 -Biological Process GO:1902235 regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway 0.15588785472687072 1.7822450167183366 1.0 319 -Phenotype MP:0009688 abnormal spinal cord central canal morphology 0.15588329477942497 1.7821623685333352 1.0 320 -Biological Process GO:0048339 paraxial mesoderm development 0.15583503479482697 1.7812876654402237 1.0 321 -Phenotype MP:0008828 abnormal lymph node cell ratio 0.15578361781195826 1.7803557423505596 1.0 322 -Phenotype MP:0011708 decreased fibroblast cell migration 0.15577357664558555 1.780173748109206 1.0 323 -Phenotype MP:0002642 anisocytosis 0.15566694305690598 1.7782410344826987 1.0 324 -Biological Process GO:0060546 negative regulation of necroptotic process 0.1555878940623664 1.7768082864077233 1.0 325 -Phenotype MP:0002192 hydrops fetalis 0.1555563616622614 1.7762367676197497 1.0 326 -Biological Process GO:1902743 regulation of lamellipodium organization 0.1553336936455899 1.7722009519322415 1.0 327 -Biological Process GO:0032729 positive regulation of type II interferon production 0.15524068142687153 1.7705151230599816 1.0 328 -Phenotype MP:0005534 decreased body temperature 0.15502560029337686 1.766616818195096 1.0 329 -Biological Process GO:1903573 negative regulation of response to endoplasmic reticulum stress 0.15498970883812424 1.7659662923570287 1.0 330 -Biological Process GO:0045912 negative regulation of carbohydrate metabolic process 0.15494240236294266 1.7651088714417462 1.0 331 -Phenotype MP:0009446 abnormal platelet dense granule physiology 0.15490038753365698 1.7643473606074838 1.0 332 -Biological Process GO:2000116 regulation of cysteine-type endopeptidase activity 0.15480431488330515 1.7626060619907071 1.0 333 -Biological Process GO:0051783 regulation of nuclear division 0.1547029549443728 1.7607689322684283 1.0 334 -Biological Process GO:0006886 intracellular protein transport 0.1546804814684959 1.7603616047687152 1.0 335 -Biological Process GO:0002360 T cell lineage commitment 0.15463312036104204 1.759503193653831 1.0 336 -Biological Process GO:0018209 peptidyl-serine modification 0.15458729874122867 1.758672685461257 1.0 337 -Phenotype MP:0005042 abnormal level of surface class II molecules 0.15449152572573532 1.7569368176696187 1.0 338 -Biological Process GO:0030947 regulation of vascular endothelial growth factor receptor signaling pathway 0.15420074467431644 1.7516664661099786 1.0 339 -Biological Process GO:2001239 regulation of extrinsic apoptotic signaling pathway in absence of ligand 0.15413001224804368 1.7503844542618725 1.0 340 -Phenotype MP:0008202 absent B-1 B cells 0.15388764183170922 1.7459915363069167 1.0 341 -Biological Process GO:0060613 fat pad development 0.1538668502665177 1.7456146931202654 1.0 342 -Biological Process GO:0050714 positive regulation of protein secretion 0.15385832911569663 1.7454602488732949 1.0 343 -Biological Process GO:0050730 regulation of peptidyl-tyrosine phosphorylation 0.15339621490034028 1.7370845161226531 1.0 344 -Biological Process GO:1901799 negative regulation of proteasomal protein catabolic process 0.1532415359370184 1.7342809891678905 1.0 345 -Biological Process GO:0031343 positive regulation of cell killing 0.15311717789075674 1.732027023100051 1.0 346 -Biological Process GO:0002579 positive regulation of antigen processing and presentation 0.15298807277452064 1.729687017286769 1.0 347 -Biological Process GO:0071526 semaphorin-plexin signaling pathway 0.15296675263961457 1.7293005938740134 1.0 348 -Biological Process GO:0002825 regulation of T-helper 1 type immune response 0.1529550393837038 1.7290882933260356 1.0 349 -Phenotype MP:0005041 abnormal antigen presentation via MHC class II 0.15294572275000817 1.7289194311024183 1.0 350 -Biological Process GO:0051129 negative regulation of cellular component organization 0.15286613681340588 1.7274769510541121 1.0 351 -Biological Process GO:2000516 positive regulation of CD4-positive, alpha-beta T cell activation 0.15275521733618658 1.7254665565084402 1.0 352 -Phenotype MP:0008474 absent spleen germinal center 0.15265718324001754 1.723689707057208 1.0 353 -Phenotype MP:0013219 abnormal substantia nigra pars compacta morphology 0.15249162478152312 1.7206889913101535 1.0 354 -Biological Process GO:0045088 regulation of innate immune response 0.15237965776514684 1.7186596103153895 1.0 355 -Biological Process GO:0045780 positive regulation of bone resorption 0.15231125309261295 1.7174197885635372 1.0 356 -Biological Process GO:0010827 regulation of glucose transmembrane transport 0.1522910163763943 1.717053001909577 1.0 357 -Phenotype MP:0001045 abnormal enteric ganglia morphology 0.15210315739885305 1.7136480934726424 1.0 358 -Biological Process GO:0061180 mammary gland epithelium development 0.15207167088009133 1.7130774062753378 1.0 359 -Biological Process GO:0032655 regulation of interleukin-12 production 0.15205889342584733 1.7128458173338492 1.0 360 -Biological Process GO:0030835 negative regulation of actin filament depolymerization 0.15199641234988193 1.7117133596494318 1.0 361 -Phenotype MP:0012080 chylous ascites 0.1518538810728438 1.7091300072109912 1.0 362 -Phenotype MP:0002754 dilated heart right ventricle 0.1518083471126701 1.7083047127949793 1.0 363 -Phenotype MP:0003888 liver hemorrhage 0.15175840392155437 1.7073995019020898 1.0 364 -Phenotype MP:0001218 thin epidermis 0.15148848563307526 1.702507283974822 1.0 365 -Phenotype MP:0011168 abnormal fat cell differentiation 0.15130751853478874 1.6992272895458729 1.0 366 -Biological Process GO:0042327 positive regulation of phosphorylation 0.15124529202438264 1.6980994458140704 1.0 367 -Biological Process GO:0000132 establishment of mitotic spindle orientation 0.15119825714391089 1.6972469475015353 1.0 368 -Biological Process GO:0040001 establishment of mitotic spindle localization 0.15119825714391089 1.6972469475015353 1.0 368 -Phenotype MP:0008720 impaired neutrophil chemotaxis 0.15105805607811407 1.6947058297011148 1.0 370 -Phenotype MP:0002254 reproductive system inflammation 0.1509714887050334 1.693136812437083 1.0 371 -Phenotype MP:0001952 increased airway responsiveness 0.15089336461338165 1.6917208280520166 1.0 372 -Biological Process GO:0035904 aorta development 0.150887894984835 1.6916216920691156 1.0 373 -Phenotype MP:0002497 increased IgE level 0.15071583115721343 1.6885030677370345 1.0 374 -Phenotype MP:0003994 abnormal dorsal spinal root morphology 0.15071084238623478 1.6884126472066054 1.0 375 -Biological Process GO:2000177 regulation of neural precursor cell proliferation 0.15062651566407836 1.6868842413167864 1.0 376 -Biological Process GO:0050708 regulation of protein secretion 0.15061560139767005 1.6866864223024225 1.0 377 -Phenotype MP:0010751 decreased susceptibility to parasitic infection induced morbidity/mortality 0.1506050990026362 1.6864960683788206 1.0 378 -Biological Process GO:2001237 negative regulation of extrinsic apoptotic signaling pathway 0.15041227432256576 1.6830011575227404 1.0 379 -Phenotype MP:0008578 decreased circulating interferon-gamma level 0.15009512097580147 1.6772528130979298 1.0 380 -Biological Process GO:0090497 mesenchymal cell migration 0.15003273236069192 1.6761220312490372 1.0 381 -Biological Process GO:1904894 positive regulation of receptor signaling pathway via STAT 0.14997216954959858 1.675024341752612 1.0 382 -Biological Process GO:0010884 positive regulation of lipid storage 0.14989095949797782 1.6735524249267755 1.0 383 -Biological Process GO:2001257 regulation of cation channel activity 0.14985007626420865 1.6728114240472234 1.0 384 -Phenotype MP:0003893 increased hepatocyte proliferation 0.14980808482640584 1.6720503371791635 1.0 385 -Biological Process GO:0030100 regulation of endocytosis 0.14980796231306637 1.6720481166480572 1.0 386 -Biological Process GO:0071622 regulation of granulocyte chemotaxis 0.14968066927654455 1.6697409544368662 1.0 387 -Biological Process GO:0097242 amyloid-beta clearance 0.14959213464228482 1.6681362809360447 1.0 388 -Phenotype MP:0002982 abnormal primordial germ cell migration 0.14958155437330267 1.6679445155618589 1.0 389 -Phenotype MP:0000343 abnormal response to cardiac infarction 0.14938192669327333 1.6643263016182193 1.0 390 -Biological Process GO:0071692 protein localization to extracellular region 0.1493302493478772 1.6633896595069897 1.0 391 -Phenotype MP:0004220 abnormal peripheral nervous system regeneration 0.1491939478310691 1.6609192202944425 1.0 392 -Phenotype MP:0001890 anencephaly 0.14910530899282093 1.6593126581160393 1.0 393 -Biological Process GO:0002730 regulation of dendritic cell cytokine production 0.14908657392007174 1.6589730884659475 1.0 394 -Phenotype MP:0003415 priapism 0.14907323164561515 1.6587312622649335 1.0 395 -Phenotype MP:0004601 abnormal vertebral spinous process morphology 0.14905629835382428 1.6584243495539286 1.0 396 -Biological Process GO:0062099 negative regulation of programmed necrotic cell death 0.14902422418218764 1.657843011259413 1.0 397 -Biological Process GO:0060068 vagina development 0.14894797765867895 1.656461057441823 1.0 398 -Phenotype MP:0003222 increased cardiomyocyte apoptosis 0.14893699962384022 1.6562620826367185 1.0 399 -Phenotype MP:0002810 microcytic anemia 0.14892545282039116 1.656052799008127 1.0 400 -Biological Process GO:0016579 protein deubiquitination 0.14884725717141545 1.6546355176600982 1.0 401 -Phenotype MP:0001559 hyperglycemia 0.1488052314214613 1.653873808890785 1.0 402 -Phenotype MP:0008214 increased immature B cell number 0.14878058896390567 1.6534271690083788 1.0 403 -Biological Process GO:0007169 cell surface receptor protein tyrosine kinase signaling pathway 0.14871763875342314 1.652286208349569 1.0 404 -Biological Process GO:0043410 positive regulation of MAPK cascade 0.14867625467683787 1.6515361297887028 1.0 405 -Phenotype MP:0009132 abnormal white fat cell size 0.14849843572550414 1.6483131949278433 1.0 406 -Biological Process GO:0072132 mesenchyme morphogenesis 0.14844076400012507 1.6472679058131794 1.0 407 -Phenotype MP:0009108 increased pancreas weight 0.1484373775781045 1.6472065275545527 1.0 408 -Biological Process GO:0007088 regulation of mitotic nuclear division 0.14842629420276576 1.6470056434728095 1.0 409 -Biological Process GO:0042088 T-helper 1 type immune response 0.14829735395658994 1.6446686258981873 1.0 410 -Phenotype MP:0011483 renal glomerular synechia 0.14820283590296912 1.6429555040531292 1.0 411 -Phenotype MP:0020849 abnormal actin cytoskeleton morphology 0.1481759864337533 1.6424688625018085 1.0 412 -Biological Process GO:0090280 positive regulation of calcium ion import 0.14814338810242755 1.6418780239120656 1.0 413 -Biological Process GO:1904019 epithelial cell apoptotic process 0.14811450318083152 1.6413544901713324 1.0 414 -Biological Process GO:0010632 regulation of epithelial cell migration 0.1480576214247633 1.6403235191010155 1.0 415 -Phenotype MP:0008060 abnormal podocyte slit diaphragm morphology 0.14799180981662374 1.639130696150867 1.0 416 -Biological Process GO:1902904 negative regulation of supramolecular fiber organization 0.14794704232511846 1.6383192938345028 1.0 417 -Biological Process GO:0000266 mitochondrial fission 0.14784122333925664 1.6364013447299963 1.0 418 -Phenotype MP:0010352 gastrointestinal tract polyps 0.14780250964345898 1.6356996663158387 1.0 419 -Biological Process GO:0070301 cellular response to hydrogen peroxide 0.14779118709292471 1.6354944472289135 1.0 420 -Biological Process GO:0038063 collagen-activated tyrosine kinase receptor signaling pathway 0.1476342830856323 1.6326505917730225 1.0 421 -Phenotype MP:0004670 small vertebral body 0.14751230894794065 1.6304398335971297 1.0 422 -Phenotype MP:0000990 abnormal skeletal muscle mechanoreceptor morphology 0.147494232877319 1.630112208235958 1.0 423 -Phenotype MP:0004069 abnormal muscle spindle morphology 0.147494232877319 1.630112208235958 1.0 423 -Biological Process GO:0001755 neural crest cell migration 0.147476765364285 1.629795612865962 1.0 425 -Biological Process GO:0002287 alpha-beta T cell activation involved in immune response 0.14734535892843914 1.6274138960700169 1.0 426 -Biological Process GO:0099638 endosome to plasma membrane protein transport 0.14731960821492884 1.6269471692580442 1.0 427 -Biological Process GO:0046427 positive regulation of receptor signaling pathway via JAK-STAT 0.1471297726827614 1.6235064361423481 1.0 428 -Phenotype MP:0004149 increased bone strength 0.14709277423624245 1.6228358462969512 1.0 429 -Biological Process GO:0032984 protein-containing complex disassembly 0.1470792838686409 1.6225913359356945 1.0 430 -Biological Process GO:0046580 negative regulation of Ras protein signal transduction 0.14702709817302062 1.6216454800728002 1.0 431 -Biological Process GO:0099517 synaptic vesicle transport along microtubule 0.1468908534836343 1.6191760708465244 1.0 432 -Biological Process GO:0048490 anterograde synaptic vesicle transport 0.1468908534836343 1.6191760708465244 1.0 432 -Biological Process GO:0099514 synaptic vesicle cytoskeletal transport 0.1468908534836343 1.6191760708465244 1.0 432 -Phenotype MP:0004918 abnormal negative T cell selection 0.1468238158455285 1.6179610263351252 1.0 435 -Phenotype MP:0020949 increased susceptibility to Coronaviridae infection 0.14682380886398594 1.6179608997959867 1.0 436 -Biological Process GO:0032736 positive regulation of interleukin-13 production 0.14681917515833287 1.617876914757428 1.0 437 -Biological Process GO:0003149 membranous septum morphogenesis 0.1467796379329417 1.6171603100251475 1.0 438 -Biological Process GO:0045059 positive thymic T cell selection 0.14671860843330875 1.61605416188721 1.0 439 -Biological Process GO:0033077 T cell differentiation in thymus 0.146468688838284 1.6115244164963185 1.0 440 -Biological Process GO:0048771 tissue remodeling 0.1464578472165433 1.6113279141528154 1.0 441 -Biological Process GO:0070848 response to growth factor 0.1463862468028443 1.6100301701967765 1.0 442 -Phenotype MP:0008127 decreased dendritic cell number 0.14638188386576845 1.6099510927874678 1.0 443 -Biological Process GO:1900077 negative regulation of cellular response to insulin stimulus 0.1463152546557075 1.6087434509571323 1.0 444 -Biological Process GO:0150116 regulation of cell-substrate junction organization 0.14627665539308987 1.6080438466227196 1.0 445 -Phenotype MP:0008122 decreased myeloid dendritic cell number 0.14624974277661318 1.6075560605392392 1.0 446 -Biological Process GO:0043405 regulation of MAP kinase activity 0.14597091184869382 1.602502302707823 1.0 447 -Biological Process GO:1903426 regulation of reactive oxygen species biosynthetic process 0.14584103311157393 1.6001482751623421 1.0 448 -Phenotype MP:0000811 hippocampal neuron degeneration 0.1457873370496331 1.5991750441955528 1.0 449 -Biological Process GO:0150146 cell junction disassembly 0.14574919251991714 1.5984836818089763 1.0 450 -Biological Process GO:0055057 neuroblast division 0.1457409238378664 1.5983338135107168 1.0 451 -Phenotype MP:0000371 diluted coat color 0.14563304049409198 1.5963784483094896 1.0 452 -Phenotype MP:0006060 increased cerebral infarct size 0.1456225081311695 1.5961875512235746 1.0 453 -Phenotype MP:0005282 decreased fatty acids level 0.14554792506279235 1.5948357472156236 1.0 454 -Biological Process GO:0106015 negative regulation of inflammatory response to wounding 0.1454976347266842 1.5939242443854045 1.0 455 -Phenotype MP:0003255 bile duct proliferation 0.1454862908461333 1.5937186386959616 1.0 456 -Phenotype MP:0005661 decreased circulating adrenaline level 0.14546194085229913 1.5932772996631916 1.0 457 -Biological Process GO:0046324 regulation of glucose import 0.14538781037157378 1.5919336987208286 1.0 458 -Phenotype MP:0002455 abnormal dendritic cell antigen presentation 0.1452619900473786 1.5896532291420142 1.0 459 -Biological Process GO:0019884 antigen processing and presentation of exogenous antigen 0.14522573250183257 1.5889960679866195 1.0 460 -Phenotype MP:0002376 abnormal dendritic cell physiology 0.14510498268176542 1.5868075003361077 1.0 461 -Biological Process GO:2000562 negative regulation of CD4-positive, alpha-beta T cell proliferation 0.1450640237543792 1.5860651275240634 1.0 462 -Phenotype MP:0020001 decreased response to antigen 0.1450028696374508 1.584956720721215 1.0 463 -Phenotype MP:0011426 abnormal ureter smooth muscle morphology 0.14499519581238685 1.5848176340933318 1.0 464 -Biological Process GO:0046474 glycerophospholipid biosynthetic process 0.14497644383965502 1.584477758134251 1.0 465 -Biological Process GO:0032232 negative regulation of actin filament bundle assembly 0.1448985955562806 1.583066772722046 1.0 466 -Phenotype MP:0010964 increased compact bone volume 0.14485407870148292 1.5822599131486028 1.0 467 -Biological Process GO:0098780 response to mitochondrial depolarisation 0.14474073566309964 1.580205592015218 1.0 468 -Phenotype MP:0020349 abnormal dendritic cell migration 0.14471835412590428 1.579799930886719 1.0 469 -Biological Process GO:0043372 positive regulation of CD4-positive, alpha-beta T cell differentiation 0.14470945619005937 1.579638657482455 1.0 470 -Phenotype MP:0003037 increased myocardial infarct size 0.144691321817769 1.5793099754145647 1.0 471 -Phenotype MP:0005189 abnormal anogenital distance 0.14466440402523884 1.578822095516094 1.0 472 -Phenotype MP:0008182 decreased marginal zone B cell number 0.1446458689895529 1.5784861514999393 1.0 473 -Biological Process GO:2000514 regulation of CD4-positive, alpha-beta T cell activation 0.14461363989460008 1.5779020052496195 1.0 474 -Biological Process GO:0050709 negative regulation of protein secretion 0.14456409769222311 1.5770040622017787 1.0 475 -Phenotype MP:0010493 abnormal atrium myocardium morphology 0.1445588329161206 1.5769086391306821 1.0 476 -Biological Process GO:0071363 cellular response to growth factor stimulus 0.1445440755175813 1.576641164073321 1.0 477 -Phenotype MP:0003221 abnormal cardiomyocyte apoptosis 0.14450466567093712 1.575926868056738 1.0 478 -Biological Process GO:0072657 protein localization to membrane 0.14448733023273486 1.5756126665180872 1.0 479 -Phenotype MP:0002831 absent Peyer's patches 0.1442541202715364 1.5713857800798943 1.0 480 -Phenotype MP:0006309 decreased retina ganglion cell number 0.14412610832270334 1.5690655877190347 1.0 481 -Biological Process GO:0006897 endocytosis 0.14408008402708095 1.5682314060657556 1.0 482 -Biological Process GO:0034121 regulation of toll-like receptor signaling pathway 0.1439507001302447 1.5658863474068234 1.0 483 -Phenotype MP:0011081 decreased macrophage apoptosis 0.14391094530354398 1.565165798691964 1.0 484 -Biological Process GO:2000179 positive regulation of neural precursor cell proliferation 0.14373444984802208 1.5619668519423728 1.0 485 -Biological Process GO:0003281 ventricular septum development 0.14373136488239968 1.5619109375239464 1.0 486 -Biological Process GO:2000273 positive regulation of signaling receptor activity 0.1437181345098142 1.5616711395231815 1.0 487 -Biological Process GO:0097581 lamellipodium organization 0.14369302492634295 1.5612160330719056 1.0 488 -Phenotype MP:0008827 abnormal thymus cell ratio 0.14368050389078135 1.5609890916705371 1.0 489 -Biological Process GO:0060485 mesenchyme development 0.1436126542787065 1.5597593302845227 1.0 490 -Phenotype MP:0011267 abnormal excitatory postsynaptic current amplitude 0.14356795986756288 1.5589492525358914 1.0 491 -Phenotype MP:0009292 increased inguinal fat pad weight 0.14352736470401573 1.5582134728746289 1.0 492 -Phenotype MP:0009254 disorganized pancreatic islets 0.14349457874639726 1.5576192335938175 1.0 493 -Biological Process GO:0060982 coronary artery morphogenesis 0.143412781407375 1.5561366722949064 1.0 494 -Phenotype MP:0009122 decreased white fat cell lipid droplet size 0.1433563560320239 1.5551139730387686 1.0 495 -Biological Process GO:0050768 negative regulation of neurogenesis 0.14330807241389754 1.5542388415924258 1.0 496 -Biological Process GO:0001934 positive regulation of protein phosphorylation 0.14312017525160292 1.5508332410640584 1.0 497 -Phenotype MP:0011732 decreased somite size 0.14310133463017538 1.5504917583641344 1.0 498 -Biological Process GO:0030335 positive regulation of cell migration 0.14308915381491172 1.550270983391318 1.0 499 -Phenotype MP:0010967 increased compact bone area 0.14285306257119146 1.5459918742523735 1.0 500 -Biological Process GO:0051294 establishment of spindle orientation 0.1428321203330014 1.5456123001461217 1.0 501 -Biological Process GO:0030323 respiratory tube development 0.14273993438508903 1.5439414472759427 1.0 502 -Biological Process GO:1900242 regulation of synaptic vesicle endocytosis 0.14273709775696808 1.5438900339277606 1.0 503 -Phenotype MP:0004148 increased compact bone thickness 0.14267343190604231 1.5427361024212711 1.0 504 -Phenotype MP:0031230 abnormal circulating angiotensin II level 0.14265878092275308 1.5424705561201901 1.0 505 -Phenotype MP:0031217 increased susceptibility to myocardial ischemic injury 0.14262999350260686 1.5419487895747934 1.0 506 -Biological Process GO:1902253 regulation of intrinsic apoptotic signaling pathway by p53 class mediator 0.14260014608756366 1.541407810822373 1.0 507 -Biological Process GO:0001889 liver development 0.14260012989652748 1.5414075173629045 1.0 508 -Phenotype MP:0011310 abnormal kidney capillary morphology 0.14257468376103288 1.5409463109698593 1.0 509 -Phenotype MP:0014144 abnormal white adipose tissue mass 0.14256639644290137 1.5407961048961605 1.0 510 -Biological Process GO:0045937 positive regulation of phosphate metabolic process 0.14254395782999207 1.5403894092811414 1.0 511 -Biological Process GO:0010562 positive regulation of phosphorus metabolic process 0.14254395782999207 1.5403894092811414 1.0 511 -Biological Process GO:0003279 cardiac septum development 0.1425215684061505 1.5399836052086713 1.0 513 -Biological Process GO:0035020 regulation of Rac protein signal transduction 0.1424749861772241 1.5391393111197829 1.0 514 -Biological Process GO:0070254 mucus secretion 0.14220463477378353 1.5342392430657568 1.0 515 -Biological Process GO:0032606 type I interferon production 0.14215114760179592 1.5332697981898609 1.0 516 -Phenotype MP:0008189 increased transitional stage B cell number 0.14209849032303823 1.532315394971794 1.0 517 -Phenotype MP:0013622 abnormal femur compact bone thickness 0.14207147013032073 1.5318256590892958 1.0 518 -Biological Process GO:0090068 positive regulation of cell cycle process 0.1420373306861038 1.5312068881198808 1.0 519 -Biological Process GO:0052547 regulation of peptidase activity 0.14202682512267117 1.5310164767696506 1.0 520 -Biological Process GO:0051668 localization within membrane 0.14198207874974222 1.5302054572234882 1.0 521 -Biological Process GO:0099170 postsynaptic modulation of chemical synaptic transmission 0.14193768594599754 1.529400846051918 1.0 522 -Biological Process GO:0050798 activated T cell proliferation 0.1418942792297252 1.5286141075292787 1.0 523 -Biological Process GO:0051495 positive regulation of cytoskeleton organization 0.14186652190971538 1.5281110113540248 1.0 524 -Phenotype MP:0008641 increased circulating interleukin-1 beta level 0.14178128223868347 1.5265660584385095 1.0 525 -Phenotype MP:0011090 perinatal lethality, incomplete penetrance 0.1417622183182906 1.5262205284870731 1.0 526 -Biological Process GO:0030837 negative regulation of actin filament polymerization 0.14171383641747248 1.5253436156855307 1.0 527 -Biological Process GO:0002286 T cell activation involved in immune response 0.14158716338073263 1.523047690853123 1.0 528 -Biological Process GO:0010763 positive regulation of fibroblast migration 0.1415854278643882 1.5230162349476302 1.0 529 -Phenotype MP:0004215 abnormal myocardial fiber physiology 0.1415557809376271 1.5224788900074027 1.0 530 -Phenotype MP:0010331 abnormal apolipoprotein level 0.14154924736512653 1.5223604702415672 1.0 531 -Phenotype MP:0000321 increased bone marrow cell number 0.14154515660474587 1.52228632598338 1.0 532 -Biological Process GO:0045017 glycerolipid biosynthetic process 0.14146657185540412 1.52086199226481 1.0 533 -Phenotype MP:0001601 abnormal myelopoiesis 0.14144135174688754 1.5204048825679914 1.0 534 -Phenotype MP:0011506 glomerular crescent 0.14133381780397092 1.5184558501912273 1.0 535 -Phenotype MP:0008594 decreased circulating interleukin-10 level 0.14128860370721408 1.5176363532391484 1.0 536 -Phenotype MP:0008124 decreased plasmacytoid dendritic cell number 0.14124529953563525 1.516851473319684 1.0 537 -Biological Process GO:0045089 positive regulation of innate immune response 0.14117433772278298 1.5155653038832098 1.0 538 -Phenotype MP:0009843 decreased neural crest cell number 0.14116886624575686 1.5154661343969675 1.0 539 -Phenotype MP:0011320 abnormal glomerular capillary morphology 0.1411469613821148 1.5150691128864657 1.0 540 -Phenotype MP:0001553 abnormal circulating free fatty acids level 0.14113296614868054 1.5148154519274801 1.0 541 -Phenotype MP:0009295 decreased interscapular fat pad weight 0.14093383991562913 1.5112063266154736 1.0 542 -Biological Process GO:0010721 negative regulation of cell development 0.140878767509933 1.5102081496784365 1.0 543 -Biological Process GO:0032008 positive regulation of TOR signaling 0.14087499618785826 1.5101397951791267 1.0 544 -Biological Process GO:0061008 hepaticobiliary system development 0.14083913699231987 1.509489854042278 1.0 545 -Phenotype MP:0004130 abnormal muscle cell glucose uptake 0.14083231592897694 1.5093662235593 1.0 546 -Biological Process GO:0001963 synaptic transmission, dopaminergic 0.1407377642432477 1.5076524921386378 1.0 547 -Biological Process GO:0060612 adipose tissue development 0.1406507443241073 1.506075272562866 1.0 548 -Biological Process GO:0071542 dopaminergic neuron differentiation 0.14059234272727594 1.5050167546661748 1.0 549 -Biological Process GO:0099171 presynaptic modulation of chemical synaptic transmission 0.14045971505372767 1.5026129031678541 1.0 550 -Biological Process GO:0045136 development of secondary sexual characteristics 0.1404412132698496 1.5022775618344277 1.0 551 -Phenotype MP:0010358 abnormal free fatty acids level 0.14038523972937123 1.5012630519999 1.0 552 -Phenotype MP:0002531 abnormal type I hypersensitivity reaction 0.14036675045132885 1.5009279373323803 1.0 553 -Biological Process GO:0030217 T cell differentiation 0.14033605989712516 1.5003716768421445 1.0 554 -Biological Process GO:0045806 negative regulation of endocytosis 0.14026102971810472 1.4990117690383487 1.0 555 -Phenotype MP:0001201 translucent skin 0.14017821525343888 1.4975107725295231 1.0 556 -Phenotype MP:0020316 decreased vascular endothelial cell proliferation 0.14010831658340073 1.4962438723554754 1.0 557 -Biological Process GO:0042330 taxis 0.14006710453497195 1.4954969117724088 1.0 558 -Phenotype MP:0008618 decreased circulating interleukin-12 level 0.13996587503199465 1.493662146177145 1.0 559 -Phenotype MP:0009131 decreased white fat cell number 0.13995279313964315 1.4934250393525383 1.0 560 -Phenotype MP:0008463 abnormal peripheral lymph node morphology 0.1399065534201257 1.4925869531819058 1.0 561 -Phenotype MP:0012307 impaired spatial learning 0.13990124467642695 1.4924907332064434 1.0 562 -Biological Process GO:1903051 negative regulation of proteolysis involved in protein catabolic process 0.13989759328787754 1.4924245524795965 1.0 563 -Biological Process GO:0061098 positive regulation of protein tyrosine kinase activity 0.13976404501313577 1.490004015258763 1.0 564 -Phenotype MP:0013280 abnormal cytotoxic T cell cytolysis 0.13975095451472141 1.4897667524508946 1.0 565 -Phenotype MP:0011441 decreased kidney cell proliferation 0.1397059544063397 1.4889511339976418 1.0 566 -Biological Process GO:0046578 regulation of Ras protein signal transduction 0.1396434306449864 1.4878179026486422 1.0 567 -Biological Process GO:0042632 cholesterol homeostasis 0.13956376942915738 1.4863740581785894 1.0 568 -Phenotype MP:0005087 decreased acute inflammation 0.139356646974923 1.4826200028700194 1.0 569 -Phenotype MP:0009283 decreased gonadal fat pad weight 0.13924578678802868 1.4806106829502739 1.0 570 -Biological Process GO:0046879 hormone secretion 0.13914687903602363 1.478817998652254 1.0 571 -Biological Process GO:0007528 neuromuscular junction development 0.13889369575524557 1.474229099574366 1.0 572 -Biological Process GO:0030072 peptide hormone secretion 0.13885058253982052 1.4734476806990722 1.0 573 -Biological Process GO:1904951 positive regulation of establishment of protein localization 0.1387270094312858 1.4712079414790729 1.0 574 -Biological Process GO:0120161 regulation of cold-induced thermogenesis 0.1387020912137219 1.470756303498673 1.0 575 -Phenotype MP:0009429 decreased embryo weight 0.13865160621610584 1.4698412724654406 1.0 576 -Biological Process GO:0051494 negative regulation of cytoskeleton organization 0.1385675114563525 1.4683170708503046 1.0 577 -Phenotype MP:0008078 increased CD8-positive, alpha-beta T cell number 0.13852868067050084 1.4676132702010645 1.0 578 -Phenotype MP:0013887 abnormal T cell compartment 0.13844165999819302 1.4660360369742758 1.0 579 -Phenotype MP:0003944 abnormal T cell subpopulation ratio 0.13844165999819302 1.4660360369742758 1.0 579 -Phenotype MP:0008681 increased interleukin-17 secretion 0.1384227049421458 1.4656924801685143 1.0 581 -Biological Process GO:0034599 cellular response to oxidative stress 0.13840846950881402 1.4654344656318163 1.0 582 -Biological Process GO:0002718 regulation of cytokine production involved in immune response 0.13839284068134372 1.4651511960898997 1.0 583 -Biological Process GO:0009266 response to temperature stimulus 0.13835899555993392 1.464537759665697 1.0 584 -Biological Process GO:0002833 positive regulation of response to biotic stimulus 0.13832984376073187 1.4640093888188308 1.0 585 -Biological Process GO:0048010 vascular endothelial growth factor receptor signaling pathway 0.13823899196741873 1.4623627172484257 1.0 586 -Biological Process GO:0048285 organelle fission 0.13820738550145095 1.4617898560306979 1.0 587 -Biological Process GO:0034381 plasma lipoprotein particle clearance 0.13819004236067567 1.4614755148843677 1.0 588 -Biological Process GO:2000106 regulation of leukocyte apoptotic process 0.13810739425554708 1.4599775336106902 1.0 589 -Phenotype MP:0009117 abnormal white fat cell morphology 0.13806047616443828 1.4591271520832696 1.0 590 -Phenotype MP:0010334 pleural effusion 0.13804039555994796 1.4587631949248587 1.0 591 -Biological Process GO:0046488 phosphatidylinositol metabolic process 0.13799548478421353 1.4579491956089419 1.0 592 -Biological Process GO:1903829 positive regulation of protein localization 0.13790169663049823 1.4562493030616206 1.0 593 -Biological Process GO:0051701 biological process involved in interaction with host 0.13777293145150327 1.4539154585465397 1.0 594 -Biological Process GO:1900182 positive regulation of protein localization to nucleus 0.13771862348721786 1.452931136965488 1.0 595 -Biological Process GO:0071333 cellular response to glucose stimulus 0.1376905961225623 1.4524231462821051 1.0 596 -Biological Process GO:2001233 regulation of apoptotic signaling pathway 0.13765711147430637 1.4518162433656376 1.0 597 -Phenotype MP:0009844 abnormal neural crest cell apoptosis 0.1376409434777841 1.4515232014866308 1.0 598 -Biological Process GO:2000147 positive regulation of cell motility 0.13752912294051467 1.449496475397974 1.0 599 -Biological Process GO:0045663 positive regulation of myoblast differentiation 0.1374647200211767 1.4483291846659199 1.0 600 -Biological Process GO:0055092 sterol homeostasis 0.13740724071375243 1.4472873830902933 1.0 601 -Biological Process GO:0032869 cellular response to insulin stimulus 0.13735821427563932 1.446398788172185 1.0 602 -Biological Process GO:1900117 regulation of execution phase of apoptosis 0.13734188977189654 1.4461029096294074 1.0 603 -Phenotype MP:0011509 dilated glomerular capillary 0.1373090953869438 1.4455085176047562 1.0 604 -Biological Process GO:0048013 ephrin receptor signaling pathway 0.1373081163985238 1.4454907736248062 1.0 605 -Phenotype MP:0008502 increased IgG3 level 0.13723177823008315 1.4441071587601577 1.0 606 -Biological Process GO:0002327 immature B cell differentiation 0.13710277184538378 1.441768942437305 1.0 607 -Biological Process GO:0002507 tolerance induction 0.13710217978647088 1.4417582114814889 1.0 608 -Phenotype MP:0009535 abnormal skin sebaceous gland morphology 0.1370483899869983 1.440783281539666 1.0 609 -Phenotype MP:0005663 abnormal circulating noradrenaline level 0.13687733122705914 1.4376828738692338 1.0 610 -Biological Process GO:0042074 cell migration involved in gastrulation 0.13681537826506118 1.4365599881505908 1.0 611 -Biological Process GO:0048193 Golgi vesicle transport 0.13679427795809795 1.4361775490777215 1.0 612 -Biological Process GO:0030048 actin filament-based movement 0.13672386795212188 1.4349013810365114 1.0 613 -Phenotype MP:0002494 increased IgM level 0.13670320602333863 1.4345268874852413 1.0 614 -Phenotype MP:0003288 intestinal edema 0.13670074769214324 1.4344823306972851 1.0 615 -Biological Process GO:0060444 branching involved in mammary gland duct morphogenesis 0.1366968315349164 1.4344113510882373 1.0 616 -Biological Process GO:0098801 regulation of renal system process 0.1366498090945638 1.433559078250509 1.0 617 -Phenotype MP:0005616 decreased susceptibility to type IV hypersensitivity reaction 0.13660866025134588 1.4328132632499344 1.0 618 -Phenotype MP:0011279 decreased ear pigmentation 0.13657723152014345 1.4322436234412124 1.0 619 -Phenotype MP:0001092 abnormal trigeminal ganglion morphology 0.136546927824867 1.4316943746958632 1.0 620 -Phenotype MP:0020183 abnormal susceptibility to fungal infection 0.13651724133297238 1.4311563126450744 1.0 621 -Phenotype MP:0010398 decreased liver glycogen level 0.13650335171690187 1.4309045659808304 1.0 622 -Phenotype MP:0004784 abnormal anterior cardinal vein morphology 0.1364042189986302 1.4291078042117777 1.0 623 -Biological Process GO:0071326 cellular response to monosaccharide stimulus 0.1363864266404219 1.4287853210844375 1.0 624 -Biological Process GO:0071331 cellular response to hexose stimulus 0.1363864266404219 1.4287853210844375 1.0 624 -Biological Process GO:0045622 regulation of T-helper cell differentiation 0.13636995679802577 1.4284868083060571 1.0 626 -Phenotype MP:0005558 decreased creatinine clearance 0.1363494243266984 1.4281146611466893 1.0 627 -Biological Process GO:0032732 positive regulation of interleukin-1 production 0.13633713262989056 1.4278918764668564 1.0 628 -Phenotype MP:0005079 decreased cytotoxic T cell cytolysis 0.1363154780468222 1.4274993912444158 1.0 629 -Biological Process GO:0099024 plasma membrane invagination 0.1361829951066318 1.425098163010832 1.0 630 -Biological Process GO:0042509 regulation of tyrosine phosphorylation of STAT protein 0.13617965631895568 1.4250376481156892 1.0 631 -Phenotype MP:0000172 abnormal bone marrow cell number 0.13617515646581269 1.4249560891285593 1.0 632 -Biological Process GO:0048712 negative regulation of astrocyte differentiation 0.13617104602275754 1.4248815881256196 1.0 633 -Biological Process GO:0010828 positive regulation of glucose transmembrane transport 0.13613132245371617 1.4241616059499242 1.0 634 -Biological Process GO:0030162 regulation of proteolysis 0.1361144806594815 1.4238563516148197 1.0 635 -Biological Process GO:0030324 lung development 0.13597362287368897 1.4213033308886869 1.0 636 -Phenotype MP:0003875 abnormal hair follicle regression 0.13596830052861353 1.4212068643908444 1.0 637 -Biological Process GO:0043369 CD4-positive or CD8-positive, alpha-beta T cell lineage commitment 0.13592629838383818 1.4204455834609324 1.0 638 -Phenotype MP:0000491 crypts of Lieberkuhn abscesses 0.13591651002583716 1.4202681713235001 1.0 639 -Biological Process GO:0097398 cellular response to interleukin-17 0.13591446360158588 1.4202310802709994 1.0 640 -Phenotype MP:0003266 biliary cyst 0.1358922264631638 1.419828036342955 1.0 641 -Biological Process GO:0051961 negative regulation of nervous system development 0.13580006295214064 1.4181575901371497 1.0 642 -Phenotype MP:0003076 increased susceptibility to ischemic brain injury 0.13573888571380532 1.4170487642631742 1.0 643 -Phenotype MP:0008563 decreased interferon-alpha secretion 0.13563181358325105 1.4151081021481322 1.0 644 -Phenotype MP:0014436 decreased interferon level 0.13561163450159275 1.4147423601096776 1.0 645 -Phenotype MP:0003394 increased cardiac output 0.13555398262816598 1.4136974308078942 1.0 646 -Phenotype MP:0004882 enlarged lung 0.13554795261754604 1.4135881380059034 1.0 647 -Biological Process GO:0032273 positive regulation of protein polymerization 0.13552480121517207 1.4131685232166518 1.0 648 -Biological Process GO:0051321 meiotic cell cycle 0.1354167650124667 1.4112103874762123 1.0 649 -Phenotype MP:0005568 increased circulating total protein level 0.13531882184682886 1.4094351861236598 1.0 650 -Biological Process GO:0033135 regulation of peptidyl-serine phosphorylation 0.1352796794955594 1.4087257384101506 1.0 651 -Biological Process GO:0000165 MAPK cascade 0.13523020535253472 1.4078290289251971 1.0 652 -Phenotype MP:0003405 abnormal platelet shape 0.13518758055268 1.4070564624897381 1.0 653 -Phenotype MP:0008702 increased interleukin-5 secretion 0.13507331528875088 1.404985426192762 1.0 654 -Biological Process GO:0060412 ventricular septum morphogenesis 0.13504017093969756 1.4043846911349784 1.0 655 -Biological Process GO:0002829 negative regulation of type 2 immune response 0.1350188628697756 1.403998486397778 1.0 656 -Biological Process GO:0043542 endothelial cell migration 0.1350038424800557 1.4037262446750096 1.0 657 -Biological Process GO:0045807 positive regulation of endocytosis 0.13499760063599975 1.4036131124320563 1.0 658 -Phenotype MP:0020518 renal glomerular protein deposits 0.1349339970685952 1.402460309802609 1.0 659 -Biological Process GO:1903421 regulation of synaptic vesicle recycling 0.1348846641785041 1.4015661605003604 1.0 660 -Phenotype MP:0005248 abnormal Harderian gland morphology 0.13479945691699113 1.4000217950012461 1.0 661 -Biological Process GO:0061298 retina vasculature development in camera-type eye 0.13478919307879178 1.39983576487515 1.0 662 -Phenotype MP:0009124 increased brown fat cell lipid droplet size 0.13477915073647995 1.399653749320122 1.0 663 -Phenotype MP:0011402 renal cast 0.13477316555197205 1.3995452689829337 1.0 664 -Biological Process GO:0051656 establishment of organelle localization 0.13471137540546163 1.398425334264208 1.0 665 -Phenotype MP:0014062 nervous system inclusion bodies 0.13470989480180018 1.3983984986028803 1.0 666 -Biological Process GO:1904646 cellular response to amyloid-beta 0.13461916699374366 1.3967540742418012 1.0 667 -Phenotype MP:0001475 reduced long-term depression 0.13461416488307698 1.3966634119320498 1.0 668 -Phenotype MP:0009517 abnormal salivary gland duct morphology 0.13459723758622755 1.3963566078782244 1.0 669 -Biological Process GO:0002295 T-helper cell lineage commitment 0.13457767203272042 1.3960019859214692 1.0 670 -Phenotype MP:0020173 abnormal IgE level 0.13452427350962948 1.3950341477900587 1.0 671 -Biological Process GO:0051170 import into nucleus 0.134473271841707 1.3941097522052435 1.0 672 -Biological Process GO:0060544 regulation of necroptotic process 0.1343979629565767 1.3927447929059202 1.0 673 -Phenotype MP:0011523 thin placenta labyrinth 0.13438390580945747 1.3924900097731048 1.0 674 -Phenotype MP:0000414 alopecia 0.1343431261840511 1.391750886775532 1.0 675 -Biological Process GO:2000114 regulation of establishment of cell polarity 0.13429204620696222 1.3908250718518875 1.0 676 -Phenotype MP:0020378 abnormal cell cytoskeleton morphology 0.13419581169493855 1.3890808395229228 1.0 677 -Biological Process GO:0060425 lung morphogenesis 0.13414081396826838 1.3880840161291066 1.0 678 -Biological Process GO:0046326 positive regulation of glucose import 0.13409963071568165 1.3873375774652308 1.0 679 -Biological Process GO:0009914 hormone transport 0.13409763463234137 1.3873013988322205 1.0 680 -Phenotype MP:0004696 abnormal thyroid follicle morphology 0.13401717062326235 1.385843003886349 1.0 681 -Phenotype MP:0008346 increased gamma-delta T cell number 0.1340084527719575 1.385684994480313 1.0 682 -Biological Process GO:0051224 negative regulation of protein transport 0.13400740102124464 1.385665931697567 1.0 683 -Phenotype MP:0005491 pancreatic islet hyperplasia 0.13388002332127957 1.3833572349774799 1.0 684 -Phenotype MP:0000574 abnormal foot pad morphology 0.1338707492364719 1.3831891439444095 1.0 685 -Phenotype MP:0005546 choroidal neovascularization 0.13386998226896607 1.3831752428034276 1.0 686 -Biological Process GO:0043370 regulation of CD4-positive, alpha-beta T cell differentiation 0.13381871169423654 1.382245973333595 1.0 687 -Phenotype MP:0008701 abnormal interleukin-5 secretion 0.13377860644032713 1.3815190731918565 1.0 688 -Biological Process GO:0043473 pigmentation 0.1336892078923061 1.379898741417509 1.0 689 -Biological Process GO:0048041 focal adhesion assembly 0.13367773060874188 1.3796907178236817 1.0 690 -Phenotype MP:0008136 enlarged Peyer's patches 0.13353078327262913 1.3770273251497513 1.0 691 -Biological Process GO:0000045 autophagosome assembly 0.13351073749664488 1.3766639992514258 1.0 692 -Phenotype MP:0010601 thick pulmonary valve 0.13350762699169472 1.3766076219375143 1.0 693 -Phenotype MP:0000533 kidney hemorrhage 0.13350275213624907 1.3765192661045753 1.0 694 -Biological Process GO:2000107 negative regulation of leukocyte apoptotic process 0.13348378667402683 1.3761755206888595 1.0 695 -Biological Process GO:0007249 canonical NF-kappaB signal transduction 0.13338049496817184 1.3743033780564755 1.0 696 -Biological Process GO:0001936 regulation of endothelial cell proliferation 0.13335110161546915 1.3737706290980969 1.0 697 -Biological Process GO:0052548 regulation of endopeptidase activity 0.1333190389611868 1.3731894995534493 1.0 698 -Phenotype MP:0001574 abnormal oxygen level 0.13330450248182957 1.372926028614479 1.0 699 -Phenotype MP:0005252 abnormal Meibomian gland morphology 0.1332716364508173 1.3723303380185499 1.0 700 -Biological Process GO:0031648 protein destabilization 0.13311745739944925 1.369535871873399 1.0 701 -Phenotype MP:0000575 increased foot pad pigmentation 0.1331002271381745 1.3692235766466663 1.0 702 -Phenotype MP:0011277 decreased tail pigmentation 0.1330992271513618 1.3692054520748203 1.0 703 -Biological Process GO:0002363 alpha-beta T cell lineage commitment 0.13309382353097976 1.3691075124774181 1.0 704 -Biological Process GO:0071322 cellular response to carbohydrate stimulus 0.13301832662716073 1.3677391453749228 1.0 705 -Phenotype MP:0000134 abnormal compact bone thickness 0.13300215005842098 1.3674459481260952 1.0 706 -Biological Process GO:0030101 natural killer cell activation 0.1329531922272884 1.366558596696533 1.0 707 -Phenotype MP:0020916 increased susceptibility to Herpesvirales infection 0.13294559261050576 1.3664208550797128 1.0 708 -Biological Process GO:0001935 endothelial cell proliferation 0.13292468106588218 1.366041837288548 1.0 709 -Phenotype MP:0002702 decreased circulating free fatty acids level 0.1328877598652285 1.3653726475098489 1.0 710 -Biological Process GO:0046641 positive regulation of alpha-beta T cell proliferation 0.1328806108258671 1.3652430725235685 1.0 711 -Biological Process GO:0090162 establishment of epithelial cell polarity 0.13283507319675525 1.3644177116087464 1.0 712 -Biological Process GO:0034331 cell junction maintenance 0.13281595524716971 1.3640712023884118 1.0 713 -Biological Process GO:1904892 regulation of receptor signaling pathway via STAT 0.13279538750726183 1.3636984159926928 1.0 714 -Biological Process GO:1902903 regulation of supramolecular fiber organization 0.13278042600849616 1.3634272416573314 1.0 715 -Phenotype MP:0000662 abnormal branching of the mammary ductal tree 0.13277933006626874 1.3634073779117424 1.0 716 -Phenotype MP:0004261 abnormal embryonic neuroepithelium morphology 0.13275104884702993 1.3628947861620513 1.0 717 -Biological Process GO:0006935 chemotaxis 0.13262037746412547 1.3605263920616435 1.0 718 -Phenotype MP:0000382 underdeveloped hair follicles 0.13259504644274966 1.3600672720902294 1.0 719 -Phenotype MP:0005665 increased circulating noradrenaline level 0.13251282166342415 1.358576963516666 1.0 720 -Phenotype MP:0011409 increased renal glomerulus basement membrane thickness 0.13247557216825112 1.3579018234618963 1.0 721 -Biological Process GO:0060693 regulation of branching involved in salivary gland morphogenesis 0.13235610831242717 1.3557365636700696 1.0 722 -Phenotype MP:0003212 increased susceptibility to age related obesity 0.13234669547334088 1.3555659577419426 1.0 723 -Biological Process GO:0051222 positive regulation of protein transport 0.13229961391122647 1.3547126133334635 1.0 724 -Biological Process GO:0006605 protein targeting 0.13221551597507442 1.3531883541467018 1.0 725 -Biological Process GO:1905037 autophagosome organization 0.13217472171024247 1.3524489658123096 1.0 726 -Biological Process GO:0046850 regulation of bone remodeling 0.13210099523740693 1.3511126874365367 1.0 727 -Biological Process GO:0038065 collagen-activated signaling pathway 0.13209949515067387 1.3510854986482213 1.0 728 -Biological Process GO:0048311 mitochondrion distribution 0.13207806799802202 1.3506971355590645 1.0 729 -Phenotype MP:0005660 abnormal circulating adrenaline level 0.13204386425873205 1.3500771992536111 1.0 730 -Biological Process GO:0045648 positive regulation of erythrocyte differentiation 0.13204190185774933 1.3500416311069612 1.0 731 -Phenotype MP:0011202 abnormal ectoplacental cavity morphology 0.1320088937119891 1.3494433647081039 1.0 732 -Biological Process GO:0014044 Schwann cell development 0.13194138830050306 1.3482198418926608 1.0 733 -Phenotype MP:0000494 abnormal cecum morphology 0.1319375882205136 1.3481509661615858 1.0 734 -Biological Process GO:0006911 phagocytosis, engulfment 0.13193038675584035 1.3480204409764434 1.0 735 -Phenotype MP:0011269 increased excitatory postsynaptic current amplitude 0.13187384434990346 1.3469956205630733 1.0 736 -Biological Process GO:0042177 negative regulation of protein catabolic process 0.1318398573812154 1.3463796131837804 1.0 737 -Phenotype MP:0004759 decreased mitotic index 0.1318047518765626 1.3457433325516828 1.0 738 -Biological Process GO:0034122 negative regulation of toll-like receptor signaling pathway 0.13174071826837375 1.344582735514356 1.0 739 -Phenotype MP:0003975 increased circulating VLDL triglyceride level 0.13168377348673832 1.343550622117554 1.0 740 -Biological Process GO:0045061 thymic T cell selection 0.1316768066983096 1.3434243503949581 1.0 741 -Phenotype MP:0008180 abnormal marginal zone B cell morphology 0.1316671983486425 1.3432502008745317 1.0 742 -Biological Process GO:0040017 positive regulation of locomotion 0.1316627973411173 1.343170433445529 1.0 743 -Biological Process GO:0016322 neuron remodeling 0.13165927034150027 1.343106507244555 1.0 744 -Biological Process GO:0099518 vesicle cytoskeletal trafficking 0.13159652996510807 1.341969349788945 1.0 745 -Phenotype MP:0000858 abnormal metastatic potential 0.13158934931689115 1.3418392018981364 1.0 746 -Phenotype MP:0011723 ectopic neuron 0.13150813078718726 1.3403671314086467 1.0 747 -Biological Process GO:0071498 cellular response to fluid shear stress 0.131453467489826 1.3393763694828018 1.0 748 -Biological Process GO:0007098 centrosome cycle 0.13126310113775164 1.3359260153566905 1.0 749 -Biological Process GO:0002719 negative regulation of cytokine production involved in immune response 0.13123214280236362 1.3353649013831357 1.0 750 -Phenotype MP:0008723 impaired eosinophil recruitment 0.1311790769627328 1.3344030930765172 1.0 751 -Phenotype MP:0003329 amyloid beta deposits 0.13116460761937254 1.3341408389647946 1.0 752 -Phenotype MP:0008596 increased circulating interleukin-6 level 0.1311013168861629 1.332993706395961 1.0 753 -Biological Process GO:0046425 regulation of receptor signaling pathway via JAK-STAT 0.13107480524630644 1.332513187937883 1.0 754 -Phenotype MP:0000377 abnormal hair follicle morphology 0.13105122812298675 1.3320858570370098 1.0 755 -Phenotype MP:0002915 abnormal synaptic depression 0.13101268474324435 1.3313872655691408 1.0 756 -Biological Process GO:0045060 negative thymic T cell selection 0.13099073385669446 1.3309894099021393 1.0 757 -Biological Process GO:0071621 granulocyte chemotaxis 0.13097496888174476 1.3307036727129091 1.0 758 -Biological Process GO:0010507 negative regulation of autophagy 0.13095421527810225 1.3303275175721536 1.0 759 -Phenotype MP:0002343 abnormal lymph node cortex morphology 0.13094151886979344 1.3300973975729116 1.0 760 -Biological Process GO:1905897 regulation of response to endoplasmic reticulum stress 0.13093993569699203 1.3300687028653218 1.0 761 -Biological Process GO:0070646 protein modification by small protein removal 0.13089713403560366 1.3292929308480166 1.0 762 -Biological Process GO:1903047 mitotic cell cycle process 0.13085598424709888 1.3285470987142967 1.0 763 -Biological Process GO:0002250 adaptive immune response 0.1308189525010417 1.3278759053210674 1.0 764 -Phenotype MP:0013624 decreased femur compact bone thickness 0.13077355937289392 1.327053163458889 1.0 765 -Phenotype MP:0009171 enlarged pancreatic islets 0.13075627414132318 1.3267398719059385 1.0 766 -Biological Process GO:0048535 lymph node development 0.13071017674461016 1.325904365309218 1.0 767 -Phenotype MP:0003080 increased natural killer cell mediated cytotoxicity 0.13070550827684335 1.3258197502139224 1.0 768 -Phenotype MP:0004810 decreased hematopoietic stem cell number 0.13061762456065673 1.3242268744800636 1.0 769 -Phenotype MP:0008585 absent photoreceptor outer segment 0.13060925976460436 1.324075264133703 1.0 770 -Biological Process GO:0032870 cellular response to hormone stimulus 0.13054893551308744 1.3229818984844801 1.0 771 -Phenotype MP:0011868 podocyte microvillus transformation 0.13053304344019578 1.3226938576690908 1.0 772 -Phenotype MP:0011353 expanded mesangial matrix 0.13052550452824208 1.3225572163158137 1.0 773 -Phenotype MP:0008042 abnormal NK T cell physiology 0.13049895009517587 1.322075922238903 1.0 774 -Biological Process GO:0008286 insulin receptor signaling pathway 0.13045516420580539 1.3212823112755752 1.0 775 -Biological Process GO:0032735 positive regulation of interleukin-12 production 0.13022341708617957 1.3170819385642099 1.0 776 -Phenotype MP:0001899 absent long-term depression 0.13015735437660303 1.3158845644480086 1.0 777 -Biological Process GO:0030540 female genitalia development 0.13015270207674612 1.315800242393022 1.0 778 -Biological Process GO:0009725 response to hormone 0.1301007580253487 1.314858766285963 1.0 779 -Biological Process GO:0070571 negative regulation of neuron projection regeneration 0.13009972488997956 1.314840040902801 1.0 780 -Phenotype MP:0000549 absent limbs 0.13002978350024352 1.313572366442309 1.0 781 -Biological Process GO:0019218 regulation of steroid metabolic process 0.1299962262079295 1.312964146866028 1.0 782 -Biological Process GO:0030010 establishment of cell polarity 0.1299513512669236 1.3121507970477877 1.0 783 -Biological Process GO:0062197 cellular response to chemical stress 0.1299195394197319 1.3115742133342216 1.0 784 -Phenotype MP:0020578 abnormal pancreatic beta cell number 0.12989919569732322 1.311205487213306 1.0 785 -Biological Process GO:1903532 positive regulation of secretion by cell 0.12987486710417528 1.3107645360639262 1.0 786 -Biological Process GO:0048681 negative regulation of axon regeneration 0.12984207859329389 1.310170250505707 1.0 787 -Phenotype MP:0004751 increased length of allograft survival 0.12982919927890368 1.3099368153683337 1.0 788 -Phenotype MP:0008120 abnormal myeloid dendritic cell number 0.12980604153046993 1.3095170855579485 1.0 789 -Phenotype MP:0008033 impaired lipolysis 0.1297655107244592 1.3087824723648611 1.0 790 -Phenotype MP:0008134 abnormal Peyer's patch size 0.12970914314874138 1.307760820716145 1.0 791 -Biological Process GO:0060674 placenta blood vessel development 0.12963689121211086 1.3064512680301996 1.0 792 -Biological Process GO:0010812 negative regulation of cell-substrate adhesion 0.12949473185790483 1.3038746566227462 1.0 793 -Biological Process GO:0030168 platelet activation 0.12945768688152015 1.3032032234323332 1.0 794 -Biological Process GO:0044380 protein localization to cytoskeleton 0.12930871423932766 1.300503122468767 1.0 795 -Phenotype MP:0009760 abnormal mitotic spindle morphology 0.1292880475669269 1.3001285429403269 1.0 796 -Phenotype MP:0000384 distorted hair follicle pattern 0.1292729894625151 1.2998556176459006 1.0 797 -Biological Process GO:0002790 peptide secretion 0.12926864180075015 1.299776817098713 1.0 798 -Phenotype MP:0001188 hyperpigmentation 0.12925277193745432 1.2994891788280474 1.0 799 -Biological Process GO:0043277 apoptotic cell clearance 0.12923030113000733 1.2990818996931217 1.0 800 -Biological Process GO:0002283 neutrophil activation involved in immune response 0.12922724255522733 1.2990264636037225 1.0 801 -Biological Process GO:0048483 autonomic nervous system development 0.12922158267589623 1.2989238793613365 1.0 802 -Biological Process GO:0015833 peptide transport 0.12922116734257816 1.2989163515235012 1.0 803 -Biological Process GO:0002269 leukocyte activation involved in inflammatory response 0.12918621152249954 1.2982827838959996 1.0 804 -Phenotype MP:0020506 abnormal dendritic spine density 0.12918453534606056 1.2982524035150693 1.0 805 -Phenotype MP:0006058 decreased cerebral infarct size 0.12909082730156607 1.2965539629322238 1.0 806 -Phenotype MP:0011270 decreased excitatory postsynaptic current amplitude 0.12908688541145397 1.2964825169194973 1.0 807 -Phenotype MP:0002362 abnormal spleen marginal zone morphology 0.12908533894080454 1.2964544874314707 1.0 808 -Phenotype MP:0002820 abnormal premaxilla morphology 0.12905569421686858 1.2959171824170324 1.0 809 -Phenotype MP:0002916 increased synaptic depression 0.12890195479343902 1.2931306844451171 1.0 810 -Phenotype MP:0008816 petechiae 0.12888954925467822 1.2929058364014183 1.0 811 -Biological Process GO:0002902 regulation of B cell apoptotic process 0.12883873934137702 1.2919849163328463 1.0 812 -Biological Process GO:0002292 T cell differentiation involved in immune response 0.12883048822771825 1.2918353664583684 1.0 813 -Biological Process GO:0050433 regulation of catecholamine secretion 0.12868970206397645 1.2892836438683588 1.0 814 -Biological Process GO:0035148 tube formation 0.12868060644731316 1.28911878753665 1.0 815 -Phenotype MP:0003408 increased width of hypertrophic chondrocyte zone 0.12867217584914248 1.2889659845393409 1.0 816 -Biological Process GO:0048266 behavioral response to pain 0.12863253538499198 1.288247508624074 1.0 817 -Biological Process GO:2000300 regulation of synaptic vesicle exocytosis 0.12862572903332725 1.2881241447874807 1.0 818 -Biological Process GO:0043161 proteasome-mediated ubiquitin-dependent protein catabolic process 0.12861048405706366 1.2878478324760854 1.0 819 -Phenotype MP:0021213 complete cleft palate 0.1285736680798396 1.287180549852147 1.0 820 -Phenotype MP:0004762 increased anti-double stranded DNA antibody level 0.12852464724919543 1.2862920565683522 1.0 821 -Biological Process GO:0001783 B cell apoptotic process 0.12850221401367778 1.2858854584175399 1.0 822 -Biological Process GO:1902624 positive regulation of neutrophil migration 0.12847979041265556 1.2854790348901348 1.0 823 -Phenotype MP:0006386 absent somites 0.12847072167966433 1.2853146658198977 1.0 824 -Biological Process GO:0007186 G protein-coupled receptor signaling pathway 0.12846574401405786 1.2852244465722389 1.0 825 -Phenotype MP:0004981 decreased neuronal precursor cell number 0.1284211481292331 1.2844161545945025 1.0 826 -Phenotype MP:0002344 abnormal lymph node B cell domain morphology 0.12840460290405487 1.2841162755174538 1.0 827 -Phenotype MP:0000189 hypoglycemia 0.12838508412507665 1.2837625013401883 1.0 828 -Phenotype MP:0004160 retroesophageal right subclavian artery 0.12834743651441527 1.2830801455174903 1.0 829 -Phenotype MP:0010234 abnormal vibrissa follicle morphology 0.1283059903685715 1.282328941963053 1.0 830 -Biological Process GO:0045606 positive regulation of epidermal cell differentiation 0.12829324036491996 1.282097850558361 1.0 831 -Biological Process GO:0014033 neural crest cell differentiation 0.12825031707274226 1.281319874006004 1.0 832 -Biological Process GO:0021783 preganglionic parasympathetic fiber development 0.1282339778960332 1.2810237295184876 1.0 833 -Phenotype MP:0003126 abnormal external female genitalia morphology 0.12822208810752533 1.2808082293505765 1.0 834 -Biological Process GO:0061136 regulation of proteasomal protein catabolic process 0.12818971941239077 1.280221552873366 1.0 835 -Phenotype MP:0002239 abnormal nasal septum morphology 0.12797919368428246 1.2764058138695145 1.0 836 -Biological Process GO:0014059 regulation of dopamine secretion 0.12794784683199212 1.275837658100588 1.0 837 -Biological Process GO:0042119 neutrophil activation 0.12794146102532056 1.2757219165624554 1.0 838 -Phenotype MP:0008640 abnormal circulating interleukin-1 beta level 0.1278162880442999 1.2734531799562425 1.0 839 -Biological Process GO:0045628 regulation of T-helper 2 cell differentiation 0.12781604896242982 1.2734488466425666 1.0 840 -Phenotype MP:0008111 abnormal granulocyte differentiation 0.12779938975778515 1.2731469017092467 1.0 841 -Biological Process GO:0071347 cellular response to interleukin-1 0.12774357096333566 1.2721351966172243 1.0 842 -Phenotype MP:0006050 pulmonary fibrosis 0.12772973690243927 1.2718844568800038 1.0 843 -Phenotype MP:0000460 mandible hypoplasia 0.12765107705223944 1.2704587619725851 1.0 844 -Biological Process GO:0050435 amyloid-beta metabolic process 0.1275954393512304 1.26945033916492 1.0 845 -Phenotype MP:0004804 decreased susceptibility to autoimmune diabetes 0.1274819170197402 1.267392768377883 1.0 846 -Phenotype MP:0001379 abnormal penile erection 0.12735003099183895 1.265002359066642 1.0 847 -Phenotype MP:0005556 abnormal renal filtration rate 0.12731061371270969 1.2642879283376727 1.0 848 -Biological Process GO:0036230 granulocyte activation 0.12729940485127578 1.2640847698441886 1.0 849 -Phenotype MP:0009285 increased gonadal fat pad weight 0.12729795552429657 1.264058501066811 1.0 850 -Phenotype MP:0001855 abnormal atrial thrombosis 0.12727747894598362 1.2636873669577584 1.0 851 -Biological Process GO:0002293 alpha-beta T cell differentiation involved in immune response 0.12721260745743102 1.2625115834973124 1.0 852 -Biological Process GO:0097300 programmed necrotic cell death 0.12719383982098842 1.2621714236364365 1.0 853 -Biological Process GO:0019221 cytokine-mediated signaling pathway 0.1271802294970883 1.2619247390899566 1.0 854 -Biological Process GO:0018107 peptidyl-threonine phosphorylation 0.1271645975738953 1.261641413438652 1.0 855 -Biological Process GO:0018210 peptidyl-threonine modification 0.1271645975738953 1.261641413438652 1.0 855 -Biological Process GO:0048863 stem cell differentiation 0.1271496851881001 1.2613711292665912 1.0 857 -Biological Process GO:0003197 endocardial cushion development 0.12714241634760093 1.2612393829073472 1.0 858 -Phenotype MP:0000630 mammary gland hyperplasia 0.1271352326949612 1.2611091805619432 1.0 859 -Phenotype MP:0009378 abnormal endoplasmic reticulum morphology 0.12708995988845384 1.2602886195067402 1.0 860 -Phenotype MP:0001096 abnormal glossopharyngeal ganglion morphology 0.12707633302302734 1.2600416351482235 1.0 861 -Biological Process GO:0035050 embryonic heart tube development 0.12701345419758736 1.2589019683298084 1.0 862 -Phenotype MP:0011518 abnormal cell chemotaxis 0.12698612222079353 1.2584065814198961 1.0 863 -Biological Process GO:2000515 negative regulation of CD4-positive, alpha-beta T cell activation 0.12694741127472042 1.2577049528439763 1.0 864 -Biological Process GO:0090276 regulation of peptide hormone secretion 0.12694078578258805 1.2575848670521999 1.0 865 -Biological Process GO:0032733 positive regulation of interleukin-10 production 0.12688027723763717 1.256488161119343 1.0 866 -Biological Process GO:0000278 mitotic cell cycle 0.12683536786586724 1.255674187250017 1.0 867 -Biological Process GO:0010498 proteasomal protein catabolic process 0.12679228388374242 1.2548932982227607 1.0 868 -Biological Process GO:0048486 parasympathetic nervous system development 0.12677896534080146 1.2546519021509792 1.0 869 -Phenotype MP:0011942 decreased fluid intake 0.12675746700006263 1.25426224879121 1.0 870 -Phenotype MP:0008062 abnormal podocyte slit junction morphology 0.12674961431735077 1.254119920402287 1.0 871 -Phenotype MP:0003075 abnormal response to CNS ischemic injury 0.12672909162351842 1.2537479504581672 1.0 872 -Phenotype MP:0009503 abnormal mammary gland duct morphology 0.1265995210081986 1.2513995075620359 1.0 873 -Biological Process GO:0045582 positive regulation of T cell differentiation 0.12656398826860993 1.2507554833775312 1.0 874 -Phenotype MP:0003704 abnormal hair follicle development 0.12652104882809034 1.2499772141395318 1.0 875 -Biological Process GO:1904018 positive regulation of vasculature development 0.12651972854084814 1.2499532841829815 1.0 876 -Biological Process GO:0045766 positive regulation of angiogenesis 0.12651972854084814 1.2499532841829815 1.0 876 -Phenotype MP:0011186 abnormal visceral endoderm morphology 0.12647298676616014 1.2491060983573399 1.0 878 -Phenotype MP:0001272 increased metastatic potential 0.12637172868162583 1.2472708147267608 1.0 879 -Biological Process GO:1901524 regulation of mitophagy 0.12635423982799843 1.2469538325625458 1.0 880 -Biological Process GO:1903146 regulation of autophagy of mitochondrion 0.12635423982799843 1.2469538325625458 1.0 880 -Phenotype MP:0001852 conjunctivitis 0.1263275965885341 1.2464709288864655 1.0 882 -Biological Process GO:0060070 canonical Wnt signaling pathway 0.12631261658870774 1.2461994192228782 1.0 883 -Biological Process GO:0050767 regulation of neurogenesis 0.126286907515187 1.2457334471278407 1.0 884 -Phenotype MP:0002534 abnormal type IV hypersensitivity reaction 0.1262374695918137 1.2448373941172182 1.0 885 -Biological Process GO:1903046 meiotic cell cycle process 0.12620354112986687 1.2442224471615444 1.0 886 -Phenotype MP:0002031 increased adrenal gland tumor incidence 0.126188086994394 1.2439423438790405 1.0 887 -Phenotype MP:0031584 thick semilunar valve 0.1261617273683293 1.2434645806421871 1.0 888 -Biological Process GO:0043525 positive regulation of neuron apoptotic process 0.1261602712238462 1.243438188298841 1.0 889 -Phenotype MP:0009549 decreased platelet aggregation 0.12613936559698657 1.2430592777660285 1.0 890 -Biological Process GO:0051493 regulation of cytoskeleton organization 0.1260934094294024 1.2422263309205566 1.0 891 -Biological Process GO:0007498 mesoderm development 0.12606904957286225 1.2417848131281057 1.0 892 -Phenotype MP:0008354 decreased mature gamma-delta T cell number 0.12606385196435665 1.2416906074569998 1.0 893 -Biological Process GO:0008584 male gonad development 0.1260621830741976 1.2416603591385147 1.0 894 -Phenotype MP:0001084 abnormal petrosal ganglion morphology 0.12597636523925204 1.2401049271114166 1.0 895 -Biological Process GO:0009409 response to cold 0.1259616360967155 1.2398379641887614 1.0 896 -Phenotype MP:0011349 abnormal renal glomerulus basement membrane thickness 0.12596055442329124 1.2398183590625305 1.0 897 -Biological Process GO:0035774 positive regulation of insulin secretion involved in cellular response to glucose stimulus 0.1259040926888919 1.2387950008055209 1.0 898 -Biological Process GO:0007289 spermatid nucleus differentiation 0.1258867812601837 1.2384812344344087 1.0 899 -Biological Process GO:0070647 protein modification by small protein conjugation or removal 0.12577989824865243 1.2365440000658892 1.0 900 -Phenotype MP:0008135 small Peyer's patches 0.12577196984377936 1.236400299227116 1.0 901 -Phenotype MP:0002445 abnormal mononuclear cell differentiation 0.12568536960967025 1.2348306863631586 1.0 902 -Phenotype MP:0030051 increased foot pigmentation 0.1255983794895662 1.2332540068892845 1.0 903 -Biological Process GO:0060600 dichotomous subdivision of an epithelial terminal unit 0.12559177329705895 1.2331342708995632 1.0 904 -Phenotype MP:0000015 abnormal ear pigmentation 0.12557606642190966 1.2328495867582265 1.0 905 -Biological Process GO:0046626 regulation of insulin receptor signaling pathway 0.12556389811658963 1.2326290385257725 1.0 906 -Phenotype MP:0005342 abnormal intestinal lipid absorption 0.1255560428962188 1.2324866641422605 1.0 907 -Phenotype MP:0009165 abnormal endocrine pancreas morphology 0.12554791807102217 1.232339403222273 1.0 908 -Phenotype MP:0014126 increased mammary gland apoptosis 0.1254866331982275 1.2312286264940795 1.0 909 -Biological Process GO:0030325 adrenal gland development 0.1254840068721177 1.2311810248300736 1.0 910 -Phenotype MP:0000296 absent trabeculae carneae 0.125340763888666 1.2285847728474963 1.0 911 -Phenotype MP:0004996 abnormal CNS synapse formation 0.12529603127765432 1.2277740027334818 1.0 912 -Biological Process GO:0000910 cytokinesis 0.12521779123924404 1.226355916835347 1.0 913 -Phenotype MP:0011294 renal glomerulus hypertrophy 0.12517980186218203 1.225667366561278 1.0 914 -Phenotype MP:0009384 cardiac valve regurgitation 0.12512531430339158 1.2246797898637904 1.0 915 -Biological Process GO:0050922 negative regulation of chemotaxis 0.12512377783208017 1.2246519416118742 1.0 916 -Biological Process GO:0016601 Rac protein signal transduction 0.12511360239815583 1.2244675137965422 1.0 917 -Biological Process GO:0046633 alpha-beta T cell proliferation 0.12509526329536114 1.224135121026983 1.0 918 -Biological Process GO:0001816 cytokine production 0.12502409244393942 1.2228451628059742 1.0 919 -Biological Process GO:0051047 positive regulation of secretion 0.12502224589452093 1.2228116944470142 1.0 920 -Phenotype MP:0001690 failure of somite differentiation 0.12499631159773583 1.222341640222908 1.0 921 -Biological Process GO:0032434 regulation of proteasomal ubiquitin-dependent protein catabolic process 0.12498850338696554 1.2222001178795145 1.0 922 -Biological Process GO:0002089 lens morphogenesis in camera-type eye 0.12496985700339813 1.221862155704068 1.0 923 -Biological Process GO:0070059 intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress 0.12489577899710247 1.2205195058508183 1.0 924 -Biological Process GO:0002224 toll-like receptor signaling pathway 0.12488996664225094 1.220414158018463 1.0 925 -Biological Process GO:1904407 positive regulation of nitric oxide metabolic process 0.12484041063516915 1.2195159647629583 1.0 926 -Phenotype MP:0001155 arrest of spermatogenesis 0.12483263526010391 1.2193750375605084 1.0 927 -Phenotype MP:0005215 abnormal pancreatic islet morphology 0.12481939599273395 1.2191350783434574 1.0 928 -Biological Process GO:0010935 regulation of macrophage cytokine production 0.12478156139174845 1.2184493333565014 1.0 929 -Phenotype MP:0011338 abnormal mesangial matrix morphology 0.12476338694848177 1.2181199250097445 1.0 930 -Biological Process GO:0061900 glial cell activation 0.1247551723487681 1.2179710369436152 1.0 931 -Phenotype MP:0009333 abnormal splenocyte physiology 0.12474784337822176 1.217838200738639 1.0 932 -Phenotype MP:0001870 salivary gland inflammation 0.12474513429939893 1.2177890991973612 1.0 933 -Biological Process GO:1903530 regulation of secretion by cell 0.12472586314162193 1.2174398131075335 1.0 934 -Biological Process GO:0042531 positive regulation of tyrosine phosphorylation of STAT protein 0.12471707176178937 1.2172804710108396 1.0 935 -Phenotype MP:0002026 increased leukemia incidence 0.12470347720851493 1.2170340723039677 1.0 936 -Biological Process GO:0046928 regulation of neurotransmitter secretion 0.12469957642671547 1.2169633713716328 1.0 937 -Biological Process GO:0007044 cell-substrate junction assembly 0.12469524645478591 1.2168848914493655 1.0 938 -Phenotype MP:0009697 abnormal copulation 0.12462399375691657 1.2155934497769738 1.0 939 -Phenotype MP:0001906 increased dopamine level 0.12459635507383326 1.2150925038735743 1.0 940 -Phenotype MP:0008067 retina ganglion cell degeneration 0.12457808918153479 1.2147614380304124 1.0 941 -Phenotype MP:0002871 albuminuria 0.12456223167126912 1.214474023656082 1.0 942 -Phenotype MP:0004978 decreased B-1 B cell number 0.12453803647065453 1.2140354902211397 1.0 943 -Biological Process GO:0062207 regulation of pattern recognition receptor signaling pathway 0.12443255793507935 1.2121237117136865 1.0 944 -Biological Process GO:0030968 endoplasmic reticulum unfolded protein response 0.1244214984824018 1.2119232612256527 1.0 945 -Biological Process GO:0090559 regulation of membrane permeability 0.12440930880072809 1.2117023255508312 1.0 946 -Phenotype MP:0008235 increased susceptibility to neuronal excitotoxicity 0.12437651929606508 1.2111080219805082 1.0 947 -Biological Process GO:0032673 regulation of interleukin-4 production 0.1243622913402207 1.2108501429718554 1.0 948 -Biological Process GO:0045429 positive regulation of nitric oxide biosynthetic process 0.12434194537197485 1.2104813761455657 1.0 949 -Phenotype MP:0009789 decreased susceptibility to bacterial infection induced morbidity/mortality 0.12431606694117636 1.2100123344819005 1.0 950 -Biological Process GO:0014037 Schwann cell differentiation 0.12430887946687541 1.2098820628696099 1.0 951 -Phenotype MP:0008719 impaired neutrophil recruitment 0.12429721245202607 1.2096706004321247 1.0 952 -Phenotype MP:0005174 abnormal tail pigmentation 0.12428451897375048 1.2094405335391805 1.0 953 -Phenotype MP:0005590 increased vasodilation 0.1242836920658682 1.2094255459902126 1.0 954 -Biological Process GO:0051438 regulation of ubiquitin-protein transferase activity 0.1242730027059562 1.2092318033635563 1.0 955 -Phenotype MP:0001861 lung inflammation 0.12421638687352254 1.20820565210882 1.0 956 -Phenotype MP:0014146 decreased white adipose tissue mass 0.12421388578897519 1.2081603204244455 1.0 957 -Phenotype MP:0010614 abnormal mitral valve cusp morphology 0.12420908726109403 1.2080733480141768 1.0 958 -Biological Process GO:0002720 positive regulation of cytokine production involved in immune response 0.12415357453858822 1.2070671904182442 1.0 959 -Biological Process GO:0040013 negative regulation of locomotion 0.12414349819981962 1.2068845586838675 1.0 960 -Phenotype MP:0008388 hypochromic microcytic anemia 0.12411223119531511 1.2063178501409568 1.0 961 -Biological Process GO:0071559 response to transforming growth factor beta 0.12399602468212223 1.2042116290682356 1.0 962 -Phenotype MP:0030091 macrodontia 0.12390908063222672 1.2026357846081779 1.0 963 -Phenotype MP:0004831 long incisors 0.12390908063222672 1.2026357846081779 1.0 963 -Phenotype MP:0001245 thick dermal layer 0.12389985848260565 1.2024686348905416 1.0 965 -Phenotype MP:0010605 thick pulmonary valve cusps 0.1238962205046259 1.2024026972277333 1.0 966 -Biological Process GO:0032642 regulation of chemokine production 0.12387961989587626 1.2021018143339282 1.0 967 -Biological Process GO:0090174 organelle membrane fusion 0.12383970478244644 1.2013783604524197 1.0 968 -Biological Process GO:0006906 vesicle fusion 0.12383970478244644 1.2013783604524197 1.0 968 -Phenotype MP:0010300 increased skin tumor incidence 0.12379476337050754 1.2005638058610912 1.0 970 -Phenotype MP:0009129 abnormal white fat cell number 0.12378864094649611 1.2004528380838582 1.0 971 -Phenotype MP:0009660 abnormal induced retina neovascularization 0.12378493382115607 1.200385647138223 1.0 972 -Biological Process GO:0009895 negative regulation of catabolic process 0.12377927138274514 1.200283016512999 1.0 973 -Phenotype MP:0001802 arrested B cell differentiation 0.12366744672656615 1.1982562157698853 1.0 974 -Phenotype MP:0012754 abnormal cranial neural crest cell morphology 0.12362455684056062 1.1974788446980804 1.0 975 -Phenotype MP:0005671 abnormal response to transplant 0.12361853447956128 1.197369690544016 1.0 976 -Phenotype MP:0005165 increased susceptibility to injury 0.1236161975814487 1.1973273347077185 1.0 977 -Biological Process GO:0060602 branch elongation of an epithelium 0.1235474179082503 1.1960807161397482 1.0 978 -Biological Process GO:0021987 cerebral cortex development 0.12354477979299694 1.196032900799745 1.0 979 -Biological Process GO:0071676 negative regulation of mononuclear cell migration 0.12353567727031889 1.1958679192978252 1.0 980 -Phenotype MP:0008902 abnormal renal fat pad morphology 0.12352773748899437 1.195724012263021 1.0 981 -Phenotype MP:0011348 abnormal renal glomerulus basement membrane morphology 0.12340389106066096 1.1934793191733652 1.0 982 -Biological Process GO:0035710 CD4-positive, alpha-beta T cell activation 0.12336212704160698 1.1927223542271148 1.0 983 -Biological Process GO:0060563 neuroepithelial cell differentiation 0.12335208657872077 1.1925403727363206 1.0 984 -Phenotype MP:0030386 facial bone hypoplasia 0.12332556377003745 1.1920596518453683 1.0 985 -Biological Process GO:0048265 response to pain 0.12329431315852579 1.1914932404223526 1.0 986 -Phenotype MP:0002928 abnormal bile duct morphology 0.12326383255967222 1.190940785333127 1.0 987 -Biological Process GO:1905898 positive regulation of response to endoplasmic reticulum stress 0.12326217630436176 1.1909107660188836 1.0 988 -Biological Process GO:0007033 vacuole organization 0.1232513286950434 1.1907141551516678 1.0 989 -Phenotype MP:0001407 short stride length 0.1232453982953371 1.1906066677786462 1.0 990 -Phenotype MP:0006094 increased fat cell size 0.12317813049848148 1.1893874516834377 1.0 991 -Biological Process GO:0106014 regulation of inflammatory response to wounding 0.12317163442837842 1.1892697116414641 1.0 992 -Biological Process GO:1904893 negative regulation of receptor signaling pathway via STAT 0.12316283890960045 1.1891102945271677 1.0 993 -Biological Process GO:0120192 tight junction assembly 0.12315154836311715 1.188905655507613 1.0 994 -Phenotype MP:0005217 abnormal pancreatic beta cell morphology 0.12313921348490364 1.1886820881729696 1.0 995 -Phenotype MP:0002334 abnormal airway responsiveness 0.12311721705126755 1.188283406973645 1.0 996 -Phenotype MP:0013500 abnormal fibroblast apoptosis 0.12310037892891279 1.1879782191906696 1.0 997 -Phenotype MP:0002731 megacolon 0.12309665366531541 1.1879106994925508 1.0 998 -Phenotype MP:0001723 disorganized yolk sac vascular plexus 0.12302418381081348 1.186597197086402 1.0 999 -Biological Process GO:0060977 coronary vasculature morphogenesis 0.12292233973746158 1.1847512925193364 1.0 1000 -Phenotype MP:0005222 abnormal somite size 0.12290071571783334 1.184359361253467 1.0 1001 -Phenotype MP:0011200 abnormal extraembryonic coelom morphology 0.12289795775607137 1.184309373718163 1.0 1002 -Phenotype MP:0008053 abnormal NK cell differentiation 0.1228813923001153 1.1840091279620923 1.0 1003 -Phenotype MP:0004039 abnormal cardiac muscle cell glucose uptake 0.12280243579053252 1.1825780561594668 1.0 1004 -Biological Process GO:0001678 intracellular glucose homeostasis 0.12273431040275196 1.1813432963909456 1.0 1005 -Biological Process GO:0002577 regulation of antigen processing and presentation 0.12272838293350496 1.181235862131945 1.0 1006 -Phenotype MP:0009625 abnormal abdominal lymph node morphology 0.12264514519790992 1.1797271939175835 1.0 1007 -Biological Process GO:0045580 regulation of T cell differentiation 0.12262265996150579 1.1793196532605388 1.0 1008 -Phenotype MP:0012701 increased embryonic neuroepithelium apoptosis 0.12256672868541896 1.178305909460114 1.0 1009 -Phenotype MP:0010449 heart right ventricle outflow tract stenosis 0.12254572215867188 1.1779251701359255 1.0 1010 -Biological Process GO:0032878 regulation of establishment or maintenance of cell polarity 0.12249667137788933 1.1770361340115376 1.0 1011 -Biological Process GO:0048009 insulin-like growth factor receptor signaling pathway 0.12243204929713947 1.1758648710203443 1.0 1012 -Biological Process GO:0071216 cellular response to biotic stimulus 0.12241742420121338 1.1755997939228242 1.0 1013 -Biological Process GO:0032868 response to insulin 0.12238281204785495 1.1749724551896263 1.0 1014 -Phenotype MP:0000273 overriding aortic valve 0.12238096281940081 1.1749389382736517 1.0 1015 -Biological Process GO:0030098 lymphocyte differentiation 0.12233018867095047 1.1740186664362369 1.0 1016 -Phenotype MP:0000373 belly spot 0.12228993917450337 1.1732891519257846 1.0 1017 -Phenotype MP:0001200 thick skin 0.12227937325441629 1.173097646622608 1.0 1018 -Phenotype MP:0002940 variable body spotting 0.12223298288843232 1.1722568300132625 1.0 1019 -Phenotype MP:0000798 abnormal frontal lobe morphology 0.1221714912132611 1.171142305031108 1.0 1020 -Phenotype MP:0004979 abnormal neuronal precursor cell number 0.1221296807344795 1.1703844980110816 1.0 1021 -Biological Process GO:0050810 regulation of steroid biosynthetic process 0.12209676030892347 1.1697878215243345 1.0 1022 -Biological Process GO:0051451 myoblast migration 0.12208149665917656 1.169511170759586 1.0 1023 -Phenotype MP:0001666 abnormal intestinal absorption 0.12207428643497231 1.169380486809601 1.0 1024 -Biological Process GO:0042698 ovulation cycle 0.12206479040349882 1.1692083730351908 1.0 1025 -Biological Process GO:0090314 positive regulation of protein targeting to membrane 0.12204516618309325 1.1688526877519971 1.0 1026 -Biological Process GO:0042098 T cell proliferation 0.12195179682589519 1.1671603858123412 1.0 1027 -Biological Process GO:0050921 positive regulation of chemotaxis 0.12188148037997704 1.1658859135294852 1.0 1028 -Phenotype MP:0005070 impaired natural killer cell mediated cytotoxicity 0.12184864857303446 1.165290843238346 1.0 1029 -Biological Process GO:0050821 protein stabilization 0.12182300055356832 1.1648259777365002 1.0 1030 -Phenotype MP:0008591 increased circulating interleukin-1 level 0.12177946923629457 1.1640369808442772 1.0 1031 -Phenotype MP:0002423 abnormal mast cell physiology 0.12177155053663735 1.1638934559107057 1.0 1032 -Biological Process GO:0002686 negative regulation of leukocyte migration 0.1217407919998148 1.1633359632483606 1.0 1033 -Phenotype MP:0008345 abnormal gamma-delta T cell number 0.12172421471978712 1.1630355031832287 1.0 1034 -Biological Process GO:1901021 positive regulation of calcium ion transmembrane transporter activity 0.121716937354019 1.1629036023050976 1.0 1035 -Biological Process GO:0060670 branching involved in labyrinthine layer morphogenesis 0.12169103838746687 1.1624341884347813 1.0 1036 -Phenotype MP:0011255 abnormal anterior visceral endoderm cell migration 0.12168951221970403 1.1624065269327342 1.0 1037 -Biological Process GO:0060249 anatomical structure homeostasis 0.12168079808618426 1.1622485849108495 1.0 1038 -Biological Process GO:0001894 tissue homeostasis 0.12168079808618426 1.1622485849108495 1.0 1038 -Biological Process GO:0002385 mucosal immune response 0.12157353576529784 1.1603044756320093 1.0 1040 -Biological Process GO:1902622 regulation of neutrophil migration 0.12155627846042161 1.1599916902451148 1.0 1041 -Biological Process GO:0140013 meiotic nuclear division 0.12152010138146108 1.1593359875313634 1.0 1042 -Phenotype MP:0008140 podocyte foot process effacement 0.12150966471870961 1.1591468249929475 1.0 1043 -Phenotype MP:0012361 decreased large unstained cell number 0.1214619717070482 1.1582823981770767 1.0 1044 -Biological Process GO:0070372 regulation of ERK1 and ERK2 cascade 0.12133297515203989 1.1559443600155155 1.0 1045 -Biological Process GO:0043383 negative T cell selection 0.12132473515646147 1.155795011654141 1.0 1046 -Phenotype MP:0011016 increased core body temperature 0.12129530982955039 1.1552616831692826 1.0 1047 -Biological Process GO:0006979 response to oxidative stress 0.12126104491885226 1.1546406381436263 1.0 1048 -Phenotype MP:0030022 decreased muscle cell glucose uptake 0.12121726406732669 1.153847118490285 1.0 1049 -Biological Process GO:0080164 regulation of nitric oxide metabolic process 0.12118856364201369 1.1533269287097865 1.0 1050 -Biological Process GO:0002318 myeloid progenitor cell differentiation 0.12114236808435397 1.1524896429644729 1.0 1051 -Phenotype MP:0000848 abnormal pons morphology 0.12111988343996727 1.1520821130376322 1.0 1052 -Biological Process GO:0032731 positive regulation of interleukin-1 beta production 0.1210934078761634 1.151602248451184 1.0 1053 -Phenotype MP:0020508 decreased dendritic spine density 0.12106615164696932 1.1511082344521908 1.0 1054 -Phenotype MP:0011519 abnormal placenta labyrinth size 0.12105996761498117 1.1509961500420318 1.0 1055 -Biological Process GO:0070527 platelet aggregation 0.12102760018648528 1.150409496522408 1.0 1056 -Phenotype MP:0003828 pulmonary edema 0.12102327330798812 1.1503310726680178 1.0 1057 -Phenotype MP:0020409 abnormal cardiac thrombosis 0.12094980677886413 1.1489995057228521 1.0 1058 -Biological Process GO:0001910 regulation of leukocyte mediated cytotoxicity 0.12092681448986231 1.1485827748333763 1.0 1059 -Biological Process GO:0002701 negative regulation of production of molecular mediator of immune response 0.12085067107704695 1.1472026898776009 1.0 1060 -Phenotype MP:0011947 abnormal fluid intake 0.12077622603921057 1.1458533876470949 1.0 1061 -Phenotype MP:0003584 bifid ureter 0.12075754063282118 1.1455147181903806 1.0 1062 -Biological Process GO:0032271 regulation of protein polymerization 0.12067995999050585 1.1441085837217508 1.0 1063 -Phenotype MP:0030245 round head 0.1206731400058817 1.1439849727903466 1.0 1064 -Phenotype MP:0010209 abnormal circulating chemokine level 0.12065716439479524 1.1436954178609766 1.0 1065 -Biological Process GO:0010506 regulation of autophagy 0.12065661472616629 1.1436854552210394 1.0 1066 -Biological Process GO:0090087 regulation of peptide transport 0.12062265325599286 1.1430699099975015 1.0 1067 -Biological Process GO:0002791 regulation of peptide secretion 0.12062265325599286 1.1430699099975015 1.0 1067 -Phenotype MP:0011451 increased susceptibility to dopaminergic neuron neurotoxicity 0.1206133943990848 1.1429020949672313 1.0 1069 -Biological Process GO:0099504 synaptic vesicle cycle 0.12058384248142429 1.1423664720489823 1.0 1070 -Biological Process GO:0072538 T-helper 17 type immune response 0.12055316202794142 1.1418103946324007 1.0 1071 -Phenotype MP:0006320 abnormal interscapular fat pad morphology 0.12054100161036818 1.1415899893638655 1.0 1072 -Phenotype MP:0003822 decreased left ventricle systolic pressure 0.12051723391937019 1.1411592044598662 1.0 1073 -Biological Process GO:0032435 negative regulation of proteasomal ubiquitin-dependent protein catabolic process 0.12044745892091457 1.139894545809861 1.0 1074 -Phenotype MP:0008399 abnormal alpha-beta intraepithelial T cell morphology 0.12043833508407209 1.139729177992742 1.0 1075 -Phenotype MP:0005088 increased acute inflammation 0.12037893431527136 1.1386525502930858 1.0 1076 -Biological Process GO:0043217 myelin maintenance 0.12036610507083023 1.1384200226640695 1.0 1077 -Biological Process GO:1901796 regulation of signal transduction by p53 class mediator 0.12032560432997286 1.1376859543962003 1.0 1078 -Phenotype MP:0008143 abnormal dendrite morphology 0.12029790313275124 1.1371838754358676 1.0 1079 -Phenotype MP:0011497 abnormal glomerular capsule visceral layer morphology 0.12028938029163472 1.1370294005526116 1.0 1080 -Phenotype MP:0005326 abnormal podocyte morphology 0.12028938029163472 1.1370294005526116 1.0 1080 -Phenotype MP:0006054 spinal hemorrhage 0.12028913924576445 1.1370250316418036 1.0 1082 -Biological Process GO:1903909 regulation of receptor clustering 0.12026224737854718 1.1365376216347258 1.0 1083 -Phenotype MP:0005608 cardiac interstitial fibrosis 0.12024045245513837 1.1361425927701578 1.0 1084 -Biological Process GO:1905477 positive regulation of protein localization to membrane 0.12024009666260849 1.136136144097847 1.0 1085 -Biological Process GO:0031647 regulation of protein stability 0.12021444018105587 1.1356711252222844 1.0 1086 -Biological Process GO:0043954 cellular component maintenance 0.12009699254496908 1.133542409031853 1.0 1087 -Phenotype MP:0001142 abnormal vagina orifice morphology 0.12000077237485796 1.1317984366473406 1.0 1088 -Biological Process GO:0047496 vesicle transport along microtubule 0.11997806629214791 1.1313868931927713 1.0 1089 -Phenotype MP:0009865 abnormal aorta smooth muscle morphology 0.11990849560345707 1.1301259376186104 1.0 1090 -Biological Process GO:0002220 innate immune response activating cell surface receptor signaling pathway 0.119897812506229 1.129932308501916 1.0 1091 -Phenotype MP:0000557 absent hindlimb 0.11985979962394966 1.1292433322002287 1.0 1092 -Phenotype MP:0010617 thick mitral valve cusps 0.11984304101443588 1.128939585572457 1.0 1093 -Phenotype MP:0000372 irregular coat pigmentation 0.11983827028441363 1.1288531169931233 1.0 1094 -Biological Process GO:0035305 negative regulation of dephosphorylation 0.11982965019576075 1.1286968795166639 1.0 1095 -Phenotype MP:0008778 abnormal lymphangiogenesis 0.11981535152297385 1.1284377187768029 1.0 1096 -Phenotype MP:0002962 increased urine protein level 0.1198091715938675 1.128325708730601 1.0 1097 -Phenotype MP:0013205 abnormal nonmotile primary cilium morphology 0.11979855824879093 1.1281333438584595 1.0 1098 -Biological Process GO:0010638 positive regulation of organelle organization 0.11973976542848153 1.1270677351102234 1.0 1099 -Phenotype MP:0002938 white spotting 0.11972815144018434 1.1268572337689666 1.0 1100 -Phenotype MP:0013600 testis degeneration 0.11972626572074085 1.126823055460712 1.0 1101 -Phenotype MP:0030021 increased muscle cell glucose uptake 0.11961211643379621 1.1247541212246435 1.0 1102 -Phenotype MP:0004940 abnormal B-1 B cell morphology 0.1196077180614713 1.1246744015581476 1.0 1103 -Phenotype MP:0002694 abnormal pancreas secretion 0.11949120018686055 1.1225625371186174 1.0 1104 -Phenotype MP:0002803 abnormal operant conditioning behavior 0.11945306744448436 1.1218713883753446 1.0 1105 -Phenotype MP:0011719 abnormal natural killer cell mediated cytotoxicity 0.11942176177166419 1.1213039789765262 1.0 1106 -Phenotype MP:0020337 abnormal pyramidal neuron dendrite morphology 0.11941890460360494 1.1212521933458472 1.0 1107 -Biological Process GO:0042832 defense response to protozoan 0.11938678844836514 1.120670094106465 1.0 1108 -Biological Process GO:0046716 muscle cell cellular homeostasis 0.11935009693186716 1.120005067309646 1.0 1109 -Biological Process GO:0045744 negative regulation of G protein-coupled receptor signaling pathway 0.11934924638995614 1.1199896513983776 1.0 1110 -Biological Process GO:0150115 cell-substrate junction organization 0.11929995796554549 1.1190963080281775 1.0 1111 -Phenotype MP:0001876 decreased inflammatory response 0.11928357634031006 1.1187993941691494 1.0 1112 -Phenotype MP:0008557 abnormal interferon-alpha secretion 0.11924752562311502 1.118145981738498 1.0 1113 -Phenotype MP:0001898 abnormal long-term depression 0.11918592905164782 1.1170295555308185 1.0 1114 -Biological Process GO:0001946 lymphangiogenesis 0.11918104754214875 1.1169410790944199 1.0 1115 -Phenotype MP:0004565 decreased myocardial fiber size 0.1191642311934249 1.1166362859543861 1.0 1116 -Biological Process GO:0006879 intracellular iron ion homeostasis 0.11908089927745547 1.115125910738552 1.0 1117 -Biological Process GO:0045579 positive regulation of B cell differentiation 0.11905705010513301 1.1146936490009578 1.0 1118 -Phenotype MP:0010149 abnormal synaptic dopamine release 0.11904983163510097 1.1145628155969036 1.0 1119 -Phenotype MP:0031227 abnormal angiotensin II level 0.11904810018623402 1.1145314334136704 1.0 1120 -Phenotype MP:0001025 abnormal sympathetic neuron morphology 0.11904767448248776 1.1145237176137859 1.0 1121 -Phenotype MP:0010172 abnormal mammary gland epithelium physiology 0.11903226836720282 1.1142444846881059 1.0 1122 -Biological Process GO:0034405 response to fluid shear stress 0.1189856909609559 1.1134002780093708 1.0 1123 -Phenotype MP:0020101 abnormal hepatic glucose production 0.11896738506054172 1.1130684870266787 1.0 1124 -Phenotype MP:0013559 abnormal exocrine gland physiology 0.11896111447957947 1.112954833932734 1.0 1125 -Phenotype MP:0000596 abnormal liver development 0.11894971144822186 1.1127481561461074 1.0 1126 -Biological Process GO:0007422 peripheral nervous system development 0.11893491469710671 1.1124799678307518 1.0 1127 -Biological Process GO:0099172 presynapse organization 0.11892374097183689 1.1122774461735963 1.0 1128 -Biological Process GO:0032649 regulation of type II interferon production 0.11890675046332133 1.1119694964202782 1.0 1129 -Phenotype MP:0020519 renal glomerular immunoglobulin deposits 0.11890128174510894 1.111870376937013 1.0 1130 -Biological Process GO:0045428 regulation of nitric oxide biosynthetic process 0.11889519942395488 1.111760136016485 1.0 1131 -Phenotype MP:0008123 abnormal plasmacytoid dendritic cell number 0.118886823422241 1.111608322569629 1.0 1132 -Phenotype MP:0004242 abnormal plasmacytoid dendritic cell morphology 0.118886823422241 1.111608322569629 1.0 1132 -Phenotype MP:0001619 abnormal vascular permeability 0.11884622177368964 1.1108724253688917 1.0 1134 -Biological Process GO:0071887 leukocyte apoptotic process 0.11882063623722727 1.1104086923596717 1.0 1135 -Biological Process GO:0050852 T cell receptor signaling pathway 0.11877715873421635 1.1096206708407839 1.0 1136 -Phenotype MP:0008549 abnormal circulating interferon-alpha level 0.11870825517020167 1.1083718067752009 1.0 1137 -Biological Process GO:0051932 synaptic transmission, GABAergic 0.11862931330694215 1.1069410004344145 1.0 1138 -Biological Process GO:0072698 protein localization to microtubule cytoskeleton 0.1186120267668771 1.106627685165252 1.0 1139 -Phenotype MP:0030530 abnormal outer ear skin morphology 0.11857588271627761 1.1059725810842975 1.0 1140 -Phenotype MP:0001881 abnormal mammary gland physiology 0.1185699137245928 1.105864394238965 1.0 1141 -Phenotype MP:0013555 abnormal apocrine gland physiology 0.1185699137245928 1.105864394238965 1.0 1141 -Biological Process GO:0031663 lipopolysaccharide-mediated signaling pathway 0.11856424448228697 1.1057616402944328 1.0 1143 -Biological Process GO:0033084 regulation of immature T cell proliferation in thymus 0.1185365467699554 1.105259624497073 1.0 1144 -Biological Process GO:0033083 regulation of immature T cell proliferation 0.1185365467699554 1.105259624497073 1.0 1144 -Biological Process GO:0030901 midbrain development 0.11846725329653429 1.1040036933972444 1.0 1146 -Phenotype MP:0009719 reduced cerebellar foliation 0.11846132341738924 1.1038962154592973 1.0 1147 -Biological Process GO:1903432 regulation of TORC1 signaling 0.11842427378630838 1.1032246979033964 1.0 1148 -Phenotype MP:0003300 gastrointestinal ulcer 0.11842317858312357 1.1032048475528147 1.0 1149 -Biological Process GO:0042059 negative regulation of epidermal growth factor receptor signaling pathway 0.11842315188650943 1.1032043636817326 1.0 1150 -Phenotype MP:0010147 abnormal endocrine pancreas physiology 0.11841679048281095 1.103089064442872 1.0 1151 -Phenotype MP:0004976 abnormal B-1 B cell number 0.11837531469098395 1.1023373235605958 1.0 1152 -Phenotype MP:0008343 abnormal gamma-delta T cell morphology 0.11836950985760719 1.1022321120535483 1.0 1153 -Phenotype MP:0006138 congestive heart failure 0.11835488409177419 1.1019670228140923 1.0 1154 -Phenotype MP:0008595 abnormal circulating interleukin-6 level 0.11826242059386027 1.1002911394026302 1.0 1155 -Biological Process GO:0019915 lipid storage 0.11825011984372091 1.100068190632876 1.0 1156 -Phenotype MP:0002643 poikilocytosis 0.11823814149158984 1.0998510852660446 1.0 1157 -Biological Process GO:0031345 negative regulation of cell projection organization 0.11823128061887522 1.099726733245734 1.0 1158 -Phenotype MP:0011205 excessive folding of visceral yolk sac 0.11820106140029685 1.0991790156245598 1.0 1159 -Biological Process GO:0030301 cholesterol transport 0.1181993961202944 1.0991488327394807 1.0 1160 -Biological Process GO:0015918 sterol transport 0.1181993961202944 1.0991488327394807 1.0 1160 -Biological Process GO:0046640 regulation of alpha-beta T cell proliferation 0.11817792041376274 1.0987595896204356 1.0 1162 -Phenotype MP:0001346 abnormal lacrimal gland morphology 0.11814012446567645 1.0980745452099672 1.0 1163 -Phenotype MP:0009107 abnormal pancreas weight 0.11813673205419395 1.098013058393476 1.0 1164 -Phenotype MP:0020234 decreased basal metabolism 0.11813038247242336 1.097897973424822 1.0 1165 -Phenotype MP:0003544 abnormal vascular endothelial cell migration 0.1181201641507853 1.0977127682777903 1.0 1166 -Biological Process GO:0032272 negative regulation of protein polymerization 0.11810347619805384 1.0974103022908346 1.0 1167 -Biological Process GO:0051402 neuron apoptotic process 0.11807810384165462 1.096950433129939 1.0 1168 -Biological Process GO:0046325 negative regulation of glucose import 0.11805837700340804 1.096592887917786 1.0 1169 -Biological Process GO:0001909 leukocyte mediated cytotoxicity 0.11802078828053952 1.0959115994251958 1.0 1170 -Biological Process GO:0042100 B cell proliferation 0.11797659465531163 1.0951105983265703 1.0 1171 -Phenotype MP:0003326 liver failure 0.11790153121387792 1.0937500876478252 1.0 1172 -Biological Process GO:0032006 regulation of TOR signaling 0.11788763383588075 1.0934982003001288 1.0 1173 -Biological Process GO:0043687 post-translational protein modification 0.11784367687771813 1.092701488747299 1.0 1174 -Phenotype MP:0008349 abnormal gamma-delta intraepithelial T cell morphology 0.11783983098814155 1.0926317827261218 1.0 1175 -Phenotype MP:0003562 abnormal pancreatic beta cell physiology 0.11781470727437904 1.0921764201659891 1.0 1176 -Biological Process GO:0002827 positive regulation of T-helper 1 type immune response 0.11779932272859917 1.091897578183509 1.0 1177 -Phenotype MP:0003325 decreased liver function 0.11774343430717182 1.090884611115682 1.0 1178 -Phenotype MP:0008125 abnormal dendritic cell number 0.11772518563831502 1.090553857444143 1.0 1179 -Phenotype MP:0009504 abnormal mammary gland epithelium morphology 0.11769826958496898 1.0900660090680556 1.0 1180 -Phenotype MP:0020948 abnormal susceptibility to Coronaviridae infection 0.11766932213134407 1.0895413419461257 1.0 1181 -Biological Process GO:0044060 regulation of endocrine process 0.11761857662976172 1.0886215893277753 1.0 1182 -Phenotype MP:0011199 abnormal amniotic cavity morphology 0.11760931630018401 1.0884537476056462 1.0 1183 -Biological Process GO:0045619 regulation of lymphocyte differentiation 0.11759803468629537 1.0882492704876803 1.0 1184 -Biological Process GO:0042104 positive regulation of activated T cell proliferation 0.11757286518527321 1.0877930780421263 1.0 1185 -Biological Process GO:0045646 regulation of erythrocyte differentiation 0.11753777693312673 1.0871571101084425 1.0 1186 -Phenotype MP:0000530 abnormal kidney vasculature morphology 0.11747564400887778 1.0860309626080378 1.0 1187 -Phenotype MP:0002493 increased IgG level 0.11746702792084951 1.0858747976421426 1.0 1188 -Phenotype MP:0012706 decreased embryonic neuroepithelial cell proliferation 0.11745399707298454 1.0856386159891998 1.0 1189 -Biological Process GO:0046847 filopodium assembly 0.11744259247991562 1.085431909896851 1.0 1190 -Phenotype MP:0006084 abnormal circulating phospholipid level 0.11739504326900296 1.0845700894423533 1.0 1191 -Phenotype MP:0008526 decreased cranium width 0.11736159747207653 1.0839638906988844 1.0 1192 -Biological Process GO:0045346 regulation of MHC class II biosynthetic process 0.11736149188792977 1.0839619770061943 1.0 1193 -Phenotype MP:0010594 thick aortic valve 0.11734321692009508 1.0836307466706552 1.0 1194 -Phenotype MP:0000964 small dorsal root ganglion 0.1172724544104391 1.082348189566918 1.0 1195 -Phenotype MP:0008119 decreased Langerhans cell number 0.1172674154634652 1.082256859606065 1.0 1196 -Phenotype MP:0003943 abnormal hepatobiliary system development 0.11724210486775899 1.081798109846049 1.0 1197 -Phenotype MP:0011926 abnormal heart valve physiology 0.11721562927409235 1.0813182447183438 1.0 1198 -Phenotype MP:0002877 abnormal melanocyte morphology 0.11713978494020483 1.0799435805115687 1.0 1199 -Biological Process GO:1902165 regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator 0.11701934147005622 1.0777605653953886 1.0 1200 -Biological Process GO:0001779 natural killer cell differentiation 0.11694317193921022 1.0763800070552478 1.0 1201 -Phenotype MP:0001209 spontaneous skin ulceration 0.11693846111347406 1.0762946242297693 1.0 1202 -Biological Process GO:0090277 positive regulation of peptide hormone secretion 0.11690717821857644 1.0757276276764889 1.0 1203 -Phenotype MP:0001602 impaired myelopoiesis 0.11690103328467227 1.0756162519117076 1.0 1204 -Phenotype MP:0011888 abnormal circulating total protein level 0.11688545547425067 1.0753339070441494 1.0 1205 -Biological Process GO:0090278 negative regulation of peptide hormone secretion 0.11684895622288072 1.0746723650164118 1.0 1206 -Biological Process GO:0002792 negative regulation of peptide secretion 0.11684895622288072 1.0746723650164118 1.0 1206 -Phenotype MP:0011453 abnormal glomerular capillary endothelium morphology 0.11683594787596596 1.074436591188936 1.0 1208 -Biological Process GO:0060840 artery development 0.11683391336078519 1.0743997159860856 1.0 1209 -Phenotype MP:0013326 abnormal female reproductive gland physiology 0.11682901427938819 1.0743109210623603 1.0 1210 -Phenotype MP:0003507 abnormal ovary physiology 0.11682901427938819 1.0743109210623603 1.0 1210 -Phenotype MP:0008672 increased interleukin-13 secretion 0.11681461237970847 1.0740498893545911 1.0 1212 -Phenotype MP:0000559 abnormal femur morphology 0.11677839849324156 1.0733935195117483 1.0 1213 -Biological Process GO:0043627 response to estrogen 0.11674057456047826 1.072707967884302 1.0 1214 -Biological Process GO:0033688 regulation of osteoblast proliferation 0.11669904366151995 1.0719552281956939 1.0 1215 -Biological Process GO:0050919 negative chemotaxis 0.11669244216567742 1.0718355773321322 1.0 1216 -Phenotype MP:0004012 increased pulmonary artery pressure 0.11663485271601237 1.0707917794492234 1.0 1217 -Phenotype MP:0002330 abnormal bronchial provocation 0.1166201840083767 1.070525911897716 1.0 1218 -Phenotype MP:0004364 thin stria vascularis 0.11647920109133958 1.0679706231914416 1.0 1219 -Phenotype MP:0020328 abnormal capillary density 0.11641890770331065 1.0668778169371012 1.0 1220 -Biological Process GO:0006809 nitric oxide biosynthetic process 0.11637416291831282 1.0660668261718902 1.0 1221 -Biological Process GO:0046209 nitric oxide metabolic process 0.11637416291831282 1.0660668261718902 1.0 1221 -Biological Process GO:2001057 reactive nitrogen species metabolic process 0.11637416291831282 1.0660668261718902 1.0 1221 -Phenotype MP:0008636 decreased circulating interleukin-18 level 0.11636757057336833 1.0659473411666247 1.0 1224 -Phenotype MP:0009919 abnormal transitional stage T1 B cell morphology 0.11634622057565913 1.0655603764962105 1.0 1225 -Phenotype MP:0031215 abnormal response to myocardial ischemic injury 0.11633871257330752 1.0654242953736255 1.0 1226 -Biological Process GO:0031329 regulation of cellular catabolic process 0.11632150096739347 1.065112338271777 1.0 1227 -Phenotype MP:0003427 parakeratosis 0.11630738603036894 1.064856507707858 1.0 1228 -Phenotype MP:0003393 decreased cardiac output 0.11627063003140337 1.0641903121785101 1.0 1229 -Phenotype MP:0006128 pulmonary valve stenosis 0.11624601746001972 1.0637442139773188 1.0 1230 -Phenotype MP:0009304 increased retroperitoneal fat pad weight 0.1162340073472875 1.0635265329555985 1.0 1231 -Phenotype MP:0010466 vascular ring 0.11623398002635843 1.0635260377689266 1.0 1232 -Phenotype MP:0005461 abnormal dendritic cell morphology 0.11621248568466125 1.0631364568910309 1.0 1233 -Phenotype MP:0001575 cyanosis 0.11620869535022238 1.0630677577962173 1.0 1234 -Biological Process GO:0031398 positive regulation of protein ubiquitination 0.11618099957222572 1.062565777058312 1.0 1235 -Phenotype MP:0003962 abnormal adrenaline level 0.1161793751925454 1.0625363354838355 1.0 1236 -Biological Process GO:0032682 negative regulation of chemokine production 0.11614541700233605 1.0619208497090264 1.0 1237 -Phenotype MP:0005399 increased susceptibility to fungal infection 0.11612750359486501 1.061596172586694 1.0 1238 -Biological Process GO:0070555 response to interleukin-1 0.1161068295041392 1.061221458602515 1.0 1239 -Biological Process GO:0060445 branching involved in salivary gland morphogenesis 0.11606775095595057 1.0605131673077781 1.0 1240 -Biological Process GO:0010560 positive regulation of glycoprotein biosynthetic process 0.11605628693112002 1.0603053840259908 1.0 1241 -Biological Process GO:1903020 positive regulation of glycoprotein metabolic process 0.11605628693112002 1.0603053840259908 1.0 1241 -Phenotype MP:0002795 dilated cardiomyopathy 0.11600672095678166 1.0594070101158457 1.0 1243 -Phenotype MP:0008457 abnormal cortical intermediate zone morphology 0.11600332863275487 1.0593455248844725 1.0 1244 -Phenotype MP:0008705 increased interleukin-6 secretion 0.11596522652003183 1.05865493129787 1.0 1245 -Biological Process GO:0002367 cytokine production involved in immune response 0.11596345237772254 1.0586227753040693 1.0 1246 -Phenotype MP:0008782 increased B cell apoptosis 0.1159612603030632 1.0585830443654702 1.0 1247 -Biological Process GO:0000302 response to reactive oxygen species 0.11593271614746081 1.0580656869439202 1.0 1248 -Biological Process GO:1902036 regulation of hematopoietic stem cell differentiation 0.11591464405821905 1.0577381337445062 1.0 1249 -Biological Process GO:0060385 axonogenesis involved in innervation 0.11587262901711859 1.0569766190711405 1.0 1250 -Phenotype MP:0001835 abnormal antigen presentation 0.11585426860359993 1.0566438400487403 1.0 1251 -Phenotype MP:0009772 abnormal retina development 0.1157678958123819 1.0550783495441658 1.0 1252 -Phenotype MP:0004917 abnormal T cell selection 0.11576162902529763 1.054964765213542 1.0 1253 -Biological Process GO:0046546 development of primary male sexual characteristics 0.11570764782728105 1.0539863662093094 1.0 1254 -Phenotype MP:0010758 increased right ventricle systolic pressure 0.11569179139470598 1.0536989713679175 1.0 1255 -Biological Process GO:0016236 macroautophagy 0.11559434953165149 1.0519328560298733 1.0 1256 -Phenotype MP:0002664 decreased circulating adrenocorticotropin level 0.11558047893347223 1.0516814540613115 1.0 1257 -Biological Process GO:0045197 establishment or maintenance of epithelial cell apical/basal polarity 0.1155617188851531 1.0513414317337382 1.0 1258 -Phenotype MP:0009133 decreased white fat cell size 0.11555826757663001 1.0512788774195259 1.0 1259 -Phenotype MP:0003856 abnormal hindlimb stylopod morphology 0.11554311763726888 1.0510042876340127 1.0 1260 -Phenotype MP:0001627 abnormal cardiac output 0.11551638395599095 1.0505197447171668 1.0 1261 -Biological Process GO:0044403 biological process involved in symbiotic interaction 0.11541852338951175 1.048746040458742 1.0 1262 -Phenotype MP:0006414 decreased T cell apoptosis 0.115405355422737 1.0485073735514936 1.0 1263 -Biological Process GO:0045123 cellular extravasation 0.11534035463086167 1.0473292464927793 1.0 1264 -Biological Process GO:0060603 mammary gland duct morphogenesis 0.11531989790839714 1.0469584722672238 1.0 1265 -Biological Process GO:2000146 negative regulation of cell motility 0.11531475634962884 1.046865282487005 1.0 1266 -Biological Process GO:0140131 positive regulation of lymphocyte chemotaxis 0.11530319488877439 1.046655733195713 1.0 1267 -Phenotype MP:0000789 thickened cerebral cortex 0.11522700922284324 1.0452748824102054 1.0 1268 -Phenotype MP:0009387 abnormal epidermal pigmentation 0.11519031436452254 1.044609795043482 1.0 1269 -Phenotype MP:0004505 decreased renal glomerulus number 0.1151830524896148 1.0444781749342653 1.0 1270 -Phenotype MP:0008841 ruptured lens capsule 0.11518070890495491 1.0444356979055622 1.0 1271 -Biological Process GO:0050851 antigen receptor-mediated signaling pathway 0.11517742268527353 1.0443761357953816 1.0 1272 -Phenotype MP:0011895 abnormal circulating unsaturated transferrin level 0.1151104405177481 1.04316209667776 1.0 1273 -Phenotype MP:0014325 abnormal oligodendrocyte progenitor morphology 0.11510664603451914 1.0430933223869105 1.0 1274 -Biological Process GO:0070661 leukocyte proliferation 0.11509903499709184 1.0429553737730661 1.0 1275 -Biological Process GO:0055123 digestive system development 0.11505889560520055 1.0422278548868629 1.0 1276 -Biological Process GO:0045787 positive regulation of cell cycle 0.11501797899395538 1.0414862490468713 1.0 1277 -Biological Process GO:0048675 axon extension 0.11497722817063416 1.0407476480816444 1.0 1278 -Biological Process GO:0060541 respiratory system development 0.11495363088888055 1.040319951812969 1.0 1279 -Biological Process GO:0048002 antigen processing and presentation of peptide antigen 0.11488409717834958 1.0390596664609617 1.0 1280 -Phenotype MP:0002095 abnormal skin pigmentation 0.11484845338317728 1.0384136294150086 1.0 1281 -Phenotype MP:0008504 abnormal adrenal chromaffin cell morphology 0.11480678358948726 1.0376583722856583 1.0 1282 -Phenotype MP:0001839 abnormal level of surface class I molecules 0.11475386461280623 1.0366992258422278 1.0 1283 -Biological Process GO:1900078 positive regulation of cellular response to insulin stimulus 0.11474416783723351 1.036523473618987 1.0 1284 -Phenotype MP:0006410 abnormal common myeloid progenitor cell morphology 0.11474197886763693 1.0364837989590632 1.0 1285 -Biological Process GO:0046330 positive regulation of JNK cascade 0.11472238437397064 1.0361286524673967 1.0 1286 -Phenotype MP:0009338 increased splenocyte number 0.11471019565913787 1.0359077343163843 1.0 1287 -Phenotype MP:0008059 abnormal podocyte foot process morphology 0.11469073242003613 1.0355549667888755 1.0 1288 -Phenotype MP:0008173 increased follicular B cell number 0.11465688352789238 1.0349414620208328 1.0 1289 -Biological Process GO:0014013 regulation of gliogenesis 0.11465353570964754 1.0348807834483398 1.0 1290 -Phenotype MP:0011427 increased mesangial cell number 0.11462848142622517 1.0344266792999903 1.0 1291 -Phenotype MP:0002467 impaired neutrophil phagocytosis 0.11462706222857322 1.0344009566109709 1.0 1292 -Biological Process GO:0045732 positive regulation of protein catabolic process 0.11457253562907987 1.0334126723081274 1.0 1293 -Phenotype MP:0008501 increased IgG2b level 0.11454707119715313 1.03295113429571 1.0 1294 -Phenotype MP:0020815 abnormal photoreceptor outer segment number 0.11450073997592036 1.0321113896737941 1.0 1295 -Biological Process GO:1903050 regulation of proteolysis involved in protein catabolic process 0.1144932167346101 1.0319750323479655 1.0 1296 -Phenotype MP:0012777 abnormal liver glycogen level 0.11439028735188639 1.0301094567538074 1.0 1297 -Biological Process GO:0072175 epithelial tube formation 0.11438857561209115 1.0300784317937712 1.0 1298 -Biological Process GO:0050678 regulation of epithelial cell proliferation 0.11431777244977304 1.0287951378682219 1.0 1299 -Biological Process GO:0031341 regulation of cell killing 0.11431444329471374 1.028734797562437 1.0 1300 -Biological Process GO:0032007 negative regulation of TOR signaling 0.11424860030069683 1.0275414057491978 1.0 1301 -Phenotype MP:0013285 abnormal renal filtration 0.11424773241354091 1.027525675458646 1.0 1302 -Biological Process GO:0090128 regulation of synapse maturation 0.11423999269724461 1.0273853945646387 1.0 1303 -Biological Process GO:1903828 negative regulation of protein localization 0.11421947318115144 1.0270134822164407 1.0 1304 -Phenotype MP:0011521 decreased placental labyrinth size 0.11420183420069252 1.026693779031799 1.0 1305 -Phenotype MP:0002333 abnormal lung compliance 0.11419466365046338 1.026563814165109 1.0 1306 -Phenotype MP:0004956 decreased thymus weight 0.11418814042242365 1.0264455818906697 1.0 1307 -Phenotype MP:0006319 abnormal epididymal fat pad morphology 0.11418016589415514 1.0263010450740777 1.0 1308 -Phenotype MP:0003140 dilated heart atrium 0.11415888766175464 1.0259153811363104 1.0 1309 -Biological Process GO:0071679 commissural neuron axon guidance 0.11410968345223171 1.025023564145022 1.0 1310 -Phenotype MP:0013501 increased fibroblast apoptosis 0.11408761471799655 1.0246235725110144 1.0 1311 -Biological Process GO:0048853 forebrain morphogenesis 0.11407390786936866 1.0243751384721 1.0 1312 -Phenotype MP:0005602 decreased angiogenesis 0.1140686978417651 1.024280707707192 1.0 1313 -Phenotype MP:0008351 decreased gamma-delta intraepithelial T cell number 0.11405427009682212 1.0240192075589145 1.0 1314 -Phenotype MP:0003339 decreased pancreatic beta cell number 0.11405408655556626 1.0240158809083664 1.0 1315 -Phenotype MP:0004816 abnormal class switch recombination 0.11402914369773787 1.0235637963278332 1.0 1316 -Phenotype MP:0000846 abnormal medulla oblongata morphology 0.11401467813541832 1.023301610746758 1.0 1317 -Phenotype MP:0005232 abnormal mesenteric lymph node morphology 0.11401431833368114 1.0232950894083233 1.0 1318 -Biological Process GO:0022602 ovulation cycle process 0.11401046110696889 1.0232251779037063 1.0 1319 -Phenotype MP:0004589 abnormal cochlear hair cell development 0.11400858095360145 1.023191100479527 1.0 1320 -Phenotype MP:0031413 abnormal skeletal muscle triglyceride level 0.11399672001995353 1.022976123300495 1.0 1321 -Biological Process GO:0071375 cellular response to peptide hormone stimulus 0.11398415396872708 1.022748365998715 1.0 1322 -Biological Process GO:0010977 negative regulation of neuron projection development 0.11398316666368358 1.022730471281537 1.0 1323 -Biological Process GO:0000280 nuclear division 0.11396918337300066 1.0224770267826606 1.0 1324 -Biological Process GO:0032700 negative regulation of interleukin-17 production 0.11394927860371185 1.0221162566040205 1.0 1325 -Biological Process GO:0002294 CD4-positive, alpha-beta T cell differentiation involved in immune response 0.11394099722022855 1.0219661580946982 1.0 1326 -Biological Process GO:0042093 T-helper cell differentiation 0.11394099722022855 1.0219661580946982 1.0 1326 -Biological Process GO:0040018 positive regulation of multicellular organism growth 0.11391749373031845 1.0215401617854467 1.0 1328 -Biological Process GO:0030593 neutrophil chemotaxis 0.1138770588097473 1.0208072864978164 1.0 1329 -Biological Process GO:0033599 regulation of mammary gland epithelial cell proliferation 0.11380250350059673 1.019455985620597 1.0 1330 -Phenotype MP:0001198 tight skin 0.1137699968587802 1.0188668088858666 1.0 1331 -Phenotype MP:0006315 abnormal urine protein level 0.11375942909968151 1.0186752702509523 1.0 1332 -Phenotype MP:0005439 decreased glycogen level 0.1137065207200344 1.0177163158767573 1.0 1333 -Biological Process GO:1903429 regulation of cell maturation 0.1136710433017466 1.0170732943803678 1.0 1334 -Biological Process GO:1900180 regulation of protein localization to nucleus 0.11365785888555213 1.0168343293304982 1.0 1335 -Phenotype MP:0030420 short basicranium 0.11361461697215003 1.0160505778287117 1.0 1336 -Phenotype MP:0004055 heart atrium hypoplasia 0.11359562995340311 1.0157064417050632 1.0 1337 -Phenotype MP:0031577 decreased heart atrium size 0.11359562995340311 1.0157064417050632 1.0 1337 -Biological Process GO:0060561 apoptotic process involved in morphogenesis 0.11357042698067599 1.0152496425911877 1.0 1339 -Phenotype MP:0009409 abnormal skeletal muscle fiber type ratio 0.11356353838208899 1.015124788044684 1.0 1340 -Phenotype MP:0008479 decreased spleen white pulp amount 0.11353668556750773 1.0146380858592476 1.0 1341 -Phenotype MP:0010465 aberrant origin of the right subclavian artery 0.11350275350696704 1.0140230736797406 1.0 1342 -Phenotype MP:0014437 increased interleukin level 0.11349096404323467 1.01380939187941 1.0 1343 -Biological Process GO:0002711 positive regulation of T cell mediated immunity 0.11348849636855263 1.0137646657425257 1.0 1344 -Phenotype MP:0000727 absent CD8-positive, alpha-beta T cells 0.11344396831991521 1.0129576032828544 1.0 1345 -Biological Process GO:0036303 lymph vessel morphogenesis 0.11342137888220383 1.012548173996824 1.0 1346 -Biological Process GO:0042176 regulation of protein catabolic process 0.11339987467134338 1.0121584142422109 1.0 1347 -Biological Process GO:0043032 positive regulation of macrophage activation 0.11338787422381591 1.0119409084004987 1.0 1348 -Phenotype MP:0006197 ocular hypotelorism 0.11333217167692067 1.0109313102734105 1.0 1349 -Phenotype MP:0008661 decreased interleukin-10 secretion 0.11330945721208885 1.0105196148944695 1.0 1350 -Phenotype MP:0006047 aortic valve regurgitation 0.11328463648411624 1.010069743894473 1.0 1351 -Phenotype MP:0004040 abnormal susceptibility to kidney reperfusion injury 0.11327409389466347 1.0098786614546307 1.0 1352 -Phenotype MP:0000427 abnormal hair cycle 0.1132695624534108 1.0097965299389873 1.0 1353 -Phenotype MP:0004941 abnormal regulatory T cell morphology 0.11325269770706259 1.009490859601166 1.0 1354 -Phenotype MP:0005239 abnormal Bruch membrane morphology 0.11323965686057913 1.009254496725154 1.0 1355 -Phenotype MP:0008808 decreased spleen iron level 0.113206420627878 1.0086520962936327 1.0 1356 -Biological Process GO:0043373 CD4-positive, alpha-beta T cell lineage commitment 0.11314446419604818 1.0075291476849435 1.0 1357 -Biological Process GO:0045822 negative regulation of heart contraction 0.11311525831600111 1.00699979663299 1.0 1358 -Biological Process GO:0009755 hormone-mediated signaling pathway 0.11308370042915827 1.0064278159027138 1.0 1359 -Phenotype MP:0011897 decreased circulating unsaturated transferrin level 0.11307287686302969 1.0062316408137653 1.0 1360 -Biological Process GO:0048546 digestive tract morphogenesis 0.1130289158528952 1.0054348558197117 1.0 1361 -Phenotype MP:0005596 increased susceptibility to type I hypersensitivity reaction 0.11302031352636166 1.0052789402783058 1.0 1362 -Biological Process GO:0045931 positive regulation of mitotic cell cycle 0.11299992905140555 1.0049094755251755 1.0 1363 -Phenotype MP:0004993 decreased bone resorption 0.1129747022094918 1.0044522437868069 1.0 1364 -Biological Process GO:0046676 negative regulation of insulin secretion 0.11296486971914699 1.0042740317589907 1.0 1365 -Phenotype MP:0008256 abnormal myometrium morphology 0.11293602271526115 1.0037511852695828 1.0 1366 -Biological Process GO:0150077 regulation of neuroinflammatory response 0.11292692352872147 1.00358626423454 1.0 1367 -Phenotype MP:0008614 increased circulating interleukin-17 level 0.11286431247895456 1.0024514507995532 1.0 1368 -Phenotype MP:0005022 abnormal immature B cell morphology 0.11284563466617858 1.002112918975646 1.0 1369 -Phenotype MP:0011084 lethality at weaning, incomplete penetrance 0.11276702965713836 1.0006882180538728 1.0 1370 -Phenotype MP:0013502 decreased fibroblast apoptosis 0.11275232562259718 1.0004217102088842 1.0 1371 -Phenotype MP:0014139 abnormal ectoderm morphology 0.11270372458108024 0.9995408255236234 1.0 1372 -Phenotype MP:0002271 abnormal pulmonary alveolar duct morphology 0.112652392185276 0.9986104355585044 1.0 1373 -Biological Process GO:0031334 positive regulation of protein-containing complex assembly 0.11259881081618184 0.9976392833778682 1.0 1374 -Biological Process GO:0045684 positive regulation of epidermis development 0.11259524349673977 0.9975746263876913 1.0 1375 -Biological Process GO:0009948 anterior/posterior axis specification 0.11259454952322345 0.9975620482489638 1.0 1376 -Biological Process GO:0060907 positive regulation of macrophage cytokine production 0.11254961080084402 0.9967475424053919 1.0 1377 -Biological Process GO:0046883 regulation of hormone secretion 0.11254434109228695 0.9966520299344894 1.0 1378 -Biological Process GO:0046888 negative regulation of hormone secretion 0.11252517229155479 0.9963045990467401 1.0 1379 -Biological Process GO:1904950 negative regulation of establishment of protein localization 0.11252073972414867 0.9962242596008646 1.0 1380 -Biological Process GO:0016567 protein ubiquitination 0.11249901762141312 0.9958305505972267 1.0 1381 -Phenotype MP:0010963 abnormal compact bone volume 0.11248057833181924 0.9954963419608812 1.0 1382 -Phenotype MP:0000079 abnormal basioccipital bone morphology 0.11247697381794908 0.99543101082873 1.0 1383 -Phenotype MP:0003542 abnormal vascular endothelial cell development 0.11243065978852251 0.9945915778050496 1.0 1384 -Phenotype MP:0003236 abnormal lens capsule morphology 0.11230615848894632 0.9923350152979783 1.0 1385 -Phenotype MP:0008168 decreased B-1a cell number 0.11230023353148288 0.9922276265645796 1.0 1386 -Phenotype MP:0008090 increased T-helper 2 cell number 0.1122986245375528 0.9921984638539163 1.0 1387 -Phenotype MP:0005290 decreased oxygen consumption 0.11226340477043606 0.991560112236271 1.0 1388 -Biological Process GO:0002690 positive regulation of leukocyte chemotaxis 0.11224137574161985 0.991160840255472 1.0 1389 -Phenotype MP:0008387 hypochromic anemia 0.11221063440428025 0.9906036593305024 1.0 1390 -Phenotype MP:0020913 increased susceptibility to Riboviria infection 0.11220577449861113 0.9905155744594355 1.0 1391 -Phenotype MP:0001144 vagina atresia 0.11220136272699632 0.9904356119333444 1.0 1392 -Phenotype MP:0013203 abnormal primary cilium morphology 0.1121408459530151 0.989338756850869 1.0 1393 -Biological Process GO:0032386 regulation of intracellular transport 0.11212673020385644 0.9890829115671725 1.0 1394 -Biological Process GO:0010155 regulation of proton transport 0.11206852157408242 0.9880278911618984 1.0 1395 -Biological Process GO:2000108 positive regulation of leukocyte apoptotic process 0.11206335242410481 0.9879342012962294 1.0 1396 -Biological Process GO:0120163 negative regulation of cold-induced thermogenesis 0.1120613982004689 0.9878987813624436 1.0 1397 -Biological Process GO:0046628 positive regulation of insulin receptor signaling pathway 0.1120338004737147 0.9873985777847627 1.0 1398 -Biological Process GO:0032623 interleukin-2 production 0.11199991179028201 0.9867843518071343 1.0 1399 -Biological Process GO:1903322 positive regulation of protein modification by small protein conjugation or removal 0.11189970944652439 0.9849682032784537 1.0 1400 -Biological Process GO:1901875 positive regulation of post-translational protein modification 0.11189970944652439 0.9849682032784537 1.0 1400 -Biological Process GO:0050853 B cell receptor signaling pathway 0.11189836229916583 0.9849437864873748 1.0 1402 -Biological Process GO:0016241 regulation of macroautophagy 0.11188844116288466 0.984763967768728 1.0 1403 -Phenotype MP:0009489 abnormal blood vessel endothelium morphology 0.11188776887876284 0.9847517827461736 1.0 1404 -Phenotype MP:0009936 abnormal dendritic spine morphology 0.1117632780411355 0.9824954098599467 1.0 1405 -Biological Process GO:0010639 negative regulation of organelle organization 0.11176242583182783 0.982479963727429 1.0 1406 -Phenotype MP:0002999 abnormal bone healing 0.11176032216212606 0.9824418351119653 1.0 1407 -Biological Process GO:0001954 positive regulation of cell-matrix adhesion 0.11175202489691394 0.9822914487493117 1.0 1408 -Phenotype MP:0000857 abnormal cerebellar foliation 0.11174258403407755 0.9821203348960146 1.0 1409 -Biological Process GO:0051223 regulation of protein transport 0.11172413323871244 0.9817859177197419 1.0 1410 -Phenotype MP:0001860 liver inflammation 0.11167698260574566 0.9809313214151273 1.0 1411 -Phenotype MP:0012262 abnormal hindbrain size 0.1116551103995802 0.9805348918152123 1.0 1412 -Phenotype MP:0005161 hematuria 0.11164729097717085 0.9803931662629815 1.0 1413 -Phenotype MP:0011177 abnormal erythroblast number 0.11163337282507457 0.9801409023886677 1.0 1414 -Biological Process GO:0097396 response to interleukin-17 0.11163054996001032 0.9800897384932851 1.0 1415 -Biological Process GO:0001841 neural tube formation 0.11160939918794044 0.9797063847499028 1.0 1416 -Biological Process GO:0060491 regulation of cell projection assembly 0.11154173979534243 0.9784800710559285 1.0 1417 -Phenotype MP:0008589 abnormal circulating interleukin-1 level 0.11152791745928348 0.978229543829169 1.0 1418 -Biological Process GO:0048332 mesoderm morphogenesis 0.11148531526413985 0.9774573870998233 1.0 1419 -Biological Process GO:0007163 establishment or maintenance of cell polarity 0.11147804031419528 0.977325530008037 1.0 1420 -Phenotype MP:0008092 abnormal T-helper 2 cell differentiation 0.11147761866651629 0.9773178877236043 1.0 1421 -Biological Process GO:0032388 positive regulation of intracellular transport 0.11145396573734245 0.9768891828559622 1.0 1422 -Phenotype MP:0020915 abnormal susceptibility to Herpesvirales infection 0.11144726972339059 0.9767678188695456 1.0 1423 -Phenotype MP:0008088 abnormal T-helper 1 cell differentiation 0.11141835606869899 0.9762437643468894 1.0 1424 -Phenotype MP:0008024 absent lymph nodes 0.1114173596929714 0.976225705225278 1.0 1425 -Biological Process GO:0032653 regulation of interleukin-10 production 0.111395411978789 0.9758279070568371 1.0 1426 -Biological Process GO:1903053 regulation of extracellular matrix organization 0.11136725856776652 0.975317631806894 1.0 1427 -Phenotype MP:0001505 hunched posture 0.1113483114975874 0.974974219743481 1.0 1428 -Biological Process GO:0032656 regulation of interleukin-13 production 0.11133998542664092 0.9748233112823405 1.0 1429 -Phenotype MP:0005014 increased B cell number 0.11133359011726529 0.974707397509494 1.0 1430 -Phenotype MP:0008688 decreased interleukin-2 secretion 0.1113059697821287 0.9742067841591584 1.0 1431 -Phenotype MP:0010103 small thoracic cage 0.11124334480203868 0.9730717182397 1.0 1432 -Phenotype MP:0020180 abnormal IgM level 0.1111774937995984 0.9718781812753019 1.0 1433 -Phenotype MP:0003799 impaired macrophage chemotaxis 0.11117486963900869 0.971830618860938 1.0 1434 -Biological Process GO:0007405 neuroblast proliferation 0.11116517216071164 0.9716548539009519 1.0 1435 -Phenotype MP:0001656 focal hepatic necrosis 0.11116279871795476 0.9716118356998881 1.0 1436 -Phenotype MP:0002340 abnormal axillary lymph node morphology 0.11112848118304808 0.9709898368704049 1.0 1437 -Phenotype MP:0005297 spina bifida occulta 0.11109439435791846 0.9703720196119953 1.0 1438 -Phenotype MP:0009447 abnormal platelet ATP level 0.11108902394972953 0.9702746819793114 1.0 1439 -Phenotype MP:0014244 abnormal cellular ATP level 0.11108902394972953 0.9702746819793114 1.0 1439 -Phenotype MP:0014246 decreased cellular ATP level 0.11108902394972953 0.9702746819793114 1.0 1439 -Phenotype MP:0009448 decreased platelet ATP level 0.11108902394972953 0.9702746819793114 1.0 1439 -Phenotype MP:0009671 abnormal uterus physiology 0.11108804711113773 0.9702569769645911 1.0 1443 -Phenotype MP:0006007 abnormal basal ganglion morphology 0.11100225156542332 0.9687019489255915 1.0 1444 -Phenotype MP:0004808 abnormal hematopoietic stem cell morphology 0.1109622846392162 0.9679775559472944 1.0 1445 -Biological Process GO:0002831 regulation of response to biotic stimulus 0.11094858540605901 0.967729259937346 1.0 1446 -Biological Process GO:0010594 regulation of endothelial cell migration 0.11093683270442589 0.9675162444431114 1.0 1447 -Phenotype MP:0005327 abnormal mesangial cell morphology 0.1109267838271536 0.9673341104431611 1.0 1448 -Phenotype MP:0005533 increased body temperature 0.11092527489773885 0.9673067613829125 1.0 1449 -Phenotype MP:0011044 increased lung elastance 0.11091353117648062 0.9670939086562741 1.0 1450 -Phenotype MP:0008183 absent marginal zone B cells 0.11088293263293958 0.966539315841896 1.0 1451 -Biological Process GO:0045216 cell-cell junction organization 0.11086105348912956 0.9661427604984852 1.0 1452 -Biological Process GO:0030889 negative regulation of B cell proliferation 0.11085924592521612 0.9661099987444306 1.0 1453 -Phenotype MP:0003887 increased hepatocyte apoptosis 0.11085305824357572 0.9659978481850152 1.0 1454 -Biological Process GO:0031333 negative regulation of protein-containing complex assembly 0.11083048459768419 0.9655887051227329 1.0 1455 -Biological Process GO:0050870 positive regulation of T cell activation 0.11077024025176574 0.9644967877473692 1.0 1456 -Biological Process GO:0098657 import into cell 0.11075232531674406 0.9641720829384705 1.0 1457 -Phenotype MP:0003790 absent CD4-positive, alpha-beta T cells 0.11075062105400602 0.9641411934986818 1.0 1458 -Phenotype MP:0008260 abnormal autophagy 0.11072034441716117 0.9635924351822878 1.0 1459 -Biological Process GO:0032371 regulation of sterol transport 0.11071574116938199 0.9635090021869326 1.0 1460 -Biological Process GO:0032374 regulation of cholesterol transport 0.11071574116938199 0.9635090021869326 1.0 1460 -Phenotype MP:0001139 abnormal vagina morphology 0.11071284710442852 0.9634565478070245 1.0 1462 -Biological Process GO:0001704 formation of primary germ layer 0.1106996985168699 0.9632182321444029 1.0 1463 -Biological Process GO:0007369 gastrulation 0.11067360567569084 0.9627453043331429 1.0 1464 -Biological Process GO:0055088 lipid homeostasis 0.11065092939673382 0.9623343010659602 1.0 1465 -Phenotype MP:0001222 epidermal hyperplasia 0.11062369705189767 0.9618407199664369 1.0 1466 -Phenotype MP:0010293 increased integument system tumor incidence 0.11061806795466356 0.9617386936437367 1.0 1467 -Biological Process GO:0014004 microglia differentiation 0.11060410691356781 0.9614856524144195 1.0 1468 -Phenotype MP:0011065 abnormal kidney epithelial cell primary cilium morphology 0.11058659589238806 0.9611682684675108 1.0 1469 -Phenotype MP:0008049 increased memory T cell number 0.11057949356478658 0.9610395401230438 1.0 1470 -Biological Process GO:0043547 positive regulation of GTPase activity 0.11056645022705303 0.9608031320935951 1.0 1471 -Phenotype MP:0008056 abnormal retina ganglion cell morphology 0.11056592619272099 0.9607936340704409 1.0 1472 -Phenotype MP:0001882 abnormal lactation 0.11056352264608826 0.9607500702423214 1.0 1473 -Phenotype MP:0005112 abnormal spinal cord ventral horn morphology 0.11054302676219141 0.9603785862232118 1.0 1474 -Biological Process GO:0002467 germinal center formation 0.11052999491419369 0.9601423864430519 1.0 1475 -Biological Process GO:1905207 regulation of cardiocyte differentiation 0.11049316014255883 0.9594747631739722 1.0 1476 -Phenotype MP:0009687 empty decidua capsularis 0.11048439350165673 0.9593158694657139 1.0 1477 -Biological Process GO:0007030 Golgi organization 0.11048188506690837 0.9592704045603365 1.0 1478 -Phenotype MP:0010776 abnormal placenta metrial gland morphology 0.1104557809258584 0.9587972719410531 1.0 1479 -Phenotype MP:0008054 abnormal uterine NK cell morphology 0.1104557809258584 0.9587972719410531 1.0 1479 -Biological Process GO:0043244 regulation of protein-containing complex disassembly 0.11044924810484458 0.958678865795773 1.0 1481 -Phenotype MP:0011941 increased fluid intake 0.11042751168559728 0.9582848973080672 1.0 1482 -Phenotype MP:0008737 abnormal spleen physiology 0.1103943655921451 0.9576841306333846 1.0 1483 -Phenotype MP:0008567 decreased interferon-gamma secretion 0.11034656339160165 0.9568177247896781 1.0 1484 -Phenotype MP:0008513 thin retina inner plexiform layer 0.11029126163812086 0.9558153909674222 1.0 1485 -Phenotype MP:0030762 decreased adrenaline level 0.11022878572259887 0.9546830268150657 1.0 1486 -Biological Process GO:0042058 regulation of epidermal growth factor receptor signaling pathway 0.11020251173013162 0.9542068156709694 1.0 1487 -Biological Process GO:0062014 negative regulation of small molecule metabolic process 0.11018369253560523 0.9538657213295761 1.0 1488 -Biological Process GO:0070244 negative regulation of thymocyte apoptotic process 0.11017002135198617 0.9536179337122013 1.0 1489 -Phenotype MP:0004972 abnormal regulatory T cell number 0.11014560138305629 0.9531753263940561 1.0 1490 -Phenotype MP:0003073 abnormal metacarpal bone morphology 0.11013347806343865 0.9529555935189493 1.0 1491 -Phenotype MP:0003071 decreased vascular permeability 0.11011010718400527 0.952532000749507 1.0 1492 -Phenotype MP:0006323 abnormal extraembryonic mesoderm development 0.11006384916877554 0.9516935829725499 1.0 1493 -Biological Process GO:0006914 autophagy 0.1100520114160991 0.9514790259442414 1.0 1494 -Biological Process GO:0061919 process utilizing autophagic mechanism 0.1100520114160991 0.9514790259442414 1.0 1494 -Biological Process GO:0014909 smooth muscle cell migration 0.11003489148549228 0.9511687304399974 1.0 1496 -Phenotype MP:0001085 small petrosal ganglion 0.11000422246104569 0.9506128601725367 1.0 1497 -Phenotype MP:0008115 abnormal dendritic cell differentiation 0.10995884304833137 0.9497903668999955 1.0 1498 -Biological Process GO:0002262 myeloid cell homeostasis 0.1099551489895727 0.9497234127836763 1.0 1499 -Biological Process GO:1901798 positive regulation of signal transduction by p53 class mediator 0.10993330666171164 0.9493275247223771 1.0 1500 -Phenotype MP:0008476 increased spleen red pulp amount 0.10991829178997492 0.9490553830120103 1.0 1501 -Biological Process GO:0006606 protein import into nucleus 0.10990713231597327 0.9488531196563948 1.0 1502 -Biological Process GO:2000178 negative regulation of neural precursor cell proliferation 0.10986927406555991 0.9481669460280319 1.0 1503 -Biological Process GO:0033365 protein localization to organelle 0.1098648857394493 0.9480874084472701 1.0 1504 -Phenotype MP:0010316 increased thyroid tumor incidence 0.10984767174399634 0.9477754080354811 1.0 1505 -Biological Process GO:0045777 positive regulation of blood pressure 0.10984219614336632 0.9476761638096982 1.0 1506 -Phenotype MP:0000270 abnormal heart tube morphology 0.10979767881195945 0.9468692955978035 1.0 1507 -Phenotype MP:0008126 increased dendritic cell number 0.10978967339617474 0.9467241989508223 1.0 1508 -Biological Process GO:0070613 regulation of protein processing 0.10978749739127003 0.9466847592734865 1.0 1509 -Phenotype MP:0008117 abnormal Langerhans cell morphology 0.10978524952386592 0.9466440171019411 1.0 1510 -Biological Process GO:0019229 regulation of vasoconstriction 0.1097803642582369 0.9465554725863973 1.0 1511 -Phenotype MP:0000930 wavy neural tube 0.10976563037742293 0.9462884237833596 1.0 1512 -Biological Process GO:0010660 regulation of muscle cell apoptotic process 0.10968662016249797 0.9448563785815649 1.0 1513 -Biological Process GO:0051588 regulation of neurotransmitter transport 0.10967196652710776 0.9445907842116553 1.0 1514 -Phenotype MP:0012575 increased noradrenaline level 0.10953995233672886 0.9421980519797475 1.0 1515 -Phenotype MP:0005666 abnormal adipose tissue physiology 0.10951656395002862 0.9417741418944047 1.0 1516 -Biological Process GO:0006611 protein export from nucleus 0.10948627096434072 0.9412250872583223 1.0 1517 -Phenotype MP:0011179 decreased erythroblast number 0.10947846254538951 0.9410835611416892 1.0 1518 -Phenotype MP:0011698 abnormal brown adipose tissue physiology 0.10946576088665816 0.9408533459795315 1.0 1519 -Phenotype MP:0009676 abnormal hemostasis 0.10944782851697221 0.9405283251706404 1.0 1520 -Biological Process GO:0045621 positive regulation of lymphocyte differentiation 0.10944068436659105 0.9403988387962018 1.0 1521 -Phenotype MP:0008344 abnormal mature gamma-delta T cell morphology 0.10937699087405928 0.9392444062908314 1.0 1522 -Biological Process GO:0051250 negative regulation of lymphocyte activation 0.10927885145667104 0.9374656479124214 1.0 1523 -Biological Process GO:1904645 response to amyloid-beta 0.10926210306344886 0.9371620864530026 1.0 1524 -Biological Process GO:0051962 positive regulation of nervous system development 0.10925825701447511 0.937092377542782 1.0 1525 -Phenotype MP:0001231 abnormal epidermis stratum basale morphology 0.10922865617126631 0.9365558678582241 1.0 1526 -Phenotype MP:0003548 pulmonary hypertension 0.10921439061780991 0.9362973073999644 1.0 1527 -Biological Process GO:0001562 response to protozoan 0.10918485163928027 0.9357619190010154 1.0 1528 -Biological Process GO:0032722 positive regulation of chemokine production 0.10917867662549396 0.9356499980440596 1.0 1529 -Biological Process GO:0048762 mesenchymal cell differentiation 0.10915356650877095 0.935194881927696 1.0 1530 -Phenotype MP:0005597 decreased susceptibility to type I hypersensitivity reaction 0.10914068693941359 0.9349614421690912 1.0 1531 -Phenotype MP:0006087 increased body mass index 0.10914035669831312 0.934955456611606 1.0 1532 -Biological Process GO:0046006 regulation of activated T cell proliferation 0.10913946955474929 0.9349393773023027 1.0 1533 -Phenotype MP:0002551 abnormal blood coagulation 0.1091100275367165 0.9344057462940204 1.0 1534 -Phenotype MP:0011049 impaired adaptive thermogenesis 0.10909949622911752 0.9342148683356442 1.0 1535 -Biological Process GO:1903523 negative regulation of blood circulation 0.10906808078245656 0.9336454693067235 1.0 1536 -Phenotype MP:0002465 abnormal eosinophil physiology 0.1090473864211805 0.9332703879226554 1.0 1537 -Biological Process GO:0009620 response to fungus 0.10904069017013773 0.9331490196390111 1.0 1538 -Biological Process GO:2000059 negative regulation of ubiquitin-dependent protein catabolic process 0.10902387517954204 0.9328442511147935 1.0 1539 -Phenotype MP:0020154 impaired humoral immune response 0.108979956951053 0.9320482415299723 1.0 1540 -Biological Process GO:0071219 cellular response to molecule of bacterial origin 0.1089628211772522 0.931737658870834 1.0 1541 -Phenotype MP:0012082 delayed heart development 0.10891954754340949 0.9309533324420611 1.0 1542 -Biological Process GO:0002478 antigen processing and presentation of exogenous peptide antigen 0.10891717969485848 0.9309104156349207 1.0 1543 -Biological Process GO:0051654 establishment of mitochondrion localization 0.10889998991020178 0.9305988540392347 1.0 1544 -Biological Process GO:0043112 receptor metabolic process 0.10888954915535198 0.9304096173323106 1.0 1545 -Biological Process GO:0006997 nucleus organization 0.10882310498678871 0.9292053293441227 1.0 1546 -Phenotype MP:0006173 abnormal myeloid dendritic cell morphology 0.10880425015616657 0.9288635891052341 1.0 1547 -Biological Process GO:0001774 microglial cell activation 0.10880232473065732 0.9288286911320474 1.0 1548 -Phenotype MP:0011377 renal glomerulus fibrosis 0.10873164488617149 0.9275476323188842 1.0 1549 -Biological Process GO:0071398 cellular response to fatty acid 0.10869863034831329 0.9269492500644603 1.0 1550 -Biological Process GO:0039532 negative regulation of cytoplasmic pattern recognition receptor signaling pathway 0.10867447391311846 0.9265114192454191 1.0 1551 -Biological Process GO:1900227 positive regulation of NLRP3 inflammasome complex assembly 0.10865766812294586 0.9262068174771301 1.0 1552 -Biological Process GO:0042542 response to hydrogen peroxide 0.10861571719670438 0.9254464648734569 1.0 1553 -Phenotype MP:0011176 abnormal erythroblast morphology 0.1085897528832156 0.9249758666022737 1.0 1554 -Phenotype MP:0003587 ureter obstruction 0.10856430906412173 0.9245147021935538 1.0 1555 -Phenotype MP:0001548 hyperlipidemia 0.10852755850070928 0.923848605182578 1.0 1556 -Phenotype MP:0003352 increased circulating renin level 0.10852361263504828 0.92377708711378 1.0 1557 -Phenotype MP:0004366 abnormal strial marginal cell morphology 0.10849759433458095 0.9233055103388214 1.0 1558 -Phenotype MP:0009476 enlarged cecum 0.10846641434211746 0.922740378872697 1.0 1559 -Biological Process GO:0120032 regulation of plasma membrane bounded cell projection assembly 0.10843401182335421 0.9221530893486142 1.0 1560 -Phenotype MP:0013771 decreased effector memory T-helper cell number 0.10840772655323505 0.9216766737992098 1.0 1561 -Phenotype MP:0008680 abnormal interleukin-17 secretion 0.10839111348797004 0.9213755651334194 1.0 1562 -Biological Process GO:0045581 negative regulation of T cell differentiation 0.10836961169651949 0.920985849230153 1.0 1563 -Phenotype MP:0004974 decreased regulatory T cell number 0.10833521932075563 0.9203624939242887 1.0 1564 -Biological Process GO:0060706 cell differentiation involved in embryonic placenta development 0.10829723955432313 0.919674117841062 1.0 1565 -Phenotype MP:0001123 dilated uterus 0.10828945932581102 0.9195331026708057 1.0 1566 -Biological Process GO:0071634 regulation of transforming growth factor beta production 0.1082866044374603 0.9194813583594126 1.0 1567 -Phenotype MP:0021157 increased heart left ventricle wall thickness 0.10828566533297723 0.9194643372682759 1.0 1568 -Phenotype MP:0012704 abnormal embryonic neuroepithelial cell proliferation 0.1082803957005728 0.9193688261776257 1.0 1569 -Biological Process GO:0045063 T-helper 1 cell differentiation 0.10824892413494036 0.9187984100029614 1.0 1570 -Biological Process GO:0060688 regulation of morphogenesis of a branching structure 0.10821267933616707 0.9181414798804121 1.0 1571 -Biological Process GO:0045620 negative regulation of lymphocyte differentiation 0.10820344001874227 0.9179740189995802 1.0 1572 -Biological Process GO:0044088 regulation of vacuole organization 0.10819727091858344 0.9178622052260038 1.0 1573 -Phenotype MP:0008098 decreased plasma cell number 0.1081934251816683 0.9177925019717863 1.0 1574 -Phenotype MP:0004722 abnormal platelet dense granule number 0.10818794563489376 0.9176931862228803 1.0 1575 -Phenotype MP:0020432 decreased platelet dense granule number 0.10818794563489376 0.9176931862228803 1.0 1575 -Phenotype MP:0002281 abnormal respiratory mucosa goblet cell morphology 0.10817962013642979 0.917542288137877 1.0 1577 -Biological Process GO:0010656 negative regulation of muscle cell apoptotic process 0.1081499312843015 0.9170041833082991 1.0 1578 -Phenotype MP:0008553 increased circulating tumor necrosis factor level 0.10810420309934876 0.9161753686049022 1.0 1579 -Phenotype MP:0001938 delayed sexual maturation 0.10809483400242237 0.9160055554951501 1.0 1580 -Biological Process GO:0014020 primary neural tube formation 0.10809482917249802 0.9160054679536848 1.0 1581 -Phenotype MP:0030940 impaired autophagy 0.10806052155722023 0.9153836489155992 1.0 1582 -Biological Process GO:0001838 embryonic epithelial tube formation 0.10804997272941763 0.915192453406846 1.0 1583 -Biological Process GO:0002793 positive regulation of peptide secretion 0.10799077851190164 0.9141195694101593 1.0 1584 -Phenotype MP:0004381 abnormal hair follicle melanocyte morphology 0.10796737997022743 0.9136954752678338 1.0 1585 -Biological Process GO:0071560 cellular response to transforming growth factor beta stimulus 0.10794837156483106 0.913350951515209 1.0 1586 -Phenotype MP:0009233 enlarged sperm head 0.10791314784906247 0.9127125283289956 1.0 1587 -Phenotype MP:0005481 increased chronic myelocytic leukemia incidence 0.10790652821674729 0.9125925487452974 1.0 1588 -Biological Process GO:0032609 type II interferon production 0.10790074730929977 0.9124877708911922 1.0 1589 -Phenotype MP:0011514 skin hemorrhage 0.1078721298321591 0.9119690845306286 1.0 1590 -Phenotype MP:0003417 premature endochondral bone ossification 0.10783134429289254 0.9112298543454587 1.0 1591 -Phenotype MP:0002499 chronic inflammation 0.10776667518336003 0.9100577389664747 1.0 1592 -Phenotype MP:0002658 abnormal liver regeneration 0.10774834142984524 0.9097254431516022 1.0 1593 -Phenotype MP:0003243 abnormal dopaminergic neuron morphology 0.10771095428248423 0.9090478081769602 1.0 1594 -Phenotype MP:0003252 abnormal bile duct physiology 0.10770000240524036 0.9088493074733155 1.0 1595 -Phenotype MP:0008499 increased IgG1 level 0.10764433131602535 0.9078402795107317 1.0 1596 -Phenotype MP:0005358 abnormal incisor morphology 0.1075841587666152 0.9067496634335016 1.0 1597 -Biological Process GO:0010936 negative regulation of macrophage cytokine production 0.10757740727783105 0.9066272939762422 1.0 1598 -Phenotype MP:0002751 abnormal autonomic nervous system morphology 0.10756287571400747 0.9063639121303897 1.0 1599 -Biological Process GO:0046636 negative regulation of alpha-beta T cell activation 0.10755176850402148 0.9061625960501732 1.0 1600 -Phenotype MP:0011364 abnormal metanephros morphology 0.10752710413223576 0.9057155589764914 1.0 1601 -Phenotype MP:0004194 abnormal kidney pelvis morphology 0.10752177786781003 0.9056190214411663 1.0 1602 -Biological Process GO:0007264 small GTPase-mediated signal transduction 0.10749699766692522 0.905169884986971 1.0 1603 -Biological Process GO:0010719 negative regulation of epithelial to mesenchymal transition 0.10749343708707171 0.9051053501505619 1.0 1604 -Phenotype MP:0031120 decreased susceptibility to induced thrombosis 0.10747259076709548 0.904727514543794 1.0 1605 -Biological Process GO:0043300 regulation of leukocyte degranulation 0.10740637511442064 0.9035273683628632 1.0 1606 -Phenotype MP:0005337 abnormal retroperitoneal fat pad morphology 0.1073710617332132 0.9028873200075298 1.0 1607 -Biological Process GO:0032652 regulation of interleukin-1 production 0.10736003073948563 0.9026873853325817 1.0 1608 -Phenotype MP:0003356 impaired luteinization 0.10733997493384695 0.9023238776486666 1.0 1609 -Phenotype MP:0008074 increased CD4-positive, alpha-beta T cell number 0.10733916112406694 0.9023091275003252 1.0 1610 -Phenotype MP:0004274 abnormal embryonic/fetal subventricular zone morphology 0.10730567510905298 0.9017021998116267 1.0 1611 -Phenotype MP:0003191 abnormal cellular cholesterol metabolism 0.10729664493179836 0.9015385295568233 1.0 1612 -Phenotype MP:0001685 abnormal endoderm development 0.10729161366199935 0.9014473387433135 1.0 1613 -Biological Process GO:0042326 negative regulation of phosphorylation 0.10728067434923949 0.9012490657685649 1.0 1614 -Biological Process GO:1900225 regulation of NLRP3 inflammasome complex assembly 0.10727871033208036 0.9012134683290232 1.0 1615 -Phenotype MP:0008484 decreased spleen germinal center size 0.1072108653053313 0.8999837900511714 1.0 1616 -Phenotype MP:0013763 increased T-helper cell number 0.10716758306662799 0.8991993076609275 1.0 1617 -Phenotype MP:0009298 increased mesenteric fat pad weight 0.1071471177575678 0.8988283778049496 1.0 1618 -Phenotype MP:0009750 impaired behavioral response to addictive substance 0.10708149461583183 0.8976389707727203 1.0 1619 -Phenotype MP:0003658 abnormal capillary morphology 0.10707689223452599 0.8975555534820305 1.0 1620 -Biological Process GO:0032436 positive regulation of proteasomal ubiquitin-dependent protein catabolic process 0.10707645810156718 0.8975476849042626 1.0 1621 -Biological Process GO:0032816 positive regulation of natural killer cell activation 0.10706461695619407 0.8973330663839684 1.0 1622 -Biological Process GO:0048284 organelle fusion 0.10704395003682976 0.8969584823793603 1.0 1623 -Phenotype MP:0003924 diaphragmatic hernia 0.10701344963178194 0.8964056683066102 1.0 1624 -Biological Process GO:0030336 negative regulation of cell migration 0.10700954528211026 0.8963349027072662 1.0 1625 -Phenotype MP:0008588 abnormal circulating interleukin level 0.10699733517832755 0.8961135968855815 1.0 1626 -Biological Process GO:0003094 glomerular filtration 0.1069873103749327 0.8959318992201067 1.0 1627 -Biological Process GO:0048873 homeostasis of number of cells within a tissue 0.10696653234638498 0.8955553013825641 1.0 1628 -Biological Process GO:0050796 regulation of insulin secretion 0.106963128958527 0.8954936156213432 1.0 1629 -Phenotype MP:0001777 abnormal body temperature homeostasis 0.10695412571819984 0.8953304335932555 1.0 1630 -Phenotype MP:0002811 macrocytic anemia 0.10688444170888034 0.8940674241041331 1.0 1631 -Phenotype MP:0000523 cortical renal glomerulopathies 0.10680737414537478 0.8926705890918886 1.0 1632 -Phenotype MP:0011820 decreased pancreatic beta cell proliferation 0.1067872643154254 0.8923061022275601 1.0 1633 -Phenotype MP:0003564 abnormal insulin secretion 0.10675903318592217 0.8917944183448527 1.0 1634 -Phenotype MP:0005172 decreased eye pigmentation 0.10675041337880442 0.8916381859711642 1.0 1635 -Phenotype MP:0020982 abnormal skin adnexa development 0.10672519227508082 0.8911810582364066 1.0 1636 -Phenotype MP:0002762 ectopic cerebellar granule cells 0.10670661598780828 0.890844366543047 1.0 1637 -Biological Process GO:0060395 SMAD protein signal transduction 0.10669647930284176 0.8906606410452464 1.0 1638 -Biological Process GO:0048864 stem cell development 0.10667986956455722 0.8903595926803478 1.0 1639 -Phenotype MP:0009505 abnormal mammary gland lobule morphology 0.10664641730987034 0.8897532768911925 1.0 1640 -Phenotype MP:0000607 abnormal hepatocyte morphology 0.10664228939188192 0.8896784591583925 1.0 1641 -Biological Process GO:1900744 regulation of p38MAPK cascade 0.1065811383358597 0.8885701078338899 1.0 1642 -Biological Process GO:0043304 regulation of mast cell degranulation 0.10657357849522386 0.8884330871522078 1.0 1643 -Phenotype MP:0020326 dilated capillary 0.10657248310119305 0.8884132333425783 1.0 1644 -Phenotype MP:0001714 absent trophoblast giant cells 0.10649908166783295 0.887082846245821 1.0 1645 -Phenotype MP:0000938 motor neuron degeneration 0.10648467492673352 0.8868217267882353 1.0 1646 -Biological Process GO:1903531 negative regulation of secretion by cell 0.1064642271918741 0.8864511154613224 1.0 1647 -Biological Process GO:0050863 regulation of T cell activation 0.10642615643214537 0.8857610901418116 1.0 1648 -Phenotype MP:0011334 abnormal nephrogenic zone morphology 0.10640941422858874 0.8854576408689104 1.0 1649 -Phenotype MP:0013557 abnormal merocrine gland physiology 0.10639233581331964 0.8851480978223107 1.0 1650 -Phenotype MP:0010290 increased muscle tumor incidence 0.10637903575980912 0.8849070368679588 1.0 1651 -Biological Process GO:0006913 nucleocytoplasmic transport 0.10635659267857023 0.8845002602653111 1.0 1652 -Biological Process GO:0051169 nuclear transport 0.10635659267857023 0.8845002602653111 1.0 1652 -Biological Process GO:0043434 response to peptide hormone 0.10635312081938908 0.8844373334743083 1.0 1654 -Phenotype MP:0002462 abnormal granulocyte physiology 0.10634889464927388 0.8843607349402937 1.0 1655 -Phenotype MP:0005241 abnormal retina ganglion layer morphology 0.10634365641979104 0.8842657930216579 1.0 1656 -Biological Process GO:0060606 tube closure 0.10632890106416137 0.8839983549916473 1.0 1657 -Phenotype MP:0003645 increased pancreatic beta cell number 0.10625972119694571 0.8827444829828054 1.0 1658 -Biological Process GO:0070098 chemokine-mediated signaling pathway 0.10625794156791535 0.882712227543223 1.0 1659 -Biological Process GO:0099550 trans-synaptic signaling, modulating synaptic transmission 0.10622171165922945 0.8820555673006912 1.0 1660 -Biological Process GO:0016331 morphogenesis of embryonic epithelium 0.10618325768063352 0.8813585962116933 1.0 1661 -Biological Process GO:1901532 regulation of hematopoietic progenitor cell differentiation 0.10617285550935118 0.8811700588246317 1.0 1662 -Phenotype MP:0001836 abnormal antigen presentation via MHC class I 0.10616667299617832 0.8810580019427129 1.0 1663 -Phenotype MP:0009170 abnormal pancreatic islet size 0.10616343084796132 0.8809992386194884 1.0 1664 -Biological Process GO:0032663 regulation of interleukin-2 production 0.10615515394743313 0.8808492213628796 1.0 1665 -Biological Process GO:0046328 regulation of JNK cascade 0.1061550977097091 0.8808482020647681 1.0 1666 -Phenotype MP:0002286 cryptorchism 0.10614375281564392 0.8806425780055709 1.0 1667 -Biological Process GO:0097553 calcium ion transmembrane import into cytosol 0.10607796691522797 0.8794502210030506 1.0 1668 -Phenotype MP:0004991 decreased bone strength 0.10607235818909044 0.8793485639026231 1.0 1669 -Phenotype MP:0003141 cardiac fibrosis 0.10602923103645201 0.8785668924179727 1.0 1670 -Phenotype MP:0004783 abnormal cardinal vein morphology 0.10602193048201192 0.8784345712495477 1.0 1671 -Phenotype MP:0010026 decreased liver cholesterol level 0.10602143132867525 0.8784255241897289 1.0 1672 -Biological Process GO:0042310 vasoconstriction 0.10601054118126751 0.8782281423276885 1.0 1673 -Phenotype MP:0000336 decreased mast cell number 0.10600368080047862 0.8781037992234386 1.0 1674 -Phenotype MP:0008131 abnormal Peyer's patch number 0.10597614120761867 0.8776046493115959 1.0 1675 -Phenotype MP:0003008 enhanced long-term potentiation 0.10596647854603725 0.8774295153979951 1.0 1676 -Biological Process GO:0141087 positive regulation of inflammasome-mediated signaling pathway 0.10593903667626403 0.8769321366986164 1.0 1677 -Phenotype MP:0008289 abnormal adrenal medulla morphology 0.10593840882242067 0.8769207569664557 1.0 1678 -Phenotype MP:0020177 abnormal IgG2b level 0.10590218013490782 0.8762641188574545 1.0 1679 -Phenotype MP:0005097 polychromatophilia 0.10587060478440968 0.8756918216017289 1.0 1680 -Phenotype MP:0004468 small zygomatic bone 0.10586173758386408 0.8755311052689515 1.0 1681 -Biological Process GO:0010829 negative regulation of glucose transmembrane transport 0.10585463486330215 0.8754023698021508 1.0 1682 -Biological Process GO:0050673 epithelial cell proliferation 0.10582504010162896 0.8748659703442756 1.0 1683 -Phenotype MP:0001606 impaired hematopoiesis 0.1058207576792276 0.8747883522482136 1.0 1684 -Phenotype MP:0011066 abnormal renal tubule epithelial cell primary cilium morphology 0.1057627319866703 0.8737366475453922 1.0 1685 -Biological Process GO:0009749 response to glucose 0.10574455160458851 0.8734071315587346 1.0 1686 -Biological Process GO:0048679 regulation of axon regeneration 0.10572776296122977 0.8731028405732036 1.0 1687 -Phenotype MP:0031216 decreased susceptibility to myocardial ischemic injury 0.10571867037158389 0.8729380391056132 1.0 1688 -Biological Process GO:0044843 cell cycle G1/S phase transition 0.10570184983508124 0.8726331700628811 1.0 1689 -Biological Process GO:0000082 G1/S transition of mitotic cell cycle 0.10570184983508124 0.8726331700628811 1.0 1689 -Biological Process GO:0140894 endolysosomal toll-like receptor signaling pathway 0.10567596827498349 0.8721640716812585 1.0 1691 -Phenotype MP:0002865 increased growth rate 0.10565316662083979 0.8717507960125304 1.0 1692 -Phenotype MP:0008139 fused podocyte foot processes 0.10559730005040846 0.8707382249898733 1.0 1693 -Phenotype MP:0008664 decreased interleukin-12 secretion 0.10557826600906972 0.8703932365906418 1.0 1694 -Phenotype MP:0013411 abnormal Langerhans cell number 0.10554838352789075 0.8698516222711427 1.0 1695 -Biological Process GO:0003157 endocardium development 0.1055422504760829 0.8697404618671096 1.0 1696 -Biological Process GO:0051346 negative regulation of hydrolase activity 0.10553268507202529 0.869567090727733 1.0 1697 -Biological Process GO:0048485 sympathetic nervous system development 0.1055284982954745 0.8694912061946225 1.0 1698 -Phenotype MP:0002220 large lymphoid organs 0.10550881237110854 0.8691344025388174 1.0 1699 -Biological Process GO:0046631 alpha-beta T cell activation 0.10550713553980162 0.8691040102885296 1.0 1700 -Biological Process GO:0009880 embryonic pattern specification 0.10548444245544997 0.8686927024267477 1.0 1701 -Phenotype MP:0008552 abnormal circulating tumor necrosis factor level 0.10547916918603795 0.8685971254160229 1.0 1702 -Phenotype MP:0000293 absent myocardial trabeculae 0.10536578909857286 0.8665421327750377 1.0 1703 -Phenotype MP:0005026 decreased susceptibility to parasitic infection 0.10534207052428135 0.8661122381020536 1.0 1704 -Phenotype MP:0030016 increased adipocyte glucose uptake 0.10530888461498733 0.8655107497727681 1.0 1705 -Biological Process GO:0021884 forebrain neuron development 0.10530107671104083 0.865369232990498 1.0 1706 -Phenotype MP:0002351 abnormal cervical lymph node morphology 0.10528764863495965 0.8651258516512667 1.0 1707 -Phenotype MP:0000181 abnormal circulating LDL cholesterol level 0.10526638549398881 0.8647404612428075 1.0 1708 -Phenotype MP:0000790 abnormal stratification in cerebral cortex 0.10524652762009068 0.8643805410342538 1.0 1709 -Phenotype MP:0008817 hematoma 0.10523839645205024 0.8642331651514219 1.0 1710 -Biological Process GO:0048514 blood vessel morphogenesis 0.10521846612126373 0.8638719316754706 1.0 1711 -Biological Process GO:0032494 response to peptidoglycan 0.10519015776612317 0.8633588480926928 1.0 1712 -Phenotype MP:0008133 decreased Peyer's patch number 0.10517356220207152 0.8630580566330845 1.0 1713 -Phenotype MP:0030197 small nasal septum 0.10516332811669571 0.8628725657712876 1.0 1714 -Phenotype MP:0003797 abnormal compact bone morphology 0.10515770390381862 0.8627706279766346 1.0 1715 -Phenotype MP:0001554 increased circulating free fatty acids level 0.10513330155581402 0.8623283400344273 1.0 1716 -Biological Process GO:1903351 cellular response to dopamine 0.10509208641375267 0.8615813233798555 1.0 1717 -Phenotype MP:0004881 abnormal lung size 0.10509122172472685 0.8615656510548068 1.0 1718 -Phenotype MP:0011572 abnormal aorta bulb morphology 0.10507840136907776 0.8613332845334649 1.0 1719 -Phenotype MP:0002981 increased liver weight 0.10507647575079504 0.8612983830662955 1.0 1720 -Phenotype MP:0002190 disorganized myocardium 0.10505490151950214 0.8609073542045875 1.0 1721 -Biological Process GO:0009746 response to hexose 0.1050516149603099 0.8608477859408368 1.0 1722 -Biological Process GO:0034284 response to monosaccharide 0.1050516149603099 0.8608477859408368 1.0 1722 -Phenotype MP:0010996 increased aorta wall thickness 0.10503374696640644 0.8605239319308273 1.0 1724 -Biological Process GO:0042886 amide transport 0.10502736363124499 0.860408235188348 1.0 1725 -Phenotype MP:0005408 hypopigmentation 0.1049982028937515 0.8598797023366401 1.0 1726 -Phenotype MP:0002378 abnormal gut-associated lymphoid tissue morphology 0.10499480455340804 0.8598181080606653 1.0 1727 -Biological Process GO:0034109 homotypic cell-cell adhesion 0.10497006618091398 0.8593697297381411 1.0 1728 -Phenotype MP:0008347 decreased gamma-delta T cell number 0.10493214556667219 0.858682425777183 1.0 1729 -Phenotype MP:0013425 abnormal memory-marker NK cell number 0.10493138352950349 0.8586686139976294 1.0 1730 -Phenotype MP:0004367 abnormal strial intermediate cell morphology 0.10489340759354882 0.8579803073410889 1.0 1731 -Phenotype MP:0009390 abnormal otic pigmentation 0.10489340759354882 0.8579803073410889 1.0 1731 -Phenotype MP:0002416 abnormal proerythroblast morphology 0.10486920737980054 0.8575416830440465 1.0 1733 -Biological Process GO:0072594 establishment of protein localization to organelle 0.10486725410434083 0.8575062802957751 1.0 1734 -Phenotype MP:0004771 increased anti-single stranded DNA antibody level 0.10481602270106627 0.8565777208011549 1.0 1735 -Phenotype MP:0000333 decreased bone marrow cell number 0.1047808244391345 0.8559397589609197 1.0 1736 -Biological Process GO:0007213 G protein-coupled acetylcholine receptor signaling pathway 0.10477919062781382 0.8559101464397458 1.0 1737 -Biological Process GO:0033628 regulation of cell adhesion mediated by integrin 0.10471075499804972 0.8546697635939509 1.0 1738 -Phenotype MP:0002433 abnormal T-helper 1 cell morphology 0.10468584096136258 0.8542182013911516 1.0 1739 -Biological Process GO:0022411 cellular component disassembly 0.1046711069702233 0.8539511505884887 1.0 1740 -Phenotype MP:0008208 decreased pro-B cell number 0.10461887759084965 0.8530045029658262 1.0 1741 -Phenotype MP:0004003 abnormal vascular endothelial cell physiology 0.10457425567612011 0.8521957392009887 1.0 1742 -Biological Process GO:1903317 regulation of protein maturation 0.10457423448187941 0.8521953550593847 1.0 1743 -Phenotype MP:0001879 abnormal lymphatic vessel morphology 0.10457315222984342 0.8521757394459258 1.0 1744 -Phenotype MP:0008209 decreased pre-B cell number 0.10457061651985433 0.8521297801819689 1.0 1745 -Phenotype MP:0001713 decreased trophoblast giant cell number 0.10456935332657546 0.8521068850427056 1.0 1746 -Phenotype MP:0002773 decreased circulating luteinizing hormone level 0.10456772547196858 0.8520773804858425 1.0 1747 -Phenotype MP:0006059 decreased susceptibility to ischemic brain injury 0.10456544746926488 0.8520360921176916 1.0 1748 -Phenotype MP:0002230 abnormal primitive streak formation 0.10455940454509705 0.8519265652600875 1.0 1749 -Phenotype MP:0008634 abnormal circulating interleukin-18 level 0.10447691798984282 0.8504315120473278 1.0 1750 -Biological Process GO:0007212 dopamine receptor signaling pathway 0.1044762762498328 0.8504198806310227 1.0 1751 -Biological Process GO:0032446 protein modification by small protein conjugation 0.10447392770207875 0.8503773136471767 1.0 1752 -Biological Process GO:0043302 positive regulation of leukocyte degranulation 0.10445180334043391 0.8499763137768896 1.0 1753 -Biological Process GO:0043306 positive regulation of mast cell degranulation 0.10445180334043391 0.8499763137768896 1.0 1753 -Phenotype MP:0002212 abnormal secondary sex determination 0.10443042896240096 0.8495889072177186 1.0 1755 -Biological Process GO:0032024 positive regulation of insulin secretion 0.10441581150961876 0.8493239686507361 1.0 1756 -Biological Process GO:0097006 regulation of plasma lipoprotein particle levels 0.10438532316507976 0.8487713731724272 1.0 1757 -Phenotype MP:0006298 abnormal platelet activation 0.10435380011655193 0.8482000238800212 1.0 1758 -Biological Process GO:0032825 positive regulation of natural killer cell differentiation 0.104273255690158 0.8467401713855267 1.0 1759 -Phenotype MP:0013434 abnormal CD8-positive, naive alpha-beta T cell number 0.10421255472699953 0.8456399779090508 1.0 1760 -Biological Process GO:0120193 tight junction organization 0.10418312529607054 0.8451065750396441 1.0 1761 -Phenotype MP:0021186 decreased bone mineral density of vertebrae 0.104177968086272 0.8450131015874625 1.0 1762 -Biological Process GO:0002768 immune response-regulating cell surface receptor signaling pathway 0.10415318173581745 0.8445638536734787 1.0 1763 -Biological Process GO:0070293 renal absorption 0.10411748412474453 0.8439168412245054 1.0 1764 -Biological Process GO:1900017 positive regulation of cytokine production involved in inflammatory response 0.10410308000404678 0.8436557692612044 1.0 1765 -Biological Process GO:0014032 neural crest cell development 0.1040969131053926 0.8435439953894834 1.0 1766 -Phenotype MP:0004046 abnormal mitosis 0.10405833073072857 0.8428446971460354 1.0 1767 -Biological Process GO:2001212 regulation of vasculogenesis 0.1040542214613166 0.8427702174151566 1.0 1768 -Biological Process GO:0006835 dicarboxylic acid transport 0.104033239520126 0.842389923699529 1.0 1769 -Biological Process GO:0032103 positive regulation of response to external stimulus 0.10403145232070088 0.8423575310479735 1.0 1770 -Biological Process GO:0035909 aorta morphogenesis 0.1039951039225937 0.8416987232070918 1.0 1771 -Biological Process GO:0010876 lipid localization 0.10391275779917386 0.8402062152947696 1.0 1772 -Phenotype MP:0000885 ectopic Purkinje cell 0.10391164077928794 0.8401859695206065 1.0 1773 -Phenotype MP:0001435 absent suckling reflex 0.10390358648156561 0.8400399868977515 1.0 1774 -Biological Process GO:0007398 ectoderm development 0.10386885902131016 0.8394105582488537 1.0 1775 -Phenotype MP:0003227 abnormal vascular branching morphogenesis 0.10386222784252974 0.839290369387657 1.0 1776 -Biological Process GO:0007599 hemostasis 0.10384014684143272 0.8388901554190981 1.0 1777 -Biological Process GO:1904383 response to sodium phosphate 0.10383657658572643 0.8388254452096873 1.0 1778 -Biological Process GO:0002460 adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains 0.1038219575893109 0.8385604786646426 1.0 1779 -Biological Process GO:0001843 neural tube closure 0.10379957856115185 0.8381548630119522 1.0 1780 -Biological Process GO:2001222 regulation of neuron migration 0.10378968707785874 0.8379755817481056 1.0 1781 -Biological Process GO:0046661 male sex differentiation 0.10376690373629094 0.837562637991352 1.0 1782 -Phenotype MP:0000711 thymus cortex hypoplasia 0.10375854241599691 0.8374110906424541 1.0 1783 -Phenotype MP:0003070 increased vascular permeability 0.10371652130715059 0.8366494659923425 1.0 1784 -Phenotype MP:0011448 decreased dopaminergic neuron number 0.10371135944166732 0.8365559081567556 1.0 1785 -Phenotype MP:0001273 decreased metastatic potential 0.10370689516049514 0.8364749939048687 1.0 1786 -Phenotype MP:0008281 abnormal hippocampus size 0.10368851665693524 0.8361418870038924 1.0 1787 -Phenotype MP:0031585 semilunar valve stenosis 0.10367612898019307 0.8359173627059031 1.0 1788 -Biological Process GO:0043516 regulation of DNA damage response, signal transduction by p53 class mediator 0.10367099861865514 0.8358243758733671 1.0 1789 -Phenotype MP:0011862 decreased cranium length 0.10366469893518448 0.8357101953019619 1.0 1790 -Phenotype MP:0005581 abnormal renin activity 0.10364388098990052 0.8353328739811244 1.0 1791 -Biological Process GO:0032365 intracellular lipid transport 0.10361823964597772 0.8348681294722392 1.0 1792 -Phenotype MP:0000255 blood vessel congestion 0.10361110228991599 0.8347387662435555 1.0 1793 -Phenotype MP:0014195 abnormal endocrine pancreas secretion 0.103607426388451 0.8346721412247498 1.0 1794 -Phenotype MP:0011367 abnormal kidney apoptosis 0.1036008035606365 0.8345521037232309 1.0 1795 -Phenotype MP:0002905 decreased circulating parathyroid hormone level 0.10356081329672251 0.8338272877534106 1.0 1796 -Phenotype MP:0008574 decreased circulating interferon-alpha level 0.10353043902186354 0.8332767597664776 1.0 1797 -Biological Process GO:0051099 positive regulation of binding 0.10352938421745461 0.8332576416360679 1.0 1798 -Phenotype MP:0003644 thymus atrophy 0.1035198874987614 0.8330855154059301 1.0 1799 -Biological Process GO:0045686 negative regulation of glial cell differentiation 0.10350103063944271 0.8327437383973004 1.0 1800 -Phenotype MP:0001829 increased activated T cell number 0.1034911476402407 0.8325646109060003 1.0 1801 -Biological Process GO:0040011 locomotion 0.1034525988838999 0.8318659219883026 1.0 1802 -Phenotype MP:0003672 abnormal ureter development 0.10344669048079957 0.8317588332996041 1.0 1803 -Phenotype MP:0003547 abnormal pulmonary pressure 0.10344570641879713 0.831740997361932 1.0 1804 -Biological Process GO:0010662 regulation of striated muscle cell apoptotic process 0.10341202743378541 0.8311305721285218 1.0 1805 -Phenotype MP:0000334 decreased granulocyte number 0.10337982581627769 0.8305469239016975 1.0 1806 -Phenotype MP:0004207 increased squamous cell carcinoma incidence 0.10337730911402454 0.8305013091493595 1.0 1807 -Phenotype MP:0010766 abnormal NK cell physiology 0.1033759024043599 0.8304758128027481 1.0 1808 -Biological Process GO:0070972 protein localization to endoplasmic reticulum 0.10336356086690901 0.8302521247706867 1.0 1809 -Biological Process GO:0001525 angiogenesis 0.10333856942709674 0.8297991596508841 1.0 1810 -Biological Process GO:0032872 regulation of stress-activated MAPK cascade 0.10328414062142754 0.828812647842607 1.0 1811 -Phenotype MP:0008873 increased physiological sensitivity to xenobiotic 0.10327837320219124 0.8287081144597788 1.0 1812 -Phenotype MP:0004834 ovary hemorrhage 0.10326999356245004 0.8285562350743656 1.0 1813 -Phenotype MP:0002418 increased susceptibility to viral infection 0.10326274750293729 0.8284249016161919 1.0 1814 -Phenotype MP:0009454 impaired contextual conditioning behavior 0.10324789579225635 0.8281557171691013 1.0 1815 -Biological Process GO:0046629 gamma-delta T cell activation 0.10324381543274741 0.8280817614247469 1.0 1816 -Biological Process GO:0003203 endocardial cushion morphogenesis 0.10322552686179742 0.8277502845353157 1.0 1817 -Phenotype MP:0009757 impaired behavioral response to morphine 0.10320795591339016 0.8274318144187428 1.0 1818 -Biological Process GO:0051058 negative regulation of small GTPase mediated signal transduction 0.10319734822393001 0.8272395520535795 1.0 1819 -Phenotype MP:0020468 abnormal circadian behavior period 0.10319230269997803 0.827148102886243 1.0 1820 -Phenotype MP:0008181 increased marginal zone B cell number 0.10318401242840625 0.8269978432819977 1.0 1821 -Biological Process GO:0045685 regulation of glial cell differentiation 0.10317657301731686 0.8268630053630672 1.0 1822 -Phenotype MP:0008559 abnormal interferon-gamma secretion 0.10314037322063774 0.826206890894963 1.0 1823 -Phenotype MP:0004256 abnormal maternal decidual layer morphology 0.10312448187712064 0.8259188632993497 1.0 1824 -Phenotype MP:0004977 increased B-1 B cell number 0.10310196736487842 0.8255107920232768 1.0 1825 -Biological Process GO:1901879 regulation of protein depolymerization 0.1030979590308394 0.8254381417269421 1.0 1826 -Phenotype MP:0008739 abnormal spleen iron level 0.10305018332354077 0.8245722160682871 1.0 1827 -Phenotype MP:0009584 decreased keratinocyte proliferation 0.10303483632935972 0.8242940547014335 1.0 1828 -Phenotype MP:0003927 increased cellular glucose import 0.10301754405765884 0.8239806355474556 1.0 1829 -Phenotype MP:0003059 decreased insulin secretion 0.10300907894330147 0.8238272069507909 1.0 1830 -Biological Process GO:0021543 pallium development 0.10300789970284985 0.8238058334406427 1.0 1831 -Phenotype MP:0002824 abnormal chorioallantoic fusion 0.10297153028491779 0.8231466446194107 1.0 1832 -Phenotype MP:0001177 atelectasis 0.102941293573795 0.8225986099491777 1.0 1833 -Biological Process GO:0035249 synaptic transmission, glutamatergic 0.10287996488791995 0.8214870391171889 1.0 1834 -Biological Process GO:0048566 embryonic digestive tract development 0.10285706773218983 0.8210720325002697 1.0 1835 -Biological Process GO:0008053 mitochondrial fusion 0.10285376397345936 0.8210121524981414 1.0 1836 -Phenotype MP:0000010 abnormal abdominal fat pad morphology 0.10285033531705068 0.8209500087492184 1.0 1837 -Biological Process GO:0006919 activation of cysteine-type endopeptidase activity involved in apoptotic process 0.10277090472735972 0.8195103443342981 1.0 1838 -Phenotype MP:0008734 decreased susceptibility to endotoxin shock 0.10276852643794554 0.8194672382884876 1.0 1839 -Phenotype MP:0011079 decreased macrophage cytokine production 0.10276851686525312 0.8194670647852481 1.0 1840 -Phenotype MP:0004183 abnormal sympathetic nervous system physiology 0.10275824646323095 0.8192809156911047 1.0 1841 -Biological Process GO:0033327 Leydig cell differentiation 0.10275415524398868 0.8192067631161376 1.0 1842 -Phenotype MP:0004086 absent heartbeat 0.10269565269303038 0.8181464154449896 1.0 1843 -Phenotype MP:0005582 increased renin activity 0.1026516831566594 0.8173494759145123 1.0 1844 -Phenotype MP:0004532 abnormal inner hair cell stereociliary bundle morphology 0.10265104951534887 0.8173379912856037 1.0 1845 -Phenotype MP:0008551 abnormal circulating interferon-gamma level 0.10261860082714047 0.8167498649490597 1.0 1846 -Phenotype MP:0020151 abnormal circulating non-HDL cholesterol level 0.10257005257003748 0.8158699369713183 1.0 1847 -Biological Process GO:0034101 erythrocyte homeostasis 0.10255900238666738 0.8156696544877288 1.0 1848 -Biological Process GO:0045588 positive regulation of gamma-delta T cell differentiation 0.1025406520177754 0.8153370575222874 1.0 1849 -Biological Process GO:0046645 positive regulation of gamma-delta T cell activation 0.1025406520177754 0.8153370575222874 1.0 1849 -Phenotype MP:0012671 retina spots 0.10248673594892255 0.8143598389718291 1.0 1851 -Biological Process GO:0070201 regulation of establishment of protein localization 0.10248240185062896 0.8142812842599941 1.0 1852 -Phenotype MP:0002367 abnormal thymus lobule morphology 0.10247843863865747 0.8142094517925991 1.0 1853 -Phenotype MP:0000606 decreased hepatocyte number 0.10246879566388878 0.8140346746987557 1.0 1854 -Phenotype MP:0002828 abnormal renal glomerular capsule morphology 0.10245426213354947 0.8137712572101776 1.0 1855 -Biological Process GO:0070302 regulation of stress-activated protein kinase signaling cascade 0.10245253720197012 0.8137399931515495 1.0 1856 -Phenotype MP:0003223 decreased cardiomyocyte apoptosis 0.10241583400222853 0.8130747545981502 1.0 1857 -Biological Process GO:0007204 positive regulation of cytosolic calcium ion concentration 0.10239334393489319 0.8126671263813909 1.0 1858 -Phenotype MP:0000786 abnormal embryonic neuroepithelial layer differentiation 0.10239183588849632 0.8126397933256744 1.0 1859 -Phenotype MP:0004998 decreased CNS synapse formation 0.10237753754231727 0.812380638505519 1.0 1860 -Phenotype MP:0031412 abnormal muscle triglyceride level 0.10235496824327928 0.811971574229135 1.0 1861 -Phenotype MP:0009115 abnormal fat cell morphology 0.1023492625921224 0.8118681603810639 1.0 1862 -Biological Process GO:0060390 regulation of SMAD protein signal transduction 0.10234199932422916 0.8117365150242484 1.0 1863 -Biological Process GO:0003085 negative regulation of systemic arterial blood pressure 0.10233692287790552 0.8116445053947741 1.0 1864 -Phenotype MP:0002680 decreased corpora lutea number 0.10233153178233123 0.8115467928071433 1.0 1865 -Phenotype MP:0009010 abnormal diestrus 0.10232532837850206 0.81143435728603 1.0 1866 -Phenotype MP:0012186 abnormal muscle precursor cell physiology 0.10229164356487952 0.8108238264101512 1.0 1867 -Phenotype MP:0006049 semilunar valve regurgitation 0.10228932794323042 0.8107818562057301 1.0 1868 -Biological Process GO:0051865 protein autoubiquitination 0.10228110639782062 0.8106328422501722 1.0 1869 -Biological Process GO:0060441 epithelial tube branching involved in lung morphogenesis 0.1022794326901818 0.8106025066157779 1.0 1870 -Phenotype MP:0013435 decreased CD8-positive, naive alpha-beta T cell number 0.1022374616930164 0.8098417902304048 1.0 1871 -Phenotype MP:0009450 abnormal axon fasciculation 0.10221295002232467 0.8093975208351702 1.0 1872 -Biological Process GO:0021545 cranial nerve development 0.1021996488624809 0.8091564398287375 1.0 1873 -Phenotype MP:0005141 liver hyperplasia 0.10219092446340627 0.8089983117456128 1.0 1874 -Phenotype MP:0005048 abnormal thrombosis 0.10218110087988597 0.808820261152306 1.0 1875 -Phenotype MP:0008836 abnormal transforming growth factor beta level 0.10216880198966172 0.8085973460931613 1.0 1876 -Phenotype MP:0003628 abnormal leukocyte adhesion 0.10216308401035135 0.8084937087996397 1.0 1877 -Biological Process GO:1902175 regulation of oxidative stress-induced intrinsic apoptotic signaling pathway 0.10214722665597376 0.8082062972507512 1.0 1878 -Biological Process GO:0033209 tumor necrosis factor-mediated signaling pathway 0.10212421875194233 0.8077892833418174 1.0 1879 -Phenotype MP:0002175 decreased brain weight 0.10209698339366913 0.8072956476243176 1.0 1880 -Biological Process GO:0060443 mammary gland morphogenesis 0.10208293507051558 0.807041024424211 1.0 1881 -Biological Process GO:0099068 postsynapse assembly 0.1020460024902583 0.806371628392349 1.0 1882 -Biological Process GO:0035966 response to topologically incorrect protein 0.10199259336877353 0.805403598167055 1.0 1883 -Phenotype MP:0009577 abnormal developmental vascular remodeling 0.10198971803600021 0.805351483304369 1.0 1884 -Phenotype MP:0002389 abnormal Peyer's patch follicle morphology 0.10198319110916132 0.8052331839898946 1.0 1885 -Phenotype MP:0004447 small basioccipital bone 0.10196075903713697 0.8048266069271782 1.0 1886 -Phenotype MP:0004510 myositis 0.10193935351275107 0.804438635846251 1.0 1887 -Phenotype MP:0002987 abnormal urine osmolality 0.10191919667690663 0.804073297008965 1.0 1888 -Phenotype MP:0010872 increased trabecular bone mass 0.10189350076805082 0.8036075635209892 1.0 1889 -Phenotype MP:0010080 abnormal hepatocyte physiology 0.10182226047090248 0.8023163466093202 1.0 1890 -Biological Process GO:0002931 response to ischemia 0.10179497760689948 0.8018218498594528 1.0 1891 -Biological Process GO:0051283 negative regulation of sequestering of calcium ion 0.10179240653746091 0.801775249712162 1.0 1892 -Biological Process GO:0051209 release of sequestered calcium ion into cytosol 0.10179240653746091 0.801775249712162 1.0 1892 -Biological Process GO:1905330 regulation of morphogenesis of an epithelium 0.10173484675825617 0.8007319896007346 1.0 1894 -Biological Process GO:2000377 regulation of reactive oxygen species metabolic process 0.10173293718997878 0.800697379036876 1.0 1895 -Phenotype MP:0010684 abnormal hair follicle outer root sheath morphology 0.10167416290429088 0.7996321062251488 1.0 1896 -Biological Process GO:0017156 calcium-ion regulated exocytosis 0.10163914251666806 0.7989973683231208 1.0 1897 -Biological Process GO:0071222 cellular response to lipopolysaccharide 0.10163604863263365 0.7989412922601637 1.0 1898 -Phenotype MP:0002268 abnormal terminal bronchiole morphology 0.1015954933539367 0.7982062355042673 1.0 1899 -Biological Process GO:0040014 regulation of multicellular organism growth 0.1015874202901137 0.7980599127493869 1.0 1900 -Biological Process GO:0048668 collateral sprouting 0.10154670173411895 0.7973218966233496 1.0 1901 -Phenotype MP:0004067 abnormal trabecula carnea morphology 0.10151302651472294 0.796711539641012 1.0 1902 -Biological Process GO:0098761 cellular response to interleukin-7 0.10150562342091707 0.7965773599659763 1.0 1903 -Phenotype MP:0011805 decreased cell migration 0.10150439789469123 0.796555147534925 1.0 1904 -Phenotype MP:0010639 abnormal tumor pathology 0.10149580829097238 0.7963994625921287 1.0 1905 -Biological Process GO:0031023 microtubule organizing center organization 0.10146628107164202 0.7958642873264425 1.0 1906 -Biological Process GO:0002026 regulation of the force of heart contraction 0.10145500689848985 0.7956599450704179 1.0 1907 -Biological Process GO:0021602 cranial nerve morphogenesis 0.10138947758716177 0.7944722386965848 1.0 1908 -Phenotype MP:0013664 abnormal immature B cell number 0.1013731474199071 0.7941762575037257 1.0 1909 -Biological Process GO:0001945 lymph vessel development 0.10135820885010283 0.7939054987514528 1.0 1910 -Biological Process GO:0001947 heart looping 0.1013128688141004 0.7930837191743672 1.0 1911 -Phenotype MP:0000022 abnormal ear shape 0.10130275972150116 0.7929004937830049 1.0 1912 -Biological Process GO:0003018 vascular process in circulatory system 0.10129513302776694 0.7927622614015587 1.0 1913 -Phenotype MP:0004111 abnormal coronary artery morphology 0.10128668297377785 0.7926091057712207 1.0 1914 -Phenotype MP:0012775 abnormal brain weight 0.10127450989456854 0.7923884710129262 1.0 1915 -Phenotype MP:0004734 small thoracic cavity 0.1012720601607362 0.7923440700505492 1.0 1916 -Biological Process GO:0009743 response to carbohydrate 0.10126406357889461 0.7921991335171165 1.0 1917 -Phenotype MP:0020010 decreased bone mineral density of femur 0.10124852442993393 0.7919174893812252 1.0 1918 -Biological Process GO:0060644 mammary gland epithelial cell differentiation 0.10122947093099366 0.791572148316646 1.0 1919 -Phenotype MP:0000383 abnormal hair follicle orientation 0.10117670994962924 0.7906158655084463 1.0 1920 -Phenotype MP:0009498 abnormal extrahepatic bile duct morphology 0.10116166539631644 0.7903431858251267 1.0 1921 -Biological Process GO:0040020 regulation of meiotic nuclear division 0.10114602334820111 0.7900596766615197 1.0 1922 -Phenotype MP:0004933 abnormal epididymis epithelium morphology 0.1011284241242616 0.7897406940562726 1.0 1923 -Phenotype MP:0001093 small trigeminal ganglion 0.10107787529755718 0.7888245061328862 1.0 1924 -Biological Process GO:1903038 negative regulation of leukocyte cell-cell adhesion 0.10106523798793654 0.7885954572861893 1.0 1925 -Biological Process GO:0050868 negative regulation of T cell activation 0.10106523798793654 0.7885954572861893 1.0 1925 -Phenotype MP:0020507 increased dendritic spine density 0.10105860661509314 0.7884752649076376 1.0 1927 -Biological Process GO:0003143 embryonic heart tube morphogenesis 0.10105414275096658 0.7883943582146237 1.0 1928 -Phenotype MP:0003334 pancreas fibrosis 0.1010240529584131 0.7878489864156717 1.0 1929 -Phenotype MP:0001937 abnormal sexual maturation 0.10102366681646568 0.7878419876659083 1.0 1930 -Biological Process GO:0060638 mesenchymal-epithelial cell signaling 0.10099713622617745 0.7873611257348386 1.0 1931 -Biological Process GO:0120034 positive regulation of plasma membrane bounded cell projection assembly 0.10096606651563134 0.7867979931076085 1.0 1932 -Phenotype MP:0030572 abnormal pilosebaceous unit morphology 0.10095987194028666 0.7866857176011068 1.0 1933 -Biological Process GO:0060340 positive regulation of type I interferon-mediated signaling pathway 0.10093128200649726 0.7861675304585756 1.0 1934 -Biological Process GO:0032228 regulation of synaptic transmission, GABAergic 0.10092673259725093 0.7860850732764456 1.0 1935 -Phenotype MP:0009258 abnormal thymocyte apoptosis 0.10088033158379028 0.7852440636835992 1.0 1936 -Phenotype MP:0008566 increased interferon-gamma secretion 0.10083819679973771 0.7844803786918744 1.0 1937 -Biological Process GO:0006968 cellular defense response 0.10083574967242237 0.7844360249721251 1.0 1938 -Biological Process GO:0019216 regulation of lipid metabolic process 0.1008240512423988 0.7842239931405486 1.0 1939 -Phenotype MP:0000182 increased circulating LDL cholesterol level 0.10079271316772498 0.7836559964642612 1.0 1940 -Phenotype MP:0009969 abnormal cerebral cortex pyramidal cell morphology 0.10078754973222992 0.7835624101725077 1.0 1941 -Phenotype MP:0012690 abnormal stride length 0.10077743303468933 0.783379046943022 1.0 1942 -Phenotype MP:0006237 abnormal choroid vasculature morphology 0.10077563533543887 0.783346463984118 1.0 1943 -Phenotype MP:0008880 lacrimal gland inflammation 0.10076820059565872 0.7832117107317838 1.0 1944 -Biological Process GO:0055003 cardiac myofibril assembly 0.10074404806693404 0.7827739507167752 1.0 1945 -Biological Process GO:0061640 cytoskeleton-dependent cytokinesis 0.10073558870395316 0.7826206263627214 1.0 1946 -Phenotype MP:0000135 decreased compact bone thickness 0.10068522444366534 0.7817077836707277 1.0 1947 -Biological Process GO:0006508 proteolysis 0.10065392157213882 0.7811404250448267 1.0 1948 -Phenotype MP:0004792 abnormal synaptic vesicle number 0.10065389029284955 0.7811398581136247 1.0 1949 -Biological Process GO:0032720 negative regulation of tumor necrosis factor production 0.1005563840847622 0.7793725765340301 1.0 1950 -Biological Process GO:1903556 negative regulation of tumor necrosis factor superfamily cytokine production 0.1005563840847622 0.7793725765340301 1.0 1950 -Biological Process GO:0003231 cardiac ventricle development 0.10051504115013066 0.7786232436632938 1.0 1952 -Biological Process GO:1905521 regulation of macrophage migration 0.10048581234004006 0.7780934770086383 1.0 1953 -Biological Process GO:0006986 response to unfolded protein 0.10046611389283389 0.7777364463787229 1.0 1954 -Phenotype MP:0004053 abnormal synchondrosis 0.10044769596267533 0.7774026248781031 1.0 1955 -Phenotype MP:0010400 increased liver glycogen level 0.1003920870624534 0.7763947240792564 1.0 1956 -Biological Process GO:0016082 synaptic vesicle priming 0.10038808592835391 0.776322204280464 1.0 1957 -Biological Process GO:0021885 forebrain cell migration 0.10036617054596009 0.7759249921195759 1.0 1958 -Phenotype MP:0005170 cleft upper lip 0.10035465227664475 0.7757162256667612 1.0 1959 -Phenotype MP:0003771 abnormal lip shape 0.10035465227664475 0.7757162256667612 1.0 1959 -Phenotype MP:0011003 reduced AMPA-mediated synaptic currents 0.10035242185807769 0.775675799752087 1.0 1961 -Phenotype MP:0008009 delayed cellular replicative senescence 0.10032808581263164 0.7752347135312132 1.0 1962 -Phenotype MP:0000961 abnormal dorsal root ganglion morphology 0.10031808664133401 0.7750534804426525 1.0 1963 -Biological Process GO:0071902 positive regulation of protein serine/threonine kinase activity 0.10031805582859432 0.7750529219675735 1.0 1964 -Phenotype MP:0009345 abnormal trabecular bone thickness 0.10030686041406112 0.7748500071966213 1.0 1965 -Biological Process GO:0002903 negative regulation of B cell apoptotic process 0.10027241641833262 0.7742257162886611 1.0 1966 -Biological Process GO:0030218 erythrocyte differentiation 0.10026519205502582 0.7740947760701166 1.0 1967 -Phenotype MP:0008525 decreased cranium height 0.1002651184663167 0.7740934422886819 1.0 1968 -Phenotype MP:0004768 abnormal axonal transport 0.10020204402576982 0.7729502299834524 1.0 1969 -Biological Process GO:0070228 regulation of lymphocyte apoptotic process 0.10020126317436429 0.7729360771994147 1.0 1970 -Biological Process GO:0097192 extrinsic apoptotic signaling pathway in absence of ligand 0.1001995061864589 0.7729042321259402 1.0 1971 -Biological Process GO:0038034 signal transduction in absence of ligand 0.1001995061864589 0.7729042321259402 1.0 1971 -Biological Process GO:0070243 regulation of thymocyte apoptotic process 0.10019780664549338 0.7728734282673855 1.0 1973 -Biological Process GO:0032496 response to lipopolysaccharide 0.10018500844341782 0.7726414632753739 1.0 1974 -Phenotype MP:0010551 abnormal coronary vessel morphology 0.10018490558669157 0.7726395990166647 1.0 1975 -Phenotype MP:0002651 abnormal sciatic nerve morphology 0.10017260336106404 0.7724166235039661 1.0 1976 -Phenotype MP:0003957 abnormal nitric oxide homeostasis 0.10013452271561873 0.7717264190077122 1.0 1977 -Biological Process GO:0050769 positive regulation of neurogenesis 0.10011015964020076 0.7712848428737096 1.0 1978 -Phenotype MP:0004592 small mandible 0.10010859156878404 0.7712564218758613 1.0 1979 -Biological Process GO:0060947 cardiac vascular smooth muscle cell differentiation 0.10010105673265324 0.7711198543961034 1.0 1980 -Biological Process GO:0048565 digestive tract development 0.10007975373271671 0.77073374155143 1.0 1981 -Biological Process GO:0003401 axis elongation 0.10007411721344373 0.7706315807056789 1.0 1982 -Phenotype MP:0011368 increased kidney apoptosis 0.1000655118779652 0.7704756106277142 1.0 1983 -Phenotype MP:0031023 decreased susceptibility to Riboviria infection induced morbidity/mortality 0.10005675370103662 0.7703168703273751 1.0 1984 -Phenotype MP:0008577 increased circulating interferon-gamma level 0.100054619831623 0.7702781943478461 1.0 1985 -Phenotype MP:0020918 abnormal susceptibility to Ortervirales infection 0.10003469227447259 0.7699170111435244 1.0 1986 -Phenotype MP:0031391 increased locomotor activity 0.10002759561108032 0.769788385461778 1.0 1987 -Phenotype MP:0009506 abnormal mammary gland alveolus morphology 0.1000121089397028 0.7695076924721562 1.0 1988 -Biological Process GO:0060411 cardiac septum morphogenesis 0.09999163026105562 0.7691365202949428 1.0 1989 -Phenotype MP:0003586 dilated ureter 0.09997986144426008 0.768923212716437 1.0 1990 -Phenotype MP:0008045 decreased NK cell number 0.09995933743777119 0.7685512189806659 1.0 1991 -Phenotype MP:0008895 abnormal intraepithelial T cell number 0.0999591749380131 0.7685482737032852 1.0 1992 -Phenotype MP:0004973 increased regulatory T cell number 0.09995134118260296 0.768406288368126 1.0 1993 -Phenotype MP:0010428 abnormal heart right ventricle outflow tract morphology 0.09993812195986251 0.7681666924561936 1.0 1994 -Biological Process GO:2001236 regulation of extrinsic apoptotic signaling pathway 0.09992471042955164 0.7679236110059199 1.0 1995 -Phenotype MP:0004222 iris synechia 0.09981246122975795 0.7658891154900865 1.0 1996 -Phenotype MP:0004135 abnormal mammary gland embryonic development 0.09980894046600841 0.7658253023130311 1.0 1997 -Phenotype MP:0004007 abnormal lung vasculature morphology 0.09980300692756627 0.7657177580510165 1.0 1998 -Phenotype MP:0014435 increased interferon level 0.09978565869423728 0.7654033246031136 1.0 1999 -Biological Process GO:0002429 immune response-activating cell surface receptor signaling pathway 0.09976531653923104 0.7650346268910707 1.0 2000 -Phenotype MP:0008783 decreased B cell apoptosis 0.09972482742972677 0.7643007694392766 1.0 2001 -Phenotype MP:0014099 abnormal chondrocyte proliferation 0.09970557187679319 0.7639517661842844 1.0 2002 -Biological Process GO:0070665 positive regulation of leukocyte proliferation 0.09969113256763384 0.7636900564367726 1.0 2003 -Biological Process GO:0007565 female pregnancy 0.09968957523471955 0.7636618300722496 1.0 2004 -Phenotype MP:0002655 abnormal keratinocyte morphology 0.09967332108449012 0.7633672266735951 1.0 2005 -Biological Process GO:0097191 extrinsic apoptotic signaling pathway 0.09964647870278032 0.7628807135819807 1.0 2006 -Phenotype MP:0000536 hydroureter 0.09964608461290037 0.7628735707774433 1.0 2007 -Phenotype MP:0008528 polycystic kidney 0.09962724395910727 0.7625320874909 1.0 2008 -Phenotype MP:0011818 abnormal pancreatic beta cell proliferation 0.0996155904752618 0.7623208703003007 1.0 2009 -Biological Process GO:2000379 positive regulation of reactive oxygen species metabolic process 0.09958367040229277 0.7617423250149896 1.0 2010 -Phenotype MP:0008571 abnormal synaptic bouton morphology 0.09954867307467119 0.7611080050711226 1.0 2011 -Phenotype MP:0001719 absent vitelline blood vessels 0.09953527144551044 0.7608651030773221 1.0 2012 -Biological Process GO:0048541 Peyer's patch development 0.09953002210390838 0.760769959753627 1.0 2013 -Biological Process GO:0048537 mucosa-associated lymphoid tissue development 0.09953002210390838 0.760769959753627 1.0 2013 -Biological Process GO:1905809 negative regulation of synapse organization 0.09952405631475081 0.7606618309534949 1.0 2015 -Phenotype MP:0030939 abnormal autophagosome formation 0.09951596407703045 0.7605151606753514 1.0 2016 -Biological Process GO:0048660 regulation of smooth muscle cell proliferation 0.09950188164518903 0.7602599192617283 1.0 2017 -Phenotype MP:0001426 polydipsia 0.09947914294625726 0.7598477846443094 1.0 2018 -Phenotype MP:0005536 decreased Leydig cell number 0.09946749436771929 0.7596366563614806 1.0 2019 -Phenotype MP:0009269 decreased fat cell size 0.0994493396734264 0.7593076059611383 1.0 2020 -Phenotype MP:0004201 fetal growth retardation 0.09943894451506463 0.7591191956819359 1.0 2021 -Phenotype MP:0005100 abnormal choroid pigmentation 0.09942687116560744 0.7589003685065361 1.0 2022 -Phenotype MP:0008211 decreased mature B cell number 0.09941984459061226 0.7587730131637306 1.0 2023 -Phenotype MP:0002963 decreased urine protein level 0.09941846127993381 0.7587479409193183 1.0 2024 -Phenotype MP:0010017 visceral vascular congestion 0.09941356922369915 0.7586592733253318 1.0 2025 -Phenotype MP:0008838 decreased transforming growth factor beta level 0.09939409574026559 0.7583063201212461 1.0 2026 -Phenotype MP:0009657 failure of chorioallantoic fusion 0.09938244607415303 0.7580951721263337 1.0 2027 -Phenotype MP:0003546 decreased alcohol consumption 0.09933896811277021 0.7573071422995421 1.0 2028 -Biological Process GO:0032412 regulation of monoatomic ion transmembrane transporter activity 0.09927934753750522 0.7562265306492946 1.0 2029 -Phenotype MP:0009548 abnormal platelet aggregation 0.09927908297882837 0.7562217355733143 1.0 2030 -Biological Process GO:0001914 regulation of T cell mediated cytotoxicity 0.09926678641030384 0.755998862594538 1.0 2031 -Biological Process GO:0045623 negative regulation of T-helper cell differentiation 0.09923577616203971 0.7554368077099222 1.0 2032 -Phenotype MP:0004564 increased myocardial fiber size 0.09916317115763018 0.7541208557372601 1.0 2033 -Phenotype MP:0000496 abnormal small intestine morphology 0.09915248488054118 0.7539271689861876 1.0 2034 -Phenotype MP:0010174 decreased mammary gland epithelial cell proliferation 0.09914705427585635 0.753828740303401 1.0 2035 -Biological Process GO:0072539 T-helper 17 cell differentiation 0.09913969018318491 0.7536952675165502 1.0 2036 -Phenotype MP:0010219 increased T-helper 17 cell number 0.09910937546002185 0.7531458188928422 1.0 2037 -Phenotype MP:0008051 abnormal memory T cell physiology 0.09910577301316459 0.7530805252249086 1.0 2038 -Phenotype MP:0002965 increased circulating serum albumin level 0.09910235909955767 0.7530186486864792 1.0 2039 -Phenotype MP:0002051 increased skin papilloma incidence 0.09908823589556226 0.7527626682852765 1.0 2040 -Biological Process GO:0010821 regulation of mitochondrion organization 0.09908315547976165 0.7526705867097829 1.0 2041 -Phenotype MP:0004147 increased porphyrin level 0.09904127387965067 0.751911490629113 1.0 2042 -Phenotype MP:0011989 abnormal porphyrin level 0.09904127387965067 0.751911490629113 1.0 2042 -Biological Process GO:0098760 response to interleukin-7 0.09899071178161156 0.7509950621652954 1.0 2044 -Biological Process GO:0009896 positive regulation of catabolic process 0.09891388514465405 0.7496025939011661 1.0 2045 -Phenotype MP:0005331 insulin resistance 0.09887980581307132 0.7489849124618766 1.0 2046 -Biological Process GO:0086004 regulation of cardiac muscle cell contraction 0.09884384678110969 0.7483331618087397 1.0 2047 -Phenotype MP:0011804 increased cell migration 0.09883652024866496 0.748200369793894 1.0 2048 -Biological Process GO:0090199 regulation of release of cytochrome c from mitochondria 0.09883619935923416 0.7481945537336526 1.0 2049 -Biological Process GO:0032963 collagen metabolic process 0.09882444380970656 0.7479814866218693 1.0 2050 -Phenotype MP:0006346 small pharyngeal arch 0.0987957541224147 0.747461491465973 1.0 2051 -Biological Process GO:0043114 regulation of vascular permeability 0.0987757776938546 0.7470994224765939 1.0 2052 -Biological Process GO:0097530 granulocyte migration 0.0987453012060765 0.7465470418998339 1.0 2053 -Biological Process GO:0045879 negative regulation of smoothened signaling pathway 0.09869980855448679 0.745722496194094 1.0 2054 -Biological Process GO:0051345 positive regulation of hydrolase activity 0.09869209620676944 0.745582711350404 1.0 2055 -Phenotype MP:0030529 abnormal head skin morphology 0.09868127259250403 0.7453865353889846 1.0 2056 -Phenotype MP:0030761 increased adrenaline level 0.09867675372697537 0.7453046318059603 1.0 2057 -Phenotype MP:0001212 skin lesions 0.0986562189339023 0.744932442565391 1.0 2058 -Phenotype MP:0002903 abnormal circulating parathyroid hormone level 0.09862664089336204 0.7443963461748875 1.0 2059 -Phenotype MP:0004492 abnormal orientation of inner hair cell stereociliary bundles 0.09859791809304563 0.7438757508516842 1.0 2060 -Phenotype MP:0005466 abnormal T-helper 2 physiology 0.09858903105839922 0.7437146750295812 1.0 2061 -Biological Process GO:0048639 positive regulation of developmental growth 0.09857812448024483 0.7435169953633655 1.0 2062 -Phenotype MP:0005185 decreased circulating progesterone level 0.09856925429135543 0.7433562248674221 1.0 2063 -Biological Process GO:1902176 negative regulation of oxidative stress-induced intrinsic apoptotic signaling pathway 0.09855498957798714 0.7430976796356006 1.0 2064 -Phenotype MP:0004733 abnormal thoracic cavity morphology 0.09851827512946076 0.7424322372001044 1.0 2065 -Biological Process GO:0034976 response to endoplasmic reticulum stress 0.09846089568980276 0.7413922457088529 1.0 2066 -Phenotype MP:0005465 abnormal T-helper 1 physiology 0.09843809474548504 0.7409789829055863 1.0 2067 -Phenotype MP:0005658 increased susceptibility to diet-induced obesity 0.09843773348234208 0.7409724350794483 1.0 2068 -Phenotype MP:0010200 enlarged lymphatic vessel 0.09842663548933772 0.7407712860552804 1.0 2069 -Biological Process GO:0001952 regulation of cell-matrix adhesion 0.09838439174783309 0.7400056262303448 1.0 2070 -Biological Process GO:0070227 lymphocyte apoptotic process 0.09837882428770905 0.7399047170686069 1.0 2071 -Phenotype MP:0013022 increased Ly6C high monocyte number 0.09834301648960542 0.7392557075005423 1.0 2072 -Phenotype MP:0004890 decreased energy expenditure 0.09832510671199624 0.7389310961687695 1.0 2073 -Phenotype MP:0009542 decreased thymocyte apoptosis 0.09830860157375887 0.7386319436599422 1.0 2074 -Phenotype MP:0000688 lymphoid hyperplasia 0.09829242749023948 0.7383387914552637 1.0 2075 -Biological Process GO:0021801 cerebral cortex radial glia-guided migration 0.09828017071396011 0.7381166397034048 1.0 2076 -Biological Process GO:0022030 telencephalon glial cell migration 0.09828017071396011 0.7381166397034048 1.0 2076 -Biological Process GO:1903076 regulation of protein localization to plasma membrane 0.09827760574286792 0.7380701500874887 1.0 2078 -Biological Process GO:0008543 fibroblast growth factor receptor signaling pathway 0.09827752854125271 0.7380687508228145 1.0 2079 -Phenotype MP:0004245 genital hemorrhage 0.09827184789093368 0.7379657901102008 1.0 2080 -Biological Process GO:0022898 regulation of transmembrane transporter activity 0.09825399893889974 0.737642281230475 1.0 2081 -Phenotype MP:0009766 increased susceptibility to xenobiotic induced morbidity/mortality 0.09824842519142929 0.7375412581117725 1.0 2082 -Phenotype MP:0010157 abnormal small intestinal crypt cell proliferation 0.09824763252735746 0.7375268912253924 1.0 2083 -Phenotype MP:0011278 increased ear pigmentation 0.09824557363879194 0.7374895742595533 1.0 2084 -Phenotype MP:0009845 abnormal neural crest cell morphology 0.09822007484829198 0.7370274135044951 1.0 2085 -Phenotype MP:0009335 decreased splenocyte proliferation 0.09818929262029674 0.736469491444126 1.0 2086 -Biological Process GO:0070570 regulation of neuron projection regeneration 0.09815003101769237 0.7357578823227262 1.0 2087 -Biological Process GO:0070233 negative regulation of T cell apoptotic process 0.09814372853138231 0.735643650950387 1.0 2088 -Phenotype MP:0002375 abnormal thymus medulla morphology 0.09810317935947199 0.7349087048788432 1.0 2089 -Phenotype MP:0014438 decreased interleukin level 0.09810141805658079 0.7348767815970669 1.0 2090 -Biological Process GO:0062042 regulation of cardiac epithelial to mesenchymal transition 0.098083589855252 0.7345536488199473 1.0 2091 -Phenotype MP:0008662 abnormal interleukin-12 secretion 0.09807109214344378 0.7343271301571975 1.0 2092 -Phenotype MP:0005220 abnormal exocrine pancreas morphology 0.09803171110090825 0.7336133562096357 1.0 2093 -Phenotype MP:0010294 increased kidney tumor incidence 0.09802055752066274 0.7334111996772358 1.0 2094 -Phenotype MP:0030310 abnormal cranial foramen morphology 0.09796829618132707 0.7324639727863066 1.0 2095 -Phenotype MP:0001034 abnormal parasympathetic ganglion morphology 0.09794602966333521 0.7320603963591167 1.0 2096 -Phenotype MP:0011479 abnormal catecholamine level 0.09789918824472377 0.7312114045062089 1.0 2097 -Phenotype MP:0003244 loss of dopaminergic neurons 0.09788782520280148 0.7310054515205341 1.0 2098 -Phenotype MP:0003038 decreased myocardial infarct size 0.09786499411535432 0.7305916423787476 1.0 2099 -Biological Process GO:0032943 mononuclear cell proliferation 0.09785010341934086 0.7303217513298786 1.0 2100 -Phenotype MP:0012770 abnormal effector memory CD4-positive, alpha-beta T cell number 0.09782107712282351 0.7297956551954354 1.0 2101 -Phenotype MP:0010843 abnormal effector memory CD4-positive, alpha-beta T cell morphology 0.09782107712282351 0.7297956551954354 1.0 2101 -Phenotype MP:0002335 decreased airway responsiveness 0.09779606165734367 0.7293422546149524 1.0 2103 -Biological Process GO:1901185 negative regulation of ERBB signaling pathway 0.09779031982962394 0.7292381850735219 1.0 2104 -Phenotype MP:0008584 photoreceptor outer segment degeneration 0.09777038628370305 0.728876893323868 1.0 2105 -Biological Process GO:0034103 regulation of tissue remodeling 0.09773574276058739 0.7282489860197533 1.0 2106 -Phenotype MP:0005036 diarrhea 0.09772631707689183 0.7280781472855128 1.0 2107 -Biological Process GO:0010950 positive regulation of endopeptidase activity 0.09770354194656561 0.7276653523559597 1.0 2108 -Phenotype MP:0009340 abnormal splenocyte apoptosis 0.09769691836896743 0.7275453012647535 1.0 2109 -Phenotype MP:0005310 abnormal salivary gland physiology 0.09765962945487139 0.7268694467494595 1.0 2110 -Phenotype MP:0031534 abnormal heart right ventricle wall morphology 0.09765754513098446 0.7268316687732308 1.0 2111 -Biological Process GO:0048841 regulation of axon extension involved in axon guidance 0.09765050512791607 0.7267040700491381 1.0 2112 -Biological Process GO:0061458 reproductive system development 0.09764511027294098 0.726606289323079 1.0 2113 -Phenotype MP:0010845 decreased effector memory CD4-positive, alpha-beta T cell number 0.09764003937148102 0.7265143801932101 1.0 2114 -Phenotype MP:0010464 abnormal aortic arch and aortic arch branch attachment 0.09763830741083879 0.7264829887341466 1.0 2115 -Phenotype MP:0002912 abnormal excitatory postsynaptic potential 0.09762650650166638 0.72626909948738 1.0 2116 -Phenotype MP:0010602 abnormal pulmonary valve cusp morphology 0.09761958312731167 0.7261436146366642 1.0 2117 -Biological Process GO:2001224 positive regulation of neuron migration 0.0975760997438685 0.7253554865360541 1.0 2118 -Biological Process GO:0021795 cerebral cortex cell migration 0.09753357618154834 0.7245847550117616 1.0 2119 -Phenotype MP:0009334 abnormal splenocyte proliferation 0.09751356290105995 0.7242220180881523 1.0 2120 -Biological Process GO:1902850 microtubule cytoskeleton organization involved in mitosis 0.09750978726212989 0.7241535853466564 1.0 2121 -Phenotype MP:0004947 skin inflammation 0.09750604241252592 0.7240857106558725 1.0 2122 -Phenotype MP:0020414 abnormal fibroblast physiology 0.09749636759486668 0.7239103564156605 1.0 2123 -Phenotype MP:0008546 abnormal vesicle-mediated transport 0.0974872574568102 0.7237452368864468 1.0 2124 -Biological Process GO:0097284 hepatocyte apoptotic process 0.09743136973576472 0.7227322825129088 1.0 2125 -Phenotype MP:0013300 abnormal submandibular gland physiology 0.09737457589863885 0.7217029049567932 1.0 2126 -Phenotype MP:0009866 abnormal aorta wall morphology 0.09736131239536427 0.7214625064685549 1.0 2127 -Biological Process GO:0070534 protein K63-linked ubiquitination 0.09736009255521205 0.7214403970965123 1.0 2128 -Biological Process GO:0031589 cell-substrate adhesion 0.09732934834184348 0.7208831640440616 1.0 2129 -Phenotype MP:0005455 increased susceptibility to weight gain 0.09732873172989776 0.7208719880691692 1.0 2130 -Phenotype MP:0003814 vascular smooth muscle hypoplasia 0.09730117685256845 0.7203725611292102 1.0 2131 -Phenotype MP:0004946 abnormal regulatory T cell physiology 0.09729024418165577 0.7201744085366857 1.0 2132 -Phenotype MP:0009846 abnormal neural crest morphology 0.09727956121662551 0.7199807818160514 1.0 2133 -Phenotype MP:0002295 abnormal pulmonary circulation 0.09723950940992643 0.7192548503948915 1.0 2134 -Phenotype MP:0000133 abnormal long bone metaphysis morphology 0.0972375448203946 0.7192192425812026 1.0 2135 -Biological Process GO:0032715 negative regulation of interleukin-6 production 0.09721385554401785 0.7187898789273822 1.0 2136 -Phenotype MP:0009940 abnormal hippocampus pyramidal cell morphology 0.09720267821540118 0.7185872919602467 1.0 2137 -Phenotype MP:0003925 abnormal cellular glucose uptake 0.09718861266711354 0.7183323565578426 1.0 2138 -Biological Process GO:1902337 regulation of apoptotic process involved in morphogenesis 0.09718826317997142 0.7183260221694925 1.0 2139 -Biological Process GO:0007040 lysosome organization 0.09717043539937598 0.7180028970180851 1.0 2140 -Biological Process GO:0080171 lytic vacuole organization 0.09717043539937598 0.7180028970180851 1.0 2140 -Biological Process GO:0060707 trophoblast giant cell differentiation 0.09717027788430299 0.718000042087179 1.0 2142 -Phenotype MP:0001680 abnormal mesoderm development 0.0971558058292934 0.7177377388273248 1.0 2143 -Biological Process GO:0031032 actomyosin structure organization 0.09715370002456913 0.7176995715149822 1.0 2144 -Biological Process GO:0071711 basement membrane organization 0.09713370075929728 0.7173370886145222 1.0 2145 -Phenotype MP:0002748 abnormal pulmonary valve morphology 0.09711919903152988 0.7170742475415448 1.0 2146 -Phenotype MP:0008027 abnormal spinal cord white matter morphology 0.09710304679757942 0.7167814913561706 1.0 2147 -Biological Process GO:0030858 positive regulation of epithelial cell differentiation 0.09709761124953409 0.7166829730759099 1.0 2148 -Phenotype MP:0005078 abnormal cytotoxic T cell physiology 0.09706264575682266 0.7160492301337683 1.0 2149 -Phenotype MP:0000611 jaundice 0.096990056030133 0.7147335550668892 1.0 2150 -Phenotype MP:0001654 hepatic necrosis 0.09698243915490523 0.7145955006440154 1.0 2151 -Biological Process GO:1902229 regulation of intrinsic apoptotic signaling pathway in response to DNA damage 0.09697457494569894 0.7144529633395609 1.0 2152 -Phenotype MP:0002243 abnormal vomeronasal organ morphology 0.09697153351277177 0.714397837943002 1.0 2153 -Phenotype MP:0010724 thick interventricular septum 0.09694230756267497 0.7138681231251931 1.0 2154 -Phenotype MP:0008055 increased urine osmolality 0.09694215700097386 0.7138653942228373 1.0 2155 -Biological Process GO:0045921 positive regulation of exocytosis 0.09693724002693194 0.713776274998307 1.0 2156 -Biological Process GO:0090178 regulation of establishment of planar polarity involved in neural tube closure 0.09691134833146886 0.7133069929151049 1.0 2157 -Biological Process GO:0003283 atrial septum development 0.0968818057418247 0.7127715390653881 1.0 2158 -Phenotype MP:0008500 increased IgG2a level 0.09687825325754662 0.7127071509597527 1.0 2159 -Phenotype MP:0000628 abnormal mammary gland development 0.09687534933567665 0.7126545179250973 1.0 2160 -Biological Process GO:0046651 lymphocyte proliferation 0.09684744976863202 0.7121488435492414 1.0 2161 -Phenotype MP:0010099 abnormal thoracic cage shape 0.09682974579205528 0.7118279623222571 1.0 2162 -Biological Process GO:1901019 regulation of calcium ion transmembrane transporter activity 0.09681908755749491 0.7116347838367122 1.0 2163 -Biological Process GO:0051445 regulation of meiotic cell cycle 0.09680466404520305 0.7113733604044358 1.0 2164 -Phenotype MP:0008164 abnormal B-1a B cell morphology 0.0967909297143541 0.7111244282554626 1.0 2165 -Biological Process GO:0070229 negative regulation of lymphocyte apoptotic process 0.09678194649863081 0.7109616091695324 1.0 2166 -Phenotype MP:0002277 abnormal respiratory mucosa morphology 0.09675665910704212 0.7105032799797577 1.0 2167 -Biological Process GO:0060338 regulation of type I interferon-mediated signaling pathway 0.0967527466250705 0.7104323669840154 1.0 2168 -Phenotype MP:0003667 increased hemangiosarcoma incidence 0.09673910209088954 0.7101850623826658 1.0 2169 -Phenotype MP:0009346 decreased trabecular bone thickness 0.0967301203664982 0.7100222703268451 1.0 2170 -Phenotype MP:0004829 increased anti-chromatin antibody level 0.09669782403370841 0.7094369054034475 1.0 2171 -Biological Process GO:0018193 peptidyl-amino acid modification 0.09668681216801611 0.7092373174205209 1.0 2172 -Phenotype MP:0008169 increased B-1b cell number 0.0966718423764954 0.7089659927805428 1.0 2173 -Biological Process GO:0015800 acidic amino acid transport 0.0966678603733111 0.7088938197259698 1.0 2174 -Phenotype MP:0005432 abnormal pro-B cell morphology 0.09664798372531758 0.708533559240488 1.0 2175 -Biological Process GO:0034504 protein localization to nucleus 0.0966334630820882 0.70827037532834 1.0 2176 -Phenotype MP:0030970 ketosis 0.09658956563079091 0.7074747423261895 1.0 2177 -Biological Process GO:0030888 regulation of B cell proliferation 0.09653777092569427 0.7065359730925851 1.0 2178 -Biological Process GO:1903978 regulation of microglial cell activation 0.09651030285734807 0.7060381195490262 1.0 2179 -Phenotype MP:0003866 abnormal defecation 0.09649923328106391 0.7058374855725373 1.0 2180 -Biological Process GO:0099175 regulation of postsynapse organization 0.09647293371091026 0.7053608108377125 1.0 2181 -Phenotype MP:0010680 abnormal skin adnexa physiology 0.09643767429338856 0.7047217405639767 1.0 2182 -Biological Process GO:0034389 lipid droplet organization 0.09642045595681958 0.7044096614702808 1.0 2183 -Phenotype MP:0009920 abnormal transitional stage T2 B cell morphology 0.0964079853371207 0.7041836338468885 1.0 2184 -Phenotype MP:0006270 abnormal mammary gland growth during lactation 0.09640288456589519 0.7040911833331686 1.0 2185 -Biological Process GO:0010720 positive regulation of cell development 0.09639497177744472 0.7039477655391013 1.0 2186 -Biological Process GO:0090279 regulation of calcium ion import 0.09638945856503034 0.7038478396068408 1.0 2187 -Biological Process GO:0021879 forebrain neuron differentiation 0.09636301093219724 0.703368481263955 1.0 2188 -Phenotype MP:0000479 abnormal enterocyte morphology 0.09631551913978986 0.7025077015090055 1.0 2189 -Biological Process GO:0030099 myeloid cell differentiation 0.09630913004234487 0.702391900326227 1.0 2190 -Phenotype MP:0005098 abnormal optic choroid morphology 0.09630142960481203 0.7022523313523784 1.0 2191 -Phenotype MP:0005169 abnormal male meiosis 0.09629148944224974 0.7020721677859852 1.0 2192 -Phenotype MP:0008968 abnormal lacrimal apparatus morphology 0.09628814878305458 0.7020116189699137 1.0 2193 -Biological Process GO:0045939 negative regulation of steroid metabolic process 0.09627954001960248 0.7018555867605762 1.0 2194 -Biological Process GO:0045785 positive regulation of cell adhesion 0.09617970872043857 0.7000461633449787 1.0 2195 -Phenotype MP:0012091 increased midbrain size 0.09616535232594758 0.6997859564101485 1.0 2196 -Biological Process GO:0002695 negative regulation of leukocyte activation 0.09613804793016945 0.6992910694009292 1.0 2197 -Phenotype MP:0030031 abnormal forehead morphology 0.09613429565808163 0.6992230601790294 1.0 2198 -Biological Process GO:0001707 mesoderm formation 0.09611579387956626 0.698887718942801 1.0 2199 -Phenotype MP:0002405 respiratory system inflammation 0.09610475608007374 0.6986876609146505 1.0 2200 -Phenotype MP:0013534 abnormal major salivary gland physiology 0.09609694848449313 0.6985461497214537 1.0 2201 -Biological Process GO:0048608 reproductive structure development 0.09607758590823645 0.6981952066889724 1.0 2202 -Phenotype MP:0008613 abnormal circulating interleukin-17 level 0.09603973353279005 0.6975091395432744 1.0 2203 -Biological Process GO:1901888 regulation of cell junction assembly 0.09603138797111743 0.697357877816409 1.0 2204 -Biological Process GO:1903052 positive regulation of proteolysis involved in protein catabolic process 0.09603071791184636 0.6973457331188536 1.0 2205 -Phenotype MP:0003253 dilated bile duct 0.0960116148966208 0.6969994945809689 1.0 2206 -Phenotype MP:0012776 abnormal liver cholesterol level 0.09600997557603741 0.6969697822054504 1.0 2207 -Biological Process GO:0042492 gamma-delta T cell differentiation 0.09600114609670563 0.696809749562539 1.0 2208 -Phenotype MP:0030319 abnormal temporal bone petrous part morphology 0.0959933374486377 0.6966682192932087 1.0 2209 -Biological Process GO:0048146 positive regulation of fibroblast proliferation 0.09597208557611525 0.6962830331232454 1.0 2210 -Biological Process GO:0006910 phagocytosis, recognition 0.09595095845679846 0.6959001080815392 1.0 2211 -Phenotype MP:0030975 placenta hemorrhage 0.09594619931477322 0.6958138495324594 1.0 2212 -Phenotype MP:0010299 increased mammary gland tumor incidence 0.09593245311081833 0.6955647021856867 1.0 2213 -Biological Process GO:0002699 positive regulation of immune effector process 0.0959207474010666 0.6953525384104142 1.0 2214 -Phenotype MP:0010221 abnormal T-helper 17 cell differentiation 0.0959144314299728 0.6952380626289203 1.0 2215 -Biological Process GO:0010035 response to inorganic substance 0.09588404946479367 0.6946873952563889 1.0 2216 -Biological Process GO:0097205 renal filtration 0.09587277404414651 0.6944830303897533 1.0 2217 -Phenotype MP:0030306 abnormal cranial fossa morphology 0.09584680761341735 0.6940123937439886 1.0 2218 -Biological Process GO:0003205 cardiac chamber development 0.09582738339514585 0.6936603334616475 1.0 2219 -Phenotype MP:0003830 abnormal testis development 0.09581358514529648 0.693410242792881 1.0 2220 -Biological Process GO:0001960 negative regulation of cytokine-mediated signaling pathway 0.09580510459161706 0.6932565343614244 1.0 2221 -Biological Process GO:0060761 negative regulation of response to cytokine stimulus 0.09580510459161706 0.6932565343614244 1.0 2221 -Biological Process GO:0050817 coagulation 0.09579818754867797 0.6931311642664191 1.0 2223 -Biological Process GO:0007596 blood coagulation 0.09579818754867797 0.6931311642664191 1.0 2223 -Biological Process GO:0033674 positive regulation of kinase activity 0.0957921281855113 0.6930213394550703 1.0 2225 -Biological Process GO:0044772 mitotic cell cycle phase transition 0.09576637060420079 0.6925544881655175 1.0 2226 -Biological Process GO:0061299 retina vasculature morphogenesis in camera-type eye 0.0957555316313673 0.6923580338329565 1.0 2227 -Phenotype MP:0008722 abnormal chemokine secretion 0.09573451785837594 0.6919771631719609 1.0 2228 -Phenotype MP:0006057 decreased vascular endothelial cell number 0.09569215020944521 0.6912092575483627 1.0 2229 -Phenotype MP:0011257 abnormal head fold morphology 0.09567077393205681 0.6908218165637333 1.0 2230 -Biological Process GO:0001913 T cell mediated cytotoxicity 0.09566918730811025 0.6907930593047905 1.0 2231 -Phenotype MP:0008085 abnormal T-helper 1 cell number 0.09564484677336438 0.6903518917162066 1.0 2232 -Phenotype MP:0004400 abnormal cochlear outer hair cell number 0.09563610216494633 0.6901933973425547 1.0 2233 -Biological Process GO:0007350 blastoderm segmentation 0.09561205623396662 0.6897575693915121 1.0 2234 -Phenotype MP:0003416 premature bone ossification 0.09560884836140882 0.6896994273081278 1.0 2235 -Biological Process GO:0002065 columnar/cuboidal epithelial cell differentiation 0.09558911780595736 0.6893418147223395 1.0 2236 -Biological Process GO:0031929 TOR signaling 0.0955756769431052 0.6890982016253027 1.0 2237 -Phenotype MP:0001190 reddish skin 0.09555161190929684 0.6886620274391038 1.0 2238 -Phenotype MP:0004032 abnormal interventricular groove morphology 0.0955392904027712 0.6884387024637739 1.0 2239 -Phenotype MP:0012315 impaired learning 0.09553536306438026 0.6883675201982414 1.0 2240 -Phenotype MP:0005152 pancytopenia 0.0955216359054305 0.6881187180385846 1.0 2241 -Phenotype MP:0008590 abnormal circulating interleukin-10 level 0.09551937188586734 0.6880776831122112 1.0 2242 -Biological Process GO:0002688 regulation of leukocyte chemotaxis 0.09551019218540213 0.6879113027774962 1.0 2243 -Phenotype MP:0002399 abnormal pluripotent precursor cell morphology 0.09550002176322925 0.6877269657992113 1.0 2244 -Biological Process GO:0044839 cell cycle G2/M phase transition 0.09548607107683926 0.6874741122469776 1.0 2245 -Biological Process GO:0035272 exocrine system development 0.0954648719341985 0.6870898817961467 1.0 2246 -Biological Process GO:0007229 integrin-mediated signaling pathway 0.09545644894695504 0.6869372167454538 1.0 2247 -Phenotype MP:0008735 increased susceptibility to endotoxin shock 0.09543952490943042 0.6866304717662742 1.0 2248 -Biological Process GO:0031330 negative regulation of cellular catabolic process 0.09543785370931956 0.6866001815803501 1.0 2249 -Biological Process GO:0035455 response to interferon-alpha 0.09542952878279765 0.6864492938616882 1.0 2250 -Biological Process GO:2000058 regulation of ubiquitin-dependent protein catabolic process 0.09542463570221116 0.6863606077015185 1.0 2251 -Phenotype MP:0005528 decreased renal glomerular filtration rate 0.09537380241833537 0.6854392640457023 1.0 2252 -Phenotype MP:0003643 spleen atrophy 0.09537239497472794 0.6854137543965165 1.0 2253 -Phenotype MP:0010834 abnormal CD4-positive, alpha-beta memory T cell morphology 0.09536841814656105 0.6853416751381554 1.0 2254 -Phenotype MP:0003446 renal hypoplasia 0.09533651368479157 0.6847634128028836 1.0 2255 -Biological Process GO:0043371 negative regulation of CD4-positive, alpha-beta T cell differentiation 0.09528536064526894 0.6838362736364456 1.0 2256 -Phenotype MP:0009305 decreased retroperitoneal fat pad weight 0.09528079345640872 0.6837534942021767 1.0 2257 -Biological Process GO:0021846 cell proliferation in forebrain 0.09526161992570104 0.6834059775845155 1.0 2258 -Biological Process GO:0010543 regulation of platelet activation 0.09524577662976919 0.6831188208422971 1.0 2259 -Phenotype MP:0000048 abnormal stria vascularis morphology 0.09524208331987472 0.6830518802989998 1.0 2260 -Biological Process GO:0032252 secretory granule localization 0.09522294757989447 0.6827050486311258 1.0 2261 -Phenotype MP:0006269 abnormal mammary gland growth during pregnancy 0.09520327202043777 0.6823484328373407 1.0 2262 -Phenotype MP:0002492 decreased IgE level 0.09519675170898767 0.682230253425537 1.0 2263 -Biological Process GO:0048484 enteric nervous system development 0.0951776218875966 0.6818835290309724 1.0 2264 -Biological Process GO:0033002 muscle cell proliferation 0.09515734440742785 0.6815160035381266 1.0 2265 -Biological Process GO:0003179 heart valve morphogenesis 0.09515018313131807 0.6813862067630959 1.0 2266 -Biological Process GO:0003148 outflow tract septum morphogenesis 0.09514706090353187 0.6813296169749984 1.0 2267 -Phenotype MP:0011075 abnormal macrophage activation involved in immune response 0.0951235888828903 0.6809041910402872 1.0 2268 -Phenotype MP:0003964 abnormal noradrenaline level 0.09511752353831926 0.6807942578171156 1.0 2269 -Biological Process GO:0048670 regulation of collateral sprouting 0.09511620621239203 0.680770381533839 1.0 2270 -Phenotype MP:0003049 abnormal lumbar vertebrae morphology 0.09511066168218996 0.6806698879725998 1.0 2271 -Phenotype MP:0008671 abnormal interleukin-13 secretion 0.09510757523600721 0.6806139467192973 1.0 2272 -Biological Process GO:0060326 cell chemotaxis 0.0951049139934389 0.680565712201085 1.0 2273 -Biological Process GO:0002687 positive regulation of leukocyte migration 0.09508865214095685 0.6802709692005586 1.0 2274 -Phenotype MP:0012532 abnormal surface ectoderm morphology 0.09504736716857054 0.6795226868845543 1.0 2275 -Biological Process GO:0003015 heart process 0.09502502751130515 0.6791177848218649 1.0 2276 -Phenotype MP:0001542 abnormal bone strength 0.09501549659890529 0.6789450388372615 1.0 2277 -Biological Process GO:0046887 positive regulation of hormone secretion 0.09500386403231387 0.6787342007679356 1.0 2278 -Phenotype MP:0005629 abnormal lung weight 0.09496843588729331 0.6780920723401954 1.0 2279 -Biological Process GO:0033500 carbohydrate homeostasis 0.09496347283177842 0.6780021178976832 1.0 2280 -Biological Process GO:0042593 glucose homeostasis 0.09496347283177842 0.6780021178976832 1.0 2280 -Phenotype MP:0008036 abnormal NK T cell morphology 0.09492200247391924 0.6772504755050464 1.0 2282 -Phenotype MP:0008038 abnormal NK T cell number 0.09492200247391924 0.6772504755050464 1.0 2282 -Phenotype MP:0000250 abnormal vasoconstriction 0.09490334579378068 0.6769123267061952 1.0 2284 -Biological Process GO:0051640 organelle localization 0.09489677229081483 0.676793183208229 1.0 2285 -Phenotype MP:0008750 abnormal interferon level 0.09487682674102005 0.6764316738906311 1.0 2286 -Biological Process GO:0001508 action potential 0.0948265124931541 0.6755197376643245 1.0 2287 -Phenotype MP:0001337 dry eyes 0.09480855838263769 0.6751943228069931 1.0 2288 -Phenotype MP:0002463 abnormal neutrophil physiology 0.09479656003609094 0.6749768550451593 1.0 2289 -Biological Process GO:0001974 blood vessel remodeling 0.09475293907256144 0.674186233331506 1.0 2290 -Biological Process GO:1901890 positive regulation of cell junction assembly 0.09474176036914228 0.6739836214463353 1.0 2291 -Phenotype MP:0004837 abnormal neural fold formation 0.0947400478890209 0.673952583068028 1.0 2292 -Biological Process GO:2000060 positive regulation of ubiquitin-dependent protein catabolic process 0.09473194025104603 0.673805633663184 1.0 2293 -Biological Process GO:0048070 regulation of developmental pigmentation 0.09471787368311269 0.6735506797798945 1.0 2294 -Phenotype MP:0013616 decreased volumetric bone mineral density 0.09470435417460255 0.6733056412451814 1.0 2295 -Phenotype MP:0004893 decreased adiponectin level 0.09469544563839383 0.6731441757113283 1.0 2296 -Phenotype MP:0010868 increased bone trabecula number 0.0946841496757489 0.6729394385248684 1.0 2297 -Biological Process GO:0030879 mammary gland development 0.0946563313162212 0.6724352360198976 1.0 2298 -Biological Process GO:0090175 regulation of establishment of planar polarity 0.09463087362710365 0.6719738202196218 1.0 2299 -Phenotype MP:0010982 abnormal ureteric bud elongation 0.0945872979900777 0.6711840200402724 1.0 2300 -Biological Process GO:1905952 regulation of lipid localization 0.09456019810509797 0.6706928397505938 1.0 2301 -Phenotype MP:0008572 abnormal Purkinje cell dendrite morphology 0.09455907656109663 0.6706725119776946 1.0 2302 -Phenotype MP:0010018 pulmonary vascular congestion 0.09454831170581945 0.6704774010118234 1.0 2303 -Phenotype MP:0011089 perinatal lethality, complete penetrance 0.09453548461662764 0.6702449124462933 1.0 2304 -Biological Process GO:0006612 protein targeting to membrane 0.09452415003240278 0.6700394752510018 1.0 2305 -Biological Process GO:0070266 necroptotic process 0.09451141528588836 0.6698086603790341 1.0 2306 -Phenotype MP:0010156 abnormal small intestinal crypt cell physiology 0.09448924283782634 0.6694067889515305 1.0 2307 -Biological Process GO:0099084 postsynaptic specialization organization 0.09448374162358708 0.6693070804839247 1.0 2308 -Biological Process GO:0099054 presynapse assembly 0.09446950037493407 0.6690489605456296 1.0 2309 -Phenotype MP:0006055 abnormal vascular endothelial cell morphology 0.09446405722962847 0.6689503045664634 1.0 2310 -Biological Process GO:1903035 negative regulation of response to wounding 0.09444459685710782 0.6685975889951945 1.0 2311 -Biological Process GO:1901184 regulation of ERBB signaling pathway 0.09444433988842538 0.6685929314864274 1.0 2312 -Biological Process GO:0008589 regulation of smoothened signaling pathway 0.09444221948294151 0.6685544995380786 1.0 2313 -Phenotype MP:0011454 abnormal glomerular endothelium fenestra morphology 0.09440801904327167 0.6679346230376162 1.0 2314 -Biological Process GO:0002698 negative regulation of immune effector process 0.09440446903444444 0.667870279799059 1.0 2315 -Phenotype MP:0008844 decreased subcutaneous adipose tissue amount 0.09440302532052613 0.6678441127573488 1.0 2316 -Phenotype MP:0000276 heart right ventricle hypertrophy 0.09438462853900709 0.66751067457182 1.0 2317 -Phenotype MP:0004001 decreased hepatocyte proliferation 0.09436869515964097 0.6672218850843936 1.0 2318 -Biological Process GO:0042102 positive regulation of T cell proliferation 0.09435891015755837 0.6670445337723482 1.0 2319 -Biological Process GO:0016188 synaptic vesicle maturation 0.09435673438579195 0.6670050983205998 1.0 2320 -Phenotype MP:0008825 abnormal cardiac epithelial to mesenchymal transition 0.0943441046989354 0.6667761876350602 1.0 2321 -Biological Process GO:0032674 regulation of interleukin-5 production 0.09431776560094274 0.6662987964656296 1.0 2322 -Phenotype MP:0009630 absent axillary lymph nodes 0.0943071728242848 0.6661068043921858 1.0 2323 -Biological Process GO:0032814 regulation of natural killer cell activation 0.09425004459265662 0.6650713659989622 1.0 2324 -Biological Process GO:0046627 negative regulation of insulin receptor signaling pathway 0.09424073846737036 0.6649026942382771 1.0 2325 -Biological Process GO:0043467 regulation of generation of precursor metabolites and energy 0.0942110731365362 0.6643650157277067 1.0 2326 -Biological Process GO:0046622 positive regulation of organ growth 0.09418279545447761 0.6638524880887381 1.0 2327 -Biological Process GO:1904377 positive regulation of protein localization to cell periphery 0.09417163336416678 0.6636501773130138 1.0 2328 -Biological Process GO:0007200 phospholipase C-activating G protein-coupled receptor signaling pathway 0.09414763714098051 0.6632152503063257 1.0 2329 -Phenotype MP:0011178 increased erythroblast number 0.09413886697580853 0.6630562927213424 1.0 2330 -Phenotype MP:0000734 muscle hypoplasia 0.09413445623670613 0.6629763489093434 1.0 2331 -Biological Process GO:0023061 signal release 0.09412517653106556 0.6628081559997395 1.0 2332 -Phenotype MP:0013284 abnormal renal glomerular filtration 0.09412336451391312 0.6627753135315704 1.0 2333 -Biological Process GO:0098926 postsynaptic signal transduction 0.09412324394444371 0.6627731282327414 1.0 2334 -Phenotype MP:0014235 abnormal tumor-free survival time 0.09412154892995805 0.6627424064157781 1.0 2335 -Phenotype MP:0014237 decreased tumor-free survival time 0.09412154892995805 0.6627424064157781 1.0 2335 -Biological Process GO:0048066 developmental pigmentation 0.09411158020775767 0.6625617252113459 1.0 2337 -Biological Process GO:0141085 regulation of inflammasome-mediated signaling pathway 0.09408386740612773 0.6620594359233072 1.0 2338 -Phenotype MP:0013504 increased embryonic tissue cell apoptosis 0.09408008570303983 0.6619908932700972 1.0 2339 -Biological Process GO:0031349 positive regulation of defense response 0.09406388019394996 0.6616971714828975 1.0 2340 -Biological Process GO:0002218 activation of innate immune response 0.09406291095892483 0.6616796042813848 1.0 2341 -Phenotype MP:0014101 decreased chondrocyte proliferation 0.09404325808432468 0.6613233996463341 1.0 2342 -Phenotype MP:0009786 decreased susceptibility to infection induced morbidity/mortality 0.09404031071795582 0.6612699791883534 1.0 2343 -Phenotype MP:0009964 abnormal cerebellum lobule morphology 0.09400872921785575 0.6606975704722557 1.0 2344 -Phenotype MP:0009903 abnormal medial nasal prominence morphology 0.0940047623751038 0.6606256721976517 1.0 2345 -Phenotype MP:0020332 impaired leukocyte tethering or rolling 0.09397154854799672 0.6600236778632848 1.0 2346 -Phenotype MP:0000240 extramedullary hematopoiesis 0.09396885792390786 0.6599749108105695 1.0 2347 -Phenotype MP:0005288 abnormal oxygen consumption 0.09395489676520274 0.6597218674496049 1.0 2348 -Phenotype MP:0000878 abnormal Purkinje cell number 0.09394822297573702 0.6596009062777961 1.0 2349 -Phenotype MP:0008548 abnormal circulating interferon level 0.09394145128890119 0.6594781707346703 1.0 2350 -Phenotype MP:0010835 increased CD4-positive, alpha-beta memory T cell number 0.09394096247293726 0.6594693110377771 1.0 2351 -Biological Process GO:0072337 modified amino acid transport 0.0939139745056522 0.6589801592351465 1.0 2352 -Phenotype MP:0011376 abnormal kidney corticomedullary boundary morphology 0.09389602763965166 0.6586548756832953 1.0 2353 -Biological Process GO:0032885 regulation of polysaccharide biosynthetic process 0.09387977875503672 0.6583603677229076 1.0 2354 -Phenotype MP:0000417 short hair 0.09385751524172581 0.6579568457549916 1.0 2355 -Phenotype MP:0009661 abnormal pregnancy 0.09380114103777182 0.6569350739707485 1.0 2356 -Phenotype MP:0004847 abnormal liver weight 0.0937770879612172 0.656499116507512 1.0 2357 -Biological Process GO:0014015 positive regulation of gliogenesis 0.0937760335518989 0.6564800055380452 1.0 2358 -Phenotype MP:0004794 increased anti-nuclear antigen antibody level 0.09377398848233653 0.6564429390390247 1.0 2359 -Phenotype MP:0031461 abnormal palatal shelf size 0.09375831259756562 0.6561588165924348 1.0 2360 -Phenotype MP:0001243 abnormal dermal layer morphology 0.0937498021990808 0.6560045672295249 1.0 2361 -Phenotype MP:0001443 poor grooming 0.09373529087537169 0.6557415522319192 1.0 2362 -Phenotype MP:0020393 increased neuronal precursor proliferation 0.09372980800239394 0.6556421761962092 1.0 2363 -Biological Process GO:0043407 negative regulation of MAP kinase activity 0.09372156654942443 0.6554928014198969 1.0 2364 -Phenotype MP:0000860 abnormal primary somatosensory cortex morphology 0.09370612233726816 0.6552128779956296 1.0 2365 -Biological Process GO:0010803 regulation of tumor necrosis factor-mediated signaling pathway 0.09370026011866472 0.6551066263922022 1.0 2366 -Phenotype MP:0011073 abnormal macrophage apoptosis 0.09369832043084958 0.6550714699174185 1.0 2367 -Phenotype MP:0006400 decreased molar number 0.09369537512959947 0.6550180868893244 1.0 2368 -Biological Process GO:0044770 cell cycle phase transition 0.09365223687735058 0.6542362142263338 1.0 2369 -Phenotype MP:0004062 dilated heart right atrium 0.09364837426945949 0.6541662051888681 1.0 2370 -Phenotype MP:0004184 abnormal baroreceptor physiology 0.09364823257606814 0.6541636370229493 1.0 2371 -Biological Process GO:0043534 blood vessel endothelial cell migration 0.09363788497702608 0.6539760887474213 1.0 2372 -Phenotype MP:0003014 abnormal kidney medulla morphology 0.09362143896414288 0.6536780078744555 1.0 2373 -Phenotype MP:0005091 increased double-positive T cell number 0.0936163446828473 0.6535856749894879 1.0 2374 -Biological Process GO:0061512 protein localization to cilium 0.09359162332012949 0.6531376049659412 1.0 2375 -Phenotype MP:0011097 embryonic lethality between somite formation and embryo turning, complete penetrance 0.09354616729971832 0.652313723193384 1.0 2376 -Phenotype MP:0003396 abnormal embryonic hematopoiesis 0.09353908891498397 0.6521854288088552 1.0 2377 -Biological Process GO:1902105 regulation of leukocyte differentiation 0.09353813884931617 0.6521682090483184 1.0 2378 -Biological Process GO:0046486 glycerolipid metabolic process 0.09350077308406113 0.6514909616203031 1.0 2379 -Biological Process GO:0046323 glucose import 0.0934967134875756 0.651417382201821 1.0 2380 -Phenotype MP:0000610 cholestasis 0.09348988230900424 0.6512935683822406 1.0 2381 -Phenotype MP:0003868 abnormal feces composition 0.09346684906422198 0.6508760951769909 1.0 2382 -Biological Process GO:0010934 macrophage cytokine production 0.09346168585199954 0.6507825129320114 1.0 2383 -Phenotype MP:0001905 abnormal dopamine level 0.09345934405372702 0.6507400682812416 1.0 2384 -Phenotype MP:0008108 abnormal small intestinal villus morphology 0.09343900473336852 0.6503714219466529 1.0 2385 -Phenotype MP:0003976 decreased circulating VLDL triglyceride level 0.09340478253835482 0.6497511511346977 1.0 2386 -Phenotype MP:0004272 abnormal basement membrane morphology 0.09336032963169849 0.6489454506092215 1.0 2387 -Biological Process GO:0006366 transcription by RNA polymerase II 0.09333850655314413 0.6485499114379656 1.0 2388 -Biological Process GO:0030198 extracellular matrix organization 0.09333748796876917 0.648531449788821 1.0 2389 -Biological Process GO:0045229 external encapsulating structure organization 0.09333748796876917 0.648531449788821 1.0 2389 -Phenotype MP:0011350 abnormal proximal convoluted tubule brush border morphology 0.09332679232022056 0.6483375931818157 1.0 2391 -Phenotype MP:0010850 increased effector memory CD8-positive, alpha-beta T cell number 0.0932837194399343 0.6475569053732835 1.0 2392 -Biological Process GO:0030029 actin filament-based process 0.09326955016467486 0.6473000899391341 1.0 2393 -Phenotype MP:0020363 abnormal germ cell physiology 0.09326693466501468 0.6472526845024799 1.0 2394 -Biological Process GO:0099010 modification of postsynaptic structure 0.09325870178469264 0.6471034651037817 1.0 2395 -Phenotype MP:0008876 decreased uterine NK cell number 0.09324848465713043 0.6469182815991488 1.0 2396 -Biological Process GO:0051048 negative regulation of secretion 0.09324644175196795 0.6468812543294669 1.0 2397 -Phenotype MP:0004406 abnormal cochlear hair cell number 0.09322979046883784 0.6465794529721001 1.0 2398 -Phenotype MP:0003894 abnormal Purkinje cell innervation 0.09320854624722963 0.6461944054735103 1.0 2399 -Phenotype MP:0003762 abnormal immune organ physiology 0.09311251274816035 0.644453816466325 1.0 2400 -Biological Process GO:0051924 regulation of calcium ion transport 0.09309552992837644 0.6441460060698138 1.0 2401 -Phenotype MP:0000280 thin ventricular wall 0.09304791506670107 0.6432829957076587 1.0 2402 -Biological Process GO:0002446 neutrophil mediated immunity 0.09304609145481157 0.6432499430870733 1.0 2403 -Biological Process GO:0045087 innate immune response 0.0930398513812899 0.6431368429347188 1.0 2404 -Biological Process GO:1905475 regulation of protein localization to membrane 0.09300986784902443 0.6425933970833895 1.0 2405 -Biological Process GO:0051489 regulation of filopodium assembly 0.09300814619093711 0.6425621923561853 1.0 2406 -Phenotype MP:0005194 abnormal anterior uvea morphology 0.0929542868074299 0.6415860012168955 1.0 2407 -Phenotype MP:0005197 abnormal uvea morphology 0.0929530321861578 0.6415632614436334 1.0 2408 -Biological Process GO:0002685 regulation of leukocyte migration 0.09290844786349406 0.6407551790278785 1.0 2409 -Biological Process GO:0002573 myeloid leukocyte differentiation 0.09286989292136316 0.640056377993905 1.0 2410 -Phenotype MP:0013021 abnormal Ly6C high monocyte number 0.09286500054167968 0.6399677045374697 1.0 2411 -Phenotype MP:0001270 distended abdomen 0.09281594163494089 0.639078521131662 1.0 2412 -Biological Process GO:0034762 regulation of transmembrane transport 0.09280752597173458 0.6389259888277572 1.0 2413 -Phenotype MP:0005118 decreased circulating pituitary hormone level 0.09274151368483219 0.637729528612988 1.0 2414 -Phenotype MP:0002400 abnormal multipotent stem cell morphology 0.09274084871062704 0.6377174760812907 1.0 2415 -Biological Process GO:0008643 carbohydrate transport 0.09273643616476868 0.6376374995221815 1.0 2416 -Biological Process GO:0032753 positive regulation of interleukin-4 production 0.0927144693024442 0.6372393542972872 1.0 2417 -Biological Process GO:0051963 regulation of synapse assembly 0.09271120938201938 0.6371802688561573 1.0 2418 -Phenotype MP:0004113 abnormal aortic arch morphology 0.09269639695063658 0.6369117963389165 1.0 2419 -Biological Process GO:0048644 muscle organ morphogenesis 0.09266870452407161 0.6364098763450766 1.0 2420 -Biological Process GO:0009798 axis specification 0.0926532895966744 0.6361304837015286 1.0 2421 -Phenotype MP:0001954 respiratory distress 0.0926473205466225 0.6360222957983034 1.0 2422 -Phenotype MP:0030283 small mandibular coronoid process 0.0926312086903992 0.6357302714515971 1.0 2423 -Biological Process GO:0048143 astrocyte activation 0.09259938075692442 0.6351533961771925 1.0 2424 -Phenotype MP:0010499 abnormal ventricle myocardium morphology 0.09257524396194927 0.6347159213334183 1.0 2425 -Phenotype MP:0008086 increased T-helper 1 cell number 0.09256684684126648 0.6345637251092452 1.0 2426 -Phenotype MP:0001233 abnormal epidermis suprabasal layer morphology 0.0925633530466815 0.6345004007431968 1.0 2427 -Phenotype MP:0003589 abnormal ureter physiology 0.09255490452688775 0.6343472729198589 1.0 2428 -Phenotype MP:0002575 increased circulating ketone body level 0.09253871500063582 0.634053840818574 1.0 2429 -Phenotype MP:0008048 abnormal memory T cell number 0.09252238490106068 0.6337578608523934 1.0 2430 -Phenotype MP:0003809 abnormal hair shaft morphology 0.09251869065039964 0.6336909032578798 1.0 2431 -Phenotype MP:0009608 abnormal epidermal lamellar body morphology 0.0925055484679731 0.633452703687066 1.0 2432 -Phenotype MP:0020473 abnormal circadian behavior phase 0.09249849973364821 0.6333249467106007 1.0 2433 -Phenotype MP:0001504 abnormal posture 0.09249230418011345 0.6332126534745888 1.0 2434 -Phenotype MP:0010487 abnormal right subclavian artery morphology 0.09248798493931587 0.633134368052059 1.0 2435 -Biological Process GO:0014014 negative regulation of gliogenesis 0.09245236734556406 0.6324888059018965 1.0 2436 -Phenotype MP:0031462 decreased palatal shelf size 0.09244668888520902 0.6323858848819659 1.0 2437 -Phenotype MP:0020933 abnormal susceptibility to Retroviridae infection 0.0924241894388611 0.6319780866723778 1.0 2438 -Phenotype MP:0012085 midface hypoplasia 0.09239642646146518 0.6314748879580706 1.0 2439 -Biological Process GO:1903578 regulation of ATP metabolic process 0.09239473500507789 0.6314442306309672 1.0 2440 -Phenotype MP:0000297 abnormal atrioventricular cushion morphology 0.09239112341569777 0.6313787712565362 1.0 2441 -Phenotype MP:0012533 uveal coloboma 0.09237901636607382 0.6311593332719877 1.0 2442 -Biological Process GO:0014855 striated muscle cell proliferation 0.09237428386677637 0.6310735576173102 1.0 2443 -Phenotype MP:0020912 abnormal susceptibility to Riboviria infection 0.09234357214405597 0.6305169134517125 1.0 2444 -Phenotype MP:0010755 abnormal heart right ventricle pressure 0.09232155831459221 0.6301179169563017 1.0 2445 -Biological Process GO:0002237 response to molecule of bacterial origin 0.09229556621564816 0.6296468150789969 1.0 2446 -Phenotype MP:0020175 abnormal IgG1 level 0.09229147607914234 0.6295726821284233 1.0 2447 -Phenotype MP:0009388 abnormal epidermal melanocyte morphology 0.09228654069149578 0.6294832291607916 1.0 2448 -Phenotype MP:0004221 abnormal iridocorneal angle 0.09228365441880126 0.6294309160141032 1.0 2449 -Biological Process GO:1990138 neuron projection extension 0.09227775285788331 0.6293239513386661 1.0 2450 -Phenotype MP:0008731 abnormal hair shaft melanin granule morphology 0.09226058457111641 0.6290127793881668 1.0 2451 -Phenotype MP:0005438 abnormal glycogen homeostasis 0.09225963805119652 0.6289956238936404 1.0 2452 -Phenotype MP:0008703 decreased interleukin-5 secretion 0.0922401280791092 0.6286420093396065 1.0 2453 -Phenotype MP:0003725 increased autoantibody level 0.0922191205391627 0.6282612516513701 1.0 2454 -Phenotype MP:0030608 decreased tooth number 0.09218659471770463 0.6276717272892645 1.0 2455 -Phenotype MP:0008158 increased diameter of femur 0.0921412575333056 0.6268499993969511 1.0 2456 -Phenotype MP:0000696 abnormal Peyer's patch morphology 0.09210174285064598 0.6261338032474166 1.0 2457 -Phenotype MP:0002014 increased papilloma incidence 0.09209004608993632 0.625921801671839 1.0 2458 -Phenotype MP:0000183 decreased circulating LDL cholesterol level 0.09205777750325639 0.6253369396414347 1.0 2459 -Phenotype MP:0000627 abnormal mammary gland morphology 0.09205735190136055 0.6253292256875694 1.0 2460 -Phenotype MP:0013554 abnormal apocrine gland morphology 0.09205735190136055 0.6253292256875694 1.0 2460 -Phenotype MP:0031115 macrovesicular hepatic steatosis 0.0920213945540862 0.6246775055690708 1.0 2462 -Phenotype MP:0009222 increased uterus tumor incidence 0.0920126484038919 0.6245189832510157 1.0 2463 -Biological Process GO:0046642 negative regulation of alpha-beta T cell proliferation 0.0919972717705102 0.6242402846792561 1.0 2464 -Biological Process GO:0043068 positive regulation of programmed cell death 0.09199408829458822 0.6241825847802818 1.0 2465 -Biological Process GO:0090313 regulation of protein targeting to membrane 0.09194000339495956 0.623202306203944 1.0 2466 -Phenotype MP:0030309 abnormal posterior cranial fossa morphology 0.09193279045657388 0.6230715730599339 1.0 2467 -Phenotype MP:0008171 abnormal mature B cell morphology 0.09192781255007676 0.6229813494461778 1.0 2468 -Biological Process GO:0007351 tripartite regional subdivision 0.09190739292115435 0.6226112475340575 1.0 2469 -Biological Process GO:0008595 anterior/posterior axis specification, embryo 0.09190739292115435 0.6226112475340575 1.0 2469 -Phenotype MP:0000195 decreased circulating calcium level 0.09190692841160208 0.6226028283862783 1.0 2471 -Phenotype MP:0004300 abnormal organ of Corti supporting cell morphology 0.09188971832267234 0.6222908987794837 1.0 2472 -Biological Process GO:0035567 non-canonical Wnt signaling pathway 0.09188453054736678 0.6221968713332685 1.0 2473 -Phenotype MP:0004529 decreased outer hair cell stereocilia number 0.09187170204048378 0.6219643570723538 1.0 2474 -Biological Process GO:0062098 regulation of programmed necrotic cell death 0.09187007399578939 0.6219348490701907 1.0 2475 -Phenotype MP:0005630 increased lung weight 0.09186570589119414 0.62185567800057 1.0 2476 -Phenotype MP:0001983 abnormal olfactory system physiology 0.09180351826521427 0.6207285390416384 1.0 2477 -Biological Process GO:0045631 regulation of mechanoreceptor differentiation 0.09178944953535151 0.620473545973787 1.0 2478 -Biological Process GO:2000980 regulation of inner ear receptor cell differentiation 0.09178944953535151 0.620473545973787 1.0 2478 -Biological Process GO:0045607 regulation of inner ear auditory receptor cell differentiation 0.09178944953535151 0.620473545973787 1.0 2478 -Phenotype MP:0000519 hydronephrosis 0.09177532295377777 0.620217504354616 1.0 2481 -Phenotype MP:0004938 dilated vasculature 0.09176228397961006 0.6199811754139729 1.0 2482 -Phenotype MP:0008781 abnormal B cell apoptosis 0.09172999303101659 0.6193959080781152 1.0 2483 -Phenotype MP:0009011 prolonged diestrus 0.09172301776813385 0.6192694827576428 1.0 2484 -Biological Process GO:1901800 positive regulation of proteasomal protein catabolic process 0.09169475740680799 0.618757269053679 1.0 2485 -Biological Process GO:0120305 regulation of pigmentation 0.09169086113859481 0.6186866499292419 1.0 2486 -Phenotype MP:0003436 decreased susceptibility to induced arthritis 0.0916897042740783 0.6186656819786854 1.0 2487 -Phenotype MP:0003079 decreased susceptibility to induced joint inflammation 0.0916897042740783 0.6186656819786854 1.0 2487 -Biological Process GO:0031667 response to nutrient levels 0.0916343155383268 0.6176617716192243 1.0 2489 -Phenotype MP:0003395 abnormal subclavian artery morphology 0.09162996274691027 0.6175828780980717 1.0 2490 -Phenotype MP:0010249 lactation failure 0.09158947632260062 0.6168490693149222 1.0 2491 -Biological Process GO:0008347 glial cell migration 0.09155866459491868 0.6162906125783113 1.0 2492 -Phenotype MP:0004324 vestibular hair cell degeneration 0.0915423599649795 0.6159950942444653 1.0 2493 -Phenotype MP:0002274 abnormal type I pneumocyte morphology 0.09152414473585713 0.615664946661788 1.0 2494 -Phenotype MP:0003711 pathological neovascularization 0.0915070255878635 0.6153546653422601 1.0 2495 -Biological Process GO:1901880 negative regulation of protein depolymerization 0.09148618976549094 0.6149770200025734 1.0 2496 -Biological Process GO:0034260 negative regulation of GTPase activity 0.09148524351330412 0.6149598693606579 1.0 2497 -Phenotype MP:0002581 abnormal ileum morphology 0.09146353482848257 0.6145664035541735 1.0 2498 -Phenotype MP:0006379 abnormal spermatocyte morphology 0.09145600891578143 0.6144299978098904 1.0 2499 -Biological Process GO:0000212 meiotic spindle organization 0.09143626934486948 0.6140722218205859 1.0 2500 -Biological Process GO:0008045 motor neuron axon guidance 0.09143014379205538 0.6139611973343964 1.0 2501 -Phenotype MP:0005133 increased luteinizing hormone level 0.09141366008027096 0.6136624331759762 1.0 2502 -Phenotype MP:0013613 abnormal volumetric bone mineral density 0.09138965018064116 0.6132272582863357 1.0 2503 -Biological Process GO:0032651 regulation of interleukin-1 beta production 0.09132678469410183 0.6120878332329721 1.0 2504 -Biological Process GO:1902742 apoptotic process involved in development 0.09127560206647956 0.6111601577878245 1.0 2505 -Phenotype MP:0013592 small thymus cortex 0.09126655919040538 0.6109962573693185 1.0 2506 -Phenotype MP:0003732 abnormal retina outer plexiform layer morphology 0.0912585654987853 0.610851373220604 1.0 2507 -Biological Process GO:0030238 male sex determination 0.09124056669526381 0.6105251483110087 1.0 2508 -Phenotype MP:0011648 thick heart valve cusps 0.0912359606031421 0.610441663762483 1.0 2509 -Biological Process GO:0098935 dendritic transport 0.09122176826879413 0.6101844303867154 1.0 2510 -Biological Process GO:0045927 positive regulation of growth 0.09121993267498407 0.610151160596086 1.0 2511 -Biological Process GO:1903039 positive regulation of leukocyte cell-cell adhesion 0.09120776110910367 0.6099305532665917 1.0 2512 -Phenotype MP:0005198 abnormal aqueous drainage system morphology 0.0911680190295765 0.6092102355918418 1.0 2513 -Phenotype MP:0009932 skin fibrosis 0.09116365748153743 0.609131183358562 1.0 2514 -Biological Process GO:0002285 lymphocyte activation involved in immune response 0.09113330796065677 0.608581104032804 1.0 2515 -Biological Process GO:0051952 regulation of amine transport 0.09110920444517379 0.6081442323735308 1.0 2516 -Phenotype MP:0010098 abnormal retina blood vessel pattern 0.09107598076760193 0.6075420595013529 1.0 2517 -Phenotype MP:0000379 decreased hair follicle number 0.09107352092515164 0.6074974753221876 1.0 2518 -Biological Process GO:0060759 regulation of response to cytokine stimulus 0.09106785725515698 0.6073948223747414 1.0 2519 -Biological Process GO:0001959 regulation of cytokine-mediated signaling pathway 0.09106785725515698 0.6073948223747414 1.0 2519 -Phenotype MP:0009020 prolonged metestrus 0.09104364878363225 0.6069560484070625 1.0 2521 -Phenotype MP:0010217 abnormal T-helper 17 cell morphology 0.09102628631337595 0.6066413569175451 1.0 2522 -Phenotype MP:0003675 kidney cyst 0.09102614224140926 0.606638745640398 1.0 2523 -Biological Process GO:0007127 meiosis I 0.09101724726326454 0.6064775258438907 1.0 2524 -Biological Process GO:0001667 ameboidal-type cell migration 0.0910149459989873 0.6064358158641188 1.0 2525 -Biological Process GO:2000345 regulation of hepatocyte proliferation 0.0910064830811016 0.6062824270780875 1.0 2526 -Biological Process GO:0008406 gonad development 0.0909716551630303 0.6056511776502778 1.0 2527 -Biological Process GO:0021604 cranial nerve structural organization 0.09095301571872993 0.6053133412477341 1.0 2528 -Biological Process GO:0060391 positive regulation of SMAD protein signal transduction 0.09093178817151959 0.6049285959694518 1.0 2529 -Biological Process GO:0001892 embryonic placenta development 0.090913395925168 0.6045952399829755 1.0 2530 -Phenotype MP:0030467 abnormal cranial cartilage development 0.0908466660954772 0.60338577444088 1.0 2531 -Phenotype MP:0005561 increased mean corpuscular hemoglobin 0.09082287082993812 0.6029544897535387 1.0 2532 -Biological Process GO:0000086 G2/M transition of mitotic cell cycle 0.09082186994422514 0.6029363488892951 1.0 2533 -Biological Process GO:0010664 negative regulation of striated muscle cell apoptotic process 0.09082139860494742 0.602927805954034 1.0 2534 -Phenotype MP:0002500 granulomatous inflammation 0.09080109320617535 0.6025597744417834 1.0 2535 -Phenotype MP:0014071 increased cardiac muscle glycogen level 0.09078862594259474 0.6023338076474001 1.0 2536 -Phenotype MP:0005166 decreased susceptibility to injury 0.09077032529807272 0.6020021119267595 1.0 2537 -Biological Process GO:0002705 positive regulation of leukocyte mediated immunity 0.09076809164566768 0.6019616273993834 1.0 2538 -Phenotype MP:0008598 abnormal circulating interleukin-2 level 0.09076480439830192 0.6019020466626177 1.0 2539 -Phenotype MP:0004392 abnormal CD8-positive, alpha-beta T cell physiology 0.0907553472766176 0.6017306381207769 1.0 2540 -Phenotype MP:0008083 decreased single-positive T cell number 0.0907533227550309 0.6016939440499288 1.0 2541 -Biological Process GO:0003300 cardiac muscle hypertrophy 0.09073302839710318 0.601326112650894 1.0 2542 -Phenotype MP:0013450 abnormal lacrimal apparatus physiology 0.09068688583596529 0.600489787457515 1.0 2543 -Phenotype MP:0001348 abnormal lacrimal gland physiology 0.09068688583596529 0.600489787457515 1.0 2543 -Phenotype MP:0001712 abnormal placenta development 0.0906795375002063 0.6003566002617221 1.0 2545 -Phenotype MP:0030045 abnormal forehead shape 0.09067373491848085 0.6002514295654288 1.0 2546 -Phenotype MP:0008040 decreased NK T cell number 0.09066366499031431 0.6000689140220017 1.0 2547 -Biological Process GO:0000578 embryonic axis specification 0.09062857276845981 0.5994328741381111 1.0 2548 -Phenotype MP:0005075 abnormal melanosome morphology 0.09059171493729368 0.5987648329193882 1.0 2549 -Biological Process GO:0002709 regulation of T cell mediated immunity 0.09056317360143618 0.598247526605181 1.0 2550 -Biological Process GO:1901863 positive regulation of muscle tissue development 0.09055875562505267 0.5981674516188308 1.0 2551 -Biological Process GO:0043065 positive regulation of apoptotic process 0.09055421398045826 0.5980851351695482 1.0 2552 -Phenotype MP:0008763 abnormal mast cell degranulation 0.09051474544307903 0.5973697753944928 1.0 2553 -Biological Process GO:1903306 negative regulation of regulated secretory pathway 0.09050763221602343 0.5972408494994813 1.0 2554 -Phenotype MP:0000441 increased cranium width 0.09048934233662886 0.5969093488947398 1.0 2555 -Biological Process GO:0010761 fibroblast migration 0.09043495231017418 0.595923539952391 1.0 2556 -Biological Process GO:0006140 regulation of nucleotide metabolic process 0.09042672024384424 0.5957743353071455 1.0 2557 -Biological Process GO:1900542 regulation of purine nucleotide metabolic process 0.09042672024384424 0.5957743353071455 1.0 2557 -Biological Process GO:0060716 labyrinthine layer blood vessel development 0.09041560770231372 0.5955729225936927 1.0 2559 -Phenotype MP:0030065 face hypoplasia 0.0903851283499072 0.5950204900960843 1.0 2560 -Biological Process GO:0031503 protein-containing complex localization 0.09038491630291645 0.5950166467844828 1.0 2561 -Biological Process GO:0007602 phototransduction 0.09037624897763608 0.5948595531530841 1.0 2562 -Biological Process GO:1901889 negative regulation of cell junction assembly 0.09036715816826169 0.5946947839525777 1.0 2563 -Biological Process GO:0050850 positive regulation of calcium-mediated signaling 0.09036641028476267 0.5946812287056101 1.0 2564 -Biological Process GO:0061245 establishment or maintenance of bipolar cell polarity 0.09032770395571355 0.5939796838123766 1.0 2565 -Biological Process GO:0035088 establishment or maintenance of apical/basal cell polarity 0.09032770395571355 0.5939796838123766 1.0 2565 -Phenotype MP:0004159 double aortic arch 0.09032567547755144 0.5939429180293478 1.0 2567 -Biological Process GO:0090330 regulation of platelet aggregation 0.09032415506853464 0.5939153609034833 1.0 2568 -Phenotype MP:0005567 decreased circulating total protein level 0.09029134838884811 0.5933207460391074 1.0 2569 -Phenotype MP:0020135 abnormal heart ventricle wall thickness 0.09028358216595866 0.5931799847181128 1.0 2570 -Phenotype MP:0010838 increased CD8-positive, alpha-beta memory T cell number 0.09026512892664551 0.5928455232457441 1.0 2571 -Biological Process GO:0061178 regulation of insulin secretion involved in cellular response to glucose stimulus 0.0902579865778651 0.5927160695249785 1.0 2572 -Biological Process GO:0032479 regulation of type I interferon production 0.09025363310672274 0.5926371636839237 1.0 2573 -Phenotype MP:0000955 abnormal spinal cord morphology 0.0902452436604868 0.5924851065576484 1.0 2574 -Biological Process GO:0001933 negative regulation of protein phosphorylation 0.09023997074012025 0.5923895358733064 1.0 2575 -Phenotype MP:0009968 abnormal cerebellar granule cell precursor proliferation 0.09023743106575355 0.5923435047557554 1.0 2576 -Phenotype MP:0013803 increased IgG2 level 0.09022901450512122 0.5921909561861737 1.0 2577 -Phenotype MP:0004527 abnormal outer hair cell stereociliary bundle morphology 0.09020453071136514 0.5917471920551253 1.0 2578 -Phenotype MP:0010563 increased heart right ventricle size 0.09014730222403777 0.5907099365463159 1.0 2579 -Phenotype MP:0002371 abnormal thymus cortex morphology 0.09014690170691475 0.5907026772492135 1.0 2580 -Phenotype MP:0011892 abnormal circulating transferrin level 0.09013449938848117 0.5904778875733366 1.0 2581 -Biological Process GO:1900027 regulation of ruffle assembly 0.09013410168744895 0.5904706793173475 1.0 2582 -Phenotype MP:0001873 stomach inflammation 0.09013285311614072 0.5904480491985363 1.0 2583 -Biological Process GO:0140895 cell surface toll-like receptor signaling pathway 0.09013166552650942 0.5904265243610856 1.0 2584 -Biological Process GO:0099563 modification of synaptic structure 0.0901253841477665 0.5903126755594085 1.0 2585 -Phenotype MP:0008625 abnormal circulating interleukin-5 level 0.09012397567104002 0.5902871471851356 1.0 2586 -Phenotype MP:0000576 clubfoot 0.0901207883411499 0.5902293774337176 1.0 2587 -Biological Process GO:0010959 regulation of metal ion transport 0.09010212697101494 0.5898911436295688 1.0 2588 -Phenotype MP:0009867 abnormal ascending aorta morphology 0.09009090901236383 0.5896878202507436 1.0 2589 -Biological Process GO:1904748 regulation of apoptotic process involved in development 0.09008327804133187 0.589549510344085 1.0 2590 -Phenotype MP:0002495 increased IgA level 0.090075453127752 0.5894076852654271 1.0 2591 -Phenotype MP:0008495 decreased IgG1 level 0.09006558551943356 0.5892288367309807 1.0 2592 -Biological Process GO:0016239 positive regulation of macroautophagy 0.0900502198386024 0.5889503366721279 1.0 2593 -Phenotype MP:0006135 artery stenosis 0.09004357868597646 0.5888299670368674 1.0 2594 -Biological Process GO:0043470 regulation of carbohydrate catabolic process 0.09004010031286003 0.5887669221820198 1.0 2595 -Biological Process GO:0050764 regulation of phagocytosis 0.09003959854574306 0.5887578277479272 1.0 2596 -Biological Process GO:0098742 cell-cell adhesion via plasma-membrane adhesion molecules 0.09002990696153546 0.5885821696171972 1.0 2597 -Biological Process GO:0050866 negative regulation of cell activation 0.08998566840372013 0.587780354123923 1.0 2598 -Biological Process GO:0033157 regulation of intracellular protein transport 0.08998168305816368 0.5877081204894868 1.0 2599 -Biological Process GO:1902117 positive regulation of organelle assembly 0.08996003051851709 0.5873156723036792 1.0 2600 -Biological Process GO:0090181 regulation of cholesterol metabolic process 0.08993906890886016 0.5869357470932542 1.0 2601 -Phenotype MP:0004192 abnormal kidney pyramid morphology 0.08993606293808287 0.5868812644414547 1.0 2602 -Phenotype MP:0000880 decreased Purkinje cell number 0.08992937066654827 0.5867599682856433 1.0 2603 -Biological Process GO:0150076 neuroinflammatory response 0.08991841237172982 0.586561351264673 1.0 2604 -Phenotype MP:0000301 decreased atrioventricular cushion size 0.08981325704148946 0.5846554307927837 1.0 2605 -Phenotype MP:0012505 increased neural tube apoptosis 0.08976537833354337 0.5837876382668749 1.0 2606 -Phenotype MP:0003988 disorganized embryonic tissue 0.08974679137272457 0.5834507531175078 1.0 2607 -Phenotype MP:0031415 increased skeletal muscle triglyceride level 0.08972485137692487 0.5830530948432937 1.0 2608 -Phenotype MP:0010463 aorta stenosis 0.0897131103010983 0.5828402900646037 1.0 2609 -Phenotype MP:0020477 abnormal locomotor circadian rhythm 0.08969708374102159 0.5825498116944218 1.0 2610 -Biological Process GO:0060997 dendritic spine morphogenesis 0.08965619019873228 0.5818086239748919 1.0 2611 -Phenotype MP:0008081 abnormal single-positive T cell number 0.08965204167153806 0.5817334327041349 1.0 2612 -Biological Process GO:0022408 negative regulation of cell-cell adhesion 0.08964618047083828 0.5816271995500185 1.0 2613 -Phenotype MP:0004042 decreased susceptibility to kidney reperfusion injury 0.08962040588116105 0.5811600399870359 1.0 2614 -Biological Process GO:1901992 positive regulation of mitotic cell cycle phase transition 0.0895839216832911 0.5804987708011388 1.0 2615 -Phenotype MP:0003099 retina detachment 0.08957910013576487 0.5804113811641567 1.0 2616 -Phenotype MP:0008207 decreased B-2 B cell number 0.08957708518618523 0.5803748605841265 1.0 2617 -Biological Process GO:0016242 negative regulation of macroautophagy 0.08956298448261768 0.5801192879989231 1.0 2618 -Phenotype MP:0003865 lymph node inflammation 0.08956195048228821 0.5801005469385188 1.0 2619 -Phenotype MP:0013177 abnormal tail tip morphology 0.0895494113513916 0.5798732775626259 1.0 2620 -Phenotype MP:0001858 intestinal inflammation 0.08950891447953646 0.5791392794196902 1.0 2621 -Biological Process GO:0051491 positive regulation of filopodium assembly 0.08950294887346388 0.579031153937939 1.0 2622 -Biological Process GO:0010810 regulation of cell-substrate adhesion 0.08945901019255353 0.5782347736568498 1.0 2623 -Biological Process GO:0002532 production of molecular mediator involved in inflammatory response 0.08940336919725 0.5772262911407197 1.0 2624 -Biological Process GO:0048570 notochord morphogenesis 0.08938253229299753 0.5768486261921639 1.0 2625 -Phenotype MP:0008503 abnormal spinal cord grey matter morphology 0.0893798397269634 0.5767998239420579 1.0 2626 -Phenotype MP:0001340 abnormal eyelid morphology 0.08936863783064108 0.5765967916899042 1.0 2627 -Phenotype MP:0001422 abnormal drinking behavior 0.08935592144995019 0.5763663096950142 1.0 2628 -Phenotype MP:0001219 thick epidermis 0.08931781677495809 0.5756756696677694 1.0 2629 -Phenotype MP:0000956 decreased spinal cord size 0.0893162253359655 0.5756468251370281 1.0 2630 -Biological Process GO:0031342 negative regulation of cell killing 0.08930047897206028 0.575361425269459 1.0 2631 -Biological Process GO:0001911 negative regulation of leukocyte mediated cytotoxicity 0.08930047897206028 0.575361425269459 1.0 2631 -Biological Process GO:0008645 hexose transmembrane transport 0.0892800925653946 0.5749919255044582 1.0 2633 -Phenotype MP:0004491 abnormal orientation of outer hair cell stereociliary bundles 0.08925829075358183 0.5745967717888715 1.0 2634 -Phenotype MP:0003203 increased neuron apoptosis 0.08923996320035055 0.5742645883529648 1.0 2635 -Phenotype MP:0008764 increased mast cell degranulation 0.08922812972241789 0.5740501088035788 1.0 2636 -Biological Process GO:0010952 positive regulation of peptidase activity 0.08921317164709208 0.5737789965174174 1.0 2637 -Phenotype MP:0020998 abnormal epididymal fat pad weight 0.08919899999564096 0.5735221380152431 1.0 2638 -Phenotype MP:0008284 abnormal hippocampus pyramidal cell layer 0.08919222113199499 0.5733992723937907 1.0 2639 -Phenotype MP:0009939 abnormal hippocampus neuron morphology 0.08918789892234369 0.5733209331613489 1.0 2640 -Biological Process GO:0021979 hypothalamus cell differentiation 0.08914462296940884 0.5725365646994695 1.0 2641 -Phenotype MP:0005365 abnormal bile salt homeostasis 0.08903516401023637 0.5705526417671593 1.0 2642 -Phenotype MP:0003606 kidney failure 0.08899146159188942 0.5697605437003458 1.0 2643 -Phenotype MP:0009264 failure of eyelid fusion 0.08898745807879194 0.5696879807826646 1.0 2644 -Phenotype MP:0002988 decreased urine osmolality 0.0889786037246777 0.5695274972890261 1.0 2645 -Phenotype MP:0002397 abnormal bone marrow morphology 0.08896178896733364 0.5692227329924504 1.0 2646 -Phenotype MP:0010833 abnormal memory T cell morphology 0.08891324224312402 0.5683428327981114 1.0 2647 -Biological Process GO:1900221 regulation of amyloid-beta clearance 0.08888539738713164 0.5678381500497296 1.0 2648 -Phenotype MP:0000812 abnormal dentate gyrus morphology 0.08886298789528713 0.567431982248502 1.0 2649 -Biological Process GO:0050772 positive regulation of axonogenesis 0.08884624190320567 0.5671284643093049 1.0 2650 -Biological Process GO:0021554 optic nerve development 0.08884473699311723 0.5671011880985856 1.0 2651 -Biological Process GO:1903115 regulation of actin filament-based movement 0.08882451539611524 0.5667346754775677 1.0 2652 -Biological Process GO:0060979 vasculogenesis involved in coronary vascular morphogenesis 0.08878730239432353 0.566060196858432 1.0 2653 -Phenotype MP:0001088 small nodose ganglion 0.08877449784040481 0.5658281167404644 1.0 2654 -Phenotype MP:0004556 enlarged allantois 0.08875945565885968 0.5655554800449853 1.0 2655 -Biological Process GO:1904659 glucose transmembrane transport 0.08874394440140276 0.5652743414373246 1.0 2656 -Phenotype MP:0013503 abnormal embryonic tissue cell apoptosis 0.08873214453333111 0.5650604710603124 1.0 2657 -Phenotype MP:0000854 abnormal cerebellum development 0.08870418974587979 0.5645537958250295 1.0 2658 -Biological Process GO:0060996 dendritic spine development 0.08869657640161033 0.5644158054001072 1.0 2659 -Phenotype MP:0001433 polyphagia 0.08869262470664874 0.5643441816763384 1.0 2660 -Phenotype MP:0004958 enlarged prostate gland 0.08867946330535903 0.5641056337672645 1.0 2661 -Phenotype MP:0002727 decreased circulating insulin level 0.08867237209161105 0.5639771068592901 1.0 2662 -Biological Process GO:0007435 salivary gland morphogenesis 0.08862027442466802 0.5630328464995211 1.0 2663 -Biological Process GO:0043149 stress fiber assembly 0.08859161166765694 0.5625133394498706 1.0 2664 -Biological Process GO:0030038 contractile actin filament bundle assembly 0.08859161166765694 0.5625133394498706 1.0 2664 -Phenotype MP:0008082 increased single-positive T cell number 0.08859095583555088 0.5625014526169899 1.0 2666 -Phenotype MP:0002791 steatorrhea 0.08854558135898849 0.5616790488112691 1.0 2667 -Phenotype MP:0005012 decreased eosinophil cell number 0.08853662435982623 0.5615167048955491 1.0 2668 -Biological Process GO:1901655 cellular response to ketone 0.08851935255097088 0.5612036566267762 1.0 2669 -Biological Process GO:0043367 CD4-positive, alpha-beta T cell differentiation 0.08851669832525744 0.5611555492877313 1.0 2670 -Biological Process GO:0061351 neural precursor cell proliferation 0.0884467874417818 0.5598884277474393 1.0 2671 -Phenotype MP:0005401 abnormal fat-soluble vitamin level 0.08842111750366088 0.5594231649741214 1.0 2672 -Phenotype MP:0008801 abnormal erythroid progenitor cell morphology 0.08834826373296101 0.5581027041594976 1.0 2673 -Phenotype MP:0031224 abnormal CXCL10 level 0.08833498760006131 0.5578620767616926 1.0 2674 -Phenotype MP:0020172 abnormal IgD level 0.08832892952951177 0.5577522753787848 1.0 2675 -Phenotype MP:0004726 abnormal nasal capsule morphology 0.0882983917027198 0.5571987830439998 1.0 2676 -Biological Process GO:0071774 response to fibroblast growth factor 0.08828209577758284 0.5569034224830475 1.0 2677 -Biological Process GO:0035994 response to muscle stretch 0.08827063657906153 0.5566957266772022 1.0 2678 -Biological Process GO:0002251 organ or tissue specific immune response 0.08824694275366218 0.5562662805732076 1.0 2679 -Phenotype MP:0004723 abnormal platelet serotonin level 0.08816088713530101 0.5547065387666749 1.0 2680 -Phenotype MP:0004725 decreased platelet serotonin level 0.08816088713530101 0.5547065387666749 1.0 2680 -Phenotype MP:0010468 abnormal thoracic aorta morphology 0.08816047799104454 0.5546991231044104 1.0 2682 -Phenotype MP:0009199 abnormal external male genitalia morphology 0.08813666487886818 0.5542675149501439 1.0 2683 -Biological Process GO:0009268 response to pH 0.08812617957158642 0.554077470738817 1.0 2684 -Phenotype MP:0003225 axonal dystrophy 0.08811000987017292 0.553784397958979 1.0 2685 -Biological Process GO:0022029 telencephalon cell migration 0.08810676694509123 0.5537256205552291 1.0 2686 -Phenotype MP:0008497 decreased IgG2b level 0.08807537979925573 0.5531567344734173 1.0 2687 -Biological Process GO:0098815 modulation of excitatory postsynaptic potential 0.08804531693866724 0.552611850811237 1.0 2688 -Phenotype MP:0009541 increased thymocyte apoptosis 0.08804490657502462 0.5526044130478291 1.0 2689 -Biological Process GO:0035024 negative regulation of Rho protein signal transduction 0.0880291647344581 0.5523190951649186 1.0 2690 -Phenotype MP:0009356 decreased liver triglyceride level 0.08800613294648829 0.5519016483641189 1.0 2691 -Biological Process GO:0048854 brain morphogenesis 0.08800507158226412 0.5518824113382985 1.0 2692 -Phenotype MP:0008096 abnormal plasma cell number 0.08799704208198056 0.551736878164331 1.0 2693 -Biological Process GO:0060430 lung saccule development 0.08799604809421879 0.5517188623241485 1.0 2694 -Biological Process GO:0007492 endoderm development 0.08798193049879022 0.551462983577159 1.0 2695 -Phenotype MP:0004883 abnormal vascular wound healing 0.08797147015800855 0.5512733918789241 1.0 2696 -Biological Process GO:0043062 extracellular structure organization 0.0879493281222613 0.5508720716688738 1.0 2697 -Phenotype MP:0012769 abnormal CD4-positive, alpha-beta memory T cell number 0.08791737886317463 0.5502929973907007 1.0 2698 -Phenotype MP:0002638 abnormal pupillary reflex 0.08791638908014265 0.5502750577604503 1.0 2699 -Phenotype MP:0008028 pregnancy-related premature death 0.08790595655367206 0.5500859701913429 1.0 2700 -Biological Process GO:1903078 positive regulation of protein localization to plasma membrane 0.08784738405958836 0.5490243548142758 1.0 2701 -Phenotype MP:0011710 enhanced osteoblast differentiation 0.08784541674744828 0.5489886976538274 1.0 2702 -Phenotype MP:0008102 lymph node hyperplasia 0.08780052097260249 0.5481749702261799 1.0 2703 -Biological Process GO:1900015 regulation of cytokine production involved in inflammatory response 0.08780019511849468 0.5481690641821068 1.0 2704 -Biological Process GO:0002638 negative regulation of immunoglobulin production 0.08779201567578165 0.5480208133299648 1.0 2705 -Phenotype MP:0005093 decreased B cell proliferation 0.08778281855820758 0.5478541173134457 1.0 2706 -Biological Process GO:0032368 regulation of lipid transport 0.08773017721225251 0.5469000028744132 1.0 2707 -Biological Process GO:1990266 neutrophil migration 0.08769809018597163 0.546318431591902 1.0 2708 -Biological Process GO:0034142 toll-like receptor 4 signaling pathway 0.08766543933778703 0.5457266411440251 1.0 2709 -Phenotype MP:0003825 abnormal pillar cell morphology 0.08765283514069411 0.5454981924556302 1.0 2710 -Phenotype MP:0000592 short tail 0.08760101337205839 0.5445589327004988 1.0 2711 -Biological Process GO:0060740 prostate gland epithelium morphogenesis 0.08759572828409712 0.5444631414808042 1.0 2712 -Phenotype MP:0000029 abnormal malleus morphology 0.08758404117094387 0.5442513147653619 1.0 2713 -Biological Process GO:0140694 non-membrane-bounded organelle assembly 0.08758218922142258 0.5442177485305598 1.0 2714 -Phenotype MP:0008699 increased interleukin-4 secretion 0.08755902157851458 0.5437978393847007 1.0 2715 -Phenotype MP:0005099 abnormal ciliary body morphology 0.08747511736070368 0.542277091306233 1.0 2716 -Biological Process GO:0061982 meiosis I cell cycle process 0.08745376908351221 0.5418901578198774 1.0 2717 -Biological Process GO:0045124 regulation of bone resorption 0.0873763757180237 0.5404874177083129 1.0 2718 -Phenotype MP:0020338 abnormal hippocampal pyramidal neuron dendrite morphology 0.08730413526862868 0.539178073226338 1.0 2719 -Biological Process GO:0061082 myeloid leukocyte cytokine production 0.08730040192852062 0.5391104071429905 1.0 2720 -Biological Process GO:0002758 innate immune response-activating signaling pathway 0.08729436923596323 0.5390010657313906 1.0 2721 -Phenotype MP:0009336 increased splenocyte proliferation 0.08727973979538717 0.5387359098879114 1.0 2722 -Phenotype MP:0002953 thick ventricular wall 0.08726099117460173 0.538396094682225 1.0 2723 -Biological Process GO:0097529 myeloid leukocyte migration 0.08723828442346415 0.5379845391125332 1.0 2724 -Phenotype MP:0010211 abnormal acute phase protein level 0.08722812988073203 0.5378004899461087 1.0 2725 -Biological Process GO:0001916 positive regulation of T cell mediated cytotoxicity 0.08720481200745889 0.5373778579032953 1.0 2726 -Phenotype MP:0000245 abnormal erythropoiesis 0.08719860241557353 0.5372653102248341 1.0 2727 -Phenotype MP:0008601 abnormal circulating interleukin-4 level 0.08715722920892821 0.5365154286795735 1.0 2728 -Biological Process GO:1903350 response to dopamine 0.08714007324561535 0.5362044800893477 1.0 2729 -Biological Process GO:0061572 actin filament bundle organization 0.08711127569976174 0.5356825300174197 1.0 2730 -Biological Process GO:0043087 regulation of GTPase activity 0.08710509904504005 0.5355705793188204 1.0 2731 -Phenotype MP:0001664 abnormal digestion 0.08710319932934818 0.5355361473312109 1.0 2732 -Biological Process GO:0007548 sex differentiation 0.08708685761740065 0.5352399568929771 1.0 2733 -Phenotype MP:0003424 premature neuronal precursor differentiation 0.08708397755611652 0.5351877563269272 1.0 2734 -Biological Process GO:1901623 regulation of lymphocyte chemotaxis 0.08706748204015591 0.5348887782200461 1.0 2735 -Phenotype MP:0000043 organ of Corti degeneration 0.08704580165280018 0.5344958252997775 1.0 2736 -Biological Process GO:0055091 phospholipid homeostasis 0.08703749442190001 0.5343452583109128 1.0 2737 -Phenotype MP:0013241 embryo tissue necrosis 0.08703300388192803 0.534263868123246 1.0 2738 -Phenotype MP:0005667 abnormal circulating leptin level 0.08702959530360832 0.534202088285888 1.0 2739 -Biological Process GO:0032480 negative regulation of type I interferon production 0.08701462807717997 0.5339308101377238 1.0 2740 -Phenotype MP:0004402 decreased cochlear outer hair cell number 0.08701133638605985 0.5338711488587508 1.0 2741 -Biological Process GO:0007520 myoblast fusion 0.08696349711045548 0.5330040710365775 1.0 2742 -Phenotype MP:0004891 abnormal adiponectin level 0.08695956133627303 0.5329327358739194 1.0 2743 -Biological Process GO:0060512 prostate gland morphogenesis 0.08690714309334568 0.5319826651350673 1.0 2744 -Biological Process GO:1990868 response to chemokine 0.08690524415410605 0.5319482472205079 1.0 2745 -Biological Process GO:1990869 cellular response to chemokine 0.08690524415410605 0.5319482472205079 1.0 2745 -Biological Process GO:0006446 regulation of translational initiation 0.08690239774701236 0.5318966566302943 1.0 2747 -Biological Process GO:0035234 ectopic germ cell programmed cell death 0.08690128664427277 0.5318765181032894 1.0 2748 -Biological Process GO:0001906 cell killing 0.08690076886505027 0.5318671334528126 1.0 2749 -Phenotype MP:0001874 acanthosis 0.08688884449846146 0.531651006563724 1.0 2750 -Phenotype MP:0012555 decreased cell death 0.0868635570412769 0.5311926761850366 1.0 2751 -Phenotype MP:0008710 abnormal interleukin-9 secretion 0.08684671100970687 0.5308873450490301 1.0 2752 -Phenotype MP:0002491 decreased IgD level 0.08684368778552676 0.5308325496825678 1.0 2753 -Phenotype MP:0005458 increased percent body fat/body weight 0.08683008201661402 0.5305859476943727 1.0 2754 -Biological Process GO:0050855 regulation of B cell receptor signaling pathway 0.08682560923357985 0.5305048793478452 1.0 2755 -Biological Process GO:0003170 heart valve development 0.0867879676296297 0.5298226323956522 1.0 2756 -Biological Process GO:0051017 actin filament bundle assembly 0.08678692729740978 0.5298037765709309 1.0 2757 -Biological Process GO:0051590 positive regulation of neurotransmitter transport 0.08676567363288168 0.5294185579212041 1.0 2758 -Phenotype MP:0009967 abnormal neuron proliferation 0.08675135139549273 0.529158970077388 1.0 2759 -Biological Process GO:0033690 positive regulation of osteoblast proliferation 0.08674725342131251 0.5290846950704483 1.0 2760 -Biological Process GO:0032409 regulation of transporter activity 0.08672612084071185 0.5287016710440049 1.0 2761 -Biological Process GO:0002752 cell surface pattern recognition receptor signaling pathway 0.08669730242490725 0.5281793427081626 1.0 2762 -Biological Process GO:0045860 positive regulation of protein kinase activity 0.08663704096773228 0.5270871151945108 1.0 2763 -Phenotype MP:0003829 impaired febrile response 0.08662852778825447 0.526932815426629 1.0 2764 -Biological Process GO:0002449 lymphocyte mediated immunity 0.08660812599005507 0.5265630366929908 1.0 2765 -Phenotype MP:0004919 abnormal positive T cell selection 0.08658782369079787 0.526195061358861 1.0 2766 -Phenotype MP:0010183 abnormal CD4-positive helper T cell morphology 0.08657331140817104 0.5259320289810528 1.0 2767 -Phenotype MP:0000222 decreased neutrophil cell number 0.08655571534925433 0.5256131037412454 1.0 2768 -Biological Process GO:0070307 lens fiber cell development 0.08654981388574279 0.5255061408312813 1.0 2769 -Biological Process GO:0033121 regulation of purine nucleotide catabolic process 0.08652662606723716 0.5250858660065308 1.0 2770 -Biological Process GO:0006110 regulation of glycolytic process 0.08652662606723716 0.5250858660065308 1.0 2770 -Biological Process GO:0030811 regulation of nucleotide catabolic process 0.08652662606723716 0.5250858660065308 1.0 2770 -Phenotype MP:0001806 decreased IgM level 0.08651445915639155 0.524865343048662 1.0 2773 -Phenotype MP:0009263 abnormal eyelid fusion 0.0864404694157268 0.5235242929932783 1.0 2774 -Phenotype MP:0002726 abnormal pulmonary vein morphology 0.08642631796095812 0.5232678005521534 1.0 2775 -Phenotype MP:0012103 abnormal bilaminar embryonic disk morphology 0.08637352454599512 0.5223109298911137 1.0 2776 -Phenotype MP:0010966 abnormal compact bone area 0.08634823632568156 0.5218525856808575 1.0 2777 -Biological Process GO:0032481 positive regulation of type I interferon production 0.08634343450620774 0.521765553611094 1.0 2778 -Biological Process GO:0014897 striated muscle hypertrophy 0.08631851388127276 0.5213138719975488 1.0 2779 -Biological Process GO:0014896 muscle hypertrophy 0.08631851388127276 0.5213138719975488 1.0 2779 -Phenotype MP:0002403 abnormal pre-B cell morphology 0.08629829157016233 0.5209473464334506 1.0 2781 -Biological Process GO:0090183 regulation of kidney development 0.0862976712474125 0.5209361032009355 1.0 2782 -Biological Process GO:0045833 negative regulation of lipid metabolic process 0.08629422311503565 0.5208736064537731 1.0 2783 -Biological Process GO:0008217 regulation of blood pressure 0.0862850376270401 0.5207071212211652 1.0 2784 -Phenotype MP:0010962 decreased compact bone mass 0.08626455846663494 0.5203359403121798 1.0 2785 -Phenotype MP:0004619 caudal vertebral fusion 0.08625381054844583 0.5201411363278263 1.0 2786 -Biological Process GO:0051347 positive regulation of transferase activity 0.08622348956796377 0.5195915742913949 1.0 2787 -Phenotype MP:0000165 abnormal long bone hypertrophic chondrocyte zone 0.08621756422232074 0.5194841785223144 1.0 2788 -Phenotype MP:0001622 abnormal vasculogenesis 0.08620749644486714 0.5193017019601527 1.0 2789 -Phenotype MP:0000897 abnormal midbrain morphology 0.08620317924414611 0.5192234535136245 1.0 2790 -Phenotype MP:0000149 abnormal scapula morphology 0.08619428296752307 0.5190622101824431 1.0 2791 -Phenotype MP:0004700 abnormal circulating insulin-like growth factor I level 0.08618369978668428 0.5188703920314063 1.0 2792 -Biological Process GO:0071901 negative regulation of protein serine/threonine kinase activity 0.08618165178610104 0.518833272408187 1.0 2793 -Biological Process GO:1903077 negative regulation of protein localization to plasma membrane 0.0861722803153534 0.5186634162733736 1.0 2794 -Biological Process GO:1904376 negative regulation of protein localization to cell periphery 0.0861722803153534 0.5186634162733736 1.0 2794 -Phenotype MP:0008227 absent anterior commissure 0.08616243935206525 0.5184850506750618 1.0 2796 -Phenotype MP:0004449 absent presphenoid bone 0.08614541389545127 0.5181764674940699 1.0 2797 -Phenotype MP:0003793 abnormal submandibular gland morphology 0.08608009389183813 0.5169925547829822 1.0 2798 -Phenotype MP:0008602 increased circulating interleukin-4 level 0.0860797211549279 0.5169857989969826 1.0 2799 -Biological Process GO:0044409 symbiont entry into host 0.0860733953816557 0.516871145552859 1.0 2800 -Biological Process GO:0060347 heart trabecula formation 0.08605468613180545 0.5165320439379262 1.0 2801 -Phenotype MP:0010831 lethality, incomplete penetrance 0.08603579576808695 0.5161896596683868 1.0 2802 -Phenotype MP:0001299 abnormal eye distance/ position 0.08603352178267976 0.5161484441129751 1.0 2803 -Phenotype MP:0008554 decreased circulating tumor necrosis factor level 0.0860285453246411 0.5160582467522548 1.0 2804 -Phenotype MP:0020863 abnormal suckling reflex 0.08602244702934081 0.5159477163033475 1.0 2805 -Phenotype MP:0004486 decreased response of heart to induced stress 0.08598533761759486 0.5152751152341986 1.0 2806 -Phenotype MP:0009095 abnormal endometrial gland number 0.08597608877160912 0.5151074816500019 1.0 2807 -Biological Process GO:0090103 cochlea morphogenesis 0.08596971089313521 0.5149918838089522 1.0 2808 -Phenotype MP:0005656 decreased aggression 0.08594931700870811 0.5146222485109403 1.0 2809 -Phenotype MP:0013665 abnormal immature NK cell number 0.08593642550329483 0.5143885924135795 1.0 2810 -Phenotype MP:0013699 abnormal immature NK cell morphology 0.08593642550329483 0.5143885924135795 1.0 2810 -Phenotype MP:0004509 abnormal pelvic girdle bone morphology 0.085934824358611 0.5143595719690199 1.0 2812 -Phenotype MP:0002805 abnormal conditioned taste aversion behavior 0.0859219174093192 0.5141256359542822 1.0 2813 -Phenotype MP:0020009 abnormal bone mineral density of femur 0.08588047804760401 0.5133745553608926 1.0 2814 -Biological Process GO:0046632 alpha-beta T cell differentiation 0.08587169255235183 0.5132153199211051 1.0 2815 -Biological Process GO:0045601 regulation of endothelial cell differentiation 0.0858669931281405 0.5131301437461077 1.0 2816 -Phenotype MP:0006043 decreased apoptosis 0.08586625863148711 0.5131168311331852 1.0 2817 -Biological Process GO:1904062 regulation of monoatomic cation transmembrane transport 0.08582725447771478 0.512409888223173 1.0 2818 -Biological Process GO:0031396 regulation of protein ubiquitination 0.08581714109468053 0.5122265850684877 1.0 2819 -Phenotype MP:0005657 abnormal neural plate morphology 0.08581550787330294 0.5121969832399209 1.0 2820 -Phenotype MP:0012251 abnormal diaphragm development 0.08574924468228473 0.5109959754355077 1.0 2821 -Biological Process GO:0050671 positive regulation of lymphocyte proliferation 0.08574684298648383 0.5109524451533648 1.0 2822 -Phenotype MP:0009873 abnormal aorta tunica media morphology 0.08574105314005598 0.5108475052819316 1.0 2823 -Phenotype MP:0020914 decreased susceptibility to Riboviria infection 0.0857214611650734 0.510492404440931 1.0 2824 -Phenotype MP:0003812 abnormal hair medulla 0.0857160120086039 0.5103936395105562 1.0 2825 -Biological Process GO:0006909 phagocytosis 0.08570696589817717 0.5102296804700218 1.0 2826 -Phenotype MP:0000818 abnormal amygdala morphology 0.08570296075213069 0.5101570879554488 1.0 2827 -Biological Process GO:0090102 cochlea development 0.08567736225158562 0.5096931199746818 1.0 2828 -Biological Process GO:1904375 regulation of protein localization to cell periphery 0.08563155648020448 0.5088628990319447 1.0 2829 -Biological Process GO:0140546 defense response to symbiont 0.08562848179487159 0.5088071709418214 1.0 2830 -Biological Process GO:0070232 regulation of T cell apoptotic process 0.08562160620792159 0.5086825522287773 1.0 2831 -Phenotype MP:0001739 abnormal adrenal gland secretion 0.08560843209904978 0.5084437739971815 1.0 2832 -Phenotype MP:0001193 psoriasis 0.08557746290498192 0.5078824632121082 1.0 2833 -Phenotype MP:0014105 abnormal chondrocyte differentiation 0.08557668526159767 0.5078683685728497 1.0 2834 -Biological Process GO:1902991 regulation of amyloid precursor protein catabolic process 0.0855720830908614 0.5077849550986933 1.0 2835 -Phenotype MP:0001007 abnormal sympathetic system morphology 0.08556932757534119 0.5077350119010583 1.0 2836 -Phenotype MP:0006256 abnormal gustatory papillae morphology 0.08556517747894965 0.5076597921888966 1.0 2837 -Biological Process GO:0043242 negative regulation of protein-containing complex disassembly 0.08553041675890116 0.5070297607125407 1.0 2838 -Biological Process GO:1904037 positive regulation of epithelial cell apoptotic process 0.08548940835706098 0.5062864911853754 1.0 2839 -Biological Process GO:0048643 positive regulation of skeletal muscle tissue development 0.08548678280214983 0.5062389034991992 1.0 2840 -Phenotype MP:0030610 absent teeth 0.0854734257749632 0.5059968099077436 1.0 2841 -Phenotype MP:0005330 cardiomyopathy 0.0854718557735632 0.5059683539293133 1.0 2842 -Phenotype MP:0010984 abnormal metanephric mesenchyme morphology 0.08546673897147128 0.5058756128591716 1.0 2843 -Phenotype MP:0003638 abnormal response/metabolism to endogenous compounds 0.08545485235028105 0.5056601700982933 1.0 2844 -Phenotype MP:0031017 abnormal granulosa cell proliferation 0.08545095561334715 0.5055895424783817 1.0 2845 -Biological Process GO:0050803 regulation of synapse structure or activity 0.08543645838782143 0.5053267830076835 1.0 2846 -Phenotype MP:0009288 increased epididymal fat pad weight 0.08543599645069488 0.505318410484634 1.0 2847 -Biological Process GO:0061097 regulation of protein tyrosine kinase activity 0.08543416637213552 0.5052852406568804 1.0 2848 -Biological Process GO:0042306 regulation of protein import into nucleus 0.08542354480714809 0.5050927268004094 1.0 2849 -Phenotype MP:0000936 small embryonic telencephalon 0.0854217942970461 0.5050609991358964 1.0 2850 -Phenotype MP:0003349 abnormal circulating renin level 0.08541426412178621 0.5049245161335422 1.0 2851 -Phenotype MP:0001693 failure of primitive streak formation 0.08541282012115448 0.5048983438952053 1.0 2852 -Phenotype MP:0008603 decreased circulating interleukin-4 level 0.08539267620482804 0.5045332392217398 1.0 2853 -Phenotype MP:0001322 abnormal iris morphology 0.08539197721564018 0.5045205701749141 1.0 2854 -Phenotype MP:0009134 abnormal brown fat lipid droplet number 0.08537726489916064 0.5042539122213594 1.0 2855 -Phenotype MP:0008635 increased circulating interleukin-18 level 0.08534347109401819 0.5036414058947963 1.0 2856 -Phenotype MP:0000562 polydactyly 0.0853411242137111 0.5035988691331112 1.0 2857 -Phenotype MP:0001240 abnormal epidermis stratum corneum morphology 0.08532062853362088 0.5032273888079585 1.0 2858 -Phenotype MP:0031355 abnormal proacrosomal vesicle fusion 0.08531246542334603 0.5030794339781693 1.0 2859 -Phenotype MP:0013802 abnormal IgG2 level 0.08530982445923296 0.5030315670031229 1.0 2860 -Phenotype MP:0010387 abnormal Bergmann glial cell morphology 0.08529563018653519 0.5027742984951316 1.0 2861 -Biological Process GO:0002832 negative regulation of response to biotic stimulus 0.0852847493738712 0.5025770858235563 1.0 2862 -Phenotype MP:0003671 abnormal eyelid aperture 0.08527529842768089 0.5024057892113764 1.0 2863 -Phenotype MP:0008616 abnormal circulating interleukin-12 level 0.08526573490228373 0.5022324521223651 1.0 2864 -Phenotype MP:0004522 abnormal orientation of cochlear hair cell stereociliary bundles 0.0852613312290127 0.5021526363772232 1.0 2865 -Biological Process GO:2000027 regulation of animal organ morphogenesis 0.08523136235295048 0.5016094561668056 1.0 2866 -Phenotype MP:0002189 abnormal myocardial trabeculae morphology 0.08522611415593695 0.5015143335885612 1.0 2867 -Biological Process GO:0032680 regulation of tumor necrosis factor production 0.08520424062948817 0.5011178800587607 1.0 2868 -Biological Process GO:0071229 cellular response to acid chemical 0.08519067848504658 0.5008720687558541 1.0 2869 -Biological Process GO:0060601 lateral sprouting from an epithelium 0.08518229427656299 0.5007201065628494 1.0 2870 -Phenotype MP:0030825 decreased femur size 0.08518161139401059 0.5007077294457453 1.0 2871 -Phenotype MP:0002917 decreased synaptic depression 0.08513920975717093 0.49993920779772605 1.0 2872 -Biological Process GO:0097746 blood vessel diameter maintenance 0.08509420703648907 0.49912354199702696 1.0 2873 -Biological Process GO:0035296 regulation of tube diameter 0.08509420703648907 0.49912354199702696 1.0 2873 -Phenotype MP:0020469 prolonged circadian behavior period 0.08508145610542861 0.4988924337832234 1.0 2875 -Phenotype MP:0004769 abnormal synaptic vesicle morphology 0.08507527182348718 0.4987803448427087 1.0 2876 -Biological Process GO:0046329 negative regulation of JNK cascade 0.085071678525518 0.49871521699664145 1.0 2877 -Biological Process GO:0060071 Wnt signaling pathway, planar cell polarity pathway 0.0850690899589801 0.49866829971773463 1.0 2878 -Phenotype MP:0021056 abnormal tumor vascular morphology 0.08504561732617333 0.4982428626876448 1.0 2879 -Phenotype MP:0010144 abnormal tumor vascularization 0.08504561732617333 0.4982428626876448 1.0 2879 -Biological Process GO:0048844 artery morphogenesis 0.08504044615732842 0.49814913623038787 1.0 2881 -Biological Process GO:0044344 cellular response to fibroblast growth factor stimulus 0.08499040556357673 0.4972421599331442 1.0 2882 -Biological Process GO:0001570 vasculogenesis 0.08497067654573764 0.49688457521628926 1.0 2883 -Phenotype MP:0004247 small pancreas 0.08493723180121093 0.4962783955473665 1.0 2884 -Phenotype MP:0002391 abnormal Peyer's patch germinal center morphology 0.08490922348446661 0.4957707501037723 1.0 2885 -Biological Process GO:0014850 response to muscle activity 0.08489189109127748 0.4954566037554085 1.0 2886 -Biological Process GO:0009299 mRNA transcription 0.08487555868596186 0.4951605819981178 1.0 2887 -Biological Process GO:0042789 mRNA transcription by RNA polymerase II 0.08487555868596186 0.4951605819981178 1.0 2887 -Biological Process GO:0010883 regulation of lipid storage 0.08485760430044054 0.49483516215637446 1.0 2889 -Biological Process GO:0006904 vesicle docking involved in exocytosis 0.08480596802683382 0.49389926446355986 1.0 2890 -Phenotype MP:0013804 decreased IgG2 level 0.084795780106803 0.4937146103399093 1.0 2891 -Phenotype MP:0008686 abnormal interleukin-2 secretion 0.08479310913996585 0.4936661995711635 1.0 2892 -Phenotype MP:0021160 decreased heart right ventricle wall thickness 0.08478056239719423 0.4934387922314755 1.0 2893 -Phenotype MP:0010909 pulmonary alveolar hemorrhage 0.08473867016148706 0.49267950338263644 1.0 2894 -Phenotype MP:0005463 abnormal CD4-positive, alpha-beta T cell physiology 0.0847104602752311 0.49216820452976795 1.0 2895 -Biological Process GO:0002757 immune response-activating signaling pathway 0.0846900151986425 0.49179764138351095 1.0 2896 -Biological Process GO:0048659 smooth muscle cell proliferation 0.08467562842980203 0.49153688391934136 1.0 2897 -Phenotype MP:0005243 hemothorax 0.0846747797508749 0.49152150177430326 1.0 2898 -Biological Process GO:0007269 neurotransmitter secretion 0.0846738833709767 0.4915052550581867 1.0 2899 -Biological Process GO:0099643 signal release from synapse 0.0846738833709767 0.4915052550581867 1.0 2899 -Biological Process GO:0150079 negative regulation of neuroinflammatory response 0.08464682561103687 0.49101483827688885 1.0 2901 -Phenotype MP:0009755 impaired behavioral response to alcohol 0.08462678311676153 0.49065157185891667 1.0 2902 -Biological Process GO:0032946 positive regulation of mononuclear cell proliferation 0.08461489031565239 0.490436017088177 1.0 2903 -Phenotype MP:0001984 abnormal olfaction 0.08457999907621538 0.4898036199725902 1.0 2904 -Biological Process GO:0043299 leukocyte degranulation 0.08456048386539106 0.4894499104674391 1.0 2905 -Phenotype MP:0001087 abnormal nodose ganglion morphology 0.08454231913089316 0.4891206780902801 1.0 2906 -Phenotype MP:0030969 increased circulating adiponectin level 0.08452309511670675 0.4887722464691152 1.0 2907 -Biological Process GO:0061371 determination of heart left/right asymmetry 0.08451321485705154 0.488593168631583 1.0 2908 -Phenotype MP:0005027 increased susceptibility to parasitic infection 0.08448583677850463 0.4880969461361157 1.0 2909 -Phenotype MP:0000364 abnormal vascular regression 0.08448483397585127 0.48807877052769016 1.0 2910 -Phenotype MP:0003418 premature intramembranous bone ossification 0.08448008248209793 0.48799265060209207 1.0 2911 -Phenotype MP:0030435 premature craniofacial suture closure 0.08448008248209793 0.48799265060209207 1.0 2911 -Phenotype MP:0000081 premature cranial suture closure 0.08448008248209793 0.48799265060209207 1.0 2911 -Biological Process GO:0032292 peripheral nervous system axon ensheathment 0.08447054857075664 0.4878198502622424 1.0 2914 -Biological Process GO:0022011 myelination in peripheral nervous system 0.08447054857075664 0.4878198502622424 1.0 2914 -Phenotype MP:0001071 abnormal facial nerve morphology 0.08444149926958555 0.4872933371728012 1.0 2916 -Biological Process GO:0001836 release of cytochrome c from mitochondria 0.08443784132361443 0.4872270375939259 1.0 2917 -Phenotype MP:0001721 absent visceral yolk sac blood islands 0.08440643096482314 0.486657730781681 1.0 2918 -Phenotype MP:0003862 decreased aggression towards male mice 0.08438927979456479 0.4863468690646616 1.0 2919 -Biological Process GO:0009408 response to heat 0.08438489857439024 0.48626746027764695 1.0 2920 -Phenotype MP:0010038 abnormal placenta physiology 0.08435513258100635 0.4857279572774015 1.0 2921 -Phenotype MP:0000929 open neural tube 0.08428007607510302 0.48436757230383265 1.0 2922 -Phenotype MP:0013258 abnormal extracellular matrix morphology 0.08426426091721029 0.4840809255582515 1.0 2923 -Biological Process GO:0002369 T cell cytokine production 0.08423689085156016 0.483584848295023 1.0 2924 -Phenotype MP:0005617 increased susceptibility to type IV hypersensitivity reaction 0.08422293763744992 0.4833319489283378 1.0 2925 -Phenotype MP:0008061 absent podocyte slit diaphragm 0.08421301870809028 0.48315217020972645 1.0 2926 -Biological Process GO:0045671 negative regulation of osteoclast differentiation 0.0841973184451722 0.4828676059138299 1.0 2927 -Phenotype MP:0001100 abnormal vagus ganglion morphology 0.08419080607336327 0.48274957040652056 1.0 2928 -Phenotype MP:0003247 abnormal glutaminergic neuron morphology 0.08418640703186786 0.4826698386114359 1.0 2929 -Phenotype MP:0009433 polyovular ovarian follicle 0.08410198851098394 0.4811397688870433 1.0 2930 -Phenotype MP:0002183 gliosis 0.08409728039892239 0.48105443524640384 1.0 2931 -Biological Process GO:0071870 cellular response to catecholamine stimulus 0.08405497897153202 0.48028772987569984 1.0 2932 -Biological Process GO:0071868 cellular response to monoamine stimulus 0.08405497897153202 0.48028772987569984 1.0 2932 -Phenotype MP:0012263 decreased hindbrain size 0.08402294811563071 0.4797071766706944 1.0 2934 -Biological Process GO:0002456 T cell mediated immunity 0.08400358832272914 0.47935628408599795 1.0 2935 -Biological Process GO:0010665 regulation of cardiac muscle cell apoptotic process 0.08397579057932314 0.47885245524433373 1.0 2936 -Phenotype MP:0008650 abnormal interleukin-1 secretion 0.08393984582141323 0.4782009633056844 1.0 2937 -Phenotype MP:0004088 abnormal sarcoplasmic reticulum morphology 0.08392959255058974 0.478015124711277 1.0 2938 -Biological Process GO:1903307 positive regulation of regulated secretory pathway 0.08388976475104448 0.47729325337741213 1.0 2939 -Phenotype MP:0000239 absent common myeloid progenitor cells 0.08388670953153743 0.4772378781017005 1.0 2940 -Phenotype MP:0000877 abnormal Purkinje cell morphology 0.08385464113219798 0.4766566444289797 1.0 2941 -Phenotype MP:0005103 abnormal retina pigmentation 0.08385111802438683 0.47659278876625105 1.0 2942 -Biological Process GO:0046643 regulation of gamma-delta T cell activation 0.08385023922239043 0.47657686064627997 1.0 2943 -Biological Process GO:0045586 regulation of gamma-delta T cell differentiation 0.08385023922239043 0.47657686064627997 1.0 2943 -Biological Process GO:0001845 phagolysosome assembly 0.08384025039816656 0.4763958150964741 1.0 2945 -Biological Process GO:0003007 heart morphogenesis 0.08380334547890722 0.47572692041496795 1.0 2946 -Biological Process GO:0046823 negative regulation of nucleocytoplasmic transport 0.08377848227381901 0.4752762795252852 1.0 2947 -Biological Process GO:0090317 negative regulation of intracellular protein transport 0.08377848227381901 0.4752762795252852 1.0 2947 -Phenotype MP:0006303 abnormal retina nerve fiber layer morphology 0.08377823764108461 0.47527184560324315 1.0 2949 -Biological Process GO:0061138 morphogenesis of a branching epithelium 0.08377276474762863 0.4751726504444777 1.0 2950 -Biological Process GO:0046639 negative regulation of alpha-beta T cell differentiation 0.08376330566516144 0.47500120636381815 1.0 2951 -Phenotype MP:0001319 irregularly shaped pupil 0.08373803733156215 0.47454322259649684 1.0 2952 -Phenotype MP:0008954 abnormal cellular hemoglobin content 0.08373311415801388 0.4744539910070864 1.0 2953 -Biological Process GO:0140352 export from cell 0.08373048911619585 0.47440641262062605 1.0 2954 -Biological Process GO:0034110 regulation of homotypic cell-cell adhesion 0.08372361050503419 0.4742817390943177 1.0 2955 -Biological Process GO:0010564 regulation of cell cycle process 0.08372125985490608 0.47423913400533974 1.0 2956 -Biological Process GO:0010517 regulation of phospholipase activity 0.08372080481970579 0.4742308865783981 1.0 2957 -Phenotype MP:0008039 increased NK T cell number 0.08369768661169696 0.47381187343073655 1.0 2958 -Phenotype MP:0009112 abnormal pancreatic beta cell mass 0.08365088702065193 0.4729636396945589 1.0 2959 -Biological Process GO:0021915 neural tube development 0.08364376256802253 0.4728345103381454 1.0 2960 -Phenotype MP:0001065 abnormal trigeminal nerve morphology 0.08362511397371586 0.472496508093468 1.0 2961 -Biological Process GO:1903305 regulation of regulated secretory pathway 0.08361474610654918 0.47230859246201456 1.0 2962 -Phenotype MP:0003863 decreased aggression towards mice 0.08360381377926329 0.4721104460976607 1.0 2963 -Phenotype MP:0010981 abnormal branching involved in ureteric bud morphogenesis 0.08358020286507006 0.4716825027435954 1.0 2964 -Phenotype MP:0012703 decreased embryonic neuroepithelium thickness 0.08350498801258355 0.47031924776815565 1.0 2965 -Phenotype MP:0003885 abnormal rostral-caudal body axis extension 0.08350275030356302 0.4702786897153912 1.0 2966 -Phenotype MP:0011228 abnormal vitamin D level 0.0834959308908163 0.4701550891491572 1.0 2967 -Phenotype MP:0003257 abnormal abdominal wall morphology 0.08348560075114053 0.4699678573213409 1.0 2968 -Biological Process GO:0045454 cell redox homeostasis 0.08341865464694465 0.46875447184474617 1.0 2969 -Biological Process GO:0016055 Wnt signaling pathway 0.08340815456398942 0.4685641598271323 1.0 2970 -Phenotype MP:0009347 increased trabecular bone thickness 0.08340545566929136 0.4685152428711896 1.0 2971 -Phenotype MP:0003853 dry skin 0.08338439257338237 0.4681334782416406 1.0 2972 -Biological Process GO:0002052 positive regulation of neuroblast proliferation 0.08338284703973009 0.46810546573650996 1.0 2973 -Phenotype MP:0009790 decreased susceptibility to viral infection induced morbidity/mortality 0.08337850138793212 0.4680267016195934 1.0 2974 -Biological Process GO:0051055 negative regulation of lipid biosynthetic process 0.08336571505819756 0.4677949518115169 1.0 2975 -Biological Process GO:0002281 macrophage activation involved in immune response 0.08334403872929985 0.4674020724500321 1.0 2976 -Biological Process GO:0002088 lens development in camera-type eye 0.08333145171419809 0.4671739351819774 1.0 2977 -Phenotype MP:0008752 abnormal tumor necrosis factor level 0.08331594028360445 0.4668927934362463 1.0 2978 -Phenotype MP:0004756 abnormal proximal convoluted tubule morphology 0.08331055514079588 0.4667951887413684 1.0 2979 -Biological Process GO:1901873 regulation of post-translational protein modification 0.08330504655740634 0.46669534670930735 1.0 2980 -Phenotype MP:0000794 abnormal parietal lobe morphology 0.08329994052598 0.4666028008554422 1.0 2981 -Phenotype MP:0009926 decreased transitional stage T2 B cell number 0.08328799619192617 0.46638631205982684 1.0 2982 -Biological Process GO:0060560 developmental growth involved in morphogenesis 0.08327424588213639 0.46613709029557326 1.0 2983 -Phenotype MP:0008113 abnormal macrophage differentiation 0.08325532076689479 0.46579407616125046 1.0 2984 -Biological Process GO:1903707 negative regulation of hemopoiesis 0.08322957575295642 0.4653274526529408 1.0 2985 -Phenotype MP:0000278 abnormal myocardial fiber morphology 0.08320810866321904 0.4649383657116622 1.0 2986 -Phenotype MP:0020866 abnormal lipogenesis 0.08320581240537306 0.46489674647251017 1.0 2987 -Biological Process GO:0007406 negative regulation of neuroblast proliferation 0.08319827830141946 0.46476019226332566 1.0 2988 -Phenotype MP:0002914 abnormal endplate potential 0.08318601195111242 0.46453786698402577 1.0 2989 -Phenotype MP:0000238 absent pre-B cells 0.08318141204184792 0.46445449449861786 1.0 2990 -Phenotype MP:0008210 increased mature B cell number 0.0831703843508037 0.4642546196841809 1.0 2991 -Phenotype MP:0013543 abnormal holocrine gland morphology 0.0831482048349318 0.46385262015395984 1.0 2992 -Phenotype MP:0000647 abnormal sebaceous gland morphology 0.0831482048349318 0.46385262015395984 1.0 2992 -Phenotype MP:0030017 decreased adipocyte glucose uptake 0.08314512206471769 0.46379674552689376 1.0 2994 -Phenotype MP:0002177 abnormal outer ear morphology 0.08313897628172684 0.4636853543725768 1.0 2995 -Biological Process GO:0042307 positive regulation of protein import into nucleus 0.08309575082123555 0.46290190107668694 1.0 2996 -Phenotype MP:0008560 increased tumor necrosis factor secretion 0.08308613782861518 0.46272766740361115 1.0 2997 -Biological Process GO:0090306 meiotic spindle assembly 0.08308035359797461 0.4626228293172603 1.0 2998 -Phenotype MP:0008482 decreased spleen germinal center number 0.08306602703613875 0.4623631630936618 1.0 2999 -Phenotype MP:0003058 increased insulin secretion 0.08306465285978626 0.46233825640718 1.0 3000 -Biological Process GO:0031294 lymphocyte costimulation 0.08306156943479903 0.4622823699124749 1.0 3001 -Phenotype MP:0010620 thick mitral valve 0.08305833834799226 0.4622238070752187 1.0 3002 -Biological Process GO:0055006 cardiac cell development 0.08304722155514499 0.46202231730745397 1.0 3003 -Phenotype MP:0006205 embryonic lethality between implantation and somite formation 0.083037736874636 0.4618504092671284 1.0 3004 -Biological Process GO:2000463 positive regulation of excitatory postsynaptic potential 0.0829703164321951 0.4606284264995575 1.0 3005 -Phenotype MP:0002645 abnormal intestinal cholesterol absorption 0.08296091565861663 0.46045803925647766 1.0 3006 -Phenotype MP:0011999 abnormal tail length 0.08295591143861802 0.46036733871548385 1.0 3007 -Biological Process GO:0050807 regulation of synapse organization 0.08295080225592366 0.4602747357454818 1.0 3008 -Biological Process GO:0030500 regulation of bone mineralization 0.08290496196556052 0.45944388915272455 1.0 3009 -Phenotype MP:0006097 abnormal cerebellar lobule formation 0.08282008783347472 0.45790556156147066 1.0 3010 -Phenotype MP:0011183 abnormal primitive endoderm morphology 0.08281441089655206 0.45780266815346377 1.0 3011 -Phenotype MP:0031018 decreased granulosa cell proliferation 0.0828072158500458 0.45767225929638417 1.0 3012 -Phenotype MP:0003457 abnormal circulating ketone body level 0.08278916153044413 0.4573450281683358 1.0 3013 -Biological Process GO:0002863 positive regulation of inflammatory response to antigenic stimulus 0.08278913762020623 0.4573445947997961 1.0 3014 -Biological Process GO:0070255 regulation of mucus secretion 0.08276677848922764 0.4569393397797383 1.0 3015 -Phenotype MP:0010875 increased bone volume 0.08276130573796125 0.4568401471981323 1.0 3016 -Phenotype MP:0001436 abnormal suckling behavior 0.08275666267143289 0.4567559924954793 1.0 3017 -Phenotype MP:0020851 abnormal vacuole morphology 0.08274004186645811 0.45645474354891336 1.0 3018 -Phenotype MP:0008177 increased germinal center B cell number 0.08269704902254127 0.45567550638443904 1.0 3019 -Phenotype MP:0014168 abnormal brown adipose tissue mass 0.08269102962365094 0.45556640591804015 1.0 3020 -Biological Process GO:0002028 regulation of sodium ion transport 0.08268891289666103 0.4555280406416985 1.0 3021 -Phenotype MP:0005669 increased circulating leptin level 0.08267214241075949 0.45522407875664506 1.0 3022 -Phenotype MP:0004523 decreased cochlear hair cell stereocilia number 0.08264603827838901 0.454750946294676 1.0 3023 -Phenotype MP:0004970 kidney atrophy 0.08264181857139796 0.45467446490356406 1.0 3024 -Phenotype MP:0001683 absent mesoderm 0.08263398533051503 0.454532488894113 1.0 3025 -Phenotype MP:0005322 abnormal serotonin level 0.08259482898824133 0.4538227875962981 1.0 3026 -Biological Process GO:0060039 pericardium development 0.08258131513695588 0.45357785159771263 1.0 3027 -Phenotype MP:0003315 abnormal perineum morphology 0.08256470953216222 0.45327687815155443 1.0 3028 -Biological Process GO:0070542 response to fatty acid 0.08255621812547387 0.45312297301136356 1.0 3029 -Biological Process GO:1902033 regulation of hematopoietic stem cell proliferation 0.0825448399027865 0.45291674487719275 1.0 3030 -Biological Process GO:0051293 establishment of spindle localization 0.08250790531321095 0.4522473124268172 1.0 3031 -Phenotype MP:0000873 thin external granule cell layer 0.08248387515300104 0.45181177031799435 1.0 3032 -Phenotype MP:0009013 abnormal proestrus 0.0824726270571271 0.45160790070770535 1.0 3033 -Biological Process GO:0006650 glycerophospholipid metabolic process 0.08242927323721072 0.45082212092151325 1.0 3034 -Biological Process GO:0071396 cellular response to lipid 0.08239329274892182 0.45016998137650266 1.0 3035 -Phenotype MP:0005351 decreased susceptibility to autoimmune disorder 0.08238143478510163 0.4499550580250361 1.0 3036 -Phenotype MP:0006037 abnormal mitochondrial fission 0.08237900094674999 0.44991094516524055 1.0 3037 -Biological Process GO:0048286 lung alveolus development 0.08236957096025055 0.4497400284434933 1.0 3038 -Biological Process GO:0071354 cellular response to interleukin-6 0.08235200455098934 0.44942164059808415 1.0 3039 -Phenotype MP:0002434 abnormal T-helper 2 cell morphology 0.0823109090817632 0.4486767929910158 1.0 3040 -Phenotype MP:0002685 abnormal spermatogonia proliferation 0.08229936738063681 0.4484676018410577 1.0 3041 -Phenotype MP:0003051 curly tail 0.08229297455118234 0.4483517330163132 1.0 3042 -Biological Process GO:0060525 prostate glandular acinus development 0.0822681884991554 0.44790249051127357 1.0 3043 -Phenotype MP:0003890 abnormal embryonic-extraembryonic boundary morphology 0.08223930082110664 0.44737890681035575 1.0 3044 -Biological Process GO:1905523 positive regulation of macrophage migration 0.08219925064707745 0.44665300498102867 1.0 3045 -Biological Process GO:0010508 positive regulation of autophagy 0.0821981815577697 0.4466336279395296 1.0 3046 -Phenotype MP:0002656 abnormal keratinocyte differentiation 0.08219556309385811 0.44658616877637936 1.0 3047 -Phenotype MP:0002886 abnormal glutamate-mediated receptor currents 0.08215894601146179 0.44592249108357485 1.0 3048 -Biological Process GO:0006509 membrane protein ectodomain proteolysis 0.0821435293666416 0.4456430673120601 1.0 3049 -Biological Process GO:0048557 embryonic digestive tract morphogenesis 0.08212786525913385 0.4453591583261375 1.0 3050 -Biological Process GO:0017157 regulation of exocytosis 0.0820659859448345 0.44423760745810226 1.0 3051 -Biological Process GO:0045687 positive regulation of glial cell differentiation 0.08201053519759027 0.4432325731520642 1.0 3052 -Biological Process GO:0097194 execution phase of apoptosis 0.08200808283315053 0.4431881245104256 1.0 3053 -Biological Process GO:0043535 regulation of blood vessel endothelial cell migration 0.08196872963562618 0.4424748552484251 1.0 3054 -Phenotype MP:0005238 increased brain size 0.08191826947936165 0.44156027445999074 1.0 3055 -Phenotype MP:0001783 decreased white adipose tissue amount 0.08190687452437606 0.44135374305607955 1.0 3056 -Phenotype MP:0011363 renal glomerulus atrophy 0.08189764132418309 0.44118639304891766 1.0 3057 -Biological Process GO:0051298 centrosome duplication 0.08189356779272894 0.4411125610617649 1.0 3058 -Phenotype MP:0000324 increased mast cell number 0.08188354982079926 0.4409309872153042 1.0 3059 -Phenotype MP:0010357 increased prostate gland tumor incidence 0.08187411144943679 0.4407599185195005 1.0 3060 -Phenotype MP:0010901 abnormal pulmonary alveolar parenchyma morphology 0.08185603965343335 0.4404323706349755 1.0 3061 -Biological Process GO:0044058 regulation of digestive system process 0.08185168637690765 0.44035346832131084 1.0 3062 -Biological Process GO:0006869 lipid transport 0.08184747881459986 0.440277207050286 1.0 3063 -Biological Process GO:0048641 regulation of skeletal muscle tissue development 0.08182768902739523 0.4399185209001744 1.0 3064 -Biological Process GO:0002764 immune response-regulating signaling pathway 0.08182074921069171 0.43979273803499613 1.0 3065 -Biological Process GO:0003181 atrioventricular valve morphogenesis 0.08179189100990925 0.43926968860395466 1.0 3066 -Phenotype MP:0011633 abnormal mitochondrial shape 0.08173333450994391 0.43820836311725786 1.0 3067 -Phenotype MP:0000600 liver hypoplasia 0.08172815709837489 0.4381145235118071 1.0 3068 -Phenotype MP:0012088 abnormal midbrain size 0.08172379611073632 0.43803548143568033 1.0 3069 -Phenotype MP:0003461 abnormal response to novel object 0.08172359445435717 0.4380318264519488 1.0 3070 -Phenotype MP:0012778 abnormal liver triglyceride level 0.08172171048000842 0.43799767977320614 1.0 3071 -Phenotype MP:0005171 absent coat pigmentation 0.08168017763705115 0.43724490484998463 1.0 3072 -Phenotype MP:0008071 absent B cells 0.08166568585620482 0.4369822440630703 1.0 3073 -Biological Process GO:0008277 regulation of G protein-coupled receptor signaling pathway 0.08165888526237186 0.43685898458608885 1.0 3074 -Biological Process GO:0043271 negative regulation of monoatomic ion transport 0.0816308318230532 0.436350521304369 1.0 3075 -Biological Process GO:0010717 regulation of epithelial to mesenchymal transition 0.08160842004599511 0.43594431208407763 1.0 3076 -Biological Process GO:0032495 response to muramyl dipeptide 0.08158711866091395 0.4355582285083522 1.0 3077 -Biological Process GO:1902074 response to salt 0.08154641658560313 0.4348205110915941 1.0 3078 -Phenotype MP:0006243 impaired pupillary reflex 0.08152451701139696 0.43442358545111726 1.0 3079 -Phenotype MP:0009858 abnormal cellular extravasation 0.08149201962668373 0.43383457649963353 1.0 3080 -Phenotype MP:0003354 astrocytosis 0.08147905068590355 0.4335995169008936 1.0 3081 -Biological Process GO:0042982 amyloid precursor protein metabolic process 0.08147391192142794 0.4335063777667014 1.0 3082 -Phenotype MP:0009748 abnormal behavioral response to addictive substance 0.08146762308373168 0.43339239377290567 1.0 3083 -Phenotype MP:0008516 disorganized retina outer nuclear layer 0.08145413693752002 0.4331479599235426 1.0 3084 -Phenotype MP:0003109 short femur 0.08144731971436991 0.4330243990433331 1.0 3085 -Biological Process GO:0030859 polarized epithelial cell differentiation 0.08144485139990942 0.43297966131058524 1.0 3086 -Biological Process GO:0097106 postsynaptic density organization 0.08143214572894109 0.432749373427391 1.0 3087 -Biological Process GO:0060047 heart contraction 0.08142527199116434 0.43262478823026257 1.0 3088 -Biological Process GO:0050869 negative regulation of B cell activation 0.08137861734445329 0.43177918158272405 1.0 3089 -Biological Process GO:0070231 T cell apoptotic process 0.08137257612844795 0.4316696856852421 1.0 3090 -Phenotype MP:0001958 emphysema 0.08136941020215127 0.43161230386990723 1.0 3091 -Phenotype MP:0005647 abnormal sex gland physiology 0.08135479108728583 0.43134733517798013 1.0 3092 -Phenotype MP:0003414 epidermal cyst 0.08134295166913263 0.4311327479632203 1.0 3093 -Phenotype MP:0002280 abnormal intercostal muscle morphology 0.08131096001619553 0.43055290530452645 1.0 3094 -Biological Process GO:0006826 iron ion transport 0.08131083691256857 0.4305506740745712 1.0 3095 -Phenotype MP:0004950 abnormal brain vasculature morphology 0.08122710296742686 0.42903301215602774 1.0 3096 -Biological Process GO:0043269 regulation of monoatomic ion transport 0.08119393658525076 0.4284318777520614 1.0 3097 -Phenotype MP:0010960 abnormal compact bone mass 0.08116404207477024 0.42789004540374675 1.0 3098 -Biological Process GO:0050832 defense response to fungus 0.08113229054528404 0.42731455493718434 1.0 3099 -Phenotype MP:0009611 epidermis stratum spinosum hyperplasia 0.08113183468860286 0.42730629262105707 1.0 3100 -Biological Process GO:0036293 response to decreased oxygen levels 0.08112397214619582 0.42716378552702383 1.0 3101 -Biological Process GO:0051051 negative regulation of transport 0.08111692442609364 0.4270360469331533 1.0 3102 -Phenotype MP:0003620 oliguria 0.08109728018301066 0.4266799987427187 1.0 3103 -Biological Process GO:0050856 regulation of T cell receptor signaling pathway 0.08108381140064846 0.42643587960984314 1.0 3104 -Biological Process GO:0006351 DNA-templated transcription 0.08106513079563726 0.42609729717720046 1.0 3105 -Phenotype MP:0001701 incomplete embryo turning 0.08105388183064643 0.4258934118143322 1.0 3106 -Phenotype MP:0011889 abnormal circulating ferritin level 0.08105255662281852 0.4258693926730964 1.0 3107 -Phenotype MP:0001930 abnormal meiosis 0.08105209621054943 0.42586104778780004 1.0 3108 -Phenotype MP:0001718 abnormal visceral yolk sac morphology 0.08103003562484601 0.4254612038443888 1.0 3109 -Phenotype MP:0008564 increased interferon-beta secretion 0.08102534310889775 0.42537615288035296 1.0 3110 -Biological Process GO:0003012 muscle system process 0.08101792142945952 0.42524163634424583 1.0 3111 -Phenotype MP:0001751 increased circulating luteinizing hormone level 0.08100413139043927 0.4249916944952044 1.0 3112 -Phenotype MP:0031131 myocardial fiber disarray 0.08098514392314748 0.424647550241765 1.0 3113 -Biological Process GO:2000736 regulation of stem cell differentiation 0.08098488796700098 0.42464291108502034 1.0 3114 -Phenotype MP:0005107 abnormal stapes morphology 0.08097045639485001 0.4243813415693218 1.0 3115 -Phenotype MP:0003447 decreased tumor growth/size 0.08088622834008097 0.4228547240072373 1.0 3116 -Phenotype MP:0010844 increased effector memory CD4-positive, alpha-beta T cell number 0.0808860748291248 0.42285194165019124 1.0 3117 -Phenotype MP:0008765 decreased mast cell degranulation 0.08088257469495364 0.42278850238034227 1.0 3118 -Biological Process GO:0070252 actin-mediated cell contraction 0.08086240134234912 0.42242286417990393 1.0 3119 -Phenotype MP:0004860 dilated kidney collecting duct 0.08084431283977411 0.422095013491929 1.0 3120 -Phenotype MP:0004839 bile duct hyperplasia 0.08083672174636858 0.42195742635970696 1.0 3121 -Phenotype MP:0003969 abnormal luteinizing hormone level 0.08080434216762189 0.4213705526190853 1.0 3122 -Biological Process GO:0032647 regulation of interferon-alpha production 0.0807966611349964 0.42123133535551227 1.0 3123 -Phenotype MP:0001676 abnormal apical ectodermal ridge morphology 0.08079018157827111 0.4211138946153876 1.0 3124 -Phenotype MP:0003886 abnormal embryonic epiblast morphology 0.08073676157218979 0.42014566710883966 1.0 3125 -Phenotype MP:0004960 abnormal prostate gland weight 0.08072607923309083 0.4199520517330919 1.0 3126 -Phenotype MP:0031084 decreased erythrocyte osmotic fragility 0.08068633005289583 0.41923160536008064 1.0 3127 -Phenotype MP:0004647 decreased lumbar vertebrae number 0.08065074697251573 0.4185866687582527 1.0 3128 -Biological Process GO:1904338 regulation of dopaminergic neuron differentiation 0.08064999678952445 0.41857307183342274 1.0 3129 -Phenotype MP:0001033 abnormal parasympathetic system morphology 0.08060823784285809 0.4178161988232384 1.0 3130 -Biological Process GO:0002069 columnar/cuboidal epithelial cell maturation 0.08060146768756726 0.4176934910390761 1.0 3131 -Biological Process GO:0001956 positive regulation of neurotransmitter secretion 0.08059921242019996 0.41765261474459725 1.0 3132 -Phenotype MP:0002428 abnormal semicircular canal morphology 0.08058881984379385 0.4174642512628525 1.0 3133 -Biological Process GO:0043280 positive regulation of cysteine-type endopeptidase activity involved in apoptotic process 0.08056009092635485 0.4169435450679594 1.0 3134 -Phenotype MP:0011256 abnormal neural fold morphology 0.08055712751342758 0.41688983376914235 1.0 3135 -Biological Process GO:0007141 male meiosis I 0.08055622053414235 0.41687339494114045 1.0 3136 -Phenotype MP:0011422 kidney medulla atrophy 0.08055014327926935 0.41676324584599833 1.0 3137 -Biological Process GO:0015850 organic hydroxy compound transport 0.08054494111396071 0.4166689575836989 1.0 3138 -Biological Process GO:0002440 production of molecular mediator of immune response 0.08053805022955451 0.41654406160715474 1.0 3139 -Biological Process GO:0042149 cellular response to glucose starvation 0.08052386830196434 0.41628701685190383 1.0 3140 -Phenotype MP:0009622 absent inguinal lymph nodes 0.08050875958324288 0.41601317418268846 1.0 3141 -Biological Process GO:0051966 regulation of synaptic transmission, glutamatergic 0.08046282557981788 0.4151806290584095 1.0 3142 -Phenotype MP:0003087 absent allantois 0.0804598054812915 0.41512589034383 1.0 3143 -Phenotype MP:0002784 abnormal Sertoli cell morphology 0.0804151781477297 0.4143170283636825 1.0 3144 -Phenotype MP:0003202 abnormal neuron apoptosis 0.08041118205940467 0.4142446000185979 1.0 3145 -Biological Process GO:0016064 immunoglobulin mediated immune response 0.08040023224388826 0.4140461366833733 1.0 3146 -Phenotype MP:0010903 abnormal pulmonary alveolus wall morphology 0.08037795690217586 0.4136424003279176 1.0 3147 -Biological Process GO:0002523 leukocyte migration involved in inflammatory response 0.08035577220756984 0.4132403069341202 1.0 3148 -Phenotype MP:0008657 increased interleukin-1 beta secretion 0.08034462912092921 0.4130383405963239 1.0 3149 -Phenotype MP:0005437 abnormal glycogen level 0.0803419760736781 0.4129902546166857 1.0 3150 -Phenotype MP:0010143 enhanced fertility 0.08033020024958204 0.41277682003218347 1.0 3151 -Biological Process GO:0021819 layer formation in cerebral cortex 0.08032863523249312 0.41274845439344865 1.0 3152 -Biological Process GO:0035150 regulation of tube size 0.08028394647790615 0.4119384791688372 1.0 3153 -Phenotype MP:0000740 impaired smooth muscle contractility 0.08028121511624053 0.4118889737552482 1.0 3154 -Phenotype MP:0008663 increased interleukin-12 secretion 0.08024353531869577 0.4112060345513765 1.0 3155 -Phenotype MP:0010681 abnormal hair follicle bulb morphology 0.0802124178207253 0.41064203578611824 1.0 3156 -Phenotype MP:0009605 decreased keratohyalin granule number 0.08015398823323694 0.40958301056406277 1.0 3157 -Biological Process GO:0030307 positive regulation of cell growth 0.08015322676329228 0.4095692090653377 1.0 3158 -Phenotype MP:0009143 abnormal pancreatic duct morphology 0.08012939502451477 0.4091372633074483 1.0 3159 -Phenotype MP:0001805 decreased IgG level 0.08010925952645498 0.4087723112134734 1.0 3160 -Biological Process GO:0032940 secretion by cell 0.08010171930479659 0.4086356461220467 1.0 3161 -Phenotype MP:0004047 abnormal milk composition 0.080087545895703 0.40837875576293503 1.0 3162 -Biological Process GO:0071900 regulation of protein serine/threonine kinase activity 0.08006945621231365 0.40805088367292364 1.0 3163 -Biological Process GO:0003161 cardiac conduction system development 0.08005667770900216 0.40781927571728493 1.0 3164 -Biological Process GO:0050792 regulation of viral process 0.08003306406172661 0.4073912828266196 1.0 3165 -Biological Process GO:0001937 negative regulation of endothelial cell proliferation 0.0800218285624632 0.4071876415275141 1.0 3166 -Phenotype MP:0008932 abnormal embryonic tissue physiology 0.08000593156779856 0.40689951150592024 1.0 3167 -Phenotype MP:0009815 decreased prostaglandin level 0.08000050991756924 0.40680124512094606 1.0 3168 -Phenotype MP:0006009 abnormal neuronal migration 0.07997257178442463 0.4062948717418223 1.0 3169 -Biological Process GO:2001244 positive regulation of intrinsic apoptotic signaling pathway 0.07996487348086467 0.40615534144582877 1.0 3170 -Biological Process GO:0045104 intermediate filament cytoskeleton organization 0.07995944326593984 0.4060569198273684 1.0 3171 -Biological Process GO:0010738 regulation of protein kinase A signaling 0.07994647075016414 0.40582179543251085 1.0 3172 -Biological Process GO:0007431 salivary gland development 0.07994262720767109 0.40575213195177867 1.0 3173 -Phenotype MP:0009746 enhanced behavioral response to xenobiotic 0.07993895888982738 0.40568564438467447 1.0 3174 -Phenotype MP:0004014 abnormal uterine environment 0.07991896308750146 0.40532322424945433 1.0 3175 -Biological Process GO:0030316 osteoclast differentiation 0.07990962444306948 0.4051539630854038 1.0 3176 -Phenotype MP:0012317 impaired conditioning behavior 0.07990873213450034 0.4051377901613562 1.0 3177 -Biological Process GO:0043045 epigenetic programming of gene expression 0.07990392506578092 0.40505066295000924 1.0 3178 -Phenotype MP:0011957 decreased compensatory feeding amount 0.07990082223107642 0.40499442465784957 1.0 3179 -Phenotype MP:0001511 disheveled coat 0.0799003527333948 0.4049859151011694 1.0 3180 -Phenotype MP:0021156 abnormal heart right ventricle wall thickness 0.07984416829275864 0.40396758274117084 1.0 3181 -Phenotype MP:0000121 failure of tooth eruption 0.0798439668670804 0.40396393193884955 1.0 3182 -Phenotype MP:0008456 abnormal retina rod cell outer segment morphology 0.07981703246913852 0.40347575107043226 1.0 3183 -Biological Process GO:0031146 SCF-dependent proteasomal ubiquitin-dependent protein catabolic process 0.07981300099325317 0.40340268133250984 1.0 3184 -Phenotype MP:0008852 retina neovascularization 0.07980517161975376 0.40326077541865374 1.0 3185 -Phenotype MP:0030095 abnormal midface morphology 0.07978822247212836 0.40295357532364684 1.0 3186 -Biological Process GO:0032633 interleukin-4 production 0.07978609842327256 0.4029150773398707 1.0 3187 -Phenotype MP:0006306 abnormal nasal pit morphology 0.07976706739878558 0.40257014362050686 1.0 3188 -Phenotype MP:0008755 abnormal immunoglobulin V(D)J recombination 0.07976003226983586 0.40244263323889307 1.0 3189 -Phenotype MP:0008894 abnormal intraepithelial T cell morphology 0.07975733445541089 0.4023937358626959 1.0 3190 -Phenotype MP:0001182 lung hemorrhage 0.07974004174967175 0.4020803088418569 1.0 3191 -Phenotype MP:0004521 abnormal cochlear hair cell stereociliary bundle morphology 0.07971618202449593 0.4016478558357914 1.0 3192 -Biological Process GO:0001659 temperature homeostasis 0.07970467748304033 0.40143933819783806 1.0 3193 -Biological Process GO:0003171 atrioventricular valve development 0.07970416689295279 0.4014300838490726 1.0 3194 -Phenotype MP:0000815 abnormal Ammon gyrus morphology 0.07968582462837526 0.4010976337727976 1.0 3195 -Phenotype MP:0002698 abnormal sclera morphology 0.07968469488827301 0.4010771574471196 1.0 3196 -Phenotype MP:0009116 abnormal brown fat cell morphology 0.07966859452744646 0.4007853414523051 1.0 3197 -Biological Process GO:1903320 regulation of protein modification by small protein conjugation or removal 0.0796666849866714 0.40075073138692113 1.0 3198 -Phenotype MP:0030540 misaligned teeth 0.07964661948455798 0.4003870479562354 1.0 3199 -Phenotype MP:0009114 decreased pancreatic beta cell mass 0.0796371076930622 0.400214648534402 1.0 3200 -Phenotype MP:0009765 abnormal xenobiotic induced morbidity/mortality 0.07963380854143598 0.4001548520351669 1.0 3201 -Biological Process GO:0001702 gastrulation with mouth forming second 0.07962594492973218 0.400012325560332 1.0 3202 -Phenotype MP:0002878 abnormal corticospinal tract morphology 0.07960008866395707 0.39954368563352316 1.0 3203 -Phenotype MP:0005077 abnormal melanogenesis 0.07959705720680865 0.39948874104606746 1.0 3204 -Phenotype MP:0000220 increased monocyte cell number 0.0795331059897787 0.3983296373329126 1.0 3205 -Biological Process GO:0140029 exocytic process 0.07953133401716572 0.39829752066444724 1.0 3206 -Biological Process GO:1903555 regulation of tumor necrosis factor superfamily cytokine production 0.07948951985960229 0.39753964696719585 1.0 3207 -Phenotype MP:0005031 abnormal trophoblast layer morphology 0.07948496663784765 0.3974571206840738 1.0 3208 -Phenotype MP:0005435 hemoperitoneum 0.07947887379800789 0.3973466891143568 1.0 3209 -Biological Process GO:0090009 primitive streak formation 0.07947697260865716 0.39731223041695923 1.0 3210 -Biological Process GO:0030890 positive regulation of B cell proliferation 0.07946635607059571 0.397119807672571 1.0 3211 -Biological Process GO:0071383 cellular response to steroid hormone stimulus 0.07944035752946998 0.3966485890319418 1.0 3212 -Biological Process GO:0072091 regulation of stem cell proliferation 0.0794219495616032 0.39631494809597595 1.0 3213 -Biological Process GO:0003014 renal system process 0.07941474898719236 0.3961844390466714 1.0 3214 -Biological Process GO:0051965 positive regulation of synapse assembly 0.07940587939361832 0.3960236793407062 1.0 3215 -Phenotype MP:0004594 abnormal mandibular coronoid process morphology 0.07940173758930547 0.3959486099209024 1.0 3216 -Biological Process GO:0050857 positive regulation of antigen receptor-mediated signaling pathway 0.07936088055021906 0.39520808381502104 1.0 3217 -Phenotype MP:0020387 abnormal radial glial cell number 0.07934972315911137 0.3950058582114648 1.0 3218 -Phenotype MP:0004407 increased cochlear hair cell number 0.07934953776580567 0.3950024979928635 1.0 3219 -Phenotype MP:0004277 abnormal lateral ganglionic eminence morphology 0.07931254100498553 0.3943319387004385 1.0 3220 -Phenotype MP:0000488 abnormal intestinal epithelium morphology 0.07928933117725645 0.39391126496267587 1.0 3221 -Phenotype MP:0003215 renal interstitial fibrosis 0.0792594690503251 0.3933700195600651 1.0 3222 -Phenotype MP:0010029 abnormal basicranium morphology 0.07923894383523788 0.39299800391867784 1.0 3223 -Biological Process GO:0051653 spindle localization 0.07922813522517569 0.39280209990560383 1.0 3224 -Phenotype MP:0009397 increased trophoblast giant cell number 0.07921763161880058 0.3926117240266709 1.0 3225 -Phenotype MP:0010218 abnormal T-helper 17 cell number 0.07920880577678469 0.3924517573094222 1.0 3226 -Biological Process GO:0045604 regulation of epidermal cell differentiation 0.07920508981773888 0.39238440625454074 1.0 3227 -Phenotype MP:0008188 abnormal transitional stage B cell morphology 0.07918423627044857 0.392006439654072 1.0 3228 -Phenotype MP:0002743 glomerulonephritis 0.07915242558434987 0.3914298769850968 1.0 3229 -Phenotype MP:0031116 microvesicular hepatic steatosis 0.07914905218265345 0.39136873471738265 1.0 3230 -Phenotype MP:0004268 abnormal optic stalk morphology 0.07914265774545692 0.3912528367526175 1.0 3231 -Biological Process GO:1902116 negative regulation of organelle assembly 0.07912222689772264 0.39088253150165375 1.0 3232 -Biological Process GO:0051054 positive regulation of DNA metabolic process 0.0791185519394022 0.39081592357716494 1.0 3233 -Phenotype MP:0001101 abnormal superior vagus ganglion morphology 0.07911273751191095 0.3907105381786067 1.0 3234 -Phenotype MP:0009063 abnormal oviduct size 0.07908700296936644 0.39024410446233027 1.0 3235 -Biological Process GO:1903533 regulation of protein targeting 0.0790841408174141 0.3901922284995318 1.0 3236 -Biological Process GO:0032760 positive regulation of tumor necrosis factor production 0.07908394027037768 0.3901885936224274 1.0 3237 -Phenotype MP:0008483 increased spleen germinal center size 0.07906278682621526 0.3898051914478731 1.0 3238 -Biological Process GO:0033122 negative regulation of purine nucleotide catabolic process 0.07903690478635594 0.38933608437066297 1.0 3239 -Biological Process GO:0045820 negative regulation of glycolytic process 0.07903690478635594 0.38933608437066297 1.0 3239 -Biological Process GO:0030812 negative regulation of nucleotide catabolic process 0.07903690478635594 0.38933608437066297 1.0 3239 -Phenotype MP:0000065 abnormal bone marrow cavity morphology 0.07902826934895568 0.38917956870106013 1.0 3242 -Biological Process GO:0010464 regulation of mesenchymal cell proliferation 0.07901658030703007 0.3889677070269836 1.0 3243 -Phenotype MP:0006206 embryonic lethality between somite formation and embryo turning 0.07899840597094432 0.3886383006228607 1.0 3244 -Phenotype MP:0001306 small lens 0.07899397005367259 0.38855790046130473 1.0 3245 -Phenotype MP:0005156 bradykinesia 0.07898171946357757 0.388335860832867 1.0 3246 -Biological Process GO:0090189 regulation of branching involved in ureteric bud morphogenesis 0.07897858807972269 0.38827910509275637 1.0 3247 -Phenotype MP:0003385 abnormal body wall morphology 0.07894149039273801 0.3876067165326879 1.0 3248 -Phenotype MP:0010470 dilated ascending aorta 0.07893857631034251 0.387553899340429 1.0 3249 -Phenotype MP:0000120 malocclusion 0.07892585268734109 0.3873232860800305 1.0 3250 -Biological Process GO:0031295 T cell costimulation 0.07891578392318555 0.38714079163408266 1.0 3251 -Phenotype MP:0003462 abnormal response to novel odor 0.07891244880961823 0.38708034333146696 1.0 3252 -Phenotype MP:0001967 deafness 0.07887962657711511 0.38648544657523204 1.0 3253 -Biological Process GO:1903037 regulation of leukocyte cell-cell adhesion 0.07883923113108227 0.38575328675614234 1.0 3254 -Biological Process GO:0008654 phospholipid biosynthetic process 0.0788166558923824 0.38534411482451025 1.0 3255 -Phenotype MP:0011131 abnormal lung endothelial cell physiology 0.07879038440501451 0.38486794908486593 1.0 3256 -Phenotype MP:0008411 decreased cellular sensitivity to ultraviolet irradiation 0.07878711608215405 0.3848087113511794 1.0 3257 -Phenotype MP:0005325 abnormal renal glomerulus morphology 0.07878303245556817 0.38473469639167335 1.0 3258 -Biological Process GO:0003013 circulatory system process 0.07877176036921629 0.38453039195850924 1.0 3259 -Phenotype MP:0002663 absent blastocoele 0.07875994180662604 0.38431618274688323 1.0 3260 -Biological Process GO:1902692 regulation of neuroblast proliferation 0.07874561438278527 0.38405650089960874 1.0 3261 -Biological Process GO:0051893 regulation of focal adhesion assembly 0.07872100473020838 0.38361045560123763 1.0 3262 -Biological Process GO:0090109 regulation of cell-substrate junction assembly 0.07872100473020838 0.38361045560123763 1.0 3262 -Phenotype MP:0003306 small intestinal inflammation 0.07869457904891419 0.38313149512584294 1.0 3264 -Biological Process GO:0043500 muscle adaptation 0.0786943092017699 0.38312660419739053 1.0 3265 -Phenotype MP:0010429 abnormal heart left ventricle outflow tract morphology 0.07864672793319294 0.3822642027037905 1.0 3266 -Phenotype MP:0002747 abnormal aortic valve morphology 0.07864672793319294 0.3822642027037905 1.0 3266 -Biological Process GO:0045936 negative regulation of phosphate metabolic process 0.07859113315873223 0.38125655793169444 1.0 3268 -Biological Process GO:0010563 negative regulation of phosphorus metabolic process 0.07859113315873223 0.38125655793169444 1.0 3268 -Phenotype MP:0000599 enlarged liver 0.07858470722289468 0.38114008906001823 1.0 3270 -Phenotype MP:0009004 progressive hair loss 0.07857622605166803 0.3809863694356348 1.0 3271 -Phenotype MP:0002920 decreased paired-pulse facilitation 0.07857594633088671 0.38098129954937887 1.0 3272 -Phenotype MP:0004163 abnormal adenohypophysis morphology 0.07856982213980246 0.38087029974428516 1.0 3273 -Phenotype MP:0011290 decreased nephron number 0.07854489827421274 0.3804185593944856 1.0 3274 -Phenotype MP:0008288 abnormal adrenal cortex morphology 0.07852320040182204 0.380025289561265 1.0 3275 -Phenotype MP:0030967 abnormal circulating adiponectin level 0.07851420158254963 0.3798621876639583 1.0 3276 -Phenotype MP:0004885 abnormal endolymph physiology 0.07850915446531792 0.37977070961872805 1.0 3277 -Biological Process GO:0042308 negative regulation of protein import into nucleus 0.07850759105429239 0.37974237308958847 1.0 3278 -Biological Process GO:0032675 regulation of interleukin-6 production 0.07848516059031507 0.3793358251724203 1.0 3279 -Biological Process GO:0045137 development of primary sexual characteristics 0.07846369493038063 0.37894676414604966 1.0 3280 -Biological Process GO:0031669 cellular response to nutrient levels 0.0784575525590292 0.37883543482705184 1.0 3281 -Phenotype MP:0006107 abnormal fetal atrioventricular canal morphology 0.07845598086326167 0.37880694813853044 1.0 3282 -Phenotype MP:0012448 abnormal primary motor cortex morphology 0.07844990947887065 0.3786969054447641 1.0 3283 -Phenotype MP:0000799 abnormal precentral gyrus morphology 0.07844990947887065 0.3786969054447641 1.0 3283 -Biological Process GO:0051646 mitochondrion localization 0.07844078174929225 0.378531467072543 1.0 3285 -Phenotype MP:0004076 abnormal vitelline vascular remodeling 0.07843160694694817 0.3783651755153471 1.0 3286 -Biological Process GO:0002053 positive regulation of mesenchymal cell proliferation 0.07842832965167279 0.3783057751583371 1.0 3287 -Biological Process GO:1905332 positive regulation of morphogenesis of an epithelium 0.07839780916762051 0.37775259715742887 1.0 3288 -Phenotype MP:0010094 abnormal chromosome stability 0.07839210123047491 0.3776491418762444 1.0 3289 -Phenotype MP:0000921 demyelination 0.07838371697593305 0.3774971788484422 1.0 3290 -Phenotype MP:0010685 abnormal hair follicle inner root sheath morphology 0.07838050120527096 0.3774388936134116 1.0 3291 -Phenotype MP:0009641 kidney degeneration 0.07833979546177883 0.37670110971156096 1.0 3292 -Phenotype MP:0002847 abnormal renal glomerular filtration rate 0.07831498050146068 0.37625134324921083 1.0 3293 -Biological Process GO:0010824 regulation of centrosome duplication 0.07830196182102422 0.37601538212860836 1.0 3294 -Biological Process GO:0060484 lung-associated mesenchyme development 0.07830077939175517 0.3759939508217474 1.0 3295 -Biological Process GO:0006954 inflammatory response 0.07826855650177333 0.3754099170353531 1.0 3296 -Phenotype MP:0030609 decreased incisor number 0.07826734299410565 0.37538792243839497 1.0 3297 -Phenotype MP:0001102 small superior vagus ganglion 0.07823940907831606 0.37488162549803333 1.0 3298 -Biological Process GO:0010038 response to metal ion 0.07822613351835705 0.37464100848467013 1.0 3299 -Phenotype MP:0011704 decreased fibroblast proliferation 0.07819906585617575 0.3741504122271185 1.0 3300 -Biological Process GO:0032774 RNA biosynthetic process 0.07819613494040933 0.37409728993319546 1.0 3301 -Biological Process GO:0090594 inflammatory response to wounding 0.07816541010685851 0.3735404081362761 1.0 3302 -Biological Process GO:0070585 protein localization to mitochondrion 0.07815456974814228 0.37334392868485244 1.0 3303 -Phenotype MP:0000537 abnormal urethra morphology 0.07815397135109603 0.37333308285156797 1.0 3304 -Biological Process GO:0071869 response to catecholamine 0.07814808206966484 0.373226340739506 1.0 3305 -Phenotype MP:0004936 impaired branching involved in ureteric bud morphogenesis 0.07814197851746674 0.3731157150103203 1.0 3306 -Phenotype MP:0005464 abnormal platelet physiology 0.07814175242545285 0.37311161713533086 1.0 3307 -Biological Process GO:0050771 negative regulation of axonogenesis 0.07814128554517996 0.3731031550186889 1.0 3308 -Phenotype MP:0008262 abnormal hippocampus region morphology 0.07806455294313486 0.3717123911195616 1.0 3309 -Phenotype MP:0013544 abnormal merocrine gland morphology 0.07804890684176469 0.371428808491477 1.0 3310 -Phenotype MP:0008721 abnormal chemokine level 0.07804274781654719 0.3713171773243067 1.0 3311 -Phenotype MP:0021152 abnormal amyloid deposition 0.0780398531501375 0.37126471204311845 1.0 3312 -Phenotype MP:0000604 amyloidosis 0.0780398531501375 0.37126471204311845 1.0 3312 -Biological Process GO:0030903 notochord development 0.07800379930100476 0.3706112428466884 1.0 3314 -Phenotype MP:0004401 increased cochlear outer hair cell number 0.0778235469092502 0.3673442023384539 1.0 3315 -Phenotype MP:0008261 arrest of male meiosis 0.07781587382139965 0.36720512907242414 1.0 3316 -Phenotype MP:0005140 decreased cardiac muscle contractility 0.07778888022256614 0.3667158751990431 1.0 3317 -Phenotype MP:0011138 abnormal lung endothelial cell proliferation 0.07778081455135477 0.3665696864338504 1.0 3318 -Biological Process GO:0008625 extrinsic apoptotic signaling pathway via death domain receptors 0.07777409405202984 0.36644787865467815 1.0 3319 -Phenotype MP:0002804 abnormal motor learning 0.07777184580383545 0.3664071295813807 1.0 3320 -Biological Process GO:0071709 membrane assembly 0.07775774721246265 0.3661515952793077 1.0 3321 -Phenotype MP:0020203 abnormal mast cell number 0.07771626987661628 0.36539982641197294 1.0 3322 -Biological Process GO:0048708 astrocyte differentiation 0.07771432739107587 0.36536461922894786 1.0 3323 -Biological Process GO:0002320 lymphoid progenitor cell differentiation 0.07768448315764165 0.36482369814258825 1.0 3324 -Biological Process GO:0048368 lateral mesoderm development 0.07767818286015149 0.36470950644219574 1.0 3325 -Biological Process GO:2000647 negative regulation of stem cell proliferation 0.07767381872887724 0.36463040738826674 1.0 3326 -Phenotype MP:0004892 increased adiponectin level 0.07766214997921306 0.36441891350759054 1.0 3327 -Phenotype MP:0000125 absent incisors 0.07765054854643538 0.36420863973275025 1.0 3328 -Phenotype MP:0006355 abnormal sixth pharyngeal arch artery morphology 0.07763415169565624 0.36391144991362223 1.0 3329 -Phenotype MP:0006347 abnormal sixth pharyngeal arch morphology 0.07763415169565624 0.36391144991362223 1.0 3329 -Biological Process GO:0046034 ATP metabolic process 0.07763152930734629 0.3638639196214939 1.0 3331 -Phenotype MP:0003936 abnormal reproductive system development 0.07763064523664576 0.3638478960072568 1.0 3332 -Biological Process GO:0003151 outflow tract morphogenesis 0.07761387715691714 0.36354397773363256 1.0 3333 -Phenotype MP:0000512 intestinal ulcer 0.07760233520926585 0.3633347821154571 1.0 3334 -Phenotype MP:0000813 abnormal hippocampus layer morphology 0.0775829198537642 0.36298288246914323 1.0 3335 -Phenotype MP:0012135 embryonic-extraembryonic boundary constriction 0.07756737801569036 0.3627011895935846 1.0 3336 -Biological Process GO:1902004 positive regulation of amyloid-beta formation 0.07752463438893797 0.3619264694430801 1.0 3337 -Biological Process GO:0006836 neurotransmitter transport 0.07752198333822213 0.36187841965026607 1.0 3338 -Biological Process GO:0055023 positive regulation of cardiac muscle tissue growth 0.07751873023906108 0.36181945784325203 1.0 3339 -Biological Process GO:0060045 positive regulation of cardiac muscle cell proliferation 0.07751873023906108 0.36181945784325203 1.0 3339 -Biological Process GO:0042659 regulation of cell fate specification 0.07746451203834881 0.3608367632099859 1.0 3341 -Phenotype MP:0002761 abnormal hippocampal mossy fiber morphology 0.07745313814505805 0.36063061354531 1.0 3342 -Phenotype MP:0008152 decreased diameter of femur 0.07743173511096524 0.36024268760047395 1.0 3343 -Phenotype MP:0008283 small hippocampus 0.07742827511400774 0.3601799758100312 1.0 3344 -Phenotype MP:0000032 cochlear degeneration 0.07741796033314574 0.3599930223578096 1.0 3345 -Phenotype MP:0031024 increased susceptibility to Riboviria infection induced morbidity/mortality 0.07740607072408523 0.3597775254423476 1.0 3346 -Phenotype MP:0005598 decreased ventricle muscle contractility 0.0773989372574383 0.3596482327085712 1.0 3347 -Biological Process GO:0048754 branching morphogenesis of an epithelial tube 0.07738637780025559 0.3594205949225872 1.0 3348 -Phenotype MP:0031015 abnormal granulosa cell apoptosis 0.0773413962313041 0.3586053124930005 1.0 3349 -Biological Process GO:0042634 regulation of hair cycle 0.07729840971850266 0.3578261900787955 1.0 3350 -Phenotype MP:0012099 decreased spongiotrophoblast size 0.07728131372324831 0.35751632839828823 1.0 3351 -Phenotype MP:0006301 abnormal mesenchyme morphology 0.07725770094899609 0.35708835133100547 1.0 3352 -Phenotype MP:0014201 abnormal intestinal epithelium physiology 0.07724777634902291 0.35690846983359636 1.0 3353 -Phenotype MP:0001074 abnormal vagus nerve morphology 0.07723503987491298 0.35667762364928673 1.0 3354 -Biological Process GO:0060713 labyrinthine layer morphogenesis 0.07722414979255321 0.35648024296622854 1.0 3355 -Phenotype MP:0003873 pharyngeal arch hypoplasia 0.07721920392146664 0.35639059998822953 1.0 3356 -Biological Process GO:0007189 adenylate cyclase-activating G protein-coupled receptor signaling pathway 0.07720012135392706 0.35604473206078585 1.0 3357 -Phenotype MP:0004953 decreased spleen weight 0.07718459442277592 0.3557633093703817 1.0 3358 -Phenotype MP:0001191 abnormal skin condition 0.07718083454023628 0.35569516221048186 1.0 3359 -Phenotype MP:0010363 increased fibrosarcoma incidence 0.07717634265287887 0.355613747601709 1.0 3360 -Biological Process GO:1903522 regulation of blood circulation 0.07715342087270971 0.3551982946714896 1.0 3361 -Biological Process GO:0061081 positive regulation of myeloid leukocyte cytokine production involved in immune response 0.07713368076281568 0.35484050891323676 1.0 3362 -Phenotype MP:0008772 increased heart ventricle size 0.07710152174448193 0.3542576327883835 1.0 3363 -Biological Process GO:2001056 positive regulation of cysteine-type endopeptidase activity 0.07708439578051507 0.3539472279306301 1.0 3364 -Biological Process GO:0051301 cell division 0.0770819990238063 0.353903787168598 1.0 3365 -Phenotype MP:0005652 sex reversal 0.07707306230949174 0.3537418109119059 1.0 3366 -Biological Process GO:0043393 regulation of protein binding 0.0770508510292568 0.35333923565861264 1.0 3367 -Phenotype MP:0001077 abnormal spinal nerve morphology 0.07704721025050998 0.353273247232431 1.0 3368 -Phenotype MP:0004230 abnormal embryonic erythrocyte morphology 0.07704109594831088 0.3531624266615103 1.0 3369 -Phenotype MP:0008279 arrest of spermiogenesis 0.07701774350573809 0.35273916805667915 1.0 3370 -Biological Process GO:0060421 positive regulation of heart growth 0.07699507172338038 0.3523282462895086 1.0 3371 -Phenotype MP:0012136 absent forebrain 0.07697534502816039 0.3519707036696855 1.0 3372 -Biological Process GO:0061025 membrane fusion 0.07697527448264352 0.3519694250455349 1.0 3373 -Biological Process GO:0001895 retina homeostasis 0.07693475739931699 0.35123506057350323 1.0 3374 -Phenotype MP:0001130 abnormal ovarian folliculogenesis 0.0768973760750229 0.3505575311408478 1.0 3375 -Phenotype MP:0005479 decreased circulating triiodothyronine level 0.07688919552113349 0.35040926014884416 1.0 3376 -Phenotype MP:0011902 increased hematopoietic stem cell proliferation 0.07683452490810283 0.34941836562787504 1.0 3377 -Phenotype MP:0008166 abnormal B-2 B cell morphology 0.07683368762645915 0.3494031900564438 1.0 3378 -Phenotype MP:0000623 decreased salivation 0.0768305062160648 0.3493455275947673 1.0 3379 -Biological Process GO:0060442 branching involved in prostate gland morphogenesis 0.07680590591133107 0.3488996517242855 1.0 3380 -Phenotype MP:0014169 decreased brown adipose tissue mass 0.07678496906393029 0.34852017532506946 1.0 3381 -Phenotype MP:0000864 abnormal cerebellum vermis morphology 0.07675408783814797 0.34796045894853367 1.0 3382 -Phenotype MP:0008478 increased spleen white pulp amount 0.0767533394039489 0.34794689372023196 1.0 3383 -Biological Process GO:0034765 regulation of monoatomic ion transmembrane transport 0.07671011410091055 0.34716344327814685 1.0 3384 -Biological Process GO:0071241 cellular response to inorganic substance 0.07669219155812335 0.34683860057993676 1.0 3385 -Biological Process GO:0050872 white fat cell differentiation 0.07669112012609203 0.3468191810770161 1.0 3386 -Phenotype MP:0020936 abnormal susceptibility to Picornaviridae infection 0.07668233172657235 0.3466598929979296 1.0 3387 -Phenotype MP:0011096 embryonic lethality between implantation and somite formation, complete penetrance 0.07665843609610956 0.34622678921532885 1.0 3388 -Biological Process GO:0021799 cerebral cortex radially oriented cell migration 0.07665573377468704 0.3461778101506534 1.0 3389 -Phenotype MP:0000547 short limbs 0.0766472548378756 0.346024131024623 1.0 3390 -Phenotype MP:0012685 abnormal primitive streak elongation 0.07657148104159717 0.3446507452986714 1.0 3391 -Phenotype MP:0005542 cornea vascularization 0.0765686503453129 0.3445994394639073 1.0 3392 -Biological Process GO:0007440 foregut morphogenesis 0.0765608524650514 0.34445810435903174 1.0 3393 -Phenotype MP:0004469 abnormal zygomatic arch morphology 0.0765369160301067 0.3440242610029141 1.0 3394 -Biological Process GO:0071867 response to monoamine 0.07653670049066308 0.34402035439126477 1.0 3395 -Phenotype MP:0005352 small cranium 0.07653548899975882 0.3439983963477622 1.0 3396 -Phenotype MP:0001052 abnormal innervation pattern to muscle 0.07652647334544815 0.34383498931857126 1.0 3397 -Biological Process GO:0001764 neuron migration 0.07648598435319554 0.3431011339919412 1.0 3398 -Phenotype MP:0012065 increased astrocyte number 0.07648219109752374 0.3430323819503333 1.0 3399 -Phenotype MP:0011167 abnormal adipose tissue development 0.07647384478390329 0.34288110659455556 1.0 3400 -Biological Process GO:0021854 hypothalamus development 0.0764344705592126 0.34216745621914213 1.0 3401 -Phenotype MP:0020155 enhanced humoral immune response 0.07642346900336983 0.3419680551002883 1.0 3402 -Phenotype MP:0003407 abnormal central nervous system regeneration 0.07641506398738596 0.3418157157752765 1.0 3403 -Biological Process GO:0014857 regulation of skeletal muscle cell proliferation 0.07640994466784101 0.3417229290767748 1.0 3404 -Phenotype MP:0008784 craniorachischisis 0.07638220251528771 0.3412201078088015 1.0 3405 -Biological Process GO:0045103 intermediate filament-based process 0.07636412844916973 0.3408925187788798 1.0 3406 -Phenotype MP:0001053 abnormal neuromuscular synapse morphology 0.07632560173641068 0.3401942293969317 1.0 3407 -Biological Process GO:2001185 regulation of CD8-positive, alpha-beta T cell activation 0.07631026068820435 0.33991617579974504 1.0 3408 -Biological Process GO:0032660 regulation of interleukin-17 production 0.07628849838337037 0.33952173814067677 1.0 3409 -Phenotype MP:0002729 abnormal inner ear canal morphology 0.07628439344011562 0.3394473368205791 1.0 3410 -Phenotype MP:0010836 decreased CD4-positive, alpha-beta memory T cell number 0.0762808346689644 0.3393828347665571 1.0 3411 -Biological Process GO:0001763 morphogenesis of a branching structure 0.07627646926155618 0.3393037125829412 1.0 3412 -Phenotype MP:0010195 abnormal lymphatic vessel endothelium morphology 0.07624952939696406 0.3388154326325222 1.0 3413 -Biological Process GO:0016050 vesicle organization 0.07622136278955416 0.33830491820055303 1.0 3414 -Phenotype MP:0011705 absent fibroblast proliferation 0.0761548029948994 0.3370985345113261 1.0 3415 -Phenotype MP:0003769 abnormal lip morphology 0.07615301514117234 0.33706613000067154 1.0 3416 -Phenotype MP:0008225 abnormal anterior commissure morphology 0.07614242092004175 0.3368741117464341 1.0 3417 -Phenotype MP:0008220 abnormal ventral commissure morphology 0.07614242092004175 0.3368741117464341 1.0 3417 -Phenotype MP:0003972 decreased pituitary hormone level 0.07612729962764675 0.3366000411817639 1.0 3419 -Biological Process GO:0048638 regulation of developmental growth 0.07612626844906112 0.3365813512649329 1.0 3420 -Phenotype MP:0002231 abnormal primitive streak morphology 0.07606330864558175 0.3354402167348699 1.0 3421 -Biological Process GO:0090596 sensory organ morphogenesis 0.07606022052799655 0.335384245187714 1.0 3422 -Phenotype MP:0003409 decreased width of hypertrophic chondrocyte zone 0.0760540581733733 0.3352725536756941 1.0 3423 -Phenotype MP:0005277 abnormal brainstem morphology 0.07605094519411337 0.3352161315153862 1.0 3424 -Phenotype MP:0011060 abnormal kinocilium morphology 0.07602431172435387 0.3347334049133579 1.0 3425 -Phenotype MP:0001953 respiratory failure 0.07601208199187814 0.33451174332532496 1.0 3426 -Biological Process GO:0007632 visual behavior 0.07599643018392399 0.334228057266485 1.0 3427 -Phenotype MP:0008961 abnormal basal metabolism 0.07599005688803051 0.3341125424838389 1.0 3428 -Biological Process GO:0022409 positive regulation of cell-cell adhesion 0.07596623792726609 0.33368082832502005 1.0 3429 -Phenotype MP:0008263 abnormal hippocampus CA1 region morphology 0.07595956116136138 0.3335598132058177 1.0 3430 -Phenotype MP:0003926 decreased cellular glucose uptake 0.07595755860466413 0.3335235172444368 1.0 3431 -Phenotype MP:0003026 decreased vasoconstriction 0.07593662824330183 0.3331441584034416 1.0 3432 -Phenotype MP:0008317 abnormal paravertebral ganglion morphology 0.0759280828586606 0.33298927492306385 1.0 3433 -Biological Process GO:0001840 neural plate development 0.07592565684580876 0.33294530389897214 1.0 3434 -Biological Process GO:0003229 ventricular cardiac muscle tissue development 0.07592031653271503 0.33284851173419655 1.0 3435 -Biological Process GO:0001822 kidney development 0.07590123656469772 0.3325026909226023 1.0 3436 -Biological Process GO:0001569 branching involved in blood vessel morphogenesis 0.07587970979820224 0.3321125223513704 1.0 3437 -Phenotype MP:0000585 kinked tail 0.0758657575646553 0.3318596407572095 1.0 3438 -Biological Process GO:0045776 negative regulation of blood pressure 0.07585452649259161 0.3316560797002614 1.0 3439 -Biological Process GO:0001782 B cell homeostasis 0.07584099649863096 0.33141085111874113 1.0 3440 -Biological Process GO:0007051 spindle organization 0.07581418798655004 0.3309249519077441 1.0 3441 -Phenotype MP:0008226 decreased anterior commissure size 0.07580845967405847 0.3308211273272677 1.0 3442 -Phenotype MP:0001468 abnormal temporal memory 0.07580780824814981 0.33080932035588173 1.0 3443 -Biological Process GO:0046620 regulation of organ growth 0.07580333002758577 0.3307281534551537 1.0 3444 -Phenotype MP:0002276 abnormal lung interstitium morphology 0.07578997436015411 0.33048608450899986 1.0 3445 -Phenotype MP:0010595 abnormal aortic valve cusp morphology 0.07578239619952465 0.3303487317808981 1.0 3446 -Biological Process GO:0042752 regulation of circadian rhythm 0.07576118145323874 0.32996421851694996 1.0 3447 -Phenotype MP:0001726 abnormal allantois morphology 0.07572615477788514 0.32932936665099083 1.0 3448 -Biological Process GO:1905476 negative regulation of protein localization to membrane 0.07572022188184013 0.32922183403230265 1.0 3449 -Biological Process GO:0045920 negative regulation of exocytosis 0.0757097327619295 0.32903172071779835 1.0 3450 -Biological Process GO:0043567 regulation of insulin-like growth factor receptor signaling pathway 0.07569480579068433 0.3287611721872157 1.0 3451 -Phenotype MP:0031358 decreased urine output 0.0756907523910042 0.3286877050846595 1.0 3452 -Phenotype MP:0005643 decreased dopamine level 0.07563886976493728 0.32774734230009783 1.0 3453 -Phenotype MP:0011019 abnormal adaptive thermogenesis 0.07561098278034772 0.32724189597886044 1.0 3454 -Biological Process GO:0032692 negative regulation of interleukin-1 production 0.07560273182591848 0.32709234899038747 1.0 3455 -Phenotype MP:0008656 abnormal interleukin-1 beta secretion 0.07559946660152816 0.32703316741588634 1.0 3456 -Biological Process GO:0045862 positive regulation of proteolysis 0.07558201283625454 0.326716821221447 1.0 3457 -Phenotype MP:0003204 decreased neuron apoptosis 0.07556156225964594 0.32634615838836784 1.0 3458 -Phenotype MP:0006344 small second pharyngeal arch 0.0755493020814283 0.32612394497702085 1.0 3459 -Phenotype MP:0000681 abnormal thyroid gland morphology 0.07554565181613049 0.32605778460889673 1.0 3460 -Biological Process GO:0010874 regulation of cholesterol efflux 0.07553630836919423 0.3258884364003644 1.0 3461 -Biological Process GO:0060627 regulation of vesicle-mediated transport 0.07551311311821085 0.3254680268633606 1.0 3462 -Phenotype MP:0009543 abnormal thymus corticomedullary boundary morphology 0.07547325593083376 0.3247456228806021 1.0 3463 -Phenotype MP:0014060 abnormal platelet alpha-granule morphology 0.07541474593341502 0.32368514024376693 1.0 3464 -Phenotype MP:0010185 abnormal T follicular helper cell number 0.0754073860801533 0.3235517442954155 1.0 3465 -Phenotype MP:0010184 abnormal T follicular helper cell morphology 0.0754073860801533 0.3235517442954155 1.0 3465 -Phenotype MP:0004302 abnormal Deiters cell morphology 0.07539405006305966 0.3233100315079217 1.0 3467 -Phenotype MP:0010224 abnormal heart ventricle outflow tract morphology 0.075377750681344 0.3230146082971344 1.0 3468 -Phenotype MP:0000859 abnormal somatosensory cortex morphology 0.07537363859464652 0.32294007750348847 1.0 3469 -Phenotype MP:0001807 decreased IgA level 0.07536963490785653 0.32286751143766346 1.0 3470 -Biological Process GO:0060439 trachea morphogenesis 0.07536592223809435 0.3228002200004255 1.0 3471 -Phenotype MP:0003336 pancreas cyst 0.07534780554484632 0.32247185836183406 1.0 3472 -Biological Process GO:0045165 cell fate commitment 0.0753301376213984 0.32215163059099056 1.0 3473 -Biological Process GO:0051797 regulation of hair follicle development 0.0753275340446905 0.32210444125559157 1.0 3474 -Biological Process GO:0043616 keratinocyte proliferation 0.07532043333315919 0.3219757422020906 1.0 3475 -Phenotype MP:0001224 abnormal keratinocyte apoptosis 0.07530973223401394 0.321781786804052 1.0 3476 -Phenotype MP:0020179 abnormal IgG3 level 0.07530670778317616 0.32172696920465155 1.0 3477 -Phenotype MP:0020997 abnormal subcutaneous adipose tissue amount 0.07524441422245509 0.3205979101985718 1.0 3478 -Phenotype MP:0010802 abnormal intestinal enteroendocrine cell morphology 0.07523659871584121 0.32045625561939317 1.0 3479 -Phenotype MP:0020344 abnormal susceptibility to injury induced morbidity/mortality 0.07522830737729103 0.3203059766763664 1.0 3480 -Biological Process GO:0055117 regulation of cardiac muscle contraction 0.07520088522213275 0.3198089553006547 1.0 3481 -Phenotype MP:0003892 abnormal gastric gland morphology 0.07517412282240854 0.3193238918674015 1.0 3482 -Biological Process GO:0099105 ion channel modulating, G protein-coupled receptor signaling pathway 0.07516064981769577 0.31907969620522025 1.0 3483 -Phenotype MP:0006032 abnormal ureteric bud morphology 0.07516003054437992 0.31906847199349775 1.0 3484 -Phenotype MP:0008527 embryonic lethality at implantation 0.07515288891889815 0.31893903138238316 1.0 3485 -Biological Process GO:0003044 regulation of systemic arterial blood pressure mediated by a chemical signal 0.07513649711040427 0.31864193295372173 1.0 3486 -Biological Process GO:0008038 neuron recognition 0.07513039706041957 0.3185313707014916 1.0 3487 -Phenotype MP:0004566 myocardial fiber degeneration 0.07512621292352673 0.31845553401168203 1.0 3488 -Phenotype MP:0030611 abnormal tooth number 0.07510879884191157 0.31813990707604684 1.0 3489 -Biological Process GO:0002708 positive regulation of lymphocyte mediated immunity 0.07509399522734583 0.3178715943619475 1.0 3490 -Biological Process GO:1903318 negative regulation of protein maturation 0.0750925488671329 0.3178453793566477 1.0 3491 -Biological Process GO:0010955 negative regulation of protein processing 0.0750925488671329 0.3178453793566477 1.0 3491 -Phenotype MP:0031616 increased muscle glycogen level 0.0750911459875312 0.3178199524292026 1.0 3493 -Biological Process GO:0032835 glomerulus development 0.07508924188080901 0.3177854408549992 1.0 3494 -Phenotype MP:0003974 abnormal endocardium morphology 0.07508346658849219 0.3176807647740757 1.0 3495 -Phenotype MP:0030005 increased retina apoptosis 0.07507108891316416 0.31745642174982613 1.0 3496 -Biological Process GO:0046824 positive regulation of nucleocytoplasmic transport 0.07506781965705178 0.3173971671011251 1.0 3497 -Biological Process GO:0034219 carbohydrate transmembrane transport 0.0750600265957071 0.31725591933820546 1.0 3498 -Phenotype MP:0011156 abnormal hypodermis fat layer morphology 0.07503457064392782 0.3167945350268572 1.0 3499 -Phenotype MP:0005605 increased bone mass 0.07502504995711978 0.31662197437917144 1.0 3500 -Phenotype MP:0020185 abnormal susceptibility to viral infection 0.07496343964885832 0.3155052991946941 1.0 3501 -Biological Process GO:0046605 regulation of centrosome cycle 0.07494989832066956 0.31525986518243304 1.0 3502 -Phenotype MP:0001051 abnormal somatic motor system morphology 0.07493967906658139 0.31507464313491945 1.0 3503 -Phenotype MP:0004954 abnormal thymus weight 0.0749374283176798 0.31503384873677703 1.0 3504 -Phenotype MP:0008659 abnormal interleukin-10 secretion 0.07493247920672486 0.3149441470367765 1.0 3505 -Phenotype MP:0001082 abnormal geniculate ganglion morphology 0.07492981286633327 0.31489582012148143 1.0 3506 -Biological Process GO:0050886 endocrine process 0.07492568209708139 0.31482095071007066 1.0 3507 -Biological Process GO:0099633 protein localization to postsynaptic specialization membrane 0.07491865266942332 0.31469354366328994 1.0 3508 -Biological Process GO:0099645 neurotransmitter receptor localization to postsynaptic specialization membrane 0.07491865266942332 0.31469354366328994 1.0 3508 -Phenotype MP:0009580 increased keratinocyte apoptosis 0.07487962774375911 0.3139862242666662 1.0 3510 -Biological Process GO:0141187 nucleic acid biosynthetic process 0.07484810968167654 0.3134149653526374 1.0 3511 -Biological Process GO:0010631 epithelial cell migration 0.07481978759698071 0.3129016329242671 1.0 3512 -Biological Process GO:2001235 positive regulation of apoptotic signaling pathway 0.07481067046049072 0.3127363865497699 1.0 3513 -Phenotype MP:0012523 abnormal upper lip morphology 0.07480168082751915 0.31257345115242824 1.0 3514 -Phenotype MP:0013024 abnormal Ly6C low monocyte number 0.07478530242781967 0.3122765957556293 1.0 3515 -Biological Process GO:1904862 inhibitory synapse assembly 0.0747616083734246 0.31184714550113074 1.0 3516 -Phenotype MP:0020362 abnormal male germ cell physiology 0.07472754771612433 0.3112298025296788 1.0 3517 -Biological Process GO:0106030 neuron projection fasciculation 0.0747229997604294 0.3111473716928928 1.0 3518 -Biological Process GO:0007413 axonal fasciculation 0.0747229997604294 0.3111473716928928 1.0 3518 -Phenotype MP:0009377 ectopic manchette 0.07466670022801591 0.31012695331619816 1.0 3520 -Biological Process GO:0050878 regulation of body fluid levels 0.07464387957491858 0.3097133332950288 1.0 3521 -Biological Process GO:0036342 post-anal tail morphogenesis 0.07459965814183123 0.30891182818421015 1.0 3522 -Biological Process GO:0010996 response to auditory stimulus 0.07459436336382241 0.3088158613342365 1.0 3523 -Phenotype MP:0004858 abnormal nervous system regeneration 0.0745761473216171 0.3084856990145848 1.0 3524 -Phenotype MP:0004320 split sternum 0.07456973527817057 0.30836948193986813 1.0 3525 -Phenotype MP:0005269 abnormal occipital bone morphology 0.07455513071613651 0.3081047770152574 1.0 3526 -Biological Process GO:0090630 activation of GTPase activity 0.07455158612601065 0.30804053198963777 1.0 3527 -Phenotype MP:0001196 shiny skin 0.07453563057892831 0.3077513407165477 1.0 3528 -Biological Process GO:0007219 Notch signaling pathway 0.07453190048480729 0.30768373346610134 1.0 3529 -Biological Process GO:0009205 purine ribonucleoside triphosphate metabolic process 0.07452325440127594 0.3075270248373861 1.0 3530 -Biological Process GO:0009199 ribonucleoside triphosphate metabolic process 0.07452325440127594 0.3075270248373861 1.0 3530 -Biological Process GO:0048169 regulation of long-term neuronal synaptic plasticity 0.07452319479255398 0.3075259444405748 1.0 3532 -Phenotype MP:0000486 abnormal pulmonary trunk morphology 0.07452164415153617 0.30749783936540986 1.0 3533 -Phenotype MP:0001851 eye inflammation 0.07451819477015564 0.30743531998029194 1.0 3534 -Phenotype MP:0011956 abnormal compensatory feeding amount 0.07450553258980586 0.30720582035633326 1.0 3535 -Biological Process GO:0014823 response to activity 0.07448058703996852 0.30675368698364686 1.0 3536 -Phenotype MP:0010985 abnormal kidney mesenchyme morphology 0.07447912403273005 0.3067271702541578 1.0 3537 -Phenotype MP:0009538 abnormal synapse morphology 0.07445151251257742 0.30622671667373935 1.0 3538 -Phenotype MP:0008192 abnormal germinal center B cell physiology 0.07442883804290745 0.30581574619954227 1.0 3539 -Phenotype MP:0008097 increased plasma cell number 0.07440892655337639 0.30545485421778235 1.0 3540 -Phenotype MP:0000603 pale liver 0.07439317206620055 0.3051693071174698 1.0 3541 -Phenotype MP:0005262 coloboma 0.07438958172929411 0.30510423294010447 1.0 3542 -Biological Process GO:0019724 B cell mediated immunity 0.07434805526004595 0.30435157353915515 1.0 3543 -Biological Process GO:0034698 response to gonadotropin 0.07433484663646273 0.3041121697349427 1.0 3544 -Phenotype MP:0014070 abnormal cardiac muscle glycogen level 0.07432639728385837 0.30395902681707027 1.0 3545 -Phenotype MP:0020159 abnormal behavioral response to morphine 0.07429382933792439 0.30336873895680605 1.0 3546 -Phenotype MP:0010572 persistent right dorsal aorta 0.07423767832247163 0.3023510124219347 1.0 3547 -Phenotype MP:0004181 abnormal carotid artery morphology 0.0742250514118632 0.30212215205536713 1.0 3548 -Biological Process GO:0040029 epigenetic regulation of gene expression 0.07419841039317765 0.30163928863048217 1.0 3549 -Biological Process GO:0060711 labyrinthine layer development 0.07418153318215559 0.30133339237280493 1.0 3550 -Phenotype MP:0009419 skeletal muscle fibrosis 0.07417983828903574 0.3013026727555739 1.0 3551 -Biological Process GO:0071417 cellular response to organonitrogen compound 0.07417200282534386 0.3011606564581313 1.0 3552 -Phenotype MP:0001786 skin edema 0.07417187275403747 0.30115829894030416 1.0 3553 -Phenotype MP:0020171 abnormal IgA level 0.0741689968248217 0.3011061732672116 1.0 3554 -Biological Process GO:0043254 regulation of protein-containing complex assembly 0.07416409282397685 0.30101728917942455 1.0 3555 -Phenotype MP:0008682 decreased interleukin-17 secretion 0.07413750323578194 0.3005353579224551 1.0 3556 -Phenotype MP:0008280 abnormal male germ cell apoptosis 0.07412605015366502 0.30032777297528246 1.0 3557 -Phenotype MP:0000909 abnormal facial motor nucleus morphology 0.07409593064358955 0.29978186255186495 1.0 3558 -Biological Process GO:0035967 cellular response to topologically incorrect protein 0.0740787310708082 0.299470123548271 1.0 3559 -Phenotype MP:0010165 abnormal response to stress-induced hyperthermia 0.07406932848483627 0.29929970345590257 1.0 3560 -Biological Process GO:0030183 B cell differentiation 0.07406634473194607 0.29924562349910433 1.0 3561 -Biological Process GO:0098586 cellular response to virus 0.07406622677554175 0.29924348556158603 1.0 3562 -Phenotype MP:0003351 decreased circulating levels of thyroid hormone 0.0740542411824392 0.299026248953516 1.0 3563 -Phenotype MP:0020150 abnormal timing of vaginal opening 0.0740321118453684 0.2986251589045744 1.0 3564 -Biological Process GO:0120033 negative regulation of plasma membrane bounded cell projection assembly 0.07401859441464453 0.2983801580293447 1.0 3565 -Phenotype MP:0001008 abnormal sympathetic ganglion morphology 0.07399412842185094 0.2979367165373744 1.0 3566 -Biological Process GO:0030518 intracellular steroid hormone receptor signaling pathway 0.0739654034352234 0.2974160815876954 1.0 3567 -Biological Process GO:0043401 steroid hormone mediated signaling pathway 0.0739654034352234 0.2974160815876954 1.0 3567 -Biological Process GO:0141193 nuclear receptor signaling pathway 0.0739654034352234 0.2974160815876954 1.0 3567 -Phenotype MP:0011894 decreased circulating transferrin level 0.07396261522301417 0.29736554576875607 1.0 3570 -Phenotype MP:0010816 decreased type I pneumocyte number 0.07395383069596506 0.29720632787746615 1.0 3571 -Biological Process GO:1903901 negative regulation of viral life cycle 0.0739234854012607 0.2966563251503542 1.0 3572 -Phenotype MP:0011307 kidney medulla cyst 0.07388190628183977 0.2959027114749814 1.0 3573 -Biological Process GO:0051968 positive regulation of synaptic transmission, glutamatergic 0.07386778218995871 0.29564671498101924 1.0 3574 -Phenotype MP:0005120 decreased circulating growth hormone level 0.07386519474660536 0.2955998180596198 1.0 3575 -Phenotype MP:0005281 increased fatty acids level 0.07386460999584854 0.2955892195627503 1.0 3576 -Phenotype MP:0001236 abnormal epidermis stratum spinosum morphology 0.07385759825502247 0.29546213308645436 1.0 3577 -Biological Process GO:0051348 negative regulation of transferase activity 0.07385569803681358 0.29542769199081886 1.0 3578 -Phenotype MP:0005058 abnormal lysosome morphology 0.07384892414225663 0.29530491643316537 1.0 3579 -Phenotype MP:0008148 abnormal sternocostal joint morphology 0.07384449949949068 0.29522472061989413 1.0 3580 -Phenotype MP:0000693 spleen hyperplasia 0.07382030420821584 0.29478618554175173 1.0 3581 -Phenotype MP:0009137 decreased brown fat lipid droplet number 0.07381645789327496 0.294716471810927 1.0 3582 -Phenotype MP:0005336 abnormal inguinal fat pad morphology 0.07379984746134971 0.29441541087392187 1.0 3583 -Biological Process GO:1903708 positive regulation of hemopoiesis 0.07378189969253646 0.29409011095876086 1.0 3584 -Biological Process GO:1902107 positive regulation of leukocyte differentiation 0.07378189969253646 0.29409011095876086 1.0 3584 -Phenotype MP:0001239 abnormal epidermis stratum granulosum morphology 0.0737811756642468 0.2940769880829511 1.0 3586 -Biological Process GO:0034694 response to prostaglandin 0.07377879884395822 0.2940339086647641 1.0 3587 -Phenotype MP:0000951 sporadic seizures 0.07374696130808367 0.2934568593486799 1.0 3588 -Phenotype MP:0010760 abnormal macrophage chemotaxis 0.07368394226311858 0.292314651077893 1.0 3589 -Biological Process GO:0018205 peptidyl-lysine modification 0.07356285856646028 0.2901200319773148 1.0 3590 -Phenotype MP:0010593 thick aortic valve cusps 0.07354774969273448 0.289846186498675 1.0 3591 -Phenotype MP:0011939 increased food intake 0.07353875909466911 0.2896832336091911 1.0 3592 -Phenotype MP:0004408 decreased cochlear hair cell number 0.0734732011388387 0.28849500805917105 1.0 3593 -Phenotype MP:0021155 abnormal heart left ventricle wall thickness 0.0734504449823814 0.28808255702740354 1.0 3594 -Phenotype MP:0000314 schistocytosis 0.07342788377062692 0.28767363933150353 1.0 3595 -Phenotype MP:0001279 wavy vibrissae 0.07340783705948617 0.28731029648364337 1.0 3596 -Phenotype MP:0004297 abnormal proprioceptive neuron morphology 0.07339689081233147 0.28711189782429997 1.0 3597 -Phenotype MP:0001499 abnormal kindling response 0.07337453783682113 0.28670675437093984 1.0 3598 -Biological Process GO:0045740 positive regulation of DNA replication 0.07333914082421855 0.28606519021238724 1.0 3599 -Phenotype MP:0012725 small sebaceous gland 0.0733365575127487 0.28601836818059484 1.0 3600 -Phenotype MP:0010837 abnormal CD8-positive, alpha-beta memory T cell morphology 0.07333383289395434 0.2859689849802721 1.0 3601 -Phenotype MP:0012774 abnormal CD8-positive, alpha-beta memory T cell number 0.07333383289395434 0.2859689849802721 1.0 3601 -Biological Process GO:0090316 positive regulation of intracellular protein transport 0.07326689295334576 0.2847557112175316 1.0 3603 -Biological Process GO:0071356 cellular response to tumor necrosis factor 0.07325742613357977 0.28458412689979473 1.0 3604 -Phenotype MP:0008704 abnormal interleukin-6 secretion 0.07323519568140024 0.284181204158632 1.0 3605 -Phenotype MP:0001762 polyuria 0.07323098658889815 0.2841049151531248 1.0 3606 -Biological Process GO:2000095 regulation of Wnt signaling pathway, planar cell polarity pathway 0.07322111510960694 0.2839259964580292 1.0 3607 -Biological Process GO:0021675 nerve development 0.07320252755079759 0.2835891004701967 1.0 3608 -Phenotype MP:0008670 decreased interleukin-12b secretion 0.07319221296068046 0.28340215047518974 1.0 3609 -Phenotype MP:0006345 absent second pharyngeal arch 0.07319012585513307 0.2833643220818913 1.0 3610 -Phenotype MP:0008165 abnormal B-1b B cell morphology 0.07317700614162648 0.2831265297560017 1.0 3611 -Phenotype MP:0006274 abnormal urine sodium level 0.07315348627543328 0.2827002366297165 1.0 3612 -Biological Process GO:0070417 cellular response to cold 0.07314946189604232 0.28262729551441274 1.0 3613 -Phenotype MP:0020937 increased susceptibility to Picornaviridae infection 0.07313327493921096 0.28233390998338953 1.0 3614 -Biological Process GO:0021932 hindbrain radial glia guided cell migration 0.07311011660274636 0.28191416951505666 1.0 3615 -Phenotype MP:0013375 abnormal sebocyte morphology 0.07310175100094862 0.2817625445647139 1.0 3616 -Biological Process GO:0061029 eyelid development in camera-type eye 0.07308487227225136 0.2814566207994606 1.0 3617 -Phenotype MP:0008431 abnormal short-term spatial reference memory 0.07308384243363664 0.28143795516934894 1.0 3618 -Phenotype MP:0003874 absent pharyngeal arches 0.07307133044657554 0.28121117777034077 1.0 3619 -Biological Process GO:0050858 negative regulation of antigen receptor-mediated signaling pathway 0.07304610747379303 0.280754016159244 1.0 3620 -Biological Process GO:1990806 ligand-gated ion channel signaling pathway 0.07304085146256456 0.28065875194983186 1.0 3621 -Biological Process GO:0022407 regulation of cell-cell adhesion 0.0730404871535657 0.2806521489181317 1.0 3622 -Phenotype MP:0000049 abnormal middle ear morphology 0.07301604569586018 0.2802091521199922 1.0 3623 -Phenotype MP:0010849 abnormal effector memory CD8-positive, alpha-beta T cell number 0.07300422962503883 0.27999498807120626 1.0 3624 -Biological Process GO:0090504 epiboly 0.07298508238178747 0.27964794790871905 1.0 3625 -Biological Process GO:0044319 wound healing, spreading of cells 0.07298508238178747 0.27964794790871905 1.0 3625 -Biological Process GO:0090505 epiboly involved in wound healing 0.07298508238178747 0.27964794790871905 1.0 3625 -Phenotype MP:0006071 abnormal retina progenitor cell morphology 0.0729778096294843 0.2795161306487675 1.0 3628 -Biological Process GO:0030036 actin cytoskeleton organization 0.07294410341620172 0.2789052119080979 1.0 3629 -Phenotype MP:0000008 increased white adipose tissue amount 0.07289580335494517 0.27802978243313015 1.0 3630 -Biological Process GO:0008542 visual learning 0.07289089937494486 0.27794089872314653 1.0 3631 -Biological Process GO:0001890 placenta development 0.0728843547383986 0.27782227842357565 1.0 3632 -Phenotype MP:0002623 abnormal vestibular hair cell morphology 0.07285828711969555 0.2773498077649225 1.0 3633 -Biological Process GO:0050766 positive regulation of phagocytosis 0.07284198115488405 0.27705426523676807 1.0 3634 -Phenotype MP:0020850 abnormal microtubule cytoskeleton morphology 0.07283936616262288 0.27700686899662497 1.0 3635 -Phenotype MP:0008277 abnormal sternum ossification 0.0728263989900394 0.27677184144611583 1.0 3636 -Phenotype MP:0004876 decreased mean systemic arterial blood pressure 0.07282577176180327 0.2767604730529678 1.0 3637 -Biological Process GO:1903557 positive regulation of tumor necrosis factor superfamily cytokine production 0.0728091470764951 0.2764591537760931 1.0 3638 -Phenotype MP:0002079 increased circulating insulin level 0.07280585409168816 0.27639946904929097 1.0 3639 -Biological Process GO:0051703 biological process involved in intraspecies interaction between organisms 0.07280282399276505 0.27634454907941214 1.0 3640 -Biological Process GO:0035176 social behavior 0.07280282399276505 0.27634454907941214 1.0 3640 -Phenotype MP:0003792 abnormal major salivary gland morphology 0.07279243684239645 0.276156283943571 1.0 3642 -Phenotype MP:0008807 increased liver iron level 0.07278491565273815 0.27601996380354626 1.0 3643 -Biological Process GO:0060576 intestinal epithelial cell development 0.07277348750750434 0.2758128308326636 1.0 3644 -Biological Process GO:0023019 signal transduction involved in regulation of gene expression 0.072754970706285 0.27547721731276714 1.0 3645 -Biological Process GO:0015749 monosaccharide transmembrane transport 0.0727291110388284 0.27500851573112467 1.0 3646 -Biological Process GO:0060317 cardiac epithelial to mesenchymal transition 0.07264577249964055 0.27349802047070937 1.0 3647 -Phenotype MP:0011276 increased tail pigmentation 0.07264029634477209 0.2733987661994597 1.0 3648 -Biological Process GO:0042116 macrophage activation 0.07263978632698709 0.2733895222235695 1.0 3649 -Phenotype MP:0004721 abnormal platelet dense granule morphology 0.07258144680285938 0.27233212938289164 1.0 3650 -Biological Process GO:0051938 L-glutamate import 0.0725736488681108 0.272190793290448 1.0 3651 -Phenotype MP:0009883 palatal shelf hypoplasia 0.07256808323270658 0.27208991720141174 1.0 3652 -Biological Process GO:0010718 positive regulation of epithelial to mesenchymal transition 0.07255883486655701 0.2719222923141549 1.0 3653 -Phenotype MP:0009672 abnormal birth weight 0.07255693890579984 0.27188792838402664 1.0 3654 -Biological Process GO:0036503 ERAD pathway 0.07255190139260725 0.271796624410189 1.0 3655 -Biological Process GO:0033146 regulation of intracellular estrogen receptor signaling pathway 0.07250818745957022 0.2710043176417955 1.0 3656 -Biological Process GO:0010658 striated muscle cell apoptotic process 0.07249708855259862 0.2708031520521444 1.0 3657 -Biological Process GO:0042472 inner ear morphogenesis 0.07247669303288362 0.27043348711484844 1.0 3658 -Biological Process GO:0048791 calcium ion-regulated exocytosis of neurotransmitter 0.07246555157290602 0.2702315502600117 1.0 3659 -Phenotype MP:0011501 increased glomerular capsule space 0.07245537459561435 0.27004709447143876 1.0 3660 -Biological Process GO:0008089 anterograde axonal transport 0.07244673444465644 0.26989049336949494 1.0 3661 -Biological Process GO:0048520 positive regulation of behavior 0.07243050640554394 0.2695963632298964 1.0 3662 -Phenotype MP:0001307 fused cornea and lens 0.07239750703422576 0.26899825586614196 1.0 3663 -Phenotype MP:0009113 increased pancreatic beta cell mass 0.0723845177702912 0.26876282791407274 1.0 3664 -Phenotype MP:0030437 abnormal osteoblast proliferation 0.07238081715893441 0.26869575503315174 1.0 3665 -Phenotype MP:0003103 liver degeneration 0.0723629157139406 0.26837129472845667 1.0 3666 -Phenotype MP:0001425 abnormal alcohol consumption 0.07234887976090876 0.26811689573446634 1.0 3667 -Phenotype MP:0008813 decreased common myeloid progenitor cell number 0.07233448667665676 0.26785602380465734 1.0 3668 -Phenotype MP:0004980 increased neuronal precursor cell number 0.07233317270804496 0.2678322083720879 1.0 3669 -Phenotype MP:0009123 abnormal brown fat cell lipid droplet size 0.07231668585526807 0.2675333872837734 1.0 3670 -Biological Process GO:0055013 cardiac muscle cell development 0.07230835346495645 0.26738236428533496 1.0 3671 -Phenotype MP:0003371 decreased circulating estrogen level 0.07230384052059835 0.2673005680224071 1.0 3672 -Phenotype MP:0009364 abnormal mature ovarian follicle morphology 0.07229190038070965 0.2670841552452414 1.0 3673 -Biological Process GO:0072010 glomerular epithelium development 0.07228757057545654 0.2670056783439532 1.0 3674 -Phenotype MP:0010763 abnormal hematopoietic stem cell physiology 0.07228402318689908 0.26694138259729017 1.0 3675 -Phenotype MP:0002904 increased circulating parathyroid hormone level 0.07227811805220818 0.2668343531478945 1.0 3676 -Biological Process GO:0033143 regulation of intracellular steroid hormone receptor signaling pathway 0.07227442643543114 0.2667674432920302 1.0 3677 -Biological Process GO:0032881 regulation of polysaccharide metabolic process 0.07225585487336372 0.26643083724211963 1.0 3678 -Phenotype MP:0003363 decreased circulating gonadotropin level 0.07224635493314313 0.26625865262240744 1.0 3679 -Phenotype MP:0003641 small lung 0.07223206425471251 0.2659996367787422 1.0 3680 -Phenotype MP:0003355 decreased ovulation rate 0.07221785923441892 0.26574217347260953 1.0 3681 -Phenotype MP:0003607 abnormal prostate gland physiology 0.07220706383567455 0.26554650891217224 1.0 3682 -Biological Process GO:0071371 cellular response to gonadotropin stimulus 0.07220227618974773 0.26545973373526754 1.0 3683 -Phenotype MP:0011430 mesangiolysis 0.07219200064084863 0.2652734913549534 1.0 3684 -Phenotype MP:0002780 decreased circulating testosterone level 0.07216937670358337 0.2648634367710341 1.0 3685 -Biological Process GO:0007006 mitochondrial membrane organization 0.07216857582294356 0.2648489209609134 1.0 3686 -Biological Process GO:0090132 epithelium migration 0.07214569271367777 0.2644341689335034 1.0 3687 -Biological Process GO:0002221 pattern recognition receptor signaling pathway 0.07214386086733104 0.26440096706493815 1.0 3688 -Biological Process GO:1902473 regulation of protein localization to synapse 0.07211541345096606 0.26388536302376925 1.0 3689 -Phenotype MP:0005631 decreased lung weight 0.07209602425340744 0.2635339374852254 1.0 3690 -Biological Process GO:0035051 cardiocyte differentiation 0.07208012143116127 0.2632457018398186 1.0 3691 -Phenotype MP:0000228 abnormal thrombopoiesis 0.07207299986091953 0.26311662472613634 1.0 3692 -Biological Process GO:1902993 positive regulation of amyloid precursor protein catabolic process 0.07206410672712849 0.26295543835819035 1.0 3693 -Biological Process GO:0050860 negative regulation of T cell receptor signaling pathway 0.07204220729733657 0.26255851533519464 1.0 3694 -Biological Process GO:0048144 fibroblast proliferation 0.07203965256404188 0.26251221127742186 1.0 3695 -Phenotype MP:0000159 abnormal xiphoid process morphology 0.07202636217290104 0.26227132545169296 1.0 3696 -Biological Process GO:0060048 cardiac muscle contraction 0.07202206620178142 0.2621934617876751 1.0 3697 -Phenotype MP:0004229 abnormal embryonic erythropoiesis 0.07201237289940166 0.2620177725153997 1.0 3698 -Biological Process GO:0097190 apoptotic signaling pathway 0.07201015825001278 0.26197763241409744 1.0 3699 -Biological Process GO:0045859 regulation of protein kinase activity 0.07198771038641993 0.2615707691321888 1.0 3700 -Phenotype MP:0010146 umbilical hernia 0.07197158251608349 0.2612784545327106 1.0 3701 -Phenotype MP:0006046 atrioventricular valve regurgitation 0.07196429570219309 0.2611463824091501 1.0 3702 -Phenotype MP:0009651 abnormal eyelid development 0.07183781716830595 0.25885398290416023 1.0 3703 -Phenotype MP:0001585 hemolytic anemia 0.07179635155708985 0.25810242654353144 1.0 3704 -Phenotype MP:0004499 increased incidence of tumors by chemical induction 0.0717933255301696 0.258047580377934 1.0 3705 -Phenotype MP:0003085 abnormal egg cylinder morphology 0.07174861137420274 0.25723714475811643 1.0 3706 -Phenotype MP:0002450 abnormal lymph organ development 0.0717481601265364 0.25722896597951134 1.0 3707 -Phenotype MP:0008823 abnormal interventricular septum membranous part morphology 0.07173830607305132 0.25705036312385604 1.0 3708 -Phenotype MP:0003135 increased erythroid progenitor cell number 0.07168549624619658 0.25609319500038275 1.0 3709 -Phenotype MP:0004188 delayed embryo turning 0.07166682400983759 0.25575476424797866 1.0 3710 -Phenotype MP:0012064 abnormal astrocyte number 0.07164491041381549 0.25535758446474016 1.0 3711 -Phenotype MP:0000440 domed cranium 0.07164481664062528 0.2553558848434035 1.0 3712 -Phenotype MP:0011425 abnormal kidney interstitium morphology 0.07161361143344525 0.2547902963653109 1.0 3713 -Phenotype MP:0011385 abnormal testosterone level 0.07159358541895544 0.2544273286403347 1.0 3714 -Phenotype MP:0002654 spongiform encephalopathy 0.07159255562135558 0.25440866375360954 1.0 3715 -Phenotype MP:0009167 increased pancreatic islet number 0.07157907810195152 0.25416438626350263 1.0 3716 -Phenotype MP:0013760 abnormal T-helper cell morphology 0.07154434557185763 0.253534865724742 1.0 3717 -Phenotype MP:0001072 abnormal vestibulocochlear nerve morphology 0.0715353462643844 0.25337175497888786 1.0 3718 -Phenotype MP:0020039 increased bone ossification 0.07150250653480827 0.25277654109151393 1.0 3719 -Phenotype MP:0000748 progressive muscle weakness 0.07148594911600425 0.25247644100730426 1.0 3720 -Biological Process GO:2000243 positive regulation of reproductive process 0.07146565179605602 0.2521085559222077 1.0 3721 -Biological Process GO:0008630 intrinsic apoptotic signaling pathway in response to DNA damage 0.07142566824226138 0.2513838615720316 1.0 3722 -Biological Process GO:0086091 regulation of heart rate by cardiac conduction 0.07141337286644944 0.25116101021094533 1.0 3723 -Phenotype MP:0020176 abnormal IgG2a level 0.07139529124133959 0.25083328417572553 1.0 3724 -Phenotype MP:0001105 abnormal PNS glial cell morphology 0.07134482397562802 0.24991857452990843 1.0 3725 -Biological Process GO:0043085 positive regulation of catalytic activity 0.07131435855196777 0.2493663944881917 1.0 3726 -Biological Process GO:0034695 response to prostaglandin E 0.07129258919879944 0.2489718290793962 1.0 3727 -Biological Process GO:0046717 acid secretion 0.07129239573791646 0.24896832263748273 1.0 3728 -Phenotype MP:0001541 abnormal osteoclast physiology 0.07127850457217466 0.2487165478857399 1.0 3729 -Phenotype MP:0030976 impaired sperm penetration of zona pellucida 0.07127511119134755 0.2486550435000609 1.0 3730 -Phenotype MP:0002038 increased carcinoma incidence 0.07127080587968315 0.24857701054043552 1.0 3731 -Biological Process GO:0070230 positive regulation of lymphocyte apoptotic process 0.07126790997249421 0.24852452277035794 1.0 3732 -Phenotype MP:0011750 abnormal seminiferous tubule epithelium morphology 0.07124095158895316 0.24803590716749221 1.0 3733 -Phenotype MP:0002182 abnormal astrocyte morphology 0.07120882284279173 0.24745357972003673 1.0 3734 -Biological Process GO:0006638 neutral lipid metabolic process 0.07117437259511183 0.2468291754966399 1.0 3735 -Phenotype MP:0005440 increased glycogen level 0.07115477538572479 0.24647397978304844 1.0 3736 -Phenotype MP:0001928 abnormal ovulation 0.07114617744972085 0.24631814381916103 1.0 3737 -Biological Process GO:0043409 negative regulation of MAPK cascade 0.07113943317841775 0.24619590517738071 1.0 3738 -Biological Process GO:0060384 innervation 0.07113393145393798 0.24609618746176207 1.0 3739 -Biological Process GO:0035850 epithelial cell differentiation involved in kidney development 0.07111746098622762 0.24579766334967934 1.0 3740 -Biological Process GO:0061384 heart trabecula morphogenesis 0.07110946734907819 0.24565278018823497 1.0 3741 -Phenotype MP:0004185 abnormal adipocyte glucose uptake 0.07109123807266793 0.24532237800112153 1.0 3742 -Phenotype MP:0003303 peritoneal inflammation 0.07104427783663225 0.24447123260487233 1.0 3743 -Phenotype MP:0000292 distended pericardium 0.07103684066974114 0.2443364353616111 1.0 3744 -Phenotype MP:0010897 abnormal bronchiole epithelium morphology 0.07101595740673394 0.2439579301693941 1.0 3745 -Phenotype MP:0004485 increased response of heart to induced stress 0.0710081744948774 0.24381686636402736 1.0 3746 -Biological Process GO:0071514 genomic imprinting 0.0709633371345324 0.2430041976881583 1.0 3747 -Phenotype MP:0011352 proximal convoluted tubule brush border loss 0.07094561800089494 0.24268304174231525 1.0 3748 -Phenotype MP:0008786 abnormal hindgut morphology 0.0709373607837307 0.242533381242955 1.0 3749 -Biological Process GO:0034644 cellular response to UV 0.07093579526339489 0.24250500648296555 1.0 3750 -Phenotype MP:0008556 abnormal tumor necrosis factor secretion 0.07090857205570966 0.2420115909925747 1.0 3751 -Phenotype MP:0008660 increased interleukin-10 secretion 0.07090487453799299 0.2419445741832958 1.0 3752 -Biological Process GO:0043029 T cell homeostasis 0.07089756937158442 0.24181216942381453 1.0 3753 -Biological Process GO:0061383 trabecula morphogenesis 0.0708730508797315 0.2413677763963235 1.0 3754 -Phenotype MP:0000579 abnormal nail morphology 0.07086283555320771 0.24118262553517156 1.0 3755 -Phenotype MP:0002910 abnormal excitatory postsynaptic currents 0.0708477421471555 0.24090906040519006 1.0 3756 -Biological Process GO:0030318 melanocyte differentiation 0.0708470982034125 0.24089738904664157 1.0 3757 -Biological Process GO:0071230 cellular response to amino acid stimulus 0.07082563305854062 0.24050833735568217 1.0 3758 -Phenotype MP:0012362 increased large unstained cell number 0.07082396480067343 0.24047810049736806 1.0 3759 -Phenotype MP:0000484 abnormal pulmonary artery morphology 0.07079945959667666 0.2400339483097565 1.0 3760 -Phenotype MP:0009907 decreased tongue size 0.07078450750901155 0.23976294454881278 1.0 3761 -Phenotype MP:0008866 chromosomal instability 0.07078375466821252 0.23974929945172 1.0 3762 -Phenotype MP:0008854 bleb 0.07076956401762224 0.2394920965937421 1.0 3763 -Phenotype MP:0008810 increased circulating iron level 0.07075509664087232 0.23922987812645952 1.0 3764 -Phenotype MP:0011102 embryonic lethality, incomplete penetrance 0.07074764940057765 0.23909489830466407 1.0 3765 -Biological Process GO:0098773 skin epidermis development 0.07074328282471798 0.23901575494308666 1.0 3766 -Biological Process GO:0010804 negative regulation of tumor necrosis factor-mediated signaling pathway 0.07073642488941889 0.238891456162877 1.0 3767 -Biological Process GO:0060008 Sertoli cell differentiation 0.07071417694075965 0.23848821630132874 1.0 3768 -Biological Process GO:0072384 organelle transport along microtubule 0.07068350986641092 0.23793238137902284 1.0 3769 -Biological Process GO:0033137 negative regulation of peptidyl-serine phosphorylation 0.07066544258753327 0.2376049153665483 1.0 3770 -Biological Process GO:0046007 negative regulation of activated T cell proliferation 0.07064052075800342 0.23715321191994893 1.0 3771 -Phenotype MP:0008561 decreased tumor necrosis factor secretion 0.07062008472863301 0.23678281275281055 1.0 3772 -Phenotype MP:0009938 abnormal hippocampus granule cell morphology 0.07060891532855751 0.2365803694889839 1.0 3773 -Phenotype MP:0000397 abnormal guard hair morphology 0.0706063017817512 0.23653299944743683 1.0 3774 -Biological Process GO:0007140 male meiotic nuclear division 0.0705981664111427 0.2363855473938536 1.0 3775 -Phenotype MP:0009701 abnormal birth body size 0.07057594922642241 0.23598286512288028 1.0 3776 -Biological Process GO:0071285 cellular response to lithium ion 0.07056326211292241 0.23575291359028977 1.0 3777 -Biological Process GO:0033089 positive regulation of T cell differentiation in thymus 0.07056057433617002 0.23570419814500962 1.0 3778 -Phenotype MP:0008915 fused carpal bones 0.07055997948974391 0.2356934166660435 1.0 3779 -Biological Process GO:0003206 cardiac chamber morphogenesis 0.0705285936400416 0.23512455407640082 1.0 3780 -Phenotype MP:0000597 delayed hepatic development 0.07050418700483341 0.23468218842943922 1.0 3781 -Phenotype MP:0012123 abnormal bronchoconstrictive response 0.07047282731171123 0.23411379992286416 1.0 3782 -Phenotype MP:0004963 abnormal blastocoele morphology 0.07046719762458209 0.23401176290842818 1.0 3783 -Phenotype MP:0003333 liver fibrosis 0.07045936073194736 0.23386972071166665 1.0 3784 -Phenotype MP:0014171 increased fatty acid oxidation 0.07041975491666497 0.2331518728005808 1.0 3785 -Phenotype MP:0009019 abnormal metestrus 0.07040820121963465 0.23294246422713275 1.0 3786 -Phenotype MP:0000067 osteopetrosis 0.07040721169354835 0.23292452925397425 1.0 3787 -Biological Process GO:0001656 metanephros development 0.07039483536886593 0.2327002107099207 1.0 3788 -Phenotype MP:0014052 increased male germ cell apoptosis 0.07039326296158577 0.2326717111253675 1.0 3789 -Phenotype MP:0001934 increased litter size 0.07039153015253041 0.23264030428897675 1.0 3790 -Phenotype MP:0011973 abnormal circulating glycerol level 0.07038098341638044 0.23244914669103184 1.0 3791 -Biological Process GO:1904705 regulation of vascular associated smooth muscle cell proliferation 0.0703805983660516 0.23244216772664864 1.0 3792 -Biological Process GO:0044089 positive regulation of cellular component biogenesis 0.07037947924795684 0.23242188392284743 1.0 3793 -Phenotype MP:0001106 abnormal Schwann cell morphology 0.07034969136188951 0.23188198412185523 1.0 3794 -Phenotype MP:0005459 decreased percent body fat/body weight 0.0703449663186968 0.23179634360766577 1.0 3795 -Phenotype MP:0003763 abnormal thymus physiology 0.07030572435023796 0.2310850903514402 1.0 3796 -Phenotype MP:0001195 flaky skin 0.07029048298942142 0.2308088435693389 1.0 3797 -Biological Process GO:1903900 regulation of viral life cycle 0.07028486592334182 0.23070703530903872 1.0 3798 -Phenotype MP:0003845 abnormal decidualization 0.07028474339605728 0.2307048145251808 1.0 3799 -Phenotype MP:0010931 abnormal trabecular bone connectivity density 0.07025922471744184 0.2302422933017909 1.0 3800 -Phenotype MP:0002891 increased insulin sensitivity 0.07024115689828792 0.2299148174969112 1.0 3801 -Biological Process GO:0001655 urogenital system development 0.07021421372878744 0.22942647764565352 1.0 3802 -Phenotype MP:0001556 increased circulating HDL cholesterol level 0.07017286598912986 0.228677057684729 1.0 3803 -Phenotype MP:0005457 abnormal percent body fat/body weight 0.07011892924383034 0.22769946437758554 1.0 3804 -Biological Process GO:0009651 response to salt stress 0.07009458112288325 0.22725815929053927 1.0 3805 -Biological Process GO:0031664 regulation of lipopolysaccharide-mediated signaling pathway 0.07007621035321066 0.22692519256480767 1.0 3806 -Biological Process GO:0055007 cardiac muscle cell differentiation 0.07007241640258544 0.22685642792730035 1.0 3807 -Biological Process GO:0002253 activation of immune response 0.07005636359225254 0.2265654737761898 1.0 3808 -Phenotype MP:0003985 renal fibrosis 0.0700496686002049 0.22644412831159408 1.0 3809 -Biological Process GO:0070986 left/right axis specification 0.07004584467567543 0.22637482040274143 1.0 3810 -Phenotype MP:0004084 abnormal cardiac muscle relaxation 0.07003882151698615 0.2262475269798343 1.0 3811 -Biological Process GO:1902930 regulation of alcohol biosynthetic process 0.07003696128185233 0.22621381056987225 1.0 3812 -Phenotype MP:0001727 abnormal embryo implantation 0.07003066161985916 0.22609963038774245 1.0 3813 -Phenotype MP:0005601 increased angiogenesis 0.07002803510105426 0.22605202523117446 1.0 3814 -Biological Process GO:0008016 regulation of heart contraction 0.07000344103421419 0.22560626242133522 1.0 3815 -Biological Process GO:0055010 ventricular cardiac muscle tissue morphogenesis 0.06998651140003409 0.2252994160038337 1.0 3816 -Phenotype MP:0002679 abnormal corpus luteum morphology 0.06996006622773587 0.22482010225767737 1.0 3817 -Phenotype MP:0006108 abnormal hindbrain development 0.0699332572008089 0.224334193715193 1.0 3818 -Biological Process GO:0032147 activation of protein kinase activity 0.06992324174758702 0.2241526655198348 1.0 3819 -Biological Process GO:0033173 calcineurin-NFAT signaling cascade 0.06991874465362746 0.22407115654238274 1.0 3820 -Biological Process GO:0097720 calcineurin-mediated signaling 0.06991874465362746 0.22407115654238274 1.0 3820 -Biological Process GO:0051851 modulation by host of symbiont process 0.069897583816104 0.22368762036455803 1.0 3822 -Phenotype MP:0013188 abnormal gastrocnemius weight 0.06989620630386828 0.22366265321582346 1.0 3823 -Phenotype MP:0004322 abnormal sternebra morphology 0.06988967202364493 0.22354422062264656 1.0 3824 -Biological Process GO:0060191 regulation of lipase activity 0.06988644361885599 0.2234857063964563 1.0 3825 -Biological Process GO:0007179 transforming growth factor beta receptor signaling pathway 0.06987077721603785 0.22320175580846704 1.0 3826 -Biological Process GO:0002696 positive regulation of leukocyte activation 0.06985227587468334 0.2228664224956967 1.0 3827 -Biological Process GO:0032727 positive regulation of interferon-alpha production 0.06983603569204089 0.2225720722569144 1.0 3828 -Phenotype MP:0030942 abnormal microtubule organizing center morphology 0.0698354603598682 0.2225616444701009 1.0 3829 -Biological Process GO:0045721 negative regulation of gluconeogenesis 0.06981862978507392 0.22225659348523136 1.0 3830 -Biological Process GO:1903169 regulation of calcium ion transmembrane transport 0.06980977643776554 0.2220961282397586 1.0 3831 -Biological Process GO:0021872 forebrain generation of neurons 0.06979980055035095 0.22191531716717433 1.0 3832 -Biological Process GO:0051954 positive regulation of amine transport 0.06979419417575816 0.22181370268805037 1.0 3833 -Phenotype MP:0011499 abnormal glomerular capsule space morphology 0.06978918902741438 0.2217229853209758 1.0 3834 -Biological Process GO:0021612 facial nerve structural organization 0.06978117148771235 0.22157766893028633 1.0 3835 -Phenotype MP:0003721 increased tumor growth/size 0.06975563869486456 0.22111489188910485 1.0 3836 -Phenotype MP:0010181 decreased susceptibility to weight loss 0.06975145290037266 0.2210390251556258 1.0 3837 -Biological Process GO:0050879 multicellular organismal movement 0.06973040545636733 0.22065754421387032 1.0 3838 -Biological Process GO:0007029 endoplasmic reticulum organization 0.06969353754073038 0.21998932021602124 1.0 3839 -Biological Process GO:0048799 animal organ maturation 0.06968602846664429 0.21985321966845134 1.0 3840 -Phenotype MP:0005072 abnormal hair follicle melanin granule morphology 0.06967883292604049 0.21972280185594728 1.0 3841 -Phenotype MP:0008186 increased pro-B cell number 0.06967880799488146 0.2197223499834053 1.0 3842 -Phenotype MP:0004031 insulitis 0.06965751371077422 0.21933639511148914 1.0 3843 -Phenotype MP:0013618 decreased areal bone mineral density 0.06965435587458435 0.21927915992781 1.0 3844 -Phenotype MP:0013680 abnormal germinal center B cell number 0.0696026592904413 0.21834216911793108 1.0 3845 -Phenotype MP:0008176 abnormal germinal center B cell morphology 0.0696026592904413 0.21834216911793108 1.0 3845 -Phenotype MP:0003054 spina bifida 0.06956524066570846 0.21766396362187837 1.0 3847 -Phenotype MP:0003241 loss of cortex neurons 0.06953804613020276 0.21717106780931836 1.0 3848 -Biological Process GO:0008015 blood circulation 0.06949298210084032 0.21635429080037952 1.0 3849 -Phenotype MP:0002855 abnormal cochlear ganglion morphology 0.0694900372763475 0.21630091641342128 1.0 3850 -Phenotype MP:0010418 perimembraneous ventricular septal defect 0.06946828943135874 0.2159067408363125 1.0 3851 -Phenotype MP:0008754 abnormal T cell receptor V(D)J recombination 0.06944095556053997 0.21541131959755658 1.0 3852 -Phenotype MP:0004989 decreased osteoblast cell number 0.06938737093596714 0.21444010841198544 1.0 3853 -Biological Process GO:0001101 response to acid chemical 0.06935756705955032 0.2138999187889331 1.0 3854 -Biological Process GO:0051251 positive regulation of lymphocyte activation 0.06935097226187048 0.2137803893283034 1.0 3855 -Biological Process GO:0010226 response to lithium ion 0.06934107032123005 0.21360091852701452 1.0 3856 -Biological Process GO:0002886 regulation of myeloid leukocyte mediated immunity 0.06932109743575143 0.21323891375531745 1.0 3857 -Biological Process GO:0009615 response to virus 0.06931134328085897 0.2130621215427589 1.0 3858 -Phenotype MP:0020928 increased susceptibility to Poxviridae infection 0.06924025321431893 0.21177362753245102 1.0 3859 -Biological Process GO:0043549 regulation of kinase activity 0.06922353102078038 0.21147054093734305 1.0 3860 -Phenotype MP:0002813 microcytosis 0.06921460701723103 0.21130879506086642 1.0 3861 -Biological Process GO:0009791 post-embryonic development 0.06921038093279719 0.21123219807981006 1.0 3862 -Phenotype MP:0003442 decreased circulating glycerol level 0.06920126618482136 0.2110669949966803 1.0 3863 -Phenotype MP:0011093 embryonic lethality at implantation, complete penetrance 0.06919024047057365 0.21086715601130612 1.0 3864 -Biological Process GO:0042476 odontogenesis 0.06917285291098019 0.21055200978229777 1.0 3865 -Biological Process GO:0021536 diencephalon development 0.06916615003680371 0.21043052145560764 1.0 3866 -Biological Process GO:0039531 regulation of cytoplasmic pattern recognition receptor signaling pathway 0.06911985247532493 0.2095913869103662 1.0 3867 -Phenotype MP:0014274 decreased respiration 0.06909220658551429 0.20909031038639686 1.0 3868 -Phenotype MP:0020927 abnormal susceptibility to Poxviridae infection 0.06908556385839426 0.20896991221372882 1.0 3869 -Biological Process GO:0051926 negative regulation of calcium ion transport 0.06902426648836824 0.2078589089755807 1.0 3870 -Biological Process GO:0010001 glial cell differentiation 0.06901899509562937 0.20776336597920175 1.0 3871 -Biological Process GO:0046503 glycerolipid catabolic process 0.06901058071796728 0.207610856975543 1.0 3872 -Biological Process GO:0048714 positive regulation of oligodendrocyte differentiation 0.06899725275599033 0.20736929018551561 1.0 3873 -Biological Process GO:0010667 negative regulation of cardiac muscle cell apoptotic process 0.0689810746437346 0.20707606496075284 1.0 3874 -Phenotype MP:0013818 abnormal oral cavity morphology 0.0689539564861319 0.20658455348323887 1.0 3875 -Phenotype MP:0003229 abnormal vitelline vasculature morphology 0.06893766696407799 0.20628930897695602 1.0 3876 -Biological Process GO:0035089 establishment of apical/basal cell polarity 0.06890568556428789 0.20570965215461226 1.0 3877 -Phenotype MP:0008444 retina cone cell degeneration 0.06889415625671469 0.20550068563546156 1.0 3878 -Biological Process GO:0070167 regulation of biomineral tissue development 0.0688879318039094 0.2053878686056372 1.0 3879 -Biological Process GO:0030878 thyroid gland development 0.06886464291609284 0.20496576191874227 1.0 3880 -Biological Process GO:0062208 positive regulation of pattern recognition receptor signaling pathway 0.06882978820208507 0.2043340268196521 1.0 3881 -Biological Process GO:0009410 response to xenobiotic stimulus 0.0688027176379653 0.2038433779650146 1.0 3882 -Biological Process GO:2000052 positive regulation of non-canonical Wnt signaling pathway 0.06879771402068002 0.20375268834808583 1.0 3883 -Phenotype MP:0008599 increased circulating interleukin-2 level 0.06879626014203277 0.203726337072586 1.0 3884 -Phenotype MP:0001078 abnormal phrenic nerve morphology 0.06879503733770587 0.20370417397543783 1.0 3885 -Phenotype MP:0010871 abnormal trabecular bone mass 0.06875430397021609 0.20296588939385457 1.0 3886 -Phenotype MP:0010895 increased lung compliance 0.06875364080046587 0.20295386956756137 1.0 3887 -Phenotype MP:0005033 abnormal trophoblast giant cell morphology 0.06873083913987266 0.2025405937819371 1.0 3888 -Phenotype MP:0010896 decreased lung compliance 0.06871949042427417 0.20233490045817143 1.0 3889 -Biological Process GO:0050920 regulation of chemotaxis 0.06870826298613941 0.20213140526549803 1.0 3890 -Biological Process GO:0002252 immune effector process 0.06869635074016667 0.20191549806028325 1.0 3891 -Biological Process GO:0045724 positive regulation of cilium assembly 0.0686746164930967 0.2015215689428807 1.0 3892 -Phenotype MP:0012360 abnormal large unstained cell number 0.0686443715718803 0.20097338546625387 1.0 3893 -Biological Process GO:0002027 regulation of heart rate 0.06858184638190712 0.19984012822378913 1.0 3894 -Phenotype MP:0002971 abnormal brown adipose tissue morphology 0.06857793673394041 0.19976926659384997 1.0 3895 -Phenotype MP:0013968 multiple persisting craniopharyngeal ducts 0.06852234693674397 0.19876171203372736 1.0 3896 -Phenotype MP:0008698 abnormal interleukin-4 secretion 0.06850778862521001 0.19849784539068321 1.0 3897 -Biological Process GO:0003230 cardiac atrium development 0.0684894013657994 0.19816457979156882 1.0 3898 -Phenotype MP:0009674 decreased birth weight 0.06845274337771567 0.19750016069091705 1.0 3899 -Phenotype MP:0006397 disorganized long bone epiphyseal plate 0.06844362600679199 0.19733491006735343 1.0 3900 -Phenotype MP:0000708 thymus hyperplasia 0.06841485967875627 0.19681352581247025 1.0 3901 -Phenotype MP:0008101 lymph node hypoplasia 0.06838818393103563 0.19633003293039275 1.0 3902 -Biological Process GO:0060134 prepulse inhibition 0.0683843585280205 0.196260698224267 1.0 3903 -Phenotype MP:0020950 decreased susceptibility to Coronaviridae infection 0.06836539716857004 0.19591702717051382 1.0 3904 -Phenotype MP:0000272 abnormal aorta morphology 0.0683569796991561 0.19576446212943743 1.0 3905 -Phenotype MP:0001917 intraventricular hemorrhage 0.06835478754791324 0.19572472980277647 1.0 3906 -Phenotype MP:0008466 enlarged mesenteric lymph nodes 0.06834985586874565 0.1956353440506246 1.0 3907 -Biological Process GO:0032525 somite rostral/caudal axis specification 0.06833949358046254 0.19544752953538086 1.0 3908 -Biological Process GO:1901654 response to ketone 0.0683283193386558 0.19524499851609126 1.0 3909 -Phenotype MP:0021115 abnormal aggression towards conspecific 0.06831441892352519 0.19499305612092566 1.0 3910 -Phenotype MP:0020137 decreased bone mineralization 0.0683116548640712 0.19494295806610687 1.0 3911 -Biological Process GO:0048645 animal organ formation 0.06830188734992926 0.1947659237196781 1.0 3912 -Phenotype MP:0005576 decreased pulmonary ventilation 0.06828603812968337 0.19447865960038832 1.0 3913 -Phenotype MP:0011072 abnormal macrophage cytokine production 0.06827939634020364 0.19435827842227338 1.0 3914 -Biological Process GO:0033555 multicellular organismal response to stress 0.0682567073357071 0.1939470445070939 1.0 3915 -Biological Process GO:0050688 regulation of defense response to virus 0.0682547125652293 0.19391088966946785 1.0 3916 -Phenotype MP:0010578 abnormal heart left ventricle size 0.06825121815239577 0.19384755409778118 1.0 3917 -Biological Process GO:0008202 steroid metabolic process 0.06825017197509053 0.19382859233199423 1.0 3918 -Phenotype MP:0002207 abnormal long-term potentiation 0.06824274685620413 0.19369401345653955 1.0 3919 -Phenotype MP:0008488 abnormal semicircular canal ampulla morphology 0.06823022077689234 0.19346698063815285 1.0 3920 -Phenotype MP:0011439 abnormal kidney cell proliferation 0.06822446043652186 0.19336257555842895 1.0 3921 -Phenotype MP:0008396 abnormal osteoclast differentiation 0.06821009322118232 0.19310217249776546 1.0 3922 -Biological Process GO:1902652 secondary alcohol metabolic process 0.06820081970306535 0.19293409173585668 1.0 3923 -Biological Process GO:0006942 regulation of striated muscle contraction 0.06818280406972677 0.19260756178900967 1.0 3924 -Phenotype MP:0008000 increased ovary tumor incidence 0.0681826637033256 0.19260501767453692 1.0 3925 -Phenotype MP:0006412 abnormal T cell apoptosis 0.06818145488769856 0.19258310811992801 1.0 3926 -Biological Process GO:0010765 positive regulation of sodium ion transport 0.06817862942459318 0.19253189713554153 1.0 3927 -Phenotype MP:0003056 abnormal hyoid bone morphology 0.0681743964762358 0.1924551757471692 1.0 3928 -Biological Process GO:0043129 surfactant homeostasis 0.06816338225799357 0.19225554512472004 1.0 3929 -Phenotype MP:0001208 blistering 0.06816310020978023 0.1922504330541989 1.0 3930 -Biological Process GO:0070977 bone maturation 0.06814527840596474 0.19192741623079781 1.0 3931 -Phenotype MP:0005226 abnormal vertebral arch development 0.06813885282252452 0.19181095374625662 1.0 3932 -Phenotype MP:0005566 decreased blood urea nitrogen level 0.06811657298410301 0.19140713588879865 1.0 3933 -Biological Process GO:0007409 axonogenesis 0.06810271798829903 0.19115601671033783 1.0 3934 -Phenotype MP:0010579 increased heart left ventricle size 0.06807790762523935 0.1907063335724278 1.0 3935 -Phenotype MP:0004945 abnormal bone resorption 0.06805642339890405 0.1903169360335531 1.0 3936 -Phenotype MP:0002992 abnormal sebaceous lipid secretion 0.0679972786474381 0.18924494859966737 1.0 3937 -Biological Process GO:0034620 cellular response to unfolded protein 0.06798480600212742 0.1890188842624445 1.0 3938 -Phenotype MP:0002929 abnormal bile duct development 0.06797429246582598 0.18882832840547503 1.0 3939 -Biological Process GO:0010657 muscle cell apoptotic process 0.06796208147082006 0.18860700643053824 1.0 3940 -Phenotype MP:0002016 ovary cyst 0.06795497879929191 0.1884782718524654 1.0 3941 -Phenotype MP:0000164 abnormal cartilage development 0.06792809702249392 0.18799104473232853 1.0 3942 -Phenotype MP:0010898 abnormal pulmonary alveolus epithelium morphology 0.0679203125366643 0.1878499523989977 1.0 3943 -Biological Process GO:0045682 regulation of epidermis development 0.06791152725740834 0.18769072087410085 1.0 3944 -Biological Process GO:0032755 positive regulation of interleukin-6 production 0.06790968770471195 0.1876573793294054 1.0 3945 -Biological Process GO:0003208 cardiac ventricle morphogenesis 0.06789246978206609 0.18734530773798777 1.0 3946 -Phenotype MP:0013508 increased granulosa cell apoptosis 0.06786778357100232 0.18689787483152187 1.0 3947 -Phenotype MP:0008831 abnormal insulin-like growth factor I level 0.06786466748841868 0.1868413964240587 1.0 3948 -Biological Process GO:0055082 intracellular chemical homeostasis 0.06781744202397677 0.1859854438131108 1.0 3949 -Phenotype MP:0003729 abnormal photoreceptor outer segment morphology 0.06781683370345304 0.18597441811867382 1.0 3950 -Biological Process GO:0060973 cell migration involved in heart development 0.06779713127684917 0.18561731536292775 1.0 3951 -Biological Process GO:0045773 positive regulation of axon extension 0.06778606901698658 0.18541681399519622 1.0 3952 -Phenotype MP:0001853 heart inflammation 0.06778210963775155 0.18534505099542464 1.0 3953 -Phenotype MP:0010841 increased central memory CD4-positive, alpha-beta T cell number 0.06777883915115979 0.18528577404451746 1.0 3954 -Phenotype MP:0002993 arthritis 0.06776031544517036 0.1849500353769691 1.0 3955 -Phenotype MP:0002746 abnormal semilunar valve morphology 0.06769340524442524 0.18373730064362892 1.0 3956 -Biological Process GO:0007160 cell-matrix adhesion 0.06767399206277458 0.18338544039795301 1.0 3957 -Phenotype MP:0008803 abnormal placental labyrinth vasculature morphology 0.06767397709961187 0.18338516919345899 1.0 3958 -Biological Process GO:0034612 response to tumor necrosis factor 0.06766456148257549 0.18321451291551202 1.0 3959 -Phenotype MP:0000359 abnormal mast cell morphology 0.06764704687412437 0.18289706394998825 1.0 3960 -Biological Process GO:0061842 microtubule organizing center localization 0.06764448650710497 0.18285065778202064 1.0 3961 -Biological Process GO:0051642 centrosome localization 0.06764448650710497 0.18285065778202064 1.0 3961 -Phenotype MP:0020184 abnormal susceptibility to parasitic infection 0.06764379780628493 0.1828381752099159 1.0 3963 -Phenotype MP:0030968 decreased circulating adiponectin level 0.06763420023111921 0.18266422097528956 1.0 3964 -Phenotype MP:0010287 increased reproductive system tumor incidence 0.06760995965733663 0.18222486516025888 1.0 3965 -Biological Process GO:0001666 response to hypoxia 0.06760052751956802 0.18205390944716499 1.0 3966 -Biological Process GO:0046677 response to antibiotic 0.06759928823841221 0.18203144771060936 1.0 3967 -Biological Process GO:0097028 dendritic cell differentiation 0.06754754990295497 0.18109370016605755 1.0 3968 -Biological Process GO:1901989 positive regulation of cell cycle phase transition 0.06751315101529265 0.18047022683326513 1.0 3969 -Biological Process GO:0036344 platelet morphogenesis 0.06750816150769212 0.18037979295170387 1.0 3970 -Biological Process GO:1903319 positive regulation of protein maturation 0.06749813753907152 0.18019811041635445 1.0 3971 -Biological Process GO:0010954 positive regulation of protein processing 0.06749813753907152 0.18019811041635445 1.0 3971 -Phenotype MP:0014167 ectopic bone 0.0674957511831179 0.18015485816604224 1.0 3973 -Phenotype MP:0004035 abnormal sublingual gland morphology 0.06748009522536724 0.17987109689292546 1.0 3974 -Biological Process GO:0090066 regulation of anatomical structure size 0.06747559895493405 0.1797896028417329 1.0 3975 -Phenotype MP:0010186 increased T follicular helper cell number 0.06747276155232751 0.17973817545614598 1.0 3976 -Phenotype MP:0008093 abnormal memory B cell number 0.06747228799856397 0.17972959238374822 1.0 3977 -Biological Process GO:0051336 regulation of hydrolase activity 0.0674647835363602 0.1795935754256731 1.0 3978 -Phenotype MP:0009698 heart hemorrhage 0.0674573301040402 0.17945848337458958 1.0 3979 -Phenotype MP:0031543 abnormal heart ventricle size 0.06744780488018876 0.17928584049385013 1.0 3980 -Phenotype MP:0001377 abnormal mating frequency 0.06744460364086313 0.1792278186365446 1.0 3981 -Phenotype MP:0001823 thymus hypoplasia 0.06741258482481016 0.1786474836515132 1.0 3982 -Biological Process GO:0007595 lactation 0.067356082724781 0.17762339377509728 1.0 3983 -Phenotype MP:0002909 abnormal adrenal gland physiology 0.0673461552801301 0.17744346071844258 1.0 3984 -Phenotype MP:0002411 decreased susceptibility to bacterial infection 0.06734004077915334 0.17733263654471446 1.0 3985 -Phenotype MP:0003057 abnormal epicardium morphology 0.06733613325176702 0.17726181334989355 1.0 3986 -Phenotype MP:0010460 pulmonary artery hypoplasia 0.06730429618082967 0.17668477246070818 1.0 3987 -Phenotype MP:0011204 abnormal visceral yolk sac blood island morphology 0.06729975073740424 0.1766023871583318 1.0 3988 -Biological Process GO:0072178 nephric duct morphogenesis 0.06729848712100506 0.17657948435009266 1.0 3989 -Biological Process GO:0010623 programmed cell death involved in cell development 0.06729656428032782 0.1765446332264972 1.0 3990 -Phenotype MP:0010448 heart left ventricle outflow tract stenosis 0.06729651898483868 0.1765438122543236 1.0 3991 -Phenotype MP:0006117 aortic valve stenosis 0.06729651898483868 0.1765438122543236 1.0 3991 -Phenotype MP:0003403 absent placental labyrinth 0.06729297990030625 0.17647966701654352 1.0 3993 -Phenotype MP:0005221 abnormal rostral-caudal axis patterning 0.06729076088943797 0.17643944786425209 1.0 3994 -Phenotype MP:0003402 decreased liver weight 0.06727318614853739 0.176120909009455 1.0 3995 -Phenotype MP:0014290 abnormal autopod size 0.06726999696476477 0.17606310565676747 1.0 3996 -Biological Process GO:0007162 negative regulation of cell adhesion 0.06726720438119416 0.1760124906077298 1.0 3997 -Phenotype MP:0003707 increased cell nucleus count 0.06723209369929373 0.17537611613899803 1.0 3998 -Biological Process GO:0002888 positive regulation of myeloid leukocyte mediated immunity 0.0671988446161712 0.17477348279601948 1.0 3999 -Biological Process GO:0031645 negative regulation of nervous system process 0.06719630254429065 0.17472740822398322 1.0 4000 -Biological Process GO:0007274 neuromuscular synaptic transmission 0.0671528787750022 0.17394036061865226 1.0 4001 -Phenotype MP:0003453 abnormal keratinocyte physiology 0.0671497622185735 0.17388387362283672 1.0 4002 -Biological Process GO:0002377 immunoglobulin production 0.06714361265360702 0.17377241392092693 1.0 4003 -Biological Process GO:0072520 seminiferous tubule development 0.06714278216480518 0.1737573614684694 1.0 4004 -Phenotype MP:0002628 hepatic steatosis 0.06713923141653111 0.17369300482757813 1.0 4005 -Phenotype MP:0003149 abnormal tectorial membrane morphology 0.06711882281483272 0.17332310278180757 1.0 4006 -Phenotype MP:0008963 increased carbon dioxide production 0.06711650675713088 0.17328112467401283 1.0 4007 -Biological Process GO:0060742 epithelial cell differentiation involved in prostate gland development 0.06710782762259959 0.17312381700217488 1.0 4008 -Biological Process GO:0001780 neutrophil homeostasis 0.06706723554874128 0.17238809334093808 1.0 4009 -Phenotype MP:0001883 increased mammary adenocarcinoma incidence 0.06705664688146307 0.17219617574922458 1.0 4010 -Phenotype MP:0013506 abnormal ovary apoptosis 0.06701982652555782 0.17152881376251744 1.0 4011 -Phenotype MP:0003871 abnormal myelin sheath morphology 0.0670180954540861 0.17149743841950138 1.0 4012 -Phenotype MP:0011099 lethality throughout fetal growth and development, complete penetrance 0.06700194159052164 0.17120465269768168 1.0 4013 -Biological Process GO:0072176 nephric duct development 0.06700176350513087 0.17120142493365648 1.0 4014 -Phenotype MP:0031449 abnormal nasal cartilage morphology 0.06697135080852967 0.17065020055991248 1.0 4015 -Biological Process GO:0021859 pyramidal neuron differentiation 0.06696454382391348 0.17052682525119361 1.0 4016 -Phenotype MP:0003082 abnormal gastrocnemius morphology 0.06695941008040851 0.1704337771211446 1.0 4017 -Phenotype MP:0003289 abnormal intestinal peristalsis 0.06695302272418246 0.17031800749763013 1.0 4018 -Biological Process GO:0072210 metanephric nephron development 0.06688022814356165 0.16899861949199424 1.0 4019 -Phenotype MP:0002798 abnormal active avoidance behavior 0.06686443034184919 0.16871228732389779 1.0 4020 -Biological Process GO:0033673 negative regulation of kinase activity 0.0668614559208014 0.16865837650497822 1.0 4021 -Biological Process GO:0045649 regulation of macrophage differentiation 0.06685468543974482 0.16853566281637333 1.0 4022 -Biological Process GO:0006837 serotonin transport 0.0668519726380622 0.16848649379896571 1.0 4023 -Phenotype MP:0005272 abnormal temporal bone morphology 0.06684712399628634 0.16839861308383375 1.0 4024 -Phenotype MP:0001781 abnormal white adipose tissue amount 0.06682851331742046 0.16806129804934936 1.0 4025 -Phenotype MP:0010933 decreased trabecular bone connectivity density 0.06681104480726396 0.1677446846066968 1.0 4026 -Phenotype MP:0008406 increased cellular sensitivity to hydrogen peroxide 0.0667943060430427 0.16744129767109878 1.0 4027 -Phenotype MP:0009431 decreased fetal weight 0.06676636953044834 0.1669349536641418 1.0 4028 -Phenotype MP:0000248 macrocytosis 0.06671388752401064 0.16598372722372445 1.0 4029 -Biological Process GO:0010811 positive regulation of cell-substrate adhesion 0.06671141047696094 0.16593883121444883 1.0 4030 -Biological Process GO:0042440 pigment metabolic process 0.06670078102851362 0.16574617447175846 1.0 4031 -Biological Process GO:0060575 intestinal epithelial cell differentiation 0.0666848769623114 0.16545791627988354 1.0 4032 -Biological Process GO:0060669 embryonic placenta morphogenesis 0.06668208607662218 0.16540733200462496 1.0 4033 -Biological Process GO:0070328 triglyceride homeostasis 0.06667352789979641 0.16525221666832204 1.0 4034 -Biological Process GO:0051604 protein maturation 0.06666790952467416 0.16515038468187135 1.0 4035 -Phenotype MP:0014032 abnormal mucous gland morphology 0.06666766890560405 0.1651460235067354 1.0 4036 -Phenotype MP:0008089 abnormal T-helper 2 cell number 0.06665400620443718 0.16489838963220213 1.0 4037 -Phenotype MP:0011827 impaired neuron differentiation 0.06664616557068836 0.16475627962845538 1.0 4038 -Phenotype MP:0006036 abnormal mitochondrial physiology 0.06663395796755378 0.16453501913054508 1.0 4039 -Phenotype MP:0009303 decreased renal fat pad weight 0.06658363291259628 0.16362288702774808 1.0 4040 -Phenotype MP:0004937 dilated heart 0.06658227307104392 0.16359824015680727 1.0 4041 -Biological Process GO:0060415 muscle tissue morphogenesis 0.06658162307640247 0.16358645912686884 1.0 4042 -Phenotype MP:0010839 decreased CD8-positive, alpha-beta memory T cell number 0.06658107797950785 0.16357657934875156 1.0 4043 -Biological Process GO:0036294 cellular response to decreased oxygen levels 0.06656372290627088 0.1632620219288103 1.0 4044 -Biological Process GO:0060020 Bergmann glial cell differentiation 0.06655188681745317 0.16304749505762628 1.0 4045 -Phenotype MP:0005348 increased T cell proliferation 0.0665303068550166 0.16265636232002328 1.0 4046 -Phenotype MP:0020919 increased susceptibility to Ortervirales infection 0.06652573655816951 0.1625735265540801 1.0 4047 -Phenotype MP:0012057 abnormal mural trophectoderm morphology 0.06649720212939514 0.16205634542944822 1.0 4048 -Biological Process GO:0016079 synaptic vesicle exocytosis 0.06649049451615074 0.16193477120804847 1.0 4049 -Phenotype MP:0003980 increased circulating phospholipid level 0.06648369905167917 0.1618116046997719 1.0 4050 -Biological Process GO:1902106 negative regulation of leukocyte differentiation 0.06648205930385953 0.16178188458067724 1.0 4051 -Phenotype MP:0008524 increased plasmacytoid dendritic cell number 0.06645636296684876 0.16131614333247374 1.0 4052 -Phenotype MP:0000853 absent cerebellar foliation 0.06644656078106514 0.1611384805690974 1.0 4053 -Phenotype MP:0012357 abnormal partial thromboplastin time 0.06643076441338702 0.16085217439260205 1.0 4054 -Phenotype MP:0005476 abnormal circulating triiodothyronine level 0.06642712331273104 0.16078618013187762 1.0 4055 -Phenotype MP:0001722 pale yolk sac 0.06642437092850195 0.1607362936883019 1.0 4056 -Biological Process GO:0050931 pigment cell differentiation 0.0664106058979389 0.16048680511281707 1.0 4057 -Biological Process GO:0048588 developmental cell growth 0.06640167842286926 0.16032499631569172 1.0 4058 -Biological Process GO:0008585 female gonad development 0.06639236122170566 0.16015612380682492 1.0 4059 -Biological Process GO:0070482 response to oxygen levels 0.06638262647844795 0.15997968342647464 1.0 4060 -Biological Process GO:1901342 regulation of vasculature development 0.06637759895323048 0.15988856048279682 1.0 4061 -Phenotype MP:0005606 increased bleeding time 0.06634790660831269 0.15935039234706985 1.0 4062 -Biological Process GO:0034329 cell junction assembly 0.06627937870540057 0.15810833706791938 1.0 4063 -Phenotype MP:0011971 increased circulating lactate dehydrogenase level 0.06626278114591533 0.1578075094414546 1.0 4064 -Phenotype MP:0010840 abnormal central memory CD4-positive, alpha-beta T cell morphology 0.06625588835969254 0.15768257899484442 1.0 4065 -Phenotype MP:0012771 abnormal central memory CD4-positive, alpha-beta T cell number 0.06625588835969254 0.15768257899484442 1.0 4065 -Biological Process GO:0043086 negative regulation of catalytic activity 0.06624759363979749 0.15753223876558137 1.0 4067 -Phenotype MP:0008215 decreased immature B cell number 0.06619195280686963 0.15652375919247952 1.0 4068 -Biological Process GO:0044703 multi-organism reproductive process 0.06617294052024147 0.15617916509326274 1.0 4069 -Phenotype MP:0002410 decreased susceptibility to viral infection 0.06615082958258822 0.15577840853028418 1.0 4070 -Biological Process GO:0071637 regulation of monocyte chemotactic protein-1 production 0.06613578813075893 0.15550578506076673 1.0 4071 -Phenotype MP:0003843 abnormal sagittal suture morphology 0.06611948478253715 0.15521028995780614 1.0 4072 -Phenotype MP:0011417 abnormal renal transport 0.06611688313080011 0.15516313551213967 1.0 4073 -Phenotype MP:0011260 abnormal head mesenchyme morphology 0.06610799821098312 0.15500209802091994 1.0 4074 -Biological Process GO:0002634 regulation of germinal center formation 0.06610324841351789 0.15491600884022297 1.0 4075 -Phenotype MP:0001063 abnormal trochlear nerve morphology 0.06607003063390915 0.15431394286751104 1.0 4076 -Phenotype MP:0010867 abnormal bone trabecula morphology 0.06606516310888588 0.15422571989709125 1.0 4077 -Phenotype MP:0008617 increased circulating interleukin-12 level 0.0660570078599092 0.1540779075518446 1.0 4078 -Phenotype MP:0010913 abnormal neuroendocrine cell morphology 0.0660266996524177 0.15352857702345116 1.0 4079 -Biological Process GO:0090179 planar cell polarity pathway involved in neural tube closure 0.066015092743547 0.15331820399546056 1.0 4080 -Biological Process GO:0022612 gland morphogenesis 0.06599134109253857 0.15288770981323827 1.0 4081 -Biological Process GO:0071248 cellular response to metal ion 0.06599098561737338 0.15288126689310252 1.0 4082 -Phenotype MP:0005355 enlarged thyroid gland 0.06595752060888138 0.1522747199436416 1.0 4083 -Phenotype MP:0013716 hypolactation 0.0659061999489754 0.15134454268945863 1.0 4084 -Biological Process GO:0035743 CD4-positive, alpha-beta T cell cytokine production 0.0659059786243682 0.15134053122281377 1.0 4085 -Biological Process GO:0085029 extracellular matrix assembly 0.06590209741325115 0.1512701850053961 1.0 4086 -Phenotype MP:0013702 abnormal megakaryocyte-erythroid progenitor cell morphology 0.06589910672078958 0.15121597927017946 1.0 4087 -Biological Process GO:0060972 left/right pattern formation 0.06587127060798015 0.1507114549903351 1.0 4088 -Biological Process GO:0060736 prostate gland growth 0.06586342465510064 0.15056924857835058 1.0 4089 -Biological Process GO:0032373 positive regulation of sterol transport 0.0658548039049589 0.15041299911253053 1.0 4090 -Biological Process GO:0032376 positive regulation of cholesterol transport 0.0658548039049589 0.15041299911253053 1.0 4090 -Phenotype MP:0004704 short vertebral column 0.06584264349601199 0.1501925940003456 1.0 4092 -Phenotype MP:0001300 ocular hypertelorism 0.0657787356418672 0.14903427623128293 1.0 4093 -Biological Process GO:0032102 negative regulation of response to external stimulus 0.06575351442791533 0.14857714649865877 1.0 4094 -Phenotype MP:0002707 abnormal kidney weight 0.06572617443520656 0.14808161430180455 1.0 4095 -Phenotype MP:0003179 thrombocytopenia 0.0657229901840285 0.1480239003514604 1.0 4096 -Phenotype MP:0002682 decreased mature ovarian follicle number 0.06572038350030118 0.14797665470192203 1.0 4097 -Biological Process GO:0001837 epithelial to mesenchymal transition 0.06569774492152725 0.14756633474342729 1.0 4098 -Biological Process GO:0002260 lymphocyte homeostasis 0.06567235697238805 0.14710618296706862 1.0 4099 -Biological Process GO:0001818 negative regulation of cytokine production 0.06566993821340139 0.14706234341791125 1.0 4100 -Biological Process GO:0045577 regulation of B cell differentiation 0.0656505282886336 0.14671054220262145 1.0 4101 -Phenotype MP:0000136 abnormal microglial cell morphology 0.06564782396340285 0.14666152681930084 1.0 4102 -Biological Process GO:2000241 regulation of reproductive process 0.0656305419248997 0.14634829314009648 1.0 4103 -Biological Process GO:0010256 endomembrane system organization 0.0655763649440867 0.14536634560970849 1.0 4104 -Biological Process GO:0016049 cell growth 0.06556904654465001 0.14523370100409547 1.0 4105 -Phenotype MP:0004904 increased uterus weight 0.06556877184286658 0.14522872208622692 1.0 4106 -Phenotype MP:0000098 abnormal vomer bone morphology 0.06554085271256493 0.1447226931300378 1.0 4107 -Phenotype MP:0009886 failure of palatal shelf elevation 0.06552589702705269 0.1444516241587953 1.0 4108 -Phenotype MP:0002933 joint inflammation 0.06544063813460632 0.14290632285877827 1.0 4109 -Phenotype MP:0000659 prostate gland hyperplasia 0.06540442825029125 0.14225002555418043 1.0 4110 -Biological Process GO:0032823 regulation of natural killer cell differentiation 0.0653781313183287 0.14177339863607052 1.0 4111 -Biological Process GO:0060428 lung epithelium development 0.0653770633718388 0.14175404230792868 1.0 4112 -Biological Process GO:0033081 regulation of T cell differentiation in thymus 0.06534411272830742 0.14115681812609387 1.0 4113 -Biological Process GO:0042246 tissue regeneration 0.06533588100577492 0.14100761971211193 1.0 4114 -Phenotype MP:0002626 increased heart rate 0.0653295153039184 0.14089224256994934 1.0 4115 -Phenotype MP:0011901 abnormal hematopoietic stem cell proliferation 0.06531434433604055 0.14061727164654808 1.0 4116 -Biological Process GO:0055090 acylglycerol homeostasis 0.06531155092168772 0.1405666415397398 1.0 4117 -Phenotype MP:0010168 increased CD4-positive, CD25-positive, alpha-beta regulatory T cell number 0.06530672976354435 0.14047925896024838 1.0 4118 -Biological Process GO:0009642 response to light intensity 0.0652989455621924 0.1403381717830214 1.0 4119 -Biological Process GO:0031630 regulation of synaptic vesicle fusion to presynaptic active zone membrane 0.06529703718495838 0.14030358280659877 1.0 4120 -Biological Process GO:1901632 regulation of synaptic vesicle membrane organization 0.06529703718495838 0.14030358280659877 1.0 4120 -Biological Process GO:0030001 metal ion transport 0.06527281018804187 0.13986447306969785 1.0 4122 -Phenotype MP:0002713 abnormal glycogen catabolism 0.06526757923028459 0.13976966294971238 1.0 4123 -Biological Process GO:0035270 endocrine system development 0.06525234815568215 0.13949360260329619 1.0 4124 -Biological Process GO:0090130 tissue migration 0.06524532751118728 0.1393663547496872 1.0 4125 -Biological Process GO:0002443 leukocyte mediated immunity 0.06523719654474902 0.1392189825208568 1.0 4126 -Phenotype MP:0000872 abnormal cerebellum external granule cell layer morphology 0.06523515575749816 0.1391819936379225 1.0 4127 -Biological Process GO:0007188 adenylate cyclase-modulating G protein-coupled receptor signaling pathway 0.06521376596300077 0.1387943076582493 1.0 4128 -Biological Process GO:0030239 myofibril assembly 0.06520102872560729 0.13856344763956974 1.0 4129 -Biological Process GO:0072311 glomerular epithelial cell differentiation 0.06519791020110688 0.13850692497282677 1.0 4130 -Biological Process GO:0061318 renal filtration cell differentiation 0.06519791020110688 0.13850692497282677 1.0 4130 -Biological Process GO:0072112 podocyte differentiation 0.06519791020110688 0.13850692497282677 1.0 4130 -Phenotype MP:0008647 increased circulating interleukin-12b level 0.06518146423918803 0.1382088450235802 1.0 4133 -Biological Process GO:0021904 dorsal/ventral neural tube patterning 0.06517898148891965 0.13816384564454476 1.0 4134 -Phenotype MP:0011187 abnormal parietal endoderm morphology 0.06516917125603505 0.13798603702898507 1.0 4135 -Biological Process GO:0006941 striated muscle contraction 0.06514216383146298 0.13749653256670766 1.0 4136 -Phenotype MP:0010087 increased circulating fructosamine level 0.06512107846241011 0.13711436424063844 1.0 4137 -Phenotype MP:0010360 decreased liver free fatty acids level 0.06512012616457608 0.1370971040225109 1.0 4138 -Biological Process GO:0061548 ganglion development 0.06510030211877349 0.13673779694179083 1.0 4139 -Phenotype MP:0001005 abnormal retina rod cell morphology 0.06507374410122735 0.13625643789685904 1.0 4140 -Phenotype MP:0004193 abnormal kidney papilla morphology 0.06506632508160748 0.13612196956945674 1.0 4141 -Phenotype MP:0010031 abnormal cranium size 0.06506508805317301 0.13609954866304938 1.0 4142 -Biological Process GO:1905953 negative regulation of lipid localization 0.06504958592931065 0.13581857560006236 1.0 4143 -Phenotype MP:0010070 decreased serotonin level 0.064997276209102 0.13487047181496115 1.0 4144 -Phenotype MP:0031446 non-midline cleft upper lip 0.06498405171744093 0.13463078040483892 1.0 4145 -Biological Process GO:0016486 peptide hormone processing 0.06494919076620287 0.13399893225712944 1.0 4146 -Phenotype MP:0009743 preaxial polydactyly 0.0649290768559927 0.1336343714388458 1.0 4147 -Phenotype MP:0005585 increased tidal volume 0.06490435667078731 0.13318632275748893 1.0 4148 -Phenotype MP:0010583 abnormal conotruncus morphology 0.06490073140645947 0.13312061552721677 1.0 4149 -Biological Process GO:1900424 regulation of defense response to bacterium 0.06488674507063652 0.13286711583575328 1.0 4150 -Biological Process GO:0045765 regulation of angiogenesis 0.0648597152656194 0.13237720573214226 1.0 4151 -Phenotype MP:0000613 abnormal salivary gland morphology 0.06484569272771556 0.13212304988480983 1.0 4152 -Phenotype MP:0005105 abnormal middle ear ossicle morphology 0.06484551010291939 0.13211973984492018 1.0 4153 -Phenotype MP:0003917 increased kidney weight 0.06481979037220797 0.13165357459031712 1.0 4154 -Biological Process GO:0009141 nucleoside triphosphate metabolic process 0.06479256351878449 0.13116009302160972 1.0 4155 -Biological Process GO:0060038 cardiac muscle cell proliferation 0.06474928331299679 0.13037564747757682 1.0 4156 -Biological Process GO:0021782 glial cell development 0.06474487143328322 0.13029568299221625 1.0 4157 -Phenotype MP:0013510 decreased CD4-negative NK T cell number 0.06473276123547411 0.13007618794740722 1.0 4158 -Phenotype MP:0011611 abnormal circulating ghrelin level 0.06472542266521886 0.12994317774952266 1.0 4159 -Phenotype MP:0009675 orthokeratosis 0.06460271204706736 0.12771907100459065 1.0 4160 -Phenotype MP:0004057 thin myocardium compact layer 0.06455206105638112 0.1268010313783566 1.0 4161 -Phenotype MP:0009051 dilated distal convoluted tubule 0.06452630686072558 0.1263342414531599 1.0 4162 -Biological Process GO:0003272 endocardial cushion formation 0.06451646752506512 0.12615590535529225 1.0 4163 -Phenotype MP:0010900 abnormal pulmonary interalveolar septum morphology 0.06449419540800738 0.12575222744609224 1.0 4164 -Phenotype MP:0020386 adipose tissue inflammation 0.06447252320336594 0.12535942283597226 1.0 4165 -Phenotype MP:0004083 polysyndactyly 0.0644607612845951 0.1251462402828597 1.0 4166 -Phenotype MP:0003448 abnormal tumor morphology 0.06442769439561813 0.1245469091743096 1.0 4167 -Biological Process GO:0045824 negative regulation of innate immune response 0.06442469366118986 0.12449252143034578 1.0 4168 -Phenotype MP:0005545 abnormal lens development 0.06441037182186415 0.12423294080135079 1.0 4169 -Phenotype MP:0003413 hair follicle degeneration 0.06440795302946067 0.12418910064651978 1.0 4170 -Biological Process GO:0097009 energy homeostasis 0.06440520211767087 0.12413924089062753 1.0 4171 -Phenotype MP:0001242 hyperkeratosis 0.0644032868531047 0.12410452708261233 1.0 4172 -Biological Process GO:0044091 membrane biogenesis 0.06440108588332871 0.12406463492170637 1.0 4173 -Biological Process GO:0051560 mitochondrial calcium ion homeostasis 0.0643978809124377 0.12400654543048392 1.0 4174 -Phenotype MP:0020516 abnormal visceral yolk sac mesenchyme morphology 0.0643489122531431 0.12311899774253293 1.0 4175 -Phenotype MP:0003237 abnormal lens epithelium morphology 0.06433623534075772 0.12288923110321552 1.0 4176 -Phenotype MP:0031384 impaired blood-brain barrier function 0.06432798485583169 0.12273969262439953 1.0 4177 -Phenotype MP:0008987 abnormal liver lobule morphology 0.06431884812399635 0.1225740910879741 1.0 4178 -Biological Process GO:0007566 embryo implantation 0.0643109784653777 0.12243145501395114 1.0 4179 -Phenotype MP:0010714 iris coloboma 0.06429053416152042 0.12206090587330319 1.0 4180 -Biological Process GO:0042092 type 2 immune response 0.06428891716397078 0.12203159809854938 1.0 4181 -Phenotype MP:0013507 increased ovary apoptosis 0.06428454428216501 0.12195234044289162 1.0 4182 -Biological Process GO:0032230 positive regulation of synaptic transmission, GABAergic 0.06424859355895152 0.12130074038424306 1.0 4183 -Phenotype MP:0002672 abnormal pharyngeal arch artery morphology 0.06424591311157879 0.12125215778258297 1.0 4184 -Biological Process GO:0002067 glandular epithelial cell differentiation 0.06423745913748347 0.12109893110106079 1.0 4185 -Biological Process GO:0071482 cellular response to light stimulus 0.06423251386259055 0.12100929892895888 1.0 4186 -Phenotype MP:0005517 impaired liver regeneration 0.06418030534113306 0.12006302935208199 1.0 4187 -Phenotype MP:0005584 abnormal enzyme/coenzyme activity 0.06417999491117654 0.12005740286783376 1.0 4188 -Phenotype MP:0010577 abnormal heart right ventricle size 0.06416653945490991 0.11981352526791975 1.0 4189 -Biological Process GO:0042311 vasodilation 0.06413277960903885 0.11920163444672781 1.0 4190 -Phenotype MP:0031574 thick atrioventricular valve 0.06412322512280122 0.11902846119077343 1.0 4191 -Phenotype MP:0020550 multinucleated giant male germ cells 0.06411176290114728 0.11882071059122101 1.0 4192 -Biological Process GO:0032095 regulation of response to food 0.06410510852693196 0.11870010131715376 1.0 4193 -Biological Process GO:0061448 connective tissue development 0.06408111115628368 0.11826515351293364 1.0 4194 -Phenotype MP:0005473 decreased triiodothyronine level 0.06407075129144157 0.11807738292209971 1.0 4195 -Biological Process GO:0050867 positive regulation of cell activation 0.06403154226952901 0.11736672681579388 1.0 4196 -Biological Process GO:0031331 positive regulation of cellular catabolic process 0.06401889672614125 0.11713752873362533 1.0 4197 -Phenotype MP:0010288 increased gland tumor incidence 0.06399916079641366 0.11677981874009852 1.0 4198 -Phenotype MP:0004340 short scapula 0.06395529122710553 0.115984691093728 1.0 4199 -Phenotype MP:0000966 decreased sensory neuron number 0.0639371982430299 0.11565675917940206 1.0 4200 -Phenotype MP:0003627 abnormal leukocyte tethering or rolling 0.06392824360606875 0.11549445807813032 1.0 4201 -Biological Process GO:0070050 neuron cellular homeostasis 0.06392675293574679 0.11546743996048509 1.0 4202 -Phenotype MP:0001011 abnormal superior cervical ganglion morphology 0.06392626469203866 0.11545859063561997 1.0 4203 -Biological Process GO:0046660 female sex differentiation 0.06392532605602164 0.11544157803534182 1.0 4204 -Biological Process GO:2000378 negative regulation of reactive oxygen species metabolic process 0.06391661878621946 0.1152837604170404 1.0 4205 -Phenotype MP:0003025 increased vasoconstriction 0.06390780638157123 0.11512403724953914 1.0 4206 -Biological Process GO:0071549 cellular response to dexamethasone stimulus 0.06390691630006173 0.11510790469052645 1.0 4207 -Biological Process GO:0071548 response to dexamethasone 0.06390691630006173 0.11510790469052645 1.0 4207 -Phenotype MP:0010585 abnormal conotruncal ridge morphology 0.06388869523874918 0.11477765140050529 1.0 4209 -Phenotype MP:0003918 decreased kidney weight 0.06387929796675462 0.11460732762297157 1.0 4210 -Phenotype MP:0005184 abnormal circulating progesterone level 0.06387342598312651 0.11450089903031878 1.0 4211 -Biological Process GO:0009267 cellular response to starvation 0.063851917307861 0.11411105835920815 1.0 4212 -Phenotype MP:0001915 intracranial hemorrhage 0.06380612974116806 0.11328116737300148 1.0 4213 -Phenotype MP:0011388 absent heart 0.06377608450587147 0.11273660316590312 1.0 4214 -Biological Process GO:0003073 regulation of systemic arterial blood pressure 0.06376244555241106 0.112489399714058 1.0 4215 -Phenotype MP:0010289 increased urinary system tumor incidence 0.06376076092261462 0.11245886611762262 1.0 4216 -Biological Process GO:0007416 synapse assembly 0.06375522718962401 0.11235856825379895 1.0 4217 -Phenotype MP:0003659 abnormal lymph circulation 0.06373802823746799 0.11204684049892175 1.0 4218 -Biological Process GO:0010799 regulation of peptidyl-threonine phosphorylation 0.06370525647476888 0.11145285849833872 1.0 4219 -Biological Process GO:0009144 purine nucleoside triphosphate metabolic process 0.06369205435822833 0.11121357263304422 1.0 4220 -Phenotype MP:0002639 micrognathia 0.06368403312770987 0.11106818934700503 1.0 4221 -Phenotype MP:0004391 abnormal respiratory conducting tube morphology 0.06368036378254838 0.11100168315996026 1.0 4222 -Phenotype MP:0003390 lymphedema 0.0636776084970826 0.11095174413201815 1.0 4223 -Phenotype MP:0011287 increased erythropoietin level 0.06367587719112322 0.11092036453895775 1.0 4224 -Phenotype MP:0011285 increased circulating erythropoietin level 0.06367587719112322 0.11092036453895775 1.0 4224 -Biological Process GO:0007612 learning 0.0636426726650855 0.1103185387847138 1.0 4226 -Phenotype MP:0001869 pancreas inflammation 0.06364097925941592 0.11028784612723762 1.0 4227 -Biological Process GO:0051955 regulation of amino acid transport 0.0636123367390643 0.10976870586321225 1.0 4228 -Biological Process GO:0010837 regulation of keratinocyte proliferation 0.06359653400768595 0.10948228434585376 1.0 4229 -Phenotype MP:0013660 abnormal bone marrow hematopoietic cell morphology 0.06358568995053882 0.10928573786106968 1.0 4230 -Phenotype MP:0003419 delayed endochondral bone ossification 0.06352534413846023 0.10819198143074446 1.0 4231 -Phenotype MP:0009414 skeletal muscle fiber necrosis 0.06351561956940077 0.10801572545581335 1.0 4232 -Phenotype MP:0004333 abnormal utricular macula morphology 0.06348658755645353 0.10748952571215965 1.0 4233 -Phenotype MP:0008076 abnormal CD4-positive T cell differentiation 0.06347767120446546 0.10732791851878391 1.0 4234 -Phenotype MP:0001770 abnormal iron level 0.06347261858771513 0.10723634079581885 1.0 4235 -Phenotype MP:0003367 increased circulating glucocorticoid level 0.0634709639451626 0.10720635071250767 1.0 4236 -Phenotype MP:0001745 increased circulating corticosterone level 0.0634709639451626 0.10720635071250767 1.0 4236 -Biological Process GO:0045055 regulated exocytosis 0.06344390819854617 0.1067159704223156 1.0 4238 -Phenotype MP:0006226 iris hypoplasia 0.063436774943887 0.10658668153077729 1.0 4239 -Biological Process GO:0045670 regulation of osteoclast differentiation 0.06337840063182976 0.10552865816545626 1.0 4240 -Biological Process GO:0070664 negative regulation of leukocyte proliferation 0.06337775936053414 0.10551703524451098 1.0 4241 -Phenotype MP:0008607 abnormal circulating interleukin-13 level 0.06337616640198851 0.1054881631721582 1.0 4242 -Biological Process GO:2000316 regulation of T-helper 17 type immune response 0.06337126163509688 0.10539926519991806 1.0 4243 -Phenotype MP:0003703 abnormal vestibulocochlear ganglion morphology 0.06336039325574983 0.10520227787986063 1.0 4244 -Phenotype MP:0031026 increased susceptibility to Herpesvirales infection induced morbidity/mortality 0.06333756746907837 0.10478856481363125 1.0 4245 -Biological Process GO:0072001 renal system development 0.06332699005245512 0.10459685113791106 1.0 4246 -Phenotype MP:0006030 abnormal otic vesicle development 0.06332201833820938 0.10450673975753998 1.0 4247 -Phenotype MP:0001061 abnormal oculomotor nerve morphology 0.06329828308431307 0.10407654276987344 1.0 4248 -Phenotype MP:0004753 abnormal miniature excitatory postsynaptic currents 0.06329292843706691 0.10397949080129637 1.0 4249 -Phenotype MP:0005106 abnormal incus morphology 0.06328461007687203 0.10382872209607016 1.0 4250 -Biological Process GO:0061162 establishment of monopolar cell polarity 0.063280913383997 0.10376172023688997 1.0 4251 -Biological Process GO:0061339 establishment or maintenance of monopolar cell polarity 0.063280913383997 0.10376172023688997 1.0 4251 -Phenotype MP:0008029 abnormal paraxial mesoderm morphology 0.06327341788811991 0.10362586579179008 1.0 4253 -Biological Process GO:0014002 astrocyte development 0.06325828544152023 0.10335159305926983 1.0 4254 -Phenotype MP:0003915 increased heart left ventricle weight 0.0632451697889913 0.1031138743378324 1.0 4255 -Phenotype MP:0000960 abnormal sensory ganglion morphology 0.06321026079229741 0.10248115537532304 1.0 4256 -Phenotype MP:0008172 abnormal follicular B cell morphology 0.06320738913368729 0.10242910710615014 1.0 4257 -Phenotype MP:0001154 seminiferous tubule degeneration 0.06320612474618725 0.10240619032185394 1.0 4258 -Biological Process GO:0048617 embryonic foregut morphogenesis 0.06319753489040902 0.10225050081052929 1.0 4259 -Phenotype MP:0011627 decreased skin pigmentation 0.06319512006466288 0.10220673255061224 1.0 4260 -Biological Process GO:0046596 regulation of viral entry into host cell 0.06319228272322652 0.10215530627372327 1.0 4261 -Biological Process GO:0052372 modulation by symbiont of entry into host 0.06319228272322652 0.10215530627372327 1.0 4261 -Phenotype MP:0004875 increased mean systemic arterial blood pressure 0.06319107892351528 0.10213348763163946 1.0 4263 -Phenotype MP:0004139 abnormal gastric parietal cell morphology 0.06318820646205536 0.102081424810966 1.0 4264 -Phenotype MP:0010540 long stride length 0.06318408884752602 0.10200679382641313 1.0 4265 -Biological Process GO:0050672 negative regulation of lymphocyte proliferation 0.06316691491876036 0.10169551961575336 1.0 4266 -Phenotype MP:0002636 delayed vaginal opening 0.0631536198049919 0.10145454819329203 1.0 4267 -Phenotype MP:0021198 abnormal sleep duration 0.06314816320789651 0.10135564840298011 1.0 4268 -Phenotype MP:0010296 increased hemolymphoid system tumor incidence 0.06314238961987217 0.10125100321203555 1.0 4269 -Biological Process GO:0050854 regulation of antigen receptor-mediated signaling pathway 0.06312046960018891 0.10085370700115348 1.0 4270 -Phenotype MP:0003327 liver cyst 0.0630782098092264 0.10008775628282945 1.0 4271 -Phenotype MP:0009703 decreased birth body size 0.06307620527926439 0.10005142455639776 1.0 4272 -Phenotype MP:0011890 increased circulating ferritin level 0.06305927475534812 0.09974456201259639 1.0 4273 -Phenotype MP:0008842 lipofuscinosis 0.06304689007920738 0.09952009209994066 1.0 4274 -Biological Process GO:0006888 endoplasmic reticulum to Golgi vesicle-mediated transport 0.0630463116114437 0.09950960748113317 1.0 4275 -Biological Process GO:0002704 negative regulation of leukocyte mediated immunity 0.0630320180941566 0.09925054018373114 1.0 4276 -Biological Process GO:0006066 alcohol metabolic process 0.06301775631475959 0.09899204812958426 1.0 4277 -Phenotype MP:0005670 abnormal white adipose tissue physiology 0.06300364180277329 0.09873622526940286 1.0 4278 -Biological Process GO:1900087 positive regulation of G1/S transition of mitotic cell cycle 0.0629850339361947 0.09839896120709375 1.0 4279 -Phenotype MP:0009754 enhanced behavioral response to cocaine 0.062983932422354 0.09837899647706767 1.0 4280 -Phenotype MP:0012359 increased partial thromboplastin time 0.06297917988003177 0.09829285754635658 1.0 4281 -Phenotype MP:0010792 abnormal stomach mucosa morphology 0.06294195415103754 0.09761814824908245 1.0 4282 -Biological Process GO:0035855 megakaryocyte development 0.06286467990816236 0.09621756721235414 1.0 4283 -Biological Process GO:0006516 glycoprotein catabolic process 0.062854696529278 0.09603662035829703 1.0 4284 -Phenotype MP:0001317 abnormal pupil morphology 0.06283806269975822 0.0957351353443164 1.0 4285 -Phenotype MP:0005425 increased macrophage cell number 0.06283733415875814 0.09572193067648362 1.0 4286 -Phenotype MP:0013762 abnormal effector T cell number 0.06278218735237118 0.09472240524099707 1.0 4287 -Phenotype MP:0013834 thin hypoglossal nerve 0.06276825905621441 0.09446995750750574 1.0 4288 -Biological Process GO:0002263 cell activation involved in immune response 0.06276686035333934 0.09444460628244081 1.0 4289 -Biological Process GO:0010092 specification of animal organ identity 0.06276247472982777 0.09436511768577532 1.0 4290 -Phenotype MP:0002412 increased susceptibility to bacterial infection 0.06270876917969248 0.09339171474725617 1.0 4291 -Biological Process GO:0106118 regulation of sterol biosynthetic process 0.06269040732333186 0.09305890957361831 1.0 4292 -Biological Process GO:0045540 regulation of cholesterol biosynthetic process 0.06269040732333186 0.09305890957361831 1.0 4292 -Phenotype MP:0020423 abnormal mitochondrial biogenesis 0.06266377444402227 0.09257619367338302 1.0 4294 -Biological Process GO:0006469 negative regulation of protein kinase activity 0.06265564130628176 0.09242878209011 1.0 4295 -Biological Process GO:1905954 positive regulation of lipid localization 0.0626466712717787 0.09226620191130341 1.0 4296 -Biological Process GO:0032945 negative regulation of mononuclear cell proliferation 0.06263408359278955 0.09203805261041534 1.0 4297 -Biological Process GO:0060914 heart formation 0.06259154163073355 0.09126698759439066 1.0 4298 -Phenotype MP:0020852 abnormal olfactory behavior 0.06257872600335013 0.09103470677196979 1.0 4299 -Phenotype MP:0003062 abnormal coping response 0.06256799134193447 0.09084014306412791 1.0 4300 -Phenotype MP:0030795 joint dislocation 0.06256796571271439 0.0908396785393614 1.0 4301 -Phenotype MP:0003705 abnormal hypodermis morphology 0.06255062150282353 0.09052531801551378 1.0 4302 -Phenotype MP:0004533 fused inner hair cell stereocilia 0.06253797201833766 0.0902960485016873 1.0 4303 -Phenotype MP:0000037 abnormal lateral semicircular canal morphology 0.06253736151431921 0.09028498323182153 1.0 4304 -Phenotype MP:0001724 abnormal extraembryonic endoderm formation 0.06252658600889804 0.09008967923410487 1.0 4305 -Phenotype MP:0013835 absent hypoglossal nerve 0.06251291149254867 0.08984183121162347 1.0 4306 -Phenotype MP:0009582 abnormal keratinocyte proliferation 0.06250395385930962 0.08967947580338163 1.0 4307 -Phenotype MP:0009094 abnormal endometrial gland morphology 0.06248122697026315 0.08926755523789984 1.0 4308 -Phenotype MP:0000875 abnormal cerebellar Purkinje cell layer 0.06242656730042517 0.08827685906022835 1.0 4309 -Phenotype MP:0005562 decreased mean corpuscular hemoglobin 0.06239811161842401 0.08776110520596707 1.0 4310 -Phenotype MP:0001492 abnormal pilomotor reflex 0.062392053061653185 0.0876512950103904 1.0 4311 -Biological Process GO:0003174 mitral valve development 0.06238653286723539 0.08755124253063841 1.0 4312 -Biological Process GO:0003183 mitral valve morphogenesis 0.06238653286723539 0.08755124253063841 1.0 4312 -Phenotype MP:0002074 abnormal hair texture 0.06235738554592707 0.08702295284474913 1.0 4314 -Phenotype MP:0004269 abnormal optic cup morphology 0.06235586579035324 0.08699540756241478 1.0 4315 -Biological Process GO:0021532 neural tube patterning 0.06233862299380577 0.08668288513623512 1.0 4316 -Biological Process GO:0065003 protein-containing complex assembly 0.06230191866951185 0.08601762620053732 1.0 4317 -Phenotype MP:0008558 abnormal interferon-beta secretion 0.06230118228256365 0.08600427932637894 1.0 4318 -Biological Process GO:0071675 regulation of mononuclear cell migration 0.062284133565510214 0.08569527455432108 1.0 4319 -Biological Process GO:0055075 potassium ion homeostasis 0.06227889820084531 0.08560038455996859 1.0 4320 -Biological Process GO:0030220 platelet formation 0.06227284032441571 0.085490586695448 1.0 4321 -Phenotype MP:0020220 decreased tear production 0.0622291768617006 0.08469919469209358 1.0 4322 -Phenotype MP:0004399 abnormal cochlear outer hair cell morphology 0.06219259134960198 0.08403608920496394 1.0 4323 -Phenotype MP:0005102 abnormal iris pigmentation 0.06219200486674714 0.08402545931414539 1.0 4324 -Phenotype MP:0003362 increased circulating gonadotropin level 0.062182094731206616 0.0838458399818423 1.0 4325 -Phenotype MP:0010107 abnormal renal reabsorption 0.06216282877574064 0.083496648182918 1.0 4326 -Biological Process GO:0007224 smoothened signaling pathway 0.06214456674108215 0.08316565225875126 1.0 4327 -Phenotype MP:0008080 abnormal CD8-positive, alpha-beta T cell differentiation 0.06213549846126576 0.08300129140222237 1.0 4328 -Biological Process GO:0001990 regulation of systemic arterial blood pressure by hormone 0.062117684196634326 0.08267841122510634 1.0 4329 -Phenotype MP:0006390 abnormal cochlear endolymph physiology 0.062104802566217865 0.08244493411019523 1.0 4330 -Phenotype MP:0002630 abnormal endocochlear potential 0.062104802566217865 0.08244493411019523 1.0 4330 -Biological Process GO:1903579 negative regulation of ATP metabolic process 0.062096976361499356 0.08230308562989368 1.0 4332 -Phenotype MP:0008178 decreased germinal center B cell number 0.06207280415141747 0.08186496889400813 1.0 4333 -Phenotype MP:0003642 absent seminal vesicle 0.06206092946106023 0.08164974237722124 1.0 4334 -Biological Process GO:0002021 response to dietary excess 0.06204887605705611 0.08143127670938591 1.0 4335 -Biological Process GO:0055008 cardiac muscle tissue morphogenesis 0.06201780915636179 0.08086819501018801 1.0 4336 -Phenotype MP:0004540 small maxilla 0.0620033181399996 0.08060554807940419 1.0 4337 -Phenotype MP:0005659 decreased susceptibility to diet-induced obesity 0.061989370600467386 0.08035275156337249 1.0 4338 -Phenotype MP:0009904 tongue hypoplasia 0.06194615696089767 0.07956951251945042 1.0 4339 -Phenotype MP:0004028 chromosome breakage 0.06190880949058075 0.07889259668372828 1.0 4340 -Biological Process GO:0016358 dendrite development 0.06189669233268669 0.0786729754886959 1.0 4341 -Phenotype MP:0002921 abnormal post-tetanic potentiation 0.0618809002617583 0.07838674718997679 1.0 4342 -Phenotype MP:0000937 abnormal motor neuron morphology 0.0618783448702942 0.07834043120300795 1.0 4343 -Phenotype MP:0009977 abnormal cerebellar granule cell migration 0.06186639110586856 0.07812377148368703 1.0 4344 -Phenotype MP:0020134 abnormal gallbladder size 0.0618085242962898 0.07707494650480129 1.0 4345 -Phenotype MP:0003819 increased left ventricle diastolic pressure 0.061766966764062015 0.07632172409322126 1.0 4346 -Phenotype MP:0000729 abnormal myogenesis 0.06171976787566624 0.07546625316808318 1.0 4347 -Biological Process GO:0045637 regulation of myeloid cell differentiation 0.061700656004245236 0.07511985411333101 1.0 4348 -Biological Process GO:0071320 cellular response to cAMP 0.06169828824175205 0.07507693886597253 1.0 4349 -Phenotype MP:0010050 hypermyelination 0.06169289792795207 0.07497924044785328 1.0 4350 -Phenotype MP:0002637 small uterus 0.06166449603474211 0.07446446150525905 1.0 4351 -Biological Process GO:0043457 regulation of cellular respiration 0.06164738278213211 0.07415428703844447 1.0 4352 -Phenotype MP:0009106 abnormal pancreas size 0.06164612664583147 0.07413151980557663 1.0 4353 -Biological Process GO:2000401 regulation of lymphocyte migration 0.06164408893176432 0.07409458662351577 1.0 4354 -Phenotype MP:0005565 increased blood urea nitrogen level 0.06161093847165655 0.07349374080402642 1.0 4355 -Phenotype MP:0005400 abnormal vitamin level 0.061596377442959205 0.07322982491290987 1.0 4356 -Biological Process GO:0072576 liver morphogenesis 0.06159412863646274 0.073189065720493 1.0 4357 -Biological Process GO:0009994 oocyte differentiation 0.0615610976624843 0.07259038556449844 1.0 4358 -Phenotype MP:0005424 jerky movement 0.06154495119374881 0.07229773387255521 1.0 4359 -Biological Process GO:0030522 intracellular receptor signaling pathway 0.061526075426684756 0.07195561416461688 1.0 4360 -Biological Process GO:0046890 regulation of lipid biosynthetic process 0.06151747511605654 0.07179973516111363 1.0 4361 -Phenotype MP:0000534 abnormal ureter morphology 0.0615112190825543 0.07168634573713019 1.0 4362 -Biological Process GO:0051446 positive regulation of meiotic cell cycle 0.061444191599332676 0.07047148528108568 1.0 4363 -Biological Process GO:0006641 triglyceride metabolic process 0.06143189344675948 0.07024858359172671 1.0 4364 -Phenotype MP:0011384 abnormal progesterone level 0.06141908898854376 0.07001650520835793 1.0 4365 -Biological Process GO:0021610 facial nerve morphogenesis 0.06141616134188477 0.06996344216638875 1.0 4366 -Biological Process GO:0021561 facial nerve development 0.06141616134188477 0.06996344216638875 1.0 4366 -Phenotype MP:0002657 chondrodystrophy 0.0614154155387745 0.06994992462607376 1.0 4368 -Biological Process GO:0001819 positive regulation of cytokine production 0.061399873995173215 0.06966823708777457 1.0 4369 -Biological Process GO:0098698 postsynaptic specialization assembly 0.061397220225701266 0.0696201380180203 1.0 4370 -Phenotype MP:0003132 increased pre-B cell number 0.061387691626779706 0.06944743396477343 1.0 4371 -Biological Process GO:0008610 lipid biosynthetic process 0.06138216415796782 0.06934724963800447 1.0 4372 -Phenotype MP:0004258 abnormal placenta size 0.06137194183717887 0.06916197200711924 1.0 4373 -Phenotype MP:0010405 ostium secundum atrial septal defect 0.0613397040966398 0.06857766905718396 1.0 4374 -Phenotype MP:0014012 abnormal cranial blood vasculature morphology 0.06131972144476039 0.0682154872713196 1.0 4375 -Biological Process GO:0051279 regulation of release of sequestered calcium ion into cytosol 0.06131615989312367 0.06815093482152364 1.0 4376 -Phenotype MP:0002338 abnormal pulmonary ventilation 0.06129673762863974 0.06779890995121274 1.0 4377 -Phenotype MP:0005270 abnormal zygomatic bone morphology 0.06129545250699264 0.06777561736442256 1.0 4378 -Phenotype MP:0002796 impaired skin barrier function 0.06128759308459242 0.06763316681992258 1.0 4379 -Biological Process GO:0007193 adenylate cyclase-inhibiting G protein-coupled receptor signaling pathway 0.061287459199497296 0.06763074017789607 1.0 4380 -Phenotype MP:0008809 increased spleen iron level 0.0612707091949114 0.0673271495128149 1.0 4381 -Phenotype MP:0008170 decreased B-1b cell number 0.061244111591765904 0.06684507298638191 1.0 4382 -Phenotype MP:0020360 abnormal asymmetric synapse morphology 0.061238949623068306 0.06675151328005494 1.0 4383 -Phenotype MP:0011371 decreased kidney apoptosis 0.06121482584057558 0.06631427428506351 1.0 4384 -Biological Process GO:0048145 regulation of fibroblast proliferation 0.06120550628970456 0.06614535918819399 1.0 4385 -Phenotype MP:0009322 increased splenocyte apoptosis 0.061188883543970674 0.06584407506573622 1.0 4386 -Phenotype MP:0008950 ventricular tachycardia 0.06117834320413429 0.06565303339976536 1.0 4387 -Phenotype MP:0003922 abnormal heart right atrium morphology 0.06115904007735351 0.0653031678777907 1.0 4388 -Phenotype MP:0003728 abnormal retina photoreceptor layer morphology 0.06113849085396228 0.06493071709043403 1.0 4389 -Biological Process GO:0042113 B cell activation 0.06113606104381342 0.06488667724105182 1.0 4390 -Biological Process GO:0071478 cellular response to radiation 0.06112185294828676 0.06462915819690143 1.0 4391 -Phenotype MP:0008892 abnormal sperm flagellum morphology 0.06112160793385313 0.06462471735663305 1.0 4392 -Biological Process GO:0060413 atrial septum morphogenesis 0.06110769750254308 0.06437259342010952 1.0 4393 -Biological Process GO:0032107 regulation of response to nutrient levels 0.061104060875919464 0.06430668025037553 1.0 4394 -Phenotype MP:0012574 decreased noradrenaline level 0.06110390815680955 0.06430391224539311 1.0 4395 -Phenotype MP:0002819 abnormal dental pulp cavity morphology 0.06106096790017834 0.06352562821552482 1.0 4396 -Phenotype MP:0004102 abnormal dorsal striatum morphology 0.06103696425723093 0.06309056672706938 1.0 4397 -Biological Process GO:0032387 negative regulation of intracellular transport 0.06103556296327295 0.0630651685391169 1.0 4398 -Biological Process GO:0032098 regulation of appetite 0.06100813007079409 0.06256795255150037 1.0 4399 -Phenotype MP:0005409 darkened coat color 0.060959239885604255 0.06168182719185602 1.0 4400 -Biological Process GO:0046148 pigment biosynthetic process 0.060952258579711094 0.06155529234296264 1.0 4401 -Biological Process GO:0071384 cellular response to corticosteroid stimulus 0.06093559227770928 0.061253218771386814 1.0 4402 -Phenotype MP:0002409 decreased susceptibility to infection 0.06090793120630433 0.06075186708389194 1.0 4403 -Phenotype MP:0010254 nuclear cataract 0.060893074544719705 0.06048259290260839 1.0 4404 -Biological Process GO:0070741 response to interleukin-6 0.06089076564550844 0.060440744541101425 1.0 4405 -Phenotype MP:0003920 abnormal heart right ventricle morphology 0.06086703520423997 0.06001063478140446 1.0 4406 -Biological Process GO:0051092 positive regulation of NF-kappaB transcription factor activity 0.060866171104672295 0.059994973140173144 1.0 4407 -Phenotype MP:0003989 abnormal barrel cortex morphology 0.060851595825210714 0.059730798956650163 1.0 4408 -Phenotype MP:0001469 abnormal contextual conditioning behavior 0.060821371838389204 0.05918299491197115 1.0 4409 -Phenotype MP:0006038 increased mitochondrial fission 0.060799427434945486 0.05878525675004268 1.0 4410 -Phenotype MP:0001661 extended life span 0.060781888877787016 0.058467373718727754 1.0 4411 -Phenotype MP:0020178 abnormal IgG2c level 0.06074519891928254 0.05780237516024658 1.0 4412 -Biological Process GO:0048382 mesendoderm development 0.06072300569554123 0.05740012717748534 1.0 4413 -Biological Process GO:0009649 entrainment of circadian clock 0.0607013752321206 0.057008079119097825 1.0 4414 -Biological Process GO:0006949 syncytium formation 0.06069666353765746 0.05692268054810701 1.0 4415 -Phenotype MP:0009493 abnormal cystic duct morphology 0.06066945345539365 0.05642950295349682 1.0 4416 -Phenotype MP:0008267 abnormal hippocampus CA3 region morphology 0.06066303936335615 0.056313248748456446 1.0 4417 -Phenotype MP:0005472 abnormal triiodothyronine level 0.06064903281061951 0.05605938262925593 1.0 4418 -Phenotype MP:0010150 abnormal mandibular ramus morphology 0.0606263943248142 0.055649064355800075 1.0 4419 -Phenotype MP:0000088 short mandible 0.060613202773259656 0.05540996997887855 1.0 4420 -Phenotype MP:0003710 abnormal physiological neovascularization 0.06061294404804152 0.05540528063323419 1.0 4421 -Phenotype MP:0020040 decreased bone ossification 0.06060743424395609 0.05530541647629126 1.0 4422 -Biological Process GO:0045444 fat cell differentiation 0.060589487426592537 0.054980133805976064 1.0 4423 -Phenotype MP:0009480 distended cecum 0.06058084182540724 0.05482343391969179 1.0 4424 -Phenotype MP:0001939 secondary sex reversal 0.060574172308398566 0.05470255018535909 1.0 4425 -Phenotype MP:0031169 abnormal joint physiology 0.06057320611787509 0.05468503816486302 1.0 4426 -Phenotype MP:0000687 small lymphoid organs 0.060521292775168156 0.05374411864701082 1.0 4427 -Biological Process GO:1903846 positive regulation of cellular response to transforming growth factor beta stimulus 0.06050480770471156 0.05344532986291451 1.0 4428 -Biological Process GO:0030511 positive regulation of transforming growth factor beta receptor signaling pathway 0.06050480770471156 0.05344532986291451 1.0 4428 -Phenotype MP:0003817 abnormal pituitary diverticulum morphology 0.06050335471554846 0.05341899470914673 1.0 4430 -Biological Process GO:0006582 melanin metabolic process 0.06049304254461496 0.05323208856138553 1.0 4431 -Phenotype MP:0010783 abnormal stomach wall morphology 0.06049247810513936 0.05322185820264636 1.0 4432 -Phenotype MP:0000005 increased brown adipose tissue amount 0.060438938725260405 0.05225146706859437 1.0 4433 -Phenotype MP:0012542 abnormal neuropore morphology 0.06043622836833107 0.05220234236187773 1.0 4434 -Biological Process GO:0006887 exocytosis 0.06042765452213206 0.05204694302114841 1.0 4435 -Phenotype MP:0008480 absent eye pigmentation 0.0604107196575564 0.051740001803716615 1.0 4436 -Biological Process GO:0032890 regulation of organic acid transport 0.06037385554504349 0.05107184673677142 1.0 4437 -Biological Process GO:0042471 ear morphogenesis 0.06035800952056847 0.050784640540224225 1.0 4438 -Biological Process GO:0099173 postsynapse organization 0.06034528271845985 0.05055396965910903 1.0 4439 -Biological Process GO:0048839 inner ear development 0.06034404247424152 0.0505314904672274 1.0 4440 -Phenotype MP:0002584 small ectoplacental cone 0.060327877277489006 0.05023849933351773 1.0 4441 -Biological Process GO:0099537 trans-synaptic signaling 0.06031713039811071 0.05004371417741385 1.0 4442 -Biological Process GO:0002437 inflammatory response to antigenic stimulus 0.06030908075109109 0.049897815847665866 1.0 4443 -Biological Process GO:0140962 multicellular organismal-level chemical homeostasis 0.06027748099207586 0.04932507619218443 1.0 4444 -Phenotype MP:0002041 increased pituitary adenoma incidence 0.06027667528832603 0.049310472964106816 1.0 4445 -Phenotype MP:0006072 abnormal retina apoptosis 0.06023015133685661 0.04846723514310356 1.0 4446 -Phenotype MP:0006276 abnormal autonomic nervous system physiology 0.06020529022626586 0.04801663221579117 1.0 4447 -Biological Process GO:0055017 cardiac muscle tissue growth 0.06018329141456391 0.04761790791447284 1.0 4448 -Phenotype MP:0003852 skeletal muscle necrosis 0.0601736735839401 0.04744358655349968 1.0 4449 -Biological Process GO:0007043 cell-cell junction assembly 0.06016579410163836 0.04730077242707876 1.0 4450 -Biological Process GO:0055002 striated muscle cell development 0.060153219834144456 0.04707286620700543 1.0 4451 -Biological Process GO:0071824 protein-DNA complex organization 0.06012201076273527 0.04650720769049024 1.0 4452 -Biological Process GO:0002753 cytoplasmic pattern recognition receptor signaling pathway 0.060083663553695876 0.045812171779510406 1.0 4453 -Biological Process GO:0051607 defense response to virus 0.06007940893335417 0.04573505759052127 1.0 4454 -Biological Process GO:0046822 regulation of nucleocytoplasmic transport 0.060073398708693326 0.04562612340529664 1.0 4455 -Phenotype MP:0003209 abnormal pulmonary elastic fiber morphology 0.06007230620680981 0.04560632201528998 1.0 4456 -Biological Process GO:0051957 positive regulation of amino acid transport 0.06006502659488688 0.04547438042602765 1.0 4457 -Phenotype MP:0004259 small placenta 0.060062432387654074 0.04542736091059242 1.0 4458 -Phenotype MP:0000316 cellular necrosis 0.060053592587556825 0.04526714120575915 1.0 4459 -Biological Process GO:1904262 negative regulation of TORC1 signaling 0.06003458086280078 0.044922557290367995 1.0 4460 -Biological Process GO:0043583 ear development 0.0600195342111437 0.04464983957495532 1.0 4461 -Phenotype MP:0008190 decreased transitional stage B cell number 0.060016800107456025 0.044600284462735194 1.0 4462 -Biological Process GO:0030856 regulation of epithelial cell differentiation 0.060014304042264044 0.04455504375322771 1.0 4463 -Biological Process GO:0070884 regulation of calcineurin-NFAT signaling cascade 0.059999833678127334 0.04429277114012472 1.0 4464 -Biological Process GO:0060343 trabecula formation 0.05998607600814532 0.044043415973779 1.0 4465 -Phenotype MP:0005394 taste/olfaction phenotype 0.05995098277660693 0.04340735778955879 1.0 4466 -Phenotype MP:0030464 abnormal cranial cartilage morphology 0.059938764772166975 0.04318590876995588 1.0 4467 -Phenotype MP:0003560 osteoarthritis 0.05993552308674677 0.043127153834835834 1.0 4468 -Phenotype MP:0002264 abnormal bronchus morphology 0.0599316421025019 0.043056811729433674 1.0 4469 -Biological Process GO:1902003 regulation of amyloid-beta formation 0.05989499493334982 0.04239258871987163 1.0 4470 -Phenotype MP:0004153 increased renal tubule apoptosis 0.059870640583422285 0.041951170733732966 1.0 4471 -Phenotype MP:0002417 abnormal megakaryocyte morphology 0.0598533915118018 0.04163853457304172 1.0 4472 -Biological Process GO:0008088 axo-dendritic transport 0.05985000906869897 0.041577228431546605 1.0 4473 -Phenotype MP:0005167 abnormal blood-brain barrier function 0.059805209944627236 0.0407652527808985 1.0 4474 -Biological Process GO:0003382 epithelial cell morphogenesis 0.059802185803868424 0.04071044080162061 1.0 4475 -Phenotype MP:0020158 abnormal behavioral response to cocaine 0.059799231547865705 0.040656895470329156 1.0 4476 -Phenotype MP:0009355 increased liver triglyceride level 0.05979728189831035 0.04062155844088835 1.0 4477 -Phenotype MP:0008843 absent subcutaneous adipose tissue 0.05978401553034984 0.04038110803075933 1.0 4478 -Phenotype MP:0011632 dilated mitochondrion 0.05970839797180283 0.039010554084139455 1.0 4479 -Phenotype MP:0009761 abnormal meiotic spindle morphology 0.059678359802562975 0.03846611794798303 1.0 4480 -Biological Process GO:0072073 kidney epithelium development 0.059660193450715826 0.03813685625667473 1.0 4481 -Phenotype MP:0005668 decreased circulating leptin level 0.0596577338821177 0.03809227704102808 1.0 4482 -Biological Process GO:0031670 cellular response to nutrient 0.05959226880594726 0.03690573491727794 1.0 4483 -Phenotype MP:0001716 abnormal placenta labyrinth morphology 0.05958393956272867 0.03675476895930547 1.0 4484 -Biological Process GO:0034340 response to type I interferon 0.05957816974829866 0.03665019216404434 1.0 4485 -Biological Process GO:0035988 chondrocyte proliferation 0.05950153796634261 0.035261255609962426 1.0 4486 -Phenotype MP:0001302 eyelids open at birth 0.05949866442520846 0.0352091732203976 1.0 4487 -Phenotype MP:0001313 increased incidence of corneal inflammation 0.05949471622876523 0.03513761290661241 1.0 4488 -Phenotype MP:0014046 abnormal mitophagy 0.059459803363625 0.03450482382924479 1.0 4489 -Biological Process GO:0048511 rhythmic process 0.05945570303760417 0.034430506195638824 1.0 4490 -Biological Process GO:0003299 muscle hypertrophy in response to stress 0.05944619293868125 0.03425813745136835 1.0 4491 -Biological Process GO:0014898 cardiac muscle hypertrophy in response to stress 0.05944619293868125 0.03425813745136835 1.0 4491 -Biological Process GO:0014887 cardiac muscle adaptation 0.05944619293868125 0.03425813745136835 1.0 4491 -Biological Process GO:0062012 regulation of small molecule metabolic process 0.05944245996510722 0.034190478011380775 1.0 4494 -Phenotype MP:0003369 abnormal circulating estrogen level 0.05944041052613647 0.03415333231765972 1.0 4495 -Phenotype MP:0009901 abnormal frontonasal prominence morphology 0.05943485686458683 0.03405267325247292 1.0 4496 -Biological Process GO:0010975 regulation of neuron projection development 0.05943269635371462 0.03401351440154577 1.0 4497 -Biological Process GO:0042633 hair cycle 0.05940461620134241 0.0335045669507828 1.0 4498 -Biological Process GO:0042303 molting cycle 0.05940461620134241 0.0335045669507828 1.0 4498 -Biological Process GO:0001776 leukocyte homeostasis 0.0593731545273235 0.032934330059742854 1.0 4500 -Phenotype MP:0005350 increased susceptibility to autoimmune disorder 0.059370975313450036 0.0328948322204553 1.0 4501 -Biological Process GO:0007614 short-term memory 0.059363083225538515 0.03275178961974133 1.0 4502 -Biological Process GO:0043353 enucleate erythrocyte differentiation 0.05936087632177223 0.03271178990638353 1.0 4503 -Biological Process GO:0043903 regulation of biological process involved in symbiotic interaction 0.05935521145203315 0.032609115213796766 1.0 4504 -Phenotype MP:0010851 decreased effector memory CD8-positive, alpha-beta T cell number 0.059334251281768946 0.03222921609209249 1.0 4505 -Phenotype MP:0006382 abnormal lung epithelium morphology 0.059332879876599964 0.03220435963278755 1.0 4506 -Biological Process GO:0099560 synaptic membrane adhesion 0.05929164893934569 0.031457056693331334 1.0 4507 -Phenotype MP:0001288 abnormal lens induction 0.059266122678740984 0.030994398047820174 1.0 4508 -Biological Process GO:0051149 positive regulation of muscle cell differentiation 0.05924700996677712 0.030647983758387683 1.0 4509 -Phenotype MP:0008727 increased heart right atrium size 0.059239589318928476 0.030513485919646807 1.0 4510 -Phenotype MP:0003987 small vestibular ganglion 0.05923563471868076 0.030441809538116486 1.0 4511 -Biological Process GO:0060536 cartilage morphogenesis 0.05919898617772357 0.029777561664846207 1.0 4512 -Biological Process GO:0097091 synaptic vesicle clustering 0.05919506269745611 0.02970644932707216 1.0 4513 -Biological Process GO:2000269 regulation of fibroblast apoptotic process 0.059173084902790496 0.029308105955562283 1.0 4514 -Biological Process GO:0001706 endoderm formation 0.059173011626016625 0.02930677782789519 1.0 4515 -Phenotype MP:0005341 decreased susceptibility to atherosclerosis 0.05914415239127013 0.028783709656451346 1.0 4516 -Phenotype MP:0002945 abnormal inhibitory postsynaptic currents 0.05913945113680397 0.02869850030843117 1.0 4517 -Biological Process GO:0045475 locomotor rhythm 0.05913119035231873 0.0285487751520526 1.0 4518 -Phenotype MP:0004948 abnormal neuronal precursor proliferation 0.05908699304062448 0.02774770723692174 1.0 4519 -Phenotype MP:0003290 intestinal hypoperistalsis 0.05907973904088393 0.027616229863620757 1.0 4520 -Biological Process GO:0061437 renal system vasculature development 0.05906777472386471 0.027399378880537145 1.0 4521 -Biological Process GO:0061440 kidney vasculature development 0.05906777472386471 0.027399378880537145 1.0 4521 -Biological Process GO:0062009 secondary palate development 0.059046664192089926 0.027016754484892543 1.0 4523 -Phenotype MP:0013295 pancreas atrophy 0.05903141954615676 0.026740448160673776 1.0 4524 -Phenotype MP:0000424 retarded hair growth 0.059030847395447394 0.026730078037281137 1.0 4525 -Phenotype MP:0003231 abnormal placenta vasculature 0.05902080042065061 0.026547978519339648 1.0 4526 -Biological Process GO:0002444 myeloid leukocyte mediated immunity 0.05901197877752418 0.026388087906168263 1.0 4527 -Biological Process GO:0051338 regulation of transferase activity 0.05898890095755316 0.025969806784052998 1.0 4528 -Phenotype MP:0001856 myocarditis 0.05898611206311122 0.02591925859977472 1.0 4529 -Biological Process GO:0030225 macrophage differentiation 0.05888761834911449 0.024134078662346084 1.0 4530 -Biological Process GO:0003176 aortic valve development 0.05887922348397112 0.023981923319398427 1.0 4531 -Biological Process GO:0032535 regulation of cellular component size 0.0588713460278949 0.023839145917931837 1.0 4532 -Phenotype MP:0009146 abnormal pancreatic acinar cell morphology 0.05884567224274262 0.023373813417898112 1.0 4533 -Biological Process GO:0048814 regulation of dendrite morphogenesis 0.05883017177720351 0.023092870411706462 1.0 4534 -Biological Process GO:0061308 cardiac neural crest cell development involved in heart development 0.05882035700145416 0.022914979457582387 1.0 4535 -Biological Process GO:0061307 cardiac neural crest cell differentiation involved in heart development 0.05882035700145416 0.022914979457582387 1.0 4535 -Phenotype MP:0000410 waved hair 0.05881639581072695 0.022843183624857714 1.0 4537 -Biological Process GO:0032815 negative regulation of natural killer cell activation 0.05880296647637373 0.022599779479683658 1.0 4538 -Phenotype MP:0009172 small pancreatic islets 0.05877796184646744 0.022146575291921808 1.0 4539 -Biological Process GO:0010759 positive regulation of macrophage chemotaxis 0.05877216283144848 0.022041469241508918 1.0 4540 -Biological Process GO:0030278 regulation of ossification 0.058770494825678754 0.02201123695241346 1.0 4541 -Biological Process GO:0051282 regulation of sequestering of calcium ion 0.05876946660596527 0.02199260066458051 1.0 4542 -Phenotype MP:0008496 decreased IgG2a level 0.05871771345811294 0.021054584648169297 1.0 4543 -Phenotype MP:0000107 abnormal frontal bone morphology 0.0587152722414338 0.021010338057583226 1.0 4544 -Phenotype MP:0010179 rough coat 0.0586955477728941 0.020652835795919148 1.0 4545 -Biological Process GO:0042060 wound healing 0.05866655878174909 0.020127415814293906 1.0 4546 -Biological Process GO:0098930 axonal transport 0.05864655073345948 0.019764773723298105 1.0 4547 -Phenotype MP:0000968 abnormal sensory neuron innervation pattern 0.05863747178957013 0.019600219582463812 1.0 4548 -Phenotype MP:0031239 increased atretic ovarian follicle number 0.058622097527017414 0.019321563981530968 1.0 4549 -Phenotype MP:0008212 absent mature B cells 0.058618248244300064 0.019251796460319087 1.0 4550 -Phenotype MP:0004361 bowed ulna 0.058609666281970174 0.01909625001625265 1.0 4551 -Phenotype MP:0009342 enlarged gallbladder 0.05857989331295688 0.018556620584043514 1.0 4552 -Phenotype MP:0001168 abnormal prostate gland epithelium morphology 0.058574918167709766 0.01846644701742149 1.0 4553 -Phenotype MP:0010574 dilated aorta 0.058539817447818 0.01783025310821255 1.0 4554 -Biological Process GO:0043200 response to amino acid 0.05851374060503434 0.017357615264842963 1.0 4555 -Phenotype MP:0002591 decreased mean corpuscular volume 0.05849617032669152 0.0170391572930614 1.0 4556 -Phenotype MP:0008325 abnormal gonadotroph morphology 0.05847917186407936 0.01673106337324669 1.0 4557 -Biological Process GO:2000319 regulation of T-helper 17 cell differentiation 0.05847370462496726 0.016631970698394664 1.0 4558 -Phenotype MP:0000291 enlarged pericardium 0.058470185978926836 0.016568195904416588 1.0 4559 -Phenotype MP:0003855 abnormal forelimb zeugopod morphology 0.058458021970682617 0.016347725555648757 1.0 4560 -Phenotype MP:0005505 thrombocytosis 0.05845250568192539 0.01624774386525595 1.0 4561 -Biological Process GO:0070242 thymocyte apoptotic process 0.0584438593317419 0.01609103040352103 1.0 4562 -Phenotype MP:0002885 abnormal AMPA-mediated synaptic currents 0.05843212261743602 0.01587830467656876 1.0 4563 -Biological Process GO:0042130 negative regulation of T cell proliferation 0.05838375161282128 0.015001589366651838 1.0 4564 -Phenotype MP:0001758 abnormal urine glucose level 0.0583717746721657 0.014784509582546818 1.0 4565 -Biological Process GO:0008206 bile acid metabolic process 0.05837103016313194 0.014771015497123856 1.0 4566 -Biological Process GO:0048538 thymus development 0.05836330979400861 0.01463108526696751 1.0 4567 -Phenotype MP:0003574 abnormal oviduct morphology 0.05835417735013282 0.014465561448997777 1.0 4568 -Phenotype MP:0008079 decreased CD8-positive, alpha-beta T cell number 0.05835150354095675 0.014417099163396608 1.0 4569 -Biological Process GO:0007286 spermatid development 0.05831747431158818 0.013800325817262581 1.0 4570 -Phenotype MP:0013272 abnormal translation 0.05829750688517232 0.013438419990045485 1.0 4571 -Biological Process GO:0032691 negative regulation of interleukin-1 beta production 0.05828350801966764 0.013184693200470344 1.0 4572 -Phenotype MP:0010819 primary atelectasis 0.058270428934036556 0.012947637247140173 1.0 4573 -Phenotype MP:0013404 decreased circulating lactate level 0.058267256911565424 0.01289014493979632 1.0 4574 -Biological Process GO:0060065 uterus development 0.05825575399330596 0.012681656721965884 1.0 4575 -Phenotype MP:0013697 decreased granulocyte monocyte progenitor cell number 0.05823571239596159 0.012318406560697975 1.0 4576 -Phenotype MP:0004182 abnormal spermiation 0.0582340579772449 0.01228842053436903 1.0 4577 -Phenotype MP:0005180 abnormal circulating testosterone level 0.05823063748952495 0.012226424841384179 1.0 4578 -Phenotype MP:0009819 abnormal circulating androgen level 0.05823063748952495 0.012226424841384179 1.0 4578 -Phenotype MP:0005159 azoospermia 0.05816569770405866 0.011049403512295193 1.0 4580 -Biological Process GO:0030031 cell projection assembly 0.05816065272670834 0.01095796425201027 1.0 4581 -Phenotype MP:0005362 abnormal Langerhans cell physiology 0.0581257291757562 0.010324981496323004 1.0 4582 -Biological Process GO:0002366 leukocyte activation involved in immune response 0.05809408832021612 0.009751496974101517 1.0 4583 -Biological Process GO:0043588 skin development 0.05807179455062772 0.009347426616878622 1.0 4584 -Biological Process GO:0031016 pancreas development 0.058058458190826 0.009105707617865657 1.0 4585 -Biological Process GO:0030857 negative regulation of epithelial cell differentiation 0.05804003010108838 0.008771701976796742 1.0 4586 -Biological Process GO:0042490 mechanoreceptor differentiation 0.058026589210116386 0.008528088370093204 1.0 4587 -Biological Process GO:1901699 cellular response to nitrogen compound 0.05802654132175633 0.008527220402624644 1.0 4588 -Phenotype MP:0002703 abnormal renal tubule morphology 0.05799704067657885 0.007992526788433261 1.0 4589 -Phenotype MP:0004799 increased susceptibility to experimental autoimmune encephalomyelitis 0.057994662742559266 0.007949427184082598 1.0 4590 -Phenotype MP:0012544 abnormal caudal neuropore morphology 0.05798966478055512 0.007858840068054717 1.0 4591 -Phenotype MP:0030039 abnormal facial muscle morphology 0.0579773579256716 0.007635780650967185 1.0 4592 -Phenotype MP:0003361 abnormal circulating gonadotropin level 0.05797718713363742 0.007632685077650653 1.0 4593 -Biological Process GO:0045198 establishment of epithelial cell apical/basal polarity 0.05797603366575488 0.007611778690442525 1.0 4594 -Phenotype MP:0005637 abnormal iron homeostasis 0.057965414938050075 0.007419316259182578 1.0 4595 -Phenotype MP:0005478 decreased circulating thyroxine level 0.057954822881812196 0.007227337243216078 1.0 4596 -Phenotype MP:0008249 abnormal common lymphocyte progenitor cell morphology 0.05790756905723593 0.006370870610197002 1.0 4597 -Phenotype MP:0000467 abnormal esophagus morphology 0.05790137065474121 0.006258525737324769 1.0 4598 -Biological Process GO:0070234 positive regulation of T cell apoptotic process 0.057899439752245985 0.006223528494803004 1.0 4599 -Phenotype MP:0000631 abnormal neuroendocrine gland morphology 0.05788184901031879 0.00590469962442492 1.0 4600 -Phenotype MP:0008196 abnormal follicular dendritic cell morphology 0.057880842782024544 0.005886461926906332 1.0 4601 -Phenotype MP:0000445 short snout 0.05787609638258995 0.005800434334871924 1.0 4602 -Phenotype MP:0011970 abnormal circulating lactate dehydrogenase level 0.057871078857155145 0.005709492635363613 1.0 4603 -Phenotype MP:0012707 incomplete caudal neuropore closure 0.057855845600089384 0.005433392732212506 1.0 4604 -Phenotype MP:0011289 abnormal nephron number 0.05783632579439635 0.005079599945935097 1.0 4605 -Biological Process GO:0022406 membrane docking 0.057835175927602345 0.005058758827775631 1.0 4606 -Phenotype MP:0013327 abnormal male reproductive gland physiology 0.057804997954056025 0.0045117887650066415 1.0 4607 -Biological Process GO:0031641 regulation of myelination 0.057751328055599904 0.00353903200642931 1.0 4608 -Phenotype MP:0012176 abnormal head development 0.057743844297998836 0.0034033903153621106 1.0 4609 -Biological Process GO:0002702 positive regulation of production of molecular mediator of immune response 0.05774319794704463 0.0033916753265657725 1.0 4610 -Biological Process GO:0048596 embryonic camera-type eye morphogenesis 0.05773629899675836 0.003266633157470813 1.0 4611 -Phenotype MP:0010096 abnormal incisor color 0.057731585053421575 0.0031811938260705645 1.0 4612 -Biological Process GO:0140253 cell-cell fusion 0.0577162276444948 0.0029028436939202338 1.0 4613 -Biological Process GO:0000768 syncytium formation by plasma membrane fusion 0.0577162276444948 0.0029028436939202338 1.0 4613 -Biological Process GO:0044706 multi-multicellular organism process 0.05771285051409558 0.0028416338441732266 1.0 4615 -Biological Process GO:0048745 smooth muscle tissue development 0.0577128444317907 0.002841523603547627 1.0 4616 -Phenotype MP:0013614 abnormal areal bone mineral density 0.05768832920043743 0.0023971896719960396 1.0 4617 -Biological Process GO:1901016 regulation of potassium ion transmembrane transporter activity 0.05768297566530001 0.00230015786017951 1.0 4618 -Biological Process GO:0048318 axial mesoderm development 0.05765946244952147 0.0018739852714022337 1.0 4619 -Phenotype MP:0008687 increased interleukin-2 secretion 0.0576368281660814 0.0014637431650214193 1.0 4620 -Phenotype MP:0003717 pallor 0.05760507045383978 0.0008881406371864396 1.0 4621 -Phenotype MP:0006378 abnormal spermatogonia morphology 0.057558333844640486 4.104843505063989e-05 1.0 4622 -Biological Process GO:0002381 immunoglobulin production involved in immunoglobulin-mediated immune response 0.05752277408287454 -0.0006034655213061928 1.0 4623 -Phenotype MP:0031576 abnormal heart atrium size 0.05752087812922746 -0.0006378293225653658 1.0 4624 -Phenotype MP:0030018 increased cardiac muscle cell glucose uptake 0.05751684942331281 -0.0007108488552928146 1.0 4625 -Phenotype MP:0008646 abnormal circulating interleukin-12b level 0.057513233056287194 -0.0007763948236448959 1.0 4626 -Phenotype MP:0002566 abnormal sexual interaction 0.05751020909459692 -0.0008312035573394038 1.0 4627 -Phenotype MP:0014143 decreased body fat mass 0.057498596566099125 -0.001041678440008272 1.0 4628 -Phenotype MP:0020470 shortened circadian behavior period 0.05749635172861889 -0.0010823656947567225 1.0 4629 -Phenotype MP:0008743 decreased liver iron level 0.057495706347979514 -0.0010940630967803161 1.0 4630 -Phenotype MP:0000715 decreased thymocyte number 0.057492362305876954 -0.0011546732274086008 1.0 4631 -Biological Process GO:0051098 regulation of binding 0.057488377908981314 -0.0012268896675469592 1.0 4632 -Phenotype MP:0002739 abnormal olfactory bulb development 0.057479027478540945 -0.001396364450770419 1.0 4633 -Biological Process GO:0045932 negative regulation of muscle contraction 0.05745211272491746 -0.0018841892696322398 1.0 4634 -Phenotype MP:0005187 abnormal penis morphology 0.05744451094066694 -0.0020219701713976353 1.0 4635 -Phenotype MP:0006402 small molars 0.05743802253317798 -0.002139571329939943 1.0 4636 -Phenotype MP:0005564 increased hemoglobin content 0.057424863639569 -0.002378073787774818 1.0 4637 -Biological Process GO:1903725 regulation of phospholipid metabolic process 0.05742442888460764 -0.0023859536392214983 1.0 4638 -Phenotype MP:0008897 decreased IgG2c level 0.05742334443005537 -0.002405609172871377 1.0 4639 -Phenotype MP:0002439 abnormal plasma cell morphology 0.05742102723620901 -0.002447607873070535 1.0 4640 -Phenotype MP:0002590 increased mean corpuscular volume 0.05742020934457759 -0.002462432004196844 1.0 4641 -Phenotype MP:0013556 abnormal holocrine gland physiology 0.057394075747913886 -0.002936098500907923 1.0 4642 -Phenotype MP:0002991 abnormal sebaceous gland physiology 0.057394075747913886 -0.002936098500907923 1.0 4642 -Biological Process GO:0045589 regulation of regulatory T cell differentiation 0.057390380154549225 -0.003003080431670594 1.0 4644 -Biological Process GO:0050881 musculoskeletal movement 0.05738918531641324 -0.0030247366468977893 1.0 4645 -Biological Process GO:0040015 negative regulation of multicellular organism growth 0.057380398237406594 -0.003184000791935345 1.0 4646 -Phenotype MP:0002018 increased malignant tumor incidence 0.05737034661849938 -0.0033661844834999986 1.0 4647 -Biological Process GO:0033619 membrane protein proteolysis 0.057366070360732824 -0.0034436908467221435 1.0 4648 -Biological Process GO:0099536 synaptic signaling 0.05736092505522972 -0.0035369485358005847 1.0 4649 -Phenotype MP:0008973 decreased erythroid progenitor cell number 0.057330869748277946 -0.004081695289744118 1.0 4650 -Biological Process GO:0010608 post-transcriptional regulation of gene expression 0.05733080672487412 -0.004082837577018489 1.0 4651 -Phenotype MP:0004902 abnormal uterus size 0.0573256354634567 -0.004176565712134529 1.0 4652 -Phenotype MP:0008775 abnormal heart ventricle pressure 0.05728814391391124 -0.004856092956623449 1.0 4653 -Phenotype MP:0005499 abnormal olfactory system morphology 0.05728301613064202 -0.0049490330585268 1.0 4654 -Biological Process GO:0032331 negative regulation of chondrocyte differentiation 0.05726650256880439 -0.005248338243515555 1.0 4655 -Phenotype MP:0006062 abnormal vena cava morphology 0.05726475437037559 -0.0052800240093892675 1.0 4656 -Biological Process GO:0014706 striated muscle tissue development 0.05725116502168537 -0.005526328384156938 1.0 4657 -Phenotype MP:0021205 effusion 0.05723666188813259 -0.005789194936728296 1.0 4658 -Biological Process GO:0045616 regulation of keratinocyte differentiation 0.05723164514796075 -0.0058801224034938735 1.0 4659 -Phenotype MP:0004986 abnormal osteoblast morphology 0.0572230903422698 -0.006035176638615881 1.0 4660 -Phenotype MP:0004645 decreased vertebrae number 0.057204576812150076 -0.006370730870450508 1.0 4661 -Biological Process GO:0002066 columnar/cuboidal epithelial cell development 0.05718197671290226 -0.0067803533948121875 1.0 4662 -Phenotype MP:0008519 thin retina outer plexiform layer 0.05718157707631755 -0.006787596732324234 1.0 4663 -Phenotype MP:0003383 abnormal gluconeogenesis 0.05716155263102496 -0.007150536015897731 1.0 4664 -Phenotype MP:0030466 alveolar process atrophy 0.05713221039702332 -0.007682358457488296 1.0 4665 -Phenotype MP:0003119 abnormal digestive system development 0.05710112603066475 -0.008245756718547298 1.0 4666 -Biological Process GO:0006413 translational initiation 0.057087047916808076 -0.00850091986951353 1.0 4667 -Phenotype MP:0012125 decreased bronchoconstrictive response 0.05708112270145682 -0.008608313277080181 1.0 4668 -Phenotype MP:0005592 abnormal vascular smooth muscle morphology 0.05707480324333769 -0.008722852260248866 1.0 4669 -Phenotype MP:0012260 encephalomeningocele 0.057037072571449854 -0.009406713551966492 1.0 4670 -Phenotype MP:0001081 abnormal cranial ganglia morphology 0.05702285652475003 -0.009664376709626624 1.0 4671 -Phenotype MP:0001360 abnormal social investigation 0.05700435748457222 -0.009999668314004655 1.0 4672 -Phenotype MP:0013250 abnormal dental pulp morphology 0.056983923912139134 -0.010370022949618803 1.0 4673 -Phenotype MP:0008858 abnormal hair cycle anagen phase 0.056952758585164576 -0.010934888606529995 1.0 4674 -Biological Process GO:0032941 secretion by tissue 0.0569373559323032 -0.011214058776437648 1.0 4675 -Biological Process GO:0097193 intrinsic apoptotic signaling pathway 0.05693675706598589 -0.011224913115171448 1.0 4676 -Biological Process GO:0030199 collagen fibril organization 0.05693659682327057 -0.011227817484078853 1.0 4677 -Biological Process GO:0042594 response to starvation 0.05690884888599723 -0.011730743599008735 1.0 4678 -Phenotype MP:0005095 decreased T cell proliferation 0.0569038360545443 -0.011821600220983457 1.0 4679 -Biological Process GO:0046597 negative regulation of viral entry into host cell 0.05688428821159208 -0.01217590117728065 1.0 4680 -Biological Process GO:0003413 chondrocyte differentiation involved in endochondral bone morphogenesis 0.056869903100763786 -0.012436628590293177 1.0 4681 -Phenotype MP:0010178 increased number of Howell-Jolly bodies 0.05686809215884003 -0.012469451570145864 1.0 4682 -Phenotype MP:0003896 prolonged PR interval 0.05683192776847057 -0.013124924305584082 1.0 4683 -Biological Process GO:0045664 regulation of neuron differentiation 0.056818786124502085 -0.013363114116947546 1.0 4684 -Biological Process GO:0003180 aortic valve morphogenesis 0.05679301414700699 -0.013830226334622981 1.0 4685 -Phenotype MP:0002578 impaired ability to fire action potentials 0.05678668681949173 -0.013944907949108217 1.0 4686 -Biological Process GO:0060019 radial glial cell differentiation 0.056762833955251724 -0.014377236602009643 1.0 4687 -Phenotype MP:0002836 abnormal chorion morphology 0.0567471305039593 -0.014661858686588135 1.0 4688 -Biological Process GO:0042069 regulation of catecholamine metabolic process 0.0567441961373768 -0.01471504352589989 1.0 4689 -Biological Process GO:1905314 semi-lunar valve development 0.05671687654591684 -0.015210205953978208 1.0 4690 -Biological Process GO:0002275 myeloid cell activation involved in immune response 0.056705725866015966 -0.015412309918180317 1.0 4691 -Phenotype MP:0005489 vascular smooth muscle hyperplasia 0.05666365648158389 -0.016174809554153107 1.0 4692 -Biological Process GO:0001541 ovarian follicle development 0.05665693688671569 -0.01629660094021816 1.0 4693 -Biological Process GO:1900181 negative regulation of protein localization to nucleus 0.05665509960373549 -0.016329901346736897 1.0 4694 -Phenotype MP:0004896 abnormal endometrium morphology 0.056644836521878794 -0.01651591776426558 1.0 4695 -Phenotype MP:0002825 abnormal notochord morphology 0.05664360583019201 -0.016538223818319715 1.0 4696 -Biological Process GO:0035162 embryonic hemopoiesis 0.05663855640442994 -0.01662974370522625 1.0 4697 -Phenotype MP:0004952 increased spleen weight 0.056627017001947944 -0.01683889319268958 1.0 4698 -Biological Process GO:2000050 regulation of non-canonical Wnt signaling pathway 0.05661844457735932 -0.016994266766999555 1.0 4699 -Phenotype MP:0009404 centrally nucleated skeletal muscle fibers 0.05655259711960958 -0.01818773948455198 1.0 4700 -Biological Process GO:0051168 nuclear export 0.0565519688711984 -0.01819912636817993 1.0 4701 -Biological Process GO:0006970 response to osmotic stress 0.05652766750496674 -0.01863958403485201 1.0 4702 -Phenotype MP:0002021 increased incidence of induced tumors 0.05652682638186746 -0.01865482923193937 1.0 4703 -Phenotype MP:0009648 abnormal superovulation 0.0565068019641638 -0.01901776801546871 1.0 4704 -Phenotype MP:0012766 abnormal KLRG1-positive NK cell number 0.05648769245314833 -0.01936412428831695 1.0 4705 -Phenotype MP:0004757 abnormal distal convoluted tubule morphology 0.05648124879092875 -0.01948091444731474 1.0 4706 -Phenotype MP:0002947 increased hemangioma incidence 0.05646091113174112 -0.01984953067349568 1.0 4707 -Phenotype MP:0002273 abnormal pulmonary alveolus epithelial cell morphology 0.05645579345228202 -0.01994228764575157 1.0 4708 -Biological Process GO:2000831 regulation of steroid hormone secretion 0.05643004518266137 -0.020408970162686783 1.0 4709 -Phenotype MP:0012137 abnormal forebrain size 0.05639616836060779 -0.0210229811550624 1.0 4710 -Biological Process GO:0060571 morphogenesis of an epithelial fold 0.05638969199145205 -0.021140364121092 1.0 4711 -Biological Process GO:0003071 renal system process involved in regulation of systemic arterial blood pressure 0.05636077181512078 -0.02166453684723367 1.0 4712 -Biological Process GO:0099174 regulation of presynapse organization 0.056349400240518044 -0.02187064448612779 1.0 4713 -Phenotype MP:0006316 increased urine sodium level 0.05634894375274446 -0.021878918240685424 1.0 4714 -Phenotype MP:0002705 dilated renal tubule 0.056316472969676346 -0.0224674450423829 1.0 4715 -Phenotype MP:0031309 skin cyst 0.056290316714892485 -0.02294152221323636 1.0 4716 -Phenotype MP:0004500 increased incidence of tumors by ionizing radiation induction 0.05626575893091057 -0.023386627403133842 1.0 4717 -Phenotype MP:0006143 increased systemic arterial diastolic blood pressure 0.05625214723039895 -0.02363333690043673 1.0 4718 -Phenotype MP:0013629 abnormal bone trabecular spacing 0.0562471795639905 -0.023723374914522574 1.0 4719 -Phenotype MP:0008200 decreased follicular dendritic cell number 0.056222658652851254 -0.0241678117911207 1.0 4720 -Phenotype MP:0008898 abnormal acrosome morphology 0.05618108625701024 -0.02492130360287926 1.0 4721 -Biological Process GO:0050773 regulation of dendrite development 0.0561767511476573 -0.024999876639973592 1.0 4722 -Biological Process GO:0006936 muscle contraction 0.0561708128872499 -0.0251075064867156 1.0 4723 -Biological Process GO:0048599 oocyte development 0.056160530126846187 -0.02529387957418698 1.0 4724 -Biological Process GO:0071826 protein-RNA complex organization 0.05615028458874083 -0.025479578014540778 1.0 4725 -Biological Process GO:0061037 negative regulation of cartilage development 0.05614408312058905 -0.025591978451867423 1.0 4726 -Phenotype MP:0008512 disorganized retina inner nuclear layer 0.05611450597642098 -0.026128058595794434 1.0 4727 -Phenotype MP:0000097 short maxilla 0.056110123375629706 -0.026207492406226263 1.0 4728 -Phenotype MP:0030033 abnormal nasal bridge morphology 0.056108536989949664 -0.026236245346633488 1.0 4729 -Biological Process GO:0003081 regulation of systemic arterial blood pressure by renin-angiotensin 0.05610516725233483 -0.026297321203561767 1.0 4730 -Phenotype MP:0005128 decreased adrenocorticotropin level 0.056084298083444284 -0.02667557094258016 1.0 4731 -Phenotype MP:0008255 decreased megakaryocyte cell number 0.056079183474178285 -0.026768272268166804 1.0 4732 -Phenotype MP:0004484 abnormal response of heart to induced stress 0.05605794603689185 -0.027153196802207676 1.0 4733 -Phenotype MP:0000233 abnormal blood flow velocity 0.05604239204182493 -0.027435110020966498 1.0 4734 -Phenotype MP:0003439 abnormal glycerol level 0.05601452830048381 -0.0279401350627221 1.0 4735 -Biological Process GO:1905517 macrophage migration 0.05600562412345944 -0.028101521587183438 1.0 4736 -Phenotype MP:0009289 decreased epididymal fat pad weight 0.056003804817966296 -0.028134496155149506 1.0 4737 -Phenotype MP:0004567 decreased myocardial fiber number 0.056002472068728215 -0.02815865198301812 1.0 4738 -Phenotype MP:0000694 spleen hypoplasia 0.05596544753185062 -0.028829714711231053 1.0 4739 -Biological Process GO:0061005 cell differentiation involved in kidney development 0.05595410488405683 -0.029035298057184106 1.0 4740 -Biological Process GO:0016072 rRNA metabolic process 0.055940609493603244 -0.029279899456683692 1.0 4741 -Biological Process GO:0110110 positive regulation of animal organ morphogenesis 0.05586707648564648 -0.030612671318119955 1.0 4742 -Phenotype MP:0008498 decreased IgG3 level 0.055819593127777956 -0.03147329819864814 1.0 4743 -Phenotype MP:0012460 decreased dentate gyrus size 0.05580016080086425 -0.0318255054485956 1.0 4744 -Phenotype MP:0014068 abnormal muscle glycogen level 0.05579965050260971 -0.031834754507943104 1.0 4745 -Phenotype MP:0005609 abnormal circulating antidiuretic hormone level 0.05579578232397542 -0.031904864514075655 1.0 4746 -Biological Process GO:0030202 heparin metabolic process 0.05578876104964725 -0.03203212378329403 1.0 4747 -Phenotype MP:0003967 abnormal follicle stimulating hormone level 0.055773297467285876 -0.0323123982888652 1.0 4748 -Biological Process GO:0048048 embryonic eye morphogenesis 0.05576574426579384 -0.03244929863732187 1.0 4749 -Biological Process GO:0042475 odontogenesis of dentin-containing tooth 0.05573490181048424 -0.03300831230637251 1.0 4750 -Phenotype MP:0009444 ovarian follicular cyst 0.05572210543888079 -0.033240244121423394 1.0 4751 -Phenotype MP:0002712 increased circulating glucagon level 0.05571959993911768 -0.03328565583074808 1.0 4752 -Biological Process GO:0031348 negative regulation of defense response 0.055714550476513414 -0.03337717638541245 1.0 4753 -Biological Process GO:0014888 striated muscle adaptation 0.055713104954426385 -0.03340337619983878 1.0 4754 -Phenotype MP:0006254 thin cerebral cortex 0.05564162581576071 -0.03469892206883589 1.0 4755 -Phenotype MP:0000914 exencephaly 0.05563411163455889 -0.034835115181912464 1.0 4756 -Biological Process GO:1903034 regulation of response to wounding 0.05562318752245776 -0.03503311264759647 1.0 4757 -Biological Process GO:0032925 regulation of activin receptor signaling pathway 0.05561915931332728 -0.03510612317620481 1.0 4758 -Biological Process GO:1905515 non-motile cilium assembly 0.05561654627883872 -0.03515348393208967 1.0 4759 -Phenotype MP:0005289 increased oxygen consumption 0.05560187934361038 -0.03541931935904961 1.0 4760 -Phenotype MP:0001246 mixed cellular infiltration to dermis 0.055590812797114975 -0.03561989842119037 1.0 4761 -Biological Process GO:0090207 regulation of triglyceride metabolic process 0.05557554360302375 -0.03589664967613106 1.0 4762 -Phenotype MP:0009780 abnormal chondrocyte physiology 0.05555912074222136 -0.036194310922011 1.0 4763 -Phenotype MP:0010403 atrial septal defect 0.05554382407129321 -0.036471560189423935 1.0 4764 -Phenotype MP:0012730 abnormal internal carotid artery morphology 0.05553302566908069 -0.03666727918715322 1.0 4765 -Phenotype MP:0002553 preference for addictive substance 0.05553139840680177 -0.03669677300818395 1.0 4766 -Biological Process GO:0090263 positive regulation of canonical Wnt signaling pathway 0.055521723665481026 -0.036872125864775125 1.0 4767 -Phenotype MP:0000024 lowered ear position 0.05551055415192985 -0.0370745711853269 1.0 4768 -Biological Process GO:0007626 locomotory behavior 0.055509851736532445 -0.037087302331552385 1.0 4769 -Phenotype MP:0005059 lysosomal protein accumulation 0.05549660697978831 -0.03732736104247213 1.0 4770 -Phenotype MP:0002223 lymphoid hypoplasia 0.0554781706328632 -0.03766151634350255 1.0 4771 -Biological Process GO:0006644 phospholipid metabolic process 0.055460697081929466 -0.037978221149289185 1.0 4772 -Phenotype MP:0003440 decreased glycerol level 0.055446692271332365 -0.03823205569253998 1.0 4773 -Phenotype MP:0004462 small basisphenoid bone 0.055440321592163944 -0.038347523047539286 1.0 4774 -Biological Process GO:0015914 phospholipid transport 0.05543660043512055 -0.0384149683151439 1.0 4775 -Phenotype MP:0000825 dilated lateral ventricle 0.05542872333574067 -0.03855773925155681 1.0 4776 -Biological Process GO:0140058 neuron projection arborization 0.05542281201308652 -0.03866488085661607 1.0 4777 -Biological Process GO:0050728 negative regulation of inflammatory response 0.05535357611760272 -0.03991976836722096 1.0 4778 -Biological Process GO:2000738 positive regulation of stem cell differentiation 0.05534311171073203 -0.04010943376255035 1.0 4779 -Phenotype MP:0003397 increased muscle weight 0.055305743983656064 -0.04078671674819894 1.0 4780 -Phenotype MP:0005600 increased ventricle muscle contractility 0.05529944309674195 -0.040900919131789164 1.0 4781 -Phenotype MP:0010019 liver vascular congestion 0.05527095374762525 -0.04141728319615192 1.0 4782 -Biological Process GO:0002070 epithelial cell maturation 0.05526865424219218 -0.04145896129720573 1.0 4783 -Phenotype MP:0000420 ruffled hair 0.05526076788483303 -0.041601900032741924 1.0 4784 -Biological Process GO:1904861 excitatory synapse assembly 0.05522122407040719 -0.042318624190029235 1.0 4785 -Phenotype MP:0003850 abnormal thymocyte activation 0.0552148308940974 -0.04243449930146088 1.0 4786 -Phenotype MP:0000119 abnormal tooth eruption 0.055214172477753065 -0.04244643297317134 1.0 4787 -Biological Process GO:0003215 cardiac right ventricle morphogenesis 0.05520479876737272 -0.042616329700903774 1.0 4788 -Phenotype MP:0008962 abnormal carbon dioxide production 0.05515363299846687 -0.04354369958500484 1.0 4789 -Biological Process GO:1902895 positive regulation of miRNA transcription 0.05512873032648424 -0.04399505580468434 1.0 4790 -Phenotype MP:0004275 abnormal postnatal subventricular zone morphology 0.05511386977946209 -0.044264400408788186 1.0 4791 -Phenotype MP:0002233 abnormal nose morphology 0.05507295081374097 -0.045006048923211056 1.0 4792 -Phenotype MP:0013509 abnormal CD4-negative NK T cell number 0.05506658261860431 -0.045121471255604576 1.0 4793 -Phenotype MP:0000633 abnormal pituitary gland morphology 0.05505307159457862 -0.04536635601064166 1.0 4794 -Phenotype MP:0011629 decreased mitochondrial number 0.055023683695340275 -0.0458990061260105 1.0 4795 -Biological Process GO:0007157 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules 0.05501157859025663 -0.04611840886613372 1.0 4796 -Biological Process GO:0048813 dendrite morphogenesis 0.055006916139660356 -0.046202914901351276 1.0 4797 -Biological Process GO:2001238 positive regulation of extrinsic apoptotic signaling pathway 0.05500084975621011 -0.046312866954012044 1.0 4798 -Biological Process GO:0009100 glycoprotein metabolic process 0.05499394974866878 -0.046437928285655024 1.0 4799 -Phenotype MP:0006006 increased sensory neuron number 0.054976513045190134 -0.0467539652382874 1.0 4800 -Phenotype MP:0005595 abnormal vascular smooth muscle physiology 0.05496384173319235 -0.046983630371638836 1.0 4801 -Phenotype MP:0001916 intracerebral hemorrhage 0.05494160906909684 -0.04738659320336042 1.0 4802 -Phenotype MP:0002624 abnormal tricuspid valve morphology 0.054939283543210204 -0.04742874292021376 1.0 4803 -Phenotype MP:0010182 decreased susceptibility to weight gain 0.054909390499131794 -0.047970548690267484 1.0 4804 -Biological Process GO:0031076 embryonic camera-type eye development 0.05487532718772192 -0.04858793976695392 1.0 4805 -Biological Process GO:0008306 associative learning 0.05487299797875067 -0.0486301562390193 1.0 4806 -Biological Process GO:0030203 glycosaminoglycan metabolic process 0.054864907571318344 -0.0487767933435384 1.0 4807 -Phenotype MP:0031306 abnormal cartilage physiology 0.05481468100821141 -0.04968714030017235 1.0 4808 -Biological Process GO:0071616 acyl-CoA biosynthetic process 0.054784074209802136 -0.0502418827324759 1.0 4809 -Biological Process GO:0035384 thioester biosynthetic process 0.054784074209802136 -0.0502418827324759 1.0 4809 -Phenotype MP:0020467 abnormal circadian behavior 0.0547833674722763 -0.050254692216461755 1.0 4811 -Phenotype MP:0009785 abnormal susceptibility to infection induced morbidity/mortality 0.054771648631906866 -0.050467093981696624 1.0 4812 -Phenotype MP:0010519 atrioventricular block 0.054734281915922445 -0.05114435864150222 1.0 4813 -Biological Process GO:0008544 epidermis development 0.054733309663878016 -0.05116198052591909 1.0 4814 -Phenotype MP:0006111 abnormal coronary circulation 0.0547323904839534 -0.051178640488202275 1.0 4815 -Biological Process GO:0006639 acylglycerol metabolic process 0.054715449638900626 -0.05148569010065063 1.0 4816 -Biological Process GO:0043030 regulation of macrophage activation 0.054693312066943944 -0.05188692940534132 1.0 4817 -Phenotype MP:0010368 abnormal lymphatic system physiology 0.0546853787977265 -0.05203071840943622 1.0 4818 -Biological Process GO:0070306 lens fiber cell differentiation 0.05467295399164429 -0.05225591566969125 1.0 4819 -Phenotype MP:0004289 abnormal bony labyrinth 0.05467145724448019 -0.05228304392895092 1.0 4820 -Phenotype MP:0030063 abnormal face size 0.05464857152215574 -0.05269784331755484 1.0 4821 -Biological Process GO:0030641 regulation of cellular pH 0.05462259587843232 -0.05316864694709796 1.0 4822 -Phenotype MP:0014267 decreased sex gland secretion 0.054607134002417235 -0.05344889052546543 1.0 4823 -Phenotype MP:0009859 eye opacity 0.05457901314957114 -0.05395857566461952 1.0 4824 -Phenotype MP:0021107 retina fold 0.05456921572562923 -0.054136152120515695 1.0 4825 -Phenotype MP:0020973 abnormal gland development 0.05456799781676336 -0.05415822648835848 1.0 4826 -Biological Process GO:0022038 corpus callosum development 0.054536276719585386 -0.05473316537509009 1.0 4827 -Phenotype MP:0010754 abnormal heart left ventricle pressure 0.05452078114003478 -0.05501401982366425 1.0 4828 -Phenotype MP:0005223 abnormal dorsal-ventral polarity of the somites 0.05451832106319987 -0.055058608251006516 1.0 4829 -Biological Process GO:0080135 regulation of cellular response to stress 0.05449571607434156 -0.0554683193986336 1.0 4830 -Biological Process GO:0072006 nephron development 0.05446394880919181 -0.05604409507112165 1.0 4831 -Biological Process GO:0007605 sensory perception of sound 0.054448753283880325 -0.05631951109336295 1.0 4832 -Phenotype MP:0008770 decreased survivor rate 0.05443002658393803 -0.056658928987913484 1.0 4833 -Biological Process GO:0022605 mammalian oogenesis stage 0.054388361892261816 -0.05741409364422847 1.0 4834 -Biological Process GO:0072676 lymphocyte migration 0.05438396317822547 -0.057493819504179616 1.0 4835 -Phenotype MP:0008414 abnormal spatial reference memory 0.05438348341020227 -0.057502515208858414 1.0 4836 -Phenotype MP:0004595 abnormal mandibular condyloid process morphology 0.05435629209060655 -0.05799535273365825 1.0 4837 -Phenotype MP:0008397 abnormal CD4-positive, CD25-positive, alpha-beta regulatory T cell morphology 0.054325345665374725 -0.058556250837884745 1.0 4838 -Phenotype MP:0001491 unresponsive to tactile stimuli 0.05432464532062509 -0.05856894445401113 1.0 4839 -Phenotype MP:0000166 abnormal chondrocyte morphology 0.05431964902597319 -0.05865950134959473 1.0 4840 -Phenotype MP:0013970 absent connection between subcutaneous lymph vessels and lymph sac 0.05429051266852436 -0.059187592317604475 1.0 4841 -Phenotype MP:0002837 dystrophic cardiac calcinosis 0.05425948530478664 -0.059749957416941925 1.0 4842 -Phenotype MP:0008236 decreased susceptibility to neuronal excitotoxicity 0.054168059433297056 -0.06140703404571593 1.0 4843 -Phenotype MP:0004625 abnormal rib joint morphology 0.05415526616648447 -0.06163890958701954 1.0 4844 -Biological Process GO:0030111 regulation of Wnt signaling pathway 0.054136583107299074 -0.06197753650110538 1.0 4845 -Biological Process GO:0046339 diacylglycerol metabolic process 0.0541349474959395 -0.06200718164764375 1.0 4846 -Phenotype MP:0002270 abnormal pulmonary alveolus morphology 0.05412154937791669 -0.06225002000273328 1.0 4847 -Phenotype MP:0008943 increased sensitivity to induced cell death 0.05411952681960852 -0.06228667848952911 1.0 4848 -Phenotype MP:0001778 abnormal brown adipose tissue amount 0.05409761664413637 -0.06268379627594667 1.0 4849 -Phenotype MP:0005163 cyclopia 0.054089005653677136 -0.0628398688493672 1.0 4850 -Phenotype MP:0000785 telencephalon hypoplasia 0.054064933162005 -0.06327617820793639 1.0 4851 -Biological Process GO:0021537 telencephalon development 0.054064263401489954 -0.06328831749059545 1.0 4852 -Biological Process GO:0090100 positive regulation of transmembrane receptor protein serine/threonine kinase signaling pathway 0.054049795297882786 -0.06355054913202805 1.0 4853 -Biological Process GO:0090184 positive regulation of kidney development 0.054047024321835835 -0.06360077254878617 1.0 4854 -Biological Process GO:0050670 regulation of lymphocyte proliferation 0.05399104518028208 -0.06461538390174577 1.0 4855 -Phenotype MP:0001004 abnormal retina photoreceptor morphology 0.05398870621690466 -0.06465777717057809 1.0 4856 -Phenotype MP:0009788 increased susceptibility to bacterial infection induced morbidity/mortality 0.05398279530375416 -0.0647649113534611 1.0 4857 -Phenotype MP:0001447 abnormal nest building behavior 0.05394862175794479 -0.06538430040778907 1.0 4858 -Phenotype MP:0013245 abnormal lipid metabolism 0.05390914556184223 -0.06609979899575613 1.0 4859 -Biological Process GO:0072330 monocarboxylic acid biosynthetic process 0.05387862927405396 -0.06665290094017295 1.0 4860 -Biological Process GO:0032728 positive regulation of interferon-beta production 0.05387708525158619 -0.06668088605537019 1.0 4861 -Phenotype MP:0001599 abnormal blood volume 0.05387158589479413 -0.06678056085709687 1.0 4862 -Phenotype MP:0012734 abnormal response to radiation 0.05378518507620811 -0.06834655935241502 1.0 4863 -Biological Process GO:0060135 maternal process involved in female pregnancy 0.053761635393330454 -0.06877339290046655 1.0 4864 -Biological Process GO:0046461 neutral lipid catabolic process 0.05374497391643729 -0.06907537901786077 1.0 4865 -Biological Process GO:0046464 acylglycerol catabolic process 0.05374497391643729 -0.06907537901786077 1.0 4865 -Biological Process GO:0070663 regulation of leukocyte proliferation 0.05369400752210396 -0.06999913527554397 1.0 4867 -Phenotype MP:0004678 split xiphoid process 0.05363573288927237 -0.07105535197375305 1.0 4868 -Biological Process GO:0001893 maternal placenta development 0.05362677875473365 -0.07121764396871315 1.0 4869 -Phenotype MP:0008738 abnormal liver iron level 0.05361426986266549 -0.07144436527155983 1.0 4870 -Biological Process GO:0032648 regulation of interferon-beta production 0.05359341060540501 -0.0718224353641578 1.0 4871 -Biological Process GO:0051784 negative regulation of nuclear division 0.05357071646205913 -0.07223376242000973 1.0 4872 -Biological Process GO:0030595 leukocyte chemotaxis 0.05356660196740415 -0.07230833685742995 1.0 4873 -Phenotype MP:0003211 abnormal aorta elastic fiber morphology 0.0535199589471238 -0.0731537327781109 1.0 4874 -Phenotype MP:0003706 abnormal cell nucleus count 0.05351656865692722 -0.0732151811466961 1.0 4875 -Biological Process GO:0009060 aerobic respiration 0.05351364978223738 -0.07326808519838353 1.0 4876 -Phenotype MP:0002922 decreased post-tetanic potentiation 0.05349745611287238 -0.07356159239280936 1.0 4877 -Biological Process GO:0032892 positive regulation of organic acid transport 0.05349670269437079 -0.07357524796065164 1.0 4878 -Phenotype MP:0010544 interrupted aorta 0.05348712409679579 -0.07374885823003553 1.0 4879 -Biological Process GO:0031579 membrane raft organization 0.0534737769556497 -0.07399077263887611 1.0 4880 -Phenotype MP:0005150 cachexia 0.05345218241970895 -0.074382169518486 1.0 4881 -Biological Process GO:2000630 positive regulation of miRNA metabolic process 0.053445142099861065 -0.07450977398414704 1.0 4882 -Biological Process GO:0048515 spermatid differentiation 0.05344247524014767 -0.07455811031205167 1.0 4883 -Phenotype MP:0000023 abnormal ear position 0.05342792542479424 -0.07482182296343053 1.0 4884 -Phenotype MP:0004249 abnormal crista ampullaris morphology 0.05341193775292552 -0.0751115964921979 1.0 4885 -Phenotype MP:0012773 abnormal CD4-positive, CD25-positive, alpha-beta regulatory T cell number 0.0534091675861178 -0.07516180524164799 1.0 4886 -Biological Process GO:0046942 carboxylic acid transport 0.05340507624849822 -0.07523595996218142 1.0 4887 -Biological Process GO:0019432 triglyceride biosynthetic process 0.05336844060871737 -0.07589997400407045 1.0 4888 -Phenotype MP:0003670 dilated renal glomerular capsule 0.053357084547232536 -0.0761058004706367 1.0 4889 -Phenotype MP:0000757 herniated abdominal wall 0.05334409848250443 -0.076341170437694 1.0 4890 -Phenotype MP:0005471 decreased thyroxine level 0.05334229366707677 -0.07637388237596385 1.0 4891 -Biological Process GO:0030219 megakaryocyte differentiation 0.05329916697596371 -0.07715554549555413 1.0 4892 -Biological Process GO:0097485 neuron projection guidance 0.053268331338050534 -0.07771443560058398 1.0 4893 -Phenotype MP:0001847 brain inflammation 0.05326229080315226 -0.07782391915312928 1.0 4894 -Biological Process GO:0010758 regulation of macrophage chemotaxis 0.05322789517147608 -0.07844733347178859 1.0 4895 -Biological Process GO:0021988 olfactory lobe development 0.05321492360257807 -0.07868244070466718 1.0 4896 -Biological Process GO:0006325 chromatin organization 0.05321036432437609 -0.0787650767597518 1.0 4897 -Biological Process GO:0140014 mitotic nuclear division 0.053203417578913226 -0.07889098520738273 1.0 4898 -Phenotype MP:0010488 abnormal left subclavian artery morphology 0.05319851795773667 -0.07897978991451034 1.0 4899 -Biological Process GO:0000423 mitophagy 0.05319133492103689 -0.07910998109611894 1.0 4900 -Phenotype MP:0009974 decreased cerebral cortex pyramidal cell number 0.05319027441885138 -0.07912920249765162 1.0 4901 -Biological Process GO:0021683 cerebellar granular layer morphogenesis 0.05318879297505141 -0.07915605338633085 1.0 4902 -Biological Process GO:0043011 myeloid dendritic cell differentiation 0.05315699319752787 -0.07973241833944461 1.0 4903 -Phenotype MP:0005181 decreased circulating estradiol level 0.053151783417127785 -0.0798268446238362 1.0 4904 -Biological Process GO:0007411 axon guidance 0.05310412457005809 -0.08069065221294419 1.0 4905 -Biological Process GO:0042552 myelination 0.05309856507537558 -0.08079141700256091 1.0 4906 -Phenotype MP:0008986 abnormal liver parenchyma morphology 0.053091977515778765 -0.08091081527430484 1.0 4907 -Biological Process GO:0050795 regulation of behavior 0.05308387160149097 -0.08105773343764636 1.0 4908 -Biological Process GO:0048545 response to steroid hormone 0.05306991626751434 -0.08131067122650902 1.0 4909 -Biological Process GO:0000041 transition metal ion transport 0.05304031322656766 -0.08184722074465031 1.0 4910 -Phenotype MP:0004754 abnormal kidney collecting duct morphology 0.05303702807048161 -0.0819067635773669 1.0 4911 -Phenotype MP:0001756 abnormal urination 0.05300540459964542 -0.0824799330051183 1.0 4912 -Biological Process GO:0015718 monocarboxylic acid transport 0.05298983761180465 -0.08276208171544587 1.0 4913 -Phenotype MP:0002918 abnormal paired-pulse facilitation 0.052980598652381805 -0.08292953610755989 1.0 4914 -Phenotype MP:0008869 anovulation 0.05297136520221324 -0.08309689064548217 1.0 4915 -Phenotype MP:0011465 abnormal urine urea nitrogen level 0.05294544278116442 -0.08356672962411452 1.0 4916 -Phenotype MP:0009957 abnormal cerebellum vermis lobule morphology 0.052908912742995584 -0.08422882965675897 1.0 4917 -Phenotype MP:0030570 abnormal piliary canal morphology 0.05289265425727996 -0.08452351163528067 1.0 4918 -Phenotype MP:0010281 increased nervous system tumor incidence 0.05286939478502872 -0.08494508517061779 1.0 4919 -Phenotype MP:0010425 abnormal heart and great vessel attachment 0.05286510556602986 -0.08502282645372411 1.0 4920 -Phenotype MP:0004984 increased osteoclast cell number 0.05284431463467243 -0.0853996581522523 1.0 4921 -Phenotype MP:0001326 retina degeneration 0.052824871113623106 -0.08575206829379062 1.0 4922 -Phenotype MP:0014018 embryo tumor 0.05281650427505491 -0.08590371566036414 1.0 4923 -Biological Process GO:0070936 protein K48-linked ubiquitination 0.052808368333128186 -0.08605117806898195 1.0 4924 -Biological Process GO:0045980 negative regulation of nucleotide metabolic process 0.05279635197015442 -0.08626897237514793 1.0 4925 -Biological Process GO:1900543 negative regulation of purine nucleotide metabolic process 0.05279635197015442 -0.08626897237514793 1.0 4925 -Phenotype MP:0008706 decreased interleukin-6 secretion 0.052767160337098495 -0.08679806520308156 1.0 4927 -Biological Process GO:0031338 regulation of vesicle fusion 0.05276194252406596 -0.086892637077417 1.0 4928 -Biological Process GO:0071599 otic vesicle development 0.0527142720907654 -0.08775665466476801 1.0 4929 -Phenotype MP:0008273 abnormal intramembranous bone ossification 0.05270087588825312 -0.08799945830159152 1.0 4930 -Biological Process GO:0042063 gliogenesis 0.05269727886615072 -0.08806465364686909 1.0 4931 -Phenotype MP:0000762 abnormal tongue morphology 0.05268588453130707 -0.08827117381082498 1.0 4932 -Phenotype MP:0005116 abnormal circulating pituitary hormone level 0.05261827895797799 -0.08949651204072906 1.0 4933 -Phenotype MP:0000034 abnormal inner ear vestibule morphology 0.052568186441917186 -0.09040442942000511 1.0 4934 -Phenotype MP:0009677 abnormal spinal cord dorsal column morphology 0.05256164793286655 -0.09052293865987678 1.0 4935 -Biological Process GO:0034763 negative regulation of transmembrane transport 0.05254657081516312 -0.09079620856661734 1.0 4936 -Biological Process GO:0017158 regulation of calcium ion-dependent exocytosis 0.05252843565916676 -0.09112490483903032 1.0 4937 -Biological Process GO:0050727 regulation of inflammatory response 0.05251217649375195 -0.0914195991369712 1.0 4938 -Biological Process GO:0019748 secondary metabolic process 0.052503151742852805 -0.09158317104010788 1.0 4939 -Phenotype MP:0020934 increased susceptibility to Retroviridae infection 0.052499072562492866 -0.09165710541260964 1.0 4940 -Biological Process GO:0141091 transforming growth factor beta receptor superfamily signaling pathway 0.05248365400953625 -0.09193656376873624 1.0 4941 -Phenotype MP:0001117 absent gametes 0.052450325137236464 -0.0925406432754617 1.0 4942 -Biological Process GO:0006783 heme biosynthetic process 0.05242444947176461 -0.09300963481810472 1.0 4943 -Biological Process GO:0048593 camera-type eye morphogenesis 0.052420552511907914 -0.09308026647844979 1.0 4944 -Phenotype MP:0009399 increased skeletal muscle fiber size 0.05239952764511302 -0.0934613382125363 1.0 4945 -Phenotype MP:0009887 abnormal palatal shelf fusion at midline 0.05238647440484112 -0.09369792572361953 1.0 4946 -Biological Process GO:0043648 dicarboxylic acid metabolic process 0.05237219045554797 -0.09395681960294083 1.0 4947 -Phenotype MP:0012543 abnormal rostral neuropore morphology 0.05236983501874626 -0.09399951144947272 1.0 4948 -Phenotype MP:0000928 incomplete rostral neuropore closure 0.05236983501874626 -0.09399951144947272 1.0 4948 -Phenotype MP:0004152 abnormal circulating iron level 0.05236419102739942 -0.09410180772514905 1.0 4950 -Biological Process GO:1902115 regulation of organelle assembly 0.052337543115842045 -0.09458479608203221 1.0 4951 -Phenotype MP:0008535 enlarged lateral ventricles 0.05232453567072304 -0.0948205535646308 1.0 4952 -Phenotype MP:0000154 rib fusion 0.05230547620415038 -0.09516600279141832 1.0 4953 -Biological Process GO:0035282 segmentation 0.05229043857203175 -0.09543855702940252 1.0 4954 -Phenotype MP:0000157 abnormal sternum morphology 0.05227276727358299 -0.09575884597149777 1.0 4955 -Phenotype MP:0003694 failure of blastocyst to hatch from the zona pellucida 0.05225114879223558 -0.09615067685707437 1.0 4956 -Phenotype MP:0009328 delayed heart looping 0.05223112901521709 -0.09651353152906274 1.0 4957 -Phenotype MP:0009979 abnormal cerebellum deep nucleus morphology 0.05223011283279999 -0.09653194964317546 1.0 4958 -Phenotype MP:0010426 abnormal heart and great artery attachment 0.052225217552384295 -0.09662067567483346 1.0 4959 -Phenotype MP:0012253 abnormal intersomitic vessel morphology 0.052220270065422514 -0.09671034794026509 1.0 4960 -Phenotype MP:0003055 abnormal long bone epiphyseal plate morphology 0.05218686748322232 -0.09731576342499416 1.0 4961 -Phenotype MP:0009331 absent primitive node 0.052178637046099596 -0.097464938541167 1.0 4962 -Biological Process GO:0015849 organic acid transport 0.05216948881145256 -0.09763074856387896 1.0 4963 -Phenotype MP:0003156 abnormal leukocyte migration 0.05214066211220836 -0.0981532270354974 1.0 4964 -Phenotype MP:0005130 decreased follicle stimulating hormone level 0.052124713173117065 -0.09844229853999964 1.0 4965 -Phenotype MP:0004045 abnormal cell cycle checkpoint function 0.052122353953088174 -0.09848505895680854 1.0 4966 -Phenotype MP:0004870 small premaxilla 0.05201736727035322 -0.10038792272455975 1.0 4967 -Phenotype MP:0031345 developmental cataract 0.05201699032323792 -0.10039475481973006 1.0 4968 -Biological Process GO:0060041 retina development in camera-type eye 0.05201184796406344 -0.10048795910715942 1.0 4969 -Phenotype MP:0009546 absent gastric milk in neonates 0.05199619276991807 -0.10077170654007472 1.0 4970 -Biological Process GO:0043122 regulation of canonical NF-kappaB signal transduction 0.05199487604159758 -0.10079557199184211 1.0 4971 -Phenotype MP:0004760 increased mitotic index 0.0519500376410128 -0.10160825952186048 1.0 4972 -Phenotype MP:0003304 large intestinal inflammation 0.05193687416144788 -0.10184684509927953 1.0 4973 -Biological Process GO:0032469 endoplasmic reticulum calcium ion homeostasis 0.05192893217442607 -0.10199079211192974 1.0 4974 -Phenotype MP:0010412 atrioventricular septal defect 0.051927866952717006 -0.10201009905393413 1.0 4975 -Phenotype MP:0009885 abnormal palatal shelf elevation 0.05190581109667258 -0.10240985727317059 1.0 4976 -Phenotype MP:0002652 thin myocardium 0.05189630839358261 -0.10258209196936774 1.0 4977 -Phenotype MP:0006100 abnormal tegmentum morphology 0.05189489575251571 -0.10260769582152324 1.0 4978 -Biological Process GO:0048709 oligodendrocyte differentiation 0.05189440910016996 -0.10261651630324628 1.0 4979 -Biological Process GO:0014743 regulation of muscle hypertrophy 0.051878168061249896 -0.1029108820618982 1.0 4980 -Phenotype MP:0020222 abnormal alertness 0.051876408044795874 -0.1029427820272439 1.0 4981 -Phenotype MP:0020224 decreased alertness 0.051876408044795874 -0.1029427820272439 1.0 4981 -Phenotype MP:0005202 lethargy 0.051876408044795874 -0.1029427820272439 1.0 4981 -Phenotype MP:0002944 increased lactate dehydrogenase level 0.05186293502049644 -0.10318697804442976 1.0 4984 -Biological Process GO:0033003 regulation of mast cell activation 0.05185679840830226 -0.10329820297979146 1.0 4985 -Phenotype MP:0001183 overexpanded pulmonary alveolus 0.05184969799004513 -0.10342689671775333 1.0 4986 -Biological Process GO:0031128 developmental induction 0.05184059448868361 -0.10359189595812593 1.0 4987 -Phenotype MP:0020149 abnormal mortality induced by ionizing radiation 0.05183339636787854 -0.10372236053629011 1.0 4988 -Biological Process GO:0009953 dorsal/ventral pattern formation 0.05181286659315221 -0.1040944588202739 1.0 4989 -Biological Process GO:0042491 inner ear auditory receptor cell differentiation 0.05180765538421217 -0.10418891099668195 1.0 4990 -Phenotype MP:0005208 abnormal iris stroma morphology 0.051787029165270226 -0.10456275731383263 1.0 4991 -Phenotype MP:0009278 abnormal bone marrow cell physiology 0.05176449235417513 -0.10497123275239639 1.0 4992 -Biological Process GO:0061024 membrane organization 0.05175098852953408 -0.10521598701994847 1.0 4993 -Biological Process GO:0019217 regulation of fatty acid metabolic process 0.051697764072502594 -0.10618067023695356 1.0 4994 -Biological Process GO:0050770 regulation of axonogenesis 0.05169229100389083 -0.10627986857038436 1.0 4995 -Phenotype MP:0008797 facial cleft 0.051686428509681526 -0.1063861251691161 1.0 4996 -Phenotype MP:0011082 abnormal gastrointestinal motility 0.05166145161348934 -0.10683882668855528 1.0 4997 -Phenotype MP:0009082 uterus cyst 0.05165327542089326 -0.10698701863294224 1.0 4998 -Phenotype MP:0008219 abnormal dorsal telencephalic commissure morphology 0.051619634715625695 -0.10759675005322972 1.0 4999 -Phenotype MP:0003991 arteriosclerosis 0.05154374340584844 -0.10897226568912133 1.0 5000 -Phenotype MP:0006341 small first pharyngeal arch 0.05152269311252533 -0.10935379827422267 1.0 5001 -Phenotype MP:0011495 abnormal head shape 0.05150668882485521 -0.10964387296124778 1.0 5002 -Phenotype MP:0002053 decreased incidence of induced tumors 0.05150545903957493 -0.10966616258685545 1.0 5003 -Phenotype MP:0000780 abnormal corpus callosum morphology 0.051504919203974375 -0.10967594700501285 1.0 5004 -Biological Process GO:0048592 eye morphogenesis 0.05147572288372748 -0.11020512478739627 1.0 5005 -Biological Process GO:0070588 calcium ion transmembrane transport 0.051454484111862264 -0.11059007351042514 1.0 5006 -Phenotype MP:0013916 decreased intestine length 0.051453242195909854 -0.11061258300217086 1.0 5007 -Phenotype MP:0004800 decreased susceptibility to experimental autoimmune encephalomyelitis 0.051448409807922646 -0.11070016912045778 1.0 5008 -Biological Process GO:0048806 genitalia development 0.05142918798173868 -0.11104856108449215 1.0 5009 -Biological Process GO:0031346 positive regulation of cell projection organization 0.05140423638124869 -0.11150080412411333 1.0 5010 -Phenotype MP:0002199 abnormal brain commissure morphology 0.05139828877384878 -0.11160860338332677 1.0 5011 -Biological Process GO:0060009 Sertoli cell development 0.051394504701894994 -0.11167718897178275 1.0 5012 -Biological Process GO:0035383 thioester metabolic process 0.05139031013534756 -0.1117532146971091 1.0 5013 -Biological Process GO:0006637 acyl-CoA metabolic process 0.05139031013534756 -0.1117532146971091 1.0 5013 -Biological Process GO:0071385 cellular response to glucocorticoid stimulus 0.051367164576590185 -0.11217272357191521 1.0 5015 -Biological Process GO:0140056 organelle localization by membrane tethering 0.05136265676123908 -0.11225442687256135 1.0 5016 -Phenotype MP:0004157 interrupted aortic arch 0.05135425792080173 -0.11240665426696057 1.0 5017 -Biological Process GO:0051155 positive regulation of striated muscle cell differentiation 0.051346544240265524 -0.11254646326774026 1.0 5018 -Phenotype MP:0001798 impaired macrophage phagocytosis 0.051340995362908703 -0.11264703562033707 1.0 5019 -Phenotype MP:0004905 decreased uterus weight 0.05133069744572716 -0.11283368342153997 1.0 5020 -Phenotype MP:0030121 small temporal bone squamous part 0.051321807104374506 -0.11299481917706822 1.0 5021 -Biological Process GO:0006109 regulation of carbohydrate metabolic process 0.051314812802706 -0.11312158957193175 1.0 5022 -Phenotype MP:0000920 abnormal myelination 0.05131345785584418 -0.11314614772753225 1.0 5023 -Biological Process GO:0035987 endodermal cell differentiation 0.05130270737895504 -0.11334099808783978 1.0 5024 -Biological Process GO:0007156 homophilic cell adhesion via plasma membrane adhesion molecules 0.051293967367233684 -0.11349940914723357 1.0 5025 -Biological Process GO:0051052 regulation of DNA metabolic process 0.05128943651668538 -0.11358152995647204 1.0 5026 -Phenotype MP:0009593 absent chorion 0.051288507181035614 -0.11359837398935275 1.0 5027 -Phenotype MP:0005083 abnormal biliary tract morphology 0.05128172988688162 -0.11372121116405977 1.0 5028 -Biological Process GO:0042771 intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator 0.05127700701811366 -0.11380681226721188 1.0 5029 -Phenotype MP:0013563 abnormal secretory circumventricular organ morphology 0.05127606783804972 -0.11382383472823754 1.0 5030 -Phenotype MP:0030279 thin neurocranium 0.051271811323883476 -0.1139009832424383 1.0 5031 -Phenotype MP:0012076 abnormal agouti pigmentation 0.051254959795499655 -0.11420641400715498 1.0 5032 -Phenotype MP:0005639 hemosiderosis 0.05124595920484509 -0.11436954801042817 1.0 5033 -Biological Process GO:0030041 actin filament polymerization 0.051239749592354444 -0.11448209606235644 1.0 5034 -Phenotype MP:0000552 abnormal radius morphology 0.05123078877933118 -0.11464450910358574 1.0 5035 -Biological Process GO:0050680 negative regulation of epithelial cell proliferation 0.051227403627186474 -0.11470586434595255 1.0 5036 -Phenotype MP:0004906 enlarged uterus 0.05122281298557785 -0.11478906885685075 1.0 5037 -Phenotype MP:0001129 impaired ovarian folliculogenesis 0.05120105519359763 -0.11518342472129825 1.0 5038 -Biological Process GO:0060055 angiogenesis involved in wound healing 0.05119600175369943 -0.11527501736366301 1.0 5039 -Phenotype MP:0011951 increased cardiac stroke volume 0.05119251130782576 -0.11533828103495229 1.0 5040 -Phenotype MP:0000889 abnormal cerebellar molecular layer 0.05117129148223243 -0.11572288636038668 1.0 5041 -Phenotype MP:0004596 abnormal mandibular angle morphology 0.051167331473075284 -0.11579466077737742 1.0 5042 -Phenotype MP:0009332 abnormal splenocyte morphology 0.051163709608556984 -0.1158603063867446 1.0 5043 -Biological Process GO:0034198 cellular response to amino acid starvation 0.051150603413589124 -0.11609785369167647 1.0 5044 -Biological Process GO:1990928 response to amino acid starvation 0.051150603413589124 -0.11609785369167647 1.0 5044 -Phenotype MP:0009652 abnormal palatal rugae morphology 0.051148487502974405 -0.1161362041713722 1.0 5046 -Phenotype MP:0009544 abnormal thymus epithelium morphology 0.051127679873889 -0.11651333851306185 1.0 5047 -Phenotype MP:0005132 decreased luteinizing hormone level 0.05111769266648758 -0.11669435475826652 1.0 5048 -Phenotype MP:0003115 abnormal respiratory system development 0.05111603255016295 -0.11672444405266177 1.0 5049 -Phenotype MP:0009293 decreased inguinal fat pad weight 0.05109126386312668 -0.11717337182052995 1.0 5050 -Biological Process GO:0072012 glomerulus vasculature development 0.0510901546309771 -0.11719347644344467 1.0 5051 -Biological Process GO:0071214 cellular response to abiotic stimulus 0.05106237132113067 -0.11769704367957161 1.0 5052 -Biological Process GO:0104004 cellular response to environmental stimulus 0.05106237132113067 -0.11769704367957161 1.0 5052 -Phenotype MP:0013208 abnormal cilium physiology 0.05104284238566381 -0.11805100194127284 1.0 5054 -Phenotype MP:0006083 abnormal blood vessel elastic tissue morphology 0.051034435064734485 -0.11820338304298514 1.0 5055 -Biological Process GO:0120031 plasma membrane bounded cell projection assembly 0.05101998009608488 -0.11846537661579616 1.0 5056 -Biological Process GO:0046545 development of primary female sexual characteristics 0.05101909199313481 -0.11848147331379344 1.0 5057 -Biological Process GO:0060419 heart growth 0.051010000774590836 -0.11864624993042125 1.0 5058 -Biological Process GO:0060251 regulation of glial cell proliferation 0.050994115305541765 -0.1189341710524127 1.0 5059 -Phenotype MP:0002009 preneoplasia 0.0509485399965699 -0.11976021490757074 1.0 5060 -Phenotype MP:0009770 abnormal optic chiasm morphology 0.050947337430906736 -0.1197820111827664 1.0 5061 -Phenotype MP:0008450 retina photoreceptor degeneration 0.0509255827523607 -0.12017631061680832 1.0 5062 -Phenotype MP:0010320 increased pituitary gland tumor incidence 0.05092399372677314 -0.12020511140503994 1.0 5063 -Phenotype MP:0001715 placental labyrinth hypoplasia 0.050918941796773365 -0.12029667668078126 1.0 5064 -Biological Process GO:0060026 convergent extension 0.05088262664233989 -0.12095488198636467 1.0 5065 -Biological Process GO:0006338 chromatin remodeling 0.05084434040296715 -0.12164881283366809 1.0 5066 -Biological Process GO:0090382 phagosome maturation 0.050837564333885976 -0.12177162780416194 1.0 5067 -Phenotype MP:0011284 abnormal circulating erythropoietin level 0.05082457311651045 -0.12200709116197918 1.0 5068 -Phenotype MP:0011283 abnormal erythropoietin level 0.05082457311651045 -0.12200709116197918 1.0 5068 -Phenotype MP:0031533 abnormal heart left ventricle wall morphology 0.05080418216873939 -0.12237667323365606 1.0 5070 -Phenotype MP:0005575 increased pulmonary ventilation 0.05079773080422312 -0.12249360299532455 1.0 5071 -Phenotype MP:0008673 decreased interleukin-13 secretion 0.05079228049656115 -0.12259238879084532 1.0 5072 -Phenotype MP:0003308 abnormal cochlear sensory epithelium morphology 0.0507718057233193 -0.12296349018332574 1.0 5073 -Biological Process GO:0097084 vascular associated smooth muscle cell development 0.050763473885906296 -0.12311450316058133 1.0 5074 -Phenotype MP:0011885 abnormal circulating lipase level 0.05073319888246974 -0.1236632318717589 1.0 5075 -Phenotype MP:0002998 abnormal bone remodeling 0.050732296282439915 -0.12367959132658488 1.0 5076 -Phenotype MP:0013808 abnormal tunnel of Corti morphology 0.05072457715091683 -0.12381949912547087 1.0 5077 -Phenotype MP:0008592 decreased circulating interleukin-1 level 0.05072034064578379 -0.12389628497972917 1.0 5078 -Phenotype MP:0013975 abnormal coronary sinus connection 0.05071572519861567 -0.12397993908670157 1.0 5079 -Biological Process GO:0060216 definitive hemopoiesis 0.050706808953623006 -0.1241415443408057 1.0 5080 -Phenotype MP:0000972 abnormal mechanoreceptor morphology 0.05068560445146841 -0.12452587193181114 1.0 5081 -Biological Process GO:0048469 cell maturation 0.05066529998705993 -0.12489388650889838 1.0 5082 -Phenotype MP:0013770 abnormal effector memory T-helper cell number 0.050632662131445905 -0.12548544146889093 1.0 5083 -Phenotype MP:0013337 abnormal adenohypophysis development 0.050583935119527745 -0.12636860934384825 1.0 5084 -Phenotype MP:0000778 abnormal nervous system tract morphology 0.05057909031181973 -0.12645642056722578 1.0 5085 -Biological Process GO:1905606 regulation of presynapse assembly 0.050548753761613496 -0.12700626480196306 1.0 5086 -Biological Process GO:0060841 venous blood vessel development 0.050540461553555405 -0.1271565595046563 1.0 5087 -Phenotype MP:0010082 sternebra fusion 0.05053446560774866 -0.127265234888351 1.0 5088 -Phenotype MP:0001674 abnormal germ layer development 0.05051670259649277 -0.1275871861077292 1.0 5089 -Phenotype MP:0031354 abnormal acrosome assembly 0.05051320028859574 -0.1276506647759484 1.0 5090 -Biological Process GO:0007589 body fluid secretion 0.05051174699897987 -0.1276770053753659 1.0 5091 -Biological Process GO:0043392 negative regulation of DNA binding 0.05049451760743895 -0.12798928483833721 1.0 5092 -Biological Process GO:0051592 response to calcium ion 0.05048755601106736 -0.1281154624558799 1.0 5093 -Phenotype MP:0008432 abnormal long-term spatial reference memory 0.0504819382604591 -0.12821728312313252 1.0 5094 -Biological Process GO:0005975 carbohydrate metabolic process 0.05047632655408485 -0.12831899423978704 1.0 5095 -Phenotype MP:0010503 myocardial trabeculae hypoplasia 0.05044519356674371 -0.12888327374695918 1.0 5096 -Phenotype MP:0001153 small seminiferous tubules 0.050428160565986535 -0.1291919936641198 1.0 5097 -Phenotype MP:0004742 abnormal vestibular system physiology 0.05042700011939383 -0.12921302653912972 1.0 5098 -Phenotype MP:0014082 decreased small intestinal villus height 0.05039651754631891 -0.12976551741074369 1.0 5099 -Phenotype MP:0006413 increased T cell apoptosis 0.050395915113346956 -0.12977643639441822 1.0 5100 -Phenotype MP:0003619 abnormal urine color 0.05033546413634582 -0.1308720989190741 1.0 5101 -Phenotype MP:0005006 abnormal osteoblast physiology 0.050313626798515476 -0.13126789653701015 1.0 5102 -Phenotype MP:0014269 decreased testes secretion 0.05031207864210707 -0.1312959565790995 1.0 5103 -Phenotype MP:0006279 abnormal limb development 0.05027936429888813 -0.13188889786246458 1.0 5104 -Phenotype MP:0004772 abnormal bile secretion 0.05027459380907229 -0.13197536208810268 1.0 5105 -Phenotype MP:0011390 abnormal fetal cardiomyocyte physiology 0.050202887658565176 -0.1332750225037896 1.0 5106 -Biological Process GO:0055062 phosphate ion homeostasis 0.050188139615369165 -0.13354232799732316 1.0 5107 -Phenotype MP:0003938 abnormal ear development 0.050169805073730256 -0.13387463809679628 1.0 5108 -Phenotype MP:0008658 decreased interleukin-1 beta secretion 0.05016881325902223 -0.13389261455079088 1.0 5109 -Phenotype MP:0008826 abnormal splenic cell ratio 0.05014596820273731 -0.13430667687511966 1.0 5110 -Phenotype MP:0013840 absent segment of posterior cerebral artery 0.050125149827565996 -0.13468400598758393 1.0 5111 -Phenotype MP:0013839 abnormal posterior cerebral artery morphology 0.050125149827565996 -0.13468400598758393 1.0 5111 -Phenotype MP:0002995 primary sex reversal 0.05011128869296111 -0.13493523643065022 1.0 5113 -Biological Process GO:0046189 phenol-containing compound biosynthetic process 0.05011065255726499 -0.13494676626982585 1.0 5114 -Phenotype MP:0008544 impaired olfaction 0.05010748860938774 -0.1350041122266828 1.0 5115 -Phenotype MP:0004383 absent interparietal bone 0.050098796807926727 -0.13516164948422627 1.0 5116 -Phenotype MP:0014200 abnormal respiratory epithelium physiology 0.050091160273279534 -0.13530006023035876 1.0 5117 -Phenotype MP:0013695 abnormal granulocyte monocyte progenitor cell number 0.0500469166235431 -0.13610196801373994 1.0 5118 -Phenotype MP:0004672 short ribs 0.05004301732691818 -0.13617264202756707 1.0 5119 -Biological Process GO:0050871 positive regulation of B cell activation 0.05003840449638286 -0.1362562487085649 1.0 5120 -Phenotype MP:0003545 increased alcohol consumption 0.05003838143897177 -0.13625666661977995 1.0 5121 -Phenotype MP:0001409 increased stereotypic behavior 0.05003043084705783 -0.13640076959447253 1.0 5122 -Phenotype MP:0010055 abnormal sensory neuron physiology 0.05001712258096358 -0.1366419794003511 1.0 5123 -Biological Process GO:0048738 cardiac muscle tissue development 0.05001595512707435 -0.13666313928128518 1.0 5124 -Biological Process GO:0001991 regulation of systemic arterial blood pressure by circulatory renin-angiotensin 0.04999171510738942 -0.1371024850534006 1.0 5125 -Biological Process GO:0071379 cellular response to prostaglandin stimulus 0.04997672743020942 -0.13737413386757044 1.0 5126 -Biological Process GO:1901617 organic hydroxy compound biosynthetic process 0.049972206966960364 -0.13745606640897476 1.0 5127 -Biological Process GO:0030177 positive regulation of Wnt signaling pathway 0.049930638489282364 -0.13820948720476972 1.0 5128 -Phenotype MP:0004985 decreased osteoclast cell number 0.04992981136211383 -0.13822447872825944 1.0 5129 -Phenotype MP:0008903 abnormal mesenteric fat pad morphology 0.049929010703467114 -0.13823899051479732 1.0 5130 -Phenotype MP:0009948 abnormal olfactory bulb glomerular layer morphology 0.04992868928678862 -0.1382448161313034 1.0 5131 -Biological Process GO:0002675 positive regulation of acute inflammatory response 0.04991415061979043 -0.13850832672085212 1.0 5132 -Phenotype MP:0001384 abnormal pup retrieval 0.04989539332530668 -0.13884829913567998 1.0 5133 -Phenotype MP:0009731 abnormal offspring retrieval 0.04989539332530668 -0.13884829913567998 1.0 5133 -Biological Process GO:0021535 cell migration in hindbrain 0.049887226569355736 -0.13899632004265874 1.0 5135 -Phenotype MP:0000823 abnormal lateral ventricle morphology 0.04988262331144344 -0.13907975322167473 1.0 5136 -Phenotype MP:0004038 lymphangiectasis 0.04981262327992908 -0.1403484905533075 1.0 5137 -Phenotype MP:0009456 impaired cued conditioning behavior 0.049789794457573144 -0.14076225864074396 1.0 5138 -Biological Process GO:0032944 regulation of mononuclear cell proliferation 0.04978469982578948 -0.14085459787824176 1.0 5139 -Phenotype MP:0010500 myocardium hypoplasia 0.0497726466847036 -0.14107305878073365 1.0 5140 -Phenotype MP:0001633 poor circulation 0.04976654197639152 -0.14118370546426662 1.0 5141 -Phenotype MP:0031460 abnormal palatal shelf morphology 0.0497193170670035 -0.1420396480149677 1.0 5142 -Biological Process GO:0032689 negative regulation of type II interferon production 0.04970152732399746 -0.14236208374226134 1.0 5143 -Biological Process GO:2000772 regulation of cellular senescence 0.04969176919259011 -0.14253894802840028 1.0 5144 -Phenotype MP:0002267 abnormal bronchiole morphology 0.04967533893614284 -0.14283674331894478 1.0 5145 -Phenotype MP:0004195 abnormal kidney calyx morphology 0.04963780761527048 -0.14351699141121152 1.0 5146 -Biological Process GO:0010875 positive regulation of cholesterol efflux 0.049636113902325696 -0.1435476896379927 1.0 5147 -Biological Process GO:0006940 regulation of smooth muscle contraction 0.04963184598482018 -0.143625044835561 1.0 5148 -Phenotype MP:0003646 increased muscle fatigability 0.04961891041829691 -0.14385949953220661 1.0 5149 -Phenotype MP:0004043 abnormal pH regulation 0.04960626005624125 -0.14408878495181965 1.0 5150 -Phenotype MP:0013936 abnormal thymus topology 0.04958578925211132 -0.14445981440489708 1.0 5151 -Biological Process GO:0000209 protein polyubiquitination 0.049577000206653565 -0.14461911419148912 1.0 5152 -Phenotype MP:0002543 brachyphalangia 0.04956434738982163 -0.14484844410345776 1.0 5153 -Phenotype MP:0002582 disorganized extraembryonic tissue 0.049551819784430906 -0.14507550458173643 1.0 5154 -Phenotype MP:0010101 increased sacral vertebrae number 0.04955118054981755 -0.14508709058820082 1.0 5155 -Biological Process GO:0006091 generation of precursor metabolites and energy 0.04953510417600304 -0.14537847182295882 1.0 5156 -Phenotype MP:0009892 palate bone hypoplasia 0.04950448295721577 -0.14593347562188624 1.0 5157 -Phenotype MP:0001787 pericardial edema 0.04948702506151781 -0.14624989667948546 1.0 5158 -Phenotype MP:0008653 abnormal interleukin-1 alpha secretion 0.04948282312954988 -0.1463260559016652 1.0 5159 -Phenotype MP:0001292 abnormal lens vesicle development 0.04942447930742855 -0.14738352664266466 1.0 5160 -Phenotype MP:0002052 decreased tumor incidence 0.049376864646313745 -0.14824653336969734 1.0 5161 -Biological Process GO:1902808 positive regulation of cell cycle G1/S phase transition 0.04935693107960104 -0.14860782549619891 1.0 5162 -Phenotype MP:0014103 increased chondrocyte apoptosis 0.04935439005911102 -0.14865388101198065 1.0 5163 -Phenotype MP:0006358 absent pinna reflex 0.04932949062364744 -0.14910517857036448 1.0 5164 -Phenotype MP:0005338 atherosclerotic lesions 0.04931754873736527 -0.1493216230005816 1.0 5165 -Phenotype MP:0009286 increased abdominal fat pad weight 0.04931681810310928 -0.14933486560828169 1.0 5166 -Phenotype MP:0000080 abnormal exoccipital bone morphology 0.04931180917487843 -0.14942565148509449 1.0 5167 -Biological Process GO:0072521 purine-containing compound metabolic process 0.049310919039562306 -0.14944178501934208 1.0 5168 -Phenotype MP:0001341 absent eyelids 0.049309461434852375 -0.14946820382902323 1.0 5169 -Phenotype MP:0008274 failure of bone ossification 0.04926979444660773 -0.15018716048847983 1.0 5170 -Phenotype MP:0003121 genetic imprinting 0.04925781911421334 -0.15040421112315497 1.0 5171 -Biological Process GO:0007346 regulation of mitotic cell cycle 0.049240745225255234 -0.15071367213122408 1.0 5172 -Biological Process GO:1990845 adaptive thermogenesis 0.049239398037922544 -0.1507380896468267 1.0 5173 -Phenotype MP:0021111 decreased social investigation 0.04923247423904453 -0.15086358219194718 1.0 5174 -Phenotype MP:0005323 dystonia 0.04922881737987439 -0.15092986207276024 1.0 5175 -Phenotype MP:0013631 decreased bone trabecular spacing 0.04921562972740756 -0.1511688857794543 1.0 5176 -Phenotype MP:0010811 decreased type II pneumocyte number 0.04918590408089718 -0.1517076575002485 1.0 5177 -Phenotype MP:0006338 abnormal second pharyngeal arch morphology 0.04917879966976435 -0.15183642360832716 1.0 5178 -Biological Process GO:0006090 pyruvate metabolic process 0.049165929845358614 -0.15206968674152685 1.0 5179 -Phenotype MP:0004967 abnormal kidney epithelium morphology 0.049135968979055256 -0.15261272177658008 1.0 5180 -Phenotype MP:0010899 abnormal pulmonary alveolar system morphology 0.04912337117659171 -0.1528410545635268 1.0 5181 -Phenotype MP:0011925 abnormal heart echocardiography feature 0.049109549972854105 -0.15309156126717605 1.0 5182 -Phenotype MP:0006339 abnormal third pharyngeal arch morphology 0.049093693040562325 -0.15337896516583896 1.0 5183 -Biological Process GO:0015012 heparan sulfate proteoglycan biosynthetic process 0.04909137444334066 -0.15342098930195008 1.0 5184 -Phenotype MP:0002790 decreased circulating follicle stimulating hormone level 0.04907887851089343 -0.15364747571411852 1.0 5185 -Phenotype MP:0009590 increased gonad tumor incidence 0.04906917298159419 -0.15382338659699687 1.0 5186 -Phenotype MP:0008918 microgliosis 0.049067194673031 -0.1538592430655342 1.0 5187 -Phenotype MP:0013147 limb paralysis 0.04905216218766151 -0.1541317040196637 1.0 5188 -Phenotype MP:0002856 abnormal vestibular ganglion morphology 0.049040271065059704 -0.1543472283677754 1.0 5189 -Biological Process GO:0070873 regulation of glycogen metabolic process 0.04903785694270979 -0.1543909838787688 1.0 5190 -Phenotype MP:0000932 absent notochord 0.04897341783131037 -0.1555589305850915 1.0 5191 -Phenotype MP:0002689 abnormal molar morphology 0.04892940922048694 -0.15635657833262903 1.0 5192 -Phenotype MP:0001688 abnormal somite development 0.04892499852545962 -0.1564365213457756 1.0 5193 -Phenotype MP:0009145 abnormal pancreatic acinus morphology 0.0489144206294827 -0.15662824370969033 1.0 5194 -Biological Process GO:0042462 eye photoreceptor cell development 0.04890323590386347 -0.15683096474609837 1.0 5195 -Phenotype MP:0009583 increased keratinocyte proliferation 0.048902448965168044 -0.15684522786111413 1.0 5196 -Biological Process GO:0072009 nephron epithelium development 0.04889523311205979 -0.15697601383391965 1.0 5197 -Phenotype MP:0005244 hemopericardium 0.04888096609946935 -0.15723460073870774 1.0 5198 -Phenotype MP:0004643 abnormal vertebrae number 0.048868455137456746 -0.15746135955890586 1.0 5199 -Biological Process GO:0090190 positive regulation of branching involved in ureteric bud morphogenesis 0.04885125038036686 -0.15777319252711144 1.0 5200 -Biological Process GO:0060043 regulation of cardiac muscle cell proliferation 0.04885099233190682 -0.15777786960664336 1.0 5201 -Phenotype MP:0004217 salt-sensitive hypertension 0.04882490867911593 -0.15825063088010588 1.0 5202 -Biological Process GO:0007005 mitochondrion organization 0.048787002662921464 -0.15893767025421715 1.0 5203 -Phenotype MP:0003990 decreased neurotransmitter release 0.0487819349567965 -0.1590295214692436 1.0 5204 -Biological Process GO:2000648 positive regulation of stem cell proliferation 0.04877698779558304 -0.1591191878305486 1.0 5205 -Phenotype MP:0020157 abnormal behavioral response to alcohol 0.04876070096952112 -0.15941438347248663 1.0 5206 -Phenotype MP:0000457 maxilla hypoplasia 0.04874781312506127 -0.1596479732157589 1.0 5207 -Phenotype MP:0000295 trabecula carnea hypoplasia 0.048745779763517794 -0.15968482750915136 1.0 5208 -Phenotype MP:0001650 abnormal seizure response to electrical stimulation 0.04874412105978221 -0.15971489120063734 1.0 5209 -Phenotype MP:0008402 increased cellular sensitivity to alkylating agents 0.048742887538883006 -0.15973724853363147 1.0 5210 -Phenotype MP:0009890 cleft secondary palate 0.048739842204468586 -0.15979244464390877 1.0 5211 -Phenotype MP:0004644 increased vertebrae number 0.04873929615539807 -0.15980234168003402 1.0 5212 -Biological Process GO:0061035 regulation of cartilage development 0.048737154457001 -0.15984115955840753 1.0 5213 -Biological Process GO:0060986 endocrine hormone secretion 0.048693945460625776 -0.16062431444530756 1.0 5214 -Phenotype MP:0000061 fragile skeleton 0.0486638498397336 -0.16116979188179614 1.0 5215 -Phenotype MP:0013562 abnormal circumventricular organ morphology 0.04863042793335026 -0.16177555761368975 1.0 5216 -Biological Process GO:0007368 determination of left/right symmetry 0.048614829815150085 -0.16205827055589359 1.0 5217 -Biological Process GO:0030850 prostate gland development 0.04858381779914067 -0.16262035748055823 1.0 5218 -Phenotype MP:0008565 decreased interferon-beta secretion 0.04857249670397812 -0.16282555018914652 1.0 5219 -Phenotype MP:0010404 ostium primum atrial septal defect 0.04853557720180279 -0.16349470918324674 1.0 5220 -Phenotype MP:0008642 decreased circulating interleukin-1 beta level 0.04850965751970071 -0.1639644985189875 1.0 5221 -Phenotype MP:0008742 abnormal kidney iron level 0.048500856131545866 -0.1641240220146298 1.0 5222 -Biological Process GO:0008203 cholesterol metabolic process 0.04846125852892069 -0.16484172107285683 1.0 5223 -Phenotype MP:0011635 abnormal mitochondrial crista morphology 0.04845686081593681 -0.1649214287889214 1.0 5224 -Biological Process GO:0043462 regulation of ATP-dependent activity 0.04845039646988969 -0.1650385938383813 1.0 5225 -Phenotype MP:0002608 increased hematocrit 0.04844742270630442 -0.16509249274091686 1.0 5226 -Phenotype MP:0001458 abnormal object recognition memory 0.048445706531602295 -0.16512359808280153 1.0 5227 -Phenotype MP:0013306 abnormal tela choroidea morphology 0.04843841772318347 -0.1652557063568126 1.0 5228 -Phenotype MP:0000820 abnormal choroid plexus morphology 0.04843841772318347 -0.1652557063568126 1.0 5228 -Biological Process GO:2000242 negative regulation of reproductive process 0.048435648870162495 -0.16530589129412643 1.0 5230 -Phenotype MP:0031383 increased secondary ovarian follicle number 0.0484351858816654 -0.16531428287306824 1.0 5231 -Phenotype MP:0003130 anal atresia 0.048370333398159104 -0.1664897218706443 1.0 5232 -Phenotype MP:0008965 increased basal metabolism 0.048363211006936746 -0.16661881386444502 1.0 5233 -Biological Process GO:0061430 bone trabecula morphogenesis 0.04833364950363894 -0.16715461052055672 1.0 5234 -Biological Process GO:0048247 lymphocyte chemotaxis 0.04832223912060274 -0.16736142155496733 1.0 5235 -Phenotype MP:0004056 abnormal myocardium compact layer morphology 0.048309469018783524 -0.16759287723514749 1.0 5236 -Biological Process GO:0031400 negative regulation of protein modification process 0.04829565331084207 -0.16784328432853093 1.0 5237 -Phenotype MP:0001015 small superior cervical ganglion 0.048274165512722456 -0.16823274660532073 1.0 5238 -Biological Process GO:0020027 hemoglobin metabolic process 0.04825104846706807 -0.16865173868552805 1.0 5239 -Phenotype MP:0001706 abnormal left-right axis patterning 0.048235290570501355 -0.16893734758040543 1.0 5240 -Phenotype MP:0011527 disorganized placental labyrinth 0.048220521694509966 -0.16920503066441497 1.0 5241 -Biological Process GO:0046851 negative regulation of bone remodeling 0.04820988161397799 -0.16939788011162885 1.0 5242 -Biological Process GO:0045779 negative regulation of bone resorption 0.04820988161397799 -0.16939788011162885 1.0 5242 -Phenotype MP:0011762 renal/urinary system inflammation 0.04817688692445765 -0.16999590261868294 1.0 5244 -Biological Process GO:0002824 positive regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains 0.04816652179433256 -0.17018376864177517 1.0 5245 -Phenotype MP:0008441 thin cortical plate 0.04814304002738057 -0.17060937122651948 1.0 5246 -Biological Process GO:0009952 anterior/posterior pattern specification 0.04814080426344303 -0.1706498940250227 1.0 5247 -Biological Process GO:2000403 positive regulation of lymphocyte migration 0.048139155127413624 -0.17067978430364372 1.0 5248 -Phenotype MP:0009243 hairpin sperm flagellum 0.04811315408490413 -0.1711510482813806 1.0 5249 -Phenotype MP:0004634 short metacarpal bones 0.04810588266533267 -0.17128284138582212 1.0 5250 -Phenotype MP:0002024 increased T cell derived lymphoma incidence 0.04809706642767908 -0.17144263402582052 1.0 5251 -Phenotype MP:0004374 bowed radius 0.04808949729205425 -0.1715798231774203 1.0 5252 -Biological Process GO:1902017 regulation of cilium assembly 0.048054142486254836 -0.17222062234564842 1.0 5253 -Phenotype MP:0005030 absent amnion 0.0480417653731795 -0.1724449551791743 1.0 5254 -Biological Process GO:0046463 acylglycerol biosynthetic process 0.04803247839288438 -0.17261327994051584 1.0 5255 -Biological Process GO:0046460 neutral lipid biosynthetic process 0.04803247839288438 -0.17261327994051584 1.0 5255 -Phenotype MP:0002957 increased intestinal adenocarcinoma incidence 0.0480185986123981 -0.1728648483366558 1.0 5257 -Biological Process GO:0003158 endothelium development 0.04798346641290896 -0.17350161280761317 1.0 5258 -Biological Process GO:0044346 fibroblast apoptotic process 0.047963776706364536 -0.17385848501468754 1.0 5259 -Phenotype MP:0014040 increased cellular sensitivity to DNA damaging agents 0.04794986107980026 -0.1741107031142113 1.0 5260 -Phenotype MP:0000652 enlarged sebaceous gland 0.04792195847246139 -0.17461643259482523 1.0 5261 -Phenotype MP:0004252 abnormal direction of heart looping 0.0478996163735651 -0.17502137891161276 1.0 5262 -Phenotype MP:0013694 abnormal granulocyte monocyte progenitor cell morphology 0.047883798479363415 -0.17530807525227626 1.0 5263 -Phenotype MP:0002781 increased circulating testosterone level 0.04788038209001577 -0.17536999666303818 1.0 5264 -Phenotype MP:0010911 abnormal pulmonary acinus morphology 0.047877595471984224 -0.17542050358780864 1.0 5265 -Phenotype MP:0002356 abnormal spleen red pulp morphology 0.0478469282994044 -0.17597634029053447 1.0 5266 -Biological Process GO:0051447 negative regulation of meiotic cell cycle 0.047842579341613845 -0.17605516432794138 1.0 5267 -Phenotype MP:0003111 abnormal cell nucleus morphology 0.04782561261303975 -0.17636268307431827 1.0 5268 -Phenotype MP:0011636 disorganized mitochondrial cristae 0.04780198973866745 -0.176790843204367 1.0 5269 -Biological Process GO:0061309 cardiac neural crest cell development involved in outflow tract morphogenesis 0.047787395913268305 -0.1770553535295006 1.0 5270 -Biological Process GO:0070373 negative regulation of ERK1 and ERK2 cascade 0.04778194133932223 -0.17715421665061384 1.0 5271 -Phenotype MP:0004871 premaxilla hypoplasia 0.047778515186512105 -0.17721631502228663 1.0 5272 -Phenotype MP:0013761 abnormal T-helper cell number 0.04777384412489094 -0.17730097713070173 1.0 5273 -Phenotype MP:0004427 abnormal vestibular labyrinth morphology 0.04777261085815887 -0.17732332985696467 1.0 5274 -Phenotype MP:0009619 abnormal optokinetic reflex 0.047762696257692805 -0.1775030301151987 1.0 5275 -Biological Process GO:0003084 positive regulation of systemic arterial blood pressure 0.04776220161429401 -0.17751199543324672 1.0 5276 -Biological Process GO:0007015 actin filament organization 0.04776179309669604 -0.17751939973744435 1.0 5277 -Phenotype MP:0005183 abnormal circulating estradiol level 0.047757995563174616 -0.17758822931426768 1.0 5278 -Phenotype MP:0004987 abnormal osteoblast cell number 0.04774442401884471 -0.17783421098837202 1.0 5279 -Biological Process GO:0010332 response to gamma radiation 0.047743620819105326 -0.17784876883173395 1.0 5280 -Biological Process GO:0048477 oogenesis 0.04772890801486307 -0.17811543562589569 1.0 5281 -Biological Process GO:0060033 anatomical structure regression 0.04771518089719706 -0.1783642370372923 1.0 5282 -Biological Process GO:0009117 nucleotide metabolic process 0.04770470783947167 -0.1785540592277269 1.0 5283 -Biological Process GO:1905962 glutamatergic neuron differentiation 0.04768067617167604 -0.1789896286612558 1.0 5284 -Phenotype MP:0010169 decreased CD4-positive, CD25-positive, alpha-beta regulatory T cell number 0.0476792538204055 -0.17901540850901573 1.0 5285 -Phenotype MP:0001696 failure to gastrulate 0.04767575085570086 -0.17907889908174862 1.0 5286 -Phenotype MP:0003207 decreased cellular sensitivity to gamma-irradiation 0.047653606181302655 -0.17948026711684859 1.0 5287 -Phenotype MP:0020813 abnormal photoreceptor outer segment disc membrane morphology 0.04765126744163972 -0.1795226563308981 1.0 5288 -Phenotype MP:0004409 abnormal crista ampullaris neuroepithelium morphology 0.04764145966882949 -0.17970042035807515 1.0 5289 -Biological Process GO:0046825 regulation of protein export from nucleus 0.04764061159894495 -0.17971579146433145 1.0 5290 -Phenotype MP:0000458 abnormal mandible morphology 0.04761972589529162 -0.1800943408927979 1.0 5291 -Phenotype MP:0002948 abnormal neuron specification 0.04760845366358013 -0.18029864796057757 1.0 5292 -Biological Process GO:0002274 myeloid leukocyte activation 0.04757494383953731 -0.18090600718342092 1.0 5293 -Phenotype MP:0002750 exophthalmos 0.04754162778864157 -0.18150985430462296 1.0 5294 -Phenotype MP:0010506 prolonged RR interval 0.047537398973348854 -0.18158650078197988 1.0 5295 -Biological Process GO:0002068 glandular epithelial cell development 0.04749844679264881 -0.18229250168988687 1.0 5296 -Biological Process GO:0030808 regulation of nucleotide biosynthetic process 0.04749261558841267 -0.18239819116377298 1.0 5297 -Biological Process GO:1900371 regulation of purine nucleotide biosynthetic process 0.04749261558841267 -0.18239819116377298 1.0 5297 -Biological Process GO:0072678 T cell migration 0.047491591477970885 -0.18241675297183357 1.0 5299 -Biological Process GO:0009855 determination of bilateral symmetry 0.047454905614373266 -0.18308167731090244 1.0 5300 -Biological Process GO:0009799 specification of symmetry 0.047454905614373266 -0.18308167731090244 1.0 5300 -Biological Process GO:0048663 neuron fate commitment 0.04742446864368777 -0.18363334164783324 1.0 5302 -Phenotype MP:0000754 paresis 0.04740944399434499 -0.1839056605754606 1.0 5303 -Phenotype MP:0008753 abnormal osteocyte morphology 0.04740587414403996 -0.18397036343705006 1.0 5304 -Phenotype MP:0009344 abnormal ovulation cycle 0.04738770885988053 -0.18429960577672047 1.0 5305 -Biological Process GO:0006873 intracellular monoatomic ion homeostasis 0.04737588909576296 -0.18451383676580194 1.0 5306 -Phenotype MP:0010869 decreased bone trabecula number 0.04735121018156219 -0.18496113741800602 1.0 5307 -Phenotype MP:0001759 increased urine glucose level 0.0473495034258814 -0.18499207204191037 1.0 5308 -Phenotype MP:0000286 abnormal mitral valve morphology 0.047349308355728814 -0.18499560765153109 1.0 5309 -Phenotype MP:0013969 reduced sympathetic cervical ganglion size 0.04733290163801618 -0.1852929763069625 1.0 5310 -Phenotype MP:0000566 synostosis 0.04732961913653 -0.18535247102555846 1.0 5311 -Biological Process GO:0140115 export across plasma membrane 0.04730012271479722 -0.18588708809061338 1.0 5312 -Phenotype MP:0009149 decreased pancreatic acinar cell number 0.04730001557751151 -0.1858890299336533 1.0 5313 -Phenotype MP:0009655 abnormal secondary palate development 0.04729227945298142 -0.18602924572757717 1.0 5314 -Biological Process GO:0010611 regulation of cardiac muscle hypertrophy 0.047259866572779585 -0.1866167230507749 1.0 5315 -Phenotype MP:0009768 impaired somite development 0.04725830627706962 -0.1866450031154091 1.0 5316 -Phenotype MP:0008167 increased B-1a cell number 0.04725253817110575 -0.18674954894504447 1.0 5317 -Phenotype MP:0008449 abnormal retina cone cell outer segment morphology 0.047239302061193866 -0.18698945093376512 1.0 5318 -Phenotype MP:0002622 abnormal cochlear hair cell morphology 0.04719692550380361 -0.18775751802150728 1.0 5319 -Biological Process GO:0031077 post-embryonic camera-type eye development 0.04718845005604133 -0.18791113390918157 1.0 5320 -Biological Process GO:0021534 cell proliferation in hindbrain 0.047152262192501015 -0.18856703209140185 1.0 5321 -Biological Process GO:0021930 cerebellar granule cell precursor proliferation 0.047152262192501015 -0.18856703209140185 1.0 5321 -Biological Process GO:0021924 cell proliferation in external granule layer 0.047152262192501015 -0.18856703209140185 1.0 5321 -Phenotype MP:0000434 megacephaly 0.047107272758089125 -0.1893824570809706 1.0 5324 -Phenotype MP:0010365 increased thymus tumor incidence 0.047083538942636394 -0.18981262799711918 1.0 5325 -Phenotype MP:0000819 abnormal olfactory bulb morphology 0.04708252944816671 -0.18983092489344988 1.0 5326 -Phenotype MP:0002816 colitis 0.047080003434326056 -0.18987670841655016 1.0 5327 -Phenotype MP:0009267 abnormal cerebellum fissure morphology 0.04706022634300733 -0.19023516445613115 1.0 5328 -Biological Process GO:0002697 regulation of immune effector process 0.047059316277163976 -0.1902516592274152 1.0 5329 -Biological Process GO:0001756 somitogenesis 0.047030054141619315 -0.19078202989962256 1.0 5330 -Biological Process GO:0022904 respiratory electron transport chain 0.04702514881905273 -0.19087093794336607 1.0 5331 -Biological Process GO:0043255 regulation of carbohydrate biosynthetic process 0.047024053540249966 -0.19089078966450893 1.0 5332 -Biological Process GO:0009648 photoperiodism 0.04699988201273475 -0.1913288940290027 1.0 5333 -Biological Process GO:0043153 entrainment of circadian clock by photoperiod 0.04699988201273475 -0.1913288940290027 1.0 5333 -Phenotype MP:0002757 decreased vertical activity 0.046987999154089244 -0.19154426859446952 1.0 5335 -Phenotype MP:0000767 abnormal smooth muscle morphology 0.046960630977714635 -0.19204031161493662 1.0 5336 -Phenotype MP:0000542 left-sided isomerism 0.04693181400618485 -0.19256261377357123 1.0 5337 -Biological Process GO:0002011 morphogenesis of an epithelial sheet 0.04693104699637818 -0.19257651568124748 1.0 5338 -Biological Process GO:0003156 regulation of animal organ formation 0.046911570386317214 -0.19292952555486348 1.0 5339 -Phenotype MP:0008874 decreased physiological sensitivity to xenobiotic 0.04688564543180418 -0.19339941045205555 1.0 5340 -Phenotype MP:0003373 increased circulating mineralocorticoid level 0.04687843721471052 -0.19353005802354073 1.0 5341 -Phenotype MP:0002666 increased circulating aldosterone level 0.04687843721471052 -0.19353005802354073 1.0 5341 -Phenotype MP:0009791 increased susceptibility to viral infection induced morbidity/mortality 0.0468578566045188 -0.19390307769071993 1.0 5343 -Phenotype MP:0003992 increased mortality induced by ionizing radiation 0.04684686011766015 -0.19410238693519527 1.0 5344 -Phenotype MP:0020204 abnormal heart left ventricle weight 0.04683967777429865 -0.19423256555017876 1.0 5345 -Phenotype MP:0005084 abnormal gallbladder morphology 0.04679569675540696 -0.19502971319917217 1.0 5346 -Phenotype MP:0010874 abnormal bone volume 0.046773298526776586 -0.19543567685677377 1.0 5347 -Phenotype MP:0020136 abnormal interventricular septum thickness 0.04677061626546797 -0.1954842923356788 1.0 5348 -Phenotype MP:0008470 abnormal spleen B cell follicle morphology 0.04676730848218258 -0.19554424528210373 1.0 5349 -Phenotype MP:0004151 decreased circulating iron level 0.04676725662305592 -0.19554518521896597 1.0 5350 -Phenotype MP:0009337 abnormal splenocyte number 0.046751072057398146 -0.19583852741042007 1.0 5351 -Biological Process GO:0050729 positive regulation of inflammatory response 0.046739394110479004 -0.19605018798960283 1.0 5352 -Biological Process GO:0098771 inorganic ion homeostasis 0.046662741552706 -0.1974395011014376 1.0 5353 -Phenotype MP:0010220 decreased T-helper 17 cell number 0.04664589685349685 -0.19774480808865502 1.0 5354 -Phenotype MP:0000279 ventricular hypoplasia 0.046610547649389655 -0.19838550572727112 1.0 5355 -Phenotype MP:0012772 abnormal central memory CD8-positive, alpha-beta T cell number 0.046609472436814015 -0.1984049937518426 1.0 5356 -Phenotype MP:0010846 abnormal central memory CD8 positive, alpha-beta T cell morphology 0.046609472436814015 -0.1984049937518426 1.0 5356 -Phenotype MP:0002032 increased sarcoma incidence 0.04660310821917801 -0.1985203439927889 1.0 5358 -Phenotype MP:0010264 increased hepatoma incidence 0.046601674001120585 -0.1985463389238167 1.0 5359 -Phenotype MP:0009135 abnormal brown fat cell size 0.04657050669682716 -0.19911124041925835 1.0 5360 -Biological Process GO:0044321 response to leptin 0.04656216601244134 -0.199262413746223 1.0 5361 -Biological Process GO:0034032 purine nucleoside bisphosphate metabolic process 0.04656032203185834 -0.19929583554552582 1.0 5362 -Biological Process GO:0033875 ribonucleoside bisphosphate metabolic process 0.04656032203185834 -0.19929583554552582 1.0 5362 -Biological Process GO:0033865 nucleoside bisphosphate metabolic process 0.04656032203185834 -0.19929583554552582 1.0 5362 -Phenotype MP:0020475 delayed circadian behavior phase 0.04655165819173934 -0.1994528660090337 1.0 5365 -Phenotype MP:0002594 low mean erythrocyte cell number 0.04654709201402929 -0.19953562711639727 1.0 5366 -Phenotype MP:0005404 abnormal axon morphology 0.04654304093139783 -0.1996090522228847 1.0 5367 -Phenotype MP:0009230 abnormal sperm head morphology 0.04653714512128648 -0.19971591266603958 1.0 5368 -Phenotype MP:0008050 decreased memory T cell number 0.046529238832121234 -0.1998592126617914 1.0 5369 -Biological Process GO:0061756 leukocyte adhesion to vascular endothelial cell 0.046515597834276945 -0.20010645316770775 1.0 5370 -Phenotype MP:0010282 decreased organ/body region tumor incidence 0.04651089373387074 -0.20019171409785289 1.0 5371 -Biological Process GO:0044550 secondary metabolite biosynthetic process 0.046505435143615714 -0.20029065001380625 1.0 5372 -Biological Process GO:0002700 regulation of production of molecular mediator of immune response 0.046498245757319756 -0.2004209562806447 1.0 5373 -Phenotype MP:0004134 abnormal chest morphology 0.04646650599751223 -0.2009962334240072 1.0 5374 -Phenotype MP:0004809 increased hematopoietic stem cell number 0.04644349401071468 -0.20141332133230477 1.0 5375 -Biological Process GO:0001759 organ induction 0.046427854760689335 -0.20169677978106026 1.0 5376 -Phenotype MP:0008022 dilated heart ventricle 0.04633411868268433 -0.20339572846598175 1.0 5377 -Phenotype MP:0003651 abnormal axon extension 0.04633383848243655 -0.2034008070424767 1.0 5378 -Phenotype MP:0011634 abnormal mitochondrial inner membrane morphology 0.04632705517121316 -0.20352375327542852 1.0 5379 -Biological Process GO:0009416 response to light stimulus 0.04631838513848596 -0.20368089597878883 1.0 5380 -Phenotype MP:0020408 abnormal susceptibility to induced thrombosis 0.046317984957814584 -0.20368814917776876 1.0 5381 -Phenotype MP:0000837 abnormal hypothalamus morphology 0.0463155324680925 -0.20373260009012603 1.0 5382 -Phenotype MP:0004376 absent frontal bone 0.04630870266214038 -0.2038563890312423 1.0 5383 -Phenotype MP:0005028 abnormal trophectoderm morphology 0.046302456710051954 -0.2039695957315071 1.0 5384 -Phenotype MP:0008023 abnormal styloid process morphology 0.046295797799314586 -0.20409028722917844 1.0 5385 -Phenotype MP:0004137 abnormal gastric surface mucous cell morphology 0.04629100938717334 -0.20417707629357468 1.0 5386 -Phenotype MP:0020182 abnormal body mass index 0.04627535023641549 -0.20446089543934287 1.0 5387 -Phenotype MP:0002427 disproportionate dwarf 0.04623814708972729 -0.20513519543659142 1.0 5388 -Phenotype MP:0009764 decreased susceptibility to induced morbidity/mortality 0.046223270718709464 -0.2054048268476239 1.0 5389 -Phenotype MP:0010556 thin ventricle myocardium compact layer 0.04621803406932079 -0.20549974012735175 1.0 5390 -Phenotype MP:0008428 abnormal spatial working memory 0.046199271841179 -0.20583980196379842 1.0 5391 -Biological Process GO:0035092 sperm DNA condensation 0.04619401312120963 -0.20593511526862707 1.0 5392 -Phenotype MP:0008004 abnormal stomach pH 0.046189535768101586 -0.20601626644687923 1.0 5393 -Phenotype MP:0009602 abnormal keratohyalin granule morphology 0.04618942544064675 -0.20601826611113122 1.0 5394 -Phenotype MP:0020396 abnormal social recognition 0.04618940787830417 -0.2060185844252688 1.0 5395 -Biological Process GO:0045836 positive regulation of meiotic nuclear division 0.04617162493138016 -0.20634089697486102 1.0 5396 -Phenotype MP:0010505 abnormal T wave 0.0461442227218799 -0.20683755683929367 1.0 5397 -Biological Process GO:0060113 inner ear receptor cell differentiation 0.046143962634809355 -0.20684227086825535 1.0 5398 -Phenotype MP:0011184 absent embryonic epiblast 0.04613925379335715 -0.2069276177289625 1.0 5399 -Biological Process GO:0042461 photoreceptor cell development 0.04612514168341886 -0.20718339705247815 1.0 5400 -Biological Process GO:0060291 long-term synaptic potentiation 0.04612311952957071 -0.20722004820851259 1.0 5401 -Biological Process GO:0008360 regulation of cell shape 0.046122592111964233 -0.20722960755287603 1.0 5402 -Phenotype MP:0001361 social withdrawal 0.04609202044018601 -0.20778371332163556 1.0 5403 -Phenotype MP:0000468 abnormal esophageal epithelium morphology 0.04604637621046104 -0.20861100635240817 1.0 5404 -Phenotype MP:0002625 heart left ventricle hypertrophy 0.04599880428538483 -0.20947323849682425 1.0 5405 -Phenotype MP:0009862 abnormal aorta elastic tissue morphology 0.04597710038235303 -0.2098666176342741 1.0 5406 -Phenotype MP:0008272 abnormal endochondral bone ossification 0.045950652445563844 -0.2103459814863064 1.0 5407 -Phenotype MP:0004957 abnormal blastocyst morphology 0.04594628919197297 -0.21042506463239027 1.0 5408 -Phenotype MP:0010386 abnormal urinary bladder physiology 0.04594362353223824 -0.21047337921090845 1.0 5409 -Phenotype MP:0001512 trunk curl 0.04591530860919846 -0.21098658183561747 1.0 5410 -Biological Process GO:1904888 cranial skeletal system development 0.04591526728264983 -0.210987330871495 1.0 5411 -Phenotype MP:0005599 increased cardiac muscle contractility 0.045910741947991496 -0.21106935170627106 1.0 5412 -Biological Process GO:0006163 purine nucleotide metabolic process 0.04590974774861012 -0.21108737138201908 1.0 5413 -Biological Process GO:0048640 negative regulation of developmental growth 0.04589518429567874 -0.211351331211919 1.0 5414 -Phenotype MP:0001083 small geniculate ganglion 0.04588985151145841 -0.21144798691728794 1.0 5415 -Phenotype MP:0006429 abnormal hyaline cartilage morphology 0.04588470972342218 -0.21154118085294457 1.0 5416 -Phenotype MP:0009219 increased prostate intraepithelial neoplasia incidence 0.0458673838801803 -0.21185520848475325 1.0 5417 -Phenotype MP:0000939 decreased motor neuron number 0.04586358039821403 -0.21192414587601438 1.0 5418 -Biological Process GO:0002821 positive regulation of adaptive immune response 0.045811910571574854 -0.21286065171119634 1.0 5419 -Biological Process GO:0090288 negative regulation of cellular response to growth factor stimulus 0.045802084753298944 -0.21303874280902577 1.0 5420 -Biological Process GO:0010002 cardioblast differentiation 0.04578725186821686 -0.2133075860456977 1.0 5421 -Biological Process GO:0008637 apoptotic mitochondrial changes 0.045779049441039166 -0.21345625348691455 1.0 5422 -Phenotype MP:0002908 delayed wound healing 0.0457681032276529 -0.21365465153421148 1.0 5423 -Phenotype MP:0000733 abnormal muscle development 0.04573719406107135 -0.21421487433244868 1.0 5424 -Phenotype MP:0000520 absent kidney 0.04572122236306031 -0.21450435833806683 1.0 5425 -Phenotype MP:0020202 abnormal macrophage cell number 0.04568941664753701 -0.21508083091630315 1.0 5426 -Phenotype MP:0001274 curly vibrissae 0.04566658222183362 -0.21549470056335238 1.0 5427 -Phenotype MP:0030258 small mandibular condyloid process 0.04566382970951799 -0.21554458932847245 1.0 5428 -Biological Process GO:0071479 cellular response to ionizing radiation 0.045657029148528316 -0.21566784821017557 1.0 5429 -Phenotype MP:0004158 right aortic arch 0.04565172774370907 -0.21576393516983494 1.0 5430 -Phenotype MP:0005650 abnormal limb bud morphology 0.04560028722981624 -0.21669628475486077 1.0 5431 -Biological Process GO:0106027 neuron projection organization 0.04559925110669394 -0.21671506429048368 1.0 5432 -Phenotype MP:0010251 subcapsular cataract 0.04557682496847004 -0.21712153380418922 1.0 5433 -Phenotype MP:0000947 convulsive seizures 0.04557232014971857 -0.21720318279203374 1.0 5434 -Phenotype MP:0006404 abnormal lumbar dorsal root ganglion morphology 0.0455587527024659 -0.21744909020738812 1.0 5435 -Biological Process GO:0003214 cardiac left ventricle morphogenesis 0.04555693081854861 -0.2174821115088041 1.0 5436 -Phenotype MP:0008465 absent mesenteric lymph nodes 0.04555106588603142 -0.2175884123014051 1.0 5437 -Phenotype MP:0011203 abnormal parietal yolk sac morphology 0.04552180716327969 -0.218118721117386 1.0 5438 -Phenotype MP:0006267 abnormal intercalated disk morphology 0.04551597127685503 -0.2182244954550536 1.0 5439 -Phenotype MP:0006329 sensorineural hearing impairment 0.04549894124250986 -0.21853316160655764 1.0 5440 -Biological Process GO:2000317 negative regulation of T-helper 17 type immune response 0.045475952991819946 -0.21894981930239374 1.0 5441 -Biological Process GO:0002922 positive regulation of humoral immune response 0.04546480181825019 -0.219151932214251 1.0 5442 -Phenotype MP:0008075 decreased CD4-positive, alpha-beta T cell number 0.04542055253249111 -0.2199539421494767 1.0 5443 -Biological Process GO:0042168 heme metabolic process 0.04539744354805664 -0.22037278812159775 1.0 5444 -Phenotype MP:0011747 myelofibrosis 0.04537661858147002 -0.22075023670221772 1.0 5445 -Biological Process GO:0006998 nuclear envelope organization 0.0453281248078774 -0.22162917717663846 1.0 5446 -Biological Process GO:0032640 tumor necrosis factor production 0.04532363819205132 -0.22171049623990313 1.0 5447 -Biological Process GO:0071706 tumor necrosis factor superfamily cytokine production 0.04532363819205132 -0.22171049623990313 1.0 5447 -Phenotype MP:0005287 narrow eye opening 0.04529487743222471 -0.22223177957204926 1.0 5449 -Biological Process GO:0021681 cerebellar granular layer development 0.04528673187379473 -0.22237941627796984 1.0 5450 -Biological Process GO:0006865 amino acid transport 0.045278681403085 -0.2225253295369454 1.0 5451 -Biological Process GO:0031069 hair follicle morphogenesis 0.045254441384799615 -0.22296467528369432 1.0 5452 -Phenotype MP:0004417 decreased cochlear nerve compound action potential 0.0452475265517428 -0.22309000532500137 1.0 5453 -Phenotype MP:0001241 absent epidermis stratum corneum 0.045242286960262446 -0.2231849719295845 1.0 5454 -Phenotype MP:0000850 absent cerebellum 0.04523586854588013 -0.22330130447630714 1.0 5455 -Biological Process GO:0060487 lung epithelial cell differentiation 0.04522704046093118 -0.2234613118462933 1.0 5456 -Biological Process GO:0060479 lung cell differentiation 0.04522704046093118 -0.2234613118462933 1.0 5456 -Phenotype MP:0011966 abnormal auditory brainstem response waveform shape 0.0452068236184604 -0.22382773829233213 1.0 5458 -Phenotype MP:0006292 abnormal nasal placode morphology 0.04519447349856187 -0.2240515818796338 1.0 5459 -Biological Process GO:0048384 retinoic acid receptor signaling pathway 0.045193499637506296 -0.2240692329270734 1.0 5460 -Phenotype MP:0010650 abnormal aorticopulmonary septum morphology 0.04518841192326062 -0.22416144678550354 1.0 5461 -Phenotype MP:0010651 aorticopulmonary septal defect 0.04518841192326062 -0.22416144678550354 1.0 5461 -Phenotype MP:0003816 abnormal pituitary gland development 0.04518307458232429 -0.2242581850804882 1.0 5463 -Phenotype MP:0010484 bicuspid aortic valve 0.04517246132638786 -0.22445054833698133 1.0 5464 -Biological Process GO:0045666 positive regulation of neuron differentiation 0.045158314851706516 -0.22470695051496514 1.0 5465 -Biological Process GO:0007272 ensheathment of neurons 0.045146738613259685 -0.22491676764732405 1.0 5466 -Biological Process GO:0008366 axon ensheathment 0.045146738613259685 -0.22491676764732405 1.0 5466 -Biological Process GO:0007266 Rho protein signal transduction 0.04512931919564789 -0.2252324912968892 1.0 5468 -Biological Process GO:0030512 negative regulation of transforming growth factor beta receptor signaling pathway 0.04511910567318933 -0.22541760945970005 1.0 5469 -Biological Process GO:0051147 regulation of muscle cell differentiation 0.04509537420725718 -0.22584773779123254 1.0 5470 -Biological Process GO:0007028 cytoplasm organization 0.045053096076390964 -0.2266140209168425 1.0 5471 -Phenotype MP:0011682 renal glomerulus cyst 0.04504134086449629 -0.2268270819090931 1.0 5472 -Phenotype MP:0011711 impaired osteoblast differentiation 0.045023900232656344 -0.2271431900625311 1.0 5473 -Phenotype MP:0009962 abnormal cerebellum posterior lobe morphology 0.04500026684227476 -0.22757154079325917 1.0 5474 -Phenotype MP:0000869 abnormal cerebellum posterior vermis morphology 0.04500026684227476 -0.22757154079325917 1.0 5474 -Biological Process GO:0032613 interleukin-10 production 0.04500013474592679 -0.2275739350145819 1.0 5476 -Biological Process GO:0045109 intermediate filament organization 0.04499267034515242 -0.2277092258668263 1.0 5477 -Phenotype MP:0005034 abnormal anus morphology 0.04494633908251766 -0.22854897123914575 1.0 5478 -Phenotype MP:0002884 abnormal pharyngeal arch morphology 0.044934343161231016 -0.2287663950435989 1.0 5479 -Phenotype MP:0009435 abnormal miniature inhibitory postsynaptic currents 0.044923087364911796 -0.22897040422300222 1.0 5480 -Phenotype MP:0000828 abnormal fourth ventricle morphology 0.04490153803826136 -0.22936098169277594 1.0 5481 -Biological Process GO:0033687 osteoblast proliferation 0.04489012119168301 -0.22956790987766545 1.0 5482 -Phenotype MP:0001636 irregular heartbeat 0.044885337120840973 -0.22965462025683464 1.0 5483 -Phenotype MP:0020848 abnormal exocytosis 0.044880470635205505 -0.22974282438854715 1.0 5484 -Biological Process GO:0042438 melanin biosynthetic process 0.044872020322446415 -0.2298959847090426 1.0 5485 -Biological Process GO:0032602 chemokine production 0.04486981928812073 -0.22993587803989962 1.0 5486 -Phenotype MP:0000229 abnormal megakaryocyte differentiation 0.04486299115554537 -0.23005963665137844 1.0 5487 -Phenotype MP:0010207 abnormal telomere morphology 0.0448337155901154 -0.23059025073771705 1.0 5488 -Biological Process GO:1903867 extraembryonic membrane development 0.04483226352784897 -0.230616569091658 1.0 5489 -Phenotype MP:0006278 aortic aneurysm 0.044831369966424006 -0.23063276472348032 1.0 5490 -Phenotype MP:0005251 blepharitis 0.04475491488617145 -0.2320184985926072 1.0 5491 -Phenotype MP:0011020 abnormal circadian temperature homeostasis 0.04475274583078337 -0.23205781231126849 1.0 5492 -Biological Process GO:1901379 regulation of potassium ion transmembrane transport 0.044663280057349763 -0.23367936253350413 1.0 5493 -Phenotype MP:0002691 small stomach 0.044631927570908725 -0.23424762042034658 1.0 5494 -Phenotype MP:0010592 abnormal atrioventricular septum morphology 0.044616875227942776 -0.23452044128965607 1.0 5495 -Phenotype MP:0008151 increased diameter of long bones 0.04461367726439425 -0.23457840377412134 1.0 5496 -Phenotype MP:0002633 persistent truncus arteriosus 0.04457237088346222 -0.23532707411596762 1.0 5497 -Phenotype MP:0000285 abnormal heart valve morphology 0.044566958839718174 -0.23542516638521313 1.0 5498 -Phenotype MP:0021002 brain lesion 0.04456453266609839 -0.2354691403231936 1.0 5499 -Phenotype MP:0009181 decreased pancreatic delta cell number 0.04455573828954207 -0.2356285367349388 1.0 5500 -Phenotype MP:0020749 abnormal cingulate cortex morphology 0.044546720138107454 -0.23579198902402906 1.0 5501 -Biological Process GO:2000696 regulation of epithelial cell differentiation involved in kidney development 0.04453673128131175 -0.23597303516419324 1.0 5502 -Phenotype MP:0006395 abnormal epiphyseal plate morphology 0.04453484609186664 -0.23600720386632754 1.0 5503 -Phenotype MP:0003965 abnormal pituitary hormone level 0.04451844760127277 -0.2363044234067874 1.0 5504 -Phenotype MP:0020355 abnormal Sertoli cell barrier morphology 0.04451281937840745 -0.23640643388171856 1.0 5505 -Biological Process GO:0050954 sensory perception of mechanical stimulus 0.0444500630446939 -0.23754388056075978 1.0 5506 -Phenotype MP:0002422 abnormal basophil morphology 0.04439964140970931 -0.23845776315828093 1.0 5507 -Phenotype MP:0012442 abnormal basophil cell number 0.04439964140970931 -0.23845776315828093 1.0 5507 -Phenotype MP:0004992 increased bone resorption 0.04434636721170626 -0.23942334792098777 1.0 5509 -Phenotype MP:0011702 abnormal fibroblast proliferation 0.04432641469524645 -0.23978498350807154 1.0 5510 -Phenotype MP:0000018 small ears 0.044303240022923296 -0.24020502006075098 1.0 5511 -Biological Process GO:0008361 regulation of cell size 0.04429689707719553 -0.2403199847523838 1.0 5512 -Phenotype MP:0008882 abnormal enterocyte physiology 0.04428385526382983 -0.24055636515295342 1.0 5513 -Phenotype MP:0006340 abnormal fourth pharyngeal arch morphology 0.0442813156039088 -0.24060239600867958 1.0 5514 -Biological Process GO:0035641 locomotory exploration behavior 0.04427871765361924 -0.2406494833663105 1.0 5515 -Phenotype MP:0000042 abnormal organ of Corti morphology 0.044272261684152214 -0.24076649659184046 1.0 5516 -Phenotype MP:0009640 abnormal renal tubule epithelium morphology 0.04426325911514284 -0.24092966645242048 1.0 5517 -Biological Process GO:0097107 postsynaptic density assembly 0.044253528832636446 -0.2411060259824967 1.0 5518 -Phenotype MP:0003858 enhanced coordination 0.044246172094395186 -0.2412393654716914 1.0 5519 -Phenotype MP:0006241 abnormal placement of pupils 0.04422137499652279 -0.24168880818059085 1.0 5520 -Phenotype MP:0004036 abnormal muscle relaxation 0.04420346905019612 -0.24201335007109265 1.0 5521 -Biological Process GO:0045471 response to ethanol 0.04420004656897414 -0.24207538189592476 1.0 5522 -Phenotype MP:0020917 decreased susceptibility to Herpesvirales infection 0.04418678940008558 -0.2423156655746146 1.0 5523 -Phenotype MP:0031422 failure of superovulation 0.04418622900746394 -0.24232582258489108 1.0 5524 -Phenotype MP:0008539 decreased susceptibility to induced colitis 0.04416525101263802 -0.24270604477340518 1.0 5525 -Biological Process GO:0030003 intracellular monoatomic cation homeostasis 0.04416458868620632 -0.24271804931470958 1.0 5526 -Phenotype MP:0011443 abnormal renal water transport 0.044151603375457205 -0.24295340561604029 1.0 5527 -Phenotype MP:0004740 sensorineural hearing loss 0.04413936021138731 -0.24317531064917716 1.0 5528 -Phenotype MP:0001158 abnormal prostate gland morphology 0.04412500915633144 -0.2434354208077557 1.0 5529 -Phenotype MP:0004019 abnormal vitamin homeostasis 0.04411273923702708 -0.243657810774457 1.0 5530 -Biological Process GO:0043266 regulation of potassium ion transport 0.044091992069772434 -0.24403384925689958 1.0 5531 -Phenotype MP:0014121 increased pancreatic islet cell apoptosis 0.044091901415881374 -0.24403549234152908 1.0 5532 -Biological Process GO:0002762 negative regulation of myeloid leukocyte differentiation 0.044066495402377615 -0.24449597153107877 1.0 5533 -Biological Process GO:0098693 regulation of synaptic vesicle cycle 0.04404533205313821 -0.24487955323327998 1.0 5534 -Phenotype MP:0010375 increased kidney iron level 0.04403305559612336 -0.24510206169474727 1.0 5535 -Phenotype MP:0012504 increased forebrain apoptosis 0.044026637428155935 -0.24521838977524665 1.0 5536 -Phenotype MP:0000131 abnormal long bone epiphysis morphology 0.04402235734664239 -0.2452959654431597 1.0 5537 -Phenotype MP:0002858 abnormal posterior semicircular canal morphology 0.04401707092046214 -0.24539178091782032 1.0 5538 -Biological Process GO:0030705 cytoskeleton-dependent intracellular transport 0.04400175199900891 -0.2456694334717921 1.0 5539 -Biological Process GO:0042753 positive regulation of circadian rhythm 0.043977620260043815 -0.24610681667634038 1.0 5540 -Biological Process GO:0000226 microtubule cytoskeleton organization 0.04397687174897358 -0.2461203832979176 1.0 5541 -Phenotype MP:0001327 decreased retina photoreceptor cell number 0.04397679226688356 -0.24612182389576626 1.0 5542 -Phenotype MP:0013296 abnormal susceptibility to induced colitis 0.04397308015030621 -0.24618910530663374 1.0 5543 -Phenotype MP:0020080 increased bone mineralization 0.04393348726889412 -0.2469067187937665 1.0 5544 -Phenotype MP:0014137 abnormal preimplantation embryo morphology 0.043894884647379784 -0.24760638400754692 1.0 5545 -Phenotype MP:0005117 increased circulating pituitary hormone level 0.0438848840532744 -0.2477876428842291 1.0 5546 -Phenotype MP:0004263 abnormal limb posture 0.043880395827705754 -0.24786899112377325 1.0 5547 -Phenotype MP:0030485 abnormal osteocyte lacunocanalicular system morphology 0.04387325469804482 -0.24799842274822903 1.0 5548 -Biological Process GO:0090092 regulation of transmembrane receptor protein serine/threonine kinase signaling pathway 0.04385294427609632 -0.24836654530460228 1.0 5549 -Biological Process GO:0019693 ribose phosphate metabolic process 0.043845721298994667 -0.24849746039844067 1.0 5550 -Phenotype MP:0003178 left pulmonary isomerism 0.04383165494270658 -0.2487524104457001 1.0 5551 -Phenotype MP:0011444 abnormal renal water homeostasis 0.04381275825975772 -0.2490949092500945 1.0 5552 -Phenotype MP:0008942 abnormal induced cell death 0.0437636802159076 -0.24998443951242574 1.0 5553 -Phenotype MP:0009923 decreased transitional stage T1 B cell number 0.0437263526766799 -0.2506609941009254 1.0 5554 -Phenotype MP:0030071 abnormal face shape 0.04372327107223828 -0.25071684759858576 1.0 5555 -Phenotype MP:0014138 abnormal germ layer morphology 0.04372180577589169 -0.25074340581772664 1.0 5556 -Phenotype MP:0004141 abnormal enteroendocrine cell morphology 0.04369951605067657 -0.25114740287144877 1.0 5557 -Phenotype MP:0002715 decreased glycogen catabolism rate 0.043693926002305705 -0.25124872144088817 1.0 5558 -Phenotype MP:0005445 abnormal neurotransmitter secretion 0.0436484168081539 -0.25207356697743727 1.0 5559 -Phenotype MP:0002546 mydriasis 0.04364533197461051 -0.25212947900195637 1.0 5560 -Phenotype MP:0002769 abnormal vas deferens morphology 0.04363745591453272 -0.2522722311012155 1.0 5561 -Phenotype MP:0004524 short cochlear hair cell stereocilia 0.043627589732900485 -0.2524510537772441 1.0 5562 -Phenotype MP:0012114 absent inner cell mass proliferation 0.04359839519770259 -0.25298019920595205 1.0 5563 -Phenotype MP:0001675 abnormal ectoderm development 0.04358336763937176 -0.25325257085843766 1.0 5564 -Biological Process GO:0098916 anterograde trans-synaptic signaling 0.04352095731845529 -0.2543837461209754 1.0 5565 -Biological Process GO:0007268 chemical synaptic transmission 0.04352095731845529 -0.2543837461209754 1.0 5565 -Biological Process GO:0016525 negative regulation of angiogenesis 0.04350565463943601 -0.25466110428390387 1.0 5567 -Biological Process GO:2000181 negative regulation of blood vessel morphogenesis 0.04350565463943601 -0.25466110428390387 1.0 5567 -Biological Process GO:1901343 negative regulation of vasculature development 0.04350565463943601 -0.25466110428390387 1.0 5567 -Biological Process GO:0072089 stem cell proliferation 0.043504537857475656 -0.25468134574571094 1.0 5570 -Biological Process GO:0042053 regulation of dopamine metabolic process 0.04347616969735335 -0.2551955132824716 1.0 5571 -Phenotype MP:0004889 increased energy expenditure 0.04346031177054577 -0.2554829352065453 1.0 5572 -Phenotype MP:0001729 impaired embryo implantation 0.04344569290726341 -0.25574789933857656 1.0 5573 -Phenotype MP:0008997 increased blood osmolality 0.04337801956836718 -0.2569744658065684 1.0 5574 -Biological Process GO:0097152 mesenchymal cell apoptotic process 0.043375687977411426 -0.2570167254516523 1.0 5575 -Biological Process GO:0042733 embryonic digit morphogenesis 0.04337358068736452 -0.25705491968518684 1.0 5576 -Phenotype MP:0002741 small olfactory bulb 0.04337264448690892 -0.25707188814137494 1.0 5577 -Phenotype MP:0005139 increased prolactin level 0.04336374587595471 -0.2572331737818674 1.0 5578 -Biological Process GO:1902914 regulation of protein polyubiquitination 0.04335936917067518 -0.25731250073726386 1.0 5579 -Phenotype MP:0008458 abnormal cortical ventricular zone morphology 0.043312638636705536 -0.25815948282701123 1.0 5580 -Phenotype MP:0000045 abnormal hair cell morphology 0.0433056420806881 -0.25828629408152276 1.0 5581 -Phenotype MP:0009888 palatal shelves fail to meet at midline 0.043301511880295074 -0.2583611531824745 1.0 5582 -Phenotype MP:0009403 increased variability of skeletal muscle fiber size 0.043221299455763806 -0.2598149882060018 1.0 5583 -Phenotype MP:0004966 abnormal inner cell mass proliferation 0.04322046474481411 -0.25983011718409066 1.0 5584 -Phenotype MP:0005419 decreased circulating serum albumin level 0.04322006963984948 -0.25983727838684584 1.0 5585 -Biological Process GO:1904889 regulation of excitatory synapse assembly 0.04320055632780906 -0.2601909534768978 1.0 5586 -Phenotype MP:0002634 abnormal sensorimotor gating 0.04318364573227906 -0.2604974548224671 1.0 5587 -Phenotype MP:0006104 abnormal tectum morphology 0.043163090478105404 -0.26087001491661466 1.0 5588 -Phenotype MP:0006103 abnormal midbrain roof plate morphology 0.043163090478105404 -0.26087001491661466 1.0 5588 -Phenotype MP:0004411 decreased endocochlear potential 0.04315741245088767 -0.26097292808601363 1.0 5590 -Biological Process GO:0006937 regulation of muscle contraction 0.04315355685719302 -0.26104280999249535 1.0 5591 -Phenotype MP:0000066 osteoporosis 0.0431460440595518 -0.26117897802879775 1.0 5592 -Phenotype MP:0004180 failure of initiation of embryo turning 0.04313624600059418 -0.2613565659942335 1.0 5593 -Phenotype MP:0008006 increased stomach pH 0.04310626360252623 -0.26189999128844754 1.0 5594 -Biological Process GO:0009150 purine ribonucleotide metabolic process 0.04309954151910844 -0.26202182777900324 1.0 5595 -Phenotype MP:0005333 decreased heart rate 0.043094212128606424 -0.26211842197386975 1.0 5596 -Phenotype MP:0008032 abnormal lipolysis 0.04307036085549654 -0.2625507217878387 1.0 5597 -Phenotype MP:0003052 omphalocele 0.04303639791859093 -0.2631662935956199 1.0 5598 -Phenotype MP:0003449 abnormal intestinal goblet cell morphology 0.042998713482572004 -0.26384931687095836 1.0 5599 -Biological Process GO:1901861 regulation of muscle tissue development 0.04299057332624012 -0.2639968556648726 1.0 5600 -Phenotype MP:0011104 embryonic lethality before implantation, incomplete penetrance 0.042971836472149416 -0.26433645760144253 1.0 5601 -Phenotype MP:0003451 absent olfactory bulb 0.04295891552382647 -0.26457064734597224 1.0 5602 -Phenotype MP:0008788 abnormal fetal cardiomyocyte morphology 0.04293833608011077 -0.2649436458709941 1.0 5603 -Biological Process GO:0071453 cellular response to oxygen levels 0.04293472295577694 -0.26500913306617097 1.0 5604 -Biological Process GO:0035265 organ growth 0.0429085115235982 -0.2654842103168705 1.0 5605 -Phenotype MP:0011109 lethality throughout fetal growth and development, incomplete penetrance 0.04288424277223757 -0.2659240768451739 1.0 5606 -Phenotype MP:0000459 abnormal presacral vertebrae morphology 0.042879379680656804 -0.2660122194602868 1.0 5607 -Phenotype MP:0001488 increased startle reflex 0.04286755011681398 -0.266226628067535 1.0 5608 -Biological Process GO:0071456 cellular response to hypoxia 0.04285091203085145 -0.26652819022873553 1.0 5609 -Phenotype MP:0008380 abnormal gonial bone morphology 0.04282708835736848 -0.26695998980468677 1.0 5610 -Biological Process GO:0034104 negative regulation of tissue remodeling 0.042816926165439306 -0.26714417761136106 1.0 5611 -Biological Process GO:0098810 neurotransmitter reuptake 0.0428127281063847 -0.26722026663771936 1.0 5612 -Phenotype MP:0013209 abnormal motile cilium physiology 0.04279219133459067 -0.2675924917422319 1.0 5613 -Biological Process GO:0030501 positive regulation of bone mineralization 0.042754529399878116 -0.2682751071856482 1.0 5614 -Phenotype MP:0000447 flattened snout 0.04272728890585842 -0.2687688359875819 1.0 5615 -Biological Process GO:0016125 sterol metabolic process 0.04272421468575416 -0.2688245556455242 1.0 5616 -Phenotype MP:0000402 abnormal zigzag hair morphology 0.04268344360188048 -0.2695635238294322 1.0 5617 -Phenotype MP:0009050 dilated proximal convoluted tubule 0.04267341807655445 -0.2697452345797731 1.0 5618 -Biological Process GO:0045736 negative regulation of cyclin-dependent protein serine/threonine kinase activity 0.04267171885830279 -0.2697760325892002 1.0 5619 -Phenotype MP:0004701 decreased circulating insulin-like growth factor I level 0.04263823822249602 -0.27038286278078566 1.0 5620 -Biological Process GO:0030509 BMP signaling pathway 0.04263376128804919 -0.27046400637088247 1.0 5621 -Biological Process GO:0044342 type B pancreatic cell proliferation 0.0426194008335562 -0.270724286892481 1.0 5622 -Phenotype MP:0011146 abnormal mesenchymal cell proliferation involved in lung development 0.04261297681352638 -0.2708407210405044 1.0 5623 -Biological Process GO:1905145 cellular response to acetylcholine 0.04261106885731225 -0.2708753023860212 1.0 5624 -Biological Process GO:0060586 multicellular organismal-level iron ion homeostasis 0.042554201142882 -0.2719060189543058 1.0 5625 -Phenotype MP:0011197 abnormal proamniotic cavity morphology 0.04253267392492943 -0.27229619570811214 1.0 5626 -Biological Process GO:0106056 regulation of calcineurin-mediated signaling 0.04252121055664437 -0.2725039670901368 1.0 5627 -Phenotype MP:0000489 abnormal large intestine morphology 0.04251597229511983 -0.2725989095895224 1.0 5628 -Phenotype MP:0013151 abnormal incidence of induced tumors 0.042497218315549645 -0.27293882192216884 1.0 5629 -Phenotype MP:0003161 absent lateral semicircular canal 0.04247801017218822 -0.27328696588763257 1.0 5630 -Biological Process GO:1904030 negative regulation of cyclin-dependent protein kinase activity 0.04247196926501284 -0.27339645618762987 1.0 5631 -Biological Process GO:0002691 regulation of cellular extravasation 0.042467154019126596 -0.2734837316085791 1.0 5632 -Phenotype MP:0008569 lethality at weaning 0.04244128573759931 -0.2739525893186234 1.0 5633 -Biological Process GO:0048534 hematopoietic or lymphoid organ development 0.04242426113495368 -0.2742611570216007 1.0 5634 -Biological Process GO:0048730 epidermis morphogenesis 0.042388410603340754 -0.2749109411264388 1.0 5635 -Biological Process GO:0048857 neural nucleus development 0.04238828992159882 -0.274913128460186 1.0 5636 -Phenotype MP:0008840 abnormal spike wave discharge 0.042373012653011854 -0.2751900260638348 1.0 5637 -Biological Process GO:0010453 regulation of cell fate commitment 0.042329963846060026 -0.2759702775477335 1.0 5638 -Phenotype MP:0004016 decreased bone mass 0.042319884209634506 -0.2761529690515183 1.0 5639 -Phenotype MP:0004959 abnormal prostate gland size 0.042311653738750565 -0.2763021447796068 1.0 5640 -Phenotype MP:0011346 renal tubule atrophy 0.04230164987224727 -0.2764834629678821 1.0 5641 -Phenotype MP:0010402 ventricular septal defect 0.04230043360058422 -0.2765055076617335 1.0 5642 -Phenotype MP:0001485 abnormal pinna reflex 0.04228942036594319 -0.27670512045659695 1.0 5643 -Phenotype MP:0001261 obese 0.04228519015306098 -0.276781792264999 1.0 5644 -Phenotype MP:0021158 decreased heart left ventricle wall thickness 0.04223313633928827 -0.27772525779435026 1.0 5645 -Biological Process GO:0032370 positive regulation of lipid transport 0.04222473515577374 -0.27787752765658014 1.0 5646 -Phenotype MP:0030900 decreased ulna size 0.042205099835994964 -0.2782334141138137 1.0 5647 -Phenotype MP:0004359 short ulna 0.042205099835994964 -0.2782334141138137 1.0 5647 -Biological Process GO:1903844 regulation of cellular response to transforming growth factor beta stimulus 0.04219959055139677 -0.2783332688551488 1.0 5649 -Biological Process GO:0017015 regulation of transforming growth factor beta receptor signaling pathway 0.04219959055139677 -0.2783332688551488 1.0 5649 -Biological Process GO:1903670 regulation of sprouting angiogenesis 0.04218086626335005 -0.27867264303454825 1.0 5651 -Biological Process GO:0140448 signaling receptor ligand precursor processing 0.04217645452425067 -0.2787526049713033 1.0 5652 -Biological Process GO:1901142 insulin metabolic process 0.04215092097239459 -0.27921539576936666 1.0 5653 -Biological Process GO:0007009 plasma membrane organization 0.04214176826852567 -0.2793812867958799 1.0 5654 -Phenotype MP:0013522 decreased memory-marker CD4-positive NK T cell number 0.04212130249322055 -0.279752225102459 1.0 5655 -Phenotype MP:0004255 abnormal spongiotrophoblast layer morphology 0.042120066737892814 -0.27977462293404765 1.0 5656 -Phenotype MP:0003730 abnormal photoreceptor inner segment morphology 0.04209879370843683 -0.28016019256942976 1.0 5657 -Biological Process GO:0001942 hair follicle development 0.04209598367834988 -0.28021112383327634 1.0 5658 -Phenotype MP:0008668 abnormal interleukin-12b secretion 0.04201998845128929 -0.2815885229502738 1.0 5659 -Phenotype MP:0006380 abnormal spermatid morphology 0.04198796028475149 -0.28216902741107425 1.0 5660 -Phenotype MP:0011108 embryonic lethality during organogenesis, incomplete penetrance 0.04189997619843644 -0.28376372233452735 1.0 5661 -Phenotype MP:0014273 abnormal skin vasculature morphology 0.04184818981418725 -0.28470234075434536 1.0 5662 -Biological Process GO:0035886 vascular associated smooth muscle cell differentiation 0.04183406501337028 -0.28495835009763676 1.0 5663 -Biological Process GO:0050900 leukocyte migration 0.04181645827682223 -0.2852774688674926 1.0 5664 -Phenotype MP:0006203 eye hemorrhage 0.04180444770732972 -0.28549515816790666 1.0 5665 -Phenotype MP:0003105 abnormal heart atrium morphology 0.041785163926365776 -0.2858446730506101 1.0 5666 -Phenotype MP:0003662 abnormal long bone epiphyseal plate proliferative zone 0.04177402780826711 -0.28604651308490137 1.0 5667 -Phenotype MP:0005410 abnormal fertilization 0.04170730888094931 -0.2872557810235482 1.0 5668 -Biological Process GO:0001961 positive regulation of cytokine-mediated signaling pathway 0.04166585256593114 -0.2880071688923479 1.0 5669 -Biological Process GO:0060760 positive regulation of response to cytokine stimulus 0.04166585256593114 -0.2880071688923479 1.0 5669 -Phenotype MP:0020351 decreased vocalization 0.04163335148742897 -0.28859624479305757 1.0 5671 -Phenotype MP:0012501 abnormal pericardial cavity morphology 0.04162938662468385 -0.28866810718041236 1.0 5672 -Phenotype MP:0003106 abnormal fear-related response 0.04160714046650993 -0.28907131458975294 1.0 5673 -Phenotype MP:0030190 small snout 0.0416016767817875 -0.2891703428419644 1.0 5674 -Biological Process GO:0009259 ribonucleotide metabolic process 0.041593607085148254 -0.2893166045672761 1.0 5675 -Phenotype MP:0001179 thick pulmonary interalveolar septum 0.041590237094081606 -0.28937768501797057 1.0 5676 -Phenotype MP:0008481 increased spleen germinal center number 0.041544768753680406 -0.29020179008801694 1.0 5677 -Biological Process GO:0046530 photoreceptor cell differentiation 0.04148997937036025 -0.2911948372980193 1.0 5678 -Phenotype MP:0020218 abnormal tear production 0.041489567647617465 -0.29120229969486056 1.0 5679 -Phenotype MP:0002919 enhanced paired-pulse facilitation 0.04148925273759496 -0.2912080073794574 1.0 5680 -Biological Process GO:0045069 regulation of viral genome replication 0.04148510689818985 -0.2912831499345453 1.0 5681 -Phenotype MP:0010958 abnormal tricarboxylic acid cycle 0.04147631475407254 -0.29144250588375564 1.0 5682 -Biological Process GO:0007178 cell surface receptor protein serine/threonine kinase signaling pathway 0.04147017898756744 -0.29155371549116277 1.0 5683 -Phenotype MP:0003053 delayed tooth eruption 0.041459388022883514 -0.29174929968509306 1.0 5684 -Phenotype MP:0010995 abnormal lung alveolus development 0.041457932653048646 -0.2917756779880864 1.0 5685 -Phenotype MP:0030384 short facial bone 0.041417016302341514 -0.29251727910587544 1.0 5686 -Phenotype MP:0003968 abnormal growth hormone level 0.04138346765435996 -0.29312534200526524 1.0 5687 -Biological Process GO:1905144 response to acetylcholine 0.041371099669428646 -0.2933495093929072 1.0 5688 -Biological Process GO:1904029 regulation of cyclin-dependent protein kinase activity 0.041364655865587574 -0.2934663021187678 1.0 5689 -Phenotype MP:0002275 abnormal type II pneumocyte morphology 0.04130572267774846 -0.2945344550019315 1.0 5690 -Phenotype MP:0009653 abnormal palate development 0.041303935589108165 -0.294566845645533 1.0 5691 -Biological Process GO:0072331 signal transduction by p53 class mediator 0.04129895481203416 -0.2946571212879523 1.0 5692 -Phenotype MP:0004982 abnormal osteoclast morphology 0.04127092195613391 -0.29516521149910646 1.0 5693 -Biological Process GO:2000191 regulation of fatty acid transport 0.041210973291576636 -0.296251769705723 1.0 5694 -Phenotype MP:0002196 absent corpus callosum 0.04114751846995657 -0.29740187634596016 1.0 5695 -Biological Process GO:0022404 molting cycle process 0.04114523412968918 -0.2974432795812543 1.0 5696 -Biological Process GO:0022405 hair cycle process 0.04114523412968918 -0.2974432795812543 1.0 5696 -Phenotype MP:0001780 decreased brown adipose tissue amount 0.04112115455266818 -0.29787971736043156 1.0 5698 -Biological Process GO:0010659 cardiac muscle cell apoptotic process 0.04110636684743896 -0.2981477417208156 1.0 5699 -Biological Process GO:0018126 protein hydroxylation 0.041099415149633556 -0.2982737399287183 1.0 5700 -Phenotype MP:0002826 tonic seizures 0.04108762196137028 -0.29848748923546714 1.0 5701 -Phenotype MP:0012349 increased susceptibility to induction of seizure by inducing agent 0.041063205546246095 -0.2989300321415563 1.0 5702 -Phenotype MP:0004132 absent embryonic cilia 0.04104836049128213 -0.2991990959550355 1.0 5703 -Biological Process GO:0003338 metanephros morphogenesis 0.04103545825056365 -0.2994329466277726 1.0 5704 -Phenotype MP:0006263 decreased systemic arterial diastolic blood pressure 0.041031553492719475 -0.2995037196251658 1.0 5705 -Phenotype MP:0004884 abnormal testis physiology 0.041019003641289076 -0.2997311833087061 1.0 5706 -Biological Process GO:0006753 nucleoside phosphate metabolic process 0.04099766686017614 -0.3001179084308127 1.0 5707 -Phenotype MP:0009232 abnormal sperm nucleus morphology 0.04099567043523167 -0.3001540932553343 1.0 5708 -Phenotype MP:0001284 absent vibrissae 0.04096314645644461 -0.3007435842193763 1.0 5709 -Phenotype MP:0006090 abnormal utricle morphology 0.04091968843141047 -0.3015312527036188 1.0 5710 -Phenotype MP:0001728 failure of embryo implantation 0.0409177505158983 -0.3015663770557463 1.0 5711 -Biological Process GO:0009101 glycoprotein biosynthetic process 0.040897877678553574 -0.3019265684739394 1.0 5712 -Biological Process GO:0090101 negative regulation of transmembrane receptor protein serine/threonine kinase signaling pathway 0.04088224875160473 -0.30220983981888566 1.0 5713 -Phenotype MP:0004415 abnormal cochlear nerve compound action potential 0.04086890801113663 -0.30245163821664833 1.0 5714 -Phenotype MP:0011964 increased total retina thickness 0.04084874858628462 -0.3028170239792067 1.0 5715 -Phenotype MP:0005645 abnormal hypothalamus physiology 0.04083242222895489 -0.3031129361178971 1.0 5716 -Phenotype MP:0008150 decreased diameter of long bones 0.04080675503296771 -0.30357814919055953 1.0 5717 -Phenotype MP:0008070 absent T cells 0.04079706037688302 -0.30375386299848073 1.0 5718 -Phenotype MP:0006271 abnormal involution of the mammary gland 0.04079411181105508 -0.30380730519643057 1.0 5719 -Phenotype MP:0002725 abnormal vein morphology 0.04078403739941738 -0.3039899020019243 1.0 5720 -Biological Process GO:0055074 calcium ion homeostasis 0.04077842009596777 -0.304091714564511 1.0 5721 -Phenotype MP:0008217 abnormal B cell activation 0.040769421781168935 -0.30425480731832966 1.0 5722 -Phenotype MP:0005188 small penis 0.040744870603981354 -0.3046997927613294 1.0 5723 -Biological Process GO:0045839 negative regulation of mitotic nuclear division 0.04073366625248731 -0.30490286951300644 1.0 5724 -Phenotype MP:0013287 abnormal acrosome reaction 0.040722391144007 -0.30510722872167695 1.0 5725 -Phenotype MP:0003131 increased erythrocyte cell number 0.040715237025114814 -0.30523689577349233 1.0 5726 -Phenotype MP:0009084 blind uterus 0.04071486900994725 -0.30524356597879926 1.0 5727 -Biological Process GO:0009314 response to radiation 0.040696861791265304 -0.3055699434115862 1.0 5728 -Biological Process GO:0070509 calcium ion import 0.04065849105240904 -0.3062654057960465 1.0 5729 -Phenotype MP:0005313 absent adrenal gland 0.040629351110906486 -0.30679356172435207 1.0 5730 -Phenotype MP:0001192 scaly skin 0.04062586883892394 -0.30685667724541077 1.0 5731 -Biological Process GO:0006694 steroid biosynthetic process 0.040575506009863704 -0.3077694939966754 1.0 5732 -Phenotype MP:0011584 increased alkaline phosphatase activity 0.04056467397684005 -0.30796582254649574 1.0 5733 -Biological Process GO:0006779 porphyrin-containing compound biosynthetic process 0.04052353469878123 -0.30871146418037043 1.0 5734 -Biological Process GO:0033014 tetrapyrrole biosynthetic process 0.04052353469878123 -0.30871146418037043 1.0 5734 -Biological Process GO:0016339 calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules 0.040504980152271775 -0.30904776182651117 1.0 5736 -Phenotype MP:0000522 kidney cortex cyst 0.04047704626575821 -0.3095540582362504 1.0 5737 -Biological Process GO:0120254 olefinic compound metabolic process 0.04047374592167663 -0.30961387634851334 1.0 5738 -Biological Process GO:2000628 regulation of miRNA metabolic process 0.04040575985938355 -0.31084611086892555 1.0 5739 -Phenotype MP:0013286 abnormal sperm capacitation 0.040388954078839245 -0.3111507124627036 1.0 5740 -Phenotype MP:0008580 photoreceptor inner segment degeneration 0.040377097281074525 -0.3113656146796352 1.0 5741 -Biological Process GO:0042129 regulation of T cell proliferation 0.04037639192481579 -0.31137839912841614 1.0 5742 -Phenotype MP:0005154 increased B cell proliferation 0.04033346692971895 -0.31215640654586047 1.0 5743 -Biological Process GO:0006119 oxidative phosphorylation 0.040323970222403305 -0.3123285325697821 1.0 5744 -Phenotype MP:0003860 abnormal carbon dioxide level 0.04030110736492076 -0.312742917537451 1.0 5745 -Phenotype MP:0004358 bowed tibia 0.040287797084795574 -0.31298416384725947 1.0 5746 -Biological Process GO:0045132 meiotic chromosome segregation 0.04028757163594132 -0.31298825006510217 1.0 5747 -Biological Process GO:0043123 positive regulation of canonical NF-kappaB signal transduction 0.040245270311006 -0.3137549535788279 1.0 5748 -Phenotype MP:0008391 abnormal primordial germ cell morphology 0.04023353440173982 -0.3139676647145878 1.0 5749 -Biological Process GO:0050892 intestinal absorption 0.040222117205543584 -0.3141745992362355 1.0 5750 -Biological Process GO:0003177 pulmonary valve development 0.04022076811367259 -0.31419905127123465 1.0 5751 -Biological Process GO:0007218 neuropeptide signaling pathway 0.04020724208214044 -0.31444420803448786 1.0 5752 -Biological Process GO:0003128 heart field specification 0.040206665135388286 -0.3144546650852489 1.0 5753 -Biological Process GO:0032303 regulation of icosanoid secretion 0.040203201607767025 -0.3145174408683046 1.0 5754 -Biological Process GO:0008090 retrograde axonal transport 0.0401830415553589 -0.3148828380051989 1.0 5755 -Biological Process GO:0021794 thalamus development 0.04017702400473955 -0.31499190497203583 1.0 5756 -Phenotype MP:0005587 abnormal Meckel's cartilage morphology 0.04016683063712434 -0.315176657832123 1.0 5757 -Phenotype MP:0014172 decreased fatty acid oxidation 0.040156128622388376 -0.31537062982507014 1.0 5758 -Biological Process GO:0097306 cellular response to alcohol 0.04014723313948532 -0.31553185877022705 1.0 5759 -Phenotype MP:0002906 increased susceptibility to pharmacologically induced seizures 0.0401409760354674 -0.31564526759710465 1.0 5760 -Biological Process GO:0097475 motor neuron migration 0.040132823794595485 -0.3157930254210214 1.0 5761 -Phenotype MP:0010502 ventricle myocardium hypoplasia 0.040127381641251625 -0.31589166342106867 1.0 5762 -Phenotype MP:0003387 aorta coarctation 0.040126677858734916 -0.31590441934607305 1.0 5763 -Biological Process GO:0090287 regulation of cellular response to growth factor stimulus 0.04012494816325196 -0.31593576974955295 1.0 5764 -Phenotype MP:0006307 abnormal seminiferous tubule size 0.04011410274306515 -0.3161323409391734 1.0 5765 -Biological Process GO:0098900 regulation of action potential 0.04009243830857179 -0.31652500471682904 1.0 5766 -Biological Process GO:0071677 positive regulation of mononuclear cell migration 0.04005743213371327 -0.3171594850151923 1.0 5767 -Biological Process GO:0030514 negative regulation of BMP signaling pathway 0.040028004218768176 -0.3176928604076775 1.0 5768 -Phenotype MP:0008683 abnormal interleukin-18 secretion 0.04002305937077921 -0.317782484842226 1.0 5769 -Phenotype MP:0000480 increased rib number 0.04002042813960116 -0.3178301754096662 1.0 5770 -Biological Process GO:1903510 mucopolysaccharide metabolic process 0.03997695045147753 -0.31861820028368665 1.0 5771 -Phenotype MP:0006011 abnormal endolymphatic duct morphology 0.03997480072542836 -0.3186571636617361 1.0 5772 -Phenotype MP:0010298 increased respiratory system tumor incidence 0.03995981781433122 -0.3189287260915555 1.0 5773 -Phenotype MP:0008014 increased lung tumor incidence 0.03995981781433122 -0.3189287260915555 1.0 5773 -Biological Process GO:0060122 inner ear receptor cell stereocilium organization 0.03994920208155173 -0.3191211342403607 1.0 5775 -Phenotype MP:0010034 abnormal erythrocyte clearance 0.039938202706000014 -0.31932049584185146 1.0 5776 -Phenotype MP:0010035 increased erythrocyte clearance 0.039938202706000014 -0.31932049584185146 1.0 5776 -Biological Process GO:0010970 transport along microtubule 0.03991804179540237 -0.3196859085332685 1.0 5778 -Phenotype MP:0005344 increased circulating bilirubin level 0.03987082201594472 -0.3205417581049519 1.0 5779 -Biological Process GO:0032330 regulation of chondrocyte differentiation 0.039854731594839654 -0.3208333939441943 1.0 5780 -Biological Process GO:0042773 ATP synthesis coupled electron transport 0.03985085208909711 -0.32090370925202155 1.0 5781 -Biological Process GO:0042775 mitochondrial ATP synthesis coupled electron transport 0.03985085208909711 -0.32090370925202155 1.0 5781 -Phenotype MP:0012138 decreased forebrain size 0.039838745772592055 -0.32112313394892866 1.0 5783 -Phenotype MP:0005579 absent outer ear 0.03983644186529589 -0.3211648918329185 1.0 5784 -Biological Process GO:0070918 regulatory ncRNA processing 0.03983466987325113 -0.3211970088535814 1.0 5785 -Phenotype MP:0000755 hindlimb paralysis 0.039809230119437156 -0.3216580995798721 1.0 5786 -Phenotype MP:0006334 abnormal susceptibility to hearing loss 0.03980791339051504 -0.321681965042544 1.0 5787 -Phenotype MP:0003648 abnormal radial glial cell morphology 0.03978513118092586 -0.3220948882823991 1.0 5788 -Biological Process GO:0002761 regulation of myeloid leukocyte differentiation 0.03974507874676669 -0.32282083107615445 1.0 5789 -Biological Process GO:0061387 regulation of extent of cell growth 0.039735468594249035 -0.32299501327290586 1.0 5790 -Phenotype MP:0002023 increased B cell derived lymphoma incidence 0.03970795790866255 -0.3234936392458845 1.0 5791 -Biological Process GO:0021761 limbic system development 0.039701305022095346 -0.323614221556611 1.0 5792 -Biological Process GO:0030178 negative regulation of Wnt signaling pathway 0.03967651925665139 -0.32406345886738835 1.0 5793 -Phenotype MP:0010957 abnormal aerobic respiration 0.0396584538881829 -0.32439089025405815 1.0 5794 -Phenotype MP:0002644 decreased circulating triglyceride level 0.039607061693445744 -0.3253223640635262 1.0 5795 -Phenotype MP:0009160 abnormal pancreatic acinar cell zymogen granule morphology 0.039534101681734546 -0.3266447504763862 1.0 5796 -Phenotype MP:0002724 enhanced wound healing 0.03951496830228951 -0.32699153936000597 1.0 5797 -Biological Process GO:0030851 granulocyte differentiation 0.03951123361139652 -0.3270592299260748 1.0 5798 -Phenotype MP:0004129 abnormal respiratory quotient 0.03948980869630336 -0.3274475524599036 1.0 5799 -Biological Process GO:0030330 DNA damage response, signal transduction by p53 class mediator 0.03948470643780244 -0.3275400299302092 1.0 5800 -Phenotype MP:0010030 abnormal orbit morphology 0.03947111125693015 -0.32778644001217383 1.0 5801 -Biological Process GO:0051450 myoblast proliferation 0.03946195712568823 -0.32795235690955266 1.0 5802 -Phenotype MP:0005085 abnormal gallbladder physiology 0.03946087790396502 -0.3279719175991656 1.0 5803 -Phenotype MP:0004818 increased skeletal muscle mass 0.039454673148725306 -0.32808437761433934 1.0 5804 -Biological Process GO:0002093 auditory receptor cell morphogenesis 0.039444659595206044 -0.32826587137794694 1.0 5805 -Biological Process GO:0086003 cardiac muscle cell contraction 0.039443202509500286 -0.3282922807807756 1.0 5806 -Phenotype MP:0004077 abnormal striatum morphology 0.03944268353630509 -0.32830168707178176 1.0 5807 -Biological Process GO:0006778 porphyrin-containing compound metabolic process 0.039436031178180064 -0.3284222598045937 1.0 5808 -Phenotype MP:0005216 abnormal pancreatic alpha cell morphology 0.039426782069226896 -0.32858989815502526 1.0 5809 -Biological Process GO:0009303 rRNA transcription 0.03942479031311863 -0.3286259983577737 1.0 5810 -Phenotype MP:0003794 delayed somite formation 0.039416416199733795 -0.3287777775790228 1.0 5811 -Phenotype MP:0009586 increased platelet aggregation 0.03940904945303869 -0.3289112984695505 1.0 5812 -Phenotype MP:0006354 abnormal fourth pharyngeal arch artery morphology 0.03940475898018514 -0.3289890624785358 1.0 5813 -Phenotype MP:0000852 small cerebellum 0.03939673705701241 -0.3291344583188026 1.0 5814 -Phenotype MP:0008789 abnormal olfactory epithelium morphology 0.039378317074341807 -0.3294683170208152 1.0 5815 -Phenotype MP:0000284 double outlet right ventricle 0.03937299683789153 -0.3295647453002253 1.0 5816 -Biological Process GO:0006473 protein acetylation 0.039369007746499096 -0.32963704682723005 1.0 5817 -Biological Process GO:2000677 regulation of transcription regulatory region DNA binding 0.03936494002408686 -0.32971077352659683 1.0 5818 -Phenotype MP:0004502 decreased incidence of tumors by chemical induction 0.039356236574621395 -0.32986852190201793 1.0 5819 -Biological Process GO:2000649 regulation of sodium ion transmembrane transporter activity 0.03934165404811463 -0.33013282743686423 1.0 5820 -Biological Process GO:0061053 somite development 0.03934093113289128 -0.33014593013855775 1.0 5821 -Phenotype MP:0008285 abnormal hippocampus granule cell layer 0.03933188652668407 -0.3303098619153977 1.0 5822 -Phenotype MP:0005153 abnormal B cell proliferation 0.03932482581192487 -0.3304378360349689 1.0 5823 -Biological Process GO:1901137 carbohydrate derivative biosynthetic process 0.03929287628335043 -0.3310169151975567 1.0 5824 -Phenotype MP:0020885 abnormal phosphate level 0.03927614369997434 -0.3313201901065051 1.0 5825 -Biological Process GO:0007584 response to nutrient 0.039274065173125705 -0.33135786301251124 1.0 5826 -Phenotype MP:0005498 hyporesponsive to tactile stimuli 0.03926417679049177 -0.3315370880774967 1.0 5827 -Phenotype MP:0006027 impaired lung alveolus development 0.03919605081461586 -0.33277185850513497 1.0 5828 -Phenotype MP:0002621 delayed neural tube closure 0.03918182770515144 -0.33302964967406756 1.0 5829 -Biological Process GO:0048701 embryonic cranial skeleton morphogenesis 0.03916072089782063 -0.3334122065648696 1.0 5830 -Biological Process GO:0060712 spongiotrophoblast layer development 0.03914633826221503 -0.3336728891149389 1.0 5831 -Phenotype MP:0005412 vascular stenosis 0.03912659870520718 -0.33403066485223426 1.0 5832 -Biological Process GO:0006643 membrane lipid metabolic process 0.039114053289238004 -0.3342580481438788 1.0 5833 -Biological Process GO:0045926 negative regulation of growth 0.039107403838593346 -0.33437856817915906 1.0 5834 -Phenotype MP:0011239 abnormal skin coloration 0.03909922939133381 -0.3345267284896513 1.0 5835 -Biological Process GO:0016048 detection of temperature stimulus 0.03908674970293957 -0.3347529204814316 1.0 5836 -Phenotype MP:0013213 abnormal embryonic neuroepithelium primary cilium morphology 0.039070909363645656 -0.33504002363514657 1.0 5837 -Phenotype MP:0008714 increased lung carcinoma incidence 0.039056787307798824 -0.3352959832263734 1.0 5838 -Biological Process GO:0095500 acetylcholine receptor signaling pathway 0.03904854899344623 -0.3354453011158477 1.0 5839 -Biological Process GO:0006882 intracellular zinc ion homeostasis 0.03901977418686986 -0.33596683904267655 1.0 5840 -Biological Process GO:0042558 pteridine-containing compound metabolic process 0.03900352356968295 -0.33626137840560344 1.0 5841 -Biological Process GO:0051145 smooth muscle cell differentiation 0.039002273904397144 -0.33628402835255133 1.0 5842 -Phenotype MP:0000934 abnormal telencephalon development 0.03895993644223439 -0.3370513868466894 1.0 5843 -Biological Process GO:0098609 cell-cell adhesion 0.03893664779891892 -0.3374734891020484 1.0 5844 -Phenotype MP:0009361 abnormal primordial ovarian follicle morphology 0.03892773236234737 -0.33763507970367285 1.0 5845 -Phenotype MP:0004395 increased cochlear inner hair cell number 0.03892653566112336 -0.33765676968701797 1.0 5846 -Phenotype MP:0001613 abnormal vasodilation 0.03887286112267996 -0.3386296105444872 1.0 5847 -Phenotype MP:0003412 abnormal afterhyperpolarization 0.03883280523934407 -0.33935561585391827 1.0 5848 -Phenotype MP:0009749 enhanced behavioral response to addictive substance 0.038792990540847505 -0.3400772497337535 1.0 5849 -Phenotype MP:0011683 dual inferior vena cava 0.03877781092878452 -0.3403523773313756 1.0 5850 -Biological Process GO:0050873 brown fat cell differentiation 0.038770312381604444 -0.340488287080765 1.0 5851 -Biological Process GO:0051881 regulation of mitochondrial membrane potential 0.03872905390557824 -0.34123608915525383 1.0 5852 -Phenotype MP:0001700 abnormal embryo turning 0.03872547126147363 -0.3413010239020408 1.0 5853 -Phenotype MP:0004560 abnormal chorionic plate morphology 0.03872307795296703 -0.3413444021660608 1.0 5854 -Phenotype MP:0005121 decreased circulating prolactin level 0.038688306755202184 -0.341974623549044 1.0 5855 -Biological Process GO:0097499 protein localization to non-motile cilium 0.03868799389914912 -0.3419802940058333 1.0 5856 -Biological Process GO:1902893 regulation of miRNA transcription 0.03860638816255313 -0.3434593825470075 1.0 5857 -Phenotype MP:0004651 increased thoracic vertebrae number 0.03847114723395084 -0.3459105987989202 1.0 5858 -Phenotype MP:0006063 abnormal inferior vena cava morphology 0.038421979437072595 -0.34680175581791056 1.0 5859 -Biological Process GO:0043403 skeletal muscle tissue regeneration 0.03841811058380784 -0.34687187805159264 1.0 5860 -Biological Process GO:0099150 regulation of postsynaptic specialization assembly 0.03839008607332406 -0.3473798170036517 1.0 5861 -Phenotype MP:0010148 abnormal exocrine pancreas physiology 0.03838987252470394 -0.34738368753200155 1.0 5862 -Biological Process GO:0003209 cardiac atrium morphogenesis 0.03837197335548814 -0.3477081065886506 1.0 5863 -Phenotype MP:0002745 abnormal atrioventricular valve morphology 0.0383435656475174 -0.3482229909226843 1.0 5864 -Phenotype MP:0031434 increased miscarriage rate 0.03833698633404303 -0.3483422397350184 1.0 5865 -Phenotype MP:0004244 abnormal miscarriage rate 0.03833698633404303 -0.3483422397350184 1.0 5865 -Biological Process GO:0005996 monosaccharide metabolic process 0.03832187008793153 -0.3486162188367546 1.0 5867 -Biological Process GO:1902683 regulation of receptor localization to synapse 0.038316579388650296 -0.3487121117605623 1.0 5868 -Biological Process GO:0021549 cerebellum development 0.03827126968579042 -0.34953334155517635 1.0 5869 -Phenotype MP:0000639 abnormal adrenal gland morphology 0.03827011405142566 -0.34955428720946485 1.0 5870 -Biological Process GO:0032635 interleukin-6 production 0.03826858908656805 -0.3495819269090825 1.0 5871 -Phenotype MP:0030064 small face 0.0382584926859032 -0.34976492226153444 1.0 5872 -Phenotype MP:0000471 abnormal stomach epithelium morphology 0.03825316510582888 -0.34986148364274133 1.0 5873 -Biological Process GO:0051453 regulation of intracellular pH 0.038199108124904235 -0.35084125619784917 1.0 5874 -Phenotype MP:0003733 abnormal retina inner nuclear layer morphology 0.03819498139353017 -0.3509160524234884 1.0 5875 -Biological Process GO:0034250 positive regulation of amide metabolic process 0.03817711226392606 -0.35123992701785717 1.0 5876 -Phenotype MP:0005298 abnormal clavicle morphology 0.038174813133265095 -0.3512815983262375 1.0 5877 -Biological Process GO:0060215 primitive hemopoiesis 0.038173062271672165 -0.35131333236145745 1.0 5878 -Biological Process GO:0034111 negative regulation of homotypic cell-cell adhesion 0.03816527752789933 -0.35145442936996035 1.0 5879 -Phenotype MP:0008258 thin endometrium 0.03815670647081737 -0.3516097781584707 1.0 5880 -Biological Process GO:0001556 oocyte maturation 0.038114026546214985 -0.35238334371955493 1.0 5881 -Biological Process GO:0007631 feeding behavior 0.038104759294869006 -0.35255131089742475 1.0 5882 -Phenotype MP:0011304 kidney papillary atrophy 0.03803936221541637 -0.35373662059352523 1.0 5883 -Biological Process GO:0035809 regulation of urine volume 0.03803932956699052 -0.3537372123400688 1.0 5884 -Phenotype MP:0005426 tachypnea 0.03801828873057633 -0.35411857352048454 1.0 5885 -Biological Process GO:1901293 nucleoside phosphate biosynthetic process 0.038003062072216376 -0.354394553823341 1.0 5886 -Phenotype MP:0010878 increased trabecular bone volume 0.03799478579698601 -0.35454455974654525 1.0 5887 -Phenotype MP:0010873 decreased trabecular bone mass 0.03797975547385324 -0.3548169815105431 1.0 5888 -Biological Process GO:0016071 mRNA metabolic process 0.03797096350399776 -0.3549763343012908 1.0 5889 -Phenotype MP:0011440 increased kidney cell proliferation 0.0379681392093123 -0.35502752410828725 1.0 5890 -Phenotype MP:0000784 forebrain hypoplasia 0.037961003781754044 -0.3551568523832105 1.0 5891 -Biological Process GO:0072593 reactive oxygen species metabolic process 0.03794927103515966 -0.3553695061961424 1.0 5892 -Phenotype MP:0010698 abnormal impulsive behavior control 0.03793650937311277 -0.35560080890704543 1.0 5893 -Phenotype MP:0009751 enhanced behavioral response to alcohol 0.037928195765235984 -0.35575149147740504 1.0 5894 -Phenotype MP:0008597 decreased circulating interleukin-6 level 0.03790248330206536 -0.3562175250092058 1.0 5895 -Phenotype MP:0004131 abnormal motile primary cilium morphology 0.03790193404653874 -0.3562274801617414 1.0 5896 -Phenotype MP:0001529 abnormal vocalization 0.03788086247523337 -0.3566093984062469 1.0 5897 -Phenotype MP:0001931 abnormal oogenesis 0.037876298446291035 -0.3566921205676019 1.0 5898 -Phenotype MP:0004820 abnormal urine potassium level 0.03787532849329067 -0.3567097007822799 1.0 5899 -Phenotype MP:0008174 decreased follicular B cell number 0.03785916854416005 -0.35700259680383534 1.0 5900 -Biological Process GO:0002474 antigen processing and presentation of peptide antigen via MHC class I 0.03782532929791227 -0.3576159267418378 1.0 5901 -Phenotype MP:0009831 abnormal sperm midpiece morphology 0.03781224097617231 -0.3578531500978945 1.0 5902 -Phenotype MP:0000035 abnormal membranous labyrinth morphology 0.03778872873289085 -0.35827930506034605 1.0 5903 -Phenotype MP:0005029 abnormal amnion morphology 0.03778830470665184 -0.35828699045572926 1.0 5904 -Phenotype MP:0000890 thin cerebellar molecular layer 0.037782050161247915 -0.3584003529082122 1.0 5905 -Phenotype MP:0004260 enlarged placenta 0.03777769039580392 -0.35847937283229364 1.0 5906 -Biological Process GO:0061337 cardiac conduction 0.03776633434419219 -0.35868519911991176 1.0 5907 -Phenotype MP:0002027 increased lung adenocarcinoma incidence 0.037737505677447714 -0.35920771325210055 1.0 5908 -Phenotype MP:0008716 increased lung non-small cell carcinoma incidence 0.037737505677447714 -0.35920771325210055 1.0 5908 -Phenotype MP:0012113 decreased inner cell mass proliferation 0.03768473186192667 -0.3601642286769617 1.0 5910 -Biological Process GO:0030149 sphingolipid catabolic process 0.03768321416059284 -0.36019173672658455 1.0 5911 -Phenotype MP:0001705 abnormal proximal-distal axis patterning 0.03765002975035181 -0.36079319788581804 1.0 5912 -Phenotype MP:0001393 ataxia 0.037637548106291385 -0.36101942532367803 1.0 5913 -Phenotype MP:0004190 abnormal direction of embryo turning 0.037616271331887385 -0.36140506283553464 1.0 5914 -Phenotype MP:0003411 abnormal vein development 0.03757271542510532 -0.36219450540794534 1.0 5915 -Phenotype MP:0000554 abnormal carpal bone morphology 0.03757240098993786 -0.3622002044858843 1.0 5916 -Biological Process GO:0009165 nucleotide biosynthetic process 0.037564144385531684 -0.36234985387912055 1.0 5917 -Phenotype MP:0001247 dermal cyst 0.03755144773143704 -0.3625799783331845 1.0 5918 -Phenotype MP:0002895 abnormal otolithic membrane morphology 0.03749264267204189 -0.3636458089125351 1.0 5919 -Phenotype MP:0000269 abnormal heart looping 0.037457334790829466 -0.3642857575814991 1.0 5920 -Phenotype MP:0002184 abnormal innervation 0.03745110256158535 -0.36439871555780634 1.0 5921 -Phenotype MP:0001825 arrested T cell differentiation 0.03743053087233095 -0.36477157353468387 1.0 5922 -Phenotype MP:0002098 abnormal vibrissa morphology 0.03739813307485118 -0.3653587774863967 1.0 5923 -Phenotype MP:0012320 abnormal body fat mass 0.03737089745682565 -0.36585241791185846 1.0 5924 -Phenotype MP:0000455 abnormal maxilla morphology 0.03736986337081827 -0.3658711605251588 1.0 5925 -Phenotype MP:0004393 abnormal cochlear inner hair cell morphology 0.037368303363166544 -0.36589943536879177 1.0 5926 -Phenotype MP:0011119 abnormal primordial ovarian follicle number 0.03736718981793874 -0.3659196181654336 1.0 5927 -Phenotype MP:0004983 abnormal osteoclast cell number 0.037366179443776515 -0.36593793100602523 1.0 5928 -Phenotype MP:0000495 abnormal colon morphology 0.03734367552593654 -0.3663458102605613 1.0 5929 -Biological Process GO:0010948 negative regulation of cell cycle process 0.037339633305602304 -0.3664190747395876 1.0 5930 -Phenotype MP:0014263 decreased spleen B cell follicle number 0.03733845219668408 -0.3664404821153396 1.0 5931 -Phenotype MP:0002834 decreased heart weight 0.03732244771978632 -0.3667305602320797 1.0 5932 -Biological Process GO:0008340 determination of adult lifespan 0.03731416005516219 -0.36688077258589175 1.0 5933 -Biological Process GO:0045727 positive regulation of translation 0.03730903327195778 -0.36697369456180956 1.0 5934 -Phenotype MP:0000950 abnormal seizure response to pharmacological agent 0.03730270380279854 -0.36708841499318673 1.0 5935 -Phenotype MP:0008537 increased susceptibility to induced colitis 0.03728732319171624 -0.3673671856600177 1.0 5936 -Phenotype MP:0008769 abnormal plasmacytoid dendritic cell physiology 0.03727422787928436 -0.3676045357210431 1.0 5937 -Phenotype MP:0005137 increased growth hormone level 0.0372678480931905 -0.36772016813734354 1.0 5938 -Phenotype MP:0005405 axon degeneration 0.03726348823560066 -0.36779918973155096 1.0 5939 -Phenotype MP:0000746 weakness 0.037258498076754076 -0.36788963541682385 1.0 5940 -Phenotype MP:0000069 kyphoscoliosis 0.03725738801644163 -0.367909755050034 1.0 5941 -Phenotype MP:0000792 abnormal cortical marginal zone morphology 0.037248061589881476 -0.3680787947674685 1.0 5942 -Biological Process GO:0001773 myeloid dendritic cell activation 0.03723736383699161 -0.36827268951526115 1.0 5943 -Phenotype MP:0008947 increased neuron number 0.03722023702823485 -0.3685831096846718 1.0 5944 -Biological Process GO:0034766 negative regulation of monoatomic ion transmembrane transport 0.03721948175560619 -0.3685967988582166 1.0 5945 -Phenotype MP:0030886 decreased radius size 0.03721923579215802 -0.36860125689919393 1.0 5946 -Phenotype MP:0004355 short radius 0.03721923579215802 -0.36860125689919393 1.0 5946 -Biological Process GO:0030513 positive regulation of BMP signaling pathway 0.03720335365619376 -0.36888911760965365 1.0 5948 -Phenotype MP:0003172 abnormal lysosome physiology 0.037195232206133855 -0.36903631735592635 1.0 5949 -Phenotype MP:0000031 abnormal cochlea morphology 0.03719203514451719 -0.3690942634930472 1.0 5950 -Phenotype MP:0004774 abnormal bile salt level 0.03715760243658972 -0.36971834981174867 1.0 5951 -Biological Process GO:0000079 regulation of cyclin-dependent protein serine/threonine kinase activity 0.03714690043413993 -0.36991232158201126 1.0 5952 -Phenotype MP:0003044 impaired basement membrane formation 0.037113609295661654 -0.37051571717035864 1.0 5953 -Biological Process GO:0015980 energy derivation by oxidation of organic compounds 0.037099064971525486 -0.37077933029446325 1.0 5954 -Phenotype MP:0011649 immotile respiratory cilia 0.037059661881036265 -0.37149350385701546 1.0 5955 -Biological Process GO:0006007 glucose catabolic process 0.036969156696998406 -0.3731338931998627 1.0 5956 -Biological Process GO:0014074 response to purine-containing compound 0.036934378008535496 -0.3737642503503315 1.0 5957 -Phenotype MP:0003477 abnormal nerve fiber response 0.03693150062200201 -0.3738164024370319 1.0 5958 -Phenotype MP:0011159 abnormal epidermal-dermal junction morphology 0.03690218928365652 -0.3743476649006984 1.0 5959 -Biological Process GO:0030308 negative regulation of cell growth 0.03689298940160546 -0.3745144110228398 1.0 5960 -Phenotype MP:0008057 abnormal DNA replication 0.036877280175387606 -0.37479913777684937 1.0 5961 -Phenotype MP:0010308 decreased tumor latency 0.036819766734705106 -0.37584155801132546 1.0 5962 -Phenotype MP:0003941 abnormal skin development 0.03681136160219811 -0.3759938994482969 1.0 5963 -Phenotype MP:0011631 decreased mitochondrial size 0.03677707934967589 -0.3766152587912349 1.0 5964 -Phenotype MP:0006085 myocardium necrosis 0.03676565274355126 -0.37682236386605494 1.0 5965 -Biological Process GO:0045600 positive regulation of fat cell differentiation 0.03675978793359702 -0.3769286624372255 1.0 5966 -Biological Process GO:0010463 mesenchymal cell proliferation 0.036755058229625104 -0.3770143874271566 1.0 5967 -Phenotype MP:0009053 abnormal anal canal morphology 0.03675381946839518 -0.37703683974015395 1.0 5968 -Phenotype MP:0001257 increased body length 0.036752562994798676 -0.3770596130864454 1.0 5969 -Phenotype MP:0005422 osteosclerosis 0.036736352366017244 -0.37735342766708635 1.0 5970 -Phenotype MP:0030508 abnormal dental epithelium morphology 0.03672790875450638 -0.3775064665287252 1.0 5971 -Phenotype MP:0002740 heart hypoplasia 0.03671868652647248 -0.3776736176675792 1.0 5972 -Biological Process GO:0030216 keratinocyte differentiation 0.03666759441880185 -0.37859965245572386 1.0 5973 -Biological Process GO:0072522 purine-containing compound biosynthetic process 0.03665889579552972 -0.37875731335730356 1.0 5974 -Phenotype MP:0008489 slow postnatal weight gain 0.036649372028299876 -0.378929929837052 1.0 5975 -Phenotype MP:0006099 thin cerebellar granule layer 0.03664382029755808 -0.3790305539067117 1.0 5976 -Phenotype MP:0008593 increased circulating interleukin-10 level 0.03661321145819929 -0.3795853333308393 1.0 5977 -Phenotype MP:0001134 absent corpus luteum 0.03661309790925782 -0.3795873913839272 1.0 5978 -Biological Process GO:0007214 gamma-aminobutyric acid signaling pathway 0.036609577462344056 -0.379651198818394 1.0 5979 -Phenotype MP:0002641 anisopoikilocytosis 0.03659716253472567 -0.37987621703336055 1.0 5980 -Phenotype MP:0000106 abnormal basisphenoid bone morphology 0.036594949161190216 -0.3799163340100608 1.0 5981 -Phenotype MP:0001859 kidney inflammation 0.03658220307018867 -0.38014735449871206 1.0 5982 -Phenotype MP:0013821 abnormal cerebral artery morphology 0.03658210447419785 -0.3801491415323975 1.0 5983 -Biological Process GO:0007254 JNK cascade 0.03655386363806057 -0.3806610013460112 1.0 5984 -Phenotype MP:0003460 decreased fear-related response 0.03654474718210776 -0.3808262353859007 1.0 5985 -Biological Process GO:0009913 epidermal cell differentiation 0.0365435637814262 -0.38084768429942967 1.0 5986 -Phenotype MP:0001565 abnormal circulating phosphate level 0.03653371275247186 -0.38102623233603744 1.0 5987 -Phenotype MP:0004448 abnormal presphenoid bone morphology 0.03651429703891362 -0.3813781384720592 1.0 5988 -Biological Process GO:0071773 cellular response to BMP stimulus 0.03651352781185924 -0.381392080566931 1.0 5989 -Biological Process GO:0071772 response to BMP 0.03651352781185924 -0.381392080566931 1.0 5989 -Phenotype MP:0001824 abnormal thymus involution 0.03651175497221071 -0.3814242129502518 1.0 5991 -Phenotype MP:0005607 decreased bleeding time 0.036511708880900384 -0.3814250483465339 1.0 5992 -Phenotype MP:0008451 retina rod cell degeneration 0.03644827606400736 -0.3825747561552553 1.0 5993 -Biological Process GO:1900047 negative regulation of hemostasis 0.03642686072102952 -0.3829629051963044 1.0 5994 -Biological Process GO:0046322 negative regulation of fatty acid oxidation 0.03641671630984478 -0.38314677073034886 1.0 5995 -Phenotype MP:0011819 increased pancreatic beta cell proliferation 0.03641616068688658 -0.38315684129137756 1.0 5996 -Phenotype MP:0000899 abnormal corpora quadrigemina morphology 0.0364035501770138 -0.38338540439771324 1.0 5997 -Phenotype MP:0011400 lethality, complete penetrance 0.03640141807447628 -0.3834240483529473 1.0 5998 -Phenotype MP:0000676 abnormal body water content 0.036391766843930196 -0.3835989750811945 1.0 5999 -Phenotype MP:0010504 abnormal RR interval 0.03639162245975236 -0.38360159201710947 1.0 6000 -Phenotype MP:0011056 abnormal brain ependyma motile cilium morphology 0.03637372158100094 -0.38392604205876835 1.0 6001 -Phenotype MP:0013229 abnormal brain ventricle size 0.036346515112830824 -0.38441915414861394 1.0 6002 -Biological Process GO:0050819 negative regulation of coagulation 0.03631691724946251 -0.38495560982412663 1.0 6003 -Phenotype MP:0031380 abnormal secondary ovarian follicle number 0.036316669041393856 -0.3849601085484258 1.0 6004 -Phenotype MP:0004121 abnormal sarcolemma morphology 0.03628549392659264 -0.38552515160784395 1.0 6005 -Phenotype MP:0012089 decreased midbrain size 0.036265564224841174 -0.38588637368265405 1.0 6006 -Biological Process GO:0006006 glucose metabolic process 0.03621515265476738 -0.3868000738555707 1.0 6007 -Phenotype MP:0004965 inner cell mass degeneration 0.036214586918759784 -0.38681032771370705 1.0 6008 -Biological Process GO:0140059 dendrite arborization 0.03620900640908098 -0.38691147339615695 1.0 6009 -Biological Process GO:0045639 positive regulation of myeloid cell differentiation 0.036205209800014515 -0.38698028621740904 1.0 6010 -Phenotype MP:0003734 abnormal retina inner plexiform layer morphology 0.03619670389544971 -0.3871344541288686 1.0 6011 -Phenotype MP:0000186 decreased circulating HDL cholesterol level 0.036173659946793335 -0.3875521213398123 1.0 6012 -Phenotype MP:0008518 retina outer nuclear layer degeneration 0.03616886860932955 -0.38763896342512627 1.0 6013 -Biological Process GO:0048678 response to axon injury 0.03616171096800658 -0.38776869432033356 1.0 6014 -Biological Process GO:0009582 detection of abiotic stimulus 0.03615042293337012 -0.38797328781313933 1.0 6015 -Phenotype MP:0011106 embryonic lethality between implantation and somite formation, incomplete penetrance 0.0360627018532137 -0.3895632157997113 1.0 6016 -Biological Process GO:0035456 response to interferon-beta 0.03601704917853543 -0.3903906618936651 1.0 6017 -Phenotype MP:0002440 abnormal memory B cell morphology 0.036017040549683355 -0.390390818289977 1.0 6018 -Phenotype MP:0004736 abnormal distortion product otoacoustic emission 0.03601586371274035 -0.3904121482369861 1.0 6019 -Biological Process GO:0045217 cell-cell junction maintenance 0.03601380516096897 -0.39044945909849493 1.0 6020 -Phenotype MP:0000743 muscle spasm 0.03598166430293437 -0.3910320060713608 1.0 6021 -Phenotype MP:0002640 reticulocytosis 0.035969263491639425 -0.3912567684306349 1.0 6022 -Biological Process GO:1904478 regulation of intestinal absorption 0.03594912779354709 -0.3916217241501619 1.0 6023 -Phenotype MP:0003566 abnormal cell adhesion 0.03587540859346228 -0.3929578707087033 1.0 6024 -Phenotype MP:0008412 increased cellular sensitivity to oxidative stress 0.03585965659635093 -0.39324337267706794 1.0 6025 -Biological Process GO:0097061 dendritic spine organization 0.03583341519676486 -0.39371899308135744 1.0 6026 -Phenotype MP:0013279 increased fasting circulating glucose level 0.03583272242155733 -0.3937315495009649 1.0 6027 -Phenotype MP:0011467 decreased urine urea nitrogen level 0.03579868876313996 -0.3943484031227706 1.0 6028 -Biological Process GO:0001558 regulation of cell growth 0.035793977672015864 -0.39443379075835533 1.0 6029 -Phenotype MP:0005136 decreased growth hormone level 0.03579028685032393 -0.3945006862034524 1.0 6030 -Biological Process GO:0060420 regulation of heart growth 0.03576303864061725 -0.3949945548507533 1.0 6031 -Biological Process GO:0051101 regulation of DNA binding 0.035762920565034606 -0.3949966949483563 1.0 6032 -Phenotype MP:0004597 increased susceptibility to noise-induced hearing loss 0.035667737872134286 -0.3967218632546477 1.0 6033 -Biological Process GO:0006885 regulation of pH 0.03565881426126205 -0.3968836020139259 1.0 6034 -Biological Process GO:0060572 morphogenesis of an epithelial bud 0.035656829732543915 -0.3969195712215952 1.0 6035 -Biological Process GO:0014741 negative regulation of muscle hypertrophy 0.03562700052976864 -0.3974602198801043 1.0 6036 -Biological Process GO:0031114 regulation of microtubule depolymerization 0.03561405631635273 -0.39769483130004374 1.0 6037 -Biological Process GO:0007026 negative regulation of microtubule depolymerization 0.03561405631635273 -0.39769483130004374 1.0 6037 -Biological Process GO:0019722 calcium-mediated signaling 0.03560574684453799 -0.39784543890506097 1.0 6039 -Phenotype MP:0012192 abnormal keratinocyte migration 0.03557926653374177 -0.3983253895298476 1.0 6040 -Phenotype MP:0002782 abnormal testes secretion 0.035576481833589524 -0.3983758616934185 1.0 6041 -Biological Process GO:1900016 negative regulation of cytokine production involved in inflammatory response 0.03555816504966758 -0.39870784993763025 1.0 6042 -Biological Process GO:1901224 positive regulation of non-canonical NF-kappaB signal transduction 0.035549100383872934 -0.39887214529069853 1.0 6043 -Phenotype MP:0006219 optic nerve degeneration 0.035525587870601005 -0.3992983051466764 1.0 6044 -Biological Process GO:0019318 hexose metabolic process 0.03551320519579537 -0.399522738785512 1.0 6045 -Phenotype MP:0000039 abnormal otic capsule morphology 0.035451258185817514 -0.40064551662491643 1.0 6046 -Biological Process GO:0060337 type I interferon-mediated signaling pathway 0.03541298190207598 -0.40133926702828715 1.0 6047 -Biological Process GO:0071357 cellular response to type I interferon 0.03541298190207598 -0.40133926702828715 1.0 6047 -Phenotype MP:0004279 abnormal rostral migratory stream morphology 0.035401196073961305 -0.4015528829337347 1.0 6049 -Phenotype MP:0001462 abnormal avoidance learning behavior 0.035388200259119706 -0.40178842961975497 1.0 6050 -Biological Process GO:0007159 leukocyte cell-cell adhesion 0.03536641979806476 -0.40218319635689437 1.0 6051 -Phenotype MP:0005627 increased circulating potassium level 0.03536538018008184 -0.4022020392362051 1.0 6052 -Biological Process GO:0001708 cell fate specification 0.035311766015123425 -0.40317378583567776 1.0 6053 -Biological Process GO:0090407 organophosphate biosynthetic process 0.03529002744137777 -0.40356779337325877 1.0 6054 -Biological Process GO:0048713 regulation of oligodendrocyte differentiation 0.0352625593905419 -0.4040656465994462 1.0 6055 -Phenotype MP:0010280 increased skeletal tumor incidence 0.03525619342569497 -0.4041810285082602 1.0 6056 -Phenotype MP:0009735 abnormal prostate gland development 0.035200042541445264 -0.40519875266510114 1.0 6057 -Phenotype MP:0000141 abnormal vertebral body morphology 0.03516872835447338 -0.40576631638130906 1.0 6058 -Biological Process GO:0051276 chromosome organization 0.035158075556754875 -0.4059593963251234 1.0 6059 -Phenotype MP:0000876 Purkinje cell degeneration 0.03515114907297434 -0.40608493753359426 1.0 6060 -Biological Process GO:0008037 cell recognition 0.03514415107949043 -0.40621177484191384 1.0 6061 -Biological Process GO:0045922 negative regulation of fatty acid metabolic process 0.035137559139517216 -0.40633125250715146 1.0 6062 -Phenotype MP:0010379 decreased respiratory quotient 0.03513229653323857 -0.4064266362506006 1.0 6063 -Phenotype MP:0008996 abnormal blood osmolality 0.035130032171836634 -0.40646767737273726 1.0 6064 -Phenotype MP:0004496 abnormal organ of Corti supporting cell number 0.0351260068294077 -0.4065406359429223 1.0 6065 -Phenotype MP:0001927 abnormal estrous cycle 0.03511748661550951 -0.40669506320834303 1.0 6066 -Phenotype MP:0012097 abnormal spongiotrophoblast size 0.0350868841534584 -0.4072497270449751 1.0 6067 -Biological Process GO:0010888 negative regulation of lipid storage 0.03507554799524426 -0.4074551927685244 1.0 6068 -Biological Process GO:0048278 vesicle docking 0.035062838208083646 -0.40768555525692507 1.0 6069 -Phenotype MP:0009840 abnormal foam cell morphology 0.035060450579249 -0.4077288305779651 1.0 6070 -Biological Process GO:0050961 detection of temperature stimulus involved in sensory perception 0.03503182017967088 -0.40824775115526335 1.0 6071 -Phenotype MP:0003973 increased pituitary hormone level 0.03502083513164522 -0.40844685307305423 1.0 6072 -Biological Process GO:0007608 sensory perception of smell 0.035009988537580305 -0.4086434455389934 1.0 6073 -Phenotype MP:0008043 abnormal NK cell number 0.0349777508135658 -0.40922774818942415 1.0 6074 -Biological Process GO:0033013 tetrapyrrole metabolic process 0.034965758508641476 -0.40944510644799426 1.0 6075 -Phenotype MP:0030136 abnormal lower incisor morphology 0.03494928088634808 -0.4097437602355413 1.0 6076 -Biological Process GO:0009988 cell-cell recognition 0.03486460464745078 -0.41127850105018243 1.0 6077 -Phenotype MP:0008453 decreased retina rod cell number 0.034857040542297546 -0.411415599025436 1.0 6078 -Biological Process GO:0060717 chorion development 0.03485193261783115 -0.4115081791902942 1.0 6079 -Phenotype MP:0004328 decreased vestibular hair cell number 0.03483650894256274 -0.4117877303873533 1.0 6080 -Phenotype MP:0002801 abnormal long-term object recognition memory 0.034800822121539454 -0.4124345472687178 1.0 6081 -Phenotype MP:0005250 decreased Sertoli cell number 0.03479517445964786 -0.4125369100723236 1.0 6082 -Phenotype MP:0008322 abnormal somatotroph morphology 0.03477936353931099 -0.4128234800130063 1.0 6083 -Phenotype MP:0008725 increased heart atrium size 0.03476639677034521 -0.41305850024802104 1.0 6084 -Phenotype MP:0000108 midline facial cleft 0.03474367652963273 -0.4134703003137067 1.0 6085 -Biological Process GO:0030258 lipid modification 0.0347193366353844 -0.41391145629339376 1.0 6086 -Phenotype MP:0003331 increased hepatocellular carcinoma incidence 0.034707686732960874 -0.41412260857139777 1.0 6087 -Phenotype MP:0002238 abnormal nasal mucosa morphology 0.034694754919119775 -0.4143569952513889 1.0 6088 -Biological Process GO:0034243 regulation of transcription elongation by RNA polymerase II 0.03460691936147864 -0.41594899812071945 1.0 6089 -Biological Process GO:0006665 sphingolipid metabolic process 0.03460258359012003 -0.41602758315654137 1.0 6090 -Phenotype MP:0013848 subcutaneous edema 0.03457861410748253 -0.4164620254958406 1.0 6091 -Biological Process GO:1904063 negative regulation of cation transmembrane transport 0.034570595530558856 -0.41660736068597615 1.0 6092 -Phenotype MP:0004017 duplex kidney 0.034563793728596415 -0.416730642060076 1.0 6093 -Phenotype MP:0001625 cardiac hypertrophy 0.03455359632789301 -0.41691546801912394 1.0 6094 -Phenotype MP:0010942 abnormal respiratory epithelium morphology 0.03452318501612761 -0.41746666729298093 1.0 6095 -Phenotype MP:0011452 decreased susceptibility to dopaminergic neuron neurotoxicity 0.03451831039226305 -0.4175550189285565 1.0 6096 -Biological Process GO:0010212 response to ionizing radiation 0.03450761370176081 -0.41774889442077445 1.0 6097 -Biological Process GO:1905939 regulation of gonad development 0.034503395339890885 -0.41782535143182037 1.0 6098 -Phenotype MP:0003840 abnormal coronal suture morphology 0.034496921930025404 -0.4179426807612738 1.0 6099 -Phenotype MP:0010762 abnormal microglial cell activation 0.03447310487191524 -0.4183743604348441 1.0 6100 -Phenotype MP:0010827 small lung saccule 0.03446936850652893 -0.41844208135078764 1.0 6101 -Phenotype MP:0011469 abnormal urine creatinine level 0.03446641756060853 -0.4184955666874631 1.0 6102 -Phenotype MP:0009832 abnormal sperm mitochondrial sheath morphology 0.034465467608433276 -0.41851278439096895 1.0 6103 -Phenotype MP:0012021 abnormal melanocyte number 0.03442868243775121 -0.4191795086521608 1.0 6104 -Biological Process GO:0014072 response to isoquinoline alkaloid 0.03441445429490353 -0.41943739105021305 1.0 6105 -Biological Process GO:0043278 response to morphine 0.03441445429490353 -0.41943739105021305 1.0 6105 -Phenotype MP:0013630 increased bone trabecular spacing 0.03439042011050253 -0.4198730060967383 1.0 6107 -Phenotype MP:0000751 myopathy 0.034380592563111434 -0.42005112853445337 1.0 6108 -Phenotype MP:0004854 abnormal ovary weight 0.034340673260979004 -0.4207746583354043 1.0 6109 -Biological Process GO:0072163 mesonephric epithelium development 0.034309318756254314 -0.4213429528032562 1.0 6110 -Biological Process GO:0001657 ureteric bud development 0.034309318756254314 -0.4213429528032562 1.0 6110 -Biological Process GO:0072164 mesonephric tubule development 0.034309318756254314 -0.4213429528032562 1.0 6110 -Phenotype MP:0001473 reduced long-term potentiation 0.034297311749360126 -0.42156057753224935 1.0 6113 -Phenotype MP:0001658 increased mortality induced by gamma-irradiation 0.03426856190687211 -0.42208166298969846 1.0 6114 -Biological Process GO:0031638 zymogen activation 0.034241884885270135 -0.42256517896063417 1.0 6115 -Phenotype MP:0008916 abnormal astrocyte physiology 0.034238129690791985 -0.4226332411503061 1.0 6116 -Biological Process GO:0006813 potassium ion transport 0.034223001158487754 -0.42290744293696175 1.0 6117 -Phenotype MP:0008142 decreased small intestinal villus size 0.034220171398553934 -0.42295873180055116 1.0 6118 -Phenotype MP:0008326 abnormal thyrotroph morphology 0.034219695672738304 -0.4229673542409823 1.0 6119 -Biological Process GO:0031960 response to corticosteroid 0.03421420186966995 -0.4230669283825173 1.0 6120 -Phenotype MP:0004426 abnormal cochlear labyrinth morphology 0.03418836277666193 -0.4235352570561705 1.0 6121 -Phenotype MP:0003169 abnormal scala media morphology 0.03418836277666193 -0.4235352570561705 1.0 6121 -Phenotype MP:0012724 absent head fold 0.03417892992052318 -0.42370622578958733 1.0 6123 -Phenotype MP:0010935 increased airway resistance 0.03416231774173495 -0.42400731838815375 1.0 6124 -Phenotype MP:0013601 increased testis apoptosis 0.03415346361356231 -0.42416779778664354 1.0 6125 -Phenotype MP:0031353 abnormal testis apoptosis 0.03415346361356231 -0.42416779778664354 1.0 6125 -Biological Process GO:0021695 cerebellar cortex development 0.03408519172429725 -0.4254052128668626 1.0 6127 -Biological Process GO:0000422 autophagy of mitochondrion 0.034074140939614916 -0.42560550624912247 1.0 6128 -Biological Process GO:0033238 regulation of amine metabolic process 0.033981338676067785 -0.42728752972361356 1.0 6129 -Phenotype MP:0002896 abnormal bone mineralization 0.033978765155132096 -0.42733417430382603 1.0 6130 -Phenotype MP:0030383 small presphenoid bone 0.03396904589811278 -0.42751033399903426 1.0 6131 -Biological Process GO:0021670 lateral ventricle development 0.03395831742319888 -0.4277047855777019 1.0 6132 -Biological Process GO:0051702 biological process involved in interaction with symbiont 0.033921765650167246 -0.42836727955062376 1.0 6133 -Biological Process GO:0045778 positive regulation of ossification 0.03390041581006897 -0.4287542413643696 1.0 6134 -Phenotype MP:0000840 abnormal epithalamus morphology 0.0338944882394453 -0.42886167746080345 1.0 6135 -Biological Process GO:0051235 maintenance of location 0.0338571208466798 -0.42953895438713807 1.0 6136 -Biological Process GO:0021772 olfactory bulb development 0.03385048842265037 -0.4296591658182376 1.0 6137 -Phenotype MP:0002978 absent otoliths 0.0338414822552624 -0.42982240089874907 1.0 6138 -Phenotype MP:0030605 abnormal corneocyte morphology 0.03381604565654739 -0.4302834344394679 1.0 6139 -Phenotype MP:0011416 abnormal testis interstitial tissue morphology 0.03380591048453452 -0.43046713251526963 1.0 6140 -Biological Process GO:0010460 positive regulation of heart rate 0.03377859647676762 -0.4309621937399673 1.0 6141 -Phenotype MP:0001131 abnormal ovarian follicle morphology 0.033777529224255476 -0.43098153748989343 1.0 6142 -Phenotype MP:0013521 abnormal memory-marker CD4-positive NK T cell number 0.03377726167778916 -0.4309863867189926 1.0 6143 -Phenotype MP:0004066 abnormal primitive node morphology 0.03377618342619115 -0.43100592982526964 1.0 6144 -Phenotype MP:0004362 cochlear hair cell degeneration 0.03376359359771075 -0.4312341180852801 1.0 6145 -Biological Process GO:0098868 bone growth 0.03376076302814757 -0.4312854216232486 1.0 6146 -Phenotype MP:0000150 abnormal rib morphology 0.0337547507544419 -0.43139439294702314 1.0 6147 -Phenotype MP:0001596 hypotension 0.033753006666629504 -0.43142600420875205 1.0 6148 -Phenotype MP:0009774 abnormal behavioral withdrawal response 0.03370604106572428 -0.4322772468422471 1.0 6149 -Phenotype MP:0008900 abnormal uterine fat pad morphology 0.03368205994115381 -0.43271190018937955 1.0 6150 -Biological Process GO:0030510 regulation of BMP signaling pathway 0.033677308635012504 -0.432798016714545 1.0 6151 -Phenotype MP:0001900 impaired synaptic plasticity 0.03366245488402775 -0.43306723814175635 1.0 6152 -Biological Process GO:0019226 transmission of nerve impulse 0.03365980001001634 -0.4331153572310794 1.0 6153 -Biological Process GO:0021766 hippocampus development 0.0336503584408272 -0.4332864838868867 1.0 6154 -Phenotype MP:0004610 small vertebrae 0.0336452816658066 -0.4333784994739312 1.0 6155 -Biological Process GO:0006352 DNA-templated transcription initiation 0.03360559157057197 -0.43409787494321095 1.0 6156 -Phenotype MP:0003724 increased susceptibility to induced arthritis 0.03357833500509133 -0.43459189503733453 1.0 6157 -Phenotype MP:0008291 abnormal adrenocortical cell morphology 0.03353814885033357 -0.43532026149164793 1.0 6158 -Phenotype MP:0010069 increased serotonin level 0.03353061060477347 -0.435456890766667 1.0 6159 -Phenotype MP:0001211 wrinkled skin 0.03351567322890858 -0.4357276278790142 1.0 6160 -Phenotype MP:0005090 increased double-negative T cell number 0.03349552274563783 -0.43609285157710354 1.0 6161 -Phenotype MP:0002258 abnormal cricoid cartilage morphology 0.03346950238050672 -0.43656446577370256 1.0 6162 -Biological Process GO:0060710 chorio-allantoic fusion 0.03345926762415885 -0.43674996879674116 1.0 6163 -Phenotype MP:0005257 abnormal intraocular pressure 0.033447710987609014 -0.43695943064842446 1.0 6164 -Biological Process GO:0001754 eye photoreceptor cell differentiation 0.03344667062045881 -0.43697828710625053 1.0 6165 -Phenotype MP:0020523 decreased susceptibility to induced hypothermia 0.03343525580046991 -0.4371851785595895 1.0 6166 -Phenotype MP:0000091 short premaxilla 0.03337707051478922 -0.43823977585758733 1.0 6167 -Biological Process GO:0055021 regulation of cardiac muscle tissue growth 0.033370177673735624 -0.43836470729799554 1.0 6168 -Phenotype MP:0009422 decreased gastrocnemius weight 0.03336719083946704 -0.43841884310419404 1.0 6169 -Phenotype MP:0005131 increased follicle stimulating hormone level 0.033360958884399605 -0.4385317961111008 1.0 6170 -Biological Process GO:0006112 energy reserve metabolic process 0.03334403264118513 -0.4388385810679918 1.0 6171 -Biological Process GO:0007512 adult heart development 0.033342427335498304 -0.4388676769299435 1.0 6172 -Phenotype MP:0003400 kinked neural tube 0.03333608074249905 -0.43898270772768216 1.0 6173 -Phenotype MP:0004789 increased bile salt level 0.03333409848262059 -0.43901863581306155 1.0 6174 -Phenotype MP:0000167 decreased chondrocyte number 0.033333056321680044 -0.4390375247829982 1.0 6175 -Phenotype MP:0005441 increased urine calcium level 0.03331590935802864 -0.4393483102560622 1.0 6176 -Phenotype MP:0005068 abnormal NK cell morphology 0.033314726872044065 -0.4393697425908813 1.0 6177 -Phenotype MP:0008957 abnormal placenta junctional zone morphology 0.03329797771241405 -0.4396733179412969 1.0 6178 -Biological Process GO:0030195 negative regulation of blood coagulation 0.033246831321586234 -0.44060033660139875 1.0 6179 -Phenotype MP:0003384 abnormal ventral body wall morphology 0.03322886126763547 -0.44092604043046224 1.0 6180 -Phenotype MP:0001862 interstitial pneumonia 0.033227954317643804 -0.44094247872752373 1.0 6181 -Biological Process GO:0009583 detection of light stimulus 0.033214140876019704 -0.44119284474433373 1.0 6182 -Biological Process GO:0043931 ossification involved in bone maturation 0.03320369709600324 -0.4413821362818316 1.0 6183 -Biological Process GO:0060219 camera-type eye photoreceptor cell differentiation 0.033184936456295167 -0.44172216932821756 1.0 6184 -Phenotype MP:0006325 impaired hearing 0.033183031157420606 -0.4417567025099573 1.0 6185 -Phenotype MP:0003269 colon polyps 0.03318059267055007 -0.4418008996232788 1.0 6186 -Biological Process GO:0032886 regulation of microtubule-based process 0.03311641185649439 -0.4429641647390997 1.0 6187 -Phenotype MP:0004908 abnormal seminal vesicle weight 0.033103433067215415 -0.4431994028400176 1.0 6188 -Phenotype MP:0011095 embryonic lethality between implantation and placentation, complete penetrance 0.03309830404243841 -0.44329236544401474 1.0 6189 -Phenotype MP:0002951 small thyroid gland 0.03309711821865535 -0.4433138582758 1.0 6190 -Phenotype MP:0031420 decreased superovulation rate 0.03308928248852361 -0.4434558794024148 1.0 6191 -Biological Process GO:0006633 fatty acid biosynthetic process 0.03303395274228915 -0.4444587205880366 1.0 6192 -Phenotype MP:0002961 abnormal axon guidance 0.033032671112933065 -0.44448194987771267 1.0 6193 -Phenotype MP:0005462 abnormal mast cell differentiation 0.03302640508630306 -0.44459552042524686 1.0 6194 -Phenotype MP:0008472 abnormal spleen secondary B follicle morphology 0.03302226563637167 -0.4446705471723319 1.0 6195 -Biological Process GO:0007144 female meiosis I 0.03296573900983468 -0.4456950815870633 1.0 6196 -Phenotype MP:0008335 decreased gonadotroph cell number 0.03294293493360578 -0.44610840115562755 1.0 6197 -Biological Process GO:0046697 decidualization 0.03293562448153331 -0.4462409017167674 1.0 6198 -Phenotype MP:0002602 abnormal eosinophil cell number 0.0329244440276969 -0.44644354532791986 1.0 6199 -Phenotype MP:0009294 increased interscapular fat pad weight 0.032922390621692 -0.44648076292338446 1.0 6200 -Biological Process GO:1902305 regulation of sodium ion transmembrane transport 0.03291807708797134 -0.44655894490622444 1.0 6201 -Biological Process GO:0007215 glutamate receptor signaling pathway 0.032911902703407936 -0.44667085445863436 1.0 6202 -Biological Process GO:0002312 B cell activation involved in immune response 0.032907677610092834 -0.44674743347585094 1.0 6203 -Biological Process GO:0060221 retinal rod cell differentiation 0.0328855095201015 -0.4471492259141477 1.0 6204 -Phenotype MP:0001792 impaired wound healing 0.03287270340102122 -0.4473813344003725 1.0 6205 -Biological Process GO:0032094 response to food 0.0328530294238214 -0.44773792151605085 1.0 6206 -Phenotype MP:0001463 abnormal spatial learning 0.03283159820914572 -0.4481263582286214 1.0 6207 -Phenotype MP:0001566 increased circulating phosphate level 0.0328216049495752 -0.44830748416824634 1.0 6208 -Phenotype MP:0009046 muscle twitch 0.032812280891033274 -0.4484764809657984 1.0 6209 -Biological Process GO:0098662 inorganic cation transmembrane transport 0.032766982603384065 -0.4492975038618781 1.0 6210 -Phenotype MP:0004843 abnormal Paneth cell morphology 0.0327452012538787 -0.4496922867020134 1.0 6211 -Phenotype MP:0020252 abnormal collagen level 0.03270161353904677 -0.45048230578931175 1.0 6212 -Phenotype MP:0003993 abnormal ventral spinal root morphology 0.032691716099934265 -0.4506616950012583 1.0 6213 -Phenotype MP:0020478 abnormal circadian sleep/wake cycle 0.03269151015467464 -0.45066542772013723 1.0 6214 -Biological Process GO:0010633 negative regulation of epithelial cell migration 0.032682683979948 -0.45082540046770525 1.0 6215 -Biological Process GO:0008154 actin polymerization or depolymerization 0.03267491036366876 -0.4509662957924914 1.0 6216 -Phenotype MP:0003932 abnormal molar crown morphology 0.03261108211727415 -0.452123170686139 1.0 6217 -Biological Process GO:0002706 regulation of lymphocyte mediated immunity 0.0325903777983525 -0.45249843255065025 1.0 6218 -Phenotype MP:0030457 abnormal molar cusp morphology 0.032529210383706375 -0.453607080372117 1.0 6219 -Phenotype MP:0003691 abnormal microglial cell physiology 0.03245380719004731 -0.454973748995687 1.0 6220 -Phenotype MP:0012397 abnormal nucleated erythrocyte cell number 0.03242156646142369 -0.4555581061040897 1.0 6221 -Phenotype MP:0012468 decreased striatum size 0.03241130124342406 -0.45574416123880496 1.0 6222 -Biological Process GO:0022037 metencephalon development 0.032386883036371494 -0.4561867366232571 1.0 6223 -Phenotype MP:0002735 abnormal chemical nociception 0.03238611501901267 -0.45620065679262556 1.0 6224 -Phenotype MP:0004575 small limb buds 0.03231684123281542 -0.45745623106524536 1.0 6225 -Phenotype MP:0010420 muscular ventricular septal defect 0.03230643636773478 -0.4576448172768915 1.0 6226 -Phenotype MP:0010060 abnormal creatine level 0.03229515779003622 -0.4578492393644865 1.0 6227 -Phenotype MP:0002857 cochlear ganglion degeneration 0.03227842251755009 -0.4581525630130459 1.0 6228 -Biological Process GO:0021952 central nervous system projection neuron axonogenesis 0.032248545429065745 -0.4586940795909749 1.0 6229 -Phenotype MP:0001176 abnormal lung development 0.03224551841636536 -0.45874894362365065 1.0 6230 -Phenotype MP:0011697 lens vacuoles 0.03223974829288112 -0.45885352602046114 1.0 6231 -Phenotype MP:0010559 heart block 0.03223909812162862 -0.4588653102514416 1.0 6232 -Biological Process GO:0032785 negative regulation of DNA-templated transcription, elongation 0.032230655450618095 -0.4590183320666896 1.0 6233 -Biological Process GO:0010565 regulation of cellular ketone metabolic process 0.03221077177280951 -0.45937871996623986 1.0 6234 -Phenotype MP:0010027 increased liver cholesterol level 0.0321899395678229 -0.45975629974149057 1.0 6235 -Phenotype MP:0006068 abnormal retina horizontal cell morphology 0.03218903735917755 -0.45977265210254686 1.0 6236 -Phenotype MP:0008052 abnormal serous gland morphology 0.032170325551567514 -0.46011180007639196 1.0 6237 -Phenotype MP:0020011 increased bone mineral density of femur 0.03216648957968771 -0.4601813263411909 1.0 6238 -Phenotype MP:0003279 aneurysm 0.0321385390416562 -0.46068792455654345 1.0 6239 -Phenotype MP:0009758 impaired behavioral response to cocaine 0.03206229313444364 -0.4620698672038826 1.0 6240 -Biological Process GO:0046902 regulation of mitochondrial membrane permeability 0.032060881779318984 -0.4620954477485782 1.0 6241 -Biological Process GO:2000404 regulation of T cell migration 0.032053158528731696 -0.46223543020472374 1.0 6242 -Phenotype MP:0000940 abnormal motor neuron innervation pattern 0.032051145297399164 -0.4622719196418502 1.0 6243 -Phenotype MP:0004599 abnormal vertebral arch morphology 0.0320365540848675 -0.462536382609255 1.0 6244 -Biological Process GO:0001658 branching involved in ureteric bud morphogenesis 0.03202923618533493 -0.4626690181542004 1.0 6245 -Biological Process GO:0099565 chemical synaptic transmission, postsynaptic 0.032005926639161464 -0.46309149926990717 1.0 6246 -Phenotype MP:0000422 delayed hair appearance 0.031969814963176635 -0.4637460165670941 1.0 6247 -Biological Process GO:0060052 neurofilament cytoskeleton organization 0.03193828903824503 -0.4643174179937746 1.0 6248 -Phenotype MP:0000243 myoclonus 0.031937658508774835 -0.4643288462211656 1.0 6249 -Biological Process GO:0006022 aminoglycan metabolic process 0.03192291137584913 -0.46459613521622206 1.0 6250 -Phenotype MP:0001001 abnormal chemoreceptor morphology 0.031920124830646435 -0.46464664082098334 1.0 6251 -Phenotype MP:0002876 abnormal thyroid gland physiology 0.03190099533994839 -0.46499335922179935 1.0 6252 -Biological Process GO:0106057 negative regulation of calcineurin-mediated signaling 0.03189884831394896 -0.465032273661958 1.0 6253 -Biological Process GO:0070885 negative regulation of calcineurin-NFAT signaling cascade 0.03189884831394896 -0.465032273661958 1.0 6253 -Biological Process GO:0031111 negative regulation of microtubule polymerization or depolymerization 0.0318671665015966 -0.4656065005186555 1.0 6255 -Phenotype MP:0003826 abnormal Mullerian duct morphology 0.031856984305536074 -0.46579105089642703 1.0 6256 -Biological Process GO:0019227 neuronal action potential propagation 0.03183675205407033 -0.46615775662758524 1.0 6257 -Biological Process GO:0098870 action potential propagation 0.03183675205407033 -0.46615775662758524 1.0 6257 -Phenotype MP:0020811 abnormal photoreceptor outer segment size 0.03182761286847968 -0.4663234026378616 1.0 6259 -Phenotype MP:0004929 decreased epididymis weight 0.03180577436192811 -0.4667192214386489 1.0 6260 -Phenotype MP:0020573 abnormal corpus callosum size 0.03179053589011671 -0.4669954158580784 1.0 6261 -Biological Process GO:0072148 epithelial cell fate commitment 0.03178168090242006 -0.46715591083527824 1.0 6262 -Biological Process GO:0045880 positive regulation of smoothened signaling pathway 0.03176535390835433 -0.46745183451468814 1.0 6263 -Biological Process GO:0006164 purine nucleotide biosynthetic process 0.03174922113731604 -0.46774423793846037 1.0 6264 -Biological Process GO:0006816 calcium ion transport 0.03170178437887483 -0.4686040202131821 1.0 6265 -Biological Process GO:0060088 auditory receptor cell stereocilium organization 0.03169990498505293 -0.468638083870742 1.0 6266 -Biological Process GO:0007635 chemosensory behavior 0.031693793595596875 -0.4687488516487458 1.0 6267 -Phenotype MP:0002359 abnormal spleen germinal center morphology 0.03164655923767268 -0.469604965452378 1.0 6268 -Phenotype MP:0011380 enlarged brain ventricles 0.03163281154454545 -0.4698541397901177 1.0 6269 -Phenotype MP:0001691 abnormal somite shape 0.03162219201730487 -0.4700466167128123 1.0 6270 -Phenotype MP:0004169 abnormal fornicate gyrus morphology 0.031614767174295566 -0.4701811905880467 1.0 6271 -Phenotype MP:0005123 increased circulating growth hormone level 0.03160191113940314 -0.4704142037889258 1.0 6272 -Phenotype MP:0008026 abnormal brain white matter morphology 0.0316011180974024 -0.47042857752519585 1.0 6273 -Phenotype MP:0000550 abnormal forelimb morphology 0.031582339319071395 -0.47076893933069186 1.0 6274 -Biological Process GO:0006635 fatty acid beta-oxidation 0.031568581964561804 -0.4710182887791596 1.0 6275 -Biological Process GO:2000737 negative regulation of stem cell differentiation 0.03156413634720212 -0.471098864752975 1.0 6276 -Biological Process GO:0046621 negative regulation of organ growth 0.03150571632084398 -0.47215771668135365 1.0 6277 -Phenotype MP:0009891 abnormal palate bone morphology 0.03147407394425972 -0.4727312287722132 1.0 6278 -Phenotype MP:0009380 abnormal prostate gland ventral lobe morphology 0.03142811467869211 -0.4735642317680488 1.0 6279 -Phenotype MP:0008395 abnormal osteoblast differentiation 0.03140201944946874 -0.47403720286216044 1.0 6280 -Phenotype MP:0000230 abnormal systemic arterial blood pressure 0.03140123168492093 -0.47405148094559457 1.0 6281 -Biological Process GO:0072655 establishment of protein localization to mitochondrion 0.03139222928842389 -0.47421464767942106 1.0 6282 -Biological Process GO:0003198 epithelial to mesenchymal transition involved in endocardial cushion formation 0.03138033539659302 -0.4744302222192859 1.0 6283 -Phenotype MP:0004423 abnormal temporal bone squamous part morphology 0.03137520484838974 -0.4745232124350961 1.0 6284 -Biological Process GO:0019228 neuronal action potential 0.03136522869379743 -0.47470402835022607 1.0 6285 -Phenotype MP:0010498 abnormal interventricular septum muscular part morphology 0.03135928239330388 -0.47481180392200895 1.0 6286 -Phenotype MP:0006126 abnormal cardiac outflow tract development 0.03134565316730464 -0.47505883106546015 1.0 6287 -Biological Process GO:0048845 venous blood vessel morphogenesis 0.03128696941981346 -0.4761224628894959 1.0 6288 -Phenotype MP:0004363 stria vascularis degeneration 0.0312785960267149 -0.4762742290556925 1.0 6289 -Biological Process GO:0042742 defense response to bacterium 0.031273819739733755 -0.4763607983538553 1.0 6290 -Biological Process GO:0061014 positive regulation of mRNA catabolic process 0.031263427567738145 -0.4765491545057361 1.0 6291 -Phenotype MP:0000030 abnormal tympanic ring morphology 0.03126246360563545 -0.47656662613652695 1.0 6292 -Biological Process GO:0045747 positive regulation of Notch signaling pathway 0.0312484966228167 -0.4768197750584497 1.0 6293 -Biological Process GO:0050732 negative regulation of peptidyl-tyrosine phosphorylation 0.031232615314091716 -0.477107620775354 1.0 6294 -Biological Process GO:0045494 photoreceptor cell maintenance 0.03122730656622441 -0.4772038408263706 1.0 6295 -Phenotype MP:0006336 abnormal otoacoustic response 0.031224206930751897 -0.47726002113305555 1.0 6296 -Phenotype MP:0003148 decreased cochlea coiling 0.031222379297050185 -0.4772931466482267 1.0 6297 -Phenotype MP:0011094 embryonic lethality before implantation, complete penetrance 0.031220650074170186 -0.4773244884858674 1.0 6298 -Phenotype MP:0005628 decreased circulating potassium level 0.031220052844827983 -0.47733531315473693 1.0 6299 -Phenotype MP:0000242 impaired fertilization 0.03120327160792946 -0.4776394698995773 1.0 6300 -Biological Process GO:0051602 response to electrical stimulus 0.031191136883758186 -0.47785940948006167 1.0 6301 -Biological Process GO:0046683 response to organophosphorus 0.03117664902839945 -0.47812199911825565 1.0 6302 -Phenotype MP:0002073 abnormal hair growth 0.031158167475373255 -0.47845697377131813 1.0 6303 -Phenotype MP:0006337 abnormal first pharyngeal arch morphology 0.03113839299733212 -0.47881538244573696 1.0 6304 -Phenotype MP:0008257 thin myometrium 0.03113700272613218 -0.4788405808482848 1.0 6305 -Phenotype MP:0005306 abnormal phalanx morphology 0.031131510506329008 -0.47894012629343774 1.0 6306 -Biological Process GO:0044248 cellular catabolic process 0.031118979569605743 -0.4791672471514887 1.0 6307 -Phenotype MP:0002413 abnormal megakaryocyte progenitor cell morphology 0.031097152047026788 -0.4795628668698497 1.0 6308 -Phenotype MP:0001132 absent mature ovarian follicles 0.031081087013423492 -0.4798540425654243 1.0 6309 -Biological Process GO:0050864 regulation of B cell activation 0.031071341184272794 -0.48003068387548814 1.0 6310 -Biological Process GO:0035845 photoreceptor cell outer segment organization 0.031049156278325607 -0.48043278109980414 1.0 6311 -Biological Process GO:0051384 response to glucocorticoid 0.031023448139400722 -0.48089873625546875 1.0 6312 -Phenotype MP:0009787 increased susceptibility to infection induced morbidity/mortality 0.031017403494509876 -0.481008294300852 1.0 6313 -Biological Process GO:0060292 long-term synaptic depression 0.031007497965776953 -0.48118783013563865 1.0 6314 -Phenotype MP:0002314 abnormal respiratory mechanics 0.03097684565845149 -0.48174339740844074 1.0 6315 -Phenotype MP:0000764 abnormal tongue epithelium morphology 0.030969535506297885 -0.48187589253360785 1.0 6316 -Biological Process GO:0097150 neuronal stem cell population maintenance 0.03094644575342409 -0.482294389937329 1.0 6317 -Phenotype MP:0002260 abnormal thyroid cartilage morphology 0.03094333611386768 -0.4823507515661424 1.0 6318 -Phenotype MP:0008254 increased megakaryocyte cell number 0.03094156438146034 -0.48238286388092605 1.0 6319 -Phenotype MP:0005044 sepsis 0.030909819327740062 -0.48295823697545587 1.0 6320 -Phenotype MP:0008019 increased liver tumor incidence 0.030909609814652517 -0.4829620343605411 1.0 6321 -Phenotype MP:0010297 increased hepatobiliary system tumor incidence 0.030909609814652517 -0.4829620343605411 1.0 6321 -Phenotype MP:0011059 abnormal ependyma motile cilium morphology 0.030898928085285604 -0.4831556386850108 1.0 6323 -Biological Process GO:0002703 regulation of leukocyte mediated immunity 0.03087707779891191 -0.48355167099284607 1.0 6324 -Biological Process GO:0001504 neurotransmitter uptake 0.030865621793892406 -0.48375930891707525 1.0 6325 -Phenotype MP:0010695 abnormal blood pressure regulation 0.030832483971831692 -0.48435992567435204 1.0 6326 -Phenotype MP:0004874 abnormal timing of postnatal eyelid opening 0.03076664573042376 -0.4855532313474525 1.0 6327 -Phenotype MP:0001290 delayed eyelid opening 0.030715224934295904 -0.48648522355171747 1.0 6328 -Biological Process GO:0050801 monoatomic ion homeostasis 0.030670905741386756 -0.4872885005408162 1.0 6329 -Biological Process GO:2000320 negative regulation of T-helper 17 cell differentiation 0.030648282658498838 -0.48769853963930765 1.0 6330 -Phenotype MP:0010847 increased central memory CD8 positive, alpha-beta T cell number 0.030634185817651205 -0.487954042213443 1.0 6331 -Phenotype MP:0001748 increased circulating adrenocorticotropin level 0.030632212821923188 -0.4879898023878477 1.0 6332 -Phenotype MP:0002894 abnormal otolith morphology 0.030616578764067537 -0.4882731667295095 1.0 6333 -Biological Process GO:0021892 cerebral cortex GABAergic interneuron differentiation 0.030596632307564264 -0.4886346924810272 1.0 6334 -Phenotype MP:0012736 abnormal polar body morphology 0.030593283021969953 -0.48869539764895176 1.0 6335 -Phenotype MP:0000761 thin diaphragm muscle 0.030547921715312065 -0.4895175627526446 1.0 6336 -Biological Process GO:0031507 heterochromatin formation 0.030543880355289543 -0.48959081163868384 1.0 6337 -Biological Process GO:0051353 positive regulation of oxidoreductase activity 0.030535846314486137 -0.48973642710871473 1.0 6338 -Phenotype MP:0001525 impaired balance 0.030531711212652524 -0.48981137504735006 1.0 6339 -Biological Process GO:0045933 positive regulation of muscle contraction 0.030496174502027573 -0.49045547120613614 1.0 6340 -Phenotype MP:0001849 ear inflammation 0.03049224449342447 -0.49052670186875913 1.0 6341 -Phenotype MP:0003719 abnormal pericyte morphology 0.030488744630387976 -0.4905901362243435 1.0 6342 -Phenotype MP:0008069 abnormal joint mobility 0.030444934416140934 -0.491384188071458 1.0 6343 -Phenotype MP:0004930 small epididymis 0.03043900687472867 -0.4914916236384405 1.0 6344 -Phenotype MP:0011191 increased embryonic epiblast cell apoptosis 0.030435622711842192 -0.491552960950689 1.0 6345 -Biological Process GO:1900544 positive regulation of purine nucleotide metabolic process 0.03042825775503144 -0.4916864493999013 1.0 6346 -Biological Process GO:0045981 positive regulation of nucleotide metabolic process 0.03042825775503144 -0.4916864493999013 1.0 6346 -Biological Process GO:0045333 cellular respiration 0.030422530983587937 -0.491790246049173 1.0 6348 -Biological Process GO:0043489 RNA stabilization 0.030412292259589302 -0.4919758209851312 1.0 6349 -Phenotype MP:0003900 shortened QT interval 0.030410325554626194 -0.4920114671406117 1.0 6350 -Phenotype MP:0005618 decreased urine potassium level 0.030395627535333203 -0.49227786596036444 1.0 6351 -Phenotype MP:0004851 increased testis weight 0.030393201283997473 -0.4923218413069317 1.0 6352 -Phenotype MP:0004179 transmission ratio distortion 0.03038989638737266 -0.49238174193317963 1.0 6353 -Phenotype MP:0010263 total cataract 0.03036063148028667 -0.49291216283904943 1.0 6354 -Phenotype MP:0008911 induced hyperactivity 0.03033416982886117 -0.493391775266271 1.0 6355 -Phenotype MP:0000282 abnormal interatrial septum morphology 0.030331841466517462 -0.4934339763933722 1.0 6356 -Phenotype MP:0002768 small adrenal glands 0.03032154299302192 -0.49362063427766106 1.0 6357 -Phenotype MP:0009017 prolonged estrus 0.030294460894349395 -0.49411149219388567 1.0 6358 -Biological Process GO:0051090 regulation of DNA-binding transcription factor activity 0.03028756592911741 -0.4942364621346254 1.0 6359 -Biological Process GO:0001738 morphogenesis of a polarized epithelium 0.03025451431238002 -0.4948355164367215 1.0 6360 -Biological Process GO:0043113 receptor clustering 0.030211708261743242 -0.49561136800832406 1.0 6361 -Phenotype MP:0009085 abnormal uterine horn morphology 0.03020960828448427 -0.49564942969896053 1.0 6362 -Phenotype MP:0003572 abnormal uterus development 0.0301970935965572 -0.4958762560506536 1.0 6363 -Biological Process GO:0072028 nephron morphogenesis 0.030186252476003594 -0.4960727493102355 1.0 6364 -Phenotype MP:0005312 pericardial effusion 0.03018089119152756 -0.49616992157734874 1.0 6365 -Phenotype MP:0002786 abnormal Leydig cell morphology 0.030167390323900922 -0.4964146222495739 1.0 6366 -Phenotype MP:0011111 lethality during fetal growth through weaning, complete penetrance 0.03014705821931818 -0.4967831377995918 1.0 6367 -Phenotype MP:0009111 pancreas hypoplasia 0.030143235235723598 -0.49685242865417767 1.0 6368 -Biological Process GO:2001054 negative regulation of mesenchymal cell apoptotic process 0.030142539321726725 -0.4968650419637482 1.0 6369 -Biological Process GO:0090257 regulation of muscle system process 0.030132430762758178 -0.4970482576831551 1.0 6370 -Phenotype MP:0004813 absent linear vestibular evoked potential 0.030128164319642048 -0.4971255861576946 1.0 6371 -Biological Process GO:0032787 monocarboxylic acid metabolic process 0.03004821188792728 -0.498574708860597 1.0 6372 -Biological Process GO:0022900 electron transport chain 0.030041903219128918 -0.4986890522893674 1.0 6373 -Phenotype MP:0003027 abnormal blood pH regulation 0.030038935949585954 -0.4987428334886145 1.0 6374 -Phenotype MP:0003271 abnormal duodenum morphology 0.03002593405355969 -0.4989784903949567 1.0 6375 -Phenotype MP:0005623 abnormal meninges morphology 0.03000983169517002 -0.4992703425952248 1.0 6376 -Biological Process GO:0070670 response to interleukin-4 0.02998907699072606 -0.49964651768779816 1.0 6377 -Phenotype MP:0004251 failure of heart looping 0.02996771718154434 -0.5000336601892961 1.0 6378 -Phenotype MP:0020872 abnormal hypothalamic nucleus morphology 0.02994577055180514 -0.500431438702409 1.0 6379 -Biological Process GO:0031281 positive regulation of cyclase activity 0.029932049520430826 -0.5006801298009199 1.0 6380 -Biological Process GO:0051349 positive regulation of lyase activity 0.029932049520430826 -0.5006801298009199 1.0 6380 -Biological Process GO:0001825 blastocyst formation 0.029917103554369606 -0.5009510226089509 1.0 6382 -Phenotype MP:0006418 abnormal testis cord formation 0.029912584365768602 -0.5010329320476004 1.0 6383 -Phenotype MP:0005402 abnormal action potential 0.02989775678094564 -0.5013016792180781 1.0 6384 -Biological Process GO:0043487 regulation of RNA stability 0.029897134397209424 -0.5013129598055815 1.0 6385 -Phenotype MP:0001415 increased exploration in new environment 0.02983116424939114 -0.5025086562574212 1.0 6386 -Phenotype MP:0003503 decreased activity of thyroid gland 0.029804593146367075 -0.5029902524741654 1.0 6387 -Biological Process GO:0098727 maintenance of cell number 0.029801512607404046 -0.5030460866602278 1.0 6388 -Phenotype MP:0005225 abnormal vertebrae development 0.029800031617574718 -0.5030729293207751 1.0 6389 -Phenotype MP:0005061 abnormal eosinophil morphology 0.02978375736883143 -0.5033678970011918 1.0 6390 -Phenotype MP:0001121 uterus hypoplasia 0.029762819266816565 -0.5037473961400506 1.0 6391 -Phenotype MP:0003693 abnormal blastocyst hatching 0.029737455323111894 -0.5042071128224488 1.0 6392 -Phenotype MP:0009308 increased adenocarcinoma incidence 0.02973074015594568 -0.5043288239572529 1.0 6393 -Phenotype MP:0001441 increased grooming behavior 0.029713181519192444 -0.5046470709274251 1.0 6394 -Phenotype MP:0011886 increased circulating lipase level 0.02970693598455565 -0.5047602700614581 1.0 6395 -Biological Process GO:0042073 intraciliary transport 0.029679193146253224 -0.5052631037585046 1.0 6396 -Biological Process GO:0045599 negative regulation of fat cell differentiation 0.029677248431224656 -0.5052983513505807 1.0 6397 -Phenotype MP:0001569 abnormal circulating bilirubin level 0.029676342352119134 -0.5053147738629956 1.0 6398 -Biological Process GO:0055012 ventricular cardiac muscle cell differentiation 0.02967494505630386 -0.5053400995853677 1.0 6399 -Phenotype MP:0002249 abnormal larynx morphology 0.029651943830665384 -0.5057569924496924 1.0 6400 -Biological Process GO:0006939 smooth muscle contraction 0.029625303145584647 -0.5062398498280533 1.0 6401 -Phenotype MP:0020448 increased microglial cell activation 0.029576559488829535 -0.5071233193875323 1.0 6402 -Phenotype MP:0003901 abnormal PR interval 0.029567032332244003 -0.5072959972987114 1.0 6403 -Phenotype MP:0002997 enlarged seminal vesicle 0.02953333488321863 -0.5079067571888768 1.0 6404 -Biological Process GO:0045638 negative regulation of myeloid cell differentiation 0.029518461435951493 -0.508176335607481 1.0 6405 -Phenotype MP:0020509 abnormal dendritic spine length 0.02950266220028963 -0.5084626937656392 1.0 6406 -Biological Process GO:0043433 negative regulation of DNA-binding transcription factor activity 0.029497667884893164 -0.5085532147875925 1.0 6407 -Phenotype MP:0004164 abnormal neurohypophysis morphology 0.02949576058340375 -0.5085877842663477 1.0 6408 -Phenotype MP:0000963 fused dorsal root ganglion 0.029492146250749918 -0.508653293362096 1.0 6409 -Phenotype MP:0004200 decreased fetal size 0.029487937045048263 -0.5087295844193238 1.0 6410 -Biological Process GO:0061101 neuroendocrine cell differentiation 0.029482228628799123 -0.5088330483841693 1.0 6411 -Biological Process GO:0001649 osteoblast differentiation 0.029476964956607454 -0.5089284514470904 1.0 6412 -Phenotype MP:0010924 abnormal osteoid morphology 0.02947058701075056 -0.5090440505094439 1.0 6413 -Phenotype MP:0004666 absent stapedial artery 0.029468360304932495 -0.5090844091312449 1.0 6414 -Phenotype MP:0004761 increased susceptibility to induced pancreatitis 0.029457049148338688 -0.5092894217051545 1.0 6415 -Phenotype MP:0011978 abnormal potassium ion homeostasis 0.029449455341347797 -0.5094270580205977 1.0 6416 -Phenotype MP:0008586 disorganized photoreceptor outer segment 0.029432608459320164 -0.5097324045709873 1.0 6417 -Phenotype MP:0004922 abnormal common crus morphology 0.02939268395623562 -0.5104560286382116 1.0 6418 -Biological Process GO:0034505 tooth mineralization 0.02938614749551105 -0.5105745007525607 1.0 6419 -Biological Process GO:0042711 maternal behavior 0.029372895694161905 -0.510814687145614 1.0 6420 -Biological Process GO:0042755 eating behavior 0.029357859872364944 -0.5110872085718603 1.0 6421 -Phenotype MP:0011913 abnormal reticulocyte cell number 0.029343245679384955 -0.5113520880555444 1.0 6422 -Biological Process GO:1903170 negative regulation of calcium ion transmembrane transport 0.029323379348164313 -0.511712161551469 1.0 6423 -Phenotype MP:0011940 decreased food intake 0.029303551345760792 -0.5120715403448327 1.0 6424 -Phenotype MP:0000062 increased bone mineral density 0.029297614377920667 -0.5121791467640373 1.0 6425 -Phenotype MP:0004853 abnormal ovary size 0.029269251254251838 -0.5126932230160313 1.0 6426 -Biological Process GO:0060079 excitatory postsynaptic potential 0.02926897568602671 -0.5126982176379916 1.0 6427 -Biological Process GO:0007611 learning or memory 0.029267010628515888 -0.5127338339337111 1.0 6428 -Phenotype MP:0004838 abnormal neural fold elevation formation 0.02925495177306947 -0.512952398407907 1.0 6429 -Biological Process GO:0021954 central nervous system neuron development 0.029254572590622474 -0.5129592710180415 1.0 6430 -Phenotype MP:0000116 abnormal tooth development 0.029226536797864133 -0.5134674144591931 1.0 6431 -Phenotype MP:0002959 increased urine microalbumin level 0.02920595521511693 -0.5138404517537565 1.0 6432 -Phenotype MP:0001163 abnormal prostate gland anterior lobe morphology 0.02919920735505721 -0.5139627554410718 1.0 6433 -Phenotype MP:0004903 abnormal uterus weight 0.029184257857151175 -0.5142337122631222 1.0 6434 -Biological Process GO:0061626 pharyngeal arch artery morphogenesis 0.029159445056950006 -0.5146834395737607 1.0 6435 -Biological Process GO:0045591 positive regulation of regulatory T cell differentiation 0.029159393247123355 -0.5146843786170696 1.0 6436 -Biological Process GO:1902369 negative regulation of RNA catabolic process 0.02915273909632643 -0.5148049838417208 1.0 6437 -Phenotype MP:0004431 abnormal hair cell mechanoelectric transduction 0.029139881665964484 -0.5150380223352209 1.0 6438 -Biological Process GO:0006281 DNA repair 0.029103401895506975 -0.515699211275105 1.0 6439 -Phenotype MP:0005421 loose skin 0.0291030761973311 -0.5157051144929413 1.0 6440 -Biological Process GO:0071407 cellular response to organic cyclic compound 0.02910269840089441 -0.5157119619819012 1.0 6441 -Phenotype MP:0008587 short photoreceptor outer segment 0.029090810656646315 -0.5159274250979909 1.0 6442 -Biological Process GO:0048525 negative regulation of viral process 0.029072584239105637 -0.5162577754686338 1.0 6443 -Phenotype MP:0002217 small lymph nodes 0.029062445772795598 -0.5164415332529486 1.0 6444 -Phenotype MP:0004835 abnormal miniature endplate potential 0.029060007608826766 -0.5164857245137378 1.0 6445 -Phenotype MP:0004856 decreased ovary weight 0.02905615680520246 -0.5165555196011006 1.0 6446 -Phenotype MP:0001076 abnormal hypoglossal nerve morphology 0.029053265509634052 -0.5166079237864283 1.0 6447 -Phenotype MP:0006398 increased long bone epiphyseal plate size 0.02904425550413592 -0.5167712284319605 1.0 6448 -Phenotype MP:0011620 abnormal habituation to a new environment 0.029005659647343585 -0.517470771036434 1.0 6449 -Phenotype MP:0012121 sclerocornea 0.02900031538806047 -0.5175676347251457 1.0 6450 -Phenotype MP:0013894 abnormal behavioral response to amphetamine 0.028984945767193016 -0.5178462061964111 1.0 6451 -Phenotype MP:0004418 small parietal bone 0.028955388018663264 -0.518381934798062 1.0 6452 -Phenotype MP:0021206 abnormal limb muscle morphology 0.028937287834670533 -0.5187099972095238 1.0 6453 -Biological Process GO:0030517 negative regulation of axon extension 0.028921325435244172 -0.5189993126800533 1.0 6454 -Phenotype MP:0030542 abnormal dentin development 0.028826925295942996 -0.5207102973503697 1.0 6455 -Phenotype MP:0010853 abnormal lung position or orientation 0.02878749452405438 -0.5214249726330504 1.0 6456 -Phenotype MP:0010932 increased trabecular bone connectivity density 0.02878347197963338 -0.5214978804898708 1.0 6457 -Biological Process GO:0072202 cell differentiation involved in metanephros development 0.028777661712901526 -0.5216031904754518 1.0 6458 -Biological Process GO:0010614 negative regulation of cardiac muscle hypertrophy 0.028754528447553884 -0.5220224765345316 1.0 6459 -Phenotype MP:0004198 abnormal fetal size 0.028679386648757688 -0.5233844074256515 1.0 6460 -Phenotype MP:0002980 abnormal postural reflex 0.02866239710255858 -0.5236923397371661 1.0 6461 -Biological Process GO:0032350 regulation of hormone metabolic process 0.028657306515156522 -0.5237846056710121 1.0 6462 -Phenotype MP:0002424 abnormal reticulocyte morphology 0.028656215317047207 -0.5238043834303581 1.0 6463 -Biological Process GO:0019827 stem cell population maintenance 0.028652497670158317 -0.5238717650770762 1.0 6464 -Biological Process GO:0048302 regulation of isotype switching to IgG isotypes 0.028626662212947962 -0.5243400278525845 1.0 6465 -Phenotype MP:0003954 abnormal Reichert's membrane morphology 0.028623864440146196 -0.5243907369554553 1.0 6466 -Phenotype MP:0013164 abnormal forelimb bud morphology 0.028617957440240316 -0.5244978002115198 1.0 6467 -Phenotype MP:0002764 short tibia 0.028563946929385353 -0.5254767305054039 1.0 6468 -Biological Process GO:0007517 muscle organ development 0.028532498863814815 -0.526046720745891 1.0 6469 -Biological Process GO:0006417 regulation of translation 0.028531885358408338 -0.5260578404153471 1.0 6470 -Biological Process GO:0007292 female gamete generation 0.028521555544923416 -0.526245066331016 1.0 6471 -Biological Process GO:0021756 striatum development 0.028519542337702153 -0.5262815553311303 1.0 6472 -Phenotype MP:0031318 enhanced skeletal muscle regeneration 0.028480708631465013 -0.5269854089118049 1.0 6473 -Phenotype MP:0009944 abnormal olfactory lobe morphology 0.028464524842226946 -0.5272787370307986 1.0 6474 -Biological Process GO:0061515 myeloid cell development 0.028458134802496482 -0.5273945552923232 1.0 6475 -Biological Process GO:0051262 protein tetramerization 0.028456566277419326 -0.5274229845126812 1.0 6476 -Phenotype MP:0009837 abnormal sperm end piece morphology 0.02844884776839629 -0.5275628810288715 1.0 6477 -Biological Process GO:2000318 positive regulation of T-helper 17 type immune response 0.028420898241882764 -0.5280694609106519 1.0 6478 -Biological Process GO:0035883 enteroendocrine cell differentiation 0.02840815512420225 -0.5283004275084218 1.0 6479 -Biological Process GO:0009411 response to UV 0.028393715965527533 -0.5285621345284283 1.0 6480 -Phenotype MP:0011893 increased circulating transferrin level 0.028387488623180857 -0.5286750039306437 1.0 6481 -Phenotype MP:0011896 increased circulating unsaturated transferrin level 0.028387488623180857 -0.5286750039306437 1.0 6481 -Biological Process GO:0008210 estrogen metabolic process 0.028380227706537697 -0.5288066066714961 1.0 6483 -Biological Process GO:0046320 regulation of fatty acid oxidation 0.02836957060445988 -0.528999764631009 1.0 6484 -Phenotype MP:0008533 abnormal anterior visceral endoderm morphology 0.028344818585243625 -0.5294483902977919 1.0 6485 -Phenotype MP:0002234 abnormal pharynx morphology 0.02834193397383067 -0.5295006733340663 1.0 6486 -Biological Process GO:0002707 negative regulation of lymphocyte mediated immunity 0.028219731093214295 -0.5317155774322058 1.0 6487 -Biological Process GO:0032922 circadian regulation of gene expression 0.02821660029460804 -0.5317723225647957 1.0 6488 -Phenotype MP:0003946 renal necrosis 0.02821000681819219 -0.5318918280777656 1.0 6489 -Phenotype MP:0010399 decreased skeletal muscle glycogen level 0.028203248928990066 -0.5320143135413902 1.0 6490 -Biological Process GO:0010839 negative regulation of keratinocyte proliferation 0.02819636139204329 -0.5321391488458654 1.0 6491 -Phenotype MP:0004801 increased susceptibility to systemic lupus erythematosus 0.02816980301474814 -0.53262051441118 1.0 6492 -Phenotype MP:0003078 aphakia 0.02816350152454916 -0.5327347277291943 1.0 6493 -Biological Process GO:0007530 sex determination 0.028129742340735286 -0.533346606550725 1.0 6494 -Biological Process GO:0042417 dopamine metabolic process 0.028129176088366736 -0.5333568697678059 1.0 6495 -Phenotype MP:0013967 abnormal infrahyoid muscle connection 0.02810970448235528 -0.533709788943971 1.0 6496 -Biological Process GO:0072273 metanephric nephron morphogenesis 0.02808365103452115 -0.5341820027583052 1.0 6497 -Biological Process GO:0001503 ossification 0.028080916297139047 -0.5342315693561169 1.0 6498 -Phenotype MP:0003205 testicular atrophy 0.028060066758288094 -0.5346094633043804 1.0 6499 -Biological Process GO:1904672 regulation of somatic stem cell population maintenance 0.028014258289123184 -0.5354397331439382 1.0 6500 -Phenotype MP:0008575 increased circulating interferon-beta level 0.027950969019271188 -0.5365868391896911 1.0 6501 -Phenotype MP:0013700 abnormal mature NK cell morphology 0.027913488926916585 -0.5372661587747626 1.0 6502 -Phenotype MP:0009488 abnormal pancreatic islet cell apoptosis 0.027890875551150662 -0.5376760219335038 1.0 6503 -Phenotype MP:0011125 decreased primary ovarian follicle number 0.02785172307177597 -0.5383856532170049 1.0 6504 -Biological Process GO:0042743 hydrogen peroxide metabolic process 0.027837424569891356 -0.5386448108592942 1.0 6505 -Phenotype MP:0000026 abnormal inner ear morphology 0.027824249532929723 -0.5388836059123426 1.0 6506 -Phenotype MP:0006204 embryonic lethality before implantation 0.027820981794380528 -0.538942833055498 1.0 6507 -Phenotype MP:0002686 globozoospermia 0.027797488851242225 -0.5393686382065053 1.0 6508 -Biological Process GO:0007343 egg activation 0.02777162828607249 -0.5398373560590284 1.0 6509 -Biological Process GO:1900046 regulation of hemostasis 0.027766127590261758 -0.5399370551302153 1.0 6510 -Biological Process GO:0043502 regulation of muscle adaptation 0.027754498090585056 -0.540147837612292 1.0 6511 -Phenotype MP:0014102 abnormal chondrocyte apoptosis 0.027748911811116606 -0.5402490878710879 1.0 6512 -Phenotype MP:0012431 increased lymphoma incidence 0.027744873295499017 -0.5403222852028258 1.0 6513 -Phenotype MP:0020874 abnormal nervous system dopamine level 0.02771143972196155 -0.5409282623996814 1.0 6514 -Phenotype MP:0011471 decreased urine creatinine level 0.027649377069628556 -0.5420531362349005 1.0 6515 -Biological Process GO:0060040 retinal bipolar neuron differentiation 0.02764061093056369 -0.5422120208474537 1.0 6516 -Phenotype MP:0009599 thick epidermis stratum granulosum 0.027622391575843563 -0.54254224320581 1.0 6517 -Biological Process GO:0019677 NAD catabolic process 0.027608134600989764 -0.5428006481785199 1.0 6518 -Biological Process GO:0019751 polyol metabolic process 0.0276069923567257 -0.5428213511397659 1.0 6519 -Phenotype MP:0020887 abnormal potassium level 0.027575379468370187 -0.5433943287620567 1.0 6520 -Phenotype MP:0004665 abnormal stapedial artery morphology 0.0274911037441834 -0.5449218103233219 1.0 6521 -Phenotype MP:0003443 increased circulating glycerol level 0.027466631884563997 -0.5453653581504002 1.0 6522 -Phenotype MP:0005092 decreased double-positive T cell number 0.02741514307756665 -0.5462985830388114 1.0 6523 -Phenotype MP:0006326 conductive hearing impairment 0.02737563633729001 -0.5470146352341566 1.0 6524 -Phenotype MP:0004033 supernumerary teeth 0.02737448501850892 -0.5470355026693074 1.0 6525 -Biological Process GO:0060117 auditory receptor cell development 0.027365285775666437 -0.5472022372059143 1.0 6526 -Phenotype MP:0008944 decreased sensitivity to induced cell death 0.0273424913770296 -0.5476153813699529 1.0 6527 -Biological Process GO:0055080 monoatomic cation homeostasis 0.027293555776535583 -0.5485023298733959 1.0 6528 -Biological Process GO:0055086 nucleobase-containing small molecule metabolic process 0.02727457957971413 -0.5488462698516922 1.0 6529 -Biological Process GO:1900407 regulation of cellular response to oxidative stress 0.027265149464386296 -0.5490171889084297 1.0 6530 -Phenotype MP:0000781 decreased corpus callosum size 0.027261796603547217 -0.5490779588769894 1.0 6531 -Phenotype MP:0004002 abnormal jejunum morphology 0.02725598099881643 -0.5491833656127914 1.0 6532 -Phenotype MP:0000602 dilated liver sinusoidal space 0.027226482559821408 -0.549718019240343 1.0 6533 -Phenotype MP:0000416 sparse hair 0.027215807788636304 -0.5499114974490835 1.0 6534 -Phenotype MP:0010953 abnormal fatty acid oxidation 0.027121931848396952 -0.5516129811105496 1.0 6535 -Phenotype MP:0021106 abnormal secondary ovarian follicle morphology 0.027090233578177303 -0.552187506262979 1.0 6536 -Phenotype MP:0002408 abnormal double-positive T cell morphology 0.02705608567713791 -0.5528064305107016 1.0 6537 -Phenotype MP:0002176 increased brain weight 0.02705469379205583 -0.5528316581645578 1.0 6538 -Phenotype MP:0003458 decreased circulating ketone body level 0.02705462681197146 -0.5528328721659186 1.0 6539 -Phenotype MP:0008536 enlarged third ventricle 0.027049965191196512 -0.5529173631607817 1.0 6540 -Phenotype MP:0005543 decreased cornea thickness 0.026994036212140138 -0.5539310653279639 1.0 6541 -Phenotype MP:0005475 abnormal circulating thyroxine level 0.026972878724342175 -0.5543145407926475 1.0 6542 -Biological Process GO:0032206 positive regulation of telomere maintenance 0.02694085091120757 -0.5548950388480819 1.0 6543 -Phenotype MP:0010086 abnormal circulating fructosamine level 0.026923623348329984 -0.5552072851668762 1.0 6544 -Phenotype MP:0002310 decreased susceptibility to hepatic steatosis 0.026914411673742533 -0.5553742450265093 1.0 6545 -Biological Process GO:0060021 roof of mouth development 0.02690880759205394 -0.5554758179471784 1.0 6546 -Biological Process GO:0098660 inorganic ion transmembrane transport 0.02689200707052175 -0.5557803242223565 1.0 6547 -Biological Process GO:2001204 regulation of osteoclast development 0.026827033089189545 -0.5569579653450475 1.0 6548 -Biological Process GO:0042551 neuron maturation 0.026814323798735273 -0.5571883188307397 1.0 6549 -Phenotype MP:0003450 enlarged pancreas 0.026780276286116123 -0.5578054235573324 1.0 6550 -Phenotype MP:0011105 embryonic lethality between implantation and placentation, incomplete penetrance 0.026752614093939697 -0.5583067955585984 1.0 6551 -Biological Process GO:0006476 protein deacetylation 0.026734178720414947 -0.5586409332169313 1.0 6552 -Phenotype MP:0000851 cerebellum hypoplasia 0.02672982423504877 -0.5587198574406009 1.0 6553 -Biological Process GO:0042428 serotonin metabolic process 0.026727245133423838 -0.5587666031697505 1.0 6554 -Phenotype MP:0009277 increased brain tumor incidence 0.026709667771707468 -0.5590851895263379 1.0 6555 -Phenotype MP:0003410 abnormal artery development 0.02670682294687199 -0.5591367514384207 1.0 6556 -Biological Process GO:0008344 adult locomotory behavior 0.026700950033725634 -0.5592431968784157 1.0 6557 -Phenotype MP:0004748 increased susceptibility to age-related hearing loss 0.02668590023252493 -0.5595159716787109 1.0 6558 -Biological Process GO:0006883 intracellular sodium ion homeostasis 0.026656166616728427 -0.5600548878413087 1.0 6559 -Phenotype MP:0005423 abnormal somatic nervous system physiology 0.026628595134344124 -0.560554615744749 1.0 6560 -Phenotype MP:0003240 loss of hippocampal neurons 0.026517742566168456 -0.5625637975766598 1.0 6561 -Phenotype MP:0000926 absent floor plate 0.026496089219731345 -0.562956260385393 1.0 6562 -Biological Process GO:0050890 cognition 0.026456962323727073 -0.563665427975144 1.0 6563 -Phenotype MP:0010968 decreased compact bone area 0.026449902368516298 -0.5637933883280436 1.0 6564 -Phenotype MP:0006082 CNS inflammation 0.026428756359666905 -0.5641766557389556 1.0 6565 -Biological Process GO:0035107 appendage morphogenesis 0.026402462811918492 -0.5646532213188244 1.0 6566 -Biological Process GO:0035108 limb morphogenesis 0.026402462811918492 -0.5646532213188244 1.0 6566 -Phenotype MP:0009420 skeletal muscle endomysial fibrosis 0.026382212562964136 -0.5650202532510598 1.0 6568 -Phenotype MP:0006142 abnormal sinoatrial node conduction 0.02634483406884336 -0.5656977313873591 1.0 6569 -Phenotype MP:0009713 enhanced conditioned place preference behavior 0.02634224285657072 -0.5657446966197077 1.0 6570 -Biological Process GO:1904177 regulation of adipose tissue development 0.026325341671980418 -0.566051027393775 1.0 6571 -Phenotype MP:0001199 thin skin 0.026319966116117866 -0.5661484583270697 1.0 6572 -Phenotype MP:0014141 abnormal mesoderm morphology 0.026314606175303012 -0.5662456062405782 1.0 6573 -Phenotype MP:0003421 abnormal thyroid gland development 0.026303036192023344 -0.5664553099992153 1.0 6574 -Biological Process GO:0009581 detection of external stimulus 0.02628345406383714 -0.5668102323688939 1.0 6575 -Biological Process GO:0050779 RNA destabilization 0.026231113702895326 -0.5677588915114886 1.0 6576 -Phenotype MP:0012023 decreased melanocyte number 0.02621908311750132 -0.5679769435963314 1.0 6577 -Biological Process GO:0045071 negative regulation of viral genome replication 0.0261954099690499 -0.5684060149345557 1.0 6578 -Biological Process GO:0140888 interferon-mediated signaling pathway 0.026138835960469953 -0.5694314081398539 1.0 6579 -Phenotype MP:0004024 aneuploidy 0.026120062560845647 -0.5697716724573082 1.0 6580 -Biological Process GO:0046466 membrane lipid catabolic process 0.026065205746239606 -0.5707659418466137 1.0 6581 -Phenotype MP:0009109 decreased pancreas weight 0.02605235581556764 -0.5709988444096513 1.0 6582 -Biological Process GO:0061045 negative regulation of wound healing 0.026050533013152855 -0.5710318823586608 1.0 6583 -Biological Process GO:0031018 endocrine pancreas development 0.02602827488367432 -0.5714353067456333 1.0 6584 -Phenotype MP:0005145 increased circulating VLDL cholesterol level 0.02596492541654727 -0.5725835038556109 1.0 6585 -Phenotype MP:0000571 interdigital webbing 0.02595888900706389 -0.5726929126357914 1.0 6586 -Phenotype MP:0000830 abnormal diencephalon morphology 0.02595245682201497 -0.5728094947732417 1.0 6587 -Phenotype MP:0010747 abnormal enamel organ morphology 0.025940194363978764 -0.5730317495058689 1.0 6588 -Phenotype MP:0006317 decreased urine sodium level 0.025906231065954577 -0.573647327858856 1.0 6589 -Biological Process GO:0042391 regulation of membrane potential 0.025874245564844522 -0.5742270590168481 1.0 6590 -Biological Process GO:1901862 negative regulation of muscle tissue development 0.0258728677740111 -0.5742520312151133 1.0 6591 -Phenotype MP:0002090 abnormal vision 0.025859405021172788 -0.574496041064009 1.0 6592 -Phenotype MP:0001382 abnormal nursing 0.02585395813625646 -0.5745947648229123 1.0 6593 -Phenotype MP:0001073 abnormal glossopharyngeal nerve morphology 0.025783085194702737 -0.5758793234839094 1.0 6594 -Biological Process GO:0042487 regulation of odontogenesis of dentin-containing tooth 0.025775828727336525 -0.5760108455824586 1.0 6595 -Phenotype MP:0013956 decreased colon length 0.025710511401452196 -0.5771947097602179 1.0 6596 -Phenotype MP:0013960 decreased large intestine length 0.025710511401452196 -0.5771947097602179 1.0 6596 -Phenotype MP:0006073 abnormal retina bipolar cell morphology 0.025690880052733123 -0.5775505242427453 1.0 6598 -Phenotype MP:0004812 abnormal linear vestibular evoked potential 0.02568903676881973 -0.5775839334150433 1.0 6599 -Phenotype MP:0002436 abnormal CD8-positive, alpha-beta cytotoxic T cell morphology 0.025674370764176113 -0.5778497519753312 1.0 6600 -Phenotype MP:0003787 abnormal imprinting 0.025658234515169243 -0.578142218436626 1.0 6601 -Phenotype MP:0005204 abnormal canal of Schlemm morphology 0.02564792654305592 -0.5783290484815656 1.0 6602 -Phenotype MP:0004214 abnormal long bone diaphysis morphology 0.025627493126100243 -0.5786994002991812 1.0 6603 -Biological Process GO:0006486 protein glycosylation 0.025611602071961115 -0.5789874226498736 1.0 6604 -Biological Process GO:0043413 macromolecule glycosylation 0.025611602071961115 -0.5789874226498736 1.0 6604 -Biological Process GO:0006364 rRNA processing 0.02556737303005563 -0.5797890656690818 1.0 6606 -Phenotype MP:0001684 abnormal axial mesoderm morphology 0.025556719872972034 -0.5799821521263205 1.0 6607 -Phenotype MP:0002544 brachydactyly 0.02555046780222414 -0.5800954697261309 1.0 6608 -Biological Process GO:0035019 somatic stem cell population maintenance 0.025521589669179612 -0.5806188804256524 1.0 6609 -Phenotype MP:0003854 abnormal forelimb stylopod morphology 0.025507329894712383 -0.5808773361408262 1.0 6610 -Biological Process GO:0009260 ribonucleotide biosynthetic process 0.025506671802140946 -0.5808892639442141 1.0 6611 -Biological Process GO:0050848 regulation of calcium-mediated signaling 0.025492108734229135 -0.5811532167957071 1.0 6612 -Biological Process GO:0014009 glial cell proliferation 0.0254864744409119 -0.5812553372964312 1.0 6613 -Phenotype MP:0011703 increased fibroblast proliferation 0.025475721802110662 -0.5814502268409865 1.0 6614 -Phenotype MP:0003398 increased skeletal muscle size 0.02546934066151174 -0.581565883807435 1.0 6615 -Biological Process GO:0009713 catechol-containing compound biosynthetic process 0.02536235672360876 -0.5835049474473527 1.0 6616 -Biological Process GO:0042423 catecholamine biosynthetic process 0.02536235672360876 -0.5835049474473527 1.0 6616 -Phenotype MP:0000461 decreased presacral vertebrae number 0.02535041704291785 -0.5837213519016453 1.0 6618 -Phenotype MP:0005468 abnormal thyroid hormone level 0.025332897597184934 -0.5840388885419868 1.0 6619 -Phenotype MP:0004832 enlarged ovary 0.025320864793375253 -0.5842569808351942 1.0 6620 -Phenotype MP:0004859 abnormal synaptic plasticity 0.02531218307652594 -0.5844143353110579 1.0 6621 -Phenotype MP:0031269 increased susceptibility to diet-induced hepatic steatosis 0.025301939484994374 -0.5845999984701299 1.0 6622 -Biological Process GO:0006874 intracellular calcium ion homeostasis 0.025283211206220235 -0.584939444980709 1.0 6623 -Biological Process GO:0002823 negative regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains 0.025274507776023802 -0.5850971930068826 1.0 6624 -Biological Process GO:0008356 asymmetric cell division 0.02525852718458066 -0.5853868382042754 1.0 6625 -Biological Process GO:1903036 positive regulation of response to wounding 0.025255507589032056 -0.5854415678024779 1.0 6626 -Phenotype MP:0003420 delayed intramembranous bone ossification 0.02523571166875649 -0.5858003651133403 1.0 6627 -Biological Process GO:0042908 xenobiotic transport 0.025216970220792945 -0.5861400503129867 1.0 6628 -Biological Process GO:0060675 ureteric bud morphogenesis 0.025206181297262598 -0.5863355975113943 1.0 6629 -Phenotype MP:0010809 abnormal club cell morphology 0.025196897639691684 -0.5865038620489881 1.0 6630 -Biological Process GO:0006692 prostanoid metabolic process 0.02518554621362168 -0.5867096044995372 1.0 6631 -Biological Process GO:0006693 prostaglandin metabolic process 0.02518554621362168 -0.5867096044995372 1.0 6631 -Phenotype MP:0008871 abnormal ovarian follicle number 0.025182902811840213 -0.5867575156568624 1.0 6633 -Phenotype MP:0009287 decreased abdominal fat pad weight 0.02518020914494179 -0.5868063378599255 1.0 6634 -Biological Process GO:0030516 regulation of axon extension 0.025110913524007628 -0.5880623078830219 1.0 6635 -Phenotype MP:0003789 increased osteosarcoma incidence 0.025105917726036653 -0.5881528557763578 1.0 6636 -Biological Process GO:0072189 ureter development 0.025043754357251924 -0.5892795550782154 1.0 6637 -Biological Process GO:0050806 positive regulation of synaptic transmission 0.025038471989148103 -0.5893752970010082 1.0 6638 -Biological Process GO:0002064 epithelial cell development 0.0249485152737714 -0.5910057454531075 1.0 6639 -Phenotype MP:0004988 increased osteoblast cell number 0.024929495800475432 -0.5913504698093192 1.0 6640 -Phenotype MP:0008883 abnormal enterocyte proliferation 0.024912286442907883 -0.5916623861603123 1.0 6641 -Phenotype MP:0014261 abnormal spleen B cell follicle number 0.024906258982014817 -0.5917716327489859 1.0 6642 -Phenotype MP:0011630 increased mitochondrial size 0.02489707876885283 -0.591938022376233 1.0 6643 -Biological Process GO:0006167 AMP biosynthetic process 0.02489043529573809 -0.5920584340699141 1.0 6644 -Phenotype MP:0014069 abnormal skeletal muscle glycogen level 0.02488699173614306 -0.592120847936271 1.0 6645 -Biological Process GO:0050891 multicellular organismal-level water homeostasis 0.02487882005708919 -0.5922689580735592 1.0 6646 -Biological Process GO:0051180 vitamin transport 0.024876897457984493 -0.592303804818698 1.0 6647 -Phenotype MP:0009092 endometrium hyperplasia 0.024865528586271335 -0.5925098634682298 1.0 6648 -Phenotype MP:0004425 abnormal otolith organ morphology 0.024859948654262 -0.5926109986805298 1.0 6649 -Phenotype MP:0004394 abnormal cochlear inner hair cell number 0.024857525926210156 -0.592654910168243 1.0 6650 -Biological Process GO:0002448 mast cell mediated immunity 0.024854379283669625 -0.5927119424691449 1.0 6651 -Biological Process GO:0097305 response to alcohol 0.02483628124720827 -0.5930399659570067 1.0 6652 -Biological Process GO:0033866 nucleoside bisphosphate biosynthetic process 0.024797174819032763 -0.5937487625712325 1.0 6653 -Biological Process GO:0034030 ribonucleoside bisphosphate biosynthetic process 0.024797174819032763 -0.5937487625712325 1.0 6653 -Biological Process GO:0034033 purine nucleoside bisphosphate biosynthetic process 0.024797174819032763 -0.5937487625712325 1.0 6653 -Biological Process GO:0048704 embryonic skeletal system morphogenesis 0.024778252457024474 -0.5940917268037224 1.0 6656 -Phenotype MP:0005296 abnormal humerus morphology 0.0247747459633203 -0.5941552813389044 1.0 6657 -Biological Process GO:0045761 regulation of adenylate cyclase activity 0.024740170407689832 -0.5947819567452051 1.0 6658 -Phenotype MP:0010307 abnormal tumor latency 0.02473470432471714 -0.5948810284652489 1.0 6659 -Phenotype MP:0005182 increased circulating estradiol level 0.02472750774618282 -0.5950114650900474 1.0 6660 -Phenotype MP:0003063 increased coping response 0.024710249945376406 -0.5953242594655827 1.0 6661 -Biological Process GO:0046958 nonassociative learning 0.024680105743360214 -0.5958706174257554 1.0 6662 -Phenotype MP:0002841 impaired skeletal muscle contractility 0.024674746592563968 -0.5959677510203261 1.0 6663 -Biological Process GO:0072172 mesonephric tubule formation 0.024627391175735314 -0.5968260589937049 1.0 6664 -Phenotype MP:0003827 abnormal Wolffian duct morphology 0.02462644337564379 -0.5968432376911001 1.0 6665 -Phenotype MP:0009357 abnormal seizure response to inducing agent 0.024607254080294627 -0.5971910400399064 1.0 6666 -Phenotype MP:0001438 aphagia 0.024589864647084236 -0.5975062202278673 1.0 6667 -Biological Process GO:0050808 synapse organization 0.024568892314330237 -0.5978863397923986 1.0 6668 -Biological Process GO:0001542 ovulation from ovarian follicle 0.02453858997705216 -0.598435563924284 1.0 6669 -Phenotype MP:0005138 decreased prolactin level 0.024472131733549563 -0.5996401070180851 1.0 6670 -Biological Process GO:0009135 purine nucleoside diphosphate metabolic process 0.024460343055130562 -0.5998537745847595 1.0 6671 -Biological Process GO:0009179 purine ribonucleoside diphosphate metabolic process 0.024460343055130562 -0.5998537745847595 1.0 6671 -Phenotype MP:0010748 abnormal visual evoked potential 0.024437524105431874 -0.6002673637321506 1.0 6673 -Phenotype MP:0008923 thoracoschisis 0.024432931275087832 -0.6003506079134642 1.0 6674 -Biological Process GO:0031047 regulatory ncRNA-mediated gene silencing 0.024406814520319675 -0.6008239691540039 1.0 6675 -Biological Process GO:0051260 protein homooligomerization 0.024403341745620755 -0.6008869125385933 1.0 6676 -Phenotype MP:0004727 absent epididymis 0.024394473859335575 -0.6010476413002707 1.0 6677 -Biological Process GO:0002526 acute inflammatory response 0.024366047300527827 -0.6015628673021596 1.0 6678 -Phenotype MP:0011843 abnormal kidney collecting duct epithelium morphology 0.024335537036733634 -0.602115860062823 1.0 6679 -Biological Process GO:0015844 monoamine transport 0.024307717061497258 -0.602620091852208 1.0 6680 -Biological Process GO:0045446 endothelial cell differentiation 0.0242923782359723 -0.6028981051637152 1.0 6681 -Phenotype MP:0004021 abnormal rod electrophysiology 0.02424086757023247 -0.6038317262376995 1.0 6682 -Phenotype MP:0030927 decreased telomere length 0.024189438724291024 -0.6047638643433134 1.0 6683 -Phenotype MP:0011112 lethality during fetal growth through weaning, incomplete penetrance 0.024151387244921496 -0.6054535402099602 1.0 6684 -Biological Process GO:0006687 glycosphingolipid metabolic process 0.024144495786123765 -0.6055784465972424 1.0 6685 -Phenotype MP:0020515 abnormal visceral yolk sac endoderm morphology 0.024120828399116112 -0.6060074135103879 1.0 6686 -Phenotype MP:0011583 abnormal alkaline phosphatase activity 0.024115663648429764 -0.6061010236397348 1.0 6687 -Biological Process GO:0009132 nucleoside diphosphate metabolic process 0.024111113750063473 -0.6061834896870717 1.0 6688 -Phenotype MP:0031156 large intestine hemorrhage 0.02409139337599908 -0.6065409177371451 1.0 6689 -Phenotype MP:0000492 abnormal rectum morphology 0.02401339751324083 -0.6079545779977694 1.0 6690 -Biological Process GO:0010842 retina layer formation 0.02400608696100881 -0.608087080374282 1.0 6691 -Phenotype MP:0010152 abnormal brain ependyma morphology 0.024003881589285125 -0.6081270523196575 1.0 6692 -Phenotype MP:0008146 asymmetric sternocostal joints 0.023999422774703127 -0.6082078674906314 1.0 6693 -Phenotype MP:0030735 abnormal glutamic acid level 0.02399398444482903 -0.6083064361910123 1.0 6694 -Biological Process GO:0051452 intracellular pH reduction 0.023966471683616097 -0.6088050997843278 1.0 6695 -Phenotype MP:0008669 increased interleukin-12b secretion 0.02396182294980076 -0.6088893572054853 1.0 6696 -Biological Process GO:1903715 regulation of aerobic respiration 0.02390620422317158 -0.6098974361061047 1.0 6697 -Phenotype MP:0006001 abnormal intestinal transit time 0.023859505295842687 -0.6107438453314664 1.0 6698 -Phenotype MP:0001539 decreased caudal vertebrae number 0.02382696816069929 -0.6113335747519788 1.0 6699 -Phenotype MP:0008234 absent spleen marginal zone 0.023814430953767673 -0.6115608092563701 1.0 6700 -Phenotype MP:0003138 absent tympanic ring 0.023798367439163304 -0.6118519574203765 1.0 6701 -Biological Process GO:0009612 response to mechanical stimulus 0.02377501768155854 -0.61227516736067 1.0 6702 -Phenotype MP:0010435 abnormal heart atrium and ventricle connection 0.02376641575744709 -0.6124310756082517 1.0 6703 -Phenotype MP:0001891 hydrocephaly 0.02376513704417449 -0.6124542520444662 1.0 6704 -Biological Process GO:0006275 regulation of DNA replication 0.023752203416302353 -0.6126886716034269 1.0 6705 -Biological Process GO:0045986 negative regulation of smooth muscle contraction 0.023731738637314148 -0.6130595918519501 1.0 6706 -Biological Process GO:0060768 regulation of epithelial cell proliferation involved in prostate gland development 0.023723253843047964 -0.61321337714324 1.0 6707 -Biological Process GO:0090398 cellular senescence 0.023689575344142177 -0.613823793566072 1.0 6708 -Phenotype MP:0004351 short humerus 0.02368420149872774 -0.613921193497818 1.0 6709 -Phenotype MP:0020357 abnormal excitatory synapse morphology 0.023651040770205634 -0.6145222254303752 1.0 6710 -Phenotype MP:0002862 abnormal righting response 0.023641946909759293 -0.6146870499309837 1.0 6711 -Phenotype MP:0000288 abnormal pericardium morphology 0.023637075487994208 -0.6147753435291119 1.0 6712 -Phenotype MP:0008245 abnormal alveolar macrophage morphology 0.023596355661630763 -0.6155133826803415 1.0 6713 -Phenotype MP:0011069 abnormal brain ependyma motile cilium physiology 0.02357298625929194 -0.6159369486777243 1.0 6714 -Phenotype MP:0001973 increased thermal nociceptive threshold 0.023567414310464274 -0.6160379391963665 1.0 6715 -Biological Process GO:0001709 cell fate determination 0.02356730129409368 -0.6160399875967081 1.0 6716 -Phenotype MP:0000511 abnormal intestinal mucosa morphology 0.023555346378321906 -0.6162566681839599 1.0 6717 -Biological Process GO:0021903 rostrocaudal neural tube patterning 0.023538240001666044 -0.6165667180254061 1.0 6718 -Biological Process GO:0048512 circadian behavior 0.02345666181348982 -0.6180453072566825 1.0 6719 -Phenotype MP:0001410 head bobbing 0.02343783968902824 -0.6183864547025968 1.0 6720 -Biological Process GO:0006664 glycolipid metabolic process 0.02342522379768963 -0.6186151153469828 1.0 6721 -Biological Process GO:0009611 response to wounding 0.02342069311080386 -0.6186972331898689 1.0 6722 -Phenotype MP:0004955 increased thymus weight 0.023414494984644874 -0.6188095730542083 1.0 6723 -Phenotype MP:0013486 decreased Paneth cell number 0.023403646304832715 -0.6190062033239216 1.0 6724 -Phenotype MP:0008034 enhanced lipolysis 0.023379759780729925 -0.6194391420554698 1.0 6725 -Biological Process GO:0030279 negative regulation of ossification 0.02337056683897476 -0.6196057623860608 1.0 6726 -Biological Process GO:0002822 regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains 0.023349207092104085 -0.6199929037581827 1.0 6727 -Phenotype MP:0011643 abnormal tendon collagen fibril morphology 0.023342238431559914 -0.6201192094125174 1.0 6728 -Biological Process GO:0071695 anatomical structure maturation 0.023325750507500742 -0.6204180499176207 1.0 6729 -Phenotype MP:0003186 abnormal redox activity 0.023325543040544683 -0.6204218102169596 1.0 6730 -Phenotype MP:0006282 abnormal spinal cord dorsal horn morphology 0.023317249828244235 -0.6205721231213557 1.0 6731 -Phenotype MP:0011121 decreased primordial ovarian follicle number 0.02331458385541174 -0.6206204433747117 1.0 6732 -Phenotype MP:0001125 abnormal oocyte morphology 0.023308671286730198 -0.6207276075637818 1.0 6733 -Biological Process GO:0002883 regulation of hypersensitivity 0.023218452500091136 -0.622362806007944 1.0 6734 -Phenotype MP:0010876 decreased bone volume 0.02316511890962447 -0.6233294672478206 1.0 6735 -Phenotype MP:0000443 abnormal snout morphology 0.02312738024590577 -0.624013473389961 1.0 6736 -Biological Process GO:1903008 organelle disassembly 0.0231247020193609 -0.6240620157395362 1.0 6737 -Biological Process GO:0008631 intrinsic apoptotic signaling pathway in response to oxidative stress 0.023114516565613363 -0.6242466251622687 1.0 6738 -Phenotype MP:0005039 hypoxia 0.023093846293357423 -0.6246212699374035 1.0 6739 -Biological Process GO:0046068 cGMP metabolic process 0.023085049608919328 -0.6247807081790693 1.0 6740 -Phenotype MP:0008730 fused phalanges 0.02307185671753864 -0.6250198268400862 1.0 6741 -Phenotype MP:0011733 fused somites 0.023051192825620626 -0.6253943559728028 1.0 6742 -Biological Process GO:0002520 immune system development 0.023028001884866756 -0.6258146873877121 1.0 6743 -Phenotype MP:0004536 short inner hair cell stereocilia 0.02301696330419012 -0.6260147595746769 1.0 6744 -Phenotype MP:0003565 abnormal glucagon secretion 0.023010984126841993 -0.6261231310332307 1.0 6745 -Phenotype MP:0001655 multifocal hepatic necrosis 0.022961828359587932 -0.6270140700175579 1.0 6746 -Phenotype MP:0013754 abnormal ocular surface morphology 0.022932990904568018 -0.6275367434355769 1.0 6747 -Phenotype MP:0010177 acanthocytosis 0.02293017183439816 -0.6275878385492163 1.0 6748 -Biological Process GO:0048103 somatic stem cell division 0.02290443848738999 -0.6280542505966227 1.0 6749 -Biological Process GO:0060538 skeletal muscle organ development 0.022895551142781523 -0.6282153320367294 1.0 6750 -Biological Process GO:0009191 ribonucleoside diphosphate catabolic process 0.022883589459705256 -0.6284321352800952 1.0 6751 -Biological Process GO:0043249 erythrocyte maturation 0.022872914337422334 -0.6286256198524173 1.0 6752 -Biological Process GO:0003323 type B pancreatic cell development 0.022871087151363434 -0.6286587372541471 1.0 6753 -Phenotype MP:0005135 increased thyroid-stimulating hormone level 0.02286447857643381 -0.6287785164248234 1.0 6754 -Phenotype MP:0002404 increased intestinal adenoma incidence 0.022837788899218725 -0.6292622617763531 1.0 6755 -Phenotype MP:0000040 absent middle ear ossicles 0.022825796749250893 -0.6294796172263661 1.0 6756 -Phenotype MP:0000832 abnormal thalamus morphology 0.022795790019908613 -0.6300234835203254 1.0 6757 -Biological Process GO:0048934 peripheral nervous system neuron differentiation 0.022793494170651574 -0.6300650953538803 1.0 6758 -Biological Process GO:0048935 peripheral nervous system neuron development 0.022793494170651574 -0.6300650953538803 1.0 6758 -Biological Process GO:0021955 central nervous system neuron axonogenesis 0.02278525811648724 -0.6302143722778699 1.0 6760 -Biological Process GO:0035458 cellular response to interferon-beta 0.022783288964624893 -0.6302500627829364 1.0 6761 -Phenotype MP:0031615 decreased muscle glycogen level 0.02277276050278798 -0.6304408891624134 1.0 6762 -Phenotype MP:0002888 abnormal NMDA-mediated synaptic currents 0.022755339445161393 -0.6307566425369363 1.0 6763 -Biological Process GO:0071697 ectodermal placode morphogenesis 0.0227454169135205 -0.630936486546214 1.0 6764 -Biological Process GO:0060788 ectodermal placode formation 0.0227454169135205 -0.630936486546214 1.0 6764 -Biological Process GO:2000193 positive regulation of fatty acid transport 0.022742190918189298 -0.6309949571014385 1.0 6766 -Phenotype MP:0002599 increased mean platelet volume 0.02272467860951255 -0.6313123643839867 1.0 6767 -Biological Process GO:0051225 spindle assembly 0.022720768647026546 -0.6313832317145287 1.0 6768 -Phenotype MP:0005503 abnormal tendon morphology 0.022711728601456538 -0.631547080830682 1.0 6769 -Phenotype MP:0010292 increased alimentary system tumor incidence 0.022669395094138234 -0.6323143676440124 1.0 6770 -Phenotype MP:0001353 increased aggression towards mice 0.022650799125016774 -0.6326514160671612 1.0 6771 -Phenotype MP:0013966 abnormal infrahyoid muscle morphology 0.022626408272870213 -0.6330934956491159 1.0 6772 -Phenotype MP:0002985 abnormal urine calcium level 0.022622285226110206 -0.6331682250918221 1.0 6773 -Phenotype MP:0001038 abnormal cholinergic neuron morphology 0.02261128904448806 -0.6333675288039435 1.0 6774 -Biological Process GO:0060998 regulation of dendritic spine development 0.022608559486262725 -0.6334170015305185 1.0 6775 -Biological Process GO:0071696 ectodermal placode development 0.022605123655566772 -0.6334792753120414 1.0 6776 -Biological Process GO:0070169 positive regulation of biomineral tissue development 0.022597477440314928 -0.6336178615173023 1.0 6777 -Phenotype MP:0006141 abnormal atrioventricular node conduction 0.0225827676973962 -0.633884472825554 1.0 6778 -Biological Process GO:0043576 regulation of respiratory gaseous exchange 0.02258000458825149 -0.633934553656197 1.0 6779 -Phenotype MP:0000917 obstructive hydrocephaly 0.02257631807344962 -0.6340013710397262 1.0 6780 -Biological Process GO:0099111 microtubule-based transport 0.022564243450225785 -0.6342202213019055 1.0 6781 -Phenotype MP:0030002 increased lung apoptosis 0.02255258287455708 -0.6344315670304597 1.0 6782 -Phenotype MP:0000473 abnormal stomach glandular epithelium morphology 0.022526342459340487 -0.6349071695932386 1.0 6783 -Phenotype MP:0030313 abnormal face development 0.022519495017610747 -0.6350312781794886 1.0 6784 -Phenotype MP:0005011 increased eosinophil cell number 0.02250584073660411 -0.6352787594402102 1.0 6785 -Phenotype MP:0004228 decreased cellular sensitivity to ionizing radiation 0.022505768061469533 -0.6352800766632788 1.0 6786 -Biological Process GO:0061157 mRNA destabilization 0.02250313959007666 -0.6353277172101346 1.0 6787 -Biological Process GO:0045214 sarcomere organization 0.02246679159344911 -0.635986517774274 1.0 6788 -Biological Process GO:0014908 myotube differentiation involved in skeletal muscle regeneration 0.0224203296493386 -0.6368286317236248 1.0 6789 -Biological Process GO:0010389 regulation of G2/M transition of mitotic cell cycle 0.022394933122167893 -0.6372889389751821 1.0 6790 -Biological Process GO:0060993 kidney morphogenesis 0.02232240904941718 -0.6386034240768352 1.0 6791 -Biological Process GO:0045823 positive regulation of heart contraction 0.022319283084146102 -0.6386600816061393 1.0 6792 -Biological Process GO:1903524 positive regulation of blood circulation 0.022319283084146102 -0.6386600816061393 1.0 6792 -Phenotype MP:0011024 abnormal branching involved in lung morphogenesis 0.022313401066588745 -0.6387666920618618 1.0 6794 -Phenotype MP:0004380 short frontal bone 0.022304459349305916 -0.6389287589964074 1.0 6795 -Phenotype MP:0004353 abnormal deltoid tuberosity morphology 0.022303543213915367 -0.6389453637770864 1.0 6796 -Phenotype MP:0013278 decreased fasting circulating glucose level 0.022292033182199633 -0.6391539809249663 1.0 6797 -Phenotype MP:0002736 abnormal nociception after inflammation 0.022271425991178373 -0.6395274823646535 1.0 6798 -Biological Process GO:0061333 renal tubule morphogenesis 0.022267718884860788 -0.6395946729655104 1.0 6799 -Phenotype MP:0004506 abnormal pubis morphology 0.022259190226304404 -0.6397492532887638 1.0 6800 -Biological Process GO:0003184 pulmonary valve morphogenesis 0.022253016058592756 -0.6398611589107766 1.0 6801 -Biological Process GO:0001823 mesonephros development 0.022252259560697096 -0.6398748702920539 1.0 6802 -Phenotype MP:0008805 decreased circulating amylase level 0.022236177584123218 -0.6401663530757659 1.0 6803 -Phenotype MP:0005591 decreased vasodilation 0.02223164746260553 -0.6402484606714623 1.0 6804 -Biological Process GO:0006096 glycolytic process 0.02220137600635841 -0.6407971250905024 1.0 6805 -Phenotype MP:0011107 embryonic lethality between somite formation and embryo turning, incomplete penetrance 0.022176231353517095 -0.6412528671674781 1.0 6806 -Biological Process GO:0006775 fat-soluble vitamin metabolic process 0.022165033792894806 -0.6414558208358889 1.0 6807 -Biological Process GO:0021984 adenohypophysis development 0.02216292416886645 -0.641494057372396 1.0 6808 -Phenotype MP:0002907 abnormal parturition 0.022144263608910086 -0.6418322764922109 1.0 6809 -Biological Process GO:1902882 regulation of response to oxidative stress 0.02213034134916525 -0.6420846148168777 1.0 6810 -Biological Process GO:0008209 androgen metabolic process 0.022121382844284 -0.6422469860234696 1.0 6811 -Biological Process GO:0072332 intrinsic apoptotic signaling pathway by p53 class mediator 0.022115987229919032 -0.6423447805133268 1.0 6812 -Phenotype MP:0009175 abnormal pancreatic beta cell differentiation 0.02211280525553816 -0.6424024531971524 1.0 6813 -Phenotype MP:0031265 increased susceptibility to hepatic steatosis 0.022112478085134057 -0.6424083830988468 1.0 6814 -Biological Process GO:0003309 type B pancreatic cell differentiation 0.022080348074465683 -0.6429907334652515 1.0 6815 -Phenotype MP:0000060 delayed bone ossification 0.022079456382514184 -0.6430068952132209 1.0 6816 -Phenotype MP:0006359 absent startle reflex 0.022041499391340036 -0.6436948584991976 1.0 6817 -Phenotype MP:0004551 decreased tracheal cartilage ring number 0.022027545602016807 -0.6439477682915095 1.0 6818 -Phenotype MP:0011481 anterior iris synechia 0.02202082808899042 -0.6440695219445856 1.0 6819 -Biological Process GO:0006631 fatty acid metabolic process 0.022003009745106494 -0.6443924760573814 1.0 6820 -Biological Process GO:1904994 regulation of leukocyte adhesion to vascular endothelial cell 0.021982747798571234 -0.6447597200060582 1.0 6821 -Phenotype MP:0030026 small Meckel's cartilage 0.021982690352865486 -0.6447607611986098 1.0 6822 -Phenotype MP:0001394 circling 0.02196993005389014 -0.6449920392040989 1.0 6823 -Phenotype MP:0000109 abnormal parietal bone morphology 0.021949260304801377 -0.6453666744969275 1.0 6824 -Biological Process GO:0060837 blood vessel endothelial cell differentiation 0.02194349248324179 -0.6454712151717891 1.0 6825 -Biological Process GO:0072088 nephron epithelium morphogenesis 0.021933838309378673 -0.6456461952471009 1.0 6826 -Phenotype MP:0003366 abnormal circulating glucocorticoid level 0.021916723914413794 -0.6459563904188815 1.0 6827 -Phenotype MP:0008475 intermingled spleen red and white pulp 0.021864744428967575 -0.6468985087613733 1.0 6828 -Biological Process GO:0007143 female meiotic nuclear division 0.021853127954461926 -0.6471090551646882 1.0 6829 -Biological Process GO:0021587 cerebellum morphogenesis 0.021837639187840874 -0.6473897861302027 1.0 6830 -Phenotype MP:0009235 small sperm head 0.021825441290479253 -0.6476108707128139 1.0 6831 -Phenotype MP:0002717 abnormal male preputial gland morphology 0.02181626374835821 -0.647777211927949 1.0 6832 -Phenotype MP:0003459 increased fear-related response 0.021787343347568267 -0.6483013887223616 1.0 6833 -Biological Process GO:0045683 negative regulation of epidermis development 0.02175432099834862 -0.6488999125562342 1.0 6834 -Biological Process GO:0045605 negative regulation of epidermal cell differentiation 0.02175432099834862 -0.6488999125562342 1.0 6834 -Biological Process GO:0050905 neuromuscular process 0.021733387528115378 -0.6492793277449272 1.0 6836 -Biological Process GO:0031110 regulation of microtubule polymerization or depolymerization 0.02172241447899237 -0.6494782121848771 1.0 6837 -Phenotype MP:0004167 abnormal cingulate gyrus morphology 0.021696783334317238 -0.6499427718343274 1.0 6838 -Biological Process GO:0072171 mesonephric tubule morphogenesis 0.02169205886569392 -0.6500284019345552 1.0 6839 -Biological Process GO:0014075 response to amine 0.021679554137081114 -0.650255047775561 1.0 6840 -Phenotype MP:0008859 abnormal hair cycle catagen phase 0.021659161721806264 -0.6506246564454664 1.0 6841 -Phenotype MP:0030088 microdontia 0.021610237831134693 -0.6515113927105923 1.0 6842 -Phenotype MP:0010413 complete atrioventricular septal defect 0.02153409139336815 -0.6528915324930359 1.0 6843 -Phenotype MP:0005108 abnormal ulna morphology 0.021531579719928473 -0.6529370560990807 1.0 6844 -Phenotype MP:0004830 short incisors 0.021525684217157837 -0.6530439109717434 1.0 6845 -Phenotype MP:0009783 abnormal melanoblast morphology 0.0215215754833733 -0.6531183809944763 1.0 6846 -Phenotype MP:0005249 abnormal palatine bone morphology 0.02144902760632106 -0.6544332975445925 1.0 6847 -Biological Process GO:0034643 establishment of mitochondrion localization, microtubule-mediated 0.021418657710352562 -0.6549837461649638 1.0 6848 -Biological Process GO:0047497 mitochondrion transport along microtubule 0.021418657710352562 -0.6549837461649638 1.0 6848 -Biological Process GO:0031279 regulation of cyclase activity 0.021406972880004482 -0.6551955315049942 1.0 6850 -Biological Process GO:0051339 regulation of lyase activity 0.021406972880004482 -0.6551955315049942 1.0 6850 -Phenotype MP:0002840 abnormal lens fiber morphology 0.021400977569357105 -0.6553041953765455 1.0 6852 -Biological Process GO:0045191 regulation of isotype switching 0.021381398959215314 -0.6556590539823345 1.0 6853 -Biological Process GO:0016925 protein sumoylation 0.02135744553086294 -0.6560932053407523 1.0 6854 -Biological Process GO:0046390 ribose phosphate biosynthetic process 0.021348251137554453 -0.6562598519804728 1.0 6855 -Phenotype MP:0012296 impaired discrimination learning 0.02133235487093965 -0.6565479688063008 1.0 6856 -Biological Process GO:0042640 anagen 0.02131413418369832 -0.6568782153163519 1.0 6857 -Biological Process GO:0061436 establishment of skin barrier 0.021283227606883837 -0.6574383911755509 1.0 6858 -Biological Process GO:0045762 positive regulation of adenylate cyclase activity 0.021278703546477762 -0.6575203889147457 1.0 6859 -Biological Process GO:0050965 detection of temperature stimulus involved in sensory perception of pain 0.021260188974815852 -0.6578559620243355 1.0 6860 -Phenotype MP:0003122 maternal imprinting 0.021231226097668032 -0.6583809086947009 1.0 6861 -Biological Process GO:0002204 somatic recombination of immunoglobulin genes involved in immune response 0.02123102814284017 -0.6583844965885154 1.0 6862 -Biological Process GO:0002208 somatic diversification of immunoglobulins involved in immune response 0.02123102814284017 -0.6583844965885154 1.0 6862 -Biological Process GO:0045190 isotype switching 0.02123102814284017 -0.6583844965885154 1.0 6862 -Phenotype MP:0002943 abnormal lactate dehydrogenase level 0.021214716790509125 -0.6586801367644425 1.0 6865 -Biological Process GO:0015807 L-amino acid transport 0.02120426568048417 -0.6588695611569578 1.0 6866 -Phenotype MP:0001454 abnormal cued conditioning behavior 0.02120363528342195 -0.6588809869844794 1.0 6867 -Biological Process GO:0071897 DNA biosynthetic process 0.02119858202678182 -0.6589725763053262 1.0 6868 -Phenotype MP:0003808 increased atrioventricular cushion size 0.021184515899397183 -0.6592275222037539 1.0 6869 -Phenotype MP:0001750 increased circulating follicle stimulating hormone level 0.021178617167406877 -0.6593344356054123 1.0 6870 -Phenotype MP:0009389 abnormal extracutaneous pigmentation 0.02116441697896909 -0.6595918113350724 1.0 6871 -Biological Process GO:0090659 walking behavior 0.021160952500340557 -0.659654604354955 1.0 6872 -Biological Process GO:0090090 negative regulation of canonical Wnt signaling pathway 0.02115034055149345 -0.6598469439207013 1.0 6873 -Phenotype MP:0030973 impaired gluconeogenesis 0.02113904617774598 -0.6600516523086953 1.0 6874 -Phenotype MP:0009239 short sperm flagellum 0.02112123526654819 -0.6603744717054608 1.0 6875 -Phenotype MP:0002579 disorganized secondary lens fibers 0.021110168253666406 -0.6605750592207664 1.0 6876 -Phenotype MP:0008839 absent acrosome 0.021100292979051805 -0.6607540467053806 1.0 6877 -Phenotype MP:0001987 alcohol preference 0.021022385418305922 -0.6621661065087319 1.0 6878 -Phenotype MP:0013550 abnormal secondary palate morphology 0.02101769018865074 -0.6622512066581925 1.0 6879 -Phenotype MP:0004542 impaired acrosome reaction 0.021015477679832695 -0.6622913079620532 1.0 6880 -Biological Process GO:1904996 positive regulation of leukocyte adhesion to vascular endothelial cell 0.02097610069602096 -0.6630050083460137 1.0 6881 -Phenotype MP:0002583 absent extraembryonic ectoderm 0.020969298691383753 -0.6631282933935553 1.0 6882 -Phenotype MP:0001324 abnormal eye pigmentation 0.020967458682598084 -0.6631616432047827 1.0 6883 -Biological Process GO:0060119 inner ear receptor cell development 0.020961649502793 -0.6632669334900215 1.0 6884 -Biological Process GO:0043388 positive regulation of DNA binding 0.020956574264986427 -0.6633589212153527 1.0 6885 -Phenotype MP:0009732 ventricular premature beat 0.020954658290669337 -0.6633936478874691 1.0 6886 -Phenotype MP:0012515 abnormal heart apex morphology 0.020950834303485877 -0.6634629569319136 1.0 6887 -Biological Process GO:0022604 regulation of cell morphogenesis 0.020926715895454362 -0.6639000985158121 1.0 6888 -Phenotype MP:0030266 small vomer bone 0.020884826363807174 -0.6646593383540755 1.0 6889 -Biological Process GO:0043488 regulation of mRNA stability 0.02088401220714131 -0.6646740947896576 1.0 6890 -Biological Process GO:0032703 negative regulation of interleukin-2 production 0.02085635323194457 -0.6651754084837751 1.0 6891 -Phenotype MP:0030079 small incisors 0.020838784977973313 -0.665493829764205 1.0 6892 -Phenotype MP:0009951 abnormal olfactory bulb mitral cell layer morphology 0.020815428780491474 -0.6659171564260525 1.0 6893 -Biological Process GO:0009181 purine ribonucleoside diphosphate catabolic process 0.020792500558049598 -0.6663327261212465 1.0 6894 -Biological Process GO:0009137 purine nucleoside diphosphate catabolic process 0.020792500558049598 -0.6663327261212465 1.0 6894 -Phenotype MP:0009412 skeletal muscle fiber degeneration 0.02073131505502357 -0.6674417017911778 1.0 6896 -Phenotype MP:0009325 necrospermia 0.02072985773305036 -0.6674681154763094 1.0 6897 -Phenotype MP:0009166 abnormal pancreatic islet number 0.02072805329756855 -0.6675008205281324 1.0 6898 -Phenotype MP:0004969 pale kidney 0.020718655461054003 -0.6676711545374842 1.0 6899 -Phenotype MP:0002695 abnormal circulating glucagon level 0.02068384998509898 -0.668301997206181 1.0 6900 -Phenotype MP:0004927 abnormal epididymis weight 0.020646171355229614 -0.6689849152461569 1.0 6901 -Phenotype MP:0003081 abnormal soleus morphology 0.020636109789961 -0.6691672792136407 1.0 6902 -Phenotype MP:0010279 increased gastrointestinal tumor incidence 0.020608085968093603 -0.6696752056846581 1.0 6903 -Phenotype MP:0008221 abnormal hippocampal commissure morphology 0.020578879565969044 -0.6702045661991674 1.0 6904 -Phenotype MP:0001524 impaired limb coordination 0.0205632410959119 -0.6704880105111467 1.0 6905 -Phenotype MP:0009358 environmentally induced seizures 0.020531045542285575 -0.6710715488312676 1.0 6906 -Phenotype MP:0004091 abnormal Z line morphology 0.020527846642717007 -0.6711295282809191 1.0 6907 -Biological Process GO:0046031 ADP metabolic process 0.020518136167221757 -0.6713055288126646 1.0 6908 -Biological Process GO:0035137 hindlimb morphogenesis 0.020516235931764437 -0.6713399702209245 1.0 6909 -Biological Process GO:0031290 retinal ganglion cell axon guidance 0.020507810369931767 -0.6714926819355599 1.0 6910 -Phenotype MP:0010948 abnormal double-strand DNA break repair 0.02050494601859254 -0.6715445977618298 1.0 6911 -Biological Process GO:0045830 positive regulation of isotype switching 0.020495325376536533 -0.6717189700794798 1.0 6912 -Biological Process GO:0007519 skeletal muscle tissue development 0.020489816706801167 -0.6718188136765425 1.0 6913 -Phenotype MP:0004044 aortic dissection 0.02047198958742924 -0.6721419268433987 1.0 6914 -Phenotype MP:0004030 induced chromosome breakage 0.020468646810617885 -0.6722025140408632 1.0 6915 -Biological Process GO:1990849 vacuolar localization 0.02046415399819712 -0.6722839454162345 1.0 6916 -Biological Process GO:0032418 lysosome localization 0.02046415399819712 -0.6722839454162345 1.0 6916 -Phenotype MP:0012312 impaired avoidance learning behavior 0.020453543240767313 -0.6724762633877676 1.0 6918 -Phenotype MP:0020946 increased susceptibility to Orthomyxoviridae infection 0.020411981342767116 -0.6732295649281468 1.0 6919 -Biological Process GO:0043543 protein acylation 0.020367894530112562 -0.6740286300690825 1.0 6920 -Phenotype MP:0006035 abnormal mitochondrial morphology 0.02036164371361593 -0.6741419249358261 1.0 6921 -Phenotype MP:0004133 heterotaxia 0.020349587903881527 -0.6743604342070678 1.0 6922 -Phenotype MP:0006356 abnormal third pharyngeal arch artery morphology 0.02034086875718044 -0.6745184670919157 1.0 6923 -Phenotype MP:0001380 reduced male mating frequency 0.020328341244807757 -0.67474552588426 1.0 6924 -Phenotype MP:0001006 abnormal retina cone cell morphology 0.02029974601214446 -0.6752638090678783 1.0 6925 -Phenotype MP:0005431 decreased oocyte number 0.02027676007295376 -0.6756804248682283 1.0 6926 -Biological Process GO:0008593 regulation of Notch signaling pathway 0.020248255396653092 -0.6761970667349015 1.0 6927 -Biological Process GO:0034248 regulation of amide metabolic process 0.020227930737950706 -0.6765654473297463 1.0 6928 -Biological Process GO:0021511 spinal cord patterning 0.02021155306846245 -0.6768622894916049 1.0 6929 -Phenotype MP:0011743 abnormal Golgi apparatus morphology 0.02019107478687565 -0.677233454472174 1.0 6930 -Biological Process GO:0030534 adult behavior 0.020186599775099068 -0.6773145632142362 1.0 6931 -Biological Process GO:0007622 rhythmic behavior 0.020173456457473704 -0.6775527833603141 1.0 6932 -Phenotype MP:0003718 maternal effect 0.02015058344525933 -0.6779673523805768 1.0 6933 -Biological Process GO:0048255 mRNA stabilization 0.020141894818352823 -0.6781248320999202 1.0 6934 -Biological Process GO:0014902 myotube differentiation 0.020045776485078992 -0.6798669587110178 1.0 6935 -Phenotype MP:0003722 absent ureter 0.02004297131562016 -0.6799178018768989 1.0 6936 -Phenotype MP:0004326 abnormal vestibular hair cell number 0.01999197037866085 -0.6808421842131448 1.0 6937 -Biological Process GO:0006735 NADH regeneration 0.019960120222542233 -0.6814194622687658 1.0 6938 -Biological Process GO:0061621 canonical glycolysis 0.019960120222542233 -0.6814194622687658 1.0 6938 -Biological Process GO:0061718 glucose catabolic process to pyruvate 0.019960120222542233 -0.6814194622687658 1.0 6938 -Phenotype MP:0000465 gastrointestinal hemorrhage 0.019910420583273858 -0.6823202588304864 1.0 6941 -Phenotype MP:0009570 abnormal right lung morphology 0.019877777848209877 -0.6829119022295865 1.0 6942 -Phenotype MP:0013873 abnormal ductus venosus morphology 0.01987543663397484 -0.6829543362947873 1.0 6943 -Phenotype MP:0004023 abnormal chromosome number 0.019831678840293687 -0.6837474380290597 1.0 6944 -Biological Process GO:0051146 striated muscle cell differentiation 0.019828127070991686 -0.6838118131758891 1.0 6945 -Phenotype MP:0004534 decreased inner hair cell stereocilia number 0.019796856554115116 -0.684378585379879 1.0 6946 -Phenotype MP:0008907 decreased total fat pad weight 0.019782490112405737 -0.6846389744186422 1.0 6947 -Phenotype MP:0020500 persistent trigeminal artery 0.019773600430991967 -0.684800098212903 1.0 6948 -Phenotype MP:0003463 abnormal single cell response 0.019749499812167226 -0.6852369173707933 1.0 6949 -Biological Process GO:0097401 synaptic vesicle lumen acidification 0.01974277766911381 -0.6853587549422335 1.0 6950 -Biological Process GO:0019320 hexose catabolic process 0.019657804088766828 -0.686898885014412 1.0 6951 -Phenotype MP:0004910 decreased seminal vesicle weight 0.01960560373523268 -0.6878450065492233 1.0 6952 -Phenotype MP:0013297 abnormal susceptibility to colitis induced morbidity/mortality 0.019596197645372015 -0.6880154901489124 1.0 6953 -Phenotype MP:0021166 delayed palatal shelf elevation 0.019579082905364698 -0.688325691574522 1.0 6954 -Phenotype MP:0003986 small cochlear ganglion 0.01956856930592832 -0.6885162485758003 1.0 6955 -Phenotype MP:0008531 increased chemical nociceptive threshold 0.01953351647304291 -0.6891515745420762 1.0 6956 -Phenotype MP:0008058 abnormal DNA repair 0.01949580535667017 -0.6898350813937814 1.0 6957 -Phenotype MP:0013696 increased granulocyte monocyte progenitor cell number 0.019492180682298854 -0.689900777931203 1.0 6958 -Phenotype MP:0012157 rostral body truncation 0.019466589472383 -0.6903646137706945 1.0 6959 -Phenotype MP:0020152 abnormal oocyte number 0.01945609912080326 -0.6905547494089683 1.0 6960 -Biological Process GO:0021513 spinal cord dorsal/ventral patterning 0.019444197472906488 -0.6907704645260606 1.0 6961 -Phenotype MP:0013161 enhanced muscle regeneration 0.019435252618676402 -0.690932588317182 1.0 6962 -Biological Process GO:0060828 regulation of canonical Wnt signaling pathway 0.019343801774819314 -0.6925901175653938 1.0 6963 -Phenotype MP:0001932 abnormal spermiogenesis 0.019333481529225538 -0.6927771700648453 1.0 6964 -Phenotype MP:0004377 small frontal bone 0.019329855805722884 -0.692842885617574 1.0 6965 -Biological Process GO:0030193 regulation of blood coagulation 0.01932467302362384 -0.6929368225628656 1.0 6966 -Phenotype MP:0031204 hindlimb paresis 0.019314629844675357 -0.6931188532817746 1.0 6967 -Biological Process GO:0002864 regulation of acute inflammatory response to antigenic stimulus 0.019298720468570396 -0.6934072077146324 1.0 6968 -Biological Process GO:0006360 transcription by RNA polymerase I 0.01929289904300424 -0.6935127199519745 1.0 6969 -Phenotype MP:0005186 increased circulating progesterone level 0.019280466022119525 -0.6937380661039713 1.0 6970 -Biological Process GO:0043414 macromolecule methylation 0.019279047886858414 -0.6937637695373576 1.0 6971 -Phenotype MP:0004782 abnormal surfactant physiology 0.019259707958624528 -0.6941143020787094 1.0 6972 -Biological Process GO:0055064 chloride ion homeostasis 0.019117041264985035 -0.6967001089174378 1.0 6973 -Phenotype MP:0009310 increased large intestine adenocarcinoma incidence 0.019105977809003027 -0.6969006319646077 1.0 6974 -Biological Process GO:0002313 mature B cell differentiation involved in immune response 0.01903790256926252 -0.6981344828093878 1.0 6975 -Phenotype MP:0010454 abnormal truncus arteriosus septation 0.018999798875833918 -0.6988251050459798 1.0 6976 -Phenotype MP:0012676 dilated brain ventricle 0.01897518272752241 -0.6992712680783123 1.0 6977 -Phenotype MP:0001523 impaired righting response 0.018944517732090493 -0.6998270653206442 1.0 6978 -Phenotype MP:0012132 abnormal midbrain-hindbrain boundary morphology 0.018918344152900834 -0.7003014564930761 1.0 6979 -Phenotype MP:0005122 increased circulating thyroid-stimulating hormone level 0.018902548547324205 -0.700587748856626 1.0 6980 -Biological Process GO:0033198 response to ATP 0.018865155922876298 -0.701265483102432 1.0 6981 -Phenotype MP:0001344 blepharoptosis 0.018855115077462403 -0.7014474715264679 1.0 6982 -Biological Process GO:0006027 glycosaminoglycan catabolic process 0.018837691412995294 -0.7017632721494823 1.0 6983 -Phenotype MP:0011580 abnormal triglyceride lipase activity 0.018836778503020235 -0.7017798184701156 1.0 6984 -Phenotype MP:0011932 abnormal endocrine pancreas development 0.018832735408338408 -0.7018530987965267 1.0 6985 -Phenotype MP:0002660 abnormal caput epididymis morphology 0.018813459557319945 -0.7022024699504683 1.0 6986 -Biological Process GO:0042692 muscle cell differentiation 0.01880540358417937 -0.7023484829399621 1.0 6987 -Phenotype MP:0013971 blood in lymph vessels 0.01879973937143753 -0.7024511457245983 1.0 6988 -Biological Process GO:0009152 purine ribonucleotide biosynthetic process 0.018794141467502468 -0.702552606674653 1.0 6989 -Biological Process GO:0031644 regulation of nervous system process 0.01878337779262418 -0.7027476962460176 1.0 6990 -Phenotype MP:0004398 cochlear inner hair cell degeneration 0.018747654810452263 -0.7033951685413616 1.0 6991 -Phenotype MP:0003406 failure of zygotic cell division 0.01873466041158811 -0.7036306895630585 1.0 6992 -Biological Process GO:0002637 regulation of immunoglobulin production 0.018699776697113646 -0.7042629502901225 1.0 6993 -Phenotype MP:0006092 abnormal olfactory sensory neuron morphology 0.018653814000884728 -0.7050960154660455 1.0 6994 -Phenotype MP:0001314 cornea opacity 0.018606032765158376 -0.7059620413264072 1.0 6995 -Biological Process GO:0060218 hematopoietic stem cell differentiation 0.018605795526290714 -0.705966341236013 1.0 6996 -Biological Process GO:0030432 peristalsis 0.01857135999336368 -0.7065904787572973 1.0 6997 -Biological Process GO:0071674 mononuclear cell migration 0.018546745769294493 -0.7070366069131018 1.0 6998 -Biological Process GO:0006396 RNA processing 0.01854649300671385 -0.7070411881870693 1.0 6999 -Biological Process GO:0061469 regulation of type B pancreatic cell proliferation 0.018541321057439775 -0.7071349287894572 1.0 7000 -Biological Process GO:0043374 CD8-positive, alpha-beta T cell differentiation 0.018483926862546407 -0.708175187716559 1.0 7001 -Biological Process GO:0060042 retina morphogenesis in camera-type eye 0.018480329509953597 -0.7082403890519128 1.0 7002 -Phenotype MP:0005642 decreased mean corpuscular hemoglobin concentration 0.018478497802811633 -0.708273588397418 1.0 7003 -Phenotype MP:0009908 protruding tongue 0.018475132898002733 -0.7083345766606529 1.0 7004 -Phenotype MP:0011043 abnormal lung elastance 0.01845026814076156 -0.7087852456828145 1.0 7005 -Phenotype MP:0003656 abnormal erythrocyte physiology 0.018433181568725976 -0.709094936569264 1.0 7006 -Biological Process GO:0030214 hyaluronan catabolic process 0.018402547259190327 -0.7096501776355298 1.0 7007 -Phenotype MP:0002812 spherocytosis 0.018395166903803606 -0.7097839451810192 1.0 7008 -Phenotype MP:0004777 abnormal phospholipid level 0.018377056281104975 -0.710112196792051 1.0 7009 -Phenotype MP:0000953 abnormal oligodendrocyte morphology 0.018355579214964557 -0.7105014645537477 1.0 7010 -Biological Process GO:0035264 multicellular organism growth 0.0183506903179107 -0.7105900748881797 1.0 7011 -Biological Process GO:1901160 primary amino compound metabolic process 0.018262255150808482 -0.7121929455655843 1.0 7012 -Biological Process GO:0048715 negative regulation of oligodendrocyte differentiation 0.018216456598652564 -0.7130230356612298 1.0 7013 -Phenotype MP:0002842 increased systemic arterial blood pressure 0.018206487368316093 -0.7132037260755324 1.0 7014 -Biological Process GO:0001976 nervous system process involved in regulation of systemic arterial blood pressure 0.018203912059810867 -0.7132504030551047 1.0 7015 -Phenotype MP:0008995 early reproductive senescence 0.018195480370873374 -0.713403225822356 1.0 7016 -Biological Process GO:0090329 regulation of DNA-templated DNA replication 0.01816388483242637 -0.7139758889808366 1.0 7017 -Phenotype MP:0001127 small ovary 0.0181635634390096 -0.7139817141757283 1.0 7018 -Phenotype MP:0031443 abnormal tongue position 0.018159389562734773 -0.714057364893777 1.0 7019 -Phenotype MP:0008878 abnormal DNA methylation during gametogenesis 0.018134915029903054 -0.714500961172323 1.0 7020 -Phenotype MP:0008329 decreased somatotroph cell number 0.018119793632733083 -0.7147750336360197 1.0 7021 -Phenotype MP:0008392 decreased primordial germ cell number 0.018078354418294307 -0.7155261115600521 1.0 7022 -Phenotype MP:0002635 reduced sensorimotor gating 0.018058720194447875 -0.7158819781537192 1.0 7023 -Phenotype MP:0003702 abnormal chromosome morphology 0.01804583137772342 -0.7161155855191035 1.0 7024 -Biological Process GO:0009185 ribonucleoside diphosphate metabolic process 0.018038393763860294 -0.716250390863648 1.0 7025 -Phenotype MP:0000493 rectal prolapse 0.01803066352237881 -0.7163905000284286 1.0 7026 -Phenotype MP:0000439 enlarged cranium 0.018017710372429052 -0.7166252734213537 1.0 7027 -Biological Process GO:0030212 hyaluronan metabolic process 0.01797723037835075 -0.7173589656577762 1.0 7028 -Phenotype MP:0013298 increased susceptibility to colitis induced morbidity/mortality 0.017955126778251285 -0.7177595892289802 1.0 7029 -Phenotype MP:0004796 increased anti-histone antibody level 0.01795440558181527 -0.7177726607779784 1.0 7030 -Phenotype MP:0001289 persistence of hyaloid vascular system 0.017943160231114863 -0.7179764806325163 1.0 7031 -Biological Process GO:0031113 regulation of microtubule polymerization 0.017925325865113417 -0.7182997251431619 1.0 7032 -Phenotype MP:0009006 prolonged estrous cycle 0.01791008494177293 -0.7185759639960925 1.0 7033 -Biological Process GO:1901222 regulation of non-canonical NF-kappaB signal transduction 0.01788842659945944 -0.7189685173541401 1.0 7034 -Biological Process GO:0002279 mast cell activation involved in immune response 0.017864681844645625 -0.7193988865441394 1.0 7035 -Biological Process GO:0043303 mast cell degranulation 0.017864681844645625 -0.7193988865441394 1.0 7035 -Biological Process GO:0048333 mesodermal cell differentiation 0.017861012018093092 -0.7194654014563057 1.0 7037 -Biological Process GO:1901615 organic hydroxy compound metabolic process 0.017856582780343855 -0.7195456805527798 1.0 7038 -Phenotype MP:0003144 decreased otolith number 0.017822338351267564 -0.7201663543529141 1.0 7039 -Biological Process GO:0035315 hair cell differentiation 0.017788896263393417 -0.7207724858705117 1.0 7040 -Biological Process GO:0033044 regulation of chromosome organization 0.01774428860411492 -0.7215809912579952 1.0 7041 -Phenotype MP:0010752 impaired mucociliary clearance 0.017731165340031496 -0.7218188479374184 1.0 7042 -Phenotype MP:0009395 increased nucleated erythrocyte cell number 0.01768336173265528 -0.7226852792797025 1.0 7043 -Phenotype MP:0004029 spontaneous chromosome breakage 0.017671566642634806 -0.7228990630554408 1.0 7044 -Biological Process GO:0002763 positive regulation of myeloid leukocyte differentiation 0.01763299410374919 -0.7235981830272654 1.0 7045 -Biological Process GO:0043124 negative regulation of canonical NF-kappaB signal transduction 0.017627976689031155 -0.7236891227200533 1.0 7046 -Phenotype MP:0020471 abnormal circadian behavior persistence 0.017620135538394255 -0.7238312420922988 1.0 7047 -Phenotype MP:0013428 abnormal memory CD4-positive, CD25-positive, alpha-beta regulatory T cell number 0.017611348551331174 -0.7239905045708767 1.0 7048 -Phenotype MP:0010067 increased red blood cell distribution width 0.0175686513579264 -0.724764383125738 1.0 7049 -Biological Process GO:0072078 nephron tubule morphogenesis 0.01754755254455609 -0.7251467951275179 1.0 7050 -Phenotype MP:0009897 decreased maxillary shelf size 0.01751179635613731 -0.7257948692798059 1.0 7051 -Phenotype MP:0001940 testis hypoplasia 0.01749959724774708 -0.7260159758120814 1.0 7052 -Phenotype MP:0000168 abnormal bone marrow development 0.017479548570522363 -0.7263793542948416 1.0 7053 -Phenotype MP:0002653 abnormal ependyma morphology 0.017470343509848663 -0.726546194278539 1.0 7054 -Phenotype MP:0011997 abnormal retina outer nuclear layer thickness 0.017470242095870114 -0.726548032387719 1.0 7055 -Phenotype MP:0003806 abnormal nucleotide metabolism 0.017457546724497397 -0.7267781335926907 1.0 7056 -Phenotype MP:0009299 decreased mesenteric fat pad weight 0.017451135093322523 -0.7268943431950614 1.0 7057 -Phenotype MP:0004321 short sternum 0.01744787946174864 -0.7269533509015791 1.0 7058 -Biological Process GO:0014821 phasic smooth muscle contraction 0.0174466807494158 -0.7269750773358915 1.0 7059 -Biological Process GO:1903509 liposaccharide metabolic process 0.017445451599532147 -0.7269973554450555 1.0 7060 -Phenotype MP:0010912 herniated liver 0.017434785015524867 -0.7271906852627466 1.0 7061 -Phenotype MP:0002329 abnormal blood gas level 0.01743205763397815 -0.7272401185374332 1.0 7062 -Biological Process GO:0046365 monosaccharide catabolic process 0.017427221787389202 -0.7273277673422225 1.0 7063 -Phenotype MP:0000826 abnormal third ventricle morphology 0.01742331252525886 -0.7273986219789506 1.0 7064 -Phenotype MP:0009016 abnormal estrus 0.017398386882873984 -0.7278503945328262 1.0 7065 -Phenotype MP:0013877 abnormal ductus venosus valve morphology 0.017390515857939826 -0.7279930553710593 1.0 7066 -Phenotype MP:0000678 abnormal parathyroid gland morphology 0.01737286911106206 -0.7283128993205737 1.0 7067 -Biological Process GO:2000406 positive regulation of T cell migration 0.01736588116268567 -0.7284395545632194 1.0 7068 -Phenotype MP:0011395 decreased fetal cardiomyocyte proliferation 0.017288066461691343 -0.7298499313011368 1.0 7069 -Phenotype MP:0004716 abnormal cochlear nerve morphology 0.017279935321721007 -0.7299973066752034 1.0 7070 -Phenotype MP:0010902 abnormal pulmonary alveolar sac morphology 0.017249565525761956 -0.7305477534829224 1.0 7071 -Biological Process GO:0007059 chromosome segregation 0.017243855087326176 -0.7306512540995184 1.0 7072 -Biological Process GO:0072079 nephron tubule formation 0.017232769388526692 -0.730852180293548 1.0 7073 -Biological Process GO:0045598 regulation of fat cell differentiation 0.017222099558736992 -0.7310455689404315 1.0 7074 -Phenotype MP:0000642 enlarged adrenal glands 0.017203849406233318 -0.7313763495027895 1.0 7075 -Phenotype MP:0011080 increased macrophage apoptosis 0.017164741219331425 -0.7320851779935985 1.0 7076 -Biological Process GO:0046686 response to cadmium ion 0.017116143840183673 -0.7329659962991105 1.0 7077 -Biological Process GO:0030902 hindbrain development 0.017097901382049696 -0.7332966374024731 1.0 7078 -Phenotype MP:0002874 decreased hemoglobin content 0.017072906642356833 -0.7337496623319871 1.0 7079 -Biological Process GO:0072528 pyrimidine-containing compound biosynthetic process 0.01706996800318894 -0.7338029246111012 1.0 7080 -Biological Process GO:0015812 gamma-aminobutyric acid transport 0.01703338476028282 -0.7344659889695458 1.0 7081 -Biological Process GO:0050654 chondroitin sulfate proteoglycan metabolic process 0.016991470133056463 -0.7352256836604353 1.0 7082 -Phenotype MP:0006093 arteriovenous malformation 0.016985995367984952 -0.7353249127418783 1.0 7083 -Phenotype MP:0002668 abnormal circulating potassium level 0.01695992305482774 -0.7357974684866251 1.0 7084 -Biological Process GO:0050849 negative regulation of calcium-mediated signaling 0.016858749784882887 -0.7376312148688116 1.0 7085 -Phenotype MP:0010728 fusion of atlas and occipital bones 0.016843174108909342 -0.7379135210499023 1.0 7086 -Phenotype MP:0000553 absent radius 0.01679440892597983 -0.7387973807672208 1.0 7087 -Phenotype MP:0013519 decreased CD4-positive NK T cell number 0.01677277421137413 -0.7391895058775337 1.0 7088 -Phenotype MP:0031152 subcutaneous hemorrhage 0.016736001575602955 -0.7398560029458365 1.0 7089 -Biological Process GO:0009134 nucleoside diphosphate catabolic process 0.016733779971131457 -0.7398962691066958 1.0 7090 -Biological Process GO:0033559 unsaturated fatty acid metabolic process 0.016724829925687246 -0.7400584869875914 1.0 7091 -Biological Process GO:0045445 myoblast differentiation 0.016692757085957077 -0.7406398011415541 1.0 7092 -Biological Process GO:0046032 ADP catabolic process 0.016644488362383636 -0.7415146626269424 1.0 7093 -Phenotype MP:0005307 head tossing 0.01662304243754953 -0.7419033659583523 1.0 7094 -Phenotype MP:0014178 increased brain apoptosis 0.016591860189111962 -0.7424685383135801 1.0 7095 -Biological Process GO:0016052 carbohydrate catabolic process 0.016444231987982616 -0.7451442715371596 1.0 7096 -Phenotype MP:0020427 increased hepatocyte karyomegaly 0.01643810159930259 -0.7452553836725044 1.0 7097 -Biological Process GO:0006479 protein methylation 0.016410358633039746 -0.7457582196888093 1.0 7098 -Biological Process GO:0008213 protein alkylation 0.016410358633039746 -0.7457582196888093 1.0 7098 -Phenotype MP:0005469 abnormal thyroxine level 0.016404493815391996 -0.7458645183994234 1.0 7100 -Phenotype MP:0000752 dystrophic muscle 0.016384276651179586 -0.7462309506769684 1.0 7101 -Phenotype MP:0011396 abnormal sleep behavior 0.016316368940349046 -0.7474617650919413 1.0 7102 -Phenotype MP:0001293 anophthalmia 0.016311050378100767 -0.7475581630267568 1.0 7103 -Phenotype MP:0009767 decreased susceptibility to xenobiotic induced morbidity/mortality 0.01630201149390187 -0.7477219910932784 1.0 7104 -Biological Process GO:0015711 organic anion transport 0.01629482566599727 -0.7478522328649465 1.0 7105 -Phenotype MP:0003970 abnormal prolactin level 0.01629228183146325 -0.7478983393847435 1.0 7106 -Biological Process GO:0002335 mature B cell differentiation 0.01629195242296433 -0.7479043098514833 1.0 7107 -Phenotype MP:0003815 hairless 0.016253645296039454 -0.7485986192817184 1.0 7108 -Biological Process GO:0003188 heart valve formation 0.016244794164593568 -0.7487590443651027 1.0 7109 -Phenotype MP:0003674 oxidative stress 0.016101619918735266 -0.7513540504918003 1.0 7110 -Phenotype MP:0000753 paralysis 0.01608913244833121 -0.7515803835310366 1.0 7111 -Phenotype MP:0031154 intestinal hemorrhage 0.016084981734459047 -0.7516556144349178 1.0 7112 -Phenotype MP:0020579 abnormal pancreatic delta cell number 0.016066612568569894 -0.7519885520923779 1.0 7113 -Phenotype MP:0010323 retropulsion 0.01602322744860385 -0.7527748991860502 1.0 7114 -Phenotype MP:0000433 microcephaly 0.01598903336106705 -0.7533946605553027 1.0 7115 -Biological Process GO:0006497 protein lipidation 0.015807880520413042 -0.7566780215295318 1.0 7116 -Phenotype MP:0005218 abnormal pancreatic delta cell morphology 0.01579651311566077 -0.7568840535906749 1.0 7117 -Phenotype MP:0009830 abnormal sperm connecting piece morphology 0.015779711325488388 -0.7571885828597166 1.0 7118 -Biological Process GO:0030204 chondroitin sulfate metabolic process 0.015716838307280878 -0.7583281444231414 1.0 7119 -Phenotype MP:0005203 abnormal trabecular meshwork morphology 0.01570655154951628 -0.7585145899620228 1.0 7120 -Phenotype MP:0004841 abnormal small intestine crypts of Lieberkuhn morphology 0.015682789514126827 -0.7589452723591871 1.0 7121 -Phenotype MP:0000153 rib bifurcation 0.01567391599411172 -0.7591061032311539 1.0 7122 -Biological Process GO:0045672 positive regulation of osteoclast differentiation 0.01566359369740744 -0.7592931929065952 1.0 7123 -Phenotype MP:0003563 abnormal pancreatic alpha cell physiology 0.01566313788188456 -0.7593014544767361 1.0 7124 -Phenotype MP:0003441 increased glycerol level 0.015648045319923032 -0.7595750043077335 1.0 7125 -Biological Process GO:0006839 mitochondrial transport 0.015645080306334824 -0.7596287446182274 1.0 7126 -Biological Process GO:0060351 cartilage development involved in endochondral bone morphogenesis 0.015615239019075466 -0.7601696123057249 1.0 7127 -Phenotype MP:0012079 abnormal spinal reflex 0.01559735423093267 -0.7604937707081457 1.0 7128 -Phenotype MP:0005316 abnormal response to tactile stimuli 0.01559735423093267 -0.7604937707081457 1.0 7128 -Phenotype MP:0008515 thin retina outer nuclear layer 0.015596925178029575 -0.7605015472108648 1.0 7130 -Phenotype MP:0009237 kinked sperm flagellum 0.015596866624896677 -0.760502608475324 1.0 7131 -Phenotype MP:0010301 increased stomach tumor incidence 0.015541781807249189 -0.761501010376632 1.0 7132 -Phenotype MP:0010406 common atrium 0.0155368716592581 -0.7615900058802819 1.0 7133 -Phenotype MP:0009781 abnormal preimplantation embryo development 0.015519071701150633 -0.761912626754357 1.0 7134 -Phenotype MP:0001752 abnormal hypothalamus secretion 0.01551640728591408 -0.7619609187765811 1.0 7135 -Phenotype MP:0005574 decreased pulmonary respiratory rate 0.015481227371746398 -0.7625985480670625 1.0 7136 -Biological Process GO:2001053 regulation of mesenchymal cell apoptotic process 0.015472205216730761 -0.7627620729203016 1.0 7137 -Phenotype MP:0010436 abnormal coronary sinus morphology 0.015451191716648438 -0.7631429386348726 1.0 7138 -Biological Process GO:0050994 regulation of lipid catabolic process 0.01544182849564446 -0.7633126452446423 1.0 7139 -Phenotype MP:0002586 abnormal platelet volume 0.015434601633791067 -0.7634436307488712 1.0 7140 -Biological Process GO:0000305 response to oxygen radical 0.01542743643066291 -0.7635734987003673 1.0 7141 -Biological Process GO:0031099 regeneration 0.01541736359062984 -0.7637560670208243 1.0 7142 -Biological Process GO:0045913 positive regulation of carbohydrate metabolic process 0.01541036906487736 -0.7638828414771676 1.0 7143 -Phenotype MP:0002647 decreased intestinal cholesterol absorption 0.015358286561253598 -0.7648268270046428 1.0 7144 -Phenotype MP:0005537 abnormal cerebral aqueduct morphology 0.015348006879498999 -0.7650131442921813 1.0 7145 -Phenotype MP:0001296 macrophthalmia 0.015343117436048992 -0.7651017645299402 1.0 7146 -Biological Process GO:0003222 ventricular trabecula myocardium morphogenesis 0.015291073567957114 -0.7660450497957073 1.0 7147 -Biological Process GO:0071425 hematopoietic stem cell proliferation 0.015278244485044445 -0.7662775744970508 1.0 7148 -Biological Process GO:0045911 positive regulation of DNA recombination 0.015270392946448386 -0.7664198821490914 1.0 7149 -Biological Process GO:0021680 cerebellar Purkinje cell layer development 0.015190727591080977 -0.7678638016474946 1.0 7150 -Biological Process GO:0044042 glucan metabolic process 0.015177679727579885 -0.7681002917056239 1.0 7151 -Phenotype MP:0003637 cochlear ganglion hypoplasia 0.015175095302466857 -0.7681471339219883 1.0 7152 -Phenotype MP:0003069 abnormal superior semicircular canal morphology 0.015168723692005948 -0.7682626181564878 1.0 7153 -Phenotype MP:0009836 abnormal sperm principal piece morphology 0.015167675083599064 -0.7682816239855323 1.0 7154 -Biological Process GO:0097035 regulation of membrane lipid distribution 0.015160890220639045 -0.7684045983434171 1.0 7155 -Phenotype MP:0009712 impaired conditioned place preference behavior 0.015144932942534828 -0.7686938209909514 1.0 7156 -Biological Process GO:0035116 embryonic hindlimb morphogenesis 0.015142424490425244 -0.7687392862109976 1.0 7157 -Phenotype MP:0000827 dilated third ventricle 0.015080730097742134 -0.7698574854097139 1.0 7158 -Biological Process GO:0042445 hormone metabolic process 0.015064984745525645 -0.770142866940616 1.0 7159 -Biological Process GO:0051259 protein complex oligomerization 0.015051811470233378 -0.7703816300637404 1.0 7160 -Biological Process GO:0045661 regulation of myoblast differentiation 0.015037459661461972 -0.7706417538832704 1.0 7161 -Phenotype MP:0000104 abnormal sphenoid bone morphology 0.01503050350512869 -0.7707678329011477 1.0 7162 -Phenotype MP:0001864 vascular inflammation 0.015018010279416405 -0.7709942702542572 1.0 7163 -Biological Process GO:0007628 adult walking behavior 0.01498736693895153 -0.7715496750044071 1.0 7164 -Phenotype MP:0001850 increased susceptibility to otitis media 0.014951550318829776 -0.7721988444698816 1.0 7165 -Phenotype MP:0009415 skeletal muscle degeneration 0.014950882653528064 -0.7722109457771952 1.0 7166 -Phenotype MP:0011967 increased or absent threshold for auditory brainstem response 0.014949251993730317 -0.772240501177612 1.0 7167 -Biological Process GO:0021544 subpallium development 0.01489118869369166 -0.7732928875089199 1.0 7168 -Phenotype MP:0012729 abnormal common carotid artery morphology 0.014850233215425113 -0.7740351978063229 1.0 7169 -Biological Process GO:0061620 glycolytic process through glucose-6-phosphate 0.01484528082687353 -0.7741249589121426 1.0 7170 -Phenotype MP:0004354 absent deltoid tuberosity 0.014844814532101736 -0.774133410416688 1.0 7171 -Phenotype MP:0005403 abnormal nerve conduction 0.014842121732037916 -0.7741822169085378 1.0 7172 -Phenotype MP:0020342 small optic nerve 0.01482664072335138 -0.7744628072629566 1.0 7173 -Biological Process GO:0006636 unsaturated fatty acid biosynthetic process 0.014802696385978198 -0.7748967938490959 1.0 7174 -Phenotype MP:0004815 abnormal somatic hypermutation frequency 0.01479873371192919 -0.7749686165667476 1.0 7175 -Biological Process GO:0086001 cardiac muscle cell action potential 0.014788311103679286 -0.775157524369981 1.0 7176 -Phenotype MP:0020870 decreased thigmotaxis 0.014760737610784114 -0.7756572887135503 1.0 7177 -Phenotype MP:0004632 abnormal cochlear OHC efferent innervation pattern 0.014730992867430515 -0.776196406561016 1.0 7178 -Phenotype MP:0013986 abnormal vitelline vein topology 0.014726705682337915 -0.7762741109799559 1.0 7179 -Phenotype MP:0008989 abnormal liver sinusoid morphology 0.014725902601285368 -0.7762886666721414 1.0 7180 -Phenotype MP:0009806 abnormal otic vesicle morphology 0.014709147496656083 -0.7765923497745443 1.0 7181 -Phenotype MP:0000564 syndactyly 0.014700084085040088 -0.7767566223958617 1.0 7182 -Biological Process GO:0022600 digestive system process 0.014679936417140826 -0.7771217950658753 1.0 7183 -Biological Process GO:0061001 regulation of dendritic spine morphogenesis 0.014578054133571383 -0.7789683921859071 1.0 7184 -Phenotype MP:0003232 abnormal forebrain development 0.014565429167576083 -0.7791972173067292 1.0 7185 -Biological Process GO:0036037 CD8-positive, alpha-beta T cell activation 0.014550830881975285 -0.7794618084721742 1.0 7186 -Phenotype MP:0000490 abnormal crypts of Lieberkuhn morphology 0.01452896005696691 -0.7798582130388784 1.0 7187 -Phenotype MP:0010383 increased adenoma incidence 0.014480648939737661 -0.7807338429012601 1.0 7188 -Phenotype MP:0020189 abnormal adenoma incidence 0.014480648939737661 -0.7807338429012601 1.0 7188 -Phenotype MP:0008308 small scala media 0.014461711988987824 -0.7810770715519313 1.0 7190 -Phenotype MP:0006012 dilated endolymphatic duct 0.014456763790960614 -0.7811667567052893 1.0 7191 -Phenotype MP:0012173 short rostral-caudal axis 0.014430576182391741 -0.781641402157566 1.0 7192 -Phenotype MP:0005176 eyelids fail to open 0.01442451177388071 -0.781751318414827 1.0 7193 -Phenotype MP:0004288 abnormal spiral ligament morphology 0.014401920647225563 -0.7821607783126436 1.0 7194 -Phenotype MP:0008821 increased blood uric acid level 0.014395935153588169 -0.7822692642527458 1.0 7195 -Phenotype MP:0004008 abnormal GABA-mediated receptor currents 0.0143864369425305 -0.782441417531707 1.0 7196 -Biological Process GO:0070193 synaptonemal complex organization 0.014385947550421663 -0.7824502876711178 1.0 7197 -Biological Process GO:0040036 regulation of fibroblast growth factor receptor signaling pathway 0.014356116488030368 -0.7829909700348155 1.0 7198 -Phenotype MP:0003879 abnormal hair cell physiology 0.014265834183254 -0.7846273197332029 1.0 7199 -Phenotype MP:0002718 abnormal inner cell mass morphology 0.014232088551003441 -0.7852389529352115 1.0 7200 -Phenotype MP:0004070 abnormal P wave 0.01421921087880329 -0.7854723583082006 1.0 7201 -Phenotype MP:0005236 abnormal olfactory nerve morphology 0.014195905931602693 -0.785894756068394 1.0 7202 -Phenotype MP:0013878 abnormal ductus venosus valve topology 0.014183090672354015 -0.7861270302184422 1.0 7203 -Biological Process GO:2001252 positive regulation of chromosome organization 0.014171719399645233 -0.7863331323855655 1.0 7204 -Phenotype MP:0002942 decreased circulating alanine transaminase level 0.014151766104357755 -0.7866947820887534 1.0 7205 -Phenotype MP:0031381 decreased secondary ovarian follicle number 0.01414276596966002 -0.7868579078278953 1.0 7206 -Phenotype MP:0009136 decreased brown fat cell size 0.014110939592992255 -0.7874347548854673 1.0 7207 -Phenotype MP:0004616 lumbar vertebral transformation 0.014097862696378693 -0.7876717711632689 1.0 7208 -Biological Process GO:0034605 cellular response to heat 0.014063018152533746 -0.7883033219300815 1.0 7209 -Phenotype MP:0004459 small alisphenoid bone 0.01405170278213308 -0.7885084108784434 1.0 7210 -Phenotype MP:0011659 interrupted aortic arch, type b 0.014037502624139053 -0.7887657860563161 1.0 7211 -Phenotype MP:0030804 abnormal synovial joint morphology 0.014004166741952373 -0.7893699926159156 1.0 7212 -Biological Process GO:0051150 regulation of smooth muscle cell differentiation 0.013955804605022104 -0.7902465472007286 1.0 7213 -Phenotype MP:0003666 impaired sperm capacitation 0.01390081373353913 -0.7912432463455734 1.0 7214 -Biological Process GO:0046457 prostanoid biosynthetic process 0.013888969310873578 -0.7914579242661731 1.0 7215 -Biological Process GO:0001516 prostaglandin biosynthetic process 0.013888969310873578 -0.7914579242661731 1.0 7215 -Phenotype MP:0002843 decreased systemic arterial blood pressure 0.013880558010420652 -0.791610377495998 1.0 7217 -Phenotype MP:0005354 abnormal ilium morphology 0.013877681606125014 -0.7916625117798233 1.0 7218 -Phenotype MP:0011123 abnormal primary ovarian follicle number 0.013866921733978188 -0.7918575324273993 1.0 7219 -Phenotype MP:0009153 increased pancreas tumor incidence 0.01385512273380296 -0.792071387073953 1.0 7220 -Phenotype MP:0010132 decreased DN2 thymocyte number 0.01385360818949044 -0.7920988379031617 1.0 7221 -Biological Process GO:0030718 germ-line stem cell population maintenance 0.013849726315095512 -0.7921691961423655 1.0 7222 -Biological Process GO:0022618 protein-RNA complex assembly 0.013836654328525877 -0.7924061234265496 1.0 7223 -Biological Process GO:0141060 disruption of anatomical structure in another organism 0.013806094403368885 -0.792960016290021 1.0 7224 -Biological Process GO:0031640 killing of cells of another organism 0.013806094403368885 -0.792960016290021 1.0 7224 -Biological Process GO:0141061 disruption of cell in another organism 0.013806094403368885 -0.792960016290021 1.0 7224 -Biological Process GO:0006397 mRNA processing 0.01379317467828578 -0.7931941838635599 1.0 7227 -Biological Process GO:0048240 sperm capacitation 0.013764274301195978 -0.7937179977321948 1.0 7228 -Biological Process GO:0048821 erythrocyte development 0.01375201808581794 -0.7939401393178233 1.0 7229 -Phenotype MP:0021010 impaired synaptic physiology 0.013715566893114373 -0.7946008102913223 1.0 7230 -Phenotype MP:0003048 abnormal cervical vertebrae morphology 0.013714785029355636 -0.7946149814240704 1.0 7231 -Phenotype MP:0004396 decreased cochlear inner hair cell number 0.013663970079037857 -0.7955359927876153 1.0 7232 -Biological Process GO:0070085 glycosylation 0.013653698810949355 -0.7957221575790471 1.0 7233 -Phenotype MP:0010071 abnormal pruritus 0.01363383510880345 -0.7960821834234895 1.0 7234 -Phenotype MP:0001489 decreased startle reflex 0.01356668287797369 -0.7972993049063369 1.0 7235 -Phenotype MP:0000075 absent neurocranium 0.01356617569973917 -0.7973084974159117 1.0 7236 -Phenotype MP:0005144 abnormal circulating VLDL cholesterol level 0.013557187045408647 -0.7974714150755693 1.0 7237 -Biological Process GO:0015909 long-chain fatty acid transport 0.013552362360816916 -0.7975588615712702 1.0 7238 -Biological Process GO:0003417 growth plate cartilage development 0.013524612971451244 -0.798061814005099 1.0 7239 -Phenotype MP:0005572 abnormal pulmonary respiratory rate 0.013515197110585686 -0.7982324747024038 1.0 7240 -Biological Process GO:0048505 regulation of timing of cell differentiation 0.013497653200184256 -0.7985504547602348 1.0 7241 -Phenotype MP:0008511 thin retina inner nuclear layer 0.013489581624736457 -0.7986967505385961 1.0 7242 -Phenotype MP:0006280 abnormal digit development 0.013489344227152533 -0.7987010533249043 1.0 7243 -Phenotype MP:0005340 abnormal susceptibility to atherosclerosis 0.013424892541903377 -0.7998692279298752 1.0 7244 -Biological Process GO:1903580 positive regulation of ATP metabolic process 0.013422535358286636 -0.7999119514370991 1.0 7245 -Phenotype MP:0011386 increased metanephric mesenchyme apoptosis 0.013378564967618245 -0.8007089064515553 1.0 7246 -Biological Process GO:0045786 negative regulation of cell cycle 0.013340707530372087 -0.8013950653414166 1.0 7247 -Phenotype MP:0005023 abnormal wound healing 0.013334117134889745 -0.8015145150130494 1.0 7248 -Phenotype MP:0004265 abnormal placental transport 0.013320111035895144 -0.8017683729082611 1.0 7249 -Phenotype MP:0012055 abnormal phrenic nerve innervation pattern to diaphragm 0.013298437509288608 -0.8021612014787484 1.0 7250 -Phenotype MP:0012054 abnormal phrenic nerve innervation pattern 0.013298437509288608 -0.8021612014787484 1.0 7250 -Phenotype MP:0004615 cervical vertebral transformation 0.013288118698274065 -0.8023482279767226 1.0 7252 -Biological Process GO:0001975 response to amphetamine 0.013282755760413711 -0.8024454302111138 1.0 7253 -Biological Process GO:0007052 mitotic spindle organization 0.013272378695758924 -0.8026335125452996 1.0 7254 -Phenotype MP:0002187 abnormal fibula morphology 0.01327022407606282 -0.8026725646197741 1.0 7255 -Biological Process GO:0007623 circadian rhythm 0.013210460478303876 -0.8037557685256738 1.0 7256 -Biological Process GO:0045995 regulation of embryonic development 0.01318646200354523 -0.8041907363416854 1.0 7257 -Biological Process GO:0051153 regulation of striated muscle cell differentiation 0.013129705490456223 -0.8052194374066921 1.0 7258 -Biological Process GO:0042159 lipoprotein catabolic process 0.013100499147597477 -0.8057487968470196 1.0 7259 -Biological Process GO:0021575 hindbrain morphogenesis 0.013098702245617488 -0.8057813653555471 1.0 7260 -Phenotype MP:0011965 decreased total retina thickness 0.013048549969997825 -0.8066903658655247 1.0 7261 -Phenotype MP:0005345 abnormal circulating corticosterone level 0.01302781179783008 -0.8070662413137186 1.0 7262 -Biological Process GO:0002087 regulation of respiratory gaseous exchange by nervous system process 0.013023353214105748 -0.8071470523004409 1.0 7263 -Biological Process GO:0050913 sensory perception of bitter taste 0.012962652490769111 -0.8082472414301916 1.0 7264 -Phenotype MP:0010951 abnormal lipid oxidation 0.012952706153248394 -0.8084275169165385 1.0 7265 -Biological Process GO:0040037 negative regulation of fibroblast growth factor receptor signaling pathway 0.012938432460155913 -0.8086862249041625 1.0 7266 -Phenotype MP:0006361 abnormal female germ cell morphology 0.012934280466567416 -0.8087614790026603 1.0 7267 -Biological Process GO:0097186 amelogenesis 0.012928516386505495 -0.8088659518635843 1.0 7268 -Phenotype MP:0008637 abnormal circulating interleukin-1 alpha level 0.012923556220758248 -0.8089558539296046 1.0 7269 -Biological Process GO:0048665 neuron fate specification 0.012868294703843652 -0.8099574584717084 1.0 7270 -Phenotype MP:0000747 muscle weakness 0.012855330098883067 -0.8101924394845383 1.0 7271 -Biological Process GO:0086065 cell communication involved in cardiac conduction 0.01285503972570412 -0.8101977024434865 1.0 7272 -Phenotype MP:0005339 increased susceptibility to atherosclerosis 0.012842523021163732 -0.8104245653459147 1.0 7273 -Phenotype MP:0002753 dilated heart left ventricle 0.012839118553759743 -0.8104862706737027 1.0 7274 -Phenotype MP:0004872 absent nasal septum 0.012835914637604695 -0.8105443410480353 1.0 7275 -Phenotype MP:0002730 head shaking 0.012820592179913382 -0.8108220576956534 1.0 7276 -Biological Process GO:0061036 positive regulation of cartilage development 0.01281951822104277 -0.8108415229970584 1.0 7277 -Phenotype MP:0008853 decreased abdominal adipose tissue amount 0.01278608608909615 -0.8114474740653526 1.0 7278 -Phenotype MP:0014019 embryo cyst 0.012765334429030384 -0.8118235939791469 1.0 7279 -Phenotype MP:0030943 abnormal centrosome morphology 0.012762452516425715 -0.8118758281000316 1.0 7280 -Phenotype MP:0005544 cornea deposits 0.012719415800366618 -0.8126558604387863 1.0 7281 -Biological Process GO:0098655 monoatomic cation transmembrane transport 0.012702005279905504 -0.8129714228291781 1.0 7282 -Phenotype MP:0006033 abnormal external auditory canal morphology 0.012672497613330003 -0.8135062437048806 1.0 7283 -Biological Process GO:0001964 startle response 0.012665439888430607 -0.8136341636338084 1.0 7284 -Phenotype MP:0008323 abnormal lactotroph morphology 0.01265638663357005 -0.8137982521658544 1.0 7285 -Phenotype MP:0002802 abnormal discrimination learning 0.012649450249622385 -0.8139239728129821 1.0 7286 -Phenotype MP:0011083 lethality at weaning, complete penetrance 0.012644590483938067 -0.814012055146851 1.0 7287 -Phenotype MP:0000231 hypertension 0.012639702197810188 -0.8141006544083652 1.0 7288 -Biological Process GO:0009451 RNA modification 0.01262703723024472 -0.814330204550081 1.0 7289 -Phenotype MP:0002407 abnormal double-negative T cell morphology 0.012616658240194645 -0.8145183217816921 1.0 7290 -Biological Process GO:0031397 negative regulation of protein ubiquitination 0.012614061378199759 -0.8145653894141879 1.0 7291 -Biological Process GO:0098813 nuclear chromosome segregation 0.012612166057096363 -0.8145997417507124 1.0 7292 -Phenotype MP:0011232 abnormal vitamin A level 0.012569891166611002 -0.8153659661450323 1.0 7293 -Phenotype MP:0010993 decreased surfactant secretion 0.01256885503467331 -0.8153847458404325 1.0 7294 -Phenotype MP:0005547 abnormal Muller cell morphology 0.012537041113824587 -0.8159613671386402 1.0 7295 -Phenotype MP:0013671 abnormal mature NK cell number 0.012531566517271164 -0.8160605931657245 1.0 7296 -Biological Process GO:0002639 positive regulation of immunoglobulin production 0.01250632357863013 -0.8165181166542308 1.0 7297 -Phenotype MP:0006428 ectopic Sertoli cells 0.012494005688628018 -0.8167413760807558 1.0 7298 -Phenotype MP:0010632 cardiac muscle necrosis 0.012464544997851101 -0.8172753455289937 1.0 7299 -Phenotype MP:0004189 abnormal alveolar process morphology 0.012436713594764615 -0.8177797844460005 1.0 7300 -Phenotype MP:0002332 abnormal exercise endurance 0.01241616487659658 -0.8181522260762824 1.0 7301 -Biological Process GO:2000310 regulation of NMDA receptor activity 0.012411026439257178 -0.8182453592811927 1.0 7302 -Phenotype MP:0010750 increased susceptibility to parasitic infection induced morbidity/mortality 0.012407252402170332 -0.8183137629895834 1.0 7303 -Phenotype MP:0008487 abnormal mesonephros morphology 0.012291263797819418 -0.8204160345057583 1.0 7304 -Biological Process GO:0019364 pyridine nucleotide catabolic process 0.012269879426369812 -0.8208036221937159 1.0 7305 -Biological Process GO:0042254 ribosome biogenesis 0.012232489020815307 -0.8214813162224988 1.0 7306 -Biological Process GO:0045665 negative regulation of neuron differentiation 0.01222070268923725 -0.8216949412531248 1.0 7307 -Biological Process GO:0021527 spinal cord association neuron differentiation 0.012186377380112967 -0.8223170809888316 1.0 7308 -Phenotype MP:0004022 abnormal cone electrophysiology 0.012180517556750314 -0.8224232891789729 1.0 7309 -Phenotype MP:0010401 increased skeletal muscle glycogen level 0.01217658631226548 -0.8224945422417185 1.0 7310 -Phenotype MP:0011128 increased tertiary ovarian follicle number 0.012171538272727656 -0.8225860370035727 1.0 7311 -Biological Process GO:0002673 regulation of acute inflammatory response 0.012113642673000302 -0.8236353837984566 1.0 7312 -Phenotype MP:0003820 increased left ventricle systolic pressure 0.012103585995624222 -0.8238176591738127 1.0 7313 -Biological Process GO:0005977 glycogen metabolic process 0.012058296481712194 -0.8246385230475654 1.0 7314 -Phenotype MP:0004609 vertebral fusion 0.01204783895427708 -0.8248280637544261 1.0 7315 -Phenotype MP:0000904 abnormal superior colliculus morphology 0.012005886210241012 -0.8255884493052822 1.0 7316 -Phenotype MP:0010163 hemolysis 0.0119779512033803 -0.8260947660211015 1.0 7317 -Phenotype MP:0006144 increased systemic arterial systolic blood pressure 0.011966607785292016 -0.8263003633284967 1.0 7318 -Phenotype MP:0001391 abnormal tail movements 0.01192211344912597 -0.8271068147560006 1.0 7319 -Phenotype MP:0005157 holoprosencephaly 0.01188859524132102 -0.8277143259329469 1.0 7320 -Biological Process GO:0007128 meiotic prophase I 0.01185436920163907 -0.8283346664287868 1.0 7321 -Biological Process GO:0051324 prophase 0.01185436920163907 -0.8283346664287868 1.0 7321 -Biological Process GO:0045930 negative regulation of mitotic cell cycle 0.01184553454980819 -0.8284947928222659 1.0 7323 -Phenotype MP:0003064 decreased coping response 0.011819023714088273 -0.8289752967055213 1.0 7324 -Phenotype MP:0010637 sinus bradycardia 0.011805393001541153 -0.8292223507923717 1.0 7325 -Biological Process GO:0001829 trophectodermal cell differentiation 0.011785228112275004 -0.8295878355964029 1.0 7326 -Biological Process GO:0046456 icosanoid biosynthetic process 0.01176902916571132 -0.8298814384390567 1.0 7327 -Phenotype MP:0002665 decreased circulating corticosterone level 0.0117572121837205 -0.830095619002617 1.0 7328 -Phenotype MP:0003155 abnormal telomere length 0.01174637328120598 -0.83029207206066 1.0 7329 -Biological Process GO:0051591 response to cAMP 0.011719655054728273 -0.8307763348621751 1.0 7330 -Phenotype MP:0010378 increased respiratory quotient 0.011699008678245804 -0.8311505465309352 1.0 7331 -Phenotype MP:0020164 abnormal quadriceps weight 0.011679612072527656 -0.8315021063409693 1.0 7332 -Biological Process GO:0030728 ovulation 0.011675316684598425 -0.8315799594347718 1.0 7333 -Phenotype MP:0003756 abnormal hard palate morphology 0.011666622735980292 -0.8317375356091319 1.0 7334 -Biological Process GO:0000303 response to superoxide 0.01163067070305579 -0.8323891594060447 1.0 7335 -Biological Process GO:0050777 negative regulation of immune response 0.011605208777434983 -0.8328506519921409 1.0 7336 -Phenotype MP:0030137 abnormal upper incisor morphology 0.011585167790489459 -0.8332138910900453 1.0 7337 -Phenotype MP:0013876 absent ductus venosus valve 0.011562666562779711 -0.8336217215864796 1.0 7338 -Phenotype MP:0004780 abnormal surfactant secretion 0.011547628305096036 -0.833894287162712 1.0 7339 -Phenotype MP:0005474 increased triiodothyronine level 0.011534495882777107 -0.8341323098334215 1.0 7340 -Phenotype MP:0004140 abnormal gastric chief cell morphology 0.011504333032603786 -0.8346790057879152 1.0 7341 -Phenotype MP:0004404 cochlear outer hair cell degeneration 0.01147489264088386 -0.8352126073195845 1.0 7342 -Biological Process GO:0014874 response to stimulus involved in regulation of muscle adaptation 0.011471003808047886 -0.8352830916792161 1.0 7343 -Phenotype MP:0004145 abnormal muscle electrophysiology 0.011450383480014259 -0.8356568312247676 1.0 7344 -Phenotype MP:0000867 abnormal cerebellum anterior vermis morphology 0.011448534999324522 -0.8356903345876538 1.0 7345 -Phenotype MP:0001980 abnormal chemically-elicited antinociception 0.011433749623909861 -0.8359583167205896 1.0 7346 -Phenotype MP:0020577 abnormal pancreatic alpha cell number 0.011428006616283959 -0.8360624076475964 1.0 7347 -Phenotype MP:0004515 abnormal vestibular hair cell stereociliary bundle morphology 0.011421349055349084 -0.8361830746803528 1.0 7348 -Phenotype MP:0004537 abnormal palatine bone horizontal plate morphology 0.011409482431321116 -0.8363981549964473 1.0 7349 -Phenotype MP:0002830 gallstones 0.011375104644312573 -0.8370212458838808 1.0 7350 -Phenotype MP:0003208 abnormal neuromere morphology 0.011350925345305463 -0.8374594911051954 1.0 7351 -Phenotype MP:0001332 abnormal optic nerve innervation 0.011282755731218952 -0.8386950524671472 1.0 7352 -Biological Process GO:0044065 regulation of respiratory system process 0.01125512834784681 -0.8391957935654191 1.0 7353 -Biological Process GO:0021700 developmental maturation 0.011240635505632701 -0.8394584735894235 1.0 7354 -Phenotype MP:0004739 conductive hearing loss 0.011240306920066168 -0.8394644291406693 1.0 7355 -Phenotype MP:0013518 abnormal CD4-positive NK T cell number 0.011203522042410263 -0.8401311480908175 1.0 7356 -Phenotype MP:0008917 abnormal oligodendrocyte physiology 0.011149244162763527 -0.8411149243934832 1.0 7357 -Biological Process GO:0071470 cellular response to osmotic stress 0.011135327039796916 -0.8413671696150163 1.0 7358 -Biological Process GO:1905456 regulation of lymphoid progenitor cell differentiation 0.011132839686998963 -0.8414122524140298 1.0 7359 -Biological Process GO:0040019 positive regulation of embryonic development 0.011126767187248254 -0.8415223153234798 1.0 7360 -Phenotype MP:0013764 decreased T-helper cell number 0.011117307873850235 -0.8416937635897169 1.0 7361 -Phenotype MP:0002913 abnormal PNS synaptic transmission 0.011084216481616616 -0.8422935388151592 1.0 7362 -Biological Process GO:0006805 xenobiotic metabolic process 0.011037696403168762 -0.843136706438379 1.0 7363 -Biological Process GO:0048168 regulation of neuronal synaptic plasticity 0.011037362693202657 -0.843142754868398 1.0 7364 -Phenotype MP:0005551 abnormal eye electrophysiology 0.010996179305248321 -0.843889195985786 1.0 7365 -Phenotype MP:0011189 small embryonic epiblast 0.010991731173912944 -0.8439698175249355 1.0 7366 -Biological Process GO:0002819 regulation of adaptive immune response 0.0109647047937792 -0.8444596655531831 1.0 7367 -Biological Process GO:0014003 oligodendrocyte development 0.010961993061299524 -0.8445088151914895 1.0 7368 -Biological Process GO:1901874 negative regulation of post-translational protein modification 0.010954422049835322 -0.8446460383423231 1.0 7369 -Biological Process GO:0098869 cellular oxidant detoxification 0.01089059003219972 -0.8458029815890002 1.0 7370 -Biological Process GO:0044851 hair cycle phase 0.010834982119344638 -0.8468108644920094 1.0 7371 -Phenotype MP:0030038 abnormal periorbital region morphology 0.01083350435423891 -0.8468376487050513 1.0 7372 -Biological Process GO:0051091 positive regulation of DNA-binding transcription factor activity 0.010814889656229232 -0.8471750365857568 1.0 7373 -Phenotype MP:0002759 abnormal caudal vertebrae morphology 0.010795186691430425 -0.8475321490961842 1.0 7374 -Phenotype MP:0002253 abnormal pharyngeal muscle morphology 0.010782128921637768 -0.8477688187039745 1.0 7375 -Biological Process GO:1902221 erythrose 4-phosphate/phosphoenolpyruvate family amino acid metabolic process 0.0107693860766499 -0.8479997803592417 1.0 7376 -Biological Process GO:0002082 regulation of oxidative phosphorylation 0.010754186198869142 -0.8482752752691655 1.0 7377 -Biological Process GO:0006760 folic acid-containing compound metabolic process 0.010726502329299281 -0.8487770401690874 1.0 7378 -Biological Process GO:0002062 chondrocyte differentiation 0.010707315184983024 -0.8491248035308291 1.0 7379 -Biological Process GO:0061615 glycolytic process through fructose-6-phosphate 0.010674041832187342 -0.8497278767570434 1.0 7380 -Phenotype MP:0013672 decreased mature NK cell number 0.010653103681867893 -0.8501073767714137 1.0 7381 -Phenotype MP:0003690 abnormal glial cell physiology 0.010602269164505906 -0.851028742783934 1.0 7382 -Phenotype MP:0001404 no spontaneous movement 0.01059990983836534 -0.851071505123997 1.0 7383 -Phenotype MP:0006392 abnormal nucleus pulposus morphology 0.010585279098118794 -0.8513366845237578 1.0 7384 -Phenotype MP:0008507 thin retina ganglion layer 0.010584740883857524 -0.8513464395554473 1.0 7385 -Biological Process GO:0061013 regulation of mRNA catabolic process 0.01058363725012923 -0.8513664427080352 1.0 7386 -Phenotype MP:0003216 absence seizures 0.01058049735707689 -0.8514233526757403 1.0 7387 -Biological Process GO:0006418 tRNA aminoacylation for protein translation 0.010563530036492463 -0.8517308821521924 1.0 7388 -Biological Process GO:0043039 tRNA aminoacylation 0.010563530036492463 -0.8517308821521924 1.0 7388 -Biological Process GO:1901990 regulation of mitotic cell cycle phase transition 0.010560624191948365 -0.8517835500349528 1.0 7390 -Phenotype MP:0011127 abnormal tertiary ovarian follicle number 0.010557373718662055 -0.8518424642484838 1.0 7391 -Phenotype MP:0020066 abnormal neocortex size 0.010554818412358169 -0.8518887786919399 1.0 7392 -Biological Process GO:0022613 ribonucleoprotein complex biogenesis 0.010491589792993028 -0.8530347854590896 1.0 7393 -Biological Process GO:0016053 organic acid biosynthetic process 0.01046029628655798 -0.8536019743444788 1.0 7394 -Phenotype MP:0003270 intestinal obstruction 0.010412486690214662 -0.854468514235659 1.0 7395 -Biological Process GO:0021781 glial cell fate commitment 0.01037708120578007 -0.8551102319445645 1.0 7396 -Biological Process GO:0072080 nephron tubule development 0.010353972483812979 -0.8555290731595139 1.0 7397 -Phenotype MP:0001526 abnormal placing response 0.010318870306448402 -0.8561652934851418 1.0 7398 -Biological Process GO:0009156 ribonucleoside monophosphate biosynthetic process 0.010279561194704967 -0.8568777637007015 1.0 7399 -Phenotype MP:0021121 abnormal rhythmic behavior 0.010236259905578526 -0.8576625913762614 1.0 7400 -Phenotype MP:0004267 abnormal optic tract morphology 0.010219439526535035 -0.8579674575650761 1.0 7401 -Phenotype MP:0031268 decreased susceptibility to diet-induced hepatic steatosis 0.01020754265523749 -0.8581830861072108 1.0 7402 -Phenotype MP:0004090 abnormal sarcomere morphology 0.010188675028833583 -0.8585250582672237 1.0 7403 -Biological Process GO:0042474 middle ear morphogenesis 0.01012473127769653 -0.8596840266624818 1.0 7404 -Phenotype MP:0004817 abnormal skeletal muscle mass 0.01012220137869091 -0.8597298806034622 1.0 7405 -Biological Process GO:0032204 regulation of telomere maintenance 0.010096592625500334 -0.86019403441149 1.0 7406 -Phenotype MP:0009711 abnormal conditioned place preference behavior 0.01004782821657868 -0.8610778801000625 1.0 7407 -Biological Process GO:0050951 sensory perception of temperature stimulus 0.009959778059647206 -0.8626737725409419 1.0 7408 -Phenotype MP:0001423 abnormal liquid preference 0.009959418061270542 -0.86268029744343 1.0 7409 -Phenotype MP:0011068 abnormal ependyma motile cilium physiology 0.009932324948016547 -0.8631713549968605 1.0 7410 -Phenotype MP:0009096 decreased endometrial gland number 0.009899782069454188 -0.8637611885157552 1.0 7411 -Biological Process GO:0043330 response to exogenous dsRNA 0.009879877310522311 -0.864121958506678 1.0 7412 -Biological Process GO:0050830 defense response to Gram-positive bacterium 0.009878904136832789 -0.8641395970957377 1.0 7413 -Phenotype MP:0003031 acidosis 0.009876815460490906 -0.8641774539593894 1.0 7414 -Phenotype MP:0003745 abnormal oral mucosa morphology 0.009875686618812218 -0.8641979140013103 1.0 7415 -Phenotype MP:0002573 behavioral despair 0.009814260028785715 -0.8653112593275268 1.0 7416 -Biological Process GO:0071353 cellular response to interleukin-4 0.009813481139386293 -0.865325376550575 1.0 7417 -Phenotype MP:0011194 abnormal hair follicle physiology 0.009803350133900324 -0.8655089991088646 1.0 7418 -Phenotype MP:0001863 blood vessel inflammation 0.009789021984402346 -0.8657686941085386 1.0 7419 -Biological Process GO:0015908 fatty acid transport 0.00976426916084494 -0.8662173343538527 1.0 7420 -Biological Process GO:0060746 parental behavior 0.009747075206429923 -0.8665289715256196 1.0 7421 -Phenotype MP:0020889 abnormal sodium level 0.009715053251191597 -0.8671093634077919 1.0 7422 -Biological Process GO:0061041 regulation of wound healing 0.009700970947213894 -0.8673646025039092 1.0 7423 -Biological Process GO:0032784 regulation of DNA-templated transcription elongation 0.009672782341767161 -0.8678755156461354 1.0 7424 -Biological Process GO:0060078 regulation of postsynaptic membrane potential 0.009672017144225276 -0.8678893847068553 1.0 7425 -Phenotype MP:0003370 increased circulating estrogen level 0.009627222642618283 -0.8687012765762041 1.0 7426 -Phenotype MP:0009102 abnormal glans penis morphology 0.00958617874796086 -0.869445189403969 1.0 7427 -Phenotype MP:0010088 decreased circulating fructosamine level 0.009529456074177212 -0.8704732771379663 1.0 7428 -Biological Process GO:0055001 muscle cell development 0.009523099994708906 -0.8705884798761624 1.0 7429 -Phenotype MP:0005129 increased adrenocorticotropin level 0.009507253715602793 -0.87087569068785 1.0 7430 -Phenotype MP:0003293 rectal hemorrhage 0.00950298857895382 -0.8709529954829194 1.0 7431 -Phenotype MP:0002068 abnormal parental behavior 0.009481421878916985 -0.8713438878420355 1.0 7432 -Biological Process GO:0034502 protein localization to chromosome 0.009470709829456636 -0.8715380417124642 1.0 7433 -Phenotype MP:0002269 muscular atrophy 0.009459208692734866 -0.8717464976402609 1.0 7434 -Phenotype MP:0030937 increased mitochondrial DNA content 0.009453791902593545 -0.8718446759370593 1.0 7435 -Phenotype MP:0010227 decreased quadriceps weight 0.009436086216378703 -0.8721655881509107 1.0 7436 -Biological Process GO:0016447 somatic recombination of immunoglobulin gene segments 0.009420495290555553 -0.8724481707326412 1.0 7437 -Phenotype MP:0009452 abnormal synaptonemal complex 0.009400760678738296 -0.8728058568392926 1.0 7438 -Biological Process GO:0051148 negative regulation of muscle cell differentiation 0.009314312759289178 -0.8743727090288459 1.0 7439 -Biological Process GO:0048736 appendage development 0.009299066915556153 -0.8746490370629605 1.0 7440 -Biological Process GO:0060173 limb development 0.009299066915556153 -0.8746490370629605 1.0 7440 -Biological Process GO:0009636 response to toxic substance 0.009228744545609735 -0.8759236167177084 1.0 7442 -Phenotype MP:0000160 kyphosis 0.00916531598002468 -0.8770732474722769 1.0 7443 -Biological Process GO:0070192 chromosome organization involved in meiotic cell cycle 0.00914657081660697 -0.8774130000138272 1.0 7444 -Biological Process GO:0046394 carboxylic acid biosynthetic process 0.00913674722882929 -0.8775910506842981 1.0 7445 -Phenotype MP:0003036 vertebral transformation 0.009136509175709295 -0.8775953653520734 1.0 7446 -Phenotype MP:0003072 abnormal metatarsal bone morphology 0.0091222839953492 -0.8778531940555985 1.0 7447 -Biological Process GO:0048304 positive regulation of isotype switching to IgG isotypes 0.009111810101736117 -0.8780430313963394 1.0 7448 -Phenotype MP:0003657 abnormal erythrocyte osmotic lysis 0.009093090449477925 -0.8783823215529486 1.0 7449 -Biological Process GO:0048147 negative regulation of fibroblast proliferation 0.00908882112347753 -0.8784597022792201 1.0 7450 -Phenotype MP:0011459 increased urine chloride ion level 0.009087070525025998 -0.8784914315450519 1.0 7451 -Biological Process GO:0061326 renal tubule development 0.009066727564704724 -0.8788601438532775 1.0 7452 -Phenotype MP:0000155 asymmetric rib joints 0.009048326090641434 -0.8791936670902832 1.0 7453 -Biological Process GO:0002820 negative regulation of adaptive immune response 0.009041544987290484 -0.8793165733059646 1.0 7454 -Biological Process GO:1900452 regulation of long-term synaptic depression 0.009000693285970085 -0.8800570026658466 1.0 7455 -Phenotype MP:0004790 absent upper incisors 0.00895892616066818 -0.8808140239122534 1.0 7456 -Phenotype MP:0003731 abnormal retina outer nuclear layer morphology 0.008948500778161561 -0.8810029819983649 1.0 7457 -Biological Process GO:0072170 metanephric tubule development 0.008927909636948672 -0.8813761925383109 1.0 7458 -Biological Process GO:0030574 collagen catabolic process 0.008916798108911217 -0.8815775868823936 1.0 7459 -Phenotype MP:0013875 increased trigeminal neuroma incidence 0.008878678816422791 -0.8822684918489946 1.0 7460 -Phenotype MP:0013602 abnormal Leydig cell differentiation 0.00885306047045431 -0.8827328195243075 1.0 7461 -Phenotype MP:0011977 abnormal sodium ion homeostasis 0.008834151835999227 -0.8830755349474919 1.0 7462 -Phenotype MP:0004623 thoracic vertebral fusion 0.008821355616650206 -0.88330746400296 1.0 7463 -Phenotype MP:0005301 abnormal cornea endothelium morphology 0.00880304131109233 -0.8836394073272917 1.0 7464 -Biological Process GO:0009072 aromatic amino acid metabolic process 0.008796709385482604 -0.8837541722813694 1.0 7465 -Biological Process GO:0009187 cyclic nucleotide metabolic process 0.008787286535498984 -0.8839249596551171 1.0 7466 -Biological Process GO:0052652 cyclic purine nucleotide metabolic process 0.008787286535498984 -0.8839249596551171 1.0 7466 -Phenotype MP:0006221 optic nerve hypoplasia 0.008778636456015843 -0.8840817407097028 1.0 7468 -Phenotype MP:0004613 fusion of vertebral arches 0.008747048371639088 -0.88465426876457 1.0 7469 -Phenotype MP:0013329 abnormal preputial gland morphology 0.008741287382010632 -0.8847586856119719 1.0 7470 -Phenotype MP:0000074 abnormal neurocranium morphology 0.008738212443770377 -0.8848144182859934 1.0 7471 -Phenotype MP:0004068 dilated dorsal aorta 0.00868940503446991 -0.8856990433482989 1.0 7472 -Phenotype MP:0010939 abnormal mandibular prominence morphology 0.008675245235558626 -0.8859556870254303 1.0 7473 -Biological Process GO:0098743 cell aggregation 0.008672184821898798 -0.8860111564441786 1.0 7474 -Phenotype MP:0002899 fatigue 0.008658557893626018 -0.8862581419417724 1.0 7475 -Phenotype MP:0003842 abnormal metopic suture morphology 0.008611378398573954 -0.8871132613662237 1.0 7476 -Biological Process GO:0060349 bone morphogenesis 0.008551006888540158 -0.8882074835671266 1.0 7477 -Biological Process GO:0046548 retinal rod cell development 0.008541168788888887 -0.8883857972625616 1.0 7478 -Biological Process GO:2000036 regulation of stem cell population maintenance 0.008534277829995052 -0.8885106945891802 1.0 7479 -Phenotype MP:0012144 decreased b-wave amplitude 0.008514763305515594 -0.8888643916544604 1.0 7480 -Phenotype MP:0020395 abnormal response to social novelty 0.008468988041766212 -0.8896940596521421 1.0 7481 -Phenotype MP:0013351 abnormal Rathke's pouch development 0.008460673884124303 -0.8898447521868905 1.0 7482 -Biological Process GO:0036336 dendritic cell migration 0.008401301753047208 -0.8909208608332223 1.0 7483 -Biological Process GO:0090311 regulation of protein deacetylation 0.008342105825365875 -0.8919937758263324 1.0 7484 -Phenotype MP:0020947 decreased susceptibility to Orthomyxoviridae infection 0.00832554807300645 -0.8922938819561708 1.0 7485 -Phenotype MP:0013403 abnormal circulating lactate level 0.008269905330953065 -0.8933023961318117 1.0 7486 -Biological Process GO:0003091 renal water homeostasis 0.00826630030216946 -0.8933677365966718 1.0 7487 -Phenotype MP:0008030 abnormal Cajal-Retzius cell morphology 0.008209772409636718 -0.8943922939573367 1.0 7488 -Biological Process GO:0006493 protein O-linked glycosylation 0.008170636248347685 -0.8951016294786216 1.0 7489 -Phenotype MP:0011055 abnormal respiratory motile cilium physiology 0.008155850808522436 -0.895369612778987 1.0 7490 -Phenotype MP:0000405 abnormal auchene hair morphology 0.008114364986929079 -0.8961215354488811 1.0 7491 -Biological Process GO:0050982 detection of mechanical stimulus 0.008094274367284493 -0.8964856741300685 1.0 7492 -Phenotype MP:0006396 decreased long bone epiphyseal plate size 0.00809168093716972 -0.8965326795603864 1.0 7493 -Biological Process GO:0070344 regulation of fat cell proliferation 0.00806105577966132 -0.8970877547478893 1.0 7494 -Phenotype MP:0003321 tracheoesophageal fistula 0.008029967603374377 -0.8976512220631795 1.0 7495 -Phenotype MP:0030934 decreased primordial germ cell proliferation 0.008029627525121374 -0.8976573859171939 1.0 7496 -Biological Process GO:0005976 polysaccharide metabolic process 0.008008763148632414 -0.8980355487948399 1.0 7497 -Biological Process GO:0051216 cartilage development 0.007987346884771651 -0.8984237145267179 1.0 7498 -Phenotype MP:0008438 abnormal cutaneous collagen fibril morphology 0.007959627946579229 -0.8989261150387909 1.0 7499 -Biological Process GO:0007190 activation of adenylate cyclase activity 0.00795188373964073 -0.8990664773248386 1.0 7500 -Phenotype MP:0010725 thin interventricular septum 0.007920209807799061 -0.8996405613487704 1.0 7501 -Phenotype MP:0004310 small otic vesicle 0.007913009203923904 -0.8997710709321102 1.0 7502 -Phenotype MP:0000036 absent semicircular canals 0.00789542551661393 -0.9000897719388853 1.0 7503 -Phenotype MP:0010940 abnormal maxillary prominence morphology 0.007876608606976032 -0.9004308248671067 1.0 7504 -Phenotype MP:0008814 decreased nerve conduction velocity 0.00784508212828039 -0.9010022363306556 1.0 7505 -Biological Process GO:0001710 mesodermal cell fate commitment 0.007835811191608255 -0.9011702703043649 1.0 7506 -Biological Process GO:0060037 pharyngeal system development 0.007780004012929553 -0.9021817648627387 1.0 7507 -Biological Process GO:0009062 fatty acid catabolic process 0.0077579039741807465 -0.9025823238851356 1.0 7508 -Phenotype MP:0004136 abnormal tongue muscle morphology 0.007682595131692227 -0.9039472824115847 1.0 7509 -Biological Process GO:0014733 regulation of skeletal muscle adaptation 0.007681063700419544 -0.9039750393137524 1.0 7510 -Biological Process GO:0016051 carbohydrate biosynthetic process 0.007637667846549734 -0.9047615809574003 1.0 7511 -Phenotype MP:0010954 abnormal cellular respiration 0.007624185865197197 -0.9050059393194795 1.0 7512 -Biological Process GO:0006221 pyrimidine nucleotide biosynthetic process 0.007599817351274796 -0.9054476140253462 1.0 7513 -Phenotype MP:0000077 abnormal interparietal bone morphology 0.007557924122548854 -0.9062069208724628 1.0 7514 -Phenotype MP:0009177 decreased pancreatic alpha cell number 0.007541431430862389 -0.9065058477899091 1.0 7515 -Phenotype MP:0012143 decreased a-wave amplitude 0.00748338746670385 -0.9075578836620469 1.0 7516 -Phenotype MP:0003630 abnormal urothelium morphology 0.007479998970394086 -0.9076192995167729 1.0 7517 -Phenotype MP:0006086 decreased body mass index 0.007471834436618363 -0.9077672801472461 1.0 7518 -Phenotype MP:0000464 increased presacral vertebrae number 0.007453394465226304 -0.9081015011410545 1.0 7519 -Biological Process GO:0002861 regulation of inflammatory response to antigenic stimulus 0.00742145462989674 -0.9086804046154122 1.0 7520 -Phenotype MP:0003313 abnormal locomotor activation 0.007393356701584475 -0.9091896742517266 1.0 7521 -Biological Process GO:0005980 glycogen catabolic process 0.007378433401235118 -0.909460156248017 1.0 7522 -Biological Process GO:0000272 polysaccharide catabolic process 0.007378433401235118 -0.909460156248017 1.0 7522 -Biological Process GO:0009251 glucan catabolic process 0.007378433401235118 -0.909460156248017 1.0 7522 -Phenotype MP:0030966 decreased brain ependyma motile cilium number 0.007245731897495666 -0.9118653459045889 1.0 7525 -Phenotype MP:0009811 abnormal prostaglandin level 0.00723103088525856 -0.9121317989708876 1.0 7526 -Biological Process GO:0043331 response to dsRNA 0.007210401162815461 -0.9125057087883341 1.0 7527 -Phenotype MP:0008410 increased cellular sensitivity to ultraviolet irradiation 0.007175270009757928 -0.9131424542929165 1.0 7528 -Phenotype MP:0008582 short photoreceptor inner segment 0.007124319127157275 -0.9140659294033788 1.0 7529 -Biological Process GO:0044241 lipid digestion 0.007117747626443904 -0.9141850366108976 1.0 7530 -Phenotype MP:0000565 oligodactyly 0.007095181357173352 -0.9145940459733198 1.0 7531 -Phenotype MP:0001429 dehydration 0.007060071221119624 -0.9152304105486834 1.0 7532 -Phenotype MP:0002061 abnormal aggression-related behavior 0.00705514554122999 -0.9153196875650569 1.0 7533 -Phenotype MP:0008964 decreased carbon dioxide production 0.007045643374459232 -0.9154919125405697 1.0 7534 -Phenotype MP:0002606 increased basophil cell number 0.007033712287493166 -0.915708161235225 1.0 7535 -Biological Process GO:0033344 cholesterol efflux 0.007022270296664357 -0.9159155451548984 1.0 7536 -Biological Process GO:0003016 respiratory system process 0.007009308657623947 -0.916150472410986 1.0 7537 -Phenotype MP:0009362 abnormal primary ovarian follicle morphology 0.006919190814277942 -0.9177838412770536 1.0 7538 -Biological Process GO:0021889 olfactory bulb interneuron differentiation 0.006877173835157957 -0.9185453910766566 1.0 7539 -Phenotype MP:0000632 abnormal pineal gland morphology 0.006864322617714302 -0.9187783169621878 1.0 7540 -Biological Process GO:0031103 axon regeneration 0.0068179662490773785 -0.919618517376048 1.0 7541 -Phenotype MP:0011468 abnormal urine amino acid level 0.006774032650540551 -0.9204148055400784 1.0 7542 -Phenotype MP:0009093 oocyte degeneration 0.006759597905582226 -0.92067643256231 1.0 7543 -Biological Process GO:0034204 lipid translocation 0.006744542643830509 -0.9209493063340596 1.0 7544 -Biological Process GO:0045332 phospholipid translocation 0.006744542643830509 -0.9209493063340596 1.0 7544 -Biological Process GO:0033363 secretory granule organization 0.006719296660794183 -0.9214068850016546 1.0 7546 -Biological Process GO:0030852 regulation of granulocyte differentiation 0.006693188986435228 -0.921880081661495 1.0 7547 -Phenotype MP:0000435 shortened head 0.00667626269647259 -0.9221868674656876 1.0 7548 -Phenotype MP:0010564 abnormal fetal ductus arteriosus morphology 0.006594528142839007 -0.9236682907913041 1.0 7549 -Phenotype MP:0030807 abnormal forelimb joint morphology 0.006581468100679833 -0.9239050015853078 1.0 7550 -Phenotype MP:0009141 increased prepulse inhibition 0.006570118226443378 -0.9241107159091674 1.0 7551 -Phenotype MP:0000013 abnormal adipose tissue distribution 0.006555855039027336 -0.924369233483393 1.0 7552 -Phenotype MP:0011261 abnormal limb mesenchyme morphology 0.0065479507831557315 -0.924512496626082 1.0 7553 -Biological Process GO:1901988 negative regulation of cell cycle phase transition 0.0065477632748557335 -0.9245158951785548 1.0 7554 -Phenotype MP:0002256 abnormal laryngeal cartilage morphology 0.006535509187638122 -0.9247379981916781 1.0 7555 -Biological Process GO:0009124 nucleoside monophosphate biosynthetic process 0.006506170456686111 -0.9252697571411568 1.0 7556 -Phenotype MP:0003116 rickets 0.006484637451791286 -0.925660038782197 1.0 7557 -Phenotype MP:0004755 abnormal loop of Henle morphology 0.006481044467737562 -0.9257251609386061 1.0 7558 -Biological Process GO:0045576 mast cell activation 0.006474946302014617 -0.9258356890389484 1.0 7559 -Biological Process GO:0006814 sodium ion transport 0.006424450602360965 -0.926750914044588 1.0 7560 -Phenotype MP:0005201 abnormal retina pigment epithelium morphology 0.00642243361243533 -0.9267874716055037 1.0 7561 -Biological Process GO:0035640 exploration behavior 0.006415743677093411 -0.9269087254182645 1.0 7562 -Biological Process GO:0055022 negative regulation of cardiac muscle tissue growth 0.006408547065111514 -0.927039162649294 1.0 7563 -Biological Process GO:0061117 negative regulation of heart growth 0.006408547065111514 -0.927039162649294 1.0 7563 -Phenotype MP:0004728 abnormal efferent ductules of testis morphology 0.006313106190011797 -0.9287690104591177 1.0 7565 -Biological Process GO:0030326 embryonic limb morphogenesis 0.006301126985855721 -0.9289861312687412 1.0 7566 -Biological Process GO:0035113 embryonic appendage morphogenesis 0.006301126985855721 -0.9289861312687412 1.0 7566 -Phenotype MP:0009176 increased pancreatic alpha cell number 0.006293836782641837 -0.929118264823149 1.0 7568 -Phenotype MP:0003043 hypoalgesia 0.0062539330504034485 -0.9298415124227152 1.0 7569 -Biological Process GO:0021953 central nervous system neuron differentiation 0.006164263517648649 -0.9314667557441091 1.0 7570 -Phenotype MP:0005554 decreased circulating creatinine level 0.0061397030267426045 -0.9319119099964944 1.0 7571 -Phenotype MP:0006328 nonsyndromic hearing impairment 0.0061385091289620775 -0.9319335491679568 1.0 7572 -Phenotype MP:0009363 abnormal tertiary ovarian follicle morphology 0.006120670044264309 -0.9322568792040807 1.0 7573 -Biological Process GO:0007164 establishment of tissue polarity 0.006112519423462359 -0.9324046076645357 1.0 7574 -Biological Process GO:0001736 establishment of planar polarity 0.006112519423462359 -0.9324046076645357 1.0 7574 -Phenotype MP:0003942 abnormal urinary system development 0.006036733876188971 -0.9337782063750483 1.0 7576 -Phenotype MP:0011192 decreased embryonic epiblast cell proliferation 0.005994815863382907 -0.9345379624289295 1.0 7577 -Biological Process GO:0003334 keratinocyte development 0.005925525325299663 -0.9357938403263145 1.0 7578 -Phenotype MP:0003189 fused joints 0.0058929400857659076 -0.9363844416298037 1.0 7579 -Phenotype MP:0009747 impaired behavioral response to xenobiotic 0.00587503582654092 -0.9367089529419067 1.0 7580 -Biological Process GO:0055078 sodium ion homeostasis 0.005864525981181035 -0.9368994419012586 1.0 7581 -Phenotype MP:0009266 abnormal mesendoderm development 0.005853278964575881 -0.9371032919500051 1.0 7582 -Biological Process GO:0060350 endochondral bone morphogenesis 0.005846993682551593 -0.9372172114979186 1.0 7583 -Phenotype MP:0004994 abnormal brain wave pattern 0.005833956320798528 -0.9374535112138512 1.0 7584 -Biological Process GO:0070166 enamel mineralization 0.0058087811596301275 -0.9379098062484852 1.0 7585 -Phenotype MP:0011405 tubulointerstitial nephritis 0.005778914804636437 -0.9384511282839262 1.0 7586 -Biological Process GO:0006024 glycosaminoglycan biosynthetic process 0.005678681822617326 -0.9402678321253014 1.0 7587 -Biological Process GO:1902373 negative regulation of mRNA catabolic process 0.005660244022515082 -0.9406020137648925 1.0 7588 -Biological Process GO:0044320 cellular response to leptin stimulus 0.005646518060779981 -0.94085079422526 1.0 7589 -Phenotype MP:0008576 decreased circulating interferon-beta level 0.005614926492606087 -0.9414233854232914 1.0 7590 -Phenotype MP:0020279 abnormal creatine kinase level 0.005610808748293894 -0.941498018760134 1.0 7591 -Biological Process GO:0050885 neuromuscular process controlling balance 0.005609133109602316 -0.9415283893944942 1.0 7592 -Phenotype MP:0002900 abnormal urine phosphate level 0.0055979107676507045 -0.9417317922198121 1.0 7593 -Phenotype MP:0008700 decreased interleukin-4 secretion 0.005551584083453798 -0.9425714546088114 1.0 7594 -Biological Process GO:0060259 regulation of feeding behavior 0.00554852766770475 -0.9426268515661829 1.0 7595 -Biological Process GO:0033144 negative regulation of intracellular steroid hormone receptor signaling pathway 0.00554795987469614 -0.9426371427070735 1.0 7596 -Biological Process GO:0070507 regulation of microtubule cytoskeleton organization 0.005534525998428519 -0.9428806291735871 1.0 7597 -Biological Process GO:0050818 regulation of coagulation 0.0055205989586403215 -0.9431330541356358 1.0 7598 -Phenotype MP:0004620 cervical vertebral fusion 0.005508631098459338 -0.9433499693378562 1.0 7599 -Biological Process GO:0006111 regulation of gluconeogenesis 0.005484188963610803 -0.9437929784090847 1.0 7600 -Biological Process GO:0007093 mitotic cell cycle checkpoint signaling 0.005389124872694162 -0.9455159970768539 1.0 7601 -Biological Process GO:0051053 negative regulation of DNA metabolic process 0.005361717918129005 -0.9460127429446903 1.0 7602 -Phenotype MP:0004471 short nasal bone 0.005357244534326511 -0.94609382218003 1.0 7603 -Phenotype MP:0009978 abnormal cerebellum white matter morphology 0.005341974273970651 -0.9463705927608155 1.0 7604 -Phenotype MP:0005346 abnormal circulating aldosterone level 0.005340350920393089 -0.9464000157373733 1.0 7605 -Phenotype MP:0003372 abnormal circulating mineralocorticoid level 0.005340350920393089 -0.9464000157373733 1.0 7605 -Phenotype MP:0001148 enlarged testis 0.005335158451537647 -0.9464941282532925 1.0 7607 -Phenotype MP:0009833 absent sperm mitochondrial sheath 0.005317893443893662 -0.9468070532513956 1.0 7608 -Phenotype MP:0001725 abnormal umbilical cord morphology 0.0053160729339974955 -0.9468400496489386 1.0 7609 -Biological Process GO:0070269 pyroptosis 0.005258773700765551 -0.9478785874138879 1.0 7610 -Phenotype MP:0011922 abnormal circulating osteocalcin level 0.005194040277838985 -0.9490518684609751 1.0 7611 -Phenotype MP:0004787 abnormal dorsal aorta morphology 0.005181321248489912 -0.9492823984622937 1.0 7612 -Biological Process GO:0050650 chondroitin sulfate proteoglycan biosynthetic process 0.005168475142907858 -0.9495152316963001 1.0 7613 -Biological Process GO:0032413 negative regulation of ion transmembrane transporter activity 0.005153324781866031 -0.9497898291246961 1.0 7614 -Phenotype MP:0004470 small nasal bone 0.005150935014605951 -0.9498331432042927 1.0 7615 -Biological Process GO:0003416 endochondral bone growth 0.005132671746898354 -0.9501641614772414 1.0 7616 -Biological Process GO:0001676 long-chain fatty acid metabolic process 0.005064115707612005 -0.9514067267228531 1.0 7617 -Biological Process GO:0070168 negative regulation of biomineral tissue development 0.005062590737450412 -0.9514343665186044 1.0 7618 -Biological Process GO:0006089 lactate metabolic process 0.005027648257752704 -0.952067692354225 1.0 7619 -Biological Process GO:0003407 neural retina development 0.005024664272147206 -0.9521217765289439 1.0 7620 -Phenotype MP:0020280 increased creatine kinase level 0.0049789259962287336 -0.952950774129186 1.0 7621 -Phenotype MP:0021215 abnormal palatal mesenchymal cell proliferation 0.0049713534283958305 -0.953088025488908 1.0 7622 -Phenotype MP:0010089 abnormal circulating creatine kinase level 0.0049456781995042 -0.9535533841564444 1.0 7623 -Biological Process GO:0032305 positive regulation of icosanoid secretion 0.004904335906613211 -0.9543027053957547 1.0 7624 -Phenotype MP:0030567 abnormal I band morphology 0.004898958718388968 -0.9544001659152962 1.0 7625 -Phenotype MP:0000750 abnormal muscle regeneration 0.004889325767808872 -0.9545747613226173 1.0 7626 -Biological Process GO:0001941 postsynaptic membrane organization 0.00487143171052784 -0.9548990877264156 1.0 7627 -Phenotype MP:0006065 abnormal heart position or orientation 0.004871290458543953 -0.9549016478919076 1.0 7628 -Phenotype MP:0003368 decreased circulating glucocorticoid level 0.004858391524940053 -0.9551354386238184 1.0 7629 -Biological Process GO:0072207 metanephric epithelium development 0.004746344112534606 -0.9571662767814052 1.0 7630 -Biological Process GO:0022403 cell cycle phase 0.004711312566592296 -0.9578012169258635 1.0 7631 -Biological Process GO:0006570 tyrosine metabolic process 0.004706649601962654 -0.9578857322778387 1.0 7632 -Biological Process GO:0021696 cerebellar cortex morphogenesis 0.004653851305695178 -0.9588426914115987 1.0 7633 -Phenotype MP:0000948 nonconvulsive seizures 0.004605085044275037 -0.9597265706763559 1.0 7634 -Phenotype MP:0012719 abnormal neck morphology 0.004490896834540514 -0.9617962103806292 1.0 7635 -Phenotype MP:0004538 abnormal maxillary shelf morphology 0.004431904955963573 -0.9628654270223154 1.0 7636 -Phenotype MP:0008332 decreased lactotroph cell number 0.00442832692212769 -0.9629302782088538 1.0 7637 -Phenotype MP:0001982 decreased chemically-elicited antinociception 0.004399488094983139 -0.9634529764963722 1.0 7638 -Phenotype MP:0004412 abnormal cochlear microphonics 0.004391464727267036 -0.9635983985187144 1.0 7639 -Biological Process GO:0045722 positive regulation of gluconeogenesis 0.004387101817236894 -0.963677475437825 1.0 7640 -Phenotype MP:0020254 decreased collagen level 0.00430489696979075 -0.9651674227498445 1.0 7641 -Biological Process GO:0021522 spinal cord motor neuron differentiation 0.004290741891632366 -0.9654239808642224 1.0 7642 -Biological Process GO:0048536 spleen development 0.004263445990899117 -0.9659187139023598 1.0 7643 -Biological Process GO:1902749 regulation of cell cycle G2/M phase transition 0.004226547777049672 -0.9665874870495799 1.0 7644 -Biological Process GO:0042481 regulation of odontogenesis 0.004206037940139629 -0.9669592239644145 1.0 7645 -Phenotype MP:0000501 abnormal digestive secretion 0.004197755572747264 -0.9671093403069025 1.0 7646 -Biological Process GO:0042158 lipoprotein biosynthetic process 0.004130910056859949 -0.9683209026394294 1.0 7647 -Biological Process GO:0006081 cellular aldehyde metabolic process 0.004022013795954238 -0.9702946267720813 1.0 7648 -Phenotype MP:0008223 absent hippocampal commissure 0.004009479080051226 -0.9705218161270505 1.0 7649 -Phenotype MP:0009247 meteorism 0.0039788044690475255 -0.9710777876498022 1.0 7650 -Phenotype MP:0005275 abnormal skin tensile strength 0.00396640239464896 -0.9713025729025905 1.0 7651 -Phenotype MP:0003567 abnormal fetal cardiomyocyte proliferation 0.003956634338475817 -0.9714796170732322 1.0 7652 -Phenotype MP:0002293 long gestation period 0.0038780879160106307 -0.9729032561244138 1.0 7653 -Biological Process GO:0045745 positive regulation of G protein-coupled receptor signaling pathway 0.0037641897920795975 -0.9749676380783646 1.0 7654 -Phenotype MP:0004814 reduced linear vestibular evoked potential 0.0036883264081197797 -0.9763426475640969 1.0 7655 -Phenotype MP:0003358 abnormal hypaxial muscle morphology 0.003687238449743613 -0.9763623666038923 1.0 7656 -Phenotype MP:0002001 blindness 0.003677009267155751 -0.9765477686035848 1.0 7657 -Phenotype MP:0010090 increased circulating creatine kinase level 0.003650254339114367 -0.9770326966139999 1.0 7658 -Biological Process GO:0021983 pituitary gland development 0.0036355765437845466 -0.9772987288782452 1.0 7659 -Phenotype MP:0009820 abnormal liver vasculature morphology 0.003615104701562677 -0.9776697771465429 1.0 7660 -Phenotype MP:0009009 absent estrous cycle 0.003589974400147189 -0.9781252591066398 1.0 7661 -Phenotype MP:0005480 increased circulating triiodothyronine level 0.003585101395392698 -0.9782135813961517 1.0 7662 -Phenotype MP:0005635 decreased circulating bilirubin level 0.0035532913429890955 -0.9787901325795232 1.0 7663 -Phenotype MP:0009401 increased skeletal muscle fiber diameter 0.0035455531803396667 -0.9789303853139746 1.0 7664 -Biological Process GO:0032200 telomere organization 0.0035446471163335103 -0.9789468075527163 1.0 7665 -Phenotype MP:0003923 abnormal heart left atrium morphology 0.0035362200097551755 -0.9790995472655747 1.0 7666 -Phenotype MP:0006021 abnormal Reissner membrane morphology 0.003508386721425727 -0.9796040203522537 1.0 7667 -Biological Process GO:1903321 negative regulation of protein modification by small protein conjugation or removal 0.0034989674994144737 -0.9797747419696884 1.0 7668 -Phenotype MP:0010890 decreased alveolar lamellar body number 0.0034308158163011138 -0.9810099783361432 1.0 7669 -Phenotype MP:0020945 abnormal susceptibility to Orthomyxoviridae infection 0.0034136528965332813 -0.9813210530107996 1.0 7670 -Phenotype MP:0003899 abnormal QT interval 0.00341337145586873 -0.9813261540696139 1.0 7671 -Phenotype MP:0004432 abnormal cochlear hair cell physiology 0.0033837630335005198 -0.9818628011250027 1.0 7672 -Phenotype MP:0009902 abnormal lateral nasal prominence morphology 0.003362668996464646 -0.9822451265566243 1.0 7673 -Biological Process GO:0042596 fear response 0.003289791036100942 -0.9835660258043298 1.0 7674 -Biological Process GO:0072526 pyridine-containing compound catabolic process 0.003268939983189334 -0.9839439471946564 1.0 7675 -Phenotype MP:0010666 abnormal vitelline vein morphology 0.0032686252579385844 -0.9839496515303001 1.0 7676 -Biological Process GO:1902041 regulation of extrinsic apoptotic signaling pathway via death domain receptors 0.003267938766802425 -0.9839620940523024 1.0 7677 -Phenotype MP:0005104 abnormal tarsal bone morphology 0.0032471847850459312 -0.9843382560463022 1.0 7678 -Phenotype MP:0010580 decreased heart left ventricle size 0.0032065203788480545 -0.9850752907175129 1.0 7679 -Biological Process GO:0000723 telomere maintenance 0.0032026450606753576 -0.9851455301264287 1.0 7680 -Biological Process GO:0031102 neuron projection regeneration 0.0031905696766806324 -0.9853643941774365 1.0 7681 -Phenotype MP:0009376 abnormal manchette morphology 0.0031116830222127634 -0.9867941998693164 1.0 7682 -Phenotype MP:0013772 increased effector memory T-helper cell number 0.0031033543528540264 -0.9869451554261877 1.0 7683 -Phenotype MP:0012030 abnormal a-wave amplitude 0.003091189158331842 -0.9871656472760192 1.0 7684 -Phenotype MP:0009321 increased histiocytic sarcoma incidence 0.00296754993158288 -0.9894065848761463 1.0 7685 -Biological Process GO:0010165 response to X-ray 0.0029631464588929513 -0.9894863969857937 1.0 7686 -Biological Process GO:0050805 negative regulation of synaptic transmission 0.0029525943063579696 -0.9896776527546923 1.0 7687 -Phenotype MP:0011415 abnormal aldosterone level 0.002932226583343578 -0.9900468138820472 1.0 7688 -Phenotype MP:0000680 absent parathyroid glands 0.002914207371022326 -0.9903734086972781 1.0 7689 -Phenotype MP:0013511 increased CD4-negative NK T cell number 0.002904469493246964 -0.9905499058901678 1.0 7690 -Biological Process GO:0042180 cellular ketone metabolic process 0.002885952880203546 -0.9908855159994113 1.0 7691 -Biological Process GO:0021510 spinal cord development 0.0028805922593679867 -0.9909826762381665 1.0 7692 -Phenotype MP:0031544 decreased heart ventricle size 0.002877623165130072 -0.9910364905096644 1.0 7693 -Phenotype MP:0009392 retina gliosis 0.002868069751150726 -0.9912096443311402 1.0 7694 -Phenotype MP:0000304 abnormal cardiac stroke volume 0.0028666909007637464 -0.9912346357336131 1.0 7695 -Phenotype MP:0031276 abnormal stress erythropoiesis 0.002837925927347107 -0.9917559954362817 1.0 7696 -Phenotype MP:0009777 abnormal behavioral response to anesthetic 0.0028000208954757078 -0.9924430169697236 1.0 7697 -Phenotype MP:0003867 increased defecation amount 0.0027831521739835052 -0.9927487593562778 1.0 7698 -Biological Process GO:0042401 biogenic amine biosynthetic process 0.0027662848736675905 -0.9930544759842806 1.0 7699 -Biological Process GO:0009309 amine biosynthetic process 0.0027662848736675905 -0.9930544759842806 1.0 7699 -Biological Process GO:0001886 endothelial cell morphogenesis 0.0027653570816142947 -0.9930712920397672 1.0 7701 -Biological Process GO:0016042 lipid catabolic process 0.002759720002664112 -0.9931734630295616 1.0 7702 -Biological Process GO:0003266 regulation of secondary heart field cardioblast proliferation 0.0027519791713003228 -0.993313764133956 1.0 7703 -Biological Process GO:0003264 regulation of cardioblast proliferation 0.0027519791713003228 -0.993313764133956 1.0 7703 -Phenotype MP:0003877 abnormal serotonergic neuron morphology 0.0027395301167750796 -0.9935394008926548 1.0 7705 -Biological Process GO:0001662 behavioral fear response 0.0027390769822719374 -0.9935476138698199 1.0 7706 -Biological Process GO:0006310 DNA recombination 0.002714233415257672 -0.9939978988231267 1.0 7707 -Biological Process GO:0021548 pons development 0.0026495215877160305 -0.9951707884579466 1.0 7708 -Phenotype MP:0031416 abnormal cardiac muscle triglyceride level 0.0026289689732401644 -0.995543300708071 1.0 7709 -Phenotype MP:0004433 abnormal cochlear inner hair cell physiology 0.002612989167260049 -0.995832931669095 1.0 7710 -Biological Process GO:0032259 methylation 0.0025849295651781956 -0.9963415066497321 1.0 7711 -Phenotype MP:0003065 abnormal liver copper level 0.002500447817646023 -0.9978727223451658 1.0 7712 -Biological Process GO:0042048 olfactory behavior 0.0024886380819836296 -0.9980867715703938 1.0 7713 -Phenotype MP:0008128 abnormal brain internal capsule morphology 0.002475313419778691 -0.9983282785526777 1.0 7714 -Phenotype MP:0001178 pulmonary hypoplasia 0.0024621810321604487 -0.9985663005944437 1.0 7715 -Biological Process GO:0007606 sensory perception of chemical stimulus 0.0024292982398727014 -0.9991622949853209 1.0 7716 -Biological Process GO:2000136 regulation of cell proliferation involved in heart morphogenesis 0.0023918730629163276 -0.9998406192391861 1.0 7717 -Phenotype MP:0002007 increased cellular sensitivity to gamma-irradiation 0.0023742392846360927 -1.0001602281353232 1.0 7718 -Phenotype MP:0011963 abnormal total retina thickness 0.0022856715506670566 -1.0017655015621156 1.0 7719 -Phenotype MP:0010380 abnormal inner cell mass apoptosis 0.002246278450375394 -1.0024794940542265 1.0 7720 -Phenotype MP:0000714 increased thymocyte number 0.0022333747854436092 -1.0027133705405604 1.0 7721 -Phenotype MP:0003884 decreased macrophage cell number 0.0021989951604366453 -1.0033364947413677 1.0 7722 -Phenotype MP:0001501 abnormal sleep pattern 0.002167340862546774 -1.0039102229036367 1.0 7723 -Phenotype MP:0004025 polyploidy 0.002167290273995759 -1.0039111398115557 1.0 7724 -Phenotype MP:0010877 abnormal trabecular bone volume 0.002157464527733466 -1.004089229604152 1.0 7725 -Biological Process GO:0032410 negative regulation of transporter activity 0.002112872084911399 -1.0048974591962407 1.0 7726 -Phenotype MP:0030229 abnormal craniofacial suture morphology 0.002110586762095301 -1.0049388802400445 1.0 7727 -Biological Process GO:2000045 regulation of G1/S transition of mitotic cell cycle 0.0021099076580638476 -1.0049511888721712 1.0 7728 -Biological Process GO:0021515 cell differentiation in spinal cord 0.002099150845007003 -1.0051461540743198 1.0 7729 -Phenotype MP:0000527 abnormal kidney development 0.0020711325160764904 -1.005653980986895 1.0 7730 -Biological Process GO:0018208 peptidyl-proline modification 0.0020128036012180273 -1.0067111815365746 1.0 7731 -Phenotype MP:0004465 degeneration of organ of Corti supporting cells 0.002008325420848167 -1.0067923477087906 1.0 7732 -Biological Process GO:0042157 lipoprotein metabolic process 0.0019197717198501385 -1.0083973667906376 1.0 7733 -Biological Process GO:0097435 supramolecular fiber organization 0.001867655892868747 -1.0093419562976673 1.0 7734 -Phenotype MP:0009231 detached acrosome 0.0018473044660245463 -1.0097108220600195 1.0 7735 -Phenotype MP:0004110 transposition of great arteries 0.001842117523017106 -1.009804834420989 1.0 7736 -Phenotype MP:0001152 increased Leydig cell number 0.001801325681901167 -1.0105441788259868 1.0 7737 -Biological Process GO:0001967 suckling behavior 0.0017977392652229751 -1.0106091819499565 1.0 7738 -Phenotype MP:0011129 decreased tertiary ovarian follicle number 0.0017972117109585906 -1.0106187437712186 1.0 7739 -Biological Process GO:0035726 common myeloid progenitor cell proliferation 0.0017892668445295135 -1.0107627429725812 1.0 7740 -Biological Process GO:0042670 retinal cone cell differentiation 0.0016685904867942414 -1.0129499791322218 1.0 7741 -Phenotype MP:0000749 muscle degeneration 0.0016608631617299752 -1.013090035437492 1.0 7742 -Phenotype MP:0012007 abnormal chloride level 0.0016558448971395467 -1.0131809905340563 1.0 7743 -Phenotype MP:0003966 abnormal adrenocorticotropin level 0.0016539469871799106 -1.0132153897931107 1.0 7744 -Phenotype MP:0003324 increased liver adenoma incidence 0.0016367118693819682 -1.0135277730434074 1.0 7745 -Phenotype MP:0004617 sacral vertebral transformation 0.0016280668300494572 -1.0136844627462163 1.0 7746 -Phenotype MP:0009436 fragmentation of sleep/wake states 0.001614696410553007 -1.0139267990707541 1.0 7747 -Phenotype MP:0005299 abnormal eye posterior chamber morphology 0.001547116996238107 -1.015151663173474 1.0 7748 -Phenotype MP:0020421 increased freezing behavior 0.001516934691409344 -1.015698711739918 1.0 7749 -Biological Process GO:0000075 cell cycle checkpoint signaling 0.0014974283455936321 -1.0160522605684648 1.0 7750 -Biological Process GO:0051303 establishment of chromosome localization 0.0014812613013167608 -1.016345285188204 1.0 7751 -Phenotype MP:0009339 decreased splenocyte number 0.0014662627635922965 -1.016617130847688 1.0 7752 -Biological Process GO:0097164 ammonium ion metabolic process 0.0014582811420915665 -1.0167617962277724 1.0 7753 -Phenotype MP:0006109 fibrillation 0.0013830964368896081 -1.0181245047893814 1.0 7754 -Biological Process GO:0002710 negative regulation of T cell mediated immunity 0.0013814926778467074 -1.0181535726187045 1.0 7755 -Biological Process GO:1902806 regulation of cell cycle G1/S phase transition 0.0013663022509334821 -1.0184288962334418 1.0 7756 -Biological Process GO:0045669 positive regulation of osteoblast differentiation 0.0013357984722368599 -1.0189817714529383 1.0 7757 -Phenotype MP:0000223 decreased monocyte cell number 0.0013147522142455959 -1.019363230898413 1.0 7758 -Phenotype MP:0008446 decreased retina cone cell number 0.0012841461135724153 -1.019917960684382 1.0 7759 -Phenotype MP:0006018 abnormal tympanic membrane morphology 0.001281359015788297 -1.019968476304577 1.0 7760 -Biological Process GO:0001675 acrosome assembly 0.001270305181647502 -1.0201688249576948 1.0 7761 -Phenotype MP:0003123 paternal imprinting 0.001257235998758155 -1.020405701425704 1.0 7762 -Biological Process GO:0002209 behavioral defense response 0.0012398844761452033 -1.0207201944912565 1.0 7763 -Phenotype MP:0004494 abnormal synaptic glutamate release 0.0012047066904413706 -1.0213577852037332 1.0 7764 -Phenotype MP:0011309 abnormal kidney arterial blood vessel morphology 0.0012023109111121144 -1.0214012082509465 1.0 7765 -Phenotype MP:0002818 abnormal dentin morphology 0.0011699375373573906 -1.0219879695272622 1.0 7766 -Phenotype MP:0004791 absent lower incisors 0.0011503056555217661 -1.0223437936724264 1.0 7767 -Phenotype MP:0011699 abnormal brown adipose tissue thermogenesis 0.0011499058704879106 -1.022351039700551 1.0 7768 -Phenotype MP:0004119 hypokalemia 0.001079677895616693 -1.0236239084624146 1.0 7769 -Biological Process GO:0002714 positive regulation of B cell mediated immunity 0.0010434176400389017 -1.024281118736622 1.0 7770 -Biological Process GO:0002891 positive regulation of immunoglobulin mediated immune response 0.0010434176400389017 -1.024281118736622 1.0 7770 -Phenotype MP:0009946 abnormal olfactory bulb layer morphology 0.001008386864384092 -1.0249160449197652 1.0 7772 -Biological Process GO:0071827 plasma lipoprotein particle organization 0.0010022428417894025 -1.0250274041672345 1.0 7773 -Phenotype MP:0030805 abnormal limb joint morphology 0.001000217667678882 -1.0250641100649533 1.0 7774 -Biological Process GO:0034311 diol metabolic process 0.0009750275301373401 -1.0255206765435179 1.0 7775 -Biological Process GO:0002562 somatic diversification of immune receptors via germline recombination within a single locus 0.0009646006437664667 -1.0257096618868846 1.0 7776 -Biological Process GO:0016444 somatic cell DNA recombination 0.0009646006437664667 -1.0257096618868846 1.0 7776 -Biological Process GO:0006029 proteoglycan metabolic process 0.0009362831763074508 -1.0262229106287108 1.0 7778 -Biological Process GO:0043584 nose development 0.0008690980460027697 -1.0274406284083188 1.0 7779 -Phenotype MP:0008321 small adenohypophysis 0.0008108317791585273 -1.0284966934745896 1.0 7780 -Biological Process GO:0055081 monoatomic anion homeostasis 0.0008061972668561568 -1.0285806931335144 1.0 7781 -Biological Process GO:1905039 carboxylic acid transmembrane transport 0.0007858399524328652 -1.0289496656071242 1.0 7782 -Biological Process GO:0090075 relaxation of muscle 0.0007648029910548582 -1.029330956553242 1.0 7783 -Phenotype MP:0012106 impaired exercise endurance 0.0006838433483737916 -1.0307983347644083 1.0 7784 -Biological Process GO:0097237 cellular response to toxic substance 0.0006723374567971785 -1.0310068768730496 1.0 7785 -Biological Process GO:0065004 protein-DNA complex assembly 0.0006135403845415333 -1.0320725626870073 1.0 7786 -Phenotype MP:0010097 abnormal retina blood vessel morphology 0.0004433522710827198 -1.0351571900546543 1.0 7787 -Biological Process GO:0006878 intracellular copper ion homeostasis 0.00043281688112517536 -1.0353481420050075 1.0 7788 -Phenotype MP:0012288 abnormal paradoxical sleep pattern 0.00042553313926085856 -1.0354801584486764 1.0 7789 -Phenotype MP:0005361 small pituitary gland 0.0004067470221421621 -1.0358206532683112 1.0 7790 -Phenotype MP:0000636 enlarged pituitary gland 0.0004043298934448547 -1.0358644632687823 1.0 7791 -Phenotype MP:0005191 head tilt 0.0003295802600602471 -1.0372192862359901 1.0 7792 -Biological Process GO:1903313 positive regulation of mRNA metabolic process 0.00032277909283873196 -1.0373425561055307 1.0 7793 -Biological Process GO:0006684 sphingomyelin metabolic process 0.0003184820580418579 -1.0374204390484976 1.0 7794 -Biological Process GO:0060324 face development 0.00031259637226421777 -1.037527115990019 1.0 7795 -Phenotype MP:0001496 audiogenic seizures 0.00030884530739927474 -1.0375951033312325 1.0 7796 -Biological Process GO:0045143 homologous chromosome segregation 0.0002938811492506632 -1.0378663258674068 1.0 7797 -Phenotype MP:0005553 increased circulating creatinine level 0.0002914130184574759 -1.0379110602712196 1.0 7798 -Phenotype MP:0008114 abnormal Kupffer cell morphology 0.0002826598811569436 -1.0380697092292535 1.0 7799 -Biological Process GO:1900048 positive regulation of hemostasis 0.00026845102149242184 -1.038327242123258 1.0 7800 -Biological Process GO:0030194 positive regulation of blood coagulation 0.00026845102149242184 -1.038327242123258 1.0 7800 -Phenotype MP:0010392 prolonged QRS complex duration 0.00026578285941125657 -1.0383756020563322 1.0 7802 -Phenotype MP:0003235 abnormal alisphenoid bone morphology 0.00025347446152579334 -1.0385986894400383 1.0 7803 -Biological Process GO:0045652 regulation of megakaryocyte differentiation 0.00024160103889014906 -1.038813892979611 1.0 7804 -Biological Process GO:0051341 regulation of oxidoreductase activity 0.00022545850842059512 -1.039106473291229 1.0 7805 -Biological Process GO:0055070 copper ion homeostasis 0.00019321543468708846 -1.0396908729043048 1.0 7806 -Phenotype MP:0004805 absent oocytes 0.00017635148410499735 -1.0399965288190156 1.0 7807 -Phenotype MP:0010047 axonal spheroids 0.00014778415655702926 -1.0405143062276967 1.0 7808 -Phenotype MP:0020551 abnormal postsynaptic density morphology 0.000106701780471119 -1.0412589165240744 1.0 7809 -Biological Process GO:1900273 positive regulation of long-term synaptic potentiation 8.588040214407844e-05 -1.0416363000681683 1.0 7810 -Biological Process GO:2000311 regulation of AMPA receptor activity 7.319818293116676e-05 -1.041866162892731 1.0 7811 -Biological Process GO:0035136 forelimb morphogenesis 6.878729499248948e-05 -1.0419461094023594 1.0 7812 -Biological Process GO:0007617 mating behavior 5.049523247757648e-05 -1.0422776495757444 1.0 7813 -Biological Process GO:0006672 ceramide metabolic process 3.6429356952694114e-05 -1.0425325909092615 1.0 7814 -Biological Process GO:0043031 negative regulation of macrophage activation 3.5318702277353786e-05 -1.0425527213151868 1.0 7815 -Biological Process GO:0006023 aminoglycan biosynthetic process -1.5245758145265853e-05 -1.0434691925967587 1.0 7816 -Phenotype MP:0012034 abnormal a-wave shape -2.3152121845670948e-05 -1.0436124939434461 1.0 7817 -Phenotype MP:0009168 decreased pancreatic islet number -0.00011235919502006197 -1.0452293552724132 1.0 7818 -Phenotype MP:0008044 increased NK cell number -0.00016033577277041466 -1.0460989216700136 1.0 7819 -Biological Process GO:0007585 respiratory gaseous exchange by respiratory system -0.0001739491030154916 -1.0463456607059272 1.0 7820 -Phenotype MP:0005619 increased urine potassium level -0.00023496019127899892 -1.047451475141276 1.0 7821 -Phenotype MP:0001522 impaired swimming -0.00025442158488453437 -1.0478042092195154 1.0 7822 -Phenotype MP:0008439 abnormal cortical plate morphology -0.0003024225100081157 -1.0486742169086505 1.0 7823 -Biological Process GO:0044283 small molecule biosynthetic process -0.0003203210529614253 -1.0489986246144105 1.0 7824 -Phenotype MP:0000436 abnormal head movements -0.000328789175445543 -1.0491521077328034 1.0 7825 -Phenotype MP:0000737 abnormal myotome development -0.00033565162522930514 -1.0492764883371941 1.0 7826 -Phenotype MP:0012031 abnormal b-wave amplitude -0.0003471513422868 -1.0494849185338442 1.0 7827 -Phenotype MP:0012035 abnormal b-wave shape -0.0003471513422868 -1.0494849185338442 1.0 7827 -Phenotype MP:0005146 decreased circulating VLDL cholesterol level -0.0004161742621759945 -1.0507359459020784 1.0 7829 -Phenotype MP:0030818 abnormal girdle joint morphology -0.0004884226400960756 -1.0520454340870704 1.0 7830 -Phenotype MP:0014451 decreased circulating enzyme level -0.0005021512894940461 -1.052294263260819 1.0 7831 -Biological Process GO:0001502 cartilage condensation -0.0005139797739353025 -1.052508652304118 1.0 7832 -Phenotype MP:0005032 abnormal ectoplacental cone morphology -0.0005438465763016875 -1.0530499824481045 1.0 7833 -Phenotype MP:0012056 abnormal polar trophectoderm morphology -0.0005438465763016875 -1.0530499824481045 1.0 7833 -Phenotype MP:0011496 abnormal head size -0.0005528309831905887 -1.0532128231236861 1.0 7835 -Phenotype MP:0003997 tonic-clonic seizures -0.000592692543681661 -1.0539353063683083 1.0 7836 -Phenotype MP:0004101 abnormal brain interneuron morphology -0.0006294774139512516 -1.054602025184581 1.0 7837 -Phenotype MP:0000538 abnormal urinary bladder morphology -0.0006402861366936463 -1.0547979312399622 1.0 7838 -Biological Process GO:0097094 craniofacial suture morphogenesis -0.0006699640638936355 -1.055335838057281 1.0 7839 -Biological Process GO:0016126 sterol biosynthetic process -0.0006836451837182178 -1.0555838057665017 1.0 7840 -Phenotype MP:0000958 peripheral nervous system degeneration -0.0007369290656247252 -1.0565495660481272 1.0 7841 -Phenotype MP:0000776 abnormal inferior colliculus morphology -0.0007451255540626978 -1.05669812585081 1.0 7842 -Phenotype MP:0004204 absent stapes -0.000789709143791173 -1.0575061949822517 1.0 7843 -Phenotype MP:0014116 abnormal pancreatic beta cell apoptosis -0.0008360540352834178 -1.0583461873750353 1.0 7844 -Biological Process GO:0051258 protein polymerization -0.000845559239242677 -1.0585184673990153 1.0 7845 -Biological Process GO:0050995 negative regulation of lipid catabolic process -0.0008861870343883638 -1.0592548385018297 1.0 7846 -Phenotype MP:0011854 cerebral edema -0.0009069122664038254 -1.059630479412211 1.0 7847 -Biological Process GO:0042415 norepinephrine metabolic process -0.000922999104302713 -1.059922050306519 1.0 7848 -Phenotype MP:0003089 decreased skin tensile strength -0.0009367457305524685 -1.0601712053073062 1.0 7849 -Biological Process GO:0060872 semicircular canal development -0.0009773754781123856 -1.0609076117972591 1.0 7850 -Phenotype MP:0011475 abnormal glycosaminoglycan level -0.0009813268944418585 -1.0609792304708736 1.0 7851 -Biological Process GO:0046364 monosaccharide biosynthetic process -0.0010427454856569707 -1.0620924308201465 1.0 7852 -Phenotype MP:0009759 abnormal hair follicle bulge morphology -0.0010451489742522302 -1.0621359935963481 1.0 7853 -Biological Process GO:0048634 regulation of muscle organ development -0.001061060166151595 -1.062424380940136 1.0 7854 -Phenotype MP:0000644 dextrocardia -0.0011050343860072864 -1.0632214053578877 1.0 7855 -Biological Process GO:0006188 IMP biosynthetic process -0.001118809546428956 -1.0634710775351441 1.0 7856 -Phenotype MP:0012779 abnormal brain cholesterol level -0.0011419567610555514 -1.0638906164222666 1.0 7857 -Phenotype MP:0030123 small middle ear ossicles -0.0011800881595986912 -1.0645817408088196 1.0 7858 -Phenotype MP:0011047 increased lung tissue damping -0.0011833830019372105 -1.06464145920303 1.0 7859 -Biological Process GO:0035335 peptidyl-tyrosine dephosphorylation -0.0011852554659661507 -1.0646753972594032 1.0 7860 -Biological Process GO:0033273 response to vitamin -0.001253985762925236 -1.065921120892375 1.0 7861 -Biological Process GO:1901976 regulation of cell cycle checkpoint -0.0012650311595199248 -1.0661213166165653 1.0 7862 -Biological Process GO:0007129 homologous chromosome pairing at meiosis -0.0013688519556047662 -1.068003048909295 1.0 7863 -Phenotype MP:0005640 abnormal mean corpuscular hemoglobin concentration -0.0014211241735402336 -1.068950472972788 1.0 7864 -Biological Process GO:0060080 inhibitory postsynaptic potential -0.0014690110992763294 -1.0698184144445864 1.0 7865 -Phenotype MP:0005532 abnormal vascular resistance -0.001480235541196695 -1.0700218553314407 1.0 7866 -Phenotype MP:0004109 abnormal Sertoli cell development -0.0015296964963416038 -1.0709183257885675 1.0 7867 -Phenotype MP:0004819 decreased skeletal muscle mass -0.0015404455405232387 -1.0711131501813222 1.0 7868 -Phenotype MP:0002204 abnormal synaptic neurotransmitter level -0.0016674163392795815 -1.073414471893961 1.0 7869 -Biological Process GO:1903825 organic acid transmembrane transport -0.001674546396194243 -1.073543702826985 1.0 7870 -Phenotype MP:0000102 abnormal nasal bone morphology -0.0017001240929139794 -1.0740072937423526 1.0 7871 -Phenotype MP:0003930 abnormal tooth hard tissue morphology -0.0017002302705237948 -1.0740092181914485 1.0 7872 -Phenotype MP:0003084 abnormal skeletal muscle fiber morphology -0.0017083639979882381 -1.0741566404633562 1.0 7873 -Phenotype MP:0014259 embryonic lethality prior to organogenesis, complete penetrance -0.001708713468671963 -1.0741629745534012 1.0 7874 -Phenotype MP:0013836 abnormal hypoglossal nerve topology -0.0017123408000105922 -1.0742287192478528 1.0 7875 -Phenotype MP:0001310 abnormal conjunctiva morphology -0.0017453849045678815 -1.0748276373931056 1.0 7876 -Biological Process GO:0048664 neuron fate determination -0.0017638874120100567 -1.0751629918409944 1.0 7877 -Phenotype MP:0011639 decreased mitochondrial DNA content -0.001781904454554173 -1.075489547329425 1.0 7878 -Phenotype MP:0000298 absent atrioventricular cushions -0.0017930659390190673 -1.0756918471243064 1.0 7879 -Biological Process GO:0042770 signal transduction in response to DNA damage -0.0017998141600614748 -1.075814157354365 1.0 7880 -Biological Process GO:0006094 gluconeogenesis -0.0018052315060308466 -1.0759123457254416 1.0 7881 -Phenotype MP:0010825 abnormal lung saccule morphology -0.0018065641559024126 -1.0759364997523109 1.0 7882 -Phenotype MP:0030385 absent facial bone -0.0018680797501626767 -1.0770514582634303 1.0 7883 -Phenotype MP:0002313 abnormal tidal volume -0.0019258784407469864 -1.0780990485984256 1.0 7884 -Phenotype MP:0005504 abnormal ligament morphology -0.0019271438206429625 -1.0781219833697107 1.0 7885 -Biological Process GO:0030502 negative regulation of bone mineralization -0.0019294459838072875 -1.0781637096416408 1.0 7886 -Biological Process GO:1990748 cellular detoxification -0.0019370656337986958 -1.0783018143565806 1.0 7887 -Biological Process GO:0034220 monoatomic ion transmembrane transport -0.0019512776889247796 -1.0785594051677216 1.0 7888 -Biological Process GO:0045185 maintenance of protein location -0.001988750254503069 -1.0792385883313962 1.0 7889 -Biological Process GO:0045814 negative regulation of gene expression, epigenetic -0.002019655883479965 -1.079798747011218 1.0 7890 -Phenotype MP:0001149 testicular hyperplasia -0.002060556931143376 -1.080540070764234 1.0 7891 -Biological Process GO:0017148 negative regulation of translation -0.0020973356874127713 -1.0812066787654095 1.0 7892 -Phenotype MP:0020394 decreased neuronal precursor proliferation -0.0021539912534938033 -1.0822335501849893 1.0 7893 -Phenotype MP:0003952 abnormal copper level -0.002192722565662164 -1.0829355478925338 1.0 7894 -Biological Process GO:0043038 amino acid activation -0.002196777128970817 -1.083009036085637 1.0 7895 -Biological Process GO:0015748 organophosphate ester transport -0.0022598820577004464 -1.0841528009834125 1.0 7896 -Biological Process GO:0006412 translation -0.002283429763676237 -1.0845795987004918 1.0 7897 -Phenotype MP:0004422 small temporal bone -0.0023060267239831678 -1.0849891643321437 1.0 7898 -Phenotype MP:0010607 common atrioventricular valve -0.002351213571218258 -1.0858081673917948 1.0 7899 -Biological Process GO:0031646 positive regulation of nervous system process -0.002382118169643288 -1.086368307393059 1.0 7900 -Phenotype MP:0030977 impaired sperm-egg recognition -0.0024276284719180197 -1.0871931730141267 1.0 7901 -Phenotype MP:0030978 impaired binding of sperm to zona pellucida -0.0024276284719180197 -1.0871931730141267 1.0 7901 -Phenotype MP:0011198 absent proamniotic cavity -0.0024603898849262507 -1.0877869674285199 1.0 7903 -Phenotype MP:0020147 abnormal defecation amount -0.002525548902939656 -1.0889679623060606 1.0 7904 -Phenotype MP:0001440 abnormal grooming behavior -0.002581717895748792 -1.089986014677116 1.0 7905 -Phenotype MP:0004737 absent distortion product otoacoustic emissions -0.0026352747552813582 -1.090956722626584 1.0 7906 -Phenotype MP:0003934 abnormal pancreas development -0.002635755422159436 -1.0909654346228372 1.0 7907 -Phenotype MP:0012436 increased colon tumor incidence -0.0026473238625182027 -1.091175110416325 1.0 7908 -Phenotype MP:0001947 abnormal mucociliary clearance -0.002664290474822417 -1.0914826270553322 1.0 7909 -Phenotype MP:0003104 acrania -0.002679807276843027 -1.0917638661571611 1.0 7910 -Phenotype MP:0013484 abnormal Paneth cell number -0.002686525310931165 -1.0918856292543828 1.0 7911 -Biological Process GO:0000271 polysaccharide biosynthetic process -0.0027088700184290104 -1.0922906228515803 1.0 7912 -Phenotype MP:0012551 metabolic acidosis -0.0027152896870688004 -1.0924069781314825 1.0 7913 -Biological Process GO:0045161 neuronal ion channel clustering -0.002726639439989631 -1.0926126902565192 1.0 7914 -Biological Process GO:0072348 sulfur compound transport -0.0027553759063301264 -1.0931335332738243 1.0 7915 -Phenotype MP:0003963 abnormal corticosterone level -0.0027811462673423826 -1.0936006161930543 1.0 7916 -Phenotype MP:0002279 abnormal diaphragm morphology -0.0028857613980544095 -1.095496745650664 1.0 7917 -Biological Process GO:0010906 regulation of glucose metabolic process -0.0028912606766653415 -1.0955964190353724 1.0 7918 -Phenotype MP:0005285 decreased unsaturated fatty acids level -0.0028919085601608607 -1.0956081618011904 1.0 7919 -Biological Process GO:0007586 digestion -0.0029382634499599547 -1.0964483354113945 1.0 7920 -Phenotype MP:0006332 abnormal cochlear potential -0.0029438214301036325 -1.0965490727502816 1.0 7921 -Phenotype MP:0010943 abnormal bronchus epithelium morphology -0.0029482701431191582 -1.0966297048322737 1.0 7922 -Phenotype MP:0010237 abnormal skeletal muscle weight -0.002959843611067603 -1.0968394717498733 1.0 7923 -Phenotype MP:0030080 small lower incisors -0.0029690740627701384 -1.0970067719411658 1.0 7924 -Phenotype MP:0001328 disorganized retina layers -0.0029879452656864647 -1.09734880892479 1.0 7925 -Biological Process GO:1904936 interneuron migration -0.003052657038444373 -1.098521697566665 1.0 7926 -Biological Process GO:0006662 glycerol ether metabolic process -0.0031170322301246056 -1.0996884857401672 1.0 7927 -Biological Process GO:0046485 ether lipid metabolic process -0.0031170322301246056 -1.0996884857401672 1.0 7927 -Phenotype MP:0003011 delayed dark adaptation -0.0031665841683863327 -1.1005866052490778 1.0 7929 -Biological Process GO:0006084 acetyl-CoA metabolic process -0.003167133159018176 -1.1005965556004458 1.0 7930 -Phenotype MP:0002969 impaired social transmission of food preference -0.0032387922859375973 -1.1018953637224997 1.0 7931 -Biological Process GO:0006690 icosanoid metabolic process -0.0032647933507068405 -1.1023666281036903 1.0 7932 -Biological Process GO:1990403 embryonic brain development -0.0032869503031112135 -1.1027682186753298 1.0 7933 -Biological Process GO:0044848 biological phase -0.003301852308434494 -1.1030383147033003 1.0 7934 -Phenotype MP:0005632 decreased circulating aspartate transaminase level -0.0033178988479687366 -1.1033291551973712 1.0 7935 -Phenotype MP:0002237 abnormal nasal cavity morphology -0.0033241607421758967 -1.1034426508455228 1.0 7936 -Phenotype MP:0010936 decreased airway resistance -0.0033875686396436233 -1.104591906994374 1.0 7937 -Phenotype MP:0003786 premature aging -0.0034756867539986747 -1.1061890311507023 1.0 7938 -Biological Process GO:0097154 GABAergic neuron differentiation -0.003507011605582866 -1.1067567881609912 1.0 7939 -Phenotype MP:0002779 abnormal sex gland secretion -0.0035483267860849654 -1.1075056179933809 1.0 7940 -Biological Process GO:0051580 regulation of neurotransmitter uptake -0.003549507910728833 -1.107527025654157 1.0 7941 -Phenotype MP:0014117 increased pancreatic beta cell apoptosis -0.0036030356894340976 -1.10849720651913 1.0 7942 -Biological Process GO:0042430 indole-containing compound metabolic process -0.003614260203111286 -1.1087006487065634 1.0 7943 -Phenotype MP:0005168 abnormal female meiosis -0.0036623314275767704 -1.1095719305579743 1.0 7944 -Biological Process GO:0045910 negative regulation of DNA recombination -0.003663635686568467 -1.1095955700055158 1.0 7945 -Biological Process GO:0048167 regulation of synaptic plasticity -0.0036682935705114605 -1.1096799932710064 1.0 7946 -Phenotype MP:0011458 abnormal urine chloride ion level -0.003759674381478728 -1.111336253186336 1.0 7947 -Phenotype MP:0011954 shortened PQ interval -0.003765743021326262 -1.1114462461357708 1.0 7948 -Biological Process GO:0099623 regulation of cardiac muscle cell membrane repolarization -0.003777206135226363 -1.1116540129071164 1.0 7949 -Phenotype MP:0031085 increased erythrocyte osmotic fragility -0.003791530170210944 -1.1119136333320132 1.0 7950 -Phenotype MP:0020444 abnormal intestine apoptosis -0.003791712438438344 -1.1119169369091613 1.0 7951 -Phenotype MP:0004452 abnormal pterygoid process morphology -0.003829623778522473 -1.1126040727777657 1.0 7952 -Biological Process GO:0019319 hexose biosynthetic process -0.0038374758714272428 -1.1127463904765469 1.0 7953 -Biological Process GO:0008299 isoprenoid biosynthetic process -0.003865801768702992 -1.113259792007207 1.0 7954 -Phenotype MP:0020301 short tongue -0.003883058665449912 -1.1135725699968348 1.0 7955 -Phenotype MP:0001388 abnormal stationary movement -0.0038916058224480743 -1.1137274856008468 1.0 7956 -Biological Process GO:0060632 regulation of microtubule-based movement -0.0039050888822542706 -1.1139718635096945 1.0 7957 -Phenotype MP:0012314 enhanced learning -0.00394404287266048 -1.1146778972181834 1.0 7958 -Biological Process GO:0006584 catecholamine metabolic process -0.0039809079168160455 -1.1153460691709753 1.0 7959 -Biological Process GO:0009712 catechol-containing compound metabolic process -0.0039809079168160455 -1.1153460691709753 1.0 7959 -Phenotype MP:0010160 increased oligodendrocyte number -0.003981129379682757 -1.1153500831435479 1.0 7961 -Phenotype MP:0009839 multiflagellated sperm -0.003999155471599458 -1.1156768026501451 1.0 7962 -Phenotype MP:0002901 increased urine phosphate level -0.0040923618936246076 -1.117366151420609 1.0 7963 -Phenotype MP:0000925 abnormal floor plate morphology -0.004119347558062314 -1.1178552614845667 1.0 7964 -Biological Process GO:0050000 chromosome localization -0.004170389918577877 -1.118780394614935 1.0 7965 -Phenotype MP:0004413 absent cochlear microphonics -0.00418254987022193 -1.119000791438592 1.0 7966 -Biological Process GO:0044242 cellular lipid catabolic process -0.004288734361825641 -1.12092536526554 1.0 7967 -Biological Process GO:2000134 negative regulation of G1/S transition of mitotic cell cycle -0.0042960529475792875 -1.1210580132481127 1.0 7968 -Phenotype MP:0020130 abnormal total fat pad weight -0.004304858146426227 -1.1212176058118286 1.0 7969 -Phenotype MP:0030531 abnormal facial skin morphology -0.004345669696388832 -1.1219573074359448 1.0 7970 -Biological Process GO:0010831 positive regulation of myotube differentiation -0.004357782306173563 -1.1221768461973556 1.0 7971 -Phenotype MP:0008936 abnormal pituitary gland size -0.004372878846539363 -1.122450468136178 1.0 7972 -Phenotype MP:0005360 urolithiasis -0.004386225357029927 -1.1226923711145065 1.0 7973 -Phenotype MP:0008974 proportional dwarf -0.004401974379800722 -1.1229778191735111 1.0 7974 -Biological Process GO:0006974 DNA damage response -0.0044343527769989954 -1.1235646714987912 1.0 7975 -Biological Process GO:0007549 sex-chromosome dosage compensation -0.004438801129741821 -1.1236452970509088 1.0 7976 -Biological Process GO:0009048 dosage compensation by inactivation of X chromosome -0.004438801129741821 -1.1236452970509088 1.0 7976 -Phenotype MP:0004073 caudal body truncation -0.004466857919202427 -1.1241538210533177 1.0 7978 -Phenotype MP:0012107 enhanced exercise endurance -0.004493690470767309 -1.124640155975415 1.0 7979 -Biological Process GO:0072524 pyridine-containing compound metabolic process -0.004591547399128704 -1.1264137942936425 1.0 7980 -Biological Process GO:1901987 regulation of cell cycle phase transition -0.004660527285539784 -1.127664041688225 1.0 7981 -Biological Process GO:1902807 negative regulation of cell cycle G1/S phase transition -0.004729509557813483 -1.1289143323261162 1.0 7982 -Biological Process GO:0051154 negative regulation of striated muscle cell differentiation -0.004757725979208649 -1.1294257496271467 1.0 7983 -Biological Process GO:0016311 dephosphorylation -0.00476275073197252 -1.1295168223206276 1.0 7984 -Biological Process GO:0009395 phospholipid catabolic process -0.0048095099272218444 -1.1303643238906482 1.0 7985 -Biological Process GO:0050691 regulation of defense response to virus by host -0.004921333054568544 -1.132391096923966 1.0 7986 -Biological Process GO:1903312 negative regulation of mRNA metabolic process -0.004950564196920082 -1.1329209058504097 1.0 7987 -Phenotype MP:0006133 calcified artery -0.00496456748177998 -1.1331747127399623 1.0 7988 -Phenotype MP:0014023 abnormal intestine placement -0.004986209562704236 -1.1335669713634056 1.0 7989 -Phenotype MP:0004343 small scapula -0.004991901133795773 -1.1336701300129557 1.0 7990 -Phenotype MP:0012506 brain atrophy -0.0049922389451970695 -1.1336762527807116 1.0 7991 -Biological Process GO:0043043 peptide biosynthetic process -0.005072738504878771 -1.1351352920745328 1.0 7992 -Phenotype MP:0003686 abnormal eye muscle morphology -0.005092645972209819 -1.1354961111546782 1.0 7993 -Biological Process GO:0003254 regulation of membrane depolarization -0.005120830989807423 -1.1360069592678175 1.0 7994 -Phenotype MP:0003951 abnormal copper homeostasis -0.005121622435067863 -1.1360213040634717 1.0 7995 -Phenotype MP:0010813 abnormal alveolar lamellar body morphology -0.005134117928660142 -1.1362477825214772 1.0 7996 -Biological Process GO:0043484 regulation of RNA splicing -0.005182324846019215 -1.13712152378092 1.0 7997 -Phenotype MP:0020486 abnormal lens topology -0.005186309320172722 -1.1371937416213425 1.0 7998 -Phenotype MP:0005353 abnormal patella morphology -0.0052019416386479556 -1.1374770744370633 1.0 7999 -Biological Process GO:0016445 somatic diversification of immunoglobulins -0.005239996342417452 -1.1381668087453496 1.0 8000 -Biological Process GO:0033151 V(D)J recombination -0.005240141922881136 -1.1381694473637194 1.0 8001 -Phenotype MP:0008259 abnormal optic disk morphology -0.005295905951557378 -1.1391801598364597 1.0 8002 -Biological Process GO:0061484 hematopoietic stem cell homeostasis -0.0053197650626546356 -1.1396126017124675 1.0 8003 -Phenotype MP:0020166 abnormal tibialis anterior weight -0.005321675390855818 -1.139647226049801 1.0 8004 -Phenotype MP:0011731 decreased myelin sheath thickness -0.005335356798823243 -1.1398951989815562 1.0 8005 -Phenotype MP:0009022 abnormal brain meninges morphology -0.005361546349899715 -1.1403698796414157 1.0 8006 -Biological Process GO:0140354 lipid import into cell -0.0053898099948983536 -1.1408821528613273 1.0 8007 -Phenotype MP:0008820 abnormal blood uric acid level -0.0053924880229931915 -1.1409306916140334 1.0 8008 -Biological Process GO:0000018 regulation of DNA recombination -0.005403434991796852 -1.1411291033531277 1.0 8009 -Phenotype MP:0004600 abnormal vertebral transverse process morphology -0.00540846246953719 -1.1412202254362915 1.0 8010 -Biological Process GO:1902653 secondary alcohol biosynthetic process -0.005420446804876411 -1.141437439247639 1.0 8011 -Biological Process GO:0006695 cholesterol biosynthetic process -0.005420446804876411 -1.141437439247639 1.0 8011 -Phenotype MP:0003120 abnormal tracheal cartilage morphology -0.005451045029748247 -1.141992026286198 1.0 8013 -Biological Process GO:0051480 regulation of cytosolic calcium ion concentration -0.005467788226823034 -1.1422954935664278 1.0 8014 -Biological Process GO:0051606 detection of stimulus -0.00549842422746849 -1.142850765283739 1.0 8015 -Phenotype MP:0004621 lumbar vertebral fusion -0.005540812242200266 -1.1436190400336292 1.0 8016 -Biological Process GO:0042304 regulation of fatty acid biosynthetic process -0.005548363189940453 -1.14375589953326 1.0 8017 -Biological Process GO:0061744 motor behavior -0.005640787144530979 -1.1454310662294644 1.0 8018 -Phenotype MP:0014414 increased depression-related behavior -0.00564326905070911 -1.145476050309524 1.0 8019 -Phenotype MP:0002800 abnormal short-term object recognition memory -0.005648750221942445 -1.1455753955014383 1.0 8020 -Biological Process GO:0007588 excretion -0.005688287302126671 -1.1462919976018702 1.0 8021 -Biological Process GO:0006367 transcription initiation at RNA polymerase II promoter -0.005697192407166929 -1.146453400946444 1.0 8022 -Biological Process GO:0090208 positive regulation of triglyceride metabolic process -0.005707160714612192 -1.146634074633518 1.0 8023 -Phenotype MP:0011062 abnormal outer hair cell kinocilium morphology -0.005720745001638772 -1.1468802872665893 1.0 8024 -Phenotype MP:0006264 decreased systemic arterial systolic blood pressure -0.005735177889709897 -1.1471418806330917 1.0 8025 -Phenotype MP:0004330 abnormal vestibular saccular macula morphology -0.005812046188416353 -1.1485351040085408 1.0 8026 -Biological Process GO:0034587 piRNA processing -0.005868094854425854 -1.1495509754791113 1.0 8027 -Biological Process GO:0170033 L-amino acid metabolic process -0.005933340644854512 -1.1507335430902665 1.0 8028 -Biological Process GO:1901136 carbohydrate derivative catabolic process -0.0059468675456024744 -1.150978715607892 1.0 8029 -Phenotype MP:0002711 decreased glucagon secretion -0.005948907301456474 -1.1510156857969531 1.0 8030 -Biological Process GO:0060920 cardiac pacemaker cell differentiation -0.005985295791042011 -1.1516752202882974 1.0 8031 -Biological Process GO:0048820 hair follicle maturation -0.006045371687879664 -1.1527640845559315 1.0 8032 -Phenotype MP:0002696 decreased circulating glucagon level -0.006150901475550974 -1.154676791997933 1.0 8033 -Phenotype MP:0005655 increased aggression -0.006161146101544057 -1.1548624739064244 1.0 8034 -Biological Process GO:0098764 meiosis I cell cycle phase -0.006207057756969947 -1.1556946139774462 1.0 8035 -Phenotype MP:0009398 abnormal skeletal muscle fiber size -0.006418047784881198 -1.15951876832741 1.0 8036 -Biological Process GO:0046165 alcohol biosynthetic process -0.006428351767735707 -1.1597055260677882 1.0 8037 -Biological Process GO:0098739 import across plasma membrane -0.006437736864978838 -1.159875629180255 1.0 8038 -Biological Process GO:0072527 pyrimidine-containing compound metabolic process -0.006443910629571947 -1.1599875274958205 1.0 8039 -Biological Process GO:0018958 phenol-containing compound metabolic process -0.006490680138632632 -1.1608352160017215 1.0 8040 -Biological Process GO:0021517 ventral spinal cord development -0.006551185156267181 -1.1619318580026368 1.0 8041 -Biological Process GO:0001824 blastocyst development -0.006566957771098059 -1.1622177336632684 1.0 8042 -Phenotype MP:0009869 abnormal descending aorta morphology -0.006576060281103802 -1.162382714935505 1.0 8043 -Biological Process GO:0062013 positive regulation of small molecule metabolic process -0.006582478914251899 -1.1624990514473161 1.0 8044 -Biological Process GO:0021871 forebrain regionalization -0.006684341307061414 -1.1643452880510863 1.0 8045 -Phenotype MP:0010571 shortened ST segment -0.006686201929572144 -1.1643790114821815 1.0 8046 -Phenotype MP:0009257 dilated seminiferous tubule -0.00670690914168337 -1.1647543257852067 1.0 8047 -Phenotype MP:0009125 decreased brown fat cell lipid droplet size -0.00671118761300904 -1.164831872268769 1.0 8048 -Phenotype MP:0003194 abnormal frequency of paradoxical sleep -0.00672661921748019 -1.165111567181128 1.0 8049 -Biological Process GO:0018904 ether metabolic process -0.006742249765902653 -1.165394867914977 1.0 8050 -Biological Process GO:0010596 negative regulation of endothelial cell migration -0.006758209671575477 -1.1656841381866954 1.0 8051 -Biological Process GO:0021978 telencephalon regionalization -0.006838474574040632 -1.167138924362849 1.0 8052 -Biological Process GO:0035303 regulation of dephosphorylation -0.006863577945258603 -1.1675939182182093 1.0 8053 -Phenotype MP:0001330 abnormal optic nerve morphology -0.006962423579655264 -1.1693854766463259 1.0 8054 -Phenotype MP:0000198 decreased circulating phosphate level -0.006999536390942973 -1.1700581393315261 1.0 8055 -Biological Process GO:0006026 aminoglycan catabolic process -0.007001846294775849 -1.1701000059016098 1.0 8056 -Phenotype MP:0001395 bidirectional circling -0.007030980520531305 -1.1706280582330801 1.0 8057 -Phenotype MP:0004730 abnormal circulating gastrin level -0.0070314575776471155 -1.1706367048030755 1.0 8058 -Biological Process GO:0006513 protein monoubiquitination -0.007058252605238069 -1.171122359610242 1.0 8059 -Phenotype MP:0014142 increased body fat mass -0.007091716033351458 -1.1717288779156396 1.0 8060 -Phenotype MP:0000886 abnormal cerebellar granule layer morphology -0.007095086857843214 -1.1717899734720065 1.0 8061 -Biological Process GO:0051100 negative regulation of binding -0.0071025175171455235 -1.1719246527664517 1.0 8062 -Biological Process GO:0010907 positive regulation of glucose metabolic process -0.007125046950871683 -1.1723329944915988 1.0 8063 -Phenotype MP:0031253 lordokyphosis -0.007151337421138271 -1.1728095042926916 1.0 8064 -Phenotype MP:0001552 increased circulating triglyceride level -0.007200875318932987 -1.1737073693207933 1.0 8065 -Biological Process GO:0032091 negative regulation of protein binding -0.007206444707317461 -1.173808313431887 1.0 8066 -Phenotype MP:0009434 paraparesis -0.007227869789945052 -1.1741966390022456 1.0 8067 -Phenotype MP:0009381 abnormal prostate gland dorsolateral lobe morphology -0.007239443268449275 -1.1744064061111668 1.0 8068 -Biological Process GO:0006518 peptide metabolic process -0.007395254831326525 -1.1772304612186544 1.0 8069 -Biological Process GO:0034755 iron ion transmembrane transport -0.007417731738385891 -1.1776378509079004 1.0 8070 -Biological Process GO:0048148 behavioral response to cocaine -0.007427709412443306 -1.1778186943630482 1.0 8071 -Phenotype MP:0008021 increased blastoma incidence -0.007575802665477083 -1.180502856564437 1.0 8072 -Biological Process GO:0009127 purine nucleoside monophosphate biosynthetic process -0.007684689362476238 -1.1824764073530918 1.0 8073 -Biological Process GO:0098581 detection of external biotic stimulus -0.007725137543720173 -1.1832095229879083 1.0 8074 -Biological Process GO:0035115 embryonic forelimb morphogenesis -0.00781060731021177 -1.1847586463401112 1.0 8075 -Biological Process GO:0050996 positive regulation of lipid catabolic process -0.007818542766580672 -1.1849024749859125 1.0 8076 -Phenotype MP:0003848 brittle hair -0.007857364385367882 -1.1856061094838433 1.0 8077 -Phenotype MP:0004773 abnormal bile composition -0.007873438186331683 -1.185897444086169 1.0 8078 -Phenotype MP:0000933 abnormal rhombomere morphology -0.007875396328286044 -1.1859329350387353 1.0 8079 -Phenotype MP:0010879 decreased trabecular bone volume -0.00787549000011345 -1.1859346328228904 1.0 8080 -Phenotype MP:0011118 abnormal susceptibility to weight loss -0.007892864346398243 -1.1862495395631782 1.0 8081 -Biological Process GO:0031297 replication fork processing -0.007917953578701287 -1.1867042771533798 1.0 8082 -Phenotype MP:0002574 increased vertical activity -0.007942517890709322 -1.1871495006625161 1.0 8083 -Phenotype MP:0000704 abnormal thymus development -0.007987181536627475 -1.1879590207972544 1.0 8084 -Biological Process GO:0009566 fertilization -0.008003463771703245 -1.1882541332284366 1.0 8085 -Biological Process GO:0002862 negative regulation of inflammatory response to antigenic stimulus -0.008045685759611176 -1.1890193987735465 1.0 8086 -Phenotype MP:0011903 decreased hematopoietic stem cell proliferation -0.008054452059817363 -1.1891782863067557 1.0 8087 -Biological Process GO:0007613 memory -0.008059608703413934 -1.1892717494966338 1.0 8088 -Phenotype MP:0002285 abnormal tracheal ciliated epithelium morphology -0.008075986965884185 -1.189568602406179 1.0 8089 -Biological Process GO:0043603 amide metabolic process -0.00808983661921836 -1.1898196247533852 1.0 8090 -Phenotype MP:0012316 enhanced conditioning behavior -0.008098646822819688 -1.1899793080273275 1.0 8091 -Biological Process GO:0010669 epithelial structure maintenance -0.008134321659949872 -1.1906259077028962 1.0 8092 -Phenotype MP:0002471 abnormal complement pathway -0.008164955591806633 -1.1911811419238036 1.0 8093 -Phenotype MP:0011665 d-loop transposition of the great arteries -0.008169093898966473 -1.1912561479583705 1.0 8094 -Biological Process GO:0003096 renal sodium ion transport -0.008227489419501355 -1.1923145557233374 1.0 8095 -Phenotype MP:0011046 abnormal lung tissue damping -0.008237720276893512 -1.1924999880785412 1.0 8096 -Phenotype MP:0005089 decreased double-negative T cell number -0.008291515655897586 -1.1934750191483172 1.0 8097 -Biological Process GO:0031109 microtubule polymerization or depolymerization -0.008345621168024842 -1.1944556713222934 1.0 8098 -Biological Process GO:0001885 endothelial cell development -0.008354985602730736 -1.1946253999301808 1.0 8099 -Biological Process GO:0071466 cellular response to xenobiotic stimulus -0.008410023222945373 -1.195622946386945 1.0 8100 -Biological Process GO:0033119 negative regulation of RNA splicing -0.008434081878481603 -1.1960590049681679 1.0 8101 -Biological Process GO:0032088 negative regulation of NF-kappaB transcription factor activity -0.008520321812035103 -1.1976220874527008 1.0 8102 -Biological Process GO:0021516 dorsal spinal cord development -0.008525499929728841 -1.1977159398565285 1.0 8103 -Biological Process GO:0035112 genitalia morphogenesis -0.008640007830439389 -1.199791373899277 1.0 8104 -Phenotype MP:0006433 abnormal articular cartilage morphology -0.008653874694843244 -1.2000427081938658 1.0 8105 -Phenotype MP:0011625 cystolithiasis -0.008674330745471304 -1.2004134702425124 1.0 8106 -Phenotype MP:0002690 akinesia -0.008678801990775753 -1.2004945107179796 1.0 8107 -Biological Process GO:0009168 purine ribonucleoside monophosphate biosynthetic process -0.008682213539380479 -1.2005563443911917 1.0 8108 -Phenotype MP:0010432 common ventricle -0.00874287899255366 -1.2016558942559006 1.0 8109 -Phenotype MP:0002766 situs inversus -0.008801745793328486 -1.2027228438860802 1.0 8110 -Phenotype MP:0030458 abnormal tooth wear -0.008835466673444037 -1.2033340284603233 1.0 8111 -Biological Process GO:0050910 detection of mechanical stimulus involved in sensory perception of sound -0.008878226048909976 -1.2041090340532825 1.0 8112 -Phenotype MP:0005633 increased circulating sodium level -0.008887149102347447 -1.2042707627091611 1.0 8113 -Biological Process GO:0048706 embryonic skeletal system development -0.008890232866663794 -1.2043266553541423 1.0 8114 -Phenotype MP:0006262 increased testis tumor incidence -0.008951554124754235 -1.2054380915589398 1.0 8115 -Phenotype MP:0013186 abnormal basilar artery morphology -0.008971088542847783 -1.2057921491922128 1.0 8116 -Phenotype MP:0013167 abnormal hindlimb bud morphology -0.009066239450428615 -1.2075167413956003 1.0 8117 -Biological Process GO:0050911 detection of chemical stimulus involved in sensory perception of smell -0.009115000957336639 -1.2084005344857245 1.0 8118 -Biological Process GO:0000279 M phase -0.009128912867762518 -1.2086526852309427 1.0 8119 -Biological Process GO:0098762 meiotic cell cycle phase -0.009128912867762518 -1.2086526852309427 1.0 8119 -Biological Process GO:0140718 facultative heterochromatin formation -0.009189899032502113 -1.2097580479321346 1.0 8121 -Biological Process GO:0003356 regulation of cilium beat frequency -0.009199962128527694 -1.209940439644299 1.0 8122 -Biological Process GO:0089718 amino acid import across plasma membrane -0.009222382405071006 -1.2103468029161526 1.0 8123 -Phenotype MP:0000400 abnormal awl hair morphology -0.009240322558685676 -1.2106719648072795 1.0 8124 -Biological Process GO:0002076 osteoblast development -0.009247283432003206 -1.2107981293196042 1.0 8125 -Biological Process GO:0071300 cellular response to retinoic acid -0.009258982421523454 -1.211010171291952 1.0 8126 -Biological Process GO:0046496 nicotinamide nucleotide metabolic process -0.009274800418108686 -1.211296869488298 1.0 8127 -Biological Process GO:0019362 pyridine nucleotide metabolic process -0.009274800418108686 -1.211296869488298 1.0 8127 -Phenotype MP:0010490 abnormal inferior vena cava valve morphology -0.009302568388187105 -1.211800158694031 1.0 8129 -Phenotype MP:0003378 early sexual maturation -0.009308866446182673 -1.2119143098040077 1.0 8130 -Biological Process GO:0002063 chondrocyte development -0.009339763371703391 -1.2124743107353324 1.0 8131 -Biological Process GO:0099612 protein localization to axon -0.009347663736060996 -1.2126175033450663 1.0 8132 -Biological Process GO:0019369 arachidonic acid metabolic process -0.009451765218098096 -1.2145043230175927 1.0 8133 -Biological Process GO:0007018 microtubule-based movement -0.009484083101555463 -1.2150900785427643 1.0 8134 -Biological Process GO:0050974 detection of mechanical stimulus involved in sensory perception -0.009524304388667915 -1.2158190817643617 1.0 8135 -Phenotype MP:0009960 abnormal cerebellum anterior lobe morphology -0.009545567062858362 -1.2162044637125144 1.0 8136 -Phenotype MP:0004000 impaired passive avoidance behavior -0.00958027227943492 -1.2168334891989394 1.0 8137 -Phenotype MP:0002958 cerebral aqueductal stenosis -0.00961740760332197 -1.2175065599207449 1.0 8138 -Biological Process GO:0048705 skeletal system morphogenesis -0.009641137755109108 -1.2179366644336476 1.0 8139 -Biological Process GO:0045834 positive regulation of lipid metabolic process -0.009806084121056324 -1.2209262861190529 1.0 8140 -Biological Process GO:0006766 vitamin metabolic process -0.009814550910096642 -1.2210797450690294 1.0 8141 -Phenotype MP:0009877 exostosis -0.009896537741142186 -1.2225657408750228 1.0 8142 -Biological Process GO:2001014 regulation of skeletal muscle cell differentiation -0.009927281947415212 -1.223122973798868 1.0 8143 -Phenotype MP:0003050 abnormal sacral vertebrae morphology -0.009960987507092733 -1.2237338806930695 1.0 8144 -Biological Process GO:0051302 regulation of cell division -0.009977070928205878 -1.2240253896587823 1.0 8145 -Biological Process GO:0010866 regulation of triglyceride biosynthetic process -0.009996117853869224 -1.2243706115839605 1.0 8146 -Phenotype MP:0000085 large anterior fontanelle -0.010099182019998931 -1.22623863010186 1.0 8147 -Phenotype MP:0030363 abnormal anterior fontanelle morphology -0.010099182019998931 -1.22623863010186 1.0 8147 -Phenotype MP:0008868 abnormal granulosa cell morphology -0.010174638856264906 -1.2276062709875344 1.0 8149 -Biological Process GO:0170039 proteinogenic amino acid metabolic process -0.010220255617872986 -1.2284330661638836 1.0 8150 -Biological Process GO:0050829 defense response to Gram-negative bacterium -0.010285733140875664 -1.2296198338841138 1.0 8151 -Biological Process GO:0061844 antimicrobial humoral immune response mediated by antimicrobial peptide -0.010300831450249515 -1.2298934878858725 1.0 8152 -Biological Process GO:0060306 regulation of membrane repolarization -0.010300866732546377 -1.22989412737083 1.0 8153 -Biological Process GO:0019233 sensory perception of pain -0.01031972171004103 -1.230235870271755 1.0 8154 -Phenotype MP:0030808 abnormal hindlimb joint morphology -0.010345088644745148 -1.2306956411654524 1.0 8155 -Biological Process GO:0030166 proteoglycan biosynthetic process -0.010400579514369346 -1.231701402682039 1.0 8156 -Phenotype MP:0002328 abnormal airway resistance -0.01041267607467744 -1.2319206505497213 1.0 8157 -Biological Process GO:0014883 transition between fast and slow fiber -0.010452863580555638 -1.232649041492837 1.0 8158 -Biological Process GO:0060438 trachea development -0.010462527170873592 -1.232824192239612 1.0 8159 -Phenotype MP:0003018 abnormal circulating chloride level -0.01047810815558492 -1.2331065946405708 1.0 8160 -Phenotype MP:0004384 small interparietal bone -0.010532586941585764 -1.234094012332906 1.0 8161 -Biological Process GO:1902600 proton transmembrane transport -0.010543361436522236 -1.2342892980157787 1.0 8162 -Phenotype MP:0004844 abnormal vestibuloocular reflex -0.010555790224984651 -1.2345145674559217 1.0 8163 -Phenotype MP:0001282 short vibrissae -0.010577045788860984 -1.234899820530976 1.0 8164 -Phenotype MP:0010239 decreased skeletal muscle weight -0.01066294215838881 -1.2364566759825242 1.0 8165 -Biological Process GO:0032526 response to retinoic acid -0.010672219784552572 -1.2366248312020043 1.0 8166 -Phenotype MP:0004573 absent limb buds -0.010675198451746137 -1.2366788189815128 1.0 8167 -Biological Process GO:0035561 regulation of chromatin binding -0.010706036610112157 -1.2372377547692737 1.0 8168 -Phenotype MP:0010440 anomalous pulmonary venous connection -0.010712652122274235 -1.237357659675976 1.0 8169 -Phenotype MP:0001408 stereotypic behavior -0.010745344998096762 -1.2379502118668415 1.0 8170 -Phenotype MP:0006198 enophthalmos -0.010768535997215167 -1.2383705443395967 1.0 8171 -Phenotype MP:0030875 abnormal cartilaginous joint morphology -0.010771210535218456 -1.2384190198350535 1.0 8172 -Biological Process GO:0031214 biomineral tissue development -0.010774649742138376 -1.2384813548099973 1.0 8173 -Phenotype MP:0005646 abnormal pituitary gland physiology -0.010776579736070158 -1.2385163355849784 1.0 8174 -Biological Process GO:0032507 maintenance of protein location in cell -0.01078116754544367 -1.2385994887621508 1.0 8175 -Phenotype MP:0008547 abnormal neocortex morphology -0.010794951966482058 -1.2388493287863336 1.0 8176 -Phenotype MP:0000087 absent mandible -0.010807458601636233 -1.239076009183041 1.0 8177 -Phenotype MP:0009349 increased urine pH -0.010809420195376118 -1.2391115626985674 1.0 8178 -Phenotype MP:0010028 aciduria -0.0108388441554641 -1.2396448664100157 1.0 8179 -Phenotype MP:0003233 prolonged QT interval -0.010892159922551325 -1.2406112046045108 1.0 8180 -Biological Process GO:0021520 spinal cord motor neuron cell fate specification -0.010981205850824072 -1.242225145212614 1.0 8181 -Phenotype MP:0010560 intraventricular block -0.010981324460240804 -1.242227294985859 1.0 8182 -Phenotype MP:0010636 bundle branch block -0.010981324460240804 -1.242227294985859 1.0 8182 -Biological Process GO:0030539 male genitalia development -0.011025704211893084 -1.243031669590723 1.0 8184 -Biological Process GO:0016202 regulation of striated muscle tissue development -0.011073270967656645 -1.2438938080423252 1.0 8185 -Biological Process GO:0060348 bone development -0.01109109090006366 -1.2442167909468016 1.0 8186 -Biological Process GO:0098754 detoxification -0.011092988027903816 -1.2442511760300883 1.0 8187 -Phenotype MP:0008922 abnormal cervical rib -0.011114544828880302 -1.244641888970608 1.0 8188 -Biological Process GO:0007625 grooming behavior -0.011143068762234254 -1.2451588798677296 1.0 8189 -Biological Process GO:0010832 negative regulation of myotube differentiation -0.011233335897829155 -1.2467949546275718 1.0 8190 -Biological Process GO:0036302 atrioventricular canal development -0.011261113482850638 -1.2472984181023294 1.0 8191 -Biological Process GO:0060795 cell fate commitment involved in formation of primary germ layer -0.011307209600450951 -1.248133901515374 1.0 8192 -Phenotype MP:0008959 abnormal spongiotrophoblast cell morphology -0.011311228372476112 -1.2482067409982334 1.0 8193 -Phenotype MP:0002765 short fibula -0.011326319108026839 -1.2484802577258807 1.0 8194 -Biological Process GO:0050966 detection of mechanical stimulus involved in sensory perception of pain -0.011336178926653284 -1.2486589650736328 1.0 8195 -Biological Process GO:0051873 killing by host of symbiont cells -0.011336611963988608 -1.2486668137934323 1.0 8196 -Phenotype MP:0005205 abnormal eye anterior chamber morphology -0.01146801257577068 -1.251048425029323 1.0 8197 -Phenotype MP:0011996 abnormal retina inner nuclear layer thickness -0.011495480590291374 -1.2515462775973047 1.0 8198 -Phenotype MP:0005470 increased thyroxine level -0.011547824441564325 -1.2524950000014912 1.0 8199 -Phenotype MP:0020422 decreased freezing behavior -0.011591256078486323 -1.253282190206192 1.0 8200 -Biological Process GO:0010575 positive regulation of vascular endothelial growth factor production -0.011592046810813939 -1.2532965220800736 1.0 8201 -Biological Process GO:0090335 regulation of brown fat cell differentiation -0.011609388072930438 -1.2536108291760686 1.0 8202 -Biological Process GO:0045026 plasma membrane fusion -0.011627869663294543 -1.2539458045058736 1.0 8203 -Phenotype MP:0003139 patent ductus arteriosus -0.011652462499739169 -1.254391545015028 1.0 8204 -Biological Process GO:0071625 vocalization behavior -0.011658186867398612 -1.254495298096168 1.0 8205 -Biological Process GO:0044725 epigenetic programming in the zygotic pronuclei -0.011663186836566863 -1.2545859215916657 1.0 8206 -Phenotype MP:0021086 decreased DNA replication -0.011676617601868777 -1.2548293516725142 1.0 8207 -Phenotype MP:0000805 abnormal visual cortex morphology -0.011686152787618642 -1.2550021751107783 1.0 8208 -Phenotype MP:0030131 abnormal periodontium morphology -0.011709919922036516 -1.2554329499268684 1.0 8209 -Biological Process GO:0046785 microtubule polymerization -0.011754034266275637 -1.2562325140725672 1.0 8210 -Biological Process GO:0043604 amide biosynthetic process -0.011803353940411654 -1.257126423838129 1.0 8211 -Biological Process GO:0009064 glutamine family amino acid metabolic process -0.011806443289864799 -1.2571824177126585 1.0 8212 -Biological Process GO:0015872 dopamine transport -0.011909483692968736 -1.25905000553021 1.0 8213 -Biological Process GO:0031122 cytoplasmic microtubule organization -0.01194805705574753 -1.2597491404349426 1.0 8214 -Phenotype MP:0031046 increased susceptibility to Orthomyxoviridae infection induced morbidity/mortality -0.011953253428004906 -1.2598433236992836 1.0 8215 -Biological Process GO:0009250 glucan biosynthetic process -0.01199762377111746 -1.2606475277761446 1.0 8216 -Biological Process GO:0005978 glycogen biosynthetic process -0.01199762377111746 -1.2606475277761446 1.0 8216 -Biological Process GO:0009190 cyclic nucleotide biosynthetic process -0.0119994457643402 -1.2606805510587014 1.0 8218 -Biological Process GO:0007270 neuron-neuron synaptic transmission -0.012075789479387034 -1.2620642664545376 1.0 8219 -Phenotype MP:0000128 growth retardation of molars -0.012110033078528204 -1.262684925212255 1.0 8220 -Biological Process GO:0009263 deoxyribonucleotide biosynthetic process -0.012139045120984404 -1.2632107629945357 1.0 8221 -Phenotype MP:0009402 decreased skeletal muscle fiber diameter -0.012158663128948977 -1.263566335678411 1.0 8222 -Biological Process GO:0010770 positive regulation of cell morphogenesis -0.012161840204266916 -1.2636239195676475 1.0 8223 -Phenotype MP:0008099 abnormal plasma cell differentiation -0.0121719624378962 -1.263807383137694 1.0 8224 -Phenotype MP:0008885 increased enterocyte apoptosis -0.012189300418206983 -1.264121630751581 1.0 8225 -Biological Process GO:0141188 nucleic acid catabolic process -0.012224163920916853 -1.2647535251442346 1.0 8226 -Phenotype MP:0020083 decreased hippocampus volume -0.01223661075772986 -1.2649791217073183 1.0 8227 -Phenotype MP:0009647 decreased fertilization frequency -0.01228251221779142 -1.2658110769892899 1.0 8228 -Biological Process GO:0051899 membrane depolarization -0.012363853599798968 -1.2672853741535477 1.0 8229 -Phenotype MP:0004746 abnormal cochlear IHC afferent innervation pattern -0.01243002295008977 -1.2684846811125254 1.0 8230 -Biological Process GO:0090220 chromosome localization to nuclear envelope involved in homologous chromosome segregation -0.01254394744691023 -1.270549541070109 1.0 8231 -Biological Process GO:0034397 telomere localization -0.01254394744691023 -1.270549541070109 1.0 8231 -Biological Process GO:0045141 meiotic telomere clustering -0.01254394744691023 -1.270549541070109 1.0 8231 -Phenotype MP:0014059 abnormal photoreceptor connecting cilium morphology -0.01259752753599308 -1.271520670050782 1.0 8234 -Phenotype MP:0009148 pancreas necrosis -0.012598422182203084 -1.271536885344128 1.0 8235 -Phenotype MP:0011628 increased mitochondrial number -0.012661514288614173 -1.2726804178398052 1.0 8236 -Biological Process GO:0015813 L-glutamate transmembrane transport -0.012679598354487398 -1.2730081881133994 1.0 8237 -Phenotype MP:0001746 abnormal pituitary secretion -0.012684824248592852 -1.2731029064556532 1.0 8238 -Phenotype MP:0009762 abnormal mitotic spindle assembly checkpoint -0.012711941379216718 -1.27359439931937 1.0 8239 -Phenotype MP:0000650 mesocardia -0.012767342854066 -1.2745985405725688 1.0 8240 -Phenotype MP:0014185 cerebellum atrophy -0.012829582327345435 -1.2757266192539989 1.0 8241 -Phenotype MP:0014184 hindbrain atrophy -0.012829582327345435 -1.2757266192539989 1.0 8241 -Biological Process GO:0010574 regulation of vascular endothelial growth factor production -0.012887293144586254 -1.2767726169012634 1.0 8243 -Phenotype MP:0005573 increased pulmonary respiratory rate -0.012917110810535481 -1.2773130564569826 1.0 8244 -Phenotype MP:0004098 abnormal cerebellar granule cell morphology -0.012948788407616263 -1.2778872069126799 1.0 8245 -Phenotype MP:0010736 abnormal extraembryonic ectoderm morphology -0.012990277632643155 -1.2786391912691633 1.0 8246 -Phenotype MP:0003582 abnormal ovary development -0.013020942467337981 -1.2791949855981657 1.0 8247 -Biological Process GO:0034308 primary alcohol metabolic process -0.013067387419777754 -1.2800367915766981 1.0 8248 -Phenotype MP:0001244 thin dermal layer -0.013076102690025682 -1.2801947542015655 1.0 8249 -Biological Process GO:0044782 cilium organization -0.013092243968777062 -1.2804873118260285 1.0 8250 -Biological Process GO:0006177 GMP biosynthetic process -0.013131405257167827 -1.2811971027712796 1.0 8251 -Phenotype MP:0013933 short Meckel's cartilage -0.013174923043572262 -1.2819858544190557 1.0 8252 -Phenotype MP:0009569 abnormal left lung morphology -0.013184843440098515 -1.2821656597297844 1.0 8253 -Phenotype MP:0004907 abnormal seminal vesicle size -0.013187316608036515 -1.2822104854308942 1.0 8254 -Phenotype MP:0006089 abnormal vestibular saccule morphology -0.013193482171389048 -1.2823222351005255 1.0 8255 -Phenotype MP:0006415 absent testes -0.013202741037995125 -1.2824900503065704 1.0 8256 -Biological Process GO:0141137 positive regulation of gene expression, epigenetic -0.013255134297983195 -1.2834396682343734 1.0 8257 -Biological Process GO:0045815 transcription initiation-coupled chromatin remodeling -0.013255134297983195 -1.2834396682343734 1.0 8257 -Phenotype MP:0011436 decreased urine magnesium level -0.013284500596837612 -1.283971926846869 1.0 8259 -Biological Process GO:0050906 detection of stimulus involved in sensory perception -0.013293031711441694 -1.2841265516855223 1.0 8260 -Phenotype MP:0002986 decreased urine calcium level -0.013382358418928542 -1.2857455813637755 1.0 8261 -Biological Process GO:0060074 synapse maturation -0.01342482692447633 -1.2865153149944821 1.0 8262 -Biological Process GO:1902459 positive regulation of stem cell population maintenance -0.013481064546872812 -1.287534611263828 1.0 8263 -Phenotype MP:0004463 basisphenoid bone foramen -0.013565369303727648 -1.2890626190367103 1.0 8264 -Biological Process GO:0044272 sulfur compound biosynthetic process -0.013641009568091 -1.2904335845219568 1.0 8265 -Biological Process GO:0051984 positive regulation of chromosome segregation -0.013646729180190054 -1.2905372514094644 1.0 8266 -Biological Process GO:0060767 epithelial cell proliferation involved in prostate gland development -0.013654762857908453 -1.2906828602986482 1.0 8267 -Phenotype MP:0020869 immotile sperm -0.013666202352841106 -1.290890198980676 1.0 8268 -Phenotype MP:0011638 abnormal mitochondrial chromosome morphology -0.013813921388465822 -1.293567578562304 1.0 8269 -Phenotype MP:0030989 decreased spongiotrophoblast cell number -0.013849065893350554 -1.2942045660662291 1.0 8270 -Biological Process GO:0006520 amino acid metabolic process -0.013920104142163936 -1.2954921208900416 1.0 8271 -Phenotype MP:0009914 abnormal hyoid bone lesser horn morphology -0.013991334994943205 -1.2967831666243077 1.0 8272 -Biological Process GO:0002230 positive regulation of defense response to virus by host -0.01409067967841926 -1.2985837702225997 1.0 8273 -Phenotype MP:0004246 abnormal extensor digitorum longus morphology -0.014163262672406196 -1.2998993232605152 1.0 8274 -Biological Process GO:0033045 regulation of sister chromatid segregation -0.014180605633143273 -1.3002136611436867 1.0 8275 -Biological Process GO:0003418 growth plate cartilage chondrocyte differentiation -0.014194102999698144 -1.3004582983596484 1.0 8276 -Phenotype MP:0009838 abnormal sperm axoneme morphology -0.014208350568037265 -1.3007165328410588 1.0 8277 -Phenotype MP:0008884 abnormal enterocyte apoptosis -0.01438018004446473 -1.303830909602071 1.0 8278 -Phenotype MP:0012289 abnormal non-rapid eye movement sleep pattern -0.014430096901343559 -1.3047356431918973 1.0 8279 -Biological Process GO:0046173 polyol biosynthetic process -0.014478267108163578 -1.305608719079763 1.0 8280 -Phenotype MP:0006020 decreased tympanic ring size -0.014481244763577816 -1.3056626885209626 1.0 8281 -Biological Process GO:0071825 protein-lipid complex organization -0.014528512519340842 -1.3065194076541067 1.0 8282 -Biological Process GO:1902019 regulation of cilium-dependent cell motility -0.014547813397102427 -1.306869232413034 1.0 8283 -Biological Process GO:0060295 regulation of cilium movement involved in cell motility -0.014547813397102427 -1.306869232413034 1.0 8283 -Phenotype MP:0005283 increased unsaturated fatty acids level -0.014549746375894346 -1.3069042672880404 1.0 8285 -Phenotype MP:0002650 abnormal ameloblast morphology -0.014601111432894553 -1.3078352492311591 1.0 8286 -Phenotype MP:0009453 enhanced contextual conditioning behavior -0.014622895915477274 -1.308230088857729 1.0 8287 -Phenotype MP:0030493 abnormal tooth root morphology -0.014645911872462669 -1.3086472487249303 1.0 8288 -Biological Process GO:0035304 regulation of protein dephosphorylation -0.014693368974019405 -1.3095073997147733 1.0 8289 -Phenotype MP:0009458 abnormal skeletal muscle size -0.014715491336141362 -1.3099083633440864 1.0 8290 -Phenotype MP:0011617 abnormal habituation -0.014720071697593706 -1.3099913815290962 1.0 8291 -Phenotype MP:0001776 abnormal circulating sodium level -0.014807504681850991 -1.311576087831986 1.0 8292 -Biological Process GO:0007379 segment specification -0.014868060755445223 -1.312673655212514 1.0 8293 -Phenotype MP:0004292 abnormal spiral ligament fibrocyte morphology -0.014874081207484569 -1.3127827747670395 1.0 8294 -Phenotype MP:0004434 abnormal cochlear outer hair cell physiology -0.014969487903332412 -1.3145120030843878 1.0 8295 -Biological Process GO:0032989 cellular anatomical entity morphogenesis -0.014972200667632052 -1.3145611714242358 1.0 8296 -Biological Process GO:0010927 cellular component assembly involved in morphogenesis -0.014972200667632052 -1.3145611714242358 1.0 8296 -Phenotype MP:0003245 abnormal GABAergic neuron morphology -0.014993534322996993 -1.3149478398927512 1.0 8298 -Biological Process GO:0009312 oligosaccharide biosynthetic process -0.01500742039382641 -1.3151995223001707 1.0 8299 -Phenotype MP:0004912 absent mandibular coronoid process -0.015092053657853155 -1.316733484203411 1.0 8300 -Biological Process GO:0001573 ganglioside metabolic process -0.015210615098219415 -1.318882387885747 1.0 8301 -Phenotype MP:0003017 decreased circulating bicarbonate level -0.01528091042858426 -1.3201564774531929 1.0 8302 -Phenotype MP:0002966 decreased circulating alkaline phosphatase level -0.015298551881188338 -1.3204762254449982 1.0 8303 -Biological Process GO:0031123 RNA 3'-end processing -0.015347245447125513 -1.321358787117876 1.0 8304 -Phenotype MP:0003971 abnormal thyroid-stimulating hormone level -0.01536775112982025 -1.3217304487383439 1.0 8305 -Phenotype MP:0011918 abnormal PQ interval -0.015370321659089026 -1.3217770390951593 1.0 8306 -Phenotype MP:0005267 abnormal olfactory cortex morphology -0.015422034869341683 -1.3227143312501302 1.0 8307 -Phenotype MP:0009451 abnormal chromosomal synapsis -0.015443512923488889 -1.323103616919263 1.0 8308 -Phenotype MP:0002817 abnormal tooth mineralization -0.01547255020973326 -1.3236299122404298 1.0 8309 -Phenotype MP:0003083 abnormal tibialis anterior morphology -0.015477171039172566 -1.3237136639000495 1.0 8310 -Phenotype MP:0030450 abnormal enamel mineralization -0.015497073695044161 -1.3240743957734025 1.0 8311 -Biological Process GO:0006833 water transport -0.015500577486059486 -1.3241379013228602 1.0 8312 -Phenotype MP:0002734 abnormal mechanical nociception -0.01555042423489117 -1.325041364217592 1.0 8313 -Phenotype MP:0004405 absent cochlear hair cells -0.015562653895988321 -1.3252630245119017 1.0 8314 -Phenotype MP:0004559 small allantois -0.015596587314951726 -1.3258780613125634 1.0 8315 -Biological Process GO:0021542 dentate gyrus development -0.015625753507064966 -1.3264066930282228 1.0 8316 -Biological Process GO:0010880 regulation of release of sequestered calcium ion into cytosol by sarcoplasmic reticulum -0.015648306539820078 -1.3268154624813062 1.0 8317 -Phenotype MP:0003350 increased circulating levels of thyroid hormone -0.015668721390540874 -1.3271854777894259 1.0 8318 -Phenotype MP:0004443 absent supraoccipital bone -0.015672020303471257 -1.327245269962344 1.0 8319 -Biological Process GO:0090336 positive regulation of brown fat cell differentiation -0.015775603955229922 -1.3291227040590146 1.0 8320 -Biological Process GO:0051937 catecholamine transport -0.015794600242696744 -1.3294670081764584 1.0 8321 -Biological Process GO:0046549 retinal cone cell development -0.015881513548009485 -1.3310422953967682 1.0 8322 -Phenotype MP:0003020 decreased circulating chloride level -0.01602522861209299 -1.3336471037515092 1.0 8323 -Phenotype MP:0010117 abnormal lateral plate mesoderm morphology -0.016031504146245323 -1.3337608466210873 1.0 8324 -Biological Process GO:0140053 mitochondrial gene expression -0.01609106925148751 -1.334840452887663 1.0 8325 -Biological Process GO:0009311 oligosaccharide metabolic process -0.016121345343452775 -1.3353892013282176 1.0 8326 -Phenotype MP:0004842 abnormal large intestine crypts of Lieberkuhn morphology -0.016203438259780434 -1.3368771199098848 1.0 8327 -Biological Process GO:0062149 detection of stimulus involved in sensory perception of pain -0.016247762990224013 -1.3376804972657477 1.0 8328 -Biological Process GO:0090322 regulation of superoxide metabolic process -0.016282121397526605 -1.3383032368996763 1.0 8329 -Biological Process GO:1901605 alpha-amino acid metabolic process -0.01635362827677267 -1.3395992855614463 1.0 8330 -Phenotype MP:0004604 abnormal vertebral pedicle morphology -0.016355535555402367 -1.3396338546258733 1.0 8331 -Phenotype MP:0020420 abnormal freezing behavior -0.016420958673243558 -1.3408196362628415 1.0 8332 -Phenotype MP:0020165 abnormal soleus weight -0.01655937205665725 -1.3433283526581838 1.0 8333 -Phenotype MP:0005571 decreased lactate dehydrogenase level -0.016607245742402466 -1.3441960541576516 1.0 8334 -Biological Process GO:0019674 NAD metabolic process -0.016608566396943303 -1.3442199907714203 1.0 8335 -Phenotype MP:0002767 situs ambiguus -0.01666445018243956 -1.3452328738138732 1.0 8336 -Phenotype MP:0002576 abnormal enamel morphology -0.016675083425174098 -1.3454255993273017 1.0 8337 -Biological Process GO:0009584 detection of visible light -0.016684186414982705 -1.3455905892958746 1.0 8338 -Phenotype MP:0011493 double ureter -0.016775226959943712 -1.3472406819541975 1.0 8339 -Biological Process GO:0007062 sister chromatid cohesion -0.01680555097938008 -1.347790299071101 1.0 8340 -Phenotype MP:0014449 decreased enzyme/conezyme level -0.01690817231016184 -1.3496502912820751 1.0 8341 -Phenotype MP:0002797 increased thigmotaxis -0.01695802365078536 -1.3505538374021655 1.0 8342 -Biological Process GO:0002200 somatic diversification of immune receptors -0.017082959679239007 -1.3528182792879173 1.0 8343 -Biological Process GO:0009954 proximal/distal pattern formation -0.01712361044396027 -1.3535550667099445 1.0 8344 -Biological Process GO:0032536 regulation of cell projection size -0.01720021533653182 -1.3549435158990182 1.0 8345 -Phenotype MP:0030268 agnathia -0.0173251371924652 -1.3572077009105208 1.0 8346 -Phenotype MP:0009234 absent sperm head -0.017399428702032482 -1.3585542204701875 1.0 8347 -Phenotype MP:0005548 retina pigment epithelium atrophy -0.017456050472403506 -1.3595804793489155 1.0 8348 -Phenotype MP:0008149 abnormal costovertebral joint morphology -0.017459647269688183 -1.3596456706194144 1.0 8349 -Phenotype MP:0002577 reduced enamel thickness -0.01752681457475247 -1.3608630653199116 1.0 8350 -Biological Process GO:0043267 negative regulation of potassium ion transport -0.017561064140066307 -1.36148383221338 1.0 8351 -Biological Process GO:0018198 peptidyl-cysteine modification -0.01769703593332861 -1.3639482952490223 1.0 8352 -Phenotype MP:0003810 abnormal hair cuticle -0.017783411839007446 -1.3655138422026096 1.0 8353 -Phenotype MP:0000470 abnormal stomach morphology -0.01782837983797747 -1.3663288786788488 1.0 8354 -Biological Process GO:0071277 cellular response to calcium ion -0.0179273497028829 -1.3681226887614402 1.0 8355 -Phenotype MP:0004173 abnormal intervertebral disk morphology -0.01800669457905202 -1.3695607996349888 1.0 8356 -Biological Process GO:1905038 regulation of membrane lipid metabolic process -0.018079051135837965 -1.370872248541464 1.0 8357 -Phenotype MP:0011616 abnormal nonassociative learning -0.018119435302021092 -1.3716042039154108 1.0 8358 -Biological Process GO:0031048 regulatory ncRNA-mediated heterochromatin formation -0.018122790432980818 -1.371665015029478 1.0 8359 -Phenotype MP:0010439 abnormal hepatic vein morphology -0.018235084232187004 -1.3737003189012273 1.0 8360 -Phenotype MP:0004635 short metatarsal bones -0.018239066142909044 -1.3737724902799395 1.0 8361 -Biological Process GO:0010469 regulation of signaling receptor activity -0.01827045557271778 -1.3743414177583342 1.0 8362 -Phenotype MP:0031477 vein stenosis -0.01829706201887893 -1.3748236545627532 1.0 8363 -Phenotype MP:0013852 abnormal Mullerian duct topology -0.018407360955880137 -1.376822801934339 1.0 8364 -Phenotype MP:0010068 decreased red blood cell distribution width -0.018549833359478685 -1.3794050873028225 1.0 8365 -Phenotype MP:0011667 double outlet right ventricle with atrioventricular septal defect -0.018676701102732673 -1.3817045411539728 1.0 8366 -Phenotype MP:0001442 decreased grooming behavior -0.018730513443743213 -1.3826798796569078 1.0 8367 -Phenotype MP:0004507 abnormal ischium morphology -0.01873273055427105 -1.3827200643658881 1.0 8368 -Phenotype MP:0004143 muscle hypertonia -0.018736594285684083 -1.3827900937669766 1.0 8369 -Phenotype MP:0012029 abnormal electroretinogram waveform feature -0.018777036195356978 -1.3835230957307543 1.0 8370 -Phenotype MP:0009594 abnormal corneocyte envelope morphology -0.018790263567688648 -1.3837628393524861 1.0 8371 -Biological Process GO:0014070 response to organic cyclic compound -0.018813858451757204 -1.3841904921635735 1.0 8372 -Biological Process GO:2000035 regulation of stem cell division -0.0188616384913447 -1.3850564963441447 1.0 8373 -Phenotype MP:0003649 decreased heart right ventricle size -0.018866326257437782 -1.3851414612179538 1.0 8374 -Phenotype MP:0008804 abnormal circulating amylase level -0.018882123061177758 -1.3854277752979878 1.0 8375 -Phenotype MP:0005192 increased motor neuron number -0.018925835130041202 -1.3862200482785874 1.0 8376 -Phenotype MP:0010134 decreased DN3 thymocyte number -0.01894879384650494 -1.3866361706721602 1.0 8377 -Biological Process GO:0030002 intracellular monoatomic anion homeostasis -0.019013635949481245 -1.3878114215245934 1.0 8378 -Biological Process GO:0030282 bone mineralization -0.019024736879137416 -1.3880126237750199 1.0 8379 -Phenotype MP:0013512 abnormal memory-marker CD4-negative NK T cell number -0.019028628467671282 -1.3880831580811546 1.0 8380 -Phenotype MP:0031356 abnormal outer dense fiber morphology -0.019062050301557276 -1.3886889224990475 1.0 8381 -Biological Process GO:1900271 regulation of long-term synaptic potentiation -0.019146520445950665 -1.3902199278897853 1.0 8382 -Phenotype MP:0003883 enlarged stomach -0.019226065210441234 -1.391661661701354 1.0 8383 -Biological Process GO:0050820 positive regulation of coagulation -0.01924798252841975 -1.3920589089443485 1.0 8384 -Biological Process GO:0072329 monocarboxylic acid catabolic process -0.019410902869121394 -1.3950118093053734 1.0 8385 -Phenotype MP:0008935 decreased mean platelet volume -0.019426454151830308 -1.3952936733631562 1.0 8386 -Phenotype MP:0010225 abnormal quadriceps morphology -0.019443818082832687 -1.3956083913284203 1.0 8387 -Biological Process GO:0044774 mitotic DNA integrity checkpoint signaling -0.01946292406353467 -1.3959546836150043 1.0 8388 -Biological Process GO:0044773 mitotic DNA damage checkpoint signaling -0.01946292406353467 -1.3959546836150043 1.0 8388 -Phenotype MP:0003197 nephrocalcinosis -0.019484888820732404 -1.3963527906848747 1.0 8390 -Phenotype MP:0011250 abdominal situs ambiguus -0.01954969821491992 -1.3975274486966975 1.0 8391 -Phenotype MP:0008550 abnormal circulating interferon-beta level -0.019562498220886848 -1.3977594463838992 1.0 8392 -Biological Process GO:1902750 negative regulation of cell cycle G2/M phase transition -0.01958794720628143 -1.3982207044308423 1.0 8393 -Biological Process GO:0010972 negative regulation of G2/M transition of mitotic cell cycle -0.01958794720628143 -1.3982207044308423 1.0 8393 -Biological Process GO:0032288 myelin assembly -0.01960596408747728 -1.3985472569948663 1.0 8395 -Biological Process GO:0009112 nucleobase metabolic process -0.019614490449536337 -1.39870179569454 1.0 8396 -Phenotype MP:0020190 abnormal lung adenoma incidence -0.019669034501075933 -1.399690396312421 1.0 8397 -Phenotype MP:0002048 increased lung adenoma incidence -0.019669034501075933 -1.399690396312421 1.0 8397 -Biological Process GO:0141194 siRNA-mediated heterochromatin formation -0.019669677015841547 -1.3997020417710246 1.0 8399 -Biological Process GO:0141007 siRNA-mediated retrotransposon silencing by heterochromatin formation -0.019669677015841547 -1.3997020417710246 1.0 8399 -Phenotype MP:0010743 delayed cranial suture closure -0.019687621114139908 -1.4000272751587974 1.0 8401 -Biological Process GO:1901991 negative regulation of mitotic cell cycle phase transition -0.019688346266516277 -1.4000404184084663 1.0 8402 -Phenotype MP:0005309 increased circulating ammonia level -0.019814009445334735 -1.4023180397570498 1.0 8403 -Phenotype MP:0005308 abnormal circulating ammonia level -0.019814009445334735 -1.4023180397570498 1.0 8403 -Phenotype MP:0010667 abnormal umbilical vein morphology -0.019836608659824728 -1.4027276462453433 1.0 8405 -Phenotype MP:0002774 small prostate gland -0.01986450045259902 -1.4032331797140196 1.0 8406 -Phenotype MP:0001354 increased aggression towards male mice -0.019927939483324275 -1.404383000147275 1.0 8407 -Biological Process GO:0000077 DNA damage checkpoint signaling -0.019980373431589316 -1.4053333555424024 1.0 8408 -Biological Process GO:0046085 adenosine metabolic process -0.02001040454354608 -1.4058776637666375 1.0 8409 -Phenotype MP:0031386 elongated manchette -0.020070876361305334 -1.4069737040260926 1.0 8410 -Biological Process GO:0002889 regulation of immunoglobulin mediated immune response -0.02007514094798779 -1.4070509988531228 1.0 8411 -Biological Process GO:0002712 regulation of B cell mediated immunity -0.02007514094798779 -1.4070509988531228 1.0 8411 -Phenotype MP:0010138 arteritis -0.02011279857170578 -1.407733536160578 1.0 8413 -Phenotype MP:0002738 hyperresponsive to tactile stimuli -0.02013714818268353 -1.4081748682541482 1.0 8414 -Biological Process GO:0032332 positive regulation of chondrocyte differentiation -0.020197514101439884 -1.409268989114205 1.0 8415 -Biological Process GO:0001832 blastocyst growth -0.020252894214804584 -1.410272743194536 1.0 8416 -Phenotype MP:0001157 small seminal vesicle -0.02026093601909973 -1.4104184993763864 1.0 8417 -Phenotype MP:0004926 abnormal epididymis size -0.020335911458459366 -1.4117774150341833 1.0 8418 -Biological Process GO:0060271 cilium assembly -0.020479742988991356 -1.414384334321275 1.0 8419 -Phenotype MP:0008390 abnormal primordial germ cell proliferation -0.020510994077834077 -1.414950754395826 1.0 8420 -Biological Process GO:0051156 glucose 6-phosphate metabolic process -0.020517513073040172 -1.4150689099509561 1.0 8421 -Biological Process GO:0002244 hematopoietic progenitor cell differentiation -0.02056654279536807 -1.4159575643948363 1.0 8422 -Phenotype MP:0011642 abnormal bone collagen fibril morphology -0.020681243422880025 -1.4180364915744086 1.0 8423 -Phenotype MP:0010955 abnormal respiratory electron transport chain -0.02068729199818109 -1.4181461208577337 1.0 8424 -Phenotype MP:0003005 abnormal hippocampal fimbria morphology -0.020728929190797052 -1.4189007870987826 1.0 8425 -Phenotype MP:0008877 abnormal DNA methylation -0.02075931313250745 -1.4194514902955695 1.0 8426 -Phenotype MP:0003456 absent tail -0.020769001241903062 -1.4196270854459894 1.0 8427 -Biological Process GO:0031424 keratinization -0.02082140578675351 -1.4205769079097885 1.0 8428 -Phenotype MP:0005258 ocular hypertension -0.02085952440972494 -1.4212678007415205 1.0 8429 -Biological Process GO:0010172 embryonic body morphogenesis -0.020890962288011128 -1.4218376063394056 1.0 8430 -Phenotype MP:0003360 abnormal depression-related behavior -0.0209083034532751 -1.4221519116799668 1.0 8431 -Phenotype MP:0003047 abnormal thoracic vertebrae morphology -0.020931500596979014 -1.422572355522172 1.0 8432 -Phenotype MP:0030878 abnormal fibrous joint morphology -0.02094835486030533 -1.4228778358572043 1.0 8433 -Phenotype MP:0011525 abnormal placenta intervillous maternal lacunae morphology -0.020956568356860217 -1.4230267039287892 1.0 8434 -Phenotype MP:0008477 decreased spleen red pulp amount -0.021004808739512937 -1.4239010517403499 1.0 8435 -Phenotype MP:0000804 abnormal occipital lobe morphology -0.02101954512606241 -1.4241681459593696 1.0 8436 -Phenotype MP:0030590 abnormal sperm fibrous sheath morphology -0.021056671564089413 -1.4248410556266422 1.0 8437 -Phenotype MP:0000078 abnormal supraoccipital bone morphology -0.02108926224581542 -1.4254317555688367 1.0 8438 -Phenotype MP:0003374 decreased circulating mineralocorticoid level -0.021131913740247477 -1.4262048058384609 1.0 8439 -Phenotype MP:0002667 decreased circulating aldosterone level -0.021131913740247477 -1.4262048058384609 1.0 8439 -Biological Process GO:0042693 muscle cell fate commitment -0.021155887466721257 -1.4266393250964902 1.0 8441 -Phenotype MP:0030877 abnormal symphysis morphology -0.02116607407313742 -1.4268239554111235 1.0 8442 -Phenotype MP:0003668 abnormal periodontal ligament morphology -0.021201196350725038 -1.4274605400494922 1.0 8443 -Biological Process GO:0017145 stem cell division -0.02125914074277424 -1.4285107711959812 1.0 8444 -Biological Process GO:0120178 steroid hormone biosynthetic process -0.021289602509590555 -1.429062884958093 1.0 8445 -Phenotype MP:0014001 abnormal vertebral artery topology -0.02142113557658587 -1.4314468969196716 1.0 8446 -Biological Process GO:0010882 regulation of cardiac muscle contraction by calcium ion signaling -0.02159956950864128 -1.4346809781897962 1.0 8447 -Phenotype MP:0011252 situs inversus totalis -0.021708840702465926 -1.4366614979106904 1.0 8448 -Phenotype MP:0031012 impaired sperm migration in female genital tract -0.021807266568179662 -1.4384454481108224 1.0 8449 -Phenotype MP:0013294 prenatal lethality prior to heart atrial septation -0.02182334676020581 -1.4387368985499442 1.0 8450 -Biological Process GO:0002923 regulation of humoral immune response mediated by circulating immunoglobulin -0.021840953878860203 -1.4390560242454054 1.0 8451 -Phenotype MP:0002835 abnormal cranial suture morphology -0.02198437630442207 -1.4416555285822903 1.0 8452 -Phenotype MP:0030154 abnormal tympanic cavity morphology -0.02203919426621548 -1.4426490937717151 1.0 8453 -Biological Process GO:0000038 very long-chain fatty acid metabolic process -0.02205710484284551 -1.4429737195855896 1.0 8454 -Phenotype MP:0010240 decreased skeletal muscle size -0.022064633196648975 -1.4431101695743904 1.0 8455 -Biological Process GO:0090303 positive regulation of wound healing -0.02210730583388143 -1.4438836030532731 1.0 8456 -Biological Process GO:0072074 kidney mesenchyme development -0.022183583088509318 -1.445266113866586 1.0 8457 -Biological Process GO:0021895 cerebral cortex neuron differentiation -0.02226204274006882 -1.4466881802115137 1.0 8458 -Biological Process GO:0003352 regulation of cilium movement -0.02229434649126616 -1.447273679592145 1.0 8459 -Phenotype MP:0004692 small pubis -0.022379398139501294 -1.448815224630031 1.0 8460 -Phenotype MP:0000418 focal hair loss -0.022484575733508816 -1.450721548628489 1.0 8461 -Biological Process GO:0046033 AMP metabolic process -0.022549999517077035 -1.4519073423316338 1.0 8462 -Phenotype MP:0010959 abnormal oxidative phosphorylation -0.02256221387639812 -1.4521287252841466 1.0 8463 -Biological Process GO:0006505 GPI anchor metabolic process -0.022601375113516564 -1.4528385153000969 1.0 8464 -Phenotype MP:0008130 abnormal pituitary intermediate lobe morphology -0.022603945708461914 -1.4528851068472879 1.0 8465 -Phenotype MP:0013795 abnormal colon goblet cell morphology -0.022663115342958173 -1.4539575452813915 1.0 8466 -Biological Process GO:0031570 DNA integrity checkpoint signaling -0.022680437738433534 -1.4542715104230841 1.0 8467 -Biological Process GO:0060323 head morphogenesis -0.022712133759925424 -1.4548459948177483 1.0 8468 -Phenotype MP:0031011 abnormal sperm migration in female genital tract -0.022832493058744463 -1.4570274843445 1.0 8469 -Biological Process GO:0016485 protein processing -0.022843658901727792 -1.4572298631367036 1.0 8470 -Biological Process GO:0006259 DNA metabolic process -0.022847655654853583 -1.4573023035311763 1.0 8471 -Phenotype MP:0000866 cerebellum vermis hypoplasia -0.022927307343095338 -1.458745975315512 1.0 8472 -Phenotype MP:0012102 absent trophectoderm -0.02297823433068613 -1.45966901733344 1.0 8473 -Phenotype MP:0000194 increased circulating calcium level -0.02299391569487641 -1.4599532390934695 1.0 8474 -Biological Process GO:0031643 positive regulation of myelination -0.023148329402398193 -1.4627519583370248 1.0 8475 -Phenotype MP:0004921 decreased placenta weight -0.02317490198296257 -1.4632335813339077 1.0 8476 -Phenotype MP:0002733 abnormal thermal nociception -0.023209638646949582 -1.4638631767986992 1.0 8477 -Biological Process GO:0010830 regulation of myotube differentiation -0.02325370993726872 -1.4646619606002413 1.0 8478 -Phenotype MP:0001412 excessive scratching -0.02325467182865837 -1.4646793946997498 1.0 8479 -Phenotype MP:0031020 premature ovarian failure -0.02327074821070152 -1.4649707760836506 1.0 8480 -Biological Process GO:0043587 tongue morphogenesis -0.023282075196076057 -1.4651760755512169 1.0 8481 -Biological Process GO:0001958 endochondral ossification -0.023486850962791683 -1.4688875975923539 1.0 8482 -Biological Process GO:0036075 replacement ossification -0.023486850962791683 -1.4688875975923539 1.0 8482 -Phenotype MP:0003425 abnormal optic vesicle formation -0.023505377381207948 -1.4692233854221257 1.0 8484 -Biological Process GO:0045746 negative regulation of Notch signaling pathway -0.023519126545560987 -1.469472586425555 1.0 8485 -Biological Process GO:0042044 fluid transport -0.023607383556951467 -1.47107222806438 1.0 8486 -Biological Process GO:0072498 embryonic skeletal joint development -0.02372091974984869 -1.4731300500867974 1.0 8487 -Biological Process GO:0006790 sulfur compound metabolic process -0.02372327313919631 -1.4731727048236112 1.0 8488 -Biological Process GO:0048733 sebaceous gland development -0.023927346318608933 -1.4768714926027662 1.0 8489 -Phenotype MP:0002282 abnormal trachea morphology -0.02401361291363724 -1.4784350583214874 1.0 8490 -Biological Process GO:0007339 binding of sperm to zona pellucida -0.024159190214694704 -1.4810736193691643 1.0 8491 -Biological Process GO:0021697 cerebellar cortex formation -0.02416722775982616 -1.4812192983544783 1.0 8492 -Biological Process GO:0006195 purine nucleotide catabolic process -0.02424397263036182 -1.4826102846176765 1.0 8493 -Phenotype MP:0006000 abnormal cornea epithelium morphology -0.024314097735437912 -1.4838812888839596 1.0 8494 -Phenotype MP:0001059 optic nerve atrophy -0.024323659820466803 -1.4840545998665684 1.0 8495 -Biological Process GO:0019098 reproductive behavior -0.02438050546823045 -1.4850849164806943 1.0 8496 -Phenotype MP:0001985 abnormal gustatory system physiology -0.02444124560933214 -1.4861858200499813 1.0 8497 -Biological Process GO:0000380 alternative mRNA splicing, via spliceosome -0.02444463401878294 -1.486247234330405 1.0 8498 -Phenotype MP:0000531 right pulmonary isomerism -0.024545354825905807 -1.4880727799095201 1.0 8499 -Phenotype MP:0010975 abnormal lung lobe morphology -0.0245685220648435 -1.488492681733494 1.0 8500 -Phenotype MP:0003019 increased circulating chloride level -0.02457562850370265 -1.4886214845937287 1.0 8501 -Biological Process GO:0031100 animal organ regeneration -0.024582305247532465 -1.4887424993128278 1.0 8502 -Biological Process GO:0097722 sperm motility -0.02460474533583068 -1.4891492216689917 1.0 8503 -Biological Process GO:0051983 regulation of chromosome segregation -0.02478992552346382 -1.4925055775454992 1.0 8504 -Phenotype MP:0008106 decreased amacrine cell number -0.02483607907995089 -1.4933421020275024 1.0 8505 -Phenotype MP:0004338 small clavicle -0.02485203696746008 -1.4936313357203865 1.0 8506 -Biological Process GO:0071577 zinc ion transmembrane transport -0.02497571526770037 -1.495872981520154 1.0 8507 -Biological Process GO:0040034 regulation of development, heterochronic -0.025036426435046444 -1.4969733599456 1.0 8508 -Phenotype MP:0004257 abnormal placenta weight -0.02519131231142424 -1.4997806371603661 1.0 8509 -Phenotype MP:0011513 abnormal vertebral artery morphology -0.02524137918455316 -1.5006880897663517 1.0 8510 -Phenotype MP:0004607 abnormal cervical atlas morphology -0.025256076781835723 -1.5009544809372453 1.0 8511 -Phenotype MP:0004920 increased placenta weight -0.025293713060568823 -1.5016366313708864 1.0 8512 -Phenotype MP:0008104 abnormal amacrine cell number -0.02530391922752817 -1.5018216162166653 1.0 8513 -Phenotype MP:0004227 increased cellular sensitivity to ionizing radiation -0.025365179743909616 -1.502931951489476 1.0 8514 -Biological Process GO:0050686 negative regulation of mRNA processing -0.02537523283526877 -1.5031141618689534 1.0 8515 -Biological Process GO:0048025 negative regulation of mRNA splicing, via spliceosome -0.02537523283526877 -1.5031141618689534 1.0 8515 -Phenotype MP:0008924 decreased cerebellar granule cell number -0.0254448640453937 -1.5043762143826604 1.0 8517 -Phenotype MP:0020520 whitened brown adipose tissue morphology -0.025496739067428775 -1.5053164393455831 1.0 8518 -Biological Process GO:0045662 negative regulation of myoblast differentiation -0.025651714379712365 -1.5081253375692258 1.0 8519 -Phenotype MP:0010377 abnormal gut flora balance -0.025726994347839538 -1.509489772753337 1.0 8520 -Biological Process GO:0007131 reciprocal meiotic recombination -0.02576813371779285 -1.5102354160527818 1.0 8521 -Biological Process GO:0035825 homologous recombination -0.02576813371779285 -1.5102354160527818 1.0 8521 -Biological Process GO:0140527 reciprocal homologous recombination -0.02576813371779285 -1.5102354160527818 1.0 8521 -Phenotype MP:0004154 renal tubular necrosis -0.02578207834616797 -1.5104881598046418 1.0 8524 -Biological Process GO:0048741 skeletal muscle fiber development -0.02586197396574952 -1.5119362527983748 1.0 8525 -Phenotype MP:0003897 abnormal ST segment -0.02591976596204293 -1.5129837218006137 1.0 8526 -Biological Process GO:0006801 superoxide metabolic process -0.025944671698435062 -1.5134351335621359 1.0 8527 -Biological Process GO:0050908 detection of light stimulus involved in visual perception -0.025952077970647247 -1.513569370845185 1.0 8528 -Biological Process GO:0050962 detection of light stimulus involved in sensory perception -0.025952077970647247 -1.513569370845185 1.0 8528 -Phenotype MP:0000808 abnormal hippocampus development -0.026017076090304014 -1.5147474494704432 1.0 8530 -Biological Process GO:0060346 bone trabecula formation -0.026017982098167858 -1.5147638706916162 1.0 8531 -Phenotype MP:0001386 abnormal maternal nurturing -0.026023288560232727 -1.5148600493128959 1.0 8532 -Biological Process GO:0006098 pentose-phosphate shunt -0.02603574028650435 -1.5150857344964925 1.0 8533 -Phenotype MP:0004266 pale placenta -0.026052763600786566 -1.5153942788481265 1.0 8534 -Phenotype MP:0002777 absent ovarian follicles -0.026094633360139508 -1.5161531603172964 1.0 8535 -Phenotype MP:0000654 absent sex gland -0.026098282954950314 -1.5162193085329705 1.0 8536 -Phenotype MP:0005644 agonadal -0.026098282954950314 -1.5162193085329705 1.0 8536 -Phenotype MP:0006149 decreased visual acuity -0.026135368822564287 -1.5168914828691804 1.0 8538 -Phenotype MP:0011832 abnormal visual acuity -0.026135368822564287 -1.5168914828691804 1.0 8538 -Phenotype MP:0010180 increased susceptibility to weight loss -0.026148886764358004 -1.5171364930074545 1.0 8540 -Phenotype MP:0005641 increased mean corpuscular hemoglobin concentration -0.026150127671300982 -1.517158984211095 1.0 8541 -Biological Process GO:1902099 regulation of metaphase/anaphase transition of cell cycle -0.026181835853297475 -1.5177336890126052 1.0 8542 -Biological Process GO:0009595 detection of biotic stimulus -0.02621786315315955 -1.5183866770085257 1.0 8543 -Phenotype MP:0009455 enhanced cued conditioning behavior -0.026232193354545297 -1.5186464091982774 1.0 8544 -Phenotype MP:0013129 abnormal tooth color -0.026308452181315722 -1.5200285860101594 1.0 8545 -Phenotype MP:0013237 abnormal skeletal muscle regeneration -0.026321901870443698 -1.5202723590817762 1.0 8546 -Phenotype MP:0030663 abnormal arginine level -0.026363117209133202 -1.521019379300196 1.0 8547 -Phenotype MP:0008908 increased total fat pad weight -0.026387533033014332 -1.5214619114901167 1.0 8548 -Phenotype MP:0031121 increased susceptibility to induced thrombosis -0.026424027183723497 -1.522123361069342 1.0 8549 -Phenotype MP:0013570 abnormal neuroendocrine gland physiology -0.026449616198194636 -1.5225871571168135 1.0 8550 -Phenotype MP:0031394 abnormal bicarbonate level -0.026489423222378017 -1.5233086519011736 1.0 8551 -Phenotype MP:0013242 abnormal amino acid metabolism -0.026544759869331136 -1.5243116181610161 1.0 8552 -Phenotype MP:0004612 fusion of vertebral bodies -0.026576142478193177 -1.524880422011042 1.0 8553 -Biological Process GO:0046337 phosphatidylethanolamine metabolic process -0.026595314538725212 -1.5252279119820475 1.0 8554 -Biological Process GO:0035725 sodium ion transmembrane transport -0.026666873018076798 -1.5265248958859705 1.0 8555 -Biological Process GO:2000288 positive regulation of myoblast proliferation -0.026735242365082623 -1.5277640773693082 1.0 8556 -Phenotype MP:0003015 abnormal circulating bicarbonate level -0.026888983343850814 -1.530550603531442 1.0 8557 -Biological Process GO:0006470 protein dephosphorylation -0.02696847280416348 -1.531991334965246 1.0 8558 -Phenotype MP:0001689 incomplete somite formation -0.02705415785789822 -1.5335443603580121 1.0 8559 -Phenotype MP:0021101 abnormal ventral interneuron morphology -0.02721423352677932 -1.536445701580321 1.0 8560 -Biological Process GO:0035914 skeletal muscle cell differentiation -0.02725674844881021 -1.537216276501005 1.0 8561 -Biological Process GO:0046434 organophosphate catabolic process -0.027281877515666242 -1.5376717360849452 1.0 8562 -Phenotype MP:0003345 decreased rib number -0.02730669494139426 -1.5381215472323833 1.0 8563 -Biological Process GO:0006220 pyrimidine nucleotide metabolic process -0.027357205773012927 -1.5390370465020267 1.0 8564 -Biological Process GO:0015740 C4-dicarboxylate transport -0.02737965724656588 -1.5394439752137794 1.0 8565 -Biological Process GO:0098962 regulation of postsynaptic neurotransmitter receptor activity -0.027410542527987802 -1.540003765098016 1.0 8566 -Phenotype MP:0014319 abnormal heart atrium arrangement -0.027538988923034857 -1.5423318317143349 1.0 8567 -Biological Process GO:0099587 inorganic ion import across plasma membrane -0.027597980620663876 -1.5434010450763742 1.0 8568 -Biological Process GO:0098659 inorganic cation import across plasma membrane -0.027597980620663876 -1.5434010450763742 1.0 8568 -Phenotype MP:0030494 abnormal molar root morphology -0.027599053716296673 -1.543420494731757 1.0 8570 -Biological Process GO:0003357 noradrenergic neuron differentiation -0.027684345934442245 -1.5449664000537688 1.0 8571 -Phenotype MP:0003311 aminoaciduria -0.02776112437285505 -1.5463579947283914 1.0 8572 -Biological Process GO:0050909 sensory perception of taste -0.027795263311013896 -1.5469767565255992 1.0 8573 -Phenotype MP:0005477 increased circulating thyroxine level -0.027909534694238403 -1.5490479037336473 1.0 8574 -Phenotype MP:0000540 abnormal urinary bladder urothelium morphology -0.028053259589448487 -1.551652890275698 1.0 8575 -Phenotype MP:0011959 abnormal eye posterior chamber depth -0.028080302107156063 -1.5521430307944193 1.0 8576 -Biological Process GO:0019395 fatty acid oxidation -0.028154911642561453 -1.5534953145122512 1.0 8577 -Biological Process GO:1905820 positive regulation of chromosome separation -0.02825369060137395 -1.5552856644580153 1.0 8578 -Biological Process GO:0007338 single fertilization -0.02825789799296996 -1.5553619226349216 1.0 8579 -Phenotype MP:0012300 abnormal umbilical cord blood vessel morphology -0.028289324485583522 -1.5559315218696437 1.0 8580 -Phenotype MP:0005240 abnormal amacrine cell morphology -0.02831678361942025 -1.5564292134769082 1.0 8581 -Biological Process GO:0006334 nucleosome assembly -0.028462068581424083 -1.5590624759345302 1.0 8582 -Phenotype MP:0001986 abnormal taste sensitivity -0.028476845464037837 -1.5593303041370556 1.0 8583 -Phenotype MP:0010158 abnormal intestine development -0.028516687212517988 -1.5600524282927273 1.0 8584 -Phenotype MP:0003849 greasy coat -0.028539485927331354 -1.560465650686649 1.0 8585 -Biological Process GO:2000144 positive regulation of DNA-templated transcription initiation -0.028645143022630215 -1.5623806655553216 1.0 8586 -Biological Process GO:0060261 positive regulation of transcription initiation by RNA polymerase II -0.028645143022630215 -1.5623806655553216 1.0 8586 -Biological Process GO:0006414 translational elongation -0.028697285388749716 -1.5633257360792099 1.0 8588 -Biological Process GO:0006740 NADPH regeneration -0.028752242517058546 -1.5643218236354053 1.0 8589 -Biological Process GO:0009154 purine ribonucleotide catabolic process -0.028757982780326596 -1.564425864821445 1.0 8590 -Biological Process GO:0046128 purine ribonucleoside metabolic process -0.02877169827014403 -1.5646744554802856 1.0 8591 -Biological Process GO:0032793 positive regulation of CREB transcription factor activity -0.02880858206988468 -1.5653429673745098 1.0 8592 -Phenotype MP:0004648 decreased thoracic vertebrae number -0.02881334238719213 -1.5654292472253575 1.0 8593 -Phenotype MP:0004806 absent germ cells -0.028862171917443336 -1.5663142732257112 1.0 8594 -Biological Process GO:0006829 zinc ion transport -0.02887352714963143 -1.566520084661431 1.0 8595 -Biological Process GO:0009119 ribonucleoside metabolic process -0.02887875684573049 -1.5666148719140998 1.0 8596 -Biological Process GO:0034367 protein-containing complex remodeling -0.028939074364064732 -1.56770811552566 1.0 8597 -Phenotype MP:0009426 decreased soleus weight -0.028974977635708887 -1.568358855533589 1.0 8598 -Biological Process GO:0045668 negative regulation of osteoblast differentiation -0.02904152935209625 -1.5695650928057474 1.0 8599 -Biological Process GO:0046479 glycosphingolipid catabolic process -0.029110074693339705 -1.5708074641513552 1.0 8600 -Biological Process GO:0019377 glycolipid catabolic process -0.029110074693339705 -1.5708074641513552 1.0 8600 -Biological Process GO:0043094 cellular metabolic compound salvage -0.029120743574724495 -1.571000835608579 1.0 8602 -Biological Process GO:0043173 nucleotide salvage -0.029120743574724495 -1.571000835608579 1.0 8602 -Biological Process GO:0061140 lung secretory cell differentiation -0.029157818065328245 -1.5716728037386303 1.0 8604 -Phenotype MP:0030881 abnormal knee morphology -0.029227958087004735 -1.5729440783654745 1.0 8605 -Phenotype MP:0011808 abnormal myoblast differentiation -0.029401620062164735 -1.5760916688194213 1.0 8606 -Biological Process GO:1905818 regulation of chromosome separation -0.029509265285653896 -1.5780427181355152 1.0 8607 -Biological Process GO:0007340 acrosome reaction -0.029526460961024625 -1.5783543864992788 1.0 8608 -Phenotype MP:0005300 abnormal cornea stroma morphology -0.029648088861443878 -1.5805588691900954 1.0 8609 -Phenotype MP:0003864 abnormal midbrain development -0.02967786059580857 -1.581098476244532 1.0 8610 -Biological Process GO:0009593 detection of chemical stimulus -0.029786026647269148 -1.5830589654691003 1.0 8611 -Phenotype MP:0006272 abnormal urine organic anion level -0.0298777269843733 -1.5847210167352268 1.0 8612 -Biological Process GO:0001539 cilium or flagellum-dependent cell motility -0.029879118821844353 -1.5847462435261424 1.0 8613 -Biological Process GO:0060285 cilium-dependent cell motility -0.029879118821844353 -1.5847462435261424 1.0 8613 -Phenotype MP:0031393 abnormal bicarbonate homeostasis -0.030008095034500304 -1.5870839129864145 1.0 8615 -Phenotype MP:0003996 clonic seizures -0.030040441418344388 -1.587670185075705 1.0 8616 -Phenotype MP:0002799 abnormal passive avoidance behavior -0.030151431314527688 -1.5896818559517802 1.0 8617 -Phenotype MP:0031498 abnormal cornea size -0.03015869045655961 -1.5898134265281398 1.0 8618 -Phenotype MP:0011961 abnormal cornea thickness -0.03015869045655961 -1.5898134265281398 1.0 8618 -Phenotype MP:0013438 dysmyelination -0.03028909028783522 -1.592176898806635 1.0 8620 -Phenotype MP:0020352 abnormal endoplasmic reticulum physiology -0.030310246863229695 -1.5925603577341778 1.0 8621 -Phenotype MP:0001942 abnormal lung volume -0.03033858645157994 -1.593074007412974 1.0 8622 -Biological Process GO:0042278 purine nucleoside metabolic process -0.030339435646722146 -1.5930893989143124 1.0 8623 -Biological Process GO:0071715 icosanoid transport -0.03035850251645078 -1.5934349823219018 1.0 8624 -Phenotype MP:0008779 abnormal maternal behavior -0.030369097424366442 -1.593627013023989 1.0 8625 -Phenotype MP:0004622 sacral vertebral fusion -0.0303713411382438 -1.5936676799136478 1.0 8626 -Biological Process GO:1901657 glycosyl compound metabolic process -0.030552362634382213 -1.5969486602933738 1.0 8627 -Phenotype MP:0000277 abnormal heart shape -0.03057424800952324 -1.5973453285784802 1.0 8628 -Phenotype MP:0012348 decreased susceptibility to induction of seizure by inducing agent -0.030583975023680265 -1.5975216288703424 1.0 8629 -Phenotype MP:0002823 abnormal rib development -0.03062157474531868 -1.5982031167135566 1.0 8630 -Phenotype MP:0030544 abnormal enamel development -0.030646315929265366 -1.598651545993128 1.0 8631 -Biological Process GO:0021692 cerebellar Purkinje cell layer morphogenesis -0.030801904437063765 -1.6014715582694992 1.0 8632 -Phenotype MP:0011130 absent tertiary ovarian follicles -0.03092159227008029 -1.6036408776055788 1.0 8633 -Phenotype MP:0000528 delayed kidney development -0.03095772009501463 -1.6042956875994214 1.0 8634 -Biological Process GO:0006590 thyroid hormone generation -0.031004980732811882 -1.605152277720782 1.0 8635 -Biological Process GO:0007271 synaptic transmission, cholinergic -0.031026474568714768 -1.6055418494312519 1.0 8636 -Phenotype MP:0006029 abnormal sclerotome morphology -0.031065983852316625 -1.6062579477238856 1.0 8637 -Phenotype MP:0020354 increased endoplasmic reticulum stress -0.031086213747508085 -1.606624610748018 1.0 8638 -Biological Process GO:0021533 cell differentiation in hindbrain -0.03115077355268281 -1.6077947450061907 1.0 8639 -Biological Process GO:0014904 myotube cell development -0.03140958107155867 -1.6124855823358522 1.0 8640 -Phenotype MP:0002292 abnormal gestational length -0.031415177788165494 -1.6125870217658071 1.0 8641 -Phenotype MP:0013405 increased circulating lactate level -0.03156797426302593 -1.6153564289732534 1.0 8642 -Biological Process GO:0048662 negative regulation of smooth muscle cell proliferation -0.03162914614425594 -1.616465157750708 1.0 8643 -Biological Process GO:2001251 negative regulation of chromosome organization -0.03163236889623744 -1.6165235695208326 1.0 8644 -Phenotype MP:0005356 positive geotaxis -0.03166773683932855 -1.617164606799988 1.0 8645 -Biological Process GO:0006734 NADH metabolic process -0.031788677752895955 -1.619356637984049 1.0 8646 -Phenotype MP:0031374 abnormal manchette assembly -0.031791356810136895 -1.6194051953898334 1.0 8647 -Biological Process GO:0006302 double-strand break repair -0.031872151976518825 -1.6208695924991863 1.0 8648 -Phenotype MP:0002887 decreased susceptibility to pharmacologically induced seizures -0.031910185103202204 -1.6215589357268678 1.0 8649 -Biological Process GO:0043586 tongue development -0.031945840213913 -1.622205177864816 1.0 8650 -Biological Process GO:0045667 regulation of osteoblast differentiation -0.03194867509078336 -1.6222565594719125 1.0 8651 -Phenotype MP:0009406 decreased skeletal muscle fiber number -0.03198988094307875 -1.6230034077512334 1.0 8652 -Phenotype MP:0001970 abnormal pain threshold -0.032068502490212536 -1.6244284084228244 1.0 8653 -Phenotype MP:0013977 symmetric azygos veins -0.03218384249606432 -1.6265189242138762 1.0 8654 -Phenotype MP:0000431 absent palatine bone horizontal plate -0.03225770692823704 -1.6278577030765424 1.0 8655 -Phenotype MP:0004331 vestibular saccular macula degeneration -0.032406803511390025 -1.6305600504465756 1.0 8656 -Biological Process GO:0072523 purine-containing compound catabolic process -0.032427491025154964 -1.6309350077208 1.0 8657 -Biological Process GO:0002566 somatic diversification of immune receptors via somatic mutation -0.03250876123799862 -1.632408014957423 1.0 8658 -Biological Process GO:1901292 nucleoside phosphate catabolic process -0.03253209114347766 -1.6328308650816925 1.0 8659 -Biological Process GO:0009116 nucleoside metabolic process -0.03262662590988197 -1.6345442898427902 1.0 8660 -Phenotype MP:0031009 abnormal sperm-egg fusion -0.0326705437725221 -1.6353402927966691 1.0 8661 -Biological Process GO:0006767 water-soluble vitamin metabolic process -0.0327314566947039 -1.636444327990354 1.0 8662 -Biological Process GO:0030317 flagellated sperm motility -0.03278728567219669 -1.63745621764811 1.0 8663 -Biological Process GO:0032261 purine nucleotide salvage -0.03295423266730624 -1.6404821003586907 1.0 8664 -Biological Process GO:0043101 purine-containing compound salvage -0.03295423266730624 -1.6404821003586907 1.0 8664 -Phenotype MP:0001957 apnea -0.032962751433599946 -1.640636501386554 1.0 8666 -Biological Process GO:0032612 interleukin-1 production -0.03299701220912943 -1.6412574714630608 1.0 8667 -Biological Process GO:0032611 interleukin-1 beta production -0.03299701220912943 -1.6412574714630608 1.0 8667 -Biological Process GO:0009166 nucleotide catabolic process -0.03310365726089426 -1.6431903928558202 1.0 8669 -Biological Process GO:0045005 DNA-templated DNA replication maintenance of fidelity -0.033280645042241375 -1.6463982629178768 1.0 8670 -Phenotype MP:0004357 long tibia -0.03329700630054644 -1.6466948076301442 1.0 8671 -Phenotype MP:0030124 middle ear ossicle hypoplasia -0.033392520178978646 -1.6484259786115616 1.0 8672 -Biological Process GO:0034728 nucleosome organization -0.033424232034025225 -1.6490007499864099 1.0 8673 -Phenotype MP:0020476 abnormal circardian behavior entrainment -0.03343695889047238 -1.6492314218524007 1.0 8674 -Phenotype MP:0009709 hydrometra -0.03345447536938506 -1.6495489047196865 1.0 8675 -Biological Process GO:0019730 antimicrobial humoral response -0.0334986975810605 -1.6503504239422668 1.0 8676 -Biological Process GO:0000375 RNA splicing, via transesterification reactions -0.03351474077406458 -1.6506412037811116 1.0 8677 -Phenotype MP:0013239 impaired skeletal muscle regeneration -0.03355404436581866 -1.6513535739479082 1.0 8678 -Biological Process GO:0000377 RNA splicing, via transesterification reactions with bulged adenosine as nucleophile -0.03356128419632687 -1.6514847945065527 1.0 8679 -Biological Process GO:0000398 mRNA splicing, via spliceosome -0.03356128419632687 -1.6514847945065527 1.0 8679 -Biological Process GO:0048172 regulation of short-term neuronal synaptic plasticity -0.03365703996854674 -1.653220349767121 1.0 8681 -Phenotype MP:0001872 sinus inflammation -0.03378105560332445 -1.6554681096915764 1.0 8682 -Biological Process GO:0035036 sperm-egg recognition -0.03382794610629536 -1.6563179911892159 1.0 8683 -Biological Process GO:0060999 positive regulation of dendritic spine development -0.03383513618904033 -1.656448310079061 1.0 8684 -Phenotype MP:0030604 abnormal ammonia homeostasis -0.03388746957465605 -1.6573968427951895 1.0 8685 -Biological Process GO:0060294 cilium movement involved in cell motility -0.03390753232455679 -1.6577604763425409 1.0 8686 -Biological Process GO:1901568 fatty acid derivative metabolic process -0.03399824872391077 -1.6594046939230442 1.0 8687 -Biological Process GO:0044818 mitotic G2/M transition checkpoint -0.0340986760634836 -1.6612249204583205 1.0 8688 -Phenotype MP:0011952 decreased cardiac stroke volume -0.03410971889749903 -1.6614250697362465 1.0 8689 -Phenotype MP:0003484 abnormal channel response -0.03433612939379427 -1.6655287171590958 1.0 8690 -Biological Process GO:1902043 positive regulation of extrinsic apoptotic signaling pathway via death domain receptors -0.03434856191270619 -1.6657540542129305 1.0 8691 -Phenotype MP:0010136 decreased DN4 thymocyte number -0.03444380928182422 -1.6674803947634353 1.0 8692 -Biological Process GO:0050775 positive regulation of dendrite morphogenesis -0.03445137066040038 -1.667617443319995 1.0 8693 -Phenotype MP:0011960 abnormal eye anterior chamber depth -0.03447414491790246 -1.6680302224297756 1.0 8694 -Phenotype MP:0010130 decreased DN1 thymic pro-T cell number -0.03451787114263527 -1.66882275198283 1.0 8695 -Phenotype MP:0004142 abnormal muscle tone -0.0345256955520572 -1.6689645679237206 1.0 8696 -Biological Process GO:0106380 purine ribonucleotide salvage -0.03452682588765077 -1.6689850550425662 1.0 8697 -Biological Process GO:0010526 retrotransposon silencing -0.034700716713993884 -1.6721367933809228 1.0 8698 -Biological Process GO:0046889 positive regulation of lipid biosynthetic process -0.034775666176175335 -1.6734952382072783 1.0 8699 -Phenotype MP:0030696 abnormal phenylalanine level -0.034851904320094995 -1.6748770401464022 1.0 8700 -Biological Process GO:0009218 pyrimidine ribonucleotide metabolic process -0.0348765311200776 -1.6753233962382588 1.0 8701 -Phenotype MP:0004453 abnormal pterygoid bone morphology -0.0348886555945378 -1.6755431500446685 1.0 8702 -Biological Process GO:0006405 RNA export from nucleus -0.034899307757530806 -1.6757362184842033 1.0 8703 -Phenotype MP:0010854 lung situs inversus -0.03492636093782009 -1.6762265522602011 1.0 8704 -Phenotype MP:0012167 abnormal epigenetic regulation of gene expression -0.034951631942781836 -1.6766845844454619 1.0 8705 -Biological Process GO:0016446 somatic hypermutation of immunoglobulin genes -0.03503182163974139 -1.6781380075360504 1.0 8706 -Biological Process GO:0006691 leukotriene metabolic process -0.035181293808038916 -1.6808471623157917 1.0 8707 -Biological Process GO:0046321 positive regulation of fatty acid oxidation -0.03532601805179647 -1.683470261861252 1.0 8708 -Phenotype MP:0011143 thick lung-associated mesenchyme -0.035359588781685325 -1.6840787249910352 1.0 8709 -Biological Process GO:0010454 negative regulation of cell fate commitment -0.03543154666297621 -1.6853829479795666 1.0 8710 -Biological Process GO:0045923 positive regulation of fatty acid metabolic process -0.03546106290118267 -1.6859179242144589 1.0 8711 -Biological Process GO:0071805 potassium ion transmembrane transport -0.03560856090383768 -1.6885912976153163 1.0 8712 -Biological Process GO:0010470 regulation of gastrulation -0.03564558189214173 -1.689262296026305 1.0 8713 -Biological Process GO:0006884 cell volume homeostasis -0.03567976819572216 -1.6898819163128205 1.0 8714 -Phenotype MP:0011953 prolonged PQ interval -0.03570253783355515 -1.6902946116919724 1.0 8715 -Phenotype MP:0021105 abnormal ventral interneuron 3 morphology -0.03572661031555446 -1.6907309208752237 1.0 8716 -Biological Process GO:0009123 nucleoside monophosphate metabolic process -0.035835938709884774 -1.6927124773444644 1.0 8717 -Biological Process GO:0006402 mRNA catabolic process -0.03584647575564626 -1.6929034593059507 1.0 8718 -Phenotype MP:0003696 abnormal zona pellucida morphology -0.03587789524970164 -1.6934729316931296 1.0 8719 -Phenotype MP:0008007 abnormal cellular replicative senescence -0.03587850074839283 -1.6934839062423854 1.0 8720 -Phenotype MP:0030731 abnormal gamma-aminobutyric acid level -0.03592935209474257 -1.6944055772771258 1.0 8721 -Biological Process GO:0000956 nuclear-transcribed mRNA catabolic process -0.036003594047632426 -1.695751198631387 1.0 8722 -Phenotype MP:0013160 impaired muscle regeneration -0.03602319853100866 -1.6961065261846566 1.0 8723 -Phenotype MP:0000508 right-sided isomerism -0.03608724899196236 -1.6972674286751588 1.0 8724 -Biological Process GO:0001833 inner cell mass cell proliferation -0.03626123239721579 -1.7004208449887548 1.0 8725 -Phenotype MP:0003578 absent ovary -0.03640334732195827 -1.7029966511205845 1.0 8726 -Biological Process GO:0046513 ceramide biosynthetic process -0.036431164124157256 -1.703500825399267 1.0 8727 -Phenotype MP:0002861 abnormal tail bud morphology -0.03645223984163182 -1.7038828187923047 1.0 8728 -Phenotype MP:0013674 abnormal Ly6C-positive mature NK cell number -0.036518417995705876 -1.7050822853181888 1.0 8729 -Phenotype MP:0009552 urinary bladder obstruction -0.03659818778575574 -1.706528097675459 1.0 8730 -Phenotype MP:0012129 failure of blastocyst formation -0.03665356294500666 -1.7075317619634147 1.0 8731 -Phenotype MP:0006061 right atrial isomerism -0.036707970550597935 -1.7085178895242894 1.0 8732 -Biological Process GO:0046514 ceramide catabolic process -0.036769150000078854 -1.7096267554748605 1.0 8733 -Biological Process GO:1903311 regulation of mRNA metabolic process -0.036789836169792034 -1.710001688388401 1.0 8734 -Phenotype MP:0000430 absent maxillary shelf -0.03679157392078114 -1.7100331847964063 1.0 8735 -Biological Process GO:0010171 body morphogenesis -0.03679597231871057 -1.7101129049269794 1.0 8736 -Biological Process GO:0006406 mRNA export from nucleus -0.036807652182773154 -1.7103246002540244 1.0 8737 -Biological Process GO:0060260 regulation of transcription initiation by RNA polymerase II -0.03687556704534578 -1.71155554429297 1.0 8738 -Biological Process GO:0007095 mitotic G2 DNA damage checkpoint signaling -0.03693276245696353 -1.7125922003107985 1.0 8739 -Biological Process GO:1902475 L-alpha-amino acid transmembrane transport -0.036969915983166235 -1.7132656009461324 1.0 8740 -Biological Process GO:0021591 ventricular system development -0.03701242622971668 -1.7140360911246175 1.0 8741 -Biological Process GO:0008033 tRNA processing -0.03703728799730088 -1.7144867059598121 1.0 8742 -Biological Process GO:0010976 positive regulation of neuron projection development -0.03709208667376385 -1.7154799216062702 1.0 8743 -Biological Process GO:0071103 DNA conformation change -0.03713794180090857 -1.7163110371128873 1.0 8744 -Phenotype MP:0004071 prolonged P wave -0.037139809501617105 -1.716344888834979 1.0 8745 -Phenotype MP:0008966 abnormal chiasmata formation -0.03732377015317678 -1.7196791408508139 1.0 8746 -Biological Process GO:0006401 RNA catabolic process -0.03739014035319532 -1.7208820881731186 1.0 8747 -Phenotype MP:0008875 abnormal xenobiotic pharmacokinetics -0.037592569176062574 -1.7245510723008968 1.0 8748 -Phenotype MP:0003177 allodynia -0.03774712902042254 -1.7273524402470042 1.0 8749 -Phenotype MP:0001363 increased anxiety-related response -0.037864116941545456 -1.7294728241906643 1.0 8750 -Phenotype MP:0004568 fusion of glossopharyngeal and vagus nerve -0.03790930412809179 -1.7302918334002677 1.0 8751 -Biological Process GO:0050907 detection of chemical stimulus involved in sensory perception -0.03791541155715783 -1.7304025293969516 1.0 8752 -Biological Process GO:0051931 regulation of sensory perception -0.037941086953955816 -1.7308678911077588 1.0 8753 -Biological Process GO:0051930 regulation of sensory perception of pain -0.037941086953955816 -1.7308678911077588 1.0 8753 -Phenotype MP:0003898 abnormal QRS complex -0.03811014659595058 -1.733932065143555 1.0 8755 -Biological Process GO:0009161 ribonucleoside monophosphate metabolic process -0.03813386970563437 -1.7343620420196666 1.0 8756 -Phenotype MP:0003246 loss of GABAergic neurons -0.0381730520089012 -1.7350722138555719 1.0 8757 -Phenotype MP:0012204 abnormal neuronal stem cell physiology -0.03834715395116417 -1.738227778630046 1.0 8758 -Phenotype MP:0003092 decreased cornea stroma thickness -0.03842470499009276 -1.7396333765428902 1.0 8759 -Phenotype MP:0003701 elevated level of mitotic sister chromatid exchange -0.0384348001156356 -1.7398163487839968 1.0 8760 -Phenotype MP:0001460 abnormal olfactory discrimination memory -0.038573752572041986 -1.7423348357753732 1.0 8761 -Biological Process GO:0006959 humoral immune response -0.038598865555845796 -1.742790003857034 1.0 8762 -Biological Process GO:0000725 recombinational repair -0.038648865096405416 -1.743696236072936 1.0 8763 -Biological Process GO:0000724 double-strand break repair via homologous recombination -0.038648865096405416 -1.743696236072936 1.0 8763 -Biological Process GO:0022010 central nervous system myelination -0.038673568218126286 -1.7441439754818635 1.0 8765 -Biological Process GO:0032291 axon ensheathment in central nervous system -0.038673568218126286 -1.7441439754818635 1.0 8765 -Biological Process GO:0006956 complement activation -0.03868751328910558 -1.7443967272558405 1.0 8767 -Biological Process GO:0009261 ribonucleotide catabolic process -0.03873367148704032 -1.7452333358632048 1.0 8768 -Phenotype MP:0008958 abnormal trophoblast glycogen cell morphology -0.03880000487888502 -1.7464356160443206 1.0 8769 -Biological Process GO:0021514 ventral spinal cord interneuron differentiation -0.038854906158318325 -1.7474306913502102 1.0 8770 -Biological Process GO:0046049 UMP metabolic process -0.0390397631006425 -1.7507811884666302 1.0 8771 -Phenotype MP:0010123 increased bone mineral content -0.039203514591101385 -1.7537491532598042 1.0 8772 -Biological Process GO:0035601 protein deacylation -0.039333873040949596 -1.7561118755077545 1.0 8773 -Biological Process GO:0098732 macromolecule deacylation -0.039333873040949596 -1.7561118755077545 1.0 8773 -Phenotype MP:0030566 abnormal A band morphology -0.03948371061428246 -1.7588276531846498 1.0 8775 -Phenotype MP:0011234 abnormal retinol level -0.03952943735274017 -1.7596564416705978 1.0 8776 -Phenotype MP:0020353 abnormal endoplasmic reticulum stress -0.0395301155558343 -1.7596687339734058 1.0 8777 -Phenotype MP:0010507 shortened RR interval -0.039630315183145415 -1.7614848332670072 1.0 8778 -Biological Process GO:0009173 pyrimidine ribonucleoside monophosphate metabolic process -0.039642697073677624 -1.7617092526910354 1.0 8779 -Phenotype MP:0009895 decreased palatine bone horizontal plate size -0.039701316553922394 -1.7627717196833852 1.0 8780 -Biological Process GO:0009129 pyrimidine nucleoside monophosphate metabolic process -0.03977619942491262 -1.7641289575569945 1.0 8781 -Phenotype MP:0012306 enhanced spatial learning -0.039827527477953595 -1.7650592688103508 1.0 8782 -Biological Process GO:0017004 cytochrome complex assembly -0.03984065139584203 -1.765297137339866 1.0 8783 -Biological Process GO:0003333 amino acid transmembrane transport -0.039908782836656664 -1.766532006818485 1.0 8784 -Phenotype MP:0030066 short face -0.039922144820334404 -1.7667741902454046 1.0 8785 -Biological Process GO:0051236 establishment of RNA localization -0.03997789204704061 -1.767784598185616 1.0 8786 -Biological Process GO:0050657 nucleic acid transport -0.03997789204704061 -1.767784598185616 1.0 8786 -Biological Process GO:0050658 RNA transport -0.03997789204704061 -1.767784598185616 1.0 8786 -Phenotype MP:0000690 absent spleen -0.039985312543355134 -1.7679190932778295 1.0 8789 -Biological Process GO:0007342 fusion of sperm to egg plasma membrane involved in single fertilization -0.040018650633394603 -1.7685233398543434 1.0 8790 -Phenotype MP:0010092 increased circulating magnesium level -0.040213653101172975 -1.7720577227007308 1.0 8791 -Biological Process GO:0006400 tRNA modification -0.04022483254833631 -1.772260348066124 1.0 8792 -Biological Process GO:1990542 mitochondrial transmembrane transport -0.040227925028387235 -1.772316398682146 1.0 8793 -Biological Process GO:0010566 regulation of ketone biosynthetic process -0.04032224755945446 -1.7740259767179005 1.0 8794 -Biological Process GO:0000070 mitotic sister chromatid segregation -0.040381776531055014 -1.7751049280690558 1.0 8795 -Biological Process GO:0000819 sister chromatid segregation -0.040381776531055014 -1.7751049280690558 1.0 8795 -Biological Process GO:0170041 non-proteinogenic amino acid metabolic process -0.04039109024671261 -1.7752737374037857 1.0 8797 -Phenotype MP:0010785 abnormal stomach pyloric region morphology -0.040407667106019174 -1.775574189843427 1.0 8798 -Phenotype MP:0010934 increased subcutaneous adipose tissue amount -0.04045379321412379 -1.77641021682869 1.0 8799 -Phenotype MP:0013859 abnormal vitelline vein connection -0.04048361554523883 -1.7769507409396568 1.0 8800 -Phenotype MP:0004233 abnormal muscle weight -0.04050843192230302 -1.7774005330802614 1.0 8801 -Phenotype MP:0004964 absent inner cell mass -0.04084924483407759 -1.7835777026459942 1.0 8802 -Biological Process GO:0048024 regulation of mRNA splicing, via spliceosome -0.04106529785040647 -1.7874936227034313 1.0 8803 -Phenotype MP:0030029 wide cranial sutures -0.04147593939426675 -1.7949364230185707 1.0 8804 -Biological Process GO:0001510 RNA methylation -0.041652711318499236 -1.798140380711251 1.0 8805 -Phenotype MP:0000705 athymia -0.04173302529238043 -1.7995960562975393 1.0 8806 -Phenotype MP:0006074 abnormal retina rod bipolar cell morphology -0.04177550851831158 -1.80036605673241 1.0 8807 -Phenotype MP:0012205 abnormal neuronal stem cell self-renewal -0.04195249210854235 -1.8035738508312757 1.0 8808 -Phenotype MP:0004659 abnormal odontoid process morphology -0.04202684998822548 -1.804921573336739 1.0 8809 -Phenotype MP:0002059 abnormal seminal vesicle morphology -0.04209845809913437 -1.806219456803251 1.0 8810 -Biological Process GO:0006487 protein N-linked glycosylation -0.04210652573075935 -1.8063656811005697 1.0 8811 -Phenotype MP:0001694 absent egg cylinders -0.042121706243397616 -1.8066408250209485 1.0 8812 -Phenotype MP:0004232 decreased muscle weight -0.04229574841232653 -1.8097953064150483 1.0 8813 -Biological Process GO:0003341 cilium movement -0.04231413807462747 -1.8101286155660954 1.0 8814 -Biological Process GO:0033120 positive regulation of RNA splicing -0.042335495765660536 -1.8105157196765493 1.0 8815 -Biological Process GO:0006720 isoprenoid metabolic process -0.042354818268582894 -1.8108659363874255 1.0 8816 -Phenotype MP:0000505 decreased digestive secretion -0.042447976594107484 -1.8125544134179137 1.0 8817 -Phenotype MP:0004156 abnormal QT variability -0.04245899752304849 -1.8127541656705088 1.0 8818 -Phenotype MP:0005634 decreased circulating sodium level -0.042571632714216046 -1.8147956572069883 1.0 8819 -Biological Process GO:0080154 regulation of fertilization -0.042632217492567515 -1.8158937448558123 1.0 8820 -Phenotype MP:0012203 abnormal neuronal stem cell morphology -0.042689703206012064 -1.8169356625393447 1.0 8821 -Phenotype MP:0010511 shortened PR interval -0.04274037382365825 -1.8178540579005158 1.0 8822 -Phenotype MP:0005114 premature hair loss -0.042792174769153535 -1.8187929402401652 1.0 8823 -Biological Process GO:0060911 cardiac cell fate commitment -0.04296467794020664 -1.8219195275888467 1.0 8824 -Biological Process GO:0000288 nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay -0.04300246388757478 -1.8226043907381901 1.0 8825 -Phenotype MP:0031284 abdominal situs abnormality -0.04306648512132316 -1.8237647634911238 1.0 8826 -Biological Process GO:0034440 lipid oxidation -0.043406412980893094 -1.8299258916530434 1.0 8827 -Biological Process GO:0015804 neutral amino acid transport -0.043435861899447925 -1.8304596477319828 1.0 8828 -Biological Process GO:0046467 membrane lipid biosynthetic process -0.043445214807901866 -1.8306291674287334 1.0 8829 -Biological Process GO:0001711 endodermal cell fate commitment -0.04347953105301383 -1.8312511428809313 1.0 8830 -Biological Process GO:0060325 face morphogenesis -0.04356702642730648 -1.8328369799914117 1.0 8831 -Phenotype MP:0013793 abnormal large intestine goblet cell morphology -0.0436623956699862 -1.8345655294771712 1.0 8832 -Biological Process GO:0140374 antiviral innate immune response -0.04375946570636691 -1.836324905527079 1.0 8833 -Biological Process GO:0007341 penetration of zona pellucida -0.04378066311663864 -1.836709104579049 1.0 8834 -Phenotype MP:0003283 abnormal digestive organ placement -0.043899976976409905 -1.8388716457207903 1.0 8835 -Biological Process GO:0006303 double-strand break repair via nonhomologous end joining -0.04392193793774224 -1.8392696839913183 1.0 8836 -Phenotype MP:0004618 thoracic vertebral transformation -0.04419245816879913 -1.844172812013959 1.0 8837 -Biological Process GO:1901264 carbohydrate derivative transport -0.04419250841988731 -1.844173722805428 1.0 8838 -Biological Process GO:0060272 embryonic skeletal joint morphogenesis -0.04428386072037438 -1.8458294659736965 1.0 8839 -Biological Process GO:0006356 regulation of transcription by RNA polymerase I -0.04431685968869692 -1.8464275660332312 1.0 8840 -Biological Process GO:0006858 extracellular transport -0.04432888030186932 -1.8466454373734436 1.0 8841 -Biological Process GO:0003351 epithelial cilium movement involved in extracellular fluid movement -0.04432888030186932 -1.8466454373734436 1.0 8841 -Phenotype MP:0012128 abnormal blastocyst formation -0.04434941787008628 -1.8470176769129711 1.0 8843 -Phenotype MP:0004695 increased length of long bones -0.04439694953757112 -1.8478791793961578 1.0 8844 -Phenotype MP:0030612 organic aciduria -0.044481714771057 -1.8494155332208848 1.0 8845 -Phenotype MP:0010810 increased type II pneumocyte number -0.04455873697573254 -1.8508115461129142 1.0 8846 -Biological Process GO:0099601 regulation of neurotransmitter receptor activity -0.04473651755408614 -1.8540337854707667 1.0 8847 -Biological Process GO:0060581 cell fate commitment involved in pattern specification -0.04476869233563541 -1.8546169473009195 1.0 8848 -Biological Process GO:0060579 ventral spinal cord interneuron fate commitment -0.04476869233563541 -1.8546169473009195 1.0 8848 -Phenotype MP:0000756 forelimb paralysis -0.04479953164269057 -1.855175903908454 1.0 8850 -Phenotype MP:0003929 decreased heart rate variability -0.04489260997635203 -1.8568629311015523 1.0 8851 -Phenotype MP:0011904 abnormal Schwann cell physiology -0.04507263151809626 -1.8601257874970119 1.0 8852 -Biological Process GO:0009247 glycolipid biosynthetic process -0.045119946929918386 -1.8609833703872136 1.0 8853 -Phenotype MP:0004931 enlarged epididymis -0.04515104747157306 -1.8615470618224552 1.0 8854 -Biological Process GO:1901616 organic hydroxy compound catabolic process -0.04535293647553629 -1.8652062618346974 1.0 8855 -Biological Process GO:0018022 peptidyl-lysine methylation -0.04539238051204242 -1.8659211775360618 1.0 8856 -Phenotype MP:0003880 abnormal central pattern generator function -0.04541386428110106 -1.8663105667868833 1.0 8857 -Phenotype MP:0010807 abnormal stomach position or orientation -0.04544388315986403 -1.866854653286795 1.0 8858 -Phenotype MP:0020450 abnormal sperm progressive motility -0.04565665606509728 -1.8707111219510126 1.0 8859 -Phenotype MP:0009348 abnormal urine pH -0.045905167979104045 -1.8752153533896971 1.0 8860 -Phenotype MP:0010956 abnormal mitochondrial ATP synthesis coupled electron transport -0.04592588444894319 -1.8755908354872899 1.0 8861 -Phenotype MP:0009645 crystalluria -0.046071130209326405 -1.8782233874229524 1.0 8862 -Phenotype MP:0021136 abnormal vertebrae shape -0.04631283121294061 -1.882604172398964 1.0 8863 -Phenotype MP:0006281 abnormal tail development -0.04651337590657678 -1.8862390070407864 1.0 8864 -Phenotype MP:0004444 small supraoccipital bone -0.04662182977924734 -1.888204712970348 1.0 8865 -Biological Process GO:0019731 antibacterial humoral response -0.04685966496166638 -1.8925154306683656 1.0 8866 -Phenotype MP:0009400 decreased skeletal muscle fiber size -0.047036834776631675 -1.8957266000553223 1.0 8867 -Phenotype MP:0009615 abnormal zinc homeostasis -0.04704636393018702 -1.8958993141612017 1.0 8868 -Phenotype MP:0013210 abnormal primary cilium physiology -0.04706130284131582 -1.896170079099917 1.0 8869 -Phenotype MP:0009814 increased prostaglandin level -0.0471224963798802 -1.897279200412461 1.0 8870 -Phenotype MP:0010422 heart right ventricle hypoplasia -0.04745201124601017 -1.9032515950377593 1.0 8871 -Biological Process GO:0043279 response to alkaloid -0.04756518577026525 -1.9053028618844425 1.0 8872 -Biological Process GO:0015936 coenzyme A metabolic process -0.047687933145120986 -1.9075276348376868 1.0 8873 -Biological Process GO:0000381 regulation of alternative mRNA splicing, via spliceosome -0.04770219240808293 -1.9077860812819243 1.0 8874 -Phenotype MP:0004608 abnormal cervical axis morphology -0.04776010667327224 -1.9088357663847757 1.0 8875 -Biological Process GO:0034655 nucleobase-containing compound catabolic process -0.047765837365493 -1.9089396340973934 1.0 8876 -Biological Process GO:0034369 plasma lipoprotein particle remodeling -0.04785345374519423 -1.9105276644080178 1.0 8877 -Biological Process GO:0034368 protein-lipid complex remodeling -0.04785345374519423 -1.9105276644080178 1.0 8877 -Phenotype MP:0004100 abnormal spinal cord interneuron morphology -0.047967550545351845 -1.9125956473309984 1.0 8879 -Phenotype MP:0000539 distended urinary bladder -0.04800166551433227 -1.9132139746913808 1.0 8880 -Phenotype MP:0008025 brain vacuoles -0.048212803213727895 -1.9170408055590689 1.0 8881 -Phenotype MP:0001333 absent optic nerve -0.048265534464328796 -1.9179965495028028 1.0 8882 -Phenotype MP:0002631 abnormal epididymis morphology -0.04841843136940249 -1.9207677769888694 1.0 8883 -Biological Process GO:0006260 DNA replication -0.048485245765738316 -1.9219787752854112 1.0 8884 -Phenotype MP:0009038 decreased inferior colliculus size -0.04855571153530169 -1.9232559540310943 1.0 8885 -Phenotype MP:0020411 increased abdominal adipose tissue amount -0.04862330766978218 -1.9244811211836528 1.0 8886 -Phenotype MP:0011874 enlarged urinary bladder -0.04890831036338539 -1.9296467411007825 1.0 8887 -Phenotype MP:0020451 decreased sperm progressive motility -0.04919952960866292 -1.934925034841232 1.0 8888 -Phenotype MP:0010520 sinoatrial block -0.049240936218782894 -1.935675521818153 1.0 8889 -Phenotype MP:0009808 decreased oligodendrocyte number -0.049360687832179284 -1.9378459971615545 1.0 8890 -Biological Process GO:0042572 retinol metabolic process -0.04949633543255705 -1.940304584262481 1.0 8891 -Biological Process GO:0003310 pancreatic A cell differentiation -0.04965801431643646 -1.943234983453408 1.0 8892 -Biological Process GO:0006284 base-excision repair -0.04976582056604539 -1.945188951337467 1.0 8893 -Biological Process GO:1901607 alpha-amino acid biosynthetic process -0.04979898400035854 -1.9457900323119748 1.0 8894 -Biological Process GO:0006399 tRNA metabolic process -0.0499550847809882 -1.948619329436523 1.0 8895 -Phenotype MP:0008545 absent sperm flagellum -0.05014027684627709 -1.9519759005932944 1.0 8896 -Biological Process GO:0051291 protein heterooligomerization -0.05017111729568802 -1.952534877905811 1.0 8897 -Phenotype MP:0011962 increased cornea thickness -0.05025100328233978 -1.9539827963045135 1.0 8898 -Biological Process GO:0003228 atrial cardiac muscle tissue development -0.05032916954169386 -1.9553995449712092 1.0 8899 -Phenotype MP:0009280 decreased activated sperm motility -0.050463887810172636 -1.9578412881072373 1.0 8900 -Biological Process GO:2000142 regulation of DNA-templated transcription initiation -0.050475141826154646 -1.9580452650183653 1.0 8901 -Biological Process GO:0046040 IMP metabolic process -0.05078327720665343 -1.9636301605102406 1.0 8902 -Biological Process GO:0009066 aspartate family amino acid metabolic process -0.05122200320380732 -1.9715819862295296 1.0 8903 -Biological Process GO:0141005 retrotransposon silencing by heterochromatin formation -0.05123372179588359 -1.971794383494498 1.0 8904 -Phenotype MP:0005134 decreased thyroid-stimulating hormone level -0.0512716929075987 -1.972482602712609 1.0 8905 -Phenotype MP:0012282 abnormal sternebra number -0.051320612560929124 -1.973369262176728 1.0 8906 -Biological Process GO:0048026 positive regulation of mRNA splicing, via spliceosome -0.05135469843240448 -1.9739870621503344 1.0 8907 -Biological Process GO:0050685 positive regulation of mRNA processing -0.05135469843240448 -1.9739870621503344 1.0 8907 -Phenotype MP:0009809 abnormal urine uric acid level -0.051507130518930744 -1.9767498648881427 1.0 8909 -Biological Process GO:0170034 L-amino acid biosynthetic process -0.05154560153971688 -1.977447144863615 1.0 8910 -Biological Process GO:0170038 proteinogenic amino acid biosynthetic process -0.05154560153971688 -1.977447144863615 1.0 8910 -Biological Process GO:0009126 purine nucleoside monophosphate metabolic process -0.05170791500235916 -1.9803890456745967 1.0 8912 -Phenotype MP:0004833 ovary atrophy -0.05185398553015186 -1.9830365463635624 1.0 8913 -Phenotype MP:0000709 enlarged thymus -0.05196484323661865 -1.985045821326028 1.0 8914 -Phenotype MP:0012490 abnormal cochlear VIII nucleus morphology -0.05226577518196174 -1.9905001559181392 1.0 8915 -Biological Process GO:0008380 RNA splicing -0.052648660927738344 -1.997439887642648 1.0 8916 -Biological Process GO:0009167 purine ribonucleoside monophosphate metabolic process -0.052650392973892624 -1.997471280651601 1.0 8917 -Phenotype MP:0008806 increased circulating amylase level -0.0527111160323559 -1.9985718746012977 1.0 8918 -Biological Process GO:0035461 vitamin transmembrane transport -0.05281635683329111 -2.0004793442133657 1.0 8919 -Biological Process GO:0046470 phosphatidylcholine metabolic process -0.05329073984759103 -2.009077446624381 1.0 8920 -Phenotype MP:0011460 decreased urine chloride ion level -0.05350371580175839 -2.0129375955121254 1.0 8921 -Biological Process GO:0032392 DNA geometric change -0.05381356951393812 -2.0185536354407185 1.0 8922 -Biological Process GO:0070296 sarcoplasmic reticulum calcium ion transport -0.05399293278851247 -2.0218045608682265 1.0 8923 -Phenotype MP:0000126 brittle teeth -0.05428019781686211 -2.0270111851747448 1.0 8924 -Biological Process GO:0060013 righting reflex -0.054547503273137954 -2.0318560460125106 1.0 8925 -Phenotype MP:0012270 cardiac edema -0.05457517850588989 -2.032357654371741 1.0 8926 -Biological Process GO:0006261 DNA-templated DNA replication -0.05469327077550834 -2.0344980544230102 1.0 8927 -Phenotype MP:0010393 shortened QRS complex duration -0.05484525106083171 -2.0372526683494683 1.0 8928 -Biological Process GO:0002920 regulation of humoral immune response -0.05485021544954605 -2.037342646955968 1.0 8929 -Biological Process GO:0006825 copper ion transport -0.05499143505040904 -2.0399022255118204 1.0 8930 -Biological Process GO:0006289 nucleotide-excision repair -0.05507433450782351 -2.0414047624981397 1.0 8931 -Phenotype MP:0000348 abnormal aerobic fitness -0.05515900656906658 -2.042939427593588 1.0 8932 -Phenotype MP:0002244 abnormal turbinate morphology -0.05518156388824069 -2.0433482747372054 1.0 8933 -Biological Process GO:0021702 cerebellar Purkinje cell differentiation -0.055264680852543435 -2.044854753994736 1.0 8934 -Phenotype MP:0008941 reticulocytopenia -0.055351639942238684 -2.0464308710483192 1.0 8935 -Biological Process GO:0051028 mRNA transport -0.05539009008286788 -2.047127772574896 1.0 8936 -Phenotype MP:0003154 abnormal soft palate morphology -0.055444379662442866 -2.048111760936549 1.0 8937 -Biological Process GO:0007616 long-term memory -0.05561385070885305 -2.051183391599563 1.0 8938 -Phenotype MP:0010808 right-sided stomach -0.05563783029887914 -2.051618017133369 1.0 8939 -Biological Process GO:0021694 cerebellar Purkinje cell layer formation -0.055739344919464084 -2.0534579504313446 1.0 8940 -Phenotype MP:0011045 decreased lung elastance -0.055939735150576375 -2.0570899854691365 1.0 8941 -Biological Process GO:1901317 regulation of flagellated sperm motility -0.05617102918046557 -2.0612821460147215 1.0 8942 -Phenotype MP:0003157 impaired muscle relaxation -0.05617339175565439 -2.0613249672431695 1.0 8943 -Biological Process GO:0006282 regulation of DNA repair -0.05618947626547022 -2.0616164959414127 1.0 8944 -Phenotype MP:0012230 abnormal sphingolipid level -0.05642270590138354 -2.065843738980091 1.0 8945 -Phenotype MP:0006076 abnormal circulating homocysteine level -0.05649648427904408 -2.067180958121 1.0 8946 -Phenotype MP:0003604 single kidney -0.05653729376281591 -2.067920622295799 1.0 8947 -Phenotype MP:0002893 ketoaciduria -0.05661023640972207 -2.069242693974852 1.0 8948 -Phenotype MP:0005407 hyperalgesia -0.0566332066948505 -2.069659026048284 1.0 8949 -Phenotype MP:0020525 abnormal thalamus size -0.05665621900354423 -2.070076119790889 1.0 8950 -Biological Process GO:0051923 sulfation -0.056729423301911996 -2.0714029338531956 1.0 8951 -Phenotype MP:0000084 abnormal fontanelle morphology -0.056771945314102235 -2.0721736372816766 1.0 8952 -Phenotype MP:0030249 small frontonasal prominence -0.057006726034737554 -2.0764289934375744 1.0 8953 -Phenotype MP:0008893 detached sperm flagellum -0.05714740364966109 -2.078978748600784 1.0 8954 -Biological Process GO:0050953 sensory perception of light stimulus -0.057179751274756274 -2.0795650431875154 1.0 8955 -Phenotype MP:0005586 decreased tidal volume -0.05745843012954177 -2.0846160447221433 1.0 8956 -Biological Process GO:1904507 positive regulation of telomere maintenance in response to DNA damage -0.05770238463015809 -2.0890376739050995 1.0 8957 -Biological Process GO:2000779 regulation of double-strand break repair -0.057755874303765165 -2.0900071641223747 1.0 8958 -Biological Process GO:0051651 maintenance of location in cell -0.05782658511565342 -2.09128878421385 1.0 8959 -Phenotype MP:0003977 abnormal circulating carnitine level -0.05785457559449614 -2.0917961063488515 1.0 8960 -Biological Process GO:0046037 GMP metabolic process -0.05796893266139169 -2.0938688065572313 1.0 8961 -Phenotype MP:0012335 increased circulating homocysteine level -0.0584791082569156 -2.103115642733246 1.0 8962 -Phenotype MP:0003061 decreased aerobic running capacity -0.05870259513236764 -2.1071663000812757 1.0 8963 -Biological Process GO:1904505 regulation of telomere maintenance in response to DNA damage -0.05875176573364893 -2.1080575079295407 1.0 8964 -Biological Process GO:0007601 visual perception -0.058834568161731715 -2.1095582862775752 1.0 8965 -Biological Process GO:0071312 cellular response to alkaloid -0.0589161556372062 -2.1110370438393757 1.0 8966 -Biological Process GO:0008652 amino acid biosynthetic process -0.05903141266708278 -2.113126055706571 1.0 8967 -Biological Process GO:0009308 amine metabolic process -0.059070434168246644 -2.1138333130347737 1.0 8968 -Biological Process GO:0006688 glycosphingolipid biosynthetic process -0.05913945934862874 -2.115084381374014 1.0 8969 -Phenotype MP:0020855 decreased cornea epithelium thickness -0.05915669591560224 -2.115396790890344 1.0 8970 -Phenotype MP:0020853 abnormal cornea epithelium thickness -0.05927877460760134 -2.1176094440932838 1.0 8971 -Biological Process GO:0001578 microtubule bundle formation -0.059602963213650995 -2.1234853012620167 1.0 8972 -Phenotype MP:0014021 heterochrony -0.05967191505372327 -2.124735040322013 1.0 8973 -Biological Process GO:0018345 protein palmitoylation -0.05993902284450758 -2.1295763185101304 1.0 8974 -Biological Process GO:0035881 amacrine cell differentiation -0.05994661228236753 -2.1297138756359018 1.0 8975 -Phenotype MP:0008933 abnormal motile primary cilium physiology -0.05994756843211757 -2.1297312056692785 1.0 8976 -Phenotype MP:0001866 nasal inflammation -0.05996253184625999 -2.1300024147204812 1.0 8977 -Biological Process GO:0006576 biogenic amine metabolic process -0.059991859903937295 -2.1305339802188743 1.0 8978 -Biological Process GO:0042573 retinoic acid metabolic process -0.06039709053575981 -2.137878708776731 1.0 8979 -Phenotype MP:0031351 abnormal sperm flagellum thickness -0.06052449976156926 -2.1401879768967844 1.0 8980 -Phenotype MP:0009350 decreased urine pH -0.06057518369422765 -2.141106613590033 1.0 8981 -Phenotype MP:0009417 skeletal muscle atrophy -0.06090384910915425 -2.1470636120729325 1.0 8982 -Biological Process GO:0060046 regulation of acrosome reaction -0.06113447621615831 -2.1512436847673637 1.0 8983 -Biological Process GO:0001574 ganglioside biosynthetic process -0.0612828780355783 -2.153933439676142 1.0 8984 -Phenotype MP:0011998 decreased embryonic cilium length -0.06128464975912795 -2.1539655518303817 1.0 8985 -Biological Process GO:0009219 pyrimidine deoxyribonucleotide metabolic process -0.06141418231895224 -2.156313304977854 1.0 8986 -Phenotype MP:0011434 abnormal urine magnesium level -0.06147802161367588 -2.1574703801203756 1.0 8987 -Biological Process GO:0060287 epithelial cilium movement involved in determination of left/right asymmetry -0.061512120224532785 -2.158088410992863 1.0 8988 -Phenotype MP:0020527 small thalamus -0.062382184875630076 -2.173858168232968 1.0 8989 -Biological Process GO:0017121 plasma membrane phospholipid scrambling -0.0625798459484217 -2.1774407377923812 1.0 8990 -Biological Process GO:0042446 hormone biosynthetic process -0.06258346539166015 -2.1775063395165093 1.0 8991 -Phenotype MP:0001432 abnormal food preference -0.06271016484535585 -2.1798027431512454 1.0 8992 -Biological Process GO:0050684 regulation of mRNA processing -0.06305673012309376 -2.1860841732620813 1.0 8993 -Biological Process GO:2000291 regulation of myoblast proliferation -0.06341125508217016 -2.19250987109171 1.0 8994 -Phenotype MP:0000162 lordosis -0.06344378509516169 -2.193099471424567 1.0 8995 -Biological Process GO:0010960 magnesium ion homeostasis -0.0636510406116606 -2.196855938461515 1.0 8996 -Phenotype MP:0030388 large fontanelles -0.06368248087401085 -2.19742578727011 1.0 8997 -Phenotype MP:0030189 broad snout -0.0637328096096681 -2.1983379860848937 1.0 8998 -Biological Process GO:0006749 glutathione metabolic process -0.06383678213400246 -2.2002224684234486 1.0 8999 -Biological Process GO:0006403 RNA localization -0.06389042256867006 -2.2011946911564317 1.0 9000 -Biological Process GO:0032355 response to estradiol -0.06395935587688628 -2.2024440943300423 1.0 9001 -Phenotype MP:0000525 renal tubular acidosis -0.06415161126453639 -2.205928686868678 1.0 9002 -Biological Process GO:0060004 reflex -0.06438651071985246 -2.2101861950682076 1.0 9003 -Biological Process GO:0061003 positive regulation of dendritic spine morphogenesis -0.06472551077560129 -2.2163305069613513 1.0 9004 -Biological Process GO:0030148 sphingolipid biosynthetic process -0.06480464555127563 -2.2177648098031697 1.0 9005 -Phenotype MP:0000161 scoliosis -0.06531741966608329 -2.227058743649727 1.0 9006 -Biological Process GO:0007130 synaptonemal complex assembly -0.06532061942389067 -2.2271167386547948 1.0 9007 -Biological Process GO:1902275 regulation of chromatin organization -0.06532924198399437 -2.227273020925833 1.0 9008 -Biological Process GO:0032042 mitochondrial DNA metabolic process -0.06550603508742969 -2.230477362487559 1.0 9009 -Biological Process GO:0003353 positive regulation of cilium movement -0.06568379686044001 -2.2336992610021214 1.0 9010 -Phenotype MP:0001385 pup cannibalization -0.06582051561390778 -2.23617726255021 1.0 9011 -Biological Process GO:0006670 sphingosine metabolic process -0.06633881248230966 -2.2455712952611084 1.0 9012 -Biological Process GO:0030261 chromosome condensation -0.06638070099877891 -2.246330516699464 1.0 9013 -Biological Process GO:0046519 sphingoid metabolic process -0.06648802370667894 -2.2482757204815043 1.0 9014 -Biological Process GO:1901983 regulation of protein acetylation -0.06667960932389638 -2.2517481735577265 1.0 9015 -Phenotype MP:0011050 abnormal respiratory motile cilium morphology -0.06668890240294978 -2.251916608857908 1.0 9016 -Biological Process GO:0015693 magnesium ion transport -0.06676624438170675 -2.2533184175946825 1.0 9017 -Phenotype MP:0030705 abnormal glutamine level -0.06691301576081887 -2.2559786210812565 1.0 9018 -Phenotype MP:0004122 abnormal sinus arrhythmia -0.0673428285758777 -2.263768897060881 1.0 9019 -Biological Process GO:0006820 monoatomic anion transport -0.06740199091641297 -2.2648412032933214 1.0 9020 -Biological Process GO:0044282 small molecule catabolic process -0.06741924315802161 -2.2651538969094487 1.0 9021 -Phenotype MP:0001893 non-obstructive hydrocephaly -0.06769529087903137 -2.2701572096420346 1.0 9022 -Phenotype MP:0001867 rhinitis -0.06818971907700733 -2.279118627215901 1.0 9023 -Phenotype MP:0009279 abnormal activated sperm motility -0.06819916095118472 -2.2792897593995627 1.0 9024 -Phenotype MP:0030690 abnormal serine level -0.06847370989735735 -2.284265907121699 1.0 9025 -Phenotype MP:0009823 abnormal sphingomyelin level -0.06849422120438375 -2.2846376706821148 1.0 9026 -Biological Process GO:0034312 diol biosynthetic process -0.06851669506650682 -2.2850450051824662 1.0 9027 -Biological Process GO:0072578 neurotransmitter-gated ion channel clustering -0.06865004080035098 -2.2874618713878383 1.0 9028 -Biological Process GO:1901361 organic cyclic compound catabolic process -0.06910914199828633 -2.295782993767596 1.0 9029 -Phenotype MP:0009238 coiled sperm flagellum -0.0692543501394729 -2.2984148638624347 1.0 9030 -Biological Process GO:0062125 regulation of mitochondrial gene expression -0.06938797768637306 -2.300836837876146 1.0 9031 -Biological Process GO:0015698 inorganic anion transport -0.0696022582000333 -2.304720631657959 1.0 9032 -Phenotype MP:0008008 early cellular replicative senescence -0.07005432964721048 -2.3129143411348076 1.0 9033 -Phenotype MP:0010799 stomach mucosa hyperplasia -0.0701794849197297 -2.3151827567777814 1.0 9034 -Phenotype MP:0009413 skeletal muscle fiber atrophy -0.07029691127921867 -2.317311087333901 1.0 9035 -Phenotype MP:0003928 increased heart rate variability -0.07061271724033391 -2.323035010648663 1.0 9036 -Biological Process GO:0042220 response to cocaine -0.07062732300880681 -2.3232997374397493 1.0 9037 -Biological Process GO:0042364 water-soluble vitamin biosynthetic process -0.07085662751412514 -2.327455838228779 1.0 9038 -Biological Process GO:0046395 carboxylic acid catabolic process -0.07144236401931581 -2.3380722016011735 1.0 9039 -Biological Process GO:0016054 organic acid catabolic process -0.07144236401931581 -2.3380722016011735 1.0 9039 -Biological Process GO:0006739 NADP metabolic process -0.07160097389779274 -2.3409469756496413 1.0 9041 -Biological Process GO:0006575 cellular modified amino acid metabolic process -0.07176479503559419 -2.3439162027877263 1.0 9042 -Biological Process GO:0045739 positive regulation of DNA repair -0.0719934632518413 -2.348060770957686 1.0 9043 -Phenotype MP:0012232 abnormal ceramide level -0.07230685332402143 -2.353740906742431 1.0 9044 -Biological Process GO:0006244 pyrimidine nucleotide catabolic process -0.07310237566530353 -2.3681595987158115 1.0 9045 -Biological Process GO:0009151 purine deoxyribonucleotide metabolic process -0.0731078631913804 -2.3682590590880634 1.0 9046 -Biological Process GO:0009170 purine deoxyribonucleoside monophosphate metabolic process -0.07353644782171065 -2.3760270744517773 1.0 9047 -Phenotype MP:0011423 kidney cortex atrophy -0.07375203640738404 -2.3799345767914244 1.0 9048 -Biological Process GO:0007618 mating -0.07412314783662177 -2.38666090125562 1.0 9049 -Biological Process GO:0090660 cerebrospinal fluid circulation -0.07414452878097588 -2.3870484268281196 1.0 9050 -Biological Process GO:0015695 organic cation transport -0.07452717101025508 -2.393983744862171 1.0 9051 -Biological Process GO:0006721 terpenoid metabolic process -0.07471747163412612 -2.3974329076770284 1.0 9052 -Biological Process GO:0016101 diterpenoid metabolic process -0.07471747163412612 -2.3974329076770284 1.0 9052 -Biological Process GO:0001523 retinoid metabolic process -0.07471747163412612 -2.3974329076770284 1.0 9052 -Biological Process GO:0000002 mitochondrial genome maintenance -0.07478458171465263 -2.398649265193602 1.0 9055 -Phenotype MP:0003998 decreased thermal nociceptive threshold -0.0756001118403049 -2.4134305944744887 1.0 9056 -Biological Process GO:0009110 vitamin biosynthetic process -0.07563350169582783 -2.4140357792905993 1.0 9057 -Biological Process GO:0071684 organism emergence from protective structure -0.07576645396038884 -2.4164455139396335 1.0 9058 -Biological Process GO:0001835 blastocyst hatching -0.07576645396038884 -2.4164455139396335 1.0 9058 -Biological Process GO:0035188 hatching -0.07576645396038884 -2.4164455139396335 1.0 9058 -Phenotype MP:0030634 abnormal taurine level -0.07584210788196466 -2.417816726959273 1.0 9061 -Biological Process GO:0035082 axoneme assembly -0.07644083654649036 -2.428668570762323 1.0 9062 -Biological Process GO:0009394 2'-deoxyribonucleotide metabolic process -0.07656422484574832 -2.430904960349135 1.0 9063 -Biological Process GO:0019692 deoxyribose phosphate metabolic process -0.07656422484574832 -2.430904960349135 1.0 9063 -Biological Process GO:0015697 quaternary ammonium group transport -0.07679208380344504 -2.435034860860929 1.0 9065 -Phenotype MP:0013274 abnormal vitamin or vitamin cofactor metabolism -0.07715487787565567 -2.4416104348021244 1.0 9066 -Phenotype MP:0013244 abnormal vitamin metabolism -0.07715487787565567 -2.4416104348021244 1.0 9066 -Phenotype MP:0011233 abnormal vitamin A metabolism -0.07715487787565567 -2.4416104348021244 1.0 9066 -Biological Process GO:0009262 deoxyribonucleotide metabolic process -0.07836451071803574 -2.463534801284471 1.0 9069 -Biological Process GO:0007288 sperm axoneme assembly -0.07859457983921914 -2.467704760591438 1.0 9070 -Biological Process GO:0072529 pyrimidine-containing compound catabolic process -0.07865705057849204 -2.468837030925259 1.0 9071 -Biological Process GO:0043605 amide catabolic process -0.07883921436624641 -2.4721387151244754 1.0 9072 -Phenotype MP:0031352 absent sperm axonemal central pair -0.07892288874190445 -2.4736552973573938 1.0 9073 -Biological Process GO:0009162 deoxyribonucleoside monophosphate metabolic process -0.0791485550375246 -2.477745456283763 1.0 9074 -Phenotype MP:0003979 increased circulating carnitine level -0.0799514857452881 -2.4922984234984256 1.0 9075 -Phenotype MP:0010570 prolonged ST segment -0.0802744714686896 -2.4981524786466696 1.0 9076 -Phenotype MP:0002662 abnormal cauda epididymis morphology -0.08039965529913151 -2.5004214118965904 1.0 9077 -Biological Process GO:0009063 amino acid catabolic process -0.08089918448678102 -2.5094752839435066 1.0 9078 -Biological Process GO:1990918 double-strand break repair involved in meiotic recombination -0.08183644166090964 -2.526462892954992 1.0 9079 -Biological Process GO:0098656 monoatomic anion transmembrane transport -0.08243431465763562 -2.5372992279410096 1.0 9080 -Phenotype MP:0010359 increased liver free fatty acids level -0.08257507283832366 -2.5398504433434623 1.0 9081 -Biological Process GO:0033108 mitochondrial respiratory chain complex assembly -0.08270776434922666 -2.542255451881764 1.0 9082 -Phenotype MP:0030657 abnormal glycine level -0.08327657471072825 -2.552565032101146 1.0 9083 -Phenotype MP:0002984 retina hypoplasia -0.08384155233362178 -2.5628051446581686 1.0 9084 -Phenotype MP:0013406 abnormal epidermal immune compartment -0.08428009728717956 -2.57075368899652 1.0 9085 -Phenotype MP:0009281 abnormal hyperactivated sperm motility -0.08441711036450705 -2.5732370251088987 1.0 9086 -Phenotype MP:0009282 decreased hyperactivated sperm motility -0.08441711036450705 -2.5732370251088987 1.0 9086 -Phenotype MP:0006277 abnormal parasympathetic nervous system physiology -0.08488731877970057 -2.5817594637006804 1.0 9088 -Biological Process GO:0035306 positive regulation of dephosphorylation -0.08510731490334411 -2.58574685183241 1.0 9089 -Phenotype MP:0005229 abnormal intervertebral disk development -0.08588411668007745 -2.5998262371140872 1.0 9090 -Biological Process GO:0006144 purine nucleobase metabolic process -0.08635449313069676 -2.6083517213161795 1.0 9091 -Phenotype MP:0009834 abnormal sperm annulus morphology -0.08715032894872698 -2.62277609499633 1.0 9092 -Phenotype MP:0011569 abnormal azygos vein morphology -0.08770904476037855 -2.632902713408929 1.0 9093 -Phenotype MP:0010767 abnormal female meiosis I arrest -0.08859373058648012 -2.6489374766805875 1.0 9094 -Biological Process GO:0009169 purine ribonucleoside monophosphate catabolic process -0.08864571528154719 -2.649879689446472 1.0 9095 -Biological Process GO:0019755 one-carbon compound transport -0.08879331770969201 -2.6525549555395815 1.0 9096 -Phenotype MP:0030941 enhanced autophagy -0.08905716513305717 -2.6573371401848815 1.0 9097 -Biological Process GO:0042403 thyroid hormone metabolic process -0.0891520287090728 -2.6590565245579945 1.0 9098 -Biological Process GO:0072530 purine-containing compound transmembrane transport -0.08962774148725927 -2.667678728687947 1.0 9099 -Biological Process GO:0010921 regulation of phosphatase activity -0.09005296790412531 -2.675385877067783 1.0 9100 -Phenotype MP:0011424 decreased urine uric acid level -0.09023139927814827 -2.678619911974053 1.0 9101 -Biological Process GO:0009128 purine nucleoside monophosphate catabolic process -0.09043310882101685 -2.6822758592878975 1.0 9102 -Biological Process GO:0070286 axonemal dynein complex assembly -0.09151391964686018 -2.7018653510854684 1.0 9103 -Biological Process GO:0018200 peptidyl-glutamic acid modification -0.09163618350581304 -2.7040813604044236 1.0 9104 -Biological Process GO:0042398 cellular modified amino acid biosynthetic process -0.09259151957096634 -2.721396645896352 1.0 9105 -Biological Process GO:0009155 purine deoxyribonucleotide catabolic process -0.09274602067258142 -2.7241969491413185 1.0 9106 -Phenotype MP:0009879 abnormal arcus anterior morphology -0.09281284118452993 -2.725408058282184 1.0 9107 -Biological Process GO:0015931 nucleobase-containing compound transport -0.09287947425482912 -2.726615770078607 1.0 9108 -Biological Process GO:0009125 nucleoside monophosphate catabolic process -0.09308674296851027 -2.7303724763119868 1.0 9109 -Biological Process GO:0044273 sulfur compound catabolic process -0.09315994740988986 -2.731699292966356 1.0 9110 -Biological Process GO:0046386 deoxyribose phosphate catabolic process -0.09346781863565723 -2.7372794007036854 1.0 9111 -Biological Process GO:0009264 deoxyribonucleotide catabolic process -0.09346781863565723 -2.7372794007036854 1.0 9111 -Biological Process GO:0009158 ribonucleoside monophosphate catabolic process -0.09409662216697834 -2.748676345779145 1.0 9113 -Phenotype MP:0011435 increased urine magnesium level -0.09469142767391725 -2.759457083092946 1.0 9114 -Biological Process GO:1901658 glycosyl compound catabolic process -0.09475258382180263 -2.7605655267065052 1.0 9115 -Biological Process GO:0009159 deoxyribonucleoside monophosphate catabolic process -0.09492648866511288 -2.7637175190997403 1.0 9116 -Biological Process GO:0044458 motile cilium assembly -0.09514796765988631 -2.767731783990234 1.0 9117 -Phenotype MP:0004781 abnormal surfactant composition -0.09572835230275212 -2.778251145870223 1.0 9118 -Phenotype MP:0011751 abnormal X-Y chromosome synapsis during male meiosis -0.09622627205157919 -2.7872758471428862 1.0 9119 -Biological Process GO:0000255 allantoin metabolic process -0.09681967186822127 -2.798031106585925 1.0 9120 -Biological Process GO:0006821 chloride transport -0.09715964453396286 -2.8041930468512315 1.0 9121 -Phenotype MP:0030982 abnormal copulatory plug deposition -0.09741193686680116 -2.808765797666222 1.0 9122 -Biological Process GO:1901606 alpha-amino acid catabolic process -0.09797837548690524 -2.819032390521358 1.0 9123 -Phenotype MP:0001771 abnormal circulating magnesium level -0.09955097417274894 -2.847535444266372 1.0 9124 -Phenotype MP:0020883 abnormal magnesium level -0.09968668947627823 -2.8499952584741153 1.0 9125 -Biological Process GO:1902476 chloride transmembrane transport -0.09982490003155764 -2.8525002986478856 1.0 9126 -Phenotype MP:0010952 abnormal fatty acid beta-oxidation -0.1001952064029139 -2.8592120315902454 1.0 9127 -Phenotype MP:0010668 abnormal hepatic portal vein morphology -0.1002437041131059 -2.8600910434147853 1.0 9128 -Biological Process GO:0034656 nucleobase-containing small molecule catabolic process -0.10172443690680733 -2.8869290452399197 1.0 9129 -Biological Process GO:0042454 ribonucleoside catabolic process -0.10201319477620818 -2.8921627270081407 1.0 9130 -Biological Process GO:0098661 inorganic anion transmembrane transport -0.1029560491184156 -2.909251783632425 1.0 9131 -Biological Process GO:0009164 nucleoside catabolic process -0.10326063159201748 -2.9147722833587784 1.0 9132 -Biological Process GO:0015865 purine nucleotide transport -0.1040097886522302 -2.9283506133821464 1.0 9133 -Biological Process GO:0051503 adenine nucleotide transport -0.1040097886522302 -2.9283506133821464 1.0 9133 -Phenotype MP:0011979 abnormal magnesium ion homeostasis -0.10401479727609053 -2.928441393742301 1.0 9135 -Biological Process GO:0006862 nucleotide transport -0.10542252804559937 -2.953956247686296 1.0 9136 -Biological Process GO:0170040 proteinogenic amino acid catabolic process -0.10930153769988049 -3.0242625640076066 1.0 9137 -Biological Process GO:0042219 cellular modified amino acid catabolic process -0.11008320697132579 -3.038430171710317 1.0 9138 -Phenotype MP:0010093 decreased circulating magnesium level -0.11197217874549192 -3.0726674278434585 1.0 9139 -Biological Process GO:0010569 regulation of double-strand break repair via homologous recombination -0.11214080060967979 -3.0757236672393047 1.0 9140 -Biological Process GO:0120316 sperm flagellum assembly -0.11451615404334836 -3.1187764989583746 1.0 9141 -Biological Process GO:0009069 serine family amino acid metabolic process -0.11493690126857525 -3.1264024628369302 1.0 9142 -Biological Process GO:0170035 L-amino acid catabolic process -0.11603660185072395 -3.146334327894792 1.0 9143 -Phenotype MP:0011051 abnormal respiratory motile cilium number -0.11865000049538965 -3.1937016840401338 1.0 9144 -Phenotype MP:0011053 decreased respiratory motile cilia number -0.11865000049538965 -3.1937016840401338 1.0 9144 -Phenotype MP:0030636 decreased taurine level -0.12169577842632417 -3.2489058329703675 1.0 9146 -Biological Process GO:0050884 neuromuscular process controlling posture -0.12307333544376875 -3.2738737933651576 1.0 9147 -Biological Process GO:0000096 sulfur amino acid metabolic process -0.12583357391760885 -3.3239025936415048 1.0 9148 -Biological Process GO:0006040 amino sugar metabolic process -0.12772347794898753 -3.3581567467603 1.0 9149 -Phenotype MP:0004144 hypotonia -0.14393639965533 -3.652012886231549 1.0 9150 +Biological Process GO:0007032 endosome organization 0.28226452698963733 4.07279829903219 0.212516297261214 1 +Biological Process GO:0097178 ruffle assembly 0.27748154448787776 3.9861076458246454 0.3072846740275262 2 +Biological Process GO:0031529 ruffle organization 0.2749696836547517 3.940580643308948 0.37187712894850883 3 +Biological Process GO:0002090 regulation of receptor internalization 0.26171637952326976 3.700367012610164 0.98494204705539 4 +Biological Process GO:0140238 presynaptic endocytosis 0.2570436407675576 3.615674506448606 1.0 5 +Biological Process GO:1903540 establishment of protein localization to postsynaptic membrane 0.2568190706766462 3.6116042160252513 1.0 6 +Biological Process GO:0098969 neurotransmitter receptor transport to postsynaptic membrane 0.2568190706766462 3.6116042160252513 1.0 6 +Biological Process GO:0048259 regulation of receptor-mediated endocytosis 0.24912566762548882 3.4721627408267963 1.0 8 +Biological Process GO:0099149 regulation of postsynaptic neurotransmitter receptor internalization 0.24554485118616975 3.4072611201274343 1.0 9 +Biological Process GO:0006458 'de novo' protein folding 0.24244068477462177 3.3509986910294782 1.0 10 +Biological Process GO:0051084 'de novo' post-translational protein folding 0.24244068477462177 3.3509986910294782 1.0 10 +Biological Process GO:0036465 synaptic vesicle recycling 0.24173726095575065 3.3382492673555992 1.0 12 +Biological Process GO:0034446 substrate adhesion-dependent cell spreading 0.23939709866051617 3.295834268364716 1.0 13 +Biological Process GO:0006893 Golgi to plasma membrane transport 0.2390878758614463 3.2902296636169104 1.0 14 +Phenotype MP:0030951 abnormal endocytosis 0.23571448194912292 3.2290875369881626 1.0 15 +Biological Process GO:0098876 vesicle-mediated transport to the plasma membrane 0.2356693234724334 3.228269048139284 1.0 16 +Biological Process GO:0002830 positive regulation of type 2 immune response 0.23520724610135668 3.219893983184242 1.0 17 +Biological Process GO:0048488 synaptic vesicle endocytosis 0.2342659954417703 3.2028339930041487 1.0 18 +Biological Process GO:0098877 neurotransmitter receptor transport to plasma membrane 0.23388890614886504 3.195999320891612 1.0 19 +Biological Process GO:0031623 receptor internalization 0.23363804442814795 3.191452499650737 1.0 20 +Biological Process GO:0045954 positive regulation of natural killer cell mediated cytotoxicity 0.22842374391915343 3.0969442891400623 1.0 21 +Biological Process GO:2001243 negative regulation of intrinsic apoptotic signaling pathway 0.2274399146722863 3.079112570118673 1.0 22 +Biological Process GO:0051261 protein depolymerization 0.226125236388933 3.05528427488662 1.0 23 +Biological Process GO:0007259 cell surface receptor signaling pathway via JAK-STAT 0.22511415835483128 3.036958676750346 1.0 24 +Biological Process GO:0030866 cortical actin cytoskeleton organization 0.22386024605182775 3.0142317534190637 1.0 25 +Biological Process GO:0002504 antigen processing and presentation of peptide or polysaccharide antigen via MHC class II 0.22038331295992775 2.9512129987435336 1.0 26 +Biological Process GO:0051496 positive regulation of stress fiber assembly 0.2192277032833999 2.9302677919245035 1.0 27 +Biological Process GO:0035022 positive regulation of Rac protein signal transduction 0.2173080429233002 2.8954743109756493 1.0 28 +Biological Process GO:0045840 positive regulation of mitotic nuclear division 0.21538287634063857 2.8605810307842883 1.0 29 +Biological Process GO:0097696 cell surface receptor signaling pathway via STAT 0.214904140987216 2.8519040430498612 1.0 30 +Biological Process GO:0001919 regulation of receptor recycling 0.21483817776583192 2.8507084721383316 1.0 31 +Biological Process GO:0099072 regulation of postsynaptic membrane neurotransmitter receptor levels 0.21375933704470818 2.831154688116184 1.0 32 +Biological Process GO:0002828 regulation of type 2 immune response 0.21299567472066572 2.817313452929378 1.0 33 +Biological Process GO:0048260 positive regulation of receptor-mediated endocytosis 0.21130366912044007 2.786646171445404 1.0 34 +Biological Process GO:0010634 positive regulation of epithelial cell migration 0.21127912137941762 2.7862012482822474 1.0 35 +Biological Process GO:0033598 mammary gland epithelial cell proliferation 0.21048544943435454 2.771816094390359 1.0 36 +Biological Process GO:0002717 positive regulation of natural killer cell mediated immunity 0.21024671900066705 2.7674891504324255 1.0 37 +Biological Process GO:0007173 epidermal growth factor receptor signaling pathway 0.21023381367873994 2.7672552439133646 1.0 38 +Biological Process GO:0033028 myeloid cell apoptotic process 0.20876116174552006 2.740563706156072 1.0 39 +Biological Process GO:0043507 positive regulation of JUN kinase activity 0.20837091317044298 2.7334905245430727 1.0 40 +Phenotype MP:0020415 abnormal fibroblast chemotaxis 0.2078374939137856 2.7238224014052395 1.0 41 +Biological Process GO:0048489 synaptic vesicle transport 0.2074929479683787 2.7175775713109735 1.0 42 +Biological Process GO:0043154 negative regulation of cysteine-type endopeptidase activity involved in apoptotic process 0.20714399388201654 2.7112528444956348 1.0 43 +Biological Process GO:0051492 regulation of stress fiber assembly 0.2070394351517154 2.709357737284805 1.0 44 +Biological Process GO:0036119 response to platelet-derived growth factor 0.20695325567217848 2.7077957505178882 1.0 45 +Phenotype MP:0004250 tau protein deposits 0.20695015628824698 2.7077395747703363 1.0 46 +Biological Process GO:0072583 clathrin-dependent endocytosis 0.20576087780265573 2.6861841271550344 1.0 47 +Biological Process GO:1901741 positive regulation of myoblast fusion 0.2056437300411913 2.684060846135416 1.0 48 +Biological Process GO:0061077 chaperone-mediated protein folding 0.20550766560846978 2.681594704027097 1.0 49 +Biological Process GO:0150117 positive regulation of cell-substrate junction organization 0.20530762233944333 2.677968957611488 1.0 50 +Biological Process GO:0032456 endocytic recycling 0.20337357639642561 2.642914740693085 1.0 51 +Biological Process GO:1903911 positive regulation of receptor clustering 0.20266936992942963 2.6301511316699697 1.0 52 +Phenotype MP:0009379 abnormal foot pigmentation 0.20168882179518377 2.6123788821942626 1.0 53 +Biological Process GO:0048661 positive regulation of smooth muscle cell proliferation 0.20110212217630186 2.6017450625683747 1.0 54 +Phenotype MP:0000380 small hair follicles 0.19836044296753896 2.5520526454613157 1.0 55 +Biological Process GO:0045625 regulation of T-helper 1 cell differentiation 0.1980927791868361 2.5472012900610825 1.0 56 +Biological Process GO:0048532 anatomical structure arrangement 0.1977246774376572 2.540529515478713 1.0 57 +Biological Process GO:0055094 response to lipoprotein particle 0.19740948425756255 2.534816698704051 1.0 58 +Biological Process GO:0071404 cellular response to low-density lipoprotein particle stimulus 0.19740948425756255 2.534816698704051 1.0 58 +Biological Process GO:2001234 negative regulation of apoptotic signaling pathway 0.19727505399736567 2.532380175663659 1.0 60 +Biological Process GO:0097120 receptor localization to synapse 0.19711368497108006 2.5294553925830146 1.0 61 +Biological Process GO:1902236 negative regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway 0.1970134223880331 2.527638152228608 1.0 62 +Biological Process GO:2000672 negative regulation of motor neuron apoptotic process 0.1969610774563577 2.526689410242332 1.0 63 +Biological Process GO:0006457 protein folding 0.19688085827365964 2.5252354527283094 1.0 64 +Biological Process GO:2000117 negative regulation of cysteine-type endopeptidase activity 0.19683090850031693 2.524330122533801 1.0 65 +Phenotype MP:0002358 abnormal spleen periarteriolar lymphoid sheath morphology 0.19652949509772322 2.5188670616200834 1.0 66 +Biological Process GO:1904064 positive regulation of cation transmembrane transport 0.19644382919769288 2.517314383384587 1.0 67 +Biological Process GO:0099637 neurotransmitter receptor transport 0.19585562010017998 2.50665320474401 1.0 68 +Biological Process GO:0061951 establishment of protein localization to plasma membrane 0.19576808037713755 2.505066563820828 1.0 69 +Phenotype MP:0011074 abnormal macrophage nitric oxide production 0.19574941331663243 2.504728226879796 1.0 70 +Biological Process GO:2000671 regulation of motor neuron apoptotic process 0.19515466198428155 2.4939484714701563 1.0 71 +Biological Process GO:0030163 protein catabolic process 0.1949523810738495 2.4902821682272904 1.0 72 +Biological Process GO:0046635 positive regulation of alpha-beta T cell activation 0.19426534870375756 2.4778298364623117 1.0 73 +Phenotype MP:0003950 abnormal plasma membrane morphology 0.19417884578046807 2.476261987338555 1.0 74 +Biological Process GO:0006892 post-Golgi vesicle-mediated transport 0.19298983623704202 2.4547114142491306 1.0 75 +Biological Process GO:0051905 establishment of pigment granule localization 0.19262879062389793 2.4481675307978183 1.0 76 +Biological Process GO:0051904 pigment granule transport 0.19262879062389793 2.4481675307978183 1.0 76 +Biological Process GO:1903539 protein localization to postsynaptic membrane 0.19168667018078112 2.431091775955744 1.0 78 +Biological Process GO:0062237 protein localization to postsynapse 0.19168667018078112 2.431091775955744 1.0 78 +Biological Process GO:0042269 regulation of natural killer cell mediated cytotoxicity 0.19114666178055162 2.4213042258369146 1.0 80 +Phenotype MP:0001704 abnormal dorsal-ventral axis patterning 0.19093671257709677 2.417498936233365 1.0 81 +Biological Process GO:0032402 melanosome transport 0.1906854037823532 2.4129440118603185 1.0 82 +Biological Process GO:0032401 establishment of melanosome localization 0.1906854037823532 2.4129440118603185 1.0 82 +Biological Process GO:0038128 ERBB2 signaling pathway 0.1905108177722178 2.4097796734472112 1.0 84 +Biological Process GO:0007260 tyrosine phosphorylation of STAT protein 0.1901399640390684 2.403058019675877 1.0 85 +Biological Process GO:1900024 regulation of substrate adhesion-dependent cell spreading 0.18979849807585736 2.396869013676374 1.0 86 +Biological Process GO:0046777 protein autophosphorylation 0.189660435085922 2.3943666480965544 1.0 87 +Biological Process GO:0002495 antigen processing and presentation of peptide antigen via MHC class II 0.1896139092721011 2.3935233765207826 1.0 88 +Biological Process GO:0051928 positive regulation of calcium ion transport 0.1893646695595359 2.38900595387088 1.0 89 +Phenotype MP:0000275 heart hyperplasia 0.18927452659527488 2.387372129692979 1.0 90 +Biological Process GO:0051057 positive regulation of small GTPase mediated signal transduction 0.1885457978426034 2.3741640588800563 1.0 91 +Biological Process GO:0006511 ubiquitin-dependent protein catabolic process 0.18844470848205153 2.3723318333397474 1.0 92 +Biological Process GO:0045058 T cell selection 0.18842351051385953 2.371947624175578 1.0 93 +Phenotype MP:0009511 distended stomach 0.18838552483632753 2.371259140954791 1.0 94 +Biological Process GO:0016197 endosomal transport 0.18821209347806978 2.3681157303885794 1.0 95 +Phenotype MP:0004770 abnormal synaptic vesicle recycling 0.18755043040124764 2.356123212265855 1.0 96 +Biological Process GO:0007034 vacuolar transport 0.18701841582656376 2.346480548723115 1.0 97 +Biological Process GO:0043406 positive regulation of MAP kinase activity 0.18693341648706385 2.344939951771162 1.0 98 +Biological Process GO:0033033 negative regulation of myeloid cell apoptotic process 0.18659346955700384 2.3387784779602163 1.0 99 +Biological Process GO:0032231 regulation of actin filament bundle assembly 0.18657486588509364 2.3384412899254787 1.0 100 +Biological Process GO:0060749 mammary gland alveolus development 0.18641195803747457 2.3354886159992123 1.0 101 +Biological Process GO:0061377 mammary gland lobule development 0.18641195803747457 2.3354886159992123 1.0 101 +Biological Process GO:0007041 lysosomal transport 0.18628933495363365 2.3332660957971036 1.0 103 +Biological Process GO:0071402 cellular response to lipoprotein particle stimulus 0.1862471490658254 2.332501484559473 1.0 104 +Biological Process GO:0090022 regulation of neutrophil chemotaxis 0.18605368680620615 2.32899501769466 1.0 105 +Biological Process GO:0060143 positive regulation of syncytium formation by plasma membrane fusion 0.18585787568616896 2.3254459781790273 1.0 106 +Biological Process GO:2001242 regulation of intrinsic apoptotic signaling pathway 0.18566362330319652 2.3219251904778786 1.0 107 +Biological Process GO:0010595 positive regulation of endothelial cell migration 0.1853776861013825 2.3167426327761778 1.0 108 +Biological Process GO:0038127 ERBB signaling pathway 0.1848408695922802 2.3070129350803255 1.0 109 +Biological Process GO:0032233 positive regulation of actin filament bundle assembly 0.18478857291400685 2.3060650676778347 1.0 110 +Phenotype MP:0013588 small thymus medulla 0.18399887972157147 2.291752027924796 1.0 111 +Biological Process GO:2000551 regulation of T-helper 2 cell cytokine production 0.18382320804931263 2.28856801209104 1.0 112 +Biological Process GO:0035739 CD4-positive, alpha-beta T cell proliferation 0.1837750694180854 2.2876955085048216 1.0 113 +Phenotype MP:0011174 lipodystrophy 0.18365281512669795 2.2854796725961797 1.0 114 +Biological Process GO:0019941 modification-dependent protein catabolic process 0.18358471979440227 2.2842454575776374 1.0 115 +Biological Process GO:0031098 stress-activated protein kinase signaling cascade 0.1834071222165411 2.281026535069098 1.0 116 +Biological Process GO:0034332 adherens junction organization 0.1829724559308763 2.2731482908527085 1.0 117 +Biological Process GO:0051896 regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction 0.18269173338730782 2.2680602478454257 1.0 118 +Phenotype MP:0031048 increased susceptibility to Coronaviridae infection induced morbidity/mortality 0.18257566833173733 2.265956590665356 1.0 119 +Biological Process GO:0061462 protein localization to lysosome 0.1824915982300992 2.2644328359738943 1.0 120 +Biological Process GO:0018108 peptidyl-tyrosine phosphorylation 0.18209883283203376 2.2573140374202536 1.0 121 +Biological Process GO:0072659 protein localization to plasma membrane 0.18201356166086036 2.2557685135706316 1.0 122 +Biological Process GO:0035025 positive regulation of Rho protein signal transduction 0.18188595918772177 2.253455742879287 1.0 123 +Biological Process GO:1904395 positive regulation of skeletal muscle acetylcholine-gated channel clustering 0.181777212087869 2.251484722262508 1.0 124 +Biological Process GO:0034143 regulation of toll-like receptor 4 signaling pathway 0.18163599150444099 2.24892512589785 1.0 125 +Biological Process GO:0006898 receptor-mediated endocytosis 0.18149352547185882 2.2463429560028336 1.0 126 +Biological Process GO:0033059 cellular pigmentation 0.18125922274144357 2.242096263329269 1.0 127 +Biological Process GO:0097479 synaptic vesicle localization 0.18121964445210526 2.2413789143207135 1.0 128 +Phenotype MP:0001044 abnormal enteric nervous system morphology 0.18108941821567515 2.23901858841596 1.0 129 +Biological Process GO:0051897 positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction 0.18087987634078795 2.2352206815656586 1.0 130 +Biological Process GO:0034341 response to type II interferon 0.1806404449938287 2.230881033687243 1.0 131 +Biological Process GO:0019058 viral life cycle 0.180289669828664 2.2245233001630402 1.0 132 +Biological Process GO:0046638 positive regulation of alpha-beta T cell differentiation 0.1800505835076226 2.2201899058141286 1.0 133 +Biological Process GO:0072666 establishment of protein localization to vacuole 0.17972015371539696 2.2142009283263926 1.0 134 +Biological Process GO:0071346 cellular response to type II interferon 0.17966057378816536 2.213121053414062 1.0 135 +Biological Process GO:0035773 insulin secretion involved in cellular response to glucose stimulus 0.17962480528928815 2.212472756137043 1.0 136 +Biological Process GO:0050731 positive regulation of peptidyl-tyrosine phosphorylation 0.17944212164835271 2.209161649697244 1.0 137 +Biological Process GO:0019882 antigen processing and presentation 0.17931408775849056 2.2068410596593813 1.0 138 +Biological Process GO:2000008 regulation of protein localization to cell surface 0.17916410756342294 2.2041226969905185 1.0 139 +Biological Process GO:0002715 regulation of natural killer cell mediated immunity 0.1791433024272936 2.203745607833186 1.0 140 +Biological Process GO:0019886 antigen processing and presentation of exogenous peptide antigen via MHC class II 0.17907643512700122 2.202533650662438 1.0 141 +Phenotype MP:0011706 abnormal fibroblast migration 0.17845051178519422 2.1911889084771725 1.0 142 +Biological Process GO:0016482 cytosolic transport 0.17836943929152127 2.1897194848631227 1.0 143 +Biological Process GO:0034767 positive regulation of monoatomic ion transmembrane transport 0.17816232709976831 2.1859656155600873 1.0 144 +Biological Process GO:0032438 melanosome organization 0.17815519678622804 2.1858363799757727 1.0 145 +Biological Process GO:0051875 pigment granule localization 0.1780821600898156 2.1845126036672067 1.0 146 +Phenotype MP:0008976 delayed female fertility 0.17752018207021647 2.174326858352561 1.0 147 +Biological Process GO:0110020 regulation of actomyosin structure organization 0.17686942429272712 2.1625319967176524 1.0 148 +Biological Process GO:0048753 pigment granule organization 0.17669179700059856 2.159312535643637 1.0 149 +Biological Process GO:0070374 positive regulation of ERK1 and ERK2 cascade 0.1766731855784055 2.1589752071364883 1.0 150 +Biological Process GO:1904393 regulation of skeletal muscle acetylcholine-gated channel clustering 0.17641103886569365 2.1542238475501128 1.0 151 +Phenotype MP:0031580 enlarged semilunar valve 0.17637589180911062 2.153586813797139 1.0 152 +Biological Process GO:0048340 paraxial mesoderm morphogenesis 0.17614580902182453 2.1494166067946447 1.0 153 +Phenotype MP:0008109 abnormal small intestinal microvillus morphology 0.17608215855499365 2.1482629541219653 1.0 154 +Biological Process GO:0002228 natural killer cell mediated immunity 0.17607275845693926 2.1480925791226317 1.0 155 +Biological Process GO:0071806 protein transmembrane transport 0.17570969321060592 2.141512090201751 1.0 156 +Biological Process GO:0002724 regulation of T cell cytokine production 0.17568936796716228 2.1411436990085817 1.0 157 +Biological Process GO:0046849 bone remodeling 0.175477620207393 2.1373058109120056 1.0 158 +Biological Process GO:0006661 phosphatidylinositol biosynthetic process 0.17546272679497 2.137035870628728 1.0 159 +Biological Process GO:0032695 negative regulation of interleukin-12 production 0.17534985379647394 2.134990068879397 1.0 160 +Phenotype MP:0002353 abnormal inguinal lymph node morphology 0.17512555486756887 2.13092469321612 1.0 161 +Biological Process GO:0032400 melanosome localization 0.17486869791205095 2.1262692094783984 1.0 162 +Biological Process GO:0043523 regulation of neuron apoptotic process 0.17457623374808884 2.1209683518222504 1.0 163 +Phenotype MP:0010740 abnormal dendritic cell chemotaxis 0.1743289767348023 2.116486865221772 1.0 164 +Phenotype MP:0011825 decreased cell chemotaxis 0.17418294155933323 2.1138400052869857 1.0 165 +Biological Process GO:0110053 regulation of actin filament organization 0.17355660236555714 2.1024877258634334 1.0 166 +Biological Process GO:0032414 positive regulation of ion transmembrane transporter activity 0.1732049261937797 2.0961136617647878 1.0 167 +Biological Process GO:0042267 natural killer cell mediated cytotoxicity 0.17298723842728903 2.0921681121698597 1.0 168 +Biological Process GO:0090023 positive regulation of neutrophil chemotaxis 0.17289679975098093 2.090528928267035 1.0 169 +Biological Process GO:0071624 positive regulation of granulocyte chemotaxis 0.17289679975098093 2.090528928267035 1.0 169 +Biological Process GO:0007097 nuclear migration 0.1725472798190386 2.0841939456075775 1.0 171 +Biological Process GO:0099003 vesicle-mediated transport in synapse 0.17249035601384177 2.0831622124047575 1.0 172 +Biological Process GO:0043632 modification-dependent macromolecule catabolic process 0.17247613815754792 2.0829045164485476 1.0 173 +Biological Process GO:0007265 Ras protein signal transduction 0.17239052836130542 2.0813528550835945 1.0 174 +Phenotype MP:0004187 cardia bifida 0.1723659881161218 2.080908067781099 1.0 175 +Phenotype MP:0005324 ascites 0.17232374942010142 2.0801424994046114 1.0 176 +Phenotype MP:0001253 abnormal body height 0.1722504088044544 2.078813214617401 1.0 177 +Phenotype MP:0001255 decreased body height 0.1722504088044544 2.078813214617401 1.0 177 +Biological Process GO:0035728 response to hepatocyte growth factor 0.1722489014135613 2.078785893442566 1.0 179 +Biological Process GO:0035729 cellular response to hepatocyte growth factor stimulus 0.1722489014135613 2.078785893442566 1.0 179 +Phenotype MP:0002950 abnormal neural crest cell migration 0.1715828653305458 2.066714115409682 1.0 181 +Phenotype MP:0005264 glomerulosclerosis 0.17155409368253727 2.066192634731298 1.0 182 +Biological Process GO:1904036 negative regulation of epithelial cell apoptotic process 0.1714265337752292 2.0638806355375814 1.0 183 +Biological Process GO:0032743 positive regulation of interleukin-2 production 0.17140971161701435 2.063575737101622 1.0 184 +Biological Process GO:0010951 negative regulation of endopeptidase activity 0.17121564398576772 2.060058297990561 1.0 185 +Biological Process GO:0045624 positive regulation of T-helper cell differentiation 0.17115277786676675 2.0589188614739493 1.0 186 +Biological Process GO:0014910 regulation of smooth muscle cell migration 0.17114494952692716 2.0587769742949824 1.0 187 +Biological Process GO:0010466 negative regulation of peptidase activity 0.1709900416070107 2.0559692975452473 1.0 188 +Phenotype MP:0005335 abnormal gonadal fat pad morphology 0.1709857966928472 2.0558923592789022 1.0 189 +Biological Process GO:0060856 establishment of blood-brain barrier 0.17096102215222686 2.0554433254159297 1.0 190 +Biological Process GO:0048710 regulation of astrocyte differentiation 0.17057786041935974 2.0484985914776046 1.0 191 +Biological Process GO:0033032 regulation of myeloid cell apoptotic process 0.1705664903716856 2.0482925115140023 1.0 192 +Biological Process GO:0070830 bicellular tight junction assembly 0.170542014997363 2.047848899983593 1.0 193 +Biological Process GO:0006984 ER-nucleus signaling pathway 0.17048611907758482 2.046835797009576 1.0 194 +Biological Process GO:2000573 positive regulation of DNA biosynthetic process 0.17033676411117282 2.0441287664918426 1.0 195 +Phenotype MP:0010856 dilated respiratory conducting tube 0.1701436349707106 2.040628337348746 1.0 196 +Phenotype MP:0004545 enlarged esophagus 0.1700956944488493 2.039759424457315 1.0 197 +Biological Process GO:0050679 positive regulation of epithelial cell proliferation 0.17006819461543488 2.0392609951779024 1.0 198 +Phenotype MP:0009302 increased renal fat pad weight 0.17006048273360141 2.03912121877827 1.0 199 +Biological Process GO:0010762 regulation of fibroblast migration 0.17005888125105373 2.0390921922099916 1.0 200 +Biological Process GO:0051650 establishment of vesicle localization 0.1697463760961201 2.033428095382969 1.0 201 +Phenotype MP:0010373 myeloid hyperplasia 0.1697184069937948 2.032921160693303 1.0 202 +Biological Process GO:1990778 protein localization to cell periphery 0.1697035205002373 2.032651345813153 1.0 203 +Biological Process GO:0043297 apical junction assembly 0.169680025363518 2.0322255009039054 1.0 204 +Biological Process GO:2001259 positive regulation of cation channel activity 0.16962977932195955 2.031314800904022 1.0 205 +Biological Process GO:0030865 cortical cytoskeleton organization 0.16922583107179634 2.0239933152711953 1.0 206 +Phenotype MP:0004702 increased circulating insulin-like growth factor I level 0.16921965714611675 2.0238814140359676 1.0 207 +Biological Process GO:0051603 proteolysis involved in protein catabolic process 0.16894098618662245 2.018830555602 1.0 208 +Biological Process GO:0018212 peptidyl-tyrosine modification 0.16890784087893085 2.0182298031690786 1.0 209 +Biological Process GO:0009306 protein secretion 0.16869362674485788 2.01434721250473 1.0 210 +Biological Process GO:0035592 establishment of protein localization to extracellular region 0.16869362674485788 2.01434721250473 1.0 210 +Biological Process GO:2001135 regulation of endocytic recycling 0.1684966386561304 2.0107768406541937 1.0 212 +Biological Process GO:0038129 ERBB3 signaling pathway 0.16846520720789526 2.0102071515997677 1.0 213 +Biological Process GO:0038133 ERBB2-ERBB3 signaling pathway 0.16846520720789526 2.0102071515997677 1.0 213 +Biological Process GO:0070371 ERK1 and ERK2 cascade 0.1683968194383847 2.008967636212016 1.0 215 +Phenotype MP:0009971 decreased hippocampus pyramidal cell number 0.16834210978295794 2.007976034055002 1.0 216 +Biological Process GO:0060976 coronary vasculature development 0.16826334725181324 2.0065484780748783 1.0 217 +Biological Process GO:0035418 protein localization to synapse 0.16824512575365458 2.0062182168671043 1.0 218 +Biological Process GO:0010640 regulation of platelet-derived growth factor receptor signaling pathway 0.16802429098648697 2.002215628480119 1.0 219 +Biological Process GO:2000561 regulation of CD4-positive, alpha-beta T cell proliferation 0.16786196337130666 1.999273471157062 1.0 220 +Biological Process GO:0051647 nucleus localization 0.16773069606771207 1.9968942761068562 1.0 221 +Biological Process GO:0046634 regulation of alpha-beta T cell activation 0.1676678361071846 1.9957549512114126 1.0 222 +Biological Process GO:0008064 regulation of actin polymerization or depolymerization 0.16755386569082797 1.993689258970921 1.0 223 +Phenotype MP:0002607 decreased basophil cell number 0.16754194048655924 1.993473116899042 1.0 224 +Phenotype MP:0002683 delayed fertility 0.16744295260961473 1.9916789803516493 1.0 225 +Biological Process GO:1904427 positive regulation of calcium ion transmembrane transport 0.16702606216920413 1.98412291996843 1.0 226 +Biological Process GO:1902414 protein localization to cell junction 0.1668865451704047 1.9815942007529552 1.0 227 +Biological Process GO:1904035 regulation of epithelial cell apoptotic process 0.16684958907962977 1.9809243785974076 1.0 228 +Biological Process GO:0072665 protein localization to vacuole 0.16668042984074916 1.9778583993868928 1.0 229 +Biological Process GO:1900076 regulation of cellular response to insulin stimulus 0.16663768241577537 1.9770836103943437 1.0 230 +Biological Process GO:0060099 regulation of phagocytosis, engulfment 0.1665997601266025 1.9763962760755764 1.0 231 +Biological Process GO:1905153 regulation of membrane invagination 0.1665997601266025 1.9763962760755764 1.0 231 +Biological Process GO:0035023 regulation of Rho protein signal transduction 0.16650003542433123 1.9745887847084969 1.0 233 +Biological Process GO:0051785 positive regulation of nuclear division 0.16649068468691242 1.9744193043613472 1.0 234 +Biological Process GO:0030032 lamellipodium assembly 0.16643612909453154 1.9734304945679007 1.0 235 +Biological Process GO:2000278 regulation of DNA biosynthetic process 0.16633372310552663 1.971574405385903 1.0 236 +Biological Process GO:0030838 positive regulation of actin filament polymerization 0.16632737787837415 1.9714593993438787 1.0 237 +Biological Process GO:1902254 negative regulation of intrinsic apoptotic signaling pathway by p53 class mediator 0.16608692466341402 1.9671012303012196 1.0 238 +Biological Process GO:0043506 regulation of JUN kinase activity 0.1659325710417987 1.964303600103355 1.0 239 +Phenotype MP:0008522 abnormal lymph node germinal center morphology 0.1658872818460032 1.9634827419954042 1.0 240 +Biological Process GO:0001912 positive regulation of leukocyte mediated cytotoxicity 0.16575967832428506 1.9611699522987538 1.0 241 +Phenotype MP:0012028 abnormal visceral endoderm physiology 0.16564194763692552 1.959036105857539 1.0 242 +Biological Process GO:1902532 negative regulation of intracellular signal transduction 0.16563314693723585 1.9588765948401978 1.0 243 +Phenotype MP:0000474 abnormal foregut morphology 0.16538614835449472 1.9543997922444765 1.0 244 +Phenotype MP:0001194 dermatitis 0.165126814372901 1.949699412877627 1.0 245 +Biological Process GO:0032970 regulation of actin filament-based process 0.16510163855023197 1.9492431058534192 1.0 246 +Biological Process GO:0045453 bone resorption 0.16504385415729472 1.948195774660573 1.0 247 +Biological Process GO:1901739 regulation of myoblast fusion 0.16502602873614114 1.947872692273603 1.0 248 +Biological Process GO:0033138 positive regulation of peptidyl-serine phosphorylation 0.16493744425260748 1.9462671152641198 1.0 249 +Phenotype MP:0002346 abnormal lymph node secondary follicle morphology 0.16485218705294102 1.9447218446454184 1.0 250 +Biological Process GO:0034764 positive regulation of transmembrane transport 0.1648068022407173 1.9438992535077908 1.0 251 +Biological Process GO:0043281 regulation of cysteine-type endopeptidase activity involved in apoptotic process 0.1641543597884958 1.9320738574619956 1.0 252 +Phenotype MP:0005535 abnormal body temperature 0.1639421313640541 1.928227257409144 1.0 253 +Biological Process GO:0045861 negative regulation of proteolysis 0.16375845126996014 1.9248980904443114 1.0 254 +Phenotype MP:0011339 abnormal glomerular mesangium morphology 0.16360617836468405 1.9221381728365554 1.0 255 +Biological Process GO:1990776 response to angiotensin 0.16348649140859506 1.9199688693946213 1.0 256 +Biological Process GO:0050918 positive chemotaxis 0.1629528587900434 1.9102968791128092 1.0 257 +Biological Process GO:0099558 maintenance of synapse structure 0.16279905906894643 1.9075092882570766 1.0 258 +Biological Process GO:0002024 diet induced thermogenesis 0.16278882999186772 1.9073238881697174 1.0 259 +Biological Process GO:0030834 regulation of actin filament depolymerization 0.1627761225238763 1.9070935677158196 1.0 260 +Biological Process GO:0043524 negative regulation of neuron apoptotic process 0.16269249125724838 1.9055777668259186 1.0 261 +Biological Process GO:0070849 response to epidermal growth factor 0.16262380042660507 1.9043327585124559 1.0 262 +Biological Process GO:0071364 cellular response to epidermal growth factor stimulus 0.16262380042660507 1.9043327585124559 1.0 262 +Phenotype MP:0012745 abnormal neural crest cell physiology 0.16242725914100142 1.900770484884032 1.0 264 +Phenotype MP:0013647 abnormal CD11b-high dendritic cell number 0.16235066136154797 1.8993821646188784 1.0 265 +Biological Process GO:0032411 positive regulation of transporter activity 0.16216201571030697 1.8959629978699246 1.0 266 +Phenotype MP:0020146 abnormal vascular endothelial cell proliferation 0.16208479326166603 1.8945633555938957 1.0 267 +Biological Process GO:0051898 negative regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction 0.16198362262886712 1.8927296570094807 1.0 268 +Phenotype MP:0011753 decreased podocyte number 0.1617454238771282 1.8884123496863048 1.0 269 +Biological Process GO:2001240 negative regulation of extrinsic apoptotic signaling pathway in absence of ligand 0.16162278280580222 1.8861895034644316 1.0 270 +Biological Process GO:1901099 negative regulation of signal transduction in absence of ligand 0.16162278280580222 1.8861895034644316 1.0 270 +Phenotype MP:0001046 abnormal enteric neuron morphology 0.16146762071033927 1.8833772198309902 1.0 272 +Biological Process GO:0014047 glutamate secretion 0.16125913291427318 1.8795984179599565 1.0 273 +Biological Process GO:0030073 insulin secretion 0.1610671136117806 1.8761181044201487 1.0 274 +Phenotype MP:0002148 abnormal hypersensitivity reaction 0.16102095791777915 1.8752815411961012 1.0 275 +Phenotype MP:0000836 abnormal substantia nigra morphology 0.1606255212138088 1.8681143257281758 1.0 276 +Phenotype MP:0009118 increased white fat cell size 0.16046039084302333 1.8651213689898791 1.0 277 +Biological Process GO:0030833 regulation of actin filament polymerization 0.16026603290207575 1.8615986680703962 1.0 278 +Biological Process GO:0034394 protein localization to cell surface 0.16026266021739055 1.861537538798375 1.0 279 +Biological Process GO:0032956 regulation of actin cytoskeleton organization 0.16020068795451037 1.860414303254892 1.0 280 +Biological Process GO:0043270 positive regulation of monoatomic ion transport 0.16017574482219055 1.8599622136992535 1.0 281 +Phenotype MP:0001107 decreased Schwann cell number 0.16015636333616512 1.8596109279307902 1.0 282 +Biological Process GO:0002643 regulation of tolerance induction 0.1600989715459994 1.8585707125889221 1.0 283 +Biological Process GO:0001938 positive regulation of endothelial cell proliferation 0.16000512259578004 1.8568697181164637 1.0 284 +Biological Process GO:0051648 vesicle localization 0.15999611700857141 1.8567064935515931 1.0 285 +Biological Process GO:0032092 positive regulation of protein binding 0.15995133140542728 1.8558947629652005 1.0 286 +Biological Process GO:2000351 regulation of endothelial cell apoptotic process 0.1599405970801272 1.85570020534939 1.0 287 +Phenotype MP:0009481 cecum inflammation 0.1598484360723108 1.8540298045137336 1.0 288 +Biological Process GO:0043368 positive T cell selection 0.15980904986102262 1.8533159368835077 1.0 289 +Biological Process GO:0014812 muscle cell migration 0.15980118856410874 1.8531734523638024 1.0 290 +Biological Process GO:0002726 positive regulation of T cell cytokine production 0.15974498041245289 1.8521546902460562 1.0 291 +Biological Process GO:0048008 platelet-derived growth factor receptor signaling pathway 0.15956515495660373 1.848895387870358 1.0 292 +Biological Process GO:0034614 cellular response to reactive oxygen species 0.15944557076575805 1.8467279470290223 1.0 293 +Biological Process GO:0006929 substrate-dependent cell migration 0.15897342964449002 1.8381704785051858 1.0 294 +Biological Process GO:0016032 viral process 0.15889033285815868 1.8366643649695704 1.0 295 +Biological Process GO:0018105 peptidyl-serine phosphorylation 0.15888011559755566 1.8364791790535984 1.0 296 +Biological Process GO:0010324 membrane invagination 0.15883567148191968 1.8356736378637033 1.0 297 +Phenotype MP:0004803 increased susceptibility to autoimmune diabetes 0.158599842657015 1.831399285016158 1.0 298 +Biological Process GO:2000010 positive regulation of protein localization to cell surface 0.15803615732284892 1.821182594947902 1.0 299 +Biological Process GO:0030832 regulation of actin filament length 0.1578152988611844 1.8171795771026416 1.0 300 +Biological Process GO:0051056 regulation of small GTPase mediated signal transduction 0.15779320516041917 1.8167791329549985 1.0 301 +Biological Process GO:0097049 motor neuron apoptotic process 0.15772676645803163 1.8155749440402118 1.0 302 +Biological Process GO:1901797 negative regulation of signal transduction by p53 class mediator 0.15762701197014073 1.8137669128144096 1.0 303 +Biological Process GO:0046637 regulation of alpha-beta T cell differentiation 0.15729977002271545 1.807835714410742 1.0 304 +Phenotype MP:0008011 intestine polyps 0.15723770477323773 1.806710793502766 1.0 305 +Phenotype MP:0011014 decreased core body temperature 0.15723659176038118 1.8066906203552526 1.0 306 +Phenotype MP:0009120 abnormal white fat cell lipid droplet size 0.15712768394576426 1.80471668681377 1.0 307 +Biological Process GO:0050765 negative regulation of phagocytosis 0.15700334117811865 1.8024629976679565 1.0 308 +Biological Process GO:0120162 positive regulation of cold-induced thermogenesis 0.1569766630758852 1.8019794621107796 1.0 309 +Biological Process GO:1903018 regulation of glycoprotein metabolic process 0.15693712701839446 1.801262878546474 1.0 310 +Biological Process GO:0010559 regulation of glycoprotein biosynthetic process 0.15693712701839446 1.801262878546474 1.0 310 +Biological Process GO:0090150 establishment of protein localization to membrane 0.15688945232169504 1.8003987836858248 1.0 312 +Biological Process GO:0002040 sprouting angiogenesis 0.1567716598695713 1.7982638177699413 1.0 313 +Biological Process GO:0043491 phosphatidylinositol 3-kinase/protein kinase B signal transduction 0.15665611338875873 1.7961695596592768 1.0 314 +Biological Process GO:0060142 regulation of syncytium formation by plasma membrane fusion 0.1564411078405603 1.7922726247635898 1.0 315 +Phenotype MP:0010860 abnormal anterior commissure pars posterior morphology 0.15641074771550822 1.7917223532392303 1.0 316 +Biological Process GO:1902905 positive regulation of supramolecular fiber organization 0.15629820828261198 1.789682597303307 1.0 317 +Phenotype MP:0012051 spasticity 0.1562828830568488 1.7894048304849095 1.0 318 +Biological Process GO:1902235 regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway 0.15588785472686795 1.7822450167183055 1.0 319 +Phenotype MP:0009688 abnormal spinal cord central canal morphology 0.1558832947794241 1.7821623685333383 1.0 320 +Biological Process GO:0048339 paraxial mesoderm development 0.15583503479482852 1.781287665440271 1.0 321 +Phenotype MP:0008828 abnormal lymph node cell ratio 0.1557836178119575 1.7803557423505647 1.0 322 +Phenotype MP:0011708 decreased fibroblast cell migration 0.15577357664558544 1.780173748109223 1.0 323 +Phenotype MP:0002642 anisocytosis 0.15566694305690554 1.7782410344827095 1.0 324 +Biological Process GO:0060546 negative regulation of necroptotic process 0.1555878940623634 1.7768082864076882 1.0 325 +Phenotype MP:0002192 hydrops fetalis 0.15555636166226172 1.7762367676197748 1.0 326 +Biological Process GO:1902743 regulation of lamellipodium organization 0.1553336936455908 1.7722009519322766 1.0 327 +Biological Process GO:0032729 positive regulation of type II interferon production 0.1552406814268722 1.770515123060013 1.0 328 +Phenotype MP:0005534 decreased body temperature 0.15502560029337575 1.7666168181950952 1.0 329 +Biological Process GO:1903573 negative regulation of response to endoplasmic reticulum stress 0.1549897088381219 1.7659662923570054 1.0 330 +Biological Process GO:0045912 negative regulation of carbohydrate metabolic process 0.154942402362942 1.7651088714417533 1.0 331 +Phenotype MP:0009446 abnormal platelet dense granule physiology 0.1549003875336561 1.7643473606074866 1.0 332 +Biological Process GO:2000116 regulation of cysteine-type endopeptidase activity 0.15480431488330226 1.7626060619906738 1.0 333 +Biological Process GO:0051783 regulation of nuclear division 0.15470295494437014 1.7607689322683993 1.0 334 +Biological Process GO:0006886 intracellular protein transport 0.15468048146849456 1.76036160476871 1.0 335 +Biological Process GO:0002360 T cell lineage commitment 0.15463312036104127 1.7595031936538361 1.0 336 +Biological Process GO:0018209 peptidyl-serine modification 0.15458729874122668 1.75867268546124 1.0 337 +Phenotype MP:0005042 abnormal level of surface class II molecules 0.154491525725735 1.7569368176696318 1.0 338 +Biological Process GO:0030947 regulation of vascular endothelial growth factor receptor signaling pathway 0.15420074467431566 1.7516664661099837 1.0 339 +Biological Process GO:2001239 regulation of extrinsic apoptotic signaling pathway in absence of ligand 0.15413001224804335 1.7503844542618856 1.0 340 +Phenotype MP:0008202 absent B-1 B cells 0.15388764183170955 1.7459915363069418 1.0 341 +Biological Process GO:0060613 fat pad development 0.15386685026651714 1.7456146931202745 1.0 342 +Biological Process GO:0050714 positive regulation of protein secretion 0.15385832911569397 1.7454602488732658 1.0 343 +Biological Process GO:0050730 regulation of peptidyl-tyrosine phosphorylation 0.1533962149003404 1.7370845161226742 1.0 344 +Biological Process GO:1901799 negative regulation of proteasomal protein catabolic process 0.1532415359370144 1.7342809891678372 1.0 345 +Biological Process GO:0031343 positive regulation of cell killing 0.15311717789075818 1.7320270231000963 1.0 346 +Biological Process GO:0002579 positive regulation of antigen processing and presentation 0.15298807277452098 1.7296870172867942 1.0 347 +Biological Process GO:0071526 semaphorin-plexin signaling pathway 0.15296675263961557 1.7293005938740504 1.0 348 +Biological Process GO:0002825 regulation of T-helper 1 type immune response 0.1529550393837057 1.729088293326089 1.0 349 +Phenotype MP:0005041 abnormal antigen presentation via MHC class II 0.1529457227500084 1.7289194311024414 1.0 350 +Biological Process GO:0051129 negative regulation of cellular component organization 0.15286613681340522 1.727476951054119 1.0 351 +Biological Process GO:2000516 positive regulation of CD4-positive, alpha-beta T cell activation 0.1527552173361887 1.7254665565084975 1.0 352 +Phenotype MP:0008474 absent spleen germinal center 0.15265718324001631 1.7236897070572048 1.0 353 +Phenotype MP:0013219 abnormal substantia nigra pars compacta morphology 0.152491624781519 1.7206889913100982 1.0 354 +Biological Process GO:0045088 regulation of innate immune response 0.15237965776514606 1.7186596103153946 1.0 355 +Biological Process GO:0045780 positive regulation of bone resorption 0.15231125309261406 1.7174197885635765 1.0 356 +Biological Process GO:0010827 regulation of glucose transmembrane transport 0.15229101637639353 1.717053001909582 1.0 357 +Phenotype MP:0001045 abnormal enteric ganglia morphology 0.1521031573988525 1.7136480934726512 1.0 358 +Biological Process GO:0061180 mammary gland epithelium development 0.15207167088008988 1.7130774062753307 1.0 359 +Biological Process GO:0032655 regulation of interleukin-12 production 0.15205889342584755 1.712845817333872 1.0 360 +Biological Process GO:0030835 negative regulation of actin filament depolymerization 0.15199641234988204 1.711713359649453 1.0 361 +Phenotype MP:0012080 chylous ascites 0.1518538810728456 1.7091300072110425 1.0 362 +Phenotype MP:0002754 dilated heart right ventricle 0.15180834711266855 1.7083047127949702 1.0 363 +Phenotype MP:0003888 liver hemorrhage 0.15175840392155326 1.707399501902089 1.0 364 +Phenotype MP:0001218 thin epidermis 0.1514884856330727 1.7025072839747948 1.0 365 +Phenotype MP:0011168 abnormal fat cell differentiation 0.15130751853478763 1.6992272895458718 1.0 366 +Biological Process GO:0042327 positive regulation of phosphorylation 0.15124529202438064 1.698099445814053 1.0 367 +Biological Process GO:0000132 establishment of mitotic spindle orientation 0.15119825714390878 1.697246947501516 1.0 368 +Biological Process GO:0040001 establishment of mitotic spindle localization 0.15119825714390878 1.697246947501516 1.0 368 +Phenotype MP:0008720 impaired neutrophil chemotaxis 0.15105805607811484 1.694705829701148 1.0 370 +Phenotype MP:0002254 reproductive system inflammation 0.15097148870503108 1.6931368124370596 1.0 371 +Phenotype MP:0001952 increased airway responsiveness 0.1508933646133832 1.691720828052064 1.0 372 +Biological Process GO:0035904 aorta development 0.15088789498483335 1.6916216920691043 1.0 373 +Phenotype MP:0002497 increased IgE level 0.15071583115721432 1.6885030677370696 1.0 374 +Phenotype MP:0003994 abnormal dorsal spinal root morphology 0.15071084238623644 1.6884126472066545 1.0 375 +Biological Process GO:2000177 regulation of neural precursor cell proliferation 0.15062651566407714 1.6868842413167833 1.0 376 +Biological Process GO:0050708 regulation of protein secretion 0.15061560139766728 1.6866864223023912 1.0 377 +Phenotype MP:0010751 decreased susceptibility to parasitic infection induced morbidity/mortality 0.15060509900263586 1.6864960683788335 1.0 378 +Biological Process GO:2001237 negative regulation of extrinsic apoptotic signaling pathway 0.150412274322565 1.6830011575227453 1.0 379 +Phenotype MP:0008578 decreased circulating interferon-gamma level 0.15009512097580235 1.677252813097965 1.0 380 +Biological Process GO:0090497 mesenchymal cell migration 0.15003273236069026 1.6761220312490261 1.0 381 +Biological Process GO:1904894 positive regulation of receptor signaling pathway via STAT 0.14997216954959658 1.675024341752595 1.0 382 +Biological Process GO:0010884 positive regulation of lipid storage 0.14989095949797582 1.6735524249267582 1.0 383 +Biological Process GO:2001257 regulation of cation channel activity 0.14985007626420965 1.6728114240472607 1.0 384 +Phenotype MP:0003893 increased hepatocyte proliferation 0.1498080848264033 1.6720503371791362 1.0 385 +Biological Process GO:0030100 regulation of endocytosis 0.1498079623130646 1.672048116648044 1.0 386 +Biological Process GO:0071622 regulation of granulocyte chemotaxis 0.14968066927654777 1.6697409544369435 1.0 387 +Biological Process GO:0097242 amyloid-beta clearance 0.14959213464228438 1.6681362809360556 1.0 388 +Phenotype MP:0002982 abnormal primordial germ cell migration 0.14958155437330256 1.6679445155618757 1.0 389 +Phenotype MP:0000343 abnormal response to cardiac infarction 0.14938192669327377 1.6643263016182461 1.0 390 +Biological Process GO:0071692 protein localization to extracellular region 0.14933024934787686 1.6633896595070026 1.0 391 +Phenotype MP:0004220 abnormal peripheral nervous system regeneration 0.1491939478310682 1.6609192202944454 1.0 392 +Phenotype MP:0001890 anencephaly 0.14910530899282004 1.6593126581160422 1.0 393 +Biological Process GO:0002730 regulation of dendritic cell cytokine production 0.14908657392007119 1.6589730884659564 1.0 394 +Phenotype MP:0003415 priapism 0.14907323164561204 1.6587312622648962 1.0 395 +Phenotype MP:0004601 abnormal vertebral spinous process morphology 0.1490562983538204 1.658424349553877 1.0 396 +Biological Process GO:0062099 negative regulation of programmed necrotic cell death 0.14902422418218508 1.6578430112593856 1.0 397 +Biological Process GO:0060068 vagina development 0.1489479776586774 1.6564610574418137 1.0 398 +Phenotype MP:0003222 increased cardiomyocyte apoptosis 0.14893699962383844 1.6562620826367054 1.0 399 +Phenotype MP:0002810 microcytic anemia 0.1489254528203905 1.656052799008134 1.0 400 +Biological Process GO:0016579 protein deubiquitination 0.14884725717140967 1.6546355176600125 1.0 401 +Phenotype MP:0001559 hyperglycemia 0.1488052314214583 1.6538738088907494 1.0 402 +Phenotype MP:0008214 increased immature B cell number 0.148780588963906 1.6534271690084037 1.0 403 +Biological Process GO:0007169 cell surface receptor protein tyrosine kinase signaling pathway 0.14871763875342392 1.6522862083496022 1.0 404 +Biological Process GO:0043410 positive regulation of MAPK cascade 0.14867625467683787 1.6515361297887219 1.0 405 +Phenotype MP:0009132 abnormal white fat cell size 0.1484984357255027 1.6483131949278362 1.0 406 +Biological Process GO:0072132 mesenchyme morphogenesis 0.14844076400012507 1.6472679058131983 1.0 407 +Phenotype MP:0009108 increased pancreas weight 0.14843737757810183 1.6472065275545233 1.0 408 +Biological Process GO:0007088 regulation of mitotic nuclear division 0.14842629420276243 1.6470056434727682 1.0 409 +Biological Process GO:0042088 T-helper 1 type immune response 0.14829735395659294 1.6446686258982606 1.0 410 +Phenotype MP:0011483 renal glomerular synechia 0.14820283590296723 1.6429555040531139 1.0 411 +Phenotype MP:0020849 abnormal actin cytoskeleton morphology 0.14817598643375351 1.6424688625018316 1.0 412 +Biological Process GO:0090280 positive regulation of calcium ion import 0.14814338810242766 1.6418780239120867 1.0 413 +Biological Process GO:1904019 epithelial cell apoptotic process 0.14811450318082953 1.641354490171315 1.0 414 +Biological Process GO:0010632 regulation of epithelial cell migration 0.14805762142476253 1.6403235191010204 1.0 415 +Phenotype MP:0008060 abnormal podocyte slit diaphragm morphology 0.1479918098166224 1.6391306961508616 1.0 416 +Biological Process GO:1902904 negative regulation of supramolecular fiber organization 0.14794704232511724 1.6383192938344997 1.0 417 +Biological Process GO:0000266 mitochondrial fission 0.14784122333925398 1.6364013447299668 1.0 418 +Phenotype MP:0010352 gastrointestinal tract polyps 0.14780250964345698 1.6356996663158214 1.0 419 +Biological Process GO:0070301 cellular response to hydrogen peroxide 0.1477911870929216 1.635494447228876 1.0 420 +Biological Process GO:0038063 collagen-activated tyrosine kinase receptor signaling pathway 0.14763428308563187 1.6326505917730334 1.0 421 +Phenotype MP:0004670 small vertebral body 0.14751230894793688 1.6304398335970802 1.0 422 +Phenotype MP:0000990 abnormal skeletal muscle mechanoreceptor morphology 0.14749423287731778 1.630112208235955 1.0 423 +Phenotype MP:0004069 abnormal muscle spindle morphology 0.14749423287731778 1.630112208235955 1.0 423 +Biological Process GO:0001755 neural crest cell migration 0.14747676536428367 1.629795612865957 1.0 425 +Biological Process GO:0002287 alpha-beta T cell activation involved in immune response 0.14734535892844036 1.627413896070058 1.0 426 +Biological Process GO:0099638 endosome to plasma membrane protein transport 0.14731960821492895 1.626947169258065 1.0 427 +Biological Process GO:0046427 positive regulation of receptor signaling pathway via JAK-STAT 0.14712977268275984 1.623506436142339 1.0 428 +Phenotype MP:0004149 increased bone strength 0.14709277423624112 1.622835846296946 1.0 429 +Biological Process GO:0032984 protein-containing complex disassembly 0.1470792838686379 1.6225913359356592 1.0 430 +Biological Process GO:0046580 negative regulation of Ras protein signal transduction 0.14702709817302007 1.621645480072809 1.0 431 +Biological Process GO:0099517 synaptic vesicle transport along microtubule 0.1468908534836314 1.619176070846491 1.0 432 +Biological Process GO:0048490 anterograde synaptic vesicle transport 0.1468908534836314 1.619176070846491 1.0 432 +Biological Process GO:0099514 synaptic vesicle cytoskeletal transport 0.1468908534836314 1.619176070846491 1.0 432 +Phenotype MP:0004918 abnormal negative T cell selection 0.1468238158455304 1.6179610263351785 1.0 435 +Phenotype MP:0020949 increased susceptibility to Coronaviridae infection 0.14682380886398483 1.6179608997959856 1.0 436 +Biological Process GO:0032736 positive regulation of interleukin-13 production 0.14681917515833598 1.6178769147575032 1.0 437 +Biological Process GO:0003149 membranous septum morphogenesis 0.14677963793294135 1.6171603100251604 1.0 438 +Biological Process GO:0045059 positive thymic T cell selection 0.14671860843331086 1.6160541618872672 1.0 439 +Biological Process GO:0033077 T cell differentiation in thymus 0.14646868883828457 1.6115244164963476 1.0 440 +Biological Process GO:0048771 tissue remodeling 0.14645784721654287 1.6113279141528263 1.0 441 +Biological Process GO:0070848 response to growth factor 0.1463862468028435 1.6100301701967814 1.0 442 +Phenotype MP:0008127 decreased dendritic cell number 0.14638188386576978 1.6099510927875107 1.0 443 +Biological Process GO:1900077 negative regulation of cellular response to insulin stimulus 0.1463152546557065 1.6087434509571332 1.0 444 +Biological Process GO:0150116 regulation of cell-substrate junction organization 0.14627665539308943 1.6080438466227305 1.0 445 +Phenotype MP:0008122 decreased myeloid dendritic cell number 0.14624974277661373 1.6075560605392683 1.0 446 +Biological Process GO:0043405 regulation of MAP kinase activity 0.14597091184869304 1.6025023027078278 1.0 447 +Biological Process GO:1903426 regulation of reactive oxygen species biosynthetic process 0.14584103311157226 1.6001482751623308 1.0 448 +Phenotype MP:0000811 hippocampal neuron degeneration 0.14578733704963098 1.5991750441955335 1.0 449 +Biological Process GO:0150146 cell junction disassembly 0.1457491925199189 1.5984836818090273 1.0 450 +Biological Process GO:0055057 neuroblast division 0.14574092383786585 1.5983338135107257 1.0 451 +Phenotype MP:0000371 diluted coat color 0.14563304049408932 1.5963784483094603 1.0 452 +Phenotype MP:0006060 increased cerebral infarct size 0.14562250813116595 1.596187551223529 1.0 453 +Phenotype MP:0005282 decreased fatty acids level 0.14554792506279035 1.5948357472156063 1.0 454 +Biological Process GO:0106015 negative regulation of inflammatory response to wounding 0.14549763472668698 1.5939242443854735 1.0 455 +Phenotype MP:0003255 bile duct proliferation 0.1454862908461323 1.5937186386959625 1.0 456 +Phenotype MP:0005661 decreased circulating adrenaline level 0.14546194085229702 1.5932772996631723 1.0 457 +Biological Process GO:0046324 regulation of glucose import 0.1453878103715731 1.5919336987208355 1.0 458 +Phenotype MP:0002455 abnormal dendritic cell antigen presentation 0.1452619900473796 1.589653229142051 1.0 459 +Biological Process GO:0019884 antigen processing and presentation of exogenous antigen 0.14522573250183335 1.5889960679866526 1.0 460 +Phenotype MP:0002376 abnormal dendritic cell physiology 0.14510498268176364 1.5868075003360944 1.0 461 +Biological Process GO:2000562 negative regulation of CD4-positive, alpha-beta T cell proliferation 0.14506402375437877 1.5860651275240742 1.0 462 +Phenotype MP:0020001 decreased response to antigen 0.14500286963744968 1.5849567207212136 1.0 463 +Phenotype MP:0011426 abnormal ureter smooth muscle morphology 0.14499519581238574 1.5848176340933304 1.0 464 +Biological Process GO:0046474 glycerophospholipid biosynthetic process 0.14497644383965447 1.58447775813426 1.0 465 +Biological Process GO:0032232 negative regulation of actin filament bundle assembly 0.14489859555628049 1.5830667727220629 1.0 466 +Phenotype MP:0010964 increased compact bone volume 0.14485407870148226 1.5822599131486097 1.0 467 +Biological Process GO:0098780 response to mitochondrial depolarisation 0.14474073566309476 1.5802055920151483 1.0 468 +Phenotype MP:0020349 abnormal dendritic cell migration 0.1447183541259024 1.5797999308867037 1.0 469 +Biological Process GO:0043372 positive regulation of CD4-positive, alpha-beta T cell differentiation 0.14470945619006192 1.57963865748252 1.0 470 +Phenotype MP:0003037 increased myocardial infarct size 0.14469132181776967 1.5793099754145958 1.0 471 +Phenotype MP:0005189 abnormal anogenital distance 0.14466440402523606 1.5788220955160628 1.0 472 +Phenotype MP:0008182 decreased marginal zone B cell number 0.14464586898955312 1.5784861514999622 1.0 473 +Biological Process GO:2000514 regulation of CD4-positive, alpha-beta T cell activation 0.1446136398946004 1.5779020052496444 1.0 474 +Biological Process GO:0050709 negative regulation of protein secretion 0.14456409769222156 1.5770040622017696 1.0 475 +Phenotype MP:0010493 abnormal atrium myocardium morphology 0.14455883291611815 1.5769086391306568 1.0 476 +Biological Process GO:0071363 cellular response to growth factor stimulus 0.1445440755175803 1.576641164073322 1.0 477 +Phenotype MP:0003221 abnormal cardiomyocyte apoptosis 0.14450466567093545 1.5759268680567267 1.0 478 +Biological Process GO:0072657 protein localization to membrane 0.14448733023273475 1.575612666518104 1.0 479 +Phenotype MP:0002831 absent Peyer's patches 0.1442541202715375 1.5713857800799333 1.0 480 +Phenotype MP:0006309 decreased retina ganglion cell number 0.14412610832270056 1.5690655877190032 1.0 481 +Biological Process GO:0006897 endocytosis 0.14408008402707972 1.5682314060657523 1.0 482 +Biological Process GO:0034121 regulation of toll-like receptor signaling pathway 0.14395070013024336 1.565886347406818 1.0 483 +Phenotype MP:0011081 decreased macrophage apoptosis 0.14391094530354454 1.5651657986919931 1.0 484 +Biological Process GO:2000179 positive regulation of neural precursor cell proliferation 0.1437344498480202 1.5619668519423575 1.0 485 +Biological Process GO:0003281 ventricular septum development 0.14373136488239813 1.5619109375239373 1.0 486 +Biological Process GO:2000273 positive regulation of signaling receptor activity 0.1437181345098114 1.5616711395231502 1.0 487 +Biological Process GO:0097581 lamellipodium organization 0.14369302492634417 1.5612160330719465 1.0 488 +Phenotype MP:0008827 abnormal thymus cell ratio 0.14368050389078246 1.5609890916705762 1.0 489 +Biological Process GO:0060485 mesenchyme development 0.14361265427870662 1.5597593302845436 1.0 490 +Phenotype MP:0011267 abnormal excitatory postsynaptic current amplitude 0.14356795986756277 1.5589492525359083 1.0 491 +Phenotype MP:0009292 increased inguinal fat pad weight 0.14352736470401262 1.5582134728745913 1.0 492 +Phenotype MP:0009254 disorganized pancreatic islets 0.14349457874639526 1.5576192335938 1.0 493 +Biological Process GO:0060982 coronary artery morphogenesis 0.14341278140737435 1.556136672294913 1.0 494 +Phenotype MP:0009122 decreased white fat cell lipid droplet size 0.14335635603202113 1.5551139730387373 1.0 495 +Biological Process GO:0050768 negative regulation of neurogenesis 0.14330807241389576 1.5542388415924122 1.0 496 +Biological Process GO:0001934 positive regulation of protein phosphorylation 0.1431201752516007 1.5508332410640369 1.0 497 +Phenotype MP:0011732 decreased somite size 0.1431013346301736 1.5504917583641211 1.0 498 +Biological Process GO:0030335 positive regulation of cell migration 0.1430891538149115 1.5502709833913328 1.0 499 +Phenotype MP:0010967 increased compact bone area 0.14285306257119235 1.5459918742524086 1.0 500 +Biological Process GO:0051294 establishment of spindle orientation 0.14283212033299986 1.5456123001461124 1.0 501 +Biological Process GO:0030323 respiratory tube development 0.14273993438508725 1.5439414472759294 1.0 502 +Biological Process GO:1900242 regulation of synaptic vesicle endocytosis 0.14273709775696686 1.5438900339277573 1.0 503 +Phenotype MP:0004148 increased compact bone thickness 0.1426734319060412 1.5427361024212698 1.0 504 +Phenotype MP:0031230 abnormal circulating angiotensin II level 0.14265878092275042 1.5424705561201608 1.0 505 +Phenotype MP:0031217 increased susceptibility to myocardial ischemic injury 0.1426299935026082 1.5419487895748365 1.0 506 +Biological Process GO:1902253 regulation of intrinsic apoptotic signaling pathway by p53 class mediator 0.14260014608756222 1.5414078108223657 1.0 507 +Biological Process GO:0001889 liver development 0.1426001298965247 1.541407517362873 1.0 508 +Phenotype MP:0011310 abnormal kidney capillary morphology 0.14257468376103266 1.5409463109698742 1.0 509 +Phenotype MP:0014144 abnormal white adipose tissue mass 0.14256639644290048 1.5407961048961631 1.0 510 +Biological Process GO:0045937 positive regulation of phosphate metabolic process 0.14254395782998996 1.5403894092811221 1.0 511 +Biological Process GO:0010562 positive regulation of phosphorus metabolic process 0.14254395782998996 1.5403894092811221 1.0 511 +Biological Process GO:0003279 cardiac septum development 0.14252156840614927 1.5399836052086682 1.0 513 +Biological Process GO:0035020 regulation of Rac protein signal transduction 0.1424749861772261 1.539139311119838 1.0 514 +Biological Process GO:0070254 mucus secretion 0.1422046347737833 1.5342392430657714 1.0 515 +Biological Process GO:0032606 type I interferon production 0.14215114760179282 1.5332697981898233 1.0 516 +Phenotype MP:0008189 increased transitional stage B cell number 0.14209849032303923 1.5323153949718311 1.0 517 +Phenotype MP:0013622 abnormal femur compact bone thickness 0.1420714701303195 1.5318256590892925 1.0 518 +Biological Process GO:0090068 positive regulation of cell cycle process 0.14203733068610103 1.5312068881198493 1.0 519 +Biological Process GO:0052547 regulation of peptidase activity 0.14202682512266862 1.531016476769623 1.0 520 +Biological Process GO:0051668 localization within membrane 0.14198207874974222 1.530205457223507 1.0 521 +Biological Process GO:0099170 postsynaptic modulation of chemical synaptic transmission 0.14193768594599598 1.5294008460519086 1.0 522 +Biological Process GO:0050798 activated T cell proliferation 0.14189427922972797 1.5286141075293478 1.0 523 +Biological Process GO:0051495 positive regulation of cytoskeleton organization 0.1418665219097146 1.5281110113540295 1.0 524 +Phenotype MP:0008641 increased circulating interleukin-1 beta level 0.14178128223868403 1.5265660584385383 1.0 525 +Phenotype MP:0011090 perinatal lethality, incomplete penetrance 0.1417622183182874 1.5262205284870336 1.0 526 +Biological Process GO:0030837 negative regulation of actin filament polymerization 0.14171383641747137 1.5253436156855293 1.0 527 +Biological Process GO:0002286 T cell activation involved in immune response 0.14158716338073307 1.5230476908531498 1.0 528 +Biological Process GO:0010763 positive regulation of fibroblast migration 0.14158542786438943 1.523016234947671 1.0 529 +Phenotype MP:0004215 abnormal myocardial fiber physiology 0.141555780937626 1.5224788900074013 1.0 530 +Phenotype MP:0010331 abnormal apolipoprotein level 0.14154924736512253 1.5223604702415134 1.0 531 +Phenotype MP:0000321 increased bone marrow cell number 0.14154515660474654 1.522286325983411 1.0 532 +Biological Process GO:0045017 glycerolipid biosynthetic process 0.14146657185540312 1.5208619922648106 1.0 533 +Phenotype MP:0001601 abnormal myelopoiesis 0.14144135174688832 1.5204048825680243 1.0 534 +Phenotype MP:0011506 glomerular crescent 0.14133381780397125 1.5184558501912522 1.0 535 +Phenotype MP:0008594 decreased circulating interleukin-10 level 0.14128860370721164 1.5176363532391228 1.0 536 +Phenotype MP:0008124 decreased plasmacytoid dendritic cell number 0.1412452995356357 1.516851473319711 1.0 537 +Biological Process GO:0045089 positive regulation of innate immune response 0.1411743377227831 1.5155653038832306 1.0 538 +Phenotype MP:0009843 decreased neural crest cell number 0.14116886624575464 1.5154661343969462 1.0 539 +Phenotype MP:0011320 abnormal glomerular capillary morphology 0.14114696138211458 1.5150691128864806 1.0 540 +Phenotype MP:0001553 abnormal circulating free fatty acids level 0.1411329661486782 1.5148154519274566 1.0 541 +Phenotype MP:0009295 decreased interscapular fat pad weight 0.14093383991562658 1.5112063266154463 1.0 542 +Biological Process GO:0010721 negative regulation of cell development 0.14087876750993267 1.5102081496784492 1.0 543 +Biological Process GO:0032008 positive regulation of TOR signaling 0.14087499618785826 1.5101397951791455 1.0 544 +Biological Process GO:0061008 hepaticobiliary system development 0.14083913699231698 1.5094898540422448 1.0 545 +Phenotype MP:0004130 abnormal muscle cell glucose uptake 0.14083231592897494 1.5093662235592826 1.0 546 +Biological Process GO:0001963 synaptic transmission, dopaminergic 0.14073776424324602 1.5076524921386263 1.0 547 +Biological Process GO:0060612 adipose tissue development 0.14065074432410551 1.5060752725628526 1.0 548 +Biological Process GO:0071542 dopaminergic neuron differentiation 0.14059234272727394 1.5050167546661575 1.0 549 +Biological Process GO:0099171 presynaptic modulation of chemical synaptic transmission 0.14045971505372568 1.5026129031678368 1.0 550 +Biological Process GO:0045136 development of secondary sexual characteristics 0.14044121326984849 1.5022775618344264 1.0 551 +Phenotype MP:0010358 abnormal free fatty acids level 0.14038523972936856 1.5012630519998706 1.0 552 +Phenotype MP:0002531 abnormal type I hypersensitivity reaction 0.14036675045133173 1.5009279373324516 1.0 553 +Biological Process GO:0030217 T cell differentiation 0.14033605989712616 1.5003716768421813 1.0 554 +Biological Process GO:0045806 negative regulation of endocytosis 0.1402610297181044 1.4990117690383615 1.0 555 +Phenotype MP:0001201 translucent skin 0.1401782152534372 1.4975107725295116 1.0 556 +Phenotype MP:0020316 decreased vascular endothelial cell proliferation 0.14010831658340206 1.4962438723555185 1.0 557 +Biological Process GO:0042330 taxis 0.1400671045349745 1.4954969117724741 1.0 558 +Phenotype MP:0008618 decreased circulating interleukin-12 level 0.13996587503199476 1.4936621461771658 1.0 559 +Phenotype MP:0009131 decreased white fat cell number 0.13995279313964082 1.4934250393525148 1.0 560 +Phenotype MP:0008463 abnormal peripheral lymph node morphology 0.13990655342012592 1.4925869531819287 1.0 561 +Phenotype MP:0012307 impaired spatial learning 0.13990124467642384 1.492490733206406 1.0 562 +Biological Process GO:1903051 negative regulation of proteolysis involved in protein catabolic process 0.139897593287874 1.492424552479551 1.0 563 +Biological Process GO:0061098 positive regulation of protein tyrosine kinase activity 0.1397640450131329 1.4900040152587295 1.0 564 +Phenotype MP:0013280 abnormal cytotoxic T cell cytolysis 0.13975095451472264 1.4897667524509355 1.0 565 +Phenotype MP:0011441 decreased kidney cell proliferation 0.13970595440633982 1.4889511339976624 1.0 566 +Biological Process GO:0046578 regulation of Ras protein signal transduction 0.13964343064498674 1.487817902648667 1.0 567 +Biological Process GO:0042632 cholesterol homeostasis 0.1395637694291566 1.486374058178594 1.0 568 +Phenotype MP:0005087 decreased acute inflammation 0.13935664697492312 1.48262000287004 1.0 569 +Phenotype MP:0009283 decreased gonadal fat pad weight 0.13924578678802635 1.4806106829502503 1.0 570 +Biological Process GO:0046879 hormone secretion 0.13914687903602185 1.4788179986522407 1.0 571 +Biological Process GO:0007528 neuromuscular junction development 0.13889369575524335 1.4742290995743446 1.0 572 +Biological Process GO:0030072 peptide hormone secretion 0.1388505825398184 1.4734476806990529 1.0 573 +Biological Process GO:1904951 positive regulation of establishment of protein localization 0.1387270094312838 1.4712079414790553 1.0 574 +Biological Process GO:0120161 regulation of cold-induced thermogenesis 0.13870209121372 1.4707563034986577 1.0 575 +Phenotype MP:0009429 decreased embryo weight 0.13865160621610395 1.469841272465425 1.0 576 +Biological Process GO:0051494 negative regulation of cytoskeleton organization 0.13856751145635027 1.468317070850283 1.0 577 +Phenotype MP:0008078 increased CD8-positive, alpha-beta T cell number 0.13852868067049873 1.4676132702010452 1.0 578 +Phenotype MP:0013887 abnormal T cell compartment 0.13844165999819202 1.4660360369742764 1.0 579 +Phenotype MP:0003944 abnormal T cell subpopulation ratio 0.13844165999819202 1.4660360369742764 1.0 579 +Phenotype MP:0008681 increased interleukin-17 secretion 0.13842270494214548 1.465692480168527 1.0 581 +Biological Process GO:0034599 cellular response to oxidative stress 0.13840846950881147 1.4654344656317888 1.0 582 +Biological Process GO:0002718 regulation of cytokine production involved in immune response 0.13839284068134405 1.4651511960899246 1.0 583 +Biological Process GO:0009266 response to temperature stimulus 0.13835899555993358 1.4645377596657096 1.0 584 +Biological Process GO:0002833 positive regulation of response to biotic stimulus 0.13832984376073199 1.4640093888188517 1.0 585 +Biological Process GO:0048010 vascular endothelial growth factor receptor signaling pathway 0.13823899196742162 1.4623627172484968 1.0 586 +Biological Process GO:0048285 organelle fission 0.13820738550144962 1.4617898560306923 1.0 587 +Biological Process GO:0034381 plasma lipoprotein particle clearance 0.13819004236067467 1.4614755148843683 1.0 588 +Biological Process GO:2000106 regulation of leukocyte apoptotic process 0.1381073942555494 1.4599775336107512 1.0 589 +Phenotype MP:0009117 abnormal white fat cell morphology 0.13806047616443617 1.45912715208325 1.0 590 +Phenotype MP:0010334 pleural effusion 0.13804039555994563 1.4587631949248352 1.0 591 +Biological Process GO:0046488 phosphatidylinositol metabolic process 0.13799548478421397 1.4579491956089685 1.0 592 +Biological Process GO:1903829 positive regulation of protein localization 0.137901696630497 1.4562493030616173 1.0 593 +Biological Process GO:0051701 biological process involved in interaction with host 0.13777293145149994 1.453915458546498 1.0 594 +Biological Process GO:1900182 positive regulation of protein localization to nucleus 0.13771862348721453 1.4529311369654465 1.0 595 +Biological Process GO:0071333 cellular response to glucose stimulus 0.13769059612255985 1.4524231462820796 1.0 596 +Biological Process GO:2001233 regulation of apoptotic signaling pathway 0.13765711147430448 1.4518162433656223 1.0 597 +Phenotype MP:0009844 abnormal neural crest cell apoptosis 0.137640943477782 1.4515232014866115 1.0 598 +Biological Process GO:2000147 positive regulation of cell motility 0.13752912294051445 1.4494964753979886 1.0 599 +Biological Process GO:0045663 positive regulation of myoblast differentiation 0.13746472002117827 1.448329184665967 1.0 600 +Biological Process GO:0055092 sterol homeostasis 0.13740724071375154 1.447287383090296 1.0 601 +Biological Process GO:0032869 cellular response to insulin stimulus 0.13735821427563843 1.4463987881721876 1.0 602 +Biological Process GO:1900117 regulation of execution phase of apoptosis 0.1373418897718942 1.4461029096293838 1.0 603 +Phenotype MP:0011509 dilated glomerular capillary 0.13730909538694336 1.4455085176047668 1.0 604 +Biological Process GO:0048013 ephrin receptor signaling pathway 0.13730811639852547 1.445490773624855 1.0 605 +Phenotype MP:0008502 increased IgG3 level 0.1372317782300827 1.4441071587601684 1.0 606 +Biological Process GO:0002327 immature B cell differentiation 0.13710277184538544 1.441768942437354 1.0 607 +Biological Process GO:0002507 tolerance induction 0.137102179786472 1.4417582114815277 1.0 608 +Phenotype MP:0009535 abnormal skin sebaceous gland morphology 0.13704838998699764 1.4407832815396726 1.0 609 +Phenotype MP:0005663 abnormal circulating noradrenaline level 0.13687733122705625 1.4376828738692 1.0 610 +Biological Process GO:0042074 cell migration involved in gastrulation 0.13681537826506174 1.4365599881506195 1.0 611 +Biological Process GO:0048193 Golgi vesicle transport 0.13679427795809707 1.4361775490777242 1.0 612 +Biological Process GO:0030048 actin filament-based movement 0.13672386795212343 1.4349013810365583 1.0 613 +Phenotype MP:0002494 increased IgM level 0.1367032060233382 1.434526887485252 1.0 614 +Phenotype MP:0003288 intestinal edema 0.13670074769214235 1.4344823306972878 1.0 615 +Biological Process GO:0060444 branching involved in mammary gland duct morphogenesis 0.1366968315349134 1.4344113510882015 1.0 616 +Biological Process GO:0098801 regulation of renal system process 0.1366498090945626 1.4335590782505054 1.0 617 +Phenotype MP:0005616 decreased susceptibility to type IV hypersensitivity reaction 0.13660866025134766 1.4328132632499855 1.0 618 +Phenotype MP:0011279 decreased ear pigmentation 0.13657723152014145 1.432243623441195 1.0 619 +Phenotype MP:0001092 abnormal trigeminal ganglion morphology 0.136546927824864 1.4316943746958277 1.0 620 +Phenotype MP:0020183 abnormal susceptibility to fungal infection 0.13651724133297383 1.4311563126451192 1.0 621 +Phenotype MP:0010398 decreased liver glycogen level 0.13650335171690153 1.430904565980843 1.0 622 +Phenotype MP:0004784 abnormal anterior cardinal vein morphology 0.1364042189986292 1.4291078042117782 1.0 623 +Biological Process GO:0071326 cellular response to monosaccharide stimulus 0.1363864266404191 1.4287853210844057 1.0 624 +Biological Process GO:0071331 cellular response to hexose stimulus 0.1363864266404191 1.4287853210844057 1.0 624 +Biological Process GO:0045622 regulation of T-helper cell differentiation 0.1363699567980261 1.4284868083060818 1.0 626 +Phenotype MP:0005558 decreased creatinine clearance 0.1363494243266954 1.4281146611466535 1.0 627 +Biological Process GO:0032732 positive regulation of interleukin-1 production 0.136337132629888 1.427891876466829 1.0 628 +Phenotype MP:0005079 decreased cytotoxic T cell cytolysis 0.1363154780468232 1.4274993912444527 1.0 629 +Biological Process GO:0099024 plasma membrane invagination 0.13618299510663368 1.4250981630108848 1.0 630 +Biological Process GO:0042509 regulation of tyrosine phosphorylation of STAT protein 0.1361796563189568 1.425037648115728 1.0 631 +Phenotype MP:0000172 abnormal bone marrow cell number 0.13617515646581202 1.424956089128566 1.0 632 +Biological Process GO:0048712 negative regulation of astrocyte differentiation 0.13617104602275676 1.4248815881256243 1.0 633 +Biological Process GO:0010828 positive regulation of glucose transmembrane transport 0.13613132245371495 1.4241616059499207 1.0 634 +Biological Process GO:0030162 regulation of proteolysis 0.13611448065948006 1.4238563516148124 1.0 635 +Biological Process GO:0030324 lung development 0.13597362287368742 1.4213033308886773 1.0 636 +Phenotype MP:0003875 abnormal hair follicle regression 0.13596830052861197 1.421206864390835 1.0 637 +Biological Process GO:0043369 CD4-positive or CD8-positive, alpha-beta T cell lineage commitment 0.13592629838383685 1.420445583460927 1.0 638 +Phenotype MP:0000491 crypts of Lieberkuhn abscesses 0.1359165100258355 1.4202681713234886 1.0 639 +Biological Process GO:0097398 cellular response to interleukin-17 0.13591446360158344 1.420231080270974 1.0 640 +Phenotype MP:0003266 biliary cyst 0.13589222646316534 1.4198280363430018 1.0 641 +Biological Process GO:0051961 negative regulation of nervous system development 0.13580006295213876 1.4181575901371342 1.0 642 +Phenotype MP:0003076 increased susceptibility to ischemic brain injury 0.13573888571380244 1.4170487642631406 1.0 643 +Phenotype MP:0008563 decreased interferon-alpha secretion 0.13563181358324994 1.4151081021481309 1.0 644 +Phenotype MP:0014436 decreased interferon level 0.13561163450159208 1.4147423601096842 1.0 645 +Phenotype MP:0003394 increased cardiac output 0.13555398262816531 1.413697430807901 1.0 646 +Phenotype MP:0004882 enlarged lung 0.13554795261754593 1.41358813800592 1.0 647 +Biological Process GO:0032273 positive regulation of protein polymerization 0.13552480121517163 1.4131685232166624 1.0 648 +Biological Process GO:0051321 meiotic cell cycle 0.13541676501246513 1.4112103874762028 1.0 649 +Phenotype MP:0005568 increased circulating total protein level 0.13531882184682908 1.4094351861236825 1.0 650 +Biological Process GO:0033135 regulation of peptidyl-serine phosphorylation 0.1352796794955572 1.408725738410129 1.0 651 +Biological Process GO:0000165 MAPK cascade 0.1352302053525336 1.4078290289251958 1.0 652 +Phenotype MP:0003405 abnormal platelet shape 0.13518758055267832 1.4070564624897266 1.0 653 +Phenotype MP:0008702 increased interleukin-5 secretion 0.135073315288752 1.4049854261928008 1.0 654 +Biological Process GO:0060412 ventricular septum morphogenesis 0.13504017093969678 1.404384691134983 1.0 655 +Biological Process GO:0002829 negative regulation of type 2 immune response 0.13501886286977582 1.4039984863978008 1.0 656 +Biological Process GO:0043542 endothelial cell migration 0.13500384248005481 1.4037262446750123 1.0 657 +Biological Process GO:0045807 positive regulation of endocytosis 0.13499760063599875 1.403613112432057 1.0 658 +Phenotype MP:0020518 renal glomerular protein deposits 0.134933997068595 1.4024603098026236 1.0 659 +Biological Process GO:1903421 regulation of synaptic vesicle recycling 0.13488466417850176 1.4015661605003367 1.0 660 +Phenotype MP:0005248 abnormal Harderian gland morphology 0.1347994569169868 1.4000217950011864 1.0 661 +Biological Process GO:0061298 retina vasculature development in camera-type eye 0.13478919307878967 1.3998357648751305 1.0 662 +Phenotype MP:0009124 increased brown fat cell lipid droplet size 0.13477915073647684 1.3996537493200845 1.0 663 +Phenotype MP:0011402 renal cast 0.13477316555196972 1.39954526898291 1.0 664 +Biological Process GO:0051656 establishment of organelle localization 0.13471137540545963 1.3984253342641904 1.0 665 +Phenotype MP:0014062 nervous system inclusion bodies 0.13470989480179674 1.3983984986028366 1.0 666 +Biological Process GO:1904646 cellular response to amyloid-beta 0.13461916699374354 1.3967540742418179 1.0 667 +Phenotype MP:0001475 reduced long-term depression 0.13461416488307842 1.3966634119320946 1.0 668 +Phenotype MP:0009517 abnormal salivary gland duct morphology 0.13459723758622555 1.3963566078782068 1.0 669 +Biological Process GO:0002295 T-helper cell lineage commitment 0.13457767203272042 1.3960019859214878 1.0 670 +Phenotype MP:0020173 abnormal IgE level 0.13452427350963037 1.3950341477900934 1.0 671 +Biological Process GO:0051170 import into nucleus 0.13447327184170554 1.394109752205236 1.0 672 +Biological Process GO:0060544 regulation of necroptotic process 0.13439796295657358 1.3927447929058825 1.0 673 +Phenotype MP:0011523 thin placenta labyrinth 0.13438390580945514 1.3924900097730812 1.0 674 +Phenotype MP:0000414 alopecia 0.1343431261840513 1.3917508867755548 1.0 675 +Biological Process GO:2000114 regulation of establishment of cell polarity 0.1342920462069639 1.3908250718519364 1.0 676 +Phenotype MP:0020378 abnormal cell cytoskeleton morphology 0.13419581169493755 1.3890808395229233 1.0 677 +Biological Process GO:0060425 lung morphogenesis 0.1341408139682655 1.388084016129073 1.0 678 +Biological Process GO:0046326 positive regulation of glucose import 0.13409963071568043 1.3873375774652272 1.0 679 +Biological Process GO:0009914 hormone transport 0.13409763463233904 1.387301398832197 1.0 680 +Phenotype MP:0004696 abnormal thyroid follicle morphology 0.13401717062325935 1.3858430038863134 1.0 681 +Phenotype MP:0008346 increased gamma-delta T cell number 0.13400845277195794 1.3856849944803398 1.0 682 +Biological Process GO:0051224 negative regulation of protein transport 0.13400740102124353 1.3856659316975655 1.0 683 +Phenotype MP:0005491 pancreatic islet hyperplasia 0.13388002332127646 1.3833572349774421 1.0 684 +Phenotype MP:0000574 abnormal foot pad morphology 0.1338707492364708 1.383189143944408 1.0 685 +Phenotype MP:0005546 choroidal neovascularization 0.1338699822689654 1.3831752428034343 1.0 686 +Biological Process GO:0043370 regulation of CD4-positive, alpha-beta T cell differentiation 0.13381871169423776 1.3822459733336356 1.0 687 +Phenotype MP:0008701 abnormal interleukin-5 secretion 0.13377860644032635 1.3815190731918612 1.0 688 +Biological Process GO:0043473 pigmentation 0.13368920789230454 1.3798987414174995 1.0 689 +Biological Process GO:0048041 focal adhesion assembly 0.13367773060874222 1.3796907178237063 1.0 690 +Phenotype MP:0008136 enlarged Peyer's patches 0.13353078327262768 1.3770273251497438 1.0 691 +Biological Process GO:0000045 autophagosome assembly 0.13351073749664355 1.3766639992514205 1.0 692 +Phenotype MP:0010601 thick pulmonary valve 0.13350762699169494 1.376607621937537 1.0 693 +Phenotype MP:0000533 kidney hemorrhage 0.13350275213624707 1.3765192661045578 1.0 694 +Biological Process GO:2000107 negative regulation of leukocyte apoptotic process 0.1334837866740306 1.3761755206889466 1.0 695 +Biological Process GO:0007249 canonical NF-kappaB signal transduction 0.13338049496817161 1.3743033780564902 1.0 696 +Biological Process GO:0001936 regulation of endothelial cell proliferation 0.13335110161546893 1.3737706290981115 1.0 697 +Biological Process GO:0052548 regulation of endopeptidase activity 0.13331903896118413 1.3731894995534197 1.0 698 +Phenotype MP:0001574 abnormal oxygen level 0.133304502481828 1.3729260286144698 1.0 699 +Phenotype MP:0005252 abnormal Meibomian gland morphology 0.1332716364508164 1.3723303380185523 1.0 700 +Biological Process GO:0031648 protein destabilization 0.1331174573994478 1.3695358718733914 1.0 701 +Phenotype MP:0000575 increased foot pad pigmentation 0.13310022713817216 1.3692235766466427 1.0 702 +Phenotype MP:0011277 decreased tail pigmentation 0.13309922715135936 1.3692054520747947 1.0 703 +Biological Process GO:0002363 alpha-beta T cell lineage commitment 0.13309382353097976 1.3691075124774368 1.0 704 +Biological Process GO:0071322 cellular response to carbohydrate stimulus 0.13301832662715818 1.367739145374895 1.0 705 +Phenotype MP:0000134 abnormal compact bone thickness 0.13300215005841987 1.3674459481260937 1.0 706 +Biological Process GO:0030101 natural killer cell activation 0.13295319222729107 1.3665585966966 1.0 707 +Phenotype MP:0020916 increased susceptibility to Herpesvirales infection 0.13294559261050387 1.3664208550796972 1.0 708 +Biological Process GO:0001935 endothelial cell proliferation 0.13292468106588284 1.3660418372885788 1.0 709 +Phenotype MP:0002702 decreased circulating free fatty acids level 0.13288775986522638 1.3653726475098293 1.0 710 +Biological Process GO:0046641 positive regulation of alpha-beta T cell proliferation 0.13288061082586788 1.365243072523601 1.0 711 +Biological Process GO:0090162 establishment of epithelial cell polarity 0.1328350731967547 1.364417711608755 1.0 712 +Biological Process GO:0034331 cell junction maintenance 0.13281595524717194 1.3640712023884707 1.0 713 +Biological Process GO:1904892 regulation of receptor signaling pathway via STAT 0.1327953875072594 1.3636984159926673 1.0 714 +Biological Process GO:1902903 regulation of supramolecular fiber organization 0.13278042600849527 1.3634272416573339 1.0 715 +Phenotype MP:0000662 abnormal branching of the mammary ductal tree 0.13277933006626763 1.3634073779117408 1.0 716 +Phenotype MP:0004261 abnormal embryonic neuroepithelium morphology 0.13275104884702715 1.3628947861620195 1.0 717 +Biological Process GO:0006935 chemotaxis 0.13262037746412825 1.3605263920617126 1.0 718 +Phenotype MP:0000382 underdeveloped hair follicles 0.13259504644274833 1.3600672720902238 1.0 719 +Phenotype MP:0005665 increased circulating noradrenaline level 0.13251282166342226 1.3585769635166505 1.0 720 +Phenotype MP:0011409 increased renal glomerulus basement membrane thickness 0.1324755721682498 1.3579018234618907 1.0 721 +Biological Process GO:0060693 regulation of branching involved in salivary gland morphogenesis 0.1323561083124256 1.35573656367006 1.0 722 +Phenotype MP:0003212 increased susceptibility to age related obesity 0.13234669547333788 1.355565957741907 1.0 723 +Biological Process GO:0051222 positive regulation of protein transport 0.13229961391122358 1.3547126133334297 1.0 724 +Biological Process GO:0006605 protein targeting 0.13221551597507242 1.3531883541466843 1.0 725 +Biological Process GO:1905037 autophagosome organization 0.1321747217102408 1.352448965812298 1.0 726 +Biological Process GO:0046850 regulation of bone remodeling 0.13210099523740748 1.3511126874365653 1.0 727 +Biological Process GO:0038065 collagen-activated signaling pathway 0.13209949515067376 1.351085498648238 1.0 728 +Biological Process GO:0048311 mitochondrion distribution 0.13207806799801936 1.3506971355590347 1.0 729 +Phenotype MP:0005660 abnormal circulating adrenaline level 0.13204386425873138 1.3500771992536176 1.0 730 +Biological Process GO:0045648 positive regulation of erythrocyte differentiation 0.13204190185774933 1.3500416311069798 1.0 731 +Phenotype MP:0011202 abnormal ectoplacental cavity morphology 0.13200889371198699 1.3494433647080843 1.0 732 +Biological Process GO:0014044 Schwann cell development 0.1319413883005014 1.3482198418926492 1.0 733 +Phenotype MP:0000494 abnormal cecum morphology 0.1319375882205135 1.3481509661616025 1.0 734 +Biological Process GO:0006911 phagocytosis, engulfment 0.131930386755843 1.3480204409765102 1.0 735 +Phenotype MP:0011269 increased excitatory postsynaptic current amplitude 0.13187384434990412 1.346995620563104 1.0 736 +Biological Process GO:0042177 negative regulation of protein catabolic process 0.1318398573812133 1.3463796131837609 1.0 737 +Phenotype MP:0004759 decreased mitotic index 0.1318047518765606 1.3457433325516652 1.0 738 +Biological Process GO:0034122 negative regulation of toll-like receptor signaling pathway 0.1317407182683713 1.3445827355143305 1.0 739 +Phenotype MP:0003975 increased circulating VLDL triglyceride level 0.13168377348673688 1.3435506221175464 1.0 740 +Biological Process GO:0045061 thymic T cell selection 0.1316768066983105 1.3434243503949928 1.0 741 +Phenotype MP:0008180 abnormal marginal zone B cell morphology 0.13166719834864216 1.3432502008745442 1.0 742 +Biological Process GO:0040017 positive regulation of locomotion 0.13166279734111708 1.3431704334455437 1.0 743 +Biological Process GO:0016322 neuron remodeling 0.13165927034150138 1.3431065072445936 1.0 744 +Biological Process GO:0099518 vesicle cytoskeletal trafficking 0.13159652996510662 1.3419693497889376 1.0 745 +Phenotype MP:0000858 abnormal metastatic potential 0.1315893493168908 1.341839201898149 1.0 746 +Phenotype MP:0011723 ectopic neuron 0.1315081307871867 1.3403671314086554 1.0 747 +Biological Process GO:0071498 cellular response to fluid shear stress 0.1314534674898259 1.3393763694828185 1.0 748 +Biological Process GO:0007098 centrosome cycle 0.13126310113774942 1.335926015356669 1.0 749 +Biological Process GO:0002719 negative regulation of cytokine production involved in immune response 0.13123214280236362 1.3353649013831543 1.0 750 +Phenotype MP:0008723 impaired eosinophil recruitment 0.13117907696273434 1.334403093076564 1.0 751 +Phenotype MP:0003329 amyloid beta deposits 0.13116460761936988 1.3341408389647649 1.0 752 +Phenotype MP:0008596 increased circulating interleukin-6 level 0.13110131688616167 1.3329937063959574 1.0 753 +Biological Process GO:0046425 regulation of receptor signaling pathway via JAK-STAT 0.131074805246304 1.3325131879378576 1.0 754 +Phenotype MP:0000377 abnormal hair follicle morphology 0.13105122812298564 1.3320858570370082 1.0 755 +Phenotype MP:0002915 abnormal synaptic depression 0.13101268474324435 1.3313872655691594 1.0 756 +Biological Process GO:0045060 negative thymic T cell selection 0.13099073385669513 1.33098940990217 1.0 757 +Biological Process GO:0071621 granulocyte chemotaxis 0.13097496888174687 1.330703672712966 1.0 758 +Biological Process GO:0010507 negative regulation of autophagy 0.13095421527809992 1.33032751757213 1.0 759 +Phenotype MP:0002343 abnormal lymph node cortex morphology 0.130941518869795 1.3300973975729582 1.0 760 +Biological Process GO:1905897 regulation of response to endoplasmic reticulum stress 0.1309399356969897 1.3300687028652982 1.0 761 +Biological Process GO:0070646 protein modification by small protein removal 0.13089713403559777 1.3292929308479284 1.0 762 +Biological Process GO:1903047 mitotic cell cycle process 0.13085598424709832 1.3285470987143053 1.0 763 +Biological Process GO:0002250 adaptive immune response 0.13081895250104292 1.327875905321108 1.0 764 +Phenotype MP:0013624 decreased femur compact bone thickness 0.13077355937289192 1.3270531634588714 1.0 765 +Phenotype MP:0009171 enlarged pancreatic islets 0.13075627414131974 1.3267398719058947 1.0 766 +Biological Process GO:0048535 lymph node development 0.13071017674461194 1.3259043653092688 1.0 767 +Phenotype MP:0003080 increased natural killer cell mediated cytotoxicity 0.13070550827684713 1.3258197502140094 1.0 768 +Phenotype MP:0004810 decreased hematopoietic stem cell number 0.13061762456065673 1.324226874480082 1.0 769 +Phenotype MP:0008585 absent photoreceptor outer segment 0.13060925976460225 1.3240752641336833 1.0 770 +Biological Process GO:0032870 cellular response to hormone stimulus 0.13054893551308622 1.3229818984844766 1.0 771 +Phenotype MP:0011868 podocyte microvillus transformation 0.1305330434401928 1.322693857669055 1.0 772 +Phenotype MP:0011353 expanded mesangial matrix 0.1305255045282393 1.322557216315782 1.0 773 +Phenotype MP:0008042 abnormal NK T cell physiology 0.13049895009517853 1.3220759222389697 1.0 774 +Biological Process GO:0008286 insulin receptor signaling pathway 0.13045516420580583 1.3212823112756018 1.0 775 +Biological Process GO:0032735 positive regulation of interleukin-12 production 0.1302234170861808 1.3170819385642507 1.0 776 +Phenotype MP:0001899 absent long-term depression 0.13015735437660325 1.3158845644480313 1.0 777 +Biological Process GO:0030540 female genitalia development 0.13015270207674368 1.3158002423929964 1.0 778 +Biological Process GO:0009725 response to hormone 0.1301007580253477 1.3148587662859634 1.0 779 +Biological Process GO:0070571 negative regulation of neuron projection regeneration 0.13009972488997967 1.3148400409028216 1.0 780 +Phenotype MP:0000549 absent limbs 0.13002978350024286 1.3135723664423156 1.0 781 +Biological Process GO:0019218 regulation of steroid metabolic process 0.12999622620792917 1.3129641468660407 1.0 782 +Biological Process GO:0030010 establishment of cell polarity 0.12995135126692348 1.3121507970478044 1.0 783 +Biological Process GO:0062197 cellular response to chemical stress 0.12991953941972934 1.3115742133341939 1.0 784 +Phenotype MP:0020578 abnormal pancreatic beta cell number 0.12989919569731978 1.3112054872132624 1.0 785 +Biological Process GO:1903532 positive regulation of secretion by cell 0.1298748671041735 1.3107645360639124 1.0 786 +Biological Process GO:0048681 negative regulation of axon regeneration 0.12984207859329366 1.3101702505057213 1.0 787 +Phenotype MP:0004751 increased length of allograft survival 0.1298291992789069 1.3099368153684106 1.0 788 +Phenotype MP:0008120 abnormal myeloid dendritic cell number 0.12980604153047115 1.3095170855579894 1.0 789 +Phenotype MP:0008033 impaired lipolysis 0.1297655107244582 1.3087824723648616 1.0 790 +Phenotype MP:0008134 abnormal Peyer's patch size 0.1297091431487427 1.3077608207161877 1.0 791 +Biological Process GO:0060674 placenta blood vessel development 0.12963689121210853 1.3064512680301759 1.0 792 +Biological Process GO:0010812 negative regulation of cell-substrate adhesion 0.12949473185790528 1.3038746566227728 1.0 793 +Biological Process GO:0030168 platelet activation 0.1294576868815196 1.3032032234323416 1.0 794 +Biological Process GO:0044380 protein localization to cytoskeleton 0.12930871423932566 1.3005031224687496 1.0 795 +Phenotype MP:0009760 abnormal mitotic spindle morphology 0.12928804756692347 1.300128542940283 1.0 796 +Phenotype MP:0000384 distorted hair follicle pattern 0.1292729894625142 1.299855617645903 1.0 797 +Biological Process GO:0002790 peptide secretion 0.12926864180074804 1.2997768170986932 1.0 798 +Phenotype MP:0001188 hyperpigmentation 0.12925277193745244 1.2994891788280316 1.0 799 +Biological Process GO:0043277 apoptotic cell clearance 0.12923030113000733 1.2990818996931404 1.0 800 +Biological Process GO:0002283 neutrophil activation involved in immune response 0.129227242555229 1.2990264636037712 1.0 801 +Biological Process GO:0048483 autonomic nervous system development 0.12922158267589545 1.298923879361341 1.0 802 +Biological Process GO:0015833 peptide transport 0.12922116734257605 1.2989163515234814 1.0 803 +Biological Process GO:0002269 leukocyte activation involved in inflammatory response 0.1291862115225012 1.2982827838960485 1.0 804 +Phenotype MP:0020506 abnormal dendritic spine density 0.12918453534605878 1.2982524035150558 1.0 805 +Phenotype MP:0006058 decreased cerebral infarct size 0.12909082730156718 1.2965539629322624 1.0 806 +Phenotype MP:0011270 decreased excitatory postsynaptic current amplitude 0.12908688541145397 1.296482516919516 1.0 807 +Phenotype MP:0002362 abnormal spleen marginal zone morphology 0.12908533894080354 1.2964544874314712 1.0 808 +Phenotype MP:0002820 abnormal premaxilla morphology 0.12905569421686747 1.2959171824170308 1.0 809 +Phenotype MP:0002916 increased synaptic depression 0.12890195479343547 1.2931306844450712 1.0 810 +Phenotype MP:0008816 petechiae 0.12888954925467977 1.2929058364014652 1.0 811 +Biological Process GO:0002902 regulation of B cell apoptotic process 0.12883873934137746 1.291984916332873 1.0 812 +Biological Process GO:0002292 T cell differentiation involved in immune response 0.12883048822772014 1.2918353664584212 1.0 813 +Biological Process GO:0050433 regulation of catecholamine secretion 0.1286897020639739 1.289283643868331 1.0 814 +Biological Process GO:0035148 tube formation 0.1286806064473116 1.2891187875366406 1.0 815 +Phenotype MP:0003408 increased width of hypertrophic chondrocyte zone 0.1286721758491407 1.2889659845393273 1.0 816 +Biological Process GO:0048266 behavioral response to pain 0.12863253538499309 1.2882475086241127 1.0 817 +Biological Process GO:2000300 regulation of synaptic vesicle exocytosis 0.12862572903332614 1.2881241447874792 1.0 818 +Biological Process GO:0043161 proteasome-mediated ubiquitin-dependent protein catabolic process 0.12861048405705922 1.2878478324760236 1.0 819 +Phenotype MP:0021213 complete cleft palate 0.12857366807983805 1.2871805498521371 1.0 820 +Phenotype MP:0004762 increased anti-double stranded DNA antibody level 0.1285246472491932 1.2862920565683307 1.0 821 +Biological Process GO:0001783 B cell apoptotic process 0.12850221401367867 1.2858854584175745 1.0 822 +Biological Process GO:1902624 positive regulation of neutrophil migration 0.12847979041265845 1.2854790348902057 1.0 823 +Phenotype MP:0006386 absent somites 0.12847072167966345 1.2853146658199002 1.0 824 +Biological Process GO:0007186 G protein-coupled receptor signaling pathway 0.12846574401405797 1.2852244465722595 1.0 825 +Phenotype MP:0004981 decreased neuronal precursor cell number 0.12842114812923033 1.2844161545944708 1.0 826 +Phenotype MP:0002344 abnormal lymph node B cell domain morphology 0.12840460290405642 1.2841162755175004 1.0 827 +Phenotype MP:0000189 hypoglycemia 0.12838508412507443 1.2837625013401668 1.0 828 +Phenotype MP:0004160 retroesophageal right subclavian artery 0.12834743651441427 1.2830801455174907 1.0 829 +Phenotype MP:0010234 abnormal vibrissa follicle morphology 0.12830599036857304 1.2823289419630999 1.0 830 +Biological Process GO:0045606 positive regulation of epidermal cell differentiation 0.12829324036492062 1.2820978505583915 1.0 831 +Biological Process GO:0014033 neural crest cell differentiation 0.1282503170727406 1.2813198740059923 1.0 832 +Biological Process GO:0021783 preganglionic parasympathetic fiber development 0.12823397789603286 1.2810237295185 1.0 833 +Phenotype MP:0003126 abnormal external female genitalia morphology 0.12822208810752278 1.2808082293505487 1.0 834 +Biological Process GO:0061136 regulation of proteasomal protein catabolic process 0.12818971941238833 1.2802215528733403 1.0 835 +Phenotype MP:0002239 abnormal nasal septum morphology 0.12797919368428057 1.2764058138694987 1.0 836 +Biological Process GO:0014059 regulation of dopamine secretion 0.12794784683198968 1.2758376581005622 1.0 837 +Biological Process GO:0042119 neutrophil activation 0.12794146102532333 1.2757219165625242 1.0 838 +Phenotype MP:0008640 abnormal circulating interleukin-1 beta level 0.1278162880442999 1.2734531799562612 1.0 839 +Biological Process GO:0045628 regulation of T-helper 2 cell differentiation 0.1278160489624327 1.2734488466426375 1.0 840 +Phenotype MP:0008111 abnormal granulocyte differentiation 0.1277993897577867 1.2731469017092933 1.0 841 +Biological Process GO:0071347 cellular response to interleukin-1 0.12774357096333455 1.2721351966172227 1.0 842 +Phenotype MP:0006050 pulmonary fibrosis 0.12772973690243827 1.2718844568800043 1.0 843 +Phenotype MP:0000460 mandible hypoplasia 0.12765107705223822 1.2704587619725816 1.0 844 +Biological Process GO:0050435 amyloid-beta metabolic process 0.1275954393512304 1.2694503391649383 1.0 845 +Phenotype MP:0004804 decreased susceptibility to autoimmune diabetes 0.12748191701973943 1.2673927683778874 1.0 846 +Phenotype MP:0001379 abnormal penile erection 0.12735003099183573 1.2650023590666022 1.0 847 +Phenotype MP:0005556 abnormal renal filtration rate 0.12731061371270713 1.264287928337645 1.0 848 +Biological Process GO:0036230 granulocyte activation 0.12729940485127922 1.2640847698442694 1.0 849 +Phenotype MP:0009285 increased gonadal fat pad weight 0.12729795552429335 1.2640585010667713 1.0 850 +Phenotype MP:0001855 abnormal atrial thrombosis 0.12727747894598174 1.2636873669577429 1.0 851 +Biological Process GO:0002293 alpha-beta T cell differentiation involved in immune response 0.12721260745743246 1.2625115834973573 1.0 852 +Biological Process GO:0097300 programmed necrotic cell death 0.12719383982098353 1.2621714236363666 1.0 853 +Biological Process GO:0019221 cytokine-mediated signaling pathway 0.12718022949708685 1.261924739089949 1.0 854 +Biological Process GO:0018107 peptidyl-threonine phosphorylation 0.12716459757389198 1.2616414134386102 1.0 855 +Biological Process GO:0018210 peptidyl-threonine modification 0.12716459757389198 1.2616414134386102 1.0 855 +Biological Process GO:0048863 stem cell differentiation 0.127149685188099 1.2613711292665897 1.0 857 +Biological Process GO:0003197 endocardial cushion development 0.1271424163475997 1.2612393829073436 1.0 858 +Phenotype MP:0000630 mammary gland hyperplasia 0.12713523269496008 1.2611091805619414 1.0 859 +Phenotype MP:0009378 abnormal endoplasmic reticulum morphology 0.12708995988844907 1.2602886195066723 1.0 860 +Phenotype MP:0001096 abnormal glossopharyngeal ganglion morphology 0.127076333023025 1.2600416351481998 1.0 861 +Biological Process GO:0035050 embryonic heart tube development 0.12701345419758736 1.2589019683298268 1.0 862 +Phenotype MP:0011518 abnormal cell chemotaxis 0.1269861222207942 1.2584065814199268 1.0 863 +Biological Process GO:2000515 negative regulation of CD4-positive, alpha-beta T cell activation 0.12694741127471987 1.2577049528439848 1.0 864 +Biological Process GO:0090276 regulation of peptide hormone secretion 0.12694078578258505 1.2575848670521639 1.0 865 +Biological Process GO:0032733 positive regulation of interleukin-10 production 0.1268802772376394 1.2564881611194019 1.0 866 +Biological Process GO:0000278 mitotic cell cycle 0.12683536786586658 1.2556741872500234 1.0 867 +Biological Process GO:0010498 proteasomal protein catabolic process 0.12679228388373787 1.2548932982226968 1.0 868 +Biological Process GO:0048486 parasympathetic nervous system development 0.12677896534080058 1.2546519021509817 1.0 869 +Phenotype MP:0011942 decreased fluid intake 0.1267574670000604 1.2542622487911883 1.0 870 +Phenotype MP:0008062 abnormal podocyte slit junction morphology 0.12674961431734943 1.2541199204022813 1.0 871 +Phenotype MP:0003075 abnormal response to CNS ischemic injury 0.1267290916235171 1.2537479504581617 1.0 872 +Phenotype MP:0009503 abnormal mammary gland duct morphology 0.12659952100819727 1.2513995075620301 1.0 873 +Biological Process GO:0045582 positive regulation of T cell differentiation 0.12656398826861104 1.2507554833775698 1.0 874 +Phenotype MP:0003704 abnormal hair follicle development 0.12652104882808934 1.249977214139532 1.0 875 +Biological Process GO:1904018 positive regulation of vasculature development 0.12651972854084703 1.2499532841829797 1.0 876 +Biological Process GO:0045766 positive regulation of angiogenesis 0.12651972854084703 1.2499532841829797 1.0 876 +Phenotype MP:0011186 abnormal visceral endoderm morphology 0.12647298676615926 1.2491060983573423 1.0 878 +Phenotype MP:0001272 increased metastatic potential 0.12637172868162438 1.2472708147267533 1.0 879 +Biological Process GO:1901524 regulation of mitophagy 0.12635423982799532 1.246953832562508 1.0 880 +Biological Process GO:1903146 regulation of autophagy of mitochondrion 0.12635423982799532 1.246953832562508 1.0 880 +Phenotype MP:0001852 conjunctivitis 0.12632759658853132 1.2464709288864337 1.0 882 +Biological Process GO:0060070 canonical Wnt signaling pathway 0.12631261658870518 1.2461994192228505 1.0 883 +Biological Process GO:0050767 regulation of neurogenesis 0.12628690751518468 1.245733447127817 1.0 884 +Phenotype MP:0002534 abnormal type IV hypersensitivity reaction 0.1262374695918146 1.2448373941172528 1.0 885 +Biological Process GO:1903046 meiotic cell cycle process 0.12620354112986565 1.2442224471615408 1.0 886 +Phenotype MP:0002031 increased adrenal gland tumor incidence 0.126188086994393 1.243942343879041 1.0 887 +Phenotype MP:0031584 thick semilunar valve 0.1261617273683303 1.2434645806422238 1.0 888 +Biological Process GO:0043525 positive regulation of neuron apoptotic process 0.12616027122384543 1.2434381882988454 1.0 889 +Phenotype MP:0009549 decreased platelet aggregation 0.12613936559698735 1.2430592777660612 1.0 890 +Biological Process GO:0051493 regulation of cytoskeleton organization 0.12609340942940084 1.2422263309205468 1.0 891 +Biological Process GO:0007498 mesoderm development 0.1260690495728629 1.2417848131281364 1.0 892 +Phenotype MP:0008354 decreased mature gamma-delta T cell number 0.12606385196435987 1.2416906074570766 1.0 893 +Biological Process GO:0008584 male gonad development 0.1260621830741957 1.2416603591384991 1.0 894 +Phenotype MP:0001084 abnormal petrosal ganglion morphology 0.12597636523925138 1.240104927111423 1.0 895 +Biological Process GO:0009409 response to cold 0.12596163609671485 1.2398379641887678 1.0 896 +Phenotype MP:0011349 abnormal renal glomerulus basement membrane thickness 0.12596055442328946 1.2398183590625167 1.0 897 +Biological Process GO:0035774 positive regulation of insulin secretion involved in cellular response to glucose stimulus 0.1259040926888867 1.2387950008054447 1.0 898 +Biological Process GO:0007289 spermatid nucleus differentiation 0.12588678126018182 1.238481234434393 1.0 899 +Biological Process GO:0070647 protein modification by small protein conjugation or removal 0.1257798982486492 1.2365440000658494 1.0 900 +Phenotype MP:0008135 small Peyer's patches 0.12577196984378214 1.2364002992271848 1.0 901 +Phenotype MP:0002445 abnormal mononuclear cell differentiation 0.12568536960967192 1.2348306863632073 1.0 902 +Phenotype MP:0030051 increased foot pigmentation 0.12559837948956354 1.2332540068892548 1.0 903 +Biological Process GO:0060600 dichotomous subdivision of an epithelial terminal unit 0.12559177329706062 1.2331342708996118 1.0 904 +Phenotype MP:0000015 abnormal ear pigmentation 0.12557606642190633 1.2328495867581848 1.0 905 +Biological Process GO:0046626 regulation of insulin receptor signaling pathway 0.12556389811658852 1.2326290385257708 1.0 906 +Phenotype MP:0005342 abnormal intestinal lipid absorption 0.1255560428962179 1.232486664142263 1.0 907 +Phenotype MP:0009165 abnormal endocrine pancreas morphology 0.12554791807102061 1.2323394032222632 1.0 908 +Phenotype MP:0014126 increased mammary gland apoptosis 0.12548663319822717 1.2312286264940921 1.0 909 +Biological Process GO:0030325 adrenal gland development 0.12548400687211791 1.231181024830096 1.0 910 +Phenotype MP:0000296 absent trabeculae carneae 0.12534076388866466 1.2285847728474908 1.0 911 +Phenotype MP:0004996 abnormal CNS synapse formation 0.12529603127765399 1.2277740027334942 1.0 912 +Biological Process GO:0000910 cytokinesis 0.12521779123924082 1.226355916835307 1.0 913 +Phenotype MP:0011294 renal glomerulus hypertrophy 0.12517980186218047 1.2256673665612685 1.0 914 +Phenotype MP:0009384 cardiac valve regurgitation 0.12512531430339224 1.224679789863821 1.0 915 +Biological Process GO:0050922 negative regulation of chemotaxis 0.12512377783208217 1.224651941611929 1.0 916 +Biological Process GO:0016601 Rac protein signal transduction 0.12511360239815672 1.2244675137965768 1.0 917 +Biological Process GO:0046633 alpha-beta T cell proliferation 0.1250952632953608 1.2241351210269955 1.0 918 +Biological Process GO:0001816 cytokine production 0.12502409244393964 1.2228451628059966 1.0 919 +Biological Process GO:0051047 positive regulation of secretion 0.12502224589451982 1.2228116944470127 1.0 920 +Phenotype MP:0001690 failure of somite differentiation 0.12499631159773505 1.2223416402229124 1.0 921 +Biological Process GO:0032434 regulation of proteasomal ubiquitin-dependent protein catabolic process 0.12498850338696266 1.2222001178794808 1.0 922 +Biological Process GO:0002089 lens morphogenesis in camera-type eye 0.1249698570033928 1.22186215570399 1.0 923 +Biological Process GO:0070059 intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress 0.12489577899710047 1.2205195058508005 1.0 924 +Biological Process GO:0002224 toll-like receptor signaling pathway 0.12488996664225105 1.2204141580184835 1.0 925 +Biological Process GO:1904407 positive regulation of nitric oxide metabolic process 0.12484041063516815 1.2195159647629588 1.0 926 +Phenotype MP:0001155 arrest of spermatogenesis 0.12483263526010102 1.2193750375604746 1.0 927 +Phenotype MP:0005215 abnormal pancreatic islet morphology 0.12481939599273251 1.2191350783434498 1.0 928 +Biological Process GO:0010935 regulation of macrophage cytokine production 0.12478156139174845 1.2184493333565198 1.0 929 +Phenotype MP:0011338 abnormal mesangial matrix morphology 0.12476338694847933 1.2181199250097188 1.0 930 +Biological Process GO:0061900 glial cell activation 0.12475517234876865 1.2179710369436438 1.0 931 +Phenotype MP:0009333 abnormal splenocyte physiology 0.12474784337821998 1.2178382007386255 1.0 932 +Phenotype MP:0001870 salivary gland inflammation 0.12474513429939882 1.2177890991973777 1.0 933 +Biological Process GO:1903530 regulation of secretion by cell 0.1247258631416206 1.217439813107528 1.0 934 +Biological Process GO:0042531 positive regulation of tyrosine phosphorylation of STAT protein 0.12471707176179136 1.2172804710108944 1.0 935 +Phenotype MP:0002026 increased leukemia incidence 0.1247034772085146 1.21703407230398 1.0 936 +Biological Process GO:0046928 regulation of neurotransmitter secretion 0.12469957642671359 1.216963371371617 1.0 937 +Biological Process GO:0007044 cell-substrate junction assembly 0.12469524645478591 1.216884891449384 1.0 938 +Phenotype MP:0009697 abnormal copulation 0.12462399375691291 1.2155934497769258 1.0 939 +Phenotype MP:0001906 increased dopamine level 0.12459635507383127 1.2150925038735565 1.0 940 +Phenotype MP:0008067 retina ganglion cell degeneration 0.12457808918153446 1.2147614380304248 1.0 941 +Phenotype MP:0002871 albuminuria 0.12456223167126868 1.2144740236560925 1.0 942 +Phenotype MP:0004978 decreased B-1 B cell number 0.12453803647065531 1.214035490221172 1.0 943 +Biological Process GO:0062207 regulation of pattern recognition receptor signaling pathway 0.12443255793507646 1.2121237117136525 1.0 944 +Biological Process GO:0030968 endoplasmic reticulum unfolded protein response 0.1244214984823977 1.2119232612255968 1.0 945 +Biological Process GO:0090559 regulation of membrane permeability 0.12440930880072532 1.2117023255507995 1.0 946 +Phenotype MP:0008235 increased susceptibility to neuronal excitotoxicity 0.12437651929606397 1.2111080219805066 1.0 947 +Biological Process GO:0032673 regulation of interleukin-4 production 0.12436229134022392 1.2108501429719323 1.0 948 +Biological Process GO:0045429 positive regulation of nitric oxide biosynthetic process 0.12434194537197307 1.210481376145552 1.0 949 +Phenotype MP:0009789 decreased susceptibility to bacterial infection induced morbidity/mortality 0.12431606694117503 1.210012334481895 1.0 950 +Biological Process GO:0014037 Schwann cell differentiation 0.12430887946687452 1.2098820628696123 1.0 951 +Phenotype MP:0008719 impaired neutrophil recruitment 0.12429721245202885 1.2096706004321935 1.0 952 +Phenotype MP:0005174 abnormal tail pigmentation 0.12428451897374793 1.2094405335391525 1.0 953 +Phenotype MP:0005590 increased vasodilation 0.12428369206586898 1.2094255459902452 1.0 954 +Biological Process GO:0051438 regulation of ubiquitin-protein transferase activity 0.1242730027059532 1.2092318033635205 1.0 955 +Phenotype MP:0001861 lung inflammation 0.12421638687352177 1.2082056521088242 1.0 956 +Phenotype MP:0014146 decreased white adipose tissue mass 0.12421388578897519 1.2081603204244642 1.0 957 +Phenotype MP:0010614 abnormal mitral valve cusp morphology 0.12420908726109403 1.2080733480141952 1.0 958 +Biological Process GO:0002720 positive regulation of cytokine production involved in immune response 0.1241535745385891 1.2070671904182788 1.0 959 +Biological Process GO:0040013 negative regulation of locomotion 0.12414349819982085 1.206884558683908 1.0 960 +Phenotype MP:0008388 hypochromic microcytic anemia 0.12411223119531556 1.2063178501409832 1.0 961 +Biological Process GO:0071559 response to transforming growth factor beta 0.12399602468212068 1.2042116290682259 1.0 962 +Phenotype MP:0030091 macrodontia 0.12390908063222361 1.2026357846081401 1.0 963 +Phenotype MP:0004831 long incisors 0.12390908063222361 1.2026357846081401 1.0 963 +Phenotype MP:0001245 thick dermal layer 0.1238998584826061 1.2024686348905682 1.0 965 +Phenotype MP:0010605 thick pulmonary valve cusps 0.12389622050462723 1.202402697227776 1.0 966 +Biological Process GO:0032642 regulation of chemokine production 0.12387961989587493 1.2021018143339224 1.0 967 +Biological Process GO:0090174 organelle membrane fusion 0.12383970478244533 1.201378360452418 1.0 968 +Biological Process GO:0006906 vesicle fusion 0.12383970478244533 1.201378360452418 1.0 968 +Phenotype MP:0010300 increased skin tumor incidence 0.1237947633705061 1.2005638058610835 1.0 970 +Phenotype MP:0009129 abnormal white fat cell number 0.12378864094649344 1.2004528380838284 1.0 971 +Phenotype MP:0009660 abnormal induced retina neovascularization 0.12378493382115541 1.2003856471382293 1.0 972 +Biological Process GO:0009895 negative regulation of catabolic process 0.12377927138274392 1.2002830165129952 1.0 973 +Phenotype MP:0001802 arrested B cell differentiation 0.12366744672656649 1.19825621576991 1.0 974 +Phenotype MP:0012754 abnormal cranial neural crest cell morphology 0.12362455684055729 1.1974788446980384 1.0 975 +Phenotype MP:0005671 abnormal response to transplant 0.12361853447956406 1.197369690544085 1.0 976 +Phenotype MP:0005165 increased susceptibility to injury 0.12361619758144715 1.197327334707709 1.0 977 +Biological Process GO:0060602 branch elongation of an epithelium 0.12354741790824708 1.1960807161397082 1.0 978 +Biological Process GO:0021987 cerebral cortex development 0.12354477979299527 1.1960329007997332 1.0 979 +Biological Process GO:0071676 negative regulation of mononuclear cell migration 0.123535677270322 1.1958679192978998 1.0 980 +Phenotype MP:0008902 abnormal renal fat pad morphology 0.12352773748899237 1.1957240122630033 1.0 981 +Phenotype MP:0011348 abnormal renal glomerulus basement membrane morphology 0.12340389106066008 1.1934793191733677 1.0 982 +Biological Process GO:0035710 CD4-positive, alpha-beta T cell activation 0.1233621270416071 1.1927223542271352 1.0 983 +Biological Process GO:0060563 neuroepithelial cell differentiation 0.12335208657871899 1.1925403727363069 1.0 984 +Phenotype MP:0030386 facial bone hypoplasia 0.12332556377003534 1.1920596518453486 1.0 985 +Biological Process GO:0048265 response to pain 0.1232943131585259 1.191493240422373 1.0 986 +Phenotype MP:0002928 abnormal bile duct morphology 0.12326383255967133 1.1909407853331293 1.0 987 +Biological Process GO:1905898 positive regulation of response to endoplasmic reticulum stress 0.12326217630435898 1.1909107660188516 1.0 988 +Biological Process GO:0007033 vacuole organization 0.12325132869504096 1.190714155151642 1.0 989 +Phenotype MP:0001407 short stride length 0.1232453982953341 1.1906066677786105 1.0 990 +Phenotype MP:0006094 increased fat cell size 0.1231781304984787 1.189387451683406 1.0 991 +Biological Process GO:0106014 regulation of inflammatory response to wounding 0.12317163442838086 1.189269711641527 1.0 992 +Biological Process GO:1904893 negative regulation of receptor signaling pathway via STAT 0.12316283890959956 1.1891102945271699 1.0 993 +Biological Process GO:0120192 tight junction assembly 0.12315154836311581 1.1889056555076072 1.0 994 +Phenotype MP:0005217 abnormal pancreatic beta cell morphology 0.12313921348490064 1.1886820881729336 1.0 995 +Phenotype MP:0002334 abnormal airway responsiveness 0.12311721705126832 1.1882834069736776 1.0 996 +Phenotype MP:0013500 abnormal fibroblast apoptosis 0.12310037892891068 1.1879782191906498 1.0 997 +Phenotype MP:0002731 megacolon 0.12309665366531419 1.187910699492547 1.0 998 +Phenotype MP:0001723 disorganized yolk sac vascular plexus 0.1230241838108107 1.1865971970863702 1.0 999 +Biological Process GO:0060977 coronary vasculature morphogenesis 0.1229223397374608 1.1847512925193406 1.0 1000 +Phenotype MP:0005222 abnormal somite size 0.12290071571783201 1.1843593612534613 1.0 1001 +Phenotype MP:0011200 abnormal extraembryonic coelom morphology 0.12289795775606926 1.1843093737181432 1.0 1002 +Phenotype MP:0008053 abnormal NK cell differentiation 0.12288139230011796 1.184009127962159 1.0 1003 +Phenotype MP:0004039 abnormal cardiac muscle cell glucose uptake 0.12280243579053018 1.182578056159443 1.0 1004 +Biological Process GO:0001678 intracellular glucose homeostasis 0.12273431040275051 1.1813432963909378 1.0 1005 +Biological Process GO:0002577 regulation of antigen processing and presentation 0.12272838293350408 1.1812358621319472 1.0 1006 +Phenotype MP:0009625 abnormal abdominal lymph node morphology 0.12264514519790892 1.179727193917584 1.0 1007 +Biological Process GO:0045580 regulation of T cell differentiation 0.12262265996150601 1.1793196532605614 1.0 1008 +Phenotype MP:0012701 increased embryonic neuroepithelium apoptosis 0.1225667286854164 1.1783059094600863 1.0 1009 +Phenotype MP:0010449 heart right ventricle outflow tract stenosis 0.12254572215867143 1.177925170135936 1.0 1010 +Biological Process GO:0032878 regulation of establishment or maintenance of cell polarity 0.12249667137789078 1.1770361340115822 1.0 1011 +Biological Process GO:0048009 insulin-like growth factor receptor signaling pathway 0.12243204929713636 1.1758648710203063 1.0 1012 +Biological Process GO:0071216 cellular response to biotic stimulus 0.1224174242012126 1.1755997939228287 1.0 1013 +Biological Process GO:0032868 response to insulin 0.12238281204785406 1.1749724551896286 1.0 1014 +Phenotype MP:0000273 overriding aortic valve 0.12238096281939859 1.17493893827363 1.0 1015 +Biological Process GO:0030098 lymphocyte differentiation 0.12233018867095113 1.1740186664362675 1.0 1016 +Phenotype MP:0000373 belly spot 0.12228993917450137 1.1732891519257667 1.0 1017 +Phenotype MP:0001200 thick skin 0.12227937325441818 1.1730976466226606 1.0 1018 +Phenotype MP:0002940 variable body spotting 0.12223298288843099 1.172256830013257 1.0 1019 +Phenotype MP:0000798 abnormal frontal lobe morphology 0.12217149121325621 1.171142305031038 1.0 1020 +Phenotype MP:0004979 abnormal neuronal precursor cell number 0.12212968073447628 1.1703844980110416 1.0 1021 +Biological Process GO:0050810 regulation of steroid biosynthetic process 0.12209676030892225 1.169787821524331 1.0 1022 +Biological Process GO:0051451 myoblast migration 0.12208149665917623 1.1695111707595984 1.0 1023 +Phenotype MP:0001666 abnormal intestinal absorption 0.12207428643497087 1.1693804868095934 1.0 1024 +Biological Process GO:0042698 ovulation cycle 0.12206479040349705 1.169208373035177 1.0 1025 +Biological Process GO:0090314 positive regulation of protein targeting to membrane 0.12204516618309524 1.1688526877520518 1.0 1026 +Biological Process GO:0042098 T cell proliferation 0.12195179682589508 1.1671603858123576 1.0 1027 +Biological Process GO:0050921 positive regulation of chemotaxis 0.12188148037997981 1.165885913529554 1.0 1028 +Phenotype MP:0005070 impaired natural killer cell mediated cytotoxicity 0.1218486485730359 1.1652908432383906 1.0 1029 +Biological Process GO:0050821 protein stabilization 0.12182300055356632 1.1648259777364824 1.0 1030 +Phenotype MP:0008591 increased circulating interleukin-1 level 0.12177946923629523 1.1640369808443076 1.0 1031 +Phenotype MP:0002423 abnormal mast cell physiology 0.12177155053663924 1.1638934559107583 1.0 1032 +Biological Process GO:0002686 negative regulation of leukocyte migration 0.12174079199981735 1.1633359632484255 1.0 1033 +Phenotype MP:0008345 abnormal gamma-delta T cell number 0.12172421471978734 1.163035503183251 1.0 1034 +Biological Process GO:1901021 positive regulation of calcium ion transmembrane transporter activity 0.12171693735401745 1.1629036023050878 1.0 1035 +Biological Process GO:0060670 branching involved in labyrinthine layer morphogenesis 0.12169103838746498 1.1624341884347655 1.0 1036 +Phenotype MP:0011255 abnormal anterior visceral endoderm cell migration 0.12168951221970703 1.162406526932807 1.0 1037 +Biological Process GO:0060249 anatomical structure homeostasis 0.1216807980861847 1.162248584910876 1.0 1038 +Biological Process GO:0001894 tissue homeostasis 0.1216807980861847 1.162248584910876 1.0 1038 +Biological Process GO:0002385 mucosal immune response 0.12157353576529573 1.1603044756319894 1.0 1040 +Biological Process GO:1902622 regulation of neutrophil migration 0.12155627846042472 1.1599916902451897 1.0 1041 +Biological Process GO:0140013 meiotic nuclear division 0.12152010138145974 1.1593359875313576 1.0 1042 +Phenotype MP:0008140 podocyte foot process effacement 0.12150966471870828 1.1591468249929417 1.0 1043 +Phenotype MP:0012361 decreased large unstained cell number 0.1214619717070502 1.1582823981771313 1.0 1044 +Biological Process GO:0070372 regulation of ERK1 and ERK2 cascade 0.12133297515204045 1.155944360015544 1.0 1045 +Biological Process GO:0043383 negative T cell selection 0.12132473515646225 1.1557950116541735 1.0 1046 +Phenotype MP:0011016 increased core body temperature 0.12129530982954873 1.1552616831692708 1.0 1047 +Biological Process GO:0006979 response to oxidative stress 0.12126104491884915 1.1546406381435883 1.0 1048 +Phenotype MP:0030022 decreased muscle cell glucose uptake 0.12121726406732614 1.1538471184902932 1.0 1049 +Biological Process GO:0080164 regulation of nitric oxide metabolic process 0.12118856364201258 1.1533269287097847 1.0 1050 +Biological Process GO:0002318 myeloid progenitor cell differentiation 0.12114236808435497 1.1524896429645093 1.0 1051 +Phenotype MP:0000848 abnormal pons morphology 0.12111988343996494 1.1520821130376082 1.0 1052 +Biological Process GO:0032731 positive regulation of interleukin-1 beta production 0.12109340787616063 1.151602248451152 1.0 1053 +Phenotype MP:0020508 decreased dendritic spine density 0.12106615164696732 1.1511082344521728 1.0 1054 +Phenotype MP:0011519 abnormal placenta labyrinth size 0.12105996761497817 1.150996150041996 1.0 1055 +Biological Process GO:0070527 platelet aggregation 0.12102760018648462 1.1504094965224143 1.0 1056 +Phenotype MP:0003828 pulmonary edema 0.12102327330798535 1.150331072667986 1.0 1057 +Phenotype MP:0020409 abnormal cardiac thrombosis 0.12094980677886269 1.1489995057228444 1.0 1058 +Biological Process GO:0001910 regulation of leukocyte mediated cytotoxicity 0.12092681448986309 1.148582774833409 1.0 1059 +Biological Process GO:0002701 negative regulation of production of molecular mediator of immune response 0.12085067107704717 1.1472026898776233 1.0 1060 +Phenotype MP:0011947 abnormal fluid intake 0.12077622603920701 1.1458533876470487 1.0 1061 +Phenotype MP:0003584 bifid ureter 0.12075754063282096 1.145514718190395 1.0 1062 +Biological Process GO:0032271 regulation of protein polymerization 0.1206799599905054 1.1441085837217613 1.0 1063 +Phenotype MP:0030245 round head 0.12067314000588292 1.143984972790387 1.0 1064 +Phenotype MP:0010209 abnormal circulating chemokine level 0.12065716439479379 1.1436954178609688 1.0 1065 +Biological Process GO:0010506 regulation of autophagy 0.12065661472616374 1.1436854552210114 1.0 1066 +Biological Process GO:0090087 regulation of peptide transport 0.12062265325599042 1.1430699099974757 1.0 1067 +Biological Process GO:0002791 regulation of peptide secretion 0.12062265325599042 1.1430699099974757 1.0 1067 +Phenotype MP:0011451 increased susceptibility to dopaminergic neuron neurotoxicity 0.12061339439908203 1.1429020949671995 1.0 1069 +Biological Process GO:0099504 synaptic vesicle cycle 0.12058384248142262 1.1423664720489706 1.0 1070 +Biological Process GO:0072538 T-helper 17 type immune response 0.1205531620279432 1.1418103946324514 1.0 1071 +Phenotype MP:0006320 abnormal interscapular fat pad morphology 0.12054100161036596 1.1415899893638435 1.0 1072 +Phenotype MP:0003822 decreased left ventricle systolic pressure 0.12051723391936953 1.1411592044598724 1.0 1073 +Biological Process GO:0032435 negative regulation of proteasomal ubiquitin-dependent protein catabolic process 0.1204474589209108 1.139894545809811 1.0 1074 +Phenotype MP:0008399 abnormal alpha-beta intraepithelial T cell morphology 0.12043833508407209 1.1397291779927605 1.0 1075 +Phenotype MP:0005088 increased acute inflammation 0.12037893431527247 1.1386525502931244 1.0 1076 +Biological Process GO:0043217 myelin maintenance 0.12036610507083056 1.138420022664094 1.0 1077 +Biological Process GO:1901796 regulation of signal transduction by p53 class mediator 0.12032560432997219 1.1376859543962068 1.0 1078 +Phenotype MP:0008143 abnormal dendrite morphology 0.12029790313274924 1.1371838754358499 1.0 1079 +Phenotype MP:0011497 abnormal glomerular capsule visceral layer morphology 0.12028938029163372 1.1370294005526118 1.0 1080 +Phenotype MP:0005326 abnormal podocyte morphology 0.12028938029163372 1.1370294005526118 1.0 1080 +Phenotype MP:0006054 spinal hemorrhage 0.12028913924576423 1.137025031641818 1.0 1082 +Biological Process GO:1903909 regulation of receptor clustering 0.12026224737854807 1.1365376216347602 1.0 1083 +Phenotype MP:0005608 cardiac interstitial fibrosis 0.12024045245513637 1.13614259277014 1.0 1084 +Biological Process GO:1905477 positive regulation of protein localization to membrane 0.12024009666260849 1.1361361440978655 1.0 1085 +Biological Process GO:0031647 regulation of protein stability 0.12021444018105398 1.1356711252222687 1.0 1086 +Biological Process GO:0043954 cellular component maintenance 0.12009699254497186 1.133542409031922 1.0 1087 +Phenotype MP:0001142 abnormal vagina orifice morphology 0.12000077237485596 1.1317984366473228 1.0 1088 +Biological Process GO:0047496 vesicle transport along microtubule 0.11997806629214502 1.1313868931927376 1.0 1089 +Phenotype MP:0009865 abnormal aorta smooth muscle morphology 0.11990849560345929 1.130125937618669 1.0 1090 +Biological Process GO:0002220 innate immune response activating cell surface receptor signaling pathway 0.11989781250623044 1.1299323085019604 1.0 1091 +Phenotype MP:0000557 absent hindlimb 0.11985979962394855 1.1292433322002269 1.0 1092 +Phenotype MP:0010617 thick mitral valve cusps 0.11984304101443699 1.1289395855724957 1.0 1093 +Phenotype MP:0000372 irregular coat pigmentation 0.11983827028441207 1.1288531169931135 1.0 1094 +Biological Process GO:0035305 negative regulation of dephosphorylation 0.11982965019575997 1.128696879516668 1.0 1095 +Phenotype MP:0008778 abnormal lymphangiogenesis 0.11981535152297429 1.1284377187768293 1.0 1096 +Phenotype MP:0002962 increased urine protein level 0.11980917159386617 1.1283257087305951 1.0 1097 +Phenotype MP:0013205 abnormal nonmotile primary cilium morphology 0.11979855824878893 1.1281333438584418 1.0 1098 +Biological Process GO:0010638 positive regulation of organelle organization 0.11973976542848042 1.1270677351102216 1.0 1099 +Phenotype MP:0002938 white spotting 0.11972815144018267 1.1268572337689549 1.0 1100 +Phenotype MP:0013600 testis degeneration 0.11972626572073752 1.12682305546067 1.0 1101 +Phenotype MP:0030021 increased muscle cell glucose uptake 0.11961211643379377 1.1247541212246175 1.0 1102 +Phenotype MP:0004940 abnormal B-1 B cell morphology 0.11960771806147152 1.12467440155817 1.0 1103 +Phenotype MP:0002694 abnormal pancreas secretion 0.1194912001868571 1.1225625371185732 1.0 1104 +Phenotype MP:0002803 abnormal operant conditioning behavior 0.11945306744448125 1.1218713883753066 1.0 1105 +Phenotype MP:0011719 abnormal natural killer cell mediated cytotoxicity 0.11942176177166597 1.1213039789765769 1.0 1106 +Phenotype MP:0020337 abnormal pyramidal neuron dendrite morphology 0.11941890460360327 1.1212521933458353 1.0 1107 +Biological Process GO:0042832 defense response to protozoan 0.11938678844836603 1.1206700941064995 1.0 1108 +Biological Process GO:0046716 muscle cell cellular homeostasis 0.11935009693186427 1.1200050673096122 1.0 1109 +Biological Process GO:0045744 negative regulation of G protein-coupled receptor signaling pathway 0.1193492463899557 1.1199896513983878 1.0 1110 +Biological Process GO:0150115 cell-substrate junction organization 0.11929995796554582 1.1190963080282017 1.0 1111 +Phenotype MP:0001876 decreased inflammatory response 0.11928357634030928 1.1187993941691539 1.0 1112 +Phenotype MP:0008557 abnormal interferon-alpha secretion 0.11924752562311358 1.1181459817384902 1.0 1113 +Phenotype MP:0001898 abnormal long-term depression 0.11918592905164838 1.117029555530847 1.0 1114 +Biological Process GO:0001946 lymphangiogenesis 0.11918104754214998 1.1169410790944603 1.0 1115 +Phenotype MP:0004565 decreased myocardial fiber size 0.11916423119342268 1.1166362859543644 1.0 1116 +Biological Process GO:0006879 intracellular iron ion homeostasis 0.11908089927745302 1.115125910738526 1.0 1117 +Biological Process GO:0045579 positive regulation of B cell differentiation 0.11905705010513501 1.1146936490010124 1.0 1118 +Phenotype MP:0010149 abnormal synaptic dopamine release 0.11904983163509852 1.1145628155968779 1.0 1119 +Phenotype MP:0031227 abnormal angiotensin II level 0.11904810018623091 1.1145314334136325 1.0 1120 +Phenotype MP:0001025 abnormal sympathetic neuron morphology 0.11904767448248732 1.114523717613796 1.0 1121 +Phenotype MP:0010172 abnormal mammary gland epithelium physiology 0.11903226836720149 1.1142444846881001 1.0 1122 +Biological Process GO:0034405 response to fluid shear stress 0.11898569096095535 1.113400278009379 1.0 1123 +Phenotype MP:0020101 abnormal hepatic glucose production 0.11896738506054105 1.113068487026685 1.0 1124 +Phenotype MP:0013559 abnormal exocrine gland physiology 0.11896111447957747 1.112954833932716 1.0 1125 +Phenotype MP:0000596 abnormal liver development 0.11894971144822031 1.1127481561460977 1.0 1126 +Biological Process GO:0007422 peripheral nervous system development 0.11893491469710593 1.1124799678307562 1.0 1127 +Biological Process GO:0099172 presynapse organization 0.11892374097183867 1.1122774461736469 1.0 1128 +Biological Process GO:0032649 regulation of type II interferon production 0.118906750463321 1.1119694964202904 1.0 1129 +Phenotype MP:0020519 renal glomerular immunoglobulin deposits 0.11890128174510917 1.1118703769370355 1.0 1130 +Biological Process GO:0045428 regulation of nitric oxide biosynthetic process 0.1188951994239531 1.111760136016471 1.0 1131 +Phenotype MP:0008123 abnormal plasmacytoid dendritic cell number 0.11888682342224188 1.1116083225696634 1.0 1132 +Phenotype MP:0004242 abnormal plasmacytoid dendritic cell morphology 0.11888682342224188 1.1116083225696634 1.0 1132 +Phenotype MP:0001619 abnormal vascular permeability 0.1188462217736882 1.110872425368884 1.0 1134 +Biological Process GO:0071887 leukocyte apoptotic process 0.1188206362372276 1.110408692359696 1.0 1135 +Biological Process GO:0050852 T cell receptor signaling pathway 0.11877715873421812 1.1096206708408345 1.0 1136 +Phenotype MP:0008549 abnormal circulating interferon-alpha level 0.11870825517019956 1.1083718067751809 1.0 1137 +Biological Process GO:0051932 synaptic transmission, GABAergic 0.11862931330694337 1.1069410004344549 1.0 1138 +Biological Process GO:0072698 protein localization to microtubule cytoskeleton 0.11861202676687499 1.1066276851652321 1.0 1139 +Phenotype MP:0030530 abnormal outer ear skin morphology 0.11857588271627417 1.1059725810842536 1.0 1140 +Phenotype MP:0001881 abnormal mammary gland physiology 0.11856991372459025 1.105864394238937 1.0 1141 +Phenotype MP:0013555 abnormal apocrine gland physiology 0.11856991372459025 1.105864394238937 1.0 1141 +Biological Process GO:0031663 lipopolysaccharide-mediated signaling pathway 0.11856424448228808 1.1057616402944712 1.0 1143 +Biological Process GO:0033084 regulation of immature T cell proliferation in thymus 0.1185365467699554 1.1052596244970914 1.0 1144 +Biological Process GO:0033083 regulation of immature T cell proliferation 0.1185365467699554 1.1052596244970914 1.0 1144 +Biological Process GO:0030901 midbrain development 0.11846725329653152 1.1040036933972124 1.0 1146 +Phenotype MP:0009719 reduced cerebellar foliation 0.11846132341738647 1.1038962154592653 1.0 1147 +Biological Process GO:1903432 regulation of TORC1 signaling 0.11842427378630593 1.1032246979033704 1.0 1148 +Phenotype MP:0003300 gastrointestinal ulcer 0.1184231785831219 1.103204847552803 1.0 1149 +Biological Process GO:0042059 negative regulation of epidermal growth factor receptor signaling pathway 0.11842315188650865 1.103204363681737 1.0 1150 +Phenotype MP:0010147 abnormal endocrine pancreas physiology 0.11841679048280795 1.1030890644428357 1.0 1151 +Phenotype MP:0004976 abnormal B-1 B cell number 0.11837531469098428 1.1023373235606202 1.0 1152 +Phenotype MP:0008343 abnormal gamma-delta T cell morphology 0.11836950985760741 1.1022321120535707 1.0 1153 +Phenotype MP:0006138 congestive heart failure 0.11835488409177086 1.1019670228140503 1.0 1154 +Phenotype MP:0008595 abnormal circulating interleukin-6 level 0.11826242059385816 1.1002911394026103 1.0 1155 +Biological Process GO:0019915 lipid storage 0.11825011984371869 1.100068190632854 1.0 1156 +Phenotype MP:0002643 poikilocytosis 0.11823814149159029 1.099851085266071 1.0 1157 +Biological Process GO:0031345 negative regulation of cell projection organization 0.11823128061887489 1.099726733245746 1.0 1158 +Phenotype MP:0011205 excessive folding of visceral yolk sac 0.11820106140029663 1.0991790156245742 1.0 1159 +Biological Process GO:0030301 cholesterol transport 0.11819939612029262 1.099148832739467 1.0 1160 +Biological Process GO:0015918 sterol transport 0.11819939612029262 1.099148832739467 1.0 1160 +Biological Process GO:0046640 regulation of alpha-beta T cell proliferation 0.11817792041376252 1.0987595896204498 1.0 1162 +Phenotype MP:0001346 abnormal lacrimal gland morphology 0.11814012446567379 1.0980745452099374 1.0 1163 +Phenotype MP:0009107 abnormal pancreas weight 0.11813673205419017 1.0980130583934258 1.0 1164 +Phenotype MP:0020234 decreased basal metabolism 0.1181303824724238 1.0978979734248484 1.0 1165 +Phenotype MP:0003544 abnormal vascular endothelial cell migration 0.11812016415078441 1.0977127682777925 1.0 1166 +Biological Process GO:0032272 negative regulation of protein polymerization 0.11810347619805284 1.0974103022908348 1.0 1167 +Biological Process GO:0051402 neuron apoptotic process 0.11807810384165285 1.0969504331299251 1.0 1168 +Biological Process GO:0046325 negative regulation of glucose import 0.11805837700340982 1.0965928879178366 1.0 1169 +Biological Process GO:0001909 leukocyte mediated cytotoxicity 0.11802078828054052 1.0959115994252322 1.0 1170 +Biological Process GO:0042100 B cell proliferation 0.11797659465531529 1.095110598326655 1.0 1171 +Phenotype MP:0003326 liver failure 0.11790153121387537 1.0937500876477972 1.0 1172 +Biological Process GO:0032006 regulation of TOR signaling 0.11788763383587997 1.093498200300133 1.0 1173 +Biological Process GO:0043687 post-translational protein modification 0.11784367687771502 1.092701488747261 1.0 1174 +Phenotype MP:0008349 abnormal gamma-delta intraepithelial T cell morphology 0.11783983098814232 1.0926317827261542 1.0 1175 +Phenotype MP:0003562 abnormal pancreatic beta cell physiology 0.11781470727437593 1.0921764201659512 1.0 1176 +Biological Process GO:0002827 positive regulation of T-helper 1 type immune response 0.11779932272860083 1.0918975781835574 1.0 1177 +Phenotype MP:0003325 decreased liver function 0.11774343430716971 1.090884611115662 1.0 1178 +Phenotype MP:0008125 abnormal dendritic cell number 0.11772518563831613 1.0905538574441813 1.0 1179 +Phenotype MP:0009504 abnormal mammary gland epithelium morphology 0.11769826958496721 1.0900660090680419 1.0 1180 +Phenotype MP:0020948 abnormal susceptibility to Coronaviridae infection 0.11766932213134262 1.089541341946118 1.0 1181 +Biological Process GO:0044060 regulation of endocrine process 0.11761857662975828 1.0886215893277311 1.0 1182 +Phenotype MP:0011199 abnormal amniotic cavity morphology 0.11760931630018301 1.0884537476056464 1.0 1183 +Biological Process GO:0045619 regulation of lymphocyte differentiation 0.11759803468629548 1.0882492704877005 1.0 1184 +Biological Process GO:0042104 positive regulation of activated T cell proliferation 0.11757286518527466 1.0877930780421707 1.0 1185 +Biological Process GO:0045646 regulation of erythrocyte differentiation 0.11753777693312595 1.0871571101084467 1.0 1186 +Phenotype MP:0000530 abnormal kidney vasculature morphology 0.117475644008877 1.086030962608042 1.0 1187 +Phenotype MP:0002493 increased IgG level 0.11746702792084851 1.0858747976421428 1.0 1188 +Phenotype MP:0012706 decreased embryonic neuroepithelial cell proliferation 0.11745399707298354 1.0856386159892 1.0 1189 +Biological Process GO:0046847 filopodium assembly 0.11744259247991629 1.0854319098968814 1.0 1190 +Phenotype MP:0006084 abnormal circulating phospholipid level 0.11739504326900008 1.0845700894423194 1.0 1191 +Phenotype MP:0008526 decreased cranium width 0.1173615974720763 1.0839638906988989 1.0 1192 +Biological Process GO:0045346 regulation of MHC class II biosynthetic process 0.11736149188792888 1.0839619770061966 1.0 1193 +Phenotype MP:0010594 thick aortic valve 0.11734321692009575 1.0836307466706856 1.0 1194 +Phenotype MP:0000964 small dorsal root ganglion 0.1172724544104371 1.0823481895669 1.0 1195 +Phenotype MP:0008119 decreased Langerhans cell number 0.11726741546346608 1.0822568596060995 1.0 1196 +Phenotype MP:0003943 abnormal hepatobiliary system development 0.11724210486775621 1.081798109846017 1.0 1197 +Phenotype MP:0011926 abnormal heart valve physiology 0.11721562927409213 1.081318244718358 1.0 1198 +Phenotype MP:0002877 abnormal melanocyte morphology 0.11713978494020238 1.079943580511543 1.0 1199 +Biological Process GO:1902165 regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator 0.11701934147005633 1.077760565395409 1.0 1200 +Biological Process GO:0001779 natural killer cell differentiation 0.11694317193921144 1.0763800070552882 1.0 1201 +Phenotype MP:0001209 spontaneous skin ulceration 0.11693846111347483 1.0762946242298017 1.0 1202 +Biological Process GO:0090277 positive regulation of peptide hormone secretion 0.116907178218573 1.075727627676445 1.0 1203 +Phenotype MP:0001602 impaired myelopoiesis 0.1169010332846736 1.07561625191175 1.0 1204 +Phenotype MP:0011888 abnormal circulating total protein level 0.11688545547425022 1.0753339070441597 1.0 1205 +Biological Process GO:0090278 negative regulation of peptide hormone secretion 0.11684895622287883 1.074672365016396 1.0 1206 +Biological Process GO:0002792 negative regulation of peptide secretion 0.11684895622287883 1.074672365016396 1.0 1206 +Phenotype MP:0011453 abnormal glomerular capillary endothelium morphology 0.11683594787596574 1.0744365911889502 1.0 1208 +Biological Process GO:0060840 artery development 0.11683391336078508 1.0743997159861018 1.0 1209 +Phenotype MP:0013326 abnormal female reproductive gland physiology 0.11682901427938375 1.074310921062298 1.0 1210 +Phenotype MP:0003507 abnormal ovary physiology 0.11682901427938375 1.074310921062298 1.0 1210 +Phenotype MP:0008672 increased interleukin-13 secretion 0.11681461237970892 1.0740498893546175 1.0 1212 +Phenotype MP:0000559 abnormal femur morphology 0.11677839849324101 1.0733935195117565 1.0 1213 +Biological Process GO:0043627 response to estrogen 0.11674057456047815 1.0727079678843183 1.0 1214 +Biological Process GO:0033688 regulation of osteoblast proliferation 0.11669904366152062 1.0719552281957243 1.0 1215 +Biological Process GO:0050919 negative chemotaxis 0.11669244216567942 1.0718355773321868 1.0 1216 +Phenotype MP:0004012 increased pulmonary artery pressure 0.1166348527160117 1.0707917794492297 1.0 1217 +Phenotype MP:0002330 abnormal bronchial provocation 0.11662018400837748 1.0705259118977482 1.0 1218 +Phenotype MP:0004364 thin stria vascularis 0.11647920109133603 1.0679706231913955 1.0 1219 +Phenotype MP:0020328 abnormal capillary density 0.11641890770331154 1.0668778169371356 1.0 1220 +Biological Process GO:0006809 nitric oxide biosynthetic process 0.1163741629183116 1.0660668261718862 1.0 1221 +Biological Process GO:0046209 nitric oxide metabolic process 0.1163741629183116 1.0660668261718862 1.0 1221 +Biological Process GO:2001057 reactive nitrogen species metabolic process 0.1163741629183116 1.0660668261718862 1.0 1221 +Phenotype MP:0008636 decreased circulating interleukin-18 level 0.11636757057336877 1.0659473411666511 1.0 1224 +Phenotype MP:0009919 abnormal transitional stage T1 B cell morphology 0.11634622057565946 1.065560376496235 1.0 1225 +Phenotype MP:0031215 abnormal response to myocardial ischemic injury 0.11633871257330763 1.0654242953736457 1.0 1226 +Biological Process GO:0031329 regulation of cellular catabolic process 0.11632150096739147 1.065112338271759 1.0 1227 +Phenotype MP:0003427 parakeratosis 0.11630738603036883 1.0648565077078744 1.0 1228 +Phenotype MP:0003393 decreased cardiac output 0.1162706300314027 1.0641903121785163 1.0 1229 +Phenotype MP:0006128 pulmonary valve stenosis 0.11624601746001861 1.0637442139773168 1.0 1230 +Phenotype MP:0009304 increased retroperitoneal fat pad weight 0.11623400734728773 1.063526532955621 1.0 1231 +Phenotype MP:0010466 vascular ring 0.11623398002635699 1.0635260377689186 1.0 1232 +Phenotype MP:0005461 abnormal dendritic cell morphology 0.11621248568466158 1.0631364568910553 1.0 1233 +Phenotype MP:0001575 cyanosis 0.11620869535022027 1.0630677577961973 1.0 1234 +Biological Process GO:0031398 positive regulation of protein ubiquitination 0.11618099957222439 1.0625657770583061 1.0 1235 +Phenotype MP:0003962 abnormal adrenaline level 0.11617937519254407 1.0625363354838298 1.0 1236 +Biological Process GO:0032682 negative regulation of chemokine production 0.1161454170023355 1.0619208497090347 1.0 1237 +Phenotype MP:0005399 increased susceptibility to fungal infection 0.11612750359486657 1.0615961725867407 1.0 1238 +Biological Process GO:0070555 response to interleukin-1 0.11610682950413809 1.0612214586025133 1.0 1239 +Biological Process GO:0060445 branching involved in salivary gland morphogenesis 0.11606775095594923 1.0605131673077723 1.0 1240 +Biological Process GO:0010560 positive regulation of glycoprotein biosynthetic process 0.11605628693112235 1.0603053840260515 1.0 1241 +Biological Process GO:1903020 positive regulation of glycoprotein metabolic process 0.11605628693112235 1.0603053840260515 1.0 1241 +Phenotype MP:0002795 dilated cardiomyopathy 0.116006720956779 1.0594070101158157 1.0 1243 +Phenotype MP:0008457 abnormal cortical intermediate zone morphology 0.1160033286327522 1.0593455248844426 1.0 1244 +Phenotype MP:0008705 increased interleukin-6 secretion 0.11596522652002939 1.058654931297844 1.0 1245 +Biological Process GO:0002367 cytokine production involved in immune response 0.11596345237772421 1.058622775304118 1.0 1246 +Phenotype MP:0008782 increased B cell apoptosis 0.11596126030306353 1.0585830443654944 1.0 1247 +Biological Process GO:0000302 response to reactive oxygen species 0.1159327161474577 1.0580656869438823 1.0 1248 +Biological Process GO:1902036 regulation of hematopoietic stem cell differentiation 0.11591464405821639 1.0577381337444762 1.0 1249 +Biological Process GO:0060385 axonogenesis involved in innervation 0.11587262901711792 1.0569766190711467 1.0 1250 +Phenotype MP:0001835 abnormal antigen presentation 0.1158542686036006 1.0566438400487705 1.0 1251 +Phenotype MP:0009772 abnormal retina development 0.11576789581237856 1.0550783495441238 1.0 1252 +Phenotype MP:0004917 abnormal T cell selection 0.11576162902529963 1.0549647652135965 1.0 1253 +Biological Process GO:0046546 development of primary male sexual characteristics 0.11570764782727949 1.0539863662092996 1.0 1254 +Phenotype MP:0010758 increased right ventricle systolic pressure 0.11569179139470498 1.0536989713679177 1.0 1255 +Biological Process GO:0016236 macroautophagy 0.11559434953164816 1.0519328560298313 1.0 1256 +Phenotype MP:0002664 decreased circulating adrenocorticotropin level 0.1155804789334709 1.0516814540613058 1.0 1257 +Biological Process GO:0045197 establishment or maintenance of epithelial cell apical/basal polarity 0.11556171888515188 1.0513414317337344 1.0 1258 +Phenotype MP:0009133 decreased white fat cell size 0.11555826757662957 1.0512788774195363 1.0 1259 +Phenotype MP:0003856 abnormal hindlimb stylopod morphology 0.1155431176372681 1.0510042876340169 1.0 1260 +Phenotype MP:0001627 abnormal cardiac output 0.11551638395599007 1.050519744717169 1.0 1261 +Biological Process GO:0044403 biological process involved in symbiotic interaction 0.11541852338950886 1.048746040458708 1.0 1262 +Phenotype MP:0006414 decreased T cell apoptosis 0.11540535542273789 1.048507373551528 1.0 1263 +Biological Process GO:0045123 cellular extravasation 0.11534035463086434 1.0473292464928459 1.0 1264 +Biological Process GO:0060603 mammary gland duct morphogenesis 0.11531989790839414 1.0469584722671876 1.0 1265 +Biological Process GO:2000146 negative regulation of cell motility 0.11531475634963029 1.0468652824870495 1.0 1266 +Biological Process GO:0140131 positive regulation of lymphocyte chemotaxis 0.11530319488877616 1.0466557331957633 1.0 1267 +Phenotype MP:0000789 thickened cerebral cortex 0.1152270092228409 1.0452748824101814 1.0 1268 +Phenotype MP:0009387 abnormal epidermal pigmentation 0.11519031436451954 1.044609795043446 1.0 1269 +Phenotype MP:0004505 decreased renal glomerulus number 0.11518305248961436 1.0444781749342755 1.0 1270 +Phenotype MP:0008841 ruptured lens capsule 0.11518070890494969 1.044435697905486 1.0 1271 +Biological Process GO:0050851 antigen receptor-mediated signaling pathway 0.11517742268527542 1.0443761357954342 1.0 1272 +Phenotype MP:0011895 abnormal circulating unsaturated transferrin level 0.11511044051774633 1.043162096677746 1.0 1273 +Phenotype MP:0014325 abnormal oligodendrocyte progenitor morphology 0.11510664603451803 1.0430933223869086 1.0 1274 +Biological Process GO:0070661 leukocyte proliferation 0.11509903499709251 1.0429553737730963 1.0 1275 +Biological Process GO:0055123 digestive system development 0.11505889560520066 1.042227854886883 1.0 1276 +Biological Process GO:0045787 positive regulation of cell cycle 0.11501797899395316 1.0414862490468493 1.0 1277 +Biological Process GO:0048675 axon extension 0.11497722817063183 1.0407476480816205 1.0 1278 +Biological Process GO:0060541 respiratory system development 0.11495363088887856 1.0403199518129511 1.0 1279 +Biological Process GO:0048002 antigen processing and presentation of peptide antigen 0.1148840971783488 1.039059666460966 1.0 1280 +Phenotype MP:0002095 abnormal skin pigmentation 0.11484845338317529 1.0384136294149908 1.0 1281 +Phenotype MP:0008504 abnormal adrenal chromaffin cell morphology 0.11480678358948548 1.0376583722856445 1.0 1282 +Phenotype MP:0001839 abnormal level of surface class I molecules 0.1147538646128039 1.0366992258422039 1.0 1283 +Biological Process GO:1900078 positive regulation of cellular response to insulin stimulus 0.11474416783723351 1.0365234736190052 1.0 1284 +Phenotype MP:0006410 abnormal common myeloid progenitor cell morphology 0.1147419788676377 1.0364837989590956 1.0 1285 +Biological Process GO:0046330 positive regulation of JNK cascade 0.11472238437397042 1.036128652467411 1.0 1286 +Phenotype MP:0009338 increased splenocyte number 0.1147101956591361 1.0359077343163705 1.0 1287 +Phenotype MP:0008059 abnormal podocyte foot process morphology 0.11469073242003502 1.0355549667888735 1.0 1288 +Phenotype MP:0008173 increased follicular B cell number 0.11465688352789205 1.0349414620208452 1.0 1289 +Biological Process GO:0014013 regulation of gliogenesis 0.11465353570964687 1.034880783448346 1.0 1290 +Phenotype MP:0011427 increased mesangial cell number 0.11462848142622328 1.0344266792999746 1.0 1291 +Phenotype MP:0002467 impaired neutrophil phagocytosis 0.1146270622285751 1.0344009566110235 1.0 1292 +Biological Process GO:0045732 positive regulation of protein catabolic process 0.11457253562907832 1.0334126723081176 1.0 1293 +Phenotype MP:0008501 increased IgG2b level 0.11454707119715335 1.0329511342957325 1.0 1294 +Phenotype MP:0020815 abnormal photoreceptor outer segment number 0.11450073997591836 1.0321113896737761 1.0 1295 +Biological Process GO:1903050 regulation of proteolysis involved in protein catabolic process 0.11449321673460866 1.0319750323479577 1.0 1296 +Phenotype MP:0012777 abnormal liver glycogen level 0.11439028735188428 1.0301094567537874 1.0 1297 +Biological Process GO:0072175 epithelial tube formation 0.11438857561208937 1.0300784317937572 1.0 1298 +Biological Process GO:0050678 regulation of epithelial cell proliferation 0.11431777244977215 1.028795137868224 1.0 1299 +Biological Process GO:0031341 regulation of cell killing 0.11431444329471452 1.0287347975624694 1.0 1300 +Biological Process GO:0032007 negative regulation of TOR signaling 0.11424860030069484 1.0275414057491798 1.0 1301 +Phenotype MP:0013285 abnormal renal filtration 0.11424773241353936 1.0275256754586362 1.0 1302 +Biological Process GO:0090128 regulation of synapse maturation 0.11423999269724483 1.0273853945646612 1.0 1303 +Biological Process GO:1903828 negative regulation of protein localization 0.11421947318115033 1.027013482216439 1.0 1304 +Phenotype MP:0011521 decreased placental labyrinth size 0.1142018342006893 1.0266937790317587 1.0 1305 +Phenotype MP:0002333 abnormal lung compliance 0.11419466365046305 1.0265638141651212 1.0 1306 +Phenotype MP:0004956 decreased thymus weight 0.11418814042242154 1.0264455818906497 1.0 1307 +Phenotype MP:0006319 abnormal epididymal fat pad morphology 0.1141801658941537 1.02630104507407 1.0 1308 +Phenotype MP:0003140 dilated heart atrium 0.11415888766175408 1.0259153811363184 1.0 1309 +Biological Process GO:0071679 commissural neuron axon guidance 0.11410968345223083 1.0250235641450243 1.0 1310 +Phenotype MP:0013501 increased fibroblast apoptosis 0.11408761471799389 1.0246235725109842 1.0 1311 +Biological Process GO:0048853 forebrain morphogenesis 0.114073907869366 1.0243751384720698 1.0 1312 +Phenotype MP:0005602 decreased angiogenesis 0.11406869784176332 1.024280707707178 1.0 1313 +Phenotype MP:0008351 decreased gamma-delta intraepithelial T cell number 0.11405427009682445 1.0240192075589751 1.0 1314 +Phenotype MP:0003339 decreased pancreatic beta cell number 0.11405408655556337 1.0240158809083324 1.0 1315 +Phenotype MP:0004816 abnormal class switch recombination 0.1140291436977372 1.0235637963278392 1.0 1316 +Phenotype MP:0000846 abnormal medulla oblongata morphology 0.1140146781354161 1.023301610746736 1.0 1317 +Phenotype MP:0005232 abnormal mesenteric lymph node morphology 0.11401431833368003 1.0232950894083215 1.0 1318 +Biological Process GO:0022602 ovulation cycle process 0.11401046110696633 1.0232251779036783 1.0 1319 +Phenotype MP:0004589 abnormal cochlear hair cell development 0.11400858095360056 1.0231911004795293 1.0 1320 +Phenotype MP:0031413 abnormal skeletal muscle triglyceride level 0.11399672001995242 1.022976123300493 1.0 1321 +Biological Process GO:0071375 cellular response to peptide hormone stimulus 0.11398415396872608 1.022748365998715 1.0 1322 +Biological Process GO:0010977 negative regulation of neuron projection development 0.11398316666368213 1.0227304712815293 1.0 1323 +Biological Process GO:0000280 nuclear division 0.11396918337299955 1.0224770267826588 1.0 1324 +Biological Process GO:0032700 negative regulation of interleukin-17 production 0.11394927860371251 1.022116256604051 1.0 1325 +Biological Process GO:0002294 CD4-positive, alpha-beta T cell differentiation involved in immune response 0.11394099722023021 1.0219661580947466 1.0 1326 +Biological Process GO:0042093 T-helper cell differentiation 0.11394099722023021 1.0219661580947466 1.0 1326 +Biological Process GO:0040018 positive regulation of multicellular organism growth 0.11391749373031645 1.021540161785429 1.0 1328 +Biological Process GO:0030593 neutrophil chemotaxis 0.11387705880974952 1.0208072864978748 1.0 1329 +Biological Process GO:0033599 regulation of mammary gland epithelial cell proliferation 0.11380250350059606 1.0194559856206031 1.0 1330 +Phenotype MP:0001198 tight skin 0.11376999685878064 1.0188668088858928 1.0 1331 +Phenotype MP:0006315 abnormal urine protein level 0.11375942909968018 1.0186752702509465 1.0 1332 +Phenotype MP:0005439 decreased glycogen level 0.1137065207200344 1.0177163158767757 1.0 1333 +Biological Process GO:1903429 regulation of cell maturation 0.11367104330174582 1.017073294380372 1.0 1334 +Biological Process GO:1900180 regulation of protein localization to nucleus 0.11365785888554969 1.016834329330472 1.0 1335 +Phenotype MP:0030420 short basicranium 0.11361461697215025 1.0160505778287339 1.0 1336 +Phenotype MP:0004055 heart atrium hypoplasia 0.11359562995340067 1.0157064417050372 1.0 1337 +Phenotype MP:0031577 decreased heart atrium size 0.11359562995340067 1.0157064417050372 1.0 1337 +Biological Process GO:0060561 apoptotic process involved in morphogenesis 0.11357042698067432 1.0152496425911757 1.0 1339 +Phenotype MP:0009409 abnormal skeletal muscle fiber type ratio 0.11356353838208755 1.015124788044676 1.0 1340 +Phenotype MP:0008479 decreased spleen white pulp amount 0.11353668556750807 1.014638085859272 1.0 1341 +Phenotype MP:0010465 aberrant origin of the right subclavian artery 0.1135027535069657 1.0140230736797349 1.0 1342 +Phenotype MP:0014437 increased interleukin level 0.11349096404323322 1.0138093918794022 1.0 1343 +Biological Process GO:0002711 positive regulation of T cell mediated immunity 0.11348849636855363 1.013764665742562 1.0 1344 +Phenotype MP:0000727 absent CD8-positive, alpha-beta T cells 0.11344396831991532 1.0129576032828747 1.0 1345 +Biological Process GO:0036303 lymph vessel morphogenesis 0.11342137888220394 1.0125481739968443 1.0 1346 +Biological Process GO:0042176 regulation of protein catabolic process 0.11339987467134183 1.0121584142422009 1.0 1347 +Biological Process GO:0043032 positive regulation of macrophage activation 0.11338787422381869 1.0119409084005673 1.0 1348 +Phenotype MP:0006197 ocular hypotelorism 0.11333217167691889 1.0109313102733966 1.0 1349 +Phenotype MP:0008661 decreased interleukin-10 secretion 0.11330945721208918 1.0105196148944937 1.0 1350 +Phenotype MP:0006047 aortic valve regurgitation 0.11328463648411768 1.0100697438945174 1.0 1351 +Phenotype MP:0004040 abnormal susceptibility to kidney reperfusion injury 0.11327409389466259 1.009878661454633 1.0 1352 +Phenotype MP:0000427 abnormal hair cycle 0.11326956245341058 1.0097965299390015 1.0 1353 +Phenotype MP:0004941 abnormal regulatory T cell morphology 0.11325269770706248 1.0094908596011822 1.0 1354 +Phenotype MP:0005239 abnormal Bruch membrane morphology 0.11323965686057591 1.009254496725114 1.0 1355 +Phenotype MP:0008808 decreased spleen iron level 0.113206420627878 1.008652096293651 1.0 1356 +Biological Process GO:0043373 CD4-positive, alpha-beta T cell lineage commitment 0.11314446419604796 1.0075291476849577 1.0 1357 +Biological Process GO:0045822 negative regulation of heart contraction 0.11311525831599734 1.0069997966329398 1.0 1358 +Biological Process GO:0009755 hormone-mediated signaling pathway 0.11308370042915517 1.0064278159026756 1.0 1359 +Phenotype MP:0011897 decreased circulating unsaturated transferrin level 0.11307287686302847 1.0062316408137613 1.0 1360 +Biological Process GO:0048546 digestive tract morphogenesis 0.11302891585289632 1.0054348558197501 1.0 1361 +Phenotype MP:0005596 increased susceptibility to type I hypersensitivity reaction 0.11302031352636421 1.0052789402783702 1.0 1362 +Biological Process GO:0045931 positive regulation of mitotic cell cycle 0.11299992905140266 1.0049094755251415 1.0 1363 +Phenotype MP:0004993 decreased bone resorption 0.11297470220949168 1.004452243786823 1.0 1364 +Biological Process GO:0046676 negative regulation of insulin secretion 0.11296486971914543 1.0042740317589807 1.0 1365 +Phenotype MP:0008256 abnormal myometrium morphology 0.11293602271525816 1.0037511852695469 1.0 1366 +Biological Process GO:0150077 regulation of neuroinflammatory response 0.11292692352872347 1.0035862642345943 1.0 1367 +Phenotype MP:0008614 increased circulating interleukin-17 level 0.1128643124789559 1.0024514507995956 1.0 1368 +Phenotype MP:0005022 abnormal immature B cell morphology 0.1128456346661787 1.0021129189756661 1.0 1369 +Phenotype MP:0011084 lethality at weaning, incomplete penetrance 0.11276702965713725 1.0006882180538708 1.0 1370 +Phenotype MP:0013502 decreased fibroblast apoptosis 0.11275232562259563 1.0004217102088744 1.0 1371 +Phenotype MP:0014139 abnormal ectoderm morphology 0.11270372458107936 0.9995408255236256 1.0 1372 +Phenotype MP:0002271 abnormal pulmonary alveolar duct morphology 0.11265239218527168 0.9986104355584441 1.0 1373 +Biological Process GO:0031334 positive regulation of protein-containing complex assembly 0.11259881081618028 0.9976392833778583 1.0 1374 +Biological Process GO:0045684 positive regulation of epidermis development 0.11259524349673966 0.9975746263877076 1.0 1375 +Biological Process GO:0009948 anterior/posterior axis specification 0.11259454952322356 0.997562048248984 1.0 1376 +Biological Process GO:0060907 positive regulation of macrophage cytokine production 0.11254961080084458 0.9967475424054202 1.0 1377 +Biological Process GO:0046883 regulation of hormone secretion 0.11254434109228406 0.9966520299344553 1.0 1378 +Biological Process GO:0046888 negative regulation of hormone secretion 0.11252517229155257 0.996304599046718 1.0 1379 +Biological Process GO:1904950 negative regulation of establishment of protein localization 0.11252073972414822 0.9962242596008748 1.0 1380 +Biological Process GO:0016567 protein ubiquitination 0.11249901762141046 0.9958305505971966 1.0 1381 +Phenotype MP:0010963 abnormal compact bone volume 0.11248057833181646 0.9954963419608491 1.0 1382 +Phenotype MP:0000079 abnormal basioccipital bone morphology 0.11247697381794608 0.9954310108286939 1.0 1383 +Phenotype MP:0003542 abnormal vascular endothelial cell development 0.11243065978852163 0.9945915778050517 1.0 1384 +Phenotype MP:0003236 abnormal lens capsule morphology 0.11230615848894154 0.99233501529791 1.0 1385 +Phenotype MP:0008168 decreased B-1a cell number 0.112300233531484 0.992227626564618 1.0 1386 +Phenotype MP:0008090 increased T-helper 2 cell number 0.11229862453755324 0.9921984638539426 1.0 1387 +Phenotype MP:0005290 decreased oxygen consumption 0.11226340477043373 0.9915601122362471 1.0 1388 +Biological Process GO:0002690 positive regulation of leukocyte chemotaxis 0.11224137574162318 0.9911608402555506 1.0 1389 +Phenotype MP:0008387 hypochromic anemia 0.11221063440428058 0.9906036593305267 1.0 1390 +Phenotype MP:0020913 increased susceptibility to Riboviria infection 0.1122057744986118 0.9905155744594658 1.0 1391 +Phenotype MP:0001144 vagina atresia 0.11220136272699388 0.9904356119333183 1.0 1392 +Phenotype MP:0013203 abnormal primary cilium morphology 0.11214084595301288 0.989338756850847 1.0 1393 +Biological Process GO:0032386 regulation of intracellular transport 0.11212673020385489 0.9890829115671625 1.0 1394 +Biological Process GO:0010155 regulation of proton transport 0.11206852157407798 0.9880278911618361 1.0 1395 +Biological Process GO:2000108 positive regulation of leukocyte apoptotic process 0.11206335242410503 0.9879342012962516 1.0 1396 +Biological Process GO:0120163 negative regulation of cold-induced thermogenesis 0.11206139820046868 0.9878987813624578 1.0 1397 +Biological Process GO:0046628 positive regulation of insulin receptor signaling pathway 0.11203380047371425 0.9873985777847729 1.0 1398 +Biological Process GO:0032623 interleukin-2 production 0.11199991179028534 0.9867843518072129 1.0 1399 +Biological Process GO:1903322 positive regulation of protein modification by small protein conjugation or removal 0.11189970944652283 0.9849682032784438 1.0 1400 +Biological Process GO:1901875 positive regulation of post-translational protein modification 0.11189970944652283 0.9849682032784438 1.0 1400 +Biological Process GO:0050853 B cell receptor signaling pathway 0.11189836229916816 0.9849437864874352 1.0 1402 +Biological Process GO:0016241 regulation of macroautophagy 0.11188844116288199 0.9847639677686979 1.0 1403 +Phenotype MP:0009489 abnormal blood vessel endothelium morphology 0.1118877688787625 0.9847517827461858 1.0 1404 +Phenotype MP:0009936 abnormal dendritic spine morphology 0.11176327804113295 0.9824954098599187 1.0 1405 +Biological Process GO:0010639 negative regulation of organelle organization 0.11176242583182672 0.9824799637274271 1.0 1406 +Phenotype MP:0002999 abnormal bone healing 0.1117603221621234 0.9824418351119352 1.0 1407 +Biological Process GO:0001954 positive regulation of cell-matrix adhesion 0.11175202489691582 0.9822914487493641 1.0 1408 +Phenotype MP:0000857 abnormal cerebellar foliation 0.11174258403407489 0.9821203348959845 1.0 1409 +Biological Process GO:0051223 regulation of protein transport 0.11172413323870956 0.9817859177197078 1.0 1410 +Phenotype MP:0001860 liver inflammation 0.1116769826057451 0.9809313214151355 1.0 1411 +Phenotype MP:0012262 abnormal hindbrain size 0.11165511039957665 0.9805348918151661 1.0 1412 +Phenotype MP:0005161 hematuria 0.11164729097717019 0.9803931662629876 1.0 1413 +Phenotype MP:0011177 abnormal erythroblast number 0.11163337282507446 0.9801409023886839 1.0 1414 +Biological Process GO:0097396 response to interleukin-17 0.1116305499600081 0.9800897384932631 1.0 1415 +Biological Process GO:0001841 neural tube formation 0.11160939918793844 0.9797063847498848 1.0 1416 +Biological Process GO:0060491 regulation of cell projection assembly 0.11154173979534121 0.9784800710559246 1.0 1417 +Phenotype MP:0008589 abnormal circulating interleukin-1 level 0.11152791745928359 0.9782295438291893 1.0 1418 +Biological Process GO:0048332 mesoderm morphogenesis 0.11148531526414118 0.9774573870998657 1.0 1419 +Biological Process GO:0007163 establishment or maintenance of cell polarity 0.11147804031419462 0.9773255300080432 1.0 1420 +Phenotype MP:0008092 abnormal T-helper 2 cell differentiation 0.11147761866651507 0.9773178877236003 1.0 1421 +Biological Process GO:0032388 positive regulation of intracellular transport 0.11145396573734012 0.9768891828559381 1.0 1422 +Phenotype MP:0020915 abnormal susceptibility to Herpesvirales infection 0.11144726972338836 0.9767678188695236 1.0 1423 +Phenotype MP:0008088 abnormal T-helper 1 cell differentiation 0.11141835606869821 0.9762437643468936 1.0 1424 +Phenotype MP:0008024 absent lymph nodes 0.11141735969297173 0.9762257052253022 1.0 1425 +Biological Process GO:0032653 regulation of interleukin-10 production 0.11139541197879121 0.9758279070568955 1.0 1426 +Biological Process GO:1903053 regulation of extracellular matrix organization 0.11136725856776697 0.9753176318069203 1.0 1427 +Phenotype MP:0001505 hunched posture 0.11134831149758506 0.9749742197434569 1.0 1428 +Biological Process GO:0032656 regulation of interleukin-13 production 0.11133998542664414 0.9748233112824171 1.0 1429 +Phenotype MP:0005014 increased B cell number 0.11133359011726507 0.9747073975095082 1.0 1430 +Phenotype MP:0008688 decreased interleukin-2 secretion 0.11130596978213059 0.9742067841592108 1.0 1431 +Phenotype MP:0010103 small thoracic cage 0.11124334480203824 0.9730717182397102 1.0 1432 +Phenotype MP:0020180 abnormal IgM level 0.11117749379959774 0.9718781812753081 1.0 1433 +Phenotype MP:0003799 impaired macrophage chemotaxis 0.11117486963901047 0.9718306188609884 1.0 1434 +Biological Process GO:0007405 neuroblast proliferation 0.11116517216070931 0.9716548539009278 1.0 1435 +Phenotype MP:0001656 focal hepatic necrosis 0.11116279871795165 0.9716118356998499 1.0 1436 +Phenotype MP:0002340 abnormal axillary lymph node morphology 0.11112848118304897 0.9709898368704392 1.0 1437 +Phenotype MP:0005297 spina bifida occulta 0.11109439435791768 0.9703720196119994 1.0 1438 +Phenotype MP:0009447 abnormal platelet ATP level 0.11108902394972775 0.9702746819792974 1.0 1439 +Phenotype MP:0014244 abnormal cellular ATP level 0.11108902394972775 0.9702746819792974 1.0 1439 +Phenotype MP:0014246 decreased cellular ATP level 0.11108902394972775 0.9702746819792974 1.0 1439 +Phenotype MP:0009448 decreased platelet ATP level 0.11108902394972775 0.9702746819792974 1.0 1439 +Phenotype MP:0009671 abnormal uterus physiology 0.11108804711113629 0.9702569769645831 1.0 1443 +Phenotype MP:0006007 abnormal basal ganglion morphology 0.11100225156542132 0.9687019489255735 1.0 1444 +Phenotype MP:0004808 abnormal hematopoietic stem cell morphology 0.11096228463921576 0.9679775559473045 1.0 1445 +Biological Process GO:0002831 regulation of response to biotic stimulus 0.11094858540605845 0.9677292599373543 1.0 1446 +Biological Process GO:0010594 regulation of endothelial cell migration 0.11093683270442478 0.9675162444431095 1.0 1447 +Phenotype MP:0005327 abnormal mesangial cell morphology 0.11092678382715193 0.9673341104431491 1.0 1448 +Phenotype MP:0005533 increased body temperature 0.11092527489773507 0.9673067613828622 1.0 1449 +Phenotype MP:0011044 increased lung elastance 0.1109135311764794 0.9670939086562701 1.0 1450 +Phenotype MP:0008183 absent marginal zone B cells 0.11088293263294136 0.9665393158419463 1.0 1451 +Biological Process GO:0045216 cell-cell junction organization 0.11086105348912845 0.9661427604984834 1.0 1452 +Biological Process GO:0030889 negative regulation of B cell proliferation 0.11085924592521756 0.966109998744475 1.0 1453 +Phenotype MP:0003887 increased hepatocyte apoptosis 0.11085305824357317 0.9659978481849871 1.0 1454 +Biological Process GO:0031333 negative regulation of protein-containing complex assembly 0.11083048459768297 0.9655887051227289 1.0 1455 +Biological Process GO:0050870 positive regulation of T cell activation 0.11077024025176563 0.9644967877473853 1.0 1456 +Biological Process GO:0098657 import into cell 0.11075232531674195 0.9641720829384504 1.0 1457 +Phenotype MP:0003790 absent CD4-positive, alpha-beta T cells 0.11075062105400768 0.9641411934987302 1.0 1458 +Phenotype MP:0008260 abnormal autophagy 0.11072034441715761 0.9635924351822415 1.0 1459 +Biological Process GO:0032371 regulation of sterol transport 0.11071574116938054 0.9635090021869246 1.0 1460 +Biological Process GO:0032374 regulation of cholesterol transport 0.11071574116938054 0.9635090021869246 1.0 1460 +Phenotype MP:0001139 abnormal vagina morphology 0.11071284710442586 0.9634565478069944 1.0 1462 +Biological Process GO:0001704 formation of primary germ layer 0.1106996985168689 0.963218232144403 1.0 1463 +Biological Process GO:0007369 gastrulation 0.11067360567568996 0.962745304333145 1.0 1464 +Biological Process GO:0055088 lipid homeostasis 0.11065092939673349 0.9623343010659723 1.0 1465 +Phenotype MP:0001222 epidermal hyperplasia 0.11062369705189701 0.961840719966443 1.0 1466 +Phenotype MP:0010293 increased integument system tumor incidence 0.11061806795466123 0.9617386936437126 1.0 1467 +Biological Process GO:0014004 microglia differentiation 0.11060410691356637 0.9614856524144115 1.0 1468 +Phenotype MP:0011065 abnormal kidney epithelial cell primary cilium morphology 0.11058659589238606 0.9611682684674928 1.0 1469 +Phenotype MP:0008049 increased memory T cell number 0.11057949356478713 0.961039540123072 1.0 1470 +Biological Process GO:0043547 positive regulation of GTPase activity 0.11056645022705436 0.9608031320936374 1.0 1471 +Phenotype MP:0008056 abnormal retina ganglion cell morphology 0.1105659261927191 0.960793634070425 1.0 1472 +Phenotype MP:0001882 abnormal lactation 0.11056352264608615 0.9607500702423013 1.0 1473 +Phenotype MP:0005112 abnormal spinal cord ventral horn morphology 0.11054302676218741 0.9603785862231576 1.0 1474 +Biological Process GO:0002467 germinal center formation 0.1105299949141969 0.9601423864431285 1.0 1475 +Biological Process GO:1905207 regulation of cardiocyte differentiation 0.11049316014255894 0.9594747631739924 1.0 1476 +Phenotype MP:0009687 empty decidua capsularis 0.11048439350165429 0.9593158694656878 1.0 1477 +Biological Process GO:0007030 Golgi organization 0.11048188506690682 0.9592704045603265 1.0 1478 +Phenotype MP:0010776 abnormal placenta metrial gland morphology 0.11045578092586084 0.9587972719411155 1.0 1479 +Phenotype MP:0008054 abnormal uterine NK cell morphology 0.11045578092586084 0.9587972719411155 1.0 1479 +Biological Process GO:0043244 regulation of protein-containing complex disassembly 0.11044924810484347 0.958678865795771 1.0 1481 +Phenotype MP:0011941 increased fluid intake 0.11042751168559406 0.958284897308027 1.0 1482 +Phenotype MP:0008737 abnormal spleen physiology 0.11039436559214355 0.9576841306333747 1.0 1483 +Phenotype MP:0008567 decreased interferon-gamma secretion 0.11034656339160231 0.9568177247897084 1.0 1484 +Phenotype MP:0008513 thin retina inner plexiform layer 0.11029126163811787 0.9558153909673861 1.0 1485 +Phenotype MP:0030762 decreased adrenaline level 0.11022878572259709 0.9546830268150516 1.0 1486 +Biological Process GO:0042058 regulation of epidermal growth factor receptor signaling pathway 0.11020251173013107 0.9542068156709775 1.0 1487 +Biological Process GO:0062014 negative regulation of small molecule metabolic process 0.110183692535605 0.9538657213295902 1.0 1488 +Biological Process GO:0070244 negative regulation of thymocyte apoptotic process 0.11017002135198684 0.9536179337122316 1.0 1489 +Phenotype MP:0004972 abnormal regulatory T cell number 0.11014560138305607 0.9531753263940703 1.0 1490 +Phenotype MP:0003073 abnormal metacarpal bone morphology 0.11013347806343876 0.9529555935189695 1.0 1491 +Phenotype MP:0003071 decreased vascular permeability 0.11011010718400494 0.9525320007495192 1.0 1492 +Phenotype MP:0006323 abnormal extraembryonic mesoderm development 0.11006384916877521 0.9516935829725621 1.0 1493 +Biological Process GO:0006914 autophagy 0.110052011416095 0.9514790259441851 1.0 1494 +Biological Process GO:0061919 process utilizing autophagic mechanism 0.110052011416095 0.9514790259441851 1.0 1494 +Biological Process GO:0014909 smooth muscle cell migration 0.11003489148549517 0.9511687304400679 1.0 1496 +Phenotype MP:0001085 small petrosal ganglion 0.11000422246104602 0.9506128601725609 1.0 1497 +Phenotype MP:0008115 abnormal dendritic cell differentiation 0.10995884304833181 0.9497903669000217 1.0 1498 +Biological Process GO:0002262 myeloid cell homeostasis 0.10995514898957437 0.9497234127837246 1.0 1499 +Biological Process GO:1901798 positive regulation of signal transduction by p53 class mediator 0.10993330666171108 0.9493275247223854 1.0 1500 +Phenotype MP:0008476 increased spleen red pulp amount 0.10991829178997525 0.9490553830120345 1.0 1501 +Biological Process GO:0006606 protein import into nucleus 0.1099071323159716 0.9488531196563829 1.0 1502 +Biological Process GO:2000178 negative regulation of neural precursor cell proliferation 0.10986927406555869 0.948166946028028 1.0 1503 +Biological Process GO:0033365 protein localization to organelle 0.1098648857394473 0.948087408447252 1.0 1504 +Phenotype MP:0010316 increased thyroid tumor incidence 0.10984767174399424 0.947775408035461 1.0 1505 +Biological Process GO:0045777 positive regulation of blood pressure 0.10984219614336399 0.9476761638096741 1.0 1506 +Phenotype MP:0000270 abnormal heart tube morphology 0.10979767881195723 0.9468692955977814 1.0 1507 +Phenotype MP:0008126 increased dendritic cell number 0.10978967339617651 0.9467241989508727 1.0 1508 +Biological Process GO:0070613 regulation of protein processing 0.10978749739127258 0.946684759273551 1.0 1509 +Phenotype MP:0008117 abnormal Langerhans cell morphology 0.10978524952386515 0.9466440171019451 1.0 1510 +Biological Process GO:0019229 regulation of vasoconstriction 0.1097803642582379 0.9465554725864336 1.0 1511 +Phenotype MP:0000930 wavy neural tube 0.10976563037742115 0.9462884237833455 1.0 1512 +Biological Process GO:0010660 regulation of muscle cell apoptotic process 0.10968662016249453 0.9448563785815207 1.0 1513 +Biological Process GO:0051588 regulation of neurotransmitter transport 0.10967196652710609 0.9445907842116433 1.0 1514 +Phenotype MP:0012575 increased noradrenaline level 0.10953995233672897 0.9421980519797677 1.0 1515 +Phenotype MP:0005666 abnormal adipose tissue physiology 0.1095165639500274 0.9417741418944007 1.0 1516 +Biological Process GO:0006611 protein export from nucleus 0.10948627096433972 0.9412250872583224 1.0 1517 +Phenotype MP:0011179 decreased erythroblast number 0.10947846254538873 0.9410835611416933 1.0 1518 +Phenotype MP:0011698 abnormal brown adipose tissue physiology 0.1094657608866576 0.9408533459795396 1.0 1519 +Phenotype MP:0009676 abnormal hemostasis 0.10944782851697177 0.9405283251706505 1.0 1520 +Biological Process GO:0045621 positive regulation of lymphocyte differentiation 0.10944068436659193 0.9403988387962361 1.0 1521 +Phenotype MP:0008344 abnormal mature gamma-delta T cell morphology 0.10937699087406072 0.9392444062908757 1.0 1522 +Biological Process GO:0051250 negative regulation of lymphocyte activation 0.10927885145667116 0.9374656479124415 1.0 1523 +Biological Process GO:1904645 response to amyloid-beta 0.1092621030634493 0.9371620864530288 1.0 1524 +Biological Process GO:0051962 positive regulation of nervous system development 0.10925825701447389 0.937092377542778 1.0 1525 +Phenotype MP:0001231 abnormal epidermis stratum basale morphology 0.10922865617126365 0.936555867858194 1.0 1526 +Phenotype MP:0003548 pulmonary hypertension 0.10921439061780902 0.9362973073999665 1.0 1527 +Biological Process GO:0001562 response to protozoan 0.10918485163928127 0.9357619190010517 1.0 1528 +Biological Process GO:0032722 positive regulation of chemokine production 0.10917867662549152 0.9356499980440334 1.0 1529 +Biological Process GO:0048762 mesenchymal cell differentiation 0.10915356650877084 0.935194881927712 1.0 1530 +Phenotype MP:0005597 decreased susceptibility to type I hypersensitivity reaction 0.1091406869394157 0.9349614421691476 1.0 1531 +Phenotype MP:0006087 increased body mass index 0.10914035669831146 0.9349554566115938 1.0 1532 +Biological Process GO:0046006 regulation of activated T cell proliferation 0.10913946955474996 0.934939377302333 1.0 1533 +Phenotype MP:0002551 abnormal blood coagulation 0.10911002753671595 0.9344057462940285 1.0 1534 +Phenotype MP:0011049 impaired adaptive thermogenesis 0.10909949622911586 0.934214868335632 1.0 1535 +Biological Process GO:1903523 negative regulation of blood circulation 0.10906808078245334 0.9336454693066834 1.0 1536 +Phenotype MP:0002465 abnormal eosinophil physiology 0.10904738642118239 0.9332703879227078 1.0 1537 +Biological Process GO:0009620 response to fungus 0.10904069017014006 0.9331490196390715 1.0 1538 +Biological Process GO:2000059 negative regulation of ubiquitin-dependent protein catabolic process 0.10902387517953882 0.9328442511147533 1.0 1539 +Phenotype MP:0020154 impaired humoral immune response 0.10897995695105422 0.9320482415300126 1.0 1540 +Biological Process GO:0071219 cellular response to molecule of bacterial origin 0.10896282117725165 0.9317376588708421 1.0 1541 +Phenotype MP:0012082 delayed heart development 0.10891954754341138 0.9309533324421134 1.0 1542 +Biological Process GO:0002478 antigen processing and presentation of exogenous peptide antigen 0.10891717969486026 0.9309104156349711 1.0 1543 +Biological Process GO:0051654 establishment of mitochondrion localization 0.10889998991019878 0.9305988540391986 1.0 1544 +Biological Process GO:0043112 receptor metabolic process 0.1088895491553501 0.9304096173322947 1.0 1545 +Biological Process GO:0006997 nucleus organization 0.10882310498678727 0.9292053293441147 1.0 1546 +Phenotype MP:0006173 abnormal myeloid dendritic cell morphology 0.10880425015616646 0.9288635891052504 1.0 1547 +Biological Process GO:0001774 microglial cell activation 0.10880232473065898 0.9288286911320957 1.0 1548 +Phenotype MP:0011377 renal glomerulus fibrosis 0.10873164488617015 0.9275476323188782 1.0 1549 +Biological Process GO:0071398 cellular response to fatty acid 0.10869863034831029 0.9269492500644241 1.0 1550 +Biological Process GO:0039532 negative regulation of cytoplasmic pattern recognition receptor signaling pathway 0.10867447391311602 0.926511419245393 1.0 1551 +Biological Process GO:1900227 positive regulation of NLRP3 inflammasome complex assembly 0.10865766812294231 0.9262068174770838 1.0 1552 +Biological Process GO:0042542 response to hydrogen peroxide 0.10861571719670038 0.9254464648734027 1.0 1553 +Phenotype MP:0011176 abnormal erythroblast morphology 0.10858975288321493 0.9249758666022797 1.0 1554 +Phenotype MP:0003587 ureter obstruction 0.10856430906411974 0.9245147021935357 1.0 1555 +Phenotype MP:0001548 hyperlipidemia 0.10852755850070972 0.9238486051826043 1.0 1556 +Phenotype MP:0003352 increased circulating renin level 0.10852361263504584 0.923777087113754 1.0 1557 +Phenotype MP:0004366 abnormal strial marginal cell morphology 0.10849759433457806 0.9233055103387873 1.0 1558 +Phenotype MP:0009476 enlarged cecum 0.10846641434211723 0.9227403788727112 1.0 1559 +Biological Process GO:0120032 regulation of plasma membrane bounded cell projection assembly 0.108434011823353 0.9221530893486102 1.0 1560 +Phenotype MP:0013771 decreased effector memory T-helper cell number 0.10840772655323405 0.9216766737992099 1.0 1561 +Phenotype MP:0008680 abnormal interleukin-17 secretion 0.10839111348797048 0.9213755651334457 1.0 1562 +Biological Process GO:0045581 negative regulation of T cell differentiation 0.10836961169652015 0.9209858492301832 1.0 1563 +Phenotype MP:0004974 decreased regulatory T cell number 0.1083352193207564 0.9203624939243209 1.0 1564 +Biological Process GO:0060706 cell differentiation involved in embryonic placenta development 0.10829723955432136 0.9196741178410479 1.0 1565 +Phenotype MP:0001123 dilated uterus 0.10828945932581036 0.9195331026708117 1.0 1566 +Biological Process GO:0071634 regulation of transforming growth factor beta production 0.10828660443746152 0.9194813583594528 1.0 1567 +Phenotype MP:0021157 increased heart left ventricle wall thickness 0.10828566533297546 0.9194643372682619 1.0 1568 +Phenotype MP:0012704 abnormal embryonic neuroepithelial cell proliferation 0.10828039570057202 0.9193688261776297 1.0 1569 +Biological Process GO:0045063 T-helper 1 cell differentiation 0.10824892413494347 0.9187984100030359 1.0 1570 +Biological Process GO:0060688 regulation of morphogenesis of a branching structure 0.10821267933616519 0.918141479880396 1.0 1571 +Biological Process GO:0045620 negative regulation of lymphocyte differentiation 0.10820344001874238 0.9179740189996003 1.0 1572 +Biological Process GO:0044088 regulation of vacuole organization 0.10819727091858078 0.9178622052259736 1.0 1573 +Phenotype MP:0008098 decreased plasma cell number 0.10819342518166897 0.9177925019718165 1.0 1574 +Phenotype MP:0004722 abnormal platelet dense granule number 0.1081879456348912 0.9176931862228521 1.0 1575 +Phenotype MP:0020432 decreased platelet dense granule number 0.1081879456348912 0.9176931862228521 1.0 1575 +Phenotype MP:0002281 abnormal respiratory mucosa goblet cell morphology 0.10817962013642923 0.9175422881378851 1.0 1577 +Biological Process GO:0010656 negative regulation of muscle cell apoptotic process 0.1081499312842985 0.9170041833082629 1.0 1578 +Phenotype MP:0008553 increased circulating tumor necrosis factor level 0.10810420309934732 0.9161753686048941 1.0 1579 +Phenotype MP:0001938 delayed sexual maturation 0.10809483400241893 0.9160055554951059 1.0 1580 +Biological Process GO:0014020 primary neural tube formation 0.10809482917249613 0.9160054679536687 1.0 1581 +Phenotype MP:0030940 impaired autophagy 0.1080605215572158 0.9153836489155368 1.0 1582 +Biological Process GO:0001838 embryonic epithelial tube formation 0.10804997272941563 0.9151924534068279 1.0 1583 +Biological Process GO:0002793 positive regulation of peptide secretion 0.10799077851189887 0.9141195694101271 1.0 1584 +Phenotype MP:0004381 abnormal hair follicle melanocyte morphology 0.1079673799702261 0.9136954752678277 1.0 1585 +Biological Process GO:0071560 cellular response to transforming growth factor beta stimulus 0.10794837156482961 0.9133509515152008 1.0 1586 +Phenotype MP:0009233 enlarged sperm head 0.10791314784906048 0.9127125283289776 1.0 1587 +Phenotype MP:0005481 increased chronic myelocytic leukemia incidence 0.10790652821674662 0.9125925487453035 1.0 1588 +Biological Process GO:0032609 type II interferon production 0.10790074730930066 0.9124877708912263 1.0 1589 +Phenotype MP:0011514 skin hemorrhage 0.1078721298321611 0.9119690845306829 1.0 1590 +Phenotype MP:0003417 premature endochondral bone ossification 0.10783134429288932 0.9112298543454185 1.0 1591 +Phenotype MP:0002499 chronic inflammation 0.10776667518336047 0.9100577389665009 1.0 1592 +Phenotype MP:0002658 abnormal liver regeneration 0.10774834142984435 0.9097254431516042 1.0 1593 +Phenotype MP:0003243 abnormal dopaminergic neuron morphology 0.10771095428248312 0.9090478081769582 1.0 1594 +Phenotype MP:0003252 abnormal bile duct physiology 0.10770000240523825 0.9088493074732954 1.0 1595 +Phenotype MP:0008499 increased IgG1 level 0.10764433131602624 0.907840279510766 1.0 1596 +Phenotype MP:0005358 abnormal incisor morphology 0.10758415876661376 0.9067496634334935 1.0 1597 +Biological Process GO:0010936 negative regulation of macrophage cytokine production 0.10757740727783105 0.9066272939762603 1.0 1598 +Phenotype MP:0002751 abnormal autonomic nervous system morphology 0.10756287571400591 0.9063639121303796 1.0 1599 +Biological Process GO:0046636 negative regulation of alpha-beta T cell activation 0.1075517685040197 0.9061625960501591 1.0 1600 +Phenotype MP:0011364 abnormal metanephros morphology 0.10752710413223487 0.9057155589764935 1.0 1601 +Phenotype MP:0004194 abnormal kidney pelvis morphology 0.10752177786780837 0.9056190214411542 1.0 1602 +Biological Process GO:0007264 small GTPase-mediated signal transduction 0.10749699766692489 0.9051698849869831 1.0 1603 +Biological Process GO:0010719 negative regulation of epithelial to mesenchymal transition 0.10749343708707093 0.905105350150566 1.0 1604 +Phenotype MP:0031120 decreased susceptibility to induced thrombosis 0.10747259076709648 0.9047275145438303 1.0 1605 +Biological Process GO:0043300 regulation of leukocyte degranulation 0.10740637511442253 0.9035273683629155 1.0 1606 +Phenotype MP:0005337 abnormal retroperitoneal fat pad morphology 0.10737106173321398 0.902887320007562 1.0 1607 +Biological Process GO:0032652 regulation of interleukin-1 production 0.10736003073948375 0.9026873853325657 1.0 1608 +Phenotype MP:0003356 impaired luteinization 0.1073399749338424 0.9023238776486023 1.0 1609 +Phenotype MP:0008074 increased CD4-positive, alpha-beta T cell number 0.10733916112406472 0.902309127500303 1.0 1610 +Phenotype MP:0004274 abnormal embryonic/fetal subventricular zone morphology 0.10730567510905109 0.9017021998116107 1.0 1611 +Phenotype MP:0003191 abnormal cellular cholesterol metabolism 0.10729664493179913 0.9015385295568555 1.0 1612 +Phenotype MP:0001685 abnormal endoderm development 0.10729161366199724 0.9014473387432934 1.0 1613 +Biological Process GO:0042326 negative regulation of phosphorylation 0.10728067434923894 0.901249065768573 1.0 1614 +Biological Process GO:1900225 regulation of NLRP3 inflammasome complex assembly 0.10727871033207648 0.9012134683289709 1.0 1615 +Phenotype MP:0008484 decreased spleen germinal center size 0.10721086530533186 0.8999837900511996 1.0 1616 +Phenotype MP:0013763 increased T-helper cell number 0.10716758306662744 0.8991993076609355 1.0 1617 +Phenotype MP:0009298 increased mesenteric fat pad weight 0.10714711775756747 0.8988283778049617 1.0 1618 +Phenotype MP:0009750 impaired behavioral response to addictive substance 0.10708149461582916 0.8976389707726902 1.0 1619 +Phenotype MP:0003658 abnormal capillary morphology 0.10707689223452466 0.8975555534820244 1.0 1620 +Biological Process GO:0032436 positive regulation of proteasomal ubiquitin-dependent protein catabolic process 0.10707645810156563 0.8975476849042525 1.0 1621 +Biological Process GO:0032816 positive regulation of natural killer cell activation 0.10706461695619651 0.8973330663840308 1.0 1622 +Biological Process GO:0048284 organelle fusion 0.10704395003682732 0.8969584823793341 1.0 1623 +Phenotype MP:0003924 diaphragmatic hernia 0.10701344963178272 0.8964056683066424 1.0 1624 +Biological Process GO:0030336 negative regulation of cell migration 0.10700954528211182 0.8963349027073125 1.0 1625 +Phenotype MP:0008588 abnormal circulating interleukin level 0.1069973351783251 0.8961135968855554 1.0 1626 +Biological Process GO:0003094 glomerular filtration 0.10698731037493037 0.8959318992200825 1.0 1627 +Biological Process GO:0048873 homeostasis of number of cells within a tissue 0.10696653234638676 0.8955553013826144 1.0 1628 +Biological Process GO:0050796 regulation of insulin secretion 0.10696312895852411 0.895493615621309 1.0 1629 +Phenotype MP:0001777 abnormal body temperature homeostasis 0.10695412571819896 0.8953304335932575 1.0 1630 +Phenotype MP:0002811 macrocytic anemia 0.10688444170887945 0.8940674241041352 1.0 1631 +Phenotype MP:0000523 cortical renal glomerulopathies 0.10680737414537333 0.8926705890918805 1.0 1632 +Phenotype MP:0011820 decreased pancreatic beta cell proliferation 0.10678726431542307 0.8923061022275359 1.0 1633 +Phenotype MP:0003564 abnormal insulin secretion 0.10675903318591873 0.8917944183448084 1.0 1634 +Phenotype MP:0005172 decreased eye pigmentation 0.10675041337880231 0.891638185971144 1.0 1635 +Phenotype MP:0020982 abnormal skin adnexa development 0.10672519227507848 0.8911810582363824 1.0 1636 +Phenotype MP:0002762 ectopic cerebellar granule cells 0.10670661598780895 0.8908443665430771 1.0 1637 +Biological Process GO:0060395 SMAD protein signal transduction 0.10669647930283943 0.8906606410452222 1.0 1638 +Biological Process GO:0048864 stem cell development 0.106679869564555 0.8903595926803256 1.0 1639 +Phenotype MP:0009505 abnormal mammary gland lobule morphology 0.10664641730986879 0.8897532768911824 1.0 1640 +Phenotype MP:0000607 abnormal hepatocyte morphology 0.10664228939187903 0.8896784591583583 1.0 1641 +Biological Process GO:1900744 regulation of p38MAPK cascade 0.10658113833585936 0.888570107833902 1.0 1642 +Biological Process GO:0043304 regulation of mast cell degranulation 0.10657357849522531 0.888433087152252 1.0 1643 +Phenotype MP:0020326 dilated capillary 0.1065724831011935 0.8884132333426045 1.0 1644 +Phenotype MP:0001714 absent trophoblast giant cells 0.10649908166782807 0.8870828462457505 1.0 1645 +Phenotype MP:0000938 motor neuron degeneration 0.1064846749267313 0.8868217267882131 1.0 1646 +Biological Process GO:1903531 negative regulation of secretion by cell 0.10646422719187298 0.8864511154613203 1.0 1647 +Biological Process GO:0050863 regulation of T cell activation 0.10642615643214459 0.8857610901418157 1.0 1648 +Phenotype MP:0011334 abnormal nephrogenic zone morphology 0.1064094142285874 0.8854576408689044 1.0 1649 +Phenotype MP:0013557 abnormal merocrine gland physiology 0.1063923358133173 0.8851480978222865 1.0 1650 +Phenotype MP:0010290 increased muscle tumor incidence 0.106379035759808 0.8849070368679568 1.0 1651 +Biological Process GO:0006913 nucleocytoplasmic transport 0.10635659267856912 0.8845002602653091 1.0 1652 +Biological Process GO:0051169 nuclear transport 0.10635659267856912 0.8845002602653091 1.0 1652 +Biological Process GO:0043434 response to peptide hormone 0.10635312081938908 0.8844373334743264 1.0 1654 +Phenotype MP:0002462 abnormal granulocyte physiology 0.10634889464927522 0.884360734940336 1.0 1655 +Phenotype MP:0005241 abnormal retina ganglion layer morphology 0.10634365641978927 0.8842657930216438 1.0 1656 +Biological Process GO:0060606 tube closure 0.10632890106415938 0.8839983549916292 1.0 1657 +Phenotype MP:0003645 increased pancreatic beta cell number 0.10625972119694294 0.8827444829827732 1.0 1658 +Biological Process GO:0070098 chemokine-mediated signaling pathway 0.10625794156791679 0.8827122275432672 1.0 1659 +Biological Process GO:0099550 trans-synaptic signaling, modulating synaptic transmission 0.10622171165922911 0.8820555673007032 1.0 1660 +Biological Process GO:0016331 morphogenesis of embryonic epithelium 0.10618325768063186 0.8813585962116812 1.0 1661 +Biological Process GO:1901532 regulation of hematopoietic progenitor cell differentiation 0.10617285550934885 0.8811700588246075 1.0 1662 +Phenotype MP:0001836 abnormal antigen presentation via MHC class I 0.10616667299617666 0.8810580019427008 1.0 1663 +Phenotype MP:0009170 abnormal pancreatic islet size 0.10616343084795898 0.8809992386194643 1.0 1664 +Biological Process GO:0032663 regulation of interleukin-2 production 0.10615515394743325 0.8808492213628997 1.0 1665 +Biological Process GO:0046328 regulation of JNK cascade 0.10615509770970866 0.8808482020647781 1.0 1666 +Phenotype MP:0002286 cryptorchism 0.1061437528156417 0.8806425780055488 1.0 1667 +Biological Process GO:0097553 calcium ion transmembrane import into cytosol 0.10607796691522786 0.8794502210030667 1.0 1668 +Phenotype MP:0004991 decreased bone strength 0.10607235818908978 0.879348563902629 1.0 1669 +Phenotype MP:0003141 cardiac fibrosis 0.10602923103644946 0.8785668924179445 1.0 1670 +Phenotype MP:0004783 abnormal cardinal vein morphology 0.1060219304820087 0.8784345712495074 1.0 1671 +Phenotype MP:0010026 decreased liver cholesterol level 0.10602143132867425 0.8784255241897289 1.0 1672 +Biological Process GO:0042310 vasoconstriction 0.10601054118126652 0.8782281423276885 1.0 1673 +Phenotype MP:0000336 decreased mast cell number 0.10600368080047973 0.8781037992234768 1.0 1674 +Phenotype MP:0008131 abnormal Peyer's patch number 0.10597614120762078 0.8776046493116522 1.0 1675 +Phenotype MP:0003008 enhanced long-term potentiation 0.1059664785460368 0.8774295153980052 1.0 1676 +Biological Process GO:0141087 positive regulation of inflammasome-mediated signaling pathway 0.10593903667626026 0.8769321366985661 1.0 1677 +Phenotype MP:0008289 abnormal adrenal medulla morphology 0.10593840882241978 0.8769207569664577 1.0 1678 +Phenotype MP:0020177 abnormal IgG2b level 0.10590218013490771 0.8762641188574705 1.0 1679 +Phenotype MP:0005097 polychromatophilia 0.10587060478440957 0.8756918216017449 1.0 1680 +Phenotype MP:0004468 small zygomatic bone 0.10586173758386186 0.8755311052689294 1.0 1681 +Biological Process GO:0010829 negative regulation of glucose transmembrane transport 0.10585463486330382 0.8754023698021991 1.0 1682 +Biological Process GO:0050673 epithelial cell proliferation 0.10582504010162752 0.8748659703442675 1.0 1683 +Phenotype MP:0001606 impaired hematopoiesis 0.10582075767922683 0.8747883522482176 1.0 1684 +Phenotype MP:0011066 abnormal renal tubule epithelial cell primary cilium morphology 0.10576273198666764 0.873736647545362 1.0 1685 +Biological Process GO:0009749 response to glucose 0.10574455160458707 0.8734071315587265 1.0 1686 +Biological Process GO:0048679 regulation of axon regeneration 0.1057277629612291 0.8731028405732096 1.0 1687 +Phenotype MP:0031216 decreased susceptibility to myocardial ischemic injury 0.10571867037158222 0.8729380391056011 1.0 1688 +Biological Process GO:0044843 cell cycle G1/S phase transition 0.10570184983508091 0.8726331700628931 1.0 1689 +Biological Process GO:0000082 G1/S transition of mitotic cell cycle 0.10570184983508091 0.8726331700628931 1.0 1689 +Biological Process GO:0140894 endolysosomal toll-like receptor signaling pathway 0.10567596827498571 0.8721640716813168 1.0 1691 +Phenotype MP:0002865 increased growth rate 0.10565316662083823 0.8717507960125203 1.0 1692 +Phenotype MP:0008139 fused podocyte foot processes 0.10559730005040735 0.8707382249898713 1.0 1693 +Phenotype MP:0008664 decreased interleukin-12 secretion 0.10557826600906894 0.8703932365906458 1.0 1694 +Phenotype MP:0013411 abnormal Langerhans cell number 0.1055483835278912 0.8698516222711687 1.0 1695 +Biological Process GO:0003157 endocardium development 0.10554225047608379 0.8697404618671437 1.0 1696 +Biological Process GO:0051346 negative regulation of hydrolase activity 0.10553268507202473 0.8695670907277411 1.0 1697 +Biological Process GO:0048485 sympathetic nervous system development 0.10552849829547395 0.8694912061946305 1.0 1698 +Phenotype MP:0002220 large lymphoid organs 0.10550881237110787 0.8691344025388235 1.0 1699 +Biological Process GO:0046631 alpha-beta T cell activation 0.10550713553980184 0.8691040102885517 1.0 1700 +Biological Process GO:0009880 embryonic pattern specification 0.10548444245545052 0.8686927024267759 1.0 1701 +Phenotype MP:0008552 abnormal circulating tumor necrosis factor level 0.10547916918603617 0.8685971254160088 1.0 1702 +Phenotype MP:0000293 absent myocardial trabeculae 0.10536578909857086 0.8665421327750196 1.0 1703 +Phenotype MP:0005026 decreased susceptibility to parasitic infection 0.10534207052428024 0.8661122381020515 1.0 1704 +Phenotype MP:0030016 increased adipocyte glucose uptake 0.10530888461498522 0.865510749772748 1.0 1705 +Biological Process GO:0021884 forebrain neuron development 0.10530107671103761 0.8653692329904576 1.0 1706 +Phenotype MP:0002351 abnormal cervical lymph node morphology 0.1052876486349601 0.8651258516512927 1.0 1707 +Phenotype MP:0000181 abnormal circulating LDL cholesterol level 0.10526638549398726 0.8647404612427974 1.0 1708 +Phenotype MP:0000790 abnormal stratification in cerebral cortex 0.10524652762008901 0.8643805410342417 1.0 1709 +Phenotype MP:0008817 hematoma 0.1052383964520498 0.864233165151432 1.0 1710 +Biological Process GO:0048514 blood vessel morphogenesis 0.10521846612126418 0.8638719316754967 1.0 1711 +Biological Process GO:0032494 response to peptidoglycan 0.1051901577661234 0.8633588480927149 1.0 1712 +Phenotype MP:0008133 decreased Peyer's patch number 0.10517356220207352 0.8630580566331388 1.0 1713 +Phenotype MP:0030197 small nasal septum 0.10516332811669549 0.8628725657713017 1.0 1714 +Phenotype MP:0003797 abnormal compact bone morphology 0.10515770390381729 0.8627706279766286 1.0 1715 +Phenotype MP:0001554 increased circulating free fatty acids level 0.10513330155581113 0.8623283400343931 1.0 1716 +Biological Process GO:1903351 cellular response to dopamine 0.10509208641374901 0.8615813233798072 1.0 1717 +Phenotype MP:0004881 abnormal lung size 0.1050912217247254 0.8615656510547987 1.0 1718 +Phenotype MP:0011572 abnormal aorta bulb morphology 0.10507840136907798 0.861333284533487 1.0 1719 +Phenotype MP:0002981 increased liver weight 0.1050764757507936 0.8612983830662875 1.0 1720 +Phenotype MP:0002190 disorganized myocardium 0.10505490151950125 0.8609073542045895 1.0 1721 +Biological Process GO:0009746 response to hexose 0.10505161496030835 0.8608477859408267 1.0 1722 +Biological Process GO:0034284 response to monosaccharide 0.10505161496030835 0.8608477859408267 1.0 1722 +Phenotype MP:0010996 increased aorta wall thickness 0.10503374696640477 0.8605239319308152 1.0 1724 +Biological Process GO:0042886 amide transport 0.10502736363124299 0.8604082351883299 1.0 1725 +Phenotype MP:0005408 hypopigmentation 0.1049982028937495 0.859879702336622 1.0 1726 +Phenotype MP:0002378 abnormal gut-associated lymphoid tissue morphology 0.1049948045534087 0.8598181080606955 1.0 1727 +Biological Process GO:0034109 homotypic cell-cell adhesion 0.10497006618091387 0.8593697297381572 1.0 1728 +Phenotype MP:0008347 decreased gamma-delta T cell number 0.10493214556667285 0.8586824257772132 1.0 1729 +Phenotype MP:0013425 abnormal memory-marker NK cell number 0.10493138352950304 0.8586686139976395 1.0 1730 +Phenotype MP:0004367 abnormal strial intermediate cell morphology 0.10489340759354548 0.8579803073410466 1.0 1731 +Phenotype MP:0009390 abnormal otic pigmentation 0.10489340759354548 0.8579803073410466 1.0 1731 +Phenotype MP:0002416 abnormal proerythroblast morphology 0.10486920737980032 0.8575416830440606 1.0 1733 +Biological Process GO:0072594 establishment of protein localization to organelle 0.10486725410433795 0.8575062802957408 1.0 1734 +Phenotype MP:0004771 increased anti-single stranded DNA antibody level 0.10481602270106638 0.856577720801175 1.0 1735 +Phenotype MP:0000333 decreased bone marrow cell number 0.10478082443913372 0.8559397589609237 1.0 1736 +Biological Process GO:0007213 G protein-coupled acetylcholine receptor signaling pathway 0.10477919062781271 0.8559101464397438 1.0 1737 +Biological Process GO:0033628 regulation of cell adhesion mediated by integrin 0.10471075499805249 0.8546697635940192 1.0 1738 +Phenotype MP:0002433 abnormal T-helper 1 cell morphology 0.10468584096136113 0.8542182013911436 1.0 1739 +Biological Process GO:0022411 cellular component disassembly 0.1046711069702222 0.8539511505884867 1.0 1740 +Phenotype MP:0008208 decreased pro-B cell number 0.10461887759085053 0.8530045029658604 1.0 1741 +Phenotype MP:0004003 abnormal vascular endothelial cell physiology 0.10457425567612244 0.8521957392010491 1.0 1742 +Biological Process GO:1903317 regulation of protein maturation 0.10457423448188174 0.852195355059445 1.0 1743 +Phenotype MP:0001879 abnormal lymphatic vessel morphology 0.10457315222984209 0.8521757394459197 1.0 1744 +Phenotype MP:0008209 decreased pre-B cell number 0.10457061651985544 0.8521297801820071 1.0 1745 +Phenotype MP:0001713 decreased trophoblast giant cell number 0.10456935332657169 0.8521068850426552 1.0 1746 +Phenotype MP:0002773 decreased circulating luteinizing hormone level 0.10456772547196336 0.852077380485766 1.0 1747 +Phenotype MP:0006059 decreased susceptibility to ischemic brain injury 0.10456544746926599 0.8520360921177298 1.0 1748 +Phenotype MP:0002230 abnormal primitive streak formation 0.10455940454509449 0.8519265652600593 1.0 1749 +Phenotype MP:0008634 abnormal circulating interleukin-18 level 0.10447691798984304 0.8504315120473499 1.0 1750 +Biological Process GO:0007212 dopamine receptor signaling pathway 0.10447627624982925 0.8504198806309764 1.0 1751 +Biological Process GO:0032446 protein modification by small protein conjugation 0.1044739277020762 0.8503773136471485 1.0 1752 +Biological Process GO:0043302 positive regulation of leukocyte degranulation 0.10445180334043558 0.8499763137769379 1.0 1753 +Biological Process GO:0043306 positive regulation of mast cell degranulation 0.10445180334043558 0.8499763137769379 1.0 1753 +Phenotype MP:0002212 abnormal secondary sex determination 0.10443042896239774 0.8495889072176783 1.0 1755 +Biological Process GO:0032024 positive regulation of insulin secretion 0.10441581150961576 0.8493239686506998 1.0 1756 +Biological Process GO:0097006 regulation of plasma lipoprotein particle levels 0.10438532316507976 0.8487713731724452 1.0 1757 +Phenotype MP:0006298 abnormal platelet activation 0.10435380011655293 0.8482000238800574 1.0 1758 +Biological Process GO:0032825 positive regulation of natural killer cell differentiation 0.10427325569016122 0.8467401713856031 1.0 1759 +Phenotype MP:0013434 abnormal CD8-positive, naive alpha-beta T cell number 0.10421255472700008 0.8456399779090789 1.0 1760 +Biological Process GO:0120193 tight junction organization 0.10418312529606943 0.8451065750396421 1.0 1761 +Phenotype MP:0021186 decreased bone mineral density of vertebrae 0.10417796808626956 0.8450131015874363 1.0 1762 +Biological Process GO:0002768 immune response-regulating cell surface receptor signaling pathway 0.10415318173581911 0.8445638536735269 1.0 1763 +Biological Process GO:0070293 renal absorption 0.10411748412474109 0.8439168412244611 1.0 1764 +Biological Process GO:1900017 positive regulation of cytokine production involved in inflammatory response 0.10410308000404789 0.8436557692612426 1.0 1765 +Biological Process GO:0014032 neural crest cell development 0.10409691310539004 0.8435439953894551 1.0 1766 +Phenotype MP:0004046 abnormal mitosis 0.10405833073072523 0.8428446971459931 1.0 1767 +Biological Process GO:2001212 regulation of vasculogenesis 0.10405422146131815 0.8427702174152027 1.0 1768 +Biological Process GO:0006835 dicarboxylic acid transport 0.10403323952012178 0.8423899236994706 1.0 1769 +Biological Process GO:0032103 positive regulation of response to external stimulus 0.10403145232070043 0.8423575310479835 1.0 1770 +Biological Process GO:0035909 aorta morphogenesis 0.10399510392259281 0.8416987232070938 1.0 1771 +Biological Process GO:0010876 lipid localization 0.10391275779917153 0.8402062152947454 1.0 1772 +Phenotype MP:0000885 ectopic Purkinje cell 0.10391164077928694 0.8401859695206065 1.0 1773 +Phenotype MP:0001435 absent suckling reflex 0.1039035864815655 0.8400399868977676 1.0 1774 +Biological Process GO:0007398 ectoderm development 0.1038688590213096 0.8394105582488617 1.0 1775 +Phenotype MP:0003227 abnormal vascular branching morphogenesis 0.1038622278425293 0.839290369387667 1.0 1776 +Biological Process GO:0007599 hemostasis 0.1038401468414325 0.8388901554191122 1.0 1777 +Biological Process GO:1904383 response to sodium phosphate 0.10383657658572476 0.8388254452096752 1.0 1778 +Biological Process GO:0002460 adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains 0.10382195758931223 0.8385604786646847 1.0 1779 +Biological Process GO:0001843 neural tube closure 0.10379957856114996 0.838154863011936 1.0 1780 +Biological Process GO:2001222 regulation of neuron migration 0.10378968707785918 0.8379755817481317 1.0 1781 +Biological Process GO:0046661 male sex differentiation 0.10376690373628938 0.8375626379913419 1.0 1782 +Phenotype MP:0000711 thymus cortex hypoplasia 0.1037585424159978 0.8374110906424883 1.0 1783 +Phenotype MP:0003070 increased vascular permeability 0.1037165213071507 0.8366494659923625 1.0 1784 +Phenotype MP:0011448 decreased dopaminergic neuron number 0.10371135944166487 0.8365559081567294 1.0 1785 +Phenotype MP:0001273 decreased metastatic potential 0.10370689516049802 0.8364749939049391 1.0 1786 +Phenotype MP:0008281 abnormal hippocampus size 0.10368851665693113 0.836141887003836 1.0 1787 +Phenotype MP:0031585 semilunar valve stenosis 0.10367612898019285 0.8359173627059172 1.0 1788 +Biological Process GO:0043516 regulation of DNA damage response, signal transduction by p53 class mediator 0.10367099861865481 0.8358243758733791 1.0 1789 +Phenotype MP:0011862 decreased cranium length 0.10366469893518371 0.8357101953019659 1.0 1790 +Phenotype MP:0005581 abnormal renin activity 0.10364388098989796 0.8353328739810962 1.0 1791 +Biological Process GO:0032365 intracellular lipid transport 0.10361823964597439 0.8348681294721969 1.0 1792 +Phenotype MP:0000255 blood vessel congestion 0.10361110228991466 0.8347387662435494 1.0 1793 +Phenotype MP:0014195 abnormal endocrine pancreas secretion 0.10360742638844767 0.8346721412247075 1.0 1794 +Phenotype MP:0011367 abnormal kidney apoptosis 0.10360080356063417 0.8345521037232067 1.0 1795 +Phenotype MP:0002905 decreased circulating parathyroid hormone level 0.10356081329672084 0.8338272877533985 1.0 1796 +Phenotype MP:0008574 decreased circulating interferon-alpha level 0.10353043902186254 0.8332767597664776 1.0 1797 +Biological Process GO:0051099 positive regulation of binding 0.10352938421745495 0.833257641636092 1.0 1798 +Phenotype MP:0003644 thymus atrophy 0.10351988749876029 0.833085515405928 1.0 1799 +Biological Process GO:0045686 negative regulation of glial cell differentiation 0.10350103063944305 0.8327437383973245 1.0 1800 +Phenotype MP:0001829 increased activated T cell number 0.10349114764023981 0.8325646109060023 1.0 1801 +Biological Process GO:0040011 locomotion 0.1034525988839019 0.8318659219883567 1.0 1802 +Phenotype MP:0003672 abnormal ureter development 0.10344669048079969 0.8317588332996241 1.0 1803 +Phenotype MP:0003547 abnormal pulmonary pressure 0.10344570641879614 0.8317409973619319 1.0 1804 +Biological Process GO:0010662 regulation of striated muscle cell apoptotic process 0.1034120274337832 0.8311305721284996 1.0 1805 +Phenotype MP:0000334 decreased granulocyte number 0.10337982581627825 0.8305469239017256 1.0 1806 +Phenotype MP:0004207 increased squamous cell carcinoma incidence 0.10337730911402199 0.8305013091493313 1.0 1807 +Phenotype MP:0010766 abnormal NK cell physiology 0.10337590240436012 0.8304758128027702 1.0 1808 +Biological Process GO:0070972 protein localization to endoplasmic reticulum 0.10336356086690601 0.8302521247706504 1.0 1809 +Biological Process GO:0001525 angiogenesis 0.1033385694270964 0.8297991596508961 1.0 1810 +Biological Process GO:0032872 regulation of stress-activated MAPK cascade 0.10328414062142577 0.8288126478425928 1.0 1811 +Phenotype MP:0008873 increased physiological sensitivity to xenobiotic 0.10327837320218947 0.8287081144597647 1.0 1812 +Phenotype MP:0004834 ovary hemorrhage 0.10326999356244726 0.8285562350743334 1.0 1813 +Phenotype MP:0002418 increased susceptibility to viral infection 0.1032627475029364 0.8284249016161939 1.0 1814 +Phenotype MP:0009454 impaired contextual conditioning behavior 0.10324789579225446 0.8281557171690851 1.0 1815 +Biological Process GO:0046629 gamma-delta T cell activation 0.10324381543274985 0.8280817614248092 1.0 1816 +Biological Process GO:0003203 endocardial cushion morphogenesis 0.10322552686179687 0.8277502845353237 1.0 1817 +Phenotype MP:0009757 impaired behavioral response to morphine 0.10320795591338938 0.8274318144187467 1.0 1818 +Biological Process GO:0051058 negative regulation of small GTPase mediated signal transduction 0.10319734822392934 0.8272395520535853 1.0 1819 +Phenotype MP:0020468 abnormal circadian behavior period 0.10319230269997437 0.8271481028861946 1.0 1820 +Phenotype MP:0008181 increased marginal zone B cell number 0.10318401242840491 0.8269978432819916 1.0 1821 +Biological Process GO:0045685 regulation of glial cell differentiation 0.10317657301731809 0.8268630053631074 1.0 1822 +Phenotype MP:0008559 abnormal interferon-gamma secretion 0.10314037322063851 0.8262068908949952 1.0 1823 +Phenotype MP:0004256 abnormal maternal decidual layer morphology 0.10312448187712131 0.8259188632993798 1.0 1824 +Phenotype MP:0004977 increased B-1 B cell number 0.10310196736487942 0.825510792023313 1.0 1825 +Biological Process GO:1901879 regulation of protein depolymerization 0.10309795903083907 0.8254381417269541 1.0 1826 +Phenotype MP:0008739 abnormal spleen iron level 0.10305018332354066 0.8245722160683032 1.0 1827 +Phenotype MP:0009584 decreased keratinocyte proliferation 0.10303483632935939 0.8242940547014455 1.0 1828 +Phenotype MP:0003927 increased cellular glucose import 0.10301754405765551 0.8239806355474133 1.0 1829 +Phenotype MP:0003059 decreased insulin secretion 0.10300907894329914 0.8238272069507666 1.0 1830 +Biological Process GO:0021543 pallium development 0.1030078997028483 0.8238058334406326 1.0 1831 +Phenotype MP:0002824 abnormal chorioallantoic fusion 0.10297153028491657 0.8231466446194066 1.0 1832 +Phenotype MP:0001177 atelectasis 0.10294129357379356 0.8225986099491694 1.0 1833 +Biological Process GO:0035249 synaptic transmission, glutamatergic 0.10287996488791817 0.8214870391171747 1.0 1834 +Biological Process GO:0048566 embryonic digestive tract development 0.10285706773218972 0.8210720325002857 1.0 1835 +Biological Process GO:0008053 mitochondrial fusion 0.10285376397345547 0.821012152498089 1.0 1836 +Phenotype MP:0000010 abnormal abdominal fat pad morphology 0.10285033531704801 0.8209500087491881 1.0 1837 +Biological Process GO:0006919 activation of cysteine-type endopeptidase activity involved in apoptotic process 0.10277090472735617 0.8195103443342519 1.0 1838 +Phenotype MP:0008734 decreased susceptibility to endotoxin shock 0.10276852643794387 0.8194672382884755 1.0 1839 +Phenotype MP:0011079 decreased macrophage cytokine production 0.10276851686525279 0.8194670647852601 1.0 1840 +Phenotype MP:0004183 abnormal sympathetic nervous system physiology 0.10275824646322951 0.8192809156910965 1.0 1841 +Biological Process GO:0033327 Leydig cell differentiation 0.10275415524398757 0.8192067631161355 1.0 1842 +Phenotype MP:0004086 absent heartbeat 0.10269565269303038 0.8181464154450077 1.0 1843 +Phenotype MP:0005582 increased renin activity 0.10265168315665629 0.817349475914474 1.0 1844 +Phenotype MP:0004532 abnormal inner hair cell stereociliary bundle morphology 0.10265104951534754 0.8173379912855976 1.0 1845 +Phenotype MP:0008551 abnormal circulating interferon-gamma level 0.10261860082714025 0.8167498649490738 1.0 1846 +Phenotype MP:0020151 abnormal circulating non-HDL cholesterol level 0.10257005257003615 0.8158699369713122 1.0 1847 +Biological Process GO:0034101 erythrocyte homeostasis 0.10255900238666782 0.8156696544877547 1.0 1848 +Biological Process GO:0045588 positive regulation of gamma-delta T cell differentiation 0.10254065201777829 0.8153370575223576 1.0 1849 +Biological Process GO:0046645 positive regulation of gamma-delta T cell activation 0.10254065201777829 0.8153370575223576 1.0 1849 +Phenotype MP:0012671 retina spots 0.10248673594891955 0.8143598389717928 1.0 1851 +Biological Process GO:0070201 regulation of establishment of protein localization 0.10248240185062674 0.8142812842599719 1.0 1852 +Phenotype MP:0002367 abnormal thymus lobule morphology 0.10247843863865913 0.8142094517926474 1.0 1853 +Phenotype MP:0000606 decreased hepatocyte number 0.10246879566388778 0.8140346746987557 1.0 1854 +Phenotype MP:0002828 abnormal renal glomerular capsule morphology 0.10245426213354725 0.8137712572101554 1.0 1855 +Biological Process GO:0070302 regulation of stress-activated protein kinase signaling cascade 0.10245253720196801 0.8137399931515293 1.0 1856 +Phenotype MP:0003223 decreased cardiomyocyte apoptosis 0.10241583400222642 0.81307475459813 1.0 1857 +Biological Process GO:0007204 positive regulation of cytosolic calcium ion concentration 0.10239334393489452 0.8126671263814331 1.0 1858 +Phenotype MP:0000786 abnormal embryonic neuroepithelial layer differentiation 0.10239183588849499 0.8126397933256683 1.0 1859 +Phenotype MP:0004998 decreased CNS synapse formation 0.1023775375423166 0.812380638505525 1.0 1860 +Phenotype MP:0031412 abnormal muscle triglyceride level 0.10235496824327817 0.8119715742291329 1.0 1861 +Phenotype MP:0009115 abnormal fat cell morphology 0.1023492625921203 0.8118681603810437 1.0 1862 +Biological Process GO:0060390 regulation of SMAD protein signal transduction 0.1023419993242286 0.8117365150242564 1.0 1863 +Biological Process GO:0003085 negative regulation of systemic arterial blood pressure 0.10233692287790286 0.8116445053947438 1.0 1864 +Phenotype MP:0002680 decreased corpora lutea number 0.10233153178232701 0.8115467928070849 1.0 1865 +Phenotype MP:0009010 abnormal diestrus 0.10232532837850028 0.8114343572860158 1.0 1866 +Phenotype MP:0012186 abnormal muscle precursor cell physiology 0.10229164356487841 0.810823826410149 1.0 1867 +Phenotype MP:0006049 semilunar valve regurgitation 0.10228932794323176 0.8107818562057721 1.0 1868 +Biological Process GO:0051865 protein autoubiquitination 0.10228110639781685 0.8106328422501218 1.0 1869 +Biological Process GO:0060441 epithelial tube branching involved in lung morphogenesis 0.10227943269017992 0.8106025066157617 1.0 1870 +Phenotype MP:0013435 decreased CD8-positive, naive alpha-beta T cell number 0.1022374616930174 0.8098417902304409 1.0 1871 +Phenotype MP:0009450 abnormal axon fasciculation 0.10221295002232411 0.8093975208351782 1.0 1872 +Biological Process GO:0021545 cranial nerve development 0.1021996488624789 0.8091564398287193 1.0 1873 +Phenotype MP:0005141 liver hyperplasia 0.10219092446340283 0.8089983117455685 1.0 1874 +Phenotype MP:0005048 abnormal thrombosis 0.10218110087988563 0.808820261152318 1.0 1875 +Phenotype MP:0008836 abnormal transforming growth factor beta level 0.10216880198966372 0.8085973460932154 1.0 1876 +Phenotype MP:0003628 abnormal leukocyte adhesion 0.10216308401035235 0.8084937087996759 1.0 1877 +Biological Process GO:1902175 regulation of oxidative stress-induced intrinsic apoptotic signaling pathway 0.10214722665597264 0.8082062972507492 1.0 1878 +Biological Process GO:0033209 tumor necrosis factor-mediated signaling pathway 0.10212421875193889 0.8077892833417731 1.0 1879 +Phenotype MP:0002175 decreased brain weight 0.1020969833936668 0.8072956476242934 1.0 1880 +Biological Process GO:0060443 mammary gland morphogenesis 0.10208293507051258 0.8070410244241747 1.0 1881 +Biological Process GO:0099068 postsynapse assembly 0.10204600249026063 0.8063716283924093 1.0 1882 +Biological Process GO:0035966 response to topologically incorrect protein 0.10199259336876854 0.8054035981669824 1.0 1883 +Phenotype MP:0009577 abnormal developmental vascular remodeling 0.10198971803599766 0.8053514833043407 1.0 1884 +Phenotype MP:0002389 abnormal Peyer's patch follicle morphology 0.10198319110916354 0.8052331839899529 1.0 1885 +Phenotype MP:0004447 small basioccipital bone 0.10196075903713442 0.8048266069271499 1.0 1886 +Phenotype MP:0004510 myositis 0.10193935351275174 0.8044386358462811 1.0 1887 +Phenotype MP:0002987 abnormal urine osmolality 0.10191919667690119 0.8040732970088844 1.0 1888 +Phenotype MP:0010872 increased trabecular bone mass 0.10189350076805215 0.8036075635210312 1.0 1889 +Phenotype MP:0010080 abnormal hepatocyte physiology 0.1018222604709017 0.802316346609324 1.0 1890 +Biological Process GO:0002931 response to ischemia 0.10179497760689815 0.8018218498594467 1.0 1891 +Biological Process GO:0051283 negative regulation of sequestering of calcium ion 0.10179240653746113 0.801775249712184 1.0 1892 +Biological Process GO:0051209 release of sequestered calcium ion into cytosol 0.10179240653746113 0.801775249712184 1.0 1892 +Biological Process GO:1905330 regulation of morphogenesis of an epithelium 0.10173484675825395 0.8007319896007122 1.0 1894 +Biological Process GO:2000377 regulation of reactive oxygen species metabolic process 0.10173293718997845 0.800697379036888 1.0 1895 +Phenotype MP:0010684 abnormal hair follicle outer root sheath morphology 0.10167416290429043 0.7996321062251588 1.0 1896 +Biological Process GO:0017156 calcium-ion regulated exocytosis 0.10163914251666717 0.7989973683231227 1.0 1897 +Biological Process GO:0071222 cellular response to lipopolysaccharide 0.10163604863263331 0.7989412922601756 1.0 1898 +Phenotype MP:0002268 abnormal terminal bronchiole morphology 0.10159549335393525 0.7982062355042591 1.0 1899 +Biological Process GO:0040014 regulation of multicellular organism growth 0.1015874202901107 0.7980599127493506 1.0 1900 +Biological Process GO:0048668 collateral sprouting 0.10154670173411617 0.7973218966233173 1.0 1901 +Phenotype MP:0004067 abnormal trabecula carnea morphology 0.1015130265147196 0.7967115396409696 1.0 1902 +Biological Process GO:0098761 cellular response to interleukin-7 0.10150562342091318 0.7965773599659239 1.0 1903 +Phenotype MP:0011805 decreased cell migration 0.10150439789469079 0.7965551475349348 1.0 1904 +Phenotype MP:0010639 abnormal tumor pathology 0.10149580829097082 0.7963994625921186 1.0 1905 +Biological Process GO:0031023 microtubule organizing center organization 0.10146628107163924 0.7958642873264102 1.0 1906 +Biological Process GO:0002026 regulation of the force of heart contraction 0.1014550068984883 0.7956599450704077 1.0 1907 +Biological Process GO:0021602 cranial nerve morphogenesis 0.10138947758716188 0.7944722386966048 1.0 1908 +Phenotype MP:0013664 abnormal immature B cell number 0.10137314741990722 0.7941762575037457 1.0 1909 +Biological Process GO:0001945 lymph vessel development 0.10135820885010349 0.7939054987514829 1.0 1910 +Biological Process GO:0001947 heart looping 0.10131286881409929 0.7930837191743649 1.0 1911 +Phenotype MP:0000022 abnormal ear shape 0.10130275972149949 0.7929004937829927 1.0 1912 +Biological Process GO:0003018 vascular process in circulatory system 0.1012951330277676 0.7927622614015888 1.0 1913 +Phenotype MP:0004111 abnormal coronary artery morphology 0.10128668297377752 0.7926091057712327 1.0 1914 +Phenotype MP:0012775 abnormal brain weight 0.10127450989456688 0.7923884710129141 1.0 1915 +Phenotype MP:0004734 small thoracic cavity 0.10127206016073598 0.7923440700505632 1.0 1916 +Biological Process GO:0009743 response to carbohydrate 0.10126406357889328 0.7921991335171104 1.0 1917 +Phenotype MP:0020010 decreased bone mineral density of femur 0.10124852442993093 0.7919174893811889 1.0 1918 +Biological Process GO:0060644 mammary gland epithelial cell differentiation 0.10122947093099377 0.791572148316666 1.0 1919 +Phenotype MP:0000383 abnormal hair follicle orientation 0.10117670994962835 0.7906158655084482 1.0 1920 +Phenotype MP:0009498 abnormal extrahepatic bile duct morphology 0.10116166539631699 0.7903431858251548 1.0 1921 +Biological Process GO:0040020 regulation of meiotic nuclear division 0.10114602334819878 0.7900596766614953 1.0 1922 +Phenotype MP:0004933 abnormal epididymis epithelium morphology 0.10112842412425871 0.7897406940562383 1.0 1923 +Phenotype MP:0001093 small trigeminal ganglion 0.10107787529755397 0.7888245061328458 1.0 1924 +Biological Process GO:1903038 negative regulation of leukocyte cell-cell adhesion 0.10106523798793632 0.7885954572862033 1.0 1925 +Biological Process GO:0050868 negative regulation of T cell activation 0.10106523798793632 0.7885954572862033 1.0 1925 +Phenotype MP:0020507 increased dendritic spine density 0.10105860661509258 0.7884752649076456 1.0 1927 +Biological Process GO:0003143 embryonic heart tube morphogenesis 0.10105414275096547 0.7883943582146216 1.0 1928 +Phenotype MP:0003334 pancreas fibrosis 0.10102405295841299 0.7878489864156877 1.0 1929 +Phenotype MP:0001937 abnormal sexual maturation 0.1010236668164628 0.787841987665874 1.0 1930 +Biological Process GO:0060638 mesenchymal-epithelial cell signaling 0.10099713622617701 0.7873611257348486 1.0 1931 +Biological Process GO:0120034 positive regulation of plasma membrane bounded cell projection assembly 0.10096606651563111 0.7867979931076223 1.0 1932 +Phenotype MP:0030572 abnormal pilosebaceous unit morphology 0.10095987194028477 0.7866857176010906 1.0 1933 +Biological Process GO:0060340 positive regulation of type I interferon-mediated signaling pathway 0.10093128200649415 0.7861675304585373 1.0 1934 +Biological Process GO:0032228 regulation of synaptic transmission, GABAergic 0.10092673259725127 0.7860850732764696 1.0 1935 +Phenotype MP:0009258 abnormal thymocyte apoptosis 0.1008803315837914 0.7852440636836374 1.0 1936 +Phenotype MP:0008566 increased interferon-gamma secretion 0.10083819679973904 0.7844803786919166 1.0 1937 +Biological Process GO:0006968 cellular defense response 0.10083574967242348 0.7844360249721632 1.0 1938 +Biological Process GO:0019216 regulation of lipid metabolic process 0.10082405124240001 0.7842239931405887 1.0 1939 +Phenotype MP:0000182 increased circulating LDL cholesterol level 0.10079271316772243 0.7836559964642329 1.0 1940 +Phenotype MP:0009969 abnormal cerebral cortex pyramidal cell morphology 0.10078754973222848 0.7835624101724995 1.0 1941 +Phenotype MP:0012690 abnormal stride length 0.10077743303468656 0.7833790469429897 1.0 1942 +Phenotype MP:0006237 abnormal choroid vasculature morphology 0.10077563533543754 0.7833464639841118 1.0 1943 +Phenotype MP:0008880 lacrimal gland inflammation 0.10076820059565905 0.7832117107318078 1.0 1944 +Biological Process GO:0055003 cardiac myofibril assembly 0.10074404806693549 0.7827739507168193 1.0 1945 +Biological Process GO:0061640 cytoskeleton-dependent cytokinesis 0.10073558870395061 0.7826206263626933 1.0 1946 +Phenotype MP:0000135 decreased compact bone thickness 0.10068522444366368 0.7817077836707155 1.0 1947 +Biological Process GO:0006508 proteolysis 0.10065392157213526 0.7811404250447803 1.0 1948 +Phenotype MP:0004792 abnormal synaptic vesicle number 0.10065389029284677 0.7811398581135924 1.0 1949 +Biological Process GO:0032720 negative regulation of tumor necrosis factor production 0.10055638408476142 0.779372576534034 1.0 1950 +Biological Process GO:1903556 negative regulation of tumor necrosis factor superfamily cytokine production 0.10055638408476142 0.779372576534034 1.0 1950 +Biological Process GO:0003231 cardiac ventricle development 0.10051504115012955 0.7786232436632917 1.0 1952 +Biological Process GO:1905521 regulation of macrophage migration 0.10048581234004206 0.7780934770086925 1.0 1953 +Biological Process GO:0006986 response to unfolded protein 0.10046611389282933 0.7777364463786584 1.0 1954 +Phenotype MP:0004053 abnormal synchondrosis 0.10044769596267367 0.7774026248780909 1.0 1955 +Phenotype MP:0010400 increased liver glycogen level 0.10039208706245051 0.776394724079222 1.0 1956 +Biological Process GO:0016082 synaptic vesicle priming 0.10038808592835347 0.7763222042804739 1.0 1957 +Biological Process GO:0021885 forebrain cell migration 0.10036617054595842 0.7759249921195638 1.0 1958 +Phenotype MP:0005170 cleft upper lip 0.10035465227664242 0.775716225666737 1.0 1959 +Phenotype MP:0003771 abnormal lip shape 0.10035465227664242 0.775716225666737 1.0 1959 +Phenotype MP:0011003 reduced AMPA-mediated synaptic currents 0.10035242185807913 0.7756757997521311 1.0 1961 +Phenotype MP:0008009 delayed cellular replicative senescence 0.10032808581262831 0.7752347135311708 1.0 1962 +Phenotype MP:0000961 abnormal dorsal root ganglion morphology 0.10031808664133313 0.7750534804426544 1.0 1963 +Biological Process GO:0071902 positive regulation of protein serine/threonine kinase activity 0.10031805582859377 0.7750529219675814 1.0 1964 +Phenotype MP:0009345 abnormal trabecular bone thickness 0.10030686041406 0.7748500071966191 1.0 1965 +Biological Process GO:0002903 negative regulation of B cell apoptotic process 0.10027241641833395 0.7742257162887033 1.0 1966 +Biological Process GO:0030218 erythrocyte differentiation 0.10026519205502582 0.7740947760701345 1.0 1967 +Phenotype MP:0008525 decreased cranium height 0.10026511846631625 0.7740934422886919 1.0 1968 +Phenotype MP:0004768 abnormal axonal transport 0.10020204402576782 0.7729502299834342 1.0 1969 +Biological Process GO:0070228 regulation of lymphocyte apoptotic process 0.10020126317436662 0.7729360771994749 1.0 1970 +Biological Process GO:0097192 extrinsic apoptotic signaling pathway in absence of ligand 0.10019950618645856 0.7729042321259522 1.0 1971 +Biological Process GO:0038034 signal transduction in absence of ligand 0.10019950618645856 0.7729042321259522 1.0 1971 +Biological Process GO:0070243 regulation of thymocyte apoptotic process 0.10019780664549427 0.7728734282674196 1.0 1973 +Biological Process GO:0032496 response to lipopolysaccharide 0.10018500844341682 0.7726414632753738 1.0 1974 +Phenotype MP:0010551 abnormal coronary vessel morphology 0.10018490558669002 0.7726395990166545 1.0 1975 +Phenotype MP:0002651 abnormal sciatic nerve morphology 0.1001726033610616 0.7724166235039399 1.0 1976 +Phenotype MP:0003957 abnormal nitric oxide homeostasis 0.10013452271561796 0.7717264190077161 1.0 1977 +Biological Process GO:0050769 positive regulation of neurogenesis 0.1001101596401992 0.7712848428736995 1.0 1978 +Phenotype MP:0004592 small mandible 0.10010859156878182 0.7712564218758391 1.0 1979 +Biological Process GO:0060947 cardiac vascular smooth muscle cell differentiation 0.10010105673265324 0.7711198543961214 1.0 1980 +Biological Process GO:0048565 digestive tract development 0.10007975373271738 0.7707337415514601 1.0 1981 +Biological Process GO:0003401 axis elongation 0.1000741172134414 0.7706315807056546 1.0 1982 +Phenotype MP:0011368 increased kidney apoptosis 0.10006551187796298 0.7704756106276919 1.0 1983 +Phenotype MP:0031023 decreased susceptibility to Riboviria infection induced morbidity/mortality 0.10005675370103229 0.7703168703273146 1.0 1984 +Phenotype MP:0008577 increased circulating interferon-gamma level 0.10005461983162334 0.77027819434787 1.0 1985 +Phenotype MP:0020918 abnormal susceptibility to Ortervirales infection 0.10003469227447348 0.7699170111435585 1.0 1986 +Phenotype MP:0031391 increased locomotor activity 0.10002759561107855 0.7697883854617638 1.0 1987 +Phenotype MP:0009506 abnormal mammary gland alveolus morphology 0.10001210893970147 0.76950769247215 1.0 1988 +Biological Process GO:0060411 cardiac septum morphogenesis 0.09999163026105362 0.7691365202949245 1.0 1989 +Phenotype MP:0003586 dilated ureter 0.09997986144426152 0.7689232127164812 1.0 1990 +Phenotype MP:0008045 decreased NK cell number 0.09995933743777075 0.7685512189806759 1.0 1991 +Phenotype MP:0008895 abnormal intraepithelial T cell number 0.09995917493801343 0.7685482737033091 1.0 1992 +Phenotype MP:0004973 increased regulatory T cell number 0.0999513411826023 0.7684062883681319 1.0 1993 +Phenotype MP:0010428 abnormal heart right ventricle outflow tract morphology 0.09993812195986118 0.7681666924561875 1.0 1994 +Biological Process GO:2001236 regulation of extrinsic apoptotic signaling pathway 0.09992471042955064 0.7679236110059197 1.0 1995 +Phenotype MP:0004222 iris synechia 0.09981246122975418 0.765889115490036 1.0 1996 +Phenotype MP:0004135 abnormal mammary gland embryonic development 0.09980894046600597 0.7658253023130048 1.0 1997 +Phenotype MP:0004007 abnormal lung vasculature morphology 0.09980300692756516 0.7657177580510143 1.0 1998 +Phenotype MP:0014435 increased interferon level 0.09978565869423517 0.7654033246030933 1.0 1999 +Biological Process GO:0002429 immune response-activating cell surface receptor signaling pathway 0.0997653165392327 0.7650346268911189 1.0 2000 +Phenotype MP:0008783 decreased B cell apoptosis 0.09972482742972599 0.7643007694392805 1.0 2001 +Phenotype MP:0014099 abnormal chondrocyte proliferation 0.09970557187679352 0.7639517661843084 1.0 2002 +Biological Process GO:0070665 positive regulation of leukocyte proliferation 0.0996911325676344 0.7636900564368007 1.0 2003 +Biological Process GO:0007565 female pregnancy 0.09968957523471944 0.7636618300722655 1.0 2004 +Phenotype MP:0002655 abnormal keratinocyte morphology 0.09967332108448879 0.763367226673589 1.0 2005 +Biological Process GO:0097191 extrinsic apoptotic signaling pathway 0.0996464787027802 0.7628807135819966 1.0 2006 +Phenotype MP:0000536 hydroureter 0.09964608461290014 0.7628735707774573 1.0 2007 +Phenotype MP:0008528 polycystic kidney 0.09962724395910438 0.7625320874908655 1.0 2008 +Phenotype MP:0011818 abnormal pancreatic beta cell proliferation 0.09961559047526036 0.7623208703002925 1.0 2009 +Biological Process GO:2000379 positive regulation of reactive oxygen species metabolic process 0.09958367040229121 0.7617423250149794 1.0 2010 +Phenotype MP:0008571 abnormal synaptic bouton morphology 0.09954867307466908 0.7611080050711023 1.0 2011 +Phenotype MP:0001719 absent vitelline blood vessels 0.09953527144551044 0.76086510307734 1.0 2012 +Biological Process GO:0048541 Peyer's patch development 0.09953002210391126 0.7607699597536973 1.0 2013 +Biological Process GO:0048537 mucosa-associated lymphoid tissue development 0.09953002210391126 0.7607699597536973 1.0 2013 +Biological Process GO:1905809 negative regulation of synapse organization 0.09952405631475225 0.7606618309535391 1.0 2015 +Phenotype MP:0030939 abnormal autophagosome formation 0.09951596407702679 0.760515160675303 1.0 2016 +Biological Process GO:0048660 regulation of smooth muscle cell proliferation 0.09950188164518847 0.7602599192617363 1.0 2017 +Phenotype MP:0001426 polydipsia 0.09947914294625226 0.7598477846442367 1.0 2018 +Phenotype MP:0005536 decreased Leydig cell number 0.09946749436771762 0.7596366563614684 1.0 2019 +Phenotype MP:0009269 decreased fat cell size 0.09944933967342517 0.7593076059611342 1.0 2020 +Phenotype MP:0004201 fetal growth retardation 0.09943894451506174 0.7591191956819014 1.0 2021 +Phenotype MP:0005100 abnormal choroid pigmentation 0.09942687116560456 0.7589003685065018 1.0 2022 +Phenotype MP:0008211 decreased mature B cell number 0.09941984459061282 0.7587730131637587 1.0 2023 +Phenotype MP:0002963 decreased urine protein level 0.09941846127993137 0.758747940919292 1.0 2024 +Phenotype MP:0010017 visceral vascular congestion 0.09941356922369748 0.7586592733253196 1.0 2025 +Phenotype MP:0008838 decreased transforming growth factor beta level 0.09939409574026714 0.7583063201212922 1.0 2026 +Phenotype MP:0009657 failure of chorioallantoic fusion 0.09938244607415103 0.7580951721263155 1.0 2027 +Phenotype MP:0003546 decreased alcohol consumption 0.09933896811276832 0.7573071422995258 1.0 2028 +Biological Process GO:0032412 regulation of monoatomic ion transmembrane transporter activity 0.09927934753750522 0.7562265306493126 1.0 2029 +Phenotype MP:0009548 abnormal platelet aggregation 0.09927908297882948 0.7562217355733524 1.0 2030 +Biological Process GO:0001914 regulation of T cell mediated cytotoxicity 0.09926678641030307 0.7559988625945417 1.0 2031 +Biological Process GO:0045623 negative regulation of T-helper cell differentiation 0.09923577616204016 0.7554368077099481 1.0 2032 +Phenotype MP:0004564 increased myocardial fiber size 0.09916317115762807 0.7541208557372397 1.0 2033 +Phenotype MP:0000496 abnormal small intestine morphology 0.09915248488053918 0.7539271689861693 1.0 2034 +Phenotype MP:0010174 decreased mammary gland epithelial cell proliferation 0.09914705427585457 0.7538287403033866 1.0 2035 +Biological Process GO:0072539 T-helper 17 cell differentiation 0.09913969018318658 0.7536952675165984 1.0 2036 +Phenotype MP:0010219 increased T-helper 17 cell number 0.0991093754600233 0.7531458188928863 1.0 2037 +Phenotype MP:0008051 abnormal memory T cell physiology 0.09910577301316625 0.7530805252249568 1.0 2038 +Phenotype MP:0002965 increased circulating serum albumin level 0.09910235909955722 0.753018648686489 1.0 2039 +Phenotype MP:0002051 increased skin papilloma incidence 0.09908823589556204 0.7527626682852905 1.0 2040 +Biological Process GO:0010821 regulation of mitochondrion organization 0.09908315547975977 0.7526705867097666 1.0 2041 +Phenotype MP:0004147 increased porphyrin level 0.09904127387964945 0.7519114906291089 1.0 2042 +Phenotype MP:0011989 abnormal porphyrin level 0.09904127387964945 0.7519114906291089 1.0 2042 +Biological Process GO:0098760 response to interleukin-7 0.09899071178160812 0.7509950621652509 1.0 2044 +Biological Process GO:0009896 positive regulation of catabolic process 0.09891388514465338 0.749602593901172 1.0 2045 +Phenotype MP:0005331 insulin resistance 0.09887980581307043 0.7489849124618785 1.0 2046 +Biological Process GO:0086004 regulation of cardiac muscle cell contraction 0.09884384678110814 0.7483331618087294 1.0 2047 +Phenotype MP:0011804 increased cell migration 0.09883652024866296 0.7482003697938758 1.0 2048 +Biological Process GO:0090199 regulation of release of cytochrome c from mitochondria 0.09883619935923216 0.7481945537336344 1.0 2049 +Biological Process GO:0032963 collagen metabolic process 0.09882444380970701 0.7479814866218952 1.0 2050 +Phenotype MP:0006346 small pharyngeal arch 0.09879575412241337 0.7474614914659667 1.0 2051 +Biological Process GO:0043114 regulation of vascular permeability 0.09877577769385604 0.747099422476638 1.0 2052 +Biological Process GO:0097530 granulocyte migration 0.09874530120607761 0.746547041899872 1.0 2053 +Biological Process GO:0045879 negative regulation of smoothened signaling pathway 0.09869980855448623 0.7457224961941019 1.0 2054 +Biological Process GO:0051345 positive regulation of hydrolase activity 0.09869209620676855 0.7455827113504058 1.0 2055 +Phenotype MP:0030529 abnormal head skin morphology 0.09868127259250148 0.7453865353889563 1.0 2056 +Phenotype MP:0030761 increased adrenaline level 0.09867675372697637 0.7453046318059964 1.0 2057 +Phenotype MP:0001212 skin lesions 0.09865621893390297 0.744932442565421 1.0 2058 +Phenotype MP:0002903 abnormal circulating parathyroid hormone level 0.09862664089335793 0.744396346174831 1.0 2059 +Phenotype MP:0004492 abnormal orientation of inner hair cell stereociliary bundles 0.09859791809304397 0.743875750851672 1.0 2060 +Phenotype MP:0005466 abnormal T-helper 2 physiology 0.09858903105839945 0.7437146750296032 1.0 2061 +Biological Process GO:0048639 positive regulation of developmental growth 0.0985781244802435 0.7435169953633594 1.0 2062 +Phenotype MP:0005185 decreased circulating progesterone level 0.09856925429135177 0.7433562248673737 1.0 2063 +Biological Process GO:1902176 negative regulation of oxidative stress-induced intrinsic apoptotic signaling pathway 0.09855498957798414 0.7430976796355642 1.0 2064 +Phenotype MP:0004733 abnormal thoracic cavity morphology 0.09851827512946176 0.7424322372001405 1.0 2065 +Biological Process GO:0034976 response to endoplasmic reticulum stress 0.09846089568979943 0.7413922457088105 1.0 2066 +Phenotype MP:0005465 abnormal T-helper 1 physiology 0.09843809474548593 0.7409789829056204 1.0 2067 +Phenotype MP:0005658 increased susceptibility to diet-induced obesity 0.0984377334823402 0.740972435079432 1.0 2068 +Phenotype MP:0010200 enlarged lymphatic vessel 0.09842663548933839 0.7407712860553104 1.0 2069 +Biological Process GO:0001952 regulation of cell-matrix adhesion 0.09838439174783364 0.7400056262303728 1.0 2070 +Biological Process GO:0070227 lymphocyte apoptotic process 0.0983788242877095 0.7399047170686329 1.0 2071 +Phenotype MP:0013022 increased Ly6C high monocyte number 0.09834301648960364 0.7392557075005279 1.0 2072 +Phenotype MP:0004890 decreased energy expenditure 0.09832510671199424 0.7389310961687512 1.0 2073 +Phenotype MP:0009542 decreased thymocyte apoptosis 0.09830860157375976 0.7386319436599763 1.0 2074 +Phenotype MP:0000688 lymphoid hyperplasia 0.0982924274902387 0.7383387914552676 1.0 2075 +Biological Process GO:0021801 cerebral cortex radial glia-guided migration 0.09828017071395923 0.7381166397034066 1.0 2076 +Biological Process GO:0022030 telencephalon glial cell migration 0.09828017071395923 0.7381166397034066 1.0 2076 +Biological Process GO:1903076 regulation of protein localization to plasma membrane 0.09827760574286892 0.7380701500875247 1.0 2078 +Biological Process GO:0008543 fibroblast growth factor receptor signaling pathway 0.0982775285412526 0.7380687508228305 1.0 2079 +Phenotype MP:0004245 genital hemorrhage 0.09827184789093246 0.7379657901101967 1.0 2080 +Biological Process GO:0022898 regulation of transmembrane transporter activity 0.09825399893889963 0.737642281230491 1.0 2081 +Phenotype MP:0009766 increased susceptibility to xenobiotic induced morbidity/mortality 0.09824842519142774 0.7375412581117622 1.0 2082 +Phenotype MP:0010157 abnormal small intestinal crypt cell proliferation 0.09824763252735469 0.73752689122536 1.0 2083 +Phenotype MP:0011278 increased ear pigmentation 0.09824557363878894 0.7374895742595169 1.0 2084 +Phenotype MP:0009845 abnormal neural crest cell morphology 0.09822007484828987 0.7370274135044748 1.0 2085 +Phenotype MP:0009335 decreased splenocyte proliferation 0.09818929262029608 0.7364694914441319 1.0 2086 +Biological Process GO:0070570 regulation of neuron projection regeneration 0.09815003101769215 0.7357578823227401 1.0 2087 +Biological Process GO:0070233 negative regulation of T cell apoptotic process 0.09814372853138542 0.7356436509504612 1.0 2088 +Phenotype MP:0002375 abnormal thymus medulla morphology 0.09810317935947277 0.7349087048788752 1.0 2089 +Phenotype MP:0014438 decreased interleukin level 0.09810141805657868 0.7348767815970466 1.0 2090 +Biological Process GO:0062042 regulation of cardiac epithelial to mesenchymal transition 0.09808358985525256 0.7345536488199753 1.0 2091 +Phenotype MP:0008662 abnormal interleukin-12 secretion 0.09807109214344345 0.7343271301572094 1.0 2092 +Phenotype MP:0005220 abnormal exocrine pancreas morphology 0.09803171110090503 0.7336133562095953 1.0 2093 +Phenotype MP:0010294 increased kidney tumor incidence 0.09802055752066019 0.7334111996772074 1.0 2094 +Phenotype MP:0030310 abnormal cranial foramen morphology 0.09796829618132707 0.7324639727863246 1.0 2095 +Phenotype MP:0001034 abnormal parasympathetic ganglion morphology 0.0979460296633341 0.7320603963591145 1.0 2096 +Phenotype MP:0011479 abnormal catecholamine level 0.09789918824472243 0.7312114045062027 1.0 2097 +Phenotype MP:0003244 loss of dopaminergic neurons 0.09788782520279993 0.7310054515205239 1.0 2098 +Phenotype MP:0003038 decreased myocardial infarct size 0.09786499411535243 0.7305916423787313 1.0 2099 +Biological Process GO:0032943 mononuclear cell proliferation 0.09785010341934153 0.7303217513299087 1.0 2100 +Phenotype MP:0012770 abnormal effector memory CD4-positive, alpha-beta T cell number 0.09782107712282406 0.7297956551954634 1.0 2101 +Phenotype MP:0010843 abnormal effector memory CD4-positive, alpha-beta T cell morphology 0.09782107712282406 0.7297956551954634 1.0 2101 +Phenotype MP:0002335 decreased airway responsiveness 0.09779606165734434 0.7293422546149825 1.0 2103 +Biological Process GO:1901185 negative regulation of ERBB signaling pathway 0.09779031982962338 0.7292381850735298 1.0 2104 +Phenotype MP:0008584 photoreceptor outer segment degeneration 0.0977703862837005 0.7288768933238396 1.0 2105 +Biological Process GO:0034103 regulation of tissue remodeling 0.09773574276058727 0.7282489860197692 1.0 2106 +Phenotype MP:0005036 diarrhea 0.09772631707689183 0.7280781472855308 1.0 2107 +Biological Process GO:0010950 positive regulation of endopeptidase activity 0.09770354194656139 0.7276653523559012 1.0 2108 +Phenotype MP:0009340 abnormal splenocyte apoptosis 0.09769691836896555 0.7275453012647372 1.0 2109 +Phenotype MP:0005310 abnormal salivary gland physiology 0.09765962945486928 0.7268694467494392 1.0 2110 +Phenotype MP:0031534 abnormal heart right ventricle wall morphology 0.09765754513098224 0.7268316687732085 1.0 2111 +Biological Process GO:0048841 regulation of axon extension involved in axon guidance 0.09765050512791673 0.726704070049168 1.0 2112 +Biological Process GO:0061458 reproductive system development 0.0976451102729392 0.7266062893230647 1.0 2113 +Phenotype MP:0010845 decreased effector memory CD4-positive, alpha-beta T cell number 0.09764003937148003 0.7265143801932099 1.0 2114 +Phenotype MP:0010464 abnormal aortic arch and aortic arch branch attachment 0.09763830741083768 0.7264829887341444 1.0 2115 +Phenotype MP:0002912 abnormal excitatory postsynaptic potential 0.0976265065016646 0.7262690994873658 1.0 2116 +Phenotype MP:0010602 abnormal pulmonary valve cusp morphology 0.09761958312731156 0.7261436146366801 1.0 2117 +Biological Process GO:2001224 positive regulation of neuron migration 0.09757609974386794 0.725355486536062 1.0 2118 +Biological Process GO:0021795 cerebral cortex cell migration 0.09753357618154623 0.7245847550117412 1.0 2119 +Phenotype MP:0009334 abnormal splenocyte proliferation 0.09751356290105817 0.7242220180881381 1.0 2120 +Biological Process GO:1902850 microtubule cytoskeleton organization involved in mitosis 0.09750978726212833 0.7241535853466462 1.0 2121 +Phenotype MP:0004947 skin inflammation 0.09750604241252403 0.7240857106558561 1.0 2122 +Phenotype MP:0020414 abnormal fibroblast physiology 0.09749636759486358 0.7239103564156221 1.0 2123 +Phenotype MP:0008546 abnormal vesicle-mediated transport 0.09748725745680908 0.7237452368864447 1.0 2124 +Biological Process GO:0097284 hepatocyte apoptotic process 0.09743136973576416 0.7227322825129165 1.0 2125 +Phenotype MP:0013300 abnormal submandibular gland physiology 0.0973745758986394 0.7217029049568212 1.0 2126 +Phenotype MP:0009866 abnormal aorta wall morphology 0.09736131239536483 0.7214625064685829 1.0 2127 +Biological Process GO:0070534 protein K63-linked ubiquitination 0.09736009255520772 0.7214403970964517 1.0 2128 +Biological Process GO:0031589 cell-substrate adhesion 0.09732934834184381 0.7208831640440856 1.0 2129 +Phenotype MP:0005455 increased susceptibility to weight gain 0.09732873172989454 0.7208719880691288 1.0 2130 +Phenotype MP:0003814 vascular smooth muscle hypoplasia 0.09730117685257034 0.7203725611292623 1.0 2131 +Phenotype MP:0004946 abnormal regulatory T cell physiology 0.09729024418165466 0.7201744085366835 1.0 2132 +Phenotype MP:0009846 abnormal neural crest morphology 0.09727956121662329 0.7199807818160291 1.0 2133 +Phenotype MP:0002295 abnormal pulmonary circulation 0.0972395094099272 0.7192548503949234 1.0 2134 +Phenotype MP:0000133 abnormal long bone metaphysis morphology 0.09723754482039282 0.7192192425811883 1.0 2135 +Biological Process GO:0032715 negative regulation of interleukin-6 production 0.0972138555440174 0.7187898789273921 1.0 2136 +Phenotype MP:0009940 abnormal hippocampus pyramidal cell morphology 0.09720267821539841 0.7185872919602143 1.0 2137 +Phenotype MP:0003925 abnormal cellular glucose uptake 0.09718861266711099 0.7183323565578141 1.0 2138 +Biological Process GO:1902337 regulation of apoptotic process involved in morphogenesis 0.09718826317997131 0.7183260221695084 1.0 2139 +Biological Process GO:0007040 lysosome organization 0.09717043539937287 0.7180028970180466 1.0 2140 +Biological Process GO:0080171 lytic vacuole organization 0.09717043539937287 0.7180028970180466 1.0 2140 +Biological Process GO:0060707 trophoblast giant cell differentiation 0.09717027788430199 0.7180000420871789 1.0 2142 +Phenotype MP:0001680 abnormal mesoderm development 0.0971558058292924 0.7177377388273246 1.0 2143 +Biological Process GO:0031032 actomyosin structure organization 0.09715370002456736 0.717699571514968 1.0 2144 +Biological Process GO:0071711 basement membrane organization 0.09713370075929584 0.7173370886145138 1.0 2145 +Phenotype MP:0002748 abnormal pulmonary valve morphology 0.09711919903152821 0.7170742475415326 1.0 2146 +Phenotype MP:0008027 abnormal spinal cord white matter morphology 0.09710304679757731 0.7167814913561503 1.0 2147 +Biological Process GO:0030858 positive regulation of epithelial cell differentiation 0.0970976112495332 0.7166829730759117 1.0 2148 +Phenotype MP:0005078 abnormal cytotoxic T cell physiology 0.09706264575682333 0.7160492301337983 1.0 2149 +Phenotype MP:0000611 jaundice 0.09699005603013033 0.7147335550668588 1.0 2150 +Phenotype MP:0001654 hepatic necrosis 0.09698243915490279 0.714595500643989 1.0 2151 +Biological Process GO:1902229 regulation of intrinsic apoptotic signaling pathway in response to DNA damage 0.09697457494569683 0.7144529633395406 1.0 2152 +Phenotype MP:0002243 abnormal vomeronasal organ morphology 0.09697153351276977 0.7143978379429837 1.0 2153 +Phenotype MP:0010724 thick interventricular septum 0.09694230756267375 0.7138681231251889 1.0 2154 +Phenotype MP:0008055 increased urine osmolality 0.09694215700096986 0.7138653942227827 1.0 2155 +Biological Process GO:0045921 positive regulation of exocytosis 0.09693724002693305 0.713776274998345 1.0 2156 +Biological Process GO:0090178 regulation of establishment of planar polarity involved in neural tube closure 0.09691134833146808 0.7133069929151087 1.0 2157 +Biological Process GO:0003283 atrial septum development 0.09688180574182492 0.7127715390654101 1.0 2158 +Phenotype MP:0008500 increased IgG2a level 0.0968782532575454 0.7127071509597485 1.0 2159 +Phenotype MP:0000628 abnormal mammary gland development 0.09687534933567299 0.7126545179250487 1.0 2160 +Biological Process GO:0046651 lymphocyte proliferation 0.09684744976863302 0.7121488435492774 1.0 2161 +Phenotype MP:0010099 abnormal thoracic cage shape 0.0968297457920555 0.7118279623222791 1.0 2162 +Biological Process GO:1901019 regulation of calcium ion transmembrane transporter activity 0.09681908755749413 0.7116347838367161 1.0 2163 +Biological Process GO:0051445 regulation of meiotic cell cycle 0.09680466404520127 0.7113733604044215 1.0 2164 +Phenotype MP:0008164 abnormal B-1a B cell morphology 0.09679092971435488 0.7111244282554946 1.0 2165 +Biological Process GO:0070229 negative regulation of lymphocyte apoptotic process 0.09678194649863447 0.7109616091696168 1.0 2166 +Phenotype MP:0002277 abnormal respiratory mucosa morphology 0.09675665910704079 0.7105032799797515 1.0 2167 +Biological Process GO:0060338 regulation of type I interferon-mediated signaling pathway 0.09675274662506739 0.7104323669839769 1.0 2168 +Phenotype MP:0003667 increased hemangiosarcoma incidence 0.0967391020908881 0.7101850623826576 1.0 2169 +Phenotype MP:0009346 decreased trabecular bone thickness 0.09673012036649586 0.7100222703268207 1.0 2170 +Phenotype MP:0004829 increased anti-chromatin antibody level 0.09669782403371174 0.7094369054035258 1.0 2171 +Biological Process GO:0018193 peptidyl-amino acid modification 0.09668681216801533 0.7092373174205248 1.0 2172 +Phenotype MP:0008169 increased B-1b cell number 0.09667184237649695 0.7089659927805889 1.0 2173 +Biological Process GO:0015800 acidic amino acid transport 0.09666786037330677 0.7088938197259091 1.0 2174 +Phenotype MP:0005432 abnormal pro-B cell morphology 0.09664798372531869 0.708533559240526 1.0 2175 +Biological Process GO:0034504 protein localization to nucleus 0.09663346308208798 0.7082703753283539 1.0 2176 +Phenotype MP:0030970 ketosis 0.09658956563078758 0.7074747423261469 1.0 2177 +Biological Process GO:0030888 regulation of B cell proliferation 0.09653777092569515 0.7065359730926191 1.0 2178 +Biological Process GO:1903978 regulation of microglial cell activation 0.09651030285735018 0.7060381195490824 1.0 2179 +Phenotype MP:0003866 abnormal defecation 0.09649923328106313 0.7058374855725411 1.0 2180 +Biological Process GO:0099175 regulation of postsynapse organization 0.09647293371091115 0.7053608108377465 1.0 2181 +Phenotype MP:0010680 abnormal skin adnexa physiology 0.0964376742933879 0.7047217405639825 1.0 2182 +Biological Process GO:0034389 lipid droplet organization 0.09642045595681636 0.7044096614702404 1.0 2183 +Phenotype MP:0009920 abnormal transitional stage T2 B cell morphology 0.0964079853371218 0.7041836338469266 1.0 2184 +Phenotype MP:0006270 abnormal mammary gland growth during lactation 0.09640288456589152 0.70409118333312 1.0 2185 +Biological Process GO:0010720 positive regulation of cell development 0.09639497177744438 0.7039477655391132 1.0 2186 +Biological Process GO:0090279 regulation of calcium ion import 0.09638945856503223 0.7038478396068929 1.0 2187 +Biological Process GO:0021879 forebrain neuron differentiation 0.09636301093219457 0.7033684812639246 1.0 2188 +Phenotype MP:0000479 abnormal enterocyte morphology 0.09631551913978731 0.7025077015089771 1.0 2189 +Biological Process GO:0030099 myeloid cell differentiation 0.09630913004234543 0.7023919003262549 1.0 2190 +Phenotype MP:0005098 abnormal optic choroid morphology 0.09630142960480947 0.7022523313523501 1.0 2191 +Phenotype MP:0005169 abnormal male meiosis 0.09629148944224641 0.7020721677859427 1.0 2192 +Phenotype MP:0008968 abnormal lacrimal apparatus morphology 0.09628814878305181 0.7020116189698813 1.0 2193 +Biological Process GO:0045939 negative regulation of steroid metabolic process 0.0962795400196037 0.7018555867606163 1.0 2194 +Biological Process GO:0045785 positive regulation of cell adhesion 0.0961797087204399 0.7000461633450207 1.0 2195 +Phenotype MP:0012091 increased midbrain size 0.0961653523259457 0.6997859564101322 1.0 2196 +Biological Process GO:0002695 negative regulation of leukocyte activation 0.09613804793016978 0.6992910694009532 1.0 2197 +Phenotype MP:0030031 abnormal forehead morphology 0.09613429565807996 0.699223060179017 1.0 2198 +Biological Process GO:0001707 mesoderm formation 0.0961157938795667 0.698887718942827 1.0 2199 +Phenotype MP:0002405 respiratory system inflammation 0.0961047560800734 0.6986876609146624 1.0 2200 +Phenotype MP:0013534 abnormal major salivary gland physiology 0.09609694848449357 0.6985461497214797 1.0 2201 +Biological Process GO:0048608 reproductive structure development 0.09607758590823501 0.6981952066889642 1.0 2202 +Phenotype MP:0008613 abnormal circulating interleukin-17 level 0.09603973353279094 0.6975091395433084 1.0 2203 +Biological Process GO:1901888 regulation of cell junction assembly 0.09603138797111666 0.6973578778164129 1.0 2204 +Biological Process GO:1903052 positive regulation of proteolysis involved in protein catabolic process 0.09603071791184559 0.6973457331188574 1.0 2205 +Phenotype MP:0003253 dilated bile duct 0.09601161489661991 0.6969994945809707 1.0 2206 +Phenotype MP:0012776 abnormal liver cholesterol level 0.09600997557603841 0.6969697822054863 1.0 2207 +Biological Process GO:0042492 gamma-delta T cell differentiation 0.09600114609670807 0.6968097495626012 1.0 2208 +Phenotype MP:0030319 abnormal temporal bone petrous part morphology 0.09599333744863636 0.6966682192932024 1.0 2209 +Biological Process GO:0048146 positive regulation of fibroblast proliferation 0.09597208557611436 0.6962830331232471 1.0 2210 +Biological Process GO:0006910 phagocytosis, recognition 0.09595095845680002 0.6959001080815853 1.0 2211 +Phenotype MP:0030975 placenta hemorrhage 0.09594619931476922 0.6958138495324049 1.0 2212 +Phenotype MP:0010299 increased mammary gland tumor incidence 0.09593245311081555 0.6955647021856542 1.0 2213 +Biological Process GO:0002699 positive regulation of immune effector process 0.09592074740106715 0.6953525384104422 1.0 2214 +Phenotype MP:0010221 abnormal T-helper 17 cell differentiation 0.09591443142997158 0.695238062628916 1.0 2215 +Biological Process GO:0010035 response to inorganic substance 0.09588404946479112 0.6946873952563605 1.0 2216 +Biological Process GO:0097205 renal filtration 0.09587277404414485 0.694483030389741 1.0 2217 +Phenotype MP:0030306 abnormal cranial fossa morphology 0.09584680761341613 0.6940123937439844 1.0 2218 +Biological Process GO:0003205 cardiac chamber development 0.0958273833951454 0.6936603334616572 1.0 2219 +Phenotype MP:0003830 abnormal testis development 0.09581358514529503 0.6934102427928728 1.0 2220 +Biological Process GO:0001960 negative regulation of cytokine-mediated signaling pathway 0.09580510459161595 0.6932565343614222 1.0 2221 +Biological Process GO:0060761 negative regulation of response to cytokine stimulus 0.09580510459161595 0.6932565343614222 1.0 2221 +Biological Process GO:0050817 coagulation 0.09579818754867786 0.693131164266435 1.0 2223 +Biological Process GO:0007596 blood coagulation 0.09579818754867786 0.693131164266435 1.0 2223 +Biological Process GO:0033674 positive regulation of kinase activity 0.09579212818550964 0.6930213394550581 1.0 2225 +Biological Process GO:0044772 mitotic cell cycle phase transition 0.0957663706041999 0.6925544881655193 1.0 2226 +Biological Process GO:0061299 retina vasculature morphogenesis in camera-type eye 0.09575553163136641 0.6923580338329582 1.0 2227 +Phenotype MP:0008722 abnormal chemokine secretion 0.09573451785837594 0.6919771631719788 1.0 2228 +Phenotype MP:0006057 decreased vascular endothelial cell number 0.0956921502094461 0.6912092575483967 1.0 2229 +Phenotype MP:0011257 abnormal head fold morphology 0.09567077393205436 0.690821816563707 1.0 2230 +Biological Process GO:0001913 T cell mediated cytotoxicity 0.09566918730811036 0.6907930593048105 1.0 2231 +Phenotype MP:0008085 abnormal T-helper 1 cell number 0.09564484677336438 0.6903518917162245 1.0 2232 +Phenotype MP:0004400 abnormal cochlear outer hair cell number 0.09563610216494334 0.6901933973425183 1.0 2233 +Biological Process GO:0007350 blastoderm segmentation 0.09561205623396629 0.689757569391524 1.0 2234 +Phenotype MP:0003416 premature bone ossification 0.0956088483614056 0.6896994273080873 1.0 2235 +Biological Process GO:0002065 columnar/cuboidal epithelial cell differentiation 0.09558911780595547 0.6893418147223231 1.0 2236 +Biological Process GO:0031929 TOR signaling 0.0955756769431052 0.6890982016253205 1.0 2237 +Phenotype MP:0001190 reddish skin 0.09555161190929629 0.6886620274391116 1.0 2238 +Phenotype MP:0004032 abnormal interventricular groove morphology 0.09553929040277254 0.688438702463816 1.0 2239 +Phenotype MP:0012315 impaired learning 0.09553536306437715 0.688367520198203 1.0 2240 +Phenotype MP:0005152 pancytopenia 0.09552163590543006 0.6881187180385945 1.0 2241 +Phenotype MP:0008590 abnormal circulating interleukin-10 level 0.09551937188586623 0.688077683112209 1.0 2242 +Biological Process GO:0002688 regulation of leukocyte chemotaxis 0.09551019218540391 0.6879113027775463 1.0 2243 +Phenotype MP:0002399 abnormal pluripotent precursor cell morphology 0.0955000217632267 0.6877269657991829 1.0 2244 +Biological Process GO:0044839 cell cycle G2/M phase transition 0.09548607107683726 0.6874741122469593 1.0 2245 +Biological Process GO:0035272 exocrine system development 0.0954648719341964 0.6870898817961264 1.0 2246 +Biological Process GO:0007229 integrin-mediated signaling pathway 0.09545644894695737 0.686937216745514 1.0 2247 +Phenotype MP:0008735 increased susceptibility to endotoxin shock 0.0954395249094312 0.6866304717663062 1.0 2248 +Biological Process GO:0031330 negative regulation of cellular catabolic process 0.09543785370931845 0.6866001815803479 1.0 2249 +Biological Process GO:0035455 response to interferon-alpha 0.09542952878279487 0.6864492938616558 1.0 2250 +Biological Process GO:2000058 regulation of ubiquitin-dependent protein catabolic process 0.09542463570221005 0.6863606077015163 1.0 2251 +Phenotype MP:0005528 decreased renal glomerular filtration rate 0.09537380241833293 0.6854392640456759 1.0 2252 +Phenotype MP:0003643 spleen atrophy 0.09537239497472794 0.6854137543965344 1.0 2253 +Phenotype MP:0010834 abnormal CD4-positive, alpha-beta memory T cell morphology 0.0953684181465615 0.6853416751381813 1.0 2254 +Phenotype MP:0003446 renal hypoplasia 0.09533651368478857 0.6847634128028471 1.0 2255 +Biological Process GO:0043371 negative regulation of CD4-positive, alpha-beta T cell differentiation 0.09528536064526927 0.6838362736364696 1.0 2256 +Phenotype MP:0009305 decreased retroperitoneal fat pad weight 0.09528079345640883 0.6837534942021966 1.0 2257 +Biological Process GO:0021846 cell proliferation in forebrain 0.09526161992570159 0.6834059775845434 1.0 2258 +Biological Process GO:0010543 regulation of platelet activation 0.0952457766297723 0.6831188208423714 1.0 2259 +Phenotype MP:0000048 abnormal stria vascularis morphology 0.09524208331987016 0.6830518802989352 1.0 2260 +Biological Process GO:0032252 secretory granule localization 0.09522294757989624 0.6827050486311759 1.0 2261 +Phenotype MP:0006269 abnormal mammary gland growth during pregnancy 0.0952032720204351 0.6823484328373103 1.0 2262 +Phenotype MP:0002492 decreased IgE level 0.09519675170898889 0.682230253425577 1.0 2263 +Biological Process GO:0048484 enteric nervous system development 0.09517762188759704 0.6818835290309982 1.0 2264 +Biological Process GO:0033002 muscle cell proliferation 0.09515734440742596 0.6815160035381101 1.0 2265 +Biological Process GO:0003179 heart valve morphogenesis 0.09515018313131929 0.6813862067631359 1.0 2266 +Biological Process GO:0003148 outflow tract septum morphogenesis 0.09514706090353164 0.6813296169750123 1.0 2267 +Phenotype MP:0011075 abnormal macrophage activation involved in immune response 0.0951235888828903 0.6809041910403051 1.0 2268 +Phenotype MP:0003964 abnormal noradrenaline level 0.09511752353831793 0.6807942578171092 1.0 2269 +Biological Process GO:0048670 regulation of collateral sprouting 0.09511620621238992 0.6807703815338186 1.0 2270 +Phenotype MP:0003049 abnormal lumbar vertebrae morphology 0.0951106616821894 0.6806698879726075 1.0 2271 +Phenotype MP:0008671 abnormal interleukin-13 secretion 0.09510757523600699 0.6806139467193112 1.0 2272 +Biological Process GO:0060326 cell chemotaxis 0.0951049139934419 0.6805657122011571 1.0 2273 +Biological Process GO:0002687 positive regulation of leukocyte migration 0.09508865214095974 0.6802709692006288 1.0 2274 +Phenotype MP:0012532 abnormal surface ectoderm morphology 0.09504736716857132 0.6795226868845863 1.0 2275 +Biological Process GO:0003015 heart process 0.09502502751130493 0.6791177848218788 1.0 2276 +Phenotype MP:0001542 abnormal bone strength 0.09501549659890396 0.6789450388372552 1.0 2277 +Biological Process GO:0046887 positive regulation of hormone secretion 0.09500386403231031 0.678734200767889 1.0 2278 +Phenotype MP:0005629 abnormal lung weight 0.0949684358872912 0.678092072340175 1.0 2279 +Biological Process GO:0033500 carbohydrate homeostasis 0.09496347283177786 0.6780021178976909 1.0 2280 +Biological Process GO:0042593 glucose homeostasis 0.09496347283177786 0.6780021178976909 1.0 2280 +Phenotype MP:0008036 abnormal NK T cell morphology 0.0949220024739198 0.6772504755050743 1.0 2282 +Phenotype MP:0008038 abnormal NK T cell number 0.0949220024739198 0.6772504755050743 1.0 2282 +Phenotype MP:0000250 abnormal vasoconstriction 0.09490334579377879 0.6769123267061788 1.0 2284 +Biological Process GO:0051640 organelle localization 0.09489677229081372 0.6767931832082267 1.0 2285 +Phenotype MP:0008750 abnormal interferon level 0.09487682674101838 0.6764316738906188 1.0 2286 +Biological Process GO:0001508 action potential 0.09482651249315133 0.6755197376642921 1.0 2287 +Phenotype MP:0001337 dry eyes 0.09480855838263802 0.6751943228070171 1.0 2288 +Phenotype MP:0002463 abnormal neutrophil physiology 0.09479656003609316 0.6749768550452174 1.0 2289 +Biological Process GO:0001974 blood vessel remodeling 0.094752939072561 0.6741862333315158 1.0 2290 +Biological Process GO:1901890 positive regulation of cell junction assembly 0.09474176036914383 0.6739836214463812 1.0 2291 +Phenotype MP:0004837 abnormal neural fold formation 0.09474004788901846 0.6739525830680015 1.0 2292 +Biological Process GO:2000060 positive regulation of ubiquitin-dependent protein catabolic process 0.09473194025104559 0.6738056336631939 1.0 2293 +Biological Process GO:0048070 regulation of developmental pigmentation 0.09471787368311357 0.6735506797799283 1.0 2294 +Phenotype MP:0013616 decreased volumetric bone mineral density 0.09470435417459833 0.6733056412451228 1.0 2295 +Phenotype MP:0004893 decreased adiponectin level 0.09469544563839127 0.6731441757112999 1.0 2296 +Phenotype MP:0010868 increased bone trabecula number 0.09468414967574901 0.6729394385248882 1.0 2297 +Biological Process GO:0030879 mammary gland development 0.09465633131621976 0.6724352360198894 1.0 2298 +Biological Process GO:0090175 regulation of establishment of planar polarity 0.09463087362710398 0.6719738202196457 1.0 2299 +Phenotype MP:0010982 abnormal ureteric bud elongation 0.0945872979900777 0.6711840200402903 1.0 2300 +Biological Process GO:1905952 regulation of lipid localization 0.09456019810509642 0.6706928397505835 1.0 2301 +Phenotype MP:0008572 abnormal Purkinje cell dendrite morphology 0.09455907656109619 0.6706725119777044 1.0 2302 +Phenotype MP:0010018 pulmonary vascular congestion 0.09454831170581768 0.6704774010118091 1.0 2303 +Phenotype MP:0011089 perinatal lethality, complete penetrance 0.09453548461662498 0.6702449124462628 1.0 2304 +Biological Process GO:0006612 protein targeting to membrane 0.094524150032401 0.6700394752509875 1.0 2305 +Biological Process GO:0070266 necroptotic process 0.09451141528588336 0.6698086603789614 1.0 2306 +Phenotype MP:0010156 abnormal small intestinal crypt cell physiology 0.0944892428378239 0.6694067889515041 1.0 2307 +Biological Process GO:0099084 postsynaptic specialization organization 0.09448374162358975 0.6693070804839909 1.0 2308 +Biological Process GO:0099054 presynapse assembly 0.0944695003749364 0.6690489605456897 1.0 2309 +Phenotype MP:0006055 abnormal vascular endothelial cell morphology 0.09446405722962814 0.6689503045664753 1.0 2310 +Biological Process GO:1903035 negative regulation of response to wounding 0.09444459685711004 0.6685975889952527 1.0 2311 +Biological Process GO:1901184 regulation of ERBB signaling pathway 0.09444433988842516 0.6685929314864413 1.0 2312 +Biological Process GO:0008589 regulation of smoothened signaling pathway 0.09444221948294107 0.6685544995380884 1.0 2313 +Phenotype MP:0011454 abnormal glomerular endothelium fenestra morphology 0.0944080190432719 0.6679346230376381 1.0 2314 +Biological Process GO:0002698 negative regulation of immune effector process 0.09440446903444577 0.667870279799101 1.0 2315 +Phenotype MP:0008844 decreased subcutaneous adipose tissue amount 0.09440302532052414 0.6678441127573305 1.0 2316 +Phenotype MP:0000276 heart right ventricle hypertrophy 0.09438462853900542 0.6675106745718077 1.0 2317 +Phenotype MP:0004001 decreased hepatocyte proliferation 0.09436869515963986 0.6672218850843914 1.0 2318 +Biological Process GO:0042102 positive regulation of T cell proliferation 0.09435891015755915 0.6670445337723802 1.0 2319 +Biological Process GO:0016188 synaptic vesicle maturation 0.09435673438578873 0.6670050983205593 1.0 2320 +Phenotype MP:0008825 abnormal cardiac epithelial to mesenchymal transition 0.09434410469893595 0.6667761876350881 1.0 2321 +Biological Process GO:0032674 regulation of interleukin-5 production 0.09431776560094629 0.6662987964657119 1.0 2322 +Phenotype MP:0009630 absent axillary lymph nodes 0.09430717282428625 0.6661068043922299 1.0 2323 +Biological Process GO:0032814 regulation of natural killer cell activation 0.09425004459265807 0.6650713659990063 1.0 2324 +Biological Process GO:0046627 negative regulation of insulin receptor signaling pathway 0.09424073846736913 0.6649026942382729 1.0 2325 +Biological Process GO:0043467 regulation of generation of precursor metabolites and energy 0.0942110731365341 0.6643650157276864 1.0 2326 +Biological Process GO:0046622 positive regulation of organ growth 0.0941827954544785 0.6638524880887721 1.0 2327 +Biological Process GO:1904377 positive regulation of protein localization to cell periphery 0.09417163336416579 0.6636501773130136 1.0 2328 +Biological Process GO:0007200 phospholipase C-activating G protein-coupled receptor signaling pathway 0.09414763714097774 0.6632152503062931 1.0 2329 +Phenotype MP:0011178 increased erythroblast number 0.09413886697580742 0.6630562927213401 1.0 2330 +Phenotype MP:0000734 muscle hypoplasia 0.09413445623670369 0.662976348909317 1.0 2331 +Biological Process GO:0023061 signal release 0.09412517653106423 0.6628081559997333 1.0 2332 +Phenotype MP:0013284 abnormal renal glomerular filtration 0.0941233645139119 0.662775313531566 1.0 2333 +Biological Process GO:0098926 postsynaptic signal transduction 0.09412324394444427 0.6627731282327693 1.0 2334 +Phenotype MP:0014235 abnormal tumor-free survival time 0.0941215489299545 0.6627424064157315 1.0 2335 +Phenotype MP:0014237 decreased tumor-free survival time 0.0941215489299545 0.6627424064157315 1.0 2335 +Biological Process GO:0048066 developmental pigmentation 0.094111580207757 0.6625617252113517 1.0 2337 +Biological Process GO:0141085 regulation of inflammasome-mediated signaling pathway 0.09408386740612373 0.6620594359232526 1.0 2338 +Phenotype MP:0013504 increased embryonic tissue cell apoptosis 0.09408008570303728 0.6619908932700688 1.0 2339 +Biological Process GO:0031349 positive regulation of defense response 0.09406388019394929 0.6616971714829033 1.0 2340 +Biological Process GO:0002218 activation of innate immune response 0.09406291095892438 0.6616796042813946 1.0 2341 +Phenotype MP:0014101 decreased chondrocyte proliferation 0.09404325808432501 0.661323399646358 1.0 2342 +Phenotype MP:0009786 decreased susceptibility to infection induced morbidity/mortality 0.09404031071795338 0.661269979188327 1.0 2343 +Phenotype MP:0009964 abnormal cerebellum lobule morphology 0.09400872921785364 0.6606975704722353 1.0 2344 +Phenotype MP:0009903 abnormal medial nasal prominence morphology 0.09400476237510191 0.6606256721976353 1.0 2345 +Phenotype MP:0020332 impaired leukocyte tethering or rolling 0.09397154854799727 0.6600236778633127 1.0 2346 +Phenotype MP:0000240 extramedullary hematopoiesis 0.09396885792390652 0.6599749108105633 1.0 2347 +Phenotype MP:0005288 abnormal oxygen consumption 0.09395489676520064 0.6597218674495845 1.0 2348 +Phenotype MP:0000878 abnormal Purkinje cell number 0.09394822297573335 0.6596009062777476 1.0 2349 +Phenotype MP:0008548 abnormal circulating interferon level 0.0939414512888993 0.659478170734654 1.0 2350 +Phenotype MP:0010835 increased CD4-positive, alpha-beta memory T cell number 0.09394096247293793 0.659469311037807 1.0 2351 +Biological Process GO:0072337 modified amino acid transport 0.09391397450564964 0.6589801592351181 1.0 2352 +Phenotype MP:0011376 abnormal kidney corticomedullary boundary morphology 0.09389602763965066 0.658654875683295 1.0 2353 +Biological Process GO:0032885 regulation of polysaccharide biosynthetic process 0.09387977875503783 0.6583603677229456 1.0 2354 +Phenotype MP:0000417 short hair 0.09385751524172625 0.6579568457550174 1.0 2355 +Phenotype MP:0009661 abnormal pregnancy 0.09380114103777004 0.656935073970734 1.0 2356 +Phenotype MP:0004847 abnormal liver weight 0.09377708796121476 0.6564991165074856 1.0 2357 +Biological Process GO:0014015 positive regulation of gliogenesis 0.09377603355189867 0.656480005538059 1.0 2358 +Phenotype MP:0004794 increased anti-nuclear antigen antibody level 0.09377398848233587 0.6564429390390305 1.0 2359 +Phenotype MP:0031461 abnormal palatal shelf size 0.09375831259756506 0.6561588165924426 1.0 2360 +Phenotype MP:0001243 abnormal dermal layer morphology 0.09374980219908025 0.6560045672295327 1.0 2361 +Phenotype MP:0001443 poor grooming 0.09373529087536947 0.6557415522318968 1.0 2362 +Phenotype MP:0020393 increased neuronal precursor proliferation 0.09372980800239206 0.6556421761961929 1.0 2363 +Biological Process GO:0043407 negative regulation of MAP kinase activity 0.09372156654942343 0.6554928014198965 1.0 2364 +Phenotype MP:0000860 abnormal primary somatosensory cortex morphology 0.09370612233726605 0.6552128779956092 1.0 2365 +Biological Process GO:0010803 regulation of tumor necrosis factor-mediated signaling pathway 0.09370026011866373 0.6551066263922019 1.0 2366 +Phenotype MP:0011073 abnormal macrophage apoptosis 0.09369832043085102 0.6550714699174626 1.0 2367 +Phenotype MP:0006400 decreased molar number 0.0936953751295998 0.6550180868893483 1.0 2368 +Biological Process GO:0044770 cell cycle phase transition 0.09365223687734969 0.6542362142263356 1.0 2369 +Phenotype MP:0004062 dilated heart right atrium 0.09364837426946004 0.6541662051888961 1.0 2370 +Phenotype MP:0004184 abnormal baroreceptor physiology 0.0936482325760657 0.6541636370229229 1.0 2371 +Biological Process GO:0043534 blood vessel endothelial cell migration 0.09363788497702574 0.6539760887474331 1.0 2372 +Phenotype MP:0003014 abnormal kidney medulla morphology 0.0936214389641401 0.6536780078744231 1.0 2373 +Phenotype MP:0005091 increased double-positive T cell number 0.09361634468284796 0.6535856749895179 1.0 2374 +Biological Process GO:0061512 protein localization to cilium 0.09359162332012838 0.653137604965939 1.0 2375 +Phenotype MP:0011097 embryonic lethality between somite formation and embryo turning, complete penetrance 0.09354616729971754 0.6523137231933878 1.0 2376 +Phenotype MP:0003396 abnormal embryonic hematopoiesis 0.09353908891498308 0.652185428808857 1.0 2377 +Biological Process GO:1902105 regulation of leukocyte differentiation 0.09353813884931583 0.6521682090483302 1.0 2378 +Biological Process GO:0046486 glycerolipid metabolic process 0.09350077308406002 0.6514909616203008 1.0 2379 +Biological Process GO:0046323 glucose import 0.09349671348757638 0.651417382201853 1.0 2380 +Phenotype MP:0000610 cholestasis 0.09348988230900157 0.6512935683822102 1.0 2381 +Phenotype MP:0003868 abnormal feces composition 0.0934668490642202 0.6508760951769765 1.0 2382 +Biological Process GO:0010934 macrophage cytokine production 0.09346168585199899 0.6507825129320192 1.0 2383 +Phenotype MP:0001905 abnormal dopamine level 0.09345934405372625 0.6507400682812454 1.0 2384 +Phenotype MP:0008108 abnormal small intestinal villus morphology 0.09343900473336708 0.6503714219466445 1.0 2385 +Phenotype MP:0003976 decreased circulating VLDL triglyceride level 0.0934047825383515 0.6497511511346552 1.0 2386 +Phenotype MP:0004272 abnormal basement membrane morphology 0.09336032963169749 0.6489454506092212 1.0 2387 +Biological Process GO:0006366 transcription by RNA polymerase II 0.09333850655314291 0.6485499114379614 1.0 2388 +Biological Process GO:0030198 extracellular matrix organization 0.09333748796876917 0.6485314497888389 1.0 2389 +Biological Process GO:0045229 external encapsulating structure organization 0.09333748796876917 0.6485314497888389 1.0 2389 +Phenotype MP:0011350 abnormal proximal convoluted tubule brush border morphology 0.09332679232021857 0.6483375931817973 1.0 2391 +Phenotype MP:0010850 increased effector memory CD8-positive, alpha-beta T cell number 0.09328371943993474 0.6475569053733093 1.0 2392 +Biological Process GO:0030029 actin filament-based process 0.09326955016467542 0.6473000899391621 1.0 2393 +Phenotype MP:0020363 abnormal germ cell physiology 0.09326693466501357 0.6472526845024776 1.0 2394 +Biological Process GO:0099010 modification of postsynaptic structure 0.09325870178469475 0.6471034651038378 1.0 2395 +Phenotype MP:0008876 decreased uterine NK cell number 0.09324848465713198 0.6469182815991948 1.0 2396 +Biological Process GO:0051048 negative regulation of secretion 0.09324644175196695 0.6468812543294666 1.0 2397 +Phenotype MP:0004406 abnormal cochlear hair cell number 0.09322979046883528 0.6465794529720716 1.0 2398 +Phenotype MP:0003894 abnormal Purkinje cell innervation 0.09320854624723196 0.6461944054735703 1.0 2399 +Phenotype MP:0003762 abnormal immune organ physiology 0.0931125127481619 0.644453816466371 1.0 2400 +Biological Process GO:0051924 regulation of calcium ion transport 0.09309552992837555 0.6441460060698155 1.0 2401 +Phenotype MP:0000280 thin ventricular wall 0.09304791506669896 0.6432829957076384 1.0 2402 +Biological Process GO:0002446 neutrophil mediated immunity 0.0930460914548128 0.6432499430871133 1.0 2403 +Biological Process GO:0045087 innate immune response 0.09303985138129034 0.6431368429347448 1.0 2404 +Biological Process GO:1905475 regulation of protein localization to membrane 0.09300986784902543 0.6425933970834253 1.0 2405 +Biological Process GO:0051489 regulation of filopodium assembly 0.09300814619093656 0.642562192356193 1.0 2406 +Phenotype MP:0005194 abnormal anterior uvea morphology 0.09295428680742701 0.6415860012168609 1.0 2407 +Phenotype MP:0005197 abnormal uvea morphology 0.09295303218615514 0.641563261443603 1.0 2408 +Biological Process GO:0002685 regulation of leukocyte migration 0.09290844786349617 0.6407551790279346 1.0 2409 +Biological Process GO:0002573 myeloid leukocyte differentiation 0.09286989292136238 0.6400563779939087 1.0 2410 +Phenotype MP:0013021 abnormal Ly6C high monocyte number 0.09286500054167723 0.6399677045374432 1.0 2411 +Phenotype MP:0001270 distended abdomen 0.09281594163493978 0.6390785211316596 1.0 2412 +Biological Process GO:0034762 regulation of transmembrane transport 0.0928075259717348 0.6389259888277791 1.0 2413 +Phenotype MP:0005118 decreased circulating pituitary hormone level 0.09274151368482741 0.6377295286129193 1.0 2414 +Phenotype MP:0002400 abnormal multipotent stem cell morphology 0.09274084871062538 0.6377174760812784 1.0 2415 +Biological Process GO:0008643 carbohydrate transport 0.09273643616476801 0.6376374995221873 1.0 2416 +Biological Process GO:0032753 positive regulation of interleukin-4 production 0.09271446930244864 0.6372393542973854 1.0 2417 +Biological Process GO:0051963 regulation of synapse assembly 0.09271120938201916 0.6371802688561712 1.0 2418 +Phenotype MP:0004113 abnormal aortic arch morphology 0.0926963969506347 0.6369117963389002 1.0 2419 +Biological Process GO:0048644 muscle organ morphogenesis 0.09266870452407072 0.6364098763450783 1.0 2420 +Biological Process GO:0009798 axis specification 0.09265328959667418 0.6361304837015423 1.0 2421 +Phenotype MP:0001954 respiratory distress 0.09264732054662128 0.636022295798299 1.0 2422 +Phenotype MP:0030283 small mandibular coronoid process 0.09263120869039909 0.635730271451613 1.0 2423 +Biological Process GO:0048143 astrocyte activation 0.09259938075692431 0.6351533961772083 1.0 2424 +Phenotype MP:0010499 abnormal ventricle myocardium morphology 0.09257524396194572 0.6347159213333716 1.0 2425 +Phenotype MP:0008086 increased T-helper 1 cell number 0.09256684684126681 0.6345637251092691 1.0 2426 +Phenotype MP:0001233 abnormal epidermis suprabasal layer morphology 0.09256335304667951 0.6345004007431784 1.0 2427 +Phenotype MP:0003589 abnormal ureter physiology 0.09255490452688742 0.6343472729198707 1.0 2428 +Phenotype MP:0002575 increased circulating ketone body level 0.0925387150006326 0.6340538408185333 1.0 2429 +Phenotype MP:0008048 abnormal memory T cell number 0.09252238490106102 0.6337578608524173 1.0 2430 +Phenotype MP:0003809 abnormal hair shaft morphology 0.09251869065039897 0.6336909032578856 1.0 2431 +Phenotype MP:0009608 abnormal epidermal lamellar body morphology 0.09250554846797221 0.6334527036870676 1.0 2432 +Phenotype MP:0020473 abnormal circadian behavior phase 0.09249849973364455 0.6333249467105521 1.0 2433 +Phenotype MP:0001504 abnormal posture 0.092492304180111 0.6332126534745623 1.0 2434 +Phenotype MP:0010487 abnormal right subclavian artery morphology 0.09248798493931487 0.6331343680520588 1.0 2435 +Biological Process GO:0014014 negative regulation of gliogenesis 0.09245236734556306 0.6324888059018963 1.0 2436 +Phenotype MP:0031462 decreased palatal shelf size 0.09244668888520802 0.6323858848819656 1.0 2437 +Phenotype MP:0020933 abnormal susceptibility to Retroviridae infection 0.09242418943886177 0.6319780866724076 1.0 2438 +Phenotype MP:0012085 midface hypoplasia 0.09239642646146351 0.6314748879580582 1.0 2439 +Biological Process GO:1903578 regulation of ATP metabolic process 0.092394735005077 0.631444230630969 1.0 2440 +Phenotype MP:0000297 abnormal atrioventricular cushion morphology 0.09239112341569578 0.6313787712565179 1.0 2441 +Phenotype MP:0012533 uveal coloboma 0.09237901636607515 0.6311593332720297 1.0 2442 +Biological Process GO:0014855 striated muscle cell proliferation 0.09237428386677449 0.6310735576172938 1.0 2443 +Phenotype MP:0020912 abnormal susceptibility to Riboviria infection 0.09234357214405586 0.6305169134517282 1.0 2444 +Phenotype MP:0010755 abnormal heart right ventricle pressure 0.09232155831459132 0.6301179169563034 1.0 2445 +Biological Process GO:0002237 response to molecule of bacterial origin 0.09229556621564661 0.6296468150789866 1.0 2446 +Phenotype MP:0020175 abnormal IgG1 level 0.0922914760791429 0.6295726821284512 1.0 2447 +Phenotype MP:0009388 abnormal epidermal melanocyte morphology 0.09228654069149278 0.629483229160755 1.0 2448 +Phenotype MP:0004221 abnormal iridocorneal angle 0.09228365441880026 0.6294309160141028 1.0 2449 +Biological Process GO:1990138 neuron projection extension 0.09227775285788098 0.6293239513386417 1.0 2450 +Phenotype MP:0008731 abnormal hair shaft melanin granule morphology 0.09226058457111463 0.6290127793881524 1.0 2451 +Phenotype MP:0005438 abnormal glycogen homeostasis 0.09225963805119486 0.628995623893628 1.0 2452 +Phenotype MP:0008703 decreased interleukin-5 secretion 0.09224012807910764 0.6286420093395961 1.0 2453 +Phenotype MP:0003725 increased autoantibody level 0.09221912053916115 0.6282612516513597 1.0 2454 +Phenotype MP:0030608 decreased tooth number 0.09218659471770341 0.6276717272892601 1.0 2455 +Phenotype MP:0008158 increased diameter of femur 0.09214125753330382 0.6268499993969366 1.0 2456 +Phenotype MP:0000696 abnormal Peyer's patch morphology 0.09210174285064687 0.6261338032474505 1.0 2457 +Phenotype MP:0002014 increased papilloma incidence 0.09209004608993587 0.6259218016718487 1.0 2458 +Phenotype MP:0000183 decreased circulating LDL cholesterol level 0.0920577775032555 0.6253369396414363 1.0 2459 +Phenotype MP:0000627 abnormal mammary gland morphology 0.09205735190135755 0.6253292256875329 1.0 2460 +Phenotype MP:0013554 abnormal apocrine gland morphology 0.09205735190135755 0.6253292256875329 1.0 2460 +Phenotype MP:0031115 macrovesicular hepatic steatosis 0.09202139455408298 0.6246775055690302 1.0 2462 +Phenotype MP:0009222 increased uterus tumor incidence 0.092012648403891 0.6245189832510174 1.0 2463 +Biological Process GO:0046642 negative regulation of alpha-beta T cell proliferation 0.09199727177050998 0.6242402846792698 1.0 2464 +Biological Process GO:0043068 positive regulation of programmed cell death 0.091994088294587 0.6241825847802774 1.0 2465 +Biological Process GO:0090313 regulation of protein targeting to membrane 0.09194000339496156 0.6232023062039981 1.0 2466 +Phenotype MP:0030309 abnormal posterior cranial fossa morphology 0.09193279045657266 0.6230715730599297 1.0 2467 +Phenotype MP:0008171 abnormal mature B cell morphology 0.09192781255007587 0.6229813494461796 1.0 2468 +Biological Process GO:0007351 tripartite regional subdivision 0.0919073929211549 0.6226112475340854 1.0 2469 +Biological Process GO:0008595 anterior/posterior axis specification, embryo 0.0919073929211549 0.6226112475340854 1.0 2469 +Phenotype MP:0000195 decreased circulating calcium level 0.09190692841160164 0.6226028283862881 1.0 2471 +Phenotype MP:0004300 abnormal organ of Corti supporting cell morphology 0.09188971832266868 0.6222908987794352 1.0 2472 +Biological Process GO:0035567 non-canonical Wnt signaling pathway 0.09188453054736723 0.6221968713332944 1.0 2473 +Phenotype MP:0004529 decreased outer hair cell stereocilia number 0.09187170204048145 0.6219643570723293 1.0 2474 +Biological Process GO:0062098 regulation of programmed necrotic cell death 0.0918700739957865 0.6219348490701562 1.0 2475 +Phenotype MP:0005630 increased lung weight 0.09186570589119336 0.6218556780005737 1.0 2476 +Phenotype MP:0001983 abnormal olfactory system physiology 0.09180351826521194 0.620728539041614 1.0 2477 +Biological Process GO:0045631 regulation of mechanoreceptor differentiation 0.09178944953534995 0.6204735459737766 1.0 2478 +Biological Process GO:2000980 regulation of inner ear receptor cell differentiation 0.09178944953534995 0.6204735459737766 1.0 2478 +Biological Process GO:0045607 regulation of inner ear auditory receptor cell differentiation 0.09178944953534995 0.6204735459737766 1.0 2478 +Phenotype MP:0000519 hydronephrosis 0.09177532295377644 0.6202175043546097 1.0 2481 +Phenotype MP:0004938 dilated vasculature 0.09176228397960928 0.6199811754139767 1.0 2482 +Phenotype MP:0008781 abnormal B cell apoptosis 0.09172999303101659 0.6193959080781329 1.0 2483 +Phenotype MP:0009011 prolonged diestrus 0.09172301776813196 0.6192694827576264 1.0 2484 +Biological Process GO:1901800 positive regulation of proteasomal protein catabolic process 0.0916947574068061 0.6187572690536626 1.0 2485 +Biological Process GO:0120305 regulation of pigmentation 0.09169086113859448 0.6186866499292537 1.0 2486 +Phenotype MP:0003436 decreased susceptibility to induced arthritis 0.09168970427408052 0.6186656819787435 1.0 2487 +Phenotype MP:0003079 decreased susceptibility to induced joint inflammation 0.09168970427408052 0.6186656819787435 1.0 2487 +Biological Process GO:0031667 response to nutrient levels 0.09163431553832468 0.6176617716192039 1.0 2489 +Phenotype MP:0003395 abnormal subclavian artery morphology 0.09162996274690804 0.6175828780980492 1.0 2490 +Phenotype MP:0010249 lactation failure 0.0915894763226005 0.616849069314938 1.0 2491 +Biological Process GO:0008347 glial cell migration 0.09155866459491768 0.616290612578311 1.0 2492 +Phenotype MP:0004324 vestibular hair cell degeneration 0.09154235996497673 0.6159950942444328 1.0 2493 +Phenotype MP:0002274 abnormal type I pneumocyte morphology 0.0915241447358568 0.6156649466617997 1.0 2494 +Phenotype MP:0003711 pathological neovascularization 0.0915070255878615 0.6153546653422417 1.0 2495 +Biological Process GO:1901880 negative regulation of protein depolymerization 0.09148618976549017 0.614977020002577 1.0 2496 +Biological Process GO:0034260 negative regulation of GTPase activity 0.09148524351330178 0.6149598693606335 1.0 2497 +Phenotype MP:0002581 abnormal ileum morphology 0.09146353482848224 0.6145664035541852 1.0 2498 +Phenotype MP:0006379 abnormal spermatocyte morphology 0.09145600891577821 0.6144299978098499 1.0 2499 +Biological Process GO:0000212 meiotic spindle organization 0.09143626934486904 0.6140722218205956 1.0 2500 +Biological Process GO:0008045 motor neuron axon guidance 0.0914301437920555 0.6139611973344161 1.0 2501 +Phenotype MP:0005133 increased luteinizing hormone level 0.09141366008026719 0.6136624331759256 1.0 2502 +Phenotype MP:0013613 abnormal volumetric bone mineral density 0.09138965018063838 0.6132272582863032 1.0 2503 +Biological Process GO:0032651 regulation of interleukin-1 beta production 0.09132678469409983 0.6120878332329537 1.0 2504 +Biological Process GO:1902742 apoptotic process involved in development 0.091275602066478 0.6111601577878141 1.0 2505 +Phenotype MP:0013592 small thymus cortex 0.09126655919040627 0.6109962573693525 1.0 2506 +Phenotype MP:0003732 abnormal retina outer plexiform layer morphology 0.09125856549878364 0.6108513732205916 1.0 2507 +Biological Process GO:0030238 male sex determination 0.0912405666952606 0.6105251483109682 1.0 2508 +Phenotype MP:0011648 thick heart valve cusps 0.09123596060314398 0.610441663762535 1.0 2509 +Biological Process GO:0098935 dendritic transport 0.09122176826879036 0.6101844303866648 1.0 2510 +Biological Process GO:0045927 positive regulation of growth 0.09121993267498174 0.6101511605960614 1.0 2511 +Biological Process GO:1903039 positive regulation of leukocyte cell-cell adhesion 0.09120776110910378 0.6099305532666115 1.0 2512 +Phenotype MP:0005198 abnormal aqueous drainage system morphology 0.09116801902957528 0.6092102355918375 1.0 2513 +Phenotype MP:0009932 skin fibrosis 0.0911636574815361 0.6091311833585557 1.0 2514 +Biological Process GO:0002285 lymphocyte activation involved in immune response 0.0911333079606581 0.6085811040328459 1.0 2515 +Biological Process GO:0051952 regulation of amine transport 0.0911092044451709 0.6081442323734962 1.0 2516 +Phenotype MP:0010098 abnormal retina blood vessel pattern 0.09107598076760026 0.6075420595013404 1.0 2517 +Phenotype MP:0000379 decreased hair follicle number 0.09107352092515009 0.6074974753221771 1.0 2518 +Biological Process GO:0060759 regulation of response to cytokine stimulus 0.09106785725515543 0.607394822374731 1.0 2519 +Biological Process GO:0001959 regulation of cytokine-mediated signaling pathway 0.09106785725515543 0.607394822374731 1.0 2519 +Phenotype MP:0009020 prolonged metestrus 0.09104364878363158 0.6069560484070683 1.0 2521 +Phenotype MP:0010217 abnormal T-helper 17 cell morphology 0.09102628631337517 0.6066413569175487 1.0 2522 +Phenotype MP:0003675 kidney cyst 0.0910261422414066 0.6066387456403676 1.0 2523 +Biological Process GO:0007127 meiosis I 0.0910172472632631 0.6064775258438823 1.0 2524 +Biological Process GO:0001667 ameboidal-type cell migration 0.09101494599898563 0.6064358158641063 1.0 2525 +Biological Process GO:2000345 regulation of hepatocyte proliferation 0.09100648308110315 0.6062824270781335 1.0 2526 +Biological Process GO:0008406 gonad development 0.09097165516302863 0.6056511776502654 1.0 2527 +Biological Process GO:0021604 cranial nerve structural organization 0.09095301571873127 0.605313341247776 1.0 2528 +Biological Process GO:0060391 positive regulation of SMAD protein signal transduction 0.09093178817151781 0.6049285959694374 1.0 2529 +Biological Process GO:0001892 embryonic placenta development 0.09091339592516601 0.6045952399829571 1.0 2530 +Phenotype MP:0030467 abnormal cranial cartilage development 0.09084666609547698 0.6033857744408938 1.0 2531 +Phenotype MP:0005561 increased mean corpuscular hemoglobin 0.09082287082993579 0.6029544897535143 1.0 2532 +Biological Process GO:0000086 G2/M transition of mitotic cell cycle 0.09082186994422359 0.6029363488892847 1.0 2533 +Biological Process GO:0010664 negative regulation of striated muscle cell apoptotic process 0.09082139860494554 0.6029278059540175 1.0 2534 +Phenotype MP:0002500 granulomatous inflammation 0.09080109320617502 0.6025597744417952 1.0 2535 +Phenotype MP:0014071 increased cardiac muscle glycogen level 0.09078862594259307 0.6023338076473876 1.0 2536 +Phenotype MP:0005166 decreased susceptibility to injury 0.09077032529807294 0.6020021119267812 1.0 2537 +Biological Process GO:0002705 positive regulation of leukocyte mediated immunity 0.09076809164566901 0.6019616273994254 1.0 2538 +Phenotype MP:0008598 abnormal circulating interleukin-2 level 0.0907648043983027 0.6019020466626496 1.0 2539 +Phenotype MP:0004392 abnormal CD8-positive, alpha-beta T cell physiology 0.0907553472766186 0.6017306381208127 1.0 2540 +Phenotype MP:0008083 decreased single-positive T cell number 0.09075332275503223 0.6016939440499708 1.0 2541 +Biological Process GO:0003300 cardiac muscle hypertrophy 0.09073302839710307 0.6013261126509097 1.0 2542 +Phenotype MP:0013450 abnormal lacrimal apparatus physiology 0.09068688583596574 0.6004897874575408 1.0 2543 +Phenotype MP:0001348 abnormal lacrimal gland physiology 0.09068688583596574 0.6004897874575408 1.0 2543 +Phenotype MP:0001712 abnormal placenta development 0.09067953750020474 0.6003566002617118 1.0 2545 +Phenotype MP:0030045 abnormal forehead shape 0.09067373491847841 0.6002514295654023 1.0 2546 +Phenotype MP:0008040 decreased NK T cell number 0.09066366499031442 0.6000689140220216 1.0 2547 +Biological Process GO:0000578 embryonic axis specification 0.09062857276846059 0.599432874138143 1.0 2548 +Phenotype MP:0005075 abnormal melanosome morphology 0.09059171493729168 0.5987648329193698 1.0 2549 +Biological Process GO:0002709 regulation of T cell mediated immunity 0.09056317360143662 0.5982475266052069 1.0 2550 +Biological Process GO:1901863 positive regulation of muscle tissue development 0.090558755625051 0.5981674516188183 1.0 2551 +Biological Process GO:0043065 positive regulation of apoptotic process 0.09055421398045704 0.5980851351695439 1.0 2552 +Phenotype MP:0008763 abnormal mast cell degranulation 0.09051474544308091 0.5973697753945448 1.0 2553 +Biological Process GO:1903306 negative regulation of regulated secretory pathway 0.09050763221602443 0.5972408494995173 1.0 2554 +Phenotype MP:0000441 increased cranium width 0.09048934233662953 0.5969093488947697 1.0 2555 +Biological Process GO:0010761 fibroblast migration 0.09043495231017329 0.5959235399523927 1.0 2556 +Biological Process GO:0006140 regulation of nucleotide metabolic process 0.0904267202438429 0.5957743353071392 1.0 2557 +Biological Process GO:1900542 regulation of purine nucleotide metabolic process 0.0904267202438429 0.5957743353071392 1.0 2557 +Biological Process GO:0060716 labyrinthine layer blood vessel development 0.0904156077023125 0.5955729225936883 1.0 2559 +Phenotype MP:0030065 face hypoplasia 0.0903851283499052 0.5950204900960658 1.0 2560 +Biological Process GO:0031503 protein-containing complex localization 0.09038491630291479 0.5950166467844704 1.0 2561 +Biological Process GO:0007602 phototransduction 0.09037624897763263 0.5948595531530395 1.0 2562 +Biological Process GO:1901889 negative regulation of cell junction assembly 0.09036715816826213 0.5946947839526036 1.0 2563 +Biological Process GO:0050850 positive regulation of calcium-mediated signaling 0.09036641028476433 0.5946812287056581 1.0 2564 +Biological Process GO:0061245 establishment or maintenance of bipolar cell polarity 0.09032770395571277 0.5939796838123803 1.0 2565 +Biological Process GO:0035088 establishment or maintenance of apical/basal cell polarity 0.09032770395571277 0.5939796838123803 1.0 2565 +Phenotype MP:0004159 double aortic arch 0.09032567547754988 0.5939429180293374 1.0 2567 +Biological Process GO:0090330 regulation of platelet aggregation 0.09032415506853919 0.5939153609035835 1.0 2568 +Phenotype MP:0005567 decreased circulating total protein level 0.09029134838884723 0.5933207460391091 1.0 2569 +Phenotype MP:0020135 abnormal heart ventricle wall thickness 0.090283582165956 0.5931799847180823 1.0 2570 +Phenotype MP:0010838 increased CD8-positive, alpha-beta memory T cell number 0.09026512892664607 0.592845523245772 1.0 2571 +Biological Process GO:0061178 regulation of insulin secretion involved in cellular response to glucose stimulus 0.09025798657786166 0.5927160695249338 1.0 2572 +Biological Process GO:0032479 regulation of type I interferon production 0.09025363310672163 0.5926371636839214 1.0 2573 +Phenotype MP:0000955 abnormal spinal cord morphology 0.09024524366048459 0.592485106557626 1.0 2574 +Biological Process GO:0001933 negative regulation of protein phosphorylation 0.09023997074011969 0.5923895358733142 1.0 2575 +Phenotype MP:0009968 abnormal cerebellar granule cell precursor proliferation 0.09023743106574977 0.5923435047557047 1.0 2576 +Phenotype MP:0013803 increased IgG2 level 0.09022901450512044 0.5921909561861775 1.0 2577 +Phenotype MP:0004527 abnormal outer hair cell stereociliary bundle morphology 0.09020453071136414 0.5917471920551249 1.0 2578 +Phenotype MP:0010563 increased heart right ventricle size 0.09014730222403589 0.5907099365462994 1.0 2579 +Phenotype MP:0002371 abnormal thymus cortex morphology 0.09014690170691564 0.5907026772492474 1.0 2580 +Phenotype MP:0011892 abnormal circulating transferrin level 0.09013449938847873 0.5904778875733102 1.0 2581 +Biological Process GO:1900027 regulation of ruffle assembly 0.09013410168745006 0.5904706793173854 1.0 2582 +Phenotype MP:0001873 stomach inflammation 0.09013285311614117 0.5904480491985621 1.0 2583 +Biological Process GO:0140895 cell surface toll-like receptor signaling pathway 0.0901316655265113 0.5904265243611375 1.0 2584 +Biological Process GO:0099563 modification of synaptic structure 0.09012538414776883 0.5903126755594685 1.0 2585 +Phenotype MP:0008625 abnormal circulating interleukin-5 level 0.09012397567104025 0.5902871471851574 1.0 2586 +Phenotype MP:0000576 clubfoot 0.0901207883411499 0.5902293774337354 1.0 2587 +Biological Process GO:0010959 regulation of metal ion transport 0.09010212697101361 0.5898911436295625 1.0 2588 +Phenotype MP:0009867 abnormal ascending aorta morphology 0.09009090901236194 0.5896878202507272 1.0 2589 +Biological Process GO:1904748 regulation of apoptotic process involved in development 0.09008327804133176 0.5895495103441007 1.0 2590 +Phenotype MP:0002495 increased IgA level 0.09007545312775067 0.5894076852654206 1.0 2591 +Phenotype MP:0008495 decreased IgG1 level 0.09006558551943455 0.5892288367310166 1.0 2592 +Biological Process GO:0016239 positive regulation of macroautophagy 0.09005021983860062 0.5889503366721135 1.0 2593 +Phenotype MP:0006135 artery stenosis 0.09004357868597634 0.5888299670368832 1.0 2594 +Biological Process GO:0043470 regulation of carbohydrate catabolic process 0.09004010031285847 0.5887669221820093 1.0 2595 +Biological Process GO:0050764 regulation of phagocytosis 0.09003959854574306 0.5887578277479449 1.0 2596 +Biological Process GO:0098742 cell-cell adhesion via plasma-membrane adhesion molecules 0.09002990696153679 0.5885821696172392 1.0 2597 +Biological Process GO:0050866 negative regulation of cell activation 0.08998566840372113 0.5877803541239589 1.0 2598 +Biological Process GO:0033157 regulation of intracellular protein transport 0.0899816830581619 0.5877081204894724 1.0 2599 +Biological Process GO:1902117 positive regulation of organelle assembly 0.0899600305185162 0.5873156723036809 1.0 2600 +Biological Process GO:0090181 regulation of cholesterol metabolic process 0.08993906890885994 0.586935747093268 1.0 2601 +Phenotype MP:0004192 abnormal kidney pyramid morphology 0.08993606293807899 0.5868812644414021 1.0 2602 +Phenotype MP:0000880 decreased Purkinje cell number 0.08992937066654505 0.5867599682856027 1.0 2603 +Biological Process GO:0150076 neuroinflammatory response 0.0899184123717286 0.5865613512646686 1.0 2604 +Phenotype MP:0000301 decreased atrioventricular cushion size 0.08981325704148979 0.5846554307928076 1.0 2605 +Phenotype MP:0012505 increased neural tube apoptosis 0.08976537833354059 0.5837876382668423 1.0 2606 +Phenotype MP:0003988 disorganized embryonic tissue 0.08974679137272412 0.5834507531175176 1.0 2607 +Phenotype MP:0031415 increased skeletal muscle triglyceride level 0.08972485137692288 0.5830530948432753 1.0 2608 +Phenotype MP:0010463 aorta stenosis 0.0897131103010983 0.5828402900646215 1.0 2609 +Phenotype MP:0020477 abnormal locomotor circadian rhythm 0.08969708374101992 0.5825498116944093 1.0 2610 +Biological Process GO:0060997 dendritic spine morphogenesis 0.08965619019873317 0.5818086239749257 1.0 2611 +Phenotype MP:0008081 abnormal single-positive T cell number 0.08965204167153829 0.5817334327041567 1.0 2612 +Biological Process GO:0022408 negative regulation of cell-cell adhesion 0.08964618047083928 0.5816271995500545 1.0 2613 +Phenotype MP:0004042 decreased susceptibility to kidney reperfusion injury 0.08962040588116016 0.5811600399870376 1.0 2614 +Biological Process GO:1901992 positive regulation of mitotic cell cycle phase transition 0.08958392168328855 0.5804987708011102 1.0 2615 +Phenotype MP:0003099 retina detachment 0.08957910013576209 0.5804113811641242 1.0 2616 +Phenotype MP:0008207 decreased B-2 B cell number 0.08957708518618612 0.5803748605841603 1.0 2617 +Biological Process GO:0016242 negative regulation of macroautophagy 0.08956298448261368 0.5801192879988685 1.0 2618 +Phenotype MP:0003865 lymph node inflammation 0.08956195048228843 0.5801005469385405 1.0 2619 +Phenotype MP:0013177 abnormal tail tip morphology 0.08954941135138983 0.5798732775626114 1.0 2620 +Phenotype MP:0001858 intestinal inflammation 0.08950891447953546 0.5791392794196899 1.0 2621 +Biological Process GO:0051491 positive regulation of filopodium assembly 0.08950294887346433 0.5790311539379648 1.0 2622 +Biological Process GO:0010810 regulation of cell-substrate adhesion 0.08945901019255498 0.5782347736568937 1.0 2623 +Biological Process GO:0002532 production of molecular mediator involved in inflammatory response 0.08940336919725256 0.5772262911407837 1.0 2624 +Biological Process GO:0048570 notochord morphogenesis 0.08938253229299731 0.5768486261921777 1.0 2625 +Phenotype MP:0008503 abnormal spinal cord grey matter morphology 0.08937983972696106 0.5767998239420334 1.0 2626 +Phenotype MP:0001340 abnormal eyelid morphology 0.08936863783063953 0.5765967916898938 1.0 2627 +Phenotype MP:0001422 abnormal drinking behavior 0.08935592144994686 0.5763663096949716 1.0 2628 +Phenotype MP:0001219 thick epidermis 0.0893178167749572 0.5756756696677711 1.0 2629 +Phenotype MP:0000956 decreased spinal cord size 0.08931622533596173 0.5756468251369774 1.0 2630 +Biological Process GO:0031342 negative regulation of cell killing 0.08930047897206173 0.575361425269503 1.0 2631 +Biological Process GO:0001911 negative regulation of leukocyte mediated cytotoxicity 0.08930047897206173 0.575361425269503 1.0 2631 +Biological Process GO:0008645 hexose transmembrane transport 0.08928009256539449 0.574991925504474 1.0 2633 +Phenotype MP:0004491 abnormal orientation of outer hair cell stereociliary bundles 0.08925829075358005 0.574596771788857 1.0 2634 +Phenotype MP:0003203 increased neuron apoptosis 0.08923996320034722 0.5742645883529223 1.0 2635 +Phenotype MP:0008764 increased mast cell degranulation 0.08922812972242 0.5740501088036347 1.0 2636 +Biological Process GO:0010952 positive regulation of peptidase activity 0.08921317164708809 0.5737789965173626 1.0 2637 +Phenotype MP:0020998 abnormal epididymal fat pad weight 0.0891989999956394 0.5735221380152327 1.0 2638 +Phenotype MP:0008284 abnormal hippocampus pyramidal cell layer 0.08919222113199199 0.5733992723937542 1.0 2639 +Phenotype MP:0009939 abnormal hippocampus neuron morphology 0.08918789892234058 0.5733209331613103 1.0 2640 +Biological Process GO:0021979 hypothalamus cell differentiation 0.08914462296940717 0.572536564699457 1.0 2641 +Phenotype MP:0005365 abnormal bile salt homeostasis 0.08903516401023281 0.5705526417671126 1.0 2642 +Phenotype MP:0003606 kidney failure 0.08899146159188698 0.5697605437003193 1.0 2643 +Phenotype MP:0009264 failure of eyelid fusion 0.08898745807879305 0.5696879807827024 1.0 2644 +Phenotype MP:0002988 decreased urine osmolality 0.08897860372467237 0.5695274972889472 1.0 2645 +Phenotype MP:0002397 abnormal bone marrow morphology 0.08896178896733375 0.5692227329924702 1.0 2646 +Phenotype MP:0010833 abnormal memory T cell morphology 0.08891324224312447 0.5683428327981372 1.0 2647 +Biological Process GO:1900221 regulation of amyloid-beta clearance 0.08888539738713164 0.5678381500497474 1.0 2648 +Phenotype MP:0000812 abnormal dentate gyrus morphology 0.08886298789528513 0.5674319822484836 1.0 2649 +Biological Process GO:0050772 positive regulation of axonogenesis 0.08884624190320556 0.5671284643093206 1.0 2650 +Biological Process GO:0021554 optic nerve development 0.08884473699311624 0.5671011880985852 1.0 2651 +Biological Process GO:1903115 regulation of actin filament-based movement 0.08882451539611458 0.5667346754775734 1.0 2652 +Biological Process GO:0060979 vasculogenesis involved in coronary vascular morphogenesis 0.08878730239432353 0.5660601968584498 1.0 2653 +Phenotype MP:0001088 small nodose ganglion 0.08877449784040525 0.5658281167404902 1.0 2654 +Phenotype MP:0004556 enlarged allantois 0.0887594556588599 0.5655554800450071 1.0 2655 +Biological Process GO:1904659 glucose transmembrane transport 0.08874394440140265 0.5652743414373403 1.0 2656 +Phenotype MP:0013503 abnormal embryonic tissue cell apoptosis 0.08873214453332812 0.5650604710602758 1.0 2657 +Phenotype MP:0000854 abnormal cerebellum development 0.08870418974587779 0.564553795825011 1.0 2658 +Biological Process GO:0060996 dendritic spine development 0.088696576401609 0.5644158054001007 1.0 2659 +Phenotype MP:0001433 polyphagia 0.0886926247066473 0.5643441816763299 1.0 2660 +Phenotype MP:0004958 enlarged prostate gland 0.08867946330535603 0.5641056337672279 1.0 2661 +Phenotype MP:0002727 decreased circulating insulin level 0.08867237209160828 0.5639771068592576 1.0 2662 +Biological Process GO:0007435 salivary gland morphogenesis 0.08862027442466591 0.5630328464995007 1.0 2663 +Biological Process GO:0043149 stress fiber assembly 0.08859161166765783 0.5625133394499044 1.0 2664 +Biological Process GO:0030038 contractile actin filament bundle assembly 0.08859161166765783 0.5625133394499044 1.0 2664 +Phenotype MP:0008082 increased single-positive T cell number 0.0885909558355511 0.5625014526170118 1.0 2666 +Phenotype MP:0002791 steatorrhea 0.08854558135898705 0.5616790488112606 1.0 2667 +Phenotype MP:0005012 decreased eosinophil cell number 0.08853662435982756 0.561516704895591 1.0 2668 +Biological Process GO:1901655 cellular response to ketone 0.08851935255096932 0.5612036566267657 1.0 2669 +Biological Process GO:0043367 CD4-positive, alpha-beta T cell differentiation 0.08851669832525921 0.5611555492877812 1.0 2670 +Biological Process GO:0061351 neural precursor cell proliferation 0.0884467874417808 0.559888427747439 1.0 2671 +Phenotype MP:0005401 abnormal fat-soluble vitamin level 0.08842111750365711 0.5594231649740707 1.0 2672 +Phenotype MP:0008801 abnormal erythroid progenitor cell morphology 0.08834826373296023 0.5581027041595011 1.0 2673 +Phenotype MP:0031224 abnormal CXCL10 level 0.08833498760006153 0.5578620767617144 1.0 2674 +Phenotype MP:0020172 abnormal IgD level 0.08832892952951465 0.5577522753788549 1.0 2675 +Phenotype MP:0004726 abnormal nasal capsule morphology 0.08829839170271814 0.5571987830439874 1.0 2676 +Biological Process GO:0071774 response to fibroblast growth factor 0.08828209577758273 0.5569034224830632 1.0 2677 +Biological Process GO:0035994 response to muscle stretch 0.08827063657906142 0.556695726677218 1.0 2678 +Biological Process GO:0002251 organ or tissue specific immune response 0.08824694275365952 0.5562662805731771 1.0 2679 +Phenotype MP:0004723 abnormal platelet serotonin level 0.08816088713529835 0.5547065387666443 1.0 2680 +Phenotype MP:0004725 decreased platelet serotonin level 0.08816088713529835 0.5547065387666443 1.0 2680 +Phenotype MP:0010468 abnormal thoracic aorta morphology 0.0881604779910421 0.5546991231043839 1.0 2682 +Phenotype MP:0009199 abnormal external male genitalia morphology 0.08813666487886418 0.5542675149500892 1.0 2683 +Biological Process GO:0009268 response to pH 0.08812617957158453 0.5540774707388004 1.0 2684 +Phenotype MP:0003225 axonal dystrophy 0.08811000987016737 0.5537843979588962 1.0 2685 +Biological Process GO:0022029 telencephalon cell migration 0.08810676694508968 0.5537256205552187 1.0 2686 +Phenotype MP:0008497 decreased IgG2b level 0.0880753797992565 0.5531567344734492 1.0 2687 +Biological Process GO:0098815 modulation of excitatory postsynaptic potential 0.08804531693866846 0.5526118508112768 1.0 2688 +Phenotype MP:0009541 increased thymocyte apoptosis 0.08804490657502417 0.5526044130478389 1.0 2689 +Biological Process GO:0035024 negative regulation of Rho protein signal transduction 0.08802916473445788 0.5523190951649323 1.0 2690 +Phenotype MP:0009356 decreased liver triglyceride level 0.08800613294648729 0.5519016483641186 1.0 2691 +Biological Process GO:0048854 brain morphogenesis 0.08800507158226267 0.5518824113382901 1.0 2692 +Phenotype MP:0008096 abnormal plasma cell number 0.08799704208198056 0.5517368781643488 1.0 2693 +Biological Process GO:0060430 lung saccule development 0.08799604809421735 0.55171886232414 1.0 2694 +Biological Process GO:0007492 endoderm development 0.08798193049878977 0.5514629835771686 1.0 2695 +Phenotype MP:0004883 abnormal vascular wound healing 0.08797147015800766 0.5512733918789257 1.0 2696 +Biological Process GO:0043062 extracellular structure organization 0.08794932812226164 0.5508720716688975 1.0 2697 +Phenotype MP:0012769 abnormal CD4-positive, alpha-beta memory T cell number 0.08791737886317474 0.5502929973907205 1.0 2698 +Phenotype MP:0002638 abnormal pupillary reflex 0.08791638908013988 0.5502750577604176 1.0 2699 +Phenotype MP:0008028 pregnancy-related premature death 0.08790595655367273 0.5500859701913726 1.0 2700 +Biological Process GO:1903078 positive regulation of protein localization to plasma membrane 0.08784738405958759 0.5490243548142795 1.0 2701 +Phenotype MP:0011710 enhanced osteoblast differentiation 0.08784541674744684 0.548988697653819 1.0 2702 +Phenotype MP:0008102 lymph node hyperplasia 0.08780052097260205 0.5481749702261896 1.0 2703 +Biological Process GO:1900015 regulation of cytokine production involved in inflammatory response 0.08780019511849657 0.5481690641821587 1.0 2704 +Biological Process GO:0002638 negative regulation of immunoglobulin production 0.0877920156757821 0.5480208133299905 1.0 2705 +Phenotype MP:0005093 decreased B cell proliferation 0.08778281855820669 0.5478541173134474 1.0 2706 +Biological Process GO:0032368 regulation of lipid transport 0.08773017721225085 0.5469000028744008 1.0 2707 +Biological Process GO:1990266 neutrophil migration 0.08769809018597285 0.5463184315919418 1.0 2708 +Biological Process GO:0034142 toll-like receptor 4 signaling pathway 0.08766543933778903 0.5457266411440791 1.0 2709 +Phenotype MP:0003825 abnormal pillar cell morphology 0.08765283514069189 0.5454981924556078 1.0 2710 +Phenotype MP:0000592 short tail 0.08760101337205561 0.5445589327004663 1.0 2711 +Biological Process GO:0060740 prostate gland epithelium morphogenesis 0.08759572828409523 0.5444631414807877 1.0 2712 +Phenotype MP:0000029 abnormal malleus morphology 0.08758404117094154 0.5442513147653374 1.0 2713 +Biological Process GO:0140694 non-membrane-bounded organelle assembly 0.08758218922141947 0.5442177485305213 1.0 2714 +Phenotype MP:0008699 increased interleukin-4 secretion 0.08755902157851503 0.5437978393847265 1.0 2715 +Phenotype MP:0005099 abnormal ciliary body morphology 0.08747511736070246 0.5422770913062286 1.0 2716 +Biological Process GO:0061982 meiosis I cell cycle process 0.08745376908351088 0.5418901578198709 1.0 2717 +Biological Process GO:0045124 regulation of bone resorption 0.08737637571802537 0.5404874177083607 1.0 2718 +Phenotype MP:0020338 abnormal hippocampal pyramidal neuron dendrite morphology 0.08730413526862679 0.5391780732263215 1.0 2719 +Biological Process GO:0061082 myeloid leukocyte cytokine production 0.08730040192852073 0.5391104071430103 1.0 2720 +Biological Process GO:0002758 innate immune response-activating signaling pathway 0.08729436923596279 0.5390010657314003 1.0 2721 +Phenotype MP:0009336 increased splenocyte proliferation 0.0872797397953855 0.538735909887899 1.0 2722 +Phenotype MP:0002953 thick ventricular wall 0.08726099117459929 0.5383960946821985 1.0 2723 +Biological Process GO:0097529 myeloid leukocyte migration 0.0872382844234646 0.537984539112559 1.0 2724 +Phenotype MP:0010211 abnormal acute phase protein level 0.08722812988073092 0.5378004899461063 1.0 2725 +Biological Process GO:0001916 positive regulation of T cell mediated cytotoxicity 0.08720481200745855 0.5373778579033069 1.0 2726 +Phenotype MP:0000245 abnormal erythropoiesis 0.08719860241557331 0.5372653102248478 1.0 2727 +Phenotype MP:0008601 abnormal circulating interleukin-4 level 0.08715722920892954 0.5365154286796153 1.0 2728 +Biological Process GO:1903350 response to dopamine 0.08714007324561246 0.5362044800893131 1.0 2729 +Biological Process GO:0061572 actin filament bundle organization 0.08711127569976385 0.5356825300174757 1.0 2730 +Biological Process GO:0043087 regulation of GTPase activity 0.08710509904503916 0.5355705793188219 1.0 2731 +Phenotype MP:0001664 abnormal digestion 0.08710319932934707 0.5355361473312085 1.0 2732 +Biological Process GO:0007548 sex differentiation 0.08708685761739943 0.5352399568929727 1.0 2733 +Phenotype MP:0003424 premature neuronal precursor differentiation 0.08708397755611597 0.5351877563269348 1.0 2734 +Biological Process GO:1901623 regulation of lymphocyte chemotaxis 0.08706748204015635 0.5348887782200719 1.0 2735 +Phenotype MP:0000043 organ of Corti degeneration 0.08704580165279685 0.5344958252997347 1.0 2736 +Biological Process GO:0055091 phospholipid homeostasis 0.0870374944218999 0.5343452583109285 1.0 2737 +Phenotype MP:0013241 embryo tissue necrosis 0.08703300388192625 0.5342638681232315 1.0 2738 +Phenotype MP:0005667 abnormal circulating leptin level 0.08702959530360566 0.5342020882858575 1.0 2739 +Biological Process GO:0032480 negative regulation of type I interferon production 0.08701462807717786 0.5339308101377033 1.0 2740 +Phenotype MP:0004402 decreased cochlear outer hair cell number 0.08701133638605718 0.5338711488587202 1.0 2741 +Biological Process GO:0007520 myoblast fusion 0.08696349711045737 0.5330040710366295 1.0 2742 +Phenotype MP:0004891 abnormal adiponectin level 0.08695956133627014 0.5329327358738848 1.0 2743 +Biological Process GO:0060512 prostate gland morphogenesis 0.08690714309334369 0.5319826651350489 1.0 2744 +Biological Process GO:1990868 response to chemokine 0.08690524415410616 0.5319482472205276 1.0 2745 +Biological Process GO:1990869 cellular response to chemokine 0.08690524415410616 0.5319482472205276 1.0 2745 +Biological Process GO:0006446 regulation of translational initiation 0.08690239774701047 0.5318966566302779 1.0 2747 +Biological Process GO:0035234 ectopic germ cell programmed cell death 0.0869012866442731 0.5318765181033132 1.0 2748 +Biological Process GO:0001906 cell killing 0.08690076886505016 0.5318671334528283 1.0 2749 +Phenotype MP:0001874 acanthosis 0.08688884449846246 0.5316510065637599 1.0 2750 +Phenotype MP:0012555 decreased cell death 0.0868635570412758 0.5311926761850342 1.0 2751 +Phenotype MP:0008710 abnormal interleukin-9 secretion 0.08684671100970731 0.5308873450490559 1.0 2752 +Phenotype MP:0002491 decreased IgD level 0.08684368778552964 0.5308325496826378 1.0 2753 +Phenotype MP:0005458 increased percent body fat/body weight 0.08683008201661258 0.5305859476943643 1.0 2754 +Biological Process GO:0050855 regulation of B cell receptor signaling pathway 0.08682560923358329 0.5305048793479252 1.0 2755 +Biological Process GO:0003170 heart valve development 0.08678796762963015 0.529822632395678 1.0 2756 +Biological Process GO:0051017 actin filament bundle assembly 0.086786927297411 0.5298037765709708 1.0 2757 +Biological Process GO:0051590 positive regulation of neurotransmitter transport 0.08676567363288024 0.5294185579211956 1.0 2758 +Phenotype MP:0009967 abnormal neuron proliferation 0.08675135139548962 0.5291589700773494 1.0 2759 +Biological Process GO:0033690 positive regulation of osteoblast proliferation 0.08674725342131417 0.5290846950704962 1.0 2760 +Biological Process GO:0032409 regulation of transporter activity 0.0867261208407113 0.5287016710440126 1.0 2761 +Biological Process GO:0002752 cell surface pattern recognition receptor signaling pathway 0.08669730242490892 0.5281793427082104 1.0 2762 +Biological Process GO:0045860 positive regulation of protein kinase activity 0.0866370409677305 0.5270871151944962 1.0 2763 +Phenotype MP:0003829 impaired febrile response 0.08662852778825192 0.5269328154266004 1.0 2764 +Biological Process GO:0002449 lymphocyte mediated immunity 0.08660812599005663 0.5265630366930366 1.0 2765 +Phenotype MP:0004919 abnormal positive T cell selection 0.08658782369079987 0.5261950613589149 1.0 2766 +Phenotype MP:0010183 abnormal CD4-positive helper T cell morphology 0.08657331140816926 0.5259320289810383 1.0 2767 +Phenotype MP:0000222 decreased neutrophil cell number 0.08655571534925444 0.5256131037412651 1.0 2768 +Biological Process GO:0070307 lens fiber cell development 0.08654981388573935 0.5255061408312366 1.0 2769 +Biological Process GO:0033121 regulation of purine nucleotide catabolic process 0.08652662606723593 0.5250858660065264 1.0 2770 +Biological Process GO:0006110 regulation of glycolytic process 0.08652662606723593 0.5250858660065264 1.0 2770 +Biological Process GO:0030811 regulation of nucleotide catabolic process 0.08652662606723593 0.5250858660065264 1.0 2770 +Phenotype MP:0001806 decreased IgM level 0.086514459156392 0.5248653430486877 1.0 2773 +Phenotype MP:0009263 abnormal eyelid fusion 0.08644046941572747 0.523524292993308 1.0 2774 +Phenotype MP:0002726 abnormal pulmonary vein morphology 0.08642631796095779 0.523267800552165 1.0 2775 +Phenotype MP:0012103 abnormal bilaminar embryonic disk morphology 0.08637352454599467 0.5223109298911234 1.0 2776 +Phenotype MP:0010966 abnormal compact bone area 0.08634823632568145 0.5218525856808731 1.0 2777 +Biological Process GO:0032481 positive regulation of type I interferon production 0.08634343450620718 0.5217655536111017 1.0 2778 +Biological Process GO:0014897 striated muscle hypertrophy 0.08631851388127265 0.5213138719975645 1.0 2779 +Biological Process GO:0014896 muscle hypertrophy 0.08631851388127265 0.5213138719975645 1.0 2779 +Phenotype MP:0002403 abnormal pre-B cell morphology 0.08629829157016344 0.5209473464334884 1.0 2781 +Biological Process GO:0090183 regulation of kidney development 0.08629767124741139 0.5209361032009331 1.0 2782 +Biological Process GO:0045833 negative regulation of lipid metabolic process 0.08629422311503743 0.520873606453823 1.0 2783 +Biological Process GO:0008217 regulation of blood pressure 0.08628503762703987 0.5207071212211789 1.0 2784 +Phenotype MP:0010962 decreased compact bone mass 0.08626455846663439 0.5203359403121874 1.0 2785 +Phenotype MP:0004619 caudal vertebral fusion 0.08625381054844328 0.5201411363277978 1.0 2786 +Biological Process GO:0051347 positive regulation of transferase activity 0.08622348956796277 0.5195915742913945 1.0 2787 +Phenotype MP:0000165 abnormal long bone hypertrophic chondrocyte zone 0.08621756422231963 0.519484178522312 1.0 2788 +Phenotype MP:0001622 abnormal vasculogenesis 0.08620749644486514 0.5193017019601341 1.0 2789 +Phenotype MP:0000897 abnormal midbrain morphology 0.08620317924414234 0.5192234535135738 1.0 2790 +Phenotype MP:0000149 abnormal scapula morphology 0.08619428296752218 0.5190622101824447 1.0 2791 +Phenotype MP:0004700 abnormal circulating insulin-like growth factor I level 0.08618369978668117 0.5188703920313676 1.0 2792 +Biological Process GO:0071901 negative regulation of protein serine/threonine kinase activity 0.08618165178609971 0.5188332724081806 1.0 2793 +Biological Process GO:1903077 negative regulation of protein localization to plasma membrane 0.08617228031535473 0.5186634162734155 1.0 2794 +Biological Process GO:1904376 negative regulation of protein localization to cell periphery 0.08617228031535473 0.5186634162734155 1.0 2794 +Phenotype MP:0008227 absent anterior commissure 0.08616243935206602 0.5184850506750935 1.0 2796 +Phenotype MP:0004449 absent presphenoid bone 0.08614541389545083 0.5181764674940794 1.0 2797 +Phenotype MP:0003793 abnormal submandibular gland morphology 0.08608009389183524 0.5169925547829476 1.0 2798 +Phenotype MP:0008602 increased circulating interleukin-4 level 0.08607972115493079 0.5169857989970525 1.0 2799 +Biological Process GO:0044409 symbiont entry into host 0.08607339538165304 0.5168711455528283 1.0 2800 +Biological Process GO:0060347 heart trabecula formation 0.08605468613180611 0.5165320439379559 1.0 2801 +Phenotype MP:0010831 lethality, incomplete penetrance 0.08603579576808629 0.5161896596683925 1.0 2802 +Phenotype MP:0001299 abnormal eye distance/ position 0.08603352178267853 0.5161484441129707 1.0 2803 +Phenotype MP:0008554 decreased circulating tumor necrosis factor level 0.08602854532464055 0.5160582467522624 1.0 2804 +Phenotype MP:0020863 abnormal suckling reflex 0.08602244702934048 0.5159477163033591 1.0 2805 +Phenotype MP:0004486 decreased response of heart to induced stress 0.08598533761759475 0.5152751152342142 1.0 2806 +Phenotype MP:0009095 abnormal endometrial gland number 0.08597608877160712 0.5151074816499833 1.0 2807 +Biological Process GO:0090103 cochlea morphogenesis 0.0859697108931331 0.5149918838089317 1.0 2808 +Phenotype MP:0005656 decreased aggression 0.085949317008706 0.5146222485109198 1.0 2809 +Phenotype MP:0013665 abnormal immature NK cell number 0.08593642550329639 0.5143885924136253 1.0 2810 +Phenotype MP:0013699 abnormal immature NK cell morphology 0.08593642550329639 0.5143885924136253 1.0 2810 +Phenotype MP:0004509 abnormal pelvic girdle bone morphology 0.08593482435860944 0.5143595719690095 1.0 2812 +Phenotype MP:0002805 abnormal conditioned taste aversion behavior 0.08592191740931965 0.5141256359543079 1.0 2813 +Phenotype MP:0020009 abnormal bone mineral density of femur 0.08588047804760157 0.5133745553608661 1.0 2814 +Biological Process GO:0046632 alpha-beta T cell differentiation 0.08587169255235327 0.513215319921149 1.0 2815 +Biological Process GO:0045601 regulation of endothelial cell differentiation 0.08586699312814106 0.5131301437461354 1.0 2816 +Phenotype MP:0006043 decreased apoptosis 0.08586625863148578 0.5131168311331787 1.0 2817 +Biological Process GO:1904062 regulation of monoatomic cation transmembrane transport 0.08582725447771411 0.5124098882231786 1.0 2818 +Biological Process GO:0031396 regulation of protein ubiquitination 0.08581714109467997 0.5122265850684953 1.0 2819 +Phenotype MP:0005657 abnormal neural plate morphology 0.08581550787330161 0.5121969832399144 1.0 2820 +Phenotype MP:0012251 abnormal diaphragm development 0.08574924468228384 0.5109959754355092 1.0 2821 +Biological Process GO:0050671 positive regulation of lymphocyte proliferation 0.08574684298648472 0.5109524451533985 1.0 2822 +Phenotype MP:0009873 abnormal aorta tunica media morphology 0.08574105314005709 0.5108475052819694 1.0 2823 +Phenotype MP:0020914 decreased susceptibility to Riboviria infection 0.08572146116507118 0.5104924044409085 1.0 2824 +Phenotype MP:0003812 abnormal hair medulla 0.08571601200860324 0.5103936395105618 1.0 2825 +Biological Process GO:0006909 phagocytosis 0.08570696589817761 0.5102296804700475 1.0 2826 +Phenotype MP:0000818 abnormal amygdala morphology 0.08570296075212913 0.5101570879554383 1.0 2827 +Biological Process GO:0090102 cochlea development 0.08567736225158273 0.5096931199746472 1.0 2828 +Biological Process GO:1904375 regulation of protein localization to cell periphery 0.08563155648020504 0.5088628990319723 1.0 2829 +Biological Process GO:0140546 defense response to symbiont 0.0856284817948717 0.508807170941841 1.0 2830 +Biological Process GO:0070232 regulation of T cell apoptotic process 0.08562160620792414 0.5086825522288413 1.0 2831 +Phenotype MP:0001739 abnormal adrenal gland secretion 0.08560843209904856 0.508443773997177 1.0 2832 +Phenotype MP:0001193 psoriasis 0.08557746290498347 0.507882463212154 1.0 2833 +Phenotype MP:0014105 abnormal chondrocyte differentiation 0.08557668526159667 0.5078683685728492 1.0 2834 +Biological Process GO:1902991 regulation of amyloid precursor protein catabolic process 0.0855720830908605 0.5077849550986949 1.0 2835 +Phenotype MP:0001007 abnormal sympathetic system morphology 0.08556932757533975 0.5077350119010499 1.0 2836 +Phenotype MP:0006256 abnormal gustatory papillae morphology 0.08556517747894754 0.507659792188876 1.0 2837 +Biological Process GO:0043242 negative regulation of protein-containing complex disassembly 0.08553041675890016 0.5070297607125402 1.0 2838 +Biological Process GO:1904037 positive regulation of epithelial cell apoptotic process 0.08548940835705898 0.5062864911853568 1.0 2839 +Biological Process GO:0048643 positive regulation of skeletal muscle tissue development 0.08548678280214894 0.5062389034992008 1.0 2840 +Phenotype MP:0030610 absent teeth 0.08547342577496253 0.5059968099077492 1.0 2841 +Phenotype MP:0005330 cardiomyopathy 0.08547185577356053 0.5059683539292827 1.0 2842 +Phenotype MP:0010984 abnormal metanephric mesenchyme morphology 0.08546673897146984 0.5058756128591632 1.0 2843 +Phenotype MP:0003638 abnormal response/metabolism to endogenous compounds 0.08545485235027894 0.5056601700982728 1.0 2844 +Phenotype MP:0031017 abnormal granulosa cell proliferation 0.08545095561334348 0.505589542478333 1.0 2845 +Biological Process GO:0050803 regulation of synapse structure or activity 0.08543645838781999 0.5053267830076751 1.0 2846 +Phenotype MP:0009288 increased epididymal fat pad weight 0.085435996450694 0.5053184104846355 1.0 2847 +Biological Process GO:0061097 regulation of protein tyrosine kinase activity 0.08543416637213352 0.5052852406568618 1.0 2848 +Biological Process GO:0042306 regulation of protein import into nucleus 0.0854235448071452 0.5050927268003748 1.0 2849 +Phenotype MP:0000936 small embryonic telencephalon 0.08542179429704622 0.5050609991359161 1.0 2850 +Phenotype MP:0003349 abnormal circulating renin level 0.08541426412178421 0.5049245161335236 1.0 2851 +Phenotype MP:0001693 failure of primitive streak formation 0.08541282012115148 0.5048983438951686 1.0 2852 +Phenotype MP:0008603 decreased circulating interleukin-4 level 0.08539267620482849 0.5045332392217655 1.0 2853 +Phenotype MP:0001322 abnormal iris morphology 0.08539197721563718 0.5045205701748775 1.0 2854 +Phenotype MP:0009134 abnormal brown fat lipid droplet number 0.08537726489916042 0.5042539122213731 1.0 2855 +Phenotype MP:0008635 increased circulating interleukin-18 level 0.08534347109401874 0.5036414058948241 1.0 2856 +Phenotype MP:0000562 polydactyly 0.08534112421370854 0.5035988691330826 1.0 2857 +Phenotype MP:0001240 abnormal epidermis stratum corneum morphology 0.08532062853361944 0.5032273888079499 1.0 2858 +Phenotype MP:0031355 abnormal proacrosomal vesicle fusion 0.08531246542334614 0.503079433978189 1.0 2859 +Phenotype MP:0013802 abnormal IgG2 level 0.08530982445923341 0.5030315670031487 1.0 2860 +Phenotype MP:0010387 abnormal Bergmann glial cell morphology 0.08529563018653386 0.5027742984951251 1.0 2861 +Biological Process GO:0002832 negative regulation of response to biotic stimulus 0.08528474937387032 0.502577085823558 1.0 2862 +Phenotype MP:0003671 abnormal eyelid aperture 0.08527529842767889 0.5024057892113578 1.0 2863 +Phenotype MP:0008616 abnormal circulating interleukin-12 level 0.08526573490228473 0.5022324521224009 1.0 2864 +Phenotype MP:0004522 abnormal orientation of cochlear hair cell stereociliary bundles 0.08526133122901092 0.5021526363772086 1.0 2865 +Biological Process GO:2000027 regulation of animal organ morphogenesis 0.08523136235294937 0.5016094561668032 1.0 2866 +Phenotype MP:0002189 abnormal myocardial trabeculae morphology 0.08522611415593473 0.5015143335885387 1.0 2867 +Biological Process GO:0032680 regulation of tumor necrosis factor production 0.08520424062948762 0.5011178800587682 1.0 2868 +Biological Process GO:0071229 cellular response to acid chemical 0.08519067848504358 0.5008720687558175 1.0 2869 +Biological Process GO:0060601 lateral sprouting from an epithelium 0.08518229427656088 0.5007201065628288 1.0 2870 +Phenotype MP:0030825 decreased femur size 0.0851816113940097 0.5007077294457468 1.0 2871 +Phenotype MP:0002917 decreased synaptic depression 0.08513920975717204 0.49993920779776385 1.0 2872 +Biological Process GO:0097746 blood vessel diameter maintenance 0.0850942070364894 0.49912354199705067 1.0 2873 +Biological Process GO:0035296 regulation of tube diameter 0.0850942070364894 0.49912354199705067 1.0 2873 +Phenotype MP:0020469 prolonged circadian behavior period 0.08508145610542706 0.4988924337832129 1.0 2875 +Phenotype MP:0004769 abnormal synaptic vesicle morphology 0.08507527182348418 0.49878034484267203 1.0 2876 +Biological Process GO:0046329 negative regulation of JNK cascade 0.08507167852551578 0.49871521699661886 1.0 2877 +Biological Process GO:0060071 Wnt signaling pathway, planar cell polarity pathway 0.08506908995898066 0.49866829971776233 1.0 2878 +Phenotype MP:0021056 abnormal tumor vascular morphology 0.08504561732617577 0.49824286268770673 1.0 2879 +Phenotype MP:0010144 abnormal tumor vascularization 0.08504561732617577 0.49824286268770673 1.0 2879 +Biological Process GO:0048844 artery morphogenesis 0.08504044615732809 0.4981491362303995 1.0 2881 +Biological Process GO:0044344 cellular response to fibroblast growth factor stimulus 0.08499040556357651 0.49724215993315785 1.0 2882 +Biological Process GO:0001570 vasculogenesis 0.08497067654573764 0.49688457521630697 1.0 2883 +Phenotype MP:0004247 small pancreas 0.0849372318012066 0.4962783955473057 1.0 2884 +Phenotype MP:0002391 abnormal Peyer's patch germinal center morphology 0.08490922348446772 0.4957707501038101 1.0 2885 +Biological Process GO:0014850 response to muscle activity 0.08489189109127626 0.49545660375540407 1.0 2886 +Biological Process GO:0009299 mRNA transcription 0.08487555868596086 0.49516058199811736 1.0 2887 +Biological Process GO:0042789 mRNA transcription by RNA polymerase II 0.08487555868596086 0.49516058199811736 1.0 2887 +Biological Process GO:0010883 regulation of lipid storage 0.0848576043004402 0.4948351621563861 1.0 2889 +Biological Process GO:0006904 vesicle docking involved in exocytosis 0.08480596802683338 0.49389926446356947 1.0 2890 +Phenotype MP:0013804 decreased IgG2 level 0.08479578010680466 0.4937146103399571 1.0 2891 +Phenotype MP:0008686 abnormal interleukin-2 secretion 0.08479310913996685 0.4936661995711992 1.0 2892 +Phenotype MP:0021160 decreased heart right ventricle wall thickness 0.08478056239719156 0.4934387922314449 1.0 2893 +Phenotype MP:0010909 pulmonary alveolar hemorrhage 0.08473867016148584 0.49267950338263194 1.0 2894 +Phenotype MP:0005463 abnormal CD4-positive, alpha-beta T cell physiology 0.08471046027523188 0.4921682045297997 1.0 2895 +Biological Process GO:0002757 immune response-activating signaling pathway 0.08469001519864305 0.49179764138353865 1.0 2896 +Biological Process GO:0048659 smooth muscle cell proliferation 0.08467562842980159 0.491536883919351 1.0 2897 +Phenotype MP:0005243 hemothorax 0.08467477975087556 0.491521501774333 1.0 2898 +Biological Process GO:0007269 neurotransmitter secretion 0.08467388337097581 0.49150525505818826 1.0 2899 +Biological Process GO:0099643 signal release from synapse 0.08467388337097581 0.49150525505818826 1.0 2899 +Biological Process GO:0150079 negative regulation of neuroinflammatory response 0.08464682561103865 0.4910148382769387 1.0 2901 +Phenotype MP:0009755 impaired behavioral response to alcohol 0.08462678311676042 0.4906515718589142 1.0 2902 +Biological Process GO:0032946 positive regulation of mononuclear cell proliferation 0.08461489031565328 0.4904360170882108 1.0 2903 +Phenotype MP:0001984 abnormal olfaction 0.0845799990762135 0.48980361997257366 1.0 2904 +Biological Process GO:0043299 leukocyte degranulation 0.08456048386539272 0.4894499104674869 1.0 2905 +Phenotype MP:0001087 abnormal nodose ganglion morphology 0.0845423191308936 0.4891206780903058 1.0 2906 +Phenotype MP:0030969 increased circulating adiponectin level 0.08452309511670597 0.4887722464691188 1.0 2907 +Biological Process GO:0061371 determination of heart left/right asymmetry 0.08451321485705132 0.4885931686315966 1.0 2908 +Phenotype MP:0005027 increased susceptibility to parasitic infection 0.08448583677850519 0.4880969461361434 1.0 2909 +Phenotype MP:0000364 abnormal vascular regression 0.0844848339758485 0.4880787705276575 1.0 2910 +Phenotype MP:0003418 premature intramembranous bone ossification 0.0844800824820956 0.4879926506020674 1.0 2911 +Phenotype MP:0030435 premature craniofacial suture closure 0.0844800824820956 0.4879926506020674 1.0 2911 +Phenotype MP:0000081 premature cranial suture closure 0.0844800824820956 0.4879926506020674 1.0 2911 +Biological Process GO:0032292 peripheral nervous system axon ensheathment 0.08447054857075553 0.48781985026223995 1.0 2914 +Biological Process GO:0022011 myelination in peripheral nervous system 0.08447054857075553 0.48781985026223995 1.0 2914 +Phenotype MP:0001071 abnormal facial nerve morphology 0.08444149926958344 0.4872933371727806 1.0 2916 +Biological Process GO:0001836 release of cytochrome c from mitochondria 0.08443784132361398 0.4872270375939355 1.0 2917 +Phenotype MP:0001721 absent visceral yolk sac blood islands 0.08440643096482203 0.48665773078167857 1.0 2918 +Phenotype MP:0003862 decreased aggression towards male mice 0.08438927979456334 0.48634686906465313 1.0 2919 +Biological Process GO:0009408 response to heat 0.08438489857438891 0.48626746027764045 1.0 2920 +Phenotype MP:0010038 abnormal placenta physiology 0.08435513258100413 0.4857279572773789 1.0 2921 +Phenotype MP:0000929 open neural tube 0.08428007607510146 0.48436757230382216 1.0 2922 +Phenotype MP:0013258 abnormal extracellular matrix morphology 0.0842642609172084 0.48408092555823495 1.0 2923 +Biological Process GO:0002369 T cell cytokine production 0.08423689085156294 0.48358484829509096 1.0 2924 +Phenotype MP:0005617 increased susceptibility to type IV hypersensitivity reaction 0.08422293763744959 0.4833319489283494 1.0 2925 +Phenotype MP:0008061 absent podocyte slit diaphragm 0.08421301870809061 0.48315217020975015 1.0 2926 +Biological Process GO:0045671 negative regulation of osteoclast differentiation 0.08419731844517409 0.4828676059138817 1.0 2927 +Phenotype MP:0001100 abnormal vagus ganglion morphology 0.08419080607336105 0.48274957040649796 1.0 2928 +Phenotype MP:0003247 abnormal glutaminergic neuron morphology 0.0841864070318683 0.4826698386114616 1.0 2929 +Phenotype MP:0009433 polyovular ovarian follicle 0.08410198851098316 0.48113976888704685 1.0 2930 +Phenotype MP:0002183 gliosis 0.08409728039891995 0.48105443524637725 1.0 2931 +Biological Process GO:0071870 cellular response to catecholamine stimulus 0.08405497897152892 0.48028772987566115 1.0 2932 +Biological Process GO:0071868 cellular response to monoamine stimulus 0.08405497897152892 0.48028772987566115 1.0 2932 +Phenotype MP:0012263 decreased hindbrain size 0.08402294811562738 0.4797071766706517 1.0 2934 +Biological Process GO:0002456 T cell mediated immunity 0.0840035883227307 0.4793562840860438 1.0 2935 +Biological Process GO:0010665 regulation of cardiac muscle cell apoptotic process 0.08397579057932125 0.4788524552443172 1.0 2936 +Phenotype MP:0008650 abnormal interleukin-1 secretion 0.08393984582141245 0.47820096330568795 1.0 2937 +Phenotype MP:0004088 abnormal sarcoplasmic reticulum morphology 0.08392959255058885 0.47801512471127855 1.0 2938 +Biological Process GO:1903307 positive regulation of regulated secretory pathway 0.08388976475104626 0.477293253377462 1.0 2939 +Phenotype MP:0000239 absent common myeloid progenitor cells 0.08388670953153587 0.47723787810169 1.0 2940 +Phenotype MP:0000877 abnormal Purkinje cell morphology 0.08385464113219498 0.476656644428943 1.0 2941 +Phenotype MP:0005103 abnormal retina pigmentation 0.08385111802438439 0.4765927887662244 1.0 2942 +Biological Process GO:0046643 regulation of gamma-delta T cell activation 0.08385023922239343 0.4765768606463519 1.0 2943 +Biological Process GO:0045586 regulation of gamma-delta T cell differentiation 0.08385023922239343 0.4765768606463519 1.0 2943 +Biological Process GO:0001845 phagolysosome assembly 0.08384025039816312 0.47639581509642936 1.0 2945 +Biological Process GO:0003007 heart morphogenesis 0.08380334547890589 0.47572692041496145 1.0 2946 +Biological Process GO:0046823 negative regulation of nucleocytoplasmic transport 0.08377848227381834 0.4752762795252908 1.0 2947 +Biological Process GO:0090317 negative regulation of intracellular protein transport 0.08377848227381834 0.4752762795252908 1.0 2947 +Phenotype MP:0006303 abnormal retina nerve fiber layer morphology 0.08377823764108183 0.47527184560321045 1.0 2949 +Biological Process GO:0061138 morphogenesis of a branching epithelium 0.08377276474762685 0.4751726504444631 1.0 2950 +Biological Process GO:0046639 negative regulation of alpha-beta T cell differentiation 0.08376330566516044 0.4750012063638177 1.0 2951 +Phenotype MP:0001319 irregularly shaped pupil 0.08373803733155849 0.4745432225964481 1.0 2952 +Phenotype MP:0008954 abnormal cellular hemoglobin content 0.08373311415801266 0.4744539910070819 1.0 2953 +Biological Process GO:0140352 export from cell 0.0837304891161943 0.4744064126206155 1.0 2954 +Biological Process GO:0034110 regulation of homotypic cell-cell adhesion 0.08372361050503863 0.47428173909441584 1.0 2955 +Biological Process GO:0010564 regulation of cell cycle process 0.08372125985490408 0.47423913400532114 1.0 2956 +Biological Process GO:0010517 regulation of phospholipase activity 0.08372080481970623 0.4742308865784238 1.0 2957 +Phenotype MP:0008039 increased NK T cell number 0.08369768661169741 0.47381187343076225 1.0 2958 +Phenotype MP:0009112 abnormal pancreatic beta cell mass 0.08365088702064993 0.4729636396945403 1.0 2959 +Biological Process GO:0021915 neural tube development 0.08364376256802075 0.47283451033813084 1.0 2960 +Phenotype MP:0001065 abnormal trigeminal nerve morphology 0.08362511397371453 0.47249650809346144 1.0 2961 +Biological Process GO:1903305 regulation of regulated secretory pathway 0.0836147461065504 0.4723085924620543 1.0 2962 +Phenotype MP:0003863 decreased aggression towards mice 0.0836038137792604 0.472110446097626 1.0 2963 +Phenotype MP:0010981 abnormal branching involved in ureteric bud morphogenesis 0.08358020286506884 0.4716825027435909 1.0 2964 +Phenotype MP:0012703 decreased embryonic neuroepithelium thickness 0.08350498801258144 0.47031924776813505 1.0 2965 +Phenotype MP:0003885 abnormal rostral-caudal body axis extension 0.08350275030356324 0.47027868971541287 1.0 2966 +Phenotype MP:0011228 abnormal vitamin D level 0.08349593089081231 0.4701550891491024 1.0 2967 +Phenotype MP:0003257 abnormal abdominal wall morphology 0.08348560075113987 0.46996785732134644 1.0 2968 +Biological Process GO:0045454 cell redox homeostasis 0.08341865464694476 0.4687544718447658 1.0 2969 +Biological Process GO:0016055 Wnt signaling pathway 0.08340815456398731 0.4685641598271117 1.0 2970 +Phenotype MP:0009347 increased trabecular bone thickness 0.0834054556692918 0.4685152428712153 1.0 2971 +Phenotype MP:0003853 dry skin 0.08338439257338104 0.4681334782416341 1.0 2972 +Biological Process GO:0002052 positive regulation of neuroblast proliferation 0.08338284703972754 0.4681054657364813 1.0 2973 +Phenotype MP:0009790 decreased susceptibility to viral infection induced morbidity/mortality 0.08337850138792668 0.4680267016195125 1.0 2974 +Biological Process GO:0051055 negative regulation of lipid biosynthetic process 0.08336571505819856 0.4677949518115527 1.0 2975 +Biological Process GO:0002281 macrophage activation involved in immune response 0.0833440387293033 0.46740207245011217 1.0 2976 +Biological Process GO:0002088 lens development in camera-type eye 0.08333145171419243 0.46717393518189243 1.0 2977 +Phenotype MP:0008752 abnormal tumor necrosis factor level 0.08331594028360234 0.4668927934362257 1.0 2978 +Phenotype MP:0004756 abnormal proximal convoluted tubule morphology 0.08331055514079322 0.46679518874133774 1.0 2979 +Biological Process GO:1901873 regulation of post-translational protein modification 0.08330504655740589 0.46669534670931695 1.0 2980 +Phenotype MP:0000794 abnormal parietal lobe morphology 0.08329994052597645 0.4666028008553954 1.0 2981 +Phenotype MP:0009926 decreased transitional stage T2 B cell number 0.08328799619192728 0.4663863120598646 1.0 2982 +Biological Process GO:0060560 developmental growth involved in morphogenesis 0.08327424588213439 0.46613709029555467 1.0 2983 +Phenotype MP:0008113 abnormal macrophage differentiation 0.08325532076689568 0.4657940761612842 1.0 2984 +Biological Process GO:1903707 negative regulation of hemopoiesis 0.08322957575295731 0.46532745265297454 1.0 2985 +Phenotype MP:0000278 abnormal myocardial fiber morphology 0.08320810866321715 0.46493836571164565 1.0 2986 +Phenotype MP:0020866 abnormal lipogenesis 0.08320581240537273 0.4648967464725217 1.0 2987 +Biological Process GO:0007406 negative regulation of neuroblast proliferation 0.08319827830141724 0.464760192263303 1.0 2988 +Phenotype MP:0002914 abnormal endplate potential 0.08318601195111097 0.4645378669840172 1.0 2989 +Phenotype MP:0000238 absent pre-B cells 0.08318141204185048 0.46445449449868176 1.0 2990 +Phenotype MP:0008210 increased mature B cell number 0.08317038435080337 0.4642546196841925 1.0 2991 +Phenotype MP:0013543 abnormal holocrine gland morphology 0.08314820483493113 0.4638526201539654 1.0 2992 +Phenotype MP:0000647 abnormal sebaceous gland morphology 0.08314820483493113 0.4638526201539654 1.0 2992 +Phenotype MP:0030017 decreased adipocyte glucose uptake 0.08314512206471825 0.46379674552692146 1.0 2994 +Phenotype MP:0002177 abnormal outer ear morphology 0.08313897628172506 0.46368535437256225 1.0 2995 +Biological Process GO:0042307 positive regulation of protein import into nucleus 0.08309575082123266 0.4629019010766523 1.0 2996 +Phenotype MP:0008560 increased tumor necrosis factor secretion 0.08308613782861496 0.46272766740362475 1.0 2997 +Biological Process GO:0090306 meiotic spindle assembly 0.08308035359797328 0.46262282931725374 1.0 2998 +Phenotype MP:0008482 decreased spleen germinal center number 0.08306602703613886 0.4623631630936815 1.0 2999 +Phenotype MP:0003058 increased insulin secretion 0.08306465285978315 0.46233825640714127 1.0 3000 +Biological Process GO:0031294 lymphocyte costimulation 0.08306156943479936 0.46228236991249855 1.0 3001 +Phenotype MP:0010620 thick mitral valve 0.08305833834799325 0.46222380707525446 1.0 3002 +Biological Process GO:0055006 cardiac cell development 0.08304722155514432 0.4620223173074595 1.0 3003 +Phenotype MP:0006205 embryonic lethality between implantation and somite formation 0.0830377368746349 0.4618504092671259 1.0 3004 +Biological Process GO:2000463 positive regulation of excitatory postsynaptic potential 0.08297031643219621 0.46062842649959523 1.0 3005 +Phenotype MP:0002645 abnormal intestinal cholesterol absorption 0.0829609156586143 0.460458039256453 1.0 3006 +Phenotype MP:0011999 abnormal tail length 0.0829559114386158 0.46036733871546126 1.0 3007 +Biological Process GO:0050807 regulation of synapse organization 0.08295080225592233 0.4602747357454752 1.0 3008 +Biological Process GO:0030500 regulation of bone mineralization 0.08290496196556096 0.45944388915275025 1.0 3009 +Phenotype MP:0006097 abnormal cerebellar lobule formation 0.08282008783347283 0.45790556156145407 1.0 3010 +Phenotype MP:0011183 abnormal primitive endoderm morphology 0.08281441089655095 0.45780266815346127 1.0 3011 +Phenotype MP:0031018 decreased granulosa cell proliferation 0.0828072158500418 0.4576722592963293 1.0 3012 +Phenotype MP:0003457 abnormal circulating ketone body level 0.08278916153044213 0.4573450281683172 1.0 3013 +Biological Process GO:0002863 positive regulation of inflammatory response to antigenic stimulus 0.0827891376202059 0.4573445947998077 1.0 3014 +Biological Process GO:0070255 regulation of mucus secretion 0.0827667784892272 0.4569393397797479 1.0 3015 +Phenotype MP:0010875 increased bone volume 0.08276130573796037 0.4568401471981338 1.0 3016 +Phenotype MP:0001436 abnormal suckling behavior 0.08275666267142989 0.45675599249544263 1.0 3017 +Phenotype MP:0020851 abnormal vacuole morphology 0.08274004186645434 0.45645474354886256 1.0 3018 +Phenotype MP:0008177 increased germinal center B cell number 0.08269704902254227 0.4556755063844748 1.0 3019 +Phenotype MP:0014168 abnormal brown adipose tissue mass 0.08269102962365116 0.4555664059180618 1.0 3020 +Biological Process GO:0002028 regulation of sodium ion transport 0.08268891289665936 0.45552804064168595 1.0 3021 +Phenotype MP:0005669 increased circulating leptin level 0.08267214241075682 0.4552240787566144 1.0 3022 +Phenotype MP:0004523 decreased cochlear hair cell stereocilia number 0.08264603827838635 0.4547509462946453 1.0 3023 +Phenotype MP:0004970 kidney atrophy 0.08264181857139719 0.4546744649035676 1.0 3024 +Phenotype MP:0001683 absent mesoderm 0.0826339853305148 0.4545324888941266 1.0 3025 +Phenotype MP:0005322 abnormal serotonin level 0.08259482898824022 0.45382278759629563 1.0 3026 +Biological Process GO:0060039 pericardium development 0.08258131513695577 0.45357785159772823 1.0 3027 +Phenotype MP:0003315 abnormal perineum morphology 0.08256470953216044 0.4532768781515399 1.0 3028 +Biological Process GO:0070542 response to fatty acid 0.0825562181254712 0.45312297301133286 1.0 3029 +Biological Process GO:1902033 regulation of hematopoietic stem cell proliferation 0.08254483990278427 0.45291674487717015 1.0 3030 +Biological Process GO:0051293 establishment of spindle localization 0.08250790531321062 0.45224731242682875 1.0 3031 +Phenotype MP:0000873 thin external granule cell layer 0.08248387515299938 0.4518117703179818 1.0 3032 +Phenotype MP:0009013 abnormal proestrus 0.0824726270571251 0.45160790070768675 1.0 3033 +Biological Process GO:0006650 glycerophospholipid metabolic process 0.08242927323720906 0.4508221209215007 1.0 3034 +Biological Process GO:0071396 cellular response to lipid 0.0823932927489206 0.4501699813764981 1.0 3035 +Phenotype MP:0005351 decreased susceptibility to autoimmune disorder 0.08238143478510185 0.4499550580250577 1.0 3036 +Phenotype MP:0006037 abnormal mitochondrial fission 0.08237900094674688 0.4499109451652018 1.0 3037 +Biological Process GO:0048286 lung alveolus development 0.08236957096024944 0.4497400284434908 1.0 3038 +Biological Process GO:0071354 cellular response to interleukin-6 0.08235200455098857 0.4494216405980877 1.0 3039 +Phenotype MP:0002434 abnormal T-helper 2 cell morphology 0.08231090908176242 0.4486767929910193 1.0 3040 +Phenotype MP:0002685 abnormal spermatogonia proliferation 0.0822993673806347 0.4484676018410371 1.0 3041 +Phenotype MP:0003051 curly tail 0.0822929745511809 0.44835173301630465 1.0 3042 +Biological Process GO:0060525 prostate glandular acinus development 0.08226818849915452 0.44790249051127506 1.0 3043 +Phenotype MP:0003890 abnormal embryonic-extraembryonic boundary morphology 0.08223930082110398 0.44737890681032505 1.0 3044 +Biological Process GO:1905523 positive regulation of macrophage migration 0.08219925064708034 0.4466530049810986 1.0 3045 +Biological Process GO:0010508 positive regulation of autophagy 0.08219818155776826 0.44663362793952105 1.0 3046 +Phenotype MP:0002656 abnormal keratinocyte differentiation 0.08219556309385745 0.4465861687763849 1.0 3047 +Phenotype MP:0002886 abnormal glutamate-mediated receptor currents 0.08215894601146223 0.4459224910836005 1.0 3048 +Biological Process GO:0006509 membrane protein ectodomain proteolysis 0.08214352936664282 0.44564306731209985 1.0 3049 +Biological Process GO:0048557 embryonic digestive tract morphogenesis 0.08212786525913474 0.4453591583261712 1.0 3050 +Biological Process GO:0017157 regulation of exocytosis 0.08206598594483516 0.44423760745813196 1.0 3051 +Biological Process GO:0045687 positive regulation of glial cell differentiation 0.0820105351975906 0.4432325731520878 1.0 3052 +Biological Process GO:0097194 execution phase of apoptosis 0.08200808283315086 0.44318812451044926 1.0 3053 +Biological Process GO:0043535 regulation of blood vessel endothelial cell migration 0.08196872963562585 0.44247485524843666 1.0 3054 +Phenotype MP:0005238 increased brain size 0.08191826947936065 0.44156027445999024 1.0 3055 +Phenotype MP:0001783 decreased white adipose tissue amount 0.08190687452437351 0.44135374305605085 1.0 3056 +Phenotype MP:0011363 renal glomerulus atrophy 0.08189764132418176 0.4411863930489111 1.0 3057 +Biological Process GO:0051298 centrosome duplication 0.08189356779272816 0.4411125610617684 1.0 3058 +Phenotype MP:0000324 increased mast cell number 0.0818835498207997 0.44093098721532986 1.0 3059 +Phenotype MP:0010357 increased prostate gland tumor incidence 0.0818741114494339 0.44075991851946583 1.0 3060 +Phenotype MP:0010901 abnormal pulmonary alveolar parenchyma morphology 0.08185603965343369 0.4404323706349991 1.0 3061 +Biological Process GO:0044058 regulation of digestive system process 0.08185168637690743 0.44035346832132444 1.0 3062 +Biological Process GO:0006869 lipid transport 0.08184747881459797 0.4402772070502694 1.0 3063 +Biological Process GO:0048641 regulation of skeletal muscle tissue development 0.08182768902739312 0.43991852090015376 1.0 3064 +Biological Process GO:0002764 immune response-regulating signaling pathway 0.08182074921069249 0.4397927380350278 1.0 3065 +Biological Process GO:0003181 atrioventricular valve morphogenesis 0.08179189100991013 0.43926968860398835 1.0 3066 +Phenotype MP:0011633 abnormal mitochondrial shape 0.08173333450994102 0.4382083631172231 1.0 3067 +Phenotype MP:0000600 liver hypoplasia 0.08172815709837367 0.4381145235118025 1.0 3068 +Phenotype MP:0012088 abnormal midbrain size 0.0817237961107311 0.43803548143560334 1.0 3069 +Phenotype MP:0003461 abnormal response to novel object 0.08172359445435629 0.4380318264519503 1.0 3070 +Phenotype MP:0012778 abnormal liver triglyceride level 0.08172171048000632 0.43799767977318554 1.0 3071 +Phenotype MP:0005171 absent coat pigmentation 0.08168017763704982 0.4372449048499781 1.0 3072 +Phenotype MP:0008071 absent B cells 0.0816656858562067 0.4369822440631221 1.0 3073 +Biological Process GO:0008277 regulation of G protein-coupled receptor signaling pathway 0.0816588852623713 0.4368589845860964 1.0 3074 +Biological Process GO:0043271 negative regulation of monoatomic ion transport 0.08163083182305009 0.4363505213043303 1.0 3075 +Biological Process GO:0010717 regulation of epithelial to mesenchymal transition 0.081608420045994 0.4359443120840751 1.0 3076 +Biological Process GO:0032495 response to muramyl dipeptide 0.08158711866091284 0.4355582285083497 1.0 3077 +Biological Process GO:1902074 response to salt 0.08154641658560147 0.4348205110915815 1.0 3078 +Phenotype MP:0006243 impaired pupillary reflex 0.0815245170113944 0.43442358545108856 1.0 3079 +Phenotype MP:0009858 abnormal cellular extravasation 0.08149201962668484 0.4338345764996712 1.0 3080 +Phenotype MP:0003354 astrocytosis 0.081479050685901 0.4335995169008649 1.0 3081 +Biological Process GO:0042982 amyloid precursor protein metabolic process 0.08147391192142805 0.433506377766721 1.0 3082 +Phenotype MP:0009748 abnormal behavioral response to addictive substance 0.08146762308372979 0.4333923937728891 1.0 3083 +Phenotype MP:0008516 disorganized retina outer nuclear layer 0.08145413693751635 0.4331479599234938 1.0 3084 +Phenotype MP:0003109 short femur 0.08144731971436903 0.4330243990433346 1.0 3085 +Biological Process GO:0030859 polarized epithelial cell differentiation 0.08144485139991042 0.43297966131062093 1.0 3086 +Biological Process GO:0097106 postsynaptic density organization 0.08143214572894286 0.4327493734274408 1.0 3087 +Biological Process GO:0060047 heart contraction 0.08142527199116423 0.43262478823027817 1.0 3088 +Biological Process GO:0050869 negative regulation of B cell activation 0.08137861734445462 0.43177918158276574 1.0 3089 +Biological Process GO:0070231 T cell apoptotic process 0.08137257612844806 0.4316696856852617 1.0 3090 +Phenotype MP:0001958 emphysema 0.08136941020214994 0.4316123038699007 1.0 3091 +Phenotype MP:0005647 abnormal sex gland physiology 0.08135479108728227 0.43134733517793333 1.0 3092 +Phenotype MP:0003414 epidermal cyst 0.08134295166913064 0.43113274796320167 1.0 3093 +Phenotype MP:0002280 abnormal intercostal muscle morphology 0.08131096001619453 0.43055290530452595 1.0 3094 +Biological Process GO:0006826 iron ion transport 0.08131083691256691 0.4305506740745586 1.0 3095 +Phenotype MP:0004950 abnormal brain vasculature morphology 0.08122710296742586 0.42903301215602724 1.0 3096 +Biological Process GO:0043269 regulation of monoatomic ion transport 0.08119393658524887 0.4284318777520447 1.0 3097 +Phenotype MP:0010960 abnormal compact bone mass 0.08116404207477057 0.42789004540377035 1.0 3098 +Biological Process GO:0050832 defense response to fungus 0.0811322905452867 0.42731455493725023 1.0 3099 +Phenotype MP:0009611 epidermis stratum spinosum hyperplasia 0.08113183468860374 0.42730629262109077 1.0 3100 +Biological Process GO:0036293 response to decreased oxygen levels 0.08112397214619405 0.42716378552700923 1.0 3101 +Biological Process GO:0051051 negative regulation of transport 0.08111692442609253 0.4270360469331507 1.0 3102 +Phenotype MP:0003620 oliguria 0.08109728018300777 0.42667999874268403 1.0 3103 +Biological Process GO:0050856 regulation of T cell receptor signaling pathway 0.08108381140064869 0.4264358796098648 1.0 3104 +Biological Process GO:0006351 DNA-templated transcription 0.08106513079563626 0.42609729717719996 1.0 3105 +Phenotype MP:0001701 incomplete embryo turning 0.08105388183064555 0.4258934118143337 1.0 3106 +Phenotype MP:0011889 abnormal circulating ferritin level 0.08105255662281685 0.4258693926730839 1.0 3107 +Phenotype MP:0001930 abnormal meiosis 0.08105209621054565 0.4258610477877492 1.0 3108 +Phenotype MP:0001718 abnormal visceral yolk sac morphology 0.08103003562484501 0.42546120384438824 1.0 3109 +Phenotype MP:0008564 increased interferon-beta secretion 0.08102534310889398 0.4253761528803021 1.0 3110 +Biological Process GO:0003012 muscle system process 0.0810179214294583 0.4252416363442413 1.0 3111 +Phenotype MP:0001751 increased circulating luteinizing hormone level 0.08100413139043483 0.4249916944951415 1.0 3112 +Phenotype MP:0031131 myocardial fiber disarray 0.08098514392314837 0.4246475502417987 1.0 3113 +Biological Process GO:2000736 regulation of stem cell differentiation 0.08098488796699999 0.4246429110850198 1.0 3114 +Phenotype MP:0005107 abnormal stapes morphology 0.08097045639484879 0.4243813415693172 1.0 3115 +Phenotype MP:0003447 decreased tumor growth/size 0.08088622834007897 0.42285472400721863 1.0 3116 +Phenotype MP:0010844 increased effector memory CD4-positive, alpha-beta T cell number 0.08088607482912569 0.42285194165022494 1.0 3117 +Phenotype MP:0008765 decreased mast cell degranulation 0.08088257469495508 0.422788502380386 1.0 3118 +Biological Process GO:0070252 actin-mediated cell contraction 0.08086240134234979 0.4224228641799336 1.0 3119 +Phenotype MP:0004860 dilated kidney collecting duct 0.08084431283977 0.4220950134918721 1.0 3120 +Phenotype MP:0004839 bile duct hyperplasia 0.08083672174636691 0.42195742635969435 1.0 3121 +Phenotype MP:0003969 abnormal luteinizing hormone level 0.080804342167617 0.42137055261901435 1.0 3122 +Biological Process GO:0032647 regulation of interferon-alpha production 0.0807966611349955 0.42123133535551377 1.0 3123 +Phenotype MP:0001676 abnormal apical ectodermal ridge morphology 0.08079018157826934 0.421113894615373 1.0 3124 +Phenotype MP:0003886 abnormal embryonic epiblast morphology 0.08073676157218956 0.4201456671088532 1.0 3125 +Phenotype MP:0004960 abnormal prostate gland weight 0.08072607923308739 0.4199520517330471 1.0 3126 +Phenotype MP:0031084 decreased erythrocyte osmotic fragility 0.08068633005289472 0.4192316053600781 1.0 3127 +Phenotype MP:0004647 decreased lumbar vertebrae number 0.0806507469725164 0.4185866687582824 1.0 3128 +Biological Process GO:1904338 regulation of dopaminergic neuron differentiation 0.08064999678952534 0.41857307183345643 1.0 3129 +Phenotype MP:0001033 abnormal parasympathetic system morphology 0.08060823784285687 0.41781619882323384 1.0 3130 +Biological Process GO:0002069 columnar/cuboidal epithelial cell maturation 0.08060146768756604 0.4176934910390715 1.0 3131 +Biological Process GO:0001956 positive regulation of neurotransmitter secretion 0.08059921242019885 0.4176526147445947 1.0 3132 +Phenotype MP:0002428 abnormal semicircular canal morphology 0.08058881984379163 0.4174642512628299 1.0 3133 +Biological Process GO:0043280 positive regulation of cysteine-type endopeptidase activity involved in apoptotic process 0.08056009092635141 0.4169435450679146 1.0 3134 +Phenotype MP:0011256 abnormal neural fold morphology 0.08055712751342692 0.41688983376914784 1.0 3135 +Biological Process GO:0007141 male meiosis I 0.08055622053414002 0.41687339494111575 1.0 3136 +Phenotype MP:0011422 kidney medulla atrophy 0.0805501432792668 0.4167632458459696 1.0 3137 +Biological Process GO:0015850 organic hydroxy compound transport 0.08054494111395849 0.4166689575836762 1.0 3138 +Biological Process GO:0002440 production of molecular mediator of immune response 0.08053805022955507 0.4165440616071824 1.0 3139 +Biological Process GO:0042149 cellular response to glucose starvation 0.08052386830196101 0.41628701685186104 1.0 3140 +Phenotype MP:0009622 absent inguinal lymph nodes 0.08050875958324422 0.4160131741827302 1.0 3141 +Biological Process GO:0051966 regulation of synaptic transmission, glutamatergic 0.08046282557981765 0.41518062905842307 1.0 3142 +Phenotype MP:0003087 absent allantois 0.08045980548129006 0.4151258903438214 1.0 3143 +Phenotype MP:0002784 abnormal Sertoli cell morphology 0.08041517814772692 0.41431702836364975 1.0 3144 +Phenotype MP:0003202 abnormal neuron apoptosis 0.08041118205940101 0.41424460001854907 1.0 3145 +Biological Process GO:0016064 immunoglobulin mediated immune response 0.08040023224389059 0.41404613668343315 1.0 3146 +Phenotype MP:0010903 abnormal pulmonary alveolus wall morphology 0.08037795690217497 0.41364240032791905 1.0 3147 +Biological Process GO:0002523 leukocyte migration involved in inflammatory response 0.08035577220757328 0.4132403069342002 1.0 3148 +Phenotype MP:0008657 increased interleukin-1 beta secretion 0.08034462912092855 0.4130383405963294 1.0 3149 +Phenotype MP:0005437 abnormal glycogen level 0.08034197607367655 0.4129902546166751 1.0 3150 +Phenotype MP:0010143 enhanced fertility 0.08033020024958137 0.41277682003218896 1.0 3151 +Biological Process GO:0021819 layer formation in cerebral cortex 0.08032863523249234 0.41274845439345215 1.0 3152 +Biological Process GO:0035150 regulation of tube size 0.08028394647790638 0.4119384791688588 1.0 3153 +Phenotype MP:0000740 impaired smooth muscle contractility 0.08028121511623965 0.41188897375524963 1.0 3154 +Phenotype MP:0008663 increased interleukin-12 secretion 0.08024353531869677 0.4112060345514122 1.0 3155 +Phenotype MP:0010681 abnormal hair follicle bulb morphology 0.08021241782072586 0.4106420357861459 1.0 3156 +Phenotype MP:0009605 decreased keratohyalin granule number 0.08015398823323383 0.40958301056402396 1.0 3157 +Biological Process GO:0030307 positive regulation of cell growth 0.08015322676328884 0.40956920906529287 1.0 3158 +Phenotype MP:0009143 abnormal pancreatic duct morphology 0.080129395024512 0.40913726330741557 1.0 3159 +Phenotype MP:0001805 decreased IgG level 0.08010925952645542 0.408772311213499 1.0 3160 +Biological Process GO:0032940 secretion by cell 0.08010171930479504 0.40863564612203607 1.0 3161 +Phenotype MP:0004047 abnormal milk composition 0.08008754589570177 0.4083787557629305 1.0 3162 +Biological Process GO:0071900 regulation of protein serine/threonine kinase activity 0.08006945621231298 0.40805088367292913 1.0 3163 +Biological Process GO:0003161 cardiac conduction system development 0.08005667770900504 0.4078192757173548 1.0 3164 +Biological Process GO:0050792 regulation of viral process 0.08003306406172317 0.40739128282657483 1.0 3165 +Biological Process GO:0001937 negative regulation of endothelial cell proliferation 0.08002182856246298 0.4071876415275276 1.0 3166 +Phenotype MP:0008932 abnormal embryonic tissue physiology 0.08000593156779667 0.4068995115059036 1.0 3167 +Phenotype MP:0009815 decreased prostaglandin level 0.08000050991756869 0.40680124512095356 1.0 3168 +Phenotype MP:0006009 abnormal neuronal migration 0.07997257178442285 0.40629487174180773 1.0 3169 +Biological Process GO:2001244 positive regulation of intrinsic apoptotic signaling pathway 0.07996487348086168 0.406155341445792 1.0 3170 +Biological Process GO:0045104 intermediate filament cytoskeleton organization 0.07995944326593651 0.4060569198273256 1.0 3171 +Biological Process GO:0010738 regulation of protein kinase A signaling 0.07994647075016337 0.40582179543251434 1.0 3172 +Biological Process GO:0007431 salivary gland development 0.07994262720766887 0.40575213195175597 1.0 3173 +Phenotype MP:0009746 enhanced behavioral response to xenobiotic 0.0799389588898255 0.4056856443846578 1.0 3174 +Phenotype MP:0004014 abnormal uterine environment 0.07991896308750013 0.4053232242494477 1.0 3175 +Biological Process GO:0030316 osteoclast differentiation 0.07990962444306893 0.4051539630854113 1.0 3176 +Phenotype MP:0012317 impaired conditioning behavior 0.07990873213449867 0.4051377901613436 1.0 3177 +Biological Process GO:0043045 epigenetic programming of gene expression 0.07990392506578115 0.40505066295003084 1.0 3178 +Phenotype MP:0011957 decreased compensatory feeding amount 0.07990082223107331 0.4049944246578108 1.0 3179 +Phenotype MP:0001511 disheveled coat 0.0799003527333948 0.4049859151011869 1.0 3180 +Phenotype MP:0021156 abnormal heart right ventricle wall thickness 0.07984416829275598 0.4039675827411401 1.0 3181 +Phenotype MP:0000121 failure of tooth eruption 0.07984396686708095 0.40396393193887714 1.0 3182 +Phenotype MP:0008456 abnormal retina rod cell outer segment morphology 0.07981703246913519 0.40347575107038947 1.0 3183 +Biological Process GO:0031146 SCF-dependent proteasomal ubiquitin-dependent protein catabolic process 0.07981300099324917 0.403402681332455 1.0 3184 +Phenotype MP:0008852 retina neovascularization 0.07980517161975176 0.4032607754186351 1.0 3185 +Phenotype MP:0030095 abnormal midface morphology 0.0797882224721258 0.4029535753236181 1.0 3186 +Biological Process GO:0032633 interleukin-4 production 0.079786098423275 0.40291507733993254 1.0 3187 +Phenotype MP:0006306 abnormal nasal pit morphology 0.07976706739878192 0.402570143620458 1.0 3188 +Phenotype MP:0008755 abnormal immunoglobulin V(D)J recombination 0.07976003226983508 0.40244263323889656 1.0 3189 +Phenotype MP:0008894 abnormal intraepithelial T cell morphology 0.07975733445541078 0.40239373586271143 1.0 3190 +Phenotype MP:0001182 lung hemorrhage 0.07974004174967242 0.4020803088418865 1.0 3191 +Phenotype MP:0004521 abnormal cochlear hair cell stereociliary bundle morphology 0.07971618202449493 0.4016478558357908 1.0 3192 +Biological Process GO:0001659 temperature homeostasis 0.07970467748303922 0.4014393381978355 1.0 3193 +Biological Process GO:0003171 atrioventricular valve development 0.07970416689295323 0.4014300838490982 1.0 3194 +Phenotype MP:0000815 abnormal Ammon gyrus morphology 0.07968582462837293 0.4010976337727729 1.0 3195 +Phenotype MP:0002698 abnormal sclera morphology 0.07968469488826979 0.4010771574470788 1.0 3196 +Phenotype MP:0009116 abnormal brown fat cell morphology 0.07966859452744368 0.40078534145227235 1.0 3197 +Biological Process GO:1903320 regulation of protein modification by small protein conjugation or removal 0.07966668498667107 0.4007507313869327 1.0 3198 +Phenotype MP:0030540 misaligned teeth 0.07964661948455698 0.40038704795623486 1.0 3199 +Phenotype MP:0009114 decreased pancreatic beta cell mass 0.07963710769305998 0.40021464853437927 1.0 3200 +Phenotype MP:0009765 abnormal xenobiotic induced morbidity/mortality 0.07963380854143465 0.40015485203516027 1.0 3201 +Biological Process GO:0001702 gastrulation with mouth forming second 0.07962594492973074 0.4000123255603234 1.0 3202 +Phenotype MP:0002878 abnormal corticospinal tract morphology 0.07960008866395596 0.3995436856335206 1.0 3203 +Phenotype MP:0005077 abnormal melanogenesis 0.07959705720680521 0.39948874104602267 1.0 3204 +Phenotype MP:0000220 increased monocyte cell number 0.07953310598977781 0.39832963733291404 1.0 3205 +Biological Process GO:0140029 exocytic process 0.07953133401716683 0.3982975206644849 1.0 3206 +Biological Process GO:1903555 regulation of tumor necrosis factor superfamily cytokine production 0.07948951985960195 0.39753964696720734 1.0 3207 +Phenotype MP:0005031 abnormal trophoblast layer morphology 0.07948496663784521 0.3974571206840471 1.0 3208 +Phenotype MP:0005435 hemoperitoneum 0.07947887379800811 0.39734668911437837 1.0 3209 +Biological Process GO:0090009 primitive streak formation 0.07947697260865805 0.39731223041699293 1.0 3210 +Biological Process GO:0030890 positive regulation of B cell proliferation 0.07946635607059616 0.3971198076725966 1.0 3211 +Biological Process GO:0071383 cellular response to steroid hormone stimulus 0.07944035752946799 0.39664858903192307 1.0 3212 +Biological Process GO:0072091 regulation of stem cell proliferation 0.07942194956160176 0.39631494809596735 1.0 3213 +Biological Process GO:0003014 renal system process 0.07941474898719103 0.39618443904666484 1.0 3214 +Biological Process GO:0051965 positive regulation of synapse assembly 0.07940587939361965 0.39602367934074795 1.0 3215 +Phenotype MP:0004594 abnormal mandibular coronoid process morphology 0.07940173758930358 0.39594860992088576 1.0 3216 +Biological Process GO:0050857 positive regulation of antigen receptor-mediated signaling pathway 0.07936088055021873 0.3952080838150326 1.0 3217 +Phenotype MP:0020387 abnormal radial glial cell number 0.07934972315910938 0.3950058582114461 1.0 3218 +Phenotype MP:0004407 increased cochlear hair cell number 0.079349537765803 0.39500249799283277 1.0 3219 +Phenotype MP:0004277 abnormal lateral ganglionic eminence morphology 0.07931254100498242 0.3943319387003997 1.0 3220 +Phenotype MP:0000488 abnormal intestinal epithelium morphology 0.07928933117725401 0.39391126496264917 1.0 3221 +Phenotype MP:0003215 renal interstitial fibrosis 0.07925946905032222 0.39337001956003037 1.0 3222 +Phenotype MP:0010029 abnormal basicranium morphology 0.07923894383523533 0.3929980039186491 1.0 3223 +Biological Process GO:0051653 spindle localization 0.07922813522517602 0.3928020999056274 1.0 3224 +Phenotype MP:0009397 increased trophoblast giant cell number 0.07921763161880035 0.3926117240266844 1.0 3225 +Phenotype MP:0010218 abnormal T-helper 17 cell number 0.07920880577678457 0.39245175730943777 1.0 3226 +Biological Process GO:0045604 regulation of epidermal cell differentiation 0.079205089817738 0.39238440625454224 1.0 3227 +Phenotype MP:0008188 abnormal transitional stage B cell morphology 0.07918423627045001 0.39200643965411575 1.0 3228 +Phenotype MP:0002743 glomerulonephritis 0.07915242558434865 0.3914298769850922 1.0 3229 +Phenotype MP:0031116 microvesicular hepatic steatosis 0.07914905218265078 0.3913687347173519 1.0 3230 +Phenotype MP:0004268 abnormal optic stalk morphology 0.0791426577454537 0.3912528367525767 1.0 3231 +Biological Process GO:1902116 negative regulation of organelle assembly 0.07912222689772119 0.39088253150164515 1.0 3232 +Biological Process GO:0051054 positive regulation of DNA metabolic process 0.07911855193940243 0.3908159235771865 1.0 3233 +Phenotype MP:0001101 abnormal superior vagus ganglion morphology 0.07911273751190939 0.390710538178596 1.0 3234 +Phenotype MP:0009063 abnormal oviduct size 0.07908700296936522 0.39024410446232566 1.0 3235 +Biological Process GO:1903533 regulation of protein targeting 0.07908414081741633 0.3901922284995896 1.0 3236 +Biological Process GO:0032760 positive regulation of tumor necrosis factor production 0.07908394027037868 0.3901885936224631 1.0 3237 +Phenotype MP:0008483 increased spleen germinal center size 0.07906278682621615 0.38980519144790676 1.0 3238 +Biological Process GO:0033122 negative regulation of purine nucleotide catabolic process 0.07903690478635461 0.38933608437065637 1.0 3239 +Biological Process GO:0045820 negative regulation of glycolytic process 0.07903690478635461 0.38933608437065637 1.0 3239 +Biological Process GO:0030812 negative regulation of nucleotide catabolic process 0.07903690478635461 0.38933608437065637 1.0 3239 +Phenotype MP:0000065 abnormal bone marrow cavity morphology 0.0790282693489559 0.38917956870108167 1.0 3242 +Biological Process GO:0010464 regulation of mesenchymal cell proliferation 0.07901658030702963 0.38896770702699307 1.0 3243 +Phenotype MP:0006206 embryonic lethality between somite formation and embryo turning 0.07899840597094399 0.3886383006228722 1.0 3244 +Phenotype MP:0001306 small lens 0.07899397005366715 0.3885579004612237 1.0 3245 +Phenotype MP:0005156 bradykinesia 0.07898171946357258 0.3883358608327939 1.0 3246 +Biological Process GO:0090189 regulation of branching involved in ureteric bud morphogenesis 0.07897858807972147 0.38827910509275176 1.0 3247 +Phenotype MP:0003385 abnormal body wall morphology 0.0789414903927359 0.38760671653266726 1.0 3248 +Phenotype MP:0010470 dilated ascending aorta 0.07893857631034207 0.3875538993404385 1.0 3249 +Phenotype MP:0000120 malocclusion 0.07892585268733998 0.387323286080028 1.0 3250 +Biological Process GO:0031295 T cell costimulation 0.07891578392318599 0.38714079163410825 1.0 3251 +Phenotype MP:0003462 abnormal response to novel odor 0.07891244880961779 0.38708034333147645 1.0 3252 +Phenotype MP:0001967 deafness 0.07887962657711312 0.3864854465752134 1.0 3253 +Biological Process GO:1903037 regulation of leukocyte cell-cell adhesion 0.07883923113108193 0.38575328675615383 1.0 3254 +Biological Process GO:0008654 phospholipid biosynthetic process 0.07881665589238218 0.3853441148245238 1.0 3255 +Phenotype MP:0011131 abnormal lung endothelial cell physiology 0.07879038440501529 0.3848679490848976 1.0 3256 +Phenotype MP:0008411 decreased cellular sensitivity to ultraviolet irradiation 0.07878711608215094 0.3848087113511406 1.0 3257 +Phenotype MP:0005325 abnormal renal glomerulus morphology 0.07878303245556662 0.38473469639166274 1.0 3258 +Biological Process GO:0003013 circulatory system process 0.07877176036921585 0.38453039195851874 1.0 3259 +Phenotype MP:0002663 absent blastocoele 0.07875994180662271 0.3843161827468404 1.0 3260 +Biological Process GO:1902692 regulation of neuroblast proliferation 0.0787456143827826 0.384056500899578 1.0 3261 +Biological Process GO:0051893 regulation of focal adhesion assembly 0.07872100473020882 0.3836104556012632 1.0 3262 +Biological Process GO:0090109 regulation of cell-substrate junction assembly 0.07872100473020882 0.3836104556012632 1.0 3262 +Phenotype MP:0003306 small intestinal inflammation 0.0786945790489143 0.3831314951258625 1.0 3264 +Biological Process GO:0043500 muscle adaptation 0.07869430920177001 0.38312660419741007 1.0 3265 +Phenotype MP:0010429 abnormal heart left ventricle outflow tract morphology 0.07864672793319194 0.38226420270378997 1.0 3266 +Phenotype MP:0002747 abnormal aortic valve morphology 0.07864672793319194 0.38226420270378997 1.0 3266 +Biological Process GO:0045936 negative regulation of phosphate metabolic process 0.07859113315873112 0.3812565579316919 1.0 3268 +Biological Process GO:0010563 negative regulation of phosphorus metabolic process 0.07859113315873112 0.3812565579316919 1.0 3268 +Phenotype MP:0000599 enlarged liver 0.07858470722289379 0.38114008906001967 1.0 3270 +Phenotype MP:0009004 progressive hair loss 0.0785762260516677 0.3809863694356463 1.0 3271 +Phenotype MP:0002920 decreased paired-pulse facilitation 0.0785759463308836 0.38098129954934007 1.0 3272 +Phenotype MP:0004163 abnormal adenohypophysis morphology 0.07856982213980002 0.3808702997442584 1.0 3273 +Phenotype MP:0011290 decreased nephron number 0.07854489827421207 0.38041855939449104 1.0 3274 +Phenotype MP:0008288 abnormal adrenal cortex morphology 0.0785232004018197 0.3800252895612403 1.0 3275 +Phenotype MP:0030967 abnormal circulating adiponectin level 0.07851420158254752 0.3798621876639376 1.0 3276 +Phenotype MP:0004885 abnormal endolymph physiology 0.07850915446531515 0.37977070961869525 1.0 3277 +Biological Process GO:0042308 negative regulation of protein import into nucleus 0.07850759105429161 0.37974237308959197 1.0 3278 +Biological Process GO:0032675 regulation of interleukin-6 production 0.07848516059031518 0.3793358251724399 1.0 3279 +Biological Process GO:0045137 development of primary sexual characteristics 0.07846369493037919 0.37894676414604106 1.0 3280 +Biological Process GO:0031669 cellular response to nutrient levels 0.0784575525590272 0.3788354348270332 1.0 3281 +Phenotype MP:0006107 abnormal fetal atrioventricular canal morphology 0.07845598086325989 0.3788069481385158 1.0 3282 +Phenotype MP:0012448 abnormal primary motor cortex morphology 0.07844990947886554 0.37869690544468904 1.0 3283 +Phenotype MP:0000799 abnormal precentral gyrus morphology 0.07844990947886554 0.37869690544468904 1.0 3283 +Biological Process GO:0051646 mitochondrion localization 0.07844078174929026 0.37853146707252433 1.0 3285 +Phenotype MP:0004076 abnormal vitelline vascular remodeling 0.07843160694694506 0.37836517551530824 1.0 3286 +Biological Process GO:0002053 positive regulation of mesenchymal cell proliferation 0.07842832965167235 0.37830577515834657 1.0 3287 +Biological Process GO:1905332 positive regulation of morphogenesis of an epithelium 0.07839780916761918 0.37775259715742227 1.0 3288 +Phenotype MP:0010094 abnormal chromosome stability 0.07839210123047258 0.3776491418762197 1.0 3289 +Phenotype MP:0000921 demyelination 0.07838371697593216 0.37749717884844364 1.0 3290 +Phenotype MP:0010685 abnormal hair follicle inner root sheath morphology 0.07838050120527162 0.37743889361344124 1.0 3291 +Phenotype MP:0009641 kidney degeneration 0.07833979546177727 0.37670110971155035 1.0 3292 +Phenotype MP:0002847 abnormal renal glomerular filtration rate 0.07831498050145913 0.3762513432492002 1.0 3293 +Biological Process GO:0010824 regulation of centrosome duplication 0.07830196182102334 0.3760153821286098 1.0 3294 +Biological Process GO:0060484 lung-associated mesenchyme development 0.07830077939175506 0.3759939508217629 1.0 3295 +Biological Process GO:0006954 inflammatory response 0.078268556501774 0.3754099170353827 1.0 3296 +Phenotype MP:0030609 decreased incisor number 0.07826734299410454 0.37538792243839236 1.0 3297 +Phenotype MP:0001102 small superior vagus ganglion 0.07823940907831439 0.3748816254980207 1.0 3298 +Biological Process GO:0010038 response to metal ion 0.07822613351835517 0.3746410084846534 1.0 3299 +Phenotype MP:0011704 decreased fibroblast proliferation 0.07819906585617276 0.3741504122270817 1.0 3300 +Biological Process GO:0032774 RNA biosynthetic process 0.07819613494040834 0.37409728993319485 1.0 3301 +Biological Process GO:0090594 inflammatory response to wounding 0.07816541010685796 0.37354040813628353 1.0 3302 +Biological Process GO:0070585 protein localization to mitochondrion 0.0781545697481395 0.3733439286848197 1.0 3303 +Phenotype MP:0000537 abnormal urethra morphology 0.07815397135109392 0.37333308285154726 1.0 3304 +Biological Process GO:0071869 response to catecholamine 0.07814808206966217 0.37322634073947525 1.0 3305 +Phenotype MP:0004936 impaired branching involved in ureteric bud morphogenesis 0.07814197851746518 0.37311571501030966 1.0 3306 +Phenotype MP:0005464 abnormal platelet physiology 0.07814175242545318 0.3731116171353544 1.0 3307 +Biological Process GO:0050771 negative regulation of axonogenesis 0.07814128554517819 0.37310315501867425 1.0 3308 +Phenotype MP:0008262 abnormal hippocampus region morphology 0.07806455294313164 0.3717123911195208 1.0 3309 +Phenotype MP:0013544 abnormal merocrine gland morphology 0.07804890684176213 0.37142880849144827 1.0 3310 +Phenotype MP:0008721 abnormal chemokine level 0.07804274781654663 0.37131717732431413 1.0 3311 +Phenotype MP:0021152 abnormal amyloid deposition 0.07803985315013784 0.37126471204314204 1.0 3312 +Phenotype MP:0000604 amyloidosis 0.07803985315013784 0.37126471204314204 1.0 3312 +Biological Process GO:0030903 notochord development 0.07800379930100398 0.37061124284669184 1.0 3314 +Phenotype MP:0004401 increased cochlear outer hair cell number 0.07782354690924764 0.36734420233842513 1.0 3315 +Phenotype MP:0008261 arrest of male meiosis 0.07781587382139643 0.36720512907238334 1.0 3316 +Phenotype MP:0005140 decreased cardiac muscle contractility 0.07778888022256392 0.3667158751990204 1.0 3317 +Phenotype MP:0011138 abnormal lung endothelial cell proliferation 0.0777808145513561 0.36656968643389204 1.0 3318 +Biological Process GO:0008625 extrinsic apoptotic signaling pathway via death domain receptors 0.07777409405202973 0.36644787865469364 1.0 3319 +Phenotype MP:0002804 abnormal motor learning 0.07777184580383456 0.3664071295813821 1.0 3320 +Biological Process GO:0071709 membrane assembly 0.07775774721246265 0.3661515952793252 1.0 3321 +Phenotype MP:0020203 abnormal mast cell number 0.0777162698766175 0.3653998264120126 1.0 3322 +Biological Process GO:0048708 astrocyte differentiation 0.0777143273910752 0.3653646192289533 1.0 3323 +Biological Process GO:0002320 lymphoid progenitor cell differentiation 0.07768448315764287 0.36482369814262794 1.0 3324 +Biological Process GO:0048368 lateral mesoderm development 0.07767818286014994 0.3647095064421851 1.0 3325 +Biological Process GO:2000647 negative regulation of stem cell proliferation 0.07767381872887569 0.3646304073882561 1.0 3326 +Phenotype MP:0004892 increased adiponectin level 0.07766214997921139 0.3644189135075779 1.0 3327 +Phenotype MP:0000125 absent incisors 0.07765054854643583 0.36420863973277584 1.0 3328 +Phenotype MP:0006355 abnormal sixth pharyngeal arch artery morphology 0.07763415169565313 0.3639114499135834 1.0 3329 +Phenotype MP:0006347 abnormal sixth pharyngeal arch morphology 0.07763415169565313 0.3639114499135834 1.0 3329 +Biological Process GO:0046034 ATP metabolic process 0.07763152930734529 0.36386391962149334 1.0 3331 +Phenotype MP:0003936 abnormal reproductive system development 0.07763064523664398 0.3638478960072421 1.0 3332 +Biological Process GO:0003151 outflow tract morphogenesis 0.07761387715691603 0.36354397773362995 1.0 3333 +Phenotype MP:0000512 intestinal ulcer 0.07760233520926418 0.36333478211544445 1.0 3334 +Phenotype MP:0000813 abnormal hippocampus layer morphology 0.07758291985376087 0.3629828824691004 1.0 3335 +Phenotype MP:0012135 embryonic-extraembryonic boundary constriction 0.07756737801568969 0.36270118959359005 1.0 3336 +Biological Process GO:1902004 positive regulation of amyloid-beta formation 0.07752463438893642 0.36192646944306944 1.0 3337 +Biological Process GO:0006836 neurotransmitter transport 0.07752198333822025 0.3618784196502494 1.0 3338 +Biological Process GO:0055023 positive regulation of cardiac muscle tissue growth 0.07751873023906053 0.36181945784325953 1.0 3339 +Biological Process GO:0060045 positive regulation of cardiac muscle cell proliferation 0.07751873023906053 0.36181945784325953 1.0 3339 +Biological Process GO:0042659 regulation of cell fate specification 0.07746451203834837 0.3608367632099954 1.0 3341 +Phenotype MP:0002761 abnormal hippocampal mossy fiber morphology 0.07745313814505694 0.3606306135453074 1.0 3342 +Phenotype MP:0008152 decreased diameter of femur 0.0774317351109658 0.36024268760050154 1.0 3343 +Phenotype MP:0008283 small hippocampus 0.07742827511400419 0.3601799758099843 1.0 3344 +Phenotype MP:0000032 cochlear degeneration 0.07741796033314241 0.35999302235776676 1.0 3345 +Phenotype MP:0031024 increased susceptibility to Riboviria infection induced morbidity/mortality 0.07740607072408523 0.3597775254423651 1.0 3346 +Phenotype MP:0005598 decreased ventricle muscle contractility 0.07739893725743585 0.35964823270854446 1.0 3347 +Biological Process GO:0048754 branching morphogenesis of an epithelial tube 0.07738637780025426 0.35942059492258055 1.0 3348 +Phenotype MP:0031015 abnormal granulosa cell apoptosis 0.07734139623129965 0.3586053124929375 1.0 3349 +Biological Process GO:0042634 regulation of hair cycle 0.07729840971850255 0.357826190078811 1.0 3350 +Phenotype MP:0012099 decreased spongiotrophoblast size 0.07728131372324543 0.35751632839825337 1.0 3351 +Phenotype MP:0006301 abnormal mesenchyme morphology 0.0772577009489942 0.3570883513309888 1.0 3352 +Phenotype MP:0014201 abnormal intestinal epithelium physiology 0.07724777634902047 0.3569084698335696 1.0 3353 +Phenotype MP:0001074 abnormal vagus nerve morphology 0.07723503987491032 0.3566776236492559 1.0 3354 +Biological Process GO:0060713 labyrinthine layer morphogenesis 0.07722414979255099 0.35648024296620584 1.0 3355 +Phenotype MP:0003873 pharyngeal arch hypoplasia 0.0772192039214672 0.35639059998825706 1.0 3356 +Biological Process GO:0007189 adenylate cyclase-activating G protein-coupled receptor signaling pathway 0.07720012135392462 0.3560447320607591 1.0 3357 +Phenotype MP:0004953 decreased spleen weight 0.07718459442277603 0.35576330937040124 1.0 3358 +Phenotype MP:0001191 abnormal skin condition 0.0771808345402365 0.3556951622105034 1.0 3359 +Phenotype MP:0010363 increased fibrosarcoma incidence 0.07717634265287754 0.3556137476017024 1.0 3360 +Biological Process GO:1903522 regulation of blood circulation 0.07715342087270782 0.3551982946714729 1.0 3361 +Biological Process GO:0061081 positive regulation of myeloid leukocyte cytokine production involved in immune response 0.07713368076281579 0.3548405089132563 1.0 3362 +Phenotype MP:0008772 increased heart ventricle size 0.07710152174448004 0.3542576327883668 1.0 3363 +Biological Process GO:2001056 positive regulation of cysteine-type endopeptidase activity 0.07708439578051107 0.35394722793057515 1.0 3364 +Biological Process GO:0051301 cell division 0.07708199902380408 0.35390378716857523 1.0 3365 +Phenotype MP:0005652 sex reversal 0.07707306230948874 0.353741810911869 1.0 3366 +Biological Process GO:0043393 regulation of protein binding 0.0770508510292568 0.3533392356586302 1.0 3367 +Phenotype MP:0001077 abnormal spinal nerve morphology 0.07704721025050731 0.35327324723240017 1.0 3368 +Phenotype MP:0004230 abnormal embryonic erythrocyte morphology 0.07704109594830943 0.3531624266615017 1.0 3369 +Phenotype MP:0008279 arrest of spermiogenesis 0.07701774350573742 0.3527391680566846 1.0 3370 +Biological Process GO:0060421 positive regulation of heart growth 0.07699507172337972 0.35232824628951404 1.0 3371 +Phenotype MP:0012136 absent forebrain 0.0769753450281595 0.3519707036696869 1.0 3372 +Biological Process GO:0061025 membrane fusion 0.07697527448264319 0.3519694250455464 1.0 3373 +Biological Process GO:0001895 retina homeostasis 0.07693475739931332 0.3512350605734543 1.0 3374 +Phenotype MP:0001130 abnormal ovarian folliculogenesis 0.0768973760750199 0.35055753114081095 1.0 3375 +Phenotype MP:0005479 decreased circulating triiodothyronine level 0.0768891955211316 0.35040926014882745 1.0 3376 +Phenotype MP:0011902 increased hematopoietic stem cell proliferation 0.07683452490810372 0.3494183656279086 1.0 3377 +Phenotype MP:0008166 abnormal B-2 B cell morphology 0.07683368762645992 0.3494031900564754 1.0 3378 +Phenotype MP:0000623 decreased salivation 0.07683050621606258 0.3493455275947445 1.0 3379 +Biological Process GO:0060442 branching involved in prostate gland morphogenesis 0.07680590591132963 0.34889965172427684 1.0 3380 +Phenotype MP:0014169 decreased brown adipose tissue mass 0.07678496906392973 0.3485201753250769 1.0 3381 +Phenotype MP:0000864 abnormal cerebellum vermis morphology 0.07675408783814597 0.34796045894851496 1.0 3382 +Phenotype MP:0008478 increased spleen white pulp amount 0.07675333940394724 0.34794689372021925 1.0 3383 +Biological Process GO:0034765 regulation of monoatomic ion transmembrane transport 0.07671011410090989 0.3471634432781523 1.0 3384 +Biological Process GO:0071241 cellular response to inorganic substance 0.07669219155812135 0.34683860057991805 1.0 3385 +Biological Process GO:0050872 white fat cell differentiation 0.07669112012609136 0.34681918107702153 1.0 3386 +Phenotype MP:0020936 abnormal susceptibility to Picornaviridae infection 0.07668233172657113 0.34665989299792493 1.0 3387 +Phenotype MP:0011096 embryonic lethality between implantation and somite formation, complete penetrance 0.07665843609610845 0.34622678921532624 1.0 3388 +Biological Process GO:0021799 cerebral cortex radially oriented cell migration 0.07665573377468526 0.3461778101506387 1.0 3389 +Phenotype MP:0000547 short limbs 0.07664725483787549 0.34602413102463847 1.0 3390 +Phenotype MP:0012685 abnormal primitive streak elongation 0.07657148104159595 0.3446507452986668 1.0 3391 +Phenotype MP:0005542 cornea vascularization 0.0765686503453109 0.3445994394638886 1.0 3392 +Biological Process GO:0007440 foregut morphogenesis 0.07656085246505295 0.3444581043590774 1.0 3393 +Phenotype MP:0004469 abnormal zygomatic arch morphology 0.07653691603010548 0.34402426100290945 1.0 3394 +Biological Process GO:0071867 response to monoamine 0.0765367004906603 0.34402035439123196 1.0 3395 +Phenotype MP:0005352 small cranium 0.07653548899975515 0.3439983963477133 1.0 3396 +Phenotype MP:0001052 abnormal innervation pattern to muscle 0.07652647334544782 0.34383498931858275 1.0 3397 +Biological Process GO:0001764 neuron migration 0.07648598435319354 0.3431011339919225 1.0 3398 +Phenotype MP:0012065 increased astrocyte number 0.07648219109752119 0.3430323819503045 1.0 3399 +Phenotype MP:0011167 abnormal adipose tissue development 0.07647384478390185 0.3428811065945469 1.0 3400 +Biological Process GO:0021854 hypothalamus development 0.07643447055920971 0.3421674562191073 1.0 3401 +Phenotype MP:0020155 enhanced humoral immune response 0.07642346900337038 0.34196805510031586 1.0 3402 +Phenotype MP:0003407 abnormal central nervous system regeneration 0.0764150639873854 0.3418157157752839 1.0 3403 +Biological Process GO:0014857 regulation of skeletal muscle cell proliferation 0.07640994466784146 0.34172292907680035 1.0 3404 +Phenotype MP:0008784 craniorachischisis 0.07638220251528682 0.3412201078088029 1.0 3405 +Biological Process GO:0045103 intermediate filament-based process 0.07636412844916673 0.34089251877884297 1.0 3406 +Phenotype MP:0001053 abnormal neuromuscular synapse morphology 0.07632560173640668 0.34019422939687677 1.0 3407 +Biological Process GO:2001185 regulation of CD8-positive, alpha-beta T cell activation 0.07631026068820557 0.33991617579978467 1.0 3408 +Biological Process GO:0032660 regulation of interleukin-17 production 0.07628849838337182 0.3395217381407204 1.0 3409 +Phenotype MP:0002729 abnormal inner ear canal morphology 0.07628439344011351 0.3394473368205584 1.0 3410 +Phenotype MP:0010836 decreased CD4-positive, alpha-beta memory T cell number 0.07628083466896429 0.3393828347665726 1.0 3411 +Biological Process GO:0001763 morphogenesis of a branching structure 0.07627646926155474 0.3393037125829325 1.0 3412 +Phenotype MP:0010195 abnormal lymphatic vessel endothelium morphology 0.07624952939696528 0.3388154326325618 1.0 3413 +Biological Process GO:0016050 vesicle organization 0.07622136278955127 0.33830491820051817 1.0 3414 +Phenotype MP:0011705 absent fibroblast proliferation 0.07615480299489585 0.3370985345112792 1.0 3415 +Phenotype MP:0003769 abnormal lip morphology 0.07615301514117045 0.33706613000065483 1.0 3416 +Phenotype MP:0008225 abnormal anterior commissure morphology 0.07614242092004053 0.3368741117464295 1.0 3417 +Phenotype MP:0008220 abnormal ventral commissure morphology 0.07614242092004053 0.3368741117464295 1.0 3417 +Phenotype MP:0003972 decreased pituitary hormone level 0.07612729962764309 0.336600041181715 1.0 3419 +Biological Process GO:0048638 regulation of developmental growth 0.07612626844905823 0.3365813512648981 1.0 3420 +Phenotype MP:0002231 abnormal primitive streak morphology 0.07606330864557909 0.3354402167348391 1.0 3421 +Biological Process GO:0090596 sensory organ morphogenesis 0.07606022052799322 0.3353842451876711 1.0 3422 +Phenotype MP:0003409 decreased width of hypertrophic chondrocyte zone 0.0760540581733723 0.3352725536756935 1.0 3423 +Phenotype MP:0005277 abnormal brainstem morphology 0.07605094519411082 0.3352161315153574 1.0 3424 +Phenotype MP:0011060 abnormal kinocilium morphology 0.07602431172435253 0.33473340491335124 1.0 3425 +Phenotype MP:0001953 respiratory failure 0.07601208199187504 0.3345117433252861 1.0 3426 +Biological Process GO:0007632 visual behavior 0.07599643018392244 0.33422805726647437 1.0 3427 +Phenotype MP:0008961 abnormal basal metabolism 0.07599005688802973 0.33411254248384237 1.0 3428 +Biological Process GO:0022409 positive regulation of cell-cell adhesion 0.07596623792726653 0.3336808283250456 1.0 3429 +Phenotype MP:0008263 abnormal hippocampus CA1 region morphology 0.07595956116135971 0.33355981320580497 1.0 3430 +Phenotype MP:0003926 decreased cellular glucose uptake 0.0759575586046638 0.33352351724444823 1.0 3431 +Phenotype MP:0003026 decreased vasoconstriction 0.07593662824330139 0.333144158403451 1.0 3432 +Phenotype MP:0008317 abnormal paravertebral ganglion morphology 0.07592808285865937 0.3329892749230592 1.0 3433 +Biological Process GO:0001840 neural plate development 0.07592565684580854 0.3329453038989856 1.0 3434 +Biological Process GO:0003229 ventricular cardiac muscle tissue development 0.07592031653271436 0.332848511734202 1.0 3435 +Biological Process GO:0001822 kidney development 0.0759012365646965 0.33250269092259765 1.0 3436 +Biological Process GO:0001569 branching involved in blood vessel morphogenesis 0.07587970979820169 0.3321125223513778 1.0 3437 +Phenotype MP:0000585 kinked tail 0.07586575756465441 0.33185964075721086 1.0 3438 +Biological Process GO:0045776 negative regulation of blood pressure 0.07585452649258928 0.33165607970023664 1.0 3439 +Biological Process GO:0001782 B cell homeostasis 0.07584099649863352 0.3314108511188049 1.0 3440 +Biological Process GO:0007051 spindle organization 0.07581418798655026 0.33092495190776566 1.0 3441 +Phenotype MP:0008226 decreased anterior commissure size 0.07580845967405758 0.3308211273272691 1.0 3442 +Phenotype MP:0001468 abnormal temporal memory 0.07580780824814792 0.330809320355865 1.0 3443 +Biological Process GO:0046620 regulation of organ growth 0.07580333002758533 0.33072815345516315 1.0 3444 +Phenotype MP:0002276 abnormal lung interstitium morphology 0.07578997436015122 0.330486084508965 1.0 3445 +Phenotype MP:0010595 abnormal aortic valve cusp morphology 0.07578239619952498 0.3303487317809216 1.0 3446 +Biological Process GO:0042752 regulation of circadian rhythm 0.07576118145323463 0.329964218516893 1.0 3447 +Phenotype MP:0001726 abnormal allantois morphology 0.07572615477788325 0.32932936665097406 1.0 3448 +Biological Process GO:1905476 negative regulation of protein localization to membrane 0.07572022188184147 0.3292218340323443 1.0 3449 +Biological Process GO:0045920 negative regulation of exocytosis 0.0757097327619296 0.3290317207178179 1.0 3450 +Biological Process GO:0043567 regulation of insulin-like growth factor receptor signaling pathway 0.07569480579067844 0.3287611721871265 1.0 3451 +Phenotype MP:0031358 decreased urine output 0.07569075239100187 0.3286877050846347 1.0 3452 +Phenotype MP:0005643 decreased dopamine level 0.07563886976493561 0.3277473423000851 1.0 3453 +Phenotype MP:0011019 abnormal adaptive thermogenesis 0.07561098278034661 0.3272418959788578 1.0 3454 +Biological Process GO:0032692 negative regulation of interleukin-1 production 0.07560273182591781 0.32709234899039286 1.0 3455 +Phenotype MP:0008656 abnormal interleukin-1 beta secretion 0.07559946660152772 0.3270331674158958 1.0 3456 +Biological Process GO:0045862 positive regulation of proteolysis 0.07558201283625277 0.3267168212214323 1.0 3457 +Phenotype MP:0003204 decreased neuron apoptosis 0.07556156225964417 0.3263461583883531 1.0 3458 +Phenotype MP:0006344 small second pharyngeal arch 0.07554930208142707 0.3261239449770162 1.0 3459 +Phenotype MP:0000681 abnormal thyroid gland morphology 0.07554565181612871 0.326057784608882 1.0 3460 +Biological Process GO:0010874 regulation of cholesterol efflux 0.07553630836919478 0.32588843640039195 1.0 3461 +Biological Process GO:0060627 regulation of vesicle-mediated transport 0.07551311311820985 0.32546802686336 1.0 3462 +Phenotype MP:0009543 abnormal thymus corticomedullary boundary morphology 0.07547325593083443 0.32474562288063163 1.0 3463 +Phenotype MP:0014060 abnormal platelet alpha-granule morphology 0.07541474593341513 0.3236851402437864 1.0 3464 +Phenotype MP:0010185 abnormal T follicular helper cell number 0.07540738608015352 0.323551744295437 1.0 3465 +Phenotype MP:0010184 abnormal T follicular helper cell morphology 0.07540738608015352 0.323551744295437 1.0 3465 +Phenotype MP:0004302 abnormal Deiters cell morphology 0.07539405006305566 0.32331003150786675 1.0 3467 +Phenotype MP:0010224 abnormal heart ventricle outflow tract morphology 0.07537775068134311 0.3230146082971358 1.0 3468 +Phenotype MP:0000859 abnormal somatosensory cortex morphology 0.07537363859464297 0.32294007750344156 1.0 3469 +Phenotype MP:0001807 decreased IgA level 0.07536963490785609 0.3228675114376729 1.0 3470 +Biological Process GO:0060439 trachea morphogenesis 0.07536592223809246 0.3228002200004088 1.0 3471 +Phenotype MP:0003336 pancreas cyst 0.0753478055448451 0.3224718583618294 1.0 3472 +Biological Process GO:0045165 cell fate commitment 0.07533013762139773 0.322151630590996 1.0 3473 +Biological Process GO:0051797 regulation of hair follicle development 0.07532753404468928 0.3221044412555869 1.0 3474 +Biological Process GO:0043616 keratinocyte proliferation 0.0753204333331583 0.32197574220209196 1.0 3475 +Phenotype MP:0001224 abnormal keratinocyte apoptosis 0.07530973223401216 0.3217817868040373 1.0 3476 +Phenotype MP:0020179 abnormal IgG3 level 0.07530670778317505 0.32172696920464894 1.0 3477 +Phenotype MP:0020997 abnormal subcutaneous adipose tissue amount 0.07524441422245354 0.3205979101985611 1.0 3478 +Phenotype MP:0010802 abnormal intestinal enteroendocrine cell morphology 0.07523659871583865 0.32045625561936436 1.0 3479 +Phenotype MP:0020344 abnormal susceptibility to injury induced morbidity/mortality 0.07522830737728914 0.32030597667634964 1.0 3480 +Biological Process GO:0055117 regulation of cardiac muscle contraction 0.07520088522213031 0.3198089553006279 1.0 3481 +Phenotype MP:0003892 abnormal gastric gland morphology 0.07517412282240488 0.3193238918673526 1.0 3482 +Biological Process GO:0099105 ion channel modulating, G protein-coupled receptor signaling pathway 0.0751606498176941 0.31907969620520754 1.0 3483 +Phenotype MP:0006032 abnormal ureteric bud morphology 0.0751600305443787 0.3190684719934931 1.0 3484 +Phenotype MP:0008527 embryonic lethality at implantation 0.07515288891889538 0.31893903138235036 1.0 3485 +Biological Process GO:0003044 regulation of systemic arterial blood pressure mediated by a chemical signal 0.07513649711040282 0.318641932953713 1.0 3486 +Biological Process GO:0008038 neuron recognition 0.07513039706042102 0.31853137070153525 1.0 3487 +Phenotype MP:0004566 myocardial fiber degeneration 0.07512621292352639 0.3184555340116934 1.0 3488 +Phenotype MP:0030611 abnormal tooth number 0.07510879884190991 0.3181399070760341 1.0 3489 +Biological Process GO:0002708 positive regulation of lymphocyte mediated immunity 0.07509399522734728 0.31787159436199114 1.0 3490 +Biological Process GO:1903318 negative regulation of protein maturation 0.07509254886713679 0.3178453793567356 1.0 3491 +Biological Process GO:0010955 negative regulation of protein processing 0.07509254886713679 0.3178453793567356 1.0 3491 +Phenotype MP:0031616 increased muscle glycogen level 0.07509114598752964 0.31781995242919187 1.0 3493 +Biological Process GO:0032835 glomerulus development 0.0750892418808099 0.31778544085503274 1.0 3494 +Phenotype MP:0003974 abnormal endocardium morphology 0.07508346658849208 0.31768076477409113 1.0 3495 +Phenotype MP:0030005 increased retina apoptosis 0.0750710889131615 0.3174564217497953 1.0 3496 +Biological Process GO:0046824 positive regulation of nucleocytoplasmic transport 0.07506781965704934 0.3173971671010983 1.0 3497 +Biological Process GO:0034219 carbohydrate transmembrane transport 0.07506002659570699 0.31725591933822095 1.0 3498 +Phenotype MP:0011156 abnormal hypodermis fat layer morphology 0.07503457064392616 0.3167945350268445 1.0 3499 +Phenotype MP:0005605 increased bone mass 0.0750250499571199 0.31662197437919093 1.0 3500 +Phenotype MP:0020185 abnormal susceptibility to viral infection 0.07496343964885688 0.3155052991946854 1.0 3501 +Biological Process GO:0046605 regulation of centrosome cycle 0.07494989832066834 0.3152598651824284 1.0 3502 +Phenotype MP:0001051 abnormal somatic motor system morphology 0.07493967906657761 0.3150746431348685 1.0 3503 +Phenotype MP:0004954 abnormal thymus weight 0.07493742831767669 0.3150338487367382 1.0 3504 +Phenotype MP:0008659 abnormal interleukin-10 secretion 0.07493247920672452 0.3149441470367879 1.0 3505 +Phenotype MP:0001082 abnormal geniculate ganglion morphology 0.07492981286633216 0.31489582012147876 1.0 3506 +Biological Process GO:0050886 endocrine process 0.0749256820970805 0.314820950710072 1.0 3507 +Biological Process GO:0099633 protein localization to postsynaptic specialization membrane 0.07491865266942499 0.31469354366333757 1.0 3508 +Biological Process GO:0099645 neurotransmitter receptor localization to postsynaptic specialization membrane 0.07491865266942499 0.31469354366333757 1.0 3508 +Phenotype MP:0009580 increased keratinocyte apoptosis 0.07487962774375723 0.31398622426664946 1.0 3510 +Biological Process GO:0141187 nucleic acid biosynthetic process 0.07484810968167555 0.3134149653526368 1.0 3511 +Biological Process GO:0010631 epithelial cell migration 0.0748197875969806 0.3129016329242826 1.0 3512 +Biological Process GO:2001235 positive regulation of apoptotic signaling pathway 0.07481067046048817 0.31273638654974106 1.0 3513 +Phenotype MP:0012523 abnormal upper lip morphology 0.0748016808275167 0.3125734511524014 1.0 3514 +Phenotype MP:0013024 abnormal Ly6C low monocyte number 0.07478530242781867 0.31227659575562866 1.0 3515 +Biological Process GO:1904862 inhibitory synapse assembly 0.07476160837342583 0.3118471455011703 1.0 3516 +Phenotype MP:0020362 abnormal male germ cell physiology 0.074727547716123 0.3112298025296721 1.0 3517 +Biological Process GO:0106030 neuron projection fasciculation 0.07472299976043051 0.3111473716929304 1.0 3518 +Biological Process GO:0007413 axonal fasciculation 0.07472299976043051 0.3111473716929304 1.0 3518 +Phenotype MP:0009377 ectopic manchette 0.0746667002280148 0.3101269533161955 1.0 3520 +Biological Process GO:0050878 regulation of body fluid levels 0.07464387957491836 0.30971333329504225 1.0 3521 +Biological Process GO:0036342 post-anal tail morphogenesis 0.07459965814183045 0.30891182818421353 1.0 3522 +Biological Process GO:0010996 response to auditory stimulus 0.07459436336382119 0.30881586133423183 1.0 3523 +Phenotype MP:0004858 abnormal nervous system regeneration 0.07457614732161622 0.3084856990145861 1.0 3524 +Phenotype MP:0004320 split sternum 0.07456973527816968 0.3083694819398695 1.0 3525 +Phenotype MP:0005269 abnormal occipital bone morphology 0.07455513071613329 0.3081047770152165 1.0 3526 +Biological Process GO:0090630 activation of GTPase activity 0.07455158612601354 0.30804053198970754 1.0 3527 +Phenotype MP:0001196 shiny skin 0.07453563057892643 0.30775134071653093 1.0 3528 +Biological Process GO:0007219 Notch signaling pathway 0.07453190048480551 0.3076837334660866 1.0 3529 +Biological Process GO:0009205 purine ribonucleoside triphosphate metabolic process 0.07452325440127483 0.3075270248373834 1.0 3530 +Biological Process GO:0009199 ribonucleoside triphosphate metabolic process 0.07452325440127483 0.3075270248373834 1.0 3530 +Biological Process GO:0048169 regulation of long-term neuronal synaptic plasticity 0.0745231947925542 0.3075259444405963 1.0 3532 +Phenotype MP:0000486 abnormal pulmonary trunk morphology 0.07452164415153395 0.30749783936538705 1.0 3533 +Phenotype MP:0001851 eye inflammation 0.07451819477015398 0.3074353199802792 1.0 3534 +Phenotype MP:0011956 abnormal compensatory feeding amount 0.07450553258980308 0.3072058203563004 1.0 3535 +Biological Process GO:0014823 response to activity 0.07448058703996718 0.3067536869836402 1.0 3536 +Phenotype MP:0010985 abnormal kidney mesenchyme morphology 0.07447912403272872 0.30672717025415114 1.0 3537 +Phenotype MP:0009538 abnormal synapse morphology 0.07445151251257376 0.3062267166736904 1.0 3538 +Phenotype MP:0008192 abnormal germinal center B cell physiology 0.07442883804290734 0.30581574619955776 1.0 3539 +Phenotype MP:0008097 increased plasma cell number 0.07440892655337628 0.3054548542177978 1.0 3540 +Phenotype MP:0000603 pale liver 0.07439317206619844 0.30516930711744905 1.0 3541 +Phenotype MP:0005262 coloboma 0.07438958172929289 0.30510423294009975 1.0 3542 +Biological Process GO:0019724 B cell mediated immunity 0.07434805526004795 0.3043515735392088 1.0 3543 +Biological Process GO:0034698 response to gonadotropin 0.07433484663646273 0.3041121697349602 1.0 3544 +Phenotype MP:0014070 abnormal cardiac muscle glycogen level 0.07432639728385693 0.30395902681706155 1.0 3545 +Phenotype MP:0020159 abnormal behavioral response to morphine 0.07429382933792406 0.30336873895681743 1.0 3546 +Phenotype MP:0010572 persistent right dorsal aorta 0.07423767832246897 0.3023510124219038 1.0 3547 +Phenotype MP:0004181 abnormal carotid artery morphology 0.07422505141186164 0.3021221520553564 1.0 3548 +Biological Process GO:0040029 epigenetic regulation of gene expression 0.07419841039317543 0.30163928863045936 1.0 3549 +Biological Process GO:0060711 labyrinthine layer development 0.07418153318215381 0.3013333923727902 1.0 3550 +Phenotype MP:0009419 skeletal muscle fibrosis 0.0741798382890343 0.30130267275556516 1.0 3551 +Biological Process GO:0071417 cellular response to organonitrogen compound 0.07417200282534364 0.3011606564581447 1.0 3552 +Phenotype MP:0001786 skin edema 0.07417187275403747 0.3011582989403216 1.0 3553 +Phenotype MP:0020171 abnormal IgA level 0.07416899682482048 0.30110617326720696 1.0 3554 +Biological Process GO:0043254 regulation of protein-containing complex assembly 0.07416409282397551 0.30101728917941784 1.0 3555 +Phenotype MP:0008682 decreased interleukin-17 secretion 0.07413750323578483 0.3005353579225249 1.0 3556 +Phenotype MP:0008280 abnormal male germ cell apoptosis 0.07412605015366347 0.30032777297527175 1.0 3557 +Phenotype MP:0000909 abnormal facial motor nucleus morphology 0.07409593064359055 0.2997818625519005 1.0 3558 +Biological Process GO:0035967 cellular response to topologically incorrect protein 0.07407873107080298 0.2994701235481939 1.0 3559 +Phenotype MP:0010165 abnormal response to stress-induced hyperthermia 0.07406932848483472 0.29929970345589185 1.0 3560 +Biological Process GO:0030183 B cell differentiation 0.07406634473194762 0.29924562349914996 1.0 3561 +Biological Process GO:0098586 cellular response to virus 0.07406622677554187 0.2992434855616055 1.0 3562 +Phenotype MP:0003351 decreased circulating levels of thyroid hormone 0.07405424118243698 0.29902624895349317 1.0 3563 +Phenotype MP:0020150 abnormal timing of vaginal opening 0.07403211184536573 0.2986251589045436 1.0 3564 +Biological Process GO:0120033 negative regulation of plasma membrane bounded cell projection assembly 0.07401859441464675 0.29838015802940243 1.0 3565 +Phenotype MP:0001008 abnormal sympathetic ganglion morphology 0.07399412842184971 0.29793671653736975 1.0 3566 +Biological Process GO:0030518 intracellular steroid hormone receptor signaling pathway 0.07396540343522029 0.2974160815876565 1.0 3567 +Biological Process GO:0043401 steroid hormone mediated signaling pathway 0.07396540343522029 0.2974160815876565 1.0 3567 +Biological Process GO:0141193 nuclear receptor signaling pathway 0.07396540343522029 0.2974160815876565 1.0 3567 +Phenotype MP:0011894 decreased circulating transferrin level 0.07396261522301206 0.29736554576873525 1.0 3570 +Phenotype MP:0010816 decreased type I pneumocyte number 0.07395383069596395 0.2972063278774634 1.0 3571 +Biological Process GO:1903901 negative regulation of viral life cycle 0.07392348540125859 0.2966563251503334 1.0 3572 +Phenotype MP:0011307 kidney medulla cyst 0.07388190628183877 0.2959027114749807 1.0 3573 +Biological Process GO:0051968 positive regulation of synaptic transmission, glutamatergic 0.07386778218995937 0.2956467149810487 1.0 3574 +Phenotype MP:0005120 decreased circulating growth hormone level 0.07386519474660314 0.29559981805959706 1.0 3575 +Phenotype MP:0005281 increased fatty acids level 0.07386460999584621 0.2955892195627255 1.0 3576 +Phenotype MP:0001236 abnormal epidermis stratum spinosum morphology 0.0738575982550227 0.2954621330864758 1.0 3577 +Biological Process GO:0051348 negative regulation of transferase activity 0.07385569803681313 0.29542769199082825 1.0 3578 +Phenotype MP:0005058 abnormal lysosome morphology 0.07384892414225341 0.29530491643312445 1.0 3579 +Phenotype MP:0008148 abnormal sternocostal joint morphology 0.07384449949948912 0.2952247206198834 1.0 3580 +Phenotype MP:0000693 spleen hyperplasia 0.07382030420821539 0.2947861855417611 1.0 3581 +Phenotype MP:0009137 decreased brown fat lipid droplet number 0.0738164578932754 0.2947164718109525 1.0 3582 +Phenotype MP:0005336 abnormal inguinal fat pad morphology 0.07379984746134782 0.2944154108739051 1.0 3583 +Biological Process GO:1903708 positive regulation of hemopoiesis 0.07378189969253657 0.29409011095878035 1.0 3584 +Biological Process GO:1902107 positive regulation of leukocyte differentiation 0.07378189969253657 0.29409011095878035 1.0 3584 +Phenotype MP:0001239 abnormal epidermis stratum granulosum morphology 0.07378117566424436 0.29407698808292426 1.0 3586 +Biological Process GO:0034694 response to prostaglandin 0.07377879884395977 0.2940339086648097 1.0 3587 +Phenotype MP:0000951 sporadic seizures 0.07374696130808345 0.2934568593486933 1.0 3588 +Phenotype MP:0010760 abnormal macrophage chemotaxis 0.0736839422631197 0.29231465107793053 1.0 3589 +Biological Process GO:0018205 peptidyl-lysine modification 0.07356285856645906 0.29012003197731007 1.0 3590 +Phenotype MP:0010593 thick aortic valve cusps 0.07354774969273603 0.2898461864987206 1.0 3591 +Phenotype MP:0011939 increased food intake 0.07353875909466867 0.2896832336092005 1.0 3592 +Phenotype MP:0004408 decreased cochlear hair cell number 0.07347320113883682 0.2884950080591543 1.0 3593 +Phenotype MP:0021155 abnormal heart left ventricle wall thickness 0.07345044498237996 0.2880825570273948 1.0 3594 +Phenotype MP:0000314 schistocytosis 0.07342788377062648 0.2876736393315129 1.0 3595 +Phenotype MP:0001279 wavy vibrissae 0.07340783705948573 0.28731029648365275 1.0 3596 +Phenotype MP:0004297 abnormal proprioceptive neuron morphology 0.07339689081233214 0.28711189782432944 1.0 3597 +Phenotype MP:0001499 abnormal kindling response 0.07337453783681991 0.2867067543709352 1.0 3598 +Biological Process GO:0045740 positive regulation of DNA replication 0.07333914082421822 0.2860651902123987 1.0 3599 +Phenotype MP:0012725 small sebaceous gland 0.07333655751274826 0.2860183681806042 1.0 3600 +Phenotype MP:0010837 abnormal CD8-positive, alpha-beta memory T cell morphology 0.07333383289395456 0.2859689849802936 1.0 3601 +Phenotype MP:0012774 abnormal CD8-positive, alpha-beta memory T cell number 0.07333383289395456 0.2859689849802936 1.0 3601 +Biological Process GO:0090316 positive regulation of intracellular protein transport 0.07326689295334388 0.2847557112175148 1.0 3603 +Biological Process GO:0071356 cellular response to tumor necrosis factor 0.07325742613357744 0.2845841268997699 1.0 3604 +Phenotype MP:0008704 abnormal interleukin-6 secretion 0.07323519568139802 0.28418120415860915 1.0 3605 +Phenotype MP:0001762 polyuria 0.07323098658889349 0.2841049151530577 1.0 3606 +Biological Process GO:2000095 regulation of Wnt signaling pathway, planar cell polarity pathway 0.0732211151096055 0.28392599645802047 1.0 3607 +Biological Process GO:0021675 nerve development 0.07320252755079504 0.28358910047016783 1.0 3608 +Phenotype MP:0008670 decreased interleukin-12b secretion 0.07319221296068124 0.2834021504752212 1.0 3609 +Phenotype MP:0006345 absent second pharyngeal arch 0.0731901258551313 0.2833643220818765 1.0 3610 +Phenotype MP:0008165 abnormal B-1b B cell morphology 0.07317700614162836 0.28312652975605335 1.0 3611 +Phenotype MP:0006274 abnormal urine sodium level 0.07315348627542873 0.28270023662965144 1.0 3612 +Biological Process GO:0070417 cellular response to cold 0.07314946189604155 0.28262729551441607 1.0 3613 +Phenotype MP:0020937 increased susceptibility to Picornaviridae infection 0.07313327493920985 0.2823339099833868 1.0 3614 +Biological Process GO:0021932 hindbrain radial glia guided cell migration 0.07311011660274447 0.2819141695150399 1.0 3615 +Phenotype MP:0013375 abnormal sebocyte morphology 0.07310175100094907 0.28176254456473937 1.0 3616 +Biological Process GO:0061029 eyelid development in camera-type eye 0.0730848722722518 0.281456620799486 1.0 3617 +Phenotype MP:0008431 abnormal short-term spatial reference memory 0.0730838424336343 0.28143795516932407 1.0 3618 +Phenotype MP:0003874 absent pharyngeal arches 0.07307133044657377 0.281211177770326 1.0 3619 +Biological Process GO:0050858 negative regulation of antigen receptor-mediated signaling pathway 0.07304610747379525 0.2807540161593017 1.0 3620 +Biological Process GO:1990806 ligand-gated ion channel signaling pathway 0.07304085146256267 0.28065875194981504 1.0 3621 +Biological Process GO:0022407 regulation of cell-cell adhesion 0.07304048715356615 0.28065214891815715 1.0 3622 +Phenotype MP:0000049 abnormal middle ear morphology 0.07301604569585818 0.28020915211997344 1.0 3623 +Phenotype MP:0010849 abnormal effector memory CD8-positive, alpha-beta T cell number 0.07300422962503861 0.2799949880712197 1.0 3624 +Biological Process GO:0090504 epiboly 0.07298508238178747 0.2796479479087365 1.0 3625 +Biological Process GO:0044319 wound healing, spreading of cells 0.07298508238178747 0.2796479479087365 1.0 3625 +Biological Process GO:0090505 epiboly involved in wound healing 0.07298508238178747 0.2796479479087365 1.0 3625 +Phenotype MP:0006071 abnormal retina progenitor cell morphology 0.07297780962948108 0.27951613064872655 1.0 3628 +Biological Process GO:0030036 actin cytoskeleton organization 0.07294410341620194 0.27890521190811934 1.0 3629 +Phenotype MP:0000008 increased white adipose tissue amount 0.07289580335494272 0.2780297824331033 1.0 3630 +Biological Process GO:0008542 visual learning 0.0728908993749442 0.27794089872315186 1.0 3631 +Biological Process GO:0001890 placenta development 0.07288435473839683 0.2778222784235609 1.0 3632 +Phenotype MP:0002623 abnormal vestibular hair cell morphology 0.07285828711969411 0.2773498077649138 1.0 3633 +Biological Process GO:0050766 positive regulation of phagocytosis 0.07284198115488483 0.2770542652367996 1.0 3634 +Phenotype MP:0020850 abnormal microtubule cytoskeleton morphology 0.07283936616262299 0.2770068689966444 1.0 3635 +Phenotype MP:0008277 abnormal sternum ossification 0.07282639899003762 0.276771841446101 1.0 3636 +Phenotype MP:0004876 decreased mean systemic arterial blood pressure 0.07282577176180016 0.27676047305292883 1.0 3637 +Biological Process GO:1903557 positive regulation of tumor necrosis factor superfamily cytokine production 0.07280914707649655 0.27645915377613667 1.0 3638 +Phenotype MP:0002079 increased circulating insulin level 0.07280585409168638 0.2763994690492762 1.0 3639 +Biological Process GO:0051703 biological process involved in intraspecies interaction between organisms 0.07280282399276539 0.2763445490794356 1.0 3640 +Biological Process GO:0035176 social behavior 0.07280282399276539 0.2763445490794356 1.0 3640 +Phenotype MP:0003792 abnormal major salivary gland morphology 0.07279243684239423 0.2761562839435482 1.0 3642 +Phenotype MP:0008807 increased liver iron level 0.07278491565273715 0.27601996380354554 1.0 3643 +Biological Process GO:0060576 intestinal epithelial cell development 0.07277348750750334 0.2758128308326629 1.0 3644 +Biological Process GO:0023019 signal transduction involved in regulation of gene expression 0.07275497070628356 0.2754772173127584 1.0 3645 +Biological Process GO:0015749 monosaccharide transmembrane transport 0.07272911103882818 0.27500851573113805 1.0 3646 +Biological Process GO:0060317 cardiac epithelial to mesenchymal transition 0.07264577249963988 0.2734980204707147 1.0 3647 +Phenotype MP:0011276 increased tail pigmentation 0.07264029634476854 0.27339876619941267 1.0 3648 +Biological Process GO:0042116 macrophage activation 0.07263978632698997 0.2733895222236392 1.0 3649 +Phenotype MP:0004721 abnormal platelet dense granule morphology 0.0725814468028596 0.27233212938291307 1.0 3650 +Biological Process GO:0051938 L-glutamate import 0.0725736488681078 0.27219079329041107 1.0 3651 +Phenotype MP:0009883 palatal shelf hypoplasia 0.07256808323270525 0.272089917201405 1.0 3652 +Biological Process GO:0010718 positive regulation of epithelial to mesenchymal transition 0.07255883486655634 0.2719222923141602 1.0 3653 +Phenotype MP:0009672 abnormal birth weight 0.07255693890579717 0.2718879283839958 1.0 3654 +Biological Process GO:0036503 ERAD pathway 0.07255190139260226 0.2717966244101158 1.0 3655 +Biological Process GO:0033146 regulation of intracellular estrogen receptor signaling pathway 0.07250818745956666 0.27100431764174854 1.0 3656 +Biological Process GO:0010658 striated muscle cell apoptotic process 0.07249708855259573 0.2708031520521095 1.0 3657 +Biological Process GO:0042472 inner ear morphogenesis 0.0724766930328814 0.27043348711482557 1.0 3658 +Biological Process GO:0048791 calcium ion-regulated exocytosis of neurotransmitter 0.07246555157290724 0.2702315502600513 1.0 3659 +Phenotype MP:0011501 increased glomerular capsule space 0.07245537459561258 0.270047094471424 1.0 3660 +Biological Process GO:0008089 anterograde axonal transport 0.07244673444465333 0.26989049336945603 1.0 3661 +Biological Process GO:0048520 positive regulation of behavior 0.07243050640554372 0.26959636322990976 1.0 3662 +Phenotype MP:0001307 fused cornea and lens 0.07239750703422254 0.268998255866101 1.0 3663 +Phenotype MP:0009113 increased pancreatic beta cell mass 0.07238451777029087 0.26876282791408407 1.0 3664 +Phenotype MP:0030437 abnormal osteoblast proliferation 0.07238081715893419 0.2686957550331651 1.0 3665 +Phenotype MP:0003103 liver degeneration 0.07236291571393905 0.2683712947284459 1.0 3666 +Phenotype MP:0001425 abnormal alcohol consumption 0.07234887976090765 0.2681168957344636 1.0 3667 +Phenotype MP:0008813 decreased common myeloid progenitor cell number 0.07233448667665598 0.26785602380466067 1.0 3668 +Phenotype MP:0004980 increased neuronal precursor cell number 0.07233317270804296 0.26783220837206906 1.0 3669 +Phenotype MP:0009123 abnormal brown fat cell lipid droplet size 0.0723166858552653 0.2675333872837405 1.0 3670 +Biological Process GO:0055013 cardiac muscle cell development 0.07230835346495579 0.26738236428534035 1.0 3671 +Phenotype MP:0003371 decreased circulating estrogen level 0.07230384052059724 0.26730056802240443 1.0 3672 +Phenotype MP:0009364 abnormal mature ovarian follicle morphology 0.0722919003807071 0.2670841552452125 1.0 3673 +Biological Process GO:0072010 glomerular epithelium development 0.07228757057545732 0.2670056783439847 1.0 3674 +Phenotype MP:0010763 abnormal hematopoietic stem cell physiology 0.07228402318689908 0.2669413825973076 1.0 3675 +Phenotype MP:0002904 increased circulating parathyroid hormone level 0.07227811805220297 0.26683435314781734 1.0 3676 +Biological Process GO:0033143 regulation of intracellular steroid hormone receptor signaling pathway 0.07227442643542814 0.2667674432919933 1.0 3677 +Biological Process GO:0032881 regulation of polysaccharide metabolic process 0.07225585487336483 0.26643083724215716 1.0 3678 +Phenotype MP:0003363 decreased circulating gonadotropin level 0.07224635493313702 0.26625865262231413 1.0 3679 +Phenotype MP:0003641 small lung 0.07223206425471052 0.2659996367787234 1.0 3680 +Phenotype MP:0003355 decreased ovulation rate 0.07221785923441681 0.2657421734725887 1.0 3681 +Phenotype MP:0003607 abnormal prostate gland physiology 0.07220706383567221 0.26554650891214737 1.0 3682 +Biological Process GO:0071371 cellular response to gonadotropin stimulus 0.07220227618974795 0.26545973373528897 1.0 3683 +Phenotype MP:0011430 mesangiolysis 0.07219200064084741 0.2652734913549486 1.0 3684 +Phenotype MP:0002780 decreased circulating testosterone level 0.0721693767035797 0.26486343677098506 1.0 3685 +Biological Process GO:0007006 mitochondrial membrane organization 0.07216857582294134 0.2648489209608905 1.0 3686 +Biological Process GO:0090132 epithelium migration 0.07214569271367766 0.2644341689335188 1.0 3687 +Biological Process GO:0002221 pattern recognition receptor signaling pathway 0.07214386086733049 0.26440096706494554 1.0 3688 +Biological Process GO:1902473 regulation of protein localization to synapse 0.0721154134509675 0.2638853630238128 1.0 3689 +Phenotype MP:0005631 decreased lung weight 0.072096024253405 0.26353393748519854 1.0 3690 +Biological Process GO:0035051 cardiocyte differentiation 0.0720801214311605 0.26324570183982193 1.0 3691 +Phenotype MP:0000228 abnormal thrombopoiesis 0.07207299986092008 0.26311662472616376 1.0 3692 +Biological Process GO:1902993 positive regulation of amyloid precursor protein catabolic process 0.07206410672712737 0.26295543835818763 1.0 3693 +Biological Process GO:0050860 negative regulation of T cell receptor signaling pathway 0.07204220729733823 0.2625585153352422 1.0 3694 +Biological Process GO:0048144 fibroblast proliferation 0.0720396525640401 0.26251221127740704 1.0 3695 +Phenotype MP:0000159 abnormal xiphoid process morphology 0.07202636217290004 0.26227132545169224 1.0 3696 +Biological Process GO:0060048 cardiac muscle contraction 0.07202206620178087 0.26219346178768244 1.0 3697 +Phenotype MP:0004229 abnormal embryonic erythropoiesis 0.07201237289939999 0.2620177725153869 1.0 3698 +Biological Process GO:0097190 apoptotic signaling pathway 0.07201015825001056 0.2619776324140746 1.0 3699 +Biological Process GO:0045859 regulation of protein kinase activity 0.07198771038641805 0.261570769132172 1.0 3700 +Phenotype MP:0010146 umbilical hernia 0.07197158251608315 0.26127845453272197 1.0 3701 +Phenotype MP:0006046 atrioventricular valve regurgitation 0.07196429570219443 0.26114638240919164 1.0 3702 +Phenotype MP:0009651 abnormal eyelid development 0.0718378171683065 0.25885398290418765 1.0 3703 +Phenotype MP:0001585 hemolytic anemia 0.07179635155709052 0.2581024265435609 1.0 3704 +Phenotype MP:0004499 increased incidence of tumors by chemical induction 0.0717933255301676 0.2580475803779152 1.0 3705 +Phenotype MP:0003085 abnormal egg cylinder morphology 0.07174861137420074 0.25723714475809756 1.0 3706 +Phenotype MP:0002450 abnormal lymph organ development 0.07174816012653495 0.25722896597950257 1.0 3707 +Phenotype MP:0008823 abnormal interventricular septum membranous part morphology 0.07173830607305098 0.25705036312386736 1.0 3708 +Phenotype MP:0003135 increased erythroid progenitor cell number 0.07168549624619691 0.25609319500040617 1.0 3709 +Phenotype MP:0004188 delayed embryo turning 0.0716668240098356 0.25575476424795984 1.0 3710 +Phenotype MP:0012064 abnormal astrocyte number 0.07164491041381271 0.25535758446470724 1.0 3711 +Phenotype MP:0000440 domed cranium 0.07164481664062361 0.25535588484339067 1.0 3712 +Phenotype MP:0011425 abnormal kidney interstitium morphology 0.0716136114334438 0.25479029636530215 1.0 3713 +Phenotype MP:0011385 abnormal testosterone level 0.07159358541895122 0.2544273286402756 1.0 3714 +Phenotype MP:0002654 spongiform encephalopathy 0.0715925556213517 0.25440866375355653 1.0 3715 +Phenotype MP:0009167 increased pancreatic islet number 0.0715790781019503 0.25416438626349785 1.0 3716 +Phenotype MP:0013760 abnormal T-helper cell morphology 0.07154434557185563 0.25353486572472317 1.0 3717 +Phenotype MP:0001072 abnormal vestibulocochlear nerve morphology 0.07153534626438363 0.25337175497889114 1.0 3718 +Phenotype MP:0020039 increased bone ossification 0.07150250653480872 0.25277654109153935 1.0 3719 +Phenotype MP:0000748 progressive muscle weakness 0.07148594911600037 0.25247644100725125 1.0 3720 +Biological Process GO:2000243 positive regulation of reproductive process 0.07146565179605657 0.2521085559222352 1.0 3721 +Biological Process GO:0008630 intrinsic apoptotic signaling pathway in response to DNA damage 0.07142566824225938 0.25138386157201276 1.0 3722 +Biological Process GO:0086091 regulation of heart rate by cardiac conduction 0.07141337286644933 0.2511610102109607 1.0 3723 +Phenotype MP:0020176 abnormal IgG2a level 0.07139529124133992 0.25083328417574896 1.0 3724 +Phenotype MP:0001105 abnormal PNS glial cell morphology 0.07134482397562703 0.2499185745299077 1.0 3725 +Biological Process GO:0043085 positive regulation of catalytic activity 0.07131435855196622 0.2493663944881809 1.0 3726 +Biological Process GO:0034695 response to prostaglandin E 0.07129258919880177 0.24897182907945584 1.0 3727 +Biological Process GO:0046717 acid secretion 0.07129239573791502 0.24896832263747393 1.0 3728 +Phenotype MP:0001541 abnormal osteoclast physiology 0.071278504572173 0.2487165478857271 1.0 3729 +Phenotype MP:0030976 impaired sperm penetration of zona pellucida 0.07127511119134822 0.24865504350009038 1.0 3730 +Phenotype MP:0002038 increased carcinoma incidence 0.07127080587968138 0.2485770105404207 1.0 3731 +Biological Process GO:0070230 positive regulation of lymphocyte apoptotic process 0.0712679099724941 0.2485245227703733 1.0 3732 +Phenotype MP:0011750 abnormal seminiferous tubule epithelium morphology 0.07124095158894983 0.24803590716744922 1.0 3733 +Phenotype MP:0002182 abnormal astrocyte morphology 0.07120882284278884 0.24745357972000182 1.0 3734 +Biological Process GO:0006638 neutral lipid metabolic process 0.07117437259511306 0.24682917549667943 1.0 3735 +Phenotype MP:0005440 increased glycogen level 0.07115477538572157 0.24647397978300747 1.0 3736 +Phenotype MP:0001928 abnormal ovulation 0.07114617744971818 0.24631814381913014 1.0 3737 +Biological Process GO:0043409 negative regulation of MAPK cascade 0.07113943317841676 0.24619590517738 1.0 3738 +Biological Process GO:0060384 innervation 0.07113393145393643 0.24609618746175127 1.0 3739 +Biological Process GO:0035850 epithelial cell differentiation involved in kidney development 0.07111746098622829 0.24579766334970882 1.0 3740 +Biological Process GO:0061384 heart trabecula morphogenesis 0.07110946734907808 0.24565278018825035 1.0 3741 +Phenotype MP:0004185 abnormal adipocyte glucose uptake 0.07109123807266615 0.24532237800110673 1.0 3742 +Phenotype MP:0003303 peritoneal inflammation 0.07104427783663225 0.2444712326048897 1.0 3743 +Phenotype MP:0000292 distended pericardium 0.07103684066973881 0.2443364353615862 1.0 3744 +Phenotype MP:0010897 abnormal bronchiole epithelium morphology 0.07101595740673239 0.2439579301693833 1.0 3745 +Phenotype MP:0004485 increased response of heart to induced stress 0.07100817449487695 0.24381686636403668 1.0 3746 +Biological Process GO:0071514 genomic imprinting 0.07096333713453196 0.24300419768816764 1.0 3747 +Phenotype MP:0011352 proximal convoluted tubule brush border loss 0.0709456180008936 0.2426830417423085 1.0 3748 +Phenotype MP:0008786 abnormal hindgut morphology 0.07093736078372825 0.24253338124292811 1.0 3749 +Biological Process GO:0034644 cellular response to UV 0.07093579526339056 0.24250500648290446 1.0 3750 +Phenotype MP:0008556 abnormal tumor necrosis factor secretion 0.07090857205570966 0.24201159099259206 1.0 3751 +Phenotype MP:0008660 increased interleukin-10 secretion 0.07090487453799244 0.2419445741833031 1.0 3752 +Biological Process GO:0043029 T cell homeostasis 0.07089756937158531 0.241812169423848 1.0 3753 +Biological Process GO:0061383 trabecula morphogenesis 0.07087305087973161 0.2413677763963429 1.0 3754 +Phenotype MP:0000579 abnormal nail morphology 0.07086283555320583 0.2411826255351547 1.0 3755 +Phenotype MP:0002910 abnormal excitatory postsynaptic currents 0.07084774214715561 0.24090906040520946 1.0 3756 +Biological Process GO:0030318 melanocyte differentiation 0.07084709820341284 0.240897389046665 1.0 3757 +Biological Process GO:0071230 cellular response to amino acid stimulus 0.07082563305853751 0.2405083373556432 1.0 3758 +Phenotype MP:0012362 increased large unstained cell number 0.07082396480067121 0.2404781004973452 1.0 3759 +Phenotype MP:0000484 abnormal pulmonary artery morphology 0.07079945959667444 0.24003394830973362 1.0 3760 +Phenotype MP:0009907 decreased tongue size 0.07078450750901122 0.2397629445488241 1.0 3761 +Phenotype MP:0008866 chromosomal instability 0.07078375466821019 0.23974929945169512 1.0 3762 +Phenotype MP:0008854 bleb 0.07076956401762258 0.23949209659376552 1.0 3763 +Phenotype MP:0008810 increased circulating iron level 0.07075509664086943 0.23922987812642457 1.0 3764 +Phenotype MP:0011102 embryonic lethality, incomplete penetrance 0.07074764940057554 0.23909489830464323 1.0 3765 +Biological Process GO:0098773 skin epidermis development 0.07074328282471887 0.23901575494312013 1.0 3766 +Biological Process GO:0010804 negative regulation of tumor necrosis factor-mediated signaling pathway 0.07073642488941767 0.23889145616287222 1.0 3767 +Biological Process GO:0060008 Sertoli cell differentiation 0.07071417694075821 0.23848821630131997 1.0 3768 +Biological Process GO:0072384 organelle transport along microtubule 0.0706835098664077 0.23793238137898184 1.0 3769 +Biological Process GO:0033137 negative regulation of peptidyl-serine phosphorylation 0.0706654425875326 0.2376049153665536 1.0 3770 +Biological Process GO:0046007 negative regulation of activated T cell proliferation 0.0706405207580042 0.23715321191998037 1.0 3771 +Phenotype MP:0008561 decreased tumor necrosis factor secretion 0.07062008472863313 0.23678281275282992 1.0 3772 +Phenotype MP:0009938 abnormal hippocampus granule cell morphology 0.07060891532855729 0.23658036948899724 1.0 3773 +Phenotype MP:0000397 abnormal guard hair morphology 0.07060630178174865 0.2365329994474079 1.0 3774 +Biological Process GO:0007140 male meiotic nuclear division 0.0705981664111407 0.23638554739383474 1.0 3775 +Phenotype MP:0009701 abnormal birth body size 0.07057594922641985 0.23598286512285135 1.0 3776 +Biological Process GO:0071285 cellular response to lithium ion 0.07056326211292163 0.23575291359029307 1.0 3777 +Biological Process GO:0033089 positive regulation of T cell differentiation in thymus 0.07056057433617235 0.23570419814506927 1.0 3778 +Phenotype MP:0008915 fused carpal bones 0.07055997948974535 0.235693416666087 1.0 3779 +Biological Process GO:0003206 cardiac chamber morphogenesis 0.07052859364004083 0.2351245540764041 1.0 3780 +Phenotype MP:0000597 delayed hepatic development 0.07050418700483108 0.23468218842941435 1.0 3781 +Phenotype MP:0012123 abnormal bronchoconstrictive response 0.07047282731171134 0.23411379992288353 1.0 3782 +Phenotype MP:0004963 abnormal blastocoele morphology 0.07046719762457876 0.23401176290838516 1.0 3783 +Phenotype MP:0003333 liver fibrosis 0.07045936073194603 0.23386972071165985 1.0 3784 +Phenotype MP:0014171 increased fatty acid oxidation 0.0704197549166653 0.2331518728006042 1.0 3785 +Phenotype MP:0009019 abnormal metestrus 0.07040820121963376 0.23294246422713402 1.0 3786 +Phenotype MP:0000067 osteopetrosis 0.07040721169354824 0.2329245292539896 1.0 3787 +Biological Process GO:0001656 metanephros development 0.07039483536886548 0.23270021070993002 1.0 3788 +Phenotype MP:0014052 increased male germ cell apoptosis 0.07039326296158377 0.23267171112534865 1.0 3789 +Phenotype MP:0001934 increased litter size 0.07039153015252952 0.232640304288978 1.0 3790 +Phenotype MP:0011973 abnormal circulating glycerol level 0.07038098341637933 0.23244914669102906 1.0 3791 +Biological Process GO:1904705 regulation of vascular associated smooth muscle cell proliferation 0.0703805983660516 0.23244216772666598 1.0 3792 +Biological Process GO:0044089 positive regulation of cellular component biogenesis 0.07037947924795618 0.23242188392285273 1.0 3793 +Phenotype MP:0001106 abnormal Schwann cell morphology 0.0703496913618884 0.23188198412185249 1.0 3794 +Phenotype MP:0005459 decreased percent body fat/body weight 0.07034496631869502 0.23179634360765095 1.0 3795 +Phenotype MP:0003763 abnormal thymus physiology 0.07030572435024063 0.23108509035150587 1.0 3796 +Phenotype MP:0001195 flaky skin 0.07029048298942031 0.23080884356933615 1.0 3797 +Biological Process GO:1903900 regulation of viral life cycle 0.07028486592333916 0.23070703530900777 1.0 3798 +Phenotype MP:0003845 abnormal decidualization 0.0702847433960554 0.23070481452516395 1.0 3799 +Phenotype MP:0010931 abnormal trabecular bone connectivity density 0.07025922471743984 0.23024229330177207 1.0 3800 +Phenotype MP:0002891 increased insulin sensitivity 0.0702411568982857 0.22991481749688833 1.0 3801 +Biological Process GO:0001655 urogenital system development 0.07021421372878445 0.22942647764561655 1.0 3802 +Phenotype MP:0001556 increased circulating HDL cholesterol level 0.07017286598912709 0.22867705768469607 1.0 3803 +Phenotype MP:0005457 abnormal percent body fat/body weight 0.07011892924382901 0.22769946437757876 1.0 3804 +Biological Process GO:0009651 response to salt stress 0.07009458112287936 0.2272581592904862 1.0 3805 +Biological Process GO:0031664 regulation of lipopolysaccharide-mediated signaling pathway 0.07007621035321243 0.22692519256485724 1.0 3806 +Biological Process GO:0055007 cardiac muscle cell differentiation 0.07007241640258433 0.22685642792729757 1.0 3807 +Biological Process GO:0002253 activation of immune response 0.07005636359225242 0.22656547377620515 1.0 3808 +Phenotype MP:0003985 renal fibrosis 0.07004966860020312 0.22644412831157926 1.0 3809 +Biological Process GO:0070986 left/right axis specification 0.07004584467567465 0.2263748204027447 1.0 3810 +Phenotype MP:0004084 abnormal cardiac muscle relaxation 0.07003882151698537 0.22624752697983758 1.0 3811 +Biological Process GO:1902930 regulation of alcohol biosynthetic process 0.07003696128185133 0.2262138105698715 1.0 3812 +Phenotype MP:0001727 abnormal embryo implantation 0.07003066161985727 0.2260996303877256 1.0 3813 +Phenotype MP:0005601 increased angiogenesis 0.07002803510105293 0.22605202523116769 1.0 3814 +Biological Process GO:0008016 regulation of heart contraction 0.07000344103421141 0.22560626242130227 1.0 3815 +Biological Process GO:0055010 ventricular cardiac muscle tissue morphogenesis 0.06998651140003287 0.22529941600382894 1.0 3816 +Phenotype MP:0002679 abnormal corpus luteum morphology 0.06996006622773376 0.2248201022576565 1.0 3817 +Phenotype MP:0006108 abnormal hindbrain development 0.06993325720080723 0.22433419371518018 1.0 3818 +Biological Process GO:0032147 activation of protein kinase activity 0.06992324174758446 0.22415266551980587 1.0 3819 +Biological Process GO:0033173 calcineurin-NFAT signaling cascade 0.0699187446536278 0.22407115654240614 1.0 3820 +Biological Process GO:0097720 calcineurin-mediated signaling 0.0699187446536278 0.22407115654240614 1.0 3820 +Biological Process GO:0051851 modulation by host of symbiont process 0.06989758381610256 0.2236876203645492 1.0 3822 +Phenotype MP:0013188 abnormal gastrocnemius weight 0.06989620630386828 0.2236626532158408 1.0 3823 +Phenotype MP:0004322 abnormal sternebra morphology 0.06988967202364538 0.22354422062267199 1.0 3824 +Biological Process GO:0060191 regulation of lipase activity 0.06988644361885799 0.22348570639650986 1.0 3825 +Biological Process GO:0007179 transforming growth factor beta receptor signaling pathway 0.06987077721603563 0.22320175580844415 1.0 3826 +Biological Process GO:0002696 positive regulation of leukocyte activation 0.06985227587468334 0.22286642249571403 1.0 3827 +Biological Process GO:0032727 positive regulation of interferon-alpha production 0.06983603569204011 0.22257207225691766 1.0 3828 +Phenotype MP:0030942 abnormal microtubule organizing center morphology 0.06983546035986832 0.22256164447012025 1.0 3829 +Biological Process GO:0045721 negative regulation of gluconeogenesis 0.0698186297850738 0.2222565934852467 1.0 3830 +Biological Process GO:1903169 regulation of calcium ion transmembrane transport 0.06980977643776543 0.22209612823977395 1.0 3831 +Biological Process GO:0021872 forebrain generation of neurons 0.06979980055034807 0.22191531716713936 1.0 3832 +Biological Process GO:0051954 positive regulation of amine transport 0.06979419417575583 0.22181370268802544 1.0 3833 +Phenotype MP:0011499 abnormal glomerular capsule space morphology 0.06978918902741271 0.22172298532096296 1.0 3834 +Biological Process GO:0021612 facial nerve structural organization 0.06978117148771412 0.2215776689303359 1.0 3835 +Phenotype MP:0003721 increased tumor growth/size 0.06975563869486356 0.22111489188910408 1.0 3836 +Phenotype MP:0010181 decreased susceptibility to weight loss 0.06975145290037343 0.22103902515565724 1.0 3837 +Biological Process GO:0050879 multicellular organismal movement 0.06973040545636588 0.22065754421386152 1.0 3838 +Biological Process GO:0007029 endoplasmic reticulum organization 0.06969353754073015 0.2199893202160346 1.0 3839 +Biological Process GO:0048799 animal organ maturation 0.06968602846664751 0.21985321966852706 1.0 3840 +Phenotype MP:0005072 abnormal hair follicle melanin granule morphology 0.06967883292604038 0.2197228018559626 1.0 3841 +Phenotype MP:0008186 increased pro-B cell number 0.06967880799488202 0.21972234998343274 1.0 3842 +Phenotype MP:0004031 insulitis 0.06965751371077322 0.2193363951114884 1.0 3843 +Phenotype MP:0013618 decreased areal bone mineral density 0.06965435587458302 0.2192791599278032 1.0 3844 +Phenotype MP:0013680 abnormal germinal center B cell number 0.0696026592904404 0.21834216911793233 1.0 3845 +Phenotype MP:0008176 abnormal germinal center B cell morphology 0.0696026592904404 0.21834216911793233 1.0 3845 +Phenotype MP:0003054 spina bifida 0.0695652406657078 0.21766396362188367 1.0 3847 +Phenotype MP:0003241 loss of cortex neurons 0.06953804613020154 0.21717106780931356 1.0 3848 +Biological Process GO:0008015 blood circulation 0.06949298210083987 0.21635429080038882 1.0 3849 +Phenotype MP:0002855 abnormal cochlear ganglion morphology 0.06949003727634562 0.2163009164134044 1.0 3850 +Phenotype MP:0010418 perimembraneous ventricular septal defect 0.06946828943135852 0.21590674083632583 1.0 3851 +Phenotype MP:0008754 abnormal T cell receptor V(D)J recombination 0.06944095556053942 0.21541131959756385 1.0 3852 +Phenotype MP:0004989 decreased osteoblast cell number 0.06938737093596581 0.21444010841197864 1.0 3853 +Biological Process GO:0001101 response to acid chemical 0.06935756705954654 0.21389991878888204 1.0 3854 +Biological Process GO:0051251 positive regulation of lymphocyte activation 0.06935097226187037 0.21378038932831872 1.0 3855 +Biological Process GO:0010226 response to lithium ion 0.06934107032122894 0.21360091852701174 1.0 3856 +Biological Process GO:0002886 regulation of myeloid leukocyte mediated immunity 0.06932109743575232 0.2132389137553509 1.0 3857 +Biological Process GO:0009615 response to virus 0.0693113432808583 0.21306212154276416 1.0 3858 +Phenotype MP:0020928 increased susceptibility to Poxviridae infection 0.06924025321431837 0.2117736275324583 1.0 3859 +Biological Process GO:0043549 regulation of kinase activity 0.06922353102077883 0.21147054093733222 1.0 3860 +Phenotype MP:0002813 microcytosis 0.06921460701723048 0.21130879506087372 1.0 3861 +Biological Process GO:0009791 post-embryonic development 0.06921038093279641 0.2112321980798133 1.0 3862 +Phenotype MP:0003442 decreased circulating glycerol level 0.06920126618482003 0.21106699499667347 1.0 3863 +Phenotype MP:0011093 embryonic lethality at implantation, complete penetrance 0.06919024047057132 0.2108671560112812 1.0 3864 +Biological Process GO:0042476 odontogenesis 0.06917285291097885 0.21055200978229097 1.0 3865 +Biological Process GO:0021536 diencephalon development 0.06916615003680027 0.21043052145556262 1.0 3866 +Biological Process GO:0039531 regulation of cytoplasmic pattern recognition receptor signaling pathway 0.06911985247532182 0.20959138691032717 1.0 3867 +Phenotype MP:0014274 decreased respiration 0.06909220658551118 0.20909031038635786 1.0 3868 +Phenotype MP:0020927 abnormal susceptibility to Poxviridae infection 0.06908556385839448 0.2089699122137502 1.0 3869 +Biological Process GO:0051926 negative regulation of calcium ion transport 0.06902426648836646 0.20785890897556586 1.0 3870 +Biological Process GO:0010001 glial cell differentiation 0.06901899509562925 0.20776336597921707 1.0 3871 +Biological Process GO:0046503 glycerolipid catabolic process 0.06901058071796595 0.20761085697553616 1.0 3872 +Biological Process GO:0048714 positive regulation of oligodendrocyte differentiation 0.06899725275598967 0.2073692901855209 1.0 3873 +Biological Process GO:0010667 negative regulation of cardiac muscle cell apoptotic process 0.06898107464373304 0.207076064960742 1.0 3874 +Phenotype MP:0013818 abnormal oral cavity morphology 0.06895395648613312 0.20658455348327834 1.0 3875 +Phenotype MP:0003229 abnormal vitelline vasculature morphology 0.06893766696407666 0.2062893089769492 1.0 3876 +Biological Process GO:0035089 establishment of apical/basal cell polarity 0.06890568556428989 0.2057096521546658 1.0 3877 +Phenotype MP:0008444 retina cone cell degeneration 0.06889415625671358 0.20550068563545879 1.0 3878 +Biological Process GO:0070167 regulation of biomineral tissue development 0.06888793180390873 0.20538786860564248 1.0 3879 +Biological Process GO:0030878 thyroid gland development 0.06886464291609018 0.20496576191871133 1.0 3880 +Biological Process GO:0062208 positive regulation of pattern recognition receptor signaling pathway 0.06882978820208396 0.2043340268196493 1.0 3881 +Biological Process GO:0009410 response to xenobiotic stimulus 0.06880271763796453 0.20384337796501786 1.0 3882 +Biological Process GO:2000052 positive regulation of non-canonical Wnt signaling pathway 0.06879771402067991 0.20375268834810115 1.0 3883 +Phenotype MP:0008599 increased circulating interleukin-2 level 0.06879626014203322 0.2037263370726114 1.0 3884 +Phenotype MP:0001078 abnormal phrenic nerve morphology 0.06879503733770487 0.20370417397543705 1.0 3885 +Phenotype MP:0010871 abnormal trabecular bone mass 0.06875430397021665 0.20296588939388197 1.0 3886 +Phenotype MP:0010895 increased lung compliance 0.06875364080046387 0.2029538695675425 1.0 3887 +Phenotype MP:0005033 abnormal trophoblast giant cell morphology 0.06873083913987077 0.20254059378192021 1.0 3888 +Phenotype MP:0010896 decreased lung compliance 0.06871949042427394 0.20233490045818475 1.0 3889 +Biological Process GO:0050920 regulation of chemotaxis 0.06870826298613963 0.2021314052655194 1.0 3890 +Biological Process GO:0002252 immune effector process 0.06869635074016811 0.20191549806032674 1.0 3891 +Biological Process GO:0045724 positive regulation of cilium assembly 0.06867461649309536 0.20152156894287387 1.0 3892 +Phenotype MP:0012360 abnormal large unstained cell number 0.06864437157187964 0.20097338546625912 1.0 3893 +Biological Process GO:0002027 regulation of heart rate 0.06858184638190701 0.19984012822380445 1.0 3894 +Phenotype MP:0002971 abnormal brown adipose tissue morphology 0.06857793673393842 0.19976926659383107 1.0 3895 +Phenotype MP:0013968 multiple persisting craniopharyngeal ducts 0.06852234693674442 0.19876171203375273 1.0 3896 +Phenotype MP:0008698 abnormal interleukin-4 secretion 0.0685077886252099 0.19849784539069854 1.0 3897 +Biological Process GO:0003230 cardiac atrium development 0.06848940136579973 0.1981645797915922 1.0 3898 +Phenotype MP:0009674 decreased birth weight 0.06845274337771268 0.19750016069088006 1.0 3899 +Phenotype MP:0006397 disorganized long bone epiphyseal plate 0.06844362600679055 0.1973349100673446 1.0 3900 +Phenotype MP:0000708 thymus hyperplasia 0.06841485967875383 0.1968135258124433 1.0 3901 +Phenotype MP:0008101 lymph node hypoplasia 0.06838818393103763 0.1963300329304463 1.0 3902 +Biological Process GO:0060134 prepulse inhibition 0.06838435852802127 0.19626069822429842 1.0 3903 +Phenotype MP:0020950 decreased susceptibility to Coronaviridae infection 0.06836539716856815 0.19591702717049692 1.0 3904 +Phenotype MP:0000272 abnormal aorta morphology 0.06835697969915455 0.19576446212942658 1.0 3905 +Phenotype MP:0001917 intraventricular hemorrhage 0.06835478754791313 0.1957247298027918 1.0 3906 +Phenotype MP:0008466 enlarged mesenteric lymph nodes 0.06834985586874442 0.19563534405061977 1.0 3907 +Biological Process GO:0032525 somite rostral/caudal axis specification 0.06833949358046287 0.1954475295354042 1.0 3908 +Biological Process GO:1901654 response to ketone 0.06832831933865424 0.1952449985160804 1.0 3909 +Phenotype MP:0021115 abnormal aggression towards conspecific 0.0683144189235233 0.19499305612090878 1.0 3910 +Phenotype MP:0020137 decreased bone mineralization 0.06831165486406965 0.19494295806609602 1.0 3911 +Biological Process GO:0048645 animal organ formation 0.0683018873499277 0.19476592371966725 1.0 3912 +Phenotype MP:0005576 decreased pulmonary ventilation 0.06828603812968326 0.19447865960040364 1.0 3913 +Phenotype MP:0011072 abnormal macrophage cytokine production 0.06827939634020375 0.1943582784222927 1.0 3914 +Biological Process GO:0033555 multicellular organismal response to stress 0.06825670733570544 0.19394704450708103 1.0 3915 +Biological Process GO:0050688 regulation of defense response to virus 0.06825471256522775 0.193910889669457 1.0 3916 +Phenotype MP:0010578 abnormal heart left ventricle size 0.06825121815239421 0.19384755409777032 1.0 3917 +Biological Process GO:0008202 steroid metabolic process 0.06825017197508954 0.19382859233199345 1.0 3918 +Phenotype MP:0002207 abnormal long-term potentiation 0.06824274685620235 0.19369401345652468 1.0 3919 +Phenotype MP:0008488 abnormal semicircular canal ampulla morphology 0.06823022077689023 0.19346698063813195 1.0 3920 +Phenotype MP:0011439 abnormal kidney cell proliferation 0.06822446043651964 0.19336257555840602 1.0 3921 +Phenotype MP:0008396 abnormal osteoclast differentiation 0.0682100932211831 0.19310217249779688 1.0 3922 +Biological Process GO:1902652 secondary alcohol metabolic process 0.06820081970306469 0.19293409173586193 1.0 3923 +Biological Process GO:0006942 regulation of striated muscle contraction 0.06818280406972399 0.1926075617889767 1.0 3924 +Phenotype MP:0008000 increased ovary tumor incidence 0.06818266370332182 0.19260501767448582 1.0 3925 +Phenotype MP:0006412 abnormal T cell apoptosis 0.06818145488770022 0.19258310811997553 1.0 3926 +Biological Process GO:0010765 positive regulation of sodium ion transport 0.06817862942459307 0.19253189713555685 1.0 3927 +Phenotype MP:0003056 abnormal hyoid bone morphology 0.06817439647623191 0.1924551757471161 1.0 3928 +Biological Process GO:0043129 surfactant homeostasis 0.06816338225799501 0.19225554512476353 1.0 3929 +Phenotype MP:0001208 blistering 0.06816310020977934 0.19225043305420011 1.0 3930 +Biological Process GO:0070977 bone maturation 0.06814527840596818 0.1919274162308775 1.0 3931 +Phenotype MP:0005226 abnormal vertebral arch development 0.0681388528225233 0.1918109537462518 1.0 3932 +Phenotype MP:0005566 decreased blood urea nitrogen level 0.06811657298410156 0.1914071358887898 1.0 3933 +Biological Process GO:0007409 axonogenesis 0.0681027179882977 0.191156016710331 1.0 3934 +Phenotype MP:0010579 increased heart left ventricle size 0.06807790762523758 0.19070633357241293 1.0 3935 +Phenotype MP:0004945 abnormal bone resorption 0.0680564233989025 0.19031693603354224 1.0 3936 +Phenotype MP:0002992 abnormal sebaceous lipid secretion 0.06799727864743776 0.18924494859967866 1.0 3937 +Biological Process GO:0034620 cellular response to unfolded protein 0.06798480600212287 0.18901888426237934 1.0 3938 +Phenotype MP:0002929 abnormal bile duct development 0.06797429246582365 0.18882832840545008 1.0 3939 +Biological Process GO:0010657 muscle cell apoptotic process 0.06796208147081773 0.18860700643051329 1.0 3940 +Phenotype MP:0002016 ovary cyst 0.0679549787992878 0.18847827185240829 1.0 3941 +Phenotype MP:0000164 abnormal cartilage development 0.06792809702249292 0.18799104473232772 1.0 3942 +Phenotype MP:0010898 abnormal pulmonary alveolus epithelium morphology 0.06792031253666453 0.18784995239901905 1.0 3943 +Biological Process GO:0045682 regulation of epidermis development 0.06791152725740746 0.18769072087410207 1.0 3944 +Biological Process GO:0032755 positive regulation of interleukin-6 production 0.06790968770471262 0.1876573793294348 1.0 3945 +Biological Process GO:0003208 cardiac ventricle morphogenesis 0.06789246978206498 0.18734530773798497 1.0 3946 +Phenotype MP:0013508 increased granulosa cell apoptosis 0.0678677835709971 0.18689787483144463 1.0 3947 +Phenotype MP:0008831 abnormal insulin-like growth factor I level 0.0678646674884158 0.1868413964240237 1.0 3948 +Biological Process GO:0055082 intracellular chemical homeostasis 0.06781744202397555 0.18598544381310597 1.0 3949 +Phenotype MP:0003729 abnormal photoreceptor outer segment morphology 0.06781683370345015 0.18597441811863882 1.0 3950 +Biological Process GO:0060973 cell migration involved in heart development 0.06779713127684983 0.18561731536295714 1.0 3951 +Biological Process GO:0045773 positive regulation of axon extension 0.06778606901698736 0.1854168139952276 1.0 3952 +Phenotype MP:0001853 heart inflammation 0.067782109637751 0.18534505099543191 1.0 3953 +Phenotype MP:0010841 increased central memory CD4-positive, alpha-beta T cell number 0.06777883915116067 0.18528577404455088 1.0 3954 +Phenotype MP:0002993 arthritis 0.06776031544517169 0.18495003537701057 1.0 3955 +Phenotype MP:0002746 abnormal semilunar valve morphology 0.06769340524442435 0.1837373006436301 1.0 3956 +Biological Process GO:0007160 cell-matrix adhesion 0.06767399206277447 0.1833854403979683 1.0 3957 +Phenotype MP:0008803 abnormal placental labyrinth vasculature morphology 0.06767397709960932 0.18338516919343 1.0 3958 +Biological Process GO:0034612 response to tumor necrosis factor 0.06766456148257327 0.1832145129154891 1.0 3959 +Phenotype MP:0000359 abnormal mast cell morphology 0.0676470468741257 0.1828970639500297 1.0 3960 +Biological Process GO:0061842 microtubule organizing center localization 0.0676444865071042 0.18285065778202386 1.0 3961 +Biological Process GO:0051642 centrosome localization 0.0676444865071042 0.18285065778202386 1.0 3961 +Phenotype MP:0020184 abnormal susceptibility to parasitic infection 0.06764379780628405 0.18283817520991713 1.0 3963 +Phenotype MP:0030968 decreased circulating adiponectin level 0.06763420023111744 0.18266422097527468 1.0 3964 +Phenotype MP:0010287 increased reproductive system tumor incidence 0.06760995965733296 0.1822248651602098 1.0 3965 +Biological Process GO:0001666 response to hypoxia 0.06760052751956636 0.1820539094471521 1.0 3966 +Biological Process GO:0046677 response to antibiotic 0.0675992882384101 0.18203144771058843 1.0 3967 +Biological Process GO:0097028 dendritic cell differentiation 0.06754754990295686 0.18109370016610907 1.0 3968 +Biological Process GO:1901989 positive regulation of cell cycle phase transition 0.06751315101528954 0.1804702268332261 1.0 3969 +Biological Process GO:0036344 platelet morphogenesis 0.06750816150769423 0.1803797929517594 1.0 3970 +Biological Process GO:1903319 positive regulation of protein maturation 0.06749813753907252 0.18019811041638986 1.0 3971 +Biological Process GO:0010954 positive regulation of protein processing 0.06749813753907252 0.18019811041638986 1.0 3971 +Phenotype MP:0014167 ectopic bone 0.06749575118311646 0.18015485816603338 1.0 3973 +Phenotype MP:0004035 abnormal sublingual gland morphology 0.06748009522536524 0.17987109689290656 1.0 3974 +Biological Process GO:0090066 regulation of anatomical structure size 0.06747559895493371 0.17978960284174417 1.0 3975 +Phenotype MP:0010186 increased T follicular helper cell number 0.06747276155232851 0.1797381754561814 1.0 3976 +Phenotype MP:0008093 abnormal memory B cell number 0.06747228799856331 0.17972959238375347 1.0 3977 +Biological Process GO:0051336 regulation of hydrolase activity 0.06746478353635865 0.17959357542566223 1.0 3978 +Phenotype MP:0009698 heart hemorrhage 0.06745733010404042 0.1794584833746109 1.0 3979 +Phenotype MP:0031543 abnormal heart ventricle size 0.0674478048801872 0.17928584049383928 1.0 3980 +Phenotype MP:0001377 abnormal mating frequency 0.06744460364086058 0.17922781863651563 1.0 3981 +Phenotype MP:0001823 thymus hypoplasia 0.06741258482481105 0.1786474836515466 1.0 3982 +Biological Process GO:0007595 lactation 0.06735608272477878 0.17762339377507436 1.0 3983 +Phenotype MP:0002909 abnormal adrenal gland physiology 0.06734615528012844 0.1774434607184297 1.0 3984 +Phenotype MP:0002411 decreased susceptibility to bacterial infection 0.06734004077915268 0.17733263654471967 1.0 3985 +Phenotype MP:0003057 abnormal epicardium morphology 0.06733613325176835 0.17726181334993502 1.0 3986 +Phenotype MP:0010460 pulmonary artery hypoplasia 0.06730429618082945 0.17668477246072145 1.0 3987 +Phenotype MP:0011204 abnormal visceral yolk sac blood island morphology 0.06729975073740291 0.17660238715832494 1.0 3988 +Biological Process GO:0072178 nephric duct morphogenesis 0.0672984871210065 0.17657948435013612 1.0 3989 +Biological Process GO:0010623 programmed cell death involved in cell development 0.06729656428032893 0.1765446332265346 1.0 3990 +Phenotype MP:0010448 heart left ventricle outflow tract stenosis 0.0672965189848389 0.17654381225434493 1.0 3991 +Phenotype MP:0006117 aortic valve stenosis 0.0672965189848389 0.17654381225434493 1.0 3991 +Phenotype MP:0003403 absent placental labyrinth 0.06729297990030492 0.17647966701653667 1.0 3993 +Phenotype MP:0005221 abnormal rostral-caudal axis patterning 0.06729076088943642 0.1764394478642412 1.0 3994 +Phenotype MP:0003402 decreased liver weight 0.0672731861485345 0.17612090900942 1.0 3995 +Phenotype MP:0014290 abnormal autopod size 0.0672699969647661 0.1760631056568089 1.0 3996 +Biological Process GO:0007162 negative regulation of cell adhesion 0.0672672043811936 0.17601249060773705 1.0 3997 +Phenotype MP:0003707 increased cell nucleus count 0.06723209369929006 0.17537611613894893 1.0 3998 +Biological Process GO:0002888 positive regulation of myeloid leukocyte mediated immunity 0.0671988446161721 0.17477348279605287 1.0 3999 +Biological Process GO:0031645 negative regulation of nervous system process 0.06719630254428988 0.1747274082239864 1.0 4000 +Biological Process GO:0007274 neuromuscular synaptic transmission 0.06715287877500054 0.17394036061863938 1.0 4001 +Phenotype MP:0003453 abnormal keratinocyte physiology 0.06714976221857172 0.17388387362282182 1.0 4002 +Biological Process GO:0002377 immunoglobulin production 0.0671436126536078 0.17377241392095832 1.0 4003 +Biological Process GO:0072520 seminiferous tubule development 0.06714278216480096 0.17375736146841023 1.0 4004 +Phenotype MP:0002628 hepatic steatosis 0.06713923141652867 0.17369300482755115 1.0 4005 +Phenotype MP:0003149 abnormal tectorial membrane morphology 0.06711882281483139 0.17332310278180074 1.0 4006 +Phenotype MP:0008963 increased carbon dioxide production 0.06711650675712921 0.17328112467399992 1.0 4007 +Biological Process GO:0060742 epithelial cell differentiation involved in prostate gland development 0.06710782762259693 0.17312381700214388 1.0 4008 +Biological Process GO:0001780 neutrophil homeostasis 0.06706723554874228 0.17238809334097346 1.0 4009 +Phenotype MP:0001883 increased mammary adenocarcinoma incidence 0.06705664688146085 0.17219617574920162 1.0 4010 +Phenotype MP:0013506 abnormal ovary apoptosis 0.06701982652555372 0.1715288137624603 1.0 4011 +Phenotype MP:0003871 abnormal myelin sheath morphology 0.06701809545408433 0.17149743841948648 1.0 4012 +Phenotype MP:0011099 lethality throughout fetal growth and development, complete penetrance 0.06700194159051864 0.17120465269764465 1.0 4013 +Biological Process GO:0072176 nephric duct development 0.06700176350513298 0.17120142493371202 1.0 4014 +Phenotype MP:0031449 abnormal nasal cartilage morphology 0.06697135080852878 0.17065020055991367 1.0 4015 +Biological Process GO:0021859 pyramidal neuron differentiation 0.0669645438239117 0.17052682525117874 1.0 4016 +Phenotype MP:0003082 abnormal gastrocnemius morphology 0.06695941008040818 0.17043377712115587 1.0 4017 +Phenotype MP:0003289 abnormal intestinal peristalsis 0.06695302272418213 0.17031800749764137 1.0 4018 +Biological Process GO:0072210 metanephric nephron development 0.06688022814356298 0.16899861949203568 1.0 4019 +Phenotype MP:0002798 abnormal active avoidance behavior 0.06686443034184719 0.16871228732387886 1.0 4020 +Biological Process GO:0033673 negative regulation of kinase activity 0.06686145592080095 0.16865837650498747 1.0 4021 +Biological Process GO:0045649 regulation of macrophage differentiation 0.06685468543974649 0.1685356628164208 1.0 4022 +Biological Process GO:0006837 serotonin transport 0.06685197263806375 0.16848649379901118 1.0 4023 +Phenotype MP:0005272 abnormal temporal bone morphology 0.06684712399628501 0.1683986130838269 1.0 4024 +Phenotype MP:0001781 abnormal white adipose tissue amount 0.06682851331741801 0.16806129804932238 1.0 4025 +Phenotype MP:0010933 decreased trabecular bone connectivity density 0.06681104480726141 0.16774468460666783 1.0 4026 +Phenotype MP:0008406 increased cellular sensitivity to hydrogen peroxide 0.06679430604304049 0.16744129767107582 1.0 4027 +Phenotype MP:0009431 decreased fetal weight 0.06676636953044679 0.16693495366413091 1.0 4028 +Phenotype MP:0000248 macrocytosis 0.06671388752401053 0.16598372722373975 1.0 4029 +Biological Process GO:0010811 positive regulation of cell-substrate adhesion 0.06671141047696427 0.1659388312145265 1.0 4030 +Biological Process GO:0042440 pigment metabolic process 0.06670078102851329 0.16574617447176973 1.0 4031 +Biological Process GO:0060575 intestinal epithelial cell differentiation 0.0666848769623104 0.16545791627988274 1.0 4032 +Biological Process GO:0060669 embryonic placenta morphogenesis 0.0666820860766203 0.16540733200460805 1.0 4033 +Biological Process GO:0070328 triglyceride homeostasis 0.06667352789979675 0.16525221666834536 1.0 4034 +Biological Process GO:0051604 protein maturation 0.0666679095246725 0.16515038468185847 1.0 4035 +Phenotype MP:0014032 abnormal mucous gland morphology 0.06666766890560205 0.16514602350671648 1.0 4036 +Phenotype MP:0008089 abnormal T-helper 2 cell number 0.06665400620443729 0.16489838963222142 1.0 4037 +Phenotype MP:0011827 impaired neuron differentiation 0.06664616557068614 0.16475627962843242 1.0 4038 +Phenotype MP:0006036 abnormal mitochondrial physiology 0.06663395796755223 0.1645350191305342 1.0 4039 +Phenotype MP:0009303 decreased renal fat pad weight 0.06658363291259428 0.16362288702772915 1.0 4040 +Phenotype MP:0004937 dilated heart 0.06658227307104236 0.1635982401567964 1.0 4041 +Biological Process GO:0060415 muscle tissue morphogenesis 0.06658162307640114 0.16358645912686198 1.0 4042 +Phenotype MP:0010839 decreased CD8-positive, alpha-beta memory T cell number 0.0665810779795093 0.16357657934879502 1.0 4043 +Biological Process GO:0036294 cellular response to decreased oxygen levels 0.06656372290626944 0.16326202192880146 1.0 4044 +Biological Process GO:0060020 Bergmann glial cell differentiation 0.06655188681745228 0.16304749505762747 1.0 4045 +Phenotype MP:0005348 increased T cell proliferation 0.06653030685501649 0.16265636232003858 1.0 4046 +Phenotype MP:0020919 increased susceptibility to Ortervirales infection 0.06652573655816985 0.16257352655410343 1.0 4047 +Phenotype MP:0012057 abnormal mural trophectoderm morphology 0.06649720212939325 0.16205634542943131 1.0 4048 +Biological Process GO:0016079 synaptic vesicle exocytosis 0.06649049451615008 0.16193477120805366 1.0 4049 +Phenotype MP:0003980 increased circulating phospholipid level 0.06648369905167639 0.16181160469973888 1.0 4050 +Biological Process GO:1902106 negative regulation of leukocyte differentiation 0.06648205930386064 0.16178188458071466 1.0 4051 +Phenotype MP:0008524 increased plasmacytoid dendritic cell number 0.06645636296684976 0.16131614333250913 1.0 4052 +Phenotype MP:0000853 absent cerebellar foliation 0.06644656078106537 0.16113848056911872 1.0 4053 +Phenotype MP:0012357 abnormal partial thromboplastin time 0.06643076441338713 0.16085217439262134 1.0 4054 +Phenotype MP:0005476 abnormal circulating triiodothyronine level 0.06642712331272893 0.16078618013185667 1.0 4055 +Phenotype MP:0001722 pale yolk sac 0.06642437092850184 0.16073629368831716 1.0 4056 +Biological Process GO:0050931 pigment cell differentiation 0.06641060589793846 0.16048680511282631 1.0 4057 +Biological Process GO:0048588 developmental cell growth 0.06640167842286626 0.1603249963156547 1.0 4058 +Biological Process GO:0008585 female gonad development 0.06639236122170433 0.16015612380681807 1.0 4059 +Biological Process GO:0070482 response to oxygen levels 0.06638262647844595 0.15997968342645572 1.0 4060 +Biological Process GO:1901342 regulation of vasculature development 0.06637759895322792 0.1598885604827678 1.0 4061 +Phenotype MP:0005606 increased bleeding time 0.06634790660831458 0.15935039234712134 1.0 4062 +Biological Process GO:0034329 cell junction assembly 0.06627937870539924 0.1581083370679125 1.0 4063 +Phenotype MP:0011971 increased circulating lactate dehydrogenase level 0.06626278114591322 0.15780750944143368 1.0 4064 +Phenotype MP:0010840 abnormal central memory CD4-positive, alpha-beta T cell morphology 0.0662558883596932 0.15768257899487378 1.0 4065 +Phenotype MP:0012771 abnormal central memory CD4-positive, alpha-beta T cell number 0.0662558883596932 0.15768257899487378 1.0 4065 +Biological Process GO:0043086 negative regulation of catalytic activity 0.06624759363979704 0.1575322387655906 1.0 4067 +Phenotype MP:0008215 decreased immature B cell number 0.0661919528068704 0.15652375919251088 1.0 4068 +Biological Process GO:0044703 multi-organism reproductive process 0.06617294052024159 0.15617916509328203 1.0 4069 +Phenotype MP:0002410 decreased susceptibility to viral infection 0.06615082958258622 0.15577840853026523 1.0 4070 +Biological Process GO:0071637 regulation of monocyte chemotactic protein-1 production 0.06613578813075716 0.15550578506075183 1.0 4071 +Phenotype MP:0003843 abnormal sagittal suture morphology 0.06611948478253593 0.15521028995780128 1.0 4072 +Phenotype MP:0011417 abnormal renal transport 0.06611688313079589 0.15516313551208047 1.0 4073 +Phenotype MP:0011260 abnormal head mesenchyme morphology 0.06610799821098057 0.15500209802089093 1.0 4074 +Biological Process GO:0002634 regulation of germinal center formation 0.06610324841352011 0.15491600884028048 1.0 4075 +Phenotype MP:0001063 abnormal trochlear nerve morphology 0.0660700306339086 0.15431394286751826 1.0 4076 +Phenotype MP:0010867 abnormal bone trabecula morphology 0.06606516310888488 0.1542257198970904 1.0 4077 +Phenotype MP:0008617 increased circulating interleukin-12 level 0.06605700785991131 0.15407790755190012 1.0 4078 +Phenotype MP:0010913 abnormal neuroendocrine cell morphology 0.06602669965241581 0.15352857702343423 1.0 4079 +Biological Process GO:0090179 planar cell polarity pathway involved in neural tube closure 0.06601509274354678 0.1533182039954738 1.0 4080 +Biological Process GO:0022612 gland morphogenesis 0.06599134109253513 0.1528877098131932 1.0 4081 +Biological Process GO:0071248 cellular response to metal ion 0.06599098561737127 0.15288126689308157 1.0 4082 +Phenotype MP:0005355 enlarged thyroid gland 0.06595752060888116 0.15227471994365488 1.0 4083 +Phenotype MP:0013716 hypolactation 0.06590619994897318 0.15134454268943565 1.0 4084 +Biological Process GO:0035743 CD4-positive, alpha-beta T cell cytokine production 0.06590597862437098 0.15134053122288135 1.0 4085 +Biological Process GO:0085029 extracellular matrix assembly 0.06590209741325104 0.15127018500541137 1.0 4086 +Phenotype MP:0013702 abnormal megakaryocyte-erythroid progenitor cell morphology 0.06589910672078747 0.1512159792701585 1.0 4087 +Biological Process GO:0060972 left/right pattern formation 0.06587127060797937 0.15071145499033825 1.0 4088 +Biological Process GO:0060736 prostate gland growth 0.06586342465509765 0.15056924857831352 1.0 4089 +Biological Process GO:0032373 positive regulation of sterol transport 0.0658548039049589 0.15041299911254782 1.0 4090 +Biological Process GO:0032376 positive regulation of cholesterol transport 0.0658548039049589 0.15041299911254782 1.0 4090 +Phenotype MP:0004704 short vertebral column 0.06584264349601088 0.15019259400034274 1.0 4092 +Phenotype MP:0001300 ocular hypertelorism 0.0657787356418672 0.14903427623130022 1.0 4093 +Biological Process GO:0032102 negative regulation of response to external stimulus 0.065753514427916 0.14857714649868814 1.0 4094 +Phenotype MP:0002707 abnormal kidney weight 0.06572617443520579 0.14808161430180775 1.0 4095 +Phenotype MP:0003179 thrombocytopenia 0.06572299018402716 0.14802390035145352 1.0 4096 +Phenotype MP:0002682 decreased mature ovarian follicle number 0.06572038350029819 0.14797665470188498 1.0 4097 +Biological Process GO:0001837 epithelial to mesenchymal transition 0.06569774492152813 0.14756633474346068 1.0 4098 +Biological Process GO:0002260 lymphocyte homeostasis 0.06567235697238882 0.14710618296709999 1.0 4099 +Biological Process GO:0001818 negative regulation of cytokine production 0.06566993821340039 0.1470623434179104 1.0 4100 +Biological Process GO:0045577 regulation of B cell differentiation 0.06565052828863471 0.14671054220265883 1.0 4101 +Phenotype MP:0000136 abnormal microglial cell morphology 0.06564782396340219 0.14666152681930605 1.0 4102 +Biological Process GO:2000241 regulation of reproductive process 0.06563054192489925 0.1463482931401057 1.0 4103 +Biological Process GO:0010256 endomembrane system organization 0.0655763649440867 0.14536634560972575 1.0 4104 +Biological Process GO:0016049 cell growth 0.06556904654464757 0.14523370100406846 1.0 4105 +Phenotype MP:0004904 increased uterus weight 0.06556877184286614 0.14522872208623613 1.0 4106 +Phenotype MP:0000098 abnormal vomer bone morphology 0.0655408527125636 0.14472269313003092 1.0 4107 +Phenotype MP:0009886 failure of palatal shelf elevation 0.06552589702705247 0.14445162415880855 1.0 4108 +Phenotype MP:0002933 joint inflammation 0.06544063813460754 0.14290632285881769 1.0 4109 +Phenotype MP:0000659 prostate gland hyperplasia 0.06540442825028936 0.1422500255541635 1.0 4110 +Biological Process GO:0032823 regulation of natural killer cell differentiation 0.06537813131833081 0.14177339863612604 1.0 4111 +Biological Process GO:0060428 lung epithelium development 0.0653770633718388 0.14175404230794594 1.0 4112 +Biological Process GO:0033081 regulation of T cell differentiation in thymus 0.06534411272830887 0.1411568181261373 1.0 4113 +Biological Process GO:0042246 tissue regeneration 0.06533588100577303 0.14100761971209497 1.0 4114 +Phenotype MP:0002626 increased heart rate 0.06532951530391495 0.1408922425699042 1.0 4115 +Phenotype MP:0011901 abnormal hematopoietic stem cell proliferation 0.06531434433604089 0.1406172716465714 1.0 4116 +Biological Process GO:0055090 acylglycerol homeostasis 0.06531155092168806 0.14056664153976312 1.0 4117 +Phenotype MP:0010168 increased CD4-positive, CD25-positive, alpha-beta regulatory T cell number 0.06530672976354557 0.1404792589602878 1.0 4118 +Biological Process GO:0009642 response to light intensity 0.06529894556219129 0.14033817178301855 1.0 4119 +Biological Process GO:0031630 regulation of synaptic vesicle fusion to presynaptic active zone membrane 0.06529703718495905 0.1403035828066281 1.0 4120 +Biological Process GO:1901632 regulation of synaptic vesicle membrane organization 0.06529703718495905 0.1403035828066281 1.0 4120 +Biological Process GO:0030001 metal ion transport 0.06527281018803999 0.1398644730696809 1.0 4122 +Phenotype MP:0002713 abnormal glycogen catabolism 0.06526757923028503 0.1397696629497377 1.0 4123 +Biological Process GO:0035270 endocrine system development 0.06525234815568004 0.13949360260327523 1.0 4124 +Biological Process GO:0090130 tissue migration 0.0652453275111875 0.1393663547497085 1.0 4125 +Biological Process GO:0002443 leukocyte mediated immunity 0.06523719654475046 0.1392189825209002 1.0 4126 +Phenotype MP:0000872 abnormal cerebellum external granule cell layer morphology 0.06523515575749617 0.1391819936379035 1.0 4127 +Biological Process GO:0007188 adenylate cyclase-modulating G protein-coupled receptor signaling pathway 0.06521376596299999 0.13879430765825249 1.0 4128 +Biological Process GO:0030239 myofibril assembly 0.06520102872560574 0.13856344763955883 1.0 4129 +Biological Process GO:0072311 glomerular epithelial cell differentiation 0.06519791020110766 0.13850692497285813 1.0 4130 +Biological Process GO:0061318 renal filtration cell differentiation 0.06519791020110766 0.13850692497285813 1.0 4130 +Biological Process GO:0072112 podocyte differentiation 0.06519791020110766 0.13850692497285813 1.0 4130 +Phenotype MP:0008647 increased circulating interleukin-12b level 0.06518146423918547 0.13820884502355116 1.0 4133 +Biological Process GO:0021904 dorsal/ventral neural tube patterning 0.06517898148891743 0.13816384564452178 1.0 4134 +Phenotype MP:0011187 abnormal parietal endoderm morphology 0.06516917125603261 0.13798603702895806 1.0 4135 +Biological Process GO:0006941 striated muscle contraction 0.0651421638314621 0.13749653256670882 1.0 4136 +Phenotype MP:0010087 increased circulating fructosamine level 0.06512107846240889 0.13711436424063356 1.0 4137 +Phenotype MP:0010360 decreased liver free fatty acids level 0.06512012616457719 0.1370971040225483 1.0 4138 +Biological Process GO:0061548 ganglion development 0.06510030211877105 0.13673779694176383 1.0 4139 +Phenotype MP:0001005 abnormal retina rod cell morphology 0.0650737441012248 0.13625643789683003 1.0 4140 +Phenotype MP:0004193 abnormal kidney papilla morphology 0.06506632508160326 0.13612196956939754 1.0 4141 +Phenotype MP:0010031 abnormal cranium size 0.06506508805317213 0.13609954866305055 1.0 4142 +Biological Process GO:1905953 negative regulation of lipid localization 0.06504958592931032 0.13581857560007357 1.0 4143 +Phenotype MP:0010070 decreased serotonin level 0.06499727620910078 0.13487047181495626 1.0 4144 +Phenotype MP:0031446 non-midline cleft upper lip 0.06498405171744026 0.1346307804048441 1.0 4145 +Biological Process GO:0016486 peptide hormone processing 0.06494919076620198 0.13399893225713058 1.0 4146 +Phenotype MP:0009743 preaxial polydactyly 0.06492907685599014 0.13363437143881676 1.0 4147 +Phenotype MP:0005585 increased tidal volume 0.06490435667078542 0.133186322757472 1.0 4148 +Phenotype MP:0010583 abnormal conotruncus morphology 0.06490073140646002 0.13312061552724408 1.0 4149 +Biological Process GO:1900424 regulation of defense response to bacterium 0.06488674507063674 0.13286711583577457 1.0 4150 +Biological Process GO:0045765 regulation of angiogenesis 0.06485971526561696 0.13237720573211526 1.0 4151 +Phenotype MP:0000613 abnormal salivary gland morphology 0.06484569272771368 0.13212304988479287 1.0 4152 +Phenotype MP:0005105 abnormal middle ear ossicle morphology 0.06484551010291639 0.1321197398448831 1.0 4153 +Phenotype MP:0003917 increased kidney weight 0.06481979037220698 0.13165357459031626 1.0 4154 +Biological Process GO:0009141 nucleoside triphosphate metabolic process 0.06479256351878382 0.13116009302161488 1.0 4155 +Biological Process GO:0060038 cardiac muscle cell proliferation 0.06474928331299568 0.13037564747757394 1.0 4156 +Biological Process GO:0021782 glial cell development 0.06474487143328334 0.1302956829922355 1.0 4157 +Phenotype MP:0013510 decreased CD4-negative NK T cell number 0.06473276123547311 0.13007618794740639 1.0 4158 +Phenotype MP:0011611 abnormal circulating ghrelin level 0.06472542266521741 0.12994317774951375 1.0 4159 +Phenotype MP:0009675 orthokeratosis 0.06460271204706791 0.12771907100461796 1.0 4160 +Phenotype MP:0004057 thin myocardium compact layer 0.06455206105637834 0.12680103137832352 1.0 4161 +Phenotype MP:0009051 dilated distal convoluted tubule 0.0645263068607238 0.12633424145314498 1.0 4162 +Biological Process GO:0003272 endocardial cushion formation 0.06451646752506524 0.12615590535531152 1.0 4163 +Phenotype MP:0010900 abnormal pulmonary interalveolar septum morphology 0.06449419540800816 0.12575222744612355 1.0 4164 +Phenotype MP:0020386 adipose tissue inflammation 0.06447252320336627 0.12535942283599555 1.0 4165 +Phenotype MP:0004083 polysyndactyly 0.06446076128459488 0.1251462402828729 1.0 4166 +Phenotype MP:0003448 abnormal tumor morphology 0.06442769439561613 0.12454690917429063 1.0 4167 +Biological Process GO:0045824 negative regulation of innate immune response 0.06442469366118897 0.12449252143034692 1.0 4168 +Phenotype MP:0005545 abnormal lens development 0.06441037182185871 0.12423294080126944 1.0 4169 +Phenotype MP:0003413 hair follicle degeneration 0.06440795302945923 0.12418910064651087 1.0 4170 +Biological Process GO:0097009 energy homeostasis 0.06440520211766843 0.12413924089060051 1.0 4171 +Phenotype MP:0001242 hyperkeratosis 0.06440328685310348 0.12410452708260744 1.0 4172 +Biological Process GO:0044091 membrane biogenesis 0.06440108588332949 0.1240646349217377 1.0 4173 +Biological Process GO:0051560 mitochondrial calcium ion homeostasis 0.06439788091243448 0.1240065454304428 1.0 4174 +Phenotype MP:0020516 abnormal visceral yolk sac mesenchyme morphology 0.0643489122531421 0.12311899774253207 1.0 4175 +Phenotype MP:0003237 abnormal lens epithelium morphology 0.06433623534075217 0.12288923110313216 1.0 4176 +Phenotype MP:0031384 impaired blood-brain barrier function 0.0643279848558318 0.12273969262441879 1.0 4177 +Phenotype MP:0008987 abnormal liver lobule morphology 0.06431884812399313 0.12257409108793298 1.0 4178 +Biological Process GO:0007566 embryo implantation 0.06431097846537792 0.12243145501397242 1.0 4179 +Phenotype MP:0010714 iris coloboma 0.06429053416152186 0.12206090587334659 1.0 4180 +Biological Process GO:0042092 type 2 immune response 0.06428891716397289 0.12203159809860487 1.0 4181 +Phenotype MP:0013507 increased ovary apoptosis 0.06428454428216046 0.12195234044282637 1.0 4182 +Biological Process GO:0032230 positive regulation of synaptic transmission, GABAergic 0.0642485935589523 0.12130074038427438 1.0 4183 +Phenotype MP:0002672 abnormal pharyngeal arch artery morphology 0.0642459131115759 0.12125215778254789 1.0 4184 +Biological Process GO:0002067 glandular epithelial cell differentiation 0.06423745913748102 0.12109893110103376 1.0 4185 +Biological Process GO:0071482 cellular response to light stimulus 0.06423251386258555 0.12100929892888557 1.0 4186 +Phenotype MP:0005517 impaired liver regeneration 0.0641803053411314 0.12006302935206904 1.0 4187 +Phenotype MP:0005584 abnormal enzyme/coenzyme activity 0.06417999491117599 0.12005740286784093 1.0 4188 +Phenotype MP:0010577 abnormal heart right ventricle size 0.06416653945490891 0.11981352526791889 1.0 4189 +Biological Process GO:0042311 vasodilation 0.0641327796090394 0.1192016344467551 1.0 4190 +Phenotype MP:0031574 thick atrioventricular valve 0.06412322512280144 0.11902846119079469 1.0 4191 +Phenotype MP:0020550 multinucleated giant male germ cells 0.06411176290114662 0.11882071059122618 1.0 4192 +Biological Process GO:0032095 regulation of response to food 0.06410510852693019 0.1187001013171388 1.0 4193 +Biological Process GO:0061448 connective tissue development 0.06408111115628179 0.11826515351291667 1.0 4194 +Phenotype MP:0005473 decreased triiodothyronine level 0.06407075129143969 0.11807738292208274 1.0 4195 +Biological Process GO:0050867 positive regulation of cell activation 0.0640315422695289 0.1173667268158091 1.0 4196 +Biological Process GO:0031331 positive regulation of cellular catabolic process 0.06401889672614147 0.11713752873364659 1.0 4197 +Phenotype MP:0010288 increased gland tumor incidence 0.06399916079640977 0.11677981874004532 1.0 4198 +Phenotype MP:0004340 short scapula 0.06395529122710553 0.11598469109374523 1.0 4199 +Phenotype MP:0000966 decreased sensory neuron number 0.06393719824302657 0.11565675917935891 1.0 4200 +Phenotype MP:0003627 abnormal leukocyte tethering or rolling 0.06392824360606975 0.11549445807816566 1.0 4201 +Biological Process GO:0070050 neuron cellular homeostasis 0.06392675293574412 0.11546743996045403 1.0 4202 +Phenotype MP:0001011 abnormal superior cervical ganglion morphology 0.0639262646920371 0.11545859063560904 1.0 4203 +Biological Process GO:0046660 female sex differentiation 0.06392532605602042 0.11544157803533692 1.0 4204 +Biological Process GO:2000378 negative regulation of reactive oxygen species metabolic process 0.06391661878621813 0.11528376041703349 1.0 4205 +Phenotype MP:0003025 increased vasoconstriction 0.06390780638156901 0.11512403724951613 1.0 4206 +Biological Process GO:0071549 cellular response to dexamethasone stimulus 0.06390691630006018 0.11510790469051552 1.0 4207 +Biological Process GO:0071548 response to dexamethasone 0.06390691630006018 0.11510790469051552 1.0 4207 +Phenotype MP:0010585 abnormal conotruncal ridge morphology 0.06388869523874985 0.1147776514005346 1.0 4209 +Phenotype MP:0003918 decreased kidney weight 0.06387929796675329 0.11460732762296466 1.0 4210 +Phenotype MP:0005184 abnormal circulating progesterone level 0.06387342598312351 0.11450089903028168 1.0 4211 +Biological Process GO:0009267 cellular response to starvation 0.06385191730785855 0.11411105835918112 1.0 4212 +Phenotype MP:0001915 intracranial hemorrhage 0.06380612974116706 0.1132811673730006 1.0 4213 +Phenotype MP:0011388 absent heart 0.06377608450587002 0.11273660316589418 1.0 4214 +Biological Process GO:0003073 regulation of systemic arterial blood pressure 0.0637624455524094 0.11248939971404505 1.0 4215 +Phenotype MP:0010289 increased urinary system tumor incidence 0.06376076092261218 0.11245886611759558 1.0 4216 +Biological Process GO:0007416 synapse assembly 0.06375522718962423 0.11235856825382019 1.0 4217 +Phenotype MP:0003659 abnormal lymph circulation 0.06373802823747066 0.11204684049898728 1.0 4218 +Biological Process GO:0010799 regulation of peptidyl-threonine phosphorylation 0.0637052564747691 0.11145285849835998 1.0 4219 +Biological Process GO:0009144 purine nucleoside triphosphate metabolic process 0.06369205435822756 0.11121357263304738 1.0 4220 +Phenotype MP:0002639 micrognathia 0.06368403312770765 0.11106818934698201 1.0 4221 +Phenotype MP:0004391 abnormal respiratory conducting tube morphology 0.06368036378254671 0.11100168315994731 1.0 4222 +Phenotype MP:0003390 lymphedema 0.0636776084970827 0.11095174413203739 1.0 4223 +Phenotype MP:0011287 increased erythropoietin level 0.06367587719112178 0.11092036453894882 1.0 4224 +Phenotype MP:0011285 increased circulating erythropoietin level 0.06367587719112178 0.11092036453894882 1.0 4224 +Biological Process GO:0007612 learning 0.06364267266508361 0.11031853878469682 1.0 4226 +Phenotype MP:0001869 pancreas inflammation 0.06364097925941281 0.1102878461271985 1.0 4227 +Biological Process GO:0051955 regulation of amino acid transport 0.06361233673906275 0.10976870586320131 1.0 4228 +Biological Process GO:0010837 regulation of keratinocyte proliferation 0.06359653400768517 0.10948228434585691 1.0 4229 +Phenotype MP:0013660 abnormal bone marrow hematopoietic cell morphology 0.06358568995053848 0.10928573786108087 1.0 4230 +Phenotype MP:0003419 delayed endochondral bone ossification 0.063525344138459 0.10819198143073955 1.0 4231 +Phenotype MP:0009414 skeletal muscle fiber necrosis 0.06351561956939855 0.10801572545579033 1.0 4232 +Phenotype MP:0004333 abnormal utricular macula morphology 0.06348658755645209 0.10748952571215072 1.0 4233 +Phenotype MP:0008076 abnormal CD4-positive T cell differentiation 0.06347767120446535 0.10732791851879912 1.0 4234 +Phenotype MP:0001770 abnormal iron level 0.06347261858771325 0.10723634079580187 1.0 4235 +Phenotype MP:0003367 increased circulating glucocorticoid level 0.06347096394516116 0.10720635071249873 1.0 4236 +Phenotype MP:0001745 increased circulating corticosterone level 0.06347096394516116 0.10720635071249873 1.0 4236 +Biological Process GO:0045055 regulated exocytosis 0.0634439081985464 0.10671597042233685 1.0 4238 +Phenotype MP:0006226 iris hypoplasia 0.06343677494388478 0.10658668153075426 1.0 4239 +Biological Process GO:0045670 regulation of osteoclast differentiation 0.0633784006318302 0.10552865816548153 1.0 4240 +Biological Process GO:0070664 negative regulation of leukocyte proliferation 0.06337775936053391 0.10551703524452417 1.0 4241 +Phenotype MP:0008607 abnormal circulating interleukin-13 level 0.06337616640198906 0.10548816317218548 1.0 4242 +Biological Process GO:2000316 regulation of T-helper 17 type immune response 0.06337126163509621 0.10539926519992322 1.0 4243 +Phenotype MP:0003703 abnormal vestibulocochlear ganglion morphology 0.06336039325574716 0.10520227787982955 1.0 4244 +Phenotype MP:0031026 increased susceptibility to Herpesvirales infection induced morbidity/mortality 0.0633375674690776 0.10478856481363438 1.0 4245 +Biological Process GO:0072001 renal system development 0.06332699005245368 0.10459685113790212 1.0 4246 +Phenotype MP:0006030 abnormal otic vesicle development 0.06332201833820705 0.10450673975751494 1.0 4247 +Phenotype MP:0001061 abnormal oculomotor nerve morphology 0.0632982830843094 0.10407654276982425 1.0 4248 +Phenotype MP:0004753 abnormal miniature excitatory postsynaptic currents 0.06329292843706358 0.10397949080125322 1.0 4249 +Phenotype MP:0005106 abnormal incus morphology 0.06328461007687047 0.10382872209605921 1.0 4250 +Biological Process GO:0061162 establishment of monopolar cell polarity 0.06328091338399833 0.10376172023693134 1.0 4251 +Biological Process GO:0061339 establishment or maintenance of monopolar cell polarity 0.06328091338399833 0.10376172023693134 1.0 4251 +Phenotype MP:0008029 abnormal paraxial mesoderm morphology 0.06327341788811902 0.1036258657917912 1.0 4253 +Biological Process GO:0014002 astrocyte development 0.06325828544152068 0.1033515930592951 1.0 4254 +Phenotype MP:0003915 increased heart left ventricle weight 0.06324516978898775 0.10311387433778522 1.0 4255 +Phenotype MP:0000960 abnormal sensory ganglion morphology 0.06321026079229519 0.10248115537530002 1.0 4256 +Phenotype MP:0008172 abnormal follicular B cell morphology 0.06320738913368751 0.10242910710617137 1.0 4257 +Phenotype MP:0001154 seminiferous tubule degeneration 0.06320612474618303 0.10240619032179468 1.0 4258 +Biological Process GO:0048617 embryonic foregut morphogenesis 0.06319753489041047 0.10225050081057266 1.0 4259 +Phenotype MP:0011627 decreased skin pigmentation 0.06319512006466066 0.10220673255058922 1.0 4260 +Biological Process GO:0046596 regulation of viral entry into host cell 0.06319228272322386 0.1021553062736922 1.0 4261 +Biological Process GO:0052372 modulation by symbiont of entry into host 0.06319228272322386 0.1021553062736922 1.0 4261 +Phenotype MP:0004875 increased mean systemic arterial blood pressure 0.06319107892351361 0.1021334876316265 1.0 4263 +Phenotype MP:0004139 abnormal gastric parietal cell morphology 0.06318820646205237 0.1020814248109289 1.0 4264 +Phenotype MP:0010540 long stride length 0.06318408884752436 0.10200679382640016 1.0 4265 +Biological Process GO:0050672 negative regulation of lymphocyte proliferation 0.0631669149187597 0.10169551961575851 1.0 4266 +Phenotype MP:0002636 delayed vaginal opening 0.06315361980498957 0.10145454819326699 1.0 4267 +Phenotype MP:0021198 abnormal sleep duration 0.06314816320789429 0.10135564840295709 1.0 4268 +Phenotype MP:0010296 increased hemolymphoid system tumor incidence 0.06314238961987018 0.10125100321201655 1.0 4269 +Biological Process GO:0050854 regulation of antigen receptor-mediated signaling pathway 0.06312046960019013 0.10085370700119282 1.0 4270 +Phenotype MP:0003327 liver cyst 0.06307820980922385 0.10008775628280038 1.0 4271 +Phenotype MP:0009703 decreased birth body size 0.06307620527926183 0.1000514245563687 1.0 4272 +Phenotype MP:0011890 increased circulating ferritin level 0.06305927475534712 0.0997445620125955 1.0 4273 +Phenotype MP:0008842 lipofuscinosis 0.06304689007920583 0.09952009209992971 1.0 4274 +Biological Process GO:0006888 endoplasmic reticulum to Golgi vesicle-mediated transport 0.0630463116114438 0.09950960748115241 1.0 4275 +Biological Process GO:0002704 negative regulation of leukocyte mediated immunity 0.0630320180941577 0.09925054018376848 1.0 4276 +Biological Process GO:0006066 alcohol metabolic process 0.0630177563147577 0.09899204812956727 1.0 4277 +Phenotype MP:0005670 abnormal white adipose tissue physiology 0.06300364180277296 0.09873622526941404 1.0 4278 +Biological Process GO:1900087 positive regulation of G1/S transition of mitotic cell cycle 0.06298503393619159 0.09839896120705462 1.0 4279 +Phenotype MP:0009754 enhanced behavioral response to cocaine 0.06298393242235356 0.09837899647707685 1.0 4280 +Phenotype MP:0012359 increased partial thromboplastin time 0.06297917988003132 0.09829285754636576 1.0 4281 +Phenotype MP:0010792 abnormal stomach mucosa morphology 0.06294195415103476 0.09761814824904937 1.0 4282 +Biological Process GO:0035855 megakaryocyte development 0.06286467990816469 0.0962175672124136 1.0 4283 +Biological Process GO:0006516 glycoprotein catabolic process 0.06285469652927422 0.09603662035824584 1.0 4284 +Phenotype MP:0001317 abnormal pupil morphology 0.06283806269975434 0.09573513534426317 1.0 4285 +Phenotype MP:0005425 increased macrophage cell number 0.06283733415875759 0.09572193067649076 1.0 4286 +Phenotype MP:0013762 abnormal effector T cell number 0.0627821873523704 0.09472240524100019 1.0 4287 +Phenotype MP:0013834 thin hypoglossal nerve 0.06276825905621275 0.09446995750749276 1.0 4288 +Biological Process GO:0002263 cell activation involved in immune response 0.06276686035334067 0.09444460628248218 1.0 4289 +Biological Process GO:0010092 specification of animal organ identity 0.06276247472982766 0.09436511768579052 1.0 4290 +Phenotype MP:0002412 increased susceptibility to bacterial infection 0.06270876917969193 0.09339171474726332 1.0 4291 +Biological Process GO:0106118 regulation of sterol biosynthetic process 0.0626904073233312 0.09305890957362345 1.0 4292 +Biological Process GO:0045540 regulation of cholesterol biosynthetic process 0.0626904073233312 0.09305890957362345 1.0 4292 +Phenotype MP:0020423 abnormal mitochondrial biogenesis 0.0626637744440196 0.09257619367335193 1.0 4294 +Biological Process GO:0006469 negative regulation of protein kinase activity 0.0626556413062812 0.09242878209011715 1.0 4295 +Biological Process GO:1905954 positive regulation of lipid localization 0.06264667127177781 0.09226620191130452 1.0 4296 +Biological Process GO:0032945 negative regulation of mononuclear cell proliferation 0.06263408359278888 0.09203805261042047 1.0 4297 +Biological Process GO:0060914 heart formation 0.06259154163073377 0.09126698759441189 1.0 4298 +Phenotype MP:0020852 abnormal olfactory behavior 0.06257872600335013 0.091034706771987 1.0 4299 +Phenotype MP:0003062 abnormal coping response 0.06256799134193469 0.09084014306414914 1.0 4300 +Phenotype MP:0030795 joint dislocation 0.06256796571271395 0.09083967853937056 1.0 4301 +Phenotype MP:0003705 abnormal hypodermis morphology 0.06255062150282253 0.09052531801551286 1.0 4302 +Phenotype MP:0004533 fused inner hair cell stereocilia 0.06253797201833611 0.09029604850167634 1.0 4303 +Phenotype MP:0000037 abnormal lateral semicircular canal morphology 0.0625373615143171 0.09028498323180051 1.0 4304 +Phenotype MP:0001724 abnormal extraembryonic endoderm formation 0.06252658600889716 0.09008967923410598 1.0 4305 +Phenotype MP:0013835 absent hypoglossal nerve 0.06251291149254823 0.08984183121163263 1.0 4306 +Phenotype MP:0009582 abnormal keratinocyte proliferation 0.06250395385930818 0.08967947580337268 1.0 4307 +Phenotype MP:0009094 abnormal endometrial gland morphology 0.062481226970261705 0.08926755523789087 1.0 4308 +Phenotype MP:0000875 abnormal cerebellar Purkinje cell layer 0.062426567300422064 0.08827685906018921 1.0 4309 +Phenotype MP:0005562 decreased mean corpuscular hemoglobin 0.062398111618424124 0.08776110520598628 1.0 4310 +Phenotype MP:0001492 abnormal pilomotor reflex 0.06239205306165152 0.08765129501037741 1.0 4311 +Biological Process GO:0003174 mitral valve development 0.062386532867236166 0.0875512425306697 1.0 4312 +Biological Process GO:0003183 mitral valve morphogenesis 0.062386532867236166 0.0875512425306697 1.0 4312 +Phenotype MP:0002074 abnormal hair texture 0.062357385545927624 0.0870229528447764 1.0 4314 +Phenotype MP:0004269 abnormal optic cup morphology 0.06235586579034946 0.08699540756236357 1.0 4315 +Biological Process GO:0021532 neural tube patterning 0.062338622993802995 0.08668288513620202 1.0 4316 +Biological Process GO:0065003 protein-containing complex assembly 0.06230191866951185 0.08601762620055453 1.0 4317 +Phenotype MP:0008558 abnormal interferon-beta secretion 0.062301182282560874 0.08600427932634584 1.0 4318 +Biological Process GO:0071675 regulation of mononuclear cell migration 0.06228413356551177 0.08569527455436646 1.0 4319 +Biological Process GO:0055075 potassium ion homeostasis 0.0622788982008422 0.08560038455992945 1.0 4320 +Biological Process GO:0030220 platelet formation 0.062272840324418155 0.08549058669550948 1.0 4321 +Phenotype MP:0020220 decreased tear production 0.06222917686170115 0.08469919469212084 1.0 4322 +Phenotype MP:0004399 abnormal cochlear outer hair cell morphology 0.062192591349600534 0.08403608920495498 1.0 4323 +Phenotype MP:0005102 abnormal iris pigmentation 0.06219200486674392 0.08402545931410423 1.0 4324 +Phenotype MP:0003362 increased circulating gonadotropin level 0.06218209473120351 0.08384583998180314 1.0 4325 +Phenotype MP:0010107 abnormal renal reabsorption 0.0621628287757372 0.08349664818287282 1.0 4326 +Biological Process GO:0007224 smoothened signaling pathway 0.06214456674108115 0.08316565225875035 1.0 4327 +Phenotype MP:0008080 abnormal CD8-positive, alpha-beta T cell differentiation 0.06213549846126776 0.08300129140227579 1.0 4328 +Biological Process GO:0001990 regulation of systemic arterial blood pressure by hormone 0.062117684196633216 0.08267841122510343 1.0 4329 +Phenotype MP:0006390 abnormal cochlear endolymph physiology 0.06210480256621531 0.08244493411016614 1.0 4330 +Phenotype MP:0002630 abnormal endocochlear potential 0.06210480256621531 0.08244493411016614 1.0 4330 +Biological Process GO:1903579 negative regulation of ATP metabolic process 0.062096976361497136 0.08230308562987064 1.0 4332 +Phenotype MP:0008178 decreased germinal center B cell number 0.06207280415141603 0.08186496889399916 1.0 4333 +Phenotype MP:0003642 absent seminal vesicle 0.062060929461056236 0.08164974237716599 1.0 4334 +Biological Process GO:0002021 response to dietary excess 0.06204887605705489 0.08143127670938098 1.0 4335 +Biological Process GO:0055008 cardiac muscle tissue morphogenesis 0.06201780915636035 0.08086819501017906 1.0 4336 +Phenotype MP:0004540 small maxilla 0.06200331813999782 0.08060554807938919 1.0 4337 +Phenotype MP:0005659 decreased susceptibility to diet-induced obesity 0.06198937060046583 0.08035275156336151 1.0 4338 +Phenotype MP:0009904 tongue hypoplasia 0.06194615696089856 0.07956951251948371 1.0 4339 +Phenotype MP:0004028 chromosome breakage 0.06190880949057753 0.07889259668368712 1.0 4340 +Biological Process GO:0016358 dendrite development 0.061896692332684355 0.07867297548867083 1.0 4341 +Phenotype MP:0002921 abnormal post-tetanic potentiation 0.06188090026175652 0.07838674718996179 1.0 4342 +Phenotype MP:0000937 abnormal motor neuron morphology 0.06187834487029287 0.07834043120300099 1.0 4343 +Phenotype MP:0009977 abnormal cerebellar granule cell migration 0.06186639110586889 0.07812377148371026 1.0 4344 +Phenotype MP:0020134 abnormal gallbladder size 0.061808524296288136 0.0770749465047883 1.0 4345 +Phenotype MP:0003819 increased left ventricle diastolic pressure 0.06176696676405802 0.076321724093166 1.0 4346 +Phenotype MP:0000729 abnormal myogenesis 0.06171976787566491 0.07546625316807623 1.0 4347 +Biological Process GO:0045637 regulation of myeloid cell differentiation 0.061700656004244125 0.07511985411332808 1.0 4348 +Biological Process GO:0071320 cellular response to cAMP 0.06169828824175205 0.0750769388659897 1.0 4349 +Phenotype MP:0010050 hypermyelination 0.06169289792795252 0.07497924044787851 1.0 4350 +Phenotype MP:0002637 small uterus 0.061664496034740224 0.07446446150524204 1.0 4351 +Biological Process GO:0043457 regulation of cellular respiration 0.061647382782128 0.07415428703838721 1.0 4352 +Phenotype MP:0009106 abnormal pancreas size 0.0616461266458278 0.0741315198055274 1.0 4353 +Biological Process GO:2000401 regulation of lymphocyte migration 0.06164408893176676 0.07409458662357722 1.0 4354 +Phenotype MP:0005565 increased blood urea nitrogen level 0.061610938471655885 0.07349374080403154 1.0 4355 +Phenotype MP:0005400 abnormal vitamin level 0.06159637744295521 0.07322982491285461 1.0 4356 +Biological Process GO:0072576 liver morphogenesis 0.061594128636458745 0.07318906572043773 1.0 4357 +Biological Process GO:0009994 oocyte differentiation 0.06156109766248241 0.07259038556448141 1.0 4358 +Phenotype MP:0005424 jerky movement 0.06154495119374659 0.07229773387253216 1.0 4359 +Biological Process GO:0030522 intracellular receptor signaling pathway 0.06152607542668398 0.07195561416461997 1.0 4360 +Biological Process GO:0046890 regulation of lipid biosynthetic process 0.06151747511605854 0.07179973516116703 1.0 4361 +Phenotype MP:0000534 abnormal ureter morphology 0.06151121908255286 0.07168634573712121 1.0 4362 +Biological Process GO:0051446 positive regulation of meiotic cell cycle 0.06144419159933179 0.07047148528108677 1.0 4363 +Biological Process GO:0006641 triglyceride metabolic process 0.06143189344676059 0.07024858359176402 1.0 4364 +Phenotype MP:0011384 abnormal progesterone level 0.06141908898854076 0.07001650520832078 1.0 4365 +Biological Process GO:0021610 facial nerve morphogenesis 0.061416161341885545 0.06996344216642002 1.0 4366 +Biological Process GO:0021561 facial nerve development 0.061416161341885545 0.06996344216642002 1.0 4366 +Phenotype MP:0002657 chondrodystrophy 0.061415415538773055 0.06994992462606478 1.0 4368 +Biological Process GO:0001819 positive regulation of cytokine production 0.061399873995172105 0.06966823708777163 1.0 4369 +Biological Process GO:0098698 postsynaptic specialization assembly 0.06139722022570504 0.0696201380181059 1.0 4370 +Phenotype MP:0003132 increased pre-B cell number 0.06138769162678104 0.06944743396481476 1.0 4371 +Biological Process GO:0008610 lipid biosynthetic process 0.061382164157968155 0.0693472496380277 1.0 4372 +Phenotype MP:0004258 abnormal placenta size 0.06137194183717576 0.06916197200708007 1.0 4373 +Phenotype MP:0010405 ostium secundum atrial septal defect 0.06133970409664091 0.06857766905722126 1.0 4374 +Phenotype MP:0014012 abnormal cranial blood vasculature morphology 0.061319721444759945 0.06821548727132873 1.0 4375 +Biological Process GO:0051279 regulation of release of sequestered calcium ion into cytosol 0.061316159893124556 0.06815093482155692 1.0 4376 +Phenotype MP:0002338 abnormal pulmonary ventilation 0.06129673762863885 0.06779890995121382 1.0 4377 +Phenotype MP:0005270 abnormal zygomatic bone morphology 0.061295452506991865 0.06777561736442565 1.0 4378 +Phenotype MP:0002796 impaired skin barrier function 0.06128759308459075 0.06763316681990958 1.0 4379 +Biological Process GO:0007193 adenylate cyclase-inhibiting G protein-coupled receptor signaling pathway 0.06128745919949585 0.06763074017788709 1.0 4380 +Phenotype MP:0008809 increased spleen iron level 0.061270709194909956 0.06732714951280593 1.0 4381 +Phenotype MP:0008170 decreased B-1b cell number 0.06124411159176779 0.0668450729864333 1.0 4382 +Phenotype MP:0020360 abnormal asymmetric synapse morphology 0.06123894962306953 0.06675151328009425 1.0 4383 +Phenotype MP:0011371 decreased kidney apoptosis 0.061214825840573805 0.06631427428504849 1.0 4384 +Biological Process GO:0048145 regulation of fibroblast proliferation 0.06120550628970378 0.06614535918819708 1.0 4385 +Phenotype MP:0009322 increased splenocyte apoptosis 0.061188883543969785 0.0658440750657373 1.0 4386 +Phenotype MP:0008950 ventricular tachycardia 0.061178343204133734 0.06565303339977248 1.0 4387 +Phenotype MP:0003922 abnormal heart right atrium morphology 0.061159040077352955 0.06530316787779782 1.0 4388 +Phenotype MP:0003728 abnormal retina photoreceptor layer morphology 0.06113849085395806 0.06493071709037473 1.0 4389 +Biological Process GO:0042113 B cell activation 0.06113606104381475 0.06488667724109314 1.0 4390 +Biological Process GO:0071478 cellular response to radiation 0.061121852948283206 0.06462915819685422 1.0 4391 +Phenotype MP:0008892 abnormal sperm flagellum morphology 0.061121607933851796 0.06462471735662609 1.0 4392 +Biological Process GO:0060413 atrial septum morphogenesis 0.06110769750254341 0.06437259342013273 1.0 4393 +Biological Process GO:0032107 regulation of response to nutrient levels 0.061104060875917576 0.0643066802503585 1.0 4394 +Phenotype MP:0012574 decreased noradrenaline level 0.06110390815680811 0.06430391224538413 1.0 4395 +Phenotype MP:0002819 abnormal dental pulp cavity morphology 0.061060967900177565 0.0635256282155279 1.0 4396 +Phenotype MP:0004102 abnormal dorsal striatum morphology 0.061036964257229376 0.06309056672705839 1.0 4397 +Biological Process GO:0032387 negative regulation of intracellular transport 0.06103556296327273 0.06306516853913004 1.0 4398 +Biological Process GO:0032098 regulation of appetite 0.061008130070791866 0.06256795255147729 1.0 4399 +Phenotype MP:0005409 darkened coat color 0.0609592398856007 0.0616818271918088 1.0 4400 +Biological Process GO:0046148 pigment biosynthetic process 0.060952258579709984 0.06155529234295969 1.0 4401 +Biological Process GO:0071384 cellular response to corticosteroid stimulus 0.06093559227770895 0.06125321877139795 1.0 4402 +Phenotype MP:0002409 decreased susceptibility to infection 0.06090793120630278 0.060751867083880945 1.0 4403 +Phenotype MP:0010254 nuclear cataract 0.060893074544715486 0.0604825929025491 1.0 4404 +Biological Process GO:0070741 response to interleukin-6 0.06089076564550777 0.060440744541106525 1.0 4405 +Phenotype MP:0003920 abnormal heart right ventricle morphology 0.06086703520423831 0.06001063478139145 1.0 4406 +Biological Process GO:0051092 positive regulation of NF-kappaB transcription factor activity 0.06086617110467152 0.059994973140176225 1.0 4407 +Phenotype MP:0003989 abnormal barrel cortex morphology 0.0608515958252106 0.059730798956665325 1.0 4408 +Phenotype MP:0001469 abnormal contextual conditioning behavior 0.06082137183838743 0.059182994911956124 1.0 4409 +Phenotype MP:0006038 increased mitochondrial fission 0.060799427434941045 0.05878525674997936 1.0 4410 +Phenotype MP:0001661 extended life span 0.06078188887778502 0.0584673737187087 1.0 4411 +Phenotype MP:0020178 abnormal IgG2c level 0.060745198919284094 0.05780237516029192 1.0 4412 +Biological Process GO:0048382 mesendoderm development 0.060723005695541454 0.05740012717750654 1.0 4413 +Biological Process GO:0009649 entrainment of circadian clock 0.060701375232116384 0.05700807911903853 1.0 4414 +Biological Process GO:0006949 syncytium formation 0.06069666353765946 0.0569226805481604 1.0 4415 +Phenotype MP:0009493 abnormal cystic duct morphology 0.060669453455394096 0.05642950295352204 1.0 4416 +Phenotype MP:0008267 abnormal hippocampus CA3 region morphology 0.06066303936335227 0.05631324874840318 1.0 4417 +Phenotype MP:0005472 abnormal triiodothyronine level 0.06064903281061773 0.0560593826292409 1.0 4418 +Phenotype MP:0010150 abnormal mandibular ramus morphology 0.06062639432481298 0.05564906435579511 1.0 4419 +Phenotype MP:0000088 short mandible 0.06061320277325766 0.0554099699788595 1.0 4420 +Phenotype MP:0003710 abnormal physiological neovascularization 0.06061294404804174 0.05540528063325538 1.0 4421 +Phenotype MP:0020040 decreased bone ossification 0.06060743424395443 0.05530541647627824 1.0 4422 +Biological Process GO:0045444 fat cell differentiation 0.0605894874265922 0.054980133805987194 1.0 4423 +Phenotype MP:0009480 distended cecum 0.060580841825407905 0.05482343391972103 1.0 4424 +Phenotype MP:0001939 secondary sex reversal 0.060574172308397345 0.054702550185354124 1.0 4425 +Phenotype MP:0031169 abnormal joint physiology 0.060573206117876754 0.05468503816491037 1.0 4426 +Phenotype MP:0000687 small lymphoid organs 0.0605212927751676 0.05374411864701792 1.0 4427 +Biological Process GO:1903846 positive regulation of cellular response to transforming growth factor beta stimulus 0.06050480770470845 0.05344532986287533 1.0 4428 +Biological Process GO:0030511 positive regulation of transforming growth factor beta receptor signaling pathway 0.06050480770470845 0.05344532986287533 1.0 4428 +Phenotype MP:0003817 abnormal pituitary diverticulum morphology 0.060503354715547575 0.0534189947091478 1.0 4430 +Biological Process GO:0006582 melanin metabolic process 0.06049304254461363 0.053232088561378545 1.0 4431 +Phenotype MP:0010783 abnormal stomach wall morphology 0.06049247810513658 0.053221858202613215 1.0 4432 +Phenotype MP:0000005 increased brown adipose tissue amount 0.060438938725258295 0.0522514670685733 1.0 4433 +Phenotype MP:0012542 abnormal neuropore morphology 0.06043622836832985 0.05220234236187276 1.0 4434 +Biological Process GO:0006887 exocytosis 0.06042765452213128 0.05204694302115148 1.0 4435 +Phenotype MP:0008480 absent eye pigmentation 0.06041071965755285 0.05174000180366939 1.0 4436 +Biological Process GO:0032890 regulation of organic acid transport 0.06037385554504304 0.051071846736780536 1.0 4437 +Biological Process GO:0042471 ear morphogenesis 0.06035800952056625 0.05078464054020114 1.0 4438 +Biological Process GO:0099173 postsynapse organization 0.060345282718460846 0.050553969659144306 1.0 4439 +Biological Process GO:0048839 inner ear development 0.06034404247423841 0.05053149046718822 1.0 4440 +Phenotype MP:0002584 small ectoplacental cone 0.060327877277489006 0.05023849933353489 1.0 4441 +Biological Process GO:0099537 trans-synaptic signaling 0.06031713039810849 0.050043714177390765 1.0 4442 +Biological Process GO:0002437 inflammatory response to antigenic stimulus 0.06030908075109387 0.04989781584773333 1.0 4443 +Biological Process GO:0140962 multicellular organismal-level chemical homeostasis 0.06027748099207375 0.04932507619216336 1.0 4444 +Phenotype MP:0002041 increased pituitary adenoma incidence 0.060276675288321924 0.04931047296404952 1.0 4445 +Phenotype MP:0006072 abnormal retina apoptosis 0.060230151336854165 0.04846723514307645 1.0 4446 +Phenotype MP:0006276 abnormal autonomic nervous system physiology 0.06020529022626431 0.04801663221578016 1.0 4447 +Biological Process GO:0055017 cardiac muscle tissue growth 0.060183291414563134 0.04761790791447591 1.0 4448 +Phenotype MP:0003852 skeletal muscle necrosis 0.06017367358393788 0.047443586553476594 1.0 4449 +Biological Process GO:0007043 cell-cell junction assembly 0.060165794101635806 0.04730077242704964 1.0 4450 +Biological Process GO:0055002 striated muscle cell development 0.06015321983414301 0.04707286620699643 1.0 4451 +Biological Process GO:0071824 protein-DNA complex organization 0.060122010762732936 0.04650720769046514 1.0 4452 +Biological Process GO:0002753 cytoplasmic pattern recognition receptor signaling pathway 0.06008366355369665 0.04581217177954165 1.0 4453 +Biological Process GO:0051607 defense response to virus 0.06007940893335284 0.045735057590514286 1.0 4454 +Biological Process GO:0046822 regulation of nucleocytoplasmic transport 0.06007339870869177 0.04562612340528563 1.0 4455 +Phenotype MP:0003209 abnormal pulmonary elastic fiber morphology 0.06007230620680992 0.04560632201530915 1.0 4456 +Biological Process GO:0051957 positive regulation of amino acid transport 0.06006502659488544 0.04547438042601865 1.0 4457 +Phenotype MP:0004259 small placenta 0.0600624323876503 0.045427360910541156 1.0 4458 +Phenotype MP:0000316 cellular necrosis 0.06005359258755383 0.04526714120572197 1.0 4459 +Biological Process GO:1904262 negative regulation of TORC1 signaling 0.06003458086279789 0.04492255729033283 1.0 4460 +Biological Process GO:0043583 ear development 0.060019534211141035 0.04464983957492418 1.0 4461 +Phenotype MP:0008190 decreased transitional stage B cell number 0.06001680010745758 0.04460028446278052 1.0 4462 +Biological Process GO:0030856 regulation of epithelial cell differentiation 0.060014304042262934 0.04455504375322474 1.0 4463 +Biological Process GO:0070884 regulation of calcineurin-NFAT signaling cascade 0.05999983367812722 0.04429277114013986 1.0 4464 +Biological Process GO:0060343 trabecula formation 0.05998607600814532 0.04404341597379615 1.0 4465 +Phenotype MP:0005394 taste/olfaction phenotype 0.059950982776604045 0.04340735778952362 1.0 4466 +Phenotype MP:0030464 abnormal cranial cartilage morphology 0.05993876477216609 0.043185908769956934 1.0 4467 +Phenotype MP:0003560 osteoarthritis 0.059935523086747766 0.0431271538348711 1.0 4468 +Phenotype MP:0002264 abnormal bronchus morphology 0.05993164210250124 0.04305681172943875 1.0 4469 +Biological Process GO:1902003 regulation of amyloid-beta formation 0.05989499493334838 0.04239258871986262 1.0 4470 +Phenotype MP:0004153 increased renal tubule apoptosis 0.059870640583423174 0.04195117073376621 1.0 4471 +Phenotype MP:0002417 abnormal megakaryocyte morphology 0.05985339151180191 0.04163853457306089 1.0 4472 +Biological Process GO:0008088 axo-dendritic transport 0.05985000906869464 0.04157722843148528 1.0 4473 +Phenotype MP:0005167 abnormal blood-brain barrier function 0.05980520994462557 0.04076525278088547 1.0 4474 +Biological Process GO:0003382 epithelial cell morphogenesis 0.0598021858038692 0.04071044080165185 1.0 4475 +Phenotype MP:0020158 abnormal behavioral response to cocaine 0.05979923154786437 0.040656895470322155 1.0 4476 +Phenotype MP:0009355 increased liver triglyceride level 0.05979728189830835 0.04062155844086928 1.0 4477 +Phenotype MP:0008843 absent subcutaneous adipose tissue 0.059784015530349066 0.0403811080307624 1.0 4478 +Phenotype MP:0011632 dilated mitochondrion 0.05970839797180172 0.03901055408413648 1.0 4479 +Phenotype MP:0009761 abnormal meiotic spindle morphology 0.05967835980256053 0.03846611794795591 1.0 4480 +Biological Process GO:0072073 kidney epithelium development 0.059660193450715715 0.03813685625668986 1.0 4481 +Phenotype MP:0005668 decreased circulating leptin level 0.059657733882115815 0.03809227704101102 1.0 4482 +Biological Process GO:0031670 cellular response to nutrient 0.059592268805945925 0.036905734917270935 1.0 4483 +Phenotype MP:0001716 abnormal placenta labyrinth morphology 0.05958393956272556 0.03675476895926627 1.0 4484 +Biological Process GO:0034340 response to type I interferon 0.059578169748296994 0.0366501921640313 1.0 4485 +Biological Process GO:0035988 chondrocyte proliferation 0.059501537966344165 0.03526125561000774 1.0 4486 +Phenotype MP:0001302 eyelids open at birth 0.059498664425206904 0.03520917322038657 1.0 4487 +Phenotype MP:0001313 increased incidence of corneal inflammation 0.05949471622876479 0.035137612906621506 1.0 4488 +Phenotype MP:0014046 abnormal mitophagy 0.05945980336362233 0.03450482382921364 1.0 4489 +Biological Process GO:0048511 rhythmic process 0.059455703037600394 0.03443050619558755 1.0 4490 +Biological Process GO:0003299 muscle hypertrophy in response to stress 0.059446192938681364 0.03425813745138751 1.0 4491 +Biological Process GO:0014898 cardiac muscle hypertrophy in response to stress 0.059446192938681364 0.03425813745138751 1.0 4491 +Biological Process GO:0014887 cardiac muscle adaptation 0.059446192938681364 0.03425813745138751 1.0 4491 +Biological Process GO:0062012 regulation of small molecule metabolic process 0.05944245996510822 0.03419047801141603 1.0 4494 +Phenotype MP:0003369 abnormal circulating estrogen level 0.059440410526135024 0.0341533323176507 1.0 4495 +Phenotype MP:0009901 abnormal frontonasal prominence morphology 0.05943485686458483 0.03405267325245385 1.0 4496 +Biological Process GO:0010975 regulation of neuron projection development 0.0594326963537134 0.034013514401540774 1.0 4497 +Biological Process GO:0042633 hair cycle 0.059404616201342963 0.03350456695081 1.0 4498 +Biological Process GO:0042303 molting cycle 0.059404616201342963 0.03350456695081 1.0 4498 +Biological Process GO:0001776 leukocyte homeostasis 0.0593731545273245 0.032934330059778104 1.0 4500 +Phenotype MP:0005350 increased susceptibility to autoimmune disorder 0.059370975313449925 0.03289483222047043 1.0 4501 +Biological Process GO:0007614 short-term memory 0.059363083225540625 0.0327517896197967 1.0 4502 +Biological Process GO:0043353 enucleate erythrocyte differentiation 0.05936087632177123 0.032711789906382564 1.0 4503 +Biological Process GO:0043903 regulation of biological process involved in symbiotic interaction 0.05935521145203182 0.03260911521378976 1.0 4504 +Phenotype MP:0010851 decreased effector memory CD8-positive, alpha-beta T cell number 0.059334251281767836 0.03222921609208951 1.0 4505 +Phenotype MP:0006382 abnormal lung epithelium morphology 0.059332879876598854 0.03220435963278457 1.0 4506 +Biological Process GO:0099560 synaptic membrane adhesion 0.05929164893934946 0.03145705669341689 1.0 4507 +Phenotype MP:0001288 abnormal lens induction 0.0592661226787381 0.030994398047784994 1.0 4508 +Biological Process GO:0051149 positive regulation of muscle cell differentiation 0.059247009966775344 0.030647983758372625 1.0 4509 +Phenotype MP:0008727 increased heart right atrium size 0.0592395893189287 0.03051348591966797 1.0 4510 +Phenotype MP:0003987 small vestibular ganglion 0.05923563471868032 0.030441809538125576 1.0 4511 +Biological Process GO:0060536 cartilage morphogenesis 0.05919898617772423 0.029777561664875416 1.0 4512 +Biological Process GO:0097091 synaptic vesicle clustering 0.05919506269745545 0.029706449327077226 1.0 4513 +Biological Process GO:2000269 regulation of fibroblast apoptotic process 0.05917308490278972 0.029308105955565333 1.0 4514 +Biological Process GO:0001706 endoderm formation 0.05917301162601307 0.02930677782784793 1.0 4515 +Phenotype MP:0005341 decreased susceptibility to atherosclerosis 0.05914415239127002 0.02878370965646647 1.0 4516 +Phenotype MP:0002945 abnormal inhibitory postsynaptic currents 0.05913945113680308 0.02869850030843221 1.0 4517 +Biological Process GO:0045475 locomotor rhythm 0.05913119035231784 0.02854877515205364 1.0 4518 +Phenotype MP:0004948 abnormal neuronal precursor proliferation 0.059086993040621816 0.02774770723689058 1.0 4519 +Phenotype MP:0003290 intestinal hypoperistalsis 0.05907973904088304 0.027616229863621795 1.0 4520 +Biological Process GO:0061437 renal system vasculature development 0.05906777472386604 0.027399378880578425 1.0 4521 +Biological Process GO:0061440 kidney vasculature development 0.05906777472386604 0.027399378880578425 1.0 4521 +Biological Process GO:0062009 secondary palate development 0.05904666419209126 0.027016754484933826 1.0 4523 +Phenotype MP:0013295 pancreas atrophy 0.05903141954615321 0.02674044816062652 1.0 4524 +Phenotype MP:0000424 retarded hair growth 0.05903084739544817 0.026730078037312355 1.0 4525 +Phenotype MP:0003231 abnormal placenta vasculature 0.05902080042064728 0.026547978519296415 1.0 4526 +Biological Process GO:0002444 myeloid leukocyte mediated immunity 0.059011978777526286 0.02638808790622363 1.0 4527 +Biological Process GO:0051338 regulation of transferase activity 0.05898890095755205 0.02596980678405001 1.0 4528 +Phenotype MP:0001856 myocarditis 0.05898611206311066 0.02591925859978179 1.0 4529 +Biological Process GO:0030225 macrophage differentiation 0.05888761834911571 0.02413407866238535 1.0 4530 +Biological Process GO:0003176 aortic valve development 0.05887922348397212 0.02398192331943367 1.0 4531 +Biological Process GO:0032535 regulation of cellular component size 0.058871346027894456 0.023839145917940917 1.0 4532 +Phenotype MP:0009146 abnormal pancreatic acinar cell morphology 0.05884567224273951 0.023373813417858897 1.0 4533 +Biological Process GO:0048814 regulation of dendrite morphogenesis 0.0588301717772014 0.02309287041168536 1.0 4534 +Biological Process GO:0061308 cardiac neural crest cell development involved in heart development 0.058820357001452606 0.022914979457571347 1.0 4535 +Biological Process GO:0061307 cardiac neural crest cell differentiation involved in heart development 0.058820357001452606 0.022914979457571347 1.0 4535 +Phenotype MP:0000410 waved hair 0.05881639581072684 0.02284318362487283 1.0 4537 +Biological Process GO:0032815 negative regulation of natural killer cell activation 0.058802966476374174 0.02259977947970884 1.0 4538 +Phenotype MP:0009172 small pancreatic islets 0.05877796184646644 0.022146575291920826 1.0 4539 +Biological Process GO:0010759 positive regulation of macrophage chemotaxis 0.058772162831450925 0.022041469241570317 1.0 4540 +Biological Process GO:0030278 regulation of ossification 0.05877049482567864 0.02201123695242858 1.0 4541 +Biological Process GO:0051282 regulation of sequestering of calcium ion 0.058769466605965826 0.0219926006646077 1.0 4542 +Phenotype MP:0008496 decreased IgG2a level 0.058717713458115606 0.021054584648234717 1.0 4543 +Phenotype MP:0000107 abnormal frontal bone morphology 0.05871527224143147 0.021010338057558097 1.0 4544 +Phenotype MP:0010179 rough coat 0.058695547772892986 0.020652835795916154 1.0 4545 +Biological Process GO:0042060 wound healing 0.05866655878174798 0.020127415814290908 1.0 4546 +Biological Process GO:0098930 axonal transport 0.058646550733455816 0.019764773723248825 1.0 4547 +Phenotype MP:0000968 abnormal sensory neuron innervation pattern 0.0586374717895678 0.01960021958243868 1.0 4548 +Phenotype MP:0031239 increased atretic ovarian follicle number 0.058622097527013195 0.019321563981471626 1.0 4549 +Phenotype MP:0008212 absent mature B cells 0.05861824824430151 0.01925179646036237 1.0 4550 +Phenotype MP:0004361 bowed ulna 0.05860966628196951 0.019096250016257702 1.0 4551 +Phenotype MP:0009342 enlarged gallbladder 0.05857989331295488 0.01855662058402442 1.0 4552 +Phenotype MP:0001168 abnormal prostate gland epithelium morphology 0.05857491816770666 0.01846644701738227 1.0 4553 +Phenotype MP:0010574 dilated aorta 0.05853981744781589 0.017830253108191443 1.0 4554 +Biological Process GO:0043200 response to amino acid 0.05851374060503112 0.017357615264801732 1.0 4555 +Phenotype MP:0002591 decreased mean corpuscular volume 0.05849617032668952 0.017039157293042305 1.0 4556 +Phenotype MP:0008325 abnormal gonadotroph morphology 0.05847917186407514 0.01673106337318735 1.0 4557 +Biological Process GO:2000319 regulation of T-helper 17 cell differentiation 0.05847370462496626 0.016631970698393676 1.0 4558 +Phenotype MP:0000291 enlarged pericardium 0.05847018597892584 0.016568195904415602 1.0 4559 +Phenotype MP:0003855 abnormal forelimb zeugopod morphology 0.058458021970682505 0.016347725555663866 1.0 4560 +Phenotype MP:0005505 thrombocytosis 0.05845250568192606 0.016247743865285144 1.0 4561 +Biological Process GO:0070242 thymocyte apoptotic process 0.058443859331741566 0.016091030403532113 1.0 4562 +Phenotype MP:0002885 abnormal AMPA-mediated synaptic currents 0.05843212261743813 0.015878304676624114 1.0 4563 +Biological Process GO:0042130 negative regulation of T cell proliferation 0.05838375161282039 0.015001589366652862 1.0 4564 +Phenotype MP:0001758 abnormal urine glucose level 0.05837177467216392 0.014784509582531743 1.0 4565 +Biological Process GO:0008206 bile acid metabolic process 0.05837103016313039 0.014771015497112806 1.0 4566 +Biological Process GO:0048538 thymus development 0.058363309794007945 0.014631085266972557 1.0 4567 +Phenotype MP:0003574 abnormal oviduct morphology 0.058354177350131264 0.014465561448986726 1.0 4568 +Phenotype MP:0008079 decreased CD8-positive, alpha-beta T cell number 0.05835150354095697 0.014417099163417752 1.0 4569 +Biological Process GO:0007286 spermatid development 0.05831747431158596 0.013800325817239455 1.0 4570 +Phenotype MP:0013272 abnormal translation 0.058297506885170436 0.013438419990028394 1.0 4571 +Biological Process GO:0032691 negative regulation of interleukin-1 beta production 0.05828350801966686 0.013184693200473377 1.0 4572 +Phenotype MP:0010819 primary atelectasis 0.05827042893403478 0.012947637247125094 1.0 4573 +Phenotype MP:0013404 decreased circulating lactate level 0.05826725691156298 0.01289014493976917 1.0 4574 +Biological Process GO:0060065 uterus development 0.05825575399330585 0.01268165672198099 1.0 4575 +Phenotype MP:0013697 decreased granulocyte monocyte progenitor cell number 0.05823571239596059 0.012318406560696982 1.0 4576 +Phenotype MP:0004182 abnormal spermiation 0.058234057977243125 0.012288420534353953 1.0 4577 +Phenotype MP:0005180 abnormal circulating testosterone level 0.05823063748952051 0.012226424841320808 1.0 4578 +Phenotype MP:0009819 abnormal circulating androgen level 0.05823063748952051 0.012226424841320808 1.0 4578 +Phenotype MP:0005159 azoospermia 0.05816569770405655 0.011049403512274077 1.0 4580 +Biological Process GO:0030031 cell projection assembly 0.058160652726706674 0.010957964251997201 1.0 4581 +Phenotype MP:0005362 abnormal Langerhans cell physiology 0.058125729175756424 0.010324981496344145 1.0 4582 +Biological Process GO:0002366 leukocyte activation involved in immune response 0.05809408832021734 0.009751496974140768 1.0 4583 +Biological Process GO:0043588 skin development 0.05807179455062772 0.009347426616895737 1.0 4584 +Biological Process GO:0031016 pancreas development 0.05805845819082345 0.00910570761783649 1.0 4585 +Biological Process GO:0030857 negative regulation of epithelial cell differentiation 0.058040030101086715 0.008771701976783671 1.0 4586 +Biological Process GO:0042490 mechanoreceptor differentiation 0.058026589210114166 0.008528088370070073 1.0 4587 +Biological Process GO:1901699 cellular response to nitrogen compound 0.05802654132175633 0.008527220402641757 1.0 4588 +Phenotype MP:0002703 abnormal renal tubule morphology 0.057997040676576184 0.00799252678840208 1.0 4589 +Phenotype MP:0004799 increased susceptibility to experimental autoimmune encephalomyelitis 0.05799466274256071 0.007949427184125871 1.0 4590 +Phenotype MP:0012544 abnormal caudal neuropore morphology 0.05798966478055645 0.007858840068095977 1.0 4591 +Phenotype MP:0030039 abnormal facial muscle morphology 0.05797735792567127 0.007635780650978261 1.0 4592 +Phenotype MP:0003361 abnormal circulating gonadotropin level 0.05797718713363287 0.007632685077585264 1.0 4593 +Biological Process GO:0045198 establishment of epithelial cell apical/basal polarity 0.05797603366575643 0.007611778690487809 1.0 4594 +Phenotype MP:0005637 abnormal iron homeostasis 0.0579654149380483 0.007419316259167494 1.0 4595 +Phenotype MP:0005478 decreased circulating thyroxine level 0.05795482288180942 0.007227337243182883 1.0 4596 +Phenotype MP:0008249 abnormal common lymphocyte progenitor cell morphology 0.057907569057236485 0.006370870610224175 1.0 4597 +Phenotype MP:0000467 abnormal esophagus morphology 0.05790137065473977 0.0062585257373157215 1.0 4598 +Biological Process GO:0070234 positive regulation of T cell apoptotic process 0.05789943975224676 0.006223528494834201 1.0 4599 +Phenotype MP:0000631 abnormal neuroendocrine gland morphology 0.05788184901031712 0.005904699624411847 1.0 4600 +Phenotype MP:0008196 abnormal follicular dendritic cell morphology 0.0578808427820261 0.005886461926951614 1.0 4601 +Phenotype MP:0000445 short snout 0.05787609638258817 0.005800434334856839 1.0 4602 +Phenotype MP:0011970 abnormal circulating lactate dehydrogenase level 0.05787107885715326 0.005709492635346516 1.0 4603 +Phenotype MP:0012707 incomplete caudal neuropore closure 0.05785584560009127 0.005433392732263825 1.0 4604 +Phenotype MP:0011289 abnormal nephron number 0.057836325794396015 0.00507959994594617 1.0 4605 +Biological Process GO:0022406 membrane docking 0.057835175927601346 0.005058758827774631 1.0 4606 +Phenotype MP:0013327 abnormal male reproductive gland physiology 0.057804997954053916 0.004511788764985518 1.0 4607 +Biological Process GO:0031641 regulation of myelination 0.057751328055599904 0.003539032006446418 1.0 4608 +Phenotype MP:0012176 abnormal head development 0.05774384429799795 0.0034033903153631207 1.0 4609 +Biological Process GO:0002702 positive regulation of production of molecular mediator of immune response 0.05774319794704541 0.0033916753265969667 1.0 4610 +Biological Process GO:0048596 embryonic camera-type eye morphogenesis 0.057736298996754365 0.0032666331574154796 1.0 4611 +Phenotype MP:0010096 abnormal incisor color 0.05773158505342102 0.003181193826077611 1.0 4612 +Biological Process GO:0140253 cell-cell fusion 0.05771622764449713 0.0029028436939795986 1.0 4613 +Biological Process GO:0000768 syncytium formation by plasma membrane fusion 0.05771622764449713 0.0029028436939795986 1.0 4613 +Biological Process GO:0044706 multi-multicellular organism process 0.05771285051409514 0.002841633844182285 1.0 4615 +Biological Process GO:0048745 smooth muscle tissue development 0.05771284443178992 0.0028415236035506486 1.0 4616 +Phenotype MP:0013614 abnormal areal bone mineral density 0.057688329200436206 0.002397189671991012 1.0 4617 +Biological Process GO:1901016 regulation of potassium ion transmembrane transporter activity 0.05768297566530045 0.002300157860204666 1.0 4618 +Biological Process GO:0048318 axial mesoderm development 0.05765946244952269 0.0018739852714414749 1.0 4619 +Phenotype MP:0008687 increased interleukin-2 secretion 0.05763682816608173 0.0014637431650445618 1.0 4620 +Phenotype MP:0003717 pallor 0.057605070453837226 0.0008881406371572629 1.0 4621 +Phenotype MP:0006378 abnormal spermatogonia morphology 0.057558333844635046 4.1048434969143485e-05 1.0 4622 +Biological Process GO:0002381 immunoglobulin production involved in immunoglobulin-mediated immune response 0.05752277408287587 -0.0006034655212649422 1.0 4623 +Phenotype MP:0031576 abnormal heart atrium size 0.05752087812922635 -0.0006378293225683849 1.0 4624 +Phenotype MP:0030018 increased cardiac muscle cell glucose uptake 0.05751684942331037 -0.0007108488553199809 1.0 4625 +Phenotype MP:0008646 abnormal circulating interleukin-12b level 0.057513233056285085 -0.0007763948236660256 1.0 4626 +Phenotype MP:0002566 abnormal sexual interaction 0.0575102090945967 -0.000831203557326325 1.0 4627 +Phenotype MP:0014143 decreased body fat mass 0.057498596566097016 -0.0010416784400294021 1.0 4628 +Phenotype MP:0020470 shortened circadian behavior period 0.057496351728616224 -0.001082365694787914 1.0 4629 +Phenotype MP:0008743 decreased liver iron level 0.05749570634797718 -0.0010940630968054705 1.0 4630 +Phenotype MP:0000715 decreased thymocyte number 0.057492362305878286 -0.001154673227367351 1.0 4631 +Biological Process GO:0051098 regulation of binding 0.05748837790898065 -0.0012268896675419298 1.0 4632 +Phenotype MP:0002739 abnormal olfactory bulb development 0.05747902747854028 -0.0013963644507653898 1.0 4633 +Biological Process GO:0045932 negative regulation of muscle contraction 0.05745211272491613 -0.0018841892696392847 1.0 4634 +Phenotype MP:0005187 abnormal penis morphology 0.05744451094066416 -0.00202197017143084 1.0 4635 +Phenotype MP:0006402 small molars 0.05743802253317709 -0.002139571329938939 1.0 4636 +Phenotype MP:0005564 increased hemoglobin content 0.05742486363956745 -0.0023780737877858883 1.0 4637 +Biological Process GO:1903725 regulation of phospholipid metabolic process 0.05742442888460664 -0.002385953639222507 1.0 4638 +Phenotype MP:0008897 decreased IgG2c level 0.057423344430057366 -0.002405609172818055 1.0 4639 +Phenotype MP:0002439 abnormal plasma cell morphology 0.05742102723620923 -0.002447607873049409 1.0 4640 +Phenotype MP:0002590 increased mean corpuscular volume 0.05742020934457637 -0.0024624320042018776 1.0 4641 +Phenotype MP:0013556 abnormal holocrine gland physiology 0.057394075747912 -0.0029360985009250305 1.0 4642 +Phenotype MP:0002991 abnormal sebaceous gland physiology 0.057394075747912 -0.0029360985009250305 1.0 4642 +Biological Process GO:0045589 regulation of regulatory T cell differentiation 0.05739038015455067 -0.0030030804316273337 1.0 4644 +Biological Process GO:0050881 musculoskeletal movement 0.05738918531641157 -0.0030247366469108726 1.0 4645 +Biological Process GO:0040015 negative regulation of multicellular organism growth 0.05738039823740293 -0.003184000791984649 1.0 4646 +Phenotype MP:0002018 increased malignant tumor incidence 0.05737034661849738 -0.0033661844835191188 1.0 4647 +Biological Process GO:0033619 membrane protein proteolysis 0.05736607036073427 -0.003443690846678884 1.0 4648 +Biological Process GO:0099536 synaptic signaling 0.05736092505522772 -0.0035369485358197053 1.0 4649 +Phenotype MP:0008973 decreased erythroid progenitor cell number 0.05733086974827584 -0.0040816952897652515 1.0 4650 +Biological Process GO:0010608 post-transcriptional regulation of gene expression 0.05733080672487345 -0.004082837577013464 1.0 4651 +Phenotype MP:0004902 abnormal uterus size 0.057325635463455815 -0.004176565712133527 1.0 4652 +Phenotype MP:0008775 abnormal heart ventricle pressure 0.05728814391390891 -0.004856092956648608 1.0 4653 +Phenotype MP:0005499 abnormal olfactory system morphology 0.05728301613063913 -0.00494903305856202 1.0 4654 +Biological Process GO:0032331 negative regulation of chondrocyte differentiation 0.05726650256880339 -0.005248338243516567 1.0 4655 +Phenotype MP:0006062 abnormal vena cava morphology 0.05726475437037515 -0.005280024009380218 1.0 4656 +Biological Process GO:0014706 striated muscle tissue development 0.05725116502168448 -0.005526328384155938 1.0 4657 +Phenotype MP:0021205 effusion 0.05723666188813037 -0.005789194936751443 1.0 4658 +Biological Process GO:0045616 regulation of keratinocyte differentiation 0.057231645147961085 -0.005880122403470739 1.0 4659 +Phenotype MP:0004986 abnormal osteoblast morphology 0.05722309034226836 -0.0060351766386249435 1.0 4660 +Phenotype MP:0004645 decreased vertebrae number 0.0572045768121503 -0.006370730870429386 1.0 4661 +Biological Process GO:0002066 columnar/cuboidal epithelial cell development 0.05718197671290004 -0.0067803533948353365 1.0 4662 +Phenotype MP:0008519 thin retina outer plexiform layer 0.05718157707631566 -0.006787596732341346 1.0 4663 +Phenotype MP:0003383 abnormal gluconeogenesis 0.05716155263102385 -0.007150536015900758 1.0 4664 +Phenotype MP:0030466 alveolar process atrophy 0.05713221039702221 -0.007682358457491323 1.0 4665 +Phenotype MP:0003119 abnormal digestive system development 0.05710112603066331 -0.008245756718556362 1.0 4666 +Biological Process GO:0006413 translational initiation 0.0570870479168053 -0.008500919869546741 1.0 4667 +Phenotype MP:0012125 decreased bronchoconstrictive response 0.057081122701457154 -0.00860831327705705 1.0 4668 +Phenotype MP:0005592 abnormal vascular smooth muscle morphology 0.057074803243338024 -0.008722852260225735 1.0 4669 +Phenotype MP:0012260 encephalomeningocele 0.05703707257144708 -0.009406713551999705 1.0 4670 +Phenotype MP:0001081 abnormal cranial ganglia morphology 0.057022856524747145 -0.009664376709661849 1.0 4671 +Phenotype MP:0001360 abnormal social investigation 0.05700435748457122 -0.009999668314005672 1.0 4672 +Phenotype MP:0013250 abnormal dental pulp morphology 0.056983923912139356 -0.010370022949597687 1.0 4673 +Phenotype MP:0008858 abnormal hair cycle anagen phase 0.05695275858516402 -0.010934888606522964 1.0 4674 +Biological Process GO:0032941 secretion by tissue 0.05693735593230331 -0.011214058776418543 1.0 4675 +Biological Process GO:0097193 intrinsic apoptotic signaling pathway 0.05693675706598289 -0.01122491311520869 1.0 4676 +Biological Process GO:0030199 collagen fibril organization 0.05693659682327101 -0.011227817484053711 1.0 4677 +Biological Process GO:0042594 response to starvation 0.056908848885995234 -0.011730743599027864 1.0 4678 +Phenotype MP:0005095 decreased T cell proliferation 0.05690383605454463 -0.01182160022096033 1.0 4679 +Biological Process GO:0046597 negative regulation of viral entry into host cell 0.05688428821158986 -0.012175901177303805 1.0 4680 +Biological Process GO:0003413 chondrocyte differentiation involved in endochondral bone morphogenesis 0.056869903100761565 -0.012436628590316332 1.0 4681 +Phenotype MP:0010178 increased number of Howell-Jolly bodies 0.05686809215883948 -0.012469451570138835 1.0 4682 +Phenotype MP:0003896 prolonged PR interval 0.05683192776846846 -0.013124924305605225 1.0 4683 +Biological Process GO:0045664 regulation of neuron differentiation 0.05681878612450009 -0.013363114116966677 1.0 4684 +Biological Process GO:0003180 aortic valve morphogenesis 0.05679301414700799 -0.013830226334587782 1.0 4685 +Phenotype MP:0002578 impaired ability to fire action potentials 0.05678668681949062 -0.01394490794911125 1.0 4686 +Biological Process GO:0060019 radial glial cell differentiation 0.05676283395525161 -0.014377236601994567 1.0 4687 +Phenotype MP:0002836 abnormal chorion morphology 0.056747130503958076 -0.014661858686593181 1.0 4688 +Biological Process GO:0042069 regulation of catecholamine metabolic process 0.05674419613737469 -0.014715043525921035 1.0 4689 +Biological Process GO:1905314 semi-lunar valve development 0.05671687654591795 -0.015210205953940998 1.0 4690 +Biological Process GO:0002275 myeloid cell activation involved in immune response 0.0567057258660183 -0.015412309918120972 1.0 4691 +Phenotype MP:0005489 vascular smooth muscle hyperplasia 0.056663656481583335 -0.016174809554146085 1.0 4692 +Biological Process GO:0001541 ovarian follicle development 0.056656936886713805 -0.016296600940235287 1.0 4693 +Biological Process GO:1900181 negative regulation of protein localization to nucleus 0.05665509960373405 -0.01632990134674597 1.0 4694 +Phenotype MP:0004896 abnormal endometrium morphology 0.056644836521876685 -0.016515917764286726 1.0 4695 +Phenotype MP:0002825 abnormal notochord morphology 0.05664360583019046 -0.0165382238183308 1.0 4696 +Biological Process GO:0035162 embryonic hemopoiesis 0.05663855640443016 -0.016629743705205143 1.0 4697 +Phenotype MP:0004952 increased spleen weight 0.056627017001946056 -0.016838893192706702 1.0 4698 +Biological Process GO:2000050 regulation of non-canonical Wnt signaling pathway 0.056618444577357985 -0.016994266767006615 1.0 4699 +Phenotype MP:0009404 centrally nucleated skeletal muscle fibers 0.056552597119607806 -0.018187739484567093 1.0 4700 +Biological Process GO:0051168 nuclear export 0.0565519688711974 -0.018199126368180957 1.0 4701 +Biological Process GO:0006970 response to osmotic stress 0.05652766750496552 -0.018639584034857062 1.0 4702 +Phenotype MP:0002021 increased incidence of induced tumors 0.05652682638186646 -0.0186548292319404 1.0 4703 +Phenotype MP:0009648 abnormal superovulation 0.05650680196416058 -0.019017768015509983 1.0 4704 +Phenotype MP:0012766 abnormal KLRG1-positive NK cell number 0.05648769245314822 -0.019364124288301882 1.0 4705 +Phenotype MP:0004757 abnormal distal convoluted tubule morphology 0.05648124879092653 -0.0194809144473379 1.0 4706 +Phenotype MP:0002947 increased hemangioma incidence 0.056460911131740676 -0.019849530673486646 1.0 4707 +Phenotype MP:0002273 abnormal pulmonary alveolus epithelial cell morphology 0.05645579345228202 -0.01994228764573449 1.0 4708 +Biological Process GO:2000831 regulation of steroid hormone secretion 0.05643004518265815 -0.020408970162728055 1.0 4709 +Phenotype MP:0012137 abnormal forebrain size 0.0563961683606059 -0.02102298115507953 1.0 4710 +Biological Process GO:0060571 morphogenesis of an epithelial fold 0.05638969199145105 -0.02114036412109303 1.0 4711 +Biological Process GO:0003071 renal system process involved in regulation of systemic arterial blood pressure 0.05636077181512178 -0.02166453684719848 1.0 4712 +Biological Process GO:0099174 regulation of presynapse organization 0.056349400240520264 -0.021870644486070467 1.0 4713 +Phenotype MP:0006316 increased urine sodium level 0.056348943752739133 -0.021878918240764933 1.0 4714 +Phenotype MP:0002705 dilated renal tubule 0.05631647296967324 -0.022467445042422162 1.0 4715 +Phenotype MP:0031309 skin cyst 0.05629031671489115 -0.02294152221324343 1.0 4716 +Phenotype MP:0004500 increased incidence of tumors by ionizing radiation induction 0.05626575893090868 -0.023386627403150975 1.0 4717 +Phenotype MP:0006143 increased systemic arterial diastolic blood pressure 0.05625214723039751 -0.02363333690044581 1.0 4718 +Phenotype MP:0013629 abnormal bone trabecular spacing 0.05624717956398895 -0.023723374914533666 1.0 4719 +Phenotype MP:0008200 decreased follicular dendritic cell number 0.056222658652852364 -0.0241678117910835 1.0 4720 +Phenotype MP:0008898 abnormal acrosome morphology 0.05618108625700835 -0.02492130360289639 1.0 4721 +Biological Process GO:0050773 regulation of dendrite development 0.05617675114765619 -0.02499987663997664 1.0 4722 +Biological Process GO:0006936 muscle contraction 0.05617081288724812 -0.02510750648673072 1.0 4723 +Biological Process GO:0048599 oocyte development 0.05616053012684441 -0.0252938795742021 1.0 4724 +Biological Process GO:0071826 protein-RNA complex organization 0.05615028458874183 -0.025479578014505594 1.0 4725 +Biological Process GO:0061037 negative regulation of cartilage development 0.056144083120588606 -0.0255919784518584 1.0 4726 +Phenotype MP:0008512 disorganized retina inner nuclear layer 0.05611450597641787 -0.0261280585958337 1.0 4727 +Phenotype MP:0000097 short maxilla 0.05611012337562882 -0.02620749240622529 1.0 4728 +Phenotype MP:0030033 abnormal nasal bridge morphology 0.05610853698994822 -0.02623624534664257 1.0 4729 +Biological Process GO:0003081 regulation of systemic arterial blood pressure by renin-angiotensin 0.0561051672523345 -0.02629732120355073 1.0 4730 +Phenotype MP:0005128 decreased adrenocorticotropin level 0.056084298083442286 -0.026675570942599307 1.0 4731 +Phenotype MP:0008255 decreased megakaryocyte cell number 0.05607918347417884 -0.02676827226813967 1.0 4732 +Phenotype MP:0004484 abnormal response of heart to induced stress 0.056057946036890405 -0.027153196802216763 1.0 4733 +Phenotype MP:0000233 abnormal blood flow velocity 0.056042392041823486 -0.027435110020975585 1.0 4734 +Phenotype MP:0003439 abnormal glycerol level 0.056014528300481814 -0.027940135062741248 1.0 4735 +Biological Process GO:1905517 macrophage migration 0.056005624123459885 -0.028101521587158316 1.0 4736 +Phenotype MP:0009289 decreased epididymal fat pad weight 0.05600380481796419 -0.028134496155170666 1.0 4737 +Phenotype MP:0004567 decreased myocardial fiber number 0.05600247206872799 -0.028158651983005073 1.0 4738 +Phenotype MP:0000694 spleen hypoplasia 0.055965447531851065 -0.028829714711205934 1.0 4739 +Biological Process GO:0061005 cell differentiation involved in kidney development 0.05595410488405761 -0.029035298057152947 1.0 4740 +Biological Process GO:0016072 rRNA metabolic process 0.05594060949360258 -0.029279899456678696 1.0 4741 +Biological Process GO:0110110 positive regulation of animal organ morphogenesis 0.05586707648564637 -0.030612671318104898 1.0 4742 +Phenotype MP:0008498 decreased IgG3 level 0.0558195931277774 -0.031473298198641135 1.0 4743 +Phenotype MP:0012460 decreased dentate gyrus size 0.055800160800861365 -0.03182550544863085 1.0 4744 +Phenotype MP:0014068 abnormal muscle glycogen level 0.05579965050260882 -0.03183475450794214 1.0 4745 +Phenotype MP:0005609 abnormal circulating antidiuretic hormone level 0.05579578232397375 -0.03190486451408877 1.0 4746 +Biological Process GO:0030202 heparin metabolic process 0.055788761049646474 -0.032032123783291046 1.0 4747 +Phenotype MP:0003967 abnormal follicle stimulating hormone level 0.055773297467282434 -0.03231239828891051 1.0 4748 +Biological Process GO:0048048 embryonic eye morphogenesis 0.055765744265789396 -0.03244929863738529 1.0 4749 +Biological Process GO:0042475 odontogenesis of dentin-containing tooth 0.055734901810481685 -0.03300831230640172 1.0 4750 +Phenotype MP:0009444 ovarian follicular cyst 0.05572210543887701 -0.03324024412147474 1.0 4751 +Phenotype MP:0002712 increased circulating glucagon level 0.055719599939116016 -0.0332856558307612 1.0 4752 +Biological Process GO:0031348 negative regulation of defense response 0.05571455047651297 -0.03337717638540343 1.0 4753 +Biological Process GO:0014888 striated muscle adaptation 0.05571310495442683 -0.033403376199813664 1.0 4754 +Phenotype MP:0006254 thin cerebral cortex 0.05564162581575882 -0.03469892206885303 1.0 4755 +Phenotype MP:0000914 exencephaly 0.05563411163455623 -0.03483511518194369 1.0 4756 +Biological Process GO:1903034 regulation of response to wounding 0.05562318752245987 -0.03503311264754117 1.0 4757 +Biological Process GO:0032925 regulation of activin receptor signaling pathway 0.05561915931332684 -0.03510612317619579 1.0 4758 +Biological Process GO:1905515 non-motile cilium assembly 0.05561654627883672 -0.03515348393210883 1.0 4759 +Phenotype MP:0005289 increased oxygen consumption 0.055601879343608496 -0.03541931935906675 1.0 4760 +Phenotype MP:0001246 mixed cellular infiltration to dermis 0.05559081279711564 -0.035619898421161235 1.0 4761 +Biological Process GO:0090207 regulation of triglyceride metabolic process 0.055575543603024524 -0.03589664967609991 1.0 4762 +Phenotype MP:0009780 abnormal chondrocyte physiology 0.05555912074222047 -0.03619431092201004 1.0 4763 +Phenotype MP:0010403 atrial septal defect 0.05554382407129177 -0.03647156018943303 1.0 4764 +Phenotype MP:0012730 abnormal internal carotid artery morphology 0.055533025669077585 -0.0366672791871925 1.0 4765 +Phenotype MP:0002553 preference for addictive substance 0.05553139840680066 -0.03669677300818701 1.0 4766 +Biological Process GO:0090263 positive regulation of canonical Wnt signaling pathway 0.055521723665478806 -0.03687212586479831 1.0 4767 +Phenotype MP:0000024 lowered ear position 0.05551055415192985 -0.03707457118530984 1.0 4768 +Biological Process GO:0007626 locomotory behavior 0.055509851736530225 -0.03708730233157557 1.0 4769 +Phenotype MP:0005059 lysosomal protein accumulation 0.05549660697978687 -0.03732736104248123 1.0 4770 +Phenotype MP:0002223 lymphoid hypoplasia 0.05547817063286242 -0.037661516343499575 1.0 4771 +Biological Process GO:0006644 phospholipid metabolic process 0.05546069708192858 -0.03797822114928822 1.0 4772 +Phenotype MP:0003440 decreased glycerol level 0.05544669227133092 -0.038232055692549075 1.0 4773 +Phenotype MP:0004462 small basisphenoid bone 0.05544032159216261 -0.03834752304754637 1.0 4774 +Biological Process GO:0015914 phospholipid transport 0.055436600435120664 -0.03841496831512483 1.0 4775 +Phenotype MP:0000825 dilated lateral ventricle 0.055428723335740004 -0.03855773925155182 1.0 4776 +Biological Process GO:0140058 neuron projection arborization 0.05542281201308441 -0.03866488085663724 1.0 4777 +Biological Process GO:0050728 negative regulation of inflammatory response 0.055353576117603054 -0.039919768367197864 1.0 4778 +Biological Process GO:2000738 positive regulation of stem cell differentiation 0.05534311171073392 -0.04010943376249908 1.0 4779 +Phenotype MP:0003397 increased muscle weight 0.055305743983656064 -0.04078671674818188 1.0 4780 +Phenotype MP:0005600 increased ventricle muscle contractility 0.05529944309673851 -0.04090091913183448 1.0 4781 +Phenotype MP:0010019 liver vascular congestion 0.055270953747622475 -0.04141728319618517 1.0 4782 +Biological Process GO:0002070 epithelial cell maturation 0.05526865424218974 -0.04145896129723294 1.0 4783 +Phenotype MP:0000420 ruffled hair 0.055260767884833806 -0.04160190003271078 1.0 4784 +Biological Process GO:1904861 excitatory synapse assembly 0.0552212240704093 -0.042318624189973945 1.0 4785 +Phenotype MP:0003850 abnormal thymocyte activation 0.055214830894100286 -0.0424344993013915 1.0 4786 +Phenotype MP:0000119 abnormal tooth eruption 0.05521417247775329 -0.04244643297315026 1.0 4787 +Biological Process GO:0003215 cardiac right ventricle morphogenesis 0.05520479876737472 -0.0426163297008505 1.0 4788 +Phenotype MP:0008962 abnormal carbon dioxide production 0.055153632998464985 -0.043543699585021994 1.0 4789 +Biological Process GO:1902895 positive regulation of miRNA transcription 0.055128730326483355 -0.04399505580468338 1.0 4790 +Phenotype MP:0004275 abnormal postnatal subventricular zone morphology 0.055113869779460756 -0.04426440040879528 1.0 4791 +Phenotype MP:0002233 abnormal nose morphology 0.05507295081373975 -0.04500604892321614 1.0 4792 +Phenotype MP:0013509 abnormal CD4-negative NK T cell number 0.055066582618602755 -0.04512147125561569 1.0 4793 +Phenotype MP:0000633 abnormal pituitary gland morphology 0.05505307159457695 -0.04536635601065479 1.0 4794 +Phenotype MP:0011629 decreased mitochondrial number 0.05502368369533872 -0.04589900612602162 1.0 4795 +Biological Process GO:0007157 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules 0.05501157859026018 -0.04611840886605228 1.0 4796 +Biological Process GO:0048813 dendrite morphogenesis 0.0550069161396598 -0.04620291490134429 1.0 4797 +Biological Process GO:2001238 positive regulation of extrinsic apoptotic signaling pathway 0.05500084975620856 -0.04631286695402316 1.0 4798 +Biological Process GO:0009100 glycoprotein metabolic process 0.054993949748669224 -0.04643792828562992 1.0 4799 +Phenotype MP:0006006 increased sensory neuron number 0.054976513045188025 -0.04675396523830858 1.0 4800 +Phenotype MP:0005595 abnormal vascular smooth muscle physiology 0.05496384173319124 -0.04698363037164191 1.0 4801 +Phenotype MP:0001916 intracerebral hemorrhage 0.054941609069094954 -0.04738659320337758 1.0 4802 +Phenotype MP:0002624 abnormal tricuspid valve morphology 0.05493928354320987 -0.04742874292020275 1.0 4803 +Phenotype MP:0010182 decreased susceptibility to weight gain 0.054909390499129684 -0.04797054869028867 1.0 4804 +Biological Process GO:0031076 embryonic camera-type eye development 0.05487532718771759 -0.04858793976701535 1.0 4805 +Biological Process GO:0008306 associative learning 0.054872997978750226 -0.0486301562390103 1.0 4806 +Biological Process GO:0030203 glycosaminoglycan metabolic process 0.054864907571319566 -0.048776793343499214 1.0 4807 +Phenotype MP:0031306 abnormal cartilage physiology 0.05481468100821041 -0.04968714030017342 1.0 4808 +Biological Process GO:0071616 acyl-CoA biosynthetic process 0.054784074209799916 -0.0502418827324991 1.0 4809 +Biological Process GO:0035384 thioester biosynthetic process 0.054784074209799916 -0.0502418827324991 1.0 4809 +Phenotype MP:0020467 abnormal circadian behavior 0.05478336747227375 -0.050254692216490995 1.0 4811 +Phenotype MP:0009785 abnormal susceptibility to infection induced morbidity/mortality 0.05477164863190487 -0.0504670939817158 1.0 4812 +Phenotype MP:0010519 atrioventricular block 0.054734281915920446 -0.05114435864152139 1.0 4813 +Biological Process GO:0008544 epidermis development 0.05473330966387657 -0.0511619805259282 1.0 4814 +Phenotype MP:0006111 abnormal coronary circulation 0.05473239048395251 -0.05117864048820133 1.0 4815 +Biological Process GO:0006639 acylglycerol metabolic process 0.05471544963890196 -0.05148569010060943 1.0 4816 +Biological Process GO:0043030 regulation of macrophage activation 0.054693312066946165 -0.05188692940528403 1.0 4817 +Phenotype MP:0010368 abnormal lymphatic system physiology 0.054685378797725614 -0.05203071840943527 1.0 4818 +Biological Process GO:0070306 lens fiber cell differentiation 0.05467295399163907 -0.052255915669768775 1.0 4819 +Phenotype MP:0004289 abnormal bony labyrinth 0.05467145724448019 -0.052283043928933876 1.0 4820 +Phenotype MP:0030063 abnormal face size 0.0546485715221543 -0.05269784331756395 1.0 4821 +Biological Process GO:0030641 regulation of cellular pH 0.05462259587843077 -0.05316864694710909 1.0 4822 +Phenotype MP:0014267 decreased sex gland secretion 0.0546071340024159 -0.053448890525472526 1.0 4823 +Phenotype MP:0009859 eye opacity 0.054579013149570366 -0.053958575664616565 1.0 4824 +Phenotype MP:0021107 retina fold 0.054569215725625675 -0.054136152120563046 1.0 4825 +Phenotype MP:0020973 abnormal gland development 0.05456799781676047 -0.05415822648839376 1.0 4826 +Biological Process GO:0022038 corpus callosum development 0.05453627671958394 -0.05473316537509921 1.0 4827 +Phenotype MP:0010754 abnormal heart left ventricle pressure 0.05452078114003234 -0.05501401982369148 1.0 4828 +Phenotype MP:0005223 abnormal dorsal-ventral polarity of the somites 0.05451832106320009 -0.05505860825098545 1.0 4829 +Biological Process GO:0080135 regulation of cellular response to stress 0.05449571607434056 -0.05546831939863467 1.0 4830 +Biological Process GO:0072006 nephron development 0.054463948809192586 -0.056044095071090524 1.0 4831 +Biological Process GO:0007605 sensory perception of sound 0.05444875328387755 -0.05631951109339622 1.0 4832 +Phenotype MP:0008770 decreased survivor rate 0.054430026583936586 -0.0566589289879226 1.0 4833 +Biological Process GO:0022605 mammalian oogenesis stage 0.05438836189226037 -0.057414093644237586 1.0 4834 +Biological Process GO:0072676 lymphocyte migration 0.0543839631782288 -0.05749381950410221 1.0 4835 +Phenotype MP:0008414 abnormal spatial reference memory 0.05438348341020138 -0.05750251520885747 1.0 4836 +Phenotype MP:0004595 abnormal mandibular condyloid process morphology 0.05435629209060544 -0.05799535273366134 1.0 4837 +Phenotype MP:0008397 abnormal CD4-positive, CD25-positive, alpha-beta regulatory T cell morphology 0.0543253456653765 -0.05855625083783551 1.0 4838 +Phenotype MP:0001491 unresponsive to tactile stimuli 0.05432464532062253 -0.05856894445404038 1.0 4839 +Phenotype MP:0000166 abnormal chondrocyte morphology 0.05431964902597197 -0.058659501349599824 1.0 4840 +Phenotype MP:0013970 absent connection between subcutaneous lymph vessels and lymph sac 0.05429051266852236 -0.059187592317623654 1.0 4841 +Phenotype MP:0002837 dystrophic cardiac calcinosis 0.054259485304786415 -0.059749957416928914 1.0 4842 +Phenotype MP:0008236 decreased susceptibility to neuronal excitotoxicity 0.05416805943329506 -0.061407034045735116 1.0 4843 +Phenotype MP:0004625 abnormal rib joint morphology 0.054155266166482696 -0.061638909587034704 1.0 4844 +Biological Process GO:0030111 regulation of Wnt signaling pathway 0.054136583107298186 -0.06197753650110444 1.0 4845 +Biological Process GO:0046339 diacylglycerol metabolic process 0.054134947495939834 -0.06200718164762068 1.0 4846 +Phenotype MP:0002270 abnormal pulmonary alveolus morphology 0.05412154937791591 -0.06225002000273033 1.0 4847 +Phenotype MP:0008943 increased sensitivity to induced cell death 0.054119526819605523 -0.062286678489566406 1.0 4848 +Phenotype MP:0001778 abnormal brown adipose tissue amount 0.05409761664413526 -0.06268379627594975 1.0 4849 +Phenotype MP:0005163 cyclopia 0.054089005653675915 -0.0628398688493723 1.0 4850 +Phenotype MP:0000785 telencephalon hypoplasia 0.05406493316200123 -0.06327617820798778 1.0 4851 +Biological Process GO:0021537 telencephalon development 0.0540642634014884 -0.0632883174906066 1.0 4852 +Biological Process GO:0090100 positive regulation of transmembrane receptor protein serine/threonine kinase signaling pathway 0.05404979529788101 -0.06355054913204322 1.0 4853 +Biological Process GO:0090184 positive regulation of kidney development 0.05404702432183528 -0.06360077254877919 1.0 4854 +Biological Process GO:0050670 regulation of lymphocyte proliferation 0.05399104518028275 -0.06461538390171667 1.0 4855 +Phenotype MP:0001004 abnormal retina photoreceptor morphology 0.05398870621690055 -0.06465777717063552 1.0 4856 +Phenotype MP:0009788 increased susceptibility to bacterial infection induced morbidity/mortality 0.053982795303752606 -0.06476491135347225 1.0 4857 +Phenotype MP:0001447 abnormal nest building behavior 0.05394862175794357 -0.06538430040779418 1.0 4858 +Phenotype MP:0013245 abnormal lipid metabolism 0.05390914556184234 -0.06609979899573709 1.0 4859 +Biological Process GO:0072330 monocarboxylic acid biosynthetic process 0.05387862927405307 -0.06665290094017202 1.0 4860 +Biological Process GO:0032728 positive regulation of interferon-beta production 0.05387708525158541 -0.06668088605536725 1.0 4861 +Phenotype MP:0001599 abnormal blood volume 0.05387158589479468 -0.06678056085706978 1.0 4862 +Phenotype MP:0012734 abnormal response to radiation 0.05378518507620844 -0.06834655935239195 1.0 4863 +Biological Process GO:0060135 maternal process involved in female pregnancy 0.05376163539333012 -0.06877339290045556 1.0 4864 +Biological Process GO:0046461 neutral lipid catabolic process 0.0537449739164374 -0.06907537901784173 1.0 4865 +Biological Process GO:0046464 acylglycerol catabolic process 0.0537449739164374 -0.06907537901784173 1.0 4865 +Biological Process GO:0070663 regulation of leukocyte proliferation 0.053694007522104625 -0.06999913527551486 1.0 4867 +Phenotype MP:0004678 split xiphoid process 0.05363573288927126 -0.07105535197375615 1.0 4868 +Biological Process GO:0001893 maternal placenta development 0.05362677875473487 -0.07121764396867399 1.0 4869 +Phenotype MP:0008738 abnormal liver iron level 0.053614269862664266 -0.07144436527156493 1.0 4870 +Biological Process GO:0032648 regulation of interferon-beta production 0.05359341060540357 -0.07182243536416695 1.0 4871 +Biological Process GO:0051784 negative regulation of nuclear division 0.05357071646205669 -0.07223376242003698 1.0 4872 +Biological Process GO:0030595 leukocyte chemotaxis 0.05356660196740637 -0.07230833685737267 1.0 4873 +Phenotype MP:0003211 abnormal aorta elastic fiber morphology 0.053519958947124247 -0.07315373277808583 1.0 4874 +Phenotype MP:0003706 abnormal cell nucleus count 0.05351656865692345 -0.07321518114674751 1.0 4875 +Biological Process GO:0009060 aerobic respiration 0.05351364978223583 -0.07326808519839467 1.0 4876 +Phenotype MP:0002922 decreased post-tetanic potentiation 0.05349745611286927 -0.0735615923928487 1.0 4877 +Biological Process GO:0032892 positive regulation of organic acid transport 0.053496702694369236 -0.0735752479606628 1.0 4878 +Phenotype MP:0010544 interrupted aorta 0.05348712409679457 -0.07374885823004065 1.0 4879 +Biological Process GO:0031579 membrane raft organization 0.0534737769556507 -0.07399077263884098 1.0 4880 +Phenotype MP:0005150 cachexia 0.05345218241970606 -0.0743821695185213 1.0 4881 +Biological Process GO:2000630 positive regulation of miRNA metabolic process 0.0534451420998594 -0.0745097739841602 1.0 4882 +Biological Process GO:0048515 spermatid differentiation 0.05344247524014567 -0.07455811031207088 1.0 4883 +Phenotype MP:0000023 abnormal ear position 0.05342792542479469 -0.07482182296340546 1.0 4884 +Phenotype MP:0004249 abnormal crista ampullaris morphology 0.0534119377529233 -0.07511159649222111 1.0 4885 +Phenotype MP:0012773 abnormal CD4-positive, CD25-positive, alpha-beta regulatory T cell number 0.05340916758611991 -0.07516180524159274 1.0 4886 +Biological Process GO:0046942 carboxylic acid transport 0.05340507624849489 -0.07523595996222476 1.0 4887 +Biological Process GO:0019432 triglyceride biosynthetic process 0.053368440608717704 -0.0758999740040474 1.0 4888 +Phenotype MP:0003670 dilated renal glomerular capsule 0.05335708454722898 -0.07610580047068408 1.0 4889 +Phenotype MP:0000757 herniated abdominal wall 0.0533440984825031 -0.07634117043770114 1.0 4890 +Phenotype MP:0005471 decreased thyroxine level 0.053342293667074436 -0.07637388237598908 1.0 4891 +Biological Process GO:0030219 megakaryocyte differentiation 0.053299166975965484 -0.07715554549550492 1.0 4892 +Biological Process GO:0097485 neuron projection guidance 0.05326833133805031 -0.077714435600571 1.0 4893 +Phenotype MP:0001847 brain inflammation 0.05326229080315126 -0.07782391915313037 1.0 4894 +Biological Process GO:0010758 regulation of macrophage chemotaxis 0.053227895171478856 -0.07844733347172127 1.0 4895 +Biological Process GO:0021988 olfactory lobe development 0.053214923602578734 -0.07868244070463809 1.0 4896 +Biological Process GO:0006325 chromatin organization 0.05321036432437387 -0.07876507675977504 1.0 4897 +Biological Process GO:0140014 mitotic nuclear division 0.05320341757891256 -0.07889098520737778 1.0 4898 +Phenotype MP:0010488 abnormal left subclavian artery morphology 0.053198517957734226 -0.0789797899145376 1.0 4899 +Biological Process GO:0000423 mitophagy 0.05319133492103456 -0.07910998109614419 1.0 4900 +Phenotype MP:0009974 decreased cerebral cortex pyramidal cell number 0.053190274418848826 -0.07912920249768089 1.0 4901 +Biological Process GO:0021683 cerebellar granular layer morphogenesis 0.053188792975052634 -0.0791560533862917 1.0 4902 +Biological Process GO:0043011 myeloid dendritic cell differentiation 0.05315699319752909 -0.07973241833940548 1.0 4903 +Phenotype MP:0005181 decreased circulating estradiol level 0.05315178341712734 -0.07982684462382723 1.0 4904 +Biological Process GO:0007411 axon guidance 0.053104124570057865 -0.0806906522129312 1.0 4905 +Biological Process GO:0042552 myelination 0.05309856507537536 -0.08079141700254792 1.0 4906 +Phenotype MP:0008986 abnormal liver parenchyma morphology 0.053091977515775546 -0.0809108152743462 1.0 4907 +Biological Process GO:0050795 regulation of behavior 0.05308387160148842 -0.08105773343767562 1.0 4908 +Biological Process GO:0048545 response to steroid hormone 0.05306991626751212 -0.08131067122653225 1.0 4909 +Biological Process GO:0000041 transition metal ion transport 0.05304031322656655 -0.08184722074465342 1.0 4910 +Phenotype MP:0004754 abnormal kidney collecting duct morphology 0.05303702807047661 -0.08190676357744044 1.0 4911 +Phenotype MP:0001756 abnormal urination 0.05300540459964176 -0.0824799330051677 1.0 4912 +Biological Process GO:0015718 monocarboxylic acid transport 0.052989837611802204 -0.08276208171547313 1.0 4913 +Phenotype MP:0002918 abnormal paired-pulse facilitation 0.05298059865237936 -0.08292953610758715 1.0 4914 +Phenotype MP:0008869 anovulation 0.052971365202209464 -0.08309689064553358 1.0 4915 +Phenotype MP:0011465 abnormal urine urea nitrogen level 0.05294544278115976 -0.08356672962418202 1.0 4916 +Phenotype MP:0009957 abnormal cerebellum vermis lobule morphology 0.052908912742994474 -0.0842288296567621 1.0 4917 +Phenotype MP:0030570 abnormal piliary canal morphology 0.052892654257279625 -0.0845235116352697 1.0 4918 +Phenotype MP:0010281 increased nervous system tumor incidence 0.05286939478502517 -0.08494508517066518 1.0 4919 +Phenotype MP:0010425 abnormal heart and great vessel attachment 0.0528651055660283 -0.08502282645373527 1.0 4920 +Phenotype MP:0004984 increased osteoclast cell number 0.05284431463467154 -0.08539965815225138 1.0 4921 +Phenotype MP:0001326 retina degeneration 0.052824871113619 -0.08575206829384807 1.0 4922 +Phenotype MP:0014018 embryo tumor 0.05281650427505358 -0.08590371566037128 1.0 4923 +Biological Process GO:0070936 protein K48-linked ubiquitination 0.052808368333122524 -0.08605117806906756 1.0 4924 +Biological Process GO:0045980 negative regulation of nucleotide metabolic process 0.052796351970151756 -0.0862689723751792 1.0 4925 +Biological Process GO:1900543 negative regulation of purine nucleotide metabolic process 0.052796351970151756 -0.0862689723751792 1.0 4925 +Phenotype MP:0008706 decreased interleukin-6 secretion 0.05276716033709705 -0.08679806520309072 1.0 4927 +Biological Process GO:0031338 regulation of vesicle fusion 0.052761942524068184 -0.08689263707735975 1.0 4928 +Biological Process GO:0071599 otic vesicle development 0.052714272090763514 -0.08775665466478522 1.0 4929 +Phenotype MP:0008273 abnormal intramembranous bone ossification 0.0527008758882509 -0.08799945830161475 1.0 4930 +Biological Process GO:0042063 gliogenesis 0.052697278866149944 -0.08806465364686616 1.0 4931 +Phenotype MP:0000762 abnormal tongue morphology 0.05268588453130518 -0.08827117381084218 1.0 4932 +Phenotype MP:0005116 abnormal circulating pituitary hormone level 0.052618278957973774 -0.08949651204078853 1.0 4933 +Phenotype MP:0000034 abnormal inner ear vestibule morphology 0.052568186441915854 -0.09040442942001226 1.0 4934 +Phenotype MP:0009677 abnormal spinal cord dorsal column morphology 0.05256164793286844 -0.09052293865982557 1.0 4935 +Biological Process GO:0034763 negative regulation of transmembrane transport 0.05254657081516312 -0.09079620856660034 1.0 4936 +Biological Process GO:0017158 regulation of calcium ion-dependent exocytosis 0.05252843565916543 -0.09112490483903747 1.0 4937 +Biological Process GO:0050727 regulation of inflammatory response 0.05251217649375206 -0.09141959913695219 1.0 4938 +Biological Process GO:0019748 secondary metabolic process 0.05250315174285114 -0.09158317104012106 1.0 4939 +Phenotype MP:0020934 increased susceptibility to Retroviridae infection 0.052499072562492755 -0.09165710541259466 1.0 4940 +Biological Process GO:0141091 transforming growth factor beta receptor superfamily signaling pathway 0.05248365400953481 -0.0919365637687454 1.0 4941 +Phenotype MP:0001117 absent gametes 0.0524503251372338 -0.092540643275493 1.0 4942 +Biological Process GO:0006783 heme biosynthetic process 0.052424449471764833 -0.09300963481808369 1.0 4943 +Biological Process GO:0048593 camera-type eye morphogenesis 0.05242055251190392 -0.09308026647850523 1.0 4944 +Phenotype MP:0009399 increased skeletal muscle fiber size 0.05239952764511224 -0.0934613382125334 1.0 4945 +Phenotype MP:0009887 abnormal palatal shelf fusion at midline 0.05238647440483868 -0.0936979257236468 1.0 4946 +Biological Process GO:0043648 dicarboxylic acid metabolic process 0.05237219045554742 -0.0939568196029339 1.0 4947 +Phenotype MP:0012543 abnormal rostral neuropore morphology 0.052369835018744926 -0.09399951144947986 1.0 4948 +Phenotype MP:0000928 incomplete rostral neuropore closure 0.052369835018744926 -0.09399951144947986 1.0 4948 +Phenotype MP:0004152 abnormal circulating iron level 0.0523641910273972 -0.09410180772517229 1.0 4950 +Biological Process GO:1902115 regulation of organelle assembly 0.05233754311584138 -0.09458479608202729 1.0 4951 +Phenotype MP:0008535 enlarged lateral ventricles 0.052324535670720596 -0.09482055356465807 1.0 4952 +Phenotype MP:0000154 rib fusion 0.05230547620415027 -0.09516600279140333 1.0 4953 +Biological Process GO:0035282 segmentation 0.05229043857203153 -0.09543855702938954 1.0 4954 +Phenotype MP:0000157 abnormal sternum morphology 0.05227276727358254 -0.09575884597148883 1.0 4955 +Phenotype MP:0003694 failure of blastocyst to hatch from the zona pellucida 0.052251148792236135 -0.09615067685704733 1.0 4956 +Phenotype MP:0009328 delayed heart looping 0.05223112901521887 -0.09651353152901355 1.0 4957 +Phenotype MP:0009979 abnormal cerebellum deep nucleus morphology 0.0522301128327981 -0.09653194964319269 1.0 4958 +Phenotype MP:0010426 abnormal heart and great artery attachment 0.05222521755238285 -0.09662067567484263 1.0 4959 +Phenotype MP:0012253 abnormal intersomitic vessel morphology 0.052220270065421626 -0.0967103479402642 1.0 4960 +Phenotype MP:0003055 abnormal long bone epiphyseal plate morphology 0.052186867483221655 -0.09731576342498924 1.0 4961 +Phenotype MP:0009331 absent primitive node 0.052178637046097376 -0.09746493854119025 1.0 4962 +Biological Process GO:0015849 organic acid transport 0.05216948881144923 -0.09763074856392233 1.0 4963 +Phenotype MP:0003156 abnormal leukocyte migration 0.05214066211221002 -0.09815322703545022 1.0 4964 +Phenotype MP:0005130 decreased follicle stimulating hormone level 0.052124713173112514 -0.09844229854006514 1.0 4965 +Phenotype MP:0004045 abnormal cell cycle checkpoint function 0.052122353953085954 -0.09848505895683178 1.0 4966 +Phenotype MP:0004870 small premaxilla 0.052017367270353 -0.10038792272454677 1.0 4967 +Phenotype MP:0031345 developmental cataract 0.05201699032323237 -0.10039475481981369 1.0 4968 +Biological Process GO:0060041 retina development in camera-type eye 0.052011847964060665 -0.10048795910719274 1.0 4969 +Phenotype MP:0009546 absent gastric milk in neonates 0.05199619276991596 -0.10077170654009596 1.0 4970 +Biological Process GO:0043122 regulation of canonical NF-kappaB signal transduction 0.05199487604159592 -0.1007955719918553 1.0 4971 +Phenotype MP:0004760 increased mitotic index 0.05195003764101169 -0.1016082595218636 1.0 4972 +Phenotype MP:0003304 large intestinal inflammation 0.051936874161446656 -0.10184684509928468 1.0 4973 +Biological Process GO:0032469 endoplasmic reticulum calcium ion homeostasis 0.05192893217442396 -0.10199079211195099 1.0 4974 +Phenotype MP:0010412 atrioventricular septal defect 0.051927866952714896 -0.10201009905395536 1.0 4975 +Phenotype MP:0009885 abnormal palatal shelf elevation 0.05190581109667236 -0.10240985727315763 1.0 4976 +Phenotype MP:0002652 thin myocardium 0.051896308393580615 -0.10258209196938697 1.0 4977 +Phenotype MP:0006100 abnormal tegmentum morphology 0.051894895752512604 -0.10260769582156258 1.0 4978 +Biological Process GO:0048709 oligodendrocyte differentiation 0.05189440910017018 -0.10261651630322527 1.0 4979 +Biological Process GO:0014743 regulation of muscle hypertrophy 0.05187816806125012 -0.10291088206187719 1.0 4980 +Phenotype MP:0020222 abnormal alertness 0.05187640804479432 -0.10294278202725508 1.0 4981 +Phenotype MP:0020224 decreased alertness 0.05187640804479432 -0.10294278202725508 1.0 4981 +Phenotype MP:0005202 lethargy 0.05187640804479432 -0.10294278202725508 1.0 4981 +Phenotype MP:0002944 increased lactate dehydrogenase level 0.05186293502049477 -0.10318697804444296 1.0 4984 +Biological Process GO:0033003 regulation of mast cell activation 0.05185679840830382 -0.1032982029797463 1.0 4985 +Phenotype MP:0001183 overexpanded pulmonary alveolus 0.05184969799004513 -0.10342689671773635 1.0 4986 +Biological Process GO:0031128 developmental induction 0.05184059448868272 -0.10359189595812504 1.0 4987 +Phenotype MP:0020149 abnormal mortality induced by ionizing radiation 0.051833396367879425 -0.10372236053625702 1.0 4988 +Biological Process GO:0009953 dorsal/ventral pattern formation 0.05181286659315054 -0.1040944588202871 1.0 4989 +Biological Process GO:0042491 inner ear auditory receptor cell differentiation 0.05180765538421028 -0.10418891099669918 1.0 4990 +Phenotype MP:0005208 abnormal iris stroma morphology 0.05178702916526956 -0.10456275731382772 1.0 4991 +Phenotype MP:0009278 abnormal bone marrow cell physiology 0.05176449235417524 -0.1049712327523774 1.0 4992 +Biological Process GO:0061024 membrane organization 0.051750988529533415 -0.10521598701994356 1.0 4993 +Biological Process GO:0019217 regulation of fatty acid metabolic process 0.05169776407250337 -0.10618067023692249 1.0 4994 +Biological Process GO:0050770 regulation of axonogenesis 0.051692291003891166 -0.10627986857036134 1.0 4995 +Phenotype MP:0008797 facial cleft 0.05168642850967886 -0.1063861251691474 1.0 4996 +Phenotype MP:0011082 abnormal gastrointestinal motility 0.05166145161348745 -0.10683882668857252 1.0 4997 +Phenotype MP:0009082 uterus cyst 0.051653275420890155 -0.1069870186329816 1.0 4998 +Phenotype MP:0008219 abnormal dorsal telencephalic commissure morphology 0.051619634715623364 -0.10759675005325499 1.0 4999 +Phenotype MP:0003991 arteriosclerosis 0.051543743405848885 -0.10897226568909629 1.0 5000 +Phenotype MP:0006341 small first pharyngeal arch 0.05152269311252433 -0.1093537982742238 1.0 5001 +Phenotype MP:0011495 abnormal head shape 0.05150668882485421 -0.10964387296124892 1.0 5002 +Phenotype MP:0002053 decreased incidence of induced tumors 0.05150545903957482 -0.10966616258684048 1.0 5003 +Phenotype MP:0000780 abnormal corpus callosum morphology 0.051504919203972044 -0.10967594700503813 1.0 5004 +Biological Process GO:0048592 eye morphogenesis 0.051475722883723596 -0.11020512478744973 1.0 5005 +Biological Process GO:0070588 calcium ion transmembrane transport 0.051454484111862486 -0.11059007351040413 1.0 5006 +Phenotype MP:0013916 decreased intestine length 0.05145324219590808 -0.11061258300218609 1.0 5007 +Phenotype MP:0004800 decreased susceptibility to experimental autoimmune encephalomyelitis 0.051448409807922646 -0.1107001691204408 1.0 5008 +Biological Process GO:0048806 genitalia development 0.051429187981737456 -0.11104856108449732 1.0 5009 +Biological Process GO:0031346 positive regulation of cell projection organization 0.05140423638124758 -0.11150080412411648 1.0 5010 +Phenotype MP:0002199 abnormal brain commissure morphology 0.051398288773846 -0.11160860338336011 1.0 5011 +Biological Process GO:0060009 Sertoli cell development 0.05139450470189466 -0.11167718897177181 1.0 5012 +Biological Process GO:0035383 thioester metabolic process 0.05139031013534634 -0.11175321469711426 1.0 5013 +Biological Process GO:0006637 acyl-CoA metabolic process 0.05139031013534634 -0.11175321469711426 1.0 5013 +Biological Process GO:0071385 cellular response to glucocorticoid stimulus 0.05136716457659041 -0.11217272357189421 1.0 5015 +Biological Process GO:0140056 organelle localization by membrane tethering 0.0513626567612383 -0.11225442687255846 1.0 5016 +Phenotype MP:0004157 interrupted aortic arch 0.05135425792080073 -0.1124066542669617 1.0 5017 +Biological Process GO:0051155 positive regulation of striated muscle cell differentiation 0.0513465442402643 -0.11254646326774542 1.0 5018 +Phenotype MP:0001798 impaired macrophage phagocytosis 0.05134099536290804 -0.11264703562033217 1.0 5019 +Phenotype MP:0004905 decreased uterus weight 0.05133069744572427 -0.1128336834215753 1.0 5020 +Phenotype MP:0030121 small temporal bone squamous part 0.05132180710437373 -0.11299481917706533 1.0 5021 +Biological Process GO:0006109 regulation of carbohydrate metabolic process 0.051314812802706 -0.11312158957191477 1.0 5022 +Phenotype MP:0000920 abnormal myelination 0.051313457855843736 -0.11314614772752332 1.0 5023 +Biological Process GO:0035987 endodermal cell differentiation 0.051302707378951706 -0.11334099808788317 1.0 5024 +Biological Process GO:0007156 homophilic cell adhesion via plasma membrane adhesion molecules 0.05129396736723457 -0.1134994091472005 1.0 5025 +Biological Process GO:0051052 regulation of DNA metabolic process 0.05128943651668505 -0.1135815299564611 1.0 5026 +Phenotype MP:0009593 absent chorion 0.05128850718103517 -0.11359837398934383 1.0 5027 +Phenotype MP:0005083 abnormal biliary tract morphology 0.051281729886879845 -0.11372121116407499 1.0 5028 +Biological Process GO:0042771 intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator 0.051277007018111775 -0.11380681226722912 1.0 5029 +Phenotype MP:0013563 abnormal secretory circumventricular organ morphology 0.051276067838046835 -0.11382383472827289 1.0 5030 +Phenotype MP:0030279 thin neurocranium 0.05127181132388203 -0.11390098324244749 1.0 5031 +Phenotype MP:0012076 abnormal agouti pigmentation 0.05125495979549577 -0.11420641400720843 1.0 5032 +Phenotype MP:0005639 hemosiderosis 0.051245959204844094 -0.11436954801042931 1.0 5033 +Biological Process GO:0030041 actin filament polymerization 0.051239749592355666 -0.11448209606231734 1.0 5034 +Phenotype MP:0000552 abnormal radius morphology 0.05123078877933096 -0.1146445091035728 1.0 5035 +Biological Process GO:0050680 negative regulation of epithelial cell proliferation 0.05122740362718625 -0.1147058643459396 1.0 5036 +Phenotype MP:0004906 enlarged uterus 0.05122281298557785 -0.11478906885683378 1.0 5037 +Phenotype MP:0001129 impaired ovarian folliculogenesis 0.05120105519359375 -0.11518342472135171 1.0 5038 +Biological Process GO:0060055 angiogenesis involved in wound healing 0.05119600175369854 -0.11527501736366214 1.0 5039 +Phenotype MP:0011951 increased cardiac stroke volume 0.05119251130782332 -0.11533828103497959 1.0 5040 +Phenotype MP:0000889 abnormal cerebellar molecular layer 0.05117129148223121 -0.11572288636039184 1.0 5041 +Phenotype MP:0004596 abnormal mandibular angle morphology 0.05116733147307451 -0.11579466077737453 1.0 5042 +Phenotype MP:0009332 abnormal splenocyte morphology 0.051163709608555985 -0.11586030638674574 1.0 5043 +Biological Process GO:0034198 cellular response to amino acid starvation 0.05115060341358546 -0.1160978536917259 1.0 5044 +Biological Process GO:1990928 response to amino acid starvation 0.05115060341358546 -0.1160978536917259 1.0 5044 +Phenotype MP:0009652 abnormal palatal rugae morphology 0.05114848750297207 -0.11613620417139749 1.0 5046 +Phenotype MP:0009544 abnormal thymus epithelium morphology 0.05112767987389022 -0.11651333851302274 1.0 5047 +Phenotype MP:0005132 decreased luteinizing hormone level 0.05111769266648325 -0.11669435475832803 1.0 5048 +Phenotype MP:0003115 abnormal respiratory system development 0.051116032550160506 -0.11672444405268907 1.0 5049 +Phenotype MP:0009293 decreased inguinal fat pad weight 0.051091263863126346 -0.11717337182051901 1.0 5050 +Biological Process GO:0072012 glomerulus vasculature development 0.051090154630978546 -0.11719347644340154 1.0 5051 +Biological Process GO:0071214 cellular response to abiotic stimulus 0.051062371321127675 -0.11769704367960897 1.0 5052 +Biological Process GO:0104004 cellular response to environmental stimulus 0.051062371321127675 -0.11769704367960897 1.0 5052 +Phenotype MP:0013208 abnormal cilium physiology 0.051042842385661924 -0.11805100194129008 1.0 5054 +Phenotype MP:0006083 abnormal blood vessel elastic tissue morphology 0.05103443506473382 -0.11820338304298025 1.0 5055 +Biological Process GO:0120031 plasma membrane bounded cell projection assembly 0.05101998009608322 -0.11846537661580937 1.0 5056 +Biological Process GO:0046545 development of primary female sexual characteristics 0.051019091993133925 -0.11848147331379257 1.0 5057 +Biological Process GO:0060419 heart growth 0.051010000774589725 -0.1186462499304244 1.0 5058 +Biological Process GO:0060251 regulation of glial cell proliferation 0.050994115305540655 -0.11893417105241587 1.0 5059 +Phenotype MP:0002009 preneoplasia 0.050948539996567344 -0.11976021490760005 1.0 5060 +Phenotype MP:0009770 abnormal optic chiasm morphology 0.05094733743090374 -0.11978201118280377 1.0 5061 +Phenotype MP:0008450 retina photoreceptor degeneration 0.050925582752357146 -0.12017631061685574 1.0 5062 +Phenotype MP:0010320 increased pituitary gland tumor incidence 0.05092399372676781 -0.12020511140511957 1.0 5063 +Phenotype MP:0001715 placental labyrinth hypoplasia 0.05091894179677048 -0.1202966766808166 1.0 5064 +Biological Process GO:0060026 convergent extension 0.05088262664233989 -0.12095488198634771 1.0 5065 +Biological Process GO:0006338 chromatin remodeling 0.05084434040296515 -0.12164881283368735 1.0 5066 +Biological Process GO:0090382 phagosome maturation 0.05083756433388453 -0.12177162780417114 1.0 5067 +Phenotype MP:0011284 abnormal circulating erythropoietin level 0.05082457311650923 -0.12200709116198434 1.0 5068 +Phenotype MP:0011283 abnormal erythropoietin level 0.05082457311650923 -0.12200709116198434 1.0 5068 +Phenotype MP:0031533 abnormal heart left ventricle wall morphology 0.05080418216873861 -0.12237667323365317 1.0 5070 +Phenotype MP:0005575 increased pulmonary ventilation 0.05079773080422256 -0.12249360299531764 1.0 5071 +Phenotype MP:0008673 decreased interleukin-13 secretion 0.05079228049656115 -0.12259238879082834 1.0 5072 +Phenotype MP:0003308 abnormal cochlear sensory epithelium morphology 0.0507718057233173 -0.122963490183345 1.0 5073 +Biological Process GO:0097084 vascular associated smooth muscle cell development 0.050763473885907184 -0.12311450316054826 1.0 5074 +Phenotype MP:0011885 abnormal circulating lipase level 0.05073319888246752 -0.12366323187178217 1.0 5075 +Phenotype MP:0002998 abnormal bone remodeling 0.05073229628243914 -0.123679591326582 1.0 5076 +Phenotype MP:0013808 abnormal tunnel of Corti morphology 0.05072457715091494 -0.1238194991254881 1.0 5077 +Phenotype MP:0008592 decreased circulating interleukin-1 level 0.05072034064578301 -0.1238962849797263 1.0 5078 +Phenotype MP:0013975 abnormal coronary sinus connection 0.050715725198614336 -0.12397993908670876 1.0 5079 +Biological Process GO:0060216 definitive hemopoiesis 0.05070680895362378 -0.12414154434077465 1.0 5080 +Phenotype MP:0000972 abnormal mechanoreceptor morphology 0.05068560445146664 -0.12452587193182638 1.0 5081 +Biological Process GO:0048469 cell maturation 0.050665299987059376 -0.12489388650889148 1.0 5082 +Phenotype MP:0013770 abnormal effector memory T-helper cell number 0.05063266213144468 -0.1254854414688961 1.0 5083 +Phenotype MP:0013337 abnormal adenohypophysis development 0.05058393511952708 -0.12636860934384336 1.0 5084 +Phenotype MP:0000778 abnormal nervous system tract morphology 0.050579090311817176 -0.1264564205672551 1.0 5085 +Biological Process GO:1905606 regulation of presynapse assembly 0.05054875376161572 -0.12700626480190585 1.0 5086 +Biological Process GO:0060841 venous blood vessel development 0.05054046155355418 -0.12715655950466145 1.0 5087 +Phenotype MP:0010082 sternebra fusion 0.050534465607750545 -0.12726523488829986 1.0 5088 +Phenotype MP:0001674 abnormal germ layer development 0.05051670259649066 -0.12758718610775047 1.0 5089 +Phenotype MP:0031354 abnormal acrosome assembly 0.05051320028859485 -0.12765066477594755 1.0 5090 +Biological Process GO:0007589 body fluid secretion 0.05051174699897909 -0.127677005375363 1.0 5091 +Biological Process GO:0043392 negative regulation of DNA binding 0.05049451760743928 -0.1279892848383142 1.0 5092 +Biological Process GO:0051592 response to calcium ion 0.050487556011067136 -0.12811546245586697 1.0 5093 +Phenotype MP:0008432 abnormal long-term spatial reference memory 0.05048193826046077 -0.1282172831230854 1.0 5094 +Biological Process GO:0005975 carbohydrate metabolic process 0.05047632655408496 -0.12831899423976809 1.0 5095 +Phenotype MP:0010503 myocardial trabeculae hypoplasia 0.0504451935667426 -0.12888327374696235 1.0 5096 +Phenotype MP:0001153 small seminiferous tubules 0.05042816056598165 -0.12919199366419137 1.0 5097 +Phenotype MP:0004742 abnormal vestibular system physiology 0.050427000119392607 -0.1292130265391349 1.0 5098 +Phenotype MP:0014082 decreased small intestinal villus height 0.05039651754631724 -0.12976551741075693 1.0 5099 +Phenotype MP:0006413 increased T cell apoptosis 0.05039591511334762 -0.12977643639438918 1.0 5100 +Phenotype MP:0003619 abnormal urine color 0.05033546413634493 -0.13087209891907325 1.0 5101 +Phenotype MP:0005006 abnormal osteoblast physiology 0.050313626798514366 -0.13126789653701335 1.0 5102 +Phenotype MP:0014269 decreased testes secretion 0.050312078642106406 -0.13129595657909462 1.0 5103 +Phenotype MP:0006279 abnormal limb development 0.05027936429888569 -0.1318888978624919 1.0 5104 +Phenotype MP:0004772 abnormal bile secretion 0.050274593809072066 -0.13197536208808974 1.0 5105 +Phenotype MP:0011390 abnormal fetal cardiomyocyte physiology 0.05020288765856329 -0.13327502250380682 1.0 5106 +Biological Process GO:0055062 phosphate ion homeostasis 0.050188139615367944 -0.13354232799732835 1.0 5107 +Phenotype MP:0003938 abnormal ear development 0.05016980507373037 -0.13387463809677733 1.0 5108 +Phenotype MP:0008658 decreased interleukin-1 beta secretion 0.050168813259021894 -0.13389261455077997 1.0 5109 +Phenotype MP:0008826 abnormal splenic cell ratio 0.05014596820273631 -0.1343066768751208 1.0 5110 +Phenotype MP:0013840 absent segment of posterior cerebral artery 0.050125149827564 -0.13468400598760322 1.0 5111 +Phenotype MP:0013839 abnormal posterior cerebral artery morphology 0.050125149827564 -0.13468400598760322 1.0 5111 +Phenotype MP:0002995 primary sex reversal 0.050111288692958555 -0.13493523643067956 1.0 5113 +Biological Process GO:0046189 phenol-containing compound biosynthetic process 0.05011065255726399 -0.13494676626982702 1.0 5114 +Phenotype MP:0008544 impaired olfaction 0.05010748860938541 -0.1350041122267081 1.0 5115 +Phenotype MP:0004383 absent interparietal bone 0.050098796807924395 -0.13516164948425158 1.0 5116 +Phenotype MP:0014200 abnormal respiratory epithelium physiology 0.05009116027327909 -0.13530006023034985 1.0 5117 +Phenotype MP:0013695 abnormal granulocyte monocyte progenitor cell number 0.05004691662354199 -0.1361019680137431 1.0 5118 +Phenotype MP:0004672 short ribs 0.05004301732691796 -0.13617264202755416 1.0 5119 +Biological Process GO:0050871 positive regulation of B cell activation 0.05003840449638308 -0.13625624870854391 1.0 5120 +Phenotype MP:0003545 increased alcohol consumption 0.05003838143897177 -0.136256666619763 1.0 5121 +Phenotype MP:0001409 increased stereotypic behavior 0.05003043084705694 -0.13640076959447167 1.0 5122 +Phenotype MP:0010055 abnormal sensory neuron physiology 0.05001712258096047 -0.13664197940039052 1.0 5123 +Biological Process GO:0048738 cardiac muscle tissue development 0.050015955127073575 -0.1366631392812823 1.0 5124 +Biological Process GO:0001991 regulation of systemic arterial blood pressure by circulatory renin-angiotensin 0.04999171510738987 -0.1371024850533756 1.0 5125 +Biological Process GO:0071379 cellular response to prostaglandin stimulus 0.04997672743021053 -0.1373741338675334 1.0 5126 +Biological Process GO:1901617 organic hydroxy compound biosynthetic process 0.049972206966958255 -0.13745606640899605 1.0 5127 +Biological Process GO:0030177 positive regulation of Wnt signaling pathway 0.04993063848928203 -0.1382094872047588 1.0 5128 +Phenotype MP:0004985 decreased osteoclast cell number 0.04992981136211294 -0.13822447872825858 1.0 5129 +Phenotype MP:0008903 abnormal mesenteric fat pad morphology 0.049929010703466115 -0.1382389905147985 1.0 5130 +Phenotype MP:0009948 abnormal olfactory bulb glomerular layer morphology 0.04992868928678795 -0.13824481613129855 1.0 5131 +Biological Process GO:0002675 positive regulation of acute inflammatory response 0.049914150619789543 -0.13850832672085128 1.0 5132 +Phenotype MP:0001384 abnormal pup retrieval 0.04989539332530668 -0.13884829913566304 1.0 5133 +Phenotype MP:0009731 abnormal offspring retrieval 0.04989539332530668 -0.13884829913566304 1.0 5133 +Biological Process GO:0021535 cell migration in hindbrain 0.04988722656935363 -0.13899632004268003 1.0 5135 +Phenotype MP:0000823 abnormal lateral ventricle morphology 0.049882623311441554 -0.139079753221692 1.0 5136 +Phenotype MP:0004038 lymphangiectasis 0.04981262327993041 -0.1403484905532664 1.0 5137 +Phenotype MP:0009456 impaired cued conditioning behavior 0.049789794457573144 -0.140762258640727 1.0 5138 +Biological Process GO:0032944 regulation of mononuclear cell proliferation 0.04978469982579026 -0.14085459787821072 1.0 5139 +Phenotype MP:0010500 myocardium hypoplasia 0.049772646684701494 -0.14107305878075493 1.0 5140 +Phenotype MP:0001633 poor circulation 0.049766541976390855 -0.14118370546426176 1.0 5141 +Phenotype MP:0031460 abnormal palatal shelf morphology 0.049719317067001056 -0.14203964801499502 1.0 5142 +Biological Process GO:0032689 negative regulation of type II interferon production 0.04970152732399735 -0.1423620837422464 1.0 5143 +Biological Process GO:2000772 regulation of cellular senescence 0.04969176919258844 -0.14253894802841352 1.0 5144 +Phenotype MP:0002267 abnormal bronchiole morphology 0.04967533893614151 -0.142836743318952 1.0 5145 +Phenotype MP:0004195 abnormal kidney calyx morphology 0.04963780761527026 -0.1435169914111986 1.0 5146 +Biological Process GO:0010875 positive regulation of cholesterol efflux 0.04963611390232647 -0.14354768963796166 1.0 5147 +Biological Process GO:0006940 regulation of smooth muscle contraction 0.049631845984819845 -0.14362504483555008 1.0 5148 +Phenotype MP:0003646 increased muscle fatigability 0.04961891041829736 -0.14385949953218163 1.0 5149 +Phenotype MP:0004043 abnormal pH regulation 0.04960626005623858 -0.14408878495185098 1.0 5150 +Phenotype MP:0013936 abnormal thymus topology 0.04958578925210977 -0.1444598144049083 1.0 5151 +Biological Process GO:0000209 protein polyubiquitination 0.04957700020665079 -0.14461911419152249 1.0 5152 +Phenotype MP:0002543 brachyphalangia 0.04956434738982107 -0.14484844410345088 1.0 5153 +Phenotype MP:0002582 disorganized extraembryonic tissue 0.04955181978442835 -0.14507550458176577 1.0 5154 +Phenotype MP:0010101 increased sacral vertebrae number 0.049551180549817 -0.14508709058819394 1.0 5155 +Biological Process GO:0006091 generation of precursor metabolites and energy 0.04953510417600315 -0.14537847182293986 1.0 5156 +Phenotype MP:0009892 palate bone hypoplasia 0.049504482957213436 -0.14593347562191156 1.0 5157 +Phenotype MP:0001787 pericardial edema 0.04948702506151559 -0.14624989667950875 1.0 5158 +Phenotype MP:0008653 abnormal interleukin-1 alpha secretion 0.0494828231295501 -0.14632605590164424 1.0 5159 +Phenotype MP:0001292 abnormal lens vesicle development 0.049424479307426106 -0.14738352664269197 1.0 5160 +Phenotype MP:0002052 decreased tumor incidence 0.04937686464631341 -0.14824653336968643 1.0 5161 +Biological Process GO:1902808 positive regulation of cell cycle G1/S phase transition 0.049356931079598154 -0.14860782549623427 1.0 5162 +Phenotype MP:0014103 increased chondrocyte apoptosis 0.04935439005911102 -0.14865388101196372 1.0 5163 +Phenotype MP:0006358 absent pinna reflex 0.04932949062364578 -0.14910517857037772 1.0 5164 +Phenotype MP:0005338 atherosclerotic lesions 0.0493175487373656 -0.14932162300055865 1.0 5165 +Phenotype MP:0009286 increased abdominal fat pad weight 0.04931681810310917 -0.14933486560826678 1.0 5166 +Phenotype MP:0000080 abnormal exoccipital bone morphology 0.0493118091748761 -0.1494256514851198 1.0 5167 +Biological Process GO:0072521 purine-containing compound metabolic process 0.04931091903955953 -0.14944178501937544 1.0 5168 +Phenotype MP:0001341 absent eyelids 0.049309461434852375 -0.1494682038290063 1.0 5169 +Phenotype MP:0008274 failure of bone ossification 0.049269794446606174 -0.15018716048849107 1.0 5170 +Phenotype MP:0003121 genetic imprinting 0.049257819114213675 -0.150404211123132 1.0 5171 +Biological Process GO:0007346 regulation of mitotic cell cycle 0.04924074522525301 -0.1507136721312474 1.0 5172 +Biological Process GO:1990845 adaptive thermogenesis 0.04923939803792021 -0.150738089646852 1.0 5173 +Phenotype MP:0021111 decreased social investigation 0.04923247423904498 -0.15086358219192217 1.0 5174 +Phenotype MP:0005323 dystonia 0.049228817379872725 -0.15092986207277348 1.0 5175 +Phenotype MP:0013631 decreased bone trabecular spacing 0.04921562972740767 -0.15116888577943535 1.0 5176 +Phenotype MP:0010811 decreased type II pneumocyte number 0.04918590408089696 -0.1517076575002356 1.0 5177 +Phenotype MP:0006338 abnormal second pharyngeal arch morphology 0.049178799669762574 -0.15183642360834243 1.0 5178 +Biological Process GO:0006090 pyruvate metabolic process 0.04916592984535828 -0.15206968674151597 1.0 5179 +Phenotype MP:0004967 abnormal kidney epithelium morphology 0.04913596897905281 -0.15261272177660742 1.0 5180 +Phenotype MP:0010899 abnormal pulmonary alveolar system morphology 0.049123371176590824 -0.15284105456352598 1.0 5181 +Phenotype MP:0011925 abnormal heart echocardiography feature 0.04910954997285255 -0.1530915612671873 1.0 5182 +Phenotype MP:0006339 abnormal third pharyngeal arch morphology 0.04909369304056188 -0.15337896516583008 1.0 5183 +Biological Process GO:0015012 heparan sulfate proteoglycan biosynthetic process 0.04909137444334277 -0.15342098930189493 1.0 5184 +Phenotype MP:0002790 decreased circulating follicle stimulating hormone level 0.04907887851088932 -0.15364747571417603 1.0 5185 +Phenotype MP:0009590 increased gonad tumor incidence 0.04906917298158986 -0.1538233865970584 1.0 5186 +Phenotype MP:0008918 microgliosis 0.049067194673029335 -0.15385924306554744 1.0 5187 +Phenotype MP:0013147 limb paralysis 0.04905216218765973 -0.15413170401967896 1.0 5188 +Phenotype MP:0002856 abnormal vestibular ganglion morphology 0.049040271065057595 -0.1543472283677967 1.0 5189 +Biological Process GO:0070873 regulation of glycogen metabolic process 0.049037856942711566 -0.15439098387871966 1.0 5190 +Phenotype MP:0000932 absent notochord 0.04897341783130993 -0.1555589305850826 1.0 5191 +Phenotype MP:0002689 abnormal molar morphology 0.048929409220486275 -0.15635657833262417 1.0 5192 +Phenotype MP:0001688 abnormal somite development 0.048924998525458174 -0.1564365213457848 1.0 5193 +Phenotype MP:0009145 abnormal pancreatic acinus morphology 0.048914420629479594 -0.15662824370972975 1.0 5194 +Biological Process GO:0042462 eye photoreceptor cell development 0.048903235903861364 -0.15683096474611966 1.0 5195 +Phenotype MP:0009583 increased keratinocyte proliferation 0.048902448965166045 -0.15684522786113345 1.0 5196 +Biological Process GO:0072009 nephron epithelium development 0.04889523311206034 -0.15697601383389267 1.0 5197 +Phenotype MP:0005244 hemopericardium 0.04888096609946935 -0.1572346007386908 1.0 5198 +Phenotype MP:0004643 abnormal vertebrae number 0.048868455137456523 -0.15746135955889295 1.0 5199 +Biological Process GO:0090190 positive regulation of branching involved in ureteric bud morphogenesis 0.04885125038036575 -0.15777319252711466 1.0 5200 +Biological Process GO:0060043 regulation of cardiac muscle cell proliferation 0.048850992331905485 -0.15777786960665058 1.0 5201 +Phenotype MP:0004217 salt-sensitive hypertension 0.04882490867911338 -0.15825063088013525 1.0 5202 +Biological Process GO:0007005 mitochondrion organization 0.0487870026629188 -0.15893767025424851 1.0 5203 +Phenotype MP:0003990 decreased neurotransmitter release 0.04878193495679395 -0.15902952146927293 1.0 5204 +Biological Process GO:2000648 positive regulation of stem cell proliferation 0.04877698779558248 -0.15911918783054171 1.0 5205 +Phenotype MP:0020157 abnormal behavioral response to alcohol 0.04876070096952123 -0.1594143834724677 1.0 5206 +Phenotype MP:0000457 maxilla hypoplasia 0.04874781312506005 -0.1596479732157641 1.0 5207 +Phenotype MP:0000295 trabecula carnea hypoplasia 0.04874577976351557 -0.15968482750917468 1.0 5208 +Phenotype MP:0001650 abnormal seizure response to electrical stimulation 0.04874412105978243 -0.15971489120061638 1.0 5209 +Phenotype MP:0008402 increased cellular sensitivity to alkylating agents 0.04874288753888156 -0.1597372485336407 1.0 5210 +Phenotype MP:0009890 cleft secondary palate 0.04873984220446603 -0.15979244464393813 1.0 5211 +Phenotype MP:0004644 increased vertebrae number 0.04873929615539696 -0.1598023416800372 1.0 5212 +Biological Process GO:0061035 regulation of cartilage development 0.04873715445700044 -0.15984115955840064 1.0 5213 +Biological Process GO:0060986 endocrine hormone secretion 0.04869394546062489 -0.16062431444530673 1.0 5214 +Phenotype MP:0000061 fragile skeleton 0.048663849839732265 -0.16116979188180336 1.0 5215 +Phenotype MP:0013562 abnormal circumventricular organ morphology 0.048630427933347264 -0.16177555761372717 1.0 5216 +Biological Process GO:0007368 determination of left/right symmetry 0.048614829815149196 -0.16205827055589275 1.0 5217 +Biological Process GO:0030850 prostate gland development 0.04858381779913734 -0.16262035748060166 1.0 5218 +Phenotype MP:0008565 decreased interferon-beta secretion 0.04857249670397645 -0.16282555018915978 1.0 5219 +Phenotype MP:0010404 ostium primum atrial septal defect 0.048535577201803126 -0.16349470918322379 1.0 5220 +Phenotype MP:0008642 decreased circulating interleukin-1 beta level 0.04850965751969982 -0.1639644985189867 1.0 5221 +Phenotype MP:0008742 abnormal kidney iron level 0.048500856131544645 -0.16412402201463502 1.0 5222 +Biological Process GO:0008203 cholesterol metabolic process 0.048461258528919804 -0.164841721072856 1.0 5223 +Phenotype MP:0011635 abnormal mitochondrial crista morphology 0.04845686081593492 -0.1649214287889387 1.0 5224 +Biological Process GO:0043462 regulation of ATP-dependent activity 0.048450396469888246 -0.16503859383839053 1.0 5225 +Phenotype MP:0002608 increased hematocrit 0.0484474227063032 -0.16509249274092208 1.0 5226 +Phenotype MP:0001458 abnormal object recognition memory 0.04844570653160085 -0.16512359808281077 1.0 5227 +Phenotype MP:0013306 abnormal tela choroidea morphology 0.04843841772318058 -0.165255706356848 1.0 5228 +Phenotype MP:0000820 abnormal choroid plexus morphology 0.04843841772318058 -0.165255706356848 1.0 5228 +Biological Process GO:2000242 negative regulation of reproductive process 0.04843564887016161 -0.1653058912941256 1.0 5230 +Phenotype MP:0031383 increased secondary ovarian follicle number 0.04843518588166318 -0.16531428287309158 1.0 5231 +Phenotype MP:0003130 anal atresia 0.04837033339815855 -0.16648972187063746 1.0 5232 +Phenotype MP:0008965 increased basal metabolism 0.04836321100693586 -0.1666188138644442 1.0 5233 +Biological Process GO:0061430 bone trabecula morphogenesis 0.048333649503640275 -0.16715461052051564 1.0 5234 +Biological Process GO:0048247 lymphocyte chemotaxis 0.048322239120604626 -0.1673614215549162 1.0 5235 +Phenotype MP:0004056 abnormal myocardium compact layer morphology 0.048309469018780415 -0.16759287723518693 1.0 5236 +Biological Process GO:0031400 negative regulation of protein modification process 0.04829565331084151 -0.16784328432852408 1.0 5237 +Phenotype MP:0001015 small superior cervical ganglion 0.048274165512721456 -0.16823274660532192 1.0 5238 +Biological Process GO:0020027 hemoglobin metabolic process 0.048251048467067514 -0.1686517386855212 1.0 5239 +Phenotype MP:0001706 abnormal left-right axis patterning 0.04823529057049869 -0.1689373475804368 1.0 5240 +Phenotype MP:0011527 disorganized placental labyrinth 0.04822052169450686 -0.16920503066445441 1.0 5241 +Biological Process GO:0046851 negative regulation of bone remodeling 0.048209881613979544 -0.16939788011158374 1.0 5242 +Biological Process GO:0045779 negative regulation of bone resorption 0.048209881613979544 -0.16939788011158374 1.0 5242 +Phenotype MP:0011762 renal/urinary system inflammation 0.04817688692445521 -0.1699959026187103 1.0 5244 +Biological Process GO:0002824 positive regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains 0.04816652179433312 -0.1701837686417482 1.0 5245 +Phenotype MP:0008441 thin cortical plate 0.04814304002737746 -0.1706093712265589 1.0 5246 +Biological Process GO:0009952 anterior/posterior pattern specification 0.048140804263441916 -0.17064989402502592 1.0 5247 +Biological Process GO:2000403 positive regulation of lymphocyte migration 0.0481391551274164 -0.1706797843035765 1.0 5248 +Phenotype MP:0009243 hairpin sperm flagellum 0.04811315408490435 -0.17115104828135966 1.0 5249 +Phenotype MP:0004634 short metacarpal bones 0.04810588266533278 -0.1712828413858032 1.0 5250 +Phenotype MP:0002024 increased T cell derived lymphoma incidence 0.048097066427677415 -0.1714426340258338 1.0 5251 +Phenotype MP:0004374 bowed radius 0.048089497292053696 -0.17157982317741347 1.0 5252 +Biological Process GO:1902017 regulation of cilium assembly 0.048054142486252394 -0.17222062234567578 1.0 5253 +Phenotype MP:0005030 absent amnion 0.04804176537317739 -0.1724449551791956 1.0 5254 +Biological Process GO:0046463 acylglycerol biosynthetic process 0.04803247839288449 -0.17261327994049694 1.0 5255 +Biological Process GO:0046460 neutral lipid biosynthetic process 0.04803247839288449 -0.17261327994049694 1.0 5255 +Phenotype MP:0002957 increased intestinal adenocarcinoma incidence 0.048018598612396324 -0.17286484833667107 1.0 5257 +Biological Process GO:0003158 endothelium development 0.04798346641290818 -0.17350161280761037 1.0 5258 +Biological Process GO:0044346 fibroblast apoptotic process 0.04796377670636276 -0.1738584850147028 1.0 5259 +Phenotype MP:0014040 increased cellular sensitivity to DNA damaging agents 0.04794986107979804 -0.17411070311423466 1.0 5260 +Phenotype MP:0000652 enlarged sebaceous gland 0.04792195847246106 -0.17461643259481435 1.0 5261 +Phenotype MP:0004252 abnormal direction of heart looping 0.04789961637356521 -0.17502137891159383 1.0 5262 +Phenotype MP:0013694 abnormal granulocyte monocyte progenitor cell morphology 0.047883798479362305 -0.17530807525227948 1.0 5263 +Phenotype MP:0002781 increased circulating testosterone level 0.04788038209001133 -0.17536999666310177 1.0 5264 +Phenotype MP:0010911 abnormal pulmonary acinus morphology 0.047877595471983225 -0.17542050358780983 1.0 5265 +Phenotype MP:0002356 abnormal spleen red pulp morphology 0.04784692829940329 -0.17597634029053769 1.0 5266 +Biological Process GO:0051447 negative regulation of meiotic cell cycle 0.047842579341612845 -0.1760551643279426 1.0 5267 +Phenotype MP:0003111 abnormal cell nucleus morphology 0.04782561261303764 -0.17636268307433958 1.0 5268 +Phenotype MP:0011636 disorganized mitochondrial cristae 0.047801989738665895 -0.17679084320437827 1.0 5269 +Biological Process GO:0061309 cardiac neural crest cell development involved in outflow tract morphogenesis 0.04778739591326708 -0.17705535352950583 1.0 5270 +Biological Process GO:0070373 negative regulation of ERK1 and ERK2 cascade 0.047781941339322564 -0.1771542166505909 1.0 5271 +Phenotype MP:0004871 premaxilla hypoplasia 0.04777851518651233 -0.1772163150222657 1.0 5272 +Phenotype MP:0013761 abnormal T-helper cell number 0.04777384412488972 -0.17730097713070694 1.0 5273 +Phenotype MP:0004427 abnormal vestibular labyrinth morphology 0.04777261085815654 -0.17732332985699 1.0 5274 +Phenotype MP:0009619 abnormal optokinetic reflex 0.04776269625769203 -0.1775030301151959 1.0 5275 +Biological Process GO:0003084 positive regulation of systemic arterial blood pressure 0.047762201614291344 -0.1775119954332781 1.0 5276 +Biological Process GO:0007015 actin filament organization 0.04776179309669715 -0.17751939973740732 1.0 5277 +Phenotype MP:0005183 abnormal circulating estradiol level 0.047757995563173505 -0.1775882293142709 1.0 5278 +Phenotype MP:0004987 abnormal osteoblast cell number 0.047744424018844045 -0.1778342109883672 1.0 5279 +Biological Process GO:0010332 response to gamma radiation 0.04774362081910444 -0.17784876883173314 1.0 5280 +Biological Process GO:0048477 oogenesis 0.04772890801486185 -0.17811543562590093 1.0 5281 +Biological Process GO:0060033 anatomical structure regression 0.047715180897196396 -0.17836423703728746 1.0 5282 +Biological Process GO:0009117 nucleotide metabolic process 0.04770470783946956 -0.17855405922774822 1.0 5283 +Biological Process GO:1905962 glutamatergic neuron differentiation 0.04768067617167526 -0.17898962866125298 1.0 5284 +Phenotype MP:0010169 decreased CD4-positive, CD25-positive, alpha-beta regulatory T cell number 0.04767925382040772 -0.17901540850895858 1.0 5285 +Phenotype MP:0001696 failure to gastrulate 0.04767575085569953 -0.17907889908175587 1.0 5286 +Phenotype MP:0003207 decreased cellular sensitivity to gamma-irradiation 0.047653606181300434 -0.17948026711687196 1.0 5287 +Phenotype MP:0020813 abnormal photoreceptor outer segment disc membrane morphology 0.04765126744163617 -0.17952265633094558 1.0 5288 +Phenotype MP:0004409 abnormal crista ampullaris neuroepithelium morphology 0.0476414596688276 -0.17970042035809247 1.0 5289 +Biological Process GO:0046825 regulation of protein export from nucleus 0.04764061159894373 -0.17971579146433667 1.0 5290 +Phenotype MP:0000458 abnormal mandible morphology 0.0476197258952894 -0.18009434089282125 1.0 5291 +Phenotype MP:0002948 abnormal neuron specification 0.04760845366358046 -0.18029864796055461 1.0 5292 +Biological Process GO:0002274 myeloid leukocyte activation 0.047574943839540085 -0.1809060071833537 1.0 5293 +Phenotype MP:0002750 exophthalmos 0.04754162778864124 -0.18150985430461208 1.0 5294 +Phenotype MP:0010506 prolonged RR interval 0.04753739897334719 -0.18158650078199318 1.0 5295 +Biological Process GO:0002068 glandular epithelial cell development 0.0474984467926457 -0.1822925016899263 1.0 5296 +Biological Process GO:0030808 regulation of nucleotide biosynthetic process 0.047492615588412446 -0.1823981911637601 1.0 5297 +Biological Process GO:1900371 regulation of purine nucleotide biosynthetic process 0.047492615588412446 -0.1823981911637601 1.0 5297 +Biological Process GO:0072678 T cell migration 0.047491591477973105 -0.18241675297177642 1.0 5299 +Biological Process GO:0009855 determination of bilateral symmetry 0.04745490561437227 -0.18308167731090366 1.0 5300 +Biological Process GO:0009799 specification of symmetry 0.04745490561437227 -0.18308167731090366 1.0 5300 +Biological Process GO:0048663 neuron fate commitment 0.0474244686436871 -0.1836333416478284 1.0 5302 +Phenotype MP:0000754 paresis 0.04740944399434133 -0.1839056605755101 1.0 5303 +Phenotype MP:0008753 abnormal osteocyte morphology 0.047405874144039406 -0.18397036343704323 1.0 5304 +Phenotype MP:0009344 abnormal ovulation cycle 0.047387708859877975 -0.18429960577674984 1.0 5305 +Biological Process GO:0006873 intracellular monoatomic ion homeostasis 0.047375889095761514 -0.1845138367658112 1.0 5306 +Phenotype MP:0010869 decreased bone trabecula number 0.04735121018156019 -0.18496113741802533 1.0 5307 +Phenotype MP:0001759 increased urine glucose level 0.04734950342587996 -0.18499207204191961 1.0 5308 +Phenotype MP:0000286 abnormal mitral valve morphology 0.047349308355728925 -0.18499560765151218 1.0 5309 +Phenotype MP:0013969 reduced sympathetic cervical ganglion size 0.04733290163801385 -0.18529297630698788 1.0 5310 +Phenotype MP:0000566 synostosis 0.04732961913652989 -0.18535247102554359 1.0 5311 +Biological Process GO:0140115 export across plasma membrane 0.04730012271479456 -0.18588708809064478 1.0 5312 +Phenotype MP:0009149 decreased pancreatic acinar cell number 0.04730001557750918 -0.18588902993367865 1.0 5313 +Phenotype MP:0009655 abnormal secondary palate development 0.04729227945297887 -0.18602924572760657 1.0 5314 +Biological Process GO:0010611 regulation of cardiac muscle hypertrophy 0.047259866572779585 -0.186616723050758 1.0 5315 +Phenotype MP:0009768 impaired somite development 0.04725830627706906 -0.18664500311540227 1.0 5316 +Phenotype MP:0008167 increased B-1a cell number 0.047252538171106306 -0.18674954894501752 1.0 5317 +Phenotype MP:0008449 abnormal retina cone cell outer segment morphology 0.0472393020611922 -0.1869894509337784 1.0 5318 +Phenotype MP:0002622 abnormal cochlear hair cell morphology 0.04719692550380161 -0.18775751802152663 1.0 5319 +Biological Process GO:0031077 post-embryonic camera-type eye development 0.04718845005604111 -0.18791113390916872 1.0 5320 +Biological Process GO:0021534 cell proliferation in hindbrain 0.04715226219250057 -0.188567032091393 1.0 5321 +Biological Process GO:0021930 cerebellar granule cell precursor proliferation 0.04715226219250057 -0.188567032091393 1.0 5321 +Biological Process GO:0021924 cell proliferation in external granule layer 0.04715226219250057 -0.188567032091393 1.0 5321 +Phenotype MP:0000434 megacephaly 0.04710727275808846 -0.18938245708096577 1.0 5324 +Phenotype MP:0010365 increased thymus tumor incidence 0.04708353894263473 -0.18981262799713247 1.0 5325 +Phenotype MP:0000819 abnormal olfactory bulb morphology 0.04708252944816349 -0.18983092489349135 1.0 5326 +Phenotype MP:0002816 colitis 0.047080003434324835 -0.1898767084165554 1.0 5327 +Phenotype MP:0009267 abnormal cerebellum fissure morphology 0.04706022634300511 -0.19023516445615452 1.0 5328 +Biological Process GO:0002697 regulation of immune effector process 0.04705931627716442 -0.19025165922739024 1.0 5329 +Biological Process GO:0001756 somitogenesis 0.04703005414161887 -0.1907820298996137 1.0 5330 +Biological Process GO:0022904 respiratory electron transport chain 0.047025148819051954 -0.19087093794336327 1.0 5331 +Biological Process GO:0043255 regulation of carbohydrate biosynthetic process 0.04702405354024963 -0.19089078966449807 1.0 5332 +Biological Process GO:0009648 photoperiodism 0.04699988201273042 -0.19132889402906428 1.0 5333 +Biological Process GO:0043153 entrainment of circadian clock by photoperiod 0.04699988201273042 -0.19132889402906428 1.0 5333 +Phenotype MP:0002757 decreased vertical activity 0.046987999154086135 -0.19154426859450896 1.0 5335 +Phenotype MP:0000767 abnormal smooth muscle morphology 0.04696063097771419 -0.19204031161492777 1.0 5336 +Phenotype MP:0000542 left-sided isomerism 0.04693181400618207 -0.19256261377360465 1.0 5337 +Biological Process GO:0002011 morphogenesis of an epithelial sheet 0.0469310469963784 -0.19257651568122658 1.0 5338 +Biological Process GO:0003156 regulation of animal organ formation 0.04691157038631655 -0.19292952555485865 1.0 5339 +Phenotype MP:0008874 decreased physiological sensitivity to xenobiotic 0.04688564543180396 -0.1933994104520427 1.0 5340 +Phenotype MP:0003373 increased circulating mineralocorticoid level 0.046878437214707525 -0.19353005802357817 1.0 5341 +Phenotype MP:0002666 increased circulating aldosterone level 0.046878437214707525 -0.19353005802357817 1.0 5341 +Phenotype MP:0009791 increased susceptibility to viral infection induced morbidity/mortality 0.04685785660451802 -0.19390307769071713 1.0 5343 +Phenotype MP:0003992 increased mortality induced by ionizing radiation 0.04684686011766126 -0.19410238693515827 1.0 5344 +Phenotype MP:0020204 abnormal heart left ventricle weight 0.04683967777429576 -0.1942325655502142 1.0 5345 +Phenotype MP:0005084 abnormal gallbladder morphology 0.046795696755406624 -0.19502971319916132 1.0 5346 +Phenotype MP:0010874 abnormal bone volume 0.04677329852677525 -0.19543567685678104 1.0 5347 +Phenotype MP:0020136 abnormal interventricular septum thickness 0.04677061626546608 -0.1954842923356961 1.0 5348 +Phenotype MP:0008470 abnormal spleen B cell follicle morphology 0.046767308482181136 -0.195544245282113 1.0 5349 +Phenotype MP:0004151 decreased circulating iron level 0.04676725662305514 -0.19554518521896316 1.0 5350 +Phenotype MP:0009337 abnormal splenocyte number 0.046751072057396925 -0.19583852741042532 1.0 5351 +Biological Process GO:0050729 positive regulation of inflammatory response 0.04673939411047823 -0.19605018798960003 1.0 5352 +Biological Process GO:0098771 inorganic ion homeostasis 0.04666274155270422 -0.19743950110145292 1.0 5353 +Phenotype MP:0010220 decreased T-helper 17 cell number 0.04664589685349507 -0.19774480808867034 1.0 5354 +Phenotype MP:0000279 ventricular hypoplasia 0.04661054764938777 -0.19838550572728844 1.0 5355 +Phenotype MP:0012772 abnormal central memory CD8-positive, alpha-beta T cell number 0.04660947243681568 -0.19840499375179552 1.0 5356 +Phenotype MP:0010846 abnormal central memory CD8 positive, alpha-beta T cell morphology 0.04660947243681568 -0.19840499375179552 1.0 5356 +Phenotype MP:0002032 increased sarcoma incidence 0.04660310821917646 -0.1985203439928002 1.0 5358 +Phenotype MP:0010264 increased hepatoma incidence 0.04660167400111881 -0.19854633892383203 1.0 5359 +Phenotype MP:0009135 abnormal brown fat cell size 0.046570506696827274 -0.19911124041923944 1.0 5360 +Biological Process GO:0044321 response to leptin 0.0465621660124399 -0.1992624137462323 1.0 5361 +Biological Process GO:0034032 purine nucleoside bisphosphate metabolic process 0.046560322031858004 -0.199295835545515 1.0 5362 +Biological Process GO:0033875 ribonucleoside bisphosphate metabolic process 0.046560322031858004 -0.199295835545515 1.0 5362 +Biological Process GO:0033865 nucleoside bisphosphate metabolic process 0.046560322031858004 -0.199295835545515 1.0 5362 +Phenotype MP:0020475 delayed circadian behavior phase 0.046551658191735124 -0.1994528660090933 1.0 5365 +Phenotype MP:0002594 low mean erythrocyte cell number 0.046547092014028735 -0.19953562711639045 1.0 5366 +Phenotype MP:0005404 abnormal axon morphology 0.046543040931395385 -0.1996090522229121 1.0 5367 +Phenotype MP:0009230 abnormal sperm head morphology 0.04653714512128537 -0.19971591266604283 1.0 5368 +Phenotype MP:0008050 decreased memory T cell number 0.04652923883212223 -0.19985921266175644 1.0 5369 +Biological Process GO:0061756 leukocyte adhesion to vascular endothelial cell 0.04651559783427994 -0.20010645316763656 1.0 5370 +Phenotype MP:0010282 decreased organ/body region tumor incidence 0.04651089373387218 -0.20019171409780984 1.0 5371 +Biological Process GO:0044550 secondary metabolite biosynthetic process 0.046505435143614604 -0.2002906500138095 1.0 5372 +Biological Process GO:0002700 regulation of production of molecular mediator of immune response 0.046498245757319756 -0.20042095628062784 1.0 5373 +Phenotype MP:0004134 abnormal chest morphology 0.046466505997512564 -0.20099623342398426 1.0 5374 +Phenotype MP:0004809 increased hematopoietic stem cell number 0.04644349401071379 -0.201413321332304 1.0 5375 +Biological Process GO:0001759 organ induction 0.04642785476068878 -0.20169677978105344 1.0 5376 +Phenotype MP:0008022 dilated heart ventricle 0.046334118682683334 -0.203395728465983 1.0 5377 +Phenotype MP:0003651 abnormal axon extension 0.04633383848243555 -0.20340080704247793 1.0 5378 +Phenotype MP:0011634 abnormal mitochondrial inner membrane morphology 0.04632705517121127 -0.20352375327544583 1.0 5379 +Biological Process GO:0009416 response to light stimulus 0.04631838513848219 -0.20368089597884037 1.0 5380 +Phenotype MP:0020408 abnormal susceptibility to induced thrombosis 0.04631798495781603 -0.20368814917772574 1.0 5381 +Phenotype MP:0000837 abnormal hypothalamus morphology 0.04631553246808928 -0.20373260009016753 1.0 5382 +Phenotype MP:0004376 absent frontal bone 0.0463087026621396 -0.2038563890312395 1.0 5383 +Phenotype MP:0005028 abnormal trophectoderm morphology 0.04630245671005029 -0.20396959573152043 1.0 5384 +Phenotype MP:0008023 abnormal styloid process morphology 0.046295797799313254 -0.2040902872291857 1.0 5385 +Phenotype MP:0004137 abnormal gastric surface mucous cell morphology 0.046291009387173676 -0.20417707629355178 1.0 5386 +Phenotype MP:0020182 abnormal body mass index 0.046275350236414825 -0.20446089543933807 1.0 5387 +Phenotype MP:0002427 disproportionate dwarf 0.04623814708972529 -0.20513519543661077 1.0 5388 +Phenotype MP:0009764 decreased susceptibility to induced morbidity/mortality 0.04622327071870769 -0.20540482684763922 1.0 5389 +Phenotype MP:0010556 thin ventricle myocardium compact layer 0.046218034069319014 -0.20549974012736708 1.0 5390 +Phenotype MP:0008428 abnormal spatial working memory 0.04619927184117767 -0.2058398019638057 1.0 5391 +Biological Process GO:0035092 sperm DNA condensation 0.046194013121206745 -0.2059351152686625 1.0 5392 +Phenotype MP:0008004 abnormal stomach pH 0.0461895357680997 -0.20601626644689655 1.0 5393 +Phenotype MP:0009602 abnormal keratohyalin granule morphology 0.046189425440644416 -0.20601826611115662 1.0 5394 +Phenotype MP:0020396 abnormal social recognition 0.046189407878304944 -0.20601858442523785 1.0 5395 +Biological Process GO:0045836 positive regulation of meiotic nuclear division 0.04617162493137861 -0.20634089697487235 1.0 5396 +Phenotype MP:0010505 abnormal T wave 0.04614422272188112 -0.20683755683925464 1.0 5397 +Biological Process GO:0060113 inner ear receptor cell differentiation 0.046143962634807134 -0.20684227086827872 1.0 5398 +Phenotype MP:0011184 absent embryonic epiblast 0.04613925379335537 -0.20692761772897783 1.0 5399 +Biological Process GO:0042461 photoreceptor cell development 0.04612514168341719 -0.20718339705249145 1.0 5400 +Biological Process GO:0060291 long-term synaptic potentiation 0.04612311952956949 -0.20722004820851786 1.0 5401 +Biological Process GO:0008360 regulation of cell shape 0.046122592111965344 -0.20722960755283903 1.0 5402 +Phenotype MP:0001361 social withdrawal 0.04609202044018701 -0.2077837133216006 1.0 5403 +Phenotype MP:0000468 abnormal esophageal epithelium morphology 0.046046376210458706 -0.20861100635243357 1.0 5404 +Phenotype MP:0002625 heart left ventricle hypertrophy 0.04599880428538439 -0.20947323849681543 1.0 5405 +Phenotype MP:0009862 abnormal aorta elastic tissue morphology 0.04597710038235292 -0.20986661763425926 1.0 5406 +Phenotype MP:0008272 abnormal endochondral bone ossification 0.045950652445562734 -0.21034598148630965 1.0 5407 +Phenotype MP:0004957 abnormal blastocyst morphology 0.04594628919196997 -0.21042506463242774 1.0 5408 +Phenotype MP:0010386 abnormal urinary bladder physiology 0.045943623532237354 -0.21047337921090767 1.0 5409 +Phenotype MP:0001512 trunk curl 0.04591530860919746 -0.21098658183561872 1.0 5410 +Biological Process GO:1904888 cranial skeletal system development 0.04591526728264983 -0.2109873308714781 1.0 5411 +Phenotype MP:0005599 increased cardiac muscle contractility 0.04591074194798983 -0.21106935170628438 1.0 5412 +Biological Process GO:0006163 purine nucleotide metabolic process 0.04590974774860768 -0.21108737138204647 1.0 5413 +Biological Process GO:0048640 negative regulation of developmental growth 0.045895184295675406 -0.2113513312119625 1.0 5414 +Phenotype MP:0001083 small geniculate ganglion 0.045889851511457636 -0.21144798691728514 1.0 5415 +Phenotype MP:0006429 abnormal hyaline cartilage morphology 0.045884709723421846 -0.21154118085293375 1.0 5416 +Phenotype MP:0009219 increased prostate intraepithelial neoplasia incidence 0.04586738388017786 -0.21185520848478065 1.0 5417 +Phenotype MP:0000939 decreased motor neuron number 0.04586358039821148 -0.2119241458760438 1.0 5418 +Biological Process GO:0002821 positive regulation of adaptive immune response 0.04581191057157519 -0.21286065171117344 1.0 5419 +Biological Process GO:0090288 negative regulation of cellular response to growth factor stimulus 0.0458020847532985 -0.21303874280901694 1.0 5420 +Biological Process GO:0010002 cardioblast differentiation 0.04578725186821764 -0.21330758604566674 1.0 5421 +Biological Process GO:0008637 apoptotic mitochondrial changes 0.045779049441037056 -0.21345625348693592 1.0 5422 +Phenotype MP:0002908 delayed wound healing 0.04576810322765168 -0.21365465153421676 1.0 5423 +Phenotype MP:0000733 abnormal muscle development 0.045737194061069686 -0.214214874332462 1.0 5424 +Phenotype MP:0000520 absent kidney 0.045721222363059644 -0.21450435833806203 1.0 5425 +Phenotype MP:0020202 abnormal macrophage cell number 0.045689416647536785 -0.2150808309162903 1.0 5426 +Phenotype MP:0001274 curly vibrissae 0.04566658222183173 -0.21549470056336972 1.0 5427 +Phenotype MP:0030258 small mandibular condyloid process 0.04566382970951688 -0.2155445893284757 1.0 5428 +Biological Process GO:0071479 cellular response to ionizing radiation 0.045657029148528205 -0.21566784821016072 1.0 5429 +Phenotype MP:0004158 right aortic arch 0.045651727743707515 -0.21576393516984627 1.0 5430 +Phenotype MP:0005650 abnormal limb bud morphology 0.04560028722981446 -0.2166962847548761 1.0 5431 +Biological Process GO:0106027 neuron projection organization 0.045599251106695715 -0.21671506429043463 1.0 5432 +Phenotype MP:0010251 subcapsular cataract 0.04557682496846738 -0.21712153380422067 1.0 5433 +Phenotype MP:0000947 convulsive seizures 0.04557232014971735 -0.217203182792039 1.0 5434 +Phenotype MP:0006404 abnormal lumbar dorsal root ganglion morphology 0.045558752702465455 -0.21744909020737932 1.0 5435 +Biological Process GO:0003214 cardiac left ventricle morphogenesis 0.045556930818548946 -0.2174821115087812 1.0 5436 +Phenotype MP:0008465 absent mesenteric lymph nodes 0.04555106588603319 -0.21758841230135606 1.0 5437 +Phenotype MP:0011203 abnormal parietal yolk sac morphology 0.04552180716327814 -0.2181187211173973 1.0 5438 +Phenotype MP:0006267 abnormal intercalated disk morphology 0.045515971276854805 -0.21822449545504075 1.0 5439 +Phenotype MP:0006329 sensorineural hearing impairment 0.04549894124250631 -0.2185331616066052 1.0 5440 +Biological Process GO:2000317 negative regulation of T-helper 17 type immune response 0.045475952991819946 -0.2189498193023769 1.0 5441 +Biological Process GO:0002922 positive regulation of humoral immune response 0.04546480181825174 -0.21915193221420598 1.0 5442 +Phenotype MP:0008075 decreased CD4-positive, alpha-beta T cell number 0.045420552532491554 -0.2199539421494518 1.0 5443 +Biological Process GO:0042168 heme metabolic process 0.04539744354805697 -0.22037278812157485 1.0 5444 +Phenotype MP:0011747 myelofibrosis 0.04537661858147013 -0.22075023670219884 1.0 5445 +Biological Process GO:0006998 nuclear envelope organization 0.045328124807876624 -0.2216291771766357 1.0 5446 +Biological Process GO:0032640 tumor necrosis factor production 0.04532363819205265 -0.22171049623986214 1.0 5447 +Biological Process GO:0071706 tumor necrosis factor superfamily cytokine production 0.04532363819205265 -0.22171049623986214 1.0 5447 +Phenotype MP:0005287 narrow eye opening 0.045294877432223046 -0.2222317795720626 1.0 5449 +Biological Process GO:0021681 cerebellar granular layer development 0.04528673187379584 -0.22237941627793287 1.0 5450 +Biological Process GO:0006865 amino acid transport 0.04527868140308311 -0.22252532953696275 1.0 5451 +Biological Process GO:0031069 hair follicle morphogenesis 0.04525444138479884 -0.22296467528369154 1.0 5452 +Phenotype MP:0004417 decreased cochlear nerve compound action potential 0.045247526551741135 -0.2230900053250147 1.0 5453 +Phenotype MP:0001241 absent epidermis stratum corneum 0.045242286960262335 -0.22318497192956965 1.0 5454 +Phenotype MP:0000850 absent cerebellum 0.045235868545878355 -0.2233013044763225 1.0 5455 +Biological Process GO:0060487 lung epithelial cell differentiation 0.04522704046093062 -0.2234613118462865 1.0 5456 +Biological Process GO:0060479 lung cell differentiation 0.04522704046093062 -0.2234613118462865 1.0 5456 +Phenotype MP:0011966 abnormal auditory brainstem response waveform shape 0.045206823618457515 -0.2238277382923676 1.0 5458 +Phenotype MP:0006292 abnormal nasal placode morphology 0.04519447349855943 -0.22405158187966123 1.0 5459 +Biological Process GO:0048384 retinoic acid receptor signaling pathway 0.04519349963750485 -0.2240692329270827 1.0 5460 +Phenotype MP:0010650 abnormal aorticopulmonary septum morphology 0.04518841192325873 -0.22416144678552088 1.0 5461 +Phenotype MP:0010651 aorticopulmonary septal defect 0.04518841192325873 -0.22416144678552088 1.0 5461 +Phenotype MP:0003816 abnormal pituitary gland development 0.045183074582323735 -0.22425818508048143 1.0 5463 +Phenotype MP:0010484 bicuspid aortic valve 0.04517246132638719 -0.22445054833697656 1.0 5464 +Biological Process GO:0045666 positive regulation of neuron differentiation 0.04515831485170563 -0.22470695051496437 1.0 5465 +Biological Process GO:0007272 ensheathment of neurons 0.04514673861325913 -0.22491676764731725 1.0 5466 +Biological Process GO:0008366 axon ensheathment 0.04514673861325913 -0.22491676764731725 1.0 5466 +Biological Process GO:0007266 Rho protein signal transduction 0.045129319195649886 -0.22523249129683612 1.0 5468 +Biological Process GO:0030512 negative regulation of transforming growth factor beta receptor signaling pathway 0.04511910567318744 -0.2254176094597174 1.0 5469 +Biological Process GO:0051147 regulation of muscle cell differentiation 0.04509537420725651 -0.22584773779122777 1.0 5470 +Biological Process GO:0007028 cytoplasm organization 0.045053096076388965 -0.22661402091686186 1.0 5471 +Phenotype MP:0011682 renal glomerulus cyst 0.045041340864494184 -0.22682708190911446 1.0 5472 +Phenotype MP:0011711 impaired osteoblast differentiation 0.04502390023265612 -0.22714319006251826 1.0 5473 +Phenotype MP:0009962 abnormal cerebellum posterior lobe morphology 0.04500026684227276 -0.22757154079327854 1.0 5474 +Phenotype MP:0000869 abnormal cerebellum posterior vermis morphology 0.04500026684227276 -0.22757154079327854 1.0 5474 +Biological Process GO:0032613 interleukin-10 production 0.04500013474593079 -0.2275739350144926 1.0 5476 +Biological Process GO:0045109 intermediate filament organization 0.044992670345149754 -0.22770922586685774 1.0 5477 +Phenotype MP:0005034 abnormal anus morphology 0.04494633908251555 -0.22854897123916712 1.0 5478 +Phenotype MP:0002884 abnormal pharyngeal arch morphology 0.04493434316122902 -0.2287663950436183 1.0 5479 +Phenotype MP:0009435 abnormal miniature inhibitory postsynaptic currents 0.044923087364909464 -0.22897040422302764 1.0 5480 +Phenotype MP:0000828 abnormal fourth ventricle morphology 0.04490153803825703 -0.22936098169283758 1.0 5481 +Biological Process GO:0033687 osteoblast proliferation 0.044890121191683785 -0.22956790987763454 1.0 5482 +Phenotype MP:0001636 irregular heartbeat 0.04488533712083942 -0.22965462025684596 1.0 5483 +Phenotype MP:0020848 abnormal exocytosis 0.04488047063520639 -0.2297428243885142 1.0 5484 +Biological Process GO:0042438 melanin biosynthetic process 0.04487202032244497 -0.2298959847090519 1.0 5485 +Biological Process GO:0032602 chemokine production 0.04486981928812084 -0.22993587803988078 1.0 5486 +Phenotype MP:0000229 abnormal megakaryocyte differentiation 0.04486299115554582 -0.23005963665135354 1.0 5487 +Phenotype MP:0010207 abnormal telomere morphology 0.044833715590114065 -0.23059025073772438 1.0 5488 +Biological Process GO:1903867 extraembryonic membrane development 0.04483226352784775 -0.23061656909166328 1.0 5489 +Phenotype MP:0006278 aortic aneurysm 0.044831369966422785 -0.23063276472348562 1.0 5490 +Phenotype MP:0005251 blepharitis 0.044754914886170116 -0.23201849859261453 1.0 5491 +Phenotype MP:0011020 abnormal circadian temperature homeostasis 0.04475274583078237 -0.23205781231126976 1.0 5492 +Biological Process GO:1901379 regulation of potassium ion transmembrane transport 0.044663280057349874 -0.23367936253348529 1.0 5493 +Phenotype MP:0002691 small stomach 0.044631927570906726 -0.23424762042036595 1.0 5494 +Phenotype MP:0010592 abnormal atrioventricular septum morphology 0.04461687522794022 -0.23452044128968552 1.0 5495 +Phenotype MP:0008151 increased diameter of long bones 0.0446136772643938 -0.23457840377411254 1.0 5496 +Phenotype MP:0002633 persistent truncus arteriosus 0.044572370883460666 -0.23532707411597895 1.0 5497 +Phenotype MP:0000285 abnormal heart valve morphology 0.04456695883971695 -0.23542516638521843 1.0 5498 +Phenotype MP:0021002 brain lesion 0.04456453266609617 -0.235469140323217 1.0 5499 +Phenotype MP:0009181 decreased pancreatic delta cell number 0.044555738289540514 -0.23562853673495013 1.0 5500 +Phenotype MP:0020749 abnormal cingulate cortex morphology 0.04454672013810601 -0.2357919890240384 1.0 5501 +Biological Process GO:2000696 regulation of epithelial cell differentiation involved in kidney development 0.04453673128131097 -0.2359730351641905 1.0 5502 +Phenotype MP:0006395 abnormal epiphyseal plate morphology 0.044534846091865754 -0.2360072038663268 1.0 5503 +Phenotype MP:0003965 abnormal pituitary hormone level 0.04451844760126955 -0.23630442340682892 1.0 5504 +Phenotype MP:0020355 abnormal Sertoli cell barrier morphology 0.04451281937840479 -0.23640643388175003 1.0 5505 +Biological Process GO:0050954 sensory perception of mechanical stimulus 0.04445006304469168 -0.23754388056078318 1.0 5506 +Phenotype MP:0002422 abnormal basophil morphology 0.04439964140970887 -0.23845776315827213 1.0 5507 +Phenotype MP:0012442 abnormal basophil cell number 0.04439964140970887 -0.23845776315827213 1.0 5507 +Phenotype MP:0004992 increased bone resorption 0.04434636721170304 -0.2394233479210293 1.0 5509 +Phenotype MP:0011702 abnormal fibroblast proliferation 0.04432641469524368 -0.239784983508105 1.0 5510 +Phenotype MP:0000018 small ears 0.04430324002292263 -0.2402050200607462 1.0 5511 +Biological Process GO:0008361 regulation of cell size 0.044296897077195196 -0.240319984752373 1.0 5512 +Phenotype MP:0008882 abnormal enterocyte physiology 0.04428385526382772 -0.24055636515297482 1.0 5513 +Phenotype MP:0006340 abnormal fourth pharyngeal arch morphology 0.044281315603908245 -0.2406023960086728 1.0 5514 +Biological Process GO:0035641 locomotory exploration behavior 0.04427871765361979 -0.2406494833662836 1.0 5515 +Phenotype MP:0000042 abnormal organ of Corti morphology 0.044272261684150105 -0.24076649659186186 1.0 5516 +Phenotype MP:0009640 abnormal renal tubule epithelium morphology 0.044263259115140285 -0.24092966645244993 1.0 5517 +Biological Process GO:0097107 postsynaptic density assembly 0.04425352883263933 -0.24110602598242756 1.0 5518 +Phenotype MP:0003858 enhanced coordination 0.04424617209439474 -0.2412393654716826 1.0 5519 +Phenotype MP:0006241 abnormal placement of pupils 0.044221374996522456 -0.24168880818058006 1.0 5520 +Phenotype MP:0004036 abnormal muscle relaxation 0.0442034690501949 -0.24201335007109795 1.0 5521 +Biological Process GO:0045471 response to ethanol 0.04420004656897358 -0.24207538189591798 1.0 5522 +Phenotype MP:0020917 decreased susceptibility to Herpesvirales infection 0.04418678940008414 -0.24231566557462392 1.0 5523 +Phenotype MP:0031422 failure of superovulation 0.04418622900746039 -0.24232582258493865 1.0 5524 +Phenotype MP:0008539 decreased susceptibility to induced colitis 0.04416525101263957 -0.24270604477336016 1.0 5525 +Biological Process GO:0030003 intracellular monoatomic cation homeostasis 0.044164588686204875 -0.2427180493147189 1.0 5526 +Phenotype MP:0011443 abnormal renal water transport 0.044151603375452986 -0.24295340561609993 1.0 5527 +Phenotype MP:0004740 sensorineural hearing loss 0.04413936021138398 -0.2431753106492207 1.0 5528 +Phenotype MP:0001158 abnormal prostate gland morphology 0.044125009156328554 -0.24343542080779118 1.0 5529 +Phenotype MP:0004019 abnormal vitamin homeostasis 0.04411273923702319 -0.2436578107745106 1.0 5530 +Biological Process GO:0043266 regulation of potassium ion transport 0.0440919920697721 -0.24403384925688879 1.0 5531 +Phenotype MP:0014121 increased pancreatic islet cell apoptosis 0.044091901415879375 -0.24403549234154848 1.0 5532 +Biological Process GO:0002762 negative regulation of myeloid leukocyte differentiation 0.04406649540237917 -0.24449597153103378 1.0 5533 +Biological Process GO:0098693 regulation of synaptic vesicle cycle 0.044045332053140096 -0.24487955323322894 1.0 5534 +Phenotype MP:0010375 increased kidney iron level 0.04403305559612214 -0.24510206169475257 1.0 5535 +Phenotype MP:0012504 increased forebrain apoptosis 0.04402663742815338 -0.24521838977527613 1.0 5536 +Phenotype MP:0000131 abnormal long bone epiphysis morphology 0.04402235734664184 -0.24529596544315296 1.0 5537 +Phenotype MP:0002858 abnormal posterior semicircular canal morphology 0.04401707092046092 -0.24539178091782562 1.0 5538 +Biological Process GO:0030705 cytoskeleton-dependent intracellular transport 0.04400175199900591 -0.2456694334718296 1.0 5539 +Biological Process GO:0042753 positive regulation of circadian rhythm 0.04397762026004337 -0.2461068166763316 1.0 5540 +Biological Process GO:0000226 microtubule cytoskeleton organization 0.04397687174897125 -0.24612038329794303 1.0 5541 +Phenotype MP:0001327 decreased retina photoreceptor cell number 0.04397679226687978 -0.24612182389581785 1.0 5542 +Phenotype MP:0013296 abnormal susceptibility to induced colitis 0.04397308015030532 -0.24618910530663302 1.0 5543 +Phenotype MP:0020080 increased bone mineralization 0.04393348726889257 -0.24690671879377785 1.0 5544 +Phenotype MP:0014137 abnormal preimplantation embryo morphology 0.04389488464737701 -0.24760638400758042 1.0 5545 +Phenotype MP:0005117 increased circulating pituitary hormone level 0.04388488405327062 -0.2477876428842807 1.0 5546 +Phenotype MP:0004263 abnormal limb posture 0.0438803958277062 -0.24786899112374836 1.0 5547 +Phenotype MP:0030485 abnormal osteocyte lacunocanalicular system morphology 0.043873254698043596 -0.24799842274823436 1.0 5548 +Biological Process GO:0090092 regulation of transmembrane receptor protein serine/threonine kinase signaling pathway 0.043852944276093986 -0.24836654530462773 1.0 5549 +Biological Process GO:0019693 ribose phosphate metabolic process 0.04384572129899311 -0.24849746039845202 1.0 5550 +Phenotype MP:0003178 left pulmonary isomerism 0.0438316549427038 -0.24875241044573357 1.0 5551 +Phenotype MP:0011444 abnormal renal water homeostasis 0.043812758259753504 -0.24909490925015415 1.0 5552 +Phenotype MP:0008942 abnormal induced cell death 0.04376368021590482 -0.24998443951245924 1.0 5553 +Phenotype MP:0009923 decreased transitional stage T1 B cell number 0.04372635267668157 -0.2506609941008784 1.0 5554 +Phenotype MP:0030071 abnormal face shape 0.043723271072236614 -0.25071684759859914 1.0 5555 +Phenotype MP:0014138 abnormal germ layer morphology 0.04372180577589113 -0.2507434058177199 1.0 5556 +Phenotype MP:0004141 abnormal enteroendocrine cell morphology 0.043699516050675014 -0.25114740287146015 1.0 5557 +Phenotype MP:0002715 decreased glycogen catabolism rate 0.04369392600230593 -0.2512487214408673 1.0 5558 +Phenotype MP:0005445 abnormal neurotransmitter secretion 0.04364841680815079 -0.2520735669774768 1.0 5559 +Phenotype MP:0002546 mydriasis 0.0436453319746084 -0.2521294790019778 1.0 5560 +Phenotype MP:0002769 abnormal vas deferens morphology 0.04363745591453161 -0.2522722311012188 1.0 5561 +Phenotype MP:0004524 short cochlear hair cell stereocilia 0.04362758973290115 -0.2524510537772152 1.0 5562 +Phenotype MP:0012114 absent inner cell mass proliferation 0.043598395197699036 -0.2529801992059996 1.0 5563 +Phenotype MP:0001675 abnormal ectoderm development 0.043583367639370096 -0.25325257085845104 1.0 5564 +Biological Process GO:0098916 anterograde trans-synaptic signaling 0.043520957318452846 -0.2543837461210029 1.0 5565 +Biological Process GO:0007268 chemical synaptic transmission 0.043520957318452846 -0.2543837461210029 1.0 5565 +Biological Process GO:0016525 negative regulation of angiogenesis 0.04350565463943512 -0.25466110428390315 1.0 5567 +Biological Process GO:2000181 negative regulation of blood vessel morphogenesis 0.04350565463943512 -0.25466110428390315 1.0 5567 +Biological Process GO:1901343 negative regulation of vasculature development 0.04350565463943512 -0.25466110428390315 1.0 5567 +Biological Process GO:0072089 stem cell proliferation 0.04350453785747388 -0.2546813457457263 1.0 5570 +Biological Process GO:0042053 regulation of dopamine metabolic process 0.0434761696973508 -0.255195513282501 1.0 5571 +Phenotype MP:0004889 increased energy expenditure 0.04346031177054388 -0.25548293520656273 1.0 5572 +Phenotype MP:0001729 impaired embryo implantation 0.04344569290726108 -0.255747899338602 1.0 5573 +Phenotype MP:0008997 increased blood osmolality 0.0433780195683634 -0.25697446580662 1.0 5574 +Biological Process GO:0097152 mesenchymal cell apoptotic process 0.04337568797741054 -0.2570167254516516 1.0 5575 +Biological Process GO:0042733 embryonic digit morphogenesis 0.04337358068736297 -0.2570549196851982 1.0 5576 +Phenotype MP:0002741 small olfactory bulb 0.04337264448690559 -0.2570718881414185 1.0 5577 +Phenotype MP:0005139 increased prolactin level 0.043363745875952486 -0.2572331737818908 1.0 5578 +Biological Process GO:1902914 regulation of protein polyubiquitination 0.04335936917067151 -0.25731250073731343 1.0 5579 +Phenotype MP:0008458 abnormal cortical ventricular zone morphology 0.043312638636703316 -0.2581594828270347 1.0 5580 +Phenotype MP:0000045 abnormal hair cell morphology 0.04330564208068666 -0.2582862940815321 1.0 5581 +Phenotype MP:0009888 palatal shelves fail to meet at midline 0.04330151188029285 -0.2583611531824979 1.0 5582 +Phenotype MP:0009403 increased variability of skeletal muscle fiber size 0.04322129945576181 -0.2598149882060212 1.0 5583 +Phenotype MP:0004966 abnormal inner cell mass proliferation 0.043220464744811116 -0.25983011718412813 1.0 5584 +Phenotype MP:0005419 decreased circulating serum albumin level 0.04322006963984737 -0.25983727838686727 1.0 5585 +Biological Process GO:1904889 regulation of excitatory synapse assembly 0.04320055632781261 -0.2601909534768166 1.0 5586 +Phenotype MP:0002634 abnormal sensorimotor gating 0.043183645732279397 -0.26049745482244424 1.0 5587 +Phenotype MP:0006104 abnormal tectum morphology 0.043163090478103405 -0.2608700149166341 1.0 5588 +Phenotype MP:0006103 abnormal midbrain roof plate morphology 0.043163090478103405 -0.2608700149166341 1.0 5588 +Phenotype MP:0004411 decreased endocochlear potential 0.043157412450885224 -0.2609729280860411 1.0 5590 +Biological Process GO:0006937 regulation of muscle contraction 0.043153556857190356 -0.2610428099925268 1.0 5591 +Phenotype MP:0000066 osteoporosis 0.04314604405955158 -0.261178978028785 1.0 5592 +Phenotype MP:0004180 failure of initiation of embryo turning 0.0431362460005934 -0.2613565659942308 1.0 5593 +Phenotype MP:0008006 increased stomach pH 0.043106263602524786 -0.2618999912884569 1.0 5594 +Biological Process GO:0009150 purine ribonucleotide metabolic process 0.043099541519106555 -0.2620218277790206 1.0 5595 +Phenotype MP:0005333 decreased heart rate 0.04309421212860376 -0.26211842197390123 1.0 5596 +Phenotype MP:0008032 abnormal lipolysis 0.043070360855496315 -0.26255072178782596 1.0 5597 +Phenotype MP:0003052 omphalocele 0.04303639791859026 -0.26316629359561516 1.0 5598 +Phenotype MP:0003449 abnormal intestinal goblet cell morphology 0.04299871348256934 -0.26384931687098984 1.0 5599 +Biological Process GO:1901861 regulation of muscle tissue development 0.042990573326237125 -0.2639968556649101 1.0 5600 +Phenotype MP:0011104 embryonic lethality before implantation, incomplete penetrance 0.04297183647214564 -0.26433645760149416 1.0 5601 +Phenotype MP:0003451 absent olfactory bulb 0.042958915523823915 -0.2645706473460017 1.0 5602 +Phenotype MP:0008788 abnormal fetal cardiomyocyte morphology 0.04293833608011011 -0.2649436458709894 1.0 5603 +Biological Process GO:0071453 cellular response to oxygen levels 0.04293472295577527 -0.26500913306618434 1.0 5604 +Biological Process GO:0035265 organ growth 0.042908511523597204 -0.26548421031687175 1.0 5605 +Phenotype MP:0011109 lethality throughout fetal growth and development, incomplete penetrance 0.042884242772234904 -0.26592407684520536 1.0 5606 +Phenotype MP:0000459 abnormal presacral vertebrae morphology 0.04287937968065636 -0.2660122194602781 1.0 5607 +Phenotype MP:0001488 increased startle reflex 0.04286755011681198 -0.2662266280675544 1.0 5608 +Biological Process GO:0071456 cellular response to hypoxia 0.04285091203085012 -0.26652819022874286 1.0 5609 +Phenotype MP:0008380 abnormal gonial bone morphology 0.04282708835736804 -0.266959989804678 1.0 5610 +Biological Process GO:0034104 negative regulation of tissue remodeling 0.042816926165440194 -0.26714417761132814 1.0 5611 +Biological Process GO:0098810 neurotransmitter reuptake 0.042812728106380926 -0.26722026663777093 1.0 5612 +Phenotype MP:0013209 abnormal motile cilium physiology 0.04279219133458889 -0.26759249174224725 1.0 5613 +Biological Process GO:0030501 positive regulation of bone mineralization 0.04275452939987945 -0.2682751071856072 1.0 5614 +Phenotype MP:0000447 flattened snout 0.04272728890585753 -0.2687688359875812 1.0 5615 +Biological Process GO:0016125 sterol metabolic process 0.04272421468575294 -0.26882455564552954 1.0 5616 +Phenotype MP:0000402 abnormal zigzag hair morphology 0.04268344360187848 -0.2695635238294516 1.0 5617 +Phenotype MP:0009050 dilated proximal convoluted tubule 0.042673418076553116 -0.2697452345797805 1.0 5618 +Biological Process GO:0045736 negative regulation of cyclin-dependent protein serine/threonine kinase activity 0.04267171885829946 -0.26977603258924376 1.0 5619 +Phenotype MP:0004701 decreased circulating insulin-like growth factor I level 0.042638238222493574 -0.27038286278081314 1.0 5620 +Biological Process GO:0030509 BMP signaling pathway 0.04263376128804963 -0.27046400637085766 1.0 5621 +Biological Process GO:0044342 type B pancreatic cell proliferation 0.04261940083355564 -0.27072428689247424 1.0 5622 +Phenotype MP:0011146 abnormal mesenchymal cell proliferation involved in lung development 0.04261297681352472 -0.27084072104051776 1.0 5623 +Biological Process GO:1905145 cellular response to acetylcholine 0.04261106885731347 -0.2708753023859823 1.0 5624 +Biological Process GO:0060586 multicellular organismal-level iron ion homeostasis 0.04255420114287911 -0.2719060189543413 1.0 5625 +Phenotype MP:0011197 abnormal proamniotic cavity morphology 0.042532673924926656 -0.27229619570814567 1.0 5626 +Biological Process GO:0106056 regulation of calcineurin-mediated signaling 0.04252121055664426 -0.27250396709012203 1.0 5627 +Phenotype MP:0000489 abnormal large intestine morphology 0.04251597229511905 -0.27259890958951966 1.0 5628 +Phenotype MP:0013151 abnormal incidence of induced tumors 0.04249721831554898 -0.2729388219221641 1.0 5629 +Phenotype MP:0003161 absent lateral semicircular canal 0.042478010172185776 -0.27328696588766005 1.0 5630 +Biological Process GO:1904030 negative regulation of cyclin-dependent protein kinase activity 0.04247196926500996 -0.2733964561876654 1.0 5631 +Biological Process GO:0002691 regulation of cellular extravasation 0.042467154019129816 -0.2734837316085039 1.0 5632 +Phenotype MP:0008569 lethality at weaning 0.042441285737597756 -0.27395258931863475 1.0 5633 +Biological Process GO:0048534 hematopoietic or lymphoid organ development 0.0424242611349539 -0.2742611570215799 1.0 5634 +Biological Process GO:0048730 epidermis morphogenesis 0.04238841060334009 -0.2749109411264341 1.0 5635 +Biological Process GO:0048857 neural nucleus development 0.04238828992159671 -0.2749131284602075 1.0 5636 +Phenotype MP:0008840 abnormal spike wave discharge 0.04237301265300997 -0.27519002606385223 1.0 5637 +Biological Process GO:0010453 regulation of cell fate commitment 0.04232996384606036 -0.2759702775477107 1.0 5638 +Phenotype MP:0004016 decreased bone mass 0.042319884209633174 -0.2761529690515257 1.0 5639 +Phenotype MP:0004959 abnormal prostate gland size 0.042311653738747235 -0.27630214477965037 1.0 5640 +Phenotype MP:0011346 renal tubule atrophy 0.04230164987224583 -0.2764834629678915 1.0 5641 +Phenotype MP:0010402 ventricular septal defect 0.042300433600583 -0.27650550766173887 1.0 5642 +Phenotype MP:0001485 abnormal pinna reflex 0.04228942036594152 -0.27670512045661033 1.0 5643 +Phenotype MP:0001261 obese 0.042285190153058205 -0.2767817922650325 1.0 5644 +Phenotype MP:0021158 decreased heart left ventricle wall thickness 0.04223313633928738 -0.2777252577943496 1.0 5645 +Biological Process GO:0032370 positive regulation of lipid transport 0.04222473515577352 -0.27787752765656737 1.0 5646 +Phenotype MP:0030900 decreased ulna size 0.0422050998359943 -0.278233414113809 1.0 5647 +Phenotype MP:0004359 short ulna 0.0422050998359943 -0.278233414113809 1.0 5647 +Biological Process GO:1903844 regulation of cellular response to transforming growth factor beta stimulus 0.04219959055139366 -0.27833326885518833 1.0 5649 +Biological Process GO:0017015 regulation of transforming growth factor beta receptor signaling pathway 0.04219959055139366 -0.27833326885518833 1.0 5649 +Biological Process GO:1903670 regulation of sprouting angiogenesis 0.04218086626335138 -0.27867264303450734 1.0 5651 +Biological Process GO:0140448 signaling receptor ligand precursor processing 0.04217645452425001 -0.27875260497129856 1.0 5652 +Biological Process GO:1901142 insulin metabolic process 0.042150920972395145 -0.2792153957693398 1.0 5653 +Biological Process GO:0007009 plasma membrane organization 0.04214176826852556 -0.27938128679586516 1.0 5654 +Phenotype MP:0013522 decreased memory-marker CD4-positive NK T cell number 0.04212130249321944 -0.27975222510246234 1.0 5655 +Phenotype MP:0004255 abnormal spongiotrophoblast layer morphology 0.04212006673789148 -0.279774622934055 1.0 5656 +Phenotype MP:0003730 abnormal photoreceptor inner segment morphology 0.042098793708433946 -0.2801601925694653 1.0 5657 +Biological Process GO:0001942 hair follicle development 0.042095983678350324 -0.2802111238332515 1.0 5658 +Phenotype MP:0008668 abnormal interleukin-12b secretion 0.042019988451289514 -0.281588522950253 1.0 5659 +Phenotype MP:0006380 abnormal spermatid morphology 0.04198796028474849 -0.28216902741111183 1.0 5660 +Phenotype MP:0011108 embryonic lethality during organogenesis, incomplete penetrance 0.04189997619843355 -0.2837637223345629 1.0 5661 +Phenotype MP:0014273 abnormal skin vasculature morphology 0.041848189814187364 -0.28470234075432654 1.0 5662 +Biological Process GO:0035886 vascular associated smooth muscle cell differentiation 0.041834065013370614 -0.28495835009761394 1.0 5663 +Biological Process GO:0050900 leukocyte migration 0.041816458276823676 -0.28527746886744965 1.0 5664 +Phenotype MP:0006203 eye hemorrhage 0.04180444770732894 -0.285495158167904 1.0 5665 +Phenotype MP:0003105 abnormal heart atrium morphology 0.04178516392636389 -0.28584467305062755 1.0 5666 +Phenotype MP:0003662 abnormal long bone epiphyseal plate proliferative zone 0.04177402780826589 -0.28604651308490675 1.0 5667 +Phenotype MP:0005410 abnormal fertilization 0.04170730888094709 -0.2872557810235717 1.0 5668 +Biological Process GO:0001961 positive regulation of cytokine-mediated signaling pathway 0.04166585256592881 -0.2880071688923734 1.0 5669 +Biological Process GO:0060760 positive regulation of response to cytokine stimulus 0.04166585256592881 -0.2880071688923734 1.0 5669 +Phenotype MP:0020351 decreased vocalization 0.041633351487428194 -0.28859624479305485 1.0 5671 +Phenotype MP:0012501 abnormal pericardial cavity morphology 0.04162938662468174 -0.28866810718043384 1.0 5672 +Phenotype MP:0003106 abnormal fear-related response 0.04160714046650882 -0.28907131458975627 1.0 5673 +Phenotype MP:0030190 small snout 0.04160167678178561 -0.28917034284198184 1.0 5674 +Biological Process GO:0009259 ribonucleotide metabolic process 0.04159360708514681 -0.2893166045672855 1.0 5675 +Phenotype MP:0001179 thick pulmonary interalveolar septum 0.041590237094082494 -0.2893776850179377 1.0 5676 +Phenotype MP:0008481 increased spleen germinal center number 0.04154476875368118 -0.2902017900879861 1.0 5677 +Biological Process GO:0046530 photoreceptor cell differentiation 0.041489979370358476 -0.29119483729803475 1.0 5678 +Phenotype MP:0020218 abnormal tear production 0.04148956764761702 -0.29120229969485184 1.0 5679 +Phenotype MP:0002919 enhanced paired-pulse facilitation 0.04148925273759407 -0.29120800737945673 1.0 5680 +Biological Process GO:0045069 regulation of viral genome replication 0.041485106898187296 -0.29128314993457477 1.0 5681 +Phenotype MP:0010958 abnormal tricarboxylic acid cycle 0.04147631475407032 -0.29144250588377907 1.0 5682 +Biological Process GO:0007178 cell surface receptor protein serine/threonine kinase signaling pathway 0.041470178987567 -0.29155371549115405 1.0 5683 +Phenotype MP:0003053 delayed tooth eruption 0.04145938802288429 -0.2917492996850622 1.0 5684 +Phenotype MP:0010995 abnormal lung alveolus development 0.041457932653046425 -0.2917756779881099 1.0 5685 +Phenotype MP:0030384 short facial bone 0.04141701630234007 -0.2925172791058848 1.0 5686 +Phenotype MP:0003968 abnormal growth hormone level 0.04138346765435785 -0.29312534200528667 1.0 5687 +Biological Process GO:1905144 response to acetylcholine 0.0413710996694292 -0.2933495093928804 1.0 5688 +Biological Process GO:1904029 regulation of cyclin-dependent protein kinase activity 0.04136465586558513 -0.29346630211879526 1.0 5689 +Phenotype MP:0002275 abnormal type II pneumocyte morphology 0.041305722677748125 -0.2945344550019207 1.0 5690 +Phenotype MP:0009653 abnormal palate development 0.04130393558910572 -0.29456684564556046 1.0 5691 +Biological Process GO:0072331 signal transduction by p53 class mediator 0.041298954812033606 -0.2946571212879456 1.0 5692 +Phenotype MP:0004982 abnormal osteoclast morphology 0.04127092195613402 -0.29516521149908764 1.0 5693 +Biological Process GO:2000191 regulation of fatty acid transport 0.041210973291576525 -0.2962517697057082 1.0 5694 +Phenotype MP:0002196 absent corpus callosum 0.041147518469954125 -0.29740187634598764 1.0 5695 +Biological Process GO:0022404 molting cycle process 0.04114523412968962 -0.2974432795812295 1.0 5696 +Biological Process GO:0022405 hair cycle process 0.04114523412968962 -0.2974432795812295 1.0 5696 +Phenotype MP:0001780 decreased brown adipose tissue amount 0.04112115455266685 -0.29787971736043894 1.0 5698 +Biological Process GO:0010659 cardiac muscle cell apoptotic process 0.04110636684743674 -0.2981477417208391 1.0 5699 +Biological Process GO:0018126 protein hydroxylation 0.04109941514963411 -0.29827373992869144 1.0 5700 +Phenotype MP:0002826 tonic seizures 0.04108762196136917 -0.29848748923547047 1.0 5701 +Phenotype MP:0012349 increased susceptibility to induction of seizure by inducing agent 0.04106320554624299 -0.29893003214159586 1.0 5702 +Phenotype MP:0004132 absent embryonic cilia 0.0410483604912808 -0.29919909595504285 1.0 5703 +Biological Process GO:0003338 metanephros morphogenesis 0.04103545825056265 -0.2994329466277739 1.0 5704 +Phenotype MP:0006263 decreased systemic arterial diastolic blood pressure 0.041031553492717476 -0.29950371962518524 1.0 5705 +Phenotype MP:0004884 abnormal testis physiology 0.041019003641286744 -0.29973118330873155 1.0 5706 +Biological Process GO:0006753 nucleoside phosphate metabolic process 0.0409976668601737 -0.3001179084308402 1.0 5707 +Phenotype MP:0009232 abnormal sperm nucleus morphology 0.04099567043523178 -0.30015409325531556 1.0 5708 +Phenotype MP:0001284 absent vibrissae 0.04096314645644661 -0.30074358421932335 1.0 5709 +Phenotype MP:0006090 abnormal utricle morphology 0.04091968843140892 -0.3015312527036302 1.0 5710 +Phenotype MP:0001728 failure of embryo implantation 0.040917750515896856 -0.3015663770557557 1.0 5711 +Biological Process GO:0009101 glycoprotein biosynthetic process 0.040897877678555794 -0.3019265684738824 1.0 5712 +Biological Process GO:0090101 negative regulation of transmembrane receptor protein serine/threonine kinase signaling pathway 0.04088224875160362 -0.302209839818889 1.0 5713 +Phenotype MP:0004415 abnormal cochlear nerve compound action potential 0.040868908011134186 -0.3024516382166758 1.0 5714 +Phenotype MP:0011964 increased total retina thickness 0.04084874858628296 -0.3028170239792201 1.0 5715 +Phenotype MP:0005645 abnormal hypothalamus physiology 0.04083242222895267 -0.30311293611792056 1.0 5716 +Phenotype MP:0008150 decreased diameter of long bones 0.04080675503296849 -0.3035781491905287 1.0 5717 +Phenotype MP:0008070 absent T cells 0.040797060376884464 -0.30375386299843776 1.0 5718 +Phenotype MP:0006271 abnormal involution of the mammary gland 0.04079411181105308 -0.30380730519645005 1.0 5719 +Phenotype MP:0002725 abnormal vein morphology 0.04078403739941505 -0.30398990200194975 1.0 5720 +Biological Process GO:0055074 calcium ion homeostasis 0.04077842009596622 -0.30409171456452244 1.0 5721 +Phenotype MP:0008217 abnormal B cell activation 0.04076942178116827 -0.30425480731832494 1.0 5722 +Phenotype MP:0005188 small penis 0.04074487060397869 -0.30469979276136094 1.0 5723 +Biological Process GO:0045839 negative regulation of mitotic nuclear division 0.04073366625248509 -0.30490286951303 1.0 5724 +Phenotype MP:0013287 abnormal acrosome reaction 0.04072239114400611 -0.3051072287216763 1.0 5725 +Phenotype MP:0003131 increased erythrocyte cell number 0.04071523702511515 -0.3052368957734695 1.0 5726 +Phenotype MP:0009084 blind uterus 0.040714869009944143 -0.30524356597883884 1.0 5727 +Biological Process GO:0009314 response to radiation 0.04069686179126197 -0.3055699434116298 1.0 5728 +Biological Process GO:0070509 calcium ion import 0.04065849105240704 -0.306265405796066 1.0 5729 +Phenotype MP:0005313 absent adrenal gland 0.040629351110904266 -0.30679356172437555 1.0 5730 +Phenotype MP:0001192 scaly skin 0.040625868838923274 -0.3068566772454061 1.0 5731 +Biological Process GO:0006694 steroid biosynthetic process 0.04057550600986126 -0.30776949399670295 1.0 5732 +Phenotype MP:0011584 increased alkaline phosphatase activity 0.040564673976837495 -0.30796582254652527 1.0 5733 +Biological Process GO:0006779 porphyrin-containing compound biosynthetic process 0.040523534698781005 -0.30871146418035766 1.0 5734 +Biological Process GO:0033014 tetrapyrrole biosynthetic process 0.040523534698781005 -0.30871146418035766 1.0 5734 +Biological Process GO:0016339 calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules 0.04050498015227444 -0.3090477618264461 1.0 5736 +Phenotype MP:0000522 kidney cortex cyst 0.04047704626575688 -0.30955405823625776 1.0 5737 +Biological Process GO:0120254 olefinic compound metabolic process 0.04047374592167541 -0.30961387634851867 1.0 5738 +Biological Process GO:2000628 regulation of miRNA metabolic process 0.040405759859380774 -0.31084611086895914 1.0 5739 +Phenotype MP:0013286 abnormal sperm capacitation 0.040388954078838246 -0.3111507124627049 1.0 5740 +Phenotype MP:0008580 photoreceptor inner segment degeneration 0.040377097281071306 -0.3113656146796768 1.0 5741 +Biological Process GO:0042129 regulation of T cell proliferation 0.04037639192481601 -0.3113783991283954 1.0 5742 +Phenotype MP:0005154 increased B cell proliferation 0.04033346692971962 -0.31215640654583166 1.0 5743 +Biological Process GO:0006119 oxidative phosphorylation 0.040323970222401195 -0.3123285325698036 1.0 5744 +Phenotype MP:0003860 abnormal carbon dioxide level 0.040301107364918876 -0.3127429175374684 1.0 5745 +Phenotype MP:0004358 bowed tibia 0.04028779708479613 -0.31298416384723265 1.0 5746 +Biological Process GO:0045132 meiotic chromosome segregation 0.040287571635940767 -0.31298825006509545 1.0 5747 +Biological Process GO:0043123 positive regulation of canonical NF-kappaB signal transduction 0.04024527031100522 -0.3137549535788252 1.0 5748 +Phenotype MP:0008391 abnormal primordial germ cell morphology 0.0402335344017376 -0.31396766471461135 1.0 5749 +Biological Process GO:0050892 intestinal absorption 0.04022211720553992 -0.31417459923628516 1.0 5750 +Biological Process GO:0003177 pulmonary valve development 0.040220768113674366 -0.31419905127118575 1.0 5751 +Biological Process GO:0007218 neuropeptide signaling pathway 0.04020724208214055 -0.3144442080344691 1.0 5752 +Biological Process GO:0003128 heart field specification 0.04020666513538951 -0.31445466508521 1.0 5753 +Biological Process GO:0032303 regulation of icosanoid secretion 0.040203201607767025 -0.3145174408682878 1.0 5754 +Biological Process GO:0008090 retrograde axonal transport 0.0401830415553559 -0.3148828380052365 1.0 5755 +Biological Process GO:0021794 thalamus development 0.040177024004738326 -0.3149919049720412 1.0 5756 +Phenotype MP:0005587 abnormal Meckel's cartilage morphology 0.040166830637122786 -0.31517665783213444 1.0 5757 +Phenotype MP:0014172 decreased fatty acid oxidation 0.04015612862238849 -0.3153706298250514 1.0 5758 +Biological Process GO:0097306 cellular response to alcohol 0.04014723313948576 -0.3155318587702023 1.0 5759 +Phenotype MP:0002906 increased susceptibility to pharmacologically induced seizures 0.04014097603546429 -0.31564526759714423 1.0 5760 +Biological Process GO:0097475 motor neuron migration 0.04013282379459704 -0.3157930254209765 1.0 5761 +Phenotype MP:0010502 ventricle myocardium hypoplasia 0.04012738164124874 -0.31589166342110425 1.0 5762 +Phenotype MP:0003387 aorta coarctation 0.04012667785873425 -0.31590441934606833 1.0 5763 +Biological Process GO:0090287 regulation of cellular response to growth factor stimulus 0.040124948163250296 -0.3159357697495664 1.0 5764 +Phenotype MP:0006307 abnormal seminiferous tubule size 0.04011410274306004 -0.31613234093924925 1.0 5765 +Biological Process GO:0098900 regulation of action potential 0.04009243830857123 -0.3165250047168224 1.0 5766 +Biological Process GO:0071677 positive regulation of mononuclear cell migration 0.040057432133716486 -0.3171594850151172 1.0 5767 +Biological Process GO:0030514 negative regulation of BMP signaling pathway 0.040028004218767066 -0.3176928604076809 1.0 5768 +Phenotype MP:0008683 abnormal interleukin-18 secretion 0.04002305937077755 -0.3177824848422394 1.0 5769 +Phenotype MP:0000480 increased rib number 0.04002042813960083 -0.31783017540965547 1.0 5770 +Biological Process GO:1903510 mucopolysaccharide metabolic process 0.0399769504514782 -0.31861820028365784 1.0 5771 +Phenotype MP:0006011 abnormal endolymphatic duct morphology 0.03997480072542581 -0.3186571636617656 1.0 5772 +Phenotype MP:0010298 increased respiratory system tumor incidence 0.03995981781432967 -0.3189287260915669 1.0 5773 +Phenotype MP:0008014 increased lung tumor incidence 0.03995981781432967 -0.3189287260915669 1.0 5773 +Biological Process GO:0060122 inner ear receptor cell stereocilium organization 0.03994920208155017 -0.31912113424037214 1.0 5775 +Phenotype MP:0010034 abnormal erythrocyte clearance 0.039938202705998904 -0.31932049584185485 1.0 5776 +Phenotype MP:0010035 increased erythrocyte clearance 0.039938202705998904 -0.31932049584185485 1.0 5776 +Biological Process GO:0010970 transport along microtubule 0.03991804179539882 -0.31968590853331613 1.0 5778 +Phenotype MP:0005344 increased circulating bilirubin level 0.03987082201594261 -0.3205417581049734 1.0 5779 +Biological Process GO:0032330 regulation of chondrocyte differentiation 0.03985473159483888 -0.32083339394419164 1.0 5780 +Biological Process GO:0042773 ATP synthesis coupled electron transport 0.039850852089096445 -0.3209037092520169 1.0 5781 +Biological Process GO:0042775 mitochondrial ATP synthesis coupled electron transport 0.039850852089096445 -0.3209037092520169 1.0 5781 +Phenotype MP:0012138 decreased forebrain size 0.03983874577258939 -0.3211231339489602 1.0 5783 +Phenotype MP:0005579 absent outer ear 0.039836441865294 -0.321164891832936 1.0 5784 +Biological Process GO:0070918 regulatory ncRNA processing 0.039834669873251016 -0.32119700885356667 1.0 5785 +Phenotype MP:0000755 hindlimb paralysis 0.039809230119435934 -0.32165809957987757 1.0 5786 +Phenotype MP:0006334 abnormal susceptibility to hearing loss 0.03980791339051182 -0.32168196504258556 1.0 5787 +Phenotype MP:0003648 abnormal radial glial cell morphology 0.03978513118092497 -0.32209488828239846 1.0 5788 +Biological Process GO:0002761 regulation of myeloid leukocyte differentiation 0.03974507874676636 -0.32282083107614373 1.0 5789 +Biological Process GO:0061387 regulation of extent of cell growth 0.039735468594247814 -0.32299501327291125 1.0 5790 +Phenotype MP:0002023 increased B cell derived lymphoma incidence 0.03970795790866177 -0.32349363924588187 1.0 5791 +Biological Process GO:0021761 limbic system development 0.03970130502209279 -0.32361422155664055 1.0 5792 +Biological Process GO:0030178 negative regulation of Wnt signaling pathway 0.03967651925665128 -0.32406345886737364 1.0 5793 +Phenotype MP:0010957 abnormal aerobic respiration 0.039658453888181344 -0.3243908902540696 1.0 5794 +Phenotype MP:0002644 decreased circulating triglyceride level 0.03960706169344186 -0.32532236406357995 1.0 5795 +Phenotype MP:0009160 abnormal pancreatic acinar cell zymogen granule morphology 0.03953410168173266 -0.3266447504764037 1.0 5796 +Phenotype MP:0002724 enhanced wound healing 0.03951496830228929 -0.32699153935999326 1.0 5797 +Biological Process GO:0030851 granulocyte differentiation 0.03951123361139719 -0.32705922992604597 1.0 5798 +Phenotype MP:0004129 abnormal respiratory quotient 0.0394898086963017 -0.327447552459917 1.0 5799 +Biological Process GO:0030330 DNA damage response, signal transduction by p53 class mediator 0.03948470643780144 -0.3275400299302106 1.0 5800 +Phenotype MP:0010030 abnormal orbit morphology 0.039471111256928926 -0.3277864400121792 1.0 5801 +Biological Process GO:0051450 myoblast proliferation 0.03946195712568601 -0.3279523569095762 1.0 5802 +Phenotype MP:0005085 abnormal gallbladder physiology 0.039460877903964686 -0.3279719175991549 1.0 5803 +Phenotype MP:0004818 increased skeletal muscle mass 0.03945467314872464 -0.3280843776143347 1.0 5804 +Biological Process GO:0002093 auditory receptor cell morphogenesis 0.03944465959520571 -0.3282658713779362 1.0 5805 +Biological Process GO:0086003 cardiac muscle cell contraction 0.039443202509500175 -0.3282922807807609 1.0 5806 +Phenotype MP:0004077 abnormal striatum morphology 0.03944268353630376 -0.32830168707178914 1.0 5807 +Biological Process GO:0006778 porphyrin-containing compound metabolic process 0.03943603117817973 -0.328422259804583 1.0 5808 +Phenotype MP:0005216 abnormal pancreatic alpha cell morphology 0.03942678206922556 -0.32858989815503264 1.0 5809 +Biological Process GO:0009303 rRNA transcription 0.03942479031311774 -0.32862599835777306 1.0 5810 +Phenotype MP:0003794 delayed somite formation 0.039416416199737014 -0.3287777775789477 1.0 5811 +Phenotype MP:0009586 increased platelet aggregation 0.03940904945304147 -0.3289112984694834 1.0 5812 +Phenotype MP:0006354 abnormal fourth pharyngeal arch artery morphology 0.039404758980184806 -0.3289890624785251 1.0 5813 +Phenotype MP:0000852 small cerebellum 0.039396737057009634 -0.3291344583188362 1.0 5814 +Phenotype MP:0008789 abnormal olfactory epithelium morphology 0.03937831707433881 -0.3294683170208528 1.0 5815 +Phenotype MP:0000284 double outlet right ventricle 0.03937299683789053 -0.32956474530022667 1.0 5816 +Biological Process GO:0006473 protein acetylation 0.03936900774649588 -0.3296370468272717 1.0 5817 +Biological Process GO:2000677 regulation of transcription regulatory region DNA binding 0.03936494002408464 -0.32971077352662037 1.0 5818 +Phenotype MP:0004502 decreased incidence of tumors by chemical induction 0.03935623657462195 -0.3298685219019911 1.0 5819 +Biological Process GO:2000649 regulation of sodium ion transmembrane transporter activity 0.03934165404811629 -0.3301328274368173 1.0 5820 +Biological Process GO:0061053 somite development 0.03934093113289017 -0.33014593013856114 1.0 5821 +Phenotype MP:0008285 abnormal hippocampus granule cell layer 0.039331886526682625 -0.3303098619154071 1.0 5822 +Phenotype MP:0005153 abnormal B cell proliferation 0.0393248258119242 -0.33043783603496424 1.0 5823 +Biological Process GO:1901137 carbohydrate derivative biosynthetic process 0.039292876283350986 -0.33101691519752996 1.0 5824 +Phenotype MP:0020885 abnormal phosphate level 0.03927614369997223 -0.33132019010652664 1.0 5825 +Biological Process GO:0007584 response to nutrient 0.039274065173124706 -0.33135786301251263 1.0 5826 +Phenotype MP:0005498 hyporesponsive to tactile stimuli 0.03926417679048855 -0.33153708807753834 1.0 5827 +Phenotype MP:0006027 impaired lung alveolus development 0.03919605081461386 -0.3327718585051545 1.0 5828 +Phenotype MP:0002621 delayed neural tube closure 0.03918182770515233 -0.33302964967403476 1.0 5829 +Biological Process GO:0048701 embryonic cranial skeleton morphogenesis 0.03916072089782008 -0.33341220656486287 1.0 5830 +Biological Process GO:0060712 spongiotrophoblast layer development 0.03914633826221425 -0.33367288911493626 1.0 5831 +Phenotype MP:0005412 vascular stenosis 0.03912659870520707 -0.33403066485221955 1.0 5832 +Biological Process GO:0006643 membrane lipid metabolic process 0.039114053289239115 -0.334258048143842 1.0 5833 +Biological Process GO:0045926 negative regulation of growth 0.039107403838591126 -0.3343785681791826 1.0 5834 +Phenotype MP:0011239 abnormal skin coloration 0.039099229391333146 -0.33452672848964665 1.0 5835 +Biological Process GO:0016048 detection of temperature stimulus 0.03908674970294046 -0.33475292048139876 1.0 5836 +Phenotype MP:0013213 abnormal embryonic neuroepithelium primary cilium morphology 0.03907090936364521 -0.3350400236351379 1.0 5837 +Phenotype MP:0008714 increased lung carcinoma incidence 0.03905678730779827 -0.3352959832263667 1.0 5838 +Biological Process GO:0095500 acetylcholine receptor signaling pathway 0.03904854899344812 -0.3354453011157968 1.0 5839 +Biological Process GO:0006882 intracellular zinc ion homeostasis 0.03901977418686986 -0.33596683904265984 1.0 5840 +Biological Process GO:0042558 pteridine-containing compound metabolic process 0.03900352356968162 -0.3362613784056109 1.0 5841 +Biological Process GO:0051145 smooth muscle cell differentiation 0.0390022739043977 -0.3362840283525245 1.0 5842 +Phenotype MP:0000934 abnormal telencephalon development 0.03895993644223117 -0.337051386846731 1.0 5843 +Biological Process GO:0098609 cell-cell adhesion 0.038936647798920476 -0.3374734891020035 1.0 5844 +Phenotype MP:0009361 abnormal primordial ovarian follicle morphology 0.03892773236234415 -0.3376350797037145 1.0 5845 +Phenotype MP:0004395 increased cochlear inner hair cell number 0.03892653566112103 -0.3376567696870435 1.0 5846 +Phenotype MP:0001613 abnormal vasodilation 0.03887286112267896 -0.3386296105444886 1.0 5847 +Phenotype MP:0003412 abnormal afterhyperpolarization 0.038832805239343515 -0.3393556158539116 1.0 5848 +Phenotype MP:0009749 enhanced behavioral response to addictive substance 0.03879299054084728 -0.3400772497337408 1.0 5849 +Phenotype MP:0011683 dual inferior vena cava 0.03877781092878463 -0.3403523773313568 1.0 5850 +Biological Process GO:0050873 brown fat cell differentiation 0.03877031238160422 -0.3404882870807523 1.0 5851 +Biological Process GO:0051881 regulation of mitochondrial membrane potential 0.03872905390557535 -0.34123608915528947 1.0 5852 +Phenotype MP:0001700 abnormal embryo turning 0.0387254712614723 -0.34130102390204825 1.0 5853 +Phenotype MP:0004560 abnormal chorionic plate morphology 0.038723077952965035 -0.3413444021660803 1.0 5854 +Phenotype MP:0005121 decreased circulating prolactin level 0.03868830675519752 -0.34197462354911184 1.0 5855 +Biological Process GO:0097499 protein localization to non-motile cilium 0.03868799389914668 -0.34198029400586083 1.0 5856 +Biological Process GO:1902893 regulation of miRNA transcription 0.03860638816255135 -0.34345938254702296 1.0 5857 +Phenotype MP:0004651 increased thoracic vertebrae number 0.038471147233949954 -0.3459105987989196 1.0 5858 +Phenotype MP:0006063 abnormal inferior vena cava morphology 0.03842197943707237 -0.34680175581789785 1.0 5859 +Biological Process GO:0043403 skeletal muscle tissue regeneration 0.03841811058380695 -0.34687187805159203 1.0 5860 +Biological Process GO:0099150 regulation of postsynaptic specialization assembly 0.0383900860733275 -0.3473798170035726 1.0 5861 +Phenotype MP:0010148 abnormal exocrine pancreas physiology 0.03838987252470083 -0.3473836875320412 1.0 5862 +Biological Process GO:0003209 cardiac atrium morphogenesis 0.038371973355488365 -0.3477081065886299 1.0 5863 +Phenotype MP:0002745 abnormal atrioventricular valve morphology 0.038343565647517286 -0.34822299092266956 1.0 5864 +Phenotype MP:0031434 increased miscarriage rate 0.03833698633404192 -0.3483422397350218 1.0 5865 +Phenotype MP:0004244 abnormal miscarriage rate 0.03833698633404192 -0.3483422397350218 1.0 5865 +Biological Process GO:0005996 monosaccharide metabolic process 0.0383218700879302 -0.348616218836762 1.0 5867 +Biological Process GO:1902683 regulation of receptor localization to synapse 0.03831657938865196 -0.3487121117605155 1.0 5868 +Biological Process GO:0021549 cerebellum development 0.0382712696857892 -0.34953334155518173 1.0 5869 +Phenotype MP:0000639 abnormal adrenal gland morphology 0.03827011405142444 -0.3495542872094703 1.0 5870 +Biological Process GO:0032635 interleukin-6 production 0.03826858908656905 -0.34958192690904766 1.0 5871 +Phenotype MP:0030064 small face 0.03825849268590109 -0.349764922261556 1.0 5872 +Phenotype MP:0000471 abnormal stomach epithelium morphology 0.03825316510582788 -0.3498614836427427 1.0 5873 +Biological Process GO:0051453 regulation of intracellular pH 0.038199108124903014 -0.3508412561978546 1.0 5874 +Phenotype MP:0003733 abnormal retina inner nuclear layer morphology 0.038194981393528504 -0.3509160524235018 1.0 5875 +Biological Process GO:0034250 positive regulation of amide metabolic process 0.03817711226392517 -0.35123992701785656 1.0 5876 +Phenotype MP:0005298 abnormal clavicle morphology 0.03817481313326565 -0.35128159832621075 1.0 5877 +Biological Process GO:0060215 primitive hemopoiesis 0.03817306227167272 -0.3513133323614307 1.0 5878 +Biological Process GO:0034111 negative regulation of homotypic cell-cell adhesion 0.038165277527902663 -0.3514544293698833 1.0 5879 +Phenotype MP:0008258 thin endometrium 0.038156706470815815 -0.3516097781584822 1.0 5880 +Biological Process GO:0001556 oocyte maturation 0.038114026546212765 -0.35238334371957847 1.0 5881 +Biological Process GO:0007631 feeding behavior 0.03810475929486501 -0.3525513108974805 1.0 5882 +Phenotype MP:0011304 kidney papillary atrophy 0.03803936221541293 -0.3537366205935709 1.0 5883 +Biological Process GO:0035809 regulation of urine volume 0.03803932956698608 -0.35373721234013256 1.0 5884 +Phenotype MP:0005426 tachypnea 0.03801828873057622 -0.3541185735204699 1.0 5885 +Biological Process GO:1901293 nucleoside phosphate biosynthetic process 0.03800306207221238 -0.35439455382339674 1.0 5886 +Phenotype MP:0010878 increased trabecular bone volume 0.03799478579698634 -0.3545445597465225 1.0 5887 +Phenotype MP:0010873 decreased trabecular bone mass 0.037979755473852794 -0.3548169815105344 1.0 5888 +Biological Process GO:0016071 mRNA metabolic process 0.037970963503997535 -0.3549763343012781 1.0 5889 +Phenotype MP:0011440 increased kidney cell proliferation 0.03796813920930997 -0.35502752410831284 1.0 5890 +Phenotype MP:0000784 forebrain hypoplasia 0.0379610037817506 -0.35515685238325617 1.0 5891 +Biological Process GO:0072593 reactive oxygen species metabolic process 0.03794927103516055 -0.3553695061961096 1.0 5892 +Phenotype MP:0010698 abnormal impulsive behavior control 0.037936509373114324 -0.3556008089070006 1.0 5893 +Phenotype MP:0009751 enhanced behavioral response to alcohol 0.037928195765236206 -0.3557514914773843 1.0 5894 +Phenotype MP:0008597 decreased circulating interleukin-6 level 0.03790248330206347 -0.35621752500922327 1.0 5895 +Phenotype MP:0004131 abnormal motile primary cilium morphology 0.03790193404653819 -0.3562274801617348 1.0 5896 +Phenotype MP:0001529 abnormal vocalization 0.037880862475231925 -0.35660939840625633 1.0 5897 +Phenotype MP:0001931 abnormal oogenesis 0.037876298446287704 -0.3566921205676456 1.0 5898 +Phenotype MP:0004820 abnormal urine potassium level 0.037875328493286564 -0.3567097007823377 1.0 5899 +Phenotype MP:0008174 decreased follicular B cell number 0.03785916854416094 -0.35700259680380253 1.0 5900 +Biological Process GO:0002474 antigen processing and presentation of peptide antigen via MHC class I 0.03782532929791338 -0.3576159267418009 1.0 5901 +Phenotype MP:0009831 abnormal sperm midpiece morphology 0.037812240976170974 -0.3578531500979019 1.0 5902 +Phenotype MP:0000035 abnormal membranous labyrinth morphology 0.03778872873288841 -0.35827930506037364 1.0 5903 +Phenotype MP:0005029 abnormal amnion morphology 0.03778830470665007 -0.35828699045574475 1.0 5904 +Phenotype MP:0000890 thin cerebellar molecular layer 0.03778205016124703 -0.35840035290821165 1.0 5905 +Phenotype MP:0004260 enlarged placenta 0.03777769039580603 -0.3584793728322387 1.0 5906 +Biological Process GO:0061337 cardiac conduction 0.03776633434419174 -0.3586851991199031 1.0 5907 +Phenotype MP:0002027 increased lung adenocarcinoma incidence 0.03773750567744716 -0.3592077132520939 1.0 5908 +Phenotype MP:0008716 increased lung non-small cell carcinoma incidence 0.03773750567744716 -0.3592077132520939 1.0 5908 +Phenotype MP:0012113 decreased inner cell mass proliferation 0.03768473186192378 -0.36016422867699727 1.0 5910 +Biological Process GO:0030149 sphingolipid catabolic process 0.037683214160591616 -0.36019173672659 1.0 5911 +Phenotype MP:0001705 abnormal proximal-distal axis patterning 0.03765002975035214 -0.3607931978857953 1.0 5912 +Phenotype MP:0001393 ataxia 0.0376375481062895 -0.3610194253236955 1.0 5913 +Phenotype MP:0004190 abnormal direction of embryo turning 0.03761627133188816 -0.3614050628355039 1.0 5914 +Phenotype MP:0003411 abnormal vein development 0.037572715425102876 -0.3621945054079729 1.0 5915 +Phenotype MP:0000554 abnormal carpal bone morphology 0.03757240098993897 -0.3622002044858475 1.0 5916 +Biological Process GO:0009165 nucleotide biosynthetic process 0.0375641443855278 -0.3623498538791743 1.0 5917 +Phenotype MP:0001247 dermal cyst 0.03755144773143704 -0.36257997833316785 1.0 5918 +Phenotype MP:0002895 abnormal otolithic membrane morphology 0.037492642672040555 -0.36364580891254256 1.0 5919 +Phenotype MP:0000269 abnormal heart looping 0.03745733479082858 -0.3642857575814985 1.0 5920 +Phenotype MP:0002184 abnormal innervation 0.03745110256158324 -0.36439871555782793 1.0 5921 +Phenotype MP:0001825 arrested T cell differentiation 0.03743053087233239 -0.364771573534641 1.0 5922 +Phenotype MP:0002098 abnormal vibrissa morphology 0.03739813307485074 -0.3653587774863881 1.0 5923 +Phenotype MP:0012320 abnormal body fat mass 0.037370897456823315 -0.36585241791188405 1.0 5924 +Phenotype MP:0000455 abnormal maxilla morphology 0.037369863370818046 -0.3658711605251461 1.0 5925 +Phenotype MP:0004393 abnormal cochlear inner hair cell morphology 0.03736830336316421 -0.36589943536881736 1.0 5926 +Phenotype MP:0011119 abnormal primordial ovarian follicle number 0.03736718981793552 -0.3659196181654753 1.0 5927 +Phenotype MP:0004983 abnormal osteoclast cell number 0.03736617944377596 -0.3659379310060186 1.0 5928 +Phenotype MP:0000495 abnormal colon morphology 0.03734367552593565 -0.3663458102605607 1.0 5929 +Biological Process GO:0010948 negative regulation of cell cycle process 0.03733963330560053 -0.3664190747396031 1.0 5930 +Phenotype MP:0014263 decreased spleen B cell follicle number 0.037338452196683414 -0.3664404821153349 1.0 5931 +Phenotype MP:0002834 decreased heart weight 0.03732244771978244 -0.36673056023213346 1.0 5932 +Biological Process GO:0008340 determination of adult lifespan 0.03731416005516075 -0.3668807725859012 1.0 5933 +Biological Process GO:0045727 positive regulation of translation 0.03730903327195623 -0.36697369456182105 1.0 5934 +Phenotype MP:0000950 abnormal seizure response to pharmacological agent 0.0373027038027961 -0.3670884149932143 1.0 5935 +Phenotype MP:0008537 increased susceptibility to induced colitis 0.037287323191715016 -0.36736718566002313 1.0 5936 +Phenotype MP:0008769 abnormal plasmacytoid dendritic cell physiology 0.03727422787928614 -0.3676045357209943 1.0 5937 +Phenotype MP:0005137 increased growth hormone level 0.037267848093187506 -0.3677201681373812 1.0 5938 +Phenotype MP:0005405 axon degeneration 0.03726348823559722 -0.36779918973159664 1.0 5939 +Phenotype MP:0000746 weakness 0.03725849807675241 -0.36788963541683734 1.0 5940 +Phenotype MP:0000069 kyphoscoliosis 0.037257388016439186 -0.36790975505006157 1.0 5941 +Phenotype MP:0000792 abnormal cortical marginal zone morphology 0.03724806158988181 -0.36807879476744576 1.0 5942 +Biological Process GO:0001773 myeloid dendritic cell activation 0.03723736383699383 -0.3682726895152042 1.0 5943 +Phenotype MP:0008947 increased neuron number 0.037220237028232295 -0.3685831096847014 1.0 5944 +Biological Process GO:0034766 negative regulation of monoatomic ion transmembrane transport 0.03721948175560463 -0.3685967988582281 1.0 5945 +Phenotype MP:0030886 decreased radius size 0.03721923579215847 -0.36860125689916917 1.0 5946 +Phenotype MP:0004355 short radius 0.03721923579215847 -0.36860125689916917 1.0 5946 +Biological Process GO:0030513 positive regulation of BMP signaling pathway 0.037203353656194094 -0.36888911760963095 1.0 5948 +Phenotype MP:0003172 abnormal lysosome physiology 0.037195232206130635 -0.369036317355968 1.0 5949 +Phenotype MP:0000031 abnormal cochlea morphology 0.03719203514451497 -0.36909426349307073 1.0 5950 +Phenotype MP:0004774 abnormal bile salt level 0.037157602436586834 -0.3697183498117843 1.0 5951 +Biological Process GO:0000079 regulation of cyclin-dependent protein serine/threonine kinase activity 0.03714690043413793 -0.36991232158203075 1.0 5952 +Phenotype MP:0003044 impaired basement membrane formation 0.03711360929566243 -0.3705157171703279 1.0 5953 +Biological Process GO:0015980 energy derivation by oxidation of organic compounds 0.03709906497152504 -0.37077933029445465 1.0 5954 +Phenotype MP:0011649 immotile respiratory cilia 0.037059661881036154 -0.3714935038570008 1.0 5955 +Biological Process GO:0006007 glucose catabolic process 0.03696915669699696 -0.37313389319987217 1.0 5956 +Biological Process GO:0014074 response to purine-containing compound 0.03693437800853705 -0.37376425035028665 1.0 5957 +Phenotype MP:0003477 abnormal nerve fiber response 0.03693150062200057 -0.3738164024370414 1.0 5958 +Phenotype MP:0011159 abnormal epidermal-dermal junction morphology 0.03690218928365685 -0.3743476649006756 1.0 5959 +Biological Process GO:0030308 negative regulation of cell growth 0.036892989401605014 -0.3745144110228311 1.0 5960 +Phenotype MP:0008057 abnormal DNA replication 0.03687728017538339 -0.37479913777690915 1.0 5961 +Phenotype MP:0010308 decreased tumor latency 0.03681976673470455 -0.37584155801131885 1.0 5962 +Phenotype MP:0003941 abnormal skin development 0.03681136160219722 -0.3759938994482963 1.0 5963 +Phenotype MP:0011631 decreased mitochondrial size 0.036777079349673114 -0.37661525879126856 1.0 5964 +Phenotype MP:0006085 myocardium necrosis 0.03676565274355137 -0.37682236386603624 1.0 5965 +Biological Process GO:0045600 positive regulation of fat cell differentiation 0.036759787933596466 -0.3769286624372189 1.0 5966 +Biological Process GO:0010463 mesenchymal cell proliferation 0.036755058229625326 -0.3770143874271359 1.0 5967 +Phenotype MP:0009053 abnormal anal canal morphology 0.03675381946839351 -0.37703683974016744 1.0 5968 +Phenotype MP:0001257 increased body length 0.036752562994796234 -0.377059613086473 1.0 5969 +Phenotype MP:0005422 osteosclerosis 0.036736352366017355 -0.3773534276670677 1.0 5970 +Phenotype MP:0030508 abnormal dental epithelium morphology 0.03672790875450549 -0.3775064665287246 1.0 5971 +Phenotype MP:0002740 heart hypoplasia 0.036718686526469924 -0.37767361766760876 1.0 5972 +Biological Process GO:0030216 keratinocyte differentiation 0.0366675944187993 -0.3785996524557535 1.0 5973 +Biological Process GO:0072522 purine-containing compound biosynthetic process 0.03665889579552584 -0.3787573133573573 1.0 5974 +Phenotype MP:0008489 slow postnatal weight gain 0.03664937202829799 -0.3789299298370695 1.0 5975 +Phenotype MP:0006099 thin cerebellar granule layer 0.03664382029755675 -0.3790305539067192 1.0 5976 +Phenotype MP:0008593 increased circulating interleukin-10 level 0.03661321145819951 -0.3795853333308186 1.0 5977 +Phenotype MP:0001134 absent corpus luteum 0.03661309790925604 -0.37958739138394276 1.0 5978 +Biological Process GO:0007214 gamma-aminobutyric acid signaling pathway 0.0366095774623445 -0.37965119881836923 1.0 5979 +Phenotype MP:0002641 anisopoikilocytosis 0.03659716253472545 -0.3798762170333479 1.0 5980 +Phenotype MP:0000106 abnormal basisphenoid bone morphology 0.03659494916118733 -0.37991633401009645 1.0 5981 +Phenotype MP:0001859 kidney inflammation 0.03658220307018645 -0.38014735449873566 1.0 5982 +Phenotype MP:0013821 abnormal cerebral artery morphology 0.03658210447419663 -0.380149141532403 1.0 5983 +Biological Process GO:0007254 JNK cascade 0.036553863638060125 -0.3806610013460026 1.0 5984 +Phenotype MP:0003460 decreased fear-related response 0.036544747182105985 -0.38082623538591626 1.0 5985 +Biological Process GO:0009913 epidermal cell differentiation 0.03654356378142387 -0.38084768429945526 1.0 5986 +Phenotype MP:0001565 abnormal circulating phosphate level 0.03653371275246975 -0.381026232336059 1.0 5987 +Phenotype MP:0004448 abnormal presphenoid bone morphology 0.03651429703891207 -0.3813781384720707 1.0 5988 +Biological Process GO:0071773 cellular response to BMP stimulus 0.036513527811860236 -0.3813920805668962 1.0 5989 +Biological Process GO:0071772 response to BMP 0.036513527811860236 -0.3813920805668962 1.0 5989 +Phenotype MP:0001824 abnormal thymus involution 0.03651175497221215 -0.381424212950209 1.0 5991 +Phenotype MP:0005607 decreased bleeding time 0.036511708880901494 -0.3814250483464971 1.0 5992 +Phenotype MP:0008451 retina rod cell degeneration 0.0364482760640058 -0.38257475615526687 1.0 5993 +Biological Process GO:1900047 negative regulation of hemostasis 0.03642686072103296 -0.38296290519622533 1.0 5994 +Biological Process GO:0046322 negative regulation of fatty acid oxidation 0.03641671630984733 -0.3831467707302859 1.0 5995 +Phenotype MP:0011819 increased pancreatic beta cell proliferation 0.03641616068688669 -0.3831568412913589 1.0 5996 +Phenotype MP:0000899 abnormal corpora quadrigemina morphology 0.03640355017701191 -0.3833854043977308 1.0 5997 +Phenotype MP:0011400 lethality, complete penetrance 0.03640141807447439 -0.38342404835296484 1.0 5998 +Phenotype MP:0000676 abnormal body water content 0.036391766843925755 -0.38359897508125834 1.0 5999 +Phenotype MP:0010504 abnormal RR interval 0.036391622459750805 -0.38360159201712096 1.0 6000 +Phenotype MP:0011056 abnormal brain ependyma motile cilium morphology 0.03637372158100072 -0.3839260420587557 1.0 6001 +Phenotype MP:0013229 abnormal brain ventricle size 0.03634651511282805 -0.3844191541486476 1.0 6002 +Biological Process GO:0050819 negative regulation of coagulation 0.036316917249466285 -0.38495560982404153 1.0 6003 +Phenotype MP:0031380 abnormal secondary ovarian follicle number 0.036316669041390526 -0.38496010854846946 1.0 6004 +Phenotype MP:0004121 abnormal sarcolemma morphology 0.036285493926591084 -0.38552515160785544 1.0 6005 +Phenotype MP:0012089 decreased midbrain size 0.03626556422483562 -0.385886373682738 1.0 6006 +Biological Process GO:0006006 glucose metabolic process 0.03621515265476549 -0.38680007385558823 1.0 6007 +Phenotype MP:0004965 inner cell mass degeneration 0.03621458691875601 -0.3868103277137588 1.0 6008 +Biological Process GO:0140059 dendrite arborization 0.0362090064090802 -0.3869114733961544 1.0 6009 +Biological Process GO:0045639 positive regulation of myeloid cell differentiation 0.03620520980001374 -0.3869802862174065 1.0 6010 +Phenotype MP:0003734 abnormal retina inner plexiform layer morphology 0.03619670389544716 -0.38713445412889824 1.0 6011 +Phenotype MP:0000186 decreased circulating HDL cholesterol level 0.03617365994679278 -0.3875521213398057 1.0 6012 +Phenotype MP:0008518 retina outer nuclear layer degeneration 0.03616886860932633 -0.38763896342516796 1.0 6013 +Biological Process GO:0048678 response to axon injury 0.03616171096800902 -0.3877686943202726 1.0 6014 +Biological Process GO:0009582 detection of abiotic stimulus 0.03615042293336901 -0.3879732878131428 1.0 6015 +Phenotype MP:0011106 embryonic lethality between implantation and somite formation, incomplete penetrance 0.036062701853212475 -0.3895632157997168 1.0 6016 +Biological Process GO:0035456 response to interferon-beta 0.03601704917853443 -0.39039066189366656 1.0 6017 +Phenotype MP:0002440 abnormal memory B cell morphology 0.036017040549683466 -0.3903908182899583 1.0 6018 +Phenotype MP:0004736 abnormal distortion product otoacoustic emission 0.036015863712739904 -0.39041214823697745 1.0 6019 +Biological Process GO:0045217 cell-cell junction maintenance 0.03601380516097308 -0.3904494590984038 1.0 6020 +Phenotype MP:0000743 muscle spasm 0.03598166430293237 -0.3910320060713804 1.0 6021 +Phenotype MP:0002640 reticulocytosis 0.035969263491639314 -0.39125676843062024 1.0 6022 +Biological Process GO:1904478 regulation of intestinal absorption 0.03594912779354864 -0.3916217241501171 1.0 6023 +Phenotype MP:0003566 abnormal cell adhesion 0.035875408593462166 -0.39295787070868865 1.0 6024 +Phenotype MP:0008412 increased cellular sensitivity to oxidative stress 0.035859656596348266 -0.3932433726770996 1.0 6025 +Biological Process GO:0097061 dendritic spine organization 0.03583341519676697 -0.39371899308130254 1.0 6026 +Phenotype MP:0013279 increased fasting circulating glucose level 0.035832722421555996 -0.3937315495009724 1.0 6027 +Phenotype MP:0011467 decreased urine urea nitrogen level 0.03579868876313752 -0.39434840312279823 1.0 6028 +Biological Process GO:0001558 regulation of cell growth 0.03579397767201464 -0.3944337907583608 1.0 6029 +Phenotype MP:0005136 decreased growth hormone level 0.03579028685032282 -0.39450068620345585 1.0 6030 +Biological Process GO:0060420 regulation of heart growth 0.03576303864061603 -0.3949945548507588 1.0 6031 +Biological Process GO:0051101 regulation of DNA binding 0.035762920565033496 -0.39499669494835976 1.0 6032 +Phenotype MP:0004597 increased susceptibility to noise-induced hearing loss 0.03566773787213273 -0.3967218632546592 1.0 6033 +Biological Process GO:0006885 regulation of pH 0.03565881426126005 -0.39688360201394546 1.0 6034 +Biological Process GO:0060572 morphogenesis of an epithelial bud 0.035656829732542694 -0.39691957122160065 1.0 6035 +Biological Process GO:0014741 negative regulation of muscle hypertrophy 0.035627000529768194 -0.3974602198800957 1.0 6036 +Biological Process GO:0031114 regulation of microtubule depolymerization 0.03561405631635206 -0.3976948313000392 1.0 6037 +Biological Process GO:0007026 negative regulation of microtubule depolymerization 0.03561405631635206 -0.3976948313000392 1.0 6037 +Biological Process GO:0019722 calcium-mediated signaling 0.03560574684453799 -0.3978454389050443 1.0 6039 +Phenotype MP:0012192 abnormal keratinocyte migration 0.03557926653374077 -0.398325389529849 1.0 6040 +Phenotype MP:0002782 abnormal testes secretion 0.0355764818335883 -0.398375861693424 1.0 6041 +Biological Process GO:1900016 negative regulation of cytokine production involved in inflammatory response 0.03555816504967002 -0.39870784993756936 1.0 6042 +Biological Process GO:1901224 positive regulation of non-canonical NF-kappaB signal transduction 0.03554910038387127 -0.3988721452907121 1.0 6043 +Phenotype MP:0006219 optic nerve degeneration 0.03552558787059701 -0.3992983051467322 1.0 6044 +Biological Process GO:0019318 hexose metabolic process 0.03551320519579404 -0.39952273878551947 1.0 6045 +Phenotype MP:0000039 abnormal otic capsule morphology 0.03545125818581485 -0.4006455166249481 1.0 6046 +Biological Process GO:0060337 type I interferon-mediated signaling pathway 0.03541298190207498 -0.40133926702828865 1.0 6047 +Biological Process GO:0071357 cellular response to type I interferon 0.03541298190207498 -0.40133926702828865 1.0 6047 +Phenotype MP:0004279 abnormal rostral migratory stream morphology 0.03540119607396264 -0.4015528829336939 1.0 6049 +Phenotype MP:0001462 abnormal avoidance learning behavior 0.035388200259118485 -0.40178842961976047 1.0 6050 +Biological Process GO:0007159 leukocyte cell-cell adhesion 0.035366419798067206 -0.40218319635683347 1.0 6051 +Phenotype MP:0005627 increased circulating potassium level 0.035365380180079176 -0.40220203923623676 1.0 6052 +Biological Process GO:0001708 cell fate specification 0.035311766015122426 -0.4031737858356792 1.0 6053 +Biological Process GO:0090407 organophosphate biosynthetic process 0.03529002744137444 -0.40356779337330245 1.0 6054 +Biological Process GO:0048713 regulation of oligodendrocyte differentiation 0.03526255939054335 -0.4040656465994034 1.0 6055 +Phenotype MP:0010280 increased skeletal tumor incidence 0.03525619342569297 -0.40418102850827975 1.0 6056 +Phenotype MP:0009735 abnormal prostate gland development 0.03520004254144282 -0.4051987526651288 1.0 6057 +Phenotype MP:0000141 abnormal vertebral body morphology 0.0351687283544716 -0.4057663163813246 1.0 6058 +Biological Process GO:0051276 chromosome organization 0.0351580755567541 -0.40595939632512085 1.0 6059 +Phenotype MP:0000876 Purkinje cell degeneration 0.03515114907297179 -0.4060849375336239 1.0 6060 +Biological Process GO:0008037 cell recognition 0.03514415107949098 -0.40621177484188714 1.0 6061 +Biological Process GO:0045922 negative regulation of fatty acid metabolic process 0.0351375591395191 -0.40633125250710056 1.0 6062 +Phenotype MP:0010379 decreased respiratory quotient 0.035132296533235796 -0.4064266362506343 1.0 6063 +Phenotype MP:0008996 abnormal blood osmolality 0.03513003217183264 -0.40646767737279305 1.0 6064 +Phenotype MP:0004496 abnormal organ of Corti supporting cell number 0.03512600682940681 -0.4065406359429218 1.0 6065 +Phenotype MP:0001927 abnormal estrous cycle 0.03511748661550751 -0.40669506320836263 1.0 6066 +Phenotype MP:0012097 abnormal spongiotrophoblast size 0.035086884153456954 -0.4072497270449846 1.0 6067 +Biological Process GO:0010888 negative regulation of lipid storage 0.035075547995245704 -0.4074551927684816 1.0 6068 +Biological Process GO:0048278 vesicle docking 0.03506283820808376 -0.4076855552569064 1.0 6069 +Phenotype MP:0009840 abnormal foam cell morphology 0.03506045057924856 -0.4077288305779565 1.0 6070 +Biological Process GO:0050961 detection of temperature stimulus involved in sensory perception 0.03503182017967199 -0.4082477511552266 1.0 6071 +Phenotype MP:0003973 increased pituitary hormone level 0.03502083513164189 -0.40844685307309797 1.0 6072 +Biological Process GO:0007608 sensory perception of smell 0.035009988537575976 -0.40864344553905524 1.0 6073 +Phenotype MP:0008043 abnormal NK cell number 0.03497775081356591 -0.4092277481894055 1.0 6074 +Biological Process GO:0033013 tetrapyrrole metabolic process 0.03496575850864103 -0.40944510644798565 1.0 6075 +Phenotype MP:0030136 abnormal lower incisor morphology 0.03494928088634763 -0.4097437602355327 1.0 6076 +Biological Process GO:0009988 cell-cell recognition 0.03486460464744989 -0.4112785010501819 1.0 6077 +Phenotype MP:0008453 decreased retina rod cell number 0.03485704054229388 -0.41141559902548575 1.0 6078 +Biological Process GO:0060717 chorion development 0.034851932617830594 -0.4115081791902876 1.0 6079 +Phenotype MP:0004328 decreased vestibular hair cell number 0.03483650894256041 -0.4117877303873789 1.0 6080 +Phenotype MP:0002801 abnormal long-term object recognition memory 0.034800822121538344 -0.4124345472687213 1.0 6081 +Phenotype MP:0005250 decreased Sertoli cell number 0.03479517445964453 -0.41253691007236737 1.0 6082 +Phenotype MP:0008322 abnormal somatotroph morphology 0.034779363539308106 -0.412823480013042 1.0 6083 +Phenotype MP:0008725 increased heart atrium size 0.03476639677034421 -0.41305850024802254 1.0 6084 +Phenotype MP:0000108 midline facial cleft 0.03474367652963106 -0.41347030031372023 1.0 6085 +Biological Process GO:0030258 lipid modification 0.034719336635382625 -0.4139114562934093 1.0 6086 +Phenotype MP:0003331 increased hepatocellular carcinoma incidence 0.03470768673295854 -0.41412260857142336 1.0 6087 +Phenotype MP:0002238 abnormal nasal mucosa morphology 0.03469475491911711 -0.41435699525142056 1.0 6088 +Biological Process GO:0034243 regulation of transcription elongation by RNA polymerase II 0.03460691936147864 -0.4159489981207028 1.0 6089 +Biological Process GO:0006665 sphingolipid metabolic process 0.03460258359012092 -0.4160275831565087 1.0 6090 +Phenotype MP:0013848 subcutaneous edema 0.03457861410748231 -0.416462025495828 1.0 6091 +Biological Process GO:1904063 negative regulation of cation transmembrane transport 0.034570595530557635 -0.41660736068598164 1.0 6092 +Phenotype MP:0004017 duplex kidney 0.03456379372859719 -0.4167306420600453 1.0 6093 +Phenotype MP:0001625 cardiac hypertrophy 0.03455359632789101 -0.41691546801914353 1.0 6094 +Phenotype MP:0010942 abnormal respiratory epithelium morphology 0.03452318501612717 -0.4174666672929724 1.0 6095 +Phenotype MP:0011452 decreased susceptibility to dopaminergic neuron neurotoxicity 0.03451831039226105 -0.4175550189285761 1.0 6096 +Biological Process GO:0010212 response to ionizing radiation 0.03450761370176059 -0.41774889442076185 1.0 6097 +Biological Process GO:1905939 regulation of gonad development 0.03450339533989044 -0.41782535143181176 1.0 6098 +Phenotype MP:0003840 abnormal coronal suture morphology 0.03449692193002374 -0.4179426807612873 1.0 6099 +Phenotype MP:0010762 abnormal microglial cell activation 0.03447310487191324 -0.4183743604348637 1.0 6100 +Phenotype MP:0010827 small lung saccule 0.034469368506528264 -0.4184420813507831 1.0 6101 +Phenotype MP:0011469 abnormal urine creatinine level 0.03446641756060442 -0.41849556668752097 1.0 6102 +Phenotype MP:0009832 abnormal sperm mitochondrial sheath morphology 0.03446546760843183 -0.4185127843909785 1.0 6103 +Phenotype MP:0012021 abnormal melanocyte number 0.03442868243774844 -0.41917950865219444 1.0 6104 +Biological Process GO:0014072 response to isoquinoline alkaloid 0.03441445429490242 -0.41943739105021655 1.0 6105 +Biological Process GO:0043278 response to morphine 0.03441445429490242 -0.41943739105021655 1.0 6105 +Phenotype MP:0013630 increased bone trabecular spacing 0.03439042011049975 -0.419873006096772 1.0 6107 +Phenotype MP:0000751 myopathy 0.034380592563108436 -0.4200511285344911 1.0 6108 +Phenotype MP:0004854 abnormal ovary weight 0.03434067326097445 -0.4207746583354702 1.0 6109 +Biological Process GO:0072163 mesonephric epithelium development 0.03430931875625465 -0.42134295280323353 1.0 6110 +Biological Process GO:0001657 ureteric bud development 0.03430931875625465 -0.42134295280323353 1.0 6110 +Biological Process GO:0072164 mesonephric tubule development 0.03430931875625465 -0.42134295280323353 1.0 6110 +Phenotype MP:0001473 reduced long-term potentiation 0.03429731174935802 -0.421560577532271 1.0 6113 +Phenotype MP:0001658 increased mortality induced by gamma-irradiation 0.034268561906871886 -0.42208166298968586 1.0 6114 +Biological Process GO:0031638 zymogen activation 0.03424188488526758 -0.4225651789606638 1.0 6115 +Phenotype MP:0008916 abnormal astrocyte physiology 0.03423812969079032 -0.42263324115031964 1.0 6116 +Biological Process GO:0006813 potassium ion transport 0.034223001158484645 -0.42290744293700144 1.0 6117 +Phenotype MP:0008142 decreased small intestinal villus size 0.03422017139855127 -0.42295873180058285 1.0 6118 +Phenotype MP:0008326 abnormal thyrotroph morphology 0.03421969567273497 -0.42296735424102605 1.0 6119 +Biological Process GO:0031960 response to corticosteroid 0.03421420186966884 -0.4230669283825208 1.0 6120 +Phenotype MP:0004426 abnormal cochlear labyrinth morphology 0.034188362776659376 -0.42353525705620015 1.0 6121 +Phenotype MP:0003169 abnormal scala media morphology 0.034188362776659376 -0.42353525705620015 1.0 6121 +Phenotype MP:0012724 absent head fold 0.03417892992051996 -0.4237062257896291 1.0 6123 +Phenotype MP:0010935 increased airway resistance 0.03416231774173284 -0.42400731838817535 1.0 6124 +Phenotype MP:0013601 increased testis apoptosis 0.03415346361356231 -0.42416779778662694 1.0 6125 +Phenotype MP:0031353 abnormal testis apoptosis 0.03415346361356231 -0.42416779778662694 1.0 6125 +Biological Process GO:0021695 cerebellar cortex development 0.03408519172429603 -0.4254052128668681 1.0 6127 +Biological Process GO:0000422 autophagy of mitochondrion 0.034074140939612696 -0.4256055062491461 1.0 6128 +Biological Process GO:0033238 regulation of amine metabolic process 0.03398133867606523 -0.4272875297236432 1.0 6129 +Phenotype MP:0002896 abnormal bone mineralization 0.03397876515513054 -0.4273341743038376 1.0 6130 +Phenotype MP:0030383 small presphenoid bone 0.033969045898112005 -0.4275103339990317 1.0 6131 +Biological Process GO:0021670 lateral ventricle development 0.03395831742319577 -0.4277047855777416 1.0 6132 +Biological Process GO:0051702 biological process involved in interaction with symbiont 0.03392176565016625 -0.4283672795506252 1.0 6133 +Biological Process GO:0045778 positive regulation of ossification 0.03390041581006953 -0.428754241364343 1.0 6134 +Phenotype MP:0000840 abnormal epithalamus morphology 0.0338944882394423 -0.4288616774608412 1.0 6135 +Biological Process GO:0051235 maintenance of location 0.033857120846679134 -0.4295389543871335 1.0 6136 +Biological Process GO:0021772 olfactory bulb development 0.03385048842265126 -0.4296591658182049 1.0 6137 +Phenotype MP:0002978 absent otoliths 0.033841482255260735 -0.4298224008987626 1.0 6138 +Phenotype MP:0030605 abnormal corneocyte morphology 0.03381604565654717 -0.4302834344394553 1.0 6139 +Phenotype MP:0011416 abnormal testis interstitial tissue morphology 0.03380591048453241 -0.4304671325152913 1.0 6140 +Biological Process GO:0010460 positive regulation of heart rate 0.03377859647676784 -0.43096219373994665 1.0 6141 +Phenotype MP:0001131 abnormal ovarian follicle morphology 0.033777529224252145 -0.43098153748993717 1.0 6142 +Phenotype MP:0013521 abnormal memory-marker CD4-positive NK T cell number 0.03377726167778872 -0.430986386718984 1.0 6143 +Phenotype MP:0004066 abnormal primitive node morphology 0.03377618342618893 -0.4310059298252933 1.0 6144 +Phenotype MP:0004362 cochlear hair cell degeneration 0.03376359359770953 -0.43123411808528567 1.0 6145 +Biological Process GO:0098868 bone growth 0.033760763028146346 -0.4312854216232542 1.0 6146 +Phenotype MP:0000150 abnormal rib morphology 0.033754750754442564 -0.43139439294699444 1.0 6147 +Phenotype MP:0001596 hypotension 0.03375300666662673 -0.4314260042087857 1.0 6148 +Phenotype MP:0009774 abnormal behavioral withdrawal response 0.03370604106572217 -0.4322772468422687 1.0 6149 +Phenotype MP:0008900 abnormal uterine fat pad morphology 0.03368205994115214 -0.4327119001893931 1.0 6150 +Biological Process GO:0030510 regulation of BMP signaling pathway 0.033677308635012504 -0.4327980167145284 1.0 6151 +Phenotype MP:0001900 impaired synaptic plasticity 0.033662454884026416 -0.4330672381417639 1.0 6152 +Biological Process GO:0019226 transmission of nerve impulse 0.03365980001001356 -0.4331153572311131 1.0 6153 +Biological Process GO:0021766 hippocampus development 0.03365035844082531 -0.4332864838869043 1.0 6154 +Phenotype MP:0004610 small vertebrae 0.03364528166580383 -0.4333784994739649 1.0 6155 +Biological Process GO:0006352 DNA-templated transcription initiation 0.03360559157057019 -0.43409787494322655 1.0 6156 +Phenotype MP:0003724 increased susceptibility to induced arthritis 0.03357833500509311 -0.43459189503728574 1.0 6157 +Phenotype MP:0008291 abnormal adrenocortical cell morphology 0.03353814885033113 -0.43532026149167563 1.0 6158 +Phenotype MP:0010069 increased serotonin level 0.03353061060477258 -0.43545689076666644 1.0 6159 +Phenotype MP:0001211 wrinkled skin 0.03351567322891125 -0.4357276278789493 1.0 6160 +Phenotype MP:0005090 increased double-negative T cell number 0.03349552274563805 -0.4360928515770829 1.0 6161 +Phenotype MP:0002258 abnormal cricoid cartilage morphology 0.03346950238050572 -0.43656446577370406 1.0 6162 +Biological Process GO:0060710 chorio-allantoic fusion 0.033459267624158406 -0.43674996879673256 1.0 6163 +Phenotype MP:0005257 abnormal intraocular pressure 0.03344771098760568 -0.4369594306484682 1.0 6164 +Biological Process GO:0001754 eye photoreceptor cell differentiation 0.03344667062045681 -0.4369782871062701 1.0 6165 +Phenotype MP:0020523 decreased susceptibility to induced hypothermia 0.033435255800468244 -0.4371851785596031 1.0 6166 +Phenotype MP:0000091 short premaxilla 0.03337707051479044 -0.4382397758575486 1.0 6167 +Biological Process GO:0055021 regulation of cardiac muscle tissue growth 0.0333701776737344 -0.4383647072980011 1.0 6168 +Phenotype MP:0009422 decreased gastrocnemius weight 0.03336719083946604 -0.43841884310419554 1.0 6169 +Phenotype MP:0005131 increased follicle stimulating hormone level 0.03336095888439772 -0.4385317961111184 1.0 6170 +Biological Process GO:0006112 energy reserve metabolic process 0.03334403264118546 -0.43883858106796914 1.0 6171 +Biological Process GO:0007512 adult heart development 0.03334242733549786 -0.43886767692993495 1.0 6172 +Phenotype MP:0003400 kinked neural tube 0.033336080742497054 -0.4389827077277018 1.0 6173 +Phenotype MP:0004789 increased bile salt level 0.033334098482618035 -0.4390186358130912 1.0 6174 +Phenotype MP:0000167 decreased chondrocyte number 0.03333305632167938 -0.4390375247829936 1.0 6175 +Phenotype MP:0005441 increased urine calcium level 0.03331590935802331 -0.4393483102561422 1.0 6176 +Phenotype MP:0005068 abnormal NK cell morphology 0.03331472687204384 -0.4393697425908687 1.0 6177 +Phenotype MP:0008957 abnormal placenta junctional zone morphology 0.03329797771241316 -0.4396733179412964 1.0 6178 +Biological Process GO:0030195 negative regulation of blood coagulation 0.033246831321589676 -0.44060033660131975 1.0 6179 +Phenotype MP:0003384 abnormal ventral body wall morphology 0.033228861267634136 -0.4409260404304698 1.0 6180 +Phenotype MP:0001862 interstitial pneumonia 0.03322795431764347 -0.44094247872751313 1.0 6181 +Biological Process GO:0009583 detection of light stimulus 0.03321414087601804 -0.44119284474434733 1.0 6182 +Biological Process GO:0043931 ossification involved in bone maturation 0.03320369709600712 -0.44138213628174455 1.0 6183 +Biological Process GO:0060219 camera-type eye photoreceptor cell differentiation 0.03318493645629361 -0.4417221693282291 1.0 6184 +Phenotype MP:0006325 impaired hearing 0.033183031157417386 -0.44175670250999904 1.0 6185 +Phenotype MP:0003269 colon polyps 0.0331805926705484 -0.44180089962329233 1.0 6186 +Biological Process GO:0032886 regulation of microtubule-based process 0.033116411856494055 -0.4429641647390892 1.0 6187 +Phenotype MP:0004908 abnormal seminal vesicle weight 0.03310343306721264 -0.44319940284005127 1.0 6188 +Phenotype MP:0011095 embryonic lethality between implantation and placentation, complete penetrance 0.03309830404243519 -0.4432923654440565 1.0 6189 +Phenotype MP:0002951 small thyroid gland 0.03309711821865302 -0.44331385827582565 1.0 6190 +Phenotype MP:0031420 decreased superovulation rate 0.03308928248852072 -0.4434558794024505 1.0 6191 +Biological Process GO:0006633 fatty acid biosynthetic process 0.033033952742290484 -0.44445872058799585 1.0 6192 +Phenotype MP:0002961 abnormal axon guidance 0.03303267111293351 -0.444481949877688 1.0 6193 +Phenotype MP:0005462 abnormal mast cell differentiation 0.033026405086306054 -0.4445955204251759 1.0 6194 +Phenotype MP:0008472 abnormal spleen secondary B follicle morphology 0.03302226563637145 -0.4446705471723193 1.0 6195 +Biological Process GO:0007144 female meiosis I 0.032965739009830575 -0.4456950815871211 1.0 6196 +Phenotype MP:0008335 decreased gonadotroph cell number 0.03294293493360234 -0.44610840115567335 1.0 6197 +Biological Process GO:0046697 decidualization 0.03293562448153409 -0.44624090171673675 1.0 6198 +Phenotype MP:0002602 abnormal eosinophil cell number 0.03292444402769745 -0.44644354532789315 1.0 6199 +Phenotype MP:0009294 increased interscapular fat pad weight 0.03292239062168978 -0.4464807629234081 1.0 6200 +Biological Process GO:1902305 regulation of sodium ion transmembrane transport 0.0329180770879719 -0.4465589449061978 1.0 6201 +Biological Process GO:0007215 glutamate receptor signaling pathway 0.03291190270340705 -0.44667085445863386 1.0 6202 +Biological Process GO:0002312 B cell activation involved in immune response 0.03290767761009461 -0.44674743347580215 1.0 6203 +Biological Process GO:0060221 retinal rod cell differentiation 0.03288550952010072 -0.4471492259141452 1.0 6204 +Phenotype MP:0001792 impaired wound healing 0.03287270340101989 -0.44738133440038 1.0 6205 +Biological Process GO:0032094 response to food 0.03285302942381896 -0.4477379215160785 1.0 6206 +Phenotype MP:0001463 abnormal spatial learning 0.032831598209142276 -0.4481263582286672 1.0 6207 +Phenotype MP:0001566 increased circulating phosphate level 0.032821604949573535 -0.4483074841682599 1.0 6208 +Phenotype MP:0009046 muscle twitch 0.032812280891031054 -0.44847648096582204 1.0 6209 +Biological Process GO:0098662 inorganic cation transmembrane transport 0.03276698260338351 -0.44929750386187156 1.0 6210 +Phenotype MP:0004843 abnormal Paneth cell morphology 0.03274520125387648 -0.44969228670203704 1.0 6211 +Phenotype MP:0020252 abnormal collagen level 0.03270161353904555 -0.45048230578931725 1.0 6212 +Phenotype MP:0003993 abnormal ventral spinal root morphology 0.03269171609993371 -0.4506616950012518 1.0 6213 +Phenotype MP:0020478 abnormal circadian sleep/wake cycle 0.032691510154671866 -0.45066542772017093 1.0 6214 +Biological Process GO:0010633 negative regulation of epithelial cell migration 0.03268268397994922 -0.4508254004676665 1.0 6215 +Biological Process GO:0008154 actin polymerization or depolymerization 0.032674910363669984 -0.4509662957924527 1.0 6216 +Phenotype MP:0003932 abnormal molar crown morphology 0.03261108211727326 -0.4521231706861385 1.0 6217 +Biological Process GO:0002706 regulation of lymphocyte mediated immunity 0.032590377798354164 -0.4524984325506035 1.0 6218 +Phenotype MP:0030457 abnormal molar cusp morphology 0.03252921038370604 -0.45360708037210645 1.0 6219 +Phenotype MP:0003691 abnormal microglial cell physiology 0.03245380719004631 -0.4549737489956885 1.0 6220 +Phenotype MP:0012397 abnormal nucleated erythrocyte cell number 0.0324215664614208 -0.45555810610412545 1.0 6221 +Phenotype MP:0012468 decreased striatum size 0.03241130124342284 -0.4557441612388105 1.0 6222 +Biological Process GO:0022037 metencephalon development 0.03238688303637016 -0.45618673662326464 1.0 6223 +Phenotype MP:0002735 abnormal chemical nociception 0.03238611501901045 -0.4562006567926492 1.0 6224 +Phenotype MP:0004575 small limb buds 0.03231684123281464 -0.4574562310652428 1.0 6225 +Phenotype MP:0010420 muscular ventricular septal defect 0.032306436367732894 -0.45764481727690914 1.0 6226 +Phenotype MP:0010060 abnormal creatine level 0.03229515779003411 -0.45784923936450816 1.0 6227 +Phenotype MP:0002857 cochlear ganglion degeneration 0.032278422517547645 -0.45815256301307355 1.0 6228 +Biological Process GO:0021952 central nervous system projection neuron axonogenesis 0.03224854542906341 -0.4586940795910006 1.0 6229 +Phenotype MP:0001176 abnormal lung development 0.03224551841636314 -0.4587489436236743 1.0 6230 +Phenotype MP:0011697 lens vacuoles 0.032239748292876125 -0.45885352602053514 1.0 6231 +Phenotype MP:0010559 heart block 0.032239098121627396 -0.45886531025144717 1.0 6232 +Biological Process GO:0032785 negative regulation of DNA-templated transcription, elongation 0.032230655450617096 -0.4590183320666911 1.0 6233 +Biological Process GO:0010565 regulation of cellular ketone metabolic process 0.03221077177281062 -0.4593787199662031 1.0 6234 +Phenotype MP:0010027 increased liver cholesterol level 0.0321899395678239 -0.4597562997414559 1.0 6235 +Phenotype MP:0006068 abnormal retina horizontal cell morphology 0.03218903735917711 -0.45977265210253837 1.0 6236 +Phenotype MP:0008052 abnormal serous gland morphology 0.03217032555156629 -0.4601118000763975 1.0 6237 +Phenotype MP:0020011 increased bone mineral density of femur 0.03216648957968726 -0.4601813263411824 1.0 6238 +Phenotype MP:0003279 aneurysm 0.032138539041653424 -0.46068792455657714 1.0 6239 +Phenotype MP:0009758 impaired behavioral response to cocaine 0.03206229313444231 -0.46206986720389015 1.0 6240 +Biological Process GO:0046902 regulation of mitochondrial membrane permeability 0.03206088177931843 -0.46209544774857164 1.0 6241 +Biological Process GO:2000404 regulation of T cell migration 0.03205315852873469 -0.4622354302046528 1.0 6242 +Phenotype MP:0000940 abnormal motor neuron innervation pattern 0.032051145297397166 -0.46227191964186987 1.0 6243 +Phenotype MP:0004599 abnormal vertebral arch morphology 0.03203655408486572 -0.4625363826092706 1.0 6244 +Biological Process GO:0001658 branching involved in ureteric bud morphogenesis 0.03202923618533493 -0.4626690181541838 1.0 6245 +Biological Process GO:0099565 chemical synaptic transmission, postsynaptic 0.03200592663916113 -0.4630914992698966 1.0 6246 +Phenotype MP:0000422 delayed hair appearance 0.031969814963175525 -0.46374601656709763 1.0 6247 +Biological Process GO:0060052 neurofilament cytoskeleton organization 0.03193828903824325 -0.46431741799379017 1.0 6248 +Phenotype MP:0000243 myoclonus 0.03193765850877517 -0.46432884622114295 1.0 6249 +Biological Process GO:0006022 aminoglycan metabolic process 0.03192291137585035 -0.46459613521618337 1.0 6250 +Phenotype MP:0001001 abnormal chemoreceptor morphology 0.03192012483064355 -0.4646466408210191 1.0 6251 +Phenotype MP:0002876 abnormal thyroid gland physiology 0.03190099533994706 -0.4649933592218069 1.0 6252 +Biological Process GO:0106057 negative regulation of calcineurin-mediated signaling 0.031898848313948513 -0.46503227366194944 1.0 6253 +Biological Process GO:0070885 negative regulation of calcineurin-NFAT signaling cascade 0.031898848313948513 -0.46503227366194944 1.0 6253 +Biological Process GO:0031111 negative regulation of microtubule polymerization or depolymerization 0.03186716650159571 -0.46560650051865504 1.0 6255 +Phenotype MP:0003826 abnormal Mullerian duct morphology 0.03185698430553474 -0.4657910508964346 1.0 6256 +Biological Process GO:0019227 neuronal action potential propagation 0.03183675205407055 -0.46615775662756465 1.0 6257 +Biological Process GO:0098870 action potential propagation 0.03183675205407055 -0.46615775662756465 1.0 6257 +Phenotype MP:0020811 abnormal photoreceptor outer segment size 0.03182761286847735 -0.4663234026378873 1.0 6259 +Phenotype MP:0004929 decreased epididymis weight 0.031805774361926775 -0.4667192214386565 1.0 6260 +Phenotype MP:0020573 abnormal corpus callosum size 0.03179053589011438 -0.46699541585810406 1.0 6261 +Biological Process GO:0072148 epithelial cell fate commitment 0.031781680902420284 -0.46715591083525765 1.0 6262 +Biological Process GO:0045880 positive regulation of smoothened signaling pathway 0.031765353908354665 -0.46745183451466554 1.0 6263 +Biological Process GO:0006164 purine nucleotide biosynthetic process 0.031749221137312156 -0.4677442379385142 1.0 6264 +Biological Process GO:0006816 calcium ion transport 0.03170178437887361 -0.46860402021318764 1.0 6265 +Biological Process GO:0060088 auditory receptor cell stereocilium organization 0.03169990498505271 -0.46863808387072947 1.0 6266 +Biological Process GO:0007635 chemosensory behavior 0.03169379359559521 -0.4687488516487594 1.0 6267 +Phenotype MP:0002359 abnormal spleen germinal center morphology 0.031646559237672456 -0.46960496545236546 1.0 6268 +Phenotype MP:0011380 enlarged brain ventricles 0.03163281154454245 -0.46985413979015545 1.0 6269 +Phenotype MP:0001691 abnormal somite shape 0.031622192017304096 -0.4700466167128098 1.0 6270 +Phenotype MP:0004169 abnormal fornicate gyrus morphology 0.03161476717429412 -0.4701811905880563 1.0 6271 +Phenotype MP:0005123 increased circulating growth hormone level 0.03160191113939981 -0.4704142037889696 1.0 6272 +Phenotype MP:0008026 abnormal brain white matter morphology 0.03160111809739974 -0.4704285775252276 1.0 6273 +Phenotype MP:0000550 abnormal forelimb morphology 0.031582339319071395 -0.4707689393306753 1.0 6274 +Biological Process GO:0006635 fatty acid beta-oxidation 0.031568581964559694 -0.4710182887791812 1.0 6275 +Biological Process GO:2000737 negative regulation of stem cell differentiation 0.03156413634719879 -0.4710988647530188 1.0 6276 +Biological Process GO:0046621 negative regulation of organ growth 0.03150571632084098 -0.4721577166813914 1.0 6277 +Phenotype MP:0009891 abnormal palate bone morphology 0.031474073944258274 -0.4727312287722228 1.0 6278 +Phenotype MP:0009380 abnormal prostate gland ventral lobe morphology 0.03142811467869133 -0.4735642317680463 1.0 6279 +Phenotype MP:0008395 abnormal osteoblast differentiation 0.031402019449467966 -0.474037202862158 1.0 6280 +Phenotype MP:0000230 abnormal systemic arterial blood pressure 0.03140123168491926 -0.4740514809456082 1.0 6281 +Biological Process GO:0072655 establishment of protein localization to mitochondrion 0.03139222928842311 -0.47421464767941857 1.0 6282 +Biological Process GO:0003198 epithelial to mesenchymal transition involved in endocardial cushion formation 0.03138033539659235 -0.4744302222192814 1.0 6283 +Phenotype MP:0004423 abnormal temporal bone squamous part morphology 0.031375204848388405 -0.47452321243510365 1.0 6284 +Biological Process GO:0019228 neuronal action potential 0.031365228693794656 -0.4747040283502598 1.0 6285 +Phenotype MP:0010498 abnormal interventricular septum muscular part morphology 0.03135928239330199 -0.4748118039220266 1.0 6286 +Phenotype MP:0006126 abnormal cardiac outflow tract development 0.0313456531673032 -0.47505883106546976 1.0 6287 +Biological Process GO:0048845 venous blood vessel morphogenesis 0.031286969419811905 -0.4761224628895075 1.0 6288 +Phenotype MP:0004363 stria vascularis degeneration 0.03127859602671179 -0.4762742290557323 1.0 6289 +Biological Process GO:0042742 defense response to bacterium 0.031273819739733644 -0.4763607983538407 1.0 6290 +Biological Process GO:0061014 positive regulation of mRNA catabolic process 0.03126342756773626 -0.4765491545057537 1.0 6291 +Phenotype MP:0000030 abnormal tympanic ring morphology 0.03126246360563378 -0.4765666261365406 1.0 6292 +Biological Process GO:0045747 positive regulation of Notch signaling pathway 0.031248496622815813 -0.47681977505844925 1.0 6293 +Biological Process GO:0050732 negative regulation of peptidyl-tyrosine phosphorylation 0.031232615314093604 -0.4771076207753032 1.0 6294 +Biological Process GO:0045494 photoreceptor cell maintenance 0.031227306566220303 -0.47720384082642847 1.0 6295 +Phenotype MP:0006336 abnormal otoacoustic response 0.03122420693075123 -0.47726002113305105 1.0 6296 +Phenotype MP:0003148 decreased cochlea coiling 0.031222379297048297 -0.47729314664824435 1.0 6297 +Phenotype MP:0011094 embryonic lethality before implantation, complete penetrance 0.031220650074166745 -0.47732448848591325 1.0 6298 +Phenotype MP:0005628 decreased circulating potassium level 0.03122005284482665 -0.47733531315474453 1.0 6299 +Phenotype MP:0000242 impaired fertilization 0.03120327160792713 -0.477639469899603 1.0 6300 +Biological Process GO:0051602 response to electrical stimulus 0.031191136883758408 -0.4778594094800411 1.0 6301 +Biological Process GO:0046683 response to organophosphorus 0.031176649028401338 -0.4781219991182049 1.0 6302 +Phenotype MP:0002073 abnormal hair growth 0.031158167475373144 -0.4784569737713036 1.0 6303 +Phenotype MP:0006337 abnormal first pharyngeal arch morphology 0.031138392997330233 -0.4788153824457546 1.0 6304 +Phenotype MP:0008257 thin myometrium 0.031137002726129515 -0.47884058084831654 1.0 6305 +Phenotype MP:0005306 abnormal phalanx morphology 0.03113151050632834 -0.47894012629343324 1.0 6306 +Biological Process GO:0044248 cellular catabolic process 0.03111897956960219 -0.4791672471515365 1.0 6307 +Phenotype MP:0002413 abnormal megakaryocyte progenitor cell morphology 0.03109715204702701 -0.47956286686982913 1.0 6308 +Phenotype MP:0001132 absent mature ovarian follicles 0.031081087013422826 -0.4798540425654198 1.0 6309 +Biological Process GO:0050864 regulation of B cell activation 0.031071341184274237 -0.4800306838754454 1.0 6310 +Biological Process GO:0035845 photoreceptor cell outer segment organization 0.0310491562783225 -0.48043278109984394 1.0 6311 +Biological Process GO:0051384 response to glucocorticoid 0.031023448139400833 -0.4808987362554502 1.0 6312 +Phenotype MP:0009787 increased susceptibility to infection induced morbidity/mortality 0.031017403494508766 -0.48100829430085557 1.0 6313 +Biological Process GO:0060292 long-term synaptic depression 0.03100749796577762 -0.48118783013561 1.0 6314 +Phenotype MP:0002314 abnormal respiratory mechanics 0.030976845658448715 -0.4817433974084745 1.0 6315 +Phenotype MP:0000764 abnormal tongue epithelium morphology 0.030969535506295776 -0.4818758925336295 1.0 6316 +Biological Process GO:0097150 neuronal stem cell population maintenance 0.03094644575342398 -0.48229438993731444 1.0 6317 +Phenotype MP:0002260 abnormal thyroid cartilage morphology 0.030943336113865683 -0.48235075156616203 1.0 6318 +Phenotype MP:0008254 increased megakaryocyte cell number 0.030941564381461673 -0.48238286388088536 1.0 6319 +Phenotype MP:0005044 sepsis 0.030909819327740506 -0.4829582369754313 1.0 6320 +Phenotype MP:0008019 increased liver tumor incidence 0.030909609814649963 -0.4829620343605708 1.0 6321 +Phenotype MP:0010297 increased hepatobiliary system tumor incidence 0.030909609814649963 -0.4829620343605708 1.0 6321 +Phenotype MP:0011059 abnormal ependyma motile cilium morphology 0.03089892808528516 -0.48315563868500233 1.0 6323 +Biological Process GO:0002703 regulation of leukocyte mediated immunity 0.030877077798913133 -0.4835516709928074 1.0 6324 +Biological Process GO:0001504 neurotransmitter uptake 0.03086562179388941 -0.483759308917113 1.0 6325 +Phenotype MP:0010695 abnormal blood pressure regulation 0.03083248397183147 -0.48435992567433955 1.0 6326 +Phenotype MP:0004874 abnormal timing of postnatal eyelid opening 0.030766645730423092 -0.48555323134744804 1.0 6327 +Phenotype MP:0001290 delayed eyelid opening 0.030715224934296237 -0.4864852235516949 1.0 6328 +Biological Process GO:0050801 monoatomic ion homeostasis 0.0306709057413852 -0.4872885005408278 1.0 6329 +Biological Process GO:2000320 negative regulation of T-helper 17 cell differentiation 0.030648282658498283 -0.48769853963930115 1.0 6330 +Phenotype MP:0010847 increased central memory CD8 positive, alpha-beta T cell number 0.030634185817652093 -0.4879540422134104 1.0 6331 +Phenotype MP:0001748 increased circulating adrenocorticotropin level 0.030632212821921412 -0.4879898023878634 1.0 6332 +Phenotype MP:0002894 abnormal otolith morphology 0.03061657876406665 -0.48827316672950904 1.0 6333 +Biological Process GO:0021892 cerebral cortex GABAergic interneuron differentiation 0.030596632307565264 -0.48863469248099256 1.0 6334 +Phenotype MP:0012736 abnormal polar body morphology 0.030593283021969175 -0.4886953976489493 1.0 6335 +Phenotype MP:0000761 thin diaphragm muscle 0.03054792171531251 -0.48951756275261993 1.0 6336 +Biological Process GO:0031507 heterochromatin formation 0.03054388035528688 -0.4895908116387156 1.0 6337 +Biological Process GO:0051353 positive regulation of oxidoreductase activity 0.03053584631448414 -0.48973642710873444 1.0 6338 +Phenotype MP:0001525 impaired balance 0.030531711212650525 -0.4898113750473697 1.0 6339 +Biological Process GO:0045933 positive regulation of muscle contraction 0.030496174502026907 -0.4904554712061317 1.0 6340 +Phenotype MP:0001849 ear inflammation 0.030492244493423026 -0.49052670186876873 1.0 6341 +Phenotype MP:0003719 abnormal pericyte morphology 0.030488744630388642 -0.4905901362243149 1.0 6342 +Phenotype MP:0008069 abnormal joint mobility 0.03044493441614149 -0.4913841880714314 1.0 6343 +Phenotype MP:0004930 small epididymis 0.030439006874726338 -0.49149162363846627 1.0 6344 +Phenotype MP:0011191 increased embryonic epiblast cell apoptosis 0.030435622711842858 -0.49155296095066037 1.0 6345 +Biological Process GO:1900544 positive regulation of purine nucleotide metabolic process 0.03042825775503266 -0.4916864493998626 1.0 6346 +Biological Process GO:0045981 positive regulation of nucleotide metabolic process 0.03042825775503266 -0.4916864493998626 1.0 6346 +Biological Process GO:0045333 cellular respiration 0.03042253098358705 -0.49179024604917254 1.0 6348 +Biological Process GO:0043489 RNA stabilization 0.030412292259589524 -0.4919758209851106 1.0 6349 +Phenotype MP:0003900 shortened QT interval 0.030410325554624307 -0.4920114671406294 1.0 6350 +Phenotype MP:0005618 decreased urine potassium level 0.03039562753533076 -0.49227786596039214 1.0 6351 +Phenotype MP:0004851 increased testis weight 0.03039320128399703 -0.4923218413069232 1.0 6352 +Phenotype MP:0004179 transmission ratio distortion 0.03038989638737144 -0.49238174193318524 1.0 6353 +Phenotype MP:0010263 total cataract 0.030360631480282563 -0.4929121628391073 1.0 6354 +Phenotype MP:0008911 induced hyperactivity 0.030334169828860058 -0.49339177526627453 1.0 6355 +Phenotype MP:0000282 abnormal interatrial septum morphology 0.03033184146651524 -0.4934339763933959 1.0 6356 +Phenotype MP:0002768 small adrenal glands 0.03032154299302059 -0.49362063427766867 1.0 6357 +Phenotype MP:0009017 prolonged estrus 0.03029446089434673 -0.4941114921939174 1.0 6358 +Biological Process GO:0051090 regulation of DNA-binding transcription factor activity 0.030287565929116633 -0.4942364621346229 1.0 6359 +Biological Process GO:0001738 morphogenesis of a polarized epithelium 0.030254514312380354 -0.494835516436699 1.0 6360 +Biological Process GO:0043113 receptor clustering 0.030211708261743908 -0.49561136800829547 1.0 6361 +Phenotype MP:0009085 abnormal uterine horn morphology 0.030209608284481715 -0.49564942969899023 1.0 6362 +Phenotype MP:0003572 abnormal uterus development 0.03019709359655498 -0.4958762560506773 1.0 6363 +Biological Process GO:0072028 nephron morphogenesis 0.03018625247600415 -0.4960727493102089 1.0 6364 +Phenotype MP:0005312 pericardial effusion 0.030180891191525894 -0.4961699215773624 1.0 6365 +Phenotype MP:0002786 abnormal Leydig cell morphology 0.030167390323898924 -0.4964146222495936 1.0 6366 +Phenotype MP:0011111 lethality during fetal growth through weaning, complete penetrance 0.03014705821931607 -0.49678313779961353 1.0 6367 +Phenotype MP:0009111 pancreas hypoplasia 0.0301432352357216 -0.4968524286541974 1.0 6368 +Biological Process GO:2001054 negative regulation of mesenchymal cell apoptotic process 0.03014253932172506 -0.49686504196376186 1.0 6369 +Biological Process GO:0090257 regulation of muscle system process 0.03013243076275629 -0.49704825768317273 1.0 6370 +Phenotype MP:0004813 absent linear vestibular evoked potential 0.030128164319640716 -0.4971255861577022 1.0 6371 +Biological Process GO:0032787 monocarboxylic acid metabolic process 0.030048211887927057 -0.4985747088605845 1.0 6372 +Biological Process GO:0022900 electron transport chain 0.03004190321912792 -0.498689052289369 1.0 6373 +Phenotype MP:0003027 abnormal blood pH regulation 0.0300389359495834 -0.49874283348864423 1.0 6374 +Phenotype MP:0003271 abnormal duodenum morphology 0.030025934053557135 -0.49897849039498643 1.0 6375 +Phenotype MP:0005623 abnormal meninges morphology 0.030009831695169686 -0.4992703425952143 1.0 6376 +Biological Process GO:0070670 response to interleukin-4 0.029989076990724062 -0.49964651768781787 1.0 6377 +Phenotype MP:0004251 failure of heart looping 0.029967717181542453 -0.5000336601893137 1.0 6378 +Phenotype MP:0020872 abnormal hypothalamic nucleus morphology 0.029945770551803363 -0.5004314387024247 1.0 6379 +Biological Process GO:0031281 positive regulation of cyclase activity 0.02993204952043005 -0.5006801298009174 1.0 6380 +Biological Process GO:0051349 positive regulation of lyase activity 0.02993204952043005 -0.5006801298009174 1.0 6380 +Biological Process GO:0001825 blastocyst formation 0.029917103554367386 -0.5009510226089746 1.0 6382 +Phenotype MP:0006418 abnormal testis cord formation 0.029912584365768824 -0.5010329320475797 1.0 6383 +Phenotype MP:0005402 abnormal action potential 0.029897756780942086 -0.501301679218126 1.0 6384 +Biological Process GO:0043487 regulation of RNA stability 0.029897134397209202 -0.501312959805569 1.0 6385 +Phenotype MP:0001415 increased exploration in new environment 0.029831164249390252 -0.5025086562574208 1.0 6386 +Phenotype MP:0003503 decreased activity of thyroid gland 0.029804593146364966 -0.5029902524741872 1.0 6387 +Biological Process GO:0098727 maintenance of cell number 0.029801512607402825 -0.5030460866602334 1.0 6388 +Phenotype MP:0005225 abnormal vertebrae development 0.029800031617573164 -0.5030729293207867 1.0 6389 +Phenotype MP:0005061 abnormal eosinophil morphology 0.02978375736883232 -0.5033678970011591 1.0 6390 +Phenotype MP:0001121 uterus hypoplasia 0.029762819266815566 -0.5037473961400523 1.0 6391 +Phenotype MP:0003693 abnormal blastocyst hatching 0.02973745532311256 -0.5042071128224201 1.0 6392 +Phenotype MP:0009308 increased adenocarcinoma incidence 0.029730740155944346 -0.5043288239572604 1.0 6393 +Phenotype MP:0001441 increased grooming behavior 0.029713181519192666 -0.5046470709274046 1.0 6394 +Phenotype MP:0011886 increased circulating lipase level 0.02970693598455354 -0.5047602700614798 1.0 6395 +Biological Process GO:0042073 intraciliary transport 0.029679193146251226 -0.5052631037585242 1.0 6396 +Biological Process GO:0045599 negative regulation of fat cell differentiation 0.029677248431224212 -0.5052983513505722 1.0 6397 +Phenotype MP:0001569 abnormal circulating bilirubin level 0.029676342352116802 -0.5053147738630213 1.0 6398 +Biological Process GO:0055012 ventricular cardiac muscle cell differentiation 0.02967494505630186 -0.5053400995853874 1.0 6399 +Phenotype MP:0002249 abnormal larynx morphology 0.02965194383066383 -0.5057569924497041 1.0 6400 +Biological Process GO:0006939 smooth muscle contraction 0.029625303145583204 -0.5062398498280629 1.0 6401 +Phenotype MP:0020448 increased microglial cell activation 0.02957655948882587 -0.5071233193875821 1.0 6402 +Phenotype MP:0003901 abnormal PR interval 0.029567032332243448 -0.5072959972987049 1.0 6403 +Phenotype MP:0002997 enlarged seminal vesicle 0.02953333488321519 -0.5079067571889226 1.0 6404 +Biological Process GO:0045638 negative regulation of myeloid cell differentiation 0.029518461435952714 -0.5081763356074424 1.0 6405 +Phenotype MP:0020509 abnormal dendritic spine length 0.029502662200288965 -0.5084626937656348 1.0 6406 +Biological Process GO:0043433 negative regulation of DNA-binding transcription factor activity 0.029497667884891388 -0.5085532147876082 1.0 6407 +Phenotype MP:0004164 abnormal neurohypophysis morphology 0.029495760583402086 -0.5085877842663613 1.0 6408 +Phenotype MP:0000963 fused dorsal root ganglion 0.029492146250751805 -0.5086532933620452 1.0 6409 +Phenotype MP:0004200 decreased fetal size 0.02948793704504482 -0.5087295844193697 1.0 6410 +Biological Process GO:0061101 neuroendocrine cell differentiation 0.029482228628799234 -0.5088330483841508 1.0 6411 +Biological Process GO:0001649 osteoblast differentiation 0.029476964956606677 -0.508928451447088 1.0 6412 +Phenotype MP:0010924 abnormal osteoid morphology 0.029470587010747007 -0.5090440505094918 1.0 6413 +Phenotype MP:0004666 absent stapedial artery 0.029468360304932606 -0.5090844091312263 1.0 6414 +Phenotype MP:0004761 increased susceptibility to induced pancreatitis 0.029457049148336134 -0.5092894217051842 1.0 6415 +Phenotype MP:0011978 abnormal potassium ion homeostasis 0.029449455341344688 -0.5094270580206376 1.0 6416 +Phenotype MP:0008586 disorganized photoreceptor outer segment 0.029432608459317833 -0.5097324045710131 1.0 6417 +Phenotype MP:0004922 abnormal common crus morphology 0.02939268395623429 -0.5104560286382192 1.0 6418 +Biological Process GO:0034505 tooth mineralization 0.029386147495510495 -0.5105745007525543 1.0 6419 +Biological Process GO:0042711 maternal behavior 0.029372895694160905 -0.5108146871456155 1.0 6420 +Biological Process GO:0042755 eating behavior 0.029357859872362724 -0.5110872085718839 1.0 6421 +Phenotype MP:0011913 abnormal reticulocyte cell number 0.029343245679385177 -0.5113520880555238 1.0 6422 +Biological Process GO:1903170 negative regulation of calcium ion transmembrane transport 0.02932337934816487 -0.5117121615514424 1.0 6423 +Phenotype MP:0011940 decreased food intake 0.029303551345757572 -0.5120715403448746 1.0 6424 +Phenotype MP:0000062 increased bone mineral density 0.029297614377921555 -0.5121791467640047 1.0 6425 +Phenotype MP:0004853 abnormal ovary size 0.029269251254249173 -0.512693223016063 1.0 6426 +Biological Process GO:0060079 excitatory postsynaptic potential 0.029268975686026932 -0.5126982176379711 1.0 6427 +Biological Process GO:0007611 learning or memory 0.029267010628514334 -0.5127338339337227 1.0 6428 +Phenotype MP:0004838 abnormal neural fold elevation formation 0.029254951773065585 -0.5129523984079609 1.0 6429 +Biological Process GO:0021954 central nervous system neuron development 0.029254572590620143 -0.5129592710180673 1.0 6430 +Phenotype MP:0000116 abnormal tooth development 0.0292265367978628 -0.5134674144592007 1.0 6431 +Phenotype MP:0002959 increased urine microalbumin level 0.029205955215116597 -0.513840451753746 1.0 6432 +Phenotype MP:0001163 abnormal prostate gland anterior lobe morphology 0.02919920735505499 -0.5139627554410956 1.0 6433 +Phenotype MP:0004903 abnormal uterus weight 0.029184257857149065 -0.5142337122631438 1.0 6434 +Biological Process GO:0061626 pharyngeal arch artery morphogenesis 0.029159445056951228 -0.5146834395737221 1.0 6435 +Biological Process GO:0045591 positive regulation of regulatory T cell differentiation 0.02915939324712513 -0.514684378617021 1.0 6436 +Biological Process GO:1902369 negative regulation of RNA catabolic process 0.02915273909632643 -0.5148049838417043 1.0 6437 +Phenotype MP:0004431 abnormal hair cell mechanoelectric transduction 0.029139881665964595 -0.5150380223352024 1.0 6438 +Biological Process GO:0006281 DNA repair 0.029103401895504755 -0.5156992112751287 1.0 6439 +Phenotype MP:0005421 loose skin 0.02910307619733221 -0.5157051144929047 1.0 6440 +Biological Process GO:0071407 cellular response to organic cyclic compound 0.029102698400892857 -0.5157119619819128 1.0 6441 +Phenotype MP:0008587 short photoreceptor outer segment 0.029090810656644317 -0.5159274250980106 1.0 6442 +Biological Process GO:0048525 negative regulation of viral process 0.029072584239102306 -0.5162577754686777 1.0 6443 +Phenotype MP:0002217 small lymph nodes 0.029062445772797485 -0.5164415332528979 1.0 6444 +Phenotype MP:0004835 abnormal miniature endplate potential 0.029060007608823768 -0.5164857245137756 1.0 6445 +Phenotype MP:0004856 decreased ovary weight 0.029056156805197908 -0.5165555196011665 1.0 6446 +Phenotype MP:0001076 abnormal hypoglossal nerve morphology 0.029053265509632498 -0.5166079237864399 1.0 6447 +Phenotype MP:0006398 increased long bone epiphyseal plate size 0.029044255504134364 -0.5167712284319722 1.0 6448 +Phenotype MP:0011620 abnormal habituation to a new environment 0.029005659647342252 -0.5174707710364417 1.0 6449 +Phenotype MP:0012121 sclerocornea 0.029000315388062026 -0.517567634725101 1.0 6450 +Phenotype MP:0013894 abnormal behavioral response to amphetamine 0.028984945767193016 -0.5178462061963947 1.0 6451 +Phenotype MP:0004418 small parietal bone 0.02895538801866182 -0.5183819347980717 1.0 6452 +Phenotype MP:0021206 abnormal limb muscle morphology 0.028937287834669534 -0.5187099972095254 1.0 6453 +Biological Process GO:0030517 negative regulation of axon extension 0.028921325435243728 -0.5189993126800448 1.0 6454 +Phenotype MP:0030542 abnormal dentin development 0.02882692529594133 -0.5207102973503834 1.0 6455 +Phenotype MP:0010853 abnormal lung position or orientation 0.028787494524051493 -0.5214249726330862 1.0 6456 +Phenotype MP:0010932 increased trabecular bone connectivity density 0.02878347197963338 -0.5214978804898543 1.0 6457 +Biological Process GO:0072202 cell differentiation involved in metanephros development 0.028777661712902747 -0.5216031904754131 1.0 6458 +Biological Process GO:0010614 negative regulation of cardiac muscle hypertrophy 0.028754528447553662 -0.5220224765345192 1.0 6459 +Phenotype MP:0004198 abnormal fetal size 0.028679386648754468 -0.5233844074256934 1.0 6460 +Phenotype MP:0002980 abnormal postural reflex 0.028662397102555914 -0.5236923397371979 1.0 6461 +Biological Process GO:0032350 regulation of hormone metabolic process 0.028657306515155856 -0.5237846056710077 1.0 6462 +Phenotype MP:0002424 abnormal reticulocyte morphology 0.02865621531704743 -0.5238043834303375 1.0 6463 +Biological Process GO:0019827 stem cell population maintenance 0.028652497670157095 -0.5238717650770819 1.0 6464 +Biological Process GO:0048302 regulation of isotype switching to IgG isotypes 0.02862666221294785 -0.52434002785257 1.0 6465 +Phenotype MP:0003954 abnormal Reichert's membrane morphology 0.02862386444014553 -0.5243907369554509 1.0 6466 +Phenotype MP:0013164 abnormal forelimb bud morphology 0.028617957440240538 -0.5244978002114993 1.0 6467 +Phenotype MP:0002764 short tibia 0.028563946929384465 -0.5254767305054034 1.0 6468 +Biological Process GO:0007517 muscle organ development 0.02853249886381315 -0.5260467207459046 1.0 6469 +Biological Process GO:0006417 regulation of translation 0.02853188535840656 -0.5260578404153627 1.0 6470 +Biological Process GO:0007292 female gamete generation 0.028521555544921195 -0.5262450663310397 1.0 6471 +Biological Process GO:0021756 striatum development 0.028519542337700376 -0.526281555331146 1.0 6472 +Phenotype MP:0031318 enhanced skeletal muscle regeneration 0.028480708631466123 -0.5269854089117683 1.0 6473 +Phenotype MP:0009944 abnormal olfactory lobe morphology 0.028464524842224503 -0.5272787370308264 1.0 6474 +Biological Process GO:0061515 myeloid cell development 0.02845813480249637 -0.5273945552923087 1.0 6475 +Biological Process GO:0051262 protein tetramerization 0.028456566277416107 -0.5274229845127231 1.0 6476 +Phenotype MP:0009837 abnormal sperm end piece morphology 0.02844884776839507 -0.5275628810288772 1.0 6477 +Biological Process GO:2000318 positive regulation of T-helper 17 type immune response 0.02842089824188343 -0.5280694609106233 1.0 6478 +Biological Process GO:0035883 enteroendocrine cell differentiation 0.028408155124200474 -0.5283004275084375 1.0 6479 +Biological Process GO:0009411 response to UV 0.028393715965522426 -0.5285621345285043 1.0 6480 +Phenotype MP:0011893 increased circulating transferrin level 0.02838748862318008 -0.5286750039306413 1.0 6481 +Phenotype MP:0011896 increased circulating unsaturated transferrin level 0.02838748862318008 -0.5286750039306413 1.0 6481 +Biological Process GO:0008210 estrogen metabolic process 0.028380227706539807 -0.5288066066714414 1.0 6483 +Biological Process GO:0046320 regulation of fatty acid oxidation 0.028369570604462102 -0.5289997646309522 1.0 6484 +Phenotype MP:0008533 abnormal anterior visceral endoderm morphology 0.02834481858524418 -0.5294483902977654 1.0 6485 +Phenotype MP:0002234 abnormal pharynx morphology 0.028341933973829336 -0.5295006733340739 1.0 6486 +Biological Process GO:0002707 negative regulation of lymphocyte mediated immunity 0.02821973109321607 -0.5317155774321571 1.0 6487 +Biological Process GO:0032922 circadian regulation of gene expression 0.028216600294604932 -0.5317723225648355 1.0 6488 +Phenotype MP:0003946 renal necrosis 0.028210006818190192 -0.5318918280777852 1.0 6489 +Phenotype MP:0010399 decreased skeletal muscle glycogen level 0.028203248928991176 -0.5320143135413535 1.0 6490 +Biological Process GO:0010839 negative regulation of keratinocyte proliferation 0.02819636139204451 -0.5321391488458268 1.0 6491 +Phenotype MP:0004801 increased susceptibility to systemic lupus erythematosus 0.028169803014746586 -0.5326205144111916 1.0 6492 +Phenotype MP:0003078 aphakia 0.02816350152454572 -0.5327347277292401 1.0 6493 +Biological Process GO:0007530 sex determination 0.028129742340732844 -0.5333466065507527 1.0 6494 +Biological Process GO:0042417 dopamine metabolic process 0.02812917608836496 -0.5333568697678216 1.0 6495 +Phenotype MP:0013967 abnormal infrahyoid muscle connection 0.02810970448235328 -0.5337097889439907 1.0 6496 +Biological Process GO:0072273 metanephric nephron morphogenesis 0.02808365103452115 -0.5341820027582886 1.0 6497 +Biological Process GO:0001503 ossification 0.028080916297139824 -0.5342315693560864 1.0 6498 +Phenotype MP:0003205 testicular atrophy 0.028060066758285207 -0.5346094633044163 1.0 6499 +Biological Process GO:1904672 regulation of somatic stem cell population maintenance 0.028014258289122518 -0.5354397331439339 1.0 6500 +Phenotype MP:0008575 increased circulating interferon-beta level 0.027950969019264083 -0.5365868391898033 1.0 6501 +Phenotype MP:0013700 abnormal mature NK cell morphology 0.027913488926917362 -0.5372661587747319 1.0 6502 +Phenotype MP:0009488 abnormal pancreatic islet cell apoptosis 0.027890875551148886 -0.5376760219335195 1.0 6503 +Phenotype MP:0011125 decreased primary ovarian follicle number 0.027851723071773082 -0.5383856532170408 1.0 6504 +Biological Process GO:0042743 hydrogen peroxide metabolic process 0.027837424569889913 -0.5386448108593038 1.0 6505 +Phenotype MP:0000026 abnormal inner ear morphology 0.027824249532927503 -0.5388836059123663 1.0 6506 +Phenotype MP:0006204 embryonic lethality before implantation 0.027820981794376864 -0.5389428330555478 1.0 6507 +Phenotype MP:0002686 globozoospermia 0.027797488851241448 -0.5393686382065028 1.0 6508 +Biological Process GO:0007343 egg activation 0.027771628286072048 -0.53983735605902 1.0 6509 +Biological Process GO:1900046 regulation of hemostasis 0.0277661275902662 -0.5399370551301182 1.0 6510 +Biological Process GO:0043502 regulation of muscle adaptation 0.02775449809058439 -0.5401478376122876 1.0 6511 +Phenotype MP:0014102 abnormal chondrocyte apoptosis 0.027748911811116272 -0.5402490878710775 1.0 6512 +Phenotype MP:0012431 increased lymphoma incidence 0.027744873295496908 -0.5403222852028475 1.0 6513 +Phenotype MP:0020874 abnormal nervous system dopamine level 0.02771143972196133 -0.5409282623996688 1.0 6514 +Phenotype MP:0011471 decreased urine creatinine level 0.027649377069625003 -0.5420531362349483 1.0 6515 +Biological Process GO:0060040 retinal bipolar neuron differentiation 0.02764061093056225 -0.5422120208474634 1.0 6516 +Phenotype MP:0009599 thick epidermis stratum granulosum 0.02762239157584223 -0.5425422432058177 1.0 6517 +Biological Process GO:0019677 NAD catabolic process 0.02760813460098932 -0.5428006481785115 1.0 6518 +Biological Process GO:0019751 polyol metabolic process 0.02760699235672326 -0.5428213511397937 1.0 6519 +Phenotype MP:0020887 abnormal potassium level 0.02757537946836708 -0.5433943287620966 1.0 6520 +Phenotype MP:0004665 abnormal stapedial artery morphology 0.027491103744183842 -0.5449218103232973 1.0 6521 +Phenotype MP:0003443 increased circulating glycerol level 0.02746663188456344 -0.5453653581503939 1.0 6522 +Phenotype MP:0005092 decreased double-positive T cell number 0.027415143077567206 -0.5462985830387849 1.0 6523 +Phenotype MP:0006326 conductive hearing impairment 0.02737563633728779 -0.5470146352341804 1.0 6524 +Phenotype MP:0004033 supernumerary teeth 0.027374485018508254 -0.547035502669303 1.0 6525 +Biological Process GO:0060117 auditory receptor cell development 0.027365285775665993 -0.5472022372059059 1.0 6526 +Phenotype MP:0008944 decreased sensitivity to induced cell death 0.027342491377027822 -0.5476153813699687 1.0 6527 +Biological Process GO:0055080 monoatomic cation homeostasis 0.02729355577653403 -0.5485023298734076 1.0 6528 +Biological Process GO:0055086 nucleobase-containing small molecule metabolic process 0.02727457957971202 -0.5488462698517139 1.0 6529 +Biological Process GO:1900407 regulation of cellular response to oxidative stress 0.02726514946438463 -0.5490171889084433 1.0 6530 +Phenotype MP:0000781 decreased corpus callosum size 0.027261796603544886 -0.5490779588770152 1.0 6531 +Phenotype MP:0004002 abnormal jejunum morphology 0.027255980998815654 -0.549183365612789 1.0 6532 +Phenotype MP:0000602 dilated liver sinusoidal space 0.027226482559817744 -0.5497180192403929 1.0 6533 +Phenotype MP:0000416 sparse hair 0.027215807788637414 -0.5499114974490469 1.0 6534 +Phenotype MP:0010953 abnormal fatty acid oxidation 0.027121931848397285 -0.551612981110527 1.0 6535 +Phenotype MP:0021106 abnormal secondary ovarian follicle morphology 0.027090233578173972 -0.5521875062630228 1.0 6536 +Phenotype MP:0002408 abnormal double-positive T cell morphology 0.027056085677138797 -0.5528064305106689 1.0 6537 +Phenotype MP:0002176 increased brain weight 0.02705469379205605 -0.5528316581645374 1.0 6538 +Phenotype MP:0003458 decreased circulating ketone body level 0.02705462681197157 -0.5528328721659002 1.0 6539 +Phenotype MP:0008536 enlarged third ventricle 0.027049965191192182 -0.5529173631608437 1.0 6540 +Phenotype MP:0005543 decreased cornea thickness 0.026994036212141026 -0.5539310653279312 1.0 6541 +Phenotype MP:0005475 abnormal circulating thyroxine level 0.02697287872433929 -0.5543145407926834 1.0 6542 +Biological Process GO:0032206 positive regulation of telomere maintenance 0.026940850911207126 -0.5548950388480735 1.0 6543 +Phenotype MP:0010086 abnormal circulating fructosamine level 0.02692362334832754 -0.555207285166904 1.0 6544 +Phenotype MP:0002310 decreased susceptibility to hepatic steatosis 0.026914411673741423 -0.555374245026513 1.0 6545 +Biological Process GO:0060021 roof of mouth development 0.02690880759205394 -0.5554758179471618 1.0 6546 +Biological Process GO:0098660 inorganic ion transmembrane transport 0.026892007070521196 -0.55578032422235 1.0 6547 +Biological Process GO:2001204 regulation of osteoclast development 0.026827033089189878 -0.556957965345025 1.0 6548 +Biological Process GO:0042551 neuron maturation 0.026814323798735717 -0.5571883188307152 1.0 6549 +Phenotype MP:0003450 enlarged pancreas 0.026780276286114346 -0.5578054235573482 1.0 6550 +Phenotype MP:0011105 embryonic lethality between implantation and placentation, incomplete penetrance 0.026752614093938587 -0.558306795558602 1.0 6551 +Biological Process GO:0006476 protein deacetylation 0.02673417872041417 -0.558640933216929 1.0 6552 +Phenotype MP:0000851 cerebellum hypoplasia 0.026729824235045996 -0.5587198574406348 1.0 6553 +Biological Process GO:0042428 serotonin metabolic process 0.026727245133422617 -0.5587666031697561 1.0 6554 +Phenotype MP:0009277 increased brain tumor incidence 0.02670966777170458 -0.5590851895263738 1.0 6555 +Phenotype MP:0003410 abnormal artery development 0.026706822946869213 -0.5591367514384544 1.0 6556 +Biological Process GO:0008344 adult locomotory behavior 0.026700950033723414 -0.5592431968784395 1.0 6557 +Phenotype MP:0004748 increased susceptibility to age-related hearing loss 0.026685900232522153 -0.5595159716787448 1.0 6558 +Biological Process GO:0006883 intracellular sodium ion homeostasis 0.026656166616725763 -0.5600548878413406 1.0 6559 +Phenotype MP:0005423 abnormal somatic nervous system physiology 0.02662859513434157 -0.5605546157447788 1.0 6560 +Phenotype MP:0003240 loss of hippocampal neurons 0.026517742566168456 -0.5625637975766433 1.0 6561 +Phenotype MP:0000926 absent floor plate 0.026496089219730456 -0.5629562603853926 1.0 6562 +Biological Process GO:0050890 cognition 0.026456962323725963 -0.5636654279751476 1.0 6563 +Phenotype MP:0010968 decreased compact bone area 0.0264499023685153 -0.5637933883280453 1.0 6564 +Phenotype MP:0006082 CNS inflammation 0.026428756359666017 -0.5641766557389551 1.0 6565 +Biological Process GO:0035107 appendage morphogenesis 0.02640246281191827 -0.564653221318812 1.0 6566 +Biological Process GO:0035108 limb morphogenesis 0.02640246281191827 -0.564653221318812 1.0 6566 +Phenotype MP:0009420 skeletal muscle endomysial fibrosis 0.02638221256296225 -0.5650202532510775 1.0 6568 +Phenotype MP:0006142 abnormal sinoatrial node conduction 0.02634483406884247 -0.5656977313873587 1.0 6569 +Phenotype MP:0009713 enhanced conditioned place preference behavior 0.02634224285657083 -0.5657446966196893 1.0 6570 +Biological Process GO:1904177 regulation of adipose tissue development 0.026325341671979308 -0.5660510273937787 1.0 6571 +Phenotype MP:0001199 thin skin 0.026319966116115534 -0.5661484583270955 1.0 6572 +Phenotype MP:0014141 abnormal mesoderm morphology 0.026314606175302124 -0.5662456062405777 1.0 6573 +Phenotype MP:0003421 abnormal thyroid gland development 0.026303036192025453 -0.5664553099991606 1.0 6574 +Biological Process GO:0009581 detection of external stimulus 0.026283454063836142 -0.5668102323688955 1.0 6575 +Biological Process GO:0050779 RNA destabilization 0.02623111370289355 -0.5677588915115044 1.0 6576 +Phenotype MP:0012023 decreased melanocyte number 0.026219083117499542 -0.5679769435963472 1.0 6577 +Biological Process GO:0045071 negative regulation of viral genome replication 0.026195409969047123 -0.5684060149345895 1.0 6578 +Biological Process GO:0140888 interferon-mediated signaling pathway 0.02613883596046862 -0.5694314081398616 1.0 6579 +Phenotype MP:0004024 aneuploidy 0.02612006256084365 -0.569771672457328 1.0 6580 +Biological Process GO:0046466 membrane lipid catabolic process 0.02606520574623794 -0.5707659418466273 1.0 6581 +Phenotype MP:0009109 decreased pancreas weight 0.026052355815564865 -0.5709988444096852 1.0 6582 +Biological Process GO:0061045 negative regulation of wound healing 0.026050533013155297 -0.5710318823586 1.0 6583 +Biological Process GO:0031018 endocrine pancreas development 0.026028274883672875 -0.5714353067456429 1.0 6584 +Phenotype MP:0005145 increased circulating VLDL cholesterol level 0.025964925416546047 -0.5725835038556165 1.0 6585 +Phenotype MP:0000571 interdigital webbing 0.025958889007064667 -0.5726929126357608 1.0 6586 +Phenotype MP:0000830 abnormal diencephalon morphology 0.025952456822012415 -0.5728094947732716 1.0 6587 +Phenotype MP:0010747 abnormal enamel organ morphology 0.02594019436397832 -0.5730317495058604 1.0 6588 +Phenotype MP:0006317 decreased urine sodium level 0.025906231065952134 -0.5736473278588837 1.0 6589 +Biological Process GO:0042391 regulation of membrane potential 0.025874245564841636 -0.574227059016884 1.0 6590 +Biological Process GO:1901862 negative regulation of muscle tissue development 0.02587286777400799 -0.5742520312151531 1.0 6591 +Phenotype MP:0002090 abnormal vision 0.025859405021170012 -0.5744960410640427 1.0 6592 +Phenotype MP:0001382 abnormal nursing 0.02585395813625435 -0.574594764822934 1.0 6593 +Phenotype MP:0001073 abnormal glossopharyngeal nerve morphology 0.025783085194702737 -0.5758793234838928 1.0 6594 +Biological Process GO:0042487 regulation of odontogenesis of dentin-containing tooth 0.025775828727335193 -0.5760108455824663 1.0 6595 +Phenotype MP:0013956 decreased colon length 0.025710511401452196 -0.5771947097602015 1.0 6596 +Phenotype MP:0013960 decreased large intestine length 0.025710511401452196 -0.5771947097602015 1.0 6596 +Phenotype MP:0006073 abnormal retina bipolar cell morphology 0.02569088005273179 -0.5775505242427531 1.0 6598 +Phenotype MP:0004812 abnormal linear vestibular evoked potential 0.02568903676881895 -0.5775839334150409 1.0 6599 +Phenotype MP:0002436 abnormal CD8-positive, alpha-beta cytotoxic T cell morphology 0.02567437076417689 -0.5778497519753006 1.0 6600 +Phenotype MP:0003787 abnormal imprinting 0.025658234515169576 -0.5781422184366036 1.0 6601 +Phenotype MP:0005204 abnormal canal of Schlemm morphology 0.025647926543054145 -0.5783290484815814 1.0 6602 +Phenotype MP:0004214 abnormal long bone diaphysis morphology 0.0256274931260998 -0.5786994002991728 1.0 6603 +Biological Process GO:0006486 protein glycosylation 0.025611602071962447 -0.578987422649833 1.0 6604 +Biological Process GO:0043413 macromolecule glycosylation 0.025611602071962447 -0.578987422649833 1.0 6604 +Biological Process GO:0006364 rRNA processing 0.025567373030054408 -0.5797890656690875 1.0 6606 +Phenotype MP:0001684 abnormal axial mesoderm morphology 0.025556719872970923 -0.5799821521263242 1.0 6607 +Phenotype MP:0002544 brachydactyly 0.025550467802223364 -0.5800954697261286 1.0 6608 +Biological Process GO:0035019 somatic stem cell population maintenance 0.025521589669177835 -0.580618880425668 1.0 6609 +Phenotype MP:0003854 abnormal forelimb stylopod morphology 0.02550732989471216 -0.5808773361408137 1.0 6610 +Biological Process GO:0009260 ribonucleotide biosynthetic process 0.025506671802137948 -0.580889263944252 1.0 6611 +Biological Process GO:0050848 regulation of calcium-mediated signaling 0.025492108734229357 -0.5811532167956867 1.0 6612 +Biological Process GO:0014009 glial cell proliferation 0.0254864744409129 -0.5812553372963967 1.0 6613 +Phenotype MP:0011703 increased fibroblast proliferation 0.025475721802108664 -0.5814502268410063 1.0 6614 +Phenotype MP:0003398 increased skeletal muscle size 0.025469340661511963 -0.5815658838074145 1.0 6615 +Biological Process GO:0009713 catechol-containing compound biosynthetic process 0.025362356723608648 -0.5835049474473383 1.0 6616 +Biological Process GO:0042423 catecholamine biosynthetic process 0.025362356723608648 -0.5835049474473383 1.0 6616 +Phenotype MP:0000461 decreased presacral vertebrae number 0.025350417042918627 -0.5837213519016149 1.0 6618 +Phenotype MP:0005468 abnormal thyroid hormone level 0.025332897597182824 -0.5840388885420086 1.0 6619 +Phenotype MP:0004832 enlarged ovary 0.025320864793373588 -0.5842569808352079 1.0 6620 +Phenotype MP:0004859 abnormal synaptic plasticity 0.025312183076524608 -0.5844143353110657 1.0 6621 +Phenotype MP:0031269 increased susceptibility to diet-induced hepatic steatosis 0.02530193948499382 -0.5845999984701236 1.0 6622 +Biological Process GO:0006874 intracellular calcium ion homeostasis 0.02528321120621846 -0.5849394449807247 1.0 6623 +Biological Process GO:0002823 negative regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains 0.025274507776025357 -0.5850971930068379 1.0 6624 +Biological Process GO:0008356 asymmetric cell division 0.025258527184581214 -0.585386838204249 1.0 6625 +Biological Process GO:1903036 positive regulation of response to wounding 0.025255507589034387 -0.5854415678024193 1.0 6626 +Phenotype MP:0003420 delayed intramembranous bone ossification 0.025235711668753158 -0.5858003651133843 1.0 6627 +Biological Process GO:0042908 xenobiotic transport 0.025216970220790058 -0.5861400503130225 1.0 6628 +Biological Process GO:0060675 ureteric bud morphogenesis 0.02520618129726304 -0.5863355975113699 1.0 6629 +Phenotype MP:0010809 abnormal club cell morphology 0.025196897639690796 -0.5865038620489877 1.0 6630 +Biological Process GO:0006692 prostanoid metabolic process 0.025185546213621235 -0.5867096044995289 1.0 6631 +Biological Process GO:0006693 prostaglandin metabolic process 0.025185546213621235 -0.5867096044995289 1.0 6631 +Phenotype MP:0008871 abnormal ovarian follicle number 0.025182902811836883 -0.5867575156569064 1.0 6633 +Phenotype MP:0009287 decreased abdominal fat pad weight 0.02518020914494057 -0.5868063378599312 1.0 6634 +Biological Process GO:0030516 regulation of axon extension 0.025110913524007517 -0.5880623078830075 1.0 6635 +Phenotype MP:0003789 increased osteosarcoma incidence 0.025105917726034765 -0.5881528557763755 1.0 6636 +Biological Process GO:0072189 ureter development 0.025043754357251924 -0.589279555078199 1.0 6637 +Biological Process GO:0050806 positive regulation of synaptic transmission 0.025038471989145883 -0.5893752970010321 1.0 6638 +Biological Process GO:0002064 epithelial cell development 0.02494851527376918 -0.5910057454531313 1.0 6639 +Phenotype MP:0004988 increased osteoblast cell number 0.0249294958004751 -0.5913504698093088 1.0 6640 +Phenotype MP:0008883 abnormal enterocyte proliferation 0.02491228644290544 -0.5916623861603402 1.0 6641 +Phenotype MP:0014261 abnormal spleen B cell follicle number 0.02490625898201415 -0.5917716327489816 1.0 6642 +Phenotype MP:0011630 increased mitochondrial size 0.024897078768850944 -0.5919380223762508 1.0 6643 +Biological Process GO:0006167 AMP biosynthetic process 0.024890435295736535 -0.5920584340699259 1.0 6644 +Phenotype MP:0014069 abnormal skeletal muscle glycogen level 0.024886991736143393 -0.5921208479362485 1.0 6645 +Biological Process GO:0050891 multicellular organismal-level water homeostasis 0.024878820057086304 -0.592268958073595 1.0 6646 +Biological Process GO:0051180 vitamin transport 0.024876897457981606 -0.5923038048187339 1.0 6647 +Phenotype MP:0009092 endometrium hyperplasia 0.024865528586270336 -0.5925098634682314 1.0 6648 +Phenotype MP:0004425 abnormal otolith organ morphology 0.024859948654260444 -0.5926109986805416 1.0 6649 +Phenotype MP:0004394 abnormal cochlear inner hair cell number 0.024857525926208046 -0.5926549101682648 1.0 6650 +Biological Process GO:0002448 mast cell mediated immunity 0.024854379283673178 -0.5927119424690641 1.0 6651 +Biological Process GO:0097305 response to alcohol 0.024836281247207825 -0.5930399659569984 1.0 6652 +Biological Process GO:0033866 nucleoside bisphosphate biosynthetic process 0.024797174819030876 -0.5937487625712503 1.0 6653 +Biological Process GO:0034030 ribonucleoside bisphosphate biosynthetic process 0.024797174819030876 -0.5937487625712503 1.0 6653 +Biological Process GO:0034033 purine nucleoside bisphosphate biosynthetic process 0.024797174819030876 -0.5937487625712503 1.0 6653 +Biological Process GO:0048704 embryonic skeletal system morphogenesis 0.024778252457024585 -0.5940917268037039 1.0 6656 +Phenotype MP:0005296 abnormal humerus morphology 0.024774745963319966 -0.594155281338894 1.0 6657 +Biological Process GO:0045761 regulation of adenylate cyclase activity 0.02474017040768961 -0.5947819567451926 1.0 6658 +Phenotype MP:0010307 abnormal tumor latency 0.02473470432471725 -0.5948810284652305 1.0 6659 +Phenotype MP:0005182 increased circulating estradiol level 0.024727507746181154 -0.5950114650900612 1.0 6660 +Phenotype MP:0003063 increased coping response 0.02471024994537696 -0.5953242594655561 1.0 6661 +Biological Process GO:0046958 nonassociative learning 0.02468010574335955 -0.5958706174257511 1.0 6662 +Phenotype MP:0002841 impaired skeletal muscle contractility 0.02467474659256197 -0.5959677510203459 1.0 6663 +Biological Process GO:0072172 mesonephric tubule formation 0.02462739117573398 -0.5968260589937127 1.0 6664 +Phenotype MP:0003827 abnormal Wolffian duct morphology 0.024626443375641793 -0.5968432376911199 1.0 6665 +Phenotype MP:0009357 abnormal seizure response to inducing agent 0.024607254080292296 -0.5971910400399323 1.0 6666 +Phenotype MP:0001438 aphagia 0.024589864647081905 -0.597506220227893 1.0 6667 +Biological Process GO:0050808 synapse organization 0.02456889231432957 -0.5978863397923943 1.0 6668 +Biological Process GO:0001542 ovulation from ovarian follicle 0.024538589977049607 -0.5984355639243139 1.0 6669 +Phenotype MP:0005138 decreased prolactin level 0.02447213173354512 -0.5996401070181492 1.0 6670 +Biological Process GO:0009135 purine nucleoside diphosphate metabolic process 0.024460343055130562 -0.5998537745847431 1.0 6671 +Biological Process GO:0009179 purine ribonucleoside diphosphate metabolic process 0.024460343055130562 -0.5998537745847431 1.0 6671 +Phenotype MP:0010748 abnormal visual evoked potential 0.02443752410543254 -0.6002673637321221 1.0 6673 +Phenotype MP:0008923 thoracoschisis 0.02443293127508661 -0.60035060791347 1.0 6674 +Biological Process GO:0031047 regulatory ncRNA-mediated gene silencing 0.02440681452031923 -0.6008239691539956 1.0 6675 +Biological Process GO:0051260 protein homooligomerization 0.024403341745617202 -0.6008869125386412 1.0 6676 +Phenotype MP:0004727 absent epididymis 0.024394473859333576 -0.6010476413002904 1.0 6677 +Biological Process GO:0002526 acute inflammatory response 0.024366047300530713 -0.6015628673020909 1.0 6678 +Phenotype MP:0011843 abnormal kidney collecting duct epithelium morphology 0.024335537036729527 -0.6021158600628811 1.0 6679 +Biological Process GO:0015844 monoamine transport 0.024307717061496925 -0.6026200918521976 1.0 6680 +Biological Process GO:0045446 endothelial cell differentiation 0.024292378235971857 -0.6028981051637068 1.0 6681 +Phenotype MP:0004021 abnormal rod electrophysiology 0.02424086757023003 -0.6038317262377274 1.0 6682 +Phenotype MP:0030927 decreased telomere length 0.024189438724291246 -0.604763864343293 1.0 6683 +Phenotype MP:0011112 lethality during fetal growth through weaning, incomplete penetrance 0.024151387244918943 -0.6054535402099901 1.0 6684 +Biological Process GO:0006687 glycosphingolipid metabolic process 0.02414449578612521 -0.6055784465971997 1.0 6685 +Phenotype MP:0020515 abnormal visceral yolk sac endoderm morphology 0.024120828399116334 -0.6060074135103675 1.0 6686 +Phenotype MP:0011583 abnormal alkaline phosphatase activity 0.02411566364842721 -0.6061010236397647 1.0 6687 +Biological Process GO:0009132 nucleoside diphosphate metabolic process 0.024111113750063473 -0.6061834896870553 1.0 6688 +Phenotype MP:0031156 large intestine hemorrhage 0.024091393375998638 -0.6065409177371368 1.0 6689 +Phenotype MP:0000492 abnormal rectum morphology 0.024013397513239387 -0.6079545779977792 1.0 6690 +Biological Process GO:0010842 retina layer formation 0.02400608696100759 -0.6080870803742878 1.0 6691 +Phenotype MP:0010152 abnormal brain ependyma morphology 0.02400388158928457 -0.6081270523196511 1.0 6692 +Phenotype MP:0008146 asymmetric sternocostal joints 0.023999422774702794 -0.608207867490621 1.0 6693 +Phenotype MP:0030735 abnormal glutamic acid level 0.023993984444828587 -0.608306436191004 1.0 6694 +Biological Process GO:0051452 intracellular pH reduction 0.023966471683615542 -0.6088050997843214 1.0 6695 +Phenotype MP:0008669 increased interleukin-12b secretion 0.023961822949801315 -0.6088893572054588 1.0 6696 +Biological Process GO:1903715 regulation of aerobic respiration 0.02390620422316836 -0.6098974361061467 1.0 6697 +Phenotype MP:0006001 abnormal intestinal transit time 0.023859505295841243 -0.6107438453314762 1.0 6698 +Phenotype MP:0001539 decreased caudal vertebrae number 0.023826968160698625 -0.6113335747519744 1.0 6699 +Phenotype MP:0008234 absent spleen marginal zone 0.02381443095376845 -0.6115608092563397 1.0 6700 +Phenotype MP:0003138 absent tympanic ring 0.02379836743916297 -0.6118519574203661 1.0 6701 +Biological Process GO:0009612 response to mechanical stimulus 0.02377501768155721 -0.6122751673606778 1.0 6702 +Phenotype MP:0010435 abnormal heart atrium and ventricle connection 0.02376641575744709 -0.6124310756082354 1.0 6703 +Phenotype MP:0001891 hydrocephaly 0.02376513704417349 -0.6124542520444679 1.0 6704 +Biological Process GO:0006275 regulation of DNA replication 0.023752203416300577 -0.6126886716034426 1.0 6705 +Biological Process GO:0045986 negative regulation of smooth muscle contraction 0.02373173863731526 -0.6130595918519136 1.0 6706 +Biological Process GO:0060768 regulation of epithelial cell proliferation involved in prostate gland development 0.023723253843044856 -0.61321337714328 1.0 6707 +Biological Process GO:0090398 cellular senescence 0.02368957534414129 -0.6138237935660718 1.0 6708 +Phenotype MP:0004351 short humerus 0.023684201498727186 -0.6139211934978117 1.0 6709 +Phenotype MP:0020357 abnormal excitatory synapse morphology 0.023651040770206855 -0.6145222254303366 1.0 6710 +Phenotype MP:0002862 abnormal righting response 0.02364194690975696 -0.6146870499310095 1.0 6711 +Phenotype MP:0000288 abnormal pericardium morphology 0.023637075487991988 -0.6147753435291357 1.0 6712 +Phenotype MP:0008245 abnormal alveolar macrophage morphology 0.02359635566163265 -0.6155133826802909 1.0 6713 +Phenotype MP:0011069 abnormal brain ependyma motile cilium physiology 0.023572986259290052 -0.6159369486777422 1.0 6714 +Phenotype MP:0001973 increased thermal nociceptive threshold 0.023567414310461166 -0.6160379391964065 1.0 6715 +Biological Process GO:0001709 cell fate determination 0.02356730129409279 -0.6160399875967077 1.0 6716 +Phenotype MP:0000511 abnormal intestinal mucosa morphology 0.023555346378319464 -0.6162566681839877 1.0 6717 +Biological Process GO:0021903 rostrocaudal neural tube patterning 0.023538240001663935 -0.616566718025428 1.0 6718 +Biological Process GO:0048512 circadian behavior 0.023456661813487156 -0.6180453072567144 1.0 6719 +Phenotype MP:0001410 head bobbing 0.023437839689026574 -0.6183864547026106 1.0 6720 +Biological Process GO:0006664 glycolipid metabolic process 0.023425223797691963 -0.6186151153469241 1.0 6721 +Biological Process GO:0009611 response to wounding 0.023420693110804525 -0.6186972331898404 1.0 6722 +Phenotype MP:0004955 increased thymus weight 0.023414494984640877 -0.6188095730542643 1.0 6723 +Phenotype MP:0013486 decreased Paneth cell number 0.02340364630483205 -0.6190062033239173 1.0 6724 +Phenotype MP:0008034 enhanced lipolysis 0.023379759780730702 -0.6194391420554393 1.0 6725 +Biological Process GO:0030279 negative regulation of ossification 0.023370566838977425 -0.6196057623859961 1.0 6726 +Biological Process GO:0002822 regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains 0.023349207092105195 -0.6199929037581462 1.0 6727 +Phenotype MP:0011643 abnormal tendon collagen fibril morphology 0.023342238431559914 -0.620119209412501 1.0 6728 +Biological Process GO:0071695 anatomical structure maturation 0.023325750507501075 -0.6204180499175982 1.0 6729 +Phenotype MP:0003186 abnormal redox activity 0.02332554304054235 -0.6204218102169855 1.0 6730 +Phenotype MP:0006282 abnormal spinal cord dorsal horn morphology 0.023317249828246678 -0.620572123121295 1.0 6731 +Phenotype MP:0011121 decreased primordial ovarian follicle number 0.02331458385540852 -0.6206204433747536 1.0 6732 +Phenotype MP:0001125 abnormal oocyte morphology 0.023308671286727534 -0.6207276075638136 1.0 6733 +Biological Process GO:0002883 regulation of hypersensitivity 0.023218452500094577 -0.6223628060078652 1.0 6734 +Phenotype MP:0010876 decreased bone volume 0.023165118909622695 -0.6233294672478363 1.0 6735 +Phenotype MP:0000443 abnormal snout morphology 0.02312738024590366 -0.6240134733899829 1.0 6736 +Biological Process GO:1903008 organelle disassembly 0.023124702019360233 -0.624062015739532 1.0 6737 +Biological Process GO:0008631 intrinsic apoptotic signaling pathway in response to oxidative stress 0.023114516565610144 -0.6242466251623107 1.0 6738 +Phenotype MP:0005039 hypoxia 0.023093846293358755 -0.6246212699373629 1.0 6739 +Biological Process GO:0046068 cGMP metabolic process 0.023085049608920216 -0.6247807081790369 1.0 6740 +Phenotype MP:0008730 fused phalanges 0.023071856717537975 -0.6250198268400818 1.0 6741 +Phenotype MP:0011733 fused somites 0.023051192825619293 -0.6253943559728106 1.0 6742 +Biological Process GO:0002520 immune system development 0.02302800188486731 -0.6258146873876855 1.0 6743 +Phenotype MP:0004536 short inner hair cell stereocilia 0.02301696330419145 -0.6260147595746364 1.0 6744 +Phenotype MP:0003565 abnormal glucagon secretion 0.023010984126840772 -0.6261231310332364 1.0 6745 +Phenotype MP:0001655 multifocal hepatic necrosis 0.022961828359590042 -0.6270140700175033 1.0 6746 +Phenotype MP:0013754 abnormal ocular surface morphology 0.02293299090456602 -0.6275367434355967 1.0 6747 +Phenotype MP:0010177 acanthocytosis 0.022930171834397828 -0.627587838549206 1.0 6748 +Biological Process GO:0048103 somatic stem cell division 0.0229044384873891 -0.6280542505966225 1.0 6749 +Biological Process GO:0060538 skeletal muscle organ development 0.02289555114278019 -0.6282153320367372 1.0 6750 +Biological Process GO:0009191 ribonucleoside diphosphate catabolic process 0.022883589459705256 -0.6284321352800788 1.0 6751 +Biological Process GO:0043249 erythrocyte maturation 0.02287291433742311 -0.6286256198523867 1.0 6752 +Biological Process GO:0003323 type B pancreatic cell development 0.022871087151362324 -0.6286587372541509 1.0 6753 +Phenotype MP:0005135 increased thyroid-stimulating hormone level 0.02286447857643159 -0.6287785164248473 1.0 6754 +Phenotype MP:0002404 increased intestinal adenoma incidence 0.022837788899216838 -0.629262261776371 1.0 6755 +Phenotype MP:0000040 absent middle ear ossicles 0.022825796749249783 -0.6294796172263699 1.0 6756 +Phenotype MP:0000832 abnormal thalamus morphology 0.02279579001990617 -0.6300234835203533 1.0 6757 +Biological Process GO:0048934 peripheral nervous system neuron differentiation 0.02279349417065024 -0.630065095353888 1.0 6758 +Biological Process GO:0048935 peripheral nervous system neuron development 0.02279349417065024 -0.630065095353888 1.0 6758 +Biological Process GO:0021955 central nervous system neuron axonogenesis 0.022785258116485352 -0.6302143722778877 1.0 6760 +Biological Process GO:0035458 cellular response to interferon-beta 0.022783288964624004 -0.630250062782936 1.0 6761 +Phenotype MP:0031615 decreased muscle glycogen level 0.02277276050278887 -0.6304408891623808 1.0 6762 +Phenotype MP:0002888 abnormal NMDA-mediated synaptic currents 0.02275533944516195 -0.6307566425369099 1.0 6763 +Biological Process GO:0071697 ectodermal placode morphogenesis 0.022745416913517946 -0.630936486546244 1.0 6764 +Biological Process GO:0060788 ectodermal placode formation 0.022745416913517946 -0.630936486546244 1.0 6764 +Biological Process GO:2000193 positive regulation of fatty acid transport 0.022742190918188077 -0.6309949571014442 1.0 6766 +Phenotype MP:0002599 increased mean platelet volume 0.022724678609512217 -0.6313123643839764 1.0 6767 +Biological Process GO:0051225 spindle assembly 0.02272076864702588 -0.6313832317145244 1.0 6768 +Phenotype MP:0005503 abnormal tendon morphology 0.022711728601456094 -0.6315470808306737 1.0 6769 +Phenotype MP:0010292 increased alimentary system tumor incidence 0.022669395094137124 -0.6323143676440162 1.0 6770 +Phenotype MP:0001353 increased aggression towards mice 0.02265079912501622 -0.6326514160671549 1.0 6771 +Phenotype MP:0013966 abnormal infrahyoid muscle morphology 0.022626408272868548 -0.6330934956491296 1.0 6772 +Phenotype MP:0002985 abnormal urine calcium level 0.02262228522610632 -0.6331682250918761 1.0 6773 +Phenotype MP:0001038 abnormal cholinergic neuron morphology 0.022611289044486726 -0.6333675288039513 1.0 6774 +Biological Process GO:0060998 regulation of dendritic spine development 0.022608559486261837 -0.6334170015305182 1.0 6775 +Biological Process GO:0071696 ectodermal placode development 0.022605123655564885 -0.6334792753120593 1.0 6776 +Biological Process GO:0070169 positive regulation of biomineral tissue development 0.022597477440314706 -0.6336178615172899 1.0 6777 +Phenotype MP:0006141 abnormal atrioventricular node conduction 0.0225827676973952 -0.6338844728255558 1.0 6778 +Biological Process GO:0043576 regulation of respiratory gaseous exchange 0.022580004588250713 -0.6339345536561947 1.0 6779 +Phenotype MP:0000917 obstructive hydrocephaly 0.022576318073450397 -0.6340013710396957 1.0 6780 +Biological Process GO:0099111 microtubule-based transport 0.02256424345022301 -0.6342202213019394 1.0 6781 +Phenotype MP:0030002 increased lung apoptosis 0.022552582874556748 -0.6344315670304492 1.0 6782 +Phenotype MP:0000473 abnormal stomach glandular epithelium morphology 0.02252634245933982 -0.6349071695932342 1.0 6783 +Phenotype MP:0030313 abnormal face development 0.022519495017610747 -0.6350312781794721 1.0 6784 +Phenotype MP:0005011 increased eosinophil cell number 0.022505840736604332 -0.6352787594401897 1.0 6785 +Phenotype MP:0004228 decreased cellular sensitivity to ionizing radiation 0.022505768061467646 -0.6352800766632967 1.0 6786 +Biological Process GO:0061157 mRNA destabilization 0.02250313959007444 -0.6353277172101585 1.0 6787 +Biological Process GO:0045214 sarcomere organization 0.02246679159344711 -0.6359865177742938 1.0 6788 +Biological Process GO:0014908 myotube differentiation involved in skeletal muscle regeneration 0.022420329649339044 -0.6368286317236004 1.0 6789 +Biological Process GO:0010389 regulation of G2/M transition of mitotic cell cycle 0.02239493312216878 -0.6372889389751496 1.0 6790 +Biological Process GO:0060993 kidney morphogenesis 0.022322409049416625 -0.638603424076829 1.0 6791 +Biological Process GO:0045823 positive regulation of heart contraction 0.022319283084146435 -0.6386600816061169 1.0 6792 +Biological Process GO:1903524 positive regulation of blood circulation 0.022319283084146435 -0.6386600816061169 1.0 6792 +Phenotype MP:0011024 abnormal branching involved in lung morphogenesis 0.02231340106658597 -0.6387666920618957 1.0 6794 +Phenotype MP:0004380 short frontal bone 0.022304459349303918 -0.6389287589964273 1.0 6795 +Phenotype MP:0004353 abnormal deltoid tuberosity morphology 0.02230354321391692 -0.6389453637770419 1.0 6796 +Phenotype MP:0013278 decreased fasting circulating glucose level 0.02229203318219808 -0.6391539809249781 1.0 6797 +Phenotype MP:0002736 abnormal nociception after inflammation 0.022271425991178373 -0.6395274823646371 1.0 6798 +Biological Process GO:0061333 renal tubule morphogenesis 0.02226771888486112 -0.639594672965488 1.0 6799 +Phenotype MP:0004506 abnormal pubis morphology 0.022259190226303183 -0.6397492532887695 1.0 6800 +Biological Process GO:0003184 pulmonary valve morphogenesis 0.022253016058595088 -0.6398611589107179 1.0 6801 +Biological Process GO:0001823 mesonephros development 0.02225225956069732 -0.6398748702920336 1.0 6802 +Phenotype MP:0008805 decreased circulating amylase level 0.022236177584121553 -0.6401663530757796 1.0 6803 +Phenotype MP:0005591 decreased vasodilation 0.022231647462603865 -0.6402484606714761 1.0 6804 +Biological Process GO:0006096 glycolytic process 0.022201376006358742 -0.6407971250904799 1.0 6805 +Phenotype MP:0011107 embryonic lethality between somite formation and embryo turning, incomplete penetrance 0.022176231353516984 -0.6412528671674637 1.0 6806 +Biological Process GO:0006775 fat-soluble vitamin metabolic process 0.02216503379289425 -0.6414558208358826 1.0 6807 +Biological Process GO:0021984 adenohypophysis development 0.02216292416886423 -0.6414940573724198 1.0 6808 +Phenotype MP:0002907 abnormal parturition 0.022144263608909975 -0.6418322764921965 1.0 6809 +Biological Process GO:1902882 regulation of response to oxidative stress 0.022130341349163807 -0.6420846148168875 1.0 6810 +Biological Process GO:0008209 androgen metabolic process 0.022121382844283777 -0.6422469860234573 1.0 6811 +Biological Process GO:0072332 intrinsic apoptotic signaling pathway by p53 class mediator 0.02211598722991781 -0.6423447805133325 1.0 6812 +Phenotype MP:0009175 abnormal pancreatic beta cell differentiation 0.022112805255535495 -0.6424024531971844 1.0 6813 +Phenotype MP:0031265 increased susceptibility to hepatic steatosis 0.022112478085132725 -0.6424083830988546 1.0 6814 +Biological Process GO:0003309 type B pancreatic cell differentiation 0.022080348074463796 -0.6429907334652694 1.0 6815 +Phenotype MP:0000060 delayed bone ossification 0.022079456382512297 -0.6430068952132387 1.0 6816 +Phenotype MP:0006359 absent startle reflex 0.022041499391339148 -0.6436948584991974 1.0 6817 +Phenotype MP:0004551 decreased tracheal cartilage ring number 0.022027545602016807 -0.6439477682914931 1.0 6818 +Phenotype MP:0011481 anterior iris synechia 0.022020828088989308 -0.6440695219445892 1.0 6819 +Biological Process GO:0006631 fatty acid metabolic process 0.022003009745106383 -0.644392476057367 1.0 6820 +Biological Process GO:1904994 regulation of leukocyte adhesion to vascular endothelial cell 0.021982747798574453 -0.6447597200059835 1.0 6821 +Phenotype MP:0030026 small Meckel's cartilage 0.021982690352865042 -0.6447607611986015 1.0 6822 +Phenotype MP:0001394 circling 0.021969930053887476 -0.6449920392041307 1.0 6823 +Phenotype MP:0000109 abnormal parietal bone morphology 0.021949260304799045 -0.6453666744969534 1.0 6824 +Biological Process GO:0060837 blood vessel endothelial cell differentiation 0.021943492483242566 -0.6454712151717586 1.0 6825 +Biological Process GO:0072088 nephron epithelium morphogenesis 0.021933838309379006 -0.6456461952470784 1.0 6826 +Phenotype MP:0003366 abnormal circulating glucocorticoid level 0.02191672391441135 -0.6459563904189095 1.0 6827 +Phenotype MP:0008475 intermingled spleen red and white pulp 0.021864744428966465 -0.6468985087613771 1.0 6828 +Biological Process GO:0007143 female meiotic nuclear division 0.02185312795445915 -0.6471090551647222 1.0 6829 +Biological Process GO:0021587 cerebellum morphogenesis 0.021837639187839875 -0.6473897861302045 1.0 6830 +Phenotype MP:0009235 small sperm head 0.021825441290478698 -0.6476108707128075 1.0 6831 +Phenotype MP:0002717 abnormal male preputial gland morphology 0.021816263748356435 -0.6477772119279648 1.0 6832 +Phenotype MP:0003459 increased fear-related response 0.021787343347568267 -0.6483013887223453 1.0 6833 +Biological Process GO:0045683 negative regulation of epidermis development 0.02175432099834751 -0.648899912556238 1.0 6834 +Biological Process GO:0045605 negative regulation of epidermal cell differentiation 0.02175432099834751 -0.648899912556238 1.0 6834 +Biological Process GO:0050905 neuromuscular process 0.021733387528113712 -0.6492793277449411 1.0 6836 +Biological Process GO:0031110 regulation of microtubule polymerization or depolymerization 0.021722414478991148 -0.6494782121848829 1.0 6837 +Phenotype MP:0004167 abnormal cingulate gyrus morphology 0.021696783334315572 -0.6499427718343411 1.0 6838 +Biological Process GO:0072171 mesonephric tubule morphogenesis 0.021692058865694475 -0.6500284019345288 1.0 6839 +Biological Process GO:0014075 response to amine 0.02167955413707956 -0.6502550477755729 1.0 6840 +Phenotype MP:0008859 abnormal hair cycle catagen phase 0.02165916172180382 -0.6506246564454944 1.0 6841 +Phenotype MP:0030088 microdontia 0.021610237831134693 -0.651511392710576 1.0 6842 +Phenotype MP:0010413 complete atrioventricular septal defect 0.02153409139336826 -0.6528915324930175 1.0 6843 +Phenotype MP:0005108 abnormal ulna morphology 0.02153157971992825 -0.6529370560990684 1.0 6844 +Phenotype MP:0004830 short incisors 0.02152568421715806 -0.653043910971723 1.0 6845 +Phenotype MP:0009783 abnormal melanoblast morphology 0.02152157548337208 -0.653118380994482 1.0 6846 +Phenotype MP:0005249 abnormal palatine bone morphology 0.02144902760632028 -0.6544332975445901 1.0 6847 +Biological Process GO:0034643 establishment of mitochondrion localization, microtubule-mediated 0.021418657710349565 -0.6549837461650018 1.0 6848 +Biological Process GO:0047497 mitochondrion transport along microtubule 0.021418657710349565 -0.6549837461650018 1.0 6848 +Biological Process GO:0031279 regulation of cyclase activity 0.021406972880003483 -0.655195531504996 1.0 6850 +Biological Process GO:0051339 regulation of lyase activity 0.021406972880003483 -0.655195531504996 1.0 6850 +Phenotype MP:0002840 abnormal lens fiber morphology 0.021400977569350776 -0.6553041953766439 1.0 6852 +Biological Process GO:0045191 regulation of isotype switching 0.021381398959215425 -0.6556590539823162 1.0 6853 +Biological Process GO:0016925 protein sumoylation 0.021357445530862718 -0.65609320534074 1.0 6854 +Biological Process GO:0046390 ribose phosphate biosynthetic process 0.021348251137551455 -0.6562598519805107 1.0 6855 +Phenotype MP:0012296 impaired discrimination learning 0.021332354870940318 -0.6565479688062724 1.0 6856 +Biological Process GO:0042640 anagen 0.021314134183699096 -0.6568782153163215 1.0 6857 +Biological Process GO:0061436 establishment of skin barrier 0.021283227606884614 -0.6574383911755204 1.0 6858 +Biological Process GO:0045762 positive regulation of adenylate cyclase activity 0.021278703546476985 -0.6575203889147435 1.0 6859 +Biological Process GO:0050965 detection of temperature stimulus involved in sensory perception of pain 0.02126018897481785 -0.657855962024283 1.0 6860 +Phenotype MP:0003122 maternal imprinting 0.021231226097669365 -0.6583809086946604 1.0 6861 +Biological Process GO:0002204 somatic recombination of immunoglobulin genes involved in immune response 0.02123102814284028 -0.658384496588497 1.0 6862 +Biological Process GO:0002208 somatic diversification of immunoglobulins involved in immune response 0.02123102814284028 -0.658384496588497 1.0 6862 +Biological Process GO:0045190 isotype switching 0.02123102814284028 -0.658384496588497 1.0 6862 +Phenotype MP:0002943 abnormal lactate dehydrogenase level 0.021214716790507793 -0.6586801367644504 1.0 6865 +Biological Process GO:0015807 L-amino acid transport 0.021204265680482726 -0.6588695611569677 1.0 6866 +Phenotype MP:0001454 abnormal cued conditioning behavior 0.021203635283421063 -0.6588809869844792 1.0 6867 +Biological Process GO:0071897 DNA biosynthetic process 0.021198582026779156 -0.6589725763053582 1.0 6868 +Phenotype MP:0003808 increased atrioventricular cushion size 0.021184515899397738 -0.6592275222037275 1.0 6869 +Phenotype MP:0001750 increased circulating follicle stimulating hormone level 0.021178617167404545 -0.6593344356054383 1.0 6870 +Phenotype MP:0009389 abnormal extracutaneous pigmentation 0.021164416978965428 -0.6595918113351225 1.0 6871 +Biological Process GO:0090659 walking behavior 0.021160952500337227 -0.659654604354999 1.0 6872 +Biological Process GO:0090090 negative regulation of canonical Wnt signaling pathway 0.021150340551493674 -0.659846943920681 1.0 6873 +Phenotype MP:0030973 impaired gluconeogenesis 0.021139046177744314 -0.6600516523087091 1.0 6874 +Phenotype MP:0009239 short sperm flagellum 0.02112123526654741 -0.6603744717054585 1.0 6875 +Phenotype MP:0002579 disorganized secondary lens fibers 0.02111016825366252 -0.6605750592208205 1.0 6876 +Phenotype MP:0008839 absent acrosome 0.02110029297905114 -0.6607540467053763 1.0 6877 +Phenotype MP:0001987 alcohol preference 0.021022385418305145 -0.6621661065087295 1.0 6878 +Phenotype MP:0013550 abnormal secondary palate morphology 0.021017690188648297 -0.6622512066582203 1.0 6879 +Phenotype MP:0004542 impaired acrosome reaction 0.02101547767983225 -0.6622913079620449 1.0 6880 +Biological Process GO:1904996 positive regulation of leukocyte adhesion to vascular endothelial cell 0.020976100696024624 -0.6630050083459309 1.0 6881 +Phenotype MP:0002583 absent extraembryonic ectoderm 0.0209692986913822 -0.6631282933935672 1.0 6882 +Phenotype MP:0001324 abnormal eye pigmentation 0.02096745868259453 -0.6631616432048307 1.0 6883 +Biological Process GO:0060119 inner ear receptor cell development 0.020961649502791335 -0.6632669334900353 1.0 6884 +Biological Process GO:0043388 positive regulation of DNA binding 0.02095657426498554 -0.6633589212153523 1.0 6885 +Phenotype MP:0009732 ventricular premature beat 0.020954658290670225 -0.6633936478874367 1.0 6886 +Phenotype MP:0012515 abnormal heart apex morphology 0.02095083430348732 -0.6634629569318711 1.0 6887 +Biological Process GO:0022604 regulation of cell morphogenesis 0.02092671589545314 -0.6639000985158179 1.0 6888 +Phenotype MP:0030266 small vomer bone 0.020884826363806175 -0.6646593383540773 1.0 6889 +Biological Process GO:0043488 regulation of mRNA stability 0.020884012207140423 -0.6646740947896572 1.0 6890 +Biological Process GO:0032703 negative regulation of interleukin-2 production 0.020856353231945568 -0.6651754084837407 1.0 6891 +Phenotype MP:0030079 small incisors 0.020838784977973424 -0.6654938297641867 1.0 6892 +Phenotype MP:0009951 abnormal olfactory bulb mitral cell layer morphology 0.020815428780491696 -0.6659171564260322 1.0 6893 +Biological Process GO:0009181 purine ribonucleoside diphosphate catabolic process 0.020792500558049376 -0.6663327261212342 1.0 6894 +Biological Process GO:0009137 purine nucleoside diphosphate catabolic process 0.020792500558049376 -0.6663327261212342 1.0 6894 +Phenotype MP:0009412 skeletal muscle fiber degeneration 0.020731315055020683 -0.6674417017912138 1.0 6896 +Phenotype MP:0009325 necrospermia 0.02072985773304936 -0.6674681154763111 1.0 6897 +Phenotype MP:0009166 abnormal pancreatic islet number 0.02072805329756844 -0.6675008205281181 1.0 6898 +Phenotype MP:0004969 pale kidney 0.020718655461053337 -0.6676711545374798 1.0 6899 +Phenotype MP:0002695 abnormal circulating glucagon level 0.02068384998509787 -0.6683019972061848 1.0 6900 +Phenotype MP:0004927 abnormal epididymis weight 0.02064617135522917 -0.6689849152461486 1.0 6901 +Phenotype MP:0003081 abnormal soleus morphology 0.020636109789960888 -0.6691672792136264 1.0 6902 +Phenotype MP:0010279 increased gastrointestinal tumor incidence 0.020608085968092493 -0.6696752056846619 1.0 6903 +Phenotype MP:0008221 abnormal hippocampal commissure morphology 0.020578879565968156 -0.6702045661991671 1.0 6904 +Phenotype MP:0001524 impaired limb coordination 0.02056324109591101 -0.6704880105111465 1.0 6905 +Phenotype MP:0009358 environmentally induced seizures 0.020531045542284687 -0.6710715488312674 1.0 6906 +Phenotype MP:0004091 abnormal Z line morphology 0.020527846642713565 -0.6711295282809651 1.0 6907 +Biological Process GO:0046031 ADP metabolic process 0.020518136167221868 -0.6713055288126462 1.0 6908 +Biological Process GO:0035137 hindlimb morphogenesis 0.020516235931763438 -0.6713399702209263 1.0 6909 +Biological Process GO:0031290 retinal ganglion cell axon guidance 0.020507810369932322 -0.6714926819355335 1.0 6910 +Phenotype MP:0010948 abnormal double-strand DNA break repair 0.02050494601858932 -0.6715445977618718 1.0 6911 +Biological Process GO:0045830 positive regulation of isotype switching 0.020495325376536533 -0.6717189700794635 1.0 6912 +Biological Process GO:0007519 skeletal muscle tissue development 0.020489816706799835 -0.6718188136765503 1.0 6913 +Phenotype MP:0004044 aortic dissection 0.020471989587427353 -0.6721419268434166 1.0 6914 +Phenotype MP:0004030 induced chromosome breakage 0.020468646810614555 -0.6722025140409071 1.0 6915 +Biological Process GO:1990849 vacuolar localization 0.020464153998197787 -0.6722839454162061 1.0 6916 +Biological Process GO:0032418 lysosome localization 0.020464153998197787 -0.6722839454162061 1.0 6916 +Phenotype MP:0012312 impaired avoidance learning behavior 0.020453543240765648 -0.6724762633877814 1.0 6918 +Phenotype MP:0020946 increased susceptibility to Orthomyxoviridae infection 0.020411981342769003 -0.6732295649280963 1.0 6919 +Biological Process GO:0043543 protein acylation 0.020367894530111563 -0.6740286300690843 1.0 6920 +Phenotype MP:0006035 abnormal mitochondrial morphology 0.02036164371361293 -0.6741419249358641 1.0 6921 +Phenotype MP:0004133 heterotaxia 0.02034958790388086 -0.6743604342070636 1.0 6922 +Phenotype MP:0006356 abnormal third pharyngeal arch artery morphology 0.020340868757180774 -0.6745184670918932 1.0 6923 +Phenotype MP:0001380 reduced male mating frequency 0.020328341244805426 -0.6747455258842858 1.0 6924 +Phenotype MP:0001006 abnormal retina cone cell morphology 0.020299746012142572 -0.6752638090678962 1.0 6925 +Phenotype MP:0005431 decreased oocyte number 0.02027676007295065 -0.6756804248682684 1.0 6926 +Biological Process GO:0008593 regulation of Notch signaling pathway 0.020248255396650428 -0.6761970667349335 1.0 6927 +Biological Process GO:0034248 regulation of amide metabolic process 0.020227930737949706 -0.6765654473297481 1.0 6928 +Biological Process GO:0021511 spinal cord patterning 0.020211553068461896 -0.6768622894915987 1.0 6929 +Phenotype MP:0011743 abnormal Golgi apparatus morphology 0.020191074786874097 -0.6772334544721857 1.0 6930 +Biological Process GO:0030534 adult behavior 0.020186599775096847 -0.6773145632142601 1.0 6931 +Biological Process GO:0007622 rhythmic behavior 0.02017345645747093 -0.6775527833603481 1.0 6932 +Phenotype MP:0003718 maternal effect 0.02015058344525711 -0.6779673523806007 1.0 6933 +Biological Process GO:0048255 mRNA stabilization 0.0201418948183526 -0.6781248320999079 1.0 6934 +Biological Process GO:0014902 myotube differentiation 0.020045776485079103 -0.6798669587109993 1.0 6935 +Phenotype MP:0003722 absent ureter 0.020042971315620384 -0.6799178018768786 1.0 6936 +Phenotype MP:0004326 abnormal vestibular hair cell number 0.019991970378658963 -0.6808421842131627 1.0 6937 +Biological Process GO:0006735 NADH regeneration 0.019960120222541344 -0.6814194622687656 1.0 6938 +Biological Process GO:0061621 canonical glycolysis 0.019960120222541344 -0.6814194622687656 1.0 6938 +Biological Process GO:0061718 glucose catabolic process to pyruvate 0.019960120222541344 -0.6814194622687656 1.0 6938 +Phenotype MP:0000465 gastrointestinal hemorrhage 0.019910420583273303 -0.6823202588304801 1.0 6941 +Phenotype MP:0009570 abnormal right lung morphology 0.01987777784820821 -0.6829119022296003 1.0 6942 +Phenotype MP:0013873 abnormal ductus venosus morphology 0.019875436633973287 -0.6829543362947992 1.0 6943 +Phenotype MP:0004023 abnormal chromosome number 0.019831678840291356 -0.6837474380290857 1.0 6944 +Biological Process GO:0051146 striated muscle cell differentiation 0.019828127070990575 -0.6838118131758929 1.0 6945 +Phenotype MP:0004534 decreased inner hair cell stereocilia number 0.019796856554112785 -0.6843785853799049 1.0 6946 +Phenotype MP:0008907 decreased total fat pad weight 0.01978249011240618 -0.6846389744186178 1.0 6947 +Phenotype MP:0020500 persistent trigeminal artery 0.019773600430991745 -0.6848000982128907 1.0 6948 +Phenotype MP:0003463 abnormal single cell response 0.019749499812167448 -0.685236917370773 1.0 6949 +Biological Process GO:0097401 synaptic vesicle lumen acidification 0.01974277766911059 -0.6853587549422755 1.0 6950 +Biological Process GO:0019320 hexose catabolic process 0.019657804088765607 -0.6868988850144179 1.0 6951 +Phenotype MP:0004910 decreased seminal vesicle weight 0.019605603735229682 -0.6878450065492613 1.0 6952 +Phenotype MP:0013297 abnormal susceptibility to colitis induced morbidity/mortality 0.019596197645374347 -0.6880154901488538 1.0 6953 +Phenotype MP:0021166 delayed palatal shelf elevation 0.019579082905364142 -0.6883256915745157 1.0 6954 +Phenotype MP:0003986 small cochlear ganglion 0.019568569305928762 -0.688516248575776 1.0 6955 +Phenotype MP:0008531 increased chemical nociceptive threshold 0.01953351647304169 -0.689151574542082 1.0 6956 +Phenotype MP:0008058 abnormal DNA repair 0.019495805356667617 -0.6898350813938113 1.0 6957 +Phenotype MP:0013696 increased granulocyte monocyte progenitor cell number 0.019492180682297522 -0.6899007779312109 1.0 6958 +Phenotype MP:0012157 rostral body truncation 0.019466589472382667 -0.6903646137706843 1.0 6959 +Phenotype MP:0020152 abnormal oocyte number 0.019456099120800263 -0.6905547494090063 1.0 6960 +Biological Process GO:0021513 spinal cord dorsal/ventral patterning 0.019444197472905933 -0.6907704645260543 1.0 6961 +Phenotype MP:0013161 enhanced muscle regeneration 0.01943525261867718 -0.6909325883171515 1.0 6962 +Biological Process GO:0060828 regulation of canonical Wnt signaling pathway 0.01934380177481787 -0.6925901175654037 1.0 6963 +Phenotype MP:0001932 abnormal spermiogenesis 0.019333481529223207 -0.6927771700648713 1.0 6964 +Phenotype MP:0004377 small frontal bone 0.01932985580572133 -0.6928428856175859 1.0 6965 +Biological Process GO:0030193 regulation of blood coagulation 0.019324673023627947 -0.6929368225627749 1.0 6966 +Phenotype MP:0031204 hindlimb paresis 0.019314629844672027 -0.6931188532818187 1.0 6967 +Biological Process GO:0002864 regulation of acute inflammatory response to antigenic stimulus 0.01929872046857195 -0.6934072077145879 1.0 6968 +Biological Process GO:0006360 transcription by RNA polymerase I 0.019292899043004463 -0.6935127199519542 1.0 6969 +Phenotype MP:0005186 increased circulating progesterone level 0.019280466022117415 -0.6937380661039931 1.0 6970 +Biological Process GO:0043414 macromolecule methylation 0.01927904788685697 -0.6937637695373675 1.0 6971 +Phenotype MP:0004782 abnormal surfactant physiology 0.019259707958624972 -0.694114302078685 1.0 6972 +Biological Process GO:0055064 chloride ion homeostasis 0.019117041264983148 -0.6967001089174557 1.0 6973 +Phenotype MP:0009310 increased large intestine adenocarcinoma incidence 0.019105977809002472 -0.6969006319646014 1.0 6974 +Biological Process GO:0002313 mature B cell differentiation involved in immune response 0.01903790256926552 -0.6981344828093172 1.0 6975 +Phenotype MP:0010454 abnormal truncus arteriosus septation 0.018999798875832585 -0.6988251050459877 1.0 6976 +Phenotype MP:0012676 dilated brain ventricle 0.018975182727521633 -0.6992712680783101 1.0 6977 +Phenotype MP:0001523 impaired righting response 0.018944517732088273 -0.6998270653206681 1.0 6978 +Phenotype MP:0012132 abnormal midbrain-hindbrain boundary morphology 0.01891834415289917 -0.70030145649309 1.0 6979 +Phenotype MP:0005122 increased circulating thyroid-stimulating hormone level 0.018902548547322096 -0.7005877488566479 1.0 6980 +Biological Process GO:0033198 response to ATP 0.018865155922879073 -0.7012654831023654 1.0 6981 +Phenotype MP:0001344 blepharoptosis 0.018855115077460627 -0.7014474715264838 1.0 6982 +Biological Process GO:0006027 glycosaminoglycan catabolic process 0.018837691412997182 -0.7017632721494318 1.0 6983 +Phenotype MP:0011580 abnormal triglyceride lipase activity 0.018836778503022233 -0.7017798184700631 1.0 6984 +Phenotype MP:0011932 abnormal endocrine pancreas development 0.018832735408335077 -0.7018530987965708 1.0 6985 +Phenotype MP:0002660 abnormal caput epididymis morphology 0.018813459557317613 -0.7022024699504942 1.0 6986 +Biological Process GO:0042692 muscle cell differentiation 0.01880540358417848 -0.702348482939962 1.0 6987 +Phenotype MP:0013971 blood in lymph vessels 0.018799739371435087 -0.7024511457246263 1.0 6988 +Biological Process GO:0009152 purine ribonucleotide biosynthetic process 0.01879414146749936 -0.7025526066746931 1.0 6989 +Biological Process GO:0031644 regulation of nervous system process 0.01878337779262529 -0.7027476962459812 1.0 6990 +Phenotype MP:0004398 cochlear inner hair cell degeneration 0.018747654810451042 -0.7033951685413675 1.0 6991 +Phenotype MP:0003406 failure of zygotic cell division 0.018734660411584225 -0.7036306895631127 1.0 6992 +Biological Process GO:0002637 regulation of immunoglobulin production 0.018699776697113757 -0.7042629502901042 1.0 6993 +Phenotype MP:0006092 abnormal olfactory sensory neuron morphology 0.01865381400088162 -0.7050960154660856 1.0 6994 +Phenotype MP:0001314 cornea opacity 0.018606032765157265 -0.705962041326411 1.0 6995 +Biological Process GO:0060218 hematopoietic stem cell differentiation 0.018605795526291935 -0.7059663412359746 1.0 6996 +Biological Process GO:0030432 peristalsis 0.018571359993363235 -0.7065904787572891 1.0 6997 +Biological Process GO:0071674 mononuclear cell migration 0.01854674576929649 -0.7070366069130491 1.0 6998 +Biological Process GO:0006396 RNA processing 0.018546493006713516 -0.707041188187059 1.0 6999 +Biological Process GO:0061469 regulation of type B pancreatic cell proliferation 0.01854132105743811 -0.707134928789471 1.0 7000 +Biological Process GO:0043374 CD8-positive, alpha-beta T cell differentiation 0.01848392686254796 -0.7081751877165146 1.0 7001 +Biological Process GO:0060042 retina morphogenesis in camera-type eye 0.018480329509952265 -0.7082403890519207 1.0 7002 +Phenotype MP:0005642 decreased mean corpuscular hemoglobin concentration 0.018478497802810856 -0.7082735883974158 1.0 7003 +Phenotype MP:0009908 protruding tongue 0.018475132897999846 -0.7083345766606889 1.0 7004 +Phenotype MP:0011043 abnormal lung elastance 0.018450268140760784 -0.7087852456828123 1.0 7005 +Phenotype MP:0003656 abnormal erythrocyte physiology 0.0184331815687242 -0.70909493656928 1.0 7006 +Biological Process GO:0030214 hyaluronan catabolic process 0.01840254725919188 -0.7096501776354853 1.0 7007 +Phenotype MP:0002812 spherocytosis 0.018395166903802607 -0.709783945181021 1.0 7008 +Phenotype MP:0004777 abnormal phospholipid level 0.018377056281101978 -0.710112196792089 1.0 7009 +Phenotype MP:0000953 abnormal oligodendrocyte morphology 0.018355579214963114 -0.7105014645537575 1.0 7010 +Biological Process GO:0035264 multicellular organism growth 0.018350690317909257 -0.7105900748881896 1.0 7011 +Biological Process GO:1901160 primary amino compound metabolic process 0.018262255150806928 -0.7121929455655962 1.0 7012 +Biological Process GO:0048715 negative regulation of oligodendrocyte differentiation 0.01821645659865423 -0.7130230356611833 1.0 7013 +Phenotype MP:0002842 increased systemic arterial blood pressure 0.01820648736831476 -0.7132037260755403 1.0 7014 +Biological Process GO:0001976 nervous system process involved in regulation of systemic arterial blood pressure 0.01820391205980809 -0.7132504030551386 1.0 7015 +Phenotype MP:0008995 early reproductive senescence 0.018195480370870376 -0.7134032258223941 1.0 7016 +Biological Process GO:0090329 regulation of DNA-templated DNA replication 0.018163884832425814 -0.7139758889808304 1.0 7017 +Phenotype MP:0001127 small ovary 0.018163563439006603 -0.7139817141757664 1.0 7018 +Phenotype MP:0031443 abnormal tongue position 0.018159389562732664 -0.7140573648937989 1.0 7019 +Phenotype MP:0008878 abnormal DNA methylation during gametogenesis 0.01813491502990283 -0.7145009611723108 1.0 7020 +Phenotype MP:0008329 decreased somatotroph cell number 0.018119793632730086 -0.7147750336360578 1.0 7021 +Phenotype MP:0008392 decreased primordial germ cell number 0.018078354418291087 -0.7155261115600942 1.0 7022 +Phenotype MP:0002635 reduced sensorimotor gating 0.018058720194450095 -0.7158819781536626 1.0 7023 +Phenotype MP:0003702 abnormal chromosome morphology 0.018045831377721866 -0.7161155855191154 1.0 7024 +Biological Process GO:0009185 ribonucleoside diphosphate metabolic process 0.018038393763860294 -0.7162503908636316 1.0 7025 +Phenotype MP:0000493 rectal prolapse 0.018030663522377477 -0.7163905000284365 1.0 7026 +Phenotype MP:0000439 enlarged cranium 0.018017710372429052 -0.7166252734213375 1.0 7027 +Biological Process GO:0030212 hyaluronan metabolic process 0.017977230378352083 -0.7173589656577358 1.0 7028 +Phenotype MP:0013298 increased susceptibility to colitis induced morbidity/mortality 0.01795512677825395 -0.7177595892289156 1.0 7029 +Phenotype MP:0004796 increased anti-histone antibody level 0.017954405581815047 -0.7177726607779661 1.0 7030 +Phenotype MP:0001289 persistence of hyaloid vascular system 0.017943160231113642 -0.7179764806325222 1.0 7031 +Biological Process GO:0031113 regulation of microtubule polymerization 0.017925325865112418 -0.7182997251431638 1.0 7032 +Phenotype MP:0009006 prolonged estrous cycle 0.017910084941771265 -0.7185759639961063 1.0 7033 +Biological Process GO:1901222 regulation of non-canonical NF-kappaB signal transduction 0.01788842659945855 -0.71896851735414 1.0 7034 +Biological Process GO:0002279 mast cell activation involved in immune response 0.017864681844647623 -0.7193988865440869 1.0 7035 +Biological Process GO:0043303 mast cell degranulation 0.017864681844647623 -0.7193988865440869 1.0 7035 +Biological Process GO:0048333 mesodermal cell differentiation 0.017861012018091205 -0.7194654014563235 1.0 7037 +Biological Process GO:1901615 organic hydroxy compound metabolic process 0.017856582780341745 -0.7195456805528018 1.0 7038 +Phenotype MP:0003144 decreased otolith number 0.01782233835126712 -0.7201663543529059 1.0 7039 +Biological Process GO:0035315 hair cell differentiation 0.01778889626339164 -0.7207724858705276 1.0 7040 +Biological Process GO:0033044 regulation of chromosome organization 0.01774428860411348 -0.7215809912580051 1.0 7041 +Phenotype MP:0010752 impaired mucociliary clearance 0.017731165340032606 -0.7218188479373819 1.0 7042 +Phenotype MP:0009395 increased nucleated erythrocyte cell number 0.017683361732652614 -0.7226852792797345 1.0 7043 +Phenotype MP:0004029 spontaneous chromosome breakage 0.01767156664263303 -0.7228990630554567 1.0 7044 +Biological Process GO:0002763 positive regulation of myeloid leukocyte differentiation 0.017632994103749744 -0.7235981830272391 1.0 7045 +Biological Process GO:0043124 negative regulation of canonical NF-kappaB signal transduction 0.017627976689029934 -0.723689122720059 1.0 7046 +Phenotype MP:0020471 abnormal circadian behavior persistence 0.017620135538392923 -0.7238312420923066 1.0 7047 +Phenotype MP:0013428 abnormal memory CD4-positive, CD25-positive, alpha-beta regulatory T cell number 0.01761134855133273 -0.7239905045708321 1.0 7048 +Phenotype MP:0010067 increased red blood cell distribution width 0.017568651357926623 -0.7247643831257177 1.0 7049 +Biological Process GO:0072078 nephron tubule morphogenesis 0.01754755254455631 -0.7251467951274976 1.0 7050 +Phenotype MP:0009897 decreased maxillary shelf size 0.017511796356136755 -0.7257948692797996 1.0 7051 +Phenotype MP:0001940 testis hypoplasia 0.01749959724774519 -0.7260159758120994 1.0 7052 +Phenotype MP:0000168 abnormal bone marrow development 0.017479548570521475 -0.7263793542948415 1.0 7053 +Phenotype MP:0002653 abnormal ependyma morphology 0.01747034350984722 -0.7265461942785488 1.0 7054 +Phenotype MP:0011997 abnormal retina outer nuclear layer thickness 0.017470242095866895 -0.7265480323877611 1.0 7055 +Phenotype MP:0003806 abnormal nucleotide metabolism 0.017457546724497508 -0.7267781335926724 1.0 7056 +Phenotype MP:0009299 decreased mesenteric fat pad weight 0.01745113509331997 -0.7268943431950914 1.0 7057 +Phenotype MP:0004321 short sternum 0.01744787946174786 -0.726953350901577 1.0 7058 +Biological Process GO:0014821 phasic smooth muscle contraction 0.017446680749415466 -0.7269750773358813 1.0 7059 +Biological Process GO:1903509 liposaccharide metabolic process 0.017445451599535144 -0.7269973554449849 1.0 7060 +Phenotype MP:0010912 herniated liver 0.01743478501552409 -0.7271906852627443 1.0 7061 +Phenotype MP:0002329 abnormal blood gas level 0.017432057633976594 -0.7272401185374451 1.0 7062 +Biological Process GO:0046365 monosaccharide catabolic process 0.017427221787388203 -0.7273277673422244 1.0 7063 +Phenotype MP:0000826 abnormal third ventricle morphology 0.01742331252525675 -0.7273986219789725 1.0 7064 +Phenotype MP:0009016 abnormal estrus 0.01739838688287043 -0.7278503945328744 1.0 7065 +Phenotype MP:0013877 abnormal ductus venosus valve morphology 0.01739051585793927 -0.7279930553710531 1.0 7066 +Phenotype MP:0000678 abnormal parathyroid gland morphology 0.017372869111059508 -0.7283128993206038 1.0 7067 +Biological Process GO:2000406 positive regulation of T cell migration 0.017365881162688113 -0.7284395545631588 1.0 7068 +Phenotype MP:0011395 decreased fetal cardiomyocyte proliferation 0.01728806646169001 -0.7298499313011447 1.0 7069 +Phenotype MP:0004716 abnormal cochlear nerve morphology 0.017279935321721673 -0.729997306675175 1.0 7070 +Phenotype MP:0010902 abnormal pulmonary alveolar sac morphology 0.01724956552576118 -0.7305477534829203 1.0 7071 +Biological Process GO:0007059 chromosome segregation 0.017243855087325066 -0.7306512540995221 1.0 7072 +Biological Process GO:0072079 nephron tubule formation 0.017232769388525027 -0.7308521802935619 1.0 7073 +Biological Process GO:0045598 regulation of fat cell differentiation 0.017222099558736215 -0.7310455689404293 1.0 7074 +Phenotype MP:0000642 enlarged adrenal glands 0.017203849406231653 -0.7313763495028035 1.0 7075 +Phenotype MP:0011080 increased macrophage apoptosis 0.017164741219332758 -0.7320851779935581 1.0 7076 +Biological Process GO:0046686 response to cadmium ion 0.017116143840183673 -0.7329659962990942 1.0 7077 +Biological Process GO:0030902 hindbrain development 0.017097901382047365 -0.7332966374024991 1.0 7078 +Phenotype MP:0002874 decreased hemoglobin content 0.017072906642355723 -0.733749662331991 1.0 7079 +Biological Process GO:0072528 pyrimidine-containing compound biosynthetic process 0.017069968003188052 -0.733802924611101 1.0 7080 +Biological Process GO:0015812 gamma-aminobutyric acid transport 0.017033384760281822 -0.7344659889695477 1.0 7081 +Biological Process GO:0050654 chondroitin sulfate proteoglycan metabolic process 0.016991470133057796 -0.7352256836603949 1.0 7082 +Phenotype MP:0006093 arteriovenous malformation 0.016985995367983953 -0.73532491274188 1.0 7083 +Phenotype MP:0002668 abnormal circulating potassium level 0.016959923054825188 -0.7357974684866551 1.0 7084 +Biological Process GO:0050849 negative regulation of calcium-mediated signaling 0.016858749784882665 -0.7376312148687992 1.0 7085 +Phenotype MP:0010728 fusion of atlas and occipital bones 0.016843174108908898 -0.737913521049894 1.0 7086 +Phenotype MP:0000553 absent radius 0.01679440892597739 -0.7387973807672489 1.0 7087 +Phenotype MP:0013519 decreased CD4-positive NK T cell number 0.0167727742113728 -0.7391895058775416 1.0 7088 +Phenotype MP:0031152 subcutaneous hemorrhage 0.016736001575604065 -0.7398560029458001 1.0 7089 +Biological Process GO:0009134 nucleoside diphosphate catabolic process 0.016733779971131568 -0.7398962691066775 1.0 7090 +Biological Process GO:0033559 unsaturated fatty acid metabolic process 0.016724829925685913 -0.7400584869875992 1.0 7091 +Biological Process GO:0045445 myoblast differentiation 0.016692757085955967 -0.7406398011415579 1.0 7092 +Biological Process GO:0046032 ADP catabolic process 0.016644488362383636 -0.7415146626269262 1.0 7093 +Phenotype MP:0005307 head tossing 0.01662304243754764 -0.7419033659583703 1.0 7094 +Phenotype MP:0014178 increased brain apoptosis 0.01659186018910963 -0.742468538313606 1.0 7095 +Biological Process GO:0016052 carbohydrate catabolic process 0.016444231987982616 -0.7451442715371434 1.0 7096 +Phenotype MP:0020427 increased hepatocyte karyomegaly 0.01643810159930159 -0.7452553836725063 1.0 7097 +Biological Process GO:0006479 protein methylation 0.01641035863303908 -0.7457582196888052 1.0 7098 +Biological Process GO:0008213 protein alkylation 0.01641035863303908 -0.7457582196888052 1.0 7098 +Phenotype MP:0005469 abnormal thyroxine level 0.016404493815389554 -0.7458645183994513 1.0 7100 +Phenotype MP:0000752 dystrophic muscle 0.016384276651177587 -0.7462309506769884 1.0 7101 +Phenotype MP:0011396 abnormal sleep behavior 0.016316368940346493 -0.7474617650919713 1.0 7102 +Phenotype MP:0001293 anophthalmia 0.0163110503780991 -0.7475581630267707 1.0 7103 +Phenotype MP:0009767 decreased susceptibility to xenobiotic induced morbidity/mortality 0.016302011493902313 -0.7477219910932541 1.0 7104 +Biological Process GO:0015711 organic anion transport 0.01629482566599405 -0.7478522328649886 1.0 7105 +Phenotype MP:0003970 abnormal prolactin level 0.0162922818314587 -0.7478983393848098 1.0 7106 +Biological Process GO:0002335 mature B cell differentiation 0.016291952422967437 -0.7479043098514107 1.0 7107 +Phenotype MP:0003815 hairless 0.016253645296040786 -0.748598619281678 1.0 7108 +Biological Process GO:0003188 heart valve formation 0.016244794164594012 -0.7487590443650783 1.0 7109 +Phenotype MP:0003674 oxidative stress 0.016101619918732712 -0.7513540504918302 1.0 7110 +Phenotype MP:0000753 paralysis 0.016089132448328214 -0.7515803835310747 1.0 7111 +Phenotype MP:0031154 intestinal hemorrhage 0.016084981734456938 -0.7516556144349398 1.0 7112 +Phenotype MP:0020579 abnormal pancreatic delta cell number 0.016066612568567562 -0.7519885520924039 1.0 7113 +Phenotype MP:0010323 retropulsion 0.01602322744860374 -0.752774899186036 1.0 7114 +Phenotype MP:0000433 microcephaly 0.015989033361064386 -0.7533946605553347 1.0 7115 +Biological Process GO:0006497 protein lipidation 0.015807880520413153 -0.7566780215295136 1.0 7116 +Phenotype MP:0005218 abnormal pancreatic delta cell morphology 0.01579651311565833 -0.756884053590703 1.0 7117 +Phenotype MP:0009830 abnormal sperm connecting piece morphology 0.015779711325489054 -0.7571885828596883 1.0 7118 +Biological Process GO:0030204 chondroitin sulfate metabolic process 0.015716838307281544 -0.7583281444231131 1.0 7119 +Phenotype MP:0005203 abnormal trabecular meshwork morphology 0.01570655154951417 -0.7585145899620448 1.0 7120 +Phenotype MP:0004841 abnormal small intestine crypts of Lieberkuhn morphology 0.015682789514123607 -0.7589452723592292 1.0 7121 +Phenotype MP:0000153 rib bifurcation 0.01567391599411072 -0.7591061032311557 1.0 7122 +Biological Process GO:0045672 positive regulation of osteoclast differentiation 0.015663593697407885 -0.7592931929065709 1.0 7123 +Phenotype MP:0003563 abnormal pancreatic alpha cell physiology 0.01566313788188345 -0.75930145447674 1.0 7124 +Phenotype MP:0003441 increased glycerol level 0.015648045319922033 -0.7595750043077354 1.0 7125 +Biological Process GO:0006839 mitochondrial transport 0.015645080306333825 -0.7596287446182293 1.0 7126 +Biological Process GO:0060351 cartilage development involved in endochondral bone morphogenesis 0.015615239019074467 -0.7601696123057268 1.0 7127 +Phenotype MP:0012079 abnormal spinal reflex 0.015597354230930005 -0.7604937707081778 1.0 7128 +Phenotype MP:0005316 abnormal response to tactile stimuli 0.015597354230930005 -0.7604937707081778 1.0 7128 +Phenotype MP:0008515 thin retina outer nuclear layer 0.015596925178026355 -0.7605015472109069 1.0 7130 +Phenotype MP:0009237 kinked sperm flagellum 0.015596866624893124 -0.7605026084753722 1.0 7131 +Phenotype MP:0010301 increased stomach tumor incidence 0.015541781807248523 -0.7615010103766278 1.0 7132 +Phenotype MP:0010406 common atrium 0.015536871659257101 -0.7615900058802838 1.0 7133 +Phenotype MP:0009781 abnormal preimplantation embryo development 0.015519071701149745 -0.7619126267543568 1.0 7134 +Phenotype MP:0001752 abnormal hypothalamus secretion 0.015516407285912415 -0.7619609187765951 1.0 7135 +Phenotype MP:0005574 decreased pulmonary respiratory rate 0.015481227371746842 -0.7625985480670382 1.0 7136 +Biological Process GO:2001053 regulation of mesenchymal cell apoptotic process 0.015472205216728874 -0.7627620729203195 1.0 7137 +Phenotype MP:0010436 abnormal coronary sinus morphology 0.015451191716645885 -0.7631429386349027 1.0 7138 +Biological Process GO:0050994 regulation of lipid catabolic process 0.015441828495644683 -0.7633126452446221 1.0 7139 +Phenotype MP:0002586 abnormal platelet volume 0.015434601633790068 -0.7634436307488731 1.0 7140 +Biological Process GO:0000305 response to oxygen radical 0.0154274364306618 -0.7635734987003712 1.0 7141 +Biological Process GO:0031099 regeneration 0.015417363590629285 -0.7637560670208182 1.0 7142 +Biological Process GO:0045913 positive regulation of carbohydrate metabolic process 0.015410369064877583 -0.7638828414771472 1.0 7143 +Phenotype MP:0002647 decreased intestinal cholesterol absorption 0.01535828656125282 -0.7648268270046406 1.0 7144 +Phenotype MP:0005537 abnormal cerebral aqueduct morphology 0.01534800687949689 -0.7650131442922032 1.0 7145 +Phenotype MP:0001296 macrophthalmia 0.01534311743604766 -0.765101764529948 1.0 7146 +Biological Process GO:0003222 ventricular trabecula myocardium morphogenesis 0.015291073567956004 -0.7660450497957112 1.0 7147 +Biological Process GO:0071425 hematopoietic stem cell proliferation 0.015278244485042891 -0.7662775744970628 1.0 7148 +Biological Process GO:0045911 positive regulation of DNA recombination 0.015270392946448608 -0.7664198821490712 1.0 7149 +Biological Process GO:0021680 cerebellar Purkinje cell layer development 0.015190727591080755 -0.7678638016474824 1.0 7150 +Biological Process GO:0044042 glucan metabolic process 0.015177679727580107 -0.7681002917056037 1.0 7151 +Phenotype MP:0003637 cochlear ganglion hypoplasia 0.015175095302466857 -0.7681471339219721 1.0 7152 +Phenotype MP:0003069 abnormal superior semicircular canal morphology 0.01516872369200395 -0.7682626181565078 1.0 7153 +Phenotype MP:0009836 abnormal sperm principal piece morphology 0.015167675083596621 -0.7682816239855604 1.0 7154 +Biological Process GO:0097035 regulation of membrane lipid distribution 0.01516089022063849 -0.7684045983434109 1.0 7155 +Phenotype MP:0009712 impaired conditioned place preference behavior 0.015144932942534162 -0.7686938209909472 1.0 7156 +Biological Process GO:0035116 embryonic hindlimb morphogenesis 0.015142424490422801 -0.7687392862110256 1.0 7157 +Phenotype MP:0000827 dilated third ventricle 0.015080730097740802 -0.7698574854097218 1.0 7158 +Biological Process GO:0042445 hormone metabolic process 0.015064984745525312 -0.7701428669406059 1.0 7159 +Biological Process GO:0051259 protein complex oligomerization 0.01505181147023038 -0.7703816300637785 1.0 7160 +Biological Process GO:0045661 regulation of myoblast differentiation 0.015037459661464081 -0.770641753883216 1.0 7161 +Phenotype MP:0000104 abnormal sphenoid bone morphology 0.015030503505126358 -0.7707678329011737 1.0 7162 +Phenotype MP:0001864 vascular inflammation 0.015018010279415628 -0.770994270254255 1.0 7163 +Biological Process GO:0007628 adult walking behavior 0.01498736693894831 -0.7715496750044492 1.0 7164 +Phenotype MP:0001850 increased susceptibility to otitis media 0.014951550318828555 -0.7721988444698875 1.0 7165 +Phenotype MP:0009415 skeletal muscle degeneration 0.014950882653525621 -0.7722109457772233 1.0 7166 +Phenotype MP:0011967 increased or absent threshold for auditory brainstem response 0.014949251993727652 -0.7722405011776441 1.0 7167 +Biological Process GO:0021544 subpallium development 0.014891188693689772 -0.7732928875089379 1.0 7168 +Phenotype MP:0012729 abnormal common carotid artery morphology 0.014850233215425557 -0.7740351978062986 1.0 7169 +Biological Process GO:0061620 glycolytic process through glucose-6-phosphate 0.014845280826872642 -0.7741249589121425 1.0 7170 +Phenotype MP:0004354 absent deltoid tuberosity 0.01484481453210329 -0.7741334104166436 1.0 7171 +Phenotype MP:0005403 abnormal nerve conduction 0.01484212173203625 -0.7741822169085517 1.0 7172 +Phenotype MP:0020342 small optic nerve 0.014826640723348716 -0.7744628072629887 1.0 7173 +Biological Process GO:0006636 unsaturated fatty acid biosynthetic process 0.01480269638597842 -0.7748967938490757 1.0 7174 +Phenotype MP:0004815 abnormal somatic hypermutation frequency 0.014798733711930523 -0.7749686165667072 1.0 7175 +Biological Process GO:0086001 cardiac muscle cell action potential 0.014788311103680618 -0.7751575243699406 1.0 7176 +Phenotype MP:0020870 decreased thigmotaxis 0.014760737610781782 -0.7756572887135764 1.0 7177 +Phenotype MP:0004632 abnormal cochlear OHC efferent innervation pattern 0.014730992867430293 -0.7761964065610037 1.0 7178 +Phenotype MP:0013986 abnormal vitelline vein topology 0.014726705682337027 -0.7762741109799558 1.0 7179 +Phenotype MP:0008989 abnormal liver sinusoid morphology 0.014725902601282814 -0.7762886666721714 1.0 7180 +Phenotype MP:0009806 abnormal otic vesicle morphology 0.014709147496654529 -0.7765923497745563 1.0 7181 +Phenotype MP:0000564 syndactyly 0.014700084085039644 -0.7767566223958535 1.0 7182 +Biological Process GO:0022600 digestive system process 0.014679936417139383 -0.7771217950658853 1.0 7183 +Biological Process GO:0061001 regulation of dendritic spine morphogenesis 0.014578054133571827 -0.7789683921858828 1.0 7184 +Phenotype MP:0003232 abnormal forebrain development 0.014565429167575084 -0.7791972173067311 1.0 7185 +Biological Process GO:0036037 CD8-positive, alpha-beta T cell activation 0.014550830881975951 -0.7794618084721459 1.0 7186 +Phenotype MP:0000490 abnormal crypts of Lieberkuhn morphology 0.014528960056964135 -0.7798582130389125 1.0 7187 +Phenotype MP:0010383 increased adenoma incidence 0.014480648939735441 -0.7807338429012841 1.0 7188 +Phenotype MP:0020189 abnormal adenoma incidence 0.014480648939735441 -0.7807338429012841 1.0 7188 +Phenotype MP:0008308 small scala media 0.014461711988987602 -0.7810770715519191 1.0 7190 +Phenotype MP:0006012 dilated endolymphatic duct 0.014456763790959837 -0.7811667567052871 1.0 7191 +Phenotype MP:0012173 short rostral-caudal axis 0.014430576182390631 -0.7816414021575698 1.0 7192 +Phenotype MP:0005176 eyelids fail to open 0.014424511773878157 -0.7817513184148571 1.0 7193 +Phenotype MP:0004288 abnormal spiral ligament morphology 0.014401920647223565 -0.7821607783126636 1.0 7194 +Phenotype MP:0008821 increased blood uric acid level 0.014395935153584727 -0.782269264252792 1.0 7195 +Phenotype MP:0004008 abnormal GABA-mediated receptor currents 0.014386436942527503 -0.7824414175317451 1.0 7196 +Biological Process GO:0070193 synaptonemal complex organization 0.01438594755041911 -0.7824502876711479 1.0 7197 +Biological Process GO:0040036 regulation of fibroblast growth factor receptor signaling pathway 0.014356116488030257 -0.7829909700348013 1.0 7198 +Phenotype MP:0003879 abnormal hair cell physiology 0.014265834183252335 -0.7846273197332168 1.0 7199 +Phenotype MP:0002718 abnormal inner cell mass morphology 0.014232088550999111 -0.7852389529352738 1.0 7200 +Phenotype MP:0004070 abnormal P wave 0.014219210878802735 -0.7854723583081945 1.0 7201 +Phenotype MP:0005236 abnormal olfactory nerve morphology 0.01419590593160136 -0.7858947560684019 1.0 7202 +Phenotype MP:0013878 abnormal ductus venosus valve topology 0.014183090672353238 -0.7861270302184401 1.0 7203 +Biological Process GO:2001252 positive regulation of chromosome organization 0.014171719399645344 -0.7863331323855473 1.0 7204 +Phenotype MP:0002942 decreased circulating alanine transaminase level 0.014151766104356645 -0.7866947820887573 1.0 7205 +Phenotype MP:0031381 decreased secondary ovarian follicle number 0.014142765969656468 -0.7868579078279435 1.0 7206 +Phenotype MP:0009136 decreased brown fat cell size 0.014110939592992144 -0.7874347548854531 1.0 7207 +Phenotype MP:0004616 lumbar vertebral transformation 0.014097862696378693 -0.7876717711632527 1.0 7208 +Biological Process GO:0034605 cellular response to heat 0.014063018152532303 -0.7883033219300914 1.0 7209 +Phenotype MP:0004459 small alisphenoid bone 0.014051702782132969 -0.7885084108784292 1.0 7210 +Phenotype MP:0011659 interrupted aortic arch, type b 0.014037502624136278 -0.7887657860563502 1.0 7211 +Phenotype MP:0030804 abnormal synovial joint morphology 0.014004166741951152 -0.7893699926159216 1.0 7212 +Biological Process GO:0051150 regulation of smooth muscle cell differentiation 0.013955804605022326 -0.7902465472007084 1.0 7213 +Phenotype MP:0003666 impaired sperm capacitation 0.013900813733537576 -0.7912432463455853 1.0 7214 +Biological Process GO:0046457 prostanoid biosynthetic process 0.013888969310873578 -0.7914579242661569 1.0 7215 +Biological Process GO:0001516 prostaglandin biosynthetic process 0.013888969310873578 -0.7914579242661569 1.0 7215 +Phenotype MP:0002843 decreased systemic arterial blood pressure 0.013880558010417765 -0.7916103774960341 1.0 7217 +Phenotype MP:0005354 abnormal ilium morphology 0.013877681606125014 -0.7916625117798071 1.0 7218 +Phenotype MP:0011123 abnormal primary ovarian follicle number 0.01386692173397508 -0.7918575324274394 1.0 7219 +Phenotype MP:0009153 increased pancreas tumor incidence 0.013855122733801184 -0.792071387073969 1.0 7220 +Phenotype MP:0010132 decreased DN2 thymocyte number 0.013853608189492328 -0.7920988379031113 1.0 7221 +Biological Process GO:0030718 germ-line stem cell population maintenance 0.0138497263150954 -0.7921691961423513 1.0 7222 +Biological Process GO:0022618 protein-RNA complex assembly 0.013836654328526876 -0.7924061234265152 1.0 7223 +Biological Process GO:0141060 disruption of anatomical structure in another organism 0.013806094403369107 -0.7929600162900007 1.0 7224 +Biological Process GO:0031640 killing of cells of another organism 0.013806094403369107 -0.7929600162900007 1.0 7224 +Biological Process GO:0141061 disruption of cell in another organism 0.013806094403369107 -0.7929600162900007 1.0 7224 +Biological Process GO:0006397 mRNA processing 0.013793174678286335 -0.7931941838635337 1.0 7227 +Biological Process GO:0048240 sperm capacitation 0.013764274301196533 -0.7937179977321684 1.0 7228 +Biological Process GO:0048821 erythrocyte development 0.013752018085817497 -0.793940139317815 1.0 7229 +Phenotype MP:0021010 impaired synaptic physiology 0.01371556689311293 -0.7946008102913322 1.0 7230 +Phenotype MP:0003048 abnormal cervical vertebrae morphology 0.013714785029355414 -0.7946149814240582 1.0 7231 +Phenotype MP:0004396 decreased cochlear inner hair cell number 0.013663970079036747 -0.7955359927876192 1.0 7232 +Biological Process GO:0070085 glycosylation 0.013653698810950798 -0.7957221575790048 1.0 7233 +Phenotype MP:0010071 abnormal pruritus 0.013633835108802339 -0.7960821834234934 1.0 7234 +Phenotype MP:0001489 decreased startle reflex 0.013566682877971581 -0.797299304906359 1.0 7235 +Phenotype MP:0000075 absent neurocranium 0.013566175699741279 -0.7973084974158573 1.0 7236 +Phenotype MP:0005144 abnormal circulating VLDL cholesterol level 0.013557187045408536 -0.7974714150755551 1.0 7237 +Biological Process GO:0015909 long-chain fatty acid transport 0.013552362360815473 -0.7975588615712802 1.0 7238 +Biological Process GO:0003417 growth plate cartilage development 0.013524612971449579 -0.798061814005113 1.0 7239 +Phenotype MP:0005572 abnormal pulmonary respiratory rate 0.013515197110584687 -0.7982324747024057 1.0 7240 +Biological Process GO:0048505 regulation of timing of cell differentiation 0.013497653200183257 -0.7985504547602367 1.0 7241 +Phenotype MP:0008511 thin retina inner nuclear layer 0.013489581624735125 -0.7986967505386041 1.0 7242 +Phenotype MP:0006280 abnormal digit development 0.013489344227151756 -0.7987010533249022 1.0 7243 +Phenotype MP:0005340 abnormal susceptibility to atherosclerosis 0.013424892541903488 -0.799869227929857 1.0 7244 +Biological Process GO:1903580 positive regulation of ATP metabolic process 0.01342253535828819 -0.7999119514370547 1.0 7245 +Phenotype MP:0011386 increased metanephric mesenchyme apoptosis 0.01337856496761769 -0.8007089064515492 1.0 7246 +Biological Process GO:0045786 negative regulation of cell cycle 0.013340707530369644 -0.8013950653414447 1.0 7247 +Phenotype MP:0005023 abnormal wound healing 0.013334117134887746 -0.8015145150130694 1.0 7248 +Phenotype MP:0004265 abnormal placental transport 0.013320111035893811 -0.8017683729082691 1.0 7249 +Phenotype MP:0012055 abnormal phrenic nerve innervation pattern to diaphragm 0.013298437509289385 -0.8021612014787181 1.0 7250 +Phenotype MP:0012054 abnormal phrenic nerve innervation pattern 0.013298437509289385 -0.8021612014787181 1.0 7250 +Phenotype MP:0004615 cervical vertebral transformation 0.013288118698272622 -0.8023482279767326 1.0 7252 +Biological Process GO:0001975 response to amphetamine 0.013282755760412046 -0.8024454302111278 1.0 7253 +Biological Process GO:0007052 mitotic spindle organization 0.013272378695759146 -0.8026335125452794 1.0 7254 +Phenotype MP:0002187 abnormal fibula morphology 0.013270224076063153 -0.8026725646197519 1.0 7255 +Biological Process GO:0007623 circadian rhythm 0.013210460478300434 -0.80375576852572 1.0 7256 +Biological Process GO:0045995 regulation of embryonic development 0.013186462003543675 -0.8041907363416974 1.0 7257 +Biological Process GO:0051153 regulation of striated muscle cell differentiation 0.01312970549045478 -0.805219437406702 1.0 7258 +Biological Process GO:0042159 lipoprotein catabolic process 0.013100499147597477 -0.8057487968470035 1.0 7259 +Biological Process GO:0021575 hindbrain morphogenesis 0.013098702245616378 -0.805781365355551 1.0 7260 +Phenotype MP:0011965 decreased total retina thickness 0.01304854996999405 -0.806690365865577 1.0 7261 +Phenotype MP:0005345 abnormal circulating corticosterone level 0.013027811797827749 -0.8070662413137446 1.0 7262 +Biological Process GO:0002087 regulation of respiratory gaseous exchange by nervous system process 0.013023353214104971 -0.8071470523004388 1.0 7263 +Biological Process GO:0050913 sensory perception of bitter taste 0.012962652490769888 -0.8082472414301614 1.0 7264 +Phenotype MP:0010951 abnormal lipid oxidation 0.012952706153248283 -0.8084275169165244 1.0 7265 +Biological Process GO:0040037 negative regulation of fibroblast growth factor receptor signaling pathway 0.012938432460156246 -0.8086862249041403 1.0 7266 +Phenotype MP:0006361 abnormal female germ cell morphology 0.01293428046656453 -0.8087614790026965 1.0 7267 +Biological Process GO:0097186 amelogenesis 0.012928516386503386 -0.8088659518636064 1.0 7268 +Phenotype MP:0008637 abnormal circulating interleukin-1 alpha level 0.012923556220758692 -0.8089558539295802 1.0 7269 +Biological Process GO:0048665 neuron fate specification 0.012868294703842098 -0.8099574584717204 1.0 7270 +Phenotype MP:0000747 muscle weakness 0.012855330098880513 -0.8101924394845684 1.0 7271 +Biological Process GO:0086065 cell communication involved in cardiac conduction 0.012855039725704565 -0.8101977024434623 1.0 7272 +Phenotype MP:0005339 increased susceptibility to atherosclerosis 0.01284252302116462 -0.8104245653458824 1.0 7273 +Phenotype MP:0002753 dilated heart left ventricle 0.012839118553758744 -0.8104862706737046 1.0 7274 +Phenotype MP:0004872 absent nasal septum 0.012835914637603696 -0.8105443410480372 1.0 7275 +Phenotype MP:0002730 head shaking 0.012820592179910495 -0.8108220576956896 1.0 7276 +Biological Process GO:0061036 positive regulation of cartilage development 0.012819518221043213 -0.8108415229970342 1.0 7277 +Phenotype MP:0008853 decreased abdominal adipose tissue amount 0.012786086089096371 -0.8114474740653324 1.0 7278 +Phenotype MP:0014019 embryo cyst 0.012765334429030273 -0.8118235939791328 1.0 7279 +Phenotype MP:0030943 abnormal centrosome morphology 0.012762452516425493 -0.8118758281000193 1.0 7280 +Phenotype MP:0005544 cornea deposits 0.012719415800364176 -0.8126558604388144 1.0 7281 +Biological Process GO:0098655 monoatomic cation transmembrane transport 0.012702005279905282 -0.812971422829166 1.0 7282 +Phenotype MP:0006033 abnormal external auditory canal morphology 0.012672497613328337 -0.8135062437048945 1.0 7283 +Biological Process GO:0001964 startle response 0.012665439888430607 -0.8136341636337922 1.0 7284 +Phenotype MP:0008323 abnormal lactotroph morphology 0.012656386633568162 -0.8137982521658725 1.0 7285 +Phenotype MP:0002802 abnormal discrimination learning 0.01264945024962183 -0.813923972812976 1.0 7286 +Phenotype MP:0011083 lethality at weaning, complete penetrance 0.012644590483936624 -0.814012055146861 1.0 7287 +Phenotype MP:0000231 hypertension 0.01263970219780819 -0.8141006544083853 1.0 7288 +Biological Process GO:0009451 RNA modification 0.01262703723024372 -0.8143302045500829 1.0 7289 +Phenotype MP:0002407 abnormal double-negative T cell morphology 0.0126166582401952 -0.8145183217816658 1.0 7290 +Biological Process GO:0031397 negative regulation of protein ubiquitination 0.012614061378199759 -0.8145653894141717 1.0 7291 +Biological Process GO:0098813 nuclear chromosome segregation 0.012612166057096141 -0.8145997417507003 1.0 7292 +Phenotype MP:0011232 abnormal vitamin A level 0.012569891166608782 -0.8153659661450564 1.0 7293 +Phenotype MP:0010993 decreased surfactant secretion 0.012568855034672977 -0.8153847458404224 1.0 7294 +Phenotype MP:0005547 abnormal Muller cell morphology 0.0125370411138217 -0.8159613671386763 1.0 7295 +Phenotype MP:0013671 abnormal mature NK cell number 0.012531566517271386 -0.8160605931657043 1.0 7296 +Biological Process GO:0002639 positive regulation of immunoglobulin production 0.012506323578630907 -0.8165181166542006 1.0 7297 +Phenotype MP:0006428 ectopic Sertoli cells 0.012494005688625132 -0.8167413760807919 1.0 7298 +Phenotype MP:0010632 cardiac muscle necrosis 0.01246454499784988 -0.8172753455289997 1.0 7299 +Phenotype MP:0004189 abnormal alveolar process morphology 0.012436713594763837 -0.8177797844459984 1.0 7300 +Phenotype MP:0002332 abnormal exercise endurance 0.012416164876595248 -0.8181522260762902 1.0 7301 +Biological Process GO:2000310 regulation of NMDA receptor activity 0.012411026439258732 -0.8182453592811483 1.0 7302 +Phenotype MP:0010750 increased susceptibility to parasitic infection induced morbidity/mortality 0.012407252402171665 -0.818313762989543 1.0 7303 +Phenotype MP:0008487 abnormal mesonephros morphology 0.012291263797817198 -0.8204160345057823 1.0 7304 +Biological Process GO:0019364 pyridine nucleotide catabolic process 0.012269879426370367 -0.8208036221936897 1.0 7305 +Biological Process GO:0042254 ribosome biogenesis 0.012232489020813309 -0.8214813162225187 1.0 7306 +Biological Process GO:0045665 negative regulation of neuron differentiation 0.012220702689234919 -0.8216949412531509 1.0 7307 +Biological Process GO:0021527 spinal cord association neuron differentiation 0.012186377380113744 -0.8223170809888014 1.0 7308 +Phenotype MP:0004022 abnormal cone electrophysiology 0.012180517556747983 -0.822423289178999 1.0 7309 +Phenotype MP:0010401 increased skeletal muscle glycogen level 0.012176586312264814 -0.8224945422417144 1.0 7310 +Phenotype MP:0011128 increased tertiary ovarian follicle number 0.012171538272728544 -0.8225860370035405 1.0 7311 +Biological Process GO:0002673 regulation of acute inflammatory response 0.012113642672999969 -0.8236353837984464 1.0 7312 +Phenotype MP:0003820 increased left ventricle systolic pressure 0.012103585995621557 -0.8238176591738448 1.0 7313 +Biological Process GO:0005977 glycogen metabolic process 0.01205829648171275 -0.8246385230475392 1.0 7314 +Phenotype MP:0004609 vertebral fusion 0.012047838954276302 -0.824828063754424 1.0 7315 +Phenotype MP:0000904 abnormal superior colliculus morphology 0.01200588621023857 -0.8255884493053103 1.0 7316 +Phenotype MP:0010163 hemolysis 0.011977951203380965 -0.8260947660210733 1.0 7317 +Phenotype MP:0006144 increased systemic arterial systolic blood pressure 0.011966607785289907 -0.8263003633285187 1.0 7318 +Phenotype MP:0001391 abnormal tail movements 0.011922113449121974 -0.8271068147560569 1.0 7319 +Phenotype MP:0005157 holoprosencephaly 0.01188859524131991 -0.8277143259329508 1.0 7320 +Biological Process GO:0007128 meiotic prophase I 0.011854369201637849 -0.8283346664287928 1.0 7321 +Biological Process GO:0051324 prophase 0.011854369201637849 -0.8283346664287928 1.0 7321 +Biological Process GO:0045930 negative regulation of mitotic cell cycle 0.01184553454980708 -0.8284947928222699 1.0 7323 +Phenotype MP:0003064 decreased coping response 0.011819023714088495 -0.8289752967055011 1.0 7324 +Phenotype MP:0010637 sinus bradycardia 0.011805393001541487 -0.8292223507923495 1.0 7325 +Biological Process GO:0001829 trophectodermal cell differentiation 0.01178522811227345 -0.8295878355964149 1.0 7326 +Biological Process GO:0046456 icosanoid biosynthetic process 0.011769029165712874 -0.8298814384390124 1.0 7327 +Phenotype MP:0002665 decreased circulating corticosterone level 0.011757212183717725 -0.8300956190026512 1.0 7328 +Phenotype MP:0003155 abnormal telomere length 0.011746373281205758 -0.8302920720606478 1.0 7329 +Biological Process GO:0051591 response to cAMP 0.011719655054728828 -0.8307763348621487 1.0 7330 +Phenotype MP:0010378 increased respiratory quotient 0.011699008678247136 -0.8311505465308949 1.0 7331 +Phenotype MP:0020164 abnormal quadriceps weight 0.011679612072526213 -0.8315021063409793 1.0 7332 +Biological Process GO:0030728 ovulation 0.011675316684596093 -0.8315799594347979 1.0 7333 +Phenotype MP:0003756 abnormal hard palate morphology 0.01166662273597785 -0.8317375356091601 1.0 7334 +Biological Process GO:0000303 response to superoxide 0.011630670703055013 -0.8323891594060427 1.0 7335 +Biological Process GO:0050777 negative regulation of immune response 0.011605208777435538 -0.8328506519921147 1.0 7336 +Phenotype MP:0030137 abnormal upper incisor morphology 0.011585167790490458 -0.833213891090011 1.0 7337 +Phenotype MP:0013876 absent ductus venosus valve 0.011562666562779267 -0.8336217215864715 1.0 7338 +Phenotype MP:0004780 abnormal surfactant secretion 0.011547628305095925 -0.8338942871626979 1.0 7339 +Phenotype MP:0005474 increased triiodothyronine level 0.011534495882775664 -0.8341323098334315 1.0 7340 +Phenotype MP:0004140 abnormal gastric chief cell morphology 0.011504333032601788 -0.8346790057879353 1.0 7341 +Phenotype MP:0004404 cochlear outer hair cell degeneration 0.011474892640882306 -0.8352126073195965 1.0 7342 +Biological Process GO:0014874 response to stimulus involved in regulation of muscle adaptation 0.011471003808044333 -0.8352830916792643 1.0 7343 +Phenotype MP:0004145 abnormal muscle electrophysiology 0.011450383480014703 -0.8356568312247434 1.0 7344 +Phenotype MP:0000867 abnormal cerebellum anterior vermis morphology 0.011448534999323079 -0.8356903345876638 1.0 7345 +Phenotype MP:0001980 abnormal chemically-elicited antinociception 0.011433749623907863 -0.8359583167206097 1.0 7346 +Phenotype MP:0020577 abnormal pancreatic alpha cell number 0.011428006616282738 -0.8360624076476023 1.0 7347 +Phenotype MP:0004515 abnormal vestibular hair cell stereociliary bundle morphology 0.011421349055347862 -0.8361830746803588 1.0 7348 +Phenotype MP:0004537 abnormal palatine bone horizontal plate morphology 0.011409482431321227 -0.8363981549964291 1.0 7349 +Phenotype MP:0002830 gallstones 0.01137510464430913 -0.8370212458839271 1.0 7350 +Phenotype MP:0003208 abnormal neuromere morphology 0.011350925345304352 -0.8374594911051993 1.0 7351 +Phenotype MP:0001332 abnormal optic nerve innervation 0.011282755731217176 -0.8386950524671632 1.0 7352 +Biological Process GO:0044065 regulation of respiratory system process 0.011255128347846477 -0.839195793565409 1.0 7353 +Biological Process GO:0021700 developmental maturation 0.01124063550563259 -0.8394584735894094 1.0 7354 +Phenotype MP:0004739 conductive hearing loss 0.011240306920065501 -0.8394644291406653 1.0 7355 +Phenotype MP:0013518 abnormal CD4-positive NK T cell number 0.011203522042409597 -0.8401311480908134 1.0 7356 +Phenotype MP:0008917 abnormal oligodendrocyte physiology 0.01114924416276375 -0.841114924393463 1.0 7357 +Biological Process GO:0071470 cellular response to osmotic stress 0.011135327039795917 -0.8413671696150182 1.0 7358 +Biological Process GO:1905456 regulation of lymphoid progenitor cell differentiation 0.011132839686998297 -0.8414122524140258 1.0 7359 +Biological Process GO:0040019 positive regulation of embryonic development 0.011126767187247921 -0.8415223153234697 1.0 7360 +Phenotype MP:0013764 decreased T-helper cell number 0.011117307873850013 -0.8416937635897047 1.0 7361 +Phenotype MP:0002913 abnormal PNS synaptic transmission 0.011084216481614506 -0.8422935388151813 1.0 7362 +Biological Process GO:0006805 xenobiotic metabolic process 0.011037696403168318 -0.8431367064383709 1.0 7363 +Biological Process GO:0048168 regulation of neuronal synaptic plasticity 0.011037362693201658 -0.8431427548683998 1.0 7364 +Phenotype MP:0005551 abnormal eye electrophysiology 0.010996179305245657 -0.8438891959858181 1.0 7365 +Phenotype MP:0011189 small embryonic epiblast 0.010991731173912278 -0.8439698175249314 1.0 7366 +Biological Process GO:0002819 regulation of adaptive immune response 0.010964704793780422 -0.8444596655531448 1.0 7367 +Biological Process GO:0014003 oligodendrocyte development 0.010961993061301412 -0.844508815191439 1.0 7368 +Biological Process GO:1901874 negative regulation of post-translational protein modification 0.01095442204983521 -0.8446460383423089 1.0 7369 +Biological Process GO:0098869 cellular oxidant detoxification 0.010890590032198721 -0.8458029815890022 1.0 7370 +Biological Process GO:0044851 hair cycle phase 0.010834982119345415 -0.8468108644919792 1.0 7371 +Phenotype MP:0030038 abnormal periorbital region morphology 0.010833504354237022 -0.8468376487050694 1.0 7372 +Biological Process GO:0051091 positive regulation of DNA-binding transcription factor activity 0.010814889656228455 -0.8471750365857548 1.0 7373 +Phenotype MP:0002759 abnormal caudal vertebrae morphology 0.010795186691430758 -0.847532149096162 1.0 7374 +Phenotype MP:0002253 abnormal pharyngeal muscle morphology 0.010782128921636436 -0.8477688187039825 1.0 7375 +Biological Process GO:1902221 erythrose 4-phosphate/phosphoenolpyruvate family amino acid metabolic process 0.010769386076649012 -0.8479997803592417 1.0 7376 +Biological Process GO:0002082 regulation of oxidative phosphorylation 0.010754186198866922 -0.8482752752691896 1.0 7377 +Biological Process GO:0006760 folic acid-containing compound metabolic process 0.010726502329298504 -0.8487770401690853 1.0 7378 +Biological Process GO:0002062 chondrocyte differentiation 0.010707315184981692 -0.8491248035308371 1.0 7379 +Biological Process GO:0061615 glycolytic process through fructose-6-phosphate 0.010674041832186454 -0.8497278767570433 1.0 7380 +Phenotype MP:0013672 decreased mature NK cell number 0.010653103681867782 -0.8501073767713996 1.0 7381 +Phenotype MP:0003690 abnormal glial cell physiology 0.010602269164503797 -0.8510287427839561 1.0 7382 +Phenotype MP:0001404 no spontaneous movement 0.01059990983836101 -0.8510715051240594 1.0 7383 +Phenotype MP:0006392 abnormal nucleus pulposus morphology 0.010585279098119571 -0.8513366845237276 1.0 7384 +Phenotype MP:0008507 thin retina ganglion layer 0.01058474088385597 -0.8513464395554594 1.0 7385 +Biological Process GO:0061013 regulation of mRNA catabolic process 0.010583637250128564 -0.8513664427080311 1.0 7386 +Phenotype MP:0003216 absence seizures 0.010580497357075891 -0.8514233526757422 1.0 7387 +Biological Process GO:0006418 tRNA aminoacylation for protein translation 0.010563530036491686 -0.8517308821521904 1.0 7388 +Biological Process GO:0043039 tRNA aminoacylation 0.010563530036491686 -0.8517308821521904 1.0 7388 +Biological Process GO:1901990 regulation of mitotic cell cycle phase transition 0.010560624191947032 -0.8517835500349608 1.0 7390 +Phenotype MP:0011127 abnormal tertiary ovarian follicle number 0.010557373718660501 -0.8518424642484959 1.0 7391 +Phenotype MP:0020066 abnormal neocortex size 0.010554818412355504 -0.851888778691972 1.0 7392 +Biological Process GO:0022613 ribonucleoprotein complex biogenesis 0.010491589792992695 -0.8530347854590795 1.0 7393 +Biological Process GO:0016053 organic acid biosynthetic process 0.010460296286557869 -0.8536019743444646 1.0 7394 +Phenotype MP:0003270 intestinal obstruction 0.010412486690212441 -0.854468514235683 1.0 7395 +Biological Process GO:0021781 glial cell fate commitment 0.01037708120577907 -0.8551102319445664 1.0 7396 +Biological Process GO:0072080 nephron tubule development 0.010353972483813534 -0.8555290731594877 1.0 7397 +Phenotype MP:0001526 abnormal placing response 0.010318870306446404 -0.8561652934851619 1.0 7398 +Biological Process GO:0009156 ribonucleoside monophosphate biosynthetic process 0.010279561194702747 -0.8568777637007255 1.0 7399 +Phenotype MP:0021121 abnormal rhythmic behavior 0.010236259905575529 -0.8576625913762996 1.0 7400 +Phenotype MP:0004267 abnormal optic tract morphology 0.01021943952653559 -0.8579674575650499 1.0 7401 +Phenotype MP:0031268 decreased susceptibility to diet-induced hepatic steatosis 0.010207542655236601 -0.8581830861072107 1.0 7402 +Phenotype MP:0004090 abnormal sarcomere morphology 0.010188675028830474 -0.8585250582672639 1.0 7403 +Biological Process GO:0042474 middle ear morphogenesis 0.010124731277695531 -0.8596840266624838 1.0 7404 +Phenotype MP:0004817 abnormal skeletal muscle mass 0.010122201378687579 -0.8597298806035065 1.0 7405 +Biological Process GO:0032204 regulation of telomere maintenance 0.010096592625500111 -0.8601940344114779 1.0 7406 +Phenotype MP:0009711 abnormal conditioned place preference behavior 0.010047828216578236 -0.8610778801000545 1.0 7407 +Biological Process GO:0050951 sensory perception of temperature stimulus 0.009959778059647761 -0.8626737725409157 1.0 7408 +Phenotype MP:0001423 abnormal liquid preference 0.009959418061269432 -0.862680297443434 1.0 7409 +Phenotype MP:0011068 abnormal ependyma motile cilium physiology 0.009932324948014548 -0.8631713549968806 1.0 7410 +Phenotype MP:0009096 decreased endometrial gland number 0.009899782069452523 -0.8637611885157693 1.0 7411 +Biological Process GO:0043330 response to exogenous dsRNA 0.009879877310521534 -0.8641219585066758 1.0 7412 +Biological Process GO:0050830 defense response to Gram-positive bacterium 0.009878904136832123 -0.8641395970957337 1.0 7413 +Phenotype MP:0003031 acidosis 0.009876815460488797 -0.8641774539594115 1.0 7414 +Phenotype MP:0003745 abnormal oral mucosa morphology 0.009875686618811552 -0.8641979140013063 1.0 7415 +Phenotype MP:0002573 behavioral despair 0.009814260028782829 -0.865311259327563 1.0 7416 +Biological Process GO:0071353 cellular response to interleukin-4 0.009813481139384184 -0.865325376550597 1.0 7417 +Phenotype MP:0011194 abnormal hair follicle physiology 0.00980335013389877 -0.8655089991088767 1.0 7418 +Phenotype MP:0001863 blood vessel inflammation 0.009789021984402457 -0.8657686941085204 1.0 7419 +Biological Process GO:0015908 fatty acid transport 0.009764269160843608 -0.8662173343538607 1.0 7420 +Biological Process GO:0060746 parental behavior 0.009747075206428812 -0.8665289715256236 1.0 7421 +Phenotype MP:0020889 abnormal sodium level 0.009715053251189487 -0.867109363407814 1.0 7422 +Biological Process GO:0061041 regulation of wound healing 0.00970097094721678 -0.8673646025038407 1.0 7423 +Biological Process GO:0032784 regulation of DNA-templated transcription elongation 0.009672782341767494 -0.8678755156461132 1.0 7424 +Biological Process GO:0060078 regulation of postsynaptic membrane potential 0.00967201714422572 -0.8678893847068311 1.0 7425 +Phenotype MP:0003370 increased circulating estrogen level 0.009627222642617062 -0.8687012765762102 1.0 7426 +Phenotype MP:0009102 abnormal glans penis morphology 0.00958617874795853 -0.8694451894039951 1.0 7427 +Phenotype MP:0010088 decreased circulating fructosamine level 0.009529456074174991 -0.8704732771379904 1.0 7428 +Biological Process GO:0055001 muscle cell development 0.009523099994706463 -0.8705884798761905 1.0 7429 +Phenotype MP:0005129 increased adrenocorticotropin level 0.009507253715601127 -0.8708756906878641 1.0 7430 +Phenotype MP:0003293 rectal hemorrhage 0.009502988578953486 -0.8709529954829093 1.0 7431 +Phenotype MP:0002068 abnormal parental behavior 0.009481421878914431 -0.8713438878420657 1.0 7432 +Biological Process GO:0034502 protein localization to chromosome 0.009470709829454749 -0.8715380417124823 1.0 7433 +Phenotype MP:0002269 muscular atrophy 0.009459208692730425 -0.8717464976403253 1.0 7434 +Phenotype MP:0030937 increased mitochondrial DNA content 0.009453791902593323 -0.8718446759370472 1.0 7435 +Phenotype MP:0010227 decreased quadriceps weight 0.009436086216378037 -0.8721655881509067 1.0 7436 +Biological Process GO:0016447 somatic recombination of immunoglobulin gene segments 0.009420495290555886 -0.8724481707326192 1.0 7437 +Phenotype MP:0009452 abnormal synaptonemal complex 0.009400760678735742 -0.8728058568393227 1.0 7438 +Biological Process GO:0051148 negative regulation of muscle cell differentiation 0.009314312759290733 -0.8743727090288016 1.0 7439 +Biological Process GO:0048736 appendage development 0.00929906691555571 -0.8746490370629525 1.0 7440 +Biological Process GO:0060173 limb development 0.00929906691555571 -0.8746490370629525 1.0 7440 +Biological Process GO:0009636 response to toxic substance 0.00922874454560818 -0.8759236167177203 1.0 7442 +Phenotype MP:0000160 kyphosis 0.00916531598002146 -0.8770732474723191 1.0 7443 +Biological Process GO:0070192 chromosome organization involved in meiotic cell cycle 0.009146570816606081 -0.8774130000138272 1.0 7444 +Biological Process GO:0046394 carboxylic acid biosynthetic process 0.009136747228829178 -0.877591050684284 1.0 7445 +Phenotype MP:0003036 vertebral transformation 0.009136509175707519 -0.8775953653520895 1.0 7446 +Phenotype MP:0003072 abnormal metatarsal bone morphology 0.009122283995349978 -0.8778531940555683 1.0 7447 +Biological Process GO:0048304 positive regulation of isotype switching to IgG isotypes 0.009111810101736673 -0.8780430313963132 1.0 7448 +Phenotype MP:0003657 abnormal erythrocyte osmotic lysis 0.009093090449478258 -0.8783823215529264 1.0 7449 +Biological Process GO:0048147 negative regulation of fibroblast proliferation 0.009088821123477198 -0.87845970227921 1.0 7450 +Phenotype MP:0011459 increased urine chloride ion level 0.009087070525021668 -0.8784914315451143 1.0 7451 +Biological Process GO:0061326 renal tubule development 0.009066727564705057 -0.8788601438532554 1.0 7452 +Phenotype MP:0000155 asymmetric rib joints 0.009048326090641656 -0.879193667090263 1.0 7453 +Biological Process GO:0002820 negative regulation of adaptive immune response 0.009041544987292038 -0.8793165733059204 1.0 7454 +Biological Process GO:1900452 regulation of long-term synaptic depression 0.009000693285969197 -0.8800570026658466 1.0 7455 +Phenotype MP:0004790 absent upper incisors 0.008958926160667402 -0.8808140239122514 1.0 7456 +Phenotype MP:0003731 abnormal retina outer nuclear layer morphology 0.00894850077815812 -0.8810029819984112 1.0 7457 +Biological Process GO:0072170 metanephric tubule development 0.008927909636949338 -0.8813761925382827 1.0 7458 +Biological Process GO:0030574 collagen catabolic process 0.008916798108912105 -0.8815775868823614 1.0 7459 +Phenotype MP:0013875 increased trigeminal neuroma incidence 0.008878678816422125 -0.8822684918489906 1.0 7460 +Phenotype MP:0013602 abnormal Leydig cell differentiation 0.008853060470451646 -0.8827328195243397 1.0 7461 +Phenotype MP:0011977 abnormal sodium ion homeostasis 0.00883415183599734 -0.88307553494751 1.0 7462 +Phenotype MP:0004623 thoracic vertebral fusion 0.008821355616651094 -0.8833074640029278 1.0 7463 +Phenotype MP:0005301 abnormal cornea endothelium morphology 0.008803041311090332 -0.8836394073273118 1.0 7464 +Biological Process GO:0009072 aromatic amino acid metabolic process 0.008796709385482826 -0.8837541722813493 1.0 7465 +Biological Process GO:0009187 cyclic nucleotide metabolic process 0.008787286535500205 -0.8839249596550789 1.0 7466 +Biological Process GO:0052652 cyclic purine nucleotide metabolic process 0.008787286535500205 -0.8839249596550789 1.0 7466 +Phenotype MP:0006221 optic nerve hypoplasia 0.008778636456013511 -0.884081740709729 1.0 7468 +Phenotype MP:0004613 fusion of vertebral arches 0.008747048371636645 -0.8846542687645981 1.0 7469 +Phenotype MP:0013329 abnormal preputial gland morphology 0.00874128738200819 -0.8847586856120001 1.0 7470 +Phenotype MP:0000074 abnormal neurocranium morphology 0.008738212443769378 -0.8848144182859954 1.0 7471 +Phenotype MP:0004068 dilated dorsal aorta 0.0086894050344688 -0.885699043348303 1.0 7472 +Phenotype MP:0010939 abnormal mandibular prominence morphology 0.008675245235556184 -0.8859556870254585 1.0 7473 +Biological Process GO:0098743 cell aggregation 0.008672184821898243 -0.8860111564441725 1.0 7474 +Phenotype MP:0002899 fatigue 0.008658557893623797 -0.8862581419417965 1.0 7475 +Phenotype MP:0003842 abnormal metopic suture morphology 0.008611378398572733 -0.8871132613662298 1.0 7476 +Biological Process GO:0060349 bone morphogenesis 0.008551006888539936 -0.8882074835671147 1.0 7477 +Biological Process GO:0046548 retinal rod cell development 0.008541168788887665 -0.8883857972625677 1.0 7478 +Biological Process GO:2000036 regulation of stem cell population maintenance 0.008534277829993941 -0.8885106945891842 1.0 7479 +Phenotype MP:0012144 decreased b-wave amplitude 0.008514763305513262 -0.8888643916544865 1.0 7480 +Phenotype MP:0020395 abnormal response to social novelty 0.008468988041766323 -0.889694059652124 1.0 7481 +Phenotype MP:0013351 abnormal Rathke's pouch development 0.008460673884123748 -0.8898447521868845 1.0 7482 +Biological Process GO:0036336 dendritic cell migration 0.008401301753051205 -0.8909208608331338 1.0 7483 +Biological Process GO:0090311 regulation of protein deacetylation 0.008342105825364654 -0.8919937758263385 1.0 7484 +Phenotype MP:0020947 decreased susceptibility to Orthomyxoviridae infection 0.008325548073008449 -0.8922938819561185 1.0 7485 +Phenotype MP:0013403 abnormal circulating lactate level 0.008269905330950733 -0.8933023961318378 1.0 7486 +Biological Process GO:0003091 renal water homeostasis 0.00826630030216513 -0.8933677365967342 1.0 7487 +Phenotype MP:0008030 abnormal Cajal-Retzius cell morphology 0.008209772409637273 -0.8943922939573106 1.0 7488 +Biological Process GO:0006493 protein O-linked glycosylation 0.008170636248349017 -0.8951016294785813 1.0 7489 +Phenotype MP:0011055 abnormal respiratory motile cilium physiology 0.008155850808521992 -0.895369612778979 1.0 7490 +Phenotype MP:0000405 abnormal auchene hair morphology 0.008114364986928302 -0.8961215354488791 1.0 7491 +Biological Process GO:0050982 detection of mechanical stimulus 0.008094274367284604 -0.8964856741300504 1.0 7492 +Phenotype MP:0006396 decreased long bone epiphyseal plate size 0.008091680937168277 -0.8965326795603964 1.0 7493 +Biological Process GO:0070344 regulation of fat cell proliferation 0.00806105577966243 -0.8970877547478531 1.0 7494 +Phenotype MP:0003321 tracheoesophageal fistula 0.008029967603374266 -0.8976512220631654 1.0 7495 +Phenotype MP:0030934 decreased primordial germ cell proliferation 0.008029627525120153 -0.8976573859171999 1.0 7496 +Biological Process GO:0005976 polysaccharide metabolic process 0.008008763148633635 -0.8980355487948017 1.0 7497 +Biological Process GO:0051216 cartilage development 0.007987346884770874 -0.8984237145267159 1.0 7498 +Phenotype MP:0008438 abnormal cutaneous collagen fibril morphology 0.007959627946580339 -0.8989261150387547 1.0 7499 +Biological Process GO:0007190 activation of adenylate cyclase activity 0.007951883739640064 -0.8990664773248346 1.0 7500 +Phenotype MP:0010725 thin interventricular septum 0.007920209807797618 -0.8996405613487805 1.0 7501 +Phenotype MP:0004310 small otic vesicle 0.007913009203922128 -0.8997710709321263 1.0 7502 +Phenotype MP:0000036 absent semicircular canals 0.007895425516612375 -0.9000897719388974 1.0 7503 +Phenotype MP:0010940 abnormal maxillary prominence morphology 0.007876608606974145 -0.9004308248671249 1.0 7504 +Phenotype MP:0008814 decreased nerve conduction velocity 0.00784508212827928 -0.9010022363306596 1.0 7505 +Biological Process GO:0001710 mesodermal cell fate commitment 0.007835811191606923 -0.901170270304373 1.0 7506 +Biological Process GO:0060037 pharyngeal system development 0.0077800040129305525 -0.9021817648627045 1.0 7507 +Biological Process GO:0009062 fatty acid catabolic process 0.007757903974179747 -0.9025823238851376 1.0 7508 +Phenotype MP:0004136 abnormal tongue muscle morphology 0.007682595131691228 -0.9039472824115867 1.0 7509 +Biological Process GO:0014733 regulation of skeletal muscle adaptation 0.007681063700420099 -0.9039750393137264 1.0 7510 +Biological Process GO:0016051 carbohydrate biosynthetic process 0.007637667846549956 -0.9047615809573802 1.0 7511 +Phenotype MP:0010954 abnormal cellular respiration 0.007624185865196087 -0.9050059393194836 1.0 7512 +Biological Process GO:0006221 pyrimidine nucleotide biosynthetic process 0.007599817351274019 -0.9054476140253442 1.0 7513 +Phenotype MP:0000077 abnormal interparietal bone morphology 0.007557924122546522 -0.906206920872489 1.0 7514 +Phenotype MP:0009177 decreased pancreatic alpha cell number 0.007541431430859835 -0.9065058477899393 1.0 7515 +Phenotype MP:0012143 decreased a-wave amplitude 0.007483387466702185 -0.907557883662061 1.0 7516 +Phenotype MP:0003630 abnormal urothelium morphology 0.007479998970393642 -0.9076192995167649 1.0 7517 +Phenotype MP:0006086 decreased body mass index 0.007471834436618696 -0.907767280147224 1.0 7518 +Phenotype MP:0000464 increased presacral vertebrae number 0.007453394465225971 -0.9081015011410444 1.0 7519 +Biological Process GO:0002861 regulation of inflammatory response to antigenic stimulus 0.007421454629896185 -0.9086804046154062 1.0 7520 +Phenotype MP:0003313 abnormal locomotor activation 0.007393356701581699 -0.9091896742517609 1.0 7521 +Biological Process GO:0005980 glycogen catabolic process 0.007378433401234341 -0.909460156248015 1.0 7522 +Biological Process GO:0000272 polysaccharide catabolic process 0.007378433401234341 -0.909460156248015 1.0 7522 +Biological Process GO:0009251 glucan catabolic process 0.007378433401234341 -0.909460156248015 1.0 7522 +Phenotype MP:0030966 decreased brain ependyma motile cilium number 0.007245731897496888 -0.9118653459045507 1.0 7525 +Phenotype MP:0009811 abnormal prostaglandin level 0.007231030885259004 -0.9121317989708635 1.0 7526 +Biological Process GO:0043331 response to dsRNA 0.007210401162814684 -0.9125057087883321 1.0 7527 +Phenotype MP:0008410 increased cellular sensitivity to ultraviolet irradiation 0.007175270009755486 -0.9131424542929447 1.0 7528 +Phenotype MP:0008582 short photoreceptor inner segment 0.00712431912715461 -0.914065929403411 1.0 7529 +Biological Process GO:0044241 lipid digestion 0.00711774762644346 -0.9141850366108896 1.0 7530 +Phenotype MP:0000565 oligodactyly 0.007095181357172575 -0.9145940459733178 1.0 7531 +Phenotype MP:0001429 dehydration 0.007060071221117958 -0.9152304105486976 1.0 7532 +Phenotype MP:0002061 abnormal aggression-related behavior 0.007055145541229213 -0.9153196875650549 1.0 7533 +Phenotype MP:0008964 decreased carbon dioxide production 0.007045643374458899 -0.9154919125405597 1.0 7534 +Phenotype MP:0002606 increased basophil cell number 0.0070337122874923885 -0.915708161235223 1.0 7535 +Biological Process GO:0033344 cholesterol efflux 0.007022270296664357 -0.9159155451548823 1.0 7536 +Biological Process GO:0003016 respiratory system process 0.007009308657622504 -0.9161504724109961 1.0 7537 +Phenotype MP:0009362 abnormal primary ovarian follicle morphology 0.006919190814275167 -0.9177838412770879 1.0 7538 +Biological Process GO:0021889 olfactory bulb interneuron differentiation 0.006877173835158623 -0.9185453910766285 1.0 7539 +Phenotype MP:0000632 abnormal pineal gland morphology 0.006864322617711749 -0.918778316962218 1.0 7540 +Biological Process GO:0031103 axon regeneration 0.006817966249081375 -0.9196185173759595 1.0 7541 +Phenotype MP:0011468 abnormal urine amino acid level 0.006774032650537221 -0.9204148055401227 1.0 7542 +Phenotype MP:0009093 oocyte degeneration 0.006759597905580117 -0.9206764325623322 1.0 7543 +Biological Process GO:0034204 lipid translocation 0.006744542643831175 -0.9209493063340314 1.0 7544 +Biological Process GO:0045332 phospholipid translocation 0.006744542643831175 -0.9209493063340314 1.0 7544 +Biological Process GO:0033363 secretory granule organization 0.00671929666079496 -0.9214068850016245 1.0 7546 +Biological Process GO:0030852 regulation of granulocyte differentiation 0.006693188986437226 -0.9218800816614428 1.0 7547 +Phenotype MP:0000435 shortened head 0.006676262696471702 -0.9221868674656876 1.0 7548 +Phenotype MP:0010564 abnormal fetal ductus arteriosus morphology 0.006594528142838785 -0.9236682907912921 1.0 7549 +Phenotype MP:0030807 abnormal forelimb joint morphology 0.006581468100681609 -0.9239050015852595 1.0 7550 +Phenotype MP:0009141 increased prepulse inhibition 0.0065701182264423785 -0.9241107159091694 1.0 7551 +Phenotype MP:0000013 abnormal adipose tissue distribution 0.006555855039025449 -0.924369233483411 1.0 7552 +Phenotype MP:0011261 abnormal limb mesenchyme morphology 0.006547950783154066 -0.9245124966260961 1.0 7553 +Biological Process GO:1901988 negative regulation of cell cycle phase transition 0.006547763274854734 -0.9245158951785568 1.0 7554 +Phenotype MP:0002256 abnormal laryngeal cartilage morphology 0.00653550918763679 -0.9247379981916862 1.0 7555 +Biological Process GO:0009124 nucleoside monophosphate biosynthetic process 0.006506170456684335 -0.9252697571411729 1.0 7556 +Phenotype MP:0003116 rickets 0.006484637451787956 -0.9256600387822413 1.0 7557 +Phenotype MP:0004755 abnormal loop of Henle morphology 0.006481044467736008 -0.9257251609386182 1.0 7558 +Biological Process GO:0045576 mast cell activation 0.0064749463020170595 -0.9258356890388881 1.0 7559 +Biological Process GO:0006814 sodium ion transport 0.006424450602359411 -0.9267509140446002 1.0 7560 +Phenotype MP:0005201 abnormal retina pigment epithelium morphology 0.006422433612431333 -0.92678747160556 1.0 7561 +Biological Process GO:0035640 exploration behavior 0.0064157436770925225 -0.9269087254182646 1.0 7562 +Biological Process GO:0055022 negative regulation of cardiac muscle tissue growth 0.006408547065110071 -0.9270391626493041 1.0 7563 +Biological Process GO:0061117 negative regulation of heart growth 0.006408547065110071 -0.9270391626493041 1.0 7563 +Phenotype MP:0004728 abnormal efferent ductules of testis morphology 0.006313106190009132 -0.9287690104591501 1.0 7565 +Biological Process GO:0030326 embryonic limb morphogenesis 0.006301126985854277 -0.9289861312687513 1.0 7566 +Biological Process GO:0035113 embryonic appendage morphogenesis 0.006301126985854277 -0.9289861312687513 1.0 7566 +Phenotype MP:0009176 increased pancreatic alpha cell number 0.006293836782641948 -0.9291182648231309 1.0 7568 +Phenotype MP:0003043 hypoalgesia 0.006253933050399674 -0.9298415124227675 1.0 7569 +Biological Process GO:0021953 central nervous system neuron differentiation 0.00616426351764654 -0.9314667557441313 1.0 7570 +Phenotype MP:0005554 decreased circulating creatinine level 0.00613970302674216 -0.9319119099964864 1.0 7571 +Phenotype MP:0006328 nonsyndromic hearing impairment 0.006138509128963077 -0.9319335491679226 1.0 7572 +Phenotype MP:0009363 abnormal tertiary ovarian follicle morphology 0.006120670044262422 -0.9322568792040989 1.0 7573 +Biological Process GO:0007164 establishment of tissue polarity 0.006112519423462248 -0.9324046076645217 1.0 7574 +Biological Process GO:0001736 establishment of planar polarity 0.006112519423462248 -0.9324046076645217 1.0 7574 +Phenotype MP:0003942 abnormal urinary system development 0.0060367338761861955 -0.9337782063750826 1.0 7576 +Phenotype MP:0011192 decreased embryonic epiblast cell proliferation 0.005994815863382685 -0.9345379624289175 1.0 7577 +Biological Process GO:0003334 keratinocyte development 0.005925525325299108 -0.9357938403263085 1.0 7578 +Phenotype MP:0003189 fused joints 0.005892940085764797 -0.9363844416298078 1.0 7579 +Phenotype MP:0009747 impaired behavioral response to xenobiotic 0.005875035826538699 -0.9367089529419309 1.0 7580 +Biological Process GO:0055078 sodium ion homeostasis 0.0058645259811802575 -0.9368994419012566 1.0 7581 +Phenotype MP:0009266 abnormal mesendoderm development 0.00585327896457466 -0.9371032919500111 1.0 7582 +Biological Process GO:0060350 endochondral bone morphogenesis 0.0058469936825521485 -0.9372172114978925 1.0 7583 +Phenotype MP:0004994 abnormal brain wave pattern 0.0058339563207965295 -0.9374535112138714 1.0 7584 +Biological Process GO:0070166 enamel mineralization 0.005808781159629017 -0.9379098062484892 1.0 7585 +Phenotype MP:0011405 tubulointerstitial nephritis 0.005778914804633217 -0.9384511282839685 1.0 7586 +Biological Process GO:0006024 glycosaminoglycan biosynthetic process 0.005678681822618548 -0.9402678321252632 1.0 7587 +Biological Process GO:1902373 negative regulation of mRNA catabolic process 0.005660244022515082 -0.9406020137648764 1.0 7588 +Biological Process GO:0044320 cellular response to leptin stimulus 0.005646518060779648 -0.94085079422525 1.0 7589 +Phenotype MP:0008576 decreased circulating interferon-beta level 0.0056149264926028675 -0.9414233854233337 1.0 7590 +Phenotype MP:0020279 abnormal creatine kinase level 0.005610808748293894 -0.9414980187601178 1.0 7591 +Biological Process GO:0050885 neuromuscular process controlling balance 0.0056091331096015384 -0.9415283893944922 1.0 7592 +Phenotype MP:0002900 abnormal urine phosphate level 0.005597910767648928 -0.9417317922198282 1.0 7593 +Phenotype MP:0008700 decreased interleukin-4 secretion 0.00555158408345402 -0.9425714546087913 1.0 7594 +Biological Process GO:0060259 regulation of feeding behavior 0.005548527667703751 -0.942626851566185 1.0 7595 +Biological Process GO:0033144 negative regulation of intracellular steroid hormone receptor signaling pathway 0.005547959874694364 -0.9426371427070898 1.0 7596 +Biological Process GO:0070507 regulation of microtubule cytoskeleton organization 0.0055345259984266315 -0.9428806291736053 1.0 7597 +Biological Process GO:0050818 regulation of coagulation 0.005520598958644429 -0.9431330541355453 1.0 7598 +Phenotype MP:0004620 cervical vertebral fusion 0.005508631098458117 -0.9433499693378623 1.0 7599 +Biological Process GO:0006111 regulation of gluconeogenesis 0.005484188963610026 -0.9437929784090827 1.0 7600 +Biological Process GO:0007093 mitotic cell cycle checkpoint signaling 0.005389124872693274 -0.9455159970768539 1.0 7601 +Biological Process GO:0051053 negative regulation of DNA metabolic process 0.005361717918128117 -0.9460127429446903 1.0 7602 +Phenotype MP:0004471 short nasal bone 0.005357244534324845 -0.9460938221800442 1.0 7603 +Phenotype MP:0009978 abnormal cerebellum white matter morphology 0.005341974273969208 -0.9463705927608257 1.0 7604 +Phenotype MP:0005346 abnormal circulating aldosterone level 0.00534035092038998 -0.9464000157374136 1.0 7605 +Phenotype MP:0003372 abnormal circulating mineralocorticoid level 0.00534035092038998 -0.9464000157374136 1.0 7605 +Phenotype MP:0001148 enlarged testis 0.005335158451536759 -0.9464941282532926 1.0 7607 +Phenotype MP:0009833 absent sperm mitochondrial sheath 0.005317893443891553 -0.9468070532514178 1.0 7608 +Phenotype MP:0001725 abnormal umbilical cord morphology 0.005316072933994609 -0.946840049648975 1.0 7609 +Biological Process GO:0070269 pyroptosis 0.005258773700766439 -0.9478785874138558 1.0 7610 +Phenotype MP:0011922 abnormal circulating osteocalcin level 0.005194040277840095 -0.9490518684609389 1.0 7611 +Phenotype MP:0004787 abnormal dorsal aorta morphology 0.00518132124848647 -0.94928239846234 1.0 7612 +Biological Process GO:0050650 chondroitin sulfate proteoglycan biosynthetic process 0.005168475142909412 -0.949515231696256 1.0 7613 +Biological Process GO:0032413 negative regulation of ion transmembrane transporter activity 0.005153324781864588 -0.9497898291247062 1.0 7614 +Phenotype MP:0004470 small nasal bone 0.005150935014604174 -0.9498331432043089 1.0 7615 +Biological Process GO:0003416 endochondral bone growth 0.005132671746897133 -0.9501641614772475 1.0 7616 +Biological Process GO:0001676 long-chain fatty acid metabolic process 0.005064115707612782 -0.951406726722823 1.0 7617 +Biological Process GO:0070168 negative regulation of biomineral tissue development 0.005062590737453299 -0.951434366518536 1.0 7618 +Biological Process GO:0006089 lactate metabolic process 0.005027648257750372 -0.9520676923542513 1.0 7619 +Biological Process GO:0003407 neural retina development 0.005024664272145873 -0.952121776528952 1.0 7620 +Phenotype MP:0020280 increased creatine kinase level 0.0049789259962287336 -0.9529507741291701 1.0 7621 +Phenotype MP:0021215 abnormal palatal mesenchymal cell proliferation 0.0049713534283961636 -0.9530880254888859 1.0 7622 +Phenotype MP:0010089 abnormal circulating creatine kinase level 0.004945678199504311 -0.9535533841564264 1.0 7623 +Biological Process GO:0032305 positive regulation of icosanoid secretion 0.004904335906612656 -0.9543027053957487 1.0 7624 +Phenotype MP:0030567 abnormal I band morphology 0.0048989587183855265 -0.9544001659153425 1.0 7625 +Phenotype MP:0000750 abnormal muscle regeneration 0.00488932576780865 -0.9545747613226053 1.0 7626 +Biological Process GO:0001941 postsynaptic membrane organization 0.004871431710527507 -0.9548990877264056 1.0 7627 +Phenotype MP:0006065 abnormal heart position or orientation 0.00487129045854251 -0.9549016478919178 1.0 7628 +Phenotype MP:0003368 decreased circulating glucocorticoid level 0.004858391524937167 -0.9551354386238546 1.0 7629 +Biological Process GO:0072207 metanephric epithelium development 0.0047463441125358274 -0.957166276781367 1.0 7630 +Biological Process GO:0022403 cell cycle phase 0.004711312566591852 -0.9578012169258556 1.0 7631 +Biological Process GO:0006570 tyrosine metabolic process 0.0047066496019619875 -0.9578857322778348 1.0 7632 +Biological Process GO:0021696 cerebellar cortex morphogenesis 0.004653851305694512 -0.9588426914115947 1.0 7633 +Phenotype MP:0000948 nonconvulsive seizures 0.0046050850442735936 -0.959726570676366 1.0 7634 +Phenotype MP:0012719 abnormal neck morphology 0.004490896834540736 -0.9617962103806091 1.0 7635 +Phenotype MP:0004538 abnormal maxillary shelf morphology 0.0044319049559627954 -0.9628654270223135 1.0 7636 +Phenotype MP:0008332 decreased lactotroph cell number 0.004428326922126247 -0.9629302782088639 1.0 7637 +Phenotype MP:0001982 decreased chemically-elicited antinociception 0.004399488094981585 -0.9634529764963844 1.0 7638 +Phenotype MP:0004412 abnormal cochlear microphonics 0.004391464727265482 -0.9635983985187266 1.0 7639 +Biological Process GO:0045722 positive regulation of gluconeogenesis 0.004387101817235561 -0.9636774754378331 1.0 7640 +Phenotype MP:0020254 decreased collagen level 0.004304896969789973 -0.9651674227498425 1.0 7641 +Biological Process GO:0021522 spinal cord motor neuron differentiation 0.004290741891631811 -0.9654239808642164 1.0 7642 +Biological Process GO:0048536 spleen development 0.004263445990898784 -0.9659187139023498 1.0 7643 +Biological Process GO:1902749 regulation of cell cycle G2/M phase transition 0.004226547777050782 -0.9665874870495437 1.0 7644 +Biological Process GO:0042481 regulation of odontogenesis 0.0042060379401390735 -0.9669592239644085 1.0 7645 +Phenotype MP:0000501 abnormal digestive secretion 0.004197755572747819 -0.9671093403068765 1.0 7646 +Biological Process GO:0042158 lipoprotein biosynthetic process 0.004130910056860504 -0.9683209026394033 1.0 7647 +Biological Process GO:0006081 cellular aldehyde metabolic process 0.004022013795950352 -0.9702946267721358 1.0 7648 +Phenotype MP:0008223 absent hippocampal commissure 0.00400947908005167 -0.9705218161270264 1.0 7649 +Phenotype MP:0009247 meteorism 0.0039788044690473034 -0.9710777876497902 1.0 7650 +Phenotype MP:0005275 abnormal skin tensile strength 0.003966402394649959 -0.9713025729025564 1.0 7651 +Phenotype MP:0003567 abnormal fetal cardiomyocyte proliferation 0.003956634338474485 -0.9714796170732404 1.0 7652 +Phenotype MP:0002293 long gestation period 0.003878087916011408 -0.9729032561243837 1.0 7653 +Biological Process GO:0045745 positive regulation of G protein-coupled receptor signaling pathway 0.0037641897920805967 -0.9749676380783304 1.0 7654 +Phenotype MP:0004814 reduced linear vestibular evoked potential 0.003688326408120224 -0.9763426475640729 1.0 7655 +Phenotype MP:0003358 abnormal hypaxial muscle morphology 0.0036872384497418365 -0.9763623666039084 1.0 7656 +Phenotype MP:0002001 blindness 0.0036770092671528642 -0.9765477686036211 1.0 7657 +Phenotype MP:0010090 increased circulating creatine kinase level 0.003650254339114478 -0.977032696613982 1.0 7658 +Biological Process GO:0021983 pituitary gland development 0.003635576543782215 -0.9772987288782715 1.0 7659 +Phenotype MP:0009820 abnormal liver vasculature morphology 0.0036151047015602344 -0.9776697771465711 1.0 7660 +Phenotype MP:0009009 absent estrous cycle 0.0035899744001441913 -0.9781252591066782 1.0 7661 +Phenotype MP:0005480 increased circulating triiodothyronine level 0.0035851013953905886 -0.9782135813961739 1.0 7662 +Phenotype MP:0005635 decreased circulating bilirubin level 0.003553291342986431 -0.9787901325795555 1.0 7663 +Phenotype MP:0009401 increased skeletal muscle fiber diameter 0.0035455531803395557 -0.9789303853139606 1.0 7664 +Biological Process GO:0032200 telomere organization 0.003544647116331845 -0.9789468075527306 1.0 7665 +Phenotype MP:0003923 abnormal heart left atrium morphology 0.0035362200097542873 -0.9790995472655748 1.0 7666 +Phenotype MP:0006021 abnormal Reissner membrane morphology 0.003508386721425283 -0.9796040203522457 1.0 7667 +Biological Process GO:1903321 negative regulation of protein modification by small protein conjugation or removal 0.0034989674994148068 -0.9797747419696663 1.0 7668 +Phenotype MP:0010890 decreased alveolar lamellar body number 0.0034308158163010027 -0.9810099783361292 1.0 7669 +Phenotype MP:0020945 abnormal susceptibility to Orthomyxoviridae infection 0.0034136528965353907 -0.9813210530107455 1.0 7670 +Phenotype MP:0003899 abnormal QT interval 0.0034133714558663986 -0.9813261540696402 1.0 7671 +Phenotype MP:0004432 abnormal cochlear hair cell physiology 0.0033837630334995206 -0.9818628011250048 1.0 7672 +Phenotype MP:0009902 abnormal lateral nasal prominence morphology 0.0033626689964623147 -0.9822451265566505 1.0 7673 +Biological Process GO:0042596 fear response 0.0032897910360989435 -0.98356602580435 1.0 7674 +Biological Process GO:0072526 pyridine-containing compound catabolic process 0.00326893998319 -0.9839439471946283 1.0 7675 +Phenotype MP:0010666 abnormal vitelline vein morphology 0.003268625257937696 -0.9839496515303002 1.0 7676 +Biological Process GO:1902041 regulation of extrinsic apoptotic signaling pathway via death domain receptors 0.0032679387667990945 -0.9839620940523468 1.0 7677 +Phenotype MP:0005104 abnormal tarsal bone morphology 0.003247184785045265 -0.9843382560462983 1.0 7678 +Phenotype MP:0010580 decreased heart left ventricle size 0.0032065203788476104 -0.985075290717505 1.0 7679 +Biological Process GO:0000723 telomere maintenance 0.0032026450606738033 -0.9851455301264409 1.0 7680 +Biological Process GO:0031102 neuron projection regeneration 0.003190569676683963 -0.9853643941773602 1.0 7681 +Phenotype MP:0009376 abnormal manchette morphology 0.0031116830222125413 -0.9867941998693044 1.0 7682 +Phenotype MP:0013772 increased effector memory T-helper cell number 0.003103354352853138 -0.9869451554261878 1.0 7683 +Phenotype MP:0012030 abnormal a-wave amplitude 0.0030911891583302875 -0.9871656472760314 1.0 7684 +Phenotype MP:0009321 increased histiocytic sarcoma incidence 0.002967549931581548 -0.9894065848761545 1.0 7685 +Biological Process GO:0010165 response to X-ray 0.002963146458892174 -0.9894863969857918 1.0 7686 +Biological Process GO:0050805 negative regulation of synaptic transmission 0.0029525943063583027 -0.9896776527546703 1.0 7687 +Phenotype MP:0011415 abnormal aldosterone level 0.0029322265833403582 -0.9900468138820896 1.0 7688 +Phenotype MP:0000680 absent parathyroid glands 0.002914207371022104 -0.9903734086972661 1.0 7689 +Phenotype MP:0013511 increased CD4-negative NK T cell number 0.002904469493246409 -0.9905499058901619 1.0 7690 +Biological Process GO:0042180 cellular ketone metabolic process 0.002885952880202214 -0.9908855159994194 1.0 7691 +Biological Process GO:0021510 spinal cord development 0.0028805922593682087 -0.9909826762381464 1.0 7692 +Phenotype MP:0031544 decreased heart ventricle size 0.002877623165129961 -0.9910364905096504 1.0 7693 +Phenotype MP:0009392 retina gliosis 0.0028680697511489495 -0.9912096443311564 1.0 7694 +Phenotype MP:0000304 abnormal cardiac stroke volume 0.002866690900762414 -0.9912346357336214 1.0 7695 +Phenotype MP:0031276 abnormal stress erythropoiesis 0.002837925927346774 -0.9917559954362718 1.0 7696 +Phenotype MP:0009777 abnormal behavioral response to anesthetic 0.0028000208954742645 -0.9924430169697337 1.0 7697 +Phenotype MP:0003867 increased defecation amount 0.002783152173982728 -0.9927487593562759 1.0 7698 +Biological Process GO:0042401 biogenic amine biosynthetic process 0.0027662848736674794 -0.9930544759842667 1.0 7699 +Biological Process GO:0009309 amine biosynthetic process 0.0027662848736674794 -0.9930544759842667 1.0 7699 +Biological Process GO:0001886 endothelial cell morphogenesis 0.002765357081615294 -0.9930712920397331 1.0 7701 +Biological Process GO:0016042 lipid catabolic process 0.0027597200026613367 -0.9931734630295959 1.0 7702 +Biological Process GO:0003266 regulation of secondary heart field cardioblast proliferation 0.0027519791712983244 -0.9933137641339763 1.0 7703 +Biological Process GO:0003264 regulation of cardioblast proliferation 0.0027519791712983244 -0.9933137641339763 1.0 7703 +Phenotype MP:0003877 abnormal serotonergic neuron morphology 0.0027395301167756347 -0.9935394008926287 1.0 7705 +Biological Process GO:0001662 behavioral fear response 0.002739076982269939 -0.9935476138698401 1.0 7706 +Biological Process GO:0006310 DNA recombination 0.002714233415257339 -0.9939978988231167 1.0 7707 +Biological Process GO:0021548 pons development 0.0026495215877155864 -0.9951707884579387 1.0 7708 +Phenotype MP:0031416 abnormal cardiac muscle triglyceride level 0.0026289689732404975 -0.995543300708049 1.0 7709 +Phenotype MP:0004433 abnormal cochlear inner hair cell physiology 0.002612989167259272 -0.9958329316690931 1.0 7710 +Biological Process GO:0032259 methylation 0.0025849295651769744 -0.9963415066497382 1.0 7711 +Phenotype MP:0003065 abnormal liver copper level 0.002500447817645135 -0.9978727223451659 1.0 7712 +Biological Process GO:0042048 olfactory behavior 0.0024886380819819642 -0.998086771570408 1.0 7713 +Phenotype MP:0008128 abnormal brain internal capsule morphology 0.002475313419775693 -0.998328278552716 1.0 7714 +Phenotype MP:0001178 pulmonary hypoplasia 0.0024621810321587834 -0.998566300594458 1.0 7715 +Biological Process GO:0007606 sensory perception of chemical stimulus 0.002429298239869815 -0.9991622949853574 1.0 7716 +Biological Process GO:2000136 regulation of cell proliferation involved in heart morphogenesis 0.0023918730629144402 -0.9998406192392043 1.0 7717 +Phenotype MP:0002007 increased cellular sensitivity to gamma-irradiation 0.0023742392846362037 -1.0001602281353053 1.0 7718 +Phenotype MP:0011963 abnormal total retina thickness 0.002285671550663171 -1.00176550156217 1.0 7719 +Phenotype MP:0010380 abnormal inner cell mass apoptosis 0.0022462784503711752 -1.0024794940542872 1.0 7720 +Phenotype MP:0000714 increased thymocyte number 0.0022333747854439423 -1.0027133705405384 1.0 7721 +Phenotype MP:0003884 decreased macrophage cell number 0.002198995160435979 -1.0033364947413639 1.0 7722 +Phenotype MP:0001501 abnormal sleep pattern 0.0021673408625449975 -1.003910222903653 1.0 7723 +Phenotype MP:0004025 polyploidy 0.0021672902739924282 -1.0039111398116 1.0 7724 +Phenotype MP:0010877 abnormal trabecular bone volume 0.0021574645277327997 -1.004089229604148 1.0 7725 +Biological Process GO:0032410 negative regulation of transporter activity 0.0021128720849094007 -1.004897459196261 1.0 7726 +Phenotype MP:0030229 abnormal craniofacial suture morphology 0.00211058676209408 -1.0049388802400505 1.0 7727 +Biological Process GO:2000045 regulation of G1/S transition of mitotic cell cycle 0.0021099076580624043 -1.0049511888721814 1.0 7728 +Biological Process GO:0021515 cell differentiation in spinal cord 0.002099150845007225 -1.0051461540742999 1.0 7729 +Phenotype MP:0000527 abnormal kidney development 0.0020711325160729377 -1.0056539809869436 1.0 7730 +Biological Process GO:0018208 peptidyl-proline modification 0.002012803601216584 -1.0067111815365848 1.0 7731 +Phenotype MP:0004465 degeneration of organ of Corti supporting cells 0.0020083254208459467 -1.006792347708815 1.0 7732 +Biological Process GO:0042157 lipoprotein metabolic process 0.0019197717198504716 -1.0083973667906156 1.0 7733 +Biological Process GO:0097435 supramolecular fiber organization 0.001867655892868636 -1.0093419562976533 1.0 7734 +Phenotype MP:0009231 detached acrosome 0.0018473044660235471 -1.0097108220600217 1.0 7735 +Phenotype MP:0004110 transposition of great arteries 0.001842117523016329 -1.009804834420987 1.0 7736 +Phenotype MP:0001152 increased Leydig cell number 0.0018013256818983914 -1.0105441788260212 1.0 7737 +Biological Process GO:0001967 suckling behavior 0.0017977392652203106 -1.010609181949989 1.0 7738 +Phenotype MP:0011129 decreased tertiary ovarian follicle number 0.001797211710956148 -1.010618743771247 1.0 7739 +Biological Process GO:0035726 common myeloid progenitor cell proliferation 0.0017892668445307347 -1.010762742972543 1.0 7740 +Biological Process GO:0042670 retinal cone cell differentiation 0.001668590486792243 -1.0129499791322423 1.0 7741 +Phenotype MP:0000749 muscle degeneration 0.0016608631617281988 -1.0130900354375083 1.0 7742 +Phenotype MP:0012007 abnormal chloride level 0.0016558448971375483 -1.0131809905340765 1.0 7743 +Phenotype MP:0003966 abnormal adrenocorticotropin level 0.0016539469871784673 -1.0132153897931209 1.0 7744 +Phenotype MP:0003324 increased liver adenoma incidence 0.0016367118693803029 -1.0135277730434216 1.0 7745 +Phenotype MP:0004617 sacral vertebral transformation 0.001628066830048902 -1.0136844627462103 1.0 7746 +Phenotype MP:0009436 fragmentation of sleep/wake states 0.00161469641055223 -1.0139267990707523 1.0 7747 +Phenotype MP:0005299 abnormal eye posterior chamber morphology 0.0015471169962372189 -1.015151663173474 1.0 7748 +Phenotype MP:0020421 increased freezing behavior 0.0015169346914084558 -1.015698711739918 1.0 7749 +Biological Process GO:0000075 cell cycle checkpoint signaling 0.0014974283455922999 -1.016052260568473 1.0 7750 +Biological Process GO:0051303 establishment of chromosome localization 0.0014812613013165388 -1.016345285188192 1.0 7751 +Phenotype MP:0009339 decreased splenocyte number 0.0014662627635917413 -1.0166171308476821 1.0 7752 +Biological Process GO:0097164 ammonium ion metabolic process 0.0014582811420904562 -1.0167617962277764 1.0 7753 +Phenotype MP:0006109 fibrillation 0.0013830964368881649 -1.0181245047893916 1.0 7754 +Biological Process GO:0002710 negative regulation of T cell mediated immunity 0.0013814926778487058 -1.0181535726186524 1.0 7755 +Biological Process GO:1902806 regulation of cell cycle G1/S phase transition 0.001366302250932372 -1.0184288962334458 1.0 7756 +Biological Process GO:0045669 positive regulation of osteoblast differentiation 0.0013357984722357497 -1.0189817714529426 1.0 7757 +Phenotype MP:0000223 decreased monocyte cell number 0.0013147522142469281 -1.019363230898373 1.0 7758 +Phenotype MP:0008446 decreased retina cone cell number 0.0012841461135695287 -1.0199179606844184 1.0 7759 +Phenotype MP:0006018 abnormal tympanic membrane morphology 0.0012813590157869648 -1.0199684763045853 1.0 7760 +Biological Process GO:0001675 acrosome assembly 0.001270305181648057 -1.0201688249576688 1.0 7761 +Phenotype MP:0003123 paternal imprinting 0.0012572359987578219 -1.020405701425694 1.0 7762 +Biological Process GO:0002209 behavioral defense response 0.0012398844761430938 -1.0207201944912787 1.0 7763 +Phenotype MP:0004494 abnormal synaptic glutamate release 0.0012047066904403714 -1.0213577852037352 1.0 7764 +Phenotype MP:0011309 abnormal kidney arterial blood vessel morphology 0.0012023109111113373 -1.0214012082509445 1.0 7765 +Phenotype MP:0002818 abnormal dentin morphology 0.0011699375373567245 -1.0219879695272585 1.0 7766 +Phenotype MP:0004791 absent lower incisors 0.001150305655520767 -1.0223437936724287 1.0 7767 +Phenotype MP:0011699 abnormal brown adipose tissue thermogenesis 0.0011499058704879106 -1.022351039700535 1.0 7768 +Phenotype MP:0004119 hypokalemia 0.0010796778956134734 -1.023623908462457 1.0 7769 +Biological Process GO:0002714 positive regulation of B cell mediated immunity 0.001043417640040234 -1.024281118736582 1.0 7770 +Biological Process GO:0002891 positive regulation of immunoglobulin mediated immune response 0.001043417640040234 -1.024281118736582 1.0 7770 +Phenotype MP:0009946 abnormal olfactory bulb layer morphology 0.0010083868643825378 -1.0249160449197774 1.0 7772 +Biological Process GO:0071827 plasma lipoprotein particle organization 0.0010022428417910678 -1.0250274041671885 1.0 7773 +Phenotype MP:0030805 abnormal limb joint morphology 0.0010002176676794372 -1.0250641100649274 1.0 7774 +Biological Process GO:0034311 diol metabolic process 0.0009750275301353417 -1.025520676543538 1.0 7775 +Biological Process GO:0002562 somatic diversification of immune receptors via germline recombination within a single locus 0.0009646006437670218 -1.0257096618868584 1.0 7776 +Biological Process GO:0016444 somatic cell DNA recombination 0.0009646006437670218 -1.0257096618868584 1.0 7776 +Biological Process GO:0006029 proteoglycan metabolic process 0.000936283176308006 -1.0262229106286849 1.0 7778 +Biological Process GO:0043584 nose development 0.0008690980459987729 -1.0274406284083755 1.0 7779 +Phenotype MP:0008321 small adenohypophysis 0.000810831779156862 -1.0284966934746038 1.0 7780 +Biological Process GO:0055081 monoatomic anion homeostasis 0.0008061972668541584 -1.0285806931335346 1.0 7781 +Biological Process GO:1905039 carboxylic acid transmembrane transport 0.0007858399524306448 -1.0289496656071484 1.0 7782 +Biological Process GO:0090075 relaxation of muscle 0.0007648029910548582 -1.029330956553226 1.0 7783 +Phenotype MP:0012106 impaired exercise endurance 0.0006838433483716821 -1.0307983347644305 1.0 7784 +Biological Process GO:0097237 cellular response to toxic substance 0.0006723374567956242 -1.0310068768730618 1.0 7785 +Biological Process GO:0065004 protein-DNA complex assembly 0.0006135403845414222 -1.0320725626869933 1.0 7786 +Phenotype MP:0010097 abnormal retina blood vessel morphology 0.0004433522710812765 -1.0351571900546646 1.0 7787 +Biological Process GO:0006878 intracellular copper ion homeostasis 0.0004328168811249533 -1.0353481420049955 1.0 7788 +Phenotype MP:0012288 abnormal paradoxical sleep pattern 0.00042553313925941527 -1.0354801584486866 1.0 7789 +Phenotype MP:0005361 small pituitary gland 0.0004067470221402747 -1.0358206532683294 1.0 7790 +Phenotype MP:0000636 enlarged pituitary gland 0.0004043298934424122 -1.0358644632688108 1.0 7791 +Phenotype MP:0005191 head tilt 0.0003295802600581377 -1.0372192862360123 1.0 7792 +Biological Process GO:1903313 positive regulation of mRNA metabolic process 0.00032277909283728867 -1.037342556105541 1.0 7793 +Biological Process GO:0006684 sphingomyelin metabolic process 0.0003184820580398595 -1.037420439048518 1.0 7794 +Biological Process GO:0060324 face development 0.0003125963722628855 -1.0375271159900272 1.0 7795 +Phenotype MP:0001496 audiogenic seizures 0.0003088453073980535 -1.0375951033312387 1.0 7796 +Biological Process GO:0045143 homologous chromosome segregation 0.0002938811492499971 -1.037866325867403 1.0 7797 +Phenotype MP:0005553 increased circulating creatinine level 0.00029141301845525547 -1.0379110602712438 1.0 7798 +Phenotype MP:0008114 abnormal Kupffer cell morphology 0.0002826598811577208 -1.0380697092292235 1.0 7799 +Biological Process GO:1900048 positive regulation of hemostasis 0.0002684510214953084 -1.03832724212319 1.0 7800 +Biological Process GO:0030194 positive regulation of blood coagulation 0.0002684510214953084 -1.03832724212319 1.0 7800 +Phenotype MP:0010392 prolonged QRS complex duration 0.0002657828594110345 -1.0383756020563204 1.0 7802 +Phenotype MP:0003235 abnormal alisphenoid bone morphology 0.00025347446152435005 -1.0385986894400485 1.0 7803 +Biological Process GO:0045652 regulation of megakaryocyte differentiation 0.00024160103889048212 -1.0388138929795891 1.0 7804 +Biological Process GO:0051341 regulation of oxidoreductase activity 0.00022545850841892978 -1.0391064732912432 1.0 7805 +Biological Process GO:0055070 copper ion homeostasis 0.00019321543468697744 -1.0396908729042909 1.0 7806 +Phenotype MP:0004805 absent oocytes 0.0001763514841043312 -1.0399965288190118 1.0 7807 +Phenotype MP:0010047 axonal spheroids 0.00014778415655636312 -1.0405143062276927 1.0 7808 +Phenotype MP:0020551 abnormal postsynaptic density morphology 0.00010670178047222922 -1.0412589165240385 1.0 7809 +Biological Process GO:1900273 positive regulation of long-term synaptic potentiation 8.588040214319026e-05 -1.0416363000681685 1.0 7810 +Biological Process GO:2000311 regulation of AMPA receptor activity 7.319818293394231e-05 -1.0418661628926649 1.0 7811 +Biological Process GO:0035136 forelimb morphogenesis 6.878729499204539e-05 -1.0419461094023514 1.0 7812 +Biological Process GO:0007617 mating behavior 5.0495232476355234e-05 -1.0422776495757506 1.0 7813 +Biological Process GO:0006672 ceramide metabolic process 3.642935695336025e-05 -1.0425325909092336 1.0 7814 +Biological Process GO:0043031 negative regulation of macrophage activation 3.5318702280240366e-05 -1.0425527213151184 1.0 7815 +Biological Process GO:0006023 aminoglycan biosynthetic process -1.524575814371154e-05 -1.0434691925967146 1.0 7816 +Phenotype MP:0012034 abnormal a-wave shape -2.315212184722526e-05 -1.0436124939434583 1.0 7817 +Phenotype MP:0009168 decreased pancreatic islet number -0.00011235919501983993 -1.0452293552723932 1.0 7818 +Phenotype MP:0008044 increased NK cell number -0.00016033577276952649 -1.0460989216699816 1.0 7819 +Biological Process GO:0007585 respiratory gaseous exchange by respiratory system -0.00017394910301660182 -1.0463456607059314 1.0 7820 +Phenotype MP:0005619 increased urine potassium level -0.0002349601912834398 -1.0474514751413406 1.0 7821 +Phenotype MP:0001522 impaired swimming -0.00025442158488653277 -1.0478042092195357 1.0 7822 +Phenotype MP:0008439 abnormal cortical plate morphology -0.00030242251001122433 -1.048674216908691 1.0 7823 +Biological Process GO:0044283 small molecule biosynthetic process -0.00032032105296209146 -1.0489986246144065 1.0 7824 +Phenotype MP:0000436 abnormal head movements -0.0003287891754477634 -1.0491521077328279 1.0 7825 +Phenotype MP:0000737 abnormal myotome development -0.00033565162522841696 -1.0492764883371621 1.0 7826 +Phenotype MP:0012031 abnormal b-wave amplitude -0.00034715134228902045 -1.0494849185338686 1.0 7827 +Phenotype MP:0012035 abnormal b-wave shape -0.00034715134228902045 -1.0494849185338686 1.0 7827 +Phenotype MP:0005146 decreased circulating VLDL cholesterol level -0.0004161742621748843 -1.0507359459020424 1.0 7829 +Phenotype MP:0030818 abnormal girdle joint morphology -0.0004884226400958536 -1.0520454340870504 1.0 7830 +Phenotype MP:0014451 decreased circulating enzyme level -0.0005021512894953784 -1.0522942632608274 1.0 7831 +Biological Process GO:0001502 cartilage condensation -0.0005139797739364127 -1.0525086523041223 1.0 7832 +Phenotype MP:0005032 abnormal ectoplacental cone morphology -0.0005438465763025757 -1.0530499824481048 1.0 7833 +Phenotype MP:0012056 abnormal polar trophectoderm morphology -0.0005438465763025757 -1.0530499824481048 1.0 7833 +Phenotype MP:0011496 abnormal head size -0.0005528309831934752 -1.0532128231237226 1.0 7835 +Phenotype MP:0003997 tonic-clonic seizures -0.0005926925436832153 -1.0539353063683208 1.0 7836 +Phenotype MP:0004101 abnormal brain interneuron morphology -0.0006294774139516957 -1.0546020251845731 1.0 7837 +Phenotype MP:0000538 abnormal urinary bladder morphology -0.0006402861366956447 -1.0547979312399827 1.0 7838 +Biological Process GO:0097094 craniofacial suture morphogenesis -0.0006699640638940796 -1.0553358380572733 1.0 7839 +Biological Process GO:0016126 sterol biosynthetic process -0.0006836451837199942 -1.0555838057665181 1.0 7840 +Phenotype MP:0000958 peripheral nervous system degeneration -0.0007369290656249472 -1.0565495660481152 1.0 7841 +Phenotype MP:0000776 abnormal inferior colliculus morphology -0.0007451255540631418 -1.056698125850802 1.0 7842 +Phenotype MP:0004204 absent stapes -0.0007897091437920611 -1.057506194982252 1.0 7843 +Phenotype MP:0014116 abnormal pancreatic beta cell apoptosis -0.0008360540352858603 -1.0583461873750637 1.0 7844 +Biological Process GO:0051258 protein polymerization -0.000845559239243121 -1.0585184673990076 1.0 7845 +Biological Process GO:0050995 negative regulation of lipid catabolic process -0.0008861870343872535 -1.0592548385017937 1.0 7846 +Phenotype MP:0011854 cerebral edema -0.0009069122664011608 -1.0596304794121467 1.0 7847 +Biological Process GO:0042415 norepinephrine metabolic process -0.0009229991043018249 -1.059922050306487 1.0 7848 +Phenotype MP:0003089 decreased skin tensile strength -0.0009367457305515803 -1.0601712053072743 1.0 7849 +Biological Process GO:0060872 semicircular canal development -0.000977375478114384 -1.0609076117972795 1.0 7850 +Phenotype MP:0011475 abnormal glycosaminoglycan level -0.0009813268944429687 -1.0609792304708778 1.0 7851 +Biological Process GO:0046364 monosaccharide biosynthetic process -0.001042745485658969 -1.062092430820167 1.0 7852 +Phenotype MP:0009759 abnormal hair follicle bulge morphology -0.0010451489742540065 -1.0621359935963643 1.0 7853 +Biological Process GO:0048634 regulation of muscle organ development -0.0010610601661529273 -1.0624243809401441 1.0 7854 +Phenotype MP:0000644 dextrocardia -0.0011050343860081746 -1.063221405357888 1.0 7855 +Biological Process GO:0006188 IMP biosynthetic process -0.0011188095464307324 -1.0634710775351603 1.0 7856 +Phenotype MP:0012779 abnormal brain cholesterol level -0.0011419567610557735 -1.0638906164222548 1.0 7857 +Phenotype MP:0030123 small middle ear ossicles -0.0011800881595984691 -1.0645817408087996 1.0 7858 +Phenotype MP:0011047 increased lung tissue damping -0.0011833830019374325 -1.0646414592030182 1.0 7859 +Biological Process GO:0035335 peptidyl-tyrosine dephosphorylation -0.0011852554659643744 -1.0646753972593552 1.0 7860 +Biological Process GO:0033273 response to vitamin -0.0012539857629259021 -1.0659211208923711 1.0 7861 +Biological Process GO:1901976 regulation of cell cycle checkpoint -0.0012650311595239216 -1.066121316616622 1.0 7862 +Biological Process GO:0007129 homologous chromosome pairing at meiosis -0.0013688519556052103 -1.068003048909287 1.0 7863 +Phenotype MP:0005640 abnormal mean corpuscular hemoglobin concentration -0.0014211241735408997 -1.0689504729727841 1.0 7864 +Biological Process GO:0060080 inhibitory postsynaptic potential -0.001469011099273887 -1.0698184144445262 1.0 7865 +Phenotype MP:0005532 abnormal vascular resistance -0.0014802355411993595 -1.070021855331473 1.0 7866 +Phenotype MP:0004109 abnormal Sertoli cell development -0.0015296964963442683 -1.0709183257885997 1.0 7867 +Phenotype MP:0004819 decreased skeletal muscle mass -0.0015404455405265693 -1.0711131501813669 1.0 7868 +Phenotype MP:0002204 abnormal synaptic neurotransmitter level -0.0016674163392804697 -1.0734144718939613 1.0 7869 +Biological Process GO:1903825 organic acid transmembrane transport -0.0016745463961969076 -1.0735437028270174 1.0 7870 +Phenotype MP:0000102 abnormal nasal bone morphology -0.0017001240929157557 -1.074007293742369 1.0 7871 +Phenotype MP:0003930 abnormal tooth hard tissue morphology -0.0017002302705253491 -1.074009218191461 1.0 7872 +Phenotype MP:0003084 abnormal skeletal muscle fiber morphology -0.0017083639979917908 -1.0741566404634049 1.0 7873 +Phenotype MP:0014259 embryonic lethality prior to organogenesis, complete penetrance -0.0017087134686735173 -1.0741629745534134 1.0 7874 +Phenotype MP:0013836 abnormal hypoglossal nerve topology -0.0017123408000125906 -1.0742287192478732 1.0 7875 +Phenotype MP:0001310 abnormal conjunctiva morphology -0.0017453849045685477 -1.0748276373931016 1.0 7876 +Biological Process GO:0048664 neuron fate determination -0.001763887412010945 -1.0751629918409946 1.0 7877 +Phenotype MP:0011639 decreased mitochondrial DNA content -0.001781904454555061 -1.0754895473294253 1.0 7878 +Phenotype MP:0000298 absent atrioventricular cushions -0.0017930659390197334 -1.0756918471243027 1.0 7879 +Biological Process GO:0042770 signal transduction in response to DNA damage -0.0017998141600616968 -1.075814157354353 1.0 7880 +Biological Process GO:0006094 gluconeogenesis -0.001805231506032401 -1.0759123457254538 1.0 7881 +Phenotype MP:0010825 abnormal lung saccule morphology -0.0018065641559030787 -1.075936499752307 1.0 7882 +Phenotype MP:0030385 absent facial bone -0.001868079750164675 -1.0770514582634507 1.0 7883 +Phenotype MP:0002313 abnormal tidal volume -0.0019258784407489848 -1.0780990485984459 1.0 7884 +Phenotype MP:0005504 abnormal ligament morphology -0.001927143820645183 -1.0781219833697349 1.0 7885 +Biological Process GO:0030502 negative regulation of bone mineralization -0.0019294459838037348 -1.0781637096415604 1.0 7886 +Biological Process GO:1990748 cellular detoxification -0.001937065633799806 -1.0783018143565848 1.0 7887 +Biological Process GO:0034220 monoatomic ion transmembrane transport -0.0019512776889250016 -1.0785594051677099 1.0 7888 +Biological Process GO:0045185 maintenance of protein location -0.001988750254503735 -1.0792385883313924 1.0 7889 +Biological Process GO:0045814 negative regulation of gene expression, epigenetic -0.0020196558834826295 -1.0797987470112504 1.0 7890 +Phenotype MP:0001149 testicular hyperplasia -0.0020605569311467065 -1.0805400707642785 1.0 7891 +Biological Process GO:0017148 negative regulation of translation -0.002097335687416324 -1.081206678765458 1.0 7892 +Phenotype MP:0020394 decreased neuronal precursor proliferation -0.00215399125349669 -1.0822335501850258 1.0 7893 +Phenotype MP:0003952 abnormal copper level -0.002192722565662608 -1.082935547892526 1.0 7894 +Biological Process GO:0043038 amino acid activation -0.0021967771289714833 -1.0830090360856333 1.0 7895 +Biological Process GO:0015748 organophosphate ester transport -0.0022598820577000023 -1.0841528009833887 1.0 7896 +Biological Process GO:0006412 translation -0.002283429763676903 -1.0845795987004878 1.0 7897 +Phenotype MP:0004422 small temporal bone -0.002306026723980059 -1.0849891643320713 1.0 7898 +Phenotype MP:0010607 common atrioventricular valve -0.0023512135712202564 -1.0858081673918152 1.0 7899 +Biological Process GO:0031646 positive regulation of nervous system process -0.0023821181696419558 -1.086368307393019 1.0 7900 +Phenotype MP:0030977 impaired sperm-egg recognition -0.0024276284719166874 -1.0871931730140867 1.0 7901 +Phenotype MP:0030978 impaired binding of sperm to zona pellucida -0.0024276284719166874 -1.0871931730140867 1.0 7901 +Phenotype MP:0011198 absent proamniotic cavity -0.002460389884928693 -1.0877869674285483 1.0 7903 +Phenotype MP:0020147 abnormal defecation amount -0.0025255489029405442 -1.0889679623060609 1.0 7904 +Phenotype MP:0001440 abnormal grooming behavior -0.002581717895749902 -1.0899860146771203 1.0 7905 +Phenotype MP:0004737 absent distortion product otoacoustic emissions -0.0026352747552820244 -1.09095672262658 1.0 7906 +Phenotype MP:0003934 abnormal pancreas development -0.0026357554221625445 -1.0909654346228779 1.0 7907 +Phenotype MP:0012436 increased colon tumor incidence -0.002647323862518647 -1.0911751104163172 1.0 7908 +Phenotype MP:0001947 abnormal mucociliary clearance -0.002664290474821973 -1.0914826270553084 1.0 7909 +Phenotype MP:0003104 acrania -0.0026798072768403625 -1.091763866157097 1.0 7910 +Phenotype MP:0013484 abnormal Paneth cell number -0.002686525310932719 -1.0918856292543953 1.0 7911 +Biological Process GO:0000271 polysaccharide biosynthetic process -0.0027088700184281223 -1.0922906228515483 1.0 7912 +Phenotype MP:0012551 metabolic acidosis -0.0027152896870701326 -1.0924069781314907 1.0 7913 +Biological Process GO:0045161 neuronal ion channel clustering -0.0027266394399876326 -1.0926126902564672 1.0 7914 +Biological Process GO:0072348 sulfur compound transport -0.002755375906332791 -1.0931335332738568 1.0 7915 +Phenotype MP:0003963 abnormal corticosterone level -0.002781146267344381 -1.0936006161930745 1.0 7916 +Phenotype MP:0002279 abnormal diaphragm morphology -0.0028857613980557417 -1.0954967456506721 1.0 7917 +Biological Process GO:0010906 regulation of glucose metabolic process -0.0028912606766646753 -1.0955964190353444 1.0 7918 +Phenotype MP:0005285 decreased unsaturated fatty acids level -0.0028919085601597505 -1.0956081618011544 1.0 7919 +Biological Process GO:0007586 digestion -0.002938263449961731 -1.096448335411411 1.0 7920 +Phenotype MP:0006332 abnormal cochlear potential -0.002943821430105409 -1.0965490727502978 1.0 7921 +Phenotype MP:0010943 abnormal bronchus epithelium morphology -0.00294827014311827 -1.0966297048322418 1.0 7922 +Phenotype MP:0010237 abnormal skeletal muscle weight -0.0029598436110693793 -1.0968394717498897 1.0 7923 +Phenotype MP:0030080 small lower incisors -0.0029690740627696943 -1.097006771941142 1.0 7924 +Phenotype MP:0001328 disorganized retina layers -0.002987945265692016 -1.0973488089248746 1.0 7925 +Biological Process GO:1904936 interneuron migration -0.003052657038445483 -1.0985216975666694 1.0 7926 +Biological Process GO:0006662 glycerol ether metabolic process -0.003117032230125938 -1.0996884857401754 1.0 7927 +Biological Process GO:0046485 ether lipid metabolic process -0.003117032230125938 -1.0996884857401754 1.0 7927 +Phenotype MP:0003011 delayed dark adaptation -0.0031665841683901075 -1.1005866052491304 1.0 7929 +Biological Process GO:0006084 acetyl-CoA metabolic process -0.0031671331590197305 -1.1005965556004582 1.0 7930 +Phenotype MP:0002969 impaired social transmission of food preference -0.003238792285937153 -1.1018953637224758 1.0 7931 +Biological Process GO:0006690 icosanoid metabolic process -0.0032647933507075066 -1.1023666281036866 1.0 7932 +Biological Process GO:1990403 embryonic brain development -0.0032869503031125458 -1.1027682186753383 1.0 7933 +Biological Process GO:0044848 biological phase -0.00330185230843405 -1.1030383147032765 1.0 7934 +Phenotype MP:0005632 decreased circulating aspartate transaminase level -0.0033178988479694027 -1.1033291551973674 1.0 7935 +Phenotype MP:0002237 abnormal nasal cavity morphology -0.003324160742177007 -1.103442650845527 1.0 7936 +Phenotype MP:0010936 decreased airway resistance -0.0033875686396456217 -1.1045919069943944 1.0 7937 +Phenotype MP:0003786 premature aging -0.0034756867540022274 -1.106189031150751 1.0 7938 +Biological Process GO:0097154 GABAergic neuron differentiation -0.003507011605582866 -1.1067567881609754 1.0 7939 +Phenotype MP:0002779 abnormal sex gland secretion -0.0035483267860862977 -1.107505617993389 1.0 7940 +Biological Process GO:0051580 regulation of neurotransmitter uptake -0.003549507910729721 -1.1075270256541572 1.0 7941 +Phenotype MP:0014117 increased pancreatic beta cell apoptosis -0.00360303568943654 -1.1084972065191585 1.0 7942 +Biological Process GO:0042430 indole-containing compound metabolic process -0.00361426020311173 -1.1087006487065554 1.0 7943 +Phenotype MP:0005168 abnormal female meiosis -0.003662331427579213 -1.1095719305580027 1.0 7944 +Biological Process GO:0045910 negative regulation of DNA recombination -0.0036636356865689113 -1.1095955700055078 1.0 7945 +Biological Process GO:0048167 regulation of synaptic plasticity -0.003668293570513237 -1.1096799932710226 1.0 7946 +Phenotype MP:0011458 abnormal urine chloride ion level -0.003759674381482503 -1.1113362531863886 1.0 7947 +Phenotype MP:0011954 shortened PQ interval -0.0037657430213273724 -1.1114462461357753 1.0 7948 +Biological Process GO:0099623 regulation of cardiac muscle cell membrane repolarization -0.0037772061352272512 -1.1116540129071166 1.0 7949 +Phenotype MP:0031085 increased erythrocyte osmotic fragility -0.0037915301702100557 -1.1119136333319812 1.0 7950 +Phenotype MP:0020444 abnormal intestine apoptosis -0.003791712438439232 -1.1119169369091615 1.0 7951 +Phenotype MP:0004452 abnormal pterygoid process morphology -0.0038296237785240272 -1.112604072777778 1.0 7952 +Biological Process GO:0019319 hexose biosynthetic process -0.0038374758714294632 -1.112746390476571 1.0 7953 +Biological Process GO:0008299 isoprenoid biosynthetic process -0.0038658017687047685 -1.1132597920072234 1.0 7954 +Phenotype MP:0020301 short tongue -0.0038830586654514665 -1.1135725699968473 1.0 7955 +Phenotype MP:0001388 abnormal stationary movement -0.003891605822451849 -1.1137274856008994 1.0 7956 +Biological Process GO:0060632 regulation of microtubule-based movement -0.0039050888822538266 -1.1139718635096707 1.0 7957 +Phenotype MP:0012314 enhanced learning -0.003944042872662035 -1.1146778972181957 1.0 7958 +Biological Process GO:0006584 catecholamine metabolic process -0.003980907916816712 -1.1153460691709718 1.0 7959 +Biological Process GO:0009712 catechol-containing compound metabolic process -0.003980907916816712 -1.1153460691709718 1.0 7959 +Phenotype MP:0010160 increased oligodendrocyte number -0.003981129379681869 -1.115350083143516 1.0 7961 +Phenotype MP:0009839 multiflagellated sperm -0.00399915547159968 -1.1156768026501334 1.0 7962 +Phenotype MP:0002901 increased urine phosphate level -0.004092361893626828 -1.1173661514206334 1.0 7963 +Phenotype MP:0000925 abnormal floor plate morphology -0.004119347558062092 -1.117855261484547 1.0 7964 +Biological Process GO:0050000 chromosome localization -0.004170389918577211 -1.118780394614907 1.0 7965 +Phenotype MP:0004413 absent cochlear microphonics -0.004182549870223484 -1.1190007914386044 1.0 7966 +Biological Process GO:0044242 cellular lipid catabolic process -0.004288734361828528 -1.1209253652655766 1.0 7967 +Biological Process GO:2000134 negative regulation of G1/S transition of mitotic cell cycle -0.004296052947580176 -1.1210580132481132 1.0 7968 +Phenotype MP:0020130 abnormal total fat pad weight -0.004304858146426449 -1.1212176058118168 1.0 7969 +Phenotype MP:0030531 abnormal facial skin morphology -0.004345669696389498 -1.121957307435941 1.0 7970 +Biological Process GO:0010831 positive regulation of myotube differentiation -0.0043577823061746734 -1.12217684619736 1.0 7971 +Phenotype MP:0008936 abnormal pituitary gland size -0.004372878846541806 -1.1224504681362064 1.0 7972 +Phenotype MP:0005360 urolithiasis -0.0043862253570325915 -1.122692371114539 1.0 7973 +Phenotype MP:0008974 proportional dwarf -0.004401974379799611 -1.1229778191734752 1.0 7974 +Biological Process GO:0006974 DNA damage response -0.0044343527769994395 -1.1235646714987835 1.0 7975 +Biological Process GO:0007549 sex-chromosome dosage compensation -0.004438801129744041 -1.1236452970509332 1.0 7976 +Biological Process GO:0009048 dosage compensation by inactivation of X chromosome -0.004438801129744041 -1.1236452970509332 1.0 7976 +Phenotype MP:0004073 caudal body truncation -0.00446685791920487 -1.1241538210533462 1.0 7978 +Phenotype MP:0012107 enhanced exercise endurance -0.004493690470766198 -1.124640155975379 1.0 7979 +Biological Process GO:0072524 pyridine-containing compound metabolic process -0.004591547399128704 -1.1264137942936265 1.0 7980 +Biological Process GO:1901987 regulation of cell cycle phase transition -0.004660527285541782 -1.1276640416882453 1.0 7981 +Biological Process GO:1902807 negative regulation of cell cycle G1/S phase transition -0.004729509557813927 -1.1289143323261084 1.0 7982 +Biological Process GO:0051154 negative regulation of striated muscle cell differentiation -0.004757725979208427 -1.129425749627127 1.0 7983 +Biological Process GO:0016311 dephosphorylation -0.004762750731972298 -1.1295168223206078 1.0 7984 +Biological Process GO:0009395 phospholipid catabolic process -0.004809509927223399 -1.1303643238906607 1.0 7985 +Biological Process GO:0050691 regulation of defense response to virus by host -0.004921333054568766 -1.132391096923954 1.0 7986 +Biological Process GO:1903312 negative regulation of mRNA metabolic process -0.004950564196919194 -1.1329209058503777 1.0 7987 +Phenotype MP:0006133 calcified artery -0.004964567481779092 -1.1331747127399303 1.0 7988 +Phenotype MP:0014023 abnormal intestine placement -0.00498620956270468 -1.1335669713633978 1.0 7989 +Phenotype MP:0004343 small scapula -0.004991901133793997 -1.1336701300129075 1.0 7990 +Phenotype MP:0012506 brain atrophy -0.004992238945198846 -1.133676252780728 1.0 7991 +Biological Process GO:0043043 peptide biosynthetic process -0.0050727385048814355 -1.1351352920745652 1.0 7992 +Phenotype MP:0003686 abnormal eye muscle morphology -0.00509264597221204 -1.1354961111547026 1.0 7993 +Biological Process GO:0003254 regulation of membrane depolarization -0.0051208309898092 -1.136006959267834 1.0 7994 +Phenotype MP:0003951 abnormal copper homeostasis -0.005121622435068529 -1.1360213040634681 1.0 7995 +Phenotype MP:0010813 abnormal alveolar lamellar body morphology -0.0051341179286605865 -1.1362477825214694 1.0 7996 +Biological Process GO:0043484 regulation of RNA splicing -0.005182324846019215 -1.1371215237809043 1.0 7997 +Phenotype MP:0020486 abnormal lens topology -0.005186309320174942 -1.1371937416213669 1.0 7998 +Phenotype MP:0005353 abnormal patella morphology -0.0052019416386475115 -1.1374770744370393 1.0 7999 +Biological Process GO:0016445 somatic diversification of immunoglobulins -0.005239996342416786 -1.1381668087453218 1.0 8000 +Biological Process GO:0033151 V(D)J recombination -0.005240141922880026 -1.1381694473636834 1.0 8001 +Phenotype MP:0008259 abnormal optic disk morphology -0.005295905951560043 -1.1391801598364923 1.0 8002 +Biological Process GO:0061484 hematopoietic stem cell homeostasis -0.005319765062650861 -1.1396126017123833 1.0 8003 +Phenotype MP:0020166 abnormal tibialis anterior weight -0.005321675390855152 -1.139647226049773 1.0 8004 +Phenotype MP:0011731 decreased myelin sheath thickness -0.0053353567988250195 -1.1398951989815724 1.0 8005 +Phenotype MP:0009022 abnormal brain meninges morphology -0.005361546349898605 -1.1403698796413797 1.0 8006 +Biological Process GO:0140354 lipid import into cell -0.0053898099948979095 -1.1408821528613036 1.0 8007 +Phenotype MP:0008820 abnormal blood uric acid level -0.00539248802299519 -1.1409306916140538 1.0 8008 +Biological Process GO:0000018 regulation of DNA recombination -0.0054034349917961855 -1.1411291033531 1.0 8009 +Phenotype MP:0004600 abnormal vertebral transverse process morphology -0.005408462469535857 -1.1412202254362516 1.0 8010 +Biological Process GO:1902653 secondary alcohol biosynthetic process -0.005420446804877521 -1.1414374392476432 1.0 8011 +Biological Process GO:0006695 cholesterol biosynthetic process -0.005420446804877521 -1.1414374392476432 1.0 8011 +Phenotype MP:0003120 abnormal tracheal cartilage morphology -0.0054510450297504676 -1.1419920262862224 1.0 8013 +Biological Process GO:0051480 regulation of cytosolic calcium ion concentration -0.0054677882268219236 -1.142295493566392 1.0 8014 +Biological Process GO:0051606 detection of stimulus -0.00549842422746849 -1.1428507652837232 1.0 8015 +Phenotype MP:0004621 lumbar vertebral fusion -0.005540812242199822 -1.1436190400336055 1.0 8016 +Biological Process GO:0042304 regulation of fatty acid biosynthetic process -0.005548363189940231 -1.14375589953324 1.0 8017 +Biological Process GO:0061744 motor behavior -0.005640787144532533 -1.1454310662294769 1.0 8018 +Phenotype MP:0014414 increased depression-related behavior -0.0056432690507119965 -1.1454760503095605 1.0 8019 +Phenotype MP:0002800 abnormal short-term object recognition memory -0.005648750221944221 -1.1455753955014547 1.0 8020 +Biological Process GO:0007588 excretion -0.005688287302129336 -1.1462919976019026 1.0 8021 +Biological Process GO:0006367 transcription initiation at RNA polymerase II promoter -0.005697192407169593 -1.1464534009464764 1.0 8022 +Biological Process GO:0090208 positive regulation of triglyceride metabolic process -0.005707160714610637 -1.146634074633474 1.0 8023 +Phenotype MP:0011062 abnormal outer hair cell kinocilium morphology -0.005720745001638328 -1.1468802872665655 1.0 8024 +Phenotype MP:0006264 decreased systemic arterial systolic blood pressure -0.005735177889713672 -1.1471418806331444 1.0 8025 +Phenotype MP:0004330 abnormal vestibular saccular macula morphology -0.005812046188419462 -1.1485351040085814 1.0 8026 +Biological Process GO:0034587 piRNA processing -0.005868094854425632 -1.1495509754790914 1.0 8027 +Biological Process GO:0170033 L-amino acid metabolic process -0.0059333406448554005 -1.1507335430902668 1.0 8028 +Biological Process GO:1901136 carbohydrate derivative catabolic process -0.005946867545603363 -1.1509787156078921 1.0 8029 +Phenotype MP:0002711 decreased glucagon secretion -0.005948907301456474 -1.1510156857969374 1.0 8030 +Biological Process GO:0060920 cardiac pacemaker cell differentiation -0.005985295791039569 -1.1516752202882372 1.0 8031 +Biological Process GO:0048820 hair follicle maturation -0.0060453716878787755 -1.1527640845558995 1.0 8032 +Phenotype MP:0002696 decreased circulating glucagon level -0.006150901475551418 -1.1546767919979255 1.0 8033 +Phenotype MP:0005655 increased aggression -0.006161146101544279 -1.1548624739064126 1.0 8034 +Biological Process GO:0098764 meiosis I cell cycle phase -0.006207057756971501 -1.1556946139774587 1.0 8035 +Phenotype MP:0009398 abnormal skeletal muscle fiber size -0.0064180477848840845 -1.1595187683274466 1.0 8036 +Biological Process GO:0046165 alcohol biosynthetic process -0.0064283517677374835 -1.1597055260678046 1.0 8037 +Biological Process GO:0098739 import across plasma membrane -0.00643773686498017 -1.1598756291802632 1.0 8038 +Biological Process GO:0072527 pyrimidine-containing compound metabolic process -0.006443910629572169 -1.1599875274958087 1.0 8039 +Biological Process GO:0018958 phenol-containing compound metabolic process -0.00649068013863352 -1.1608352160017217 1.0 8040 +Biological Process GO:0021517 ventral spinal cord development -0.006551185156267847 -1.161931858002633 1.0 8041 +Biological Process GO:0001824 blastocyst development -0.006566957771097837 -1.1622177336632484 1.0 8042 +Phenotype MP:0009869 abnormal descending aorta morphology -0.0065760602811033575 -1.1623827149354813 1.0 8043 +Biological Process GO:0062013 positive regulation of small molecule metabolic process -0.006582478914250345 -1.1624990514472722 1.0 8044 +Biological Process GO:0021871 forebrain regionalization -0.006684341307061636 -1.1643452880510745 1.0 8045 +Phenotype MP:0010571 shortened ST segment -0.0066862019295734765 -1.16437901148219 1.0 8046 +Phenotype MP:0009257 dilated seminiferous tubule -0.006706909141686035 -1.164754325785239 1.0 8047 +Phenotype MP:0009125 decreased brown fat cell lipid droplet size -0.006711187613010372 -1.1648318722687774 1.0 8048 +Phenotype MP:0003194 abnormal frequency of paradoxical sleep -0.006726619217481078 -1.1651115671811283 1.0 8049 +Biological Process GO:0018904 ether metabolic process -0.006742249765903763 -1.1653948679149815 1.0 8050 +Biological Process GO:0010596 negative regulation of endothelial cell migration -0.006758209671574367 -1.1656841381866594 1.0 8051 +Biological Process GO:0021978 telencephalon regionalization -0.006838474574041742 -1.1671389243628532 1.0 8052 +Biological Process GO:0035303 regulation of dephosphorylation -0.006863577945258159 -1.1675939182181856 1.0 8053 +Phenotype MP:0001330 abnormal optic nerve morphology -0.006962423579658816 -1.1693854766463745 1.0 8054 +Phenotype MP:0000198 decreased circulating phosphate level -0.0069995363909447494 -1.1700581393315426 1.0 8055 +Biological Process GO:0006026 aminoglycan catabolic process -0.007001846294774072 -1.1701000059015618 1.0 8056 +Phenotype MP:0001395 bidirectional circling -0.007030980520533525 -1.1706280582331048 1.0 8057 +Phenotype MP:0004730 abnormal circulating gastrin level -0.0070314575776471155 -1.1706367048030595 1.0 8058 +Biological Process GO:0006513 protein monoubiquitination -0.007058252605243842 -1.171122359610331 1.0 8059 +Phenotype MP:0014142 increased body fat mass -0.0070917160333516804 -1.1717288779156279 1.0 8060 +Phenotype MP:0000886 abnormal cerebellar granule layer morphology -0.007095086857844546 -1.171789973472015 1.0 8061 +Biological Process GO:0051100 negative regulation of binding -0.0071025175171455235 -1.1719246527664358 1.0 8062 +Biological Process GO:0010907 positive regulation of glucose metabolic process -0.007125046950871017 -1.1723329944915708 1.0 8063 +Phenotype MP:0031253 lordokyphosis -0.007151337421139603 -1.1728095042927 1.0 8064 +Phenotype MP:0001552 increased circulating triglyceride level -0.007200875318934985 -1.1737073693208138 1.0 8065 +Biological Process GO:0032091 negative regulation of protein binding -0.007206444707318349 -1.1738083134318873 1.0 8066 +Phenotype MP:0009434 paraparesis -0.007227869789947938 -1.1741966390022822 1.0 8067 +Phenotype MP:0009381 abnormal prostate gland dorsolateral lobe morphology -0.007239443268451939 -1.1744064061111994 1.0 8068 +Biological Process GO:0006518 peptide metabolic process -0.007395254831329412 -1.1772304612186908 1.0 8069 +Biological Process GO:0034755 iron ion transmembrane transport -0.007417731738384337 -1.1776378509078564 1.0 8070 +Biological Process GO:0048148 behavioral response to cocaine -0.0074277094124444165 -1.1778186943630524 1.0 8071 +Phenotype MP:0008021 increased blastoma incidence -0.007575802665479525 -1.1805028565644657 1.0 8072 +Biological Process GO:0009127 purine nucleoside monophosphate biosynthetic process -0.0076846893624784585 -1.1824764073531162 1.0 8073 +Biological Process GO:0098581 detection of external biotic stimulus -0.007725137543719507 -1.1832095229878805 1.0 8074 +Biological Process GO:0035115 embryonic forelimb morphogenesis -0.0078106073102135465 -1.1847586463401276 1.0 8075 +Biological Process GO:0050996 positive regulation of lipid catabolic process -0.007818542766578895 -1.1849024749858645 1.0 8076 +Phenotype MP:0003848 brittle hair -0.007857364385366772 -1.1856061094838075 1.0 8077 +Phenotype MP:0004773 abnormal bile composition -0.007873438186331683 -1.1858974440861532 1.0 8078 +Phenotype MP:0000933 abnormal rhombomere morphology -0.007875396328286932 -1.1859329350387358 1.0 8079 +Phenotype MP:0010879 decreased trabecular bone volume -0.007875490000113894 -1.1859346328228826 1.0 8080 +Phenotype MP:0011118 abnormal susceptibility to weight loss -0.007892864346398243 -1.1862495395631625 1.0 8081 +Biological Process GO:0031297 replication fork processing -0.007917953578701953 -1.1867042771533762 1.0 8082 +Phenotype MP:0002574 increased vertical activity -0.007942517890713097 -1.1871495006625687 1.0 8083 +Phenotype MP:0000704 abnormal thymus development -0.00798718153662814 -1.1879590207972506 1.0 8084 +Biological Process GO:0009566 fertilization -0.008003463771705244 -1.1882541332284573 1.0 8085 +Biological Process GO:0002862 negative regulation of inflammatory response to antigenic stimulus -0.008045685759610732 -1.1890193987735227 1.0 8086 +Phenotype MP:0011903 decreased hematopoietic stem cell proliferation -0.008054452059818473 -1.1891782863067601 1.0 8087 +Biological Process GO:0007613 memory -0.008059608703416155 -1.1892717494966583 1.0 8088 +Phenotype MP:0002285 abnormal tracheal ciliated epithelium morphology -0.00807598696588574 -1.1895686024061913 1.0 8089 +Biological Process GO:0043603 amide metabolic process -0.008089836619218804 -1.1898196247533774 1.0 8090 +Phenotype MP:0012316 enhanced conditioning behavior -0.008098646822819688 -1.1899793080273118 1.0 8091 +Biological Process GO:0010669 epithelial structure maintenance -0.008134321659948984 -1.1906259077028645 1.0 8092 +Phenotype MP:0002471 abnormal complement pathway -0.008164955591806411 -1.1911811419237839 1.0 8093 +Phenotype MP:0011665 d-loop transposition of the great arteries -0.00816909389896825 -1.191256147958387 1.0 8094 +Biological Process GO:0003096 renal sodium ion transport -0.00822748941950402 -1.19231455572337 1.0 8095 +Phenotype MP:0011046 abnormal lung tissue damping -0.008237720276893512 -1.1924999880785254 1.0 8096 +Phenotype MP:0005089 decreased double-negative T cell number -0.008291515655896031 -1.1934750191482733 1.0 8097 +Biological Process GO:0031109 microtubule polymerization or depolymerization -0.008345621168027062 -1.194455671322318 1.0 8098 +Biological Process GO:0001885 endothelial cell development -0.008354985602731624 -1.1946253999301812 1.0 8099 +Biological Process GO:0071466 cellular response to xenobiotic stimulus -0.008410023222945595 -1.1956229463869332 1.0 8100 +Biological Process GO:0033119 negative regulation of RNA splicing -0.008434081878480937 -1.19605900496814 1.0 8101 +Biological Process GO:0032088 negative regulation of NF-kappaB transcription factor activity -0.008520321812037546 -1.1976220874527295 1.0 8102 +Biological Process GO:0021516 dorsal spinal cord development -0.008525499929726177 -1.1977159398564645 1.0 8103 +Biological Process GO:0035112 genitalia morphogenesis -0.008640007830441165 -1.1997913738992934 1.0 8104 +Phenotype MP:0006433 abnormal articular cartilage morphology -0.008653874694843244 -1.20004270819385 1.0 8105 +Phenotype MP:0011625 cystolithiasis -0.008674330745473302 -1.2004134702425329 1.0 8106 +Phenotype MP:0002690 akinesia -0.008678801990779084 -1.2004945107180243 1.0 8107 +Biological Process GO:0009168 purine ribonucleoside monophosphate biosynthetic process -0.008682213539382921 -1.2005563443912202 1.0 8108 +Phenotype MP:0010432 common ventricle -0.008742878992552106 -1.2016558942558568 1.0 8109 +Phenotype MP:0002766 situs inversus -0.00880174579332893 -1.2027228438860726 1.0 8110 +Phenotype MP:0030458 abnormal tooth wear -0.00883546667344337 -1.2033340284602956 1.0 8111 +Biological Process GO:0050910 detection of mechanical stimulus involved in sensory perception of sound -0.00887822604891153 -1.204109034053295 1.0 8112 +Phenotype MP:0005633 increased circulating sodium level -0.008887149102348335 -1.2042707627091613 1.0 8113 +Biological Process GO:0048706 embryonic skeletal system development -0.008890232866663794 -1.2043266553541265 1.0 8114 +Phenotype MP:0006262 increased testis tumor incidence -0.008951554124757788 -1.2054380915589884 1.0 8115 +Phenotype MP:0013186 abnormal basilar artery morphology -0.00897108854284756 -1.205792149192193 1.0 8116 +Phenotype MP:0013167 abnormal hindlimb bud morphology -0.009066239450429725 -1.2075167413956045 1.0 8117 +Biological Process GO:0050911 detection of chemical stimulus involved in sensory perception of smell -0.009115000957338415 -1.208400534485741 1.0 8118 +Biological Process GO:0000279 M phase -0.009128912867764072 -1.2086526852309551 1.0 8119 +Biological Process GO:0098762 meiotic cell cycle phase -0.009128912867764072 -1.2086526852309551 1.0 8119 +Biological Process GO:0140718 facultative heterochromatin formation -0.00918989903250389 -1.209758047932151 1.0 8121 +Biological Process GO:0003356 regulation of cilium beat frequency -0.009199962128526362 -1.209940439644259 1.0 8122 +Biological Process GO:0089718 amino acid import across plasma membrane -0.009222382405072116 -1.2103468029161568 1.0 8123 +Phenotype MP:0000400 abnormal awl hair morphology -0.009240322558686342 -1.210671964807276 1.0 8124 +Biological Process GO:0002076 osteoblast development -0.00924728343200476 -1.2107981293196166 1.0 8125 +Biological Process GO:0071300 cellular response to retinoic acid -0.009258982421525452 -1.2110101712919725 1.0 8126 +Biological Process GO:0046496 nicotinamide nucleotide metabolic process -0.00927480041810802 -1.2112968694882702 1.0 8127 +Biological Process GO:0019362 pyridine nucleotide metabolic process -0.00927480041810802 -1.2112968694882702 1.0 8127 +Phenotype MP:0010490 abnormal inferior vena cava valve morphology -0.00930256838818977 -1.2118001586940634 1.0 8129 +Phenotype MP:0003378 early sexual maturation -0.009308866446184005 -1.211914309804016 1.0 8130 +Biological Process GO:0002063 chondrocyte development -0.009339763371704501 -1.2124743107353368 1.0 8131 +Biological Process GO:0099612 protein localization to axon -0.009347663736061662 -1.2126175033450628 1.0 8132 +Biological Process GO:0019369 arachidonic acid metabolic process -0.009451765218098762 -1.2145043230175891 1.0 8133 +Biological Process GO:0007018 microtubule-based movement -0.009484083101558571 -1.215090078542805 1.0 8134 +Biological Process GO:0050974 detection of mechanical stimulus involved in sensory perception -0.009524304388667915 -1.215819081764346 1.0 8135 +Phenotype MP:0009960 abnormal cerebellum anterior lobe morphology -0.009545567062859917 -1.2162044637125269 1.0 8136 +Phenotype MP:0004000 impaired passive avoidance behavior -0.009580272279436697 -1.2168334891989558 1.0 8137 +Phenotype MP:0002958 cerebral aqueductal stenosis -0.00961740760332197 -1.217506559920729 1.0 8138 +Biological Process GO:0048705 skeletal system morphogenesis -0.009641137755108886 -1.2179366644336278 1.0 8139 +Biological Process GO:0045834 positive regulation of lipid metabolic process -0.009806084121054104 -1.220926286118997 1.0 8140 +Biological Process GO:0006766 vitamin metabolic process -0.009814550910098196 -1.2210797450690418 1.0 8141 +Phenotype MP:0009877 exostosis -0.009896537741142186 -1.222565740875007 1.0 8142 +Biological Process GO:2001014 regulation of skeletal muscle cell differentiation -0.009927281947416988 -1.2231229737988845 1.0 8143 +Phenotype MP:0003050 abnormal sacral vertebrae morphology -0.009960987507093844 -1.223733880693074 1.0 8144 +Biological Process GO:0051302 regulation of cell division -0.009977070928204546 -1.2240253896587425 1.0 8145 +Biological Process GO:0010866 regulation of triglyceride biosynthetic process -0.00999611785386767 -1.2243706115839166 1.0 8146 +Phenotype MP:0000085 large anterior fontanelle -0.010099182020000042 -1.2262386301018642 1.0 8147 +Phenotype MP:0030363 abnormal anterior fontanelle morphology -0.010099182020000042 -1.2262386301018642 1.0 8147 +Phenotype MP:0008868 abnormal granulosa cell morphology -0.01017463885626868 -1.227606270987587 1.0 8149 +Biological Process GO:0170039 proteinogenic amino acid metabolic process -0.010220255617874097 -1.228433066163888 1.0 8150 +Biological Process GO:0050829 defense response to Gram-negative bacterium -0.01028573314087411 -1.2296198338840698 1.0 8151 +Biological Process GO:0061844 antimicrobial humoral immune response mediated by antimicrobial peptide -0.01030083145025018 -1.229893487885869 1.0 8152 +Biological Process GO:0060306 regulation of membrane repolarization -0.010300866732547265 -1.2298941273708304 1.0 8153 +Biological Process GO:0019233 sensory perception of pain -0.010319721710038365 -1.230235870271691 1.0 8154 +Phenotype MP:0030808 abnormal hindlimb joint morphology -0.010345088644745148 -1.2306956411654368 1.0 8155 +Biological Process GO:0030166 proteoglycan biosynthetic process -0.010400579514367347 -1.231701402681987 1.0 8156 +Phenotype MP:0002328 abnormal airway resistance -0.010412676074680327 -1.231920650549758 1.0 8157 +Biological Process GO:0014883 transition between fast and slow fiber -0.010452863580555416 -1.2326490414928175 1.0 8158 +Biological Process GO:0060438 trachea development -0.010462527170876035 -1.2328241922396403 1.0 8159 +Phenotype MP:0003018 abnormal circulating chloride level -0.010478108155586474 -1.2331065946405833 1.0 8160 +Phenotype MP:0004384 small interparietal bone -0.01053258694158754 -1.2340940123329225 1.0 8161 +Biological Process GO:1902600 proton transmembrane transport -0.01054336143652268 -1.2342892980157711 1.0 8162 +Phenotype MP:0004844 abnormal vestibuloocular reflex -0.01055579022498443 -1.234514567455902 1.0 8163 +Phenotype MP:0001282 short vibrissae -0.01057704578886054 -1.2348998205309523 1.0 8164 +Phenotype MP:0010239 decreased skeletal muscle weight -0.010662942158390143 -1.2364566759825326 1.0 8165 +Biological Process GO:0032526 response to retinoic acid -0.010672219784555237 -1.2366248312020367 1.0 8166 +Phenotype MP:0004573 absent limb buds -0.010675198451748136 -1.2366788189815332 1.0 8167 +Biological Process GO:0035561 regulation of chromatin binding -0.01070603661011349 -1.237237754769282 1.0 8168 +Phenotype MP:0010440 anomalous pulmonary venous connection -0.01071265212227579 -1.2373576596759885 1.0 8169 +Phenotype MP:0001408 stereotypic behavior -0.010745344998099204 -1.23795021186687 1.0 8170 +Phenotype MP:0006198 enophthalmos -0.01076853599721761 -1.2383705443396253 1.0 8171 +Phenotype MP:0030875 abnormal cartilaginous joint morphology -0.010771210535219566 -1.238419019835058 1.0 8172 +Biological Process GO:0031214 biomineral tissue development -0.01077464974213882 -1.2384813548099896 1.0 8173 +Phenotype MP:0005646 abnormal pituitary gland physiology -0.010776579736072156 -1.2385163355849989 1.0 8174 +Biological Process GO:0032507 maintenance of protein location in cell -0.010781167545443893 -1.2385994887621392 1.0 8175 +Phenotype MP:0008547 abnormal neocortex morphology -0.010794951966483168 -1.238849328786338 1.0 8176 +Phenotype MP:0000087 absent mandible -0.010807458601638231 -1.2390760091830617 1.0 8177 +Phenotype MP:0009349 increased urine pH -0.010809420195378339 -1.239111562698592 1.0 8178 +Phenotype MP:0010028 aciduria -0.01083884415546632 -1.2396448664100401 1.0 8179 +Phenotype MP:0003233 prolonged QT interval -0.010892159922553768 -1.2406112046045394 1.0 8180 +Biological Process GO:0021520 spinal cord motor neuron cell fate specification -0.010981205850823406 -1.2422251452125863 1.0 8181 +Phenotype MP:0010560 intraventricular block -0.010981324460240804 -1.2422272949858433 1.0 8182 +Phenotype MP:0010636 bundle branch block -0.010981324460240804 -1.2422272949858433 1.0 8182 +Biological Process GO:0030539 male genitalia development -0.01102570421189375 -1.2430316695907193 1.0 8184 +Biological Process GO:0016202 regulation of striated muscle tissue development -0.011073270967657756 -1.2438938080423296 1.0 8185 +Biological Process GO:0060348 bone development -0.01109109090006366 -1.2442167909467858 1.0 8186 +Biological Process GO:0098754 detoxification -0.011092988027904926 -1.2442511760300925 1.0 8187 +Phenotype MP:0008922 abnormal cervical rib -0.01111454482888008 -1.2446418889705881 1.0 8188 +Biological Process GO:0007625 grooming behavior -0.011143068762235586 -1.245158879867738 1.0 8189 +Biological Process GO:0010832 negative regulation of myotube differentiation -0.011233335897827379 -1.246794954627524 1.0 8190 +Biological Process GO:0036302 atrioventricular canal development -0.01126111348285086 -1.2472984181023177 1.0 8191 +Biological Process GO:0060795 cell fate commitment involved in formation of primary germ layer -0.011307209600453616 -1.2481339015154067 1.0 8192 +Phenotype MP:0008959 abnormal spongiotrophoblast cell morphology -0.011311228372477666 -1.2482067409982458 1.0 8193 +Phenotype MP:0002765 short fibula -0.011326319108026617 -1.248480257725861 1.0 8194 +Biological Process GO:0050966 detection of mechanical stimulus involved in sensory perception of pain -0.011336178926650398 -1.2486589650735647 1.0 8195 +Biological Process GO:0051873 killing by host of symbiont cells -0.011336611963986831 -1.2486668137933843 1.0 8196 +Phenotype MP:0005205 abnormal eye anterior chamber morphology -0.011468012575771791 -1.2510484250293274 1.0 8197 +Phenotype MP:0011996 abnormal retina inner nuclear layer thickness -0.011495480590292484 -1.2515462775973092 1.0 8198 +Phenotype MP:0005470 increased thyroxine level -0.011547824441565435 -1.2524950000014956 1.0 8199 +Phenotype MP:0020422 decreased freezing behavior -0.011591256078487433 -1.2532821902061964 1.0 8200 +Biological Process GO:0010575 positive regulation of vascular endothelial growth factor production -0.011592046810814383 -1.253296522080066 1.0 8201 +Biological Process GO:0090335 regulation of brown fat cell differentiation -0.011609388072932214 -1.253610829176085 1.0 8202 +Biological Process GO:0045026 plasma membrane fusion -0.011627869663293655 -1.2539458045058418 1.0 8203 +Phenotype MP:0003139 patent ductus arteriosus -0.011652462499739391 -1.2543915450150163 1.0 8204 +Biological Process GO:0071625 vocalization behavior -0.01165818686739617 -1.2544952980961082 1.0 8205 +Biological Process GO:0044725 epigenetic programming in the zygotic pronuclei -0.011663186836564865 -1.254585921591614 1.0 8206 +Phenotype MP:0021086 decreased DNA replication -0.011676617601871886 -1.254829351672555 1.0 8207 +Phenotype MP:0000805 abnormal visual cortex morphology -0.011686152787617976 -1.2550021751107505 1.0 8208 +Phenotype MP:0030131 abnormal periodontium morphology -0.01170991992203696 -1.2554329499268606 1.0 8209 +Biological Process GO:0046785 microtubule polymerization -0.011754034266277857 -1.2562325140725916 1.0 8210 +Biological Process GO:0043604 amide biosynthetic process -0.011803353940411876 -1.2571264238381175 1.0 8211 +Biological Process GO:0009064 glutamine family amino acid metabolic process -0.011806443289865687 -1.2571824177126587 1.0 8212 +Biological Process GO:0015872 dopamine transport -0.011909483692971623 -1.2590500055302467 1.0 8213 +Biological Process GO:0031122 cytoplasmic microtubule organization -0.011948057055748418 -1.259749140434943 1.0 8214 +Phenotype MP:0031046 increased susceptibility to Orthomyxoviridae infection induced morbidity/mortality -0.01195325342800313 -1.2598433236992357 1.0 8215 +Biological Process GO:0009250 glucan biosynthetic process -0.011997623771117683 -1.260647527776133 1.0 8216 +Biological Process GO:0005978 glycogen biosynthetic process -0.011997623771117683 -1.260647527776133 1.0 8216 +Biological Process GO:0009190 cyclic nucleotide biosynthetic process -0.011999445764340644 -1.2606805510586936 1.0 8218 +Biological Process GO:0007270 neuron-neuron synaptic transmission -0.012075789479388144 -1.262064266454542 1.0 8219 +Phenotype MP:0000128 growth retardation of molars -0.012110033078528648 -1.2626849252122474 1.0 8220 +Biological Process GO:0009263 deoxyribonucleotide biosynthetic process -0.01213904512098507 -1.2632107629945322 1.0 8221 +Phenotype MP:0009402 decreased skeletal muscle fiber diameter -0.012158663128952307 -1.2635663356784557 1.0 8222 +Biological Process GO:0010770 positive regulation of cell morphogenesis -0.012161840204268914 -1.2636239195676682 1.0 8223 +Phenotype MP:0008099 abnormal plasma cell differentiation -0.012171962437893091 -1.263807383137622 1.0 8224 +Phenotype MP:0008885 increased enterocyte apoptosis -0.012189300418208537 -1.2641216307515935 1.0 8225 +Biological Process GO:0141188 nucleic acid catabolic process -0.012224163920918185 -1.264753525144243 1.0 8226 +Phenotype MP:0020083 decreased hippocampus volume -0.012236610757730082 -1.2649791217073068 1.0 8227 +Phenotype MP:0009647 decreased fertilization frequency -0.012282512217791641 -1.2658110769892783 1.0 8228 +Biological Process GO:0051899 membrane depolarization -0.012363853599801633 -1.2672853741535803 1.0 8229 +Phenotype MP:0004746 abnormal cochlear IHC afferent innervation pattern -0.01243002295009088 -1.2684846811125299 1.0 8230 +Biological Process GO:0090220 chromosome localization to nuclear envelope involved in homologous chromosome segregation -0.012543947446911119 -1.2705495410701095 1.0 8231 +Biological Process GO:0034397 telomere localization -0.012543947446911119 -1.2705495410701095 1.0 8231 +Biological Process GO:0045141 meiotic telomere clustering -0.012543947446911119 -1.2705495410701095 1.0 8231 +Phenotype MP:0014059 abnormal photoreceptor connecting cilium morphology -0.01259752753599308 -1.2715206700507664 1.0 8234 +Phenotype MP:0009148 pancreas necrosis -0.012598422182203084 -1.2715368853441125 1.0 8235 +Phenotype MP:0011628 increased mitochondrial number -0.012661514288617282 -1.2726804178398459 1.0 8236 +Biological Process GO:0015813 L-glutamate transmembrane transport -0.012679598354489618 -1.273008188113424 1.0 8237 +Phenotype MP:0001746 abnormal pituitary secretion -0.012684824248593074 -1.2731029064556414 1.0 8238 +Phenotype MP:0009762 abnormal mitotic spindle assembly checkpoint -0.012711941379217828 -1.2735943993193743 1.0 8239 +Phenotype MP:0000650 mesocardia -0.012767342854067776 -1.2745985405725855 1.0 8240 +Phenotype MP:0014185 cerebellum atrophy -0.012829582327346545 -1.2757266192540033 1.0 8241 +Phenotype MP:0014184 hindbrain atrophy -0.012829582327346545 -1.2757266192540033 1.0 8241 +Biological Process GO:0010574 regulation of vascular endothelial growth factor production -0.012887293144587142 -1.2767726169012639 1.0 8243 +Phenotype MP:0005573 increased pulmonary respiratory rate -0.012917110810536592 -1.277313056456987 1.0 8244 +Phenotype MP:0004098 abnormal cerebellar granule cell morphology -0.012948788407617373 -1.2778872069126845 1.0 8245 +Phenotype MP:0010736 abnormal extraembryonic ectoderm morphology -0.012990277632644043 -1.2786391912691637 1.0 8246 +Phenotype MP:0003582 abnormal ovary development -0.013020942467341534 -1.2791949855982143 1.0 8247 +Biological Process GO:0034308 primary alcohol metabolic process -0.013067387419780863 -1.2800367915767388 1.0 8248 +Phenotype MP:0001244 thin dermal layer -0.013076102690027236 -1.2801947542015781 1.0 8249 +Biological Process GO:0044782 cilium organization -0.013092243968779282 -1.280487311826053 1.0 8250 +Biological Process GO:0006177 GMP biosynthetic process -0.013131405257170492 -1.2811971027713123 1.0 8251 +Phenotype MP:0013933 short Meckel's cartilage -0.013174923043572928 -1.281985854419052 1.0 8252 +Phenotype MP:0009569 abnormal left lung morphology -0.01318484344010007 -1.282165659729797 1.0 8253 +Phenotype MP:0004907 abnormal seminal vesicle size -0.013187316608039179 -1.2822104854309269 1.0 8254 +Phenotype MP:0006089 abnormal vestibular saccule morphology -0.013193482171391047 -1.282322235100546 1.0 8255 +Phenotype MP:0006415 absent testes -0.013202741037996013 -1.2824900503065708 1.0 8256 +Biological Process GO:0141137 positive regulation of gene expression, epigenetic -0.013255134297985638 -1.283439668234402 1.0 8257 +Biological Process GO:0045815 transcription initiation-coupled chromatin remodeling -0.013255134297985638 -1.283439668234402 1.0 8257 +Phenotype MP:0011436 decreased urine magnesium level -0.013284500596836946 -1.2839719268468412 1.0 8259 +Biological Process GO:0050906 detection of stimulus involved in sensory perception -0.013293031711441472 -1.2841265516855027 1.0 8260 +Phenotype MP:0002986 decreased urine calcium level -0.01338235841893054 -1.285745581363796 1.0 8261 +Biological Process GO:0060074 synapse maturation -0.013424826924473221 -1.2865153149944102 1.0 8262 +Biological Process GO:1902459 positive regulation of stem cell population maintenance -0.013481064546875032 -1.2875346112638526 1.0 8263 +Phenotype MP:0004463 basisphenoid bone foramen -0.013565369303728536 -1.2890626190367107 1.0 8264 +Biological Process GO:0044272 sulfur compound biosynthetic process -0.013641009568091 -1.2904335845219412 1.0 8265 +Biological Process GO:0051984 positive regulation of chromosome segregation -0.013646729180191164 -1.2905372514094688 1.0 8266 +Biological Process GO:0060767 epithelial cell proliferation involved in prostate gland development -0.013654762857911118 -1.2906828602986808 1.0 8267 +Phenotype MP:0020869 immotile sperm -0.013666202352841106 -1.2908901989806603 1.0 8268 +Phenotype MP:0011638 abnormal mitochondrial chromosome morphology -0.013813921388466266 -1.2935675785622964 1.0 8269 +Phenotype MP:0030989 decreased spongiotrophoblast cell number -0.013849065893352108 -1.2942045660662416 1.0 8270 +Biological Process GO:0006520 amino acid metabolic process -0.013920104142164824 -1.295492120890042 1.0 8271 +Phenotype MP:0009914 abnormal hyoid bone lesser horn morphology -0.01399133499494365 -1.2967831666243002 1.0 8272 +Biological Process GO:0002230 positive regulation of defense response to virus by host -0.014090679678419926 -1.298583770222596 1.0 8273 +Phenotype MP:0004246 abnormal extensor digitorum longus morphology -0.014163262672405086 -1.2998993232604794 1.0 8274 +Biological Process GO:0033045 regulation of sister chromatid segregation -0.014180605633146381 -1.3002136611437276 1.0 8275 +Biological Process GO:0003418 growth plate cartilage chondrocyte differentiation -0.014194102999699698 -1.3004582983596609 1.0 8276 +Phenotype MP:0009838 abnormal sperm axoneme morphology -0.014208350568039707 -1.3007165328410875 1.0 8277 +Phenotype MP:0008884 abnormal enterocyte apoptosis -0.014380180044465618 -1.3038309096020715 1.0 8278 +Phenotype MP:0012289 abnormal non-rapid eye movement sleep pattern -0.014430096901345557 -1.304735643191918 1.0 8279 +Biological Process GO:0046173 polyol biosynthetic process -0.014478267108164689 -1.3056087190797674 1.0 8280 +Phenotype MP:0006020 decreased tympanic ring size -0.01448124476357937 -1.305662688520975 1.0 8281 +Biological Process GO:0071825 protein-lipid complex organization -0.014528512519339065 -1.306519407654059 1.0 8282 +Biological Process GO:1902019 regulation of cilium-dependent cell motility -0.01454781339710065 -1.306869232412986 1.0 8283 +Biological Process GO:0060295 regulation of cilium movement involved in cell motility -0.01454781339710065 -1.306869232412986 1.0 8283 +Phenotype MP:0005283 increased unsaturated fatty acids level -0.014549746375893235 -1.3069042672880047 1.0 8285 +Phenotype MP:0002650 abnormal ameloblast morphology -0.014601111432894331 -1.3078352492311396 1.0 8286 +Phenotype MP:0009453 enhanced contextual conditioning behavior -0.014622895915478384 -1.3082300888577334 1.0 8287 +Phenotype MP:0030493 abnormal tooth root morphology -0.014645911872462891 -1.3086472487249188 1.0 8288 +Biological Process GO:0035304 regulation of protein dephosphorylation -0.014693368974018295 -1.3095073997147375 1.0 8289 +Phenotype MP:0009458 abnormal skeletal muscle size -0.014715491336145137 -1.309908363344139 1.0 8290 +Phenotype MP:0011617 abnormal habituation -0.014720071697595039 -1.3099913815291049 1.0 8291 +Phenotype MP:0001776 abnormal circulating sodium level -0.014807504681851658 -1.3115760878319824 1.0 8292 +Biological Process GO:0007379 segment specification -0.014868060755445445 -1.3126736552125025 1.0 8293 +Phenotype MP:0004292 abnormal spiral ligament fibrocyte morphology -0.0148740812074859 -1.312782774767048 1.0 8294 +Phenotype MP:0004434 abnormal cochlear outer hair cell physiology -0.014969487903334189 -1.3145120030844042 1.0 8295 +Biological Process GO:0032989 cellular anatomical entity morphogenesis -0.014972200667632274 -1.314561171424224 1.0 8296 +Biological Process GO:0010927 cellular component assembly involved in morphogenesis -0.014972200667632274 -1.314561171424224 1.0 8296 +Phenotype MP:0003245 abnormal GABAergic neuron morphology -0.014993534322999214 -1.3149478398927759 1.0 8298 +Biological Process GO:0009312 oligosaccharide biosynthetic process -0.015007420393823967 -1.3151995223001107 1.0 8299 +Phenotype MP:0004912 absent mandibular coronoid process -0.015092053657854487 -1.3167334842034197 1.0 8300 +Biological Process GO:0001573 ganglioside metabolic process -0.015210615098217639 -1.318882387885699 1.0 8301 +Phenotype MP:0003017 decreased circulating bicarbonate level -0.015280910428585592 -1.3201564774532013 1.0 8302 +Phenotype MP:0002966 decreased circulating alkaline phosphatase level -0.01529855188118967 -1.3204762254450066 1.0 8303 +Biological Process GO:0031123 RNA 3'-end processing -0.015347245447124847 -1.3213587871178483 1.0 8304 +Phenotype MP:0003971 abnormal thyroid-stimulating hormone level -0.015367751129822249 -1.3217304487383645 1.0 8305 +Phenotype MP:0011918 abnormal PQ interval -0.015370321659088804 -1.3217770390951398 1.0 8306 +Phenotype MP:0005267 abnormal olfactory cortex morphology -0.015422034869340573 -1.3227143312500944 1.0 8307 +Phenotype MP:0009451 abnormal chromosomal synapsis -0.015443512923489111 -1.3231036169192514 1.0 8308 +Phenotype MP:0002817 abnormal tooth mineralization -0.015472550209733926 -1.3236299122404263 1.0 8309 +Phenotype MP:0003083 abnormal tibialis anterior morphology -0.015477171039172566 -1.323713663900034 1.0 8310 +Phenotype MP:0030450 abnormal enamel mineralization -0.015497073695043717 -1.3240743957733787 1.0 8311 +Biological Process GO:0006833 water transport -0.015500577486059264 -1.3241379013228405 1.0 8312 +Phenotype MP:0002734 abnormal mechanical nociception -0.015550424234892057 -1.3250413642175924 1.0 8313 +Phenotype MP:0004405 absent cochlear hair cells -0.015562653895988987 -1.3252630245118981 1.0 8314 +Phenotype MP:0004559 small allantois -0.015596587314951726 -1.3258780613125478 1.0 8315 +Biological Process GO:0021542 dentate gyrus development -0.015625753507068074 -1.3264066930282634 1.0 8316 +Biological Process GO:0010880 regulation of release of sequestered calcium ion into cytosol by sarcoplasmic reticulum -0.0156483065398203 -1.3268154624812944 1.0 8317 +Phenotype MP:0003350 increased circulating levels of thyroid hormone -0.01566872139054265 -1.3271854777894425 1.0 8318 +Phenotype MP:0004443 absent supraoccipital bone -0.01567202030347059 -1.3272452699623165 1.0 8319 +Biological Process GO:0090336 positive regulation of brown fat cell differentiation -0.015775603955230588 -1.329122704059011 1.0 8320 +Biological Process GO:0051937 catecholamine transport -0.015794600242698964 -1.329467008176483 1.0 8321 +Biological Process GO:0046549 retinal cone cell development -0.015881513548011705 -1.3310422953967929 1.0 8322 +Phenotype MP:0003020 decreased circulating chloride level -0.016025228612093434 -1.3336471037515016 1.0 8323 +Phenotype MP:0010117 abnormal lateral plate mesoderm morphology -0.016031504146246656 -1.333760846621096 1.0 8324 +Biological Process GO:0140053 mitochondrial gene expression -0.0160910692514864 -1.3348404528876272 1.0 8325 +Biological Process GO:0009311 oligosaccharide metabolic process -0.016121345343451887 -1.3353892013281858 1.0 8326 +Phenotype MP:0004842 abnormal large intestine crypts of Lieberkuhn morphology -0.016203438259783542 -1.3368771199099256 1.0 8327 +Biological Process GO:0062149 detection of stimulus involved in sensory perception of pain -0.01624776299022046 -1.3376804972656677 1.0 8328 +Biological Process GO:0090322 regulation of superoxide metabolic process -0.016282121397525495 -1.3383032368996406 1.0 8329 +Biological Process GO:1901605 alpha-amino acid metabolic process -0.016353628276773335 -1.3395992855614427 1.0 8330 +Phenotype MP:0004604 abnormal vertebral pedicle morphology -0.016355535555402367 -1.3396338546258577 1.0 8331 +Phenotype MP:0020420 abnormal freezing behavior -0.016420958673244 -1.340819636262834 1.0 8332 +Phenotype MP:0020165 abnormal soleus weight -0.016559372056655697 -1.34332835265814 1.0 8333 +Phenotype MP:0005571 decreased lactate dehydrogenase level -0.016607245742403576 -1.3441960541576563 1.0 8334 +Biological Process GO:0019674 NAD metabolic process -0.016608566396943303 -1.3442199907714047 1.0 8335 +Phenotype MP:0002767 situs ambiguus -0.016664450182440005 -1.3452328738138657 1.0 8336 +Phenotype MP:0002576 abnormal enamel morphology -0.016675083425175208 -1.3454255993273063 1.0 8337 +Biological Process GO:0009584 detection of visible light -0.016684186414982705 -1.345590589295859 1.0 8338 +Phenotype MP:0011493 double ureter -0.016775226959943268 -1.3472406819541738 1.0 8339 +Biological Process GO:0007062 sister chromatid cohesion -0.01680555097938119 -1.3477902990711055 1.0 8340 +Phenotype MP:0014449 decreased enzyme/conezyme level -0.016908172310163394 -1.3496502912820878 1.0 8341 +Phenotype MP:0002797 increased thigmotaxis -0.016958023650785137 -1.3505538374021457 1.0 8342 +Biological Process GO:0002200 somatic diversification of immune receptors -0.01708295967923812 -1.3528182792878858 1.0 8343 +Biological Process GO:0009954 proximal/distal pattern formation -0.01712361044396027 -1.353555066709929 1.0 8344 +Biological Process GO:0032536 regulation of cell projection size -0.017200215336532265 -1.3549435158990106 1.0 8345 +Phenotype MP:0030268 agnathia -0.017325137192467643 -1.3572077009105497 1.0 8346 +Phenotype MP:0009234 absent sperm head -0.017399428702032926 -1.35855422047018 1.0 8347 +Phenotype MP:0005548 retina pigment epithelium atrophy -0.017456050472403062 -1.359580479348892 1.0 8348 +Phenotype MP:0008149 abnormal costovertebral joint morphology -0.017459647269688183 -1.359645670619399 1.0 8349 +Phenotype MP:0002577 reduced enamel thickness -0.017526814574753136 -1.360863065319908 1.0 8350 +Biological Process GO:0043267 negative regulation of potassium ion transport -0.017561064140068083 -1.3614838322133966 1.0 8351 +Biological Process GO:0018198 peptidyl-cysteine modification -0.017697035933327054 -1.3639482952489785 1.0 8352 +Phenotype MP:0003810 abnormal hair cuticle -0.017783411839005447 -1.365513842202558 1.0 8353 +Phenotype MP:0000470 abnormal stomach morphology -0.017828379837979025 -1.3663288786788614 1.0 8354 +Biological Process GO:0071277 cellular response to calcium ion -0.017927349702882456 -1.3681226887614166 1.0 8355 +Phenotype MP:0004173 abnormal intervertebral disk morphology -0.018006694579053573 -1.3695607996350012 1.0 8356 +Biological Process GO:1905038 regulation of membrane lipid metabolic process -0.018079051135837743 -1.3708722485414442 1.0 8357 +Phenotype MP:0011616 abnormal nonassociative learning -0.018119435302022868 -1.3716042039154275 1.0 8358 +Biological Process GO:0031048 regulatory ncRNA-mediated heterochromatin formation -0.018122790432981484 -1.3716650150294745 1.0 8359 +Phenotype MP:0010439 abnormal hepatic vein morphology -0.018235084232188115 -1.373700318901232 1.0 8360 +Phenotype MP:0004635 short metatarsal bones -0.01823906614290771 -1.3737724902798998 1.0 8361 +Biological Process GO:0010469 regulation of signaling receptor activity -0.018270455572717337 -1.3743414177583106 1.0 8362 +Phenotype MP:0031477 vein stenosis -0.01829706201887915 -1.3748236545627417 1.0 8363 +Phenotype MP:0013852 abnormal Mullerian duct topology -0.018407360955880137 -1.3768228019343234 1.0 8364 +Phenotype MP:0010068 decreased red blood cell distribution width -0.01854983335947802 -1.379405087302795 1.0 8365 +Phenotype MP:0011667 double outlet right ventricle with atrioventricular septal defect -0.01867670110273356 -1.3817045411539732 1.0 8366 +Phenotype MP:0001442 decreased grooming behavior -0.01873051344374388 -1.3826798796569044 1.0 8367 +Phenotype MP:0004507 abnormal ischium morphology -0.018732730554272603 -1.3827200643659008 1.0 8368 +Phenotype MP:0004143 muscle hypertonia -0.01873659428568475 -1.382790093766973 1.0 8369 +Phenotype MP:0012029 abnormal electroretinogram waveform feature -0.01877703619535942 -1.383523095730783 1.0 8370 +Phenotype MP:0009594 abnormal corneocyte envelope morphology -0.018790263567688648 -1.3837628393524706 1.0 8371 +Biological Process GO:0014070 response to organic cyclic compound -0.018813858451758314 -1.3841904921635781 1.0 8372 +Biological Process GO:2000035 regulation of stem cell division -0.018861638491341592 -1.3850564963440728 1.0 8373 +Phenotype MP:0003649 decreased heart right ventricle size -0.018866326257436672 -1.385141461217918 1.0 8374 +Phenotype MP:0008804 abnormal circulating amylase level -0.018882123061178646 -1.3854277752979882 1.0 8375 +Phenotype MP:0005192 increased motor neuron number -0.018925835130040314 -1.3862200482785558 1.0 8376 +Phenotype MP:0010134 decreased DN3 thymocyte number -0.01894879384650383 -1.3866361706721244 1.0 8377 +Biological Process GO:0030002 intracellular monoatomic anion homeostasis -0.019013635949482577 -1.387811421524602 1.0 8378 +Biological Process GO:0030282 bone mineralization -0.019024736879137194 -1.3880126237750003 1.0 8379 +Phenotype MP:0013512 abnormal memory-marker CD4-negative NK T cell number -0.01902862846767195 -1.388083158081151 1.0 8380 +Phenotype MP:0031356 abnormal outer dense fiber morphology -0.019062050301559497 -1.3886889224990724 1.0 8381 +Biological Process GO:1900271 regulation of long-term synaptic potentiation -0.019146520445950443 -1.3902199278897658 1.0 8382 +Phenotype MP:0003883 enlarged stomach -0.0192260652104419 -1.3916616617013506 1.0 8383 +Biological Process GO:0050820 positive regulation of coagulation -0.019247982528417307 -1.3920589089442887 1.0 8384 +Biological Process GO:0072329 monocarboxylic acid catabolic process -0.019410902869123392 -1.395011809305394 1.0 8385 +Phenotype MP:0008935 decreased mean platelet volume -0.019426454151832306 -1.395293673363177 1.0 8386 +Phenotype MP:0010225 abnormal quadriceps morphology -0.01944381808283402 -1.395608391328429 1.0 8387 +Biological Process GO:0044774 mitotic DNA integrity checkpoint signaling -0.019462924063534448 -1.3959546836149848 1.0 8388 +Biological Process GO:0044773 mitotic DNA damage checkpoint signaling -0.019462924063534448 -1.3959546836149848 1.0 8388 +Phenotype MP:0003197 nephrocalcinosis -0.019484888820734625 -1.3963527906848994 1.0 8390 +Phenotype MP:0011250 abdominal situs ambiguus -0.019549698214919253 -1.39752744869667 1.0 8391 +Phenotype MP:0008550 abnormal circulating interferon-beta level -0.01956249822089151 -1.3977594463839682 1.0 8392 +Biological Process GO:1902750 negative regulation of cell cycle G2/M phase transition -0.01958794720628121 -1.3982207044308228 1.0 8393 +Biological Process GO:0010972 negative regulation of G2/M transition of mitotic cell cycle -0.01958794720628121 -1.3982207044308228 1.0 8393 +Biological Process GO:0032288 myelin assembly -0.019605964087478167 -1.398547256994867 1.0 8395 +Biological Process GO:0009112 nucleobase metabolic process -0.019614490449538113 -1.3987017956945567 1.0 8396 +Phenotype MP:0020190 abnormal lung adenoma incidence -0.019669034501077265 -1.3996903963124296 1.0 8397 +Phenotype MP:0002048 increased lung adenoma incidence -0.019669034501077265 -1.3996903963124296 1.0 8397 +Biological Process GO:0141194 siRNA-mediated heterochromatin formation -0.019669677015842213 -1.3997020417710213 1.0 8399 +Biological Process GO:0141007 siRNA-mediated retrotransposon silencing by heterochromatin formation -0.019669677015842213 -1.3997020417710213 1.0 8399 +Phenotype MP:0010743 delayed cranial suture closure -0.019687621114142795 -1.4000272751588343 1.0 8401 +Biological Process GO:1901991 negative regulation of mitotic cell cycle phase transition -0.0196883462665165 -1.4000404184084547 1.0 8402 +Phenotype MP:0005309 increased circulating ammonia level -0.019814009445335623 -1.4023180397570503 1.0 8403 +Phenotype MP:0005308 abnormal circulating ammonia level -0.019814009445335623 -1.4023180397570503 1.0 8403 +Phenotype MP:0010667 abnormal umbilical vein morphology -0.019836608659826727 -1.402727646245364 1.0 8405 +Phenotype MP:0002774 small prostate gland -0.01986450045260213 -1.4032331797140605 1.0 8406 +Phenotype MP:0001354 increased aggression towards male mice -0.019927939483325163 -1.4043830001472755 1.0 8407 +Biological Process GO:0000077 DNA damage checkpoint signaling -0.01998037343158998 -1.4053333555423988 1.0 8408 +Biological Process GO:0046085 adenosine metabolic process -0.020010404543548965 -1.4058776637666743 1.0 8409 +Phenotype MP:0031386 elongated manchette -0.020070876361306 -1.406973704026089 1.0 8410 +Biological Process GO:0002889 regulation of immunoglobulin mediated immune response -0.020075140947986014 -1.407050998853075 1.0 8411 +Biological Process GO:0002712 regulation of B cell mediated immunity -0.020075140947986014 -1.407050998853075 1.0 8411 +Phenotype MP:0010138 arteritis -0.02011279857170556 -1.4077335361605585 1.0 8413 +Phenotype MP:0002738 hyperresponsive to tactile stimuli -0.02013714818268464 -1.4081748682541526 1.0 8414 +Biological Process GO:0032332 positive regulation of chondrocyte differentiation -0.020197514101439218 -1.4092689891141774 1.0 8415 +Biological Process GO:0001832 blastocyst growth -0.020252894214806805 -1.4102727431945608 1.0 8416 +Phenotype MP:0001157 small seminal vesicle -0.02026093601910084 -1.410418499376391 1.0 8417 +Phenotype MP:0004926 abnormal epididymis size -0.020335911458458478 -1.4117774150341518 1.0 8418 +Biological Process GO:0060271 cilium assembly -0.020479742988993577 -1.4143843343212996 1.0 8419 +Phenotype MP:0008390 abnormal primordial germ cell proliferation -0.020510994077834743 -1.4149507543958224 1.0 8420 +Biological Process GO:0051156 glucose 6-phosphate metabolic process -0.020517513073039728 -1.4150689099509326 1.0 8421 +Biological Process GO:0002244 hematopoietic progenitor cell differentiation -0.020566542795365406 -1.4159575643947724 1.0 8422 +Phenotype MP:0011642 abnormal bone collagen fibril morphology -0.020681243422880913 -1.4180364915744093 1.0 8423 +Phenotype MP:0010955 abnormal respiratory electron transport chain -0.02068729199818309 -1.4181461208577544 1.0 8424 +Phenotype MP:0003005 abnormal hippocampal fimbria morphology -0.020728929190797718 -1.4189007870987793 1.0 8425 +Phenotype MP:0008877 abnormal DNA methylation -0.02075931313250856 -1.4194514902955742 1.0 8426 +Phenotype MP:0003456 absent tail -0.020769001241903284 -1.4196270854459778 1.0 8427 +Biological Process GO:0031424 keratinization -0.02082140578675684 -1.4205769079098334 1.0 8428 +Phenotype MP:0005258 ocular hypertension -0.020859524409728047 -1.4212678007415613 1.0 8429 +Biological Process GO:0010172 embryonic body morphogenesis -0.020890962288009574 -1.4218376063393618 1.0 8430 +Phenotype MP:0003360 abnormal depression-related behavior -0.020908303453276433 -1.4221519116799755 1.0 8431 +Phenotype MP:0003047 abnormal thoracic vertebrae morphology -0.020931500596978347 -1.4225723555221446 1.0 8432 +Phenotype MP:0030878 abnormal fibrous joint morphology -0.02094835486030666 -1.422877835857213 1.0 8433 +Phenotype MP:0011525 abnormal placenta intervillous maternal lacunae morphology -0.02095656835685933 -1.4230267039287576 1.0 8434 +Phenotype MP:0008477 decreased spleen red pulp amount -0.02100480873951449 -1.4239010517403625 1.0 8435 +Phenotype MP:0000804 abnormal occipital lobe morphology -0.021019545126061967 -1.424168145959346 1.0 8436 +Phenotype MP:0030590 abnormal sperm fibrous sheath morphology -0.02105667156409252 -1.424841055626683 1.0 8437 +Phenotype MP:0000078 abnormal supraoccipital bone morphology -0.021089262245816975 -1.4254317555688496 1.0 8438 +Phenotype MP:0003374 decreased circulating mineralocorticoid level -0.021131913740250363 -1.4262048058384977 1.0 8439 +Phenotype MP:0002667 decreased circulating aldosterone level -0.021131913740250363 -1.4262048058384977 1.0 8439 +Biological Process GO:0042693 muscle cell fate commitment -0.021155887466719703 -1.4266393250964464 1.0 8441 +Phenotype MP:0030877 abnormal symphysis morphology -0.02116607407313853 -1.426823955411128 1.0 8442 +Phenotype MP:0003668 abnormal periodontal ligament morphology -0.021201196350726148 -1.4274605400494969 1.0 8443 +Biological Process GO:0017145 stem cell division -0.021259140742775573 -1.42851077119599 1.0 8444 +Biological Process GO:0120178 steroid hormone biosynthetic process -0.021289602509592553 -1.429062884958114 1.0 8445 +Phenotype MP:0014001 abnormal vertebral artery topology -0.021421135576587202 -1.4314468969196803 1.0 8446 +Biological Process GO:0010882 regulation of cardiac muscle contraction by calcium ion signaling -0.021599569508641503 -1.434680978189785 1.0 8447 +Phenotype MP:0011252 situs inversus totalis -0.021708840702466592 -1.436661497910687 1.0 8448 +Phenotype MP:0031012 impaired sperm migration in female genital tract -0.021807266568176775 -1.4384454481107547 1.0 8449 +Phenotype MP:0013294 prenatal lethality prior to heart atrial septation -0.021823346760207585 -1.438736898549961 1.0 8450 +Biological Process GO:0002923 regulation of humoral immune response mediated by circulating immunoglobulin -0.021840953878856206 -1.4390560242453174 1.0 8451 +Phenotype MP:0002835 abnormal cranial suture morphology -0.02198437630442318 -1.441655528582295 1.0 8452 +Phenotype MP:0030154 abnormal tympanic cavity morphology -0.022039194266216144 -1.4426490937717118 1.0 8453 +Biological Process GO:0000038 very long-chain fatty acid metabolic process -0.022057104842847064 -1.4429737195856023 1.0 8454 +Phenotype MP:0010240 decreased skeletal muscle size -0.022064633196652972 -1.4431101695744475 1.0 8455 +Biological Process GO:0090303 positive regulation of wound healing -0.022107305833878543 -1.4438836030532052 1.0 8456 +Biological Process GO:0072074 kidney mesenchyme development -0.022183583088510206 -1.4452661138665868 1.0 8457 +Biological Process GO:0021895 cerebral cortex neuron differentiation -0.022262042740069266 -1.4466881802115061 1.0 8458 +Biological Process GO:0003352 regulation of cilium movement -0.022294346491264605 -1.4472736795921015 1.0 8459 +Phenotype MP:0004692 small pubis -0.02237939813950085 -1.4488152246300074 1.0 8460 +Phenotype MP:0000418 focal hair loss -0.022484575733509038 -1.4507215486284777 1.0 8461 +Biological Process GO:0046033 AMP metabolic process -0.02254999951707881 -1.4519073423316506 1.0 8462 +Phenotype MP:0010959 abnormal oxidative phosphorylation -0.02256221387639923 -1.4521287252841513 1.0 8463 +Biological Process GO:0006505 GPI anchor metabolic process -0.02260137511351412 -1.4528385153000372 1.0 8464 +Phenotype MP:0008130 abnormal pituitary intermediate lobe morphology -0.02260394570846458 -1.4528851068473208 1.0 8465 +Phenotype MP:0013795 abnormal colon goblet cell morphology -0.02266311534295995 -1.4539575452814082 1.0 8466 +Biological Process GO:0031570 DNA integrity checkpoint signaling -0.0226804377384342 -1.4542715104230808 1.0 8467 +Biological Process GO:0060323 head morphogenesis -0.02271213375992498 -1.4548459948177248 1.0 8468 +Phenotype MP:0031011 abnormal sperm migration in female genital tract -0.022832493058741354 -1.457027484344428 1.0 8469 +Biological Process GO:0016485 protein processing -0.02284365890172868 -1.4572298631367042 1.0 8470 +Biological Process GO:0006259 DNA metabolic process -0.022847655654854915 -1.457302303531185 1.0 8471 +Phenotype MP:0000866 cerebellum vermis hypoplasia -0.022927307343096226 -1.4587459753155128 1.0 8472 +Phenotype MP:0012102 absent trophectoderm -0.02297823433068502 -1.4596690173334044 1.0 8473 +Phenotype MP:0000194 increased circulating calcium level -0.02299391569487641 -1.4599532390934542 1.0 8474 +Biological Process GO:0031643 positive regulation of myelination -0.023148329402397083 -1.4627519583369892 1.0 8475 +Phenotype MP:0004921 decreased placenta weight -0.023174901982962126 -1.4632335813338841 1.0 8476 +Phenotype MP:0002733 abnormal thermal nociception -0.023209638646952246 -1.463863176798732 1.0 8477 +Biological Process GO:0010830 regulation of myotube differentiation -0.023253709937268496 -1.4646619606002218 1.0 8478 +Phenotype MP:0001412 excessive scratching -0.0232546718286617 -1.464679394699795 1.0 8479 +Phenotype MP:0031020 premature ovarian failure -0.023270748210705516 -1.4649707760837074 1.0 8480 +Biological Process GO:0043587 tongue morphogenesis -0.0232820751960785 -1.4651760755512457 1.0 8481 +Biological Process GO:0001958 endochondral ossification -0.023486850962789907 -1.4688875975923064 1.0 8482 +Biological Process GO:0036075 replacement ossification -0.023486850962789907 -1.4688875975923064 1.0 8482 +Phenotype MP:0003425 abnormal optic vesicle formation -0.023505377381211057 -1.4692233854221666 1.0 8484 +Biological Process GO:0045746 negative regulation of Notch signaling pathway -0.023519126545561653 -1.4694725864255516 1.0 8485 +Biological Process GO:0042044 fluid transport -0.0236073835569508 -1.4710722280643524 1.0 8486 +Biological Process GO:0072498 embryonic skeletal joint development -0.02372091974984647 -1.4731300500867417 1.0 8487 +Biological Process GO:0006790 sulfur compound metabolic process -0.023723273139195866 -1.4731727048235876 1.0 8488 +Biological Process GO:0048733 sebaceous gland development -0.02392734631860849 -1.4768714926027426 1.0 8489 +Phenotype MP:0002282 abnormal trachea morphology -0.024013612913639903 -1.4784350583215202 1.0 8490 +Biological Process GO:0007339 binding of sperm to zona pellucida -0.024159190214697146 -1.4810736193691931 1.0 8491 +Biological Process GO:0021697 cerebellar cortex formation -0.024167227759826382 -1.4812192983544668 1.0 8492 +Biological Process GO:0006195 purine nucleotide catabolic process -0.024243972630362043 -1.482610284617665 1.0 8493 +Phenotype MP:0006000 abnormal cornea epithelium morphology -0.024314097735440576 -1.4838812888839925 1.0 8494 +Phenotype MP:0001059 optic nerve atrophy -0.024323659820469024 -1.4840545998665933 1.0 8495 +Biological Process GO:0019098 reproductive behavior -0.024380505468231783 -1.4850849164807032 1.0 8496 +Phenotype MP:0001985 abnormal gustatory system physiology -0.024441245609332807 -1.486185820049978 1.0 8497 +Biological Process GO:0000380 alternative mRNA splicing, via spliceosome -0.024444634018784717 -1.4862472343304216 1.0 8498 +Phenotype MP:0000531 right pulmonary isomerism -0.024545354825906474 -1.4880727799095168 1.0 8499 +Phenotype MP:0010975 abnormal lung lobe morphology -0.02456852206484328 -1.4884926817334745 1.0 8500 +Phenotype MP:0003019 increased circulating chloride level -0.024575628503704428 -1.4886214845937453 1.0 8501 +Biological Process GO:0031100 animal organ regeneration -0.02458230524753402 -1.4887424993128404 1.0 8502 +Biological Process GO:0097722 sperm motility -0.024604745335832234 -1.4891492216690045 1.0 8503 +Biological Process GO:0051983 regulation of chromosome segregation -0.02478992552346626 -1.492505577545528 1.0 8504 +Phenotype MP:0008106 decreased amacrine cell number -0.024836079079951112 -1.493342102027491 1.0 8505 +Phenotype MP:0004338 small clavicle -0.024852036967459856 -1.4936313357203672 1.0 8506 +Biological Process GO:0071577 zinc ion transmembrane transport -0.02497571526770015 -1.4958729815201344 1.0 8507 +Biological Process GO:0040034 regulation of development, heterochronic -0.025036426435047776 -1.496973359945609 1.0 8508 +Phenotype MP:0004257 abnormal placenta weight -0.025191312311424463 -1.4997806371603548 1.0 8509 +Phenotype MP:0011513 abnormal vertebral artery morphology -0.02524137918455449 -1.5006880897663606 1.0 8510 +Phenotype MP:0004607 abnormal cervical atlas morphology -0.025256076781837056 -1.5009544809372541 1.0 8511 +Phenotype MP:0004920 increased placenta weight -0.025293713060568157 -1.5016366313708591 1.0 8512 +Phenotype MP:0008104 abnormal amacrine cell number -0.02530391922752928 -1.5018216162166702 1.0 8513 +Phenotype MP:0004227 increased cellular sensitivity to ionizing radiation -0.02536517974391006 -1.5029319514894686 1.0 8514 +Biological Process GO:0050686 negative regulation of mRNA processing -0.025375232835268102 -1.5031141618689259 1.0 8515 +Biological Process GO:0048025 negative regulation of mRNA splicing, via spliceosome -0.025375232835268102 -1.5031141618689259 1.0 8515 +Phenotype MP:0008924 decreased cerebellar granule cell number -0.02544486404539459 -1.5043762143826611 1.0 8517 +Phenotype MP:0020520 whitened brown adipose tissue morphology -0.025496739067429663 -1.5053164393455838 1.0 8518 +Biological Process GO:0045662 negative regulation of myoblast differentiation -0.025651714379709256 -1.5081253375691541 1.0 8519 +Phenotype MP:0010377 abnormal gut flora balance -0.02572699434783754 -1.5094897727532852 1.0 8520 +Biological Process GO:0007131 reciprocal meiotic recombination -0.025768133717794406 -1.5102354160527947 1.0 8521 +Biological Process GO:0035825 homologous recombination -0.025768133717794406 -1.5102354160527947 1.0 8521 +Biological Process GO:0140527 reciprocal homologous recombination -0.025768133717794406 -1.5102354160527947 1.0 8521 +Phenotype MP:0004154 renal tubular necrosis -0.025782078346169746 -1.5104881598046587 1.0 8524 +Biological Process GO:0048741 skeletal muscle fiber development -0.02586197396574952 -1.5119362527983595 1.0 8525 +Phenotype MP:0003897 abnormal ST segment -0.025919765962044483 -1.5129837218006266 1.0 8526 +Biological Process GO:0006801 superoxide metabolic process -0.02594467169843373 -1.5134351335620964 1.0 8527 +Biological Process GO:0050908 detection of light stimulus involved in visual perception -0.02595207797064769 -1.5135693708451776 1.0 8528 +Biological Process GO:0050962 detection of light stimulus involved in sensory perception -0.02595207797064769 -1.5135693708451776 1.0 8528 +Phenotype MP:0000808 abnormal hippocampus development -0.026017076090302904 -1.5147474494704076 1.0 8530 +Biological Process GO:0060346 bone trabecula formation -0.026017982098167636 -1.5147638706915967 1.0 8531 +Phenotype MP:0001386 abnormal maternal nurturing -0.026023288560234503 -1.5148600493129127 1.0 8532 +Biological Process GO:0006098 pentose-phosphate shunt -0.026035740286504128 -1.515085734496473 1.0 8533 +Phenotype MP:0004266 pale placenta -0.02605276360078901 -1.5153942788481554 1.0 8534 +Phenotype MP:0002777 absent ovarian follicles -0.02609463336014195 -1.5161531603173253 1.0 8535 +Phenotype MP:0000654 absent sex gland -0.026098282954951646 -1.5162193085329791 1.0 8536 +Phenotype MP:0005644 agonadal -0.026098282954951646 -1.5162193085329791 1.0 8536 +Phenotype MP:0006149 decreased visual acuity -0.02613536882256673 -1.5168914828692093 1.0 8538 +Phenotype MP:0011832 abnormal visual acuity -0.02613536882256673 -1.5168914828692093 1.0 8538 +Phenotype MP:0010180 increased susceptibility to weight loss -0.026148886764358004 -1.5171364930074391 1.0 8540 +Phenotype MP:0005641 increased mean corpuscular hemoglobin concentration -0.02615012767130165 -1.5171589842110917 1.0 8541 +Biological Process GO:1902099 regulation of metaphase/anaphase transition of cell cycle -0.026181835853300806 -1.51773368901265 1.0 8542 +Biological Process GO:0009595 detection of biotic stimulus -0.02621786315315866 -1.5183866770084942 1.0 8543 +Phenotype MP:0009455 enhanced cued conditioning behavior -0.026232193354544187 -1.518646409198242 1.0 8544 +Phenotype MP:0013129 abnormal tooth color -0.02630845218131439 -1.52002858601012 1.0 8545 +Phenotype MP:0013237 abnormal skeletal muscle regeneration -0.02632190187044281 -1.5202723590817446 1.0 8546 +Phenotype MP:0030663 abnormal arginine level -0.02636311720913409 -1.5210193793001967 1.0 8547 +Phenotype MP:0008908 increased total fat pad weight -0.026387533033014776 -1.5214619114901093 1.0 8548 +Phenotype MP:0031121 increased susceptibility to induced thrombosis -0.02642402718372172 -1.5221233610692946 1.0 8549 +Phenotype MP:0013570 abnormal neuroendocrine gland physiology -0.02644961619819597 -1.5225871571168221 1.0 8550 +Phenotype MP:0031394 abnormal bicarbonate level -0.026489423222379127 -1.5233086519011785 1.0 8551 +Phenotype MP:0013242 abnormal amino acid metabolism -0.0265447598693338 -1.524311618161049 1.0 8552 +Phenotype MP:0004612 fusion of vertebral bodies -0.0265761424781914 -1.5248804220109944 1.0 8553 +Biological Process GO:0046337 phosphatidylethanolamine metabolic process -0.026595314538725212 -1.5252279119820322 1.0 8554 +Biological Process GO:0035725 sodium ion transmembrane transport -0.02666687301807702 -1.5265248958859592 1.0 8555 +Biological Process GO:2000288 positive regulation of myoblast proliferation -0.0267352423650824 -1.5277640773692887 1.0 8556 +Phenotype MP:0003015 abnormal circulating bicarbonate level -0.026888983343851702 -1.5305506035314427 1.0 8557 +Biological Process GO:0006470 protein dephosphorylation -0.026968472804163035 -1.5319913349652228 1.0 8558 +Phenotype MP:0001689 incomplete somite formation -0.027054157857899996 -1.533544360358029 1.0 8559 +Phenotype MP:0021101 abnormal ventral interneuron morphology -0.027214233526780207 -1.536445701580322 1.0 8560 +Biological Process GO:0035914 skeletal muscle cell differentiation -0.027256748448810875 -1.5372162765010016 1.0 8561 +Biological Process GO:0046434 organophosphate catabolic process -0.027281877515667574 -1.537671736084954 1.0 8562 +Phenotype MP:0003345 decreased rib number -0.027306694941392262 -1.5381215472323315 1.0 8563 +Biological Process GO:0006220 pyrimidine nucleotide metabolic process -0.027357205773012927 -1.5390370465020113 1.0 8564 +Biological Process GO:0015740 C4-dicarboxylate transport -0.02737965724656788 -1.5394439752138003 1.0 8565 +Biological Process GO:0098962 regulation of postsynaptic neurotransmitter receptor activity -0.02741054252798314 -1.5400037650979161 1.0 8566 +Phenotype MP:0014319 abnormal heart atrium arrangement -0.027538988923035523 -1.5423318317143315 1.0 8567 +Biological Process GO:0099587 inorganic ion import across plasma membrane -0.02759798062066432 -1.5434010450763669 1.0 8568 +Biological Process GO:0098659 inorganic cation import across plasma membrane -0.02759798062066432 -1.5434010450763669 1.0 8568 +Phenotype MP:0030494 abnormal molar root morphology -0.02759905371629623 -1.5434204947317336 1.0 8570 +Biological Process GO:0003357 noradrenergic neuron differentiation -0.027684345934442467 -1.5449664000537575 1.0 8571 +Phenotype MP:0003311 aminoaciduria -0.027761124372856605 -1.5463579947284043 1.0 8572 +Biological Process GO:0050909 sensory perception of taste -0.02779526331101323 -1.5469767565255719 1.0 8573 +Phenotype MP:0005477 increased circulating thyroxine level -0.027909534694239513 -1.549047903733652 1.0 8574 +Phenotype MP:0000540 abnormal urinary bladder urothelium morphology -0.02805325958944871 -1.5516528902756868 1.0 8575 +Phenotype MP:0011959 abnormal eye posterior chamber depth -0.02808030210715673 -1.552143030794416 1.0 8576 +Biological Process GO:0019395 fatty acid oxidation -0.02815491164256323 -1.553495314512268 1.0 8577 +Biological Process GO:1905820 positive regulation of chromosome separation -0.028253690601375503 -1.5552856644580282 1.0 8578 +Biological Process GO:0007338 single fertilization -0.028257897992972403 -1.5553619226349504 1.0 8579 +Phenotype MP:0012300 abnormal umbilical cord blood vessel morphology -0.028289324485586187 -1.5559315218696765 1.0 8580 +Phenotype MP:0005240 abnormal amacrine cell morphology -0.028316783619420693 -1.556429213476901 1.0 8581 +Biological Process GO:0006334 nucleosome assembly -0.02846206858142386 -1.5590624759345109 1.0 8582 +Phenotype MP:0001986 abnormal taste sensitivity -0.028476845464038503 -1.5593303041370523 1.0 8583 +Phenotype MP:0010158 abnormal intestine development -0.02851668721251821 -1.560052428292716 1.0 8584 +Phenotype MP:0003849 greasy coat -0.02853948592733313 -1.5604656506866659 1.0 8585 +Biological Process GO:2000144 positive regulation of DNA-templated transcription initiation -0.02864514302263088 -1.5623806655553183 1.0 8586 +Biological Process GO:0060261 positive regulation of transcription initiation by RNA polymerase II -0.02864514302263088 -1.5623806655553183 1.0 8586 +Biological Process GO:0006414 translational elongation -0.028697285388749716 -1.5633257360791946 1.0 8588 +Biological Process GO:0006740 NADPH regeneration -0.02875224251705788 -1.564321823635378 1.0 8589 +Biological Process GO:0009154 purine ribonucleotide catabolic process -0.02875798278032704 -1.5644258648214378 1.0 8590 +Biological Process GO:0046128 purine ribonucleoside metabolic process -0.02877169827014736 -1.5646744554803307 1.0 8591 +Biological Process GO:0032793 positive regulation of CREB transcription factor activity -0.028808582069884237 -1.5653429673744865 1.0 8592 +Phenotype MP:0004648 decreased thoracic vertebrae number -0.028813342387192797 -1.5654292472253541 1.0 8593 +Phenotype MP:0004806 absent germ cells -0.028862171917447554 -1.5663142732257724 1.0 8594 +Biological Process GO:0006829 zinc ion transport -0.028873527149630984 -1.5665200846614076 1.0 8595 +Biological Process GO:0009119 ribonucleoside metabolic process -0.028878756845733156 -1.5666148719141326 1.0 8596 +Biological Process GO:0034367 protein-containing complex remodeling -0.0289390743640634 -1.5677081155256205 1.0 8597 +Phenotype MP:0009426 decreased soleus weight -0.028974977635707555 -1.5683588555335497 1.0 8598 +Biological Process GO:0045668 negative regulation of osteoblast differentiation -0.029041529352095807 -1.569565092805724 1.0 8599 +Biological Process GO:0046479 glycosphingolipid catabolic process -0.02911007469334037 -1.5708074641513519 1.0 8600 +Biological Process GO:0019377 glycolipid catabolic process -0.02911007469334037 -1.5708074641513519 1.0 8600 +Biological Process GO:0043094 cellular metabolic compound salvage -0.029120743574725827 -1.5710008356085878 1.0 8602 +Biological Process GO:0043173 nucleotide salvage -0.029120743574725827 -1.5710008356085878 1.0 8602 +Biological Process GO:0061140 lung secretory cell differentiation -0.029157818065326024 -1.5716728037385748 1.0 8604 +Phenotype MP:0030881 abnormal knee morphology -0.02922795808700429 -1.5729440783654511 1.0 8605 +Phenotype MP:0011808 abnormal myoblast differentiation -0.029401620062163403 -1.5760916688193818 1.0 8606 +Biological Process GO:1905818 regulation of chromosome separation -0.029509265285657005 -1.5780427181355563 1.0 8607 +Biological Process GO:0007340 acrosome reaction -0.029526460961026624 -1.5783543864992997 1.0 8608 +Phenotype MP:0005300 abnormal cornea stroma morphology -0.029648088861444766 -1.580558869190096 1.0 8609 +Phenotype MP:0003864 abnormal midbrain development -0.029677860595809014 -1.5810984762445248 1.0 8610 +Biological Process GO:0009593 detection of chemical stimulus -0.029786026647268926 -1.583058965469081 1.0 8611 +Phenotype MP:0006272 abnormal urine organic anion level -0.02987772698437774 -1.584721016735292 1.0 8612 +Biological Process GO:0001539 cilium or flagellum-dependent cell motility -0.029879118821845907 -1.5847462435261552 1.0 8613 +Biological Process GO:0060285 cilium-dependent cell motility -0.029879118821845907 -1.5847462435261552 1.0 8613 +Phenotype MP:0031393 abnormal bicarbonate homeostasis -0.030008095034501636 -1.5870839129864234 1.0 8615 +Phenotype MP:0003996 clonic seizures -0.030040441418344166 -1.5876701850756856 1.0 8616 +Phenotype MP:0002799 abnormal passive avoidance behavior -0.030151431314529464 -1.5896818559517971 1.0 8617 +Phenotype MP:0031498 abnormal cornea size -0.030158690456562054 -1.5898134265281687 1.0 8618 +Phenotype MP:0011961 abnormal cornea thickness -0.030158690456562054 -1.5898134265281687 1.0 8618 +Phenotype MP:0013438 dysmyelination -0.03028909028783633 -1.5921768988066396 1.0 8620 +Phenotype MP:0020352 abnormal endoplasmic reticulum physiology -0.030310246863232804 -1.592560357734219 1.0 8621 +Phenotype MP:0001942 abnormal lung volume -0.030338586451582383 -1.593074007413003 1.0 8622 +Biological Process GO:0042278 purine nucleoside metabolic process -0.030339435646725033 -1.5930893989143495 1.0 8623 +Biological Process GO:0071715 icosanoid transport -0.030358502516452335 -1.5934349823219147 1.0 8624 +Phenotype MP:0008779 abnormal maternal behavior -0.030369097424368663 -1.5936270130240138 1.0 8625 +Phenotype MP:0004622 sacral vertebral fusion -0.03037134113824358 -1.5936676799136285 1.0 8626 +Biological Process GO:1901657 glycosyl compound metabolic process -0.0305523626343851 -1.5969486602934106 1.0 8627 +Phenotype MP:0000277 abnormal heart shape -0.030574248009523464 -1.5973453285784691 1.0 8628 +Phenotype MP:0012348 decreased susceptibility to induction of seizure by inducing agent -0.03058397502367982 -1.5975216288703191 1.0 8629 +Phenotype MP:0002823 abnormal rib development -0.030621574745318902 -1.5982031167135455 1.0 8630 +Phenotype MP:0030544 abnormal enamel development -0.030646315929265366 -1.5986515459931128 1.0 8631 +Biological Process GO:0021692 cerebellar Purkinje cell layer morphogenesis -0.030801904437063543 -1.6014715582694798 1.0 8632 +Phenotype MP:0011130 absent tertiary ovarian follicles -0.030921592270082288 -1.6036408776055997 1.0 8633 +Phenotype MP:0000528 delayed kidney development -0.03095772009501685 -1.6042956875994463 1.0 8634 +Biological Process GO:0006590 thyroid hormone generation -0.03100498073281277 -1.605152277720783 1.0 8635 +Biological Process GO:0007271 synaptic transmission, cholinergic -0.031026474568713436 -1.6055418494312124 1.0 8636 +Phenotype MP:0006029 abnormal sclerotome morphology -0.031065983852315293 -1.6062579477238461 1.0 8637 +Phenotype MP:0020354 increased endoplasmic reticulum stress -0.031086213747512303 -1.6066246107480793 1.0 8638 +Biological Process GO:0021533 cell differentiation in hindbrain -0.031150773552683253 -1.6077947450061834 1.0 8639 +Biological Process GO:0014904 myotube cell development -0.031409581071558224 -1.6124855823358288 1.0 8640 +Phenotype MP:0002292 abnormal gestational length -0.03141517778816483 -1.6125870217657798 1.0 8641 +Phenotype MP:0013405 increased circulating lactate level -0.03156797426302815 -1.6153564289732782 1.0 8642 +Biological Process GO:0048662 negative regulation of smooth muscle cell proliferation -0.031629146144254605 -1.6164651577506686 1.0 8643 +Biological Process GO:2001251 negative regulation of chromosome organization -0.03163236889623833 -1.6165235695208333 1.0 8644 +Phenotype MP:0005356 positive geotaxis -0.03166773683932833 -1.6171646067999688 1.0 8645 +Biological Process GO:0006734 NADH metabolic process -0.0317886777528964 -1.6193566379840418 1.0 8646 +Phenotype MP:0031374 abnormal manchette assembly -0.03179135681013734 -1.619405195389826 1.0 8647 +Biological Process GO:0006302 double-strand break repair -0.031872151976521046 -1.6208695924992111 1.0 8648 +Phenotype MP:0002887 decreased susceptibility to pharmacologically induced seizures -0.03191018510320198 -1.6215589357268485 1.0 8649 +Biological Process GO:0043586 tongue development -0.03194584021391478 -1.622205177864833 1.0 8650 +Biological Process GO:0045667 regulation of osteoblast differentiation -0.03194867509078381 -1.6222565594719054 1.0 8651 +Phenotype MP:0009406 decreased skeletal muscle fiber number -0.031989880943079196 -1.623003407751226 1.0 8652 +Phenotype MP:0001970 abnormal pain threshold -0.03206850249021587 -1.6244284084228695 1.0 8653 +Phenotype MP:0013977 symmetric azygos veins -0.03218384249606521 -1.6265189242138771 1.0 8654 +Phenotype MP:0000431 absent palatine bone horizontal plate -0.03225770692823815 -1.627857703076547 1.0 8655 +Phenotype MP:0004331 vestibular saccular macula degeneration -0.0324068035113918 -1.6305600504465927 1.0 8656 +Biological Process GO:0072523 purine-containing compound catabolic process -0.032427491025155186 -1.6309350077207887 1.0 8657 +Biological Process GO:0002566 somatic diversification of immune receptors via somatic mutation -0.03250876123799906 -1.6324080149574156 1.0 8658 +Biological Process GO:1901292 nucleoside phosphate catabolic process -0.03253209114347788 -1.6328308650816812 1.0 8659 +Biological Process GO:0009116 nucleoside metabolic process -0.03262662590988441 -1.6345442898428193 1.0 8660 +Phenotype MP:0031009 abnormal sperm-egg fusion -0.032670543772518545 -1.6353402927965897 1.0 8661 +Biological Process GO:0006767 water-soluble vitamin metabolic process -0.03273145669470501 -1.6364443279903589 1.0 8662 +Biological Process GO:0030317 flagellated sperm motility -0.03278728567219824 -1.6374562176481229 1.0 8663 +Biological Process GO:0032261 purine nucleotide salvage -0.03295423266730735 -1.6404821003586956 1.0 8664 +Biological Process GO:0043101 purine-containing compound salvage -0.03295423266730735 -1.6404821003586956 1.0 8664 +Phenotype MP:0001957 apnea -0.03296275143360061 -1.6406365013865507 1.0 8666 +Biological Process GO:0032612 interleukin-1 production -0.03299701220912743 -1.6412574714630093 1.0 8667 +Biological Process GO:0032611 interleukin-1 beta production -0.03299701220912743 -1.6412574714630093 1.0 8667 +Biological Process GO:0009166 nucleotide catabolic process -0.03310365726089448 -1.643190392855809 1.0 8669 +Biological Process GO:0045005 DNA-templated DNA replication maintenance of fidelity -0.033280645042242485 -1.6463982629178817 1.0 8670 +Phenotype MP:0004357 long tibia -0.03329700630054666 -1.6466948076301329 1.0 8671 +Phenotype MP:0030124 middle ear ossicle hypoplasia -0.03339252017897598 -1.648425978611498 1.0 8672 +Biological Process GO:0034728 nucleosome organization -0.033424232034025 -1.6490007499863906 1.0 8673 +Phenotype MP:0020476 abnormal circardian behavior entrainment -0.0334369588904746 -1.6492314218524255 1.0 8674 +Phenotype MP:0009709 hydrometra -0.03345447536938617 -1.6495489047196914 1.0 8675 +Biological Process GO:0019730 antimicrobial humoral response -0.0334986975810585 -1.6503504239422153 1.0 8676 +Biological Process GO:0000375 RNA splicing, via transesterification reactions -0.033514740774065244 -1.6506412037811082 1.0 8677 +Phenotype MP:0013239 impaired skeletal muscle regeneration -0.03355404436581755 -1.6513535739478729 1.0 8678 +Biological Process GO:0000377 RNA splicing, via transesterification reactions with bulged adenosine as nucleophile -0.03356128419632731 -1.6514847945065456 1.0 8679 +Biological Process GO:0000398 mRNA splicing, via spliceosome -0.03356128419632731 -1.6514847945065456 1.0 8679 +Biological Process GO:0048172 regulation of short-term neuronal synaptic plasticity -0.0336570399685483 -1.6532203497671338 1.0 8681 +Phenotype MP:0001872 sinus inflammation -0.03378105560332423 -1.6554681096915573 1.0 8682 +Biological Process GO:0035036 sperm-egg recognition -0.03382794610629736 -1.656317991189237 1.0 8683 +Biological Process GO:0060999 positive regulation of dendritic spine development -0.03383513618904144 -1.656448310079066 1.0 8684 +Phenotype MP:0030604 abnormal ammonia homeostasis -0.03388746957465738 -1.6573968427951984 1.0 8685 +Biological Process GO:0060294 cilium movement involved in cell motility -0.03390753232455834 -1.6577604763425537 1.0 8686 +Biological Process GO:1901568 fatty acid derivative metabolic process -0.03399824872391144 -1.6594046939230411 1.0 8687 +Biological Process GO:0044818 mitotic G2/M transition checkpoint -0.034098676063482936 -1.6612249204582932 1.0 8688 +Phenotype MP:0011952 decreased cardiac stroke volume -0.034109718897498364 -1.6614250697362192 1.0 8689 +Phenotype MP:0003484 abnormal channel response -0.034336129393793824 -1.6655287171590725 1.0 8690 +Biological Process GO:1902043 positive regulation of extrinsic apoptotic signaling pathway via death domain receptors -0.03434856191270885 -1.6657540542129636 1.0 8691 +Phenotype MP:0010136 decreased DN4 thymocyte number -0.034443809281822224 -1.6674803947633838 1.0 8692 +Biological Process GO:0050775 positive regulation of dendrite morphogenesis -0.03445137066040216 -1.667617443320012 1.0 8693 +Phenotype MP:0011960 abnormal eye anterior chamber depth -0.03447414491790246 -1.6680302224297603 1.0 8694 +Phenotype MP:0010130 decreased DN1 thymic pro-T cell number -0.03451787114263327 -1.6688227519827785 1.0 8695 +Phenotype MP:0004142 abnormal muscle tone -0.034525695552060975 -1.668964567923774 1.0 8696 +Biological Process GO:0106380 purine ribonucleotide salvage -0.034526825887652324 -1.6689850550425793 1.0 8697 +Biological Process GO:0010526 retrotransposon silencing -0.034700716713994106 -1.6721367933809117 1.0 8698 +Biological Process GO:0046889 positive regulation of lipid biosynthetic process -0.03477566617617289 -1.673495238207219 1.0 8699 +Phenotype MP:0030696 abnormal phenylalanine level -0.034851904320096994 -1.674877040146423 1.0 8700 +Biological Process GO:0009218 pyrimidine ribonucleotide metabolic process -0.03487653112007738 -1.6753233962382394 1.0 8701 +Phenotype MP:0004453 abnormal pterygoid bone morphology -0.034888655594537354 -1.6755431500446452 1.0 8702 +Biological Process GO:0006405 RNA export from nucleus -0.03489930775753214 -1.6757362184842122 1.0 8703 +Phenotype MP:0010854 lung situs inversus -0.03492636093782031 -1.6762265522601898 1.0 8704 +Phenotype MP:0012167 abnormal epigenetic regulation of gene expression -0.03495163194278317 -1.6766845844454707 1.0 8705 +Biological Process GO:0016446 somatic hypermutation of immunoglobulin genes -0.03503182163974161 -1.6781380075360393 1.0 8706 +Biological Process GO:0006691 leukotriene metabolic process -0.03518129380803714 -1.6808471623157442 1.0 8707 +Biological Process GO:0046321 positive regulation of fatty acid oxidation -0.035326018051794916 -1.6834702618612085 1.0 8708 +Phenotype MP:0011143 thick lung-associated mesenchyme -0.03535958878168666 -1.684078724991044 1.0 8709 +Biological Process GO:0010454 negative regulation of cell fate commitment -0.03543154666297399 -1.685382947979511 1.0 8710 +Biological Process GO:0045923 positive regulation of fatty acid metabolic process -0.03546106290118134 -1.6859179242144195 1.0 8711 +Biological Process GO:0071805 potassium ion transmembrane transport -0.03560856090383946 -1.6885912976153334 1.0 8712 +Biological Process GO:0010470 regulation of gastrulation -0.03564558189214129 -1.6892622960262818 1.0 8713 +Biological Process GO:0006884 cell volume homeostasis -0.03567976819572305 -1.6898819163128214 1.0 8714 +Phenotype MP:0011953 prolonged PQ interval -0.035702537833553816 -1.690294611691933 1.0 8715 +Phenotype MP:0021105 abnormal ventral interneuron 3 morphology -0.03572661031555602 -1.6907309208752366 1.0 8716 +Biological Process GO:0009123 nucleoside monophosphate metabolic process -0.03583593870988655 -1.6927124773444813 1.0 8717 +Biological Process GO:0006402 mRNA catabolic process -0.035846475755647145 -1.6929034593059515 1.0 8718 +Phenotype MP:0003696 abnormal zona pellucida morphology -0.03587789524970275 -1.6934729316931345 1.0 8719 +Phenotype MP:0008007 abnormal cellular replicative senescence -0.03587850074839616 -1.6934839062424305 1.0 8720 +Phenotype MP:0030731 abnormal gamma-aminobutyric acid level -0.035929352094741684 -1.6944055772770945 1.0 8721 +Biological Process GO:0000956 nuclear-transcribed mRNA catabolic process -0.03600359404763287 -1.6957511986313798 1.0 8722 +Phenotype MP:0013160 impaired muscle regeneration -0.03602319853100755 -1.6961065261846213 1.0 8723 +Phenotype MP:0000508 right-sided isomerism -0.03608724899196303 -1.6972674286751557 1.0 8724 +Biological Process GO:0001833 inner cell mass cell proliferation -0.03626123239721668 -1.7004208449887557 1.0 8725 +Phenotype MP:0003578 absent ovary -0.03640334732195827 -1.7029966511205694 1.0 8726 +Biological Process GO:0046513 ceramide biosynthetic process -0.03643116412415526 -1.7035008253992154 1.0 8727 +Phenotype MP:0002861 abnormal tail bud morphology -0.036452239841632705 -1.7038828187923056 1.0 8728 +Phenotype MP:0013674 abnormal Ly6C-positive mature NK cell number -0.03651841799570699 -1.7050822853181937 1.0 8729 +Phenotype MP:0009552 urinary bladder obstruction -0.0365981877857573 -1.706528097675472 1.0 8730 +Phenotype MP:0012129 failure of blastocyst formation -0.036653562945008655 -1.7075317619634358 1.0 8731 +Phenotype MP:0006061 right atrial isomerism -0.03670797055059816 -1.7085178895242783 1.0 8732 +Biological Process GO:0046514 ceramide catabolic process -0.036769150000078854 -1.7096267554748454 1.0 8733 +Biological Process GO:1903311 regulation of mRNA metabolic process -0.036789836169792256 -1.71000168838839 1.0 8734 +Phenotype MP:0000430 absent maxillary shelf -0.036791573920780474 -1.7100331847963792 1.0 8735 +Biological Process GO:0010171 body morphogenesis -0.0367959723187099 -1.7101129049269521 1.0 8736 +Biological Process GO:0006406 mRNA export from nucleus -0.03680765218277382 -1.7103246002540213 1.0 8737 +Biological Process GO:0060260 regulation of transcription initiation by RNA polymerase II -0.03687556704534689 -1.711555544292975 1.0 8738 +Biological Process GO:0007095 mitotic G2 DNA damage checkpoint signaling -0.03693276245696264 -1.7125922003107672 1.0 8739 +Biological Process GO:1902475 L-alpha-amino acid transmembrane transport -0.03696991598316757 -1.7132656009461413 1.0 8740 +Biological Process GO:0021591 ventricular system development -0.03701242622971734 -1.7140360911246144 1.0 8741 +Biological Process GO:0008033 tRNA processing -0.03703728799730244 -1.714486705959825 1.0 8742 +Biological Process GO:0010976 positive regulation of neuron projection development -0.03709208667376407 -1.715479921606259 1.0 8743 +Biological Process GO:0071103 DNA conformation change -0.037137941800910124 -1.7163110371129005 1.0 8744 +Phenotype MP:0004071 prolonged P wave -0.03713980950161755 -1.716344888834972 1.0 8745 +Phenotype MP:0008966 abnormal chiasmata formation -0.03732377015317634 -1.7196791408507905 1.0 8746 +Biological Process GO:0006401 RNA catabolic process -0.037390140353196655 -1.7208820881731277 1.0 8747 +Phenotype MP:0008875 abnormal xenobiotic pharmacokinetics -0.037592569176062796 -1.7245510723008857 1.0 8748 +Phenotype MP:0003177 allodynia -0.037747129020422765 -1.727352440246993 1.0 8749 +Phenotype MP:0001363 increased anxiety-related response -0.037864116941546566 -1.7294728241906692 1.0 8750 +Phenotype MP:0004568 fusion of glossopharyngeal and vagus nerve -0.03790930412809135 -1.7302918334002444 1.0 8751 +Biological Process GO:0050907 detection of chemical stimulus involved in sensory perception -0.03791541155715894 -1.7304025293969565 1.0 8752 +Biological Process GO:0051931 regulation of sensory perception -0.03794108695395293 -1.7308678911076913 1.0 8753 +Biological Process GO:0051930 regulation of sensory perception of pain -0.03794108695395293 -1.7308678911076913 1.0 8753 +Phenotype MP:0003898 abnormal QRS complex -0.038110146595952576 -1.7339320651435761 1.0 8755 +Biological Process GO:0009161 ribonucleoside monophosphate metabolic process -0.03813386970563637 -1.7343620420196877 1.0 8756 +Phenotype MP:0003246 loss of GABAergic neurons -0.03817305200890142 -1.7350722138555608 1.0 8757 +Phenotype MP:0012204 abnormal neuronal stem cell physiology -0.03834715395116617 -1.738227778630067 1.0 8758 +Phenotype MP:0003092 decreased cornea stroma thickness -0.03842470499009121 -1.7396333765428469 1.0 8759 +Phenotype MP:0003701 elevated level of mitotic sister chromatid exchange -0.03843480011563649 -1.739816348783998 1.0 8760 +Phenotype MP:0001460 abnormal olfactory discrimination memory -0.038573752572040876 -1.742334835775338 1.0 8761 +Biological Process GO:0006959 humoral immune response -0.038598865555844464 -1.7427900038569948 1.0 8762 +Biological Process GO:0000725 recombinational repair -0.0386488650964083 -1.7436962360729733 1.0 8763 +Biological Process GO:0000724 double-strand break repair via homologous recombination -0.0386488650964083 -1.7436962360729733 1.0 8763 +Biological Process GO:0022010 central nervous system myelination -0.03867356821812562 -1.7441439754818362 1.0 8765 +Biological Process GO:0032291 axon ensheathment in central nervous system -0.03867356821812562 -1.7441439754818362 1.0 8765 +Biological Process GO:0006956 complement activation -0.03868751328910491 -1.7443967272558132 1.0 8767 +Biological Process GO:0009261 ribonucleotide catabolic process -0.038733671487040766 -1.745233335863198 1.0 8768 +Phenotype MP:0008958 abnormal trophoblast glycogen cell morphology -0.03880000487888391 -1.7464356160442853 1.0 8769 +Biological Process GO:0021514 ventral spinal cord interneuron differentiation -0.03885490615831788 -1.7474306913501871 1.0 8770 +Biological Process GO:0046049 UMP metabolic process -0.039039763100642055 -1.750781188466607 1.0 8771 +Phenotype MP:0010123 increased bone mineral content -0.03920351459110383 -1.7537491532598333 1.0 8772 +Biological Process GO:0035601 protein deacylation -0.039333873040949374 -1.7561118755077354 1.0 8773 +Biological Process GO:0098732 macromolecule deacylation -0.039333873040949374 -1.7561118755077354 1.0 8773 +Phenotype MP:0030566 abnormal A band morphology -0.03948371061428291 -1.7588276531846427 1.0 8775 +Phenotype MP:0011234 abnormal retinol level -0.03952943735274306 -1.759656441670635 1.0 8776 +Phenotype MP:0020353 abnormal endoplasmic reticulum stress -0.03953011555583785 -1.7596687339734551 1.0 8777 +Phenotype MP:0010507 shortened RR interval -0.03963031518314697 -1.7614848332670203 1.0 8778 +Biological Process GO:0009173 pyrimidine ribonucleoside monophosphate metabolic process -0.0396426970736774 -1.7617092526910163 1.0 8779 +Phenotype MP:0009895 decreased palatine bone horizontal plate size -0.039701316553921284 -1.76277171968335 1.0 8780 +Biological Process GO:0009129 pyrimidine nucleoside monophosphate metabolic process -0.039776199424912395 -1.7641289575569752 1.0 8781 +Phenotype MP:0012306 enhanced spatial learning -0.03982752747795515 -1.765059268810364 1.0 8782 +Biological Process GO:0017004 cytochrome complex assembly -0.03984065139584092 -1.765297137339831 1.0 8783 +Biological Process GO:0003333 amino acid transmembrane transport -0.039908782836658 -1.7665320068184942 1.0 8784 +Phenotype MP:0030066 short face -0.03992214482033596 -1.7667741902454177 1.0 8785 +Biological Process GO:0051236 establishment of RNA localization -0.03997789204704172 -1.7677845981856208 1.0 8786 +Biological Process GO:0050657 nucleic acid transport -0.03997789204704172 -1.7677845981856208 1.0 8786 +Biological Process GO:0050658 RNA transport -0.03997789204704172 -1.7677845981856208 1.0 8786 +Phenotype MP:0000690 absent spleen -0.039985312543355356 -1.7679190932778184 1.0 8789 +Biological Process GO:0007342 fusion of sperm to egg plasma membrane involved in single fertilization -0.04001865063339438 -1.7685233398543243 1.0 8790 +Phenotype MP:0010092 increased circulating magnesium level -0.040213653101176305 -1.772057722700776 1.0 8791 +Biological Process GO:0006400 tRNA modification -0.04022483254833742 -1.772260348066129 1.0 8792 +Biological Process GO:1990542 mitochondrial transmembrane transport -0.04022792502838857 -1.772316398682155 1.0 8793 +Biological Process GO:0010566 regulation of ketone biosynthetic process -0.04032224755945446 -1.7740259767178854 1.0 8794 +Biological Process GO:0000070 mitotic sister chromatid segregation -0.040381776531054125 -1.7751049280690248 1.0 8795 +Biological Process GO:0000819 sister chromatid segregation -0.040381776531054125 -1.7751049280690248 1.0 8795 +Biological Process GO:0170041 non-proteinogenic amino acid metabolic process -0.040391090246712835 -1.7752737374037746 1.0 8797 +Phenotype MP:0010785 abnormal stomach pyloric region morphology -0.04040766710601962 -1.7755741898434199 1.0 8798 +Phenotype MP:0010934 increased subcutaneous adipose tissue amount -0.040453793214122014 -1.7764102168286426 1.0 8799 +Phenotype MP:0013859 abnormal vitelline vein connection -0.04048361554523927 -1.7769507409396499 1.0 8800 +Phenotype MP:0004233 abnormal muscle weight -0.04050843192230569 -1.7774005330802944 1.0 8801 +Phenotype MP:0004964 absent inner cell mass -0.04084924483407959 -1.7835777026460153 1.0 8802 +Biological Process GO:0048024 regulation of mRNA splicing, via spliceosome -0.04106529785040647 -1.7874936227034162 1.0 8803 +Phenotype MP:0030029 wide cranial sutures -0.04147593939426786 -1.7949364230185756 1.0 8804 +Biological Process GO:0001510 RNA methylation -0.04165271131850101 -1.7981403807112684 1.0 8805 +Phenotype MP:0000705 athymia -0.0417330252923811 -1.7995960562975362 1.0 8806 +Phenotype MP:0006074 abnormal retina rod bipolar cell morphology -0.04177550851831158 -1.8003660567323951 1.0 8807 +Phenotype MP:0012205 abnormal neuronal stem cell self-renewal -0.041952492108544126 -1.8035738508312928 1.0 8808 +Phenotype MP:0004659 abnormal odontoid process morphology -0.042026849988226145 -1.804921573336736 1.0 8809 +Phenotype MP:0002059 abnormal seminal vesicle morphology -0.04209845809913859 -1.8062194568033125 1.0 8810 +Biological Process GO:0006487 protein N-linked glycosylation -0.04210652573075779 -1.8063656811005264 1.0 8811 +Phenotype MP:0001694 absent egg cylinders -0.04212170624340028 -1.8066408250209816 1.0 8812 +Phenotype MP:0004232 decreased muscle weight -0.04229574841232919 -1.8097953064150814 1.0 8813 +Biological Process GO:0003341 cilium movement -0.04231413807462858 -1.8101286155661005 1.0 8814 +Biological Process GO:0033120 positive regulation of RNA splicing -0.04233549576566098 -1.8105157196765425 1.0 8815 +Biological Process GO:0006720 isoprenoid metabolic process -0.04235481826858378 -1.8108659363874264 1.0 8816 +Phenotype MP:0000505 decreased digestive secretion -0.04244797659410682 -1.8125544134178866 1.0 8817 +Phenotype MP:0004156 abnormal QT variability -0.04245899752305027 -1.812754165670526 1.0 8818 +Phenotype MP:0005634 decreased circulating sodium level -0.04257163271421649 -1.8147956572069814 1.0 8819 +Biological Process GO:0080154 regulation of fertilization -0.042632217492566626 -1.8158937448557813 1.0 8820 +Phenotype MP:0012203 abnormal neuronal stem cell morphology -0.042689703206014507 -1.816935662539374 1.0 8821 +Phenotype MP:0010511 shortened PR interval -0.04274037382365714 -1.8178540579004805 1.0 8822 +Phenotype MP:0005114 premature hair loss -0.04279217476915487 -1.8187929402401743 1.0 8823 +Biological Process GO:0060911 cardiac cell fate commitment -0.042964677940204865 -1.8219195275887994 1.0 8824 +Biological Process GO:0000288 nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay -0.04300246388757567 -1.8226043907381912 1.0 8825 +Phenotype MP:0031284 abdominal situs abnormality -0.04306648512132316 -1.8237647634911087 1.0 8826 +Biological Process GO:0034440 lipid oxidation -0.04340641298089509 -1.8299258916530647 1.0 8827 +Biological Process GO:0015804 neutral amino acid transport -0.04343586189944926 -1.8304596477319919 1.0 8828 +Biological Process GO:0046467 membrane lipid biosynthetic process -0.043445214807900534 -1.8306291674286943 1.0 8829 +Biological Process GO:0001711 endodermal cell fate commitment -0.04347953105301605 -1.8312511428809566 1.0 8830 +Biological Process GO:0060325 face morphogenesis -0.04356702642730559 -1.8328369799913804 1.0 8831 +Phenotype MP:0013793 abnormal large intestine goblet cell morphology -0.043662395669987975 -1.8345655294771883 1.0 8832 +Biological Process GO:0140374 antiviral innate immune response -0.04375946570636957 -1.8363249055271123 1.0 8833 +Biological Process GO:0007341 penetration of zona pellucida -0.043780663116639085 -1.836709104579042 1.0 8834 +Phenotype MP:0003283 abnormal digestive organ placement -0.04389997697640924 -1.8388716457207632 1.0 8835 +Biological Process GO:0006303 double-strand break repair via nonhomologous end joining -0.043921937937744016 -1.8392696839913354 1.0 8836 +Phenotype MP:0004618 thoracic vertebral transformation -0.04419245816879913 -1.844172812013944 1.0 8837 +Biological Process GO:1901264 carbohydrate derivative transport -0.04419250841988731 -1.844173722805413 1.0 8838 +Biological Process GO:0060272 embryonic skeletal joint morphogenesis -0.04428386072037238 -1.8458294659736452 1.0 8839 +Biological Process GO:0006356 regulation of transcription by RNA polymerase I -0.04431685968869892 -1.8464275660332523 1.0 8840 +Biological Process GO:0006858 extracellular transport -0.044328880301868434 -1.8466454373734125 1.0 8841 +Biological Process GO:0003351 epithelial cilium movement involved in extracellular fluid movement -0.044328880301868434 -1.8466454373734125 1.0 8841 +Phenotype MP:0012128 abnormal blastocyst formation -0.0443494178700885 -1.8470176769129962 1.0 8843 +Phenotype MP:0004695 increased length of long bones -0.044396949537571784 -1.8478791793961546 1.0 8844 +Phenotype MP:0030612 organic aciduria -0.044481714771059444 -1.8494155332209141 1.0 8845 +Phenotype MP:0010810 increased type II pneumocyte number -0.04455873697573165 -1.8508115461128831 1.0 8846 +Biological Process GO:0099601 regulation of neurotransmitter receptor activity -0.04473651755408281 -1.8540337854706912 1.0 8847 +Biological Process GO:0060581 cell fate commitment involved in pattern specification -0.044768692335635185 -1.8546169473009007 1.0 8848 +Biological Process GO:0060579 ventral spinal cord interneuron fate commitment -0.044768692335635185 -1.8546169473009007 1.0 8848 +Phenotype MP:0000756 forelimb paralysis -0.044799531642691015 -1.8551759039084472 1.0 8850 +Phenotype MP:0003929 decreased heart rate variability -0.04489260997635269 -1.8568629311015494 1.0 8851 +Phenotype MP:0011904 abnormal Schwann cell physiology -0.045072631518095596 -1.8601257874969848 1.0 8852 +Biological Process GO:0009247 glycolipid biosynthetic process -0.045119946929915056 -1.8609833703871383 1.0 8853 +Phenotype MP:0004931 enlarged epididymis -0.045151047471570394 -1.861547061822392 1.0 8854 +Biological Process GO:1901616 organic hydroxy compound catabolic process -0.0453529364755354 -1.8652062618346663 1.0 8855 +Biological Process GO:0018022 peptidyl-lysine methylation -0.04539238051204331 -1.865921177536063 1.0 8856 +Phenotype MP:0003880 abnormal central pattern generator function -0.04541386428110017 -1.8663105667868523 1.0 8857 +Phenotype MP:0010807 abnormal stomach position or orientation -0.0454438831598627 -1.8668546532867558 1.0 8858 +Phenotype MP:0020450 abnormal sperm progressive motility -0.04565665606509617 -1.8707111219509773 1.0 8859 +Phenotype MP:0009348 abnormal urine pH -0.045905167979106265 -1.8752153533897225 1.0 8860 +Phenotype MP:0010956 abnormal mitochondrial ATP synthesis coupled electron transport -0.0459258844489443 -1.875590835487295 1.0 8861 +Phenotype MP:0009645 crystalluria -0.04607113020933018 -1.8782233874230059 1.0 8862 +Phenotype MP:0021136 abnormal vertebrae shape -0.046312831212938166 -1.8826041723989047 1.0 8863 +Phenotype MP:0006281 abnormal tail development -0.04651337590657678 -1.8862390070407715 1.0 8864 +Phenotype MP:0004444 small supraoccipital bone -0.04662182977924911 -1.8882047129703654 1.0 8865 +Biological Process GO:0019731 antibacterial humoral response -0.046859664961663494 -1.8925154306682983 1.0 8866 +Phenotype MP:0009400 decreased skeletal muscle fiber size -0.047036834776635894 -1.895726600055384 1.0 8867 +Phenotype MP:0009615 abnormal zinc homeostasis -0.04704636393018635 -1.8958993141611746 1.0 8868 +Phenotype MP:0013210 abnormal primary cilium physiology -0.04706130284131582 -1.896170079099902 1.0 8869 +Phenotype MP:0009814 increased prostaglandin level -0.04712249637987842 -1.897279200412414 1.0 8870 +Phenotype MP:0010422 heart right ventricle hypoplasia -0.04745201124600862 -1.9032515950377162 1.0 8871 +Biological Process GO:0043279 response to alkaloid -0.04756518577026636 -1.9053028618844479 1.0 8872 +Biological Process GO:0015936 coenzyme A metabolic process -0.047687933145120986 -1.907527634837672 1.0 8873 +Biological Process GO:0000381 regulation of alternative mRNA splicing, via spliceosome -0.04770219240808382 -1.9077860812819254 1.0 8874 +Phenotype MP:0004608 abnormal cervical axis morphology -0.04776010667327357 -1.9088357663847848 1.0 8875 +Biological Process GO:0034655 nucleobase-containing compound catabolic process -0.04776583736549411 -1.9089396340973988 1.0 8876 +Biological Process GO:0034369 plasma lipoprotein particle remodeling -0.0478534537451929 -1.9105276644079787 1.0 8877 +Biological Process GO:0034368 protein-lipid complex remodeling -0.0478534537451929 -1.9105276644079787 1.0 8877 +Phenotype MP:0004100 abnormal spinal cord interneuron morphology -0.047967550545350734 -1.9125956473309633 1.0 8879 +Phenotype MP:0000539 distended urinary bladder -0.048001665514332714 -1.9132139746913739 1.0 8880 +Phenotype MP:0008025 brain vacuoles -0.04821280321372989 -1.9170408055590902 1.0 8881 +Phenotype MP:0001333 absent optic nerve -0.048265534464330795 -1.9179965495028242 1.0 8882 +Phenotype MP:0002631 abnormal epididymis morphology -0.04841843136940316 -1.9207677769888665 1.0 8883 +Biological Process GO:0006260 DNA replication -0.04848524576573898 -1.9219787752854083 1.0 8884 +Phenotype MP:0009038 decreased inferior colliculus size -0.04855571153530214 -1.9232559540310874 1.0 8885 +Phenotype MP:0020411 increased abdominal adipose tissue amount -0.04862330766978351 -1.924481121183662 1.0 8886 +Phenotype MP:0011874 enlarged urinary bladder -0.048908310363387164 -1.9296467411007998 1.0 8887 +Phenotype MP:0020451 decreased sperm progressive motility -0.04919952960866203 -1.934925034841201 1.0 8888 +Phenotype MP:0010520 sinoatrial block -0.04924093621878267 -1.9356755218181338 1.0 8889 +Phenotype MP:0009808 decreased oligodendrocyte number -0.04936068783218084 -1.9378459971615678 1.0 8890 +Biological Process GO:0042572 retinol metabolic process -0.049496335432557936 -1.9403045842624824 1.0 8891 +Biological Process GO:0003310 pancreatic A cell differentiation -0.049658014316436905 -1.943234983453401 1.0 8892 +Biological Process GO:0006284 base-excision repair -0.049765820566046504 -1.945188951337472 1.0 8893 +Biological Process GO:1901607 alpha-amino acid biosynthetic process -0.0497989840003592 -1.945790032311972 1.0 8894 +Biological Process GO:0006399 tRNA metabolic process -0.049955084780988424 -1.9486193294365122 1.0 8895 +Phenotype MP:0008545 absent sperm flagellum -0.05014027684627598 -1.9519759005932593 1.0 8896 +Biological Process GO:0051291 protein heterooligomerization -0.05017111729568979 -1.9525348779058282 1.0 8897 +Phenotype MP:0011962 increased cornea thickness -0.050251003282342666 -1.953982796304551 1.0 8898 +Biological Process GO:0003228 atrial cardiac muscle tissue development -0.05032916954169342 -1.955399544971186 1.0 8899 +Phenotype MP:0009280 decreased activated sperm motility -0.05046388781017219 -1.9578412881072143 1.0 8900 +Biological Process GO:2000142 regulation of DNA-templated transcription initiation -0.05047514182615509 -1.9580452650183584 1.0 8901 +Biological Process GO:0046040 IMP metabolic process -0.05078327720665521 -1.963630160510258 1.0 8902 +Biological Process GO:0009066 aspartate family amino acid metabolic process -0.05122200320380732 -1.9715819862295147 1.0 8903 +Biological Process GO:0141005 retrotransposon silencing by heterochromatin formation -0.05123372179588337 -1.971794383494479 1.0 8904 +Phenotype MP:0005134 decreased thyroid-stimulating hormone level -0.05127169290759914 -1.9724826027126021 1.0 8905 +Phenotype MP:0012282 abnormal sternebra number -0.051320612560929124 -1.9733692621767132 1.0 8906 +Biological Process GO:0048026 positive regulation of mRNA splicing, via spliceosome -0.051354698432405144 -1.9739870621503315 1.0 8907 +Biological Process GO:0050685 positive regulation of mRNA processing -0.051354698432405144 -1.9739870621503315 1.0 8907 +Phenotype MP:0009809 abnormal urine uric acid level -0.05150713051893274 -1.976749864888164 1.0 8909 +Biological Process GO:0170034 L-amino acid biosynthetic process -0.0515456015397171 -1.9774471448636042 1.0 8910 +Biological Process GO:0170038 proteinogenic amino acid biosynthetic process -0.0515456015397171 -1.9774471448636042 1.0 8910 +Biological Process GO:0009126 purine nucleoside monophosphate metabolic process -0.051707915002361604 -1.980389045674626 1.0 8912 +Phenotype MP:0004833 ovary atrophy -0.05185398553015519 -1.983036546363608 1.0 8913 +Phenotype MP:0000709 enlarged thymus -0.05196484323661976 -1.9850458213260334 1.0 8914 +Phenotype MP:0012490 abnormal cochlear VIII nucleus morphology -0.052265775181960406 -1.9905001559181001 1.0 8915 +Biological Process GO:0008380 RNA splicing -0.05264866092773968 -1.9974398876426573 1.0 8916 +Biological Process GO:0009167 purine ribonucleoside monophosphate metabolic process -0.05265039297389529 -1.9974712806516346 1.0 8917 +Phenotype MP:0008806 increased circulating amylase level -0.05271111603235723 -1.998571874601307 1.0 8918 +Biological Process GO:0035461 vitamin transmembrane transport -0.052816356833293776 -2.000479344213399 1.0 8919 +Biological Process GO:0046470 phosphatidylcholine metabolic process -0.05329073984759214 -2.0090774466243864 1.0 8920 +Phenotype MP:0011460 decreased urine chloride ion level -0.0535037158017595 -2.0129375955121307 1.0 8921 +Biological Process GO:0032392 DNA geometric change -0.05381356951393945 -2.018553635440728 1.0 8922 +Biological Process GO:0070296 sarcoplasmic reticulum calcium ion transport -0.05399293278851269 -2.0218045608682154 1.0 8923 +Phenotype MP:0000126 brittle teeth -0.05428019781686433 -2.02701118517477 1.0 8924 +Biological Process GO:0060013 righting reflex -0.05454750327314084 -2.031856046012548 1.0 8925 +Phenotype MP:0012270 cardiac edema -0.05457517850588944 -2.0323576543717183 1.0 8926 +Biological Process GO:0006261 DNA-templated DNA replication -0.05469327077550923 -2.034498054423011 1.0 8927 +Phenotype MP:0010393 shortened QRS complex duration -0.054845251060835265 -2.0372526683495176 1.0 8928 +Biological Process GO:0002920 regulation of humoral immune response -0.054850215449542716 -2.0373426469558926 1.0 8929 +Biological Process GO:0006825 copper ion transport -0.054991435050408155 -2.03990222551179 1.0 8930 +Biological Process GO:0006289 nucleotide-excision repair -0.05507433450782484 -2.041404762498149 1.0 8931 +Phenotype MP:0000348 abnormal aerobic fitness -0.055159006569066804 -2.0429394275935775 1.0 8932 +Phenotype MP:0002244 abnormal turbinate morphology -0.05518156388824358 -2.0433482747372427 1.0 8933 +Biological Process GO:0021702 cerebellar Purkinje cell differentiation -0.05526468085254366 -2.0448547539947253 1.0 8934 +Phenotype MP:0008941 reticulocytopenia -0.05535163994223824 -2.0464308710482966 1.0 8935 +Biological Process GO:0051028 mRNA transport -0.055390090082868104 -2.0471277725748855 1.0 8936 +Phenotype MP:0003154 abnormal soft palate morphology -0.05544437966244353 -2.048111760936546 1.0 8937 +Biological Process GO:0007616 long-term memory -0.05561385070885416 -2.0511833915995683 1.0 8938 +Phenotype MP:0010808 right-sided stomach -0.055637830298877144 -2.051618017133318 1.0 8939 +Biological Process GO:0021694 cerebellar Purkinje cell layer formation -0.05573934491946475 -2.053457950431342 1.0 8940 +Phenotype MP:0011045 decreased lung elastance -0.0559397351505766 -2.057089985469126 1.0 8941 +Biological Process GO:1901317 regulation of flagellated sperm motility -0.05617102918046357 -2.0612821460146704 1.0 8942 +Phenotype MP:0003157 impaired muscle relaxation -0.056173391755653945 -2.061324967243147 1.0 8943 +Biological Process GO:0006282 regulation of DNA repair -0.056189476265470883 -2.0616164959414096 1.0 8944 +Phenotype MP:0012230 abnormal sphingolipid level -0.056422705901382875 -2.065843738980064 1.0 8945 +Phenotype MP:0006076 abnormal circulating homocysteine level -0.05649648427904541 -2.067180958121009 1.0 8946 +Phenotype MP:0003604 single kidney -0.056537293762816354 -2.067920622295792 1.0 8947 +Phenotype MP:0002893 ketoaciduria -0.05661023640972318 -2.069242693974857 1.0 8948 +Phenotype MP:0005407 hyperalgesia -0.05663320669485139 -2.0696590260482854 1.0 8949 +Phenotype MP:0020525 abnormal thalamus size -0.056656219003546004 -2.0700761197909063 1.0 8950 +Biological Process GO:0051923 sulfation -0.056729423301909554 -2.0714029338531366 1.0 8951 +Phenotype MP:0000084 abnormal fontanelle morphology -0.056771945314104455 -2.0721736372817023 1.0 8952 +Phenotype MP:0030249 small frontonasal prominence -0.057006726034738664 -2.0764289934375797 1.0 8953 +Phenotype MP:0008893 detached sperm flagellum -0.05714740364966109 -2.078978748600769 1.0 8954 +Biological Process GO:0050953 sensory perception of light stimulus -0.05717975127475783 -2.0795650431875288 1.0 8955 +Phenotype MP:0005586 decreased tidal volume -0.05745843012954288 -2.0846160447221487 1.0 8956 +Biological Process GO:1904507 positive regulation of telomere maintenance in response to DNA damage -0.05770238463016075 -2.089037673905133 1.0 8957 +Biological Process GO:2000779 regulation of double-strand break repair -0.057755874303765165 -2.09000716412236 1.0 8958 +Biological Process GO:0051651 maintenance of location in cell -0.05782658511565342 -2.0912887842138352 1.0 8959 +Phenotype MP:0003977 abnormal circulating carnitine level -0.05785457559449747 -2.091796106348861 1.0 8960 +Biological Process GO:0046037 GMP metabolic process -0.057968932661394135 -2.0938688065572606 1.0 8961 +Phenotype MP:0012335 increased circulating homocysteine level -0.058479108256916934 -2.1031156427332554 1.0 8962 +Phenotype MP:0003061 decreased aerobic running capacity -0.05870259513236853 -2.107166300081277 1.0 8963 +Biological Process GO:1904505 regulation of telomere maintenance in response to DNA damage -0.05875176573365093 -2.1080575079295625 1.0 8964 +Biological Process GO:0007601 visual perception -0.05883456816173327 -2.1095582862775886 1.0 8965 +Biological Process GO:0071312 cellular response to alkaloid -0.058916155637205314 -2.111037043839345 1.0 8966 +Biological Process GO:0008652 amino acid biosynthetic process -0.05903141266708278 -2.113126055706556 1.0 8967 +Biological Process GO:0009308 amine metabolic process -0.059070434168246644 -2.1138333130347586 1.0 8968 +Biological Process GO:0006688 glycosphingolipid biosynthetic process -0.0591394593486263 -2.115084381373955 1.0 8969 +Phenotype MP:0020855 decreased cornea epithelium thickness -0.05915669591560402 -2.1153967908903613 1.0 8970 +Phenotype MP:0020853 abnormal cornea epithelium thickness -0.05927877460760245 -2.117609444093289 1.0 8971 +Biological Process GO:0001578 microtubule bundle formation -0.05960296321365233 -2.123485301262026 1.0 8972 +Phenotype MP:0014021 heterochrony -0.05967191505372482 -2.1247350403220264 1.0 8973 +Biological Process GO:0018345 protein palmitoylation -0.05993902284450647 -2.1295763185100958 1.0 8974 +Biological Process GO:0035881 amacrine cell differentiation -0.059946612282366196 -2.129713875635863 1.0 8975 +Phenotype MP:0008933 abnormal motile primary cilium physiology -0.059947568432117126 -2.129731205669256 1.0 8976 +Phenotype MP:0001866 nasal inflammation -0.059962531846259104 -2.1300024147204506 1.0 8977 +Biological Process GO:0006576 biogenic amine metabolic process -0.059991859903937295 -2.1305339802188596 1.0 8978 +Biological Process GO:0042573 retinoic acid metabolic process -0.060397090535760256 -2.137878708776724 1.0 8979 +Phenotype MP:0031351 abnormal sperm flagellum thickness -0.060524499761568595 -2.1401879768967578 1.0 8980 +Phenotype MP:0009350 decreased urine pH -0.06057518369422943 -2.1411066135900505 1.0 8981 +Phenotype MP:0009417 skeletal muscle atrophy -0.06090384910915758 -2.1470636120729782 1.0 8982 +Biological Process GO:0060046 regulation of acrosome reaction -0.06113447621615631 -2.1512436847673126 1.0 8983 +Biological Process GO:0001574 ganglioside biosynthetic process -0.06128287803557453 -2.1539334396760585 1.0 8984 +Phenotype MP:0011998 decreased embryonic cilium length -0.06128464975912751 -2.1539655518303586 1.0 8985 +Biological Process GO:0009219 pyrimidine deoxyribonucleotide metabolic process -0.061414182318952015 -2.1563133049778354 1.0 8986 +Phenotype MP:0011434 abnormal urine magnesium level -0.061478021613677214 -2.1574703801203854 1.0 8987 +Biological Process GO:0060287 epithelial cilium movement involved in determination of left/right asymmetry -0.061512120224530564 -2.1580884109928085 1.0 8988 +Phenotype MP:0020527 small thalamus -0.062382184875631186 -2.173858168232974 1.0 8989 +Biological Process GO:0017121 plasma membrane phospholipid scrambling -0.06257984594841925 -2.1774407377923226 1.0 8990 +Biological Process GO:0042446 hormone biosynthetic process -0.06258346539166038 -2.1775063395164986 1.0 8991 +Phenotype MP:0001432 abnormal food preference -0.06271016484535763 -2.1798027431512628 1.0 8992 +Biological Process GO:0050684 regulation of mRNA processing -0.06305673012309376 -2.1860841732620666 1.0 8993 +Biological Process GO:2000291 regulation of myoblast proliferation -0.06341125508216994 -2.1925098710916915 1.0 8994 +Phenotype MP:0000162 lordosis -0.06344378509516302 -2.1930994714245764 1.0 8995 +Biological Process GO:0010960 magnesium ion homeostasis -0.06365104061165971 -2.1968559384614843 1.0 8996 +Phenotype MP:0030388 large fontanelles -0.06368248087401263 -2.1974257872701277 1.0 8997 +Phenotype MP:0030189 broad snout -0.06373280960966543 -2.198337986084831 1.0 8998 +Biological Process GO:0006749 glutathione metabolic process -0.06383678213400468 -2.2002224684234744 1.0 8999 +Biological Process GO:0006403 RNA localization -0.06389042256867117 -2.2011946911564375 1.0 9000 +Biological Process GO:0032355 response to estradiol -0.06395935587688673 -2.2024440943300356 1.0 9001 +Phenotype MP:0000525 renal tubular acidosis -0.06415161126453728 -2.20592868686868 1.0 9002 +Biological Process GO:0060004 reflex -0.06438651071985557 -2.2101861950682493 1.0 9003 +Biological Process GO:0061003 positive regulation of dendritic spine morphogenesis -0.06472551077560174 -2.2163305069613446 1.0 9004 +Biological Process GO:0030148 sphingolipid biosynthetic process -0.06480464555127496 -2.217764809803143 1.0 9005 +Phenotype MP:0000161 scoliosis -0.0653174196660844 -2.227058743649733 1.0 9006 +Biological Process GO:0007130 synaptonemal complex assembly -0.06532061942389178 -2.2271167386548005 1.0 9007 +Biological Process GO:1902275 regulation of chromatin organization -0.06532924198399392 -2.2272730209258103 1.0 9008 +Biological Process GO:0032042 mitochondrial DNA metabolic process -0.06550603508742925 -2.2304773624875365 1.0 9009 +Biological Process GO:0003353 positive regulation of cilium movement -0.06568379686043757 -2.2336992610020627 1.0 9010 +Phenotype MP:0001385 pup cannibalization -0.06582051561390845 -2.236177262550208 1.0 9011 +Biological Process GO:0006670 sphingosine metabolic process -0.06633881248230988 -2.245571295261098 1.0 9012 +Biological Process GO:0030261 chromosome condensation -0.06638070099877957 -2.2463305166994614 1.0 9013 +Biological Process GO:0046519 sphingoid metabolic process -0.06648802370667917 -2.248275720481494 1.0 9014 +Biological Process GO:1901983 regulation of protein acetylation -0.06667960932389749 -2.251748173557732 1.0 9015 +Phenotype MP:0011050 abnormal respiratory motile cilium morphology -0.06668890240294978 -2.2519166088578935 1.0 9016 +Biological Process GO:0015693 magnesium ion transport -0.06676624438170764 -2.2533184175946843 1.0 9017 +Phenotype MP:0030705 abnormal glutamine level -0.06691301576082043 -2.25597862108127 1.0 9018 +Phenotype MP:0004122 abnormal sinus arrhythmia -0.0673428285758777 -2.2637688970608667 1.0 9019 +Biological Process GO:0006820 monoatomic anion transport -0.06740199091641275 -2.2648412032933027 1.0 9020 +Biological Process GO:0044282 small molecule catabolic process -0.06741924315802161 -2.265153896909434 1.0 9021 +Phenotype MP:0001893 non-obstructive hydrocephaly -0.0676952908790307 -2.270157209642008 1.0 9022 +Phenotype MP:0001867 rhinitis -0.068189719077006 -2.2791186272158623 1.0 9023 +Phenotype MP:0009279 abnormal activated sperm motility -0.06819916095118406 -2.279289759399536 1.0 9024 +Phenotype MP:0030690 abnormal serine level -0.06847370989735957 -2.284265907121725 1.0 9025 +Phenotype MP:0009823 abnormal sphingomyelin level -0.06849422120438131 -2.2846376706820557 1.0 9026 +Biological Process GO:0034312 diol biosynthetic process -0.06851669506650748 -2.2850450051824636 1.0 9027 +Biological Process GO:0072578 neurotransmitter-gated ion channel clustering -0.06865004080034853 -2.2874618713877797 1.0 9028 +Biological Process GO:1901361 organic cyclic compound catabolic process -0.0691091419982861 -2.2957829937675776 1.0 9029 +Phenotype MP:0009238 coiled sperm flagellum -0.06925435013947512 -2.2984148638624604 1.0 9030 +Biological Process GO:0062125 regulation of mitochondrial gene expression -0.06938797768637417 -2.3008368378761515 1.0 9031 +Biological Process GO:0015698 inorganic anion transport -0.06960225820003263 -2.3047206316579323 1.0 9032 +Phenotype MP:0008008 early cellular replicative senescence -0.07005432964721425 -2.312914341134862 1.0 9033 +Phenotype MP:0010799 stomach mucosa hyperplasia -0.07017948491973014 -2.3151827567777747 1.0 9034 +Phenotype MP:0009413 skeletal muscle fiber atrophy -0.07029691127922066 -2.317311087333923 1.0 9035 +Phenotype MP:0003928 increased heart rate variability -0.07061271724033324 -2.323035010648636 1.0 9036 +Biological Process GO:0042220 response to cocaine -0.07062732300880747 -2.3232997374397466 1.0 9037 +Biological Process GO:0042364 water-soluble vitamin biosynthetic process -0.07085662751412691 -2.3274558382287966 1.0 9038 +Biological Process GO:0046395 carboxylic acid catabolic process -0.07144236401931625 -2.338072201601167 1.0 9039 +Biological Process GO:0016054 organic acid catabolic process -0.07144236401931625 -2.338072201601167 1.0 9039 +Biological Process GO:0006739 NADP metabolic process -0.0716009738977923 -2.3409469756496186 1.0 9041 +Biological Process GO:0006575 cellular modified amino acid metabolic process -0.07176479503559441 -2.343916202787716 1.0 9042 +Biological Process GO:0045739 positive regulation of DNA repair -0.07199346325184153 -2.3480607709576757 1.0 9043 +Phenotype MP:0012232 abnormal ceramide level -0.07230685332402076 -2.3537409067424044 1.0 9044 +Biological Process GO:0006244 pyrimidine nucleotide catabolic process -0.07310237566530264 -2.3681595987157813 1.0 9045 +Biological Process GO:0009151 purine deoxyribonucleotide metabolic process -0.07310786319137996 -2.368259059088041 1.0 9046 +Biological Process GO:0009170 purine deoxyribonucleoside monophosphate metabolic process -0.0735364478217102 -2.3760270744517547 1.0 9047 +Phenotype MP:0011423 kidney cortex atrophy -0.07375203640738448 -2.3799345767914177 1.0 9048 +Biological Process GO:0007618 mating -0.07412314783662088 -2.3866609012555893 1.0 9049 +Biological Process GO:0090660 cerebrospinal fluid circulation -0.07414452878097522 -2.3870484268280934 1.0 9050 +Biological Process GO:0015695 organic cation transport -0.07452717101025397 -2.3939837448621364 1.0 9051 +Biological Process GO:0006721 terpenoid metabolic process -0.07471747163412679 -2.397432907677026 1.0 9052 +Biological Process GO:0016101 diterpenoid metabolic process -0.07471747163412679 -2.397432907677026 1.0 9052 +Biological Process GO:0001523 retinoid metabolic process -0.07471747163412679 -2.397432907677026 1.0 9052 +Biological Process GO:0000002 mitochondrial genome maintenance -0.07478458171465263 -2.398649265193588 1.0 9055 +Phenotype MP:0003998 decreased thermal nociceptive threshold -0.0756001118403058 -2.41343059447449 1.0 9056 +Biological Process GO:0009110 vitamin biosynthetic process -0.07563350169582872 -2.414035779290601 1.0 9057 +Biological Process GO:0071684 organism emergence from protective structure -0.07576645396038728 -2.4164455139395913 1.0 9058 +Biological Process GO:0001835 blastocyst hatching -0.07576645396038728 -2.4164455139395913 1.0 9058 +Biological Process GO:0035188 hatching -0.07576645396038728 -2.4164455139395913 1.0 9058 +Phenotype MP:0030634 abnormal taurine level -0.07584210788196488 -2.4178167269592628 1.0 9061 +Biological Process GO:0035082 axoneme assembly -0.07644083654649259 -2.4286685707623485 1.0 9062 +Biological Process GO:0009394 2'-deoxyribonucleotide metabolic process -0.07656422484574854 -2.4309049603491246 1.0 9063 +Biological Process GO:0019692 deoxyribose phosphate metabolic process -0.07656422484574854 -2.4309049603491246 1.0 9063 +Biological Process GO:0015697 quaternary ammonium group transport -0.07679208380344527 -2.435034860860919 1.0 9065 +Phenotype MP:0013274 abnormal vitamin or vitamin cofactor metabolism -0.07715487787565767 -2.4416104348021466 1.0 9066 +Phenotype MP:0013244 abnormal vitamin metabolism -0.07715487787565767 -2.4416104348021466 1.0 9066 +Phenotype MP:0011233 abnormal vitamin A metabolism -0.07715487787565767 -2.4416104348021466 1.0 9066 +Biological Process GO:0009262 deoxyribonucleotide metabolic process -0.07836451071803596 -2.4635348012844607 1.0 9069 +Biological Process GO:0007288 sperm axoneme assembly -0.07859457983922158 -2.4677047605914684 1.0 9070 +Biological Process GO:0072529 pyrimidine-containing compound catabolic process -0.07865705057849026 -2.4688370309252123 1.0 9071 +Biological Process GO:0043605 amide catabolic process -0.0788392143662473 -2.472138715124477 1.0 9072 +Phenotype MP:0031352 absent sperm axonemal central pair -0.07892288874190401 -2.4736552973573716 1.0 9073 +Biological Process GO:0009162 deoxyribonucleoside monophosphate metabolic process -0.07914855503752416 -2.47774545628374 1.0 9074 +Phenotype MP:0003979 increased circulating carnitine level -0.07995148574528987 -2.4922984234984433 1.0 9075 +Phenotype MP:0010570 prolonged ST segment -0.08027447146869005 -2.4981524786466633 1.0 9076 +Phenotype MP:0002662 abnormal cauda epididymis morphology -0.08039965529913284 -2.5004214118966006 1.0 9077 +Biological Process GO:0009063 amino acid catabolic process -0.08089918448678168 -2.5094752839435044 1.0 9078 +Biological Process GO:1990918 double-strand break repair involved in meiotic recombination -0.0818364416609092 -2.5264628929549695 1.0 9079 +Biological Process GO:0098656 monoatomic anion transmembrane transport -0.08243431465763762 -2.537299227941032 1.0 9080 +Phenotype MP:0010359 increased liver free fatty acids level -0.08257507283832366 -2.539850443343448 1.0 9081 +Biological Process GO:0033108 mitochondrial respiratory chain complex assembly -0.08270776434922555 -2.5422554518817293 1.0 9082 +Phenotype MP:0030657 abnormal glycine level -0.08327657471073047 -2.552565032101172 1.0 9083 +Phenotype MP:0002984 retina hypoplasia -0.08384155233362489 -2.5628051446582103 1.0 9084 +Phenotype MP:0013406 abnormal epidermal immune compartment -0.08428009728717756 -2.5707536889964695 1.0 9085 +Phenotype MP:0009281 abnormal hyperactivated sperm motility -0.08441711036450439 -2.5732370251088366 1.0 9086 +Phenotype MP:0009282 decreased hyperactivated sperm motility -0.08441711036450439 -2.5732370251088366 1.0 9086 +Phenotype MP:0006277 abnormal parasympathetic nervous system physiology -0.08488731877970035 -2.5817594637006622 1.0 9088 +Biological Process GO:0035306 positive regulation of dephosphorylation -0.08510731490334322 -2.5857468518323796 1.0 9089 +Phenotype MP:0005229 abnormal intervertebral disk development -0.085884116680077 -2.599826237114065 1.0 9090 +Biological Process GO:0006144 purine nucleobase metabolic process -0.0863544931306981 -2.6083517213161893 1.0 9091 +Phenotype MP:0009834 abnormal sperm annulus morphology -0.08715032894872698 -2.6227760949963157 1.0 9092 +Phenotype MP:0011569 abnormal azygos vein morphology -0.08770904476037811 -2.6329027134089067 1.0 9093 +Phenotype MP:0010767 abnormal female meiosis I arrest -0.08859373058647946 -2.6489374766805613 1.0 9094 +Biological Process GO:0009169 purine ribonucleoside monophosphate catabolic process -0.08864571528154763 -2.649879689446466 1.0 9095 +Biological Process GO:0019755 one-carbon compound transport -0.08879331770969334 -2.6525549555395918 1.0 9096 +Phenotype MP:0030941 enhanced autophagy -0.08905716513305806 -2.6573371401848838 1.0 9097 +Biological Process GO:0042403 thyroid hormone metabolic process -0.08915202870907235 -2.6590565245579723 1.0 9098 +Biological Process GO:0072530 purine-containing compound transmembrane transport -0.08962774148726038 -2.667678728687953 1.0 9099 +Biological Process GO:0010921 regulation of phosphatase activity -0.09005296790412487 -2.675385877067761 1.0 9100 +Phenotype MP:0011424 decreased urine uric acid level -0.09023139927815049 -2.6786199119740792 1.0 9101 +Biological Process GO:0009128 purine nucleoside monophosphate catabolic process -0.09043310882101752 -2.6822758592878957 1.0 9102 +Biological Process GO:0070286 axonemal dynein complex assembly -0.09151391964685995 -2.7018653510854502 1.0 9103 +Biological Process GO:0018200 peptidyl-glutamic acid modification -0.09163618350581304 -2.7040813604044094 1.0 9104 +Biological Process GO:0042398 cellular modified amino acid biosynthetic process -0.09259151957096856 -2.721396645896378 1.0 9105 +Biological Process GO:0009155 purine deoxyribonucleotide catabolic process -0.09274602067258098 -2.7241969491412967 1.0 9106 +Phenotype MP:0009879 abnormal arcus anterior morphology -0.09281284118452993 -2.7254080582821696 1.0 9107 +Biological Process GO:0015931 nucleobase-containing compound transport -0.09287947425483023 -2.726615770078613 1.0 9108 +Biological Process GO:0009125 nucleoside monophosphate catabolic process -0.09308674296851072 -2.730372476311981 1.0 9109 +Biological Process GO:0044273 sulfur compound catabolic process -0.09315994740989053 -2.7316992929663537 1.0 9110 +Biological Process GO:0046386 deoxyribose phosphate catabolic process -0.09346781863565656 -2.737279400703659 1.0 9111 +Biological Process GO:0009264 deoxyribonucleotide catabolic process -0.09346781863565656 -2.737279400703659 1.0 9111 +Biological Process GO:0009158 ribonucleoside monophosphate catabolic process -0.09409662216697856 -2.7486763457791348 1.0 9113 +Phenotype MP:0011435 increased urine magnesium level -0.09469142767392036 -2.7594570830929888 1.0 9114 +Biological Process GO:1901658 glycosyl compound catabolic process -0.09475258382180307 -2.7605655267064995 1.0 9115 +Biological Process GO:0009159 deoxyribonucleoside monophosphate catabolic process -0.09492648866511244 -2.763717519099718 1.0 9116 +Biological Process GO:0044458 motile cilium assembly -0.09514796765988809 -2.767731783990252 1.0 9117 +Phenotype MP:0004781 abnormal surfactant composition -0.09572835230275145 -2.778251145870197 1.0 9118 +Phenotype MP:0011751 abnormal X-Y chromosome synapsis during male meiosis -0.09622627205157763 -2.787275847142844 1.0 9119 +Biological Process GO:0000255 allantoin metabolic process -0.09681967186822149 -2.798031106585915 1.0 9120 +Biological Process GO:0006821 chloride transport -0.09715964453396286 -2.8041930468512177 1.0 9121 +Phenotype MP:0030982 abnormal copulatory plug deposition -0.09741193686680227 -2.8087657976662284 1.0 9122 +Biological Process GO:1901606 alpha-amino acid catabolic process -0.09797837548690502 -2.8190323905213397 1.0 9123 +Phenotype MP:0001771 abnormal circulating magnesium level -0.09955097417275227 -2.8475354442664185 1.0 9124 +Phenotype MP:0020883 abnormal magnesium level -0.09968668947628156 -2.8499952584741615 1.0 9125 +Biological Process GO:1902476 chloride transmembrane transport -0.09982490003155986 -2.8525002986479118 1.0 9126 +Phenotype MP:0010952 abnormal fatty acid beta-oxidation -0.10019520640291302 -2.8592120315902156 1.0 9127 +Phenotype MP:0010668 abnormal hepatic portal vein morphology -0.10024370411310612 -2.8600910434147755 1.0 9128 +Biological Process GO:0034656 nucleobase-containing small molecule catabolic process -0.10172443690680644 -2.8869290452398895 1.0 9129 +Biological Process GO:0042454 ribonucleoside catabolic process -0.10201319477620818 -2.892162727008127 1.0 9130 +Biological Process GO:0098661 inorganic anion transmembrane transport -0.10295604911841783 -2.9092517836324516 1.0 9131 +Biological Process GO:0009164 nucleoside catabolic process -0.10326063159201726 -2.9147722833587606 1.0 9132 +Biological Process GO:0015865 purine nucleotide transport -0.10400978865222998 -2.928350613382128 1.0 9133 +Biological Process GO:0051503 adenine nucleotide transport -0.10400978865222998 -2.928350613382128 1.0 9133 +Phenotype MP:0011979 abnormal magnesium ion homeostasis -0.10401479727609386 -2.9284413937423475 1.0 9135 +Biological Process GO:0006862 nucleotide transport -0.10542252804559893 -2.9539562476862744 1.0 9136 +Biological Process GO:0170040 proteinogenic amino acid catabolic process -0.10930153769988005 -3.024262564007585 1.0 9137 +Biological Process GO:0042219 cellular modified amino acid catabolic process -0.11008320697132401 -3.0384301717102713 1.0 9138 +Phenotype MP:0010093 decreased circulating magnesium level -0.11197217874549414 -3.072667427843485 1.0 9139 +Biological Process GO:0010569 regulation of double-strand break repair via homologous recombination -0.11214080060968001 -3.075723667239295 1.0 9140 +Biological Process GO:0120316 sperm flagellum assembly -0.11451615404335058 -3.1187764989584013 1.0 9141 +Biological Process GO:0009069 serine family amino acid metabolic process -0.11493690126857614 -3.126402462836933 1.0 9142 +Biological Process GO:0170035 L-amino acid catabolic process -0.11603660185072395 -3.146334327894779 1.0 9143 +Phenotype MP:0011051 abnormal respiratory motile cilium number -0.11865000049538832 -3.193701684040096 1.0 9144 +Phenotype MP:0011053 decreased respiratory motile cilia number -0.11865000049538832 -3.193701684040096 1.0 9144 +Phenotype MP:0030636 decreased taurine level -0.1216957784263244 -3.2489058329703577 1.0 9146 +Biological Process GO:0050884 neuromuscular process controlling posture -0.12307333544376853 -3.27387379336514 1.0 9147 +Biological Process GO:0000096 sulfur amino acid metabolic process -0.12583357391760996 -3.323902593641512 1.0 9148 +Biological Process GO:0006040 amino sugar metabolic process -0.1277234779489842 -3.3581567467602262 1.0 9149 +Phenotype MP:0004144 hypotonia -0.14393639965533334 -3.6520128862315966 1.0 9150 diff --git a/test/expected_result/expected_pipeline/All-Genes/Mouse-Combined/isolated_genes.txt b/test/expected_result/expected_pipeline/All-Genes/Mouse-Combined/isolated_genes.txt new file mode 100644 index 00000000..e69de29b diff --git a/test/expected_result/expected_pipeline/All-Genes/Mouse-Combined/isolated_genes_sym.txt b/test/expected_result/expected_pipeline/All-Genes/Mouse-Combined/isolated_genes_sym.txt new file mode 100644 index 00000000..e69de29b diff --git a/test/expected_result/expected_pipeline/All-Genes/clf.joblib b/test/expected_result/expected_pipeline/All-Genes/clf.joblib new file mode 100644 index 00000000..6f0b7619 Binary files /dev/null and b/test/expected_result/expected_pipeline/All-Genes/clf.joblib differ diff --git a/test/expected_result/expected_pipeline/All-Genes/df_convert_out_for_model.tsv b/test/expected_result/expected_pipeline/All-Genes/df_convert_out_for_model.tsv new file mode 100644 index 00000000..597b2289 --- /dev/null +++ b/test/expected_result/expected_pipeline/All-Genes/df_convert_out_for_model.tsv @@ -0,0 +1,178 @@ +Original ID Entrez ID Gene Name In STRING? +6457 6457 SH3 domain containing GRB2 like 3, endophilin A3 Y +7037 7037 transferrin receptor Y +57403 57403 RAB22A, member RAS oncogene family Y +3134 3134 major histocompatibility complex, class I, F Y +50807 50807 ArfGAP with SH3 domain, ankyrin repeat and PH domain 1 Y +93343 93343 multivesicular body subunit 12A Y +11311 11311 vacuolar protein sorting 45 homolog Y +8766 8766 RAB11A, member RAS oncogene family Y +5584 5584 protein kinase C iota Y +137492 137492 VPS37A subunit of ESCRT-I Y +30011 30011 SH3 domain containing kinase binding protein 1 Y +5337 5337 phospholipase D1 Y +3312 3312 heat shock protein family A (Hsp70) member 8 Y +155 155 adrenoceptor beta 3 Y +10015 10015 programmed cell death 6 interacting protein Y +55738 55738 ADP ribosylation factor GTPase activating protein 1 Y +57132 57132 charged multivesicular body protein 1B Y +153 153 adrenoceptor beta 1 Y +116986 116986 ArfGAP with GTPase domain, ankyrin repeat and PH domain 2 Y +163 163 adaptor related protein complex 2 subunit beta 1 Y +11267 11267 SNF8 subunit of ESCRT-II Y +1950 1950 epidermal growth factor Y +3559 3559 interleukin 2 receptor subunit alpha Y +6714 6714 SRC proto-oncogene, non-receptor tyrosine kinase Y +84249 84249 pleckstrin and Sec7 domain containing 2 Y +2066 2066 erb-b2 receptor tyrosine kinase 4 Y +29924 29924 epsin 1 Y +30846 30846 EH domain containing 2 Y +84612 84612 par-6 family cell polarity regulator beta Y +440073 440073 IQ motif and Sec7 domain ArfGEF 3 Y +2060 2060 epidermal growth factor receptor pathway substrate 15 Y +3303 3303 heat shock protein family A (Hsp70) member 1A Y +3561 3561 interleukin 2 receptor subunit gamma Y +9101 9101 ubiquitin specific peptidase 8 Y +51160 51160 VPS28 subunit of ESCRT-I Y +56904 56904 SH3 domain containing GRB2 like, endophilin B2 Y +3304 3304 heat shock protein family A (Hsp70) member 1B Y +23527 23527 ArfGAP with coiled-coil, ankyrin repeat and PH domains 2 Y +5878 5878 RAB5C, member RAS oncogene family Y +3560 3560 interleukin 2 receptor subunit beta Y +7189 7189 TNF receptor associated factor 6 Y +3949 3949 low density lipoprotein receptor Y +92421 92421 charged multivesicular body protein 4C Y +26286 26286 ADP ribosylation factor GTPase activating protein 3 Y +5979 5979 ret proto-oncogene Y +9922 9922 IQ motif and Sec7 domain ArfGEF 1 Y +11031 11031 RAB31, member RAS oncogene family Y +116983 116983 ArfGAP with coiled-coil, ankyrin repeat and PH domains 3 Y +2261 2261 fibroblast growth factor receptor 3 Y +9230 9230 RAB11B, member RAS oncogene family Y +5867 5867 RAB4A, member RAS oncogene family Y +64145 64145 rabenosyn, RAB effector Y +867 867 Cbl proto-oncogene Y +57154 57154 SMAD specific E3 ubiquitin protein ligase 1 Y +84313 84313 vacuolar protein sorting 25 homolog Y +3577 3577 C-X-C motif chemokine receptor 1 Y +116987 116987 ArfGAP with GTPase domain, ankyrin repeat and PH domain 1 Y +10617 10617 STAM binding protein Y +1436 1436 colony stimulating factor 1 receptor Y +200576 200576 phosphoinositide kinase, FYVE-type zinc finger containing Y +83737 83737 itchy E3 ubiquitin protein ligase Y +23396 23396 phosphatidylinositol-4-phosphate 5-kinase type 1 gamma Y +3310 3310 heat shock protein family A (Hsp70) member 6 Y +5590 5590 protein kinase C zeta Y +3133 3133 major histocompatibility complex, class I, E Y +382 382 ADP ribosylation factor 6 Y +6456 6456 SH3 domain containing GRB2 like 2, endophilin A1 Y +30845 30845 EH domain containing 3 Y +2264 2264 fibroblast growth factor receptor 4 Y +5868 5868 RAB5A, member RAS oncogene family Y +84440 84440 RAB11 family interacting protein 4 Y +116984 116984 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 2 Y +5869 5869 RAB5B, member RAS oncogene family Y +23624 23624 Cbl proto-oncogene C Y +22841 22841 RAB11 family interacting protein 2 Y +161 161 adaptor related protein complex 2 subunit alpha 2 Y +23096 23096 IQ motif and Sec7 domain ArfGEF 2 Y +5338 5338 phospholipase D2 Y +84552 84552 par-6 family cell polarity regulator gamma Y +51028 51028 vacuolar protein sorting 36 homolog Y +55616 55616 ArfGAP with SH3 domain, ankyrin repeat and PH domain 3 Y +9829 9829 DnaJ heat shock protein family (Hsp40) member C6 Y +3815 3815 KIT proto-oncogene, receptor tyrosine kinase Y +9135 9135 rabaptin, RAB GTPase binding effector protein 1 Y +23362 23362 pleckstrin and Sec7 domain containing 3 Y +9146 9146 hepatocyte growth factor-regulated tyrosine kinase substrate Y +128866 128866 charged multivesicular body protein 4B Y +156 156 G protein-coupled receptor kinase 2 Y +8218 8218 clathrin heavy chain like 1 Y +89853 89853 multivesicular body subunit 12B Y +154 154 adrenoceptor beta 2 Y +64744 64744 small ArfGAP2 Y +9525 9525 vacuolar protein sorting 4 homolog B Y +84364 84364 ADP ribosylation factor GTPase activating protein 2 Y +9727 9727 RAB11 family interacting protein 3 Y +23550 23550 pleckstrin and Sec7 domain containing 4 Y +8853 8853 ArfGAP with SH3 domain, ankyrin repeat and PH domain 2 Y +1956 1956 epidermal growth factor receptor Y +8395 8395 phosphatidylinositol-4-phosphate 5-kinase type 1 beta Y +6455 6455 SH3 domain containing GRB2 like 1, endophilin A2 Y +64411 64411 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 3 Y +5156 5156 platelet derived growth factor receptor alpha Y +51100 51100 SH3 domain containing GRB2 like, endophilin B1 Y +8027 8027 signal transducing adaptor molecule Y +408 408 arrestin beta 1 Y +3305 3305 heat shock protein family A (Hsp70) member 1 like Y +51534 51534 vesicle trafficking 1 Y +2868 2868 G protein-coupled receptor kinase 4 Y +9744 9744 ArfGAP with coiled-coil, ankyrin repeat and PH domains 1 Y +3106 3106 major histocompatibility complex, class I, B Y +51652 51652 charged multivesicular body protein 3 Y +3265 3265 HRas proto-oncogene, GTPase Y +27243 27243 charged multivesicular body protein 2A Y +10938 10938 EH domain containing 1 Y +60682 60682 small ArfGAP 1 Y +157 157 G protein-coupled receptor kinase 3 Y +26056 26056 RAB11 family interacting protein 5 Y +10059 10059 dynamin 1 like Y +2321 2321 fms related receptor tyrosine kinase 1 Y +80230 80230 RUN and FYVE domain containing 1 Y +1173 1173 adaptor related protein complex 2 subunit mu 1 Y +1175 1175 adaptor related protein complex 2 subunit sigma 1 Y +160 160 adaptor related protein complex 2 subunit alpha 1 Y +3306 3306 heat shock protein family A (Hsp70) member 2 Y +3135 3135 major histocompatibility complex, class I, G Y +1234 1234 C-C motif chemokine receptor 5 Y +2149 2149 coagulation factor II thrombin receptor Y +8411 8411 early endosome antigen 1 Y +3791 3791 kinase insert domain receptor Y +51510 51510 charged multivesicular body protein 5 Y +23327 23327 NEDD4 like E3 ubiquitin protein ligase Y +409 409 arrestin beta 2 Y +11059 11059 WW domain containing E3 ubiquitin protein ligase 1 Y +3579 3579 C-X-C motif chemokine receptor 2 Y +27183 27183 vacuolar protein sorting 4 homolog A Y +8396 8396 phosphatidylinositol-5-phosphate 4-kinase type 2 beta Y +1601 1601 DAB adaptor protein 2 Y +1211 1211 clathrin light chain A Y +3480 3480 insulin like growth factor 1 receptor Y +9815 9815 GIT ArfGAP 2 Y +26119 26119 low density lipoprotein receptor adaptor protein 1 Y +64750 64750 SMAD specific E3 ubiquitin protein ligase 2 Y +26052 26052 dynamin 3 Y +4914 4914 neurotrophic receptor tyrosine kinase 1 Y +25978 25978 charged multivesicular body protein 2B Y +8394 8394 phosphatidylinositol-4-phosphate 5-kinase type 1 alpha Y +1212 1212 clathrin light chain B Y +30844 30844 EH domain containing 4 Y +131890 131890 G protein-coupled receptor kinase 7 Y +79720 79720 VPS37B subunit of ESCRT-I Y +7251 7251 tumor susceptibility 101 Y +50855 50855 par-6 family cell polarity regulator alpha Y +116985 116985 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 1 Y +5662 5662 pleckstrin and Sec7 domain containing Y +2870 2870 G protein-coupled receptor kinase 6 Y +10193 10193 ring finger protein 41 Y +1785 1785 dynamin 2 Y +155382 155382 VPS37D subunit of ESCRT-I Y +22905 22905 epsin 2 Y +3105 3105 major histocompatibility complex, class I, A Y +55048 55048 VPS37C subunit of ESCRT-I Y +10254 10254 signal transducing adaptor molecule 2 Y +55040 55040 epsin 3 Y +7852 7852 C-X-C motif chemokine receptor 4 Y +1759 1759 dynamin 1 Y +4193 4193 MDM2 proto-oncogene Y +2869 2869 G protein-coupled receptor kinase 5 Y +2065 2065 erb-b2 receptor tyrosine kinase 3 Y +6011 6011 G protein-coupled receptor kinase 1 Y +4734 4734 NEDD4 E3 ubiquitin protein ligase Y +28964 28964 GIT ArfGAP 1 Y +4233 4233 MET proto-oncogene, receptor tyrosine kinase Y +80223 80223 RAB11 family interacting protein 1 Y +79643 79643 charged multivesicular body protein 6 Y +3107 3107 major histocompatibility complex, class I, C Y +2263 2263 fibroblast growth factor receptor 2 Y +56288 56288 par-3 family cell polarity regulator Y diff --git a/test/expected_result/expected_pipeline/All-Genes/model_level_config.json b/test/expected_result/expected_pipeline/All-Genes/model_level_config.json new file mode 100644 index 00000000..39a4bf57 --- /dev/null +++ b/test/expected_result/expected_pipeline/All-Genes/model_level_config.json @@ -0,0 +1,93437 @@ +{ + "model_genes": [ + "6457", + "7037", + "57403", + "3134", + "50807", + "93343", + "11311", + "8766", + "5584", + "137492", + "998", + "30011", + "5337", + "3312", + "155", + "10015", + "55738", + "57132", + "153", + "116986", + "163", + "11267", + "1950", + "3559", + "6714", + "84249", + "2066", + "29924", + "1213", + "30846", + "84612", + "440073", + "2060", + "3303", + "3561", + "9101", + "51160", + "56904", + "3304", + "23527", + "5878", + "3560", + "7189", + "3949", + "92421", + "26286", + "5979", + "9922", + "11031", + "116983", + "2261", + "9230", + "5867", + "64145", + "867", + "57154", + "84313", + "3577", + "116987", + "10617", + "1436", + "200576", + "83737", + "23396", + "3310", + "5590", + "3133", + "382", + "6456", + "30845", + "868", + "2264", + "5868", + "84440", + "116984", + "5869", + "23624", + "22841", + "161", + "23096", + "5338", + "84552", + "51028", + "55616", + "9829", + "3815", + "29082", + "9135", + "23362", + "9146", + "128866", + "156", + "8218", + "89853", + "154", + "64744", + "9525", + "84364", + "9727", + "23550", + "8853", + "1956", + "8395", + "6455", + "64411", + "5156", + "51100", + "8027", + "408", + "3305", + "51534", + "2868", + "9744", + "3106", + "51652", + "3265", + "27243", + "10938", + "60682", + "157", + "26056", + "10059", + "2321", + "80230", + "1173", + "1175", + "160", + "3306", + "3135", + "1234", + "2149", + "8411", + "3791", + "51510", + "23327", + "409", + "11059", + "3579", + "27183", + "8396", + "1601", + "1211", + "3480", + "9815", + "26119", + "64750", + "26052", + "4914", + "25978", + "8394", + "1212", + "30844", + "131890", + "79720", + "7251", + "50855", + "116985", + "5662", + "2870", + "10193", + "1785", + "155382", + "22905", + "3105", + "55048", + "10254", + "55040", + "7852", + "1759", + "4193", + "2869", + "2065", + "6011", + "4734", + "28964", + "4233", + "80223", + "79643", + "3107", + "2263", + "56288" + ], + "pos_genes_in_net": [ + "10015", + "10059", + "10193", + "10254", + "10617", + "10938", + "11031", + "11059", + "11267", + "11311", + "116983", + "116984", + "116985", + "116986", + "116987", + "1173", + "1175", + "1211", + "1212", + "1234", + "128866", + "131890", + "137492", + "1436", + "153", + "154", + "155", + "155382", + "156", + "157", + "160", + "1601", + "161", + "163", + "1759", + "1785", + "1950", + "1956", + "200576", + "2060", + "2065", + "2066", + "2149", + "2261", + "2263", + "2264", + "22841", + "22905", + "23096", + "2321", + "23327", + "23362", + "23396", + "23527", + "23550", + "23624", + "25978", + "26052", + "26056", + "26119", + "26286", + "27183", + "27243", + "2868", + "2869", + "2870", + "28964", + "29924", + "30011", + "30844", + "30845", + "30846", + "3105", + "3106", + "3107", + "3133", + "3134", + "3135", + "3265", + "3303", + "3304", + "3305", + "3306", + "3310", + "3312", + "3480", + "3559", + "3560", + "3561", + "3577", + "3579", + "3791", + "3815", + "382", + "3949", + "408", + "409", + "4193", + "4233", + "440073", + "4734", + "4914", + "50807", + "50855", + "51028", + "51100", + "51160", + "51510", + "51534", + "5156", + "51652", + "5337", + "5338", + "55040", + "55048", + "55616", + "55738", + "5584", + "5590", + "56288", + "5662", + "56904", + "57132", + "57154", + "57403", + "5867", + "5868", + "5869", + "5878", + "5979", + "6011", + "60682", + "64145", + "64411", + "6455", + "6456", + "6457", + "64744", + "64750", + "6714", + "7037", + "7189", + "7251", + "7852", + "79643", + "79720", + "80223", + "80230", + "8027", + "8218", + "83737", + "8394", + "8395", + "8396", + "8411", + "84249", + "84313", + "84364", + "84440", + "84552", + "84612", + "867", + "8766", + "8853", + "89853", + "9101", + "9135", + "9146", + "9230", + "92421", + "93343", + "9525", + "9727", + "9744", + "9815", + "9829", + "9922" + ], + "genes_not_in_net": [ + "1213", + "29082", + "868", + "998" + ], + "net_genes": [ + "1", + "10", + "100", + "1000", + "10000", + "100008586", + "10001", + "10002", + "10003", + "100033411", + "100037417", + "10004", + "100049587", + "10005", + "10006", + "10007", + "10008", + "10009", + "1001", + "10010", + "100101267", + "100101467", + "100101490", + "10011", + "100113407", + "100125288", + "100126572", + "100127206", + "100127983", + "100128071", + "100128327", + "100128553", + "100128569", + "100128731", + "100128908", + "100128927", + "100129053", + "100129128", + "100129216", + "100129239", + "100129250", + "100129271", + "100129278", + "100129361", + "100129480", + "100129515", + "100129520", + "100129543", + "100129583", + "100129654", + "100129669", + "100129792", + "100129842", + "100129924", + "100129969", + "10013", + "100130086", + "100130274", + "100130301", + "100130311", + "100130348", + "100130361", + "100130519", + "100130613", + "100130705", + "100130733", + "100130742", + "100130771", + "100130827", + "100130890", + "100130933", + "100130958", + "100130988", + "100131017", + "100131137", + "100131187", + "100131211", + "100131244", + "100131303", + "100131378", + "100131390", + "100131439", + "100131608", + "100131755", + "100131801", + "100131827", + "100131897", + "100131902", + "100131980", + "100132015", + "100132074", + "100132247", + "100132386", + "100132396", + "100132399", + "100132406", + "100132463", + "100132476", + "100132916", + "100132963", + "100132994", + "100133053", + "100133093", + "100133251", + "100133267", + "100133315", + "100133941", + "100134444", + "100134934", + "100134938", + "100137047", + "100137049", + "10014", + "100141515", + "100142659", + "100144748", + "10015", + "100151643", + "10016", + "100169851", + "10017", + "100170229", + "100170765", + "100170841", + "10018", + "100188893", + "10019", + "100190949", + "100191040", + "1002", + "10020", + "10021", + "10022", + "10023", + "10024", + "10025", + "10026", + "100271715", + "100271846", + "100271849", + "100271927", + "100272147", + "100287045", + "100287144", + "100287171", + "100287178", + "100287205", + "100287226", + "100287238", + "100287284", + "100287327", + "100287364", + "100287399", + "100287404", + "100287441", + "100287478", + "100287482", + "100287513", + "100287520", + "100287718", + "100287898", + "100287932", + "100288072", + "100288287", + "100288323", + "100288332", + "100288413", + "100288687", + "100288695", + "100288797", + "100288801", + "100288814", + "100288842", + "100288966", + "100289087", + "100289187", + "100289255", + "100289279", + "100289462", + "100289635", + "100289678", + "100293516", + "1003", + "100302736", + "100303755", + "100310812", + "100310846", + "100316904", + "100329135", + "10036", + "10038", + "100381270", + "10039", + "1004", + "10040", + "100419780", + "10042", + "100423062", + "10043", + "100431172", + "10044", + "10045", + "10046", + "10047", + "10048", + "10049", + "1005", + "10050", + "100500938", + "100505385", + "100505478", + "100505573", + "100505576", + "100505591", + "100505724", + "100505753", + "100505841", + "100505876", + "100505989", + "100505993", + "100506013", + "100506049", + "100506127", + "100506144", + "100506164", + "100506243", + "100506374", + "100506540", + "100506564", + "100506581", + "100506658", + "100507003", + "100507027", + "100507043", + "100507050", + "100507055", + "100507096", + "100507170", + "100507203", + "100507290", + "100507341", + "100507421", + "100507436", + "100507537", + "100507588", + "100507607", + "100507608", + "100507650", + "100507679", + "100507747", + "100509620", + "10051", + "10052", + "100526664", + "100526693", + "100526694", + "100526737", + "100526739", + "100526740", + "100526760", + "100526761", + "100526767", + "100526772", + "100526773", + "100526783", + "100526794", + "100526835", + "100526842", + "100527943", + "100527949", + "100527963", + "100527978", + "100528017", + "100528020", + "100528021", + "100528030", + "100528062", + "100528064", + "100529063", + "100529097", + "100529144", + "100529209", + "100529215", + "100529239", + "100529240", + "100529241", + "100529251", + "100529257", + "100529261", + "10053", + "100532724", + "100532726", + "100532731", + "100533106", + "100533177", + "100533181", + "100533464", + "100533467", + "100533496", + "100533952", + "100534592", + "100534599", + "10054", + "10055", + "10056", + "10057", + "10058", + "10059", + "1006", + "10060", + "10061", + "10062", + "10063", + "100631383", + "100652824", + "100653515", + "10066", + "10067", + "10068", + "10069", + "1007", + "10071", + "10072", + "10073", + "10075", + "10076", + "10077", + "10078", + "10079", + "1008", + "10081", + "10082", + "100820829", + "10083", + "10084", + "10085", + "10086", + "100861540", + "100862671", + "10087", + "100874261", + "100885848", + "100885850", + "10089", + "1009", + "10090", + "10092", + "10093", + "10094", + "10095", + "10096", + "10097", + "10098", + "10099", + "100996331", + "100996492", + "100996521", + "100996693", + "100996717", + "100996746", + "100996758", + "100996763", + "100996928", + "100996939", + "101", + "1010", + "10100", + "10101", + "10102", + "10103", + "10105", + "101059915", + "101059918", + "101059938", + "101059953", + "10106", + "101060200", + "101060211", + "101060226", + "101060233", + "101060301", + "101060321", + "101060351", + "101060376", + "101060389", + "101060684", + "10107", + "10109", + "10110", + "10111", + "10112", + "10113", + "10114", + "10116", + "10117", + "1012", + "10120", + "10121", + "10123", + "10124", + "10125", + "10126", + "10127", + "10128", + "10129", + "1013", + "10130", + "10131", + "10133", + "10134", + "10135", + "10136", + "10137", + "10138", + "10139", + "1014", + "10140", + "101410538", + "10142", + "10143", + "10144", + "10146", + "10147", + "10148", + "10149", + "1015", + "10150", + "10152", + "10153", + "10154", + "10155", + "10156", + "10157", + "10158", + "10159", + "1016", + "10160", + "10161", + "10162", + "10163", + "10164", + "10165", + "10166", + "101669762", + "10168", + "10169", + "1017", + "10170", + "10171", + "10172", + "10174", + "10175", + "10178", + "10179", + "1018", + "10180", + "10181", + "10184", + "10186", + "10188", + "10189", + "1019", + "10190", + "101927367", + "101927581", + "101927685", + "101928108", + "101928147", + "101928527", + "101928601", + "101928603", + "101928677", + "101928917", + "101929355", + "101929469", + "101929726", + "101929796", + "101929926", + "101929983", + "101929989", + "10193", + "10194", + "10195", + "10196", + "10197", + "10198", + "10199", + "102", + "1020", + "10200", + "10201", + "10202", + "10203", + "10204", + "10205", + "10206", + "10207", + "10208", + "10209", + "1021", + "10210", + "10211", + "10212", + "10213", + "10214", + "10215", + "102157402", + "10216", + "10217", + "10218", + "10219", + "1022", + "10220", + "10221", + "10223", + "10224", + "10225", + "10226", + "10227", + "10228", + "102288414", + "10229", + "10231", + "10232", + "10233", + "10234", + "10235", + "10236", + "10237", + "10238", + "10239", + "1024", + "10240", + "10241", + "10242", + "10243", + "10244", + "10245", + "10246", + "10247", + "10248", + "10249", + "1025", + "10250", + "10251", + "10252", + "10253", + "10254", + "10256", + "10257", + "1026", + "10260", + "10261", + "10262", + "10263", + "10265", + "10266", + "10267", + "10268", + "10269", + "1027", + "10270", + "10272", + "102723407", + "102723502", + "102723508", + "102723526", + "102723532", + "102723547", + "102723555", + "102723631", + "102723655", + "102723680", + "102723713", + "102723737", + "102723796", + "102723859", + "102723971", + "102724101", + "102724127", + "102724473", + "102724488", + "102724536", + "102724631", + "102724657", + "102724862", + "10273", + "10274", + "10276", + "10277", + "10278", + "10279", + "1028", + "10280", + "102800317", + "10282", + "10283", + "10284", + "10285", + "10286", + "10287", + "10288", + "10289", + "1029", + "10290", + "10291", + "10293", + "10294", + "10295", + "10296", + "10297", + "10298", + "10299", + "103", + "1030", + "10300", + "10302", + "10307", + "10308", + "10309", + "1031", + "10311", + "10312", + "10313", + "10314", + "10316", + "10317", + "10318", + "10319", + "1032", + "10320", + "10321", + "10322", + "10324", + "10325", + "10326", + "10327", + "10328", + "10329", + "1033", + "10330", + "10331", + "10332", + "10335", + "10336", + "10342", + "10343", + "10344", + "10345", + "10346", + "10347", + "10349", + "10350", + "10351", + "10352", + "1036", + "10360", + "10361", + "10362", + "10363", + "10365", + "10367", + "10368", + "10369", + "10370", + "10371", + "10376", + "10379", + "10380", + "10381", + "10382", + "10383", + "10384", + "10385", + "10388", + "10389", + "1039", + "10390", + "10391", + "103910", + "10392", + "10393", + "10394", + "10395", + "10396", + "10397", + "10398", + "10399", + "104", + "1040", + "10400", + "10401", + "10402", + "10403", + "10404", + "10406", + "10407", + "10409", + "1041", + "10410", + "10411", + "10412", + "10413", + "10417", + "10418", + "10419", + "10420", + "10421", + "10422", + "10423", + "10424", + "10425", + "10426", + "10427", + "10428", + "1043", + "10430", + "10432", + "104326056", + "10434", + "10435", + "10436", + "10437", + "10438", + "10439", + "1044", + "10440", + "10443", + "10444", + "10445", + "10446", + "10447", + "10449", + "1045", + "10450", + "10451", + "10452", + "10454", + "10455", + "10456", + "10457", + "10458", + "10459", + "1046", + "10460", + "10461", + "10462", + "10463", + "10464", + "10465", + "10466", + "10467", + "10468", + "10469", + "1047", + "10471", + "10472", + "10473", + "10474", + "10475", + "10476", + "10477", + "10478", + "10479", + "1048", + "10480", + "10481", + "10482", + "10483", + "10484", + "10486", + "10487", + "10488", + "10489", + "10490", + "104909134", + "10491", + "10492", + "10493", + "10494", + "10495", + "10497", + "10498", + "10499", + "105", + "1050", + "10500", + "10501", + "10505", + "10507", + "10509", + "1051", + "10512", + "10513", + "10514", + "10516", + "10517", + "10518", + "105180390", + "105180391", + "10519", + "1052", + "10520", + "10521", + "10522", + "10523", + "10524", + "10525", + "10526", + "10527", + "10528", + "10529", + "1053", + "10531", + "10533", + "10534", + "10535", + "10536", + "105369274", + "10537", + "105371045", + "105371242", + "105371346", + "105372267", + "105372280", + "105372481", + "105373377", + "105375355", + "105376230", + "105376752", + "105378220", + "105378696", + "105378803", + "105378952", + "10538", + "10539", + "1054", + "10540", + "10541", + "10542", + "10544", + "10548", + "10549", + "10550", + "10551", + "10552", + "10553", + "10554", + "10555", + "10556", + "10557", + "10558", + "10559", + "10560", + "10561", + "10562", + "10563", + "10564", + "10565", + "10566", + "10567", + "10568", + "10569", + "10570", + "10572", + "10573", + "10574", + "10575", + "10576", + "10577", + "10578", + "10579", + "1058", + "10580", + "10581", + "10584", + "10585", + "10586", + "10587", + "10588", + "10589", + "1059", + "10590", + "10591", + "10592", + "10594", + "10595", + "10597", + "10598", + "10599", + "1060", + "10600", + "10602", + "10603", + "10605", + "10606", + "10607", + "10608", + "10609", + "10610", + "10611", + "10612", + "10613", + "10614", + "10615", + "10616", + "10617", + "10618", + "1062", + "10620", + "10621", + "10622", + "10623", + "10625", + "10626", + "10627", + "10628", + "10629", + "1063", + "10630", + "10631", + "10632", + "10633", + "10634", + "10635", + "10636", + "10637", + "10640", + "10641", + "10642", + "10643", + "10644", + "10645", + "10647", + "10648", + "10650", + "10651", + "10652", + "10653", + "10654", + "10655", + "10656", + "10657", + "10658", + "10659", + "1066", + "10660", + "10661", + "10663", + "10664", + "10665", + "10666", + "10667", + "10668", + "10669", + "10670", + "10671", + "10672", + "10673", + "10675", + "10677", + "10678", + "1068", + "10681", + "10682", + "10683", + "10686", + "106865373", + "10687", + "1069", + "10690", + "10691", + "10692", + "10693", + "10694", + "10695", + "10699", + "107", + "1070", + "1071", + "10712", + "10713", + "10714", + "10716", + "10717", + "10718", + "1072", + "10720", + "10721", + "10723", + "10724", + "10725", + "10726", + "10728", + "107282092", + "1073", + "10730", + "10732", + "10733", + "10734", + "10735", + "10736", + "10738", + "10739", + "10741", + "10742", + "10743", + "10744", + "10745", + "10746", + "10747", + "10749", + "1075", + "10750", + "10752", + "10753", + "10755", + "10758", + "10761", + "10762", + "10763", + "10765", + "10766", + "10767", + "10768", + "10769", + "10771", + "10772", + "10773", + "10775", + "10776", + "10777", + "10780", + "10781", + "10782", + "10783", + "10785", + "10786", + "10787", + "10788", + "10791", + "10793", + "10794", + "10795", + "10797", + "10798", + "107983988", + "107983993", + "107984345", + "107984640", + "107986096", + "107986818", + "107987155", + "10799", + "108", + "1080", + "10800", + "10801", + "10802", + "10803", + "10804", + "10806", + "10807", + "10808", + "10809", + "1081", + "10810", + "10811", + "10813", + "10814", + "10815", + "10816", + "10817", + "10818", + "1082", + "10825", + "10826", + "10827", + "10838", + "1084", + "10840", + "10841", + "10842", + "10844", + "10845", + "10846", + "10847", + "10848", + "10849", + "10850", + "10855", + "10856", + "10857", + "10858", + "10859", + "10861", + "10863", + "10864", + "10865", + "10867", + "10868", + "10869", + "1087", + "10870", + "10871", + "10873", + "10874", + "10875", + "10876", + "10877", + "10878", + "1088", + "10880", + "10881", + "10882", + "10884", + "10885", + "10886", + "10887", + "10888", + "1089", + "10890", + "10891", + "10892", + "10893", + "10894", + "10897", + "10898", + "10899", + "109", + "10900", + "10901", + "10902", + "10903", + "10904", + "10905", + "10906", + "10907", + "10908", + "10910", + "10911", + "10912", + "10913", + "10914", + "10915", + "10916", + "10917", + "10919", + "10920", + "10921", + "10922", + "10923", + "10924", + "10926", + "10927", + "10928", + "10929", + "10930", + "10933", + "10935", + "10936", + "10938", + "10939", + "10940", + "10941", + "10942", + "10943", + "10944", + "10945", + "10946", + "10947", + "10948", + "10949", + "10950", + "10951", + "10952", + "10953", + "10954", + "10955", + "10956", + "10957", + "10959", + "10960", + "10961", + "10962", + "10963", + "10964", + "10965", + "10966", + "10969", + "10970", + "109703458", + "10971", + "10972", + "10973", + "10974", + "10975", + "10978", + "10979", + "10980", + "10981", + "10982", + "10983", + "10985", + "10987", + "10988", + "10989", + "10990", + "10991", + "10992", + "10993", + "10994", + "10998", + "10999", + "11000", + "11001", + "11004", + "11005", + "11006", + "11007", + "11009", + "110091775", + "1101", + "11010", + "11011", + "110117498", + "110117499", + "11012", + "11013", + "11014", + "11015", + "11016", + "11017", + "11018", + "11019", + "1102", + "11020", + "11021", + "11022", + "11023", + "11024", + "11025", + "11027", + "1103", + "11030", + "11031", + "11033", + "11034", + "11035", + "11036", + "11037", + "1104", + "11040", + "11041", + "11043", + "11044", + "11046", + "11047", + "1105", + "11051", + "11052", + "11054", + "11055", + "11056", + "11057", + "11059", + "110599563", + "110599564", + "110599583", + "110599588", + "1106", + "11060", + "11061", + "11062", + "11063", + "11064", + "11065", + "11066", + "11067", + "11068", + "11069", + "1107", + "11070", + "11072", + "11073", + "11074", + "11075", + "11076", + "11077", + "11078", + "11079", + "1108", + "11080", + "110806277", + "110806278", + "110806279", + "110806290", + "110806296", + "110806297", + "110806298", + "110806299", + "11081", + "11082", + "11083", + "11085", + "11086", + "1109", + "11091", + "11092", + "11093", + "11094", + "11095", + "11096", + "11097", + "11098", + "11099", + "111", + "11100", + "11101", + "11102", + "11103", + "11104", + "111064647", + "111064649", + "111064650", + "11107", + "11108", + "1111", + "11112", + "11113", + "11116", + "11117", + "11118", + "111188157", + "11119", + "1112", + "11120", + "111216276", + "111216277", + "11122", + "11123", + "11124", + "11126", + "11127", + "11128", + "11129", + "1113", + "11130", + "11131", + "11132", + "11133", + "11135", + "11136", + "11137", + "11138", + "1114", + "11140", + "11141", + "11142", + "11143", + "11144", + "11145", + "11146", + "11148", + "11149", + "11151", + "11152", + "11153", + "11154", + "11155", + "11156", + "11157", + "11158", + "11159", + "1116", + "11160", + "11161", + "11162", + "11163", + "11164", + "11165", + "11166", + "11167", + "11168", + "11169", + "1117", + "11170", + "11171", + "11172", + "11173", + "11174", + "11176", + "11177", + "11178", + "11179", + "1118", + "11180", + "11181", + "11182", + "11183", + "11184", + "11185", + "11186", + "11187", + "11188", + "11189", + "1119", + "11190", + "11193", + "11194", + "11196", + "11197", + "11198", + "11199", + "112", + "1120", + "11200", + "11201", + "11202", + "1121", + "11211", + "11212", + "11213", + "11214", + "11215", + "11216", + "112163659", + "11218", + "11219", + "1122", + "11221", + "11222", + "11224", + "11226", + "112267897", + "112268164", + "112268293", + "11227", + "11228", + "1123", + "11230", + "11231", + "11232", + "11234", + "11235", + "11236", + "11237", + "11238", + "112398", + "112399", + "1124", + "11240", + "11243", + "11244", + "112441428", + "112441434", + "112441437", + "112441438", + "11245", + "112464", + "11247", + "112476", + "112479", + "11248", + "112483", + "112487", + "112488736", + "112488737", + "112488738", + "112488739", + "112488740", + "112488745", + "112488746", + "112488747", + "11249", + "112495", + "11250", + "11251", + "11252", + "11253", + "11254", + "11255", + "112574", + "112577461", + "112577516", + "11258", + "11259", + "11260", + "112609", + "11261", + "112611", + "112616", + "11262", + "11264", + "11266", + "11267", + "11269", + "11270", + "112703", + "112714", + "11272", + "112724", + "11273", + "11274", + "112744", + "11275", + "112752", + "112755", + "11276", + "11277", + "112770", + "11278", + "11279", + "1128", + "11280", + "112802", + "11281", + "112812", + "112817", + "11282", + "11283", + "11284", + "112840", + "112849", + "11285", + "112858", + "112869", + "112885", + "1129", + "112936", + "112937", + "112939", + "112942", + "112950", + "112970", + "113", + "1130", + "113000", + "113026", + "11309", + "113091", + "1131", + "11311", + "113115", + "11313", + "113130", + "11314", + "113146", + "11315", + "11316", + "11317", + "113174", + "113177", + "113178", + "113179", + "11318", + "113189", + "11319", + "1132", + "11320", + "113201", + "11321", + "11322", + "113230", + "113235", + "113246", + "11325", + "113251", + "11326", + "113263", + "113277", + "113278", + "11328", + "11329", + "1133", + "11330", + "11331", + "11332", + "11333", + "11334", + "11335", + "11336", + "11337", + "11338", + "11339", + "1134", + "11340", + "113402", + "11341", + "113419", + "11342", + "11343", + "11344", + "113444", + "11345", + "113451", + "113452", + "113455421", + "113457", + "11346", + "1135", + "113510", + "113523636", + "113523638", + "113540", + "1136", + "113612", + "113622", + "113655", + "113675", + "1137", + "113730", + "113746", + "113791", + "1138", + "113802", + "113828", + "113829", + "113835", + "113878", + "1139", + "114", + "1140", + "114026", + "114034", + "114088", + "1141", + "114108587", + "114112", + "114131", + "114132", + "114134", + "1142", + "114294", + "1143", + "114327", + "114335", + "114336", + "1144", + "114483833", + "114483834", + "1145", + "114515518", + "114548", + "114569", + "114571", + "1146", + "114609", + "114625", + "114659", + "1147", + "114757", + "114770", + "114771", + "114781", + "114784", + "114785", + "114786", + "114787", + "114788", + "114789", + "114790", + "114791", + "114792", + "114793", + "114794", + "114795", + "114798", + "114799", + "114800", + "114801", + "114803", + "114804", + "114805", + "114815", + "114818", + "114821", + "114822", + "114823", + "114824", + "114825", + "114826", + "114827", + "114836", + "114841037", + "114876", + "114879", + "114880", + "114881", + "114882", + "114883", + "114884", + "114885", + "114897", + "114898", + "114899", + "1149", + "114900", + "114902", + "114904", + "114905", + "114907", + "114908", + "114926", + "114928", + "114932", + "114960", + "114971", + "114984", + "114987", + "114990", + "114991", + "115", + "115004", + "115019", + "115024", + "115072896", + "115098", + "115106", + "115111", + "115123", + "115196", + "1152", + "115201", + "115207", + "115209", + "115253422", + "115265", + "115273", + "115286", + "115290", + "115294", + "1153", + "115330", + "115350", + "115352", + "115353", + "115361", + "115362", + "115399", + "1154", + "115416", + "115426", + "115482686", + "1155", + "115509", + "115548", + "115557", + "115560", + "115572", + "115584", + "115650", + "115653", + "115677", + "115701", + "115703", + "115704", + "115708", + "115727", + "115749", + "115752", + "115761", + "115795", + "1158", + "115811", + "115817", + "115825", + "115827", + "115861", + "1159", + "115908", + "115939", + "115948", + "115950", + "115992", + "116", + "1160", + "116028", + "116033993", + "116039", + "116064", + "116068", + "116071", + "116085", + "116092", + "1161", + "116115", + "116135", + "116138", + "116143", + "116150", + "116151", + "116154", + "116159", + "116173", + "116179", + "116211", + "116224", + "116225", + "116228", + "116236", + "116238", + "116254", + "116255", + "116285", + "1163", + "116328", + "116337", + "116362", + "116369", + "116372", + "116379", + "1164", + "116412", + "116441", + "116442", + "116443", + "116444", + "116447", + "116448", + "116449", + "116461", + "116496", + "116511", + "116512", + "116519", + "116534", + "116540", + "116541", + "116729", + "116832", + "116835", + "116840", + "116841", + "116842", + "116843", + "116844", + "116931", + "116966", + "116969", + "116983", + "116984", + "116985", + "116986", + "116987", + "116988", + "117143", + "117144", + "117145", + "117154", + "117155", + "117156", + "117157", + "117159", + "117166", + "117177", + "117178", + "117194", + "117195", + "117196", + "117245", + "117246", + "117247", + "117248", + "117283", + "117285", + "117286", + "117289", + "1173", + "1174", + "1175", + "117531", + "117532", + "117579", + "117581", + "117583", + "117584", + "1176", + "117608", + "1178", + "117854", + "1179", + "118", + "1180", + "1181", + "1182", + "1183", + "1184", + "118424", + "118426", + "118427", + "118429", + "118430", + "118442", + "118460", + "118461", + "118471", + "118472", + "118487", + "118490", + "118491", + "1185", + "118568804", + "1186", + "118611", + "118663", + "118670", + "118672", + "1187", + "118738", + "118788", + "1188", + "118812", + "118813", + "118856", + "118881", + "118924", + "118932", + "118980", + "118987", + "119", + "119016", + "119032", + "1191", + "119180", + "1192", + "1193", + "119391", + "119392", + "119395", + "119467", + "1195", + "119504", + "119548", + "119559", + "119587", + "1196", + "119678", + "119679", + "119682", + "119687", + "119692", + "119694", + "119695", + "119710", + "119749", + "119764", + "119765", + "119772", + "119774", + "1198", + "12", + "120", + "1200", + "120065", + "120066", + "120071", + "1201", + "120103", + "120114", + "120146", + "120224", + "120227", + "120237", + "120356740", + "120376", + "120379", + "120400", + "120406", + "120425", + "120526", + "120534", + "120586", + "1207", + "120775", + "120776", + "120787", + "120793", + "1208", + "120863", + "120892", + "1209", + "120935", + "120939", + "121006", + "121053", + "1211", + "121129", + "121130", + "1212", + "121214", + "121227", + "121256", + "121260", + "121268", + "121273", + "121274", + "121275", + "121278", + "121340", + "121355", + "121364", + "121391", + "121441", + "121457", + "1215", + "121504", + "121506", + "121512", + "121536", + "121549", + "121551", + "121599", + "121601", + "121642", + "121643", + "121665", + "121725057", + "121793", + "122011", + "122042", + "122046", + "122060", + "122183", + "122258", + "122394733", + "122402", + "122405565", + "122416", + "122455342", + "122481", + "122509", + "122513141", + "122525", + "122526777", + "122526780", + "122553", + "122616", + "122618", + "122622", + "122651", + "122664", + "122665", + "122704", + "122706", + "122740", + "122742", + "122748", + "122769", + "122773", + "122786", + "122809", + "122830", + "122876", + "122945", + "122953", + "122961", + "122970", + "123", + "1230", + "123036", + "123041", + "123096", + "123099", + "123103", + "123169", + "1232", + "123207", + "123228", + "123263", + "123264", + "123283", + "1233", + "123346", + "123355", + "1234", + "1235", + "123591", + "1236", + "123606", + "123624", + "123688", + "1237", + "123720", + "123722", + "123745", + "123775", + "1238", + "123803", + "123811", + "123872", + "123876", + "123879", + "123904", + "123920", + "123970", + "124", + "1240", + "124044", + "124045", + "124056", + "124093", + "1241", + "124152", + "124220", + "124222", + "124245", + "124274", + "124359", + "1244", + "124401", + "124402", + "124404", + "124411", + "124446", + "124454", + "124460", + "124491", + "124512", + "124535", + "124538", + "124540", + "124565", + "124583", + "124590", + "124599", + "124602", + "124626", + "124637", + "124641", + "124739", + "124751", + "124773", + "124783", + "124790", + "124801", + "124808", + "124817", + "124842", + "124857", + "124872", + "124903857", + "124905556", + "124905693", + "124912", + "124923", + "124925", + "124930", + "124935", + "124936", + "124944", + "124961", + "124975", + "124976", + "124989", + "124995", + "124997", + "125", + "125058", + "125061", + "125111", + "125113", + "125115", + "125150", + "125170", + "125206", + "125228", + "125336", + "125467750", + "125476", + "125488", + "125704", + "1258", + "125875", + "125893", + "1259", + "125919", + "125931", + "125958", + "125962", + "125963", + "125965", + "125972", + "125981", + "125988", + "125997", + "126", + "1260", + "126003", + "126006", + "126014", + "126017", + "126068", + "126069", + "126070", + "126074", + "126075", + "1261", + "126119", + "126123", + "126129", + "126133", + "126147", + "1262", + "126204", + "126205", + "126206", + "126208", + "126248", + "126259", + "126272", + "126282", + "126295", + "126298", + "126299", + "1263", + "126306", + "126308", + "126321", + "126326", + "126328", + "126353", + "126364", + "126370", + "126374", + "126375", + "126382", + "126393", + "1264", + "126402", + "126410", + "126432", + "126433", + "1265", + "126520", + "126526", + "126541", + "126549", + "126567", + "1266", + "126626", + "126637", + "126638", + "126661", + "126668", + "126669", + "126695", + "1267", + "126731", + "126755", + "126767", + "126789", + "126792", + "1268", + "126820", + "126823", + "126859", + "126868", + "1269", + "126917", + "126961", + "126969", + "127", + "1270", + "127002", + "127003", + "127018", + "127059", + "127062", + "127064", + "127066", + "127068", + "127069", + "127077", + "1271", + "127124", + "1272", + "127247", + "127253", + "127254", + "127255", + "127262", + "127281", + "127294", + "127343", + "127385", + "127391", + "127396", + "127428", + "127435", + "127534", + "127540", + "127544", + "127550", + "127579", + "127602", + "127608", + "127623", + "127665", + "127670", + "127687", + "1277", + "127700", + "127703", + "127707", + "127731", + "127733", + "127795", + "1278", + "127814297", + "127829", + "127833", + "127845", + "127898561", + "127933", + "127943", + "128", + "1280", + "128025", + "128061", + "128077", + "1281", + "128125814", + "128153", + "128178", + "1282", + "128209", + "128218", + "128229", + "128239", + "128240", + "128272", + "128308", + "128312", + "128338", + "128344", + "128346", + "128360", + "128366", + "128367", + "128368", + "128372", + "128387", + "1284", + "128408", + "128414", + "128434", + "128486", + "128488", + "128497", + "1285", + "128506", + "128553", + "1286", + "128602", + "128611", + "128637", + "128646", + "128653", + "128674", + "1287", + "128706665", + "128710", + "1288", + "128817", + "128821", + "128822", + "128853", + "128859", + "128861", + "128864", + "128866", + "128869", + "128876", + "1289", + "128954", + "128966690", + "128977", + "128989", + "1290", + "129025", + "129049", + "129080", + "1291", + "129138", + "1292", + "129285", + "129293", + "1293", + "129303", + "1294", + "129401", + "129446", + "129450", + "1295", + "129521", + "129530", + "129531", + "129563", + "1296", + "129607", + "129642", + "129684", + "129685", + "1297", + "129787", + "1298", + "129804", + "129807", + "129831", + "129852", + "129868", + "129880", + "129881", + "1299", + "13", + "130", + "1300", + "130013", + "130026", + "130074", + "130075", + "1301", + "130106", + "130120", + "130132", + "130162", + "1302", + "130271", + "1303", + "130340", + "130355", + "130367", + "130399", + "130497", + "1305", + "130502", + "130535", + "130540", + "130557", + "130560", + "130574", + "130576", + "130589", + "1306", + "130612", + "130617", + "1307", + "130733", + "130749", + "130752", + "1308", + "130813", + "130814", + "130827", + "130888", + "130916", + "130940", + "130951", + "131", + "1310", + "131034", + "131076", + "131096", + "1311", + "131118", + "131149", + "131177", + "1312", + "131368", + "131375", + "131377", + "1314", + "131405", + "131408", + "131450", + "131474", + "1315", + "131540", + "131544", + "131566", + "131578", + "131583", + "1316", + "131601", + "131616", + "131669", + "131675794", + "1317", + "1318", + "131831", + "131870", + "131873", + "131890", + "131920", + "131965", + "132", + "132001", + "132014", + "132112", + "132141", + "132158", + "132160", + "132200", + "132203", + "132204", + "132228", + "132243", + "132299", + "132320", + "132321", + "132332", + "132430", + "1325", + "1326", + "132612", + "132625", + "132660", + "132671", + "1327", + "132720", + "132724", + "132789", + "132851", + "132864", + "132884", + "1329", + "132946", + "132949", + "132954", + "132989", + "133", + "133015", + "133022", + "133060", + "133121", + "133308", + "133383", + "133396", + "133418", + "133482", + "133491", + "133522", + "133558", + "133584", + "133619", + "133686", + "133688", + "133690", + "1337", + "133746", + "133874", + "1339", + "133923", + "133957", + "134", + "1340", + "134083", + "134111", + "134121", + "134145", + "134147", + "134187", + "134218", + "134265", + "134266", + "134285", + "134288", + "134353", + "134359", + "134391", + "134429", + "134492", + "1345", + "134510", + "134526", + "134548", + "134549", + "134553", + "1346", + "134637", + "1347", + "134701", + "134728", + "134829", + "134860", + "134864", + "1349", + "134957", + "135", + "1350", + "1351", + "135112", + "135114", + "135138", + "135152", + "135154", + "1352", + "135228", + "135250", + "135293", + "135295", + "1353", + "135398", + "135458", + "1355", + "1356", + "135644", + "135656", + "1357", + "1358", + "135886", + "135892", + "1359", + "135924", + "135927", + "135932", + "135935", + "135941", + "135946", + "135948", + "136", + "1360", + "136051", + "1361", + "136157", + "1362", + "136227", + "136242", + "136259", + "136263", + "136288", + "1363", + "136306", + "136319", + "136332", + "136371", + "1364", + "1365", + "136541", + "1366", + "136647", + "1368", + "136853", + "136895", + "1369", + "136991", + "1370", + "137075", + "1371", + "137209", + "1373", + "137362", + "137392", + "1374", + "137492", + "1375", + "1376", + "137682", + "137695", + "137735", + "137797", + "1378", + "137814", + "137835", + "137868", + "137872", + "137886", + "1379", + "137902", + "137964", + "137970", + "137994", + "1380", + "138009", + "138046", + "138050", + "138065", + "1381", + "138151", + "138162", + "138199", + "1382", + "138240", + "138241", + "138255", + "138307", + "138311", + "1384", + "138428", + "138429", + "138474", + "1385", + "1386", + "138639", + "1387", + "138715", + "138716", + "138724", + "138799", + "1388", + "138802", + "138804", + "138805", + "138881", + "138883", + "1389", + "1390", + "139065", + "139067", + "139081", + "139105", + "139135", + "139170", + "139189", + "1392", + "139212", + "139221", + "139231", + "139285", + "1393", + "139322", + "139324", + "139341", + "139378", + "1394", + "139411", + "139420", + "139422", + "139425", + "1395", + "139562", + "139596", + "139599", + "1396", + "139604", + "139628", + "1397", + "139716", + "139728", + "139735", + "139741", + "139760", + "139793", + "1398", + "139804", + "139818", + "139886", + "1399", + "14", + "140", + "1400", + "140032", + "1401", + "140258", + "140290", + "1404", + "140432", + "140453", + "140456", + "140458", + "140459", + "140460", + "140461", + "140462", + "140465", + "140467", + "140469", + "140545", + "140564", + "140576", + "140578", + "140596", + "140597", + "1406", + "140606", + "140609", + "140612", + "140625", + "140628", + "140679", + "140680", + "140683", + "140685", + "140686", + "140688", + "140689", + "140690", + "140691", + "1407", + "140700", + "140701", + "140706", + "140710", + "140711", + "140730", + "140731", + "140732", + "140733", + "140735", + "140738", + "140739", + "140766", + "140767", + "140775", + "1408", + "140801", + "140803", + "140807", + "140809", + "140823", + "140825", + "140831", + "140832", + "140836", + "140838", + "140850", + "140856", + "140862", + "140870", + "140873", + "140876", + "140880", + "140881", + "140883", + "140885", + "140886", + "140890", + "140893", + "140894", + "1409", + "140901", + "140902", + "140947", + "141", + "1410", + "1411", + "1412", + "1413", + "1414", + "1415", + "1417", + "1418", + "1419", + "142", + "1420", + "1421", + "142678", + "142679", + "142680", + "142683", + "142684", + "142685", + "142686", + "142689", + "1427", + "1428", + "142891", + "1429", + "142910", + "142940", + "143", + "143098", + "1431", + "143162", + "143187", + "1432", + "143241", + "143244", + "143279", + "143282", + "143379", + "143384", + "1434", + "143425", + "143458", + "143471", + "143496", + "1435", + "143503", + "143506", + "143570", + "1436", + "143630", + "143662", + "143678", + "143684", + "143686", + "143689", + "1437", + "143872", + "143879", + "143884", + "143888", + "1439", + "143903", + "143941", + "1440", + "144097", + "1441", + "144100", + "144108", + "144110", + "144124", + "144125", + "144132", + "144165", + "144193", + "144195", + "1442", + "144233", + "144245", + "1443", + "144321", + "144347", + "144348", + "144363", + "1444", + "144402", + "144404", + "144406", + "144423", + "144448", + "144453", + "144455", + "1445", + "144501", + "144535", + "144568", + "144577", + "1446", + "144608", + "144699", + "1447", + "144715", + "144717", + "1448", + "144809", + "144811", + "144983", + "145173", + "1452", + "145226", + "145258", + "145264", + "145270", + "145282", + "1453", + "145376", + "145389", + "1454", + "145407", + "145447", + "145482", + "145483", + "145497", + "1455", + "145501", + "145508", + "145553", + "145567", + "145581", + "1456", + "145645", + "1457", + "145741", + "145748", + "145773", + "145781", + "145788", + "145814", + "145853", + "145864", + "145873", + "1459", + "145942", + "145957", + "146", + "1460", + "146050", + "146057", + "146059", + "146167", + "146177", + "146183", + "146198", + "1462", + "146206", + "146212", + "146223", + "146225", + "146227", + "146279", + "1463", + "146310", + "146325", + "146330", + "146378", + "146395", + "1464", + "146429", + "146433", + "146434", + "146439", + "146456", + "1465", + "146540", + "146542", + "146547", + "146556", + "146562", + "1466", + "146664", + "146691", + "146705", + "146712", + "146713", + "146722", + "146754", + "146760", + "146779", + "1468", + "146802", + "146822", + "146845", + "146849", + "146850", + "146852", + "146853", + "146857", + "146861", + "146862", + "146894", + "1469", + "146909", + "146923", + "146956", + "147", + "1470", + "147007", + "147011", + "147015", + "147040", + "1471", + "147111", + "147138", + "147179", + "147183", + "147199", + "1472", + "1473", + "147323", + "147339", + "147372", + "147381", + "1474", + "147407", + "147409", + "147463", + "147495", + "1475", + "1476", + "147645", + "147650", + "147657", + "147658", + "147660", + "147664", + "147670", + "147685", + "147686", + "147687", + "147694", + "147699", + "1477", + "147700", + "147710", + "147719", + "147741", + "147744", + "147746", + "147798", + "1478", + "147807", + "147808", + "147837", + "147841", + "147872", + "1479", + "147906", + "147912", + "147920", + "147923", + "147929", + "147945", + "147948", + "147949", + "147965", + "147968", + "147991", + "148", + "148003", + "148014", + "148022", + "148066", + "148103", + "148109", + "148113", + "148137", + "148156", + "148170", + "148198", + "1482", + "148203", + "148206", + "148213", + "148223", + "148229", + "148252", + "148254", + "148266", + "148268", + "148281", + "148304", + "148327", + "148345", + "148362", + "148398", + "148418", + "148423", + "148479", + "1485", + "148523", + "148534", + "148545", + "148581", + "1486", + "148641", + "1487", + "148738", + "148741", + "148753", + "148789", + "1488", + "148808", + "148811", + "148823", + "148867", + "148870", + "1489", + "148930", + "148932", + "148979", + "1490", + "149013", + "149018", + "149041", + "149069", + "149076", + "149095", + "1491", + "149111", + "149175", + "149233", + "149281", + "149297", + "1493", + "149345", + "149371", + "149420", + "149428", + "149461", + "149465", + "149466", + "149473", + "149478", + "149483", + "149499", + "1495", + "149563", + "1496", + "149603", + "149628", + "149643", + "149647", + "149685", + "149699", + "1497", + "149708", + "149840", + "1499", + "149951", + "149954", + "149986", + "15", + "150", + "1500", + "150082", + "150084", + "150094", + "1501", + "150159", + "150160", + "150165", + "150209", + "150221", + "150223", + "150248", + "150274", + "150275", + "150280", + "150290", + "150297", + "1503", + "150350", + "150353", + "150356", + "150365", + "150368", + "150372", + "150379", + "150383", + "1504", + "150465", + "150468", + "150472", + "150483", + "150572", + "150590", + "1506", + "150677", + "150678", + "150681", + "150684", + "150696", + "150709", + "150726", + "150737", + "150763", + "150771", + "150786", + "1508", + "150864", + "1509", + "150921", + "150946", + "150962", + "151", + "1510", + "151011", + "151050", + "151056", + "1511", + "151112", + "151126", + "151176", + "151188", + "151194", + "151195", + "1512", + "151230", + "151242", + "151246", + "151254", + "151258", + "151295", + "1513", + "151306", + "151313", + "151354", + "151393", + "1514", + "151449", + "151473", + "1515", + "151516", + "151525", + "151531", + "151556", + "151613", + "151636", + "151647", + "151648", + "151649", + "151651", + "151742", + "151790", + "151827", + "151835", + "151871", + "151887", + "151888", + "1519", + "151903", + "151963", + "151987", + "152", + "1520", + "152002", + "152006", + "152007", + "152015", + "152065", + "152098", + "1521", + "152100", + "152110", + "152137", + "152138", + "152185", + "152189", + "1522", + "152206", + "152217", + "152273", + "1523", + "152330", + "1524", + "152404", + "152405", + "152485", + "1525", + "152518", + "152519", + "152559", + "152573", + "152579", + "152586", + "152687", + "1527", + "152789", + "1528", + "152815", + "152816", + "152831", + "152877", + "152926", + "152940", + "152992", + "153", + "153020", + "153090", + "153129", + "153201", + "153218", + "153222", + "153241", + "153328", + "153339", + "153364", + "153396", + "1534", + "153443", + "153478", + "1535", + "153527", + "153562", + "153572", + "153579", + "1536", + "153642", + "153643", + "153657", + "1537", + "153733", + "153743", + "153745", + "153768", + "153769", + "153770", + "1538", + "153830", + "1539", + "153918", + "154", + "1540", + "154007", + "154043", + "154064", + "154075", + "154091", + "154141", + "154150", + "154197", + "154214", + "154215", + "154288", + "1543", + "154313", + "1544", + "154467", + "1545", + "154661", + "154664", + "154743", + "154790", + "154791", + "154796", + "1548", + "154807", + "154810", + "154865", + "154881", + "1549", + "155", + "155006", + "155038", + "155051", + "155054", + "155061", + "155066", + "1551", + "155184", + "155185", + "1553", + "155368", + "155382", + "155435", + "155465", + "1555", + "1557", + "1558", + "1559", + "156", + "1562", + "1565", + "157", + "1571", + "1572", + "157285", + "1573", + "157310", + "157313", + "157378", + "157506", + "157567", + "157570", + "157574", + "1576", + "157638", + "157657", + "157680", + "157695", + "157697", + "1577", + "157724", + "157753", + "157769", + "157773", + "157777", + "157807", + "157848", + "157855", + "157869", + "1579", + "157922", + "158", + "1580", + "158038", + "158046", + "158056", + "158062", + "158067", + "1581", + "158131", + "158135", + "158158", + "1582", + "158219", + "158234", + "158248", + "158293", + "158297", + "1583", + "158358", + "158376", + "158399", + "1584", + "158401", + "158405", + "158427", + "158431", + "158471", + "1585", + "158506", + "158511", + "158521", + "158584", + "158586", + "1586", + "158724", + "158747", + "158763", + "158787", + "158798", + "1588", + "158800", + "158809", + "158830", + "158833", + "158835", + "158866", + "158880", + "1589", + "158931", + "158983", + "159", + "159013", + "159090", + "159091", + "1591", + "159119", + "159163", + "159195", + "1592", + "159296", + "1593", + "159371", + "1594", + "1595", + "159686", + "159963", + "159989", + "16", + "160", + "1600", + "160065", + "1601", + "160140", + "1602", + "160287", + "160298", + "1603", + "160335", + "160364", + "1604", + "160418", + "160419", + "160428", + "160492", + "160518", + "1606", + "160622", + "1607", + "160728", + "160760", + "160762", + "160777", + "1608", + "160851", + "160857", + "160897", + "1609", + "161", + "1610", + "161003", + "1611", + "161142", + "161145", + "161176", + "161198", + "1612", + "161247", + "161253", + "161291", + "1613", + "161394", + "161424", + "161436", + "161497", + "1615", + "161502", + "161514", + "161582", + "1616", + "1617", + "161725", + "161742", + "161753", + "161779", + "1618", + "161823", + "161829", + "161835", + "161882", + "161931", + "162", + "1620", + "162073", + "162083", + "1621", + "1622", + "162239", + "162282", + "162333", + "162387", + "162394", + "162417", + "162427", + "162461", + "162466", + "162494", + "162514", + "162517", + "162540", + "162605", + "162655", + "162681", + "1627", + "1628", + "1629", + "162962", + "162963", + "162966", + "162967", + "162968", + "162979", + "162989", + "162993", + "162998", + "163", + "1630", + "163033", + "163049", + "163050", + "163051", + "163059", + "163071", + "163081", + "163087", + "163126", + "163131", + "163154", + "163175", + "163183", + "1632", + "163223", + "163227", + "163255", + "163259", + "1633", + "163351", + "1634", + "163404", + "163479", + "163486", + "1635", + "163589", + "163590", + "1636", + "163688", + "163702", + "163732", + "163747", + "163778", + "163782", + "163786", + "1638", + "163859", + "163882", + "1639", + "163933", + "164", + "164045", + "164091", + "1641", + "164118", + "164127", + "164153", + "1642", + "164237", + "164284", + "1643", + "164312", + "164395", + "1644", + "1645", + "164592", + "1646", + "164633", + "164656", + "164668", + "164684", + "1647", + "164714", + "164781", + "164832", + "1649", + "165", + "1650", + "165055", + "165082", + "165100", + "165140", + "165186", + "1652", + "165215", + "165257", + "1653", + "165324", + "1654", + "1655", + "165530", + "165545", + "1656", + "165631", + "165679", + "1657", + "165721", + "165829", + "1659", + "165904", + "165918", + "166", + "1660", + "166012", + "1662", + "1663", + "166336", + "166348", + "166378", + "166379", + "1665", + "1666", + "166614", + "166647", + "166655", + "1667", + "166752", + "166785", + "166793", + "1668", + "166815", + "166824", + "166863", + "1669", + "166929", + "166968", + "166979", + "167", + "1670", + "1671", + "167127", + "167153", + "1672", + "167227", + "1673", + "167359", + "1674", + "167410", + "167465", + "1675", + "167555", + "1676", + "167681", + "167691", + "1677", + "1678", + "167826", + "167838", + "168002", + "168090", + "168374", + "168400", + "168417", + "168433", + "168451", + "168455", + "168507", + "168537", + "168544", + "168620", + "168667", + "1687", + "168850", + "168975", + "1690", + "169026", + "169044", + "169166", + "169200", + "169270", + "169355", + "169436", + "169522", + "169611", + "169693", + "169714", + "169792", + "169841", + "169966", + "169981", + "170062", + "170082", + "170261", + "170302", + "170370", + "170371", + "170384", + "170392", + "170394", + "170463", + "170482", + "170506", + "170572", + "170575", + "170589", + "170591", + "170622", + "170626", + "170679", + "170680", + "170685", + "170689", + "170690", + "170691", + "170692", + "170712", + "170825", + "170850", + "170954", + "170958", + "170959", + "170960", + "170961", + "171017", + "171019", + "171023", + "171024", + "171169", + "171177", + "171222", + "171389", + "171392", + "171425", + "171482", + "171483", + "171484", + "171546", + "171558", + "171568", + "171586", + "1716", + "1717", + "1718", + "1719", + "1723", + "1725", + "1727", + "1728", + "1729", + "173", + "1730", + "1731", + "1733", + "1734", + "1735", + "1736", + "1737", + "1738", + "1739", + "174", + "1740", + "1741", + "1742", + "1743", + "1745", + "1746", + "1747", + "1748", + "1749", + "175", + "1750", + "1755", + "1756", + "1757", + "1758", + "1759", + "176", + "1760", + "1761", + "1762", + "1763", + "1767", + "1768", + "1769", + "177", + "1770", + "1773", + "1774", + "1775", + "1776", + "1777", + "1778", + "178", + "1780", + "1781", + "1783", + "1785", + "1786", + "1787", + "1788", + "1789", + "1791", + "1793", + "1794", + "1795", + "1796", + "1797", + "1798", + "18", + "1800", + "1801", + "1802", + "1803", + "1804", + "1805", + "1806", + "1807", + "1808", + "1809", + "181", + "1810", + "1811", + "1812", + "1813", + "1814", + "1815", + "1816", + "1819", + "182", + "1820", + "1821", + "1822", + "1823", + "1824", + "1825", + "1826", + "1827", + "1828", + "1829", + "183", + "1830", + "1831", + "1832", + "1833", + "1834", + "1836", + "1837", + "1838", + "1839", + "1840", + "1841", + "1842", + "1843", + "1844", + "1845", + "1846", + "1847", + "1848", + "1849", + "185", + "1850", + "1852", + "1854", + "1855", + "1856", + "1857", + "186", + "1861", + "1869", + "187", + "1870", + "1871", + "1874", + "1875", + "1876", + "1877", + "1879", + "1880", + "1889", + "189", + "1890", + "1891", + "1892", + "1893", + "1894", + "1896", + "19", + "190", + "1901", + "1902", + "1903", + "1906", + "1907", + "1908", + "1909", + "191", + "1910", + "1911", + "1912", + "1915", + "1917", + "192111", + "192134", + "192286", + "192666", + "192668", + "192669", + "192670", + "192683", + "1936", + "1937", + "1938", + "1939", + "1942", + "1943", + "1944", + "1945", + "1946", + "1947", + "1948", + "1949", + "1950", + "1951", + "1952", + "1953", + "1954", + "1955", + "1956", + "1958", + "195814", + "195827", + "195828", + "1959", + "195977", + "196", + "1960", + "196051", + "196074", + "1961", + "196120", + "1962", + "196264", + "196294", + "196335", + "196374", + "196383", + "196385", + "196394", + "1964", + "196403", + "196410", + "196441", + "196446", + "196463", + "196472", + "196477", + "196483", + "1965", + "196500", + "196513", + "196527", + "196528", + "196541", + "1967", + "196740", + "196743", + "196792", + "1968", + "196883", + "1969", + "196951", + "196996", + "197", + "197021", + "197131", + "197135", + "197257", + "197258", + "197259", + "1973", + "197320", + "197322", + "197335", + "197342", + "197358", + "197370", + "1974", + "197407", + "1975", + "1977", + "1978", + "1979", + "1981", + "1982", + "1983", + "1984", + "198437", + "199", + "1990", + "1991", + "1992", + "199221", + "199223", + "1993", + "1994", + "1995", + "1996", + "199675", + "199692", + "199699", + "1997", + "199704", + "199713", + "199720", + "199731", + "199745", + "199746", + "199777", + "199786", + "1998", + "199800", + "199834", + "199857", + "199870", + "1999", + "199920", + "199953", + "199964", + "199974", + "199990", + "2", + "20", + "2000", + "200008", + "200010", + "200014", + "200030", + "200035", + "200081", + "2001", + "200132", + "200150", + "200159", + "200162", + "200172", + "200185", + "200186", + "2002", + "200205", + "200232", + "200312", + "200315", + "200316", + "200350", + "200373", + "2004", + "200403", + "200407", + "200424", + "2005", + "200504", + "200523", + "200539", + "200558", + "200576", + "200634", + "200726", + "200728", + "200734", + "200765", + "200844", + "200845", + "200879", + "200894", + "200895", + "2009", + "200909", + "200916", + "200931", + "200933", + "200942", + "200958", + "2010", + "2011", + "201134", + "201140", + "201158", + "201161", + "201163", + "201164", + "201191", + "2012", + "201229", + "201232", + "201243", + "201254", + "201255", + "201266", + "201292", + "201294", + "201299", + "2013", + "201305", + "2014", + "201456", + "2015", + "201501", + "201514", + "201516", + "201562", + "201595", + "2016", + "201625", + "201626", + "201627", + "201633", + "2017", + "201725", + "201780", + "201798", + "201799", + "2018", + "201895", + "2019", + "201931", + "201965", + "201973", + "2020", + "202018", + "202051", + "202052", + "2021", + "202151", + "2022", + "202243", + "2023", + "202309", + "202333", + "202374", + "202500", + "202559", + "2026", + "202658", + "2027", + "2028", + "202865", + "2029", + "202915", + "203", + "2030", + "203054", + "203062", + "203068", + "203069", + "203074", + "203076", + "203100", + "203102", + "203111", + "203190", + "203197", + "203228", + "203238", + "203245", + "203259", + "203260", + "203286", + "2033", + "203328", + "2034", + "203413", + "203427", + "203430", + "203447", + "2035", + "203522", + "203523", + "203547", + "203562", + "203569", + "2036", + "2037", + "2038", + "203859", + "2039", + "204", + "2040", + "2041", + "2042", + "204219", + "2043", + "2044", + "204474", + "2045", + "2046", + "2047", + "2048", + "204801", + "204851", + "2049", + "204962", + "205", + "2050", + "2051", + "2052", + "205251", + "2053", + "205327", + "2054", + "205428", + "2055", + "205564", + "2056", + "2057", + "205717", + "2058", + "205860", + "2059", + "2060", + "2063", + "206338", + "206358", + "2064", + "206412", + "2065", + "2066", + "2067", + "2068", + "2069", + "207", + "2070", + "207063", + "2071", + "2072", + "2073", + "2074", + "2077", + "2078", + "2079", + "208", + "2081", + "2086", + "2091", + "2098", + "2099", + "21", + "210", + "2100", + "2101", + "2103", + "2104", + "2107", + "2108", + "2109", + "211", + "2110", + "2113", + "2114", + "2115", + "2116", + "2117", + "2118", + "2119", + "212", + "2120", + "2121", + "2122", + "2123", + "2124", + "2125", + "2128", + "213", + "2130", + "2131", + "2132", + "2134", + "2135", + "2137", + "2138", + "2139", + "214", + "2140", + "2145", + "2146", + "2147", + "2149", + "215", + "2150", + "2151", + "2152", + "2153", + "2155", + "2157", + "2158", + "2159", + "216", + "2160", + "2161", + "2162", + "2165", + "2166", + "2167", + "2168", + "2169", + "217", + "2170", + "2171", + "2172", + "2173", + "2175", + "2176", + "2177", + "2178", + "218", + "2180", + "2181", + "2182", + "2184", + "2185", + "2186", + "2187", + "2188", + "2189", + "219", + "2191", + "2192", + "219285", + "219287", + "219293", + "2193", + "219333", + "219348", + "2194", + "219402", + "219409", + "219417", + "219428", + "219429", + "219431", + "219436", + "219437", + "219438", + "219447", + "219453", + "219469", + "219473", + "219477", + "219479", + "219482", + "219484", + "219487", + "219493", + "2195", + "219527", + "219537", + "219539", + "219557", + "219578", + "2196", + "219621", + "219623", + "219654", + "219670", + "219681", + "219699", + "2197", + "219736", + "219738", + "219743", + "219749", + "219770", + "219771", + "219790", + "219793", + "219844", + "219854", + "219855", + "219858", + "219869", + "219870", + "219874", + "219875", + "219899", + "2199", + "219902", + "219927", + "219931", + "219938", + "219952", + "219954", + "219956", + "219957", + "219960", + "219965", + "219968", + "219970", + "219972", + "219981", + "219982", + "219983", + "219986", + "219988", + "219990", + "219995", + "22", + "220", + "2200", + "220001", + "220002", + "220004", + "220032", + "220042", + "220047", + "220064", + "220074", + "220081", + "220082", + "2201", + "220107", + "220108", + "220134", + "220136", + "220164", + "2202", + "220202", + "220213", + "220296", + "2203", + "220323", + "220359", + "220382", + "220388", + "2204", + "220416", + "220441", + "2205", + "2206", + "2207", + "2208", + "220869", + "2209", + "220929", + "220963", + "220965", + "220972", + "220988", + "220992", + "221", + "221002", + "221035", + "221037", + "221044", + "221061", + "221074", + "221078", + "221079", + "221091", + "221092", + "221120", + "221143", + "221150", + "221154", + "221178", + "221184", + "221188", + "221191", + "2212", + "221223", + "221264", + "221294", + "2213", + "221301", + "221302", + "221303", + "221322", + "221336", + "221357", + "221391", + "221393", + "221395", + "221400", + "221409", + "221421", + "221424", + "221443", + "221458", + "221468", + "221472", + "221476", + "221477", + "221481", + "221491", + "221496", + "221504", + "221527", + "221545", + "221613", + "221656", + "221662", + "221687", + "221692", + "2217", + "221710", + "221711", + "221749", + "221785", + "221786", + "2218", + "221806", + "221823", + "221830", + "221833", + "221895", + "2219", + "221908", + "221914", + "221927", + "221935", + "221937", + "221938", + "221955", + "221960", + "221981", + "222", + "2220", + "222008", + "222068", + "222166", + "222171", + "222183", + "222194", + "2222", + "222223", + "222229", + "222234", + "222235", + "222236", + "222255", + "222256", + "222389", + "2224", + "222484", + "222487", + "222537", + "222545", + "222546", + "222553", + "222584", + "222642", + "222643", + "222658", + "222659", + "222662", + "222663", + "222696", + "222698", + "222826", + "222865", + "222894", + "222950", + "222962", + "222967", + "223", + "2230", + "223082", + "223117", + "2232", + "2235", + "2237", + "2239", + "224", + "2241", + "2242", + "2243", + "2244", + "2245", + "2246", + "2247", + "2248", + "2249", + "225", + "2250", + "2251", + "2252", + "2253", + "2254", + "2255", + "2256", + "225689", + "2257", + "2258", + "2259", + "226", + "2260", + "2261", + "2262", + "2263", + "2264", + "2266", + "2267", + "2268", + "2271", + "2272", + "2273", + "2274", + "2275", + "2277", + "22794", + "22795", + "22796", + "22797", + "22798", + "2280", + "22800", + "22801", + "22802", + "22803", + "22806", + "22807", + "22808", + "22809", + "2281", + "22818", + "22820", + "22821", + "22822", + "22823", + "22824", + "22826", + "22827", + "22828", + "22829", + "22832", + "22834", + "22835", + "22836", + "22837", + "22838", + "22839", + "22841", + "22843", + "22844", + "22845", + "22846", + "22847", + "22848", + "22849", + "22850", + "22852", + "22853", + "22854", + "22856", + "22858", + "22859", + "22861", + "22862", + "22863", + "22864", + "22865", + "22866", + "22868", + "22869", + "2287", + "22870", + "22871", + "22872", + "22873", + "22874", + "22875", + "22876", + "22877", + "22878", + "22879", + "2288", + "22880", + "22881", + "22882", + "22883", + "22884", + "22885", + "22887", + "22888", + "22889", + "2289", + "22890", + "22893", + "22894", + "22895", + "22897", + "22898", + "22899", + "229", + "2290", + "22900", + "22901", + "22902", + "22903", + "22904", + "22905", + "22906", + "22907", + "22909", + "22911", + "22913", + "22914", + "22915", + "22916", + "22917", + "22918", + "22919", + "22920", + "22921", + "22924", + "22925", + "22926", + "22927", + "22928", + "22929", + "22930", + "22931", + "22932", + "22933", + "22934", + "22936", + "22937", + "22938", + "2294", + "22941", + "22943", + "22944", + "22948", + "22949", + "2295", + "22953", + "22954", + "22955", + "2296", + "2297", + "22974", + "22976", + "22977", + "22978", + "22979", + "2298", + "22980", + "22981", + "22982", + "22983", + "22984", + "22985", + "22986", + "22987", + "22989", + "2299", + "22990", + "22992", + "22993", + "22994", + "22995", + "22996", + "22997", + "22998", + "22999", + "23", + "230", + "2300", + "23001", + "23002", + "23005", + "23007", + "23008", + "2301", + "23011", + "23012", + "23013", + "23014", + "23015", + "23016", + "23017", + "23019", + "2302", + "23020", + "23022", + "23023", + "23024", + "23025", + "23026", + "23028", + "23029", + "2303", + "23030", + "23031", + "23032", + "23033", + "23034", + "23035", + "23036", + "23037", + "23038", + "23039", + "2304", + "23040", + "23041", + "23042", + "23043", + "23046", + "23047", + "23048", + "23049", + "2305", + "23051", + "23052", + "23053", + "23054", + "23057", + "23059", + "2306", + "23060", + "23061", + "23062", + "23063", + "23064", + "23065", + "23066", + "23067", + "2307", + "23070", + "23071", + "23072", + "23074", + "23075", + "23076", + "23077", + "23078", + "2308", + "23080", + "23081", + "23082", + "23085", + "23086", + "23087", + "23089", + "2309", + "23090", + "23091", + "23092", + "23093", + "23094", + "23095", + "23096", + "23097", + "23098", + "23099", + "231", + "2310", + "23101", + "23102", + "23105", + "23107", + "23108", + "23109", + "23111", + "23112", + "23113", + "23114", + "23116", + "23117", + "23118", + "23119", + "2312", + "23120", + "23122", + "23125", + "23126", + "23127", + "23129", + "2313", + "23130", + "23131", + "23132", + "23133", + "23135", + "23136", + "23137", + "23138", + "23139", + "2314", + "23140", + "23141", + "23142", + "23143", + "23144", + "23148", + "23149", + "2315", + "23150", + "23151", + "23152", + "23154", + "23155", + "23157", + "23158", + "2316", + "23160", + "23161", + "23162", + "23163", + "23164", + "23165", + "23166", + "23167", + "23168", + "23169", + "2317", + "23170", + "23171", + "23172", + "23173", + "23174", + "23175", + "23176", + "23177", + "23178", + "23179", + "2318", + "23180", + "23181", + "23184", + "23185", + "23186", + "23187", + "23189", + "2319", + "23190", + "23191", + "23192", + "23193", + "23194", + "23195", + "23196", + "23197", + "23198", + "23199", + "23200", + "23201", + "23203", + "23204", + "23205", + "23207", + "23208", + "23209", + "2321", + "23210", + "23211", + "23212", + "23213", + "23214", + "23215", + "23216", + "23217", + "23218", + "23219", + "2322", + "23220", + "23221", + "23223", + "23224", + "23225", + "23228", + "23229", + "2323", + "23230", + "23231", + "23232", + "23233", + "23234", + "23235", + "23236", + "23237", + "23239", + "2324", + "23240", + "23241", + "23242", + "23243", + "23244", + "23245", + "23246", + "23247", + "23248", + "23250", + "23251", + "23252", + "23253", + "23254", + "23255", + "23256", + "23258", + "23259", + "2326", + "23261", + "23262", + "23263", + "23264", + "23265", + "23266", + "23268", + "23269", + "2327", + "23270", + "23271", + "23272", + "23274", + "23275", + "23276", + "23277", + "23279", + "2328", + "23283", + "23284", + "23286", + "23287", + "23288", + "2329", + "23291", + "23293", + "23294", + "23295", + "23299", + "2330", + "23300", + "23301", + "23302", + "23303", + "23304", + "23305", + "23306", + "23307", + "23308", + "23309", + "2331", + "23310", + "23312", + "23313", + "23314", + "23315", + "23316", + "23317", + "23318", + "2332", + "23321", + "23322", + "23324", + "23325", + "23326", + "23327", + "23328", + "23329", + "23331", + "23332", + "23333", + "23334", + "23335", + "23336", + "23338", + "23339", + "2334", + "23341", + "23344", + "23345", + "23347", + "23348", + "23349", + "2335", + "23350", + "23351", + "23352", + "23353", + "23354", + "23355", + "23357", + "23358", + "23359", + "23360", + "23361", + "23362", + "23363", + "23365", + "23366", + "23367", + "23368", + "23369", + "23370", + "23371", + "23373", + "23376", + "23378", + "23379", + "23380", + "23381", + "23382", + "23383", + "23384", + "23385", + "23386", + "23387", + "23389", + "2339", + "23390", + "23392", + "23394", + "23395", + "23396", + "23397", + "23398", + "23399", + "23400", + "23401", + "23403", + "23404", + "23405", + "23406", + "23408", + "23409", + "23410", + "23411", + "23412", + "23413", + "23414", + "23415", + "23416", + "23417", + "23418", + "2342", + "23420", + "23421", + "23423", + "23424", + "23426", + "23428", + "23429", + "23430", + "23431", + "23432", + "23433", + "23435", + "23436", + "23438", + "23439", + "23440", + "23443", + "23446", + "23450", + "23451", + "23452", + "23456", + "23457", + "2346", + "23460", + "23461", + "23462", + "23463", + "23464", + "23466", + "23467", + "23468", + "23469", + "23471", + "23473", + "23474", + "23475", + "23476", + "23478", + "23479", + "2348", + "23480", + "23481", + "23483", + "23484", + "23491", + "23492", + "23493", + "23495", + "23498", + "23499", + "2350", + "23500", + "23503", + "23504", + "23505", + "23506", + "23507", + "23508", + "23509", + "23510", + "23511", + "23512", + "23513", + "23514", + "23515", + "23516", + "23517", + "23518", + "23519", + "2352", + "23521", + "23522", + "23523", + "23524", + "23526", + "23527", + "23528", + "23529", + "2353", + "23530", + "23531", + "23532", + "23533", + "23534", + "23536", + "23538", + "23539", + "2354", + "23541", + "23542", + "23543", + "23544", + "23545", + "23546", + "23547", + "23548", + "23549", + "2355", + "23550", + "23551", + "23552", + "23553", + "23554", + "23555", + "23556", + "23557", + "23558", + "23559", + "2356", + "23560", + "23562", + "23563", + "23564", + "23566", + "23567", + "23568", + "23569", + "2357", + "23576", + "2358", + "23580", + "23581", + "23582", + "23583", + "23584", + "23585", + "23586", + "23587", + "23588", + "23589", + "2359", + "23590", + "23592", + "23593", + "23594", + "23595", + "23596", + "23597", + "23598", + "23600", + "23601", + "23603", + "23604", + "23607", + "23608", + "23609", + "23612", + "23613", + "23616", + "23617", + "23619", + "23620", + "23621", + "23623", + "23624", + "23625", + "23626", + "23627", + "23630", + "23632", + "23633", + "23635", + "23636", + "23637", + "23639", + "23640", + "23641", + "23643", + "23644", + "23645", + "23646", + "23647", + "23649", + "23650", + "23654", + "23657", + "23658", + "23659", + "23660", + "23670", + "23671", + "23673", + "23676", + "23677", + "23678", + "23682", + "23683", + "23704", + "23705", + "23708", + "23710", + "23729", + "23731", + "23732", + "23741", + "23742", + "23743", + "23746", + "23753", + "23759", + "23760", + "23761", + "23762", + "23764", + "23765", + "23767", + "23768", + "23769", + "23770", + "23774", + "23779", + "23780", + "23784", + "23786", + "23787", + "23788", + "238", + "239", + "2395", + "24", + "240", + "241", + "24137", + "24138", + "24139", + "24140", + "24141", + "24142", + "24144", + "24145", + "24146", + "24147", + "24148", + "24149", + "24150", + "242", + "2444", + "245711", + "245802", + "245806", + "245812", + "245908", + "245909", + "245910", + "245911", + "245913", + "245927", + "245928", + "245929", + "245930", + "245932", + "245934", + "245936", + "245937", + "245938", + "245939", + "245940", + "245972", + "245973", + "246", + "246100", + "246175", + "246176", + "246184", + "246213", + "246243", + "246269", + "246329", + "246330", + "246721", + "246744", + "246777", + "246778", + "247", + "2475", + "248", + "2483", + "2487", + "2488", + "249", + "2491", + "2492", + "2494", + "2495", + "25", + "250", + "251", + "2512", + "2515", + "2516", + "2517", + "2519", + "2520", + "2521", + "2524", + "2525", + "2526", + "2527", + "2528", + "252839", + "252884", + "2529", + "252969", + "252983", + "252995", + "2530", + "253012", + "253017", + "2531", + "253143", + "253152", + "253175", + "253190", + "2532", + "253260", + "2533", + "253314", + "2534", + "253430", + "253461", + "2535", + "253512", + "253558", + "253559", + "253582", + "253639", + "253650", + "2537", + "253714", + "253725", + "253738", + "253769", + "253782", + "2538", + "253827", + "253832", + "2539", + "253935", + "253943", + "253959", + "253980", + "253982", + "254013", + "254042", + "254048", + "254050", + "254065", + "254102", + "254122", + "254158", + "254170", + "254173", + "254187", + "2542", + "254225", + "254228", + "254240", + "254251", + "254263", + "254268", + "254272", + "254295", + "254359", + "254394", + "254427", + "254428", + "254439", + "254528", + "254531", + "254552", + "2547", + "254773", + "254778", + "254786", + "2548", + "254827", + "254863", + "254879", + "2549", + "254910", + "254950", + "254956", + "254973", + "2550", + "255022", + "255027", + "255043", + "255057", + "255061", + "2551", + "255101", + "255104", + "255119", + "255189", + "255220", + "255231", + "255239", + "255252", + "255275", + "2553", + "255308", + "255313", + "255324", + "255349", + "255374", + "255394", + "2554", + "255403", + "255411", + "255426", + "255488", + "2555", + "255520", + "2556", + "255626", + "255631", + "255649", + "2557", + "255725", + "255738", + "255743", + "255758", + "255762", + "255783", + "255798", + "2558", + "255809", + "255877", + "2559", + "255919", + "255967", + "2560", + "256006", + "256051", + "2561", + "256126", + "256130", + "256148", + "256158", + "2562", + "256223", + "256227", + "256281", + "256297", + "2563", + "256302", + "256309", + "256329", + "256356", + "256364", + "256369", + "256380", + "256394", + "2564", + "256435", + "256471", + "256472", + "2565", + "256536", + "256586", + "2566", + "256643", + "256646", + "256691", + "2567", + "256710", + "256714", + "256764", + "2568", + "256815", + "2569", + "256933", + "256949", + "256957", + "256979", + "256987", + "257", + "2570", + "257000", + "257019", + "257044", + "257062", + "257068", + "2571", + "257101", + "257106", + "257144", + "257160", + "257169", + "257177", + "257194", + "2572", + "257202", + "257218", + "257236", + "257240", + "257313", + "257364", + "257397", + "257407", + "257415", + "25758", + "25759", + "257629", + "25763", + "25764", + "25766", + "25769", + "25770", + "25771", + "25774", + "25777", + "25778", + "25780", + "25782", + "25788", + "25789", + "25790", + "25791", + "25792", + "25793", + "25794", + "25796", + "25797", + "25798", + "25799", + "258", + "2580", + "25800", + "25801", + "258010", + "25802", + "25803", + "25804", + "25805", + "25806", + "25807", + "25809", + "2581", + "25813", + "25814", + "25816", + "25817", + "25818", + "25819", + "2582", + "25820", + "25821", + "25822", + "25823", + "25824", + "25825", + "25827", + "25828", + "25829", + "2583", + "25830", + "25831", + "25832", + "25833", + "25834", + "25836", + "25837", + "25839", + "2584", + "25840", + "25841", + "25842", + "25843", + "25844", + "25847", + "25849", + "2585", + "25850", + "25851", + "25852", + "25853", + "25854", + "25855", + "25858", + "25861", + "25862", + "25864", + "25865", + "2587", + "25870", + "25871", + "25873", + "25874", + "25875", + "25876", + "25878", + "25879", + "2588", + "25880", + "25884", + "25885", + "25886", + "25888", + "2589", + "25890", + "25891", + "25893", + "25894", + "25895", + "25896", + "25897", + "25898", + "259", + "2590", + "25900", + "25902", + "25903", + "25904", + "25906", + "25907", + "25909", + "2591", + "25911", + "25912", + "25913", + "25914", + "25915", + "25917", + "259173", + "259197", + "2592", + "25920", + "25921", + "259215", + "259217", + "25923", + "259230", + "259232", + "259236", + "259239", + "25924", + "259240", + "259249", + "25925", + "25926", + "259266", + "25927", + "25928", + "259282", + "259285", + "259286", + "259287", + "259289", + "25929", + "259290", + "259292", + "259293", + "259294", + "259295", + "259296", + "2593", + "25930", + "259307", + "259308", + "25932", + "25934", + "25936", + "25937", + "25938", + "25939", + "25940", + "25941", + "25942", + "25943", + "25945", + "25946", + "25948", + "25949", + "2595", + "25950", + "25953", + "25956", + "25957", + "25959", + "2596", + "25960", + "25961", + "25962", + "25963", + "25966", + "2597", + "25970", + "25972", + "25973", + "25974", + "25975", + "25976", + "25977", + "25978", + "25979", + "25980", + "25981", + "25983", + "25984", + "25987", + "25988", + "25989", + "25992", + "25994", + "25998", + "25999", + "26", + "26000", + "26001", + "26002", + "26003", + "26005", + "26007", + "26009", + "26010", + "26011", + "26012", + "26013", + "26015", + "26017", + "26018", + "26019", + "26020", + "26022", + "26024", + "26025", + "26027", + "260293", + "26030", + "26031", + "26032", + "26033", + "260334", + "26034", + "26035", + "26036", + "26037", + "26038", + "26039", + "26040", + "260425", + "260429", + "26043", + "260434", + "260436", + "26045", + "26046", + "26047", + "26048", + "26049", + "26050", + "26051", + "26052", + "26053", + "26054", + "26056", + "26057", + "26058", + "26059", + "26060", + "26061", + "26063", + "26064", + "26065", + "26071", + "26073", + "26074", + "26084", + "26085", + "26086", + "26088", + "26090", + "26091", + "26092", + "26093", + "26094", + "26095", + "26097", + "26098", + "26099", + "26100", + "26103", + "26108", + "26112", + "26115", + "26118", + "26119", + "26121", + "26122", + "26123", + "26127", + "26128", + "26130", + "26133", + "26135", + "26136", + "26137", + "26140", + "26145", + "26146", + "26147", + "26149", + "2615", + "26150", + "26151", + "26152", + "26153", + "26154", + "26155", + "26156", + "26157", + "26160", + "26164", + "26165", + "26166", + "26167", + "26168", + "2617", + "261726", + "261729", + "26173", + "261734", + "26175", + "2618", + "26188", + "26189", + "2619", + "26190", + "26191", + "2620", + "26205", + "26206", + "26207", + "2621", + "26211", + "26212", + "26219", + "2622", + "26224", + "26225", + "26227", + "26228", + "26229", + "2623", + "26230", + "26232", + "26233", + "26234", + "26235", + "26239", + "2624", + "26240", + "26245", + "26246", + "26248", + "26249", + "2625", + "26251", + "26253", + "26254", + "26256", + "26257", + "26258", + "26259", + "2626", + "26260", + "26261", + "26262", + "26263", + "26266", + "26267", + "26268", + "26269", + "2627", + "26270", + "26271", + "26272", + "26273", + "26275", + "26276", + "26277", + "26278", + "26279", + "2628", + "26280", + "26281", + "26284", + "26285", + "26286", + "26287", + "26289", + "2629", + "26290", + "26291", + "26292", + "26297", + "26298", + "26301", + "2631", + "2632", + "2633", + "26330", + "26333", + "26338", + "26339", + "2634", + "26341", + "2635", + "26353", + "26354", + "26355", + "2636", + "2637", + "2638", + "2639", + "2641", + "2642", + "2644", + "2645", + "2646", + "26468", + "26469", + "2647", + "26470", + "26471", + "26472", + "26476", + "2648", + "2649", + "26493", + "26494", + "26496", + "26497", + "26499", + "265", + "2650", + "26502", + "26503", + "26504", + "26505", + "26507", + "26508", + "26509", + "2651", + "26511", + "26512", + "26515", + "26517", + "26519", + "2652", + "26520", + "26521", + "26523", + "26524", + "26525", + "26526", + "26528", + "26529", + "2653", + "26531", + "26532", + "26533", + "26534", + "26538", + "26539", + "26548", + "2657", + "26574", + "26575", + "26576", + "26577", + "26578", + "26579", + "2658", + "26580", + "26585", + "26586", + "26589", + "26595", + "266", + "2660", + "26608", + "26609", + "2661", + "26610", + "2662", + "2664", + "26648", + "2665", + "26658", + "26659", + "266629", + "26664", + "266655", + "266675", + "266722", + "266727", + "266740", + "266743", + "266747", + "2668", + "266812", + "26683", + "26686", + "26687", + "26689", + "2669", + "26692", + "26693", + "266977", + "267", + "2670", + "267002", + "267012", + "267020", + "26707", + "2671", + "26716", + "2672", + "2673", + "26735", + "26737", + "2674", + "26740", + "26747", + "2675", + "26750", + "26751", + "2676", + "2677", + "2678", + "268", + "2683", + "2686", + "2687", + "26872", + "26873", + "2688", + "2689", + "269", + "2690", + "2691", + "2692", + "2693", + "2694", + "2695", + "26952", + "26953", + "26958", + "26959", + "2696", + "26960", + "2697", + "26973", + "26974", + "26984", + "26985", + "26986", + "26993", + "26994", + "26995", + "26996", + "26998", + "26999", + "27", + "270", + "2700", + "27000", + "27005", + "27006", + "2701", + "27010", + "27012", + "27013", + "27018", + "27019", + "2702", + "27020", + "27022", + "27023", + "2703", + "27030", + "27031", + "27032", + "27033", + "27034", + "27035", + "27036", + "27037", + "27039", + "27040", + "27042", + "27043", + "27044", + "2705", + "2706", + "27063", + "27065", + "27067", + "27068", + "27069", + "2707", + "27071", + "27072", + "27074", + "27075", + "27076", + "27077", + "27079", + "27085", + "27087", + "27089", + "2709", + "27090", + "27091", + "27092", + "27094", + "27095", + "27097", + "27098", + "271", + "2710", + "27101", + "27102", + "27106", + "27107", + "27109", + "27111", + "27112", + "27113", + "27115", + "2712", + "27120", + "27121", + "27122", + "27123", + "27124", + "27125", + "27127", + "27128", + "27129", + "2713", + "27130", + "27131", + "27132", + "27133", + "27134", + "27136", + "27141", + "27143", + "27145", + "27146", + "27147", + "27148", + "27151", + "27152", + "27153", + "27154", + "27156", + "27158", + "27159", + "27161", + "27163", + "27164", + "27165", + "27166", + "2717", + "27173", + "27175", + "27177", + "27178", + "27179", + "27180", + "27181", + "27183", + "27185", + "27189", + "2719", + "27190", + "27197", + "27198", + "27199", + "272", + "2720", + "27201", + "27202", + "27229", + "27230", + "27231", + "27232", + "27233", + "27235", + "27236", + "27237", + "27238", + "27239", + "27240", + "27241", + "27242", + "27243", + "27244", + "27245", + "27246", + "27247", + "27248", + "27249", + "27250", + "27252", + "27253", + "27254", + "27255", + "27257", + "27258", + "27283", + "27284", + "27285", + "27286", + "27287", + "27288", + "27289", + "2729", + "27290", + "27291", + "27292", + "27293", + "27294", + "27295", + "27296", + "27297", + "27299", + "273", + "2730", + "27300", + "27301", + "27302", + "27303", + "27304", + "27306", + "27309", + "2731", + "27314", + "27315", + "27316", + "27319", + "27324", + "27327", + "27328", + "27329", + "2733", + "27330", + "27332", + "27333", + "27334", + "27335", + "27336", + "27338", + "27339", + "2734", + "27340", + "27341", + "27343", + "27344", + "27345", + "27346", + "27347", + "27348", + "27349", + "2735", + "27350", + "27351", + "27352", + "2736", + "2737", + "2738", + "2739", + "274", + "2740", + "2741", + "2742", + "27429", + "2743", + "27430", + "27433", + "27434", + "27436", + "27439", + "2744", + "27440", + "27443", + "27445", + "2745", + "2746", + "2747", + "275", + "2752", + "276", + "2760", + "2762", + "2764", + "2765", + "2766", + "2767", + "2768", + "2769", + "277", + "2770", + "2771", + "2773", + "2774", + "2775", + "2776", + "2778", + "2779", + "278", + "2780", + "2781", + "2782", + "2783", + "2784", + "2785", + "2786", + "2787", + "2788", + "2790", + "2791", + "2792", + "2793", + "2794", + "2796", + "2797", + "2798", + "2799", + "28", + "280", + "2800", + "2801", + "2802", + "2803", + "2804", + "2805", + "2806", + "280636", + "280658", + "280664", + "2810", + "2811", + "2812", + "2813", + "2814", + "2815", + "2817", + "2819", + "2820", + "2821", + "2822", + "28227", + "2823", + "28231", + "28232", + "28234", + "2824", + "2826", + "282616", + "282617", + "282618", + "282679", + "2827", + "282763", + "282770", + "282775", + "2828", + "282808", + "282809", + "282890", + "2829", + "282966", + "282969", + "282973", + "282974", + "282991", + "282996", + "283", + "2830", + "283008", + "283078", + "283092", + "283093", + "283106", + "283116", + "283129", + "283130", + "283149", + "283150", + "283152", + "283159", + "28316", + "283160", + "283162", + "2832", + "283208", + "283209", + "283212", + "283219", + "283229", + "283232", + "283234", + "283237", + "283238", + "283248", + "283254", + "283284", + "283297", + "283298", + "2833", + "283310", + "283316", + "283337", + "283349", + "283358", + "283365", + "283373", + "283375", + "283377", + "283383", + "283385", + "2834", + "283417", + "283420", + "283431", + "283450", + "283459", + "283461", + "283464", + "283471", + "283489", + "2835", + "283514", + "283518", + "283521", + "283537", + "283554", + "283571", + "283576", + "283578", + "283600", + "283629", + "283635", + "283638", + "283643", + "283652", + "283659", + "283677", + "283685", + "283694", + "2837", + "283726", + "283742", + "283748", + "283767", + "283768", + "2838", + "283807", + "283820", + "283847", + "283848", + "283849", + "283869", + "283870", + "283871", + "283875", + "283897", + "283899", + "283927", + "283933", + "283948", + "283951", + "283953", + "283971", + "283985", + "283987", + "283989", + "283991", + "283999", + "284", + "2840", + "284001", + "284004", + "284013", + "284018", + "284021", + "284023", + "284040", + "284058", + "284067", + "284069", + "284071", + "284076", + "284086", + "284098", + "284099", + "2841", + "284106", + "284110", + "284111", + "284114", + "284119", + "284129", + "284131", + "284161", + "284184", + "284194", + "2842", + "284207", + "284217", + "284252", + "284254", + "284257", + "284266", + "284273", + "284274", + "284293", + "284297", + "2843", + "284306", + "284307", + "284309", + "284312", + "284323", + "284325", + "284338", + "284339", + "284340", + "284346", + "284348", + "284349", + "284352", + "284353", + "284358", + "284359", + "284361", + "284366", + "284369", + "284370", + "284371", + "284382", + "284383", + "284390", + "284391", + "284402", + "284403", + "284406", + "284415", + "284417", + "284418", + "284422", + "284427", + "284428", + "284433", + "284434", + "284439", + "284443", + "284451", + "284459", + "284467", + "284485", + "284486", + "284498", + "2845", + "284521", + "284525", + "284532", + "284541", + "284546", + "284565", + "2846", + "284611", + "284612", + "284613", + "284615", + "284654", + "284656", + "284680", + "284695", + "284697", + "2847", + "284716", + "284723", + "284739", + "284759", + "2848", + "284805", + "284827", + "2849", + "284904", + "284948", + "284958", + "284992", + "284996", + "285", + "2850", + "285016", + "285025", + "285051", + "285093", + "285095", + "28511", + "28512", + "285126", + "28513", + "28514", + "285141", + "285148", + "285172", + "285175", + "285180", + "285190", + "285193", + "285195", + "2852", + "285203", + "285220", + "285231", + "285237", + "285242", + "285267", + "285268", + "285282", + "2853", + "285311", + "285313", + "285315", + "285331", + "285335", + "285343", + "285346", + "285349", + "285362", + "285367", + "285368", + "285381", + "285382", + "285386", + "2854", + "285423", + "285429", + "285440", + "285489", + "285498", + "285513", + "285521", + "285525", + "285527", + "285533", + "285555", + "285556", + "285588", + "285590", + "285596", + "285598", + "2856", + "285600", + "285601", + "285605", + "285613", + "285636", + "285641", + "285643", + "285659", + "285671", + "285672", + "285676", + "2857", + "285704", + "285753", + "285755", + "285761", + "285782", + "285800", + "285848", + "285852", + "285855", + "285877", + "285888", + "2859", + "285955", + "285966", + "285971", + "285973", + "285989", + "286", + "286006", + "286046", + "286053", + "286075", + "286077", + "286097", + "2861", + "286133", + "286144", + "286148", + "286151", + "286183", + "286187", + "2862", + "286204", + "286205", + "286207", + "286234", + "286256", + "286257", + "286262", + "2863", + "286319", + "286336", + "286343", + "286362", + "286380", + "2864", + "286410", + "286430", + "286436", + "286451", + "286464", + "286499", + "2865", + "286514", + "286527", + "286530", + "2866", + "286676", + "2867", + "286749", + "286753", + "2868", + "286826", + "286827", + "286887", + "2869", + "287", + "2870", + "287015", + "2872", + "2873", + "2874", + "2875", + "2877", + "2878", + "2879", + "288", + "2880", + "2882", + "2885", + "2886", + "2887", + "2888", + "2889", + "2890", + "2891", + "2892", + "2893", + "2894", + "2895", + "28951", + "28952", + "28954", + "28955", + "28956", + "28957", + "28958", + "28959", + "2896", + "28960", + "28962", + "28964", + "28965", + "28966", + "28968", + "28969", + "2897", + "28970", + "28971", + "28972", + "28973", + "28974", + "28976", + "28977", + "28978", + "2898", + "28981", + "28982", + "28983", + "28984", + "28985", + "28986", + "28987", + "28988", + "28989", + "2899", + "28990", + "28991", + "28992", + "28996", + "28998", + "28999", + "29", + "290", + "2900", + "2901", + "29015", + "2902", + "29028", + "2903", + "29035", + "2904", + "2905", + "29057", + "29058", + "2906", + "29062", + "29063", + "29066", + "29068", + "2907", + "29070", + "29071", + "29072", + "29074", + "29078", + "29079", + "2908", + "29080", + "29081", + "29083", + "29085", + "29086", + "29087", + "29088", + "29089", + "2909", + "29090", + "29091", + "29093", + "29094", + "29095", + "29097", + "29098", + "29099", + "291", + "29100", + "29101", + "29102", + "29103", + "29104", + "29105", + "29106", + "29107", + "29108", + "29109", + "2911", + "29110", + "29113", + "29114", + "29115", + "29116", + "29117", + "29118", + "29119", + "2912", + "29121", + "29122", + "29123", + "29124", + "29125", + "29126", + "29127", + "29128", + "2913", + "2914", + "2915", + "2916", + "2917", + "2918", + "2919", + "292", + "2920", + "2921", + "2922", + "2923", + "2925", + "2926", + "2928", + "293", + "2931", + "2932", + "2934", + "2935", + "2936", + "2937", + "2938", + "2939", + "2940", + "2941", + "2944", + "2946", + "2947", + "2948", + "2949", + "2950", + "2954", + "2956", + "2957", + "2958", + "2959", + "2960", + "2961", + "2962", + "2963", + "2965", + "2966", + "2967", + "2968", + "2969", + "2971", + "2972", + "2975", + "2976", + "29760", + "29761", + "29763", + "29765", + "29766", + "29767", + "2977", + "29775", + "29777", + "2978", + "29780", + "29781", + "29785", + "29789", + "2979", + "29796", + "29799", + "2980", + "29800", + "29801", + "29802", + "29803", + "2981", + "2982", + "2983", + "2984", + "29841", + "29842", + "29843", + "29844", + "29851", + "29855", + "2986", + "2987", + "29880", + "29881", + "29882", + "29883", + "29886", + "29887", + "29888", + "29889", + "29890", + "29893", + "29894", + "29895", + "29896", + "29899", + "2990", + "29901", + "29902", + "29903", + "29904", + "29906", + "29907", + "29909", + "29911", + "29914", + "29915", + "29916", + "29919", + "2992", + "29920", + "29922", + "29923", + "29924", + "29925", + "29926", + "29927", + "29928", + "29929", + "2993", + "29930", + "29933", + "29934", + "29935", + "29937", + "2994", + "29940", + "29941", + "29942", + "29943", + "29944", + "29945", + "29946", + "29947", + "29948", + "29949", + "2995", + "29950", + "29951", + "29952", + "29953", + "29954", + "29956", + "29957", + "29958", + "29959", + "2996", + "29960", + "29964", + "29965", + "29966", + "29967", + "29968", + "2997", + "29970", + "29974", + "29978", + "29979", + "2998", + "29980", + "29982", + "29984", + "29985", + "29986", + "29988", + "29989", + "2999", + "29990", + "29991", + "29992", + "29993", + "29994", + "29995", + "29997", + "29998", + "29999", + "30", + "3000", + "30000", + "30001", + "30008", + "30009", + "3001", + "30010", + "30011", + "30012", + "30014", + "3002", + "3003", + "3004", + "3005", + "3006", + "30061", + "30062", + "3007", + "3008", + "3009", + "301", + "3010", + "3012", + "3013", + "3014", + "3015", + "3017", + "3018", + "302", + "3020", + "3021", + "3024", + "3026", + "3028", + "3029", + "3030", + "3032", + "3033", + "3034", + "3035", + "3036", + "3037", + "3038", + "3039", + "3040", + "3042", + "3043", + "3045", + "3046", + "3047", + "3048", + "3049", + "3050", + "3052", + "3053", + "3054", + "3055", + "3059", + "306", + "3060", + "3061", + "3062", + "3064", + "3065", + "3066", + "3067", + "3068", + "3069", + "307", + "3070", + "3071", + "3073", + "3074", + "3075", + "3077", + "3078", + "308", + "3080", + "3081", + "30811", + "30812", + "30813", + "30814", + "30815", + "30816", + "30817", + "30818", + "30819", + "3082", + "30820", + "30827", + "3083", + "30832", + "30833", + "30834", + "30835", + "30836", + "30837", + "3084", + "30844", + "30845", + "30846", + "30848", + "30849", + "30850", + "30851", + "3087", + "309", + "3090", + "3091", + "3092", + "3093", + "3094", + "3096", + "30968", + "3097", + "3098", + "3099", + "31", + "310", + "3101", + "3104", + "3105", + "3106", + "3107", + "3108", + "3109", + "311", + "3110", + "3111", + "3112", + "3113", + "3115", + "3117", + "3118", + "3119", + "312", + "3120", + "3122", + "3123", + "3127", + "313", + "3131", + "3133", + "3134", + "3135", + "314", + "3140", + "3141", + "3142", + "3145", + "3146", + "3148", + "3149", + "3150", + "3151", + "3155", + "3156", + "3157", + "3158", + "3159", + "316", + "3161", + "3162", + "3163", + "3164", + "3166", + "3167", + "3169", + "317", + "3170", + "3171", + "3172", + "3174", + "3175", + "3176", + "317649", + "317662", + "317671", + "3177", + "317701", + "317703", + "317719", + "317749", + "317754", + "317761", + "317762", + "317772", + "317781", + "3178", + "318", + "3181", + "3182", + "3183", + "3184", + "3185", + "3187", + "3188", + "3189", + "319", + "3190", + "3191", + "319100", + "319101", + "3192", + "3195", + "3196", + "3198", + "3199", + "32", + "320", + "3200", + "3201", + "3202", + "3203", + "3204", + "3205", + "3206", + "3207", + "3208", + "3209", + "321", + "3211", + "3212", + "3213", + "3214", + "3215", + "3216", + "3217", + "3218", + "3219", + "322", + "3221", + "3222", + "3223", + "3224", + "3225", + "3226", + "3227", + "3228", + "3229", + "323", + "3231", + "3232", + "3233", + "3234", + "3235", + "3236", + "3237", + "3238", + "3239", + "324", + "3240", + "3241", + "3242", + "3248", + "3249", + "325", + "3250", + "3251", + "3257", + "326", + "3263", + "326340", + "3265", + "3266", + "326624", + "326625", + "3267", + "3268", + "3269", + "327", + "3270", + "3273", + "3274", + "3275", + "3276", + "327657", + "328", + "3280", + "3281", + "3283", + "3284", + "329", + "3290", + "3291", + "3292", + "3293", + "3294", + "3295", + "3297", + "3298", + "3299", + "33", + "330", + "3300", + "3301", + "3303", + "3304", + "3305", + "3306", + "3308", + "3309", + "331", + "3310", + "3312", + "3313", + "3315", + "3316", + "332", + "3320", + "3321", + "3326", + "3329", + "333", + "3336", + "3337", + "3338", + "3339", + "333926", + "333929", + "333932", + "334", + "3340", + "3344", + "3346", + "3347", + "335", + "3350", + "3351", + "3352", + "3354", + "3355", + "3356", + "3357", + "3358", + "3359", + "336", + "3360", + "3361", + "3362", + "3363", + "3364", + "337", + "3371", + "3373", + "3375", + "3376", + "337867", + "337876", + "337878", + "337879", + "337880", + "337882", + "337959", + "337960", + "337963", + "337966", + "337967", + "337968", + "337969", + "337970", + "337971", + "337972", + "337973", + "337974", + "337975", + "337976", + "337977", + "337978", + "337979", + "337985", + "338", + "338094", + "3381", + "3382", + "3383", + "338321", + "338322", + "338323", + "338324", + "338328", + "338339", + "338376", + "338382", + "338398", + "3384", + "338440", + "338442", + "3385", + "338557", + "338567", + "338596", + "338599", + "3386", + "338645", + "338657", + "338661", + "338662", + "338667", + "338674", + "338675", + "338692", + "338699", + "338707", + "338751", + "338755", + "338761", + "338773", + "338785", + "338811", + "338872", + "338879", + "338917", + "338949", + "339", + "339105", + "339122", + "339145", + "339168", + "339175", + "339210", + "339221", + "339229", + "339230", + "339287", + "339291", + "339302", + "339318", + "339324", + "339327", + "339344", + "339345", + "339366", + "339390", + "339398", + "3394", + "339403", + "339416", + "339448", + "339451", + "339453", + "339456", + "339479", + "339487", + "339488", + "339500", + "339501", + "339512", + "339541", + "339559", + "3396", + "339665", + "339669", + "3397", + "339745", + "339761", + "339766", + "339768", + "339778", + "339779", + "3398", + "339804", + "339829", + "339834", + "339855", + "339896", + "3399", + "339965", + "339967", + "339976", + "339977", + "339983", + "34", + "3400", + "340024", + "340061", + "340075", + "340096", + "340120", + "340146", + "340152", + "340156", + "340168", + "340204", + "340205", + "340252", + "340260", + "340267", + "340273", + "340277", + "340307", + "340348", + "340351", + "340359", + "340371", + "340385", + "340390", + "340393", + "340419", + "340481", + "340485", + "340526", + "340527", + "340529", + "340533", + "340542", + "340543", + "340547", + "340554", + "340562", + "340578", + "340595", + "340596", + "340602", + "340654", + "340665", + "340706", + "340719", + "340745", + "340784", + "340811", + "340895", + "340900", + "340980", + "340990", + "341", + "341019", + "341032", + "341116", + "341152", + "341208", + "341276", + "341277", + "341350", + "341359", + "341392", + "341405", + "341416", + "341418", + "341567", + "3416", + "341640", + "341676", + "3417", + "341799", + "3418", + "341880", + "341883", + "3419", + "341947", + "3420", + "342035", + "342096", + "3421", + "342125", + "342132", + "342184", + "3422", + "3423", + "342346", + "342357", + "342371", + "342372", + "3425", + "342510", + "342527", + "342538", + "342574", + "3426", + "342618", + "342667", + "3428", + "342850", + "342865", + "342892", + "342897", + "342898", + "3429", + "342900", + "342908", + "342909", + "342918", + "342926", + "342931", + "342933", + "342945", + "342977", + "342979", + "343", + "3430", + "343035", + "343066", + "343068", + "343069", + "343070", + "343071", + "343099", + "3431", + "343169", + "343170", + "343171", + "343172", + "343173", + "343263", + "3433", + "3434", + "343413", + "343450", + "343472", + "343521", + "343563", + "343578", + "343637", + "343641", + "3437", + "343702", + "3439", + "343930", + "343990", + "344", + "3440", + "344018", + "344022", + "344065", + "3441", + "344148", + "344167", + "344191", + "3442", + "3443", + "344387", + "3444", + "3445", + "344558", + "344561", + "3446", + "344657", + "344658", + "3447", + "344752", + "344758", + "344787", + "3448", + "344805", + "344807", + "344838", + "344892", + "3449", + "344905", + "345", + "345051", + "345062", + "345079", + "3451", + "345193", + "3452", + "345222", + "345274", + "345275", + "3454", + "345456", + "345462", + "3455", + "345557", + "3456", + "345611", + "345630", + "345643", + "345651", + "345757", + "345778", + "3458", + "345895", + "3459", + "345930", + "346", + "3460", + "346007", + "346157", + "346171", + "346288", + "346389", + "346517", + "346525", + "346528", + "346562", + "346606", + "346653", + "346673", + "346689", + "3467", + "346702", + "347", + "347051", + "347148", + "347168", + "347169", + "347240", + "347252", + "347273", + "347344", + "347365", + "347404", + "347411", + "347442", + "347454", + "347468", + "347475", + "347487", + "3475", + "347516", + "347517", + "347527", + "347541", + "347549", + "3476", + "347688", + "347730", + "347731", + "347732", + "347733", + "347734", + "347735", + "347736", + "347744", + "347853", + "347862", + "3479", + "347902", + "348", + "3480", + "348013", + "348093", + "348094", + "3481", + "348110", + "348158", + "348174", + "348180", + "3482", + "348235", + "348262", + "3483", + "348303", + "348327", + "348378", + "3484", + "348487", + "3485", + "3486", + "348654", + "3487", + "348751", + "348793", + "3488", + "348801", + "348807", + "3489", + "348932", + "348938", + "348980", + "348995", + "3490", + "349075", + "3491", + "349136", + "349149", + "349334", + "349565", + "349633", + "349667", + "35", + "350", + "350383", + "3508", + "351", + "3516", + "352909", + "352999", + "353", + "353088", + "353091", + "353116", + "353131", + "353132", + "353133", + "353134", + "353135", + "353137", + "353139", + "353140", + "353141", + "353142", + "353143", + "353144", + "353145", + "353149", + "353164", + "353174", + "353189", + "353238", + "353267", + "353274", + "353288", + "353299", + "353322", + "353323", + "353324", + "353332", + "353333", + "353345", + "353355", + "353376", + "353497", + "353500", + "353513", + "353514", + "354", + "3543", + "3547", + "3549", + "355", + "3550", + "3551", + "3552", + "3553", + "3554", + "3556", + "3557", + "3558", + "3559", + "356", + "3560", + "3561", + "3562", + "3563", + "3565", + "3566", + "3567", + "3568", + "3569", + "357", + "3570", + "3572", + "3574", + "3575", + "3576", + "3577", + "3578", + "3579", + "358", + "3581", + "3586", + "3587", + "3588", + "3589", + "359", + "3590", + "3592", + "3593", + "3594", + "3595", + "3596", + "3597", + "359710", + "359787", + "3598", + "359845", + "359948", + "36", + "360", + "3600", + "360023", + "360030", + "3601", + "360200", + "360203", + "360205", + "360226", + "3603", + "3605", + "3606", + "3607", + "3608", + "3611", + "3612", + "3613", + "3614", + "3615", + "3617", + "3619", + "362", + "3620", + "3621", + "3622", + "3623", + "3624", + "3625", + "3626", + "3627", + "3628", + "363", + "3630", + "3632", + "3633", + "3635", + "3636", + "3638", + "364", + "3640", + "3641", + "3642", + "3643", + "3645", + "3646", + "3651", + "3652", + "3654", + "3655", + "3656", + "3658", + "3659", + "366", + "3660", + "3661", + "3662", + "3663", + "3664", + "3665", + "3667", + "3669", + "367", + "3670", + "3671", + "3672", + "3673", + "3674", + "3675", + "3676", + "3678", + "3679", + "368", + "3680", + "3681", + "3682", + "3683", + "3684", + "3685", + "3687", + "3688", + "3689", + "3690", + "3691", + "3692", + "3693", + "3694", + "3695", + "3696", + "3697", + "3698", + "3699", + "37", + "3700", + "3702", + "3703", + "3704", + "3705", + "3706", + "3707", + "3708", + "3709", + "3710", + "3712", + "3713", + "3714", + "3716", + "3717", + "3718", + "372", + "3720", + "3725", + "3726", + "3727", + "3728", + "373", + "3730", + "373156", + "3732", + "3735", + "373509", + "3736", + "3737", + "3738", + "373863", + "3739", + "374", + "3741", + "3742", + "374286", + "374291", + "3743", + "374354", + "374355", + "374378", + "374383", + "374393", + "374395", + "3744", + "374403", + "374407", + "374454", + "374462", + "374470", + "3745", + "374569", + "3746", + "374618", + "374654", + "374655", + "374659", + "3747", + "374739", + "374768", + "374786", + "3748", + "374819", + "374860", + "374864", + "374868", + "374872", + "374875", + "374877", + "374879", + "374882", + "374887", + "374897", + "374899", + "3749", + "374900", + "374907", + "374918", + "374920", + "374928", + "374946", + "374955", + "374969", + "374973", + "374977", + "374986", + "3750", + "375033", + "375035", + "375056", + "375057", + "375061", + "3751", + "375189", + "375190", + "3752", + "375248", + "375287", + "375298", + "3753", + "375307", + "375316", + "375323", + "375337", + "375341", + "375346", + "375387", + "3754", + "375444", + "375449", + "375484", + "3755", + "375519", + "375567", + "375593", + "3756", + "375607", + "375611", + "375612", + "375616", + "375686", + "3757", + "375704", + "375743", + "375748", + "375759", + "375775", + "375790", + "3758", + "3759", + "3760", + "3761", + "376132", + "3762", + "376267", + "3763", + "3764", + "376497", + "3765", + "3766", + "3767", + "3768", + "3769", + "376940", + "377", + "3770", + "377007", + "3772", + "3775", + "3776", + "377630", + "377677", + "3777", + "3778", + "377841", + "3779", + "378", + "3780", + "378108", + "3782", + "3783", + "3784", + "3785", + "3786", + "3787", + "378708", + "3788", + "378807", + "378884", + "378925", + "378948", + "378949", + "378950", + "378951", + "379", + "3790", + "3791", + "3792", + "3795", + "3796", + "3797", + "3798", + "3799", + "38", + "3800", + "3801", + "3802", + "3804", + "3805", + "381", + "3811", + "3812", + "3814", + "3815", + "3816", + "3817", + "3818", + "382", + "3820", + "3821", + "3822", + "3823", + "3824", + "3827", + "383", + "3831", + "3832", + "3833", + "3834", + "3835", + "3836", + "3837", + "3838", + "3839", + "384", + "3840", + "3841", + "3842", + "3843", + "3845", + "3846", + "3848", + "3849", + "3850", + "3851", + "3852", + "3853", + "3854", + "3855", + "3856", + "3857", + "3858", + "3859", + "3860", + "3861", + "3866", + "386617", + "386618", + "386653", + "386672", + "386674", + "386675", + "386676", + "386677", + "386678", + "386679", + "386680", + "386681", + "386682", + "386683", + "386684", + "386685", + "386724", + "386746", + "3868", + "387", + "387032", + "387082", + "387103", + "387104", + "387119", + "387129", + "3872", + "387263", + "387264", + "387266", + "387267", + "387273", + "387332", + "387338", + "387357", + "387496", + "3875", + "387509", + "387521", + "387522", + "387597", + "387601", + "387640", + "387680", + "387694", + "387695", + "387700", + "387707", + "387712", + "387715", + "387718", + "387723", + "387733", + "387748", + "387755", + "387758", + "387763", + "387775", + "387778", + "387787", + "387804", + "387836", + "387837", + "387849", + "387856", + "387882", + "387885", + "387890", + "387893", + "387911", + "387914", + "387921", + "387923", + "387990", + "388", + "3880", + "388015", + "388021", + "3881", + "388112", + "388121", + "388125", + "388135", + "3882", + "388228", + "388272", + "388284", + "3883", + "388323", + "388324", + "388325", + "388327", + "388333", + "388335", + "388336", + "388341", + "388364", + "388381", + "388389", + "388394", + "3884", + "388403", + "388419", + "388428", + "388468", + "3885", + "388512", + "388523", + "388531", + "388533", + "388536", + "388551", + "388552", + "388553", + "388555", + "388558", + "388559", + "388561", + "388564", + "388566", + "388567", + "388569", + "388581", + "388585", + "388588", + "388591", + "388595", + "388610", + "388611", + "388630", + "388633", + "388646", + "388649", + "388650", + "388662", + "388677", + "388695", + "388697", + "388698", + "3887", + "388701", + "388722", + "388730", + "388743", + "388753", + "388761", + "388789", + "388795", + "388799", + "3888", + "388818", + "388820", + "388849", + "388886", + "3889", + "388931", + "388939", + "388946", + "388951", + "388960", + "388962", + "388963", + "388969", + "389", + "3890", + "389015", + "389058", + "389072", + "389073", + "389075", + "389084", + "3891", + "389114", + "389118", + "389123", + "389124", + "389125", + "389136", + "389151", + "389152", + "389158", + "389161", + "389170", + "389177", + "389197", + "3892", + "389203", + "389206", + "389207", + "389208", + "389257", + "389289", + "389320", + "389332", + "389333", + "389336", + "389337", + "389362", + "389376", + "389383", + "389384", + "389396", + "389400", + "389421", + "389432", + "389434", + "389493", + "3895", + "389524", + "389541", + "389549", + "389558", + "389610", + "389643", + "389658", + "389668", + "389677", + "389692", + "3897", + "389730", + "389761", + "389762", + "389763", + "389766", + "389792", + "389799", + "3898", + "389812", + "389813", + "389816", + "389827", + "389840", + "389852", + "389856", + "389857", + "389860", + "389874", + "3899", + "389903", + "389941", + "39", + "390", + "390010", + "390031", + "390033", + "390036", + "390037", + "390038", + "390054", + "390058", + "390059", + "390061", + "390063", + "390064", + "390066", + "390067", + "390072", + "390075", + "390077", + "390078", + "390079", + "390081", + "390082", + "390083", + "390084", + "390093", + "390110", + "390113", + "390142", + "390144", + "390148", + "390151", + "390152", + "390155", + "390157", + "390162", + "390168", + "390174", + "390181", + "390190", + "390191", + "390195", + "390197", + "390199", + "3902", + "390201", + "390205", + "390212", + "390231", + "390243", + "390245", + "390259", + "390260", + "390261", + "390264", + "390265", + "390271", + "390275", + "3903", + "390313", + "390321", + "390323", + "390326", + "390327", + "3904", + "390429", + "390431", + "390433", + "390437", + "390443", + "390445", + "390538", + "390594", + "390595", + "390598", + "3906", + "390616", + "390637", + "390648", + "390649", + "390664", + "390667", + "390714", + "390748", + "390790", + "390792", + "3908", + "390874", + "390883", + "390892", + "3909", + "390916", + "390927", + "390928", + "390937", + "390940", + "390980", + "390992", + "390999", + "391", + "3910", + "391002", + "391003", + "391004", + "391013", + "391059", + "3911", + "391104", + "391107", + "391109", + "391112", + "391114", + "391123", + "391189", + "391190", + "391192", + "391194", + "391195", + "391196", + "3912", + "391211", + "391253", + "3913", + "391356", + "391365", + "3914", + "391475", + "3915", + "3916", + "391712", + "391714", + "391723", + "391742", + "391746", + "391747", + "391769", + "3918", + "392", + "3920", + "3921", + "392138", + "392188", + "392197", + "392255", + "392307", + "392309", + "392376", + "392390", + "392391", + "392392", + "392399", + "392433", + "392465", + "3925", + "392509", + "392517", + "392617", + "392636", + "3927", + "392843", + "392862", + "3929", + "393", + "3930", + "393046", + "3931", + "3933", + "3934", + "3936", + "3937", + "3938", + "394", + "394263", + "3948", + "3949", + "395", + "3950", + "3952", + "3953", + "3954", + "3955", + "3956", + "3957", + "3958", + "3959", + "396", + "3960", + "3963", + "3964", + "3965", + "397", + "3972", + "3973", + "3975", + "3976", + "3977", + "3978", + "398", + "3980", + "3981", + "3982", + "3984", + "3985", + "3987", + "3988", + "399", + "3990", + "3991", + "3992", + "3993", + "399473", + "399474", + "3995", + "399512", + "3996", + "399664", + "399665", + "399668", + "399671", + "399687", + "399693", + "399694", + "399697", + "3998", + "399814", + "399818", + "399823", + "399888", + "399909", + "399939", + "399947", + "399949", + "399967", + "399968", + "399979", + "40", + "400", + "4000", + "4001", + "400120", + "400224", + "400258", + "4004", + "400451", + "400499", + "4005", + "400506", + "400566", + "400569", + "400581", + "400629", + "400668", + "400673", + "4007", + "400713", + "400720", + "400735", + "400736", + "400745", + "400746", + "400757", + "400793", + "400797", + "4008", + "400818", + "400823", + "400830", + "400831", + "400891", + "4009", + "400916", + "400935", + "400954", + "400961", + "400986", + "401", + "4010", + "401024", + "401036", + "401067", + "401081", + "401089", + "401097", + "401115", + "401124", + "401137", + "401138", + "401145", + "401152", + "401190", + "4012", + "401207", + "401236", + "401250", + "401251", + "401258", + "401262", + "401265", + "4013", + "401387", + "401397", + "401399", + "4014", + "401409", + "401427", + "401447", + "401466", + "401474", + "401494", + "401498", + "4015", + "401505", + "401541", + "401546", + "401548", + "401551", + "401562", + "401565", + "4016", + "401612", + "401613", + "401647", + "401661", + "401665", + "401666", + "401667", + "4017", + "401720", + "4018", + "401827", + "401934", + "401944", + "401992", + "401993", + "401994", + "402", + "402055", + "402117", + "402135", + "4023", + "402317", + "402381", + "402415", + "4025", + "402569", + "402573", + "402635", + "402665", + "402682", + "402778", + "403", + "403239", + "403244", + "403253", + "403273", + "403274", + "403277", + "403278", + "403282", + "403284", + "4033", + "403313", + "403314", + "4034", + "4035", + "4036", + "4037", + "4038", + "4040", + "404037", + "404093", + "4041", + "404203", + "404217", + "404281", + "4043", + "4045", + "404550", + "404552", + "4046", + "404636", + "404672", + "4047", + "404734", + "404785", + "4048", + "4049", + "405", + "4050", + "4051", + "4052", + "4053", + "4054", + "4055", + "4056", + "4057", + "405753", + "405754", + "4058", + "4059", + "406", + "4060", + "4061", + "4062", + "4063", + "4064", + "4065", + "4066", + "4067", + "4068", + "4069", + "407", + "4070", + "4071", + "4072", + "4074", + "4076", + "4077", + "407738", + "407977", + "408", + "408050", + "4081", + "408187", + "4082", + "408263", + "4084", + "4085", + "4086", + "4087", + "4088", + "4089", + "409", + "4090", + "4091", + "4092", + "4093", + "4094", + "4097", + "4099", + "41", + "410", + "4100", + "4101", + "4102", + "4103", + "4105", + "4107", + "4108", + "4109", + "411", + "4110", + "4111", + "4112", + "4113", + "4114", + "4115", + "4116", + "4117", + "4118", + "412", + "4121", + "4122", + "4123", + "4124", + "4125", + "4126", + "4128", + "4129", + "4130", + "4131", + "4133", + "4134", + "4135", + "4137", + "4139", + "414", + "4140", + "414059", + "414060", + "414062", + "4141", + "414149", + "414152", + "414157", + "414189", + "4142", + "4143", + "414301", + "414325", + "414328", + "414332", + "4144", + "4145", + "4146", + "4147", + "4148", + "414899", + "4149", + "414918", + "414919", + "415", + "4150", + "4151", + "415116", + "415117", + "4152", + "4153", + "4154", + "4155", + "4157", + "4158", + "4159", + "416", + "4160", + "4161", + "4162", + "4163", + "4166", + "4168", + "417", + "4170", + "4171", + "4172", + "4173", + "4174", + "4175", + "4176", + "4179", + "4184", + "4185", + "4188", + "4189", + "419", + "4191", + "4192", + "4193", + "4194", + "4199", + "420", + "4200", + "4201", + "4204", + "4205", + "4208", + "4209", + "421", + "4210", + "4211", + "4212", + "4214", + "4215", + "4216", + "4217", + "4218", + "4222", + "4223", + "4224", + "4225", + "4232", + "4233", + "4234", + "4236", + "4237", + "4238", + "4239", + "4240", + "4241", + "4242", + "4245", + "4246", + "4247", + "4248", + "4249", + "4250", + "425054", + "4253", + "4254", + "4255", + "4256", + "4257", + "4258", + "4259", + "4261", + "4267", + "427", + "4277", + "4281", + "4282", + "4283", + "4284", + "4285", + "4286", + "4287", + "4288", + "4289", + "429", + "4292", + "4293", + "4294", + "4295", + "4296", + "4297", + "4298", + "4299", + "43", + "430", + "4300", + "4301", + "4302", + "4303", + "4306", + "4311", + "4312", + "4313", + "4314", + "4316", + "4317", + "431704", + "431705", + "431707", + "4318", + "4319", + "432", + "4320", + "4321", + "4322", + "4323", + "432355", + "4324", + "4325", + "4326", + "4327", + "4329", + "433", + "4330", + "4331", + "4332", + "4335", + "4336", + "4337", + "4338", + "434", + "4340", + "4342", + "4343", + "4345", + "435", + "4350", + "4351", + "4352", + "4353", + "4354", + "4355", + "4356", + "4357", + "4358", + "4360", + "4361", + "4363", + "438", + "43847", + "43849", + "439", + "439915", + "439921", + "439996", + "440", + "440021", + "440023", + "440026", + "440050", + "440051", + "440073", + "440077", + "440087", + "440093", + "440097", + "440138", + "440145", + "440153", + "440163", + "440184", + "440193", + "440243", + "440270", + "440275", + "440279", + "440295", + "440307", + "440335", + "440348", + "440350", + "440353", + "440387", + "440400", + "440435", + "440498", + "440503", + "440515", + "440519", + "440533", + "440560", + "440561", + "440563", + "440567", + "440574", + "440585", + "440590", + "440603", + "440672", + "440686", + "440689", + "440695", + "440699", + "440712", + "440730", + "440738", + "440804", + "440822", + "440829", + "440836", + "440854", + "440955", + "440956", + "440957", + "441024", + "441027", + "441054", + "441061", + "441150", + "441151", + "441161", + "441168", + "441234", + "441250", + "441272", + "441273", + "441282", + "441294", + "441308", + "441317", + "441323", + "441328", + "441376", + "441381", + "441457", + "441459", + "441476", + "441478", + "441495", + "441518", + "441519", + "441521", + "441525", + "441531", + "441549", + "441581", + "441584", + "441608", + "441631", + "441670", + "441864", + "441869", + "441873", + "441925", + "441933", + "442038", + "442117", + "442184", + "442185", + "442186", + "442191", + "442194", + "442197", + "442213", + "442247", + "442319", + "442361", + "442425", + "442444", + "442572", + "442590", + "442721", + "442862", + "442867", + "442868", + "443", + "4430", + "4435", + "4436", + "4437", + "4438", + "4439", + "444", + "4440", + "444882", + "445", + "445328", + "445329", + "445372", + "445571", + "445582", + "445815", + "4477", + "4478", + "4481", + "4482", + "4485", + "4486", + "4487", + "4488", + "448831", + "448834", + "448835", + "4489", + "4490", + "4493", + "4494", + "4495", + "4496", + "4499", + "4501", + "4502", + "4504", + "4507", + "4508", + "4509", + "4512", + "4513", + "4514", + "4515", + "4519", + "4520", + "4521", + "4522", + "4524", + "4528", + "4534", + "4535", + "4536", + "4537", + "4538", + "4539", + "4540", + "4541", + "4542", + "4543", + "4544", + "4547", + "4548", + "4552", + "4580", + "4584", + "4585", + "4586", + "4588", + "4589", + "4591", + "4593", + "4594", + "4595", + "4597", + "4598", + "4599", + "460", + "4600", + "4601", + "4602", + "4603", + "4604", + "4605", + "4606", + "4607", + "4608", + "4609", + "4610", + "4613", + "4616", + "4617", + "4618", + "4619", + "462", + "4620", + "4621", + "4622", + "4624", + "4625", + "4626", + "4627", + "4628", + "4629", + "463", + "4632", + "4633", + "4634", + "4635", + "4636", + "4637", + "4638", + "4640", + "4641", + "4642", + "4643", + "4644", + "4645", + "4646", + "4647", + "4648", + "4649", + "4650", + "4651", + "4653", + "4654", + "4656", + "4659", + "466", + "4660", + "4661", + "4664", + "4665", + "4666", + "4668", + "4669", + "467", + "4670", + "4671", + "4673", + "4674", + "4675", + "4676", + "4677", + "4678", + "468", + "4680", + "4681", + "4682", + "4683", + "4684", + "4685", + "4686", + "4688", + "4689", + "4690", + "4691", + "4692", + "4693", + "4694", + "4695", + "4696", + "4697", + "4698", + "47", + "4700", + "4701", + "4702", + "4704", + "4705", + "4706", + "4707", + "4708", + "4709", + "471", + "4710", + "4711", + "4712", + "4713", + "4714", + "4715", + "4716", + "4717", + "4718", + "472", + "4720", + "4722", + "4723", + "4724", + "4725", + "4726", + "4728", + "4729", + "473", + "4731", + "4733", + "4734", + "4735", + "4736", + "4738", + "4739", + "474", + "4741", + "474170", + "474343", + "474344", + "474354", + "474381", + "474382", + "474383", + "474384", + "4744", + "4745", + "4747", + "475", + "4750", + "4751", + "4752", + "4753", + "4756", + "4758", + "4759", + "476", + "4760", + "4761", + "4762", + "4763", + "477", + "4771", + "4772", + "4773", + "4774", + "4775", + "4776", + "4778", + "4779", + "478", + "4780", + "4781", + "4782", + "4783", + "4784", + "479", + "4790", + "4791", + "4792", + "4793", + "4794", + "4795", + "4796", + "4798", + "4799", + "48", + "480", + "4800", + "4801", + "4802", + "4803", + "4804", + "4807", + "4808", + "4809", + "481", + "4810", + "4811", + "4814", + "4815", + "4817", + "4818", + "482", + "4820", + "4821", + "4824", + "4825", + "4826", + "4828", + "4829", + "483", + "4830", + "4831", + "4832", + "4833", + "4835", + "4836", + "4837", + "4838", + "4839", + "4841", + "4842", + "4843", + "4846", + "4848", + "4849", + "4850", + "4851", + "4852", + "4853", + "4854", + "4855", + "4856", + "4857", + "4858", + "486", + "4860", + "4861", + "4862", + "4863", + "4864", + "4867", + "4868", + "4869", + "487", + "4878", + "4879", + "488", + "4880", + "4881", + "4882", + "4883", + "4884", + "4885", + "4886", + "4887", + "4889", + "489", + "4891", + "4892", + "4893", + "4897", + "4898", + "4899", + "49", + "490", + "4900", + "4901", + "4902", + "4904", + "4905", + "4907", + "4908", + "4909", + "491", + "4913", + "4914", + "4915", + "4917", + "4919", + "492", + "4920", + "4921", + "4922", + "4923", + "492307", + "492311", + "4924", + "4925", + "4926", + "4927", + "4928", + "4929", + "493", + "4931", + "4935", + "493753", + "4938", + "493829", + "493856", + "493860", + "493861", + "493869", + "4939", + "493901", + "493911", + "4940", + "494115", + "494118", + "494119", + "494143", + "494188", + "494197", + "4942", + "4943", + "494470", + "494513", + "494551", + "4946", + "4947", + "4948", + "495", + "4951", + "4952", + "4953", + "4956", + "4957", + "4958", + "496", + "4967", + "4968", + "4969", + "497189", + "497190", + "4973", + "4974", + "4975", + "4976", + "497661", + "4978", + "498", + "4982", + "4983", + "4985", + "49854", + "49855", + "49856", + "49860", + "49861", + "4988", + "4990", + "4991", + "4992", + "4993", + "4994", + "4998", + "4999", + "50", + "5000", + "5001", + "5002", + "5004", + "5005", + "5007", + "5008", + "5009", + "501", + "5010", + "5013", + "5015", + "5016", + "5017", + "5018", + "5019", + "5020", + "5021", + "5023", + "5024", + "5025", + "5026", + "5027", + "5028", + "5029", + "5030", + "5031", + "5032", + "5033", + "5034", + "503497", + "503542", + "503582", + "5036", + "503614", + "503618", + "5037", + "503834", + "503835", + "503841", + "504180", + "5042", + "5045", + "5046", + "5047", + "5048", + "50484", + "50485", + "50486", + "50487", + "50488", + "50489", + "5049", + "5050", + "50506", + "50507", + "50508", + "50509", + "5051", + "50511", + "50512", + "50515", + "5052", + "5053", + "5054", + "5055", + "5058", + "506", + "50604", + "50613", + "50614", + "50615", + "50616", + "50617", + "50618", + "50619", + "5062", + "50624", + "50626", + "50628", + "5063", + "50632", + "50636", + "5064", + "50640", + "50649", + "50650", + "50651", + "5066", + "5067", + "50674", + "5068", + "5069", + "50700", + "5071", + "50717", + "5073", + "5074", + "5075", + "5076", + "5077", + "5078", + "5079", + "5080", + "50801", + "50804", + "50805", + "50807", + "50808", + "50809", + "5081", + "50810", + "50813", + "50814", + "5082", + "5083", + "50831", + "50832", + "50833", + "50834", + "50835", + "50836", + "50837", + "50838", + "50839", + "50840", + "50846", + "50848", + "50852", + "50853", + "50855", + "50856", + "50859", + "50861", + "50862", + "50863", + "50865", + "5087", + "5089", + "509", + "5090", + "5091", + "5092", + "5093", + "50937", + "50939", + "5094", + "50940", + "50943", + "50944", + "50945", + "5095", + "5096", + "50964", + "5097", + "5098", + "50999", + "51", + "5100", + "51000", + "51001", + "51002", + "51003", + "51004", + "51005", + "51006", + "51008", + "51009", + "5101", + "51010", + "51011", + "51012", + "51013", + "51014", + "51015", + "51016", + "51018", + "51019", + "51020", + "51021", + "51022", + "51023", + "51024", + "51025", + "51026", + "51027", + "51028", + "51029", + "51030", + "51031", + "51032", + "51035", + "5104", + "51042", + "51043", + "51046", + "5105", + "51050", + "51052", + "51053", + "51056", + "51057", + "51058", + "51059", + "5106", + "51060", + "51061", + "51062", + "51063", + "51065", + "51066", + "51067", + "51068", + "51069", + "51070", + "51071", + "51072", + "51073", + "51074", + "51075", + "51076", + "51077", + "51078", + "51079", + "5108", + "51081", + "51082", + "51083", + "51084", + "51085", + "51086", + "51087", + "51088", + "51090", + "51091", + "51092", + "51093", + "51094", + "51095", + "51096", + "51097", + "51098", + "51099", + "51100", + "51101", + "51102", + "51103", + "51104", + "51105", + "51106", + "51107", + "51108", + "51109", + "5111", + "51110", + "51111", + "51112", + "51114", + "51115", + "51116", + "51117", + "51118", + "51119", + "51121", + "51122", + "51123", + "51124", + "51125", + "51126", + "51127", + "51128", + "51129", + "51131", + "51132", + "51133", + "51134", + "51135", + "51136", + "51138", + "51141", + "51142", + "51143", + "51144", + "51146", + "51147", + "51148", + "51149", + "51151", + "51154", + "51155", + "51156", + "51157", + "5116", + "51160", + "51161", + "51162", + "51163", + "51164", + "51166", + "51167", + "51168", + "51170", + "51171", + "51172", + "51174", + "51175", + "51176", + "51177", + "51179", + "5118", + "51181", + "51182", + "51184", + "51185", + "51186", + "51187", + "51188", + "5119", + "51191", + "51192", + "51193", + "51194", + "51195", + "51196", + "51199", + "51200", + "51201", + "51202", + "51203", + "51204", + "51205", + "51206", + "51207", + "51208", + "51209", + "5121", + "51213", + "51218", + "5122", + "51222", + "51224", + "51225", + "51226", + "51227", + "51228", + "51230", + "51231", + "51232", + "51233", + "51234", + "51236", + "51237", + "51239", + "51241", + "51244", + "51246", + "51247", + "51248", + "51249", + "5125", + "51250", + "51251", + "51252", + "51253", + "51255", + "51256", + "51257", + "51258", + "51259", + "5126", + "51260", + "51263", + "51264", + "51265", + "51266", + "51267", + "51268", + "5127", + "51270", + "51271", + "51272", + "51274", + "51277", + "51278", + "51279", + "5128", + "51280", + "51281", + "51282", + "51283", + "51284", + "51285", + "51286", + "51287", + "51289", + "5129", + "51290", + "51291", + "51292", + "51293", + "51294", + "51295", + "51296", + "51297", + "51298", + "51299", + "513", + "5130", + "51300", + "51301", + "51302", + "51303", + "51304", + "51305", + "51306", + "51307", + "51308", + "51309", + "51310", + "51311", + "51312", + "51313", + "51314", + "51315", + "51316", + "51317", + "51318", + "51319", + "5132", + "51320", + "51321", + "51322", + "51324", + "51326", + "51327", + "51329", + "5133", + "51330", + "51332", + "51333", + "51334", + "51335", + "51337", + "51338", + "51339", + "5134", + "51340", + "51341", + "51343", + "51347", + "51348", + "51350", + "51351", + "5136", + "51360", + "51361", + "51362", + "51363", + "51364", + "51365", + "51366", + "51367", + "51368", + "5137", + "51371", + "51372", + "51373", + "51375", + "51377", + "51378", + "51379", + "5138", + "51380", + "51382", + "51384", + "51385", + "51386", + "51388", + "51389", + "5139", + "51390", + "51393", + "51397", + "51398", + "51399", + "514", + "5140", + "51400", + "51406", + "51409", + "5141", + "51412", + "5142", + "51421", + "51422", + "51426", + "51427", + "51428", + "51429", + "5143", + "51430", + "51433", + "51434", + "51435", + "51438", + "51439", + "5144", + "51440", + "51441", + "51442", + "51444", + "51447", + "51449", + "5145", + "51450", + "51451", + "51454", + "51455", + "51458", + "5146", + "51460", + "51463", + "51465", + "51466", + "5147", + "51473", + "51474", + "51475", + "51477", + "51478", + "51479", + "5148", + "51480", + "51481", + "5149", + "51490", + "51491", + "51493", + "51495", + "51496", + "51497", + "51499", + "515", + "5150", + "51501", + "51503", + "51504", + "51506", + "51507", + "5151", + "51510", + "51512", + "51513", + "51514", + "51517", + "5152", + "51520", + "51522", + "51523", + "51524", + "51526", + "51527", + "51528", + "51529", + "5153", + "51530", + "51531", + "51533", + "51534", + "51535", + "51537", + "51538", + "5154", + "51540", + "51542", + "51545", + "51547", + "51548", + "5155", + "51550", + "51552", + "51554", + "51555", + "51557", + "51559", + "5156", + "51560", + "51561", + "51562", + "51564", + "51566", + "51567", + "51569", + "5157", + "51571", + "51573", + "51574", + "51575", + "5158", + "51582", + "51585", + "51586", + "51588", + "5159", + "51592", + "51593", + "51594", + "51599", + "516", + "51601", + "51602", + "51603", + "51604", + "51605", + "51606", + "51608", + "5161", + "51611", + "51614", + "51616", + "51617", + "51619", + "5162", + "51621", + "51622", + "51626", + "51629", + "5163", + "51631", + "51633", + "51634", + "51635", + "51637", + "51639", + "5164", + "51642", + "51643", + "51645", + "51646", + "51647", + "51649", + "5165", + "51650", + "51651", + "51652", + "51654", + "51655", + "51657", + "51659", + "5166", + "51660", + "51661", + "51663", + "51665", + "51666", + "51667", + "51668", + "51669", + "5167", + "51673", + "51676", + "51678", + "5168", + "51684", + "51686", + "5169", + "51690", + "51691", + "51692", + "51693", + "51696", + "51699", + "517", + "5170", + "51700", + "51701", + "51702", + "51703", + "51704", + "51705", + "51706", + "51710", + "51714", + "51715", + "51719", + "5172", + "51720", + "51725", + "51726", + "51727", + "51728", + "51729", + "5173", + "51733", + "51734", + "51735", + "51738", + "5174", + "51741", + "51742", + "51744", + "51747", + "5175", + "51750", + "51751", + "51752", + "51754", + "51755", + "51759", + "5176", + "51760", + "51761", + "51762", + "51763", + "51764", + "51765", + "51768", + "51773", + "51776", + "51778", + "5178", + "51780", + "5179", + "518", + "51802", + "51804", + "51805", + "51806", + "51807", + "51808", + "51809", + "51816", + "5184", + "5187", + "5188", + "5189", + "5190", + "5191", + "5192", + "5194", + "5195", + "5196", + "5197", + "5198", + "5199", + "52", + "5201", + "5202", + "5203", + "5204", + "5205", + "5207", + "5208", + "5209", + "521", + "5210", + "5211", + "5212", + "5213", + "5214", + "5216", + "5217", + "5218", + "522", + "5222", + "5223", + "5224", + "5225", + "5226", + "5228", + "5229", + "523", + "5230", + "5232", + "5236", + "5238", + "5239", + "5241", + "5243", + "5244", + "5245", + "525", + "5250", + "5251", + "5252", + "5253", + "5255", + "5256", + "5257", + "526", + "5260", + "5261", + "5264", + "5265", + "5266", + "5267", + "5268", + "5269", + "527", + "5270", + "5271", + "5272", + "5273", + "5274", + "5275", + "5277", + "5279", + "528", + "5281", + "5283", + "5284", + "5286", + "5287", + "5288", + "5289", + "529", + "5290", + "5291", + "5292", + "5293", + "5294", + "5295", + "5296", + "5297", + "5298", + "5300", + "5303", + "5304", + "5305", + "5306", + "5307", + "5308", + "5309", + "5310", + "5311", + "5313", + "5314", + "5315", + "5316", + "5317", + "5318", + "5319", + "5320", + "5321", + "5322", + "5324", + "5325", + "5326", + "5327", + "5328", + "5329", + "533", + "5330", + "5331", + "5332", + "5333", + "53335", + "53336", + "53339", + "5334", + "53340", + "53342", + "53343", + "53344", + "53345", + "53346", + "53347", + "53349", + "5335", + "53353", + "53354", + "53358", + "5336", + "5337", + "53371", + "53373", + "5338", + "5339", + "534", + "5340", + "53405", + "53407", + "5341", + "5342", + "5343", + "5345", + "5346", + "5347", + "5348", + "5349", + "535", + "5350", + "5351", + "5352", + "5354", + "5355", + "5356", + "5357", + "5358", + "5359", + "5360", + "5361", + "53615", + "53616", + "5362", + "53630", + "53632", + "53635", + "53637", + "5364", + "5365", + "5366", + "5367", + "5368", + "537", + "5371", + "5372", + "5373", + "5375", + "5376", + "5378", + "538", + "53820", + "53822", + "53826", + "53827", + "53828", + "53829", + "53831", + "53832", + "53833", + "53834", + "53836", + "53838", + "53840", + "53841", + "53842", + "539", + "53904", + "53905", + "53916", + "53917", + "53918", + "53919", + "5393", + "53938", + "5394", + "53940", + "53942", + "53944", + "53947", + "5395", + "5396", + "53981", + "54", + "540", + "54014", + "54020", + "54033", + "54039", + "54058", + "54059", + "5406", + "54065", + "54069", + "5407", + "54084", + "5409", + "54093", + "54097", + "54101", + "54102", + "54103", + "54106", + "54107", + "54108", + "5411", + "54112", + "5412", + "5413", + "5414", + "54145", + "541465", + "541466", + "541468", + "54148", + "54149", + "541565", + "541578", + "54165", + "54187", + "5420", + "54205", + "54206", + "54207", + "54209", + "54210", + "54212", + "5422", + "54221", + "5423", + "5424", + "5425", + "5426", + "5427", + "5428", + "5429", + "5431", + "5432", + "54328", + "54329", + "5433", + "54331", + "54332", + "5434", + "54344", + "54345", + "54346", + "5435", + "5436", + "54360", + "54361", + "54363", + "5437", + "5438", + "54386", + "5439", + "5440", + "54407", + "5441", + "54413", + "54414", + "5442", + "54429", + "5443", + "54431", + "54432", + "54433", + "54434", + "54436", + "54437", + "54438", + "54439", + "5444", + "54440", + "54442", + "54443", + "5445", + "54453", + "54454", + "54455", + "54456", + "54457", + "54458", + "5446", + "54460", + "54461", + "54462", + "54463", + "54464", + "54465", + "54466", + "54467", + "54468", + "54469", + "5447", + "54470", + "54471", + "54472", + "54474", + "54475", + "54476", + "54477", + "54478", + "54480", + "54482", + "54487", + "5449", + "54490", + "54491", + "54492", + "54494", + "54495", + "54496", + "54497", + "54498", + "54499", + "545", + "5450", + "54502", + "54503", + "54504", + "54505", + "54507", + "54509", + "5451", + "54510", + "54511", + "54512", + "54514", + "54516", + "54517", + "54518", + "5452", + "54520", + "54521", + "54522", + "54529", + "5453", + "54531", + "54532", + "54534", + "54535", + "54536", + "54537", + "54538", + "54539", + "5454", + "54540", + "54541", + "54542", + "54543", + "54544", + "54545", + "54546", + "54549", + "5455", + "54550", + "54551", + "54552", + "54554", + "54555", + "54556", + "54557", + "54558", + "5456", + "54566", + "54567", + "5457", + "54575", + "54576", + "54577", + "54578", + "54579", + "5458", + "54583", + "54584", + "54585", + "54586", + "54587", + "5459", + "54596", + "546", + "5460", + "54600", + "54606", + "54617", + "54619", + "5462", + "54621", + "54622", + "54623", + "54625", + "54626", + "54627", + "54629", + "5463", + "5464", + "5465", + "54657", + "54658", + "54659", + "54662", + "54663", + "54664", + "54665", + "5467", + "54674", + "54675", + "54676", + "54677", + "5468", + "54680", + "54681", + "54682", + "5469", + "547", + "5470", + "54700", + "54704", + "54707", + "54708", + "5471", + "54714", + "54715", + "54716", + "54726", + "54729", + "5473", + "54732", + "54733", + "54734", + "54737", + "54738", + "54739", + "54741", + "54742", + "54749", + "5475", + "54751", + "54752", + "54753", + "54754", + "54756", + "54757", + "54758", + "5476", + "54760", + "54762", + "54763", + "54764", + "54765", + "54766", + "54768", + "54769", + "54776", + "54777", + "54778", + "5478", + "54780", + "54784", + "54785", + "54788", + "5479", + "54790", + "54793", + "54795", + "54796", + "54797", + "54798", + "54799", + "5480", + "54800", + "54801", + "54802", + "54805", + "54806", + "54807", + "54808", + "54809", + "5481", + "54810", + "54811", + "54813", + "54814", + "54815", + "54816", + "54819", + "54820", + "54821", + "54822", + "54823", + "54825", + "54826", + "54827", + "54828", + "54829", + "54830", + "54831", + "548313", + "54832", + "54834", + "54836", + "54838", + "54839", + "54840", + "54841", + "54842", + "54843", + "54845", + "54847", + "54848", + "54849", + "54850", + "54851", + "54852", + "54853", + "54854", + "54855", + "54856", + "54857", + "54858", + "54859", + "548593", + "548596", + "54860", + "54861", + "54862", + "54863", + "548644", + "548645", + "54865", + "54866", + "54867", + "54868", + "54869", + "54870", + "54872", + "54873", + "54874", + "54875", + "54876", + "54877", + "54878", + "54879", + "54880", + "54881", + "54882", + "54883", + "54884", + "54885", + "54886", + "54887", + "54888", + "54890", + "54891", + "54892", + "54893", + "54894", + "54896", + "54897", + "54898", + "54899", + "549", + "54900", + "54901", + "54902", + "54903", + "54904", + "54905", + "54906", + "54908", + "54910", + "54913", + "54914", + "54915", + "54916", + "54918", + "54919", + "54920", + "54921", + "54922", + "54923", + "54925", + "54926", + "54927", + "54928", + "54929", + "5493", + "54930", + "54931", + "54932", + "54933", + "54934", + "54935", + "54936", + "54937", + "54938", + "54939", + "5494", + "54940", + "54941", + "54942", + "54946", + "54947", + "54948", + "54949", + "5495", + "54951", + "54952", + "54953", + "54954", + "54955", + "54956", + "54957", + "54958", + "54959", + "5496", + "54960", + "54961", + "54962", + "54963", + "54964", + "54965", + "54967", + "54968", + "54969", + "54970", + "54971", + "54972", + "54973", + "54974", + "54976", + "54977", + "54978", + "54979", + "5498", + "54980", + "54981", + "54982", + "54984", + "54985", + "54986", + "54987", + "54988", + "54989", + "5499", + "54991", + "54993", + "54994", + "54995", + "54996", + "54997", + "54998", + "55", + "550", + "5500", + "55001", + "55002", + "55003", + "55004", + "55005", + "55006", + "55007", + "55008", + "55009", + "5501", + "55010", + "55011", + "55012", + "55013", + "55014", + "55015", + "55016", + "55017", + "55018", + "5502", + "55020", + "55022", + "55023", + "55024", + "55026", + "55027", + "55028", + "55030", + "55031", + "55032", + "55033", + "55034", + "55035", + "55036", + "55037", + "55038", + "55039", + "5504", + "55040", + "55041", + "55048", + "55049", + "55051", + "55052", + "55054", + "55055", + "55057", + "5506", + "55061", + "55062", + "55063", + "550631", + "55064", + "550643", + "55065", + "55066", + "55068", + "55069", + "5507", + "55070", + "55071", + "55072", + "55074", + "55075", + "55076", + "55079", + "55080", + "55081", + "55082", + "55083", + "55084", + "55086", + "55088", + "55089", + "5509", + "55090", + "55092", + "55093", + "55094", + "55095", + "55096", + "551", + "5510", + "55100", + "55101", + "55102", + "55103", + "55105", + "55106", + "55107", + "55108", + "55109", + "5511", + "55110", + "55111", + "55112", + "55113", + "55114", + "55116", + "55117", + "55118", + "55119", + "55120", + "55122", + "55124", + "55125", + "55127", + "55128", + "55129", + "55130", + "55131", + "55132", + "55133", + "55135", + "55137", + "55138", + "55139", + "5514", + "55140", + "55142", + "55143", + "55144", + "55145", + "55146", + "55147", + "55148", + "55149", + "5515", + "55150", + "55151", + "55152", + "55153", + "55154", + "55156", + "55157", + "55159", + "5516", + "55160", + "55161", + "55163", + "55164", + "55165", + "55166", + "55167", + "55168", + "55170", + "55171", + "55172", + "55173", + "55174", + "55175", + "55176", + "55177", + "55178", + "55179", + "5518", + "55180", + "55181", + "55182", + "55183", + "55184", + "55186", + "55187", + "55188", + "5519", + "55190", + "55191", + "55192", + "55193", + "55194", + "55195", + "55196", + "55197", + "55198", + "552", + "5520", + "55200", + "55201", + "55203", + "55204", + "55205", + "55206", + "55208", + "55209", + "5521", + "55210", + "55211", + "55212", + "55213", + "55214", + "55215", + "55216", + "55217", + "55218", + "55219", + "5522", + "55220", + "55222", + "55223", + "55224", + "55225", + "55226", + "55227", + "55228", + "5523", + "55231", + "55233", + "55234", + "55236", + "55237", + "55238", + "55239", + "5524", + "55240", + "55243", + "55244", + "55245", + "55246", + "55247", + "55248", + "55249", + "5525", + "55250", + "55251", + "55252", + "55253", + "55254", + "55255", + "55256", + "55257", + "55258", + "55259", + "5526", + "55260", + "55262", + "55266", + "55268", + "55269", + "5527", + "55270", + "55272", + "55273", + "55274", + "55275", + "55276", + "55277", + "55278", + "55279", + "5528", + "55280", + "55281", + "55282", + "55283", + "55284", + "55285", + "55286", + "55287", + "55288", + "552889", + "55289", + "552891", + "5529", + "55290", + "552900", + "55291", + "55293", + "55294", + "55295", + "55296", + "55297", + "55298", + "55299", + "553", + "5530", + "55300", + "55301", + "55303", + "55304", + "55308", + "5531", + "55311", + "553115", + "55312", + "55313", + "55314", + "55315", + "553158", + "55316", + "55317", + "55319", + "5532", + "55320", + "55321", + "55322", + "55323", + "55324", + "55325", + "55326", + "55327", + "55328", + "55329", + "5533", + "55330", + "55331", + "55332", + "55333", + "55334", + "55335", + "55336", + "55337", + "55339", + "5534", + "55340", + "55341", + "55342", + "55343", + "55344", + "55345", + "55346", + "55347", + "55349", + "55351", + "55352", + "55353", + "55355", + "55356", + "55357", + "55359", + "5536", + "55361", + "55362", + "55363", + "55364", + "55365", + "55366", + "55367", + "5537", + "55374", + "55379", + "5538", + "55388", + "5539", + "554", + "5540", + "5542", + "55421", + "55422", + "554226", + "55423", + "554235", + "55425", + "554251", + "554282", + "554313", + "55432", + "55435", + "55437", + "5544", + "5545", + "55450", + "55454", + "5546", + "55466", + "5547", + "55471", + "55486", + "5549", + "5550", + "55500", + "55501", + "55502", + "55503", + "55504", + "55505", + "55506", + "55507", + "55508", + "55509", + "5551", + "55510", + "55511", + "55512", + "55515", + "5552", + "55520", + "55521", + "55526", + "55527", + "55529", + "5553", + "55530", + "55531", + "55532", + "55534", + "55536", + "5554", + "55540", + "55544", + "5555", + "55552", + "55553", + "55554", + "55556", + "55558", + "55559", + "55561", + "55565", + "55567", + "55568", + "5557", + "55571", + "55572", + "55573", + "55576", + "55577", + "55578", + "5558", + "55582", + "55584", + "55585", + "55586", + "55588", + "55591", + "55593", + "55596", + "55599", + "55600", + "55601", + "55602", + "55603", + "55604", + "55605", + "55607", + "55608", + "55609", + "55610", + "55611", + "55612", + "55613", + "55614", + "55615", + "55616", + "55617", + "55619", + "5562", + "55620", + "55621", + "55622", + "55623", + "55624", + "55625", + "55626", + "55627", + "55628", + "55629", + "5563", + "55630", + "55631", + "55632", + "55633", + "55634", + "55635", + "55636", + "55638", + "5564", + "55640", + "55643", + "55644", + "55646", + "55647", + "5565", + "55650", + "55651", + "55652", + "55653", + "55654", + "55655", + "55656", + "55657", + "55658", + "55659", + "5566", + "55660", + "55662", + "55663", + "55664", + "55665", + "55666", + "55667", + "55668", + "55669", + "5567", + "55670", + "55671", + "55672", + "55676", + "55677", + "55679", + "5568", + "55680", + "55681", + "55683", + "55684", + "55686", + "55687", + "55689", + "5569", + "55690", + "55691", + "55692", + "55693", + "55695", + "55696", + "55697", + "55698", + "55699", + "5570", + "55700", + "55701", + "55702", + "55703", + "55704", + "55705", + "55706", + "55707", + "55709", + "5571", + "55711", + "55713", + "55714", + "55715", + "55716", + "55717", + "55718", + "55719", + "55720", + "55721", + "55722", + "55723", + "55726", + "55727", + "55728", + "55729", + "5573", + "55731", + "55732", + "55733", + "55734", + "55735", + "55737", + "55738", + "55739", + "55740", + "55741", + "55742", + "55743", + "55744", + "55745", + "55746", + "55748", + "55749", + "5575", + "55750", + "55751", + "55752", + "55753", + "55754", + "55755", + "55756", + "55757", + "55758", + "55759", + "5576", + "55760", + "55761", + "55762", + "55763", + "55764", + "55765", + "55766", + "55768", + "55769", + "5577", + "55770", + "55771", + "55773", + "55775", + "55776", + "55777", + "55778", + "55779", + "5578", + "55780", + "55781", + "55783", + "55784", + "55785", + "55786", + "55787", + "55788", + "55789", + "5579", + "55790", + "55791", + "55793", + "55794", + "55795", + "55796", + "55798", + "55799", + "558", + "5580", + "55800", + "55801", + "55802", + "55803", + "55805", + "55806", + "55808", + "55809", + "5581", + "55810", + "55811", + "55812", + "55813", + "55814", + "55815", + "55816", + "55818", + "55819", + "5582", + "55821", + "55823", + "55824", + "55825", + "55827", + "55829", + "5583", + "55830", + "55831", + "55832", + "55833", + "55835", + "55837", + "55839", + "5584", + "55840", + "55841", + "55843", + "55844", + "55845", + "55846", + "55847", + "55848", + "5585", + "55850", + "55851", + "55852", + "55854", + "55856", + "55857", + "55858", + "55859", + "5586", + "55860", + "55861", + "55862", + "55863", + "55867", + "55869", + "5587", + "55870", + "55871", + "55876", + "55879", + "5588", + "55884", + "55885", + "55888", + "55889", + "5589", + "55890", + "55891", + "55892", + "55893", + "55894", + "55897", + "55898", + "5590", + "55900", + "55901", + "55902", + "55904", + "55905", + "55906", + "55907", + "55909", + "5591", + "55911", + "55914", + "55915", + "55916", + "55917", + "5592", + "55920", + "55922", + "55924", + "55929", + "5593", + "55930", + "55937", + "5594", + "5595", + "55954", + "55957", + "55958", + "55959", + "5596", + "55964", + "55966", + "55967", + "55968", + "55969", + "5597", + "55970", + "55971", + "55972", + "55974", + "55975", + "5598", + "5599", + "55997", + "56", + "5600", + "56000", + "56001", + "56005", + "56006", + "5601", + "5603", + "56033", + "56034", + "5604", + "5605", + "56052", + "5606", + "56061", + "56062", + "56063", + "5607", + "5608", + "5609", + "56097", + "56098", + "56099", + "5610", + "56100", + "56101", + "56102", + "56103", + "56104", + "56105", + "56106", + "56107", + "56108", + "56109", + "5611", + "56110", + "56111", + "56112", + "56113", + "56114", + "5612", + "56121", + "56122", + "56123", + "56124", + "56125", + "56126", + "56127", + "56128", + "56129", + "5613", + "56130", + "56131", + "56132", + "56133", + "56134", + "56135", + "56136", + "56137", + "56138", + "56139", + "56140", + "56141", + "56142", + "56143", + "56144", + "56145", + "56146", + "56147", + "56154", + "56155", + "56156", + "56157", + "56158", + "56159", + "56160", + "56163", + "56164", + "56165", + "56169", + "5617", + "56171", + "56172", + "5618", + "56180", + "56181", + "5619", + "5620", + "56203", + "56204", + "5621", + "5623", + "5624", + "56241", + "56242", + "56243", + "56244", + "56245", + "56246", + "5625", + "56252", + "56253", + "56254", + "56255", + "56256", + "56257", + "56259", + "5626", + "56261", + "56262", + "56265", + "56267", + "56269", + "5627", + "56270", + "56271", + "56287", + "56288", + "5629", + "563", + "5630", + "56300", + "56301", + "56302", + "5631", + "56311", + "56339", + "5634", + "56341", + "56342", + "56344", + "5635", + "5636", + "5638", + "5639", + "5641", + "56413", + "5644", + "5645", + "5646", + "56474", + "56475", + "56477", + "56478", + "56479", + "5648", + "5649", + "5650", + "5651", + "5652", + "56521", + "5653", + "5654", + "56547", + "56548", + "5655", + "5657", + "566", + "5660", + "56603", + "56605", + "56606", + "5662", + "56623", + "56624", + "5663", + "5664", + "56647", + "56648", + "56649", + "56650", + "56652", + "56654", + "56655", + "56656", + "56658", + "56659", + "56660", + "56666", + "56667", + "56670", + "56672", + "56673", + "56674", + "56675", + "56676", + "56681", + "56683", + "5669", + "567", + "5670", + "56704", + "5671", + "5672", + "56729", + "5673", + "56731", + "5675", + "56751", + "5676", + "56776", + "5678", + "5680", + "5681", + "5682", + "56829", + "5683", + "56832", + "56833", + "56834", + "5684", + "56848", + "56849", + "5685", + "56850", + "56851", + "56852", + "56853", + "5686", + "5687", + "5688", + "56882", + "56884", + "56886", + "56888", + "56889", + "5689", + "56890", + "56891", + "56892", + "56893", + "56894", + "56895", + "56896", + "56897", + "56898", + "56899", + "5690", + "56900", + "56901", + "56902", + "56903", + "56904", + "56905", + "56906", + "56907", + "5691", + "56910", + "56911", + "56912", + "56913", + "56914", + "56915", + "56916", + "56917", + "56919", + "5692", + "56920", + "56922", + "56923", + "56924", + "56925", + "56926", + "56927", + "56928", + "56929", + "5693", + "56931", + "56934", + "56935", + "56936", + "56937", + "56938", + "5694", + "56940", + "56941", + "56942", + "56943", + "56944", + "56945", + "56946", + "56947", + "56948", + "56949", + "5695", + "56950", + "56951", + "56952", + "56953", + "56954", + "56955", + "56956", + "56957", + "5696", + "56961", + "56963", + "56964", + "56965", + "56967", + "5697", + "56970", + "56971", + "56975", + "56977", + "56978", + "56979", + "5698", + "56980", + "56981", + "56983", + "56984", + "56985", + "56986", + "56987", + "5699", + "56990", + "56992", + "56993", + "56994", + "56995", + "56996", + "56998", + "56999", + "570", + "5700", + "57001", + "57002", + "57003", + "57007", + "5701", + "57010", + "57016", + "57017", + "57018", + "57019", + "5702", + "57020", + "57026", + "57030", + "57035", + "57037", + "57038", + "5704", + "57045", + "57047", + "57048", + "5705", + "57050", + "57053", + "57054", + "57055", + "57057", + "5706", + "57060", + "57062", + "5707", + "5708", + "57082", + "57084", + "57085", + "57088", + "57089", + "5709", + "57091", + "57092", + "57093", + "57094", + "57095", + "57096", + "57097", + "57099", + "571", + "5710", + "57101", + "57102", + "57103", + "57104", + "57105", + "57106", + "57107", + "57109", + "5711", + "57110", + "57111", + "57113", + "57115", + "57116", + "57117", + "57118", + "57119", + "57120", + "57121", + "57122", + "57124", + "57125", + "57126", + "57127", + "57128", + "57129", + "5713", + "57130", + "57132", + "57134", + "57135", + "57136", + "57139", + "5714", + "57140", + "57142", + "57143", + "57144", + "57146", + "57147", + "57148", + "57149", + "5715", + "57150", + "57151", + "57152", + "57153", + "57154", + "57156", + "57157", + "57158", + "57159", + "5716", + "57161", + "57162", + "57165", + "57167", + "57168", + "57169", + "5717", + "57171", + "57172", + "57175", + "57176", + "57178", + "57179", + "5718", + "57180", + "57181", + "57182", + "57184", + "57185", + "57186", + "57187", + "57188", + "57189", + "5719", + "57190", + "57191", + "57192", + "57194", + "57198", + "572", + "5720", + "57205", + "57209", + "5721", + "57210", + "57211", + "57213", + "57214", + "57215", + "57216", + "57217", + "57221", + "57222", + "57223", + "57224", + "57226", + "57228", + "5723", + "57231", + "57232", + "5724", + "5725", + "5726", + "5727", + "5728", + "57282", + "5729", + "573", + "5730", + "5731", + "5732", + "57325", + "57326", + "5733", + "57332", + "57333", + "57335", + "57336", + "57337", + "57338", + "5734", + "57343", + "57348", + "57369", + "5737", + "57379", + "5738", + "57380", + "57381", + "5739", + "57393", + "57396", + "5740", + "57402", + "57403", + "57404", + "57405", + "57406", + "57407", + "57408", + "57409", + "5741", + "57410", + "57412", + "57413", + "57414", + "57415", + "57418", + "57419", + "5742", + "5743", + "5744", + "574414", + "57446", + "57447", + "57448", + "57449", + "5745", + "57451", + "57452", + "57453", + "574537", + "57455", + "57456", + "57458", + "57459", + "5746", + "57460", + "57461", + "57462", + "57463", + "57464", + "57465", + "57466", + "57467", + "57468", + "57469", + "5747", + "57470", + "57471", + "57472", + "57473", + "57474", + "57475", + "57476", + "57477", + "57478", + "57479", + "57480", + "57481", + "57482", + "57484", + "57486", + "57488", + "57489", + "57491", + "57492", + "57493", + "57494", + "57495", + "57496", + "57497", + "57498", + "575", + "57501", + "57502", + "57504", + "57505", + "57506", + "57507", + "57508", + "57509", + "57510", + "57511", + "57512", + "57513", + "57514", + "57515", + "57519", + "57520", + "57521", + "57522", + "57523", + "57524", + "57526", + "57528", + "57529", + "5753", + "57530", + "57531", + "57532", + "57533", + "57534", + "57535", + "57536", + "57537", + "57538", + "57539", + "5754", + "57540", + "57541", + "57542", + "57544", + "57545", + "57546", + "57547", + "57549", + "57551", + "57552", + "57553", + "57554", + "57555", + "57556", + "57558", + "57559", + "5756", + "57560", + "57561", + "57562", + "57563", + "57565", + "57567", + "57568", + "57569", + "5757", + "57570", + "57571", + "57572", + "57573", + "57574", + "57575", + "57576", + "57577", + "57578", + "57579", + "57580", + "57582", + "57583", + "57584", + "57585", + "57586", + "57587", + "57589", + "57590", + "57591", + "57592", + "57593", + "57594", + "57595", + "57597", + "57599", + "576", + "57600", + "57602", + "57604", + "57605", + "57606", + "57608", + "57609", + "57610", + "57611", + "57613", + "57614", + "57615", + "57616", + "57617", + "57619", + "57620", + "57621", + "57622", + "57623", + "57624", + "57626", + "57628", + "5763", + "57630", + "57631", + "57633", + "57634", + "57636", + "57639", + "5764", + "57642", + "57643", + "57645", + "57646", + "57647", + "57648", + "57649", + "57650", + "57654", + "57655", + "57657", + "57658", + "57659", + "57661", + "57662", + "57663", + "57664", + "57665", + "57666", + "57669", + "57670", + "57673", + "57674", + "57677", + "57678", + "57679", + "5768", + "57680", + "57683", + "57684", + "57685", + "57687", + "57688", + "57689", + "57691", + "57692", + "57693", + "57695", + "57696", + "57697", + "57698", + "57699", + "577", + "5770", + "57700", + "57701", + "57703", + "57704", + "57705", + "57706", + "57707", + "57708", + "57709", + "5771", + "57710", + "57711", + "57713", + "57715", + "57716", + "57717", + "57718", + "57719", + "57720", + "57721", + "57722", + "57724", + "57727", + "57728", + "57730", + "57731", + "57732", + "5774", + "5775", + "57758", + "57761", + "57763", + "5777", + "5778", + "57786", + "57787", + "57794", + "57795", + "57798", + "57799", + "578", + "5780", + "57801", + "57804", + "57805", + "5781", + "57817", + "57818", + "57819", + "5782", + "57821", + "57822", + "57823", + "57824", + "57826", + "57827", + "57828", + "57829", + "5783", + "57830", + "57834", + "57835", + "5784", + "57862", + "57863", + "57864", + "5787", + "5788", + "5789", + "579", + "5790", + "5791", + "5792", + "5793", + "5794", + "5795", + "5796", + "5797", + "5798", + "5799", + "58", + "580", + "5800", + "5801", + "5802", + "5803", + "5805", + "5806", + "581", + "5810", + "5813", + "5814", + "58155", + "58157", + "58158", + "5816", + "5817", + "5818", + "58189", + "5819", + "58190", + "58191", + "582", + "5822", + "5824", + "5825", + "5826", + "5827", + "5828", + "5829", + "583", + "5830", + "5831", + "5832", + "5833", + "5834", + "5836", + "5837", + "58472", + "58473", + "58475", + "58476", + "58477", + "58478", + "58480", + "58484", + "58485", + "58486", + "58487", + "58488", + "58489", + "58490", + "58491", + "58492", + "58493", + "58494", + "58495", + "58496", + "58497", + "58498", + "58499", + "585", + "58500", + "58503", + "58504", + "58505", + "58506", + "58508", + "58509", + "58510", + "58511", + "58512", + "58513", + "58515", + "58516", + "58517", + "58524", + "58526", + "58527", + "58528", + "58529", + "58530", + "58531", + "58533", + "58538", + "5858", + "5859", + "586", + "5860", + "5861", + "5862", + "5863", + "5864", + "5865", + "5866", + "5867", + "5868", + "5869", + "587", + "5870", + "5871", + "5872", + "5873", + "5874", + "5875", + "5876", + "5877", + "5878", + "5879", + "5880", + "5881", + "5883", + "5884", + "5885", + "5886", + "5887", + "5888", + "5889", + "5890", + "5891", + "5892", + "5893", + "5894", + "5896", + "5898", + "58985", + "58986", + "5899", + "59", + "590", + "5900", + "5901", + "5902", + "5903", + "5905", + "5906", + "59067", + "5908", + "59082", + "59084", + "5909", + "5910", + "5911", + "5912", + "5913", + "5914", + "5915", + "5916", + "5917", + "5918", + "5919", + "5920", + "5921", + "5922", + "5923", + "5924", + "5925", + "5926", + "59269", + "5927", + "59271", + "59272", + "59274", + "59277", + "5928", + "59283", + "59284", + "59285", + "59286", + "5929", + "593", + "5930", + "59307", + "5931", + "5932", + "5933", + "59335", + "59336", + "59338", + "59339", + "5934", + "59340", + "59341", + "59342", + "59343", + "59344", + "59345", + "59348", + "59349", + "5935", + "59350", + "59351", + "59352", + "59353", + "5936", + "5937", + "5939", + "594", + "5940", + "5948", + "594855", + "594857", + "5949", + "595", + "5950", + "5954", + "5955", + "5956", + "5957", + "5959", + "596", + "5961", + "5962", + "5965", + "5966", + "5967", + "5968", + "597", + "5970", + "5971", + "5972", + "5973", + "5976", + "5977", + "5978", + "5979", + "598", + "5980", + "5981", + "5982", + "5983", + "5984", + "5985", + "5986", + "5987", + "5988", + "5989", + "599", + "5990", + "5991", + "5992", + "5993", + "5994", + "5995", + "5996", + "5997", + "5998", + "5999", + "60", + "6000", + "6001", + "6002", + "6003", + "6004", + "6005", + "6006", + "6007", + "6009", + "6010", + "6011", + "6013", + "6014", + "6015", + "6016", + "6017", + "6018", + "6019", + "602", + "60312", + "60313", + "60314", + "60343", + "6035", + "6036", + "6037", + "60370", + "6038", + "60385", + "60386", + "6039", + "604", + "60401", + "6041", + "60412", + "60436", + "60437", + "6045", + "6046", + "60468", + "6047", + "6048", + "60481", + "60482", + "60484", + "60485", + "60487", + "60488", + "60489", + "6049", + "60490", + "60491", + "60492", + "60493", + "60494", + "60495", + "60496", + "605", + "6050", + "60506", + "60509", + "6051", + "60526", + "60528", + "60529", + "60558", + "60559", + "60560", + "60561", + "6059", + "60592", + "60598", + "60625", + "60626", + "606495", + "60672", + "60673", + "60675", + "60676", + "60677", + "60678", + "60680", + "60681", + "60682", + "60684", + "60685", + "60686", + "607", + "608", + "6091", + "6092", + "6093", + "6094", + "6095", + "6096", + "6097", + "6098", + "610", + "6100", + "6101", + "6102", + "6103", + "611", + "6117", + "6118", + "6119", + "6120", + "6121", + "6122", + "6123", + "6124", + "6125", + "6128", + "6129", + "613", + "6130", + "613037", + "6132", + "613209", + "613210", + "613211", + "613212", + "613227", + "6133", + "6135", + "6136", + "6137", + "6138", + "6139", + "6141", + "6142", + "6143", + "6144", + "6146", + "6147", + "6150", + "6152", + "6154", + "6155", + "6156", + "6157", + "6158", + "6159", + "6160", + "6161", + "6164", + "6165", + "6166", + "6167", + "6168", + "6169", + "617", + "6170", + "6171", + "6173", + "6175", + "6176", + "6181", + "6182", + "6183", + "6184", + "6185", + "6187", + "6188", + "6189", + "6191", + "619189", + "6192", + "619207", + "619208", + "619279", + "6193", + "619373", + "6194", + "6195", + "6196", + "6197", + "6198", + "6199", + "6201", + "6202", + "6203", + "6204", + "6205", + "6206", + "6207", + "6208", + "6209", + "6210", + "6217", + "6218", + "622", + "6222", + "6223", + "6224", + "6227", + "6228", + "6229", + "623", + "6230", + "6231", + "6232", + "6233", + "6234", + "6235", + "6237", + "6238", + "6239", + "624", + "6240", + "6241", + "6242", + "6247", + "6248", + "6249", + "6251", + "6252", + "6253", + "6256", + "6257", + "6258", + "6259", + "6261", + "6262", + "6263", + "627", + "6271", + "6272", + "6274", + "6275", + "6276", + "6277", + "6278", + "6279", + "6280", + "6281", + "6282", + "6283", + "6284", + "6285", + "6286", + "6288", + "6289", + "629", + "6291", + "6293", + "6294", + "6295", + "6296", + "6297", + "6299", + "6300", + "6301", + "6302", + "63027", + "6303", + "63035", + "63036", + "6304", + "6305", + "6307", + "6309", + "631", + "6310", + "6311", + "6314", + "6317", + "6318", + "6319", + "632", + "6320", + "6322", + "6323", + "6324", + "6326", + "6327", + "6328", + "6329", + "633", + "6330", + "6331", + "6332", + "6334", + "6335", + "6336", + "6337", + "6338", + "6339", + "634", + "6340", + "6341", + "6342", + "6343", + "6344", + "6345", + "6346", + "6347", + "6348", + "635", + "6351", + "6354", + "6355", + "6356", + "6357", + "6358", + "6359", + "636", + "6360", + "6361", + "6362", + "6363", + "6364", + "6366", + "6367", + "6368", + "6369", + "637", + "6370", + "6372", + "6373", + "6374", + "6375", + "6376", + "638", + "6382", + "63826", + "63827", + "6383", + "6385", + "6386", + "6387", + "63874", + "63875", + "63876", + "63877", + "6388", + "6389", + "63891", + "63892", + "63893", + "63894", + "63895", + "63897", + "63898", + "63899", + "639", + "6390", + "63901", + "63904", + "63905", + "63906", + "63908", + "6391", + "63910", + "63915", + "63916", + "63917", + "6392", + "63920", + "63922", + "63923", + "63924", + "63925", + "63926", + "63928", + "63929", + "63931", + "63932", + "63933", + "63934", + "63935", + "63939", + "63940", + "63941", + "63943", + "63946", + "63947", + "63948", + "63950", + "63951", + "6396", + "63967", + "6397", + "63970", + "63971", + "63973", + "63974", + "63976", + "63977", + "63978", + "63979", + "6398", + "63982", + "6399", + "640", + "6400", + "64005", + "6401", + "6402", + "6403", + "6404", + "6405", + "6406", + "64061", + "64062", + "64063", + "64064", + "64065", + "64066", + "64067", + "6407", + "64072", + "64073", + "64077", + "64078", + "64080", + "64081", + "64083", + "64084", + "64087", + "64089", + "64090", + "64091", + "64092", + "64093", + "64094", + "64096", + "64098", + "641", + "64100", + "64101", + "64102", + "64105", + "64106", + "64108", + "64110", + "64111", + "64112", + "64114", + "64115", + "64116", + "64118", + "64121", + "64122", + "64123", + "64127", + "64129", + "64130", + "64131", + "64132", + "641339", + "64135", + "64137", + "641371", + "641372", + "6414", + "64145", + "641455", + "64146", + "64149", + "6415", + "64151", + "6416", + "641649", + "641654", + "64167", + "64168", + "64170", + "641700", + "64172", + "64174", + "64175", + "641776", + "6418", + "64180", + "64184", + "6419", + "642", + "64207", + "64208", + "6421", + "64210", + "64211", + "64215", + "64216", + "64218", + "64219", + "6422", + "64220", + "64221", + "64222", + "64223", + "64224", + "64225", + "642273", + "6423", + "64231", + "64232", + "64236", + "6424", + "64240", + "64241", + "642446", + "642475", + "642489", + "6425", + "642515", + "642517", + "642574", + "642597", + "6426", + "642612", + "642623", + "642636", + "642658", + "642659", + "6427", + "642778", + "642799", + "6428", + "64282", + "64283", + "64284", + "642843", + "64285", + "64288", + "6429", + "642938", + "642968", + "642987", + "643", + "6430", + "643008", + "643037", + "6431", + "643136", + "643155", + "643161", + "64318", + "64319", + "6432", + "64320", + "64321", + "643226", + "643236", + "64324", + "643246", + "64326", + "64327", + "64328", + "6433", + "643311", + "64332", + "643338", + "643376", + "643382", + "643394", + "6434", + "643414", + "643418", + "64342", + "64343", + "64344", + "64359", + "643596", + "643641", + "643664", + "643669", + "643677", + "643680", + "643699", + "643707", + "64374", + "64375", + "64376", + "64377", + "643803", + "643812", + "643834", + "643836", + "643847", + "643853", + "643854", + "64386", + "643866", + "64388", + "643904", + "643909", + "64393", + "64395", + "64396", + "643965", + "64397", + "64398", + "643988", + "64399", + "644", + "6440", + "64400", + "644019", + "64403", + "644041", + "64405", + "644054", + "64407", + "644070", + "64409", + "644096", + "6441", + "64410", + "644100", + "64411", + "64412", + "644139", + "644145", + "644150", + "644168", + "64417", + "64418", + "644186", + "64419", + "6442", + "64420", + "64421", + "64422", + "64423", + "64425", + "64426", + "64427", + "64428", + "64429", + "6443", + "64430", + "64431", + "64432", + "64434", + "6444", + "644414", + "64446", + "6445", + "644524", + "644538", + "644591", + "644596", + "6446", + "644672", + "6447", + "64478", + "6448", + "644815", + "644844", + "644890", + "6449", + "644943", + "644974", + "64499", + "644994", + "645", + "6450", + "645027", + "645051", + "64506", + "645073", + "6451", + "645104", + "645121", + "645142", + "64518", + "645191", + "6452", + "6453", + "645359", + "645369", + "645382", + "645402", + "645414", + "645426", + "645432", + "6455", + "645545", + "6456", + "6457", + "645745", + "64577", + "64579", + "64581", + "645811", + "64582", + "645832", + "645836", + "645864", + "64591", + "645974", + "64598", + "64599", + "646", + "64600", + "646000", + "64601", + "646019", + "646066", + "6461", + "646103", + "646174", + "6462", + "646262", + "6464", + "64641", + "646424", + "64645", + "646457", + "64648", + "646480", + "646486", + "646498", + "64651", + "646603", + "646625", + "646627", + "64663", + "646643", + "646658", + "646754", + "646799", + "6468", + "646817", + "64682", + "646851", + "646862", + "646864", + "64689", + "646892", + "6469", + "64693", + "646951", + "646960", + "646962", + "64699", + "6470", + "647024", + "647042", + "64708", + "647087", + "64710", + "64711", + "647135", + "64714", + "647166", + "647174", + "64718", + "6472", + "647219", + "647264", + "647286", + "6473", + "647309", + "647310", + "6474", + "64743", + "64744", + "64745", + "64746", + "64747", + "64748", + "64750", + "64753", + "64754", + "64755", + "64756", + "64757", + "647589", + "64759", + "6476", + "64760", + "64761", + "64762", + "64763", + "64764", + "64766", + "64768", + "64769", + "6477", + "64770", + "64771", + "64772", + "64773", + "64776", + "64777", + "64778", + "64779", + "6478", + "64780", + "64781", + "64782", + "64783", + "64784", + "64785", + "64786", + "64787", + "64788", + "64789", + "64792", + "64793", + "64794", + "64795", + "64798", + "64799", + "648", + "6480", + "64800", + "64801", + "64802", + "64805", + "64806", + "64816", + "6482", + "6483", + "64834", + "64837", + "64838", + "64839", + "6484", + "64840", + "64841", + "64843", + "64844", + "64847", + "64848", + "64849", + "64850", + "64852", + "64853", + "64854", + "64855", + "64856", + "64857", + "64858", + "64859", + "64860", + "64863", + "64866", + "6487", + "648791", + "64881", + "6489", + "64895", + "64897", + "649", + "6490", + "64900", + "64901", + "64902", + "6491", + "649137", + "64919", + "6492", + "64921", + "64922", + "649238", + "64924", + "64925", + "64926", + "64927", + "64928", + "6493", + "649330", + "6494", + "64943", + "64946", + "64949", + "6495", + "64951", + "6496", + "64960", + "64963", + "64965", + "64968", + "64969", + "6497", + "64975", + "64976", + "64978", + "64979", + "6498", + "64981", + "64983", + "6499", + "650", + "6500", + "65003", + "65005", + "65008", + "65009", + "65010", + "65018", + "6502", + "6503", + "6504", + "6505", + "65055", + "65056", + "65059", + "6506", + "65061", + "65062", + "65065", + "6507", + "65078", + "6508", + "65080", + "65082", + "65083", + "65084", + "6509", + "65095", + "651", + "6510", + "65108", + "65109", + "6511", + "65110", + "65117", + "6512", + "65121", + "65122", + "65123", + "65124", + "65125", + "6513", + "6514", + "6515", + "6517", + "651746", + "6518", + "6519", + "652", + "6520", + "6521", + "65217", + "6522", + "65220", + "6523", + "6524", + "65243", + "65244", + "65249", + "6525", + "65250", + "65251", + "65258", + "6526", + "65260", + "65263", + "65264", + "65265", + "65266", + "65267", + "65268", + "6527", + "6528", + "6529", + "652968", + "652991", + "653", + "6530", + "653061", + "653067", + "653073", + "653075", + "653082", + "6531", + "653121", + "653125", + "653140", + "653145", + "653149", + "653192", + "6532", + "653220", + "653240", + "653247", + "653269", + "653275", + "653282", + "6533", + "653308", + "653319", + "653333", + "653361", + "6534", + "653404", + "653423", + "653427", + "653437", + "653464", + "653486", + "653489", + "653499", + "6535", + "653505", + "653509", + "653519", + "653550", + "653567", + "653583", + "653598", + "6536", + "653604", + "653619", + "653641", + "653643", + "653656", + "653657", + "653689", + "653720", + "653781", + "653784", + "6538", + "653808", + "653820", + "653857", + "6539", + "654", + "6540", + "6541", + "6542", + "654231", + "654254", + "6543", + "654346", + "654364", + "654429", + "654463", + "654483", + "6545", + "654502", + "6546", + "6547", + "654790", + "6548", + "6549", + "655", + "6550", + "6553", + "6554", + "6555", + "6556", + "6557", + "6558", + "6559", + "656", + "6561", + "6563", + "6564", + "6565", + "6566", + "6567", + "6568", + "6569", + "657", + "6570", + "6571", + "6572", + "6573", + "6574", + "6575", + "6576", + "6578", + "6579", + "658", + "6580", + "6581", + "6582", + "6583", + "6584", + "6585", + "6586", + "6588", + "659", + "6590", + "6591", + "6594", + "6595", + "6596", + "6597", + "65975", + "65977", + "65979", + "6598", + "65980", + "65981", + "65982", + "65983", + "65985", + "65986", + "65987", + "65988", + "65989", + "6599", + "65990", + "65991", + "65992", + "65993", + "65997", + "65998", + "65999", + "660", + "66000", + "66002", + "66004", + "66005", + "66008", + "6601", + "6602", + "6603", + "66035", + "66036", + "66037", + "6604", + "6605", + "6606", + "6607", + "6608", + "6609", + "661", + "6610", + "6611", + "6612", + "6613", + "6614", + "6615", + "6616", + "6617", + "6618", + "6619", + "662", + "6620", + "6621", + "6622", + "6623", + "6624", + "6625", + "6626", + "6627", + "6628", + "6629", + "6631", + "6632", + "6633", + "6634", + "6635", + "6636", + "6637", + "6638", + "664", + "6640", + "6641", + "6642", + "6643", + "6645", + "6646", + "6647", + "6648", + "6649", + "665", + "6650", + "6651", + "6652", + "6653", + "6654", + "6655", + "6656", + "6657", + "6658", + "6659", + "666", + "6660", + "6662", + "6663", + "6664", + "6665", + "6666", + "6667", + "6668", + "667", + "6670", + "6671", + "6672", + "6674", + "6676", + "6677", + "6678", + "668", + "6683", + "6687", + "6688", + "6689", + "669", + "6690", + "6691", + "6692", + "6693", + "6694", + "6695", + "6696", + "6697", + "6698", + "6699", + "670", + "6700", + "6701", + "6703", + "6704", + "6705", + "6706", + "6707", + "6708", + "6709", + "671", + "6710", + "6711", + "6712", + "6713", + "6714", + "6715", + "6716", + "6717", + "6718", + "672", + "6720", + "6721", + "6722", + "6723", + "6725", + "6726", + "6727", + "6728", + "6729", + "673", + "6730", + "6731", + "6732", + "6733", + "6734", + "6736", + "6737", + "6738", + "6741", + "6742", + "6744", + "6745", + "6746", + "6747", + "6748", + "6749", + "675", + "6750", + "6751", + "6752", + "6753", + "6754", + "6755", + "6756", + "6757", + "6758", + "6759", + "676", + "6760", + "6764", + "6767", + "6768", + "6769", + "677", + "6770", + "6772", + "6773", + "6774", + "6775", + "6776", + "6777", + "6778", + "6779", + "678", + "6780", + "6781", + "6782", + "6783", + "6785", + "6786", + "6787", + "6788", + "6789", + "6790", + "6792", + "6793", + "6794", + "6795", + "6799", + "680", + "6801", + "6804", + "6809", + "6810", + "6811", + "6812", + "6813", + "6814", + "6815", + "6818", + "6819", + "682", + "6820", + "6821", + "6822", + "6827", + "6829", + "683", + "6830", + "6832", + "6833", + "6834", + "6835", + "6836", + "6837", + "6838", + "6839", + "684", + "6840", + "6843", + "6844", + "6845", + "6846", + "6847", + "685", + "6850", + "6853", + "6854", + "6855", + "6856", + "6857", + "6860", + "6861", + "6862", + "6863", + "6865", + "6867", + "6868", + "6869", + "687", + "6870", + "6871", + "6872", + "6873", + "6874", + "6875", + "6876", + "6877", + "6878", + "6879", + "688", + "6880", + "6881", + "6882", + "6883", + "6884", + "6885", + "6886", + "6887", + "6888", + "689", + "6890", + "6891", + "6892", + "6894", + "6895", + "6897", + "6898", + "6899", + "6900", + "6901", + "6902", + "6903", + "6904", + "6905", + "6906", + "6907", + "6908", + "6909", + "6910", + "6911", + "6913", + "6915", + "6917", + "6919", + "6920", + "692094", + "6921", + "6923", + "692312", + "6924", + "6925", + "6926", + "6927", + "6928", + "6929", + "6932", + "6934", + "6936", + "6938", + "6939", + "694", + "6940", + "6941", + "6942", + "6943", + "6944", + "6945", + "6947", + "6948", + "6949", + "695", + "6950", + "6954", + "696", + "6975", + "6988", + "699", + "6990", + "6991", + "6992", + "6993", + "6996", + "6997", + "6999", + "70", + "7001", + "7003", + "7004", + "7005", + "7006", + "7007", + "7008", + "7009", + "701", + "7010", + "7011", + "7013", + "7014", + "7015", + "7016", + "7018", + "7019", + "7021", + "7022", + "7023", + "7024", + "7025", + "7026", + "7027", + "7029", + "7030", + "7031", + "7032", + "7033", + "7035", + "7036", + "7037", + "7038", + "7039", + "7040", + "7041", + "7042", + "7043", + "7044", + "7045", + "7046", + "7047", + "7048", + "7049", + "705", + "7050", + "7051", + "7052", + "7053", + "7054", + "7056", + "7057", + "7058", + "7059", + "706", + "7060", + "7062", + "7064", + "7066", + "7067", + "7068", + "7069", + "7070", + "7071", + "7072", + "7073", + "7074", + "7075", + "7076", + "7077", + "7078", + "7079", + "708", + "7080", + "7082", + "7083", + "7084", + "7086", + "7087", + "7088", + "7089", + "7090", + "7091", + "7092", + "7093", + "7094", + "7095", + "7096", + "7097", + "7098", + "7099", + "71", + "710", + "7100", + "7101", + "7102", + "7103", + "7104", + "7105", + "7106", + "7107", + "7108", + "7109", + "7110", + "7111", + "7112", + "7113", + "7114", + "712", + "7122", + "7123", + "7124", + "7125", + "7126", + "7127", + "7128", + "7130", + "7132", + "7133", + "7134", + "7135", + "7136", + "7137", + "7138", + "7139", + "714", + "7140", + "7141", + "7142", + "7143", + "7145", + "7148", + "715", + "7150", + "7153", + "7155", + "7156", + "7157", + "7158", + "7159", + "716", + "7161", + "7162", + "7163", + "7164", + "7165", + "7166", + "7167", + "7168", + "7169", + "717", + "7170", + "7171", + "7172", + "7173", + "7174", + "7175", + "7177", + "7178", + "7179", + "718", + "7180", + "7181", + "7182", + "7184", + "7185", + "7186", + "7187", + "7188", + "7189", + "719", + "72", + "720", + "7200", + "7201", + "7203", + "7204", + "7205", + "721", + "7216", + "722", + "7220", + "7222", + "7223", + "7224", + "7225", + "7226", + "7227", + "723790", + "723961", + "7247", + "7248", + "7249", + "725", + "7251", + "7252", + "7253", + "7257", + "7258", + "7259", + "726", + "7260", + "7262", + "7263", + "7264", + "7265", + "7266", + "7267", + "7268", + "727", + "7270", + "7272", + "7273", + "7274", + "7275", + "7276", + "7277", + "727764", + "7278", + "727800", + "727830", + "727832", + "727837", + "727851", + "727857", + "727866", + "727897", + "727905", + "727909", + "727910", + "727924", + "727936", + "727940", + "727957", + "728", + "7280", + "728036", + "728042", + "728047", + "728049", + "728062", + "728072", + "728075", + "728082", + "728090", + "728096", + "728113", + "728116", + "728118", + "728130", + "728132", + "728137", + "728194", + "728215", + "728224", + "728226", + "728229", + "728239", + "728255", + "728269", + "728276", + "728279", + "728294", + "728299", + "7283", + "728310", + "728317", + "728318", + "728340", + "728343", + "728358", + "728361", + "728369", + "728373", + "728378", + "728379", + "728386", + "728392", + "728393", + "728395", + "7284", + "728400", + "728403", + "728405", + "728419", + "728458", + "728464", + "728489", + "728492", + "728498", + "728524", + "728537", + "728568", + "728577", + "728586", + "728588", + "728591", + "728597", + "7286", + "728621", + "728637", + "728642", + "728656", + "728661", + "728689", + "728695", + "7287", + "728712", + "728734", + "728741", + "728743", + "728763", + "728780", + "7288", + "728819", + "728833", + "728858", + "728888", + "7289", + "728911", + "728927", + "728945", + "728957", + "729", + "7290", + "729020", + "729025", + "729085", + "729092", + "7291", + "7292", + "729201", + "729233", + "729238", + "729240", + "729246", + "729250", + "729262", + "729264", + "7293", + "729330", + "729355", + "729359", + "729384", + "729396", + "7294", + "729422", + "729428", + "729431", + "729438", + "729440", + "729442", + "729447", + "729458", + "729475", + "7295", + "729515", + "729528", + "729533", + "729540", + "729597", + "7296", + "729627", + "729665", + "7297", + "729747", + "729759", + "729767", + "7298", + "729830", + "729852", + "729857", + "729873", + "729877", + "7299", + "729920", + "729956", + "729966", + "729967", + "729974", + "729978", + "729991", + "729993", + "730", + "730005", + "730051", + "730087", + "730094", + "7301", + "730112", + "730130", + "730159", + "730249", + "730262", + "730291", + "7305", + "7306", + "7307", + "730755", + "731", + "7311", + "731220", + "7314", + "7316", + "7317", + "7318", + "7319", + "732", + "7320", + "7321", + "7322", + "7323", + "7324", + "7325", + "7326", + "7327", + "7328", + "7329", + "733", + "7332", + "7334", + "7335", + "7336", + "7337", + "734", + "7341", + "7342", + "7343", + "7345", + "7347", + "7348", + "7349", + "735", + "7350", + "7351", + "7352", + "7353", + "7355", + "7356", + "7357", + "7358", + "7360", + "7363", + "7364", + "7365", + "7366", + "7367", + "7368", + "7369", + "7371", + "7372", + "7373", + "7374", + "7375", + "7376", + "7378", + "7379", + "738", + "7380", + "7381", + "7384", + "7385", + "7386", + "7388", + "7389", + "7390", + "7391", + "7392", + "7398", + "7399", + "740", + "7401", + "7402", + "7403", + "7404", + "7405", + "7407", + "7408", + "7409", + "741", + "7410", + "7411", + "7412", + "7414", + "7415", + "7416", + "7417", + "7419", + "7423", + "7424", + "7425", + "7428", + "7429", + "7430", + "7431", + "7432", + "7433", + "7434", + "7436", + "7439", + "744", + "7441", + "7442", + "7443", + "7444", + "7447", + "7448", + "745", + "7450", + "7453", + "7454", + "7455", + "7456", + "7458", + "746", + "7461", + "7462", + "7464", + "7465", + "7466", + "7468", + "7469", + "747", + "7471", + "7472", + "7473", + "7474", + "7475", + "7476", + "7477", + "7478", + "7479", + "7480", + "7481", + "7482", + "7483", + "7484", + "7485", + "7486", + "7490", + "7494", + "7498", + "7499", + "7504", + "7507", + "7508", + "751071", + "7511", + "7512", + "7514", + "7515", + "7516", + "7517", + "7518", + "752", + "7520", + "752014", + "7525", + "7528", + "7529", + "753", + "7531", + "7532", + "7533", + "7534", + "7535", + "7536", + "7538", + "7539", + "754", + "7541", + "7542", + "7543", + "7544", + "7545", + "7546", + "7547", + "7549", + "755", + "7552", + "7553", + "7554", + "7555", + "7556", + "7559", + "7561", + "7562", + "7564", + "7565", + "7566", + "7567", + "7568", + "7569", + "757", + "7570", + "7571", + "7572", + "7574", + "7576", + "7579", + "758", + "7580", + "7581", + "7582", + "7584", + "7586", + "7587", + "7589", + "759", + "7592", + "7593", + "7594", + "7596", + "7597", + "760", + "761", + "7617", + "762", + "7620", + "7621", + "7625", + "7626", + "7627", + "7629", + "763", + "7633", + "7634", + "7637", + "7638", + "7639", + "7643", + "7644", + "765", + "7652", + "766", + "767", + "7673", + "7675", + "7678", + "768", + "7681", + "768206", + "768211", + "768239", + "7690", + "7691", + "7692", + "7693", + "7694", + "7695", + "7697", + "7699", + "770", + "7700", + "7701", + "7702", + "7703", + "7704", + "7705", + "7706", + "7707", + "7709", + "771", + "7710", + "7711", + "7712", + "7716", + "7718", + "7726", + "7727", + "7728", + "773", + "7732", + "7733", + "7737", + "7738", + "7739", + "774", + "7741", + "7743", + "7745", + "7746", + "7748", + "775", + "7750", + "7752", + "7753", + "7755", + "7756", + "7757", + "776", + "7760", + "7761", + "7762", + "7763", + "7764", + "7766", + "7767", + "7768", + "7769", + "777", + "7770", + "7771", + "7772", + "7773", + "7775", + "7776", + "7779", + "778", + "7780", + "7781", + "7782", + "7783", + "7784", + "7786", + "7789", + "779", + "7791", + "7798", + "7799", + "780", + "7802", + "7803", + "7804", + "7805", + "780776", + "7809", + "781", + "7812", + "7813", + "7818", + "782", + "7827", + "783", + "7832", + "7837", + "784", + "7840", + "7841", + "7844", + "7846", + "7849", + "785", + "7850", + "7851", + "7852", + "7855", + "7857", + "786", + "7862", + "7866", + "7867", + "7869", + "7871", + "7874", + "7879", + "788", + "7881", + "7884", + "78986", + "78987", + "78988", + "78989", + "78990", + "78991", + "78992", + "78994", + "78995", + "78996", + "78997", + "78999", + "790", + "79000", + "79001", + "79002", + "79003", + "79004", + "79005", + "79006", + "79007", + "79008", + "79009", + "79012", + "79016", + "79017", + "79018", + "79019", + "79020", + "79022", + "79023", + "79024", + "79025", + "79026", + "79027", + "79029", + "7903", + "79031", + "79033", + "79034", + "79035", + "79036", + "79037", + "79038", + "79039", + "79041", + "79042", + "79047", + "79048", + "7905", + "79050", + "79053", + "79054", + "79056", + "79057", + "79058", + "79064", + "79065", + "79066", + "79068", + "79070", + "79071", + "79072", + "79073", + "79074", + "79075", + "79077", + "79078", + "79080", + "79081", + "79083", + "79084", + "79085", + "79086", + "79087", + "79088", + "79089", + "79090", + "79091", + "79092", + "79094", + "79095", + "790955", + "79096", + "79097", + "79098", + "79101", + "79102", + "79109", + "7913", + "79132", + "79133", + "79134", + "79135", + "79137", + "79139", + "79140", + "79142", + "79143", + "79144", + "79145", + "79147", + "79148", + "79149", + "7915", + "79152", + "79153", + "79154", + "79155", + "79156", + "79157", + "79158", + "79159", + "7916", + "79161", + "79165", + "79168", + "79169", + "7917", + "79170", + "79171", + "79172", + "79173", + "79174", + "79175", + "79177", + "79178", + "7918", + "79180", + "79183", + "79184", + "79187", + "79188", + "7919", + "79190", + "79191", + "79192", + "7920", + "7922", + "79228", + "7923", + "79230", + "79258", + "79269", + "79290", + "79295", + "793", + "79310", + "79317", + "7932", + "79324", + "79339", + "79345", + "79346", + "7936", + "79363", + "79364", + "79365", + "79366", + "79368", + "79369", + "79370", + "794", + "7940", + "79400", + "7941", + "79411", + "79412", + "79413", + "79414", + "79415", + "7942", + "79441", + "79442", + "79443", + "79444", + "79446", + "79447", + "79465", + "79473", + "79490", + "795", + "79541", + "79544", + "79549", + "79567", + "79568", + "7957", + "79570", + "79571", + "79572", + "79573", + "79574", + "79575", + "79576", + "79577", + "79581", + "79582", + "79583", + "79585", + "79586", + "79587", + "79589", + "79590", + "79591", + "79594", + "79595", + "79596", + "79598", + "796", + "79600", + "79602", + "79603", + "79605", + "79607", + "79608", + "79609", + "79611", + "79612", + "79613", + "79616", + "79618", + "79621", + "79623", + "79624", + "79625", + "79626", + "79627", + "79628", + "79629", + "79630", + "79631", + "79632", + "79633", + "79634", + "79635", + "79637", + "79639", + "79641", + "79642", + "79643", + "79644", + "79645", + "79646", + "79647", + "79648", + "79649", + "7965", + "79650", + "79651", + "79652", + "79654", + "79656", + "79657", + "79658", + "79659", + "79660", + "79661", + "79663", + "79664", + "79665", + "79666", + "79668", + "79669", + "79670", + "79671", + "79672", + "79673", + "79674", + "79675", + "79676", + "79677", + "79679", + "79680", + "79682", + "79683", + "79684", + "79685", + "79689", + "79690", + "79691", + "79692", + "79693", + "79694", + "79695", + "79696", + "79697", + "79698", + "79699", + "797", + "79701", + "79705", + "79706", + "79707", + "79709", + "79710", + "79711", + "79712", + "79713", + "79714", + "79716", + "79717", + "79718", + "79719", + "79720", + "79722", + "79723", + "79724", + "79725", + "79726", + "79727", + "79728", + "79729", + "79730", + "79731", + "79733", + "79734", + "79735", + "79736", + "79738", + "79739", + "79740", + "79741", + "79742", + "79744", + "79745", + "79746", + "79747", + "79748", + "7975", + "79750", + "79751", + "79752", + "79753", + "79754", + "79755", + "79758", + "79759", + "7976", + "79760", + "79762", + "79763", + "79767", + "79768", + "79770", + "79772", + "79774", + "79776", + "79777", + "79778", + "7978", + "79780", + "79781", + "79782", + "79783", + "79784", + "79785", + "79786", + "79788", + "79789", + "7979", + "79791", + "79792", + "79794", + "79796", + "79797", + "79798", + "79799", + "7980", + "79800", + "79801", + "79802", + "79803", + "79805", + "79807", + "79809", + "79810", + "79811", + "79812", + "79813", + "79814", + "79815", + "79816", + "79817", + "79818", + "79819", + "7982", + "79820", + "79822", + "79823", + "79825", + "79827", + "79828", + "79829", + "79830", + "79831", + "79833", + "79834", + "79836", + "79837", + "79838", + "79839", + "7984", + "79840", + "79841", + "79842", + "79843", + "79844", + "79845", + "79846", + "79847", + "79848", + "79849", + "79850", + "79852", + "79853", + "79856", + "79858", + "79861", + "79862", + "79863", + "79864", + "79865", + "79866", + "79867", + "79868", + "79869", + "79870", + "79871", + "79872", + "79873", + "79874", + "79875", + "79876", + "79877", + "79879", + "7988", + "79882", + "79883", + "79884", + "79885", + "79886", + "79887", + "79888", + "79890", + "79891", + "79892", + "79893", + "79894", + "79895", + "79896", + "79897", + "79898", + "79899", + "79901", + "79902", + "79903", + "79905", + "79906", + "79908", + "7991", + "79912", + "79913", + "79915", + "79917", + "79918", + "79919", + "79921", + "79922", + "79923", + "79924", + "79925", + "79927", + "79929", + "7993", + "79930", + "79931", + "79932", + "79933", + "79934", + "79935", + "79937", + "79939", + "7994", + "79943", + "79944", + "79946", + "79947", + "79948", + "79949", + "79953", + "79954", + "79955", + "79956", + "79957", + "79958", + "79959", + "79960", + "79961", + "79962", + "79966", + "79968", + "79969", + "79971", + "79973", + "79974", + "79977", + "79979", + "79980", + "79981", + "79982", + "79983", + "79987", + "79989", + "79990", + "79991", + "79993", + "79998", + "800", + "8000", + "80000", + "80003", + "80004", + "80005", + "80006", + "80007", + "80008", + "8001", + "80010", + "80011", + "80012", + "80013", + "80014", + "80017", + "80018", + "80019", + "80020", + "80021", + "80022", + "80023", + "80024", + "80025", + "80028", + "80031", + "80032", + "80034", + "80036", + "80045", + "80055", + "80059", + "80063", + "80067", + "80070", + "80071", + "80086", + "80095", + "80097", + "80108", + "80110", + "80114", + "80115", + "80117", + "80119", + "80122", + "80124", + "80125", + "80127", + "80128", + "80129", + "8013", + "80131", + "80133", + "80135", + "80139", + "80142", + "80143", + "80144", + "80145", + "80146", + "80148", + "80149", + "80150", + "80152", + "80153", + "80155", + "80157", + "80162", + "80164", + "80167", + "80168", + "80169", + "80173", + "80174", + "80176", + "80177", + "80178", + "80179", + "80183", + "80184", + "80185", + "8019", + "80194", + "80195", + "80196", + "80198", + "80199", + "80201", + "80204", + "80205", + "80206", + "80207", + "80208", + "80209", + "8021", + "80210", + "80212", + "80213", + "80216", + "80217", + "80218", + "80219", + "8022", + "80221", + "80222", + "80223", + "80224", + "80227", + "80228", + "80230", + "80231", + "80232", + "80233", + "80235", + "80237", + "80243", + "80255", + "80256", + "80258", + "80262", + "80263", + "80264", + "80267", + "8027", + "80270", + "80271", + "80273", + "80274", + "80279", + "8028", + "8029", + "80298", + "8030", + "80301", + "80303", + "80304", + "80305", + "80306", + "80308", + "80309", + "8031", + "80310", + "80311", + "80312", + "80313", + "80314", + "80315", + "80316", + "80317", + "80318", + "80319", + "80320", + "80321", + "80323", + "80324", + "80325", + "80326", + "80328", + "80329", + "80331", + "80332", + "80333", + "80335", + "80336", + "80339", + "8034", + "80341", + "80342", + "80343", + "80344", + "80345", + "80346", + "80347", + "80349", + "80351", + "80352", + "8036", + "8038", + "80380", + "80381", + "8045", + "8048", + "8050", + "8061", + "8065", + "80700", + "80704", + "80705", + "80709", + "80712", + "80714", + "80723", + "80724", + "80725", + "80726", + "80727", + "80728", + "8073", + "80731", + "80736", + "80737", + "80739", + "8074", + "80740", + "80741", + "80742", + "80745", + "80746", + "80755", + "80757", + "80758", + "80759", + "8076", + "80760", + "80762", + "80763", + "80764", + "80765", + "80772", + "80774", + "80775", + "80776", + "80777", + "80778", + "8078", + "80781", + "80789", + "8079", + "80790", + "808", + "80816", + "80817", + "80818", + "8082", + "80820", + "80821", + "80823", + "80824", + "80829", + "80830", + "80831", + "80832", + "80833", + "80834", + "80835", + "8085", + "80851", + "80852", + "80853", + "80854", + "80856", + "8086", + "80863", + "80864", + "8087", + "8089", + "80895", + "80896", + "8091", + "8092", + "80975", + "8099", + "81", + "810", + "8100", + "81025", + "81027", + "81029", + "81030", + "81031", + "81033", + "81034", + "81035", + "81037", + "81050", + "8106", + "81099", + "811", + "8111", + "81127", + "8115", + "81168", + "8120", + "8125", + "8128", + "81282", + "81285", + "813", + "81300", + "81309", + "81318", + "81327", + "81341", + "8139", + "81392", + "81399", + "814", + "8140", + "81442", + "81448", + "81466", + "81469", + "81470", + "81472", + "8148", + "81488", + "81490", + "81491", + "81492", + "81493", + "81494", + "815", + "81501", + "81502", + "8153", + "81532", + "81533", + "81537", + "81539", + "81542", + "81543", + "81544", + "81545", + "81551", + "81552", + "81553", + "81554", + "81555", + "81556", + "81557", + "81558", + "81559", + "81562", + "81563", + "81565", + "81566", + "81567", + "81569", + "81570", + "81572", + "81573", + "81575", + "81576", + "81577", + "81578", + "81579", + "816", + "81602", + "81603", + "81605", + "81606", + "81607", + "81608", + "81609", + "8161", + "81610", + "81611", + "81614", + "81615", + "81616", + "81617", + "81618", + "81619", + "81620", + "81621", + "81622", + "81623", + "81624", + "81626", + "81627", + "81628", + "81629", + "81631", + "8165", + "81669", + "81671", + "81688", + "81689", + "81691", + "81693", + "81696", + "81697", + "817", + "8170", + "81704", + "81706", + "8174", + "8175", + "8178", + "81786", + "81789", + "81790", + "81792", + "81793", + "81794", + "81796", + "81797", + "818", + "81831", + "81832", + "81833", + "81839", + "81844", + "81846", + "81847", + "81848", + "81849", + "81850", + "81851", + "81853", + "81856", + "81857", + "81858", + "8187", + "81870", + "81871", + "81872", + "81873", + "81875", + "81876", + "81887", + "81888", + "81889", + "8189", + "81890", + "81892", + "81894", + "819", + "8190", + "8192", + "81926", + "81928", + "81929", + "8193", + "81930", + "81931", + "81932", + "8195", + "820", + "8200", + "8202", + "8204", + "8208", + "8209", + "821", + "8214", + "8216", + "8218", + "822", + "8220", + "8224", + "8225", + "8226", + "8227", + "8228", + "823", + "8233", + "8237", + "8239", + "824", + "8241", + "8242", + "8243", + "825", + "826", + "8260", + "8263", + "8266", + "8269", + "827", + "8270", + "8273", + "8277", + "8284", + "8287", + "8288", + "8289", + "829", + "8290", + "8291", + "8292", + "8293", + "8294", + "8295", + "830", + "8301", + "8302", + "8303", + "8309", + "831", + "8310", + "8312", + "8313", + "8314", + "8315", + "8317", + "8318", + "832", + "8320", + "8321", + "8322", + "8323", + "8324", + "8325", + "83259", + "8326", + "8328", + "8329", + "833", + "8330", + "8331", + "8332", + "8334", + "8335", + "8336", + "8337", + "8338", + "8339", + "83394", + "834", + "8340", + "83401", + "8341", + "83416", + "83417", + "8342", + "8343", + "83439", + "8344", + "83440", + "83442", + "83443", + "83444", + "83445", + "83446", + "83447", + "83448", + "83449", + "8345", + "83450", + "83451", + "83452", + "8346", + "83460", + "83461", + "83463", + "83464", + "83468", + "8347", + "83473", + "83475", + "83478", + "83479", + "8348", + "83480", + "83481", + "83482", + "83483", + "8349", + "835", + "8350", + "8351", + "8352", + "8353", + "83538", + "83539", + "8354", + "83540", + "83541", + "83543", + "83544", + "83546", + "83547", + "83548", + "83549", + "8355", + "83550", + "83551", + "83552", + "8356", + "8357", + "8358", + "8359", + "83590", + "83591", + "83592", + "83593", + "83594", + "83595", + "83597", + "836", + "8360", + "83604", + "83605", + "83606", + "83607", + "83608", + "8361", + "8362", + "8363", + "83637", + "83638", + "83639", + "8364", + "83640", + "83641", + "83642", + "83643", + "83648", + "83650", + "83657", + "83658", + "83659", + "8366", + "83660", + "83661", + "83666", + "83667", + "8367", + "8368", + "8369", + "83690", + "83693", + "83694", + "83695", + "83697", + "83698", + "83699", + "837", + "8370", + "83700", + "83706", + "83707", + "83714", + "83715", + "83716", + "83719", + "8372", + "83723", + "83729", + "83732", + "83733", + "83734", + "83737", + "83740", + "83741", + "83742", + "83743", + "83744", + "83746", + "83752", + "83755", + "83756", + "83758", + "83759", + "83786", + "83787", + "8379", + "83795", + "838", + "8382", + "8383", + "83844", + "83849", + "83850", + "83851", + "83852", + "83853", + "83854", + "83855", + "83856", + "83857", + "83858", + "8386", + "83860", + "83862", + "8387", + "83871", + "83872", + "83873", + "83874", + "83875", + "83876", + "83877", + "83878", + "83879", + "8388", + "83881", + "83884", + "83886", + "83887", + "83888", + "83889", + "83890", + "83891", + "83892", + "83893", + "83894", + "83895", + "83896", + "83897", + "83899", + "839", + "8390", + "83900", + "83901", + "83902", + "83903", + "83930", + "83931", + "83932", + "83933", + "83937", + "83938", + "83939", + "8394", + "83940", + "83941", + "83942", + "83943", + "8395", + "83953", + "83959", + "8396", + "8398", + "83982", + "83983", + "83985", + "83986", + "83987", + "83988", + "83989", + "8399", + "83990", + "83992", + "83998", + "83999", + "840", + "84000", + "84002", + "8402", + "8403", + "84033", + "84034", + "8404", + "8405", + "84056", + "84057", + "84058", + "84059", + "8406", + "84060", + "84061", + "84062", + "84063", + "84064", + "84065", + "84066", + "84067", + "84068", + "84069", + "8407", + "84070", + "84071", + "84072", + "84074", + "84075", + "84076", + "84077", + "84078", + "84079", + "8408", + "84080", + "84081", + "84083", + "84084", + "84085", + "8409", + "841", + "84100", + "84101", + "84102", + "84103", + "84105", + "84106", + "84107", + "84108", + "84109", + "8411", + "8412", + "84124", + "84125", + "84126", + "84128", + "84129", + "84131", + "84132", + "84133", + "84134", + "84135", + "84138", + "84140", + "84141", + "84142", + "84144", + "84146", + "84148", + "84152", + "84153", + "84154", + "84159", + "8416", + "84162", + "84163", + "84164", + "84166", + "84167", + "84168", + "8417", + "84171", + "84172", + "84173", + "84174", + "84179", + "84181", + "84182", + "84186", + "84187", + "84188", + "84189", + "8419", + "84190", + "84191", + "84193", + "84196", + "84197", + "842", + "84203", + "84206", + "84210", + "84215", + "84216", + "84217", + "84218", + "84219", + "84220", + "84221", + "84223", + "84224", + "84225", + "84229", + "84230", + "84231", + "84232", + "84233", + "84236", + "84239", + "8424", + "84240", + "84243", + "84245", + "84246", + "84247", + "84248", + "84249", + "8425", + "84250", + "84251", + "84253", + "84254", + "84255", + "84256", + "84258", + "84259", + "84260", + "84261", + "84262", + "84263", + "84264", + "84265", + "84266", + "84267", + "84268", + "84269", + "8427", + "84270", + "84271", + "84272", + "84273", + "84274", + "84275", + "84276", + "84277", + "84279", + "8428", + "84280", + "84281", + "84282", + "84283", + "84284", + "84285", + "84286", + "84287", + "84288", + "84289", + "84290", + "84292", + "84293", + "84294", + "84295", + "84296", + "84298", + "84299", + "843", + "84300", + "84301", + "84302", + "84303", + "84304", + "84305", + "84306", + "84307", + "84309", + "8431", + "84310", + "84311", + "84312", + "84313", + "84314", + "84315", + "84316", + "84317", + "84318", + "84319", + "84320", + "84321", + "84324", + "84326", + "84327", + "84328", + "84329", + "8433", + "84330", + "84331", + "84332", + "84333", + "84334", + "84335", + "84336", + "84337", + "8434", + "84340", + "84343", + "8435", + "8436", + "84364", + "84365", + "84366", + "8437", + "84376", + "8438", + "8439", + "844", + "8440", + "84417", + "84418", + "84419", + "8443", + "84432", + "84433", + "84435", + "84436", + "84437", + "84439", + "8444", + "84440", + "84441", + "84443", + "84444", + "84445", + "84446", + "84447", + "84448", + "84449", + "8445", + "84450", + "84451", + "84455", + "84456", + "84457", + "84458", + "8446", + "84460", + "84461", + "84464", + "84465", + "84466", + "84467", + "8447", + "8448", + "8449", + "84498", + "845", + "8450", + "84501", + "84502", + "84503", + "84504", + "8451", + "84513", + "84514", + "84515", + "84516", + "84517", + "84518", + "84519", + "8452", + "84520", + "84522", + "84524", + "84525", + "84527", + "84528", + "84529", + "8453", + "84530", + "84532", + "84539", + "8454", + "84541", + "84542", + "84545", + "84547", + "84548", + "84549", + "8455", + "84552", + "84553", + "84557", + "8456", + "84560", + "84561", + "84569", + "84570", + "84572", + "8458", + "8459", + "846", + "8460", + "84612", + "84614", + "84616", + "84617", + "84618", + "84619", + "8462", + "84620", + "84622", + "84623", + "84624", + "84626", + "84627", + "84628", + "84629", + "8463", + "84630", + "84631", + "84632", + "84634", + "84636", + "84639", + "8464", + "84640", + "84641", + "84643", + "84645", + "84647", + "84648", + "84649", + "84650", + "84651", + "84654", + "84656", + "84658", + "84659", + "84660", + "84661", + "84662", + "84665", + "84666", + "84667", + "84668", + "84669", + "8467", + "84671", + "84674", + "84675", + "84676", + "84678", + "84679", + "8468", + "84680", + "84681", + "84684", + "84687", + "84688", + "84689", + "84690", + "84691", + "84692", + "84693", + "84694", + "84695", + "84696", + "84698", + "84699", + "847", + "8470", + "84700", + "84701", + "84705", + "84706", + "84707", + "84708", + "84709", + "8471", + "84717", + "84720", + "84722", + "84725", + "84727", + "8473", + "84733", + "84734", + "84735", + "84747", + "84749", + "84750", + "84752", + "84759", + "8476", + "84765", + "84766", + "84767", + "84769", + "8477", + "84775", + "84779", + "84787", + "8479", + "84790", + "84792", + "84795", + "8480", + "84803", + "84804", + "84807", + "84808", + "8481", + "84811", + "84812", + "84814", + "84816", + "84817", + "84818", + "8482", + "84823", + "84824", + "84826", + "8483", + "84830", + "84833", + "84836", + "84838", + "84839", + "8484", + "84842", + "84844", + "84851", + "84858", + "84859", + "84861", + "84864", + "84865", + "84866", + "84867", + "84868", + "84869", + "8487", + "84870", + "84871", + "84872", + "84873", + "84874", + "84875", + "84876", + "84878", + "84879", + "84881", + "84883", + "84885", + "84886", + "84888", + "84889", + "84890", + "84891", + "84892", + "84893", + "84894", + "84895", + "84896", + "84897", + "84898", + "84899", + "8490", + "84900", + "84901", + "84902", + "84904", + "84905", + "84908", + "84909", + "8491", + "84910", + "84911", + "84912", + "84913", + "84914", + "84915", + "84916", + "84918", + "84919", + "8492", + "84920", + "84922", + "84923", + "84924", + "84925", + "84926", + "84928", + "84929", + "8493", + "84930", + "84932", + "84933", + "84934", + "84935", + "84936", + "84937", + "84938", + "84939", + "84940", + "84941", + "84942", + "84944", + "84945", + "84946", + "84947", + "84948", + "8495", + "84950", + "84951", + "84952", + "84954", + "84955", + "84957", + "84958", + "84959", + "8496", + "84960", + "84961", + "84962", + "84964", + "84966", + "84967", + "84968", + "84969", + "8497", + "84970", + "84971", + "84975", + "84976", + "84978", + "8498", + "84984", + "84985", + "84986", + "84987", + "84988", + "8499", + "84991", + "84992", + "84993", + "8500", + "85002", + "85004", + "85007", + "8501", + "85012", + "85013", + "85014", + "85015", + "85016", + "85019", + "8502", + "85021", + "85025", + "85027", + "8503", + "8504", + "8505", + "8506", + "8507", + "8508", + "8509", + "8510", + "8513", + "8514", + "8515", + "8516", + "8517", + "8518", + "8519", + "8520", + "8521", + "8522", + "85235", + "85236", + "8525", + "8526", + "8527", + "8528", + "85280", + "85285", + "85289", + "8529", + "85290", + "85291", + "85293", + "85294", + "8530", + "85300", + "85301", + "85302", + "8531", + "85313", + "85315", + "8532", + "85320", + "85329", + "8533", + "8534", + "8535", + "85352", + "85354", + "85358", + "85359", + "8536", + "85360", + "85363", + "85364", + "85365", + "85366", + "85369", + "8537", + "85376", + "85377", + "85378", + "85379", + "8538", + "8539", + "85395", + "85397", + "8540", + "85403", + "85406", + "85407", + "85409", + "8541", + "85413", + "85414", + "85415", + "85416", + "85417", + "8542", + "8543", + "85437", + "85438", + "85439", + "8544", + "85440", + "85441", + "85442", + "85443", + "85444", + "85445", + "85446", + "85449", + "8545", + "85450", + "85451", + "85452", + "85453", + "85455", + "85456", + "85457", + "85458", + "85459", + "8546", + "85460", + "85461", + "85462", + "85463", + "85464", + "85465", + "8547", + "85474", + "85476", + "85477", + "85478", + "85479", + "8548", + "85480", + "85481", + "8549", + "8550", + "85508", + "85509", + "8553", + "8554", + "8555", + "8556", + "85569", + "8557", + "8558", + "8559", + "8560", + "8562", + "8563", + "8564", + "8565", + "8566", + "8567", + "8568", + "8569", + "857", + "8570", + "8572", + "8573", + "8574", + "8575", + "8576", + "8577", + "8578", + "858", + "8581", + "85865", + "859", + "8590", + "8594", + "86", + "860", + "8600", + "8601", + "8602", + "8603", + "8604", + "8605", + "8607", + "8608", + "8609", + "861", + "8611", + "8612", + "8613", + "8614", + "8615", + "8618", + "862", + "8620", + "8621", + "8622", + "8623", + "8624", + "8625", + "8626", + "8629", + "863", + "8630", + "8631", + "8632", + "8633", + "8634", + "8635", + "8636", + "8637", + "8638", + "8639", + "864", + "8641", + "8642", + "8643", + "8644", + "8645", + "8646", + "8647", + "8648", + "8649", + "865", + "8650", + "8651", + "8653", + "8654", + "8655", + "8658", + "8659", + "866", + "8660", + "8661", + "86614", + "8662", + "8663", + "8664", + "8665", + "8666", + "8667", + "8668", + "8669", + "867", + "8671", + "8672", + "8673", + "8674", + "8675", + "8676", + "8677", + "8678", + "8681", + "8682", + "8683", + "8685", + "8687", + "8688", + "8689", + "869", + "8690", + "8692", + "8693", + "8694", + "8697", + "8698", + "87", + "8701", + "8702", + "8703", + "8704", + "8705", + "8706", + "8707", + "8708", + "871", + "8710", + "8711", + "8712", + "8714", + "8715", + "8717", + "87178", + "8718", + "8720", + "8721", + "8722", + "8723", + "8724", + "8725", + "8726", + "8727", + "8728", + "8729", + "873", + "8731", + "8732", + "8733", + "8735", + "8736", + "8737", + "8738", + "8739", + "874", + "8740", + "8741", + "8742", + "8743", + "8744", + "8745", + "8747", + "8748", + "8749", + "875", + "8751", + "8754", + "8756", + "8760", + "8761", + "8763", + "8764", + "8766", + "8767", + "8771", + "8772", + "8773", + "8774", + "8775", + "8776", + "87769", + "8777", + "8780", + "8784", + "8785", + "8786", + "8787", + "8788", + "8789", + "8790", + "8792", + "8793", + "8794", + "8795", + "8796", + "8797", + "8798", + "8799", + "88", + "8800", + "8801", + "8802", + "8803", + "8804", + "8805", + "8807", + "8808", + "8809", + "881", + "8811", + "8812", + "8813", + "8814", + "8815", + "8816", + "8817", + "8818", + "8819", + "8820", + "8821", + "8822", + "8823", + "8825", + "8826", + "8828", + "8829", + "883", + "8831", + "8832", + "8833", + "8834", + "8835", + "8836", + "8837", + "8838", + "8839", + "8840", + "8841", + "8842", + "8843", + "8844", + "88455", + "8846", + "8848", + "885", + "8850", + "8851", + "8852", + "8853", + "8854", + "8856", + "8857", + "8858", + "8859", + "886", + "8861", + "8862", + "8863", + "8864", + "8867", + "8869", + "887", + "8870", + "8871", + "8872", + "8874", + "88745", + "8875", + "8876", + "8877", + "8878", + "8879", + "8880", + "8881", + "8882", + "8883", + "8884", + "8886", + "8887", + "8888", + "889", + "8890", + "8891", + "8892", + "8893", + "8894", + "8895", + "8896", + "8897", + "8898", + "8899", + "89", + "8900", + "8904", + "8905", + "8906", + "8907", + "8908", + "8909", + "891", + "8910", + "8911", + "8912", + "89122", + "8913", + "8914", + "8915", + "8916", + "892", + "8924", + "8925", + "8926", + "8927", + "8928", + "8929", + "8930", + "8932", + "8933", + "8934", + "8935", + "8936", + "8938", + "8939", + "894", + "8940", + "8941", + "8942", + "8943", + "8945", + "896", + "8968", + "8969", + "8970", + "8971", + "8972", + "8973", + "8974", + "8975", + "8976", + "89765", + "89766", + "89777", + "89778", + "89780", + "89781", + "89782", + "89790", + "89792", + "89795", + "89796", + "89797", + "898", + "89801", + "89822", + "89832", + "89839", + "89845", + "89846", + "89848", + "89849", + "8985", + "89853", + "89857", + "89858", + "8986", + "89866", + "89869", + "8987", + "89870", + "89872", + "89874", + "89876", + "8988", + "89882", + "89884", + "89885", + "89886", + "89887", + "8989", + "89890", + "89891", + "89894", + "899", + "8991", + "89910", + "8992", + "89927", + "8993", + "89932", + "8994", + "89941", + "89944", + "8995", + "89953", + "89958", + "8996", + "8997", + "89970", + "89978", + "8999", + "9", + "90", + "900", + "90007", + "9001", + "90019", + "9002", + "90025", + "90050", + "90060", + "90070", + "90075", + "901", + "90102", + "90113", + "90120", + "90121", + "9013", + "90134", + "90135", + "90139", + "9014", + "90141", + "9015", + "9016", + "90161", + "90167", + "90187", + "9019", + "90196", + "90199", + "9020", + "90203", + "90204", + "9021", + "9022", + "90226", + "9023", + "90231", + "90233", + "9024", + "90249", + "9025", + "9026", + "90268", + "9027", + "90273", + "9028", + "90288", + "90293", + "9031", + "90313", + "90316", + "90317", + "9032", + "90321", + "90324", + "90326", + "9033", + "90333", + "90338", + "9034", + "90342", + "90353", + "90355", + "90362", + "9037", + "90378", + "90379", + "9038", + "90381", + "9039", + "90390", + "904", + "9040", + "90407", + "90410", + "90411", + "90416", + "90417", + "90423", + "90427", + "9043", + "9044", + "90441", + "9045", + "90459", + "9046", + "9047", + "9048", + "90480", + "90485", + "90488", + "9049", + "905", + "9050", + "90506", + "90507", + "9051", + "9052", + "90522", + "90523", + "90525", + "90527", + "90529", + "9053", + "9054", + "9055", + "90550", + "90557", + "9056", + "9057", + "90576", + "9058", + "90580", + "90589", + "90592", + "90594", + "9060", + "9061", + "90624", + "90627", + "9063", + "90634", + "90637", + "90639", + "9064", + "90649", + "90655", + "9066", + "90665", + "90668", + "90673", + "90678", + "9068", + "9069", + "90693", + "9070", + "90701", + "9071", + "9073", + "90736", + "90737", + "9074", + "9075", + "9076", + "9077", + "90780", + "9079", + "90799", + "908", + "9080", + "90806", + "90809", + "9081", + "90826", + "90827", + "9083", + "90835", + "9084", + "90843", + "9085", + "90850", + "90853", + "9086", + "90861", + "90864", + "90865", + "9087", + "90871", + "90874", + "9088", + "909", + "9091", + "9092", + "9093", + "90933", + "9094", + "9095", + "90952", + "90956", + "90957", + "9096", + "9097", + "9098", + "90987", + "9099", + "90990", + "90993", + "91", + "910", + "9100", + "9101", + "91010", + "91012", + "91039", + "9104", + "91050", + "91056", + "91057", + "9107", + "91074", + "9108", + "911", + "9110", + "91107", + "9111", + "9112", + "91120", + "9113", + "91133", + "91137", + "9114", + "91147", + "91151", + "91156", + "9117", + "91179", + "9118", + "91181", + "9119", + "912", + "9120", + "9121", + "9122", + "91227", + "9123", + "9124", + "9125", + "91252", + "9126", + "9127", + "91272", + "9128", + "91283", + "91289", + "9129", + "91298", + "913", + "9130", + "91300", + "91304", + "9131", + "91319", + "9132", + "9133", + "9134", + "9135", + "9136", + "91368", + "91369", + "91373", + "9138", + "9139", + "91392", + "914", + "9140", + "91404", + "91408", + "91409", + "9141", + "91419", + "9143", + "91433", + "9144", + "91442", + "91445", + "9145", + "91452", + "9146", + "91461", + "91464", + "9147", + "9148", + "9149", + "915", + "9150", + "9152", + "91522", + "91523", + "91526", + "9153", + "9154", + "91543", + "91544", + "9156", + "91574", + "9158", + "91582", + "91584", + "9159", + "916", + "91603", + "91607", + "91608", + "91612", + "91614", + "9162", + "91624", + "91646", + "91647", + "91653", + "9166", + "91661", + "91662", + "91663", + "91664", + "9167", + "9168", + "91683", + "91687", + "91689", + "9169", + "91694", + "917", + "9170", + "91703", + "9172", + "9173", + "91734", + "91746", + "91748", + "91749", + "9175", + "91750", + "91752", + "91754", + "91768", + "9177", + "91775", + "91782", + "9179", + "9180", + "91801", + "91807", + "9181", + "9182", + "91828", + "9183", + "91833", + "9184", + "9185", + "91851", + "91860", + "91862", + "91869", + "9187", + "91875", + "9188", + "9189", + "91893", + "91894", + "919", + "9191", + "91937", + "9194", + "91942", + "91947", + "91949", + "9196", + "91966", + "9197", + "91975", + "91977", + "91978", + "92", + "920", + "9200", + "92002", + "9201", + "92014", + "92017", + "9202", + "9203", + "9204", + "9205", + "9208", + "92086", + "9209", + "92092", + "921", + "9210", + "92104", + "92105", + "92106", + "9211", + "9212", + "92126", + "92129", + "9213", + "9214", + "92140", + "9215", + "92154", + "92162", + "9217", + "92170", + "9218", + "92181", + "9219", + "92196", + "922", + "9221", + "92211", + "9223", + "92235", + "92241", + "92255", + "92259", + "9227", + "9228", + "92283", + "92285", + "9229", + "92291", + "92292", + "92293", + "923", + "9230", + "92304", + "92305", + "9231", + "92312", + "9232", + "92335", + "92340", + "92342", + "92344", + "92345", + "92346", + "9235", + "92359", + "9236", + "92369", + "92370", + "9238", + "92399", + "924", + "9240", + "92400", + "9241", + "9242", + "92421", + "9244", + "9245", + "9246", + "9247", + "9248", + "92482", + "92483", + "9249", + "925", + "9252", + "92521", + "9253", + "9254", + "9255", + "92552", + "92558", + "9256", + "92565", + "92579", + "9258", + "92591", + "92595", + "92597", + "926", + "9260", + "92609", + "9261", + "92610", + "9262", + "9263", + "9265", + "9266", + "92667", + "9267", + "92675", + "92689", + "92691", + "927", + "9270", + "92703", + "9271", + "92714", + "92715", + "92736", + "92737", + "9274", + "92745", + "92747", + "92749", + "9275", + "9276", + "9277", + "9278", + "92797", + "92799", + "928", + "92815", + "9282", + "92822", + "9283", + "9284", + "92840", + "92856", + "9287", + "9289", + "9290", + "92906", + "92912", + "92922", + "9293", + "92935", + "9294", + "92949", + "9295", + "9296", + "92960", + "92979", + "92999", + "93", + "930", + "93010", + "93034", + "93035", + "93058", + "9306", + "9308", + "93081", + "93082", + "93099", + "931", + "9310", + "93100", + "93107", + "93109", + "9311", + "9312", + "93129", + "9313", + "93134", + "9314", + "93145", + "9315", + "93166", + "9317", + "9318", + "93183", + "93185", + "9319", + "93190", + "932", + "9320", + "9321", + "93210", + "9322", + "93233", + "9324", + "9325", + "9326", + "93273", + "9328", + "9329", + "933", + "9330", + "9331", + "9332", + "93323", + "9333", + "9334", + "93343", + "93349", + "9337", + "93377", + "9338", + "93380", + "9340", + "93408", + "9341", + "9342", + "93426", + "9343", + "93432", + "93436", + "9344", + "93474", + "9348", + "93487", + "9349", + "9350", + "9351", + "93517", + "9352", + "9353", + "9354", + "9355", + "93550", + "9356", + "9358", + "93587", + "93589", + "93594", + "9360", + "9361", + "93611", + "9362", + "93621", + "93622", + "93624", + "93627", + "9363", + "9364", + "93643", + "93649", + "9365", + "93650", + "93659", + "93661", + "93663", + "93664", + "9367", + "9368", + "9369", + "9370", + "9371", + "9372", + "9373", + "9374", + "9375", + "9376", + "9377", + "9378", + "9379", + "9380", + "9381", + "9382", + "9388", + "9389", + "939", + "9390", + "9391", + "9392", + "9394", + "93953", + "9397", + "93973", + "93974", + "93978", + "93979", + "9398", + "93986", + "9399", + "94", + "940", + "9400", + "94005", + "9401", + "94015", + "9402", + "94025", + "94026", + "94027", + "9403", + "94030", + "94031", + "94032", + "94033", + "94039", + "9404", + "94056", + "94059", + "9406", + "9407", + "94081", + "94086", + "9409", + "94097", + "941", + "9410", + "94101", + "94103", + "94104", + "94107", + "9411", + "94115", + "9412", + "94120", + "94121", + "94122", + "9413", + "94134", + "94137", + "9414", + "9415", + "9416", + "94160", + "9419", + "942", + "9420", + "9421", + "9422", + "9423", + "94233", + "94234", + "94235", + "94239", + "9424", + "94240", + "94241", + "9425", + "9427", + "94274", + "9429", + "943", + "9435", + "9436", + "9437", + "9439", + "944", + "9440", + "9441", + "9442", + "9443", + "9444", + "9445", + "9446", + "9447", + "9448", + "945", + "9450", + "9451", + "9452", + "9453", + "9454", + "9455", + "9456", + "9457", + "9459", + "946", + "9462", + "9463", + "9464", + "9465", + "9466", + "9467", + "9468", + "9469", + "947", + "9470", + "9472", + "9473", + "9474", + "9475", + "9476", + "9477", + "9478", + "9479", + "948", + "9480", + "9481", + "9482", + "9486", + "9487", + "9488", + "9489", + "949", + "9491", + "9493", + "9495", + "9496", + "9497", + "9498", + "9499", + "95", + "950", + "9500", + "9501", + "9502", + "9506", + "9507", + "9508", + "9509", + "951", + "9510", + "9512", + "9513", + "9514", + "9515", + "9516", + "9517", + "9518", + "9519", + "952", + "9520", + "9521", + "9522", + "9524", + "9525", + "9526", + "9527", + "9528", + "9529", + "953", + "9530", + "9531", + "9532", + "9533", + "9534", + "9535", + "9536", + "9537", + "9538", + "954", + "9540", + "9541", + "9542", + "9543", + "9545", + "9546", + "9547", + "955", + "9550", + "9551", + "9552", + "9553", + "9554", + "9555", + "9556", + "9557", + "9559", + "956", + "9560", + "9562", + "9563", + "9564", + "9567", + "9568", + "95681", + "9569", + "957", + "9570", + "9572", + "9573", + "9575", + "9576", + "9577", + "9578", + "958", + "9580", + "9581", + "9582", + "9583", + "9584", + "9585", + "9586", + "9587", + "9588", + "9589", + "959", + "9590", + "9592", + "9595", + "9596", + "960", + "9600", + "9601", + "9603", + "9604", + "9605", + "9607", + "9609", + "961", + "9610", + "9611", + "9612", + "9615", + "9616", + "9617", + "9618", + "9619", + "962", + "9620", + "9622", + "9623", + "9625", + "9626", + "9627", + "9628", + "963", + "9630", + "9631", + "9632", + "9633", + "9635", + "9636", + "9637", + "9638", + "9639", + "9640", + "9641", + "9644", + "9645", + "96459", + "9646", + "9647", + "9648", + "9649", + "965", + "9650", + "9651", + "9652", + "9653", + "9654", + "9655", + "9656", + "9657", + "9658", + "9659", + "966", + "9662", + "96626", + "9663", + "9665", + "9666", + "9667", + "9668", + "9669", + "967", + "9670", + "9671", + "9672", + "9673", + "9674", + "9675", + "96764", + "9677", + "9678", + "9679", + "968", + "9681", + "9682", + "9683", + "9684", + "9685", + "9686", + "9687", + "9688", + "9689", + "969", + "9690", + "9692", + "9693", + "9694", + "9695", + "9696", + "9697", + "9698", + "9699", + "97", + "970", + "9700", + "9701", + "9702", + "9703", + "9704", + "9705", + "9706", + "9708", + "9709", + "971", + "9710", + "9711", + "9712", + "9715", + "9716", + "9717", + "9718", + "9719", + "972", + "9720", + "9721", + "9722", + "9723", + "9724", + "9725", + "9726", + "9727", + "9728", + "9729", + "973", + "9730", + "9731", + "9732", + "9733", + "9734", + "9735", + "9736", + "9737", + "9738", + "9739", + "974", + "9741", + "9742", + "9743", + "9744", + "9745", + "9746", + "9747", + "9748", + "9749", + "975", + "9750", + "9751", + "9752", + "9753", + "9754", + "9755", + "9757", + "9758", + "9759", + "976", + "9760", + "9761", + "9762", + "9764", + "9765", + "9766", + "9767", + "9768", + "977", + "9770", + "9771", + "9772", + "9774", + "9775", + "9776", + "9777", + "9778", + "9779", + "978", + "9780", + "9781", + "9782", + "9783", + "9784", + "9785", + "9786", + "9787", + "9788", + "9789", + "9790", + "9791", + "9792", + "9793", + "9794", + "9796", + "9797", + "9798", + "98", + "9801", + "9802", + "9804", + "9805", + "9806", + "9807", + "9810", + "9811", + "9812", + "9813", + "9814", + "9815", + "9816", + "9817", + "9818", + "9819", + "9821", + "9823", + "9824", + "9825", + "9826", + "9827", + "9828", + "9829", + "983", + "9830", + "9831", + "9832", + "9833", + "9836", + "9837", + "9839", + "984", + "9840", + "9841", + "9842", + "9843", + "9844", + "9846", + "9847", + "9848", + "9849", + "9851", + "9852", + "9853", + "9854", + "9855", + "9856", + "9857", + "9858", + "9859", + "9860", + "9861", + "9862", + "9863", + "9865", + "9866", + "9867", + "9868", + "9869", + "987", + "9870", + "9871", + "9873", + "9874", + "9875", + "9877", + "9878", + "9879", + "988", + "9880", + "9881", + "9882", + "9883", + "9884", + "9885", + "9886", + "9887", + "9889", + "989", + "9890", + "9891", + "9892", + "9894", + "9895", + "9896", + "9897", + "9898", + "9899", + "990", + "9900", + "9901", + "9902", + "9903", + "9904", + "9905", + "9907", + "9908", + "9909", + "991", + "9910", + "9911", + "9912", + "9913", + "9914", + "9915", + "9917", + "9918", + "9919", + "9920", + "9921", + "9922", + "9923", + "9924", + "9925", + "9926", + "9927", + "9928", + "9929", + "993", + "9931", + "9933", + "9934", + "9935", + "9936", + "9937", + "9938", + "9939", + "994", + "9940", + "9941", + "9942", + "9943", + "9945", + "9946", + "9947", + "9948", + "9949", + "995", + "9950", + "9951", + "9953", + "9955", + "9956", + "9957", + "9958", + "996", + "9960", + "9961", + "9962", + "9963", + "9965", + "9966", + "9967", + "9968", + "9969", + "997", + "9970", + "9971", + "9972", + "9973", + "9975", + "9976", + "9978", + "9980", + "9982", + "9984", + "9985", + "9986", + "9987", + "9988", + "9989", + "999", + "9990", + "9991", + "9992", + "9993", + "9994", + "9997" + ], + "negative_genes": [ + "10", + "10001", + "10002", + "10004", + "10007", + "10009", + "10011", + "100113407", + "100128731", + "100128908", + "100129583", + "100131187", + "100131801", + "100132386", + "100137047", + "10017", + "1002", + "10025", + "100271849", + "100288687", + "100289255", + "100303755", + "10036", + "10038", + "1004", + "10044", + "10045", + "10046", + "10050", + "10054", + "10055", + "1006", + "10063", + "10072", + "10073", + "10077", + "10078", + "10081", + "10089", + "10090", + "100996939", + "10103", + "10105", + "10106", + "10110", + "10114", + "10117", + "10121", + "10127", + "1013", + "10137", + "10138", + "10140", + "10143", + "10149", + "10150", + "10153", + "10154", + "10161", + "10164", + "10166", + "10169", + "10170", + "10171", + "10172", + "10175", + "10178", + "10179", + "10180", + "10181", + "10189", + "101928527", + "101929726", + "10195", + "10199", + "10200", + "10201", + "10202", + "10205", + "10209", + "10212", + "102157402", + "10220", + "10224", + "10227", + "10229", + "10236", + "1024", + "10242", + "10246", + "10247", + "10248", + "10249", + "10250", + "10251", + "10261", + "10263", + "10270", + "102723547", + "10278", + "10282", + "10284", + "10285", + "10286", + "10287", + "10291", + "10295", + "10296", + "10302", + "10314", + "10316", + "10317", + "10319", + "10322", + "10325", + "10326", + "10327", + "10329", + "10331", + "10342", + "10343", + "1036", + "10361", + "10369", + "10379", + "10380", + "10383", + "10388", + "10389", + "10390", + "10396", + "10397", + "10402", + "10404", + "10406", + "10407", + "10409", + "10410", + "10422", + "10424", + "1043", + "10434", + "10438", + "10439", + "1044", + "10443", + "10446", + "10449", + "1045", + "10450", + "1046", + "10465", + "10467", + "10468", + "1047", + "10476", + "10478", + "1048", + "10480", + "10482", + "10493", + "10495", + "10499", + "10501", + "10505", + "1051", + "10514", + "1052", + "10523", + "10528", + "10534", + "10536", + "105375355", + "10539", + "10544", + "10549", + "10556", + "10557", + "10560", + "10561", + "10566", + "10570", + "10580", + "10586", + "10589", + "10591", + "10594", + "10597", + "10598", + "10602", + "10606", + "10607", + "10629", + "10631", + "10632", + "10633", + "10642", + "10643", + "10644", + "10650", + "10654", + "10658", + "10660", + "10667", + "10668", + "10669", + "10675", + "10678", + "10686", + "10695", + "107", + "1070", + "10713", + "10714", + "10720", + "10723", + "10724", + "10732", + "10736", + "10746", + "10747", + "10749", + "10750", + "10752", + "10753", + "10765", + "10766", + "10772", + "10775", + "10776", + "10782", + "10786", + "10791", + "10795", + "10797", + "10799", + "10800", + "10811", + "1082", + "10826", + "10840", + "10858", + "10861", + "10863", + "10864", + "10865", + "10873", + "10874", + "10876", + "10878", + "1088", + "10881", + "10884", + "10885", + "10886", + "109", + "10900", + "10901", + "10902", + "10905", + "10911", + "10914", + "10915", + "10916", + "10919", + "10921", + "10922", + "10923", + "10924", + "10926", + "10930", + "10933", + "10939", + "10940", + "10941", + "10945", + "10946", + "10949", + "10950", + "10951", + "10955", + "10964", + "10965", + "109703458", + "10971", + "10974", + "10975", + "10978", + "10980", + "10982", + "10988", + "10989", + "10990", + "10993", + "10994", + "10998", + "11000", + "11007", + "11014", + "11015", + "11016", + "11018", + "11019", + "11023", + "11024", + "11030", + "11036", + "11040", + "11046", + "11047", + "11055", + "11062", + "11063", + "11066", + "11067", + "11068", + "1107", + "11070", + "11077", + "11079", + "11086", + "11092", + "11095", + "11099", + "11100", + "11102", + "11103", + "11104", + "11112", + "11120", + "11123", + "11136", + "11137", + "11157", + "11158", + "11162", + "11163", + "11164", + "11165", + "11166", + "11168", + "11177", + "1118", + "11180", + "11181", + "11182", + "11183", + "11185", + "11186", + "11189", + "11193", + "11201", + "11215", + "11216", + "11218", + "11219", + "1122", + "11222", + "11226", + "11227", + "11234", + "112399", + "11244", + "11245", + "112483", + "112487", + "112495", + "11260", + "11262", + "11266", + "11269", + "11272", + "112724", + "11273", + "112755", + "112770", + "11278", + "11279", + "1128", + "112802", + "112817", + "11283", + "1129", + "112939", + "113", + "11309", + "11313", + "11317", + "113174", + "11318", + "11319", + "1132", + "11325", + "113278", + "1133", + "11332", + "11333", + "11335", + "11340", + "11341", + "11343", + "113457", + "1135", + "113510", + "1136", + "113612", + "1137", + "1138", + "113802", + "114034", + "1141", + "114131", + "114134", + "1142", + "114294", + "1143", + "114571", + "114790", + "114805", + "114821", + "114825", + "114826", + "114876", + "114880", + "114883", + "114885", + "114902", + "114907", + "114971", + "115111", + "115209", + "115294", + "115350", + "115399", + "115416", + "115572", + "115584", + "115708", + "115752", + "115825", + "115861", + "115939", + "115948", + "115950", + "1160", + "116028", + "116085", + "116228", + "116285", + "116369", + "116443", + "116461", + "117144", + "117145", + "117155", + "117178", + "117246", + "117247", + "117248", + "117531", + "117532", + "1179", + "1184", + "118442", + "118460", + "118491", + "1185", + "1187", + "118856", + "118980", + "1192", + "119391", + "119392", + "1195", + "119504", + "1196", + "1198", + "120", + "1200", + "120071", + "120227", + "1207", + "121053", + "121457", + "121601", + "121642", + "122394733", + "122402", + "122481", + "122509", + "122553", + "122622", + "122665", + "122706", + "122876", + "122953", + "122961", + "122970", + "123041", + "123096", + "123099", + "123169", + "123228", + "123263", + "123624", + "123688", + "1238", + "123811", + "123876", + "124", + "1241", + "124220", + "124245", + "124274", + "124404", + "124512", + "124739", + "124842", + "124872", + "124976", + "125150", + "125206", + "125336", + "125476", + "1258", + "1259", + "125988", + "125997", + "126014", + "126074", + "1261", + "126119", + "126129", + "126206", + "126272", + "126306", + "126321", + "126326", + "126328", + "1264", + "126626", + "1267", + "126755", + "1268", + "1269", + "126961", + "127", + "127254", + "127435", + "127534", + "127700", + "127733", + "128061", + "128338", + "128434", + "128674", + "128822", + "128853", + "129285", + "129293", + "129450", + "1296", + "129685", + "129787", + "129807", + "129880", + "13", + "130", + "130013", + "130120", + "130367", + "130557", + "130951", + "131", + "1310", + "131405", + "131450", + "1315", + "131540", + "131601", + "131669", + "1318", + "131870", + "131965", + "132", + "132001", + "132320", + "1325", + "132660", + "1327", + "132789", + "132864", + "1329", + "133060", + "133308", + "133383", + "133686", + "1337", + "133746", + "1339", + "134145", + "134147", + "1345", + "1346", + "1350", + "135112", + "135154", + "1352", + "135293", + "135295", + "1353", + "1356", + "1357", + "1358", + "1359", + "135935", + "1360", + "136242", + "136259", + "1368", + "1369", + "137392", + "137682", + "137868", + "137872", + "137970", + "1381", + "138199", + "1382", + "1384", + "138474", + "1389", + "1390", + "139065", + "139135", + "139212", + "139322", + "139378", + "139411", + "139562", + "139741", + "140032", + "140290", + "140453", + "140564", + "1406", + "140685", + "140691", + "1407", + "140732", + "140733", + "140739", + "140766", + "140801", + "140803", + "140809", + "140838", + "140850", + "140880", + "141", + "1411", + "1412", + "1413", + "1414", + "1415", + "1417", + "1419", + "1420", + "1421", + "142678", + "142680", + "142689", + "1427", + "1428", + "142891", + "142940", + "143", + "1431", + "143282", + "143496", + "143570", + "143686", + "143689", + "143888", + "144097", + "144108", + "144132", + "144193", + "144195", + "144233", + "144363", + "144406", + "145226", + "145264", + "145407", + "145482", + "1455", + "145508", + "1456", + "145645", + "1459", + "146", + "146167", + "146183", + "146198", + "1462", + "146227", + "146664", + "146691", + "146754", + "1468", + "146802", + "146845", + "146857", + "1469", + "146956", + "1470", + "147111", + "147183", + "1472", + "147339", + "147407", + "147495", + "1476", + "147710", + "147872", + "1479", + "147906", + "148003", + "148327", + "148641", + "148789", + "148811", + "149281", + "149428", + "1495", + "149563", + "15", + "150159", + "150209", + "150275", + "150290", + "150379", + "150572", + "1506", + "1508", + "150921", + "150962", + "151126", + "151194", + "151254", + "151295", + "151354", + "151531", + "151742", + "1519", + "151987", + "152002", + "152006", + "152015", + "1521", + "1522", + "152206", + "152330", + "152404", + "152789", + "1528", + "152816", + "152926", + "153129", + "153201", + "153222", + "1534", + "153527", + "153572", + "1537", + "154007", + "154091", + "154197", + "1543", + "1544", + "154664", + "154743", + "154791", + "154807", + "154865", + "154881", + "155054", + "155066", + "1551", + "155184", + "1553", + "155435", + "1555", + "1557", + "1558", + "1559", + "1562", + "1571", + "1572", + "157285", + "1573", + "157313", + "157506", + "1576", + "157657", + "157695", + "157848", + "157855", + "1580", + "1582", + "1583", + "158376", + "158401", + "1585", + "158511", + "158584", + "1586", + "158800", + "158833", + "158880", + "1589", + "159", + "1592", + "159371", + "1595", + "159963", + "1600", + "1602", + "1603", + "160335", + "160428", + "160728", + "160760", + "161497", + "1615", + "1617", + "161725", + "1618", + "1620", + "1621", + "162417", + "162540", + "1627", + "1628", + "1629", + "162998", + "163033", + "163183", + "163255", + "1633", + "1635", + "163702", + "1638", + "164045", + "1641", + "164684", + "164781", + "1650", + "165082", + "165140", + "165631", + "165679", + "165829", + "1659", + "166012", + "166378", + "166379", + "1665", + "1666", + "166655", + "166793", + "1669", + "166979", + "167127", + "167153", + "167227", + "167359", + "167465", + "1675", + "168451", + "168507", + "168537", + "169355", + "169522", + "170572", + "170589", + "170825", + "170850", + "171546", + "171568", + "1719", + "1727", + "1730", + "1733", + "1734", + "1735", + "1738", + "1741", + "1746", + "1747", + "1750", + "1755", + "1757", + "1761", + "1767", + "1769", + "1770", + "1774", + "1775", + "1781", + "1786", + "1787", + "1791", + "1796", + "1797", + "18", + "1800", + "1807", + "1819", + "1827", + "1830", + "1833", + "1834", + "1838", + "1841", + "1842", + "1844", + "1847", + "1852", + "1874", + "1876", + "1877", + "1892", + "1901", + "1903", + "191", + "1911", + "192134", + "192286", + "192669", + "192670", + "1938", + "1943", + "1945", + "195814", + "195828", + "1959", + "196074", + "1961", + "1962", + "196385", + "1964", + "196483", + "196541", + "196743", + "197135", + "197257", + "197258", + "1973", + "197322", + "197335", + "197342", + "197370", + "1974", + "1975", + "1979", + "1982", + "1983", + "1992", + "199223", + "1993", + "1996", + "1997", + "199720", + "1998", + "1999", + "199974", + "199990", + "200010", + "200162", + "200185", + "2002", + "200205", + "200315", + "200316", + "200373", + "2004", + "200403", + "2005", + "200558", + "200728", + "200894", + "200895", + "2009", + "200909", + "201134", + "2012", + "2014", + "2015", + "201501", + "201562", + "2018", + "201973", + "2021", + "2023", + "2026", + "2028", + "203", + "2030", + "203100", + "203190", + "203245", + "203547", + "205", + "2052", + "205251", + "205327", + "2055", + "205564", + "2059", + "2063", + "207063", + "2078", + "2079", + "2091", + "2101", + "2103", + "2104", + "2108", + "2109", + "2110", + "2114", + "2115", + "2118", + "2119", + "2124", + "2125", + "2134", + "2135", + "2139", + "214", + "2140", + "2145", + "216", + "2166", + "2168", + "2169", + "2170", + "2171", + "2172", + "2173", + "218", + "2182", + "2191", + "219287", + "219333", + "219409", + "2195", + "219527", + "2196", + "219670", + "2197", + "219743", + "219855", + "219970", + "219972", + "219988", + "219990", + "220042", + "220064", + "220074", + "220136", + "220213", + "2204", + "2206", + "220963", + "220988", + "221", + "221078", + "221120", + "221143", + "221154", + "221188", + "221264", + "221393", + "221395", + "221421", + "221443", + "221481", + "221662", + "221687", + "221937", + "221955", + "222", + "222008", + "2224", + "222487", + "222537", + "222545", + "222662", + "2230", + "2232", + "225", + "2256", + "2259", + "2267", + "2274", + "2275", + "22794", + "22795", + "22797", + "22801", + "22803", + "22806", + "22818", + "22821", + "22828", + "22832", + "22849", + "22852", + "22859", + "22868", + "22870", + "22875", + "22877", + "22882", + "22883", + "22885", + "22887", + "22889", + "22893", + "22894", + "22897", + "229", + "22902", + "22913", + "22916", + "22917", + "22918", + "22921", + "22928", + "22929", + "22934", + "22936", + "22937", + "22941", + "22944", + "22949", + "22953", + "22977", + "22983", + "22992", + "23", + "230", + "2300", + "23012", + "23016", + "2302", + "23020", + "23030", + "23031", + "23034", + "23040", + "23051", + "23054", + "23057", + "2306", + "23060", + "23070", + "23072", + "23078", + "23080", + "23087", + "23093", + "23107", + "23112", + "23113", + "23125", + "23127", + "23133", + "23135", + "23138", + "23142", + "23151", + "23152", + "23154", + "23155", + "23160", + "23168", + "23169", + "23173", + "23177", + "23181", + "23185", + "23186", + "23193", + "23195", + "23200", + "23201", + "23205", + "23211", + "23215", + "23218", + "2323", + "23233", + "23234", + "23246", + "23247", + "23250", + "23259", + "2326", + "23262", + "23264", + "2327", + "23279", + "23284", + "23287", + "23288", + "23293", + "2330", + "23300", + "23304", + "23305", + "23309", + "23315", + "23316", + "23318", + "23321", + "23331", + "23336", + "23338", + "23344", + "23368", + "23373", + "23381", + "23385", + "23386", + "23398", + "23408", + "23410", + "23415", + "23416", + "23417", + "2342", + "23421", + "23424", + "23438", + "23439", + "23440", + "23452", + "2346", + "23466", + "23468", + "23475", + "23478", + "23481", + "23492", + "23507", + "23515", + "23517", + "2352", + "23523", + "23528", + "23536", + "23538", + "23539", + "2354", + "23542", + "23549", + "2355", + "23553", + "23554", + "2356", + "23562", + "23563", + "23564", + "23566", + "23569", + "2357", + "23576", + "23583", + "23589", + "2359", + "23595", + "23598", + "23600", + "23613", + "23620", + "23621", + "23626", + "23646", + "23649", + "23657", + "23658", + "23676", + "23683", + "23741", + "23743", + "23746", + "23764", + "23769", + "23780", + "239", + "2395", + "24", + "24138", + "24148", + "2444", + "245909", + "245910", + "245939", + "246269", + "246329", + "246744", + "2483", + "2491", + "2494", + "2495", + "2519", + "2524", + "2527", + "2528", + "252969", + "253012", + "253175", + "253430", + "253461", + "253512", + "253714", + "253782", + "253827", + "253943", + "254013", + "254042", + "254173", + "254225", + "254528", + "254773", + "2550", + "255027", + "2551", + "255101", + "255231", + "255239", + "2553", + "255520", + "255626", + "2557", + "2559", + "255919", + "2560", + "256130", + "256281", + "256471", + "256472", + "256764", + "2569", + "256933", + "256987", + "2570", + "2571", + "2572", + "257397", + "257629", + "25764", + "25780", + "25790", + "25794", + "25796", + "25797", + "258", + "25803", + "25804", + "25806", + "25809", + "2581", + "25814", + "25816", + "25817", + "25819", + "2582", + "25821", + "25824", + "25828", + "2583", + "2584", + "25840", + "25842", + "2585", + "25850", + "25862", + "25871", + "25873", + "25874", + "25876", + "25880", + "25888", + "25895", + "25897", + "259", + "2590", + "25902", + "25906", + "25914", + "25915", + "25917", + "25920", + "259236", + "259249", + "25926", + "259282", + "259285", + "259286", + "259287", + "259289", + "25929", + "259290", + "259292", + "259293", + "259294", + "259296", + "2593", + "25932", + "25940", + "25946", + "25949", + "25960", + "25961", + "25962", + "25979", + "25983", + "25988", + "25994", + "26", + "26011", + "26012", + "26013", + "26019", + "26022", + "26024", + "26031", + "26035", + "26038", + "260429", + "26053", + "26063", + "26073", + "26074", + "26091", + "26092", + "26097", + "26098", + "26115", + "26121", + "26122", + "26136", + "26140", + "26147", + "26149", + "26156", + "26160", + "26164", + "26168", + "2617", + "26173", + "2618", + "26190", + "26205", + "26207", + "26228", + "26232", + "26233", + "26251", + "26257", + "26266", + "26275", + "2628", + "26280", + "26284", + "26287", + "26289", + "26290", + "26292", + "26298", + "26301", + "2631", + "26330", + "26355", + "2637", + "2638", + "2639", + "2641", + "2644", + "2646", + "26476", + "265", + "26503", + "26504", + "26509", + "26512", + "26515", + "2653", + "26548", + "26574", + "26575", + "26578", + "26580", + "26609", + "26664", + "266727", + "266743", + "266977", + "2671", + "26747", + "26750", + "2676", + "2678", + "268", + "2686", + "2687", + "26873", + "269", + "26958", + "26960", + "26986", + "26995", + "2700", + "27010", + "27012", + "27019", + "27033", + "27034", + "27042", + "27043", + "27044", + "27065", + "27069", + "27071", + "27076", + "27079", + "27085", + "27089", + "2709", + "27094", + "27097", + "27102", + "27111", + "27113", + "27115", + "27120", + "27122", + "27125", + "27130", + "27132", + "27151", + "27154", + "27158", + "27165", + "27166", + "27173", + "27181", + "27189", + "27190", + "27199", + "27201", + "27231", + "27233", + "27240", + "27244", + "27247", + "27249", + "27255", + "27257", + "27258", + "27283", + "27284", + "27287", + "27292", + "27297", + "2730", + "27303", + "27304", + "27306", + "2731", + "27324", + "27327", + "27330", + "27335", + "27336", + "27340", + "27343", + "27349", + "27350", + "2739", + "2742", + "27430", + "27434", + "27445", + "2745", + "2747", + "275", + "276", + "2762", + "2764", + "2765", + "277", + "2774", + "2775", + "278", + "2780", + "2781", + "2790", + "2791", + "2794", + "2796", + "2797", + "2798", + "2805", + "2806", + "2817", + "2820", + "28227", + "2823", + "282809", + "2830", + "283150", + "2832", + "283229", + "283310", + "283383", + "2834", + "283417", + "283459", + "283464", + "2835", + "283537", + "283652", + "283677", + "2837", + "283742", + "283847", + "283869", + "283899", + "283987", + "283989", + "2840", + "284106", + "284110", + "284129", + "284161", + "284184", + "284217", + "284293", + "284325", + "284486", + "284541", + "284656", + "284695", + "2847", + "284716", + "2849", + "2850", + "285025", + "285193", + "285195", + "285237", + "285242", + "285331", + "285367", + "2854", + "285498", + "285600", + "285605", + "286077", + "286151", + "286204", + "286205", + "286257", + "286262", + "286410", + "286464", + "286527", + "2866", + "286676", + "286827", + "2872", + "2873", + "2874", + "2880", + "2882", + "2890", + "2891", + "2893", + "28951", + "28957", + "28959", + "28965", + "28969", + "2897", + "28978", + "28981", + "28983", + "28986", + "28987", + "2899", + "28992", + "2900", + "29015", + "29028", + "29035", + "2904", + "2905", + "29063", + "29066", + "29070", + "29074", + "29078", + "29079", + "29095", + "29097", + "29101", + "29102", + "29104", + "29107", + "2911", + "29114", + "29117", + "29119", + "2912", + "29121", + "29122", + "29124", + "2913", + "2917", + "2918", + "292", + "2922", + "2926", + "2928", + "2936", + "2938", + "2941", + "2944", + "2948", + "2949", + "2954", + "2957", + "2958", + "2960", + "2963", + "2967", + "2968", + "2971", + "2972", + "2975", + "2976", + "29767", + "2977", + "29777", + "2978", + "29785", + "29789", + "29800", + "2983", + "29841", + "29842", + "29843", + "29844", + "29855", + "2987", + "29880", + "29890", + "29894", + "29896", + "29906", + "29919", + "2992", + "29929", + "29935", + "29941", + "29946", + "29947", + "29948", + "2995", + "29953", + "29956", + "29958", + "29959", + "29960", + "29965", + "2997", + "29974", + "2998", + "29985", + "29986", + "29988", + "29989", + "29991", + "29992", + "29994", + "29995", + "30", + "30000", + "30014", + "3002", + "3004", + "30062", + "3012", + "3014", + "3029", + "3034", + "3045", + "3046", + "3050", + "3061", + "3062", + "3067", + "3068", + "3073", + "308", + "30811", + "30812", + "30815", + "30816", + "30818", + "30819", + "30820", + "30827", + "3083", + "30833", + "30834", + "30836", + "309", + "3090", + "3094", + "31", + "3101", + "313", + "3131", + "314", + "3142", + "3149", + "3150", + "3151", + "3155", + "3156", + "3157", + "3158", + "316", + "3163", + "317", + "3171", + "3174", + "3177", + "317719", + "318", + "3181", + "3182", + "3183", + "3184", + "3185", + "3189", + "319", + "3191", + "3196", + "320", + "3201", + "3205", + "3206", + "3208", + "321", + "3212", + "3213", + "3214", + "3215", + "3217", + "3221", + "3226", + "3227", + "3229", + "323", + "3232", + "3233", + "3234", + "3235", + "3236", + "3240", + "3242", + "3267", + "3270", + "3274", + "3280", + "3283", + "3284", + "3290", + "3291", + "3292", + "3293", + "3295", + "3298", + "3299", + "332", + "333932", + "3340", + "3347", + "3350", + "3351", + "3352", + "3354", + "3355", + "3359", + "3360", + "3361", + "3362", + "3363", + "3376", + "337876", + "338323", + "338339", + "338398", + "338440", + "338442", + "338557", + "338599", + "338773", + "339", + "339175", + "339221", + "339345", + "339416", + "339453", + "339487", + "339761", + "339983", + "3400", + "340075", + "340146", + "340273", + "340481", + "340602", + "340654", + "340706", + "340719", + "340990", + "3419", + "3420", + "3421", + "342372", + "342618", + "342897", + "342977", + "343", + "343450", + "343641", + "3437", + "344018", + "3441", + "344167", + "3444", + "344905", + "3451", + "345274", + "345275", + "345778", + "345895", + "346", + "346007", + "346288", + "346389", + "3467", + "347148", + "347273", + "347411", + "3475", + "347731", + "347734", + "347853", + "348093", + "348158", + "348180", + "348262", + "3484", + "3487", + "3488", + "348932", + "3490", + "349565", + "35", + "352909", + "353", + "353116", + "353134", + "353142", + "353143", + "353144", + "353164", + "353174", + "353189", + "353238", + "353274", + "353497", + "3547", + "3550", + "357", + "3578", + "3597", + "36", + "3607", + "3608", + "3613", + "3614", + "3617", + "3622", + "3628", + "363", + "3632", + "364", + "3641", + "3658", + "366", + "3660", + "3669", + "3671", + "3672", + "3674", + "3680", + "3681", + "3692", + "3694", + "3704", + "3709", + "3710", + "3712", + "3713", + "3726", + "3727", + "373", + "3730", + "3736", + "3738", + "373863", + "3739", + "3742", + "374291", + "374378", + "374393", + "3744", + "374407", + "374462", + "374569", + "3749", + "374907", + "3751", + "3752", + "375298", + "375346", + "375387", + "3754", + "3755", + "375519", + "375611", + "3761", + "3769", + "377", + "3772", + "3775", + "3777", + "3779", + "3780", + "3785", + "3786", + "3787", + "378948", + "3790", + "3792", + "3795", + "3798", + "38", + "3804", + "381", + "3811", + "3814", + "3816", + "3820", + "3839", + "384", + "3846", + "3853", + "3854", + "3866", + "387119", + "387129", + "387338", + "387521", + "387680", + "387700", + "387715", + "387733", + "387755", + "387787", + "387836", + "3881", + "388112", + "388121", + "3882", + "388364", + "3884", + "3885", + "388531", + "388551", + "388585", + "388591", + "388697", + "388931", + "388939", + "388962", + "389015", + "3891", + "389203", + "389207", + "389493", + "389549", + "389816", + "389903", + "390195", + "3906", + "390637", + "390664", + "390916", + "3910", + "3912", + "3913", + "3921", + "3933", + "3934", + "3938", + "3950", + "3957", + "3960", + "3972", + "3973", + "3975", + "398", + "3980", + "3982", + "3991", + "3993", + "399818", + "40", + "4005", + "400569", + "400629", + "400668", + "4007", + "4008", + "400830", + "4009", + "400961", + "401", + "401138", + "401466", + "401474", + "401494", + "4016", + "401720", + "4018", + "402381", + "4025", + "402569", + "402573", + "4034", + "404281", + "4045", + "4048", + "4049", + "4050", + "4051", + "405754", + "4059", + "406", + "4060", + "4061", + "4062", + "4065", + "4066", + "4069", + "407", + "4084", + "4099", + "4102", + "4103", + "4105", + "4116", + "4126", + "4129", + "4139", + "414062", + "4142", + "4145", + "4146", + "414899", + "4151", + "415116", + "4152", + "4154", + "4159", + "4160", + "4161", + "4185", + "4200", + "4201", + "4209", + "4223", + "4224", + "4232", + "4234", + "4236", + "4248", + "4258", + "4259", + "4288", + "430", + "4302", + "4306", + "431704", + "431705", + "4325", + "4326", + "4329", + "433", + "4331", + "4335", + "4336", + "4337", + "4338", + "434", + "4343", + "435", + "4350", + "4354", + "4357", + "438", + "43849", + "440093", + "440145", + "440574", + "440699", + "440957", + "441024", + "441282", + "441531", + "442038", + "442117", + "442862", + "442867", + "442868", + "4438", + "4439", + "4440", + "445329", + "4482", + "4495", + "4501", + "4502", + "4508", + "4509", + "4514", + "4515", + "4520", + "4521", + "4528", + "4535", + "4536", + "4537", + "4538", + "4540", + "4541", + "4543", + "4580", + "4585", + "4597", + "4599", + "4603", + "4605", + "4608", + "4617", + "4620", + "4622", + "4636", + "4648", + "4656", + "466", + "4660", + "4670", + "4673", + "4676", + "4678", + "4682", + "4685", + "4694", + "4695", + "4696", + "4698", + "47", + "4702", + "4704", + "4705", + "4706", + "4707", + "4708", + "4709", + "471", + "4710", + "4711", + "4712", + "4713", + "4714", + "4715", + "4717", + "4718", + "4720", + "4723", + "4724", + "4725", + "4726", + "4728", + "4729", + "4731", + "4736", + "474", + "4741", + "474381", + "474382", + "475", + "4753", + "4756", + "4759", + "4761", + "4772", + "4775", + "4776", + "4779", + "4781", + "4782", + "4783", + "4793", + "4798", + "48", + "480", + "4800", + "4801", + "4807", + "4809", + "4810", + "4811", + "4815", + "4818", + "4820", + "4821", + "4825", + "4826", + "4828", + "4831", + "4833", + "4837", + "4839", + "4857", + "4861", + "4862", + "4863", + "4883", + "4884", + "4886", + "4887", + "4889", + "4899", + "490", + "4900", + "4901", + "4904", + "4907", + "491", + "492", + "4923", + "493753", + "493869", + "494143", + "4942", + "494513", + "494551", + "4947", + "495", + "4957", + "4973", + "4975", + "497661", + "49854", + "49855", + "4990", + "4991", + "4999", + "50", + "5001", + "5013", + "5016", + "5019", + "5020", + "5023", + "5026", + "5029", + "5030", + "5036", + "503614", + "503841", + "50489", + "5050", + "50507", + "5053", + "50614", + "50617", + "50636", + "50651", + "5066", + "5069", + "50700", + "50717", + "5079", + "50813", + "50831", + "50832", + "50834", + "50836", + "50837", + "50839", + "50840", + "50859", + "50861", + "50863", + "50865", + "5089", + "509", + "5090", + "5092", + "50939", + "50944", + "5097", + "5100", + "51000", + "51001", + "51005", + "51010", + "51013", + "51022", + "5104", + "51043", + "51046", + "51057", + "51060", + "51063", + "51065", + "51066", + "51067", + "51070", + "51071", + "51075", + "51077", + "51078", + "51081", + "51086", + "51087", + "51091", + "51092", + "51096", + "51102", + "51103", + "51104", + "51106", + "51107", + "51109", + "51117", + "51118", + "51138", + "51142", + "51144", + "51146", + "51148", + "51156", + "51166", + "51167", + "51168", + "51170", + "51171", + "51175", + "51179", + "5118", + "51181", + "51195", + "51199", + "51204", + "51207", + "5121", + "51218", + "5122", + "51222", + "51224", + "51228", + "51231", + "51241", + "51247", + "51248", + "51251", + "5126", + "51265", + "51266", + "51267", + "51268", + "51274", + "5128", + "51290", + "51292", + "51294", + "51297", + "51298", + "51300", + "51301", + "51302", + "51310", + "51314", + "5132", + "51335", + "5134", + "51340", + "51348", + "51363", + "51364", + "51367", + "5137", + "51385", + "51390", + "51400", + "51406", + "5141", + "51440", + "51444", + "5145", + "51455", + "51458", + "5146", + "51460", + "51475", + "51477", + "51478", + "5148", + "51481", + "5149", + "51493", + "51495", + "51497", + "515", + "5150", + "51503", + "51504", + "51507", + "51513", + "5152", + "51523", + "51524", + "51531", + "51540", + "51550", + "51585", + "51593", + "51601", + "51602", + "51603", + "51605", + "5161", + "51616", + "5162", + "51621", + "51629", + "5163", + "51634", + "51639", + "5164", + "51643", + "51649", + "51655", + "51660", + "51663", + "51665", + "51669", + "51673", + "51686", + "5169", + "51690", + "51691", + "51693", + "51696", + "51700", + "51703", + "51704", + "51706", + "51714", + "51726", + "51727", + "51728", + "5173", + "51734", + "51747", + "51754", + "51759", + "51761", + "5179", + "518", + "51804", + "51805", + "51806", + "51807", + "51808", + "51809", + "5187", + "5188", + "5198", + "5199", + "5207", + "5208", + "521", + "5211", + "5218", + "522", + "5223", + "5226", + "5228", + "5229", + "5232", + "5243", + "525", + "5250", + "5252", + "5253", + "5264", + "5266", + "5274", + "5275", + "528", + "5304", + "5306", + "5313", + "5316", + "53340", + "53343", + "53345", + "53354", + "53371", + "53405", + "5346", + "5348", + "5349", + "5355", + "5356", + "5357", + "5358", + "5360", + "53615", + "53616", + "53630", + "53632", + "5368", + "5372", + "539", + "53916", + "53919", + "53938", + "5394", + "53981", + "54020", + "54033", + "5409", + "54103", + "54107", + "54108", + "5411", + "54112", + "5414", + "54145", + "54165", + "54205", + "54210", + "54212", + "54221", + "5423", + "5425", + "5427", + "5431", + "5432", + "54328", + "54329", + "5433", + "5434", + "54345", + "5435", + "5436", + "54360", + "54363", + "5437", + "5438", + "5439", + "5440", + "54407", + "5441", + "54414", + "5442", + "54429", + "54456", + "54464", + "54468", + "54474", + "54480", + "54490", + "54491", + "54498", + "54505", + "5451", + "54511", + "54512", + "54514", + "5452", + "5453", + "5454", + "54541", + "54555", + "54556", + "54575", + "54576", + "54577", + "54578", + "54584", + "5459", + "5460", + "54600", + "54623", + "5463", + "54657", + "54663", + "5467", + "54677", + "54681", + "54704", + "54714", + "5473", + "54739", + "5475", + "54756", + "54760", + "54766", + "54768", + "54778", + "54780", + "54796", + "54799", + "5480", + "54802", + "54805", + "54806", + "54814", + "54815", + "54822", + "54828", + "54834", + "54840", + "54851", + "54855", + "54861", + "54862", + "54875", + "54878", + "54883", + "54885", + "54890", + "54891", + "54896", + "54898", + "549", + "54904", + "54905", + "54913", + "54915", + "54916", + "54919", + "54920", + "54931", + "54935", + "54936", + "54938", + "54946", + "54955", + "5496", + "54960", + "54962", + "54963", + "54964", + "54967", + "54969", + "54970", + "54973", + "54976", + "54977", + "54978", + "54981", + "5499", + "54995", + "54996", + "54998", + "55003", + "55006", + "5501", + "55010", + "55035", + "55037", + "5504", + "55055", + "55065", + "55074", + "55081", + "55086", + "55094", + "5510", + "55101", + "55106", + "5511", + "55110", + "55117", + "55124", + "55127", + "55129", + "55140", + "55145", + "55147", + "55149", + "55151", + "55157", + "55161", + "55163", + "55170", + "55172", + "55174", + "55177", + "55178", + "55180", + "55181", + "55186", + "55191", + "55197", + "5520", + "55208", + "5521", + "55214", + "55217", + "55218", + "55219", + "55233", + "55234", + "55238", + "55239", + "55245", + "55246", + "55247", + "55248", + "55250", + "55252", + "55256", + "55257", + "55262", + "55272", + "55277", + "55278", + "55280", + "55283", + "55290", + "552900", + "55291", + "55301", + "55304", + "5531", + "55312", + "55319", + "55323", + "55327", + "55328", + "55329", + "5533", + "55332", + "55334", + "5534", + "55341", + "55345", + "55347", + "55349", + "55352", + "5536", + "5540", + "55421", + "55454", + "55471", + "5549", + "55501", + "55502", + "55509", + "55512", + "5552", + "55526", + "55534", + "55536", + "55540", + "55544", + "55556", + "55561", + "55568", + "55572", + "55584", + "55586", + "55596", + "55599", + "55602", + "55611", + "55619", + "55623", + "55628", + "55629", + "55635", + "5564", + "55640", + "5565", + "55656", + "55657", + "55676", + "55679", + "5568", + "55695", + "55698", + "55711", + "55714", + "55723", + "55726", + "55734", + "55735", + "55742", + "55744", + "55749", + "55753", + "55759", + "55771", + "55779", + "55783", + "55787", + "55794", + "55795", + "55796", + "55798", + "55802", + "55808", + "55811", + "55813", + "55814", + "55816", + "55824", + "55825", + "55827", + "55832", + "55837", + "55840", + "55841", + "55846", + "55847", + "5585", + "55857", + "55867", + "55871", + "55879", + "55891", + "55893", + "55897", + "55898", + "55902", + "55909", + "55915", + "55922", + "55954", + "5596", + "55967", + "5597", + "55970", + "55974", + "55975", + "55997", + "56000", + "5607", + "5612", + "56134", + "56154", + "56155", + "56159", + "56171", + "5623", + "5625", + "5627", + "563", + "56300", + "56301", + "5634", + "5635", + "5636", + "5646", + "56474", + "56475", + "56479", + "5649", + "56521", + "56548", + "56606", + "56655", + "56667", + "56670", + "5669", + "56704", + "5671", + "5672", + "56729", + "5673", + "56731", + "5676", + "5680", + "56829", + "5684", + "56853", + "56882", + "5689", + "56897", + "56898", + "56902", + "56910", + "56914", + "56924", + "56928", + "5693", + "56931", + "56938", + "56941", + "56943", + "56949", + "56950", + "56952", + "56953", + "56954", + "56955", + "56963", + "56965", + "56970", + "56978", + "56979", + "56980", + "56981", + "56986", + "56990", + "56999", + "570", + "5700", + "57002", + "57016", + "57017", + "57018", + "57030", + "57035", + "5704", + "57050", + "57053", + "57054", + "57055", + "57060", + "57089", + "57094", + "57095", + "57097", + "57099", + "571", + "57101", + "57107", + "57109", + "5711", + "57113", + "57117", + "57127", + "57128", + "57134", + "57135", + "57140", + "57143", + "57144", + "57146", + "5715", + "57156", + "57158", + "57176", + "57181", + "57198", + "57205", + "57215", + "57216", + "57223", + "57226", + "5724", + "5726", + "57282", + "5730", + "5731", + "5732", + "57326", + "5733", + "57332", + "57338", + "57348", + "57380", + "5739", + "57396", + "57406", + "57409", + "57412", + "57419", + "5742", + "5743", + "5744", + "57452", + "57453", + "574537", + "5746", + "57461", + "57462", + "57466", + "57473", + "57477", + "57478", + "57486", + "57494", + "57496", + "57504", + "57505", + "57508", + "57540", + "57558", + "57559", + "57562", + "5757", + "57570", + "57571", + "57582", + "57593", + "576", + "57604", + "57609", + "57616", + "57620", + "57621", + "5763", + "57634", + "57649", + "57654", + "57657", + "57658", + "57659", + "57670", + "57691", + "57695", + "57698", + "577", + "57703", + "57704", + "57708", + "57709", + "57713", + "57716", + "57719", + "57721", + "57731", + "5775", + "5778", + "57786", + "57798", + "57804", + "57817", + "57819", + "57826", + "57835", + "57862", + "57863", + "5787", + "579", + "5790", + "5791", + "5794", + "5799", + "5803", + "58155", + "58157", + "58190", + "58191", + "5822", + "58472", + "58478", + "58488", + "58489", + "58490", + "58503", + "58505", + "58510", + "58513", + "58515", + "58516", + "58517", + "58528", + "5858", + "586", + "587", + "5875", + "5876", + "5884", + "5891", + "5893", + "5902", + "5910", + "5917", + "5926", + "59269", + "5928", + "5929", + "593", + "5933", + "59336", + "5934", + "59348", + "5935", + "5937", + "5939", + "594", + "5940", + "5948", + "5949", + "5957", + "5973", + "5989", + "599", + "5991", + "5992", + "5995", + "6002", + "6003", + "6005", + "6006", + "6007", + "6015", + "6035", + "6037", + "6038", + "6039", + "60436", + "60481", + "60489", + "60490", + "60491", + "60493", + "60495", + "60496", + "60509", + "6051", + "60528", + "60560", + "60625", + "606495", + "60676", + "60677", + "60680", + "607", + "608", + "6094", + "6096", + "6098", + "6100", + "6101", + "6120", + "6122", + "6124", + "6128", + "6129", + "6130", + "613210", + "6136", + "6137", + "6139", + "6142", + "6143", + "6144", + "6146", + "6147", + "6150", + "6152", + "6156", + "6157", + "6158", + "6159", + "6161", + "6164", + "6167", + "6168", + "6169", + "617", + "6170", + "6171", + "6173", + "6175", + "6176", + "6182", + "6184", + "6185", + "6189", + "6191", + "6192", + "6193", + "619373", + "6194", + "6196", + "6199", + "6202", + "6203", + "6205", + "6207", + "6217", + "6222", + "6227", + "623", + "6230", + "6233", + "6238", + "6242", + "6252", + "6253", + "6257", + "6275", + "6277", + "6282", + "6285", + "6286", + "6294", + "6297", + "6300", + "6302", + "6305", + "631", + "6319", + "632", + "6320", + "6332", + "6341", + "6344", + "635", + "6358", + "63826", + "63892", + "63899", + "639", + "63901", + "63904", + "63908", + "63910", + "63917", + "63929", + "63931", + "63933", + "63935", + "63941", + "63970", + "6398", + "63982", + "6405", + "64061", + "64063", + "6407", + "64077", + "64078", + "64080", + "64098", + "64118", + "64122", + "64123", + "641371", + "641372", + "6414", + "64146", + "64172", + "64174", + "6419", + "64207", + "64208", + "64210", + "64216", + "64221", + "6423", + "642597", + "6426", + "642658", + "6428", + "64284", + "6429", + "6430", + "6431", + "6432", + "643226", + "6434", + "643414", + "64342", + "64359", + "64374", + "64376", + "64377", + "64388", + "64398", + "64399", + "64403", + "64407", + "644096", + "64412", + "6442", + "64423", + "64425", + "64426", + "64428", + "64429", + "6443", + "64432", + "64446", + "6445", + "645", + "64506", + "645104", + "64518", + "64577", + "646", + "6461", + "6468", + "646817", + "646960", + "64699", + "64708", + "647087", + "64711", + "6474", + "64757", + "64761", + "64764", + "64768", + "64769", + "64770", + "64781", + "64782", + "64783", + "64784", + "64788", + "64789", + "64794", + "64802", + "64816", + "64843", + "64849", + "64852", + "64854", + "64863", + "6489", + "64902", + "64921", + "64922", + "64975", + "64976", + "65080", + "65083", + "651", + "65110", + "6514", + "6517", + "6522", + "6525", + "6526", + "65260", + "65263", + "65264", + "652968", + "6530", + "653121", + "6534", + "653499", + "653509", + "653519", + "653604", + "6542", + "6543", + "654483", + "6547", + "6549", + "6553", + "6554", + "656", + "6563", + "6568", + "6569", + "6574", + "6575", + "6579", + "6594", + "6596", + "65985", + "65990", + "65991", + "65993", + "66002", + "66005", + "66035", + "66036", + "66037", + "6607", + "6610", + "6614", + "6615", + "6618", + "6619", + "6620", + "6621", + "6626", + "6627", + "6629", + "6631", + "6632", + "6633", + "6634", + "6635", + "6636", + "6637", + "6641", + "6650", + "666", + "6665", + "6668", + "6670", + "6671", + "6674", + "6677", + "6687", + "669", + "6691", + "6694", + "6697", + "6698", + "6699", + "670", + "6700", + "6704", + "6709", + "6712", + "6713", + "6715", + "6716", + "6723", + "6733", + "6750", + "6753", + "6754", + "6756", + "676", + "6760", + "6779", + "6780", + "6783", + "6787", + "6799", + "680", + "6801", + "6818", + "6819", + "6822", + "6827", + "6830", + "6834", + "6846", + "6854", + "6855", + "6856", + "6861", + "6862", + "6863", + "6874", + "6875", + "6876", + "6877", + "6878", + "688", + "6881", + "6883", + "6884", + "6888", + "6894", + "6906", + "6911", + "6915", + "6917", + "6921", + "6923", + "6924", + "6936", + "6939", + "6940", + "6943", + "6944", + "6947", + "6996", + "7001", + "7003", + "7004", + "7007", + "7019", + "7022", + "7024", + "7029", + "7031", + "7062", + "7071", + "7072", + "7073", + "7075", + "7077", + "7088", + "7089", + "7090", + "7093", + "7101", + "7102", + "7106", + "7108", + "7109", + "7112", + "7123", + "7143", + "7159", + "7161", + "7167", + "7171", + "7172", + "7178", + "7179", + "7181", + "7182", + "7200", + "7205", + "7216", + "7220", + "7222", + "7223", + "7224", + "7225", + "7247", + "7257", + "7258", + "7262", + "7263", + "7268", + "7272", + "7277", + "727936", + "727940", + "7280", + "728224", + "7284", + "728492", + "728568", + "728642", + "728712", + "7288", + "729", + "7293", + "729359", + "729438", + "729515", + "729830", + "730", + "7306", + "7307", + "7311", + "7318", + "7342", + "7347", + "7348", + "7350", + "7351", + "7356", + "7357", + "7360", + "7363", + "7364", + "7365", + "7366", + "7367", + "7368", + "7371", + "7378", + "7379", + "7380", + "7381", + "7384", + "7385", + "7386", + "7388", + "7403", + "7407", + "7417", + "7419", + "7433", + "7434", + "746", + "7464", + "747", + "7475", + "7478", + "7479", + "7483", + "7504", + "751071", + "7511", + "7515", + "752014", + "7536", + "7541", + "7543", + "7552", + "7559", + "7572", + "7584", + "7589", + "7593", + "762", + "7625", + "7629", + "763", + "7644", + "765", + "767", + "768206", + "7692", + "7695", + "7699", + "7700", + "7701", + "7702", + "7705", + "7709", + "771", + "7727", + "7728", + "7732", + "7750", + "7753", + "7755", + "7764", + "7767", + "777", + "7779", + "7783", + "7789", + "7799", + "7802", + "7809", + "7818", + "7832", + "784", + "785", + "7850", + "7866", + "7884", + "78987", + "78990", + "78995", + "78996", + "790", + "79000", + "79002", + "79017", + "79023", + "79026", + "79027", + "79029", + "7903", + "79042", + "79048", + "79054", + "79064", + "79066", + "79068", + "79070", + "79071", + "79072", + "79077", + "79083", + "79085", + "79091", + "79095", + "790955", + "79096", + "79133", + "79135", + "7915", + "79152", + "79153", + "79154", + "79178", + "7919", + "79192", + "7920", + "793", + "7932", + "7936", + "79364", + "79365", + "79366", + "79369", + "79370", + "79400", + "79413", + "79447", + "79465", + "79572", + "79574", + "79581", + "79582", + "79586", + "79587", + "79595", + "79603", + "79605", + "79609", + "79611", + "79612", + "79623", + "79624", + "79641", + "79646", + "79648", + "7965", + "79656", + "79661", + "79664", + "79668", + "79669", + "79670", + "79672", + "79675", + "79680", + "79683", + "79690", + "79691", + "79695", + "797", + "79706", + "79707", + "79717", + "79723", + "79725", + "79726", + "79727", + "79731", + "79736", + "79739", + "79746", + "7975", + "79751", + "7976", + "79760", + "79762", + "79763", + "79776", + "7979", + "79794", + "79797", + "79799", + "79800", + "79814", + "79816", + "79817", + "79828", + "79831", + "79833", + "79839", + "79844", + "79846", + "79849", + "79852", + "79853", + "79858", + "79865", + "79868", + "79872", + "79873", + "79877", + "79879", + "79882", + "79885", + "79886", + "79897", + "79903", + "7991", + "79922", + "79923", + "79925", + "79934", + "79960", + "79966", + "79968", + "79969", + "79993", + "80004", + "80010", + "80014", + "80114", + "80124", + "80129", + "80142", + "80145", + "80146", + "80150", + "80155", + "80162", + "80173", + "8019", + "80198", + "80201", + "80210", + "80213", + "80217", + "80221", + "80222", + "80224", + "80237", + "80270", + "80303", + "80308", + "80312", + "80319", + "80320", + "80323", + "80328", + "80329", + "80335", + "8034", + "80347", + "8050", + "80704", + "80705", + "80709", + "80712", + "80714", + "80724", + "80726", + "80727", + "80739", + "80746", + "80758", + "80763", + "80764", + "80777", + "80789", + "80817", + "8082", + "80820", + "80832", + "80833", + "80835", + "80854", + "8089", + "80896", + "80975", + "8099", + "81027", + "81029", + "81030", + "81034", + "8106", + "8111", + "8115", + "8125", + "8128", + "8139", + "81567", + "81602", + "81605", + "81606", + "81615", + "81616", + "81623", + "81624", + "8165", + "81669", + "81689", + "8170", + "8175", + "8178", + "81786", + "81833", + "81846", + "81848", + "81853", + "8187", + "81890", + "8192", + "8193", + "81931", + "8195", + "8208", + "8224", + "8227", + "8228", + "8233", + "8237", + "826", + "8277", + "8284", + "8287", + "8290", + "8292", + "8293", + "830", + "8303", + "8309", + "8315", + "8325", + "8326", + "8328", + "8334", + "8335", + "8339", + "83401", + "8343", + "8344", + "83440", + "83442", + "83443", + "83444", + "83448", + "83449", + "8346", + "83464", + "8347", + "83478", + "83482", + "8349", + "835", + "83539", + "83541", + "83544", + "83549", + "83552", + "83594", + "83595", + "83640", + "83642", + "83643", + "83690", + "83697", + "83716", + "83719", + "83723", + "83732", + "83733", + "83740", + "83756", + "83795", + "8382", + "83853", + "83854", + "83857", + "8386", + "83873", + "83875", + "8388", + "83884", + "83893", + "83894", + "83938", + "83939", + "83942", + "83982", + "83983", + "83999", + "84002", + "8403", + "84056", + "84062", + "84065", + "84069", + "8407", + "84071", + "84074", + "84081", + "84102", + "84105", + "84108", + "84109", + "84128", + "84129", + "84132", + "84135", + "84138", + "84140", + "84146", + "84148", + "84154", + "8416", + "84173", + "84181", + "84187", + "8419", + "84191", + "84197", + "84216", + "84225", + "84232", + "84233", + "84239", + "8424", + "84245", + "84248", + "84255", + "84256", + "84259", + "84262", + "84265", + "84266", + "84267", + "8427", + "84271", + "84273", + "84274", + "84275", + "84287", + "84289", + "84292", + "84293", + "84300", + "84303", + "84309", + "84316", + "84321", + "84324", + "84327", + "8433", + "84333", + "84334", + "8434", + "84343", + "8439", + "84441", + "8446", + "8449", + "84502", + "84504", + "84513", + "84525", + "84528", + "84529", + "84530", + "84532", + "84541", + "84548", + "8456", + "8458", + "84617", + "84618", + "84620", + "8463", + "84634", + "8464", + "84656", + "84658", + "84659", + "84662", + "84669", + "8467", + "84678", + "84687", + "84693", + "84695", + "84699", + "84700", + "84705", + "84707", + "84717", + "84733", + "84735", + "84750", + "84759", + "84766", + "84769", + "84779", + "84787", + "8479", + "84795", + "84808", + "84811", + "84816", + "84836", + "84839", + "8484", + "84844", + "84858", + "84859", + "84867", + "84872", + "84873", + "84881", + "84883", + "84890", + "84892", + "84893", + "84897", + "84899", + "84902", + "84904", + "84909", + "8491", + "84912", + "84916", + "8492", + "84925", + "84939", + "84950", + "84951", + "84957", + "8496", + "84969", + "84991", + "85004", + "85007", + "85015", + "85016", + "85019", + "85021", + "8505", + "8509", + "8515", + "8519", + "8521", + "85236", + "8528", + "85289", + "85290", + "8530", + "85300", + "8532", + "85320", + "85329", + "8533", + "8534", + "8535", + "85365", + "8538", + "8539", + "8540", + "85403", + "85414", + "85437", + "8544", + "85441", + "8545", + "85451", + "85452", + "85458", + "85476", + "8556", + "8559", + "8563", + "8564", + "8569", + "8574", + "8575", + "86", + "8608", + "8612", + "8614", + "862", + "8620", + "8622", + "8624", + "8630", + "8632", + "8633", + "8635", + "8639", + "8645", + "8648", + "8649", + "8653", + "8655", + "866", + "86614", + "8668", + "8669", + "8672", + "8683", + "8685", + "869", + "8690", + "8693", + "8702", + "8703", + "8705", + "8706", + "8707", + "8708", + "8714", + "8718", + "8727", + "873", + "8731", + "8732", + "8735", + "874", + "8745", + "8747", + "8748", + "8763", + "8771", + "87769", + "8777", + "8786", + "8787", + "8789", + "8790", + "8793", + "8802", + "8803", + "8804", + "8805", + "8811", + "8814", + "8822", + "8825", + "883", + "8833", + "8834", + "8839", + "8842", + "8846", + "8848", + "885", + "8852", + "8856", + "8858", + "886", + "8861", + "8863", + "8864", + "8869", + "887", + "8870", + "8872", + "88745", + "8875", + "8876", + "8879", + "8880", + "8894", + "8899", + "8908", + "8909", + "89122", + "8914", + "8927", + "8932", + "8935", + "8939", + "8970", + "8972", + "8973", + "89765", + "898", + "89822", + "89845", + "89869", + "89874", + "89876", + "89885", + "8991", + "89910", + "8992", + "89978", + "8999", + "9", + "9001", + "90060", + "90120", + "9013", + "9014", + "9015", + "9016", + "90167", + "9020", + "9022", + "90226", + "9023", + "9027", + "9028", + "90313", + "9032", + "90326", + "9037", + "9038", + "90381", + "9039", + "90390", + "9040", + "90411", + "9045", + "9046", + "9047", + "9048", + "9052", + "90522", + "90527", + "90529", + "9054", + "9057", + "9058", + "9060", + "9061", + "90624", + "9063", + "90639", + "9064", + "90665", + "9070", + "90701", + "9075", + "9080", + "90806", + "9081", + "90826", + "9083", + "9084", + "9085", + "90871", + "9093", + "9095", + "90956", + "91012", + "91057", + "911", + "91107", + "9114", + "9123", + "9124", + "91252", + "9127", + "9128", + "9129", + "91298", + "9130", + "9132", + "9136", + "91419", + "91442", + "9153", + "91582", + "9159", + "91607", + "91624", + "91689", + "9169", + "91734", + "91746", + "9177", + "91860", + "91869", + "9188", + "9194", + "91942", + "9196", + "91966", + "9197", + "91975", + "9201", + "92014", + "9205", + "9208", + "9210", + "92105", + "9211", + "92126", + "9213", + "92170", + "9219", + "9221", + "92211", + "92292", + "9232", + "92342", + "9235", + "9236", + "92370", + "9238", + "924", + "9242", + "9245", + "9246", + "9248", + "92482", + "92483", + "9249", + "9254", + "92552", + "92597", + "92609", + "9262", + "9263", + "9265", + "9267", + "9271", + "92715", + "92745", + "92749", + "9277", + "92797", + "9282", + "92840", + "92856", + "92906", + "9293", + "92935", + "93010", + "93034", + "9308", + "93100", + "93107", + "9311", + "9312", + "9313", + "93166", + "9318", + "9326", + "9328", + "9329", + "9330", + "9331", + "9334", + "9337", + "9340", + "93474", + "9348", + "9351", + "9356", + "93594", + "9360", + "93622", + "9364", + "9369", + "9374", + "9375", + "9376", + "9379", + "9380", + "9391", + "9394", + "93953", + "93973", + "9398", + "9402", + "94027", + "94031", + "94033", + "9407", + "94081", + "9410", + "94101", + "94107", + "9412", + "94137", + "9415", + "9416", + "9419", + "942", + "9420", + "94233", + "94234", + "9424", + "94241", + "9429", + "9435", + "9439", + "9440", + "9441", + "9443", + "9444", + "9445", + "9448", + "9455", + "9456", + "946", + "9462", + "9466", + "9467", + "9472", + "9473", + "9476", + "9477", + "9479", + "9480", + "9486", + "9498", + "95", + "9500", + "9506", + "9514", + "9516", + "9519", + "9521", + "9524", + "9534", + "9535", + "9536", + "9537", + "9538", + "9540", + "9541", + "9542", + "9546", + "9550", + "9551", + "9557", + "9563", + "9567", + "95681", + "9580", + "9582", + "9583", + "9584", + "9586", + "9589", + "9590", + "9592", + "9595", + "9603", + "9605", + "9612", + "9615", + "9616", + "962", + "9620", + "9622", + "9623", + "9626", + "9630", + "9635", + "9640", + "9644", + "9646", + "9651", + "9656", + "9657", + "9668", + "9669", + "9673", + "96764", + "9677", + "9682", + "9686", + "9689", + "97", + "9704", + "971", + "9710", + "9716", + "9718", + "9725", + "9731", + "9733", + "9735", + "9745", + "9758", + "976", + "9760", + "9761", + "9766", + "9767", + "9768", + "9774", + "978", + "9781", + "9785", + "9789", + "9790", + "9792", + "9794", + "9796", + "98", + "9802", + "9806", + "9810", + "9811", + "9819", + "9825", + "9836", + "984", + "9846", + "9851", + "9855", + "9860", + "9862", + "9877", + "9879", + "988", + "9881", + "9882", + "9887", + "9890", + "9891", + "9902", + "9910", + "9911", + "9913", + "9923", + "9924", + "9925", + "9933", + "9942", + "9945", + "9953", + "9955", + "9956", + "9957", + "9960", + "9962", + "9963", + "9967", + "9969", + "9970", + "9973", + "9975", + "9980", + "9986", + "9987", + "9991", + "9997" + ], + "neutral_gene_info": { + "GO:0001819": { + "Name": "positive regulation of cytokine production", + "Task": "GO", + "Genes": [ + "10010", + "100431172", + "10084", + "10125", + "10146", + "10148", + "10159", + "10211", + "10392", + "10394", + "10464", + "10542", + "10554", + "10555", + "10564", + "10621", + "10622", + "10623", + "10626", + "10855", + "10859", + "10892", + "10972", + "11027", + "11118", + "11119", + "11126", + "11128", + "11146", + "11148", + "112744", + "11315", + "114548", + "114609", + "1147", + "114836", + "114899", + "114900", + "115004", + "115362", + "116", + "117854", + "1191", + "126259", + "1432", + "1436", + "1437", + "144811", + "147372", + "148022", + "149233", + "150", + "1535", + "1604", + "161882", + "163486", + "1649", + "1652", + "1654", + "1660", + "1670", + "170506", + "177", + "1813", + "183", + "192683", + "199", + "1991", + "201292", + "201633", + "2048", + "2069", + "2149", + "2150", + "2152", + "2219", + "22861", + "22900", + "22925", + "2324", + "23586", + "23705", + "23765", + "24145", + "246778", + "247", + "25865", + "2597", + "260434", + "26191", + "2625", + "2658", + "27159", + "282618", + "283420", + "284340", + "2867", + "28984", + "29072", + "29108", + "29110", + "29126", + "29923", + "301", + "3091", + "3105", + "3113", + "3115", + "3133", + "3134", + "3135", + "3146", + "3162", + "3303", + "3304", + "331", + "3320", + "3329", + "3357", + "336", + "338322", + "338382", + "340061", + "3428", + "3458", + "351", + "353091", + "353376", + "353514", + "3552", + "3553", + "3554", + "3558", + "3565", + "3569", + "3570", + "3572", + "3574", + "3586", + "3592", + "3593", + "3594", + "3595", + "3596", + "3600", + "3603", + "3605", + "3606", + "3630", + "3654", + "3659", + "3661", + "3662", + "3663", + "3665", + "3717", + "373509", + "3805", + "3815", + "3929", + "3952", + "3965", + "4023", + "405", + "4063", + "4155", + "4179", + "4192", + "4210", + "4282", + "4317", + "4345", + "468", + "4829", + "4838", + "4843", + "4860", + "4938", + "4939", + "4940", + "5004", + "5005", + "5008", + "5027", + "5047", + "5054", + "51157", + "51284", + "51311", + "5142", + "5144", + "51561", + "51744", + "5196", + "5245", + "5293", + "5294", + "53342", + "5345", + "54106", + "541468", + "55655", + "55703", + "55765", + "55801", + "5600", + "5601", + "5603", + "56253", + "566", + "5663", + "567", + "57506", + "57824", + "58484", + "5861", + "59067", + "5914", + "5970", + "5987", + "6095", + "6188", + "6284", + "6288", + "6346", + "6375", + "64127", + "64135", + "64170", + "64581", + "661", + "6647", + "6653", + "6693", + "6711", + "672", + "6772", + "6774", + "6850", + "6868", + "6885", + "7040", + "7057", + "7096", + "7097", + "7098", + "7099", + "7100", + "7124", + "718", + "7186", + "7187", + "7189", + "727", + "7291", + "7292", + "7294", + "7297", + "7474", + "7855", + "80342", + "80381", + "814", + "8140", + "834", + "83786", + "841", + "84282", + "84433", + "84632", + "84868", + "85480", + "861", + "8692", + "8737", + "8767", + "8772", + "8780", + "8809", + "8915", + "89870", + "90865", + "914", + "9181", + "91947", + "923", + "9370", + "940", + "943", + "9447", + "9451", + "947", + "959", + "9636", + "9641", + "965", + "972", + "975", + "9868", + "9971" + ] + }, + "GO:0051090": { + "Name": "regulation of DNA-binding transcription factor activity", + "Task": "GO", + "Genes": [ + "10014", + "10206", + "10221", + "1029", + "10346", + "10392", + "10459", + "10475", + "10519", + "1054", + "10542", + "10616", + "10891", + "10892", + "10935", + "10987", + "11035", + "11043", + "11074", + "11124", + "11213", + "11261", + "11315", + "11331", + "114548", + "114609", + "1147", + "1191", + "121268", + "1240", + "135644", + "1386", + "140", + "149951", + "150372", + "150684", + "152138", + "153090", + "1540", + "1611", + "1649", + "1660", + "170622", + "171392", + "177", + "183", + "1856", + "1896", + "190", + "1906", + "197358", + "2033", + "207", + "2099", + "2100", + "219790", + "222166", + "2241", + "22900", + "22954", + "22976", + "23028", + "23085", + "2316", + "23376", + "23411", + "23586", + "23678", + "238", + "2535", + "25855", + "25865", + "25950", + "260434", + "26471", + "26508", + "27148", + "28232", + "283629", + "284434", + "285315", + "286430", + "28952", + "28984", + "29108", + "3055", + "306", + "3066", + "307", + "3169", + "3170", + "3275", + "3297", + "3303", + "3304", + "338382", + "3397", + "3398", + "3399", + "340061", + "351", + "3551", + "3553", + "3569", + "3586", + "3606", + "3630", + "3654", + "3656", + "367", + "3728", + "3815", + "3965", + "4040", + "4057", + "408", + "409", + "4188", + "4294", + "4345", + "4591", + "4760", + "4792", + "4794", + "4795", + "4808", + "4838", + "4869", + "4914", + "4919", + "4921", + "4922", + "4985", + "49860", + "50943", + "51270", + "51341", + "51684", + "5195", + "5292", + "5314", + "53840", + "54101", + "54583", + "5468", + "5478", + "55072", + "5516", + "55182", + "55223", + "55367", + "5583", + "5584", + "55859", + "5587", + "5588", + "55906", + "55914", + "5610", + "5629", + "56849", + "5687", + "56998", + "57118", + "5716", + "5727", + "5728", + "5740", + "57413", + "57506", + "58484", + "58487", + "58509", + "5925", + "5927", + "59307", + "5970", + "5987", + "602", + "60401", + "6045", + "6188", + "6279", + "6280", + "6283", + "6375", + "64127", + "64170", + "6424", + "64320", + "6446", + "650", + "6597", + "6598", + "65992", + "6672", + "6688", + "6722", + "6737", + "6788", + "6850", + "6872", + "6929", + "6934", + "695", + "7027", + "7037", + "7097", + "7099", + "7124", + "7128", + "7158", + "7185", + "7186", + "7187", + "7188", + "7189", + "7334", + "7335", + "7341", + "7472", + "7474", + "7706", + "7726", + "7874", + "79092", + "7984", + "79918", + "80149", + "80279", + "815", + "81603", + "825", + "8321", + "8322", + "8323", + "83860", + "8399", + "84159", + "84166", + "8431", + "84433", + "84851", + "84868", + "84875", + "8517", + "85363", + "8553", + "8600", + "8613", + "8717", + "8737", + "8767", + "8792", + "8807", + "8809", + "8877", + "8896", + "8915", + "8928", + "8945", + "8986", + "89870", + "90268", + "91662", + "9175", + "9181", + "92140", + "9252", + "92565", + "9314", + "93649", + "9421", + "9447", + "948", + "958", + "959", + "9641", + "9684", + "9759", + "9817", + "9830" + ] + }, + "GO:0044089": { + "Name": "positive regulation of cellular component biogenesis", + "Task": "GO", + "Genes": [ + "10015", + "10018", + "100287171", + "1003", + "10096", + "10097", + "10109", + "10142", + "10146", + "1015", + "10152", + "10155", + "10163", + "1017", + "10174", + "10211", + "10273", + "10344", + "10399", + "10411", + "10435", + "10600", + "10615", + "10677", + "10733", + "10787", + "10801", + "10807", + "10979", + "11076", + "11124", + "11135", + "11152", + "112574", + "11267", + "11315", + "11344", + "114609", + "115362", + "116985", + "1191", + "1236", + "1307", + "1365", + "139818", + "140609", + "143098", + "1437", + "1440", + "146206", + "148170", + "1490", + "149461", + "153090", + "153241", + "158297", + "163786", + "1639", + "1778", + "183", + "1969", + "1981", + "2017", + "202018", + "21", + "2185", + "221908", + "2241", + "2242", + "22843", + "22871", + "22880", + "22919", + "22930", + "22998", + "23019", + "23122", + "23130", + "23187", + "23191", + "23272", + "23332", + "23379", + "23400", + "23433", + "23514", + "23580", + "23636", + "246175", + "25", + "253725", + "25782", + "25802", + "26047", + "261734", + "26191", + "2658", + "27183", + "27243", + "27286", + "2895", + "28964", + "28984", + "29109", + "2932", + "29899", + "3038", + "3055", + "3064", + "3071", + "3084", + "324", + "3265", + "3273", + "3303", + "3304", + "3320", + "335", + "3373", + "3458", + "3567", + "373509", + "3791", + "382", + "387", + "388630", + "389", + "3936", + "3958", + "3984", + "3987", + "401548", + "402", + "4076", + "4088", + "4089", + "4137", + "4204", + "4233", + "4312", + "4314", + "442721", + "4653", + "4690", + "472", + "4733", + "4771", + "4848", + "4867", + "4926", + "49856", + "5027", + "5058", + "5064", + "51100", + "51196", + "51375", + "51466", + "51535", + "51738", + "5216", + "5217", + "5305", + "5336", + "53407", + "5341", + "5345", + "54443", + "545", + "54552", + "54737", + "54869", + "54874", + "54922", + "55062", + "55160", + "55604", + "55612", + "55626", + "55704", + "55719", + "55729", + "55755", + "55835", + "55845", + "55971", + "5599", + "56919", + "57343", + "57472", + "57482", + "57506", + "57535", + "57600", + "57606", + "57787", + "578", + "5795", + "581", + "5829", + "5879", + "5880", + "5898", + "5899", + "5908", + "59272", + "6188", + "6249", + "627", + "6281", + "6356", + "6366", + "6369", + "637", + "6376", + "638", + "6382", + "6385", + "6386", + "64112", + "64581", + "64787", + "64805", + "6491", + "655", + "6622", + "6624", + "6714", + "6850", + "6886", + "695", + "7010", + "7013", + "7016", + "7037", + "7040", + "7043", + "7046", + "7070", + "7122", + "7124", + "7157", + "7175", + "7248", + "7251", + "7341", + "7401", + "7408", + "7415", + "7429", + "7453", + "7471", + "7476", + "7481", + "7879", + "79184", + "79734", + "79837", + "7984", + "79953", + "79998", + "80199", + "8027", + "8100", + "81857", + "822", + "8396", + "84250", + "84299", + "8440", + "84630", + "8477", + "84962", + "85459", + "8631", + "8723", + "8739", + "8829", + "89795", + "90102", + "90410", + "90678", + "9146", + "94", + "9475", + "9525", + "9636", + "9639", + "96459", + "9647", + "9662", + "9696", + "9750", + "9780", + "9793", + "9869", + "989", + "9898", + "9908" + ] + }, + "GO:0051493": { + "Name": "regulation of cytoskeleton organization", + "Task": "GO", + "Genes": [ + "10015", + "1003", + "10039", + "100505385", + "10142", + "10152", + "10163", + "10174", + "10300", + "10344", + "10382", + "10391", + "10395", + "10411", + "10432", + "10435", + "10456", + "10458", + "10460", + "10519", + "10565", + "10615", + "10634", + "1073", + "10733", + "10787", + "10788", + "10979", + "11075", + "11076", + "11151", + "11170", + "11211", + "11344", + "116985", + "118", + "119", + "1201", + "1236", + "123720", + "126731", + "126820", + "128272", + "128866", + "136319", + "1398", + "1440", + "146057", + "146206", + "148170", + "1490", + "1496", + "153241", + "1540", + "157922", + "1613", + "163786", + "1639", + "1729", + "1778", + "1856", + "1857", + "1906", + "1946", + "2011", + "2017", + "203228", + "2039", + "2042", + "2150", + "2185", + "220134", + "221150", + "221908", + "2241", + "2242", + "22843", + "22919", + "22924", + "22974", + "22998", + "23122", + "23187", + "23189", + "23191", + "23271", + "23299", + "23332", + "23370", + "23433", + "23500", + "23616", + "23636", + "23671", + "24139", + "24142", + "246176", + "2475", + "25", + "253260", + "253725", + "256364", + "25802", + "25978", + "25999", + "26054", + "26146", + "2648", + "27", + "27243", + "27302", + "2770", + "2824", + "28964", + "28984", + "29109", + "2932", + "2934", + "29899", + "29922", + "3055", + "3059", + "3071", + "3192", + "324", + "3265", + "3273", + "3303", + "3304", + "335", + "338657", + "348110", + "348235", + "374872", + "382", + "387", + "389", + "3925", + "395", + "3984", + "402", + "4133", + "4137", + "4204", + "4233", + "440335", + "442721", + "4591", + "4653", + "4690", + "4733", + "4771", + "4869", + "4926", + "5058", + "5062", + "5063", + "5071", + "50848", + "5119", + "51466", + "51474", + "51510", + "5154", + "5156", + "51571", + "51652", + "51763", + "5202", + "5216", + "5217", + "5341", + "5345", + "5347", + "5364", + "54959", + "55160", + "55521", + "55604", + "55616", + "55704", + "55755", + "5580", + "55835", + "55845", + "5594", + "5595", + "55971", + "56890", + "57026", + "57132", + "57175", + "5747", + "57482", + "57551", + "5756", + "57606", + "57662", + "57822", + "5829", + "58497", + "5879", + "5898", + "5921", + "5962", + "6047", + "6093", + "6188", + "6249", + "6279", + "6280", + "6281", + "6314", + "6356", + "636", + "6366", + "6369", + "6376", + "6387", + "64223", + "64857", + "6491", + "6548", + "6622", + "6624", + "683", + "6904", + "7016", + "7043", + "7082", + "71", + "7114", + "7175", + "7226", + "7248", + "7408", + "7429", + "7430", + "7454", + "7481", + "7840", + "79187", + "79541", + "79598", + "79643", + "79768", + "7984", + "79866", + "79884", + "79998", + "824", + "8440", + "84722", + "8477", + "8480", + "84952", + "8500", + "85360", + "85415", + "85459", + "85477", + "8558", + "859", + "88", + "8829", + "8850", + "8874", + "8936", + "89795", + "899", + "90102", + "9026", + "9087", + "90952", + "9113", + "91147", + "91663", + "91782", + "9181", + "92421", + "9353", + "93663", + "9475", + "9525", + "9639", + "9647", + "9793", + "9873", + "9948" + ] + }, + "GO:0071345": { + "Name": "cellular response to cytokine stimulus", + "Task": "GO", + "Genes": [ + "10010", + "10019", + "1025", + "10344", + "10413", + "10456", + "10492", + "1050", + "10519", + "10581", + "10670", + "10725", + "10758", + "11122", + "11173", + "11213", + "112744", + "1147", + "117854", + "1230", + "1236", + "1270", + "1271", + "133396", + "1393", + "140885", + "1436", + "1437", + "1439", + "1440", + "1460", + "146433", + "149628", + "149951", + "1511", + "153090", + "1612", + "1613", + "1660", + "1687", + "171392", + "1843", + "1907", + "1958", + "1984", + "201626", + "2056", + "2058", + "2069", + "207", + "2185", + "2241", + "22904", + "2309", + "23143", + "2322", + "23236", + "23411", + "23521", + "23765", + "246", + "25942", + "2597", + "260434", + "26060", + "26119", + "2621", + "2629", + "2633", + "2634", + "2688", + "27063", + "27242", + "27316", + "27347", + "27429", + "285180", + "2852", + "2859", + "29108", + "3055", + "3059", + "3093", + "3113", + "329", + "330", + "3373", + "3394", + "3429", + "3434", + "3440", + "3454", + "3455", + "3456", + "3458", + "3459", + "3460", + "3551", + "3552", + "3553", + "3554", + "3556", + "3558", + "3559", + "3560", + "3561", + "3562", + "3563", + "3565", + "3566", + "3567", + "3568", + "3569", + "3570", + "3572", + "3574", + "3579", + "3581", + "3589", + "3590", + "3592", + "3593", + "3594", + "3595", + "3600", + "3601", + "3605", + "3606", + "3611", + "3627", + "3654", + "3656", + "3659", + "3663", + "3667", + "3716", + "3717", + "3718", + "3815", + "387", + "3953", + "3965", + "3977", + "3987", + "4067", + "4311", + "440712", + "4780", + "4790", + "4792", + "4938", + "4939", + "49860", + "5008", + "5034", + "50506", + "51079", + "51094", + "51135", + "51176", + "5138", + "5153", + "5155", + "51763", + "5196", + "5245", + "5295", + "53905", + "54209", + "54469", + "54472", + "55627", + "5566", + "558", + "55914", + "5595", + "5600", + "5603", + "5617", + "56624", + "56832", + "57007", + "5777", + "5781", + "57824", + "5795", + "58509", + "5894", + "5970", + "5976", + "6188", + "6347", + "6373", + "6376", + "6387", + "6404", + "6422", + "65010", + "65125", + "6558", + "6654", + "6672", + "6688", + "6714", + "672", + "6738", + "677", + "6772", + "6773", + "6774", + "6775", + "6776", + "6778", + "678", + "6885", + "6932", + "6997", + "7066", + "7097", + "7099", + "7114", + "7124", + "7132", + "7133", + "7157", + "7186", + "7187", + "7189", + "7297", + "7327", + "7538", + "7852", + "79092", + "79602", + "80149", + "81", + "815", + "81501", + "81704", + "81792", + "834", + "83483", + "8372", + "84522", + "84817", + "84818", + "8531", + "8570", + "8600", + "867", + "8692", + "8717", + "87178", + "8737", + "8792", + "8807", + "8809", + "8928", + "8986", + "9100", + "9173", + "9180", + "91807", + "920", + "9252", + "9253", + "9413", + "9447", + "9530", + "961", + "965", + "9705", + "9750", + "9759", + "9943", + "997" + ] + }, + "GO:0098657": { + "Name": "import into cell", + "Task": "GO", + "Genes": [ + "10021", + "10062", + "1020", + "10203", + "10244", + "10266", + "10267", + "10268", + "10451", + "10461", + "10859", + "1089", + "10938", + "10999", + "11001", + "11006", + "11031", + "11151", + "11252", + "11254", + "112574", + "113235", + "115548", + "116843", + "1173", + "1174", + "1175", + "1201", + "120103", + "120892", + "121260", + "133", + "134", + "135", + "1514", + "154", + "155", + "156", + "157", + "160", + "161", + "163", + "1759", + "1785", + "1793", + "1808", + "1814", + "196051", + "200576", + "203228", + "2060", + "206358", + "2180", + "2181", + "219931", + "2208", + "2213", + "2219", + "2220", + "222642", + "222962", + "2268", + "22841", + "23102", + "23149", + "23166", + "23396", + "23428", + "2348", + "23516", + "23603", + "23616", + "25", + "2534", + "257364", + "25769", + "2580", + "25800", + "25912", + "26119", + "261729", + "2621", + "27131", + "273", + "274", + "283420", + "2868", + "2885", + "2966", + "29911", + "301", + "3055", + "306", + "3146", + "348", + "3482", + "353376", + "3576", + "3577", + "3579", + "3587", + "3636", + "3685", + "3690", + "3757", + "3759", + "3760", + "3762", + "3764", + "376497", + "3949", + "3984", + "4035", + "4036", + "4037", + "4067", + "4074", + "408", + "409", + "432", + "4360", + "440400", + "4643", + "4646", + "4734", + "476", + "477", + "478", + "482", + "483", + "493", + "5058", + "51296", + "51305", + "51429", + "51454", + "51606", + "5175", + "5286", + "5298", + "53353", + "53373", + "5338", + "54209", + "54716", + "54734", + "54795", + "54874", + "55089", + "55113", + "55144", + "55244", + "5538", + "55503", + "55576", + "55604", + "55647", + "55681", + "55716", + "558", + "5580", + "5581", + "5594", + "5595", + "56262", + "56302", + "57007", + "57403", + "5747", + "575", + "57706", + "57864", + "5861", + "5868", + "5898", + "5899", + "5914", + "610", + "6272", + "6337", + "6338", + "6339", + "6340", + "64116", + "6441", + "64581", + "6505", + "6506", + "6507", + "6509", + "6511", + "6512", + "6513", + "6515", + "6518", + "6520", + "6523", + "6524", + "6529", + "6531", + "6532", + "6533", + "6536", + "6538", + "6539", + "6540", + "6541", + "6546", + "6548", + "6550", + "6558", + "6564", + "6565", + "6567", + "6570", + "6571", + "6572", + "6573", + "6580", + "6581", + "6582", + "6583", + "6622", + "6642", + "6653", + "6714", + "6804", + "6850", + "7036", + "7037", + "7052", + "7057", + "7099", + "7249", + "7409", + "7410", + "7436", + "7442", + "7525", + "7804", + "7879", + "80131", + "81031", + "81035", + "8140", + "81539", + "81693", + "8218", + "8301", + "83737", + "83871", + "8394", + "8398", + "8411", + "84162", + "84230", + "84889", + "85377", + "85439", + "8547", + "857", + "8578", + "858", + "859", + "8867", + "8884", + "9026", + "90678", + "90861", + "9152", + "9154", + "9214", + "9260", + "9266", + "9413", + "94134", + "948", + "949", + "9777", + "9829", + "9844", + "9873", + "9936", + "9938", + "9990", + "9992" + ] + }, + "GO:0043410": { + "Name": "positive regulation of MAPK cascade", + "Task": "GO", + "Genes": [ + "100133941", + "10125", + "10253", + "10268", + "10371", + "10457", + "10494", + "10550", + "10912", + "10961", + "10979", + "1116", + "11184", + "11211", + "11235", + "11331", + "1139", + "114609", + "115352", + "116", + "120892", + "1230", + "1236", + "1399", + "146433", + "147", + "148", + "148252", + "1490", + "150", + "151", + "152", + "152007", + "152110", + "153090", + "153769", + "154", + "155", + "1647", + "1652", + "168667", + "1687", + "177", + "1815", + "1856", + "1857", + "1880", + "1906", + "1908", + "1950", + "1956", + "195827", + "2064", + "2066", + "2081", + "2146", + "2149", + "2150", + "2185", + "222166", + "222643", + "2243", + "2244", + "2246", + "2247", + "2249", + "2255", + "2260", + "2261", + "2263", + "2264", + "2266", + "22943", + "23043", + "2321", + "2322", + "23236", + "2324", + "23286", + "23328", + "2358", + "23779", + "242", + "246", + "2492", + "255324", + "25778", + "26191", + "2621", + "26291", + "2651", + "2688", + "27347", + "284", + "284340", + "285016", + "2852", + "285613", + "2861", + "28996", + "29108", + "2914", + "3082", + "3084", + "3123", + "3146", + "3265", + "331", + "3356", + "3357", + "3358", + "3383", + "341152", + "344558", + "3479", + "348", + "3481", + "3489", + "351", + "353514", + "3553", + "3569", + "3589", + "3630", + "3643", + "3791", + "3815", + "388325", + "389400", + "389658", + "3952", + "3965", + "3976", + "4055", + "408", + "409", + "4216", + "4217", + "4281", + "4282", + "4294", + "4296", + "4342", + "4486", + "4504", + "4616", + "4653", + "4671", + "4838", + "4851", + "4853", + "4908", + "4914", + "5008", + "5031", + "50488", + "5058", + "51347", + "51384", + "5151", + "5154", + "5155", + "5156", + "51562", + "5159", + "51738", + "5245", + "5294", + "5320", + "5322", + "5345", + "54106", + "54209", + "54361", + "54550", + "54769", + "5478", + "54910", + "55294", + "553", + "55532", + "55765", + "55801", + "5590", + "5595", + "5604", + "5609", + "5610", + "57007", + "57161", + "57551", + "57608", + "5781", + "5871", + "5894", + "5979", + "60401", + "6091", + "6093", + "6188", + "6259", + "6278", + "6283", + "6348", + "6363", + "6366", + "6376", + "6386", + "64127", + "64170", + "6464", + "64762", + "650", + "65009", + "6504", + "652", + "653361", + "6657", + "673", + "6885", + "6997", + "7010", + "7039", + "7040", + "7042", + "7057", + "7066", + "7098", + "7124", + "7164", + "7186", + "7189", + "728", + "7474", + "7498", + "768211", + "7786", + "79444", + "7984", + "80149", + "8324", + "8412", + "84231", + "8482", + "85363", + "8567", + "858", + "8600", + "8737", + "8754", + "8792", + "8817", + "8826", + "8844", + "8877", + "90441", + "920", + "9258", + "9283", + "9290", + "9344", + "9464", + "9518", + "958", + "960", + "9618", + "9693", + "972", + "975", + "9770", + "9867", + "9965" + ] + }, + "GO:0002683": { + "Name": "negative regulation of immune system process", + "Task": "GO", + "Genes": [ + "100507436", + "1021", + "10272", + "10288", + "10457", + "10464", + "10769", + "10859", + "11005", + "11006", + "11025", + "11027", + "11074", + "11126", + "11146", + "11240", + "11274", + "11277", + "11314", + "11326", + "115004", + "115352", + "127018", + "1281", + "1378", + "142", + "1432", + "146722", + "147945", + "148066", + "149095", + "1493", + "1511", + "152138", + "153090", + "1604", + "1652", + "171392", + "1803", + "1843", + "1845", + "196", + "197358", + "2", + "201633", + "207", + "2150", + "2200", + "2213", + "2268", + "22900", + "22914", + "22954", + "23143", + "23170", + "23220", + "23240", + "2335", + "23547", + "2534", + "257144", + "25827", + "259307", + "25939", + "26007", + "260434", + "26058", + "26191", + "2633", + "27202", + "282618", + "2852", + "286430", + "2896", + "29085", + "29126", + "29883", + "301", + "3055", + "3071", + "3077", + "3105", + "3106", + "3111", + "3112", + "3123", + "3133", + "3134", + "3135", + "3146", + "3162", + "3204", + "325", + "3312", + "335", + "336", + "3428", + "3440", + "3456", + "345611", + "347", + "3586", + "3623", + "3624", + "3630", + "375056", + "3805", + "3821", + "3824", + "383", + "387597", + "387837", + "3965", + "401397", + "4067", + "4068", + "409", + "4192", + "4210", + "4282", + "4332", + "4345", + "441864", + "4609", + "472", + "4795", + "4856", + "4938", + "4940", + "5045", + "5094", + "50943", + "51441", + "5272", + "53342", + "5335", + "54209", + "54625", + "5468", + "54726", + "54900", + "54941", + "55080", + "55294", + "5537", + "55646", + "55666", + "5573", + "55829", + "5591", + "55914", + "56339", + "56477", + "57045", + "5734", + "57506", + "5771", + "5788", + "5795", + "5802", + "58509", + "5914", + "5987", + "60343", + "6223", + "6318", + "634", + "6347", + "6348", + "6366", + "6370", + "6375", + "6385", + "6387", + "63906", + "6397", + "64115", + "6422", + "6441", + "652", + "6664", + "671", + "6714", + "6737", + "6773", + "684", + "6850", + "6895", + "6988", + "7040", + "7042", + "7043", + "7057", + "708", + "710", + "7105", + "7124", + "7128", + "7130", + "714", + "722", + "725", + "727", + "7305", + "7353", + "7430", + "7525", + "7534", + "79004", + "79037", + "79132", + "7940", + "79594", + "79651", + "79679", + "79890", + "80149", + "80380", + "80772", + "81559", + "81790", + "83737", + "84166", + "84174", + "84243", + "84524", + "84640", + "84830", + "84868", + "84885", + "8764", + "8780", + "8815", + "8832", + "8878", + "8887", + "8976", + "9111", + "9212", + "9231", + "9258", + "92747", + "9290", + "933", + "9353", + "9370", + "9404", + "941", + "945", + "9470", + "9572", + "9607", + "9636", + "9684", + "9750", + "9958" + ] + }, + "GO:0031400": { + "Name": "negative regulation of protein modification process", + "Task": "GO", + "Genes": [ + "100506658", + "10196", + "10221", + "10253", + "1026", + "1027", + "1028", + "1029", + "103", + "10399", + "104", + "10401", + "10459", + "10464", + "10491", + "10527", + "10614", + "10625", + "11006", + "11076", + "11116", + "11122", + "11213", + "11221", + "11314", + "11315", + "11329", + "11338", + "122809", + "123879", + "124790", + "138429", + "1399", + "140775", + "1408", + "1499", + "151636", + "152559", + "153090", + "153769", + "1609", + "161742", + "1622", + "1647", + "171392", + "183", + "1843", + "1849", + "1981", + "199731", + "200734", + "203228", + "2041", + "207", + "2192", + "2280", + "2281", + "22843", + "22876", + "22943", + "23171", + "23251", + "23376", + "23411", + "23435", + "23560", + "23603", + "23624", + "23645", + "23770", + "245928", + "25", + "2539", + "25937", + "25998", + "260434", + "26051", + "26146", + "261726", + "26191", + "26271", + "2629", + "26524", + "266740", + "2776", + "2810", + "286430", + "28999", + "29108", + "2932", + "2950", + "3071", + "3087", + "324", + "3301", + "3303", + "3304", + "339745", + "3458", + "348", + "3486", + "3551", + "3642", + "374969", + "3843", + "388324", + "3958", + "3984", + "401265", + "4040", + "4041", + "408", + "4085", + "409", + "4092", + "4101", + "4137", + "4249", + "4690", + "4771", + "4869", + "4878", + "4908", + "5062", + "5071", + "51035", + "51085", + "51160", + "51422", + "51527", + "51547", + "51637", + "51654", + "51657", + "5167", + "5170", + "51763", + "5347", + "54206", + "54386", + "54431", + "54552", + "54625", + "5468", + "5470", + "54765", + "5478", + "54866", + "54900", + "54922", + "54984", + "55022", + "5524", + "5569", + "5573", + "5575", + "5576", + "5577", + "5580", + "5582", + "55861", + "55869", + "5590", + "5611", + "56271", + "56940", + "5728", + "57493", + "5753", + "5770", + "5771", + "57718", + "57732", + "57761", + "5777", + "5783", + "5788", + "5795", + "58509", + "5859", + "5925", + "59343", + "5987", + "6093", + "6125", + "6135", + "6188", + "6201", + "6317", + "64175", + "6422", + "6456", + "64793", + "64798", + "64844", + "64853", + "650", + "65125", + "6609", + "6622", + "6640", + "6659", + "6737", + "6872", + "6879", + "6895", + "7023", + "7026", + "7040", + "7124", + "7128", + "7251", + "7345", + "7375", + "7453", + "7498", + "7529", + "7531", + "79643", + "79899", + "80279", + "80725", + "808", + "80824", + "819", + "825", + "84101", + "84152", + "84313", + "84335", + "84619", + "8473", + "84875", + "84919", + "84930", + "857", + "859", + "8613", + "8651", + "8692", + "8878", + "9021", + "9113", + "91272", + "91662", + "91663", + "9258", + "9270", + "9349", + "9353", + "93649", + "93650", + "9370", + "9425", + "9475", + "9529", + "9532", + "9555", + "9636", + "9647", + "9655", + "9770", + "9961" + ] + }, + "GO:0031349": { + "Name": "positive regulation of defense response", + "Task": "GO", + "Genes": [ + "10062", + "10084", + "10125", + "10133", + "10211", + "10392", + "10432", + "10612", + "10614", + "10621", + "10622", + "10623", + "10666", + "11027", + "11117", + "11126", + "11213", + "11331", + "114548", + "114609", + "1147", + "114836", + "115004", + "115362", + "117854", + "121260", + "135250", + "1387", + "140609", + "144811", + "145741", + "146722", + "148022", + "1520", + "1535", + "1540", + "164", + "1652", + "1654", + "171389", + "183", + "185", + "2033", + "2113", + "2150", + "2219", + "22841", + "22861", + "22900", + "22914", + "23180", + "23369", + "2358", + "23586", + "23643", + "23705", + "23765", + "245928", + "2534", + "2547", + "25818", + "259197", + "25921", + "25942", + "26057", + "26191", + "26253", + "285852", + "2867", + "29108", + "29110", + "29126", + "3055", + "3093", + "3133", + "3134", + "3135", + "3146", + "3303", + "3304", + "331", + "3320", + "3329", + "338322", + "340061", + "3428", + "3430", + "345611", + "3458", + "351", + "353091", + "353376", + "353514", + "354", + "3551", + "3553", + "3558", + "3569", + "3572", + "3592", + "3593", + "3600", + "3603", + "3606", + "3654", + "3656", + "3661", + "3665", + "3735", + "373509", + "377630", + "3805", + "3822", + "3824", + "383", + "3843", + "388125", + "389856", + "3916", + "3929", + "3956", + "3965", + "4023", + "4057", + "4067", + "4153", + "4192", + "4792", + "4814", + "4841", + "4938", + "4940", + "5008", + "50487", + "5054", + "5058", + "5062", + "5063", + "51135", + "51284", + "51295", + "51311", + "51435", + "51561", + "5225", + "5245", + "5320", + "5336", + "5359", + "54106", + "54209", + "54502", + "55072", + "55223", + "55269", + "55577", + "55601", + "55703", + "55765", + "5591", + "5599", + "5603", + "5608", + "56253", + "5650", + "56832", + "56919", + "57402", + "57506", + "57590", + "57724", + "57787", + "57864", + "5817", + "5819", + "59067", + "5970", + "6223", + "6279", + "6280", + "6283", + "6346", + "6348", + "64127", + "64135", + "6421", + "64332", + "661", + "6622", + "6714", + "6845", + "6850", + "6885", + "695", + "7040", + "7096", + "7097", + "7098", + "7099", + "7100", + "7124", + "7128", + "7187", + "7189", + "7292", + "7294", + "730249", + "7305", + "7474", + "7520", + "7531", + "7706", + "79132", + "79184", + "7941", + "79792", + "79931", + "80196", + "80216", + "80231", + "80342", + "81035", + "81570", + "81622", + "81844", + "834", + "83666", + "837", + "83737", + "839", + "84034", + "84166", + "84282", + "84630", + "84937", + "85363", + "85364", + "85480", + "857", + "8638", + "8673", + "8678", + "8692", + "8717", + "8723", + "8737", + "8767", + "8772", + "8780", + "8840", + "8915", + "89870", + "90268", + "90678", + "90865", + "90933", + "912", + "91445", + "9180", + "9258", + "92610", + "9447", + "9641", + "9698", + "9782", + "9865", + "9867", + "9868", + "9958" + ] + }, + "GO:0051276": { + "Name": "chromosome organization", + "Task": "GO", + "Genes": [ + "100134934", + "10015", + "10039", + "10051", + "10111", + "10274", + "10403", + "10464", + "10540", + "1058", + "10592", + "10595", + "1060", + "10609", + "10615", + "1062", + "10726", + "10728", + "10734", + "10735", + "10910", + "10973", + "11004", + "11044", + "11073", + "11130", + "11200", + "113130", + "11331", + "114799", + "121504", + "126353", + "128866", + "129563", + "142", + "148479", + "151648", + "152185", + "152485", + "157570", + "158983", + "1653", + "1660", + "1663", + "1677", + "170506", + "1736", + "1763", + "201161", + "2067", + "2071", + "2072", + "2146", + "220134", + "221150", + "2237", + "22919", + "22974", + "22985", + "23047", + "23063", + "23126", + "23137", + "2316", + "23172", + "23212", + "23244", + "23310", + "23383", + "23397", + "23636", + "24137", + "24144", + "25", + "254394", + "2547", + "256364", + "25836", + "25913", + "25978", + "26065", + "26277", + "2669", + "26993", + "27183", + "27243", + "27436", + "2801", + "283489", + "285643", + "286053", + "29098", + "29127", + "29128", + "2956", + "29893", + "3020", + "3021", + "3087", + "3104", + "317761", + "328", + "3320", + "3326", + "348235", + "3508", + "3796", + "3832", + "3833", + "3834", + "3835", + "3837", + "387", + "387103", + "387893", + "4171", + "4172", + "4173", + "4174", + "4175", + "4176", + "4361", + "4436", + "4437", + "4609", + "4683", + "49856", + "50485", + "5119", + "51203", + "51510", + "51548", + "51652", + "51659", + "51750", + "5347", + "54386", + "54433", + "546", + "54617", + "54627", + "548593", + "54908", + "54984", + "55125", + "55135", + "55143", + "55165", + "55183", + "55294", + "55355", + "554313", + "55505", + "55651", + "55869", + "5591", + "5619", + "5620", + "56647", + "56652", + "57082", + "57132", + "57650", + "5813", + "5888", + "5892", + "5901", + "5925", + "5976", + "5981", + "6117", + "6118", + "6119", + "641", + "64151", + "64785", + "64858", + "64946", + "6672", + "6742", + "6795", + "6832", + "6934", + "7011", + "7013", + "7014", + "7015", + "7150", + "7153", + "7155", + "7156", + "729440", + "7486", + "7517", + "7756", + "79003", + "79008", + "79075", + "79643", + "79677", + "7978", + "79884", + "79892", + "7994", + "79991", + "79998", + "80119", + "80152", + "80169", + "80218", + "8086", + "81620", + "81929", + "81930", + "8243", + "8260", + "8294", + "8313", + "8318", + "8350", + "8351", + "8352", + "8353", + "8354", + "8355", + "8356", + "8357", + "8358", + "8359", + "8360", + "8361", + "8362", + "8363", + "8364", + "8366", + "8367", + "8368", + "8370", + "83903", + "84057", + "84083", + "84296", + "84444", + "84464", + "84515", + "8452", + "84722", + "84861", + "8520", + "8678", + "8697", + "8766", + "891", + "8968", + "90417", + "9055", + "9113", + "9126", + "91272", + "9131", + "9156", + "91782", + "9183", + "9212", + "92421", + "92675", + "93426", + "9371", + "9401", + "9493", + "9525", + "9639", + "9700", + "9837", + "9918", + "9928", + "9985" + ] + }, + "GO:0051347": { + "Name": "positive regulation of transferase activity", + "Task": "GO", + "Genes": [ + "10006", + "100133941", + "10040", + "10111", + "10125", + "10210", + "1026", + "10454", + "10464", + "10575", + "10576", + "1062", + "10728", + "10892", + "10899", + "10920", + "10961", + "10979", + "11035", + "11065", + "11232", + "11235", + "11284", + "11315", + "116", + "116986", + "120892", + "1236", + "128344", + "140609", + "143384", + "1436", + "146433", + "148252", + "149233", + "150", + "151", + "152", + "152110", + "153090", + "154", + "1616", + "1622", + "1654", + "1736", + "1742", + "1815", + "183", + "185", + "1856", + "1894", + "1906", + "1908", + "1917", + "1942", + "1950", + "1956", + "2011", + "2013", + "205428", + "2064", + "2069", + "207", + "2081", + "2146", + "2147", + "2185", + "219736", + "219771", + "2209", + "221938", + "2246", + "2247", + "225689", + "2260", + "22924", + "22974", + "23118", + "2321", + "2322", + "23328", + "23411", + "23531", + "245711", + "25", + "2547", + "255324", + "25778", + "25913", + "2621", + "26585", + "266740", + "2688", + "27338", + "283", + "284", + "284254", + "285489", + "28984", + "29775", + "3084", + "3123", + "3265", + "3320", + "3326", + "335", + "3357", + "336", + "337", + "345611", + "3458", + "3479", + "348", + "3491", + "353514", + "3553", + "3565", + "3593", + "3630", + "3643", + "3690", + "387", + "3952", + "4057", + "4101", + "4216", + "4217", + "4294", + "4296", + "4345", + "4361", + "4486", + "4504", + "4683", + "4739", + "4751", + "4908", + "4921", + "493", + "4931", + "5058", + "5073", + "5111", + "51149", + "51343", + "51347", + "51422", + "51429", + "51438", + "5154", + "5155", + "51561", + "5170", + "51719", + "5294", + "5347", + "54209", + "54465", + "54769", + "5478", + "54921", + "55011", + "55135", + "5515", + "55294", + "55437", + "5558", + "5570", + "55704", + "5571", + "5580", + "5588", + "5594", + "5595", + "5604", + "5605", + "5606", + "5609", + "5618", + "5621", + "5629", + "566", + "56892", + "57091", + "57103", + "5716", + "57214", + "5728", + "5747", + "57561", + "57679", + "5770", + "5871", + "5899", + "5920", + "595", + "5982", + "5983", + "5984", + "5985", + "6091", + "6187", + "6188", + "6283", + "6363", + "63922", + "63967", + "648", + "6500", + "65018", + "653361", + "6622", + "6714", + "6794", + "6868", + "6885", + "6950", + "6997", + "7042", + "7057", + "7124", + "7164", + "7186", + "7189", + "7295", + "7329", + "7332", + "7474", + "7520", + "7564", + "79075", + "796", + "79618", + "7984", + "79977", + "80725", + "808", + "80829", + "8091", + "8312", + "84630", + "8536", + "8550", + "8555", + "8600", + "8658", + "8754", + "8792", + "8817", + "8826", + "894", + "8945", + "896", + "90441", + "9094", + "91947", + "920", + "9212", + "92335", + "92345", + "9270", + "9314", + "9344", + "9370", + "94056", + "958", + "9618", + "9693", + "972", + "9770", + "991", + "9928", + "9966" + ] + }, + "GO:0051668": { + "Name": "localization within membrane", + "Task": "GO", + "Genes": [ + "100133941", + "100287171", + "10098", + "1012", + "10123", + "10133", + "10139", + "10211", + "10228", + "10243", + "10266", + "10267", + "10268", + "10311", + "10328", + "10430", + "10564", + "10670", + "10807", + "10890", + "10938", + "10959", + "10981", + "11031", + "11187", + "1121", + "11231", + "112609", + "11267", + "117177", + "128240", + "128866", + "129303", + "130617", + "132112", + "1363", + "143187", + "145567", + "150684", + "157680", + "158234", + "158866", + "161176", + "1678", + "1739", + "1742", + "1956", + "1969", + "2060", + "221079", + "22844", + "22853", + "22930", + "22979", + "23043", + "23062", + "23065", + "23122", + "2316", + "23163", + "23167", + "2319", + "23241", + "23339", + "23420", + "23463", + "23471", + "23499", + "23555", + "23682", + "23759", + "23787", + "23788", + "253725", + "25782", + "2580", + "25813", + "25837", + "25921", + "25930", + "26003", + "26088", + "26154", + "261729", + "2621", + "26225", + "26517", + "26519", + "26520", + "26521", + "2803", + "283576", + "283820", + "284098", + "284361", + "285521", + "285590", + "286", + "287", + "288", + "28952", + "29927", + "29928", + "30844", + "30845", + "30846", + "3308", + "3309", + "3320", + "340348", + "344892", + "348", + "3551", + "3676", + "3683", + "3689", + "3695", + "3728", + "375790", + "382", + "3875", + "4040", + "408050", + "4118", + "439", + "4641", + "481", + "483", + "4836", + "4864", + "50619", + "50848", + "51016", + "51079", + "51100", + "51125", + "51201", + "51234", + "51304", + "51398", + "51552", + "51560", + "51608", + "51699", + "51735", + "51762", + "5284", + "5318", + "54499", + "54520", + "54918", + "54997", + "55004", + "55107", + "55146", + "55275", + "55610", + "55625", + "55690", + "55704", + "55706", + "55737", + "55750", + "55770", + "55800", + "55831", + "55969", + "56246", + "5660", + "56851", + "56926", + "56993", + "57003", + "57020", + "57130", + "57154", + "57182", + "57217", + "5727", + "57512", + "5764", + "57728", + "582", + "5824", + "583", + "5830", + "5870", + "5872", + "5879", + "5898", + "5906", + "5911", + "5962", + "6093", + "6281", + "6293", + "637", + "64083", + "64108", + "64112", + "64121", + "6449", + "64689", + "65055", + "65125", + "65267", + "653361", + "6711", + "6727", + "6728", + "6729", + "673", + "6734", + "6745", + "6746", + "6812", + "682", + "7095", + "7124", + "7132", + "738", + "7430", + "7485", + "7871", + "7879", + "79156", + "7917", + "79568", + "79803", + "8087", + "81609", + "81619", + "81693", + "8174", + "819", + "81926", + "8266", + "83460", + "83597", + "83871", + "8394", + "84079", + "84162", + "84668", + "84896", + "8504", + "85377", + "85409", + "8548", + "8674", + "8675", + "8723", + "8766", + "88", + "8934", + "8943", + "90580", + "914", + "9146", + "91663", + "92162", + "9230", + "92359", + "9270", + "93380", + "9368", + "9370", + "9409", + "9475", + "9559", + "9648", + "9693", + "9694", + "9697", + "9727", + "975", + "9784", + "9919", + "999" + ] + }, + "GO:0070201": { + "Name": "regulation of establishment of protein localization", + "Task": "GO", + "Genes": [ + "10023", + "100507043", + "10059", + "101", + "10134", + "10155", + "10307", + "10391", + "10399", + "10411", + "10456", + "10497", + "10519", + "10541", + "10574", + "10575", + "10576", + "10694", + "1080", + "10857", + "10956", + "10961", + "10972", + "11060", + "111", + "11132", + "11156", + "11235", + "11261", + "11315", + "114", + "114899", + "120892", + "125170", + "1263", + "127933", + "131177", + "1445", + "150", + "1509", + "153241", + "161291", + "163882", + "1736", + "1813", + "1814", + "1815", + "2010", + "2029", + "2033", + "2064", + "2181", + "222546", + "2243", + "2244", + "2266", + "22948", + "22994", + "23086", + "2316", + "23256", + "23379", + "23400", + "23409", + "23514", + "23607", + "252983", + "258010", + "25930", + "26056", + "26130", + "2621", + "26229", + "26297", + "2645", + "2664", + "2695", + "2696", + "27032", + "27063", + "27236", + "27248", + "27346", + "2746", + "283", + "283514", + "285381", + "285966", + "2931", + "2932", + "29934", + "3059", + "3123", + "322", + "3265", + "3301", + "3305", + "3312", + "337867", + "3429", + "3458", + "347", + "3479", + "348", + "353500", + "3552", + "3553", + "3569", + "3592", + "3593", + "3630", + "3638", + "3667", + "3670", + "3728", + "3741", + "3745", + "3767", + "377630", + "382", + "3936", + "399687", + "4137", + "43", + "4345", + "4544", + "4628", + "4641", + "4760", + "4843", + "4988", + "5071", + "51009", + "51024", + "5108", + "51124", + "5116", + "51160", + "5127", + "51366", + "51465", + "51548", + "51569", + "51614", + "51684", + "51715", + "51763", + "51768", + "5295", + "5319", + "54209", + "54471", + "54543", + "5478", + "5481", + "55107", + "55135", + "55204", + "55294", + "55432", + "55486", + "55691", + "55696", + "55741", + "55754", + "5580", + "55835", + "55929", + "5663", + "56947", + "57214", + "57506", + "57555", + "5770", + "57818", + "5784", + "580", + "5901", + "5905", + "5950", + "5978", + "6248", + "63036", + "63928", + "640", + "64083", + "64175", + "64215", + "6422", + "64285", + "64328", + "65018", + "652", + "6616", + "6653", + "6672", + "6720", + "6804", + "6810", + "6934", + "6950", + "7013", + "7021", + "7040", + "7042", + "7043", + "7097", + "7099", + "7124", + "7175", + "7203", + "7273", + "7327", + "7341", + "7531", + "79567", + "79752", + "7984", + "79899", + "79971", + "80024", + "80149", + "80184", + "80223", + "80762", + "81565", + "84830", + "8536", + "85459", + "8609", + "8724", + "8736", + "8754", + "8841", + "8882", + "8934", + "8938", + "89866", + "9024", + "90550", + "908", + "91319", + "9141", + "91543", + "9270", + "9370", + "93974", + "94121", + "945", + "9463", + "9495", + "9530", + "9531", + "9619", + "9647", + "9648", + "9662", + "9695", + "9727", + "9747", + "975", + "9777", + "9786", + "9847", + "9854", + "9971", + "999" + ] + }, + "GO:0060627": { + "Name": "regulation of vesicle-mediated transport", + "Task": "GO", + "Genes": [ + "10015", + "100506013", + "10062", + "10079", + "1012", + "10188", + "10211", + "10399", + "10461", + "10584", + "1080", + "10814", + "10815", + "10825", + "10859", + "10960", + "11037", + "11141", + "11236", + "11267", + "11314", + "116519", + "1175", + "1191", + "120892", + "123745", + "124590", + "124912", + "124930", + "128637", + "134957", + "1445", + "150", + "150696", + "1535", + "1601", + "163882", + "164", + "1861", + "192683", + "1950", + "197", + "20", + "201294", + "2042", + "2150", + "2181", + "2213", + "2219", + "2220", + "2242", + "2243", + "2244", + "2266", + "22848", + "22876", + "22943", + "23011", + "23086", + "23122", + "23317", + "2332", + "23332", + "23400", + "2358", + "25", + "255738", + "257364", + "25875", + "25930", + "25999", + "26119", + "26175", + "2619", + "2621", + "2688", + "27", + "27032", + "27183", + "27236", + "27243", + "284", + "284654", + "29091", + "29934", + "29978", + "301", + "302", + "3055", + "3071", + "3077", + "30817", + "3092", + "3134", + "3146", + "3190", + "335", + "336", + "338692", + "341", + "344", + "345", + "348", + "351", + "3560", + "3561", + "3600", + "3601", + "3643", + "3684", + "3685", + "3689", + "3690", + "376267", + "382", + "3822", + "3916", + "392", + "3958", + "3965", + "399687", + "4035", + "4043", + "404636", + "408", + "409", + "4153", + "4478", + "4908", + "4983", + "50487", + "5054", + "50632", + "5071", + "51143", + "51160", + "51272", + "51479", + "51652", + "5291", + "5336", + "5337", + "53407", + "5359", + "5413", + "54209", + "54521", + "54550", + "5538", + "558", + "55823", + "5587", + "5594", + "5595", + "5604", + "5605", + "5657", + "566", + "5663", + "567", + "57111", + "57118", + "57126", + "57617", + "5770", + "5788", + "5864", + "5865", + "5868", + "5873", + "5874", + "5879", + "5898", + "5962", + "6014", + "60561", + "6093", + "6248", + "6311", + "634", + "636", + "6382", + "6385", + "6386", + "6401", + "6424", + "6441", + "64581", + "6609", + "6622", + "6653", + "6714", + "6810", + "6812", + "6814", + "6845", + "6853", + "6857", + "7018", + "7036", + "7052", + "717", + "718", + "720", + "721", + "7251", + "7260", + "7275", + "7287", + "7376", + "7430", + "7448", + "7784", + "7874", + "7879", + "78989", + "79643", + "79890", + "80230", + "8027", + "81555", + "8291", + "8301", + "83452", + "84058", + "84079", + "8448", + "84932", + "8527", + "8547", + "857", + "867", + "8673", + "8720", + "8723", + "8724", + "8766", + "88", + "8829", + "8832", + "88455", + "8862", + "8877", + "8938", + "89780", + "9026", + "90416", + "90678", + "9098", + "9146", + "933", + "9367", + "9370", + "94121", + "949", + "9495", + "9525", + "9545", + "9581", + "967", + "9711", + "9727", + "9765", + "977", + "9779", + "9847", + "9863", + "9892" + ] + }, + "GO:0010256": { + "Name": "endomembrane system organization", + "Task": "GO", + "Genes": [ + "10059", + "10133", + "10211", + "10254", + "10313", + "10328", + "10419", + "10430", + "10466", + "10494", + "10564", + "10565", + "10783", + "10890", + "10959", + "1104", + "11196", + "11235", + "11252", + "11267", + "115560", + "116068", + "116238", + "1182", + "118813", + "1191", + "120892", + "123720", + "124491", + "124912", + "1263", + "128637", + "128866", + "1289", + "137492", + "1378", + "144717", + "1452", + "1453", + "148362", + "149371", + "149647", + "150368", + "155382", + "157680", + "162427", + "163590", + "1639", + "167", + "1759", + "1760", + "1861", + "19", + "196527", + "196996", + "2010", + "2054", + "2149", + "221035", + "221496", + "225689", + "22796", + "22878", + "22931", + "22933", + "23023", + "23065", + "23122", + "23141", + "23175", + "23204", + "23207", + "23306", + "23317", + "23325", + "23332", + "23345", + "23363", + "23399", + "23420", + "23435", + "23471", + "23603", + "2515", + "252839", + "257364", + "2580", + "25839", + "25923", + "25978", + "26259", + "26276", + "26993", + "27183", + "27230", + "27243", + "27314", + "27348", + "274", + "2801", + "2804", + "283820", + "284359", + "284361", + "284382", + "288", + "29763", + "29887", + "29911", + "29927", + "29993", + "3064", + "339122", + "375056", + "399687", + "3998", + "399979", + "4000", + "4001", + "400451", + "408050", + "4218", + "439", + "440400", + "4627", + "4905", + "5027", + "50999", + "51016", + "51028", + "51062", + "51112", + "51160", + "5119", + "51234", + "51308", + "51332", + "51361", + "51398", + "51429", + "51510", + "51560", + "51608", + "51652", + "53407", + "5347", + "5359", + "53947", + "54499", + "545", + "54732", + "54808", + "54874", + "55014", + "55048", + "55113", + "55204", + "55353", + "55627", + "5578", + "5579", + "55831", + "5587", + "55969", + "56851", + "56926", + "57003", + "57132", + "57142", + "57151", + "57511", + "57531", + "57584", + "57617", + "5798", + "5861", + "5862", + "5864", + "5873", + "60684", + "63932", + "64083", + "64225", + "64400", + "6449", + "64689", + "65055", + "65125", + "65243", + "653145", + "6609", + "662", + "6683", + "6711", + "6810", + "6811", + "6836", + "7251", + "727910", + "7329", + "7443", + "7485", + "7534", + "79102", + "79156", + "7917", + "79188", + "79643", + "79659", + "79720", + "8027", + "80346", + "80856", + "81035", + "81876", + "819", + "8266", + "83460", + "83547", + "83548", + "84067", + "8411", + "84313", + "8436", + "84376", + "84932", + "85377", + "85462", + "8548", + "8560", + "857", + "858", + "859", + "8724", + "8729", + "8766", + "8815", + "8874", + "8878", + "8934", + "8938", + "89866", + "9002", + "9146", + "91782", + "9183", + "91949", + "9217", + "9218", + "92421", + "928", + "9321", + "93343", + "93380", + "9382", + "94121", + "9529", + "9631", + "9648", + "9688", + "9694", + "9697", + "9712", + "9885", + "9919", + "9950" + ] + }, + "GO:0015031": { + "Name": "protein transport", + "Task": "GO", + "Genes": [ + "10013", + "100133941", + "10016", + "10066", + "10113", + "10133", + "10139", + "10203", + "10204", + "10266", + "10267", + "10268", + "10550", + "10569", + "1063", + "10938", + "10952", + "10959", + "10972", + "11020", + "11031", + "11097", + "11127", + "11196", + "11231", + "112574", + "11276", + "11331", + "1191", + "126549", + "130617", + "131474", + "144165", + "157769", + "158234", + "1678", + "169026", + "173", + "1785", + "1871", + "19", + "1939", + "2017", + "207", + "2266", + "22853", + "23039", + "23062", + "23161", + "23163", + "23197", + "23214", + "23390", + "23499", + "23511", + "23534", + "23787", + "23788", + "257364", + "25782", + "25813", + "25837", + "25999", + "26060", + "26088", + "26154", + "26276", + "26517", + "26519", + "26520", + "26521", + "26985", + "27183", + "27236", + "27351", + "2803", + "288", + "29090", + "29098", + "29886", + "29927", + "29928", + "3092", + "3308", + "3309", + "3312", + "3315", + "3320", + "343035", + "3434", + "345611", + "348", + "3587", + "3651", + "372", + "374969", + "375056", + "379", + "3836", + "3837", + "3838", + "3840", + "3842", + "3843", + "3875", + "387849", + "389692", + "392", + "3920", + "3998", + "399979", + "401548", + "4036", + "404636", + "4053", + "4321", + "440738", + "4547", + "4591", + "4627", + "4734", + "4760", + "481", + "4869", + "4905", + "51009", + "51025", + "51079", + "51125", + "51128", + "51172", + "51375", + "51429", + "51501", + "51762", + "5189", + "5190", + "5191", + "5192", + "5194", + "5195", + "53353", + "54097", + "5468", + "54732", + "5476", + "54918", + "550", + "55027", + "55122", + "5514", + "55198", + "55240", + "5538", + "5539", + "55437", + "5551", + "55666", + "55670", + "55705", + "55717", + "55737", + "55750", + "5579", + "55829", + "56478", + "56993", + "57154", + "57192", + "57333", + "57393", + "57510", + "5798", + "582", + "5824", + "5828", + "583", + "5830", + "58533", + "5901", + "5903", + "602", + "6103", + "63894", + "63932", + "63971", + "6400", + "64083", + "64089", + "64149", + "64328", + "653808", + "6642", + "6653", + "6711", + "6774", + "6788", + "6789", + "6836", + "6850", + "6993", + "7036", + "7037", + "7040", + "7095", + "7175", + "7184", + "7353", + "7415", + "7436", + "7514", + "754", + "7857", + "7879", + "79139", + "79158", + "79711", + "79792", + "79971", + "8021", + "8031", + "811", + "81502", + "81562", + "81609", + "81671", + "81693", + "821", + "8239", + "83871", + "84068", + "84268", + "84447", + "84747", + "8504", + "8548", + "8723", + "8878", + "8943", + "90580", + "90678", + "9094", + "9131", + "9146", + "917", + "9179", + "91949", + "92305", + "92335", + "92714", + "93145", + "9371", + "9409", + "948", + "950", + "9522", + "9531", + "9601", + "9619", + "9648", + "9670", + "9709", + "9765", + "9847", + "9874", + "9895" + ] + }, + "GO:0032102": { + "Name": "negative regulation of response to external stimulus", + "Task": "GO", + "Genes": [ + "1003", + "100507436", + "10221", + "10563", + "10769", + "10859", + "11027", + "11240", + "11274", + "11277", + "11326", + "114548", + "114897", + "114899", + "117285", + "135228", + "1365", + "1378", + "1398", + "140885", + "142", + "1432", + "145581", + "147945", + "149095", + "149461", + "152138", + "1652", + "170692", + "1803", + "1814", + "1843", + "1845", + "1906", + "196", + "197358", + "199", + "2", + "2000", + "201292", + "2137", + "2147", + "2160", + "2161", + "2213", + "2243", + "2244", + "2247", + "2266", + "2268", + "22900", + "22914", + "22915", + "22978", + "23005", + "23122", + "23170", + "23220", + "23332", + "2358", + "240", + "245928", + "2534", + "25939", + "26058", + "26146", + "2625", + "2629", + "2693", + "27202", + "2811", + "284340", + "285", + "2852", + "2896", + "29883", + "3055", + "3105", + "3106", + "3123", + "3133", + "3134", + "3135", + "325", + "3273", + "335", + "3428", + "345611", + "3479", + "348", + "350", + "3565", + "3586", + "3587", + "3596", + "3630", + "3805", + "3818", + "3821", + "3824", + "3827", + "383", + "387837", + "3965", + "401397", + "405", + "4057", + "4067", + "409", + "4210", + "4277", + "4282", + "4598", + "4795", + "4851", + "4856", + "4938", + "4940", + "5045", + "5054", + "5055", + "5068", + "5094", + "51441", + "5154", + "5155", + "5156", + "51738", + "5270", + "5272", + "5327", + "5328", + "5335", + "5340", + "5345", + "54209", + "54625", + "5465", + "5468", + "5495", + "55527", + "55646", + "55737", + "5580", + "55829", + "5592", + "55966", + "5598", + "5624", + "56339", + "56547", + "57175", + "5728", + "5734", + "5740", + "57506", + "5771", + "5777", + "5788", + "58509", + "59307", + "60343", + "6091", + "6092", + "6095", + "6223", + "6318", + "634", + "6347", + "64116", + "64771", + "6714", + "6737", + "6773", + "6774", + "6850", + "6895", + "7010", + "7035", + "7040", + "7056", + "7057", + "708", + "710", + "7114", + "7124", + "7128", + "7130", + "7132", + "727", + "730249", + "7448", + "7525", + "7534", + "79102", + "79132", + "79594", + "79651", + "79890", + "80263", + "8087", + "81542", + "83481", + "83737", + "84166", + "84243", + "84640", + "84830", + "8573", + "8815", + "89790", + "90070", + "90102", + "90268", + "90355", + "90865", + "9111", + "9140", + "91662", + "9212", + "9258", + "928", + "9314", + "9353", + "9470", + "9474", + "9636", + "9856", + "9958" + ] + }, + "GO:0051051": { + "Name": "negative regulation of transport", + "Task": "GO", + "Genes": [ + "10008", + "10062", + "10079", + "10288", + "10345", + "10399", + "10681", + "10825", + "10859", + "10956", + "10961", + "11060", + "1113", + "11141", + "11261", + "11314", + "11315", + "1193", + "120892", + "124930", + "124935", + "130497", + "131177", + "1393", + "1394", + "1409", + "140947", + "1410", + "1445", + "150", + "150684", + "150696", + "151", + "152", + "1813", + "1814", + "1815", + "192683", + "1950", + "20", + "2042", + "2056", + "2065", + "207", + "208", + "2185", + "2213", + "2280", + "2281", + "23208", + "23327", + "23409", + "23479", + "23630", + "255738", + "2564", + "257364", + "258010", + "25953", + "26056", + "26297", + "2697", + "27236", + "27248", + "27347", + "283518", + "285381", + "2859", + "285966", + "29091", + "2931", + "2946", + "29934", + "29978", + "29979", + "301", + "302", + "3071", + "3084", + "3134", + "3146", + "336", + "337867", + "338692", + "341", + "344", + "345", + "347", + "348", + "351", + "353500", + "3589", + "3592", + "3593", + "3625", + "3630", + "3638", + "3667", + "3685", + "3690", + "3753", + "3757", + "3767", + "382", + "392", + "3952", + "3958", + "3965", + "3976", + "4043", + "4318", + "4345", + "4734", + "4762", + "4790", + "4842", + "497189", + "4988", + "5008", + "5071", + "50852", + "51009", + "51024", + "51465", + "51569", + "5167", + "51684", + "51715", + "51719", + "51763", + "5350", + "5359", + "54106", + "54550", + "55022", + "55198", + "55432", + "55737", + "5581", + "55829", + "5587", + "55917", + "5657", + "5663", + "57119", + "57120", + "580", + "5879", + "5905", + "5978", + "5987", + "6248", + "6311", + "634", + "6386", + "6406", + "64111", + "6422", + "6424", + "64285", + "6588", + "6622", + "6672", + "6717", + "6721", + "6781", + "6814", + "6860", + "7009", + "7057", + "7175", + "7327", + "7341", + "7376", + "7416", + "7531", + "7879", + "7881", + "79693", + "79890", + "80223", + "80762", + "808", + "817", + "8291", + "8301", + "83452", + "84058", + "84079", + "845", + "84830", + "8501", + "8529", + "857", + "859", + "8609", + "8660", + "8673", + "8682", + "8724", + "88", + "8832", + "88455", + "90678", + "91319", + "91404", + "91543", + "9341", + "9370", + "9446", + "945", + "9525", + "9647", + "9711", + "972", + "9727", + "9972", + "9992" + ] + }, + "GO:1903829": { + "Name": "positive regulation of protein localization", + "Task": "GO", + "Genes": [ + "100507043", + "10059", + "101", + "10134", + "10155", + "1025", + "10268", + "10307", + "10391", + "10399", + "10411", + "10445", + "10497", + "10519", + "10541", + "10542", + "10551", + "10574", + "10575", + "10576", + "10694", + "1080", + "10807", + "10857", + "10972", + "10979", + "11132", + "11143", + "11156", + "11190", + "11235", + "11315", + "114899", + "125170", + "1263", + "1387", + "149628", + "151636", + "153241", + "161291", + "163882", + "1736", + "1739", + "1855", + "1950", + "1956", + "1969", + "1981", + "2010", + "2033", + "2035", + "2037", + "2042", + "2064", + "207", + "2147", + "2181", + "222546", + "2243", + "2244", + "2266", + "22948", + "22994", + "23086", + "2316", + "23171", + "23379", + "23400", + "23607", + "23636", + "245812", + "2534", + "257364", + "25921", + "25930", + "2621", + "2622", + "26229", + "26354", + "2645", + "27032", + "27063", + "27237", + "27346", + "2746", + "2770", + "283", + "2852", + "285966", + "29098", + "2931", + "2932", + "29775", + "29801", + "29899", + "3059", + "3123", + "322", + "324", + "3265", + "3305", + "3326", + "3458", + "3479", + "3552", + "3630", + "3670", + "3675", + "3688", + "3716", + "3728", + "3745", + "3799", + "382", + "391", + "3958", + "3985", + "399687", + "4035", + "4137", + "43", + "4478", + "4628", + "4641", + "4804", + "4926", + "493", + "5071", + "50855", + "51024", + "51068", + "5108", + "51112", + "51124", + "5116", + "51160", + "51366", + "51548", + "51574", + "51614", + "5170", + "5174", + "5175", + "51768", + "5290", + "5295", + "5319", + "5347", + "54209", + "54471", + "54543", + "54550", + "54552", + "5478", + "5481", + "54984", + "55004", + "55107", + "55135", + "55166", + "55204", + "55294", + "5532", + "55691", + "55696", + "55704", + "55737", + "55741", + "55754", + "5580", + "5581", + "5583", + "55835", + "55929", + "56257", + "5663", + "56947", + "57142", + "57214", + "57506", + "57555", + "57628", + "57707", + "57787", + "5780", + "5901", + "59353", + "5950", + "5962", + "636", + "63928", + "640", + "64083", + "64328", + "65267", + "6622", + "6653", + "6711", + "6809", + "6810", + "6934", + "6950", + "7015", + "7016", + "7037", + "7040", + "7042", + "7043", + "7097", + "7099", + "7107", + "7124", + "7130", + "7175", + "7203", + "7273", + "7297", + "7305", + "7430", + "7443", + "7474", + "7476", + "7531", + "79567", + "79608", + "79752", + "7984", + "79899", + "79971", + "80149", + "80184", + "80279", + "83666", + "83667", + "8536", + "85409", + "85459", + "8736", + "8754", + "8841", + "8882", + "8934", + "8938", + "89866", + "90550", + "908", + "9141", + "94103", + "94121", + "945", + "9475", + "9495", + "9531", + "9619", + "9662", + "9695", + "9696", + "9747", + "975", + "9777", + "983", + "9847", + "9854", + "999" + ] + }, + "GO:0033993": { + "Name": "response to lipid", + "Task": "GO", + "Genes": [ + "10018", + "10062", + "10221", + "10288", + "1032", + "10413", + "10474", + "10521", + "10524", + "1066", + "1080", + "10856", + "11057", + "1109", + "111", + "11184", + "112", + "11240", + "11344", + "114548", + "114609", + "114881", + "116151", + "117854", + "1234", + "1236", + "124641", + "133522", + "1373", + "1385", + "1393", + "140596", + "1432", + "149233", + "1499", + "1511", + "151306", + "151556", + "153090", + "1591", + "1594", + "1616", + "1645", + "1646", + "1655", + "1667", + "1668", + "1956", + "196", + "2042", + "2099", + "2100", + "211", + "2185", + "2242", + "2264", + "22843", + "22938", + "23064", + "23081", + "23118", + "23543", + "23558", + "23641", + "23643", + "23729", + "26191", + "2627", + "26273", + "2688", + "2692", + "27", + "27063", + "27429", + "2822", + "284254", + "2852", + "2864", + "2865", + "2867", + "2878", + "2908", + "29108", + "2932", + "301", + "3015", + "3055", + "3169", + "3192", + "3294", + "3303", + "3304", + "3312", + "337", + "340485", + "342979", + "345611", + "353376", + "3553", + "3557", + "3569", + "3576", + "358", + "3586", + "3592", + "360", + "3627", + "3638", + "3654", + "367", + "387", + "389643", + "3929", + "3965", + "4040", + "4058", + "4067", + "4087", + "4091", + "4246", + "4257", + "4277", + "4314", + "4318", + "4478", + "4734", + "476", + "477", + "4790", + "4795", + "4824", + "503618", + "5054", + "50801", + "51079", + "51141", + "51366", + "51510", + "5165", + "5166", + "5241", + "5244", + "5245", + "5292", + "5336", + "54209", + "5458", + "5469", + "54929", + "54997", + "55593", + "55625", + "558", + "55809", + "55818", + "55829", + "55914", + "5594", + "5599", + "56848", + "57162", + "57178", + "5727", + "5737", + "5753", + "5754", + "58509", + "5914", + "5916", + "5950", + "5970", + "5976", + "5978", + "5979", + "6095", + "6097", + "6256", + "6348", + "6363", + "6366", + "6372", + "6401", + "6403", + "64127", + "6528", + "6622", + "6696", + "677", + "6774", + "6777", + "678", + "6850", + "6868", + "687", + "7040", + "7042", + "7043", + "7046", + "7048", + "7049", + "7057", + "7099", + "7110", + "7124", + "7128", + "7133", + "7189", + "728358", + "7292", + "730249", + "7332", + "7337", + "7431", + "7494", + "7533", + "7538", + "79039", + "79931", + "80139", + "80149", + "811", + "81285", + "8202", + "8204", + "8289", + "834", + "840", + "84458", + "84660", + "857", + "8611", + "8644", + "8725", + "8751", + "8754", + "8835", + "8854", + "8915", + "90933", + "92140", + "923", + "92595", + "9325", + "9373", + "9475", + "949", + "9525", + "9572", + "9619", + "9971" + ] + }, + "GO:0045785": { + "Name": "positive regulation of cell adhesion", + "Task": "GO", + "Genes": [ + "100133941", + "10076", + "1012", + "10148", + "1021", + "10211", + "10272", + "10288", + "10519", + "10524", + "10551", + "10562", + "10630", + "10725", + "10808", + "10859", + "10979", + "11006", + "11078", + "11126", + "11148", + "11221", + "1236", + "126259", + "1307", + "1326", + "1378", + "1398", + "1399", + "1445", + "149233", + "1511", + "1604", + "177", + "1793", + "1803", + "199", + "201163", + "2013", + "201627", + "2041", + "2043", + "2064", + "207", + "2113", + "2185", + "2243", + "2244", + "2266", + "22914", + "22915", + "2309", + "23149", + "2316", + "2319", + "23308", + "2335", + "246", + "2475", + "25", + "2525", + "2529", + "2534", + "25865", + "25930", + "259307", + "2651", + "284114", + "29108", + "29126", + "2932", + "29984", + "30008", + "301", + "3037", + "3071", + "30835", + "3105", + "3109", + "3113", + "3115", + "3122", + "3123", + "3133", + "3135", + "3146", + "3169", + "3170", + "3273", + "3329", + "3346", + "335", + "3373", + "3381", + "3458", + "3479", + "3481", + "3485", + "3553", + "3558", + "3565", + "3569", + "3572", + "3592", + "3593", + "3594", + "3606", + "3611", + "3654", + "3685", + "3716", + "3717", + "3728", + "3791", + "387", + "3952", + "3965", + "3976", + "3987", + "399", + "4067", + "4092", + "4179", + "4192", + "4284", + "4301", + "4653", + "4680", + "4690", + "4739", + "4838", + "4860", + "5034", + "50848", + "50943", + "51206", + "5155", + "51561", + "5170", + "5290", + "5329", + "5345", + "5420", + "54453", + "54566", + "5530", + "55423", + "55604", + "55626", + "5578", + "5645", + "56477", + "566", + "57091", + "5777", + "5781", + "57829", + "5795", + "5879", + "5881", + "59067", + "5914", + "59339", + "5970", + "5979", + "604", + "6046", + "6188", + "6237", + "6239", + "6251", + "6281", + "6288", + "6366", + "6370", + "6375", + "6376", + "6387", + "64115", + "64410", + "6484", + "64926", + "6541", + "655", + "6714", + "6809", + "6810", + "7010", + "7016", + "7030", + "7037", + "7042", + "7048", + "7070", + "708", + "7082", + "7124", + "7189", + "7248", + "7264", + "7297", + "7402", + "7409", + "7412", + "7494", + "7525", + "7535", + "78986", + "79576", + "80005", + "8013", + "80381", + "811", + "81704", + "84034", + "8440", + "84433", + "84466", + "84978", + "857", + "8600", + "8613", + "8631", + "8646", + "8651", + "8728", + "8740", + "8754", + "8764", + "8784", + "8829", + "8995", + "9092", + "912", + "916", + "91663", + "9223", + "923", + "9289", + "940", + "948", + "959", + "960", + "961", + "9647", + "970", + "975", + "9780" + ] + }, + "GO:0051046": { + "Name": "regulation of secretion", + "Task": "GO", + "Genes": [ + "10015", + "100507043", + "10059", + "10079", + "101", + "10307", + "10497", + "1066", + "1080", + "10814", + "10815", + "10859", + "10961", + "10972", + "111", + "1113", + "11132", + "11141", + "11267", + "11314", + "114", + "114897", + "114899", + "120892", + "131177", + "134957", + "1392", + "1393", + "140947", + "150", + "151", + "152", + "1579", + "1588", + "164", + "1813", + "1814", + "1815", + "1906", + "1908", + "192683", + "1950", + "201294", + "2029", + "2065", + "2150", + "2181", + "2213", + "222546", + "2242", + "2243", + "2244", + "2255", + "2266", + "22999", + "23011", + "23086", + "23122", + "23208", + "23275", + "23332", + "23400", + "23409", + "23607", + "242", + "252983", + "2587", + "25930", + "25953", + "26056", + "26281", + "26297", + "2645", + "2661", + "2668", + "2691", + "2695", + "2696", + "2697", + "27063", + "27183", + "27236", + "27243", + "27345", + "2746", + "283", + "285381", + "28984", + "29091", + "301", + "3071", + "3077", + "30817", + "3084", + "3123", + "3134", + "322", + "3458", + "3479", + "348", + "353500", + "3552", + "3553", + "3569", + "358", + "3589", + "3592", + "3593", + "3623", + "3624", + "3625", + "3630", + "3667", + "3670", + "3684", + "3689", + "3741", + "376267", + "3767", + "382", + "3822", + "3916", + "3965", + "3976", + "399687", + "43", + "4345", + "4544", + "4628", + "4646", + "4760", + "4762", + "4824", + "4843", + "4879", + "4881", + "497189", + "4988", + "5008", + "50487", + "5071", + "51083", + "51124", + "5127", + "51548", + "51652", + "51738", + "51768", + "5319", + "5413", + "54209", + "5478", + "5481", + "55107", + "55204", + "553", + "55636", + "55691", + "57126", + "57555", + "57589", + "57617", + "57818", + "58533", + "5864", + "5868", + "5873", + "5874", + "5898", + "5950", + "5978", + "63036", + "634", + "6382", + "6385", + "6386", + "640", + "64083", + "64111", + "64175", + "64215", + "6422", + "64285", + "6446", + "6616", + "6622", + "6696", + "6781", + "6804", + "6810", + "6812", + "6814", + "6844", + "6845", + "6853", + "6857", + "6860", + "6934", + "7021", + "7036", + "7040", + "7042", + "7043", + "7097", + "7099", + "7124", + "7251", + "7273", + "7349", + "7784", + "7849", + "7879", + "79643", + "79971", + "80024", + "80223", + "8027", + "83452", + "8399", + "8448", + "84830", + "84932", + "8529", + "8609", + "8673", + "8723", + "8736", + "8754", + "8832", + "8938", + "90070", + "9024", + "90550", + "9146", + "91543", + "9341", + "9367", + "94121", + "945", + "9463", + "9525", + "9545", + "9581", + "9607", + "9619", + "9627", + "972", + "9727", + "9854", + "9971" + ] + }, + "GO:0051640": { + "Name": "organelle localization", + "Task": "GO", + "Genes": [ + "10013", + "10015", + "10016", + "10053", + "10059", + "10113", + "10128", + "10142", + "10244", + "1025", + "10403", + "10464", + "10490", + "10494", + "10524", + "10540", + "1058", + "1062", + "1063", + "10652", + "10726", + "10768", + "10814", + "10948", + "10959", + "10972", + "10987", + "11004", + "11011", + "11127", + "1113", + "11235", + "113130", + "11342", + "117177", + "117194", + "118426", + "118987", + "1201", + "120892", + "126353", + "128866", + "137886", + "1453", + "147841", + "151648", + "152185", + "157769", + "1639", + "1739", + "1778", + "1780", + "1861", + "196996", + "201163", + "220134", + "2205", + "221150", + "221927", + "22863", + "22919", + "22920", + "23122", + "23172", + "23207", + "23212", + "23224", + "23241", + "23277", + "23332", + "23411", + "23557", + "23636", + "2475", + "256364", + "25777", + "25900", + "259266", + "25978", + "26001", + "26258", + "26276", + "2647", + "2669", + "2697", + "27183", + "27243", + "27436", + "282991", + "283489", + "29058", + "2908", + "29899", + "3064", + "3091", + "3281", + "348235", + "3688", + "3799", + "3815", + "3833", + "3834", + "3835", + "3837", + "387695", + "388552", + "3985", + "4000", + "4033", + "4085", + "4134", + "4135", + "4137", + "4218", + "4534", + "4627", + "4640", + "4644", + "4747", + "487", + "488", + "4926", + "4935", + "4976", + "5048", + "51068", + "51112", + "51134", + "5119", + "51203", + "51490", + "51510", + "51652", + "5189", + "5195", + "5293", + "5294", + "5310", + "5347", + "5413", + "54664", + "54732", + "54785", + "54820", + "54843", + "54874", + "54908", + "54984", + "55014", + "55062", + "55143", + "55154", + "55156", + "55165", + "55166", + "55171", + "55201", + "55288", + "553115", + "5537", + "55435", + "55669", + "55717", + "55770", + "55773", + "55968", + "56245", + "5664", + "56907", + "57082", + "57132", + "57405", + "57584", + "5861", + "5864", + "5870", + "5873", + "5901", + "5925", + "59349", + "6209", + "636", + "63915", + "64149", + "64837", + "65082", + "6795", + "7016", + "7248", + "7314", + "7405", + "7430", + "7514", + "7534", + "7756", + "79003", + "79036", + "7942", + "79443", + "79567", + "79594", + "79643", + "79803", + "79998", + "80179", + "80208", + "81", + "81610", + "81620", + "81671", + "81929", + "81930", + "83540", + "83871", + "83930", + "84080", + "8409", + "8417", + "84376", + "84501", + "8452", + "84643", + "84722", + "84984", + "8499", + "8517", + "858", + "8673", + "8678", + "8697", + "8729", + "8766", + "8773", + "8841", + "891", + "89941", + "9043", + "90809", + "91272", + "91782", + "9183", + "9184", + "9212", + "9218", + "92421", + "9321", + "9341", + "9342", + "9368", + "9371", + "94121", + "9525", + "9842", + "9927", + "9928" + ] + }, + "GO:0030029": { + "Name": "actin filament-based process", + "Task": "GO", + "Genes": [ + "100287171", + "10052", + "10092", + "10093", + "10094", + "10095", + "10096", + "10097", + "10109", + "10435", + "10459", + "10529", + "10552", + "10677", + "1072", + "1073", + "10788", + "10810", + "11034", + "11151", + "11235", + "114793", + "116985", + "116986", + "118", + "119", + "123720", + "1365", + "1398", + "140465", + "146206", + "149461", + "150", + "1525", + "154796", + "165904", + "1739", + "1785", + "1794", + "199", + "2013", + "2039", + "221061", + "221692", + "2245", + "2252", + "2255", + "226", + "22808", + "22998", + "23043", + "2316", + "23171", + "2318", + "23189", + "23370", + "23380", + "23396", + "23433", + "23527", + "23607", + "23616", + "23630", + "23647", + "24142", + "253260", + "253980", + "25802", + "2693", + "2697", + "27032", + "27183", + "27289", + "283431", + "287", + "2885", + "29085", + "29127", + "2919", + "2934", + "29780", + "29984", + "301", + "3059", + "3071", + "3551", + "358", + "359", + "3636", + "3645", + "3688", + "3693", + "3741", + "3753", + "375307", + "3757", + "3759", + "3760", + "3762", + "3764", + "3784", + "3815", + "382", + "387", + "3880", + "390", + "391", + "3936", + "3996", + "399687", + "408", + "4287", + "440193", + "442721", + "4430", + "4621", + "4624", + "4625", + "4626", + "4627", + "4628", + "4637", + "4644", + "4647", + "4650", + "476", + "4771", + "50488", + "5058", + "50848", + "51466", + "51474", + "5170", + "51738", + "5318", + "5319", + "5341", + "54434", + "54509", + "54551", + "54566", + "54749", + "54784", + "54874", + "55604", + "55761", + "55800", + "5592", + "56203", + "56776", + "56907", + "57026", + "57175", + "57381", + "57471", + "5754", + "57553", + "57580", + "5770", + "58", + "58529", + "5879", + "5880", + "5881", + "5911", + "5987", + "60", + "6093", + "6323", + "6324", + "6327", + "6330", + "6331", + "6401", + "64780", + "6624", + "6640", + "6708", + "6711", + "6714", + "70", + "7082", + "7124", + "7126", + "7139", + "7168", + "7184", + "7273", + "7401", + "7429", + "7430", + "7454", + "7456", + "752", + "775", + "776", + "7791", + "781", + "7827", + "783", + "79031", + "79585", + "79784", + "79983", + "80179", + "80725", + "81", + "825", + "83715", + "83872", + "8394", + "84033", + "84168", + "84193", + "84501", + "8452", + "84665", + "8476", + "84952", + "85360", + "85369", + "85462", + "85464", + "85477", + "8557", + "8572", + "87", + "88", + "8936", + "8976", + "9024", + "91010", + "9172", + "9181", + "9266", + "9294", + "9344", + "93627", + "94134", + "9475", + "9564", + "9578", + "9645", + "9722", + "9788", + "9828", + "9844", + "9938", + "9992" + ] + }, + "GO:0043632": { + "Name": "modification-dependent macromolecule catabolic process", + "Task": "GO", + "Genes": [ + "10116", + "10206", + "10210", + "10213", + "10273", + "10277", + "10299", + "10425", + "10513", + "10524", + "10537", + "10616", + "10956", + "10973", + "11060", + "11065", + "11074", + "114088", + "1161", + "116138", + "117584", + "118424", + "122416", + "122773", + "123803", + "124997", + "128866", + "130617", + "137492", + "144699", + "148066", + "149095", + "149603", + "1499", + "151636", + "1642", + "1649", + "165918", + "200845", + "200933", + "223082", + "22933", + "22954", + "23008", + "23032", + "23053", + "23194", + "23220", + "23291", + "23327", + "23352", + "23411", + "23532", + "23588", + "23624", + "253980", + "255488", + "25793", + "25820", + "25827", + "25853", + "25879", + "25898", + "25930", + "25978", + "26001", + "26046", + "26133", + "26224", + "26234", + "26235", + "26249", + "26263", + "26267", + "26268", + "26270", + "26272", + "26273", + "267", + "26994", + "27183", + "27243", + "27246", + "27252", + "27338", + "283219", + "283807", + "29062", + "29128", + "3093", + "329", + "339745", + "3429", + "343070", + "378884", + "408", + "409", + "4193", + "440561", + "4734", + "4738", + "4780", + "4850", + "5071", + "5094", + "51160", + "51185", + "5119", + "51271", + "51283", + "51343", + "51449", + "51510", + "51514", + "51608", + "51652", + "51667", + "51676", + "5371", + "54461", + "54476", + "54546", + "54764", + "54894", + "54941", + "55122", + "55236", + "5527", + "55284", + "55294", + "55527", + "55626", + "55658", + "55666", + "55743", + "56254", + "56929", + "5701", + "5705", + "57092", + "57132", + "57154", + "57162", + "5717", + "57531", + "57534", + "57542", + "57563", + "57646", + "57674", + "5930", + "6047", + "6048", + "63891", + "64282", + "64320", + "64326", + "64410", + "6451", + "64750", + "6477", + "6478", + "64839", + "6500", + "65018", + "6502", + "6872", + "6992", + "7126", + "7251", + "7267", + "728369", + "7320", + "7321", + "7323", + "7324", + "7326", + "7327", + "7329", + "7332", + "7334", + "7337", + "7353", + "7415", + "7428", + "7706", + "7726", + "7917", + "79643", + "79654", + "79734", + "79791", + "79845", + "80176", + "80196", + "80263", + "80311", + "81545", + "81847", + "8239", + "8266", + "83737", + "83892", + "8405", + "84078", + "84133", + "84164", + "84447", + "8451", + "8452", + "8453", + "8454", + "84727", + "84861", + "867", + "8697", + "8878", + "8945", + "89853", + "89890", + "899", + "9025", + "90850", + "9112", + "91445", + "9147", + "91782", + "92305", + "92369", + "92421", + "92714", + "9320", + "9325", + "93343", + "9354", + "9361", + "9491", + "9525", + "9604", + "9695", + "9817", + "9867", + "9870", + "991", + "9921", + "9928", + "997", + "9978" + ] + }, + "GO:0019941": { + "Name": "modification-dependent protein catabolic process", + "Task": "GO", + "Genes": [ + "10116", + "10206", + "10210", + "10213", + "10273", + "10277", + "10299", + "10425", + "10513", + "10524", + "10537", + "10616", + "10956", + "10973", + "11060", + "11065", + "11074", + "114088", + "1161", + "116138", + "117584", + "118424", + "122416", + "122773", + "123803", + "124997", + "128866", + "130617", + "137492", + "144699", + "148066", + "149095", + "149603", + "1499", + "151636", + "1642", + "1649", + "165918", + "200845", + "200933", + "223082", + "22933", + "22954", + "23008", + "23032", + "23053", + "23194", + "23220", + "23291", + "23327", + "23352", + "23411", + "23532", + "23588", + "23624", + "253980", + "255488", + "25793", + "25820", + "25827", + "25853", + "25879", + "25898", + "25930", + "25978", + "26001", + "26046", + "26133", + "26224", + "26234", + "26235", + "26249", + "26263", + "26267", + "26268", + "26270", + "26272", + "26273", + "267", + "26994", + "27183", + "27243", + "27246", + "27252", + "27338", + "283219", + "283807", + "29062", + "29128", + "3093", + "329", + "339745", + "3429", + "343070", + "378884", + "408", + "409", + "4193", + "440561", + "4734", + "4738", + "4780", + "4850", + "5071", + "5094", + "51160", + "51185", + "5119", + "51271", + "51283", + "51343", + "51449", + "51510", + "51514", + "51608", + "51652", + "51667", + "51676", + "5371", + "54461", + "54476", + "54546", + "54764", + "54894", + "54941", + "55122", + "55236", + "5527", + "55284", + "55294", + "55527", + "55626", + "55658", + "55666", + "55743", + "56254", + "56929", + "5701", + "5705", + "57092", + "57132", + "57154", + "57162", + "5717", + "57531", + "57534", + "57542", + "57563", + "57646", + "57674", + "5930", + "6047", + "6048", + "63891", + "64320", + "64326", + "64410", + "6451", + "64750", + "6477", + "6478", + "64839", + "6500", + "65018", + "6502", + "6872", + "6992", + "7126", + "7251", + "7267", + "728369", + "7320", + "7321", + "7323", + "7324", + "7326", + "7327", + "7329", + "7332", + "7334", + "7337", + "7353", + "7415", + "7428", + "7706", + "7726", + "7917", + "79643", + "79654", + "79734", + "79791", + "79845", + "80176", + "80196", + "80263", + "80311", + "81545", + "81847", + "8239", + "8266", + "83737", + "83892", + "8405", + "84078", + "84133", + "84164", + "84447", + "8451", + "8452", + "8453", + "8454", + "84727", + "84861", + "867", + "8697", + "8878", + "8945", + "89853", + "89890", + "899", + "9025", + "90850", + "9112", + "91445", + "9147", + "91782", + "92305", + "92369", + "92421", + "92714", + "9320", + "9325", + "93343", + "9354", + "9361", + "9491", + "9525", + "9604", + "9695", + "9817", + "9867", + "9870", + "991", + "9921", + "9928", + "997", + "9978" + ] + }, + "GO:0031344": { + "Name": "regulation of cell projection organization", + "Task": "GO", + "Genes": [ + "100287171", + "10096", + "10097", + "10109", + "10152", + "10163", + "10198", + "10371", + "10413", + "10435", + "10507", + "10519", + "10630", + "10677", + "10690", + "1072", + "10787", + "10801", + "10806", + "10807", + "11075", + "11135", + "11138", + "11344", + "114798", + "115704", + "116985", + "120892", + "1236", + "125058", + "126520", + "128637", + "139818", + "1400", + "146206", + "148170", + "1496", + "150696", + "152559", + "158297", + "161514", + "162427", + "1630", + "1826", + "1902", + "1948", + "1969", + "2011", + "202018", + "2033", + "2039", + "2042", + "207", + "2185", + "2213", + "2241", + "2242", + "225689", + "22871", + "22954", + "23043", + "23061", + "23064", + "23102", + "23189", + "23191", + "23216", + "23271", + "23303", + "2332", + "23329", + "23363", + "23433", + "23499", + "23500", + "23580", + "23603", + "23637", + "23654", + "255758", + "25771", + "25793", + "2580", + "2596", + "26000", + "26153", + "26259", + "2665", + "2672", + "27", + "27352", + "2803", + "285016", + "2889", + "29116", + "3064", + "322", + "324", + "3265", + "3273", + "345643", + "347240", + "347733", + "348", + "348110", + "3630", + "374403", + "377630", + "378", + "382", + "389658", + "3985", + "4058", + "4067", + "4134", + "4137", + "4168", + "4192", + "4504", + "4651", + "4914", + "49856", + "5027", + "50487", + "5064", + "51196", + "51256", + "51466", + "51473", + "51626", + "51657", + "5168", + "5205", + "5216", + "5217", + "5337", + "5365", + "53841", + "54209", + "54443", + "54521", + "54662", + "54825", + "54869", + "54874", + "54986", + "55296", + "55357", + "55604", + "55633", + "55704", + "55737", + "5584", + "55845", + "5587", + "5663", + "56896", + "57118", + "57142", + "57175", + "57465", + "57471", + "57489", + "5753", + "57533", + "5754", + "57689", + "57787", + "5780", + "5868", + "5879", + "5880", + "5898", + "5909", + "5911", + "5962", + "5979", + "6014", + "6091", + "6092", + "6239", + "627", + "6366", + "642273", + "64689", + "64786", + "64787", + "64805", + "64844", + "653", + "653464", + "655", + "6624", + "6695", + "6714", + "6792", + "7016", + "7226", + "729873", + "7401", + "7429", + "7454", + "7471", + "7813", + "79598", + "79625", + "79734", + "79735", + "79874", + "80199", + "80725", + "8100", + "81618", + "818", + "83874", + "84260", + "8428", + "84299", + "8482", + "8499", + "8536", + "8558", + "857", + "8766", + "8829", + "8934", + "90410", + "9139", + "91752", + "9353", + "93650", + "9529", + "960", + "9662", + "9693", + "9696", + "9712", + "9727", + "9738", + "9742", + "9750", + "9779", + "9856", + "989" + ] + }, + "GO:1901342": { + "Name": "regulation of vasculature development", + "Task": "GO", + "Genes": [ + "10016", + "1003", + "100506013", + "10218", + "10253", + "10298", + "10365", + "10411", + "10553", + "11005", + "11061", + "11126", + "1116", + "112744", + "1139", + "116844", + "1232", + "126259", + "126393", + "127385", + "128240", + "1284", + "1285", + "1386", + "146850", + "1499", + "153090", + "154796", + "161742", + "1634", + "168667", + "187", + "1870", + "1893", + "1944", + "2013", + "2041", + "2113", + "2152", + "2246", + "2247", + "22846", + "22905", + "23166", + "2321", + "23213", + "23251", + "23328", + "23411", + "2549", + "25865", + "2624", + "2627", + "26523", + "2658", + "27161", + "27329", + "2752", + "284361", + "28984", + "28996", + "2969", + "29924", + "306", + "30832", + "3091", + "3099", + "3135", + "3162", + "3202", + "3273", + "3315", + "3339", + "3346", + "3373", + "350", + "3553", + "356", + "3569", + "3576", + "358", + "3627", + "3678", + "3687", + "3688", + "3696", + "3716", + "3728", + "3791", + "3952", + "4086", + "4192", + "4204", + "4303", + "4763", + "4814", + "4838", + "4846", + "4879", + "4881", + "493", + "5054", + "51129", + "51378", + "5140", + "51548", + "5170", + "5176", + "5196", + "5230", + "5291", + "5294", + "5315", + "5335", + "5371", + "54361", + "5468", + "55109", + "55333", + "5578", + "55810", + "5587", + "56005", + "57343", + "57381", + "5740", + "575", + "57556", + "5797", + "5970", + "6019", + "6050", + "6093", + "6237", + "6271", + "6301", + "6387", + "63923", + "64094", + "641700", + "65125", + "6667", + "6672", + "6678", + "672", + "6772", + "6786", + "694", + "7010", + "7040", + "7042", + "7046", + "7057", + "7058", + "7082", + "7122", + "7124", + "7453", + "7474", + "7494", + "7852", + "79031", + "79805", + "79924", + "80149", + "8038", + "84034", + "8742", + "8817", + "8823", + "8838", + "8877", + "889", + "90139", + "90993", + "9146", + "92140", + "9314", + "947", + "9475", + "9510", + "958" + ] + }, + "GO:0006511": { + "Name": "ubiquitin-dependent protein catabolic process", + "Task": "GO", + "Genes": [ + "10116", + "10206", + "10210", + "10213", + "10273", + "10277", + "10299", + "10425", + "10513", + "10524", + "10537", + "10616", + "10956", + "10973", + "11060", + "11065", + "11074", + "114088", + "1161", + "116138", + "117584", + "118424", + "122416", + "122773", + "123803", + "124997", + "128866", + "130617", + "137492", + "144699", + "148066", + "149095", + "149603", + "1499", + "151636", + "1642", + "1649", + "165918", + "200845", + "200933", + "223082", + "22933", + "22954", + "23008", + "23032", + "23053", + "23194", + "23220", + "23291", + "23327", + "23352", + "23411", + "23532", + "23588", + "23624", + "253980", + "255488", + "25793", + "25820", + "25827", + "25853", + "25879", + "25898", + "25930", + "25978", + "26001", + "26046", + "26133", + "26224", + "26234", + "26235", + "26249", + "26263", + "26267", + "26268", + "26270", + "26272", + "26273", + "267", + "26994", + "27183", + "27243", + "27246", + "27252", + "27338", + "283219", + "283807", + "29062", + "29128", + "3093", + "329", + "339745", + "3429", + "343070", + "378884", + "408", + "409", + "4193", + "440561", + "4734", + "4738", + "4780", + "4850", + "5071", + "5094", + "51160", + "51185", + "5119", + "51271", + "51283", + "51343", + "51510", + "51514", + "51608", + "51652", + "51667", + "51676", + "5371", + "54461", + "54476", + "54546", + "54764", + "54894", + "54941", + "55122", + "55236", + "5527", + "55284", + "55294", + "55527", + "55626", + "55658", + "55666", + "55743", + "56254", + "56929", + "5701", + "5705", + "57092", + "57132", + "57154", + "57162", + "5717", + "57531", + "57534", + "57542", + "57563", + "57646", + "57674", + "5930", + "6047", + "6048", + "63891", + "64320", + "64326", + "64410", + "6451", + "64750", + "6477", + "6478", + "64839", + "6500", + "65018", + "6502", + "6872", + "6992", + "7126", + "7251", + "7267", + "728369", + "7320", + "7321", + "7323", + "7324", + "7326", + "7327", + "7329", + "7332", + "7334", + "7337", + "7353", + "7415", + "7428", + "7706", + "7726", + "7917", + "79643", + "79654", + "79734", + "79791", + "79845", + "80176", + "80196", + "80263", + "80311", + "81545", + "81847", + "8239", + "8266", + "83737", + "83892", + "8405", + "84078", + "84133", + "84164", + "84447", + "8451", + "8452", + "8453", + "8454", + "84727", + "84861", + "867", + "8697", + "8878", + "8945", + "89853", + "89890", + "899", + "9025", + "90850", + "9112", + "91445", + "9147", + "91782", + "92305", + "92369", + "92421", + "92714", + "9320", + "9325", + "93343", + "9354", + "9491", + "9525", + "9604", + "9695", + "9817", + "9867", + "9870", + "991", + "9921", + "9928", + "997", + "9978" + ] + }, + "GO:0120035": { + "Name": "regulation of plasma membrane bounded cell projection organization", + "Task": "GO", + "Genes": [ + "100287171", + "10096", + "10097", + "10109", + "10152", + "10163", + "10198", + "10371", + "10413", + "10435", + "10507", + "10519", + "10630", + "10677", + "10690", + "1072", + "10787", + "10801", + "10806", + "10807", + "11075", + "11135", + "11138", + "11344", + "114798", + "115704", + "116985", + "120892", + "1236", + "125058", + "126520", + "128637", + "139818", + "1400", + "146206", + "148170", + "1496", + "152559", + "158297", + "161514", + "162427", + "1630", + "1826", + "1902", + "1948", + "1969", + "2011", + "202018", + "2033", + "2039", + "2042", + "207", + "2185", + "2213", + "2241", + "2242", + "225689", + "22871", + "22954", + "23043", + "23061", + "23064", + "23102", + "23189", + "23191", + "23216", + "23271", + "23303", + "2332", + "23329", + "23363", + "23433", + "23499", + "23500", + "23580", + "23603", + "23637", + "23654", + "255758", + "25771", + "25793", + "2580", + "2596", + "26000", + "26153", + "26259", + "2665", + "2672", + "27", + "27352", + "2803", + "285016", + "2889", + "29116", + "3064", + "322", + "324", + "3265", + "3273", + "345643", + "347240", + "347733", + "348", + "348110", + "3630", + "374403", + "377630", + "378", + "382", + "389658", + "3985", + "4058", + "4067", + "4134", + "4137", + "4168", + "4192", + "4504", + "4651", + "4914", + "49856", + "5027", + "50487", + "5064", + "51196", + "51256", + "51466", + "51473", + "51626", + "51657", + "5168", + "5205", + "5216", + "5217", + "5337", + "5365", + "53841", + "54209", + "54443", + "54521", + "54662", + "54825", + "54869", + "54874", + "54986", + "55296", + "55357", + "55604", + "55633", + "55704", + "55737", + "5584", + "55845", + "5587", + "5663", + "56896", + "57118", + "57142", + "57175", + "57465", + "57489", + "5753", + "57533", + "5754", + "57689", + "57787", + "5780", + "5868", + "5879", + "5880", + "5898", + "5909", + "5911", + "5962", + "5979", + "6014", + "6091", + "6092", + "6239", + "627", + "6366", + "64689", + "64786", + "64787", + "64805", + "64844", + "653", + "653464", + "655", + "6624", + "6695", + "6714", + "6792", + "7016", + "7226", + "729873", + "7401", + "7429", + "7454", + "7471", + "7813", + "79598", + "79625", + "79734", + "79735", + "79874", + "80199", + "80725", + "8100", + "81618", + "818", + "83874", + "84260", + "8428", + "84299", + "8482", + "8499", + "8536", + "8558", + "857", + "8766", + "8829", + "8934", + "90410", + "9139", + "91752", + "9353", + "93650", + "9529", + "960", + "9662", + "9693", + "9696", + "9712", + "9727", + "9738", + "9742", + "9750", + "9779", + "9856", + "989" + ] + }, + "GO:0070848": { + "Name": "response to growth factor", + "Task": "GO", + "Genes": [ + "10013", + "1003", + "10253", + "10399", + "10519", + "10563", + "10637", + "10817", + "10818", + "10979", + "11075", + "11173", + "11344", + "116150", + "126520", + "1278", + "1281", + "1399", + "1432", + "148738", + "1499", + "151449", + "153090", + "1601", + "163126", + "1655", + "1745", + "1795", + "1845", + "1915", + "1960", + "1969", + "2010", + "2022", + "2064", + "207", + "2081", + "2246", + "2247", + "2248", + "2249", + "2250", + "2251", + "2252", + "2253", + "2254", + "2255", + "2260", + "2261", + "2263", + "2264", + "2296", + "23064", + "2321", + "2324", + "2331", + "2339", + "23411", + "2353", + "2549", + "25778", + "25865", + "25878", + "2591", + "26060", + "2615", + "2627", + "26281", + "2651", + "2658", + "2661", + "2662", + "27063", + "27250", + "27302", + "27429", + "283375", + "2889", + "2908", + "301", + "3036", + "3037", + "3077", + "3082", + "3096", + "3164", + "3248", + "3315", + "335", + "3373", + "3397", + "3688", + "3693", + "3725", + "3791", + "392255", + "4053", + "4086", + "4087", + "4088", + "4089", + "409", + "4090", + "4091", + "4092", + "4093", + "4137", + "4141", + "4208", + "4435", + "4609", + "463", + "4641", + "4851", + "4914", + "5045", + "51256", + "5151", + "5155", + "5156", + "5159", + "5170", + "51701", + "51741", + "51763", + "5290", + "5293", + "5335", + "54567", + "5468", + "5469", + "55198", + "55273", + "55553", + "5587", + "5594", + "5595", + "5598", + "5606", + "5641", + "5678", + "56940", + "57154", + "57175", + "57178", + "5747", + "57556", + "5781", + "5782", + "5796", + "5829", + "5970", + "6198", + "6272", + "6422", + "644815", + "6464", + "64762", + "650", + "652", + "653", + "654", + "655", + "657", + "658", + "659", + "6591", + "6657", + "6660", + "6662", + "6714", + "677", + "6774", + "678", + "6885", + "6997", + "7040", + "7042", + "7043", + "7046", + "7048", + "7049", + "7122", + "7175", + "7429", + "7538", + "7791", + "79625", + "81792", + "8200", + "8239", + "836", + "83637", + "864", + "8646", + "8692", + "8725", + "8754", + "8826", + "8829", + "8877", + "8882", + "8895", + "8928", + "90", + "90417", + "9141", + "9158", + "92", + "92154", + "9261", + "9270", + "93", + "9314", + "9372", + "9392", + "94", + "94056", + "9497", + "9518", + "9564", + "960", + "9702", + "9958", + "9965" + ] + }, + "GO:0042176": { + "Name": "regulation of protein catabolic process", + "Task": "GO", + "Genes": [ + "10098", + "101", + "10134", + "1017", + "10193", + "10197", + "10213", + "1027", + "10273", + "10399", + "10444", + "10459", + "1050", + "10533", + "10769", + "10869", + "11011", + "11124", + "11146", + "11200", + "11213", + "112398", + "11267", + "11315", + "11337", + "11345", + "113451", + "114881", + "116224", + "116986", + "1191", + "1263", + "135644", + "139285", + "140462", + "144165", + "1452", + "1457", + "1471", + "150", + "150684", + "153090", + "153769", + "1601", + "160418", + "161582", + "1642", + "165324", + "1728", + "1855", + "1956", + "20", + "207", + "210", + "2272", + "22933", + "2295", + "2308", + "2316", + "23376", + "23400", + "23429", + "23450", + "23555", + "23640", + "255738", + "257364", + "258010", + "25898", + "25976", + "26262", + "2629", + "26471", + "2670", + "267012", + "27074", + "27351", + "2768", + "2822", + "283106", + "29062", + "2931", + "2932", + "29761", + "29763", + "29934", + "29978", + "29979", + "29997", + "302", + "3077", + "324", + "3300", + "3303", + "3320", + "3326", + "338657", + "3416", + "3458", + "348", + "3553", + "3586", + "3630", + "4035", + "4085", + "4092", + "4193", + "4194", + "4287", + "4478", + "4734", + "474383", + "474384", + "4745", + "4780", + "4898", + "4905", + "4946", + "5045", + "5071", + "51035", + "51079", + "51105", + "51136", + "51160", + "51201", + "51257", + "51322", + "51339", + "51377", + "51429", + "51514", + "51548", + "51582", + "51667", + "5245", + "5300", + "5310", + "5347", + "5476", + "55070", + "55212", + "55270", + "55294", + "55353", + "5566", + "55737", + "5582", + "55823", + "56658", + "56776", + "56893", + "5701", + "5702", + "5705", + "5706", + "5716", + "57589", + "5774", + "57805", + "5886", + "5887", + "5962", + "5988", + "6093", + "641700", + "64285", + "64326", + "6449", + "64844", + "65992", + "6613", + "6622", + "6625", + "6653", + "6811", + "6815", + "6872", + "6880", + "7076", + "7078", + "7124", + "7128", + "7133", + "722", + "725", + "7314", + "7341", + "7415", + "7430", + "7432", + "7474", + "7514", + "7874", + "7879", + "7917", + "79589", + "79643", + "79699", + "80011", + "80279", + "8078", + "81542", + "81610", + "819", + "8239", + "8263", + "8312", + "83547", + "83844", + "8451", + "84640", + "8473", + "85407", + "85409", + "857", + "863", + "8667", + "8724", + "8742", + "8975", + "9097", + "9101", + "91445", + "9146", + "9491", + "9529", + "9554", + "9655", + "9709", + "9730", + "975", + "9817", + "9827", + "9978", + "9992" + ] + }, + "GO:0045765": { + "Name": "regulation of angiogenesis", + "Task": "GO", + "Genes": [ + "10016", + "1003", + "100506013", + "10253", + "10298", + "10365", + "10411", + "10553", + "11005", + "11061", + "11126", + "1116", + "112744", + "1139", + "116844", + "1232", + "126259", + "126393", + "127385", + "128240", + "1284", + "1285", + "1386", + "146850", + "1499", + "153090", + "154796", + "161742", + "1634", + "168667", + "187", + "1870", + "1893", + "1944", + "2013", + "2041", + "2113", + "2152", + "2246", + "2247", + "22846", + "22905", + "23166", + "2321", + "23213", + "23251", + "23328", + "23411", + "2549", + "25865", + "2624", + "2627", + "26523", + "2658", + "27161", + "27329", + "2752", + "284361", + "28984", + "28996", + "2969", + "29924", + "306", + "30832", + "3091", + "3099", + "3135", + "3162", + "3202", + "3273", + "3315", + "3339", + "3346", + "3373", + "350", + "3553", + "356", + "3569", + "3576", + "358", + "3627", + "3678", + "3687", + "3688", + "3696", + "3716", + "3728", + "3791", + "3952", + "4086", + "4192", + "4204", + "4303", + "4763", + "4814", + "4838", + "4846", + "4879", + "4881", + "493", + "5054", + "51129", + "51378", + "5140", + "51548", + "5170", + "5176", + "5196", + "5230", + "5291", + "5294", + "5315", + "5335", + "5371", + "5468", + "55109", + "55333", + "5578", + "55810", + "5587", + "56005", + "57343", + "57381", + "5740", + "575", + "57556", + "5797", + "5970", + "6019", + "6050", + "6093", + "6237", + "6271", + "6301", + "63923", + "64094", + "641700", + "65125", + "6667", + "6672", + "6678", + "672", + "6772", + "6786", + "694", + "7010", + "7042", + "7057", + "7058", + "7082", + "7122", + "7124", + "7453", + "7474", + "7494", + "79031", + "79805", + "79924", + "80149", + "8038", + "84034", + "8742", + "8817", + "8823", + "8838", + "8877", + "889", + "90139", + "90993", + "9146", + "92140", + "9314", + "947", + "9475", + "9510", + "958" + ] + }, + "GO:0043254": { + "Name": "regulation of protein-containing complex assembly", + "Task": "GO", + "Genes": [ + "10013", + "10018", + "1003", + "10142", + "1015", + "10273", + "10344", + "10382", + "10399", + "10435", + "10456", + "10565", + "10979", + "11074", + "11075", + "11076", + "11124", + "11315", + "114609", + "115362", + "118", + "119", + "1191", + "1236", + "134510", + "136319", + "140609", + "1410", + "143098", + "1437", + "1440", + "146206", + "147138", + "148170", + "152138", + "152485", + "153090", + "157922", + "1639", + "1654", + "19", + "197358", + "1981", + "2017", + "2033", + "21", + "2185", + "2241", + "2242", + "225689", + "22900", + "22919", + "22924", + "22943", + "23189", + "23271", + "23379", + "23500", + "23514", + "23521", + "24139", + "24144", + "25", + "253725", + "2580", + "258010", + "25802", + "25827", + "25999", + "260434", + "26054", + "26146", + "26191", + "2629", + "2670", + "286430", + "28964", + "2932", + "2934", + "29922", + "29997", + "3054", + "3055", + "3059", + "3071", + "3084", + "3146", + "3273", + "3297", + "3303", + "3304", + "3312", + "3320", + "3375", + "345611", + "3458", + "348", + "3567", + "3642", + "373509", + "382", + "388630", + "3925", + "3936", + "3958", + "402", + "4133", + "4137", + "4204", + "4210", + "4233", + "4312", + "4314", + "442721", + "4690", + "472", + "4733", + "4926", + "4985", + "5058", + "5063", + "50964", + "51100", + "51112", + "51339", + "51451", + "51571", + "5216", + "5217", + "5336", + "54209", + "545", + "54552", + "54751", + "54922", + "55355", + "55612", + "55626", + "55719", + "55729", + "55755", + "55845", + "5590", + "55971", + "5599", + "56919", + "56926", + "5734", + "57482", + "57506", + "57600", + "57606", + "57662", + "57763", + "57787", + "578", + "5781", + "581", + "5830", + "58497", + "5879", + "5894", + "5908", + "5921", + "5925", + "6047", + "6188", + "6249", + "6356", + "6366", + "6369", + "637", + "638", + "6403", + "64581", + "64857", + "65018", + "6622", + "6624", + "6653", + "6714", + "6812", + "6850", + "6886", + "6904", + "695", + "7013", + "7037", + "7040", + "7067", + "7114", + "7124", + "7157", + "7186", + "7341", + "7408", + "7415", + "7429", + "7453", + "79184", + "79738", + "79998", + "80772", + "81559", + "81857", + "822", + "83700", + "84079", + "8408", + "84250", + "8440", + "84630", + "84885", + "84962", + "85477", + "8631", + "8739", + "8780", + "8874", + "89795", + "9026", + "90952", + "9113", + "91663", + "9353", + "93663", + "948", + "9636", + "96459", + "9780", + "9793", + "9829", + "9928" + ] + }, + "GO:0022411": { + "Name": "cellular component disassembly", + "Task": "GO", + "Genes": [ + "10013", + "10023", + "100287171", + "101", + "102", + "10211", + "10226", + "10399", + "10490", + "10524", + "10533", + "10595", + "1072", + "1073", + "10767", + "10783", + "10904", + "10973", + "10985", + "11004", + "11034", + "11096", + "11132", + "11198", + "11331", + "1215", + "123", + "124056", + "1263", + "126731", + "128866", + "130399", + "132671", + "138428", + "139341", + "146909", + "149371", + "1511", + "1513", + "1515", + "1520", + "1524", + "162427", + "162989", + "1639", + "164656", + "1677", + "1776", + "1939", + "196528", + "1991", + "2107", + "219402", + "22863", + "22943", + "22980", + "22985", + "23008", + "23175", + "23192", + "23197", + "23376", + "23399", + "23647", + "23708", + "24144", + "25793", + "2580", + "25851", + "25898", + "25978", + "26046", + "26058", + "26100", + "26235", + "26276", + "26993", + "27183", + "27243", + "27341", + "27443", + "285590", + "285636", + "28985", + "2932", + "2934", + "2935", + "29979", + "30849", + "3159", + "3249", + "327", + "3312", + "3396", + "347240", + "3796", + "3915", + "3925", + "3936", + "4134", + "4312", + "4313", + "4314", + "4316", + "4317", + "4318", + "4319", + "4320", + "4321", + "4322", + "4323", + "4324", + "4327", + "440738", + "4609", + "4739", + "4778", + "488", + "5045", + "5071", + "51024", + "51095", + "5119", + "51250", + "51368", + "51506", + "51510", + "51569", + "51652", + "5195", + "5289", + "5340", + "5347", + "53918", + "54463", + "545", + "54516", + "55014", + "55139", + "55520", + "5562", + "55626", + "5563", + "5578", + "5579", + "5644", + "5645", + "5650", + "57104", + "57132", + "57231", + "57553", + "57701", + "5830", + "6059", + "6376", + "63894", + "6418", + "64320", + "64601", + "64780", + "6499", + "65018", + "65082", + "6591", + "6597", + "6598", + "6599", + "65992", + "6601", + "6602", + "6603", + "6604", + "6605", + "668", + "6683", + "6737", + "6749", + "6790", + "6811", + "6845", + "6901", + "7141", + "7153", + "7177", + "7251", + "7405", + "7415", + "7429", + "7443", + "79643", + "79752", + "79876", + "80183", + "80279", + "80349", + "81631", + "81671", + "81930", + "822", + "8289", + "83743", + "84164", + "84305", + "84340", + "8444", + "84557", + "84643", + "84749", + "84971", + "8562", + "8673", + "8678", + "8729", + "8751", + "8878", + "90850", + "9100", + "9147", + "91574", + "91782", + "92399", + "92421", + "92815", + "9325", + "9342", + "9349", + "9470", + "9507", + "9525", + "9604", + "9617", + "9645", + "9652", + "9793", + "987" + ] + }, + "GO:1903530": { + "Name": "regulation of secretion by cell", + "Task": "GO", + "Genes": [ + "10015", + "100507043", + "10059", + "10079", + "101", + "10307", + "10497", + "1080", + "10814", + "10815", + "10859", + "10961", + "10972", + "111", + "1113", + "11132", + "11141", + "11267", + "11314", + "114", + "114897", + "114899", + "120892", + "131177", + "134957", + "1392", + "1393", + "150", + "151", + "152", + "1588", + "164", + "1813", + "1814", + "1815", + "1906", + "1908", + "192683", + "201294", + "2029", + "2150", + "2213", + "222546", + "2242", + "2243", + "2244", + "2266", + "22999", + "23011", + "23086", + "23122", + "23208", + "23332", + "23400", + "23409", + "23607", + "252983", + "2587", + "25930", + "25953", + "26056", + "26281", + "26297", + "2645", + "2661", + "2668", + "2691", + "2695", + "2696", + "2697", + "27063", + "27183", + "27236", + "27243", + "27345", + "2746", + "283", + "285381", + "28984", + "29091", + "301", + "3071", + "3077", + "30817", + "3123", + "3134", + "322", + "3458", + "3479", + "348", + "353500", + "3552", + "3553", + "3569", + "3589", + "3592", + "3593", + "3623", + "3624", + "3625", + "3630", + "3667", + "3670", + "3684", + "3689", + "3741", + "376267", + "3767", + "382", + "3822", + "3916", + "3965", + "3976", + "399687", + "43", + "4345", + "4544", + "4628", + "4760", + "4824", + "4843", + "4988", + "5008", + "50487", + "5071", + "51083", + "51124", + "5127", + "51548", + "51652", + "51738", + "51768", + "5319", + "5413", + "54209", + "5478", + "5481", + "55107", + "55204", + "55636", + "55691", + "57126", + "57555", + "57589", + "57617", + "57818", + "58533", + "5864", + "5868", + "5873", + "5874", + "5898", + "5950", + "5978", + "63036", + "634", + "6382", + "6385", + "6386", + "640", + "64083", + "64111", + "64175", + "64215", + "6422", + "64285", + "6616", + "6622", + "6696", + "6804", + "6810", + "6812", + "6814", + "6844", + "6845", + "6853", + "6857", + "6860", + "6934", + "7021", + "7036", + "7040", + "7042", + "7043", + "7097", + "7099", + "7124", + "7251", + "7273", + "7349", + "7784", + "7849", + "7879", + "79643", + "79971", + "80024", + "80223", + "8027", + "83452", + "8399", + "8448", + "84830", + "84932", + "8609", + "8673", + "8723", + "8736", + "8754", + "8832", + "8938", + "9024", + "90550", + "9146", + "91543", + "9341", + "9367", + "94121", + "945", + "9463", + "9525", + "9545", + "9581", + "9607", + "9619", + "9627", + "9727", + "9854", + "9971" + ] + }, + "GO:0071363": { + "Name": "cellular response to growth factor stimulus", + "Task": "GO", + "Genes": [ + "1003", + "10253", + "10399", + "10519", + "10563", + "10637", + "10817", + "10818", + "10979", + "11075", + "11173", + "11344", + "116150", + "126520", + "1278", + "1281", + "1399", + "1432", + "148738", + "1499", + "151449", + "153090", + "1601", + "163126", + "1655", + "1745", + "1795", + "1845", + "1915", + "1960", + "2010", + "2022", + "2064", + "207", + "2081", + "2246", + "2247", + "2248", + "2249", + "2250", + "2251", + "2252", + "2253", + "2254", + "2255", + "2260", + "2261", + "2263", + "2264", + "2296", + "23064", + "2321", + "2324", + "2331", + "2339", + "23411", + "2353", + "2549", + "25778", + "25865", + "2591", + "26060", + "2615", + "26281", + "2651", + "2658", + "2661", + "2662", + "27063", + "27250", + "27302", + "27429", + "283375", + "2889", + "2908", + "301", + "3036", + "3037", + "3077", + "3082", + "3096", + "3164", + "3248", + "3315", + "335", + "3373", + "3397", + "3688", + "3693", + "3725", + "3791", + "392255", + "4053", + "4086", + "4087", + "4088", + "4089", + "409", + "4090", + "4091", + "4092", + "4093", + "4137", + "4141", + "4208", + "4435", + "4641", + "4851", + "4914", + "5045", + "5151", + "5155", + "5156", + "5159", + "5170", + "51701", + "51741", + "51763", + "5290", + "5293", + "5335", + "54567", + "5468", + "5469", + "55198", + "55273", + "55553", + "5587", + "5595", + "5598", + "5606", + "5641", + "5678", + "56940", + "57154", + "57175", + "57178", + "5747", + "57556", + "5781", + "5782", + "5796", + "5829", + "5970", + "6198", + "6272", + "6422", + "644815", + "6464", + "64762", + "650", + "652", + "653", + "654", + "655", + "657", + "658", + "659", + "6591", + "6660", + "6662", + "6714", + "677", + "6774", + "678", + "6885", + "6997", + "7040", + "7042", + "7043", + "7046", + "7048", + "7049", + "7122", + "7429", + "7538", + "7791", + "79625", + "81792", + "8200", + "8239", + "836", + "83637", + "8646", + "8692", + "8725", + "8754", + "8826", + "8829", + "8877", + "8882", + "8895", + "8928", + "90", + "90417", + "9141", + "9158", + "92", + "92154", + "9261", + "9270", + "93", + "9314", + "9372", + "9392", + "94", + "94056", + "9497", + "9518", + "9564", + "960", + "9702", + "9958", + "9965" + ] + }, + "GO:0072657": { + "Name": "protein localization to membrane", + "Task": "GO", + "Genes": [ + "100133941", + "10098", + "10133", + "10139", + "10211", + "10243", + "10266", + "10267", + "10268", + "10328", + "10430", + "10670", + "10890", + "10959", + "10981", + "11031", + "11187", + "1121", + "11231", + "112609", + "117177", + "128866", + "129303", + "130617", + "132112", + "1363", + "145567", + "158234", + "158866", + "161176", + "1678", + "1739", + "1742", + "1956", + "1969", + "221079", + "22844", + "22930", + "22979", + "23043", + "23062", + "23065", + "23122", + "2316", + "23163", + "23167", + "2319", + "23241", + "23420", + "23463", + "23471", + "23499", + "23555", + "23682", + "23759", + "23787", + "23788", + "25782", + "2580", + "25813", + "25837", + "25921", + "26003", + "26088", + "26154", + "2621", + "26225", + "26517", + "26519", + "26520", + "26521", + "2803", + "283576", + "283820", + "284098", + "284361", + "285521", + "285590", + "286", + "287", + "288", + "29927", + "29928", + "30845", + "3308", + "3309", + "3320", + "340348", + "344892", + "348", + "3551", + "3676", + "3683", + "3689", + "3695", + "3728", + "375790", + "382", + "3875", + "4040", + "408050", + "439", + "4641", + "481", + "483", + "4836", + "4864", + "50848", + "51016", + "51079", + "51100", + "51125", + "51201", + "51234", + "51304", + "51398", + "51560", + "51608", + "51735", + "51762", + "5284", + "5318", + "54499", + "54997", + "55004", + "55107", + "55146", + "55625", + "55690", + "55704", + "55737", + "55750", + "55800", + "55831", + "55969", + "56246", + "56851", + "56926", + "56993", + "57003", + "57130", + "57154", + "57217", + "5727", + "57512", + "5764", + "57728", + "582", + "5824", + "583", + "5830", + "5870", + "5872", + "5906", + "5911", + "5962", + "6093", + "6281", + "637", + "64083", + "64108", + "64112", + "64121", + "6449", + "64689", + "65055", + "65125", + "65267", + "653361", + "6711", + "6727", + "6728", + "6729", + "673", + "6734", + "6745", + "6746", + "6812", + "682", + "7095", + "7124", + "7132", + "7430", + "7485", + "7871", + "7879", + "79156", + "7917", + "79568", + "79803", + "81619", + "81693", + "8174", + "819", + "81926", + "8266", + "83460", + "83597", + "83871", + "8394", + "84668", + "84896", + "8504", + "85377", + "85409", + "8548", + "8766", + "88", + "8934", + "8943", + "90580", + "9146", + "91663", + "92162", + "9230", + "92359", + "9270", + "93380", + "9368", + "9370", + "9409", + "9475", + "9648", + "9693", + "9694", + "9697", + "975", + "999" + ] + }, + "GO:0002833": { + "Name": "positive regulation of response to biotic stimulus", + "Task": "GO", + "Genes": [ + "10062", + "10084", + "10125", + "10211", + "10392", + "10432", + "10612", + "10614", + "10621", + "10622", + "10623", + "10666", + "11027", + "11117", + "11126", + "11213", + "11331", + "114548", + "114609", + "1147", + "114836", + "115004", + "115362", + "117854", + "121260", + "135250", + "1387", + "140609", + "144811", + "146722", + "148022", + "1520", + "1535", + "1540", + "164", + "1654", + "1687", + "171389", + "2033", + "2150", + "2219", + "22841", + "22861", + "22900", + "22914", + "23180", + "23328", + "23369", + "2358", + "23586", + "23643", + "23705", + "2534", + "2547", + "25818", + "259197", + "25921", + "25942", + "26057", + "26191", + "26253", + "285852", + "2867", + "29108", + "29110", + "29126", + "3055", + "3093", + "3123", + "3133", + "3134", + "3135", + "3140", + "3146", + "3273", + "3303", + "3304", + "331", + "3320", + "3329", + "338322", + "340061", + "3428", + "3430", + "345611", + "353091", + "353376", + "354", + "3551", + "3592", + "3593", + "3654", + "3656", + "3661", + "3665", + "373509", + "377630", + "3805", + "3822", + "3824", + "383", + "3843", + "389856", + "3916", + "3929", + "3965", + "4057", + "4064", + "4067", + "4153", + "4792", + "4841", + "4938", + "4940", + "5058", + "5062", + "5063", + "51135", + "51295", + "51311", + "51435", + "5225", + "5245", + "5336", + "5359", + "54106", + "54502", + "55223", + "55269", + "55577", + "55601", + "55703", + "55765", + "5578", + "5591", + "5599", + "5608", + "56253", + "5650", + "56832", + "56919", + "57402", + "57506", + "57590", + "57724", + "57787", + "57864", + "5817", + "5819", + "59067", + "5970", + "6223", + "64127", + "64135", + "6421", + "661", + "6714", + "6850", + "6885", + "695", + "7096", + "7097", + "7098", + "7099", + "7100", + "7128", + "7187", + "7189", + "7294", + "730249", + "7305", + "7474", + "7520", + "7531", + "7706", + "79132", + "79184", + "79931", + "80196", + "80216", + "80231", + "80342", + "81035", + "81545", + "81570", + "81622", + "81844", + "83666", + "83737", + "839", + "84034", + "84166", + "84282", + "84937", + "85363", + "85364", + "857", + "8638", + "8678", + "8767", + "8772", + "8780", + "8915", + "89870", + "90268", + "90933", + "912", + "91445", + "9258", + "92610", + "9390", + "9447", + "9450", + "9641", + "9698", + "9782", + "9865", + "9867", + "9868", + "9958" + ] + }, + "GO:0051223": { + "Name": "regulation of protein transport", + "Task": "GO", + "Genes": [ + "10023", + "100507043", + "10059", + "101", + "10134", + "10155", + "10307", + "10399", + "10411", + "10497", + "10541", + "1080", + "10857", + "10956", + "10961", + "10972", + "11060", + "111", + "11132", + "11235", + "11261", + "11315", + "114", + "114899", + "1263", + "127933", + "131177", + "1445", + "150", + "161291", + "163882", + "1813", + "1814", + "1815", + "2010", + "2029", + "2033", + "2181", + "222546", + "2243", + "2244", + "2266", + "22994", + "23086", + "2316", + "23256", + "23379", + "23400", + "23409", + "23607", + "252983", + "258010", + "25930", + "26056", + "26130", + "2621", + "26229", + "26297", + "2645", + "2695", + "2696", + "27032", + "27063", + "27236", + "27248", + "27346", + "2746", + "283", + "285381", + "2932", + "29934", + "3059", + "3123", + "322", + "3301", + "3312", + "337867", + "3429", + "3458", + "347", + "3479", + "348", + "353500", + "3552", + "3553", + "3569", + "3592", + "3593", + "3630", + "3638", + "3667", + "3670", + "3728", + "3741", + "3767", + "382", + "3936", + "399687", + "43", + "4345", + "4544", + "4628", + "4760", + "4843", + "4988", + "5071", + "51009", + "5108", + "51124", + "5116", + "51160", + "5127", + "51366", + "51465", + "51548", + "51569", + "51614", + "51684", + "51715", + "51768", + "5295", + "5319", + "54209", + "5478", + "5481", + "55107", + "55204", + "55432", + "55691", + "55696", + "55741", + "55754", + "5580", + "55929", + "5663", + "57506", + "57555", + "5770", + "57818", + "5784", + "580", + "5901", + "5905", + "5950", + "5978", + "6248", + "63036", + "63928", + "640", + "64083", + "64175", + "64215", + "6422", + "64285", + "64328", + "652", + "6616", + "6653", + "6672", + "6804", + "6810", + "6934", + "7021", + "7040", + "7042", + "7043", + "7097", + "7099", + "7124", + "7175", + "7273", + "7327", + "7341", + "7531", + "79567", + "79752", + "7984", + "79899", + "79971", + "80024", + "80149", + "80184", + "80223", + "80762", + "81565", + "84830", + "8536", + "8609", + "8724", + "8736", + "8754", + "8841", + "8882", + "8934", + "8938", + "89866", + "9024", + "90550", + "91319", + "9141", + "91543", + "9370", + "94121", + "945", + "9463", + "9495", + "9531", + "9619", + "9647", + "9648", + "9695", + "9727", + "975", + "9777", + "9854", + "9971", + "999" + ] + }, + "GO:0033674": { + "Name": "positive regulation of kinase activity", + "Task": "GO", + "Genes": [ + "10006", + "100133941", + "10040", + "10111", + "10125", + "1026", + "10454", + "10464", + "1062", + "10892", + "10899", + "10920", + "10961", + "10979", + "11035", + "11235", + "11315", + "116", + "116986", + "120892", + "1236", + "128344", + "143384", + "1436", + "146433", + "148252", + "149233", + "150", + "151", + "152", + "152110", + "153090", + "154", + "1616", + "1654", + "1742", + "1815", + "183", + "1856", + "1894", + "1906", + "1908", + "1917", + "1942", + "1950", + "1956", + "2011", + "2013", + "205428", + "2064", + "2069", + "207", + "2081", + "2146", + "2147", + "2185", + "219736", + "219771", + "2209", + "221938", + "2246", + "2247", + "2260", + "22924", + "22974", + "23118", + "2321", + "2322", + "23328", + "23411", + "23531", + "245711", + "25", + "2547", + "255324", + "25778", + "2621", + "2688", + "283", + "284", + "284254", + "285489", + "28984", + "29775", + "3084", + "3123", + "3265", + "3320", + "3326", + "3357", + "345611", + "3458", + "3479", + "3491", + "353514", + "3553", + "3565", + "3593", + "3630", + "3643", + "3690", + "387", + "3952", + "4057", + "4216", + "4217", + "4294", + "4296", + "4361", + "4486", + "4504", + "4683", + "4739", + "4908", + "4921", + "493", + "5058", + "51149", + "51347", + "51422", + "51429", + "5154", + "5155", + "51561", + "5170", + "51719", + "5294", + "54209", + "54465", + "54769", + "5478", + "55011", + "5515", + "55294", + "55437", + "55704", + "5571", + "5580", + "5604", + "5605", + "5606", + "5618", + "5621", + "5629", + "566", + "56892", + "57091", + "57103", + "5716", + "57214", + "5747", + "57679", + "5770", + "5871", + "5899", + "595", + "6091", + "6188", + "6283", + "6363", + "63967", + "65018", + "653361", + "6622", + "6714", + "6794", + "6868", + "6885", + "6997", + "7042", + "7057", + "7124", + "7164", + "7186", + "7189", + "7295", + "7474", + "7520", + "7564", + "796", + "7984", + "80725", + "808", + "80829", + "8091", + "8312", + "84630", + "8536", + "8600", + "8754", + "8792", + "8817", + "8826", + "894", + "896", + "90441", + "9094", + "920", + "92335", + "9270", + "9344", + "9370", + "94056", + "958", + "9618", + "9693", + "972", + "9770", + "9928", + "9966" + ] + }, + "GO:0006650": { + "Name": "glycerophospholipid metabolic process", + "Task": "GO", + "Genes": [ + "100137049", + "10026", + "10162", + "1040", + "10400", + "10423", + "10554", + "10555", + "1071", + "10908", + "1103", + "11145", + "1119", + "1120", + "114879", + "114882", + "114884", + "117245", + "117283", + "1201", + "123745", + "126969", + "128869", + "129303", + "129642", + "133121", + "137964", + "145567", + "150763", + "151056", + "154141", + "1606", + "1608", + "160851", + "1609", + "1622", + "171586", + "200576", + "200879", + "204962", + "21", + "222236", + "22863", + "22876", + "22979", + "23049", + "23167", + "23236", + "23396", + "23446", + "23556", + "23659", + "23761", + "253558", + "254531", + "255043", + "255189", + "26090", + "26279", + "27124", + "27163", + "27315", + "2822", + "283748", + "283871", + "284098", + "3030", + "30849", + "335", + "336", + "337", + "3612", + "3633", + "3635", + "3636", + "3706", + "3707", + "376497", + "3931", + "3990", + "4534", + "4952", + "50487", + "50640", + "51099", + "51205", + "51227", + "5130", + "51365", + "51447", + "51573", + "5159", + "51604", + "5168", + "51763", + "5277", + "5279", + "5281", + "5283", + "5286", + "5289", + "5291", + "5294", + "5297", + "5298", + "5305", + "5319", + "5320", + "5321", + "5322", + "5330", + "5331", + "5333", + "5336", + "5337", + "5338", + "5341", + "54344", + "5444", + "54675", + "54872", + "54947", + "54979", + "55300", + "55326", + "55361", + "55500", + "55529", + "55627", + "55650", + "56623", + "56894", + "56895", + "56994", + "57048", + "57110", + "57153", + "5728", + "57605", + "57678", + "5833", + "5920", + "63874", + "64419", + "64600", + "64924", + "65258", + "660", + "6901", + "7405", + "79143", + "7941", + "79837", + "79888", + "80055", + "80235", + "80271", + "80339", + "80736", + "81490", + "83394", + "8394", + "8395", + "8396", + "8398", + "8399", + "84188", + "84302", + "8443", + "84668", + "84803", + "84879", + "84947", + "84992", + "8525", + "8526", + "8527", + "85465", + "8605", + "8678", + "8733", + "8760", + "8776", + "8813", + "8818", + "8821", + "8867", + "8871", + "8897", + "8898", + "90809", + "9091", + "9107", + "9108", + "9110", + "93210", + "94005", + "9468", + "9487", + "9488", + "9588", + "9600", + "9791", + "9807", + "9896", + "9926" + ] + }, + "GO:0002764": { + "Name": "immune response-regulating signaling pathway", + "Task": "GO", + "Genes": [ + "100133941", + "10288", + "10392", + "10451", + "10603", + "10616", + "10657", + "10859", + "10892", + "11006", + "11027", + "11119", + "11213", + "11331", + "114548", + "114609", + "1147", + "115004", + "121665", + "1378", + "1387", + "1445", + "144811", + "146722", + "148022", + "1493", + "1512", + "1520", + "1540", + "163486", + "171389", + "196051", + "1967", + "199920", + "2033", + "2207", + "2213", + "2219", + "2268", + "22841", + "22861", + "22900", + "23149", + "23180", + "23547", + "2358", + "23586", + "23643", + "25", + "2533", + "2534", + "25800", + "25865", + "259197", + "26191", + "26253", + "27040", + "2822", + "2867", + "29108", + "29110", + "29126", + "29760", + "3055", + "3071", + "30968", + "3105", + "3115", + "3119", + "3123", + "3135", + "331", + "3329", + "340061", + "345611", + "353376", + "3551", + "3635", + "3654", + "3656", + "3661", + "3665", + "3802", + "3815", + "3821", + "3822", + "3824", + "3843", + "387837", + "3929", + "3937", + "3965", + "3984", + "4067", + "4153", + "4214", + "4277", + "4332", + "4773", + "4792", + "4938", + "4940", + "5058", + "5062", + "5063", + "51135", + "51295", + "51311", + "51324", + "5142", + "51435", + "5144", + "5245", + "5284", + "5290", + "5293", + "5335", + "5336", + "5338", + "54106", + "55024", + "55072", + "55765", + "5580", + "5581", + "5588", + "5599", + "5601", + "5608", + "5609", + "5678", + "57402", + "5747", + "57506", + "57724", + "5788", + "5795", + "581", + "59338", + "596", + "5970", + "640", + "64127", + "64135", + "6416", + "6654", + "6714", + "6850", + "6885", + "695", + "7006", + "7096", + "7097", + "7098", + "7099", + "7100", + "7128", + "7187", + "7189", + "719", + "728", + "7305", + "7334", + "7409", + "7410", + "7462", + "7525", + "7531", + "7535", + "7706", + "79132", + "7917", + "79931", + "80149", + "80196", + "80216", + "80342", + "81035", + "81570", + "81622", + "83737", + "8398", + "84174", + "84282", + "8631", + "8678", + "8767", + "8890", + "8891", + "8892", + "8893", + "8915", + "90268", + "919", + "925", + "926", + "92610", + "930", + "931", + "945", + "952", + "9564", + "9865" + ] + }, + "GO:0071900": { + "Name": "regulation of protein serine/threonine kinase activity", + "Task": "GO", + "Genes": [ + "100133941", + "10125", + "1022", + "10221", + "1026", + "1027", + "1029", + "1030", + "1031", + "1032", + "1033", + "10454", + "10527", + "10614", + "10961", + "10979", + "11140", + "11213", + "11221", + "11235", + "11267", + "11314", + "11329", + "120892", + "124790", + "146433", + "148252", + "150", + "152110", + "152559", + "153090", + "154", + "1647", + "1654", + "171392", + "1815", + "183", + "1843", + "1849", + "1856", + "1906", + "1908", + "1950", + "1956", + "205428", + "2064", + "207", + "2081", + "2146", + "219771", + "2246", + "2247", + "2260", + "2321", + "2322", + "23328", + "23411", + "23560", + "23624", + "245928", + "25", + "255324", + "26191", + "2629", + "26524", + "2688", + "28984", + "29108", + "2950", + "2965", + "29950", + "3064", + "3087", + "324", + "3265", + "3301", + "3357", + "345611", + "3458", + "348", + "3553", + "3643", + "3843", + "387", + "388324", + "4040", + "4041", + "4057", + "4216", + "4217", + "4294", + "4296", + "4485", + "4486", + "4878", + "4908", + "493", + "5058", + "51191", + "51347", + "5154", + "5155", + "51654", + "51719", + "51755", + "51763", + "5294", + "5347", + "54465", + "5468", + "5470", + "54769", + "54900", + "54922", + "55011", + "5515", + "5569", + "5573", + "5575", + "5576", + "5577", + "5580", + "5604", + "5605", + "5629", + "56647", + "56892", + "5716", + "57214", + "5728", + "57493", + "5770", + "57761", + "5795", + "5871", + "5899", + "595", + "6091", + "6188", + "6283", + "6317", + "641", + "64853", + "650", + "6609", + "6622", + "6714", + "6868", + "6885", + "6997", + "7023", + "7026", + "7057", + "7124", + "7164", + "7186", + "7189", + "7251", + "7345", + "7405", + "7474", + "7984", + "80279", + "808", + "80824", + "8091", + "8536", + "859", + "8600", + "8692", + "8754", + "8792", + "8812", + "8817", + "8823", + "8851", + "894", + "8941", + "896", + "900", + "904", + "905", + "9077", + "9088", + "9113", + "9134", + "9146", + "93649", + "9370", + "94056", + "9555", + "958", + "9693", + "990", + "993", + "995" + ] + }, + "GO:0045089": { + "Name": "positive regulation of innate immune response", + "Task": "GO", + "Genes": [ + "10062", + "10084", + "10125", + "10211", + "10392", + "10432", + "10612", + "10614", + "10621", + "10622", + "10623", + "10666", + "11027", + "11126", + "11213", + "11331", + "114548", + "114609", + "1147", + "114836", + "115004", + "115362", + "117854", + "121260", + "135250", + "1387", + "140609", + "144811", + "146722", + "148022", + "1520", + "1535", + "1540", + "164", + "1654", + "171389", + "2033", + "2150", + "2219", + "22841", + "22861", + "22900", + "22914", + "23180", + "23369", + "2358", + "23586", + "23643", + "23705", + "2534", + "2547", + "259197", + "25921", + "25942", + "26057", + "26191", + "26253", + "285852", + "2867", + "29108", + "29110", + "29126", + "3055", + "3093", + "3133", + "3134", + "3135", + "3146", + "3303", + "3304", + "331", + "3320", + "3329", + "338322", + "340061", + "3428", + "3430", + "345611", + "353091", + "353376", + "3551", + "3592", + "3593", + "3654", + "3656", + "3661", + "3665", + "373509", + "377630", + "3805", + "3822", + "3824", + "3843", + "389856", + "3916", + "3929", + "3965", + "4057", + "4067", + "4153", + "4792", + "4841", + "4938", + "4940", + "5058", + "5062", + "5063", + "51135", + "51295", + "51311", + "51435", + "5245", + "5336", + "5359", + "54106", + "54502", + "55223", + "55269", + "55577", + "55601", + "55703", + "55765", + "5591", + "5599", + "5608", + "56253", + "56832", + "56919", + "57402", + "57506", + "57590", + "57724", + "57787", + "57864", + "5817", + "5819", + "59067", + "5970", + "6223", + "64127", + "64135", + "6421", + "661", + "6714", + "6850", + "6885", + "695", + "7096", + "7097", + "7098", + "7099", + "7100", + "7128", + "7187", + "7189", + "7294", + "7305", + "7474", + "7520", + "7531", + "7706", + "79132", + "79184", + "79931", + "80196", + "80216", + "80231", + "80342", + "81035", + "81570", + "81622", + "81844", + "83666", + "83737", + "839", + "84166", + "84282", + "84937", + "85363", + "85364", + "857", + "8638", + "8678", + "8767", + "8772", + "8780", + "8915", + "89870", + "90268", + "90933", + "912", + "91445", + "9258", + "92610", + "9447", + "9641", + "9698", + "9782", + "9865", + "9867", + "9868", + "9958" + ] + }, + "GO:0045860": { + "Name": "positive regulation of protein kinase activity", + "Task": "GO", + "Genes": [ + "10006", + "100133941", + "10040", + "10125", + "1026", + "10454", + "10464", + "1062", + "10892", + "10899", + "10920", + "10961", + "10979", + "11035", + "11235", + "11315", + "116", + "116986", + "120892", + "1236", + "143384", + "1436", + "146433", + "148252", + "149233", + "150", + "151", + "152", + "152110", + "153090", + "154", + "1616", + "1654", + "1742", + "1815", + "183", + "1856", + "1894", + "1906", + "1908", + "1942", + "1950", + "1956", + "2011", + "2013", + "205428", + "2064", + "2069", + "207", + "2081", + "2146", + "2185", + "219736", + "219771", + "2209", + "221938", + "2246", + "2247", + "2260", + "22924", + "22974", + "23118", + "2321", + "2322", + "23328", + "23411", + "23531", + "245711", + "25", + "2547", + "255324", + "2621", + "2688", + "283", + "284", + "284254", + "285489", + "28984", + "29775", + "3084", + "3265", + "3320", + "3326", + "3357", + "345611", + "3458", + "3479", + "3491", + "353514", + "3553", + "3565", + "3593", + "3630", + "3643", + "3690", + "387", + "3952", + "4057", + "4216", + "4217", + "4294", + "4296", + "4486", + "4504", + "4739", + "4908", + "4921", + "493", + "5058", + "51149", + "51347", + "51422", + "51429", + "5154", + "5155", + "51561", + "5170", + "51719", + "5294", + "54465", + "54769", + "5478", + "55011", + "5515", + "55294", + "55437", + "55704", + "5571", + "5580", + "5604", + "5605", + "5606", + "5618", + "5621", + "5629", + "566", + "56892", + "57091", + "5716", + "57214", + "5747", + "57679", + "5770", + "5871", + "5899", + "595", + "6091", + "6188", + "6283", + "6363", + "63967", + "65018", + "653361", + "6622", + "6714", + "6794", + "6868", + "6885", + "6997", + "7042", + "7057", + "7124", + "7164", + "7186", + "7189", + "7295", + "7474", + "7520", + "796", + "7984", + "80725", + "808", + "80829", + "8091", + "8312", + "84630", + "8536", + "8600", + "8754", + "8792", + "8817", + "8826", + "894", + "896", + "9094", + "920", + "92335", + "9270", + "9344", + "9370", + "94056", + "958", + "9618", + "9693", + "9770", + "9928", + "9966" + ] + }, + "GO:0030036": { + "Name": "actin cytoskeleton organization", + "Task": "GO", + "Genes": [ + "100287171", + "10092", + "10093", + "10094", + "10095", + "10096", + "10097", + "10109", + "10435", + "10459", + "10529", + "10552", + "10677", + "1072", + "1073", + "10788", + "10810", + "11034", + "11151", + "11235", + "114793", + "116985", + "116986", + "118", + "119", + "123720", + "1365", + "1398", + "146206", + "149461", + "150", + "1525", + "154796", + "165904", + "1739", + "1785", + "1794", + "199", + "2013", + "2039", + "221061", + "221692", + "2245", + "2252", + "2255", + "226", + "22808", + "23043", + "2316", + "2318", + "23189", + "23370", + "23396", + "23433", + "23607", + "23616", + "23647", + "24142", + "253260", + "253980", + "25802", + "2693", + "27032", + "27183", + "27289", + "283431", + "2885", + "29085", + "29127", + "2919", + "2934", + "29780", + "29984", + "301", + "3059", + "3071", + "3551", + "358", + "359", + "3636", + "3645", + "3688", + "3693", + "375307", + "3815", + "382", + "387", + "3880", + "390", + "391", + "3936", + "3996", + "399687", + "408", + "4287", + "442721", + "4430", + "4627", + "4628", + "4771", + "50488", + "5058", + "50848", + "51466", + "51474", + "5170", + "51738", + "5319", + "5341", + "54434", + "54509", + "54551", + "54566", + "54784", + "55604", + "55761", + "5592", + "56203", + "56776", + "56907", + "57026", + "57175", + "57381", + "57471", + "5754", + "57553", + "57580", + "5770", + "58", + "58529", + "5879", + "5880", + "5881", + "5911", + "5987", + "60", + "6093", + "64780", + "6624", + "6708", + "6711", + "6714", + "7082", + "7124", + "7126", + "7168", + "7184", + "7273", + "7401", + "7429", + "7430", + "7454", + "7456", + "752", + "7791", + "7827", + "79031", + "79585", + "79784", + "79983", + "80725", + "825", + "83715", + "83872", + "8394", + "84033", + "84168", + "84193", + "84501", + "8452", + "84665", + "8476", + "84952", + "85360", + "85369", + "85462", + "85464", + "8557", + "8572", + "87", + "88", + "8936", + "8976", + "9024", + "91010", + "9172", + "9181", + "9266", + "9294", + "9344", + "93627", + "94134", + "9475", + "9564", + "9578", + "9645", + "9722", + "9788", + "9828", + "9844", + "9938" + ] + }, + "GO:0007169": { + "Name": "cell surface receptor protein tyrosine kinase signaling pathway", + "Task": "GO", + "Genes": [ + "10006", + "10016", + "10135", + "10256", + "10273", + "10458", + "10718", + "10817", + "10818", + "10849", + "11122", + "116150", + "1176", + "1317", + "1398", + "1432", + "1435", + "154", + "161198", + "1795", + "1839", + "1942", + "1944", + "1946", + "1948", + "1949", + "1950", + "1956", + "1969", + "2042", + "2043", + "2045", + "2047", + "2049", + "2050", + "2064", + "2065", + "2066", + "2069", + "207", + "208", + "2185", + "2202", + "2241", + "2246", + "2247", + "2248", + "2249", + "2250", + "2251", + "2252", + "2253", + "2254", + "2255", + "2260", + "2261", + "2263", + "2264", + "2303", + "23064", + "2321", + "23213", + "2324", + "23433", + "238", + "25", + "2534", + "2549", + "25791", + "25865", + "2591", + "26058", + "26060", + "26281", + "2675", + "2688", + "2690", + "2822", + "284", + "285", + "285016", + "2885", + "2886", + "2889", + "29990", + "3082", + "3084", + "324", + "3315", + "3479", + "3480", + "3630", + "3643", + "3667", + "3717", + "3718", + "374", + "3791", + "3815", + "389400", + "389658", + "3925", + "4058", + "4067", + "4303", + "4313", + "4318", + "4641", + "4908", + "4914", + "4915", + "4921", + "5058", + "5062", + "5063", + "51196", + "5154", + "5155", + "5156", + "5159", + "5166", + "5170", + "5284", + "5286", + "5290", + "5291", + "5293", + "5295", + "5335", + "53358", + "55532", + "55614", + "558", + "5587", + "55914", + "5594", + "56034", + "5618", + "5747", + "5753", + "5770", + "5781", + "5793", + "5795", + "5801", + "5829", + "5879", + "5919", + "5921", + "5970", + "5979", + "624", + "627", + "6272", + "64283", + "64762", + "6654", + "6714", + "673", + "6774", + "6777", + "685", + "6997", + "7010", + "7039", + "7074", + "7409", + "7410", + "7424", + "7429", + "7525", + "780", + "7867", + "8013", + "8065", + "836", + "8412", + "8440", + "84985", + "858", + "8826", + "8829", + "8835", + "8874", + "8895", + "8997", + "9019", + "9158", + "916", + "9185", + "9261", + "9518", + "9564", + "9702", + "9788", + "9847", + "9961", + "9965" + ] + }, + "GO:0051098": { + "Name": "regulation of binding", + "Task": "GO", + "Genes": [ + "10014", + "10211", + "1026", + "10399", + "10459", + "1054", + "10542", + "10763", + "11315", + "114991", + "117854", + "118", + "119", + "1193", + "120892", + "129531", + "1398", + "1454", + "146057", + "147138", + "149628", + "151636", + "151651", + "154", + "155", + "1565", + "1601", + "165904", + "166", + "1663", + "171392", + "1869", + "1981", + "2035", + "2043", + "207", + "2072", + "2280", + "22927", + "22943", + "2296", + "23028", + "23032", + "23063", + "23493", + "23557", + "23560", + "24144", + "25", + "255738", + "25805", + "26086", + "26119", + "2623", + "2625", + "2801", + "285381", + "2959", + "2962", + "3001", + "3005", + "302", + "3077", + "3078", + "3080", + "3146", + "3148", + "3300", + "340061", + "3416", + "3428", + "3433", + "3434", + "3458", + "3479", + "348", + "351", + "3586", + "3646", + "3676", + "3725", + "387082", + "3925", + "4035", + "4043", + "409", + "4140", + "4233", + "4318", + "4686", + "4760", + "4830", + "488", + "489", + "4931", + "5071", + "5080", + "51042", + "51053", + "51068", + "51176", + "51339", + "51341", + "5155", + "51773", + "5195", + "5300", + "5329", + "5347", + "5350", + "5444", + "54496", + "54552", + "5468", + "54984", + "55182", + "55355", + "5566", + "55693", + "5580", + "55906", + "5599", + "5663", + "567", + "56998", + "5792", + "581", + "5824", + "5899", + "5901", + "59082", + "5914", + "5925", + "6093", + "6135", + "627", + "640", + "64324", + "64400", + "64710", + "64771", + "64855", + "6497", + "650", + "652", + "6590", + "65992", + "6612", + "6672", + "6737", + "6788", + "6789", + "6790", + "6815", + "6872", + "6934", + "7009", + "7015", + "7023", + "7074", + "7122", + "7189", + "7291", + "7295", + "7341", + "7448", + "80011", + "8091", + "81494", + "81620", + "81857", + "8189", + "8239", + "83666", + "84444", + "84630", + "8487", + "8536", + "8658", + "8663", + "8664", + "8721", + "8751", + "8767", + "8829", + "8904", + "9026", + "9044", + "9212", + "9241", + "9270", + "9370", + "9421", + "9464", + "9532", + "9750", + "9759" + ] + }, + "GO:0010498": { + "Name": "proteasomal protein catabolic process", + "Task": "GO", + "Genes": [ + "10116", + "10193", + "10206", + "10210", + "10273", + "10277", + "10299", + "10513", + "10524", + "10613", + "10616", + "10869", + "10952", + "10956", + "10973", + "11060", + "11065", + "11101", + "11160", + "11236", + "11253", + "114088", + "1161", + "116138", + "117584", + "118424", + "122416", + "122773", + "130617", + "148066", + "149603", + "1499", + "1642", + "1649", + "201595", + "223082", + "22933", + "23008", + "23053", + "23190", + "23194", + "23197", + "23220", + "23291", + "23327", + "23392", + "23411", + "23532", + "23588", + "253980", + "25793", + "25827", + "25853", + "25879", + "26046", + "26133", + "26224", + "26234", + "26249", + "26268", + "26270", + "26272", + "26273", + "267", + "27248", + "27252", + "27338", + "27339", + "283807", + "29978", + "29979", + "329", + "3309", + "339745", + "3429", + "343070", + "378884", + "408", + "409", + "4121", + "414301", + "4189", + "4193", + "440561", + "4780", + "5071", + "5094", + "51009", + "51185", + "51283", + "51343", + "51439", + "51465", + "51528", + "51608", + "51676", + "5366", + "5371", + "54431", + "54461", + "54476", + "54546", + "54788", + "550", + "55122", + "5527", + "55284", + "55294", + "55432", + "55527", + "55626", + "55658", + "55666", + "55741", + "55829", + "56929", + "57003", + "5705", + "57092", + "57154", + "57162", + "57542", + "6047", + "6048", + "6400", + "64326", + "6449", + "6451", + "6477", + "64839", + "6500", + "6502", + "6737", + "7126", + "7184", + "7320", + "7321", + "7323", + "7327", + "7334", + "7353", + "7415", + "7428", + "7466", + "7706", + "7726", + "7844", + "79139", + "7917", + "79654", + "79734", + "79791", + "79845", + "7993", + "80020", + "80196", + "80263", + "80267", + "80311", + "80700", + "81502", + "81545", + "83590", + "83737", + "8405", + "84078", + "84164", + "84301", + "84447", + "8450", + "8451", + "8452", + "8453", + "8454", + "84861", + "8507", + "8945", + "89890", + "899", + "90007", + "9024", + "90850", + "9112", + "91147", + "91319", + "91445", + "9147", + "92305", + "9306", + "9325", + "93611", + "9695", + "9709", + "9867", + "991", + "9921", + "9928", + "997", + "9978" + ] + }, + "GO:0071396": { + "Name": "cellular response to lipid", + "Task": "GO", + "Genes": [ + "10018", + "10062", + "10288", + "10413", + "10474", + "10521", + "10524", + "1066", + "1080", + "10856", + "11057", + "1109", + "111", + "11184", + "112", + "11240", + "11344", + "114548", + "114881", + "116151", + "133522", + "1385", + "1393", + "140596", + "1432", + "1511", + "151306", + "151556", + "153090", + "1616", + "1645", + "1646", + "1655", + "1667", + "1668", + "1956", + "196", + "2042", + "2099", + "2100", + "2185", + "2242", + "22843", + "22938", + "23064", + "23081", + "23543", + "23558", + "23641", + "23729", + "26191", + "27", + "27063", + "27429", + "2822", + "284254", + "2852", + "2865", + "2867", + "2908", + "29108", + "2932", + "301", + "3015", + "3055", + "3192", + "3303", + "3304", + "3312", + "345611", + "353376", + "3569", + "3576", + "358", + "3586", + "3627", + "3638", + "3654", + "367", + "387", + "389643", + "3929", + "4040", + "4058", + "4067", + "4246", + "4257", + "4314", + "4318", + "4478", + "4734", + "476", + "477", + "4790", + "4795", + "4824", + "503618", + "5054", + "50801", + "51079", + "51141", + "51366", + "51510", + "5165", + "5166", + "5241", + "5244", + "5245", + "5292", + "5336", + "54209", + "5458", + "5469", + "54997", + "55625", + "558", + "55809", + "55818", + "55829", + "5594", + "5599", + "56848", + "57178", + "5727", + "5737", + "5753", + "5754", + "58509", + "5914", + "5970", + "5976", + "5978", + "5979", + "6095", + "6097", + "6372", + "64127", + "6528", + "6696", + "677", + "678", + "6850", + "687", + "7099", + "7110", + "7128", + "7133", + "7189", + "728358", + "7292", + "730249", + "7332", + "7337", + "7431", + "7494", + "7533", + "7538", + "79039", + "79931", + "80139", + "80149", + "811", + "81285", + "8202", + "8204", + "8289", + "834", + "840", + "84458", + "84660", + "8611", + "8644", + "8725", + "8751", + "8754", + "8915", + "90933", + "92140", + "923", + "92595", + "9325", + "9373", + "9475", + "9572", + "9971" + ] + }, + "GO:1902903": { + "Name": "regulation of supramolecular fiber organization", + "Task": "GO", + "Genes": [ + "1003", + "10142", + "10152", + "10163", + "10174", + "10300", + "10344", + "10382", + "10395", + "10411", + "10435", + "10456", + "10471", + "10519", + "10565", + "1073", + "10787", + "10979", + "11075", + "11151", + "11315", + "116985", + "118", + "119", + "1191", + "1236", + "123720", + "126820", + "136319", + "1410", + "1440", + "146057", + "146206", + "148170", + "1490", + "1496", + "150356", + "157922", + "1639", + "165", + "1906", + "2017", + "203228", + "2150", + "2185", + "2241", + "2242", + "22843", + "22919", + "22924", + "22974", + "22998", + "23122", + "23189", + "23191", + "23271", + "23332", + "23370", + "23500", + "23616", + "23671", + "24139", + "24142", + "25", + "253725", + "25802", + "25999", + "27302", + "28964", + "28984", + "29109", + "2934", + "29922", + "3055", + "3059", + "3071", + "324", + "3303", + "3304", + "3312", + "335", + "3375", + "348", + "348110", + "351", + "382", + "387", + "389", + "3925", + "395", + "3984", + "402", + "4133", + "4137", + "4204", + "4233", + "442721", + "4653", + "4690", + "4733", + "4771", + "4926", + "5058", + "5062", + "5063", + "5071", + "50848", + "51466", + "51474", + "51571", + "51763", + "5201", + "5202", + "5203", + "5204", + "5216", + "5217", + "5341", + "5345", + "55160", + "55604", + "55616", + "55704", + "55755", + "55845", + "55971", + "5663", + "57026", + "57175", + "57482", + "57551", + "57606", + "57662", + "5829", + "58497", + "5879", + "5921", + "5962", + "6093", + "6188", + "6249", + "6281", + "6314", + "6356", + "6366", + "6369", + "6376", + "6387", + "64857", + "6548", + "6622", + "6904", + "7016", + "7043", + "71", + "7114", + "7148", + "7248", + "7408", + "7411", + "7429", + "7454", + "7481", + "7840", + "79709", + "7984", + "79998", + "8440", + "8477", + "84952", + "8500", + "85415", + "85477", + "859", + "88", + "8829", + "8874", + "8936", + "89795", + "90102", + "9026", + "9087", + "90952", + "9101", + "9113", + "91663", + "9181", + "9353", + "93663", + "9475", + "9639", + "9647", + "9793", + "9873", + "9948" + ] + }, + "GO:0006897": { + "Name": "endocytosis", + "Task": "GO", + "Genes": [ + "10062", + "1020", + "10203", + "10244", + "10266", + "10267", + "10268", + "10451", + "10461", + "10859", + "1089", + "10938", + "11006", + "11031", + "11151", + "11252", + "112574", + "115548", + "1173", + "1174", + "1175", + "1201", + "120892", + "133", + "134", + "135", + "1514", + "154", + "155", + "156", + "157", + "160", + "161", + "163", + "1759", + "1785", + "1793", + "1808", + "1814", + "196051", + "200576", + "203228", + "2060", + "219931", + "2208", + "2213", + "2219", + "2220", + "2268", + "22841", + "23102", + "23149", + "23166", + "23396", + "2348", + "23603", + "23616", + "25", + "2534", + "257364", + "2580", + "25912", + "26119", + "261729", + "2621", + "27131", + "273", + "274", + "283420", + "2868", + "2885", + "2966", + "29911", + "301", + "3055", + "306", + "3146", + "348", + "3482", + "353376", + "3576", + "3577", + "3579", + "3587", + "3636", + "3685", + "3690", + "3949", + "3984", + "4035", + "4036", + "4037", + "4067", + "4074", + "408", + "409", + "432", + "4360", + "440400", + "4643", + "4646", + "4734", + "5058", + "51429", + "51454", + "51606", + "5175", + "5286", + "5298", + "53353", + "53373", + "5338", + "54209", + "54734", + "54874", + "55113", + "5538", + "55576", + "55604", + "55647", + "55681", + "55716", + "558", + "5580", + "5581", + "5594", + "5595", + "57007", + "57403", + "5747", + "575", + "57706", + "5861", + "5868", + "5898", + "5899", + "5914", + "6272", + "6441", + "64581", + "6622", + "6642", + "6653", + "6714", + "6804", + "6850", + "7036", + "7037", + "7052", + "7057", + "7099", + "7249", + "7409", + "7410", + "7436", + "7525", + "7804", + "7879", + "81035", + "81693", + "8218", + "8301", + "83737", + "83871", + "8394", + "8398", + "8411", + "84162", + "85377", + "85439", + "8547", + "857", + "8578", + "858", + "859", + "8867", + "9026", + "90678", + "90861", + "9214", + "9260", + "9266", + "9413", + "94134", + "948", + "949", + "9777", + "9829", + "9844", + "9873", + "9936", + "9938" + ] + }, + "GO:0001933": { + "Name": "negative regulation of protein phosphorylation", + "Task": "GO", + "Genes": [ + "100506658", + "10221", + "10253", + "1026", + "1027", + "1028", + "1029", + "103", + "10399", + "104", + "10464", + "10527", + "10614", + "11006", + "11116", + "11122", + "11213", + "11221", + "11314", + "11315", + "11329", + "122809", + "124790", + "138429", + "1399", + "140775", + "152559", + "153090", + "1609", + "161742", + "1647", + "171392", + "183", + "1843", + "1849", + "1981", + "199731", + "200734", + "203228", + "2041", + "207", + "2192", + "22843", + "22876", + "22943", + "23171", + "23411", + "23435", + "23603", + "23624", + "23770", + "245928", + "25", + "25937", + "25998", + "260434", + "26146", + "26191", + "2629", + "26524", + "2776", + "2810", + "286430", + "29108", + "2950", + "3087", + "324", + "3301", + "3458", + "348", + "3486", + "3642", + "3843", + "388324", + "401265", + "4040", + "4041", + "4092", + "4690", + "4771", + "4869", + "4878", + "4908", + "5062", + "5071", + "51085", + "51422", + "51527", + "51637", + "51654", + "5167", + "5170", + "51763", + "5347", + "54206", + "54386", + "54431", + "54625", + "5468", + "5470", + "5478", + "54900", + "54922", + "55022", + "5569", + "5573", + "5575", + "5576", + "5577", + "5580", + "55861", + "5590", + "5611", + "56940", + "5728", + "57493", + "5753", + "5770", + "5771", + "57732", + "57761", + "5777", + "5783", + "5788", + "5795", + "58509", + "5859", + "5925", + "5987", + "6317", + "6422", + "6456", + "64793", + "64798", + "64853", + "650", + "6609", + "6622", + "6879", + "6895", + "7023", + "7026", + "7040", + "7251", + "7345", + "7453", + "7498", + "79643", + "79899", + "80279", + "80725", + "808", + "80824", + "84313", + "84335", + "84619", + "84919", + "857", + "859", + "8613", + "8651", + "8692", + "9021", + "9113", + "91662", + "91663", + "9270", + "9353", + "93649", + "93650", + "9370", + "9555", + "9647", + "9655", + "9770", + "9961" + ] + }, + "GO:1902115": { + "Name": "regulation of organelle assembly", + "Task": "GO", + "Genes": [ + "10015", + "10146", + "10198", + "10413", + "10432", + "10615", + "10733", + "10769", + "10801", + "10806", + "10807", + "11138", + "11152", + "112574", + "115704", + "120892", + "125058", + "126731", + "128637", + "128866", + "140775", + "1437", + "152185", + "153241", + "158297", + "161514", + "163786", + "1778", + "1902", + "1947", + "200576", + "202018", + "203228", + "2048", + "207", + "221908", + "225689", + "22930", + "22954", + "23019", + "23061", + "23102", + "23130", + "23216", + "23256", + "23329", + "23636", + "23637", + "246175", + "2475", + "255758", + "256364", + "25771", + "25782", + "25978", + "26000", + "26054", + "26471", + "2648", + "2665", + "27243", + "27352", + "2934", + "29899", + "29978", + "3055", + "3064", + "3192", + "3303", + "3304", + "345643", + "347240", + "3567", + "374403", + "378", + "3936", + "3985", + "401548", + "4076", + "4134", + "4478", + "4591", + "4733", + "4848", + "4869", + "4926", + "49856", + "51100", + "51112", + "5119", + "51256", + "51375", + "51473", + "51510", + "51626", + "51652", + "51657", + "5305", + "53407", + "5347", + "54521", + "54546", + "54662", + "55062", + "550643", + "55254", + "55296", + "55357", + "55633", + "55704", + "55823", + "55835", + "56890", + "57132", + "57465", + "57472", + "57489", + "57533", + "57535", + "57787", + "5868", + "5899", + "5962", + "6047", + "6382", + "6385", + "6386", + "64112", + "64786", + "64844", + "6491", + "65018", + "6624", + "6792", + "7016", + "7124", + "7175", + "7251", + "729873", + "7430", + "7813", + "79142", + "79598", + "79643", + "79734", + "79735", + "79837", + "79874", + "79959", + "80199", + "8027", + "8100", + "81876", + "822", + "83874", + "8396", + "84260", + "85459", + "8558", + "859", + "8723", + "8766", + "8850", + "8897", + "90410", + "90678", + "9100", + "91782", + "92421", + "9525", + "9554", + "9637", + "9638", + "9662", + "9696", + "9712", + "9727", + "9738", + "9742", + "9779", + "989", + "9898", + "9908" + ] + }, + "GO:0031348": { + "Name": "negative regulation of defense response", + "Task": "GO", + "Genes": [ + "1003", + "100507436", + "10769", + "10859", + "11274", + "11277", + "11326", + "114548", + "114899", + "1378", + "140885", + "142", + "1432", + "145581", + "147945", + "149095", + "152138", + "196", + "197358", + "2", + "2000", + "201292", + "2137", + "2213", + "2268", + "22978", + "23005", + "23170", + "23220", + "2358", + "240", + "2534", + "25939", + "26058", + "26146", + "2625", + "2629", + "2693", + "284340", + "2852", + "2896", + "29883", + "3055", + "3105", + "3106", + "3123", + "3133", + "3134", + "3135", + "325", + "335", + "3428", + "345611", + "3479", + "348", + "3565", + "3586", + "3587", + "3596", + "3630", + "3805", + "3821", + "3824", + "383", + "387837", + "3965", + "401397", + "405", + "4067", + "409", + "4210", + "4277", + "4598", + "4938", + "4940", + "5045", + "5068", + "5094", + "51441", + "51738", + "5272", + "5335", + "54209", + "54625", + "5465", + "5468", + "5495", + "55527", + "55646", + "55737", + "5580", + "55829", + "5598", + "5624", + "56339", + "56547", + "5734", + "5740", + "57506", + "5771", + "5777", + "5788", + "58509", + "60343", + "6095", + "6223", + "6318", + "634", + "64116", + "64771", + "6714", + "6737", + "6773", + "6774", + "6850", + "6895", + "7010", + "7040", + "708", + "710", + "7114", + "7130", + "7132", + "7525", + "7534", + "79102", + "79132", + "79594", + "79651", + "80263", + "8087", + "83737", + "84166", + "84243", + "84640", + "8815", + "89790", + "90268", + "90355", + "90865", + "9111", + "9140", + "91662", + "9212", + "9258", + "9314", + "9470", + "9474", + "9636", + "9958" + ] + }, + "GO:0051656": { + "Name": "establishment of organelle localization", + "Task": "GO", + "Genes": [ + "10013", + "10015", + "10016", + "10053", + "10113", + "10128", + "10403", + "10464", + "10494", + "10524", + "10540", + "1058", + "1062", + "1063", + "10652", + "10726", + "10948", + "10959", + "10972", + "10987", + "11004", + "11127", + "1113", + "11235", + "113130", + "117194", + "118426", + "1201", + "126353", + "128866", + "137886", + "1453", + "147841", + "151648", + "152185", + "157769", + "1639", + "1739", + "1778", + "1780", + "1861", + "220134", + "2205", + "221150", + "22919", + "22920", + "23122", + "23172", + "23212", + "23224", + "23332", + "23557", + "23636", + "256364", + "25777", + "25978", + "26258", + "2669", + "2697", + "27183", + "27243", + "27436", + "283489", + "29058", + "29899", + "3064", + "3091", + "3281", + "348235", + "3688", + "3799", + "3815", + "3833", + "3834", + "3835", + "3837", + "387695", + "388552", + "3985", + "4033", + "4085", + "4134", + "4137", + "4644", + "4747", + "4926", + "4935", + "4976", + "5048", + "51068", + "51112", + "5119", + "51203", + "51510", + "51652", + "5195", + "5293", + "5294", + "5310", + "5347", + "5413", + "54732", + "54820", + "54874", + "54908", + "54984", + "55062", + "55143", + "55165", + "55166", + "55201", + "55288", + "553115", + "5537", + "55435", + "55717", + "55773", + "55968", + "56245", + "56907", + "57082", + "57132", + "57405", + "57584", + "5861", + "5870", + "5873", + "5901", + "5925", + "59349", + "6209", + "636", + "63915", + "64149", + "6795", + "7016", + "7248", + "7314", + "7430", + "7514", + "7534", + "7756", + "79003", + "79443", + "79567", + "79643", + "79998", + "80179", + "80208", + "81", + "81610", + "81620", + "81929", + "81930", + "83540", + "83930", + "84080", + "8409", + "84501", + "8452", + "84643", + "84722", + "84984", + "8499", + "8517", + "8678", + "8697", + "8729", + "8766", + "8773", + "8841", + "891", + "89941", + "91272", + "91782", + "9183", + "9184", + "9212", + "92421", + "9321", + "9342", + "9368", + "9371", + "9525", + "9928" + ] + }, + "GO:0051056": { + "Name": "regulation of small GTPase mediated signal transduction", + "Task": "GO", + "Genes": [ + "10125", + "10144", + "10276", + "10395", + "10451", + "10617", + "10672", + "10928", + "11214", + "1123", + "11235", + "1124", + "11337", + "115557", + "115727", + "116985", + "117289", + "121512", + "128272", + "1452", + "152273", + "153090", + "153478", + "1794", + "1795", + "1894", + "19", + "199731", + "201163", + "202243", + "2056", + "2150", + "2203", + "221002", + "221178", + "221472", + "221938", + "2245", + "2255", + "22899", + "2305", + "23075", + "23092", + "23189", + "23229", + "23263", + "23268", + "23365", + "23380", + "23526", + "23607", + "23616", + "23779", + "25", + "253980", + "257106", + "25791", + "25894", + "25959", + "26030", + "26230", + "2828", + "285282", + "29", + "2909", + "29127", + "29984", + "335", + "343578", + "345", + "3479", + "348", + "3685", + "382", + "392", + "3925", + "393", + "394", + "395", + "396", + "397", + "408", + "4168", + "4233", + "4649", + "4650", + "4653", + "4851", + "4853", + "4914", + "4983", + "50619", + "50649", + "50650", + "50848", + "51291", + "51306", + "51571", + "5291", + "5294", + "54509", + "54869", + "54922", + "55160", + "55200", + "55701", + "55843", + "57449", + "57480", + "57493", + "57514", + "57569", + "57580", + "57584", + "57636", + "57679", + "57706", + "58480", + "58504", + "5879", + "5894", + "5923", + "5924", + "6091", + "613", + "64283", + "6453", + "64787", + "64926", + "65078", + "6714", + "7010", + "7074", + "7126", + "7204", + "7409", + "7410", + "79109", + "79658", + "79822", + "7984", + "80243", + "8036", + "80728", + "81704", + "8216", + "84033", + "84078", + "84144", + "8452", + "8473", + "84952", + "84986", + "8567", + "8829", + "8859", + "89839", + "89846", + "89890", + "8997", + "90627", + "9138", + "9181", + "9290", + "9353", + "93663", + "9411", + "94134", + "9639", + "9649", + "9743", + "9750", + "9824", + "9826", + "9828", + "9901", + "9909", + "9912", + "9927", + "9928", + "9938" + ] + }, + "GO:0002757": { + "Name": "immune response-activating signaling pathway", + "Task": "GO", + "Genes": [ + "10392", + "10451", + "10603", + "10616", + "10657", + "10892", + "11027", + "11119", + "11213", + "11331", + "114548", + "114609", + "1147", + "115004", + "121665", + "1378", + "1387", + "1445", + "144811", + "146722", + "148022", + "1493", + "1520", + "1540", + "163486", + "171389", + "196051", + "1967", + "199920", + "2033", + "2219", + "2268", + "22841", + "22861", + "22900", + "23149", + "23180", + "23586", + "23643", + "25", + "2533", + "2534", + "25800", + "25865", + "259197", + "26191", + "26253", + "27040", + "2822", + "2867", + "29108", + "29110", + "29126", + "29760", + "3055", + "3071", + "30968", + "3105", + "3115", + "3119", + "3123", + "331", + "3329", + "340061", + "345611", + "353376", + "3551", + "3635", + "3654", + "3656", + "3661", + "3665", + "3822", + "3824", + "3843", + "3929", + "3937", + "3965", + "3984", + "4067", + "4153", + "4277", + "4332", + "4773", + "4792", + "4938", + "4940", + "5058", + "5062", + "5063", + "51135", + "51295", + "51311", + "51324", + "5142", + "51435", + "5144", + "5245", + "5290", + "5293", + "5335", + "5336", + "5338", + "54106", + "55024", + "55072", + "55765", + "5580", + "5581", + "5608", + "57402", + "5747", + "57506", + "57724", + "5788", + "5795", + "581", + "59338", + "596", + "5970", + "640", + "64127", + "64135", + "6714", + "6850", + "6885", + "695", + "7006", + "7096", + "7097", + "7098", + "7099", + "7100", + "7128", + "7187", + "7189", + "719", + "728", + "7305", + "7334", + "7409", + "7410", + "7462", + "7525", + "7531", + "7535", + "7706", + "79132", + "7917", + "79931", + "80149", + "80196", + "80216", + "80342", + "81035", + "81570", + "81622", + "83737", + "8398", + "84174", + "84282", + "8631", + "8678", + "8767", + "8890", + "8891", + "8892", + "8893", + "8915", + "90268", + "925", + "926", + "92610", + "930", + "931", + "952", + "9564", + "9865" + ] + }, + "GO:0009611": { + "Name": "response to wounding", + "Task": "GO", + "Genes": [ + "10451", + "10481", + "10630", + "10894", + "11235", + "116844", + "1230", + "1281", + "128866", + "1289", + "131566", + "135", + "139189", + "140", + "1432", + "146206", + "146760", + "1490", + "1511", + "1524", + "1606", + "1607", + "1608", + "160851", + "1609", + "177", + "2064", + "2069", + "2147", + "2149", + "2151", + "2152", + "2155", + "2157", + "2158", + "2159", + "2160", + "2161", + "2162", + "2165", + "2192", + "221037", + "221477", + "2243", + "2244", + "2246", + "2247", + "2252", + "2255", + "2266", + "22846", + "22915", + "23098", + "2316", + "23671", + "2596", + "25978", + "2623", + "2624", + "2677", + "27243", + "2768", + "2776", + "2778", + "2811", + "2812", + "2814", + "2815", + "3084", + "3162", + "3172", + "3273", + "3371", + "3479", + "3491", + "349667", + "350", + "3569", + "3605", + "3624", + "3630", + "3673", + "3690", + "3691", + "3705", + "375056", + "3791", + "388552", + "3936", + "3998", + "4088", + "4321", + "4627", + "5051", + "5058", + "5068", + "50808", + "5119", + "51510", + "5154", + "5155", + "5156", + "51652", + "5196", + "5290", + "5291", + "5294", + "5327", + "5336", + "5340", + "54209", + "54566", + "5530", + "5601", + "57132", + "57175", + "57413", + "57591", + "57834", + "5864", + "5879", + "5894", + "5912", + "634", + "64805", + "6609", + "667", + "6707", + "6714", + "6722", + "677", + "678", + "6790", + "6812", + "6814", + "6850", + "7040", + "7046", + "7056", + "7098", + "7124", + "725", + "7409", + "7410", + "7450", + "7454", + "7474", + "7476", + "7538", + "780", + "79001", + "79567", + "79643", + "8324", + "83481", + "8525", + "8526", + "8527", + "8529", + "8613", + "87", + "8761", + "9002", + "90070", + "9076", + "9162", + "91782", + "92421", + "94", + "94121", + "948", + "949", + "953", + "959", + "960", + "966", + "977" + ] + }, + "GO:0051091": { + "Name": "positive regulation of DNA-binding transcription factor activity", + "Task": "GO", + "Genes": [ + "10014", + "10206", + "10346", + "10392", + "10475", + "10519", + "1054", + "10542", + "10616", + "10891", + "10892", + "10935", + "10987", + "11035", + "11043", + "11074", + "11213", + "11315", + "11331", + "114548", + "114609", + "1147", + "1191", + "121268", + "1386", + "150372", + "1649", + "1660", + "177", + "183", + "1856", + "1896", + "1906", + "2033", + "207", + "2099", + "2100", + "219790", + "2241", + "22954", + "23085", + "23586", + "238", + "2535", + "25865", + "28232", + "283629", + "28984", + "29108", + "306", + "3169", + "3297", + "3303", + "3304", + "338382", + "340061", + "351", + "3551", + "3553", + "3569", + "3586", + "3606", + "3630", + "3654", + "3656", + "367", + "3728", + "3815", + "3965", + "4040", + "4057", + "4345", + "4591", + "4760", + "4808", + "4838", + "4869", + "4914", + "4919", + "4921", + "4922", + "4985", + "49860", + "51341", + "53840", + "54101", + "5468", + "5478", + "55072", + "55182", + "55223", + "55367", + "5583", + "5584", + "55859", + "5587", + "5588", + "55906", + "5610", + "5687", + "57118", + "5728", + "57506", + "58484", + "5970", + "5987", + "60401", + "6188", + "6279", + "6280", + "6283", + "64127", + "64170", + "64320", + "650", + "6597", + "6598", + "65992", + "6722", + "6737", + "6788", + "6872", + "6929", + "695", + "7027", + "7037", + "7097", + "7099", + "7124", + "7158", + "7185", + "7186", + "7188", + "7189", + "7334", + "7335", + "7472", + "7474", + "7706", + "7726", + "79092", + "7984", + "815", + "81603", + "825", + "8321", + "8322", + "84159", + "84433", + "84851", + "8517", + "85363", + "8600", + "8613", + "8717", + "8737", + "8767", + "8792", + "8807", + "8809", + "8877", + "8896", + "8915", + "8986", + "89870", + "9175", + "9181", + "92140", + "9252", + "92565", + "93649", + "9447", + "948", + "958", + "959", + "9641", + "9759", + "9830" + ] + }, + "GO:1903037": { + "Name": "regulation of leukocyte cell-cell adhesion", + "Task": "GO", + "Genes": [ + "100133941", + "10148", + "10288", + "10457", + "10524", + "10690", + "10725", + "10808", + "10859", + "11006", + "11126", + "11146", + "11148", + "11221", + "11314", + "126259", + "1326", + "1378", + "1445", + "149233", + "1493", + "1511", + "1604", + "177", + "1803", + "1845", + "199", + "201633", + "207", + "2113", + "22914", + "2309", + "23149", + "2319", + "23240", + "23308", + "2475", + "2526", + "2529", + "2534", + "259307", + "26191", + "282618", + "29108", + "29126", + "301", + "3037", + "3071", + "3077", + "30835", + "3105", + "3109", + "3113", + "3115", + "3122", + "3123", + "3133", + "3135", + "3146", + "3329", + "3440", + "3456", + "3458", + "3479", + "3481", + "3485", + "3553", + "3558", + "3565", + "3569", + "3572", + "3592", + "3593", + "3594", + "3606", + "3654", + "3717", + "375056", + "383", + "387", + "387597", + "3952", + "3965", + "399", + "4067", + "4179", + "4192", + "441864", + "445", + "4690", + "4860", + "50943", + "51561", + "5170", + "5290", + "5465", + "54900", + "55423", + "55626", + "5573", + "56477", + "57045", + "5777", + "5781", + "57829", + "59067", + "5914", + "5970", + "604", + "6046", + "6188", + "6366", + "6370", + "6375", + "6385", + "6387", + "64115", + "6441", + "64410", + "6484", + "64926", + "65125", + "652", + "6541", + "6714", + "7037", + "7048", + "7124", + "7189", + "7297", + "7409", + "7412", + "7494", + "7525", + "7535", + "79576", + "79679", + "8013", + "80380", + "80381", + "81704", + "8440", + "84433", + "84524", + "84830", + "84868", + "857", + "8600", + "8631", + "8651", + "8740", + "8764", + "9092", + "912", + "916", + "923", + "9231", + "9314", + "940", + "959", + "960", + "961", + "970", + "975", + "9750" + ] + }, + "GO:0007059": { + "Name": "chromosome segregation", + "Task": "GO", + "Genes": [ + "10015", + "10051", + "10274", + "10403", + "10464", + "10540", + "10592", + "1060", + "10609", + "10615", + "1062", + "1063", + "10726", + "10734", + "10735", + "10783", + "11004", + "11011", + "1104", + "11130", + "11200", + "11243", + "113130", + "115106", + "126353", + "128866", + "129563", + "140609", + "140710", + "1453", + "147841", + "148479", + "151648", + "152185", + "158983", + "1642", + "1654", + "200942", + "2068", + "220134", + "221150", + "22919", + "22974", + "23063", + "2316", + "23172", + "23212", + "23255", + "23310", + "23354", + "23397", + "23636", + "24137", + "256364", + "25879", + "25978", + "26065", + "26112", + "2669", + "26993", + "27183", + "27243", + "27436", + "2801", + "283489", + "285643", + "28989", + "29098", + "29127", + "29128", + "29893", + "317761", + "338657", + "347688", + "348235", + "3619", + "3796", + "3832", + "3833", + "3834", + "3835", + "3837", + "387", + "387103", + "387893", + "4751", + "4926", + "49856", + "51112", + "5119", + "51203", + "51510", + "51647", + "51652", + "5347", + "54617", + "54627", + "54801", + "54908", + "54930", + "54984", + "55125", + "55142", + "55143", + "55165", + "55166", + "5518", + "55201", + "55355", + "55559", + "55732", + "55755", + "56271", + "56647", + "56916", + "57082", + "57132", + "5728", + "57405", + "57519", + "5901", + "5925", + "6188", + "64151", + "672", + "6732", + "6795", + "7153", + "7156", + "729440", + "7756", + "79003", + "79441", + "79643", + "79884", + "79998", + "80152", + "8086", + "81565", + "81610", + "81620", + "81929", + "81930", + "8243", + "83540", + "83852", + "84057", + "8452", + "84643", + "84722", + "84861", + "8658", + "8678", + "8697", + "8766", + "8780", + "8841", + "891", + "90417", + "9055", + "9113", + "9126", + "91272", + "91782", + "9183", + "9184", + "9212", + "92421", + "93323", + "93426", + "9371", + "9400", + "9493", + "9525", + "9611", + "9639", + "9700", + "9918", + "9928" + ] + }, + "GO:0019221": { + "Name": "cytokine-mediated signaling pathway", + "Task": "GO", + "Genes": [ + "10019", + "10344", + "10413", + "10456", + "1050", + "10670", + "10758", + "11213", + "112744", + "1230", + "1270", + "1271", + "133396", + "1436", + "1437", + "1439", + "1440", + "1460", + "146433", + "149951", + "1511", + "171392", + "1907", + "1958", + "1984", + "2056", + "2069", + "207", + "2185", + "2241", + "2309", + "2322", + "23236", + "23765", + "25942", + "260434", + "26060", + "2688", + "27347", + "2859", + "29108", + "3055", + "3059", + "329", + "330", + "3429", + "3440", + "3454", + "3455", + "3456", + "3458", + "3459", + "3460", + "3551", + "3552", + "3553", + "3554", + "3556", + "3558", + "3559", + "3560", + "3561", + "3562", + "3563", + "3565", + "3566", + "3567", + "3568", + "3569", + "3570", + "3572", + "3574", + "3579", + "3581", + "3589", + "3590", + "3592", + "3593", + "3594", + "3595", + "3600", + "3601", + "3605", + "3606", + "3611", + "3627", + "3654", + "3656", + "3663", + "3667", + "3716", + "3717", + "3718", + "3815", + "3953", + "3977", + "3987", + "4067", + "440712", + "4792", + "4939", + "5008", + "5034", + "50506", + "51094", + "51135", + "5155", + "5196", + "5295", + "53905", + "54209", + "54472", + "5566", + "5595", + "5617", + "56832", + "57007", + "5777", + "5781", + "5795", + "5894", + "5970", + "6347", + "6373", + "6376", + "6387", + "6654", + "6672", + "6688", + "6714", + "6772", + "6773", + "6774", + "6775", + "6776", + "6778", + "6885", + "7066", + "7114", + "7124", + "7132", + "7133", + "7157", + "7186", + "7187", + "7189", + "7297", + "7852", + "79092", + "79602", + "81", + "83483", + "84522", + "84817", + "84818", + "8600", + "867", + "8717", + "8737", + "8792", + "8807", + "8809", + "8986", + "9173", + "9180", + "920", + "9252", + "9253", + "9413", + "9447", + "9705", + "9759", + "9943" + ] + }, + "GO:0040011": { + "Name": "locomotion", + "Task": "GO", + "Genes": [ + "10344", + "10563", + "10803", + "10850", + "10928", + "1113", + "11151", + "11251", + "120425", + "1230", + "1232", + "1233", + "1234", + "1235", + "1236", + "1237", + "1240", + "140596", + "1432", + "1511", + "1524", + "1525", + "1667", + "1672", + "1673", + "1839", + "185", + "1880", + "1902", + "1906", + "1907", + "1908", + "1910", + "1960", + "1969", + "200576", + "2047", + "2247", + "2252", + "2255", + "2321", + "23396", + "2350", + "23513", + "2358", + "240", + "2549", + "2621", + "27237", + "2829", + "2833", + "284", + "2919", + "2920", + "301", + "3071", + "30817", + "3082", + "3148", + "3164", + "3219", + "3265", + "335", + "348110", + "3569", + "3570", + "3576", + "3577", + "3579", + "3586", + "3627", + "3685", + "3689", + "3690", + "3815", + "387", + "387695", + "3897", + "391", + "3958", + "409", + "4192", + "4233", + "4283", + "4814", + "4856", + "503618", + "51119", + "51176", + "51192", + "5154", + "5155", + "51554", + "5156", + "5159", + "5196", + "5291", + "5293", + "5294", + "5328", + "5329", + "5337", + "5365", + "5478", + "5479", + "5580", + "5588", + "5594", + "5604", + "56413", + "56477", + "566", + "57175", + "5795", + "5800", + "5898", + "6036", + "60675", + "6091", + "6223", + "6279", + "6280", + "6283", + "6288", + "6346", + "6347", + "6348", + "6354", + "6355", + "6356", + "6357", + "6359", + "6360", + "6361", + "6362", + "6363", + "6364", + "6366", + "6367", + "6368", + "6369", + "6370", + "6372", + "6373", + "6374", + "6375", + "6376", + "6387", + "63916", + "6441", + "6558", + "6585", + "6586", + "6693", + "682", + "6850", + "692094", + "727", + "728", + "728358", + "7852", + "7857", + "7869", + "796", + "8061", + "8394", + "8600", + "8729", + "8829", + "9034", + "9353", + "9547", + "9564", + "9732" + ] + }, + "GO:0000209": { + "Name": "protein polyubiquitination", + "Task": "GO", + "Genes": [ + "10075", + "10193", + "10210", + "10273", + "10299", + "10346", + "10393", + "10425", + "10477", + "10612", + "10616", + "10758", + "11065", + "11074", + "1161", + "117584", + "117854", + "118424", + "138065", + "149041", + "149603", + "1499", + "151636", + "1643", + "165918", + "200933", + "201292", + "220441", + "220972", + "22954", + "22978", + "23077", + "23194", + "23220", + "23291", + "23327", + "23328", + "23532", + "23608", + "23623", + "23759", + "246184", + "257218", + "25793", + "25847", + "26001", + "26145", + "26249", + "26268", + "26272", + "267", + "27252", + "27338", + "27339", + "29089", + "29882", + "29945", + "3093", + "329", + "331", + "3429", + "378884", + "4012", + "4193", + "5071", + "51283", + "51343", + "51366", + "51433", + "51434", + "51514", + "51529", + "51619", + "5192", + "54476", + "54542", + "54546", + "54551", + "54708", + "54926", + "54941", + "55016", + "55072", + "55223", + "55284", + "55626", + "56254", + "57154", + "57162", + "57531", + "57542", + "57674", + "580", + "596", + "5987", + "6048", + "6049", + "63891", + "63893", + "642", + "64320", + "64682", + "64839", + "6500", + "6502", + "672", + "6737", + "6872", + "7064", + "7128", + "7174", + "7186", + "7189", + "7267", + "7319", + "7320", + "7321", + "7322", + "7323", + "7324", + "7325", + "7326", + "7327", + "7328", + "7332", + "7334", + "7335", + "7336", + "7337", + "7706", + "7726", + "79016", + "79102", + "79594", + "80196", + "80263", + "80351", + "80829", + "81545", + "81603", + "81790", + "81847", + "81858", + "83737", + "8405", + "84078", + "84219", + "84231", + "84282", + "84447", + "8452", + "8454", + "84675", + "85363", + "865", + "8658", + "8697", + "8881", + "8945", + "89890", + "90025", + "9025", + "90379", + "90678", + "90850", + "91445", + "91947", + "92305", + "92912", + "9320", + "9520", + "9604", + "9666", + "9690", + "9870", + "996", + "997", + "9978" + ] + }, + "GO:0006935": { + "Name": "chemotaxis", + "Task": "GO", + "Genes": [ + "10344", + "10563", + "10803", + "10850", + "10928", + "1113", + "11151", + "11251", + "120425", + "1230", + "1232", + "1233", + "1234", + "1235", + "1236", + "1237", + "1240", + "140596", + "1432", + "1511", + "1524", + "1525", + "1667", + "1672", + "1673", + "1839", + "185", + "1880", + "1902", + "1906", + "1907", + "1908", + "1910", + "1960", + "1969", + "200576", + "2047", + "2247", + "2252", + "2255", + "2321", + "23396", + "2350", + "23513", + "2358", + "240", + "2549", + "2621", + "27237", + "2829", + "2833", + "284", + "2919", + "2920", + "301", + "3071", + "30817", + "3082", + "3148", + "3164", + "3219", + "3265", + "335", + "3569", + "3570", + "3576", + "3577", + "3579", + "3586", + "3627", + "3685", + "3689", + "3690", + "3815", + "387", + "387695", + "3897", + "391", + "3958", + "409", + "4192", + "4233", + "4283", + "4814", + "4856", + "503618", + "51119", + "51176", + "51192", + "5154", + "5155", + "51554", + "5156", + "5159", + "5196", + "5291", + "5293", + "5294", + "5328", + "5329", + "5337", + "5365", + "5478", + "5479", + "5580", + "5588", + "5594", + "5604", + "56413", + "56477", + "566", + "57175", + "5795", + "5800", + "5898", + "6036", + "60675", + "6091", + "6223", + "6279", + "6280", + "6283", + "6288", + "6346", + "6347", + "6348", + "6354", + "6355", + "6356", + "6357", + "6359", + "6360", + "6361", + "6362", + "6363", + "6364", + "6366", + "6367", + "6368", + "6369", + "6370", + "6372", + "6373", + "6374", + "6375", + "6376", + "6387", + "63916", + "6441", + "6558", + "6585", + "6586", + "6693", + "682", + "6850", + "692094", + "727", + "728", + "728358", + "7852", + "7857", + "7869", + "796", + "8061", + "8394", + "8600", + "8729", + "8829", + "9034", + "9353", + "9547", + "9564", + "9732" + ] + }, + "GO:0042330": { + "Name": "taxis", + "Task": "GO", + "Genes": [ + "10344", + "10563", + "10803", + "10850", + "10928", + "1113", + "11151", + "11251", + "120425", + "1230", + "1232", + "1233", + "1234", + "1235", + "1236", + "1237", + "1240", + "140596", + "1432", + "1511", + "1524", + "1525", + "1667", + "1672", + "1673", + "1839", + "185", + "1880", + "1902", + "1906", + "1907", + "1908", + "1910", + "1960", + "1969", + "200576", + "2047", + "2247", + "2252", + "2255", + "2321", + "23396", + "2350", + "23513", + "2358", + "240", + "2549", + "2621", + "27237", + "2829", + "2833", + "284", + "2919", + "2920", + "301", + "3071", + "30817", + "3082", + "3148", + "3164", + "3219", + "3265", + "335", + "3569", + "3570", + "3576", + "3577", + "3579", + "3586", + "3627", + "3685", + "3689", + "3690", + "3815", + "387", + "387695", + "3897", + "391", + "3958", + "409", + "4192", + "4233", + "4283", + "4814", + "4856", + "503618", + "51119", + "51176", + "51192", + "5154", + "5155", + "51554", + "5156", + "5159", + "5196", + "5291", + "5293", + "5294", + "5328", + "5329", + "5337", + "5365", + "5478", + "5479", + "5580", + "5588", + "5594", + "5604", + "56413", + "56477", + "566", + "57175", + "5795", + "5800", + "5898", + "6036", + "60675", + "6091", + "6223", + "6279", + "6280", + "6283", + "6288", + "6346", + "6347", + "6348", + "6354", + "6355", + "6356", + "6357", + "6359", + "6360", + "6361", + "6362", + "6363", + "6364", + "6366", + "6367", + "6368", + "6369", + "6370", + "6372", + "6373", + "6374", + "6375", + "6376", + "6387", + "63916", + "6441", + "6558", + "6585", + "6586", + "6693", + "682", + "6850", + "692094", + "727", + "728", + "728358", + "7852", + "7857", + "7869", + "796", + "8061", + "8394", + "8600", + "8729", + "8829", + "9034", + "9353", + "9547", + "9564", + "9732" + ] + }, + "GO:0050867": { + "Name": "positive regulation of cell activation", + "Task": "GO", + "Genes": [ + "100133941", + "10148", + "10288", + "10451", + "10459", + "10524", + "10666", + "10673", + "10808", + "10859", + "11006", + "11027", + "11126", + "11148", + "11221", + "112441434", + "115352", + "124912", + "126259", + "1326", + "1378", + "1445", + "149233", + "149840", + "1604", + "177", + "1803", + "1880", + "199", + "2048", + "207", + "2255", + "22914", + "2309", + "23149", + "2319", + "23308", + "2475", + "2534", + "259307", + "2621", + "2811", + "2812", + "2814", + "2815", + "29108", + "29126", + "30011", + "301", + "3071", + "30835", + "3105", + "3109", + "3113", + "3115", + "3122", + "3123", + "3133", + "3135", + "3146", + "3329", + "3458", + "3479", + "3481", + "3485", + "353514", + "3553", + "3558", + "3565", + "3569", + "3572", + "3586", + "3592", + "3593", + "3594", + "3606", + "3717", + "3735", + "375033", + "3929", + "3952", + "3965", + "399", + "403313", + "4067", + "4179", + "4282", + "4690", + "4773", + "4860", + "50943", + "51293", + "51561", + "5170", + "5290", + "5321", + "54106", + "54209", + "54537", + "55423", + "55626", + "558", + "5777", + "5781", + "57829", + "5788", + "5819", + "59067", + "5914", + "596", + "604", + "6046", + "6188", + "6195", + "6348", + "6375", + "63925", + "64115", + "64127", + "64410", + "64581", + "64926", + "6541", + "6688", + "6714", + "6850", + "695", + "7037", + "7040", + "7048", + "7057", + "7158", + "7297", + "7409", + "7412", + "7474", + "7494", + "7525", + "7535", + "79576", + "79987", + "80381", + "81704", + "8440", + "84433", + "84630", + "85480", + "857", + "8600", + "8651", + "8740", + "8741", + "8764", + "90865", + "9092", + "912", + "916", + "923", + "940", + "952", + "959", + "961", + "970", + "972", + "975" + ] + }, + "GO:0032956": { + "Name": "regulation of actin cytoskeleton organization", + "Task": "GO", + "Genes": [ + "10152", + "10163", + "10174", + "10344", + "10391", + "10395", + "10411", + "10435", + "10456", + "10458", + "10565", + "1073", + "10787", + "10788", + "10979", + "11151", + "11170", + "11211", + "11344", + "116985", + "118", + "119", + "1236", + "123720", + "126820", + "128272", + "136319", + "1398", + "1440", + "146206", + "148170", + "1490", + "1496", + "1613", + "1856", + "1857", + "1906", + "1946", + "2017", + "203228", + "2039", + "2042", + "2150", + "2185", + "2241", + "22843", + "22998", + "23122", + "23189", + "23191", + "23332", + "23370", + "23433", + "23500", + "23616", + "23671", + "24142", + "2475", + "25", + "253260", + "253725", + "25802", + "27", + "27302", + "2824", + "28984", + "29109", + "2934", + "3055", + "3059", + "3071", + "3265", + "3273", + "335", + "348110", + "374872", + "382", + "387", + "389", + "3925", + "395", + "3984", + "4233", + "440335", + "442721", + "4653", + "4690", + "4771", + "5058", + "5062", + "5063", + "5071", + "50848", + "51466", + "51474", + "5154", + "5156", + "51571", + "51763", + "5216", + "5217", + "5341", + "5345", + "54959", + "55160", + "55604", + "55616", + "55704", + "5580", + "55845", + "55971", + "57026", + "57175", + "57482", + "5756", + "57822", + "5829", + "5879", + "5898", + "5921", + "5962", + "6093", + "6281", + "6356", + "6366", + "6369", + "6376", + "6387", + "64223", + "64857", + "6548", + "6624", + "683", + "7016", + "7043", + "71", + "7114", + "7226", + "7248", + "7408", + "7429", + "7430", + "7454", + "7481", + "7840", + "79541", + "7984", + "8440", + "8477", + "84952", + "8500", + "85415", + "85477", + "8558", + "859", + "88", + "8829", + "8936", + "90102", + "9026", + "9087", + "90952", + "9113", + "91663", + "9353", + "93663", + "9475", + "9639", + "9647", + "9873", + "9948" + ] + }, + "GO:0006886": { + "Name": "intracellular protein transport", + "Task": "GO", + "Genes": [ + "10013", + "100133941", + "10016", + "10113", + "10204", + "10569", + "10938", + "10952", + "10959", + "10972", + "11020", + "11097", + "11196", + "11231", + "11276", + "11331", + "1191", + "126549", + "130617", + "144165", + "157769", + "158234", + "1678", + "1871", + "1939", + "2017", + "207", + "23039", + "23161", + "23163", + "23197", + "23214", + "23511", + "23534", + "23787", + "23788", + "25782", + "25813", + "25999", + "26060", + "26088", + "26154", + "26517", + "26519", + "26520", + "26521", + "26985", + "27183", + "27236", + "27351", + "29098", + "29886", + "29927", + "29928", + "3308", + "3309", + "3312", + "3315", + "3320", + "345611", + "372", + "3836", + "3837", + "3838", + "3840", + "3842", + "3843", + "3920", + "3998", + "4321", + "440738", + "4591", + "4734", + "481", + "4869", + "4905", + "51009", + "51079", + "51172", + "51429", + "51501", + "51762", + "5189", + "5190", + "5191", + "5192", + "5194", + "5195", + "54732", + "5476", + "550", + "55027", + "55122", + "5514", + "55198", + "55437", + "55666", + "55670", + "55705", + "55717", + "55737", + "55750", + "55829", + "56478", + "56993", + "57154", + "57510", + "5824", + "5828", + "5830", + "58533", + "5901", + "5903", + "602", + "6103", + "63894", + "63932", + "63971", + "6400", + "64089", + "64149", + "64328", + "6642", + "6653", + "6774", + "6788", + "6789", + "6836", + "6850", + "7040", + "7095", + "7175", + "7184", + "7353", + "7415", + "7514", + "754", + "7879", + "79139", + "79158", + "79711", + "79971", + "8021", + "8031", + "811", + "81502", + "81609", + "8239", + "84268", + "84447", + "8504", + "8878", + "8943", + "90580", + "9146", + "9179", + "91949", + "92305", + "92335", + "9409", + "950", + "9531", + "9648", + "9670", + "9709", + "9765", + "9847", + "9874", + "9895" + ] + }, + "GO:0034330": { + "Name": "cell junction organization", + "Task": "GO", + "Genes": [ + "1003", + "100506658", + "10052", + "1009", + "1020", + "10243", + "10266", + "10804", + "10979", + "11187", + "1134", + "11346", + "1140", + "114798", + "120892", + "123720", + "125111", + "1308", + "1365", + "143098", + "143162", + "1436", + "144100", + "1499", + "1501", + "1524", + "153562", + "1639", + "1739", + "1742", + "1829", + "1855", + "1894", + "2149", + "2150", + "22829", + "22854", + "22865", + "22871", + "22943", + "23237", + "23380", + "23396", + "23616", + "2534", + "2554", + "2561", + "2562", + "2566", + "26060", + "26167", + "2697", + "2701", + "2702", + "2705", + "2706", + "2895", + "29984", + "348", + "351", + "3655", + "3691", + "3728", + "375790", + "3801", + "387", + "389", + "3897", + "3915", + "4088", + "4092", + "4137", + "43", + "4301", + "4593", + "4649", + "4868", + "4897", + "4983", + "5010", + "5062", + "5063", + "51201", + "5175", + "5318", + "5339", + "54413", + "5457", + "55243", + "55765", + "5578", + "5584", + "5586", + "55901", + "55920", + "56122", + "56123", + "56125", + "56126", + "56127", + "56130", + "56131", + "56132", + "56133", + "5621", + "5657", + "5663", + "57126", + "57502", + "57555", + "57662", + "57689", + "57717", + "5789", + "5792", + "5796", + "5802", + "5872", + "5881", + "60", + "613", + "627", + "6376", + "653464", + "6591", + "6624", + "6710", + "6714", + "6900", + "7040", + "7042", + "7043", + "7082", + "7094", + "71", + "7122", + "7414", + "7474", + "7476", + "7855", + "79834", + "79977", + "79983", + "80725", + "80728", + "81671", + "829", + "831", + "8321", + "83660", + "83700", + "8394", + "84189", + "84612", + "84631", + "8506", + "85302", + "87", + "88", + "89", + "8934", + "89780", + "9076", + "90952", + "91663", + "91862", + "9344", + "9722", + "9948", + "999" + ] + }, + "GO:0002697": { + "Name": "regulation of immune effector process", + "Task": "GO", + "Genes": [ + "100507436", + "10125", + "10459", + "10584", + "10666", + "10859", + "10892", + "11006", + "11126", + "112441434", + "11314", + "11326", + "11331", + "114836", + "115352", + "1178", + "117854", + "135250", + "1378", + "1379", + "144811", + "146850", + "149840", + "1604", + "163486", + "164", + "177", + "196", + "2", + "201294", + "2048", + "2150", + "2213", + "2219", + "2220", + "2242", + "22914", + "23705", + "246778", + "25818", + "259197", + "259307", + "26057", + "2821", + "282618", + "2896", + "301", + "3071", + "3075", + "3077", + "30817", + "3105", + "3106", + "3109", + "3122", + "3123", + "3133", + "3134", + "3135", + "3140", + "3329", + "335", + "336", + "3383", + "3440", + "3456", + "3458", + "353091", + "354", + "3553", + "3554", + "3558", + "3565", + "3569", + "3586", + "3592", + "3593", + "3606", + "3630", + "3663", + "3684", + "3689", + "377630", + "3805", + "3815", + "3821", + "3822", + "3824", + "383", + "387837", + "3916", + "3952", + "3965", + "399687", + "409", + "4153", + "4179", + "4843", + "50487", + "50943", + "51744", + "5225", + "5245", + "5272", + "5322", + "54106", + "54537", + "54795", + "55061", + "55601", + "55765", + "56253", + "5650", + "567", + "57126", + "5788", + "5817", + "5819", + "59067", + "5914", + "6046", + "6223", + "6318", + "634", + "6375", + "64127", + "6810", + "684", + "6845", + "6885", + "695", + "7037", + "7040", + "7042", + "7043", + "708", + "710", + "7124", + "7158", + "7186", + "7189", + "722", + "725", + "7454", + "7474", + "7494", + "7855", + "78989", + "79004", + "814", + "8140", + "81545", + "8417", + "84868", + "8547", + "8673", + "8723", + "8741", + "8809", + "8832", + "9341", + "9390", + "941", + "9437", + "966", + "975", + "9865" + ] + }, + "GO:0070372": { + "Name": "regulation of ERK1 and ERK2 cascade", + "Task": "GO", + "Genes": [ + "10048", + "10125", + "10253", + "10268", + "10318", + "10457", + "10979", + "1116", + "11331", + "114609", + "116", + "1230", + "1236", + "1399", + "1490", + "152007", + "152110", + "153090", + "1652", + "168667", + "1739", + "177", + "1845", + "1846", + "1848", + "1880", + "1956", + "195827", + "1969", + "2043", + "2045", + "2047", + "2064", + "2066", + "2150", + "2185", + "2192", + "222166", + "2243", + "2244", + "2246", + "2247", + "2249", + "2261", + "2264", + "2266", + "2324", + "2335", + "2358", + "23779", + "246", + "2492", + "25778", + "26191", + "2621", + "26291", + "2633", + "2651", + "284", + "284340", + "285016", + "2852", + "285315", + "29108", + "2950", + "3084", + "3123", + "3146", + "3265", + "3356", + "3357", + "3358", + "3383", + "341152", + "3479", + "348", + "3491", + "351", + "3553", + "3791", + "388325", + "389658", + "3965", + "408", + "409", + "4282", + "4342", + "4504", + "4838", + "4851", + "4853", + "4914", + "5031", + "5151", + "5154", + "5155", + "5156", + "5159", + "5245", + "5300", + "5314", + "5320", + "5322", + "5345", + "54209", + "54550", + "55294", + "55333", + "55532", + "55801", + "55885", + "5590", + "5595", + "5604", + "5609", + "57007", + "57556", + "5777", + "5781", + "5801", + "6237", + "6278", + "6348", + "6363", + "6366", + "6376", + "6464", + "64762", + "650", + "65009", + "6504", + "65268", + "673", + "6815", + "7010", + "7040", + "728", + "7430", + "7534", + "7786", + "78986", + "7984", + "8000", + "81610", + "84231", + "8482", + "920", + "9258", + "9270", + "9290", + "9368", + "9370", + "9464", + "960", + "9693", + "972", + "9965" + ] + }, + "GO:0035295": { + "Name": "tube development", + "Task": "GO", + "Genes": [ + "100127206", + "1012", + "10159", + "10203", + "10266", + "10267", + "10413", + "11082", + "11146", + "1116", + "123872", + "1282", + "128240", + "1317", + "133", + "137814", + "140628", + "1436", + "144165", + "144455", + "1460", + "1499", + "153090", + "161742", + "168667", + "182", + "1948", + "1950", + "1960", + "2022", + "2047", + "2050", + "207", + "2246", + "2247", + "2252", + "2255", + "22846", + "2294", + "23411", + "23513", + "2549", + "255324", + "25836", + "25865", + "2624", + "26249", + "2626", + "2627", + "2658", + "27031", + "27035", + "2735", + "2737", + "2822", + "283", + "2838", + "284", + "3162", + "3164", + "3198", + "3397", + "339829", + "3572", + "3576", + "3606", + "3675", + "3678", + "3690", + "3696", + "375056", + "3791", + "387", + "388", + "388389", + "3952", + "3953", + "4017", + "4041", + "4162", + "4233", + "4524", + "4627", + "4638", + "4691", + "4851", + "4852", + "4856", + "5058", + "506", + "5125", + "51339", + "51752", + "5310", + "5311", + "54361", + "55036", + "55109", + "5613", + "56913", + "5697", + "57057", + "5727", + "5747", + "57674", + "57680", + "5915", + "5919", + "5921", + "5979", + "60675", + "6091", + "6092", + "6095", + "6299", + "6347", + "64220", + "6425", + "64321", + "6441", + "650", + "652", + "65266", + "657", + "659", + "6714", + "6722", + "6772", + "6910", + "6928", + "6997", + "7010", + "7040", + "7048", + "7057", + "71", + "7490", + "7547", + "7837", + "7857", + "79031", + "79625", + "79733", + "79827", + "79924", + "80025", + "80199", + "83605", + "83700", + "84830", + "84913", + "8503", + "8646", + "8829", + "8854", + "90", + "90627", + "9096", + "9270", + "9289", + "9353", + "93974", + "94", + "9451" + ] + }, + "GO:0022409": { + "Name": "positive regulation of cell-cell adhesion", + "Task": "GO", + "Genes": [ + "100133941", + "10076", + "10148", + "10211", + "10272", + "10288", + "10524", + "10630", + "10725", + "10808", + "10859", + "11006", + "11126", + "11148", + "11221", + "126259", + "1326", + "1378", + "1445", + "149233", + "1511", + "1604", + "177", + "1803", + "199", + "201627", + "207", + "2113", + "2243", + "2244", + "2266", + "22914", + "22915", + "2309", + "23149", + "2319", + "23308", + "2475", + "2525", + "2529", + "2534", + "25930", + "259307", + "2651", + "29108", + "29126", + "301", + "3037", + "3071", + "30835", + "3105", + "3109", + "3113", + "3115", + "3122", + "3123", + "3133", + "3135", + "3146", + "3169", + "3170", + "3329", + "3346", + "3458", + "3479", + "3481", + "3485", + "3553", + "3558", + "3565", + "3569", + "3572", + "3592", + "3593", + "3594", + "3606", + "3654", + "3716", + "3717", + "387", + "3952", + "3965", + "399", + "4067", + "4092", + "4179", + "4192", + "4301", + "4680", + "4690", + "4838", + "4860", + "50848", + "50943", + "51206", + "51561", + "5170", + "5290", + "5329", + "5345", + "5420", + "55423", + "55626", + "5777", + "5781", + "57829", + "59067", + "5914", + "5970", + "604", + "6046", + "6188", + "6375", + "6376", + "64115", + "64410", + "6484", + "64926", + "6541", + "655", + "6714", + "7037", + "7048", + "7082", + "7124", + "7189", + "7297", + "7409", + "7412", + "7494", + "7525", + "7535", + "79576", + "8013", + "80381", + "81704", + "84034", + "8440", + "84433", + "84466", + "857", + "8600", + "8613", + "8631", + "8651", + "8728", + "8740", + "8764", + "9092", + "912", + "916", + "9223", + "923", + "940", + "959", + "960", + "961", + "970", + "975", + "9780" + ] + }, + "GO:0006914": { + "Name": "autophagy", + "Task": "GO", + "Genes": [ + "10043", + "10241", + "10254", + "10490", + "10533", + "11152", + "11267", + "11331", + "115201", + "1191", + "124997", + "128866", + "132671", + "137492", + "139341", + "143187", + "155382", + "157753", + "162427", + "1785", + "192111", + "203228", + "22863", + "23001", + "23130", + "23192", + "23208", + "23230", + "23241", + "23339", + "23341", + "23376", + "23400", + "23503", + "23647", + "23673", + "25793", + "25851", + "25978", + "25989", + "26100", + "26235", + "26249", + "26276", + "2629", + "27243", + "285180", + "285636", + "285973", + "29979", + "29982", + "30849", + "310", + "3312", + "3320", + "340061", + "345611", + "3691", + "3920", + "3964", + "4077", + "440026", + "440738", + "441925", + "472", + "4864", + "488", + "5071", + "51024", + "51028", + "51127", + "51160", + "5119", + "51368", + "51399", + "51506", + "51510", + "51569", + "51652", + "51715", + "5289", + "53349", + "54463", + "550", + "55014", + "55048", + "55054", + "55062", + "55201", + "55432", + "55626", + "56270", + "57132", + "57154", + "57231", + "57535", + "57674", + "5828", + "5830", + "58476", + "5861", + "60673", + "6279", + "6280", + "63894", + "64419", + "64422", + "64601", + "65018", + "65082", + "65992", + "6714", + "6845", + "6901", + "7157", + "7189", + "7251", + "738", + "7405", + "7415", + "7879", + "79065", + "79643", + "79720", + "79876", + "80183", + "80208", + "8027", + "80700", + "81631", + "81671", + "83460", + "83734", + "83933", + "8408", + "84313", + "84557", + "84749", + "84938", + "84971", + "85363", + "8673", + "8678", + "8878", + "8897", + "8987", + "9140", + "91452", + "9146", + "91782", + "9179", + "92421", + "93343", + "9342", + "9373", + "9474", + "9706", + "9776", + "9779", + "9821", + "9842", + "987", + "9927" + ] + }, + "GO:0061919": { + "Name": "process utilizing autophagic mechanism", + "Task": "GO", + "Genes": [ + "10043", + "10241", + "10254", + "10490", + "10533", + "11152", + "11267", + "11331", + "115201", + "1191", + "124997", + "128866", + "132671", + "137492", + "139341", + "143187", + "155382", + "157753", + "162427", + "1785", + "192111", + "203228", + "22863", + "23001", + "23130", + "23192", + "23208", + "23230", + "23241", + "23339", + "23341", + "23376", + "23400", + "23503", + "23647", + "23673", + "25793", + "25851", + "25978", + "25989", + "26100", + "26235", + "26249", + "26276", + "2629", + "27243", + "285180", + "285636", + "285973", + "29979", + "29982", + "30849", + "310", + "3312", + "3320", + "340061", + "345611", + "3691", + "3920", + "3964", + "4077", + "440026", + "440738", + "441925", + "472", + "4864", + "488", + "5071", + "51024", + "51028", + "51127", + "51160", + "5119", + "51368", + "51399", + "51506", + "51510", + "51569", + "51652", + "51715", + "5289", + "53349", + "54463", + "550", + "55014", + "55048", + "55054", + "55062", + "55201", + "55432", + "55626", + "56270", + "57132", + "57154", + "57231", + "57535", + "57674", + "5828", + "5830", + "58476", + "5861", + "60673", + "6279", + "6280", + "63894", + "64419", + "64422", + "64601", + "65018", + "65082", + "65992", + "6714", + "6845", + "6901", + "7157", + "7189", + "7251", + "738", + "7405", + "7415", + "7879", + "79065", + "79643", + "79720", + "79876", + "80183", + "80208", + "8027", + "80700", + "81631", + "81671", + "83460", + "83734", + "83933", + "8408", + "84313", + "84557", + "84749", + "84938", + "84971", + "85363", + "8673", + "8678", + "8878", + "8897", + "8987", + "9140", + "91452", + "9146", + "91782", + "9179", + "92421", + "93343", + "9342", + "9373", + "9474", + "9706", + "9776", + "9779", + "9821", + "9842", + "987", + "9927" + ] + }, + "GO:0032386": { + "Name": "regulation of intracellular transport", + "Task": "GO", + "Genes": [ + "10023", + "10079", + "10134", + "10155", + "10411", + "10541", + "10615", + "10657", + "10956", + "11052", + "11235", + "11236", + "11261", + "11315", + "116150", + "120892", + "123745", + "1263", + "127933", + "128637", + "1409", + "1410", + "1601", + "161291", + "1660", + "1778", + "20", + "2010", + "2033", + "22876", + "22994", + "23011", + "2316", + "23209", + "23286", + "23317", + "23379", + "23557", + "255738", + "255758", + "258010", + "25930", + "26119", + "2619", + "2621", + "26229", + "26993", + "27236", + "27248", + "27346", + "29072", + "2932", + "29934", + "302", + "3059", + "337867", + "3429", + "3458", + "347", + "3638", + "3728", + "3916", + "392", + "3936", + "404636", + "4478", + "4600", + "4734", + "4744", + "4926", + "50487", + "51009", + "5108", + "5116", + "51366", + "51465", + "51548", + "51569", + "51614", + "51652", + "51684", + "51715", + "5295", + "53407", + "54888", + "55051", + "55432", + "55677", + "55696", + "55737", + "55741", + "55754", + "55781", + "5580", + "55823", + "55929", + "5594", + "5595", + "5604", + "5605", + "5663", + "57506", + "5770", + "5784", + "580", + "5901", + "5905", + "5936", + "5962", + "60561", + "6342", + "63928", + "64328", + "64801", + "65125", + "652", + "6653", + "6672", + "6714", + "6794", + "7040", + "7175", + "7260", + "7327", + "7341", + "7430", + "7531", + "7874", + "79567", + "79639", + "79752", + "79809", + "79899", + "80149", + "80184", + "8021", + "81555", + "81565", + "8536", + "85366", + "8724", + "8766", + "88", + "8841", + "8882", + "8934", + "89866", + "9024", + "91319", + "9141", + "9370", + "9495", + "9531", + "9648", + "9695", + "9727", + "975", + "9777", + "9972", + "999" + ] + }, + "GO:0002696": { + "Name": "positive regulation of leukocyte activation", + "Task": "GO", + "Genes": [ + "100133941", + "10148", + "10288", + "10451", + "10459", + "10524", + "10666", + "10673", + "10808", + "10859", + "11006", + "11126", + "11148", + "11221", + "112441434", + "115352", + "124912", + "126259", + "1326", + "1378", + "1445", + "149233", + "149840", + "1604", + "177", + "1803", + "1880", + "199", + "2048", + "207", + "2255", + "22914", + "2309", + "23149", + "2319", + "23308", + "2475", + "2534", + "259307", + "2621", + "29108", + "29126", + "30011", + "301", + "3071", + "30835", + "3105", + "3109", + "3113", + "3115", + "3122", + "3123", + "3133", + "3135", + "3146", + "3329", + "3458", + "3479", + "3481", + "3485", + "3553", + "3558", + "3565", + "3569", + "3572", + "3586", + "3592", + "3593", + "3594", + "3606", + "3717", + "3735", + "3929", + "3952", + "3965", + "399", + "403313", + "4067", + "4179", + "4282", + "4690", + "4773", + "4860", + "50943", + "51293", + "51561", + "5170", + "5290", + "54106", + "54209", + "54537", + "55423", + "55626", + "558", + "5777", + "5781", + "57829", + "5788", + "5819", + "59067", + "5914", + "596", + "604", + "6046", + "6188", + "6348", + "6375", + "63925", + "64115", + "64127", + "64410", + "64581", + "64926", + "6541", + "6688", + "6714", + "6850", + "695", + "7037", + "7040", + "7048", + "7057", + "7158", + "7297", + "7409", + "7412", + "7474", + "7494", + "7525", + "7535", + "79576", + "80381", + "81704", + "8440", + "84433", + "84630", + "85480", + "857", + "8600", + "8651", + "8740", + "8741", + "8764", + "90865", + "9092", + "912", + "916", + "923", + "940", + "952", + "959", + "961", + "970", + "972", + "975" + ] + }, + "GO:0030100": { + "Name": "regulation of endocytosis", + "Task": "GO", + "Genes": [ + "100506013", + "10062", + "1012", + "10188", + "10211", + "10399", + "10461", + "10584", + "10825", + "10859", + "10960", + "11037", + "11314", + "116519", + "1175", + "1191", + "124590", + "124912", + "124930", + "150696", + "1535", + "1601", + "1861", + "192683", + "1950", + "197", + "20", + "2042", + "2150", + "2213", + "2219", + "2220", + "22848", + "22943", + "23011", + "2332", + "2358", + "25", + "255738", + "257364", + "25875", + "25999", + "26119", + "2621", + "2688", + "27", + "284", + "284654", + "29934", + "29978", + "302", + "3055", + "3077", + "3092", + "3146", + "3190", + "335", + "336", + "338692", + "341", + "344", + "345", + "348", + "351", + "3560", + "3561", + "3600", + "3601", + "3643", + "3685", + "3690", + "382", + "3958", + "399687", + "4035", + "4043", + "408", + "409", + "4153", + "4908", + "4983", + "5054", + "50632", + "51160", + "51479", + "5291", + "5336", + "5359", + "54209", + "54550", + "5538", + "558", + "5587", + "5657", + "566", + "5663", + "567", + "57118", + "57126", + "5770", + "5788", + "5873", + "5879", + "6014", + "6093", + "6311", + "636", + "6386", + "6401", + "6424", + "6441", + "64581", + "6609", + "6622", + "6714", + "7018", + "7036", + "7052", + "717", + "718", + "720", + "721", + "7275", + "7287", + "7376", + "7448", + "78989", + "79890", + "80230", + "8291", + "8301", + "84058", + "8527", + "8547", + "857", + "867", + "8724", + "88455", + "8862", + "8877", + "89780", + "9026", + "90416", + "90678", + "933", + "9370", + "949", + "967", + "9711", + "9765", + "977", + "9779", + "9863", + "9892" + ] + }, + "GO:0048285": { + "Name": "organelle fission", + "Task": "GO", + "Genes": [ + "10005", + "10015", + "10051", + "10059", + "10111", + "10274", + "10403", + "10464", + "10540", + "10592", + "10609", + "10615", + "1062", + "10726", + "10734", + "10735", + "11004", + "1104", + "11065", + "11130", + "11144", + "11200", + "113130", + "126353", + "128866", + "129563", + "148362", + "148479", + "151648", + "152185", + "158983", + "1642", + "200942", + "201254", + "220134", + "221035", + "221150", + "22919", + "22933", + "22974", + "23023", + "23063", + "23122", + "23141", + "2316", + "23172", + "23212", + "23310", + "23332", + "23397", + "23603", + "23636", + "24137", + "256364", + "25879", + "25978", + "26065", + "26993", + "27183", + "27243", + "27338", + "27436", + "2801", + "283489", + "285643", + "29098", + "29127", + "29128", + "29893", + "317761", + "3306", + "347688", + "348235", + "378708", + "3796", + "3832", + "3833", + "3834", + "3835", + "3837", + "387", + "387893", + "4361", + "472", + "4976", + "49856", + "51024", + "5119", + "51203", + "51510", + "51537", + "51652", + "5347", + "54332", + "54471", + "54617", + "54627", + "54908", + "54984", + "55125", + "55143", + "55165", + "56647", + "56947", + "57082", + "57132", + "5728", + "57697", + "5824", + "5885", + "5890", + "5901", + "64151", + "6683", + "6795", + "729440", + "7329", + "7756", + "79003", + "79594", + "79643", + "79884", + "79998", + "80346", + "8086", + "81620", + "81929", + "81930", + "8243", + "84057", + "8452", + "84722", + "84861", + "8678", + "8697", + "8766", + "8799", + "8800", + "8815", + "8900", + "891", + "89866", + "90417", + "9055", + "91137", + "9126", + "91272", + "9150", + "91782", + "9183", + "9212", + "92421", + "92960", + "93426", + "9371", + "9493", + "9525", + "9639", + "9700", + "9918", + "9928", + "9985" + ] + }, + "GO:0045017": { + "Name": "glycerolipid biosynthetic process", + "Task": "GO", + "Genes": [ + "10026", + "1040", + "10400", + "10423", + "10554", + "10555", + "1103", + "1119", + "1120", + "116255", + "1201", + "126969", + "128869", + "129303", + "137695", + "137964", + "145567", + "150763", + "158835", + "1606", + "1608", + "1609", + "171586", + "200576", + "200879", + "204962", + "22863", + "22876", + "22979", + "23049", + "23167", + "23175", + "23396", + "23446", + "23556", + "23761", + "253558", + "254531", + "2710", + "27124", + "27315", + "283", + "284098", + "30849", + "335", + "336", + "346606", + "347516", + "3612", + "3635", + "3636", + "3706", + "3707", + "376497", + "392636", + "3931", + "4534", + "4952", + "51099", + "51196", + "51205", + "51227", + "5130", + "51447", + "51604", + "51763", + "5277", + "5279", + "5281", + "5283", + "5286", + "5289", + "5291", + "5294", + "5297", + "5298", + "5305", + "5321", + "5336", + "5337", + "5338", + "54344", + "54675", + "54872", + "55300", + "55326", + "55361", + "55500", + "55650", + "56623", + "56894", + "56895", + "56994", + "57048", + "57153", + "5728", + "57605", + "57678", + "5833", + "64419", + "64924", + "65258", + "660", + "6901", + "7405", + "79143", + "79837", + "79888", + "80055", + "80168", + "80235", + "80271", + "80339", + "80736", + "81490", + "83394", + "8394", + "8395", + "8396", + "8398", + "84188", + "84302", + "8443", + "84649", + "84668", + "84803", + "84879", + "84992", + "8525", + "8526", + "8527", + "85465", + "8605", + "8678", + "8694", + "8733", + "8760", + "8776", + "8813", + "8818", + "8821", + "8867", + "8871", + "8897", + "8898", + "9091", + "9107", + "9108", + "9110", + "93210", + "94005", + "9468", + "9487", + "9488", + "9600", + "9663", + "9791", + "9807", + "9896" + ] + }, + "GO:0032886": { + "Name": "regulation of microtubule-based process", + "Task": "GO", + "Genes": [ + "10013", + "10015", + "1003", + "10039", + "10142", + "10300", + "10382", + "10432", + "10460", + "10519", + "10615", + "10634", + "10733", + "10769", + "11075", + "11076", + "11170", + "122664", + "1235", + "123872", + "126731", + "128866", + "146057", + "152185", + "153241", + "1540", + "157922", + "163786", + "1639", + "1672", + "1729", + "1778", + "1946", + "2011", + "2042", + "2064", + "220134", + "221150", + "221908", + "2242", + "22809", + "22919", + "22924", + "22974", + "22994", + "23122", + "23187", + "23271", + "23299", + "23332", + "23411", + "23499", + "23636", + "24139", + "246176", + "25", + "255061", + "255758", + "256364", + "25978", + "25999", + "26054", + "26146", + "2648", + "27243", + "2770", + "28964", + "29105", + "2932", + "29899", + "29922", + "3192", + "324", + "3303", + "3304", + "338657", + "339829", + "3476", + "348235", + "348654", + "3916", + "3925", + "402", + "4133", + "4137", + "4204", + "4233", + "4591", + "4733", + "4744", + "4869", + "4926", + "5058", + "51072", + "5119", + "51510", + "51652", + "5314", + "5347", + "54461", + "54627", + "55036", + "55130", + "55226", + "55521", + "55755", + "55835", + "56683", + "56890", + "57119", + "57132", + "57542", + "57551", + "57606", + "57662", + "57787", + "58497", + "5879", + "6047", + "6093", + "6188", + "6249", + "6314", + "636", + "6406", + "6491", + "6622", + "6790", + "6794", + "6865", + "6869", + "6870", + "6904", + "7175", + "7517", + "79187", + "79598", + "79643", + "79809", + "79866", + "79884", + "79959", + "79998", + "84084", + "84722", + "8480", + "85459", + "85478", + "8701", + "8850", + "8874", + "89795", + "899", + "90102", + "91147", + "91782", + "9181", + "92421", + "9525", + "9793" + ] + }, + "GO:0071214": { + "Name": "cellular response to abiotic stimulus", + "Task": "GO", + "Genes": [ + "10010", + "1026", + "10276", + "10413", + "10635", + "10725", + "10856", + "11011", + "1265", + "1387", + "1396", + "1410", + "142", + "1432", + "150678", + "163859", + "1642", + "1643", + "1647", + "1654", + "170506", + "1894", + "1936", + "2033", + "2056", + "2072", + "221391", + "22861", + "22890", + "23028", + "231", + "23411", + "23514", + "23596", + "2547", + "25836", + "25896", + "25963", + "26056", + "26155", + "27035", + "27063", + "27347", + "2822", + "2885", + "3265", + "3297", + "3364", + "3373", + "338567", + "3428", + "358", + "362", + "3645", + "388", + "3981", + "41", + "4157", + "4193", + "4239", + "4311", + "4312", + "4313", + "4314", + "4318", + "4638", + "472", + "4734", + "4869", + "50801", + "50848", + "5111", + "51426", + "51499", + "51701", + "51719", + "51776", + "5269", + "5311", + "5422", + "5424", + "545", + "54617", + "5481", + "54929", + "55144", + "55693", + "5580", + "5600", + "5603", + "56160", + "56339", + "5728", + "57646", + "578", + "5796", + "580", + "5810", + "5883", + "5888", + "59341", + "5978", + "6011", + "611", + "6154", + "6295", + "6337", + "6338", + "6339", + "6340", + "63979", + "641", + "64710", + "65125", + "65267", + "6548", + "6609", + "672", + "675", + "6794", + "6872", + "7076", + "7157", + "7442", + "7486", + "7508", + "7520", + "7528", + "79073", + "79184", + "79752", + "79913", + "80131", + "83695", + "8372", + "83959", + "842", + "84329", + "8450", + "8451", + "8531", + "85453", + "85456", + "8692", + "89872", + "90427", + "9212", + "92241", + "9230", + "92815", + "9575", + "9577", + "9683", + "993", + "9943", + "9978", + "9990" + ] + }, + "GO:0104004": { + "Name": "cellular response to environmental stimulus", + "Task": "GO", + "Genes": [ + "10010", + "1026", + "10276", + "10413", + "10635", + "10725", + "10856", + "11011", + "1265", + "1387", + "1396", + "1410", + "142", + "1432", + "150678", + "163859", + "1642", + "1643", + "1647", + "1654", + "170506", + "1894", + "1936", + "2033", + "2056", + "2072", + "221391", + "22861", + "22890", + "23028", + "231", + "23411", + "23514", + "23596", + "2547", + "25836", + "25896", + "25963", + "26056", + "26155", + "27035", + "27063", + "27347", + "2822", + "2885", + "3265", + "3297", + "3364", + "3373", + "338567", + "3428", + "358", + "362", + "3645", + "388", + "3981", + "41", + "4157", + "4193", + "4239", + "4311", + "4312", + "4313", + "4314", + "4318", + "4638", + "472", + "4734", + "4869", + "50801", + "50848", + "5111", + "51426", + "51499", + "51701", + "51719", + "51776", + "5269", + "5311", + "5422", + "5424", + "545", + "54617", + "5481", + "54929", + "55144", + "55693", + "5580", + "5600", + "5603", + "56160", + "56339", + "5728", + "57646", + "578", + "5796", + "580", + "5810", + "5883", + "5888", + "59341", + "5978", + "6011", + "611", + "6154", + "6295", + "6337", + "6338", + "6339", + "6340", + "63979", + "641", + "64710", + "65125", + "65267", + "6548", + "6609", + "672", + "675", + "6794", + "6872", + "7076", + "7157", + "7442", + "7486", + "7508", + "7520", + "7528", + "79073", + "79184", + "79752", + "79913", + "80131", + "83695", + "8372", + "83959", + "842", + "84329", + "8450", + "8451", + "8531", + "85453", + "85456", + "8692", + "89872", + "90427", + "9212", + "92241", + "9230", + "92815", + "9575", + "9577", + "9683", + "993", + "9943", + "9978", + "9990" + ] + }, + "GO:0072594": { + "Name": "establishment of protein localization to organelle", + "Task": "GO", + "Genes": [ + "100287932", + "10134", + "10204", + "10245", + "10440", + "10452", + "10469", + "10531", + "10856", + "10890", + "10953", + "11231", + "112869", + "11331", + "1191", + "128866", + "130617", + "131474", + "140690", + "144165", + "152485", + "158234", + "158866", + "1678", + "1871", + "207", + "222229", + "22930", + "23163", + "23203", + "23511", + "23534", + "23558", + "23787", + "23788", + "25782", + "25793", + "25813", + "25913", + "26060", + "26061", + "26262", + "26517", + "26519", + "26520", + "26521", + "26985", + "27183", + "285521", + "29090", + "29927", + "29928", + "3009", + "3098", + "3099", + "3308", + "3309", + "3312", + "3320", + "345611", + "3587", + "3836", + "3837", + "3838", + "3840", + "3842", + "3843", + "3916", + "3920", + "401505", + "4121", + "4321", + "4591", + "4734", + "51024", + "51025", + "51079", + "51172", + "51501", + "51608", + "51762", + "5189", + "5190", + "5191", + "5192", + "5194", + "5195", + "54332", + "54543", + "55027", + "55122", + "5514", + "55198", + "55506", + "55670", + "55705", + "55750", + "56478", + "56947", + "56993", + "57154", + "5824", + "5828", + "5830", + "5898", + "5901", + "5903", + "602", + "6262", + "64089", + "64112", + "65018", + "6653", + "6727", + "6729", + "675", + "6774", + "6788", + "6789", + "6850", + "7015", + "706", + "7095", + "7175", + "754", + "7879", + "79035", + "79158", + "7917", + "79568", + "79711", + "8031", + "8239", + "8266", + "83752", + "84268", + "8504", + "8766", + "8878", + "9049", + "90580", + "90678", + "9131", + "9146", + "9179", + "9409", + "950", + "9512", + "9555", + "9648", + "9670", + "9695", + "9765", + "9804", + "9868", + "9927" + ] + }, + "GO:0016032": { + "Name": "viral process", + "Task": "GO", + "Genes": [ + "10015", + "10241", + "10332", + "10542", + "10605", + "10610", + "10663", + "1104", + "11059", + "11060", + "11074", + "11253", + "11282", + "11320", + "128637", + "128866", + "129531", + "131578", + "137492", + "1452", + "1487", + "1488", + "1514", + "155382", + "156", + "1642", + "1656", + "1660", + "185", + "1939", + "200576", + "2060", + "207", + "219931", + "22879", + "23633", + "2530", + "256435", + "25834", + "2589", + "25978", + "2621", + "27074", + "27090", + "27183", + "27243", + "2838", + "28972", + "28985", + "2931", + "2932", + "2959", + "29915", + "30835", + "3276", + "3326", + "3383", + "339122", + "339390", + "348", + "3643", + "3665", + "3685", + "3690", + "3725", + "3838", + "3981", + "4124", + "4245", + "4247", + "4249", + "440400", + "4734", + "4864", + "5045", + "50855", + "5091", + "5093", + "5094", + "51160", + "5119", + "51193", + "51386", + "51510", + "51652", + "53373", + "5478", + "5481", + "54956", + "55048", + "551", + "55223", + "553", + "55337", + "55741", + "558", + "57132", + "5725", + "5819", + "5861", + "5901", + "59272", + "60559", + "6346", + "6347", + "636", + "6480", + "6482", + "6483", + "6484", + "6487", + "6520", + "6598", + "6609", + "6741", + "7113", + "7157", + "7251", + "7391", + "7392", + "7415", + "7706", + "7812", + "7841", + "7879", + "7913", + "79643", + "79720", + "81876", + "821", + "83666", + "83737", + "84875", + "8562", + "857", + "858", + "8661", + "8662", + "8664", + "8665", + "8666", + "8673", + "8678", + "8692", + "8829", + "89853", + "905", + "90678", + "90861", + "91392", + "91782", + "9218", + "92421", + "93343", + "9397", + "9525", + "9712", + "9798" + ] + }, + "GO:0044403": { + "Name": "biological process involved in symbiotic interaction", + "Task": "GO", + "Genes": [ + "1025", + "10332", + "10605", + "1072", + "1105", + "11059", + "11060", + "11074", + "117159", + "128637", + "128866", + "131578", + "140823", + "1514", + "156", + "1642", + "164668", + "1667", + "1670", + "185", + "1915", + "1991", + "200576", + "2033", + "2060", + "207", + "2147", + "2194", + "219931", + "22938", + "23076", + "23137", + "2332", + "2335", + "23435", + "253832", + "25827", + "25833", + "2597", + "25978", + "2621", + "27074", + "27183", + "27243", + "2838", + "29115", + "29801", + "3065", + "3078", + "3080", + "30835", + "3249", + "325", + "3273", + "3326", + "3329", + "3383", + "339390", + "3429", + "3434", + "348", + "3482", + "3643", + "3685", + "3690", + "3725", + "4057", + "414325", + "440026", + "440400", + "4864", + "5071", + "5091", + "51114", + "51176", + "5119", + "51193", + "51510", + "51652", + "51763", + "5196", + "5288", + "5289", + "5297", + "53349", + "53373", + "5340", + "54606", + "5478", + "5479", + "5481", + "551", + "55223", + "553", + "558", + "55894", + "566", + "5702", + "57132", + "5806", + "5819", + "5868", + "59272", + "5978", + "6348", + "6351", + "6355", + "64170", + "64710", + "64848", + "6520", + "6597", + "6598", + "6609", + "6667", + "6714", + "6882", + "6993", + "7023", + "7251", + "728358", + "7706", + "7879", + "79643", + "79677", + "79720", + "80149", + "8091", + "81494", + "820", + "83737", + "8411", + "8542", + "857", + "858", + "867", + "8673", + "8678", + "8812", + "8819", + "8829", + "8934", + "904", + "90861", + "91392", + "9150", + "91782", + "9189", + "9218", + "92421", + "9367", + "9475", + "949", + "9525", + "9798" + ] + }, + "GO:0008654": { + "Name": "phospholipid biosynthetic process", + "Task": "GO", + "Genes": [ + "10026", + "10351", + "1040", + "10400", + "10423", + "10554", + "10555", + "1103", + "1119", + "1120", + "116150", + "1201", + "126969", + "128869", + "129303", + "137964", + "145567", + "150763", + "1606", + "1608", + "1609", + "166929", + "171586", + "200576", + "200879", + "204962", + "22845", + "22863", + "22876", + "22979", + "23049", + "23167", + "23396", + "23446", + "23556", + "23761", + "253558", + "254531", + "259230", + "27124", + "27315", + "284098", + "30849", + "335", + "336", + "3612", + "3635", + "3636", + "3706", + "3707", + "376497", + "3931", + "3992", + "4534", + "4952", + "5007", + "51099", + "51205", + "51227", + "5130", + "51447", + "51604", + "51763", + "5277", + "5279", + "5281", + "5283", + "5286", + "5289", + "5291", + "5294", + "5297", + "5298", + "5305", + "5336", + "5337", + "5338", + "54344", + "54675", + "54872", + "55300", + "55326", + "55361", + "55500", + "55650", + "56623", + "56848", + "56894", + "56895", + "56994", + "57048", + "57153", + "57171", + "5728", + "57605", + "57678", + "5833", + "64419", + "64924", + "65258", + "660", + "6901", + "7405", + "79143", + "79644", + "79837", + "79888", + "79947", + "80055", + "80235", + "80271", + "80339", + "80736", + "81490", + "83394", + "8394", + "8395", + "8396", + "8398", + "84188", + "84302", + "8443", + "84668", + "84803", + "84879", + "84992", + "8525", + "8526", + "8527", + "85465", + "8605", + "8678", + "8733", + "8760", + "8776", + "8813", + "8818", + "8821", + "8867", + "8871", + "8897", + "8898", + "9091", + "9107", + "9108", + "9110", + "9218", + "93210", + "94005", + "9468", + "9487", + "9488", + "9600", + "9791", + "9807", + "9896" + ] + }, + "GO:0051896": { + "Name": "regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction", + "Task": "GO", + "Genes": [ + "10016", + "10193", + "10253", + "10268", + "10399", + "10411", + "10456", + "10507", + "10617", + "10855", + "10870", + "10979", + "1116", + "11315", + "113791", + "1236", + "1440", + "153090", + "1634", + "1646", + "1649", + "183", + "1839", + "1950", + "1956", + "1969", + "2022", + "205428", + "2065", + "2137", + "219699", + "2247", + "2260", + "2261", + "2268", + "2321", + "2322", + "23239", + "23252", + "2335", + "23396", + "23411", + "23612", + "2475", + "2492", + "253260", + "25827", + "26051", + "2621", + "2625", + "2651", + "2660", + "2688", + "284", + "2852", + "29997", + "3059", + "3082", + "3092", + "3135", + "3479", + "3480", + "3481", + "3606", + "3630", + "3643", + "3688", + "3717", + "3791", + "3815", + "389400", + "4058", + "4150", + "4486", + "4653", + "4734", + "4824", + "4922", + "49860", + "5008", + "51384", + "5154", + "5155", + "5156", + "5159", + "5170", + "51763", + "5290", + "5291", + "5294", + "5314", + "54209", + "5465", + "5515", + "55626", + "55801", + "5587", + "57091", + "57142", + "5728", + "57333", + "5747", + "5777", + "5783", + "5795", + "59338", + "5979", + "6237", + "6363", + "6366", + "6376", + "6403", + "642273", + "6425", + "65018", + "653361", + "6714", + "6934", + "7010", + "7040", + "7042", + "7046", + "7057", + "7066", + "708", + "7291", + "7295", + "7498", + "79594", + "8394", + "8395", + "85453", + "8644", + "867", + "8692", + "8904", + "92140", + "9258", + "9270", + "930", + "9368", + "9518", + "9711", + "9723", + "9863" + ] + }, + "GO:0002768": { + "Name": "immune response-regulating cell surface receptor signaling pathway", + "Task": "GO", + "Genes": [ + "100133941", + "10288", + "10451", + "10603", + "10616", + "10657", + "10859", + "10892", + "11006", + "11027", + "11119", + "114609", + "1147", + "121665", + "1378", + "1387", + "1445", + "148022", + "1493", + "163486", + "196051", + "1967", + "199920", + "2033", + "2207", + "2213", + "2219", + "2268", + "22841", + "23149", + "23180", + "23547", + "2358", + "25", + "2533", + "2534", + "25800", + "25865", + "259197", + "26191", + "27040", + "2822", + "2867", + "29110", + "29760", + "3055", + "3071", + "30968", + "3105", + "3115", + "3119", + "3123", + "3135", + "353376", + "3551", + "3635", + "3654", + "3656", + "3661", + "3802", + "3815", + "3821", + "3822", + "3824", + "387837", + "3929", + "3937", + "3965", + "3984", + "4067", + "4153", + "4214", + "4277", + "4332", + "4773", + "4792", + "4938", + "5058", + "5062", + "5063", + "51135", + "51295", + "51324", + "5142", + "5144", + "5284", + "5290", + "5293", + "5335", + "5336", + "5338", + "55024", + "55072", + "5580", + "5581", + "5588", + "5599", + "5601", + "5609", + "5678", + "57402", + "5747", + "5788", + "5795", + "581", + "59338", + "596", + "5970", + "640", + "6416", + "6654", + "6714", + "6850", + "6885", + "695", + "7006", + "7097", + "7099", + "7100", + "7187", + "7189", + "719", + "728", + "7305", + "7334", + "7409", + "7410", + "7462", + "7525", + "7535", + "7917", + "79931", + "8398", + "84174", + "8631", + "8767", + "8890", + "8891", + "8892", + "8893", + "8915", + "919", + "925", + "926", + "930", + "931", + "952", + "9564", + "9865" + ] + }, + "GO:0042060": { + "Name": "wound healing", + "Task": "GO", + "Genes": [ + "10451", + "10630", + "11235", + "116844", + "1281", + "128866", + "1289", + "131566", + "135", + "139189", + "1432", + "146206", + "1511", + "1606", + "1607", + "1608", + "160851", + "1609", + "2064", + "2069", + "2147", + "2149", + "2151", + "2152", + "2155", + "2157", + "2158", + "2159", + "2160", + "2161", + "2162", + "2165", + "2192", + "221037", + "221477", + "2243", + "2244", + "2246", + "2247", + "2255", + "2266", + "22915", + "2316", + "23671", + "25978", + "2623", + "2624", + "2677", + "27243", + "2768", + "2776", + "2778", + "2811", + "2812", + "2814", + "2815", + "3084", + "3162", + "3172", + "3273", + "3479", + "3491", + "350", + "3569", + "3630", + "3673", + "3690", + "3705", + "375056", + "3791", + "388552", + "3936", + "3998", + "4088", + "4321", + "4627", + "5051", + "5058", + "50808", + "5119", + "51510", + "5154", + "5156", + "51652", + "5196", + "5290", + "5291", + "5294", + "5327", + "5336", + "5340", + "54566", + "5530", + "57132", + "57175", + "57591", + "57834", + "5864", + "5894", + "5912", + "634", + "64805", + "6609", + "6707", + "6714", + "6722", + "6812", + "6814", + "6850", + "7040", + "7046", + "7056", + "725", + "7409", + "7410", + "7450", + "7454", + "7474", + "7476", + "780", + "79001", + "79643", + "8324", + "83481", + "8525", + "8526", + "8527", + "8529", + "8613", + "87", + "8761", + "9002", + "90070", + "9076", + "9162", + "91782", + "92421", + "94", + "94121", + "948", + "949", + "953", + "959", + "960", + "966", + "977" + ] + }, + "GO:0051251": { + "Name": "positive regulation of lymphocyte activation", + "Task": "GO", + "Genes": [ + "100133941", + "10148", + "10288", + "10451", + "10459", + "10524", + "10673", + "10808", + "10859", + "11006", + "11126", + "11148", + "11221", + "112441434", + "115352", + "126259", + "1326", + "1378", + "1445", + "149233", + "149840", + "1604", + "177", + "1803", + "1880", + "199", + "2048", + "207", + "2255", + "22914", + "2309", + "23149", + "2319", + "23308", + "2475", + "2534", + "259307", + "2621", + "29108", + "29126", + "30011", + "301", + "3071", + "30835", + "3105", + "3109", + "3113", + "3115", + "3122", + "3123", + "3133", + "3135", + "3146", + "3329", + "3458", + "3479", + "3481", + "3485", + "3553", + "3558", + "3565", + "3569", + "3572", + "3586", + "3592", + "3593", + "3594", + "3606", + "3717", + "3952", + "3965", + "399", + "4067", + "4179", + "4282", + "4690", + "4773", + "4860", + "50943", + "51293", + "51561", + "5170", + "5290", + "54106", + "54537", + "55423", + "55626", + "558", + "5777", + "5781", + "57829", + "5788", + "59067", + "5914", + "596", + "604", + "6046", + "6188", + "6375", + "63925", + "64115", + "64127", + "64410", + "64581", + "64926", + "6541", + "6688", + "6714", + "6850", + "695", + "7037", + "7040", + "7048", + "7158", + "7297", + "7409", + "7412", + "7494", + "7525", + "7535", + "79576", + "80381", + "81704", + "8440", + "84433", + "857", + "8600", + "8651", + "8740", + "8741", + "8764", + "9092", + "912", + "916", + "923", + "940", + "952", + "959", + "961", + "970", + "972", + "975" + ] + }, + "GO:0016197": { + "Name": "endosomal transport", + "Task": "GO", + "Genes": [ + "100287171", + "10043", + "10123", + "10139", + "10228", + "10311", + "10652", + "10807", + "10890", + "10938", + "11021", + "112574", + "11267", + "1130", + "116986", + "124997", + "143187", + "144717", + "150368", + "157680", + "1639", + "19", + "200576", + "2060", + "22836", + "22853", + "22863", + "23023", + "23074", + "23258", + "23325", + "23339", + "23603", + "253725", + "257364", + "25930", + "25963", + "25978", + "26000", + "26088", + "27131", + "27147", + "27183", + "28952", + "29062", + "29886", + "29911", + "30844", + "30845", + "30846", + "30849", + "338382", + "374403", + "382", + "392", + "3998", + "400", + "404636", + "4645", + "51272", + "51361", + "51429", + "51479", + "51542", + "51552", + "51652", + "51699", + "5289", + "54520", + "54551", + "54732", + "54918", + "55275", + "55317", + "55353", + "55610", + "55614", + "55658", + "55737", + "55745", + "55773", + "57020", + "57182", + "57533", + "57589", + "58533", + "5868", + "5870", + "5872", + "5987", + "6272", + "6293", + "63893", + "64089", + "64129", + "64145", + "64400", + "653145", + "6642", + "6643", + "6811", + "6836", + "738", + "7415", + "7813", + "7840", + "7879", + "79735", + "80700", + "81609", + "8218", + "8301", + "83547", + "83874", + "84067", + "84079", + "8411", + "84162", + "84376", + "84661", + "84910", + "85377", + "8674", + "8675", + "8677", + "8678", + "8723", + "8729", + "8878", + "8934", + "8938", + "9043", + "91056", + "9230", + "9341", + "9482", + "9525", + "9527", + "9559", + "9648", + "9727", + "9765", + "9779", + "9784", + "9827", + "9905", + "9907" + ] + }, + "GO:0046474": { + "Name": "glycerophospholipid biosynthetic process", + "Task": "GO", + "Genes": [ + "10026", + "1040", + "10400", + "10423", + "10554", + "10555", + "1103", + "1119", + "1120", + "1201", + "126969", + "128869", + "129303", + "137964", + "145567", + "150763", + "1606", + "1608", + "1609", + "171586", + "200576", + "200879", + "204962", + "22863", + "22876", + "22979", + "23049", + "23167", + "23396", + "23446", + "23556", + "23761", + "253558", + "254531", + "27124", + "27315", + "284098", + "30849", + "335", + "336", + "3612", + "3635", + "3636", + "3706", + "3707", + "376497", + "3931", + "4534", + "4952", + "51099", + "51205", + "51227", + "5130", + "51447", + "51604", + "51763", + "5277", + "5279", + "5281", + "5283", + "5286", + "5289", + "5291", + "5294", + "5297", + "5298", + "5305", + "5336", + "5337", + "5338", + "54344", + "54675", + "54872", + "55300", + "55326", + "55361", + "55500", + "55650", + "56623", + "56894", + "56895", + "56994", + "57048", + "57153", + "5728", + "57605", + "57678", + "5833", + "64419", + "64924", + "65258", + "660", + "6901", + "7405", + "79143", + "79837", + "79888", + "80055", + "80235", + "80271", + "80339", + "80736", + "81490", + "83394", + "8394", + "8395", + "8396", + "8398", + "84188", + "84302", + "8443", + "84668", + "84803", + "84879", + "84992", + "8525", + "8526", + "8527", + "85465", + "8605", + "8678", + "8733", + "8760", + "8776", + "8813", + "8818", + "8821", + "8867", + "8871", + "8897", + "8898", + "9091", + "9107", + "9108", + "9110", + "93210", + "94005", + "9468", + "9487", + "9488", + "9600", + "9791", + "9807", + "9896" + ] + }, + "GO:0010634": { + "Name": "positive regulation of epithelial cell migration", + "Task": "GO", + "Genes": [ + "10000", + "10013", + "10016", + "116150", + "1432", + "152007", + "1793", + "183", + "1906", + "1950", + "207", + "2113", + "2185", + "2246", + "2247", + "2252", + "2255", + "2260", + "23122", + "2324", + "23328", + "23332", + "23411", + "23473", + "2475", + "25", + "25865", + "2624", + "2625", + "2821", + "2822", + "284", + "301", + "306", + "3091", + "3146", + "3162", + "3315", + "3373", + "3458", + "3640", + "3690", + "3791", + "388", + "4215", + "4233", + "4318", + "4846", + "498", + "5025", + "506", + "51157", + "51378", + "5155", + "51564", + "5168", + "5170", + "5216", + "5286", + "5291", + "5293", + "5294", + "5335", + "5340", + "54453", + "54566", + "5578", + "5581", + "5587", + "5606", + "5629", + "5641", + "57111", + "57142", + "57381", + "5747", + "57608", + "5879", + "6237", + "6239", + "64094", + "659", + "6662", + "6667", + "6678", + "6714", + "6776", + "6868", + "6997", + "7010", + "7040", + "7042", + "7049", + "7057", + "7114", + "7264", + "7429", + "7474", + "80005", + "80149", + "811", + "84913", + "8613", + "8754", + "8766", + "8817", + "8823", + "8828", + "8829", + "9270", + "9475", + "949", + "9564", + "958", + "9647", + "9734", + "9982" + ] + }, + "GO:0000280": { + "Name": "nuclear division", + "Task": "GO", + "Genes": [ + "10015", + "10051", + "10111", + "10274", + "10403", + "10464", + "10540", + "10592", + "10609", + "10615", + "1062", + "10726", + "10734", + "10735", + "11004", + "1104", + "11065", + "11130", + "11144", + "11200", + "113130", + "126353", + "128866", + "129563", + "148362", + "148479", + "151648", + "152185", + "158983", + "1642", + "200942", + "201254", + "220134", + "221035", + "221150", + "22919", + "22933", + "22974", + "23063", + "23122", + "23141", + "2316", + "23172", + "23212", + "23310", + "23332", + "23397", + "23636", + "24137", + "256364", + "25879", + "25978", + "26065", + "26993", + "27183", + "27243", + "27338", + "27436", + "2801", + "283489", + "285643", + "29098", + "29127", + "29128", + "29893", + "317761", + "3306", + "347688", + "348235", + "378708", + "3796", + "3832", + "3833", + "3834", + "3835", + "3837", + "387", + "387893", + "4361", + "472", + "49856", + "5119", + "51203", + "51510", + "51652", + "5347", + "54617", + "54627", + "54908", + "54984", + "55125", + "55143", + "55165", + "56647", + "57082", + "57132", + "5728", + "57697", + "5885", + "5890", + "5901", + "64151", + "6683", + "6795", + "729440", + "7329", + "7756", + "79003", + "79643", + "79884", + "79998", + "80346", + "8086", + "81620", + "81929", + "81930", + "8243", + "84057", + "8452", + "84722", + "84861", + "8678", + "8697", + "8766", + "8815", + "8900", + "891", + "90417", + "9055", + "9126", + "91272", + "9150", + "91782", + "9183", + "9212", + "92421", + "93426", + "9371", + "9493", + "9525", + "9639", + "9700", + "9918", + "9928", + "9985" + ] + }, + "GO:0051259": { + "Name": "protein complex oligomerization", + "Task": "GO", + "Genes": [ + "10015", + "10056", + "10059", + "10280", + "10367", + "10600", + "10721", + "10730", + "10938", + "11051", + "11052", + "114548", + "115362", + "1311", + "1317", + "138050", + "138151", + "1429", + "1491", + "155061", + "158747", + "1670", + "171389", + "171425", + "1759", + "1894", + "197259", + "1994", + "210", + "2193", + "220", + "223", + "22861", + "22890", + "23210", + "241", + "2521", + "255022", + "25923", + "25939", + "27153", + "27232", + "27243", + "2744", + "282679", + "29108", + "3028", + "30844", + "30845", + "30968", + "3123", + "3135", + "32", + "3251", + "3276", + "340061", + "348980", + "359", + "362", + "3746", + "3748", + "3759", + "3768", + "3848", + "3858", + "4143", + "4144", + "4199", + "4282", + "4284", + "4814", + "4976", + "5018", + "5024", + "51062", + "51074", + "51076", + "51733", + "5310", + "5311", + "54680", + "54795", + "54968", + "54974", + "55144", + "55198", + "5551", + "55600", + "55856", + "56262", + "56341", + "56652", + "567", + "57192", + "57673", + "57679", + "6247", + "641", + "64170", + "64225", + "64375", + "6470", + "6472", + "6506", + "6510", + "6622", + "6648", + "6683", + "6742", + "6847", + "6999", + "7083", + "7158", + "7226", + "735", + "7358", + "7837", + "79147", + "7923", + "79689", + "79869", + "8001", + "80149", + "80304", + "83862", + "84282", + "84433", + "84869", + "87178", + "8767", + "8854", + "8915", + "89872", + "8989", + "8996", + "9033", + "90378", + "90550", + "9076", + "919", + "92610", + "931", + "9885", + "9908" + ] + }, + "GO:0046903": { + "Name": "secretion", + "Task": "GO", + "Genes": [ + "100287171", + "100431172", + "1020", + "10244", + "10257", + "10490", + "10497", + "10516", + "10565", + "10652", + "10814", + "10815", + "10890", + "10987", + "11031", + "1113", + "11151", + "11255", + "117194", + "1230", + "123264", + "1314", + "1393", + "140679", + "1447", + "1448", + "148281", + "149371", + "153339", + "1636", + "169026", + "1813", + "1814", + "1815", + "19", + "1906", + "1908", + "200931", + "2066", + "2205", + "2252", + "2255", + "2266", + "22999", + "23396", + "23557", + "25837", + "26154", + "261729", + "2691", + "2693", + "2914", + "2979", + "3055", + "306", + "3624", + "3651", + "374969", + "375056", + "379", + "3815", + "3840", + "387695", + "389692", + "3952", + "399979", + "4053", + "4218", + "4547", + "4627", + "4760", + "4843", + "4879", + "4881", + "4905", + "5021", + "5045", + "5046", + "50640", + "51192", + "51738", + "5286", + "5293", + "5294", + "5319", + "54097", + "5413", + "54659", + "54843", + "55107", + "55240", + "5539", + "55770", + "56900", + "56923", + "57333", + "57393", + "57829", + "5798", + "5861", + "5864", + "5873", + "60684", + "624", + "6348", + "6355", + "64083", + "64855", + "6582", + "6616", + "6622", + "6804", + "6812", + "6844", + "6845", + "6857", + "6926", + "7052", + "7163", + "7432", + "7857", + "79792", + "79971", + "80331", + "80736", + "821", + "84522", + "84958", + "85413", + "8647", + "8673", + "8766", + "8773", + "8862", + "90070", + "9230", + "93145", + "9341", + "9601" + ] + }, + "GO:0043087": { + "Name": "regulation of GTPase activity", + "Task": "GO", + "Genes": [ + "10125", + "10156", + "10235", + "10276", + "10297", + "10344", + "10399", + "10411", + "10451", + "10507", + "10565", + "10681", + "10928", + "10959", + "10979", + "10999", + "11033", + "11153", + "112574", + "115704", + "116", + "116985", + "120892", + "128637", + "1398", + "140775", + "143872", + "150696", + "153", + "153090", + "1857", + "1894", + "1946", + "1969", + "202243", + "203228", + "2041", + "2042", + "2043", + "2049", + "2146", + "2149", + "2150", + "2245", + "22841", + "22914", + "22930", + "23143", + "23161", + "23329", + "23380", + "23513", + "23616", + "23637", + "23677", + "26000", + "26086", + "27237", + "27352", + "2889", + "29", + "2932", + "30851", + "3265", + "3655", + "3688", + "377630", + "391", + "3925", + "3987", + "402", + "4233", + "4594", + "4763", + "4908", + "4914", + "51256", + "51291", + "51429", + "51520", + "51735", + "5300", + "5365", + "54959", + "55255", + "55357", + "55616", + "55854", + "5592", + "55920", + "5657", + "5747", + "57589", + "57679", + "5905", + "5909", + "5962", + "5996", + "6000", + "6001", + "6004", + "613", + "6251", + "6281", + "6356", + "6369", + "65125", + "6647", + "7074", + "7107", + "7248", + "7409", + "7410", + "7481", + "7813", + "7984", + "81565", + "81704", + "8301", + "8394", + "8412", + "8477", + "8502", + "85397", + "85440", + "858", + "8874", + "89839", + "92154", + "9270", + "958", + "9628", + "9639", + "9693", + "9712", + "9750", + "9824", + "9827", + "9905" + ] + }, + "GO:0050730": { + "Name": "regulation of peptidyl-tyrosine phosphorylation", + "Task": "GO", + "Genes": [ + "10006", + "10188", + "10456", + "10464", + "11006", + "11314", + "122809", + "1270", + "1436", + "1437", + "1440", + "1464", + "146433", + "1489", + "149233", + "1609", + "1742", + "183", + "1942", + "1956", + "199731", + "2045", + "2056", + "2066", + "2185", + "2209", + "2252", + "2255", + "2261", + "22876", + "2322", + "23529", + "23568", + "23624", + "25", + "255324", + "2623", + "2688", + "282618", + "284", + "285489", + "29883", + "3059", + "3082", + "3273", + "3458", + "3479", + "351", + "353514", + "3558", + "3562", + "3565", + "3569", + "3570", + "3572", + "3589", + "3592", + "3593", + "3600", + "3606", + "3678", + "3689", + "3690", + "3815", + "3976", + "4282", + "4739", + "4771", + "4908", + "5008", + "50604", + "5062", + "51378", + "5155", + "51561", + "5168", + "5175", + "54206", + "54209", + "54625", + "55024", + "55294", + "5590", + "5621", + "56940", + "57091", + "5753", + "5770", + "5771", + "57732", + "5777", + "5781", + "5788", + "59067", + "6422", + "653361", + "654", + "6714", + "683", + "6868", + "6997", + "7040", + "7060", + "7132", + "7251", + "7448", + "79031", + "79643", + "80725", + "83666", + "84313", + "84619", + "85480", + "857", + "8651", + "8692", + "8767", + "8784", + "8829", + "8995", + "90", + "90070", + "9021", + "9094", + "9181", + "9244", + "941", + "958", + "960", + "9655", + "972", + "9961" + ] + }, + "GO:0060491": { + "Name": "regulation of cell projection assembly", + "Task": "GO", + "Genes": [ + "100287171", + "10096", + "10097", + "10109", + "10152", + "10163", + "10198", + "10413", + "10435", + "10677", + "10787", + "10801", + "10806", + "10807", + "11135", + "11138", + "11344", + "115704", + "116985", + "1236", + "125058", + "128637", + "139818", + "146206", + "148170", + "158297", + "161514", + "1902", + "1969", + "202018", + "2039", + "207", + "2241", + "225689", + "22954", + "23061", + "23102", + "23189", + "23191", + "23216", + "2332", + "23329", + "23433", + "23500", + "23580", + "23637", + "255758", + "25771", + "2596", + "26000", + "2665", + "27352", + "3064", + "324", + "3265", + "3273", + "345643", + "347240", + "374403", + "377630", + "378", + "382", + "3985", + "4134", + "4651", + "49856", + "5027", + "5064", + "51196", + "51256", + "51466", + "51473", + "51626", + "5205", + "5216", + "5217", + "5337", + "54443", + "54521", + "54662", + "54869", + "54874", + "55296", + "55357", + "55633", + "55704", + "55845", + "57465", + "57489", + "57533", + "57787", + "5868", + "5879", + "5880", + "5898", + "5909", + "5962", + "6366", + "642273", + "64786", + "64787", + "64805", + "64844", + "653464", + "6624", + "6792", + "7016", + "7226", + "729873", + "7401", + "7454", + "7471", + "7813", + "79598", + "79734", + "79735", + "79874", + "80199", + "8100", + "83874", + "84260", + "84299", + "8558", + "857", + "8766", + "8829", + "90410", + "9353", + "9662", + "9696", + "9712", + "9727", + "9738", + "9742", + "9750", + "9779", + "989" + ] + }, + "GO:0016050": { + "Name": "vesicle organization", + "Task": "GO", + "Genes": [ + "10016", + "10043", + "10058", + "10113", + "10228", + "10254", + "10427", + "10484", + "10564", + "10802", + "10959", + "10972", + "10981", + "11151", + "11267", + "1173", + "1182", + "128637", + "128866", + "137492", + "144717", + "1453", + "149371", + "150368", + "155382", + "164", + "1759", + "19", + "200576", + "2060", + "2149", + "22872", + "23023", + "23317", + "23325", + "23339", + "23355", + "23400", + "23603", + "23682", + "252839", + "257364", + "25825", + "25978", + "26276", + "27072", + "27183", + "27243", + "284382", + "29091", + "29887", + "29911", + "29916", + "302", + "3257", + "348", + "375056", + "399687", + "399979", + "4033", + "4218", + "440400", + "4935", + "51028", + "51160", + "51361", + "51479", + "51652", + "54732", + "54734", + "54809", + "54874", + "55048", + "553115", + "55353", + "5537", + "55647", + "55823", + "56681", + "57393", + "57617", + "5798", + "5861", + "5873", + "59349", + "6272", + "6281", + "6396", + "63971", + "64083", + "64400", + "6490", + "653145", + "6622", + "6812", + "6844", + "6845", + "7251", + "7879", + "79102", + "79156", + "79643", + "79720", + "80183", + "8027", + "8301", + "83547", + "83871", + "84067", + "8411", + "84313", + "84376", + "8452", + "85409", + "8546", + "858", + "8674", + "8724", + "8729", + "8766", + "8878", + "8907", + "8938", + "8943", + "89781", + "9002", + "9146", + "9217", + "9218", + "92421", + "93343", + "9392", + "947", + "9632", + "9842", + "9871" + ] + }, + "GO:0120032": { + "Name": "regulation of plasma membrane bounded cell projection assembly", + "Task": "GO", + "Genes": [ + "100287171", + "10096", + "10097", + "10109", + "10152", + "10163", + "10198", + "10413", + "10435", + "10677", + "10787", + "10801", + "10806", + "10807", + "11135", + "11138", + "11344", + "115704", + "116985", + "1236", + "125058", + "128637", + "139818", + "146206", + "148170", + "158297", + "161514", + "1902", + "1969", + "202018", + "2039", + "207", + "2241", + "225689", + "22954", + "23061", + "23102", + "23189", + "23191", + "23216", + "2332", + "23329", + "23433", + "23500", + "23580", + "23637", + "255758", + "25771", + "2596", + "26000", + "2665", + "27352", + "3064", + "324", + "3265", + "3273", + "345643", + "347240", + "374403", + "377630", + "378", + "382", + "3985", + "4134", + "4651", + "49856", + "5027", + "5064", + "51196", + "51256", + "51466", + "51473", + "51626", + "5205", + "5216", + "5217", + "5337", + "54443", + "54521", + "54662", + "54869", + "54874", + "55296", + "55357", + "55633", + "55704", + "55845", + "57465", + "57489", + "57533", + "57787", + "5868", + "5879", + "5880", + "5898", + "5909", + "5962", + "6366", + "64786", + "64787", + "64805", + "64844", + "653464", + "6624", + "6792", + "7016", + "7226", + "729873", + "7401", + "7454", + "7471", + "7813", + "79598", + "79734", + "79735", + "79874", + "80199", + "8100", + "83874", + "84260", + "84299", + "8558", + "857", + "8766", + "8829", + "90410", + "9353", + "9662", + "9696", + "9712", + "9727", + "9738", + "9742", + "9750", + "9779", + "989" + ] + }, + "GO:0045732": { + "Name": "positive regulation of protein catabolic process", + "Task": "GO", + "Genes": [ + "101", + "10134", + "10193", + "1027", + "10273", + "10399", + "10444", + "1050", + "10533", + "10769", + "11124", + "112398", + "11267", + "11337", + "114881", + "116224", + "1191", + "1263", + "139285", + "140462", + "144165", + "1452", + "1457", + "150", + "153090", + "153769", + "1601", + "160418", + "1642", + "165324", + "1855", + "20", + "207", + "22933", + "2308", + "23640", + "255738", + "257364", + "25898", + "25976", + "26471", + "267012", + "2822", + "283106", + "2931", + "2932", + "29763", + "29978", + "29979", + "29997", + "324", + "3300", + "3303", + "3320", + "3416", + "3458", + "348", + "3553", + "4035", + "4092", + "4193", + "4287", + "4478", + "4734", + "4780", + "4898", + "4905", + "4946", + "5045", + "5071", + "51079", + "51136", + "51160", + "51257", + "51339", + "51429", + "51514", + "51548", + "51667", + "5347", + "55070", + "55212", + "55294", + "55737", + "55823", + "5701", + "5702", + "5705", + "5706", + "5716", + "5886", + "5962", + "5988", + "641700", + "64326", + "6449", + "65992", + "6613", + "6653", + "6811", + "6872", + "7124", + "7128", + "7133", + "722", + "725", + "7341", + "7415", + "7430", + "7432", + "7474", + "7879", + "7917", + "79589", + "79699", + "8078", + "81542", + "8312", + "83547", + "8451", + "85407", + "85409", + "857", + "863", + "8742", + "8975", + "91445", + "9554", + "9655", + "9709", + "9730", + "975", + "9817", + "9978", + "9992" + ] + }, + "GO:0016236": { + "Name": "macroautophagy", + "Task": "GO", + "Genes": [ + "10043", + "10241", + "10254", + "10490", + "10533", + "11152", + "11267", + "11331", + "115201", + "124997", + "128866", + "137492", + "155382", + "157753", + "162427", + "192111", + "22863", + "23001", + "23130", + "23192", + "23241", + "23339", + "23341", + "23376", + "23400", + "23503", + "23647", + "23673", + "25851", + "25978", + "26100", + "26249", + "26276", + "27243", + "285180", + "285636", + "285973", + "29979", + "30849", + "340061", + "345611", + "3964", + "4077", + "440026", + "440738", + "472", + "488", + "5071", + "51028", + "51160", + "5119", + "51368", + "51506", + "51510", + "51569", + "51652", + "51715", + "5289", + "53349", + "54463", + "550", + "55014", + "55048", + "55054", + "55062", + "55432", + "55626", + "56270", + "57132", + "57154", + "57231", + "57535", + "57674", + "5828", + "5830", + "58476", + "5861", + "60673", + "63894", + "64419", + "64422", + "64601", + "65018", + "65082", + "65992", + "6714", + "6845", + "6901", + "7189", + "7251", + "7405", + "7415", + "7879", + "79065", + "79643", + "79720", + "79876", + "80183", + "80208", + "8027", + "80700", + "81631", + "81671", + "83460", + "83734", + "83933", + "8408", + "84313", + "84557", + "84749", + "84938", + "84971", + "8673", + "8678", + "8878", + "8897", + "8987", + "9140", + "91452", + "9146", + "91782", + "9179", + "92421", + "93343", + "9342", + "9373", + "9474", + "9776", + "9779", + "9821", + "9842", + "987", + "9927" + ] + }, + "GO:1903039": { + "Name": "positive regulation of leukocyte cell-cell adhesion", + "Task": "GO", + "Genes": [ + "100133941", + "10148", + "10288", + "10524", + "10725", + "10808", + "10859", + "11006", + "11126", + "11148", + "11221", + "126259", + "1326", + "1378", + "1445", + "149233", + "1604", + "177", + "1803", + "199", + "207", + "2113", + "22914", + "2309", + "23149", + "2319", + "23308", + "2475", + "2529", + "2534", + "259307", + "29108", + "29126", + "301", + "3037", + "3071", + "30835", + "3105", + "3109", + "3113", + "3115", + "3122", + "3123", + "3133", + "3135", + "3146", + "3329", + "3458", + "3479", + "3481", + "3485", + "3553", + "3558", + "3565", + "3569", + "3572", + "3592", + "3593", + "3594", + "3606", + "3654", + "3717", + "387", + "3952", + "3965", + "399", + "4067", + "4179", + "4192", + "4690", + "4860", + "50943", + "51561", + "5170", + "5290", + "55423", + "55626", + "5777", + "5781", + "57829", + "59067", + "5914", + "5970", + "604", + "6046", + "6188", + "6375", + "64115", + "64410", + "6484", + "64926", + "6541", + "6714", + "7037", + "7048", + "7124", + "7189", + "7297", + "7409", + "7412", + "7494", + "7525", + "7535", + "79576", + "8013", + "80381", + "81704", + "8440", + "84433", + "857", + "8600", + "8631", + "8651", + "8740", + "8764", + "9092", + "912", + "916", + "923", + "940", + "959", + "960", + "961", + "970", + "975" + ] + }, + "GO:0098813": { + "Name": "nuclear chromosome segregation", + "Task": "GO", + "Genes": [ + "10015", + "10051", + "10274", + "10403", + "10464", + "10540", + "10592", + "10609", + "10615", + "1062", + "1063", + "10726", + "10734", + "10735", + "11004", + "11130", + "11200", + "113130", + "126353", + "128866", + "129563", + "147841", + "148479", + "151648", + "152185", + "158983", + "1642", + "200942", + "220134", + "221150", + "22919", + "22974", + "23063", + "2316", + "23172", + "23212", + "23310", + "23397", + "23636", + "24137", + "256364", + "25879", + "25978", + "26065", + "2669", + "26993", + "27183", + "27243", + "27436", + "2801", + "283489", + "285643", + "29098", + "29127", + "29128", + "29893", + "317761", + "347688", + "348235", + "3796", + "3832", + "3833", + "3834", + "3835", + "3837", + "387", + "387893", + "49856", + "51112", + "5119", + "51203", + "51510", + "51652", + "5347", + "54617", + "54627", + "54908", + "54984", + "55125", + "55143", + "55165", + "55166", + "55201", + "56647", + "57082", + "57132", + "5728", + "57405", + "5901", + "5925", + "64151", + "6795", + "729440", + "7756", + "79003", + "79643", + "79884", + "79998", + "8086", + "81610", + "81620", + "81929", + "81930", + "8243", + "83540", + "84057", + "8452", + "84643", + "84722", + "84861", + "8678", + "8697", + "8766", + "891", + "90417", + "9055", + "9113", + "9126", + "91272", + "91782", + "9183", + "9184", + "9212", + "92421", + "93426", + "9371", + "9493", + "9525", + "9639", + "9700", + "9918", + "9928" + ] + }, + "GO:0043161": { + "Name": "proteasome-mediated ubiquitin-dependent protein catabolic process", + "Task": "GO", + "Genes": [ + "10116", + "10206", + "10210", + "10273", + "10277", + "10299", + "10513", + "10524", + "10616", + "10973", + "11060", + "11065", + "114088", + "1161", + "116138", + "117584", + "122416", + "122773", + "130617", + "148066", + "149603", + "1499", + "1642", + "1649", + "223082", + "22933", + "23008", + "23053", + "23194", + "23220", + "23291", + "23327", + "23411", + "23532", + "23588", + "253980", + "25793", + "25827", + "25853", + "25879", + "26046", + "26133", + "26224", + "26234", + "26249", + "26268", + "26270", + "26272", + "26273", + "27252", + "27338", + "283807", + "329", + "339745", + "3429", + "343070", + "378884", + "408", + "409", + "4193", + "440561", + "4780", + "5071", + "5094", + "51185", + "51283", + "51343", + "51676", + "5371", + "54461", + "54476", + "54546", + "55122", + "5527", + "55284", + "55294", + "55527", + "55626", + "55658", + "56929", + "5705", + "57092", + "57154", + "57162", + "57542", + "6047", + "64326", + "6451", + "6477", + "64839", + "6500", + "6502", + "7126", + "7320", + "7321", + "7323", + "7334", + "7415", + "7428", + "7726", + "79654", + "79734", + "79791", + "79845", + "80196", + "80263", + "80311", + "81545", + "83737", + "8405", + "84078", + "84164", + "8451", + "8452", + "8453", + "8454", + "84861", + "8945", + "89890", + "899", + "90850", + "9112", + "9147", + "9325", + "9867", + "991", + "9921", + "9928", + "997", + "9978" + ] + }, + "GO:0002429": { + "Name": "immune response-activating cell surface receptor signaling pathway", + "Task": "GO", + "Genes": [ + "10451", + "10603", + "10616", + "10657", + "10892", + "11027", + "11119", + "114609", + "1147", + "121665", + "1378", + "1387", + "1445", + "148022", + "1493", + "163486", + "196051", + "1967", + "199920", + "2033", + "2219", + "2268", + "22841", + "23149", + "23180", + "25", + "2533", + "2534", + "25800", + "25865", + "259197", + "26191", + "27040", + "2822", + "2867", + "29110", + "29760", + "3055", + "3071", + "30968", + "3105", + "3115", + "3119", + "3123", + "353376", + "3551", + "3635", + "3654", + "3656", + "3661", + "3822", + "3824", + "3929", + "3937", + "3965", + "3984", + "4067", + "4153", + "4277", + "4332", + "4773", + "4792", + "4938", + "5058", + "5062", + "5063", + "51135", + "51295", + "51324", + "5142", + "5144", + "5290", + "5293", + "5335", + "5336", + "5338", + "55024", + "55072", + "5580", + "5581", + "57402", + "5747", + "5788", + "5795", + "581", + "59338", + "596", + "5970", + "640", + "6714", + "6850", + "6885", + "695", + "7006", + "7097", + "7099", + "7100", + "7187", + "7189", + "719", + "728", + "7305", + "7334", + "7409", + "7410", + "7462", + "7525", + "7535", + "7917", + "79931", + "8398", + "84174", + "8631", + "8767", + "8890", + "8891", + "8892", + "8893", + "8915", + "925", + "926", + "930", + "931", + "952", + "9564", + "9865" + ] + }, + "GO:0046777": { + "Name": "protein autophosphorylation", + "Task": "GO", + "Genes": [ + "10494", + "10553", + "10645", + "10783", + "11035", + "11184", + "11200", + "120892", + "127933", + "131890", + "1436", + "150094", + "1612", + "1613", + "1956", + "2041", + "2043", + "2047", + "2049", + "2050", + "2066", + "207", + "2081", + "2185", + "2241", + "2242", + "225689", + "2260", + "2263", + "2264", + "2268", + "22853", + "23043", + "23049", + "23178", + "2321", + "2322", + "23235", + "2324", + "23400", + "23604", + "23617", + "238", + "2475", + "25", + "25865", + "25989", + "27347", + "2869", + "2932", + "29904", + "3055", + "3480", + "3643", + "3645", + "3654", + "3791", + "3815", + "4058", + "4067", + "4117", + "4140", + "4215", + "4293", + "4296", + "472", + "4751", + "4914", + "4921", + "50488", + "5058", + "5062", + "51347", + "5156", + "5159", + "5170", + "51755", + "51765", + "51776", + "5292", + "53904", + "545", + "55781", + "5587", + "5595", + "5605", + "5610", + "5613", + "56975", + "5747", + "5753", + "6011", + "65018", + "65267", + "65268", + "660", + "6714", + "6725", + "6789", + "6790", + "6792", + "6793", + "6794", + "6872", + "7294", + "7301", + "7443", + "7444", + "780", + "79834", + "815", + "816", + "817", + "8408", + "8428", + "85366", + "8550", + "8576", + "8711", + "8737", + "91", + "9175", + "9212", + "9344", + "9451", + "9706", + "9748", + "9833", + "9943" + ] + }, + "GO:0032535": { + "Name": "regulation of cellular component size", + "Task": "GO", + "Genes": [ + "10344", + "10371", + "10435", + "10451", + "10456", + "10507", + "10542", + "10565", + "1073", + "11194", + "11344", + "1173", + "118", + "1182", + "119", + "1236", + "136319", + "1440", + "146206", + "148170", + "1630", + "1826", + "1906", + "196527", + "2017", + "2150", + "2185", + "2241", + "23108", + "23189", + "23341", + "23400", + "23499", + "23500", + "23616", + "23645", + "24142", + "2475", + "25", + "253725", + "25802", + "27347", + "2784", + "2803", + "282679", + "2934", + "3055", + "3059", + "3071", + "348", + "358", + "3778", + "382", + "387", + "389541", + "4137", + "442721", + "4478", + "4504", + "4690", + "5027", + "5063", + "50809", + "51334", + "51474", + "51520", + "51571", + "5216", + "5217", + "5341", + "53841", + "54825", + "55971", + "56262", + "57026", + "57142", + "57403", + "57482", + "57521", + "5865", + "5868", + "5879", + "5916", + "5921", + "59341", + "5962", + "627", + "6356", + "6366", + "6369", + "6387", + "64798", + "64857", + "65125", + "65267", + "6557", + "6558", + "7114", + "7408", + "7409", + "7410", + "7429", + "7430", + "7454", + "79714", + "79890", + "80131", + "8301", + "83547", + "84335", + "8440", + "8482", + "85477", + "859", + "8766", + "8799", + "88", + "8800", + "9026", + "9087", + "90952", + "9113", + "91663", + "92960", + "9353", + "93663", + "9368", + "9856", + "9943", + "9948", + "9990" + ] + }, + "GO:0051047": { + "Name": "positive regulation of secretion", + "Task": "GO", + "Genes": [ + "10015", + "100507043", + "10059", + "101", + "10307", + "10497", + "1080", + "10972", + "11132", + "11267", + "114897", + "114899", + "1392", + "1579", + "1588", + "164", + "1906", + "1908", + "192683", + "201294", + "2150", + "2181", + "222546", + "2243", + "2244", + "2266", + "23086", + "23122", + "23332", + "23400", + "23607", + "242", + "2587", + "25930", + "2645", + "2668", + "2691", + "27063", + "27183", + "27243", + "2746", + "283", + "28984", + "3077", + "3123", + "3134", + "322", + "3479", + "3552", + "358", + "3623", + "3624", + "3625", + "3630", + "3670", + "3684", + "3689", + "376267", + "382", + "3822", + "3916", + "399687", + "43", + "4628", + "4824", + "4879", + "4881", + "50487", + "51083", + "51124", + "51738", + "51768", + "5319", + "54209", + "5478", + "5481", + "55107", + "55204", + "553", + "55691", + "57126", + "57555", + "5864", + "5868", + "5873", + "5874", + "5950", + "6382", + "6385", + "6386", + "640", + "64083", + "6622", + "6696", + "6810", + "6845", + "6934", + "7036", + "7040", + "7042", + "7043", + "7097", + "7099", + "7251", + "7273", + "7349", + "7784", + "7879", + "79971", + "8027", + "8399", + "84932", + "8529", + "8673", + "8723", + "8736", + "8754", + "8938", + "90070", + "90550", + "9146", + "9367", + "94121", + "945", + "9525", + "9545", + "9607", + "9619", + "9854" + ] + }, + "GO:0070663": { + "Name": "regulation of leukocyte proliferation", + "Task": "GO", + "Genes": [ + "100133941", + "10148", + "10288", + "10451", + "10457", + "10673", + "10859", + "11006", + "11146", + "11148", + "11314", + "115352", + "1178", + "126259", + "1378", + "1401", + "1435", + "1436", + "1437", + "1439", + "146433", + "149233", + "1493", + "1604", + "177", + "1880", + "196", + "199", + "2048", + "2255", + "23240", + "23308", + "259307", + "26191", + "26585", + "29126", + "301", + "3071", + "30835", + "3087", + "3105", + "3109", + "3113", + "3115", + "3123", + "3133", + "3135", + "3146", + "3479", + "3481", + "3485", + "3553", + "3558", + "3568", + "3569", + "3572", + "3586", + "3592", + "3593", + "3594", + "3606", + "3620", + "3717", + "383", + "3952", + "3958", + "3965", + "4067", + "4179", + "4282", + "4332", + "4690", + "472", + "4773", + "4860", + "50943", + "51293", + "51561", + "54106", + "5573", + "5594", + "5595", + "57045", + "5747", + "57829", + "5788", + "59067", + "596", + "6188", + "6375", + "6385", + "63925", + "64115", + "6441", + "64926", + "652", + "6541", + "6664", + "684", + "7037", + "7048", + "7297", + "7305", + "7412", + "7940", + "79679", + "80380", + "80381", + "8440", + "8744", + "912", + "916", + "923", + "9231", + "940", + "944", + "952", + "959", + "970", + "972", + "975" + ] + }, + "GO:1903828": { + "Name": "negative regulation of protein localization", + "Task": "GO", + "Genes": [ + "1025", + "10391", + "10956", + "10961", + "11006", + "11060", + "112609", + "11261", + "11315", + "1173", + "120892", + "131177", + "131578", + "135644", + "137886", + "1445", + "146057", + "150", + "150684", + "1601", + "1813", + "1814", + "1815", + "201163", + "207", + "23327", + "23409", + "23433", + "2475", + "257364", + "258010", + "25885", + "25942", + "26056", + "26297", + "2633", + "2664", + "2665", + "27248", + "283514", + "285381", + "29934", + "30851", + "3301", + "337867", + "347", + "348", + "353500", + "3592", + "3593", + "3630", + "3638", + "3667", + "3767", + "377630", + "4137", + "4140", + "4345", + "4988", + "5071", + "51009", + "51465", + "51548", + "51569", + "51588", + "51684", + "51715", + "51763", + "54585", + "54741", + "55022", + "5525", + "55432", + "55968", + "56246", + "56957", + "57120", + "580", + "5905", + "5978", + "598", + "6047", + "6248", + "64114", + "6422", + "64285", + "64771", + "65267", + "6672", + "689", + "7013", + "7040", + "7327", + "7341", + "7415", + "7534", + "80223", + "80762", + "8301", + "84830", + "8500", + "8609", + "8650", + "8724", + "88", + "88455", + "89958", + "91319", + "91543", + "9258", + "9270", + "9370", + "9475", + "9528", + "9530", + "9555", + "9647", + "9727" + ] + }, + "GO:0050920": { + "Name": "regulation of chemotaxis", + "Task": "GO", + "Genes": [ + "10059", + "1012", + "102", + "10344", + "10488", + "10563", + "11240", + "1230", + "1236", + "1240", + "1435", + "1436", + "146433", + "158747", + "1652", + "1803", + "1826", + "1843", + "1845", + "1880", + "1907", + "1908", + "1948", + "196527", + "199", + "2150", + "2152", + "2155", + "2246", + "2247", + "2249", + "2260", + "2277", + "22914", + "2358", + "23604", + "25865", + "2621", + "27202", + "27347", + "284340", + "285", + "3146", + "3273", + "3315", + "347733", + "3569", + "3570", + "3576", + "3592", + "3627", + "3791", + "3965", + "4067", + "4192", + "4233", + "4282", + "4851", + "4856", + "4908", + "5025", + "5054", + "51157", + "5155", + "5156", + "51571", + "5587", + "5594", + "5595", + "5641", + "57118", + "57175", + "57402", + "5747", + "5879", + "5880", + "5919", + "6091", + "6092", + "6278", + "6346", + "6347", + "6348", + "6351", + "6354", + "6363", + "6366", + "6375", + "6387", + "64094", + "64805", + "65125", + "6809", + "6810", + "683", + "6868", + "7040", + "7057", + "7060", + "708", + "7114", + "7130", + "727", + "7424", + "7474", + "7852", + "7857", + "7941", + "79890", + "811", + "83700", + "8817", + "8823", + "90550", + "9097", + "9353", + "9647", + "9943" + ] + }, + "GO:0031334": { + "Name": "positive regulation of protein-containing complex assembly", + "Task": "GO", + "Genes": [ + "10018", + "1003", + "10142", + "1015", + "10273", + "10344", + "10399", + "10435", + "10979", + "11076", + "11124", + "11315", + "114609", + "115362", + "1191", + "1236", + "140609", + "143098", + "1437", + "1440", + "146206", + "148170", + "153090", + "1639", + "1981", + "2017", + "21", + "2185", + "2241", + "2242", + "22919", + "23379", + "23514", + "253725", + "25802", + "26191", + "28964", + "2932", + "3055", + "3071", + "3084", + "3303", + "3304", + "3320", + "3458", + "3567", + "373509", + "382", + "388630", + "3936", + "3958", + "402", + "4137", + "4204", + "4233", + "4312", + "4314", + "442721", + "4690", + "472", + "4733", + "4926", + "5058", + "51100", + "5216", + "5217", + "5336", + "545", + "54552", + "54922", + "55612", + "55626", + "55719", + "55755", + "55845", + "55971", + "5599", + "56919", + "57482", + "57506", + "57600", + "57606", + "57787", + "578", + "581", + "5879", + "5908", + "6188", + "6249", + "6356", + "6366", + "6369", + "637", + "638", + "64581", + "6622", + "6624", + "6714", + "6850", + "6886", + "695", + "7013", + "7037", + "7040", + "7124", + "7157", + "7341", + "7408", + "7415", + "7453", + "79184", + "79998", + "81857", + "822", + "84250", + "8440", + "84630", + "84962", + "8631", + "8739", + "89795", + "9636", + "96459", + "9780", + "9793" + ] + }, + "GO:0070374": { + "Name": "positive regulation of ERK1 and ERK2 cascade", + "Task": "GO", + "Genes": [ + "10125", + "10253", + "10268", + "10457", + "10979", + "1116", + "11331", + "114609", + "116", + "1230", + "1236", + "1399", + "1490", + "152007", + "1652", + "168667", + "177", + "1880", + "1956", + "195827", + "2066", + "2150", + "2185", + "222166", + "2243", + "2244", + "2246", + "2247", + "2249", + "2261", + "2264", + "2266", + "2324", + "2358", + "23779", + "246", + "2492", + "25778", + "26191", + "2621", + "26291", + "2651", + "284", + "284340", + "285016", + "2852", + "29108", + "3084", + "3123", + "3146", + "3265", + "3356", + "3357", + "3358", + "3383", + "341152", + "3479", + "348", + "351", + "3791", + "388325", + "389658", + "3965", + "408", + "409", + "4282", + "4342", + "4504", + "4838", + "4851", + "4853", + "4914", + "5031", + "5151", + "5154", + "5155", + "5156", + "5159", + "5245", + "5320", + "5322", + "5345", + "54209", + "54550", + "55294", + "55532", + "55801", + "5590", + "5595", + "5604", + "5609", + "57007", + "5781", + "6278", + "6348", + "6363", + "6366", + "6376", + "6464", + "64762", + "650", + "65009", + "6504", + "673", + "7010", + "7040", + "728", + "7786", + "8482", + "920", + "9258", + "9290", + "9464", + "960", + "9693", + "972", + "9965" + ] + }, + "GO:0050708": { + "Name": "regulation of protein secretion", + "Task": "GO", + "Genes": [ + "100507043", + "10059", + "101", + "10307", + "10497", + "1080", + "10961", + "10972", + "111", + "11132", + "114", + "114899", + "131177", + "150", + "1813", + "1814", + "1815", + "2029", + "222546", + "2243", + "2244", + "2266", + "23086", + "23400", + "23409", + "23607", + "252983", + "25930", + "26056", + "26297", + "2645", + "2695", + "2696", + "27063", + "27236", + "2746", + "283", + "285381", + "3123", + "322", + "3458", + "3479", + "348", + "353500", + "3552", + "3553", + "3569", + "3592", + "3593", + "3630", + "3667", + "3670", + "3741", + "3767", + "382", + "399687", + "43", + "4345", + "4544", + "4628", + "4760", + "4843", + "4988", + "5071", + "51124", + "5127", + "51548", + "51768", + "5319", + "54209", + "5478", + "5481", + "55107", + "55204", + "55691", + "57555", + "57818", + "5950", + "5978", + "63036", + "640", + "64083", + "64175", + "64215", + "6422", + "64285", + "6616", + "6804", + "6810", + "6934", + "7021", + "7040", + "7042", + "7043", + "7097", + "7099", + "7124", + "7273", + "79971", + "80024", + "80223", + "84830", + "8609", + "8736", + "8754", + "8938", + "9024", + "90550", + "91543", + "94121", + "945", + "9463", + "9619", + "9727", + "9854", + "9971" + ] + }, + "GO:0062207": { + "Name": "regulation of pattern recognition receptor signaling pathway", + "Task": "GO", + "Genes": [ + "10062", + "10211", + "10612", + "11027", + "11074", + "11277", + "11314", + "114609", + "115004", + "115352", + "115362", + "121260", + "127018", + "140609", + "142", + "146722", + "148066", + "152138", + "153090", + "1535", + "1654", + "197358", + "207", + "2150", + "22900", + "22954", + "2319", + "23369", + "23547", + "25827", + "25921", + "26007", + "260434", + "26057", + "26191", + "2672", + "285852", + "286430", + "29997", + "329", + "330", + "3303", + "3304", + "331", + "3312", + "3430", + "345611", + "353376", + "373509", + "377630", + "3929", + "4057", + "4210", + "4795", + "5094", + "5295", + "5336", + "54106", + "54209", + "54726", + "54941", + "5537", + "55577", + "55601", + "55666", + "5591", + "55914", + "5599", + "56919", + "57506", + "57590", + "57787", + "57864", + "5802", + "58509", + "63906", + "6397", + "6714", + "6895", + "695", + "708", + "7096", + "7105", + "7128", + "7353", + "79132", + "79184", + "80231", + "80772", + "81559", + "81790", + "83737", + "84243", + "84885", + "84937", + "85364", + "857", + "8638", + "8780", + "8815", + "8878", + "8887", + "89870", + "9212", + "9258", + "92747", + "948", + "9572", + "9684", + "9698", + "9867", + "9958" + ] + }, + "GO:0140014": { + "Name": "mitotic nuclear division", + "Task": "GO", + "Genes": [ + "10015", + "10051", + "10274", + "10403", + "10464", + "10540", + "10592", + "10615", + "1062", + "10726", + "10735", + "11004", + "1104", + "11065", + "11130", + "11200", + "113130", + "126353", + "128866", + "129563", + "148362", + "148479", + "152185", + "158983", + "200942", + "220134", + "221035", + "221150", + "22919", + "22933", + "22974", + "23063", + "23122", + "23141", + "2316", + "23172", + "23212", + "23310", + "23332", + "23397", + "23636", + "24137", + "256364", + "25978", + "26065", + "26993", + "27183", + "27243", + "27338", + "27436", + "2801", + "283489", + "285643", + "29098", + "29127", + "29128", + "348235", + "3796", + "3832", + "3833", + "3834", + "3835", + "3837", + "387", + "387893", + "49856", + "5119", + "51203", + "51510", + "51652", + "5347", + "54617", + "54627", + "54908", + "54984", + "55125", + "55143", + "55165", + "56647", + "57082", + "57132", + "5901", + "64151", + "6683", + "6795", + "729440", + "7329", + "7756", + "79003", + "79643", + "79884", + "79998", + "80346", + "8086", + "81620", + "81929", + "81930", + "8243", + "8452", + "84722", + "84861", + "8678", + "8697", + "8766", + "8815", + "891", + "90417", + "9055", + "9126", + "91272", + "9150", + "91782", + "9183", + "9212", + "92421", + "9371", + "9493", + "9525", + "9639", + "9700", + "9918", + "9928" + ] + }, + "GO:1901343": { + "Name": "negative regulation of vasculature development", + "Task": "GO", + "Genes": [ + "10218", + "10253", + "10365", + "11005", + "11061", + "11126", + "112744", + "128240", + "1284", + "1285", + "1386", + "153090", + "154796", + "161742", + "1634", + "1870", + "1944", + "22846", + "22905", + "23166", + "23213", + "23251", + "26523", + "2658", + "28984", + "2969", + "29924", + "30832", + "3135", + "3202", + "3273", + "3339", + "350", + "356", + "3627", + "4204", + "4303", + "4879", + "4881", + "493", + "5054", + "51378", + "5140", + "5176", + "5196", + "5230", + "5291", + "5371", + "54361", + "5468", + "55333", + "55810", + "575", + "57556", + "5797", + "5970", + "6093", + "6301", + "641700", + "6678", + "6772", + "7010", + "7042", + "7057", + "7058", + "7122", + "7124", + "8838", + "889", + "90993", + "9146", + "9314", + "9475", + "9510" + ] + }, + "GO:1903532": { + "Name": "positive regulation of secretion by cell", + "Task": "GO", + "Genes": [ + "10015", + "100507043", + "10059", + "101", + "10307", + "10497", + "1080", + "10972", + "11132", + "11267", + "114897", + "114899", + "1392", + "1588", + "164", + "1906", + "1908", + "192683", + "201294", + "2150", + "222546", + "2243", + "2244", + "2266", + "23086", + "23122", + "23332", + "23400", + "23607", + "2587", + "25930", + "2645", + "2668", + "2691", + "27063", + "27183", + "27243", + "2746", + "283", + "28984", + "3077", + "3123", + "3134", + "322", + "3479", + "3552", + "3623", + "3624", + "3625", + "3630", + "3670", + "3684", + "3689", + "376267", + "382", + "3822", + "3916", + "399687", + "43", + "4628", + "4824", + "50487", + "51083", + "51124", + "51738", + "51768", + "5319", + "54209", + "5478", + "5481", + "55107", + "55204", + "55691", + "57126", + "57555", + "5864", + "5868", + "5873", + "5874", + "5950", + "6382", + "6385", + "6386", + "640", + "64083", + "6622", + "6696", + "6810", + "6845", + "6934", + "7036", + "7040", + "7042", + "7043", + "7097", + "7099", + "7251", + "7273", + "7349", + "7784", + "7879", + "79971", + "8027", + "8399", + "84932", + "8673", + "8723", + "8736", + "8754", + "8938", + "90550", + "9146", + "9367", + "94121", + "945", + "9525", + "9545", + "9607", + "9619", + "9854" + ] + }, + "GO:0031346": { + "Name": "positive regulation of cell projection organization", + "Task": "GO", + "Genes": [ + "100287171", + "10096", + "10097", + "10109", + "10152", + "10163", + "10435", + "10507", + "10677", + "10690", + "10787", + "10801", + "10807", + "11075", + "11135", + "11344", + "114798", + "116985", + "1236", + "126520", + "139818", + "146206", + "148170", + "150696", + "158297", + "162427", + "1826", + "2011", + "202018", + "2033", + "2042", + "2185", + "2242", + "23064", + "23191", + "23363", + "23433", + "23499", + "23580", + "23603", + "23654", + "26259", + "27", + "2803", + "285016", + "2889", + "3064", + "322", + "324", + "3265", + "347733", + "348", + "3630", + "382", + "389658", + "4058", + "4067", + "4137", + "4192", + "4914", + "49856", + "5027", + "50487", + "5064", + "51196", + "51657", + "5168", + "5216", + "5365", + "54443", + "54869", + "54874", + "55604", + "55704", + "5584", + "55845", + "5587", + "57175", + "5753", + "5754", + "57787", + "5879", + "5880", + "5898", + "5979", + "6014", + "6091", + "6092", + "6239", + "627", + "6366", + "64787", + "64805", + "653", + "655", + "6624", + "6714", + "7401", + "7429", + "7471", + "79625", + "79734", + "80199", + "8100", + "84299", + "8482", + "8536", + "8829", + "90410", + "9139", + "91752", + "9353", + "9662", + "9696", + "9750", + "989" + ] + }, + "GO:0050870": { + "Name": "positive regulation of T cell activation", + "Task": "GO", + "Genes": [ + "100133941", + "10148", + "10288", + "10524", + "10808", + "10859", + "11006", + "11126", + "11148", + "11221", + "126259", + "1326", + "1378", + "1445", + "149233", + "1604", + "177", + "1803", + "199", + "207", + "22914", + "2309", + "23149", + "2319", + "23308", + "2475", + "2534", + "259307", + "29108", + "29126", + "301", + "3071", + "30835", + "3105", + "3109", + "3113", + "3115", + "3122", + "3123", + "3133", + "3135", + "3146", + "3329", + "3458", + "3479", + "3481", + "3485", + "3553", + "3558", + "3565", + "3569", + "3572", + "3592", + "3593", + "3594", + "3606", + "3717", + "3952", + "3965", + "399", + "4067", + "4179", + "4690", + "4860", + "50943", + "51561", + "5170", + "5290", + "55423", + "55626", + "5777", + "5781", + "57829", + "59067", + "5914", + "604", + "6046", + "6188", + "6375", + "64115", + "64410", + "64926", + "6541", + "6714", + "7037", + "7048", + "7297", + "7409", + "7412", + "7494", + "7525", + "7535", + "79576", + "80381", + "81704", + "8440", + "84433", + "857", + "8600", + "8651", + "8740", + "8764", + "9092", + "912", + "916", + "923", + "940", + "959", + "961", + "970", + "975" + ] + }, + "GO:0050900": { + "Name": "leukocyte migration", + "Task": "GO", + "Genes": [ + "10344", + "10563", + "1113", + "119", + "120425", + "1230", + "1234", + "1235", + "1236", + "140596", + "1511", + "1525", + "1667", + "1880", + "1906", + "1907", + "1908", + "1910", + "200576", + "2150", + "2321", + "23396", + "2350", + "240", + "2534", + "2621", + "2625", + "2650", + "30009", + "301", + "3055", + "3071", + "30817", + "3569", + "3570", + "3576", + "3577", + "3579", + "3586", + "3627", + "3676", + "3683", + "3688", + "3689", + "3695", + "3815", + "387695", + "3958", + "4067", + "4192", + "4478", + "4814", + "503618", + "50512", + "50848", + "51119", + "51135", + "51192", + "5155", + "5175", + "5196", + "5293", + "5294", + "5478", + "5479", + "5657", + "57126", + "5800", + "58494", + "6093", + "6223", + "6279", + "6280", + "6283", + "6288", + "6347", + "6348", + "6354", + "6356", + "6357", + "6363", + "6366", + "6368", + "6369", + "6372", + "6373", + "6375", + "6376", + "6401", + "6402", + "6403", + "6404", + "64083", + "6441", + "6558", + "6654", + "6714", + "682", + "6850", + "692094", + "7124", + "728358", + "7369", + "7412", + "7525", + "7535", + "7852", + "7857", + "796", + "8174", + "83700", + "8600", + "8729", + "9255" + ] + }, + "GO:2000181": { + "Name": "negative regulation of blood vessel morphogenesis", + "Task": "GO", + "Genes": [ + "10253", + "10365", + "11005", + "11061", + "11126", + "112744", + "128240", + "1284", + "1285", + "1386", + "153090", + "154796", + "161742", + "1634", + "1870", + "1944", + "22846", + "22905", + "23166", + "23213", + "23251", + "26523", + "2658", + "28984", + "2969", + "29924", + "30832", + "3135", + "3202", + "3273", + "3339", + "350", + "356", + "3627", + "4204", + "4303", + "4879", + "4881", + "493", + "5054", + "51378", + "5140", + "5176", + "5196", + "5230", + "5291", + "5371", + "54361", + "5468", + "55333", + "55810", + "575", + "57556", + "5797", + "5970", + "6093", + "6301", + "641700", + "6678", + "6772", + "7010", + "7042", + "7057", + "7058", + "7122", + "7124", + "8838", + "889", + "90993", + "9146", + "9314", + "9475", + "9510" + ] + }, + "GO:0090150": { + "Name": "establishment of protein localization to membrane", + "Task": "GO", + "Genes": [ + "100133941", + "10133", + "10139", + "10328", + "10430", + "10890", + "11031", + "1121", + "11231", + "117177", + "128866", + "130617", + "132112", + "158234", + "161176", + "1678", + "1956", + "22844", + "22930", + "23062", + "23065", + "23163", + "23420", + "23463", + "23471", + "23499", + "23787", + "23788", + "25782", + "25813", + "25837", + "26003", + "26088", + "26517", + "26519", + "26520", + "26521", + "2803", + "283820", + "284361", + "285521", + "288", + "29927", + "29928", + "3308", + "3309", + "3320", + "344892", + "3875", + "408050", + "439", + "4641", + "481", + "4864", + "51016", + "51079", + "51125", + "51234", + "51398", + "51608", + "51762", + "54499", + "55737", + "55750", + "55831", + "55969", + "56851", + "56926", + "56993", + "57003", + "57130", + "582", + "5824", + "583", + "5830", + "637", + "64083", + "64108", + "64112", + "6449", + "64689", + "65055", + "65125", + "653361", + "6711", + "6727", + "6728", + "6729", + "673", + "6734", + "6745", + "6746", + "7095", + "7485", + "7879", + "7917", + "79568", + "81693", + "819", + "8266", + "83460", + "83597", + "83871", + "84896", + "8504", + "85377", + "8548", + "8766", + "90580", + "9230", + "93380", + "9409", + "9648", + "9694", + "9697" + ] + }, + "GO:0016525": { + "Name": "negative regulation of angiogenesis", + "Task": "GO", + "Genes": [ + "10253", + "10365", + "11005", + "11061", + "11126", + "112744", + "128240", + "1284", + "1285", + "1386", + "153090", + "154796", + "161742", + "1634", + "1870", + "1944", + "22846", + "22905", + "23166", + "23213", + "23251", + "26523", + "2658", + "28984", + "2969", + "29924", + "30832", + "3135", + "3202", + "3273", + "3339", + "350", + "356", + "3627", + "4204", + "4303", + "4879", + "4881", + "493", + "5054", + "51378", + "5140", + "5176", + "5196", + "5230", + "5291", + "5371", + "5468", + "55333", + "55810", + "575", + "57556", + "5797", + "5970", + "6093", + "6301", + "641700", + "6678", + "6772", + "7010", + "7042", + "7057", + "7058", + "7122", + "7124", + "8838", + "889", + "90993", + "9146", + "9314", + "9475", + "9510" + ] + }, + "GO:0002699": { + "Name": "positive regulation of immune effector process", + "Task": "GO", + "Genes": [ + "10125", + "10459", + "10584", + "10666", + "10859", + "10892", + "11126", + "112441434", + "11314", + "114836", + "117854", + "135250", + "1378", + "144811", + "149840", + "1604", + "163486", + "164", + "2048", + "2150", + "2219", + "2220", + "22914", + "23705", + "25818", + "259197", + "26057", + "2821", + "301", + "3105", + "3106", + "3109", + "3122", + "3123", + "3133", + "3134", + "3135", + "3140", + "3329", + "3458", + "353091", + "354", + "3553", + "3554", + "3558", + "3565", + "3569", + "3586", + "3592", + "3593", + "3606", + "3663", + "3684", + "3689", + "377630", + "3805", + "3815", + "3822", + "3824", + "383", + "3916", + "3965", + "399687", + "4153", + "4179", + "4843", + "50487", + "51744", + "5225", + "5245", + "5322", + "54106", + "54537", + "55601", + "55765", + "56253", + "5650", + "567", + "57126", + "5788", + "5817", + "5819", + "59067", + "5914", + "6046", + "6223", + "6375", + "64127", + "6810", + "6845", + "6885", + "7037", + "7040", + "7158", + "7186", + "7189", + "7474", + "7494", + "7855", + "78989", + "814", + "8140", + "81545", + "8417", + "8547", + "8673", + "8723", + "8741", + "8809", + "9341", + "9390", + "975" + ] + }, + "GO:0043393": { + "Name": "regulation of protein binding", + "Task": "GO", + "Genes": [ + "10014", + "10211", + "1026", + "10399", + "10763", + "11315", + "118", + "119", + "120892", + "129531", + "1398", + "1454", + "146057", + "147138", + "151636", + "151651", + "154", + "155", + "1601", + "165904", + "166", + "1663", + "2035", + "207", + "2280", + "22943", + "23028", + "23032", + "23557", + "24144", + "25", + "255738", + "25805", + "26119", + "2801", + "2962", + "302", + "3077", + "3078", + "3080", + "3300", + "340061", + "3416", + "3433", + "3434", + "348", + "351", + "3586", + "3676", + "4035", + "4043", + "409", + "4140", + "4318", + "488", + "489", + "4931", + "5071", + "51068", + "51339", + "5155", + "5195", + "5300", + "5347", + "54496", + "54552", + "5566", + "5580", + "5599", + "5663", + "567", + "56998", + "5792", + "581", + "5899", + "5901", + "59082", + "6093", + "6135", + "627", + "640", + "64400", + "650", + "652", + "6590", + "6737", + "6788", + "6789", + "6790", + "6815", + "6872", + "6934", + "7009", + "7015", + "7074", + "7122", + "7448", + "80011", + "81494", + "8189", + "8239", + "84630", + "8536", + "8751", + "8767", + "8829", + "9026", + "9212", + "9241", + "9270", + "9370", + "9532", + "9759" + ] + }, + "GO:0051092": { + "Name": "positive regulation of NF-kappaB transcription factor activity", + "Task": "GO", + "Genes": [ + "10206", + "10346", + "10392", + "10475", + "10519", + "10542", + "10616", + "10892", + "10935", + "11035", + "11043", + "11213", + "114548", + "114609", + "1147", + "1191", + "121268", + "1660", + "177", + "183", + "1896", + "219790", + "2241", + "22954", + "23085", + "238", + "25865", + "28232", + "29108", + "3303", + "3304", + "338382", + "3551", + "3553", + "3569", + "3606", + "3630", + "3654", + "3656", + "367", + "3965", + "4057", + "4591", + "4869", + "4914", + "4919", + "4922", + "49860", + "51341", + "54101", + "5478", + "55072", + "55223", + "55367", + "5583", + "5584", + "5587", + "5588", + "5610", + "5687", + "58484", + "5970", + "60401", + "6188", + "6279", + "6280", + "6283", + "64127", + "64170", + "64320", + "65992", + "695", + "7037", + "7097", + "7099", + "7124", + "7185", + "7186", + "7188", + "7189", + "7334", + "7335", + "7474", + "7706", + "79092", + "815", + "81603", + "825", + "84433", + "84851", + "8517", + "85363", + "8600", + "8717", + "8737", + "8767", + "8792", + "8807", + "8809", + "8877", + "8915", + "8986", + "89870", + "9175", + "9181", + "92140", + "9252", + "9447", + "948", + "958", + "959", + "9830" + ] + }, + "GO:0022604": { + "Name": "regulation of cell morphogenesis", + "Task": "GO", + "Genes": [ + "10395", + "10435", + "10507", + "10630", + "1072", + "10810", + "10979", + "11135", + "113251", + "114793", + "116985", + "118987", + "126374", + "127833", + "128486", + "1364", + "1365", + "1398", + "1436", + "148170", + "151835", + "157922", + "161176", + "1690", + "1729", + "1739", + "1946", + "2039", + "2185", + "221061", + "2242", + "226", + "22999", + "23025", + "23189", + "23237", + "23268", + "23327", + "23363", + "23370", + "23580", + "23603", + "254065", + "25805", + "26259", + "283149", + "29780", + "30011", + "301", + "3055", + "3249", + "348110", + "374872", + "3791", + "4478", + "4627", + "4651", + "5028", + "50618", + "50848", + "5168", + "51760", + "5364", + "54014", + "54764", + "55023", + "55171", + "55660", + "55843", + "57154", + "57175", + "57464", + "5747", + "57471", + "57699", + "58480", + "5962", + "6239", + "6347", + "6348", + "6354", + "6356", + "6357", + "6369", + "6678", + "6714", + "6857", + "6860", + "7168", + "7429", + "7430", + "752", + "755", + "7694", + "832", + "84258", + "8437", + "85369", + "8994", + "91010", + "9202", + "9203", + "9204", + "9344", + "9362", + "93663", + "9368", + "960", + "9699" + ] + }, + "GO:0060326": { + "Name": "cell chemotaxis", + "Task": "GO", + "Genes": [ + "10344", + "10563", + "1113", + "120425", + "1230", + "1234", + "1235", + "1236", + "140596", + "1511", + "1525", + "1667", + "1839", + "185", + "1880", + "1902", + "1906", + "1907", + "1908", + "1910", + "1960", + "1969", + "200576", + "2047", + "2321", + "23396", + "2350", + "240", + "2549", + "2621", + "27237", + "301", + "3071", + "30817", + "3082", + "3148", + "3164", + "3219", + "3569", + "3570", + "3576", + "3577", + "3579", + "3586", + "3627", + "3689", + "3815", + "387695", + "391", + "3958", + "409", + "4192", + "4814", + "4856", + "503618", + "51119", + "51176", + "51192", + "5155", + "5156", + "5159", + "5196", + "5293", + "5294", + "5365", + "5478", + "5479", + "5580", + "5588", + "56477", + "566", + "57175", + "5800", + "6223", + "6279", + "6280", + "6283", + "6288", + "6347", + "6348", + "6354", + "6356", + "6357", + "6363", + "6364", + "6366", + "6368", + "6369", + "6370", + "6372", + "6373", + "6375", + "6376", + "6387", + "63916", + "6441", + "6558", + "682", + "6850", + "692094", + "728358", + "7852", + "7857", + "796", + "8394", + "8600", + "8729", + "8829", + "9564", + "9732" + ] + }, + "GO:0032940": { + "Name": "secretion by cell", + "Task": "GO", + "Genes": [ + "100287171", + "100431172", + "1020", + "10244", + "10257", + "10490", + "10497", + "10565", + "10652", + "10814", + "10815", + "10890", + "10987", + "11031", + "1113", + "11151", + "11255", + "117194", + "1230", + "1393", + "140679", + "148281", + "149371", + "153339", + "169026", + "19", + "1906", + "1908", + "2205", + "2252", + "2255", + "2266", + "22999", + "23396", + "23557", + "25837", + "26154", + "261729", + "2691", + "2693", + "2914", + "3055", + "306", + "3624", + "3651", + "374969", + "375056", + "379", + "3815", + "3840", + "387695", + "389692", + "3952", + "399979", + "4053", + "4218", + "4547", + "4627", + "4760", + "4843", + "4905", + "5045", + "5046", + "51192", + "51738", + "5286", + "5293", + "5294", + "54097", + "5413", + "54843", + "55240", + "5539", + "55770", + "56900", + "57333", + "57393", + "57829", + "5798", + "5861", + "5864", + "5873", + "60684", + "6348", + "6355", + "64083", + "64855", + "6616", + "6622", + "6804", + "6812", + "6844", + "6845", + "6857", + "6926", + "7052", + "7857", + "79792", + "79971", + "80331", + "80736", + "821", + "84522", + "84958", + "8673", + "8766", + "8773", + "9230", + "93145", + "9341", + "9601" + ] + }, + "GO:0051495": { + "Name": "positive regulation of cytoskeleton organization", + "Task": "GO", + "Genes": [ + "10142", + "10152", + "10174", + "10300", + "10344", + "10411", + "10435", + "10615", + "1073", + "10733", + "10787", + "10979", + "11075", + "1236", + "123720", + "1440", + "146206", + "148170", + "1490", + "153241", + "163786", + "1639", + "1778", + "1906", + "2017", + "2150", + "2185", + "221908", + "2241", + "2242", + "22843", + "22919", + "22998", + "23191", + "23636", + "25", + "253725", + "25802", + "27302", + "28964", + "28984", + "29109", + "2934", + "29899", + "3055", + "3071", + "3303", + "3304", + "335", + "382", + "387", + "389", + "3984", + "402", + "4137", + "4204", + "4233", + "442721", + "4653", + "4690", + "4733", + "4771", + "4926", + "5058", + "51466", + "5202", + "5216", + "5217", + "5341", + "5345", + "55160", + "55604", + "55704", + "55755", + "55835", + "55845", + "55971", + "57026", + "57482", + "57606", + "5829", + "5879", + "6188", + "6249", + "6281", + "6356", + "6366", + "6369", + "6376", + "6491", + "7016", + "7043", + "7408", + "7429", + "7481", + "79768", + "7984", + "79998", + "8440", + "8477", + "85459", + "85477", + "88", + "8829", + "8936", + "89795", + "9475", + "9525", + "9639", + "9647", + "9793", + "9873" + ] + }, + "GO:0016241": { + "Name": "regulation of macroautophagy", + "Task": "GO", + "Genes": [ + "10013", + "10043", + "10059", + "10133", + "1020", + "10206", + "10241", + "10558", + "11152", + "11178", + "112574", + "112936", + "120892", + "140775", + "1457", + "149371", + "154", + "1634", + "203228", + "2081", + "22863", + "22930", + "23130", + "23256", + "23265", + "23274", + "23367", + "23400", + "23411", + "2475", + "25782", + "25793", + "25851", + "2597", + "26086", + "2629", + "26353", + "26471", + "2773", + "285180", + "29110", + "2931", + "29978", + "3064", + "30849", + "340061", + "340371", + "345611", + "3791", + "401548", + "4734", + "4943", + "5049", + "5071", + "51100", + "51322", + "51375", + "5289", + "5305", + "535", + "54832", + "55062", + "55072", + "55187", + "55254", + "55294", + "55613", + "55626", + "5563", + "5566", + "55737", + "55763", + "5599", + "56893", + "57535", + "57602", + "5768", + "5899", + "6009", + "60412", + "60592", + "64112", + "65018", + "664", + "665", + "6720", + "6829", + "7249", + "7345", + "7405", + "7416", + "79142", + "79443", + "7957", + "79837", + "836", + "83667", + "8396", + "8408", + "8678", + "8723", + "90070", + "90678", + "9140", + "9474", + "9517", + "9531", + "9554", + "9559", + "9637", + "9638", + "9711" + ] + }, + "GO:0006605": { + "Name": "protein targeting", + "Task": "GO", + "Genes": [ + "100287932", + "10053", + "10134", + "10245", + "10440", + "10452", + "10469", + "10531", + "10717", + "10953", + "11140", + "11154", + "1121", + "11231", + "11337", + "117177", + "1191", + "128866", + "130340", + "130617", + "131474", + "158234", + "158866", + "1678", + "23163", + "23203", + "23303", + "23431", + "23463", + "23471", + "23787", + "23788", + "25793", + "25813", + "26061", + "26517", + "26519", + "26520", + "26521", + "26985", + "27183", + "29090", + "29927", + "29928", + "3308", + "3309", + "3312", + "3320", + "345611", + "3920", + "401505", + "4053", + "4121", + "4641", + "4734", + "51024", + "51025", + "51079", + "51172", + "51608", + "5189", + "5190", + "54332", + "54543", + "55750", + "56947", + "56993", + "57154", + "5824", + "6135", + "64089", + "64108", + "653361", + "6653", + "6727", + "6728", + "6729", + "6734", + "6745", + "6746", + "706", + "7095", + "7879", + "79158", + "7917", + "8031", + "8266", + "83597", + "83752", + "85377", + "8878", + "89781", + "9049", + "90580", + "9131", + "9146", + "9179", + "9409", + "9454", + "950", + "9512", + "9648", + "9695", + "9765", + "9804", + "9868", + "9927" + ] + }, + "GO:0000819": { + "Name": "sister chromatid segregation", + "Task": "GO", + "Genes": [ + "10015", + "10051", + "10274", + "10403", + "10464", + "10540", + "10592", + "10615", + "1062", + "10726", + "10735", + "11004", + "11130", + "11200", + "113130", + "126353", + "128866", + "129563", + "148479", + "152185", + "158983", + "220134", + "221150", + "22919", + "22974", + "23063", + "2316", + "23172", + "23212", + "23310", + "23397", + "23636", + "24137", + "256364", + "25978", + "26065", + "26993", + "27183", + "27243", + "27436", + "2801", + "283489", + "285643", + "29098", + "29127", + "29128", + "348235", + "3796", + "3832", + "3833", + "3834", + "3835", + "3837", + "387", + "387893", + "49856", + "5119", + "51203", + "51510", + "51652", + "5347", + "54617", + "54627", + "54908", + "54984", + "55125", + "55143", + "55165", + "56647", + "57082", + "57132", + "5901", + "5925", + "64151", + "6795", + "729440", + "7756", + "79003", + "79643", + "79884", + "79998", + "8086", + "81620", + "81929", + "81930", + "8243", + "8452", + "84722", + "84861", + "8678", + "8697", + "8766", + "891", + "90417", + "9055", + "9113", + "9126", + "91272", + "91782", + "9183", + "9212", + "92421", + "9371", + "9493", + "9525", + "9639", + "9700", + "9918", + "9928" + ] + }, + "GO:0051260": { + "Name": "protein homooligomerization", + "Task": "GO", + "Genes": [ + "10015", + "10280", + "10367", + "10600", + "10721", + "10938", + "114548", + "115362", + "1311", + "138151", + "1429", + "1491", + "155061", + "158747", + "1670", + "171389", + "171425", + "1759", + "1894", + "197259", + "1994", + "210", + "220", + "223", + "22861", + "22890", + "23210", + "241", + "2521", + "255022", + "25923", + "25939", + "27232", + "27243", + "2744", + "282679", + "29108", + "3028", + "30844", + "30845", + "3135", + "32", + "3251", + "3276", + "348980", + "359", + "362", + "3759", + "3768", + "4143", + "4199", + "4282", + "4284", + "4814", + "5024", + "51062", + "51074", + "51733", + "5311", + "54795", + "54968", + "54974", + "55198", + "5551", + "55600", + "55856", + "56341", + "567", + "57192", + "57673", + "57679", + "6247", + "641", + "64170", + "64225", + "64375", + "6470", + "6472", + "6506", + "6510", + "6648", + "6683", + "6742", + "6847", + "6999", + "7083", + "7158", + "7226", + "735", + "7837", + "79689", + "8001", + "83862", + "84282", + "84433", + "84869", + "87178", + "8767", + "8854", + "8915", + "89872", + "8989", + "9033", + "90378", + "92610", + "9885", + "9908" + ] + }, + "GO:0051897": { + "Name": "positive regulation of phosphatidylinositol 3-kinase/protein kinase B signal transduction", + "Task": "GO", + "Genes": [ + "10253", + "10268", + "10456", + "10507", + "10855", + "10870", + "10979", + "1116", + "11315", + "1236", + "1440", + "1634", + "1646", + "183", + "1839", + "1950", + "1956", + "2022", + "2065", + "2137", + "219699", + "2247", + "2260", + "2261", + "2268", + "2321", + "2322", + "2335", + "2475", + "2492", + "2621", + "2625", + "2651", + "2688", + "284", + "2852", + "3059", + "3082", + "3092", + "3479", + "3480", + "3481", + "3606", + "3630", + "3643", + "3688", + "3717", + "3791", + "3815", + "389400", + "4058", + "4150", + "4486", + "4653", + "4734", + "4824", + "4922", + "5008", + "51384", + "5154", + "5155", + "5156", + "5159", + "5170", + "5290", + "5294", + "55626", + "55801", + "5587", + "57091", + "57142", + "5747", + "5777", + "5795", + "5979", + "6363", + "6366", + "6376", + "6403", + "642273", + "65018", + "653361", + "6714", + "6934", + "7010", + "7040", + "7042", + "7046", + "7057", + "7066", + "708", + "7295", + "85453", + "8644", + "867", + "8904", + "92140", + "9258", + "9270", + "930", + "9518", + "9723" + ] + }, + "GO:0000070": { + "Name": "mitotic sister chromatid segregation", + "Task": "GO", + "Genes": [ + "10015", + "10051", + "10274", + "10403", + "10464", + "10540", + "10592", + "10615", + "1062", + "10726", + "10735", + "11004", + "11130", + "11200", + "113130", + "126353", + "128866", + "129563", + "148479", + "152185", + "158983", + "220134", + "221150", + "22919", + "22974", + "23063", + "2316", + "23172", + "23212", + "23310", + "23397", + "23636", + "24137", + "256364", + "25978", + "26065", + "26993", + "27183", + "27243", + "27436", + "2801", + "283489", + "285643", + "29098", + "29127", + "29128", + "348235", + "3796", + "3832", + "3833", + "3834", + "3835", + "3837", + "387", + "387893", + "49856", + "5119", + "51203", + "51510", + "51652", + "5347", + "54617", + "54627", + "54908", + "54984", + "55125", + "55143", + "55165", + "56647", + "57082", + "57132", + "5901", + "64151", + "6795", + "729440", + "7756", + "79003", + "79643", + "79884", + "79998", + "8086", + "81620", + "81929", + "81930", + "8243", + "8452", + "84722", + "84861", + "8678", + "8697", + "8766", + "891", + "90417", + "9055", + "9126", + "91272", + "91782", + "9183", + "9212", + "92421", + "9371", + "9493", + "9525", + "9639", + "9700", + "9918", + "9928" + ] + }, + "GO:1990778": { + "Name": "protein localization to cell periphery", + "Task": "GO", + "Genes": [ + "10098", + "10133", + "10139", + "10211", + "10266", + "10267", + "10268", + "10959", + "11031", + "11187", + "112609", + "129303", + "145567", + "1739", + "1969", + "22979", + "23043", + "23062", + "23122", + "2316", + "23163", + "23167", + "2319", + "23241", + "23499", + "23555", + "23759", + "2580", + "25837", + "25921", + "26003", + "26088", + "26154", + "2621", + "2803", + "283576", + "284098", + "286", + "287", + "288", + "30845", + "340348", + "3551", + "3728", + "382", + "3875", + "4040", + "481", + "483", + "50848", + "51125", + "51304", + "51735", + "5318", + "54997", + "55146", + "55625", + "55690", + "55704", + "55737", + "55800", + "56246", + "57154", + "57217", + "5727", + "57512", + "57728", + "582", + "583", + "5872", + "5906", + "5911", + "5962", + "6093", + "6281", + "64083", + "64689", + "65267", + "6711", + "6812", + "682", + "7124", + "7132", + "7430", + "7871", + "7879", + "79156", + "81619", + "81693", + "83871", + "8394", + "84668", + "85409", + "8548", + "8766", + "88", + "91663", + "92162", + "92359", + "9270", + "9368", + "9370", + "9475", + "9648", + "9693", + "975", + "999" + ] + }, + "GO:0050777": { + "Name": "negative regulation of immune response", + "Task": "GO", + "Genes": [ + "100507436", + "10769", + "10859", + "11005", + "11006", + "11126", + "11274", + "11277", + "11314", + "11326", + "1281", + "1378", + "142", + "1432", + "147945", + "149095", + "1604", + "196", + "2", + "2213", + "2268", + "23170", + "23220", + "2534", + "259307", + "25939", + "26058", + "282618", + "2896", + "29883", + "301", + "3055", + "3071", + "3077", + "3105", + "3106", + "3123", + "3133", + "3134", + "3135", + "3428", + "3440", + "3456", + "3630", + "3805", + "3821", + "3824", + "383", + "387837", + "3965", + "401397", + "4067", + "409", + "4938", + "4940", + "5045", + "50943", + "51441", + "5272", + "5335", + "54625", + "5468", + "55646", + "55829", + "56339", + "57506", + "5771", + "58509", + "5987", + "60343", + "6223", + "6318", + "634", + "6375", + "6714", + "6737", + "6773", + "6850", + "7040", + "710", + "722", + "725", + "7525", + "7534", + "79132", + "79594", + "79651", + "84166", + "84243", + "84640", + "84868", + "8764", + "8815", + "9111", + "9212", + "941", + "9470", + "9636", + "9958" + ] + }, + "GO:0043405": { + "Name": "regulation of MAP kinase activity", + "Task": "GO", + "Genes": [ + "100133941", + "10125", + "10221", + "10961", + "11213", + "11221", + "11235", + "11267", + "11314", + "11329", + "120892", + "146433", + "148252", + "150", + "152110", + "152559", + "153090", + "171392", + "1815", + "183", + "1843", + "1849", + "1856", + "1906", + "1908", + "1950", + "1956", + "2064", + "2081", + "2146", + "2246", + "2247", + "2260", + "2321", + "2322", + "23328", + "23624", + "245928", + "255324", + "26191", + "2629", + "2688", + "2950", + "3265", + "3301", + "3357", + "348", + "3553", + "3643", + "4216", + "4217", + "4294", + "4296", + "4486", + "4878", + "4908", + "5058", + "51347", + "5154", + "5155", + "51755", + "51763", + "5294", + "5468", + "5470", + "54769", + "54900", + "5580", + "5770", + "57761", + "5795", + "5871", + "6091", + "6188", + "6283", + "6317", + "64853", + "650", + "6609", + "6885", + "6997", + "7057", + "7124", + "7164", + "7186", + "7189", + "7251", + "7345", + "7474", + "7984", + "80279", + "80824", + "859", + "8600", + "8692", + "8754", + "8792", + "8817", + "8823", + "9146", + "958" + ] + }, + "GO:0007033": { + "Name": "vacuole organization", + "Task": "GO", + "Genes": [ + "10043", + "10159", + "10533", + "11151", + "11152", + "115201", + "1201", + "120892", + "147007", + "19", + "200576", + "219931", + "22863", + "23120", + "23130", + "23192", + "23241", + "23341", + "23400", + "23503", + "23647", + "23673", + "2475", + "252839", + "2548", + "25978", + "26100", + "26175", + "2629", + "285180", + "285973", + "2896", + "29911", + "29979", + "3257", + "340061", + "345611", + "3916", + "3920", + "411", + "440026", + "4647", + "4693", + "488", + "4948", + "51151", + "51172", + "51361", + "51652", + "51715", + "523", + "5289", + "5298", + "54734", + "54982", + "55014", + "55054", + "55062", + "55353", + "5538", + "55626", + "55647", + "55858", + "56270", + "57154", + "57535", + "57617", + "58476", + "5861", + "60673", + "64400", + "64422", + "65082", + "7030", + "7189", + "7805", + "7879", + "79065", + "79158", + "7942", + "80208", + "80231", + "80317", + "81671", + "83460", + "83734", + "83871", + "84067", + "8408", + "84286", + "84317", + "84376", + "84557", + "84938", + "84971", + "8678", + "8720", + "89781", + "9179", + "9474", + "9776", + "9821", + "987", + "9927" + ] + }, + "GO:0072659": { + "Name": "protein localization to plasma membrane", + "Task": "GO", + "Genes": [ + "10098", + "10133", + "10139", + "10211", + "10266", + "10267", + "10268", + "10959", + "11031", + "11187", + "112609", + "129303", + "145567", + "1739", + "1969", + "22979", + "23043", + "23062", + "23122", + "2316", + "23163", + "23167", + "2319", + "23241", + "23499", + "23555", + "23759", + "2580", + "25837", + "25921", + "26003", + "26088", + "26154", + "2621", + "2803", + "283576", + "284098", + "286", + "287", + "288", + "30845", + "340348", + "3551", + "3728", + "382", + "3875", + "4040", + "481", + "483", + "50848", + "51125", + "51304", + "51735", + "5318", + "54997", + "55146", + "55625", + "55690", + "55704", + "55737", + "55800", + "56246", + "57154", + "57217", + "5727", + "57512", + "582", + "583", + "5872", + "5906", + "5911", + "5962", + "6093", + "6281", + "64083", + "64689", + "65267", + "6711", + "6812", + "682", + "7124", + "7132", + "7430", + "7871", + "7879", + "79156", + "81619", + "81693", + "83871", + "8394", + "84668", + "85409", + "8548", + "8766", + "88", + "92162", + "92359", + "9270", + "9368", + "9370", + "9475", + "9648", + "9693", + "975", + "999" + ] + }, + "GO:1902905": { + "Name": "positive regulation of supramolecular fiber organization", + "Task": "GO", + "Genes": [ + "10142", + "10152", + "10174", + "10300", + "10344", + "10411", + "10435", + "1073", + "10787", + "10979", + "11075", + "1191", + "1236", + "123720", + "1440", + "146206", + "148170", + "1490", + "1639", + "1906", + "2017", + "2150", + "2185", + "2241", + "2242", + "22843", + "22919", + "22998", + "23191", + "25", + "253725", + "25802", + "27302", + "28964", + "28984", + "29109", + "2934", + "3055", + "3071", + "3303", + "3304", + "335", + "348", + "351", + "382", + "387", + "389", + "3984", + "402", + "4137", + "4204", + "4233", + "442721", + "4653", + "4690", + "4733", + "4771", + "4926", + "5058", + "51466", + "5216", + "5217", + "5341", + "5345", + "55160", + "55604", + "55704", + "55755", + "55845", + "55971", + "5663", + "57026", + "57482", + "57606", + "5829", + "5879", + "6188", + "6249", + "6281", + "6356", + "6366", + "6369", + "6376", + "7016", + "7043", + "7148", + "7408", + "7429", + "7481", + "79709", + "7984", + "79998", + "8440", + "8477", + "85477", + "88", + "8829", + "8936", + "89795", + "9101", + "9475", + "9639", + "9647", + "9793", + "9873" + ] + }, + "GO:0002703": { + "Name": "regulation of leukocyte mediated immunity", + "Task": "GO", + "Genes": [ + "100507436", + "10125", + "10459", + "10666", + "10859", + "10892", + "11006", + "11126", + "112441434", + "11314", + "114836", + "1178", + "135250", + "1378", + "146850", + "149840", + "1604", + "163486", + "164", + "177", + "196", + "201294", + "2150", + "2213", + "2242", + "22914", + "23705", + "259197", + "259307", + "3071", + "3077", + "30817", + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3135", + "3140", + "3329", + "3383", + "3440", + "3456", + "353091", + "3553", + "3554", + "3565", + "3592", + "3593", + "3606", + "3684", + "3689", + "3805", + "3821", + "3822", + "3824", + "383", + "387837", + "3916", + "3952", + "3965", + "409", + "4843", + "50487", + "50943", + "5272", + "54537", + "54795", + "56253", + "567", + "57126", + "5817", + "5819", + "59067", + "6318", + "634", + "6375", + "6810", + "684", + "6845", + "6885", + "695", + "7037", + "7040", + "7158", + "7186", + "7189", + "722", + "725", + "7454", + "7855", + "814", + "81545", + "8417", + "8673", + "8723", + "8741", + "8809", + "8832", + "9390", + "941", + "9437", + "975" + ] + }, + "GO:0046488": { + "Name": "phosphatidylinositol metabolic process", + "Task": "GO", + "Genes": [ + "10026", + "1040", + "10423", + "117283", + "123745", + "128869", + "129303", + "145567", + "200576", + "22863", + "22876", + "22979", + "23049", + "23167", + "23236", + "23396", + "23556", + "27124", + "27315", + "2822", + "283748", + "284098", + "30849", + "3612", + "3633", + "3635", + "3636", + "3706", + "3707", + "376497", + "4534", + "4952", + "50487", + "51227", + "51447", + "5159", + "51604", + "51763", + "5277", + "5279", + "5281", + "5283", + "5286", + "5289", + "5291", + "5294", + "5297", + "5298", + "5305", + "5330", + "5331", + "5333", + "5336", + "5341", + "54344", + "54872", + "55300", + "55361", + "55529", + "55650", + "56623", + "5728", + "57605", + "64419", + "64924", + "65258", + "660", + "7405", + "79143", + "79837", + "80055", + "80235", + "80271", + "83394", + "8394", + "8395", + "8396", + "84302", + "84668", + "84992", + "8678", + "8733", + "8776", + "8813", + "8818", + "8821", + "8867", + "8871", + "8897", + "8898", + "90809", + "9091", + "9107", + "9108", + "9110", + "93210", + "94005", + "9487", + "9488", + "9600", + "9807", + "9896" + ] + }, + "GO:0050731": { + "Name": "positive regulation of peptidyl-tyrosine phosphorylation", + "Task": "GO", + "Genes": [ + "10006", + "10188", + "10456", + "10464", + "1270", + "1436", + "1437", + "1440", + "1464", + "146433", + "1489", + "149233", + "1609", + "1742", + "183", + "1942", + "2056", + "2066", + "2185", + "2209", + "2252", + "2255", + "2261", + "2322", + "23529", + "23568", + "25", + "255324", + "2623", + "2688", + "282618", + "284", + "285489", + "3059", + "3082", + "3458", + "3479", + "353514", + "3558", + "3562", + "3565", + "3569", + "3570", + "3572", + "3589", + "3592", + "3593", + "3600", + "3606", + "3678", + "3690", + "3815", + "3976", + "4282", + "4739", + "4908", + "5008", + "50604", + "5062", + "51378", + "5155", + "51561", + "5168", + "5175", + "54209", + "54625", + "55024", + "55294", + "5621", + "57091", + "5753", + "5770", + "5781", + "59067", + "653361", + "654", + "6714", + "6868", + "6997", + "7040", + "7060", + "7132", + "7448", + "80725", + "83666", + "85480", + "8767", + "8784", + "8829", + "8995", + "90", + "90070", + "9094", + "9181", + "9244", + "941", + "958", + "960", + "972" + ] + }, + "GO:0071902": { + "Name": "positive regulation of protein serine/threonine kinase activity", + "Task": "GO", + "Genes": [ + "100133941", + "10125", + "10454", + "10961", + "10979", + "11235", + "120892", + "146433", + "148252", + "150", + "152110", + "153090", + "154", + "1654", + "1815", + "1856", + "1906", + "1908", + "1950", + "1956", + "205428", + "2064", + "207", + "2081", + "2146", + "219771", + "2246", + "2247", + "2260", + "2321", + "2322", + "23328", + "23411", + "255324", + "2688", + "28984", + "3265", + "3357", + "345611", + "3458", + "3553", + "3643", + "387", + "4057", + "4216", + "4217", + "4294", + "4296", + "4486", + "4908", + "493", + "5058", + "51347", + "5154", + "5155", + "51719", + "5294", + "54465", + "54769", + "55011", + "5515", + "5604", + "5605", + "5629", + "56892", + "5716", + "57214", + "5871", + "5899", + "595", + "6091", + "6188", + "6283", + "6622", + "6714", + "6868", + "6885", + "6997", + "7057", + "7124", + "7164", + "7186", + "7189", + "7474", + "7984", + "808", + "8091", + "8536", + "8600", + "8754", + "8792", + "8817", + "894", + "896", + "9370", + "94056", + "958", + "9693" + ] + }, + "GO:0006457": { + "Name": "protein folding", + "Task": "GO", + "Genes": [ + "10049", + "10130", + "10131", + "10294", + "10471", + "10574", + "10575", + "10576", + "10693", + "10694", + "10728", + "10856", + "10954", + "1191", + "120526", + "126393", + "131474", + "1457", + "165721", + "1676", + "1861", + "2280", + "2281", + "2288", + "2289", + "22926", + "22948", + "23071", + "23184", + "23640", + "23753", + "23770", + "2580", + "27000", + "2923", + "30001", + "325", + "3300", + "3301", + "3303", + "3304", + "3305", + "3306", + "3309", + "3310", + "3312", + "3315", + "3320", + "3329", + "3336", + "3337", + "3998", + "4802", + "4878", + "4879", + "4880", + "5034", + "51182", + "5201", + "5202", + "5203", + "5204", + "54431", + "5478", + "54788", + "5479", + "5481", + "55466", + "55768", + "56605", + "56886", + "573", + "5824", + "6102", + "6388", + "64175", + "64714", + "64772", + "6767", + "6902", + "6903", + "6904", + "6905", + "6950", + "7184", + "7203", + "7266", + "7411", + "7466", + "7841", + "79031", + "79982", + "811", + "821", + "8425", + "9049", + "908", + "9218", + "9403", + "9529", + "9530", + "9532" + ] + }, + "GO:0043547": { + "Name": "positive regulation of GTPase activity", + "Task": "GO", + "Genes": [ + "10125", + "10235", + "10276", + "10297", + "10344", + "10399", + "10411", + "10507", + "10681", + "10928", + "10979", + "10999", + "112574", + "115704", + "116", + "116985", + "128637", + "140775", + "143872", + "153", + "1857", + "1894", + "1969", + "202243", + "203228", + "2041", + "2146", + "2149", + "2150", + "22841", + "22930", + "23161", + "23329", + "23380", + "23513", + "23616", + "27237", + "27352", + "2889", + "29", + "2932", + "30851", + "3265", + "3655", + "3688", + "377630", + "391", + "3987", + "4594", + "4763", + "4908", + "4914", + "51256", + "51429", + "51520", + "51735", + "5300", + "54959", + "55255", + "55357", + "55616", + "55854", + "5657", + "57589", + "57679", + "5905", + "5909", + "5996", + "6000", + "6001", + "6004", + "613", + "6251", + "6281", + "6356", + "6369", + "7074", + "7248", + "7481", + "7813", + "81565", + "81704", + "8301", + "8394", + "8412", + "8477", + "8502", + "85397", + "85440", + "858", + "8874", + "89839", + "92154", + "958", + "9628", + "9639", + "9693", + "9712", + "9824", + "9827", + "9905" + ] + }, + "GO:0070507": { + "Name": "regulation of microtubule cytoskeleton organization", + "Task": "GO", + "Genes": [ + "10015", + "1003", + "10039", + "10142", + "10300", + "10382", + "10460", + "10519", + "10615", + "10634", + "11075", + "11076", + "11170", + "126731", + "128866", + "146057", + "1540", + "157922", + "1639", + "1778", + "1946", + "2011", + "2042", + "220134", + "221150", + "2242", + "22919", + "22924", + "22974", + "23122", + "23187", + "23271", + "23299", + "23332", + "23636", + "24139", + "246176", + "25", + "256364", + "25978", + "25999", + "26054", + "26146", + "27243", + "2770", + "28964", + "2932", + "29899", + "29922", + "3192", + "324", + "3303", + "3304", + "348235", + "3925", + "402", + "4133", + "4137", + "4204", + "4233", + "4733", + "4926", + "5058", + "5119", + "51510", + "51652", + "5347", + "55521", + "55755", + "57132", + "57551", + "57606", + "57662", + "58497", + "5879", + "6047", + "6093", + "6188", + "6249", + "6314", + "636", + "6622", + "6904", + "7175", + "79187", + "79598", + "79643", + "79866", + "79884", + "79998", + "84722", + "8480", + "8874", + "89795", + "90102", + "91782", + "9181", + "92421", + "9525", + "9793" + ] + }, + "GO:0051302": { + "Name": "regulation of cell division", + "Task": "GO", + "Genes": [ + "10112", + "10474", + "10519", + "10628", + "1069", + "10755", + "10807", + "11091", + "11113", + "112869", + "114327", + "117194", + "1263", + "146909", + "1810", + "1813", + "1814", + "1894", + "201161", + "201163", + "2246", + "23503", + "23636", + "25909", + "26009", + "26189", + "2648", + "2652", + "27183", + "28964", + "29072", + "29127", + "30849", + "341019", + "387", + "387695", + "4300", + "4609", + "4824", + "50838", + "51100", + "51289", + "51562", + "5289", + "5300", + "5347", + "54627", + "55660", + "55689", + "5581", + "5586", + "55958", + "56241", + "57026", + "57325", + "57448", + "585", + "5956", + "598", + "5988", + "63971", + "641", + "643", + "6469", + "65125", + "6683", + "6755", + "6795", + "6871", + "6886", + "728458", + "7405", + "79187", + "79541", + "79848", + "79884", + "79998", + "80179", + "808", + "80834", + "84440", + "8452", + "84936", + "8502", + "8678", + "8766", + "90293", + "9055", + "9212", + "92421", + "9493", + "9585", + "9727", + "9738", + "990", + "9903", + "9928", + "994" + ] + }, + "GO:1905475": { + "Name": "regulation of protein localization to membrane", + "Task": "GO", + "Genes": [ + "10268", + "10399", + "10490", + "10519", + "10551", + "10857", + "112609", + "1173", + "125170", + "131578", + "1445", + "1601", + "163882", + "1739", + "1956", + "1969", + "2042", + "2064", + "207", + "2181", + "23096", + "23433", + "245812", + "2534", + "25921", + "26060", + "26119", + "2633", + "2664", + "27032", + "27183", + "27237", + "2852", + "285966", + "29098", + "2934", + "29801", + "3265", + "3630", + "367", + "3675", + "3688", + "3745", + "377630", + "3799", + "391", + "3958", + "4035", + "4323", + "4641", + "493", + "5071", + "51024", + "51201", + "51548", + "5170", + "5174", + "51763", + "5290", + "54209", + "54471", + "54550", + "54585", + "55022", + "5525", + "55625", + "5581", + "5583", + "56246", + "56947", + "57214", + "57628", + "5780", + "5906", + "598", + "60", + "6248", + "64114", + "65267", + "6711", + "6809", + "6810", + "7040", + "7130", + "8301", + "8417", + "8500", + "85409", + "8650", + "8673", + "9141", + "9270", + "9482", + "9495", + "9528", + "9747", + "975", + "9847" + ] + }, + "GO:0032984": { + "Name": "protein-containing complex disassembly", + "Task": "GO", + "Genes": [ + "10023", + "10490", + "1072", + "1073", + "11004", + "11034", + "11198", + "126731", + "128866", + "146909", + "196528", + "2107", + "22863", + "23197", + "23708", + "24144", + "2580", + "25851", + "25978", + "26100", + "26276", + "27183", + "27243", + "2932", + "2934", + "2935", + "29979", + "30849", + "3159", + "327", + "3312", + "3396", + "347240", + "3796", + "3925", + "440738", + "4609", + "4778", + "488", + "5119", + "51510", + "51652", + "5195", + "5289", + "54516", + "55014", + "57132", + "57231", + "57553", + "57701", + "5830", + "6059", + "63894", + "6418", + "64601", + "64780", + "65082", + "6597", + "6598", + "6599", + "6601", + "6602", + "6603", + "6604", + "6605", + "6737", + "6749", + "6845", + "7141", + "7251", + "7405", + "7415", + "7429", + "79643", + "79752", + "80183", + "81631", + "81671", + "81930", + "8289", + "83743", + "84305", + "84340", + "8444", + "84557", + "84643", + "8673", + "8678", + "91782", + "92421", + "92815", + "9342", + "9349", + "9525", + "9617", + "9645", + "9793" + ] + }, + "GO:0007034": { + "Name": "vacuolar transport", + "Task": "GO", + "Genes": [ + "1130", + "1191", + "1201", + "128866", + "138050", + "151636", + "154", + "164", + "22863", + "22906", + "23163", + "23295", + "23339", + "23400", + "23557", + "255738", + "2580", + "25978", + "26175", + "26276", + "26985", + "27072", + "27183", + "27243", + "274", + "2896", + "29911", + "30845", + "3312", + "345611", + "388", + "3916", + "3920", + "4074", + "411", + "441925", + "4534", + "4734", + "5071", + "51172", + "5119", + "51332", + "51361", + "51479", + "51510", + "51542", + "51652", + "55275", + "55297", + "55681", + "55737", + "55823", + "5660", + "57132", + "57154", + "57617", + "57679", + "57724", + "6272", + "6293", + "63894", + "63971", + "64089", + "64145", + "64400", + "64601", + "65018", + "65082", + "6653", + "6845", + "738", + "7415", + "7780", + "7781", + "7782", + "7879", + "79158", + "79643", + "8031", + "80700", + "83547", + "84067", + "84376", + "8878", + "8943", + "9146", + "91782", + "9179", + "92421", + "9392", + "950", + "9525", + "9648", + "9737", + "9765", + "9842" + ] + }, + "GO:0010975": { + "Name": "regulation of neuron projection development", + "Task": "GO", + "Genes": [ + "10371", + "10507", + "10519", + "10690", + "1072", + "11075", + "11344", + "114798", + "120892", + "126520", + "1400", + "1496", + "152559", + "162427", + "1630", + "1826", + "1948", + "2011", + "2033", + "2042", + "2185", + "2242", + "22871", + "23043", + "23064", + "23189", + "23271", + "23303", + "23363", + "23499", + "23654", + "25793", + "2580", + "26153", + "26259", + "2672", + "27", + "2803", + "285016", + "2889", + "29116", + "322", + "347733", + "348", + "3630", + "382", + "389658", + "4058", + "4067", + "4137", + "4168", + "4192", + "4504", + "4914", + "50487", + "51657", + "5365", + "54986", + "5584", + "5587", + "5663", + "56896", + "57118", + "57142", + "5753", + "5754", + "57689", + "5780", + "5911", + "5979", + "6014", + "6091", + "6092", + "627", + "64689", + "653", + "655", + "6695", + "79625", + "80725", + "81618", + "818", + "8428", + "8482", + "8499", + "8536", + "8934", + "9139", + "91752", + "9353", + "93650", + "9529", + "9693", + "9856" + ] + }, + "GO:0032677": { + "Name": "regulation of interleukin-8 production", + "Task": "GO", + "Genes": [ + "10392", + "10394", + "10542", + "11027", + "112744", + "11315", + "114609", + "1401", + "1649", + "1670", + "1991", + "2149", + "2150", + "2152", + "2219", + "23005", + "23586", + "25865", + "26191", + "2658", + "27202", + "2867", + "29108", + "301", + "307", + "3146", + "3303", + "3304", + "336", + "338322", + "3553", + "3569", + "3586", + "3929", + "3952", + "3965", + "408", + "4843", + "5054", + "51157", + "51284", + "51311", + "51744", + "53342", + "54106", + "56957", + "57506", + "5788", + "58509", + "5861", + "5970", + "602", + "64127", + "64581", + "671", + "6774", + "6850", + "7096", + "7097", + "7098", + "7099", + "7100", + "7124", + "84632", + "8692", + "8737", + "8772", + "8915", + "914", + "9314", + "9370", + "945", + "965", + "972" + ] + }, + "GO:0007041": { + "Name": "lysosomal transport", + "Task": "GO", + "Genes": [ + "1130", + "1191", + "1201", + "128866", + "138050", + "151636", + "154", + "164", + "22863", + "22906", + "23163", + "23295", + "23339", + "23400", + "23557", + "255738", + "2580", + "25978", + "26175", + "26276", + "26985", + "27072", + "27183", + "27243", + "274", + "2896", + "29911", + "30845", + "3312", + "388", + "3916", + "3920", + "4074", + "411", + "441925", + "4534", + "4734", + "5071", + "51172", + "5119", + "51332", + "51361", + "51479", + "51510", + "51542", + "51652", + "55275", + "55297", + "55681", + "55737", + "55823", + "5660", + "57132", + "57617", + "57679", + "57724", + "6272", + "6293", + "63894", + "63971", + "64089", + "64145", + "64400", + "64601", + "65018", + "65082", + "6653", + "6845", + "738", + "7415", + "7780", + "7781", + "7782", + "7879", + "79158", + "79643", + "8031", + "80700", + "83547", + "84067", + "84376", + "8943", + "9146", + "91782", + "9179", + "92421", + "9392", + "950", + "9525", + "9648", + "9737", + "9765", + "9842" + ] + }, + "GO:0019058": { + "Name": "viral life cycle", + "Task": "GO", + "Genes": [ + "10015", + "10332", + "10542", + "10663", + "11059", + "11060", + "11074", + "128637", + "128866", + "129531", + "131578", + "137492", + "1487", + "1488", + "1514", + "155382", + "156", + "1642", + "1656", + "185", + "200576", + "2060", + "219931", + "23633", + "25978", + "2621", + "27074", + "27183", + "27243", + "2838", + "28972", + "30835", + "3326", + "3383", + "339122", + "339390", + "348", + "3643", + "3685", + "3690", + "3838", + "440400", + "4734", + "4864", + "5091", + "5093", + "5094", + "51160", + "5119", + "51193", + "51510", + "51652", + "53373", + "5478", + "5481", + "55048", + "551", + "55223", + "553", + "558", + "57132", + "5819", + "5861", + "59272", + "6347", + "6520", + "6598", + "6609", + "7251", + "7415", + "7706", + "7879", + "7913", + "79643", + "79720", + "81876", + "83737", + "857", + "858", + "8673", + "8829", + "89853", + "90678", + "90861", + "91392", + "91782", + "9218", + "92421", + "93343", + "9397", + "9525", + "9712", + "9798" + ] + }, + "GO:0002832": { + "Name": "negative regulation of response to biotic stimulus", + "Task": "GO", + "Genes": [ + "100507436", + "10221", + "10859", + "11027", + "11274", + "11277", + "11326", + "117285", + "1378", + "142", + "147945", + "149095", + "196", + "2", + "22900", + "22978", + "23005", + "23170", + "23220", + "245928", + "259307", + "25939", + "26058", + "26146", + "2896", + "29883", + "3105", + "3106", + "3133", + "3134", + "3135", + "3428", + "345611", + "3630", + "3805", + "3821", + "3824", + "383", + "387837", + "3965", + "401397", + "4057", + "409", + "4277", + "4795", + "4938", + "4940", + "5094", + "51441", + "5272", + "54625", + "5468", + "5495", + "55646", + "56339", + "57506", + "5771", + "58509", + "59307", + "60343", + "6223", + "6318", + "634", + "64771", + "6737", + "6773", + "6895", + "7040", + "708", + "710", + "7128", + "730249", + "7534", + "79102", + "79132", + "79594", + "83737", + "84166", + "84243", + "84640", + "8815", + "90070", + "9111", + "9140", + "9212", + "9470", + "9474", + "9636", + "9958" + ] + }, + "GO:2001236": { + "Name": "regulation of extrinsic apoptotic signaling pathway", + "Task": "GO", + "Genes": [ + "10116", + "10197", + "10771", + "11315", + "117584", + "1437", + "147138", + "1540", + "162989", + "1654", + "183", + "186", + "207", + "219699", + "2243", + "2244", + "2260", + "2266", + "23017", + "246330", + "2537", + "2623", + "2668", + "27429", + "29108", + "2932", + "2950", + "3064", + "3162", + "3303", + "3304", + "3383", + "3479", + "3552", + "3553", + "3624", + "3655", + "367", + "3685", + "3958", + "4055", + "4170", + "467", + "50486", + "5054", + "5062", + "51330", + "5196", + "5366", + "5371", + "55023", + "5519", + "5598", + "57448", + "57630", + "596", + "5970", + "5979", + "598", + "637", + "64114", + "6422", + "6478", + "64798", + "6672", + "6714", + "672", + "6810", + "7015", + "7046", + "7057", + "7124", + "7128", + "7185", + "7186", + "7857", + "80196", + "8567", + "857", + "8682", + "8737", + "8742", + "8743", + "8772", + "8837", + "8915", + "8996", + "90" + ] + }, + "GO:0006898": { + "Name": "receptor-mediated endocytosis", + "Task": "GO", + "Genes": [ + "10203", + "10244", + "10266", + "10267", + "10268", + "10859", + "11006", + "11031", + "115548", + "1173", + "1174", + "1175", + "1201", + "133", + "1514", + "154", + "155", + "156", + "157", + "160", + "161", + "163", + "1759", + "1785", + "1814", + "200576", + "2060", + "219931", + "2208", + "2213", + "23149", + "23166", + "23396", + "2348", + "2580", + "26119", + "283420", + "2868", + "2885", + "2966", + "348", + "3482", + "3576", + "3577", + "3579", + "3949", + "4035", + "4036", + "4037", + "4074", + "408", + "409", + "432", + "4360", + "440400", + "4734", + "51429", + "5298", + "53353", + "54874", + "5538", + "55576", + "55681", + "55716", + "57007", + "5868", + "5898", + "5899", + "6441", + "6622", + "6642", + "6653", + "7036", + "7037", + "7436", + "81693", + "8218", + "8301", + "83737", + "85377", + "857", + "8578", + "858", + "859", + "9026", + "9214", + "9260", + "9413", + "948", + "9829", + "9873" + ] + }, + "GO:0006661": { + "Name": "phosphatidylinositol biosynthetic process", + "Task": "GO", + "Genes": [ + "10026", + "1040", + "10423", + "128869", + "129303", + "145567", + "200576", + "22863", + "22876", + "22979", + "23049", + "23167", + "23396", + "23556", + "27124", + "27315", + "284098", + "30849", + "3612", + "3635", + "3636", + "3706", + "3707", + "376497", + "4534", + "4952", + "51227", + "51447", + "51604", + "51763", + "5277", + "5279", + "5281", + "5283", + "5286", + "5289", + "5291", + "5294", + "5297", + "5298", + "5305", + "5336", + "54344", + "54872", + "55300", + "55361", + "55650", + "56623", + "5728", + "57605", + "64419", + "64924", + "65258", + "660", + "7405", + "79143", + "79837", + "80055", + "80235", + "80271", + "83394", + "8394", + "8395", + "8396", + "84302", + "84668", + "84992", + "8678", + "8733", + "8776", + "8813", + "8818", + "8821", + "8867", + "8871", + "8897", + "8898", + "9091", + "9107", + "9108", + "9110", + "93210", + "94005", + "9487", + "9488", + "9600", + "9807", + "9896" + ] + }, + "GO:0030177": { + "Name": "positive regulation of Wnt signaling pathway", + "Task": "GO", + "Genes": [ + "1001", + "10023", + "10159", + "10927", + "120892", + "1277", + "130612", + "139285", + "1453", + "1454", + "1457", + "1601", + "1613", + "1654", + "1950", + "1956", + "22943", + "23189", + "23213", + "245973", + "252839", + "25805", + "27123", + "27185", + "2719", + "284654", + "3087", + "331", + "340419", + "343637", + "3611", + "3728", + "4300", + "441478", + "4790", + "51185", + "51339", + "51366", + "51527", + "527", + "5300", + "54764", + "54795", + "5494", + "54994", + "55031", + "55182", + "55366", + "55789", + "55959", + "5754", + "57664", + "57805", + "59352", + "6206", + "6299", + "6422", + "6424", + "64750", + "65125", + "65268", + "6597", + "65981", + "6907", + "7015", + "7040", + "7097", + "7415", + "79577", + "79705", + "79718", + "79971", + "80351", + "81847", + "84870", + "8549", + "8607", + "8629", + "8658", + "8796", + "89780", + "9101", + "9679", + "9736", + "9839" + ] + }, + "GO:0050921": { + "Name": "positive regulation of chemotaxis", + "Task": "GO", + "Genes": [ + "10059", + "1012", + "102", + "10344", + "10488", + "10563", + "1230", + "1236", + "1240", + "1435", + "1436", + "146433", + "158747", + "1826", + "1907", + "1908", + "196527", + "199", + "2150", + "2152", + "2155", + "2247", + "2260", + "2277", + "2358", + "23604", + "25865", + "2621", + "27347", + "284340", + "3146", + "3315", + "3569", + "3570", + "3576", + "3592", + "3627", + "3791", + "3965", + "4192", + "4233", + "4908", + "5025", + "5054", + "51157", + "5155", + "5156", + "5587", + "5594", + "5595", + "5641", + "57402", + "5747", + "5879", + "5880", + "5919", + "6278", + "6346", + "6348", + "6351", + "6354", + "6363", + "6366", + "6375", + "6387", + "64094", + "65125", + "6809", + "6810", + "6868", + "7040", + "7057", + "7060", + "708", + "7114", + "7424", + "7474", + "7857", + "7941", + "811", + "8817", + "8823", + "90550", + "9353", + "9647", + "9943" + ] + }, + "GO:0032271": { + "Name": "regulation of protein polymerization", + "Task": "GO", + "Genes": [ + "1003", + "10142", + "10344", + "10382", + "10435", + "10456", + "10565", + "11075", + "11076", + "118", + "119", + "1236", + "136319", + "1440", + "146206", + "148170", + "157922", + "1639", + "2017", + "2185", + "2241", + "2242", + "22919", + "22924", + "23189", + "23271", + "23500", + "24139", + "25", + "253725", + "25802", + "25999", + "28964", + "2934", + "29922", + "3055", + "3059", + "3071", + "3303", + "3304", + "3320", + "382", + "3925", + "402", + "4133", + "4137", + "4204", + "4233", + "442721", + "4690", + "4733", + "4926", + "5058", + "5063", + "51571", + "5216", + "5217", + "55626", + "55755", + "55971", + "57482", + "57606", + "57662", + "58497", + "5879", + "5921", + "6188", + "6249", + "6356", + "6366", + "6369", + "64857", + "6622", + "6904", + "7114", + "7408", + "7429", + "79998", + "8440", + "84630", + "85477", + "8874", + "89795", + "9026", + "90952", + "9113", + "91663", + "9353", + "93663", + "9793" + ] + }, + "GO:0070665": { + "Name": "positive regulation of leukocyte proliferation", + "Task": "GO", + "Genes": [ + "100133941", + "10148", + "10288", + "10451", + "10673", + "11148", + "115352", + "126259", + "1435", + "1436", + "1437", + "1439", + "146433", + "149233", + "1604", + "177", + "1880", + "199", + "2048", + "2255", + "23308", + "29126", + "301", + "3071", + "30835", + "3105", + "3109", + "3113", + "3115", + "3133", + "3146", + "3479", + "3481", + "3485", + "3553", + "3558", + "3568", + "3569", + "3572", + "3592", + "3593", + "3594", + "3606", + "3717", + "3952", + "3965", + "4067", + "4179", + "4282", + "4690", + "4773", + "4860", + "51293", + "51561", + "54106", + "5594", + "5595", + "5747", + "57829", + "5788", + "59067", + "596", + "6188", + "6375", + "63925", + "64926", + "6541", + "684", + "7037", + "7048", + "7297", + "7412", + "80381", + "8440", + "912", + "916", + "923", + "940", + "952", + "959", + "970", + "972", + "975" + ] + }, + "GO:0090288": { + "Name": "negative regulation of cellular response to growth factor stimulus", + "Task": "GO", + "Genes": [ + "10016", + "10252", + "10253", + "10272", + "10563", + "153090", + "1634", + "1745", + "183", + "186", + "22905", + "23213", + "23592", + "25805", + "25928", + "26585", + "28996", + "3273", + "3565", + "3592", + "3593", + "390598", + "4091", + "4092", + "4681", + "493", + "50964", + "51232", + "51592", + "5291", + "5468", + "57154", + "57556", + "64750", + "6497", + "7057", + "7130", + "7321", + "7323", + "7471", + "7498", + "79639", + "79812", + "81792", + "8573", + "8646", + "8862", + "90993", + "9146", + "9241", + "9350", + "9353", + "9573" + ] + }, + "GO:0006997": { + "Name": "nucleus organization", + "Task": "GO", + "Genes": [ + "10015", + "10208", + "10783", + "1104", + "124491", + "128866", + "148362", + "1639", + "1663", + "1760", + "2010", + "2113", + "221035", + "221496", + "22927", + "22933", + "23141", + "23165", + "23175", + "23306", + "2334", + "23345", + "23353", + "23378", + "23399", + "23411", + "23435", + "23760", + "25777", + "25909", + "25978", + "26135", + "26993", + "27183", + "27243", + "274", + "28996", + "373509", + "4000", + "4001", + "4926", + "4928", + "50511", + "5119", + "51510", + "51652", + "5347", + "5371", + "545", + "55135", + "55165", + "55706", + "55746", + "5578", + "5579", + "57122", + "57132", + "57142", + "57673", + "6223", + "6314", + "64431", + "6683", + "6732", + "6839", + "7141", + "7175", + "7329", + "7443", + "79188", + "79643", + "80314", + "80346", + "8087", + "81929", + "8444", + "84942", + "8815", + "91782", + "92421", + "9525", + "9631", + "9688", + "983", + "9972" + ] + }, + "GO:0039531": { + "Name": "regulation of cytoplasmic pattern recognition receptor signaling pathway", + "Task": "GO", + "Genes": [ + "10211", + "10612", + "11074", + "11277", + "115004", + "115352", + "115362", + "121260", + "127018", + "140609", + "142", + "148066", + "152138", + "1654", + "197358", + "207", + "2150", + "22900", + "2319", + "23369", + "23547", + "25827", + "26007", + "260434", + "26057", + "26191", + "285852", + "286430", + "29997", + "329", + "330", + "3303", + "3304", + "331", + "3312", + "345611", + "373509", + "377630", + "4210", + "5094", + "5336", + "54106", + "54209", + "54941", + "5537", + "55577", + "55601", + "55666", + "5591", + "55914", + "5599", + "56919", + "57506", + "57590", + "57787", + "57864", + "5802", + "63906", + "6397", + "6714", + "6895", + "695", + "708", + "7105", + "7128", + "7353", + "79132", + "79184", + "80231", + "80772", + "81559", + "81790", + "83737", + "84243", + "84885", + "85364", + "857", + "8638", + "8780", + "8815", + "8887", + "89870", + "9212", + "9698", + "9958" + ] + }, + "GO:0002706": { + "Name": "regulation of lymphocyte mediated immunity", + "Task": "GO", + "Genes": [ + "100507436", + "10125", + "10459", + "10666", + "10859", + "10892", + "11006", + "11126", + "112441434", + "114836", + "1178", + "135250", + "1378", + "146850", + "149840", + "1604", + "163486", + "164", + "177", + "196", + "2213", + "22914", + "23705", + "259197", + "259307", + "3071", + "3077", + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3135", + "3140", + "3329", + "3440", + "3456", + "353091", + "3553", + "3554", + "3565", + "3592", + "3593", + "3606", + "3805", + "3821", + "3822", + "3824", + "387837", + "3916", + "3952", + "3965", + "409", + "50943", + "5272", + "54537", + "54795", + "56253", + "567", + "5817", + "5819", + "59067", + "6318", + "634", + "6375", + "6885", + "695", + "7037", + "7040", + "7158", + "7186", + "7189", + "722", + "725", + "7454", + "7855", + "81545", + "8417", + "8741", + "8809", + "9390", + "941", + "9437", + "975" + ] + }, + "GO:1904375": { + "Name": "regulation of protein localization to cell periphery", + "Task": "GO", + "Genes": [ + "10268", + "10399", + "10490", + "10519", + "10551", + "10857", + "112609", + "1173", + "126353", + "131578", + "1445", + "1601", + "163882", + "1739", + "1956", + "1969", + "1981", + "2035", + "2037", + "2042", + "207", + "2181", + "23096", + "23433", + "245812", + "25921", + "26060", + "26119", + "2633", + "27032", + "27183", + "27237", + "2770", + "2852", + "29098", + "29801", + "29899", + "3265", + "3630", + "367", + "3675", + "3688", + "3799", + "391", + "3958", + "4035", + "4323", + "4926", + "493", + "51201", + "51548", + "5170", + "5347", + "54209", + "54585", + "55022", + "5525", + "55625", + "55737", + "5581", + "5583", + "56246", + "57628", + "5780", + "5906", + "598", + "60", + "6248", + "64114", + "65267", + "6622", + "6711", + "6809", + "6810", + "7040", + "8301", + "8417", + "8500", + "85409", + "8650", + "8673", + "89958", + "9482", + "9495", + "9528" + ] + }, + "GO:0045931": { + "Name": "positive regulation of mitotic cell cycle", + "Task": "GO", + "Genes": [ + "1019", + "11065", + "113130", + "11331", + "118471", + "134353", + "150465", + "163786", + "1654", + "1845", + "1956", + "1977", + "1978", + "1981", + "199", + "207", + "219736", + "2255", + "23276", + "23326", + "23476", + "255374", + "26057", + "26271", + "284001", + "286053", + "28984", + "3169", + "3297", + "3373", + "4193", + "4212", + "440", + "4824", + "50484", + "51514", + "51529", + "51692", + "5514", + "5578", + "55835", + "5586", + "55904", + "55920", + "5641", + "57521", + "5889", + "5890", + "5925", + "595", + "6198", + "6240", + "6241", + "64094", + "6491", + "6868", + "6886", + "7027", + "7325", + "80174", + "8317", + "8452", + "84967", + "8558", + "8766", + "8877", + "891", + "894", + "9099", + "9510", + "9525", + "9587", + "983", + "990", + "991", + "993", + "994" + ] + }, + "GO:0042129": { + "Name": "regulation of T cell proliferation", + "Task": "GO", + "Genes": [ + "100133941", + "10148", + "10288", + "10457", + "10859", + "11006", + "11146", + "11148", + "1178", + "126259", + "1378", + "149233", + "1604", + "177", + "199", + "23240", + "23308", + "259307", + "29126", + "301", + "3071", + "30835", + "3105", + "3109", + "3113", + "3115", + "3123", + "3133", + "3135", + "3146", + "3479", + "3481", + "3485", + "3553", + "3558", + "3569", + "3572", + "3593", + "3594", + "3606", + "3620", + "3717", + "383", + "3952", + "3958", + "3965", + "4179", + "4690", + "4860", + "50943", + "51561", + "5573", + "57045", + "57829", + "59067", + "6188", + "6375", + "6385", + "64115", + "6441", + "64926", + "652", + "6541", + "7037", + "7048", + "7297", + "7412", + "79679", + "80380", + "80381", + "8440", + "8744", + "912", + "916", + "923", + "9231", + "940", + "944", + "959", + "970", + "975" + ] + }, + "GO:0016482": { + "Name": "cytosolic transport", + "Task": "GO", + "Genes": [ + "100287171", + "10139", + "10228", + "10652", + "1066", + "1201", + "143187", + "144717", + "150368", + "1639", + "164", + "200576", + "2060", + "22836", + "23074", + "23258", + "253725", + "2580", + "25963", + "26000", + "26088", + "27131", + "27147", + "27252", + "29886", + "30845", + "338382", + "374403", + "3916", + "3998", + "400", + "51272", + "51479", + "51542", + "51552", + "5305", + "54551", + "54732", + "54832", + "55062", + "55275", + "55297", + "55435", + "55610", + "55658", + "55737", + "55773", + "57533", + "57589", + "58533", + "5870", + "5987", + "6272", + "63893", + "64145", + "6642", + "6643", + "6811", + "6836", + "738", + "7813", + "7879", + "79585", + "79735", + "8218", + "83874", + "84910", + "8499", + "8675", + "8677", + "8729", + "8934", + "8938", + "9043", + "9179", + "9341", + "9527", + "9559", + "9648", + "9779", + "9827", + "9905" + ] + }, + "GO:0051301": { + "Name": "cell division", + "Task": "GO", + "Genes": [ + "10015", + "10112", + "10376", + "1058", + "10617", + "10636", + "10899", + "11021", + "11113", + "112574", + "11258", + "114327", + "116840", + "128866", + "129531", + "1894", + "200942", + "203068", + "220134", + "23111", + "23157", + "23332", + "24137", + "257364", + "25937", + "25978", + "26354", + "26586", + "27183", + "27243", + "2770", + "2771", + "2773", + "285643", + "288", + "29127", + "311", + "324", + "348235", + "3619", + "387", + "388", + "389", + "3925", + "403", + "4134", + "4627", + "4628", + "5119", + "51203", + "51429", + "51510", + "51652", + "5347", + "54443", + "54784", + "54902", + "55165", + "55521", + "56288", + "57132", + "585", + "6651", + "6660", + "6683", + "6711", + "7005", + "7846", + "79643", + "84790", + "84861", + "85440", + "8636", + "9094", + "9101", + "91782", + "9181", + "9212", + "92421", + "9493", + "9525", + "9798" + ] + }, + "GO:0045807": { + "Name": "positive regulation of endocytosis", + "Task": "GO", + "Genes": [ + "100506013", + "10211", + "10461", + "10584", + "10960", + "116519", + "1191", + "124912", + "1535", + "1601", + "1861", + "1950", + "197", + "2150", + "2219", + "2220", + "23011", + "2332", + "2358", + "255738", + "25999", + "26119", + "2621", + "2688", + "284", + "302", + "3077", + "3092", + "3190", + "335", + "336", + "348", + "3560", + "3561", + "3600", + "3601", + "3643", + "399687", + "4035", + "408", + "409", + "4153", + "4908", + "5054", + "50632", + "51160", + "51479", + "5336", + "54209", + "5538", + "558", + "566", + "567", + "57118", + "5873", + "636", + "6401", + "6424", + "6441", + "64581", + "6609", + "6622", + "7018", + "7036", + "717", + "718", + "720", + "721", + "7275", + "7287", + "7448", + "78989", + "8527", + "8547", + "867", + "8862", + "89780", + "967", + "977", + "9779", + "9863" + ] + }, + "GO:0007163": { + "Name": "establishment or maintenance of cell polarity", + "Task": "GO", + "Genes": [ + "10403", + "10479", + "10486", + "10487", + "10524", + "1058", + "11004", + "115701", + "1236", + "126353", + "137886", + "143098", + "146206", + "1639", + "1739", + "2011", + "22841", + "22919", + "23094", + "23122", + "23286", + "23332", + "23418", + "23513", + "23616", + "2697", + "286", + "2932", + "29780", + "29899", + "3064", + "3071", + "358", + "3688", + "3834", + "387", + "399687", + "4085", + "4134", + "4478", + "4649", + "4926", + "4983", + "5048", + "50855", + "5347", + "54820", + "54908", + "55612", + "5584", + "55968", + "56288", + "5747", + "57662", + "5911", + "60", + "6351", + "6363", + "6366", + "64083", + "6425", + "6548", + "6624", + "667", + "6693", + "6794", + "7430", + "81609", + "84080", + "84612", + "85302", + "85440", + "8729", + "8841", + "9053", + "917", + "9183", + "9231", + "9368", + "9578", + "9793", + "9948" + ] + }, + "GO:0008277": { + "Name": "regulation of G protein-coupled receptor signaling pathway", + "Task": "GO", + "Genes": [ + "100", + "100506013", + "10268", + "10419", + "10868", + "11240", + "112609", + "116", + "131890", + "133", + "154", + "155", + "156", + "1609", + "1814", + "1906", + "2147", + "22844", + "23032", + "23295", + "23322", + "25818", + "2779", + "2786", + "2788", + "2852", + "2868", + "2869", + "2870", + "2966", + "2986", + "29978", + "3000", + "3091", + "333", + "3576", + "3925", + "408", + "409", + "4233", + "43847", + "441925", + "4836", + "493", + "51304", + "5245", + "5341", + "54209", + "54550", + "55", + "55188", + "5530", + "55625", + "5578", + "56246", + "5653", + "57512", + "5997", + "5998", + "5999", + "6000", + "6004", + "6011", + "6091", + "6093", + "6586", + "6622", + "718", + "7289", + "7529", + "7737", + "79823", + "8490", + "8601", + "8862", + "9353", + "9397", + "9737" + ] + }, + "GO:1903052": { + "Name": "positive regulation of proteolysis involved in protein catabolic process", + "Task": "GO", + "Genes": [ + "10134", + "10273", + "10399", + "10444", + "1050", + "11236", + "11337", + "114881", + "116224", + "1191", + "1263", + "144165", + "1452", + "149628", + "153090", + "153769", + "1601", + "160418", + "1855", + "207", + "22933", + "23640", + "25898", + "26471", + "28952", + "2931", + "2932", + "29978", + "29979", + "29997", + "3300", + "3303", + "4092", + "4193", + "4287", + "4780", + "5071", + "51136", + "51548", + "51667", + "5347", + "55070", + "55212", + "55294", + "5701", + "5702", + "5705", + "5706", + "57154", + "5716", + "5728", + "5886", + "5988", + "64110", + "641700", + "64326", + "6449", + "65992", + "6613", + "6872", + "7041", + "7341", + "7415", + "7917", + "79699", + "80279", + "8078", + "81542", + "84231", + "84456", + "8517", + "85409", + "857", + "863", + "8975", + "91445", + "93974", + "9655", + "9709", + "9817", + "9978", + "9992" + ] + }, + "GO:0030595": { + "Name": "leukocyte chemotaxis", + "Task": "GO", + "Genes": [ + "10344", + "10563", + "1113", + "120425", + "1230", + "1234", + "1235", + "1236", + "140596", + "1511", + "1525", + "1667", + "1880", + "1906", + "1907", + "1908", + "1910", + "200576", + "2321", + "23396", + "2350", + "240", + "2621", + "301", + "3071", + "30817", + "3569", + "3570", + "3576", + "3577", + "3579", + "3586", + "3627", + "3689", + "3815", + "387695", + "3958", + "4192", + "4814", + "503618", + "51119", + "51192", + "5155", + "5196", + "5293", + "5294", + "5478", + "5479", + "5800", + "6223", + "6279", + "6280", + "6283", + "6288", + "6347", + "6348", + "6354", + "6356", + "6357", + "6363", + "6366", + "6368", + "6369", + "6372", + "6373", + "6375", + "6376", + "6441", + "6558", + "682", + "6850", + "692094", + "728358", + "7852", + "7857", + "796", + "8600", + "8729" + ] + }, + "GO:0002819": { + "Name": "regulation of adaptive immune response", + "Task": "GO", + "Genes": [ + "10459", + "10666", + "10859", + "10892", + "11006", + "11126", + "112441434", + "1178", + "1378", + "149233", + "149840", + "1604", + "163486", + "177", + "196", + "2213", + "23411", + "246778", + "259307", + "29108", + "29126", + "301", + "3071", + "3077", + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3135", + "3140", + "3329", + "3440", + "3456", + "3553", + "3554", + "3565", + "3572", + "3592", + "3593", + "3594", + "3606", + "3659", + "3665", + "3821", + "3824", + "50943", + "51561", + "54537", + "54795", + "567", + "5817", + "5819", + "5987", + "6046", + "634", + "6375", + "64170", + "6885", + "695", + "7037", + "7040", + "7158", + "7186", + "7189", + "722", + "725", + "7454", + "7855", + "81545", + "8417", + "8631", + "8741", + "8764", + "8809", + "9390", + "941", + "975" + ] + }, + "GO:0030512": { + "Name": "negative regulation of transforming growth factor beta receptor signaling pathway", + "Task": "GO", + "Genes": [ + "1001", + "10273", + "11171", + "114990", + "117166", + "124857", + "135228", + "163126", + "2280", + "23089", + "23592", + "25805", + "26036", + "283149", + "3303", + "4052", + "4091", + "4092", + "51341", + "5170", + "5300", + "5465", + "5468", + "54829", + "5494", + "55756", + "56937", + "57154", + "58533", + "63976", + "64081", + "64750", + "6497", + "650", + "652991", + "6868", + "7080", + "753", + "79674", + "81031", + "83891", + "8483", + "9110", + "9719", + "9958" + ] + }, + "GO:0017157": { + "Name": "regulation of exocytosis", + "Task": "GO", + "Genes": [ + "10015", + "10079", + "1080", + "10814", + "10815", + "11141", + "11267", + "11314", + "120892", + "134957", + "150", + "164", + "192683", + "201294", + "2150", + "2213", + "2242", + "2243", + "2244", + "2266", + "23011", + "23086", + "23122", + "23332", + "23400", + "27183", + "27243", + "29091", + "301", + "3071", + "30817", + "3134", + "3684", + "3689", + "376267", + "3822", + "3916", + "3965", + "50487", + "5071", + "51652", + "5413", + "57126", + "57617", + "5864", + "5868", + "5873", + "5874", + "5898", + "634", + "6382", + "6385", + "6386", + "6622", + "6810", + "6812", + "6814", + "6845", + "6853", + "6857", + "7251", + "7784", + "7879", + "79643", + "8027", + "83452", + "8448", + "84932", + "8673", + "8723", + "8832", + "8938", + "9146", + "9367", + "94121", + "9525", + "9545", + "9581" + ] + }, + "GO:0032465": { + "Name": "regulation of cytokinesis", + "Task": "GO", + "Genes": [ + "10112", + "1069", + "10755", + "10807", + "11113", + "117194", + "1263", + "1813", + "1814", + "1894", + "201161", + "201163", + "23503", + "23636", + "25909", + "26189", + "2652", + "27183", + "28964", + "29072", + "29127", + "30849", + "341019", + "387", + "50838", + "51100", + "51289", + "5289", + "5300", + "5347", + "54627", + "55660", + "5581", + "5586", + "55958", + "57026", + "57448", + "585", + "5956", + "598", + "63971", + "643", + "65125", + "6683", + "6755", + "6795", + "728458", + "7405", + "79187", + "79541", + "79848", + "79884", + "79998", + "80179", + "808", + "80834", + "84440", + "8452", + "84936", + "8502", + "8678", + "8766", + "90293", + "9055", + "9212", + "92421", + "9493", + "9585", + "9727", + "9738", + "990", + "9903", + "9928", + "994" + ] + }, + "GO:0051048": { + "Name": "negative regulation of secretion", + "Task": "GO", + "Genes": [ + "10079", + "10859", + "10961", + "1113", + "11141", + "11314", + "131177", + "1393", + "140947", + "150", + "151", + "152", + "1813", + "1814", + "1815", + "1950", + "2065", + "2213", + "23208", + "23409", + "25953", + "26056", + "26297", + "2697", + "285381", + "29091", + "301", + "3071", + "3084", + "3134", + "348", + "353500", + "3589", + "3592", + "3593", + "3625", + "3630", + "3667", + "3767", + "3965", + "3976", + "4345", + "4762", + "497189", + "4988", + "5008", + "5071", + "5978", + "634", + "64111", + "6422", + "64285", + "6622", + "6814", + "6860", + "7879", + "80223", + "83452", + "84830", + "8529", + "8609", + "8673", + "8832", + "91543", + "9341", + "9525", + "972", + "9727" + ] + }, + "GO:1902749": { + "Name": "regulation of cell cycle G2/M phase transition", + "Task": "GO", + "Genes": [ + "1019", + "1026", + "1063", + "1111", + "1112", + "116224", + "152110", + "219736", + "2273", + "22809", + "23476", + "26271", + "27133", + "27183", + "29086", + "29980", + "29997", + "373509", + "377630", + "4683", + "472", + "4869", + "50484", + "51147", + "51149", + "51343", + "51347", + "51514", + "51720", + "5347", + "55031", + "55743", + "55920", + "56658", + "57551", + "58493", + "5889", + "5890", + "595", + "5988", + "60561", + "6240", + "63967", + "641", + "64859", + "65123", + "672", + "6790", + "7157", + "7465", + "79035", + "79184", + "79915", + "80174", + "80279", + "8317", + "84142", + "8444", + "84446", + "84936", + "8555", + "8766", + "8883", + "891", + "9088", + "92002", + "92421", + "9344", + "9525", + "9555", + "9577", + "983", + "9928", + "993", + "994" + ] + }, + "GO:0048259": { + "Name": "regulation of receptor-mediated endocytosis", + "Task": "GO", + "Genes": [ + "100506013", + "10188", + "10211", + "10825", + "116519", + "1191", + "124590", + "124930", + "150696", + "1601", + "1950", + "20", + "22848", + "22943", + "23011", + "2332", + "255738", + "26119", + "2688", + "284", + "284654", + "29978", + "302", + "3077", + "3092", + "3190", + "338692", + "341", + "344", + "345", + "351", + "3643", + "3685", + "3690", + "382", + "4043", + "408", + "409", + "4908", + "4983", + "5054", + "5291", + "54550", + "5538", + "5663", + "567", + "5879", + "6311", + "636", + "6386", + "6401", + "6424", + "7018", + "7448", + "79890", + "8301", + "84058", + "8527", + "867", + "88455", + "8862", + "89780", + "90416", + "9370", + "967", + "9779", + "9863", + "9892" + ] + }, + "GO:0002700": { + "Name": "regulation of production of molecular mediator of immune response", + "Task": "GO", + "Genes": [ + "10459", + "10859", + "10892", + "11006", + "11126", + "112441434", + "115352", + "1178", + "117854", + "1378", + "144811", + "149840", + "1604", + "163486", + "2048", + "2150", + "25818", + "2821", + "3077", + "3105", + "3133", + "3134", + "3135", + "335", + "336", + "3440", + "3456", + "353091", + "354", + "3553", + "3554", + "3558", + "3565", + "3569", + "3586", + "3606", + "3663", + "3805", + "3815", + "50943", + "51744", + "5225", + "54106", + "54537", + "54795", + "55765", + "5650", + "567", + "5788", + "6375", + "64127", + "6810", + "684", + "6885", + "695", + "7037", + "7040", + "7042", + "7043", + "7124", + "7158", + "7186", + "7189", + "7474", + "7494", + "7855", + "79004", + "814", + "8140", + "8741", + "8809", + "9341", + "975", + "9865" + ] + }, + "GO:0006909": { + "Name": "phagocytosis", + "Task": "GO", + "Genes": [ + "10062", + "10451", + "10461", + "1089", + "11151", + "134", + "135", + "1793", + "196051", + "200576", + "2213", + "2219", + "2220", + "2268", + "22841", + "23396", + "23603", + "23616", + "25", + "2534", + "25912", + "2621", + "301", + "3055", + "306", + "3146", + "353376", + "3685", + "3690", + "3984", + "4035", + "4067", + "5058", + "51454", + "5175", + "5338", + "54209", + "54734", + "55113", + "55647", + "558", + "5580", + "5581", + "5747", + "575", + "5914", + "64581", + "6714", + "6850", + "7052", + "7057", + "7099", + "7409", + "7410", + "7525", + "7879", + "81035", + "83871", + "8394", + "8398", + "84162", + "8547", + "94134", + "948", + "949", + "9777", + "9844", + "9936", + "9938" + ] + }, + "GO:0050000": { + "Name": "chromosome localization", + "Task": "GO", + "Genes": [ + "10015", + "10403", + "10464", + "10540", + "1062", + "1063", + "10726", + "11004", + "113130", + "128866", + "147841", + "151648", + "152185", + "220134", + "221150", + "22919", + "23172", + "23212", + "23636", + "256364", + "25900", + "25978", + "2669", + "27183", + "27243", + "27436", + "283489", + "348235", + "3833", + "3835", + "3837", + "4000", + "51112", + "5119", + "51510", + "51652", + "54820", + "54908", + "54984", + "55143", + "55165", + "55166", + "55201", + "57082", + "57132", + "57405", + "5925", + "6795", + "7756", + "79003", + "79643", + "79998", + "81610", + "81620", + "81929", + "81930", + "83540", + "8452", + "84643", + "84722", + "8678", + "8697", + "8766", + "891", + "91272", + "91782", + "9183", + "9184", + "9212", + "92421", + "9525", + "9928" + ] + }, + "GO:1903076": { + "Name": "regulation of protein localization to plasma membrane", + "Task": "GO", + "Genes": [ + "10268", + "10399", + "10490", + "10519", + "10551", + "10857", + "112609", + "1173", + "131578", + "1445", + "1601", + "163882", + "1739", + "1956", + "1969", + "2042", + "207", + "2181", + "23433", + "245812", + "25921", + "26060", + "26119", + "2633", + "27032", + "27183", + "27237", + "2852", + "29098", + "29801", + "3630", + "367", + "3675", + "3688", + "3799", + "391", + "3958", + "4035", + "4323", + "493", + "51201", + "51548", + "5170", + "54209", + "55022", + "5525", + "55625", + "5581", + "5583", + "56246", + "57628", + "5780", + "598", + "60", + "6248", + "64114", + "65267", + "6711", + "6809", + "6810", + "7040", + "8301", + "8417", + "8500", + "85409", + "8650", + "8673", + "9482", + "9495", + "9528" + ] + }, + "GO:0051701": { + "Name": "biological process involved in interaction with host", + "Task": "GO", + "Genes": [ + "10332", + "11059", + "11060", + "11074", + "128866", + "131578", + "1514", + "156", + "1642", + "185", + "200576", + "2060", + "207", + "219931", + "25978", + "2621", + "27074", + "27183", + "27243", + "2838", + "30835", + "3326", + "3329", + "3383", + "339390", + "3434", + "3643", + "3685", + "3690", + "440400", + "4864", + "5091", + "5119", + "51193", + "51510", + "51652", + "53373", + "5478", + "5481", + "551", + "55223", + "553", + "558", + "57132", + "5819", + "59272", + "6520", + "6609", + "6714", + "6993", + "7251", + "7706", + "7879", + "79643", + "79720", + "83737", + "857", + "858", + "867", + "8673", + "8678", + "8829", + "90861", + "91392", + "91782", + "9218", + "92421", + "949", + "9525", + "9798" + ] + }, + "GO:0035966": { + "Name": "response to topologically incorrect protein", + "Task": "GO", + "Genes": [ + "10013", + "10133", + "10273", + "10488", + "10808", + "11080", + "1191", + "135138", + "1388", + "1491", + "153090", + "1616", + "1649", + "1965", + "201595", + "2081", + "2161", + "22926", + "23071", + "23456", + "23471", + "26353", + "26608", + "267", + "27129", + "27348", + "3297", + "3300", + "3301", + "3303", + "3305", + "3306", + "3309", + "3310", + "3329", + "3336", + "3337", + "3338", + "468", + "4780", + "5071", + "51009", + "51360", + "51768", + "54788", + "54870", + "54956", + "55122", + "55432", + "55658", + "55829", + "5770", + "578", + "581", + "7009", + "7353", + "7415", + "7494", + "79139", + "79871", + "79956", + "80279", + "80311", + "8452", + "857", + "871", + "8720", + "8988", + "91319", + "9217", + "9451", + "9531" + ] + }, + "GO:0002822": { + "Name": "regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains", + "Task": "GO", + "Genes": [ + "10459", + "10666", + "10859", + "10892", + "11006", + "112441434", + "1178", + "1378", + "149233", + "149840", + "1604", + "163486", + "177", + "196", + "2213", + "246778", + "259307", + "29126", + "301", + "3071", + "3077", + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3135", + "3140", + "3329", + "3440", + "3456", + "3553", + "3554", + "3565", + "3592", + "3593", + "3594", + "3606", + "3821", + "3824", + "50943", + "51561", + "54537", + "54795", + "567", + "5817", + "5819", + "6046", + "634", + "6375", + "64170", + "6885", + "695", + "7037", + "7040", + "7158", + "7186", + "7189", + "722", + "725", + "7454", + "7855", + "81545", + "8417", + "8741", + "8809", + "9390", + "941", + "975" + ] + }, + "GO:0051303": { + "Name": "establishment of chromosome localization", + "Task": "GO", + "Genes": [ + "10015", + "10403", + "10464", + "10540", + "1062", + "1063", + "10726", + "11004", + "113130", + "128866", + "147841", + "151648", + "152185", + "220134", + "221150", + "22919", + "23172", + "23212", + "23636", + "256364", + "25978", + "2669", + "27183", + "27243", + "27436", + "283489", + "348235", + "3833", + "3835", + "3837", + "51112", + "5119", + "51510", + "51652", + "54820", + "54908", + "54984", + "55143", + "55165", + "55166", + "55201", + "57082", + "57132", + "57405", + "5925", + "6795", + "7756", + "79003", + "79643", + "79998", + "81610", + "81620", + "81929", + "81930", + "83540", + "8452", + "84643", + "84722", + "8678", + "8697", + "8766", + "891", + "91272", + "91782", + "9183", + "9184", + "9212", + "92421", + "9525", + "9928" + ] + }, + "GO:0045216": { + "Name": "cell-cell junction organization", + "Task": "GO", + "Genes": [ + "1003", + "100506658", + "10052", + "10266", + "10804", + "10979", + "11187", + "125111", + "1365", + "143098", + "143162", + "1436", + "144100", + "1499", + "153562", + "1739", + "1829", + "1894", + "2149", + "2150", + "23396", + "2697", + "2701", + "2702", + "2705", + "2706", + "3728", + "3801", + "387", + "389", + "4088", + "4092", + "4301", + "4868", + "5010", + "5062", + "5175", + "5318", + "55243", + "55765", + "5578", + "5584", + "5586", + "5657", + "57126", + "57662", + "5872", + "60", + "6591", + "6624", + "7040", + "7042", + "7043", + "7082", + "7094", + "71", + "7122", + "7414", + "79977", + "79983", + "83660", + "83700", + "84612", + "8506", + "85302", + "9076", + "90952", + "91663", + "91862", + "9948", + "999" + ] + }, + "GO:0048545": { + "Name": "response to steroid hormone", + "Task": "GO", + "Genes": [ + "10018", + "10062", + "10413", + "10474", + "10521", + "11057", + "11240", + "133522", + "1616", + "1655", + "1667", + "1668", + "2099", + "2100", + "23081", + "23543", + "23558", + "2692", + "2852", + "2908", + "301", + "3192", + "3303", + "3304", + "3312", + "3557", + "3569", + "358", + "3586", + "367", + "4246", + "4734", + "476", + "477", + "4824", + "51366", + "5241", + "5245", + "5458", + "5469", + "55625", + "55809", + "55818", + "5594", + "57178", + "5978", + "677", + "678", + "687", + "7040", + "7042", + "7043", + "7057", + "7110", + "7124", + "728358", + "7332", + "7337", + "7533", + "7538", + "79039", + "811", + "81285", + "8289", + "857", + "8611", + "8644", + "8725", + "92595", + "9325" + ] + }, + "GO:0051310": { + "Name": "metaphase chromosome alignment", + "Task": "GO", + "Genes": [ + "10015", + "10403", + "10464", + "10540", + "1062", + "1063", + "10726", + "11004", + "113130", + "128866", + "147841", + "151648", + "152185", + "220134", + "221150", + "22919", + "23172", + "23212", + "23636", + "256364", + "25978", + "2669", + "27183", + "27243", + "27436", + "283489", + "348235", + "3833", + "3835", + "3837", + "51112", + "5119", + "51510", + "51652", + "54908", + "54984", + "55143", + "55165", + "55166", + "55201", + "57082", + "57132", + "57405", + "5925", + "6795", + "7756", + "79003", + "79643", + "79998", + "81610", + "81620", + "81929", + "81930", + "83540", + "8452", + "84643", + "84722", + "8678", + "8697", + "8766", + "891", + "91272", + "91782", + "9183", + "9184", + "9212", + "92421", + "9525", + "9928" + ] + }, + "GO:0098876": { + "Name": "vesicle-mediated transport to the plasma membrane", + "Task": "GO", + "Genes": [ + "100287171", + "10123", + "10133", + "10139", + "10228", + "10311", + "10564", + "10807", + "10938", + "11031", + "11267", + "143187", + "150684", + "157680", + "2060", + "22853", + "23062", + "23163", + "23339", + "23499", + "253725", + "25837", + "25930", + "26088", + "261729", + "2803", + "288", + "28952", + "30844", + "30845", + "30846", + "382", + "3875", + "50619", + "51125", + "51552", + "51699", + "54520", + "54918", + "55275", + "55610", + "55737", + "55770", + "57020", + "57182", + "582", + "583", + "5872", + "6293", + "64083", + "6711", + "738", + "7879", + "81609", + "81693", + "83871", + "84079", + "84162", + "85377", + "8548", + "8674", + "8675", + "8723", + "9230", + "9559", + "9648", + "9727", + "9784", + "9919" + ] + }, + "GO:0032091": { + "Name": "negative regulation of protein binding", + "Task": "GO", + "Genes": [ + "1026", + "10399", + "10763", + "11315", + "120892", + "129531", + "1454", + "146057", + "147138", + "151651", + "154", + "155", + "1601", + "165904", + "166", + "1663", + "207", + "22943", + "23028", + "23032", + "24144", + "255738", + "2801", + "2962", + "3077", + "3078", + "3080", + "3300", + "3433", + "3434", + "3586", + "3676", + "4043", + "409", + "488", + "489", + "51339", + "5155", + "5195", + "5300", + "54552", + "5580", + "5599", + "567", + "56998", + "5792", + "581", + "5899", + "59082", + "6093", + "6590", + "6790", + "6815", + "7009", + "80011", + "81494", + "8189", + "84630", + "8536", + "8751", + "9212", + "9241", + "9270", + "9370", + "9532" + ] + }, + "GO:0006887": { + "Name": "exocytosis", + "Task": "GO", + "Genes": [ + "100287171", + "100431172", + "1020", + "10244", + "10257", + "10490", + "10497", + "10565", + "10652", + "10814", + "10815", + "10890", + "10987", + "11031", + "1113", + "11151", + "117194", + "1230", + "1393", + "148281", + "149371", + "153339", + "2205", + "22999", + "23396", + "23557", + "25837", + "26154", + "261729", + "3055", + "306", + "375056", + "3815", + "387695", + "4218", + "4627", + "4905", + "5286", + "5293", + "5294", + "5413", + "54843", + "55770", + "56900", + "57393", + "57829", + "5864", + "5873", + "60684", + "6348", + "6355", + "6616", + "6622", + "6804", + "6812", + "6844", + "6845", + "80331", + "84522", + "84958", + "8673", + "8766", + "8773", + "9230", + "9341" + ] + }, + "GO:0031341": { + "Name": "regulation of cell killing", + "Task": "GO", + "Genes": [ + "100507436", + "10125", + "10666", + "10859", + "11126", + "114836", + "135250", + "1378", + "1379", + "146850", + "1604", + "164", + "177", + "2150", + "2208", + "2213", + "22914", + "23705", + "259197", + "3071", + "3075", + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3135", + "3140", + "3383", + "3458", + "3565", + "3586", + "3589", + "3592", + "3593", + "3596", + "3805", + "3821", + "3822", + "3824", + "383", + "387837", + "3916", + "3952", + "3965", + "409", + "4843", + "5272", + "5551", + "5599", + "56253", + "5817", + "5819", + "59067", + "6318", + "634", + "6375", + "64581", + "6850", + "7040", + "7042", + "8417", + "9390", + "9437", + "966" + ] + }, + "GO:0090263": { + "Name": "positive regulation of canonical Wnt signaling pathway", + "Task": "GO", + "Genes": [ + "1001", + "10023", + "10159", + "120892", + "1277", + "130612", + "139285", + "1453", + "1613", + "1654", + "1950", + "1956", + "23189", + "252839", + "25805", + "27123", + "2719", + "284654", + "3087", + "331", + "3611", + "3728", + "441478", + "4790", + "51339", + "51366", + "51527", + "5300", + "54795", + "5494", + "54994", + "55031", + "55182", + "55366", + "5754", + "57664", + "57805", + "6206", + "6422", + "6424", + "64750", + "65125", + "65268", + "65981", + "6907", + "7040", + "7415", + "79705", + "79718", + "79971", + "80351", + "81847", + "8549", + "8607", + "8629", + "8658", + "8796", + "89780", + "9101", + "9679", + "9736", + "9839" + ] + }, + "GO:1901874": { + "Name": "negative regulation of post-translational protein modification", + "Task": "GO", + "Genes": [ + "10196", + "10253", + "10401", + "10459", + "10491", + "10625", + "11315", + "11338", + "123879", + "1499", + "151636", + "153769", + "207", + "23251", + "23376", + "23560", + "25", + "26271", + "266740", + "3301", + "3303", + "3304", + "339745", + "374969", + "3984", + "408", + "4085", + "409", + "4092", + "4101", + "51035", + "51160", + "51547", + "54552", + "54765", + "5478", + "54984", + "5582", + "55869", + "59343", + "6125", + "6135", + "6188", + "6201", + "64175", + "64844", + "65125", + "6659", + "6737", + "6872", + "7128", + "7375", + "819", + "825", + "84101", + "8473", + "84875", + "857", + "8878", + "9349", + "9529", + "9532", + "9636" + ] + }, + "GO:0042147": { + "Name": "retrograde transport, endosome to Golgi", + "Task": "GO", + "Genes": [ + "100287171", + "10139", + "10228", + "10652", + "143187", + "144717", + "150368", + "1639", + "200576", + "22836", + "23074", + "23258", + "253725", + "25963", + "26000", + "26088", + "27131", + "27147", + "29886", + "30845", + "338382", + "374403", + "3998", + "400", + "51272", + "51479", + "51542", + "54551", + "54732", + "55275", + "55610", + "55658", + "55737", + "55773", + "57533", + "57589", + "58533", + "5870", + "5987", + "63893", + "64145", + "6642", + "6643", + "6811", + "6836", + "738", + "7813", + "7879", + "79735", + "8218", + "83874", + "84910", + "8675", + "8677", + "8729", + "8934", + "8938", + "9043", + "9341", + "9527", + "9559", + "9648", + "9779", + "9827", + "9905" + ] + }, + "GO:1903531": { + "Name": "negative regulation of secretion by cell", + "Task": "GO", + "Genes": [ + "10079", + "10859", + "10961", + "1113", + "11141", + "11314", + "131177", + "1393", + "150", + "151", + "152", + "1813", + "1814", + "1815", + "2213", + "23208", + "23409", + "25953", + "26056", + "26297", + "2697", + "285381", + "29091", + "301", + "3071", + "3134", + "348", + "353500", + "3589", + "3592", + "3593", + "3625", + "3630", + "3667", + "3767", + "3965", + "3976", + "4345", + "4988", + "5008", + "5071", + "5978", + "634", + "64111", + "6422", + "64285", + "6622", + "6814", + "6860", + "7879", + "80223", + "83452", + "84830", + "8609", + "8673", + "8832", + "91543", + "9341", + "9525", + "9727" + ] + }, + "GO:0051224": { + "Name": "negative regulation of protein transport", + "Task": "GO", + "Genes": [ + "10956", + "10961", + "11060", + "11261", + "11315", + "131177", + "1445", + "150", + "1813", + "1814", + "1815", + "23409", + "258010", + "26056", + "26297", + "27248", + "285381", + "29934", + "337867", + "347", + "348", + "353500", + "3592", + "3593", + "3630", + "3638", + "3667", + "3767", + "4345", + "4988", + "5071", + "51009", + "51465", + "51569", + "51684", + "51715", + "55432", + "580", + "5905", + "5978", + "6248", + "6422", + "64285", + "6672", + "7327", + "7341", + "80223", + "80762", + "84830", + "8609", + "8724", + "91319", + "91543", + "9370", + "9647", + "9727" + ] + }, + "GO:1901992": { + "Name": "positive regulation of mitotic cell cycle phase transition", + "Task": "GO", + "Genes": [ + "1019", + "11065", + "113130", + "11331", + "118471", + "134353", + "163786", + "1654", + "1956", + "1981", + "199", + "207", + "219736", + "2255", + "23276", + "23476", + "255374", + "26057", + "26271", + "286053", + "28984", + "3373", + "50484", + "51514", + "51529", + "51692", + "55835", + "55904", + "55920", + "57521", + "5889", + "5890", + "5925", + "595", + "6240", + "6241", + "6491", + "6868", + "7027", + "7325", + "80174", + "8317", + "8452", + "84967", + "8558", + "8766", + "891", + "894", + "9510", + "9525", + "9587", + "983", + "990", + "991", + "993", + "994" + ] + }, + "GO:0002705": { + "Name": "positive regulation of leukocyte mediated immunity", + "Task": "GO", + "Genes": [ + "10125", + "10459", + "10666", + "10892", + "11126", + "112441434", + "114836", + "135250", + "149840", + "1604", + "163486", + "164", + "2150", + "22914", + "23705", + "259197", + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3135", + "3140", + "3329", + "353091", + "3553", + "3554", + "3565", + "3592", + "3593", + "3606", + "3684", + "3689", + "3805", + "3822", + "3824", + "383", + "3916", + "4843", + "54537", + "56253", + "567", + "57126", + "5817", + "5819", + "59067", + "6375", + "6810", + "6885", + "7037", + "7040", + "7158", + "7186", + "7189", + "7855", + "814", + "81545", + "8417", + "8741", + "8809", + "9390", + "975" + ] + }, + "GO:0010389": { + "Name": "regulation of G2/M transition of mitotic cell cycle", + "Task": "GO", + "Genes": [ + "1019", + "1026", + "1063", + "1111", + "1112", + "116224", + "219736", + "2273", + "23476", + "26271", + "27133", + "27183", + "29086", + "29980", + "29997", + "4683", + "472", + "50484", + "51149", + "51343", + "51347", + "51514", + "51720", + "5347", + "55031", + "55743", + "55920", + "56658", + "57551", + "58493", + "5889", + "5890", + "595", + "5988", + "60561", + "6240", + "63967", + "641", + "64859", + "65123", + "672", + "6790", + "7465", + "79035", + "79184", + "80174", + "80279", + "8317", + "84142", + "84446", + "84936", + "8555", + "8766", + "8883", + "891", + "9088", + "92421", + "9344", + "9525", + "9577", + "983", + "9928", + "993", + "994" + ] + }, + "GO:0043406": { + "Name": "positive regulation of MAP kinase activity", + "Task": "GO", + "Genes": [ + "100133941", + "10125", + "10961", + "11235", + "120892", + "146433", + "148252", + "150", + "152110", + "153090", + "1815", + "1856", + "1906", + "1908", + "1950", + "1956", + "2064", + "2081", + "2146", + "2246", + "2247", + "2260", + "2321", + "2322", + "23328", + "255324", + "2688", + "3265", + "3357", + "3553", + "3643", + "4216", + "4217", + "4294", + "4296", + "4486", + "4908", + "5058", + "51347", + "5154", + "5155", + "5294", + "54769", + "5871", + "6091", + "6188", + "6283", + "6885", + "6997", + "7057", + "7124", + "7164", + "7186", + "7189", + "7474", + "7984", + "8600", + "8754", + "8792", + "8817", + "958" + ] + }, + "GO:1903321": { + "Name": "negative regulation of protein modification by small protein conjugation or removal", + "Task": "GO", + "Genes": [ + "10196", + "10253", + "10401", + "10459", + "10625", + "11315", + "11338", + "123879", + "1499", + "151636", + "153769", + "207", + "23251", + "23376", + "23560", + "25", + "26271", + "266740", + "3301", + "3303", + "3304", + "339745", + "374969", + "3984", + "408", + "4085", + "409", + "4092", + "4101", + "51035", + "51160", + "51547", + "54552", + "54765", + "5478", + "54984", + "5582", + "55869", + "59343", + "6125", + "6135", + "6188", + "6201", + "64844", + "65125", + "6659", + "6737", + "6872", + "7128", + "7375", + "819", + "825", + "84101", + "8473", + "84875", + "857", + "8878", + "9349", + "9529", + "9532", + "9636" + ] + }, + "GO:0045824": { + "Name": "negative regulation of innate immune response", + "Task": "GO", + "Genes": [ + "100507436", + "10859", + "11274", + "11277", + "11326", + "1378", + "142", + "147945", + "149095", + "2", + "23170", + "23220", + "25939", + "26058", + "2896", + "29883", + "3105", + "3106", + "3133", + "3134", + "3135", + "3428", + "3630", + "3805", + "3821", + "3824", + "383", + "387837", + "3965", + "401397", + "409", + "4938", + "4940", + "51441", + "5272", + "54625", + "5468", + "55646", + "56339", + "57506", + "5771", + "58509", + "60343", + "6223", + "6318", + "634", + "6737", + "6773", + "7040", + "710", + "7534", + "79132", + "79594", + "84166", + "84243", + "84640", + "8815", + "9111", + "9212", + "9470", + "9636", + "9958" + ] + }, + "GO:1902117": { + "Name": "positive regulation of organelle assembly", + "Task": "GO", + "Genes": [ + "10015", + "10146", + "10615", + "10733", + "10801", + "10807", + "11152", + "112574", + "1437", + "153241", + "158297", + "163786", + "1778", + "202018", + "221908", + "22930", + "23019", + "23130", + "23636", + "246175", + "25782", + "29899", + "3064", + "3567", + "3936", + "401548", + "4076", + "4848", + "4926", + "49856", + "51100", + "51375", + "5305", + "53407", + "55062", + "55704", + "55835", + "57472", + "57535", + "57787", + "5899", + "6382", + "6385", + "6386", + "64112", + "6491", + "6624", + "7124", + "79734", + "79837", + "80199", + "8100", + "822", + "8396", + "85459", + "8723", + "90410", + "90678", + "9525", + "9662", + "9696", + "989", + "9898", + "9908" + ] + }, + "GO:0097529": { + "Name": "myeloid leukocyte migration", + "Task": "GO", + "Genes": [ + "10344", + "1113", + "120425", + "1236", + "140596", + "1511", + "1525", + "1906", + "1907", + "1908", + "1910", + "200576", + "2321", + "23396", + "2350", + "301", + "3071", + "30817", + "3569", + "3570", + "3576", + "3579", + "3689", + "3815", + "3958", + "503618", + "51135", + "51192", + "5155", + "5175", + "5293", + "5294", + "5478", + "5479", + "5657", + "57126", + "5800", + "6223", + "6279", + "6280", + "6283", + "6288", + "6347", + "6348", + "6354", + "6356", + "6357", + "6363", + "6368", + "6369", + "6372", + "6375", + "6441", + "682", + "6850", + "692094", + "7369", + "7857", + "796", + "83700", + "8600", + "8729" + ] + }, + "GO:0008360": { + "Name": "regulation of cell shape", + "Task": "GO", + "Genes": [ + "10395", + "10435", + "10507", + "10810", + "11135", + "116985", + "1398", + "1436", + "148170", + "161176", + "1690", + "1729", + "1739", + "2039", + "2185", + "221061", + "2242", + "226", + "23268", + "23370", + "23580", + "254065", + "25805", + "29780", + "30011", + "301", + "3055", + "3249", + "374872", + "3791", + "4478", + "4627", + "4651", + "5028", + "50848", + "5364", + "54014", + "55171", + "55660", + "55843", + "57464", + "5747", + "57471", + "58480", + "5962", + "6347", + "6348", + "6354", + "6356", + "6357", + "6369", + "7168", + "7429", + "7430", + "752", + "755", + "8994", + "91010", + "9344", + "93663", + "9368" + ] + }, + "GO:2000060": { + "Name": "positive regulation of ubiquitin-dependent protein catabolic process", + "Task": "GO", + "Genes": [ + "10134", + "10273", + "10399", + "10444", + "1050", + "11236", + "11337", + "116224", + "1191", + "1263", + "144165", + "1452", + "149628", + "153769", + "1601", + "1855", + "207", + "22933", + "23640", + "25898", + "28952", + "2931", + "2932", + "29997", + "3300", + "3303", + "4092", + "4193", + "4287", + "4780", + "5071", + "51548", + "51667", + "5347", + "55070", + "55212", + "55294", + "57154", + "5716", + "5728", + "5886", + "5988", + "64110", + "64326", + "6449", + "65992", + "6613", + "6872", + "7041", + "7341", + "7415", + "79699", + "80279", + "8078", + "84231", + "84456", + "8517", + "85409", + "863", + "9655", + "9709", + "9817", + "9978" + ] + }, + "GO:0000910": { + "Name": "cytokinesis", + "Task": "GO", + "Genes": [ + "10015", + "10112", + "1058", + "10617", + "10899", + "11021", + "11113", + "112574", + "11258", + "114327", + "116840", + "128866", + "129531", + "1894", + "200942", + "23157", + "24137", + "257364", + "25978", + "26586", + "27183", + "27243", + "285643", + "288", + "29127", + "311", + "324", + "3619", + "387", + "388", + "389", + "3925", + "403", + "4627", + "4628", + "5119", + "51203", + "51429", + "51510", + "51652", + "5347", + "54443", + "54784", + "54902", + "55165", + "55521", + "57132", + "585", + "6651", + "6683", + "6711", + "79643", + "9094", + "9101", + "91782", + "9212", + "92421", + "9493", + "9525", + "9798" + ] + }, + "GO:1904892": { + "Name": "regulation of receptor signaling pathway via STAT", + "Task": "GO", + "Genes": [ + "10019", + "10464", + "11122", + "128869", + "2033", + "2066", + "2185", + "22876", + "2688", + "282618", + "3565", + "3569", + "3575", + "3586", + "3587", + "3588", + "3717", + "3718", + "3815", + "387837", + "388646", + "3952", + "4249", + "4771", + "51094", + "51379", + "54625", + "5468", + "54741", + "55801", + "55835", + "5617", + "5618", + "57599", + "5771", + "5788", + "602", + "7040", + "7297", + "7398", + "7428", + "815", + "84444", + "85480", + "8651", + "9021", + "9146" + ] + }, + "GO:0010469": { + "Name": "regulation of signaling receptor activity", + "Task": "GO", + "Genes": [ + "10013", + "10268", + "1081", + "11006", + "11315", + "122809", + "1392", + "1393", + "149111", + "150", + "151", + "152", + "154", + "1906", + "2213", + "22871", + "23624", + "2488", + "254263", + "255324", + "255738", + "27092", + "3065", + "3066", + "3077", + "3091", + "351", + "3586", + "387837", + "399968", + "432355", + "5054", + "5328", + "54206", + "5465", + "5468", + "55294", + "5580", + "57732", + "59272", + "59283", + "59284", + "653361", + "66004", + "6868", + "6872", + "7124", + "7251", + "79643", + "8000", + "81573", + "81832", + "8202", + "823", + "84313", + "84619", + "859", + "8829", + "8896", + "9241", + "9655" + ] + }, + "GO:0006986": { + "Name": "response to unfolded protein", + "Task": "GO", + "Genes": [ + "10133", + "10488", + "10808", + "11080", + "135138", + "1388", + "1491", + "153090", + "1616", + "1649", + "1965", + "201595", + "2081", + "22926", + "23071", + "23456", + "23471", + "26353", + "26608", + "267", + "27129", + "27348", + "3297", + "3300", + "3301", + "3303", + "3305", + "3306", + "3309", + "3310", + "3329", + "3336", + "3337", + "3338", + "468", + "4780", + "5071", + "51009", + "51360", + "51768", + "54870", + "54956", + "55432", + "55829", + "5770", + "578", + "581", + "7009", + "7415", + "7494", + "79139", + "79871", + "79956", + "80279", + "871", + "8720", + "8988", + "91319", + "9217", + "9451", + "9531" + ] + }, + "GO:2001237": { + "Name": "negative regulation of extrinsic apoptotic signaling pathway", + "Task": "GO", + "Genes": [ + "10197", + "10771", + "11315", + "117584", + "1437", + "1654", + "207", + "219699", + "2243", + "2244", + "2266", + "23017", + "246330", + "2537", + "2623", + "2668", + "2932", + "2950", + "3064", + "3162", + "3303", + "3304", + "3383", + "3479", + "3552", + "3553", + "3655", + "367", + "3685", + "3958", + "4170", + "5054", + "5196", + "55023", + "5598", + "57448", + "57630", + "596", + "5970", + "598", + "64114", + "6478", + "6714", + "672", + "7015", + "7046", + "7057", + "7124", + "7128", + "7857", + "80196", + "8682", + "8737", + "8837", + "8996", + "90" + ] + }, + "GO:0061025": { + "Name": "membrane fusion", + "Task": "GO", + "Genes": [ + "10043", + "10059", + "10228", + "10490", + "124912", + "1514", + "167", + "200576", + "23339", + "23355", + "23400", + "2515", + "25801", + "25978", + "2621", + "26276", + "27072", + "27183", + "284359", + "29091", + "4033", + "4218", + "4905", + "51479", + "51652", + "54734", + "54809", + "55647", + "55823", + "57151", + "57393", + "57531", + "5819", + "5877", + "662", + "6622", + "6809", + "6812", + "6844", + "6845", + "7879", + "80183", + "83871", + "8411", + "85409", + "858", + "8674", + "8676", + "8692", + "8773", + "8774", + "8775", + "9135", + "9218", + "928", + "9341", + "9342", + "9381", + "9392", + "9842" + ] + }, + "GO:0016239": { + "Name": "positive regulation of macroautophagy", + "Task": "GO", + "Genes": [ + "10043", + "10133", + "10206", + "10241", + "10558", + "11152", + "112574", + "140775", + "1457", + "154", + "1634", + "203228", + "22930", + "23130", + "23367", + "23411", + "25782", + "25793", + "26086", + "26353", + "2773", + "285180", + "29110", + "3064", + "340061", + "345611", + "3791", + "401548", + "5049", + "5071", + "51100", + "51322", + "51375", + "5305", + "55062", + "55072", + "55187", + "55626", + "5563", + "57535", + "5899", + "60592", + "64112", + "65018", + "664", + "665", + "6829", + "7249", + "7405", + "7416", + "79443", + "7957", + "79837", + "83667", + "8396", + "8723", + "90070", + "90678", + "9517", + "9531" + ] + }, + "GO:0061640": { + "Name": "cytoskeleton-dependent cytokinesis", + "Task": "GO", + "Genes": [ + "10015", + "10112", + "1058", + "10617", + "10899", + "11021", + "11113", + "112574", + "11258", + "114327", + "116840", + "128866", + "129531", + "1894", + "200942", + "23157", + "24137", + "257364", + "25978", + "26586", + "27183", + "27243", + "285643", + "288", + "29127", + "324", + "3619", + "387", + "388", + "389", + "3925", + "403", + "4628", + "5119", + "51203", + "51429", + "51510", + "51652", + "5347", + "54443", + "54784", + "54902", + "55165", + "55521", + "57132", + "585", + "6651", + "6683", + "6711", + "79643", + "9094", + "9101", + "91782", + "9212", + "92421", + "9493", + "9525", + "9798" + ] + }, + "GO:0042102": { + "Name": "positive regulation of T cell proliferation", + "Task": "GO", + "Genes": [ + "100133941", + "10148", + "10288", + "11148", + "126259", + "149233", + "1604", + "177", + "199", + "23308", + "29126", + "301", + "3071", + "30835", + "3105", + "3109", + "3113", + "3115", + "3133", + "3146", + "3479", + "3481", + "3485", + "3553", + "3558", + "3569", + "3572", + "3593", + "3594", + "3606", + "3717", + "3952", + "3965", + "4179", + "4690", + "4860", + "51561", + "57829", + "59067", + "6188", + "6375", + "64926", + "6541", + "7037", + "7048", + "7297", + "7412", + "80381", + "8440", + "912", + "916", + "923", + "940", + "959", + "970", + "975" + ] + }, + "GO:0018212": { + "Name": "peptidyl-tyrosine modification", + "Task": "GO", + "Genes": [ + "10152", + "10464", + "1436", + "1956", + "2041", + "2042", + "2043", + "2064", + "2066", + "2185", + "2202", + "2241", + "2242", + "2260", + "2263", + "2264", + "2268", + "2321", + "2322", + "2324", + "238", + "25", + "2534", + "27", + "3055", + "3480", + "3565", + "3600", + "3643", + "3718", + "3791", + "4058", + "4067", + "4914", + "4921", + "51225", + "5155", + "5156", + "5159", + "5595", + "5618", + "5747", + "5753", + "5777", + "59067", + "640", + "6714", + "6725", + "6850", + "695", + "7535", + "780", + "8459", + "8460", + "84630", + "91461" + ] + }, + "GO:0071383": { + "Name": "cellular response to steroid hormone stimulus", + "Task": "GO", + "Genes": [ + "10018", + "10413", + "10474", + "10521", + "11057", + "11240", + "133522", + "1616", + "1655", + "1667", + "1668", + "2099", + "2100", + "23081", + "23543", + "23558", + "2852", + "2908", + "301", + "3192", + "3303", + "3304", + "3312", + "358", + "367", + "4246", + "4734", + "476", + "477", + "4824", + "51366", + "5241", + "5245", + "5458", + "5469", + "55625", + "55809", + "55818", + "5594", + "57178", + "5978", + "677", + "678", + "687", + "7110", + "728358", + "7332", + "7337", + "7533", + "7538", + "79039", + "811", + "81285", + "8289", + "8611", + "8644", + "8725", + "92595", + "9325" + ] + }, + "GO:0019882": { + "Name": "antigen processing and presentation", + "Task": "GO", + "Genes": [ + "10437", + "10890", + "10981", + "11021", + "115827", + "1509", + "1510", + "1512", + "1514", + "1515", + "1520", + "1636", + "1785", + "200576", + "2208", + "23457", + "2923", + "3077", + "3105", + "3106", + "3107", + "3108", + "3109", + "3113", + "3115", + "3119", + "3122", + "3123", + "3133", + "3134", + "3135", + "3140", + "3416", + "3551", + "4012", + "50856", + "51128", + "51752", + "51762", + "55016", + "55080", + "5641", + "567", + "5865", + "5867", + "5869", + "5870", + "5873", + "64167", + "6890", + "6891", + "6892", + "811", + "83871", + "8722", + "912", + "9363" + ] + }, + "GO:0002250": { + "Name": "adaptive immune response", + "Task": "GO", + "Genes": [ + "100507436", + "10068", + "10148", + "10384", + "10411", + "11069", + "11118", + "114836", + "182", + "2205", + "2208", + "2209", + "23108", + "23705", + "3105", + "3123", + "3133", + "3135", + "3146", + "3329", + "3593", + "3606", + "3716", + "4063", + "4179", + "51311", + "5245", + "5293", + "5294", + "56253", + "5678", + "5909", + "60468", + "64170", + "6494", + "6693", + "6774", + "6775", + "695", + "712", + "714", + "715", + "7535", + "84174", + "8792", + "8915", + "9021", + "930", + "970", + "975" + ] + }, + "GO:0031397": { + "Name": "negative regulation of protein ubiquitination", + "Task": "GO", + "Genes": [ + "10196", + "10253", + "10459", + "10625", + "11315", + "11338", + "151636", + "153769", + "207", + "23251", + "23376", + "23560", + "25", + "26271", + "3301", + "3303", + "3304", + "339745", + "374969", + "3984", + "408", + "4085", + "409", + "4092", + "51035", + "51160", + "51547", + "54552", + "54765", + "5478", + "54984", + "5582", + "55869", + "59343", + "6125", + "6135", + "6188", + "6201", + "64844", + "65125", + "6659", + "6872", + "7128", + "7375", + "819", + "84101", + "8473", + "84875", + "857", + "8878", + "9349", + "9529", + "9532", + "9636" + ] + }, + "GO:0002708": { + "Name": "positive regulation of lymphocyte mediated immunity", + "Task": "GO", + "Genes": [ + "10125", + "10459", + "10666", + "10892", + "11126", + "112441434", + "114836", + "135250", + "149840", + "1604", + "163486", + "164", + "22914", + "23705", + "259197", + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3135", + "3140", + "3329", + "353091", + "3553", + "3554", + "3565", + "3592", + "3593", + "3606", + "3805", + "3822", + "3824", + "3916", + "54537", + "56253", + "567", + "5817", + "5819", + "59067", + "6375", + "6885", + "7037", + "7040", + "7158", + "7186", + "7189", + "7855", + "81545", + "8417", + "8741", + "8809", + "9390", + "975" + ] + }, + "GO:0018108": { + "Name": "peptidyl-tyrosine phosphorylation", + "Task": "GO", + "Genes": [ + "10152", + "10464", + "1436", + "1956", + "2041", + "2042", + "2043", + "2064", + "2066", + "2185", + "2202", + "2241", + "2242", + "2260", + "2263", + "2264", + "2268", + "2321", + "2322", + "2324", + "238", + "25", + "2534", + "27", + "3055", + "3480", + "3565", + "3600", + "3643", + "3718", + "3791", + "4058", + "4067", + "4914", + "4921", + "51225", + "5155", + "5156", + "5159", + "5595", + "5618", + "5747", + "5753", + "5777", + "59067", + "640", + "6714", + "6725", + "6850", + "695", + "7535", + "780", + "84630", + "91461" + ] + }, + "GO:0006892": { + "Name": "post-Golgi vesicle-mediated transport", + "Task": "GO", + "Genes": [ + "10066", + "10067", + "10133", + "10139", + "10564", + "10640", + "11031", + "1201", + "150684", + "164", + "1785", + "2060", + "23062", + "23163", + "23499", + "2580", + "25837", + "26088", + "261729", + "27252", + "2803", + "288", + "28952", + "30845", + "3875", + "3916", + "403", + "4430", + "4644", + "51125", + "51479", + "51552", + "54520", + "54832", + "55062", + "55297", + "55435", + "55770", + "57020", + "582", + "583", + "6102", + "6272", + "64083", + "64145", + "6653", + "6711", + "79585", + "81693", + "83871", + "8548", + "8729", + "8773", + "9179", + "9522", + "9648", + "9919" + ] + }, + "GO:0007009": { + "Name": "plasma membrane organization", + "Task": "GO", + "Genes": [ + "10211", + "11252", + "116238", + "1191", + "123720", + "124912", + "128866", + "1289", + "1378", + "167", + "196527", + "2054", + "2515", + "257364", + "25978", + "27230", + "27243", + "274", + "284359", + "288", + "29763", + "29993", + "4627", + "4905", + "5027", + "5119", + "51429", + "51510", + "51652", + "5359", + "53947", + "54874", + "55113", + "57132", + "57151", + "5864", + "6609", + "6711", + "6810", + "727910", + "79643", + "81035", + "8436", + "85377", + "8560", + "857", + "858", + "859", + "91782", + "92421", + "928", + "94121", + "9885" + ] + }, + "GO:0080171": { + "Name": "lytic vacuole organization", + "Task": "GO", + "Genes": [ + "10159", + "11151", + "1201", + "120892", + "147007", + "19", + "200576", + "219931", + "23120", + "23503", + "2475", + "252839", + "2548", + "25978", + "26175", + "2629", + "2896", + "29911", + "3257", + "3916", + "3920", + "411", + "4647", + "4948", + "51151", + "51172", + "51361", + "51652", + "523", + "5298", + "54734", + "54982", + "55353", + "5538", + "55647", + "55858", + "57617", + "64400", + "65082", + "7030", + "7805", + "7879", + "79158", + "7942", + "80208", + "80231", + "80317", + "83871", + "84067", + "84286", + "84317", + "84376", + "8720", + "89781" + ] + }, + "GO:0071674": { + "Name": "mononuclear cell migration", + "Task": "GO", + "Genes": [ + "10344", + "10563", + "120425", + "1230", + "1234", + "1235", + "1236", + "140596", + "1511", + "1667", + "1907", + "1910", + "2321", + "2350", + "2621", + "2625", + "30009", + "301", + "3569", + "3570", + "3577", + "3579", + "3627", + "3683", + "387695", + "3958", + "4478", + "503618", + "50848", + "51192", + "5155", + "5175", + "5293", + "5294", + "5800", + "6223", + "6283", + "6288", + "6347", + "6348", + "6354", + "6363", + "6366", + "6368", + "6373", + "6375", + "6441", + "6558", + "692094", + "728358", + "7535", + "7852", + "796", + "8600" + ] + }, + "GO:0051865": { + "Name": "protein autoubiquitination", + "Task": "GO", + "Genes": [ + "10193", + "10206", + "10273", + "11060", + "115426", + "1161", + "127544", + "138065", + "149603", + "151636", + "153769", + "1643", + "267", + "26994", + "27246", + "29089", + "29128", + "344558", + "4193", + "4591", + "4799", + "4850", + "5071", + "50862", + "51127", + "51136", + "51255", + "51283", + "54546", + "54708", + "54800", + "55128", + "56852", + "57630", + "57674", + "672", + "6737", + "7186", + "7189", + "727800", + "7320", + "7322", + "7323", + "7337", + "79596", + "79845", + "81559", + "81847", + "83737", + "8452", + "84851", + "90025", + "9025", + "90678", + "91445", + "9921" + ] + }, + "GO:0007040": { + "Name": "lysosome organization", + "Task": "GO", + "Genes": [ + "10159", + "11151", + "1201", + "120892", + "147007", + "19", + "200576", + "219931", + "23120", + "23503", + "2475", + "252839", + "2548", + "25978", + "26175", + "2629", + "2896", + "29911", + "3257", + "3916", + "3920", + "411", + "4647", + "4948", + "51151", + "51172", + "51361", + "51652", + "523", + "5298", + "54734", + "54982", + "55353", + "5538", + "55647", + "55858", + "57617", + "64400", + "65082", + "7030", + "7805", + "7879", + "79158", + "7942", + "80208", + "80231", + "80317", + "83871", + "84067", + "84286", + "84317", + "84376", + "8720", + "89781" + ] + }, + "GO:0000281": { + "Name": "mitotic cytokinesis", + "Task": "GO", + "Genes": [ + "10015", + "10112", + "1058", + "10617", + "10899", + "11021", + "11113", + "112574", + "114327", + "116840", + "128866", + "129531", + "1894", + "200942", + "23157", + "24137", + "257364", + "25978", + "26586", + "27183", + "27243", + "285643", + "288", + "29127", + "324", + "3619", + "387", + "388", + "389", + "3925", + "403", + "4628", + "5119", + "51203", + "51429", + "51510", + "51652", + "5347", + "54443", + "54902", + "55165", + "55521", + "57132", + "585", + "6651", + "6683", + "6711", + "79643", + "9094", + "9101", + "91782", + "92421", + "9493", + "9525" + ] + }, + "GO:0048284": { + "Name": "organelle fusion", + "Task": "GO", + "Genes": [ + "10043", + "10228", + "1149", + "125170", + "200576", + "201164", + "23339", + "23355", + "23400", + "25978", + "27072", + "27141", + "27183", + "29091", + "374986", + "4033", + "4218", + "4832", + "4976", + "51024", + "51479", + "51652", + "54332", + "54471", + "54734", + "54809", + "54927", + "54974", + "55647", + "55669", + "55823", + "56947", + "57393", + "581", + "63924", + "662", + "6622", + "6809", + "6810", + "6812", + "6844", + "6845", + "7879", + "80183", + "81554", + "83871", + "8411", + "84895", + "85409", + "858", + "8674", + "9392", + "983", + "9842", + "9927" + ] + }, + "GO:0002702": { + "Name": "positive regulation of production of molecular mediator of immune response", + "Task": "GO", + "Genes": [ + "10459", + "10859", + "10892", + "11126", + "112441434", + "117854", + "144811", + "149840", + "1604", + "163486", + "2048", + "2150", + "25818", + "2821", + "3105", + "3133", + "3134", + "3135", + "353091", + "354", + "3553", + "3554", + "3558", + "3565", + "3569", + "3586", + "3606", + "3663", + "3805", + "3815", + "51744", + "5225", + "54106", + "54537", + "55765", + "5650", + "567", + "5788", + "6375", + "64127", + "6810", + "6885", + "7037", + "7040", + "7158", + "7186", + "7189", + "7474", + "7494", + "7855", + "814", + "8140", + "8741", + "8809", + "9341", + "975" + ] + }, + "GO:0060191": { + "Name": "regulation of lipase activity", + "Task": "GO", + "Genes": [ + "10062", + "10125", + "116519", + "185", + "1902", + "1909", + "1956", + "2260", + "2261", + "2263", + "2321", + "25", + "27", + "27329", + "2769", + "2776", + "283", + "3265", + "3356", + "3357", + "336", + "337", + "338328", + "341", + "344", + "345", + "350", + "3815", + "387", + "389", + "5031", + "51129", + "5156", + "5159", + "5170", + "5319", + "5322", + "5330", + "5406", + "552", + "553", + "5741", + "6272", + "6401", + "653145", + "6622", + "728", + "7376", + "8698", + "9170", + "9290", + "9373" + ] + }, + "GO:0031110": { + "Name": "regulation of microtubule polymerization or depolymerization", + "Task": "GO", + "Genes": [ + "1003", + "10142", + "10300", + "10382", + "10519", + "10634", + "11075", + "146057", + "157922", + "1639", + "220134", + "221150", + "2242", + "22919", + "22924", + "22974", + "23122", + "23271", + "23332", + "24139", + "246176", + "25", + "25999", + "28964", + "29922", + "324", + "3303", + "3304", + "348235", + "3925", + "402", + "4133", + "4137", + "4204", + "4233", + "4733", + "4926", + "5058", + "55755", + "57551", + "57606", + "57662", + "58497", + "5879", + "6188", + "6249", + "6314", + "6622", + "6904", + "79998", + "8874", + "89795", + "9181", + "9793" + ] + }, + "GO:2000351": { + "Name": "regulation of endothelial cell apoptotic process", + "Task": "GO", + "Genes": [ + "1003", + "10266", + "10298", + "11126", + "196527", + "2243", + "2244", + "2266", + "2621", + "2624", + "2625", + "27250", + "284", + "28984", + "3135", + "3383", + "356", + "3565", + "3586", + "3589", + "3596", + "3676", + "3791", + "4780", + "5054", + "5170", + "5335", + "5584", + "5598", + "6347", + "641700", + "7010", + "7040", + "7057", + "7124", + "7128", + "7857", + "79155", + "79625", + "8644", + "889", + "958", + "959" + ] + }, + "GO:0002698": { + "Name": "negative regulation of immune effector process", + "Task": "GO", + "Genes": [ + "100507436", + "10859", + "11006", + "11314", + "11326", + "115352", + "1378", + "1604", + "196", + "2", + "2213", + "259307", + "282618", + "2896", + "301", + "3071", + "3077", + "3105", + "3106", + "3133", + "3134", + "3135", + "335", + "336", + "3440", + "3456", + "3586", + "3630", + "3805", + "3821", + "3824", + "387837", + "3965", + "409", + "50943", + "5272", + "6223", + "6318", + "634", + "6375", + "684", + "7040", + "7042", + "7043", + "710", + "7124", + "722", + "725", + "79004", + "84868", + "8832", + "941" + ] + }, + "GO:0097191": { + "Name": "extrinsic apoptotic signaling pathway", + "Task": "GO", + "Genes": [ + "10193", + "10519", + "10572", + "10962", + "11337", + "153090", + "1616", + "162989", + "1654", + "204851", + "2065", + "2261", + "282991", + "3429", + "3458", + "355", + "356", + "3570", + "3592", + "3624", + "4088", + "4089", + "4170", + "4803", + "50486", + "51202", + "51304", + "5170", + "572", + "581", + "596", + "6272", + "637", + "64112", + "6688", + "7040", + "7042", + "7098", + "7124", + "7132", + "841", + "8717", + "8737", + "8738", + "8772", + "8797", + "91", + "939", + "9531", + "970", + "9812", + "9994" + ] + }, + "GO:1901184": { + "Name": "regulation of ERBB signaling pathway", + "Task": "GO", + "Genes": [ + "1012", + "10551", + "10825", + "122809", + "150", + "183", + "1956", + "222584", + "2241", + "23624", + "2537", + "26469", + "27246", + "2852", + "3092", + "4318", + "5329", + "54206", + "55658", + "55704", + "57142", + "5753", + "5771", + "57732", + "5774", + "5782", + "5795", + "5898", + "5899", + "64285", + "6868", + "7040", + "7251", + "7879", + "79643", + "84058", + "84313", + "84619", + "84632", + "8527", + "867", + "89853", + "9026", + "9125", + "93343", + "93650", + "9655", + "9961" + ] + }, + "GO:0007032": { + "Name": "endosome organization", + "Task": "GO", + "Genes": [ + "10254", + "10564", + "11267", + "1182", + "128866", + "137492", + "144717", + "149371", + "150368", + "155382", + "1759", + "23023", + "23317", + "23325", + "23603", + "252839", + "257364", + "25978", + "26276", + "27243", + "29887", + "29911", + "440400", + "51028", + "51160", + "51361", + "51652", + "55048", + "55353", + "57617", + "5873", + "64400", + "653145", + "7251", + "79102", + "79156", + "79643", + "79720", + "8027", + "83547", + "84067", + "8411", + "84313", + "84376", + "8724", + "8766", + "8878", + "9146", + "92421", + "93343" + ] + }, + "GO:0002718": { + "Name": "regulation of cytokine production involved in immune response", + "Task": "GO", + "Genes": [ + "10859", + "10892", + "11006", + "11126", + "1178", + "117854", + "144811", + "1604", + "163486", + "2150", + "3077", + "3105", + "3133", + "3134", + "3135", + "335", + "336", + "3440", + "3456", + "353091", + "3553", + "3554", + "3565", + "3586", + "3606", + "3663", + "3805", + "3815", + "50943", + "54795", + "55765", + "567", + "6375", + "64127", + "684", + "6885", + "695", + "7040", + "7042", + "7043", + "7124", + "7186", + "7189", + "7474", + "7855", + "79004", + "814", + "8140", + "8809", + "975", + "9865" + ] + }, + "GO:0001910": { + "Name": "regulation of leukocyte mediated cytotoxicity", + "Task": "GO", + "Genes": [ + "100507436", + "10125", + "10666", + "10859", + "11126", + "114836", + "135250", + "146850", + "164", + "177", + "2150", + "2213", + "22914", + "23705", + "259197", + "3071", + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3135", + "3140", + "3383", + "3592", + "3593", + "3805", + "3821", + "3822", + "3824", + "383", + "387837", + "3916", + "3952", + "3965", + "409", + "4843", + "5272", + "56253", + "5817", + "5819", + "59067", + "6318", + "634", + "6375", + "7040", + "8417", + "9390", + "9437" + ] + }, + "GO:0032273": { + "Name": "positive regulation of protein polymerization", + "Task": "GO", + "Genes": [ + "10142", + "10344", + "10435", + "11076", + "1236", + "1440", + "146206", + "148170", + "1639", + "2017", + "2185", + "2241", + "2242", + "22919", + "253725", + "25802", + "28964", + "3055", + "3071", + "3303", + "3304", + "3320", + "382", + "402", + "4137", + "4204", + "4233", + "442721", + "4690", + "4733", + "4926", + "5058", + "5216", + "5217", + "55626", + "55755", + "55971", + "57482", + "57606", + "5879", + "6188", + "6249", + "6356", + "6366", + "6369", + "7408", + "79998", + "8440", + "84630", + "89795", + "9793" + ] + }, + "GO:0007080": { + "Name": "mitotic metaphase chromosome alignment", + "Task": "GO", + "Genes": [ + "10015", + "10403", + "10464", + "10540", + "1062", + "10726", + "11004", + "113130", + "128866", + "220134", + "221150", + "22919", + "23212", + "23636", + "256364", + "25978", + "27183", + "27243", + "27436", + "283489", + "348235", + "3833", + "3835", + "3837", + "5119", + "51510", + "51652", + "54908", + "54984", + "55143", + "55165", + "57132", + "79003", + "79643", + "79998", + "81620", + "81929", + "81930", + "8452", + "84722", + "8678", + "8697", + "8766", + "891", + "91272", + "91782", + "9183", + "92421", + "9525", + "9928" + ] + }, + "GO:0042509": { + "Name": "regulation of tyrosine phosphorylation of STAT protein", + "Task": "GO", + "Genes": [ + "10464", + "1270", + "1437", + "1489", + "149233", + "2056", + "2066", + "2261", + "22876", + "2322", + "23529", + "23568", + "2688", + "282618", + "29883", + "3458", + "3479", + "3558", + "3562", + "3565", + "3569", + "3570", + "3572", + "3592", + "3593", + "3606", + "3815", + "3976", + "4771", + "5008", + "50604", + "51561", + "54625", + "5753", + "5771", + "59067", + "7132", + "83666", + "85480", + "8651", + "8784", + "8995", + "9021", + "9244", + "958" + ] + }, + "GO:0060760": { + "Name": "positive regulation of response to cytokine stimulus", + "Task": "GO", + "Genes": [ + "100130733", + "10554", + "10555", + "114900", + "117854", + "1435", + "1660", + "171389", + "1906", + "23586", + "2621", + "2672", + "3091", + "3093", + "3303", + "3304", + "340061", + "345611", + "353376", + "3574", + "389856", + "5071", + "54209", + "54502", + "54625", + "54765", + "558", + "57506", + "64135", + "6868", + "6880", + "7097", + "7099", + "7294", + "7474", + "7852", + "81844", + "834", + "83666", + "837", + "84166", + "85480", + "8737", + "8772", + "8904", + "90933", + "91445", + "9641", + "972" + ] + }, + "GO:0002821": { + "Name": "positive regulation of adaptive immune response", + "Task": "GO", + "Genes": [ + "10459", + "10666", + "10892", + "112441434", + "149233", + "149840", + "1604", + "163486", + "23411", + "29108", + "29126", + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3140", + "3329", + "3553", + "3554", + "3565", + "3572", + "3592", + "3593", + "3594", + "3606", + "51561", + "54537", + "567", + "5817", + "5819", + "6046", + "6375", + "64170", + "6885", + "7037", + "7040", + "7158", + "7186", + "7189", + "7855", + "81545", + "8417", + "8631", + "8741", + "8809", + "9390", + "975" + ] + }, + "GO:0009266": { + "Name": "response to temperature stimulus", + "Task": "GO", + "Genes": [ + "10013", + "10016", + "100507436", + "10569", + "11080", + "1153", + "158297", + "1616", + "170506", + "1967", + "2246", + "2729", + "27429", + "2766", + "30001", + "3162", + "3297", + "3303", + "3304", + "3310", + "3337", + "3479", + "3552", + "4137", + "4277", + "440275", + "4842", + "49860", + "51278", + "51393", + "51501", + "5566", + "5609", + "56892", + "5931", + "59335", + "7175", + "7341", + "7415", + "7442", + "7531", + "79752", + "81570", + "8823", + "8890", + "8891", + "8892", + "8893", + "9451", + "9531" + ] + }, + "GO:0051258": { + "Name": "protein polymerization", + "Task": "GO", + "Genes": [ + "10142", + "10810", + "11065", + "11076", + "114791", + "117854", + "128866", + "1453", + "1785", + "199", + "2243", + "2244", + "2266", + "22954", + "22974", + "23122", + "23332", + "27243", + "27338", + "2801", + "284001", + "2879", + "2934", + "3093", + "375307", + "4134", + "4137", + "5071", + "51652", + "5300", + "55125", + "55761", + "55835", + "57580", + "57606", + "5879", + "7429", + "7454", + "79585", + "79649", + "84282", + "844", + "845", + "85378", + "8636", + "8936", + "8976", + "9793" + ] + }, + "GO:0042058": { + "Name": "regulation of epidermal growth factor receptor signaling pathway", + "Task": "GO", + "Genes": [ + "1012", + "10551", + "10825", + "122809", + "150", + "183", + "1956", + "222584", + "2241", + "23624", + "2537", + "27246", + "2852", + "3092", + "4318", + "5329", + "54206", + "55658", + "55704", + "5753", + "5771", + "57732", + "5774", + "5782", + "5795", + "5898", + "5899", + "64285", + "6868", + "7040", + "7251", + "7879", + "79643", + "84058", + "84313", + "84619", + "84632", + "8527", + "867", + "89853", + "9026", + "9125", + "93343", + "9655", + "9961" + ] + }, + "GO:0002709": { + "Name": "regulation of T cell mediated immunity", + "Task": "GO", + "Genes": [ + "10859", + "10892", + "11006", + "1178", + "1604", + "163486", + "177", + "196", + "2213", + "259307", + "3071", + "3077", + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3135", + "3140", + "3329", + "3440", + "3456", + "3553", + "3554", + "3565", + "3592", + "3606", + "3821", + "3824", + "50943", + "54795", + "567", + "5817", + "5819", + "634", + "6375", + "6885", + "7186", + "7189", + "7454", + "7855", + "81545", + "8417", + "8809", + "9390", + "941", + "975" + ] + }, + "GO:0044088": { + "Name": "regulation of vacuole organization", + "Task": "GO", + "Genes": [ + "11152", + "112574", + "120892", + "140775", + "1947", + "200576", + "201163", + "203228", + "2048", + "22930", + "23130", + "23256", + "2475", + "25782", + "26471", + "2896", + "29978", + "302", + "345611", + "401548", + "4534", + "51100", + "51375", + "5305", + "54546", + "55062", + "55254", + "5532", + "55353", + "57192", + "57533", + "57535", + "5868", + "5899", + "64112", + "65018", + "79142", + "79837", + "81876", + "8396", + "8723", + "8897", + "90678", + "950", + "9554", + "9637", + "9638", + "96459" + ] + }, + "GO:0030168": { + "Name": "platelet activation", + "Task": "GO", + "Genes": [ + "10451", + "10630", + "139189", + "1432", + "1511", + "1606", + "1607", + "1608", + "160851", + "1609", + "2147", + "2149", + "2151", + "2243", + "2244", + "2266", + "2623", + "2778", + "2811", + "3273", + "3569", + "3690", + "388552", + "5156", + "5196", + "5290", + "5291", + "5294", + "5336", + "5912", + "64805", + "6714", + "6812", + "6814", + "6850", + "7409", + "7410", + "7450", + "8525", + "8526", + "8527", + "87", + "9002", + "9162", + "953", + "959" + ] + }, + "GO:0002220": { + "Name": "innate immune response activating cell surface receptor signaling pathway", + "Task": "GO", + "Genes": [ + "11027", + "114609", + "1147", + "1387", + "148022", + "2033", + "2219", + "22841", + "2534", + "2867", + "29110", + "353376", + "3551", + "3654", + "3656", + "3661", + "3822", + "3824", + "3929", + "3965", + "4067", + "4153", + "4792", + "4938", + "5058", + "5062", + "5063", + "51135", + "51295", + "5336", + "57402", + "5970", + "6714", + "6850", + "6885", + "7097", + "7099", + "7100", + "7187", + "7189", + "7305", + "79931", + "8767", + "9865" + ] + }, + "GO:0008593": { + "Name": "regulation of Notch signaling pathway", + "Task": "GO", + "Genes": [ + "10098", + "100996717", + "100996763", + "1018", + "10413", + "11060", + "11235", + "1840", + "207", + "22848", + "22905", + "23462", + "23509", + "23555", + "2624", + "2658", + "3572", + "388677", + "408", + "4100", + "4179", + "441478", + "4846", + "4856", + "51162", + "54084", + "55333", + "55662", + "5584", + "56892", + "56983", + "65989", + "6714", + "7042", + "7471", + "79094", + "81619", + "84934", + "8626", + "8788", + "892", + "9148", + "9270", + "92714", + "94" + ] + }, + "GO:0045921": { + "Name": "positive regulation of exocytosis", + "Task": "GO", + "Genes": [ + "10015", + "1080", + "11267", + "164", + "192683", + "201294", + "2150", + "2243", + "2244", + "2266", + "23086", + "23122", + "23332", + "23400", + "27183", + "27243", + "3134", + "3684", + "3689", + "376267", + "3822", + "3916", + "50487", + "57126", + "5864", + "5868", + "5873", + "5874", + "6382", + "6385", + "6386", + "6622", + "6810", + "6845", + "7251", + "7784", + "7879", + "8027", + "84932", + "8673", + "8723", + "9146", + "9367", + "94121", + "9525", + "9545" + ] + }, + "GO:0032436": { + "Name": "positive regulation of proteasomal ubiquitin-dependent protein catabolic process", + "Task": "GO", + "Genes": [ + "10273", + "10399", + "10444", + "1050", + "11337", + "116224", + "1191", + "1263", + "144165", + "1452", + "153769", + "1601", + "1855", + "207", + "22933", + "23640", + "25898", + "2931", + "2932", + "29997", + "3300", + "3303", + "4092", + "4193", + "5071", + "51548", + "51667", + "5347", + "55070", + "55212", + "5716", + "5886", + "5988", + "64326", + "65992", + "6613", + "6872", + "7341", + "7415", + "79699", + "8078", + "85409", + "863", + "9655", + "9817", + "9978" + ] + }, + "GO:0002824": { + "Name": "positive regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains", + "Task": "GO", + "Genes": [ + "10459", + "10666", + "10892", + "112441434", + "149233", + "149840", + "1604", + "163486", + "29126", + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3140", + "3329", + "3553", + "3554", + "3565", + "3592", + "3593", + "3594", + "3606", + "51561", + "54537", + "567", + "5817", + "5819", + "6046", + "6375", + "64170", + "6885", + "7037", + "7040", + "7158", + "7186", + "7189", + "7855", + "81545", + "8417", + "8741", + "8809", + "9390", + "975" + ] + }, + "GO:0006968": { + "Name": "cellular defense response", + "Task": "GO", + "Genes": [ + "10219", + "10288", + "10312", + "10578", + "10803", + "10871", + "1232", + "1234", + "1235", + "135", + "1524", + "23601", + "23643", + "3135", + "3579", + "3688", + "3702", + "3805", + "3812", + "3822", + "3823", + "3959", + "4046", + "4283", + "4332", + "4688", + "50852", + "51473", + "51715", + "5551", + "653361", + "6693", + "728", + "7305", + "7369", + "7707", + "7716", + "8061", + "8678", + "8808", + "9214", + "922", + "9436", + "9437" + ] + }, + "GO:0015918": { + "Name": "sterol transport", + "Task": "GO", + "Genes": [ + "10347", + "10577", + "1066", + "1071", + "10948", + "1191", + "134429", + "19", + "23461", + "23673", + "26119", + "27183", + "283238", + "29881", + "335", + "336", + "337", + "338", + "341", + "344", + "345", + "348", + "3931", + "3949", + "3990", + "4864", + "5007", + "5305", + "55937", + "57614", + "64137", + "64240", + "64241", + "6646", + "80765", + "8435", + "84947", + "857", + "9217", + "9218", + "9388", + "949", + "9619", + "9885" + ] + }, + "GO:0046425": { + "Name": "regulation of receptor signaling pathway via JAK-STAT", + "Task": "GO", + "Genes": [ + "10019", + "10464", + "128869", + "2033", + "2066", + "2185", + "22876", + "2688", + "282618", + "3565", + "3569", + "3586", + "3587", + "3588", + "3717", + "3718", + "3815", + "388646", + "3952", + "4771", + "51094", + "51379", + "54625", + "54741", + "55801", + "55835", + "5617", + "5618", + "57599", + "5771", + "5788", + "602", + "7297", + "7398", + "7428", + "815", + "84444", + "8651", + "9021", + "9146" + ] + }, + "GO:0038127": { + "Name": "ERBB signaling pathway", + "Task": "GO", + "Genes": [ + "10273", + "10718", + "1839", + "1950", + "1956", + "2064", + "2066", + "2069", + "207", + "2202", + "2549", + "2885", + "2886", + "3084", + "374", + "51196", + "5170", + "5284", + "5286", + "5290", + "5335", + "53358", + "55532", + "55614", + "55914", + "5594", + "5753", + "5781", + "5801", + "64762", + "6654", + "6714", + "673", + "685", + "6997", + "7039", + "7429", + "8065", + "8412", + "8440", + "84985", + "8826", + "8895", + "9185", + "9961" + ] + }, + "GO:0042531": { + "Name": "positive regulation of tyrosine phosphorylation of STAT protein", + "Task": "GO", + "Genes": [ + "10464", + "1270", + "1437", + "1489", + "149233", + "2056", + "2066", + "2261", + "2322", + "23529", + "23568", + "2688", + "282618", + "3458", + "3479", + "3558", + "3562", + "3565", + "3569", + "3570", + "3572", + "3592", + "3593", + "3606", + "3815", + "3976", + "5008", + "50604", + "51561", + "54625", + "5753", + "59067", + "7132", + "83666", + "85480", + "8784", + "8995", + "9244", + "958" + ] + }, + "GO:0030301": { + "Name": "cholesterol transport", + "Task": "GO", + "Genes": [ + "10347", + "10577", + "1066", + "1071", + "10948", + "1191", + "134429", + "19", + "23461", + "23673", + "26119", + "27183", + "29881", + "335", + "336", + "337", + "338", + "341", + "344", + "345", + "348", + "3931", + "3949", + "3990", + "4864", + "5007", + "5305", + "55937", + "57614", + "64137", + "64240", + "64241", + "6646", + "80765", + "8435", + "84947", + "857", + "9217", + "9218", + "9388", + "949", + "9619", + "9885" + ] + }, + "GO:0001961": { + "Name": "positive regulation of cytokine-mediated signaling pathway", + "Task": "GO", + "Genes": [ + "10554", + "10555", + "114900", + "117854", + "1435", + "171389", + "1906", + "2621", + "2672", + "3091", + "3093", + "3303", + "3304", + "340061", + "345611", + "353376", + "3574", + "389856", + "5071", + "54209", + "54502", + "54625", + "54765", + "558", + "57506", + "6868", + "7294", + "7474", + "7852", + "81844", + "834", + "83666", + "837", + "84166", + "85480", + "8737", + "8772", + "8904", + "90933", + "91445", + "9641", + "972" + ] + }, + "GO:0060193": { + "Name": "positive regulation of lipase activity", + "Task": "GO", + "Genes": [ + "10062", + "116519", + "185", + "1902", + "1909", + "1956", + "2260", + "2261", + "2263", + "2321", + "27", + "2769", + "2776", + "283", + "3265", + "3356", + "3357", + "337", + "338328", + "344", + "350", + "3815", + "387", + "389", + "5031", + "5156", + "5159", + "5170", + "5319", + "5322", + "5330", + "5406", + "552", + "553", + "5741", + "6401", + "728", + "7376", + "8698", + "9170", + "9290", + "9373" + ] + }, + "GO:0032456": { + "Name": "endocytic recycling", + "Task": "GO", + "Genes": [ + "100287171", + "10123", + "10228", + "10311", + "10807", + "10938", + "11267", + "143187", + "157680", + "2060", + "22853", + "23339", + "253725", + "25930", + "28952", + "30844", + "30845", + "30846", + "382", + "51552", + "51699", + "54520", + "54918", + "55275", + "55610", + "55737", + "57020", + "57182", + "5872", + "6293", + "738", + "7879", + "81609", + "84079", + "84162", + "85377", + "8674", + "8675", + "8723", + "9230", + "9559", + "9727", + "9784" + ] + }, + "GO:0006998": { + "Name": "nuclear envelope organization", + "Task": "GO", + "Genes": [ + "10783", + "1104", + "124491", + "128866", + "148362", + "1639", + "1760", + "2010", + "221035", + "221496", + "22933", + "23141", + "23175", + "23306", + "23399", + "23435", + "25978", + "26993", + "27183", + "27243", + "4000", + "4001", + "5119", + "51510", + "51652", + "5347", + "545", + "5578", + "5579", + "57132", + "6683", + "7329", + "7443", + "79188", + "79643", + "80346", + "8815", + "91782", + "92421", + "9631", + "9688" + ] + }, + "GO:0010976": { + "Name": "positive regulation of neuron projection development", + "Task": "GO", + "Genes": [ + "10690", + "11075", + "11344", + "126520", + "162427", + "2011", + "2033", + "2042", + "2185", + "2242", + "23064", + "23654", + "27", + "285016", + "2889", + "322", + "347733", + "348", + "3630", + "382", + "389658", + "4058", + "4067", + "4192", + "4914", + "50487", + "51657", + "5365", + "5584", + "5587", + "5753", + "5754", + "5979", + "6014", + "653", + "655", + "79625", + "8536", + "9139", + "91752" + ] + }, + "GO:0009408": { + "Name": "response to heat", + "Task": "GO", + "Genes": [ + "10013", + "10016", + "100507436", + "10569", + "11080", + "1616", + "170506", + "1967", + "2246", + "2729", + "27429", + "3162", + "3297", + "3303", + "3304", + "3310", + "3337", + "3479", + "3552", + "4137", + "4277", + "4842", + "49860", + "51278", + "51501", + "5566", + "5609", + "56892", + "5931", + "7175", + "7341", + "7415", + "7442", + "7531", + "79752", + "81570", + "8890", + "8891", + "8892", + "8893", + "9531" + ] + }, + "GO:0046605": { + "Name": "regulation of centrosome cycle", + "Task": "GO", + "Genes": [ + "10015", + "10432", + "10733", + "10769", + "128866", + "152185", + "153241", + "163786", + "221908", + "22809", + "22994", + "23411", + "23636", + "25978", + "2648", + "27243", + "338657", + "348654", + "4591", + "4869", + "5119", + "51510", + "51652", + "5314", + "54461", + "55226", + "55835", + "56890", + "57132", + "57787", + "6491", + "6790", + "7517", + "79959", + "84084", + "85459", + "8850", + "899", + "91147", + "92421", + "9525" + ] + }, + "GO:0045055": { + "Name": "regulated exocytosis", + "Task": "GO", + "Genes": [ + "100431172", + "1020", + "10257", + "10497", + "10890", + "11031", + "1113", + "11151", + "117194", + "1393", + "148281", + "2205", + "22999", + "23396", + "23557", + "25837", + "26154", + "261729", + "3055", + "306", + "3815", + "387695", + "4627", + "5293", + "5294", + "5413", + "57393", + "57829", + "5864", + "6348", + "6616", + "6622", + "6804", + "6812", + "6844", + "6845", + "80331", + "8673", + "8773" + ] + }, + "GO:0048002": { + "Name": "antigen processing and presentation of peptide antigen", + "Task": "GO", + "Genes": [ + "10437", + "1509", + "1510", + "1514", + "1515", + "1520", + "1636", + "1785", + "200576", + "23457", + "2923", + "3105", + "3106", + "3107", + "3108", + "3109", + "3113", + "3115", + "3119", + "3122", + "3123", + "3133", + "3134", + "3135", + "3416", + "3551", + "4012", + "50856", + "51128", + "51752", + "55016", + "55080", + "5641", + "567", + "64167", + "6890", + "6891", + "6892", + "811", + "8722" + ] + }, + "GO:0008333": { + "Name": "endosome to lysosome transport", + "Task": "GO", + "Genes": [ + "1130", + "151636", + "154", + "22863", + "22906", + "23295", + "23339", + "23557", + "25978", + "26276", + "27072", + "274", + "29911", + "388", + "4074", + "441925", + "4534", + "51361", + "51652", + "55681", + "55823", + "57617", + "57724", + "6272", + "63894", + "63971", + "64089", + "64400", + "64601", + "65082", + "6845", + "7415", + "7879", + "80700", + "83547", + "84067", + "84376", + "9392", + "9525", + "9737" + ] + }, + "GO:0038093": { + "Name": "Fc receptor signaling pathway", + "Task": "GO", + "Genes": [ + "10451", + "196051", + "2207", + "2213", + "2268", + "23547", + "25", + "2534", + "3055", + "3551", + "3815", + "3984", + "4067", + "4214", + "5058", + "5284", + "5335", + "5336", + "5338", + "5580", + "5581", + "5588", + "5599", + "5601", + "5609", + "5747", + "6416", + "6654", + "6714", + "6850", + "6885", + "695", + "7189", + "7409", + "7410", + "7525", + "8398", + "919" + ] + }, + "GO:0097530": { + "Name": "granulocyte migration", + "Task": "GO", + "Genes": [ + "120425", + "1525", + "1906", + "1907", + "1908", + "200576", + "23396", + "301", + "3071", + "30817", + "3576", + "3579", + "3689", + "3958", + "51135", + "51192", + "5175", + "5293", + "5294", + "5478", + "5479", + "5657", + "57126", + "6279", + "6280", + "6283", + "6348", + "6354", + "6356", + "6357", + "6369", + "6372", + "6375", + "682", + "6850", + "7369", + "7857", + "83700", + "8729" + ] + }, + "GO:0031032": { + "Name": "actomyosin structure organization", + "Task": "GO", + "Genes": [ + "10529", + "11235", + "221061", + "221692", + "2318", + "253980", + "27183", + "29127", + "3688", + "3693", + "387", + "3880", + "399687", + "408", + "442721", + "4627", + "4628", + "50848", + "54566", + "54784", + "56203", + "58", + "58529", + "6714", + "7082", + "7126", + "7168", + "7273", + "7791", + "79784", + "825", + "84033", + "8452", + "84665", + "8476", + "85462", + "8557", + "88", + "9172", + "9578" + ] + }, + "GO:0060562": { + "Name": "epithelial tube morphogenesis", + "Task": "GO", + "Genes": [ + "123872", + "1282", + "1436", + "144165", + "1460", + "1499", + "2246", + "2247", + "2255", + "23513", + "25865", + "26249", + "2658", + "27031", + "339829", + "3791", + "387", + "388", + "388389", + "4233", + "4524", + "5058", + "5310", + "5311", + "55036", + "5613", + "652", + "65266", + "7490", + "7547", + "80199", + "83605", + "90", + "90627", + "9353", + "94" + ] + }, + "GO:0090224": { + "Name": "regulation of spindle organization", + "Task": "GO", + "Genes": [ + "10015", + "10039", + "10460", + "10615", + "126731", + "128866", + "1639", + "1778", + "23636", + "256364", + "25978", + "26054", + "27243", + "2770", + "29899", + "3192", + "3303", + "3304", + "4733", + "4926", + "5119", + "51510", + "51652", + "5347", + "57132", + "6047", + "7175", + "79187", + "79598", + "79643", + "79866", + "79884", + "79998", + "84722", + "8480", + "91782", + "92421", + "9525" + ] + }, + "GO:0044091": { + "Name": "membrane biogenesis", + "Task": "GO", + "Genes": [ + "10211", + "1104", + "11252", + "116238", + "128866", + "148362", + "2054", + "221035", + "22933", + "23141", + "23180", + "25978", + "25999", + "27183", + "27243", + "288", + "302", + "5119", + "51510", + "51652", + "57132", + "57502", + "6281", + "6683", + "6711", + "6810", + "727910", + "7329", + "79643", + "80346", + "857", + "858", + "859", + "8815", + "91782", + "92421", + "9409" + ] + }, + "GO:0002715": { + "Name": "regulation of natural killer cell mediated immunity", + "Task": "GO", + "Genes": [ + "100507436", + "10125", + "10666", + "10859", + "11126", + "114836", + "135250", + "146850", + "164", + "22914", + "23705", + "259197", + "3105", + "3106", + "3133", + "3134", + "3135", + "353091", + "3592", + "3593", + "3805", + "3821", + "3822", + "3824", + "387837", + "3916", + "3952", + "3965", + "409", + "5272", + "56253", + "5817", + "5819", + "59067", + "6318", + "634", + "7040", + "9437" + ] + }, + "GO:0010517": { + "Name": "regulation of phospholipase activity", + "Task": "GO", + "Genes": [ + "10125", + "185", + "1902", + "1909", + "1956", + "2260", + "2261", + "2263", + "2321", + "25", + "27", + "27329", + "2769", + "2776", + "283", + "3265", + "3356", + "3357", + "344", + "3815", + "5031", + "5156", + "5159", + "5170", + "5319", + "5322", + "5330", + "552", + "553", + "5741", + "6401", + "653145", + "6622", + "728", + "8698", + "9170", + "9290", + "9373" + ] + }, + "GO:0031113": { + "Name": "regulation of microtubule polymerization", + "Task": "GO", + "Genes": [ + "1003", + "10142", + "10382", + "11075", + "157922", + "1639", + "2242", + "22919", + "22924", + "23271", + "24139", + "25", + "25999", + "28964", + "29922", + "3303", + "3304", + "3925", + "402", + "4133", + "4137", + "4204", + "4233", + "4733", + "4926", + "5058", + "55755", + "57606", + "57662", + "58497", + "5879", + "6188", + "6249", + "6622", + "6904", + "79998", + "8874", + "89795", + "9793" + ] + }, + "GO:0031623": { + "Name": "receptor internalization", + "Task": "GO", + "Genes": [ + "10203", + "10266", + "10267", + "10268", + "10859", + "11006", + "11031", + "1173", + "133", + "156", + "157", + "1785", + "1814", + "26119", + "2868", + "2885", + "2966", + "3576", + "3577", + "3579", + "4035", + "408", + "409", + "4734", + "55681", + "57007", + "5868", + "5898", + "5899", + "6622", + "6642", + "7037", + "8301", + "83737", + "857", + "859", + "9413" + ] + }, + "GO:0097352": { + "Name": "autophagosome maturation", + "Task": "GO", + "Genes": [ + "10490", + "128866", + "22863", + "25851", + "25978", + "26100", + "26276", + "27243", + "29979", + "30849", + "440738", + "488", + "5119", + "51510", + "51652", + "5289", + "55014", + "57132", + "57231", + "63894", + "64601", + "65082", + "6845", + "7251", + "7405", + "7415", + "79643", + "80183", + "81631", + "81671", + "84557", + "8673", + "8678", + "91782", + "92421", + "9342" + ] + }, + "GO:0031343": { + "Name": "positive regulation of cell killing", + "Task": "GO", + "Genes": [ + "10125", + "10666", + "11126", + "114836", + "135250", + "164", + "2150", + "2208", + "22914", + "23705", + "259197", + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3140", + "3458", + "3592", + "3593", + "3822", + "3824", + "383", + "3916", + "4843", + "5551", + "5599", + "56253", + "5817", + "5819", + "59067", + "6375", + "64581", + "6850", + "8417", + "9390" + ] + }, + "GO:0071774": { + "Name": "response to fibroblast growth factor", + "Task": "GO", + "Genes": [ + "10563", + "10817", + "10818", + "1960", + "2246", + "2247", + "2248", + "2249", + "2250", + "2251", + "2252", + "2253", + "2254", + "2255", + "2260", + "2261", + "2263", + "2264", + "23064", + "25778", + "2591", + "26281", + "3164", + "3373", + "54567", + "5781", + "6422", + "678", + "6997", + "7538", + "79625", + "8692", + "9158", + "9270", + "960", + "9702", + "9965" + ] + }, + "GO:0042269": { + "Name": "regulation of natural killer cell mediated cytotoxicity", + "Task": "GO", + "Genes": [ + "100507436", + "10125", + "10666", + "10859", + "11126", + "114836", + "135250", + "146850", + "164", + "22914", + "23705", + "259197", + "3105", + "3106", + "3133", + "3134", + "3135", + "3592", + "3593", + "3805", + "3821", + "3822", + "3824", + "387837", + "3916", + "3952", + "3965", + "409", + "5272", + "56253", + "5817", + "5819", + "59067", + "6318", + "634", + "7040", + "9437" + ] + }, + "GO:2000785": { + "Name": "regulation of autophagosome assembly", + "Task": "GO", + "Genes": [ + "11152", + "112574", + "120892", + "140775", + "1947", + "200576", + "203228", + "2048", + "22930", + "23130", + "23256", + "2475", + "25782", + "26471", + "29978", + "401548", + "51100", + "51375", + "5305", + "54546", + "55062", + "55254", + "57533", + "57535", + "5868", + "5899", + "64112", + "65018", + "79142", + "79837", + "81876", + "8396", + "8723", + "8897", + "90678", + "9554", + "9637", + "9638" + ] + }, + "GO:0044344": { + "Name": "cellular response to fibroblast growth factor stimulus", + "Task": "GO", + "Genes": [ + "10563", + "10817", + "10818", + "1960", + "2246", + "2247", + "2248", + "2249", + "2250", + "2251", + "2252", + "2253", + "2254", + "2255", + "2260", + "2261", + "2263", + "2264", + "23064", + "25778", + "2591", + "26281", + "3164", + "3373", + "54567", + "5781", + "6422", + "678", + "6997", + "7538", + "79625", + "8692", + "9158", + "9270", + "960", + "9702", + "9965" + ] + }, + "GO:0010824": { + "Name": "regulation of centrosome duplication", + "Task": "GO", + "Genes": [ + "10015", + "10432", + "10733", + "10769", + "128866", + "152185", + "153241", + "163786", + "221908", + "22994", + "23411", + "23636", + "25978", + "2648", + "27243", + "338657", + "348654", + "4591", + "4869", + "5119", + "51510", + "51652", + "5314", + "54461", + "55226", + "55835", + "56890", + "57132", + "6491", + "7517", + "79959", + "84084", + "85459", + "8850", + "899", + "91147", + "92421", + "9525" + ] + }, + "GO:0071709": { + "Name": "membrane assembly", + "Task": "GO", + "Genes": [ + "10211", + "1104", + "11252", + "116238", + "128866", + "148362", + "2054", + "221035", + "22933", + "23141", + "23180", + "25978", + "27183", + "27243", + "288", + "302", + "5119", + "51510", + "51652", + "57132", + "57502", + "6281", + "6683", + "6711", + "6810", + "727910", + "7329", + "79643", + "80346", + "857", + "858", + "859", + "8815", + "91782", + "92421" + ] + }, + "GO:0060236": { + "Name": "regulation of mitotic spindle organization", + "Task": "GO", + "Genes": [ + "10015", + "10039", + "10460", + "126731", + "128866", + "1639", + "1778", + "23636", + "256364", + "25978", + "27243", + "2770", + "29899", + "3192", + "3303", + "3304", + "4733", + "4926", + "5119", + "51510", + "51652", + "5347", + "57132", + "7175", + "79187", + "79598", + "79643", + "79866", + "79884", + "79998", + "84722", + "8480", + "91782", + "92421", + "9525" + ] + }, + "GO:0035924": { + "Name": "cellular response to vascular endothelial growth factor stimulus", + "Task": "GO", + "Genes": [ + "10253", + "116150", + "1432", + "153090", + "1960", + "2081", + "2321", + "2324", + "2549", + "25865", + "301", + "3164", + "3315", + "3791", + "4641", + "4851", + "5156", + "5159", + "5290", + "5293", + "54567", + "5587", + "5606", + "57556", + "5970", + "8829", + "8877", + "9261", + "9270" + ] + }, + "GO:0072665": { + "Name": "protein localization to vacuole", + "Task": "GO", + "Genes": [ + "10542", + "10670", + "11133", + "1191", + "144577", + "23163", + "23334", + "23400", + "23677", + "2633", + "26985", + "27183", + "3312", + "345611", + "389541", + "3920", + "4734", + "51100", + "51172", + "55788", + "57154", + "64089", + "64121", + "6653", + "7879", + "79158", + "79589", + "8031", + "8878", + "9146", + "9179", + "950", + "9648", + "975", + "9765" + ] + }, + "GO:0061097": { + "Name": "regulation of protein tyrosine kinase activity", + "Task": "GO", + "Genes": [ + "10006", + "11006", + "122809", + "1436", + "146433", + "1742", + "183", + "1942", + "2209", + "23624", + "255324", + "285489", + "353514", + "4739", + "54206", + "55294", + "5621", + "56940", + "57091", + "5753", + "5770", + "57732", + "5788", + "653361", + "6868", + "7251", + "79643", + "80725", + "84313", + "84619", + "857", + "8692", + "9094", + "9655", + "9961" + ] + }, + "GO:0071621": { + "Name": "granulocyte chemotaxis", + "Task": "GO", + "Genes": [ + "120425", + "1525", + "1906", + "1907", + "1908", + "200576", + "23396", + "301", + "3071", + "30817", + "3576", + "3579", + "3689", + "3958", + "51192", + "5293", + "5294", + "5478", + "5479", + "6279", + "6280", + "6283", + "6348", + "6354", + "6356", + "6357", + "6369", + "6372", + "6375", + "682", + "6850", + "7857", + "8729" + ] + }, + "GO:0050709": { + "Name": "negative regulation of protein secretion", + "Task": "GO", + "Genes": [ + "10961", + "131177", + "150", + "1813", + "1814", + "1815", + "23409", + "26056", + "26297", + "285381", + "348", + "353500", + "3592", + "3593", + "3630", + "3667", + "3767", + "4345", + "4988", + "5071", + "5978", + "6422", + "64285", + "80223", + "84830", + "8609", + "91543", + "9727" + ] + }, + "GO:0002090": { + "Name": "regulation of receptor internalization", + "Task": "GO", + "Genes": [ + "100506013", + "10211", + "124930", + "1950", + "22943", + "2332", + "255738", + "2688", + "284", + "284654", + "29978", + "302", + "338692", + "3643", + "3690", + "4043", + "408", + "409", + "4908", + "4983", + "54550", + "6311", + "6386", + "6401", + "6424", + "79890", + "84058", + "88455", + "8862", + "89780", + "967", + "9779", + "9863" + ] + }, + "GO:0071763": { + "Name": "nuclear membrane organization", + "Task": "GO", + "Genes": [ + "10783", + "1104", + "128866", + "148362", + "1639", + "2010", + "221035", + "22933", + "23141", + "23175", + "23306", + "23399", + "23435", + "25978", + "26993", + "27183", + "27243", + "5119", + "51510", + "51652", + "5347", + "545", + "5578", + "5579", + "57132", + "6683", + "7329", + "7443", + "79188", + "79643", + "80346", + "8815", + "91782", + "92421" + ] + }, + "GO:0044409": { + "Name": "symbiont entry into host", + "Task": "GO", + "Genes": [ + "10332", + "11059", + "11060", + "1514", + "156", + "185", + "200576", + "2060", + "219931", + "2621", + "27074", + "2838", + "30835", + "339390", + "3643", + "3685", + "3690", + "440400", + "4864", + "51193", + "53373", + "551", + "553", + "558", + "59272", + "6520", + "6609", + "6714", + "83737", + "857", + "858", + "867", + "8673", + "8829", + "90861" + ] + }, + "GO:0048260": { + "Name": "positive regulation of receptor-mediated endocytosis", + "Task": "GO", + "Genes": [ + "100506013", + "116519", + "1191", + "1601", + "1950", + "23011", + "2332", + "255738", + "26119", + "2688", + "284", + "302", + "3077", + "3092", + "3190", + "3643", + "408", + "409", + "4908", + "5054", + "5538", + "567", + "636", + "6401", + "6424", + "7018", + "7448", + "8527", + "867", + "8862", + "89780", + "967", + "9779", + "9863" + ] + }, + "GO:0090174": { + "Name": "organelle membrane fusion", + "Task": "GO", + "Genes": [ + "10043", + "10228", + "200576", + "23339", + "23355", + "23400", + "25978", + "27072", + "27183", + "29091", + "4033", + "4218", + "51479", + "51652", + "54734", + "54809", + "55647", + "55823", + "57393", + "662", + "6622", + "6809", + "6812", + "6844", + "6845", + "7879", + "80183", + "83871", + "8411", + "85409", + "858", + "8674", + "9392", + "9842" + ] + }, + "GO:1904645": { + "Name": "response to amyloid-beta", + "Task": "GO", + "Genes": [ + "10268", + "154", + "177", + "2358", + "2534", + "2902", + "2903", + "2915", + "3383", + "3479", + "3480", + "351", + "3676", + "4314", + "4321", + "4322", + "4914", + "5621", + "5641", + "5663", + "58533", + "7099", + "7412", + "773", + "774", + "781", + "782", + "837", + "948" + ] + }, + "GO:0019068": { + "Name": "virion assembly", + "Task": "GO", + "Genes": [ + "10015", + "128637", + "128866", + "129531", + "137492", + "155382", + "1656", + "25978", + "27183", + "27243", + "28972", + "339122", + "348", + "4734", + "5091", + "51160", + "5119", + "51510", + "51652", + "55048", + "57132", + "5861", + "7251", + "79643", + "79720", + "81876", + "89853", + "90678", + "91782", + "92421", + "93343", + "9525", + "9712" + ] + }, + "GO:0002704": { + "Name": "negative regulation of leukocyte mediated immunity", + "Task": "GO", + "Genes": [ + "100507436", + "10859", + "11006", + "11314", + "1378", + "196", + "2213", + "259307", + "3071", + "3077", + "3105", + "3106", + "3133", + "3134", + "3135", + "3440", + "3456", + "3805", + "3821", + "3824", + "387837", + "3965", + "409", + "50943", + "5272", + "6318", + "634", + "6375", + "684", + "7040", + "722", + "725", + "8832", + "941" + ] + }, + "GO:0007173": { + "Name": "epidermal growth factor receptor signaling pathway", + "Task": "GO", + "Genes": [ + "1839", + "1950", + "1956", + "2064", + "2069", + "207", + "2202", + "2549", + "2885", + "2886", + "374", + "51196", + "5170", + "5284", + "5286", + "5290", + "5335", + "53358", + "55532", + "55614", + "55914", + "5781", + "64762", + "6654", + "6714", + "673", + "6997", + "7039", + "7429", + "8412", + "8440", + "84985", + "8826", + "9185" + ] + }, + "GO:0010518": { + "Name": "positive regulation of phospholipase activity", + "Task": "GO", + "Genes": [ + "185", + "1902", + "1909", + "1956", + "2260", + "2261", + "2263", + "2321", + "27", + "2769", + "2776", + "283", + "3265", + "3356", + "3357", + "344", + "3815", + "5031", + "5156", + "5159", + "5170", + "5319", + "5322", + "5330", + "552", + "553", + "5741", + "6401", + "728", + "8698", + "9170", + "9290", + "9373" + ] + }, + "GO:0045744": { + "Name": "negative regulation of G protein-coupled receptor signaling pathway", + "Task": "GO", + "Genes": [ + "100", + "11240", + "112609", + "133", + "154", + "155", + "156", + "1814", + "23295", + "23322", + "2966", + "333", + "3576", + "3925", + "408", + "409", + "4233", + "43847", + "441925", + "493", + "5341", + "5530", + "56246", + "6000", + "6091", + "6586", + "6622", + "7529", + "7737", + "9353", + "9737" + ] + }, + "GO:0046718": { + "Name": "symbiont entry into host cell", + "Task": "GO", + "Genes": [ + "10332", + "11059", + "11060", + "1514", + "156", + "185", + "200576", + "2060", + "219931", + "2621", + "27074", + "2838", + "30835", + "339390", + "3643", + "3685", + "3690", + "440400", + "4864", + "51193", + "53373", + "551", + "553", + "558", + "59272", + "6520", + "6609", + "83737", + "857", + "858", + "8673", + "8829", + "90861" + ] + }, + "GO:0006906": { + "Name": "vesicle fusion", + "Task": "GO", + "Genes": [ + "10043", + "10228", + "200576", + "23339", + "23355", + "23400", + "25978", + "27072", + "27183", + "29091", + "4033", + "4218", + "51479", + "51652", + "54734", + "54809", + "55647", + "55823", + "57393", + "6622", + "6812", + "6844", + "6845", + "7879", + "80183", + "83871", + "8411", + "85409", + "858", + "8674", + "9392", + "9842" + ] + }, + "GO:0050732": { + "Name": "negative regulation of peptidyl-tyrosine phosphorylation", + "Task": "GO", + "Genes": [ + "10464", + "11006", + "11314", + "122809", + "199731", + "22876", + "23624", + "4771", + "4908", + "54206", + "54625", + "5590", + "56940", + "5753", + "5771", + "57732", + "5777", + "6422", + "7251", + "79643", + "80725", + "84313", + "84619", + "857", + "8651", + "8692", + "9021", + "9655", + "9961" + ] + }, + "GO:0001912": { + "Name": "positive regulation of leukocyte mediated cytotoxicity", + "Task": "GO", + "Genes": [ + "10125", + "10666", + "11126", + "114836", + "135250", + "164", + "2150", + "22914", + "23705", + "259197", + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3140", + "3592", + "3593", + "3822", + "3824", + "383", + "3916", + "4843", + "56253", + "5817", + "5819", + "59067", + "6375", + "8417", + "9390" + ] + }, + "GO:0002720": { + "Name": "positive regulation of cytokine production involved in immune response", + "Task": "GO", + "Genes": [ + "10859", + "10892", + "11126", + "117854", + "144811", + "1604", + "163486", + "2150", + "3105", + "3133", + "3134", + "3135", + "353091", + "3553", + "3554", + "3565", + "3606", + "3663", + "3805", + "3815", + "55765", + "567", + "64127", + "6885", + "7186", + "7189", + "7474", + "7855", + "814", + "8140", + "8809", + "975" + ] + }, + "GO:1990266": { + "Name": "neutrophil migration", + "Task": "GO", + "Genes": [ + "120425", + "1525", + "1906", + "1907", + "1908", + "200576", + "23396", + "3071", + "3576", + "3579", + "3689", + "3958", + "51135", + "51192", + "5175", + "5293", + "5294", + "5478", + "5479", + "5657", + "57126", + "6279", + "6280", + "6283", + "6348", + "6372", + "6375", + "682", + "6850", + "7369", + "8729" + ] + }, + "GO:0002707": { + "Name": "negative regulation of lymphocyte mediated immunity", + "Task": "GO", + "Genes": [ + "100507436", + "10859", + "11006", + "1378", + "196", + "2213", + "259307", + "3071", + "3077", + "3105", + "3106", + "3133", + "3134", + "3135", + "3440", + "3456", + "3805", + "3821", + "3824", + "387837", + "3965", + "409", + "50943", + "5272", + "6318", + "634", + "6375", + "7040", + "722", + "725", + "941" + ] + }, + "GO:0061462": { + "Name": "protein localization to lysosome", + "Task": "GO", + "Genes": [ + "10542", + "10670", + "11133", + "1191", + "144577", + "23163", + "23334", + "23400", + "23677", + "26985", + "27183", + "3312", + "389541", + "3920", + "4734", + "51172", + "55788", + "64089", + "64121", + "6653", + "7879", + "79158", + "79589", + "8031", + "9146", + "9179", + "950", + "9648", + "975", + "9765" + ] + }, + "GO:1904037": { + "Name": "positive regulation of epithelial cell apoptotic process", + "Task": "GO", + "Genes": [ + "10498", + "11126", + "196527", + "22925", + "27250", + "28984", + "2934", + "3135", + "356", + "3569", + "3676", + "5319", + "5335", + "5584", + "6347", + "641700", + "6424", + "7040", + "7057", + "728369", + "8644", + "958", + "959" + ] + }, + "GO:0002711": { + "Name": "positive regulation of T cell mediated immunity", + "Task": "GO", + "Genes": [ + "10892", + "1604", + "163486", + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3140", + "3329", + "3553", + "3554", + "3565", + "3592", + "3606", + "567", + "5817", + "5819", + "6375", + "6885", + "7186", + "7189", + "7855", + "81545", + "8417", + "8809", + "9390", + "975" + ] + }, + "GO:0051057": { + "Name": "positive regulation of small GTPase mediated signal transduction", + "Task": "GO", + "Genes": [ + "10125", + "11214", + "115727", + "1452", + "2056", + "2150", + "221002", + "221938", + "2255", + "2828", + "335", + "3479", + "3685", + "408", + "4851", + "4853", + "4914", + "50848", + "5291", + "5294", + "57679", + "5879", + "5923", + "6091", + "65078", + "6714", + "7010", + "8036", + "8859", + "9290" + ] + }, + "GO:0061572": { + "Name": "actin filament bundle organization", + "Task": "GO", + "Genes": [ + "11235", + "118", + "119", + "1785", + "199", + "2039", + "221061", + "221692", + "253980", + "29984", + "3688", + "3693", + "387", + "3936", + "408", + "51474", + "56776", + "56907", + "57026", + "57175", + "6624", + "6714", + "7126", + "7184", + "7430", + "7791", + "83715", + "84501", + "8452", + "85462" + ] + }, + "GO:0032506": { + "Name": "cytokinetic process", + "Task": "GO", + "Genes": [ + "10015", + "10112", + "112574", + "116840", + "128866", + "129531", + "200942", + "257364", + "25978", + "27183", + "27243", + "29127", + "311", + "387", + "4627", + "5119", + "51429", + "51510", + "51652", + "54784", + "55165", + "57132", + "6683", + "79643", + "91782", + "9212", + "92421", + "9525" + ] + }, + "GO:0019076": { + "Name": "viral release from host cell", + "Task": "GO", + "Genes": [ + "11074", + "128866", + "1642", + "25978", + "27183", + "27243", + "5091", + "5119", + "51510", + "51652", + "5478", + "5481", + "55223", + "57132", + "7251", + "7706", + "7879", + "79643", + "79720", + "858", + "91392", + "91782", + "9218", + "92421", + "9525", + "9798" + ] + }, + "GO:0043112": { + "Name": "receptor metabolic process", + "Task": "GO", + "Genes": [ + "10564", + "144717", + "150368", + "22853", + "255738", + "30845", + "30849", + "387849", + "441925", + "4734", + "51100", + "5189", + "5190", + "5192", + "54894", + "55614", + "57154", + "5828", + "5830", + "6653", + "7040", + "7405", + "8239", + "83891", + "84133", + "8678", + "9737" + ] + }, + "GO:0035891": { + "Name": "exit from host cell", + "Task": "GO", + "Genes": [ + "11074", + "128866", + "1642", + "25978", + "27183", + "27243", + "5091", + "5119", + "51510", + "51652", + "5478", + "5481", + "55223", + "57132", + "7251", + "7706", + "7879", + "79643", + "79720", + "858", + "91392", + "91782", + "9218", + "92421", + "9525", + "9798" + ] + }, + "GO:0090169": { + "Name": "regulation of spindle assembly", + "Task": "GO", + "Genes": [ + "10015", + "10615", + "126731", + "128866", + "1778", + "256364", + "25978", + "26054", + "27243", + "29899", + "3192", + "3303", + "3304", + "4733", + "4926", + "5119", + "51510", + "51652", + "5347", + "57132", + "6047", + "7175", + "79598", + "79643", + "91782", + "92421", + "9525" + ] + }, + "GO:0032881": { + "Name": "regulation of polysaccharide metabolic process", + "Task": "GO", + "Genes": [ + "160", + "1950", + "207", + "208", + "23178", + "2645", + "2931", + "2932", + "3479", + "3630", + "3643", + "3667", + "4790", + "5155", + "5167", + "51763", + "5261", + "55829", + "5741", + "7040", + "79660", + "8445", + "8660", + "89801" + ] + }, + "GO:2000008": { + "Name": "regulation of protein localization to cell surface", + "Task": "GO", + "Genes": [ + "1499", + "150684", + "1861", + "1950", + "23171", + "23327", + "257364", + "26056", + "29098", + "3077", + "30851", + "3326", + "54741", + "57120", + "59353", + "627", + "6809", + "6810", + "7124", + "7305", + "79608", + "8301", + "8729", + "88", + "9230", + "9777" + ] + }, + "GO:0034605": { + "Name": "cellular response to heat", + "Task": "GO", + "Genes": [ + "10013", + "10016", + "10569", + "1616", + "170506", + "2246", + "27429", + "3162", + "3297", + "3303", + "3304", + "3310", + "3337", + "3552", + "4137", + "51278", + "51501", + "5566", + "56892", + "5931", + "7175", + "7341", + "7415", + "7442", + "7531", + "79752", + "81570", + "9531" + ] + }, + "GO:1904646": { + "Name": "cellular response to amyloid-beta", + "Task": "GO", + "Genes": [ + "154", + "2358", + "2534", + "2902", + "2903", + "2915", + "3383", + "3479", + "3480", + "351", + "3676", + "4914", + "5621", + "5641", + "5663", + "58533", + "7099", + "7412", + "773", + "781", + "782", + "837", + "948" + ] + }, + "GO:0071985": { + "Name": "multivesicular body sorting pathway", + "Task": "GO", + "Genes": [ + "11267", + "1130", + "128866", + "129531", + "23086", + "25978", + "27243", + "404636", + "5119", + "51510", + "51534", + "51652", + "55353", + "57132", + "5873", + "5874", + "6272", + "7405", + "7415", + "79643", + "80700", + "83547", + "91782", + "92421", + "94121", + "9525", + "9711" + ] + }, + "GO:0061512": { + "Name": "protein localization to cilium", + "Task": "GO", + "Genes": [ + "10938", + "1453", + "159686", + "225689", + "23090", + "23639", + "27241", + "29887", + "317662", + "401024", + "403", + "50807", + "51304", + "51382", + "55764", + "57539", + "57728", + "582", + "585", + "7289", + "79809", + "83538", + "84100", + "8701", + "8766", + "9727", + "9742" + ] + }, + "GO:1900274": { + "Name": "regulation of phospholipase C activity", + "Task": "GO", + "Genes": [ + "10125", + "1902", + "1909", + "1956", + "2260", + "2321", + "25", + "27", + "2769", + "2776", + "283", + "3265", + "3356", + "3357", + "3815", + "5031", + "5156", + "5159", + "5330", + "552", + "553", + "5741", + "6401", + "728", + "8698", + "9170", + "9290" + ] + }, + "GO:0030593": { + "Name": "neutrophil chemotaxis", + "Task": "GO", + "Genes": [ + "120425", + "1525", + "1906", + "1907", + "1908", + "200576", + "23396", + "3071", + "3576", + "3579", + "3689", + "3958", + "51192", + "5293", + "5294", + "5478", + "5479", + "6279", + "6280", + "6283", + "6348", + "6372", + "6375", + "682", + "6850", + "8729" + ] + }, + "GO:0007259": { + "Name": "cell surface receptor signaling pathway via JAK-STAT", + "Task": "GO", + "Genes": [ + "10617", + "1437", + "1439", + "2241", + "2261", + "2688", + "3454", + "3455", + "3456", + "3600", + "3716", + "3717", + "3718", + "5753", + "59067", + "6347", + "6772", + "6773", + "6774", + "7297", + "8554", + "9111", + "9306" + ] + }, + "GO:0046427": { + "Name": "positive regulation of receptor signaling pathway via JAK-STAT", + "Task": "GO", + "Genes": [ + "10464", + "2033", + "2066", + "2185", + "2688", + "282618", + "3565", + "3569", + "3586", + "3587", + "3588", + "3717", + "3815", + "3952", + "51379", + "55801", + "55835", + "5617", + "5618", + "57599", + "7297", + "7398", + "815" + ] + }, + "GO:0032885": { + "Name": "regulation of polysaccharide biosynthetic process", + "Task": "GO", + "Genes": [ + "160", + "1950", + "207", + "208", + "23178", + "2645", + "2931", + "2932", + "3479", + "3630", + "3643", + "3667", + "4790", + "5155", + "5167", + "51763", + "55829", + "5741", + "7040", + "8445", + "8660", + "89801" + ] + }, + "GO:0003254": { + "Name": "regulation of membrane depolarization", + "Task": "GO", + "Genes": [ + "10021", + "10399", + "10962", + "120892", + "1634", + "213", + "2273", + "23171", + "23327", + "2537", + "2702", + "29098", + "3791", + "4092", + "4653", + "55800", + "5774", + "596", + "6324", + "6327", + "6331", + "6336", + "6714", + "7871", + "817", + "859" + ] + }, + "GO:0031281": { + "Name": "positive regulation of cyclase activity", + "Task": "GO", + "Genes": [ + "10486", + "10487", + "116", + "136", + "1394", + "140", + "1432", + "154", + "155", + "1812", + "1816", + "1909", + "2696", + "2740", + "4846", + "49", + "5032", + "554", + "5595", + "5599", + "57413", + "5894", + "6786", + "84876" + ] + }, + "GO:0010863": { + "Name": "positive regulation of phospholipase C activity", + "Task": "GO", + "Genes": [ + "1902", + "1909", + "1956", + "2260", + "2321", + "27", + "2769", + "2776", + "283", + "3265", + "3356", + "3357", + "3815", + "5031", + "5156", + "5159", + "5330", + "552", + "553", + "5741", + "6401", + "728", + "8698", + "9170", + "9290" + ] + }, + "GO:0045648": { + "Name": "positive regulation of erythrocyte differentiation", + "Task": "GO", + "Genes": [ + "116151", + "1432", + "2113", + "2309", + "2623", + "3091", + "3148", + "3276", + "3303", + "3304", + "3624", + "405", + "440712", + "5469", + "5600", + "6772", + "6774", + "6777", + "6886", + "7564", + "91", + "92" + ] + }, + "GO:0048010": { + "Name": "vascular endothelial growth factor receptor signaling pathway", + "Task": "GO", + "Genes": [ + "10016", + "1317", + "1432", + "161198", + "2185", + "2321", + "23213", + "2324", + "2534", + "25865", + "3315", + "3791", + "5062", + "558", + "5587", + "5747", + "6714", + "7409", + "7410", + "7424", + "7867", + "8829", + "9261", + "9564" + ] + }, + "GO:0046755": { + "Name": "viral budding", + "Task": "GO", + "Genes": [ + "10015", + "128866", + "129531", + "137492", + "155382", + "25978", + "27183", + "27243", + "4734", + "51160", + "5119", + "51510", + "51652", + "55048", + "57132", + "7251", + "79643", + "79720", + "89853", + "90678", + "91782", + "92421", + "93343", + "9525" + ] + }, + "GO:0032232": { + "Name": "negative regulation of actin filament bundle assembly", + "Task": "GO", + "Genes": [ + "10163", + "10395", + "116985", + "23122", + "23332", + "23370", + "23671", + "3925", + "395", + "4233", + "4653", + "5062", + "5071", + "50848", + "51763", + "5216", + "7454", + "84952", + "8500", + "85415", + "90102" + ] + }, + "GO:0032365": { + "Name": "intracellular lipid transport", + "Task": "GO", + "Genes": [ + "10087", + "10577", + "1066", + "134429", + "1374", + "1375", + "1376", + "19", + "215", + "26119", + "27183", + "3949", + "440026", + "4864", + "5007", + "5305", + "57614", + "5825", + "788", + "81537", + "84725", + "84947", + "9619", + "9885" + ] + }, + "GO:1905476": { + "Name": "negative regulation of protein localization to membrane", + "Task": "GO", + "Genes": [ + "112609", + "1173", + "131578", + "1445", + "1601", + "23433", + "2633", + "2664", + "377630", + "51763", + "54585", + "55022", + "5525", + "56246", + "598", + "6248", + "64114", + "65267", + "7040", + "8301", + "8500", + "8650", + "9270", + "9528" + ] + }, + "GO:0002724": { + "Name": "regulation of T cell cytokine production", + "Task": "GO", + "Genes": [ + "10892", + "11006", + "1178", + "1604", + "163486", + "3077", + "3105", + "3134", + "3440", + "3456", + "3553", + "3554", + "3565", + "3606", + "50943", + "54795", + "567", + "6375", + "6885", + "7186", + "7189", + "7855", + "8809", + "975" + ] + }, + "GO:0031112": { + "Name": "positive regulation of microtubule polymerization or depolymerization", + "Task": "GO", + "Genes": [ + "10142", + "10300", + "11075", + "1639", + "2242", + "22919", + "28964", + "3303", + "3304", + "402", + "4137", + "4204", + "4233", + "4733", + "4926", + "5058", + "55755", + "57606", + "5879", + "6188", + "6249", + "79998", + "89795", + "9793" + ] + }, + "GO:0010324": { + "Name": "membrane invagination", + "Task": "GO", + "Genes": [ + "112574", + "1793", + "23616", + "257364", + "27243", + "387", + "51429", + "51454", + "54784", + "54874", + "55113", + "57154", + "575", + "7057", + "8724", + "9146", + "9212", + "94134", + "948", + "9844", + "9938" + ] + }, + "GO:0019884": { + "Name": "antigen processing and presentation of exogenous antigen", + "Task": "GO", + "Genes": [ + "10437", + "1509", + "1510", + "1514", + "1515", + "1520", + "1785", + "200576", + "3105", + "3109", + "3113", + "3115", + "3119", + "3122", + "3123", + "3133", + "3134", + "3140", + "3551", + "4012", + "50856", + "5641", + "8722" + ] + }, + "GO:0051497": { + "Name": "negative regulation of stress fiber assembly", + "Task": "GO", + "Genes": [ + "10163", + "10395", + "116985", + "23122", + "23332", + "23370", + "23671", + "3925", + "395", + "4233", + "4653", + "5062", + "50848", + "51763", + "5216", + "7454", + "84952", + "8500", + "85415", + "90102" + ] + }, + "GO:0002717": { + "Name": "positive regulation of natural killer cell mediated immunity", + "Task": "GO", + "Genes": [ + "10125", + "10666", + "11126", + "114836", + "135250", + "164", + "22914", + "23705", + "259197", + "3133", + "3134", + "3135", + "353091", + "3592", + "3593", + "3805", + "3822", + "3824", + "3916", + "56253", + "5817", + "5819", + "59067" + ] + }, + "GO:0002478": { + "Name": "antigen processing and presentation of exogenous peptide antigen", + "Task": "GO", + "Genes": [ + "10437", + "1509", + "1510", + "1514", + "1515", + "1520", + "1785", + "200576", + "3105", + "3109", + "3113", + "3115", + "3119", + "3122", + "3123", + "3133", + "3134", + "3551", + "4012", + "50856", + "5641", + "8722" + ] + }, + "GO:0009268": { + "Name": "response to pH", + "Task": "GO", + "Genes": [ + "125981", + "134391", + "1520", + "26056", + "27035", + "2822", + "2828", + "2853", + "3373", + "338567", + "3645", + "41", + "5641", + "6337", + "6338", + "6339", + "6340", + "6548", + "7442", + "84329", + "8477", + "89872", + "9230" + ] + }, + "GO:0034142": { + "Name": "toll-like receptor 4 signaling pathway", + "Task": "GO", + "Genes": [ + "114609", + "1147", + "148022", + "22841", + "29110", + "353376", + "3656", + "3661", + "3965", + "4792", + "4938", + "51135", + "51295", + "57402", + "5970", + "6885", + "7099", + "7187", + "7189", + "79931", + "9865" + ] + }, + "GO:0043162": { + "Name": "ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway", + "Task": "GO", + "Genes": [ + "128866", + "137492", + "25930", + "25978", + "27183", + "27243", + "27246", + "4734", + "51160", + "5119", + "51271", + "51510", + "51652", + "55658", + "57132", + "7251", + "79643", + "89853", + "91782", + "92421", + "93343", + "9525" + ] + }, + "GO:2001239": { + "Name": "regulation of extrinsic apoptotic signaling pathway in absence of ligand", + "Task": "GO", + "Genes": [ + "1437", + "207", + "219699", + "2260", + "2537", + "2623", + "2668", + "27429", + "3303", + "3304", + "3552", + "3553", + "3624", + "4170", + "5196", + "5519", + "5598", + "596", + "5979", + "598", + "7015", + "7124" + ] + }, + "GO:1903902": { + "Name": "positive regulation of viral life cycle", + "Task": "GO", + "Genes": [ + "10475", + "2332", + "23633", + "27183", + "30835", + "3123", + "3146", + "339390", + "3838", + "3956", + "3965", + "5034", + "5045", + "558", + "56649", + "6609", + "7113", + "7251", + "7301", + "79720", + "81559", + "920", + "972" + ] + }, + "GO:0046578": { + "Name": "regulation of Ras protein signal transduction", + "Task": "GO", + "Genes": [ + "10125", + "10617", + "115727", + "153090", + "201163", + "2056", + "2203", + "221002", + "221938", + "2255", + "2305", + "285282", + "3479", + "4851", + "4853", + "4914", + "5923", + "64926", + "79109", + "8036", + "8216", + "8859", + "9927" + ] + }, + "GO:0008543": { + "Name": "fibroblast growth factor receptor signaling pathway", + "Task": "GO", + "Genes": [ + "10817", + "10818", + "2246", + "2247", + "2248", + "2249", + "2250", + "2251", + "2252", + "2253", + "2254", + "2255", + "2260", + "2261", + "2263", + "2264", + "23064", + "2591", + "26281", + "5781", + "9158", + "9702", + "9965" + ] + }, + "GO:0002820": { + "Name": "negative regulation of adaptive immune response", + "Task": "GO", + "Genes": [ + "10859", + "11006", + "11126", + "1378", + "196", + "2213", + "259307", + "3071", + "3077", + "3134", + "3135", + "3440", + "3456", + "3821", + "3824", + "50943", + "5987", + "634", + "6375", + "722", + "725", + "8764", + "941" + ] + }, + "GO:2001026": { + "Name": "regulation of endothelial cell chemotaxis", + "Task": "GO", + "Genes": [ + "10563", + "2246", + "2247", + "2249", + "2260", + "25865", + "3273", + "3315", + "3791", + "4233", + "4851", + "5025", + "5587", + "5641", + "64094", + "7057", + "7114", + "8817", + "8823" + ] + }, + "GO:0006826": { + "Name": "iron ion transport", + "Task": "GO", + "Genes": [ + "10057", + "10058", + "1785", + "22", + "22853", + "23516", + "28982", + "30061", + "387849", + "392", + "4241", + "4891", + "51312", + "55240", + "55652", + "57192", + "64116", + "6556", + "7036", + "7037", + "79901", + "9843" + ] + }, + "GO:0038094": { + "Name": "Fc-gamma receptor signaling pathway", + "Task": "GO", + "Genes": [ + "10451", + "196051", + "2213", + "2268", + "25", + "2534", + "3055", + "3984", + "4067", + "5058", + "5338", + "5580", + "5581", + "5747", + "6714", + "6850", + "7409", + "7410", + "7525", + "8398", + "919" + ] + }, + "GO:0099504": { + "Name": "synaptic vesicle cycle", + "Task": "GO", + "Genes": [ + "1020", + "1173", + "1175", + "163", + "22999", + "23396", + "23557", + "246213", + "5338", + "5413", + "57084", + "5868", + "6571", + "6616", + "6622", + "6804", + "6844", + "7476", + "80331", + "85439", + "8867", + "89780" + ] + }, + "GO:0036257": { + "Name": "multivesicular body organization", + "Task": "GO", + "Genes": [ + "10254", + "11267", + "128866", + "137492", + "155382", + "25978", + "27243", + "51028", + "51160", + "51652", + "55048", + "5873", + "7251", + "79643", + "79720", + "8027", + "84313", + "8766", + "9146", + "92421", + "93343" + ] + }, + "GO:1902751": { + "Name": "positive regulation of cell cycle G2/M phase transition", + "Task": "GO", + "Genes": [ + "1019", + "219736", + "23476", + "26271", + "4869", + "50484", + "51514", + "55920", + "5889", + "5890", + "595", + "6240", + "79915", + "80174", + "8317", + "8444", + "8766", + "891", + "9525", + "983", + "993", + "994" + ] + }, + "GO:1903671": { + "Name": "negative regulation of sprouting angiogenesis", + "Task": "GO", + "Genes": [ + "10365", + "1870", + "22905", + "29924", + "30832", + "5291", + "55333", + "57556", + "7057", + "90993" + ] + }, + "GO:0099003": { + "Name": "vesicle-mediated transport in synapse", + "Task": "GO", + "Genes": [ + "1020", + "1173", + "1175", + "163", + "22999", + "23396", + "23557", + "246213", + "5338", + "5413", + "57084", + "5868", + "6571", + "6616", + "6622", + "6804", + "6844", + "7476", + "80331", + "85439", + "8867", + "89780" + ] + }, + "GO:0002637": { + "Name": "regulation of immunoglobulin production", + "Task": "GO", + "Genes": [ + "10459", + "112441434", + "115352", + "1378", + "149840", + "2048", + "2821", + "3133", + "3558", + "3565", + "3569", + "3586", + "54106", + "54537", + "5788", + "6810", + "7037", + "7040", + "7158", + "7494", + "8741", + "9341" + ] + }, + "GO:0051261": { + "Name": "protein depolymerization", + "Task": "GO", + "Genes": [ + "1072", + "1073", + "11004", + "11034", + "126731", + "146909", + "2580", + "27183", + "2934", + "3312", + "347240", + "3796", + "3925", + "57553", + "57701", + "64780", + "7429", + "81930", + "84643", + "9525", + "9645", + "9793" + ] + }, + "GO:0044090": { + "Name": "positive regulation of vacuole organization", + "Task": "GO", + "Genes": [ + "11152", + "112574", + "22930", + "23130", + "25782", + "2896", + "302", + "345611", + "401548", + "51100", + "51375", + "5305", + "55062", + "5532", + "57192", + "57535", + "5899", + "64112", + "79837", + "8396", + "8723", + "90678" + ] + }, + "GO:0010984": { + "Name": "regulation of lipoprotein particle clearance", + "Task": "GO", + "Genes": [ + "255738", + "26119", + "302", + "3190", + "341", + "344", + "345", + "3949", + "4043", + "8570", + "9388", + "9971" + ] + }, + "GO:0006623": { + "Name": "protein targeting to vacuole", + "Task": "GO", + "Genes": [ + "1191", + "23163", + "26985", + "27183", + "3312", + "345611", + "3920", + "4734", + "51172", + "57154", + "64089", + "6653", + "7879", + "79158", + "8031", + "8878", + "9146", + "9179", + "950", + "9648", + "9765" + ] + }, + "GO:0072666": { + "Name": "establishment of protein localization to vacuole", + "Task": "GO", + "Genes": [ + "1191", + "23163", + "26985", + "27183", + "3312", + "345611", + "3920", + "4734", + "51172", + "57154", + "64089", + "6653", + "7879", + "79158", + "8031", + "8878", + "9146", + "9179", + "950", + "9648", + "9765" + ] + }, + "GO:0039702": { + "Name": "viral budding via host ESCRT complex", + "Task": "GO", + "Genes": [ + "10015", + "128866", + "129531", + "137492", + "155382", + "25978", + "27183", + "27243", + "51160", + "5119", + "51510", + "51652", + "55048", + "57132", + "7251", + "79643", + "79720", + "91782", + "92421", + "93343", + "9525" + ] + }, + "GO:0051489": { + "Name": "regulation of filopodium assembly", + "Task": "GO", + "Genes": [ + "116985", + "1236", + "139818", + "2039", + "2332", + "23433", + "23500", + "2596", + "382", + "4651", + "5064", + "54874", + "5868", + "5898", + "6366", + "653464", + "6624", + "7226", + "84299", + "8829", + "9750" + ] + }, + "GO:1901673": { + "Name": "regulation of mitotic spindle assembly", + "Task": "GO", + "Genes": [ + "10015", + "126731", + "128866", + "256364", + "25978", + "27243", + "3192", + "3303", + "3304", + "4733", + "5119", + "51510", + "51652", + "5347", + "57132", + "7175", + "79598", + "79643", + "91782", + "92421", + "9525" + ] + }, + "GO:0031116": { + "Name": "positive regulation of microtubule polymerization", + "Task": "GO", + "Genes": [ + "10142", + "1639", + "2242", + "22919", + "28964", + "3303", + "3304", + "402", + "4137", + "4204", + "4233", + "4733", + "4926", + "5058", + "55755", + "57606", + "5879", + "6188", + "6249", + "79998", + "89795", + "9793" + ] + }, + "GO:0002861": { + "Name": "regulation of inflammatory response to antigenic stimulus", + "Task": "GO", + "Genes": [ + "10769", + "1432", + "2213", + "2268", + "2534", + "3055", + "3123", + "3133", + "3735", + "4067", + "5045", + "5335", + "55829", + "6714", + "6850", + "7525", + "79651" + ] + }, + "GO:1904376": { + "Name": "negative regulation of protein localization to cell periphery", + "Task": "GO", + "Genes": [ + "112609", + "1173", + "131578", + "1445", + "1601", + "23433", + "2633", + "54585", + "55022", + "5525", + "56246", + "598", + "6248", + "64114", + "65267", + "7040", + "8301", + "8500", + "8650", + "89958", + "9528" + ] + }, + "GO:0045747": { + "Name": "positive regulation of Notch signaling pathway", + "Task": "GO", + "Genes": [ + "10098", + "100996717", + "100996763", + "10413", + "11235", + "22848", + "22905", + "2658", + "3572", + "388677", + "4846", + "4856", + "5584", + "56983", + "6714", + "7042", + "7471", + "81619", + "8626", + "9270", + "94" + ] + }, + "GO:1901185": { + "Name": "negative regulation of ERBB signaling pathway", + "Task": "GO", + "Genes": [ + "122809", + "1956", + "23624", + "26469", + "27246", + "54206", + "55658", + "5771", + "57732", + "5774", + "5782", + "5795", + "7251", + "7879", + "79643", + "84313", + "84619", + "867", + "93650", + "9655", + "9961" + ] + }, + "GO:0031342": { + "Name": "negative regulation of cell killing", + "Task": "GO", + "Genes": [ + "100507436", + "10859", + "1378", + "2213", + "3071", + "3105", + "3106", + "3133", + "3134", + "3135", + "3565", + "3596", + "3805", + "3821", + "3824", + "387837", + "3965", + "409", + "5272", + "6318", + "634", + "7040" + ] + }, + "GO:0045022": { + "Name": "early endosome to late endosome transport", + "Task": "GO", + "Genes": [ + "11267", + "124997", + "22853", + "22863", + "25930", + "29062", + "29911", + "30849", + "51361", + "5289", + "55614", + "5868", + "64089", + "64400", + "7879", + "83547", + "84067", + "84079", + "84376", + "8678", + "9482" + ] + }, + "GO:0098927": { + "Name": "vesicle-mediated transport between endosomal compartments", + "Task": "GO", + "Genes": [ + "11267", + "124997", + "22853", + "22863", + "25930", + "29062", + "29911", + "30849", + "51361", + "5289", + "55614", + "5868", + "64089", + "64400", + "7879", + "83547", + "84067", + "84079", + "84376", + "8678", + "9482" + ] + }, + "GO:0010332": { + "Name": "response to gamma radiation", + "Task": "GO", + "Genes": [ + "10413", + "11011", + "123879", + "1410", + "2177", + "23028", + "2547", + "3265", + "3297", + "4193", + "4609", + "472", + "51776", + "545", + "6154", + "7157", + "7486", + "7520", + "79073", + "85453" + ] + }, + "GO:0036258": { + "Name": "multivesicular body assembly", + "Task": "GO", + "Genes": [ + "10254", + "11267", + "128866", + "137492", + "155382", + "25978", + "27243", + "51028", + "51160", + "51652", + "55048", + "7251", + "79643", + "79720", + "8027", + "84313", + "8766", + "9146", + "92421", + "93343" + ] + }, + "GO:0045954": { + "Name": "positive regulation of natural killer cell mediated cytotoxicity", + "Task": "GO", + "Genes": [ + "10125", + "10666", + "11126", + "114836", + "135250", + "164", + "22914", + "23705", + "259197", + "3133", + "3134", + "3592", + "3593", + "3822", + "3824", + "3916", + "56253", + "5817", + "5819", + "59067" + ] + }, + "GO:0098581": { + "Name": "detection of external biotic stimulus", + "Task": "GO", + "Genes": [ + "10392", + "114770", + "114771", + "23643", + "3105", + "3106", + "3123", + "3929", + "54106", + "57115", + "58484", + "64127", + "64581", + "7096", + "7097", + "7099", + "721", + "8993", + "912", + "949" + ] + }, + "GO:0001914": { + "Name": "regulation of T cell mediated cytotoxicity", + "Task": "GO", + "Genes": [ + "10859", + "177", + "2213", + "3071", + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3135", + "3140", + "3592", + "3821", + "3824", + "5817", + "5819", + "634", + "6375", + "8417", + "9390" + ] + }, + "GO:0045762": { + "Name": "positive regulation of adenylate cyclase activity", + "Task": "GO", + "Genes": [ + "10486", + "10487", + "116", + "136", + "1394", + "140", + "154", + "155", + "1812", + "1816", + "1909", + "2696", + "2740", + "49", + "5032", + "554", + "57413", + "5894", + "6786", + "84876" + ] + }, + "GO:2000353": { + "Name": "positive regulation of endothelial cell apoptotic process", + "Task": "GO", + "Genes": [ + "11126", + "196527", + "27250", + "28984", + "3135", + "356", + "3676", + "5335", + "5584", + "6347", + "641700", + "7040", + "7057", + "8644", + "958", + "959" + ] + }, + "GO:0031468": { + "Name": "nuclear membrane reassembly", + "Task": "GO", + "Genes": [ + "1104", + "128866", + "148362", + "221035", + "22933", + "23141", + "25978", + "27183", + "27243", + "5119", + "51510", + "51652", + "57132", + "6683", + "7329", + "79643", + "80346", + "8815", + "91782", + "92421" + ] + }, + "GO:0002823": { + "Name": "negative regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains", + "Task": "GO", + "Genes": [ + "10859", + "11006", + "1378", + "196", + "2213", + "259307", + "3071", + "3077", + "3134", + "3135", + "3440", + "3456", + "3821", + "3824", + "50943", + "634", + "6375", + "722", + "725", + "941" + ] + }, + "GO:0046631": { + "Name": "alpha-beta T cell activation", + "Task": "GO", + "Genes": [ + "114836", + "161882", + "2625", + "3105", + "3133", + "3146", + "3593", + "3630", + "3716", + "4063", + "4297", + "4602", + "50856", + "50943", + "60437", + "6693", + "6775", + "8320", + "9021" + ] + }, + "GO:0046888": { + "Name": "negative regulation of hormone secretion", + "Task": "GO", + "Genes": [ + "131177", + "1393", + "150", + "23409", + "26056", + "2697", + "353500", + "3589", + "3625", + "3667", + "3767", + "3976", + "5008", + "5071", + "5978", + "64111", + "6422", + "80223", + "8609", + "9727" + ] + }, + "GO:0150115": { + "Name": "cell-substrate junction organization", + "Task": "GO", + "Genes": [ + "1009", + "10979", + "123720", + "1308", + "29984", + "3655", + "3691", + "3915", + "5339", + "55901", + "55920", + "5796", + "613", + "6714", + "79834", + "8394", + "87", + "88", + "89", + "9344" + ] + }, + "GO:0007044": { + "Name": "cell-substrate junction assembly", + "Task": "GO", + "Genes": [ + "1009", + "10979", + "123720", + "1308", + "29984", + "3655", + "3691", + "3915", + "5339", + "55901", + "55920", + "5796", + "613", + "6714", + "79834", + "8394", + "87", + "88", + "89", + "9344" + ] + }, + "GO:0034381": { + "Name": "plasma lipoprotein particle clearance", + "Task": "GO", + "Genes": [ + "23491", + "26119", + "3162", + "335", + "336", + "338", + "341", + "344", + "345", + "348", + "3949", + "3988", + "3990", + "57552", + "6646", + "7436", + "8435", + "9370", + "948", + "949" + ] + }, + "GO:0030947": { + "Name": "regulation of vascular endothelial growth factor receptor signaling pathway", + "Task": "GO", + "Genes": [ + "10016", + "153090", + "22905", + "25865", + "2887", + "3091", + "3553", + "3678", + "3690", + "405", + "4504", + "6091", + "7448", + "79812", + "9146" + ] + }, + "GO:1903077": { + "Name": "negative regulation of protein localization to plasma membrane", + "Task": "GO", + "Genes": [ + "112609", + "1173", + "131578", + "1445", + "1601", + "23433", + "2633", + "55022", + "5525", + "56246", + "598", + "6248", + "64114", + "65267", + "7040", + "8301", + "8500", + "8650", + "9528" + ] + }, + "GO:1902410": { + "Name": "mitotic cytokinetic process", + "Task": "GO", + "Genes": [ + "10015", + "10112", + "116840", + "128866", + "129531", + "200942", + "25978", + "27183", + "27243", + "387", + "5119", + "51510", + "51652", + "55165", + "57132", + "79643", + "91782", + "92421", + "9525" + ] + }, + "GO:0002504": { + "Name": "antigen processing and presentation of peptide or polysaccharide antigen via MHC class II", + "Task": "GO", + "Genes": [ + "10437", + "1509", + "1510", + "1514", + "1515", + "1520", + "1785", + "200576", + "3108", + "3109", + "3113", + "3115", + "3119", + "3122", + "3123", + "55016", + "5641", + "8722" + ] + }, + "GO:0046627": { + "Name": "negative regulation of insulin receptor signaling pathway", + "Task": "GO", + "Genes": [ + "10999", + "23189", + "23371", + "2888", + "2931", + "4690", + "5167", + "51763", + "5305", + "55022", + "5580", + "5588", + "5590", + "6198", + "79837", + "8396" + ] + }, + "GO:1900077": { + "Name": "negative regulation of cellular response to insulin stimulus", + "Task": "GO", + "Genes": [ + "10999", + "23189", + "23371", + "2888", + "2931", + "4690", + "5167", + "51763", + "5305", + "55022", + "5580", + "5588", + "5590", + "6198", + "79837", + "8396" + ] + }, + "GO:0006622": { + "Name": "protein targeting to lysosome", + "Task": "GO", + "Genes": [ + "1191", + "23163", + "26985", + "27183", + "3312", + "3920", + "4734", + "51172", + "64089", + "6653", + "7879", + "79158", + "8031", + "9146", + "9179", + "950", + "9648", + "9765" + ] + }, + "GO:0038096": { + "Name": "Fc-gamma receptor signaling pathway involved in phagocytosis", + "Task": "GO", + "Genes": [ + "10451", + "196051", + "2268", + "25", + "2534", + "3055", + "3984", + "4067", + "5058", + "5338", + "5580", + "5581", + "5747", + "6714", + "6850", + "7409", + "7410", + "7525", + "8398" + ] + }, + "GO:0042059": { + "Name": "negative regulation of epidermal growth factor receptor signaling pathway", + "Task": "GO", + "Genes": [ + "122809", + "1956", + "23624", + "27246", + "54206", + "55658", + "5771", + "57732", + "5774", + "5795", + "7251", + "7879", + "79643", + "84313", + "84619", + "867", + "9655", + "9961" + ] + }, + "GO:0043954": { + "Name": "cellular component maintenance", + "Task": "GO", + "Genes": [ + "10979", + "1436", + "144100", + "1639", + "2149", + "2150", + "2534", + "26060", + "3801", + "55243", + "55765", + "5621", + "5657", + "57126", + "57662", + "7082", + "80856", + "91663" + ] + }, + "GO:0001911": { + "Name": "negative regulation of leukocyte mediated cytotoxicity", + "Task": "GO", + "Genes": [ + "100507436", + "10859", + "2213", + "3071", + "3105", + "3106", + "3133", + "3134", + "3135", + "3805", + "3821", + "3824", + "387837", + "3965", + "409", + "5272", + "6318", + "634", + "7040" + ] + }, + "GO:0007190": { + "Name": "activation of adenylate cyclase activity", + "Task": "GO", + "Genes": [ + "10486", + "10487", + "116", + "136", + "1394", + "140", + "154", + "155", + "1812", + "1816", + "1909", + "2696", + "2740", + "49", + "5032", + "554", + "57413", + "5894" + ] + }, + "GO:0002639": { + "Name": "positive regulation of immunoglobulin production", + "Task": "GO", + "Genes": [ + "10459", + "112441434", + "149840", + "2048", + "2821", + "3133", + "3558", + "3569", + "3586", + "54106", + "54537", + "5788", + "6810", + "7037", + "7040", + "7158", + "7494", + "8741", + "9341" + ] + }, + "GO:0002495": { + "Name": "antigen processing and presentation of peptide antigen via MHC class II", + "Task": "GO", + "Genes": [ + "10437", + "1509", + "1510", + "1514", + "1515", + "1520", + "1785", + "200576", + "3108", + "3109", + "3113", + "3115", + "3119", + "3122", + "3123", + "55016", + "5641", + "8722" + ] + }, + "GO:0010971": { + "Name": "positive regulation of G2/M transition of mitotic cell cycle", + "Task": "GO", + "Genes": [ + "1019", + "219736", + "23476", + "26271", + "50484", + "51514", + "55920", + "5889", + "5890", + "595", + "6240", + "80174", + "8317", + "8766", + "891", + "9525", + "983", + "993", + "994" + ] + }, + "GO:0002474": { + "Name": "antigen processing and presentation of peptide antigen via MHC class I", + "Task": "GO", + "Genes": [ + "1636", + "23457", + "2923", + "3105", + "3106", + "3107", + "3416", + "3551", + "4012", + "50856", + "51128", + "51752", + "55080", + "567", + "64167", + "6890", + "6891", + "6892", + "811" + ] + }, + "GO:2000272": { + "Name": "negative regulation of signaling receptor activity", + "Task": "GO", + "Genes": [ + "10268", + "11006", + "122809", + "1393", + "23624", + "3077", + "387837", + "54206", + "5465", + "5468", + "57732", + "59272", + "7124", + "7251", + "79643", + "84313", + "84619", + "9655" + ] + }, + "GO:0002433": { + "Name": "immune response-regulating cell surface receptor signaling pathway involved in phagocytosis", + "Task": "GO", + "Genes": [ + "10451", + "196051", + "2268", + "25", + "2534", + "3055", + "3984", + "4067", + "5058", + "5338", + "5580", + "5581", + "5747", + "6714", + "6850", + "7409", + "7410", + "7525", + "8398" + ] + }, + "GO:0002431": { + "Name": "Fc receptor mediated stimulatory signaling pathway", + "Task": "GO", + "Genes": [ + "10451", + "196051", + "2268", + "25", + "2534", + "3055", + "3984", + "4067", + "5058", + "5338", + "5580", + "5581", + "5747", + "6714", + "6850", + "7409", + "7410", + "7525", + "8398" + ] + }, + "GO:0001763": { + "Name": "morphogenesis of a branching structure", + "Task": "GO", + "Genes": [ + "1282", + "1499", + "2246", + "2247", + "2255", + "2294", + "2658", + "3791", + "4233", + "5058", + "5310", + "652", + "6997", + "7490", + "9353" + ] + }, + "GO:0045920": { + "Name": "negative regulation of exocytosis", + "Task": "GO", + "Genes": [ + "10079", + "11141", + "11314", + "150", + "2213", + "29091", + "301", + "3071", + "3134", + "3965", + "5071", + "634", + "6622", + "6814", + "7879", + "83452", + "8832", + "9525" + ] + }, + "GO:0035088": { + "Name": "establishment or maintenance of apical/basal cell polarity", + "Task": "GO", + "Genes": [ + "2011", + "23513", + "23616", + "286", + "387", + "4478", + "4649", + "4983", + "50855", + "5584", + "56288", + "57662", + "5911", + "6624", + "7430", + "9368", + "9948" + ] + }, + "GO:0002092": { + "Name": "positive regulation of receptor internalization", + "Task": "GO", + "Genes": [ + "100506013", + "1950", + "2332", + "255738", + "2688", + "284", + "3643", + "408", + "409", + "4908", + "6401", + "6424", + "8862", + "89780", + "967", + "9779", + "9863" + ] + }, + "GO:0061245": { + "Name": "establishment or maintenance of bipolar cell polarity", + "Task": "GO", + "Genes": [ + "2011", + "23513", + "23616", + "286", + "387", + "4478", + "4649", + "4983", + "50855", + "5584", + "56288", + "57662", + "5911", + "6624", + "7430", + "9368", + "9948" + ] + }, + "GO:0035567": { + "Name": "non-canonical Wnt signaling pathway", + "Task": "GO", + "Genes": [ + "11211", + "1855", + "1856", + "1857", + "440193", + "4653", + "51701", + "54361", + "57154", + "6259", + "64750", + "7474", + "7476", + "7484", + "8322", + "8323", + "8324", + "91147" + ] + }, + "GO:0071480": { + "Name": "cellular response to gamma radiation", + "Task": "GO", + "Genes": [ + "10413", + "11011", + "1410", + "23028", + "2547", + "3265", + "3297", + "4193", + "472", + "51776", + "545", + "6154", + "7157", + "7486", + "7520", + "79073", + "85453" + ] + }, + "GO:0030865": { + "Name": "cortical cytoskeleton organization", + "Task": "GO", + "Genes": [ + "114793", + "1739", + "23136", + "23433", + "27183", + "29127", + "3071", + "3551", + "382", + "3996", + "5341", + "6093", + "7124", + "7430", + "752", + "85369", + "9475" + ] + }, + "GO:0046640": { + "Name": "regulation of alpha-beta T cell proliferation", + "Task": "GO", + "Genes": [ + "10148", + "1604", + "29126", + "3105", + "3133", + "3593", + "3606", + "3717", + "3965", + "51561", + "57045", + "6375", + "64115", + "64926", + "7048", + "7297", + "975" + ] + }, + "GO:2000786": { + "Name": "positive regulation of autophagosome assembly", + "Task": "GO", + "Genes": [ + "11152", + "112574", + "22930", + "23130", + "25782", + "401548", + "51100", + "51375", + "5305", + "55062", + "57535", + "5899", + "64112", + "79837", + "8396", + "8723", + "90678" + ] + }, + "GO:0038084": { + "Name": "vascular endothelial growth factor signaling pathway", + "Task": "GO", + "Genes": [ + "116150", + "2324", + "2549", + "25865", + "3315", + "3791", + "4641", + "5156", + "5159", + "5290", + "5293", + "5587", + "5970", + "8829" + ] + }, + "GO:0002712": { + "Name": "regulation of B cell mediated immunity", + "Task": "GO", + "Genes": [ + "10459", + "10666", + "112441434", + "1378", + "149840", + "2213", + "3133", + "3565", + "54537", + "5819", + "695", + "7037", + "7040", + "7158", + "722", + "725", + "8741" + ] + }, + "GO:0045953": { + "Name": "negative regulation of natural killer cell mediated cytotoxicity", + "Task": "GO", + "Genes": [ + "100507436", + "10859", + "3105", + "3106", + "3133", + "3134", + "3135", + "3805", + "3821", + "3824", + "387837", + "3965", + "409", + "5272", + "6318", + "634", + "7040" + ] + }, + "GO:2000641": { + "Name": "regulation of early endosome to late endosome transport", + "Task": "GO", + "Genes": [ + "1601", + "23011", + "23317", + "25930", + "29934", + "404636", + "4478", + "51652", + "55823", + "5594", + "5595", + "5604", + "5605", + "5962", + "6714", + "7430", + "8724" + ] + }, + "GO:0002710": { + "Name": "negative regulation of T cell mediated immunity", + "Task": "GO", + "Genes": [ + "10859", + "11006", + "196", + "2213", + "259307", + "3071", + "3077", + "3134", + "3135", + "3440", + "3456", + "3821", + "3824", + "50943", + "634", + "6375", + "941" + ] + }, + "GO:0019886": { + "Name": "antigen processing and presentation of exogenous peptide antigen via MHC class II", + "Task": "GO", + "Genes": [ + "10437", + "1509", + "1510", + "1514", + "1515", + "1520", + "1785", + "200576", + "3109", + "3113", + "3115", + "3119", + "3122", + "3123", + "5641", + "8722" + ] + }, + "GO:0061099": { + "Name": "negative regulation of protein tyrosine kinase activity", + "Task": "GO", + "Genes": [ + "11006", + "122809", + "23624", + "54206", + "56940", + "5753", + "57732", + "7251", + "79643", + "80725", + "84313", + "84619", + "857", + "8692", + "9655", + "9961" + ] + }, + "GO:1901099": { + "Name": "negative regulation of signal transduction in absence of ligand", + "Task": "GO", + "Genes": [ + "1437", + "207", + "219699", + "2537", + "2623", + "2668", + "3303", + "3304", + "3552", + "3553", + "4170", + "5196", + "5598", + "596", + "598", + "7015", + "7124" + ] + }, + "GO:1903541": { + "Name": "regulation of exosomal secretion", + "Task": "GO", + "Genes": [ + "10015", + "10079", + "11267", + "23400", + "27183", + "27243", + "5071", + "51652", + "6382", + "6385", + "6386", + "7251", + "7879", + "79643", + "8027", + "9146", + "9525" + ] + }, + "GO:0090141": { + "Name": "positive regulation of mitochondrial fission", + "Task": "GO", + "Genes": [ + "10059", + "10928", + "125170", + "1634", + "3791", + "51024", + "54471", + "54708", + "55737", + "56907", + "56947", + "5898", + "664", + "6790", + "79594", + "80821", + "90550" + ] + }, + "GO:1903859": { + "Name": "regulation of dendrite extension", + "Task": "GO", + "Genes": [ + "127833", + "151835", + "22999", + "23025", + "23327", + "50618", + "51760", + "57154", + "57699", + "6857", + "6860", + "84258", + "8437", + "9362", + "9699" + ] + }, + "GO:2001240": { + "Name": "negative regulation of extrinsic apoptotic signaling pathway in absence of ligand", + "Task": "GO", + "Genes": [ + "1437", + "207", + "219699", + "2537", + "2623", + "2668", + "3303", + "3304", + "3552", + "3553", + "4170", + "5196", + "5598", + "596", + "598", + "7015", + "7124" + ] + }, + "GO:0002716": { + "Name": "negative regulation of natural killer cell mediated immunity", + "Task": "GO", + "Genes": [ + "100507436", + "10859", + "3105", + "3106", + "3133", + "3134", + "3135", + "3805", + "3821", + "3824", + "387837", + "3965", + "409", + "5272", + "6318", + "634", + "7040" + ] + }, + "GO:0061952": { + "Name": "midbody abscission", + "Task": "GO", + "Genes": [ + "10015", + "10112", + "128866", + "129531", + "25978", + "27183", + "27243", + "5119", + "51510", + "51652", + "55165", + "57132", + "79643", + "91782", + "92421", + "9525" + ] + }, + "GO:0001778": { + "Name": "plasma membrane repair", + "Task": "GO", + "Genes": [ + "128866", + "25978", + "27243", + "4627", + "5119", + "51510", + "51652", + "57132", + "5864", + "6609", + "79643", + "91782", + "92421", + "94121" + ] + }, + "GO:0048754": { + "Name": "branching morphogenesis of an epithelial tube", + "Task": "GO", + "Genes": [ + "1282", + "1499", + "2246", + "2247", + "2255", + "2658", + "3791", + "4233", + "5058", + "5310", + "652", + "7490", + "9353" + ] + }, + "GO:0071467": { + "Name": "cellular response to pH", + "Task": "GO", + "Genes": [ + "26056", + "27035", + "2822", + "3373", + "338567", + "3645", + "41", + "6337", + "6338", + "6339", + "6340", + "6548", + "7442", + "84329", + "89872", + "9230" + ] + }, + "GO:0002223": { + "Name": "stimulatory C-type lectin receptor signaling pathway", + "Task": "GO", + "Genes": [ + "1387", + "2033", + "2534", + "3551", + "3822", + "3824", + "4067", + "5058", + "5062", + "5063", + "5336", + "6714", + "6850", + "6885", + "7189", + "7305" + ] + }, + "GO:1903358": { + "Name": "regulation of Golgi organization", + "Task": "GO", + "Genes": [ + "10142", + "23271", + "30845", + "4644", + "53407", + "5594", + "5595", + "5604", + "5605", + "57662", + "64145", + "6811", + "79591", + "83452", + "9659", + "9712" + ] + }, + "GO:0002889": { + "Name": "regulation of immunoglobulin mediated immune response", + "Task": "GO", + "Genes": [ + "10459", + "10666", + "112441434", + "1378", + "149840", + "2213", + "3133", + "3565", + "54537", + "5819", + "7037", + "7040", + "7158", + "722", + "725", + "8741" + ] + }, + "GO:0061138": { + "Name": "morphogenesis of a branching epithelium", + "Task": "GO", + "Genes": [ + "1282", + "1499", + "2246", + "2247", + "2255", + "2658", + "3791", + "4233", + "5058", + "5310", + "652", + "7490", + "9353" + ] + }, + "GO:0045197": { + "Name": "establishment or maintenance of epithelial cell apical/basal polarity", + "Task": "GO", + "Genes": [ + "2011", + "23616", + "286", + "387", + "4478", + "4649", + "4983", + "50855", + "5584", + "56288", + "57662", + "5911", + "7430", + "9368", + "9948" + ] + }, + "GO:1990858": { + "Name": "cellular response to lectin", + "Task": "GO", + "Genes": [ + "1387", + "2033", + "2534", + "3551", + "3822", + "3824", + "4067", + "5058", + "5062", + "5063", + "5336", + "6714", + "6850", + "6885", + "7189", + "7305" + ] + }, + "GO:1990840": { + "Name": "response to lectin", + "Task": "GO", + "Genes": [ + "1387", + "2033", + "2534", + "3551", + "3822", + "3824", + "4067", + "5058", + "5062", + "5063", + "5336", + "6714", + "6850", + "6885", + "7189", + "7305" + ] + }, + "GO:0010447": { + "Name": "response to acidic pH", + "Task": "GO", + "Genes": [ + "134391", + "1520", + "26056", + "27035", + "2828", + "2853", + "5641", + "6337", + "6338", + "6339", + "6340", + "6548", + "7442", + "8477", + "89872", + "9230" + ] + }, + "GO:0034331": { + "Name": "cell junction maintenance", + "Task": "GO", + "Genes": [ + "10979", + "1436", + "144100", + "1639", + "2149", + "2150", + "26060", + "3801", + "55243", + "55765", + "5657", + "57126", + "57662", + "7082", + "91663" + ] + }, + "GO:1903861": { + "Name": "positive regulation of dendrite extension", + "Task": "GO", + "Genes": [ + "127833", + "151835", + "22999", + "23025", + "23327", + "50618", + "51760", + "57154", + "57699", + "6857", + "6860", + "84258", + "8437", + "9362", + "9699" + ] + }, + "GO:0072583": { + "Name": "clathrin-dependent endocytosis", + "Task": "GO", + "Genes": [ + "115548", + "1173", + "1175", + "160", + "161", + "163", + "23149", + "23396", + "2580", + "54874", + "55681", + "8301", + "9829", + "9873" + ] + }, + "GO:1902774": { + "Name": "late endosome to lysosome transport", + "Task": "GO", + "Genes": [ + "128866", + "23339", + "25978", + "27072", + "27243", + "5119", + "51510", + "51652", + "57132", + "79643", + "91782", + "92421", + "9842" + ] + }, + "GO:0048041": { + "Name": "focal adhesion assembly", + "Task": "GO", + "Genes": [ + "1009", + "10979", + "123720", + "29984", + "55901", + "55920", + "5796", + "613", + "6714", + "79834", + "8394", + "87", + "88", + "89", + "9344" + ] + }, + "GO:0032366": { + "Name": "intracellular sterol transport", + "Task": "GO", + "Genes": [ + "10577", + "1066", + "134429", + "19", + "26119", + "27183", + "3949", + "4864", + "5007", + "5305", + "57614", + "84947", + "9619", + "9885" + ] + }, + "GO:0030866": { + "Name": "cortical actin cytoskeleton organization", + "Task": "GO", + "Genes": [ + "114793", + "1739", + "23433", + "27183", + "29127", + "3071", + "3551", + "382", + "3996", + "5341", + "6093", + "7124", + "752", + "85369", + "9475" + ] + }, + "GO:0098543": { + "Name": "detection of other organism", + "Task": "GO", + "Genes": [ + "10392", + "114770", + "114771", + "3105", + "3106", + "3123", + "57115", + "58484", + "64127", + "64581", + "7096", + "7097", + "8993", + "912" + ] + }, + "GO:0019883": { + "Name": "antigen processing and presentation of endogenous antigen", + "Task": "GO", + "Genes": [ + "3105", + "3106", + "3107", + "3122", + "3123", + "3133", + "3134", + "3135", + "3416", + "51752", + "567", + "64167", + "6890", + "6891", + "912" + ] + }, + "GO:0002726": { + "Name": "positive regulation of T cell cytokine production", + "Task": "GO", + "Genes": [ + "10892", + "1604", + "163486", + "3105", + "3553", + "3554", + "3565", + "3606", + "567", + "6885", + "7186", + "7189", + "7855", + "8809", + "975" + ] + }, + "GO:0032367": { + "Name": "intracellular cholesterol transport", + "Task": "GO", + "Genes": [ + "10577", + "1066", + "134429", + "19", + "26119", + "27183", + "3949", + "4864", + "5007", + "5305", + "57614", + "84947", + "9619", + "9885" + ] + }, + "GO:0002483": { + "Name": "antigen processing and presentation of endogenous peptide antigen", + "Task": "GO", + "Genes": [ + "3105", + "3106", + "3107", + "3122", + "3123", + "3133", + "3134", + "3135", + "3416", + "51752", + "567", + "64167", + "6890", + "6891" + ] + }, + "GO:0046753": { + "Name": "non-lytic viral release", + "Task": "GO", + "Genes": [ + "128866", + "25978", + "27183", + "27243", + "5119", + "51510", + "51652", + "57132", + "79643", + "91782", + "92421", + "9525" + ] + }, + "GO:0046794": { + "Name": "transport of virus", + "Task": "GO", + "Genes": [ + "10332", + "1514", + "200576", + "2060", + "219931", + "23633", + "30835", + "3838", + "440400", + "53373", + "857", + "858", + "90861", + "9397" + ] + }, + "GO:0032801": { + "Name": "receptor catabolic process", + "Task": "GO", + "Genes": [ + "255738", + "30849", + "441925", + "4734", + "51100", + "54894", + "55614", + "57154", + "7040", + "7405", + "83891", + "84133", + "8678", + "9737" + ] + }, + "GO:0046641": { + "Name": "positive regulation of alpha-beta T cell proliferation", + "Task": "GO", + "Genes": [ + "10148", + "1604", + "3105", + "3133", + "3593", + "3606", + "3717", + "3965", + "51561", + "6375", + "64926", + "7048", + "7297", + "975" + ] + }, + "GO:0016045": { + "Name": "detection of bacterium", + "Task": "GO", + "Genes": [ + "10392", + "114770", + "114771", + "3105", + "3106", + "3123", + "57115", + "58484", + "64127", + "7096", + "7097", + "8993", + "912" + ] + }, + "GO:0030879": { + "Name": "mammary gland development", + "Task": "GO", + "Genes": [ + "1436", + "1447", + "1448", + "2066", + "207", + "208", + "3084", + "4855", + "5021", + "6926", + "6997", + "80139", + "8862", + "9113" + ] + }, + "GO:2001028": { + "Name": "positive regulation of endothelial cell chemotaxis", + "Task": "GO", + "Genes": [ + "2247", + "2260", + "25865", + "3315", + "3791", + "4233", + "5025", + "5587", + "5641", + "64094", + "7114", + "8817", + "8823" + ] + }, + "GO:0042026": { + "Name": "protein refolding", + "Task": "GO", + "Genes": [ + "10294", + "2280", + "2281", + "3300", + "3303", + "3304", + "3305", + "3306", + "3310", + "3312", + "3320", + "3329", + "55466" + ] + }, + "GO:0090382": { + "Name": "phagosome maturation", + "Task": "GO", + "Genes": [ + "10981", + "11031", + "11151", + "200576", + "23682", + "339122", + "54734", + "55647", + "57192", + "7879", + "83871", + "9497" + ] + }, + "GO:0007176": { + "Name": "regulation of epidermal growth factor-activated receptor activity", + "Task": "GO", + "Genes": [ + "122809", + "23624", + "255324", + "54206", + "55294", + "57732", + "653361", + "6868", + "7251", + "79643", + "84313", + "84619", + "9655" + ] + }, + "GO:0045217": { + "Name": "cell-cell junction maintenance", + "Task": "GO", + "Genes": [ + "10979", + "1436", + "144100", + "2149", + "2150", + "3801", + "55243", + "55765", + "5657", + "57126", + "57662", + "7082", + "91663" + ] + }, + "GO:0030038": { + "Name": "contractile actin filament bundle assembly", + "Task": "GO", + "Genes": [ + "11235", + "221061", + "221692", + "253980", + "3688", + "3693", + "387", + "408", + "6714", + "7126", + "7791", + "8452", + "85462" + ] + }, + "GO:0001916": { + "Name": "positive regulation of T cell mediated cytotoxicity", + "Task": "GO", + "Genes": [ + "3105", + "3106", + "3122", + "3123", + "3133", + "3134", + "3140", + "3592", + "5817", + "5819", + "6375", + "8417", + "9390" + ] + }, + "GO:0046761": { + "Name": "viral budding from plasma membrane", + "Task": "GO", + "Genes": [ + "128866", + "25978", + "27183", + "27243", + "5119", + "51510", + "51652", + "57132", + "79643", + "91782", + "92421", + "9525" + ] + }, + "GO:0097242": { + "Name": "amyloid-beta clearance", + "Task": "GO", + "Genes": [ + "3416", + "3480", + "4035", + "4038", + "4043", + "4311", + "54209", + "5868", + "8301", + "8766", + "9230", + "948" + ] + }, + "GO:1903543": { + "Name": "positive regulation of exosomal secretion", + "Task": "GO", + "Genes": [ + "10015", + "11267", + "23400", + "27183", + "27243", + "6382", + "6385", + "6386", + "7251", + "7879", + "8027", + "9146", + "9525" + ] + }, + "GO:0038128": { + "Name": "ERBB2 signaling pathway", + "Task": "GO", + "Genes": [ + "10273", + "1950", + "1956", + "2064", + "2069", + "3084", + "374", + "5753", + "5801", + "6714", + "7039", + "8065", + "8895" + ] + }, + "GO:0043149": { + "Name": "stress fiber assembly", + "Task": "GO", + "Genes": [ + "11235", + "221061", + "221692", + "253980", + "3688", + "3693", + "387", + "408", + "6714", + "7126", + "7791", + "8452", + "85462" + ] + }, + "GO:0031529": { + "Name": "ruffle organization", + "Task": "GO", + "Genes": [ + "1236", + "23647", + "382", + "51474", + "51763", + "5341", + "55604", + "57175", + "5879", + "59338", + "6366", + "8394" + ] + }, + "GO:1904779": { + "Name": "regulation of protein localization to centrosome", + "Task": "GO", + "Genes": [ + "11190", + "137886", + "23636", + "2932", + "324", + "50855", + "55722", + "55968", + "57787", + "636", + "8766", + "9727" + ] + }, + "GO:0036336": { + "Name": "dendritic cell migration", + "Task": "GO", + "Genes": [ + "1230", + "1234", + "1235", + "1236", + "3577", + "3579", + "5294", + "6363", + "6366", + "7852" + ] + }, + "GO:0036465": { + "Name": "synaptic vesicle recycling", + "Task": "GO", + "Genes": [ + "1020", + "1173", + "1175", + "163", + "23396", + "5338", + "5868", + "6804", + "7476", + "85439", + "8867", + "89780" + ] + }, + "GO:0002407": { + "Name": "dendritic cell chemotaxis", + "Task": "GO", + "Genes": [ + "1230", + "1234", + "1235", + "1236", + "3577", + "3579", + "5294", + "6363", + "6366", + "7852" + ] + }, + "GO:0090083": { + "Name": "regulation of inclusion body assembly", + "Task": "GO", + "Genes": [ + "10049", + "1191", + "165721", + "26278", + "3300", + "3303", + "3304", + "3306", + "3337", + "55466", + "9529", + "9627" + ] + }, + "GO:0038083": { + "Name": "peptidyl-tyrosine autophosphorylation", + "Task": "GO", + "Genes": [ + "1956", + "2185", + "238", + "25", + "3480", + "4058", + "4914", + "5595", + "6725", + "780" + ] + }, + "GO:0034383": { + "Name": "low-density lipoprotein particle clearance", + "Task": "GO", + "Genes": [ + "23491", + "26119", + "3162", + "338", + "3949", + "3988", + "57552", + "6646", + "8435", + "9370", + "948" + ] + }, + "GO:0048268": { + "Name": "clathrin coat assembly", + "Task": "GO", + "Genes": [ + "115548", + "1175", + "1211", + "2060", + "23149", + "2580", + "3092", + "50632", + "5286", + "8301" + ] + }, + "GO:0002714": { + "Name": "positive regulation of B cell mediated immunity", + "Task": "GO", + "Genes": [ + "10459", + "10666", + "112441434", + "149840", + "3133", + "54537", + "5819", + "7037", + "7040", + "7158", + "8741" + ] + }, + "GO:0002756": { + "Name": "MyD88-independent toll-like receptor signaling pathway", + "Task": "GO", + "Genes": [ + "146722", + "148022", + "22841", + "29126", + "353376", + "3551", + "3661", + "6885", + "7187", + "7189", + "79931" + ] + }, + "GO:0034498": { + "Name": "early endosome to Golgi transport", + "Task": "GO", + "Genes": [ + "23074", + "29886", + "30845", + "3998", + "54732", + "5870", + "64145", + "6642", + "6811", + "6836", + "8677" + ] + }, + "GO:2001135": { + "Name": "regulation of endocytic recycling", + "Task": "GO", + "Genes": [ + "10079", + "123745", + "22876", + "392", + "50487", + "6653", + "7260", + "8766", + "88", + "9495", + "9727" + ] + }, + "GO:0002891": { + "Name": "positive regulation of immunoglobulin mediated immune response", + "Task": "GO", + "Genes": [ + "10459", + "10666", + "112441434", + "149840", + "3133", + "54537", + "5819", + "7037", + "7040", + "7158", + "8741" + ] + }, + "GO:0071468": { + "Name": "cellular response to acidic pH", + "Task": "GO", + "Genes": [ + "26056", + "27035", + "6337", + "6338", + "6339", + "6340", + "6548", + "7442", + "89872", + "9230" + ] + }, + "GO:0090160": { + "Name": "Golgi to lysosome transport", + "Task": "GO", + "Genes": [ + "1201", + "164", + "2580", + "30845", + "3916", + "51479", + "55297", + "6272", + "64145", + "9179" + ] + }, + "GO:0051900": { + "Name": "regulation of mitochondrial depolarization", + "Task": "GO", + "Genes": [ + "10399", + "10962", + "120892", + "1634", + "213", + "2537", + "3791", + "4653", + "596", + "6714" + ] + }, + "GO:0032509": { + "Name": "endosome transport via multivesicular body sorting pathway", + "Task": "GO", + "Genes": [ + "1130", + "25978", + "404636", + "51652", + "55353", + "6272", + "7415", + "80700", + "83547", + "9525" + ] + }, + "GO:0002507": { + "Name": "tolerance induction", + "Task": "GO", + "Genes": [ + "11006", + "3133", + "3135", + "326", + "3965", + "4067", + "5678", + "7128", + "730249", + "84868" + ] + }, + "GO:0071875": { + "Name": "adrenergic receptor signaling pathway", + "Task": "GO", + "Genes": [ + "1113", + "11214", + "115", + "150", + "151", + "152", + "153", + "154", + "92255", + "9693" + ] + }, + "GO:0010968": { + "Name": "regulation of microtubule nucleation", + "Task": "GO", + "Genes": [ + "1639", + "24139", + "28964", + "29922", + "3303", + "3304", + "4204", + "5058", + "8874", + "9793" + ] + }, + "GO:0070424": { + "Name": "regulation of nucleotide-binding domain, leucine rich repeat containing receptor signaling pathway", + "Task": "GO", + "Genes": [ + "148066", + "26191", + "329", + "330", + "3303", + "3304", + "331", + "55577", + "55914", + "57864" + ] + }, + "GO:0035723": { + "Name": "interleukin-15-mediated signaling pathway", + "Task": "GO", + "Genes": [ + "23236", + "3560", + "3561", + "3600", + "3601", + "3716", + "3718", + "6774", + "6776", + "920" + ] + }, + "GO:0006896": { + "Name": "Golgi to vacuole transport", + "Task": "GO", + "Genes": [ + "1201", + "164", + "2580", + "30845", + "3916", + "51479", + "55297", + "6272", + "64145", + "9179" + ] + }, + "GO:0070672": { + "Name": "response to interleukin-15", + "Task": "GO", + "Genes": [ + "23236", + "3560", + "3561", + "3600", + "3601", + "3716", + "3718", + "6774", + "6776", + "920" + ] + }, + "GO:0071350": { + "Name": "cellular response to interleukin-15", + "Task": "GO", + "Genes": [ + "23236", + "3560", + "3561", + "3600", + "3601", + "3716", + "3718", + "6774", + "6776", + "920" + ] + }, + "GO:1903729": { + "Name": "regulation of plasma membrane organization", + "Task": "GO", + "Genes": [ + "1785", + "2934", + "356", + "4627", + "51100", + "5580", + "57194", + "5864", + "8976", + "94121" + ] + }, + "GO:2001198": { + "Name": "regulation of dendritic cell differentiation", + "Task": "GO", + "Genes": [ + "10288", + "10859", + "177", + "2213", + "3106", + "3135", + "3146", + "3956", + "3958", + "3965" + ] + }, + "HP:0031409": { + "Name": "Abnormal lymphocyte physiology", + "Task": "Monarch", + "Genes": [ + "100", + "10043", + "10111", + "10125", + "10159", + "10165", + "10309", + "10320", + "1041", + "10507", + "10525", + "10526", + "10625", + "10892", + "11005", + "11151", + "11311", + "113235", + "114803", + "115650", + "121391", + "1277", + "1294", + "1312", + "136647", + "1380", + "1457", + "146206", + "147372", + "1493", + "1503", + "16", + "1604", + "165918", + "1678", + "1789", + "1794", + "1828", + "1956", + "1991", + "200942", + "201294", + "204", + "2068", + "2071", + "213", + "2137", + "219285", + "221037", + "2239", + "22861", + "23064", + "2316", + "23387", + "23495", + "23534", + "23765", + "2475", + "2625", + "2629", + "27040", + "2719", + "2812", + "284119", + "2859", + "28956", + "2961", + "29760", + "29775", + "29851", + "30011", + "3070", + "3071", + "3117", + "3119", + "3123", + "331", + "3394", + "340061", + "3431", + "3459", + "3543", + "355", + "3551", + "3559", + "356", + "3560", + "3561", + "3570", + "3572", + "3575", + "3592", + "3594", + "359948", + "3663", + "3702", + "3718", + "374354", + "3845", + "3852", + "3857", + "3861", + "3937", + "3952", + "3953", + "3978", + "3981", + "4000", + "404672", + "4068", + "4125", + "421", + "4247", + "4261", + "4478", + "4485", + "4522", + "4598", + "4683", + "472", + "4780", + "4790", + "4791", + "4792", + "4796", + "4860", + "4893", + "4938", + "493856", + "50485", + "50615", + "50619", + "50943", + "51095", + "51135", + "51311", + "51371", + "51604", + "51750", + "51816", + "5184", + "5238", + "5293", + "5294", + "5295", + "5336", + "537", + "5373", + "5426", + "54440", + "54487", + "5450", + "55343", + "55388", + "5551", + "5557", + "55630", + "55687", + "55719", + "5580", + "56160", + "56259", + "56262", + "567", + "5692", + "5696", + "5698", + "57217", + "5728", + "57379", + "57511", + "57591", + "57724", + "5788", + "58484", + "5873", + "5880", + "5896", + "59067", + "595", + "5966", + "5993", + "5994", + "60468", + "6117", + "6239", + "641", + "64135", + "64170", + "6440", + "64421", + "6499", + "65082", + "6651", + "6688", + "6689", + "6729", + "6772", + "6773", + "6774", + "6777", + "6778", + "6786", + "6813", + "6850", + "6868", + "6897", + "6899", + "6925", + "6929", + "6948", + "695", + "7015", + "7037", + "7040", + "7133", + "7157", + "7174", + "727897", + "7290", + "729238", + "7297", + "7298", + "7353", + "7372", + "7374", + "7454", + "7456", + "7535", + "7555", + "7737", + "7841", + "7852", + "79087", + "7922", + "79258", + "79633", + "79840", + "81704", + "8214", + "8220", + "833", + "83483", + "83737", + "83879", + "84061", + "841", + "843", + "84433", + "84876", + "84888", + "84905", + "8517", + "8546", + "8625", + "8676", + "8737", + "8742", + "8792", + "8883", + "8884", + "8915", + "90268", + "90417", + "9051", + "9056", + "9138", + "915", + "916", + "917", + "919", + "930", + "931", + "939", + "940", + "950", + "9508", + "958", + "959", + "9632", + "96459", + "9652", + "970", + "973", + "974", + "975", + "9839", + "9841", + "987", + "9939", + "9966", + "9993" + ] + }, + "HP:0033796": { + "Name": "Abnormal leukocyte physiology", + "Task": "Monarch", + "Genes": [ + "100", + "10043", + "10111", + "10125", + "10159", + "10165", + "10309", + "10320", + "1041", + "10507", + "10525", + "10526", + "10625", + "10892", + "11005", + "11151", + "11311", + "113235", + "114803", + "115650", + "121391", + "1277", + "1294", + "1312", + "136647", + "1380", + "1457", + "146206", + "147372", + "1493", + "1503", + "16", + "1604", + "165918", + "1678", + "1789", + "1794", + "1828", + "1956", + "1991", + "200942", + "201294", + "204", + "2068", + "2071", + "213", + "2137", + "219285", + "221037", + "2239", + "22861", + "23064", + "2316", + "23387", + "23495", + "23534", + "23765", + "2475", + "2625", + "2629", + "27040", + "2719", + "2812", + "284119", + "2859", + "28956", + "2961", + "29760", + "29775", + "29851", + "30011", + "3070", + "3071", + "3117", + "3119", + "3123", + "331", + "3394", + "340061", + "3431", + "3459", + "3543", + "355", + "3551", + "3559", + "356", + "3560", + "3561", + "3570", + "3572", + "3575", + "3592", + "3594", + "359948", + "3663", + "3702", + "3718", + "374354", + "3845", + "3852", + "3857", + "3861", + "3937", + "3952", + "3953", + "3978", + "3981", + "4000", + "404672", + "4068", + "4125", + "421", + "4247", + "4261", + "4478", + "4485", + "4522", + "4598", + "4683", + "472", + "4780", + "4790", + "4791", + "4792", + "4796", + "4860", + "4893", + "4938", + "493856", + "50485", + "50615", + "50619", + "50943", + "51095", + "51135", + "51311", + "51371", + "51604", + "51750", + "51816", + "5184", + "5238", + "5293", + "5294", + "5295", + "5336", + "537", + "5373", + "5426", + "54440", + "54487", + "5450", + "55343", + "55388", + "5551", + "5557", + "55630", + "55687", + "55719", + "5580", + "56160", + "56259", + "56262", + "567", + "5692", + "5696", + "5698", + "57217", + "5728", + "57379", + "57511", + "57591", + "57724", + "5788", + "58484", + "5873", + "5880", + "5896", + "59067", + "595", + "5966", + "5993", + "5994", + "60468", + "6117", + "6239", + "641", + "64135", + "64170", + "6440", + "64421", + "6499", + "65082", + "6651", + "6688", + "6689", + "6729", + "6772", + "6773", + "6774", + "6777", + "6778", + "6786", + "6813", + "6850", + "6868", + "6897", + "6899", + "6925", + "6929", + "6948", + "695", + "7015", + "7037", + "7040", + "7133", + "7157", + "7174", + "727897", + "7290", + "729238", + "7297", + "7298", + "7353", + "7372", + "7374", + "7454", + "7456", + "7535", + "7555", + "7737", + "7841", + "7852", + "79087", + "7922", + "79258", + "79633", + "79840", + "81704", + "8214", + "8220", + "833", + "83483", + "83737", + "83879", + "84061", + "841", + "843", + "84433", + "84876", + "84888", + "84905", + "8517", + "8546", + "8625", + "8676", + "8737", + "8742", + "8792", + "8883", + "8884", + "8915", + "90268", + "90417", + "9051", + "9056", + "9138", + "915", + "916", + "917", + "919", + "930", + "931", + "939", + "940", + "950", + "9508", + "958", + "959", + "9632", + "96459", + "9652", + "970", + "973", + "974", + "975", + "9839", + "9841", + "987", + "9939", + "9966", + "9993" + ] + }, + "HP:0002577": { + "Name": "Abnormal stomach morphology", + "Task": "Monarch", + "Genes": [ + "10125", + "1019", + "10243", + "10277", + "1029", + "1030", + "10395", + "10516", + "10526", + "10564", + "10630", + "10785", + "11200", + "11277", + "112858", + "113189", + "1244", + "1277", + "127833", + "1289", + "1290", + "1316", + "135886", + "1399", + "147372", + "1493", + "1499", + "1535", + "1536", + "155368", + "155382", + "160418", + "1630", + "169792", + "1717", + "1723", + "1785", + "2000", + "201163", + "2022", + "2033", + "2064", + "207", + "2132", + "2261", + "2263", + "22900", + "22909", + "23013", + "2313", + "2316", + "23261", + "23327", + "23476", + "2563", + "25788", + "25836", + "25913", + "25970", + "2629", + "26608", + "2694", + "27030", + "274", + "2741", + "2743", + "284058", + "284119", + "2956", + "2969", + "30008", + "324", + "326", + "3265", + "3339", + "355", + "3553", + "3557", + "356", + "3655", + "3659", + "3691", + "374879", + "3815", + "3845", + "388015", + "3909", + "3914", + "3918", + "3930", + "3984", + "404672", + "4052", + "4072", + "4089", + "412", + "4131", + "4157", + "4163", + "4193", + "4255", + "4286", + "4292", + "4436", + "4437", + "4534", + "4595", + "4618", + "4629", + "4688", + "4689", + "472", + "473", + "4744", + "4784", + "4790", + "4791", + "4868", + "4893", + "493856", + "5009", + "50619", + "5062", + "50940", + "50943", + "51002", + "51085", + "51341", + "5156", + "5157", + "5189", + "5190", + "5192", + "5194", + "5195", + "5265", + "529", + "5290", + "5320", + "5321", + "5339", + "5378", + "538", + "5395", + "5424", + "5426", + "54386", + "54880", + "54894", + "54897", + "54914", + "55012", + "5528", + "55644", + "55670", + "55697", + "5573", + "55746", + "55780", + "5580", + "55869", + "5590", + "5594", + "57122", + "5727", + "57492", + "5782", + "5795", + "581", + "5824", + "5828", + "5830", + "5831", + "5832", + "5885", + "595", + "5982", + "613", + "6224", + "6261", + "6389", + "63895", + "6390", + "6391", + "63976", + "641", + "64135", + "64218", + "64419", + "64840", + "6497", + "6499", + "653361", + "657", + "6714", + "673", + "675", + "6774", + "6790", + "6794", + "6804", + "6850", + "6885", + "6925", + "6926", + "6928", + "699", + "701", + "7015", + "7043", + "7048", + "7097", + "7148", + "715", + "7157", + "7373", + "7458", + "7461", + "7466", + "7798", + "79415", + "79633", + "79693", + "79719", + "80781", + "81031", + "8243", + "8260", + "8270", + "8313", + "8314", + "84163", + "84231", + "8425", + "84277", + "843", + "84520", + "8468", + "84896", + "84942", + "8504", + "8510", + "8514", + "871", + "8737", + "8788", + "8799", + "8915", + "9031", + "9126", + "9152", + "91754", + "9184", + "9275", + "9319", + "9409", + "9508", + "9509", + "9569", + "9652", + "9702", + "9719", + "9759", + "9839", + "987", + "9896", + "9968", + "999" + ] + }, + "HP:0001874": { + "Name": "Abnormality of neutrophils", + "Task": "Monarch", + "Genes": [ + "10043", + "10125", + "10312", + "10320", + "10430", + "10456", + "10459", + "1053", + "10559", + "10841", + "11224", + "112812", + "1130", + "11311", + "113235", + "114548", + "114803", + "119559", + "134218", + "136647", + "1441", + "148022", + "148867", + "1493", + "150274", + "1535", + "1536", + "157680", + "16", + "166785", + "171023", + "1729", + "1736", + "175", + "1789", + "1991", + "201294", + "204", + "2068", + "2071", + "2120", + "2122", + "2175", + "2176", + "2177", + "2178", + "2189", + "219285", + "23241", + "2328", + "23451", + "2530", + "2542", + "25839", + "25974", + "2623", + "26235", + "2624", + "26277", + "26525", + "2672", + "27429", + "2821", + "28956", + "29071", + "29110", + "2937", + "2961", + "29760", + "29851", + "29927", + "3070", + "3106", + "326625", + "331", + "3394", + "3458", + "3543", + "355", + "3557", + "356", + "3572", + "3575", + "3579", + "359948", + "3815", + "3845", + "3930", + "3937", + "3981", + "404672", + "4068", + "4194", + "4210", + "4261", + "4478", + "4522", + "4548", + "4552", + "4594", + "4598", + "4627", + "4688", + "4689", + "4700", + "4796", + "4860", + "4869", + "4893", + "4926", + "50485", + "5052", + "5073", + "50943", + "5095", + "5096", + "51119", + "51135", + "51311", + "51362", + "51567", + "51594", + "51645", + "51750", + "51816", + "5238", + "5293", + "5294", + "5295", + "5371", + "5373", + "54", + "54440", + "546", + "54790", + "54809", + "54880", + "54888", + "54892", + "55027", + "55135", + "55215", + "55294", + "55343", + "55505", + "5551", + "55651", + "5573", + "55788", + "5580", + "56262", + "57169", + "57724", + "5826", + "5873", + "5880", + "5896", + "5914", + "5971", + "5993", + "5994", + "6125", + "6132", + "6133", + "6135", + "6138", + "6141", + "6154", + "6155", + "6160", + "6165", + "6201", + "6204", + "6208", + "6210", + "6218", + "6223", + "6224", + "6229", + "6231", + "6232", + "6234", + "6235", + "6427", + "64682", + "64859", + "65082", + "653361", + "6573", + "6603", + "6688", + "6728", + "6729", + "6730", + "6772", + "6774", + "6775", + "6777", + "6789", + "6813", + "6897", + "6901", + "6929", + "6948", + "695", + "7015", + "7036", + "7037", + "7066", + "7098", + "7174", + "7187", + "7298", + "7319", + "7454", + "7456", + "7704", + "7737", + "7852", + "7922", + "79415", + "79631", + "79650", + "79718", + "80169", + "8029", + "81570", + "816", + "81608", + "81622", + "81693", + "833", + "83737", + "83879", + "843", + "84522", + "84888", + "8517", + "8546", + "861", + "8625", + "867", + "8676", + "8943", + "90121", + "90268", + "9158", + "92579", + "9401", + "9451", + "958", + "959", + "96459", + "973", + "974", + "9837", + "9841", + "987", + "9948" + ] + }, + "HP:0010701": { + "Name": "Abnormal immunoglobulin level", + "Task": "Monarch", + "Genes": [ + "100", + "10043", + "10111", + "10125", + "10159", + "10165", + "10309", + "10320", + "1041", + "10507", + "10525", + "10526", + "10625", + "10892", + "11005", + "11151", + "11311", + "113235", + "114803", + "115650", + "121391", + "1277", + "1294", + "136647", + "1380", + "1457", + "146206", + "147372", + "1493", + "1503", + "16", + "1604", + "165918", + "1678", + "1789", + "1828", + "1956", + "1991", + "200942", + "201294", + "204", + "2068", + "2071", + "213", + "2137", + "219285", + "2239", + "22861", + "23064", + "2316", + "23387", + "23495", + "23534", + "2475", + "2629", + "27040", + "2719", + "284119", + "2859", + "28956", + "2961", + "29760", + "29775", + "29851", + "30011", + "3070", + "3071", + "3117", + "3119", + "3123", + "331", + "3394", + "340061", + "3431", + "3459", + "3543", + "355", + "3551", + "3559", + "356", + "3560", + "3561", + "3570", + "3572", + "3575", + "3592", + "3594", + "359948", + "3663", + "3702", + "3718", + "374354", + "3845", + "3852", + "3857", + "3861", + "3978", + "3981", + "404672", + "4068", + "4125", + "4247", + "4261", + "4478", + "4485", + "4522", + "4598", + "4683", + "472", + "4780", + "4790", + "4791", + "4792", + "4796", + "4893", + "4938", + "493856", + "50485", + "50615", + "50943", + "51095", + "51135", + "51311", + "51371", + "51604", + "51750", + "51816", + "5184", + "5238", + "5293", + "5294", + "5295", + "5336", + "537", + "5373", + "5426", + "54440", + "5450", + "55343", + "5551", + "5557", + "55687", + "5580", + "56160", + "56259", + "56262", + "567", + "5692", + "5696", + "5698", + "57217", + "5728", + "57379", + "57511", + "57724", + "5788", + "5880", + "5896", + "59067", + "595", + "5966", + "5993", + "5994", + "60468", + "6117", + "641", + "64135", + "64170", + "6440", + "64421", + "6499", + "65082", + "6651", + "6688", + "6689", + "6729", + "6773", + "6774", + "6777", + "6778", + "6786", + "6813", + "6850", + "6868", + "6897", + "6925", + "6929", + "6948", + "695", + "7015", + "7037", + "7040", + "7133", + "7157", + "7174", + "727897", + "729238", + "7297", + "7298", + "7374", + "7454", + "7535", + "7555", + "7737", + "7841", + "7852", + "79087", + "7922", + "79258", + "79633", + "79840", + "81704", + "833", + "83483", + "83737", + "83879", + "84061", + "841", + "843", + "84433", + "84876", + "84888", + "84905", + "8517", + "8625", + "8676", + "8737", + "8742", + "8792", + "8883", + "8884", + "8915", + "90268", + "90417", + "9051", + "9056", + "9138", + "915", + "916", + "917", + "919", + "930", + "931", + "939", + "940", + "950", + "9508", + "958", + "959", + "96459", + "9652", + "970", + "973", + "974", + "975", + "9839", + "9841", + "987", + "9939", + "9966" + ] + }, + "HP:0005372": { + "Name": "Abnormality of B cell physiology", + "Task": "Monarch", + "Genes": [ + "100", + "10043", + "10111", + "10125", + "10159", + "10165", + "10309", + "10320", + "1041", + "10507", + "10525", + "10526", + "10625", + "10892", + "11005", + "11151", + "11311", + "113235", + "114803", + "115650", + "121391", + "1277", + "1294", + "136647", + "1380", + "1457", + "146206", + "147372", + "1493", + "1503", + "16", + "1604", + "165918", + "1678", + "1789", + "1828", + "1956", + "1991", + "200942", + "201294", + "204", + "2068", + "2071", + "213", + "2137", + "219285", + "2239", + "22861", + "23064", + "2316", + "23387", + "23495", + "23534", + "2475", + "2629", + "27040", + "2719", + "284119", + "2859", + "28956", + "2961", + "29760", + "29775", + "29851", + "30011", + "3070", + "3071", + "3117", + "3119", + "3123", + "331", + "3394", + "340061", + "3431", + "3459", + "3543", + "355", + "3551", + "3559", + "356", + "3560", + "3561", + "3570", + "3572", + "3575", + "3592", + "3594", + "359948", + "3663", + "3702", + "3718", + "374354", + "3845", + "3852", + "3857", + "3861", + "3978", + "3981", + "404672", + "4068", + "4125", + "4247", + "4261", + "4478", + "4485", + "4522", + "4598", + "4683", + "472", + "4780", + "4790", + "4791", + "4792", + "4796", + "4860", + "4893", + "4938", + "493856", + "50485", + "50615", + "50943", + "51095", + "51135", + "51311", + "51371", + "51604", + "51750", + "51816", + "5184", + "5238", + "5293", + "5294", + "5295", + "5336", + "537", + "5373", + "5426", + "54440", + "5450", + "55343", + "5551", + "5557", + "55687", + "5580", + "56160", + "56259", + "56262", + "567", + "5692", + "5696", + "5698", + "57217", + "5728", + "57379", + "57511", + "57724", + "5788", + "5880", + "5896", + "59067", + "595", + "5966", + "5993", + "5994", + "60468", + "6117", + "641", + "64135", + "64170", + "6440", + "64421", + "6499", + "65082", + "6651", + "6688", + "6689", + "6729", + "6773", + "6774", + "6777", + "6778", + "6786", + "6813", + "6850", + "6868", + "6897", + "6925", + "6929", + "6948", + "695", + "7015", + "7037", + "7040", + "7133", + "7157", + "7174", + "727897", + "729238", + "7297", + "7298", + "7374", + "7454", + "7535", + "7555", + "7737", + "7841", + "7852", + "79087", + "7922", + "79258", + "79633", + "79840", + "81704", + "833", + "83483", + "83737", + "83879", + "84061", + "841", + "843", + "84433", + "84876", + "84888", + "84905", + "8517", + "8625", + "8676", + "8737", + "8742", + "8792", + "8883", + "8884", + "8915", + "90268", + "90417", + "9051", + "9056", + "9138", + "915", + "916", + "917", + "919", + "930", + "931", + "939", + "940", + "950", + "9508", + "958", + "959", + "96459", + "9652", + "970", + "973", + "974", + "975", + "9839", + "9841", + "987", + "9939", + "9966" + ] + }, + "HP:0032309": { + "Name": "Abnormal granulocyte count", + "Task": "Monarch", + "Genes": [ + "100", + "10043", + "10125", + "10312", + "1041", + "10456", + "10459", + "10526", + "1053", + "10559", + "10999", + "11005", + "11224", + "112812", + "1130", + "11311", + "113235", + "114548", + "114803", + "134218", + "136647", + "1441", + "148022", + "148867", + "1493", + "150274", + "157680", + "16", + "166785", + "171023", + "1729", + "175", + "1991", + "201294", + "204", + "2068", + "2071", + "2120", + "2122", + "2137", + "2175", + "2176", + "2177", + "2178", + "2189", + "219285", + "22861", + "23241", + "2328", + "23451", + "2530", + "2542", + "25839", + "25974", + "2623", + "26235", + "2624", + "26277", + "26525", + "2672", + "27429", + "28956", + "29071", + "2908", + "29110", + "2937", + "2961", + "29760", + "29775", + "29851", + "29927", + "30009", + "3123", + "326625", + "331", + "3394", + "3458", + "3543", + "355", + "3557", + "356", + "3561", + "3572", + "3575", + "3579", + "359948", + "3716", + "3815", + "3845", + "3930", + "3981", + "404672", + "4068", + "4194", + "4210", + "4261", + "4478", + "4548", + "4552", + "4594", + "4598", + "4700", + "4796", + "4860", + "4869", + "4893", + "4926", + "50485", + "5052", + "50943", + "5095", + "5096", + "51119", + "51135", + "51311", + "51362", + "5156", + "51567", + "5159", + "51645", + "51816", + "5238", + "5293", + "5294", + "5295", + "5371", + "54", + "54440", + "546", + "54790", + "54809", + "54880", + "54892", + "55027", + "55215", + "55294", + "55343", + "5551", + "55636", + "5573", + "55788", + "5580", + "56244", + "56262", + "57169", + "57724", + "5826", + "5873", + "5880", + "5896", + "5914", + "5971", + "5993", + "5994", + "60468", + "6125", + "6132", + "6133", + "6135", + "6138", + "6141", + "6154", + "6155", + "6160", + "6165", + "6201", + "6204", + "6210", + "6218", + "6223", + "6224", + "6229", + "6231", + "6232", + "6234", + "6235", + "64072", + "64170", + "6427", + "64421", + "64682", + "64859", + "64919", + "65082", + "6603", + "6688", + "6720", + "6728", + "6729", + "673", + "6730", + "6772", + "6774", + "6775", + "6777", + "6778", + "6789", + "6813", + "6897", + "6901", + "6929", + "6948", + "695", + "7015", + "7036", + "7037", + "7066", + "7098", + "7157", + "7174", + "7187", + "7319", + "7454", + "7456", + "7535", + "7704", + "7737", + "7852", + "7922", + "79631", + "79650", + "79718", + "8029", + "81570", + "816", + "81608", + "81622", + "81693", + "81704", + "825", + "833", + "83737", + "84196", + "843", + "84433", + "84522", + "84905", + "8517", + "8546", + "861", + "8625", + "867", + "8676", + "8943", + "90121", + "90268", + "9101", + "915", + "9158", + "916", + "919", + "92579", + "9401", + "9451", + "958", + "959", + "96459", + "973", + "974", + "9837", + "987", + "9939", + "9948" + ] + }, + "HP:0000490": { + "Name": "Deeply set eye", + "Task": "Monarch", + "Genes": [ + "1000", + "10015", + "10056", + "10059", + "10075", + "10274", + "10277", + "10479", + "10522", + "10526", + "10559", + "1063", + "10630", + "10664", + "10743", + "10801", + "10847", + "10943", + "11128", + "1123", + "1161", + "116931", + "1281", + "128637", + "128869", + "1289", + "129563", + "132158", + "134218", + "1351", + "1387", + "1399", + "145258", + "1487", + "1725", + "178", + "1806", + "182", + "1822", + "1917", + "1984", + "2033", + "2036", + "2067", + "2068", + "2072", + "2074", + "2137", + "2186", + "2193", + "219844", + "2200", + "22827", + "22858", + "22930", + "2294", + "23013", + "23065", + "23096", + "23116", + "2314", + "23162", + "23221", + "23261", + "23314", + "2332", + "23327", + "23404", + "23418", + "23524", + "23592", + "25", + "253738", + "253959", + "2563", + "25782", + "25886", + "259232", + "25942", + "26040", + "26057", + "26137", + "2626", + "2697", + "2702", + "2703", + "27161", + "27238", + "27245", + "2783", + "2799", + "285590", + "2892", + "28958", + "28960", + "2902", + "29998", + "3020", + "3339", + "3480", + "3572", + "3720", + "374654", + "388015", + "3977", + "4089", + "4208", + "4212", + "4285", + "4621", + "4693", + "473", + "4763", + "4784", + "4803", + "4849", + "4858", + "4914", + "4952", + "4953", + "4983", + "5058", + "5063", + "50801", + "51002", + "51322", + "51574", + "51611", + "5290", + "5293", + "5295", + "5339", + "5354", + "5449", + "54496", + "54517", + "5457", + "54897", + "55023", + "55210", + "55212", + "5528", + "55644", + "55699", + "55733", + "55869", + "55870", + "5590", + "55904", + "55906", + "5591", + "5594", + "5631", + "56896", + "57038", + "57167", + "5718", + "57459", + "57479", + "57498", + "57520", + "57531", + "5831", + "5965", + "6045", + "613", + "6329", + "63895", + "63976", + "6497", + "65062", + "6638", + "6651", + "6711", + "6714", + "6748", + "6774", + "6786", + "6792", + "6821", + "6872", + "6901", + "6904", + "6905", + "6913", + "6925", + "6942", + "7042", + "7175", + "729920", + "7319", + "7337", + "7358", + "7518", + "7798", + "7840", + "79184", + "79228", + "79718", + "79759", + "79791", + "7994", + "79989", + "80036", + "80055", + "80185", + "80204", + "80267", + "80816", + "8091", + "816", + "81603", + "81887", + "8242", + "8243", + "8260", + "8295", + "8314", + "833", + "8367", + "8379", + "8405", + "84295", + "84679", + "84876", + "84992", + "8510", + "8514", + "85358", + "8565", + "8788", + "8831", + "8882", + "8905", + "8913", + "8936", + "90161", + "90417", + "91147", + "9158", + "91801", + "92344", + "9319", + "93627", + "9377", + "9702", + "9739", + "9757", + "9759", + "9772", + "9839", + "9915", + "9935" + ] + }, + "HP:0001558": { + "Name": "Decreased fetal movement", + "Task": "Monarch", + "Genes": [ + "100128927", + "10059", + "10102", + "10269", + "10293", + "10324", + "10522", + "10659", + "10743", + "10815", + "10991", + "1103", + "112", + "1134", + "1144", + "1145", + "1146", + "1147", + "115286", + "116150", + "1272", + "127833", + "1291", + "1292", + "1293", + "1303", + "1305", + "131377", + "1355", + "145173", + "146862", + "1487", + "157680", + "16", + "163175", + "1717", + "1759", + "1760", + "1763", + "1785", + "1798", + "1861", + "1917", + "199857", + "2065", + "2073", + "2257", + "2258", + "2261", + "22866", + "2290", + "22906", + "23096", + "23097", + "23114", + "2314", + "23219", + "23241", + "23299", + "23334", + "23345", + "23511", + "23742", + "253738", + "2555", + "2558", + "2561", + "2566", + "25973", + "25977", + "26227", + "2629", + "2632", + "2673", + "26999", + "27238", + "27315", + "2733", + "274", + "2783", + "284111", + "284403", + "285489", + "2906", + "29925", + "29968", + "342035", + "3481", + "348980", + "3508", + "3560", + "3679", + "3737", + "3745", + "375790", + "3800", + "389827", + "390594", + "3954", + "4000", + "429", + "440", + "4534", + "4593", + "4613", + "4618", + "4621", + "4632", + "4633", + "4649", + "4654", + "4692", + "477", + "478", + "4915", + "4927", + "4948", + "4953", + "5081", + "51008", + "51126", + "51244", + "51343", + "51412", + "51611", + "51651", + "51692", + "51741", + "51776", + "523", + "5351", + "53834", + "5393", + "54101", + "54499", + "54551", + "54872", + "5495", + "55033", + "55152", + "55164", + "5530", + "55605", + "55681", + "55906", + "56203", + "56896", + "57003", + "57190", + "57211", + "57222", + "57572", + "58", + "5824", + "58497", + "5913", + "59341", + "5979", + "60386", + "60482", + "6261", + "6328", + "6329", + "6334", + "64324", + "64419", + "64801", + "6506", + "6519", + "6567", + "6572", + "6576", + "6606", + "6616", + "6638", + "6663", + "6843", + "6885", + "7125", + "7169", + "7170", + "729920", + "7317", + "7468", + "7469", + "7532", + "7681", + "773", + "774", + "781", + "7846", + "7874", + "79053", + "79796", + "79823", + "79876", + "79947", + "8087", + "8120", + "81570", + "8260", + "8364", + "84466", + "84570", + "84665", + "8504", + "8506", + "8831", + "8867", + "8924", + "8929", + "91754", + "9200", + "9325", + "93627", + "94005", + "9453", + "9568", + "9570", + "9578", + "9581" + ] + }, + "HP:0011119": { + "Name": "Abnormal nasal dorsum morphology", + "Task": "Monarch", + "Genes": [ + "10013", + "10157", + "10269", + "10277", + "10293", + "103", + "10535", + "1062", + "10630", + "10651", + "10682", + "10733", + "10735", + "10815", + "10913", + "10943", + "11128", + "11277", + "113179", + "113246", + "1134", + "1144", + "1146", + "117581", + "1182", + "124583", + "126695", + "1277", + "1278", + "1281", + "128178", + "134353", + "1387", + "1487", + "1513", + "157680", + "168667", + "1763", + "182", + "1896", + "1947", + "197131", + "199221", + "2033", + "2068", + "2072", + "2077", + "2200", + "221496", + "2253", + "2260", + "2261", + "2263", + "2296", + "22995", + "23007", + "23013", + "23312", + "23314", + "23322", + "23404", + "23426", + "23511", + "23512", + "2542", + "256297", + "2563", + "25839", + "259232", + "25939", + "26123", + "26154", + "2619", + "26227", + "26235", + "26281", + "2674", + "2688", + "2690", + "2697", + "27077", + "2720", + "2736", + "2737", + "28514", + "28952", + "29081", + "29957", + "29968", + "29980", + "30008", + "3170", + "3187", + "3190", + "324", + "3265", + "3313", + "3339", + "3479", + "3559", + "3590", + "3930", + "3954", + "3981", + "4000", + "4038", + "4052", + "4125", + "415", + "4212", + "4247", + "4330", + "444", + "4621", + "4683", + "473", + "4792", + "4838", + "4849", + "4893", + "4921", + "5015", + "5077", + "5081", + "50937", + "50964", + "51053", + "51132", + "5116", + "51259", + "51360", + "5144", + "5159", + "5184", + "5189", + "529", + "5314", + "538", + "53834", + "5424", + "5449", + "54496", + "545", + "546", + "54897", + "54903", + "54914", + "55012", + "55165", + "55343", + "5573", + "55777", + "55790", + "55835", + "55870", + "5590", + "5626", + "5631", + "56975", + "57096", + "5727", + "57545", + "5781", + "5831", + "5832", + "5932", + "5965", + "5977", + "5979", + "60401", + "60529", + "6223", + "63976", + "64135", + "64327", + "6469", + "6491", + "6496", + "6497", + "65062", + "6595", + "6658", + "6662", + "6777", + "6899", + "6905", + "699", + "6997", + "701", + "7021", + "7050", + "7189", + "7291", + "7468", + "7484", + "7486", + "7518", + "7546", + "7798", + "79583", + "79600", + "79621", + "79718", + "79770", + "79796", + "79840", + "79848", + "79867", + "79902", + "80000", + "80152", + "80184", + "80324", + "80776", + "81031", + "8243", + "83737", + "84126", + "84153", + "84314", + "84942", + "84976", + "8510", + "8514", + "8516", + "85358", + "857", + "860", + "8815", + "8820", + "8882", + "8928", + "89884", + "91147", + "91179", + "91754", + "9179", + "9184", + "9319", + "9342", + "93986", + "9401", + "9487", + "9652", + "9702", + "9839" + ] + }, + "HP:0001557": { + "Name": "Prenatal movement abnormality", + "Task": "Monarch", + "Genes": [ + "100128927", + "10059", + "10102", + "10269", + "10293", + "10324", + "10522", + "10659", + "10743", + "10815", + "10991", + "1103", + "112", + "11212", + "1134", + "1144", + "1145", + "1146", + "1147", + "115286", + "116150", + "1272", + "127833", + "1291", + "1292", + "1293", + "1303", + "1305", + "131377", + "1355", + "145173", + "146862", + "1487", + "157680", + "16", + "163175", + "1717", + "1759", + "1760", + "1763", + "1785", + "1798", + "1861", + "1917", + "199857", + "2065", + "2073", + "2257", + "2258", + "2261", + "22866", + "2290", + "22906", + "23096", + "23097", + "23114", + "2314", + "23219", + "23241", + "23299", + "23334", + "23345", + "23476", + "23511", + "23742", + "253738", + "2555", + "2558", + "2561", + "2566", + "25836", + "259232", + "25973", + "25977", + "26227", + "2629", + "2632", + "2673", + "26999", + "27238", + "27315", + "2733", + "274", + "2743", + "2783", + "284111", + "284403", + "285489", + "2906", + "29925", + "29968", + "3339", + "340533", + "342035", + "3481", + "348980", + "3508", + "3560", + "3679", + "3737", + "3745", + "375790", + "3800", + "389827", + "390594", + "3954", + "4000", + "429", + "440", + "4534", + "4593", + "4613", + "4618", + "4621", + "4632", + "4633", + "4649", + "4654", + "4692", + "477", + "478", + "4915", + "4927", + "4948", + "4953", + "501", + "5081", + "51008", + "51126", + "51244", + "51343", + "51412", + "51611", + "51651", + "51692", + "51741", + "51776", + "523", + "5351", + "53834", + "5393", + "54101", + "54499", + "54551", + "54872", + "5495", + "55033", + "55152", + "55164", + "5530", + "55605", + "55681", + "55869", + "55906", + "56203", + "56896", + "57003", + "57190", + "57211", + "57222", + "57572", + "58", + "5824", + "58497", + "5885", + "5913", + "59341", + "5979", + "60386", + "60482", + "6261", + "6328", + "6329", + "6334", + "64324", + "64419", + "64801", + "6506", + "6519", + "6567", + "6572", + "6576", + "6606", + "6616", + "6638", + "6663", + "6843", + "6885", + "7125", + "7169", + "7170", + "729920", + "7317", + "7468", + "7469", + "7532", + "7681", + "773", + "774", + "781", + "7846", + "7874", + "79053", + "79796", + "79823", + "79876", + "79947", + "8087", + "8120", + "81570", + "8243", + "8260", + "8364", + "84466", + "84570", + "84665", + "8504", + "8506", + "8831", + "8867", + "8924", + "8929", + "9126", + "91754", + "9200", + "9325", + "93627", + "94005", + "9453", + "9568", + "9570", + "9578", + "9581" + ] + }, + "HP:0007379": { + "Name": "Neoplasm of the genitourinary tract", + "Task": "Monarch", + "Genes": [ + "100144748", + "10111", + "10155", + "1027", + "1028", + "1029", + "10297", + "10395", + "10483", + "10587", + "10734", + "11200", + "11224", + "11236", + "11281", + "126792", + "1287", + "1288", + "129563", + "1316", + "1387", + "1499", + "1584", + "161742", + "1630", + "168667", + "171023", + "1743", + "190", + "201163", + "2033", + "2048", + "205717", + "2064", + "207", + "2130", + "2132", + "2239", + "2261", + "2263", + "2271", + "22909", + "23022", + "2304", + "23095", + "2313", + "23405", + "23414", + "23530", + "2516", + "25788", + "26040", + "2623", + "2624", + "2626", + "26585", + "27030", + "2719", + "2778", + "284058", + "285282", + "29072", + "2956", + "3026", + "3110", + "324", + "3265", + "3417", + "3418", + "3458", + "3481", + "367", + "3784", + "3815", + "3845", + "388662", + "4000", + "4072", + "4089", + "412", + "4149", + "4158", + "4163", + "4191", + "4193", + "4214", + "4233", + "4292", + "4361", + "4436", + "4437", + "4591", + "4595", + "4598", + "4601", + "463", + "4665", + "4683", + "472", + "4763", + "4771", + "4893", + "4913", + "4968", + "4978", + "5071", + "5080", + "50846", + "50940", + "51004", + "51317", + "5157", + "51684", + "51741", + "51816", + "5290", + "5320", + "5378", + "538", + "5395", + "5424", + "5426", + "54894", + "54949", + "55027", + "55193", + "5546", + "55612", + "55654", + "5573", + "56246", + "5727", + "5728", + "57647", + "5782", + "5795", + "580", + "581", + "58524", + "5888", + "5889", + "5892", + "5925", + "595", + "5970", + "5978", + "5979", + "6041", + "60529", + "6125", + "6132", + "6133", + "6135", + "6138", + "6141", + "6154", + "6155", + "6160", + "6165", + "6201", + "6204", + "6210", + "6218", + "6223", + "6224", + "6229", + "6231", + "6232", + "6234", + "6235", + "6389", + "6390", + "6391", + "6392", + "641", + "64127", + "64218", + "64324", + "657", + "6597", + "6598", + "65998", + "6662", + "6714", + "672", + "673", + "6736", + "675", + "6770", + "6778", + "6790", + "6794", + "6845", + "6927", + "6928", + "699", + "701", + "7030", + "7048", + "7097", + "7157", + "716", + "7248", + "7249", + "7373", + "7428", + "7486", + "7490", + "7852", + "79577", + "79719", + "79728", + "79798", + "80326", + "81704", + "8216", + "8313", + "8314", + "8379", + "83990", + "8402", + "8643", + "8915", + "8930", + "90121", + "9158", + "9184", + "9319", + "9562", + "9702", + "9759", + "9817", + "999" + ] + }, + "HP:0011991": { + "Name": "Abnormal neutrophil count", + "Task": "Monarch", + "Genes": [ + "10043", + "10125", + "10312", + "10456", + "10459", + "1053", + "10559", + "11224", + "112812", + "1130", + "11311", + "113235", + "114803", + "134218", + "136647", + "1441", + "148022", + "148867", + "1493", + "150274", + "157680", + "16", + "166785", + "171023", + "1729", + "175", + "1991", + "201294", + "2068", + "2071", + "2120", + "2122", + "2175", + "2176", + "2177", + "2178", + "2189", + "219285", + "23241", + "2328", + "23451", + "2530", + "2542", + "25839", + "25974", + "2623", + "26235", + "2624", + "26277", + "26525", + "2672", + "27429", + "28956", + "29071", + "29110", + "2937", + "2961", + "29760", + "29851", + "29927", + "326625", + "331", + "3394", + "3458", + "3543", + "355", + "3557", + "356", + "3572", + "3575", + "3579", + "359948", + "3815", + "3845", + "3930", + "404672", + "4068", + "4194", + "4210", + "4261", + "4478", + "4548", + "4552", + "4594", + "4598", + "4700", + "4796", + "4860", + "4869", + "4893", + "4926", + "50485", + "5052", + "50943", + "5095", + "5096", + "51119", + "51135", + "51311", + "51362", + "51567", + "51645", + "51816", + "5238", + "5293", + "5294", + "5295", + "5371", + "54", + "54440", + "546", + "54790", + "54809", + "54880", + "54892", + "55027", + "55215", + "55294", + "55343", + "5551", + "5573", + "55788", + "5580", + "56262", + "57169", + "57724", + "5826", + "5873", + "5880", + "5896", + "5914", + "5971", + "5993", + "5994", + "6125", + "6132", + "6133", + "6135", + "6138", + "6141", + "6154", + "6155", + "6160", + "6165", + "6201", + "6204", + "6210", + "6218", + "6223", + "6224", + "6229", + "6231", + "6232", + "6234", + "6235", + "6427", + "64682", + "64859", + "65082", + "6603", + "6688", + "6728", + "6729", + "6730", + "6772", + "6774", + "6775", + "6777", + "6789", + "6813", + "6897", + "6901", + "6929", + "6948", + "695", + "7015", + "7036", + "7037", + "7066", + "7098", + "7174", + "7187", + "7319", + "7454", + "7456", + "7704", + "7737", + "7852", + "7922", + "79631", + "79650", + "79718", + "8029", + "81570", + "816", + "81608", + "81622", + "81693", + "833", + "83737", + "843", + "84522", + "8517", + "8546", + "861", + "8625", + "867", + "8676", + "8943", + "90121", + "90268", + "9158", + "92579", + "9401", + "9451", + "958", + "959", + "96459", + "973", + "974", + "9837", + "987", + "9948" + ] + }, + "HP:0100533": { + "Name": "Inflammatory abnormality of the eye", + "Task": "Monarch", + "Genes": [ + "10095", + "10125", + "10273", + "10320", + "10507", + "105371045", + "10758", + "10804", + "10892", + "114548", + "115650", + "1161", + "121214", + "1230", + "1287", + "1288", + "1294", + "130340", + "1308", + "136647", + "1380", + "144811", + "1474", + "149233", + "1493", + "1535", + "1536", + "16", + "162", + "1643", + "165", + "1736", + "1776", + "1956", + "204219", + "2067", + "2068", + "2071", + "2072", + "2073", + "2074", + "2077", + "2200", + "220202", + "224", + "2255", + "2261", + "2263", + "22861", + "2303", + "23129", + "23451", + "23476", + "23495", + "23556", + "242", + "25836", + "26154", + "26191", + "2623", + "26277", + "26525", + "2697", + "2706", + "2767", + "2776", + "2778", + "285848", + "2859", + "2934", + "2961", + "29760", + "29851", + "3105", + "3106", + "3113", + "3115", + "3123", + "3141", + "326", + "330", + "3321", + "337867", + "3459", + "348", + "348938", + "3543", + "355", + "3559", + "356", + "3560", + "3569", + "3572", + "3586", + "3592", + "3593", + "3662", + "3930", + "404672", + "4072", + "4081", + "4210", + "4282", + "4312", + "4485", + "4547", + "4688", + "4689", + "4869", + "4914", + "5073", + "5075", + "5080", + "51360", + "51750", + "51752", + "5295", + "5333", + "5339", + "5340", + "5429", + "54809", + "54941", + "55135", + "55315", + "55343", + "55505", + "55612", + "55630", + "55651", + "55699", + "5580", + "55869", + "56244", + "56262", + "5657", + "5692", + "5696", + "5698", + "57105", + "5771", + "5885", + "5896", + "59344", + "5965", + "5980", + "6307", + "6335", + "641", + "64127", + "65082", + "653361", + "6688", + "6720", + "6768", + "6775", + "6820", + "6868", + "6897", + "6925", + "6929", + "6945", + "695", + "7015", + "7037", + "7051", + "7086", + "7099", + "7128", + "7132", + "720", + "726", + "7298", + "7389", + "7390", + "7454", + "7456", + "7507", + "7508", + "7737", + "7922", + "79415", + "79650", + "79722", + "7994", + "80169", + "8218", + "8243", + "8302", + "8314", + "833", + "843", + "8517", + "8626", + "8675", + "8676", + "8915", + "9126", + "919", + "9244", + "930", + "939", + "9496", + "973", + "974", + "987" + ] + }, + "HP:0100755": { + "Name": "Abnormality of salivation", + "Task": "Monarch", + "Genes": [ + "10059", + "10087", + "10133", + "10159", + "10318", + "10320", + "10479", + "10522", + "10588", + "10717", + "10846", + "10891", + "11128", + "11154", + "11277", + "1131", + "1235", + "128178", + "128989", + "1380", + "1490", + "1493", + "1512", + "1610", + "1639", + "1644", + "170302", + "1737", + "1773", + "1968", + "2043", + "2066", + "2113", + "2137", + "2192", + "2213", + "221895", + "2255", + "2261", + "2263", + "2290", + "23013", + "23025", + "23111", + "23141", + "23219", + "23230", + "23261", + "23314", + "23431", + "23435", + "2521", + "2554", + "2566", + "259232", + "25978", + "26191", + "27107", + "27286", + "2733", + "2799", + "283", + "283489", + "2898", + "2903", + "2906", + "29110", + "2934", + "29978", + "3060", + "3097", + "3106", + "311", + "3119", + "3123", + "3178", + "3188", + "340533", + "347733", + "3586", + "3654", + "3663", + "3684", + "374654", + "3747", + "388015", + "3930", + "400916", + "4204", + "4340", + "4361", + "4744", + "4750", + "478", + "4784", + "4841", + "4948", + "5010", + "5032", + "5063", + "51126", + "51284", + "51319", + "5133", + "5216", + "5297", + "5376", + "540", + "54209", + "5444", + "5445", + "5446", + "5455", + "54551", + "546", + "54899", + "55024", + "55209", + "5524", + "55617", + "55697", + "55703", + "55739", + "55777", + "55830", + "55906", + "5630", + "5631", + "56992", + "57194", + "57468", + "57526", + "57679", + "5805", + "5860", + "63035", + "6304", + "6311", + "6323", + "6324", + "6326", + "6335", + "640", + "64127", + "6472", + "64834", + "6492", + "6509", + "6558", + "6567", + "6595", + "6638", + "6647", + "6696", + "6711", + "6775", + "6899", + "7054", + "710", + "7128", + "720", + "721", + "7292", + "7332", + "7337", + "7415", + "755", + "7703", + "79628", + "79932", + "80856", + "8148", + "83548", + "8398", + "84340", + "84628", + "84679", + "84706", + "84823", + "84842", + "857", + "8604", + "8626", + "8788", + "8831", + "8878", + "8911", + "8925", + "899", + "9071", + "9179", + "9217", + "9230", + "92335", + "9256", + "9289", + "9378", + "93986", + "9442", + "9487", + "9568", + "9675", + "9759", + "9782", + "9839", + "9896", + "9968" + ] + }, + "HP:0012433": { + "Name": "Abnormal social behavior", + "Task": "Monarch", + "Genes": [ + "10297", + "10347", + "10352", + "10381", + "10452", + "10479", + "10682", + "10716", + "10717", + "10771", + "10785", + "1106", + "11113", + "11154", + "11315", + "1173", + "120892", + "135886", + "136647", + "1387", + "1436", + "1496", + "155368", + "155382", + "158", + "16", + "160418", + "1639", + "167691", + "1806", + "200424", + "2033", + "2068", + "2071", + "22854", + "22871", + "2290", + "23096", + "23102", + "23126", + "23230", + "23261", + "2332", + "23389", + "23394", + "23431", + "23524", + "2554", + "2562", + "2566", + "25970", + "25978", + "26040", + "26047", + "26608", + "271", + "2737", + "27429", + "2760", + "283489", + "284058", + "2896", + "2898", + "2902", + "29072", + "2961", + "2969", + "3028", + "340533", + "3458", + "351", + "3708", + "388015", + "388662", + "3984", + "404672", + "410", + "4123", + "4137", + "4204", + "440138", + "4763", + "4841", + "4858", + "4948", + "4983", + "5071", + "51085", + "51132", + "5119", + "51362", + "5138", + "51645", + "5283", + "5420", + "54209", + "5422", + "5457", + "546", + "54664", + "54832", + "54902", + "55367", + "5575", + "55777", + "55812", + "5660", + "5663", + "5664", + "57102", + "57194", + "57231", + "57459", + "57511", + "57526", + "5982", + "6121", + "6323", + "65018", + "6513", + "6529", + "653361", + "6535", + "6595", + "6622", + "6638", + "6653", + "6711", + "6792", + "6804", + "6833", + "6897", + "7248", + "7249", + "7305", + "7337", + "7345", + "7415", + "7458", + "7461", + "7737", + "79971", + "80055", + "80856", + "8243", + "833", + "83479", + "83480", + "8398", + "84163", + "84277", + "84628", + "8468", + "84894", + "85358", + "8629", + "8788", + "8812", + "8831", + "8867", + "8878", + "8912", + "8913", + "8925", + "9031", + "9179", + "9227", + "9275", + "93986", + "94005", + "9568", + "9569", + "9675", + "9829", + "9894", + "9968" + ] + }, + "HP:0001387": { + "Name": "Joint stiffness", + "Task": "Monarch", + "Genes": [ + "10216", + "10243", + "10262", + "10269", + "10277", + "10436", + "10522", + "10585", + "10630", + "10651", + "10743", + "112476", + "118429", + "1277", + "1278", + "1280", + "128637", + "1311", + "135886", + "138050", + "155368", + "155382", + "170691", + "175", + "1836", + "2010", + "2067", + "2068", + "207", + "2073", + "2074", + "2146", + "2200", + "2201", + "222663", + "224", + "2254", + "2261", + "2273", + "22930", + "22931", + "22943", + "23013", + "23096", + "2314", + "2316", + "23224", + "23345", + "23476", + "23483", + "23512", + "23592", + "256297", + "2563", + "25782", + "25836", + "259232", + "25953", + "26040", + "26191", + "26608", + "2720", + "2741", + "2743", + "2799", + "285362", + "285590", + "2969", + "2990", + "3077", + "3081", + "3106", + "3123", + "3248", + "3339", + "340061", + "3417", + "3418", + "3425", + "3559", + "3560", + "3586", + "3636", + "3664", + "3889", + "3897", + "3984", + "4000", + "4047", + "4053", + "4054", + "4089", + "411", + "4125", + "4148", + "4204", + "4261", + "4318", + "4322", + "443", + "4604", + "4621", + "4659", + "4669", + "4722", + "473", + "4795", + "4882", + "493856", + "4952", + "50515", + "5077", + "51085", + "5119", + "5130", + "51744", + "5307", + "5352", + "54507", + "546", + "54676", + "54820", + "54829", + "54897", + "55869", + "5590", + "57167", + "5728", + "5745", + "5771", + "57724", + "5885", + "59341", + "5982", + "60", + "60681", + "63895", + "63976", + "6399", + "64324", + "6448", + "6473", + "6497", + "65082", + "653361", + "654", + "658", + "6583", + "6775", + "6804", + "6910", + "6926", + "71", + "7136", + "7140", + "7169", + "72", + "7458", + "7461", + "7466", + "7486", + "7798", + "79158", + "79188", + "79650", + "79722", + "80199", + "81794", + "81839", + "8200", + "8243", + "8398", + "84163", + "84277", + "84572", + "8468", + "84896", + "8510", + "8514", + "8726", + "875", + "8815", + "8838", + "8883", + "8974", + "9031", + "9126", + "9152", + "91754", + "919", + "9217", + "9241", + "9275", + "9401", + "9509", + "9555", + "9569", + "9719", + "9927" + ] + }, + "HP:0002829": { + "Name": "Arthralgia", + "Task": "Monarch", + "Genes": [ + "10661", + "10801", + "11277", + "114548", + "115650", + "118429", + "1188", + "1230", + "1235", + "1277", + "1280", + "1289", + "1290", + "1297", + "1300", + "1301", + "1302", + "130340", + "1311", + "1314", + "135886", + "1380", + "144811", + "1490", + "149233", + "1493", + "1499", + "155368", + "155382", + "1604", + "1643", + "171023", + "1836", + "2057", + "2068", + "2071", + "2072", + "2073", + "2157", + "23495", + "23592", + "2512", + "255738", + "26119", + "26191", + "26525", + "26608", + "2717", + "2783", + "2969", + "29851", + "29940", + "30061", + "3043", + "3047", + "3048", + "3077", + "3081", + "3106", + "3113", + "3115", + "3117", + "3119", + "3123", + "324", + "3248", + "337867", + "338", + "340061", + "3459", + "355", + "3557", + "3559", + "3560", + "3569", + "3586", + "3592", + "3593", + "359948", + "3654", + "3662", + "3663", + "368", + "3717", + "374654", + "3815", + "3930", + "3949", + "3984", + "4000", + "4087", + "411", + "4148", + "4210", + "4261", + "427", + "4282", + "4313", + "4352", + "4598", + "4621", + "4790", + "4791", + "4795", + "4853", + "4982", + "50515", + "50964", + "51085", + "51284", + "51371", + "51604", + "5167", + "51744", + "51752", + "51816", + "5251", + "53335", + "5336", + "540", + "54209", + "54790", + "54829", + "55325", + "5580", + "56172", + "5657", + "5692", + "5696", + "5698", + "5745", + "5771", + "58484", + "5982", + "6303", + "6307", + "6399", + "64127", + "6424", + "64240", + "64241", + "6427", + "653361", + "654", + "6559", + "6578", + "6583", + "65992", + "6609", + "6696", + "6775", + "6804", + "6945", + "7099", + "7132", + "7148", + "715", + "716", + "720", + "7227", + "7305", + "7317", + "7415", + "7458", + "7461", + "7507", + "7508", + "79722", + "8302", + "83550", + "84163", + "84277", + "84572", + "8468", + "84823", + "857", + "861", + "867", + "8742", + "8838", + "8974", + "90268", + "9031", + "9049", + "9051", + "91461", + "91662", + "919", + "9275", + "930", + "931", + "9469", + "9569", + "9663", + "975", + "9927", + "9935" + ] + }, + "HP:0001909": { + "Name": "Leukemia", + "Task": "Monarch", + "Genes": [ + "10019", + "1029", + "10297", + "103", + "10312", + "10320", + "10456", + "1050", + "10535", + "11200", + "11224", + "11277", + "11280", + "128", + "132884", + "134218", + "134353", + "1387", + "161742", + "171023", + "1736", + "1788", + "1854", + "1991", + "200734", + "2033", + "2065", + "210", + "2120", + "2121", + "2162", + "2165", + "2175", + "2176", + "2177", + "2178", + "2189", + "219285", + "22800", + "22808", + "23092", + "2322", + "23451", + "23476", + "25", + "256646", + "25939", + "26040", + "2623", + "2624", + "26511", + "2672", + "2735", + "2782", + "29072", + "29089", + "324", + "3417", + "3717", + "3815", + "3832", + "3845", + "3981", + "412", + "4193", + "4210", + "4292", + "4352", + "4436", + "4683", + "472", + "4763", + "4869", + "4893", + "4926", + "51119", + "51428", + "5156", + "5159", + "51626", + "51816", + "5290", + "5295", + "54209", + "546", + "54790", + "54809", + "54888", + "55027", + "55505", + "5566", + "5567", + "5604", + "5781", + "581", + "5894", + "5914", + "5922", + "5925", + "6016", + "6125", + "613", + "6132", + "6133", + "6135", + "6138", + "6141", + "6154", + "6155", + "6160", + "6165", + "6201", + "6204", + "6208", + "6210", + "6218", + "6223", + "6224", + "6229", + "6231", + "6232", + "6234", + "6235", + "6237", + "6335", + "6336", + "641", + "64135", + "6427", + "64324", + "6455", + "64682", + "6609", + "6654", + "6655", + "6728", + "6729", + "673", + "675", + "6886", + "6887", + "6929", + "699", + "701", + "7015", + "7066", + "7157", + "7305", + "7454", + "7456", + "7518", + "79621", + "79631", + "79728", + "8021", + "8028", + "811", + "81570", + "8216", + "8294", + "8301", + "84153", + "861", + "867", + "8930", + "90121", + "9184", + "9319", + "9401", + "9487", + "9702" + ] + }, + "HP:0000337": { + "Name": "Broad forehead", + "Task": "Monarch", + "Genes": [ + "1000", + "1009", + "10370", + "10516", + "10522", + "10683", + "10743", + "11128", + "11285", + "113189", + "123606", + "128869", + "134701", + "135886", + "137814", + "140628", + "145873", + "147372", + "1482", + "150468", + "1523", + "155368", + "155382", + "1788", + "182", + "200424", + "201163", + "2146", + "2200", + "2239", + "2245", + "2261", + "2263", + "23096", + "23118", + "23126", + "2314", + "2316", + "2324", + "23261", + "23314", + "23363", + "23389", + "23414", + "23512", + "23556", + "25", + "2530", + "253738", + "259232", + "25942", + "25970", + "26040", + "26137", + "26229", + "2626", + "2627", + "2657", + "26608", + "2702", + "2719", + "283450", + "284058", + "284361", + "285175", + "285590", + "28952", + "2969", + "29957", + "3039", + "3040", + "3211", + "3265", + "3417", + "3476", + "3720", + "374654", + "3756", + "3759", + "3762", + "3791", + "3845", + "388015", + "3955", + "3984", + "4036", + "4041", + "4087", + "4125", + "4208", + "4677", + "4763", + "4774", + "4784", + "4853", + "4893", + "4953", + "5058", + "51085", + "51132", + "51256", + "51322", + "51412", + "51611", + "51729", + "5290", + "5426", + "54903", + "5515", + "5557", + "55603", + "5567", + "55777", + "5604", + "57187", + "5723", + "5728", + "57459", + "5781", + "5831", + "5832", + "5982", + "6091", + "6263", + "63932", + "64135", + "64324", + "649", + "6492", + "6499", + "650", + "653361", + "6535", + "6711", + "673", + "6792", + "6804", + "6899", + "6901", + "6938", + "7021", + "72", + "7283", + "7291", + "7458", + "7461", + "7528", + "7545", + "7546", + "7703", + "7862", + "78989", + "79005", + "79228", + "79633", + "79867", + "80036", + "8036", + "81614", + "8260", + "83550", + "83987", + "84163", + "84168", + "84277", + "84282", + "84667", + "8468", + "8493", + "8504", + "8567", + "8573", + "860", + "867", + "8726", + "8788", + "9031", + "90459", + "9049", + "91039", + "91875", + "92002", + "9275", + "9338", + "93627", + "9401", + "9469", + "9508", + "9569", + "9578", + "9652", + "9791", + "9897", + "9939", + "9949" + ] + }, + "HP:0100242": { + "Name": "Sarcoma", + "Task": "Monarch", + "Genes": [ + "100144748", + "10125", + "1026", + "1027", + "1029", + "1030", + "1031", + "10395", + "10483", + "11200", + "11224", + "118429", + "1277", + "1287", + "1288", + "1499", + "161742", + "1630", + "1718", + "201163", + "2033", + "2050", + "205717", + "207", + "2130", + "2131", + "2132", + "2261", + "2271", + "22909", + "2303", + "2308", + "2316", + "2324", + "23405", + "23461", + "23476", + "256646", + "25788", + "2623", + "26585", + "27030", + "2778", + "285", + "2956", + "324", + "3265", + "3417", + "3418", + "3458", + "355", + "356", + "3572", + "3756", + "3778", + "3782", + "3815", + "3845", + "3872", + "4000", + "4035", + "4072", + "4157", + "4163", + "4193", + "4292", + "4436", + "4507", + "4595", + "4683", + "4763", + "4771", + "4854", + "4893", + "5002", + "5077", + "5081", + "50940", + "5155", + "5156", + "5157", + "5159", + "51684", + "51816", + "526", + "5290", + "5320", + "5333", + "5378", + "5395", + "54757", + "55027", + "5573", + "5580", + "5604", + "5618", + "56975", + "57165", + "5727", + "5728", + "5745", + "5781", + "5782", + "5795", + "581", + "5894", + "5925", + "595", + "5978", + "6125", + "6132", + "6133", + "6135", + "6138", + "6141", + "6154", + "6155", + "6160", + "6165", + "6201", + "6204", + "6210", + "6218", + "6223", + "6224", + "6229", + "6231", + "6232", + "6234", + "6235", + "6389", + "6390", + "6391", + "63916", + "6392", + "64682", + "657", + "658", + "6598", + "6605", + "6608", + "6654", + "6711", + "6714", + "673", + "6757", + "6790", + "699", + "701", + "7015", + "7048", + "7097", + "7157", + "7248", + "7249", + "7486", + "7490", + "79058", + "79577", + "8013", + "8148", + "8200", + "8313", + "8314", + "8379", + "84231", + "843", + "8643", + "8878", + "89970", + "90121", + "9184", + "9319", + "9401", + "9702", + "9780", + "9817" + ] + }, + "HP:0003326": { + "Name": "Myalgia", + "Task": "Monarch", + "Genes": [ + "10049", + "10059", + "10126", + "10585", + "10616", + "11107", + "11128", + "11149", + "11232", + "112812", + "114548", + "1180", + "1188", + "1230", + "124093", + "125170", + "1312", + "1340", + "1376", + "1380", + "149233", + "1493", + "1499", + "1630", + "171023", + "1716", + "1756", + "1763", + "1776", + "1785", + "2027", + "2038", + "203859", + "2131", + "2132", + "221037", + "2218", + "226", + "22954", + "23175", + "2318", + "2332", + "246243", + "26191", + "270", + "2710", + "2717", + "272", + "274", + "2812", + "284119", + "284439", + "286", + "28976", + "291", + "29940", + "29967", + "3030", + "3032", + "3106", + "3113", + "3115", + "3123", + "3178", + "324", + "3339", + "337867", + "339855", + "34", + "3459", + "355", + "3559", + "3560", + "3586", + "3592", + "3593", + "3662", + "37", + "3815", + "3930", + "4000", + "4001", + "400916", + "4194", + "421", + "4210", + "4547", + "4598", + "4618", + "4625", + "487", + "4976", + "50484", + "51116", + "5156", + "51752", + "51816", + "5213", + "5224", + "5230", + "5255", + "5256", + "5257", + "5261", + "54", + "5428", + "5468", + "54790", + "55034", + "55154", + "55863", + "5657", + "56652", + "57104", + "5771", + "5837", + "58484", + "5888", + "60684", + "6239", + "6261", + "6329", + "6335", + "6389", + "64127", + "6427", + "64419", + "64856", + "6521", + "6559", + "6708", + "6710", + "6775", + "6786", + "6840", + "6899", + "6945", + "7084", + "7099", + "7132", + "7148", + "720", + "7290", + "729920", + "7353", + "7415", + "7555", + "7840", + "79147", + "79628", + "79722", + "825", + "8291", + "8302", + "84033", + "844", + "84627", + "84842", + "84876", + "859", + "8659", + "8974", + "90268", + "90523", + "91662", + "919", + "9423", + "9499", + "9632", + "9663", + "9692", + "9782" + ] + }, + "HP:0011772": { + "Name": "Abnormal thyroid morphology", + "Task": "Monarch", + "Genes": [ + "100", + "100134444", + "100144748", + "10043", + "10068", + "10125", + "1026", + "1027", + "1029", + "1030", + "1031", + "10483", + "10507", + "10512", + "11200", + "11232", + "1188", + "147372", + "1482", + "1493", + "182", + "1889", + "1908", + "1910", + "196528", + "201163", + "205717", + "2064", + "2065", + "207", + "2138", + "215", + "220296", + "223117", + "22861", + "22909", + "2299", + "2304", + "23328", + "23405", + "23522", + "2542", + "25981", + "26585", + "2668", + "27022", + "27030", + "2737", + "2778", + "2783", + "2859", + "291", + "2956", + "3026", + "3117", + "3119", + "324", + "3265", + "3417", + "3418", + "355", + "3559", + "356", + "3561", + "3572", + "3575", + "3766", + "3845", + "389434", + "3977", + "3981", + "4000", + "405753", + "4072", + "4193", + "4281", + "4292", + "4313", + "4323", + "4436", + "4437", + "4485", + "4595", + "472", + "4791", + "4893", + "4902", + "50484", + "50506", + "50814", + "50940", + "50943", + "51082", + "5172", + "51816", + "5290", + "5297", + "5336", + "5378", + "538", + "5395", + "5424", + "5426", + "5428", + "5449", + "54539", + "55213", + "55636", + "5573", + "5580", + "5626", + "56652", + "57217", + "5728", + "57492", + "57522", + "57623", + "5896", + "5977", + "5979", + "6224", + "6390", + "6391", + "6392", + "64072", + "64218", + "64421", + "6495", + "6528", + "6559", + "657", + "6597", + "6598", + "6601", + "6602", + "6605", + "6608", + "6659", + "6664", + "6720", + "675", + "6772", + "6777", + "6909", + "6925", + "6949", + "7038", + "7048", + "7068", + "7080", + "7157", + "716", + "7173", + "7201", + "7252", + "7253", + "7486", + "779", + "7840", + "7849", + "79577", + "79783", + "8022", + "8085", + "8289", + "83737", + "8379", + "84172", + "843", + "8471", + "8651", + "8820", + "89884", + "92949", + "9533", + "9562", + "9817", + "987" + ] + }, + "HP:0001442": { + "Name": "Typified by somatic mosaicism", + "Task": "Monarch", + "Genes": [ + "100", + "10019", + "10395", + "1050", + "11178", + "11200", + "11281", + "115908", + "1316", + "1326", + "1385", + "1499", + "1548", + "1630", + "171023", + "1788", + "1956", + "201163", + "2033", + "2064", + "207", + "2074", + "2099", + "2120", + "2130", + "2131", + "2239", + "2260", + "2261", + "2263", + "2308", + "23092", + "23095", + "2322", + "23405", + "23432", + "23451", + "2475", + "25", + "25788", + "2624", + "26511", + "27030", + "2719", + "2771", + "2778", + "2782", + "29071", + "2956", + "3161", + "324", + "3265", + "3417", + "3481", + "3482", + "3553", + "3557", + "356", + "3569", + "3572", + "3659", + "367", + "3717", + "3815", + "3845", + "387", + "3981", + "4089", + "4163", + "4233", + "4352", + "4437", + "4481", + "4595", + "4601", + "4609", + "463", + "4683", + "472", + "4763", + "4835", + "4869", + "4893", + "4926", + "4978", + "5002", + "5071", + "5077", + "5080", + "5081", + "51008", + "5156", + "5157", + "51604", + "51684", + "51741", + "5245", + "5277", + "5290", + "5320", + "5324", + "54790", + "5519", + "5546", + "5728", + "57522", + "5781", + "5782", + "5795", + "580", + "581", + "5888", + "5914", + "5925", + "595", + "6049", + "613", + "6208", + "6455", + "6598", + "6608", + "6714", + "672", + "673", + "675", + "6757", + "6790", + "6794", + "6886", + "6887", + "699", + "701", + "7015", + "7030", + "7048", + "7097", + "7157", + "7248", + "7249", + "7317", + "7355", + "7490", + "7517", + "79058", + "79577", + "79798", + "8013", + "8021", + "8028", + "811", + "8148", + "8301", + "8312", + "8313", + "8379", + "83990", + "841", + "843", + "8438", + "8493", + "8518", + "861", + "8643", + "867", + "8915", + "9049", + "91", + "91754", + "9562", + "9759", + "9821", + "999" + ] + }, + "HP:0031652": { + "Name": "Abnormal aortic valve physiology", + "Task": "Monarch", + "Genes": [ + "10021", + "10269", + "10516", + "10559", + "10564", + "10682", + "11285", + "113189", + "113246", + "1193", + "1230", + "1278", + "135886", + "137814", + "1387", + "139285", + "1399", + "140628", + "1482", + "149233", + "153642", + "155368", + "155382", + "160418", + "171019", + "1801", + "1802", + "200734", + "203286", + "2033", + "2200", + "2260", + "22800", + "22827", + "2294", + "2301", + "23118", + "23129", + "2313", + "2316", + "23327", + "23334", + "23493", + "23498", + "23586", + "23590", + "255738", + "26119", + "26128", + "2626", + "2629", + "26608", + "2702", + "2703", + "27031", + "2720", + "284086", + "28952", + "2969", + "30008", + "3081", + "3106", + "337867", + "338", + "3425", + "3459", + "355", + "3586", + "3592", + "3845", + "388753", + "3949", + "3984", + "4000", + "4015", + "4052", + "4053", + "4087", + "4088", + "4089", + "4091", + "4125", + "4131", + "4144", + "4210", + "442721", + "4629", + "4638", + "4851", + "4853", + "51085", + "51752", + "529", + "54538", + "54880", + "55027", + "55249", + "55780", + "5592", + "5594", + "56896", + "57020", + "57514", + "5828", + "5832", + "59", + "5982", + "60", + "613", + "6324", + "64135", + "64240", + "64241", + "6499", + "653361", + "6651", + "6711", + "6775", + "6804", + "6873", + "699", + "701", + "7026", + "7042", + "7043", + "7046", + "7048", + "7099", + "720", + "7276", + "728294", + "7291", + "7450", + "7458", + "7461", + "7490", + "7703", + "79158", + "79753", + "79813", + "79875", + "79989", + "8036", + "8076", + "81031", + "81794", + "8302", + "83475", + "84163", + "84231", + "84277", + "84572", + "8468", + "85440", + "867", + "9031", + "9184", + "92002", + "9275", + "9319", + "93233", + "9469", + "9569", + "9652", + "9702", + "9719", + "9839", + "9897" + ] + }, + "HP:0031481": { + "Name": "Abnormal mitral valve physiology", + "Task": "Monarch", + "Genes": [ + "10000", + "10112", + "10128", + "10216", + "10265", + "10269", + "10290", + "10370", + "10516", + "10651", + "10664", + "113189", + "1193", + "1230", + "126792", + "1277", + "1278", + "127833", + "1289", + "1290", + "1349", + "135886", + "1410", + "1482", + "149233", + "151648", + "155368", + "155382", + "175", + "1788", + "1837", + "2200", + "2201", + "2273", + "22873", + "2316", + "2318", + "23394", + "23498", + "23590", + "255738", + "26119", + "2626", + "2627", + "2629", + "26608", + "2697", + "2717", + "2720", + "2799", + "29123", + "2969", + "29940", + "3030", + "3032", + "3052", + "3074", + "3081", + "3106", + "337867", + "338", + "341208", + "3425", + "3459", + "355", + "3572", + "3586", + "3592", + "368", + "3949", + "3984", + "4000", + "4015", + "4053", + "4054", + "4088", + "4089", + "4091", + "411", + "4125", + "4210", + "442721", + "4624", + "4625", + "4633", + "4763", + "4851", + "4853", + "51085", + "51284", + "51752", + "5296", + "5310", + "5337", + "5428", + "54539", + "54800", + "5500", + "55033", + "55784", + "55901", + "5594", + "56652", + "56915", + "57057", + "57538", + "5828", + "5832", + "5894", + "5982", + "6016", + "6123", + "6125", + "6197", + "6392", + "63976", + "64131", + "64132", + "64240", + "64241", + "6497", + "65082", + "653361", + "6584", + "6660", + "6775", + "6804", + "6885", + "70", + "7043", + "7092", + "7099", + "7137", + "7139", + "7168", + "720", + "7319", + "7458", + "7461", + "7547", + "7707", + "79158", + "79576", + "79770", + "79912", + "80206", + "81794", + "8216", + "8302", + "83475", + "83550", + "84163", + "84188", + "84277", + "84665", + "8468", + "8642", + "867", + "8815", + "894", + "89970", + "9031", + "9049", + "92579", + "9275", + "9469", + "9531", + "9569", + "9719" + ] + }, + "HP:0010786": { + "Name": "Urinary tract neoplasm", + "Task": "Monarch", + "Genes": [ + "100144748", + "10155", + "1027", + "1028", + "1029", + "10395", + "10483", + "11200", + "11236", + "11281", + "126792", + "129563", + "1499", + "161742", + "1630", + "168667", + "171023", + "1743", + "190", + "201163", + "2033", + "205717", + "207", + "2132", + "2239", + "2261", + "2271", + "22909", + "2304", + "23095", + "23405", + "23414", + "2516", + "25788", + "26040", + "2626", + "27030", + "2719", + "2778", + "2956", + "3026", + "324", + "3265", + "3458", + "3481", + "3784", + "3845", + "4000", + "4072", + "4149", + "4163", + "4191", + "4193", + "4214", + "4233", + "4292", + "4436", + "4591", + "4595", + "4598", + "472", + "4763", + "4893", + "4913", + "4968", + "5080", + "51317", + "5157", + "51741", + "5290", + "5320", + "5378", + "538", + "5395", + "5424", + "5426", + "54894", + "54949", + "55193", + "5546", + "55612", + "55654", + "5727", + "5728", + "57647", + "5782", + "5795", + "581", + "58524", + "5925", + "595", + "5978", + "5979", + "60529", + "6224", + "6389", + "6390", + "6391", + "6392", + "641", + "64127", + "64218", + "657", + "6597", + "6662", + "6714", + "673", + "6736", + "675", + "6790", + "6794", + "6845", + "6927", + "6928", + "699", + "701", + "7030", + "7048", + "7097", + "7157", + "716", + "7248", + "7249", + "7373", + "7428", + "7486", + "7490", + "79577", + "79719", + "79728", + "79798", + "8313", + "8314", + "8402", + "9158", + "9184", + "9319", + "9562", + "9702", + "9759", + "9817" + ] + }, + "HP:0001653": { + "Name": "Mitral regurgitation", + "Task": "Monarch", + "Genes": [ + "10000", + "10112", + "10128", + "10216", + "10265", + "10269", + "10290", + "10370", + "10516", + "10651", + "10664", + "113189", + "1193", + "1230", + "126792", + "1277", + "1278", + "1289", + "1290", + "1349", + "135886", + "1410", + "1482", + "149233", + "151648", + "155368", + "155382", + "175", + "1788", + "1837", + "2200", + "2201", + "2273", + "22873", + "2316", + "2318", + "23394", + "23590", + "255738", + "26119", + "2626", + "2627", + "2629", + "26608", + "2717", + "2720", + "2799", + "29123", + "2969", + "29940", + "3030", + "3032", + "3052", + "3074", + "3081", + "3106", + "337867", + "338", + "341208", + "3425", + "3459", + "355", + "3572", + "3586", + "3592", + "368", + "3949", + "3984", + "4000", + "4015", + "4053", + "4054", + "4088", + "4089", + "4091", + "411", + "4125", + "4210", + "442721", + "4624", + "4625", + "4633", + "4763", + "51085", + "51284", + "51752", + "5296", + "5310", + "5337", + "5428", + "54539", + "54800", + "5500", + "55033", + "55901", + "5594", + "56652", + "56915", + "57057", + "57538", + "5828", + "5832", + "5894", + "5982", + "6016", + "6123", + "6125", + "6197", + "6392", + "63976", + "64240", + "64241", + "6497", + "65082", + "653361", + "6584", + "6660", + "6775", + "6804", + "6885", + "70", + "7043", + "7092", + "7099", + "7137", + "7139", + "7168", + "720", + "7458", + "7461", + "79158", + "79576", + "79770", + "79912", + "81794", + "8216", + "8302", + "83475", + "83550", + "84163", + "84188", + "84277", + "84665", + "8468", + "8642", + "867", + "8815", + "894", + "89970", + "9031", + "9049", + "92579", + "9275", + "9469", + "9531", + "9569" + ] + }, + "HP:0001581": { + "Name": "Recurrent skin infections", + "Task": "Monarch", + "Genes": [ + "100", + "10043", + "10312", + "10519", + "10525", + "1075", + "10758", + "10804", + "11005", + "11128", + "11151", + "112744", + "1130", + "113189", + "11322", + "1294", + "146206", + "147138", + "1535", + "1536", + "1794", + "1828", + "1956", + "1991", + "2050", + "2303", + "23765", + "2623", + "26258", + "2672", + "2706", + "2908", + "29760", + "29940", + "326", + "331", + "3426", + "3431", + "3543", + "3551", + "3559", + "3561", + "3570", + "3572", + "3574", + "3575", + "3587", + "3655", + "3689", + "3691", + "3718", + "3848", + "3852", + "3861", + "3909", + "3914", + "3918", + "3937", + "4153", + "4261", + "4312", + "4598", + "4688", + "4780", + "4790", + "4792", + "50943", + "51311", + "51360", + "5238", + "5293", + "5294", + "5295", + "5317", + "54440", + "546", + "55612", + "55851", + "56262", + "5663", + "57165", + "57591", + "57724", + "59335", + "5993", + "5994", + "6097", + "64072", + "64170", + "64421", + "64581", + "653361", + "6688", + "6720", + "6728", + "6729", + "673", + "6772", + "6774", + "6778", + "6789", + "6850", + "6868", + "6929", + "695", + "7037", + "7157", + "7319", + "7389", + "7390", + "7535", + "7922", + "81570", + "81704", + "83706", + "84196", + "84818", + "84905", + "8517", + "85358", + "8546", + "8625", + "8883", + "90268", + "90417", + "9101", + "915", + "916", + "917", + "919", + "959", + "973", + "974", + "9837", + "9948" + ] + }, + "HP:0000326": { + "Name": "Abnormal maxilla morphology", + "Task": "Monarch", + "Genes": [ + "10084", + "1009", + "10262", + "10484", + "10617", + "10844", + "10847", + "10992", + "1173", + "117581", + "1280", + "1289", + "1301", + "1387", + "145173", + "1513", + "157570", + "157680", + "1736", + "1739", + "1748", + "1896", + "1909", + "2033", + "207", + "2077", + "2200", + "2239", + "2245", + "2248", + "2260", + "2261", + "2263", + "2273", + "22837", + "22856", + "2296", + "23102", + "2317", + "23594", + "25", + "257", + "25782", + "25885", + "25942", + "26128", + "26137", + "26277", + "2697", + "27107", + "2736", + "29072", + "29920", + "29957", + "30008", + "3043", + "3265", + "3590", + "3664", + "3759", + "3762", + "388015", + "3930", + "4054", + "4089", + "415", + "4313", + "4487", + "4750", + "4784", + "4869", + "4893", + "4998", + "5000", + "5073", + "5077", + "51053", + "51082", + "51114", + "5144", + "5156", + "5159", + "51715", + "51750", + "529", + "5290", + "5308", + "54101", + "54499", + "54848", + "55084", + "55135", + "55505", + "55621", + "55651", + "5566", + "5573", + "5727", + "5728", + "57589", + "57822", + "5818", + "5824", + "5965", + "6197", + "633", + "64093", + "64135", + "6496", + "6497", + "650", + "65109", + "652", + "6638", + "6651", + "6660", + "6949", + "7015", + "7291", + "7298", + "7314", + "7337", + "78989", + "79633", + "79650", + "79759", + "80169", + "80232", + "8092", + "81620", + "81794", + "8242", + "8318", + "84172", + "860", + "8626", + "8642", + "865", + "8788", + "91179", + "92344", + "9343", + "93986", + "9411", + "9533", + "990", + "9935", + "9968", + "999", + "9990" + ] + }, + "HP:0009726": { + "Name": "Renal neoplasm", + "Task": "Monarch", + "Genes": [ + "100144748", + "10155", + "1027", + "1028", + "1029", + "10395", + "10483", + "11200", + "11236", + "11281", + "126792", + "129563", + "1499", + "161742", + "1630", + "168667", + "171023", + "1743", + "190", + "201163", + "2033", + "205717", + "207", + "2132", + "2239", + "2261", + "2271", + "22909", + "2304", + "23095", + "23405", + "23414", + "2516", + "25788", + "26040", + "2626", + "27030", + "2719", + "2778", + "2956", + "3026", + "324", + "3265", + "3458", + "3481", + "3784", + "3845", + "4000", + "4072", + "4149", + "4163", + "4191", + "4193", + "4214", + "4233", + "4292", + "4436", + "4591", + "4595", + "4598", + "472", + "4763", + "4893", + "4968", + "5080", + "51317", + "5157", + "51741", + "5290", + "5320", + "5378", + "5395", + "5424", + "5426", + "54949", + "55193", + "5546", + "55654", + "5727", + "5728", + "57647", + "5782", + "5795", + "581", + "58524", + "595", + "5978", + "5979", + "60529", + "6224", + "6389", + "6390", + "6391", + "6392", + "641", + "64127", + "64218", + "657", + "6597", + "6662", + "6714", + "673", + "6736", + "675", + "6790", + "6794", + "6845", + "6927", + "6928", + "699", + "701", + "7030", + "7048", + "7097", + "7157", + "716", + "7248", + "7249", + "7373", + "7428", + "7486", + "7490", + "79577", + "79719", + "79728", + "79798", + "8313", + "8314", + "8402", + "9158", + "9184", + "9319", + "9562", + "9702", + "9759", + "9817" + ] + }, + "HP:0000089": { + "Name": "Renal hypoplasia", + "Task": "Monarch", + "Genes": [ + "10084", + "10463", + "1063", + "10907", + "11020", + "1161", + "1312", + "135886", + "145173", + "153241", + "155368", + "155382", + "1717", + "182", + "1822", + "2074", + "2188", + "221037", + "2255", + "2261", + "2263", + "22827", + "23291", + "23498", + "23524", + "23592", + "25778", + "25836", + "26005", + "26608", + "27152", + "2737", + "2812", + "284252", + "2969", + "3265", + "3313", + "341640", + "374879", + "3759", + "3762", + "3899", + "3984", + "4038", + "4174", + "4193", + "421", + "4654", + "4774", + "4838", + "4853", + "498", + "50628", + "5076", + "5087", + "51085", + "513", + "51339", + "51360", + "514", + "5147", + "51473", + "5290", + "5361", + "54496", + "54567", + "546", + "54880", + "54892", + "55005", + "55112", + "55120", + "55159", + "55165", + "55215", + "5557", + "55636", + "57167", + "57492", + "57539", + "57560", + "57728", + "5885", + "5915", + "5972", + "5982", + "6092", + "6223", + "6239", + "6299", + "63895", + "64220", + "64756", + "6499", + "652", + "653361", + "6804", + "6899", + "6926", + "6928", + "7290", + "7353", + "7458", + "7461", + "7468", + "7477", + "7518", + "79633", + "79659", + "80144", + "8091", + "8204", + "8260", + "8295", + "8364", + "8367", + "84100", + "84163", + "84277", + "8468", + "84833", + "84919", + "84987", + "8642", + "8882", + "8942", + "89891", + "9031", + "9096", + "91147", + "91647", + "9275", + "9569", + "9632", + "9652", + "9928" + ] + }, + "HP:0001699": { + "Name": "Sudden death", + "Task": "Monarch", + "Genes": [ + "10021", + "10142", + "10320", + "10345", + "10815", + "11155", + "131118", + "135886", + "1374", + "144245", + "155368", + "155382", + "1674", + "1804", + "1824", + "1829", + "1832", + "1837", + "2010", + "207", + "2070", + "221496", + "2273", + "23118", + "23171", + "2318", + "23224", + "23345", + "23529", + "253017", + "255738", + "26119", + "26154", + "26191", + "26608", + "27068", + "2771", + "2783", + "282996", + "287", + "28976", + "2969", + "3030", + "3106", + "3123", + "3265", + "338", + "368", + "37", + "3728", + "3753", + "3757", + "3759", + "3762", + "3784", + "3949", + "3984", + "4000", + "4040", + "4088", + "4607", + "4624", + "4625", + "4633", + "4634", + "4638", + "50964", + "51085", + "51422", + "5167", + "51778", + "5236", + "5318", + "54800", + "55148", + "55164", + "55750", + "5728", + "57465", + "5982", + "60558", + "6262", + "6323", + "6330", + "6331", + "6334", + "6336", + "64240", + "64241", + "6444", + "6508", + "653361", + "6640", + "6804", + "6910", + "7043", + "7134", + "7137", + "7139", + "7168", + "7259", + "7273", + "7454", + "7456", + "7458", + "7461", + "775", + "781", + "79188", + "80206", + "8048", + "808", + "84163", + "84277", + "845", + "8468", + "85366", + "859", + "8974", + "9031", + "9244", + "9275", + "9569", + "9631", + "9722", + "9896", + "9992" + ] + }, + "HP:0200036": { + "Name": "Skin nodule", + "Task": "Monarch", + "Genes": [ + "100144748", + "1019", + "10483", + "10804", + "10842", + "11146", + "114803", + "118429", + "1230", + "1277", + "1281", + "1289", + "1290", + "1294", + "149233", + "1499", + "1540", + "1593", + "161742", + "1649", + "1893", + "19", + "2053", + "205717", + "207", + "2200", + "2260", + "2263", + "23095", + "23534", + "23592", + "238", + "2521", + "2538", + "2542", + "255738", + "2690", + "2706", + "2717", + "2744", + "2778", + "3106", + "3123", + "324", + "335", + "336", + "337867", + "338", + "3417", + "3418", + "3458", + "3459", + "348", + "355", + "3586", + "3592", + "3593", + "3594", + "3643", + "3663", + "368", + "3815", + "3832", + "3845", + "389421", + "3949", + "4004", + "4023", + "4047", + "4157", + "4193", + "4210", + "427", + "4313", + "4323", + "4613", + "4668", + "4854", + "488", + "4893", + "4952", + "4982", + "50940", + "51339", + "51371", + "5155", + "5159", + "5167", + "51752", + "5290", + "5450", + "55699", + "5573", + "56244", + "567", + "5728", + "5745", + "57531", + "5781", + "5894", + "596", + "604", + "6299", + "6390", + "6391", + "6392", + "64241", + "64840", + "6689", + "673", + "6775", + "6945", + "7010", + "7099", + "7153", + "720", + "7248", + "7249", + "7274", + "79258", + "8091", + "8302", + "83706", + "84946", + "8792", + "8929", + "90", + "9966" + ] + }, + "HP:0000307": { + "Name": "Pointed chin", + "Task": "Monarch", + "Genes": [ + "1000", + "10015", + "10059", + "1009", + "10277", + "10630", + "10733", + "11011", + "1105", + "11128", + "11253", + "1146", + "116115", + "116931", + "1183", + "118924", + "1280", + "128869", + "135886", + "1399", + "155368", + "155382", + "1795", + "200734", + "222663", + "2248", + "22808", + "23013", + "23036", + "23126", + "2316", + "23184", + "23261", + "2335", + "23363", + "23431", + "25", + "2542", + "2563", + "25886", + "25942", + "26040", + "26128", + "26608", + "2702", + "2703", + "27229", + "283209", + "283489", + "29072", + "29123", + "2969", + "29998", + "3265", + "3339", + "3643", + "3720", + "3832", + "3984", + "4001", + "4212", + "4621", + "473", + "4784", + "4853", + "51085", + "51256", + "5159", + "51780", + "523", + "529", + "54517", + "5457", + "54897", + "55593", + "55768", + "5590", + "5593", + "5594", + "57231", + "57647", + "57680", + "5898", + "5982", + "60", + "613", + "63976", + "6418", + "64324", + "64840", + "6497", + "653361", + "6711", + "6804", + "6872", + "6885", + "6901", + "7025", + "71", + "7358", + "7458", + "7461", + "7528", + "7707", + "7798", + "79228", + "7994", + "83987", + "8405", + "84163", + "84277", + "8468", + "8510", + "8514", + "85358", + "85378", + "8558", + "8567", + "865", + "8985", + "9031", + "90459", + "91875", + "9275", + "9320", + "9488", + "9569", + "9653", + "9772", + "9839" + ] + }, + "HP:0000179": { + "Name": "Thick lower lip vermilion", + "Task": "Monarch", + "Genes": [ + "10060", + "10075", + "1009", + "10430", + "10522", + "10524", + "1106", + "1173", + "1301", + "135886", + "139285", + "155368", + "155382", + "175", + "1893", + "196528", + "200734", + "2200", + "22800", + "22808", + "23067", + "23137", + "2316", + "23221", + "23261", + "23394", + "24140", + "2517", + "253738", + "25942", + "26137", + "26227", + "26608", + "2702", + "2703", + "27077", + "2717", + "27316", + "2736", + "2770", + "2799", + "2969", + "3265", + "340533", + "3423", + "3643", + "3782", + "3832", + "3845", + "3899", + "3984", + "4052", + "4054", + "4668", + "4758", + "4893", + "51085", + "526", + "54187", + "54517", + "5457", + "546", + "5500", + "55331", + "55617", + "55691", + "56006", + "5696", + "56992", + "5745", + "57465", + "57492", + "57520", + "5781", + "58508", + "5894", + "5922", + "5977", + "5979", + "5982", + "6016", + "6197", + "6228", + "6237", + "6323", + "6513", + "6529", + "653361", + "6595", + "6597", + "6598", + "6601", + "6602", + "6605", + "6611", + "6654", + "6655", + "6659", + "6664", + "6792", + "6804", + "7358", + "7458", + "7461", + "7528", + "760", + "79639", + "79813", + "8036", + "81620", + "8216", + "8289", + "83550", + "84163", + "84168", + "84277", + "84282", + "8450", + "8468", + "867", + "8831", + "9031", + "9049", + "92335", + "9275", + "9487", + "9569", + "9759", + "9839", + "9968" + ] + }, + "HP:0030448": { + "Name": "Soft tissue sarcoma", + "Task": "Monarch", + "Genes": [ + "100144748", + "10125", + "1026", + "1027", + "1029", + "1030", + "1031", + "10395", + "10483", + "11200", + "118429", + "1277", + "1287", + "1288", + "1499", + "161742", + "1630", + "1718", + "201163", + "2033", + "2050", + "205717", + "207", + "2261", + "2271", + "22909", + "2303", + "2308", + "2316", + "2324", + "23405", + "23461", + "25788", + "26585", + "27030", + "285", + "2956", + "324", + "3265", + "3458", + "355", + "356", + "3572", + "3756", + "3778", + "3782", + "3815", + "3845", + "3872", + "4035", + "4072", + "4157", + "4163", + "4193", + "4292", + "4436", + "4507", + "4595", + "4683", + "4763", + "4771", + "4854", + "4893", + "5002", + "5077", + "5081", + "50940", + "5155", + "5157", + "5159", + "51684", + "526", + "5290", + "5320", + "5333", + "5378", + "5395", + "54757", + "5573", + "5580", + "5604", + "5618", + "56975", + "57165", + "5727", + "5728", + "5781", + "5782", + "5795", + "581", + "5894", + "595", + "5978", + "6390", + "6391", + "63916", + "6392", + "657", + "6598", + "6605", + "6608", + "6654", + "6711", + "6714", + "673", + "6757", + "6790", + "699", + "701", + "7015", + "7048", + "7097", + "7157", + "7248", + "7249", + "79058", + "79577", + "8313", + "8314", + "8379", + "84231", + "843", + "8643", + "89970", + "9184", + "9319", + "9702", + "9780", + "9817" + ] + }, + "HP:0001531": { + "Name": "Failure to thrive in infancy", + "Task": "Monarch", + "Genes": [ + "10043", + "10165", + "10225", + "10463", + "10512", + "10522", + "10743", + "115650", + "135886", + "1380", + "1439", + "1497", + "155368", + "155382", + "157680", + "1889", + "1908", + "1910", + "2064", + "2065", + "2067", + "215", + "2186", + "2222", + "223117", + "2260", + "23096", + "2314", + "23495", + "23742", + "25839", + "26007", + "26040", + "26608", + "2668", + "285175", + "29072", + "2969", + "29851", + "29968", + "3030", + "3032", + "3043", + "3265", + "3431", + "3557", + "3559", + "359948", + "368", + "3718", + "3845", + "3984", + "4056", + "4598", + "4654", + "4697", + "4790", + "4791", + "4902", + "50943", + "51085", + "5167", + "538", + "5422", + "54551", + "5580", + "5604", + "5605", + "56160", + "56922", + "5699", + "56992", + "5718", + "5781", + "5836", + "5880", + "5979", + "5982", + "6337", + "6338", + "6340", + "64087", + "64116", + "653361", + "6567", + "6608", + "6651", + "6720", + "673", + "6804", + "7043", + "7084", + "7355", + "7458", + "7461", + "7681", + "833", + "83480", + "83737", + "8405", + "84163", + "84277", + "8468", + "84842", + "8565", + "8742", + "8924", + "90268", + "9031", + "9275", + "9276", + "930", + "931", + "9377", + "9382", + "9401", + "9569", + "975", + "9896" + ] + }, + "HP:0100806": { + "Name": "Sepsis", + "Task": "Monarch", + "Genes": [ + "100", + "10320", + "10512", + "10525", + "10664", + "10804", + "11005", + "11277", + "11342", + "121214", + "126410", + "130340", + "130589", + "134218", + "1351", + "1493", + "1499", + "151516", + "1535", + "1536", + "1889", + "1908", + "1910", + "1991", + "204", + "2064", + "2065", + "21", + "215", + "223117", + "242", + "25802", + "25839", + "2592", + "26154", + "26525", + "2668", + "2706", + "29760", + "3106", + "3110", + "3162", + "324", + "3417", + "348938", + "3543", + "3561", + "3575", + "3852", + "3861", + "3909", + "3914", + "3918", + "3981", + "4594", + "4629", + "4638", + "4688", + "4689", + "4791", + "4902", + "50619", + "50943", + "51119", + "5238", + "5295", + "5317", + "538", + "54440", + "54809", + "54914", + "55636", + "56052", + "56262", + "57591", + "5824", + "5880", + "5896", + "59344", + "5979", + "643418", + "6440", + "64421", + "65082", + "653361", + "6603", + "6608", + "6688", + "6720", + "6729", + "6786", + "6789", + "6820", + "6929", + "695", + "7037", + "7051", + "72", + "7454", + "7456", + "7852", + "79087", + "7922", + "79415", + "79631", + "81704", + "83706", + "84947", + "8565", + "92579", + "939", + "959", + "973", + "974", + "987" + ] + }, + "HP:0032158": { + "Name": "Unusual infection by anatomical site", + "Task": "Monarch", + "Genes": [ + "10043", + "10095", + "10525", + "114548", + "115650", + "1230", + "1380", + "146206", + "148022", + "149233", + "1493", + "1535", + "1536", + "1776", + "201294", + "2022", + "2261", + "23495", + "26191", + "29110", + "29760", + "29851", + "3071", + "3106", + "3113", + "3115", + "3123", + "331", + "337867", + "340024", + "3426", + "3459", + "3543", + "355", + "3561", + "3574", + "3586", + "3592", + "3661", + "3662", + "3718", + "3930", + "4068", + "4210", + "4261", + "4598", + "4688", + "4689", + "50943", + "51135", + "51163", + "51752", + "5238", + "5295", + "546", + "54820", + "54968", + "55343", + "5551", + "56262", + "5657", + "57393", + "57591", + "58484", + "5896", + "596", + "5993", + "5994", + "604", + "629", + "64170", + "653361", + "6688", + "6772", + "6775", + "6789", + "6813", + "6929", + "695", + "7037", + "7098", + "7099", + "714", + "7187", + "720", + "721", + "731", + "732", + "7454", + "7456", + "7852", + "7922", + "79415", + "79944", + "81622", + "81704", + "81839", + "8302", + "84433", + "8517", + "8625", + "8676", + "8915", + "8974", + "930", + "939", + "94", + "959", + "973", + "974" + ] + }, + "HP:0100834": { + "Name": "Neoplasm of the large intestine", + "Task": "Monarch", + "Genes": [ + "100144748", + "1029", + "10395", + "10483", + "10507", + "11200", + "11224", + "1499", + "1630", + "201163", + "2022", + "2033", + "205717", + "207", + "2261", + "22909", + "23022", + "2304", + "23405", + "25788", + "2623", + "26585", + "27030", + "285282", + "2859", + "2956", + "3026", + "324", + "3815", + "3845", + "4072", + "4089", + "4092", + "4163", + "4193", + "4292", + "4436", + "4437", + "4485", + "4595", + "472", + "4893", + "4913", + "50940", + "5156", + "5157", + "51816", + "5290", + "5320", + "5378", + "5395", + "5424", + "5426", + "54894", + "55027", + "5573", + "5728", + "5782", + "5795", + "581", + "595", + "6125", + "6132", + "6133", + "6135", + "6138", + "6141", + "6154", + "6155", + "6160", + "6165", + "6201", + "6204", + "6210", + "6218", + "6223", + "6224", + "6229", + "6231", + "6232", + "6234", + "6235", + "6389", + "6390", + "6391", + "6392", + "641", + "64218", + "657", + "6714", + "672", + "673", + "675", + "6790", + "6794", + "6925", + "699", + "701", + "7048", + "7097", + "7157", + "716", + "7373", + "79719", + "79728", + "81704", + "8313", + "8379", + "8930", + "90121", + "9184", + "9319", + "9562", + "9702", + "9817" + ] + }, + "HP:0002308": { + "Name": "Chiari malformation", + "Task": "Monarch", + "Genes": [ + "10274", + "10283", + "10992", + "1108", + "11128", + "135886", + "1387", + "1436", + "148867", + "1513", + "155368", + "155382", + "161742", + "1717", + "1788", + "2033", + "2077", + "2200", + "2260", + "2261", + "2263", + "22800", + "2294", + "22943", + "2316", + "23387", + "23516", + "23592", + "25970", + "26040", + "26608", + "2776", + "284058", + "29072", + "2969", + "29998", + "3020", + "3265", + "3590", + "3845", + "3984", + "4094", + "4125", + "4659", + "4774", + "4791", + "4796", + "4841", + "4853", + "4854", + "4858", + "5076", + "51085", + "51339", + "51360", + "5251", + "5290", + "5447", + "54903", + "5500", + "55159", + "55215", + "55703", + "5727", + "5745", + "57551", + "5888", + "5977", + "5982", + "6299", + "6309", + "63895", + "64840", + "6497", + "653361", + "6595", + "6608", + "6651", + "6804", + "6885", + "7046", + "7048", + "7458", + "7461", + "79718", + "79947", + "80036", + "80199", + "8091", + "81839", + "8318", + "84163", + "84277", + "84667", + "8468", + "8799", + "9031", + "9275", + "9401", + "9569", + "9772", + "9839" + ] + }, + "HP:0011495": { + "Name": "Abnormal corneal epithelium morphology", + "Task": "Monarch", + "Genes": [ + "10269", + "10320", + "105371045", + "10653", + "10804", + "11107", + "114548", + "1161", + "117581", + "121214", + "1230", + "1286", + "1287", + "1288", + "1294", + "1308", + "136647", + "149233", + "1497", + "16", + "1634", + "1643", + "165", + "204219", + "2068", + "2071", + "2072", + "2073", + "2074", + "2200", + "224", + "2255", + "2261", + "2263", + "22861", + "2303", + "242", + "26128", + "26154", + "2623", + "2706", + "285848", + "2934", + "2961", + "3106", + "3123", + "3141", + "326", + "337867", + "3459", + "348938", + "355", + "3572", + "3586", + "3592", + "3850", + "3930", + "4000", + "404672", + "4072", + "4081", + "4166", + "4210", + "4312", + "4358", + "4547", + "4914", + "5080", + "51360", + "51752", + "5336", + "5339", + "54101", + "5429", + "54941", + "55343", + "55612", + "55630", + "55699", + "55768", + "56244", + "59335", + "59344", + "5965", + "6335", + "64127", + "6720", + "6775", + "6820", + "6897", + "6898", + "7045", + "7051", + "7099", + "720", + "7389", + "7390", + "7454", + "7456", + "7490", + "7507", + "7508", + "7737", + "8218", + "8302", + "833", + "84627", + "8517", + "8518", + "8626", + "9244" + ] + }, + "HP:0010702": { + "Name": "Increased circulating antibody level", + "Task": "Monarch", + "Genes": [ + "100", + "10125", + "1041", + "10507", + "10526", + "11005", + "11311", + "121391", + "1277", + "1294", + "1789", + "1828", + "1956", + "1991", + "200942", + "213", + "2137", + "2239", + "22861", + "23064", + "23534", + "2629", + "2719", + "2859", + "29775", + "3071", + "3123", + "331", + "340061", + "3459", + "355", + "3559", + "356", + "3560", + "3561", + "3570", + "3572", + "3575", + "3592", + "3594", + "3663", + "3845", + "3857", + "3981", + "404672", + "4068", + "4485", + "4598", + "4792", + "4893", + "50943", + "51135", + "51371", + "5184", + "5238", + "5293", + "5295", + "5450", + "5580", + "56160", + "5692", + "5696", + "5698", + "5728", + "57379", + "59067", + "595", + "64135", + "64170", + "6440", + "64421", + "65082", + "6689", + "6774", + "6777", + "6778", + "6786", + "6868", + "6925", + "7015", + "7040", + "7174", + "727897", + "729238", + "7297", + "7374", + "7454", + "79258", + "81704", + "843", + "84433", + "84888", + "84905", + "8517", + "90268", + "9051", + "9056", + "915", + "916", + "919", + "950", + "958", + "959", + "9966" + ] + }, + "HP:0001658": { + "Name": "Myocardial infarction", + "Task": "Monarch", + "Genes": [ + "10019", + "10060", + "10269", + "10320", + "1080", + "11093", + "1230", + "135886", + "137814", + "140628", + "1482", + "149233", + "1499", + "155368", + "155382", + "1593", + "19", + "2057", + "255738", + "26119", + "2626", + "2627", + "26608", + "2702", + "2717", + "2908", + "2969", + "3081", + "3106", + "337867", + "338", + "3459", + "355", + "3586", + "3592", + "3593", + "3662", + "368", + "3717", + "3741", + "3753", + "3759", + "3760", + "3762", + "3784", + "3949", + "3984", + "4000", + "4023", + "4040", + "4205", + "4210", + "4352", + "4627", + "4635", + "4878", + "51085", + "5167", + "51752", + "5277", + "5308", + "546", + "54790", + "55800", + "57187", + "5781", + "5894", + "590", + "595", + "5982", + "63036", + "6324", + "6327", + "6330", + "6331", + "6337", + "6338", + "6340", + "64072", + "64240", + "64241", + "653361", + "673", + "6775", + "6804", + "6945", + "7099", + "7157", + "720", + "7273", + "7428", + "7458", + "7461", + "7486", + "81031", + "811", + "8302", + "84163", + "84196", + "84277", + "8468", + "84984", + "875", + "9031", + "9101", + "9149", + "9275", + "9569", + "9631", + "9992" + ] + }, + "HP:0033678": { + "Name": "Acute coronary syndrome", + "Task": "Monarch", + "Genes": [ + "10019", + "10060", + "10269", + "10320", + "1080", + "11093", + "1230", + "135886", + "137814", + "140628", + "1482", + "149233", + "1499", + "155368", + "155382", + "1593", + "19", + "2057", + "255738", + "26119", + "2626", + "2627", + "26608", + "2702", + "2717", + "2908", + "2969", + "3081", + "3106", + "337867", + "338", + "3459", + "355", + "3586", + "3592", + "3593", + "3662", + "368", + "3717", + "3741", + "3753", + "3759", + "3760", + "3762", + "3784", + "3949", + "3984", + "4000", + "4023", + "4040", + "4205", + "4210", + "4352", + "4627", + "4635", + "4878", + "51085", + "5167", + "51752", + "5277", + "5308", + "546", + "54790", + "55800", + "57187", + "5781", + "5894", + "590", + "595", + "5982", + "63036", + "6324", + "6327", + "6330", + "6331", + "6337", + "6338", + "6340", + "64072", + "64240", + "64241", + "653361", + "673", + "6775", + "6804", + "6945", + "7099", + "7157", + "720", + "7273", + "7428", + "7458", + "7461", + "7486", + "81031", + "811", + "8302", + "84163", + "84196", + "84277", + "8468", + "84984", + "875", + "9031", + "9101", + "9149", + "9275", + "9569", + "9631", + "9992" + ] + }, + "HP:0100545": { + "Name": "Arterial stenosis", + "Task": "Monarch", + "Genes": [ + "10043", + "10842", + "1161", + "1281", + "135886", + "151188", + "155368", + "155382", + "1581", + "1593", + "165", + "182", + "189", + "19", + "2053", + "2074", + "2099", + "2161", + "2200", + "2301", + "23493", + "255738", + "26119", + "26608", + "2690", + "2767", + "2969", + "3053", + "3106", + "335", + "336", + "338", + "338328", + "3423", + "348", + "3593", + "368", + "3717", + "3949", + "3984", + "3990", + "4000", + "4015", + "4040", + "4087", + "4088", + "4089", + "4144", + "4149", + "4205", + "4352", + "4629", + "4638", + "4763", + "4854", + "50628", + "51085", + "5116", + "5167", + "51816", + "538", + "5456", + "5468", + "55249", + "55654", + "55697", + "5592", + "5654", + "57104", + "57592", + "59", + "5979", + "5982", + "63036", + "64131", + "64132", + "64240", + "64241", + "653361", + "6609", + "6772", + "6804", + "6945", + "7042", + "7043", + "7046", + "7048", + "7066", + "7428", + "7439", + "7458", + "7461", + "79184", + "79875", + "8076", + "81031", + "84163", + "84277", + "8468", + "84984", + "9031", + "9275", + "9569", + "9896" + ] + }, + "HP:0011450": { + "Name": "Unusual CNS infection", + "Task": "Monarch", + "Genes": [ + "10043", + "10095", + "10525", + "114548", + "115650", + "1230", + "1380", + "148022", + "149233", + "1493", + "1535", + "1536", + "1776", + "201294", + "2022", + "2261", + "23495", + "26191", + "29110", + "29760", + "29851", + "3071", + "3106", + "3113", + "3115", + "3123", + "331", + "337867", + "340024", + "3426", + "3459", + "3543", + "355", + "3561", + "3574", + "3586", + "3592", + "3661", + "3662", + "3718", + "3930", + "4068", + "4210", + "4261", + "4688", + "4689", + "50943", + "51135", + "51163", + "51752", + "5295", + "546", + "54820", + "54968", + "55343", + "5551", + "56262", + "5657", + "57393", + "57591", + "58484", + "5896", + "596", + "5993", + "5994", + "604", + "629", + "64170", + "653361", + "6688", + "6772", + "6775", + "6813", + "6929", + "695", + "7037", + "7098", + "7099", + "714", + "7187", + "720", + "721", + "731", + "732", + "7454", + "7456", + "7852", + "7922", + "79415", + "79944", + "81622", + "81839", + "8302", + "8517", + "8625", + "8676", + "8915", + "8974", + "930", + "939", + "94", + "959", + "973", + "974" + ] + }, + "HP:0002028": { + "Name": "Chronic diarrhea", + "Task": "Monarch", + "Genes": [ + "100", + "10043", + "10525", + "10526", + "105371045", + "10551", + "10616", + "11311", + "118429", + "123264", + "1380", + "146206", + "1593", + "1777", + "1794", + "200931", + "2068", + "22900", + "23149", + "23394", + "23474", + "238", + "25839", + "26007", + "2984", + "3074", + "3423", + "3425", + "3551", + "3559", + "3561", + "3572", + "3575", + "359948", + "3689", + "3718", + "389421", + "3981", + "4004", + "4072", + "427", + "4547", + "4598", + "4613", + "4683", + "472", + "4792", + "498", + "50615", + "50943", + "51111", + "5236", + "5293", + "5295", + "5317", + "537", + "538", + "5422", + "54809", + "54888", + "55027", + "5528", + "55343", + "55630", + "55636", + "56052", + "57003", + "57511", + "57531", + "5896", + "5966", + "60468", + "6263", + "6288", + "64421", + "6499", + "6523", + "6555", + "6651", + "6720", + "6809", + "6929", + "695", + "7015", + "7037", + "7132", + "7153", + "721", + "7454", + "7456", + "7535", + "7737", + "7874", + "79827", + "83737", + "841", + "84433", + "84876", + "8517", + "8567", + "8929", + "90268", + "915", + "917", + "92667", + "987" + ] + }, + "HP:0004400": { + "Name": "Abnormality of the pylorus", + "Task": "Monarch", + "Genes": [ + "10277", + "10516", + "10564", + "10630", + "127833", + "1399", + "147372", + "1535", + "1536", + "160418", + "1717", + "1723", + "1785", + "2263", + "23013", + "2313", + "2316", + "23327", + "23476", + "2563", + "25836", + "25970", + "274", + "284058", + "284119", + "30008", + "3265", + "3339", + "3655", + "3691", + "374879", + "388015", + "3909", + "3914", + "3918", + "404672", + "4052", + "4131", + "4534", + "4618", + "4688", + "4689", + "473", + "4744", + "4784", + "4791", + "4868", + "5009", + "5062", + "5189", + "5190", + "5192", + "5194", + "5195", + "529", + "5339", + "54880", + "54897", + "55012", + "5528", + "55670", + "55697", + "55780", + "55869", + "5590", + "5594", + "5824", + "5828", + "5830", + "5831", + "5885", + "613", + "6261", + "63895", + "63976", + "64419", + "6497", + "653361", + "6885", + "6926", + "6928", + "7798", + "79415", + "79633", + "80781", + "81031", + "8243", + "8260", + "8425", + "8504", + "8510", + "8514", + "871", + "8788", + "8799", + "9126", + "91754", + "9409", + "9508", + "9759", + "9839", + "9896", + "9968" + ] + }, + "HP:0025667": { + "Name": "Fetal neck anomaly", + "Task": "Monarch", + "Genes": [ + "10082", + "10128", + "10274", + "104", + "10682", + "1317", + "135886", + "155368", + "155382", + "168667", + "1717", + "1725", + "1822", + "1836", + "1947", + "200734", + "2050", + "2261", + "22800", + "22808", + "2294", + "23476", + "23556", + "25836", + "25978", + "26608", + "2896", + "2969", + "29895", + "29968", + "3190", + "3265", + "368", + "3845", + "3911", + "3930", + "3984", + "4137", + "415", + "4593", + "4893", + "4953", + "51085", + "5167", + "5189", + "5190", + "5192", + "5194", + "5195", + "526", + "54209", + "54664", + "55670", + "55697", + "55790", + "55869", + "5663", + "57465", + "5781", + "5824", + "5828", + "5830", + "5885", + "5894", + "5922", + "5982", + "6016", + "6237", + "653361", + "6654", + "6655", + "6804", + "6925", + "699", + "701", + "7355", + "7415", + "7458", + "7461", + "79770", + "79796", + "8216", + "8243", + "83475", + "84163", + "84231", + "84277", + "8468", + "8504", + "867", + "8799", + "8878", + "9031", + "9126", + "9184", + "9275", + "9319", + "9321", + "9409", + "9569", + "9702", + "9896" + ] + }, + "HP:0002021": { + "Name": "Pyloric stenosis", + "Task": "Monarch", + "Genes": [ + "10277", + "10516", + "10564", + "10630", + "127833", + "1399", + "147372", + "1535", + "1536", + "160418", + "1717", + "1723", + "1785", + "2263", + "23013", + "2313", + "2316", + "23327", + "23476", + "2563", + "25836", + "25970", + "274", + "284058", + "284119", + "30008", + "3265", + "3339", + "374879", + "388015", + "3909", + "3914", + "3918", + "404672", + "4052", + "4131", + "4534", + "4618", + "4688", + "4689", + "473", + "4744", + "4784", + "4791", + "4868", + "5009", + "5062", + "5189", + "5190", + "5192", + "5194", + "5195", + "529", + "54880", + "54897", + "55012", + "5528", + "55670", + "55697", + "55780", + "55869", + "5590", + "5594", + "5824", + "5828", + "5830", + "5831", + "5885", + "613", + "6261", + "63895", + "63976", + "64419", + "6497", + "653361", + "6885", + "6926", + "6928", + "7798", + "79415", + "79633", + "80781", + "81031", + "8243", + "8260", + "8425", + "8504", + "8510", + "8514", + "871", + "8788", + "8799", + "9126", + "91754", + "9409", + "9508", + "9759", + "9839", + "9896", + "9968" + ] + }, + "HP:0100031": { + "Name": "Neoplasm of the thyroid gland", + "Task": "Monarch", + "Genes": [ + "100144748", + "10125", + "1026", + "1027", + "1029", + "1030", + "1031", + "10483", + "10512", + "11200", + "182", + "1889", + "1908", + "1910", + "196528", + "201163", + "205717", + "2064", + "2065", + "207", + "215", + "220296", + "223117", + "22909", + "2299", + "2304", + "23405", + "26585", + "2668", + "27030", + "2956", + "3026", + "324", + "3265", + "355", + "356", + "3766", + "3845", + "4000", + "4072", + "4193", + "4292", + "4436", + "4437", + "4595", + "472", + "4893", + "4902", + "50940", + "5172", + "5290", + "5378", + "538", + "5395", + "5424", + "5426", + "5573", + "5580", + "5728", + "57492", + "57522", + "5977", + "5979", + "6224", + "6390", + "6391", + "6392", + "64218", + "657", + "6597", + "6598", + "6601", + "6602", + "6605", + "6608", + "6659", + "6664", + "6720", + "675", + "7038", + "7048", + "7080", + "7157", + "7486", + "79577", + "8289", + "843", + "9562", + "9817" + ] + }, + "HP:0007759": { + "Name": "Opacification of the corneal stroma", + "Task": "Monarch", + "Genes": [ + "100506658", + "10842", + "11041", + "11081", + "114548", + "1161", + "1497", + "1545", + "157570", + "162514", + "1643", + "182", + "19", + "2053", + "2068", + "2071", + "2072", + "2073", + "2074", + "2296", + "2301", + "2312", + "255738", + "2588", + "26191", + "2629", + "2690", + "2720", + "2778", + "285440", + "29914", + "30813", + "326", + "335", + "336", + "338", + "338917", + "3425", + "348", + "3559", + "3560", + "3845", + "3859", + "3931", + "3949", + "3977", + "3990", + "4070", + "412", + "4166", + "427", + "4313", + "4668", + "4693", + "4914", + "50485", + "5080", + "51360", + "51715", + "5189", + "5308", + "5309", + "54101", + "5476", + "55315", + "55624", + "5696", + "57192", + "5771", + "5828", + "5830", + "5832", + "58495", + "59341", + "6309", + "6399", + "64127", + "64241", + "6720", + "6775", + "7045", + "7490", + "7507", + "7508", + "79158", + "79722", + "80781", + "83959", + "84572", + "84942", + "8671", + "91851", + "919" + ] + }, + "HP:0001582": { + "Name": "Redundant skin", + "Task": "Monarch", + "Genes": [ + "10225", + "10516", + "10682", + "10801", + "113189", + "117581", + "124997", + "1281", + "135886", + "155368", + "155382", + "165", + "2131", + "2146", + "2261", + "2263", + "22884", + "2296", + "23512", + "23545", + "26281", + "26608", + "2677", + "2683", + "285590", + "2879", + "2969", + "29940", + "29957", + "30008", + "3008", + "3248", + "3265", + "3845", + "388015", + "3984", + "4052", + "4716", + "4882", + "51021", + "51085", + "5189", + "523", + "529", + "5308", + "538", + "54453", + "54496", + "54539", + "55165", + "55593", + "55697", + "5604", + "5605", + "56945", + "5831", + "5832", + "5885", + "5982", + "6197", + "64324", + "653361", + "6535", + "673", + "6804", + "6913", + "7227", + "7458", + "7461", + "79087", + "79848", + "81031", + "8260", + "84163", + "84168", + "84231", + "8425", + "84277", + "8468", + "8621", + "8726", + "8788", + "9031", + "92344", + "9275", + "9509", + "9569", + "9786", + "9791", + "9896" + ] + }, + "HP:0003043": { + "Name": "Abnormal shoulder morphology", + "Task": "Monarch", + "Genes": [ + "10265", + "10564", + "1146", + "1277", + "1278", + "1289", + "1290", + "1303", + "135886", + "145258", + "155368", + "155382", + "160418", + "163175", + "165", + "1947", + "2138", + "2316", + "23327", + "2556", + "26175", + "26191", + "26229", + "26608", + "2783", + "2969", + "29895", + "3339", + "339855", + "3559", + "3560", + "368", + "3714", + "388015", + "392255", + "3984", + "4000", + "4010", + "4131", + "4222", + "4621", + "4998", + "5075", + "51085", + "51633", + "5167", + "538", + "54808", + "54880", + "55636", + "55733", + "55768", + "55780", + "5621", + "57167", + "5727", + "5771", + "59341", + "5982", + "6329", + "63895", + "6399", + "653361", + "6775", + "6804", + "6910", + "7138", + "7458", + "7461", + "79722", + "8260", + "83932", + "84163", + "84277", + "8450", + "84572", + "8468", + "84919", + "860", + "865", + "8788", + "8838", + "9031", + "91179", + "919", + "92255", + "9275", + "93587", + "9469", + "9569", + "9573", + "9896", + "9939" + ] + }, + "HP:0003745": { + "Name": "Sporadic", + "Task": "Monarch", + "Genes": [ + "10382", + "10743", + "10815", + "11236", + "126", + "1387", + "1487", + "1816", + "201163", + "2033", + "207", + "2260", + "2261", + "2290", + "23095", + "2317", + "23384", + "23742", + "2475", + "257", + "25836", + "25942", + "26137", + "26277", + "2629", + "2702", + "2703", + "27235", + "2736", + "2776", + "2778", + "3123", + "3265", + "3481", + "3664", + "3717", + "3815", + "3845", + "39", + "3954", + "4137", + "4208", + "4287", + "4609", + "4774", + "4784", + "4893", + "4929", + "4968", + "5048", + "50937", + "5156", + "51816", + "5290", + "53834", + "54551", + "55193", + "55636", + "5604", + "5663", + "57502", + "5832", + "5925", + "6197", + "6208", + "6311", + "6390", + "6391", + "6496", + "6497", + "6638", + "6794", + "6908", + "6927", + "6928", + "7248", + "7249", + "7253", + "7337", + "7341", + "7428", + "7468", + "7681", + "779", + "79813", + "84823", + "85358", + "8675", + "8915", + "8924", + "9627", + "9791" + ] + }, + "HP:0011124": { + "Name": "Abnormal epidermal morphology", + "Task": "Monarch", + "Genes": [ + "10269", + "10320", + "1041", + "10519", + "10682", + "10804", + "10999", + "11012", + "121391", + "126410", + "146206", + "1475", + "165918", + "1825", + "1828", + "1832", + "1893", + "1956", + "204219", + "207", + "22861", + "23086", + "2312", + "23328", + "23581", + "23586", + "242", + "2531", + "25939", + "26525", + "2697", + "27032", + "2706", + "2707", + "2783", + "286887", + "3106", + "340665", + "348938", + "3557", + "3559", + "3575", + "368", + "3728", + "3815", + "3832", + "3848", + "3849", + "3857", + "3858", + "3860", + "3868", + "388698", + "4000", + "4014", + "4035", + "488", + "50814", + "51360", + "5167", + "5271", + "5317", + "55012", + "56916", + "56983", + "57152", + "5921", + "59344", + "5965", + "64065", + "64131", + "64132", + "643418", + "64834", + "6785", + "6820", + "6868", + "7051", + "7286", + "7373", + "79092", + "79719", + "79755", + "79977", + "80067", + "80326", + "831", + "8710", + "9076", + "9180", + "9333", + "9526", + "987" + ] + }, + "HP:0000359": { + "Name": "Abnormality of the inner ear", + "Task": "Monarch", + "Genes": [ + "10083", + "10518", + "10804", + "10847", + "1123", + "124590", + "1288", + "147912", + "152137", + "161742", + "1663", + "1678", + "1690", + "200734", + "207", + "2077", + "2138", + "2248", + "2261", + "2263", + "22800", + "22808", + "22901", + "2299", + "23498", + "25861", + "26040", + "2706", + "3035", + "3265", + "3735", + "3766", + "3845", + "4363", + "4647", + "4693", + "4762", + "4771", + "4893", + "4998", + "5015", + "51004", + "51082", + "5172", + "5190", + "5298", + "5396", + "5456", + "54845", + "55636", + "57167", + "5728", + "5781", + "5894", + "5922", + "595", + "6016", + "6237", + "64072", + "6495", + "65217", + "6598", + "6654", + "6655", + "6663", + "6885", + "6949", + "7291", + "7399", + "7401", + "7428", + "79955", + "80000", + "8216", + "8295", + "83715", + "84059", + "84131", + "84172", + "84196", + "8626", + "867", + "9131", + "93986", + "9533", + "9723", + "9935", + "9984" + ] + }, + "HP:0006753": { + "Name": "Neoplasm of the stomach", + "Task": "Monarch", + "Genes": [ + "1019", + "1029", + "1030", + "10395", + "11200", + "11277", + "1316", + "1499", + "1630", + "201163", + "2022", + "2033", + "2064", + "207", + "2261", + "2263", + "22909", + "25788", + "25913", + "27030", + "2956", + "324", + "3553", + "3557", + "3659", + "3815", + "3845", + "4072", + "4089", + "4157", + "4163", + "4193", + "4255", + "4286", + "4292", + "4436", + "4437", + "4595", + "472", + "4893", + "50940", + "5156", + "5157", + "5290", + "5320", + "5378", + "5395", + "5424", + "5426", + "54386", + "5573", + "5727", + "5782", + "5795", + "581", + "595", + "6224", + "6389", + "6390", + "6391", + "641", + "64218", + "657", + "6714", + "673", + "675", + "6790", + "6794", + "699", + "701", + "7015", + "7048", + "7097", + "7157", + "7373", + "79719", + "8313", + "8314", + "843", + "8915", + "9184", + "9319", + "9702", + "999" + ] + }, + "HP:0000491": { + "Name": "Keratitis", + "Task": "Monarch", + "Genes": [ + "105371045", + "10804", + "114548", + "1161", + "121214", + "1230", + "1287", + "1288", + "1308", + "136647", + "149233", + "16", + "1643", + "165", + "204219", + "2068", + "2071", + "2072", + "2073", + "2074", + "2200", + "2255", + "2261", + "2263", + "22861", + "242", + "26154", + "2623", + "2706", + "285848", + "2934", + "2961", + "3106", + "3123", + "3141", + "326", + "337867", + "3459", + "348938", + "355", + "3572", + "3586", + "3592", + "3930", + "404672", + "4072", + "4081", + "4210", + "4547", + "4914", + "5080", + "51360", + "51752", + "5339", + "5429", + "54941", + "55343", + "55699", + "56244", + "59344", + "5965", + "6335", + "64127", + "6720", + "6775", + "6820", + "6897", + "7051", + "7099", + "720", + "7389", + "7390", + "7454", + "7456", + "7507", + "7508", + "7737", + "8218", + "8302", + "833", + "8517", + "8626", + "9244" + ] + }, + "HP:0006707": { + "Name": "Abnormality of the hepatic vasculature", + "Task": "Monarch", + "Genes": [ + "10056", + "10112", + "10507", + "10699", + "11277", + "1499", + "169792", + "171023", + "1716", + "197131", + "199221", + "2022", + "2153", + "219736", + "2321", + "23322", + "23534", + "23729", + "2629", + "2632", + "2658", + "27031", + "2783", + "285203", + "2859", + "3077", + "3123", + "3431", + "3516", + "3592", + "3594", + "3663", + "3717", + "3783", + "3988", + "4089", + "4233", + "4351", + "4352", + "4485", + "462", + "4851", + "50674", + "51085", + "51473", + "51816", + "5314", + "5450", + "54567", + "54790", + "55340", + "55532", + "5557", + "56244", + "56623", + "57514", + "57545", + "57572", + "5825", + "6427", + "6521", + "654", + "6663", + "6689", + "6925", + "72", + "7289", + "7840", + "79258", + "79989", + "79991", + "811", + "83737", + "84936", + "861", + "867", + "889", + "9076", + "91147", + "92345", + "93183", + "94", + "9401", + "9414", + "950", + "9780", + "9966", + "9968" + ] + }, + "HP:0004796": { + "Name": "Gastrointestinal obstruction", + "Task": "Monarch", + "Genes": [ + "1029", + "10512", + "1080", + "1084", + "11254", + "115019", + "1493", + "1499", + "1604", + "1889", + "1908", + "1909", + "1910", + "2064", + "2065", + "2068", + "2130", + "2131", + "2132", + "215", + "2153", + "2184", + "2212", + "223117", + "22802", + "23022", + "26153", + "26191", + "2668", + "2729", + "284119", + "285282", + "2947", + "2984", + "3077", + "3110", + "3113", + "3115", + "3145", + "3162", + "324", + "3569", + "3717", + "3718", + "3783", + "3815", + "3845", + "4089", + "4210", + "4282", + "4286", + "4598", + "4609", + "4629", + "4680", + "4854", + "4902", + "50943", + "51164", + "5156", + "5159", + "5265", + "538", + "5498", + "5657", + "57217", + "5979", + "6389", + "6390", + "6391", + "6392", + "64127", + "6535", + "6550", + "6556", + "6572", + "6608", + "6663", + "672", + "6720", + "675", + "6794", + "6804", + "6905", + "7040", + "7132", + "7157", + "7490", + "79728", + "811", + "91574" + ] + }, + "HP:0001426": { + "Name": "Non-Mendelian inheritance", + "Task": "Monarch", + "Genes": [ + "10599", + "10804", + "114798", + "117156", + "118", + "121278", + "125", + "126", + "128", + "1280", + "144568", + "1471", + "155", + "1577", + "1789", + "181", + "183", + "185", + "1889", + "2147", + "2153", + "219736", + "22861", + "2289", + "2322", + "23347", + "23767", + "240", + "241", + "2487", + "2555", + "2706", + "2707", + "2782", + "2784", + "28234", + "3075", + "3106", + "3107", + "3117", + "3119", + "3123", + "3135", + "3176", + "3356", + "3569", + "3596", + "3664", + "392255", + "4589", + "4683", + "4750", + "481", + "4846", + "5078", + "50833", + "5133", + "5167", + "51738", + "5443", + "5468", + "55791", + "5583", + "5654", + "5740", + "57502", + "581", + "613", + "6331", + "6356", + "64127", + "64241", + "652", + "6638", + "672", + "6886", + "6887", + "7124", + "7157", + "7298", + "7352", + "79659", + "8021", + "8431", + "8490", + "8542", + "871", + "9573", + "9607", + "9672" + ] + }, + "HP:0007328": { + "Name": "Impaired pain sensation", + "Task": "Monarch", + "Genes": [ + "10059", + "10522", + "10558", + "10743", + "11280", + "182", + "19", + "219854", + "2200", + "22854", + "22948", + "23096", + "2314", + "23742", + "253738", + "25923", + "2705", + "283489", + "2892", + "3035", + "3098", + "3190", + "3315", + "3481", + "3572", + "3977", + "4010", + "4204", + "4358", + "4747", + "4803", + "4914", + "51062", + "5165", + "5375", + "5376", + "54332", + "54551", + "55699", + "55768", + "55775", + "5631", + "57410", + "59335", + "59345", + "5981", + "6310", + "6335", + "6652", + "6792", + "7204", + "7343", + "7415", + "7681", + "781", + "79628", + "80036", + "80821", + "8218", + "8242", + "8243", + "8518", + "85358", + "85446", + "8566", + "8567", + "87178", + "8888", + "8924", + "9131", + "9517", + "9568", + "9759", + "9839", + "9927" + ] + }, + "HP:0000372": { + "Name": "Abnormal auditory canal morphology", + "Task": "Monarch", + "Genes": [ + "10194", + "10262", + "10526", + "10585", + "10735", + "10815", + "10992", + "1123", + "1146", + "114928", + "117581", + "121340", + "1280", + "1294", + "137492", + "145173", + "145258", + "147912", + "1487", + "1906", + "1909", + "1956", + "2065", + "207", + "2138", + "2218", + "2263", + "23347", + "23426", + "23476", + "23594", + "25836", + "2737", + "2773", + "29954", + "3166", + "3199", + "341640", + "3954", + "4094", + "4854", + "4921", + "4998", + "5000", + "5075", + "50964", + "51053", + "51434", + "526", + "5332", + "53834", + "5447", + "55869", + "56992", + "57167", + "5728", + "57465", + "57591", + "5885", + "6135", + "6154", + "6231", + "6234", + "64840", + "6495", + "6558", + "6628", + "6868", + "6913", + "6949", + "7468", + "79147", + "79633", + "80144", + "8085", + "81620", + "8243", + "8318", + "8626", + "8642", + "90121", + "9126", + "9215", + "9343", + "9382", + "990", + "9935", + "9968" + ] + }, + "HP:0010051": { + "Name": "Deviation of the hallux", + "Task": "Monarch", + "Genes": [ + "10262", + "10283", + "11107", + "126792", + "1277", + "1278", + "135886", + "1387", + "155368", + "155382", + "165", + "2033", + "207", + "2077", + "2254", + "2260", + "2261", + "2263", + "2273", + "23102", + "25923", + "26005", + "26229", + "2629", + "26608", + "2969", + "3209", + "3239", + "3590", + "3756", + "3778", + "3782", + "3984", + "4621", + "4784", + "4841", + "50515", + "51085", + "526", + "55027", + "55315", + "55780", + "56098", + "5696", + "57122", + "57178", + "5728", + "5932", + "5982", + "650", + "653361", + "6567", + "658", + "6595", + "6662", + "6736", + "6792", + "6804", + "6938", + "7291", + "7458", + "7461", + "7528", + "7874", + "79759", + "7994", + "80185", + "8200", + "8239", + "8294", + "83737", + "84163", + "84277", + "84627", + "8468", + "8626", + "90", + "9031", + "91179", + "9275", + "9469", + "9569", + "9839" + ] + }, + "HP:0002974": { + "Name": "Radioulnar synostosis", + "Task": "Monarch", + "Genes": [ + "10262", + "10584", + "10815", + "11285", + "124583", + "126792", + "135886", + "1487", + "155368", + "155382", + "157570", + "1723", + "200734", + "2122", + "2261", + "2263", + "22800", + "22808", + "22856", + "23476", + "23522", + "25836", + "26040", + "26229", + "26608", + "2969", + "29980", + "29998", + "3207", + "324", + "3845", + "3954", + "3984", + "4038", + "4091", + "4094", + "4893", + "50945", + "51085", + "53834", + "5447", + "54880", + "55790", + "55869", + "5648", + "57167", + "5781", + "5885", + "5894", + "5922", + "5982", + "6016", + "6154", + "6237", + "63895", + "64131", + "653361", + "6654", + "6655", + "6804", + "6910", + "7291", + "7458", + "7461", + "7468", + "78989", + "8216", + "8243", + "84163", + "84277", + "8468", + "867", + "9031", + "9126", + "9275", + "9469", + "9569" + ] + }, + "HP:0005214": { + "Name": "Intestinal obstruction", + "Task": "Monarch", + "Genes": [ + "10512", + "1080", + "1084", + "11254", + "115019", + "1493", + "1499", + "1604", + "1889", + "1908", + "1909", + "1910", + "2064", + "2065", + "2068", + "2130", + "2131", + "2132", + "215", + "2153", + "2184", + "2212", + "223117", + "22802", + "26153", + "26191", + "2668", + "2729", + "284119", + "2947", + "2984", + "3077", + "3113", + "3115", + "3145", + "3162", + "324", + "3569", + "3717", + "3718", + "3783", + "3815", + "4210", + "4282", + "4286", + "4598", + "4609", + "4629", + "4680", + "4854", + "4902", + "50943", + "51164", + "5156", + "5159", + "5265", + "538", + "5498", + "5657", + "57217", + "5979", + "6389", + "6390", + "6391", + "6392", + "64127", + "6535", + "6550", + "6556", + "6572", + "6608", + "6663", + "6720", + "6794", + "6804", + "6905", + "7040", + "7132", + "7490", + "811", + "91574" + ] + }, + "HP:0001822": { + "Name": "Hallux valgus", + "Task": "Monarch", + "Genes": [ + "10262", + "10283", + "11107", + "126792", + "1277", + "1278", + "135886", + "155368", + "155382", + "165", + "207", + "2077", + "2261", + "2263", + "2273", + "23102", + "25923", + "26229", + "2629", + "26608", + "2969", + "3239", + "3590", + "3756", + "3778", + "3782", + "3984", + "4621", + "4784", + "4841", + "51085", + "526", + "55027", + "55315", + "55780", + "56098", + "5696", + "57122", + "57178", + "5728", + "5932", + "5982", + "650", + "653361", + "6567", + "658", + "6595", + "6662", + "6736", + "6792", + "6804", + "6938", + "7291", + "7458", + "7461", + "7528", + "7874", + "79759", + "80185", + "8200", + "8239", + "8294", + "83737", + "84163", + "84277", + "84627", + "8468", + "8626", + "90", + "9031", + "91179", + "9275", + "9469", + "9569", + "9839" + ] + }, + "HP:0001879": { + "Name": "Abnormal eosinophil morphology", + "Task": "Monarch", + "Genes": [ + "100", + "10125", + "10312", + "1041", + "10507", + "10526", + "10999", + "11005", + "113235", + "114548", + "171023", + "1991", + "2137", + "22861", + "2672", + "2859", + "2908", + "29775", + "30009", + "3123", + "3394", + "355", + "356", + "3561", + "3572", + "3575", + "3716", + "3815", + "3981", + "4485", + "50943", + "5156", + "5159", + "5238", + "5294", + "546", + "54790", + "55636", + "5580", + "56244", + "5896", + "64072", + "64170", + "6427", + "64421", + "64919", + "6720", + "6728", + "6729", + "673", + "6774", + "6778", + "6925", + "7157", + "7454", + "7456", + "7535", + "81570", + "81704", + "825", + "8288", + "84196", + "843", + "84433", + "84905", + "8517", + "9101", + "915", + "916", + "919", + "9939" + ] + }, + "HP:0011390": { + "Name": "Abnormal inner ear morphology", + "Task": "Monarch", + "Genes": [ + "10083", + "10518", + "10804", + "10847", + "1123", + "124590", + "1288", + "147912", + "152137", + "1663", + "1678", + "1690", + "200734", + "207", + "2077", + "2138", + "2248", + "2261", + "2263", + "22800", + "22808", + "22901", + "2299", + "23498", + "26040", + "2706", + "3035", + "3265", + "3766", + "3845", + "4363", + "4647", + "4693", + "4762", + "4893", + "4998", + "5015", + "51082", + "5172", + "5190", + "5298", + "5396", + "5456", + "54845", + "55636", + "57167", + "5728", + "5781", + "5894", + "5922", + "6016", + "6237", + "64072", + "6495", + "65217", + "6654", + "6655", + "6663", + "6885", + "6949", + "7291", + "7401", + "80000", + "8216", + "8295", + "83715", + "84131", + "84172", + "84196", + "867", + "9131", + "93986", + "9533", + "9723", + "9935", + "9984" + ] + }, + "HP:0002758": { + "Name": "Osteoarthritis", + "Task": "Monarch", + "Genes": [ + "10216", + "10269", + "11117", + "1186", + "124583", + "1277", + "1280", + "1281", + "1289", + "1290", + "1297", + "1298", + "1299", + "1301", + "1302", + "1311", + "165", + "176", + "1836", + "2157", + "2158", + "2200", + "2261", + "2487", + "26191", + "2629", + "2690", + "2778", + "30061", + "3081", + "3106", + "3248", + "3559", + "3560", + "3703", + "3835", + "4000", + "4087", + "4088", + "4148", + "4210", + "4322", + "4803", + "4982", + "5251", + "540", + "54829", + "55325", + "56172", + "57592", + "5771", + "59341", + "6399", + "65992", + "6775", + "7043", + "7227", + "79722", + "8200", + "83550", + "8838", + "9049", + "919", + "950" + ] + }, + "HP:0004808": { + "Name": "Acute myeloid leukemia", + "Task": "Monarch", + "Genes": [ + "1029", + "10312", + "1050", + "11200", + "11224", + "128", + "134218", + "171023", + "1736", + "1788", + "1991", + "2065", + "2120", + "219285", + "2322", + "23451", + "2623", + "2624", + "26511", + "2672", + "29089", + "3717", + "3815", + "3845", + "4193", + "4210", + "4352", + "4869", + "51119", + "51428", + "51816", + "54790", + "54809", + "55027", + "6125", + "6132", + "6133", + "6135", + "6138", + "6141", + "6154", + "6155", + "6160", + "6165", + "6201", + "6204", + "6208", + "6210", + "6218", + "6223", + "6224", + "6229", + "6231", + "6232", + "6234", + "6235", + "641", + "6427", + "6455", + "6728", + "6729", + "675", + "7015", + "7066", + "7157", + "79631", + "79728", + "8021", + "8028", + "81570", + "8301", + "861", + "8930", + "90121" + ] + }, + "HP:0200008": { + "Name": "Intestinal polyposis", + "Task": "Monarch", + "Genes": [ + "100144748", + "1029", + "10483", + "10512", + "11200", + "1499", + "1889", + "1908", + "1910", + "201163", + "2022", + "205717", + "2064", + "2065", + "207", + "215", + "220296", + "223117", + "22909", + "23405", + "2658", + "26585", + "2668", + "27030", + "2778", + "2956", + "324", + "3845", + "4072", + "4089", + "4193", + "4292", + "4436", + "4437", + "4595", + "4902", + "4913", + "5156", + "5290", + "5378", + "538", + "5395", + "5424", + "5426", + "54894", + "5728", + "5979", + "6390", + "6391", + "6392", + "657", + "6608", + "6720", + "699", + "701", + "7048", + "7157", + "8313", + "8930", + "9184", + "9319", + "94", + "9702", + "9817" + ] + }, + "HP:0005584": { + "Name": "Renal cell carcinoma", + "Task": "Monarch", + "Genes": [ + "100144748", + "10395", + "10483", + "11236", + "1499", + "1630", + "1743", + "201163", + "2033", + "205717", + "207", + "2261", + "2271", + "2304", + "23095", + "23405", + "25788", + "27030", + "2778", + "3026", + "324", + "3458", + "4000", + "4149", + "4163", + "4191", + "4233", + "4763", + "4893", + "4968", + "5157", + "5290", + "5320", + "54949", + "55193", + "5546", + "55654", + "5728", + "5782", + "5795", + "581", + "595", + "5979", + "6389", + "6390", + "6391", + "6392", + "64127", + "6714", + "673", + "6790", + "6794", + "6927", + "6928", + "699", + "701", + "7030", + "7097", + "7157", + "7248", + "7249", + "7373", + "7428", + "79577", + "79719", + "79798", + "8313", + "8314", + "8402", + "9562", + "9817" + ] + }, + "HP:0020064": { + "Name": "Abnormal eosinophil count", + "Task": "Monarch", + "Genes": [ + "100", + "10125", + "10312", + "1041", + "10526", + "10999", + "11005", + "113235", + "114548", + "171023", + "1991", + "2137", + "22861", + "2672", + "2908", + "29775", + "30009", + "3123", + "3394", + "355", + "356", + "3561", + "3572", + "3575", + "3716", + "3815", + "3981", + "50943", + "5156", + "5159", + "5238", + "5294", + "546", + "54790", + "55636", + "5580", + "56244", + "5896", + "64072", + "64170", + "6427", + "64421", + "64919", + "6720", + "6728", + "6729", + "673", + "6774", + "6778", + "7157", + "7454", + "7535", + "81570", + "81704", + "825", + "84196", + "843", + "84433", + "84905", + "8517", + "9101", + "915", + "916", + "919", + "9939" + ] + }, + "HP:0000995": { + "Name": "Melanocytic nevus", + "Task": "Monarch", + "Genes": [ + "1001", + "100144748", + "10483", + "1139", + "1281", + "1643", + "200734", + "205717", + "2068", + "207", + "2071", + "2072", + "2073", + "2077", + "2146", + "2200", + "2261", + "2263", + "22800", + "22808", + "23512", + "3257", + "3265", + "3481", + "3845", + "4157", + "4352", + "4784", + "4893", + "4948", + "4982", + "5144", + "51684", + "5290", + "55131", + "5573", + "5727", + "5728", + "5781", + "5894", + "5922", + "6016", + "60681", + "6237", + "6390", + "6391", + "63915", + "6392", + "6654", + "6655", + "6711", + "673", + "7066", + "7299", + "7507", + "7508", + "7703", + "8216", + "8626", + "8643", + "867", + "8726", + "8792" + ] + }, + "HP:0005266": { + "Name": "Intestinal polyp", + "Task": "Monarch", + "Genes": [ + "100144748", + "1029", + "10483", + "10512", + "11200", + "1499", + "1889", + "1908", + "1910", + "201163", + "2022", + "205717", + "2064", + "2065", + "207", + "215", + "220296", + "223117", + "22909", + "23405", + "2475", + "2658", + "26585", + "2668", + "27030", + "2778", + "2956", + "324", + "3845", + "4072", + "4089", + "4193", + "4292", + "4436", + "4437", + "4595", + "4902", + "4913", + "5156", + "5290", + "5378", + "538", + "5395", + "5424", + "5426", + "54894", + "5727", + "5728", + "5979", + "6390", + "6391", + "6392", + "657", + "6608", + "6720", + "6794", + "699", + "701", + "7048", + "7157", + "8313", + "8930", + "9184", + "9319", + "94", + "9702", + "9817" + ] + }, + "HP:0000698": { + "Name": "Conical tooth", + "Task": "Monarch", + "Genes": [ + "10913", + "128178", + "132884", + "145173", + "147372", + "1500", + "1723", + "1739", + "1748", + "1896", + "2121", + "2248", + "2260", + "2261", + "2263", + "22837", + "23314", + "23545", + "2735", + "3664", + "387", + "4040", + "4487", + "4750", + "4792", + "5083", + "5156", + "51626", + "526", + "54084", + "545", + "54848", + "5566", + "5567", + "57492", + "57589", + "5818", + "60529", + "64682", + "652", + "6603", + "6768", + "7039", + "7341", + "7480", + "7994", + "80326", + "81607", + "8313", + "8517", + "8626", + "9411", + "9853", + "999" + ] + }, + "HP:0011370": { + "Name": "Recurrent cutaneous fungal infections", + "Task": "Monarch", + "Genes": [ + "100", + "10043", + "10758", + "10804", + "11151", + "112744", + "146206", + "1794", + "23765", + "2706", + "2908", + "326", + "3431", + "3551", + "3559", + "3561", + "3572", + "3575", + "3689", + "3718", + "4261", + "4598", + "4792", + "51311", + "5238", + "5293", + "546", + "57724", + "5993", + "5994", + "6097", + "64072", + "64170", + "64421", + "64581", + "6720", + "673", + "6772", + "6774", + "6789", + "7037", + "7157", + "7535", + "84196", + "84818", + "84905", + "8517", + "8546", + "8625", + "90417", + "9101", + "915", + "916", + "917", + "919", + "959", + "9948" + ] + }, + "HP:0009466": { + "Name": "Radial deviation of finger", + "Task": "Monarch", + "Genes": [ + "10225", + "10262", + "124583", + "157570", + "1836", + "1855", + "1954", + "2146", + "2245", + "2261", + "2263", + "22856", + "22858", + "23019", + "2316", + "2317", + "23483", + "23742", + "257", + "25942", + "26227", + "29123", + "3480", + "3549", + "4089", + "4920", + "5295", + "54551", + "546", + "54880", + "54903", + "54928", + "55764", + "5604", + "5781", + "582", + "59341", + "650", + "65250", + "65267", + "658", + "673", + "7474", + "7681", + "79140", + "79796", + "8200", + "8260", + "84100", + "84231", + "8481", + "8924", + "9241", + "9244", + "9968" + ] + }, + "HP:0000554": { + "Name": "Uveitis", + "Task": "Monarch", + "Genes": [ + "10125", + "10273", + "10507", + "10892", + "114548", + "1161", + "130340", + "144811", + "1776", + "2067", + "2072", + "2074", + "220202", + "22861", + "26191", + "26525", + "2697", + "2859", + "3106", + "3123", + "326", + "330", + "355", + "3559", + "356", + "3560", + "3569", + "3662", + "4282", + "4485", + "51360", + "5580", + "56244", + "5771", + "641", + "64127", + "6775", + "6925", + "7086", + "7128", + "7132", + "726", + "79722", + "843", + "8517", + "8915", + "919", + "939", + "987" + ] + }, + "HP:0100743": { + "Name": "Neoplasm of the rectum", + "Task": "Monarch", + "Genes": [ + "100144748", + "1029", + "10483", + "11200", + "2022", + "205717", + "207", + "22909", + "23405", + "26585", + "27030", + "2956", + "324", + "3815", + "3845", + "4072", + "4089", + "4193", + "4292", + "4436", + "4437", + "4595", + "472", + "4913", + "50940", + "5156", + "5290", + "5378", + "5395", + "5424", + "5426", + "54894", + "5573", + "5728", + "6224", + "6389", + "6390", + "6391", + "6392", + "64218", + "657", + "675", + "6794", + "7048", + "7157", + "8313", + "9817" + ] + }, + "HP:0002113": { + "Name": "Pulmonary infiltrates", + "Task": "Monarch", + "Genes": [ + "10125", + "10568", + "10661", + "10892", + "1230", + "1235", + "1490", + "149233", + "1493", + "1794", + "254428", + "26191", + "2629", + "3043", + "3047", + "3048", + "3106", + "3113", + "3115", + "3123", + "330", + "337867", + "3459", + "348", + "355", + "3559", + "356", + "3586", + "3592", + "3663", + "4210", + "427", + "5156", + "51752", + "53335", + "5557", + "5580", + "56244", + "5657", + "5873", + "60468", + "6609", + "6775", + "7080", + "7099", + "720", + "7248", + "7249", + "7317", + "8302", + "843", + "857", + "8915", + "9663" + ] + }, + "HP:0002728": { + "Name": "Chronic mucocutaneous candidiasis", + "Task": "Monarch", + "Genes": [ + "100", + "10043", + "10758", + "11151", + "112744", + "146206", + "1794", + "23765", + "326", + "3431", + "3551", + "3559", + "3561", + "3572", + "3575", + "3689", + "3718", + "4261", + "4598", + "4792", + "51311", + "5238", + "5293", + "57724", + "5993", + "5994", + "6097", + "64170", + "64421", + "64581", + "6720", + "6772", + "6774", + "6789", + "7037", + "7535", + "84818", + "84905", + "8517", + "8546", + "8625", + "90417", + "915", + "916", + "917", + "919", + "959", + "9948" + ] + }, + "HP:0001096": { + "Name": "Keratoconjunctivitis", + "Task": "Monarch", + "Genes": [ + "10804", + "1161", + "1230", + "1308", + "136647", + "149233", + "16", + "165", + "2068", + "2071", + "2074", + "2200", + "2255", + "2261", + "2263", + "22861", + "2623", + "2706", + "2934", + "2961", + "3106", + "3123", + "3141", + "326", + "337867", + "3459", + "355", + "3586", + "3592", + "3930", + "404672", + "4081", + "4210", + "4547", + "51752", + "54941", + "55699", + "56244", + "5965", + "6335", + "64127", + "6720", + "6775", + "6897", + "7099", + "720", + "7389", + "7390", + "7737", + "8302", + "833" + ] + }, + "HP:0000217": { + "Name": "Xerostomia", + "Task": "Monarch", + "Genes": [ + "10133", + "10891", + "1131", + "1235", + "128178", + "1490", + "1610", + "1639", + "2043", + "2066", + "2255", + "2261", + "2263", + "23025", + "23435", + "2521", + "25978", + "2733", + "283", + "29110", + "2934", + "29978", + "311", + "3123", + "3178", + "3663", + "3930", + "400916", + "4744", + "4750", + "5216", + "54209", + "5444", + "5445", + "5446", + "54551", + "55830", + "5630", + "6311", + "6335", + "64127", + "64834", + "6492", + "6558", + "6647", + "7415", + "755", + "8148", + "857", + "8626", + "8878", + "899", + "9071", + "9217", + "9782", + "9896" + ] + }, + "HP:0025269": { + "Name": "Panic attack", + "Task": "Monarch", + "Genes": [ + "1029", + "11315", + "120892", + "1387", + "1499", + "1743", + "1788", + "1813", + "1861", + "2033", + "2034", + "2271", + "22854", + "23095", + "23111", + "23384", + "25792", + "27429", + "2908", + "4149", + "4191", + "4204", + "4763", + "5071", + "5420", + "546", + "54832", + "54949", + "55654", + "5573", + "5979", + "6389", + "6390", + "6391", + "6392", + "64072", + "65018", + "6622", + "673", + "6792", + "7015", + "7157", + "7345", + "7428", + "79734", + "8243", + "8402", + "84133", + "84196", + "8867", + "8910", + "9101", + "9568", + "9829" + ] + }, + "HP:0000474": { + "Name": "Thickened nuchal skin fold", + "Task": "Monarch", + "Genes": [ + "10128", + "10682", + "1317", + "1836", + "1947", + "200734", + "22800", + "22808", + "2294", + "23556", + "25978", + "2896", + "29968", + "3190", + "3265", + "368", + "3845", + "3911", + "4137", + "4893", + "5167", + "5189", + "5190", + "5192", + "5194", + "5195", + "526", + "54209", + "54664", + "55670", + "5663", + "57465", + "5781", + "5824", + "5828", + "5830", + "5894", + "5922", + "6016", + "6237", + "6654", + "6655", + "7355", + "7415", + "79796", + "8216", + "84231", + "8504", + "867", + "8799", + "8878", + "9321", + "9409" + ] + }, + "HP:0100651": { + "Name": "Type I diabetes mellitus", + "Task": "Monarch", + "Genes": [ + "10043", + "10068", + "10273", + "10507", + "10699", + "1188", + "1493", + "1777", + "1854", + "1896", + "219736", + "23019", + "2321", + "23312", + "2542", + "2645", + "284252", + "2859", + "3117", + "3119", + "326", + "3559", + "3630", + "375056", + "3767", + "4313", + "4323", + "4485", + "50674", + "50943", + "51311", + "51816", + "5297", + "55315", + "55806", + "5611", + "57217", + "60401", + "6559", + "6688", + "6772", + "6774", + "6833", + "6925", + "6927", + "7086", + "83737", + "84340", + "847", + "857", + "9051", + "92345", + "9451", + "9570", + "987" + ] + }, + "HP:0100646": { + "Name": "Thyroiditis", + "Task": "Monarch", + "Genes": [ + "100", + "10043", + "10068", + "10125", + "1027", + "10483", + "10507", + "1188", + "1493", + "207", + "22861", + "2542", + "27022", + "2859", + "3117", + "3119", + "355", + "3559", + "356", + "3561", + "3575", + "3981", + "4485", + "4791", + "50943", + "51816", + "5290", + "5297", + "5336", + "5428", + "55636", + "5580", + "57217", + "5728", + "57623", + "5896", + "64421", + "6559", + "6772", + "6777", + "6909", + "6925", + "7038", + "716", + "83737", + "843", + "8651", + "987" + ] + }, + "HP:0001377": { + "Name": "Limited elbow extension", + "Task": "Monarch", + "Genes": [ + "10060", + "10082", + "10262", + "10274", + "1280", + "1299", + "1311", + "157570", + "1855", + "200734", + "2146", + "2200", + "2201", + "2261", + "2263", + "2316", + "2317", + "23529", + "2535", + "25836", + "2782", + "3930", + "4010", + "4148", + "4322", + "4796", + "4882", + "5116", + "51305", + "538", + "5447", + "54808", + "54928", + "55012", + "55790", + "55869", + "5594", + "633", + "6424", + "6910", + "6999", + "7030", + "7474", + "80207", + "83452", + "83737", + "85301", + "89970", + "9244", + "9968" + ] + }, + "HP:0200020": { + "Name": "Corneal erosion", + "Task": "Monarch", + "Genes": [ + "10320", + "105371045", + "10653", + "10804", + "11107", + "117581", + "121214", + "1286", + "1287", + "1294", + "1308", + "1497", + "1634", + "204219", + "224", + "2255", + "2261", + "2263", + "2303", + "242", + "26128", + "26154", + "2706", + "285848", + "3106", + "348938", + "3850", + "4072", + "4166", + "4312", + "4358", + "4914", + "5080", + "51360", + "5336", + "55612", + "55630", + "59344", + "6820", + "7045", + "7051", + "7490", + "8218", + "84627", + "8518", + "8626" + ] + }, + "HP:0001386": { + "Name": "Joint swelling", + "Task": "Monarch", + "Genes": [ + "11200", + "1277", + "1289", + "1290", + "144811", + "2157", + "2243", + "2244", + "2266", + "26191", + "2783", + "3077", + "3081", + "3106", + "3123", + "3248", + "3557", + "3559", + "3560", + "3569", + "3586", + "4210", + "4261", + "427", + "4282", + "4795", + "4921", + "4952", + "4982", + "51744", + "54", + "540", + "56172", + "56244", + "5771", + "5925", + "6399", + "64127", + "654", + "6578", + "6583", + "6775", + "6850", + "7132", + "7157", + "79722", + "83550", + "8838", + "90268", + "9049", + "919", + "9663" + ] + }, + "HP:0034274": { + "Name": "Gastrointestinal ulcer", + "Task": "Monarch", + "Genes": [ + "1026", + "1027", + "1030", + "1031", + "115908", + "1175", + "1294", + "135886", + "155368", + "155382", + "171023", + "2033", + "2629", + "26608", + "2767", + "2969", + "3248", + "3815", + "3984", + "4312", + "4481", + "493856", + "51008", + "51085", + "5297", + "5321", + "5340", + "54790", + "57217", + "57492", + "5982", + "64132", + "6427", + "653361", + "6578", + "6774", + "6804", + "6850", + "7128", + "7458", + "7461", + "7466", + "79577", + "84163", + "84277", + "8468", + "9031", + "9275", + "9569" + ] + }, + "HP:0040189": { + "Name": "Scaling skin", + "Task": "Monarch", + "Genes": [ + "10269", + "1041", + "10682", + "10804", + "11012", + "121391", + "126410", + "146206", + "1475", + "165918", + "1832", + "1956", + "23328", + "23581", + "23586", + "25939", + "2697", + "2706", + "2783", + "348938", + "3559", + "3575", + "3815", + "3832", + "3848", + "3858", + "388698", + "4000", + "4014", + "51360", + "5271", + "5317", + "55012", + "5921", + "5965", + "6785", + "6820", + "6868", + "7051", + "79092", + "80067", + "831", + "9180", + "9333", + "9526", + "987" + ] + }, + "HP:0410241": { + "Name": "Abnormal circulating IgE level", + "Task": "Monarch", + "Genes": [ + "100", + "10043", + "10125", + "1041", + "10526", + "11005", + "121391", + "1294", + "1828", + "1956", + "2137", + "2239", + "2719", + "29775", + "3071", + "355", + "3559", + "356", + "3561", + "3570", + "3572", + "3575", + "3857", + "4792", + "50943", + "51135", + "5238", + "5580", + "56160", + "59067", + "60468", + "64170", + "64421", + "6774", + "6777", + "6778", + "6868", + "6929", + "695", + "7040", + "7297", + "7454", + "81704", + "843", + "84433", + "84905", + "8517", + "919", + "958", + "959" + ] + }, + "HP:0002763": { + "Name": "Abnormal cartilage morphology", + "Task": "Monarch", + "Genes": [ + "1280", + "1836", + "1906", + "2131", + "2132", + "2157", + "2260", + "2261", + "2263", + "22827", + "22907", + "2317", + "26123", + "26137", + "2773", + "3081", + "3106", + "3417", + "3418", + "368", + "3845", + "3930", + "4256", + "4921", + "4982", + "51082", + "5167", + "5332", + "56172", + "5727", + "5745", + "5781", + "5828", + "5830", + "58499", + "63932", + "6399", + "6496", + "6949", + "7050", + "7291", + "7317", + "7468", + "8379", + "84172", + "9533", + "9653" + ] + }, + "HP:0100728": { + "Name": "Germ cell neoplasia", + "Task": "Monarch", + "Genes": [ + "1028", + "1029", + "10297", + "11200", + "1499", + "190", + "2064", + "207", + "2261", + "2263", + "23405", + "23414", + "2516", + "26040", + "2626", + "29072", + "3110", + "3481", + "367", + "3784", + "3815", + "412", + "4193", + "4214", + "4437", + "4978", + "5071", + "5080", + "50846", + "50940", + "51741", + "5290", + "54894", + "5573", + "57647", + "58524", + "64324", + "6662", + "6736", + "6794", + "6845", + "7157", + "7490", + "8915", + "9817", + "999" + ] + }, + "HP:0001097": { + "Name": "Keratoconjunctivitis sicca", + "Task": "Monarch", + "Genes": [ + "10804", + "1161", + "1230", + "1308", + "136647", + "149233", + "16", + "165", + "2068", + "2071", + "2074", + "2200", + "2255", + "2261", + "2263", + "22861", + "2706", + "2934", + "2961", + "3106", + "3123", + "337867", + "3459", + "355", + "3586", + "3592", + "3930", + "404672", + "4081", + "4210", + "4547", + "51752", + "54941", + "55699", + "56244", + "5965", + "6335", + "64127", + "6720", + "6775", + "6897", + "7099", + "720", + "7737", + "8302", + "833" + ] + }, + "HP:0001355": { + "Name": "Megalencephaly", + "Task": "Monarch", + "Genes": [ + "10000", + "10641", + "116442", + "220296", + "2253", + "2261", + "2263", + "23209", + "2475", + "2619", + "2736", + "28514", + "3265", + "3458", + "3845", + "443", + "4838", + "4893", + "50937", + "51256", + "5290", + "5296", + "5727", + "5728", + "6469", + "6491", + "6496", + "6608", + "6611", + "6997", + "7050", + "7248", + "7249", + "7546", + "84976", + "8738", + "8893", + "8925", + "8928", + "894", + "92335", + "9681" + ] + }, + "HP:0031284": { + "Name": "Flushing", + "Task": "Monarch", + "Genes": [ + "10297", + "10641", + "171023", + "1743", + "1788", + "2034", + "217", + "2271", + "23095", + "29072", + "2908", + "30817", + "3172", + "3248", + "3815", + "4128", + "4149", + "4191", + "4763", + "477", + "478", + "546", + "54790", + "54949", + "55654", + "5979", + "6261", + "6335", + "6389", + "6390", + "6391", + "6392", + "64072", + "6427", + "64324", + "6507", + "673", + "7157", + "7428", + "773", + "8402", + "84196", + "861", + "867", + "9101", + "9681" + ] + }, + "HP:0009738": { + "Name": "Abnormal antihelix morphology", + "Task": "Monarch", + "Genes": [ + "10157", + "132884", + "1387", + "1861", + "2121", + "2138", + "2261", + "2263", + "2290", + "22930", + "2316", + "23431", + "23511", + "23522", + "23556", + "25782", + "2736", + "284252", + "29920", + "29998", + "3981", + "4247", + "5075", + "51322", + "5447", + "54888", + "6299", + "63932", + "64132", + "6567", + "6929", + "7025", + "7291", + "79005", + "7994", + "80055", + "8241", + "9230", + "9343", + "9401", + "9896" + ] + }, + "HP:0007099": { + "Name": "Chiari type I malformation", + "Task": "Monarch", + "Genes": [ + "10274", + "10283", + "11128", + "1387", + "1436", + "148867", + "161742", + "1717", + "1788", + "2033", + "2077", + "2263", + "22943", + "23516", + "25970", + "26040", + "284058", + "29072", + "3020", + "3265", + "3845", + "4094", + "4774", + "4791", + "4841", + "4854", + "4858", + "5076", + "51085", + "5500", + "55703", + "57551", + "5888", + "5977", + "63895", + "6497", + "6608", + "79947", + "80036", + "8318", + "8799", + "9772", + "9839" + ] + }, + "HP:0011360": { + "Name": "Acquired abnormal hair pattern", + "Task": "Monarch", + "Genes": [ + "10084", + "10269", + "10682", + "1106", + "1173", + "1308", + "147409", + "1760", + "1893", + "215", + "23404", + "2702", + "2703", + "284252", + "2908", + "324", + "3265", + "340533", + "3559", + "3691", + "3887", + "3889", + "3892", + "3914", + "4000", + "51702", + "54361", + "55806", + "6323", + "641", + "64840", + "6513", + "6529", + "7053", + "7555", + "7840", + "81607", + "8242", + "84168", + "8517", + "8626", + "8831" + ] + }, + "HP:0004398": { + "Name": "Peptic ulcer", + "Task": "Monarch", + "Genes": [ + "1026", + "1027", + "1030", + "1031", + "1175", + "135886", + "155368", + "155382", + "171023", + "2629", + "26608", + "2767", + "2969", + "3248", + "3815", + "3984", + "493856", + "51085", + "5321", + "54790", + "57492", + "5982", + "6427", + "653361", + "6578", + "6774", + "6804", + "7458", + "7461", + "7466", + "79577", + "84163", + "84277", + "8468", + "9031", + "9275", + "9569" + ] + }, + "HP:0009725": { + "Name": "Bladder neoplasm", + "Task": "Monarch", + "Genes": [ + "10395", + "1499", + "1630", + "201163", + "2033", + "207", + "2261", + "25788", + "27030", + "324", + "3265", + "3845", + "4163", + "4893", + "4913", + "5157", + "5290", + "5320", + "538", + "54894", + "5728", + "5782", + "5795", + "581", + "5925", + "595", + "6714", + "673", + "6790", + "699", + "701", + "7097", + "7157", + "8313" + ] + }, + "HP:0100767": { + "Name": "Abnormal placenta morphology", + "Task": "Monarch", + "Genes": [ + "10269", + "1028", + "1029", + "10699", + "11200", + "2188", + "219736", + "2261", + "2321", + "26227", + "2720", + "3075", + "3339", + "3426", + "3479", + "3481", + "3784", + "3815", + "388015", + "3930", + "4000", + "4179", + "4193", + "4593", + "5324", + "5325", + "54903", + "6711", + "6794", + "7157", + "8091", + "8788", + "8915", + "9652" + ] + }, + "HP:0005222": { + "Name": "Bowel diverticulosis", + "Task": "Monarch", + "Genes": [ + "10516", + "1289", + "135886", + "155368", + "155382", + "1890", + "197131", + "2065", + "207", + "26608", + "2969", + "30008", + "3984", + "4052", + "4292", + "4436", + "51085", + "5290", + "5310", + "5428", + "5728", + "5832", + "5979", + "5982", + "653361", + "6774", + "6804", + "7458", + "7461", + "84163", + "84277", + "8468", + "9031", + "9275", + "9569" + ] + }, + "HP:0012288": { + "Name": "Neoplasm of head and neck", + "Task": "Monarch", + "Genes": [ + "10043", + "1029", + "11178", + "11200", + "115908", + "1287", + "1288", + "1499", + "1630", + "2271", + "2304", + "3026", + "324", + "3815", + "4193", + "4481", + "4629", + "50940", + "51008", + "5156", + "51741", + "5573", + "5885", + "6049", + "6389", + "6390", + "6391", + "641", + "6772", + "6794", + "7048", + "7157", + "7373", + "79651", + "79719", + "9562", + "9940" + ] + }, + "HP:0002862": { + "Name": "Bladder carcinoma", + "Task": "Monarch", + "Genes": [ + "10395", + "1499", + "1630", + "201163", + "2033", + "207", + "2261", + "25788", + "27030", + "324", + "3265", + "3845", + "4163", + "4893", + "5157", + "5290", + "5320", + "538", + "54894", + "5728", + "5782", + "5795", + "581", + "5925", + "595", + "6714", + "673", + "6790", + "699", + "701", + "7097", + "7157", + "8313" + ] + }, + "HP:0007642": { + "Name": "Congenital stationary night blindness", + "Task": "Monarch", + "Genes": [ + "2263", + "2779", + "2784", + "2916", + "345193", + "440435", + "4646", + "5158", + "57010", + "5959", + "5961", + "6010", + "6011", + "6017", + "60506", + "6295", + "778", + "9187", + "93589" + ] + }, + "HP:0100685": { + "Name": "Abnormal Sharpey fiber morphology", + "Task": "Monarch", + "Genes": [ + "1175", + "1188", + "1758", + "249", + "26191", + "2767", + "3106", + "3373", + "3559", + "3560", + "3758", + "4000", + "4210", + "4854", + "486", + "4982", + "5159", + "5167", + "5251", + "538", + "540", + "56172", + "5771", + "6557", + "6559", + "6775", + "7132", + "7486", + "79577", + "79722", + "919", + "9247" + ] + }, + "HP:0002253": { + "Name": "Colonic diverticula", + "Task": "Monarch", + "Genes": [ + "135886", + "155368", + "155382", + "1890", + "197131", + "2065", + "207", + "26608", + "2969", + "3984", + "4292", + "4436", + "51085", + "5290", + "5310", + "5428", + "5728", + "5979", + "5982", + "653361", + "6774", + "6804", + "7458", + "7461", + "84163", + "84277", + "8468", + "9031", + "9275", + "9569" + ] + }, + "HP:0045056": { + "Name": "Abnormal circulating alpha-fetoprotein concentration", + "Task": "Monarch", + "Genes": [ + "10165", + "10459", + "11284", + "124454", + "1499", + "165918", + "1716", + "174", + "2184", + "2261", + "23064", + "2313", + "23533", + "23556", + "26137", + "3815", + "4233", + "472", + "4868", + "4952", + "5190", + "5311", + "5314", + "54903", + "54914", + "55768", + "5631", + "6794", + "7066", + "8915", + "9971" + ] + }, + "HP:0003765": { + "Name": "Psoriasiform dermatitis", + "Task": "Monarch", + "Genes": [ + "10804", + "130340", + "1493", + "1828", + "1956", + "2313", + "2625", + "26525", + "2706", + "3106", + "3107", + "3119", + "3123", + "3559", + "359948", + "3981", + "4791", + "50943", + "5293", + "5297", + "55315", + "55806", + "57217", + "6307", + "64919", + "6868", + "79092", + "8626", + "8913", + "90417" + ] + }, + "HP:0006740": { + "Name": "Transitional cell carcinoma of the bladder", + "Task": "Monarch", + "Genes": [ + "10395", + "1499", + "1630", + "201163", + "2033", + "207", + "2261", + "25788", + "27030", + "324", + "3265", + "3845", + "4163", + "4893", + "5157", + "5290", + "5320", + "5728", + "5782", + "5795", + "581", + "5925", + "595", + "6714", + "673", + "6790", + "699", + "701", + "7097", + "7157", + "8313" + ] + }, + "HP:0004381": { + "Name": "Supravalvular aortic stenosis", + "Task": "Monarch", + "Genes": [ + "10516", + "135886", + "155368", + "155382", + "22800", + "255738", + "26119", + "26608", + "2969", + "30008", + "338", + "3949", + "3984", + "4052", + "51085", + "5982", + "64240", + "64241", + "653361", + "6804", + "7458", + "7461", + "84163", + "84277", + "8468", + "85440", + "9031", + "9275", + "9569" + ] + }, + "HP:0006254": { + "Name": "Elevated circulating alpha-fetoprotein concentration", + "Task": "Monarch", + "Genes": [ + "10165", + "10459", + "11284", + "124454", + "1499", + "165918", + "1716", + "174", + "2184", + "2261", + "23064", + "2313", + "23533", + "23556", + "26137", + "3815", + "4233", + "472", + "4868", + "4952", + "5190", + "5311", + "54903", + "54914", + "55768", + "5631", + "6794", + "7066", + "8915", + "9971" + ] + }, + "HP:0009098": { + "Name": "Chronic oral candidiasis", + "Task": "Monarch", + "Genes": [ + "10758", + "11151", + "1794", + "23765", + "326", + "3551", + "3559", + "3561", + "3718", + "4598", + "51311", + "5293", + "6097", + "64170", + "64421", + "6772", + "6774", + "7037", + "7535", + "84905", + "8546", + "90417", + "915", + "916", + "917", + "919", + "959", + "9948" + ] + }, + "HP:0011376": { + "Name": "Abnormal morphology of the vestibule of the inner ear", + "Task": "Monarch", + "Genes": [ + "200734", + "2138", + "2263", + "22800", + "22808", + "2299", + "3265", + "3766", + "3845", + "4893", + "5172", + "5298", + "54845", + "55636", + "5781", + "5894", + "5922", + "6016", + "6237", + "6495", + "6654", + "6655", + "6663", + "6885", + "80000", + "8216", + "867", + "93986", + "9723" + ] + }, + "HP:0010286": { + "Name": "Abnormal salivary gland morphology", + "Task": "Monarch", + "Genes": [ + "2255", + "2261", + "2263", + "22909", + "27030", + "2956", + "3123", + "3664", + "3845", + "4072", + "4292", + "4436", + "488", + "4967", + "5290", + "5324", + "5378", + "5395", + "56244", + "567", + "5696", + "57822", + "64127", + "6949", + "7048", + "7852", + "8626" + ] + }, + "HP:0007021": { + "Name": "Pain insensitivity", + "Task": "Monarch", + "Genes": [ + "10059", + "10522", + "10558", + "10743", + "11280", + "219854", + "253738", + "25923", + "2892", + "4204", + "4358", + "4803", + "4914", + "51062", + "55699", + "55768", + "55775", + "59335", + "6335", + "7204", + "781", + "80036", + "80821", + "8218", + "8242", + "85446", + "9517", + "9759" + ] + }, + "HP:0031020": { + "Name": "Bone marrow hypercellularity", + "Task": "Monarch", + "Genes": [ + "10125", + "171023", + "355", + "356", + "359948", + "3717", + "3815", + "4352", + "4869", + "4926", + "5371", + "54790", + "54880", + "5573", + "5580", + "5914", + "6208", + "6427", + "64859", + "6714", + "6774", + "6777", + "7704", + "7852", + "79718", + "811", + "81608", + "843", + "9056" + ] + }, + "HP:0033835": { + "Name": "Abnormal renal vascular morphology", + "Task": "Monarch", + "Genes": [ + "10043", + "182", + "255738", + "26119", + "338", + "3949", + "4149", + "4763", + "50628", + "51085", + "5167", + "51816", + "5456", + "55249", + "55654", + "55697", + "57104", + "57728", + "5979", + "64240", + "64241", + "6772", + "7428", + "79796", + "9896" + ] + }, + "HP:0004963": { + "Name": "Calcification of the aorta", + "Task": "Monarch", + "Genes": [ + "103", + "10535", + "10568", + "11277", + "134353", + "140628", + "1482", + "255738", + "25939", + "26119", + "2629", + "338", + "368", + "3949", + "4091", + "4851", + "5167", + "64135", + "64240", + "64241", + "79621", + "84153" + ] + }, + "HP:0008776": { + "Name": "Abnormal renal artery morphology", + "Task": "Monarch", + "Genes": [ + "10043", + "182", + "255738", + "26119", + "338", + "3949", + "4149", + "4763", + "50628", + "51085", + "5167", + "51816", + "5456", + "55249", + "55654", + "55697", + "57104", + "5979", + "64240", + "64241", + "6772", + "7428", + "79796", + "9896" + ] + }, + "HP:0002232": { + "Name": "Patchy alopecia", + "Task": "Monarch", + "Genes": [ + "10269", + "10682", + "1308", + "147409", + "1893", + "23404", + "284252", + "3265", + "3559", + "3691", + "3887", + "3889", + "3892", + "3914", + "4000", + "51702", + "55806", + "641", + "64840", + "7053", + "81607", + "8242", + "8517", + "8626" + ] + }, + "HP:0004150": { + "Name": "Abnormal 3rd finger morphology", + "Task": "Monarch", + "Genes": [ + "1277", + "1280", + "1836", + "2019", + "2263", + "22856", + "23327", + "2737", + "2778", + "3549", + "388015", + "50814", + "51651", + "5293", + "6909", + "6926", + "7291", + "81857", + "8200", + "8243", + "8788", + "8985", + "90417", + "91461" + ] + }, + "HP:0030355": { + "Name": "Abnormal circulating interferon-gamma concentration", + "Task": "Monarch", + "Genes": [ + "10043", + "103", + "10535", + "11277", + "134353", + "201294", + "25939", + "26191", + "3431", + "3559", + "3560", + "5422", + "5551", + "5696", + "5771", + "64135", + "6772", + "6775", + "6813", + "79621", + "79722", + "84153", + "8676", + "919" + ] + }, + "HP:0011116": { + "Name": "Abnormal circulating interferon concentration", + "Task": "Monarch", + "Genes": [ + "10043", + "103", + "10535", + "11277", + "134353", + "201294", + "25939", + "26191", + "3431", + "3559", + "3560", + "5422", + "5551", + "5696", + "5771", + "64135", + "6772", + "6775", + "6813", + "79621", + "79722", + "84153", + "8676", + "919" + ] + }, + "HP:0001100": { + "Name": "Heterochromia iridis", + "Task": "Monarch", + "Genes": [ + "10908", + "1123", + "1908", + "1910", + "207", + "2776", + "3265", + "3815", + "4010", + "4157", + "4254", + "4286", + "4948", + "5077", + "57167", + "5728", + "60", + "6591", + "6663", + "71", + "7299", + "80153", + "8518", + "9935" + ] + }, + "HP:0033836": { + "Name": "Abnormal intrarenal artery morphology", + "Task": "Monarch", + "Genes": [ + "10043", + "182", + "255738", + "26119", + "338", + "3949", + "4149", + "4763", + "50628", + "51085", + "5167", + "51816", + "5456", + "55249", + "55654", + "55697", + "57104", + "5979", + "64240", + "64241", + "6772", + "7428", + "79796", + "9896" + ] + }, + "HP:0001370": { + "Name": "Rheumatoid arthritis", + "Task": "Monarch", + "Genes": [ + "144811", + "26191", + "3123", + "3559", + "3560", + "3569", + "3586", + "3615", + "4261", + "4282", + "4795", + "4929", + "51744", + "54", + "5771", + "64421", + "6583", + "6775", + "79722", + "919" + ] + }, + "HP:0200064": { + "Name": "Asymmetry of iris pigmentation", + "Task": "Monarch", + "Genes": [ + "10908", + "1123", + "1908", + "1910", + "207", + "2776", + "3265", + "3815", + "4010", + "4157", + "4254", + "4286", + "4948", + "5077", + "57167", + "5728", + "60", + "6591", + "6663", + "71", + "7299", + "80153", + "8518", + "9935" + ] + }, + "HP:0005483": { + "Name": "Abnormal epiglottis morphology", + "Task": "Monarch", + "Genes": [ + "10262", + "2255", + "2261", + "2263", + "22858", + "2304", + "26005", + "26040", + "2737", + "341640", + "3852", + "3861", + "427", + "4750", + "51626", + "5396", + "55112", + "57539", + "57560", + "710", + "79659", + "89891", + "9775" + ] + }, + "HP:0002780": { + "Name": "Bronchomalacia", + "Task": "Monarch", + "Genes": [ + "1836", + "2077", + "222663", + "2260", + "2263", + "2317", + "23594", + "3265", + "3423", + "3572", + "374879", + "3852", + "3861", + "4629", + "5000", + "51053", + "5447", + "5879", + "6662", + "745", + "79813", + "7994", + "8425" + ] + }, + "HP:0012569": { + "Name": "Delayed menarche", + "Task": "Monarch", + "Genes": [ + "10059", + "10165", + "10269", + "10273", + "200734", + "22800", + "22808", + "2488", + "2690", + "3845", + "4000", + "4893", + "5192", + "5781", + "5894", + "5922", + "6016", + "6237", + "6654", + "6655", + "7840", + "8216", + "867" + ] + }, + "HP:4000054": { + "Name": "Exanthem", + "Task": "Monarch", + "Genes": [ + "114548", + "171023", + "201294", + "2038", + "286", + "3123", + "3815", + "4598", + "54790", + "5551", + "56244", + "57169", + "6427", + "6521", + "6708", + "6710", + "6813", + "7132", + "8517", + "861", + "867", + "8676" + ] + }, + "HP:0001971": { + "Name": "Hypersplenism", + "Task": "Monarch", + "Genes": [ + "10125", + "171023", + "199221", + "2629", + "3043", + "355", + "356", + "3988", + "4851", + "5314", + "54790", + "5580", + "5660", + "6427", + "6609", + "7289", + "83737", + "843", + "861", + "867", + "950", + "9968" + ] + }, + "HP:0011493": { + "Name": "Central opacification of the cornea", + "Task": "Monarch", + "Genes": [ + "1545", + "182", + "2296", + "2301", + "26191", + "2778", + "30813", + "3559", + "3560", + "4070", + "5080", + "5308", + "5771", + "58495", + "64127", + "6775", + "7045", + "79722", + "80781", + "8671", + "919" + ] + }, + "HP:0012804": { + "Name": "Corneal ulceration", + "Task": "Monarch", + "Genes": [ + "10269", + "1161", + "2074", + "2255", + "2261", + "2263", + "2303", + "26128", + "2623", + "2706", + "2934", + "4000", + "4358", + "4547", + "4914", + "54101", + "55768", + "59335", + "6898", + "7389", + "7390", + "8518" + ] + }, + "HP:0001920": { + "Name": "Renal artery stenosis", + "Task": "Monarch", + "Genes": [ + "10043", + "182", + "255738", + "26119", + "338", + "3949", + "4149", + "4763", + "50628", + "51085", + "5167", + "5456", + "55249", + "55654", + "55697", + "5979", + "64240", + "64241", + "6772", + "7428", + "9896" + ] + }, + "HP:0025409": { + "Name": "Abnormal spleen physiology", + "Task": "Monarch", + "Genes": [ + "10125", + "171023", + "199221", + "2629", + "3043", + "355", + "356", + "3988", + "4851", + "5314", + "54790", + "5580", + "5660", + "6427", + "6609", + "7289", + "83737", + "843", + "861", + "867", + "950", + "9968" + ] + }, + "HP:0012056": { + "Name": "Cutaneous melanoma", + "Task": "Monarch", + "Genes": [ + "1019", + "1029", + "1294", + "1308", + "2071", + "3265", + "4157", + "4286", + "4312", + "4893", + "4948", + "5429", + "5894", + "673", + "6794", + "7486", + "7508", + "7852", + "8314" + ] + }, + "HP:0011365": { + "Name": "Patchy hypopigmentation of hair", + "Task": "Monarch", + "Genes": [ + "1123", + "1908", + "1910", + "26191", + "3265", + "355", + "3815", + "4000", + "4254", + "4286", + "5077", + "5184", + "54499", + "57167", + "6591", + "6663", + "7015", + "7299", + "7486", + "9935" + ] + }, + "HP:0030356": { + "Name": "Increased circulating interferon-gamma concentration", + "Task": "Monarch", + "Genes": [ + "103", + "10535", + "11277", + "134353", + "201294", + "25939", + "26191", + "3559", + "3560", + "5551", + "5696", + "5771", + "64135", + "6775", + "6813", + "79621", + "79722", + "84153", + "8676", + "919" + ] + }, + "HP:0011380": { + "Name": "Abnormal semicircular canal morphology", + "Task": "Monarch", + "Genes": [ + "200734", + "2263", + "22800", + "22808", + "3845", + "4893", + "54845", + "55636", + "5781", + "5894", + "5922", + "6016", + "6237", + "6654", + "6655", + "6663", + "80000", + "8216", + "867", + "93986", + "9723" + ] + }, + "HP:0011384": { + "Name": "Abnormality of the internal auditory canal", + "Task": "Monarch", + "Genes": [ + "10804", + "1123", + "207", + "2077", + "2138", + "2261", + "2263", + "2706", + "4762", + "5015", + "51082", + "5396", + "5456", + "57167", + "5728", + "6495", + "6949", + "7291", + "84172", + "9533", + "9935" + ] + }, + "HP:0040186": { + "Name": "Maculopapular exanthema", + "Task": "Monarch", + "Genes": [ + "114548", + "171023", + "201294", + "2038", + "286", + "3123", + "3815", + "54790", + "5551", + "56244", + "57169", + "6427", + "6521", + "6708", + "6710", + "6813", + "7132", + "8517", + "861", + "867", + "8676" + ] + }, + "HP:0010754": { + "Name": "Abnormality of the temporomandibular joint", + "Task": "Monarch", + "Genes": [ + "10262", + "10269", + "1277", + "1289", + "1290", + "1906", + "23230", + "26191", + "2773", + "3423", + "3559", + "3560", + "3908", + "4000", + "5332", + "5771", + "6775", + "79722", + "919" + ] + }, + "HP:0001978": { + "Name": "Extramedullary hematopoiesis", + "Task": "Monarch", + "Genes": [ + "10019", + "11311", + "2038", + "2263", + "23395", + "286", + "28962", + "3043", + "3717", + "4352", + "54790", + "6521", + "6708", + "6710", + "6718", + "760", + "811", + "8241", + "83706", + "8600" + ] + }, + "HP:0005181": { + "Name": "Premature coronary artery atherosclerosis", + "Task": "Monarch", + "Genes": [ + "1161", + "1593", + "19", + "2074", + "255738", + "26119", + "335", + "338", + "338328", + "348", + "3949", + "3990", + "4000", + "4040", + "4205", + "59", + "64240", + "64241", + "84984" + ] + }, + "HP:0003031": { + "Name": "Ulnar bowing", + "Task": "Monarch", + "Genes": [ + "112752", + "1301", + "1836", + "2261", + "2263", + "2316", + "3207", + "3911", + "4322", + "5116", + "54101", + "5447", + "5593", + "57020", + "6473", + "91179", + "9401", + "9469", + "9939" + ] + }, + "HP:0031394": { + "Name": "Abnormal CD4:CD8 ratio", + "Task": "Monarch", + "Genes": [ + "10125", + "1503", + "2624", + "3559", + "3560", + "4261", + "50619", + "51371", + "5238", + "5993", + "5994", + "7454", + "7535", + "84061", + "841", + "8546", + "8625", + "9094", + "9948" + ] + }, + "HP:0000727": { + "Name": "Frontal lobe dementia", + "Task": "Monarch", + "Genes": [ + "11315", + "120892", + "1436", + "2512", + "27429", + "400916", + "4137", + "5071", + "5420", + "54209", + "54832", + "5663", + "65018", + "6622", + "6908", + "7305", + "7345", + "8867", + "9829" + ] + }, + "HP:0100723": { + "Name": "Gastrointestinal stroma tumor", + "Task": "Monarch", + "Genes": [ + "115650", + "1380", + "23495", + "29851", + "359948", + "3815", + "4763", + "4790", + "4791", + "5156", + "5580", + "6389", + "6390", + "6391", + "6392", + "8742", + "930", + "931", + "975" + ] + }, + "HP:0025439": { + "Name": "Pharyngitis", + "Task": "Monarch", + "Genes": [ + "10312", + "1991", + "26191", + "2672", + "3106", + "3115", + "3123", + "331", + "4068", + "4791", + "55315", + "6728", + "6729", + "7132", + "7852", + "79087", + "81570", + "8974" + ] + }, + "HP:0007376": { + "Name": "Abnormal choroid plexus morphology", + "Task": "Monarch", + "Genes": [ + "1029", + "10472", + "1075", + "11200", + "112752", + "149371", + "2271", + "2294", + "23327", + "26040", + "26227", + "27031", + "2778", + "4193", + "4893", + "57688", + "6598", + "7157" + ] + }, + "HP:0008843": { + "Name": "Hip osteoarthritis", + "Task": "Monarch", + "Genes": [ + "1186", + "1280", + "1311", + "176", + "2487", + "26191", + "3106", + "3559", + "3560", + "4087", + "4088", + "5771", + "59341", + "6399", + "6775", + "79722", + "8200", + "919" + ] + }, + "HP:0002781": { + "Name": "Upper airway obstruction", + "Task": "Monarch", + "Genes": [ + "10020", + "10269", + "1301", + "2161", + "2261", + "2263", + "27245", + "3123", + "3423", + "3763", + "4000", + "5447", + "56244", + "57688", + "6452", + "65992", + "6662", + "7512" + ] + }, + "HP:0012122": { + "Name": "Anterior uveitis", + "Task": "Monarch", + "Genes": [ + "10273", + "144811", + "26191", + "3106", + "3123", + "326", + "3559", + "3560", + "3569", + "4282", + "5771", + "64127", + "6775", + "7128", + "79722", + "8517", + "919" + ] + }, + "HP:0100833": { + "Name": "Neoplasm of the small intestine", + "Task": "Monarch", + "Genes": [ + "26585", + "324", + "3815", + "4000", + "4089", + "4292", + "4436", + "4913", + "5156", + "6389", + "6390", + "6391", + "6392", + "657", + "6794", + "7373", + "7486", + "79719" + ] + }, + "HP:0000522": { + "Name": "Alacrima", + "Task": "Monarch", + "Genes": [ + "2255", + "2261", + "2263", + "26040", + "29926", + "5075", + "55768", + "56246", + "60684", + "6558", + "6663", + "667", + "8086", + "8518", + "8567", + "8626", + "9071", + "9091" + ] + }, + "HP:0005262": { + "Name": "Abnormal synovial membrane morphology", + "Task": "Monarch", + "Genes": [ + "10216", + "11128", + "2157", + "26191", + "3373", + "3559", + "3560", + "5604", + "5771", + "5781", + "6399", + "64127", + "673", + "6775", + "79722", + "919", + "9663" + ] + }, + "HP:0011197": { + "Name": "EEG with focal spike waves", + "Task": "Monarch", + "Genes": [ + "10815", + "1106", + "1173", + "23096", + "23732", + "2566", + "27286", + "2903", + "340533", + "57465", + "6304", + "6323", + "6513", + "6529", + "8831" + ] + }, + "HP:5200024": { + "Name": "Abnormal relationship", + "Task": "Monarch", + "Genes": [ + "1106", + "1173", + "2137", + "23096", + "25970", + "340533", + "4204", + "51", + "54413", + "57502", + "6323", + "6513", + "6529", + "81603", + "84340", + "8831" + ] + }, + "HP:0100769": { + "Name": "Synovitis", + "Task": "Monarch", + "Genes": [ + "11128", + "2157", + "26191", + "3373", + "3559", + "3560", + "5604", + "5771", + "5781", + "6399", + "64127", + "673", + "6775", + "79722", + "919", + "9663" + ] + }, + "HP:0000680": { + "Name": "Delayed eruption of primary teeth", + "Task": "Monarch", + "Genes": [ + "10522", + "10743", + "1161", + "1513", + "1909", + "2067", + "2072", + "2074", + "221496", + "2263", + "23096", + "2314", + "54539", + "816", + "860", + "865" + ] + }, + "HP:0001530": { + "Name": "Mild postnatal growth retardation", + "Task": "Monarch", + "Genes": [ + "1161", + "146059", + "147372", + "2074", + "26191", + "3483", + "3559", + "3560", + "51651", + "5573", + "5771", + "6775", + "79633", + "79722", + "919", + "9508" + ] + }, + "HP:3000022": { + "Name": "Abnormality of cartilage of external ear", + "Task": "Monarch", + "Genes": [ + "1906", + "2261", + "2263", + "22907", + "26123", + "26137", + "2773", + "368", + "4256", + "5167", + "5332", + "58499", + "63932", + "7291", + "7468", + "9653" + ] + }, + "HP:0005547": { + "Name": "Myeloproliferative disorder", + "Task": "Monarch", + "Genes": [ + "10019", + "171023", + "210", + "25", + "2623", + "2624", + "3717", + "3815", + "4352", + "5156", + "5159", + "54790", + "613", + "6427", + "811", + "861" + ] + }, + "HP:0011386": { + "Name": "Narrow internal auditory canal", + "Task": "Monarch", + "Genes": [ + "1123", + "207", + "2077", + "2261", + "2263", + "5015", + "51082", + "5396", + "57167", + "5728", + "6949", + "7291", + "84172", + "9533", + "9935" + ] + }, + "HP:0010874": { + "Name": "Tendon xanthomatosis", + "Task": "Monarch", + "Genes": [ + "1071", + "10842", + "1593", + "2053", + "255738", + "26119", + "2690", + "335", + "336", + "338", + "348", + "3949", + "64240", + "64241", + "7274" + ] + }, + "HP:0012135": { + "Name": "Abnormal granulocytopoietic cell morphology", + "Task": "Monarch", + "Genes": [ + "1441", + "171023", + "23451", + "2623", + "3394", + "3579", + "3815", + "4926", + "54790", + "5914", + "6141", + "6154", + "6427", + "6730", + "7852" + ] + }, + "HP:0005086": { + "Name": "Knee osteoarthritis", + "Task": "Monarch", + "Genes": [ + "10216", + "1280", + "1298", + "1301", + "26191", + "3559", + "3560", + "4087", + "4088", + "4322", + "5771", + "6399", + "6775", + "79722", + "919" + ] + }, + "HP:0000495": { + "Name": "Recurrent corneal erosions", + "Task": "Monarch", + "Genes": [ + "1308", + "1497", + "2255", + "2261", + "2263", + "2303", + "2706", + "3850", + "4166", + "4358", + "4914", + "51360", + "7045", + "8518" + ] + }, + "HP:0000585": { + "Name": "Band keratopathy", + "Task": "Monarch", + "Genes": [ + "182", + "26191", + "2778", + "30813", + "3559", + "3560", + "5771", + "58495", + "64127", + "6775", + "79722", + "80781", + "8671", + "919" + ] + }, + "HP:0011482": { + "Name": "Abnormal lacrimal gland morphology", + "Task": "Monarch", + "Genes": [ + "10804", + "2255", + "2261", + "2263", + "2706", + "29957", + "3123", + "56244", + "6663", + "668" + ] + }, + "HP:0009792": { + "Name": "Teratoma", + "Task": "Monarch", + "Genes": [ + "10297", + "2261", + "26040", + "29072", + "3110", + "3815", + "4437", + "50940", + "5573", + "64324", + "6794", + "8915" + ] + }, + "HP:0010565": { + "Name": "Aplasia/Hypoplasia of the Epiglottis", + "Task": "Monarch", + "Genes": [ + "10262", + "2255", + "2261", + "2263", + "22858", + "26005", + "26040", + "2737", + "341640", + "4750", + "51626", + "5396", + "9775" + ] + }, + "HP:0012888": { + "Name": "Abnormal uterine cervix morphology", + "Task": "Monarch", + "Genes": [ + "1027", + "1277", + "1281", + "1289", + "1290", + "2261", + "2624", + "367", + "5340", + "6736", + "6794", + "7852", + "8379" + ] + }, + "HP:0034251": { + "Name": "Abnormal corneal reflex", + "Task": "Monarch", + "Genes": [ + "3572", + "3977", + "440138", + "4762", + "4914", + "54463", + "547", + "6335", + "65125", + "667", + "8218", + "8518", + "85446" + ] + }, + "HP:0001785": { + "Name": "Ankle swelling", + "Task": "Monarch", + "Genes": [ + "2324", + "26191", + "285", + "3559", + "3560", + "57165", + "5771", + "6775", + "79722", + "919", + "9780", + "9935" + ] + }, + "HP:0040313": { + "Name": "Oligoarthritis", + "Task": "Monarch", + "Genes": [ + "10043", + "26191", + "26525", + "3106", + "3559", + "3560", + "4210", + "5771", + "6775", + "7132", + "79722", + "919" + ] + }, + "HP:0410019": { + "Name": "Epigastric pain", + "Task": "Monarch", + "Genes": [ + "10699", + "11330", + "1499", + "219736", + "2321", + "3075", + "3426", + "4179", + "4233", + "6690", + "7840" + ] + }, + "HP:0009895": { + "Name": "Abnormality of the crus of the helix", + "Task": "Monarch", + "Genes": [ + "1906", + "2261", + "2263", + "22907", + "26123", + "2773", + "5332", + "58499", + "63932", + "7291", + "7468", + "9653" + ] + }, + "HP:0012108": { + "Name": "Open angle glaucoma", + "Task": "Monarch", + "Genes": [ + "10133", + "11232", + "136371", + "1545", + "2202", + "2255", + "2261", + "2263", + "4010", + "4653", + "4909" + ] + }, + "HP:0007605": { + "Name": "Excessive wrinkling of palmar skin", + "Task": "Monarch", + "Genes": [ + "1475", + "2261", + "2263", + "22808", + "23545", + "5351", + "6016", + "715", + "79718", + "8216", + "84627", + "9333" + ] + }, + "HP:0004416": { + "Name": "Precocious atherosclerosis", + "Task": "Monarch", + "Genes": [ + "1071", + "116519", + "1593", + "255738", + "26119", + "338", + "3949", + "4000", + "4023", + "64240", + "64241", + "7148" + ] + }, + "HP:0000799": { + "Name": "Renal steatosis", + "Task": "Monarch", + "Genes": [ + "2138", + "255738", + "26119", + "338", + "348", + "3949", + "5105", + "5106", + "64240", + "64241", + "6495" + ] + }, + "HP:0011134": { + "Name": "Low-grade fever", + "Task": "Monarch", + "Genes": [ + "26191", + "3559", + "3560", + "3717", + "4352", + "54790", + "5771", + "6775", + "79722", + "811", + "919" + ] + }, + "HP:0010183": { + "Name": "Abnormality of the middle phalanges of the toes", + "Task": "Monarch", + "Genes": [ + "2260", + "2261", + "2263", + "285203", + "3239", + "3549", + "51715", + "55697", + "59341", + "9241", + "9896" + ] + }, + "HP:0008000": { + "Name": "Decreased corneal reflex", + "Task": "Monarch", + "Genes": [ + "3572", + "3977", + "440138", + "4914", + "54463", + "547", + "6335", + "65125", + "8218", + "8518", + "85446" + ] + }, + "HP:0001094": { + "Name": "Iridocyclitis", + "Task": "Monarch", + "Genes": [ + "10273", + "26191", + "3123", + "326", + "3559", + "3560", + "5771", + "64127", + "6775", + "79722", + "919" + ] + }, + "HP:0001054": { + "Name": "Numerous nevi", + "Task": "Monarch", + "Genes": [ + "1019", + "220296", + "2261", + "284058", + "3265", + "4893", + "5290", + "5728", + "673", + "6794", + "7703" + ] + }, + "HP:0100686": { + "Name": "Enthesitis", + "Task": "Monarch", + "Genes": [ + "1758", + "26191", + "3106", + "3559", + "3560", + "5167", + "5251", + "5771", + "6775", + "79722", + "919" + ] + }, + "HP:0033222": { + "Name": "Decreased CD4:CD8 ratio", + "Task": "Monarch", + "Genes": [ + "1503", + "2624", + "3559", + "3560", + "50619", + "7454", + "84061", + "841", + "8546", + "9094" + ] + }, + "HP:0005349": { + "Name": "Hypoplasia of the epiglottis", + "Task": "Monarch", + "Genes": [ + "10262", + "2255", + "2261", + "2263", + "22858", + "26040", + "2737", + "341640", + "4750", + "5396" + ] + }, + "HP:0007925": { + "Name": "Lacrimal duct aplasia", + "Task": "Monarch", + "Genes": [ + "2138", + "2255", + "2261", + "2263", + "23426", + "341640", + "6495", + "80144", + "8085", + "8295" + ] + }, + "HP:3000062": { + "Name": "Abnormal internal carotid artery morphology", + "Task": "Monarch", + "Genes": [ + "255738", + "26119", + "3198", + "338", + "3949", + "4010", + "4763", + "54820", + "64240", + "64241" + ] + }, + "MONDO:0045024": { + "Name": "cancer or benign tumor", + "Task": "Mondo", + "Genes": [ + "10019", + "1027", + "1028", + "10320", + "10395", + "10456", + "1050", + "11178", + "11200", + "11236", + "115650", + "1181", + "1316", + "1326", + "1380", + "1385", + "1493", + "1499", + "150365", + "1540", + "154288", + "1630", + "171023", + "1736", + "1743", + "1788", + "1956", + "199713", + "201163", + "2033", + "2064", + "207", + "2099", + "2120", + "2130", + "2131", + "2132", + "219285", + "2239", + "2260", + "2261", + "2263", + "2271", + "2308", + "23092", + "23137", + "2322", + "2324", + "23405", + "23451", + "23495", + "25", + "25788", + "2591", + "25913", + "2623", + "26277", + "2642", + "26610", + "27030", + "2719", + "2778", + "2782", + "2956", + "29851", + "324", + "3265", + "338657", + "3481", + "3482", + "355", + "356", + "359948", + "3621", + "3659", + "3717", + "3784", + "3791", + "3815", + "3845", + "3851", + "3860", + "4072", + "4089", + "4163", + "4233", + "4292", + "4330", + "4352", + "4436", + "4437", + "4507", + "4595", + "4601", + "4609", + "463", + "4683", + "4763", + "4771", + "4790", + "4791", + "4854", + "4869", + "4893", + "4913", + "4926", + "4968", + "4978", + "5002", + "5071", + "5073", + "5077", + "5080", + "5081", + "50814", + "5155", + "5157", + "5159", + "51741", + "51750", + "5290", + "5308", + "5324", + "5378", + "5395", + "545", + "54765", + "54790", + "54809", + "54894", + "54949", + "55135", + "5519", + "55193", + "5546", + "55505", + "5551", + "55651", + "55719", + "5573", + "5618", + "5728", + "5781", + "5782", + "5784", + "5795", + "581", + "59067", + "5914", + "5925", + "5979", + "60", + "6041", + "6049", + "613", + "6208", + "6389", + "6390", + "6391", + "63916", + "6392", + "6452", + "6455", + "64682", + "64858", + "657", + "6598", + "6714", + "672", + "673", + "675", + "6757", + "6774", + "6794", + "6886", + "6887", + "6927", + "699", + "701", + "7015", + "7030", + "7048", + "7157", + "7248", + "7249", + "7298", + "7428", + "7454", + "7490", + "79058", + "79577", + "8013", + "8021", + "8028", + "8074", + "811", + "8148", + "8301", + "8312", + "8313", + "8314", + "83550", + "8379", + "83932", + "8402", + "841", + "843", + "8438", + "846", + "84868", + "8493", + "861", + "8643", + "867", + "8795", + "8915", + "8929", + "8930", + "9049", + "91", + "9101", + "91754", + "9247", + "930", + "931", + "9319", + "9365", + "9401", + "9702", + "975", + "9821", + "987", + "9927", + "999" + ] + }, + "MONDO:0023370": { + "Name": "neoplastic disease or syndrome", + "Task": "Mondo", + "Genes": [ + "10019", + "1027", + "1028", + "10320", + "10395", + "10456", + "1050", + "11178", + "11200", + "11236", + "115650", + "1181", + "1316", + "1326", + "1380", + "1385", + "1493", + "1499", + "150365", + "1540", + "154288", + "1630", + "171023", + "1736", + "1743", + "1788", + "1956", + "199713", + "201163", + "2033", + "2064", + "207", + "2099", + "2120", + "2130", + "2131", + "2132", + "219285", + "2239", + "2260", + "2261", + "2263", + "2271", + "2308", + "23092", + "23137", + "2322", + "2324", + "23405", + "23451", + "23495", + "25", + "25788", + "2591", + "25913", + "2623", + "26277", + "2642", + "26610", + "27030", + "2719", + "2778", + "2782", + "2956", + "29851", + "324", + "3265", + "338657", + "3481", + "3482", + "355", + "356", + "359948", + "3621", + "3659", + "3717", + "3784", + "3791", + "3815", + "3845", + "3851", + "3860", + "4072", + "4089", + "4163", + "4233", + "4292", + "4330", + "4352", + "4436", + "4437", + "4507", + "4595", + "4601", + "4609", + "463", + "4683", + "4763", + "4771", + "4790", + "4791", + "4854", + "4869", + "4893", + "4913", + "4926", + "4968", + "4978", + "5002", + "5071", + "5073", + "5077", + "5080", + "5081", + "50814", + "5155", + "5157", + "5159", + "51741", + "51750", + "5290", + "5308", + "5324", + "5378", + "5395", + "545", + "54765", + "54790", + "54809", + "54894", + "54949", + "55135", + "5519", + "55193", + "5546", + "55505", + "5551", + "55651", + "55719", + "5573", + "5618", + "5728", + "5781", + "5782", + "5784", + "5795", + "581", + "59067", + "5914", + "5925", + "5979", + "60", + "6041", + "6049", + "613", + "6208", + "6389", + "6390", + "6391", + "63916", + "6392", + "6452", + "6455", + "64682", + "64858", + "657", + "6598", + "6714", + "672", + "673", + "675", + "6757", + "6774", + "6794", + "6886", + "6887", + "6927", + "699", + "701", + "7015", + "7030", + "7048", + "7157", + "7248", + "7249", + "7298", + "7428", + "7454", + "7490", + "79058", + "79577", + "8013", + "8021", + "8028", + "8074", + "811", + "8148", + "8301", + "8312", + "8313", + "8314", + "83550", + "8379", + "83932", + "8402", + "841", + "843", + "8438", + "846", + "84868", + "8493", + "861", + "8643", + "867", + "8795", + "8915", + "8929", + "8930", + "9049", + "91", + "9101", + "91754", + "9247", + "930", + "931", + "9319", + "9365", + "9401", + "9702", + "975", + "9821", + "987", + "9927", + "999" + ] + }, + "MONDO:0005070": { + "Name": "neoplasm", + "Task": "Mondo", + "Genes": [ + "10019", + "10395", + "1050", + "11178", + "11200", + "11236", + "1181", + "1316", + "1326", + "1385", + "1499", + "150365", + "154288", + "1630", + "171023", + "1743", + "1788", + "1956", + "199713", + "201163", + "2033", + "2064", + "207", + "2099", + "2120", + "2130", + "2131", + "2132", + "219285", + "2239", + "2260", + "2261", + "2263", + "2308", + "23092", + "2322", + "2324", + "23405", + "23451", + "25", + "25788", + "2591", + "2623", + "2642", + "26610", + "27030", + "2719", + "2778", + "2782", + "2956", + "324", + "3265", + "3481", + "3482", + "3621", + "3659", + "3717", + "3791", + "3815", + "3845", + "3851", + "3860", + "4072", + "4089", + "4163", + "4233", + "4292", + "4330", + "4352", + "4436", + "4437", + "4507", + "4595", + "4601", + "4609", + "463", + "4763", + "4771", + "4854", + "4869", + "4893", + "4926", + "4968", + "4978", + "5002", + "5071", + "5077", + "5080", + "5081", + "50814", + "5155", + "5157", + "5159", + "51741", + "5290", + "5308", + "5324", + "5378", + "5395", + "54765", + "54790", + "54809", + "54949", + "5519", + "55193", + "5546", + "5551", + "5573", + "5618", + "5728", + "5781", + "5782", + "5784", + "5795", + "581", + "5914", + "5925", + "5979", + "60", + "6041", + "6049", + "613", + "6208", + "6389", + "6390", + "6391", + "63916", + "6392", + "6455", + "6598", + "6714", + "672", + "673", + "675", + "6757", + "6774", + "6794", + "6927", + "699", + "701", + "7030", + "7048", + "7157", + "7248", + "7249", + "7428", + "7490", + "79058", + "79577", + "8013", + "8021", + "8028", + "8074", + "811", + "8148", + "8301", + "8312", + "8313", + "83550", + "8379", + "8402", + "841", + "843", + "8438", + "846", + "84868", + "8493", + "861", + "8643", + "867", + "8795", + "8915", + "9049", + "91", + "9101", + "91754", + "9247", + "9365", + "9821", + "9927", + "999" + ] + }, + "MONDO:0004335": { + "Name": "digestive system disorder", + "Task": "Mondo", + "Genes": [ + "10395", + "10398", + "105371045", + "10653", + "10845", + "11178", + "11231", + "113235", + "115908", + "1316", + "1371", + "1499", + "151648", + "1604", + "1630", + "169792", + "1811", + "182", + "1908", + "1910", + "1956", + "200931", + "201163", + "2033", + "2064", + "207", + "208", + "210", + "212", + "2235", + "2261", + "2263", + "22900", + "2316", + "256297", + "25788", + "25802", + "26128", + "26276", + "2642", + "2645", + "27030", + "27178", + "2746", + "2819", + "2956", + "2982", + "2984", + "3033", + "3145", + "3172", + "324", + "3431", + "346171", + "3482", + "3587", + "3588", + "3630", + "3643", + "3651", + "3659", + "3767", + "3815", + "3845", + "3875", + "389692", + "4041", + "4072", + "4089", + "4163", + "4175", + "4233", + "4292", + "4436", + "4481", + "4547", + "4595", + "4629", + "4638", + "4645", + "4760", + "4853", + "4893", + "50674", + "5078", + "50943", + "51008", + "51473", + "51520", + "5157", + "51594", + "51741", + "5205", + "5244", + "5256", + "5261", + "5290", + "5321", + "5324", + "5378", + "5395", + "5406", + "54532", + "54658", + "54894", + "54914", + "5498", + "5506", + "55107", + "55687", + "5589", + "5644", + "5651", + "5782", + "5795", + "581", + "59", + "6049", + "60561", + "6390", + "6391", + "640", + "644", + "6476", + "6499", + "6523", + "6550", + "6566", + "657", + "6663", + "6690", + "6714", + "673", + "6772", + "6794", + "6809", + "6833", + "6868", + "6927", + "6928", + "699", + "701", + "7048", + "7157", + "72", + "7389", + "7482", + "79053", + "79827", + "8312", + "8313", + "83483", + "841", + "843", + "8462", + "84701", + "8482", + "84936", + "8647", + "8694", + "9076", + "91", + "9414", + "9652", + "9971" + ] + }, + "MONDO:0019054": { + "Name": "congenital limb malformation", + "Task": "Mondo", + "Genes": [ + "1001", + "100128927", + "10262", + "10459", + "112", + "113189", + "1134", + "1144", + "1146", + "1147", + "126792", + "132884", + "1387", + "163175", + "1723", + "1749", + "1785", + "1861", + "1954", + "2033", + "2065", + "2072", + "2121", + "2122", + "2175", + "2176", + "2177", + "2178", + "2187", + "2188", + "2189", + "2201", + "2254", + "2260", + "2263", + "22856", + "23345", + "23396", + "23443", + "25836", + "25885", + "26276", + "27315", + "2733", + "2736", + "284098", + "285203", + "285489", + "29089", + "29895", + "29940", + "3207", + "3209", + "340419", + "342035", + "3516", + "3664", + "392255", + "4000", + "4038", + "4233", + "4256", + "4593", + "4604", + "4621", + "4626", + "4851", + "4927", + "51008", + "51339", + "5139", + "51715", + "51776", + "5307", + "54101", + "54567", + "55120", + "55159", + "55215", + "55650", + "55681", + "55869", + "55906", + "57167", + "57211", + "57222", + "57514", + "57572", + "57688", + "5885", + "5888", + "5889", + "5913", + "59341", + "6299", + "63894", + "63895", + "64327", + "672", + "675", + "6910", + "6913", + "7136", + "7140", + "7169", + "7291", + "7317", + "7473", + "7476", + "7516", + "79728", + "81839", + "8200", + "8243", + "83990", + "84464", + "84720", + "84992", + "8506", + "8626", + "91179", + "9126", + "91754", + "92002", + "9241", + "93210", + "9325", + "9343", + "9401", + "9427", + "9496", + "9759", + "9894", + "9928", + "9939" + ] + }, + "MONDO:0004992": { + "Name": "cancer", + "Task": "Mondo", + "Genes": [ + "10019", + "10395", + "1050", + "11178", + "11200", + "11236", + "1316", + "1326", + "1499", + "1630", + "1788", + "1956", + "201163", + "2033", + "2064", + "207", + "2099", + "2120", + "2130", + "2131", + "2239", + "2261", + "2263", + "2308", + "23092", + "2322", + "23405", + "25", + "25788", + "2623", + "26610", + "27030", + "2719", + "2956", + "324", + "3265", + "3481", + "3482", + "3621", + "3659", + "3717", + "3815", + "3845", + "4072", + "4089", + "4163", + "4233", + "4292", + "4352", + "4436", + "4437", + "4595", + "4601", + "463", + "4763", + "4869", + "4893", + "4926", + "4968", + "4978", + "5002", + "5071", + "5077", + "5080", + "5081", + "5155", + "5157", + "5159", + "51741", + "5290", + "5378", + "5395", + "54765", + "54949", + "5519", + "55193", + "5546", + "5728", + "5781", + "5782", + "5795", + "581", + "5914", + "5925", + "5979", + "6041", + "6049", + "613", + "6389", + "6390", + "6455", + "6598", + "6714", + "672", + "673", + "675", + "6757", + "6794", + "6927", + "699", + "701", + "7030", + "7048", + "7157", + "7428", + "7490", + "79058", + "79577", + "8013", + "8021", + "8028", + "811", + "8148", + "8301", + "8312", + "8313", + "8379", + "841", + "843", + "84868", + "8493", + "861", + "867", + "8795", + "91", + "9821", + "999" + ] + }, + "MONDO:0003900": { + "Name": "connective tissue disorder", + "Task": "Mondo", + "Genes": [ + "10019", + "10216", + "103", + "1050", + "1053", + "10535", + "11107", + "11200", + "11274", + "11277", + "114548", + "1280", + "1297", + "1298", + "1299", + "134353", + "1776", + "1788", + "1956", + "2000", + "2120", + "2131", + "2132", + "2200", + "2201", + "2260", + "23092", + "2322", + "2335", + "23586", + "25", + "25939", + "2623", + "26525", + "2778", + "324", + "340061", + "3557", + "3587", + "3588", + "368", + "3717", + "3815", + "3845", + "4087", + "4088", + "4210", + "4352", + "4507", + "4598", + "4763", + "4853", + "4854", + "4869", + "4926", + "50814", + "51284", + "51371", + "5155", + "5159", + "51816", + "5336", + "5351", + "54", + "5422", + "56172", + "5692", + "5696", + "5698", + "56984", + "5699", + "5781", + "58484", + "5914", + "5925", + "613", + "64127", + "64135", + "6452", + "6455", + "6497", + "6499", + "6714", + "6868", + "7042", + "7043", + "7046", + "7048", + "7128", + "7132", + "7317", + "79577", + "79621", + "8021", + "8028", + "81031", + "811", + "8301", + "83550", + "84153", + "846", + "84627", + "8517", + "861", + "8651", + "867", + "8985", + "90268", + "9049", + "9051", + "9101", + "91662", + "9247", + "9652", + "9663", + "9927" + ] + }, + "MONDO:0023603": { + "Name": "hereditary disorder of connective tissue", + "Task": "Mondo", + "Genes": [ + "10216", + "103", + "1053", + "10535", + "11107", + "11274", + "11277", + "114548", + "1280", + "1297", + "1298", + "1299", + "134353", + "1776", + "1956", + "2000", + "2131", + "2132", + "2200", + "2201", + "2260", + "23092", + "2335", + "23586", + "25", + "25939", + "26525", + "2778", + "324", + "340061", + "3557", + "3587", + "3588", + "368", + "4087", + "4088", + "4210", + "4507", + "4598", + "4763", + "4853", + "4854", + "50814", + "51371", + "5155", + "5159", + "51816", + "5336", + "5351", + "54", + "5422", + "56172", + "5692", + "5696", + "5698", + "56984", + "5699", + "5781", + "58484", + "613", + "64127", + "64135", + "6452", + "6497", + "6499", + "6714", + "6868", + "7042", + "7043", + "7046", + "7048", + "7128", + "7132", + "7317", + "79577", + "79621", + "81031", + "83550", + "84153", + "846", + "84627", + "867", + "8985", + "90268", + "9049", + "9051", + "9101", + "91662", + "9247", + "9652", + "9663" + ] + }, + "MONDO:0004805": { + "Name": "leukocyte disorder", + "Task": "Mondo", + "Genes": [ + "10320", + "10456", + "1053", + "1075", + "11005", + "1130", + "11311", + "115650", + "1380", + "1441", + "1535", + "1536", + "157680", + "1991", + "23495", + "2542", + "2672", + "28956", + "29760", + "29851", + "30011", + "3543", + "3570", + "3572", + "359948", + "3689", + "3815", + "4353", + "4609", + "4688", + "4689", + "4790", + "4791", + "5156", + "5293", + "5295", + "55343", + "56262", + "57379", + "5873", + "5880", + "59067", + "653361", + "6603", + "6688", + "6729", + "6774", + "6901", + "6929", + "695", + "7374", + "7454", + "7922", + "79415", + "79650", + "81570", + "81704", + "8288", + "83706", + "84522", + "84868", + "84905", + "8546", + "8915", + "92579", + "930", + "931", + "958", + "959", + "973", + "974", + "975", + "987" + ] + }, + "MONDO:0003225": { + "Name": "bone marrow disorder", + "Task": "Mondo", + "Genes": [ + "10019", + "10459", + "1050", + "114803", + "128", + "134218", + "1788", + "2034", + "2056", + "2057", + "2072", + "2120", + "2175", + "2176", + "2177", + "2178", + "2187", + "2188", + "2189", + "23092", + "2322", + "25", + "2623", + "29089", + "3039", + "3040", + "3043", + "3557", + "3717", + "375748", + "3815", + "3845", + "4194", + "4352", + "4763", + "4869", + "4926", + "5159", + "54583", + "55120", + "55159", + "55215", + "57697", + "5781", + "5888", + "5889", + "5914", + "613", + "6455", + "6714", + "672", + "6731", + "675", + "7157", + "7428", + "7516", + "79728", + "8021", + "8028", + "811", + "8301", + "83990", + "84464", + "861", + "867", + "9663" + ] + }, + "MONDO:0005020": { + "Name": "intestinal disorder", + "Task": "Mondo", + "Genes": [ + "10395", + "10398", + "113235", + "1499", + "151648", + "1604", + "1630", + "1908", + "1910", + "1956", + "201163", + "2033", + "207", + "2261", + "22900", + "2316", + "25788", + "25802", + "26128", + "27030", + "27178", + "2956", + "2984", + "324", + "3587", + "3588", + "3815", + "4072", + "4163", + "4175", + "4292", + "4436", + "4547", + "4629", + "4638", + "4893", + "50943", + "5157", + "5290", + "5321", + "5378", + "5395", + "55107", + "5782", + "5795", + "581", + "59", + "6390", + "6391", + "6476", + "6499", + "6523", + "6663", + "6714", + "673", + "6772", + "6868", + "699", + "701", + "7048", + "72", + "79827", + "8313", + "8694", + "9652" + ] + }, + "MONDO:0005626": { + "Name": "epithelial neoplasm", + "Task": "Mondo", + "Genes": [ + "11200", + "11236", + "1316", + "1499", + "201163", + "207", + "2099", + "2324", + "23405", + "26610", + "2778", + "324", + "3265", + "3482", + "3621", + "3791", + "3845", + "4089", + "4233", + "4601", + "463", + "4893", + "4968", + "5002", + "5080", + "5157", + "5290", + "54765", + "55193", + "5546", + "5728", + "5784", + "5925", + "5979", + "6041", + "63916", + "672", + "6794", + "6927", + "7030", + "7157", + "7428", + "79577", + "8312", + "83550", + "8379", + "841", + "8493", + "8795", + "9049", + "91", + "9101", + "9821", + "999" + ] + }, + "MONDO:0021223": { + "Name": "digestive system neoplasm", + "Task": "Mondo", + "Genes": [ + "10395", + "11178", + "1316", + "1499", + "1630", + "201163", + "2033", + "2064", + "207", + "2261", + "2263", + "25788", + "2642", + "27030", + "2956", + "324", + "3482", + "3659", + "3815", + "3845", + "4072", + "4089", + "4163", + "4233", + "4292", + "4436", + "4595", + "4893", + "5157", + "51741", + "5290", + "5324", + "5378", + "5395", + "5782", + "5795", + "581", + "6049", + "6390", + "6391", + "6714", + "673", + "6794", + "6927", + "699", + "701", + "7048", + "7157", + "8312", + "8313", + "841", + "843", + "91" + ] + }, + "MONDO:0015225": { + "Name": "arthrogryposis syndrome", + "Task": "Mondo", + "Genes": [ + "100128927", + "112", + "113189", + "1134", + "1144", + "1146", + "1147", + "163175", + "1785", + "1861", + "2065", + "2201", + "23345", + "23396", + "23443", + "26276", + "2733", + "285489", + "29895", + "29940", + "342035", + "3664", + "4233", + "4593", + "4604", + "4621", + "4626", + "4927", + "51008", + "54101", + "55681", + "55906", + "57211", + "57222", + "5913", + "63894", + "63895", + "7136", + "7140", + "7169", + "7317", + "8506", + "91179", + "91754", + "9325", + "9427", + "9928" + ] + }, + "MONDO:0002516": { + "Name": "digestive system cancer", + "Task": "Mondo", + "Genes": [ + "10395", + "11178", + "1316", + "1499", + "1630", + "201163", + "2033", + "2064", + "207", + "2261", + "2263", + "25788", + "27030", + "2956", + "324", + "3482", + "3659", + "3845", + "4072", + "4089", + "4163", + "4233", + "4292", + "4436", + "4595", + "4893", + "5157", + "51741", + "5290", + "5378", + "5395", + "5782", + "5795", + "581", + "6049", + "6714", + "673", + "6794", + "699", + "701", + "7048", + "7157", + "8312", + "8313", + "841", + "843", + "91" + ] + }, + "MONDO:0004993": { + "Name": "carcinoma", + "Task": "Mondo", + "Genes": [ + "11200", + "11236", + "1316", + "1499", + "201163", + "207", + "2099", + "23405", + "26610", + "324", + "3265", + "3482", + "3621", + "3845", + "4089", + "4233", + "4601", + "463", + "4893", + "4968", + "5002", + "5080", + "5157", + "5290", + "54765", + "55193", + "5546", + "5728", + "5925", + "5979", + "6041", + "672", + "6794", + "6927", + "7030", + "7157", + "7428", + "79577", + "8312", + "8379", + "841", + "8493", + "8795", + "91", + "9821", + "999" + ] + }, + "MONDO:0021581": { + "Name": "connective tissue neoplasm", + "Task": "Mondo", + "Genes": [ + "10019", + "1050", + "11200", + "1788", + "2120", + "2131", + "2132", + "2260", + "23092", + "2322", + "25", + "2623", + "2778", + "324", + "3717", + "3815", + "3845", + "4352", + "4507", + "4763", + "4869", + "4926", + "50814", + "5155", + "5159", + "5781", + "5914", + "5925", + "613", + "6455", + "6714", + "79577", + "8021", + "8028", + "811", + "8301", + "83550", + "846", + "861", + "867", + "9049", + "9101", + "9247", + "9927" + ] + }, + "MONDO:0002334": { + "Name": "hematopoietic and lymphoid system neoplasm", + "Task": "Mondo", + "Genes": [ + "10019", + "1050", + "171023", + "1788", + "2120", + "219285", + "23092", + "2322", + "23451", + "25", + "25788", + "2623", + "2782", + "3717", + "3815", + "3845", + "4352", + "4609", + "4763", + "4869", + "4926", + "5159", + "54790", + "54809", + "5551", + "5781", + "5914", + "613", + "6208", + "6455", + "6714", + "6774", + "8021", + "8028", + "811", + "8301", + "843", + "8438", + "84868", + "861", + "867", + "8915" + ] + }, + "MONDO:0019060": { + "Name": "bone neoplasm", + "Task": "Mondo", + "Genes": [ + "10019", + "1050", + "11200", + "1788", + "2120", + "2131", + "2132", + "23092", + "2322", + "25", + "2623", + "2778", + "3717", + "3815", + "3845", + "4352", + "4507", + "4763", + "4869", + "4926", + "50814", + "5159", + "5781", + "5914", + "5925", + "613", + "6455", + "6714", + "79577", + "8021", + "8028", + "811", + "8301", + "83550", + "846", + "861", + "867", + "9049", + "9101", + "9247" + ] + }, + "MONDO:0044881": { + "Name": "hematopoietic and lymphoid cell neoplasm", + "Task": "Mondo", + "Genes": [ + "10019", + "1050", + "1788", + "2120", + "23092", + "2322", + "25", + "25788", + "2623", + "3717", + "3815", + "3845", + "4352", + "4609", + "4763", + "4869", + "4926", + "5159", + "5551", + "5781", + "5914", + "613", + "6455", + "6714", + "8021", + "8028", + "811", + "8301", + "843", + "8438", + "84868", + "861", + "867", + "8915" + ] + }, + "MONDO:0002082": { + "Name": "endocrine gland neoplasm", + "Task": "Mondo", + "Genes": [ + "1181", + "1499", + "1743", + "2591", + "2778", + "324", + "3265", + "3482", + "4233", + "4893", + "5157", + "5290", + "54809", + "54949", + "5925", + "5979", + "6389", + "6390", + "6391", + "6392", + "6927", + "7157", + "7428", + "79577", + "8074", + "8312", + "83550", + "8402", + "841", + "846", + "9049", + "9101", + "9247", + "9365" + ] + }, + "MONDO:0015756": { + "Name": "myeloid hemopathy", + "Task": "Mondo", + "Genes": [ + "10019", + "1050", + "171023", + "1788", + "2120", + "219285", + "23092", + "2322", + "23451", + "25", + "2623", + "2782", + "3717", + "3815", + "3845", + "4352", + "4763", + "4869", + "4926", + "5159", + "54790", + "54809", + "5781", + "5914", + "613", + "6208", + "6455", + "6714", + "8021", + "8028", + "811", + "8301", + "861", + "867" + ] + }, + "MONDO:0021118": { + "Name": "intestinal neoplasm", + "Task": "Mondo", + "Genes": [ + "10395", + "1499", + "1630", + "201163", + "2033", + "207", + "2261", + "25788", + "27030", + "2956", + "324", + "3815", + "4072", + "4163", + "4292", + "4436", + "4893", + "5157", + "5290", + "5378", + "5395", + "5782", + "5795", + "581", + "6390", + "6391", + "6714", + "673", + "699", + "701", + "7048", + "8313" + ] + }, + "MONDO:0021635": { + "Name": "neurocristopathy", + "Task": "Mondo", + "Genes": [ + "1027", + "1743", + "1908", + "1910", + "1947", + "2261", + "2296", + "3265", + "3815", + "3845", + "3851", + "3860", + "4763", + "4893", + "50814", + "5290", + "5308", + "54949", + "55636", + "5979", + "60", + "6389", + "6390", + "6391", + "6392", + "6663", + "6899", + "8402", + "8518", + "8929", + "91754" + ] + }, + "MONDO:0000637": { + "Name": "musculoskeletal system cancer", + "Task": "Mondo", + "Genes": [ + "10019", + "1050", + "11200", + "1788", + "2120", + "23092", + "2322", + "25", + "2623", + "3717", + "3815", + "3845", + "4352", + "4763", + "4869", + "4926", + "5159", + "5781", + "5914", + "5925", + "613", + "6455", + "6714", + "8021", + "8028", + "811", + "8301", + "861", + "867" + ] + }, + "MONDO:0002129": { + "Name": "bone cancer", + "Task": "Mondo", + "Genes": [ + "10019", + "1050", + "11200", + "1788", + "2120", + "23092", + "2322", + "25", + "2623", + "3717", + "3815", + "3845", + "4352", + "4763", + "4869", + "4926", + "5159", + "5781", + "5914", + "5925", + "613", + "6455", + "6714", + "8021", + "8028", + "811", + "8301", + "861", + "867" + ] + }, + "MONDO:0000621": { + "Name": "immune system cancer", + "Task": "Mondo", + "Genes": [ + "10019", + "1050", + "1788", + "2120", + "23092", + "2322", + "25", + "2623", + "3717", + "3815", + "3845", + "4352", + "4763", + "4869", + "4926", + "5159", + "5781", + "5914", + "613", + "6455", + "6714", + "8021", + "8028", + "811", + "8301", + "84868", + "861", + "867" + ] + }, + "MONDO:0005170": { + "Name": "myeloid neoplasm", + "Task": "Mondo", + "Genes": [ + "10019", + "1050", + "1788", + "2120", + "23092", + "2322", + "25", + "2623", + "3717", + "3815", + "3845", + "4352", + "4763", + "4869", + "4926", + "5159", + "5781", + "5914", + "613", + "6455", + "6714", + "8021", + "8028", + "811", + "8301", + "861", + "867" + ] + }, + "MONDO:0021138": { + "Name": "bone marrow cancer", + "Task": "Mondo", + "Genes": [ + "10019", + "1050", + "1788", + "2120", + "23092", + "2322", + "25", + "2623", + "3717", + "3815", + "3845", + "4352", + "4763", + "4869", + "4926", + "5159", + "5781", + "5914", + "613", + "6455", + "6714", + "8021", + "8028", + "811", + "8301", + "861", + "867" + ] + }, + "MONDO:0005374": { + "Name": "bone marrow neoplasm", + "Task": "Mondo", + "Genes": [ + "10019", + "1050", + "1788", + "2120", + "23092", + "2322", + "25", + "2623", + "3717", + "3815", + "3845", + "4352", + "4763", + "4869", + "4926", + "5159", + "5781", + "5914", + "613", + "6455", + "6714", + "8021", + "8028", + "811", + "8301", + "861", + "867" + ] + }, + "MONDO:0020076": { + "Name": "myeloproliferative neoplasm", + "Task": "Mondo", + "Genes": [ + "10019", + "1050", + "1788", + "2120", + "23092", + "2322", + "25", + "2623", + "3717", + "3815", + "3845", + "4352", + "4763", + "4869", + "4926", + "5159", + "5781", + "5914", + "613", + "6455", + "6714", + "8021", + "8028", + "811", + "8301", + "861", + "867" + ] + }, + "MONDO:0006295": { + "Name": "malignant urinary system neoplasm", + "Task": "Mondo", + "Genes": [ + "11236", + "201163", + "2239", + "2261", + "26610", + "2719", + "3265", + "3481", + "3845", + "4233", + "4968", + "5080", + "54765", + "54949", + "55193", + "5546", + "5925", + "5979", + "6389", + "6390", + "675", + "6927", + "7030", + "7428", + "7490" + ] + }, + "MONDO:0021066": { + "Name": "urinary system neoplasm", + "Task": "Mondo", + "Genes": [ + "11236", + "201163", + "2239", + "2261", + "26610", + "2719", + "3265", + "3481", + "3845", + "4233", + "4968", + "5080", + "54765", + "54949", + "55193", + "5546", + "5925", + "5979", + "6389", + "6390", + "675", + "6927", + "7030", + "7428", + "7490" + ] + }, + "MONDO:0015469": { + "Name": "craniosynostosis", + "Task": "Mondo", + "Genes": [ + "10225", + "112752", + "1954", + "2077", + "2260", + "2261", + "2263", + "3590", + "4488", + "51098", + "51715", + "5447", + "55764", + "56603", + "57539", + "57728", + "6497", + "6608", + "6938", + "7291", + "7545", + "7994", + "9401" + ] + }, + "MONDO:0004970": { + "Name": "adenocarcinoma", + "Task": "Mondo", + "Genes": [ + "11236", + "1499", + "201163", + "26610", + "324", + "3265", + "3482", + "4233", + "4893", + "4968", + "5080", + "5157", + "5290", + "54765", + "55193", + "5546", + "5979", + "6927", + "7030", + "7157", + "7428", + "79577", + "8312", + "841" + ] + }, + "MONDO:0024276": { + "Name": "glandular cell neoplasm", + "Task": "Mondo", + "Genes": [ + "11236", + "1499", + "201163", + "26610", + "324", + "3265", + "3482", + "4233", + "4893", + "4968", + "5080", + "5157", + "5290", + "54765", + "55193", + "5546", + "5979", + "6927", + "7030", + "7157", + "7428", + "79577", + "8312", + "841" + ] + }, + "MONDO:0021248": { + "Name": "nervous system neoplasm", + "Task": "Mondo", + "Genes": [ + "1499", + "1743", + "26610", + "2778", + "3265", + "3845", + "4330", + "4771", + "4893", + "5080", + "5155", + "54765", + "54949", + "5925", + "6389", + "6390", + "6391", + "6392", + "83550", + "8402", + "8643", + "9049", + "9101" + ] + }, + "MONDO:0015338": { + "Name": "syndromic craniosynostosis", + "Task": "Mondo", + "Genes": [ + "10225", + "112752", + "1954", + "2077", + "2260", + "2261", + "2263", + "3590", + "4488", + "51098", + "51715", + "5447", + "55764", + "56603", + "57539", + "57728", + "6497", + "6608", + "6938", + "7291", + "7994", + "9401" + ] + }, + "MONDO:0021002": { + "Name": "syndactyly", + "Task": "Mondo", + "Genes": [ + "150468", + "2192", + "2255", + "2261", + "2263", + "23322", + "2697", + "2735", + "2737", + "3239", + "374654", + "4038", + "51259", + "54903", + "57545", + "6299", + "64327", + "6608", + "727857", + "80184", + "8823", + "91147", + "92002" + ] + }, + "MONDO:0005165": { + "Name": "benign neoplasm", + "Task": "Mondo", + "Genes": [ + "2260", + "2261", + "2324", + "3265", + "3791", + "3845", + "3851", + "3860", + "4854", + "4893", + "50814", + "5159", + "5290", + "5324", + "5618", + "5784", + "5979", + "60", + "63916", + "6927", + "7428", + "91754", + "9927" + ] + }, + "MONDO:0800066": { + "Name": "polydactyly-syndactyly-triphalangism", + "Task": "Mondo", + "Genes": [ + "150468", + "2192", + "2255", + "2261", + "2263", + "23322", + "2697", + "2735", + "2737", + "3239", + "374654", + "4038", + "51259", + "54903", + "57545", + "6299", + "64327", + "6608", + "727857", + "80184", + "91147", + "92002" + ] + }, + "MONDO:0006054": { + "Name": "reproductive system neoplasm", + "Task": "Mondo", + "Genes": [ + "11200", + "1316", + "1499", + "150365", + "154288", + "199713", + "2064", + "207", + "2261", + "3815", + "4437", + "4601", + "463", + "4978", + "5071", + "5290", + "5728", + "6041", + "6794", + "8379", + "999" + ] + }, + "MONDO:0005059": { + "Name": "leukemia", + "Task": "Mondo", + "Genes": [ + "1050", + "1788", + "2120", + "23092", + "2322", + "25", + "3717", + "3815", + "3845", + "4763", + "4869", + "4926", + "5781", + "5914", + "613", + "6455", + "8021", + "8028", + "8301", + "861", + "867" + ] + }, + "MONDO:0021060": { + "Name": "RASopathy", + "Task": "Mondo", + "Genes": [ + "161742", + "200734", + "22800", + "22808", + "3265", + "3845", + "4763", + "4893", + "5500", + "5594", + "5604", + "5605", + "5781", + "5894", + "6016", + "6654", + "6655", + "673", + "8036", + "8216", + "867" + ] + }, + "MONDO:0004643": { + "Name": "myeloid leukemia", + "Task": "Mondo", + "Genes": [ + "1050", + "1788", + "2120", + "2322", + "25", + "3717", + "3815", + "3845", + "4869", + "4926", + "5914", + "613", + "6455", + "8021", + "8028", + "8301", + "861" + ] + }, + "MONDO:0021069": { + "Name": "malignant endocrine neoplasm", + "Task": "Mondo", + "Genes": [ + "1499", + "324", + "3265", + "3482", + "4233", + "4893", + "5157", + "5290", + "54949", + "5925", + "5979", + "6389", + "6390", + "7157", + "79577", + "8312", + "841" + ] + }, + "MONDO:0010643": { + "Name": "acute leukemia", + "Task": "Mondo", + "Genes": [ + "1050", + "1788", + "2120", + "2322", + "3717", + "3815", + "3845", + "4869", + "4926", + "5914", + "6455", + "8021", + "8028", + "8301", + "861" + ] + }, + "MONDO:0018874": { + "Name": "acute myeloid leukemia", + "Task": "Mondo", + "Genes": [ + "1050", + "1788", + "2120", + "2322", + "3717", + "3815", + "3845", + "4869", + "4926", + "5914", + "6455", + "8021", + "8028", + "8301", + "861" + ] + }, + "MONDO:0005586": { + "Name": "head and neck neoplasm", + "Task": "Mondo", + "Genes": [ + "26610", + "2778", + "3265", + "3621", + "3845", + "4893", + "5080", + "5308", + "5324", + "54765", + "5925", + "83550", + "8795", + "9049", + "9101" + ] + }, + "MONDO:0002531": { + "Name": "skin neoplasm", + "Task": "Mondo", + "Genes": [ + "1499", + "2260", + "2261", + "3265", + "3815", + "3845", + "3851", + "3860", + "4893", + "50814", + "5290", + "60", + "84868", + "91754" + ] + }, + "MONDO:0000652": { + "Name": "integumentary system benign neoplasm", + "Task": "Mondo", + "Genes": [ + "2260", + "2261", + "3265", + "3845", + "3851", + "3860", + "4893", + "50814", + "5290", + "60", + "91754", + "9927" + ] + }, + "MONDO:0021440": { + "Name": "benign neoplasm of skin", + "Task": "Mondo", + "Genes": [ + "2260", + "2261", + "3265", + "3845", + "3851", + "3860", + "4893", + "50814", + "5290", + "60", + "91754" + ] + }, + "MONDO:0017436": { + "Name": "lethal congenital contracture syndrome", + "Task": "Mondo", + "Genes": [ + "100128927", + "112", + "1785", + "2065", + "23396", + "2733", + "342035", + "4604", + "57211", + "8506", + "91754" + ] + }, + "MONDO:0021227": { + "Name": "adrenal gland neoplasm", + "Task": "Mondo", + "Genes": [ + "1181", + "54949", + "5979", + "6389", + "6390", + "6391", + "6392", + "7428", + "9049", + "9101" + ] + }, + "MONDO:0024582": { + "Name": "male reproductive system neoplasm", + "Task": "Mondo", + "Genes": [ + "11200", + "1316", + "2261", + "3815", + "4601", + "463", + "5728", + "6041", + "6794", + "8379" + ] + }, + "MONDO:0005073": { + "Name": "melanocytic nevus", + "Task": "Mondo", + "Genes": [ + "2261", + "3265", + "3845", + "3851", + "3860", + "4893", + "50814", + "5290", + "60", + "91754" + ] + }, + "MONDO:0021143": { + "Name": "melanocytic neoplasm", + "Task": "Mondo", + "Genes": [ + "2261", + "3265", + "3845", + "3851", + "3860", + "4893", + "50814", + "5290", + "60", + "91754" + ] + }, + "MONDO:0021583": { + "Name": "melanocytic skin neoplasm", + "Task": "Mondo", + "Genes": [ + "2261", + "3265", + "3845", + "3851", + "3860", + "4893", + "50814", + "5290", + "60", + "91754" + ] + }, + "All Neutrals": [ + "100", + "1000", + "10000", + "10005", + "10006", + "10008", + "1001", + "10010", + "100127206", + "100128927", + "10013", + "100130733", + "100133941", + "100134444", + "100134934", + "100137049", + "10014", + "100144748", + "10016", + "10018", + "10019", + "10020", + "10021", + "10023", + "10026", + "100287171", + "100287932", + "1003", + "10039", + "10040", + "10043", + "100431172", + "10048", + "10049", + "100505385", + "100506013", + "100506658", + "100507043", + "100507436", + "10051", + "10052", + "10053", + "10056", + "10057", + "10058", + "10060", + "10062", + "10066", + "10067", + "10068", + "10075", + "10076", + "10079", + "10082", + "10083", + "10084", + "10087", + "1009", + "10092", + "10093", + "10094", + "10095", + "10096", + "10097", + "10098", + "100996717", + "100996763", + "101", + "10102", + "10109", + "10111", + "10112", + "10113", + "10116", + "1012", + "10123", + "10125", + "10126", + "10128", + "10130", + "10131", + "10133", + "10134", + "10135", + "10139", + "10142", + "10144", + "10146", + "10148", + "1015", + "10152", + "10155", + "10156", + "10157", + "10159", + "10162", + "10163", + "10165", + "1017", + "10174", + "1018", + "10188", + "1019", + "10194", + "10196", + "10197", + "10198", + "102", + "1020", + "10203", + "10204", + "10206", + "10208", + "1021", + "10210", + "10211", + "10213", + "10216", + "10218", + "10219", + "1022", + "10221", + "10225", + "10226", + "10228", + "10235", + "10241", + "10243", + "10244", + "10245", + "1025", + "10252", + "10253", + "10256", + "10257", + "1026", + "10262", + "10265", + "10266", + "10267", + "10268", + "10269", + "1027", + "10272", + "10273", + "10274", + "10276", + "10277", + "1028", + "10280", + "10283", + "10288", + "1029", + "10290", + "10293", + "10294", + "10297", + "10298", + "10299", + "103", + "1030", + "10300", + "10307", + "10309", + "1031", + "10311", + "10312", + "10313", + "10318", + "1032", + "10320", + "10324", + "10328", + "1033", + "10332", + "10344", + "10345", + "10346", + "10347", + "10351", + "10352", + "10365", + "10367", + "10370", + "10371", + "10376", + "10381", + "10382", + "10384", + "10391", + "10392", + "10393", + "10394", + "10395", + "10398", + "10399", + "104", + "1040", + "10400", + "10401", + "10403", + "1041", + "10411", + "10413", + "10419", + "10423", + "10425", + "10427", + "10430", + "10432", + "10435", + "10436", + "10437", + "10440", + "10444", + "10445", + "10451", + "10452", + "10454", + "10456", + "10457", + "10458", + "10459", + "10460", + "10461", + "10463", + "10464", + "10466", + "10469", + "10471", + "10472", + "10474", + "10475", + "10477", + "10479", + "10481", + "10483", + "10484", + "10486", + "10487", + "10488", + "10490", + "10491", + "10492", + "10494", + "10497", + "10498", + "1050", + "10507", + "10512", + "10513", + "10516", + "10518", + "10519", + "10521", + "10522", + "10524", + "10525", + "10526", + "10527", + "10529", + "1053", + "10531", + "10533", + "10535", + "10537", + "105371045", + "1054", + "10540", + "10541", + "10542", + "10550", + "10551", + "10552", + "10553", + "10554", + "10555", + "10558", + "10559", + "10562", + "10563", + "10564", + "10565", + "10568", + "10569", + "10572", + "10574", + "10575", + "10576", + "10577", + "10578", + "1058", + "10581", + "10584", + "10585", + "10587", + "10588", + "10592", + "10595", + "10599", + "1060", + "10600", + "10603", + "10605", + "10609", + "10610", + "10612", + "10613", + "10614", + "10615", + "10616", + "1062", + "10621", + "10622", + "10623", + "10625", + "10626", + "10628", + "1063", + "10630", + "10634", + "10635", + "10636", + "10637", + "10640", + "10641", + "10645", + "10651", + "10652", + "10653", + "10657", + "10659", + "1066", + "10661", + "10663", + "10664", + "10666", + "10670", + "10672", + "10673", + "10677", + "10681", + "10682", + "10683", + "1069", + "10690", + "10693", + "10694", + "10699", + "1071", + "10716", + "10717", + "10718", + "1072", + "10721", + "10725", + "10726", + "10728", + "1073", + "10730", + "10733", + "10734", + "10735", + "10743", + "1075", + "10755", + "10758", + "10763", + "10767", + "10768", + "10769", + "10771", + "10783", + "10785", + "10787", + "10788", + "1080", + "10801", + "10802", + "10803", + "10804", + "10806", + "10807", + "10808", + "1081", + "10810", + "10814", + "10815", + "10817", + "10818", + "10825", + "1084", + "10841", + "10842", + "10844", + "10845", + "10846", + "10847", + "10849", + "10850", + "10855", + "10856", + "10857", + "10859", + "10868", + "10869", + "10870", + "10871", + "1089", + "10890", + "10891", + "10892", + "10894", + "10899", + "10904", + "10907", + "10908", + "10910", + "10912", + "10913", + "10920", + "10927", + "10928", + "10935", + "10943", + "10948", + "10952", + "10953", + "10954", + "10956", + "10959", + "10960", + "10961", + "10962", + "10972", + "10973", + "10979", + "10981", + "10985", + "10987", + "10991", + "10992", + "10999", + "11001", + "11004", + "11005", + "11006", + "11011", + "11012", + "11020", + "11021", + "11025", + "11027", + "1103", + "11033", + "11034", + "11035", + "11037", + "1104", + "11041", + "11043", + "11044", + "1105", + "11051", + "11052", + "11057", + "1106", + "11060", + "11061", + "11065", + "11069", + "11073", + "11074", + "11075", + "11076", + "11078", + "1108", + "11080", + "11081", + "11082", + "1109", + "11091", + "11093", + "11096", + "11097", + "111", + "11101", + "11107", + "1111", + "11113", + "11116", + "11117", + "11118", + "11119", + "1112", + "11122", + "11124", + "11126", + "11127", + "11128", + "1113", + "11130", + "11132", + "11133", + "11135", + "11138", + "11140", + "11141", + "11143", + "11144", + "11145", + "11146", + "11148", + "11149", + "11151", + "11152", + "11153", + "11154", + "11155", + "11156", + "1116", + "11160", + "11170", + "11171", + "11173", + "11178", + "11184", + "11187", + "1119", + "11190", + "11194", + "11196", + "11198", + "112", + "1120", + "11200", + "1121", + "11211", + "11212", + "11213", + "11214", + "11221", + "11224", + "1123", + "11231", + "11232", + "11235", + "11236", + "112398", + "1124", + "11240", + "11243", + "112441434", + "112476", + "11251", + "11252", + "11253", + "11254", + "11255", + "112574", + "11258", + "112609", + "11261", + "11274", + "112744", + "112752", + "11276", + "11277", + "11280", + "11281", + "112812", + "11282", + "11284", + "11285", + "112858", + "112869", + "112936", + "1130", + "1131", + "113130", + "11314", + "11315", + "113179", + "113189", + "11320", + "11322", + "113235", + "113246", + "113251", + "11326", + "11329", + "11330", + "11331", + "11337", + "11338", + "1134", + "11342", + "11344", + "11345", + "113451", + "11346", + "113791", + "1139", + "114", + "1140", + "114088", + "114327", + "1144", + "1145", + "114548", + "1146", + "114609", + "1147", + "114770", + "114771", + "114791", + "114793", + "114798", + "114799", + "114803", + "114836", + "114879", + "114881", + "114882", + "114884", + "114897", + "114899", + "1149", + "114900", + "114928", + "114990", + "114991", + "115", + "115004", + "115019", + "115106", + "115201", + "115286", + "1153", + "115352", + "115362", + "115426", + "115548", + "115557", + "115560", + "115650", + "115701", + "115704", + "115727", + "115827", + "115908", + "116", + "116068", + "1161", + "116115", + "116138", + "116150", + "116151", + "116224", + "116238", + "116255", + "116442", + "116519", + "116840", + "116843", + "116844", + "116931", + "117156", + "117159", + "117166", + "117177", + "117194", + "117245", + "117283", + "117285", + "117289", + "1174", + "117581", + "117584", + "1176", + "1178", + "117854", + "118", + "1180", + "1181", + "1182", + "1183", + "118424", + "118426", + "118429", + "118471", + "1186", + "1188", + "118813", + "118924", + "118987", + "119", + "1191", + "1193", + "119559", + "1201", + "120103", + "120425", + "120526", + "120892", + "121214", + "121260", + "121268", + "121278", + "121340", + "121391", + "1215", + "121504", + "121512", + "121665", + "122416", + "122664", + "122773", + "122809", + "123", + "1230", + "1232", + "123264", + "1233", + "1235", + "1236", + "123606", + "1237", + "123720", + "123745", + "123803", + "123872", + "123879", + "1240", + "124056", + "124093", + "1244", + "124454", + "124491", + "124583", + "124590", + "124641", + "124790", + "124857", + "124912", + "124930", + "124935", + "124997", + "125", + "125058", + "125111", + "125170", + "125981", + "126", + "126259", + "1263", + "126353", + "126374", + "126393", + "126410", + "1265", + "126520", + "126549", + "126695", + "126731", + "126792", + "126820", + "126969", + "1270", + "127018", + "1271", + "1272", + "127385", + "127544", + "1277", + "1278", + "127833", + "127933", + "128", + "1280", + "1281", + "128178", + "1282", + "128240", + "128272", + "128344", + "1284", + "128486", + "1285", + "1286", + "128637", + "1287", + "1288", + "128869", + "1289", + "128989", + "1290", + "1291", + "1292", + "1293", + "129303", + "1294", + "129531", + "129563", + "129642", + "1297", + "1298", + "1299", + "1300", + "1301", + "1302", + "1303", + "130340", + "130399", + "130497", + "1305", + "130589", + "130612", + "130617", + "1307", + "1308", + "1311", + "131118", + "131177", + "1312", + "131377", + "1314", + "131474", + "131566", + "131578", + "1316", + "1317", + "132112", + "132158", + "1326", + "132671", + "132884", + "133", + "133121", + "133396", + "133522", + "134", + "1340", + "134218", + "134353", + "134391", + "134429", + "134510", + "134701", + "1349", + "134957", + "135", + "1351", + "135138", + "135228", + "135250", + "1355", + "135644", + "135886", + "136", + "1363", + "136319", + "136371", + "1364", + "1365", + "136647", + "1371", + "1373", + "1374", + "1375", + "1376", + "137695", + "1378", + "137814", + "137886", + "1379", + "137964", + "1380", + "138050", + "138065", + "138151", + "138428", + "138429", + "1385", + "1386", + "1387", + "1388", + "139189", + "1392", + "139285", + "1393", + "139341", + "1394", + "1396", + "1398", + "139818", + "1399", + "140", + "1400", + "1401", + "140462", + "140465", + "140596", + "140609", + "140628", + "140679", + "140690", + "140710", + "140775", + "1408", + "140823", + "140885", + "1409", + "140947", + "1410", + "142", + "1429", + "143098", + "143162", + "143187", + "1432", + "143384", + "1435", + "1437", + "143872", + "1439", + "1440", + "1441", + "144100", + "144165", + "144245", + "144455", + "1445", + "144568", + "144577", + "144699", + "1447", + "144717", + "1448", + "144811", + "145173", + "1452", + "145258", + "1453", + "1454", + "145567", + "145581", + "1457", + "145741", + "145873", + "1460", + "146057", + "146059", + "146206", + "1464", + "146433", + "146722", + "146760", + "146850", + "146862", + "146909", + "147", + "147007", + "1471", + "147138", + "147372", + "1474", + "147409", + "1475", + "147841", + "147912", + "147945", + "148", + "148022", + "148066", + "148170", + "1482", + "148252", + "148281", + "148362", + "148479", + "1487", + "148738", + "1488", + "148867", + "1489", + "1490", + "149041", + "149095", + "1491", + "149111", + "149233", + "1493", + "149371", + "149461", + "1496", + "149603", + "149628", + "149647", + "1497", + "149840", + "1499", + "149951", + "150", + "1500", + "150094", + "1501", + "150274", + "1503", + "150356", + "150365", + "150368", + "150372", + "150465", + "150468", + "150678", + "150684", + "150696", + "150763", + "1509", + "151", + "1510", + "151056", + "1511", + "151188", + "1512", + "1513", + "151306", + "1514", + "151449", + "1515", + "151516", + "151556", + "151636", + "151648", + "151651", + "151835", + "152", + "1520", + "152007", + "152110", + "152137", + "152138", + "152185", + "152273", + "1523", + "1524", + "152485", + "1525", + "152559", + "153090", + "153241", + "153339", + "153478", + "1535", + "153562", + "1536", + "153642", + "153769", + "1540", + "154141", + "154288", + "1545", + "154796", + "1548", + "155061", + "155368", + "1565", + "157570", + "157680", + "1577", + "157753", + "157769", + "1579", + "157922", + "158", + "1581", + "158234", + "158297", + "1584", + "158747", + "1588", + "158835", + "158866", + "158983", + "1591", + "1593", + "1594", + "159686", + "16", + "1604", + "160418", + "1606", + "1607", + "1608", + "160851", + "1609", + "1610", + "1611", + "161176", + "161198", + "1612", + "161291", + "1613", + "161514", + "161582", + "1616", + "161742", + "161882", + "162", + "1622", + "162427", + "162514", + "162989", + "1630", + "163126", + "163175", + "1634", + "163486", + "163590", + "1636", + "163786", + "163859", + "163882", + "1639", + "164", + "1642", + "1643", + "1644", + "1645", + "1646", + "164656", + "164668", + "1647", + "1649", + "165", + "1652", + "1653", + "165324", + "1654", + "1655", + "1656", + "165721", + "165904", + "165918", + "166", + "1660", + "1663", + "1667", + "166785", + "1668", + "166929", + "167", + "1670", + "1672", + "1673", + "1674", + "1676", + "167691", + "1677", + "1678", + "168667", + "1687", + "1690", + "169026", + "169792", + "170302", + "170506", + "170622", + "170691", + "170692", + "171019", + "171023", + "171389", + "171392", + "171425", + "171586", + "1716", + "1717", + "1718", + "1723", + "1725", + "1728", + "1729", + "173", + "1736", + "1737", + "1739", + "174", + "1742", + "1743", + "1745", + "1748", + "1749", + "175", + "1756", + "1758", + "176", + "1760", + "1763", + "177", + "1773", + "1776", + "1777", + "1778", + "178", + "1780", + "1788", + "1789", + "1793", + "1794", + "1795", + "1798", + "1801", + "1802", + "1803", + "1804", + "1806", + "1808", + "181", + "1810", + "1811", + "1812", + "1813", + "1814", + "1815", + "1816", + "182", + "1822", + "1824", + "1825", + "1826", + "1828", + "1829", + "183", + "1832", + "1836", + "1837", + "1839", + "1840", + "1843", + "1845", + "1846", + "1848", + "1849", + "185", + "1854", + "1855", + "1856", + "1857", + "186", + "1861", + "1869", + "187", + "1870", + "1871", + "1880", + "1889", + "189", + "1890", + "1893", + "1894", + "1896", + "19", + "190", + "1902", + "1906", + "1907", + "1908", + "1909", + "1910", + "1915", + "1917", + "192111", + "192683", + "1936", + "1939", + "1942", + "1944", + "1946", + "1947", + "1948", + "1949", + "1954", + "1958", + "195827", + "196", + "1960", + "196051", + "1965", + "196527", + "196528", + "1967", + "1968", + "1969", + "196996", + "197", + "197131", + "197259", + "197358", + "1977", + "1978", + "1981", + "1984", + "199", + "1991", + "199221", + "1994", + "199713", + "199731", + "199857", + "199920", + "2", + "20", + "2000", + "200424", + "200734", + "200845", + "200879", + "200931", + "200933", + "200942", + "2010", + "2011", + "201161", + "201163", + "201164", + "201254", + "201292", + "201294", + "2013", + "201595", + "201626", + "201627", + "201633", + "2017", + "2019", + "202018", + "2022", + "202243", + "2027", + "2029", + "203068", + "203228", + "203286", + "2033", + "2034", + "2035", + "2036", + "2037", + "2038", + "203859", + "2039", + "204", + "2041", + "2042", + "204219", + "2043", + "2045", + "2047", + "2048", + "204851", + "2049", + "204962", + "2050", + "2053", + "2054", + "205428", + "2056", + "2057", + "205717", + "2058", + "206358", + "2064", + "2067", + "2068", + "2069", + "207", + "2070", + "2071", + "2072", + "2073", + "2074", + "2077", + "208", + "2081", + "2099", + "21", + "210", + "2100", + "2107", + "211", + "2113", + "212", + "2120", + "2121", + "2122", + "213", + "2130", + "2131", + "2132", + "2137", + "2138", + "2146", + "2147", + "215", + "2150", + "2151", + "2152", + "2153", + "2155", + "2157", + "2158", + "2159", + "2160", + "2161", + "2162", + "2165", + "217", + "2175", + "2176", + "2177", + "2178", + "2180", + "2181", + "2184", + "2185", + "2186", + "2187", + "2188", + "2189", + "2192", + "219285", + "2193", + "2194", + "219402", + "219699", + "219736", + "219771", + "219790", + "219844", + "219854", + "219931", + "22", + "220", + "2200", + "2201", + "220134", + "2202", + "220202", + "220296", + "2203", + "220441", + "2205", + "2207", + "2208", + "2209", + "220972", + "221002", + "221035", + "221037", + "221061", + "221079", + "221150", + "221178", + "2212", + "2213", + "221391", + "221472", + "221477", + "221496", + "221692", + "2218", + "221895", + "2219", + "221908", + "221927", + "221938", + "2220", + "222166", + "2222", + "222229", + "222236", + "222546", + "222584", + "222642", + "222643", + "222663", + "222962", + "223", + "223082", + "223117", + "2235", + "2237", + "2239", + "224", + "2241", + "2242", + "2243", + "2244", + "2245", + "2246", + "2247", + "2248", + "2249", + "2250", + "2251", + "2252", + "2253", + "2254", + "2255", + "225689", + "2257", + "2258", + "226", + "2260", + "2266", + "2268", + "2271", + "2272", + "2273", + "2277", + "22796", + "2280", + "22800", + "22802", + "22808", + "22809", + "2281", + "22827", + "22829", + "22836", + "22837", + "22843", + "22844", + "22845", + "22846", + "22848", + "22853", + "22854", + "22856", + "22858", + "22861", + "22863", + "22865", + "22866", + "22871", + "22872", + "22873", + "22876", + "22878", + "22879", + "2288", + "22880", + "22884", + "2289", + "22890", + "22899", + "2290", + "22900", + "22901", + "22904", + "22906", + "22907", + "22909", + "22914", + "22915", + "22919", + "22920", + "22924", + "22925", + "22926", + "22927", + "22930", + "22931", + "22933", + "22938", + "2294", + "22943", + "22948", + "2295", + "22954", + "2296", + "22974", + "22976", + "22978", + "22979", + "22980", + "22985", + "2299", + "22994", + "22995", + "22998", + "22999", + "23001", + "23005", + "23007", + "23008", + "2301", + "23011", + "23013", + "23017", + "23019", + "23022", + "23023", + "23025", + "23028", + "2303", + "23032", + "23036", + "23039", + "2304", + "23043", + "23047", + "23049", + "2305", + "23053", + "23061", + "23062", + "23063", + "23064", + "23065", + "23067", + "23071", + "23074", + "23075", + "23076", + "23077", + "2308", + "23081", + "23085", + "23086", + "23089", + "2309", + "23090", + "23092", + "23094", + "23095", + "23097", + "23098", + "231", + "23102", + "23108", + "23111", + "23114", + "23116", + "23118", + "2312", + "23120", + "23122", + "23126", + "23129", + "2313", + "23130", + "23136", + "23137", + "2314", + "23141", + "23143", + "23149", + "23157", + "2316", + "23161", + "23162", + "23163", + "23165", + "23166", + "23167", + "2317", + "23170", + "23171", + "23172", + "23175", + "23178", + "2318", + "23180", + "23184", + "23187", + "23189", + "2319", + "23190", + "23191", + "23192", + "23194", + "23197", + "23203", + "23204", + "23207", + "23208", + "23209", + "23210", + "23212", + "23213", + "23214", + "23216", + "23219", + "2322", + "23220", + "23221", + "23224", + "23229", + "23230", + "23235", + "23236", + "23237", + "23239", + "2324", + "23240", + "23241", + "23244", + "23251", + "23252", + "23255", + "23256", + "23258", + "23261", + "23263", + "23265", + "23268", + "23271", + "23272", + "23274", + "23275", + "23276", + "23277", + "2328", + "23286", + "23291", + "23295", + "23299", + "23303", + "23306", + "23308", + "2331", + "23310", + "23312", + "23314", + "23317", + "2332", + "23322", + "23325", + "23326", + "23328", + "23329", + "23332", + "23334", + "23339", + "2334", + "23341", + "23345", + "23347", + "2335", + "23352", + "23353", + "23354", + "23355", + "23363", + "23365", + "23367", + "23369", + "23370", + "23371", + "23376", + "23378", + "23379", + "23380", + "23383", + "23384", + "23387", + "23389", + "2339", + "23390", + "23392", + "23394", + "23395", + "23397", + "23399", + "23400", + "23404", + "23405", + "23409", + "23411", + "23414", + "23418", + "23420", + "23426", + "23428", + "23429", + "23431", + "23432", + "23433", + "23435", + "23443", + "23446", + "23450", + "23451", + "23456", + "23457", + "23461", + "23462", + "23463", + "23471", + "23473", + "23474", + "23476", + "23479", + "2348", + "23483", + "23491", + "23493", + "23495", + "23498", + "23499", + "2350", + "23500", + "23503", + "23509", + "23511", + "23512", + "23513", + "23514", + "23516", + "23521", + "23522", + "23524", + "23526", + "23529", + "2353", + "23530", + "23531", + "23532", + "23533", + "23534", + "23543", + "23545", + "23547", + "23555", + "23556", + "23557", + "23558", + "23560", + "23568", + "2358", + "23580", + "23581", + "23586", + "23588", + "23590", + "23592", + "23594", + "23596", + "23601", + "23603", + "23604", + "23607", + "23608", + "23612", + "23616", + "23617", + "23623", + "23630", + "23633", + "23636", + "23637", + "23639", + "23640", + "23641", + "23643", + "23645", + "23647", + "23654", + "23659", + "23671", + "23673", + "23677", + "23678", + "23682", + "23705", + "23708", + "23729", + "23732", + "23742", + "23753", + "23759", + "23760", + "23761", + "23765", + "23767", + "23770", + "23779", + "23787", + "23788", + "238", + "240", + "241", + "24137", + "24139", + "24140", + "24142", + "24144", + "24145", + "242", + "245711", + "245812", + "245928", + "245973", + "246", + "246175", + "246176", + "246184", + "246213", + "246243", + "246330", + "246778", + "247", + "2475", + "2487", + "2488", + "249", + "2492", + "25", + "2512", + "2515", + "2516", + "2517", + "2521", + "2525", + "2526", + "252839", + "2529", + "252983", + "2530", + "253017", + "2531", + "253260", + "2533", + "2534", + "2535", + "253558", + "2537", + "253725", + "253738", + "2538", + "253832", + "2539", + "253959", + "253980", + "254065", + "2542", + "254263", + "254394", + "254428", + "254531", + "2547", + "2548", + "2549", + "255022", + "255043", + "255061", + "255189", + "255324", + "255374", + "2554", + "255488", + "2555", + "2556", + "255738", + "255758", + "2558", + "2561", + "2562", + "256297", + "2563", + "256364", + "2564", + "256435", + "2566", + "256646", + "257", + "257106", + "257144", + "257218", + "257364", + "25769", + "25771", + "25777", + "25778", + "25782", + "25788", + "25791", + "25792", + "25793", + "2580", + "25800", + "25801", + "258010", + "25802", + "25805", + "25813", + "25818", + "25820", + "25825", + "25827", + "25833", + "25834", + "25836", + "25837", + "25839", + "25847", + "25851", + "25853", + "25855", + "25861", + "25865", + "2587", + "25875", + "25878", + "25879", + "2588", + "25885", + "25886", + "2589", + "25894", + "25896", + "25898", + "25900", + "25909", + "2591", + "25912", + "25913", + "259197", + "2592", + "25921", + "25923", + "259230", + "259232", + "259266", + "25928", + "25930", + "259307", + "25937", + "25939", + "25942", + "25950", + "25953", + "25959", + "2596", + "25963", + "2597", + "25970", + "25973", + "25974", + "25976", + "25977", + "25981", + "25989", + "25998", + "25999", + "26000", + "26001", + "26003", + "26005", + "26007", + "26009", + "26030", + "26036", + "26040", + "260434", + "26046", + "26047", + "26051", + "26054", + "26057", + "26058", + "26060", + "26061", + "26065", + "26086", + "26088", + "26090", + "26100", + "26112", + "26123", + "26128", + "26130", + "26133", + "26135", + "26137", + "26145", + "26146", + "2615", + "26153", + "26154", + "26155", + "26167", + "261726", + "261729", + "261734", + "26175", + "26189", + "2619", + "26191", + "2621", + "2622", + "26224", + "26225", + "26227", + "26229", + "2623", + "26230", + "26234", + "26235", + "2624", + "26249", + "2625", + "26253", + "26258", + "26259", + "2626", + "26262", + "26263", + "26267", + "26268", + "2627", + "26270", + "26271", + "26272", + "26273", + "26276", + "26277", + "26278", + "26279", + "26281", + "2629", + "26291", + "26297", + "2632", + "2633", + "2634", + "26353", + "26354", + "2642", + "2645", + "26469", + "2647", + "26471", + "2648", + "2650", + "26508", + "2651", + "26511", + "26517", + "26519", + "2652", + "26520", + "26521", + "26523", + "26524", + "26525", + "2657", + "2658", + "26585", + "26586", + "2660", + "26608", + "2661", + "26610", + "2662", + "2664", + "2665", + "266740", + "2668", + "2669", + "267", + "2670", + "267012", + "2672", + "2673", + "2674", + "2675", + "2677", + "2683", + "2688", + "2690", + "2691", + "2692", + "2693", + "2694", + "2695", + "2696", + "2697", + "26985", + "26993", + "26994", + "26999", + "27", + "270", + "27000", + "2701", + "2702", + "27022", + "2703", + "27030", + "27031", + "27032", + "27035", + "27040", + "2705", + "2706", + "27063", + "27068", + "2707", + "27072", + "27074", + "27077", + "27090", + "27092", + "271", + "2710", + "27107", + "27123", + "27124", + "27129", + "27131", + "27133", + "27141", + "27147", + "27148", + "27152", + "27153", + "27159", + "27161", + "27163", + "2717", + "27178", + "27185", + "2719", + "272", + "2720", + "27202", + "27229", + "27230", + "27232", + "27235", + "27236", + "27237", + "27238", + "27241", + "27242", + "27245", + "27246", + "27248", + "27250", + "27252", + "27286", + "27289", + "2729", + "273", + "27302", + "27314", + "27315", + "27316", + "27329", + "2733", + "27338", + "27339", + "27341", + "27345", + "27346", + "27347", + "27348", + "2735", + "27351", + "27352", + "2736", + "2737", + "274", + "2740", + "2741", + "27429", + "2743", + "27436", + "2744", + "27443", + "2746", + "2752", + "2760", + "2766", + "2767", + "2768", + "2769", + "2770", + "2771", + "2773", + "2776", + "2778", + "2779", + "2782", + "2783", + "2784", + "2786", + "2788", + "2799", + "2801", + "2803", + "2804", + "2810", + "2811", + "2812", + "2814", + "2815", + "2819", + "2821", + "2822", + "28232", + "28234", + "2824", + "282618", + "282679", + "2828", + "2829", + "282991", + "282996", + "283", + "283106", + "283149", + "283209", + "283219", + "283238", + "2833", + "283375", + "283420", + "283431", + "283450", + "283489", + "283514", + "283518", + "283576", + "283629", + "283748", + "2838", + "283807", + "283820", + "283871", + "284", + "284001", + "284058", + "284086", + "284098", + "284111", + "284114", + "284119", + "284252", + "284254", + "284340", + "284359", + "284361", + "284382", + "284403", + "284434", + "284439", + "284654", + "285", + "285016", + "28514", + "285175", + "285180", + "2852", + "285203", + "285282", + "2853", + "285315", + "285362", + "285381", + "285440", + "285489", + "285521", + "285590", + "285613", + "285636", + "285643", + "285848", + "285852", + "2859", + "285966", + "285973", + "286", + "286053", + "2861", + "2864", + "286430", + "2865", + "2867", + "286887", + "287", + "2878", + "2879", + "288", + "2885", + "2886", + "2887", + "2888", + "2889", + "2892", + "2895", + "28952", + "28956", + "28958", + "2896", + "28960", + "28962", + "28972", + "28976", + "2898", + "28982", + "28984", + "28985", + "28989", + "28996", + "28999", + "29", + "2902", + "2903", + "29058", + "2906", + "29062", + "29071", + "29072", + "2908", + "29081", + "29085", + "29086", + "29089", + "2909", + "29090", + "29091", + "29098", + "291", + "29105", + "29108", + "29109", + "29110", + "29115", + "29116", + "29123", + "29126", + "29127", + "29128", + "2914", + "2915", + "2916", + "2919", + "2920", + "2923", + "2931", + "2932", + "2934", + "2935", + "2937", + "2946", + "2947", + "2950", + "2956", + "2959", + "2961", + "2962", + "2965", + "2966", + "2969", + "29760", + "29761", + "29763", + "29775", + "29780", + "2979", + "29801", + "2982", + "2984", + "29851", + "2986", + "29881", + "29882", + "29883", + "29886", + "29887", + "29893", + "29895", + "29899", + "2990", + "29904", + "29911", + "29914", + "29915", + "29916", + "29920", + "29922", + "29923", + "29925", + "29926", + "29927", + "29928", + "29934", + "29940", + "29945", + "29950", + "29954", + "29957", + "29967", + "29968", + "29978", + "29979", + "29980", + "29982", + "29984", + "29990", + "29993", + "29997", + "29998", + "3000", + "30001", + "30008", + "30009", + "3001", + "3005", + "30061", + "3008", + "3009", + "301", + "3015", + "302", + "3020", + "3021", + "3026", + "3028", + "3030", + "3032", + "3033", + "3035", + "3036", + "3037", + "3038", + "3039", + "3040", + "3043", + "3047", + "3048", + "3052", + "3053", + "3054", + "3055", + "3059", + "306", + "3060", + "3064", + "3065", + "3066", + "307", + "3070", + "3071", + "3074", + "3075", + "3077", + "3078", + "3080", + "3081", + "30813", + "30817", + "3082", + "30832", + "30835", + "3084", + "30849", + "30851", + "3087", + "3091", + "3092", + "3093", + "3096", + "30968", + "3097", + "3098", + "3099", + "310", + "3104", + "3108", + "3109", + "311", + "3110", + "3111", + "3112", + "3113", + "3115", + "3117", + "3119", + "3122", + "3123", + "3140", + "3141", + "3145", + "3146", + "3148", + "3159", + "3161", + "3162", + "3164", + "3166", + "3169", + "3170", + "3172", + "3176", + "317662", + "317761", + "3178", + "3187", + "3188", + "3190", + "3192", + "3198", + "3199", + "32", + "3202", + "3204", + "3207", + "3209", + "3211", + "3219", + "322", + "3239", + "324", + "3248", + "3249", + "325", + "3251", + "3257", + "326", + "326625", + "327", + "3273", + "3275", + "3276", + "328", + "3281", + "329", + "3294", + "3297", + "330", + "3300", + "3301", + "3308", + "3309", + "331", + "3313", + "3315", + "3320", + "3321", + "3326", + "3329", + "333", + "3336", + "3337", + "3338", + "3339", + "3346", + "335", + "3356", + "3357", + "3358", + "336", + "3364", + "337", + "3371", + "3373", + "3375", + "337867", + "338", + "3381", + "3383", + "338322", + "338328", + "338382", + "338567", + "338657", + "338692", + "338917", + "339122", + "339390", + "3394", + "3396", + "3397", + "339745", + "3398", + "339829", + "339855", + "3399", + "34", + "340024", + "340061", + "340348", + "340371", + "340419", + "340485", + "340533", + "340665", + "341", + "341019", + "341152", + "341208", + "3416", + "341640", + "3417", + "3418", + "342035", + "3423", + "3425", + "3426", + "3428", + "3429", + "342979", + "3430", + "343035", + "343070", + "3431", + "3433", + "3434", + "343578", + "343637", + "344", + "3440", + "344558", + "344892", + "345", + "345193", + "3454", + "3455", + "3456", + "345611", + "345643", + "3458", + "3459", + "3460", + "346171", + "346606", + "347", + "347240", + "347516", + "3476", + "347688", + "347733", + "3479", + "348", + "3481", + "348110", + "3482", + "348235", + "3483", + "3485", + "3486", + "348654", + "3489", + "348938", + "348980", + "3491", + "349667", + "350", + "3508", + "351", + "3516", + "353091", + "353376", + "353500", + "353514", + "354", + "3543", + "3549", + "355", + "3551", + "3552", + "3553", + "3554", + "3556", + "3557", + "3558", + "356", + "3562", + "3563", + "3565", + "3566", + "3567", + "3568", + "3569", + "3570", + "3572", + "3574", + "3575", + "3576", + "358", + "3581", + "3586", + "3587", + "3588", + "3589", + "359", + "3590", + "3592", + "3593", + "3594", + "3595", + "3596", + "359948", + "360", + "3600", + "3601", + "3603", + "3605", + "3606", + "3611", + "3612", + "3615", + "3619", + "362", + "3620", + "3621", + "3623", + "3624", + "3625", + "3627", + "3630", + "3633", + "3635", + "3636", + "3638", + "3640", + "3642", + "3643", + "3645", + "3646", + "3651", + "3654", + "3655", + "3656", + "3659", + "3661", + "3662", + "3663", + "3664", + "3665", + "3667", + "367", + "3670", + "3673", + "3675", + "3676", + "3678", + "3679", + "368", + "3683", + "3684", + "3685", + "3687", + "3688", + "3689", + "3690", + "3691", + "3693", + "3695", + "3696", + "37", + "3702", + "3703", + "3705", + "3706", + "3707", + "3708", + "3714", + "3716", + "3717", + "3718", + "372", + "3720", + "3725", + "3728", + "3735", + "373509", + "3737", + "374", + "3741", + "374354", + "374403", + "3745", + "3746", + "374654", + "3747", + "3748", + "374872", + "374879", + "374969", + "374986", + "375033", + "375056", + "3753", + "375307", + "3756", + "3757", + "375748", + "375790", + "3758", + "3759", + "3760", + "3762", + "376267", + "3763", + "3764", + "376497", + "3766", + "3767", + "3768", + "377630", + "3778", + "378", + "3782", + "3783", + "3784", + "378708", + "378884", + "379", + "3796", + "3799", + "3800", + "3801", + "3802", + "3805", + "3812", + "3818", + "3821", + "3822", + "3823", + "3824", + "3827", + "383", + "3832", + "3833", + "3834", + "3835", + "3836", + "3837", + "3838", + "3840", + "3842", + "3843", + "3845", + "3848", + "3849", + "3850", + "3851", + "3852", + "3857", + "3858", + "3859", + "3860", + "3861", + "3868", + "387", + "387082", + "387103", + "3872", + "3875", + "387597", + "387695", + "387837", + "387849", + "387893", + "388", + "3880", + "388015", + "388125", + "388324", + "388325", + "388389", + "388552", + "388630", + "388646", + "388662", + "388677", + "388698", + "3887", + "388753", + "3889", + "389", + "3892", + "389400", + "389421", + "389434", + "389541", + "389643", + "389658", + "389692", + "3897", + "389827", + "389856", + "3899", + "39", + "390", + "390594", + "390598", + "3908", + "3909", + "391", + "3911", + "3914", + "3915", + "3916", + "3918", + "392", + "3920", + "392255", + "3925", + "392636", + "3929", + "393", + "3930", + "3931", + "3936", + "3937", + "394", + "395", + "3952", + "3953", + "3954", + "3955", + "3956", + "3958", + "3959", + "396", + "3964", + "3965", + "397", + "3976", + "3977", + "3978", + "3981", + "3984", + "3985", + "3987", + "3988", + "399", + "3990", + "3992", + "3996", + "399687", + "3998", + "399968", + "399979", + "400", + "4000", + "4001", + "4004", + "400451", + "400916", + "4010", + "401024", + "4012", + "401265", + "401397", + "4014", + "4015", + "401505", + "401548", + "4017", + "402", + "4023", + "403", + "4033", + "403313", + "4035", + "4036", + "4037", + "4038", + "4040", + "4041", + "4043", + "4046", + "404636", + "404672", + "4047", + "405", + "4052", + "4053", + "4054", + "4055", + "4056", + "4057", + "405753", + "4058", + "4063", + "4064", + "4067", + "4068", + "4070", + "4072", + "4074", + "4076", + "4077", + "408050", + "4081", + "4085", + "4086", + "4087", + "4088", + "4089", + "4090", + "4091", + "4092", + "4093", + "4094", + "41", + "410", + "4100", + "4101", + "411", + "4117", + "4118", + "412", + "4121", + "4123", + "4124", + "4125", + "4128", + "4131", + "4133", + "4134", + "4135", + "4137", + "4140", + "4141", + "4143", + "414301", + "414325", + "4144", + "4148", + "4149", + "415", + "4150", + "4153", + "4155", + "4157", + "4158", + "4162", + "4163", + "4166", + "4168", + "4170", + "4171", + "4172", + "4173", + "4174", + "4175", + "4176", + "4179", + "4188", + "4189", + "4191", + "4192", + "4194", + "4199", + "4204", + "4205", + "4208", + "421", + "4210", + "4212", + "4214", + "4215", + "4216", + "4217", + "4218", + "4222", + "4239", + "4241", + "4245", + "4246", + "4247", + "4249", + "4254", + "4255", + "4256", + "4257", + "4261", + "427", + "4277", + "4281", + "4282", + "4283", + "4284", + "4285", + "4286", + "4287", + "429", + "4292", + "4293", + "4294", + "4296", + "4297", + "43", + "4300", + "4301", + "4303", + "4311", + "4312", + "4313", + "4314", + "4316", + "4317", + "4318", + "4319", + "432", + "4320", + "4321", + "4322", + "4323", + "432355", + "4324", + "4327", + "4330", + "4332", + "4340", + "4342", + "4345", + "4351", + "4352", + "4353", + "4358", + "4360", + "4361", + "4363", + "43847", + "439", + "440", + "440026", + "440138", + "440193", + "440275", + "440335", + "440400", + "440435", + "440561", + "440712", + "440738", + "441478", + "441864", + "441925", + "442721", + "443", + "4430", + "4435", + "4436", + "4437", + "444", + "445", + "4478", + "4481", + "4485", + "4486", + "4487", + "4488", + "4504", + "4507", + "4522", + "4524", + "4534", + "4544", + "4547", + "4548", + "4552", + "4589", + "4591", + "4593", + "4594", + "4595", + "4598", + "4600", + "4601", + "4602", + "4604", + "4607", + "4609", + "4613", + "4616", + "4618", + "462", + "4621", + "4624", + "4625", + "4626", + "4627", + "4628", + "4629", + "463", + "4632", + "4633", + "4634", + "4635", + "4637", + "4638", + "4640", + "4641", + "4643", + "4644", + "4645", + "4646", + "4647", + "4649", + "4650", + "4651", + "4653", + "4654", + "4659", + "4665", + "4668", + "4669", + "467", + "4671", + "4677", + "468", + "4680", + "4681", + "4683", + "4686", + "4688", + "4689", + "4690", + "4691", + "4692", + "4693", + "4697", + "4700", + "4716", + "472", + "4722", + "473", + "4733", + "4738", + "4739", + "474383", + "474384", + "4744", + "4745", + "4747", + "4750", + "4751", + "4758", + "476", + "4760", + "4762", + "4763", + "477", + "4771", + "4773", + "4774", + "4778", + "478", + "4780", + "4784", + "4790", + "4791", + "4792", + "4794", + "4795", + "4796", + "4799", + "4802", + "4803", + "4804", + "4808", + "481", + "4814", + "482", + "4824", + "4829", + "483", + "4830", + "4832", + "4835", + "4836", + "4838", + "4841", + "4842", + "4843", + "4846", + "4848", + "4849", + "4850", + "4851", + "4852", + "4853", + "4854", + "4855", + "4856", + "4858", + "486", + "4860", + "4864", + "4867", + "4868", + "4869", + "487", + "4878", + "4879", + "488", + "4880", + "4881", + "4882", + "489", + "4891", + "4893", + "4897", + "4898", + "49", + "4902", + "4905", + "4908", + "4909", + "4913", + "4915", + "4919", + "4920", + "4921", + "4922", + "4926", + "4927", + "4928", + "4929", + "493", + "4931", + "4935", + "4938", + "493856", + "4939", + "4940", + "4943", + "4946", + "4948", + "4952", + "4953", + "4967", + "4968", + "497189", + "4976", + "4978", + "498", + "4982", + "4983", + "4985", + "49856", + "49860", + "4988", + "4998", + "5000", + "5002", + "5004", + "5005", + "5007", + "5008", + "5009", + "501", + "5010", + "5015", + "5018", + "5021", + "5024", + "5025", + "5027", + "5028", + "5031", + "5032", + "5034", + "503618", + "5045", + "5046", + "5047", + "5048", + "50484", + "50485", + "50486", + "50487", + "50488", + "5049", + "50506", + "5051", + "50511", + "50512", + "50515", + "5052", + "5054", + "5055", + "5058", + "506", + "50604", + "50615", + "50618", + "50619", + "5062", + "50628", + "5063", + "50632", + "5064", + "50640", + "50649", + "50650", + "50674", + "5068", + "5071", + "5073", + "5075", + "5076", + "5077", + "5078", + "5080", + "50801", + "50808", + "50809", + "5081", + "50814", + "5083", + "50833", + "50838", + "50846", + "50848", + "50852", + "50856", + "50862", + "5087", + "5091", + "5093", + "50937", + "5094", + "50940", + "50943", + "50945", + "5095", + "5096", + "50964", + "50999", + "51", + "51002", + "51004", + "51008", + "51009", + "51016", + "51021", + "51024", + "51025", + "51035", + "51042", + "5105", + "51053", + "5106", + "51062", + "51068", + "51072", + "51074", + "51076", + "51079", + "5108", + "51082", + "51083", + "51085", + "51094", + "51095", + "51098", + "51099", + "51105", + "5111", + "51111", + "51112", + "51114", + "51116", + "51119", + "51124", + "51125", + "51126", + "51127", + "51128", + "51129", + "51132", + "51134", + "51135", + "51136", + "51141", + "51143", + "51147", + "51149", + "51151", + "51157", + "5116", + "51162", + "51163", + "51164", + "51172", + "51176", + "51182", + "51185", + "5119", + "51191", + "51192", + "51193", + "51196", + "51201", + "51202", + "51203", + "51205", + "51206", + "51225", + "51227", + "51232", + "51234", + "51244", + "5125", + "51250", + "51255", + "51256", + "51257", + "51259", + "5127", + "51270", + "51271", + "51272", + "51278", + "51283", + "51284", + "51289", + "51291", + "51293", + "51295", + "51296", + "513", + "5130", + "51304", + "51305", + "51306", + "51308", + "51311", + "51312", + "51317", + "51319", + "51322", + "51324", + "5133", + "51330", + "51332", + "51334", + "51339", + "51341", + "51343", + "51347", + "51360", + "51361", + "51362", + "51365", + "51366", + "51368", + "51371", + "51375", + "51377", + "51378", + "51379", + "5138", + "51382", + "51384", + "51386", + "5139", + "51393", + "51398", + "51399", + "514", + "5140", + "51412", + "5142", + "51422", + "51426", + "51428", + "51429", + "51433", + "51434", + "51435", + "51438", + "51439", + "5144", + "51441", + "51447", + "51449", + "51451", + "51454", + "51465", + "51466", + "5147", + "51473", + "51474", + "51479", + "51490", + "51499", + "51501", + "51506", + "5151", + "51514", + "51520", + "51527", + "51528", + "51529", + "5153", + "51535", + "51537", + "5154", + "51542", + "51547", + "51548", + "5155", + "51552", + "51554", + "51560", + "51561", + "51562", + "51564", + "51567", + "51569", + "5157", + "51571", + "51573", + "51574", + "5158", + "51582", + "51588", + "5159", + "51592", + "51594", + "51604", + "51606", + "51608", + "51611", + "51614", + "51619", + "51626", + "51633", + "51637", + "51645", + "51647", + "5165", + "51651", + "51654", + "51657", + "51659", + "5166", + "51667", + "5167", + "51676", + "5168", + "51684", + "51692", + "51699", + "5170", + "51701", + "51702", + "51715", + "51719", + "5172", + "51720", + "51729", + "51733", + "51735", + "51738", + "5174", + "51741", + "51744", + "5175", + "51750", + "51752", + "51755", + "5176", + "51760", + "51762", + "51763", + "51765", + "51768", + "51773", + "51776", + "51778", + "51780", + "51816", + "5184", + "5189", + "5190", + "5191", + "5192", + "5194", + "5195", + "5196", + "5201", + "5202", + "5203", + "5204", + "5205", + "5213", + "5216", + "5217", + "5224", + "5225", + "523", + "5230", + "5236", + "5238", + "5241", + "5244", + "5245", + "5251", + "5255", + "5256", + "5257", + "526", + "5261", + "5265", + "5269", + "527", + "5270", + "5271", + "5272", + "5277", + "5279", + "5281", + "5283", + "5284", + "5286", + "5288", + "5289", + "529", + "5290", + "5291", + "5292", + "5293", + "5294", + "5295", + "5296", + "5297", + "5298", + "5300", + "5305", + "5307", + "5308", + "5309", + "5310", + "5311", + "5314", + "5315", + "5317", + "5318", + "5319", + "5320", + "5321", + "5322", + "5324", + "5325", + "5327", + "5328", + "5329", + "5330", + "5331", + "5332", + "5333", + "53335", + "53342", + "53349", + "5335", + "53353", + "53358", + "5336", + "53373", + "5339", + "5340", + "53407", + "5341", + "5345", + "5347", + "535", + "5350", + "5351", + "5352", + "5354", + "5359", + "5361", + "5364", + "5365", + "5366", + "537", + "5371", + "5373", + "5375", + "5376", + "5378", + "538", + "53834", + "53840", + "53841", + "53904", + "53905", + "53918", + "5393", + "53947", + "5395", + "5396", + "54", + "540", + "54014", + "5406", + "54084", + "54097", + "54101", + "54106", + "5413", + "541468", + "54187", + "5420", + "54206", + "54209", + "5422", + "5424", + "5426", + "5428", + "5429", + "54332", + "54344", + "54361", + "54386", + "54413", + "5443", + "54431", + "54433", + "54434", + "5444", + "54440", + "54443", + "5445", + "54453", + "5446", + "54461", + "54463", + "54465", + "54469", + "5447", + "54471", + "54472", + "54476", + "54487", + "5449", + "54496", + "54499", + "545", + "5450", + "54502", + "54507", + "54509", + "54516", + "54517", + "54520", + "54521", + "54532", + "54537", + "54538", + "54539", + "54542", + "54543", + "54546", + "5455", + "54550", + "54551", + "54552", + "5456", + "54566", + "54567", + "5457", + "5458", + "54583", + "54585", + "546", + "54606", + "54617", + "54625", + "54627", + "5465", + "54658", + "54659", + "54662", + "54664", + "54675", + "54676", + "5468", + "54680", + "5469", + "547", + "5470", + "54708", + "54716", + "54726", + "54732", + "54734", + "54737", + "54741", + "54749", + "54751", + "54757", + "5476", + "54764", + "54765", + "54769", + "5478", + "54784", + "54785", + "54788", + "5479", + "54790", + "54795", + "54800", + "54801", + "54808", + "54809", + "5481", + "54820", + "54825", + "54829", + "54832", + "54843", + "54845", + "54848", + "548593", + "54866", + "54869", + "54870", + "54872", + "54874", + "54880", + "54888", + "54892", + "54894", + "54897", + "54899", + "54900", + "54902", + "54903", + "54908", + "54910", + "54914", + "54918", + "54921", + "54922", + "54926", + "54927", + "54928", + "54929", + "54930", + "5494", + "54941", + "54947", + "54949", + "5495", + "54956", + "54959", + "54968", + "54974", + "54979", + "5498", + "54982", + "54984", + "54986", + "54994", + "54997", + "55", + "550", + "5500", + "55004", + "55005", + "55011", + "55012", + "55014", + "55016", + "55022", + "55023", + "55024", + "55027", + "55031", + "55033", + "55034", + "55036", + "55051", + "55054", + "5506", + "55061", + "55062", + "550643", + "55070", + "55072", + "55080", + "55084", + "55089", + "551", + "55107", + "55109", + "55112", + "55113", + "55120", + "55122", + "55125", + "55128", + "55130", + "55131", + "55135", + "55139", + "5514", + "55142", + "55143", + "55144", + "55146", + "55148", + "5515", + "55152", + "55154", + "55156", + "55159", + "5516", + "55160", + "55164", + "55165", + "55166", + "55171", + "5518", + "55182", + "55183", + "55187", + "55188", + "5519", + "55193", + "55198", + "552", + "55200", + "55201", + "55204", + "55209", + "55210", + "55212", + "55213", + "55215", + "55223", + "55226", + "55236", + "5524", + "55240", + "55243", + "55244", + "55249", + "5525", + "55254", + "55255", + "55269", + "5527", + "55270", + "55273", + "55275", + "5528", + "55284", + "55288", + "55294", + "55296", + "55297", + "553", + "5530", + "55300", + "553115", + "55315", + "55317", + "5532", + "55325", + "55326", + "55331", + "55333", + "55337", + "55340", + "55343", + "55353", + "55355", + "55357", + "55361", + "55366", + "55367", + "5537", + "5538", + "55388", + "5539", + "554", + "55423", + "554313", + "55432", + "55435", + "55437", + "5546", + "55466", + "55486", + "55500", + "55503", + "55505", + "55506", + "5551", + "55520", + "55521", + "55527", + "55529", + "55532", + "55553", + "55559", + "5557", + "55576", + "55577", + "5558", + "55593", + "55600", + "55601", + "55603", + "55604", + "55605", + "55610", + "55612", + "55613", + "55614", + "55617", + "5562", + "55621", + "55624", + "55625", + "55626", + "55627", + "5563", + "55630", + "55633", + "55636", + "55644", + "55646", + "55647", + "55650", + "55651", + "55652", + "55654", + "55655", + "55658", + "5566", + "55660", + "55662", + "55666", + "55669", + "5567", + "55670", + "55677", + "55681", + "55687", + "55689", + "5569", + "55690", + "55691", + "55693", + "55696", + "55697", + "55699", + "5570", + "55701", + "55703", + "55704", + "55705", + "55706", + "5571", + "55716", + "55717", + "55719", + "55722", + "55729", + "5573", + "55732", + "55733", + "55737", + "55739", + "55741", + "55743", + "55745", + "55746", + "5575", + "55750", + "55754", + "55755", + "55756", + "5576", + "55761", + "55763", + "55764", + "55765", + "55768", + "5577", + "55770", + "55773", + "55775", + "55777", + "5578", + "55780", + "55781", + "55784", + "55788", + "55789", + "5579", + "55790", + "55791", + "558", + "5580", + "55800", + "55801", + "55806", + "55809", + "5581", + "55810", + "55812", + "55818", + "5582", + "55823", + "55829", + "5583", + "55830", + "55831", + "55835", + "55843", + "55845", + "55851", + "55854", + "55856", + "55858", + "55859", + "5586", + "55861", + "55863", + "55869", + "5587", + "55870", + "5588", + "55885", + "5589", + "55894", + "55901", + "55904", + "55906", + "5591", + "55914", + "55917", + "5592", + "55920", + "55929", + "5593", + "55937", + "5594", + "5595", + "55958", + "55959", + "55966", + "55968", + "55969", + "55971", + "5598", + "5599", + "5600", + "56005", + "56006", + "5601", + "5603", + "56034", + "5604", + "5605", + "56052", + "5606", + "5608", + "5609", + "56098", + "5610", + "5611", + "56122", + "56123", + "56125", + "56126", + "56127", + "5613", + "56130", + "56131", + "56132", + "56133", + "56160", + "5617", + "56172", + "5618", + "5619", + "5620", + "56203", + "5621", + "5624", + "56241", + "56244", + "56245", + "56246", + "56253", + "56254", + "56257", + "56259", + "5626", + "56262", + "56270", + "56271", + "5629", + "5630", + "56302", + "5631", + "56339", + "56341", + "5641", + "56413", + "5644", + "5645", + "56477", + "56478", + "5648", + "5650", + "5651", + "5653", + "5654", + "56547", + "5657", + "566", + "5660", + "56603", + "56605", + "56623", + "56624", + "5663", + "5664", + "56647", + "56649", + "56652", + "56658", + "56681", + "56683", + "567", + "56776", + "5678", + "56832", + "56848", + "56849", + "56851", + "56852", + "5687", + "56886", + "56890", + "56892", + "56893", + "56894", + "56895", + "56896", + "56900", + "56907", + "56913", + "56915", + "56916", + "56919", + "5692", + "56922", + "56923", + "56926", + "56929", + "56937", + "56940", + "56945", + "56947", + "56957", + "5696", + "5697", + "56975", + "5698", + "56983", + "56984", + "5699", + "56992", + "56993", + "56994", + "56998", + "57003", + "57007", + "5701", + "57010", + "5702", + "57020", + "57026", + "57038", + "57045", + "57048", + "5705", + "57057", + "5706", + "57082", + "57084", + "57091", + "57092", + "57096", + "57102", + "57103", + "57104", + "57105", + "57110", + "57111", + "57115", + "57118", + "57119", + "57120", + "57122", + "57126", + "57130", + "57142", + "57151", + "57152", + "57153", + "5716", + "57161", + "57162", + "57165", + "57167", + "57169", + "5717", + "57171", + "57175", + "57178", + "5718", + "57182", + "57187", + "57190", + "57192", + "57194", + "572", + "57211", + "57214", + "57217", + "57222", + "5723", + "57231", + "5725", + "5727", + "5728", + "573", + "57325", + "57333", + "5734", + "57343", + "5737", + "57379", + "57381", + "57393", + "5740", + "57402", + "57405", + "5741", + "57410", + "57413", + "57448", + "57449", + "5745", + "57459", + "57464", + "57465", + "57468", + "5747", + "57471", + "57472", + "57479", + "57480", + "57482", + "57489", + "57492", + "57493", + "57498", + "575", + "57502", + "57506", + "57510", + "57511", + "57512", + "57514", + "57519", + "57520", + "57521", + "57522", + "57526", + "5753", + "57531", + "57533", + "57534", + "57535", + "57538", + "57539", + "5754", + "57542", + "57545", + "57551", + "57552", + "57553", + "57555", + "57556", + "5756", + "57560", + "57561", + "57563", + "57569", + "57572", + "57580", + "57584", + "57589", + "57590", + "57591", + "57592", + "57599", + "57600", + "57602", + "57605", + "57606", + "57608", + "57614", + "57617", + "57623", + "57628", + "57630", + "57636", + "5764", + "57646", + "57647", + "57650", + "57662", + "57664", + "57673", + "57674", + "57678", + "57679", + "5768", + "57680", + "57688", + "57689", + "57697", + "57699", + "5770", + "57701", + "57706", + "57707", + "5771", + "57717", + "57718", + "57724", + "57728", + "57732", + "5774", + "57761", + "57763", + "5777", + "57787", + "578", + "5780", + "57805", + "5781", + "57818", + "5782", + "57822", + "57824", + "57829", + "5783", + "57834", + "5784", + "57864", + "5788", + "5789", + "5792", + "5793", + "5795", + "5796", + "5797", + "5798", + "58", + "580", + "5800", + "5801", + "5802", + "5805", + "5806", + "581", + "5810", + "5813", + "5817", + "5818", + "5819", + "582", + "5824", + "5825", + "5826", + "5828", + "5829", + "583", + "5830", + "5831", + "5832", + "5833", + "5836", + "5837", + "58476", + "58480", + "58484", + "58487", + "58493", + "58494", + "58495", + "58497", + "58499", + "585", + "58504", + "58508", + "58509", + "58524", + "58529", + "58533", + "5859", + "5860", + "5861", + "5862", + "5864", + "5865", + "5870", + "5871", + "5872", + "5873", + "5874", + "5877", + "5879", + "5880", + "5881", + "5883", + "5885", + "5886", + "5887", + "5888", + "5889", + "5890", + "5892", + "5894", + "5896", + "5898", + "5899", + "59", + "590", + "5901", + "5903", + "5905", + "5906", + "59067", + "5908", + "59082", + "5909", + "5911", + "5912", + "5913", + "5914", + "5915", + "5916", + "5919", + "5920", + "5921", + "5922", + "5923", + "5924", + "5925", + "5927", + "59272", + "59283", + "59284", + "5930", + "59307", + "5931", + "5932", + "59335", + "59338", + "59339", + "59341", + "59343", + "59344", + "59345", + "59349", + "59352", + "59353", + "5936", + "595", + "5950", + "5956", + "5959", + "596", + "5961", + "5962", + "5965", + "5966", + "5970", + "5971", + "5972", + "5976", + "5977", + "5978", + "598", + "5980", + "5981", + "5982", + "5983", + "5984", + "5985", + "5987", + "5988", + "5993", + "5994", + "5996", + "5997", + "5998", + "5999", + "60", + "6000", + "6001", + "6004", + "6009", + "6010", + "6014", + "6016", + "6017", + "6019", + "602", + "60343", + "6036", + "60386", + "604", + "60401", + "6041", + "60412", + "60437", + "6045", + "6046", + "60468", + "6047", + "6048", + "60482", + "6049", + "6050", + "60506", + "60529", + "60558", + "60559", + "60561", + "6059", + "60592", + "60673", + "60675", + "60681", + "60684", + "6091", + "6092", + "6093", + "6095", + "6097", + "610", + "6102", + "6103", + "611", + "6117", + "6118", + "6119", + "6121", + "6123", + "6125", + "613", + "6132", + "6133", + "6135", + "6138", + "6141", + "6154", + "6155", + "6160", + "6165", + "6187", + "6188", + "6195", + "6197", + "6198", + "6201", + "6204", + "6206", + "6208", + "6209", + "6210", + "6218", + "6223", + "6224", + "6228", + "6229", + "6231", + "6232", + "6234", + "6235", + "6237", + "6239", + "624", + "6240", + "6241", + "6247", + "6248", + "6249", + "6251", + "6256", + "6259", + "6261", + "6262", + "6263", + "627", + "6271", + "6272", + "6278", + "6279", + "6280", + "6281", + "6283", + "6284", + "6288", + "629", + "6293", + "6295", + "6299", + "6301", + "6303", + "63035", + "63036", + "6304", + "6307", + "6309", + "6310", + "6311", + "6314", + "6317", + "6318", + "6323", + "6324", + "6326", + "6327", + "6328", + "6329", + "633", + "6330", + "6331", + "6334", + "6335", + "6336", + "6337", + "6338", + "6339", + "634", + "6340", + "6342", + "6346", + "6347", + "6348", + "6351", + "6354", + "6355", + "6356", + "6357", + "6359", + "636", + "6360", + "6361", + "6362", + "6363", + "6364", + "6366", + "6367", + "6368", + "6369", + "637", + "6370", + "6372", + "6373", + "6374", + "6375", + "6376", + "638", + "6382", + "6385", + "6386", + "6387", + "63874", + "6388", + "6389", + "63891", + "63893", + "63894", + "63895", + "6390", + "63906", + "6391", + "63915", + "63916", + "6392", + "63922", + "63923", + "63924", + "63925", + "63928", + "63932", + "6396", + "63967", + "6397", + "63971", + "63976", + "63979", + "6399", + "640", + "6400", + "6401", + "6402", + "6403", + "6404", + "6406", + "64065", + "64072", + "64081", + "64083", + "64087", + "64089", + "64093", + "64094", + "641", + "64108", + "64110", + "64111", + "64112", + "64114", + "64115", + "64116", + "64121", + "64127", + "64129", + "64131", + "64132", + "64135", + "64137", + "64149", + "64151", + "6416", + "64167", + "64170", + "641700", + "64175", + "6418", + "642", + "6421", + "64215", + "64218", + "6422", + "64220", + "64223", + "64225", + "642273", + "6424", + "64240", + "64241", + "6425", + "6427", + "64282", + "64283", + "64285", + "643", + "64320", + "64321", + "64324", + "64326", + "64327", + "64328", + "64332", + "643418", + "64375", + "644", + "6440", + "64400", + "6441", + "64410", + "64419", + "64421", + "64422", + "64431", + "6444", + "6446", + "6448", + "644815", + "6449", + "6451", + "6452", + "6453", + "64581", + "64600", + "64601", + "6464", + "64682", + "64689", + "6469", + "6470", + "64710", + "64714", + "6472", + "6473", + "64756", + "6476", + "64762", + "6477", + "64771", + "64772", + "6478", + "64780", + "64785", + "64786", + "64787", + "64793", + "64798", + "648", + "6480", + "64801", + "64805", + "6482", + "6483", + "64834", + "64837", + "64839", + "6484", + "64840", + "64844", + "64848", + "64853", + "64855", + "64856", + "64857", + "64858", + "64859", + "6487", + "649", + "6490", + "6491", + "64919", + "6492", + "64924", + "64926", + "6494", + "64946", + "6495", + "6496", + "6497", + "6499", + "650", + "6500", + "65009", + "65010", + "65018", + "6502", + "6504", + "6505", + "65055", + "6506", + "65062", + "6507", + "65078", + "6508", + "65082", + "6509", + "6510", + "65109", + "6511", + "6512", + "65123", + "65125", + "6513", + "6515", + "6518", + "6519", + "652", + "6520", + "6521", + "65217", + "6523", + "6524", + "65243", + "65250", + "65258", + "65266", + "65267", + "65268", + "6528", + "6529", + "652991", + "653", + "6531", + "653145", + "6532", + "6533", + "653361", + "653464", + "6535", + "6536", + "6538", + "653808", + "6539", + "654", + "6540", + "6541", + "6546", + "6548", + "655", + "6550", + "6555", + "6556", + "6557", + "6558", + "6559", + "6564", + "6565", + "6566", + "6567", + "657", + "6570", + "6571", + "6572", + "6573", + "6576", + "6578", + "658", + "6580", + "6581", + "6582", + "6583", + "6584", + "6585", + "6586", + "6588", + "659", + "6590", + "6591", + "6595", + "6597", + "6598", + "65981", + "65989", + "6599", + "65992", + "65998", + "660", + "66004", + "6601", + "6602", + "6603", + "6604", + "6605", + "6606", + "6608", + "6609", + "661", + "6611", + "6612", + "6613", + "6616", + "662", + "6622", + "6624", + "6625", + "6628", + "6638", + "664", + "6640", + "6642", + "6643", + "6646", + "6647", + "6648", + "665", + "6651", + "6652", + "6653", + "6654", + "6655", + "6657", + "6658", + "6659", + "6660", + "6662", + "6663", + "6664", + "6667", + "667", + "6672", + "6678", + "668", + "6683", + "6688", + "6689", + "6690", + "6693", + "6695", + "6696", + "6707", + "6708", + "671", + "6710", + "6711", + "6717", + "6718", + "672", + "6720", + "6721", + "6722", + "6725", + "6727", + "6728", + "6729", + "673", + "6730", + "6731", + "6732", + "6734", + "6736", + "6737", + "6738", + "6741", + "6742", + "6745", + "6746", + "6748", + "6749", + "675", + "6755", + "6757", + "6767", + "6768", + "677", + "6770", + "6772", + "6773", + "6774", + "6775", + "6776", + "6777", + "6778", + "678", + "6781", + "6785", + "6786", + "6788", + "6789", + "6790", + "6792", + "6793", + "6794", + "6795", + "6804", + "6809", + "6810", + "6811", + "6812", + "6813", + "6814", + "6815", + "682", + "6820", + "6821", + "6829", + "683", + "6832", + "6833", + "6836", + "6839", + "684", + "6840", + "6843", + "6844", + "6845", + "6847", + "685", + "6850", + "6853", + "6857", + "6860", + "6865", + "6868", + "6869", + "687", + "6870", + "6871", + "6872", + "6873", + "6879", + "6880", + "6882", + "6885", + "6886", + "6887", + "689", + "6890", + "6891", + "6892", + "6895", + "6897", + "6898", + "6899", + "6900", + "6901", + "6902", + "6903", + "6904", + "6905", + "6907", + "6908", + "6909", + "6910", + "6913", + "692094", + "6925", + "6926", + "6927", + "6928", + "6929", + "6932", + "6934", + "6938", + "694", + "6942", + "6945", + "6948", + "6949", + "695", + "6950", + "6988", + "699", + "6992", + "6993", + "6997", + "6999", + "70", + "7005", + "7006", + "7009", + "701", + "7010", + "7011", + "7013", + "7014", + "7015", + "7016", + "7018", + "7021", + "7023", + "7025", + "7026", + "7027", + "7030", + "7035", + "7036", + "7038", + "7039", + "7040", + "7041", + "7042", + "7043", + "7045", + "7046", + "7048", + "7049", + "7050", + "7051", + "7052", + "7053", + "7054", + "7056", + "7057", + "7058", + "706", + "7060", + "7064", + "7066", + "7067", + "7068", + "7070", + "7074", + "7076", + "7078", + "708", + "7080", + "7082", + "7083", + "7084", + "7086", + "7092", + "7094", + "7095", + "7096", + "7097", + "7098", + "7099", + "71", + "710", + "7100", + "7105", + "7107", + "7110", + "7113", + "7114", + "712", + "7122", + "7124", + "7125", + "7126", + "7128", + "7130", + "7132", + "7133", + "7134", + "7136", + "7137", + "7138", + "7139", + "714", + "7140", + "7141", + "7148", + "715", + "7150", + "7153", + "7155", + "7156", + "7157", + "7158", + "716", + "7163", + "7164", + "7168", + "7169", + "717", + "7170", + "7173", + "7174", + "7175", + "7177", + "718", + "7184", + "7185", + "7186", + "7187", + "7188", + "719", + "72", + "720", + "7201", + "7203", + "7204", + "721", + "722", + "7226", + "7227", + "7248", + "7249", + "725", + "7252", + "7253", + "7259", + "726", + "7260", + "7264", + "7266", + "7267", + "727", + "7273", + "7274", + "7275", + "7276", + "727800", + "727857", + "727897", + "727910", + "728", + "728294", + "7283", + "728358", + "728369", + "728458", + "7286", + "7287", + "7289", + "7290", + "7291", + "7292", + "729238", + "7294", + "729440", + "7295", + "7297", + "7298", + "729873", + "7299", + "729920", + "7301", + "730249", + "7305", + "731", + "7314", + "7317", + "7319", + "732", + "7320", + "7321", + "7322", + "7323", + "7324", + "7325", + "7326", + "7327", + "7328", + "7329", + "7332", + "7334", + "7335", + "7336", + "7337", + "7341", + "7343", + "7345", + "7349", + "735", + "7352", + "7353", + "7355", + "7358", + "7369", + "7372", + "7373", + "7374", + "7375", + "7376", + "738", + "7389", + "7390", + "7391", + "7392", + "7398", + "7399", + "7401", + "7402", + "7405", + "7408", + "7409", + "7410", + "7411", + "7412", + "7414", + "7415", + "7416", + "7424", + "7428", + "7429", + "7430", + "7431", + "7432", + "7436", + "7439", + "7442", + "7443", + "7444", + "7448", + "745", + "7450", + "7453", + "7454", + "7456", + "7458", + "7461", + "7462", + "7465", + "7466", + "7468", + "7469", + "7471", + "7472", + "7473", + "7474", + "7476", + "7477", + "7480", + "7481", + "7482", + "7484", + "7485", + "7486", + "7490", + "7494", + "7498", + "7507", + "7508", + "7512", + "7514", + "7516", + "7517", + "7518", + "752", + "7520", + "7525", + "7528", + "7529", + "753", + "7531", + "7532", + "7533", + "7534", + "7535", + "7538", + "754", + "7545", + "7546", + "7547", + "755", + "7555", + "7564", + "760", + "7681", + "768211", + "7694", + "7703", + "7704", + "7706", + "7707", + "7716", + "7726", + "773", + "7737", + "774", + "775", + "7756", + "776", + "778", + "7780", + "7781", + "7782", + "7784", + "7786", + "779", + "7791", + "7798", + "780", + "7804", + "7805", + "781", + "7812", + "7813", + "782", + "7827", + "783", + "7837", + "7840", + "7841", + "7844", + "7846", + "7849", + "7855", + "7857", + "7862", + "7867", + "7869", + "7871", + "7874", + "7879", + "788", + "7881", + "78986", + "78989", + "79001", + "79003", + "79004", + "79005", + "79008", + "79016", + "79031", + "79035", + "79036", + "79037", + "79039", + "79053", + "79058", + "79065", + "79073", + "79075", + "79087", + "79092", + "79094", + "79102", + "79109", + "7913", + "79132", + "79139", + "79140", + "79142", + "79143", + "79147", + "79155", + "79156", + "79158", + "7917", + "79184", + "79187", + "79188", + "7922", + "79228", + "7923", + "79258", + "7940", + "7941", + "79415", + "7942", + "79441", + "79443", + "79444", + "79541", + "79567", + "79568", + "7957", + "79576", + "79577", + "79583", + "79585", + "79589", + "79591", + "79594", + "79596", + "79598", + "796", + "79600", + "79602", + "79608", + "79618", + "79621", + "79625", + "79628", + "79631", + "79633", + "79639", + "79644", + "79649", + "79650", + "79651", + "79654", + "79658", + "79659", + "79660", + "79674", + "79677", + "79679", + "79689", + "79693", + "79699", + "79705", + "79709", + "79711", + "79714", + "79718", + "79719", + "79722", + "79728", + "79733", + "79734", + "79735", + "79738", + "79752", + "79753", + "79755", + "79759", + "79768", + "79770", + "7978", + "79783", + "79784", + "79791", + "79792", + "79796", + "79798", + "79803", + "79805", + "79809", + "79812", + "79813", + "79822", + "79823", + "79827", + "79834", + "79837", + "7984", + "79840", + "79845", + "79848", + "79866", + "79867", + "79869", + "79871", + "79874", + "79875", + "79876", + "79884", + "79888", + "79890", + "79892", + "79899", + "79901", + "79902", + "79912", + "79913", + "79915", + "79918", + "79924", + "7993", + "79931", + "79932", + "7994", + "79944", + "79947", + "79953", + "79955", + "79956", + "79959", + "79971", + "79977", + "79982", + "79983", + "79987", + "79989", + "79991", + "79998", + "8000", + "80000", + "80005", + "8001", + "80011", + "80020", + "80024", + "80025", + "80036", + "80055", + "80067", + "80119", + "8013", + "80131", + "80139", + "80144", + "80149", + "80152", + "80153", + "80168", + "80169", + "80174", + "80176", + "80179", + "80183", + "80184", + "80185", + "80196", + "80199", + "80204", + "80206", + "80207", + "80208", + "8021", + "80216", + "80218", + "8022", + "80231", + "80232", + "80235", + "80243", + "80263", + "80267", + "80271", + "80279", + "8028", + "8029", + "80304", + "8031", + "80311", + "80314", + "80317", + "80324", + "80326", + "80331", + "80339", + "80342", + "80346", + "80349", + "80351", + "8036", + "8038", + "80380", + "80381", + "8048", + "8061", + "8065", + "80700", + "80725", + "80728", + "80736", + "8074", + "8076", + "80762", + "80765", + "80772", + "80776", + "8078", + "80781", + "808", + "80816", + "80821", + "80824", + "80829", + "80834", + "8085", + "80856", + "8086", + "8087", + "8091", + "8092", + "81", + "8100", + "81031", + "81035", + "811", + "8120", + "81285", + "814", + "8140", + "8148", + "81490", + "81494", + "815", + "81501", + "81502", + "81537", + "81539", + "81542", + "81545", + "81554", + "81555", + "81559", + "81562", + "81565", + "81570", + "81573", + "816", + "81603", + "81607", + "81608", + "81609", + "81610", + "81614", + "81618", + "81619", + "81620", + "81622", + "81631", + "81671", + "81693", + "817", + "81704", + "8174", + "81790", + "81792", + "81794", + "818", + "81832", + "81839", + "81844", + "81847", + "81857", + "81858", + "81876", + "81887", + "8189", + "819", + "81926", + "81929", + "81930", + "820", + "8200", + "8202", + "8204", + "821", + "8214", + "8216", + "822", + "8220", + "823", + "8239", + "824", + "8241", + "8242", + "8243", + "825", + "8260", + "8263", + "8266", + "8270", + "8288", + "8289", + "829", + "8291", + "8294", + "8295", + "8301", + "8302", + "831", + "8312", + "8313", + "8314", + "8317", + "8318", + "832", + "8320", + "8321", + "8322", + "8323", + "8324", + "833", + "83394", + "834", + "83452", + "83460", + "83475", + "83479", + "83480", + "83481", + "83483", + "8350", + "8351", + "8352", + "8353", + "83538", + "8354", + "83540", + "83547", + "83548", + "8355", + "83550", + "8356", + "8357", + "8358", + "8359", + "83590", + "83597", + "836", + "8360", + "83605", + "8361", + "8362", + "8363", + "83637", + "8364", + "8366", + "83660", + "83666", + "83667", + "8367", + "8368", + "83695", + "837", + "8370", + "83700", + "83706", + "83715", + "8372", + "83734", + "83743", + "83752", + "83786", + "8379", + "83844", + "83852", + "83860", + "83862", + "83871", + "83872", + "83874", + "83879", + "83891", + "83892", + "839", + "83903", + "83930", + "83932", + "83933", + "83959", + "8398", + "83987", + "8399", + "83990", + "840", + "8402", + "84033", + "84034", + "8405", + "84057", + "84058", + "84059", + "84061", + "84067", + "84068", + "84078", + "84079", + "8408", + "84080", + "84083", + "84084", + "8409", + "841", + "84100", + "84101", + "8412", + "84126", + "84131", + "84133", + "84142", + "84144", + "84152", + "84153", + "84159", + "84162", + "84163", + "84164", + "84166", + "84168", + "8417", + "84172", + "84174", + "84188", + "84189", + "84193", + "84196", + "842", + "84219", + "84230", + "84231", + "84243", + "8425", + "84250", + "84258", + "84260", + "84268", + "84277", + "8428", + "84282", + "84286", + "84295", + "84296", + "84299", + "843", + "84301", + "84302", + "84305", + "8431", + "84314", + "84317", + "84329", + "84335", + "84340", + "8435", + "8436", + "8437", + "84376", + "8438", + "844", + "8440", + "8443", + "84433", + "8444", + "84444", + "84446", + "84447", + "8445", + "84456", + "84458", + "84464", + "84466", + "8448", + "845", + "8450", + "84501", + "8451", + "84515", + "8452", + "84520", + "84522", + "84524", + "8453", + "8454", + "84557", + "84570", + "84572", + "8459", + "846", + "8460", + "84619", + "8462", + "84627", + "84628", + "84630", + "84631", + "84632", + "84640", + "84643", + "84649", + "84660", + "84661", + "84665", + "84667", + "84668", + "84675", + "84679", + "8468", + "847", + "84701", + "84706", + "8471", + "84720", + "84722", + "84725", + "84727", + "8473", + "84747", + "84749", + "8476", + "8477", + "84790", + "8480", + "84803", + "8481", + "84817", + "84818", + "8482", + "84823", + "8483", + "84830", + "84833", + "84842", + "84851", + "84861", + "84868", + "84869", + "8487", + "84870", + "84875", + "84876", + "84879", + "84885", + "84888", + "84889", + "84894", + "84895", + "84896", + "8490", + "84905", + "84910", + "84913", + "84919", + "8493", + "84930", + "84932", + "84934", + "84936", + "84937", + "84938", + "84942", + "84946", + "84947", + "84952", + "84958", + "84962", + "84967", + "84971", + "84976", + "84978", + "84984", + "84985", + "84986", + "84987", + "8499", + "84992", + "8500", + "8501", + "8502", + "8503", + "8504", + "8506", + "8507", + "8510", + "8514", + "8516", + "8517", + "8518", + "8520", + "8525", + "8526", + "8527", + "8529", + "85301", + "85302", + "8531", + "85358", + "8536", + "85360", + "85363", + "85364", + "85366", + "85369", + "85377", + "85378", + "85397", + "85407", + "85409", + "85413", + "85415", + "8542", + "85439", + "85440", + "85446", + "85453", + "85456", + "85459", + "8546", + "85462", + "85464", + "85465", + "8547", + "85477", + "85478", + "8548", + "85480", + "8549", + "8550", + "8553", + "8554", + "8555", + "8557", + "8558", + "8560", + "8562", + "8565", + "8566", + "8567", + "857", + "8570", + "8572", + "8573", + "8576", + "8578", + "858", + "859", + "860", + "8600", + "8601", + "8604", + "8605", + "8607", + "8609", + "861", + "8611", + "8613", + "8621", + "8625", + "8626", + "8629", + "863", + "8631", + "8636", + "8638", + "864", + "8642", + "8643", + "8644", + "8646", + "8647", + "865", + "8650", + "8651", + "8658", + "8659", + "8660", + "8661", + "8662", + "8663", + "8664", + "8665", + "8666", + "8667", + "8671", + "8673", + "8674", + "8675", + "8676", + "8677", + "8678", + "8682", + "8692", + "8694", + "8697", + "8698", + "87", + "8701", + "871", + "8710", + "8711", + "8717", + "87178", + "8720", + "8721", + "8722", + "8723", + "8724", + "8725", + "8726", + "8728", + "8729", + "8733", + "8736", + "8737", + "8738", + "8739", + "8740", + "8741", + "8742", + "8743", + "8744", + "875", + "8751", + "8754", + "8760", + "8761", + "8764", + "8767", + "8772", + "8773", + "8774", + "8775", + "8776", + "8780", + "8784", + "8788", + "8792", + "8795", + "8796", + "8797", + "8799", + "88", + "8800", + "8807", + "8808", + "8809", + "8812", + "8813", + "8815", + "8817", + "8818", + "8819", + "8820", + "8821", + "8823", + "8826", + "8828", + "8829", + "8831", + "8832", + "8835", + "8837", + "8838", + "8840", + "8841", + "8844", + "88455", + "8850", + "8851", + "8854", + "8859", + "8862", + "8867", + "8871", + "8874", + "8877", + "8878", + "8881", + "8882", + "8883", + "8884", + "8887", + "8888", + "889", + "8890", + "8891", + "8892", + "8893", + "8895", + "8896", + "8897", + "8898", + "89", + "8900", + "8904", + "8905", + "8907", + "891", + "8910", + "8911", + "8912", + "8913", + "8915", + "892", + "8924", + "8925", + "8928", + "8929", + "8930", + "8934", + "8936", + "8938", + "894", + "8941", + "8942", + "8943", + "8945", + "896", + "8968", + "8974", + "8975", + "8976", + "89780", + "89781", + "89790", + "89795", + "89801", + "89839", + "89846", + "8985", + "8986", + "89866", + "8987", + "89870", + "89872", + "8988", + "89884", + "8989", + "89890", + "89891", + "899", + "8993", + "8994", + "89941", + "8995", + "89958", + "8996", + "8997", + "89970", + "90", + "900", + "90007", + "9002", + "90025", + "90070", + "90102", + "90121", + "90139", + "90161", + "9019", + "9021", + "9024", + "9025", + "9026", + "90268", + "90293", + "9031", + "9033", + "9034", + "90355", + "90378", + "90379", + "904", + "90410", + "90416", + "90417", + "90427", + "9043", + "9044", + "90441", + "90459", + "9049", + "905", + "9051", + "90523", + "9053", + "9055", + "90550", + "9056", + "90580", + "90627", + "90678", + "9071", + "9076", + "9077", + "908", + "90809", + "90850", + "90861", + "90865", + "9087", + "9088", + "9091", + "9092", + "90933", + "9094", + "90952", + "9096", + "9097", + "9098", + "9099", + "90993", + "91", + "9100", + "91010", + "91039", + "91056", + "9107", + "9108", + "9110", + "9111", + "9112", + "9113", + "91137", + "91147", + "91179", + "912", + "9125", + "9126", + "91272", + "9131", + "91319", + "9134", + "9138", + "9139", + "91392", + "914", + "9140", + "91404", + "9141", + "91445", + "91452", + "91461", + "9147", + "9148", + "9149", + "915", + "9150", + "9152", + "9154", + "91543", + "9156", + "91574", + "9158", + "916", + "9162", + "91647", + "91662", + "91663", + "917", + "9170", + "9172", + "9173", + "9175", + "91752", + "91754", + "91782", + "9179", + "9180", + "91801", + "91807", + "9181", + "9183", + "9184", + "9185", + "91851", + "91862", + "9187", + "91875", + "9189", + "919", + "91947", + "91949", + "92", + "920", + "9200", + "92002", + "9202", + "9203", + "9204", + "9212", + "9214", + "92140", + "9215", + "92154", + "92162", + "9217", + "9218", + "922", + "9223", + "92241", + "92255", + "9227", + "923", + "92305", + "9231", + "92335", + "92344", + "92345", + "92359", + "92369", + "92399", + "9241", + "9244", + "9247", + "925", + "9252", + "9253", + "9255", + "9256", + "92565", + "92579", + "9258", + "92595", + "926", + "9260", + "9261", + "92610", + "9266", + "92667", + "92675", + "9270", + "92714", + "92747", + "9275", + "9276", + "928", + "92815", + "9283", + "9289", + "9290", + "92912", + "9294", + "92949", + "92960", + "93", + "930", + "9306", + "931", + "9314", + "93145", + "93183", + "9319", + "9320", + "9321", + "93210", + "93233", + "9325", + "933", + "93323", + "9333", + "9338", + "93380", + "9341", + "9342", + "93426", + "9343", + "9344", + "9349", + "9350", + "9353", + "9354", + "93587", + "93589", + "9361", + "93611", + "9362", + "93627", + "9363", + "93649", + "9365", + "93650", + "93663", + "9367", + "9368", + "9370", + "9371", + "9372", + "9373", + "9377", + "9378", + "9381", + "9382", + "9388", + "939", + "9390", + "9392", + "9397", + "93974", + "93986", + "94", + "940", + "9400", + "94005", + "9401", + "9403", + "9404", + "94056", + "9409", + "941", + "94103", + "9411", + "94121", + "9413", + "94134", + "9414", + "9421", + "9423", + "9425", + "9427", + "943", + "9436", + "9437", + "944", + "9442", + "9446", + "9447", + "945", + "9450", + "9451", + "9453", + "9454", + "9463", + "9464", + "9468", + "9469", + "947", + "9470", + "9474", + "9475", + "948", + "9482", + "9487", + "9488", + "949", + "9491", + "9493", + "9495", + "9496", + "9497", + "9499", + "950", + "9507", + "9508", + "9509", + "9510", + "9512", + "9517", + "9518", + "952", + "9520", + "9522", + "9526", + "9527", + "9528", + "9529", + "953", + "9530", + "9531", + "9532", + "9533", + "9545", + "9547", + "9554", + "9555", + "9559", + "9562", + "9564", + "9568", + "9569", + "9570", + "9572", + "9573", + "9575", + "9577", + "9578", + "958", + "9581", + "9585", + "9587", + "9588", + "959", + "960", + "9600", + "9601", + "9604", + "9607", + "961", + "9611", + "9617", + "9618", + "9619", + "9627", + "9628", + "9631", + "9632", + "9636", + "9637", + "9638", + "9639", + "9641", + "9645", + "96459", + "9647", + "9648", + "9649", + "965", + "9652", + "9653", + "9655", + "9659", + "966", + "9662", + "9663", + "9666", + "967", + "9670", + "9672", + "9675", + "9679", + "9681", + "9683", + "9684", + "9688", + "9690", + "9692", + "9693", + "9694", + "9695", + "9696", + "9697", + "9698", + "9699", + "970", + "9700", + "9702", + "9705", + "9706", + "9709", + "9711", + "9712", + "9719", + "972", + "9722", + "9723", + "973", + "9730", + "9732", + "9734", + "9736", + "9737", + "9738", + "9739", + "974", + "9742", + "9743", + "9747", + "9748", + "975", + "9750", + "9757", + "9759", + "9765", + "977", + "9770", + "9772", + "9775", + "9776", + "9777", + "9779", + "9780", + "9782", + "9784", + "9786", + "9788", + "9791", + "9793", + "9798", + "9804", + "9807", + "9812", + "9817", + "9821", + "9824", + "9826", + "9827", + "9828", + "983", + "9830", + "9833", + "9837", + "9839", + "9841", + "9842", + "9843", + "9844", + "9847", + "9853", + "9854", + "9856", + "9863", + "9865", + "9867", + "9868", + "9869", + "987", + "9870", + "9871", + "9873", + "9874", + "9885", + "989", + "9892", + "9894", + "9895", + "9896", + "9897", + "9898", + "990", + "9901", + "9903", + "9905", + "9907", + "9908", + "9909", + "991", + "9912", + "9915", + "9918", + "9919", + "9921", + "9926", + "9927", + "9928", + "993", + "9935", + "9936", + "9938", + "9939", + "994", + "9940", + "9943", + "9948", + "9949", + "995", + "9950", + "9958", + "996", + "9961", + "9965", + "9966", + "9968", + "997", + "9971", + "9972", + "9978", + "9982", + "9984", + "9985", + "999", + "9990", + "9992", + "9993", + "9994" + ] + }, + "mdl_weights": [ + -0.40974890822952326, + 0.17140563591253577, + -0.028712726593787076, + -0.551255163290246, + 0.44118734084060945, + -0.0073917571751650965, + -0.5034934821523909, + 0.18853049626444415, + 0.08927631500281458, + 0.2448407525037248, + -0.32129550949187735, + -0.4355696553729841, + 0.16745416459604748, + -0.49281132899069013, + 0.8334380881535917, + -0.13985315994101002, + 0.36068686100371405, + 0.4595927810035052, + 0.04772227371865266, + 0.0344982339328274, + 0.5539602108599836, + -0.43256035251745406, + -0.8604237666475991, + 0.04126582316736508, + 0.6110718410408569, + 0.6948933715399461, + -0.07985118886126825, + -0.7125101241344188, + 0.33574889441246614, + -0.3977473960593023, + 0.020069410964115467, + -0.3702996094454082, + 0.7464692788089876, + -0.17741049121281466, + 0.13577257351278857, + 0.12451549909307413, + 0.5767828934752469, + 0.5225507745861501, + 0.7168525122034393, + -0.015948987922104273, + -1.1169200850462169, + -0.2587618040793161, + 0.4879648775492885, + 0.16969534351864227, + -0.622644126290052, + 0.1000940961075535, + 0.11369681945634086, + 0.1419191236577537, + -0.687865620939061, + -0.958794409134898, + 0.26319366426300306, + -0.49712413058986005, + -0.6777375820325517, + 0.5316441962986669, + 0.7195041422296939, + 0.0029442630328307823, + 0.39895607530487304, + -0.047040523167856466, + 1.6669700815512662, + -0.44538945199059476, + 0.7139310130820689, + 0.24175448395713312, + 0.2045537562781361, + 0.39080475993036334, + -0.8447874756449616, + -0.7566732582140062, + 0.013150783811922577, + 0.1475073779323312, + 0.8516229665899708, + -0.20907357143177624, + -0.33617380292028015, + -0.2368258321280084, + 0.773999482067427, + -0.19401724166429896, + 0.7872495023057526, + 0.1931573819929971, + -0.9878618633121313, + -0.05529024986294437, + 0.14870459780140954, + -0.9931867052762354, + 0.41767630805358125, + 0.555713288452574, + 0.2800708243897791, + 0.11409601839171918, + 0.22209296110989313, + 0.6540489987750122, + -0.4897940417657353, + -0.4078308687663709, + 0.8586878694694963, + -0.22898057445402645, + 0.08730881228386687, + 0.5384837301200135, + 0.24931730826597664, + -0.10257251795506331, + 0.3397334705041261, + 0.9747869782219761, + 0.2630189036422857, + -0.34043346012870196, + -0.07831752505065508, + 0.31561871477226544, + 0.6070531677696924, + 0.6425019637485113, + 0.10657176527113148, + -1.0499173844769112, + 0.03104393205751529, + -0.29956034647603813, + 0.33727655983254223, + -0.5762852062418732, + -0.11880559234837831, + -0.27813551110857754, + 0.12113010643935232, + -0.7031773673822608, + 0.34048544706167955, + 0.7985667326763821, + 0.547005948861555, + 0.20674514207267305, + 0.11627065733812275, + 0.5011926231335044, + -0.2839225642630314, + -0.5453924556480606, + 0.3666144144325821, + 0.7873505104925559, + -0.7671247096762867, + -0.5272081909373657, + 0.7907661290499178, + 0.3805505854475858, + 0.14757217754510749, + -0.20628898809515234, + -0.7452293890919862, + 0.5253779101250405, + 0.5507101261006995, + 0.7661340787821075, + -0.010626245518710348, + 0.25275350538361585, + 0.4473164722776053, + 0.1597053639135459, + 1.0123611230283143, + -0.06924239025838028, + 0.26891366623885093, + 0.10336961339576642, + 0.6581105246478403, + 0.3223206543537814, + 0.27210079476142696, + -0.43207873307243794, + -0.24442280978393088, + -0.5545517038561913, + -0.46638220784951523, + 0.6000143806858362, + 0.07130666854955192, + -0.8352916742885057, + -0.23357969115439065, + -0.7925180371884148, + -0.7683704707706601, + -0.46492070401724944, + -0.7524715706564226, + 0.8949797851976855, + 0.3330378861291927, + 0.5341778191437017, + 0.513270485420194, + -0.5957767612715203, + -0.9895965065368361, + -0.31688442491703334, + 0.21611204888352353, + 0.09405332811611236, + 1.0287222872847135, + 0.026963388378835433, + 0.1847048055428831, + 0.415678751335504, + -0.15339812321241386, + -0.1220771955970433, + -0.4221928034131257, + -0.738194218150542, + -0.565861965186395, + 0.6012774795309646, + 0.3252729814124914, + -0.21623159980524104, + -0.4053220403908602, + 0.5184906280800851, + 0.13974274229975664, + 0.16652122101481398, + -0.29613170991448373, + -0.04070133648123084, + -0.3732038855775547, + -0.2448089073008215, + 0.2119229225487704, + 0.812097900047621, + -0.3467983059428072, + -0.24860266884258025, + 0.38190094945994646, + 0.8289866407330051, + -0.32902257652972866, + -0.6068103419132164, + 0.7459966121591263, + -0.46419681410899594, + 1.2594812518364291, + 1.0728781605353186, + 0.10722519780185469, + 0.45878662041627094, + 0.35313796427033656, + 1.117196392751122, + -0.0346328251362314, + 0.09258866015153357, + 0.6139023313135267, + 0.6823121689596425, + -0.1942750986562482, + -0.39711543788394316, + 0.5822154950444165, + -0.08659135443612424, + -0.06657544007182219, + -0.6412160673124058, + -0.030387511279176962, + -0.40317580648899626, + -0.48808801474618074, + 0.3477005267078347, + -0.2555872545790517, + -0.8444756368432202, + -0.32207196389358345, + -0.14239923853788725, + -0.7597418752091147, + 0.5356417147933477, + 0.04243054256645042, + -1.4106186756310712, + -0.4303399374481994, + 0.640106887994383, + 0.8182126651055015, + -0.25695209907279687, + 0.6901279336311855, + -0.53745366663089, + -0.26216046404155324, + -0.14899400970830157, + 0.1850557111931068, + 0.514231209036583, + -0.3013186417209395, + -0.478864099529505, + 0.07734361278416682, + -0.6526956506854574, + -0.572836391344988, + 0.8837394416291936, + 0.1392526398011927, + 0.4169610350343622, + -0.2545876377303988, + -1.1873738584725475, + -0.7954433401549309, + 0.6540023168628706, + -0.13542573955922124, + -0.6567356476042863, + -0.222270547198141, + -0.39606861710110874, + -0.7167485861375972, + -0.10705560943814933, + -0.12207098730022475, + -0.27067783146918767, + 0.7861735639776646, + 0.0418223491246603, + 0.554681102160699, + -0.09570690877244413, + 0.4053247356825463, + 0.37364449185517346, + 0.4974388584395023, + 0.02003632655330035, + -0.3098534748973716, + -0.06321572334820957, + 0.25730022636782707, + 0.2886050964982024, + -0.3553069955560026, + -0.045511318490451216, + 0.42861315630434, + 0.18543765484289332, + 0.47677403511968625, + -0.14900794812265852, + -0.32032000781781345, + -0.18826335174120057, + 0.15536079171233425, + 0.7861290041961516, + 0.43348761373978073, + 0.03315189603587046, + 0.337050101054236, + 0.33322192039348714, + -0.0910352452695743, + -0.46956214320366413, + 0.1438008571289593, + 0.13300226110642502, + -0.4898188911839961, + 0.27559469951379656, + 0.1799864701155897, + -0.5646063916339259, + -0.875478711815544, + -0.4238713876203247, + 0.6398119903426742, + -0.22878187036736353, + 0.3070973926164955, + -1.7422647550194346, + 0.3101327500753131, + 0.47713763999805187, + -0.9864986505084183, + -0.32795669870735156, + -0.16072052018399238, + 0.2716075793736668, + 0.7425845759780456, + -0.061176314058412125, + -0.5750075665046009, + -0.1537906524050307, + 1.3142864408220762, + 0.7461543886413103, + 0.5901997402165644, + -0.30877621592083176, + 0.6102735252243082, + -0.22210136882747844, + -0.7520501726690708, + 0.02950793767957059, + -0.4266877283283774, + 0.5130321097534934, + 0.20170943169262798, + 0.31681413275548037, + 0.5713855811956161, + -0.5513431676105531, + 0.31459595366468945, + -0.13955251951390135, + 0.7357479829514123, + 0.2660145870964416, + -1.3552023491946996, + -0.7141802405432847, + 0.3975076078393889, + -0.27579027663487954, + -0.14842731725486707, + 0.8244908312483503, + -0.21320455151319934, + 0.5048153154328926, + -0.39512992313093676, + -0.15886209452287176, + 0.5976899379980569, + 0.17594445775675335, + 0.3867764274426927, + 0.4039739712293422, + -0.6633766607550604, + 0.43902485714570205, + 0.015711743770039727, + 0.5536515539117463, + 0.47876813510899396, + 0.470818092445239, + -0.15634833164797712, + 0.34300504554475636, + -0.4463808412686188, + -0.0010462126492141663, + 0.4159857719921493, + 0.6687485904456819, + -0.09707717452073814, + -0.2733684759935457, + 0.1268555331049811, + -0.26466964360597384, + 0.21783258397182587, + -0.28765497988919525, + 0.052765408700275074, + 0.012151615143924297, + -0.1855906313486087, + -0.6616881465935096, + 0.4286071909478285, + -1.0501499418425166, + -0.6912115361301294, + -0.19732186896395418, + -1.2677624540118546, + 0.39980490153751774, + 0.2640187028967846, + 0.39067240045813273, + 0.31513362560471725, + 0.6448515576478672, + 0.4739711681639505, + -0.33261403920359756, + -1.0393130758858582, + 0.03700541461155964, + -0.19975405394408507, + -0.7053892891802066, + 0.37101813649425985, + -0.2876215939247426, + -0.37045119157544865, + -1.014849193155769, + -0.17481602911139738, + -0.41819541474950683, + -0.7426675073086793, + -0.13852149042293435, + -0.9190370842025315, + -0.6088178106175195, + 0.5644772156189223, + -0.48098353365568136, + 0.4100672957384969, + -0.9355120901611114, + 0.13673996688323897, + 0.11226187006875545, + 0.548366000319542, + 0.2135647280676475, + -0.35895080803147134, + 0.7677202178345031, + 0.3464767020897594, + -0.7143788941332003, + 0.5796928875518547, + -0.23197032075191182, + 0.2081376919294694, + 0.20419503999919492, + -0.13406336257134668, + -0.496052728492474, + 0.10692674309870756, + -0.39964772565700485, + -1.0308705412182702, + 1.1913976438980616, + -0.013126063651148403, + -0.298092848633171, + 1.1845953798773625, + -0.0067990566788923845, + -0.14426065983740569, + 1.224065935021625, + -0.10021321442970396, + -0.08602539371889728, + 0.6605530247930279, + 0.22743127179856576, + 0.19820077800665611, + 0.5071002988605254, + -0.18393222545568544, + 0.6307829302296699, + 1.0225362530329183, + -0.0820340429297696, + -0.04037365322401795, + 0.22723021791924722, + -0.35571850934266785, + -0.395448046718023, + -0.5646162940820937, + 0.3332643676359977, + -0.4332229039153577, + -0.06702424259602793, + 0.004153617323128801, + -0.42165802518858764, + -0.533432533490429, + 0.2586636495245441, + -0.23887849523212265, + -0.6001050935533834, + 0.24152585617136643, + 0.140083603290785, + -0.09267896645686141, + -0.5002889872879771, + -0.5265382020763298, + 0.7177055693635562, + 0.03906284755669876, + 0.35278353440192556, + -0.8801070078516621, + 0.6428151404072837, + -0.10380280006872783, + -0.7077634471318612, + -0.7017930186042022, + 0.12651287920273818, + 0.478296229374363, + 0.05315849708048828, + -0.1625367368149969, + 0.4588021150796565, + -0.45588144638110234, + -0.4504915081662148, + 0.3820148186668081, + 0.12729041024968443, + 1.145025176856114, + -0.23358667963853677, + -0.6044119302727781, + -0.5986866496286826, + 1.200319746539704, + 1.1090726405592541, + -0.011677694504151057, + 0.23744884383829157, + 0.35222208996406623, + -0.2001536876251402, + -0.06190688338408558, + 0.07835285574612949, + -0.09853002250904208, + -0.6076346497274183, + -0.48561237618846115, + 0.7483098427268359, + -0.5909601612299199, + -0.6074725392047708, + -0.7642200295651672, + -0.08244324496658612, + -0.05571198816069828, + -0.07780142141240656, + 0.20895249134799496, + -0.2638960662548847, + 0.33298581975518704, + 0.014942783235486909, + 0.08621017064024357, + 0.4964961071282564, + -1.0022545903311948, + -0.13444894835043633, + 0.19595690712360134, + -0.19331921933163876, + 0.3089027989912301, + -0.31798943353778264, + 0.5218399083052286, + -0.32706215360247953, + 0.35140985855563983, + -0.6208004168973308, + -0.6621809446905877, + 1.0613949646410785, + 0.5208074089815878, + -0.15267529223412682, + -0.8169430345073688, + 0.7121275865617903, + 0.5676897689553674, + -0.004570290489614182, + 0.11767132659926414, + 0.2985676707283953, + -0.33198756794976503, + 0.03346647465482618, + 0.11992170527514912, + 0.2710117841497648, + -0.21553948589080332, + -0.7100010940205405, + 0.5057786672564861, + 1.1059724001318278 + ], + "avgps": [ + 4.506674805486601, + 4.564367931094386, + 4.493024554752795 + ], + "std_scale": null +} diff --git a/test/expected_result/expected_pipeline/df_convert_out.tsv b/test/expected_result/expected_pipeline/df_convert_out.tsv new file mode 100644 index 00000000..13bce561 --- /dev/null +++ b/test/expected_result/expected_pipeline/df_convert_out.tsv @@ -0,0 +1,184 @@ +Original ID Entrez ID Gene Name In BioGRID? In IMP? In STRING? +6457 6457 SH3 domain containing GRB2 like 3, endophilin A3 Y Y Y +7037 7037 transferrin receptor Y Y Y +57403 57403 RAB22A, member RAS oncogene family Y Y Y +3134 3134 major histocompatibility complex, class I, F Y Y Y +50807 50807 ArfGAP with SH3 domain, ankyrin repeat and PH domain 1 Y Y Y +93343 93343 multivesicular body subunit 12A Y Y Y +11311 11311 vacuolar protein sorting 45 homolog Y Y Y +8766 8766 RAB11A, member RAS oncogene family Y Y Y +5584 5584 protein kinase C iota Y Y Y +137492 137492 VPS37A subunit of ESCRT-I Y Y Y +998 998 cell division cycle 42 Y Y N +30011 30011 SH3 domain containing kinase binding protein 1 Y Y Y +5337 5337 phospholipase D1 Y Y Y +3312 3312 heat shock protein family A (Hsp70) member 8 Y Y Y +155 155 adrenoceptor beta 3 Y Y Y +10015 10015 programmed cell death 6 interacting protein Y Y Y +55738 55738 ADP ribosylation factor GTPase activating protein 1 Y Y Y +57132 57132 charged multivesicular body protein 1B Y Y Y +153 153 adrenoceptor beta 1 Y Y Y +116986 116986 ArfGAP with GTPase domain, ankyrin repeat and PH domain 2 Y Y Y +163 163 adaptor related protein complex 2 subunit beta 1 Y Y Y +11267 11267 SNF8 subunit of ESCRT-II Y Y Y +1950 1950 epidermal growth factor Y Y Y +3559 3559 interleukin 2 receptor subunit alpha Y Y Y +6714 6714 SRC proto-oncogene, non-receptor tyrosine kinase Y Y Y +84249 84249 pleckstrin and Sec7 domain containing 2 Y Y Y +2066 2066 erb-b2 receptor tyrosine kinase 4 Y Y Y +29924 29924 epsin 1 Y Y Y +1213 1213 clathrin heavy chain Y Y N +30846 30846 EH domain containing 2 Y Y Y +84612 84612 par-6 family cell polarity regulator beta Y Y Y +440073 440073 IQ motif and Sec7 domain ArfGEF 3 Y Y Y +2060 2060 epidermal growth factor receptor pathway substrate 15 Y Y Y +3303 3303 heat shock protein family A (Hsp70) member 1A Y Y Y +3561 3561 interleukin 2 receptor subunit gamma Y Y Y +9101 9101 ubiquitin specific peptidase 8 Y Y Y +51160 51160 VPS28 subunit of ESCRT-I Y Y Y +56904 56904 SH3 domain containing GRB2 like, endophilin B2 Y Y Y +3304 3304 heat shock protein family A (Hsp70) member 1B Y Y Y +23527 23527 ArfGAP with coiled-coil, ankyrin repeat and PH domains 2 Y Y Y +5878 5878 RAB5C, member RAS oncogene family Y Y Y +3560 3560 interleukin 2 receptor subunit beta Y Y Y +7189 7189 TNF receptor associated factor 6 Y Y Y +3949 3949 low density lipoprotein receptor Y Y Y +92421 92421 charged multivesicular body protein 4C Y Y Y +26286 26286 ADP ribosylation factor GTPase activating protein 3 Y Y Y +5979 5979 ret proto-oncogene Y Y Y +9922 9922 IQ motif and Sec7 domain ArfGEF 1 Y Y Y +11031 11031 RAB31, member RAS oncogene family Y Y Y +116983 116983 ArfGAP with coiled-coil, ankyrin repeat and PH domains 3 Y Y Y +2261 2261 fibroblast growth factor receptor 3 Y Y Y +9230 9230 RAB11B, member RAS oncogene family Y Y Y +5867 5867 RAB4A, member RAS oncogene family Y Y Y +64145 64145 rabenosyn, RAB effector Y Y Y +867 867 Cbl proto-oncogene Y Y Y +57154 57154 SMAD specific E3 ubiquitin protein ligase 1 Y Y Y +84313 84313 vacuolar protein sorting 25 homolog Y Y Y +3577 3577 C-X-C motif chemokine receptor 1 Y Y Y +116987 116987 ArfGAP with GTPase domain, ankyrin repeat and PH domain 1 Y Y Y +10617 10617 STAM binding protein Y Y Y +1436 1436 colony stimulating factor 1 receptor Y Y Y +200576 200576 phosphoinositide kinase, FYVE-type zinc finger containing Y Y Y +83737 83737 itchy E3 ubiquitin protein ligase Y Y Y +23396 23396 phosphatidylinositol-4-phosphate 5-kinase type 1 gamma Y Y Y +3310 3310 heat shock protein family A (Hsp70) member 6 Y Y Y +5590 5590 protein kinase C zeta Y Y Y +3133 3133 major histocompatibility complex, class I, E Y Y Y +382 382 ADP ribosylation factor 6 Y Y Y +6456 6456 SH3 domain containing GRB2 like 2, endophilin A1 Y Y Y +30845 30845 EH domain containing 3 Y Y Y +868 868 Cbl proto-oncogene B Y Y N +2264 2264 fibroblast growth factor receptor 4 Y Y Y +5868 5868 RAB5A, member RAS oncogene family Y Y Y +84440 84440 RAB11 family interacting protein 4 Y Y Y +116984 116984 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 2 Y Y Y +5869 5869 RAB5B, member RAS oncogene family Y Y Y +23624 23624 Cbl proto-oncogene C Y Y Y +22841 22841 RAB11 family interacting protein 2 Y Y Y +161 161 adaptor related protein complex 2 subunit alpha 2 Y Y Y +23096 23096 IQ motif and Sec7 domain ArfGEF 2 Y Y Y +5338 5338 phospholipase D2 Y Y Y +652614 Not in Our List of Human Entrez Genes None N N N +84552 84552 par-6 family cell polarity regulator gamma Y Y Y +51028 51028 vacuolar protein sorting 36 homolog Y Y Y +55616 55616 ArfGAP with SH3 domain, ankyrin repeat and PH domain 3 Y Y Y +9829 9829 DnaJ heat shock protein family (Hsp40) member C6 Y Y Y +3815 3815 KIT proto-oncogene, receptor tyrosine kinase Y Y Y +29082 29082 charged multivesicular body protein 4A Y Y N +9135 9135 rabaptin, RAB GTPase binding effector protein 1 Y Y Y +23362 23362 pleckstrin and Sec7 domain containing 3 Y Y Y +9146 9146 hepatocyte growth factor-regulated tyrosine kinase substrate Y Y Y +128866 128866 charged multivesicular body protein 4B Y Y Y +156 156 G protein-coupled receptor kinase 2 Y Y Y +8218 8218 clathrin heavy chain like 1 Y Y Y +89853 89853 multivesicular body subunit 12B Y Y Y +154 154 adrenoceptor beta 2 Y Y Y +64744 64744 small ArfGAP2 Y Y Y +9525 9525 vacuolar protein sorting 4 homolog B Y Y Y +84364 84364 ADP ribosylation factor GTPase activating protein 2 Y Y Y +9727 9727 RAB11 family interacting protein 3 Y Y Y +23550 23550 pleckstrin and Sec7 domain containing 4 Y Y Y +8853 8853 ArfGAP with SH3 domain, ankyrin repeat and PH domain 2 Y Y Y +1956 1956 epidermal growth factor receptor Y Y Y +8395 8395 phosphatidylinositol-4-phosphate 5-kinase type 1 beta Y Y Y +6455 6455 SH3 domain containing GRB2 like 1, endophilin A2 Y Y Y +64411 64411 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 3 Y Y Y +5156 5156 platelet derived growth factor receptor alpha Y Y Y +51100 51100 SH3 domain containing GRB2 like, endophilin B1 Y Y Y +8027 8027 signal transducing adaptor molecule Y Y Y +408 408 arrestin beta 1 Y Y Y +3305 3305 heat shock protein family A (Hsp70) member 1 like Y Y Y +51534 51534 vesicle trafficking 1 Y Y Y +2868 2868 G protein-coupled receptor kinase 4 Y Y Y +9744 9744 ArfGAP with coiled-coil, ankyrin repeat and PH domains 1 Y Y Y +3106 3106 major histocompatibility complex, class I, B Y Y Y +51652 51652 charged multivesicular body protein 3 Y Y Y +3265 3265 HRas proto-oncogene, GTPase Y Y Y +27243 27243 charged multivesicular body protein 2A Y Y Y +10938 10938 EH domain containing 1 Y Y Y +60682 60682 small ArfGAP 1 Y Y Y +157 157 G protein-coupled receptor kinase 3 Y Y Y +26056 26056 RAB11 family interacting protein 5 Y Y Y +10059 10059 dynamin 1 like Y Y Y +2321 2321 fms related receptor tyrosine kinase 1 Y Y Y +80230 80230 RUN and FYVE domain containing 1 Y Y Y +1173 1173 adaptor related protein complex 2 subunit mu 1 Y Y Y +1175 1175 adaptor related protein complex 2 subunit sigma 1 Y Y Y +160 160 adaptor related protein complex 2 subunit alpha 1 Y Y Y +3306 3306 heat shock protein family A (Hsp70) member 2 Y Y Y +3135 3135 major histocompatibility complex, class I, G Y Y Y +1234 1234 C-C motif chemokine receptor 5 Y Y Y +2149 2149 coagulation factor II thrombin receptor Y Y Y +8411 8411 early endosome antigen 1 Y Y Y +3791 3791 kinase insert domain receptor Y Y Y +51510 51510 charged multivesicular body protein 5 Y Y Y +23327 23327 NEDD4 like E3 ubiquitin protein ligase Y Y Y +409 409 arrestin beta 2 Y Y Y +11059 11059 WW domain containing E3 ubiquitin protein ligase 1 Y Y Y +3579 3579 C-X-C motif chemokine receptor 2 Y Y Y +27183 27183 vacuolar protein sorting 4 homolog A Y Y Y +8396 8396 phosphatidylinositol-5-phosphate 4-kinase type 2 beta Y Y Y +1601 1601 DAB adaptor protein 2 Y Y Y +1211 1211 clathrin light chain A Y Y Y +3480 3480 insulin like growth factor 1 receptor Y Y Y +9815 9815 GIT ArfGAP 2 Y Y Y +26119 26119 low density lipoprotein receptor adaptor protein 1 Y Y Y +64750 64750 SMAD specific E3 ubiquitin protein ligase 2 Y Y Y +26052 26052 dynamin 3 Y Y Y +4914 4914 neurotrophic receptor tyrosine kinase 1 Y Y Y +25978 25978 charged multivesicular body protein 2B Y Y Y +8394 8394 phosphatidylinositol-4-phosphate 5-kinase type 1 alpha Y Y Y +1212 1212 clathrin light chain B Y Y Y +30844 30844 EH domain containing 4 Y Y Y +131890 131890 G protein-coupled receptor kinase 7 Y Y Y +79720 79720 VPS37B subunit of ESCRT-I Y Y Y +7251 7251 tumor susceptibility 101 Y Y Y +50855 50855 par-6 family cell polarity regulator alpha Y Y Y +116985 116985 ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 1 Y Y Y +5662 5662 pleckstrin and Sec7 domain containing Y Y Y +2870 2870 G protein-coupled receptor kinase 6 Y Y Y +10193 10193 ring finger protein 41 Y Y Y +1785 1785 dynamin 2 Y Y Y +155382 155382 VPS37D subunit of ESCRT-I Y Y Y +652799 Not in Our List of Human Entrez Genes None N N N +22905 22905 epsin 2 Y Y Y +3105 3105 major histocompatibility complex, class I, A Y Y Y +55048 55048 VPS37C subunit of ESCRT-I Y Y Y +10254 10254 signal transducing adaptor molecule 2 Y Y Y +55040 55040 epsin 3 Y Y Y +7852 7852 C-X-C motif chemokine receptor 4 Y Y Y +1759 1759 dynamin 1 Y Y Y +4193 4193 MDM2 proto-oncogene Y Y Y +2869 2869 G protein-coupled receptor kinase 5 Y Y Y +2065 2065 erb-b2 receptor tyrosine kinase 3 Y Y Y +6011 6011 G protein-coupled receptor kinase 1 Y Y Y +4734 4734 NEDD4 E3 ubiquitin protein ligase Y Y Y +28964 28964 GIT ArfGAP 1 Y Y Y +4233 4233 MET proto-oncogene, receptor tyrosine kinase Y Y Y +80223 80223 RAB11 family interacting protein 1 Y Y Y +79643 79643 charged multivesicular body protein 6 Y Y Y +3107 3107 major histocompatibility complex, class I, C Y Y Y +2263 2263 fibroblast growth factor receptor 2 Y Y Y +56288 56288 par-3 family cell polarity regulator Y Y Y diff --git a/test/expected_result/expected_pipeline/top_level_config.json b/test/expected_result/expected_pipeline/top_level_config.json new file mode 100644 index 00000000..401a6f12 --- /dev/null +++ b/test/expected_result/expected_pipeline/top_level_config.json @@ -0,0 +1,421 @@ +{ + "_is_custom": false, + "_file_loc": "/Users/mancchri/Desktop/CIDA_unsorted/Arjun/GenePlexusZoo_webserver/gpdata_prop/regular", + "_features": "SixSpeciesN2V", + "_sp_trn": "Human", + "_sp_res": [ + "Mouse" + ], + "_gsc_trn": "Combined", + "_gsc_res": [ + "Combined" + ], + "_net_type": "STRING", + "log_level": "INFO", + "log_to_file": false, + "auto_download": false, + "input_genes": [ + "6457", + "7037", + "57403", + "3134", + "50807", + "93343", + "11311", + "8766", + "5584", + "137492", + "998", + "30011", + "5337", + "3312", + "155", + "10015", + "55738", + "57132", + "153", + "116986", + "163", + "11267", + "1950", + "3559", + "6714", + "84249", + "2066", + "29924", + "1213", + "30846", + "84612", + "440073", + "2060", + "3303", + "3561", + "9101", + "51160", + "56904", + "3304", + "23527", + "5878", + "3560", + "7189", + "3949", + "92421", + "26286", + "5979", + "9922", + "11031", + "116983", + "2261", + "9230", + "5867", + "64145", + "867", + "57154", + "84313", + "3577", + "116987", + "10617", + "1436", + "200576", + "83737", + "23396", + "3310", + "5590", + "3133", + "382", + "6456", + "30845", + "868", + "2264", + "5868", + "84440", + "116984", + "5869", + "23624", + "22841", + "161", + "23096", + "5338", + "652614", + "84552", + "51028", + "55616", + "9829", + "3815", + "29082", + "9135", + "23362", + "9146", + "128866", + "156", + "8218", + "89853", + "154", + "64744", + "9525", + "84364", + "9727", + "23550", + "8853", + "1956", + "8395", + "6455", + "64411", + "5156", + "51100", + "8027", + "408", + "3305", + "51534", + "2868", + "9744", + "3106", + "51652", + "3265", + "27243", + "10938", + "60682", + "157", + "26056", + "10059", + "2321", + "80230", + "1173", + "1175", + "160", + "3306", + "3135", + "1234", + "2149", + "8411", + "3791", + "51510", + "23327", + "409", + "11059", + "3579", + "27183", + "8396", + "1601", + "1211", + "3480", + "9815", + "26119", + "64750", + "26052", + "4914", + "25978", + "8394", + "1212", + "30844", + "131890", + "79720", + "7251", + "50855", + "116985", + "5662", + "2870", + "10193", + "1785", + "155382", + "652799", + "22905", + "3105", + "55048", + "10254", + "55040", + "7852", + "1759", + "4193", + "2869", + "2065", + "6011", + "4734", + "28964", + "4233", + "80223", + "79643", + "3107", + "2263", + "56288" + ], + "input_negatives": null, + "gsc_trn_original": "Combined", + "gsc_res_original": [ + "Combined" + ], + "sp_gsc_pairs": [ + "Mouse-Combined" + ], + "clust_min_size": null, + "table_summary": [ + { + "Network": "BioGRID", + "NetworkGenes": 19936, + "PositiveGenes": 181 + }, + { + "Network": "IMP", + "NetworkGenes": 28265, + "PositiveGenes": 181 + }, + { + "Network": "STRING", + "NetworkGenes": 18962, + "PositiveGenes": 177 + } + ], + "input_count": 183, + "convert_ids": [ + "6457", + "7037", + "57403", + "3134", + "50807", + "93343", + "11311", + "8766", + "5584", + "137492", + "998", + "30011", + "5337", + "3312", + "155", + "10015", + "55738", + "57132", + "153", + "116986", + "163", + "11267", + "1950", + "3559", + "6714", + "84249", + "2066", + "29924", + "1213", + "30846", + "84612", + "440073", + "2060", + "3303", + "3561", + "9101", + "51160", + "56904", + "3304", + "23527", + "5878", + "3560", + "7189", + "3949", + "92421", + "26286", + "5979", + "9922", + "11031", + "116983", + "2261", + "9230", + "5867", + "64145", + "867", + "57154", + "84313", + "3577", + "116987", + "10617", + "1436", + "200576", + "83737", + "23396", + "3310", + "5590", + "3133", + "382", + "6456", + "30845", + "868", + "2264", + "5868", + "84440", + "116984", + "5869", + "23624", + "22841", + "161", + "23096", + "5338", + "84552", + "51028", + "55616", + "9829", + "3815", + "29082", + "9135", + "23362", + "9146", + "128866", + "156", + "8218", + "89853", + "154", + "64744", + "9525", + "84364", + "9727", + "23550", + "8853", + "1956", + "8395", + "6455", + "64411", + "5156", + "51100", + "8027", + "408", + "3305", + "51534", + "2868", + "9744", + "3106", + "51652", + "3265", + "27243", + "10938", + "60682", + "157", + "26056", + "10059", + "2321", + "80230", + "1173", + "1175", + "160", + "3306", + "3135", + "1234", + "2149", + "8411", + "3791", + "51510", + "23327", + "409", + "11059", + "3579", + "27183", + "8396", + "1601", + "1211", + "3480", + "9815", + "26119", + "64750", + "26052", + "4914", + "25978", + "8394", + "1212", + "30844", + "131890", + "79720", + "7251", + "50855", + "116985", + "5662", + "2870", + "10193", + "1785", + "155382", + "22905", + "3105", + "55048", + "10254", + "55040", + "7852", + "1759", + "4193", + "2869", + "2065", + "6011", + "4734", + "28964", + "4233", + "80223", + "79643", + "3107", + "2263", + "56288" + ], + "min_num_pos": 5, + "logreg_kwargs": null, + "scale": false, + "min_num_pos_cv": 15, + "num_folds": 3, + "null_val": null, + "random_state": 0, + "cross_validate": true, + "num_nodes": 50 +} diff --git a/test/extra_test_data/Edgelist__Human__STRING.edg b/test/extra_test_data/Edgelist__Human__STRING.edg new file mode 100644 index 00000000..fe0bebca --- /dev/null +++ b/test/extra_test_data/Edgelist__Human__STRING.edg @@ -0,0 +1,883889 @@ +1 2 0.6920 +1 12 0.6630 +1 173 0.5440 +1 197 0.8490 +1 213 0.6220 +1 226 0.4480 +1 259 0.7160 +1 325 0.4600 +1 335 0.5090 +1 336 0.4340 +1 337 0.4650 +1 350 0.5250 +1 462 0.5240 +1 563 0.5350 +1 629 0.5290 +1 715 0.4570 +1 716 0.5030 +1 718 0.4300 +1 735 0.4420 +1 1191 0.4350 +1 1291 0.4050 +1 1356 0.5160 +1 1398 0.7450 +1 1399 0.5530 +1 1675 0.5210 +1 1956 0.4950 +1 2064 0.4790 +1 2243 0.5780 +1 2244 0.5990 +1 2266 0.4560 +1 2335 0.5130 +1 2549 0.4010 +1 2638 0.6220 +1 2885 0.9920 +1 2934 0.4160 +1 3002 0.4780 +1 3240 0.6280 +1 3263 0.6320 +1 3273 0.4960 +1 3635 0.4200 +1 3636 0.4030 +1 3697 0.4930 +1 3698 0.4910 +1 3699 0.4840 +1 3700 0.5880 +1 3827 0.4170 +1 4477 0.4070 +1 4486 0.4180 +1 4680 0.5750 +1 5004 0.5920 +1 5005 0.5490 +1 5265 0.7350 +1 5295 0.4310 +1 5781 0.9400 +1 5950 0.4280 +1 6464 0.6070 +1 6776 0.5570 +1 6777 0.5610 +1 7018 0.6820 +1 7276 0.5310 +1 9743 0.5110 +1 9846 0.8560 +1 10321 0.9410 +1 10818 0.5620 +1 56888 0.4200 +1 116844 0.5240 +1 126206 0.4810 +1 139716 0.8210 +1 284161 0.4600 +2 12 0.9290 +2 20 0.4430 +2 54 0.4520 +2 71 0.4340 +2 81 0.4480 +2 102 0.4970 +2 173 0.4780 +2 174 0.5150 +2 176 0.5820 +2 177 0.4930 +2 183 0.4710 +2 197 0.8030 +2 199 0.4230 +2 213 0.9800 +2 226 0.4640 +2 259 0.8710 +2 309 0.4540 +2 322 0.6680 +2 323 0.4040 +2 325 0.5340 +2 334 0.4290 +2 335 0.9980 +2 336 0.7720 +2 337 0.6440 +2 338 0.5850 +2 341 0.6220 +2 344 0.6230 +2 345 0.6600 +2 347 0.5740 +2 348 0.9750 +2 350 0.7520 +2 351 0.9050 +2 354 0.9670 +2 462 0.9270 +2 563 0.4430 +2 566 0.4770 +2 567 0.7740 +2 629 0.7260 +2 642 0.4480 +2 708 0.6690 +2 710 0.9050 +2 715 0.6940 +2 716 0.5780 +2 718 0.4070 +2 720 0.5300 +2 722 0.4480 +2 730 0.5710 +2 735 0.4630 +2 922 0.5120 +2 1051 0.5010 +2 1116 0.6540 +2 1191 0.8960 +2 1356 0.8890 +2 1361 0.8050 +2 1401 0.6230 +2 1464 0.4370 +2 1471 0.4140 +2 1504 0.8590 +2 1506 0.5330 +2 1508 0.7680 +2 1509 0.4150 +2 1511 0.5010 +2 1558 0.4710 +2 1634 0.4340 +2 1917 0.4750 +2 1956 0.4910 +2 1958 0.4560 +2 1991 0.7350 +2 1992 0.5680 +2 2147 0.7000 +2 2152 0.5410 +2 2153 0.6100 +2 2155 0.5260 +2 2157 0.6100 +2 2158 0.4280 +2 2159 0.4750 +2 2160 0.6200 +2 2161 0.5340 +2 2162 0.5720 +2 2165 0.5340 +2 2200 0.5170 +2 2243 0.8320 +2 2244 0.8410 +2 2247 0.6650 +2 2266 0.7610 +2 2308 0.4270 +2 2335 0.8510 +2 2597 0.5420 +2 2638 0.6540 +2 2690 0.4520 +2 2705 0.4330 +2 2875 0.6550 +2 2934 0.4980 +2 3043 0.5820 +2 3053 0.7710 +2 3075 0.5590 +2 3077 0.4570 +2 3240 0.9970 +2 3250 0.6340 +2 3263 0.8240 +2 3273 0.7620 +2 3308 0.5740 +2 3309 0.9720 +2 3426 0.5020 +2 3479 0.5750 +2 3482 0.4330 +2 3484 0.5850 +2 3486 0.5630 +2 3552 0.5730 +2 3553 0.9840 +2 3558 0.4970 +2 3565 0.4660 +2 3569 0.9500 +2 3576 0.6040 +2 3586 0.8470 +2 3627 0.4540 +2 3630 0.6540 +2 3698 0.6320 +2 3699 0.4680 +2 3700 0.4470 +2 3816 0.5010 +2 3818 0.9570 +2 3827 0.9270 +2 3931 0.6080 +2 3952 0.6940 +2 3959 0.5630 +2 4018 0.4500 +2 4035 0.9980 +2 4036 0.7610 +2 4043 0.6130 +2 4057 0.7240 +2 4060 0.4350 +2 4137 0.4600 +2 4153 0.6400 +2 4240 0.5050 +2 4283 0.6760 +2 4312 0.7960 +2 4313 0.9530 +2 4314 0.8770 +2 4316 0.6620 +2 4317 0.8560 +2 4318 0.8450 +2 4319 0.6000 +2 4320 0.5810 +2 4321 0.6410 +2 4322 0.7860 +2 4327 0.5850 +2 4493 0.4410 +2 4790 0.4090 +2 4803 0.7190 +2 4831 0.4440 +2 4907 0.4730 +2 5004 0.8090 +2 5005 0.8080 +2 5045 0.5660 +2 5054 0.8040 +2 5104 0.4850 +2 5159 0.5780 +2 5176 0.8800 +2 5196 0.4670 +2 5199 0.5800 +2 5265 0.9800 +2 5267 0.4080 +2 5284 0.5750 +2 5327 0.6710 +2 5328 0.7150 +2 5340 0.7790 +2 5345 0.9680 +2 5444 0.5160 +2 5460 0.4690 +2 5468 0.4720 +2 5624 0.9310 +2 5644 0.6570 +2 5646 0.4290 +2 5648 0.4380 +2 5663 0.5530 +2 5664 0.7250 +2 5730 0.5600 +2 5858 0.6170 +2 5866 0.9500 +2 5950 0.4200 +2 6037 0.5700 +2 6288 0.4480 +2 6289 0.4300 +2 6347 0.5780 +2 6414 0.6480 +2 6462 0.4140 +2 6532 0.4370 +2 6653 0.5850 +2 6906 0.4590 +2 7018 0.8200 +2 7040 0.9100 +2 7042 0.6210 +2 7056 0.4150 +2 7057 0.5920 +2 7066 0.4280 +2 7076 0.7360 +2 7077 0.4660 +2 7078 0.4840 +2 7123 0.5420 +2 7124 0.8280 +2 7184 0.5930 +2 7276 0.9050 +2 7436 0.6070 +2 7448 0.5240 +2 7450 0.6030 +2 7804 0.6190 +2 8361 0.4420 +2 8404 0.4180 +2 8542 0.4910 +2 8728 0.4410 +2 8857 0.5430 +2 8991 0.4560 +2 9313 0.5750 +2 9510 0.4280 +2 9518 0.4320 +2 9622 0.9930 +2 9636 0.4490 +2 10250 0.4160 +2 10347 0.4890 +2 10747 0.4110 +2 10858 0.4220 +2 11012 0.4350 +2 11173 0.6640 +2 23621 0.5790 +2 26085 0.4230 +2 30061 0.4780 +2 51032 0.4500 +2 51156 0.4350 +2 53353 0.4050 +2 57817 0.8900 +2 63036 0.4700 +2 64005 0.5050 +2 80755 0.4520 +2 81792 0.4600 +2 84699 0.4570 +2 84706 0.4230 +2 85477 0.4220 +2 121504 0.4240 +2 143458 0.4430 +2 164656 0.5150 +2 284161 0.4410 +2 440387 0.8600 +2 100885850 0.4560 +2 102723407 0.4610 +9 10 0.9180 +9 13 0.8320 +9 15 0.6180 +9 438 0.5490 +9 1066 0.9150 +9 1135 0.6110 +9 1316 0.4940 +9 1544 0.9440 +9 1548 0.9220 +9 1571 0.9660 +9 2944 0.5110 +9 3084 0.4260 +9 3383 0.4630 +9 4292 0.4900 +9 4331 0.7760 +9 4353 0.9090 +9 4588 0.5660 +9 4595 0.4930 +9 5368 0.7670 +9 5533 0.5320 +9 7498 0.9110 +9 8000 0.6730 +9 8209 0.8130 +9 8260 0.6480 +9 9687 0.4200 +9 57106 0.5730 +9 64841 0.4640 +9 79664 0.4730 +9 80155 0.7140 +9 114799 0.7320 +9 133688 0.4720 +9 157570 0.7300 +9 167127 0.4770 +10 13 0.8750 +10 15 0.5270 +10 438 0.4560 +10 1066 0.9210 +10 1312 0.5270 +10 1543 0.6010 +10 1544 0.9730 +10 1548 0.9520 +10 1555 0.4560 +10 1557 0.6100 +10 1559 0.6310 +10 1565 0.7860 +10 1571 0.9660 +10 1576 0.6460 +10 1577 0.5290 +10 2052 0.4970 +10 2328 0.4850 +10 2539 0.4600 +10 2580 0.5440 +10 2944 0.7750 +10 2947 0.4850 +10 2948 0.4030 +10 2950 0.5230 +10 3122 0.5550 +10 4129 0.5170 +10 4353 0.9100 +10 4363 0.4340 +10 4524 0.4030 +10 4929 0.4280 +10 5243 0.5440 +10 7172 0.5440 +10 7363 0.5840 +10 7364 0.5200 +10 7365 0.4610 +10 7366 0.4610 +10 7367 0.4760 +10 7498 0.9530 +10 8209 0.7670 +10 8856 0.6170 +10 9360 0.5960 +10 9446 0.4580 +10 9627 0.4140 +10 10599 0.4520 +10 10720 0.4560 +10 23567 0.4240 +10 25818 0.4310 +10 27306 0.4590 +10 54490 0.4670 +10 54575 0.6120 +10 54576 0.6070 +10 54577 0.5990 +10 54578 0.6070 +10 54579 0.5100 +10 54600 0.5220 +10 54657 0.6170 +10 54658 0.6210 +10 54659 0.5090 +10 56910 0.7180 +10 79799 0.5000 +10 114799 0.7730 +10 119391 0.4480 +10 133688 0.5850 +10 157570 0.7700 +10 167127 0.5820 +10 574537 0.4580 +12 38 0.5840 +12 39 0.5410 +12 43 0.4180 +12 173 0.4330 +12 174 0.4340 +12 197 0.8480 +12 213 0.9140 +12 226 0.4720 +12 259 0.4580 +12 325 0.6810 +12 335 0.5030 +12 336 0.6200 +12 337 0.5830 +12 338 0.4350 +12 341 0.4110 +12 345 0.4020 +12 347 0.4590 +12 348 0.9160 +12 350 0.4680 +12 351 0.8000 +12 354 0.9950 +12 462 0.6170 +12 563 0.6060 +12 590 0.4890 +12 629 0.5280 +12 710 0.6260 +12 714 0.4700 +12 718 0.5810 +12 720 0.5290 +12 721 0.4430 +12 735 0.4660 +12 765 0.4380 +12 960 0.4840 +12 968 0.4710 +12 999 0.4820 +12 1048 0.4510 +12 1152 0.5920 +12 1191 0.6480 +12 1215 0.4540 +12 1284 0.4510 +12 1356 0.8220 +12 1401 0.6260 +12 1504 0.9690 +12 1506 0.6090 +12 1508 0.4370 +12 1511 0.9880 +12 1675 0.4740 +12 1991 0.7450 +12 2026 0.4870 +12 2222 0.4710 +12 2224 0.5920 +12 2243 0.4910 +12 2244 0.5900 +12 2266 0.4990 +12 2335 0.4330 +12 2525 0.4080 +12 2527 0.4470 +12 2528 0.4420 +12 2638 0.5980 +12 2934 0.5970 +12 3043 0.4470 +12 3053 0.5980 +12 3156 0.5060 +12 3159 0.6620 +12 3190 0.4750 +12 3240 0.8730 +12 3250 0.4030 +12 3263 0.6610 +12 3273 0.4270 +12 3303 0.4740 +12 3304 0.4710 +12 3426 0.6090 +12 3479 0.4580 +12 3553 0.4600 +12 3569 0.5260 +12 3697 0.4250 +12 3698 0.4710 +12 3699 0.4430 +12 3700 0.4040 +12 3816 0.5110 +12 3817 0.8510 +12 3818 0.5700 +12 3827 0.4290 +12 4036 0.5060 +12 4057 0.4460 +12 4133 0.4200 +12 4316 0.4160 +12 4597 0.5940 +12 4598 0.6560 +12 4653 0.5370 +12 5004 0.9180 +12 5005 0.9030 +12 5104 0.4810 +12 5176 0.5810 +12 5265 0.6800 +12 5274 0.5520 +12 5292 0.5930 +12 5340 0.4680 +12 5345 0.6360 +12 5621 0.4640 +12 5730 0.5490 +12 6278 0.4250 +12 6280 0.4540 +12 6288 0.5320 +12 6289 0.5320 +12 6291 0.4810 +12 6590 0.4220 +12 6649 0.4100 +12 6694 0.4930 +12 6696 0.5210 +12 6772 0.5050 +12 7018 0.6220 +12 7276 0.8200 +12 7448 0.4510 +12 7466 0.4180 +12 9453 0.6210 +12 9622 0.6810 +12 10144 0.4560 +12 10211 0.4260 +12 10423 0.6790 +12 10654 0.6620 +12 10877 0.4130 +12 11098 0.4410 +12 26085 0.4020 +12 51297 0.4720 +12 54587 0.4110 +12 54757 0.4150 +12 59341 0.4030 +12 64215 0.8120 +12 85477 0.5680 +12 91612 0.4120 +12 116844 0.7110 +12 118427 0.4930 +12 440387 0.9710 +13 1066 0.6930 +13 1537 0.5330 +13 1562 0.4620 +13 1576 0.4270 +13 2169 0.4540 +13 2326 0.4060 +13 3273 0.5310 +13 3988 0.4080 +13 4695 0.5010 +13 4698 0.5020 +13 4700 0.5030 +13 4704 0.4650 +13 4706 0.4870 +13 4723 0.5160 +13 4724 0.5030 +13 4726 0.5120 +13 4728 0.5260 +13 4729 0.5020 +13 5346 0.4600 +13 6999 0.6030 +13 7384 0.4490 +13 7386 0.5350 +13 8564 0.4490 +13 8942 0.6100 +13 9104 0.6210 +13 9512 0.4490 +13 10599 0.4660 +13 11343 0.4520 +13 23203 0.4850 +13 23491 0.4430 +13 51099 0.6050 +13 53345 0.4110 +13 55347 0.4460 +13 55967 0.5030 +13 56894 0.4080 +13 57104 0.4480 +13 79728 0.4870 +13 80168 0.5070 +13 84075 0.4680 +13 114798 0.4010 +13 137964 0.4180 +13 221223 0.4770 +13 283848 0.4410 +14 387 0.4020 +14 427 0.4600 +14 550 0.4480 +14 705 0.5440 +14 1736 0.6010 +14 1956 0.9150 +14 2193 0.4460 +14 2794 0.4260 +14 3420 0.5940 +14 3692 0.4170 +14 4733 0.4390 +14 5036 0.4410 +14 6175 0.4100 +14 6915 0.8900 +14 8079 0.5470 +14 8568 0.4130 +14 8934 0.4050 +14 9391 0.4700 +14 9698 0.5180 +14 10076 0.4280 +14 10109 0.4940 +14 10171 0.5600 +14 10445 0.5330 +14 10607 0.7080 +14 10885 0.4100 +14 23076 0.4060 +14 23160 0.5990 +14 23223 0.4790 +14 23246 0.6390 +14 23560 0.4080 +14 23640 0.6670 +14 26156 0.5760 +14 26354 0.4350 +14 51068 0.7100 +14 51096 0.6880 +14 51154 0.7120 +14 51202 0.4470 +14 51389 0.4120 +14 51428 0.4510 +14 51493 0.4530 +14 51763 0.5230 +14 54433 0.5840 +14 54475 0.4990 +14 54552 0.4510 +14 54948 0.6670 +14 55226 0.4160 +14 55341 0.5890 +14 55651 0.6070 +14 55720 0.4600 +14 55759 0.6080 +14 55781 0.5000 +14 55914 0.4480 +14 56902 0.4230 +14 59272 0.6270 +14 60314 0.4110 +14 64127 0.9520 +14 64374 0.6500 +14 64425 0.4110 +14 64782 0.7830 +14 65125 0.4650 +14 79050 0.5340 +14 83743 0.8630 +14 84154 0.5890 +14 84946 0.4320 +14 92856 0.4520 +14 140801 0.8890 +14 197407 0.4320 +14 100132963 0.4450 +15 406 0.6710 +15 438 0.9940 +15 1261 0.6150 +15 1312 0.4550 +15 1390 0.4990 +15 1407 0.6080 +15 1408 0.5330 +15 1644 0.9670 +15 2353 0.4780 +15 2673 0.4830 +15 3067 0.4330 +15 3620 0.9310 +15 3954 0.4310 +15 4128 0.9430 +15 4129 0.9370 +15 4543 0.6570 +15 4544 0.6390 +15 4835 0.4370 +15 4862 0.5430 +15 5635 0.4170 +15 6095 0.4170 +15 6096 0.4080 +15 6510 0.5770 +15 7166 0.6750 +15 7531 0.5370 +15 7533 0.4030 +15 7534 0.9720 +15 8553 0.5220 +15 8623 0.4660 +15 8863 0.5990 +15 8864 0.6550 +15 9248 0.5850 +15 9563 0.4400 +15 9572 0.5060 +15 9575 0.5540 +15 9610 0.5410 +15 9945 0.4830 +15 10991 0.4860 +15 11185 0.9120 +15 51728 0.4590 +15 54407 0.7240 +15 55089 0.6750 +15 55238 0.4070 +15 55353 0.5800 +15 81539 0.7010 +15 92292 0.7760 +15 92745 0.4570 +15 94233 0.8590 +15 114799 0.7200 +15 121278 0.6590 +15 151742 0.7460 +15 152926 0.7460 +15 157570 0.7200 +15 169355 0.9330 +16 189 0.6020 +16 203 0.4580 +16 440 0.8400 +16 699 0.5250 +16 701 0.5250 +16 833 0.8720 +16 1503 0.4350 +16 1615 0.7430 +16 1778 0.4130 +16 1915 0.4490 +16 1937 0.4580 +16 1938 0.4730 +16 1965 0.4710 +16 1967 0.4390 +16 2058 0.9760 +16 2107 0.6010 +16 2193 0.6270 +16 2617 0.9830 +16 2618 0.4120 +16 2705 0.4180 +16 3035 0.9060 +16 3156 0.4100 +16 3295 0.7190 +16 3309 0.4980 +16 3376 0.9800 +16 3396 0.4130 +16 3508 0.4910 +16 3735 0.9920 +16 4141 0.9130 +16 4199 0.4140 +16 4200 0.4200 +16 4677 0.9470 +16 5188 0.8320 +16 5464 0.5760 +16 5631 0.4030 +16 5859 0.9640 +16 5884 0.4520 +16 5917 0.8500 +16 6059 0.5500 +16 6117 0.7240 +16 6222 0.7290 +16 6301 0.8810 +16 6472 0.5060 +16 6520 0.5330 +16 6772 0.4980 +16 6897 0.9290 +16 7284 0.4800 +16 7317 0.6760 +16 7384 0.4300 +16 7407 0.9380 +16 7453 0.9060 +16 7494 0.4320 +16 7511 0.5890 +16 7965 0.8880 +16 8565 0.9960 +16 8663 0.4480 +16 8731 0.4020 +16 8833 0.4330 +16 8881 0.8370 +16 8894 0.4940 +16 8898 0.4170 +16 9147 0.6840 +16 9255 0.9180 +16 9521 0.7540 +16 9563 0.4780 +16 9669 0.7150 +16 9700 0.4630 +16 9896 0.4030 +16 9913 0.5250 +16 10056 0.8140 +16 10102 0.7500 +16 10352 0.8790 +16 10393 0.6170 +16 10525 0.7090 +16 10667 0.8720 +16 10873 0.4100 +16 11044 0.5500 +16 11128 0.4060 +16 11159 0.4160 +16 11232 0.5380 +16 11260 0.4010 +16 23247 0.4440 +16 23395 0.9290 +16 23438 0.8930 +16 23536 0.8700 +16 23625 0.5770 +16 25821 0.4880 +16 25885 0.4620 +16 25904 0.4680 +16 25973 0.8900 +16 26227 0.4480 +16 27068 0.5600 +16 27102 0.4690 +16 27343 0.4970 +16 27434 0.5490 +16 29789 0.4110 +16 29882 0.7220 +16 29945 0.8440 +16 29968 0.5600 +16 51067 0.9380 +16 51068 0.5120 +16 51095 0.5740 +16 51128 0.5930 +16 51433 0.7830 +16 51520 0.9680 +16 51529 0.5780 +16 51668 0.6110 +16 54148 0.4170 +16 54332 0.5100 +16 54522 0.4390 +16 54888 0.5500 +16 54938 0.8670 +16 54965 0.4250 +16 55157 0.9070 +16 55278 0.6010 +16 55526 0.4020 +16 55699 0.9420 +16 55703 0.4330 +16 56474 0.4080 +16 57019 0.4670 +16 57038 0.9110 +16 57176 0.9270 +16 57470 0.4330 +16 57505 0.9100 +16 60558 0.4420 +16 60678 0.4720 +16 64374 0.7250 +16 64682 0.8320 +16 79587 0.8530 +16 79628 0.5060 +16 79691 0.4070 +16 79731 0.8810 +16 80222 0.9240 +16 80755 0.8780 +16 81890 0.4310 +16 83990 0.5080 +16 84126 0.4820 +16 84923 0.6220 +16 85476 0.5830 +16 90678 0.4950 +16 91574 0.4040 +16 92399 0.6280 +16 92935 0.8870 +16 93624 0.4860 +16 93974 0.6640 +16 112487 0.4630 +16 113179 0.5940 +16 118672 0.4870 +16 121512 0.4070 +16 123263 0.5260 +16 123283 0.9550 +16 124454 0.8940 +16 133957 0.6080 +16 134637 0.4730 +16 140460 0.5040 +16 221823 0.4120 +16 283459 0.6270 +16 375061 0.5770 +16 440275 0.6360 +16 728689 0.4050 +16 100885850 0.8800 +16 101927367 0.4350 +18 26 0.4130 +18 35 0.8160 +18 50 0.4420 +18 51 0.8460 +18 189 0.5840 +18 210 0.6020 +18 216 0.4380 +18 217 0.9450 +18 218 0.9420 +18 219 0.9490 +18 220 0.4760 +18 221 0.9420 +18 222 0.9420 +18 223 0.9450 +18 224 0.9470 +18 314 0.4060 +18 316 0.9050 +18 383 0.4570 +18 384 0.4730 +18 432 0.4070 +18 435 0.4640 +18 440 0.4950 +18 445 0.4820 +18 501 0.9540 +18 586 0.4450 +18 587 0.4540 +18 1431 0.4130 +18 1610 0.5680 +18 1629 0.8400 +18 1644 0.4990 +18 1892 0.4010 +18 1962 0.9360 +18 2184 0.5300 +18 2271 0.7540 +18 2571 0.9750 +18 2572 0.9760 +18 2628 0.8140 +18 2746 0.7290 +18 2747 0.7430 +18 2752 0.5620 +18 2805 0.6300 +18 2821 0.4430 +18 2875 0.4270 +18 3067 0.4250 +18 3081 0.4270 +18 4128 0.4750 +18 4129 0.5120 +18 4329 0.9630 +18 4817 0.4340 +18 4942 0.4700 +18 4953 0.4990 +18 4967 0.4560 +18 5095 0.8210 +18 5096 0.8260 +18 5226 0.4020 +18 5471 0.4670 +18 5625 0.4960 +18 5832 0.4330 +18 6529 0.4210 +18 6652 0.7070 +18 7915 0.9940 +18 8310 0.8360 +18 8528 0.4450 +18 8566 0.5130 +18 8659 0.6100 +18 8854 0.4360 +18 8875 0.4150 +18 8876 0.4160 +18 8879 0.5810 +18 9117 0.5910 +18 10840 0.4890 +18 11112 0.9380 +18 26275 0.4480 +18 51091 0.4250 +18 51166 0.4220 +18 51268 0.4460 +18 51380 0.5620 +18 51733 0.9560 +18 55638 0.4320 +18 55748 0.9340 +18 55753 0.4240 +18 55862 0.8520 +18 55902 0.8290 +18 56954 0.4750 +18 57508 0.4070 +18 57571 0.9270 +18 58510 0.5070 +18 64577 0.4540 +18 64847 0.5670 +18 64902 0.9390 +18 79611 0.8280 +18 79814 0.5060 +18 79944 0.4770 +18 84532 0.8270 +18 84656 0.4060 +18 84735 0.9470 +18 126133 0.4360 +18 132949 0.6800 +18 137362 0.5570 +18 137872 0.5570 +18 162417 0.5820 +18 339896 0.9490 +19 31 0.4850 +19 47 0.4050 +19 51 0.5330 +19 60 0.5510 +19 123 0.6810 +19 207 0.4960 +19 213 0.5240 +19 335 0.9990 +19 336 0.8740 +19 337 0.5070 +19 338 0.8610 +19 341 0.5440 +19 344 0.5850 +19 345 0.7440 +19 346 0.4430 +19 347 0.5150 +19 348 0.9800 +19 350 0.4400 +19 351 0.5500 +19 387 0.5460 +19 712 0.4520 +19 821 0.4540 +19 857 0.6920 +19 922 0.4540 +19 948 0.8310 +19 949 0.9340 +19 950 0.8300 +19 968 0.5310 +19 1071 0.8310 +19 1191 0.4710 +19 1374 0.5700 +19 1387 0.4990 +19 1401 0.4450 +19 1581 0.8620 +19 1582 0.6430 +19 1593 0.6710 +19 1595 0.4330 +19 1717 0.4790 +19 1718 0.5370 +19 1756 0.5670 +19 1952 0.5460 +19 2033 0.6070 +19 2099 0.6130 +19 2167 0.4580 +19 2168 0.6550 +19 2180 0.5050 +19 2194 0.6280 +19 2222 0.4770 +19 2224 0.4100 +19 2243 0.6250 +19 2244 0.5100 +19 2590 0.4460 +19 2597 0.5480 +19 2762 0.4060 +19 2874 0.5910 +19 3032 0.4800 +19 3075 0.5410 +19 3156 0.8660 +19 3157 0.7550 +19 3158 0.6250 +19 3383 0.5050 +19 3458 0.4420 +19 3481 0.4990 +19 3553 0.6120 +19 3569 0.6130 +19 3586 0.6170 +19 3630 0.7420 +19 3638 0.6960 +19 3717 0.6250 +19 3931 0.9120 +19 3952 0.6460 +19 3984 0.4520 +19 3988 0.7360 +19 3990 0.7460 +19 3991 0.4730 +19 4018 0.7400 +19 4023 0.6700 +19 4035 0.5400 +19 4145 0.6260 +19 4318 0.4580 +19 4343 0.5030 +19 4353 0.4220 +19 4360 0.4280 +19 4481 0.4350 +19 4547 0.5660 +19 4598 0.4040 +19 4790 0.4120 +19 4846 0.4290 +19 4864 0.8160 +19 4973 0.6680 +19 5007 0.4150 +19 5166 0.4730 +19 5205 0.5450 +19 5360 0.8290 +19 5444 0.6230 +19 5465 0.8770 +19 5467 0.6780 +19 5468 0.8200 +19 5469 0.4960 +19 5566 0.5840 +19 5567 0.5920 +19 5568 0.5840 +19 5970 0.4190 +19 6256 0.9160 +19 6257 0.6050 +19 6307 0.4330 +19 6319 0.5580 +19 6347 0.5840 +19 6500 0.5320 +19 6517 0.4300 +19 6604 0.4010 +19 6640 0.6070 +19 6641 0.7500 +19 6645 0.8300 +19 6646 0.6300 +19 6648 0.5380 +19 6713 0.5240 +19 6720 0.9050 +19 6721 0.9400 +19 6774 0.8150 +19 6781 0.4510 +19 6820 0.6460 +19 6833 0.4050 +19 6907 0.4870 +19 7037 0.5040 +19 7097 0.4280 +19 7099 0.5840 +19 7124 0.5810 +19 7274 0.4020 +19 7276 0.4030 +19 7376 0.9910 +19 7402 0.7060 +19 7412 0.5220 +19 7436 0.5820 +19 7804 0.4520 +19 7837 0.4260 +19 8310 0.4920 +19 8431 0.4500 +19 8435 0.4940 +19 8522 0.4060 +19 8648 0.5810 +19 8694 0.4270 +19 8720 0.5090 +19 8773 0.4380 +19 8841 0.5080 +19 8856 0.4290 +19 9023 0.4870 +19 9213 0.9400 +19 9318 0.5100 +19 9370 0.4880 +19 9388 0.6380 +19 9420 0.4860 +19 9517 0.5870 +19 9611 0.5920 +19 9612 0.5130 +19 9619 0.5400 +19 9754 0.4010 +19 9971 0.7540 +19 10062 0.9670 +19 10113 0.4030 +19 10211 0.5190 +19 10221 0.4080 +19 10295 0.4350 +19 10351 0.5090 +19 10461 0.4700 +19 10498 0.4630 +19 10499 0.4680 +19 10554 0.4180 +19 10558 0.8710 +19 10577 0.5890 +19 10858 0.6530 +19 10891 0.4660 +19 10948 0.4150 +19 22937 0.5420 +19 23054 0.4740 +19 23112 0.5210 +19 23365 0.6230 +19 23411 0.5200 +19 23673 0.5380 +19 25934 0.7070 +19 26119 0.4120 +19 26154 0.4640 +19 26523 0.5630 +19 27161 0.6370 +19 27327 0.5380 +19 27329 0.5290 +19 29116 0.8180 +19 29801 0.7730 +19 29881 0.8150 +19 51085 0.4470 +19 51141 0.4270 +19 51454 0.8290 +19 54209 0.4120 +19 54499 0.4130 +19 54677 0.6150 +19 54859 0.5420 +19 55304 0.5760 +19 55335 0.7150 +19 55937 0.5140 +19 57552 0.4750 +19 64240 0.4700 +19 64241 0.4680 +19 79718 0.4470 +19 80205 0.4270 +19 83657 0.4220 +19 84466 0.4470 +19 84649 0.4160 +19 85441 0.4490 +19 91860 0.4240 +19 96764 0.4260 +19 116519 0.6100 +19 121599 0.5260 +19 124976 0.4850 +19 137902 0.4250 +19 192669 0.5410 +19 192670 0.5450 +19 221264 0.4340 +19 255738 0.6640 +19 340273 0.6210 +19 387715 0.4770 +19 723961 0.7500 +20 23 0.4950 +20 323 0.4650 +20 335 0.4820 +20 351 0.5050 +20 476 0.7540 +20 477 0.7470 +20 478 0.7710 +20 479 0.7540 +20 480 0.5840 +20 481 0.7300 +20 482 0.7260 +20 483 0.7420 +20 486 0.5940 +20 488 0.7510 +20 496 0.5460 +20 498 0.4040 +20 590 0.4180 +20 642 0.5280 +20 1355 0.4240 +20 1509 0.4140 +20 3157 0.5900 +20 3290 0.4720 +20 3764 0.5400 +20 5243 0.5460 +20 5348 0.7430 +20 5350 0.7200 +20 5826 0.9520 +20 6548 0.7520 +20 6833 0.7210 +20 8714 0.6280 +20 9446 0.4590 +20 9846 0.4590 +20 10057 0.4550 +20 10058 0.9290 +20 10060 0.6680 +20 10858 0.6400 +20 11194 0.8050 +20 23457 0.4130 +20 29979 0.4260 +20 54859 0.7380 +20 64240 0.9230 +20 64241 0.9220 +20 84960 0.5040 +20 85014 0.4100 +20 119391 0.4400 +20 158056 0.4610 +21 24 0.4040 +21 362 0.5800 +21 1407 0.4350 +21 1439 0.4730 +21 2294 0.4030 +21 2302 0.4570 +21 2908 0.4710 +21 5073 0.4340 +21 5130 0.4180 +21 5826 0.4640 +21 6440 0.8990 +21 6441 0.5900 +21 7080 0.6250 +21 7356 0.5060 +21 8204 0.4150 +21 10061 0.4070 +21 10257 0.5980 +21 10536 0.5490 +21 26277 0.4020 +21 27074 0.4500 +21 51081 0.4410 +21 51750 0.4890 +21 79888 0.6190 +21 84525 0.5050 +21 117156 0.4470 +21 653509 0.7110 +21 727897 0.4630 +21 729238 0.6620 +21 114483834 0.4040 +22 23 0.5920 +22 48 0.8710 +22 50 0.5750 +22 210 0.4050 +22 211 0.4810 +22 212 0.9070 +22 472 0.4100 +22 773 0.4130 +22 1352 0.4850 +22 1355 0.4020 +22 1371 0.5180 +22 1854 0.4140 +22 2230 0.5660 +22 2232 0.5950 +22 2235 0.9060 +22 2395 0.7510 +22 2671 0.5660 +22 2677 0.5690 +22 3313 0.5600 +22 3476 0.4650 +22 3658 0.5430 +22 4682 0.9380 +22 4891 0.5150 +22 5230 0.5160 +22 5498 0.7390 +22 6059 0.6350 +22 7037 0.6260 +22 7274 0.4580 +22 7389 0.4390 +22 7390 0.5060 +22 8233 0.4310 +22 9054 0.7820 +22 9391 0.6300 +22 10061 0.5890 +22 10101 0.8700 +22 10539 0.6290 +22 10560 0.5130 +22 10939 0.4110 +22 11019 0.6380 +22 11194 0.6750 +22 23456 0.7910 +22 23479 0.7460 +22 23585 0.4550 +22 23601 0.4020 +22 27158 0.6670 +22 27247 0.7190 +22 27304 0.4410 +22 28982 0.5300 +22 51027 0.4650 +22 51067 0.4430 +22 51095 0.4100 +22 51132 0.5100 +22 51218 0.8250 +22 51312 0.8860 +22 51522 0.8110 +22 51629 0.5250 +22 51647 0.5560 +22 53344 0.4720 +22 54977 0.7850 +22 55210 0.5590 +22 55240 0.4050 +22 55324 0.4570 +22 55930 0.4280 +22 57002 0.4330 +22 57019 0.6550 +22 57128 0.7190 +22 64210 0.5970 +22 64428 0.7080 +22 80224 0.5690 +22 80324 0.6320 +22 81689 0.7300 +22 81894 0.7360 +22 83858 0.4090 +22 84191 0.5270 +22 84932 0.4280 +22 112812 0.6640 +22 122961 0.7190 +22 150274 0.7840 +22 200205 0.7130 +22 220064 0.4540 +22 388962 0.5150 +22 114483834 0.5830 +23 24 0.4110 +23 190 0.7250 +23 211 0.4900 +23 368 0.4420 +23 689 0.5750 +23 972 0.5300 +23 1660 0.9210 +23 1937 0.7740 +23 1965 0.6870 +23 1968 0.5770 +23 1982 0.5270 +23 2058 0.4910 +23 2178 0.5350 +23 2197 0.4560 +23 2323 0.5330 +23 2618 0.4200 +23 2794 0.5470 +23 2820 0.5900 +23 2968 0.4370 +23 2990 0.4670 +23 3692 0.4380 +23 3921 0.4780 +23 4733 0.4060 +23 4736 0.9530 +23 4946 0.5240 +23 5245 0.4190 +23 5303 0.5650 +23 5460 0.4360 +23 5469 0.6100 +23 5826 0.5020 +23 6059 0.8630 +23 6122 0.5990 +23 6123 0.5740 +23 6124 0.5960 +23 6125 0.7910 +23 6128 0.9210 +23 6129 0.5150 +23 6130 0.7710 +23 6132 0.9520 +23 6133 0.5930 +23 6135 0.9800 +23 6136 0.4450 +23 6139 0.5620 +23 6141 0.9340 +23 6142 0.9230 +23 6143 0.9470 +23 6147 0.8100 +23 6152 0.9190 +23 6154 0.5490 +23 6156 0.9180 +23 6157 0.4430 +23 6160 0.9230 +23 6161 0.9120 +23 6169 0.9290 +23 6170 0.9170 +23 6171 0.9200 +23 6173 0.9090 +23 6183 0.6080 +23 6187 0.5690 +23 6188 0.7890 +23 6193 0.5900 +23 6201 0.4160 +23 6203 0.5960 +23 6205 0.7700 +23 6207 0.5800 +23 6208 0.5410 +23 6209 0.7920 +23 6210 0.4150 +23 6217 0.5960 +23 6222 0.8120 +23 6224 0.5610 +23 6227 0.9240 +23 6228 0.9620 +23 6231 0.9180 +23 6234 0.9430 +23 6235 0.9520 +23 6833 0.4140 +23 6908 0.5040 +23 6941 0.5080 +23 7124 0.4290 +23 7280 0.5020 +23 7407 0.5090 +23 7726 0.5790 +23 8449 0.4670 +23 8662 0.4020 +23 8663 0.4150 +23 8664 0.4160 +23 8667 0.6430 +23 8672 0.4780 +23 8890 0.4630 +23 8894 0.6140 +23 9349 0.7900 +23 9533 0.6960 +23 9553 0.7890 +23 9611 0.4560 +23 9801 0.7960 +23 9858 0.4710 +23 9879 0.4490 +23 10057 0.4340 +23 10058 0.4640 +23 10060 0.4150 +23 10061 0.5110 +23 10155 0.4730 +23 10347 0.4060 +23 10351 0.4240 +23 10594 0.4120 +23 10946 0.4530 +23 10985 0.6960 +23 11194 0.4320 +23 11222 0.5810 +23 11224 0.8080 +23 11270 0.4280 +23 23076 0.4310 +23 23185 0.9110 +23 23363 0.5140 +23 23405 0.4120 +23 23461 0.4790 +23 23476 0.5370 +23 23521 0.5530 +23 23640 0.5000 +23 25873 0.9220 +23 25962 0.4200 +23 28998 0.5370 +23 29093 0.5390 +23 29102 0.4420 +23 51021 0.7730 +23 51069 0.5170 +23 51073 0.5940 +23 51081 0.6500 +23 51082 0.5600 +23 51116 0.5170 +23 51121 0.5390 +23 51149 0.5540 +23 51264 0.8080 +23 51520 0.5670 +23 54472 0.5030 +23 54915 0.4160 +23 54948 0.5040 +23 55052 0.8150 +23 55173 0.5580 +23 55226 0.4030 +23 55272 0.6060 +23 55316 0.5150 +23 57532 0.7790 +23 63875 0.7660 +23 63931 0.5200 +23 64137 0.4260 +23 64240 0.4410 +23 64241 0.4290 +23 64374 0.5000 +23 64960 0.5620 +23 64963 0.5170 +23 64965 0.7690 +23 64968 0.7600 +23 64969 0.6030 +23 64979 0.7650 +23 64983 0.7760 +23 65005 0.5070 +23 65008 0.5270 +23 79590 0.5450 +23 80153 0.4570 +23 80352 0.4390 +23 84172 0.6460 +23 85320 0.4350 +23 87178 0.4510 +23 89845 0.5060 +23 126402 0.6320 +23 127262 0.4570 +23 140801 0.4940 +23 203068 0.5570 +23 219927 0.7930 +23 221545 0.5140 +23 285855 0.5100 +23 347487 0.4690 +23 387129 0.4940 +23 100287482 0.4690 +23 100505478 0.4940 +23 100526842 0.5320 +23 114483834 0.5190 +24 335 0.5120 +24 338 0.4120 +24 582 0.4700 +24 611 0.4100 +24 717 0.5870 +24 762 0.4990 +24 773 0.4340 +24 778 0.4740 +24 1121 0.4030 +24 1258 0.8530 +24 1259 0.7430 +24 1261 0.6740 +24 1406 0.7710 +24 1411 0.4800 +24 1417 0.4120 +24 1524 0.4690 +24 2202 0.4710 +24 2304 0.4210 +24 2652 0.4460 +24 2677 0.4410 +24 2779 0.4660 +24 2780 0.5980 +24 2979 0.6720 +24 3000 0.8280 +24 3075 0.5430 +24 3078 0.4730 +24 3420 0.6170 +24 3614 0.6680 +24 3617 0.5100 +24 3664 0.5850 +24 3920 0.4260 +24 4647 0.6340 +24 4901 0.5810 +24 4935 0.4100 +24 5145 0.7670 +24 5146 0.5790 +24 5148 0.7000 +24 5149 0.5170 +24 5158 0.6510 +24 5243 0.4050 +24 5826 0.4910 +24 5949 0.5630 +24 5957 0.4030 +24 5959 0.7220 +24 5961 0.8910 +24 5995 0.4740 +24 6010 0.8170 +24 6011 0.4940 +24 6017 0.6120 +24 6094 0.6900 +24 6100 0.6200 +24 6103 0.9030 +24 6121 0.8680 +24 6247 0.7710 +24 6785 0.8940 +24 6890 0.4270 +24 6891 0.4380 +24 7078 0.4310 +24 7287 0.8120 +24 7399 0.7830 +24 7401 0.5070 +24 7439 0.8110 +24 7474 0.4370 +24 7753 0.4100 +24 8754 0.5070 +24 8842 0.8040 +24 9094 0.5970 +24 9129 0.6440 +24 9187 0.5460 +24 9227 0.6280 +24 9364 0.4080 +24 9411 0.5640 +24 9657 0.4920 +24 9935 0.6290 +24 10002 0.7190 +24 10058 0.4260 +24 10083 0.4670 +24 10210 0.5990 +24 10461 0.6860 +24 10497 0.4890 +24 10516 0.5790 +24 10594 0.6470 +24 10765 0.4210 +24 10878 0.4870 +24 11023 0.5420 +24 11194 0.4230 +24 22999 0.6470 +24 23020 0.6530 +24 23093 0.4810 +24 23314 0.4080 +24 23457 0.4060 +24 23746 0.7610 +24 25794 0.6990 +24 26121 0.7570 +24 26504 0.4720 +24 50700 0.7960 +24 50939 0.7410 +24 50945 0.4020 +24 51109 0.5420 +24 51761 0.4040 +24 54714 0.8440 +24 55812 0.5770 +24 55975 0.5830 +24 57010 0.4160 +24 57096 0.7820 +24 64072 0.4160 +24 64218 0.7320 +24 64802 0.4400 +24 79947 0.4960 +24 80184 0.7110 +24 83394 0.6770 +24 83872 0.6330 +24 84140 0.5960 +24 84830 0.4470 +24 84839 0.7680 +24 90167 0.4450 +24 92211 0.7630 +24 94137 0.5900 +24 115861 0.5730 +24 121214 0.5210 +24 130557 0.6780 +24 131890 0.4560 +24 145226 0.8310 +24 157657 0.5880 +24 169522 0.6100 +24 254173 0.4610 +24 282809 0.4260 +24 285440 0.4650 +24 346007 0.8340 +24 347853 0.4990 +24 375298 0.8220 +24 387715 0.5710 +24 388531 0.4960 +24 388939 0.7610 +24 768206 0.7150 +25 27 0.9810 +25 60 0.5540 +25 142 0.7890 +25 207 0.4090 +25 213 0.4360 +25 240 0.6050 +25 290 0.5750 +25 308 0.6080 +25 317 0.6020 +25 322 0.7280 +25 328 0.4510 +25 329 0.4420 +25 330 0.4540 +25 331 0.6410 +25 351 0.5360 +25 367 0.5110 +25 387 0.4760 +25 445 0.4340 +25 472 0.9880 +25 545 0.5090 +25 573 0.4430 +25 580 0.5940 +25 595 0.7420 +25 596 0.6730 +25 598 0.7220 +25 604 0.4630 +25 613 0.9960 +25 640 0.4290 +25 672 0.9560 +25 675 0.5140 +25 780 0.4980 +25 811 0.6430 +25 836 0.6080 +25 839 0.4960 +25 841 0.4710 +25 842 0.6290 +25 857 0.6490 +25 860 0.8230 +25 861 0.8710 +25 862 0.5880 +25 865 0.6910 +25 867 0.9960 +25 894 0.7100 +25 896 0.5750 +25 914 0.4390 +25 920 0.5250 +25 921 0.4450 +25 924 0.5050 +25 925 0.5090 +25 930 0.6090 +25 933 0.5720 +25 945 0.6310 +25 947 0.7830 +25 952 0.5940 +25 960 0.4040 +25 973 0.4310 +25 983 0.4540 +25 999 0.4330 +25 1000 0.6590 +25 1002 0.5380 +25 1013 0.5380 +25 1017 0.5300 +25 1019 0.7290 +25 1020 0.9000 +25 1021 0.5600 +25 1026 0.8780 +25 1027 0.7460 +25 1028 0.5540 +25 1029 0.7630 +25 1030 0.4630 +25 1050 0.5700 +25 1111 0.4940 +25 1119 0.4510 +25 1163 0.4460 +25 1291 0.4220 +25 1385 0.4780 +25 1387 0.5780 +25 1398 0.9990 +25 1399 0.9980 +25 1432 0.6350 +25 1436 0.5280 +25 1437 0.6510 +25 1440 0.6830 +25 1441 0.6890 +25 1495 0.5460 +25 1496 0.5150 +25 1499 0.9490 +25 1642 0.4470 +25 1655 0.4630 +25 1725 0.4590 +25 1785 0.5690 +25 1786 0.4320 +25 1788 0.5910 +25 1791 0.6380 +25 1793 0.4070 +25 1796 0.9340 +25 1869 0.4370 +25 1879 0.6370 +25 1946 0.5900 +25 1950 0.5170 +25 1956 0.8610 +25 1969 0.9510 +25 2009 0.4130 +25 2011 0.4640 +25 2017 0.5070 +25 2033 0.6730 +25 2041 0.9450 +25 2042 0.9580 +25 2043 0.9450 +25 2044 0.9630 +25 2045 0.9330 +25 2046 0.9400 +25 2047 0.9400 +25 2048 0.9580 +25 2049 0.9430 +25 2050 0.9470 +25 2051 0.9070 +25 2056 0.4970 +25 2057 0.5240 +25 2059 0.4540 +25 2064 0.7310 +25 2065 0.6210 +25 2066 0.6870 +25 2071 0.5160 +25 2099 0.5430 +25 2120 0.9320 +25 2122 0.4750 +25 2125 0.9600 +25 2130 0.5230 +25 2146 0.6060 +25 2237 0.5230 +25 2264 0.4080 +25 2268 0.5590 +25 2308 0.4410 +25 2309 0.4920 +25 2321 0.4590 +25 2322 0.4950 +25 2323 0.4180 +25 2335 0.9630 +25 2353 0.6100 +25 2444 0.4530 +25 2475 0.6920 +25 2526 0.4100 +25 2534 0.9490 +25 2547 0.7630 +25 2597 0.5210 +25 2623 0.4830 +25 2624 0.5100 +25 2767 0.5260 +25 2776 0.4530 +25 2778 0.4940 +25 2803 0.6020 +25 2810 0.6720 +25 2885 0.9990 +25 2887 0.7900 +25 2889 0.7760 +25 2909 0.5630 +25 2932 0.5010 +25 2999 0.4290 +25 3021 0.4760 +25 3055 0.5670 +25 3059 0.4990 +25 3065 0.4150 +25 3071 0.5380 +25 3084 0.4970 +25 3091 0.5000 +25 3106 0.5010 +25 3195 0.7560 +25 3205 0.6590 +25 3265 0.7820 +25 3308 0.7220 +25 3312 0.4820 +25 3320 0.9830 +25 3326 0.9300 +25 3357 0.4040 +25 3417 0.6140 +25 3418 0.5940 +25 3428 0.4010 +25 3439 0.6240 +25 3440 0.6070 +25 3441 0.6240 +25 3442 0.6350 +25 3443 0.6350 +25 3444 0.6350 +25 3445 0.6350 +25 3446 0.6350 +25 3447 0.6350 +25 3448 0.6350 +25 3449 0.6350 +25 3451 0.6230 +25 3452 0.6350 +25 3458 0.4230 +25 3480 0.5250 +25 3558 0.4180 +25 3562 0.7640 +25 3563 0.4180 +25 3565 0.5530 +25 3569 0.5290 +25 3574 0.6120 +25 3630 0.4440 +25 3636 0.6960 +25 3667 0.5660 +25 3684 0.4200 +25 3689 0.4050 +25 3702 0.4600 +25 3716 0.4820 +25 3725 0.7840 +25 3815 0.6640 +25 3845 0.7030 +25 3984 0.4620 +25 4067 0.4670 +25 4087 0.4540 +25 4088 0.4400 +25 4089 0.5160 +25 4137 0.6190 +25 4170 0.7530 +25 4193 0.8960 +25 4194 0.5380 +25 4205 0.5300 +25 4208 0.5940 +25 4209 0.6630 +25 4214 0.4760 +25 4254 0.7020 +25 4292 0.4810 +25 4297 0.6840 +25 4298 0.6130 +25 4299 0.8450 +25 4300 0.6260 +25 4311 0.5740 +25 4352 0.5090 +25 4353 0.4850 +25 4361 0.7310 +25 4438 0.5850 +25 4439 0.6640 +25 4440 0.4300 +25 4602 0.4630 +25 4609 0.7850 +25 4613 0.4310 +25 4629 0.6020 +25 4683 0.5480 +25 4684 0.4220 +25 4690 0.8750 +25 4739 0.7730 +25 4763 0.5450 +25 4790 0.4900 +25 4792 0.5690 +25 4835 0.5410 +25 4851 0.6410 +25 4869 0.7040 +25 4893 0.7040 +25 4914 0.9580 +25 4915 0.9100 +25 4926 0.5400 +25 4928 0.6760 +25 4968 0.5140 +25 5052 0.9270 +25 5062 0.4060 +25 5071 0.6870 +25 5079 0.6230 +25 5087 0.7290 +25 5094 0.6070 +25 5116 0.5260 +25 5159 0.5800 +25 5243 0.5240 +25 5289 0.9470 +25 5290 0.7630 +25 5293 0.4030 +25 5295 0.8320 +25 5315 0.4250 +25 5335 0.4790 +25 5371 0.5170 +25 5524 0.5940 +25 5573 0.4120 +25 5579 0.4220 +25 5580 0.6500 +25 5591 0.8020 +25 5594 0.7240 +25 5599 0.4730 +25 5600 0.6150 +25 5608 0.4300 +25 5688 0.8120 +25 5728 0.6500 +25 5770 0.5740 +25 5771 0.5870 +25 5777 0.4370 +25 5781 0.6030 +25 5782 0.5610 +25 5788 0.5730 +25 5829 0.7440 +25 5879 0.5740 +25 5880 0.9400 +25 5881 0.9190 +25 5883 0.4500 +25 5888 0.9150 +25 5890 0.6100 +25 5893 0.8220 +25 5894 0.5320 +25 5903 0.5410 +25 5914 0.7190 +25 5921 0.4740 +25 5925 0.9800 +25 5970 0.4350 +25 5989 0.6050 +25 6091 0.9280 +25 6092 0.9250 +25 6198 0.6060 +25 6300 0.6010 +25 6383 0.4080 +25 6387 0.4620 +25 6427 0.5090 +25 6452 0.8470 +25 6461 0.4890 +25 6464 0.9910 +25 6502 0.5990 +25 6513 0.5660 +25 6580 0.4380 +25 6586 0.4600 +25 6598 0.5250 +25 6608 0.6480 +25 6615 0.6090 +25 6622 0.8230 +25 6654 0.7450 +25 6655 0.6250 +25 6714 0.6800 +25 6733 0.4310 +25 6764 0.6440 +25 6772 0.6990 +25 6774 0.6640 +25 6776 0.9800 +25 6777 0.9830 +25 6790 0.4840 +25 6850 0.5970 +25 6886 0.4820 +25 6929 0.8340 +25 7013 0.4110 +25 7015 0.6030 +25 7040 0.4470 +25 7046 0.4940 +25 7066 0.4490 +25 7112 0.4030 +25 7113 0.4670 +25 7124 0.4790 +25 7150 0.4720 +25 7157 0.9090 +25 7161 0.9090 +25 7307 0.4780 +25 7408 0.7240 +25 7409 0.7660 +25 7412 0.4820 +25 7414 0.5380 +25 7441 0.4580 +25 7490 0.6110 +25 7514 0.4110 +25 7520 0.5550 +25 7529 0.7590 +25 7531 0.7180 +25 7532 0.8670 +25 7533 0.8330 +25 7534 0.7370 +25 7750 0.4110 +25 7837 0.4510 +25 7852 0.4170 +25 7874 0.5090 +25 7913 0.6010 +25 8021 0.9070 +25 8028 0.4960 +25 8030 0.5720 +25 8233 0.4170 +25 8290 0.4680 +25 8312 0.4070 +25 8356 0.4730 +25 8454 0.4950 +25 8470 0.8380 +25 8531 0.4280 +25 8650 0.6310 +25 8651 0.7570 +25 8660 0.4940 +25 8661 0.5760 +25 8678 0.8730 +25 8767 0.4310 +25 8878 0.4960 +25 8936 0.7680 +25 8976 0.6350 +25 9021 0.7790 +25 9043 0.6600 +25 9046 0.7390 +25 9051 0.8280 +25 9253 0.6350 +25 9261 0.5230 +25 9306 0.5280 +25 9321 0.4430 +25 9353 0.7250 +25 9402 0.4030 +25 9429 0.4880 +25 9564 0.8560 +25 9610 0.9970 +25 9846 0.8550 +25 9883 0.5860 +25 9972 0.4520 +25 10006 0.9980 +25 10013 0.4200 +25 10018 0.5420 +25 10111 0.5010 +25 10152 0.9810 +25 10163 0.7790 +25 10174 0.6310 +25 10188 0.4180 +25 10273 0.7750 +25 10298 0.6680 +25 10320 0.8450 +25 10399 0.5220 +25 10413 0.8860 +25 10419 0.5260 +25 10458 0.4970 +25 10486 0.5970 +25 10487 0.6100 +25 10524 0.6440 +25 10536 0.4590 +25 10572 0.4220 +25 10580 0.7960 +25 10673 0.5440 +25 10755 0.5360 +25 10772 0.4170 +25 10782 0.5230 +25 10787 0.8280 +25 10810 0.5240 +25 10971 0.8100 +25 10989 0.4350 +25 11073 0.6120 +25 11116 0.5520 +25 11140 0.6170 +25 11315 0.4010 +25 11325 0.4300 +25 22806 0.5510 +25 22863 0.8100 +25 23118 0.4430 +25 23122 0.5410 +25 23191 0.5110 +25 23332 0.5570 +25 23429 0.5890 +25 23476 0.4660 +25 23552 0.4540 +25 23616 0.5620 +25 25759 0.9080 +25 25937 0.7900 +25 26040 0.6620 +25 26127 0.4460 +25 26524 0.4130 +25 26999 0.5740 +25 27436 0.6260 +25 29110 0.4820 +25 29126 0.4320 +25 29760 0.6240 +25 29933 0.5880 +25 29967 0.4190 +25 30012 0.7390 +25 30837 0.5430 +25 50937 0.6460 +25 51185 0.4180 +25 51310 0.5710 +25 51466 0.6180 +25 51507 0.4860 +25 53358 0.9120 +25 54205 0.4780 +25 54206 0.4100 +25 54707 0.4320 +25 54790 0.6040 +25 54806 0.8400 +25 55294 0.7180 +25 55740 0.9630 +25 55824 0.4490 +25 55845 0.5190 +25 56961 0.4690 +25 57181 0.4280 +25 57506 0.7230 +25 79705 0.7720 +25 79930 0.4960 +25 80018 0.6190 +25 81608 0.6870 +25 81669 0.5510 +25 81928 0.8000 +25 83660 0.6650 +25 84260 0.5710 +25 84287 0.8280 +25 84295 0.6590 +25 84959 0.5780 +25 91653 0.5220 +25 91746 0.5590 +25 91768 0.6300 +25 92241 0.5890 +25 117581 0.4570 +25 120892 0.4830 +25 124540 0.5620 +25 129138 0.4200 +25 133482 0.4110 +25 137902 0.4340 +25 143471 0.4460 +25 171017 0.5080 +25 171023 0.6780 +25 285220 0.9260 +25 285489 0.4350 +25 285527 0.4070 +25 286530 0.5690 +25 342667 0.4160 +25 374569 0.6040 +25 375790 0.5070 +25 399687 0.5650 +25 399694 0.9050 +25 440093 0.4680 +25 440686 0.4680 +25 653604 0.4680 +25 728642 0.4420 +25 100271849 0.5270 +25 100288687 0.4480 +25 102723407 0.6660 +26 217 0.9390 +26 218 0.5230 +26 219 0.9320 +26 221 0.5220 +26 223 0.9360 +26 224 0.9460 +26 501 0.9340 +26 1366 0.6030 +26 1548 0.4440 +26 1610 0.4380 +26 1644 0.9720 +26 2169 0.5860 +26 2806 0.5000 +26 2877 0.4100 +26 3067 0.9630 +26 3176 0.9900 +26 3185 0.4890 +26 3240 0.4090 +26 3269 0.4450 +26 3274 0.4460 +26 3553 0.4260 +26 3569 0.4490 +26 4013 0.4040 +26 4057 0.4870 +26 4128 0.9700 +26 4129 0.9710 +26 4953 0.9640 +26 5409 0.6660 +26 5979 0.5560 +26 6303 0.9390 +26 6476 0.4680 +26 6611 0.5260 +26 6723 0.9500 +26 7054 0.4560 +26 7073 0.5170 +26 7082 0.5830 +26 7124 0.4350 +26 8659 0.4030 +26 8972 0.4450 +26 9076 0.5990 +26 11185 0.9120 +26 11255 0.4490 +26 23193 0.4270 +26 26275 0.4290 +26 54498 0.4430 +26 55173 0.4220 +26 55365 0.4620 +26 57129 0.4040 +26 57591 0.6900 +26 59340 0.4200 +26 60488 0.4100 +26 64432 0.4030 +26 64960 0.4310 +26 64969 0.4140 +26 65003 0.4170 +26 79814 0.9430 +26 84263 0.4080 +26 84872 0.5260 +26 112483 0.9000 +26 113451 0.6600 +26 137872 0.4790 +26 196743 0.7120 +26 220002 0.4570 +26 259307 0.9050 +26 100506658 0.6420 +27 59 0.4140 +27 478 0.4570 +27 712 0.4060 +27 867 0.4820 +27 1387 0.4140 +27 1398 0.9900 +27 1399 0.9620 +27 1855 0.4180 +27 1956 0.7820 +27 2017 0.7700 +27 2048 0.5940 +27 2057 0.5210 +27 2064 0.6870 +27 2065 0.4450 +27 2066 0.4530 +27 2120 0.8630 +27 2309 0.4450 +27 2322 0.7100 +27 2323 0.5260 +27 2335 0.4540 +27 2885 0.4870 +27 2909 0.4610 +27 3059 0.6610 +27 3195 0.4790 +27 3265 0.4350 +27 3688 0.4060 +27 3716 0.4050 +27 3717 0.4210 +27 3845 0.4240 +27 4323 0.4550 +27 4330 0.4820 +27 4629 0.4140 +27 4690 0.6210 +27 4790 0.4550 +27 4855 0.4330 +27 5159 0.4920 +27 5295 0.5080 +27 5335 0.6190 +27 5688 0.5980 +27 5782 0.5750 +27 5805 0.4510 +27 5879 0.6500 +27 5880 0.9260 +27 5881 0.9260 +27 6091 0.6380 +27 6405 0.5640 +27 6774 0.6220 +27 6776 0.5070 +27 6777 0.5180 +27 7204 0.4050 +27 7408 0.4800 +27 8021 0.5970 +27 8440 0.4270 +27 8470 0.4070 +27 8503 0.5300 +27 8563 0.5010 +27 8936 0.5450 +27 9051 0.5540 +27 9271 0.4340 +27 9322 0.5010 +27 9353 0.6410 +27 9529 0.4200 +27 9610 0.9840 +27 10006 0.6320 +27 10152 0.7700 +27 10320 0.4490 +27 10486 0.5970 +27 10487 0.6260 +27 10519 0.5040 +27 10787 0.6300 +27 23075 0.4270 +27 23122 0.5410 +27 23305 0.5910 +27 23332 0.5410 +27 25894 0.4850 +27 30012 0.5080 +27 51466 0.4610 +27 51703 0.5620 +27 55740 0.4740 +27 79659 0.4510 +27 92241 0.5070 +27 126374 0.4040 +27 285489 0.5940 +27 286530 0.5550 +27 375790 0.6930 +28 2524 0.9270 +28 2525 0.9120 +28 2526 0.9020 +28 2527 0.9040 +28 2528 0.9030 +28 5747 0.4590 +28 10690 0.9020 +28 221937 0.6030 +29 387 0.7000 +29 388 0.6020 +29 389 0.5200 +29 1800 0.5060 +29 5879 0.5110 +29 5880 0.6190 +29 5881 0.5070 +29 7074 0.4790 +29 9138 0.4590 +29 10672 0.4010 +29 23370 0.4120 +29 54738 0.4190 +29 91300 0.4070 +30 31 0.6440 +30 32 0.6440 +30 33 0.9790 +30 34 0.8110 +30 35 0.9920 +30 36 0.9910 +30 37 0.9790 +30 38 0.9460 +30 39 0.9230 +30 47 0.9100 +30 50 0.4320 +30 51 0.9980 +30 215 0.4860 +30 216 0.4030 +30 217 0.7110 +30 219 0.4030 +30 220 0.4030 +30 223 0.6080 +30 224 0.5930 +30 225 0.4150 +30 498 0.4370 +30 501 0.5500 +30 549 0.7340 +30 788 0.5050 +30 847 0.5260 +30 1103 0.4850 +30 1374 0.4950 +30 1376 0.7480 +30 1384 0.6450 +30 1431 0.9420 +30 1622 0.6270 +30 1629 0.8480 +30 1632 0.8250 +30 1666 0.6370 +30 1737 0.8910 +30 1738 0.4660 +30 1743 0.8520 +30 1891 0.6370 +30 1892 0.9770 +30 1962 0.9980 +30 2108 0.7290 +30 2109 0.5170 +30 2110 0.5380 +30 2167 0.4420 +30 2168 0.4370 +30 2173 0.4790 +30 2180 0.7510 +30 2181 0.6380 +30 2182 0.6210 +30 2194 0.5360 +30 2203 0.4190 +30 2230 0.4950 +30 2272 0.4120 +30 2639 0.7230 +30 2752 0.4220 +30 2819 0.4260 +30 2821 0.4020 +30 3028 0.9690 +30 3030 0.9970 +30 3032 0.9520 +30 3033 0.9550 +30 3155 0.9650 +30 3156 0.4880 +30 3157 0.9890 +30 3158 0.9900 +30 3242 0.6020 +30 3248 0.5550 +30 3295 0.9990 +30 3417 0.4840 +30 3712 0.7080 +30 4191 0.4550 +30 4193 0.4550 +30 4194 0.4550 +30 4199 0.5140 +30 4329 0.9520 +30 4597 0.5050 +30 4598 0.6950 +30 4705 0.4020 +30 4723 0.4580 +30 4728 0.5490 +30 5019 0.9420 +30 5091 0.4390 +30 5095 0.9480 +30 5096 0.9550 +30 5105 0.5140 +30 5189 0.5970 +30 5190 0.5640 +30 5191 0.9950 +30 5192 0.8910 +30 5194 0.8870 +30 5195 0.7480 +30 5211 0.4090 +30 5264 0.8030 +30 5465 0.4360 +30 5824 0.5470 +30 5825 0.5520 +30 5828 0.5840 +30 5830 0.9510 +30 6122 0.4470 +30 6188 0.5810 +30 6233 0.5070 +30 6296 0.4810 +30 6319 0.4700 +30 6342 0.9820 +30 6389 0.7120 +30 6390 0.4620 +30 6576 0.4580 +30 7283 0.4350 +30 7311 0.5160 +30 7314 0.5160 +30 7316 0.5190 +30 7321 0.5520 +30 7322 0.5510 +30 7323 0.5540 +30 7419 0.5450 +30 7915 0.5130 +30 7923 0.5520 +30 8309 0.9490 +30 8310 0.9950 +30 8443 0.8810 +30 8504 0.4650 +30 8540 0.8020 +30 8799 0.4830 +30 8800 0.5730 +30 8801 0.8660 +30 8802 0.9080 +30 8803 0.8600 +30 8854 0.4020 +30 9085 0.6400 +30 9399 0.5680 +30 9425 0.6480 +30 9524 0.7560 +30 9862 0.4130 +30 10005 0.5610 +30 10449 0.9350 +30 10455 0.9870 +30 10797 0.4770 +30 10873 0.4170 +30 10901 0.4980 +30 10999 0.4070 +30 11001 0.4810 +30 23175 0.4270 +30 23205 0.6450 +30 23305 0.7060 +30 23600 0.6280 +30 26063 0.6440 +30 26275 0.7260 +30 27034 0.5700 +30 27349 0.4060 +30 28976 0.7460 +30 51084 0.9330 +30 51102 0.4270 +30 51119 0.4420 +30 51144 0.5630 +30 51171 0.4710 +30 51179 0.7000 +30 51268 0.4060 +30 51555 0.4750 +30 51703 0.7080 +30 54511 0.9470 +30 54677 0.5670 +30 54988 0.4440 +30 54995 0.4580 +30 55268 0.8450 +30 55289 0.5260 +30 55670 0.5950 +30 55825 0.7210 +30 55862 0.9540 +30 55902 0.9180 +30 56898 0.7720 +30 60481 0.4830 +30 64064 0.9260 +30 64087 0.5270 +30 64577 0.4110 +30 65985 0.5640 +30 79154 0.4580 +30 79611 0.8970 +30 79777 0.5310 +30 79783 0.4600 +30 80221 0.5650 +30 80724 0.4620 +30 81616 0.6170 +30 83693 0.4550 +30 84129 0.4910 +30 84263 0.9160 +30 84320 0.4810 +30 84532 0.9110 +30 84693 0.4100 +30 84869 0.4520 +30 91452 0.5850 +30 92960 0.4160 +30 115817 0.4220 +30 116285 0.4720 +30 123876 0.4550 +30 124359 0.6400 +30 126129 0.4260 +30 126133 0.4100 +30 132949 0.5320 +30 140856 0.5130 +30 197322 0.4670 +30 201562 0.4020 +30 219743 0.9560 +30 253175 0.6400 +30 284422 0.5760 +30 341392 0.4400 +30 348158 0.4410 +30 376497 0.5380 +30 414149 0.4840 +30 441150 0.8350 +30 109703458 0.9120 +30 122405565 0.5760 +31 32 0.9660 +31 33 0.6390 +31 34 0.6740 +31 35 0.5640 +31 36 0.4490 +31 37 0.6060 +31 38 0.9620 +31 39 0.9590 +31 47 0.9860 +31 51 0.7780 +31 60 0.5160 +31 123 0.5880 +31 128 0.4350 +31 130 0.4330 +31 207 0.4970 +31 239 0.7270 +31 338 0.5150 +31 383 0.5340 +31 384 0.5110 +31 435 0.4660 +31 445 0.8160 +31 509 0.4530 +31 672 0.9950 +31 696 0.4170 +31 790 0.4890 +31 867 0.4090 +31 875 0.4900 +31 885 0.4720 +31 948 0.6860 +31 949 0.6530 +31 950 0.6480 +31 988 0.4160 +31 1050 0.5230 +31 1357 0.4310 +31 1373 0.4540 +31 1374 0.8480 +31 1375 0.5530 +31 1376 0.6180 +31 1431 0.9200 +31 1452 0.4390 +31 1581 0.5460 +31 1595 0.4940 +31 1632 0.4910 +31 1666 0.5110 +31 1717 0.4350 +31 1718 0.4590 +31 1737 0.9370 +31 1892 0.6110 +31 1962 0.6640 +31 2058 0.5870 +31 2166 0.6130 +31 2167 0.6150 +31 2168 0.4390 +31 2170 0.6020 +31 2171 0.4500 +31 2180 0.8070 +31 2181 0.7970 +31 2182 0.6200 +31 2194 0.9980 +31 2203 0.4680 +31 2222 0.4710 +31 2224 0.4930 +31 2308 0.4310 +31 2475 0.4860 +31 2538 0.5940 +31 2539 0.5610 +31 2597 0.5840 +31 2618 0.8930 +31 2639 0.4080 +31 2642 0.4680 +31 2645 0.5020 +31 2746 0.4680 +31 2806 0.5000 +31 2819 0.4700 +31 2820 0.5620 +31 2821 0.4040 +31 2875 0.5110 +31 2997 0.4120 +31 2998 0.4350 +31 3030 0.6930 +31 3032 0.6540 +31 3033 0.5250 +31 3099 0.4040 +31 3141 0.9610 +31 3156 0.7850 +31 3157 0.6640 +31 3158 0.4520 +31 3295 0.5570 +31 3417 0.6680 +31 3422 0.4020 +31 3485 0.4080 +31 3630 0.6290 +31 3638 0.6250 +31 3667 0.6470 +31 3952 0.8240 +31 3991 0.6800 +31 3992 0.4520 +31 4023 0.6210 +31 4047 0.4430 +31 4191 0.4800 +31 4199 0.6640 +31 4200 0.4280 +31 4329 0.9190 +31 4547 0.5110 +31 4597 0.4320 +31 4852 0.5390 +31 4935 0.4430 +31 4939 0.6300 +31 5091 0.7750 +31 5095 0.7400 +31 5096 0.8520 +31 5105 0.5890 +31 5106 0.6710 +31 5140 0.4610 +31 5166 0.5060 +31 5188 0.8180 +31 5211 0.4230 +31 5213 0.4650 +31 5226 0.4660 +31 5243 0.4090 +31 5244 0.4310 +31 5313 0.6070 +31 5315 0.5030 +31 5346 0.5030 +31 5465 0.7210 +31 5467 0.4450 +31 5468 0.7030 +31 5471 0.8460 +31 5515 0.4460 +31 5562 0.9810 +31 5563 0.9560 +31 5564 0.9560 +31 5565 0.9340 +31 5571 0.9530 +31 5575 0.4680 +31 5577 0.4440 +31 5708 0.4220 +31 5832 0.8760 +31 6195 0.5280 +31 6307 0.4500 +31 6319 0.9370 +31 6347 0.5570 +31 6472 0.4220 +31 6510 0.5590 +31 6513 0.4630 +31 6514 0.4740 +31 6517 0.5830 +31 6576 0.5080 +31 6646 0.4320 +31 6713 0.5680 +31 6720 0.9810 +31 6721 0.7240 +31 6794 0.5260 +31 6871 0.6330 +31 7040 0.5460 +31 7069 0.7840 +31 7086 0.4420 +31 7124 0.5750 +31 7157 0.4320 +31 7350 0.5230 +31 7351 0.4300 +31 7352 0.6060 +31 7416 0.4060 +31 7436 0.4020 +31 7923 0.4630 +31 8192 0.4680 +31 8277 0.4450 +31 8309 0.5770 +31 8310 0.6830 +31 8435 0.4050 +31 8565 0.4080 +31 8647 0.4750 +31 8694 0.7460 +31 8801 0.8570 +31 8802 0.8440 +31 8803 0.8660 +31 8833 0.5080 +31 9213 0.4640 +31 9370 0.7390 +31 9415 0.5040 +31 9563 0.5420 +31 9607 0.4940 +31 9619 0.4320 +31 9971 0.4320 +31 10062 0.6260 +31 10109 0.4620 +31 10221 0.4710 +31 10449 0.6120 +31 10455 0.5760 +31 10554 0.4430 +31 10555 0.4450 +31 10606 0.5040 +31 10873 0.5850 +31 10891 0.5970 +31 10998 0.4250 +31 10999 0.4040 +31 11001 0.4690 +31 11343 0.4800 +31 22937 0.5070 +31 23135 0.4720 +31 23175 0.6710 +31 23235 0.5860 +31 23305 0.6780 +31 23411 0.5980 +31 23417 0.9660 +31 26063 0.4480 +31 26275 0.4200 +31 26291 0.4340 +31 26330 0.4010 +31 27349 0.9750 +31 28951 0.4320 +31 28976 0.4490 +31 50814 0.4090 +31 51085 0.7480 +31 51141 0.4530 +31 51422 0.9270 +31 51497 0.5720 +31 51703 0.5470 +31 53632 0.9220 +31 54677 0.4350 +31 54898 0.4510 +31 54995 0.7510 +31 55248 0.4090 +31 55278 0.5690 +31 55289 0.5330 +31 55825 0.4570 +31 55862 0.4580 +31 55902 0.9700 +31 56898 0.4300 +31 56922 0.7490 +31 57016 0.6910 +31 57104 0.6950 +31 57678 0.7270 +31 57761 0.4690 +31 57818 0.4590 +31 58526 0.6200 +31 60481 0.6340 +31 60496 0.5450 +31 64087 0.8400 +31 64240 0.5050 +31 64241 0.4700 +31 64834 0.4980 +31 64848 0.4220 +31 65985 0.5980 +31 79071 0.8680 +31 79154 0.4130 +31 79602 0.4140 +31 79611 0.4150 +31 79814 0.4740 +31 79966 0.6660 +31 79993 0.4220 +31 80339 0.4640 +31 80347 0.4510 +31 83401 0.5800 +31 84076 0.4130 +31 84263 0.4540 +31 84532 0.9570 +31 84649 0.7350 +31 84706 0.4010 +31 84803 0.4030 +31 84955 0.6200 +31 89894 0.4430 +31 92579 0.4940 +31 116255 0.4410 +31 126129 0.5550 +31 132949 0.6150 +31 134526 0.9160 +31 137964 0.5550 +31 158584 0.5670 +31 158833 0.5270 +31 197322 0.9290 +31 201562 0.4070 +31 284098 0.4040 +31 376497 0.5210 +32 33 0.6230 +32 34 0.5960 +32 35 0.5570 +32 36 0.4070 +32 37 0.5770 +32 38 0.9530 +32 39 0.9490 +32 47 0.9700 +32 51 0.7900 +32 155 0.4200 +32 220 0.4310 +32 230 0.4120 +32 383 0.4680 +32 384 0.4550 +32 435 0.4430 +32 445 0.8100 +32 471 0.5260 +32 509 0.4170 +32 672 0.4100 +32 790 0.4760 +32 875 0.4390 +32 891 0.4400 +32 948 0.5410 +32 949 0.7180 +32 950 0.4890 +32 1373 0.4510 +32 1374 0.9870 +32 1375 0.9560 +32 1376 0.5590 +32 1431 0.9010 +32 1632 0.5070 +32 1666 0.5270 +32 1737 0.9340 +32 1892 0.5440 +32 1962 0.7620 +32 2058 0.4460 +32 2166 0.5700 +32 2167 0.4830 +32 2170 0.6660 +32 2180 0.7370 +32 2181 0.7100 +32 2182 0.5240 +32 2194 0.9930 +32 2539 0.4650 +32 2597 0.4440 +32 2618 0.9200 +32 2746 0.4360 +32 2752 0.4100 +32 2799 0.4050 +32 2806 0.4190 +32 2819 0.5280 +32 2820 0.4420 +32 2997 0.4150 +32 3030 0.6440 +32 3032 0.7170 +32 3033 0.4590 +32 3141 0.9270 +32 3156 0.6050 +32 3157 0.4050 +32 3295 0.5620 +32 3630 0.5190 +32 3712 0.4020 +32 3952 0.6360 +32 3991 0.5590 +32 4023 0.4280 +32 4191 0.4390 +32 4199 0.6280 +32 4329 0.9290 +32 4522 0.4850 +32 4609 0.4400 +32 4852 0.5190 +32 4935 0.4600 +32 5091 0.7120 +32 5095 0.6880 +32 5096 0.8370 +32 5105 0.4870 +32 5166 0.4930 +32 5188 0.8160 +32 5213 0.4170 +32 5244 0.4170 +32 5313 0.5010 +32 5315 0.4070 +32 5346 0.4780 +32 5465 0.5980 +32 5467 0.4030 +32 5468 0.5030 +32 5471 0.8230 +32 5562 0.9430 +32 5563 0.9390 +32 5564 0.9290 +32 5565 0.9290 +32 5571 0.9250 +32 5832 0.7850 +32 5996 0.4220 +32 6319 0.7540 +32 6517 0.5250 +32 6576 0.5640 +32 6667 0.7560 +32 6720 0.9390 +32 6721 0.4910 +32 6785 0.4100 +32 6794 0.4110 +32 7069 0.6700 +32 8192 0.6720 +32 8309 0.4880 +32 8310 0.5840 +32 8565 0.4060 +32 8647 0.4500 +32 8694 0.5850 +32 8801 0.8490 +32 8802 0.8310 +32 8803 0.8600 +32 8833 0.6270 +32 9370 0.4490 +32 9563 0.4560 +32 9607 0.4680 +32 10109 0.4440 +32 10449 0.5900 +32 10455 0.5670 +32 10606 0.4670 +32 10797 0.5740 +32 10873 0.6220 +32 10891 0.5270 +32 23175 0.5000 +32 23305 0.4820 +32 23417 0.9560 +32 25902 0.4530 +32 26063 0.4130 +32 27349 0.9690 +32 28976 0.4100 +32 51085 0.5570 +32 51422 0.9320 +32 51497 0.5670 +32 51703 0.4480 +32 53632 0.9250 +32 54995 0.7030 +32 55268 0.4870 +32 55278 0.5670 +32 55825 0.5150 +32 55862 0.4290 +32 55902 0.9600 +32 56922 0.5950 +32 57104 0.5340 +32 57678 0.6340 +32 60481 0.4780 +32 60496 0.5390 +32 64087 0.7660 +32 64902 0.4120 +32 65985 0.4110 +32 79071 0.6510 +32 79602 0.5050 +32 79611 0.4350 +32 79814 0.6320 +32 79966 0.5710 +32 80339 0.4190 +32 83401 0.6040 +32 84263 0.4810 +32 84532 0.9500 +32 84649 0.5810 +32 84803 0.4110 +32 89894 0.4540 +32 126129 0.9520 +32 132949 0.5980 +32 134526 0.9060 +32 158584 0.5670 +32 197322 0.9240 +32 376497 0.4410 +32 441024 0.5500 +33 34 0.5810 +33 35 0.9350 +33 36 0.9310 +33 37 0.9510 +33 38 0.6710 +33 39 0.6220 +33 47 0.5200 +33 50 0.4190 +33 51 0.9720 +33 123 0.7300 +33 208 0.4440 +33 217 0.5220 +33 223 0.4960 +33 224 0.4620 +33 314 0.4480 +33 549 0.5730 +33 593 0.6450 +33 594 0.6220 +33 788 0.6260 +33 948 0.6110 +33 949 0.5730 +33 950 0.6020 +33 1374 0.7620 +33 1375 0.7050 +33 1376 0.9820 +33 1384 0.5480 +33 1431 0.5490 +33 1622 0.4850 +33 1629 0.6110 +33 1632 0.7300 +33 1666 0.6320 +33 1737 0.4510 +33 1738 0.5060 +33 1891 0.6170 +33 1892 0.9760 +33 1962 0.9770 +33 2053 0.4810 +33 2108 0.8310 +33 2109 0.8220 +33 2110 0.7430 +33 2167 0.4690 +33 2168 0.4520 +33 2170 0.5260 +33 2180 0.8680 +33 2181 0.6290 +33 2182 0.5950 +33 2194 0.7090 +33 2806 0.4890 +33 2936 0.4020 +33 3030 0.9920 +33 3032 0.9940 +33 3033 0.8900 +33 3081 0.4170 +33 3155 0.5370 +33 3158 0.6450 +33 3242 0.5250 +33 3295 0.5530 +33 3418 0.5410 +33 3558 0.4460 +33 3630 0.4190 +33 3991 0.5420 +33 4023 0.4870 +33 4191 0.4240 +33 4329 0.4760 +33 4704 0.5400 +33 4728 0.4970 +33 5009 0.4010 +33 5019 0.5880 +33 5091 0.4140 +33 5095 0.6640 +33 5096 0.7290 +33 5105 0.6170 +33 5106 0.4820 +33 5162 0.4650 +33 5166 0.6320 +33 5168 0.4410 +33 5346 0.4010 +33 5465 0.6850 +33 5467 0.5170 +33 5468 0.5350 +33 5581 0.4610 +33 6296 0.6240 +33 6319 0.4920 +33 6342 0.7050 +33 6389 0.4510 +33 6390 0.4080 +33 6517 0.4470 +33 6648 0.4660 +33 6720 0.5100 +33 7019 0.4350 +33 7350 0.6690 +33 7351 0.5060 +33 7352 0.5130 +33 7915 0.4540 +33 8050 0.4170 +33 8309 0.5190 +33 8310 0.9610 +33 8659 0.4480 +33 8660 0.4790 +33 8694 0.4870 +33 8802 0.5890 +33 9085 0.4780 +33 9399 0.5090 +33 9425 0.4780 +33 9563 0.4190 +33 9607 0.5520 +33 10449 0.9790 +33 10455 0.9070 +33 10558 0.4200 +33 10891 0.6450 +33 10965 0.4660 +33 10998 0.4880 +33 10999 0.4270 +33 11001 0.5730 +33 23171 0.4920 +33 23175 0.5350 +33 23205 0.5400 +33 23305 0.5890 +33 23408 0.5040 +33 23409 0.4760 +33 23410 0.8860 +33 23411 0.4160 +33 23417 0.5520 +33 23600 0.4250 +33 26063 0.5000 +33 26275 0.6320 +33 27034 0.4610 +33 28965 0.4010 +33 28976 0.4990 +33 29958 0.4870 +33 51004 0.4180 +33 51084 0.6290 +33 51099 0.4850 +33 51102 0.9350 +33 51144 0.4200 +33 51497 0.6070 +33 51703 0.6620 +33 54988 0.5160 +33 55268 0.6250 +33 55825 0.5060 +33 55862 0.5910 +33 55902 0.5850 +33 56898 0.4220 +33 56922 0.6310 +33 57104 0.5120 +33 57678 0.4240 +33 60481 0.4390 +33 64064 0.5220 +33 64087 0.7170 +33 65985 0.4320 +33 79611 0.4200 +33 79777 0.4680 +33 79783 0.4040 +33 80221 0.4220 +33 80724 0.4190 +33 81616 0.5480 +33 84129 0.4500 +33 84263 0.7810 +33 84320 0.4260 +33 84532 0.7230 +33 84649 0.4490 +33 84693 0.4530 +33 84842 0.4530 +33 91452 0.4260 +33 116285 0.4160 +33 123876 0.4950 +33 124359 0.4780 +33 124995 0.4980 +33 126129 0.6710 +33 127833 0.4950 +33 132949 0.6820 +33 133522 0.4210 +33 134526 0.4080 +33 137872 0.4060 +33 140856 0.4340 +33 253175 0.4780 +33 339967 0.4950 +33 341392 0.5360 +33 348158 0.4710 +33 376497 0.6200 +33 414149 0.4260 +33 109703458 0.4130 +34 35 0.4490 +34 36 0.4890 +34 37 0.7130 +34 38 0.7170 +34 39 0.5710 +34 47 0.4980 +34 50 0.4570 +34 51 0.8240 +34 191 0.4370 +34 204 0.4240 +34 217 0.5050 +34 219 0.4230 +34 223 0.7010 +34 224 0.4460 +34 291 0.5010 +34 399 0.4280 +34 506 0.4150 +34 522 0.4500 +34 549 0.5790 +34 593 0.5850 +34 594 0.6290 +34 788 0.7210 +34 845 0.5170 +34 948 0.6210 +34 949 0.5920 +34 950 0.5920 +34 1327 0.5090 +34 1374 0.7560 +34 1375 0.7320 +34 1376 0.8530 +34 1384 0.4920 +34 1387 0.4440 +34 1429 0.4180 +34 1431 0.6310 +34 1610 0.4210 +34 1622 0.5690 +34 1629 0.4350 +34 1632 0.7320 +34 1650 0.4720 +34 1666 0.7550 +34 1737 0.6420 +34 1738 0.5870 +34 1743 0.4190 +34 1757 0.5640 +34 1891 0.6460 +34 1892 0.8630 +34 1962 0.8140 +34 2053 0.4750 +34 2098 0.4470 +34 2101 0.5740 +34 2104 0.6110 +34 2108 0.9950 +34 2109 0.9910 +34 2110 0.7660 +34 2167 0.4270 +34 2168 0.6950 +34 2170 0.6000 +34 2180 0.7280 +34 2181 0.6710 +34 2182 0.5880 +34 2194 0.7360 +34 2271 0.4340 +34 2517 0.4280 +34 2538 0.4170 +34 2554 0.4310 +34 2555 0.7050 +34 2557 0.4370 +34 2560 0.7360 +34 2561 0.4780 +34 2565 0.4800 +34 2597 0.4200 +34 2739 0.4040 +34 2806 0.5040 +34 3030 0.9340 +34 3032 0.8860 +34 3033 0.9110 +34 3155 0.5190 +34 3157 0.4670 +34 3158 0.6020 +34 3295 0.7540 +34 3329 0.6440 +34 3336 0.6000 +34 3417 0.5060 +34 3418 0.5600 +34 3419 0.5660 +34 3630 0.4460 +34 3658 0.4150 +34 3712 0.4540 +34 3991 0.4970 +34 4023 0.4640 +34 4088 0.4350 +34 4089 0.4130 +34 4191 0.4980 +34 4329 0.4800 +34 4594 0.4050 +34 4704 0.5480 +34 4706 0.5150 +34 4711 0.4430 +34 4723 0.4350 +34 4728 0.5550 +34 4881 0.4200 +34 4967 0.4200 +34 5019 0.5460 +34 5091 0.4500 +34 5095 0.5330 +34 5096 0.7260 +34 5105 0.4910 +34 5106 0.4600 +34 5162 0.5700 +34 5163 0.4230 +34 5166 0.6430 +34 5226 0.5930 +34 5236 0.6790 +34 5465 0.8550 +34 5467 0.5100 +34 5468 0.5430 +34 5469 0.4350 +34 5500 0.4210 +34 5625 0.4220 +34 5830 0.4760 +34 5876 0.5460 +34 6133 0.7670 +34 6256 0.5720 +34 6296 0.5390 +34 6319 0.5180 +34 6342 0.7450 +34 6389 0.5880 +34 6390 0.5290 +34 6517 0.4950 +34 6541 0.5750 +34 6584 0.4330 +34 6604 0.4420 +34 6720 0.5600 +34 6907 0.4500 +34 7019 0.5560 +34 7350 0.5470 +34 7351 0.5440 +34 7352 0.5710 +34 7385 0.5180 +34 7915 0.4010 +34 7919 0.4350 +34 7923 0.4690 +34 8050 0.5690 +34 8192 0.7610 +34 8309 0.4450 +34 8310 0.7350 +34 8648 0.4780 +34 8694 0.4870 +34 8801 0.6920 +34 8802 0.6830 +34 8803 0.7550 +34 9054 0.4120 +34 9085 0.4780 +34 9212 0.4490 +34 9399 0.4900 +34 9425 0.4800 +34 9563 0.4400 +34 9607 0.5020 +34 9946 0.4330 +34 10005 0.4150 +34 10007 0.4580 +34 10396 0.7190 +34 10403 0.4630 +34 10426 0.6480 +34 10449 0.9370 +34 10455 0.9160 +34 10463 0.8120 +34 10498 0.4350 +34 10499 0.4650 +34 10699 0.6330 +34 10891 0.6830 +34 10955 0.4060 +34 10965 0.4370 +34 10973 0.4170 +34 10999 0.4350 +34 11001 0.5680 +34 11112 0.4820 +34 23054 0.4240 +34 23205 0.5230 +34 23305 0.5810 +34 23411 0.4140 +34 23417 0.6000 +34 23597 0.4960 +34 26063 0.5850 +34 26275 0.7290 +34 28976 0.5280 +34 29958 0.5900 +34 50945 0.4300 +34 51084 0.6290 +34 51099 0.4460 +34 51102 0.4870 +34 51129 0.5630 +34 51144 0.4090 +34 51171 0.4520 +34 51703 0.6000 +34 51727 0.4840 +34 54205 0.4510 +34 54677 0.4050 +34 54988 0.4250 +34 55066 0.5620 +34 55268 0.5500 +34 55276 0.4460 +34 55825 0.5570 +34 55856 0.4540 +34 55862 0.6280 +34 55902 0.4940 +34 56898 0.5600 +34 56922 0.5390 +34 57104 0.5050 +34 60481 0.4010 +34 64087 0.5610 +34 65985 0.4050 +34 79611 0.4550 +34 79718 0.4120 +34 79777 0.4760 +34 79783 0.4100 +34 79913 0.4290 +34 80205 0.4170 +34 80221 0.4310 +34 81616 0.6600 +34 84263 0.8350 +34 84320 0.4310 +34 84532 0.5280 +34 84649 0.4300 +34 84693 0.4940 +34 84816 0.4720 +34 84869 0.4130 +34 85378 0.6450 +34 85441 0.4370 +34 91452 0.4370 +34 96764 0.4010 +34 114112 0.4080 +34 123876 0.4600 +34 124359 0.4780 +34 124995 0.6050 +34 126129 0.6870 +34 132789 0.4800 +34 132949 0.7140 +34 133522 0.6640 +34 140856 0.4130 +34 253175 0.4780 +34 341392 0.4030 +34 348158 0.4560 +34 376497 0.6540 +34 389207 0.7950 +34 414149 0.4360 +34 641371 0.4090 +34 109703458 0.5170 +35 36 0.9480 +35 37 0.4810 +35 38 0.9670 +35 39 0.9600 +35 47 0.4280 +35 51 0.9510 +35 216 0.4430 +35 217 0.9060 +35 219 0.8850 +35 223 0.9120 +35 224 0.8830 +35 316 0.8330 +35 501 0.8870 +35 549 0.5810 +35 551 0.5640 +35 587 0.4400 +35 593 0.6810 +35 594 0.6440 +35 788 0.7900 +35 1374 0.6050 +35 1375 0.5290 +35 1376 0.9220 +35 1384 0.5080 +35 1431 0.4810 +35 1622 0.4540 +35 1629 0.9420 +35 1632 0.8250 +35 1666 0.5790 +35 1737 0.4480 +35 1738 0.4500 +35 1757 0.4310 +35 1891 0.6290 +35 1892 0.9940 +35 1962 0.9840 +35 2053 0.4820 +35 2108 0.9140 +35 2109 0.9240 +35 2110 0.7590 +35 2167 0.5890 +35 2170 0.4830 +35 2173 0.4860 +35 2180 0.6500 +35 2181 0.5300 +35 2182 0.5590 +35 2194 0.6390 +35 2639 0.9310 +35 2739 0.6660 +35 3028 0.4070 +35 3030 0.9920 +35 3032 0.9850 +35 3033 0.8750 +35 3155 0.5550 +35 3158 0.4160 +35 3242 0.4040 +35 3295 0.7230 +35 4191 0.4260 +35 4193 0.4060 +35 4194 0.4060 +35 4329 0.9480 +35 4706 0.4080 +35 4728 0.5080 +35 5019 0.5060 +35 5091 0.4540 +35 5095 0.9570 +35 5096 0.9620 +35 5162 0.5040 +35 5428 0.4280 +35 5465 0.4860 +35 6296 0.9610 +35 6342 0.6770 +35 6389 0.4830 +35 6584 0.4780 +35 6720 0.4220 +35 7350 0.5220 +35 7915 0.4100 +35 8050 0.4530 +35 8309 0.4390 +35 8310 0.9250 +35 8659 0.4390 +35 8802 0.6150 +35 8803 0.4250 +35 9085 0.5000 +35 9117 0.6390 +35 9399 0.5040 +35 9425 0.5120 +35 9607 0.5250 +35 10005 0.4850 +35 10449 0.9820 +35 10455 0.9280 +35 10555 0.4250 +35 10891 0.4110 +35 10901 0.8650 +35 11001 0.4530 +35 11112 0.8840 +35 22929 0.4870 +35 23205 0.5190 +35 23305 0.5730 +35 23410 0.7280 +35 23417 0.4640 +35 23474 0.7490 +35 23597 0.4650 +35 23600 0.4400 +35 26063 0.4410 +35 26275 0.6960 +35 27034 0.9390 +35 28976 0.4160 +35 29958 0.4770 +35 50814 0.4110 +35 51084 0.6450 +35 51099 0.4010 +35 51102 0.9350 +35 51703 0.6620 +35 51805 0.4140 +35 54677 0.4260 +35 54988 0.9400 +35 54995 0.4650 +35 55268 0.6030 +35 55825 0.4560 +35 55856 0.4110 +35 55862 0.9820 +35 55902 0.9500 +35 56898 0.4460 +35 56922 0.5920 +35 58506 0.4720 +35 64087 0.7010 +35 64577 0.4320 +35 64902 0.8510 +35 79611 0.9410 +35 79777 0.4920 +35 79783 0.4380 +35 80221 0.5480 +35 80308 0.4200 +35 80724 0.4590 +35 81616 0.5190 +35 84263 0.7940 +35 84320 0.4280 +35 84532 0.9500 +35 84693 0.5000 +35 91452 0.4280 +35 116285 0.9320 +35 123876 0.9460 +35 124359 0.4780 +35 126129 0.4890 +35 132949 0.6640 +35 137872 0.4350 +35 140856 0.4260 +35 197322 0.5220 +35 253175 0.5000 +35 341392 0.9440 +35 348158 0.9470 +35 376497 0.5360 +35 414149 0.4270 +35 109703458 0.4130 +36 38 0.9680 +36 39 0.9620 +36 51 0.9500 +36 217 0.4740 +36 219 0.4660 +36 223 0.5300 +36 224 0.4680 +36 501 0.4320 +36 549 0.6890 +36 586 0.4100 +36 587 0.5220 +36 593 0.7120 +36 594 0.7530 +36 622 0.5130 +36 1374 0.4670 +36 1376 0.6150 +36 1622 0.4720 +36 1629 0.9510 +36 1632 0.7790 +36 1737 0.4310 +36 1738 0.4710 +36 1891 0.4870 +36 1892 0.9930 +36 1962 0.9820 +36 2053 0.5120 +36 2108 0.8460 +36 2109 0.8050 +36 2110 0.6550 +36 2180 0.5830 +36 2181 0.5240 +36 2182 0.5060 +36 2194 0.5840 +36 2639 0.9460 +36 2908 0.4370 +36 3028 0.5030 +36 3030 0.9870 +36 3032 0.9860 +36 3033 0.8060 +36 3155 0.4780 +36 3242 0.4390 +36 3295 0.6070 +36 3329 0.5470 +36 3336 0.5510 +36 4193 0.4070 +36 4194 0.4070 +36 4329 0.7550 +36 4594 0.4350 +36 4706 0.4260 +36 4728 0.4540 +36 5019 0.5320 +36 5095 0.6630 +36 5096 0.6940 +36 5162 0.4550 +36 6296 0.5380 +36 6342 0.6130 +36 6389 0.4310 +36 6450 0.4140 +36 6713 0.4220 +36 6715 0.4070 +36 7915 0.5620 +36 8050 0.4050 +36 8192 0.4470 +36 8309 0.4960 +36 8310 0.9230 +36 8659 0.4130 +36 8802 0.5610 +36 9085 0.5000 +36 9399 0.5020 +36 9425 0.4790 +36 9607 0.5250 +36 9862 0.4440 +36 10202 0.4700 +36 10295 0.4670 +36 10449 0.9750 +36 10455 0.9170 +36 10555 0.4150 +36 11112 0.5810 +36 23205 0.5240 +36 23305 0.5640 +36 23474 0.7330 +36 23597 0.4270 +36 23600 0.4490 +36 26063 0.4350 +36 26275 0.7950 +36 27034 0.9550 +36 27163 0.4010 +36 28976 0.4070 +36 29958 0.4750 +36 51031 0.4010 +36 51084 0.6640 +36 51102 0.9330 +36 51703 0.5510 +36 51741 0.4360 +36 54995 0.4130 +36 55268 0.6170 +36 55825 0.4930 +36 55862 0.8900 +36 55902 0.4630 +36 56898 0.5300 +36 56922 0.5760 +36 57406 0.4250 +36 64087 0.7170 +36 64577 0.4230 +36 65985 0.4440 +36 79611 0.5840 +36 79777 0.4320 +36 80007 0.4270 +36 80221 0.4430 +36 81616 0.6060 +36 84129 0.4100 +36 84263 0.7870 +36 84320 0.4280 +36 84532 0.4900 +36 84693 0.5720 +36 84836 0.4500 +36 91452 0.4480 +36 93517 0.4190 +36 123876 0.4700 +36 124359 0.4780 +36 132949 0.5720 +36 134266 0.4130 +36 137872 0.5820 +36 140856 0.4260 +36 150274 0.4080 +36 152926 0.4330 +36 197322 0.5380 +36 253175 0.5000 +36 341392 0.4510 +36 348158 0.4960 +36 376497 0.4600 +36 414149 0.4350 +36 109703458 0.4130 +37 38 0.6280 +37 39 0.5460 +37 47 0.4580 +37 50 0.5410 +37 51 0.9710 +37 60 0.5430 +37 72 0.4070 +37 81 0.4250 +37 123 0.6940 +37 213 0.4390 +37 217 0.6390 +37 223 0.4180 +37 224 0.4330 +37 226 0.4040 +37 506 0.4290 +37 513 0.4160 +37 549 0.4800 +37 593 0.5720 +37 594 0.4620 +37 788 0.7760 +37 825 0.5320 +37 826 0.4080 +37 948 0.5020 +37 949 0.4740 +37 950 0.4750 +37 999 0.4320 +37 1327 0.4510 +37 1374 0.7080 +37 1375 0.6840 +37 1376 0.9950 +37 1384 0.5470 +37 1431 0.5720 +37 1622 0.4860 +37 1632 0.7390 +37 1666 0.6320 +37 1891 0.7290 +37 1892 0.9810 +37 1962 0.9770 +37 2027 0.4430 +37 2052 0.4450 +37 2053 0.4940 +37 2108 0.8770 +37 2109 0.8840 +37 2110 0.8170 +37 2170 0.4200 +37 2180 0.8410 +37 2181 0.6290 +37 2182 0.6020 +37 2194 0.7910 +37 2217 0.4900 +37 2597 0.4480 +37 2639 0.4520 +37 2806 0.5140 +37 3030 0.9950 +37 3032 0.9880 +37 3033 0.8820 +37 3155 0.7040 +37 3158 0.5540 +37 3242 0.4010 +37 3295 0.5920 +37 3417 0.4040 +37 3418 0.4440 +37 3712 0.4370 +37 3991 0.4330 +37 4000 0.4420 +37 4128 0.4350 +37 4170 0.4460 +37 4191 0.5070 +37 4329 0.4530 +37 4704 0.4620 +37 4706 0.4130 +37 4723 0.5770 +37 4728 0.5640 +37 4967 0.4100 +37 5019 0.5220 +37 5091 0.4780 +37 5095 0.5190 +37 5096 0.6320 +37 5105 0.4270 +37 5162 0.5010 +37 5166 0.5810 +37 5465 0.6270 +37 5467 0.4540 +37 5468 0.4390 +37 6296 0.4260 +37 6319 0.4270 +37 6342 0.6340 +37 6389 0.5740 +37 6390 0.4380 +37 6584 0.5080 +37 6648 0.4080 +37 6720 0.4340 +37 6834 0.5350 +37 7273 0.4510 +37 7350 0.4270 +37 7351 0.4260 +37 7352 0.4420 +37 7384 0.5120 +37 7385 0.4050 +37 7414 0.4010 +37 7494 0.7760 +37 8310 0.9340 +37 8508 0.4440 +37 8694 0.4420 +37 8802 0.5940 +37 8803 0.4390 +37 9085 0.4780 +37 9399 0.5010 +37 9425 0.4790 +37 9607 0.5020 +37 10005 0.4070 +37 10247 0.4200 +37 10449 0.9830 +37 10455 0.9080 +37 10555 0.4690 +37 10891 0.5590 +37 10901 0.4780 +37 10965 0.4360 +37 11001 0.4940 +37 11332 0.4110 +37 23205 0.4300 +37 23305 0.5460 +37 23410 0.7780 +37 23417 0.5930 +37 23597 0.5040 +37 26063 0.4220 +37 26275 0.8910 +37 27034 0.4140 +37 28976 0.4620 +37 51079 0.4490 +37 51084 0.6200 +37 51099 0.4780 +37 51102 0.9310 +37 51103 0.4620 +37 51144 0.4120 +37 51268 0.4670 +37 51295 0.6140 +37 51703 0.6180 +37 55268 0.7520 +37 55856 0.4460 +37 55862 0.5730 +37 55902 0.4650 +37 56922 0.5330 +37 57017 0.4330 +37 57104 0.5400 +37 57152 0.5810 +37 57687 0.5590 +37 64064 0.4340 +37 64087 0.5860 +37 65985 0.4250 +37 79072 0.4120 +37 79611 0.4560 +37 79777 0.4880 +37 80221 0.4310 +37 80339 0.4390 +37 80347 0.4480 +37 81616 0.6050 +37 84129 0.4060 +37 84263 0.7870 +37 84293 0.4290 +37 84320 0.4310 +37 84532 0.5350 +37 84693 0.4560 +37 91452 0.4310 +37 123876 0.4290 +37 124359 0.5300 +37 126129 0.6320 +37 132949 0.6450 +37 140856 0.4250 +37 197322 0.4270 +37 253175 0.4780 +37 341392 0.4130 +37 348158 0.4760 +37 376497 0.6090 +37 414149 0.4260 +37 440503 0.4030 +37 728378 0.4340 +37 109703458 0.4130 +38 39 0.9500 +38 47 0.9150 +38 48 0.4540 +38 50 0.6520 +38 51 0.9680 +38 123 0.4290 +38 217 0.4060 +38 219 0.4310 +38 223 0.4750 +38 224 0.4570 +38 501 0.4600 +38 549 0.7190 +38 594 0.4200 +38 622 0.7460 +38 1374 0.4260 +38 1376 0.4930 +38 1384 0.5160 +38 1431 0.9770 +38 1595 0.5850 +38 1622 0.5180 +38 1632 0.6920 +38 1717 0.4210 +38 1737 0.9490 +38 1738 0.6320 +38 1743 0.8470 +38 1892 0.8500 +38 1962 0.9780 +38 2108 0.8210 +38 2109 0.5750 +38 2110 0.5750 +38 2180 0.4280 +38 2181 0.4220 +38 2182 0.4410 +38 2194 0.4810 +38 2222 0.6540 +38 2224 0.6890 +38 2271 0.4790 +38 2639 0.5960 +38 2746 0.4230 +38 2821 0.4660 +38 3028 0.5670 +38 3030 0.9940 +38 3032 0.9440 +38 3033 0.9350 +38 3155 0.9720 +38 3156 0.7800 +38 3157 0.9970 +38 3158 0.9970 +38 3159 0.5910 +38 3295 0.5980 +38 3312 0.6240 +38 3417 0.4450 +38 3418 0.5170 +38 3422 0.6410 +38 3712 0.6860 +38 4047 0.6060 +38 4191 0.5130 +38 4199 0.4640 +38 4200 0.4260 +38 4329 0.9380 +38 4597 0.8610 +38 4598 0.8920 +38 4728 0.5540 +38 4863 0.8190 +38 5019 0.9860 +38 5091 0.4050 +38 5095 0.4870 +38 5096 0.6690 +38 5162 0.4910 +38 5191 0.6820 +38 5315 0.4190 +38 6296 0.5450 +38 6307 0.4280 +38 6309 0.5590 +38 6342 0.7240 +38 6389 0.7620 +38 6390 0.5650 +38 6713 0.6620 +38 6742 0.4130 +38 7108 0.4250 +38 7167 0.4050 +38 7381 0.4250 +38 7469 0.7040 +38 7915 0.4810 +38 7923 0.4470 +38 7936 0.4510 +38 8050 0.5130 +38 8309 0.5850 +38 8310 0.9620 +38 8659 0.4290 +38 8801 0.8670 +38 8802 0.9070 +38 8803 0.8830 +38 9085 0.6360 +38 9399 0.5670 +38 9425 0.6620 +38 9453 0.7350 +38 9563 0.4300 +38 10280 0.4660 +38 10449 0.9630 +38 10455 0.9790 +38 10654 0.7580 +38 10873 0.4110 +38 10935 0.4160 +38 23305 0.4060 +38 23417 0.9310 +38 25920 0.7250 +38 26275 0.7510 +38 27034 0.5250 +38 27089 0.5170 +38 28976 0.5840 +38 51084 0.8750 +38 51144 0.4780 +38 51478 0.4200 +38 51497 0.4030 +38 51703 0.4230 +38 54511 0.9550 +38 54704 0.4710 +38 54988 0.4750 +38 54995 0.4920 +38 55268 0.6480 +38 55289 0.5130 +38 55862 0.7120 +38 55902 0.9600 +38 56898 0.4980 +38 56922 0.4020 +38 56954 0.4560 +38 64064 0.9830 +38 64087 0.4780 +38 65985 0.9620 +38 79611 0.5420 +38 79777 0.4640 +38 80221 0.4570 +38 80347 0.4680 +38 84263 0.9090 +38 84320 0.4720 +38 84532 0.9640 +38 91452 0.4750 +38 91734 0.6820 +38 94081 0.4480 +38 116285 0.4860 +38 123876 0.4710 +38 124359 0.6360 +38 132949 0.4450 +38 134526 0.9330 +38 140856 0.5250 +38 253175 0.6360 +38 284422 0.5300 +38 341392 0.4930 +38 348158 0.4830 +38 376497 0.4400 +38 414149 0.4770 +38 729920 0.4270 +38 109703458 0.5130 +38 122405565 0.5300 +39 47 0.9160 +39 51 0.9650 +39 219 0.4450 +39 223 0.4850 +39 224 0.4500 +39 501 0.4460 +39 549 0.6450 +39 586 0.5160 +39 594 0.4240 +39 1376 0.4950 +39 1431 0.9660 +39 1581 0.4710 +39 1595 0.7320 +39 1622 0.5920 +39 1632 0.7060 +39 1717 0.7590 +39 1718 0.5260 +39 1737 0.9340 +39 1743 0.8350 +39 1892 0.8310 +39 1962 0.9800 +39 2108 0.7670 +39 2109 0.4830 +39 2180 0.4110 +39 2181 0.4510 +39 2182 0.4120 +39 2194 0.5710 +39 2222 0.8220 +39 2224 0.8290 +39 2271 0.4730 +39 2639 0.5720 +39 2821 0.4150 +39 3028 0.4640 +39 3030 0.9740 +39 3032 0.9300 +39 3033 0.9170 +39 3155 0.9500 +39 3156 0.9000 +39 3157 0.9980 +39 3158 0.9930 +39 3159 0.4940 +39 3295 0.5170 +39 3417 0.4260 +39 3422 0.8280 +39 3638 0.4970 +39 3712 0.6620 +39 3992 0.4540 +39 4047 0.7580 +39 4329 0.9300 +39 4547 0.4220 +39 4597 0.8830 +39 4598 0.8850 +39 4728 0.5460 +39 4863 0.4840 +39 5019 0.9720 +39 5095 0.4100 +39 5096 0.5080 +39 5191 0.5780 +39 6296 0.5360 +39 6307 0.8030 +39 6309 0.6060 +39 6319 0.4970 +39 6342 0.6720 +39 6389 0.6180 +39 6390 0.4120 +39 6697 0.4010 +39 6713 0.7970 +39 6720 0.4050 +39 6721 0.5110 +39 6950 0.7290 +39 7108 0.5140 +39 7915 0.4770 +39 7923 0.4230 +39 8202 0.4620 +39 8309 0.6030 +39 8310 0.9570 +39 8694 0.4290 +39 8801 0.8560 +39 8802 0.8850 +39 8803 0.8750 +39 9085 0.6360 +39 9399 0.5670 +39 9415 0.4380 +39 9425 0.6510 +39 9453 0.7030 +39 10449 0.9220 +39 10455 0.9810 +39 10654 0.6930 +39 10682 0.7010 +39 23305 0.4050 +39 23417 0.9020 +39 26275 0.7020 +39 27034 0.5660 +39 28976 0.5060 +39 29881 0.4100 +39 50814 0.6400 +39 51084 0.8790 +39 51109 0.4060 +39 51126 0.4230 +39 51144 0.5320 +39 51478 0.5050 +39 51703 0.4350 +39 54511 0.9490 +39 54988 0.4480 +39 55268 0.6360 +39 55289 0.5130 +39 55862 0.7410 +39 55902 0.9590 +39 56922 0.4020 +39 64064 0.9710 +39 64087 0.4750 +39 64240 0.4270 +39 65985 0.9580 +39 79071 0.4050 +39 79611 0.4720 +39 79777 0.4640 +39 80221 0.4380 +39 83693 0.4040 +39 84263 0.8920 +39 84320 0.4780 +39 84532 0.9540 +39 91452 0.4660 +39 91734 0.7110 +39 116285 0.4480 +39 123876 0.4480 +39 124359 0.6360 +39 134526 0.9300 +39 140856 0.5250 +39 253175 0.6360 +39 284422 0.5300 +39 341392 0.4480 +39 348158 0.4480 +39 414149 0.4770 +39 729920 0.4100 +39 109703458 0.5130 +39 122405565 0.5300 +40 41 0.9680 +40 1742 0.7560 +40 2040 0.8920 +40 2492 0.4180 +40 2828 0.4030 +40 3776 0.4570 +40 5024 0.5110 +40 5025 0.5540 +40 5652 0.5640 +40 5789 0.5030 +40 6336 0.4260 +40 6337 0.5760 +40 6338 0.5780 +40 6339 0.4680 +40 6340 0.5800 +40 6548 0.4830 +40 6863 0.4030 +40 7220 0.4100 +40 7223 0.4730 +40 7442 0.6790 +40 8111 0.4720 +40 8477 0.4290 +40 8989 0.6130 +40 9033 0.4770 +40 9223 0.5190 +40 9311 0.7940 +40 9399 0.5330 +40 9463 0.8660 +40 9495 0.4610 +40 9780 0.4950 +40 10335 0.4480 +40 22953 0.4250 +40 23327 0.4750 +40 50801 0.5020 +40 51305 0.4150 +40 51350 0.4640 +40 51393 0.4500 +40 51802 0.5920 +40 54207 0.4040 +40 55515 0.7060 +40 57120 0.4890 +40 59341 0.5920 +40 63895 0.6100 +40 64130 0.5600 +40 79054 0.4800 +40 84298 0.4120 +40 140458 0.4100 +40 161003 0.7770 +40 342372 0.4290 +41 815 0.5140 +41 2040 0.7280 +41 3688 0.4700 +41 5024 0.4490 +41 5025 0.7530 +41 5335 0.4080 +41 6336 0.4340 +41 6337 0.5490 +41 6338 0.4100 +41 6339 0.4730 +41 6340 0.5080 +41 6446 0.5150 +41 6548 0.4560 +41 7220 0.4560 +41 7326 0.7430 +41 7442 0.6240 +41 8989 0.5010 +41 9311 0.6270 +41 9463 0.8080 +41 22953 0.4350 +41 23678 0.7100 +41 51393 0.4040 +41 51465 0.4220 +41 51802 0.5970 +41 55515 0.4610 +41 59341 0.4760 +41 63895 0.4950 +41 79054 0.4310 +41 84447 0.4890 +41 161003 0.5810 +43 100 0.4300 +43 135 0.5910 +43 167 0.4040 +43 174 0.6570 +43 207 0.4950 +43 213 0.5890 +43 277 0.6340 +43 278 0.6370 +43 280 0.6370 +43 348 0.7690 +43 351 0.9370 +43 596 0.4650 +43 627 0.6720 +43 759 0.5530 +43 793 0.5650 +43 794 0.5400 +43 821 0.4640 +43 836 0.5300 +43 857 0.4660 +43 965 0.4180 +43 966 0.5370 +43 1020 0.4510 +43 1103 0.9330 +43 1119 0.9120 +43 1120 0.9090 +43 1128 0.5540 +43 1129 0.4330 +43 1132 0.4320 +43 1135 0.4620 +43 1136 0.5400 +43 1137 0.5580 +43 1138 0.5230 +43 1139 0.4530 +43 1141 0.5770 +43 1143 0.5060 +43 1144 0.4930 +43 1145 0.4690 +43 1312 0.4780 +43 1356 0.5020 +43 1384 0.5220 +43 1385 0.5120 +43 1565 0.4120 +43 1576 0.4100 +43 1591 0.5130 +43 1604 0.7080 +43 1621 0.5130 +43 1636 0.7330 +43 1742 0.4810 +43 1813 0.4270 +43 1906 0.4710 +43 1956 0.5060 +43 1994 0.4220 +43 1996 0.4990 +43 2086 0.4390 +43 2166 0.4180 +43 2335 0.4870 +43 2353 0.4070 +43 2587 0.4680 +43 2668 0.4420 +43 2670 0.4610 +43 2703 0.4750 +43 2796 0.4140 +43 2875 0.6920 +43 2877 0.6800 +43 2878 0.6870 +43 2880 0.6900 +43 2882 0.7010 +43 2932 0.5170 +43 2936 0.5960 +43 2993 0.4590 +43 3064 0.4150 +43 3162 0.4650 +43 3308 0.4010 +43 3339 0.8950 +43 3350 0.4520 +43 3416 0.4730 +43 3458 0.4230 +43 3553 0.5830 +43 3569 0.5550 +43 3586 0.4210 +43 3630 0.5280 +43 3913 0.5070 +43 4038 0.4740 +43 4128 0.7610 +43 4129 0.9100 +43 4137 0.8170 +43 4311 0.4170 +43 4593 0.8650 +43 4780 0.4050 +43 4803 0.6350 +43 4804 0.4130 +43 4852 0.5200 +43 4915 0.4370 +43 5444 0.6110 +43 5539 0.5090 +43 5550 0.4120 +43 5663 0.7510 +43 5664 0.4890 +43 5685 0.5010 +43 5743 0.5080 +43 5816 0.6350 +43 5913 0.7420 +43 6329 0.5580 +43 6476 0.7900 +43 6531 0.4470 +43 6571 0.4020 +43 6572 0.8460 +43 6622 0.5410 +43 6750 0.5140 +43 6853 0.4340 +43 6855 0.5500 +43 6863 0.6200 +43 7054 0.6390 +43 7124 0.5280 +43 7180 0.4170 +43 7299 0.5500 +43 7432 0.5620 +43 7498 0.7390 +43 7837 0.6950 +43 8292 0.9890 +43 8972 0.7890 +43 9104 0.4070 +43 9360 0.4240 +43 9378 0.7120 +43 9379 0.7250 +43 10015 0.4040 +43 10048 0.4500 +43 10321 0.5310 +43 10399 0.6370 +43 10908 0.8540 +43 11255 0.4460 +43 22871 0.5680 +43 23435 0.4060 +43 23607 0.4960 +43 23621 0.8310 +43 27306 0.4700 +43 51083 0.6380 +43 51738 0.8210 +43 54205 0.4160 +43 56261 0.9160 +43 57502 0.5210 +43 59272 0.5360 +43 60482 0.5620 +43 79258 0.4770 +43 137902 0.6950 +43 145270 0.6200 +43 162466 0.9040 +43 220074 0.4220 +43 257202 0.6900 +43 285489 0.8670 +43 375790 0.8330 +43 405754 0.4380 +43 493869 0.7020 +43 653509 0.4030 +43 729238 0.4050 +47 48 0.9810 +47 49 0.4570 +47 50 0.9850 +47 51 0.6090 +47 60 0.4950 +47 158 0.8790 +47 191 0.4470 +47 207 0.7110 +47 216 0.4660 +47 217 0.4660 +47 218 0.4110 +47 219 0.4040 +47 220 0.4050 +47 222 0.4090 +47 223 0.4700 +47 224 0.4850 +47 226 0.4460 +47 229 0.4140 +47 271 0.4520 +47 275 0.5350 +47 338 0.4450 +47 435 0.8640 +47 445 0.4140 +47 471 0.6990 +47 498 0.6640 +47 501 0.4330 +47 506 0.4530 +47 509 0.7040 +47 539 0.4780 +47 570 0.4490 +47 586 0.4300 +47 593 0.4890 +47 594 0.5030 +47 908 0.5220 +47 948 0.5400 +47 949 0.5370 +47 950 0.5300 +47 1352 0.4170 +47 1374 0.6520 +47 1375 0.4140 +47 1376 0.5470 +47 1384 0.5030 +47 1387 0.4600 +47 1431 0.9980 +47 1491 0.4110 +47 1499 0.4080 +47 1595 0.4200 +47 1629 0.7630 +47 1717 0.4930 +47 1718 0.4370 +47 1737 0.9880 +47 1738 0.6820 +47 1743 0.8410 +47 1757 0.5870 +47 1892 0.4920 +47 1938 0.5510 +47 1962 0.6000 +47 1973 0.4120 +47 2023 0.5770 +47 2027 0.4470 +47 2033 0.4410 +47 2064 0.5820 +47 2108 0.5280 +47 2167 0.5010 +47 2170 0.4230 +47 2171 0.5000 +47 2180 0.7340 +47 2181 0.6560 +47 2182 0.4080 +47 2194 0.9940 +47 2203 0.5180 +47 2222 0.5660 +47 2224 0.5410 +47 2271 0.8100 +47 2475 0.5060 +47 2520 0.6390 +47 2538 0.5060 +47 2539 0.7850 +47 2597 0.7600 +47 2618 0.7110 +47 2645 0.5490 +47 2648 0.4140 +47 2710 0.4300 +47 2712 0.4290 +47 2731 0.6940 +47 2744 0.4670 +47 2746 0.9120 +47 2747 0.8730 +47 2752 0.4300 +47 2805 0.8880 +47 2806 0.9090 +47 2819 0.4900 +47 2820 0.4640 +47 2821 0.6090 +47 2875 0.4070 +47 2936 0.6330 +47 3021 0.4100 +47 3030 0.4450 +47 3032 0.9150 +47 3033 0.5220 +47 3091 0.4840 +47 3093 0.5330 +47 3098 0.4100 +47 3099 0.5570 +47 3155 0.8890 +47 3156 0.7110 +47 3157 0.9350 +47 3158 0.8960 +47 3309 0.5550 +47 3312 0.5880 +47 3320 0.4010 +47 3326 0.4200 +47 3376 0.5240 +47 3417 0.9350 +47 3418 0.9000 +47 3419 0.5640 +47 3420 0.5350 +47 3421 0.5240 +47 3422 0.4410 +47 3614 0.5810 +47 3615 0.6120 +47 3630 0.6000 +47 3638 0.5300 +47 3658 0.6140 +47 3795 0.4520 +47 3948 0.6260 +47 3952 0.4380 +47 3991 0.5190 +47 3992 0.4110 +47 4023 0.4470 +47 4047 0.4600 +47 4144 0.4310 +47 4191 0.9810 +47 4199 0.7610 +47 4200 0.6120 +47 4512 0.5860 +47 4513 0.4020 +47 4514 0.5090 +47 4522 0.7230 +47 4535 0.4950 +47 4547 0.4190 +47 4594 0.8520 +47 4597 0.4590 +47 4598 0.4810 +47 4609 0.5340 +47 4720 0.7970 +47 4722 0.7210 +47 4723 0.5090 +47 4728 0.4560 +47 4729 0.6600 +47 4830 0.4630 +47 4831 0.6010 +47 4967 0.9150 +47 5019 0.4650 +47 5091 0.9740 +47 5096 0.4070 +47 5105 0.9590 +47 5106 0.9570 +47 5161 0.4470 +47 5162 0.6900 +47 5163 0.5000 +47 5164 0.4020 +47 5166 0.4630 +47 5209 0.5070 +47 5211 0.5290 +47 5213 0.6330 +47 5214 0.5010 +47 5223 0.5180 +47 5226 0.7170 +47 5230 0.5540 +47 5232 0.4590 +47 5236 0.4150 +47 5313 0.5860 +47 5315 0.6800 +47 5431 0.4420 +47 5465 0.5780 +47 5468 0.5630 +47 5518 0.5860 +47 5539 0.6860 +47 5571 0.4080 +47 5631 0.4980 +47 5634 0.4860 +47 5832 0.4810 +47 5834 0.4750 +47 5836 0.4030 +47 6120 0.5240 +47 6188 0.5300 +47 6194 0.5380 +47 6319 0.8120 +47 6389 0.9640 +47 6390 0.9530 +47 6391 0.9500 +47 6392 0.5130 +47 6430 0.4490 +47 6462 0.6600 +47 6470 0.6980 +47 6472 0.5500 +47 6510 0.4640 +47 6513 0.5600 +47 6514 0.4010 +47 6517 0.5230 +47 6576 0.8320 +47 6652 0.4040 +47 6713 0.5580 +47 6720 0.7950 +47 6721 0.6570 +47 6785 0.4690 +47 6888 0.6070 +47 6897 0.4860 +47 6945 0.7540 +47 6950 0.5670 +47 7069 0.7000 +47 7086 0.6260 +47 7157 0.5020 +47 7167 0.6510 +47 7203 0.5050 +47 7284 0.4080 +47 7296 0.6270 +47 7350 0.4100 +47 7360 0.4110 +47 7386 0.4340 +47 7403 0.4450 +47 7415 0.5460 +47 7416 0.4060 +47 7915 0.8970 +47 8050 0.8300 +47 8140 0.4220 +47 8277 0.5850 +47 8290 0.4090 +47 8309 0.6120 +47 8310 0.4840 +47 8356 0.4090 +47 8452 0.4460 +47 8659 0.4720 +47 8694 0.5960 +47 8789 0.4200 +47 8802 0.9910 +47 8803 0.5130 +47 8833 0.6670 +47 8850 0.5450 +47 8975 0.4320 +47 9061 0.4630 +47 9123 0.4080 +47 9213 0.4040 +47 9295 0.4110 +47 9343 0.5920 +47 9370 0.4230 +47 9415 0.5140 +47 9563 0.7400 +47 9588 0.4940 +47 9775 0.4590 +47 10189 0.4220 +47 10295 0.4650 +47 10383 0.4330 +47 10449 0.9120 +47 10574 0.5550 +47 10587 0.5910 +47 10694 0.4440 +47 10765 0.4070 +47 10797 0.4680 +47 10840 0.4200 +47 10873 0.6820 +47 10891 0.5070 +47 10998 0.4060 +47 11001 0.4450 +47 11343 0.4320 +47 22933 0.7310 +47 22934 0.5510 +47 22937 0.4670 +47 22948 0.6720 +47 23135 0.4890 +47 23152 0.4910 +47 23175 0.5440 +47 23305 0.4810 +47 23352 0.5930 +47 23408 0.4140 +47 23410 0.4160 +47 23411 0.4920 +47 23417 0.5270 +47 23530 0.6250 +47 25902 0.6140 +47 26227 0.4450 +47 27165 0.4290 +47 27349 0.4730 +47 29085 0.5420 +47 29958 0.6990 +47 29968 0.4870 +47 50814 0.4150 +47 51085 0.9110 +47 51444 0.5530 +47 51703 0.5380 +47 54511 0.8670 +47 54898 0.4650 +47 54941 0.5530 +47 54995 0.5240 +47 55066 0.5910 +47 55175 0.5550 +47 55293 0.5530 +47 55294 0.5670 +47 55526 0.8270 +47 55554 0.4080 +47 55699 0.4120 +47 55753 0.8680 +47 55902 0.8650 +47 56954 0.8240 +47 57103 0.5080 +47 57104 0.5170 +47 57494 0.8120 +47 57678 0.5160 +47 60481 0.6070 +47 60496 0.4920 +47 64410 0.7100 +47 64834 0.4780 +47 65985 0.5950 +47 79071 0.7930 +47 79611 0.5560 +47 79944 0.5110 +47 79966 0.4820 +47 79993 0.5270 +47 80339 0.4400 +47 80347 0.5500 +47 83401 0.6010 +47 83475 0.5520 +47 84076 0.5650 +47 84532 0.8400 +47 84649 0.5830 +47 84955 0.6260 +47 92483 0.6030 +47 92579 0.4110 +47 114112 0.5450 +47 120892 0.5100 +47 126129 0.5100 +47 130752 0.6890 +47 132949 0.5650 +47 134526 0.4010 +47 137362 0.8390 +47 158833 0.4620 +47 160287 0.6030 +47 160428 0.4700 +47 203068 0.4170 +47 221823 0.4760 +47 259307 0.8170 +47 284111 0.4350 +47 376497 0.4220 +47 440093 0.4080 +47 440686 0.4080 +47 441024 0.6030 +47 441531 0.4690 +47 653604 0.4100 +48 50 0.9430 +48 51 0.5170 +48 203 0.5680 +48 210 0.7110 +48 211 0.5120 +48 212 0.8430 +48 216 0.5320 +48 217 0.5310 +48 223 0.4700 +48 226 0.4450 +48 351 0.5110 +48 435 0.4100 +48 445 0.5240 +48 498 0.5560 +48 549 0.4270 +48 740 0.6600 +48 847 0.4160 +48 972 0.4180 +48 1105 0.4300 +48 1356 0.4290 +48 1371 0.4010 +48 1431 0.9990 +48 1537 0.5170 +48 1632 0.4940 +48 1723 0.4260 +48 1737 0.5760 +48 1738 0.6250 +48 1743 0.6820 +48 1892 0.6530 +48 1962 0.5700 +48 2023 0.6050 +48 2026 0.4370 +48 2027 0.4460 +48 2034 0.5640 +48 2056 0.4120 +48 2108 0.4100 +48 2110 0.4230 +48 2180 0.4910 +48 2181 0.4610 +48 2182 0.4180 +48 2203 0.4650 +48 2230 0.5490 +48 2232 0.5260 +48 2235 0.8230 +48 2271 0.9360 +48 2323 0.4450 +48 2395 0.9650 +48 2495 0.6780 +48 2512 0.7990 +48 2539 0.5690 +48 2597 0.6200 +48 2618 0.4410 +48 2632 0.4820 +48 2645 0.4090 +48 2731 0.4980 +48 2745 0.5590 +48 2746 0.5990 +48 2747 0.4080 +48 2752 0.5020 +48 2805 0.4270 +48 2806 0.6880 +48 2821 0.6950 +48 2875 0.4020 +48 2877 0.6860 +48 2878 0.6900 +48 2879 0.4530 +48 2880 0.6850 +48 2882 0.6850 +48 2936 0.4970 +48 3030 0.5330 +48 3032 0.4690 +48 3033 0.5140 +48 3077 0.5350 +48 3091 0.4620 +48 3098 0.5050 +48 3099 0.4460 +48 3155 0.8600 +48 3158 0.4890 +48 3162 0.4610 +48 3240 0.4500 +48 3308 0.4530 +48 3313 0.8080 +48 3320 0.4770 +48 3329 0.7710 +48 3336 0.4390 +48 3417 0.9980 +48 3418 0.9980 +48 3419 0.9800 +48 3420 0.9750 +48 3421 0.9750 +48 3658 0.9070 +48 3948 0.4990 +48 4151 0.4220 +48 4191 0.8930 +48 4199 0.4590 +48 4200 0.4440 +48 4513 0.4060 +48 4519 0.4800 +48 4682 0.5010 +48 4694 0.4630 +48 4706 0.4610 +48 4720 0.5070 +48 4722 0.4820 +48 4723 0.5390 +48 4728 0.5440 +48 4729 0.4960 +48 4891 0.9270 +48 4942 0.4170 +48 4967 0.7840 +48 4968 0.5080 +48 5037 0.6170 +48 5091 0.7300 +48 5093 0.4300 +48 5105 0.4450 +48 5106 0.5200 +48 5162 0.5470 +48 5163 0.4170 +48 5166 0.5830 +48 5211 0.4280 +48 5213 0.5300 +48 5214 0.4030 +48 5223 0.4200 +48 5226 0.5980 +48 5230 0.5670 +48 5232 0.5160 +48 5236 0.5460 +48 5238 0.5360 +48 5313 0.4530 +48 5315 0.5190 +48 5469 0.5480 +48 5471 0.4520 +48 5599 0.5200 +48 5601 0.5000 +48 5832 0.5440 +48 5836 0.4110 +48 5837 0.4230 +48 6059 0.5280 +48 6120 0.5680 +48 6122 0.5250 +48 6123 0.4960 +48 6124 0.5060 +48 6132 0.5420 +48 6133 0.5460 +48 6135 0.6560 +48 6139 0.4740 +48 6150 0.5490 +48 6183 0.4830 +48 6187 0.5450 +48 6193 0.4720 +48 6194 0.4380 +48 6203 0.4970 +48 6205 0.5600 +48 6207 0.5350 +48 6208 0.4350 +48 6217 0.4570 +48 6222 0.6090 +48 6224 0.5040 +48 6228 0.4830 +48 6235 0.4280 +48 6389 0.8500 +48 6390 0.8960 +48 6391 0.5830 +48 6392 0.5690 +48 6470 0.4690 +48 6472 0.4870 +48 6556 0.4580 +48 6576 0.4490 +48 6647 0.5140 +48 6648 0.9370 +48 6652 0.4030 +48 6720 0.4990 +48 6888 0.6580 +48 7019 0.5740 +48 7036 0.5850 +48 7037 0.8880 +48 7086 0.6260 +48 7167 0.7240 +48 7263 0.5740 +48 7284 0.4040 +48 7295 0.4830 +48 7384 0.6100 +48 7385 0.5200 +48 7386 0.6050 +48 7416 0.5200 +48 7498 0.4210 +48 7818 0.6400 +48 7915 0.4110 +48 8031 0.4630 +48 8050 0.4540 +48 8277 0.5990 +48 8624 0.5510 +48 8801 0.6840 +48 8802 0.9020 +48 8803 0.7840 +48 9054 0.9370 +48 9085 0.4060 +48 9349 0.6100 +48 9361 0.4590 +48 9391 0.4980 +48 9425 0.4110 +48 9553 0.6360 +48 9563 0.6710 +48 9588 0.4100 +48 9801 0.7210 +48 9843 0.5130 +48 9858 0.4040 +48 10101 0.7940 +48 10449 0.5150 +48 10455 0.5810 +48 10539 0.8830 +48 10632 0.5370 +48 10845 0.4480 +48 10873 0.4370 +48 10891 0.4020 +48 10935 0.4470 +48 10939 0.6190 +48 10964 0.4370 +48 10989 0.4080 +48 11019 0.6980 +48 11194 0.4130 +48 11222 0.5060 +48 11315 0.4510 +48 22934 0.5620 +48 23305 0.4500 +48 23345 0.4250 +48 23405 0.5690 +48 23479 0.9360 +48 23516 0.5050 +48 23521 0.4750 +48 23530 0.4280 +48 25796 0.4490 +48 26227 0.4030 +48 26234 0.9450 +48 26275 0.4410 +48 26589 0.6260 +48 27158 0.4020 +48 27247 0.7250 +48 28998 0.4490 +48 29093 0.4640 +48 29102 0.5480 +48 30061 0.8250 +48 51021 0.6650 +48 51022 0.4940 +48 51023 0.4830 +48 51069 0.5040 +48 51073 0.4570 +48 51081 0.4600 +48 51116 0.4010 +48 51129 0.4580 +48 51149 0.4950 +48 51179 0.7100 +48 51218 0.8340 +48 51263 0.5960 +48 51264 0.6530 +48 51312 0.6420 +48 51647 0.4060 +48 51703 0.4450 +48 54205 0.6480 +48 54363 0.7790 +48 54511 0.6600 +48 54977 0.6320 +48 55168 0.4840 +48 55173 0.5320 +48 55210 0.4510 +48 55240 0.6590 +48 55268 0.4140 +48 55272 0.5010 +48 55276 0.4310 +48 55316 0.4700 +48 55526 0.5870 +48 55554 0.7150 +48 55753 0.6130 +48 55847 0.5840 +48 55862 0.4650 +48 55902 0.5950 +48 56652 0.4390 +48 57019 0.5660 +48 57128 0.9050 +48 57129 0.6030 +48 57817 0.7030 +48 60488 0.6230 +48 63875 0.6510 +48 63931 0.4320 +48 64210 0.4590 +48 64428 0.5460 +48 64432 0.4550 +48 64960 0.5030 +48 64963 0.4220 +48 64965 0.6220 +48 64968 0.6690 +48 64969 0.5590 +48 64975 0.6070 +48 64976 0.6560 +48 64978 0.5160 +48 64979 0.6810 +48 64981 0.6450 +48 64983 0.6380 +48 65080 0.5120 +48 79901 0.7140 +48 80224 0.4900 +48 80347 0.4700 +48 81570 0.6700 +48 81689 0.7040 +48 81894 0.6120 +48 84076 0.5810 +48 84191 0.4590 +48 84532 0.5680 +48 84545 0.6250 +48 84883 0.4100 +48 90624 0.5300 +48 92483 0.5080 +48 94033 0.7510 +48 112812 0.6100 +48 114781 0.4490 +48 122961 0.6720 +48 123228 0.9140 +48 123688 0.4120 +48 124359 0.4060 +48 124995 0.4340 +48 126402 0.4400 +48 130752 0.5660 +48 132949 0.5090 +48 148738 0.4860 +48 149478 0.4370 +48 150274 0.4810 +48 157310 0.5280 +48 160287 0.5120 +48 171425 0.5190 +48 200205 0.6790 +48 253175 0.4060 +48 257202 0.6850 +48 284106 0.4040 +48 388962 0.6270 +48 493869 0.6920 +48 729020 0.4100 +48 730249 0.5940 +48 100526842 0.4600 +49 56 0.4690 +49 167 0.5040 +49 213 0.4070 +49 810 0.5100 +49 928 0.5980 +49 1066 0.4030 +49 1390 0.5890 +49 1504 0.5350 +49 1617 0.4120 +49 1618 0.5530 +49 2515 0.4650 +49 2674 0.4060 +49 5104 0.5180 +49 5619 0.5630 +49 5620 0.5300 +49 6677 0.4500 +49 6691 0.7110 +49 6768 0.4780 +49 6847 0.4580 +49 7141 0.7270 +49 7142 0.5390 +49 7455 0.5630 +49 7704 0.4880 +49 7783 0.8500 +49 7784 0.6480 +49 9633 0.4550 +49 10278 0.5370 +49 11055 0.4970 +49 22917 0.4710 +49 25824 0.4050 +49 25972 0.4110 +49 50511 0.5740 +49 51806 0.5110 +49 53340 0.5620 +49 54514 0.4020 +49 54760 0.4040 +49 55124 0.5130 +49 57120 0.4650 +49 57167 0.4720 +49 57829 0.6230 +49 66037 0.6530 +49 79608 0.5390 +49 80896 0.4800 +49 81833 0.4350 +49 83659 0.4530 +49 83893 0.7290 +49 84519 0.6540 +49 89869 0.4090 +49 91860 0.5110 +49 113177 0.6490 +49 124626 0.4030 +49 126123 0.5070 +49 163688 0.5110 +49 166647 0.5450 +49 284359 0.7760 +49 346673 0.5490 +49 440387 0.5470 +49 100129669 0.5140 +50 51 0.4490 +50 60 0.4140 +50 71 0.4440 +50 81 0.4460 +50 211 0.5680 +50 212 0.6080 +50 216 0.5770 +50 217 0.7510 +50 226 0.6690 +50 229 0.4140 +50 230 0.5760 +50 271 0.4130 +50 291 0.7060 +50 293 0.6520 +50 314 0.4070 +50 335 0.4450 +50 348 0.4500 +50 383 0.4100 +50 396 0.4080 +50 403 0.5540 +50 435 0.4590 +50 445 0.5660 +50 498 0.8840 +50 506 0.8740 +50 509 0.5100 +50 513 0.5290 +50 515 0.5220 +50 516 0.6600 +50 522 0.4660 +50 539 0.4800 +50 549 0.4590 +50 617 0.6000 +50 740 0.8940 +50 847 0.4300 +50 972 0.4340 +50 1152 0.6290 +50 1327 0.5380 +50 1329 0.5780 +50 1352 0.4080 +50 1371 0.6210 +50 1376 0.4430 +50 1431 0.9990 +50 1537 0.9020 +50 1632 0.5270 +50 1678 0.6380 +50 1723 0.4520 +50 1737 0.7270 +50 1738 0.7510 +50 1743 0.9210 +50 1808 0.5010 +50 1892 0.6930 +50 1938 0.5190 +50 1962 0.5600 +50 2023 0.7230 +50 2026 0.5320 +50 2027 0.5760 +50 2070 0.4240 +50 2098 0.4220 +50 2108 0.5180 +50 2109 0.5240 +50 2110 0.6570 +50 2194 0.4480 +50 2203 0.5080 +50 2222 0.4690 +50 2230 0.6040 +50 2232 0.5300 +50 2235 0.8900 +50 2271 0.9490 +50 2323 0.4450 +50 2395 0.9820 +50 2495 0.4500 +50 2512 0.4160 +50 2539 0.6180 +50 2597 0.7440 +50 2618 0.4910 +50 2645 0.4400 +50 2664 0.4040 +50 2731 0.5470 +50 2745 0.5600 +50 2746 0.6650 +50 2747 0.4660 +50 2752 0.5490 +50 2805 0.5960 +50 2806 0.7530 +50 2819 0.5000 +50 2820 0.5130 +50 2821 0.8050 +50 2875 0.4730 +50 2877 0.7590 +50 2878 0.7350 +50 2880 0.7600 +50 2882 0.7650 +50 2936 0.4970 +50 3030 0.6510 +50 3032 0.6930 +50 3033 0.5170 +50 3091 0.4240 +50 3098 0.5400 +50 3099 0.4820 +50 3145 0.4430 +50 3155 0.8610 +50 3178 0.4350 +50 3181 0.4170 +50 3308 0.6940 +50 3309 0.4250 +50 3312 0.6060 +50 3313 0.9270 +50 3326 0.4100 +50 3329 0.9200 +50 3336 0.6370 +50 3337 0.7280 +50 3417 0.9980 +50 3418 0.9980 +50 3419 0.9980 +50 3420 0.9960 +50 3421 0.9940 +50 3658 0.4270 +50 3735 0.4420 +50 3921 0.4210 +50 3948 0.5110 +50 4000 0.4180 +50 4151 0.4010 +50 4191 0.9510 +50 4199 0.4750 +50 4200 0.5190 +50 4493 0.4320 +50 4508 0.4010 +50 4512 0.4500 +50 4513 0.4890 +50 4514 0.4380 +50 4515 0.4890 +50 4519 0.4830 +50 4522 0.4220 +50 4668 0.6610 +50 4682 0.4550 +50 4694 0.5080 +50 4702 0.4530 +50 4704 0.7560 +50 4705 0.7470 +50 4706 0.6580 +50 4714 0.7450 +50 4715 0.4210 +50 4720 0.9550 +50 4722 0.7030 +50 4723 0.9440 +50 4724 0.4700 +50 4726 0.4290 +50 4728 0.7980 +50 4729 0.8140 +50 4891 0.5670 +50 4942 0.4840 +50 4967 0.9570 +50 4968 0.5750 +50 5009 0.6470 +50 5019 0.5220 +50 5037 0.7220 +50 5052 0.5040 +50 5071 0.4120 +50 5091 0.7490 +50 5095 0.4170 +50 5096 0.4080 +50 5105 0.4770 +50 5106 0.5560 +50 5161 0.4760 +50 5162 0.6980 +50 5163 0.5330 +50 5164 0.4620 +50 5165 0.4180 +50 5166 0.4260 +50 5211 0.5460 +50 5213 0.6410 +50 5214 0.5180 +50 5223 0.5640 +50 5224 0.4580 +50 5226 0.6760 +50 5230 0.6480 +50 5232 0.6110 +50 5236 0.5290 +50 5250 0.4900 +50 5313 0.4940 +50 5315 0.6410 +50 5442 0.4510 +50 5469 0.5450 +50 5471 0.4130 +50 5599 0.7680 +50 5601 0.7530 +50 5603 0.4060 +50 5696 0.4230 +50 5720 0.4390 +50 5721 0.4090 +50 5832 0.5610 +50 5834 0.4870 +50 5836 0.4430 +50 5837 0.4480 +50 6059 0.5570 +50 6120 0.5400 +50 6122 0.5040 +50 6123 0.5000 +50 6124 0.4610 +50 6132 0.5210 +50 6133 0.5450 +50 6135 0.7100 +50 6139 0.4730 +50 6150 0.8630 +50 6183 0.8630 +50 6187 0.6050 +50 6193 0.6050 +50 6203 0.8360 +50 6205 0.6180 +50 6207 0.5600 +50 6208 0.4720 +50 6210 0.5340 +50 6217 0.4570 +50 6222 0.8510 +50 6224 0.5570 +50 6228 0.4820 +50 6235 0.4270 +50 6300 0.4120 +50 6389 0.9750 +50 6390 0.9400 +50 6391 0.6420 +50 6392 0.6780 +50 6470 0.4680 +50 6472 0.5900 +50 6576 0.6050 +50 6647 0.6280 +50 6648 0.9680 +50 6649 0.4710 +50 6652 0.4540 +50 6687 0.5220 +50 6720 0.5560 +50 6888 0.7080 +50 6901 0.5900 +50 6950 0.4510 +50 7001 0.4870 +50 7019 0.5710 +50 7037 0.5110 +50 7086 0.6530 +50 7167 0.7990 +50 7263 0.5860 +50 7284 0.6340 +50 7295 0.5120 +50 7360 0.4410 +50 7384 0.8550 +50 7385 0.8790 +50 7386 0.7020 +50 7416 0.8300 +50 7417 0.4060 +50 7498 0.4420 +50 7818 0.8670 +50 7837 0.5110 +50 7915 0.5760 +50 8050 0.6070 +50 8192 0.6420 +50 8277 0.6290 +50 8402 0.4750 +50 8604 0.5940 +50 8624 0.6290 +50 8659 0.5170 +50 8801 0.7350 +50 8802 0.9290 +50 8803 0.8620 +50 9016 0.5450 +50 9054 0.8900 +50 9085 0.4060 +50 9093 0.4940 +50 9349 0.8520 +50 9361 0.8640 +50 9377 0.6430 +50 9380 0.4750 +50 9391 0.4180 +50 9425 0.4070 +50 9481 0.5530 +50 9512 0.6260 +50 9553 0.8650 +50 9563 0.6730 +50 9588 0.5380 +50 9801 0.9140 +50 9804 0.6880 +50 9858 0.8020 +50 9868 0.5730 +50 9927 0.6490 +50 10059 0.5890 +50 10063 0.6050 +50 10102 0.4370 +50 10105 0.5930 +50 10131 0.4650 +50 10157 0.4340 +50 10165 0.5590 +50 10241 0.4370 +50 10245 0.6380 +50 10440 0.6830 +50 10449 0.7500 +50 10452 0.7180 +50 10455 0.6410 +50 10469 0.7110 +50 10476 0.5360 +50 10539 0.5010 +50 10574 0.4130 +50 10632 0.6080 +50 10730 0.4420 +50 10845 0.4140 +50 10873 0.4370 +50 10891 0.6230 +50 10935 0.5170 +50 10939 0.7240 +50 10964 0.6150 +50 10975 0.4500 +50 10989 0.6340 +50 11019 0.7480 +50 11222 0.8810 +50 11315 0.6970 +50 22934 0.5570 +50 23171 0.5980 +50 23193 0.5680 +50 23204 0.4900 +50 23345 0.4240 +50 23405 0.5220 +50 23410 0.4550 +50 23423 0.5130 +50 23479 0.9250 +50 23521 0.4500 +50 23530 0.4930 +50 23640 0.4010 +50 25796 0.4930 +50 25824 0.4980 +50 25828 0.5940 +50 26073 0.4290 +50 26227 0.4240 +50 26234 0.4150 +50 26275 0.8780 +50 26330 0.4800 +50 26517 0.5770 +50 26519 0.5900 +50 26520 0.6220 +50 26521 0.6090 +50 26589 0.8580 +50 27173 0.4590 +50 27235 0.6540 +50 27247 0.8230 +50 28998 0.8690 +50 29088 0.4040 +50 29090 0.5900 +50 29093 0.8660 +50 29102 0.5200 +50 29928 0.5770 +50 30061 0.4010 +50 51014 0.5350 +50 51021 0.8690 +50 51022 0.5030 +50 51023 0.6230 +50 51024 0.4430 +50 51025 0.5260 +50 51027 0.4490 +50 51069 0.8130 +50 51073 0.8860 +50 51081 0.5770 +50 51084 0.4070 +50 51116 0.8080 +50 51142 0.5660 +50 51149 0.4950 +50 51218 0.6370 +50 51263 0.7970 +50 51264 0.8720 +50 51287 0.5090 +50 51290 0.5170 +50 51312 0.5350 +50 51703 0.4910 +50 54205 0.8070 +50 54511 0.6490 +50 54543 0.5050 +50 54704 0.4460 +50 54927 0.6780 +50 54948 0.8730 +50 55143 0.4580 +50 55168 0.6310 +50 55173 0.8640 +50 55210 0.4470 +50 55268 0.4060 +50 55272 0.5070 +50 55276 0.4290 +50 55316 0.4760 +50 55526 0.6520 +50 55554 0.8180 +50 55699 0.4660 +50 55753 0.8860 +50 55847 0.4990 +50 55862 0.4340 +50 55902 0.6060 +50 56652 0.4790 +50 56942 0.5290 +50 56993 0.5800 +50 57019 0.5430 +50 57128 0.8420 +50 57129 0.8540 +50 60488 0.8670 +50 63875 0.8740 +50 63931 0.8590 +50 64111 0.4400 +50 64210 0.4260 +50 64428 0.5430 +50 64432 0.5590 +50 64960 0.8760 +50 64963 0.8570 +50 64965 0.8550 +50 64968 0.8740 +50 64969 0.8870 +50 64975 0.8540 +50 64976 0.8760 +50 64978 0.6890 +50 64979 0.8750 +50 64981 0.8700 +50 64983 0.8620 +50 65003 0.5200 +50 65018 0.6440 +50 65080 0.8690 +50 65985 0.4130 +50 79145 0.6770 +50 79728 0.4010 +50 79944 0.4840 +50 80224 0.5280 +50 80273 0.6870 +50 80347 0.5520 +50 81570 0.4400 +50 81689 0.7610 +50 81894 0.5240 +50 83659 0.4500 +50 84076 0.6280 +50 84233 0.4370 +50 84269 0.5160 +50 84532 0.6070 +50 84545 0.8640 +50 84701 0.4550 +50 84706 0.4210 +50 90313 0.4680 +50 90624 0.6790 +50 90639 0.5260 +50 92483 0.5290 +50 92609 0.7550 +50 94033 0.6860 +50 112812 0.6630 +50 114781 0.6150 +50 116541 0.4850 +50 122961 0.6980 +50 123228 0.9150 +50 124359 0.4060 +50 124995 0.5490 +50 126402 0.5430 +50 130752 0.5750 +50 131118 0.6520 +50 132949 0.4950 +50 134266 0.6530 +50 137362 0.4730 +50 137902 0.5150 +50 148022 0.5060 +50 149478 0.4370 +50 150274 0.7870 +50 157310 0.6500 +50 160287 0.5340 +50 171425 0.6140 +50 197257 0.5750 +50 200205 0.7390 +50 253175 0.4060 +50 257202 0.7600 +50 353376 0.5060 +50 374291 0.6970 +50 388753 0.6050 +50 388962 0.5700 +50 400916 0.5970 +50 401505 0.4500 +50 441531 0.4610 +50 493869 0.7620 +50 641776 0.4860 +50 643909 0.4860 +50 728524 0.4860 +50 729020 0.4320 +50 730249 0.6260 +50 100188893 0.4050 +50 100272147 0.5080 +50 100287932 0.6200 +50 100302736 0.5060 +50 100526842 0.4600 +50 100996746 0.4860 +50 105180390 0.4860 +50 105180391 0.4860 +51 60 0.4810 +51 123 0.5370 +51 189 0.6870 +51 213 0.4360 +51 215 0.5750 +51 216 0.4100 +51 217 0.9060 +51 218 0.4250 +51 219 0.8690 +51 223 0.8970 +51 224 0.9200 +51 225 0.4380 +51 316 0.9280 +51 338 0.5640 +51 345 0.4130 +51 348 0.4370 +51 501 0.8800 +51 549 0.4920 +51 570 0.6200 +51 593 0.4080 +51 594 0.4350 +51 788 0.6300 +51 847 0.8010 +51 875 0.4220 +51 885 0.4030 +51 948 0.6970 +51 949 0.6880 +51 950 0.6900 +51 1050 0.4670 +51 1103 0.4320 +51 1149 0.4780 +51 1374 0.8370 +51 1375 0.6680 +51 1376 0.9820 +51 1384 0.8420 +51 1387 0.4680 +51 1431 0.6260 +51 1571 0.5310 +51 1579 0.5500 +51 1581 0.5880 +51 1582 0.5280 +51 1593 0.4520 +51 1610 0.6740 +51 1622 0.6390 +51 1629 0.9370 +51 1632 0.7910 +51 1666 0.5900 +51 1737 0.4310 +51 1738 0.5090 +51 1891 0.8340 +51 1892 0.9960 +51 1962 0.9980 +51 2052 0.4380 +51 2053 0.7670 +51 2108 0.7920 +51 2109 0.7650 +51 2110 0.5850 +51 2167 0.6260 +51 2168 0.8150 +51 2169 0.5470 +51 2170 0.5230 +51 2171 0.4560 +51 2180 0.8290 +51 2181 0.8000 +51 2182 0.7820 +51 2194 0.8250 +51 2203 0.4120 +51 2307 0.4220 +51 2538 0.6000 +51 2539 0.4850 +51 2597 0.5080 +51 2639 0.9340 +51 2645 0.4490 +51 2710 0.4170 +51 2806 0.6080 +51 2875 0.5450 +51 2877 0.4420 +51 2878 0.4420 +51 2880 0.4190 +51 2882 0.4320 +51 2936 0.5930 +51 2938 0.4060 +51 3030 0.9800 +51 3032 0.9960 +51 3033 0.8110 +51 3155 0.7620 +51 3156 0.6250 +51 3157 0.5210 +51 3158 0.6550 +51 3242 0.4380 +51 3295 0.9980 +51 3416 0.5730 +51 3417 0.7780 +51 3418 0.4690 +51 3569 0.4010 +51 3611 0.4670 +51 3630 0.6130 +51 3667 0.4620 +51 3952 0.5110 +51 3953 0.5220 +51 3988 0.4210 +51 3991 0.6630 +51 3992 0.4890 +51 4023 0.6290 +51 4193 0.5400 +51 4194 0.5010 +51 4329 0.9430 +51 4358 0.5820 +51 4547 0.6360 +51 4728 0.4960 +51 4843 0.6380 +51 5019 0.4500 +51 5091 0.4600 +51 5095 0.9420 +51 5096 0.9520 +51 5105 0.6200 +51 5106 0.6620 +51 5162 0.4270 +51 5166 0.6370 +51 5170 0.4140 +51 5189 0.6290 +51 5190 0.5440 +51 5191 0.6640 +51 5192 0.8350 +51 5194 0.8780 +51 5195 0.8190 +51 5226 0.4200 +51 5244 0.4040 +51 5264 0.5380 +51 5346 0.4950 +51 5447 0.4440 +51 5465 0.9440 +51 5467 0.6670 +51 5468 0.7400 +51 5469 0.5460 +51 5824 0.7540 +51 5825 0.8230 +51 5828 0.7840 +51 5830 0.9690 +51 6233 0.5210 +51 6256 0.6450 +51 6296 0.4990 +51 6319 0.8050 +51 6342 0.9840 +51 6514 0.4030 +51 6517 0.5480 +51 6604 0.4460 +51 6648 0.4560 +51 6713 0.4060 +51 6720 0.8580 +51 6721 0.5880 +51 6907 0.4850 +51 7311 0.5030 +51 7314 0.5380 +51 7316 0.5590 +51 7321 0.5370 +51 7322 0.6890 +51 7323 0.5340 +51 7350 0.6100 +51 7351 0.7740 +51 7352 0.5990 +51 7837 0.5740 +51 8309 0.9110 +51 8310 0.9380 +51 8443 0.8510 +51 8504 0.4130 +51 8528 0.6620 +51 8540 0.6140 +51 8647 0.4640 +51 8648 0.5240 +51 8660 0.4080 +51 8694 0.6560 +51 8799 0.5790 +51 8800 0.7050 +51 8802 0.5290 +51 8856 0.4210 +51 9085 0.5080 +51 9213 0.4780 +51 9370 0.7110 +51 9399 0.5200 +51 9409 0.5010 +51 9415 0.5210 +51 9425 0.5160 +51 9563 0.6220 +51 9607 0.5530 +51 9970 0.4030 +51 9971 0.5000 +51 10005 0.7680 +51 10062 0.4820 +51 10150 0.6360 +51 10449 0.9890 +51 10455 0.9670 +51 10462 0.4140 +51 10498 0.4760 +51 10499 0.4950 +51 10587 0.4930 +51 10891 0.6940 +51 10901 0.7150 +51 10965 0.7490 +51 10998 0.5950 +51 10999 0.5870 +51 11001 0.8430 +51 11112 0.8490 +51 11332 0.5080 +51 11343 0.4780 +51 23054 0.4530 +51 23175 0.4900 +51 23205 0.6010 +51 23305 0.7140 +51 23408 0.4010 +51 23411 0.4570 +51 23417 0.7690 +51 23597 0.4160 +51 23600 0.8100 +51 26061 0.7070 +51 26063 0.8540 +51 26275 0.5800 +51 26291 0.5730 +51 50507 0.5480 +51 51021 0.4010 +51 51084 0.6200 +51 51085 0.5770 +51 51094 0.4190 +51 51099 0.5570 +51 51102 0.9330 +51 51144 0.6270 +51 51179 0.6350 +51 51268 0.6710 +51 51703 0.7490 +51 54205 0.4170 +51 54363 0.6860 +51 54677 0.7310 +51 54898 0.4780 +51 54988 0.4710 +51 55268 0.5290 +51 55554 0.5400 +51 55670 0.5490 +51 55711 0.4020 +51 55825 0.7720 +51 55862 0.9660 +51 55902 0.9590 +51 56898 0.4410 +51 57104 0.6450 +51 57678 0.4860 +51 57818 0.4780 +51 60481 0.6030 +51 63976 0.4050 +51 64064 0.4110 +51 64087 0.4980 +51 64834 0.6030 +51 64902 0.8240 +51 65985 0.4900 +51 79071 0.4640 +51 79602 0.4770 +51 79611 0.9480 +51 79718 0.4080 +51 79777 0.5420 +51 79783 0.4720 +51 80205 0.4340 +51 80221 0.4910 +51 80347 0.5080 +51 80724 0.4960 +51 81616 0.6380 +51 83401 0.4050 +51 83752 0.6750 +51 84129 0.5380 +51 84188 0.4500 +51 84263 0.8580 +51 84320 0.4700 +51 84532 0.9560 +51 84649 0.6470 +51 84803 0.5140 +51 85441 0.4720 +51 91452 0.6770 +51 92579 0.4780 +51 92960 0.4040 +51 96764 0.4100 +51 116285 0.4380 +51 122970 0.7190 +51 124359 0.5080 +51 126129 0.6360 +51 132949 0.8160 +51 133522 0.4800 +51 134526 0.4600 +51 137902 0.5740 +51 137964 0.5860 +51 140856 0.4420 +51 158833 0.4360 +51 196743 0.6530 +51 197322 0.4320 +51 219743 0.9600 +51 253175 0.5080 +51 257202 0.4200 +51 283927 0.6260 +51 341392 0.4450 +51 348158 0.4020 +51 373156 0.6580 +51 376497 0.7890 +51 390916 0.6070 +51 414149 0.6150 +51 493869 0.4200 +51 641371 0.5450 +51 109703458 0.6010 +52 55 0.4970 +52 60 0.4210 +52 100 0.4320 +52 338 0.4210 +52 439 0.8970 +52 689 0.4030 +52 999 0.5130 +52 1398 0.5190 +52 1407 0.4410 +52 1408 0.4350 +52 1499 0.7620 +52 1738 0.4040 +52 1845 0.5540 +52 1969 0.7590 +52 2047 0.6610 +52 2048 0.6370 +52 2098 0.6350 +52 2534 0.4650 +52 2539 0.7830 +52 2597 0.4210 +52 2739 0.6260 +52 2745 0.8510 +52 2885 0.4750 +52 2909 0.6020 +52 2936 0.6710 +52 3029 0.4420 +52 3336 0.4770 +52 3746 0.6360 +52 3948 0.6770 +52 4036 0.4120 +52 4361 0.4020 +52 4528 0.4550 +52 4682 0.4260 +52 4690 0.4950 +52 4706 0.6840 +52 4948 0.8990 +52 5226 0.5600 +52 5236 0.4380 +52 5306 0.4690 +52 5728 0.5590 +52 5770 0.6520 +52 5771 0.4490 +52 5778 0.4710 +52 5781 0.5520 +52 5782 0.5170 +52 5783 0.4200 +52 5787 0.4080 +52 5795 0.4100 +52 5802 0.4380 +52 5805 0.7720 +52 6205 0.4500 +52 6288 0.4910 +52 6291 0.7110 +52 6714 0.4350 +52 6888 0.4760 +52 6948 0.6470 +52 7086 0.7600 +52 7167 0.4330 +52 7358 0.5070 +52 7818 0.6130 +52 7837 0.4010 +52 8277 0.7160 +52 8556 0.4720 +52 8813 0.4340 +52 9563 0.7440 +52 9669 0.5550 +52 10101 0.4340 +52 10463 0.4170 +52 11112 0.4130 +52 11151 0.4320 +52 23040 0.4240 +52 26175 0.4750 +52 26751 0.5240 +52 29083 0.4490 +52 29086 0.4180 +52 29101 0.4950 +52 51022 0.8050 +52 51031 0.4490 +52 51314 0.4100 +52 51460 0.4120 +52 54059 0.5430 +52 54221 0.5250 +52 54935 0.4880 +52 55644 0.8020 +52 57179 0.4670 +52 57508 0.4080 +52 57571 0.4180 +52 64172 0.8240 +52 64745 0.5280 +52 79728 0.6180 +52 80224 0.4230 +52 80273 0.6010 +52 80308 0.8540 +52 80324 0.4200 +52 81689 0.4400 +52 83394 0.4240 +52 83480 0.4110 +52 83594 0.6440 +52 84076 0.8100 +52 84656 0.4090 +52 114971 0.4550 +52 123811 0.5250 +52 126789 0.4110 +52 196074 0.5140 +52 404672 0.4160 +52 100130890 0.5300 +52 100131187 0.5320 +52 100528017 0.7170 +54 60 0.5550 +54 207 0.4930 +54 213 0.4790 +54 249 0.6280 +54 479 0.4090 +54 495 0.4090 +54 632 0.8820 +54 645 0.9140 +54 650 0.6070 +54 760 0.6250 +54 860 0.7620 +54 885 0.4350 +54 968 0.5340 +54 1152 0.5440 +54 1186 0.5910 +54 1277 0.5280 +54 1278 0.5930 +54 1401 0.4070 +54 1435 0.7350 +54 1436 0.6290 +54 1499 0.4930 +54 1513 0.9220 +54 1520 0.4250 +54 1593 0.5570 +54 1758 0.5470 +54 2099 0.4560 +54 2207 0.4100 +54 2353 0.8120 +54 2597 0.5800 +54 3381 0.6580 +54 3479 0.4870 +54 3552 0.4870 +54 3553 0.6090 +54 3569 0.5970 +54 3605 0.4470 +54 3630 0.4160 +54 3684 0.4920 +54 3685 0.5710 +54 3690 0.5560 +54 3725 0.6300 +54 4041 0.4320 +54 4286 0.4540 +54 4318 0.7480 +54 4321 0.4690 +54 4322 0.5090 +54 4772 0.9540 +54 4773 0.6410 +54 4790 0.5210 +54 4792 0.6090 +54 4907 0.4390 +54 4982 0.7760 +54 5167 0.9260 +54 5169 0.9080 +54 5175 0.4430 +54 5251 0.4730 +54 5335 0.4400 +54 5530 0.4360 +54 5595 0.4050 +54 5741 0.7930 +54 5744 0.5750 +54 5745 0.4350 +54 5788 0.4440 +54 5832 0.5100 +54 6678 0.4080 +54 6688 0.5120 +54 6696 0.7010 +54 6714 0.5080 +54 7040 0.4780 +54 7124 0.6190 +54 7157 0.4380 +54 7189 0.6100 +54 7305 0.4920 +54 7450 0.4690 +54 7837 0.4870 +54 8074 0.5430 +54 8600 0.9620 +54 8668 0.4570 +54 8737 0.4310 +54 8792 0.6260 +54 10312 0.5160 +54 10457 0.4740 +54 10763 0.5280 +54 22943 0.5450 +54 23659 0.4030 +54 25792 0.5640 +54 25961 0.4890 +54 28962 0.4960 +54 29760 0.4650 +54 50489 0.5080 +54 50616 0.4500 +54 50964 0.7260 +54 51205 0.4980 +54 51433 0.4020 +54 51478 0.4520 +54 54209 0.4270 +54 55312 0.9180 +54 65220 0.6830 +54 80308 0.9020 +54 81501 0.8390 +54 83594 0.7490 +54 93650 0.4800 +54 121340 0.7190 +54 124997 0.4050 +54 126014 0.7830 +54 128506 0.7060 +54 137902 0.4870 +54 245972 0.7470 +54 390928 0.7050 +55 354 0.9560 +55 367 0.4380 +55 563 0.7270 +55 1915 0.4440 +55 2629 0.7730 +55 2734 0.4170 +55 3817 0.9480 +55 3818 0.9330 +55 4477 0.9160 +55 4824 0.4530 +55 5304 0.5110 +55 6406 0.6360 +55 6407 0.6610 +55 6652 0.4510 +55 6690 0.4080 +55 7047 0.8820 +55 7113 0.4430 +55 7180 0.4420 +55 7276 0.4100 +55 7923 0.4120 +55 8000 0.4500 +55 8411 0.4290 +55 9066 0.5840 +55 22915 0.4280 +55 23557 0.6880 +55 50636 0.7720 +55 51109 0.5490 +55 60496 0.5180 +55 79689 0.6530 +55 80736 0.4220 +55 83639 0.4810 +55 85414 0.9150 +55 158158 0.4450 +55 196463 0.4110 +55 261729 0.7270 +56 90 0.8160 +56 1583 0.4470 +56 1761 0.4210 +56 4041 0.6230 +56 4629 0.4250 +56 4904 0.4110 +56 5125 0.6170 +56 5175 0.4230 +56 5620 0.4980 +56 6670 0.5940 +56 6677 0.5610 +56 7141 0.5660 +56 7490 0.4040 +56 8813 0.5960 +56 9241 0.5940 +56 11055 0.5600 +56 23435 0.4550 +56 28959 0.4790 +56 50511 0.6310 +56 51087 0.4400 +56 54514 0.4980 +56 54825 0.4200 +56 54859 0.5940 +56 57152 0.5480 +56 66004 0.4060 +56 79893 0.4100 +56 80320 0.7860 +56 81833 0.5110 +56 83639 0.5980 +56 121340 0.5330 +56 124912 0.5080 +56 125997 0.7770 +56 130574 0.5250 +56 160065 0.4560 +56 171169 0.5320 +56 199720 0.4270 +56 221833 0.6790 +56 246777 0.4200 +56 284348 0.4050 +56 399967 0.5080 +56 399968 0.5590 +56 643418 0.8050 +56 100129669 0.5100 +56 100131390 0.8890 +56 100169851 0.5320 +56 101928108 0.4350 +58 59 0.9100 +58 60 0.9010 +58 70 0.9660 +58 71 0.9200 +58 72 0.9600 +58 81 0.5280 +58 87 0.6860 +58 88 0.9050 +58 89 0.8250 +58 90 0.5740 +58 91 0.5100 +58 92 0.5760 +58 93 0.7120 +58 159 0.4580 +58 207 0.6880 +58 213 0.4280 +58 274 0.5000 +58 301 0.4030 +58 302 0.4030 +58 378 0.5110 +58 487 0.6670 +58 488 0.7280 +58 829 0.9320 +58 832 0.9420 +58 844 0.5020 +58 845 0.4770 +58 947 0.4030 +58 999 0.4360 +58 1000 0.4770 +58 1072 0.9780 +58 1073 0.9670 +58 1146 0.4200 +58 1158 0.8550 +58 1180 0.4350 +58 1264 0.6140 +58 1277 0.5030 +58 1281 0.4540 +58 1339 0.4020 +58 1410 0.4360 +58 1432 0.4120 +58 1490 0.4120 +58 1495 0.9120 +58 1756 0.6650 +58 1769 0.4710 +58 1773 0.5260 +58 1785 0.4930 +58 1915 0.4180 +58 1956 0.4240 +58 1965 0.9080 +58 2027 0.5350 +58 2086 0.5290 +58 2247 0.4920 +58 2316 0.9480 +58 2317 0.5250 +58 2318 0.7920 +58 2335 0.4290 +58 2597 0.6260 +58 2638 0.8070 +58 2804 0.4610 +58 2875 0.4390 +58 2934 0.9860 +58 3091 0.4320 +58 3623 0.4400 +58 3815 0.4950 +58 3908 0.4050 +58 3936 0.9710 +58 3958 0.4150 +58 4000 0.4250 +58 4087 0.4120 +58 4151 0.5930 +58 4154 0.4500 +58 4306 0.4160 +58 4478 0.5270 +58 4534 0.4440 +58 4604 0.6030 +58 4606 0.7780 +58 4607 0.6070 +58 4617 0.4200 +58 4618 0.4980 +58 4619 0.8920 +58 4620 0.9460 +58 4621 0.8240 +58 4622 0.6260 +58 4624 0.7470 +58 4625 0.9450 +58 4626 0.6650 +58 4627 0.4400 +58 4628 0.4150 +58 4629 0.5710 +58 4632 0.9640 +58 4633 0.9260 +58 4634 0.6630 +58 4635 0.5090 +58 4637 0.4190 +58 4651 0.9140 +58 4654 0.4770 +58 4656 0.6950 +58 4878 0.6280 +58 4879 0.5760 +58 4892 0.5410 +58 5175 0.4350 +58 5216 0.9760 +58 5224 0.4030 +58 5230 0.4990 +58 5350 0.4310 +58 5358 0.9400 +58 5420 0.4490 +58 5460 0.4580 +58 5465 0.5230 +58 5499 0.9500 +58 5501 0.8630 +58 5502 0.4160 +58 5581 0.4020 +58 5598 0.4330 +58 5629 0.4090 +58 5700 0.4540 +58 5756 0.9380 +58 5837 0.4390 +58 5962 0.4650 +58 6198 0.4110 +58 6261 0.6140 +58 6262 0.5110 +58 6442 0.4130 +58 6503 0.5130 +58 6588 0.6110 +58 6597 0.5420 +58 6598 0.5240 +58 6602 0.4530 +58 6624 0.4870 +58 6709 0.4080 +58 6714 0.4410 +58 6876 0.6280 +58 6898 0.4390 +58 6908 0.4680 +58 7003 0.5910 +58 7040 0.4400 +58 7111 0.9290 +58 7114 0.6140 +58 7125 0.9840 +58 7134 0.9640 +58 7135 0.7150 +58 7136 0.8610 +58 7137 0.9450 +58 7138 0.8510 +58 7139 0.9660 +58 7140 0.8650 +58 7168 0.9760 +58 7169 0.9390 +58 7170 0.9860 +58 7178 0.4100 +58 7273 0.7300 +58 7277 0.4190 +58 7402 0.9220 +58 7408 0.9980 +58 7410 0.4320 +58 7414 0.9420 +58 7430 0.5190 +58 7431 0.5230 +58 7454 0.9610 +58 7456 0.9240 +58 7532 0.4540 +58 7533 0.4170 +58 7534 0.4220 +58 7791 0.5730 +58 7846 0.4410 +58 8048 0.7780 +58 8361 0.4330 +58 8557 0.6800 +58 8631 0.4260 +58 8735 0.5930 +58 8736 0.4070 +58 8976 0.9630 +58 9468 0.4870 +58 9474 0.4250 +58 9499 0.8740 +58 9759 0.4450 +58 9788 0.9060 +58 9948 0.4410 +58 10092 0.8820 +58 10093 0.9330 +58 10094 0.9450 +58 10095 0.9390 +58 10096 0.9310 +58 10097 0.9760 +58 10109 0.9390 +58 10120 0.6680 +58 10121 0.6680 +58 10163 0.9190 +58 10324 0.7790 +58 10345 0.4450 +58 10376 0.4370 +58 10398 0.4400 +58 10468 0.4050 +58 10486 0.5490 +58 10487 0.9570 +58 10524 0.4170 +58 10540 0.7650 +58 10575 0.5700 +58 10671 0.6840 +58 10773 0.7700 +58 10880 0.5620 +58 10881 0.5570 +58 11034 0.5720 +58 11144 0.4980 +58 11155 0.6580 +58 11214 0.4490 +58 11258 0.6070 +58 11344 0.4070 +58 22948 0.5890 +58 23022 0.5230 +58 23242 0.9140 +58 23645 0.9040 +58 23676 0.4460 +58 24142 0.9100 +58 25802 0.9210 +58 27063 0.4510 +58 27295 0.6350 +58 29765 0.4270 +58 29895 0.9150 +58 30816 0.5040 +58 51091 0.4940 +58 51164 0.6980 +58 51442 0.6500 +58 51778 0.4950 +58 54795 0.4280 +58 55740 0.5000 +58 55860 0.7430 +58 55929 0.5410 +58 56203 0.6010 +58 57190 0.7680 +58 57496 0.9140 +58 57591 0.9170 +58 58498 0.5040 +58 58529 0.7730 +58 80086 0.4090 +58 81569 0.5660 +58 84174 0.4960 +58 84193 0.9110 +58 84448 0.5140 +58 84516 0.6730 +58 84665 0.5040 +58 84676 0.6420 +58 84700 0.5300 +58 84790 0.4170 +58 84919 0.8000 +58 85477 0.4900 +58 91010 0.9110 +58 93973 0.4590 +58 94134 0.9080 +58 129446 0.6480 +58 131377 0.6870 +58 137735 0.4020 +58 140465 0.4080 +58 142678 0.6620 +58 146862 0.4180 +58 150572 0.4080 +58 221692 0.9300 +58 245806 0.5260 +58 284382 0.5600 +58 345456 0.7410 +58 375189 0.8260 +58 390594 0.8650 +58 405754 0.5420 +58 442721 0.6040 +58 653145 0.4830 +59 60 0.5060 +59 70 0.9600 +59 72 0.9880 +59 87 0.4470 +59 88 0.7590 +59 387 0.4530 +59 633 0.6920 +59 688 0.6030 +59 794 0.4850 +59 800 0.7480 +59 832 0.4120 +59 845 0.4180 +59 891 0.4070 +59 947 0.4530 +59 968 0.4820 +59 999 0.4340 +59 1000 0.4150 +59 1003 0.5190 +59 1058 0.4240 +59 1072 0.5780 +59 1073 0.4770 +59 1264 0.8920 +59 1265 0.7040 +59 1277 0.9280 +59 1278 0.8140 +59 1281 0.8820 +59 1282 0.6030 +59 1284 0.4420 +59 1285 0.4230 +59 1289 0.5980 +59 1290 0.5460 +59 1291 0.4680 +59 1292 0.5410 +59 1293 0.4550 +59 1387 0.4450 +59 1464 0.4360 +59 1465 0.4070 +59 1482 0.4180 +59 1490 0.7270 +59 1520 0.4120 +59 1627 0.4560 +59 1634 0.5370 +59 1956 0.5300 +59 2033 0.6840 +59 2192 0.4030 +59 2200 0.7210 +59 2201 0.5450 +59 2309 0.4360 +59 2316 0.6830 +59 2331 0.4040 +59 2335 0.6890 +59 2339 0.4290 +59 2342 0.4460 +59 2597 0.6290 +59 2626 0.4110 +59 2638 0.9720 +59 2648 0.4320 +59 2810 0.5120 +59 2934 0.4250 +59 2982 0.4070 +59 3146 0.4270 +59 3313 0.5010 +59 3490 0.4450 +59 3516 0.5770 +59 3664 0.4210 +59 3672 0.6210 +59 3685 0.4220 +59 3693 0.6280 +59 3779 0.4280 +59 3791 0.4040 +59 3837 0.4270 +59 3852 0.4220 +59 3856 0.4300 +59 3861 0.4440 +59 3875 0.4200 +59 3880 0.4520 +59 3934 0.4730 +59 3936 0.5640 +59 3958 0.5470 +59 3973 0.4260 +59 4015 0.5330 +59 4053 0.4560 +59 4060 0.5070 +59 4064 0.4260 +59 4072 0.4330 +59 4087 0.4670 +59 4088 0.7330 +59 4256 0.4260 +59 4288 0.4080 +59 4313 0.6170 +59 4318 0.4290 +59 4619 0.4180 +59 4624 0.5590 +59 4625 0.5460 +59 4627 0.9530 +59 4628 0.9590 +59 4629 0.9970 +59 4632 0.5970 +59 4633 0.4680 +59 4634 0.4460 +59 4636 0.5800 +59 4637 0.9440 +59 4638 0.8900 +59 4851 0.6610 +59 4853 0.5590 +59 4854 0.4500 +59 4855 0.7150 +59 5034 0.4970 +59 5042 0.4590 +59 5156 0.5580 +59 5159 0.7810 +59 5175 0.6290 +59 5216 0.4490 +59 5223 0.5350 +59 5592 0.4990 +59 5788 0.4610 +59 5829 0.6130 +59 6275 0.4810 +59 6279 0.4680 +59 6280 0.4120 +59 6347 0.4070 +59 6387 0.4140 +59 6401 0.4090 +59 6525 0.5910 +59 6591 0.4130 +59 6624 0.4340 +59 6662 0.4820 +59 6722 0.7410 +59 6876 0.9540 +59 6908 0.4860 +59 6925 0.4080 +59 6943 0.4460 +59 7040 0.7050 +59 7042 0.5420 +59 7043 0.5280 +59 7046 0.6200 +59 7048 0.6200 +59 7057 0.4190 +59 7070 0.6320 +59 7076 0.5030 +59 7094 0.6290 +59 7139 0.4800 +59 7157 0.4190 +59 7168 0.8380 +59 7169 0.8240 +59 7170 0.7410 +59 7171 0.6890 +59 7273 0.5040 +59 7291 0.4020 +59 7316 0.5610 +59 7317 0.4380 +59 7356 0.4350 +59 7373 0.4040 +59 7414 0.6890 +59 7415 0.4550 +59 7431 0.7760 +59 7450 0.5540 +59 7529 0.6860 +59 7531 0.5680 +59 7532 0.4100 +59 7533 0.4280 +59 7534 0.4620 +59 7846 0.4040 +59 8076 0.5520 +59 8218 0.4910 +59 8349 0.4690 +59 8407 0.5960 +59 8437 0.5480 +59 8516 0.4280 +59 8735 0.4790 +59 8826 0.4750 +59 8850 0.4320 +59 9133 0.4290 +59 9276 0.4500 +59 9314 0.4180 +59 9358 0.4390 +59 9468 0.4870 +59 9794 0.5320 +59 9839 0.5020 +59 9948 0.6390 +59 10046 0.5320 +59 10097 0.4510 +59 10120 0.6680 +59 10121 0.6910 +59 10174 0.5060 +59 10376 0.4320 +59 10381 0.4040 +59 10398 0.9700 +59 10486 0.6290 +59 10487 0.6360 +59 10516 0.5080 +59 10540 0.7520 +59 10575 0.5700 +59 10580 0.5490 +59 10627 0.6490 +59 10631 0.7300 +59 10671 0.6840 +59 10880 0.5590 +59 10881 0.5570 +59 10971 0.4240 +59 11034 0.4830 +59 11151 0.4510 +59 11258 0.6220 +59 11344 0.6180 +59 22938 0.4510 +59 22948 0.5980 +59 25802 0.7730 +59 26287 0.5250 +59 27063 0.6250 +59 28984 0.6190 +59 29114 0.5980 +59 29766 0.4540 +59 29895 0.7210 +59 30008 0.6110 +59 50508 0.4070 +59 51164 0.6980 +59 51705 0.4570 +59 51806 0.5010 +59 54829 0.6240 +59 55534 0.5250 +59 55860 0.7440 +59 57591 0.4080 +59 57674 0.4140 +59 58498 0.7240 +59 64393 0.4230 +59 79784 0.9070 +59 81031 0.6170 +59 81569 0.5660 +59 84193 0.9040 +59 84441 0.5200 +59 84516 0.6730 +59 84690 0.4200 +59 84706 0.6210 +59 84790 0.4020 +59 89765 0.4350 +59 90865 0.4410 +59 93408 0.5740 +59 93649 0.6490 +59 93973 0.4590 +59 103910 0.7550 +59 140465 0.9340 +59 154214 0.4640 +59 221476 0.4130 +59 257169 0.4610 +59 284382 0.5590 +59 375189 0.5240 +59 440738 0.4770 +59 728378 0.4260 +60 70 0.9140 +60 71 0.9990 +60 81 0.9710 +60 86 0.9990 +60 87 0.9850 +60 88 0.9740 +60 91 0.5090 +60 92 0.5110 +60 93 0.4920 +60 100 0.4180 +60 102 0.4640 +60 118 0.4090 +60 120 0.5520 +60 123 0.6010 +60 142 0.7940 +60 154 0.4050 +60 155 0.4030 +60 163 0.5010 +60 174 0.4900 +60 176 0.5780 +60 177 0.4130 +60 182 0.5540 +60 183 0.5820 +60 185 0.4310 +60 197 0.4210 +60 199 0.7540 +60 207 0.9230 +60 208 0.5560 +60 213 0.8860 +60 216 0.5480 +60 226 0.7840 +60 229 0.5300 +60 231 0.6240 +60 238 0.6170 +60 240 0.4010 +60 284 0.4140 +60 285 0.5980 +60 286 0.4540 +60 287 0.4350 +60 288 0.4350 +60 290 0.6010 +60 301 0.7000 +60 302 0.7670 +60 307 0.5960 +60 308 0.9500 +60 309 0.4440 +60 317 0.5720 +60 328 0.6470 +60 329 0.5200 +60 330 0.4620 +60 331 0.6320 +60 332 0.4440 +60 335 0.4380 +60 338 0.4370 +60 348 0.6430 +60 351 0.8010 +60 354 0.4840 +60 355 0.4260 +60 356 0.5970 +60 358 0.4620 +60 359 0.5660 +60 360 0.4620 +60 362 0.5000 +60 364 0.4050 +60 367 0.6880 +60 382 0.6360 +60 383 0.5950 +60 384 0.4240 +60 387 0.9780 +60 388 0.4220 +60 389 0.7860 +60 392 0.5860 +60 396 0.4880 +60 405 0.5210 +60 406 0.4490 +60 408 0.5880 +60 409 0.6080 +60 467 0.7660 +60 468 0.5480 +60 472 0.6450 +60 488 0.4020 +60 491 0.4140 +60 493 0.4420 +60 498 0.6420 +60 501 0.4130 +60 506 0.6380 +60 523 0.4510 +60 526 0.4400 +60 538 0.4260 +60 558 0.4870 +60 567 0.8130 +60 581 0.6110 +60 595 0.8110 +60 596 0.8850 +60 597 0.4030 +60 598 0.7840 +60 599 0.4130 +60 604 0.6400 +60 605 0.7370 +60 627 0.7100 +60 632 0.6620 +60 648 0.5070 +60 650 0.5370 +60 652 0.5430 +60 654 0.5260 +60 655 0.4180 +60 659 0.4120 +60 664 0.4790 +60 672 0.5810 +60 673 0.5760 +60 675 0.4180 +60 682 0.4350 +60 695 0.4460 +60 701 0.4020 +60 718 0.5880 +60 752 0.5760 +60 759 0.4760 +60 768 0.4950 +60 793 0.4880 +60 800 0.4330 +60 808 0.6360 +60 810 0.6000 +60 811 0.5850 +60 815 0.6910 +60 821 0.6880 +60 823 0.4210 +60 826 0.4070 +60 829 0.9640 +60 830 0.4740 +60 832 0.9760 +60 834 0.7290 +60 835 0.4750 +60 836 0.9890 +60 837 0.4300 +60 839 0.9460 +60 840 0.9670 +60 841 0.7790 +60 842 0.8190 +60 857 0.8700 +60 860 0.6970 +60 861 0.4350 +60 867 0.6110 +60 875 0.5040 +60 885 0.8160 +60 891 0.8030 +60 894 0.4920 +60 896 0.4970 +60 898 0.6500 +60 900 0.4880 +60 901 0.4320 +60 908 0.6690 +60 916 0.4160 +60 920 0.7770 +60 925 0.6720 +60 928 0.6170 +60 930 0.5830 +60 940 0.5240 +60 941 0.5150 +60 942 0.5460 +60 947 0.6700 +60 948 0.6120 +60 949 0.6320 +60 950 0.6110 +60 958 0.5120 +60 960 0.7280 +60 967 0.6620 +60 968 0.6370 +60 969 0.4760 +60 975 0.6070 +60 983 0.6610 +60 991 0.4230 +60 993 0.4620 +60 995 0.5390 +60 999 0.8330 +60 1000 0.7840 +60 1003 0.7460 +60 1015 0.5890 +60 1017 0.8160 +60 1019 0.7120 +60 1020 0.5160 +60 1021 0.6380 +60 1025 0.5690 +60 1026 0.7090 +60 1027 0.5800 +60 1029 0.6830 +60 1030 0.4010 +60 1033 0.4460 +60 1050 0.6020 +60 1051 0.5870 +60 1058 0.6430 +60 1069 0.6010 +60 1072 0.9990 +60 1073 0.9960 +60 1080 0.7170 +60 1103 0.4300 +60 1107 0.4230 +60 1108 0.4700 +60 1111 0.6500 +60 1147 0.6700 +60 1173 0.6200 +60 1191 0.5920 +60 1207 0.5450 +60 1234 0.4310 +60 1236 0.4530 +60 1264 0.4030 +60 1265 0.4810 +60 1267 0.4190 +60 1268 0.4010 +60 1277 0.6640 +60 1278 0.5330 +60 1280 0.5210 +60 1281 0.5020 +60 1300 0.4040 +60 1301 0.5200 +60 1312 0.5680 +60 1314 0.4540 +60 1327 0.7630 +60 1364 0.4580 +60 1365 0.4710 +60 1366 0.6200 +60 1374 0.5200 +60 1385 0.6960 +60 1386 0.8000 +60 1387 0.5560 +60 1398 0.4010 +60 1420 0.5840 +60 1429 0.4080 +60 1431 0.4870 +60 1432 0.5730 +60 1435 0.5960 +60 1436 0.5080 +60 1437 0.6950 +60 1440 0.4840 +60 1472 0.4200 +60 1490 0.7150 +60 1493 0.4120 +60 1495 0.9570 +60 1496 0.9170 +60 1499 0.8600 +60 1500 0.4070 +60 1504 0.4210 +60 1506 0.6510 +60 1508 0.5470 +60 1509 0.5570 +60 1513 0.5790 +60 1514 0.4200 +60 1520 0.4630 +60 1524 0.4170 +60 1535 0.5010 +60 1536 0.7200 +60 1543 0.5280 +60 1545 0.4500 +60 1571 0.5210 +60 1576 0.4320 +60 1581 0.4640 +60 1583 0.4500 +60 1586 0.4410 +60 1588 0.5280 +60 1601 0.4540 +60 1627 0.6780 +60 1634 0.4240 +60 1636 0.7650 +60 1639 0.9710 +60 1641 0.4390 +60 1642 0.5820 +60 1643 0.5560 +60 1647 0.4720 +60 1649 0.5930 +60 1654 0.5080 +60 1655 0.7130 +60 1660 0.5240 +60 1674 0.4340 +60 1728 0.6670 +60 1729 0.9340 +60 1730 0.4850 +60 1742 0.6730 +60 1756 0.9520 +60 1759 0.6320 +60 1773 0.4020 +60 1778 0.9380 +60 1781 0.8490 +60 1783 0.8250 +60 1785 0.5100 +60 1786 0.7140 +60 1788 0.5700 +60 1789 0.6390 +60 1791 0.7210 +60 1803 0.4040 +60 1837 0.5440 +60 1839 0.4160 +60 1843 0.4680 +60 1869 0.5830 +60 1906 0.5130 +60 1915 0.9500 +60 1917 0.7420 +60 1937 0.4390 +60 1938 0.6500 +60 1950 0.7780 +60 1956 0.8390 +60 1958 0.5660 +60 1959 0.4220 +60 1962 0.5520 +60 1965 0.5980 +60 1969 0.4350 +60 1973 0.5880 +60 1974 0.5940 +60 1975 0.4060 +60 1977 0.6150 +60 1978 0.6320 +60 1981 0.4770 +60 1982 0.4820 +60 1984 0.5600 +60 1991 0.4410 +60 1994 0.5450 +60 1995 0.4630 +60 1996 0.5740 +60 2010 0.5160 +60 2017 0.5900 +60 2022 0.7260 +60 2023 0.8690 +60 2026 0.5520 +60 2028 0.5360 +60 2033 0.7780 +60 2034 0.5950 +60 2035 0.6740 +60 2056 0.4930 +60 2057 0.4140 +60 2060 0.4010 +60 2064 0.9320 +60 2065 0.5310 +60 2066 0.4480 +60 2067 0.4030 +60 2074 0.5920 +60 2081 0.6440 +60 2086 0.4940 +60 2091 0.6280 +60 2099 0.9470 +60 2100 0.6270 +60 2113 0.4130 +60 2146 0.7020 +60 2167 0.6050 +60 2185 0.4440 +60 2194 0.6260 +60 2212 0.4590 +60 2213 0.4740 +60 2222 0.4910 +60 2246 0.4110 +60 2247 0.7250 +60 2248 0.5150 +60 2249 0.5470 +60 2250 0.5360 +60 2251 0.5130 +60 2252 0.5820 +60 2253 0.5330 +60 2254 0.5460 +60 2255 0.5530 +60 2258 0.5440 +60 2260 0.5280 +60 2263 0.4310 +60 2288 0.5310 +60 2289 0.4120 +60 2305 0.5470 +60 2308 0.6420 +60 2309 0.6330 +60 2314 0.4810 +60 2316 0.7500 +60 2317 0.5970 +60 2318 0.5340 +60 2319 0.4310 +60 2321 0.5240 +60 2322 0.4570 +60 2323 0.4040 +60 2324 0.4140 +60 2332 0.4530 +60 2335 0.8860 +60 2353 0.7220 +60 2354 0.5770 +60 2357 0.4530 +60 2475 0.7520 +60 2492 0.4130 +60 2495 0.5470 +60 2512 0.5700 +60 2521 0.4770 +60 2524 0.4560 +60 2526 0.4090 +60 2532 0.4730 +60 2534 0.6710 +60 2538 0.5200 +60 2539 0.5320 +60 2547 0.5980 +60 2571 0.4950 +60 2572 0.4450 +60 2596 0.4640 +60 2597 0.9750 +60 2623 0.4500 +60 2625 0.5340 +60 2626 0.4830 +60 2627 0.4110 +60 2638 0.5220 +60 2641 0.5120 +60 2645 0.4330 +60 2648 0.6540 +60 2668 0.5140 +60 2670 0.7380 +60 2697 0.5300 +60 2729 0.5730 +60 2730 0.5250 +60 2735 0.6750 +60 2736 0.4390 +60 2752 0.4780 +60 2771 0.5160 +60 2801 0.4750 +60 2804 0.4170 +60 2806 0.4500 +60 2810 0.5690 +60 2873 0.4890 +60 2875 0.6820 +60 2877 0.5930 +60 2878 0.5930 +60 2879 0.5700 +60 2880 0.5910 +60 2882 0.5940 +60 2885 0.8140 +60 2890 0.5450 +60 2891 0.4470 +60 2893 0.4740 +60 2902 0.4380 +60 2903 0.5350 +60 2904 0.7380 +60 2905 0.5060 +60 2908 0.5150 +60 2919 0.5710 +60 2923 0.4930 +60 2931 0.6250 +60 2932 0.8470 +60 2934 0.8780 +60 2936 0.5250 +60 2950 0.4890 +60 2990 0.6970 +60 3002 0.4850 +60 3005 0.5200 +60 3008 0.5090 +60 3010 0.4700 +60 3012 0.4930 +60 3013 0.4540 +60 3014 0.7530 +60 3015 0.4690 +60 3017 0.4260 +60 3018 0.4170 +60 3020 0.8730 +60 3021 0.9620 +60 3030 0.4040 +60 3043 0.6180 +60 3054 0.7770 +60 3055 0.5110 +60 3059 0.9470 +60 3064 0.5350 +60 3065 0.7660 +60 3066 0.6010 +60 3071 0.5980 +60 3082 0.5410 +60 3084 0.4920 +60 3091 0.7870 +60 3098 0.4100 +60 3099 0.5660 +60 3105 0.4240 +60 3145 0.6430 +60 3146 0.6430 +60 3156 0.5780 +60 3157 0.4030 +60 3162 0.7850 +60 3163 0.4050 +60 3164 0.4260 +60 3170 0.4180 +60 3172 0.5910 +60 3178 0.7040 +60 3181 0.6130 +60 3183 0.5240 +60 3184 0.7450 +60 3187 0.4410 +60 3190 0.5430 +60 3192 0.6620 +60 3240 0.5850 +60 3251 0.7950 +60 3265 0.5340 +60 3283 0.4580 +60 3303 0.6360 +60 3304 0.6740 +60 3308 0.7200 +60 3309 0.8080 +60 3312 0.9550 +60 3313 0.8280 +60 3315 0.5910 +60 3316 0.6220 +60 3320 0.9670 +60 3326 0.9110 +60 3329 0.6220 +60 3337 0.4210 +60 3381 0.4540 +60 3383 0.6970 +60 3394 0.4290 +60 3417 0.4530 +60 3418 0.4130 +60 3428 0.5200 +60 3433 0.4150 +60 3434 0.5110 +60 3437 0.4140 +60 3439 0.6040 +60 3454 0.4700 +60 3456 0.6640 +60 3458 0.7950 +60 3479 0.6600 +60 3480 0.6270 +60 3481 0.5280 +60 3486 0.5870 +60 3491 0.4490 +60 3516 0.4190 +60 3551 0.6480 +60 3552 0.6210 +60 3553 0.8470 +60 3554 0.4470 +60 3558 0.6340 +60 3562 0.5070 +60 3565 0.7000 +60 3567 0.5220 +60 3569 0.8470 +60 3570 0.4180 +60 3574 0.4180 +60 3575 0.4180 +60 3576 0.7290 +60 3586 0.7290 +60 3596 0.5780 +60 3600 0.4080 +60 3605 0.6480 +60 3606 0.5930 +60 3611 0.9510 +60 3612 0.4490 +60 3620 0.4480 +60 3627 0.5800 +60 3630 0.8010 +60 3643 0.7260 +60 3654 0.6720 +60 3655 0.8030 +60 3659 0.5520 +60 3661 0.6310 +60 3662 0.4490 +60 3665 0.5280 +60 3667 0.6230 +60 3670 0.4150 +60 3672 0.7530 +60 3673 0.8600 +60 3674 0.9370 +60 3675 0.7570 +60 3676 0.7790 +60 3678 0.8010 +60 3679 0.7210 +60 3680 0.7200 +60 3684 0.7230 +60 3685 0.7990 +60 3687 0.6070 +60 3688 0.9840 +60 3689 0.6790 +60 3690 0.9490 +60 3691 0.9360 +60 3693 0.9310 +60 3694 0.9280 +60 3695 0.9200 +60 3696 0.9230 +60 3700 0.4100 +60 3708 0.4390 +60 3710 0.4020 +60 3714 0.4860 +60 3716 0.5750 +60 3717 0.6360 +60 3725 0.8060 +60 3727 0.4240 +60 3791 0.6290 +60 3815 0.6420 +60 3837 0.6240 +60 3845 0.6720 +60 3848 0.5970 +60 3852 0.6750 +60 3856 0.6700 +60 3857 0.4870 +60 3861 0.4980 +60 3875 0.5330 +60 3880 0.5270 +60 3916 0.6790 +60 3920 0.5530 +60 3921 0.5740 +60 3925 0.4220 +60 3927 0.4460 +60 3934 0.5000 +60 3936 0.7700 +60 3952 0.6140 +60 3953 0.4750 +60 3958 0.5060 +60 3960 0.5290 +60 3976 0.4790 +60 3984 0.4400 +60 3987 0.5800 +60 3991 0.4950 +60 4000 0.7840 +60 4001 0.8840 +60 4015 0.6250 +60 4023 0.4550 +60 4035 0.5060 +60 4040 0.4560 +60 4041 0.4260 +60 4067 0.4530 +60 4072 0.5430 +60 4087 0.7130 +60 4088 0.7600 +60 4089 0.5860 +60 4090 0.4180 +60 4092 0.5060 +60 4094 0.4260 +60 4102 0.4260 +60 4128 0.4440 +60 4129 0.4340 +60 4130 0.7000 +60 4131 0.5850 +60 4133 0.6690 +60 4137 0.8170 +60 4145 0.4220 +60 4155 0.5840 +60 4162 0.5790 +60 4170 0.7680 +60 4176 0.4640 +60 4193 0.6310 +60 4204 0.4210 +60 4208 0.4120 +60 4210 0.4340 +60 4215 0.5160 +60 4216 0.4090 +60 4217 0.4470 +60 4233 0.5680 +60 4254 0.4800 +60 4255 0.5870 +60 4283 0.4330 +60 4286 0.5110 +60 4298 0.6580 +60 4300 0.6830 +60 4301 0.9580 +60 4311 0.5060 +60 4312 0.5070 +60 4313 0.6730 +60 4314 0.5850 +60 4316 0.5110 +60 4318 0.7780 +60 4322 0.5820 +60 4323 0.5280 +60 4335 0.4040 +60 4340 0.4120 +60 4353 0.5320 +60 4360 0.5870 +60 4363 0.4570 +60 4430 0.8500 +60 4478 0.9750 +60 4493 0.4360 +60 4512 0.5700 +60 4513 0.5600 +60 4519 0.5220 +60 4535 0.4290 +60 4542 0.7170 +60 4586 0.4570 +60 4594 0.7090 +60 4595 0.4950 +60 4599 0.6130 +60 4607 0.4070 +60 4609 0.8920 +60 4613 0.5850 +60 4617 0.4040 +60 4619 0.7490 +60 4620 0.5040 +60 4621 0.4590 +60 4622 0.4830 +60 4624 0.6300 +60 4625 0.4980 +60 4627 0.9910 +60 4628 0.9570 +60 4629 0.9610 +60 4632 0.5890 +60 4633 0.9480 +60 4636 0.9160 +60 4637 0.9730 +60 4640 0.7330 +60 4641 0.9700 +60 4642 0.8340 +60 4643 0.7220 +60 4644 0.8110 +60 4645 0.7840 +60 4646 0.7720 +60 4651 0.7120 +60 4654 0.5170 +60 4656 0.5220 +60 4659 0.5060 +60 4670 0.5300 +60 4684 0.4530 +60 4688 0.4150 +60 4690 0.6270 +60 4691 0.6050 +60 4704 0.4060 +60 4714 0.4640 +60 4722 0.4200 +60 4734 0.6180 +60 4736 0.4300 +60 4738 0.4090 +60 4747 0.4410 +60 4760 0.4010 +60 4772 0.5820 +60 4780 0.7580 +60 4782 0.4370 +60 4790 0.7660 +60 4791 0.4880 +60 4792 0.8230 +60 4798 0.8860 +60 4803 0.5850 +60 4804 0.4460 +60 4831 0.4690 +60 4841 0.6740 +60 4842 0.6250 +60 4843 0.5760 +60 4846 0.8920 +60 4851 0.6300 +60 4852 0.4470 +60 4853 0.5020 +60 4854 0.4890 +60 4855 0.4040 +60 4868 0.4680 +60 4869 0.5880 +60 4878 0.4550 +60 4893 0.5010 +60 4899 0.4380 +60 4904 0.7210 +60 4907 0.5060 +60 4914 0.5410 +60 4915 0.5580 +60 4938 0.4060 +60 4946 0.5340 +60 4953 0.4240 +60 4968 0.5180 +60 4976 0.4820 +60 5004 0.5090 +60 5034 0.7140 +60 5036 0.4510 +60 5042 0.5080 +60 5045 0.4890 +60 5052 0.5330 +60 5054 0.5480 +60 5068 0.4610 +60 5071 0.7110 +60 5080 0.5330 +60 5089 0.4160 +60 5093 0.4030 +60 5104 0.4470 +60 5105 0.4880 +60 5106 0.4310 +60 5116 0.4240 +60 5122 0.5120 +60 5155 0.4050 +60 5156 0.5180 +60 5159 0.5380 +60 5163 0.4460 +60 5164 0.4020 +60 5166 0.4870 +60 5175 0.7330 +60 5201 0.7350 +60 5202 0.7440 +60 5203 0.5770 +60 5204 0.7390 +60 5209 0.4100 +60 5211 0.5730 +60 5213 0.6140 +60 5214 0.5880 +60 5216 0.9990 +60 5217 0.7830 +60 5223 0.4940 +60 5230 0.8290 +60 5232 0.5390 +60 5241 0.5880 +60 5243 0.6030 +60 5245 0.8630 +60 5265 0.4050 +60 5289 0.4480 +60 5290 0.5090 +60 5295 0.4520 +60 5315 0.6700 +60 5327 0.4570 +60 5328 0.4950 +60 5335 0.4310 +60 5338 0.5320 +60 5340 0.5840 +60 5346 0.5090 +60 5347 0.5520 +60 5357 0.5090 +60 5358 0.5630 +60 5366 0.5700 +60 5420 0.5040 +60 5434 0.5560 +60 5435 0.5940 +60 5437 0.5260 +60 5440 0.5350 +60 5441 0.5380 +60 5443 0.5200 +60 5460 0.6950 +60 5465 0.6630 +60 5467 0.4830 +60 5468 0.9710 +60 5478 0.8660 +60 5479 0.6650 +60 5481 0.4800 +60 5499 0.7850 +60 5500 0.5590 +60 5501 0.7050 +60 5515 0.5670 +60 5518 0.4080 +60 5520 0.4940 +60 5531 0.4480 +60 5537 0.4020 +60 5551 0.4400 +60 5566 0.6190 +60 5567 0.5790 +60 5568 0.5770 +60 5578 0.9550 +60 5590 0.4270 +60 5591 0.6950 +60 5594 0.7670 +60 5595 0.8440 +60 5598 0.4990 +60 5599 0.6690 +60 5600 0.4740 +60 5601 0.4990 +60 5603 0.4520 +60 5604 0.6530 +60 5606 0.4090 +60 5610 0.5720 +60 5617 0.4630 +60 5621 0.4360 +60 5663 0.4770 +60 5673 0.4510 +60 5682 0.5690 +60 5683 0.5190 +60 5684 0.4150 +60 5688 0.6370 +60 5691 0.5430 +60 5699 0.4270 +60 5704 0.4180 +60 5709 0.5070 +60 5725 0.5260 +60 5727 0.4780 +60 5728 0.7200 +60 5734 0.4090 +60 5743 0.7280 +60 5747 0.5870 +60 5756 0.5490 +60 5757 0.7050 +60 5770 0.5030 +60 5781 0.4460 +60 5788 0.7340 +60 5816 0.4580 +60 5829 0.5900 +60 5862 0.4140 +60 5868 0.5020 +60 5870 0.6590 +60 5877 0.4310 +60 5879 0.8230 +60 5880 0.5840 +60 5886 0.5120 +60 5887 0.5470 +60 5888 0.5670 +60 5894 0.5650 +60 5896 0.4620 +60 5901 0.4690 +60 5908 0.4120 +60 5914 0.4330 +60 5921 0.4710 +60 5925 0.7760 +60 5950 0.4650 +60 5962 0.9450 +60 5966 0.6010 +60 5970 0.6440 +60 5971 0.5430 +60 5972 0.5130 +60 5977 0.6830 +60 6009 0.4230 +60 6010 0.4650 +60 6035 0.4470 +60 6047 0.6610 +60 6093 0.5360 +60 6097 0.5740 +60 6103 0.4060 +60 6117 0.4570 +60 6118 0.5650 +60 6121 0.4330 +60 6122 0.4370 +60 6124 0.7150 +60 6125 0.4910 +60 6129 0.5460 +60 6130 0.4280 +60 6132 0.5070 +60 6133 0.4840 +60 6135 0.5030 +60 6136 0.4810 +60 6137 0.4070 +60 6141 0.5080 +60 6143 0.6620 +60 6146 0.4150 +60 6155 0.4500 +60 6156 0.4120 +60 6161 0.5880 +60 6169 0.4080 +60 6175 0.8890 +60 6176 0.6450 +60 6187 0.6620 +60 6188 0.4750 +60 6189 0.5090 +60 6191 0.4020 +60 6193 0.4610 +60 6194 0.7640 +60 6195 0.4820 +60 6197 0.4010 +60 6198 0.7400 +60 6199 0.5070 +60 6201 0.4280 +60 6202 0.4360 +60 6203 0.6090 +60 6204 0.4170 +60 6205 0.4340 +60 6206 0.4160 +60 6207 0.5260 +60 6222 0.6910 +60 6223 0.4820 +60 6224 0.4060 +60 6228 0.5320 +60 6232 0.5710 +60 6233 0.6000 +60 6240 0.4080 +60 6241 0.4160 +60 6275 0.4950 +60 6279 0.4250 +60 6285 0.4920 +60 6295 0.5690 +60 6300 0.4560 +60 6319 0.4870 +60 6347 0.6970 +60 6348 0.4810 +60 6351 0.4350 +60 6364 0.4540 +60 6382 0.4360 +60 6387 0.5850 +60 6389 0.6920 +60 6390 0.6320 +60 6391 0.7660 +60 6401 0.4520 +60 6402 0.4930 +60 6416 0.5530 +60 6421 0.5580 +60 6426 0.4250 +60 6446 0.4650 +60 6453 0.6080 +60 6464 0.5350 +60 6469 0.5520 +60 6493 0.4890 +60 6500 0.5040 +60 6502 0.4340 +60 6506 0.4350 +60 6513 0.6110 +60 6514 0.5240 +60 6515 0.4750 +60 6517 0.6190 +60 6520 0.5300 +60 6530 0.4050 +60 6531 0.4060 +60 6538 0.4530 +60 6540 0.4530 +60 6559 0.4150 +60 6591 0.6700 +60 6595 0.8960 +60 6597 0.9990 +60 6598 0.9770 +60 6599 0.8970 +60 6601 0.9830 +60 6602 0.9860 +60 6603 0.8860 +60 6604 0.9030 +60 6605 0.9960 +60 6606 0.5720 +60 6608 0.4470 +60 6613 0.5830 +60 6615 0.7260 +60 6616 0.4680 +60 6622 0.6610 +60 6624 0.4620 +60 6647 0.6580 +60 6648 0.6530 +60 6652 0.5610 +60 6657 0.7040 +60 6662 0.6140 +60 6663 0.4260 +60 6667 0.5000 +60 6678 0.4240 +60 6688 0.4350 +60 6693 0.4100 +60 6696 0.6040 +60 6709 0.5350 +60 6712 0.9540 +60 6714 0.7740 +60 6715 0.4200 +60 6720 0.6770 +60 6721 0.5360 +60 6722 0.4580 +60 6736 0.4680 +60 6737 0.4820 +60 6742 0.6350 +60 6749 0.5730 +60 6750 0.4160 +60 6760 0.6930 +60 6770 0.4050 +60 6772 0.6840 +60 6773 0.4680 +60 6774 0.7980 +60 6776 0.5910 +60 6777 0.5910 +60 6778 0.5060 +60 6780 0.6150 +60 6786 0.4240 +60 6790 0.4770 +60 6794 0.5610 +60 6840 0.7200 +60 6844 0.4170 +60 6850 0.5260 +60 6853 0.6140 +60 6854 0.4640 +60 6855 0.6200 +60 6868 0.4230 +60 6876 0.6070 +60 6905 0.4790 +60 6907 0.5190 +60 6908 0.9050 +60 6927 0.5400 +60 6929 0.4090 +60 6944 0.9010 +60 6950 0.8910 +60 7001 0.4990 +60 7010 0.4610 +60 7015 0.5800 +60 7019 0.7260 +60 7037 0.7610 +60 7039 0.4320 +60 7040 0.7730 +60 7042 0.4770 +60 7043 0.4760 +60 7046 0.5460 +60 7048 0.5470 +60 7054 0.5960 +60 7057 0.5380 +60 7067 0.9200 +60 7068 0.5170 +60 7070 0.6100 +60 7072 0.5750 +60 7073 0.5650 +60 7076 0.6040 +60 7077 0.5580 +60 7078 0.4600 +60 7082 0.9850 +60 7084 0.4320 +60 7094 0.9600 +60 7096 0.6320 +60 7097 0.6440 +60 7098 0.5980 +60 7099 0.7450 +60 7100 0.4370 +60 7112 0.6430 +60 7113 0.4340 +60 7114 0.9610 +60 7122 0.5940 +60 7124 0.8470 +60 7132 0.5230 +60 7137 0.4070 +60 7139 0.4570 +60 7150 0.4320 +60 7153 0.4140 +60 7155 0.6040 +60 7157 0.8790 +60 7158 0.5090 +60 7166 0.4210 +60 7167 0.5300 +60 7168 0.5090 +60 7169 0.4340 +60 7170 0.6060 +60 7171 0.4960 +60 7178 0.5840 +60 7182 0.4200 +60 7184 0.5720 +60 7189 0.6030 +60 7203 0.7170 +60 7248 0.5030 +60 7249 0.4920 +60 7251 0.7570 +60 7275 0.4320 +60 7276 0.4030 +60 7277 0.8250 +60 7278 0.5360 +60 7280 0.8320 +60 7283 0.8880 +60 7291 0.5850 +60 7295 0.5710 +60 7296 0.4610 +60 7297 0.4230 +60 7298 0.4270 +60 7299 0.4840 +60 7301 0.4860 +60 7306 0.5180 +60 7311 0.5080 +60 7314 0.6450 +60 7316 0.8250 +60 7317 0.6250 +60 7329 0.4800 +60 7337 0.4940 +60 7341 0.6020 +60 7345 0.4180 +60 7350 0.6050 +60 7351 0.5060 +60 7352 0.4090 +60 7356 0.4380 +60 7384 0.4200 +60 7385 0.5250 +60 7402 0.5430 +60 7408 0.9550 +60 7411 0.6010 +60 7412 0.6050 +60 7414 0.9840 +60 7415 0.7280 +60 7416 0.8640 +60 7417 0.5580 +60 7419 0.5390 +60 7424 0.4720 +60 7428 0.5460 +60 7430 0.9830 +60 7431 0.7230 +60 7442 0.4780 +60 7448 0.6160 +60 7450 0.5490 +60 7454 0.9540 +60 7456 0.6530 +60 7464 0.5440 +60 7465 0.4400 +60 7471 0.4560 +60 7474 0.4930 +60 7490 0.4710 +60 7494 0.6340 +60 7498 0.4640 +60 7508 0.4140 +60 7514 0.4790 +60 7520 0.4710 +60 7528 0.9160 +60 7529 0.9080 +60 7531 0.5380 +60 7532 0.6100 +60 7533 0.5900 +60 7534 0.8990 +60 7535 0.4320 +60 7791 0.9420 +60 7827 0.4350 +60 7837 0.9250 +60 7846 0.8380 +60 7852 0.6020 +60 7879 0.6480 +60 7913 0.5650 +60 7942 0.5140 +60 8061 0.4340 +60 8089 0.9420 +60 8091 0.4720 +60 8125 0.4960 +60 8193 0.6090 +60 8202 0.5580 +60 8218 0.4690 +60 8224 0.4460 +60 8266 0.4140 +60 8289 0.9950 +60 8290 0.8120 +60 8294 0.8980 +60 8295 0.9600 +60 8312 0.4990 +60 8313 0.5430 +60 8329 0.5080 +60 8331 0.5430 +60 8334 0.8910 +60 8337 0.7890 +60 8338 0.7890 +60 8339 0.8370 +60 8340 0.4060 +60 8341 0.4070 +60 8342 0.4090 +60 8343 0.8350 +60 8344 0.8360 +60 8345 0.4060 +60 8346 0.8400 +60 8347 0.9030 +60 8348 0.8760 +60 8349 0.9430 +60 8350 0.9060 +60 8351 0.9080 +60 8352 0.9130 +60 8353 0.9110 +60 8354 0.9070 +60 8355 0.9060 +60 8356 0.9600 +60 8357 0.9060 +60 8358 0.9080 +60 8359 0.8990 +60 8360 0.9000 +60 8361 0.9730 +60 8362 0.8980 +60 8363 0.8990 +60 8364 0.9000 +60 8366 0.9000 +60 8367 0.9000 +60 8368 0.8990 +60 8369 0.5830 +60 8370 0.9010 +60 8394 0.9150 +60 8395 0.9110 +60 8407 0.7510 +60 8408 0.4120 +60 8411 0.5520 +60 8450 0.5500 +60 8451 0.5800 +60 8452 0.4370 +60 8454 0.4670 +60 8467 0.6460 +60 8473 0.7920 +60 8515 0.6880 +60 8516 0.7090 +60 8517 0.4320 +60 8518 0.4290 +60 8533 0.4120 +60 8549 0.5750 +60 8562 0.4320 +60 8570 0.5460 +60 8600 0.6100 +60 8607 0.9930 +60 8639 0.5210 +60 8651 0.4710 +60 8655 0.6930 +60 8660 0.4840 +60 8662 0.4400 +60 8665 0.4340 +60 8666 0.4970 +60 8668 0.4030 +60 8678 0.7850 +60 8694 0.4430 +60 8737 0.5250 +60 8743 0.4160 +60 8766 0.5700 +60 8772 0.5320 +60 8773 0.5710 +60 8776 0.4690 +60 8795 0.5400 +60 8797 0.4790 +60 8815 0.5460 +60 8817 0.5210 +60 8822 0.5120 +60 8823 0.5320 +60 8826 0.9850 +60 8837 0.5240 +60 8842 0.7130 +60 8850 0.8590 +60 8856 0.4080 +60 8864 0.4060 +60 8877 0.4790 +60 8878 0.7250 +60 8900 0.6340 +60 8936 0.9240 +60 8945 0.4110 +60 8968 0.9050 +60 8970 0.4240 +60 8976 0.9790 +60 8988 0.5500 +60 9013 0.5210 +60 9014 0.5110 +60 9015 0.5230 +60 9021 0.5560 +60 9026 0.6260 +60 9031 0.5520 +60 9040 0.4310 +60 9051 0.4050 +60 9075 0.4370 +60 9076 0.6210 +60 9087 0.9110 +60 9097 0.4510 +60 9113 0.4030 +60 9123 0.4060 +60 9133 0.5400 +60 9134 0.5730 +60 9140 0.5640 +60 9168 0.5810 +60 9172 0.6560 +60 9188 0.7560 +60 9212 0.5140 +60 9213 0.4010 +60 9241 0.4450 +60 9274 0.7830 +60 9275 0.5890 +60 9276 0.4520 +60 9314 0.6030 +60 9318 0.4260 +60 9332 0.4520 +60 9341 0.5950 +60 9343 0.4130 +60 9360 0.4680 +60 9370 0.5920 +60 9401 0.5680 +60 9414 0.5260 +60 9429 0.5880 +60 9437 0.6640 +60 9447 0.4200 +60 9451 0.7720 +60 9455 0.4810 +60 9456 0.4420 +60 9468 0.4870 +60 9474 0.7420 +60 9475 0.4450 +60 9497 0.4880 +60 9519 0.4390 +60 9533 0.6430 +60 9536 0.4310 +60 9563 0.5390 +60 9564 0.4220 +60 9584 0.4130 +60 9588 0.4150 +60 9589 0.4800 +60 9590 0.5000 +60 9619 0.4610 +60 9636 0.5800 +60 9641 0.6320 +60 9657 0.4650 +60 9698 0.4410 +60 9734 0.4130 +60 9749 0.6270 +60 9759 0.6840 +60 9775 0.4210 +60 9793 0.4960 +60 9804 0.6460 +60 9817 0.6300 +60 9839 0.4810 +60 9927 0.6270 +60 9948 0.7090 +60 9971 0.4580 +60 9978 0.6430 +60 10000 0.4700 +60 10006 0.6650 +60 10013 0.7160 +60 10016 0.4320 +60 10018 0.6400 +60 10059 0.5790 +60 10092 0.9520 +60 10093 0.9610 +60 10094 0.9680 +60 10095 0.9580 +60 10096 0.9570 +60 10097 0.9680 +60 10101 0.5820 +60 10105 0.4270 +60 10109 0.9620 +60 10120 0.5420 +60 10121 0.9770 +60 10135 0.4120 +60 10152 0.6420 +60 10160 0.4080 +60 10163 0.9410 +60 10197 0.4350 +60 10211 0.4590 +60 10215 0.4820 +60 10236 0.7620 +60 10273 0.5650 +60 10278 0.4180 +60 10298 0.5400 +60 10376 0.7820 +60 10381 0.7310 +60 10382 0.8010 +60 10383 0.6720 +60 10392 0.4060 +60 10398 0.9450 +60 10399 0.6360 +60 10409 0.5020 +60 10413 0.5150 +60 10426 0.8640 +60 10445 0.8140 +60 10458 0.9510 +60 10471 0.6340 +60 10486 0.8850 +60 10487 0.8600 +60 10492 0.5510 +60 10498 0.4900 +60 10514 0.5730 +60 10524 0.9790 +60 10533 0.6660 +60 10540 0.9500 +60 10549 0.4090 +60 10551 0.4470 +60 10552 0.9470 +60 10574 0.7220 +60 10575 0.7020 +60 10576 0.9050 +60 10614 0.4090 +60 10618 0.4450 +60 10627 0.9510 +60 10628 0.4590 +60 10630 0.4010 +60 10631 0.4040 +60 10642 0.9680 +60 10643 0.4550 +60 10655 0.4390 +60 10657 0.6070 +60 10664 0.4360 +60 10671 0.9160 +60 10693 0.5660 +60 10694 0.6900 +60 10763 0.6590 +60 10787 0.6490 +60 10801 0.4410 +60 10810 0.9210 +60 10844 0.8550 +60 10847 0.4810 +60 10849 0.5080 +60 10856 0.9950 +60 10859 0.4280 +60 10891 0.7250 +60 10894 0.4160 +60 10902 0.9270 +60 10919 0.4130 +60 10920 0.4360 +60 10933 0.9420 +60 10935 0.5380 +60 10943 0.9120 +60 10971 0.6040 +60 10980 0.5040 +60 10983 0.4080 +60 10987 0.6100 +60 11034 0.9100 +60 11035 0.4950 +60 11074 0.4010 +60 11091 0.8210 +60 11098 0.4500 +60 11101 0.6940 +60 11140 0.6250 +60 11151 0.5970 +60 11200 0.5980 +60 11221 0.5210 +60 11224 0.4510 +60 11258 0.8960 +60 11315 0.4500 +60 11322 0.4150 +60 11331 0.4440 +60 11337 0.4640 +60 11344 0.7720 +60 11345 0.5250 +60 11346 0.9510 +60 22801 0.7110 +60 22861 0.4260 +60 22926 0.6270 +60 22933 0.4360 +60 22943 0.4800 +60 22948 0.8650 +60 23002 0.5050 +60 23012 0.5030 +60 23019 0.4210 +60 23028 0.6880 +60 23035 0.4300 +60 23054 0.5510 +60 23089 0.4450 +60 23135 0.4160 +60 23136 0.4220 +60 23189 0.4840 +60 23191 0.6560 +60 23214 0.8000 +60 23230 0.6300 +60 23239 0.4810 +60 23242 0.4070 +60 23344 0.4480 +60 23380 0.6360 +60 23396 0.9150 +60 23405 0.5570 +60 23406 0.6450 +60 23410 0.5230 +60 23411 0.7900 +60 23435 0.5290 +60 23451 0.6580 +60 23462 0.5010 +60 23468 0.5860 +60 23476 0.4990 +60 23506 0.5950 +60 23521 0.7310 +60 23586 0.5800 +60 23603 0.6980 +60 23621 0.5960 +60 23643 0.4180 +60 23657 0.4430 +60 23710 0.4730 +60 24142 0.9480 +60 25828 0.4170 +60 25885 0.6080 +60 25939 0.4900 +60 26039 0.4140 +60 26049 0.4520 +60 26092 0.4220 +60 26122 0.8310 +60 26136 0.4550 +60 26227 0.6690 +60 26277 0.4360 +60 26281 0.5320 +60 26291 0.4070 +60 26330 0.5010 +60 26471 0.4450 +60 26578 0.4050 +60 26986 0.4950 +60 26999 0.6310 +60 27006 0.5200 +60 27032 0.4210 +60 27035 0.5100 +60 27067 0.5300 +60 27113 0.4210 +60 27134 0.5230 +60 27161 0.6020 +60 27229 0.8360 +60 27306 0.4370 +60 27335 0.4020 +60 28514 0.4380 +60 28988 0.4890 +60 29102 0.4560 +60 29108 0.4190 +60 29109 0.4670 +60 29110 0.5620 +60 29114 0.4600 +60 29117 0.9850 +60 29119 0.9150 +60 29126 0.5320 +60 29765 0.5160 +60 29766 0.7010 +60 29767 0.4340 +60 29780 0.9150 +60 29843 0.5800 +60 29844 0.8230 +60 29895 0.9310 +60 29944 0.6700 +60 29998 0.5980 +60 30009 0.5150 +60 30816 0.5280 +60 30834 0.5280 +60 50507 0.5960 +60 50616 0.4470 +60 50813 0.4230 +60 50943 0.6060 +60 51024 0.5380 +60 51082 0.5280 +60 51094 0.4200 +60 51099 0.4490 +60 51105 0.5660 +60 51129 0.5180 +60 51135 0.4300 +60 51138 0.6270 +60 51151 0.5540 +60 51164 0.9450 +60 51176 0.4790 +60 51230 0.7640 +60 51268 0.4120 +60 51284 0.5080 +60 51339 0.5060 +60 51377 0.7040 +60 51393 0.4610 +60 51412 0.9500 +60 51466 0.9090 +60 51517 0.6510 +60 51574 0.4100 +60 51725 0.4200 +60 51762 0.4040 +60 51780 0.6950 +60 51806 0.5990 +60 51807 0.5500 +60 53335 0.7850 +60 53347 0.5180 +60 53373 0.4120 +60 53905 0.4190 +60 54106 0.5370 +60 54145 0.4070 +60 54205 0.8710 +60 54434 0.6630 +60 54509 0.6230 +60 54556 0.9300 +60 54567 0.4750 +60 54583 0.4320 +60 54606 0.5350 +60 54617 0.8980 +60 54776 0.4240 +60 54790 0.5180 +60 54799 0.9260 +60 54891 0.8140 +60 54934 0.7240 +60 54949 0.4360 +60 55031 0.4530 +60 55054 0.4230 +60 55093 0.4780 +60 55167 0.9080 +60 55193 0.9840 +60 55201 0.5580 +60 55222 0.4760 +60 55240 0.4690 +60 55257 0.8760 +60 55274 0.9800 +60 55294 0.4020 +60 55611 0.4210 +60 55669 0.5310 +60 55683 0.8020 +60 55689 0.6590 +60 55740 0.9320 +60 55742 0.9570 +60 55766 0.4620 +60 55811 0.5410 +60 55818 0.7340 +60 55845 0.5780 +60 55860 0.9870 +60 55869 0.6420 +60 55870 0.4400 +60 55929 0.9680 +60 55930 0.7710 +60 55971 0.5520 +60 56257 0.4510 +60 56339 0.5540 +60 56652 0.4930 +60 56852 0.4240 +60 56907 0.4900 +60 57030 0.4180 +60 57104 0.5520 +60 57175 0.4110 +60 57180 0.9750 +60 57492 0.9470 +60 57506 0.4950 +60 57521 0.5210 +60 57591 0.8600 +60 57634 0.9650 +60 57721 0.5020 +60 57761 0.5380 +60 57817 0.4180 +60 57829 0.5210 +60 58498 0.9340 +60 59272 0.4530 +60 63976 0.4820 +60 64005 0.7590 +60 64083 0.4880 +60 64098 0.9050 +60 64127 0.4330 +60 64135 0.4860 +60 64321 0.4220 +60 64422 0.4840 +60 64425 0.5090 +60 64708 0.4180 +60 64714 0.4270 +60 64769 0.9310 +60 64919 0.8080 +60 65018 0.5470 +60 65124 0.4330 +60 65244 0.5870 +60 65980 0.7740 +60 79031 0.5080 +60 79101 0.4990 +60 79658 0.9030 +60 79727 0.4310 +60 79784 0.9140 +60 79792 0.5090 +60 79861 0.5660 +60 79913 0.8760 +60 79923 0.6710 +60 79991 0.4050 +60 80012 0.4010 +60 80086 0.4060 +60 80115 0.4120 +60 80314 0.9470 +60 80728 0.4480 +60 81027 0.5910 +60 81624 0.5770 +60 81631 0.8320 +60 81669 0.5790 +60 81839 0.4530 +60 81873 0.9450 +60 83444 0.8960 +60 83658 0.8530 +60 83660 0.9570 +60 83988 0.4100 +60 84148 0.9300 +60 84172 0.6860 +60 84193 0.9160 +60 84260 0.5400 +60 84293 0.5060 +60 84466 0.5730 +60 84516 0.9220 +60 84557 0.6870 +60 84617 0.7590 +60 84649 0.4230 +60 84666 0.4320 +60 84687 0.4020 +60 84701 0.5000 +60 84706 0.4840 +60 84790 0.8250 +60 84823 0.7580 +60 84941 0.4330 +60 85235 0.4600 +60 85236 0.4120 +60 85378 0.9150 +60 85462 0.4100 +60 85477 0.8230 +60 89780 0.5780 +60 90865 0.4180 +60 91010 0.5450 +60 91624 0.4440 +60 91662 0.4700 +60 91860 0.5900 +60 92558 0.8410 +60 92815 0.4810 +60 93408 0.9170 +60 93973 0.9020 +60 103910 0.9620 +60 112714 0.5430 +60 113457 0.6630 +60 114548 0.6100 +60 114791 0.8400 +60 114793 0.5730 +60 114907 0.4750 +60 117159 0.4200 +60 120892 0.7020 +60 121278 0.4210 +60 121340 0.5860 +60 121504 0.9010 +60 123720 0.9110 +60 125476 0.9010 +60 128312 0.4060 +60 133482 0.6600 +60 134492 0.4060 +60 137902 0.9240 +60 140465 0.9260 +60 140803 0.4830 +60 142679 0.4490 +60 146713 0.7160 +60 147179 0.6560 +60 151050 0.5400 +60 151306 0.4920 +60 154796 0.4620 +60 158983 0.4060 +60 163688 0.5720 +60 168400 0.4490 +60 192669 0.4190 +60 192670 0.4160 +60 196528 0.9830 +60 197259 0.5530 +60 203068 0.8440 +60 221302 0.4930 +60 221613 0.5100 +60 221830 0.5050 +60 221833 0.4160 +60 253260 0.4910 +60 255626 0.4110 +60 255738 0.5740 +60 255877 0.5010 +60 257202 0.5900 +60 260434 0.4050 +60 283899 0.8120 +60 284058 0.7260 +60 284654 0.4180 +60 285973 0.5130 +60 286436 0.4060 +60 317772 0.8880 +60 339287 0.9100 +60 345456 0.9990 +60 345651 0.8730 +60 347733 0.5840 +60 375189 0.9990 +60 387332 0.4080 +60 405754 0.5080 +60 440093 0.8120 +60 440145 0.9090 +60 440387 0.4180 +60 440686 0.8120 +60 440689 0.4090 +60 442721 0.9060 +60 445582 0.4990 +60 493869 0.5940 +60 554313 0.8990 +60 644150 0.6380 +60 653145 0.7060 +60 653361 0.7630 +60 653604 0.8120 +60 653857 0.9760 +60 100133941 0.5440 +60 100506658 0.8080 +60 100532731 0.5070 +60 102723407 0.4120 +60 114483833 0.4060 +70 72 0.9390 +70 87 0.4500 +70 88 0.7600 +70 89 0.4500 +70 216 0.4340 +70 291 0.5330 +70 387 0.6980 +70 388 0.6250 +70 389 0.4420 +70 392 0.4840 +70 488 0.4890 +70 567 0.4380 +70 613 0.4270 +70 775 0.4170 +70 830 0.4620 +70 832 0.5700 +70 845 0.7080 +70 857 0.5100 +70 859 0.5290 +70 1072 0.7630 +70 1073 0.6880 +70 1158 0.4070 +70 1264 0.7020 +70 1277 0.4140 +70 1410 0.4810 +70 1482 0.6720 +70 1729 0.4590 +70 1756 0.4010 +70 1824 0.4960 +70 1825 0.4570 +70 1829 0.6790 +70 1832 0.4030 +70 1837 0.5230 +70 1969 0.4090 +70 2040 0.4260 +70 2070 0.5320 +70 2139 0.4240 +70 2200 0.6510 +70 2218 0.4850 +70 2309 0.4490 +70 2318 0.5850 +70 2597 0.6860 +70 2626 0.6070 +70 2638 0.9670 +70 2697 0.6560 +70 2934 0.5830 +70 3320 0.4400 +70 3670 0.4350 +70 3728 0.6630 +70 3759 0.4090 +70 3920 0.5170 +70 3936 0.5660 +70 4000 0.5950 +70 4162 0.4210 +70 4208 0.5240 +70 4313 0.4420 +70 4318 0.4210 +70 4604 0.4010 +70 4606 0.5320 +70 4607 0.9950 +70 4610 0.4450 +70 4618 0.5170 +70 4619 0.5470 +70 4620 0.6190 +70 4621 0.6390 +70 4622 0.5460 +70 4624 0.9890 +70 4625 0.9990 +70 4626 0.5600 +70 4627 0.5450 +70 4628 0.7540 +70 4629 0.6020 +70 4632 0.7880 +70 4633 0.9910 +70 4634 0.9910 +70 4635 0.9580 +70 4637 0.5350 +70 4638 0.5660 +70 4650 0.4750 +70 4654 0.4190 +70 4656 0.4710 +70 4878 0.5570 +70 5216 0.6320 +70 5217 0.5520 +70 5318 0.5730 +70 5350 0.5610 +70 5500 0.4340 +70 5585 0.4730 +70 5586 0.4730 +70 5977 0.4170 +70 6093 0.5000 +70 6262 0.5980 +70 6331 0.6060 +70 6389 0.4440 +70 6444 0.5040 +70 6470 0.4340 +70 6588 0.4300 +70 6595 0.4960 +70 6597 0.5410 +70 6598 0.6120 +70 6602 0.4350 +70 6603 0.4260 +70 6604 0.6260 +70 6722 0.6410 +70 6840 0.5080 +70 6876 0.7200 +70 6898 0.4400 +70 6901 0.6220 +70 6908 0.4050 +70 6910 0.6110 +70 7037 0.4300 +70 7092 0.5090 +70 7112 0.5980 +70 7124 0.4280 +70 7125 0.5960 +70 7134 0.5670 +70 7135 0.5620 +70 7136 0.4520 +70 7137 0.9940 +70 7138 0.4670 +70 7139 0.9990 +70 7140 0.5310 +70 7167 0.5550 +70 7168 0.9990 +70 7169 0.9540 +70 7170 0.9960 +70 7171 0.9480 +70 7273 0.8330 +70 7277 0.6020 +70 7414 0.6810 +70 7532 0.4470 +70 7533 0.4910 +70 7534 0.5250 +70 7846 0.4320 +70 7905 0.5060 +70 8048 0.8730 +70 8404 0.4420 +70 8557 0.7460 +70 8735 0.5570 +70 8736 0.4380 +70 8773 0.4490 +70 8826 0.5070 +70 9212 0.4080 +70 9341 0.5040 +70 9414 0.4110 +70 9464 0.4230 +70 9475 0.4990 +70 9531 0.4740 +70 9748 0.4030 +70 9749 0.6380 +70 9948 0.4830 +70 10021 0.4860 +70 10060 0.6510 +70 10093 0.5030 +70 10094 0.5750 +70 10095 0.4480 +70 10096 0.4800 +70 10097 0.6940 +70 10109 0.4190 +70 10120 0.6740 +70 10121 0.7950 +70 10159 0.4780 +70 10211 0.4010 +70 10381 0.5240 +70 10398 0.4940 +70 10486 0.6550 +70 10529 0.4570 +70 10540 0.7530 +70 10627 0.5890 +70 10671 0.6860 +70 10880 0.5590 +70 10881 0.5580 +70 11034 0.5210 +70 11113 0.5710 +70 11155 0.7990 +70 11221 0.4370 +70 11258 0.6130 +70 11344 0.8040 +70 22989 0.4670 +70 23002 0.6300 +70 23224 0.4440 +70 23242 0.6440 +70 23551 0.4270 +70 23741 0.4280 +70 25874 0.4460 +70 26333 0.6080 +70 27063 0.5830 +70 27295 0.5670 +70 29766 0.7410 +70 29895 0.6620 +70 29941 0.4730 +70 51164 0.7300 +70 51422 0.8020 +70 51725 0.5020 +70 51778 0.6990 +70 54443 0.6170 +70 55789 0.4160 +70 55860 0.7470 +70 55914 0.4440 +70 57057 0.6950 +70 57158 0.6050 +70 58498 0.7840 +70 58529 0.4140 +70 65124 0.4330 +70 79188 0.5110 +70 80231 0.4310 +70 80712 0.4820 +70 81569 0.5660 +70 81624 0.4680 +70 81839 0.4090 +70 84193 0.9040 +70 84516 0.6770 +70 84665 0.6040 +70 84676 0.4640 +70 85366 0.6630 +70 85477 0.5490 +70 91010 0.4210 +70 91624 0.7270 +70 91807 0.6190 +70 93649 0.7010 +70 93973 0.4590 +70 103910 0.4420 +70 114884 0.4140 +70 125972 0.5020 +70 128239 0.5170 +70 146862 0.4020 +70 149233 0.4310 +70 153443 0.5530 +70 163126 0.4360 +70 282996 0.7690 +70 284119 0.4210 +70 284382 0.5590 +70 345456 0.4700 +70 345651 0.6660 +70 347733 0.4090 +70 348995 0.4300 +70 375189 0.5470 +70 399687 0.4010 +70 728378 0.4290 +71 81 0.9700 +71 86 0.9390 +71 87 0.9720 +71 207 0.5730 +71 208 0.4520 +71 226 0.7740 +71 230 0.4420 +71 274 0.4500 +71 277 0.5480 +71 278 0.5090 +71 280 0.4630 +71 301 0.6930 +71 302 0.6460 +71 307 0.6860 +71 308 0.8410 +71 335 0.4840 +71 336 0.4400 +71 387 0.9440 +71 389 0.6190 +71 498 0.5110 +71 506 0.4840 +71 509 0.5910 +71 752 0.5210 +71 808 0.4530 +71 829 0.5040 +71 830 0.5510 +71 832 0.6270 +71 836 0.9220 +71 839 0.9110 +71 840 0.9150 +71 908 0.9340 +71 999 0.4570 +71 1019 0.4260 +71 1058 0.4050 +71 1072 0.9980 +71 1073 0.9960 +71 1147 0.5380 +71 1265 0.4390 +71 1278 0.4240 +71 1302 0.4040 +71 1495 0.9530 +71 1496 0.9090 +71 1500 0.6480 +71 1522 0.4810 +71 1627 0.4980 +71 1639 0.4420 +71 1729 0.9360 +71 1756 0.9660 +71 1891 0.4300 +71 1915 0.8560 +71 1917 0.5810 +71 1938 0.5170 +71 1962 0.4050 +71 1982 0.4510 +71 2017 0.7140 +71 2023 0.6150 +71 2028 0.4470 +71 2035 0.5030 +71 2100 0.4180 +71 2268 0.5160 +71 2316 0.7290 +71 2335 0.7680 +71 2517 0.4940 +71 2534 0.4880 +71 2597 0.8090 +71 2638 0.4070 +71 2745 0.5260 +71 2885 0.6840 +71 2934 0.7490 +71 3015 0.4700 +71 3021 0.5410 +71 3059 0.9580 +71 3071 0.5450 +71 3183 0.4510 +71 3190 0.5300 +71 3303 0.4890 +71 3304 0.5150 +71 3309 0.4750 +71 3312 0.5920 +71 3320 0.5040 +71 3326 0.5180 +71 3551 0.4720 +71 3611 0.9280 +71 3655 0.6830 +71 3672 0.6740 +71 3673 0.7930 +71 3674 0.9040 +71 3675 0.6790 +71 3676 0.6830 +71 3678 0.7160 +71 3679 0.6850 +71 3680 0.6730 +71 3683 0.4200 +71 3685 0.7090 +71 3688 0.9550 +71 3690 0.9130 +71 3691 0.9150 +71 3693 0.9140 +71 3694 0.9140 +71 3695 0.9110 +71 3696 0.9120 +71 3704 0.4170 +71 3720 0.4110 +71 3936 0.7440 +71 3984 0.4310 +71 4001 0.5450 +71 4137 0.6070 +71 4301 0.9150 +71 4430 0.7570 +71 4478 0.9590 +71 4542 0.7450 +71 4607 0.9180 +71 4609 0.4860 +71 4619 0.5620 +71 4621 0.4270 +71 4625 0.4130 +71 4627 0.9780 +71 4628 0.9590 +71 4629 0.9420 +71 4632 0.5850 +71 4633 0.9280 +71 4636 0.9140 +71 4637 0.9560 +71 4640 0.9260 +71 4641 0.7680 +71 4642 0.7410 +71 4643 0.7180 +71 4644 0.8050 +71 4645 0.7930 +71 4646 0.8370 +71 4647 0.4980 +71 4651 0.7300 +71 4690 0.5540 +71 4702 0.4020 +71 4736 0.4250 +71 4792 0.4840 +71 4869 0.4110 +71 5034 0.6100 +71 5048 0.4550 +71 5052 0.4080 +71 5216 0.9920 +71 5217 0.7530 +71 5223 0.5720 +71 5230 0.5120 +71 5315 0.4280 +71 5337 0.5680 +71 5339 0.4080 +71 5340 0.4770 +71 5357 0.5260 +71 5358 0.5280 +71 5459 0.4160 +71 5468 0.9060 +71 5478 0.4160 +71 5499 0.4840 +71 5500 0.4740 +71 5501 0.7490 +71 5578 0.9180 +71 5604 0.4030 +71 5756 0.5340 +71 5879 0.6300 +71 5881 0.4570 +71 5901 0.4240 +71 5908 0.4750 +71 5962 0.9250 +71 6046 0.4460 +71 6132 0.4600 +71 6175 0.5830 +71 6187 0.5230 +71 6281 0.4860 +71 6310 0.4220 +71 6453 0.5490 +71 6525 0.4600 +71 6595 0.7650 +71 6597 0.8840 +71 6598 0.4840 +71 6599 0.7730 +71 6601 0.7690 +71 6602 0.8730 +71 6603 0.8720 +71 6604 0.8450 +71 6605 0.9150 +71 6624 0.4020 +71 6708 0.6200 +71 6722 0.4070 +71 6876 0.4710 +71 6908 0.4440 +71 6950 0.9430 +71 6990 0.4120 +71 7001 0.4020 +71 7037 0.4420 +71 7057 0.4040 +71 7067 0.9030 +71 7082 0.9130 +71 7094 0.9760 +71 7111 0.4980 +71 7114 0.9770 +71 7167 0.5100 +71 7168 0.5160 +71 7169 0.4920 +71 7170 0.7420 +71 7171 0.6370 +71 7186 0.6880 +71 7203 0.9400 +71 7251 0.4890 +71 7277 0.5470 +71 7280 0.7250 +71 7283 0.8840 +71 7296 0.4650 +71 7314 0.4830 +71 7316 0.5280 +71 7408 0.9740 +71 7414 0.9900 +71 7415 0.5160 +71 7430 0.9620 +71 7431 0.6110 +71 7454 0.9490 +71 7456 0.6980 +71 7529 0.5260 +71 7531 0.6320 +71 7532 0.5320 +71 7533 0.5050 +71 7534 0.6640 +71 7791 0.9310 +71 7846 0.7880 +71 8218 0.5750 +71 8289 0.8410 +71 8338 0.4130 +71 8361 0.4890 +71 8394 0.9060 +71 8395 0.9050 +71 8407 0.4410 +71 8515 0.6530 +71 8516 0.6700 +71 8517 0.4320 +71 8572 0.4190 +71 8607 0.7630 +71 8655 0.4950 +71 8826 0.9430 +71 8936 0.9340 +71 8976 0.9780 +71 9087 0.9110 +71 9124 0.5300 +71 9260 0.5470 +71 9948 0.7480 +71 10006 0.6100 +71 10092 0.9530 +71 10093 0.9390 +71 10094 0.9640 +71 10095 0.9620 +71 10096 0.9360 +71 10097 0.9490 +71 10109 0.9660 +71 10120 0.4420 +71 10121 0.6520 +71 10134 0.5850 +71 10152 0.6080 +71 10163 0.9530 +71 10298 0.5340 +71 10376 0.7260 +71 10383 0.5220 +71 10398 0.9400 +71 10399 0.5060 +71 10426 0.8360 +71 10458 0.9230 +71 10486 0.8680 +71 10487 0.7240 +71 10524 0.5380 +71 10540 0.5800 +71 10552 0.9400 +71 10574 0.9470 +71 10575 0.8710 +71 10576 0.8760 +71 10611 0.4310 +71 10627 0.9370 +71 10694 0.9390 +71 10787 0.6890 +71 10810 0.9220 +71 10844 0.8400 +71 10847 0.4240 +71 10856 0.7060 +71 10933 0.4230 +71 10971 0.6520 +71 11030 0.5500 +71 11034 0.9110 +71 11101 0.6960 +71 11344 0.5660 +71 11346 0.9200 +71 22801 0.6680 +71 22948 0.8990 +71 23095 0.4170 +71 23191 0.6160 +71 23221 0.6050 +71 23301 0.4220 +71 23380 0.5640 +71 23396 0.9110 +71 23406 0.5670 +71 23543 0.6500 +71 23603 0.4510 +71 23607 0.4010 +71 24142 0.4350 +71 25794 0.5880 +71 26999 0.6410 +71 27229 0.8570 +71 27295 0.4440 +71 28988 0.4710 +71 29109 0.4410 +71 29117 0.8190 +71 29119 0.9070 +71 29124 0.6970 +71 29766 0.6000 +71 29767 0.4140 +71 29780 0.9120 +71 29895 0.9360 +71 29964 0.4050 +71 51164 0.5590 +71 51168 0.5490 +71 51412 0.9140 +71 51466 0.9200 +71 51517 0.7000 +71 51780 0.6510 +71 51807 0.5790 +71 53904 0.6100 +71 54205 0.5330 +71 54715 0.5480 +71 55193 0.8540 +71 55274 0.8210 +71 55604 0.4030 +71 55740 0.9270 +71 55742 0.9180 +71 55818 0.6520 +71 55845 0.7120 +71 55848 0.4030 +71 55860 0.5730 +71 55930 0.8380 +71 56257 0.4210 +71 56776 0.4370 +71 57175 0.6810 +71 57180 0.9310 +71 57459 0.5040 +71 57492 0.8490 +71 57591 0.6580 +71 57634 0.4240 +71 58498 0.9210 +71 64005 0.7170 +71 64072 0.5080 +71 64098 0.9010 +71 64236 0.4190 +71 64699 0.4730 +71 64787 0.4630 +71 65108 0.4240 +71 65217 0.4280 +71 79031 0.9250 +71 79658 0.9020 +71 79784 0.9920 +71 79861 0.5460 +71 80086 0.4200 +71 80306 0.4220 +71 80705 0.6430 +71 81873 0.9750 +71 83660 0.9610 +71 83700 0.4210 +71 83715 0.6200 +71 84193 0.9150 +71 84516 0.4330 +71 84617 0.4390 +71 84700 0.5160 +71 84790 0.7540 +71 85378 0.8230 +71 85477 0.7380 +71 91010 0.5460 +71 92521 0.4110 +71 93408 0.9170 +71 93973 0.4590 +71 103910 0.9420 +71 112714 0.5070 +71 114791 0.8260 +71 114793 0.6330 +71 117531 0.4340 +71 120892 0.7910 +71 123720 0.9220 +71 125336 0.4230 +71 140465 0.9290 +71 147179 0.6650 +71 149041 0.5100 +71 161497 0.4140 +71 196528 0.8160 +71 203068 0.7730 +71 254102 0.4240 +71 286187 0.5040 +71 345456 0.9870 +71 347733 0.4780 +71 375189 0.9910 +71 375790 0.4140 +71 389207 0.4620 +71 440145 0.8120 +71 442721 0.9200 +71 644150 0.6070 +71 653857 0.9320 +72 81 0.5470 +72 87 0.4650 +72 800 0.7330 +72 832 0.4180 +72 845 0.4380 +72 999 0.4810 +72 1072 0.4550 +72 1073 0.4930 +72 1264 0.9300 +72 1277 0.4660 +72 1278 0.4550 +72 1281 0.4550 +72 1465 0.4540 +72 1499 0.4600 +72 1674 0.4280 +72 2316 0.4120 +72 2597 0.4360 +72 3672 0.5740 +72 3693 0.5690 +72 3778 0.4180 +72 3779 0.5030 +72 3848 0.4430 +72 3856 0.5150 +72 3875 0.4080 +72 3936 0.4320 +72 4000 0.4820 +72 4620 0.4120 +72 4621 0.4130 +72 4627 0.9440 +72 4628 0.9410 +72 4629 0.9930 +72 4632 0.5840 +72 4636 0.5740 +72 4637 0.9400 +72 4638 0.8560 +72 4660 0.5340 +72 5358 0.4220 +72 5500 0.4110 +72 5829 0.5750 +72 6722 0.4150 +72 6876 0.8200 +72 7094 0.5870 +72 7168 0.7860 +72 7169 0.8350 +72 7170 0.6710 +72 7171 0.6780 +72 7414 0.6660 +72 7533 0.4380 +72 7534 0.4200 +72 7846 0.4110 +72 8407 0.4210 +72 9948 0.4490 +72 10094 0.4220 +72 10097 0.4510 +72 10120 0.6680 +72 10121 0.6700 +72 10174 0.5020 +72 10398 0.9740 +72 10487 0.4100 +72 10540 0.7480 +72 10580 0.5460 +72 10627 0.6230 +72 10671 0.6840 +72 10880 0.5590 +72 10881 0.5570 +72 11034 0.4860 +72 11258 0.6260 +72 25802 0.8600 +72 29114 0.4190 +72 29895 0.6770 +72 51164 0.6980 +72 51652 0.8050 +72 55860 0.7430 +72 55930 0.4010 +72 58498 0.6610 +72 79784 0.9070 +72 81569 0.5710 +72 84193 0.9070 +72 84516 0.6730 +72 84518 0.4700 +72 93408 0.6150 +72 93649 0.5520 +72 93973 0.4590 +72 103910 0.6540 +72 140465 0.9340 +72 147372 0.4070 +72 284382 0.5590 +72 375189 0.5150 +81 87 0.9980 +81 88 0.8390 +81 89 0.6910 +81 207 0.4250 +81 226 0.5910 +81 302 0.6270 +81 387 0.5170 +81 396 0.6050 +81 815 0.4140 +81 829 0.4920 +81 830 0.5370 +81 832 0.5130 +81 975 0.5420 +81 989 0.4920 +81 999 0.5840 +81 1015 0.5150 +81 1072 0.5910 +81 1073 0.4790 +81 1152 0.5790 +81 1285 0.4600 +81 1286 0.4240 +81 1495 0.9400 +81 1496 0.9190 +81 1499 0.8450 +81 1592 0.5540 +81 1627 0.4860 +81 1785 0.5690 +81 1832 0.4360 +81 1956 0.7850 +81 2017 0.5350 +81 2059 0.4420 +81 2099 0.4150 +81 2195 0.6000 +81 2316 0.5950 +81 2335 0.6190 +81 2597 0.6310 +81 2885 0.5970 +81 2908 0.4470 +81 2923 0.5430 +81 2934 0.5650 +81 3059 0.4230 +81 3082 0.4390 +81 3312 0.6300 +81 3315 0.5130 +81 3320 0.5980 +81 3326 0.5960 +81 3383 0.5370 +81 3611 0.5380 +81 3615 0.4250 +81 3655 0.7250 +81 3672 0.8140 +81 3673 0.8150 +81 3674 0.6850 +81 3675 0.8050 +81 3676 0.6950 +81 3678 0.9220 +81 3679 0.6630 +81 3680 0.6620 +81 3685 0.6970 +81 3688 0.9600 +81 3690 0.7120 +81 3691 0.7970 +81 3693 0.7430 +81 3694 0.6950 +81 3695 0.6900 +81 3696 0.6710 +81 3856 0.4750 +81 3984 0.5710 +81 4008 0.9570 +81 4010 0.5070 +81 4057 0.4370 +81 4430 0.6510 +81 4478 0.5740 +81 4627 0.9260 +81 4628 0.4570 +81 4632 0.4580 +81 4643 0.7450 +81 4646 0.4670 +81 4659 0.4580 +81 4690 0.4120 +81 4868 0.9930 +81 4869 0.4460 +81 4904 0.6220 +81 4907 0.4450 +81 5076 0.5860 +81 5216 0.4890 +81 5305 0.9040 +81 5339 0.5670 +81 5420 0.7480 +81 5458 0.4240 +81 5578 0.7250 +81 5585 0.4340 +81 5687 0.4020 +81 5756 0.4650 +81 5800 0.5140 +81 5829 0.7260 +81 5868 0.4990 +81 5914 0.4980 +81 5921 0.4580 +81 5970 0.6340 +81 5972 0.4860 +81 6047 0.5260 +81 6624 0.7770 +81 6654 0.4410 +81 6709 0.7600 +81 6711 0.4890 +81 6714 0.4030 +81 6840 0.5400 +81 7001 0.4390 +81 7037 0.4800 +81 7057 0.4240 +81 7082 0.9100 +81 7094 0.8960 +81 7125 0.4400 +81 7138 0.4050 +81 7139 0.4530 +81 7140 0.4380 +81 7168 0.6840 +81 7169 0.7600 +81 7170 0.5810 +81 7171 0.7980 +81 7184 0.5880 +81 7225 0.9050 +81 7251 0.6540 +81 7408 0.4420 +81 7414 0.9990 +81 7415 0.5820 +81 7430 0.6420 +81 7490 0.7850 +81 7791 0.9780 +81 7827 0.9710 +81 7840 0.5480 +81 8312 0.4480 +81 8394 0.9040 +81 8395 0.9040 +81 8396 0.9030 +81 8407 0.4110 +81 8470 0.4980 +81 8515 0.6670 +81 8516 0.7080 +81 8542 0.6900 +81 8796 0.6360 +81 8826 0.8100 +81 9124 0.9700 +81 9146 0.6530 +81 9223 0.9930 +81 9260 0.6500 +81 9319 0.4980 +81 9351 0.8360 +81 9693 0.5170 +81 9712 0.5960 +81 9734 0.4430 +81 9784 0.4270 +81 9836 0.4390 +81 9863 0.5380 +81 10006 0.5860 +81 10092 0.4970 +81 10095 0.5390 +81 10096 0.4370 +81 10097 0.5640 +81 10109 0.6140 +81 10130 0.5010 +81 10492 0.4310 +81 10519 0.4990 +81 10594 0.4890 +81 10611 0.7350 +81 10612 0.9530 +81 11346 0.9810 +81 22801 0.6740 +81 22879 0.4360 +81 23022 0.6130 +81 23213 0.5780 +81 23363 0.4190 +81 23384 0.4830 +81 23396 0.9170 +81 23603 0.5630 +81 23607 0.9400 +81 25844 0.5590 +81 26060 0.4270 +81 26130 0.5560 +81 27235 0.4790 +81 29119 0.9220 +81 50485 0.4380 +81 51004 0.5050 +81 51127 0.4330 +81 51161 0.4310 +81 51196 0.8240 +81 51430 0.5300 +81 51474 0.4040 +81 51564 0.6400 +81 51622 0.4360 +81 51778 0.7840 +81 54443 0.7800 +81 55243 0.7760 +81 55930 0.4990 +81 57107 0.4470 +81 57554 0.5650 +81 64236 0.8170 +81 64423 0.9320 +81 79026 0.4020 +81 79577 0.4060 +81 79778 0.9690 +81 79837 0.9050 +81 79934 0.5110 +81 81873 0.5020 +81 83478 0.5160 +81 83543 0.5480 +81 83660 0.7810 +81 84315 0.4280 +81 84687 0.5820 +81 93185 0.5240 +81 117178 0.9100 +81 140901 0.5710 +81 147968 0.7930 +81 200576 0.9030 +81 221960 0.4360 +81 375189 0.4370 +81 375790 0.4880 +81 389203 0.4050 +81 399687 0.4670 +81 728378 0.4050 +81 100526693 0.4590 +81 122513141 0.5180 +86 595 0.6220 +86 604 0.5070 +86 605 0.9940 +86 648 0.4290 +86 676 0.4480 +86 861 0.5370 +86 865 0.5410 +86 891 0.4430 +86 898 0.4240 +86 908 0.4840 +86 999 0.4530 +86 1017 0.4820 +86 1019 0.6960 +86 1058 0.4310 +86 1069 0.5460 +86 1072 0.5770 +86 1073 0.4790 +86 1107 0.4100 +86 1108 0.7230 +86 1386 0.7430 +86 1387 0.5330 +86 1479 0.4040 +86 1499 0.4880 +86 1642 0.4800 +86 1643 0.4330 +86 1788 0.6400 +86 1820 0.4270 +86 1915 0.4150 +86 1938 0.4610 +86 1994 0.5170 +86 2033 0.6040 +86 2079 0.4510 +86 2146 0.4540 +86 2314 0.7920 +86 2597 0.5410 +86 2648 0.5120 +86 2873 0.4440 +86 2908 0.4350 +86 3012 0.5390 +86 3013 0.5390 +86 3015 0.9380 +86 3018 0.4400 +86 3020 0.8670 +86 3021 0.9110 +86 3054 0.7520 +86 3065 0.4730 +86 3066 0.7140 +86 3070 0.4230 +86 3178 0.4690 +86 3181 0.4720 +86 3183 0.4500 +86 3187 0.4450 +86 3190 0.4800 +86 3191 0.4540 +86 3621 0.4450 +86 3622 0.6910 +86 3930 0.4590 +86 4085 0.4140 +86 4139 0.4290 +86 4176 0.4450 +86 4298 0.6940 +86 4300 0.7180 +86 4609 0.8910 +86 4670 0.4340 +86 4798 0.9520 +86 5111 0.4020 +86 5468 0.9050 +86 5685 0.4130 +86 5708 0.4490 +86 5725 0.7120 +86 5886 0.4730 +86 5887 0.4830 +86 5925 0.7700 +86 5926 0.8980 +86 5928 0.4680 +86 5931 0.5030 +86 5977 0.9860 +86 5978 0.5580 +86 5984 0.5140 +86 6046 0.7060 +86 6240 0.4210 +86 6426 0.7060 +86 6434 0.4560 +86 6594 0.5980 +86 6595 0.9990 +86 6596 0.4320 +86 6597 0.9990 +86 6598 0.9990 +86 6599 0.9990 +86 6601 0.9990 +86 6602 0.9990 +86 6603 0.9970 +86 6604 0.9930 +86 6605 0.9990 +86 6625 0.4390 +86 6632 0.4230 +86 6633 0.5260 +86 6634 0.4790 +86 6635 0.5490 +86 6636 0.5110 +86 6637 0.4800 +86 6657 0.7210 +86 6760 0.9910 +86 6847 0.4830 +86 6908 0.4870 +86 6944 0.9750 +86 7153 0.5760 +86 7157 0.7210 +86 7203 0.4190 +86 7341 0.4100 +86 7374 0.6160 +86 7508 0.4280 +86 7528 0.9770 +86 7919 0.5630 +86 7994 0.5780 +86 8019 0.4470 +86 8089 0.9940 +86 8148 0.4250 +86 8193 0.9850 +86 8202 0.4410 +86 8242 0.4980 +86 8289 0.9990 +86 8290 0.5690 +86 8294 0.8610 +86 8295 0.9990 +86 8329 0.5390 +86 8331 0.5390 +86 8334 0.9040 +86 8337 0.8640 +86 8338 0.8630 +86 8339 0.8460 +86 8343 0.8240 +86 8344 0.8810 +86 8346 0.8560 +86 8347 0.8450 +86 8348 0.8520 +86 8349 0.8910 +86 8350 0.8670 +86 8351 0.8670 +86 8352 0.8710 +86 8353 0.8700 +86 8354 0.8670 +86 8355 0.8670 +86 8356 0.9450 +86 8357 0.8670 +86 8358 0.8670 +86 8359 0.8630 +86 8360 0.8610 +86 8361 0.9680 +86 8362 0.8610 +86 8363 0.8610 +86 8364 0.8630 +86 8366 0.8620 +86 8367 0.8610 +86 8368 0.8620 +86 8369 0.5990 +86 8370 0.8610 +86 8450 0.4590 +86 8451 0.4820 +86 8467 0.6180 +86 8473 0.7370 +86 8533 0.4650 +86 8607 0.9990 +86 8648 0.4490 +86 8815 0.9590 +86 8968 0.8670 +86 9031 0.6290 +86 9274 0.9870 +86 9275 0.9560 +86 9318 0.4520 +86 9437 0.7200 +86 9480 0.4330 +86 9611 0.5560 +86 9734 0.5090 +86 9782 0.4840 +86 9816 0.4080 +86 9978 0.5010 +86 10036 0.5830 +86 10055 0.4340 +86 10094 0.4160 +86 10236 0.4340 +86 10413 0.5350 +86 10419 0.7220 +86 10428 0.7420 +86 10432 0.4250 +86 10445 0.9560 +86 10467 0.9730 +86 10498 0.6110 +86 10499 0.4880 +86 10524 0.9970 +86 10575 0.5330 +86 10576 0.5190 +86 10620 0.4110 +86 10694 0.4250 +86 10847 0.9590 +86 10856 0.9990 +86 10902 0.9930 +86 10920 0.4240 +86 10933 0.9950 +86 10943 0.9310 +86 10980 0.4570 +86 10987 0.5390 +86 11051 0.4930 +86 11075 0.4650 +86 11083 0.5520 +86 11091 0.7950 +86 11143 0.5640 +86 23361 0.4300 +86 23435 0.4410 +86 23468 0.4370 +86 23476 0.5070 +86 23506 0.9750 +86 23522 0.5830 +86 26039 0.6490 +86 26097 0.4020 +86 26122 0.9830 +86 26330 0.4260 +86 27430 0.5650 +86 29117 0.9990 +86 29844 0.9580 +86 29998 0.9790 +86 30827 0.5620 +86 50813 0.4160 +86 51105 0.5680 +86 51138 0.5030 +86 51188 0.4830 +86 51230 0.7440 +86 51377 0.9520 +86 51412 0.9610 +86 51493 0.4030 +86 51710 0.4300 +86 51742 0.8950 +86 51780 0.6560 +86 53335 0.9540 +86 54556 0.9930 +86 54617 0.9860 +86 54799 0.9350 +86 54891 0.9140 +86 54934 0.7660 +86 55167 0.9020 +86 55193 0.9990 +86 55257 0.9850 +86 55274 0.9990 +86 55352 0.5130 +86 55660 0.4160 +86 55683 0.7310 +86 55689 0.7430 +86 55818 0.6940 +86 55860 0.5200 +86 55870 0.4520 +86 55929 0.9990 +86 56259 0.4080 +86 56916 0.4490 +86 57492 0.9950 +86 57634 0.9990 +86 58155 0.5320 +86 58190 0.4900 +86 63922 0.5800 +86 64332 0.4340 +86 64431 0.7710 +86 64708 0.4090 +86 64769 0.9950 +86 64919 0.9470 +86 65980 0.9970 +86 79023 0.4150 +86 79084 0.6000 +86 79718 0.6880 +86 79913 0.9860 +86 79923 0.4990 +86 80129 0.4560 +86 80314 0.9900 +86 80818 0.4300 +86 81611 0.9370 +86 83444 0.9630 +86 84148 0.9620 +86 84159 0.4100 +86 85235 0.5390 +86 92815 0.5390 +86 93973 0.9950 +86 94121 0.4910 +86 94239 0.7480 +86 115560 0.4320 +86 121504 0.8610 +86 123169 0.4200 +86 125476 0.9840 +86 148266 0.4330 +86 151050 0.5400 +86 196528 0.9970 +86 221613 0.5390 +86 255626 0.4880 +86 255877 0.4270 +86 283899 0.9750 +86 284058 0.7350 +86 284390 0.4300 +86 317772 0.9040 +86 339287 0.9100 +86 345651 0.7000 +86 375189 0.4790 +86 440093 0.5700 +86 440686 0.5700 +86 554313 0.8610 +86 653604 0.7320 +86 728294 0.5920 +86 728378 0.8940 +86 100132074 0.4680 +87 88 0.7810 +87 89 0.7010 +87 120 0.4700 +87 197 0.4430 +87 302 0.5620 +87 387 0.4330 +87 392 0.4890 +87 538 0.4140 +87 775 0.9400 +87 800 0.5510 +87 811 0.4990 +87 815 0.6850 +87 832 0.7500 +87 857 0.6410 +87 858 0.5270 +87 960 0.5200 +87 977 0.4860 +87 989 0.4490 +87 999 0.4640 +87 1072 0.9150 +87 1073 0.9000 +87 1152 0.5500 +87 1265 0.4440 +87 1277 0.5210 +87 1293 0.5810 +87 1400 0.4810 +87 1465 0.5740 +87 1495 0.9740 +87 1496 0.9210 +87 1627 0.7020 +87 1729 0.5900 +87 1730 0.4460 +87 2017 0.4430 +87 2023 0.6180 +87 2316 0.7160 +87 2318 0.4260 +87 2335 0.6240 +87 2597 0.6910 +87 2638 0.4510 +87 2934 0.8430 +87 3064 0.5680 +87 3181 0.4700 +87 3308 0.5270 +87 3326 0.5810 +87 3383 0.5110 +87 3479 0.4670 +87 3611 0.5230 +87 3655 0.8270 +87 3672 0.7470 +87 3673 0.7760 +87 3674 0.7500 +87 3675 0.7440 +87 3676 0.7010 +87 3678 0.9650 +87 3679 0.7100 +87 3680 0.6810 +87 3683 0.4880 +87 3685 0.7390 +87 3688 0.9740 +87 3690 0.8600 +87 3691 0.8220 +87 3693 0.7850 +87 3694 0.7070 +87 3695 0.7070 +87 3696 0.6800 +87 3936 0.4030 +87 4001 0.4710 +87 4008 0.9140 +87 4162 0.4300 +87 4478 0.4320 +87 4620 0.6100 +87 4624 0.4490 +87 4625 0.4270 +87 4627 0.8440 +87 4628 0.5130 +87 4632 0.5110 +87 4637 0.5610 +87 4638 0.4710 +87 4646 0.6130 +87 4659 0.5120 +87 4868 0.5350 +87 4938 0.5910 +87 5034 0.4970 +87 5054 0.5290 +87 5216 0.7560 +87 5245 0.5750 +87 5305 0.9060 +87 5339 0.5740 +87 5341 0.4120 +87 5361 0.4190 +87 5364 0.4080 +87 5585 0.5510 +87 5595 0.5390 +87 5756 0.5890 +87 5829 0.7300 +87 5834 0.6620 +87 6385 0.7280 +87 6386 0.5090 +87 6432 0.4370 +87 6624 0.4260 +87 6709 0.6760 +87 6711 0.4720 +87 6714 0.8510 +87 6840 0.6040 +87 7040 0.5130 +87 7041 0.4310 +87 7057 0.4610 +87 7082 0.4160 +87 7094 0.8320 +87 7112 0.4130 +87 7114 0.4920 +87 7125 0.4240 +87 7137 0.5750 +87 7138 0.4940 +87 7139 0.7160 +87 7140 0.4410 +87 7168 0.8870 +87 7169 0.6410 +87 7170 0.7150 +87 7171 0.6770 +87 7251 0.4050 +87 7273 0.9060 +87 7408 0.5720 +87 7414 0.9990 +87 7430 0.5810 +87 7532 0.4940 +87 7534 0.5030 +87 7704 0.4120 +87 7791 0.9890 +87 7846 0.5160 +87 7879 0.5390 +87 8038 0.6560 +87 8394 0.9040 +87 8395 0.9070 +87 8396 0.9070 +87 8407 0.4120 +87 8468 0.4010 +87 8470 0.4520 +87 8515 0.6770 +87 8516 0.7310 +87 8557 0.4490 +87 8572 0.5750 +87 8766 0.4290 +87 8773 0.4270 +87 8776 0.4310 +87 8816 0.7840 +87 8826 0.6730 +87 9124 0.9720 +87 9223 0.9170 +87 9260 0.7400 +87 9341 0.4100 +87 9454 0.6300 +87 9497 0.4210 +87 9499 0.8410 +87 9564 0.5620 +87 9590 0.4290 +87 9863 0.4410 +87 9948 0.6970 +87 10020 0.7580 +87 10094 0.4450 +87 10096 0.4820 +87 10097 0.4980 +87 10109 0.5470 +87 10160 0.4130 +87 10236 0.4100 +87 10287 0.4370 +87 10398 0.4980 +87 10409 0.4790 +87 10611 0.5320 +87 10627 0.4010 +87 10755 0.6130 +87 11034 0.5870 +87 11078 0.4670 +87 11155 0.6950 +87 11346 0.5650 +87 22801 0.7040 +87 22915 0.4460 +87 23022 0.5990 +87 23095 0.4290 +87 23221 0.5930 +87 23344 0.4520 +87 23363 0.4390 +87 23396 0.9110 +87 23603 0.5290 +87 26049 0.4430 +87 26958 0.4320 +87 27295 0.4050 +87 29119 0.9170 +87 29780 0.9550 +87 29984 0.6220 +87 51571 0.4440 +87 51666 0.4110 +87 51778 0.8180 +87 51806 0.5240 +87 54443 0.4780 +87 54509 0.7170 +87 55240 0.4190 +87 55243 0.5420 +87 55971 0.4180 +87 56893 0.4160 +87 56924 0.4380 +87 58504 0.5590 +87 58529 0.8040 +87 64236 0.7880 +87 65124 0.4240 +87 79180 0.4380 +87 79778 0.9530 +87 79837 0.9040 +87 79933 0.4580 +87 80115 0.4310 +87 80728 0.4280 +87 81027 0.4360 +87 81624 0.5050 +87 81839 0.4130 +87 83478 0.5170 +87 83660 0.7260 +87 85358 0.6210 +87 85477 0.6060 +87 91860 0.5240 +87 91977 0.7100 +87 113146 0.6180 +87 117178 0.9370 +87 130340 0.4020 +87 132160 0.4250 +87 140901 0.6280 +87 144402 0.4130 +87 161176 0.5980 +87 163688 0.5240 +87 171024 0.5680 +87 200576 0.9000 +87 203068 0.4530 +87 220988 0.4260 +87 345456 0.6470 +87 375189 0.6660 +87 375790 0.4170 +87 389203 0.4050 +87 390594 0.4130 +87 445582 0.5250 +87 728378 0.6550 +88 89 0.9600 +88 207 0.4900 +88 270 0.4030 +88 283 0.6030 +88 287 0.4080 +88 419 0.4410 +88 487 0.5730 +88 488 0.5440 +88 774 0.4480 +88 775 0.6540 +88 776 0.5790 +88 779 0.6160 +88 783 0.4840 +88 786 0.5040 +88 808 0.7840 +88 815 0.9610 +88 816 0.7000 +88 817 0.7020 +88 818 0.5040 +88 829 0.5940 +88 830 0.5960 +88 844 0.6910 +88 845 0.7030 +88 859 0.5890 +88 983 0.4510 +88 1073 0.4470 +88 1158 0.6610 +88 1160 0.5030 +88 1180 0.5710 +88 1339 0.5030 +88 1410 0.5300 +88 1482 0.6000 +88 1674 0.6630 +88 1739 0.6670 +88 1740 0.5320 +88 1741 0.4770 +88 1742 0.8240 +88 1760 0.4930 +88 1793 0.5250 +88 1829 0.6020 +88 1837 0.4300 +88 2027 0.4520 +88 2039 0.5020 +88 2066 0.4500 +88 2070 0.5530 +88 2218 0.4980 +88 2316 0.4510 +88 2317 0.4440 +88 2318 0.7840 +88 2597 0.4200 +88 2626 0.4390 +88 2697 0.4620 +88 2890 0.6120 +88 2891 0.5950 +88 2892 0.4780 +88 2893 0.4670 +88 2902 0.6650 +88 2903 0.6220 +88 2904 0.9430 +88 2905 0.5700 +88 2906 0.4390 +88 2934 0.4930 +88 3084 0.4180 +88 3265 0.5460 +88 3270 0.4880 +88 3611 0.4320 +88 3679 0.5120 +88 3684 0.4140 +88 3688 0.4440 +88 3728 0.4680 +88 3739 0.8020 +88 3741 0.8380 +88 3757 0.4510 +88 3759 0.4660 +88 3766 0.4040 +88 3845 0.5320 +88 4000 0.4230 +88 4151 0.5650 +88 4154 0.5690 +88 4205 0.5150 +88 4208 0.4400 +88 4316 0.4220 +88 4319 0.4160 +88 4604 0.6050 +88 4606 0.5810 +88 4607 0.8020 +88 4618 0.5490 +88 4619 0.8690 +88 4620 0.8560 +88 4621 0.9510 +88 4622 0.8010 +88 4624 0.9730 +88 4625 0.9780 +88 4626 0.9020 +88 4628 0.4130 +88 4629 0.4030 +88 4632 0.9070 +88 4633 0.9240 +88 4634 0.8780 +88 4635 0.7390 +88 4654 0.4330 +88 4656 0.6480 +88 4747 0.5300 +88 4868 0.5170 +88 4878 0.5080 +88 4892 0.7410 +88 4893 0.5330 +88 5004 0.4220 +88 5224 0.5190 +88 5318 0.5090 +88 5350 0.5010 +88 5566 0.4560 +88 5567 0.4590 +88 5568 0.4560 +88 5575 0.4540 +88 5576 0.4340 +88 5705 0.4470 +88 5728 0.4190 +88 5816 0.4150 +88 5837 0.6250 +88 5923 0.4760 +88 5924 0.5050 +88 6261 0.6920 +88 6262 0.7690 +88 6330 0.4160 +88 6331 0.5340 +88 6345 0.5830 +88 6389 0.4110 +88 6442 0.4120 +88 6444 0.7150 +88 6588 0.5250 +88 6640 0.5270 +88 6709 0.6700 +88 6711 0.4230 +88 6714 0.4790 +88 6876 0.5250 +88 6910 0.5160 +88 7094 0.4020 +88 7111 0.4110 +88 7112 0.5780 +88 7125 0.7150 +88 7134 0.5380 +88 7135 0.9060 +88 7136 0.6950 +88 7137 0.7850 +88 7138 0.7720 +88 7139 0.9130 +88 7140 0.8650 +88 7153 0.4290 +88 7157 0.4440 +88 7168 0.9040 +88 7169 0.7600 +88 7170 0.6040 +88 7171 0.5070 +88 7273 0.9990 +88 7414 0.8580 +88 7431 0.5660 +88 7791 0.4950 +88 8038 0.6500 +88 8048 0.9710 +88 8291 0.4320 +88 8407 0.5030 +88 8557 0.9690 +88 8572 0.5510 +88 8735 0.4210 +88 8736 0.6190 +88 8994 0.4490 +88 9124 0.9400 +88 9172 0.7440 +88 9229 0.4450 +88 9260 0.5760 +88 9499 0.9460 +88 9863 0.4270 +88 10021 0.5320 +88 10060 0.6740 +88 10324 0.6400 +88 10345 0.6060 +88 10529 0.8080 +88 10611 0.7520 +88 10658 0.4740 +88 10930 0.6180 +88 11155 0.9730 +88 23022 0.4210 +88 23676 0.7280 +88 26146 0.4320 +88 26287 0.5190 +88 27063 0.6310 +88 27295 0.9670 +88 29114 0.5150 +88 29119 0.5120 +88 29765 0.4600 +88 29780 0.5460 +88 29895 0.7640 +88 51422 0.5410 +88 51571 0.4260 +88 51778 0.9870 +88 55243 0.5200 +88 57158 0.6010 +88 57159 0.4720 +88 57538 0.4110 +88 57554 0.5310 +88 58498 0.6180 +88 58529 0.9980 +88 79188 0.4480 +88 79577 0.4610 +88 79778 0.4250 +88 79933 0.5430 +88 80352 0.4090 +88 83660 0.4190 +88 84033 0.5100 +88 84665 0.9420 +88 84676 0.4530 +88 84687 0.4200 +88 84700 0.4770 +88 84962 0.4330 +88 85358 0.6300 +88 85366 0.5470 +88 85477 0.4620 +88 91624 0.6920 +88 91807 0.4940 +88 91977 0.8170 +88 114907 0.5090 +88 125972 0.4530 +88 126374 0.4350 +88 127294 0.4160 +88 129446 0.8600 +88 131377 0.4160 +88 140901 0.5680 +88 146862 0.5110 +88 147912 0.4020 +88 150572 0.5540 +88 163688 0.4270 +88 165904 0.7590 +88 171024 0.7360 +88 200539 0.4320 +88 202333 0.7740 +88 257313 0.4460 +88 282996 0.7470 +88 283807 0.4290 +88 375189 0.4290 +88 389203 0.4050 +88 442721 0.6240 +89 270 0.7360 +89 288 0.4190 +89 487 0.7330 +89 786 0.5120 +89 825 0.5910 +89 844 0.6990 +89 845 0.4120 +89 1158 0.5760 +89 1636 0.6440 +89 1674 0.6090 +89 2027 0.5050 +89 2660 0.6010 +89 4000 0.4480 +89 4151 0.6020 +89 4604 0.6320 +89 4606 0.8020 +89 4618 0.5880 +89 4619 0.8100 +89 4620 0.7240 +89 4621 0.7520 +89 4622 0.6220 +89 4624 0.7520 +89 4625 0.7410 +89 4626 0.7650 +89 4632 0.9220 +89 4633 0.7740 +89 4634 0.7120 +89 4635 0.6480 +89 4656 0.4060 +89 4868 0.5080 +89 4892 0.4850 +89 5091 0.4190 +89 5224 0.5540 +89 5816 0.4350 +89 5834 0.4520 +89 5836 0.4520 +89 5837 0.7360 +89 6123 0.5440 +89 6261 0.5810 +89 6345 0.5620 +89 6709 0.4500 +89 6711 0.4210 +89 7125 0.7890 +89 7135 0.7400 +89 7136 0.7640 +89 7138 0.7710 +89 7139 0.5040 +89 7140 0.9070 +89 7168 0.6810 +89 7169 0.5310 +89 7170 0.7640 +89 7273 0.8010 +89 7414 0.5360 +89 7431 0.5620 +89 8048 0.4810 +89 8291 0.5420 +89 8425 0.4690 +89 8557 0.7210 +89 9124 0.6550 +89 9172 0.6350 +89 9260 0.4910 +89 9499 0.8930 +89 9863 0.4070 +89 10324 0.5630 +89 10529 0.4370 +89 10611 0.4720 +89 10891 0.4180 +89 22989 0.4390 +89 23676 0.5630 +89 27295 0.4460 +89 29074 0.4220 +89 29765 0.7230 +89 29895 0.7840 +89 51778 0.4910 +89 54555 0.4130 +89 55243 0.5200 +89 58529 0.8720 +89 64857 0.4580 +89 79041 0.4770 +89 79577 0.5910 +89 84260 0.5600 +89 84665 0.7370 +89 84676 0.4180 +89 85366 0.6340 +89 91977 0.4650 +89 148109 0.4080 +89 200539 0.5920 +89 389203 0.4050 +89 390594 0.5510 +90 91 0.9790 +90 92 0.9990 +90 93 0.9930 +90 94 0.9660 +90 190 0.4240 +90 238 0.6230 +90 268 0.9640 +90 269 0.9420 +90 546 0.4420 +90 650 0.9920 +90 651 0.5370 +90 652 0.9980 +90 653 0.9770 +90 654 0.9990 +90 655 0.9990 +90 656 0.9430 +90 657 0.9990 +90 658 0.9950 +90 659 0.9990 +90 673 0.4770 +90 860 0.5050 +90 960 0.4850 +90 1499 0.4380 +90 1604 0.6380 +90 2022 0.8360 +90 2026 0.4460 +90 2280 0.9980 +90 2281 0.9660 +90 2658 0.9900 +90 2660 0.6360 +90 2662 0.6060 +90 2941 0.5300 +90 3020 0.5740 +90 3021 0.4920 +90 3077 0.6190 +90 3397 0.5850 +90 3398 0.4040 +90 3399 0.4020 +90 3623 0.6440 +90 3624 0.6700 +90 3625 0.9500 +90 3693 0.4780 +90 4086 0.9780 +90 4087 0.9700 +90 4088 0.9610 +90 4089 0.8600 +90 4090 0.9940 +90 4091 0.8500 +90 4092 0.7280 +90 4093 0.9900 +90 4756 0.9300 +90 5155 0.4460 +90 5156 0.5370 +90 5916 0.4350 +90 6373 0.4260 +90 6498 0.4440 +90 6662 0.4060 +90 6997 0.5500 +90 7036 0.6210 +90 7040 0.5500 +90 7042 0.5580 +90 7043 0.6960 +90 7044 0.5680 +90 7046 0.9600 +90 7048 0.8100 +90 7049 0.6640 +90 7465 0.4250 +90 8200 0.8210 +90 8352 0.5280 +90 8353 0.4870 +90 8356 0.5000 +90 8358 0.5670 +90 8454 0.9640 +90 8493 0.4700 +90 8646 0.5890 +90 9210 0.4210 +90 9213 0.7020 +90 9241 0.8340 +90 9392 0.4640 +90 9577 0.5130 +90 9978 0.4820 +90 10220 0.8470 +90 10468 0.5740 +90 10477 0.4330 +90 10637 0.5680 +90 10963 0.4670 +90 25805 0.9720 +90 26018 0.5670 +90 27302 0.8310 +90 51293 0.6170 +90 55294 0.7690 +90 55720 0.5630 +90 55737 0.4020 +90 56963 0.9240 +90 57154 0.7150 +90 57817 0.5440 +90 79674 0.4630 +90 84125 0.6490 +90 84261 0.4450 +90 112609 0.5260 +90 121340 0.4550 +90 130399 0.9080 +90 148738 0.9580 +90 151449 0.6370 +90 164656 0.4640 +90 168667 0.4870 +90 284996 0.6180 +90 285704 0.9440 +90 353500 0.9620 +90 392255 0.5200 +91 92 0.9980 +91 93 0.9990 +91 238 0.9320 +91 269 0.6400 +91 331 0.5600 +91 650 0.8070 +91 651 0.4430 +91 652 0.8650 +91 653 0.4910 +91 654 0.6970 +91 655 0.7110 +91 657 0.5290 +91 658 0.5640 +91 659 0.6950 +91 675 0.4380 +91 752 0.4170 +91 780 0.4790 +91 859 0.6990 +91 947 0.4750 +91 1499 0.4670 +91 1604 0.5980 +91 1950 0.6150 +91 2022 0.6200 +91 2056 0.4770 +91 2247 0.4090 +91 2280 0.8530 +91 2657 0.7600 +91 2658 0.5480 +91 2660 0.9950 +91 2661 0.5290 +91 2662 0.6420 +91 3164 0.4570 +91 3309 0.4980 +91 3459 0.4480 +91 3547 0.4200 +91 3597 0.4520 +91 3623 0.6290 +91 3624 0.9960 +91 3625 0.9020 +91 3626 0.4570 +91 3845 0.4010 +91 4087 0.9720 +91 4088 0.9360 +91 4089 0.9570 +91 4090 0.6570 +91 4091 0.7150 +91 4092 0.9020 +91 4093 0.5950 +91 4838 0.9300 +91 5047 0.4030 +91 5156 0.4950 +91 5460 0.4150 +91 5644 0.4490 +91 6498 0.4730 +91 6997 0.9980 +91 7040 0.6230 +91 7042 0.6990 +91 7043 0.5030 +91 7044 0.7540 +91 7046 0.9880 +91 7048 0.7400 +91 7049 0.5300 +91 8200 0.5290 +91 8646 0.5050 +91 8928 0.5490 +91 9210 0.4510 +91 9241 0.5060 +91 9350 0.5300 +91 9372 0.4390 +91 9573 0.6790 +91 10220 0.9320 +91 10272 0.5080 +91 10468 0.7460 +91 10637 0.7680 +91 23022 0.4600 +91 25805 0.5620 +91 26018 0.5590 +91 27302 0.4720 +91 51567 0.4490 +91 55720 0.5570 +91 55997 0.8960 +91 57154 0.7000 +91 64102 0.5720 +91 114798 0.4640 +91 130399 0.9670 +91 136541 0.4740 +91 151449 0.5870 +91 168002 0.6480 +91 199699 0.5190 +91 392255 0.6740 +91 642658 0.5630 +91 728378 0.4190 +91 102723407 0.8140 +92 93 0.9980 +92 94 0.9940 +92 207 0.4260 +92 238 0.8390 +92 268 0.5630 +92 269 0.6080 +92 409 0.4230 +92 649 0.4050 +92 650 0.9990 +92 651 0.7520 +92 652 0.9970 +92 653 0.9800 +92 654 0.9990 +92 655 0.9990 +92 656 0.9390 +92 657 0.9980 +92 658 0.9870 +92 659 0.9940 +92 1499 0.4500 +92 1636 0.4360 +92 1906 0.4140 +92 2022 0.8780 +92 2253 0.4740 +92 2657 0.9790 +92 2658 0.9980 +92 2660 0.9970 +92 2662 0.9670 +92 2956 0.4140 +92 3265 0.4090 +92 3283 0.4430 +92 3397 0.4050 +92 3479 0.4960 +92 3547 0.4200 +92 3572 0.4080 +92 3623 0.9660 +92 3624 0.9990 +92 3625 0.9950 +92 3626 0.9370 +92 3845 0.4480 +92 3887 0.4560 +92 4086 0.6770 +92 4087 0.9770 +92 4088 0.9790 +92 4089 0.8940 +92 4090 0.8350 +92 4091 0.7990 +92 4092 0.7710 +92 4093 0.8880 +92 4437 0.4920 +92 4838 0.9840 +92 5015 0.4100 +92 5047 0.6450 +92 5074 0.4910 +92 5156 0.5060 +92 5290 0.4130 +92 5500 0.4190 +92 5660 0.4420 +92 6498 0.4390 +92 6572 0.5470 +92 6997 0.9770 +92 7040 0.8120 +92 7042 0.4660 +92 7043 0.5220 +92 7044 0.7930 +92 7046 0.9880 +92 7048 0.5440 +92 7049 0.9570 +92 8200 0.9860 +92 8646 0.4930 +92 8871 0.4160 +92 8928 0.4230 +92 9210 0.4180 +92 9241 0.6450 +92 9350 0.4670 +92 9573 0.9350 +92 9765 0.5900 +92 9863 0.5250 +92 10121 0.4360 +92 10220 0.9990 +92 10272 0.6820 +92 10468 0.8180 +92 10637 0.7930 +92 10673 0.4080 +92 25805 0.6140 +92 26018 0.5850 +92 27302 0.9910 +92 28990 0.4550 +92 53340 0.4030 +92 55333 0.8210 +92 55582 0.4200 +92 55727 0.4270 +92 55997 0.6520 +92 56963 0.5200 +92 57154 0.6760 +92 64750 0.6470 +92 83729 0.9350 +92 130399 0.9960 +92 148738 0.5040 +92 151449 0.9690 +92 199699 0.4820 +92 219736 0.5440 +92 282809 0.4050 +92 285704 0.5430 +92 285888 0.6490 +92 353500 0.9600 +92 374654 0.4350 +92 390714 0.4430 +92 392255 0.9610 +92 728378 0.4310 +92 768239 0.5640 +93 94 0.9560 +93 207 0.4660 +93 238 0.6170 +93 268 0.4250 +93 269 0.7010 +93 491 0.4150 +93 649 0.4390 +93 650 0.9990 +93 651 0.9890 +93 652 0.9930 +93 653 0.9790 +93 654 0.9970 +93 655 0.9980 +93 656 0.9360 +93 657 0.9950 +93 658 0.9780 +93 659 0.9510 +93 780 0.5060 +93 920 0.4240 +93 948 0.4160 +93 949 0.4240 +93 950 0.4160 +93 1636 0.5800 +93 1742 0.4170 +93 2022 0.6940 +93 2657 0.9730 +93 2658 0.9970 +93 2660 0.9990 +93 2661 0.4260 +93 2662 0.5600 +93 2697 0.7030 +93 2701 0.4470 +93 2702 0.4400 +93 2853 0.5880 +93 2919 0.4470 +93 3479 0.4960 +93 3482 0.4170 +93 3547 0.4440 +93 3623 0.9620 +93 3624 0.9990 +93 3625 0.9870 +93 3626 0.9370 +93 3791 0.4040 +93 4086 0.6510 +93 4087 0.9830 +93 4088 0.9680 +93 4089 0.8810 +93 4090 0.8290 +93 4091 0.8510 +93 4092 0.8290 +93 4093 0.8160 +93 4617 0.4080 +93 4654 0.4880 +93 4656 0.4550 +93 4838 0.9930 +93 4867 0.4030 +93 5045 0.4230 +93 5047 0.6670 +93 5308 0.6500 +93 5318 0.4020 +93 5500 0.4140 +93 6373 0.4100 +93 6642 0.5570 +93 6643 0.5870 +93 6997 0.9880 +93 7040 0.7420 +93 7042 0.4480 +93 7043 0.4950 +93 7044 0.9510 +93 7046 0.9990 +93 7048 0.8310 +93 7049 0.6610 +93 7547 0.9090 +93 8200 0.9850 +93 8324 0.4810 +93 8646 0.4820 +93 8723 0.4410 +93 8788 0.4200 +93 8928 0.5210 +93 9210 0.6070 +93 9241 0.6180 +93 9350 0.4550 +93 9389 0.6750 +93 9475 0.4180 +93 9573 0.9560 +93 9737 0.4800 +93 9765 0.5840 +93 9941 0.4960 +93 9942 0.6980 +93 10021 0.4510 +93 10052 0.4380 +93 10121 0.4640 +93 10220 0.9990 +93 10272 0.6010 +93 10468 0.8620 +93 10637 0.9210 +93 11167 0.4920 +93 23339 0.6390 +93 25805 0.6420 +93 26018 0.5980 +93 27130 0.4520 +93 27302 0.8350 +93 51330 0.5120 +93 55997 0.9590 +93 57154 0.6820 +93 57589 0.4970 +93 58533 0.6050 +93 64403 0.4310 +93 64750 0.6180 +93 78987 0.4210 +93 78999 0.4550 +93 83729 0.9370 +93 84125 0.4160 +93 84676 0.4010 +93 114907 0.5820 +93 130399 0.9970 +93 151449 0.9530 +93 163702 0.4590 +93 168667 0.6700 +93 199699 0.5220 +93 220001 0.5300 +93 220136 0.4040 +93 285704 0.5040 +93 353500 0.9560 +93 390714 0.4430 +93 392255 0.9610 +93 728378 0.4350 +93 102723407 0.9230 +94 238 0.4070 +94 268 0.4900 +94 269 0.6400 +94 285 0.4100 +94 338 0.4830 +94 650 0.9160 +94 652 0.9080 +94 653 0.4980 +94 654 0.6220 +94 655 0.5560 +94 657 0.7230 +94 658 0.7390 +94 659 0.9970 +94 857 0.5170 +94 889 0.7060 +94 1003 0.7170 +94 1289 0.4960 +94 1604 0.5830 +94 1948 0.4540 +94 2022 0.9990 +94 2247 0.5350 +94 2280 0.7510 +94 2658 0.9990 +94 2701 0.4610 +94 3164 0.4340 +94 3320 0.4240 +94 3397 0.5550 +94 3569 0.5090 +94 3624 0.5790 +94 3625 0.4900 +94 3678 0.4110 +94 3741 0.4740 +94 3777 0.6760 +94 3791 0.5320 +94 4086 0.7520 +94 4087 0.6500 +94 4088 0.5390 +94 4089 0.8910 +94 4090 0.8740 +94 4091 0.6280 +94 4092 0.7050 +94 4093 0.9100 +94 4854 0.4250 +94 4855 0.4320 +94 5074 0.4380 +94 5175 0.4480 +94 5921 0.4310 +94 6373 0.4570 +94 6572 0.4970 +94 6993 0.5040 +94 7010 0.4070 +94 7040 0.9580 +94 7042 0.6550 +94 7043 0.9660 +94 7046 0.6830 +94 7048 0.9920 +94 7049 0.4660 +94 7450 0.4190 +94 7633 0.6020 +94 8200 0.4770 +94 8454 0.4630 +94 8601 0.4480 +94 8831 0.4160 +94 9284 0.5500 +94 9496 0.5890 +94 10755 0.4570 +94 11235 0.5200 +94 23089 0.6950 +94 25805 0.4930 +94 27302 0.9990 +94 51162 0.4190 +94 54567 0.4780 +94 55273 0.4750 +94 55716 0.4210 +94 55720 0.5520 +94 64321 0.4760 +94 79572 0.6000 +94 79758 0.4250 +94 83605 0.5600 +94 116844 0.4340 +94 130399 0.5140 +94 144125 0.9090 +94 147381 0.4480 +94 148738 0.7770 +94 151449 0.5460 +94 161198 0.5420 +94 168667 0.4560 +94 259173 0.4320 +94 392255 0.4240 +94 440275 0.5460 +95 197 0.5120 +95 211 0.5810 +95 327 0.8950 +95 383 0.9200 +95 384 0.9380 +95 435 0.5660 +95 443 0.9810 +95 445 0.8440 +95 590 0.4640 +95 710 0.4400 +95 790 0.4020 +95 1373 0.5470 +95 1400 0.4160 +95 1723 0.5640 +95 1806 0.5910 +95 1807 0.4200 +95 1808 0.4160 +95 1809 0.4160 +95 2639 0.4120 +95 2673 0.4140 +95 2720 0.7810 +95 2739 0.4820 +95 2752 0.4300 +95 3094 0.4380 +95 3310 0.4330 +95 3704 0.4010 +95 4057 0.5530 +95 4521 0.7800 +95 4942 0.7000 +95 4953 0.4200 +95 5009 0.9660 +95 5476 0.4700 +95 5832 0.6770 +95 6821 0.4720 +95 7086 0.4030 +95 7265 0.6270 +95 8877 0.8270 +95 9527 0.4990 +95 10435 0.5120 +95 10570 0.4160 +95 10935 0.4480 +95 25864 0.5730 +95 25972 0.4260 +95 26873 0.5340 +95 29968 0.6310 +95 51400 0.4320 +95 51582 0.4190 +95 51733 0.5200 +95 55825 0.4820 +95 56896 0.4160 +95 64081 0.5870 +95 64850 0.4320 +95 66037 0.4520 +95 79753 0.4210 +95 84076 0.4040 +95 91703 0.7960 +95 113451 0.4190 +95 123228 0.4280 +95 162417 0.5360 +95 162466 0.4260 +95 339855 0.4070 +95 100526760 0.9030 +97 98 0.9090 +97 217 0.9000 +97 219 0.9090 +97 223 0.9100 +97 224 0.9080 +97 501 0.9050 +97 4706 0.6810 +97 7559 0.4360 +97 54939 0.4770 +97 55902 0.9080 +97 84532 0.9040 +97 134526 0.9230 +98 217 0.9060 +98 219 0.9150 +98 223 0.9100 +98 224 0.9060 +98 501 0.9050 +98 4706 0.6500 +98 7015 0.4800 +98 7172 0.5910 +98 7757 0.7820 +98 9121 0.5100 +98 10200 0.4810 +98 26094 0.5070 +98 51750 0.6700 +98 54899 0.5440 +98 55902 0.9100 +98 60625 0.5710 +98 79991 0.6680 +98 80169 0.6040 +98 84532 0.9020 +98 92345 0.4150 +98 134526 0.9110 +98 151827 0.4050 +98 163223 0.6670 +98 282890 0.4180 +98 388951 0.6960 +100 103 0.9520 +100 104 0.8330 +100 105 0.8870 +100 132 0.9920 +100 134 0.8310 +100 135 0.9070 +100 136 0.5770 +100 140 0.6490 +100 158 0.6670 +100 159 0.4890 +100 191 0.8150 +100 204 0.5930 +100 213 0.5760 +100 249 0.4510 +100 270 0.9020 +100 271 0.9080 +100 272 0.9160 +100 338 0.4070 +100 339 0.5060 +100 353 0.9290 +100 384 0.4590 +100 471 0.5460 +100 590 0.4510 +100 919 0.4870 +100 920 0.5120 +100 925 0.5010 +100 947 0.4010 +100 952 0.4010 +100 953 0.7080 +100 954 0.4150 +100 956 0.4920 +100 978 0.6900 +100 1048 0.4790 +100 1401 0.5710 +100 1503 0.4600 +100 1520 0.4320 +100 1633 0.9500 +100 1654 0.4150 +100 1655 0.5310 +100 1660 0.6470 +100 1719 0.6520 +100 1723 0.4270 +100 1803 0.9990 +100 1804 0.5140 +100 1841 0.4220 +100 1915 0.5070 +100 2030 0.7360 +100 2053 0.8500 +100 2098 0.4850 +100 2191 0.8910 +100 2539 0.4120 +100 2618 0.5070 +100 2766 0.4330 +100 2821 0.4640 +100 2875 0.4580 +100 2877 0.5770 +100 2878 0.5770 +100 2880 0.5780 +100 2882 0.6110 +100 2891 0.6690 +100 3177 0.5920 +100 3185 0.4020 +100 3251 0.7060 +100 3352 0.4470 +100 3439 0.4310 +100 3458 0.5430 +100 3553 0.4480 +100 3558 0.6630 +100 3561 0.6390 +100 3569 0.4400 +100 3586 0.4210 +100 3614 0.5940 +100 3615 0.6560 +100 3630 0.4510 +100 3704 0.7850 +100 3978 0.4570 +100 3981 0.4440 +100 4154 0.4370 +100 4351 0.4280 +100 4353 0.4140 +100 4507 0.5990 +100 4602 0.4140 +100 4670 0.4160 +100 4860 0.9980 +100 4907 0.9840 +100 5029 0.4430 +100 5030 0.4300 +100 5031 0.4190 +100 5032 0.4510 +100 5036 0.4750 +100 5226 0.4560 +100 5236 0.4240 +100 5471 0.4880 +100 5569 0.7190 +100 5610 0.5720 +100 5743 0.4740 +100 5788 0.5600 +100 5896 0.6060 +100 6041 0.4730 +100 6218 0.6250 +100 6223 0.6770 +100 7022 0.5050 +100 7124 0.4720 +100 7298 0.5030 +100 7378 0.5070 +100 7433 0.4970 +100 7498 0.7610 +100 7514 0.4230 +100 8833 0.7200 +100 8886 0.4260 +100 9350 0.6210 +100 9444 0.4330 +100 9563 0.4980 +100 9615 0.7370 +100 9939 0.5000 +100 10150 0.4300 +100 10535 0.4470 +100 10930 0.4960 +100 11142 0.7710 +100 22978 0.9370 +100 23405 0.6900 +100 23586 0.4230 +100 25962 0.4390 +100 29102 0.5010 +100 29126 0.4360 +100 30833 0.9450 +100 51020 0.4610 +100 51251 0.9210 +100 51582 0.4060 +100 51816 0.9920 +100 54890 0.4700 +100 54931 0.4170 +100 55152 0.4740 +100 55695 0.4360 +100 55796 0.4360 +100 56339 0.5350 +100 56952 0.4780 +100 56953 0.9430 +100 60487 0.4410 +100 64080 0.5050 +100 64135 0.4810 +100 64848 0.4070 +100 79730 0.4410 +100 81554 0.4290 +100 81932 0.4530 +100 83475 0.4230 +100 83743 0.4360 +100 84153 0.4270 +100 84618 0.9190 +100 93034 0.9090 +100 93587 0.4280 +100 113179 0.5960 +100 115024 0.9220 +100 122622 0.4720 +100 132612 0.4920 +100 134637 0.5820 +100 151531 0.4880 +100 154141 0.4700 +100 200895 0.6420 +100 257202 0.5780 +100 374569 0.4120 +100 377841 0.5930 +100 493869 0.5900 +100 692312 0.4310 +100 728378 0.6240 +100 100526794 0.9090 +101 487 0.4520 +101 1356 0.6920 +101 3684 0.4240 +101 3687 0.4510 +101 3689 0.4110 +101 3690 0.4090 +101 4318 0.5600 +101 4321 0.4060 +101 5724 0.5720 +101 6714 0.5090 +101 8669 0.4970 +101 28998 0.8250 +101 51676 0.5550 +101 64386 0.4660 +101 79148 0.4180 +101 127247 0.7240 +101 343641 0.5560 +102 177 0.5710 +102 182 0.7420 +102 207 0.6720 +102 291 0.7200 +102 292 0.7260 +102 322 0.6180 +102 323 0.4080 +102 333 0.6770 +102 334 0.6650 +102 348 0.7330 +102 351 0.9500 +102 374 0.5060 +102 578 0.7200 +102 581 0.7360 +102 596 0.8020 +102 685 0.5410 +102 727 0.7360 +102 729 0.7200 +102 730 0.7200 +102 731 0.7200 +102 732 0.7200 +102 733 0.5400 +102 735 0.7200 +102 808 0.5570 +102 810 0.5440 +102 836 0.4180 +102 900 0.4310 +102 928 0.8810 +102 930 0.4610 +102 947 0.7560 +102 960 0.4950 +102 966 0.4810 +102 967 0.4950 +102 975 0.8820 +102 977 0.6910 +102 999 0.8810 +102 1000 0.5340 +102 1003 0.5360 +102 1015 0.4800 +102 1020 0.4060 +102 1234 0.4570 +102 1308 0.6340 +102 1499 0.4500 +102 1508 0.6120 +102 1520 0.4510 +102 1524 0.4540 +102 1636 0.4580 +102 1739 0.9820 +102 1832 0.4160 +102 1839 0.9540 +102 1942 0.7610 +102 1943 0.9320 +102 1944 0.7500 +102 1945 0.6180 +102 1946 0.7910 +102 1947 0.6650 +102 1948 0.4140 +102 1950 0.7460 +102 1956 0.5460 +102 1969 0.6390 +102 2041 0.8390 +102 2042 0.7670 +102 2043 0.7950 +102 2044 0.5840 +102 2045 0.5780 +102 2046 0.5910 +102 2064 0.4430 +102 2069 0.4140 +102 2208 0.5510 +102 2255 0.5300 +102 2335 0.4830 +102 2597 0.4730 +102 2817 0.4130 +102 2885 0.6100 +102 2932 0.4380 +102 3064 0.5920 +102 3084 0.4040 +102 3091 0.4830 +102 3156 0.4570 +102 3265 0.4900 +102 3416 0.6360 +102 3480 0.6170 +102 3516 0.6210 +102 3553 0.4640 +102 3569 0.4780 +102 3570 0.4360 +102 3688 0.5750 +102 3693 0.4060 +102 3714 0.7010 +102 3732 0.4660 +102 3897 0.6220 +102 4085 0.5860 +102 4137 0.4860 +102 4150 0.4040 +102 4179 0.5090 +102 4301 0.7550 +102 4311 0.5430 +102 4313 0.4870 +102 4314 0.4760 +102 4316 0.6010 +102 4318 0.6040 +102 4323 0.6070 +102 4325 0.4050 +102 4851 0.9240 +102 4853 0.8250 +102 4854 0.6850 +102 4855 0.6460 +102 5045 0.6190 +102 5621 0.4800 +102 5663 0.9050 +102 5664 0.7900 +102 5738 0.5100 +102 5818 0.4560 +102 5829 0.4610 +102 5915 0.4690 +102 6093 0.4030 +102 6376 0.8230 +102 6386 0.4110 +102 6422 0.5510 +102 6423 0.6450 +102 6653 0.4930 +102 6687 0.7410 +102 6714 0.6940 +102 6774 0.6230 +102 6868 0.9580 +102 7039 0.5340 +102 7042 0.4820 +102 7076 0.5180 +102 7077 0.6160 +102 7078 0.5420 +102 7124 0.5560 +102 7311 0.4050 +102 7314 0.4210 +102 7316 0.4070 +102 7416 0.7480 +102 7417 0.5660 +102 7419 0.5610 +102 7837 0.4060 +102 8301 0.6370 +102 8434 0.4210 +102 8492 0.4100 +102 8633 0.4620 +102 8728 0.5660 +102 8754 0.6680 +102 9365 0.7210 +102 9507 0.4080 +102 9510 0.4110 +102 9794 0.5610 +102 10098 0.9730 +102 10105 0.7330 +102 10142 0.4550 +102 10347 0.6440 +102 10452 0.6070 +102 10459 0.4910 +102 10663 0.6130 +102 10683 0.4380 +102 10893 0.4440 +102 22914 0.4360 +102 23385 0.8650 +102 23411 0.5800 +102 23462 0.4430 +102 23554 0.7240 +102 23555 0.9520 +102 23607 0.4800 +102 23621 0.9220 +102 23646 0.6060 +102 25797 0.4130 +102 25825 0.5800 +102 26262 0.8390 +102 27032 0.4230 +102 28514 0.7340 +102 29763 0.4950 +102 51107 0.8520 +102 51248 0.7720 +102 51806 0.5440 +102 54209 0.5270 +102 54567 0.7030 +102 54757 0.4110 +102 55534 0.5460 +102 55851 0.8190 +102 56302 0.5320 +102 56928 0.4700 +102 56975 0.5050 +102 58191 0.7660 +102 59272 0.4600 +102 64285 0.4450 +102 64318 0.4450 +102 79258 0.6100 +102 79651 0.5100 +102 81619 0.9770 +102 83447 0.7200 +102 83464 0.5260 +102 84134 0.5410 +102 84441 0.5660 +102 84888 0.4970 +102 90139 0.7690 +102 91860 0.5450 +102 117159 0.5400 +102 137902 0.4020 +102 144100 0.7880 +102 152831 0.4610 +102 163688 0.5440 +102 197021 0.4760 +102 284656 0.5700 +102 285220 0.5530 +102 340348 0.9870 +102 100133941 0.5340 +103 338 0.4250 +103 339 0.6230 +103 684 0.4610 +103 978 0.4760 +103 1452 0.5190 +103 1499 0.6890 +103 1500 0.4650 +103 1654 0.4780 +103 1655 0.5330 +103 1660 0.9220 +103 1777 0.4610 +103 1855 0.7570 +103 1856 0.7500 +103 1857 0.7170 +103 1994 0.7430 +103 2316 0.4930 +103 2332 0.6600 +103 2521 0.6280 +103 2537 0.4670 +103 2556 0.6480 +103 2891 0.7300 +103 2898 0.4310 +103 2932 0.8960 +103 3069 0.6370 +103 3172 0.4330 +103 3178 0.6300 +103 3183 0.5090 +103 3185 0.4720 +103 3191 0.5550 +103 3192 0.5310 +103 3358 0.5610 +103 3428 0.5720 +103 3429 0.4070 +103 3430 0.4820 +103 3431 0.4740 +103 3433 0.5350 +103 3434 0.6990 +103 3437 0.6410 +103 3439 0.5200 +103 3454 0.4150 +103 3456 0.4780 +103 3608 0.5390 +103 3659 0.4050 +103 3661 0.4650 +103 3665 0.6860 +103 3669 0.4330 +103 3736 0.4480 +103 3842 0.6700 +103 4040 0.5500 +103 4041 0.4310 +103 4154 0.6290 +103 4343 0.5340 +103 4599 0.7230 +103 4600 0.5780 +103 4609 0.5800 +103 4670 0.5540 +103 4841 0.4010 +103 4938 0.6960 +103 4939 0.6600 +103 4940 0.6890 +103 5216 0.4330 +103 5610 0.8730 +103 5976 0.9830 +103 6041 0.6290 +103 6422 0.4550 +103 6542 0.4730 +103 6628 0.4400 +103 6657 0.4320 +103 6726 0.4480 +103 6772 0.8330 +103 6773 0.7930 +103 6774 0.4270 +103 6780 0.7570 +103 6890 0.4220 +103 6895 0.4100 +103 7098 0.5280 +103 7157 0.4460 +103 7158 0.4030 +103 7319 0.4200 +103 7329 0.5440 +103 7471 0.5580 +103 7472 0.4060 +103 7474 0.5610 +103 7477 0.4030 +103 7482 0.6160 +103 7514 0.5860 +103 7520 0.5730 +103 7706 0.4510 +103 8087 0.6180 +103 8312 0.9930 +103 8313 0.5340 +103 8322 0.6680 +103 8323 0.5240 +103 8324 0.5460 +103 8325 0.6360 +103 8519 0.4500 +103 8570 0.5720 +103 8575 0.5560 +103 8638 0.4840 +103 8683 0.5410 +103 8945 0.4350 +103 9021 0.4270 +103 9188 0.4320 +103 9246 0.5150 +103 9392 0.4260 +103 9444 0.6250 +103 9584 0.4690 +103 9620 0.4390 +103 9636 0.6730 +103 9782 0.5980 +103 9881 0.4650 +103 9887 0.4330 +103 9908 0.4030 +103 9939 0.5500 +103 10009 0.5770 +103 10146 0.5330 +103 10150 0.6050 +103 10346 0.4270 +103 10379 0.8190 +103 10410 0.4060 +103 10521 0.5970 +103 10535 0.7540 +103 10561 0.5150 +103 10904 0.5830 +103 10930 0.5220 +103 10964 0.5710 +103 11052 0.4110 +103 11274 0.5870 +103 11277 0.6430 +103 11325 0.4540 +103 22849 0.4060 +103 22881 0.4480 +103 22916 0.6430 +103 22943 0.4650 +103 23002 0.6750 +103 23070 0.4150 +103 23318 0.4360 +103 23328 0.6880 +103 23381 0.4630 +103 23405 0.9930 +103 23435 0.4730 +103 23476 0.7150 +103 23586 0.7660 +103 24138 0.5050 +103 25939 0.8640 +103 25962 0.4920 +103 26019 0.4920 +103 26999 0.4220 +103 27044 0.4810 +103 27121 0.6060 +103 27122 0.5370 +103 27123 0.6020 +103 27130 0.4280 +103 27161 0.8350 +103 27316 0.9260 +103 29102 0.6650 +103 29110 0.4270 +103 51191 0.5100 +103 51339 0.5250 +103 51428 0.4190 +103 51441 0.4330 +103 51582 0.6690 +103 54487 0.4750 +103 54625 0.4390 +103 54888 0.4200 +103 55008 0.4200 +103 55294 0.4050 +103 55601 0.5060 +103 55796 0.6060 +103 56339 0.4760 +103 56829 0.4710 +103 57169 0.6190 +103 57216 0.6190 +103 57506 0.5420 +103 57510 0.6150 +103 57721 0.4260 +103 60489 0.5010 +103 60493 0.4230 +103 64108 0.4210 +103 64135 0.8510 +103 64359 0.4170 +103 64761 0.5140 +103 79132 0.5980 +103 79621 0.7350 +103 79661 0.5190 +103 81030 0.7510 +103 81839 0.4780 +103 83548 0.5330 +103 83666 0.5390 +103 84153 0.7200 +103 84640 0.6000 +103 85363 0.4290 +103 85407 0.5700 +103 85441 0.4170 +103 87178 0.4480 +103 89780 0.5690 +103 90634 0.4300 +103 91543 0.5990 +103 113179 0.7060 +103 115004 0.4680 +103 129607 0.4510 +103 134637 0.4710 +103 151636 0.4270 +103 200315 0.5230 +103 200316 0.4020 +103 253943 0.4140 +103 284131 0.4250 +103 345456 0.4160 +103 375189 0.4020 +104 655 0.8710 +104 977 0.6060 +104 2556 0.4720 +104 2891 0.8220 +104 2898 0.4520 +104 2936 0.5750 +104 3017 0.4530 +104 3018 0.4510 +104 3358 0.4100 +104 4345 0.5260 +104 4438 0.4740 +104 5604 0.6260 +104 5610 0.6380 +104 6726 0.4080 +104 6780 0.6360 +104 6847 0.5680 +104 6895 0.6190 +104 7329 0.4110 +104 8340 0.4690 +104 8341 0.4500 +104 8342 0.4520 +104 8345 0.4520 +104 8347 0.4530 +104 8348 0.4520 +104 8349 0.4710 +104 8446 0.5020 +104 8575 0.7020 +104 8970 0.4500 +104 9985 0.7790 +104 10388 0.8620 +104 10459 0.4610 +104 10904 0.4530 +104 11060 0.4660 +104 11240 0.4690 +104 23275 0.8080 +104 23567 0.5500 +104 23626 0.6610 +104 26999 0.4150 +104 27173 0.7770 +104 29102 0.6230 +104 50511 0.7880 +104 51582 0.4970 +104 51605 0.4210 +104 54145 0.4580 +104 55342 0.5460 +104 55362 0.4280 +104 55922 0.6090 +104 79661 0.4520 +104 80781 0.5650 +104 83548 0.5120 +104 84057 0.5170 +104 84072 0.5180 +104 85236 0.4550 +104 91746 0.4170 +104 113179 0.5280 +104 115708 0.4200 +104 128312 0.4530 +104 134637 0.4830 +104 150280 0.4440 +104 158983 0.4530 +104 164045 0.4480 +104 255626 0.4500 +104 283677 0.6620 +104 286436 0.4530 +104 339834 0.4450 +104 388649 0.4440 +104 440689 0.4530 +104 101928601 0.7450 +104 114483833 0.4530 +105 339 0.4460 +105 978 0.4520 +105 2332 0.4130 +105 2556 0.4970 +105 2891 0.7510 +105 2898 0.4220 +105 2936 0.6850 +105 3178 0.6360 +105 3181 0.5540 +105 3185 0.4560 +105 3187 0.6570 +105 3188 0.6600 +105 3736 0.4210 +105 4154 0.4190 +105 4691 0.6790 +105 5799 0.5170 +105 5813 0.7450 +105 5905 0.5710 +105 6421 0.4320 +105 6426 0.5390 +105 6427 0.7240 +105 10189 0.7510 +105 10904 0.4370 +105 10930 0.4580 +105 25962 0.4740 +105 26999 0.4240 +105 29102 0.4570 +105 51582 0.5420 +105 51605 0.4450 +105 55006 0.4460 +105 55796 0.4040 +105 55966 0.5220 +105 64397 0.5730 +105 113179 0.6030 +105 115708 0.4490 +105 134637 0.5570 +105 203228 0.5690 +105 220988 0.7000 +107 108 0.7150 +107 109 0.9100 +107 111 0.5950 +107 112 0.5560 +107 113 0.7180 +107 114 0.9210 +107 115 0.7750 +107 136 0.5470 +107 150 0.6230 +107 151 0.5260 +107 152 0.6170 +107 154 0.4490 +107 207 0.7140 +107 208 0.6800 +107 318 0.9080 +107 348 0.4070 +107 551 0.5040 +107 554 0.5110 +107 808 0.9750 +107 810 0.9740 +107 814 0.7240 +107 815 0.7640 +107 816 0.7700 +107 887 0.4640 +107 953 0.6720 +107 954 0.9060 +107 956 0.6720 +107 1268 0.9120 +107 1385 0.6800 +107 1813 0.4630 +107 1815 0.5050 +107 2641 0.5600 +107 2642 0.5430 +107 2770 0.7980 +107 2771 0.7650 +107 2773 0.8520 +107 2774 0.9440 +107 2778 0.9790 +107 2781 0.6210 +107 2782 0.8860 +107 2783 0.8030 +107 2784 0.7080 +107 2785 0.6900 +107 2786 0.6960 +107 2787 0.6530 +107 2788 0.8100 +107 2790 0.6610 +107 2791 0.6770 +107 2792 0.7300 +107 2793 0.6700 +107 2977 0.4520 +107 3704 0.9010 +107 3747 0.4600 +107 3760 0.5690 +107 3762 0.4440 +107 3763 0.4660 +107 4337 0.8160 +107 4678 0.4220 +107 4830 0.6740 +107 4831 0.6630 +107 4832 0.6630 +107 4833 0.6630 +107 4862 0.5700 +107 4880 0.4160 +107 4988 0.4850 +107 5136 0.7540 +107 5137 0.7260 +107 5138 0.7680 +107 5139 0.7790 +107 5140 0.7730 +107 5141 0.7980 +107 5142 0.7880 +107 5143 0.7720 +107 5144 0.7810 +107 5145 0.7190 +107 5146 0.7190 +107 5147 0.6610 +107 5148 0.6870 +107 5149 0.6770 +107 5150 0.7190 +107 5151 0.6970 +107 5152 0.7270 +107 5153 0.7200 +107 5158 0.7240 +107 5167 0.6660 +107 5169 0.6800 +107 5313 0.6640 +107 5315 0.6620 +107 5566 0.9480 +107 5567 0.9490 +107 5568 0.9630 +107 5573 0.6530 +107 5575 0.6920 +107 5576 0.6700 +107 5577 0.7180 +107 5578 0.8010 +107 5579 0.7150 +107 5580 0.9150 +107 5582 0.7360 +107 6334 0.4040 +107 7884 0.6390 +107 8622 0.6840 +107 8654 0.7420 +107 8802 0.4250 +107 8912 0.4010 +107 8913 0.4830 +107 10000 0.6930 +107 10201 0.6600 +107 10411 0.9580 +107 10681 0.6980 +107 10846 0.7680 +107 11069 0.9460 +107 23236 0.6500 +107 23774 0.6430 +107 27115 0.7560 +107 29922 0.6740 +107 50940 0.8010 +107 51764 0.8400 +107 51806 0.9760 +107 54331 0.8190 +107 54832 0.4160 +107 55811 0.4680 +107 55970 0.6900 +107 59345 0.6830 +107 79948 0.6550 +107 84284 0.9030 +107 91860 0.9750 +107 94235 0.6530 +107 117579 0.5360 +107 148252 0.4350 +107 160851 0.4350 +107 163688 0.9750 +107 196883 0.5680 +107 221264 0.7130 +107 346562 0.5760 +107 377841 0.6720 +107 645369 0.4110 +107 654364 0.6630 +108 109 0.5750 +108 111 0.8910 +108 112 0.7810 +108 113 0.5250 +108 114 0.6020 +108 115 0.6580 +108 116 0.4960 +108 136 0.5910 +108 150 0.5390 +108 151 0.5050 +108 152 0.5650 +108 207 0.7080 +108 208 0.6710 +108 318 0.9030 +108 551 0.5110 +108 554 0.5160 +108 775 0.5590 +108 776 0.4820 +108 808 0.7450 +108 810 0.7430 +108 814 0.7170 +108 815 0.7540 +108 816 0.7330 +108 953 0.6670 +108 954 0.9050 +108 956 0.6740 +108 1268 0.9090 +108 1903 0.4260 +108 2534 0.4490 +108 2641 0.6810 +108 2642 0.5280 +108 2770 0.7800 +108 2771 0.7590 +108 2773 0.7730 +108 2774 0.9680 +108 2775 0.4470 +108 2778 0.9780 +108 2781 0.6050 +108 2782 0.7460 +108 2783 0.6930 +108 2784 0.7030 +108 2785 0.7500 +108 2786 0.7540 +108 2787 0.6690 +108 2788 0.7280 +108 2790 0.7440 +108 2791 0.6880 +108 2792 0.6580 +108 2793 0.6670 +108 2911 0.5060 +108 2913 0.4790 +108 3704 0.9010 +108 4337 0.8110 +108 4830 0.6850 +108 4831 0.6630 +108 4832 0.6630 +108 4833 0.6620 +108 4880 0.4140 +108 5136 0.6900 +108 5137 0.7030 +108 5138 0.7200 +108 5139 0.7680 +108 5140 0.7420 +108 5141 0.7680 +108 5142 0.7730 +108 5143 0.7480 +108 5144 0.7460 +108 5145 0.7220 +108 5146 0.7190 +108 5147 0.6670 +108 5148 0.7040 +108 5149 0.6500 +108 5150 0.7410 +108 5151 0.6890 +108 5152 0.7200 +108 5153 0.6980 +108 5158 0.7270 +108 5167 0.6610 +108 5169 0.6610 +108 5313 0.6750 +108 5315 0.6610 +108 5443 0.5080 +108 5566 0.8590 +108 5567 0.7810 +108 5568 0.7640 +108 5573 0.6690 +108 5575 0.6310 +108 5576 0.6080 +108 5577 0.6400 +108 5578 0.7130 +108 5579 0.7680 +108 5580 0.9100 +108 5582 0.7260 +108 5594 0.4680 +108 5600 0.4520 +108 5997 0.6740 +108 7157 0.4470 +108 7299 0.4100 +108 8622 0.6940 +108 8654 0.7280 +108 8801 0.4870 +108 9495 0.4960 +108 9881 0.4060 +108 10000 0.7160 +108 10201 0.6850 +108 10411 0.9200 +108 10681 0.7140 +108 10723 0.4070 +108 10846 0.7290 +108 11044 0.4750 +108 11069 0.9280 +108 23236 0.5000 +108 26011 0.4290 +108 27115 0.7480 +108 29922 0.6600 +108 50834 0.4220 +108 50940 0.7340 +108 51764 0.6720 +108 51806 0.7370 +108 54331 0.8110 +108 55970 0.7090 +108 59345 0.7280 +108 79072 0.4780 +108 83857 0.6630 +108 84284 0.9030 +108 91860 0.7380 +108 94235 0.6700 +108 117579 0.5110 +108 163688 0.7180 +108 196883 0.5220 +108 221264 0.7130 +108 346562 0.5760 +108 377841 0.6670 +108 654364 0.6630 +109 111 0.5850 +109 112 0.9190 +109 113 0.5800 +109 114 0.9140 +109 115 0.9330 +109 136 0.5470 +109 150 0.6850 +109 151 0.5040 +109 152 0.5340 +109 207 0.7230 +109 208 0.6710 +109 318 0.9030 +109 551 0.5700 +109 554 0.5960 +109 585 0.4360 +109 808 0.9450 +109 810 0.9430 +109 814 0.7040 +109 815 0.9290 +109 816 0.9220 +109 953 0.6690 +109 954 0.9020 +109 956 0.6580 +109 1132 0.4240 +109 1179 0.4330 +109 1258 0.7500 +109 1260 0.9410 +109 1261 0.4420 +109 1262 0.8150 +109 1268 0.9060 +109 1606 0.4350 +109 2596 0.4190 +109 2641 0.6800 +109 2642 0.5150 +109 2770 0.7680 +109 2771 0.7530 +109 2773 0.7600 +109 2774 0.9770 +109 2775 0.6060 +109 2778 0.9480 +109 2781 0.5930 +109 2782 0.9350 +109 2783 0.7030 +109 2784 0.7040 +109 2785 0.7500 +109 2786 0.6970 +109 2787 0.6750 +109 2788 0.9020 +109 2790 0.7330 +109 2791 0.6540 +109 2792 0.6530 +109 2793 0.7390 +109 2847 0.4930 +109 3362 0.4230 +109 3704 0.9030 +109 3784 0.9130 +109 4160 0.6900 +109 4337 0.8110 +109 4830 0.7060 +109 4831 0.7070 +109 4832 0.7460 +109 4833 0.6690 +109 4852 0.4380 +109 4880 0.4080 +109 4887 0.4040 +109 4975 0.7150 +109 4991 0.6910 +109 4993 0.5470 +109 4994 0.6070 +109 5116 0.4080 +109 5136 0.7100 +109 5137 0.8000 +109 5138 0.7980 +109 5139 0.8090 +109 5140 0.7930 +109 5141 0.8220 +109 5142 0.8630 +109 5143 0.7700 +109 5144 0.7630 +109 5145 0.7740 +109 5146 0.7510 +109 5147 0.7360 +109 5148 0.6870 +109 5149 0.6600 +109 5150 0.7540 +109 5151 0.7220 +109 5152 0.7280 +109 5153 0.7090 +109 5158 0.7540 +109 5167 0.6710 +109 5169 0.6620 +109 5313 0.6610 +109 5315 0.6690 +109 5443 0.5540 +109 5566 0.9680 +109 5567 0.9470 +109 5568 0.9460 +109 5573 0.6620 +109 5575 0.6350 +109 5576 0.6630 +109 5577 0.6810 +109 5578 0.6810 +109 5579 0.6640 +109 5580 0.9050 +109 5582 0.6850 +109 5594 0.4870 +109 5595 0.5160 +109 5832 0.7630 +109 5997 0.9630 +109 6558 0.9140 +109 6753 0.6130 +109 8100 0.5200 +109 8383 0.5760 +109 8386 0.5860 +109 8387 0.5860 +109 8622 0.6810 +109 8654 0.8530 +109 9311 0.4710 +109 10000 0.6930 +109 10142 0.5280 +109 10201 0.6840 +109 10411 0.9310 +109 10486 0.4080 +109 10681 0.7010 +109 10846 0.7560 +109 10887 0.7660 +109 10888 0.7140 +109 10941 0.4020 +109 11069 0.9330 +109 23322 0.4180 +109 25970 0.4350 +109 26188 0.5040 +109 26211 0.5180 +109 26339 0.5260 +109 26531 0.5870 +109 26533 0.6200 +109 26538 0.6030 +109 26664 0.6080 +109 26692 0.5290 +109 26707 0.5550 +109 27115 0.7590 +109 27243 0.4450 +109 29922 0.6890 +109 50940 0.7470 +109 51086 0.4350 +109 51277 0.7560 +109 51764 0.9370 +109 51806 0.9420 +109 54331 0.6910 +109 54814 0.4580 +109 55811 0.4200 +109 55970 0.6650 +109 56656 0.5270 +109 57101 0.5600 +109 59345 0.6830 +109 60675 0.7190 +109 79172 0.4060 +109 79541 0.4190 +109 80256 0.4020 +109 81099 0.5040 +109 81285 0.7700 +109 83857 0.7140 +109 84063 0.4990 +109 84284 0.9060 +109 84432 0.7650 +109 89866 0.4800 +109 91860 0.9440 +109 94235 0.7120 +109 112609 0.4100 +109 117579 0.5010 +109 119682 0.5570 +109 120066 0.6020 +109 120793 0.6090 +109 122742 0.4990 +109 122748 0.5270 +109 124538 0.5040 +109 125958 0.5590 +109 127385 0.7440 +109 127623 0.5040 +109 128366 0.5050 +109 128367 0.5040 +109 128674 0.7550 +109 129787 0.4470 +109 132112 0.5150 +109 132789 0.4350 +109 138046 0.4070 +109 143503 0.7880 +109 163688 0.9400 +109 196883 0.6000 +109 200894 0.6160 +109 219436 0.5050 +109 219473 0.5270 +109 221264 0.7410 +109 282763 0.6100 +109 283093 0.5040 +109 283159 0.5040 +109 284433 0.5040 +109 284521 0.5650 +109 340980 0.5930 +109 341152 0.6270 +109 343169 0.5360 +109 343171 0.6290 +109 344892 0.5300 +109 346562 0.5980 +109 377841 0.6680 +109 388761 0.5050 +109 390038 0.5100 +109 390093 0.5840 +109 390174 0.5300 +109 390264 0.5370 +109 390265 0.5850 +109 390271 0.5040 +109 390598 0.4450 +109 391194 0.5040 +109 391196 0.5160 +109 391356 0.5080 +109 392138 0.5710 +109 401427 0.5830 +109 402317 0.6580 +109 442185 0.4990 +109 442186 0.6160 +109 442191 0.5050 +109 654364 0.7070 +109 100526835 0.4690 +111 112 0.9600 +111 113 0.8080 +111 114 0.7190 +111 115 0.8270 +111 135 0.7250 +111 136 0.7140 +111 150 0.7380 +111 151 0.5440 +111 152 0.5940 +111 153 0.6760 +111 154 0.5190 +111 186 0.4400 +111 207 0.7370 +111 208 0.7550 +111 318 0.9030 +111 344 0.4240 +111 501 0.4370 +111 551 0.5480 +111 554 0.6260 +111 775 0.7860 +111 808 0.8380 +111 810 0.8250 +111 814 0.7050 +111 815 0.7600 +111 816 0.7280 +111 857 0.4110 +111 859 0.7430 +111 953 0.6650 +111 954 0.9110 +111 956 0.7000 +111 1268 0.9220 +111 1607 0.9280 +111 1812 0.4380 +111 1813 0.4420 +111 2099 0.4250 +111 2596 0.5190 +111 2641 0.6270 +111 2642 0.7050 +111 2645 0.7360 +111 2646 0.6180 +111 2696 0.8280 +111 2740 0.6040 +111 2767 0.5320 +111 2770 0.9550 +111 2771 0.9330 +111 2773 0.9330 +111 2774 0.9750 +111 2775 0.7680 +111 2778 0.9810 +111 2781 0.6480 +111 2782 0.7500 +111 2783 0.7050 +111 2784 0.6930 +111 2785 0.7440 +111 2786 0.7370 +111 2787 0.7120 +111 2788 0.7850 +111 2790 0.7150 +111 2791 0.7130 +111 2792 0.6730 +111 2793 0.6870 +111 3087 0.5180 +111 3630 0.6270 +111 3704 0.9010 +111 3767 0.6260 +111 3784 0.4950 +111 4337 0.8200 +111 4544 0.9110 +111 4678 0.4350 +111 4830 0.6860 +111 4831 0.6860 +111 4832 0.6940 +111 4833 0.6660 +111 4880 0.4020 +111 5136 0.8020 +111 5137 0.8760 +111 5138 0.8470 +111 5139 0.8230 +111 5140 0.8050 +111 5141 0.8500 +111 5142 0.7970 +111 5143 0.9600 +111 5144 0.8160 +111 5145 0.7720 +111 5146 0.7500 +111 5147 0.6770 +111 5148 0.6940 +111 5149 0.6500 +111 5150 0.8040 +111 5151 0.7230 +111 5152 0.7540 +111 5153 0.8430 +111 5158 0.7590 +111 5167 0.7080 +111 5169 0.7120 +111 5311 0.9320 +111 5313 0.6770 +111 5315 0.6640 +111 5332 0.4940 +111 5516 0.5060 +111 5566 0.9830 +111 5567 0.9740 +111 5568 0.9730 +111 5573 0.6720 +111 5575 0.6500 +111 5576 0.6820 +111 5577 0.7810 +111 5578 0.8780 +111 5579 0.7080 +111 5580 0.9130 +111 5582 0.7220 +111 5595 0.4420 +111 5598 0.6000 +111 5607 0.5040 +111 5629 0.4350 +111 5997 0.6670 +111 6262 0.6080 +111 6288 0.4200 +111 6289 0.4120 +111 6373 0.4040 +111 6786 0.5130 +111 6833 0.5310 +111 6934 0.5700 +111 7249 0.4440 +111 7884 0.6810 +111 8165 0.4740 +111 8622 0.7400 +111 8654 0.7880 +111 8826 0.5230 +111 8872 0.4760 +111 9472 0.7070 +111 9495 0.9820 +111 10000 0.7090 +111 10142 0.6180 +111 10201 0.6600 +111 10411 0.9810 +111 10487 0.4060 +111 10681 0.7270 +111 10846 0.8680 +111 11069 0.9550 +111 11216 0.5290 +111 23077 0.5120 +111 23236 0.7090 +111 27115 0.7910 +111 29922 0.6600 +111 50940 0.7740 +111 51082 0.4780 +111 51764 0.7200 +111 51806 0.8250 +111 54331 0.8280 +111 54832 0.4200 +111 54901 0.7310 +111 55811 0.4330 +111 55970 0.6720 +111 57118 0.4010 +111 57818 0.7930 +111 57826 0.4590 +111 59345 0.7080 +111 83857 0.4320 +111 84152 0.5330 +111 84284 0.9080 +111 84327 0.4460 +111 91860 0.8270 +111 94235 0.6850 +111 112476 0.4650 +111 116985 0.4530 +111 117579 0.5090 +111 136259 0.4300 +111 163688 0.8180 +111 169026 0.5210 +111 169792 0.4880 +111 196883 0.8350 +111 221264 0.7620 +111 221895 0.4180 +111 346562 0.5760 +111 377841 0.6760 +111 388125 0.5830 +111 392636 0.6780 +111 654364 0.6680 +112 113 0.7470 +112 114 0.9120 +112 115 0.9580 +112 136 0.5690 +112 150 0.5290 +112 151 0.5370 +112 152 0.5360 +112 153 0.4270 +112 154 0.4830 +112 207 0.7480 +112 208 0.6780 +112 318 0.9030 +112 359 0.4520 +112 483 0.7630 +112 501 0.4070 +112 551 0.6270 +112 554 0.8230 +112 808 0.8250 +112 810 0.8250 +112 814 0.6880 +112 815 0.6890 +112 816 0.6930 +112 857 0.4150 +112 859 0.6170 +112 953 0.6640 +112 954 0.9060 +112 956 0.6580 +112 1080 0.4220 +112 1268 0.9060 +112 1879 0.4060 +112 1956 0.5070 +112 2641 0.6090 +112 2642 0.5490 +112 2740 0.5930 +112 2770 0.9360 +112 2771 0.9310 +112 2773 0.9290 +112 2774 0.7850 +112 2778 0.9700 +112 2781 0.5980 +112 2782 0.7000 +112 2783 0.6980 +112 2784 0.6830 +112 2785 0.6600 +112 2786 0.6660 +112 2787 0.6530 +112 2788 0.6990 +112 2790 0.6670 +112 2791 0.6780 +112 2792 0.6680 +112 2793 0.6570 +112 3704 0.9010 +112 3709 0.7400 +112 4286 0.5380 +112 4337 0.8180 +112 4830 0.6860 +112 4831 0.6860 +112 4832 0.6880 +112 4833 0.6630 +112 4846 0.4470 +112 4951 0.5140 +112 5136 0.7820 +112 5137 0.7790 +112 5138 0.7720 +112 5139 0.8160 +112 5140 0.7970 +112 5141 0.8470 +112 5142 0.7980 +112 5143 0.8290 +112 5144 0.8010 +112 5145 0.7540 +112 5146 0.7500 +112 5147 0.6990 +112 5148 0.6870 +112 5149 0.6500 +112 5150 0.8180 +112 5151 0.7380 +112 5152 0.7200 +112 5153 0.7980 +112 5158 0.7590 +112 5167 0.7000 +112 5169 0.7010 +112 5310 0.5290 +112 5311 0.4960 +112 5313 0.6690 +112 5315 0.6610 +112 5566 0.8610 +112 5567 0.8610 +112 5568 0.8610 +112 5573 0.6710 +112 5575 0.6600 +112 5576 0.6700 +112 5577 0.7340 +112 5578 0.6950 +112 5579 0.6720 +112 5580 0.9040 +112 5582 0.6800 +112 6505 0.7120 +112 6786 0.7900 +112 7099 0.4420 +112 8165 0.4370 +112 8622 0.6990 +112 8654 0.7970 +112 8826 0.5230 +112 9495 0.9090 +112 9600 0.4040 +112 9732 0.4090 +112 10000 0.6850 +112 10201 0.6600 +112 10411 0.9510 +112 10681 0.7110 +112 10846 0.7720 +112 11069 0.9710 +112 27115 0.7340 +112 29922 0.6600 +112 50940 0.7550 +112 51082 0.5420 +112 51764 0.6700 +112 51806 0.8250 +112 54331 0.6530 +112 55591 0.4600 +112 55811 0.4590 +112 55970 0.6980 +112 59345 0.6880 +112 84284 0.9080 +112 91860 0.8270 +112 94235 0.6540 +112 117579 0.5010 +112 163688 0.8180 +112 196883 0.9490 +112 221264 0.7550 +112 346562 0.5760 +112 375611 0.4060 +112 377841 0.6750 +112 400961 0.7630 +112 654231 0.4600 +112 654364 0.6680 +113 114 0.5840 +113 115 0.7490 +113 136 0.5720 +113 150 0.6360 +113 151 0.5040 +113 152 0.5130 +113 207 0.7120 +113 208 0.6810 +113 318 0.9030 +113 551 0.5040 +113 554 0.5040 +113 808 0.7670 +113 810 0.7650 +113 814 0.7010 +113 815 0.7070 +113 816 0.7090 +113 953 0.7190 +113 954 0.9080 +113 956 0.7160 +113 1268 0.9070 +113 1814 0.4350 +113 2641 0.5650 +113 2642 0.5240 +113 2770 0.8240 +113 2771 0.7570 +113 2773 0.7390 +113 2774 0.9600 +113 2778 0.9510 +113 2781 0.6050 +113 2782 0.8210 +113 2783 0.8000 +113 2784 0.7220 +113 2785 0.6760 +113 2786 0.7090 +113 2787 0.6690 +113 2788 0.8150 +113 2790 0.6960 +113 2791 0.6870 +113 2792 0.6580 +113 2793 0.7010 +113 3704 0.9020 +113 4337 0.8110 +113 4830 0.6630 +113 4831 0.6630 +113 4832 0.6830 +113 4833 0.6620 +113 4880 0.4370 +113 5136 0.7130 +113 5137 0.7220 +113 5138 0.7620 +113 5139 0.8100 +113 5140 0.7970 +113 5141 0.8200 +113 5142 0.8410 +113 5143 0.7470 +113 5144 0.7980 +113 5145 0.7580 +113 5146 0.7190 +113 5147 0.6850 +113 5148 0.6870 +113 5149 0.6780 +113 5150 0.7920 +113 5151 0.7280 +113 5152 0.7200 +113 5153 0.7140 +113 5158 0.7200 +113 5167 0.6660 +113 5169 0.6610 +113 5313 0.6660 +113 5315 0.6610 +113 5566 0.7980 +113 5567 0.8000 +113 5568 0.7960 +113 5573 0.6080 +113 5575 0.6420 +113 5576 0.6700 +113 5577 0.7190 +113 5578 0.7070 +113 5579 0.7400 +113 5580 0.9180 +113 5582 0.7130 +113 6472 0.4140 +113 6524 0.9030 +113 6530 0.8400 +113 8622 0.7030 +113 8654 0.7590 +113 9465 0.4180 +113 10000 0.6880 +113 10201 0.6730 +113 10411 0.9290 +113 10681 0.6990 +113 10846 0.7560 +113 11069 0.9540 +113 23236 0.4290 +113 25999 0.4160 +113 27115 0.8400 +113 29117 0.4940 +113 29922 0.6780 +113 50940 0.7270 +113 51082 0.4320 +113 51764 0.7420 +113 51806 0.8300 +113 54331 0.6940 +113 54793 0.4220 +113 55677 0.4080 +113 55811 0.4290 +113 55970 0.6660 +113 59345 0.7530 +113 84284 0.9030 +113 85407 0.4740 +113 91860 0.7810 +113 94235 0.6960 +113 117579 0.6450 +113 122616 0.4570 +113 163688 0.7560 +113 196883 0.7800 +113 201501 0.4260 +113 221264 0.7380 +113 222229 0.4110 +113 340895 0.4120 +113 346562 0.5760 +113 377841 0.6770 +113 654364 0.6970 +114 115 0.6750 +114 136 0.5470 +114 147 0.4400 +114 150 0.6890 +114 151 0.5040 +114 152 0.5670 +114 153 0.4930 +114 207 0.7230 +114 208 0.6710 +114 318 0.9030 +114 551 0.5240 +114 554 0.5500 +114 627 0.5330 +114 808 0.9950 +114 810 0.9930 +114 814 0.8240 +114 815 0.7700 +114 816 0.7550 +114 817 0.5720 +114 818 0.8160 +114 857 0.4650 +114 953 0.6710 +114 954 0.9100 +114 956 0.6780 +114 1132 0.4080 +114 1179 0.4290 +114 1260 0.6150 +114 1262 0.4940 +114 1268 0.9190 +114 1385 0.7060 +114 1612 0.4150 +114 2641 0.6220 +114 2642 0.5270 +114 2740 0.6490 +114 2770 0.7910 +114 2771 0.7720 +114 2773 0.8770 +114 2774 0.9640 +114 2775 0.4290 +114 2778 0.9490 +114 2781 0.6450 +114 2782 0.7650 +114 2783 0.7150 +114 2784 0.7150 +114 2785 0.7470 +114 2786 0.7130 +114 2787 0.6840 +114 2788 0.6930 +114 2790 0.7280 +114 2791 0.6610 +114 2792 0.6960 +114 2793 0.7240 +114 2893 0.5160 +114 2895 0.4930 +114 2902 0.6130 +114 2903 0.8550 +114 2904 0.7850 +114 2906 0.4080 +114 2913 0.8510 +114 3358 0.4470 +114 3704 0.9120 +114 4160 0.6550 +114 4337 0.8160 +114 4830 0.6630 +114 4831 0.6630 +114 4832 0.6730 +114 4833 0.6620 +114 4880 0.4130 +114 4975 0.4050 +114 5136 0.7680 +114 5137 0.8010 +114 5138 0.7990 +114 5139 0.8300 +114 5140 0.8000 +114 5141 0.8380 +114 5142 0.8780 +114 5143 0.7790 +114 5144 0.7880 +114 5145 0.7370 +114 5146 0.7200 +114 5147 0.6790 +114 5148 0.7140 +114 5149 0.6570 +114 5150 0.7990 +114 5151 0.7300 +114 5152 0.7340 +114 5153 0.7410 +114 5158 0.7190 +114 5167 0.6710 +114 5169 0.6610 +114 5313 0.6770 +114 5315 0.7540 +114 5443 0.5350 +114 5566 0.9710 +114 5567 0.9550 +114 5568 0.9820 +114 5573 0.6820 +114 5575 0.6780 +114 5576 0.6830 +114 5577 0.7280 +114 5578 0.9100 +114 5579 0.6870 +114 5580 0.9060 +114 5582 0.7360 +114 5832 0.6210 +114 5860 0.4290 +114 5877 0.4220 +114 6262 0.5800 +114 6718 0.4440 +114 6786 0.5640 +114 7092 0.4020 +114 7432 0.4370 +114 8573 0.4070 +114 8622 0.7050 +114 8654 0.8630 +114 8826 0.5230 +114 9465 0.5100 +114 9495 0.7420 +114 10000 0.7200 +114 10201 0.6600 +114 10399 0.4070 +114 10411 0.9480 +114 10681 0.6870 +114 10846 0.7900 +114 10887 0.6500 +114 10888 0.5520 +114 11069 0.9710 +114 23017 0.4440 +114 23774 0.5450 +114 27115 0.8340 +114 29922 0.6690 +114 50940 0.7660 +114 51082 0.5130 +114 51086 0.4470 +114 51277 0.7450 +114 51764 0.7850 +114 51806 0.9930 +114 54331 0.7120 +114 54814 0.4090 +114 55811 0.4890 +114 55970 0.7040 +114 57576 0.4550 +114 59284 0.4330 +114 59345 0.6900 +114 60675 0.5480 +114 84284 0.9030 +114 84432 0.6480 +114 84876 0.6150 +114 89866 0.4480 +114 91860 0.9930 +114 94235 0.7050 +114 117579 0.5190 +114 128674 0.6030 +114 129787 0.4310 +114 132789 0.4180 +114 163688 0.9920 +114 196883 0.9450 +114 221264 0.7280 +114 253559 0.4130 +114 346562 0.6140 +114 377841 0.6710 +114 654364 0.6850 +114 100526835 0.4690 +115 136 0.5840 +115 150 0.5230 +115 151 0.5140 +115 152 0.5230 +115 154 0.7510 +115 207 0.7060 +115 208 0.6820 +115 318 0.9120 +115 335 0.4240 +115 374 0.4330 +115 551 0.4990 +115 554 0.5430 +115 776 0.4340 +115 808 0.7880 +115 810 0.7850 +115 814 0.6930 +115 815 0.7110 +115 816 0.7200 +115 953 0.6850 +115 954 0.9010 +115 956 0.6630 +115 1268 0.9000 +115 2641 0.6920 +115 2642 0.5100 +115 2767 0.5870 +115 2770 0.7440 +115 2771 0.8750 +115 2773 0.7510 +115 2774 0.9860 +115 2778 0.9860 +115 2781 0.5970 +115 2782 0.7380 +115 2783 0.7160 +115 2784 0.7370 +115 2785 0.6500 +115 2786 0.7130 +115 2787 0.6700 +115 2788 0.8060 +115 2790 0.7450 +115 2791 0.6940 +115 2792 0.6500 +115 2793 0.6560 +115 2863 0.4330 +115 2911 0.4110 +115 3704 0.9000 +115 3753 0.5180 +115 3784 0.9500 +115 4160 0.4610 +115 4337 0.8130 +115 4830 0.6600 +115 4831 0.6600 +115 4832 0.6760 +115 4833 0.6600 +115 5136 0.6920 +115 5137 0.7230 +115 5138 0.7500 +115 5139 0.7770 +115 5140 0.8220 +115 5141 0.8300 +115 5142 0.7890 +115 5143 0.7790 +115 5144 0.8060 +115 5145 0.7370 +115 5146 0.7170 +115 5147 0.6610 +115 5148 0.7000 +115 5149 0.6640 +115 5150 0.7880 +115 5151 0.7210 +115 5152 0.7310 +115 5153 0.7080 +115 5158 0.7170 +115 5167 0.7000 +115 5169 0.6610 +115 5313 0.6610 +115 5315 0.6610 +115 5566 0.9500 +115 5567 0.9520 +115 5568 0.9500 +115 5573 0.7100 +115 5575 0.6990 +115 5576 0.7310 +115 5577 0.7550 +115 5578 0.7300 +115 5579 0.7190 +115 5580 0.9120 +115 5581 0.4810 +115 5582 0.7230 +115 5594 0.4710 +115 5600 0.4030 +115 6558 0.9070 +115 6750 0.6550 +115 8622 0.6980 +115 8654 0.7620 +115 9495 0.4140 +115 10000 0.6840 +115 10142 0.6600 +115 10201 0.6600 +115 10411 0.9350 +115 10681 0.7160 +115 10846 0.7180 +115 11069 0.9400 +115 23236 0.4430 +115 27115 0.7620 +115 29922 0.6600 +115 50940 0.7470 +115 51082 0.4180 +115 51764 0.6640 +115 51806 0.7850 +115 54331 0.7190 +115 55811 0.4870 +115 55970 0.8190 +115 59345 0.7430 +115 84284 0.9020 +115 91860 0.7760 +115 94235 0.6610 +115 117579 0.4990 +115 163688 0.7760 +115 196883 0.7170 +115 221264 0.7330 +115 225689 0.7430 +115 346562 0.5880 +115 377841 0.6550 +115 654364 0.6600 +116 133 0.5930 +116 135 0.9120 +116 136 0.4160 +116 153 0.9160 +116 181 0.4570 +116 481 0.4210 +116 551 0.5500 +116 627 0.5950 +116 775 0.4350 +116 796 0.6010 +116 797 0.6210 +116 885 0.6600 +116 1081 0.4810 +116 1207 0.4200 +116 1385 0.5650 +116 1392 0.7940 +116 1394 0.6920 +116 1395 0.6050 +116 1579 0.4240 +116 1812 0.9210 +116 1816 0.9090 +116 2247 0.4690 +116 2353 0.5210 +116 2488 0.6580 +116 2492 0.9290 +116 2596 0.5180 +116 2641 0.8360 +116 2642 0.6650 +116 2668 0.4220 +116 2691 0.9080 +116 2692 0.7860 +116 2695 0.6550 +116 2696 0.9560 +116 2740 0.9490 +116 2778 0.9060 +116 2782 0.8980 +116 2783 0.5090 +116 2784 0.7080 +116 2785 0.5730 +116 2786 0.5340 +116 2787 0.5070 +116 2788 0.5160 +116 2790 0.5070 +116 2791 0.5070 +116 2792 0.5070 +116 2793 0.5070 +116 2796 0.4750 +116 2798 0.4120 +116 2922 0.5870 +116 3060 0.5020 +116 3351 0.4210 +116 3362 0.9150 +116 3375 0.6180 +116 3630 0.6630 +116 3640 0.4710 +116 3953 0.4600 +116 3972 0.5400 +116 3973 0.9060 +116 4158 0.9120 +116 4160 0.4070 +116 4753 0.4100 +116 4803 0.5110 +116 4852 0.7070 +116 4881 0.9140 +116 4914 0.6500 +116 4915 0.6840 +116 4922 0.5270 +116 4924 0.4220 +116 5020 0.5050 +116 5173 0.4760 +116 5179 0.4630 +116 5325 0.7760 +116 5354 0.4120 +116 5443 0.7340 +116 5449 0.4570 +116 5566 0.6220 +116 5567 0.6290 +116 5568 0.6320 +116 5578 0.4220 +116 5617 0.4050 +116 5732 0.9000 +116 5740 0.4460 +116 5741 0.7220 +116 5744 0.5210 +116 5745 0.5770 +116 6019 0.4600 +116 6343 0.9570 +116 6344 0.9060 +116 6616 0.4370 +116 6714 0.5980 +116 6750 0.6570 +116 6788 0.6070 +116 6789 0.6230 +116 6863 0.7220 +116 7054 0.5170 +116 7200 0.5320 +116 7224 0.4280 +116 7252 0.4780 +116 7253 0.9140 +116 7349 0.4670 +116 7432 0.7320 +116 7433 0.9990 +116 7434 0.9990 +116 7442 0.4230 +116 7837 0.4520 +116 7857 0.4940 +116 8870 0.7060 +116 9340 0.5940 +116 9607 0.5510 +116 9648 0.4200 +116 9677 0.7000 +116 10203 0.4660 +116 10266 0.4240 +116 10267 0.5470 +116 10268 0.5230 +116 10411 0.4240 +116 10681 0.4990 +116 11069 0.4570 +116 23262 0.7890 +116 23394 0.4160 +116 26515 0.4870 +116 27098 0.4040 +116 27344 0.5450 +116 51083 0.6740 +116 51320 0.4240 +116 51738 0.4890 +116 51764 0.5620 +116 54331 0.9010 +116 55970 0.5070 +116 57084 0.5860 +116 57105 0.4990 +116 57628 0.4660 +116 59345 0.5490 +116 60485 0.6220 +116 79924 0.4940 +116 93986 0.4620 +116 94233 0.5650 +116 94235 0.5070 +116 113091 0.5200 +116 114815 0.4040 +116 116448 0.4460 +116 117579 0.5000 +116 122042 0.4140 +116 139760 0.9060 +116 140679 0.4060 +116 147381 0.4390 +116 152330 0.4740 +116 347148 0.4140 +116 594857 0.6010 +116 104909134 0.6440 +118 119 0.9920 +118 120 0.9810 +118 152 0.4360 +118 183 0.4500 +118 185 0.4760 +118 286 0.9860 +118 287 0.9880 +118 288 0.9830 +118 387 0.4400 +118 481 0.4870 +118 629 0.4080 +118 667 0.4190 +118 808 0.8170 +118 810 0.8440 +118 822 0.7410 +118 829 0.6820 +118 830 0.7300 +118 832 0.6600 +118 836 0.7840 +118 1072 0.4520 +118 1073 0.4050 +118 1173 0.5640 +118 1487 0.5980 +118 1577 0.5310 +118 1579 0.5350 +118 1585 0.6040 +118 1636 0.7990 +118 1889 0.4180 +118 2023 0.4230 +118 2035 0.9940 +118 2038 0.5400 +118 2039 0.9930 +118 2203 0.5260 +118 2355 0.4320 +118 2596 0.4810 +118 2597 0.7110 +118 2634 0.6130 +118 2784 0.7900 +118 2821 0.4420 +118 2868 0.4310 +118 2885 0.4070 +118 2993 0.6370 +118 2995 0.8960 +118 3779 0.5700 +118 4023 0.4660 +118 4082 0.7600 +118 4478 0.6800 +118 4507 0.5730 +118 4524 0.4740 +118 4548 0.5870 +118 4659 0.4910 +118 4860 0.5730 +118 5211 0.4510 +118 5213 0.4450 +118 5214 0.4400 +118 5226 0.4850 +118 5319 0.4350 +118 5578 0.4490 +118 5580 0.4670 +118 5740 0.5730 +118 5832 0.4480 +118 5962 0.4950 +118 5972 0.7640 +118 6093 0.4100 +118 6513 0.7660 +118 6521 0.4380 +118 6709 0.6900 +118 6710 0.6640 +118 6711 0.7160 +118 6712 0.4440 +118 6720 0.5170 +118 6863 0.4610 +118 7086 0.4960 +118 7111 0.9730 +118 7167 0.7430 +118 7170 0.4730 +118 7430 0.6750 +118 7494 0.7500 +118 8277 0.4920 +118 8789 0.5260 +118 8801 0.4460 +118 9563 0.4200 +118 9942 0.7930 +118 22937 0.5720 +118 25953 0.4150 +118 26330 0.4460 +118 29765 0.9690 +118 29766 0.9550 +118 29767 0.9550 +118 51320 0.4950 +118 51752 0.5080 +118 51806 0.8450 +118 54662 0.4090 +118 55211 0.6220 +118 55256 0.6030 +118 57469 0.4610 +118 57731 0.4610 +118 58478 0.7190 +118 65108 0.4510 +118 65125 0.5240 +118 79692 0.4780 +118 83440 0.5020 +118 84076 0.4920 +118 84245 0.7960 +118 91860 0.8420 +118 93661 0.5400 +118 117283 0.5760 +118 129831 0.4850 +118 136319 0.7560 +118 137872 0.4640 +118 147463 0.8110 +118 163688 0.8420 +118 283160 0.4390 +119 120 0.7740 +119 286 0.9790 +119 287 0.9790 +119 288 0.9600 +119 808 0.7980 +119 810 0.8070 +119 822 0.7440 +119 829 0.6910 +119 830 0.6960 +119 832 0.5530 +119 1072 0.4290 +119 1073 0.4230 +119 1173 0.5340 +119 2023 0.4740 +119 2035 0.9930 +119 2038 0.6250 +119 2039 0.9960 +119 2203 0.5260 +119 2534 0.4920 +119 2596 0.5390 +119 2597 0.7060 +119 2821 0.4540 +119 2993 0.7100 +119 2995 0.9020 +119 3792 0.4360 +119 4082 0.7980 +119 4478 0.5000 +119 4507 0.5830 +119 4659 0.4840 +119 4860 0.5740 +119 5211 0.4400 +119 5213 0.4420 +119 5214 0.4400 +119 5226 0.4850 +119 5832 0.4480 +119 5962 0.5170 +119 5972 0.6230 +119 6005 0.5380 +119 6093 0.7120 +119 6513 0.6530 +119 6521 0.5300 +119 6708 0.4530 +119 6709 0.4410 +119 6710 0.5150 +119 6711 0.5450 +119 6712 0.4920 +119 6863 0.4740 +119 7037 0.4290 +119 7086 0.4920 +119 7111 0.9480 +119 7167 0.7340 +119 7430 0.4890 +119 8277 0.4920 +119 8291 0.4930 +119 8789 0.5260 +119 9475 0.6410 +119 9563 0.4150 +119 9942 0.7930 +119 10321 0.4720 +119 22895 0.6660 +119 23230 0.7060 +119 26330 0.4460 +119 29765 0.9520 +119 29766 0.9440 +119 29767 0.9440 +119 50619 0.4080 +119 51806 0.8060 +119 55211 0.4580 +119 55256 0.5930 +119 57469 0.4700 +119 57731 0.5290 +119 58478 0.7190 +119 65108 0.4140 +119 84076 0.4920 +119 84245 0.7960 +119 91860 0.7990 +119 93661 0.5400 +119 117283 0.5880 +119 126133 0.4180 +119 129831 0.4850 +119 136319 0.7390 +119 137872 0.4620 +119 147463 0.7860 +119 163688 0.7990 +119 221938 0.5270 +120 286 0.9840 +120 287 0.9860 +120 288 0.9790 +120 335 0.4430 +120 348 0.4020 +120 387 0.4480 +120 392 0.4490 +120 808 0.8860 +120 810 0.9130 +120 830 0.4460 +120 832 0.4830 +120 857 0.7010 +120 1072 0.4050 +120 1073 0.4070 +120 1173 0.4800 +120 1627 0.4430 +120 1662 0.6250 +120 1729 0.4380 +120 1730 0.4130 +120 2023 0.4850 +120 2035 0.9930 +120 2038 0.5270 +120 2039 0.9930 +120 2040 0.5610 +120 2203 0.5260 +120 2596 0.4850 +120 2597 0.7090 +120 2634 0.5790 +120 2817 0.4430 +120 2821 0.4420 +120 2993 0.6330 +120 2995 0.8860 +120 3205 0.4020 +120 3229 0.5200 +120 3845 0.4150 +120 4001 0.4160 +120 4082 0.7600 +120 4478 0.5010 +120 4507 0.5860 +120 4659 0.5090 +120 4860 0.5730 +120 4928 0.6170 +120 5093 0.4020 +120 5211 0.4400 +120 5213 0.4410 +120 5214 0.4410 +120 5226 0.4850 +120 5396 0.4970 +120 5832 0.4600 +120 5910 0.6970 +120 5962 0.5070 +120 5972 0.5570 +120 6296 0.4130 +120 6513 0.6420 +120 6521 0.4110 +120 6559 0.5080 +120 6709 0.4070 +120 6711 0.5350 +120 6712 0.4510 +120 6863 0.4670 +120 7086 0.4930 +120 7111 0.9390 +120 7112 0.4080 +120 7167 0.7340 +120 7430 0.5040 +120 7511 0.6850 +120 7879 0.4160 +120 8021 0.4200 +120 8170 0.4250 +120 8277 0.4920 +120 8773 0.4350 +120 8776 0.4260 +120 8789 0.5260 +120 9341 0.4080 +120 9497 0.4390 +120 9590 0.4660 +120 9942 0.7930 +120 10160 0.4020 +120 10321 0.5960 +120 10409 0.4100 +120 11168 0.6000 +120 23344 0.4350 +120 26040 0.5590 +120 26049 0.4110 +120 26092 0.4050 +120 26173 0.4470 +120 26330 0.4460 +120 29765 0.9460 +120 29766 0.9390 +120 29767 0.9370 +120 29984 0.5620 +120 51806 0.9130 +120 54509 0.5500 +120 54904 0.5030 +120 55240 0.4120 +120 55256 0.5860 +120 55971 0.4320 +120 57469 0.4460 +120 57731 0.4470 +120 58478 0.7210 +120 64324 0.4780 +120 65108 0.4630 +120 65124 0.4060 +120 79142 0.5080 +120 80115 0.4030 +120 80153 0.4250 +120 81624 0.4610 +120 81839 0.4150 +120 83606 0.4320 +120 84076 0.4920 +120 84245 0.7960 +120 91860 0.9130 +120 117283 0.5810 +120 129831 0.4850 +120 137872 0.4630 +120 144402 0.4090 +120 147463 0.7800 +120 163688 0.9130 +120 168507 0.4180 +120 286336 0.6100 +120 445582 0.4460 +123 207 0.4210 +123 213 0.4280 +123 335 0.4150 +123 338 0.6180 +123 348 0.4750 +123 550 0.4660 +123 595 0.4860 +123 696 0.9720 +123 821 0.4180 +123 910 0.4260 +123 948 0.7120 +123 949 0.6820 +123 950 0.6800 +123 1050 0.4750 +123 1068 0.4440 +123 1080 0.4280 +123 1149 0.5720 +123 1374 0.6180 +123 1375 0.4460 +123 1376 0.4730 +123 1387 0.4140 +123 1432 0.4030 +123 1576 0.4570 +123 1855 0.4640 +123 2034 0.4030 +123 2167 0.6030 +123 2168 0.6580 +123 2170 0.6030 +123 2171 0.5030 +123 2180 0.7580 +123 2181 0.5630 +123 2194 0.6610 +123 2597 0.5010 +123 2670 0.5600 +123 2806 0.6670 +123 2908 0.4570 +123 2982 0.4400 +123 3043 0.4600 +123 3156 0.4380 +123 3158 0.4070 +123 3308 0.4690 +123 3312 0.9690 +123 3320 0.6180 +123 3326 0.6160 +123 3363 0.4120 +123 3553 0.5960 +123 3569 0.4030 +123 3630 0.5620 +123 3920 0.6470 +123 3952 0.5000 +123 3988 0.4720 +123 3991 0.8800 +123 4023 0.6100 +123 4240 0.5960 +123 4547 0.4850 +123 5105 0.6080 +123 5116 0.4130 +123 5130 0.4440 +123 5132 0.7660 +123 5166 0.5570 +123 5465 0.8170 +123 5467 0.5800 +123 5468 0.7270 +123 5469 0.4570 +123 5563 0.5570 +123 5564 0.4480 +123 5565 0.4330 +123 5571 0.4750 +123 5599 0.4240 +123 6010 0.5880 +123 6035 0.4750 +123 6103 0.6570 +123 6121 0.5330 +123 6233 0.4390 +123 6256 0.5740 +123 6295 0.4280 +123 6319 0.6190 +123 6392 0.4180 +123 6513 0.4210 +123 6517 0.4950 +123 6604 0.4640 +123 6720 0.7200 +123 6721 0.4990 +123 6811 0.5020 +123 6907 0.4790 +123 7097 0.5880 +123 7251 0.4510 +123 7311 0.4440 +123 7314 0.4380 +123 7316 0.4530 +123 7350 0.4640 +123 7498 0.9040 +123 8100 0.4480 +123 8542 0.4160 +123 8648 0.4660 +123 8674 0.5040 +123 8694 0.6950 +123 8773 0.5720 +123 8878 0.5870 +123 9308 0.4390 +123 9370 0.5670 +123 10013 0.5180 +123 10044 0.5740 +123 10226 0.6510 +123 10384 0.9170 +123 10385 0.9590 +123 10498 0.4360 +123 10499 0.4670 +123 10525 0.4120 +123 10555 0.4540 +123 10602 0.5430 +123 10640 0.4260 +123 10891 0.4690 +123 10917 0.9220 +123 10999 0.4130 +123 11001 0.5980 +123 11027 0.4930 +123 11118 0.9130 +123 11119 0.9100 +123 11120 0.9560 +123 11151 0.5560 +123 11315 0.4290 +123 11343 0.5690 +123 22931 0.7200 +123 23054 0.4340 +123 23175 0.5290 +123 23433 0.4740 +123 25978 0.4660 +123 26580 0.4720 +123 27141 0.5210 +123 27243 0.4220 +123 29923 0.5300 +123 50486 0.4570 +123 51085 0.4300 +123 51099 0.8980 +123 51129 0.7520 +123 51160 0.4160 +123 51271 0.4100 +123 51422 0.4490 +123 51652 0.4200 +123 51703 0.4360 +123 53632 0.4350 +123 57104 0.8540 +123 57678 0.5060 +123 59345 0.4220 +123 63924 0.6860 +123 64083 0.4830 +123 79071 0.4590 +123 79718 0.4390 +123 79908 0.9170 +123 80205 0.4360 +123 80339 0.5270 +123 84649 0.6800 +123 84803 0.4070 +123 85441 0.4780 +123 91782 0.4060 +123 92421 0.4050 +123 93343 0.4050 +123 96764 0.4050 +123 114625 0.9230 +123 116255 0.4040 +123 126129 0.4060 +123 128486 0.5800 +123 128866 0.4090 +123 132949 0.4310 +123 137492 0.4030 +123 137964 0.5690 +123 143662 0.4480 +123 150379 0.4180 +123 153579 0.9560 +123 158833 0.4020 +123 161247 0.4220 +123 200894 0.4160 +123 728378 0.4880 +123 729359 0.6590 +124 125 0.9890 +124 126 0.9830 +124 127 0.6130 +124 130 0.7170 +124 131 0.5480 +124 216 0.9590 +124 217 0.9750 +124 218 0.8460 +124 219 0.8700 +124 220 0.8550 +124 221 0.8150 +124 222 0.8390 +124 223 0.8640 +124 224 0.8600 +124 316 0.9420 +124 501 0.8350 +124 551 0.9630 +124 1000 0.6390 +124 1121 0.4160 +124 1129 0.5060 +124 1178 0.5170 +124 1312 0.9130 +124 1571 0.9630 +124 1576 0.4190 +124 1592 0.9370 +124 2023 0.4120 +124 2098 0.8740 +124 2110 0.4070 +124 2559 0.4380 +124 2819 0.4360 +124 2934 0.4330 +124 2938 0.7460 +124 2939 0.7400 +124 2940 0.7300 +124 2941 0.7130 +124 2944 0.7500 +124 2946 0.7140 +124 2947 0.6980 +124 2948 0.7010 +124 2949 0.6840 +124 2950 0.8370 +124 3948 0.4760 +124 3960 0.5200 +124 4128 0.9330 +124 4129 0.9280 +124 4191 0.4500 +124 4257 0.7360 +124 4258 0.6850 +124 4259 0.7200 +124 5230 0.5040 +124 5726 0.4350 +124 5959 0.4850 +124 6652 0.4060 +124 7167 0.4480 +124 7263 0.4380 +124 7363 0.7010 +124 7364 0.6830 +124 7365 0.6870 +124 7366 0.7130 +124 7367 0.6990 +124 8228 0.9010 +124 8659 0.4600 +124 8694 0.9190 +124 8854 0.8320 +124 9227 0.9320 +124 9249 0.4030 +124 9369 0.4390 +124 9446 0.7000 +124 9563 0.5060 +124 10096 0.4410 +124 10606 0.5190 +124 10677 0.5940 +124 10720 0.6680 +124 10840 0.4620 +124 23240 0.4070 +124 26227 0.4370 +124 26873 0.4070 +124 27306 0.8440 +124 50833 0.5900 +124 51071 0.4890 +124 51705 0.4540 +124 53630 0.9190 +124 54490 0.6800 +124 54575 0.7090 +124 54576 0.7170 +124 54577 0.7100 +124 54578 0.7310 +124 54579 0.6780 +124 54600 0.6780 +124 54657 0.7330 +124 54658 0.7160 +124 54659 0.6790 +124 54884 0.9190 +124 55636 0.6020 +124 55811 0.4540 +124 55902 0.4430 +124 57016 0.4050 +124 57484 0.4010 +124 57591 0.4870 +124 64577 0.4900 +124 79799 0.6890 +124 92483 0.5220 +124 119391 0.6910 +124 137872 0.7670 +124 157506 0.5480 +124 158835 0.9080 +124 160287 0.5160 +124 201798 0.4170 +124 201895 0.4070 +124 220074 0.9060 +124 221357 0.7100 +124 255239 0.5720 +124 339761 0.9030 +124 574537 0.6780 +124 653689 0.7190 +125 126 0.9860 +125 127 0.5680 +125 130 0.7090 +125 131 0.5430 +125 189 0.4620 +125 216 0.9490 +125 217 0.9950 +125 218 0.8570 +125 219 0.8890 +125 220 0.8240 +125 221 0.8190 +125 222 0.8360 +125 223 0.8490 +125 224 0.8610 +125 316 0.9520 +125 501 0.8300 +125 551 0.9690 +125 730 0.4410 +125 1121 0.4300 +125 1129 0.6140 +125 1136 0.4490 +125 1138 0.5780 +125 1312 0.9360 +125 1429 0.4740 +125 1548 0.4830 +125 1557 0.5630 +125 1559 0.5900 +125 1565 0.5050 +125 1571 0.9880 +125 1576 0.4030 +125 1577 0.4140 +125 1592 0.9210 +125 1812 0.4470 +125 1813 0.4790 +125 1815 0.5560 +125 2052 0.4210 +125 2053 0.4990 +125 2098 0.8640 +125 2167 0.4180 +125 2327 0.5420 +125 2328 0.4270 +125 2329 0.4140 +125 2555 0.5830 +125 2559 0.4530 +125 2628 0.4270 +125 2819 0.4260 +125 2938 0.7370 +125 2939 0.7140 +125 2940 0.6870 +125 2941 0.7200 +125 2944 0.7820 +125 2946 0.6920 +125 2947 0.7210 +125 2948 0.6700 +125 2949 0.7500 +125 2950 0.7670 +125 3948 0.4560 +125 4128 0.9460 +125 4129 0.9340 +125 4257 0.7010 +125 4258 0.6620 +125 4259 0.6770 +125 4524 0.6090 +125 4985 0.5940 +125 4988 0.6420 +125 5105 0.4380 +125 5315 0.4860 +125 5726 0.4950 +125 5737 0.4010 +125 6049 0.5780 +125 6470 0.4900 +125 6532 0.5800 +125 7263 0.4130 +125 7363 0.7100 +125 7364 0.7140 +125 7365 0.7030 +125 7366 0.7170 +125 7367 0.7040 +125 7915 0.4280 +125 8228 0.9000 +125 8529 0.4710 +125 8659 0.4620 +125 8694 0.9050 +125 8854 0.8130 +125 9227 0.9130 +125 9369 0.4630 +125 9446 0.7010 +125 9563 0.4780 +125 9940 0.5660 +125 10327 0.4010 +125 10351 0.5140 +125 10383 0.4260 +125 10720 0.6840 +125 10840 0.4350 +125 11178 0.5410 +125 26053 0.4010 +125 27306 0.7320 +125 50833 0.5480 +125 51071 0.4990 +125 51741 0.5030 +125 53630 0.9150 +125 54363 0.4940 +125 54490 0.6940 +125 54575 0.7150 +125 54576 0.7040 +125 54577 0.7150 +125 54578 0.7170 +125 54579 0.7020 +125 54600 0.6800 +125 54657 0.7070 +125 54658 0.7130 +125 54659 0.6810 +125 54884 0.9100 +125 55825 0.4830 +125 55902 0.4230 +125 57016 0.4400 +125 57402 0.5440 +125 57591 0.4870 +125 64577 0.4210 +125 79799 0.7220 +125 92483 0.4850 +125 113278 0.4950 +125 119391 0.6680 +125 137872 0.7250 +125 152831 0.4770 +125 158835 0.9050 +125 160287 0.4970 +125 160428 0.4020 +125 220074 0.9170 +125 221357 0.6750 +125 255239 0.7070 +125 339761 0.9030 +125 574537 0.6960 +125 653689 0.7370 +126 127 0.5840 +126 130 0.6300 +126 131 0.7200 +126 216 0.9210 +126 217 0.9890 +126 218 0.8660 +126 219 0.8880 +126 220 0.8290 +126 221 0.8280 +126 222 0.8470 +126 223 0.8560 +126 224 0.8620 +126 316 0.9320 +126 501 0.8330 +126 551 0.9560 +126 1129 0.5410 +126 1312 0.9270 +126 1571 0.9650 +126 1577 0.5250 +126 1592 0.9260 +126 2052 0.6030 +126 2098 0.8630 +126 2169 0.4900 +126 2555 0.4740 +126 2938 0.7760 +126 2939 0.7500 +126 2940 0.7290 +126 2941 0.6980 +126 2944 0.7820 +126 2946 0.6950 +126 2947 0.7080 +126 2948 0.6740 +126 2949 0.7380 +126 2950 0.7620 +126 3948 0.4820 +126 4126 0.5490 +126 4128 0.9360 +126 4129 0.9310 +126 4257 0.7190 +126 4258 0.6690 +126 4259 0.6820 +126 5105 0.4040 +126 5726 0.4080 +126 6622 0.4340 +126 6652 0.4030 +126 7263 0.4210 +126 7345 0.4320 +126 7363 0.6970 +126 7364 0.7000 +126 7365 0.6750 +126 7366 0.7520 +126 7367 0.7170 +126 7753 0.4280 +126 8228 0.9010 +126 8398 0.4550 +126 8529 0.4780 +126 8659 0.4270 +126 8694 0.9050 +126 8854 0.8010 +126 9227 0.9190 +126 9446 0.7040 +126 9563 0.4610 +126 9970 0.4320 +126 10720 0.6810 +126 10840 0.4520 +126 25793 0.4890 +126 26058 0.5180 +126 27306 0.7300 +126 50833 0.4650 +126 51109 0.4070 +126 53630 0.9120 +126 54490 0.6910 +126 54575 0.7110 +126 54576 0.7000 +126 54577 0.6970 +126 54578 0.7200 +126 54579 0.7010 +126 54600 0.7080 +126 54657 0.7060 +126 54658 0.7150 +126 54659 0.7000 +126 54884 0.9140 +126 55825 0.5140 +126 57016 0.4650 +126 57591 0.4870 +126 64131 0.5040 +126 64577 0.4250 +126 79799 0.7140 +126 84830 0.4870 +126 92483 0.5220 +126 112724 0.4080 +126 119391 0.6930 +126 137872 0.7580 +126 158835 0.9050 +126 160287 0.5220 +126 220074 0.9090 +126 221357 0.7030 +126 255239 0.5920 +126 339761 0.9030 +126 347853 0.4700 +126 574537 0.6800 +126 653689 0.7420 +127 130 0.7800 +127 131 0.5480 +127 216 0.9490 +127 217 0.9790 +127 218 0.8740 +127 219 0.8720 +127 220 0.8160 +127 221 0.8750 +127 222 0.8440 +127 223 0.8540 +127 224 0.8910 +127 229 0.4690 +127 316 0.9370 +127 501 0.8270 +127 551 0.9470 +127 1312 0.9160 +127 1555 0.4920 +127 1559 0.4060 +127 1571 0.9610 +127 1576 0.5590 +127 1592 0.9330 +127 2098 0.8910 +127 2110 0.4140 +127 2555 0.5090 +127 2560 0.4290 +127 2687 0.4320 +127 2938 0.7940 +127 2939 0.7770 +127 2940 0.6800 +127 2941 0.6940 +127 2944 0.8380 +127 2946 0.6830 +127 2947 0.7080 +127 2948 0.6910 +127 2949 0.6810 +127 2950 0.7130 +127 3948 0.4980 +127 4128 0.9250 +127 4129 0.9190 +127 4191 0.4360 +127 4257 0.6740 +127 4258 0.6500 +127 4259 0.6770 +127 5671 0.4280 +127 5858 0.4490 +127 6822 0.4530 +127 7263 0.4030 +127 7363 0.7170 +127 7364 0.7220 +127 7365 0.7090 +127 7366 0.7220 +127 7367 0.7100 +127 7915 0.4330 +127 8228 0.9000 +127 8608 0.4040 +127 8694 0.9110 +127 8854 0.8100 +127 9227 0.9170 +127 9446 0.6790 +127 9563 0.4940 +127 10720 0.6920 +127 23240 0.4250 +127 27236 0.4040 +127 27306 0.7030 +127 53630 0.9060 +127 54490 0.6940 +127 54575 0.7030 +127 54576 0.7530 +127 54577 0.7020 +127 54578 0.7080 +127 54579 0.6740 +127 54600 0.6890 +127 54657 0.7070 +127 54658 0.7060 +127 54659 0.6710 +127 54884 0.9210 +127 54951 0.4120 +127 55825 0.4230 +127 55902 0.4260 +127 57016 0.4480 +127 57484 0.4070 +127 57591 0.4870 +127 64577 0.5960 +127 64902 0.4300 +127 79799 0.7020 +127 84532 0.4270 +127 92483 0.5470 +127 119391 0.6680 +127 123876 0.4510 +127 124975 0.4700 +127 137872 0.7590 +127 139067 0.5250 +127 145226 0.4050 +127 157506 0.4060 +127 158835 0.9050 +127 160287 0.5490 +127 201798 0.4330 +127 201895 0.4180 +127 220074 0.9040 +127 221357 0.6690 +127 339761 0.9040 +127 348158 0.5060 +127 387712 0.4290 +127 574537 0.6770 +127 653689 0.7130 +128 216 0.9020 +128 217 0.9650 +128 218 0.8600 +128 219 0.8700 +128 220 0.8110 +128 221 0.8190 +128 222 0.8250 +128 223 0.8850 +128 224 0.8690 +128 314 0.5050 +128 316 0.9380 +128 501 0.8340 +128 551 0.9170 +128 719 0.4330 +128 873 0.5050 +128 1066 0.5250 +128 1129 0.4870 +128 1312 0.9120 +128 1571 0.9470 +128 1592 0.9530 +128 1738 0.4150 +128 2098 0.9980 +128 2169 0.5710 +128 2177 0.4210 +128 2559 0.4610 +128 2597 0.4360 +128 2739 0.4760 +128 2745 0.4490 +128 2936 0.4380 +128 2938 0.7140 +128 2939 0.6990 +128 2940 0.7030 +128 2941 0.7180 +128 2944 0.7470 +128 2946 0.6950 +128 2947 0.7160 +128 2948 0.6940 +128 2949 0.7120 +128 2950 0.7390 +128 3029 0.6400 +128 3030 0.4080 +128 3948 0.5220 +128 4126 0.6480 +128 4128 0.9220 +128 4129 0.9230 +128 4191 0.4830 +128 4257 0.7100 +128 4258 0.7160 +128 4259 0.7110 +128 4548 0.4630 +128 4842 0.7020 +128 4846 0.4360 +128 4913 0.4050 +128 5162 0.5960 +128 5726 0.4240 +128 6037 0.4200 +128 6347 0.4570 +128 6652 0.4100 +128 6888 0.4660 +128 7167 0.4680 +128 7263 0.4670 +128 7295 0.6010 +128 7363 0.7100 +128 7364 0.6930 +128 7365 0.6870 +128 7366 0.6980 +128 7367 0.6770 +128 7498 0.4140 +128 7915 0.4520 +128 8228 0.9020 +128 8540 0.4640 +128 8659 0.6510 +128 8694 0.9130 +128 8854 0.7940 +128 9227 0.9180 +128 9369 0.4280 +128 9446 0.7590 +128 9563 0.5240 +128 10327 0.5390 +128 10720 0.6860 +128 10963 0.4160 +128 23491 0.5870 +128 26873 0.4030 +128 27306 0.7660 +128 50833 0.5110 +128 51031 0.4120 +128 53630 0.9090 +128 54490 0.6960 +128 54575 0.6720 +128 54576 0.6730 +128 54577 0.6730 +128 54578 0.6860 +128 54579 0.6820 +128 54600 0.6740 +128 54657 0.6720 +128 54658 0.6790 +128 54659 0.6780 +128 54884 0.9150 +128 55825 0.4140 +128 56898 0.4140 +128 57591 0.4870 +128 60496 0.4010 +128 79799 0.6860 +128 84532 0.4050 +128 92483 0.5510 +128 119391 0.7010 +128 137872 0.7450 +128 157506 0.4660 +128 158835 0.9050 +128 160287 0.5730 +128 220074 0.9000 +128 221223 0.7570 +128 221357 0.7140 +128 255239 0.5230 +128 339761 0.9030 +128 390245 0.5550 +128 574537 0.6850 +128 653689 0.6950 +130 131 0.5590 +130 216 0.9180 +130 217 0.9650 +130 218 0.8290 +130 219 0.8890 +130 220 0.8010 +130 221 0.8270 +130 222 0.8190 +130 223 0.8790 +130 224 0.8810 +130 229 0.4060 +130 316 0.9330 +130 501 0.8330 +130 551 0.9460 +130 1121 0.4220 +130 1129 0.5380 +130 1312 0.9400 +130 1559 0.5990 +130 1571 0.9620 +130 1592 0.9520 +130 2098 0.9000 +130 2559 0.5500 +130 2938 0.7410 +130 2939 0.7450 +130 2940 0.7540 +130 2941 0.7230 +130 2944 0.7250 +130 2946 0.6760 +130 2947 0.7160 +130 2948 0.7240 +130 2949 0.7120 +130 2950 0.7220 +130 3948 0.5230 +130 4128 0.9200 +130 4129 0.9230 +130 4191 0.4750 +130 4257 0.7190 +130 4258 0.7290 +130 4259 0.7130 +130 4329 0.4080 +130 4985 0.5030 +130 5726 0.4390 +130 6347 0.4240 +130 6532 0.4290 +130 6652 0.4090 +130 7263 0.4230 +130 7363 0.7240 +130 7364 0.7150 +130 7365 0.7120 +130 7366 0.7330 +130 7367 0.7120 +130 7915 0.4770 +130 8228 0.9000 +130 8529 0.4770 +130 8659 0.4180 +130 8694 0.9080 +130 8854 0.7870 +130 9227 0.9110 +130 9369 0.4920 +130 9446 0.7480 +130 9563 0.4870 +130 10327 0.5460 +130 10720 0.6910 +130 27306 0.7430 +130 50833 0.5740 +130 51179 0.4020 +130 53630 0.9070 +130 54490 0.7000 +130 54575 0.6990 +130 54576 0.7330 +130 54577 0.7000 +130 54578 0.7290 +130 54579 0.6820 +130 54600 0.6930 +130 54657 0.7230 +130 54658 0.7220 +130 54659 0.7030 +130 54884 0.9080 +130 55825 0.4120 +130 57016 0.4160 +130 57591 0.4870 +130 64577 0.5400 +130 79799 0.7330 +130 83593 0.4180 +130 92483 0.5730 +130 115817 0.4150 +130 119391 0.7000 +130 137872 0.7800 +130 158835 0.9050 +130 160287 0.5740 +130 220074 0.9020 +130 221357 0.7350 +130 255239 0.6040 +130 283349 0.4080 +130 339761 0.9030 +130 574537 0.6810 +130 653689 0.6900 +131 216 0.9290 +131 217 0.9680 +131 218 0.9180 +131 219 0.8780 +131 220 0.8510 +131 221 0.8450 +131 222 0.8710 +131 223 0.8690 +131 224 0.8780 +131 316 0.9300 +131 501 0.8240 +131 551 0.9550 +131 1121 0.4220 +131 1129 0.6450 +131 1312 0.9420 +131 1562 0.4660 +131 1571 0.9530 +131 1592 0.9360 +131 1645 0.4250 +131 1815 0.4060 +131 2098 0.8380 +131 2555 0.5070 +131 2559 0.5010 +131 2571 0.5170 +131 2878 0.4030 +131 2938 0.8000 +131 2939 0.7260 +131 2940 0.7090 +131 2941 0.7100 +131 2944 0.8090 +131 2946 0.7080 +131 2947 0.7240 +131 2948 0.7170 +131 2949 0.7060 +131 2950 0.7230 +131 3948 0.4980 +131 4128 0.9240 +131 4129 0.9180 +131 4257 0.6940 +131 4258 0.6680 +131 4259 0.6770 +131 4985 0.5140 +131 5275 0.4200 +131 5726 0.4890 +131 5959 0.4550 +131 6532 0.4630 +131 6652 0.4110 +131 6657 0.4460 +131 7167 0.4400 +131 7263 0.4140 +131 7363 0.7150 +131 7364 0.6930 +131 7365 0.6820 +131 7366 0.7130 +131 7367 0.7080 +131 7915 0.4170 +131 8228 0.9000 +131 8659 0.4780 +131 8694 0.9140 +131 8854 0.8210 +131 9227 0.9310 +131 9249 0.4380 +131 9369 0.5140 +131 9446 0.7220 +131 9563 0.4750 +131 10720 0.6650 +131 26873 0.4100 +131 27306 0.7030 +131 50833 0.7260 +131 51109 0.4690 +131 53630 0.9170 +131 54490 0.6900 +131 54575 0.7090 +131 54576 0.7220 +131 54577 0.7100 +131 54578 0.7450 +131 54579 0.6690 +131 54600 0.7080 +131 54657 0.7020 +131 54658 0.7220 +131 54659 0.6950 +131 54884 0.9210 +131 55825 0.4130 +131 57016 0.5830 +131 57591 0.4870 +131 64577 0.5080 +131 79799 0.6890 +131 84293 0.4350 +131 84966 0.4150 +131 89778 0.4910 +131 92483 0.5490 +131 119391 0.7000 +131 124975 0.4510 +131 137872 0.7860 +131 145226 0.4920 +131 157506 0.5530 +131 158835 0.9050 +131 160287 0.5430 +131 160428 0.4170 +131 220074 0.9060 +131 221357 0.6980 +131 255239 0.6430 +131 339761 0.9030 +131 574537 0.6680 +131 653689 0.7170 +132 134 0.6120 +132 135 0.6550 +132 136 0.4730 +132 140 0.6070 +132 158 0.9770 +132 159 0.6760 +132 178 0.6870 +132 191 0.7690 +132 203 0.9670 +132 204 0.9720 +132 205 0.9490 +132 223 0.4010 +132 270 0.9770 +132 271 0.9800 +132 272 0.9800 +132 276 0.4080 +132 278 0.4080 +132 353 0.9960 +132 445 0.4180 +132 471 0.6790 +132 644 0.4290 +132 790 0.4180 +132 822 0.4060 +132 875 0.4410 +132 953 0.9590 +132 956 0.9250 +132 1535 0.4240 +132 1633 0.5820 +132 1719 0.4950 +132 1723 0.4210 +132 1728 0.7600 +132 1841 0.4450 +132 1890 0.6600 +132 1967 0.5240 +132 2030 0.7330 +132 2235 0.4360 +132 2271 0.4540 +132 2588 0.5290 +132 2597 0.4300 +132 2618 0.6260 +132 2821 0.7830 +132 2936 0.4440 +132 2987 0.5340 +132 3177 0.6840 +132 3251 0.7750 +132 3614 0.5190 +132 3615 0.6350 +132 3704 0.4950 +132 4143 0.5850 +132 4144 0.4920 +132 4191 0.7800 +132 4507 0.6570 +132 4522 0.4420 +132 4860 0.9860 +132 4907 0.9700 +132 5009 0.4560 +132 5136 0.9090 +132 5137 0.9090 +132 5138 0.9180 +132 5139 0.9240 +132 5140 0.9240 +132 5141 0.9200 +132 5142 0.9200 +132 5143 0.9140 +132 5144 0.9230 +132 5150 0.9250 +132 5151 0.9050 +132 5153 0.9210 +132 5167 0.9330 +132 5169 0.9180 +132 5230 0.4670 +132 5232 0.4360 +132 5256 0.4510 +132 5464 0.4370 +132 5471 0.5260 +132 5631 0.4280 +132 5634 0.4110 +132 5813 0.8210 +132 5832 0.4180 +132 5888 0.6840 +132 6120 0.4590 +132 6132 0.8020 +132 6175 0.4220 +132 6472 0.5440 +132 6652 0.4320 +132 6888 0.4730 +132 7084 0.4580 +132 7086 0.4550 +132 7167 0.6770 +132 7172 0.4130 +132 7329 0.7840 +132 7372 0.5940 +132 7378 0.6380 +132 8277 0.4470 +132 8566 0.6050 +132 8622 0.9070 +132 8659 0.4800 +132 8833 0.6490 +132 8890 0.4630 +132 8892 0.5260 +132 9104 0.4080 +132 9153 0.5390 +132 9154 0.4930 +132 9380 0.6100 +132 9563 0.6060 +132 9615 0.4870 +132 9942 0.4120 +132 10137 0.4810 +132 10768 0.4340 +132 10846 0.9150 +132 10915 0.4860 +132 22868 0.4300 +132 22934 0.4880 +132 22978 0.9370 +132 23382 0.4290 +132 23510 0.5720 +132 26289 0.9280 +132 27068 0.4290 +132 27115 0.9370 +132 30833 0.9230 +132 50808 0.9430 +132 50940 0.9140 +132 51071 0.4290 +132 51251 0.9190 +132 51290 0.4240 +132 51741 0.6690 +132 51816 0.9660 +132 55276 0.5280 +132 55315 0.4740 +132 55349 0.4640 +132 56912 0.4730 +132 56953 0.9100 +132 64078 0.4990 +132 64080 0.6230 +132 79158 0.8250 +132 79925 0.9300 +132 84076 0.4420 +132 84215 0.4030 +132 84284 0.4080 +132 84618 0.9270 +132 93034 0.9190 +132 113235 0.4040 +132 115024 0.9180 +132 122481 0.9400 +132 122622 0.6460 +132 124583 0.4280 +132 139596 0.4940 +132 147807 0.4330 +132 151531 0.6300 +132 158067 0.9520 +132 161823 0.6170 +132 200895 0.4650 +132 221264 0.9350 +132 221823 0.4070 +132 222962 0.4050 +132 256536 0.4760 +132 283209 0.4150 +132 374655 0.4380 +132 377841 0.9360 +132 100526794 0.9200 +132 102157402 0.9270 +133 136 0.5250 +133 154 0.5300 +133 183 0.7390 +133 259 0.4290 +133 284 0.4460 +133 285 0.4760 +133 551 0.7890 +133 567 0.5070 +133 796 0.9820 +133 797 0.9910 +133 845 0.5520 +133 1081 0.4080 +133 1114 0.4170 +133 1392 0.7270 +133 1401 0.5810 +133 1471 0.4770 +133 1490 0.4240 +133 1585 0.4280 +133 1636 0.5070 +133 1889 0.4950 +133 1906 0.8340 +133 1908 0.4630 +133 1909 0.5270 +133 1910 0.5010 +133 2034 0.4030 +133 2247 0.4130 +133 2641 0.6280 +133 2691 0.5260 +133 2695 0.4730 +133 2778 0.8980 +133 2782 0.8010 +133 3075 0.4470 +133 3091 0.5340 +133 3375 0.9940 +133 3553 0.5050 +133 3569 0.5480 +133 3576 0.4460 +133 3630 0.4490 +133 3827 0.5810 +133 3952 0.4210 +133 3958 0.4440 +133 4071 0.4020 +133 4311 0.5400 +133 4318 0.4020 +133 4846 0.4460 +133 4852 0.4180 +133 4878 0.8580 +133 4879 0.5700 +133 4880 0.5410 +133 4881 0.6040 +133 4922 0.4020 +133 5054 0.4940 +133 5066 0.4100 +133 5328 0.4640 +133 5443 0.8360 +133 5741 0.5420 +133 5744 0.5450 +133 5972 0.8610 +133 6019 0.4800 +133 6343 0.5720 +133 6347 0.4420 +133 6714 0.5930 +133 6863 0.5240 +133 7039 0.4290 +133 7124 0.4520 +133 7252 0.4190 +133 7424 0.5010 +133 7432 0.7600 +133 7857 0.4540 +133 8553 0.4310 +133 8862 0.4260 +133 9518 0.5380 +133 10203 0.9990 +133 10266 0.9990 +133 10267 0.9980 +133 10268 0.9990 +133 10911 0.4470 +133 11318 0.9610 +133 27297 0.8190 +133 51129 0.4510 +133 51778 0.4280 +133 54331 0.8000 +133 57007 0.8730 +133 57105 0.5090 +133 79258 0.5120 +133 79924 0.9250 +133 113091 0.4840 +133 117194 0.9340 +133 117579 0.4930 +133 170589 0.4160 +133 199800 0.5170 +133 594857 0.4650 +134 135 0.7840 +134 140 0.9070 +134 153 0.4290 +134 154 0.6600 +134 183 0.6750 +134 186 0.5490 +134 953 0.6650 +134 1191 0.4690 +134 1812 0.7020 +134 1813 0.5850 +134 1902 0.4130 +134 1906 0.7360 +134 1907 0.6510 +134 1908 0.6890 +134 1956 0.4080 +134 2030 0.8800 +134 2149 0.4410 +134 2205 0.4050 +134 2770 0.9310 +134 2771 0.9940 +134 2773 0.9200 +134 2775 0.6040 +134 2782 0.9410 +134 2911 0.4970 +134 2915 0.4350 +134 2932 0.4840 +134 3060 0.4660 +134 3177 0.6900 +134 3351 0.5580 +134 3356 0.4710 +134 3827 0.9280 +134 4016 0.4400 +134 4052 0.6090 +134 4053 0.6430 +134 4054 0.6600 +134 4481 0.4300 +134 4852 0.7350 +134 4907 0.7270 +134 5020 0.7110 +134 5023 0.4510 +134 5028 0.7770 +134 5029 0.4760 +134 5468 0.4940 +134 6714 0.5700 +134 6750 0.7220 +134 7353 0.6060 +134 7433 0.6840 +134 26086 0.4600 +134 51738 0.7150 +134 54331 0.8160 +134 63940 0.4020 +134 84687 0.5100 +134 85406 0.4470 +135 136 0.9370 +135 154 0.5140 +135 207 0.4280 +135 383 0.4100 +135 408 0.4690 +135 409 0.5030 +135 627 0.5000 +135 652 0.4790 +135 793 0.4130 +135 808 0.5150 +135 810 0.4550 +135 836 0.5750 +135 920 0.7090 +135 925 0.5330 +135 940 0.4480 +135 941 0.4710 +135 942 0.4030 +135 953 0.8640 +135 956 0.4110 +135 1081 0.4100 +135 1268 0.9560 +135 1269 0.4420 +135 1312 0.4050 +135 1385 0.4640 +135 1435 0.5180 +135 1439 0.5250 +135 1493 0.6980 +135 1544 0.4210 +135 1803 0.7670 +135 1813 0.9970 +135 1814 0.5100 +135 2030 0.7180 +135 2034 0.5410 +135 2099 0.4240 +135 2248 0.4590 +135 2249 0.4520 +135 2250 0.4590 +135 2251 0.4650 +135 2252 0.4640 +135 2253 0.4670 +135 2254 0.4660 +135 2255 0.4650 +135 2260 0.7180 +135 2353 0.4100 +135 2488 0.9050 +135 2641 0.9160 +135 2695 0.9000 +135 2774 0.9490 +135 2776 0.9590 +135 2778 0.9950 +135 2782 0.9280 +135 2788 0.4110 +135 2861 0.4610 +135 2867 0.4720 +135 2904 0.4140 +135 2912 0.5270 +135 2915 0.9760 +135 2996 0.4130 +135 3060 0.4070 +135 3091 0.4670 +135 3177 0.4700 +135 3304 0.4070 +135 3315 0.4130 +135 3316 0.4400 +135 3458 0.5360 +135 3553 0.5060 +135 3558 0.4460 +135 3569 0.6700 +135 3586 0.5210 +135 3620 0.5750 +135 3902 0.6120 +135 3965 0.4390 +135 4052 0.4980 +135 4053 0.5190 +135 4054 0.5230 +135 4129 0.4740 +135 4488 0.4810 +135 4878 0.9050 +135 4907 0.8680 +135 4914 0.8570 +135 4915 0.9400 +135 4922 0.5000 +135 5023 0.4220 +135 5025 0.4210 +135 5027 0.4150 +135 5028 0.4130 +135 5029 0.5510 +135 5031 0.4450 +135 5032 0.4070 +135 5081 0.4050 +135 5133 0.4880 +135 5137 0.4710 +135 5173 0.4530 +135 5443 0.9230 +135 5566 0.7050 +135 5567 0.7050 +135 5568 0.5940 +135 6010 0.4820 +135 6258 0.4390 +135 6295 0.5530 +135 6347 0.5240 +135 6440 0.5330 +135 6441 0.5120 +135 6469 0.4830 +135 6507 0.4480 +135 6531 0.5370 +135 6714 0.6210 +135 6863 0.5110 +135 7054 0.4700 +135 7098 0.4590 +135 7124 0.5520 +135 7170 0.5900 +135 7252 0.9060 +135 7257 0.5930 +135 7293 0.6340 +135 7375 0.4210 +135 7432 0.9170 +135 7433 0.6040 +135 7852 0.6580 +135 8601 0.4080 +135 8784 0.4190 +135 8817 0.4590 +135 8822 0.4660 +135 8823 0.4650 +135 8854 0.4540 +135 8988 0.4120 +135 9266 0.6620 +135 10636 0.4320 +135 10777 0.4940 +135 10846 0.5460 +135 23413 0.4820 +135 23551 0.5250 +135 24145 0.4190 +135 26281 0.4670 +135 27006 0.4700 +135 29126 0.5770 +135 29851 0.4260 +135 50943 0.4820 +135 51806 0.4560 +135 54112 0.5280 +135 54331 0.8550 +135 54550 0.7750 +135 64115 0.4350 +135 64581 0.4430 +135 64805 0.4610 +135 79679 0.4310 +135 79971 0.5550 +135 80380 0.4740 +135 83698 0.4760 +135 83857 0.7280 +135 84152 0.6910 +135 84868 0.5660 +135 89780 0.4240 +135 91860 0.4460 +135 148281 0.4010 +135 151888 0.5140 +135 163688 0.4450 +135 169355 0.4530 +135 201633 0.4880 +135 377841 0.4460 +135 387733 0.6230 +135 653509 0.5130 +135 729238 0.5130 +136 153 0.4350 +136 154 0.4460 +136 155 0.4270 +136 207 0.5150 +136 239 0.6120 +136 551 0.4530 +136 554 0.4560 +136 796 0.4060 +136 953 0.7570 +136 1081 0.4210 +136 1392 0.4060 +136 1394 0.4420 +136 1395 0.4360 +136 1439 0.5150 +136 1630 0.5490 +136 1812 0.4480 +136 1816 0.4550 +136 1826 0.5570 +136 2030 0.4700 +136 2488 0.4340 +136 2492 0.4090 +136 2641 0.4220 +136 2642 0.4030 +136 2691 0.4390 +136 2692 0.4190 +136 2696 0.4030 +136 2740 0.4030 +136 2774 0.7870 +136 2776 0.9220 +136 2778 0.9540 +136 2782 0.6300 +136 2783 0.6300 +136 2784 0.6710 +136 2785 0.5710 +136 2786 0.6080 +136 2787 0.5410 +136 2788 0.5640 +136 2790 0.5410 +136 2791 0.5410 +136 2792 0.5410 +136 2793 0.5530 +136 2838 0.4080 +136 2863 0.4250 +136 3091 0.4230 +136 3177 0.4420 +136 3274 0.4540 +136 3360 0.4100 +136 3362 0.4410 +136 3363 0.4290 +136 3375 0.4010 +136 3973 0.4260 +136 4052 0.5260 +136 4053 0.5250 +136 4054 0.5400 +136 4157 0.4200 +136 4158 0.4200 +136 4159 0.4100 +136 4160 0.4160 +136 4161 0.4090 +136 4756 0.5920 +136 4907 0.7220 +136 5029 0.4420 +136 5032 0.6040 +136 5187 0.5180 +136 5443 0.4470 +136 5605 0.4260 +136 5617 0.4590 +136 5729 0.4060 +136 5732 0.5040 +136 5734 0.4770 +136 5739 0.5030 +136 5741 0.4180 +136 5744 0.4040 +136 5745 0.4530 +136 5746 0.4530 +136 5747 0.4220 +136 6343 0.4360 +136 6344 0.4140 +136 6440 0.5540 +136 6441 0.5110 +136 6714 0.5390 +136 6754 0.4030 +136 7252 0.4360 +136 7253 0.4350 +136 7432 0.4330 +136 7433 0.4250 +136 9038 0.4120 +136 9340 0.4220 +136 9351 0.4160 +136 9423 0.7970 +136 10203 0.4190 +136 10266 0.4410 +136 10267 0.4750 +136 10268 0.4530 +136 10681 0.6320 +136 10888 0.4360 +136 11245 0.4050 +136 11250 0.4040 +136 26286 0.4070 +136 51764 0.5510 +136 53831 0.4760 +136 54331 0.6040 +136 55970 0.5650 +136 59277 0.5520 +136 59345 0.6300 +136 59350 0.4060 +136 83551 0.4100 +136 94235 0.5410 +136 117579 0.4270 +136 122042 0.4060 +136 122876 0.4180 +136 134860 0.4090 +136 134864 0.4130 +136 151306 0.4100 +136 196883 0.5870 +136 219699 0.6460 +136 285601 0.4260 +136 387129 0.4460 +136 594857 0.4180 +136 653509 0.5270 +136 729238 0.5190 +140 183 0.5620 +140 186 0.5170 +140 706 0.4030 +140 719 0.5290 +140 728 0.5390 +140 953 0.6140 +140 1191 0.4570 +140 1234 0.4970 +140 2030 0.4900 +140 2035 0.4960 +140 2200 0.4480 +140 2357 0.4930 +140 2770 0.9200 +140 2771 0.9220 +140 2773 0.9100 +140 2782 0.4120 +140 2857 0.6750 +140 3035 0.4190 +140 3177 0.4480 +140 3827 0.9150 +140 4016 0.4940 +140 4052 0.6530 +140 4053 0.6590 +140 4054 0.6570 +140 4360 0.4720 +140 4907 0.5710 +140 5029 0.6400 +140 5030 0.4200 +140 5031 0.4520 +140 5032 0.4310 +140 6347 0.4280 +140 6374 0.4460 +140 6710 0.4140 +140 6714 0.5550 +140 7450 0.4240 +140 9332 0.6300 +140 9934 0.5150 +140 10663 0.4100 +140 26086 0.4160 +140 27334 0.5500 +140 53829 0.6310 +140 54209 0.4080 +140 57121 0.4600 +140 63940 0.4130 +140 64805 0.4870 +141 417 0.4630 +141 3679 0.4760 +141 8452 0.4020 +141 8454 0.4040 +141 28992 0.4570 +141 54936 0.6680 +141 55707 0.4430 +141 116969 0.6280 +141 140733 0.5330 +141 143384 0.4020 +141 221443 0.4310 +141 493829 0.5050 +142 143 0.4240 +142 207 0.8250 +142 208 0.4720 +142 213 0.6260 +142 238 0.5140 +142 286 0.5640 +142 287 0.5580 +142 288 0.5580 +142 308 0.8740 +142 310 0.4040 +142 317 0.7450 +142 328 0.9670 +142 329 0.5860 +142 330 0.5240 +142 331 0.7180 +142 354 0.5110 +142 355 0.4750 +142 356 0.5800 +142 367 0.6210 +142 467 0.4580 +142 472 0.8750 +142 545 0.6280 +142 546 0.5390 +142 580 0.8260 +142 581 0.5600 +142 590 0.4300 +142 595 0.7240 +142 596 0.9170 +142 598 0.7960 +142 599 0.4640 +142 641 0.5810 +142 648 0.7890 +142 672 0.9740 +142 673 0.6700 +142 675 0.9850 +142 701 0.5580 +142 834 0.6550 +142 835 0.5970 +142 836 0.9990 +142 839 0.5620 +142 840 0.9950 +142 841 0.8730 +142 842 0.9910 +142 843 0.8090 +142 885 0.6030 +142 891 0.7290 +142 896 0.4230 +142 898 0.5310 +142 920 0.4160 +142 925 0.4710 +142 952 0.4290 +142 960 0.4320 +142 983 0.6870 +142 989 0.4270 +142 990 0.6020 +142 993 0.4580 +142 995 0.5870 +142 997 0.4040 +142 999 0.5840 +142 1000 0.5130 +142 1002 0.4380 +142 1017 0.7050 +142 1019 0.7560 +142 1021 0.6250 +142 1022 0.7030 +142 1024 0.7620 +142 1025 0.6240 +142 1026 0.8560 +142 1027 0.5180 +142 1028 0.5460 +142 1029 0.5970 +142 1033 0.4550 +142 1050 0.6710 +142 1058 0.4990 +142 1059 0.6160 +142 1069 0.7600 +142 1107 0.4480 +142 1108 0.8230 +142 1111 0.8580 +142 1147 0.4880 +142 1327 0.4830 +142 1385 0.4330 +142 1387 0.7380 +142 1432 0.4220 +142 1434 0.4130 +142 1487 0.5260 +142 1488 0.5130 +142 1493 0.4770 +142 1499 0.7490 +142 1500 0.4360 +142 1501 0.4050 +142 1508 0.5350 +142 1588 0.4140 +142 1616 0.4010 +142 1642 0.6860 +142 1643 0.8700 +142 1649 0.5060 +142 1660 0.5400 +142 1676 0.5390 +142 1677 0.4770 +142 1728 0.6220 +142 1763 0.5500 +142 1786 0.9520 +142 1788 0.4380 +142 1789 0.5430 +142 1791 0.5950 +142 1869 0.7870 +142 1915 0.5590 +142 1917 0.5430 +142 1950 0.5710 +142 1956 0.7510 +142 1965 0.4850 +142 1978 0.5200 +142 1994 0.4250 +142 2018 0.4360 +142 2021 0.4970 +142 2033 0.8810 +142 2058 0.5390 +142 2064 0.7410 +142 2065 0.5050 +142 2067 0.8690 +142 2068 0.8460 +142 2071 0.8130 +142 2072 0.7180 +142 2073 0.7680 +142 2074 0.5300 +142 2081 0.5530 +142 2099 0.7460 +142 2113 0.4770 +142 2115 0.5230 +142 2130 0.8610 +142 2146 0.5920 +142 2175 0.6860 +142 2176 0.5910 +142 2177 0.6880 +142 2178 0.5020 +142 2186 0.4250 +142 2189 0.5370 +142 2194 0.5170 +142 2237 0.9410 +142 2305 0.4540 +142 2308 0.7660 +142 2309 0.5440 +142 2314 0.5780 +142 2335 0.4230 +142 2346 0.4020 +142 2475 0.6580 +142 2521 0.7120 +142 2547 0.9980 +142 2597 0.7930 +142 2875 0.4080 +142 2877 0.4010 +142 2882 0.4270 +142 2931 0.4430 +142 2932 0.6430 +142 2956 0.7980 +142 2965 0.6950 +142 2966 0.5250 +142 2967 0.5470 +142 2968 0.5560 +142 3002 0.9550 +142 3005 0.7950 +142 3006 0.6040 +142 3009 0.5760 +142 3012 0.4470 +142 3014 0.9640 +142 3015 0.6170 +142 3017 0.4930 +142 3018 0.5590 +142 3021 0.8380 +142 3024 0.4110 +142 3064 0.5000 +142 3065 0.9000 +142 3066 0.8820 +142 3068 0.4250 +142 3070 0.4870 +142 3091 0.7070 +142 3146 0.6380 +142 3150 0.4100 +142 3159 0.6710 +142 3162 0.5280 +142 3178 0.4390 +142 3184 0.6010 +142 3187 0.4220 +142 3217 0.4200 +142 3265 0.4060 +142 3276 0.4610 +142 3280 0.5580 +142 3304 0.4750 +142 3308 0.5760 +142 3309 0.5820 +142 3315 0.4640 +142 3316 0.4460 +142 3320 0.6720 +142 3326 0.6650 +142 3364 0.4100 +142 3383 0.4810 +142 3417 0.4540 +142 3428 0.4050 +142 3458 0.4810 +142 3479 0.4350 +142 3480 0.5600 +142 3486 0.4260 +142 3551 0.6530 +142 3553 0.6780 +142 3569 0.5710 +142 3586 0.5340 +142 3615 0.4100 +142 3630 0.5070 +142 3643 0.4250 +142 3716 0.4090 +142 3717 0.4930 +142 3725 0.8050 +142 3791 0.4350 +142 3815 0.4730 +142 3838 0.5200 +142 3843 0.5010 +142 3845 0.6320 +142 3848 0.4130 +142 3958 0.4240 +142 3978 0.7030 +142 3980 0.9900 +142 3981 0.6550 +142 4000 0.7350 +142 4001 0.5690 +142 4087 0.6750 +142 4088 0.8690 +142 4089 0.8880 +142 4097 0.6270 +142 4130 0.4420 +142 4170 0.7390 +142 4171 0.4610 +142 4172 0.7490 +142 4173 0.5260 +142 4174 0.4460 +142 4175 0.4900 +142 4176 0.6640 +142 4193 0.6670 +142 4194 0.4020 +142 4217 0.4330 +142 4233 0.7010 +142 4255 0.5980 +142 4292 0.5510 +142 4313 0.4790 +142 4318 0.5530 +142 4331 0.5370 +142 4350 0.4110 +142 4361 0.8080 +142 4436 0.7130 +142 4437 0.4620 +142 4595 0.4210 +142 4602 0.4120 +142 4605 0.4440 +142 4609 0.7620 +142 4613 0.5830 +142 4624 0.6330 +142 4625 0.5770 +142 4683 0.7900 +142 4691 0.8130 +142 4738 0.4930 +142 4763 0.4220 +142 4772 0.4030 +142 4780 0.4750 +142 4782 0.4660 +142 4790 0.8280 +142 4791 0.4140 +142 4792 0.6140 +142 4843 0.4800 +142 4851 0.4860 +142 4869 0.9700 +142 4893 0.4720 +142 4899 0.6580 +142 4904 0.4160 +142 4913 0.4630 +142 4926 0.4710 +142 4968 0.8090 +142 5071 0.4300 +142 5111 0.8720 +142 5122 0.4270 +142 5133 0.4310 +142 5136 0.4910 +142 5175 0.4180 +142 5241 0.7110 +142 5243 0.5440 +142 5245 0.6630 +142 5290 0.6170 +142 5347 0.5610 +142 5366 0.6240 +142 5395 0.4840 +142 5422 0.4410 +142 5423 0.9960 +142 5424 0.4270 +142 5426 0.4390 +142 5451 0.6240 +142 5460 0.5050 +142 5468 0.6330 +142 5591 0.9930 +142 5594 0.6090 +142 5595 0.7580 +142 5599 0.5280 +142 5604 0.5470 +142 5728 0.7260 +142 5743 0.5020 +142 5747 0.5570 +142 5866 0.4590 +142 5883 0.4070 +142 5884 0.4710 +142 5885 0.6650 +142 5886 0.6850 +142 5887 0.6840 +142 5888 0.8600 +142 5889 0.6630 +142 5890 0.4760 +142 5892 0.6080 +142 5893 0.7060 +142 5894 0.4690 +142 5896 0.4200 +142 5914 0.5210 +142 5925 0.5330 +142 5932 0.8200 +142 5965 0.6780 +142 5967 0.4240 +142 5970 0.8910 +142 5981 0.4380 +142 5982 0.4620 +142 5984 0.4890 +142 5985 0.4410 +142 6046 0.4070 +142 6047 0.7250 +142 6050 0.4230 +142 6117 0.8250 +142 6118 0.9220 +142 6119 0.6390 +142 6189 0.5780 +142 6194 0.4290 +142 6195 0.4430 +142 6198 0.6440 +142 6199 0.4070 +142 6233 0.7250 +142 6240 0.5440 +142 6241 0.4680 +142 6391 0.4110 +142 6426 0.4650 +142 6502 0.4570 +142 6591 0.4300 +142 6594 0.6240 +142 6595 0.4680 +142 6596 0.5300 +142 6597 0.9960 +142 6598 0.4430 +142 6599 0.4020 +142 6612 0.5790 +142 6613 0.8190 +142 6615 0.8420 +142 6647 0.6240 +142 6648 0.7740 +142 6657 0.6330 +142 6667 0.5450 +142 6696 0.4340 +142 6714 0.5990 +142 6720 0.5250 +142 6721 0.4080 +142 6749 0.7500 +142 6772 0.4520 +142 6774 0.6570 +142 6776 0.4040 +142 6777 0.4080 +142 6778 0.4610 +142 6783 0.4590 +142 6790 0.5920 +142 6794 0.4960 +142 6876 0.6330 +142 6905 0.6640 +142 6919 0.4020 +142 6934 0.5100 +142 7013 0.6850 +142 7015 0.5450 +142 7019 0.6850 +142 7112 0.4070 +142 7113 0.4160 +142 7124 0.7350 +142 7132 0.4670 +142 7150 0.9360 +142 7153 0.7420 +142 7155 0.7240 +142 7157 0.9720 +142 7158 0.8790 +142 7182 0.5590 +142 7184 0.4020 +142 7189 0.4020 +142 7249 0.4140 +142 7295 0.4120 +142 7298 0.4400 +142 7311 0.5170 +142 7314 0.5660 +142 7316 0.5810 +142 7329 0.8200 +142 7334 0.6420 +142 7336 0.5530 +142 7341 0.7520 +142 7374 0.4860 +142 7391 0.6120 +142 7414 0.4910 +142 7416 0.4740 +142 7443 0.6400 +142 7465 0.6850 +142 7468 0.5980 +142 7486 0.9150 +142 7494 0.4470 +142 7507 0.7980 +142 7508 0.9280 +142 7514 0.6480 +142 7515 0.9990 +142 7516 0.4380 +142 7517 0.4890 +142 7518 0.6440 +142 7520 0.9960 +142 7528 0.7560 +142 7837 0.7330 +142 7849 0.4240 +142 7965 0.6380 +142 7979 0.5310 +142 8091 0.5690 +142 8237 0.6200 +142 8243 0.5150 +142 8289 0.6460 +142 8290 0.7570 +142 8295 0.4120 +142 8337 0.6640 +142 8338 0.5410 +142 8340 0.4040 +142 8341 0.4060 +142 8342 0.4070 +142 8345 0.4790 +142 8347 0.5550 +142 8348 0.4500 +142 8349 0.7590 +142 8350 0.6760 +142 8356 0.7750 +142 8358 0.4330 +142 8361 0.9190 +142 8364 0.4840 +142 8369 0.7380 +142 8408 0.6850 +142 8438 0.5130 +142 8450 0.6100 +142 8451 0.7460 +142 8454 0.4350 +142 8467 0.5360 +142 8473 0.4270 +142 8505 0.9920 +142 8517 0.7470 +142 8554 0.5680 +142 8563 0.5870 +142 8565 0.4490 +142 8658 0.8310 +142 8678 0.6690 +142 8717 0.4180 +142 8737 0.6900 +142 8743 0.4790 +142 8772 0.5950 +142 8795 0.6640 +142 8797 0.5970 +142 8815 0.8120 +142 8837 0.6270 +142 8841 0.4710 +142 8842 0.4500 +142 8850 0.5120 +142 8878 0.6910 +142 8900 0.6340 +142 8914 0.9900 +142 8970 0.4150 +142 8988 0.4450 +142 9025 0.5280 +142 9040 0.4020 +142 9097 0.6390 +142 9131 0.6220 +142 9140 0.4100 +142 9156 0.7810 +142 9184 0.6890 +142 9188 0.5730 +142 9201 0.4130 +142 9212 0.5850 +142 9320 0.4670 +142 9401 0.7870 +142 9429 0.4780 +142 9451 0.6550 +142 9474 0.6480 +142 9531 0.6110 +142 9555 0.9810 +142 9557 0.9770 +142 9577 0.4760 +142 9588 0.4750 +142 9656 0.5860 +142 9734 0.4890 +142 9759 0.4240 +142 9782 0.4750 +142 9817 0.4810 +142 9918 0.4280 +142 9961 0.7700 +142 9967 0.4350 +142 9978 0.6660 +142 9984 0.4870 +142 10001 0.8060 +142 10013 0.4720 +142 10014 0.4410 +142 10018 0.6960 +142 10038 0.9650 +142 10039 0.6280 +142 10075 0.4300 +142 10111 0.6190 +142 10135 0.5670 +142 10155 0.5350 +142 10273 0.5810 +142 10278 0.4180 +142 10401 0.4900 +142 10413 0.4320 +142 10419 0.4060 +142 10459 0.5450 +142 10481 0.4170 +142 10498 0.4220 +142 10524 0.4080 +142 10533 0.5310 +142 10614 0.4030 +142 10625 0.4280 +142 10645 0.4970 +142 10664 0.9240 +142 10721 0.8400 +142 10801 0.4300 +142 10856 0.4660 +142 10891 0.4530 +142 10989 0.5610 +142 11009 0.4240 +142 11035 0.4570 +142 11060 0.5760 +142 11073 0.6450 +142 11124 0.4260 +142 11176 0.5190 +142 11198 0.6940 +142 11200 0.7750 +142 11284 0.7490 +142 22880 0.4950 +142 22916 0.6020 +142 22926 0.5460 +142 22933 0.7430 +142 22976 0.5140 +142 23028 0.4640 +142 23057 0.4240 +142 23076 0.5790 +142 23090 0.5520 +142 23151 0.5420 +142 23361 0.5420 +142 23408 0.4090 +142 23409 0.6300 +142 23410 0.5040 +142 23411 0.8440 +142 23468 0.4420 +142 23476 0.7660 +142 24137 0.4860 +142 25788 0.4420 +142 25976 0.8620 +142 26168 0.4110 +142 26277 0.5010 +142 27113 0.4470 +142 27286 0.4080 +142 27301 0.5590 +142 27302 0.6710 +142 28992 0.8680 +142 28996 0.4330 +142 29114 0.4630 +142 29117 0.4080 +142 29126 0.6240 +142 29128 0.7400 +142 29843 0.4160 +142 29935 0.5100 +142 50485 0.4360 +142 51115 0.4280 +142 51231 0.5460 +142 51547 0.6120 +142 51548 0.6830 +142 51567 0.4590 +142 51588 0.9110 +142 51710 0.5420 +142 51720 0.6240 +142 51755 0.6030 +142 54145 0.4120 +142 54205 0.8920 +142 54386 0.5700 +142 54606 0.4960 +142 54625 0.7930 +142 54778 0.4980 +142 54840 0.9170 +142 54936 0.8690 +142 54956 0.5870 +142 54969 0.9790 +142 55010 0.8160 +142 55177 0.4360 +142 55193 0.4530 +142 55215 0.5100 +142 55226 0.4860 +142 55247 0.5020 +142 55506 0.4430 +142 55636 0.5490 +142 55701 0.4780 +142 55743 0.8970 +142 55746 0.5130 +142 55775 0.9090 +142 56829 0.8940 +142 56852 0.4950 +142 56897 0.4380 +142 56916 0.4610 +142 56965 0.4890 +142 57097 0.4750 +142 57187 0.4060 +142 57509 0.4180 +142 57634 0.5450 +142 57761 0.4440 +142 63967 0.4010 +142 64750 0.5710 +142 64761 0.8860 +142 64802 0.6160 +142 64858 0.4470 +142 65018 0.4230 +142 79661 0.7600 +142 79680 0.4470 +142 79728 0.7250 +142 79840 0.4520 +142 79923 0.4370 +142 79968 0.7760 +142 79991 0.4780 +142 80198 0.4560 +142 80351 0.7840 +142 80818 0.5420 +142 81552 0.4930 +142 81611 0.4750 +142 81620 0.4080 +142 81631 0.6720 +142 81669 0.5140 +142 81847 0.9390 +142 83666 0.8820 +142 83932 0.4580 +142 83990 0.4490 +142 84142 0.5520 +142 84260 0.5360 +142 84335 0.4040 +142 84557 0.6220 +142 84823 0.5330 +142 84875 0.7640 +142 85236 0.4090 +142 85456 0.5210 +142 91404 0.4760 +142 91607 0.6690 +142 92552 0.4180 +142 93100 0.4060 +142 115004 0.4470 +142 115426 0.5570 +142 115560 0.5390 +142 116447 0.6880 +142 123169 0.4310 +142 128312 0.5080 +142 131870 0.4910 +142 133482 0.4710 +142 137902 0.7320 +142 140733 0.4280 +142 148266 0.5430 +142 151393 0.4240 +142 151636 0.4660 +142 155061 0.4110 +142 165631 0.7880 +142 165918 0.6160 +142 197259 0.4850 +142 200558 0.9190 +142 203068 0.4230 +142 221443 0.6270 +142 255626 0.6680 +142 255738 0.4230 +142 284390 0.5420 +142 286257 0.5260 +142 286436 0.4060 +142 378708 0.4560 +142 404672 0.6120 +142 440093 0.6700 +142 440686 0.6700 +142 440689 0.4170 +142 493869 0.4180 +142 642636 0.4080 +142 653145 0.5530 +142 653604 0.7270 +142 100532731 0.5770 +142 100533467 0.5640 +142 114483833 0.4060 +143 836 0.9150 +143 838 0.4140 +143 840 0.9130 +143 842 0.9110 +143 2908 0.4050 +143 3002 0.9040 +143 3980 0.4240 +143 4363 0.4120 +143 5571 0.4310 +143 5728 0.5420 +143 7011 0.9990 +143 7515 0.4740 +143 7750 0.6990 +143 8505 0.7030 +143 8795 0.4180 +143 9696 0.4200 +143 9961 0.9990 +143 10039 0.4520 +143 10223 0.4100 +143 10260 0.4060 +143 25976 0.5490 +143 28992 0.4330 +143 54625 0.6610 +143 54936 0.4360 +143 54956 0.7800 +143 54969 0.4580 +143 56829 0.6330 +143 56965 0.7370 +143 57097 0.6270 +143 64326 0.4400 +143 64761 0.6540 +143 79668 0.6430 +143 80351 0.4150 +143 83666 0.7230 +143 84875 0.7110 +143 89978 0.4320 +143 140733 0.4130 +143 165631 0.7450 +143 221443 0.4140 +146 147 0.9490 +146 148 0.9090 +146 150 0.5230 +146 151 0.5140 +146 152 0.4610 +146 156 0.6460 +146 157 0.4190 +146 183 0.7610 +146 185 0.7700 +146 186 0.4230 +146 409 0.5780 +146 552 0.4790 +146 695 0.5130 +146 1137 0.5110 +146 1138 0.4420 +146 1400 0.4380 +146 1621 0.4180 +146 1636 0.4280 +146 1756 0.7120 +146 1808 0.4550 +146 1812 0.4480 +146 1813 0.4810 +146 1815 0.4520 +146 1837 0.7490 +146 1906 0.5360 +146 1907 0.4210 +146 1908 0.5010 +146 1960 0.4560 +146 2767 0.9610 +146 2768 0.9600 +146 2769 0.7100 +146 2776 0.9830 +146 2782 0.6240 +146 2783 0.6240 +146 2784 0.7210 +146 2785 0.5620 +146 2786 0.5970 +146 2787 0.5540 +146 2788 0.5660 +146 2790 0.5410 +146 2791 0.5710 +146 2792 0.5810 +146 2793 0.5930 +146 2869 0.5630 +146 2897 0.6180 +146 3032 0.4910 +146 3059 0.4360 +146 3356 0.4940 +146 3359 0.4100 +146 3779 0.4980 +146 3805 0.4010 +146 5021 0.5140 +146 5048 0.4240 +146 5049 0.6470 +146 5330 0.6020 +146 5331 0.6260 +146 5595 0.4120 +146 6261 0.5060 +146 6295 0.5010 +146 6530 0.5300 +146 6532 0.4500 +146 6640 0.7490 +146 6641 0.8490 +146 6645 0.8740 +146 6863 0.4100 +146 6915 0.7920 +146 7204 0.5190 +146 7402 0.8470 +146 7852 0.4060 +146 7976 0.4280 +146 8671 0.4030 +146 8727 0.6660 +146 8775 0.4980 +146 8802 0.5650 +146 8997 0.5110 +146 9138 0.5230 +146 9630 0.7160 +146 10456 0.4220 +146 10613 0.4250 +146 10672 0.9610 +146 10681 0.6350 +146 10800 0.4410 +146 10859 0.4230 +146 23236 0.6120 +146 23365 0.7760 +146 23513 0.6040 +146 51764 0.5460 +146 54331 0.6020 +146 54498 0.4180 +146 55970 0.5820 +146 56666 0.4400 +146 57105 0.4510 +146 59345 0.6350 +146 79096 0.4080 +146 83857 0.4290 +146 84975 0.4060 +146 94235 0.5640 +146 115557 0.5710 +147 148 0.9570 +147 151 0.4200 +147 152 0.5150 +147 153 0.4490 +147 156 0.6930 +147 157 0.4060 +147 183 0.7740 +147 185 0.5630 +147 408 0.7190 +147 409 0.7170 +147 552 0.4240 +147 554 0.4220 +147 695 0.5130 +147 708 0.4530 +147 1137 0.4580 +147 1173 0.4040 +147 1621 0.4160 +147 1815 0.4470 +147 1906 0.5670 +147 1908 0.4290 +147 2767 0.9270 +147 2768 0.9250 +147 2769 0.7520 +147 2775 0.4700 +147 2776 0.9760 +147 2782 0.6240 +147 2783 0.6240 +147 2784 0.6490 +147 2785 0.5720 +147 2786 0.5670 +147 2787 0.5410 +147 2788 0.5540 +147 2790 0.5500 +147 2791 0.5950 +147 2792 0.6220 +147 2793 0.6680 +147 2869 0.6020 +147 3032 0.4950 +147 3359 0.4350 +147 3628 0.7710 +147 3717 0.4590 +147 4886 0.4240 +147 5330 0.6240 +147 5331 0.5770 +147 5333 0.4530 +147 6295 0.4370 +147 6530 0.5670 +147 6531 0.5260 +147 6532 0.5250 +147 6915 0.8070 +147 7051 0.4100 +147 7204 0.5290 +147 7253 0.4840 +147 7852 0.6370 +147 8671 0.4180 +147 8997 0.5090 +147 9138 0.4990 +147 9177 0.4150 +147 9630 0.7160 +147 10672 0.9200 +147 10681 0.6230 +147 10800 0.4320 +147 23236 0.6450 +147 23365 0.5150 +147 51764 0.5580 +147 54331 0.6020 +147 55970 0.5720 +147 57105 0.4320 +147 59345 0.6240 +147 84687 0.4040 +147 94235 0.5630 +147 115557 0.5350 +148 150 0.5000 +148 151 0.4540 +148 154 0.5170 +148 156 0.6340 +148 183 0.7700 +148 185 0.5640 +148 408 0.5150 +148 409 0.6820 +148 552 0.5900 +148 623 0.4100 +148 649 0.5940 +148 695 0.5130 +148 1003 0.4360 +148 1137 0.4140 +148 1621 0.4860 +148 1812 0.4360 +148 1906 0.5360 +148 1908 0.4660 +148 2017 0.4780 +148 2693 0.4140 +148 2767 0.9690 +148 2768 0.9680 +148 2769 0.7010 +148 2776 0.9870 +148 2782 0.6240 +148 2783 0.6240 +148 2784 0.7270 +148 2785 0.5620 +148 2786 0.5800 +148 2787 0.5410 +148 2788 0.5530 +148 2790 0.5410 +148 2791 0.5640 +148 2792 0.5760 +148 2793 0.5680 +148 2869 0.5720 +148 2897 0.5920 +148 3059 0.5200 +148 3356 0.4910 +148 3358 0.4780 +148 3579 0.4840 +148 3674 0.4150 +148 4128 0.4100 +148 4747 0.4280 +148 5330 0.5860 +148 5331 0.5330 +148 5997 0.5290 +148 6261 0.4970 +148 6295 0.5380 +148 6530 0.5330 +148 6532 0.4390 +148 6863 0.4220 +148 6915 0.4560 +148 7204 0.5170 +148 7852 0.7950 +148 8775 0.5720 +148 8802 0.5120 +148 8997 0.5040 +148 9138 0.4990 +148 9177 0.4020 +148 9630 0.7000 +148 10456 0.4890 +148 10672 0.9680 +148 10681 0.6230 +148 10800 0.4320 +148 23236 0.6260 +148 23365 0.8250 +148 51764 0.5480 +148 54331 0.5700 +148 55079 0.4260 +148 55879 0.5150 +148 55970 0.5540 +148 57007 0.6430 +148 57105 0.4460 +148 59345 0.6380 +148 94235 0.5560 +148 115557 0.4990 +150 151 0.6580 +150 152 0.7810 +150 156 0.5860 +150 157 0.4260 +150 183 0.5930 +150 186 0.5420 +150 407 0.5720 +150 408 0.4770 +150 409 0.6770 +150 623 0.5550 +150 624 0.5620 +150 627 0.4030 +150 1128 0.4100 +150 1131 0.4190 +150 1137 0.4070 +150 1234 0.4710 +150 1236 0.4430 +150 1312 0.7200 +150 1607 0.5230 +150 1621 0.7110 +150 1636 0.4290 +150 1795 0.4220 +150 1812 0.4320 +150 1880 0.4040 +150 2357 0.4550 +150 2359 0.4090 +150 2702 0.4370 +150 2767 0.9140 +150 2768 0.9240 +150 2770 0.6370 +150 2771 0.7110 +150 2775 0.9560 +150 2776 0.9590 +150 2781 0.6510 +150 2782 0.9780 +150 2783 0.7220 +150 2784 0.7820 +150 2785 0.5470 +150 2786 0.5980 +150 2787 0.5410 +150 2788 0.7080 +150 2790 0.5570 +150 2791 0.5730 +150 2792 0.5410 +150 2793 0.6050 +150 2869 0.5980 +150 2908 0.4730 +150 2915 0.5140 +150 2925 0.4370 +150 3060 0.4860 +150 3358 0.4120 +150 3359 0.4680 +150 3577 0.4330 +150 3579 0.4250 +150 3782 0.6530 +150 3827 0.4610 +150 4128 0.6190 +150 4129 0.4330 +150 4283 0.4340 +150 4988 0.6720 +150 5578 0.5350 +150 5579 0.5540 +150 5580 0.5430 +150 5581 0.5300 +150 5582 0.5170 +150 5583 0.5520 +150 5588 0.5250 +150 5742 0.5190 +150 6004 0.5810 +150 6295 0.6090 +150 6334 0.6020 +150 6363 0.4820 +150 6366 0.4530 +150 6440 0.4110 +150 6530 0.8020 +150 6531 0.8320 +150 6532 0.7160 +150 6616 0.6910 +150 6653 0.4810 +150 6714 0.5470 +150 6863 0.5310 +150 6934 0.4140 +150 7166 0.4450 +150 7223 0.5040 +150 7534 0.4080 +150 8601 0.5900 +150 8801 0.5160 +150 9177 0.4550 +150 10663 0.4030 +150 10672 0.9180 +150 10681 0.6690 +150 26086 0.4390 +150 26575 0.5720 +150 51764 0.5450 +150 53829 0.4610 +150 54331 0.9320 +150 54587 0.4890 +150 55970 0.6650 +150 59345 0.6580 +150 63940 0.4780 +150 64805 0.5690 +150 84687 0.6740 +150 94235 0.5420 +150 121278 0.4990 +150 126006 0.4030 +150 169792 0.4250 +150 170572 0.5460 +150 196883 0.6000 +150 285195 0.4830 +150 375033 0.5590 +150 388125 0.5700 +150 392636 0.4310 +151 152 0.4960 +151 183 0.5940 +151 186 0.5490 +151 338 0.4020 +151 554 0.4320 +151 1621 0.4800 +151 1812 0.4300 +151 1813 0.4510 +151 1844 0.4240 +151 2767 0.9100 +151 2768 0.9090 +151 2776 0.9250 +151 2778 0.4140 +151 2781 0.5460 +151 2782 0.6380 +151 2783 0.6560 +151 2784 0.6600 +151 2785 0.5500 +151 2786 0.6280 +151 2787 0.5410 +151 2788 0.5540 +151 2790 0.5410 +151 2791 0.5410 +151 2792 0.5410 +151 2793 0.5550 +151 4218 0.5360 +151 4543 0.4450 +151 5578 0.5330 +151 5579 0.5430 +151 5580 0.5280 +151 5581 0.5130 +151 5582 0.5240 +151 5583 0.5350 +151 5588 0.5190 +151 5742 0.4940 +151 5949 0.4840 +151 6004 0.5040 +151 6530 0.6060 +151 6531 0.5580 +151 6532 0.5990 +151 6714 0.5180 +151 7450 0.4920 +151 8601 0.5250 +151 9294 0.4030 +151 9632 0.7450 +151 9871 0.5310 +151 10427 0.6100 +151 10672 0.9090 +151 10681 0.6460 +151 10802 0.4930 +151 23062 0.4070 +151 23163 0.4990 +151 25837 0.4410 +151 26086 0.4220 +151 26088 0.4020 +151 26575 0.5100 +151 51764 0.5410 +151 54331 0.5860 +151 55970 0.5540 +151 59345 0.6320 +151 63940 0.4150 +151 84687 0.5880 +151 94235 0.5410 +151 196883 0.5750 +151 431705 0.4030 +152 154 0.5750 +152 183 0.7480 +152 185 0.6370 +152 186 0.5610 +152 408 0.4290 +152 1058 0.4270 +152 1137 0.4300 +152 1312 0.4050 +152 1621 0.6730 +152 1813 0.4920 +152 2137 0.4080 +152 2668 0.4440 +152 2767 0.9140 +152 2768 0.9120 +152 2770 0.6200 +152 2771 0.5900 +152 2776 0.9530 +152 2781 0.5510 +152 2782 0.6320 +152 2783 0.6320 +152 2784 0.7030 +152 2785 0.5470 +152 2786 0.5950 +152 2787 0.5410 +152 2788 0.6450 +152 2790 0.5410 +152 2791 0.5540 +152 2792 0.5410 +152 2793 0.5720 +152 2869 0.4890 +152 2902 0.5920 +152 2916 0.4930 +152 3606 0.4220 +152 4915 0.4360 +152 4985 0.4250 +152 5020 0.4550 +152 5023 0.4510 +152 5578 0.5420 +152 5579 0.5310 +152 5580 0.5170 +152 5581 0.5130 +152 5582 0.5210 +152 5583 0.5950 +152 5588 0.5250 +152 5742 0.4930 +152 5743 0.4480 +152 5979 0.4060 +152 6004 0.5380 +152 6363 0.4560 +152 6440 0.4100 +152 6530 0.7180 +152 6531 0.7970 +152 6532 0.6560 +152 6714 0.5300 +152 7525 0.6920 +152 8601 0.5920 +152 9177 0.4330 +152 9290 0.4560 +152 9898 0.4420 +152 10672 0.9120 +152 10681 0.6320 +152 23037 0.4500 +152 23276 0.4610 +152 26086 0.4420 +152 26575 0.5090 +152 51764 0.5500 +152 54331 0.6050 +152 55970 0.5770 +152 59345 0.6320 +152 63940 0.4180 +152 84687 0.4050 +152 94235 0.5410 +152 151887 0.4430 +152 153090 0.4100 +152 196883 0.5700 +153 154 0.9560 +153 155 0.9070 +153 156 0.6280 +153 157 0.4380 +153 183 0.6130 +153 185 0.5440 +153 207 0.4030 +153 408 0.9660 +153 409 0.8280 +153 488 0.4460 +153 623 0.5430 +153 775 0.4830 +153 817 0.7700 +153 1394 0.4040 +153 1565 0.4500 +153 1621 0.6260 +153 1636 0.6050 +153 1739 0.5440 +153 1742 0.9530 +153 1815 0.6720 +153 1906 0.4550 +153 2034 0.4230 +153 2099 0.5040 +153 2488 0.9050 +153 2641 0.9270 +153 2695 0.9340 +153 2696 0.5120 +153 2702 0.4440 +153 2768 0.6000 +153 2770 0.9230 +153 2771 0.9230 +153 2773 0.9210 +153 2774 0.8430 +153 2776 0.6610 +153 2778 0.9790 +153 2782 0.4900 +153 2783 0.4800 +153 2784 0.7670 +153 2868 0.4980 +153 2869 0.7520 +153 2903 0.4110 +153 2913 0.4660 +153 3357 0.4920 +153 3358 0.4560 +153 3359 0.4090 +153 3630 0.5080 +153 3757 0.4210 +153 3763 0.4690 +153 3779 0.5430 +153 3782 0.5840 +153 3973 0.4990 +153 4128 0.4010 +153 4142 0.4980 +153 4624 0.5350 +153 4878 0.9470 +153 4922 0.4960 +153 5141 0.4060 +153 5144 0.4940 +153 5348 0.5310 +153 5443 0.9320 +153 5467 0.4040 +153 5566 0.6080 +153 5567 0.6070 +153 5568 0.7340 +153 5867 0.4150 +153 5972 0.7470 +153 6010 0.6500 +153 6262 0.5280 +153 6295 0.7380 +153 6456 0.4750 +153 6530 0.4670 +153 6531 0.6300 +153 6714 0.6170 +153 6755 0.4520 +153 6975 0.4180 +153 7139 0.5480 +153 7170 0.7080 +153 7252 0.9060 +153 7350 0.6090 +153 7425 0.5830 +153 7432 0.9210 +153 7531 0.4430 +153 9177 0.4310 +153 9737 0.4350 +153 9863 0.7990 +153 10411 0.4690 +153 10755 0.6140 +153 11069 0.4100 +153 54901 0.4200 +153 55088 0.4480 +153 57105 0.4790 +153 57120 0.7810 +153 59345 0.4800 +153 260425 0.6310 +153 283383 0.5500 +153 374354 0.4500 +153 102723407 0.9070 +154 155 0.9400 +154 156 0.9830 +154 157 0.8250 +154 160 0.5020 +154 161 0.5180 +154 163 0.7520 +154 183 0.7010 +154 185 0.8730 +154 207 0.6690 +154 213 0.4320 +154 217 0.4240 +154 309 0.4090 +154 338 0.7440 +154 345 0.4450 +154 351 0.5910 +154 407 0.7550 +154 408 0.9990 +154 409 0.9990 +154 501 0.5440 +154 551 0.5590 +154 554 0.7550 +154 627 0.4520 +154 682 0.7800 +154 775 0.9370 +154 783 0.4010 +154 808 0.4530 +154 810 0.4430 +154 815 0.4060 +154 859 0.8500 +154 920 0.4770 +154 1017 0.4380 +154 1080 0.6680 +154 1129 0.6400 +154 1173 0.5340 +154 1175 0.5490 +154 1211 0.5110 +154 1212 0.5140 +154 1236 0.5620 +154 1268 0.4900 +154 1312 0.5110 +154 1385 0.5540 +154 1392 0.6180 +154 1394 0.6280 +154 1445 0.4510 +154 1601 0.5320 +154 1621 0.4800 +154 1636 0.5520 +154 1742 0.7950 +154 1814 0.4830 +154 1815 0.4770 +154 1856 0.4650 +154 1906 0.8120 +154 1907 0.6990 +154 1908 0.7280 +154 1950 0.4990 +154 1956 0.6250 +154 1967 0.5790 +154 2060 0.6020 +154 2064 0.8220 +154 2149 0.4420 +154 2316 0.4790 +154 2492 0.4940 +154 2535 0.4400 +154 2597 0.4480 +154 2641 0.6450 +154 2642 0.4490 +154 2670 0.4400 +154 2696 0.5640 +154 2740 0.5700 +154 2768 0.4970 +154 2769 0.6800 +154 2770 0.9490 +154 2771 0.9480 +154 2773 0.9250 +154 2774 0.8390 +154 2775 0.4540 +154 2776 0.6430 +154 2778 0.9930 +154 2780 0.4170 +154 2782 0.6820 +154 2783 0.4870 +154 2784 0.7030 +154 2868 0.6640 +154 2869 0.9100 +154 2870 0.9220 +154 2885 0.7910 +154 2890 0.7060 +154 2903 0.5060 +154 2904 0.5030 +154 2908 0.7270 +154 2912 0.4110 +154 2915 0.6180 +154 3156 0.4690 +154 3267 0.5390 +154 3269 0.4940 +154 3358 0.6410 +154 3383 0.5430 +154 3458 0.4280 +154 3460 0.4090 +154 3553 0.5030 +154 3565 0.4330 +154 3569 0.5200 +154 3576 0.5480 +154 3586 0.4210 +154 3596 0.4180 +154 3630 0.6270 +154 3737 0.4780 +154 3760 0.6570 +154 3762 0.5900 +154 3763 0.5210 +154 3779 0.4770 +154 3827 0.6300 +154 3845 0.4090 +154 3949 0.5000 +154 3952 0.4490 +154 3973 0.5340 +154 4000 0.4590 +154 4036 0.5120 +154 4067 0.4200 +154 4128 0.4020 +154 4193 0.6750 +154 4218 0.7890 +154 4318 0.4030 +154 4627 0.4070 +154 4734 0.8150 +154 4792 0.5380 +154 4846 0.4360 +154 4852 0.7970 +154 4878 0.4090 +154 4905 0.4700 +154 4914 0.4510 +154 4922 0.5240 +154 4985 0.5010 +154 4988 0.7430 +154 5020 0.7860 +154 5021 0.5420 +154 5028 0.4080 +154 5141 0.7830 +154 5142 0.4310 +154 5144 0.7450 +154 5174 0.5370 +154 5179 0.4440 +154 5265 0.4070 +154 5443 0.6800 +154 5468 0.4860 +154 5566 0.8200 +154 5567 0.8190 +154 5568 0.8180 +154 5595 0.5060 +154 5621 0.4470 +154 5663 0.4050 +154 5731 0.7040 +154 5743 0.4520 +154 5744 0.4110 +154 5745 0.5880 +154 5867 0.5940 +154 5869 0.4070 +154 5962 0.6160 +154 5971 0.4240 +154 5972 0.5070 +154 5997 0.4370 +154 6003 0.5590 +154 6010 0.6080 +154 6011 0.6290 +154 6262 0.6440 +154 6295 0.9850 +154 6337 0.5250 +154 6338 0.4710 +154 6453 0.5320 +154 6513 0.4100 +154 6530 0.4710 +154 6532 0.4690 +154 6559 0.4910 +154 6608 0.6650 +154 6714 0.9550 +154 6750 0.7540 +154 6844 0.5370 +154 6845 0.5110 +154 6863 0.4840 +154 6869 0.4940 +154 7037 0.5570 +154 7049 0.4030 +154 7054 0.4930 +154 7124 0.7180 +154 7133 0.4500 +154 7157 0.5320 +154 7170 0.8250 +154 7253 0.5930 +154 7350 0.4570 +154 7423 0.7090 +154 7428 0.6100 +154 7430 0.7140 +154 7474 0.4710 +154 7852 0.8260 +154 8165 0.6460 +154 8218 0.6370 +154 8301 0.5260 +154 8321 0.4250 +154 8322 0.4810 +154 8411 0.4560 +154 8600 0.5570 +154 8673 0.5200 +154 8766 0.5850 +154 8777 0.4600 +154 8786 0.4100 +154 8801 0.7400 +154 8802 0.6770 +154 8972 0.4190 +154 9146 0.5540 +154 9341 0.5160 +154 9351 0.8540 +154 9360 0.4660 +154 9368 0.9970 +154 9459 0.4360 +154 9495 0.8770 +154 9559 0.4340 +154 9590 0.9830 +154 9737 0.7620 +154 9815 0.4060 +154 9892 0.5500 +154 10287 0.4060 +154 10411 0.7560 +154 10868 0.9260 +154 10874 0.4050 +154 10891 0.4100 +154 11069 0.7530 +154 11318 0.4030 +154 22848 0.5340 +154 22905 0.6920 +154 23032 0.9260 +154 23149 0.5270 +154 23560 0.5560 +154 23621 0.4530 +154 25977 0.4990 +154 26119 0.5010 +154 29924 0.5420 +154 29978 0.5180 +154 50618 0.5440 +154 51083 0.4580 +154 51107 0.4570 +154 51257 0.4340 +154 51738 0.7730 +154 51806 0.4430 +154 54331 0.4740 +154 54587 0.5660 +154 54978 0.4090 +154 55707 0.5070 +154 55843 0.4070 +154 55914 0.4910 +154 56893 0.4550 +154 57085 0.4760 +154 57105 0.5000 +154 57561 0.9340 +154 59345 0.5400 +154 64805 0.4630 +154 65266 0.5200 +154 79180 0.4080 +154 81609 0.9580 +154 84251 0.5330 +154 84666 0.4350 +154 85021 0.4990 +154 91860 0.4400 +154 92714 0.4490 +154 112399 0.4180 +154 115548 0.5120 +154 131890 0.4260 +154 163688 0.4410 +154 260425 0.4120 +154 285489 0.4540 +154 104909134 0.5670 +155 156 0.4150 +155 181 0.4510 +155 207 0.4040 +155 408 0.4470 +155 409 0.4300 +155 563 0.6620 +155 627 0.5210 +155 656 0.4980 +155 796 0.4400 +155 857 0.4890 +155 948 0.4070 +155 960 0.4120 +155 1050 0.4440 +155 1149 0.7210 +155 1346 0.4790 +155 1375 0.4900 +155 1385 0.4320 +155 1621 0.5770 +155 1734 0.6760 +155 1949 0.4240 +155 2167 0.5070 +155 2169 0.5360 +155 2194 0.4260 +155 2492 0.4530 +155 2641 0.4020 +155 2696 0.5220 +155 2740 0.4400 +155 2770 0.9150 +155 2771 0.9120 +155 2773 0.9140 +155 2774 0.7600 +155 2778 0.9410 +155 2784 0.6020 +155 2826 0.4860 +155 3351 0.4690 +155 3358 0.4300 +155 3569 0.4160 +155 3630 0.6860 +155 3667 0.4160 +155 3952 0.6830 +155 3953 0.4320 +155 3991 0.8330 +155 4023 0.4800 +155 4617 0.5140 +155 4842 0.4410 +155 4846 0.4430 +155 4852 0.4500 +155 5346 0.6140 +155 5368 0.4580 +155 5443 0.4760 +155 5465 0.7390 +155 5467 0.5480 +155 5468 0.6950 +155 5566 0.6110 +155 5567 0.6040 +155 5568 0.6050 +155 5744 0.4590 +155 5745 0.4110 +155 5998 0.4330 +155 6295 0.4100 +155 6387 0.5660 +155 6517 0.5290 +155 6714 0.8940 +155 6899 0.4510 +155 7054 0.4980 +155 7350 0.9430 +155 7351 0.7680 +155 7352 0.7280 +155 7425 0.6100 +155 8654 0.4010 +155 9172 0.4020 +155 9370 0.7680 +155 10891 0.7210 +155 26291 0.7690 +155 51099 0.4330 +155 56729 0.6340 +155 57104 0.6470 +155 57105 0.4300 +155 60386 0.4750 +155 63976 0.7410 +155 64641 0.4410 +155 79068 0.4100 +155 79602 0.4970 +155 83401 0.5760 +155 84666 0.5240 +155 145957 0.4180 +155 219623 0.6160 +155 252995 0.5050 +156 157 0.9610 +156 183 0.7270 +156 185 0.7990 +156 187 0.6770 +156 207 0.7780 +156 301 0.4990 +156 351 0.5750 +156 387 0.6060 +156 407 0.8390 +156 408 0.9980 +156 409 0.9990 +156 551 0.5730 +156 552 0.5980 +156 553 0.5620 +156 554 0.6710 +156 596 0.4680 +156 623 0.5620 +156 624 0.5960 +156 629 0.4020 +156 643 0.7010 +156 680 0.5410 +156 808 0.4780 +156 810 0.4810 +156 836 0.4610 +156 846 0.5750 +156 857 0.6810 +156 858 0.4660 +156 885 0.5450 +156 886 0.5480 +156 887 0.5480 +156 1128 0.5790 +156 1131 0.5410 +156 1133 0.5190 +156 1230 0.7160 +156 1232 0.6850 +156 1233 0.7570 +156 1234 0.7410 +156 1235 0.6750 +156 1236 0.7330 +156 1237 0.6780 +156 1241 0.6160 +156 1452 0.8710 +156 1453 0.9140 +156 1454 0.9110 +156 1455 0.9180 +156 1456 0.9020 +156 1524 0.7040 +156 1656 0.4710 +156 1813 0.5310 +156 1902 0.6370 +156 1906 0.7140 +156 1907 0.4990 +156 1908 0.5300 +156 1909 0.6680 +156 1910 0.7290 +156 1956 0.6600 +156 2121 0.5960 +156 2147 0.5050 +156 2149 0.5730 +156 2150 0.5280 +156 2151 0.5000 +156 2185 0.4690 +156 2357 0.6760 +156 2358 0.6100 +156 2492 0.4190 +156 2520 0.4990 +156 2641 0.5960 +156 2642 0.5550 +156 2693 0.5740 +156 2735 0.5630 +156 2767 0.8250 +156 2768 0.5000 +156 2769 0.8780 +156 2775 0.4830 +156 2776 0.9990 +156 2782 0.9900 +156 2783 0.8750 +156 2784 0.7630 +156 2785 0.5650 +156 2786 0.6600 +156 2787 0.5660 +156 2788 0.5690 +156 2790 0.5650 +156 2791 0.5930 +156 2792 0.5930 +156 2793 0.6700 +156 2796 0.5390 +156 2797 0.5140 +156 2798 0.5690 +156 2826 0.6710 +156 2828 0.5700 +156 2829 0.6820 +156 2833 0.7170 +156 2837 0.5400 +156 2840 0.6760 +156 2846 0.5390 +156 2847 0.5570 +156 2862 0.5400 +156 2863 0.5830 +156 2864 0.5620 +156 2865 0.5500 +156 2867 0.5500 +156 2869 0.6080 +156 2870 0.6280 +156 2911 0.7370 +156 2915 0.6460 +156 2920 0.4630 +156 2922 0.5450 +156 2925 0.5900 +156 3060 0.5430 +156 3061 0.6230 +156 3062 0.6010 +156 3269 0.6360 +156 3356 0.6360 +156 3357 0.5670 +156 3358 0.5760 +156 3549 0.5120 +156 3577 0.8370 +156 3579 0.9560 +156 3667 0.5480 +156 3760 0.4370 +156 3814 0.5340 +156 3827 0.7690 +156 4193 0.8020 +156 4295 0.5000 +156 4792 0.4530 +156 4828 0.5110 +156 4829 0.5340 +156 4922 0.5610 +156 4923 0.5940 +156 4935 0.4990 +156 4988 0.9510 +156 4991 0.6770 +156 4992 0.6700 +156 4993 0.6500 +156 4994 0.6750 +156 5020 0.5720 +156 5021 0.7480 +156 5028 0.5480 +156 5029 0.6000 +156 5031 0.5260 +156 5032 0.5350 +156 5037 0.9430 +156 5082 0.4390 +156 5132 0.6470 +156 5141 0.4140 +156 5148 0.4450 +156 5294 0.4040 +156 5331 0.4300 +156 5341 0.4850 +156 5367 0.5290 +156 5578 0.4620 +156 5579 0.5320 +156 5580 0.4280 +156 5582 0.4060 +156 5595 0.5010 +156 5604 0.8260 +156 5724 0.5760 +156 5727 0.8130 +156 5731 0.6030 +156 5737 0.5290 +156 5792 0.4650 +156 5829 0.5540 +156 5957 0.4220 +156 5962 0.4610 +156 5996 0.7190 +156 5997 0.4520 +156 5999 0.7500 +156 6000 0.7760 +156 6001 0.7600 +156 6002 0.7620 +156 6003 0.7690 +156 6004 0.7370 +156 6010 0.9080 +156 6288 0.4990 +156 6295 0.9110 +156 6368 0.4990 +156 6375 0.5130 +156 6469 0.5670 +156 6608 0.9900 +156 6714 0.5970 +156 6846 0.5130 +156 6863 0.6080 +156 6865 0.5210 +156 6869 0.5720 +156 6870 0.5200 +156 6915 0.5530 +156 7186 0.6460 +156 7200 0.5480 +156 7201 0.6490 +156 7430 0.4760 +156 7852 0.7870 +156 7932 0.6500 +156 8111 0.5790 +156 8383 0.6500 +156 8386 0.6700 +156 8387 0.6700 +156 8388 0.6710 +156 8390 0.6700 +156 8451 0.4200 +156 8477 0.5300 +156 8490 0.7570 +156 8525 0.4850 +156 8590 0.6700 +156 8601 0.7690 +156 8620 0.5650 +156 8786 0.7850 +156 8801 0.9390 +156 8802 0.4440 +156 8874 0.4180 +156 9002 0.5020 +156 9138 0.4180 +156 9170 0.6140 +156 9459 0.5440 +156 9628 0.7770 +156 9630 0.8260 +156 9815 0.6740 +156 10013 0.6710 +156 10161 0.5540 +156 10287 0.7690 +156 10316 0.5290 +156 10399 0.4460 +156 10411 0.6820 +156 10519 0.4410 +156 10663 0.6870 +156 10672 0.4020 +156 10681 0.6870 +156 10755 0.4410 +156 10798 0.6700 +156 10800 0.5570 +156 10803 0.7020 +156 10874 0.5200 +156 10886 0.6410 +156 10887 0.5290 +156 10911 0.5170 +156 11069 0.4470 +156 11127 0.5680 +156 23236 0.6090 +156 23398 0.6850 +156 23413 0.6110 +156 23432 0.4230 +156 23538 0.6700 +156 23566 0.5870 +156 23620 0.5400 +156 26051 0.4120 +156 26188 0.6700 +156 26189 0.6500 +156 26211 0.6700 +156 26212 0.6700 +156 26219 0.6700 +156 26245 0.6700 +156 26246 0.6700 +156 26248 0.6700 +156 26333 0.6700 +156 26338 0.6700 +156 26339 0.6700 +156 26341 0.6700 +156 26476 0.6700 +156 26493 0.6700 +156 26494 0.6700 +156 26496 0.6700 +156 26497 0.6700 +156 26499 0.4770 +156 26529 0.6700 +156 26531 0.6780 +156 26532 0.6710 +156 26533 0.6700 +156 26534 0.6700 +156 26538 0.6730 +156 26539 0.6730 +156 26575 0.7700 +156 26595 0.6700 +156 26648 0.6700 +156 26658 0.6700 +156 26659 0.6700 +156 26664 0.6700 +156 26686 0.6700 +156 26687 0.6700 +156 26689 0.6700 +156 26692 0.6500 +156 26693 0.6700 +156 26707 0.6500 +156 26716 0.6500 +156 26735 0.6700 +156 26737 0.6700 +156 26740 0.6700 +156 27334 0.5070 +156 28964 0.9970 +156 29933 0.5310 +156 30818 0.4190 +156 51684 0.4420 +156 51738 0.5590 +156 51764 0.5660 +156 51806 0.4800 +156 54331 0.9290 +156 55970 0.5660 +156 56413 0.5360 +156 56656 0.6700 +156 56923 0.5290 +156 57105 0.5300 +156 57121 0.5410 +156 59345 0.7170 +156 60675 0.5140 +156 64106 0.6320 +156 64399 0.4670 +156 64407 0.7540 +156 79290 0.6700 +156 79295 0.6700 +156 79310 0.6700 +156 79317 0.6500 +156 79324 0.6700 +156 79339 0.6700 +156 79345 0.6700 +156 79346 0.6700 +156 79473 0.6700 +156 79490 0.6700 +156 79541 0.6700 +156 79544 0.6500 +156 79549 0.6700 +156 81050 0.6700 +156 81099 0.6700 +156 81127 0.6700 +156 81168 0.6500 +156 81282 0.6700 +156 81285 0.6700 +156 81300 0.6700 +156 81309 0.6500 +156 81318 0.6700 +156 81327 0.6700 +156 81341 0.6500 +156 81392 0.6700 +156 81399 0.6700 +156 81442 0.6700 +156 81448 0.6700 +156 81466 0.6700 +156 81469 0.6700 +156 81470 0.6700 +156 81696 0.6700 +156 81697 0.6700 +156 81797 0.6700 +156 84109 0.5290 +156 84432 0.4990 +156 84539 0.5290 +156 84634 0.5670 +156 84687 0.6720 +156 85397 0.7610 +156 91860 0.4800 +156 94233 0.7760 +156 94235 0.6010 +156 115557 0.5820 +156 119678 0.6700 +156 119679 0.6700 +156 119682 0.6700 +156 119687 0.6700 +156 119692 0.6700 +156 119694 0.6700 +156 119695 0.6700 +156 119749 0.6700 +156 119764 0.6700 +156 119765 0.6700 +156 119772 0.6700 +156 119774 0.6700 +156 120065 0.6700 +156 120066 0.6700 +156 120586 0.6700 +156 120775 0.6700 +156 120776 0.6700 +156 120787 0.6700 +156 120793 0.6500 +156 121129 0.6700 +156 121130 0.7070 +156 121275 0.6500 +156 121364 0.6700 +156 122011 0.9060 +156 122740 0.6500 +156 122742 0.6500 +156 122748 0.6700 +156 124538 0.6700 +156 125958 0.6880 +156 125962 0.6700 +156 125963 0.6700 +156 126370 0.6700 +156 126541 0.6700 +156 127059 0.6700 +156 127062 0.6700 +156 127064 0.6500 +156 127066 0.6700 +156 127068 0.6700 +156 127069 0.6700 +156 127077 0.6700 +156 127385 0.6700 +156 127608 0.6700 +156 127623 0.6700 +156 128360 0.6700 +156 128366 0.6700 +156 128367 0.6700 +156 128368 0.6700 +156 128372 0.6700 +156 128674 0.5290 +156 129521 0.4990 +156 130075 0.6700 +156 132884 0.6430 +156 134083 0.6700 +156 135924 0.6700 +156 135941 0.6700 +156 135946 0.6700 +156 135948 0.6700 +156 138799 0.6700 +156 138802 0.6700 +156 138804 0.6700 +156 138805 0.6700 +156 138881 0.6700 +156 138883 0.6700 +156 143496 0.6700 +156 143503 0.6880 +156 144124 0.6700 +156 144125 0.6700 +156 150681 0.6500 +156 152579 0.4340 +156 158131 0.6700 +156 162998 0.6700 +156 163688 0.4800 +156 196335 0.6500 +156 219417 0.6700 +156 219428 0.6500 +156 219429 0.6500 +156 219431 0.6700 +156 219436 0.6700 +156 219437 0.6700 +156 219438 0.6700 +156 219447 0.6700 +156 219453 0.6700 +156 219469 0.6700 +156 219473 0.6700 +156 219477 0.6500 +156 219479 0.6700 +156 219482 0.6500 +156 219484 0.6500 +156 219487 0.6700 +156 219493 0.6700 +156 219858 0.6700 +156 219869 0.6700 +156 219870 0.6700 +156 219874 0.6700 +156 219875 0.6700 +156 219952 0.6700 +156 219954 0.6700 +156 219956 0.6700 +156 219957 0.6700 +156 219960 0.6500 +156 219965 0.6700 +156 219968 0.6700 +156 219981 0.6700 +156 219982 0.6700 +156 219983 0.6700 +156 219986 0.6700 +156 222545 0.5420 +156 254786 0.6700 +156 254879 0.6700 +156 254973 0.6700 +156 255725 0.6700 +156 256148 0.6700 +156 257313 0.4990 +156 282763 0.6700 +156 282770 0.6700 +156 282775 0.6700 +156 283092 0.6700 +156 283093 0.6700 +156 283159 0.6700 +156 283160 0.6700 +156 283162 0.6700 +156 283297 0.6700 +156 283365 0.6700 +156 283694 0.6700 +156 284383 0.6700 +156 284433 0.6700 +156 284521 0.6700 +156 284532 0.6700 +156 285659 0.6700 +156 286362 0.6700 +156 338557 0.5800 +156 338662 0.6700 +156 338674 0.6700 +156 338675 0.6700 +156 338751 0.6700 +156 338755 0.6700 +156 340980 0.6700 +156 341152 0.6700 +156 341276 0.6700 +156 341416 0.6700 +156 341418 0.6700 +156 341799 0.6700 +156 343169 0.6700 +156 343170 0.6700 +156 343171 0.6700 +156 343172 0.6500 +156 343173 0.6700 +156 343563 0.6700 +156 346517 0.6700 +156 346525 0.6700 +156 347148 0.5190 +156 347168 0.6700 +156 347169 0.6700 +156 347468 0.6700 +156 387129 0.5290 +156 387748 0.6500 +156 388761 0.6700 +156 390036 0.6700 +156 390037 0.6700 +156 390038 0.6790 +156 390054 0.6700 +156 390058 0.6700 +156 390059 0.6700 +156 390061 0.6700 +156 390063 0.6700 +156 390064 0.6700 +156 390066 0.6700 +156 390067 0.6700 +156 390072 0.6700 +156 390075 0.6700 +156 390077 0.6700 +156 390078 0.6700 +156 390079 0.6700 +156 390081 0.6700 +156 390082 0.6700 +156 390083 0.6500 +156 390084 0.6500 +156 390093 0.6700 +156 390113 0.6700 +156 390142 0.6700 +156 390144 0.6700 +156 390148 0.6700 +156 390151 0.6700 +156 390152 0.6700 +156 390155 0.6700 +156 390157 0.6700 +156 390162 0.6500 +156 390168 0.6700 +156 390174 0.6700 +156 390181 0.6700 +156 390190 0.6700 +156 390191 0.6700 +156 390195 0.6700 +156 390197 0.6700 +156 390199 0.6700 +156 390201 0.6700 +156 390260 0.6700 +156 390261 0.6700 +156 390264 0.6700 +156 390265 0.6700 +156 390271 0.6700 +156 390275 0.6700 +156 390321 0.6700 +156 390323 0.6700 +156 390326 0.6700 +156 390327 0.6700 +156 390429 0.6700 +156 390431 0.6500 +156 390433 0.6500 +156 390437 0.6700 +156 390445 0.6700 +156 390538 0.6700 +156 390648 0.6700 +156 390649 0.6700 +156 390883 0.6700 +156 390892 0.6700 +156 391107 0.6700 +156 391109 0.6700 +156 391112 0.6700 +156 391114 0.6500 +156 391189 0.6700 +156 391190 0.6700 +156 391192 0.6700 +156 391194 0.6700 +156 391195 0.6500 +156 391196 0.6700 +156 391211 0.6700 +156 392138 0.6700 +156 392309 0.6500 +156 392376 0.6700 +156 392390 0.6700 +156 392391 0.6700 +156 392392 0.6700 +156 393046 0.6700 +156 401427 0.6700 +156 401665 0.6700 +156 401666 0.6700 +156 401667 0.6700 +156 401992 0.6700 +156 401993 0.6700 +156 401994 0.6700 +156 402135 0.6700 +156 402317 0.6700 +156 403239 0.6700 +156 403244 0.6700 +156 403253 0.6700 +156 403273 0.6700 +156 403274 0.6700 +156 403277 0.6700 +156 403278 0.6700 +156 403282 0.6700 +156 403284 0.6700 +156 431704 0.7740 +156 440153 0.6700 +156 441308 0.6700 +156 441608 0.6700 +156 441670 0.6700 +156 441933 0.6700 +156 442184 0.6700 +156 442185 0.6500 +156 442186 0.6500 +156 442191 0.6700 +156 442194 0.6700 +156 442361 0.6700 +156 594857 0.4990 +156 102723532 0.6700 +156 105369274 0.6700 +157 407 0.4300 +157 408 0.9330 +157 409 0.9650 +157 551 0.4110 +157 554 0.5190 +157 643 0.7930 +157 1230 0.6780 +157 1232 0.6700 +157 1233 0.7560 +157 1234 0.7050 +157 1235 0.6720 +157 1236 0.7230 +157 1237 0.6700 +157 1453 0.9000 +157 1454 0.9230 +157 1455 0.9020 +157 1456 0.9020 +157 1524 0.6880 +157 2149 0.4370 +157 2767 0.4040 +157 2769 0.4730 +157 2776 0.5540 +157 2779 0.4300 +157 2782 0.5470 +157 2783 0.8100 +157 2826 0.6700 +157 2829 0.6770 +157 2833 0.6860 +157 2869 0.5770 +157 2870 0.5580 +157 2914 0.4050 +157 2979 0.4220 +157 3320 0.5750 +157 3326 0.5780 +157 3455 0.5480 +157 3577 0.6800 +157 3579 0.6930 +157 3692 0.4240 +157 4988 0.9360 +157 4991 0.6700 +157 4992 0.6700 +157 4993 0.6500 +157 4994 0.6750 +157 5595 0.4740 +157 5688 0.4290 +157 6000 0.4010 +157 6010 0.7180 +157 6295 0.8860 +157 6387 0.4780 +157 6608 0.9350 +157 7852 0.8690 +157 7932 0.6500 +157 8383 0.6500 +157 8386 0.6700 +157 8387 0.6700 +157 8388 0.6700 +157 8390 0.6700 +157 8590 0.6700 +157 8786 0.4020 +157 8801 0.6650 +157 10399 0.5000 +157 10519 0.4380 +157 10663 0.6810 +157 10798 0.6700 +157 10803 0.6800 +157 23538 0.6700 +157 23544 0.8160 +157 26188 0.6700 +157 26189 0.6500 +157 26211 0.6700 +157 26212 0.6700 +157 26219 0.6700 +157 26245 0.6700 +157 26246 0.6700 +157 26248 0.6700 +157 26333 0.6700 +157 26338 0.6700 +157 26339 0.6700 +157 26341 0.6700 +157 26476 0.6700 +157 26493 0.6700 +157 26494 0.6700 +157 26496 0.6700 +157 26497 0.6700 +157 26529 0.6700 +157 26531 0.6780 +157 26532 0.6700 +157 26533 0.6700 +157 26534 0.6700 +157 26538 0.6710 +157 26539 0.6700 +157 26595 0.6700 +157 26648 0.6700 +157 26658 0.6700 +157 26659 0.6700 +157 26664 0.6700 +157 26686 0.6700 +157 26687 0.6700 +157 26689 0.6700 +157 26692 0.6500 +157 26693 0.6700 +157 26707 0.6500 +157 26716 0.6600 +157 26735 0.6700 +157 26737 0.6700 +157 26740 0.6700 +157 28964 0.4110 +157 54101 0.4290 +157 54331 0.4440 +157 56656 0.6700 +157 59345 0.4930 +157 79290 0.6700 +157 79295 0.6700 +157 79310 0.6700 +157 79317 0.6500 +157 79324 0.6700 +157 79339 0.7080 +157 79345 0.6700 +157 79346 0.6700 +157 79473 0.6700 +157 79490 0.6700 +157 79541 0.6700 +157 79544 0.6500 +157 79549 0.6700 +157 81050 0.6700 +157 81099 0.6700 +157 81127 0.6700 +157 81168 0.6500 +157 81282 0.6700 +157 81285 0.6700 +157 81300 0.6700 +157 81309 0.6500 +157 81318 0.6700 +157 81327 0.6700 +157 81341 0.6500 +157 81392 0.6700 +157 81399 0.6700 +157 81442 0.6700 +157 81448 0.6700 +157 81466 0.6700 +157 81469 0.6700 +157 81470 0.6700 +157 81696 0.6700 +157 81697 0.6700 +157 81797 0.6830 +157 84700 0.8230 +157 119678 0.6700 +157 119679 0.6700 +157 119682 0.6700 +157 119687 0.6700 +157 119692 0.6700 +157 119694 0.6700 +157 119695 0.6700 +157 119749 0.6700 +157 119764 0.6700 +157 119765 0.6700 +157 119772 0.6700 +157 119774 0.6700 +157 120065 0.6700 +157 120066 0.6700 +157 120586 0.6700 +157 120775 0.6700 +157 120776 0.6700 +157 120787 0.6700 +157 120793 0.6500 +157 121129 0.6700 +157 121130 0.7320 +157 121275 0.6500 +157 121364 0.6700 +157 122011 0.9020 +157 122740 0.6500 +157 122742 0.6500 +157 122748 0.6700 +157 124538 0.6700 +157 125958 0.6770 +157 125962 0.6700 +157 125963 0.6700 +157 126370 0.6700 +157 126541 0.6700 +157 127059 0.6700 +157 127062 0.6700 +157 127064 0.6500 +157 127066 0.6700 +157 127068 0.6700 +157 127069 0.6700 +157 127077 0.6700 +157 127385 0.6700 +157 127608 0.6700 +157 127623 0.6700 +157 128360 0.6700 +157 128366 0.6700 +157 128367 0.6700 +157 128368 0.6700 +157 128372 0.6700 +157 130075 0.6700 +157 134083 0.6700 +157 135924 0.6700 +157 135941 0.6700 +157 135946 0.6700 +157 135948 0.6700 +157 138799 0.6700 +157 138802 0.6700 +157 138804 0.6700 +157 138805 0.6700 +157 138881 0.6700 +157 138883 0.6700 +157 143496 0.6700 +157 143503 0.7200 +157 144124 0.6700 +157 144125 0.6700 +157 150681 0.6500 +157 158131 0.6700 +157 162998 0.6700 +157 196335 0.6500 +157 219417 0.6700 +157 219428 0.6500 +157 219429 0.6500 +157 219431 0.6700 +157 219436 0.6700 +157 219437 0.6700 +157 219438 0.6700 +157 219447 0.6700 +157 219453 0.6700 +157 219469 0.6700 +157 219473 0.6700 +157 219477 0.6500 +157 219479 0.6700 +157 219482 0.6500 +157 219484 0.6500 +157 219487 0.6700 +157 219493 0.6700 +157 219858 0.6700 +157 219869 0.6700 +157 219870 0.6700 +157 219874 0.6700 +157 219875 0.6930 +157 219952 0.6700 +157 219954 0.6700 +157 219956 0.6700 +157 219957 0.6700 +157 219960 0.6500 +157 219965 0.6700 +157 219968 0.6700 +157 219981 0.6700 +157 219982 0.6700 +157 219983 0.6700 +157 219986 0.6700 +157 254786 0.6700 +157 254879 0.6700 +157 254973 0.6700 +157 255725 0.6700 +157 256148 0.6700 +157 282763 0.6700 +157 282770 0.6700 +157 282775 0.6700 +157 283092 0.6700 +157 283093 0.6700 +157 283159 0.6700 +157 283160 0.6700 +157 283162 0.6700 +157 283297 0.6700 +157 283365 0.6700 +157 283694 0.6700 +157 284383 0.6700 +157 284433 0.6700 +157 284521 0.6700 +157 284532 0.6700 +157 285659 0.6700 +157 286362 0.6700 +157 338662 0.6700 +157 338674 0.6700 +157 338675 0.6700 +157 338751 0.6700 +157 338755 0.6700 +157 340980 0.6700 +157 341152 0.6700 +157 341276 0.6700 +157 341416 0.6700 +157 341418 0.6700 +157 341799 0.6700 +157 343169 0.6700 +157 343170 0.6700 +157 343171 0.6700 +157 343172 0.6500 +157 343173 0.6700 +157 343563 0.6700 +157 346517 0.6700 +157 346525 0.6700 +157 347168 0.6700 +157 347169 0.6700 +157 347468 0.6700 +157 387748 0.6500 +157 388761 0.6700 +157 390036 0.6700 +157 390037 0.6700 +157 390038 0.6790 +157 390054 0.6700 +157 390058 0.6700 +157 390059 0.6700 +157 390061 0.6700 +157 390063 0.6700 +157 390064 0.6700 +157 390066 0.6700 +157 390067 0.6700 +157 390072 0.6700 +157 390075 0.6700 +157 390077 0.6700 +157 390078 0.6700 +157 390079 0.6700 +157 390081 0.6700 +157 390082 0.6700 +157 390083 0.6500 +157 390084 0.6500 +157 390093 0.6700 +157 390113 0.6700 +157 390142 0.6700 +157 390144 0.6700 +157 390148 0.6700 +157 390151 0.6700 +157 390152 0.6700 +157 390155 0.6700 +157 390157 0.6700 +157 390162 0.6500 +157 390168 0.6700 +157 390174 0.6830 +157 390181 0.6700 +157 390190 0.6700 +157 390191 0.6700 +157 390195 0.6700 +157 390197 0.6700 +157 390199 0.6700 +157 390201 0.6700 +157 390260 0.6700 +157 390261 0.6700 +157 390264 0.6700 +157 390265 0.6700 +157 390271 0.6700 +157 390275 0.6700 +157 390321 0.6700 +157 390323 0.6700 +157 390326 0.6700 +157 390327 0.6700 +157 390429 0.6700 +157 390431 0.6500 +157 390433 0.6500 +157 390437 0.6700 +157 390445 0.6700 +157 390538 0.6700 +157 390648 0.6700 +157 390649 0.6700 +157 390883 0.6700 +157 390892 0.6700 +157 391107 0.6700 +157 391109 0.6700 +157 391112 0.6700 +157 391114 0.6500 +157 391189 0.6700 +157 391190 0.6700 +157 391192 0.6700 +157 391194 0.6700 +157 391195 0.6500 +157 391196 0.7320 +157 391211 0.6700 +157 392138 0.6700 +157 392309 0.6500 +157 392376 0.6700 +157 392390 0.6700 +157 392391 0.6700 +157 392392 0.6700 +157 393046 0.6700 +157 401427 0.6700 +157 401665 0.6700 +157 401666 0.6700 +157 401667 0.6700 +157 401992 0.6700 +157 401993 0.6700 +157 401994 0.6700 +157 402135 0.6700 +157 402317 0.6700 +157 403239 0.6700 +157 403244 0.6820 +157 403253 0.6700 +157 403273 0.6700 +157 403274 0.6700 +157 403277 0.6700 +157 403278 0.6700 +157 403282 0.6700 +157 403284 0.6700 +157 440153 0.6700 +157 441308 0.6700 +157 441608 0.6700 +157 441670 0.6700 +157 441933 0.6700 +157 442184 0.6700 +157 442185 0.6500 +157 442186 0.6540 +157 442191 0.6700 +157 442194 0.6700 +157 442361 0.6700 +157 102723532 0.6700 +157 105369274 0.6700 +158 159 0.9990 +158 191 0.4540 +158 203 0.9680 +158 204 0.9640 +158 205 0.9650 +158 270 0.9730 +158 271 0.9720 +158 272 0.9730 +158 275 0.4090 +158 353 0.9900 +158 383 0.5240 +158 384 0.5230 +158 435 0.9610 +158 440 0.4940 +158 445 0.5600 +158 471 0.9990 +158 498 0.4490 +158 586 0.4950 +158 587 0.4740 +158 593 0.4060 +158 617 0.4530 +158 790 0.6800 +158 875 0.4570 +158 953 0.9050 +158 956 0.9070 +158 1373 0.5200 +158 1431 0.8300 +158 1491 0.5220 +158 1503 0.6570 +158 1633 0.9360 +158 1657 0.4130 +158 1723 0.6600 +158 1806 0.5810 +158 1841 0.5900 +158 1854 0.4170 +158 1890 0.4960 +158 1908 0.4360 +158 1937 0.4460 +158 1938 0.4310 +158 2053 0.4670 +158 2058 0.5420 +158 2271 0.7090 +158 2288 0.8490 +158 2289 0.8220 +158 2356 0.5490 +158 2618 0.9990 +158 2653 0.5900 +158 2673 0.4840 +158 2731 0.5830 +158 2752 0.5330 +158 2766 0.7820 +158 2806 0.4750 +158 2821 0.5530 +158 2987 0.5750 +158 3141 0.5220 +158 3145 0.4360 +158 3251 0.9350 +158 3396 0.8730 +158 3417 0.8600 +158 3418 0.8580 +158 3419 0.8340 +158 3420 0.8440 +158 3421 0.8310 +158 3558 0.4440 +158 3614 0.8390 +158 3615 0.8790 +158 3704 0.5370 +158 3735 0.4070 +158 3814 0.4120 +158 3948 0.4910 +158 3956 0.5640 +158 4141 0.5900 +158 4191 0.9080 +158 4204 0.4660 +158 4351 0.4600 +158 4507 0.5590 +158 4508 0.5050 +158 4512 0.4350 +158 4519 0.4710 +158 4522 0.6710 +158 4605 0.4040 +158 4714 0.6890 +158 4832 0.4030 +158 4860 0.7250 +158 4869 0.4390 +158 4907 0.9430 +158 4913 0.4160 +158 4935 0.4350 +158 4953 0.4520 +158 4967 0.8660 +158 5019 0.4770 +158 5091 0.8680 +158 5105 0.8000 +158 5106 0.8010 +158 5111 0.4080 +158 5136 0.9030 +158 5137 0.9030 +158 5138 0.9010 +158 5139 0.9000 +158 5140 0.9000 +158 5141 0.9000 +158 5142 0.9000 +158 5143 0.9000 +158 5144 0.9000 +158 5150 0.9010 +158 5151 0.9000 +158 5153 0.9030 +158 5161 0.4810 +158 5167 0.9000 +158 5169 0.9000 +158 5188 0.6230 +158 5198 0.8470 +158 5213 0.4450 +158 5226 0.4330 +158 5315 0.4130 +158 5471 0.9970 +158 5631 0.7280 +158 5634 0.7100 +158 5635 0.4580 +158 5636 0.4660 +158 5832 0.5900 +158 5859 0.5750 +158 5917 0.5390 +158 6182 0.7610 +158 6240 0.6070 +158 6301 0.4380 +158 6389 0.8160 +158 6390 0.7040 +158 6470 0.9070 +158 6472 0.9090 +158 6652 0.4410 +158 6734 0.4260 +158 6836 0.8050 +158 6888 0.5170 +158 7083 0.4240 +158 7153 0.4420 +158 7155 0.4300 +158 7298 0.6890 +158 7371 0.4800 +158 7372 0.7960 +158 7378 0.4150 +158 7407 0.4280 +158 7453 0.5200 +158 7498 0.4930 +158 7542 0.4290 +158 8192 0.4290 +158 8458 0.4840 +158 8565 0.4800 +158 8622 0.9050 +158 8802 0.6010 +158 8833 0.9130 +158 9343 0.5030 +158 9615 0.6630 +158 9945 0.4290 +158 10056 0.4420 +158 10352 0.4630 +158 10606 0.9990 +158 10797 0.8970 +158 10846 0.9010 +158 10923 0.4010 +158 11222 0.4580 +158 22934 0.4620 +158 22978 0.9280 +158 23112 0.4430 +158 23475 0.4850 +158 25813 0.4350 +158 25847 0.4120 +158 25864 0.4040 +158 25902 0.6330 +158 26227 0.4600 +158 26289 0.9580 +158 27115 0.9000 +158 27349 0.8350 +158 28964 0.4880 +158 29920 0.4020 +158 30833 0.9100 +158 50808 0.9640 +158 50940 0.9010 +158 51026 0.4250 +158 51081 0.4470 +158 51251 0.9030 +158 51292 0.6080 +158 51314 0.4340 +158 51444 0.4870 +158 51512 0.4530 +158 51557 0.4750 +158 51725 0.4520 +158 51727 0.6860 +158 51733 0.5040 +158 51816 0.4150 +158 54870 0.6110 +158 54938 0.4520 +158 54941 0.4770 +158 54963 0.4350 +158 54995 0.4780 +158 55152 0.6370 +158 55157 0.4920 +158 55258 0.4240 +158 55293 0.5000 +158 55687 0.4440 +158 55753 0.8520 +158 55759 0.5880 +158 55777 0.4400 +158 56474 0.5780 +158 56952 0.8700 +158 56953 0.9040 +158 57038 0.5810 +158 57480 0.4010 +158 64064 0.4480 +158 64080 0.6410 +158 64965 0.4020 +158 65080 0.4230 +158 79814 0.5480 +158 79877 0.8060 +158 79896 0.4280 +158 80347 0.8200 +158 83549 0.4710 +158 83887 0.4350 +158 84618 0.9200 +158 84706 0.4110 +158 85358 0.4350 +158 89894 0.4350 +158 91875 0.4430 +158 92483 0.4960 +158 93034 0.9250 +158 114798 0.4250 +158 115024 0.9040 +158 115825 0.4050 +158 122481 0.9610 +158 122622 0.9990 +158 122945 0.4340 +158 124454 0.4520 +158 127845 0.4120 +158 129607 0.4410 +158 130752 0.4830 +158 139596 0.6440 +158 144193 0.4930 +158 151531 0.4370 +158 153770 0.4030 +158 154141 0.4440 +158 158067 0.9610 +158 160287 0.4980 +158 170712 0.4240 +158 221264 0.9900 +158 221823 0.7150 +158 374659 0.4530 +158 377841 0.9080 +158 387509 0.4170 +158 441024 0.8860 +158 100526794 0.9260 +158 102157402 0.9800 +159 270 0.9920 +159 271 0.9920 +159 272 0.9930 +159 353 0.7870 +159 378 0.4480 +159 435 0.5650 +159 440 0.9370 +159 443 0.9000 +159 445 0.9920 +159 471 0.9970 +159 488 0.4980 +159 498 0.5820 +159 509 0.4850 +159 790 0.9630 +159 953 0.9080 +159 955 0.9200 +159 956 0.9120 +159 957 0.9250 +159 1373 0.4610 +159 1487 0.4930 +159 1503 0.6510 +159 1723 0.5980 +159 1806 0.4250 +159 1841 0.4680 +159 1936 0.4600 +159 1938 0.5690 +159 2023 0.4740 +159 2026 0.4100 +159 2027 0.4580 +159 2058 0.4810 +159 2178 0.4070 +159 2271 0.4940 +159 2571 0.8190 +159 2572 0.8100 +159 2618 0.9810 +159 2673 0.4030 +159 2752 0.4500 +159 2766 0.9710 +159 2805 0.9310 +159 2806 0.9320 +159 2821 0.5740 +159 2936 0.4070 +159 2987 0.4530 +159 3150 0.5790 +159 3151 0.5720 +159 3251 0.9630 +159 3336 0.4680 +159 3417 0.5540 +159 3418 0.4610 +159 3419 0.4360 +159 3558 0.4700 +159 3614 0.9810 +159 3615 0.9880 +159 3692 0.4640 +159 3704 0.9630 +159 4141 0.4420 +159 4507 0.5180 +159 4522 0.4530 +159 4528 0.4480 +159 4736 0.4120 +159 4831 0.4420 +159 4860 0.5570 +159 4907 0.9330 +159 4935 0.4460 +159 4942 0.5570 +159 5111 0.4570 +159 5198 0.4930 +159 5211 0.4040 +159 5226 0.4510 +159 5315 0.4310 +159 5431 0.4640 +159 5464 0.4160 +159 5471 0.8140 +159 5631 0.6610 +159 5634 0.6030 +159 5700 0.5150 +159 5832 0.5720 +159 6120 0.4490 +159 6122 0.6410 +159 6123 0.6390 +159 6132 0.4140 +159 6136 0.5730 +159 6139 0.5060 +159 6175 0.4220 +159 6188 0.7460 +159 6193 0.4330 +159 6194 0.6820 +159 6203 0.5090 +159 6205 0.6600 +159 6223 0.6380 +159 6229 0.4060 +159 6240 0.4950 +159 6470 0.7600 +159 6472 0.7530 +159 6888 0.6260 +159 7083 0.4100 +159 7086 0.4040 +159 7167 0.4640 +159 7284 0.5200 +159 7298 0.5300 +159 7372 0.7150 +159 7407 0.5090 +159 8458 0.6040 +159 8565 0.5370 +159 8566 0.4070 +159 8833 0.8340 +159 9141 0.6420 +159 9343 0.5080 +159 9349 0.4320 +159 9563 0.4240 +159 9583 0.9090 +159 9615 0.5050 +159 9669 0.4380 +159 10102 0.5280 +159 10473 0.5810 +159 10606 0.8580 +159 10797 0.6230 +159 10841 0.8270 +159 10845 0.4840 +159 11222 0.6480 +159 11224 0.6400 +159 22934 0.4860 +159 22978 0.9200 +159 22984 0.4710 +159 23761 0.4470 +159 25902 0.4040 +159 29093 0.4440 +159 29968 0.4990 +159 30833 0.9150 +159 51069 0.4090 +159 51081 0.4300 +159 51154 0.4190 +159 51251 0.9200 +159 51292 0.5970 +159 51557 0.4330 +159 51727 0.4890 +159 51816 0.4500 +159 54870 0.5670 +159 55152 0.5930 +159 55272 0.4980 +159 55276 0.4210 +159 55703 0.4450 +159 55856 0.4290 +159 56474 0.5630 +159 56952 0.5380 +159 56953 0.9040 +159 57136 0.4030 +159 57176 0.4080 +159 64080 0.5270 +159 65003 0.5670 +159 65008 0.4170 +159 79631 0.5060 +159 80150 0.9160 +159 83475 0.8040 +159 84172 0.4700 +159 84618 0.9180 +159 85476 0.5300 +159 87178 0.4300 +159 89894 0.4460 +159 91875 0.4390 +159 93034 0.9120 +159 115024 0.9000 +159 122622 0.9490 +159 124583 0.9250 +159 126402 0.4290 +159 131870 0.9140 +159 137362 0.9220 +159 139596 0.5010 +159 144193 0.4720 +159 150572 0.7140 +159 154141 0.4700 +159 221823 0.6500 +159 259307 0.9030 +159 285148 0.4040 +159 339896 0.8040 +159 339983 0.9000 +159 377841 0.9030 +159 387712 0.4580 +159 441024 0.5450 +159 554235 0.8000 +159 100526794 0.9120 +159 100526842 0.4440 +160 161 0.9550 +160 162 0.9690 +160 163 0.9990 +160 164 0.7390 +160 185 0.5110 +160 273 0.8630 +160 274 0.7620 +160 338 0.5150 +160 374 0.4990 +160 377 0.4420 +160 382 0.6550 +160 408 0.7070 +160 409 0.6970 +160 551 0.5040 +160 554 0.5020 +160 685 0.4990 +160 867 0.5090 +160 915 0.5150 +160 917 0.4990 +160 920 0.5200 +160 950 0.5000 +160 972 0.4990 +160 1080 0.5070 +160 1129 0.5050 +160 1173 0.9990 +160 1174 0.9440 +160 1175 0.9990 +160 1176 0.9680 +160 1211 0.9830 +160 1212 0.9920 +160 1315 0.6220 +160 1398 0.4780 +160 1601 0.7250 +160 1759 0.7300 +160 1785 0.8490 +160 1808 0.6310 +160 1839 0.5060 +160 1856 0.6220 +160 1947 0.4990 +160 1948 0.4990 +160 1949 0.4990 +160 1950 0.7120 +160 1956 0.9270 +160 2047 0.5070 +160 2048 0.5080 +160 2049 0.5070 +160 2050 0.5110 +160 2051 0.5070 +160 2060 0.9910 +160 2069 0.4990 +160 2535 0.4360 +160 2580 0.7950 +160 2885 0.6140 +160 2890 0.5450 +160 2891 0.5460 +160 2892 0.5220 +160 2893 0.5010 +160 3064 0.9390 +160 3092 0.8970 +160 3113 0.4990 +160 3115 0.4990 +160 3117 0.4990 +160 3118 0.4990 +160 3119 0.4990 +160 3120 0.4990 +160 3122 0.4990 +160 3123 0.4990 +160 3127 0.4990 +160 3267 0.5290 +160 3482 0.5440 +160 3575 0.4990 +160 3633 0.5060 +160 3636 0.4530 +160 3897 0.6550 +160 3920 0.4470 +160 3949 0.5140 +160 4036 0.5520 +160 4074 0.5200 +160 4201 0.4260 +160 4478 0.5240 +160 4646 0.5540 +160 4803 0.5120 +160 4914 0.5180 +160 4919 0.4090 +160 4920 0.4090 +160 4952 0.7260 +160 5093 0.4310 +160 5578 0.4080 +160 5579 0.4030 +160 5582 0.4030 +160 5594 0.5150 +160 5868 0.5590 +160 5878 0.5620 +160 5912 0.4280 +160 5962 0.5180 +160 6195 0.5170 +160 6196 0.5130 +160 6197 0.5220 +160 6233 0.5170 +160 6237 0.5060 +160 6453 0.8290 +160 6455 0.6930 +160 6456 0.7550 +160 6457 0.6780 +160 6464 0.6760 +160 6572 0.5450 +160 6813 0.4430 +160 6844 0.7670 +160 6845 0.5460 +160 6857 0.4600 +160 6869 0.4990 +160 7018 0.5110 +160 7037 0.5640 +160 7039 0.4990 +160 7311 0.4990 +160 7314 0.5520 +160 7316 0.5730 +160 7430 0.5340 +160 7436 0.5140 +160 7474 0.5300 +160 7855 0.4310 +160 8027 0.5420 +160 8120 0.7780 +160 8189 0.5320 +160 8218 0.9800 +160 8301 0.9470 +160 8322 0.4990 +160 8546 0.8570 +160 8650 0.9190 +160 8673 0.6080 +160 8674 0.5880 +160 8677 0.4400 +160 8773 0.4420 +160 8867 0.9060 +160 8871 0.6300 +160 8905 0.8330 +160 8906 0.5990 +160 8907 0.8230 +160 8943 0.7830 +160 8986 0.5460 +160 9026 0.6510 +160 9146 0.7690 +160 9179 0.9730 +160 9185 0.8970 +160 9252 0.5230 +160 9253 0.6220 +160 9341 0.6130 +160 9342 0.4940 +160 9463 0.5110 +160 9685 0.9410 +160 9829 0.4540 +160 9856 0.5020 +160 9892 0.7560 +160 9907 0.9100 +160 10053 0.7930 +160 10092 0.4510 +160 10126 0.4140 +160 10228 0.4920 +160 10239 0.9620 +160 10254 0.5410 +160 10617 0.4120 +160 10618 0.5330 +160 10717 0.9860 +160 10787 0.4890 +160 10900 0.6620 +160 10928 0.8940 +160 10938 0.5880 +160 10947 0.8640 +160 11154 0.9660 +160 11276 0.7760 +160 22848 0.7800 +160 22905 0.9310 +160 23048 0.4120 +160 23149 0.7490 +160 23295 0.4380 +160 23339 0.4900 +160 23426 0.5130 +160 23431 0.9270 +160 23759 0.4570 +160 23770 0.5340 +160 24137 0.5000 +160 25930 0.4750 +160 25977 0.9550 +160 26000 0.4440 +160 26052 0.6410 +160 26119 0.6190 +160 26173 0.4690 +160 26985 0.8960 +160 27330 0.5130 +160 29888 0.5230 +160 29924 0.9580 +160 29978 0.5850 +160 29988 0.5170 +160 30011 0.5080 +160 30846 0.9110 +160 50618 0.7060 +160 51320 0.6510 +160 51429 0.4700 +160 51763 0.4520 +160 54443 0.4310 +160 54464 0.4270 +160 55040 0.9170 +160 55317 0.9030 +160 55707 0.9900 +160 55738 0.6910 +160 55745 0.9480 +160 55823 0.4530 +160 55930 0.4010 +160 56479 0.9000 +160 56623 0.4490 +160 57617 0.4630 +160 58506 0.4060 +160 58513 0.9070 +160 60385 0.7000 +160 64753 0.4200 +160 79065 0.6440 +160 79719 0.6970 +160 80115 0.7240 +160 80852 0.4990 +160 83988 0.9000 +160 84174 0.5150 +160 84251 0.9440 +160 84466 0.5670 +160 84955 0.6210 +160 85021 0.8400 +160 85477 0.4380 +160 90416 0.4420 +160 91056 0.9060 +160 115548 0.7470 +160 122616 0.5430 +160 130162 0.4270 +160 130340 0.7410 +160 140685 0.4230 +160 150350 0.7340 +160 170302 0.4220 +160 170680 0.4130 +160 200014 0.4360 +160 200844 0.4530 +160 221421 0.4880 +160 255324 0.4990 +160 255738 0.5260 +160 285643 0.4990 +160 100526783 0.5920 +161 162 0.9300 +161 163 0.9990 +161 164 0.5450 +161 185 0.4990 +161 273 0.8930 +161 274 0.6530 +161 338 0.5080 +161 374 0.4990 +161 382 0.4480 +161 408 0.5070 +161 409 0.5230 +161 551 0.5000 +161 554 0.4990 +161 685 0.4990 +161 867 0.5000 +161 915 0.5180 +161 917 0.4990 +161 920 0.5400 +161 950 0.5080 +161 972 0.5730 +161 988 0.4650 +161 1080 0.5260 +161 1129 0.4990 +161 1173 0.9990 +161 1174 0.9200 +161 1175 0.9990 +161 1176 0.9070 +161 1211 0.9460 +161 1212 0.9680 +161 1525 0.4290 +161 1601 0.7530 +161 1759 0.6920 +161 1785 0.6740 +161 1808 0.6120 +161 1839 0.5060 +161 1856 0.5690 +161 1947 0.4990 +161 1948 0.4990 +161 1949 0.4990 +161 1950 0.4990 +161 1956 0.8630 +161 2047 0.5150 +161 2048 0.5220 +161 2049 0.5160 +161 2050 0.5150 +161 2051 0.5200 +161 2060 0.9580 +161 2069 0.4990 +161 2185 0.4130 +161 2535 0.4180 +161 2580 0.4670 +161 2885 0.6640 +161 2890 0.5440 +161 2891 0.5310 +161 2892 0.4990 +161 2893 0.4990 +161 3064 0.9890 +161 3092 0.8020 +161 3113 0.4990 +161 3115 0.5230 +161 3117 0.4990 +161 3118 0.4990 +161 3119 0.5370 +161 3120 0.5470 +161 3122 0.4990 +161 3123 0.5540 +161 3127 0.5750 +161 3267 0.5270 +161 3482 0.5080 +161 3575 0.4990 +161 3897 0.5040 +161 3949 0.4990 +161 4036 0.5110 +161 4074 0.5170 +161 4137 0.4100 +161 4163 0.4340 +161 4478 0.5040 +161 4803 0.5200 +161 4914 0.5250 +161 4919 0.4220 +161 4920 0.4180 +161 5578 0.5310 +161 5579 0.4760 +161 5582 0.4160 +161 5594 0.5190 +161 5862 0.4360 +161 5869 0.5830 +161 5962 0.5000 +161 6195 0.5750 +161 6196 0.5190 +161 6197 0.6060 +161 6233 0.5330 +161 6275 0.4120 +161 6280 0.4120 +161 6282 0.4120 +161 6283 0.4120 +161 6286 0.4120 +161 6453 0.9230 +161 6455 0.5370 +161 6456 0.5390 +161 6457 0.5040 +161 6464 0.8090 +161 6572 0.5520 +161 6844 0.5800 +161 6845 0.5210 +161 6857 0.4610 +161 6869 0.4990 +161 7018 0.5080 +161 7037 0.5600 +161 7039 0.4990 +161 7062 0.4120 +161 7311 0.5190 +161 7314 0.5300 +161 7316 0.5690 +161 7430 0.5050 +161 7436 0.4990 +161 7474 0.4990 +161 7855 0.4160 +161 8027 0.5060 +161 8120 0.5960 +161 8218 0.9300 +161 8301 0.8760 +161 8322 0.5150 +161 8546 0.6050 +161 8650 0.7160 +161 8673 0.5190 +161 8674 0.5300 +161 8867 0.6420 +161 8905 0.7620 +161 8906 0.5480 +161 8907 0.6250 +161 8940 0.4560 +161 8943 0.6700 +161 8986 0.5190 +161 9146 0.5250 +161 9179 0.9160 +161 9185 0.5780 +161 9252 0.5080 +161 9341 0.5750 +161 9463 0.5350 +161 9685 0.7670 +161 9724 0.4190 +161 9790 0.4110 +161 9856 0.5170 +161 9892 0.8250 +161 9907 0.9060 +161 10053 0.5630 +161 10126 0.4150 +161 10239 0.9030 +161 10254 0.5070 +161 10594 0.4890 +161 10618 0.9550 +161 10717 0.9540 +161 10813 0.4200 +161 10890 0.4550 +161 10900 0.6930 +161 10947 0.7620 +161 11154 0.9220 +161 11276 0.7480 +161 11346 0.4070 +161 22848 0.6140 +161 22905 0.7330 +161 22941 0.4060 +161 22984 0.4530 +161 23149 0.8270 +161 23339 0.4290 +161 23426 0.5300 +161 23431 0.9010 +161 24137 0.5000 +161 25977 0.6650 +161 26052 0.5770 +161 26119 0.5510 +161 26173 0.4050 +161 26985 0.6690 +161 27042 0.5290 +161 27243 0.4440 +161 27330 0.5120 +161 27339 0.4540 +161 29924 0.8700 +161 29978 0.5280 +161 29988 0.6570 +161 30011 0.5200 +161 30846 0.9040 +161 50618 0.7440 +161 51096 0.4420 +161 51320 0.5580 +161 51429 0.4720 +161 51552 0.4790 +161 55040 0.7040 +161 55317 0.9000 +161 55707 0.9570 +161 55738 0.7450 +161 55745 0.9080 +161 56479 0.9050 +161 57659 0.4210 +161 58513 0.8180 +161 79719 0.7750 +161 80115 0.7200 +161 80852 0.5100 +161 83988 0.9060 +161 84070 0.4120 +161 84074 0.4120 +161 84251 0.8980 +161 84261 0.4420 +161 84916 0.4070 +161 85021 0.7120 +161 85437 0.5140 +161 90416 0.4690 +161 91056 0.9060 +161 112755 0.4350 +161 115548 0.8220 +161 122616 0.5400 +161 126638 0.4120 +161 129807 0.4450 +161 130340 0.5790 +161 140576 0.4130 +161 140685 0.4310 +161 146330 0.4330 +161 150350 0.6690 +161 170591 0.4120 +161 202018 0.4370 +161 255324 0.4990 +161 255738 0.5400 +161 285643 0.4990 +161 342346 0.4120 +161 388697 0.4120 +161 388698 0.4120 +162 163 0.8190 +162 164 0.9990 +162 273 0.7260 +162 372 0.4020 +162 377 0.7520 +162 408 0.6100 +162 409 0.4730 +162 972 0.5410 +162 1173 0.9900 +162 1174 0.9990 +162 1175 0.9690 +162 1176 0.6090 +162 1211 0.8900 +162 1212 0.8830 +162 1312 0.4370 +162 1362 0.5070 +162 1522 0.5320 +162 1759 0.6400 +162 1777 0.5040 +162 1785 0.7170 +162 1956 0.4330 +162 2060 0.8920 +162 2130 0.6090 +162 2495 0.5260 +162 2512 0.5280 +162 2580 0.6660 +162 2647 0.5120 +162 2799 0.5200 +162 2944 0.5560 +162 3105 0.9270 +162 3106 0.6530 +162 3107 0.6570 +162 3113 0.5070 +162 3115 0.5120 +162 3117 0.4990 +162 3118 0.4990 +162 3119 0.5000 +162 3120 0.4990 +162 3122 0.5000 +162 3123 0.4990 +162 3127 0.5090 +162 3133 0.6520 +162 3134 0.6500 +162 3135 0.6500 +162 3303 0.4530 +162 3304 0.4420 +162 3312 0.5490 +162 3482 0.5660 +162 4074 0.5140 +162 4201 0.4470 +162 4330 0.6140 +162 4361 0.4180 +162 4771 0.6570 +162 4952 0.5360 +162 5179 0.4740 +162 5286 0.5240 +162 5564 0.4970 +162 5878 0.5450 +162 5912 0.4380 +162 6272 0.5870 +162 6453 0.5600 +162 6456 0.5220 +162 6572 0.5400 +162 6643 0.6540 +162 6844 0.5670 +162 6845 0.7160 +162 7037 0.6000 +162 7163 0.5030 +162 7164 0.4990 +162 7425 0.5380 +162 8120 0.6860 +162 8218 0.8740 +162 8301 0.5920 +162 8417 0.4720 +162 8546 0.6940 +162 8650 0.4430 +162 8673 0.7260 +162 8674 0.4130 +162 8775 0.5850 +162 8867 0.7800 +162 8905 0.9980 +162 8906 0.9940 +162 8907 0.9990 +162 8943 0.8440 +162 9026 0.6030 +162 9179 0.9190 +162 9238 0.5080 +162 9482 0.4960 +162 9685 0.9170 +162 9698 0.5340 +162 9810 0.4540 +162 9829 0.5370 +162 9907 0.6160 +162 10053 0.9930 +162 10239 0.6120 +162 10490 0.4810 +162 10618 0.8430 +162 10633 0.8980 +162 10634 0.8560 +162 10717 0.6220 +162 10900 0.6260 +162 10947 0.5830 +162 11154 0.8900 +162 11276 0.7740 +162 22820 0.4010 +162 22848 0.6370 +162 22905 0.6750 +162 23149 0.4500 +162 23339 0.4980 +162 23431 0.8450 +162 23523 0.4050 +162 23557 0.5380 +162 25977 0.6920 +162 26052 0.6440 +162 26258 0.4990 +162 26985 0.7230 +162 27131 0.5420 +162 29924 0.7460 +162 50618 0.5460 +162 51429 0.7130 +162 51606 0.7750 +162 54555 0.4220 +162 54885 0.5470 +162 55040 0.6530 +162 55317 0.5660 +162 55330 0.4990 +162 55707 0.9190 +162 55738 0.4030 +162 55745 0.7790 +162 55823 0.4070 +162 56479 0.5570 +162 57007 0.6200 +162 57599 0.4320 +162 57617 0.4250 +162 57704 0.5360 +162 58513 0.8020 +162 63971 0.9590 +162 64744 0.4210 +162 80115 0.5400 +162 81567 0.5640 +162 83988 0.5440 +162 84062 0.4990 +162 84164 0.4030 +162 84251 0.7650 +162 85021 0.4960 +162 85439 0.5610 +162 91056 0.5570 +162 115548 0.5700 +162 117194 0.4570 +162 122616 0.5400 +162 130162 0.5880 +162 130340 0.9970 +162 134829 0.4990 +162 150350 0.6260 +162 157807 0.4990 +162 221421 0.5100 +162 246176 0.4240 +162 259249 0.7420 +162 286451 0.4990 +162 388552 0.4990 +162 100526783 0.4100 +163 164 0.9760 +163 185 0.6180 +163 187 0.4480 +163 226 0.4300 +163 229 0.4660 +163 273 0.9470 +163 274 0.7510 +163 338 0.5250 +163 372 0.7860 +163 374 0.4990 +163 377 0.4320 +163 382 0.8220 +163 408 0.9980 +163 409 0.9920 +163 472 0.4730 +163 551 0.4990 +163 554 0.6130 +163 685 0.4990 +163 699 0.4750 +163 701 0.6360 +163 821 0.4520 +163 867 0.5240 +163 915 0.5100 +163 917 0.4990 +163 920 0.5530 +163 950 0.5250 +163 972 0.5240 +163 1080 0.5260 +163 1129 0.4990 +163 1173 0.9990 +163 1174 0.9910 +163 1175 0.9990 +163 1176 0.9180 +163 1211 0.9650 +163 1212 0.9790 +163 1314 0.7670 +163 1399 0.4650 +163 1601 0.8940 +163 1639 0.5080 +163 1660 0.4490 +163 1759 0.7800 +163 1778 0.4060 +163 1785 0.7590 +163 1839 0.5090 +163 1856 0.5790 +163 1947 0.5310 +163 1948 0.5130 +163 1949 0.5220 +163 1950 0.5560 +163 1956 0.8130 +163 2047 0.5430 +163 2048 0.5450 +163 2049 0.5250 +163 2050 0.5250 +163 2051 0.5180 +163 2060 0.9730 +163 2069 0.4990 +163 2290 0.4240 +163 2535 0.4020 +163 2580 0.6100 +163 2885 0.6010 +163 2890 0.5810 +163 2891 0.5470 +163 2892 0.5260 +163 2893 0.4990 +163 3064 0.9520 +163 3092 0.8360 +163 3113 0.5090 +163 3115 0.4990 +163 3117 0.4990 +163 3118 0.4990 +163 3119 0.4990 +163 3120 0.4990 +163 3122 0.4990 +163 3123 0.4990 +163 3127 0.4990 +163 3208 0.7110 +163 3267 0.6640 +163 3482 0.5590 +163 3575 0.4990 +163 3725 0.5140 +163 3897 0.4990 +163 3920 0.4580 +163 3949 0.4990 +163 4036 0.7140 +163 4057 0.4380 +163 4074 0.5220 +163 4201 0.6770 +163 4478 0.5660 +163 4609 0.5600 +163 4646 0.5920 +163 4763 0.5110 +163 4771 0.4450 +163 4803 0.5160 +163 4857 0.4290 +163 4914 0.5230 +163 4952 0.4670 +163 5214 0.4150 +163 5578 0.4050 +163 5579 0.4030 +163 5594 0.6350 +163 5867 0.5360 +163 5868 0.5880 +163 5962 0.5510 +163 6195 0.5040 +163 6196 0.4990 +163 6197 0.5200 +163 6233 0.5640 +163 6295 0.6810 +163 6453 0.9920 +163 6455 0.5700 +163 6456 0.5700 +163 6457 0.5470 +163 6464 0.4660 +163 6572 0.5400 +163 6642 0.4420 +163 6844 0.6260 +163 6845 0.5850 +163 6869 0.4990 +163 7018 0.5120 +163 7037 0.7790 +163 7039 0.5140 +163 7292 0.4910 +163 7311 0.5230 +163 7314 0.5600 +163 7316 0.6000 +163 7415 0.4030 +163 7425 0.5590 +163 7430 0.5570 +163 7436 0.4990 +163 7474 0.5180 +163 7855 0.4400 +163 8027 0.5540 +163 8120 0.7010 +163 8218 0.9920 +163 8301 0.9080 +163 8322 0.5020 +163 8480 0.4320 +163 8546 0.6880 +163 8650 0.7270 +163 8673 0.5720 +163 8674 0.5790 +163 8862 0.4120 +163 8867 0.8500 +163 8905 0.9740 +163 8906 0.9020 +163 8907 0.9680 +163 8943 0.8530 +163 8986 0.5050 +163 9026 0.6270 +163 9146 0.6150 +163 9179 0.9790 +163 9185 0.5470 +163 9217 0.4290 +163 9238 0.5100 +163 9252 0.5100 +163 9253 0.5170 +163 9341 0.5550 +163 9463 0.5780 +163 9685 0.8670 +163 9829 0.4260 +163 9856 0.4990 +163 9892 0.7630 +163 9907 0.9150 +163 10053 0.9710 +163 10126 0.4200 +163 10239 0.9160 +163 10254 0.5240 +163 10618 0.9680 +163 10717 0.9150 +163 10900 0.7310 +163 10928 0.6770 +163 10947 0.7800 +163 11154 0.9740 +163 11276 0.8100 +163 22794 0.4360 +163 22818 0.4270 +163 22820 0.4270 +163 22848 0.9580 +163 22905 0.9330 +163 23149 0.7940 +163 23339 0.4750 +163 23396 0.4190 +163 23426 0.5340 +163 23431 0.9640 +163 24137 0.5070 +163 25977 0.8490 +163 26052 0.6400 +163 26119 0.9930 +163 26958 0.4090 +163 26985 0.6940 +163 27330 0.4990 +163 29924 0.8130 +163 29978 0.5780 +163 29988 0.7110 +163 30011 0.5000 +163 30846 0.9070 +163 50618 0.8610 +163 50636 0.5540 +163 51320 0.7000 +163 51429 0.5680 +163 54542 0.4040 +163 55040 0.9180 +163 55317 0.9210 +163 55681 0.4150 +163 55707 0.9750 +163 55738 0.7680 +163 55742 0.5080 +163 55745 0.9620 +163 56479 0.9030 +163 57148 0.4470 +163 57704 0.5360 +163 58513 0.9330 +163 64083 0.4430 +163 64744 0.4140 +163 64753 0.4770 +163 79840 0.4250 +163 80115 0.7200 +163 80852 0.5180 +163 83988 0.9200 +163 84251 0.9060 +163 84466 0.5540 +163 85021 0.8640 +163 85439 0.6760 +163 91056 0.9110 +163 115548 0.9310 +163 122616 0.5400 +163 130162 0.5880 +163 130340 0.8850 +163 150350 0.6260 +163 221421 0.5100 +163 253959 0.6060 +163 255324 0.4990 +163 255738 0.6360 +163 285643 0.4990 +163 728378 0.4470 +163 100526783 0.4100 +164 351 0.4250 +164 372 0.4070 +164 373 0.5910 +164 377 0.4060 +164 382 0.5130 +164 408 0.5310 +164 582 0.7620 +164 583 0.7620 +164 585 0.7270 +164 808 0.4270 +164 810 0.4100 +164 972 0.4990 +164 1173 0.9680 +164 1174 0.9980 +164 1175 0.8730 +164 1176 0.8890 +164 1211 0.7340 +164 1212 0.7720 +164 1312 0.5700 +164 1315 0.6160 +164 1362 0.5730 +164 1509 0.4240 +164 1522 0.5470 +164 1759 0.5550 +164 1777 0.5180 +164 1785 0.6140 +164 2060 0.8470 +164 2495 0.5440 +164 2512 0.4990 +164 2580 0.7920 +164 2647 0.5260 +164 2799 0.6100 +164 3105 0.9280 +164 3106 0.6500 +164 3107 0.6500 +164 3113 0.4990 +164 3115 0.4990 +164 3117 0.4990 +164 3118 0.4990 +164 3119 0.4990 +164 3120 0.4990 +164 3122 0.4990 +164 3123 0.4990 +164 3127 0.5260 +164 3133 0.6510 +164 3134 0.6630 +164 3135 0.6500 +164 3312 0.5850 +164 3482 0.6270 +164 4074 0.5960 +164 4218 0.4560 +164 4952 0.5310 +164 5286 0.5240 +164 5341 0.5500 +164 5564 0.5020 +164 5708 0.4070 +164 5878 0.6250 +164 5880 0.5290 +164 6272 0.5990 +164 6456 0.5380 +164 6572 0.5450 +164 6643 0.6290 +164 6844 0.5750 +164 6845 0.7450 +164 6855 0.4360 +164 7037 0.5840 +164 7163 0.5000 +164 7164 0.4990 +164 7317 0.4320 +164 7425 0.5470 +164 8120 0.7720 +164 8218 0.8850 +164 8301 0.6830 +164 8417 0.5840 +164 8546 0.8750 +164 8673 0.7590 +164 8766 0.4420 +164 8775 0.5040 +164 8867 0.7940 +164 8871 0.5510 +164 8905 0.9970 +164 8906 0.9040 +164 8907 0.9990 +164 8943 0.7330 +164 9026 0.5510 +164 9135 0.9410 +164 9179 0.9280 +164 9238 0.5400 +164 9482 0.5210 +164 9685 0.8970 +164 9698 0.6600 +164 9701 0.5580 +164 9829 0.6040 +164 9907 0.6380 +164 10053 0.9960 +164 10139 0.5920 +164 10239 0.8320 +164 10352 0.4660 +164 10427 0.4260 +164 10490 0.4390 +164 10618 0.6820 +164 10717 0.9240 +164 10947 0.7810 +164 11154 0.8770 +164 11276 0.9470 +164 11311 0.4800 +164 22905 0.7040 +164 23062 0.4930 +164 23163 0.5830 +164 23339 0.5020 +164 23431 0.6260 +164 23557 0.5430 +164 25938 0.4280 +164 25977 0.8410 +164 26052 0.5720 +164 26088 0.6340 +164 26258 0.5220 +164 26985 0.9030 +164 27131 0.5930 +164 27241 0.7680 +164 28960 0.5000 +164 29924 0.7220 +164 51429 0.6540 +164 54497 0.5980 +164 54885 0.4990 +164 55040 0.6860 +164 55212 0.7660 +164 55291 0.4930 +164 55317 0.6190 +164 55327 0.4170 +164 55330 0.4990 +164 55435 0.7340 +164 55690 0.4360 +164 55707 0.9040 +164 55737 0.4490 +164 55745 0.7650 +164 55823 0.4270 +164 56479 0.5560 +164 57617 0.4630 +164 58513 0.6850 +164 79719 0.7890 +164 80115 0.5470 +164 81567 0.5030 +164 83988 0.5400 +164 84062 0.5060 +164 84251 0.6330 +164 84993 0.5950 +164 91056 0.6090 +164 92482 0.7690 +164 117177 0.5500 +164 122616 0.5400 +164 124045 0.4510 +164 129880 0.7650 +164 130340 0.9990 +164 134829 0.5350 +164 150350 0.6840 +164 157807 0.5350 +164 170680 0.4500 +164 221421 0.4530 +164 286451 0.5350 +164 348110 0.4070 +164 388552 0.4990 +164 404785 0.4590 +164 441061 0.6390 +164 100526783 0.6040 +165 633 0.5660 +165 1277 0.5620 +165 1278 0.5780 +165 1281 0.5300 +165 1289 0.5760 +165 1290 0.5610 +165 1291 0.4400 +165 1292 0.5720 +165 1293 0.4730 +165 1301 0.4710 +165 1303 0.4960 +165 1909 0.4230 +165 2199 0.4090 +165 2331 0.5490 +165 4040 0.4630 +165 4060 0.4460 +165 5118 0.5000 +165 5159 0.4030 +165 6876 0.4010 +165 6929 0.6500 +165 7058 0.5950 +165 7373 0.5430 +165 8325 0.5280 +165 10631 0.4680 +165 23386 0.4040 +165 26074 0.4130 +165 27296 0.4330 +165 30008 0.4190 +165 54587 0.4500 +165 55033 0.4540 +165 80059 0.4370 +165 84168 0.4030 +165 84627 0.4190 +165 113189 0.4110 +165 284119 0.4070 +166 861 0.7140 +166 1436 0.4490 +166 1487 0.4460 +166 1956 0.4190 +166 2019 0.7000 +166 2064 0.4190 +166 2104 0.4490 +166 2150 0.4320 +166 2801 0.4030 +166 3142 0.6950 +166 3280 0.4190 +166 4040 0.4120 +166 4928 0.4130 +166 4990 0.7720 +166 5626 0.4960 +166 5970 0.6170 +166 6011 0.4920 +166 6495 0.5340 +166 6496 0.4770 +166 6929 0.5830 +166 6932 0.4620 +166 6934 0.5150 +166 7088 0.9190 +166 7089 0.8580 +166 7090 0.9320 +166 7091 0.9130 +166 9188 0.7150 +166 27287 0.7960 +166 51176 0.5250 +166 51651 0.8930 +166 54606 0.7090 +166 55502 0.4310 +166 79816 0.7810 +166 83439 0.4160 +166 84619 0.4510 +166 92129 0.8250 +166 134701 0.7500 +166 391723 0.5490 +166 102723796 0.8030 +167 290 0.4210 +167 928 0.4880 +167 1486 0.4540 +167 1538 0.4330 +167 2515 0.5470 +167 2618 0.8310 +167 3827 0.4120 +167 4048 0.6000 +167 4314 0.4650 +167 4477 0.4710 +167 4803 0.4610 +167 4880 0.4700 +167 5216 0.4040 +167 5232 0.5010 +167 5277 0.5650 +167 5320 0.5700 +167 6677 0.5870 +167 7047 0.4030 +167 7455 0.5140 +167 7784 0.4480 +167 8756 0.4180 +167 8852 0.5270 +167 10407 0.4530 +167 10876 0.5360 +167 25797 0.4840 +167 57119 0.4120 +167 64100 0.4020 +167 64184 0.4630 +167 79820 0.4860 +167 81623 0.6690 +167 83716 0.4570 +167 90199 0.4370 +167 92140 0.5150 +167 116362 0.4150 +167 140683 0.4160 +167 140738 0.5270 +167 151056 0.6740 +167 152007 0.5270 +167 158431 0.4100 +167 160065 0.5380 +167 259307 0.6810 +167 284359 0.5730 +167 431705 0.4640 +167 100129669 0.4930 +173 197 0.5620 +173 259 0.5490 +173 325 0.7010 +173 335 0.5360 +173 336 0.6130 +173 338 0.4270 +173 345 0.6030 +173 350 0.7200 +173 462 0.5590 +173 563 0.5970 +173 718 0.4370 +173 720 0.5470 +173 721 0.5450 +173 731 0.5440 +173 732 0.4780 +173 735 0.5350 +173 866 0.5890 +173 1191 0.4330 +173 1356 0.6870 +173 1370 0.4850 +173 1582 0.4330 +173 2147 0.6480 +173 2158 0.5240 +173 2165 0.4960 +173 2335 0.4280 +173 2638 0.6250 +173 2678 0.4350 +173 2934 0.4480 +173 3053 0.6460 +173 3240 0.5280 +173 3263 0.5530 +173 3273 0.7740 +173 3383 0.6330 +173 3426 0.5590 +173 3697 0.4850 +173 3698 0.4720 +173 3699 0.4870 +173 3700 0.5790 +173 3827 0.5880 +173 5004 0.4530 +173 5005 0.4290 +173 5265 0.5870 +173 5267 0.4960 +173 5340 0.6370 +173 5345 0.4300 +173 5444 0.4900 +173 5624 0.4150 +173 5950 0.4750 +173 6462 0.4240 +173 6694 0.4450 +173 6906 0.4720 +173 7018 0.4730 +173 7276 0.5170 +173 7448 0.4160 +173 7474 0.5750 +173 7477 0.4250 +173 9370 0.4850 +173 10747 0.4730 +173 22882 0.5180 +173 26137 0.5660 +173 27329 0.5050 +173 54363 0.4470 +173 54431 0.4070 +173 64902 0.5020 +173 81034 0.4790 +173 81494 0.4450 +173 85477 0.4600 +173 89780 0.7040 +173 114770 0.5470 +173 116844 0.4860 +174 197 0.9200 +174 207 0.4800 +174 213 0.9270 +174 250 0.6970 +174 259 0.8230 +174 329 0.4310 +174 331 0.6430 +174 335 0.7210 +174 336 0.9050 +174 338 0.8440 +174 345 0.5400 +174 350 0.8470 +174 354 0.7730 +174 383 0.4450 +174 432 0.5650 +174 462 0.5100 +174 463 0.5150 +174 590 0.5440 +174 595 0.4860 +174 596 0.4700 +174 652 0.4120 +174 794 0.5050 +174 836 0.5860 +174 920 0.5190 +174 925 0.5060 +174 943 0.5790 +174 947 0.6280 +174 960 0.5050 +174 968 0.4020 +174 999 0.5350 +174 1000 0.4230 +174 1045 0.5780 +174 1048 0.9410 +174 1113 0.5800 +174 1234 0.5810 +174 1244 0.4130 +174 1356 0.7370 +174 1373 0.5560 +174 1401 0.6760 +174 1431 0.4530 +174 1442 0.5060 +174 1443 0.4830 +174 1485 0.4310 +174 1499 0.6220 +174 1544 0.4400 +174 1551 0.4820 +174 1576 0.5250 +174 1581 0.4120 +174 1716 0.4400 +174 1950 0.5160 +174 1956 0.4790 +174 2026 0.7260 +174 2064 0.4750 +174 2099 0.4570 +174 2147 0.9730 +174 2152 0.4760 +174 2168 0.5260 +174 2184 0.7760 +174 2243 0.6230 +174 2244 0.5600 +174 2247 0.4960 +174 2248 0.4040 +174 2249 0.6120 +174 2250 0.4320 +174 2266 0.5740 +174 2335 0.5050 +174 2353 0.6820 +174 2395 0.4720 +174 2494 0.4360 +174 2517 0.5700 +174 2519 0.6100 +174 2526 0.4180 +174 2530 0.4590 +174 2538 0.4460 +174 2597 0.5760 +174 2626 0.7000 +174 2627 0.5890 +174 2638 0.7170 +174 2670 0.4560 +174 2678 0.5320 +174 2719 0.9270 +174 2752 0.4920 +174 2762 0.4550 +174 2806 0.5040 +174 2875 0.8940 +174 3046 0.5100 +174 3050 0.4810 +174 3052 0.4460 +174 3082 0.6190 +174 3110 0.4270 +174 3169 0.6140 +174 3170 0.7900 +174 3171 0.6350 +174 3172 0.6450 +174 3175 0.4810 +174 3240 0.6020 +174 3242 0.6600 +174 3263 0.5100 +174 3308 0.4740 +174 3439 0.4180 +174 3458 0.4840 +174 3481 0.7020 +174 3484 0.8350 +174 3569 0.5320 +174 3586 0.4070 +174 3630 0.7460 +174 3655 0.4830 +174 3698 0.5820 +174 3725 0.7340 +174 3791 0.5210 +174 3815 0.6130 +174 3827 0.5490 +174 3845 0.4180 +174 3855 0.7350 +174 3856 0.6340 +174 3875 0.7040 +174 3880 0.8600 +174 3959 0.5130 +174 4018 0.6280 +174 4036 0.4180 +174 4072 0.6790 +174 4100 0.4830 +174 4151 0.4520 +174 4192 0.4360 +174 4233 0.5260 +174 4267 0.5060 +174 4311 0.5070 +174 4313 0.4100 +174 4318 0.4210 +174 4361 0.4540 +174 4609 0.5830 +174 4684 0.5070 +174 4922 0.5440 +174 5004 0.7400 +174 5005 0.7620 +174 5008 0.4970 +174 5069 0.7430 +174 5080 0.4480 +174 5133 0.4180 +174 5175 0.5010 +174 5265 0.9270 +174 5340 0.7080 +174 5347 0.4900 +174 5460 0.7580 +174 5617 0.4520 +174 5629 0.5640 +174 5669 0.4330 +174 5670 0.4340 +174 5671 0.4790 +174 5672 0.4470 +174 5675 0.4790 +174 5676 0.4380 +174 5678 0.4470 +174 5680 0.5070 +174 5728 0.7420 +174 5788 0.4360 +174 5950 0.4930 +174 6462 0.5790 +174 6490 0.5220 +174 6498 0.4420 +174 6657 0.6410 +174 6696 0.5290 +174 6774 0.4260 +174 6855 0.5940 +174 6898 0.6570 +174 6906 0.7100 +174 6927 0.4970 +174 6928 0.4450 +174 6999 0.4190 +174 7015 0.5550 +174 7018 0.7360 +174 7038 0.4480 +174 7040 0.4670 +174 7048 0.5120 +174 7070 0.5050 +174 7080 0.4340 +174 7099 0.5250 +174 7124 0.4180 +174 7157 0.6250 +174 7272 0.4250 +174 7276 0.8880 +174 7299 0.7770 +174 7448 0.4570 +174 7490 0.5780 +174 7837 0.6050 +174 7852 0.4020 +174 8431 0.6890 +174 8788 0.6920 +174 8842 0.5480 +174 9314 0.4860 +174 9573 0.4660 +174 9774 0.4160 +174 9965 0.5210 +174 10165 0.5220 +174 10763 0.5960 +174 10894 0.4250 +174 22882 0.7740 +174 22943 0.4710 +174 23064 0.7380 +174 23318 0.5600 +174 23411 0.4400 +174 25875 0.4400 +174 26137 0.7740 +174 26257 0.5190 +174 27122 0.4160 +174 29126 0.5090 +174 51280 0.7170 +174 54205 0.5650 +174 54474 0.6510 +174 54840 0.6710 +174 55211 0.4020 +174 55687 0.6130 +174 55808 0.4800 +174 55937 0.5590 +174 56975 0.5080 +174 57167 0.6840 +174 57818 0.4060 +174 64083 0.5420 +174 64321 0.5930 +174 79727 0.5360 +174 79923 0.7130 +174 83733 0.4750 +174 84706 0.7590 +174 92579 0.4090 +174 137902 0.5940 +174 140628 0.4300 +174 282617 0.4180 +174 400566 0.6210 +174 440533 0.4410 +174 100861540 0.4510 +175 213 0.4850 +175 410 0.4740 +175 411 0.4890 +175 435 0.4260 +175 440 0.4950 +175 978 0.5430 +175 1121 0.4390 +175 1142 0.4010 +175 1201 0.5340 +175 1902 0.5050 +175 2271 0.6800 +175 2517 0.4270 +175 2519 0.4150 +175 2641 0.5780 +175 2678 0.7440 +175 2744 0.8360 +175 2978 0.4340 +175 2984 0.6240 +175 2990 0.4220 +175 3073 0.4650 +175 4018 0.5600 +175 4708 0.4800 +175 5009 0.5720 +175 5538 0.5290 +175 5973 0.4180 +175 6194 0.4130 +175 6279 0.4460 +175 9170 0.5500 +175 9188 0.4080 +175 9374 0.5850 +175 9900 0.5630 +175 10194 0.5730 +175 10249 0.7530 +175 10444 0.4230 +175 10544 0.4280 +175 25843 0.5460 +175 26270 0.4250 +175 26998 0.5700 +175 54529 0.4840 +175 57403 0.6750 +175 79017 0.8450 +175 139818 0.4820 +175 728226 0.8030 +176 207 0.4540 +176 213 0.6950 +176 214 0.4340 +176 249 0.5990 +176 302 0.4420 +176 374 0.4660 +176 579 0.4650 +176 596 0.4130 +176 632 0.8120 +176 633 0.9280 +176 649 0.5530 +176 650 0.7080 +176 652 0.5220 +176 654 0.5480 +176 655 0.6220 +176 771 0.4030 +176 836 0.4960 +176 860 0.8000 +176 885 0.5320 +176 920 0.4620 +176 947 0.5480 +176 960 0.7610 +176 1000 0.4150 +176 1101 0.6170 +176 1277 0.8350 +176 1278 0.5950 +176 1280 0.6610 +176 1288 0.4180 +176 1297 0.6960 +176 1298 0.5870 +176 1299 0.4680 +176 1300 0.8570 +176 1301 0.6070 +176 1302 0.6110 +176 1311 0.9800 +176 1404 0.9810 +176 1462 0.9880 +176 1463 0.9700 +176 1464 0.4070 +176 1490 0.7120 +176 1499 0.5320 +176 1513 0.6100 +176 1520 0.4050 +176 1634 0.9620 +176 1833 0.4910 +176 1950 0.6230 +176 2022 0.6080 +176 2034 0.4180 +176 2167 0.4790 +176 2192 0.9540 +176 2199 0.9310 +176 2200 0.4700 +176 2247 0.6290 +176 2248 0.4730 +176 2249 0.4770 +176 2250 0.4650 +176 2251 0.4720 +176 2252 0.4890 +176 2253 0.4740 +176 2254 0.4610 +176 2255 0.4680 +176 2258 0.4850 +176 2261 0.4670 +176 2331 0.9530 +176 2335 0.9940 +176 2597 0.7150 +176 2683 0.4020 +176 3026 0.6870 +176 3036 0.6720 +176 3037 0.7360 +176 3038 0.6500 +176 3091 0.4800 +176 3112 0.4640 +176 3115 0.4670 +176 3119 0.5170 +176 3120 0.5220 +176 3122 0.7980 +176 3123 0.7040 +176 3127 0.7980 +176 3339 0.8910 +176 3371 0.8940 +176 3373 0.4680 +176 3381 0.6300 +176 3418 0.4430 +176 3419 0.6380 +176 3479 0.6350 +176 3549 0.7610 +176 3552 0.6170 +176 3553 0.7930 +176 3569 0.6500 +176 3576 0.4460 +176 3586 0.4490 +176 3630 0.5610 +176 3688 0.5320 +176 4015 0.4030 +176 4023 0.4060 +176 4040 0.4580 +176 4060 0.9200 +176 4087 0.5020 +176 4088 0.4450 +176 4146 0.8730 +176 4148 0.7300 +176 4166 0.4990 +176 4312 0.8150 +176 4313 0.8040 +176 4314 0.9020 +176 4316 0.6480 +176 4317 0.5300 +176 4318 0.8020 +176 4321 0.6290 +176 4322 0.9440 +176 4323 0.5100 +176 4325 0.4210 +176 4684 0.5050 +176 4792 0.4050 +176 4803 0.4460 +176 4811 0.5840 +176 4907 0.6130 +176 4958 0.7160 +176 4969 0.7140 +176 5008 0.4290 +176 5015 0.4490 +176 5054 0.5240 +176 5075 0.4490 +176 5175 0.4610 +176 5199 0.4260 +176 5460 0.4020 +176 5468 0.5500 +176 5549 0.7690 +176 5595 0.4460 +176 5654 0.8430 +176 5743 0.5580 +176 5744 0.5640 +176 5745 0.4260 +176 5788 0.5290 +176 5792 0.4450 +176 5802 0.6210 +176 5803 0.9900 +176 5816 0.6240 +176 6347 0.5970 +176 6348 0.5010 +176 6356 0.4520 +176 6364 0.4390 +176 6385 0.7070 +176 6473 0.4550 +176 6657 0.4050 +176 6659 0.5210 +176 6660 0.7150 +176 6662 0.8960 +176 6677 0.4030 +176 6678 0.6980 +176 6696 0.7360 +176 6736 0.6310 +176 7040 0.7250 +176 7042 0.4430 +176 7043 0.7390 +176 7057 0.5760 +176 7060 0.4830 +176 7070 0.6140 +176 7076 0.6460 +176 7077 0.5430 +176 7078 0.6120 +176 7097 0.5840 +176 7099 0.6300 +176 7124 0.6310 +176 7130 0.8580 +176 7143 0.9470 +176 7148 0.6360 +176 7448 0.5330 +176 7837 0.5790 +176 8190 0.4140 +176 8200 0.7140 +176 8483 0.5550 +176 8534 0.4930 +176 8600 0.4480 +176 8692 0.4500 +176 8702 0.4380 +176 8703 0.4020 +176 8704 0.4100 +176 8785 0.6520 +176 8817 0.5530 +176 8822 0.4600 +176 8823 0.4530 +176 9321 0.5900 +176 9370 0.4060 +176 9435 0.4660 +176 9469 0.4080 +176 9507 0.9810 +176 9508 0.9610 +176 9509 0.5640 +176 9510 0.8600 +176 10216 0.9000 +176 10371 0.5830 +176 10631 0.6370 +176 10678 0.4100 +176 10894 0.4240 +176 11061 0.4650 +176 11081 0.7960 +176 11095 0.6720 +176 11096 0.9720 +176 11173 0.4890 +176 23563 0.4330 +176 23643 0.4050 +176 23741 0.5480 +176 26281 0.4480 +176 27006 0.4730 +176 50515 0.4450 +176 51705 0.5060 +176 54829 0.5660 +176 55226 0.4260 +176 55553 0.7210 +176 55790 0.5130 +176 56243 0.7100 +176 56999 0.8600 +176 59341 0.4070 +176 63827 0.9890 +176 63923 0.6530 +176 64084 0.4550 +176 64102 0.6490 +176 64131 0.4070 +176 79923 0.4300 +176 80070 0.5720 +176 81792 0.4600 +176 85476 0.6090 +176 93010 0.4140 +176 121340 0.6120 +176 137902 0.5790 +176 170689 0.6720 +176 170690 0.6170 +176 170692 0.5710 +176 283078 0.4720 +176 375790 0.5700 +176 387129 0.4910 +176 392255 0.4980 +176 404037 0.4400 +176 642658 0.4460 +177 207 0.6080 +177 213 0.7970 +177 231 0.5970 +177 285 0.4450 +177 325 0.4470 +177 328 0.4470 +177 333 0.4060 +177 334 0.4220 +177 348 0.6750 +177 351 0.8810 +177 387 0.4640 +177 596 0.4010 +177 627 0.4470 +177 811 0.5680 +177 829 0.5420 +177 830 0.5290 +177 834 0.5190 +177 836 0.4550 +177 857 0.4840 +177 920 0.4160 +177 948 0.7340 +177 949 0.7410 +177 950 0.7230 +177 960 0.4060 +177 961 0.4840 +177 968 0.4840 +177 1136 0.5450 +177 1147 0.4490 +177 1401 0.5450 +177 1490 0.4600 +177 1508 0.4850 +177 1511 0.6370 +177 1536 0.9390 +177 1636 0.4370 +177 1650 0.5710 +177 1729 0.9720 +177 1910 0.4490 +177 1956 0.4800 +177 2099 0.5280 +177 2100 0.4760 +177 2160 0.4500 +177 2167 0.4660 +177 2247 0.5050 +177 2357 0.5030 +177 2358 0.5620 +177 3068 0.4320 +177 3146 0.9990 +177 3149 0.5740 +177 3265 0.9150 +177 3308 0.8070 +177 3383 0.5730 +177 3416 0.5420 +177 3458 0.5090 +177 3552 0.6170 +177 3553 0.7940 +177 3565 0.4200 +177 3569 0.6660 +177 3576 0.5420 +177 3586 0.5070 +177 3600 0.4290 +177 3606 0.4950 +177 3630 0.5070 +177 3676 0.4470 +177 3683 0.4780 +177 3684 0.4470 +177 3688 0.4920 +177 3689 0.8210 +177 3717 0.9200 +177 3725 0.4030 +177 3845 0.9440 +177 3934 0.5570 +177 3958 0.5920 +177 4035 0.7950 +177 4210 0.4030 +177 4311 0.5580 +177 4318 0.5390 +177 4345 0.4650 +177 4353 0.4480 +177 4790 0.7760 +177 4791 0.5830 +177 4846 0.4310 +177 4855 0.5010 +177 4893 0.9040 +177 5054 0.4460 +177 5089 0.6150 +177 5468 0.4410 +177 5589 0.4050 +177 5594 0.6660 +177 5595 0.7110 +177 5657 0.6210 +177 5743 0.4480 +177 5970 0.6310 +177 5972 0.4140 +177 6271 0.8020 +177 6275 0.9880 +177 6276 0.5300 +177 6277 0.9830 +177 6278 0.8760 +177 6279 0.6340 +177 6280 0.6490 +177 6282 0.9610 +177 6283 0.9990 +177 6284 0.9540 +177 6285 0.9990 +177 6286 0.9620 +177 6288 0.8350 +177 6289 0.6720 +177 6347 0.5790 +177 6382 0.4500 +177 6387 0.6120 +177 6403 0.4100 +177 6440 0.8700 +177 6441 0.7760 +177 6652 0.5080 +177 6774 0.4150 +177 7040 0.5990 +177 7056 0.4210 +177 7097 0.8140 +177 7098 0.4050 +177 7099 0.9400 +177 7113 0.5030 +177 7122 0.4130 +177 7124 0.6320 +177 7157 0.5440 +177 7276 0.8840 +177 7356 0.6840 +177 7412 0.5070 +177 7450 0.4860 +177 7852 0.4160 +177 8361 0.4710 +177 8369 0.4740 +177 8550 0.4130 +177 8829 0.5110 +177 10144 0.4950 +177 10870 0.4320 +177 23385 0.4280 +177 23621 0.6310 +177 27035 0.9250 +177 50507 0.9300 +177 51081 0.5960 +177 51107 0.4180 +177 51135 0.4340 +177 51192 0.4170 +177 51208 0.5090 +177 54106 0.7950 +177 54209 0.4250 +177 55851 0.4180 +177 59272 0.5750 +177 64399 0.4040 +177 79258 0.6580 +177 79807 0.4840 +177 80739 0.4730 +177 89790 0.4750 +177 90865 0.5590 +177 114548 0.4320 +177 114609 0.4940 +177 117156 0.6170 +177 154150 0.4390 +177 653509 0.7220 +177 729238 0.6230 +178 277 0.9630 +178 278 0.9610 +178 280 0.9620 +178 987 0.4530 +178 1537 0.5450 +178 1678 0.4010 +178 2023 0.4870 +178 2027 0.5240 +178 2262 0.4430 +178 2538 0.8190 +178 2542 0.6040 +178 2548 0.5810 +178 2632 0.9930 +178 2641 0.4240 +178 2645 0.5280 +178 2819 0.4180 +178 2821 0.6060 +178 2990 0.4380 +178 2992 0.9310 +178 2997 0.9440 +178 2998 0.8880 +178 3098 0.4290 +178 3558 0.6600 +178 4123 0.4110 +178 4358 0.8390 +178 5167 0.9200 +178 5169 0.9140 +178 5213 0.5130 +178 5224 0.5270 +178 5226 0.4330 +178 5236 0.8170 +178 5239 0.6990 +178 5255 0.6050 +178 5256 0.5710 +178 5257 0.6710 +178 5260 0.4890 +178 5261 0.6260 +178 5277 0.5830 +178 5315 0.4560 +178 5427 0.4150 +178 5507 0.5870 +178 5509 0.4540 +178 5834 0.9990 +178 5836 0.9970 +178 5837 0.9970 +178 5876 0.4640 +178 6335 0.8100 +178 6476 0.5750 +178 6514 0.5670 +178 6518 0.4700 +178 6888 0.4060 +178 7167 0.4250 +178 7360 0.9670 +178 7841 0.6870 +178 7957 0.8760 +178 8908 0.9690 +178 8972 0.9600 +178 8987 0.8630 +178 9380 0.5440 +178 9563 0.5050 +178 10020 0.8490 +178 11181 0.5810 +178 29997 0.9830 +178 51422 0.5010 +178 55276 0.9290 +178 55277 0.4160 +178 56052 0.5770 +178 57818 0.7880 +178 64080 0.7200 +178 79058 0.4570 +178 79660 0.4150 +178 80162 0.4880 +178 80347 0.4160 +178 85365 0.5830 +178 92579 0.8040 +178 93432 0.9390 +178 130589 0.8860 +178 132158 0.4170 +178 154141 0.6600 +178 166929 0.5080 +178 283209 0.9090 +178 284098 0.5770 +178 286451 0.4710 +178 378884 0.9050 +178 440138 0.5870 +178 644974 0.5770 +181 207 0.4440 +181 434 0.8270 +181 627 0.5920 +181 885 0.7340 +181 886 0.4660 +181 1270 0.5090 +181 1271 0.4200 +181 1363 0.6110 +181 1374 0.5340 +181 1392 0.8040 +181 1839 0.4690 +181 2308 0.9250 +181 2353 0.7380 +181 2475 0.5980 +181 2516 0.5830 +181 2538 0.4020 +181 2641 0.6720 +181 2645 0.4810 +181 2691 0.7420 +181 2693 0.8130 +181 2740 0.5720 +181 2796 0.5100 +181 2847 0.6100 +181 2863 0.4860 +181 3060 0.8780 +181 3061 0.4600 +181 3358 0.4210 +181 3375 0.5110 +181 3479 0.4190 +181 3569 0.4160 +181 3630 0.9350 +181 3643 0.4240 +181 3667 0.4200 +181 3717 0.4520 +181 3767 0.4790 +181 3814 0.6540 +181 3952 0.9750 +181 3953 0.8810 +181 3991 0.4030 +181 4015 0.4510 +181 4157 0.7180 +181 4158 0.6890 +181 4159 0.9950 +181 4160 0.9980 +181 4161 0.6870 +181 4353 0.4420 +181 4842 0.4760 +181 4852 0.9760 +181 4886 0.7220 +181 4887 0.6730 +181 4889 0.7170 +181 4922 0.5780 +181 4925 0.4870 +181 5020 0.6770 +181 5122 0.5900 +181 5167 0.4310 +181 5173 0.5710 +181 5179 0.4850 +181 5367 0.8500 +181 5443 0.9770 +181 5468 0.4500 +181 5539 0.6240 +181 5562 0.4300 +181 5571 0.4540 +181 5697 0.8390 +181 5770 0.5080 +181 6009 0.4080 +181 6382 0.4220 +181 6492 0.6710 +181 6517 0.4130 +181 6750 0.5190 +181 6774 0.7130 +181 7054 0.6650 +181 7200 0.7590 +181 7224 0.4960 +181 7350 0.7720 +181 7351 0.7780 +181 7352 0.5530 +181 7425 0.5830 +181 7442 0.4860 +181 7837 0.5160 +181 8224 0.4510 +181 8455 0.6140 +181 8660 0.6260 +181 8862 0.4040 +181 9021 0.6530 +181 9114 0.4110 +181 9370 0.7330 +181 9607 0.8820 +181 9672 0.6450 +181 10874 0.4370 +181 10891 0.6020 +181 23411 0.4360 +181 25970 0.5860 +181 26291 0.4200 +181 51052 0.5970 +181 51083 0.7290 +181 51094 0.4110 +181 51738 0.9780 +181 55188 0.4470 +181 56729 0.4320 +181 57084 0.5410 +181 64111 0.4050 +181 79068 0.6100 +181 80763 0.4670 +181 84634 0.4120 +181 85569 0.4490 +181 96459 0.5820 +181 112609 0.5990 +181 127343 0.6270 +181 129787 0.4240 +181 137902 0.5320 +181 140679 0.5740 +181 201163 0.5480 +181 257194 0.4570 +181 390259 0.7900 +181 619373 0.7330 +182 196 0.4840 +182 207 0.6130 +182 213 0.4370 +182 216 0.4430 +182 284 0.5320 +182 285 0.4160 +182 286 0.6080 +182 287 0.6100 +182 288 0.6050 +182 460 0.4570 +182 474 0.6060 +182 567 0.4150 +182 595 0.7420 +182 596 0.4490 +182 648 0.4510 +182 650 0.4960 +182 652 0.5710 +182 655 0.4200 +182 836 0.4230 +182 860 0.4870 +182 864 0.8110 +182 920 0.4700 +182 947 0.5300 +182 958 0.5870 +182 959 0.5230 +182 960 0.5900 +182 989 0.4600 +182 999 0.5890 +182 1000 0.5340 +182 1003 0.5310 +182 1026 0.4540 +182 1027 0.4460 +182 1236 0.4870 +182 1277 0.4400 +182 1482 0.4920 +182 1490 0.4690 +182 1499 0.7960 +182 1674 0.5040 +182 1840 0.5620 +182 1848 0.5410 +182 1906 0.5300 +182 1948 0.6670 +182 1950 0.8690 +182 1956 0.5630 +182 2034 0.4050 +182 2041 0.8260 +182 2048 0.4120 +182 2050 0.6340 +182 2064 0.4920 +182 2099 0.6310 +182 2138 0.4030 +182 2247 0.5360 +182 2248 0.5930 +182 2249 0.4630 +182 2250 0.6180 +182 2251 0.4530 +182 2252 0.6240 +182 2253 0.4980 +182 2254 0.4760 +182 2255 0.5050 +182 2258 0.4230 +182 2263 0.5960 +182 2303 0.4180 +182 2321 0.4630 +182 2324 0.4300 +182 2335 0.5000 +182 2597 0.5670 +182 2625 0.4630 +182 2626 0.6570 +182 2670 0.6030 +182 2735 0.5240 +182 2736 0.4800 +182 2737 0.4230 +182 2932 0.5180 +182 3082 0.4490 +182 3091 0.5180 +182 3172 0.4520 +182 3280 0.7140 +182 3397 0.5540 +182 3437 0.4280 +182 3458 0.4250 +182 3479 0.4180 +182 3480 0.6000 +182 3516 0.9380 +182 3549 0.4370 +182 3553 0.4500 +182 3569 0.5260 +182 3578 0.4720 +182 3630 0.4120 +182 3655 0.4150 +182 3685 0.5600 +182 3688 0.4010 +182 3714 0.9510 +182 3717 0.5910 +182 3725 0.4370 +182 3791 0.7010 +182 3815 0.4610 +182 3845 0.4300 +182 3880 0.4910 +182 3955 0.7860 +182 4041 0.4610 +182 4072 0.4530 +182 4087 0.4830 +182 4088 0.5230 +182 4089 0.4440 +182 4092 0.4320 +182 4179 0.8310 +182 4233 0.4080 +182 4237 0.5520 +182 4242 0.5720 +182 4254 0.4870 +182 4301 0.8450 +182 4313 0.4100 +182 4318 0.4490 +182 4609 0.6880 +182 4647 0.4320 +182 4790 0.4290 +182 4794 0.4430 +182 4851 0.9990 +182 4853 0.9990 +182 4854 0.9990 +182 4855 0.9990 +182 4915 0.5020 +182 4973 0.4880 +182 5045 0.6420 +182 5076 0.4620 +182 5155 0.4400 +182 5156 0.4350 +182 5159 0.4510 +182 5175 0.5560 +182 5205 0.4130 +182 5328 0.5730 +182 5454 0.4020 +182 5455 0.4960 +182 5460 0.4590 +182 5595 0.4250 +182 5663 0.5240 +182 5664 0.4160 +182 5727 0.4440 +182 5728 0.4890 +182 5788 0.4900 +182 5879 0.6410 +182 5881 0.5950 +182 5957 0.4040 +182 5986 0.4570 +182 6233 0.4880 +182 6387 0.5590 +182 6469 0.6160 +182 6495 0.4240 +182 6591 0.5800 +182 6608 0.4610 +182 6615 0.5650 +182 6657 0.7010 +182 6662 0.6170 +182 6696 0.6590 +182 6714 0.4170 +182 6774 0.5320 +182 6868 0.7880 +182 6876 0.4380 +182 6900 0.4010 +182 6909 0.4970 +182 6939 0.4490 +182 7010 0.4940 +182 7026 0.4060 +182 7040 0.7310 +182 7042 0.4600 +182 7046 0.4490 +182 7048 0.4470 +182 7057 0.5990 +182 7078 0.5390 +182 7079 0.4210 +182 7099 0.4230 +182 7124 0.4880 +182 7157 0.5090 +182 7291 0.6990 +182 7311 0.4100 +182 7314 0.4420 +182 7316 0.4570 +182 7412 0.4690 +182 7423 0.5550 +182 7424 0.4080 +182 7450 0.4040 +182 7471 0.6940 +182 7472 0.4380 +182 7473 0.5040 +182 7474 0.5010 +182 7490 0.4080 +182 7837 0.4410 +182 7852 0.4980 +182 8312 0.4070 +182 8313 0.6230 +182 8476 0.4030 +182 8549 0.5500 +182 8600 0.4340 +182 8626 0.5060 +182 8650 0.7730 +182 8817 0.4810 +182 8822 0.4190 +182 8823 0.4480 +182 8842 0.5400 +182 8995 0.4210 +182 9134 0.5170 +182 9148 0.8220 +182 9241 0.5190 +182 9253 0.7750 +182 9314 0.4970 +182 9794 0.8770 +182 10253 0.4740 +182 10413 0.4660 +182 10578 0.7290 +182 10736 0.5090 +182 10763 0.5240 +182 11060 0.5790 +182 11317 0.5580 +182 22834 0.4080 +182 22943 0.6340 +182 23075 0.4050 +182 23385 0.5710 +182 23414 0.4050 +182 23462 0.9260 +182 23493 0.9180 +182 23509 0.6890 +182 25878 0.4580 +182 25894 0.4310 +182 26030 0.4140 +182 26281 0.4740 +182 26508 0.6920 +182 27006 0.4410 +182 28514 0.8040 +182 29949 0.4140 +182 50846 0.4120 +182 51107 0.4530 +182 51162 0.6010 +182 51176 0.4490 +182 51593 0.9150 +182 54361 0.4650 +182 54492 0.7460 +182 54567 0.6660 +182 55294 0.5650 +182 55502 0.4580 +182 55504 0.4670 +182 55534 0.7530 +182 55636 0.4790 +182 55851 0.4630 +182 56034 0.5150 +182 56983 0.4110 +182 57534 0.8460 +182 57801 0.5260 +182 79923 0.4500 +182 80110 0.4010 +182 80835 0.4040 +182 83737 0.4350 +182 83756 0.4030 +182 84441 0.8030 +182 85407 0.4760 +182 89780 0.5870 +182 121340 0.4040 +182 137902 0.4240 +182 142678 0.5850 +182 144455 0.4460 +182 284654 0.4710 +182 388585 0.8370 +182 390992 0.4290 +182 441478 0.7490 +182 100133941 0.4830 +182 100532731 0.4450 +183 185 0.9990 +183 186 0.9990 +183 187 0.8730 +183 197 0.6120 +183 207 0.8210 +183 213 0.8680 +183 231 0.4130 +183 259 0.6120 +183 284 0.4820 +183 285 0.4720 +183 290 0.9100 +183 301 0.5460 +183 325 0.4780 +183 335 0.5530 +183 336 0.4060 +183 338 0.6040 +183 345 0.4150 +183 348 0.8530 +183 350 0.5610 +183 351 0.6270 +183 358 0.4150 +183 359 0.6350 +183 384 0.4500 +183 387 0.6250 +183 408 0.7890 +183 409 0.9150 +183 462 0.5860 +183 472 0.4760 +183 488 0.4440 +183 551 0.8370 +183 552 0.8290 +183 553 0.7250 +183 554 0.8000 +183 596 0.5610 +183 623 0.9730 +183 624 0.9890 +183 627 0.6060 +183 643 0.5190 +183 680 0.6350 +183 682 0.4550 +183 688 0.5310 +183 695 0.5870 +183 718 0.7180 +183 719 0.5720 +183 720 0.4920 +183 727 0.6170 +183 728 0.6060 +183 775 0.6720 +183 808 0.6320 +183 810 0.6240 +183 814 0.5250 +183 819 0.4550 +183 834 0.4540 +183 836 0.6060 +183 845 0.4170 +183 846 0.6680 +183 857 0.6700 +183 885 0.8170 +183 886 0.5590 +183 887 0.5640 +183 920 0.5280 +183 925 0.4790 +183 948 0.4650 +183 949 0.5150 +183 950 0.4690 +183 960 0.5930 +183 968 0.5110 +183 1003 0.4520 +183 1128 0.5740 +183 1129 0.5440 +183 1131 0.6730 +183 1132 0.5110 +183 1133 0.5080 +183 1188 0.5200 +183 1215 0.9460 +183 1230 0.5820 +183 1232 0.5700 +183 1233 0.4990 +183 1234 0.6600 +183 1235 0.5640 +183 1236 0.5770 +183 1237 0.5330 +183 1241 0.5690 +183 1268 0.6410 +183 1269 0.5400 +183 1277 0.4610 +183 1278 0.4280 +183 1281 0.4670 +183 1282 0.4270 +183 1311 0.4690 +183 1325 0.5340 +183 1359 0.5610 +183 1360 0.4900 +183 1361 0.5910 +183 1385 0.5110 +183 1387 0.5020 +183 1392 0.6750 +183 1401 0.7070 +183 1432 0.4750 +183 1440 0.4160 +183 1471 0.5300 +183 1490 0.7400 +183 1499 0.4920 +183 1504 0.4590 +183 1506 0.4350 +183 1508 0.4330 +183 1509 0.9090 +183 1511 0.9120 +183 1514 0.4680 +183 1520 0.4930 +183 1522 0.8510 +183 1524 0.6360 +183 1535 0.6970 +183 1536 0.7710 +183 1577 0.4080 +183 1584 0.6730 +183 1585 0.8990 +183 1634 0.4790 +183 1636 0.9990 +183 1791 0.4240 +183 1798 0.5070 +183 1803 0.5990 +183 1814 0.5700 +183 1815 0.5500 +183 1839 0.4330 +183 1880 0.4990 +183 1889 0.6430 +183 1902 0.9200 +183 1903 0.5840 +183 1906 0.9530 +183 1907 0.7410 +183 1908 0.6570 +183 1909 0.9880 +183 1910 0.9620 +183 1950 0.5730 +183 1956 0.5510 +183 1958 0.4250 +183 2028 0.9250 +183 2034 0.4380 +183 2053 0.5410 +183 2056 0.5520 +183 2086 0.4930 +183 2099 0.4900 +183 2100 0.4280 +183 2147 0.8460 +183 2149 0.9360 +183 2150 0.5500 +183 2151 0.5100 +183 2152 0.5840 +183 2168 0.7300 +183 2185 0.4320 +183 2200 0.4880 +183 2243 0.4590 +183 2244 0.7390 +183 2247 0.5800 +183 2248 0.6450 +183 2249 0.6320 +183 2250 0.6500 +183 2251 0.6490 +183 2252 0.6550 +183 2253 0.6280 +183 2254 0.6300 +183 2255 0.6340 +183 2266 0.4320 +183 2308 0.4350 +183 2309 0.4510 +183 2321 0.4230 +183 2335 0.7900 +183 2353 0.6130 +183 2357 0.5760 +183 2358 0.5760 +183 2359 0.5130 +183 2475 0.5310 +183 2520 0.5430 +183 2550 0.5620 +183 2587 0.5430 +183 2597 0.6430 +183 2626 0.4850 +183 2638 0.5420 +183 2641 0.7480 +183 2642 0.6000 +183 2660 0.4140 +183 2670 0.6120 +183 2693 0.6130 +183 2695 0.4570 +183 2697 0.5350 +183 2702 0.4610 +183 2740 0.5030 +183 2767 0.5940 +183 2768 0.6210 +183 2769 0.5810 +183 2770 0.5170 +183 2771 0.5380 +183 2773 0.5310 +183 2776 0.9620 +183 2782 0.5260 +183 2783 0.5100 +183 2784 0.6840 +183 2785 0.5160 +183 2786 0.5330 +183 2787 0.4990 +183 2788 0.5080 +183 2790 0.4990 +183 2791 0.5000 +183 2792 0.5000 +183 2793 0.5290 +183 2796 0.5750 +183 2798 0.5580 +183 2826 0.5000 +183 2828 0.5360 +183 2829 0.5320 +183 2832 0.4990 +183 2833 0.5840 +183 2837 0.5870 +183 2838 0.4420 +183 2840 0.6970 +183 2841 0.5260 +183 2846 0.9070 +183 2847 0.5400 +183 2852 0.8100 +183 2853 0.5070 +183 2861 0.5640 +183 2862 0.5060 +183 2863 0.5340 +183 2864 0.5800 +183 2865 0.5980 +183 2867 0.6140 +183 2869 0.6340 +183 2875 0.4930 +183 2877 0.5390 +183 2878 0.5710 +183 2880 0.5410 +183 2882 0.5420 +183 2908 0.4140 +183 2911 0.6990 +183 2912 0.6700 +183 2913 0.6820 +183 2914 0.6610 +183 2915 0.7000 +183 2916 0.6550 +183 2917 0.6550 +183 2918 0.6620 +183 2919 0.6530 +183 2920 0.5960 +183 2921 0.5300 +183 2922 0.9890 +183 2925 0.6300 +183 2932 0.4850 +183 2999 0.7550 +183 3060 0.5780 +183 3061 0.5340 +183 3062 0.5090 +183 3082 0.4540 +183 3091 0.6340 +183 3156 0.5280 +183 3162 0.6120 +183 3205 0.4100 +183 3240 0.4200 +183 3269 0.5900 +183 3291 0.5510 +183 3309 0.4860 +183 3351 0.5840 +183 3352 0.5420 +183 3354 0.5210 +183 3355 0.5110 +183 3356 0.6260 +183 3357 0.6180 +183 3358 0.5560 +183 3361 0.5650 +183 3383 0.6590 +183 3458 0.6070 +183 3476 0.4060 +183 3479 0.6310 +183 3552 0.5880 +183 3553 0.7310 +183 3558 0.4490 +183 3562 0.4910 +183 3565 0.6530 +183 3569 0.7880 +183 3576 0.8600 +183 3577 0.6980 +183 3579 0.7430 +183 3586 0.6180 +183 3596 0.4090 +183 3605 0.5220 +183 3606 0.5240 +183 3611 0.4200 +183 3627 0.7100 +183 3630 0.8630 +183 3667 0.5200 +183 3684 0.4090 +183 3699 0.4010 +183 3708 0.4050 +183 3717 0.5390 +183 3725 0.6230 +183 3752 0.4080 +183 3758 0.4680 +183 3762 0.4340 +183 3778 0.4250 +183 3791 0.4620 +183 3814 0.4690 +183 3816 0.5480 +183 3818 0.4280 +183 3827 0.9920 +183 3929 0.5470 +183 3934 0.5090 +183 3952 0.7190 +183 3953 0.4230 +183 3958 0.4340 +183 4012 0.8020 +183 4015 0.5320 +183 4036 0.4670 +183 4087 0.6320 +183 4088 0.6130 +183 4089 0.4120 +183 4092 0.4890 +183 4129 0.4050 +183 4142 0.9690 +183 4151 0.4180 +183 4161 0.4520 +183 4192 0.4280 +183 4217 0.7710 +183 4283 0.6000 +183 4295 0.4750 +183 4306 0.9450 +183 4311 0.9570 +183 4312 0.4290 +183 4313 0.6420 +183 4314 0.4220 +183 4318 0.7040 +183 4353 0.4550 +183 4543 0.4990 +183 4544 0.4990 +183 4619 0.4150 +183 4622 0.4010 +183 4624 0.4890 +183 4625 0.4070 +183 4629 0.4440 +183 4659 0.4530 +183 4688 0.5830 +183 4689 0.4730 +183 4780 0.5040 +183 4790 0.5880 +183 4792 0.4920 +183 4828 0.5010 +183 4829 0.5340 +183 4842 0.6050 +183 4843 0.4720 +183 4846 0.7920 +183 4852 0.7840 +183 4868 0.6350 +183 4878 0.9480 +183 4879 0.7150 +183 4880 0.6360 +183 4881 0.5160 +183 4882 0.4280 +183 4883 0.4480 +183 4886 0.5790 +183 4887 0.5810 +183 4889 0.5350 +183 4915 0.5110 +183 4922 0.8880 +183 4923 0.6050 +183 4935 0.5070 +183 4973 0.5500 +183 4985 0.4990 +183 4988 0.6110 +183 5020 0.7850 +183 5021 0.5940 +183 5028 0.5690 +183 5029 0.6420 +183 5030 0.5670 +183 5031 0.6180 +183 5032 0.5670 +183 5045 0.7080 +183 5052 0.5030 +183 5054 0.4980 +183 5159 0.4040 +183 5173 0.7180 +183 5175 0.5040 +183 5179 0.6050 +183 5196 0.6270 +183 5228 0.4350 +183 5293 0.4310 +183 5327 0.5770 +183 5330 0.5620 +183 5331 0.5980 +183 5340 0.6630 +183 5367 0.4830 +183 5368 0.5820 +183 5443 0.8870 +183 5465 0.7670 +183 5467 0.4200 +183 5468 0.6770 +183 5473 0.5860 +183 5532 0.4260 +183 5539 0.5740 +183 5540 0.5010 +183 5546 0.4050 +183 5547 0.7030 +183 5550 0.6000 +183 5553 0.6420 +183 5566 0.5910 +183 5567 0.5900 +183 5568 0.5900 +183 5578 0.4570 +183 5580 0.5450 +183 5587 0.4180 +183 5592 0.5060 +183 5594 0.5660 +183 5595 0.7060 +183 5599 0.4490 +183 5600 0.4470 +183 5603 0.4150 +183 5604 0.4240 +183 5607 0.4070 +183 5608 0.4180 +183 5617 0.4480 +183 5660 0.5250 +183 5697 0.6290 +183 5724 0.5720 +183 5726 0.5120 +183 5728 0.4090 +183 5731 0.6040 +183 5733 0.6550 +183 5737 0.7060 +183 5740 0.5480 +183 5741 0.5760 +183 5743 0.6090 +183 5788 0.4030 +183 5896 0.4040 +183 5950 0.5270 +183 5972 0.9990 +183 5996 0.6230 +183 5997 0.4080 +183 5998 0.5690 +183 5999 0.6960 +183 6003 0.6360 +183 6004 0.6420 +183 6051 0.4770 +183 6093 0.4470 +183 6198 0.4880 +183 6256 0.4550 +183 6262 0.5080 +183 6285 0.5390 +183 6288 0.5130 +183 6295 0.4180 +183 6300 0.4170 +183 6337 0.4310 +183 6338 0.4090 +183 6340 0.4750 +183 6346 0.5330 +183 6347 0.7290 +183 6348 0.4320 +183 6351 0.6280 +183 6357 0.5150 +183 6360 0.5200 +183 6363 0.5570 +183 6364 0.5990 +183 6366 0.5690 +183 6368 0.4200 +183 6370 0.5340 +183 6372 0.5310 +183 6373 0.5910 +183 6374 0.5890 +183 6375 0.4280 +183 6376 0.6660 +183 6387 0.7040 +183 6401 0.5440 +183 6403 0.5140 +183 6416 0.6330 +183 6446 0.4880 +183 6517 0.5590 +183 6519 0.9610 +183 6524 0.6010 +183 6548 0.4630 +183 6550 0.6480 +183 6557 0.5950 +183 6559 0.5910 +183 6604 0.4220 +183 6648 0.4610 +183 6649 0.4760 +183 6657 0.4320 +183 6696 0.6120 +183 6714 0.7990 +183 6722 0.4540 +183 6750 0.8390 +183 6751 0.5660 +183 6752 0.5460 +183 6753 0.5330 +183 6754 0.5400 +183 6755 0.5530 +183 6770 0.4150 +183 6772 0.4290 +183 6774 0.8050 +183 6781 0.4250 +183 6846 0.4110 +183 6863 0.9950 +183 6865 0.5430 +183 6868 0.6680 +183 6869 0.6120 +183 6870 0.5640 +183 6876 0.4910 +183 6907 0.4870 +183 6915 0.6880 +183 6927 0.4230 +183 7010 0.4530 +183 7018 0.4500 +183 7040 0.8120 +183 7046 0.4360 +183 7048 0.4010 +183 7054 0.4400 +183 7057 0.4250 +183 7064 0.5940 +183 7076 0.5780 +183 7077 0.5320 +183 7078 0.4220 +183 7099 0.8660 +183 7113 0.7310 +183 7124 0.8560 +183 7137 0.5160 +183 7157 0.6050 +183 7200 0.6550 +183 7201 0.5430 +183 7204 0.5150 +183 7220 0.4280 +183 7222 0.5030 +183 7225 0.6060 +183 7276 0.6810 +183 7295 0.6210 +183 7351 0.4020 +183 7412 0.6850 +183 7425 0.4200 +183 7432 0.4440 +183 7448 0.4280 +183 7450 0.5970 +183 7498 0.6460 +183 7538 0.4320 +183 7827 0.5150 +183 7837 0.6150 +183 7852 0.9360 +183 8074 0.4830 +183 8111 0.5510 +183 8170 0.4090 +183 8477 0.5060 +183 8484 0.5320 +183 8490 0.6840 +183 8536 0.4350 +183 8620 0.4700 +183 8648 0.4630 +183 8654 0.5260 +183 8698 0.5140 +183 8811 0.5950 +183 8817 0.6490 +183 8822 0.6480 +183 8823 0.6460 +183 8843 0.4990 +183 8862 0.8330 +183 8997 0.5200 +183 9002 0.9040 +183 9138 0.5800 +183 9170 0.9070 +183 9283 0.5410 +183 9290 0.5610 +183 9294 0.6270 +183 9365 0.5490 +183 9370 0.6710 +183 9475 0.4100 +183 9560 0.5320 +183 9568 0.5470 +183 9622 0.7210 +183 9630 0.5480 +183 9718 0.4890 +183 9817 0.4150 +183 9934 0.5430 +183 10022 0.5310 +183 10072 0.6970 +183 10135 0.4740 +183 10159 0.9840 +183 10161 0.9040 +183 10287 0.6270 +183 10316 0.4990 +183 10468 0.4040 +183 10498 0.4290 +183 10499 0.4150 +183 10563 0.5480 +183 10628 0.5150 +183 10631 0.4770 +183 10642 0.4780 +183 10643 0.4760 +183 10663 0.5630 +183 10681 0.5220 +183 10800 0.5760 +183 10803 0.5680 +183 10811 0.4440 +183 10850 0.5220 +183 10874 0.4890 +183 10886 0.4990 +183 10887 0.4990 +183 10891 0.5580 +183 10911 0.7370 +183 11132 0.4140 +183 11156 0.4370 +183 11251 0.5250 +183 11346 0.4300 +183 23054 0.4080 +183 23236 0.6170 +183 23410 0.5110 +183 23411 0.6020 +183 23564 0.4450 +183 23566 0.9100 +183 23576 0.4440 +183 23620 0.5830 +183 26086 0.4100 +183 26281 0.6480 +183 26291 0.4340 +183 26548 0.5080 +183 26575 0.6300 +183 27006 0.6480 +183 27035 0.7150 +183 27198 0.5220 +183 27199 0.5340 +183 27334 0.4990 +183 27347 0.4470 +183 29899 0.4010 +183 29933 0.5140 +183 30816 0.5150 +183 50506 0.5920 +183 50507 0.7710 +183 50508 0.4240 +183 50831 0.4990 +183 50832 0.4990 +183 50833 0.4990 +183 50834 0.4990 +183 50835 0.4990 +183 50836 0.4990 +183 50837 0.4990 +183 50838 0.4990 +183 50839 0.4990 +183 50840 0.4990 +183 50865 0.4990 +183 51083 0.7920 +183 51094 0.5800 +183 51289 0.7090 +183 51738 0.7710 +183 51752 0.5540 +183 51764 0.5200 +183 51778 0.4430 +183 51806 0.6240 +183 53637 0.5270 +183 53829 0.5320 +183 53905 0.6210 +183 54205 0.5140 +183 54331 0.4990 +183 54429 0.4990 +183 55970 0.5100 +183 56413 0.5290 +183 56477 0.5540 +183 56670 0.5840 +183 56729 0.5810 +183 56923 0.4990 +183 57007 0.5640 +183 57085 0.8500 +183 57105 0.5340 +183 57118 0.4030 +183 57121 0.9010 +183 57156 0.4210 +183 57393 0.6200 +183 57486 0.5270 +183 57509 0.5520 +183 58191 0.6020 +183 58498 0.4410 +183 59272 0.9990 +183 59340 0.5200 +183 59341 0.4050 +183 59345 0.5100 +183 59350 0.5710 +183 60675 0.4380 +183 63940 0.4030 +183 64106 0.4990 +183 64407 0.6330 +183 64805 0.6600 +183 65266 0.4880 +183 79258 0.7660 +183 79400 0.5820 +183 79602 0.5570 +183 79718 0.4190 +183 80310 0.4970 +183 80834 0.5350 +183 80835 0.5480 +183 83756 0.5600 +183 84109 0.5050 +183 84163 0.4710 +183 84432 0.4380 +183 84539 0.4990 +183 84634 0.5290 +183 84666 0.5780 +183 84909 0.7690 +183 91860 0.6330 +183 93649 0.4910 +183 94233 0.5370 +183 94235 0.4990 +183 114548 0.4730 +183 114907 0.4400 +183 115557 0.6670 +183 116511 0.7610 +183 116512 0.5700 +183 117579 0.7140 +183 128674 0.4990 +183 129521 0.4630 +183 137902 0.6090 +183 163688 0.6240 +183 165140 0.5130 +183 219736 0.4420 +183 222545 0.5710 +183 253943 0.4330 +183 256933 0.5270 +183 257202 0.5470 +183 257313 0.4190 +183 259285 0.4990 +183 259286 0.4990 +183 259287 0.4990 +183 259289 0.4990 +183 259290 0.4990 +183 259292 0.4990 +183 259293 0.4990 +183 259294 0.4990 +183 259295 0.4990 +183 259296 0.4990 +183 283869 0.5320 +183 338398 0.4990 +183 338442 0.5820 +183 338557 0.5650 +183 339403 0.5330 +183 340024 0.4550 +183 346562 0.5150 +183 353164 0.4990 +183 374879 0.5090 +183 387129 0.5150 +183 389524 0.4710 +183 405754 0.4920 +183 431704 0.6400 +183 440387 0.4590 +183 493869 0.5400 +183 594857 0.4270 +183 653361 0.7860 +185 186 0.9820 +185 187 0.8930 +185 207 0.6700 +185 213 0.6650 +185 290 0.6140 +185 301 0.5390 +185 338 0.6250 +185 348 0.5070 +185 351 0.7340 +185 359 0.4320 +185 387 0.6390 +185 408 0.9480 +185 409 0.9680 +185 476 0.4560 +185 492 0.4790 +185 551 0.8480 +185 552 0.6730 +185 553 0.5420 +185 554 0.7960 +185 623 0.5200 +185 624 0.9750 +185 680 0.4580 +185 695 0.5320 +185 718 0.5880 +185 719 0.5260 +185 727 0.5640 +185 728 0.5230 +185 808 0.6530 +185 810 0.6510 +185 846 0.5110 +185 857 0.6230 +185 885 0.6130 +185 886 0.4160 +185 887 0.4360 +185 920 0.4020 +185 1102 0.4690 +185 1128 0.4520 +185 1129 0.5170 +185 1131 0.6490 +185 1133 0.4520 +185 1173 0.4990 +185 1175 0.4990 +185 1191 0.4900 +185 1211 0.5350 +185 1212 0.5030 +185 1215 0.6160 +185 1241 0.4130 +185 1268 0.6000 +185 1325 0.4990 +185 1401 0.4810 +185 1490 0.4970 +185 1535 0.4790 +185 1536 0.7300 +185 1577 0.4280 +185 1579 0.4510 +185 1584 0.4170 +185 1585 0.8710 +185 1601 0.5410 +185 1636 0.9740 +185 1803 0.4470 +185 1813 0.5590 +185 1814 0.4740 +185 1856 0.4030 +185 1902 0.5370 +185 1906 0.8980 +185 1907 0.7040 +185 1908 0.7460 +185 1909 0.5860 +185 1910 0.5420 +185 1956 0.6820 +185 2028 0.5020 +185 2060 0.5030 +185 2147 0.9200 +185 2149 0.4630 +185 2150 0.4220 +185 2151 0.4170 +185 2152 0.4170 +185 2200 0.6120 +185 2316 0.4770 +185 2317 0.4360 +185 2318 0.4320 +185 2335 0.4260 +185 2358 0.4130 +185 2520 0.5880 +185 2587 0.5280 +185 2597 0.4520 +185 2626 0.4380 +185 2641 0.6610 +185 2642 0.6090 +185 2693 0.4320 +185 2767 0.9420 +185 2768 0.9540 +185 2769 0.7230 +185 2776 0.9970 +185 2778 0.7340 +185 2782 0.5450 +185 2783 0.5760 +185 2784 0.7370 +185 2785 0.5410 +185 2786 0.5410 +185 2787 0.5410 +185 2788 0.5490 +185 2790 0.5980 +185 2791 0.5440 +185 2792 0.5410 +185 2793 0.5570 +185 2796 0.5620 +185 2797 0.4990 +185 2798 0.4530 +185 2828 0.4110 +185 2829 0.4040 +185 2832 0.5070 +185 2837 0.4160 +185 2840 0.4080 +185 2846 0.4010 +185 2847 0.4210 +185 2852 0.5560 +185 2861 0.5490 +185 2862 0.4090 +185 2863 0.4080 +185 2864 0.4450 +185 2865 0.4080 +185 2867 0.4160 +185 2868 0.4040 +185 2869 0.7390 +185 2902 0.4150 +185 2911 0.4430 +185 2915 0.4770 +185 2922 0.5640 +185 2925 0.4210 +185 3060 0.5820 +185 3061 0.4310 +185 3062 0.4270 +185 3091 0.4220 +185 3267 0.4990 +185 3269 0.6210 +185 3291 0.4180 +185 3356 0.4460 +185 3357 0.7460 +185 3358 0.4300 +185 3383 0.4350 +185 3479 0.4200 +185 3553 0.5680 +185 3569 0.6110 +185 3576 0.7820 +185 3586 0.4340 +185 3630 0.5860 +185 3717 0.7190 +185 3778 0.5210 +185 3791 0.5870 +185 3814 0.5500 +185 3827 0.9680 +185 3949 0.5030 +185 3952 0.4400 +185 4012 0.4670 +185 4036 0.6210 +185 4087 0.4160 +185 4142 0.5140 +185 4158 0.5780 +185 4217 0.4950 +185 4295 0.5320 +185 4306 0.6640 +185 4311 0.5660 +185 4313 0.4300 +185 4318 0.4470 +185 4753 0.4150 +185 4790 0.4040 +185 4828 0.4990 +185 4829 0.4040 +185 4842 0.4050 +185 4843 0.4660 +185 4846 0.7840 +185 4852 0.6080 +185 4878 0.7110 +185 4883 0.4690 +185 4886 0.5750 +185 4887 0.5380 +185 4889 0.5390 +185 4922 0.6750 +185 4923 0.4590 +185 4935 0.4130 +185 4973 0.4110 +185 4985 0.5150 +185 4988 0.6730 +185 5020 0.6280 +185 5021 0.4870 +185 5028 0.4240 +185 5029 0.4310 +185 5031 0.6540 +185 5032 0.4080 +185 5045 0.4330 +185 5054 0.9530 +185 5173 0.5930 +185 5179 0.5620 +185 5327 0.4230 +185 5330 0.5150 +185 5331 0.5630 +185 5367 0.5060 +185 5368 0.5730 +185 5443 0.7990 +185 5468 0.5830 +185 5539 0.5000 +185 5540 0.5050 +185 5547 0.4340 +185 5550 0.4070 +185 5592 0.5640 +185 5594 0.4300 +185 5595 0.6500 +185 5599 0.5010 +185 5660 0.5350 +185 5697 0.5500 +185 5724 0.4430 +185 5731 0.5240 +185 5737 0.7830 +185 5740 0.4650 +185 5743 0.5740 +185 5745 0.5520 +185 5781 0.5030 +185 5867 0.6120 +185 5868 0.7030 +185 5972 0.9690 +185 6169 0.6560 +185 6288 0.5340 +185 6295 0.7870 +185 6344 0.4980 +185 6347 0.5840 +185 6368 0.5010 +185 6375 0.4990 +185 6387 0.5600 +185 6416 0.4080 +185 6453 0.5030 +185 6519 0.6050 +185 6535 0.4420 +185 6550 0.4470 +185 6714 0.7040 +185 6750 0.5750 +185 6751 0.5230 +185 6752 0.5210 +185 6753 0.5030 +185 6754 0.4990 +185 6755 0.5060 +185 6774 0.6020 +185 6844 0.5030 +185 6845 0.4990 +185 6846 0.4990 +185 6863 0.6670 +185 6865 0.4090 +185 6868 0.5820 +185 6869 0.4510 +185 6870 0.4240 +185 6915 0.5780 +185 7040 0.5960 +185 7048 0.4910 +185 7049 0.4120 +185 7064 0.5160 +185 7113 0.6140 +185 7124 0.5780 +185 7200 0.5890 +185 7201 0.4470 +185 7204 0.4990 +185 7222 0.5730 +185 7225 0.5380 +185 7412 0.5220 +185 7474 0.4510 +185 7837 0.4250 +185 8082 0.4310 +185 8111 0.4230 +185 8218 0.5220 +185 8301 0.5320 +185 8322 0.4540 +185 8477 0.4090 +185 8484 0.4990 +185 8620 0.5430 +185 8673 0.4990 +185 8766 0.5160 +185 8802 0.5970 +185 8811 0.5170 +185 8862 0.7650 +185 8989 0.4500 +185 8997 0.5000 +185 9002 0.4150 +185 9138 0.5480 +185 9170 0.4950 +185 9283 0.5380 +185 9341 0.5010 +185 9370 0.4560 +185 9622 0.4530 +185 9630 0.7870 +185 9892 0.5180 +185 10159 0.7160 +185 10161 0.5860 +185 10316 0.4180 +185 10399 0.5090 +185 10560 0.4250 +185 10672 0.9270 +185 10681 0.5450 +185 10800 0.4200 +185 10874 0.5430 +185 10886 0.4030 +185 10887 0.4070 +185 10911 0.5720 +185 11337 0.4100 +185 22848 0.5800 +185 22905 0.5200 +185 23149 0.4990 +185 23236 0.5830 +185 23566 0.4940 +185 23620 0.4160 +185 25977 0.5010 +185 26119 0.4990 +185 27035 0.4320 +185 27334 0.4050 +185 28964 0.4500 +185 29775 0.5570 +185 29924 0.4990 +185 29933 0.4090 +185 29978 0.4990 +185 50507 0.5750 +185 50618 0.4990 +185 51083 0.5390 +185 51738 0.5930 +185 51764 0.5410 +185 51806 0.6510 +185 53905 0.4180 +185 54331 0.5410 +185 55213 0.5110 +185 55707 0.4990 +185 55970 0.5560 +185 56413 0.4060 +185 56923 0.4130 +185 57085 0.9820 +185 57105 0.4060 +185 57121 0.5370 +185 57393 0.4290 +185 57509 0.5550 +185 59272 0.9960 +185 59341 0.5810 +185 59345 0.5450 +185 59350 0.5430 +185 60675 0.4990 +185 64750 0.4420 +185 64805 0.4180 +185 79258 0.5980 +185 79602 0.4850 +185 80737 0.4440 +185 80854 0.4660 +185 84251 0.5070 +185 84432 0.5230 +185 84634 0.4230 +185 85021 0.4990 +185 91860 0.6510 +185 94235 0.5410 +185 115548 0.4990 +185 115557 0.5840 +185 116511 0.7900 +185 116512 0.5140 +185 116985 0.4960 +185 128674 0.4010 +185 129521 0.4990 +185 134147 0.4660 +185 137902 0.4130 +185 163688 0.6510 +185 219736 0.4890 +185 222545 0.4030 +185 253782 0.5210 +185 256356 0.4020 +185 256933 0.5240 +185 257313 0.5710 +185 283383 0.4020 +185 283869 0.5130 +185 338557 0.4130 +185 347148 0.4990 +185 387129 0.4200 +185 594857 0.4990 +185 653361 0.5070 +186 187 0.5300 +186 213 0.5370 +186 290 0.5040 +186 301 0.5290 +186 351 0.5540 +186 362 0.4160 +186 408 0.4210 +186 409 0.4530 +186 623 0.5400 +186 624 0.7320 +186 643 0.5090 +186 680 0.5370 +186 682 0.6090 +186 718 0.5340 +186 719 0.5100 +186 727 0.4990 +186 728 0.5150 +186 846 0.5630 +186 885 0.5410 +186 886 0.5170 +186 887 0.5030 +186 920 0.4330 +186 925 0.4160 +186 1129 0.5530 +186 1132 0.5260 +186 1215 0.4690 +186 1230 0.5100 +186 1232 0.5060 +186 1233 0.4990 +186 1234 0.5360 +186 1235 0.5070 +186 1236 0.5190 +186 1237 0.5020 +186 1268 0.5780 +186 1269 0.5540 +186 1325 0.4990 +186 1511 0.4480 +186 1524 0.5100 +186 1585 0.4360 +186 1636 0.9480 +186 1803 0.5740 +186 1814 0.5860 +186 1815 0.5430 +186 1880 0.4990 +186 1902 0.4990 +186 1903 0.5630 +186 1906 0.8070 +186 1907 0.6770 +186 1908 0.7140 +186 1909 0.6650 +186 1910 0.6760 +186 1946 0.4540 +186 2028 0.4870 +186 2052 0.4220 +186 2147 0.6040 +186 2149 0.5270 +186 2150 0.5040 +186 2151 0.5180 +186 2153 0.4360 +186 2247 0.4590 +186 2258 0.4820 +186 2357 0.5150 +186 2358 0.5070 +186 2359 0.5040 +186 2550 0.5370 +186 2587 0.5160 +186 2693 0.4990 +186 2770 0.5450 +186 2771 0.5450 +186 2773 0.5450 +186 2776 0.9210 +186 2782 0.5450 +186 2783 0.5450 +186 2784 0.5720 +186 2785 0.5410 +186 2786 0.5410 +186 2787 0.5410 +186 2788 0.5410 +186 2790 0.5410 +186 2791 0.5480 +186 2792 0.5410 +186 2793 0.5410 +186 2826 0.4990 +186 2832 0.5110 +186 2833 0.5190 +186 2837 0.5100 +186 2840 0.5040 +186 2841 0.4990 +186 2847 0.5350 +186 2852 0.5110 +186 2853 0.4990 +186 2861 0.5190 +186 2862 0.5120 +186 2912 0.5380 +186 2913 0.5380 +186 2914 0.5250 +186 2916 0.5170 +186 2917 0.5240 +186 2918 0.5170 +186 2919 0.5530 +186 2920 0.5550 +186 2921 0.5270 +186 2922 0.5190 +186 2925 0.5310 +186 2950 0.4130 +186 3021 0.4790 +186 3351 0.5270 +186 3352 0.6490 +186 3354 0.5240 +186 3355 0.5090 +186 3361 0.5310 +186 3569 0.5290 +186 3576 0.6420 +186 3577 0.5380 +186 3579 0.6470 +186 3627 0.6390 +186 3643 0.4100 +186 3814 0.4990 +186 3827 0.8870 +186 4142 0.4990 +186 4283 0.5730 +186 4295 0.5320 +186 4306 0.5360 +186 4524 0.4220 +186 4543 0.5240 +186 4544 0.5480 +186 4828 0.5380 +186 4829 0.5260 +186 4852 0.5560 +186 4878 0.5360 +186 4886 0.5110 +186 4887 0.5190 +186 4889 0.5170 +186 4922 0.6040 +186 4923 0.5180 +186 4985 0.5190 +186 4988 0.5180 +186 5030 0.5110 +186 5045 0.4040 +186 5173 0.5500 +186 5179 0.5200 +186 5196 0.5310 +186 5367 0.5220 +186 5368 0.5570 +186 5443 0.6080 +186 5473 0.5150 +186 5539 0.4990 +186 5540 0.5050 +186 5594 0.4490 +186 5660 0.4990 +186 5697 0.4990 +186 5726 0.5010 +186 5733 0.6100 +186 5972 0.9350 +186 6288 0.5400 +186 6295 0.4290 +186 6346 0.4990 +186 6351 0.5720 +186 6357 0.5030 +186 6360 0.5090 +186 6363 0.5280 +186 6364 0.5280 +186 6366 0.5280 +186 6368 0.5030 +186 6370 0.4990 +186 6372 0.4990 +186 6373 0.6690 +186 6374 0.5300 +186 6376 0.5250 +186 6387 0.5740 +186 6426 0.4570 +186 6440 0.6340 +186 6519 0.5510 +186 6714 0.5820 +186 6750 0.5500 +186 6751 0.5100 +186 6752 0.5150 +186 6753 0.5020 +186 6754 0.4990 +186 6755 0.5020 +186 7040 0.4080 +186 7078 0.8520 +186 7113 0.6800 +186 7124 0.4040 +186 7200 0.5030 +186 7201 0.5000 +186 7356 0.4490 +186 7704 0.4350 +186 7852 0.5320 +186 8290 0.4790 +186 8356 0.4800 +186 8484 0.4990 +186 8519 0.4200 +186 8520 0.5330 +186 8698 0.5090 +186 8811 0.5120 +186 8843 0.4990 +186 8862 0.6310 +186 9002 0.5140 +186 9170 0.4990 +186 9283 0.4990 +186 9290 0.4990 +186 9294 0.5260 +186 9560 0.5210 +186 9568 0.5230 +186 9934 0.5120 +186 10022 0.5040 +186 10159 0.5740 +186 10316 0.5050 +186 10479 0.5270 +186 10563 0.5900 +186 10663 0.5140 +186 10681 0.5450 +186 10803 0.5170 +186 10850 0.5100 +186 10874 0.5620 +186 10887 0.5330 +186 10911 0.5000 +186 11004 0.4020 +186 11251 0.5080 +186 22848 0.5560 +186 23566 0.5670 +186 23620 0.5040 +186 26086 0.4180 +186 27198 0.4990 +186 27199 0.5000 +186 50831 0.5070 +186 50832 0.4990 +186 50833 0.5080 +186 50834 0.5220 +186 50835 0.4990 +186 50836 0.5040 +186 50837 0.5060 +186 50838 0.4990 +186 50839 0.4990 +186 50840 0.5090 +186 50865 0.4990 +186 51083 0.5230 +186 51094 0.4350 +186 51289 0.4990 +186 51738 0.5300 +186 51764 0.5410 +186 53637 0.5500 +186 53829 0.5000 +186 54331 0.5410 +186 54429 0.4990 +186 54915 0.4610 +186 55970 0.5410 +186 56477 0.5350 +186 56670 0.5040 +186 56923 0.4990 +186 57007 0.4990 +186 57085 0.4850 +186 57121 0.4990 +186 57393 0.5590 +186 57509 0.8710 +186 57826 0.4260 +186 58191 0.5160 +186 59272 0.9540 +186 59340 0.5070 +186 59345 0.5450 +186 59350 0.5310 +186 60675 0.4990 +186 64778 0.4970 +186 64805 0.5180 +186 79602 0.4370 +186 80834 0.5180 +186 80835 0.5370 +186 83756 0.5330 +186 84432 0.5040 +186 84539 0.5020 +186 84634 0.5030 +186 84679 0.4700 +186 91746 0.4420 +186 94235 0.5410 +186 116511 0.4510 +186 117579 0.5370 +186 127247 0.4570 +186 128674 0.5330 +186 129521 0.4990 +186 165140 0.4990 +186 219736 0.5990 +186 256933 0.5020 +186 257313 0.5010 +186 259285 0.5010 +186 259286 0.5000 +186 259287 0.5010 +186 259289 0.4990 +186 259290 0.4990 +186 259292 0.4990 +186 259293 0.4990 +186 259294 0.4990 +186 259295 0.4990 +186 259296 0.4990 +186 283869 0.5020 +186 338398 0.4990 +186 338442 0.4990 +186 339403 0.5050 +186 339512 0.4320 +186 346562 0.5480 +186 353164 0.4990 +186 387129 0.5940 +186 440093 0.4780 +186 440686 0.4780 +186 594857 0.5060 +186 653509 0.4640 +186 653604 0.4780 +187 207 0.4480 +187 408 0.5490 +187 409 0.7640 +187 554 0.4780 +187 577 0.5520 +187 623 0.5570 +187 624 0.5410 +187 718 0.5170 +187 719 0.5350 +187 727 0.4990 +187 728 0.5220 +187 1003 0.6300 +187 1325 0.4990 +187 1906 0.4270 +187 1956 0.4270 +187 2162 0.7840 +187 2532 0.4100 +187 2587 0.5030 +187 2701 0.6360 +187 2702 0.4270 +187 2768 0.4020 +187 2770 0.8660 +187 2771 0.8360 +187 2773 0.8590 +187 2775 0.7370 +187 2776 0.9380 +187 2778 0.4840 +187 2782 0.9580 +187 2783 0.9490 +187 2784 0.9520 +187 2785 0.9110 +187 2786 0.9100 +187 2787 0.9080 +187 2788 0.9150 +187 2790 0.9080 +187 2791 0.9190 +187 2792 0.9330 +187 2793 0.9080 +187 2832 0.5320 +187 2838 0.4060 +187 2847 0.5330 +187 2852 0.5140 +187 2861 0.6630 +187 2918 0.5720 +187 3357 0.4090 +187 3576 0.5660 +187 3630 0.4210 +187 3700 0.4440 +187 3716 0.9160 +187 3791 0.6330 +187 3827 0.8730 +187 4254 0.4550 +187 4846 0.4700 +187 4852 0.6010 +187 4886 0.5410 +187 4887 0.5330 +187 4889 0.5290 +187 4922 0.5550 +187 4923 0.4780 +187 4978 0.4800 +187 4985 0.5100 +187 4988 0.5220 +187 5020 0.4120 +187 5173 0.6280 +187 5175 0.4850 +187 5179 0.5750 +187 5367 0.5530 +187 5368 0.6230 +187 5443 0.6240 +187 5539 0.5110 +187 5540 0.4990 +187 5660 0.4990 +187 5697 0.5270 +187 5733 0.4810 +187 5789 0.4340 +187 5972 0.4830 +187 6363 0.4670 +187 6416 0.4240 +187 6714 0.5560 +187 6750 0.5640 +187 6751 0.5260 +187 6752 0.5090 +187 6753 0.4990 +187 6754 0.5220 +187 6755 0.5060 +187 7010 0.4910 +187 7026 0.4990 +187 7122 0.4200 +187 7450 0.4740 +187 8484 0.4990 +187 8801 0.5670 +187 8802 0.4240 +187 8811 0.5040 +187 8862 0.9990 +187 9283 0.5800 +187 9934 0.4140 +187 10135 0.5120 +187 10268 0.4010 +187 10316 0.4990 +187 10672 0.9370 +187 10681 0.9430 +187 10874 0.5280 +187 23284 0.5790 +187 27253 0.4260 +187 51052 0.4910 +187 51083 0.5510 +187 51094 0.4290 +187 51705 0.5400 +187 51764 0.9110 +187 53353 0.4080 +187 54331 0.9110 +187 54567 0.4740 +187 55970 0.9110 +187 56729 0.5300 +187 56923 0.5150 +187 59272 0.4820 +187 59345 0.9580 +187 63940 0.4010 +187 64321 0.4720 +187 64805 0.4140 +187 79602 0.4050 +187 83483 0.5580 +187 84539 0.5090 +187 84666 0.5290 +187 94235 0.9080 +187 129521 0.5260 +187 256933 0.5470 +187 283869 0.5170 +187 387695 0.4440 +187 100506013 0.9980 +189 197 0.5260 +189 210 0.5160 +189 211 0.9230 +189 212 0.9220 +189 213 0.4040 +189 216 0.4580 +189 217 0.4960 +189 218 0.4660 +189 219 0.4660 +189 220 0.4580 +189 221 0.4510 +189 222 0.4780 +189 223 0.4670 +189 224 0.4880 +189 229 0.4880 +189 248 0.6370 +189 249 0.6150 +189 250 0.6110 +189 251 0.6150 +189 259 0.4460 +189 275 0.9700 +189 338 0.4380 +189 435 0.4620 +189 440 0.7700 +189 445 0.5540 +189 462 0.7040 +189 501 0.5320 +189 570 0.4250 +189 635 0.7740 +189 731 0.4620 +189 735 0.4370 +189 875 0.9400 +189 883 0.4760 +189 1373 0.4200 +189 1406 0.4320 +189 1431 0.4460 +189 1487 0.8090 +189 1488 0.8060 +189 1544 0.4380 +189 1582 0.5670 +189 1610 0.9640 +189 1738 0.9340 +189 1757 0.9590 +189 1807 0.5040 +189 1962 0.5780 +189 2053 0.6010 +189 2147 0.5490 +189 2161 0.4030 +189 2203 0.5110 +189 2243 0.4750 +189 2266 0.4270 +189 2271 0.8390 +189 2597 0.4420 +189 2618 0.8050 +189 2628 0.9520 +189 2638 0.4170 +189 2648 0.9690 +189 2653 0.9460 +189 2731 0.9570 +189 2746 0.4900 +189 2805 0.4240 +189 2806 0.4230 +189 2875 0.9570 +189 3034 0.5550 +189 3053 0.4310 +189 3081 0.5680 +189 3155 0.4790 +189 3242 0.5180 +189 3273 0.8960 +189 3295 0.6410 +189 3827 0.6130 +189 3948 0.5850 +189 4018 0.6050 +189 4143 0.8030 +189 4144 0.7400 +189 4191 0.5090 +189 4329 0.4700 +189 4548 0.7080 +189 4801 0.4300 +189 4942 0.7370 +189 4967 0.8410 +189 5009 0.4880 +189 5053 0.4780 +189 5105 0.4270 +189 5130 0.4360 +189 5192 0.5930 +189 5194 0.5720 +189 5195 0.5920 +189 5207 0.5600 +189 5208 0.5380 +189 5209 0.5380 +189 5210 0.5410 +189 5315 0.4670 +189 5340 0.7570 +189 5723 0.9910 +189 5828 0.5050 +189 5830 0.9880 +189 5833 0.4520 +189 6233 0.5390 +189 6314 0.7350 +189 6342 0.6550 +189 6470 0.9940 +189 6472 0.9920 +189 6519 0.4400 +189 6569 0.4860 +189 6822 0.4170 +189 6827 0.4180 +189 6830 0.5070 +189 6871 0.4650 +189 6880 0.8140 +189 6898 0.5930 +189 7276 0.4460 +189 7311 0.5230 +189 7314 0.5520 +189 7316 0.5520 +189 7321 0.5140 +189 7322 0.5150 +189 7323 0.4990 +189 7881 0.5240 +189 7915 0.6010 +189 8226 0.8960 +189 8309 0.4720 +189 8310 0.4860 +189 8514 0.5240 +189 8528 0.5480 +189 8564 0.5280 +189 8574 0.5240 +189 8647 0.4590 +189 8659 0.6060 +189 8697 0.6020 +189 8789 0.4220 +189 8802 0.4770 +189 8850 0.9810 +189 8854 0.4610 +189 8875 0.4170 +189 8876 0.4360 +189 8942 0.4970 +189 9196 0.5240 +189 9380 0.9990 +189 9468 0.4360 +189 9517 0.8720 +189 10157 0.4170 +189 10474 0.5950 +189 10558 0.8770 +189 10580 0.4980 +189 10840 0.5060 +189 10841 0.8250 +189 10861 0.4150 +189 10864 0.4430 +189 10993 0.9580 +189 10994 0.8790 +189 11136 0.4890 +189 11198 0.4790 +189 22977 0.5440 +189 23014 0.4490 +189 23464 0.4240 +189 23743 0.6980 +189 26061 0.8900 +189 26063 0.4180 +189 26227 0.8440 +189 27165 0.4180 +189 27232 0.9330 +189 29803 0.4290 +189 29958 0.6290 +189 29968 0.4920 +189 51166 0.4460 +189 51179 0.9780 +189 51268 0.9600 +189 51444 0.4090 +189 51733 0.5710 +189 53347 0.5140 +189 54363 0.9850 +189 54511 0.4510 +189 54529 0.7280 +189 54941 0.4090 +189 55066 0.5050 +189 55258 0.5650 +189 55293 0.4090 +189 55304 0.8740 +189 55689 0.5220 +189 56954 0.4480 +189 57505 0.6020 +189 58510 0.6950 +189 63826 0.9390 +189 64577 0.6420 +189 64850 0.5790 +189 64902 0.9970 +189 65010 0.4310 +189 79814 0.4420 +189 79896 0.5640 +189 80012 0.5990 +189 84263 0.4390 +189 84706 0.9540 +189 84959 0.5140 +189 85007 0.4780 +189 92483 0.4920 +189 93624 0.6330 +189 112817 0.9950 +189 112869 0.6260 +189 113675 0.9490 +189 116519 0.8500 +189 122970 0.4800 +189 126133 0.4930 +189 127002 0.7640 +189 130752 0.4090 +189 131669 0.4320 +189 132158 0.9220 +189 137872 0.8310 +189 142680 0.4390 +189 149461 0.4020 +189 150684 0.4220 +189 160287 0.4690 +189 160428 0.4490 +189 219743 0.5930 +189 222255 0.7600 +189 348158 0.4010 +189 390110 0.4030 +190 268 0.8300 +190 269 0.4790 +190 367 0.8650 +190 668 0.6700 +190 688 0.4280 +190 689 0.5540 +190 1374 0.4500 +190 1583 0.8420 +190 1584 0.7070 +190 1585 0.7610 +190 1586 0.7670 +190 1588 0.7650 +190 1589 0.7440 +190 1592 0.4740 +190 1660 0.7770 +190 1756 0.4670 +190 1761 0.7450 +190 2099 0.6500 +190 2100 0.6220 +190 2101 0.4310 +190 2103 0.8610 +190 2104 0.7640 +190 2130 0.6040 +190 2146 0.5740 +190 2194 0.4580 +190 2294 0.4400 +190 2314 0.5230 +190 2346 0.6670 +190 2488 0.5450 +190 2494 0.9670 +190 2516 0.9990 +190 2626 0.8220 +190 2627 0.4140 +190 2649 0.4900 +190 2710 0.7470 +190 2712 0.7510 +190 2737 0.5000 +190 2796 0.5210 +190 2798 0.5210 +190 2908 0.4140 +190 2925 0.6110 +190 2948 0.4100 +190 3065 0.5000 +190 3164 0.4650 +190 3266 0.4470 +190 3283 0.5160 +190 3284 0.5150 +190 3291 0.4860 +190 3293 0.4160 +190 3479 0.5260 +190 3483 0.5100 +190 3484 0.5450 +190 3485 0.4880 +190 3640 0.4350 +190 3720 0.5180 +190 3730 0.5050 +190 3973 0.4740 +190 4112 0.6310 +190 4114 0.4790 +190 4115 0.4810 +190 4158 0.7510 +190 4736 0.7200 +190 4821 0.4900 +190 4929 0.5650 +190 5015 0.4140 +190 5241 0.4900 +190 5340 0.4140 +190 5420 0.4480 +190 5443 0.6940 +190 5458 0.4170 +190 5460 0.7970 +190 5468 0.8010 +190 5469 0.6170 +190 5626 0.4050 +190 5972 0.4860 +190 6095 0.4220 +190 6128 0.7240 +190 6130 0.7200 +190 6132 0.7240 +190 6135 0.7200 +190 6141 0.7200 +190 6142 0.7200 +190 6143 0.7300 +190 6152 0.7200 +190 6156 0.7250 +190 6160 0.7260 +190 6161 0.7230 +190 6169 0.7200 +190 6170 0.7220 +190 6171 0.7200 +190 6173 0.7220 +190 6227 0.7250 +190 6228 0.7270 +190 6231 0.7240 +190 6234 0.7220 +190 6235 0.7210 +190 6256 0.4320 +190 6303 0.4940 +190 6657 0.5850 +190 6658 0.5460 +190 6662 0.8690 +190 6716 0.4410 +190 6720 0.5110 +190 6736 0.8890 +190 6770 0.8820 +190 6870 0.4020 +190 6926 0.5250 +190 6997 0.4290 +190 7044 0.5030 +190 7490 0.9070 +190 7547 0.6310 +190 7799 0.4060 +190 8204 0.8020 +190 8431 0.4720 +190 8433 0.4900 +190 8548 0.4140 +190 8667 0.5400 +190 8796 0.4210 +190 8820 0.4450 +190 9210 0.4180 +190 9314 0.5260 +190 9318 0.6150 +190 9573 0.5960 +190 9589 0.4280 +190 9611 0.8200 +190 9612 0.7910 +190 9970 0.6480 +190 10365 0.4220 +190 10499 0.6200 +190 10637 0.4890 +190 10655 0.4610 +190 22823 0.4850 +190 23185 0.7200 +190 23414 0.4150 +190 23512 0.4990 +190 25873 0.7320 +190 26012 0.4320 +190 29842 0.6070 +190 30812 0.4510 +190 50846 0.5480 +190 54361 0.7510 +190 55072 0.4340 +190 55636 0.4030 +190 55809 0.5230 +190 56159 0.4020 +190 56956 0.7470 +190 57167 0.9040 +190 57529 0.4440 +190 57532 0.7200 +190 63978 0.5950 +190 64746 0.4100 +190 79602 0.4150 +190 79923 0.9090 +190 80324 0.4570 +190 80712 0.4340 +190 84733 0.4250 +190 128674 0.4830 +190 132625 0.5890 +190 134549 0.4120 +190 162979 0.5720 +190 196743 0.6310 +190 201456 0.6410 +190 284654 0.6020 +190 344018 0.5900 +190 359787 0.4320 +191 331 0.5660 +191 353 0.4750 +191 406 0.4300 +191 434 0.7560 +191 445 0.4440 +191 471 0.5830 +191 498 0.4550 +191 501 0.4120 +191 509 0.4910 +191 635 0.9880 +191 875 0.9870 +191 883 0.9250 +191 908 0.4180 +191 1036 0.4970 +191 1312 0.5770 +191 1431 0.4090 +191 1491 0.9830 +191 1650 0.4440 +191 1719 0.5040 +191 1757 0.5130 +191 1786 0.9520 +191 1788 0.9370 +191 1789 0.9500 +191 1915 0.4570 +191 1937 0.5310 +191 1938 0.6800 +191 1973 0.5230 +191 1984 0.4650 +191 2023 0.4560 +191 2026 0.4890 +191 2058 0.4730 +191 2146 0.5340 +191 2356 0.5070 +191 2593 0.4660 +191 2597 0.5200 +191 2618 0.5580 +191 2731 0.5050 +191 2745 0.4400 +191 2821 0.4030 +191 2937 0.4600 +191 3240 0.4070 +191 3276 0.5020 +191 3308 0.5080 +191 3312 0.4720 +191 3320 0.4180 +191 3326 0.4480 +191 3329 0.4240 +191 3417 0.4120 +191 3614 0.4740 +191 3615 0.6740 +191 3704 0.7200 +191 3708 0.4980 +191 3921 0.5850 +191 4141 0.5370 +191 4143 0.8750 +191 4144 0.8480 +191 4157 0.6120 +191 4507 0.5570 +191 4522 0.7130 +191 4524 0.8220 +191 4548 0.9920 +191 4552 0.6070 +191 4609 0.4190 +191 4736 0.4730 +191 4831 0.5320 +191 4837 0.4370 +191 4860 0.5610 +191 5036 0.5190 +191 5096 0.4810 +191 5230 0.4800 +191 5232 0.4160 +191 5431 0.4250 +191 5683 0.4550 +191 5684 0.4680 +191 5688 0.4680 +191 5832 0.5070 +191 6122 0.4760 +191 6124 0.4830 +191 6125 0.4470 +191 6132 0.4390 +191 6135 0.4350 +191 6136 0.5190 +191 6144 0.4070 +191 6157 0.4210 +191 6175 0.5080 +191 6176 0.4640 +191 6181 0.5320 +191 6182 0.4670 +191 6187 0.5030 +191 6188 0.5040 +191 6193 0.4380 +191 6202 0.4020 +191 6207 0.4390 +191 6209 0.4300 +191 6217 0.4660 +191 6222 0.4260 +191 6224 0.4640 +191 6470 0.7590 +191 6472 0.8570 +191 6611 0.4800 +191 6723 0.4800 +191 6950 0.4170 +191 7086 0.5730 +191 7167 0.5530 +191 7203 0.4670 +191 7284 0.6330 +191 7298 0.5510 +191 7458 0.5390 +191 8277 0.4870 +191 8659 0.4060 +191 8668 0.4470 +191 8671 0.4320 +191 8802 0.4220 +191 8803 0.4130 +191 8833 0.5930 +191 8894 0.6220 +191 8991 0.8230 +191 9061 0.4580 +191 9343 0.4910 +191 9588 0.4600 +191 10155 0.4230 +191 10196 0.4110 +191 10399 0.5760 +191 10400 0.5560 +191 10419 0.4970 +191 10551 0.5290 +191 10574 0.4940 +191 10575 0.4150 +191 10576 0.4730 +191 10606 0.4930 +191 10694 0.5030 +191 10726 0.4250 +191 10768 0.9680 +191 10797 0.5100 +191 10993 0.8550 +191 22913 0.7190 +191 22948 0.4540 +191 23382 0.9210 +191 23743 0.9790 +191 25902 0.5050 +191 26227 0.4040 +191 27232 0.7690 +191 27430 0.5710 +191 28989 0.4130 +191 29958 0.5040 +191 29968 0.5080 +191 51805 0.5200 +191 55349 0.5350 +191 56267 0.9240 +191 57136 0.4380 +191 79078 0.8940 +191 83737 0.4560 +191 84076 0.4930 +191 84172 0.4130 +191 84706 0.4710 +191 87178 0.4330 +191 91369 0.8280 +191 113675 0.8310 +191 150274 0.4780 +196 218 0.5070 +196 367 0.4430 +196 405 0.9990 +196 406 0.7920 +196 706 0.6690 +196 943 0.4670 +196 1499 0.6760 +196 1543 0.9730 +196 1544 0.8660 +196 1545 0.7630 +196 1555 0.6050 +196 1642 0.4130 +196 2033 0.6390 +196 2099 0.9060 +196 2100 0.5070 +196 3320 0.9920 +196 3326 0.9950 +196 4094 0.5520 +196 5925 0.7270 +196 5970 0.5300 +196 5971 0.4840 +196 6908 0.5100 +196 7025 0.5400 +196 8202 0.4280 +196 8204 0.5670 +196 8648 0.7020 +196 8856 0.4880 +196 9049 0.9990 +196 9360 0.5270 +196 9575 0.4180 +196 9612 0.6510 +196 9915 0.9400 +196 9970 0.4590 +196 10273 0.5100 +196 10499 0.7050 +196 10728 0.9080 +196 23746 0.8560 +196 54575 0.4520 +196 54576 0.4530 +196 54577 0.4530 +196 54578 0.5240 +196 54657 0.4670 +196 54658 0.4670 +196 55718 0.4400 +196 56938 0.7110 +196 57491 0.5960 +196 84896 0.4460 +197 203 0.5520 +197 207 0.4280 +197 213 0.9990 +197 226 0.5400 +197 249 0.4850 +197 258 0.4790 +197 259 0.9320 +197 302 0.8540 +197 307 0.5230 +197 309 0.6120 +197 319 0.4640 +197 325 0.4910 +197 335 0.9440 +197 336 0.9430 +197 337 0.6910 +197 338 0.9000 +197 341 0.6840 +197 344 0.4310 +197 345 0.8820 +197 346 0.4570 +197 348 0.4760 +197 350 0.9570 +197 351 0.5150 +197 368 0.7240 +197 462 0.8380 +197 563 0.7940 +197 590 0.6650 +197 629 0.6520 +197 632 0.5480 +197 633 0.5270 +197 650 0.4150 +197 710 0.6530 +197 716 0.4060 +197 718 0.7000 +197 720 0.4630 +197 722 0.4040 +197 731 0.5450 +197 732 0.4190 +197 735 0.6970 +197 768 0.5500 +197 846 0.4370 +197 860 0.4780 +197 866 0.4710 +197 967 0.5210 +197 1152 0.4250 +197 1191 0.5170 +197 1281 0.4500 +197 1302 0.4200 +197 1356 0.7760 +197 1361 0.5470 +197 1369 0.4260 +197 1373 0.4640 +197 1401 0.8160 +197 1471 0.4400 +197 1634 0.6620 +197 1675 0.5700 +197 1894 0.4670 +197 1906 0.4060 +197 1917 0.5980 +197 2108 0.4020 +197 2147 0.9800 +197 2153 0.7010 +197 2159 0.6660 +197 2161 0.5290 +197 2165 0.6060 +197 2168 0.8350 +197 2243 0.9840 +197 2244 0.9090 +197 2266 0.9700 +197 2267 0.6710 +197 2335 0.7120 +197 2621 0.5410 +197 2638 0.9590 +197 2719 0.5700 +197 2720 0.4550 +197 2875 0.4180 +197 2934 0.4020 +197 3026 0.5320 +197 3046 0.4500 +197 3050 0.4670 +197 3053 0.7040 +197 3083 0.5250 +197 3171 0.4100 +197 3240 0.8820 +197 3250 0.4750 +197 3263 0.8790 +197 3273 0.9240 +197 3381 0.4470 +197 3426 0.4840 +197 3479 0.5710 +197 3483 0.4160 +197 3484 0.8930 +197 3569 0.6790 +197 3590 0.4010 +197 3630 0.5920 +197 3643 0.4310 +197 3667 0.5460 +197 3685 0.4690 +197 3690 0.4320 +197 3695 0.6430 +197 3697 0.7070 +197 3698 0.9220 +197 3699 0.7300 +197 3700 0.7080 +197 3827 0.9360 +197 3848 0.4630 +197 3931 0.4100 +197 3934 0.4270 +197 3950 0.6310 +197 3952 0.5070 +197 3990 0.6980 +197 4018 0.7960 +197 4057 0.7440 +197 4060 0.4800 +197 4143 0.5410 +197 4153 0.4920 +197 4159 0.4230 +197 4241 0.4270 +197 4256 0.9770 +197 4318 0.5490 +197 4958 0.5300 +197 5004 0.9260 +197 5005 0.9080 +197 5034 0.4700 +197 5053 0.4060 +197 5054 0.6140 +197 5118 0.4680 +197 5167 0.6640 +197 5176 0.6100 +197 5265 0.9710 +197 5267 0.4050 +197 5295 0.4070 +197 5340 0.9020 +197 5345 0.7680 +197 5444 0.4360 +197 5624 0.5630 +197 5627 0.5270 +197 5697 0.5040 +197 5741 0.6470 +197 5768 0.4970 +197 5919 0.4850 +197 5950 0.7360 +197 6288 0.5870 +197 6289 0.5720 +197 6291 0.4770 +197 6387 0.4380 +197 6414 0.5930 +197 6441 0.5040 +197 6462 0.5260 +197 6490 0.4650 +197 6678 0.4030 +197 6694 0.9410 +197 6696 0.8410 +197 6822 0.4490 +197 6906 0.9160 +197 7018 0.8660 +197 7040 0.5430 +197 7076 0.5180 +197 7097 0.5540 +197 7099 0.9880 +197 7124 0.6090 +197 7157 0.4590 +197 7276 0.8580 +197 7277 0.4870 +197 7299 0.5560 +197 7365 0.5070 +197 7369 0.4170 +197 7448 0.7820 +197 8074 0.6980 +197 9032 0.4730 +197 9365 0.5970 +197 9370 0.6400 +197 9672 0.4280 +197 9965 0.4500 +197 9971 0.4070 +197 10130 0.4450 +197 10246 0.4390 +197 10610 0.8280 +197 10747 0.4500 +197 10841 0.4550 +197 10998 0.4030 +197 22915 0.4680 +197 23385 0.4040 +197 23788 0.4370 +197 25970 0.4100 +197 25984 0.4190 +197 26232 0.5190 +197 26291 0.5870 +197 26998 0.6590 +197 27090 0.8250 +197 27329 0.4860 +197 50964 0.6010 +197 51081 0.4200 +197 51156 0.5290 +197 51726 0.4320 +197 54757 0.5290 +197 55600 0.4010 +197 55808 0.5910 +197 55811 0.5240 +197 55937 0.8440 +197 56729 0.4310 +197 56934 0.4880 +197 56975 0.6550 +197 79047 0.4850 +197 79068 0.4140 +197 79714 0.4150 +197 80341 0.5050 +197 83854 0.4620 +197 84640 0.4860 +197 84666 0.4100 +197 116519 0.6990 +197 116844 0.5720 +197 132789 0.4950 +197 145264 0.4480 +197 169044 0.4430 +197 171023 0.4100 +197 221044 0.6820 +197 256394 0.5820 +197 256435 0.7780 +197 257194 0.5120 +197 284161 0.4350 +197 338557 0.5340 +197 338596 0.7640 +199 207 0.5100 +199 213 0.7290 +199 348 0.5940 +199 351 0.7700 +199 383 0.6540 +199 407 0.4200 +199 467 0.4420 +199 558 0.4330 +199 596 0.4670 +199 627 0.7200 +199 684 0.4480 +199 695 0.4310 +199 706 0.6810 +199 712 0.8470 +199 714 0.7280 +199 718 0.4160 +199 719 0.5650 +199 793 0.5820 +199 794 0.4450 +199 808 0.4890 +199 810 0.4870 +199 815 0.5420 +199 834 0.6700 +199 836 0.6980 +199 842 0.4740 +199 920 0.6310 +199 925 0.5320 +199 942 0.8180 +199 945 0.4980 +199 948 0.4160 +199 962 0.4210 +199 963 0.5140 +199 968 0.8710 +199 969 0.5530 +199 972 0.5940 +199 1043 0.5210 +199 1075 0.5650 +199 1103 0.5290 +199 1230 0.6900 +199 1232 0.4540 +199 1234 0.4640 +199 1267 0.6770 +199 1270 0.4140 +199 1385 0.4650 +199 1435 0.5740 +199 1436 0.8570 +199 1437 0.4360 +199 1441 0.4260 +199 1464 0.5420 +199 1508 0.6420 +199 1509 0.4430 +199 1520 0.5620 +199 1522 0.4440 +199 1524 0.8040 +199 1535 0.4040 +199 1536 0.7440 +199 1641 0.7210 +199 1742 0.7980 +199 1791 0.5240 +199 2015 0.6020 +199 2026 0.4320 +199 2207 0.7820 +199 2209 0.5740 +199 2212 0.6350 +199 2213 0.6010 +199 2247 0.4800 +199 2268 0.4140 +199 2353 0.5470 +199 2533 0.4070 +199 2571 0.5370 +199 2572 0.4730 +199 2596 0.4480 +199 2597 0.7500 +199 2668 0.5150 +199 2670 0.9130 +199 2752 0.5530 +199 2857 0.5230 +199 2896 0.4180 +199 2904 0.4470 +199 2919 0.4490 +199 2932 0.4280 +199 3055 0.4490 +199 3059 0.4190 +199 3064 0.4120 +199 3083 0.4100 +199 3105 0.4050 +199 3109 0.4200 +199 3122 0.5060 +199 3146 0.4650 +199 3162 0.5280 +199 3251 0.4730 +199 3383 0.4780 +199 3394 0.5390 +199 3458 0.6260 +199 3479 0.4880 +199 3552 0.5580 +199 3553 0.8510 +199 3554 0.4040 +199 3558 0.4020 +199 3565 0.5890 +199 3569 0.7770 +199 3586 0.7050 +199 3587 0.4510 +199 3596 0.4240 +199 3605 0.4550 +199 3606 0.5200 +199 3627 0.5370 +199 3630 0.4360 +199 3684 0.8430 +199 3687 0.6110 +199 3689 0.7200 +199 3725 0.4160 +199 3916 0.5150 +199 3936 0.4650 +199 3937 0.5040 +199 3958 0.5200 +199 4049 0.4660 +199 4133 0.6710 +199 4137 0.5870 +199 4155 0.7820 +199 4283 0.4030 +199 4318 0.5350 +199 4332 0.5090 +199 4340 0.6040 +199 4345 0.4200 +199 4353 0.5410 +199 4360 0.7580 +199 4481 0.5520 +199 4542 0.5380 +199 4689 0.4860 +199 4744 0.5650 +199 4747 0.5160 +199 4790 0.8050 +199 4792 0.4990 +199 4795 0.6050 +199 4803 0.5180 +199 4843 0.5010 +199 4915 0.4540 +199 4976 0.4200 +199 5025 0.4850 +199 5031 0.4190 +199 5156 0.4900 +199 5159 0.4330 +199 5175 0.7240 +199 5252 0.4530 +199 5327 0.4280 +199 5341 0.4260 +199 5354 0.4480 +199 5443 0.6000 +199 5457 0.5750 +199 5595 0.5030 +199 5621 0.4520 +199 5663 0.5780 +199 5743 0.5900 +199 5788 0.8130 +199 5816 0.5700 +199 6001 0.4630 +199 6010 0.4300 +199 6039 0.6220 +199 6280 0.4600 +199 6285 0.7060 +199 6299 0.4180 +199 6347 0.6980 +199 6348 0.5540 +199 6351 0.6500 +199 6376 0.6330 +199 6500 0.4770 +199 6506 0.5770 +199 6507 0.5410 +199 6531 0.4080 +199 6614 0.4190 +199 6616 0.4410 +199 6622 0.6240 +199 6647 0.5870 +199 6657 0.4090 +199 6688 0.6550 +199 6774 0.4530 +199 6853 0.5800 +199 6854 0.4220 +199 6855 0.7060 +199 7040 0.4850 +199 7054 0.6830 +199 7070 0.4550 +199 7082 0.4790 +199 7097 0.6270 +199 7098 0.4200 +199 7099 0.7220 +199 7113 0.4090 +199 7122 0.5820 +199 7124 0.8460 +199 7305 0.9430 +199 7442 0.4480 +199 7450 0.4280 +199 7805 0.5270 +199 7837 0.7380 +199 7852 0.4310 +199 7940 0.8180 +199 8224 0.4110 +199 8530 0.5020 +199 8573 0.4390 +199 9332 0.7350 +199 9450 0.6410 +199 9535 0.5230 +199 9881 0.4510 +199 10101 0.4350 +199 10215 0.7710 +199 10288 0.4380 +199 10381 0.4890 +199 10461 0.4810 +199 10763 0.6190 +199 10840 0.5890 +199 11030 0.4470 +199 11314 0.4260 +199 23435 0.5960 +199 23621 0.5750 +199 29108 0.5910 +199 29944 0.4060 +199 50943 0.5230 +199 51284 0.4200 +199 51311 0.4640 +199 51314 0.4490 +199 51338 0.5200 +199 51806 0.4870 +199 53829 0.5530 +199 54205 0.4210 +199 54209 0.7520 +199 57030 0.5530 +199 57084 0.4560 +199 57091 0.4060 +199 64231 0.7310 +199 64581 0.5390 +199 64805 0.7470 +199 84152 0.4340 +199 84662 0.4230 +199 91860 0.4960 +199 114548 0.5610 +199 114836 0.5370 +199 116448 0.4550 +199 131450 0.4730 +199 131474 0.4750 +199 137902 0.7380 +199 146433 0.5100 +199 146713 0.9090 +199 163688 0.4870 +199 245802 0.4360 +199 259197 0.6800 +199 338773 0.7890 +199 653361 0.4160 +199 728378 0.4070 +199 100506658 0.4860 +203 204 0.6690 +203 205 0.6250 +203 207 0.5260 +203 210 0.7080 +203 226 0.4280 +203 230 0.4620 +203 270 0.8860 +203 271 0.7800 +203 272 0.7940 +203 353 0.9660 +203 445 0.7870 +203 498 0.7170 +203 506 0.4420 +203 509 0.6950 +203 513 0.5730 +203 516 0.4690 +203 517 0.4310 +203 518 0.4310 +203 523 0.4090 +203 527 0.4250 +203 533 0.4170 +203 539 0.6060 +203 833 0.4510 +203 900 0.4200 +203 953 0.7340 +203 954 0.9250 +203 956 0.8820 +203 957 0.7550 +203 972 0.4700 +203 1152 0.4840 +203 1158 0.5030 +203 1159 0.4550 +203 1160 0.4950 +203 1289 0.6600 +203 1503 0.4250 +203 1621 0.5840 +203 1633 0.9280 +203 1841 0.5620 +203 1861 0.4400 +203 1938 0.5420 +203 1964 0.5520 +203 1984 0.4030 +203 2023 0.5350 +203 2027 0.5400 +203 2034 0.4030 +203 2058 0.4090 +203 2098 0.4670 +203 2178 0.4440 +203 2271 0.4470 +203 2274 0.6130 +203 2618 0.4540 +203 2739 0.7320 +203 2806 0.4090 +203 2934 0.5100 +203 2987 0.5600 +203 3240 0.5320 +203 3320 0.5630 +203 3326 0.5590 +203 3376 0.4110 +203 3417 0.4620 +203 3704 0.4640 +203 3735 0.6380 +203 4010 0.7400 +203 4141 0.4960 +203 4191 0.5020 +203 4259 0.4300 +203 4507 0.4240 +203 4508 0.6200 +203 4629 0.4030 +203 4633 0.5010 +203 4677 0.4430 +203 4729 0.4440 +203 4736 0.4450 +203 4830 0.8050 +203 4831 0.8250 +203 4832 0.8090 +203 4833 0.8030 +203 4860 0.5710 +203 4907 0.7220 +203 4967 0.4850 +203 5004 0.5970 +203 5005 0.4340 +203 5036 0.4440 +203 5136 0.6690 +203 5137 0.6690 +203 5138 0.6710 +203 5139 0.6640 +203 5140 0.6640 +203 5141 0.7040 +203 5142 0.6640 +203 5143 0.6720 +203 5144 0.6790 +203 5150 0.6640 +203 5151 0.6510 +203 5153 0.6690 +203 5167 0.9180 +203 5169 0.9180 +203 5211 0.5430 +203 5224 0.4010 +203 5226 0.4410 +203 5236 0.7600 +203 5238 0.5350 +203 5313 0.9280 +203 5315 0.9380 +203 5432 0.5610 +203 5464 0.6170 +203 5469 0.5480 +203 5530 0.4260 +203 5684 0.4520 +203 5859 0.4690 +203 6122 0.4720 +203 6123 0.4890 +203 6124 0.4800 +203 6125 0.6790 +203 6129 0.4010 +203 6132 0.4800 +203 6133 0.5480 +203 6135 0.6810 +203 6139 0.4470 +203 6147 0.6310 +203 6154 0.4100 +203 6175 0.4870 +203 6182 0.5270 +203 6183 0.4470 +203 6187 0.5470 +203 6188 0.6800 +203 6193 0.4320 +203 6203 0.4890 +203 6205 0.6730 +203 6208 0.4700 +203 6209 0.6810 +203 6217 0.4800 +203 6222 0.6840 +203 6224 0.4810 +203 6228 0.4500 +203 6235 0.4230 +203 6240 0.8300 +203 6241 0.7540 +203 6301 0.4360 +203 6948 0.7180 +203 7167 0.5910 +203 7248 0.5790 +203 7284 0.5550 +203 7372 0.5870 +203 7403 0.5570 +203 7404 0.5570 +203 7407 0.4220 +203 7597 0.4800 +203 8382 0.7100 +203 8565 0.5900 +203 8622 0.6510 +203 8802 0.5870 +203 9086 0.5550 +203 9296 0.4310 +203 9343 0.4470 +203 9349 0.6880 +203 9533 0.5590 +203 9669 0.5240 +203 10102 0.7470 +203 10201 0.8040 +203 10476 0.4730 +203 10846 0.6640 +203 10988 0.4440 +203 11128 0.4360 +203 11222 0.4720 +203 11224 0.6420 +203 22839 0.4290 +203 22933 0.4950 +203 22978 0.6800 +203 23135 0.5950 +203 23173 0.4530 +203 23395 0.4370 +203 23476 0.5100 +203 23640 0.4340 +203 25885 0.4360 +203 26289 0.4100 +203 27010 0.9210 +203 27068 0.6330 +203 27115 0.6640 +203 27430 0.4060 +203 29093 0.4480 +203 29922 0.8010 +203 29927 0.5620 +203 29968 0.4220 +203 30833 0.7110 +203 50484 0.8210 +203 50808 0.5820 +203 50940 0.6640 +203 51067 0.4730 +203 51069 0.4810 +203 51073 0.5080 +203 51081 0.4270 +203 51121 0.4100 +203 51154 0.4740 +203 51251 0.6950 +203 51520 0.4620 +203 54938 0.4250 +203 54948 0.4340 +203 55173 0.4850 +203 55176 0.5620 +203 55272 0.4880 +203 55276 0.5700 +203 55316 0.4210 +203 55471 0.4100 +203 55591 0.4430 +203 55699 0.4610 +203 56474 0.4470 +203 56953 0.6890 +203 57038 0.4020 +203 57176 0.4210 +203 57505 0.4700 +203 63875 0.5190 +203 63931 0.4250 +203 64374 0.4550 +203 64963 0.4740 +203 64965 0.5270 +203 64969 0.5480 +203 64979 0.6140 +203 65008 0.4440 +203 79178 0.4450 +203 79587 0.4470 +203 79590 0.4110 +203 79631 0.4510 +203 79731 0.4500 +203 80222 0.4040 +203 83475 0.4510 +203 84284 0.9070 +203 84618 0.7060 +203 84661 0.4600 +203 85476 0.6540 +203 85477 0.4910 +203 91875 0.4070 +203 92399 0.6330 +203 92935 0.4370 +203 93034 0.7060 +203 93974 0.5050 +203 115024 0.6540 +203 122481 0.7730 +203 123263 0.5050 +203 123283 0.4030 +203 124454 0.4860 +203 126402 0.4250 +203 129607 0.4770 +203 136332 0.4810 +203 139596 0.4200 +203 140801 0.4340 +203 221264 0.7980 +203 285676 0.4630 +203 374659 0.4480 +203 377841 0.7210 +203 387129 0.4050 +203 388743 0.4660 +203 548596 0.4530 +203 654364 0.7730 +203 100526794 0.7060 +203 100526842 0.4470 +203 102157402 0.4650 +204 205 0.5560 +204 270 0.7360 +204 271 0.7660 +204 272 0.7560 +204 280 0.4450 +204 353 0.9680 +204 356 0.4470 +204 471 0.5470 +204 476 0.5460 +204 478 0.5110 +204 480 0.5400 +204 498 0.7000 +204 506 0.5430 +204 509 0.7250 +204 513 0.5800 +204 516 0.4760 +204 517 0.4260 +204 518 0.4320 +204 523 0.4620 +204 527 0.4220 +204 533 0.4310 +204 539 0.5970 +204 587 0.4070 +204 836 0.4200 +204 841 0.4200 +204 842 0.4490 +204 843 0.7490 +204 953 0.7140 +204 954 0.9060 +204 956 0.7150 +204 972 0.4700 +204 1503 0.5910 +204 1633 0.9230 +204 1716 0.6980 +204 1841 0.7350 +204 1854 0.5640 +204 1938 0.5000 +204 1964 0.5640 +204 2023 0.8840 +204 2027 0.7620 +204 2110 0.4180 +204 2178 0.4550 +204 2271 0.4900 +204 2517 0.7260 +204 2519 0.5620 +204 2618 0.4760 +204 2745 0.4380 +204 2811 0.5370 +204 2983 0.4550 +204 2987 0.7300 +204 3028 0.4820 +204 3211 0.4610 +204 3313 0.4600 +204 3329 0.5090 +204 3417 0.4120 +204 3981 0.4200 +204 4236 0.4610 +204 4508 0.5990 +204 4702 0.4920 +204 4729 0.5390 +204 4736 0.4570 +204 4830 0.8070 +204 4831 0.8490 +204 4832 0.8160 +204 4833 0.9160 +204 4860 0.6100 +204 4907 0.7060 +204 5036 0.4770 +204 5136 0.7010 +204 5137 0.6950 +204 5138 0.7090 +204 5139 0.6660 +204 5140 0.6660 +204 5141 0.6920 +204 5142 0.6920 +204 5143 0.6920 +204 5144 0.6920 +204 5150 0.6960 +204 5151 0.6540 +204 5153 0.6950 +204 5167 0.9090 +204 5169 0.9110 +204 5225 0.6860 +204 5226 0.6830 +204 5230 0.4070 +204 5236 0.8520 +204 5238 0.5150 +204 5313 0.9310 +204 5315 0.9440 +204 5432 0.5610 +204 5464 0.4520 +204 5469 0.5520 +204 5896 0.4150 +204 6122 0.4760 +204 6123 0.4720 +204 6124 0.4940 +204 6125 0.6930 +204 6129 0.4260 +204 6132 0.4920 +204 6133 0.5550 +204 6135 0.6890 +204 6139 0.4590 +204 6147 0.6220 +204 6154 0.4190 +204 6175 0.5190 +204 6182 0.6340 +204 6183 0.4590 +204 6187 0.5590 +204 6188 0.6880 +204 6193 0.4380 +204 6203 0.4930 +204 6205 0.6760 +204 6208 0.4880 +204 6209 0.6830 +204 6210 0.4080 +204 6217 0.4910 +204 6222 0.6940 +204 6224 0.4850 +204 6228 0.4510 +204 6235 0.4230 +204 6240 0.8460 +204 6241 0.7850 +204 6472 0.4340 +204 6948 0.4980 +204 7084 0.4900 +204 7086 0.4770 +204 7167 0.4360 +204 7284 0.6320 +204 7298 0.4250 +204 7371 0.5780 +204 7372 0.4850 +204 7403 0.5520 +204 7404 0.5520 +204 7450 0.4370 +204 7923 0.4960 +204 8382 0.4030 +204 8565 0.4420 +204 8622 0.6540 +204 8743 0.5420 +204 8772 0.7510 +204 8802 0.4430 +204 9086 0.5510 +204 9131 0.6640 +204 9296 0.4640 +204 9343 0.5320 +204 9349 0.6900 +204 9533 0.5690 +204 9563 0.4040 +204 10102 0.4310 +204 10201 0.7950 +204 10449 0.5140 +204 10476 0.4190 +204 10846 0.7090 +204 10939 0.5690 +204 10988 0.4540 +204 11128 0.4430 +204 11222 0.4940 +204 11224 0.6600 +204 22978 0.6640 +204 22984 0.4990 +204 23135 0.5680 +204 23173 0.4930 +204 23204 0.4010 +204 23640 0.4390 +204 25885 0.4470 +204 26092 0.4790 +204 26289 0.6010 +204 27010 0.9090 +204 27068 0.4230 +204 27115 0.7690 +204 28998 0.4150 +204 29093 0.4650 +204 29922 0.7840 +204 29927 0.5860 +204 30833 0.7220 +204 50484 0.8000 +204 50940 0.7090 +204 51022 0.4040 +204 51069 0.4880 +204 51073 0.5020 +204 51081 0.5540 +204 51121 0.4330 +204 51154 0.5190 +204 51251 0.6700 +204 51727 0.4350 +204 54205 0.5950 +204 54948 0.4600 +204 55143 0.4830 +204 55173 0.4980 +204 55176 0.5620 +204 55268 0.4290 +204 55272 0.5000 +204 55276 0.7520 +204 55316 0.4220 +204 55471 0.4630 +204 55591 0.4430 +204 56474 0.4630 +204 56953 0.8750 +204 58538 0.4010 +204 63875 0.5410 +204 63931 0.4370 +204 64374 0.4390 +204 64398 0.4180 +204 64421 0.5450 +204 64963 0.4930 +204 64965 0.5410 +204 64969 0.5570 +204 64979 0.6270 +204 65005 0.4130 +204 65008 0.4520 +204 78986 0.6980 +204 79590 0.4380 +204 79631 0.4560 +204 79694 0.4240 +204 80135 0.4070 +204 83475 0.5320 +204 84284 0.9430 +204 84618 0.6960 +204 84661 0.4400 +204 85476 0.4630 +204 91875 0.4070 +204 93034 0.6960 +204 115024 0.6700 +204 126402 0.4250 +204 129607 0.6760 +204 131474 0.4260 +204 136332 0.6380 +204 139596 0.4330 +204 140801 0.4370 +204 149175 0.4380 +204 221264 0.7870 +204 260425 0.4240 +204 284439 0.4200 +204 285193 0.6020 +204 285855 0.4280 +204 374659 0.4530 +204 377841 0.7050 +204 654364 0.8040 +204 100526794 0.6960 +204 100526842 0.4470 +204 102157402 0.4320 +205 270 0.7070 +205 271 0.7080 +205 272 0.7130 +205 353 0.9650 +205 498 0.6740 +205 509 0.7220 +205 513 0.4670 +205 516 0.4270 +205 517 0.4330 +205 518 0.4760 +205 527 0.4180 +205 533 0.4160 +205 539 0.5750 +205 664 0.4040 +205 953 0.7270 +205 954 0.9070 +205 956 0.7520 +205 972 0.4700 +205 1503 0.5070 +205 1633 0.9290 +205 1716 0.7470 +205 1841 0.7020 +205 1938 0.4470 +205 1964 0.5600 +205 2023 0.5700 +205 2026 0.4400 +205 2123 0.5890 +205 2124 0.6400 +205 2178 0.4480 +205 2271 0.4480 +205 2618 0.4830 +205 2811 0.5010 +205 2987 0.5770 +205 3674 0.4490 +205 4102 0.4730 +205 4508 0.5840 +205 4729 0.4640 +205 4736 0.4440 +205 4763 0.4760 +205 4830 0.7960 +205 4831 0.7920 +205 4832 0.7980 +205 4833 0.9380 +205 4860 0.4420 +205 4907 0.6950 +205 4974 0.5260 +205 5033 0.4390 +205 5036 0.4460 +205 5136 0.6640 +205 5137 0.6640 +205 5138 0.6670 +205 5139 0.6730 +205 5140 0.6730 +205 5141 0.6660 +205 5142 0.7130 +205 5143 0.6660 +205 5144 0.6760 +205 5150 0.6730 +205 5151 0.6500 +205 5153 0.6640 +205 5167 0.9030 +205 5169 0.9020 +205 5230 0.4630 +205 5313 0.9200 +205 5315 0.9280 +205 5432 0.5680 +205 5464 0.4300 +205 5469 0.5480 +205 6122 0.4720 +205 6123 0.4720 +205 6124 0.4800 +205 6125 0.6750 +205 6132 0.4800 +205 6133 0.5480 +205 6135 0.6800 +205 6139 0.4480 +205 6144 0.4340 +205 6147 0.6190 +205 6154 0.4110 +205 6175 0.4900 +205 6182 0.5300 +205 6183 0.4470 +205 6187 0.5470 +205 6188 0.6800 +205 6193 0.4260 +205 6203 0.4890 +205 6205 0.6730 +205 6208 0.4700 +205 6209 0.6810 +205 6217 0.4800 +205 6222 0.6830 +205 6224 0.4810 +205 6228 0.4470 +205 6235 0.4220 +205 6240 0.8340 +205 6241 0.7500 +205 6403 0.5970 +205 7084 0.5880 +205 7167 0.4220 +205 7284 0.5570 +205 7372 0.4730 +205 7403 0.5520 +205 7404 0.5520 +205 8192 0.4480 +205 8382 0.4280 +205 8565 0.4220 +205 8622 0.6620 +205 8665 0.4130 +205 9086 0.5510 +205 9296 0.4340 +205 9343 0.4480 +205 9349 0.6850 +205 9533 0.5580 +205 10102 0.4280 +205 10201 0.7930 +205 10846 0.6670 +205 10988 0.4470 +205 11128 0.4360 +205 11222 0.4800 +205 11224 0.6380 +205 22978 0.6500 +205 23135 0.5680 +205 23173 0.5220 +205 23204 0.4230 +205 23640 0.4340 +205 25885 0.4410 +205 26289 0.4220 +205 27010 0.9080 +205 27068 0.4390 +205 27115 0.6660 +205 28998 0.4130 +205 29093 0.4480 +205 29922 0.7780 +205 29927 0.5630 +205 30833 0.6880 +205 50484 0.7670 +205 50940 0.6660 +205 51069 0.4800 +205 51073 0.4800 +205 51081 0.4270 +205 51121 0.4110 +205 51154 0.4790 +205 51251 0.6640 +205 54948 0.4370 +205 55173 0.4850 +205 55176 0.6000 +205 55272 0.4890 +205 55316 0.4710 +205 55471 0.4060 +205 55591 0.4430 +205 56474 0.4750 +205 56953 0.8950 +205 58538 0.4190 +205 63875 0.5290 +205 63931 0.4250 +205 64374 0.4340 +205 64963 0.4740 +205 64965 0.5290 +205 64969 0.5510 +205 64979 0.6140 +205 65008 0.4450 +205 79590 0.4110 +205 79631 0.4480 +205 79694 0.4240 +205 83475 0.4530 +205 84284 0.9180 +205 84618 0.6960 +205 85476 0.4740 +205 91875 0.4070 +205 93034 0.6960 +205 115024 0.6770 +205 116150 0.4040 +205 122481 0.6630 +205 126402 0.4250 +205 129607 0.7410 +205 136332 0.6380 +205 139596 0.4200 +205 140801 0.4340 +205 149175 0.4330 +205 221264 0.7920 +205 260425 0.4240 +205 285855 0.4070 +205 339229 0.4300 +205 374659 0.4460 +205 377841 0.7480 +205 654364 0.7490 +205 100526794 0.6960 +205 100526842 0.4470 +207 208 0.9910 +207 213 0.7950 +207 216 0.5750 +207 226 0.4720 +207 231 0.4240 +207 240 0.4170 +207 268 0.6250 +207 284 0.7290 +207 285 0.6530 +207 286 0.5190 +207 287 0.4930 +207 288 0.4930 +207 290 0.6080 +207 301 0.4240 +207 302 0.6480 +207 308 0.8210 +207 317 0.6250 +207 324 0.4720 +207 327 0.4600 +207 329 0.6090 +207 330 0.5480 +207 331 0.9390 +207 332 0.5090 +207 333 0.4830 +207 335 0.4180 +207 338 0.4600 +207 348 0.6970 +207 351 0.6650 +207 354 0.5970 +207 355 0.5320 +207 356 0.6670 +207 367 0.8950 +207 374 0.5810 +207 377 0.5740 +207 382 0.8190 +207 383 0.5420 +207 384 0.4330 +207 387 0.9040 +207 388 0.6310 +207 389 0.6340 +207 390 0.4480 +207 391 0.7950 +207 392 0.4540 +207 394 0.7840 +207 396 0.9840 +207 397 0.7910 +207 398 0.6140 +207 399 0.4440 +207 405 0.7710 +207 406 0.4610 +207 408 0.9900 +207 409 0.9970 +207 430 0.4980 +207 467 0.7080 +207 468 0.8260 +207 472 0.7420 +207 479 0.6090 +207 495 0.6110 +207 501 0.4250 +207 538 0.4860 +207 545 0.4230 +207 546 0.5770 +207 558 0.5760 +207 567 0.4460 +207 572 0.9930 +207 573 0.4030 +207 575 0.5400 +207 578 0.4250 +207 581 0.7610 +207 595 0.9230 +207 596 0.9930 +207 597 0.4990 +207 598 0.9910 +207 599 0.5400 +207 602 0.6070 +207 604 0.5220 +207 627 0.8350 +207 632 0.5700 +207 639 0.4200 +207 644 0.5450 +207 648 0.5930 +207 650 0.5820 +207 652 0.5660 +207 655 0.5070 +207 664 0.6220 +207 665 0.4380 +207 672 0.9930 +207 673 0.7830 +207 675 0.6050 +207 677 0.8490 +207 682 0.5290 +207 685 0.4460 +207 688 0.4160 +207 695 0.6100 +207 768 0.4860 +207 773 0.4730 +207 780 0.5070 +207 808 0.8020 +207 810 0.7190 +207 811 0.6610 +207 821 0.6760 +207 823 0.5970 +207 834 0.6170 +207 835 0.4790 +207 836 0.9450 +207 839 0.4720 +207 840 0.6430 +207 841 0.7900 +207 842 0.9890 +207 843 0.4260 +207 846 0.4400 +207 857 0.9370 +207 859 0.6360 +207 860 0.7850 +207 861 0.5490 +207 864 0.4270 +207 865 0.5030 +207 867 0.7750 +207 875 0.4690 +207 885 0.7910 +207 891 0.7020 +207 894 0.6810 +207 896 0.7610 +207 898 0.6670 +207 899 0.4210 +207 904 0.4140 +207 919 0.4890 +207 920 0.8390 +207 925 0.8110 +207 928 0.5030 +207 930 0.6750 +207 939 0.4180 +207 940 0.8020 +207 941 0.7770 +207 942 0.7830 +207 947 0.6610 +207 948 0.5960 +207 949 0.6130 +207 950 0.5880 +207 952 0.6560 +207 953 0.4280 +207 958 0.5970 +207 959 0.5040 +207 960 0.7770 +207 961 0.4740 +207 967 0.5680 +207 968 0.5370 +207 969 0.4470 +207 972 0.4420 +207 975 0.6830 +207 983 0.5620 +207 991 0.4010 +207 993 0.5340 +207 994 0.4180 +207 995 0.5520 +207 999 0.9030 +207 1000 0.7870 +207 1003 0.6230 +207 1009 0.4170 +207 1012 0.5850 +207 1015 0.6560 +207 1017 0.5770 +207 1019 0.6910 +207 1021 0.4430 +207 1026 0.9950 +207 1027 0.9960 +207 1028 0.5900 +207 1029 0.8660 +207 1030 0.5800 +207 1031 0.4870 +207 1033 0.5980 +207 1048 0.4700 +207 1050 0.6310 +207 1051 0.6220 +207 1072 0.6970 +207 1073 0.6790 +207 1111 0.4040 +207 1119 0.4630 +207 1123 0.6320 +207 1124 0.6390 +207 1147 0.9960 +207 1154 0.5440 +207 1191 0.4190 +207 1192 0.5640 +207 1234 0.4800 +207 1236 0.4800 +207 1238 0.5490 +207 1268 0.4440 +207 1270 0.4800 +207 1277 0.6970 +207 1278 0.4520 +207 1281 0.4130 +207 1312 0.4060 +207 1326 0.9420 +207 1327 0.5140 +207 1366 0.4800 +207 1374 0.4790 +207 1385 0.9650 +207 1386 0.7990 +207 1387 0.8540 +207 1388 0.7140 +207 1398 0.8060 +207 1399 0.5350 +207 1401 0.5300 +207 1420 0.4770 +207 1429 0.4070 +207 1431 0.4450 +207 1432 0.9900 +207 1435 0.5840 +207 1436 0.6040 +207 1437 0.6080 +207 1439 0.4420 +207 1440 0.5430 +207 1445 0.6870 +207 1452 0.4470 +207 1454 0.4630 +207 1457 0.6330 +207 1459 0.5120 +207 1487 0.5830 +207 1490 0.8020 +207 1491 0.4110 +207 1493 0.8110 +207 1499 0.9790 +207 1500 0.5310 +207 1506 0.5340 +207 1508 0.5000 +207 1509 0.4820 +207 1513 0.5350 +207 1514 0.4270 +207 1520 0.4830 +207 1522 0.5180 +207 1524 0.4140 +207 1535 0.9920 +207 1536 0.9940 +207 1540 0.5920 +207 1543 0.4300 +207 1571 0.4300 +207 1576 0.4530 +207 1586 0.4270 +207 1588 0.7480 +207 1601 0.5920 +207 1616 0.4410 +207 1627 0.5530 +207 1634 0.4080 +207 1636 0.6270 +207 1647 0.4790 +207 1649 0.5800 +207 1655 0.4960 +207 1659 0.6830 +207 1728 0.7060 +207 1742 0.7470 +207 1785 0.4360 +207 1786 0.8220 +207 1787 0.4730 +207 1788 0.5180 +207 1789 0.6520 +207 1791 0.6340 +207 1793 0.9300 +207 1794 0.4850 +207 1796 0.5250 +207 1803 0.5270 +207 1808 0.4240 +207 1813 0.6770 +207 1839 0.5920 +207 1843 0.5510 +207 1847 0.4410 +207 1848 0.4820 +207 1855 0.7400 +207 1856 0.4530 +207 1857 0.4030 +207 1869 0.7970 +207 1870 0.4710 +207 1871 0.5260 +207 1891 0.4130 +207 1894 0.5640 +207 1901 0.5610 +207 1902 0.4460 +207 1903 0.5170 +207 1906 0.6690 +207 1908 0.4070 +207 1915 0.5920 +207 1938 0.6130 +207 1942 0.4850 +207 1943 0.4040 +207 1944 0.4260 +207 1946 0.4730 +207 1947 0.4370 +207 1948 0.5100 +207 1949 0.4130 +207 1950 0.9330 +207 1956 0.7920 +207 1958 0.8330 +207 1965 0.5920 +207 1973 0.5980 +207 1974 0.4820 +207 1975 0.5570 +207 1977 0.7880 +207 1978 0.9250 +207 1981 0.6290 +207 1991 0.4520 +207 1992 0.5160 +207 1994 0.4980 +207 2011 0.4380 +207 2017 0.8980 +207 2022 0.5220 +207 2023 0.8160 +207 2026 0.5420 +207 2033 0.9540 +207 2034 0.6810 +207 2041 0.4920 +207 2049 0.4990 +207 2053 0.6280 +207 2056 0.6330 +207 2057 0.5790 +207 2058 0.4220 +207 2059 0.5920 +207 2064 0.5520 +207 2065 0.8540 +207 2066 0.5830 +207 2067 0.4300 +207 2069 0.4800 +207 2086 0.4370 +207 2099 0.9130 +207 2100 0.6840 +207 2101 0.5090 +207 2113 0.5380 +207 2114 0.4120 +207 2130 0.6110 +207 2146 0.8670 +207 2149 0.4700 +207 2152 0.4490 +207 2167 0.5120 +207 2171 0.5150 +207 2173 0.5400 +207 2175 0.6620 +207 2177 0.4900 +207 2194 0.6970 +207 2209 0.5050 +207 2213 0.4010 +207 2241 0.4210 +207 2246 0.5750 +207 2247 0.9260 +207 2248 0.6640 +207 2249 0.6640 +207 2250 0.6620 +207 2251 0.6610 +207 2252 0.6860 +207 2253 0.6590 +207 2254 0.6890 +207 2255 0.6820 +207 2258 0.7390 +207 2260 0.5520 +207 2264 0.4400 +207 2273 0.4020 +207 2277 0.5090 +207 2280 0.7340 +207 2288 0.9140 +207 2289 0.9640 +207 2290 0.5200 +207 2303 0.4370 +207 2305 0.6210 +207 2308 0.9990 +207 2309 0.9980 +207 2310 0.4520 +207 2314 0.5040 +207 2316 0.8400 +207 2317 0.6560 +207 2318 0.6560 +207 2321 0.6100 +207 2322 0.6800 +207 2323 0.4120 +207 2332 0.4760 +207 2335 0.8460 +207 2353 0.7460 +207 2354 0.6170 +207 2475 0.9990 +207 2521 0.6950 +207 2534 0.8340 +207 2538 0.6940 +207 2539 0.6000 +207 2547 0.4340 +207 2549 0.6030 +207 2596 0.4240 +207 2597 0.9110 +207 2621 0.7250 +207 2623 0.5750 +207 2624 0.5870 +207 2625 0.5450 +207 2626 0.5440 +207 2627 0.4070 +207 2641 0.6660 +207 2645 0.5160 +207 2648 0.4960 +207 2658 0.4400 +207 2660 0.7020 +207 2668 0.5920 +207 2670 0.6230 +207 2674 0.4140 +207 2690 0.4040 +207 2696 0.4370 +207 2697 0.6920 +207 2729 0.4960 +207 2730 0.4170 +207 2735 0.7940 +207 2736 0.5010 +207 2737 0.7570 +207 2740 0.6700 +207 2752 0.4220 +207 2767 0.5560 +207 2768 0.5480 +207 2776 0.7750 +207 2778 0.5240 +207 2782 0.8050 +207 2783 0.6790 +207 2784 0.5810 +207 2785 0.5330 +207 2786 0.5310 +207 2787 0.5440 +207 2788 0.5340 +207 2790 0.5150 +207 2791 0.5320 +207 2792 0.5160 +207 2793 0.5430 +207 2796 0.9420 +207 2797 0.9100 +207 2806 0.4140 +207 2810 0.8270 +207 2826 0.4860 +207 2833 0.4300 +207 2852 0.5940 +207 2875 0.6080 +207 2877 0.6350 +207 2878 0.6350 +207 2879 0.4450 +207 2880 0.6350 +207 2882 0.6440 +207 2885 0.9070 +207 2887 0.6350 +207 2889 0.5030 +207 2890 0.4800 +207 2903 0.6590 +207 2904 0.5100 +207 2908 0.7910 +207 2909 0.6870 +207 2911 0.4210 +207 2915 0.4400 +207 2919 0.5770 +207 2920 0.4100 +207 2923 0.5710 +207 2931 0.9930 +207 2932 0.9960 +207 2934 0.4300 +207 2936 0.5420 +207 2950 0.4010 +207 2956 0.4270 +207 2987 0.4670 +207 2997 0.6230 +207 3002 0.5120 +207 3014 0.5450 +207 3018 0.4780 +207 3021 0.7900 +207 3037 0.4120 +207 3059 0.8980 +207 3064 0.6640 +207 3065 0.7580 +207 3066 0.5580 +207 3071 0.4560 +207 3082 0.8820 +207 3084 0.6840 +207 3091 0.9320 +207 3098 0.5520 +207 3099 0.7690 +207 3118 0.4140 +207 3146 0.5980 +207 3156 0.6430 +207 3162 0.7960 +207 3164 0.9560 +207 3169 0.6830 +207 3170 0.4370 +207 3172 0.6620 +207 3178 0.4090 +207 3181 0.4090 +207 3187 0.4120 +207 3224 0.4560 +207 3251 0.5040 +207 3265 0.8960 +207 3276 0.4250 +207 3304 0.5570 +207 3308 0.9640 +207 3309 0.9710 +207 3312 0.8500 +207 3313 0.7110 +207 3315 0.9910 +207 3316 0.9270 +207 3320 0.9990 +207 3326 0.9990 +207 3337 0.4940 +207 3339 0.4010 +207 3383 0.7040 +207 3397 0.4450 +207 3416 0.4360 +207 3417 0.6190 +207 3418 0.5950 +207 3439 0.5790 +207 3440 0.4040 +207 3456 0.7130 +207 3458 0.8170 +207 3479 0.9350 +207 3480 0.6190 +207 3481 0.6930 +207 3482 0.5810 +207 3484 0.5060 +207 3485 0.4830 +207 3486 0.6150 +207 3488 0.4450 +207 3491 0.4810 +207 3516 0.5050 +207 3549 0.4560 +207 3551 0.9900 +207 3552 0.6660 +207 3553 0.8640 +207 3554 0.4600 +207 3558 0.6920 +207 3559 0.4050 +207 3562 0.6920 +207 3565 0.6990 +207 3567 0.4490 +207 3569 0.8720 +207 3570 0.5050 +207 3574 0.5250 +207 3575 0.4650 +207 3576 0.7200 +207 3577 0.4720 +207 3579 0.5620 +207 3586 0.7310 +207 3589 0.4760 +207 3594 0.5010 +207 3596 0.5800 +207 3600 0.5070 +207 3605 0.6230 +207 3606 0.5810 +207 3611 0.9980 +207 3615 0.6780 +207 3620 0.5120 +207 3627 0.5400 +207 3630 0.9530 +207 3633 0.5360 +207 3635 0.6410 +207 3636 0.8280 +207 3643 0.4590 +207 3654 0.4990 +207 3655 0.4940 +207 3659 0.4990 +207 3661 0.6710 +207 3662 0.6810 +207 3665 0.4230 +207 3667 0.9720 +207 3673 0.4600 +207 3674 0.6220 +207 3676 0.5790 +207 3678 0.5300 +207 3684 0.6110 +207 3685 0.4720 +207 3687 0.4720 +207 3688 0.7280 +207 3689 0.4560 +207 3690 0.7810 +207 3691 0.4560 +207 3705 0.4520 +207 3707 0.5700 +207 3708 0.9810 +207 3710 0.9670 +207 3714 0.4910 +207 3717 0.7320 +207 3725 0.9910 +207 3727 0.4540 +207 3791 0.7150 +207 3799 0.4190 +207 3815 0.8180 +207 3827 0.5410 +207 3831 0.5020 +207 3837 0.4720 +207 3845 0.9040 +207 3852 0.4830 +207 3856 0.4660 +207 3858 0.6920 +207 3861 0.4410 +207 3875 0.4710 +207 3880 0.4830 +207 3897 0.5990 +207 3902 0.4580 +207 3915 0.5440 +207 3916 0.5870 +207 3920 0.4850 +207 3921 0.4860 +207 3925 0.5020 +207 3934 0.4180 +207 3937 0.8460 +207 3952 0.8250 +207 3953 0.5730 +207 3958 0.6970 +207 3960 0.4600 +207 3976 0.5060 +207 3977 0.4290 +207 3987 0.5970 +207 3991 0.5350 +207 4000 0.6280 +207 4001 0.7630 +207 4012 0.5220 +207 4015 0.6200 +207 4023 0.4790 +207 4035 0.4370 +207 4040 0.5160 +207 4041 0.5400 +207 4043 0.4840 +207 4052 0.5510 +207 4067 0.8200 +207 4072 0.5700 +207 4082 0.4240 +207 4084 0.7440 +207 4087 0.9180 +207 4088 0.9960 +207 4089 0.9140 +207 4090 0.4940 +207 4091 0.4530 +207 4092 0.8170 +207 4093 0.4070 +207 4094 0.4550 +207 4128 0.4200 +207 4129 0.4180 +207 4130 0.6110 +207 4131 0.5900 +207 4133 0.4230 +207 4137 0.8720 +207 4155 0.4560 +207 4168 0.5910 +207 4170 0.8670 +207 4192 0.5400 +207 4193 0.9990 +207 4194 0.4650 +207 4204 0.4360 +207 4208 0.4150 +207 4209 0.4390 +207 4210 0.4320 +207 4214 0.5600 +207 4215 0.7360 +207 4216 0.5180 +207 4217 0.9850 +207 4218 0.6150 +207 4233 0.4080 +207 4254 0.7330 +207 4255 0.5210 +207 4282 0.4800 +207 4283 0.4180 +207 4286 0.5520 +207 4288 0.4780 +207 4292 0.4950 +207 4296 0.6500 +207 4303 0.9920 +207 4306 0.4030 +207 4311 0.4030 +207 4312 0.5780 +207 4313 0.8460 +207 4314 0.5880 +207 4316 0.5970 +207 4318 0.8270 +207 4322 0.5780 +207 4323 0.6040 +207 4353 0.5460 +207 4360 0.4820 +207 4363 0.5330 +207 4436 0.6270 +207 4478 0.5540 +207 4485 0.4050 +207 4486 0.4500 +207 4501 0.4880 +207 4513 0.4670 +207 4515 0.9700 +207 4519 0.8290 +207 4535 0.5120 +207 4585 0.4720 +207 4586 0.4160 +207 4594 0.5780 +207 4602 0.4390 +207 4609 0.9280 +207 4610 0.4220 +207 4613 0.7980 +207 4617 0.4160 +207 4624 0.5030 +207 4627 0.6100 +207 4629 0.5250 +207 4633 0.4290 +207 4638 0.4680 +207 4654 0.5830 +207 4656 0.5770 +207 4659 0.4780 +207 4684 0.4600 +207 4688 0.9940 +207 4689 0.9930 +207 4690 0.7030 +207 4691 0.5510 +207 4734 0.7550 +207 4739 0.6250 +207 4751 0.5260 +207 4763 0.8030 +207 4771 0.8420 +207 4772 0.6250 +207 4773 0.4260 +207 4775 0.4120 +207 4778 0.4030 +207 4780 0.9230 +207 4790 0.8960 +207 4791 0.6650 +207 4792 0.8490 +207 4793 0.4520 +207 4803 0.8180 +207 4804 0.6010 +207 4824 0.9400 +207 4839 0.4490 +207 4842 0.9530 +207 4843 0.9760 +207 4846 0.9970 +207 4851 0.8870 +207 4852 0.4470 +207 4853 0.5890 +207 4854 0.5700 +207 4855 0.8570 +207 4868 0.4220 +207 4869 0.7960 +207 4878 0.5820 +207 4879 0.4110 +207 4893 0.8150 +207 4899 0.4570 +207 4904 0.8460 +207 4907 0.4800 +207 4908 0.4790 +207 4909 0.4350 +207 4914 0.6090 +207 4952 0.5990 +207 4953 0.4320 +207 4973 0.4220 +207 4988 0.5680 +207 5008 0.6210 +207 5036 0.4510 +207 5037 0.5190 +207 5045 0.4930 +207 5052 0.4390 +207 5054 0.6080 +207 5058 0.9940 +207 5062 0.5320 +207 5063 0.4970 +207 5071 0.5280 +207 5077 0.4160 +207 5081 0.4500 +207 5105 0.6340 +207 5106 0.5410 +207 5133 0.5870 +207 5139 0.4310 +207 5140 0.9430 +207 5141 0.6010 +207 5154 0.4530 +207 5155 0.7820 +207 5156 0.4860 +207 5159 0.4500 +207 5163 0.8480 +207 5164 0.7800 +207 5166 0.5580 +207 5170 0.9990 +207 5174 0.4770 +207 5175 0.7190 +207 5207 0.5080 +207 5208 0.9360 +207 5209 0.5270 +207 5211 0.4250 +207 5213 0.5010 +207 5214 0.5170 +207 5216 0.5190 +207 5217 0.5170 +207 5228 0.5870 +207 5230 0.4610 +207 5241 0.6830 +207 5243 0.6160 +207 5245 0.4010 +207 5266 0.9910 +207 5287 0.4080 +207 5289 0.7800 +207 5290 0.9980 +207 5291 0.9920 +207 5293 0.9760 +207 5294 0.9940 +207 5295 0.9950 +207 5296 0.9710 +207 5310 0.5140 +207 5311 0.4880 +207 5315 0.6810 +207 5321 0.4820 +207 5327 0.5250 +207 5328 0.6120 +207 5329 0.4740 +207 5331 0.5370 +207 5333 0.5850 +207 5335 0.7880 +207 5336 0.7710 +207 5338 0.4220 +207 5340 0.5560 +207 5341 0.8670 +207 5346 0.4850 +207 5357 0.4140 +207 5361 0.5090 +207 5364 0.7660 +207 5366 0.5810 +207 5371 0.7320 +207 5395 0.4650 +207 5443 0.5310 +207 5460 0.7500 +207 5465 0.7000 +207 5467 0.6030 +207 5468 0.7900 +207 5478 0.5290 +207 5493 0.6480 +207 5494 0.5920 +207 5499 0.8840 +207 5500 0.5340 +207 5501 0.4380 +207 5506 0.4580 +207 5515 0.9800 +207 5516 0.7360 +207 5518 0.9170 +207 5519 0.7780 +207 5520 0.7960 +207 5521 0.7390 +207 5522 0.7060 +207 5523 0.7280 +207 5524 0.5910 +207 5525 0.7950 +207 5526 0.7940 +207 5527 0.7920 +207 5528 0.7740 +207 5529 0.7790 +207 5530 0.6410 +207 5532 0.5090 +207 5533 0.4760 +207 5551 0.4690 +207 5564 0.4510 +207 5573 0.4150 +207 5575 0.5220 +207 5579 0.4700 +207 5585 0.6330 +207 5586 0.8160 +207 5588 0.5390 +207 5590 0.9740 +207 5591 0.8890 +207 5594 0.9880 +207 5595 0.9570 +207 5596 0.4210 +207 5597 0.4890 +207 5599 0.7060 +207 5600 0.9400 +207 5601 0.5080 +207 5603 0.9370 +207 5604 0.4900 +207 5605 0.5930 +207 5606 0.8620 +207 5607 0.4290 +207 5609 0.6860 +207 5617 0.5180 +207 5621 0.4240 +207 5663 0.5210 +207 5698 0.5380 +207 5727 0.5630 +207 5728 0.9880 +207 5734 0.4790 +207 5741 0.4240 +207 5742 0.4150 +207 5743 0.7750 +207 5747 0.8790 +207 5753 0.9270 +207 5770 0.6990 +207 5771 0.4460 +207 5777 0.4360 +207 5781 0.7620 +207 5787 0.4080 +207 5788 0.6760 +207 5796 0.4780 +207 5805 0.5230 +207 5829 0.8810 +207 5832 0.4070 +207 5834 0.4150 +207 5836 0.4060 +207 5837 0.4010 +207 5867 0.4480 +207 5868 0.6410 +207 5870 0.5260 +207 5877 0.9240 +207 5879 0.8650 +207 5880 0.8640 +207 5888 0.4480 +207 5894 0.9920 +207 5898 0.7290 +207 5899 0.4480 +207 5900 0.6020 +207 5906 0.6600 +207 5908 0.4670 +207 5912 0.5620 +207 5914 0.7650 +207 5921 0.9020 +207 5923 0.5560 +207 5925 0.5860 +207 5934 0.5660 +207 5962 0.5290 +207 5966 0.5700 +207 5970 0.7800 +207 5971 0.5140 +207 5972 0.5950 +207 5979 0.4150 +207 5999 0.4270 +207 6005 0.5090 +207 6009 0.9470 +207 6010 0.4160 +207 6143 0.4580 +207 6194 0.8780 +207 6198 0.9820 +207 6199 0.9490 +207 6233 0.5610 +207 6237 0.7610 +207 6242 0.5890 +207 6249 0.5420 +207 6256 0.5950 +207 6275 0.5170 +207 6279 0.4120 +207 6285 0.4180 +207 6295 0.6480 +207 6300 0.9370 +207 6305 0.4120 +207 6319 0.4880 +207 6347 0.7200 +207 6348 0.6770 +207 6351 0.4510 +207 6364 0.4430 +207 6366 0.4050 +207 6373 0.4040 +207 6374 0.4360 +207 6376 0.4510 +207 6382 0.7020 +207 6387 0.7220 +207 6389 0.4480 +207 6390 0.5190 +207 6391 0.6190 +207 6392 0.5340 +207 6401 0.5380 +207 6402 0.6810 +207 6403 0.5190 +207 6416 0.9650 +207 6422 0.4320 +207 6423 0.4040 +207 6426 0.4320 +207 6446 0.6640 +207 6464 0.7710 +207 6469 0.6670 +207 6476 0.4480 +207 6500 0.6510 +207 6502 0.8990 +207 6506 0.4120 +207 6510 0.4570 +207 6513 0.7080 +207 6514 0.5940 +207 6515 0.5590 +207 6517 0.8900 +207 6524 0.4020 +207 6531 0.4070 +207 6548 0.7490 +207 6586 0.6130 +207 6591 0.7390 +207 6597 0.4970 +207 6598 0.6110 +207 6599 0.5210 +207 6608 0.5970 +207 6609 0.4340 +207 6610 0.4100 +207 6615 0.8500 +207 6622 0.6610 +207 6624 0.7990 +207 6645 0.4360 +207 6647 0.5680 +207 6648 0.6310 +207 6654 0.7650 +207 6655 0.6010 +207 6657 0.8330 +207 6659 0.5070 +207 6662 0.5710 +207 6663 0.4100 +207 6667 0.6820 +207 6670 0.4800 +207 6678 0.4370 +207 6688 0.4360 +207 6696 0.6260 +207 6697 0.5760 +207 6714 0.9950 +207 6720 0.7600 +207 6721 0.5630 +207 6722 0.5800 +207 6732 0.4130 +207 6733 0.5220 +207 6736 0.4320 +207 6750 0.4890 +207 6767 0.5540 +207 6772 0.9610 +207 6773 0.5400 +207 6774 0.9660 +207 6775 0.4210 +207 6776 0.8700 +207 6777 0.8100 +207 6778 0.8230 +207 6786 0.4580 +207 6788 0.5380 +207 6790 0.6240 +207 6794 0.7480 +207 6801 0.5860 +207 6850 0.6280 +207 6853 0.4660 +207 6855 0.5110 +207 6863 0.4360 +207 6868 0.5560 +207 6876 0.4670 +207 6885 0.4870 +207 6907 0.4260 +207 6908 0.6390 +207 6925 0.6410 +207 6927 0.4160 +207 6929 0.4080 +207 6934 0.4250 +207 7001 0.6040 +207 7010 0.6590 +207 7015 0.9030 +207 7019 0.5700 +207 7026 0.6410 +207 7037 0.5160 +207 7039 0.7640 +207 7040 0.8680 +207 7042 0.6950 +207 7043 0.5310 +207 7048 0.5700 +207 7054 0.5150 +207 7057 0.5870 +207 7058 0.4230 +207 7066 0.4220 +207 7070 0.5170 +207 7074 0.6850 +207 7076 0.6070 +207 7077 0.5210 +207 7078 0.4530 +207 7082 0.7970 +207 7094 0.7630 +207 7096 0.4510 +207 7097 0.7040 +207 7098 0.5570 +207 7099 0.7690 +207 7100 0.4450 +207 7113 0.4780 +207 7114 0.5950 +207 7122 0.4480 +207 7124 0.9070 +207 7126 0.4500 +207 7132 0.8170 +207 7137 0.4280 +207 7145 0.4350 +207 7153 0.5950 +207 7157 0.9940 +207 7158 0.4040 +207 7159 0.5650 +207 7171 0.4090 +207 7179 0.4980 +207 7184 0.9810 +207 7185 0.4560 +207 7186 0.6710 +207 7187 0.5070 +207 7189 0.9540 +207 7220 0.4150 +207 7225 0.4160 +207 7248 0.9850 +207 7249 0.9900 +207 7251 0.4830 +207 7253 0.4030 +207 7267 0.5160 +207 7273 0.4190 +207 7280 0.6540 +207 7291 0.6090 +207 7293 0.7620 +207 7295 0.7650 +207 7296 0.5050 +207 7297 0.5560 +207 7298 0.4350 +207 7299 0.4660 +207 7305 0.7550 +207 7306 0.4330 +207 7316 0.4440 +207 7318 0.4720 +207 7341 0.6190 +207 7345 0.4880 +207 7350 0.5700 +207 7351 0.5170 +207 7375 0.4810 +207 7398 0.4500 +207 7403 0.4290 +207 7405 0.4890 +207 7408 0.7570 +207 7409 0.9490 +207 7410 0.7690 +207 7412 0.6780 +207 7414 0.7970 +207 7415 0.7350 +207 7416 0.5400 +207 7423 0.4930 +207 7424 0.6100 +207 7428 0.6080 +207 7430 0.5850 +207 7431 0.7790 +207 7442 0.6790 +207 7448 0.5170 +207 7450 0.5450 +207 7454 0.9740 +207 7465 0.7940 +207 7471 0.5840 +207 7472 0.5530 +207 7473 0.4290 +207 7474 0.7500 +207 7476 0.4330 +207 7481 0.6290 +207 7490 0.6560 +207 7494 0.7390 +207 7498 0.5460 +207 7514 0.6790 +207 7525 0.6440 +207 7528 0.4970 +207 7529 0.6930 +207 7531 0.5900 +207 7532 0.6940 +207 7533 0.4060 +207 7534 0.8510 +207 7535 0.5370 +207 7703 0.4960 +207 7791 0.4410 +207 7837 0.8760 +207 7846 0.5020 +207 7852 0.7500 +207 7862 0.4430 +207 7874 0.4700 +207 7942 0.5820 +207 7994 0.6450 +207 8031 0.4200 +207 8061 0.4980 +207 8085 0.5440 +207 8091 0.4850 +207 8115 0.9950 +207 8140 0.4390 +207 8192 0.4850 +207 8202 0.4950 +207 8220 0.4420 +207 8277 0.6210 +207 8289 0.5910 +207 8290 0.7900 +207 8312 0.9120 +207 8313 0.5580 +207 8314 0.5080 +207 8324 0.4060 +207 8349 0.5720 +207 8356 0.7900 +207 8411 0.5130 +207 8431 0.4420 +207 8440 0.4280 +207 8452 0.5060 +207 8454 0.7900 +207 8471 0.5000 +207 8473 0.9350 +207 8476 0.4180 +207 8493 0.4350 +207 8498 0.5010 +207 8503 0.9620 +207 8517 0.9820 +207 8544 0.5100 +207 8549 0.5240 +207 8554 0.4180 +207 8570 0.8690 +207 8600 0.7510 +207 8637 0.4340 +207 8649 0.5360 +207 8650 0.4580 +207 8651 0.5650 +207 8654 0.4270 +207 8660 0.8830 +207 8668 0.4650 +207 8678 0.9180 +207 8717 0.4700 +207 8737 0.5560 +207 8743 0.6670 +207 8766 0.5490 +207 8772 0.5830 +207 8792 0.4970 +207 8795 0.6090 +207 8797 0.5350 +207 8801 0.4190 +207 8817 0.6630 +207 8821 0.5950 +207 8822 0.6620 +207 8823 0.6870 +207 8826 0.9750 +207 8829 0.7030 +207 8835 0.4060 +207 8837 0.6230 +207 8840 0.4090 +207 8841 0.8110 +207 8842 0.6680 +207 8850 0.5870 +207 8856 0.4630 +207 8862 0.5120 +207 8864 0.6070 +207 8874 0.8080 +207 8877 0.6260 +207 8878 0.6720 +207 8897 0.4310 +207 8900 0.6710 +207 8915 0.7710 +207 8936 0.7380 +207 8945 0.6740 +207 8972 0.4500 +207 8976 0.9470 +207 8988 0.9230 +207 8997 0.4210 +207 9020 0.6680 +207 9021 0.8410 +207 9025 0.4110 +207 9063 0.6480 +207 9076 0.4790 +207 9101 0.6790 +207 9112 0.5720 +207 9122 0.4470 +207 9123 0.4490 +207 9134 0.4480 +207 9138 0.4280 +207 9140 0.6220 +207 9150 0.4580 +207 9181 0.7670 +207 9213 0.4790 +207 9253 0.4530 +207 9261 0.9300 +207 9265 0.4120 +207 9294 0.5450 +207 9314 0.7840 +207 9332 0.4580 +207 9353 0.6010 +207 9360 0.4710 +207 9365 0.4570 +207 9368 0.5630 +207 9370 0.7120 +207 9411 0.4280 +207 9429 0.6190 +207 9451 0.5460 +207 9454 0.4210 +207 9455 0.6380 +207 9459 0.6550 +207 9463 0.5560 +207 9474 0.7720 +207 9479 0.7540 +207 9507 0.5500 +207 9508 0.5380 +207 9517 0.4070 +207 9518 0.5300 +207 9563 0.5600 +207 9564 0.8280 +207 9577 0.4800 +207 9586 0.7270 +207 9611 0.6330 +207 9612 0.6970 +207 9618 0.7030 +207 9623 0.9720 +207 9669 0.4080 +207 9682 0.5550 +207 9734 0.4140 +207 9744 0.4360 +207 9759 0.5310 +207 9776 0.6140 +207 9788 0.6180 +207 9794 0.4040 +207 9817 0.7240 +207 9821 0.5530 +207 9839 0.5830 +207 9844 0.6370 +207 9846 0.8140 +207 9869 0.4990 +207 9882 0.9850 +207 9927 0.5340 +207 9965 0.4500 +207 9971 0.4870 +207 9987 0.5700 +207 10000 0.9580 +207 10006 0.5390 +207 10010 0.4920 +207 10013 0.7120 +207 10014 0.4080 +207 10018 0.8330 +207 10044 0.6770 +207 10059 0.6390 +207 10097 0.4090 +207 10105 0.4870 +207 10125 0.4520 +207 10135 0.5070 +207 10163 0.6900 +207 10188 0.7450 +207 10190 0.4920 +207 10206 0.4030 +207 10220 0.4330 +207 10221 0.4710 +207 10243 0.4720 +207 10273 0.8610 +207 10280 0.6260 +207 10287 0.4120 +207 10298 0.5850 +207 10325 0.6550 +207 10365 0.5180 +207 10371 0.4220 +207 10381 0.4290 +207 10383 0.4520 +207 10395 0.6790 +207 10397 0.4920 +207 10399 0.7500 +207 10411 0.5490 +207 10413 0.6150 +207 10419 0.4140 +207 10451 0.9100 +207 10458 0.7650 +207 10460 0.4250 +207 10468 0.4220 +207 10474 0.4360 +207 10488 0.7420 +207 10498 0.4050 +207 10519 0.4500 +207 10525 0.5410 +207 10533 0.7350 +207 10536 0.4130 +207 10542 0.5990 +207 10558 0.4120 +207 10598 0.4840 +207 10628 0.4920 +207 10631 0.5220 +207 10645 0.5890 +207 10653 0.4640 +207 10670 0.6750 +207 10672 0.8100 +207 10673 0.4530 +207 10681 0.5970 +207 10724 0.4920 +207 10725 0.4050 +207 10746 0.4950 +207 10763 0.6020 +207 10788 0.5170 +207 10810 0.5670 +207 10811 0.9220 +207 10818 0.5810 +207 10870 0.5310 +207 10891 0.7560 +207 10892 0.4920 +207 10919 0.4060 +207 10971 0.6280 +207 10987 0.6140 +207 11033 0.4320 +207 11060 0.5480 +207 11065 0.4010 +207 11069 0.5170 +207 11073 0.4440 +207 11124 0.4520 +207 11140 0.9950 +207 11186 0.7200 +207 11188 0.5880 +207 11200 0.5540 +207 11266 0.4110 +207 11315 0.6560 +207 11331 0.5270 +207 11337 0.4140 +207 11345 0.5190 +207 22800 0.4090 +207 22821 0.4790 +207 22863 0.6800 +207 22882 0.4220 +207 22914 0.4440 +207 22926 0.6060 +207 22933 0.7730 +207 22941 0.5390 +207 22943 0.5540 +207 22985 0.5640 +207 23028 0.4680 +207 23030 0.4680 +207 23034 0.4560 +207 23035 0.9870 +207 23075 0.6040 +207 23122 0.5110 +207 23135 0.4200 +207 23181 0.4460 +207 23189 0.4160 +207 23191 0.5900 +207 23192 0.4330 +207 23201 0.5790 +207 23216 0.4910 +207 23239 0.9990 +207 23243 0.4600 +207 23265 0.5450 +207 23327 0.5140 +207 23371 0.4940 +207 23396 0.4910 +207 23405 0.6000 +207 23408 0.4060 +207 23410 0.6270 +207 23411 0.8730 +207 23433 0.5270 +207 23462 0.4360 +207 23476 0.4900 +207 23493 0.4810 +207 23512 0.5850 +207 23513 0.7120 +207 23533 0.9450 +207 23542 0.4810 +207 23551 0.4590 +207 23560 0.4110 +207 23586 0.4350 +207 23589 0.4290 +207 23607 0.4850 +207 23608 0.5030 +207 23621 0.5240 +207 23643 0.6710 +207 23647 0.6040 +207 23657 0.4370 +207 23705 0.4620 +207 23710 0.5500 +207 23770 0.5270 +207 23774 0.4850 +207 25828 0.4460 +207 25983 0.4350 +207 25998 0.6130 +207 25999 0.4050 +207 26060 0.9930 +207 26150 0.5420 +207 26227 0.4520 +207 26281 0.6860 +207 26286 0.4130 +207 26291 0.5680 +207 26330 0.4030 +207 26499 0.8710 +207 26999 0.7920 +207 27006 0.6780 +207 27032 0.4370 +207 27035 0.9490 +207 27040 0.4780 +207 27068 0.4980 +207 27071 0.6000 +207 27113 0.4880 +207 27130 0.5680 +207 27154 0.4100 +207 27161 0.5440 +207 27185 0.7160 +207 27236 0.8350 +207 27244 0.4140 +207 27246 0.4050 +207 27250 0.6130 +207 27306 0.5640 +207 27338 0.5820 +207 27436 0.6010 +207 28227 0.6920 +207 28514 0.4370 +207 28951 0.6150 +207 28954 0.4300 +207 28956 0.5440 +207 28964 0.7300 +207 28984 0.6370 +207 29072 0.4230 +207 29102 0.5340 +207 29109 0.5520 +207 29110 0.8730 +207 29126 0.7200 +207 29127 0.6060 +207 29760 0.4160 +207 29780 0.5050 +207 29851 0.4200 +207 29904 0.4780 +207 29959 0.4260 +207 29966 0.5040 +207 29984 0.4230 +207 30009 0.4700 +207 30816 0.4640 +207 30837 0.5520 +207 30849 0.6840 +207 50488 0.5200 +207 50506 0.5170 +207 50507 0.6860 +207 50508 0.7180 +207 50616 0.4460 +207 50619 0.5240 +207 50855 0.5180 +207 50943 0.6230 +207 50964 0.4050 +207 51024 0.4020 +207 51085 0.4550 +207 51094 0.5250 +207 51129 0.4100 +207 51176 0.5330 +207 51177 0.6400 +207 51206 0.4400 +207 51230 0.6680 +207 51256 0.9740 +207 51284 0.5050 +207 51343 0.4030 +207 51366 0.4380 +207 51454 0.4630 +207 51547 0.4550 +207 51548 0.6950 +207 51554 0.4950 +207 51655 0.4440 +207 51684 0.4840 +207 51738 0.5280 +207 51763 0.4260 +207 51764 0.5070 +207 51806 0.7190 +207 53373 0.4710 +207 53637 0.4030 +207 53905 0.7250 +207 54106 0.5380 +207 54205 0.8120 +207 54206 0.5490 +207 54331 0.5610 +207 54361 0.6020 +207 54386 0.4130 +207 54432 0.5070 +207 54434 0.4890 +207 54487 0.4280 +207 54541 0.7320 +207 54567 0.5300 +207 54583 0.5910 +207 54681 0.4320 +207 54739 0.6150 +207 54790 0.4120 +207 54879 0.4410 +207 54888 0.4580 +207 55004 0.5550 +207 55012 0.6690 +207 55054 0.4610 +207 55201 0.5960 +207 55248 0.5610 +207 55294 0.6720 +207 55615 0.7160 +207 55626 0.5230 +207 55669 0.4220 +207 55704 0.8260 +207 55742 0.5110 +207 55743 0.4470 +207 55824 0.4820 +207 55844 0.7070 +207 55869 0.6270 +207 55915 0.4240 +207 55970 0.5550 +207 55971 0.6680 +207 56034 0.4030 +207 56288 0.5110 +207 56339 0.4410 +207 56413 0.4420 +207 56670 0.4910 +207 56729 0.5200 +207 56848 0.5560 +207 56924 0.4890 +207 56946 0.4300 +207 57007 0.4300 +207 57103 0.4430 +207 57104 0.5280 +207 57144 0.4290 +207 57154 0.4780 +207 57418 0.4550 +207 57509 0.4400 +207 57510 0.4150 +207 57521 0.9960 +207 57561 0.4440 +207 57569 0.4710 +207 57580 0.7110 +207 57630 0.7890 +207 57650 0.5080 +207 57706 0.4430 +207 57721 0.4060 +207 57761 0.9980 +207 57818 0.6200 +207 58157 0.4980 +207 58480 0.6330 +207 58508 0.4030 +207 58528 0.7520 +207 59272 0.4870 +207 59341 0.4210 +207 59345 0.5840 +207 60673 0.4090 +207 63916 0.5870 +207 64083 0.4240 +207 64098 0.4530 +207 64121 0.6660 +207 64127 0.4260 +207 64223 0.9560 +207 64283 0.6210 +207 64344 0.4470 +207 64400 0.7750 +207 64422 0.5560 +207 64581 0.6020 +207 64750 0.4450 +207 64759 0.4440 +207 64764 0.7000 +207 64769 0.4070 +207 64798 0.6870 +207 64805 0.4180 +207 64866 0.5580 +207 65018 0.6770 +207 65059 0.6560 +207 65125 0.4770 +207 79109 0.9760 +207 79400 0.6890 +207 79594 0.6740 +207 79602 0.4960 +207 79666 0.6130 +207 79680 0.4780 +207 79767 0.5610 +207 79923 0.6220 +207 79930 0.4290 +207 79959 0.5510 +207 80005 0.4840 +207 80146 0.4680 +207 80232 0.4210 +207 80243 0.4440 +207 80331 0.4890 +207 80380 0.5070 +207 80381 0.4830 +207 80781 0.4660 +207 81624 0.5070 +207 81631 0.7380 +207 81669 0.6920 +207 83593 0.5540 +207 83605 0.8650 +207 83660 0.7490 +207 83667 0.5110 +207 83734 0.4020 +207 83737 0.5530 +207 84076 0.6040 +207 84231 0.5420 +207 84254 0.4480 +207 84260 0.6720 +207 84289 0.5290 +207 84335 0.9950 +207 84433 0.7180 +207 84557 0.6150 +207 84666 0.5510 +207 84676 0.5910 +207 84699 0.7200 +207 84706 0.4820 +207 84823 0.5510 +207 84868 0.4950 +207 84951 0.4120 +207 85358 0.5480 +207 85477 0.4120 +207 85480 0.5660 +207 89780 0.6180 +207 89848 0.4310 +207 90780 0.4030 +207 90865 0.4300 +207 90993 0.7060 +207 91860 0.7130 +207 92140 0.7010 +207 92579 0.6350 +207 93649 0.4530 +207 93986 0.4080 +207 94235 0.5320 +207 114548 0.5690 +207 114609 0.6240 +207 114899 0.4980 +207 114907 0.7030 +207 115825 0.5870 +207 115908 0.4930 +207 116496 0.4130 +207 116986 0.5130 +207 117145 0.9910 +207 120103 0.4180 +207 121340 0.4670 +207 124056 0.8790 +207 126393 0.6080 +207 133482 0.8940 +207 133522 0.4460 +207 133584 0.5250 +207 137902 0.8750 +207 139716 0.4330 +207 140885 0.4570 +207 143686 0.4110 +207 146433 0.5120 +207 146713 0.5490 +207 146850 0.9120 +207 148327 0.7330 +207 150353 0.4340 +207 150684 0.4600 +207 153090 0.7880 +207 153129 0.5870 +207 154075 0.4500 +207 154091 0.4930 +207 154810 0.9860 +207 157310 0.4360 +207 161742 0.4280 +207 163688 0.7130 +207 168400 0.4510 +207 169355 0.4180 +207 171023 0.6670 +207 196883 0.7000 +207 200186 0.9390 +207 200576 0.6400 +207 203068 0.8100 +207 206358 0.4380 +207 252995 0.4520 +207 253260 0.9920 +207 255738 0.5980 +207 257202 0.6350 +207 340273 0.5490 +207 389072 0.4380 +207 389421 0.4010 +207 389541 0.5040 +207 389692 0.4520 +207 399687 0.4910 +207 405754 0.4370 +207 440093 0.7900 +207 440686 0.7900 +207 441925 0.4210 +207 493869 0.6440 +207 652968 0.4260 +207 653145 0.5740 +207 653361 0.9930 +207 653604 0.7920 +207 728378 0.5150 +207 100128927 0.4180 +207 100132074 0.8610 +207 100133941 0.5790 +207 100506658 0.6010 +207 100532731 0.5890 +207 102723407 0.4710 +208 387 0.4090 +208 391 0.5920 +208 408 0.4710 +208 409 0.4350 +208 468 0.6840 +208 472 0.4540 +208 572 0.9190 +208 595 0.7170 +208 596 0.9500 +208 598 0.9390 +208 672 0.9380 +208 808 0.5680 +208 810 0.7120 +208 836 0.6580 +208 842 0.9420 +208 860 0.5570 +208 865 0.4050 +208 898 0.4060 +208 940 0.5560 +208 941 0.5640 +208 942 0.5450 +208 999 0.4610 +208 1000 0.4110 +208 1018 0.4740 +208 1026 0.9550 +208 1027 0.9560 +208 1029 0.4650 +208 1147 0.9160 +208 1326 0.9130 +208 1385 0.8580 +208 1386 0.7000 +208 1388 0.6720 +208 1432 0.9320 +208 1445 0.4090 +208 1457 0.4500 +208 1459 0.4550 +208 1493 0.5840 +208 1499 0.7210 +208 1522 0.4130 +208 1588 0.5020 +208 1789 0.4830 +208 1950 0.4780 +208 1956 0.6120 +208 1977 0.4580 +208 1978 0.6880 +208 2065 0.4670 +208 2099 0.6160 +208 2100 0.4190 +208 2288 0.5630 +208 2289 0.6860 +208 2308 0.9860 +208 2309 0.9800 +208 2310 0.4010 +208 2475 0.9670 +208 2534 0.7560 +208 2538 0.4760 +208 2597 0.5500 +208 2737 0.4360 +208 2782 0.6800 +208 2783 0.5610 +208 2784 0.5630 +208 2785 0.5020 +208 2786 0.5050 +208 2787 0.5060 +208 2788 0.5120 +208 2790 0.5010 +208 2791 0.4990 +208 2792 0.4990 +208 2793 0.4990 +208 2796 0.9100 +208 2797 0.9000 +208 2885 0.4390 +208 2931 0.9370 +208 2932 0.9770 +208 2997 0.5640 +208 3091 0.5270 +208 3164 0.9100 +208 3169 0.4300 +208 3265 0.5010 +208 3320 0.9480 +208 3326 0.9460 +208 3479 0.7290 +208 3480 0.4010 +208 3551 0.9250 +208 3569 0.4060 +208 3611 0.9460 +208 3630 0.8460 +208 3636 0.6070 +208 3667 0.8250 +208 3725 0.9670 +208 3815 0.4130 +208 3845 0.6460 +208 3991 0.4030 +208 4000 0.4510 +208 4001 0.4990 +208 4012 0.6210 +208 4067 0.6550 +208 4087 0.4380 +208 4089 0.5460 +208 4193 0.9470 +208 4209 0.4440 +208 4217 0.9440 +208 4297 0.4620 +208 4303 0.9570 +208 4318 0.4180 +208 4515 0.9190 +208 4609 0.6940 +208 4644 0.7800 +208 4763 0.4830 +208 4772 0.5440 +208 4780 0.5650 +208 4790 0.4800 +208 4824 0.9070 +208 4842 0.9060 +208 4843 0.9420 +208 4846 0.9250 +208 4851 0.4560 +208 4893 0.4990 +208 5093 0.4100 +208 5094 0.4090 +208 5140 0.9180 +208 5141 0.4400 +208 5163 0.6240 +208 5164 0.5550 +208 5170 0.9620 +208 5208 0.9160 +208 5241 0.6000 +208 5290 0.9840 +208 5291 0.9830 +208 5293 0.9620 +208 5294 0.9740 +208 5295 0.9790 +208 5296 0.9630 +208 5341 0.7550 +208 5346 0.4360 +208 5371 0.4410 +208 5468 0.6910 +208 5501 0.4600 +208 5515 0.8000 +208 5516 0.7100 +208 5518 0.7530 +208 5519 0.7130 +208 5520 0.7030 +208 5521 0.6900 +208 5522 0.6640 +208 5523 0.6550 +208 5525 0.7340 +208 5526 0.7350 +208 5527 0.7290 +208 5528 0.7300 +208 5529 0.7140 +208 5575 0.5150 +208 5590 0.9290 +208 5591 0.8050 +208 5594 0.9290 +208 5595 0.9620 +208 5599 0.5270 +208 5600 0.9270 +208 5601 0.5410 +208 5603 0.9280 +208 5606 0.4450 +208 5715 0.5140 +208 5728 0.8260 +208 5770 0.4450 +208 5796 0.5580 +208 5867 0.5090 +208 5868 0.5340 +208 5879 0.6430 +208 5880 0.6620 +208 5894 0.9230 +208 6009 0.6590 +208 6194 0.5320 +208 6198 0.9400 +208 6199 0.9230 +208 6295 0.4870 +208 6300 0.9270 +208 6416 0.9180 +208 6446 0.6940 +208 6464 0.4860 +208 6514 0.6090 +208 6517 0.8050 +208 6591 0.4090 +208 6615 0.6100 +208 6714 0.8290 +208 6720 0.5240 +208 6774 0.5460 +208 6776 0.6350 +208 6777 0.4100 +208 7040 0.4390 +208 7082 0.5250 +208 7124 0.4290 +208 7157 0.9730 +208 7179 0.4550 +208 7184 0.9320 +208 7189 0.4260 +208 7248 0.9500 +208 7249 0.9690 +208 7267 0.6070 +208 7291 0.4070 +208 7350 0.4970 +208 7428 0.4520 +208 7431 0.4120 +208 7436 0.4020 +208 7525 0.6100 +208 7837 0.4640 +208 7852 0.5480 +208 7862 0.4100 +208 7994 0.4510 +208 8115 0.9690 +208 8289 0.4520 +208 8411 0.4750 +208 8454 0.6850 +208 8473 0.9390 +208 8503 0.9530 +208 8517 0.9200 +208 8660 0.6890 +208 8821 0.4970 +208 8835 0.4880 +208 9020 0.5600 +208 9370 0.4070 +208 9479 0.4870 +208 9586 0.6890 +208 9623 0.9590 +208 9656 0.4010 +208 9847 0.7960 +208 9869 0.6170 +208 9882 0.9940 +208 10000 0.9650 +208 10018 0.4010 +208 10488 0.6820 +208 10555 0.5250 +208 10681 0.5670 +208 10724 0.4120 +208 10891 0.6290 +208 10987 0.4160 +208 11140 0.9440 +208 11331 0.5010 +208 23035 0.9860 +208 23216 0.4370 +208 23239 0.9940 +208 23265 0.4760 +208 23373 0.4540 +208 23410 0.5660 +208 23411 0.5260 +208 23433 0.4560 +208 23533 0.9370 +208 23608 0.4350 +208 23774 0.4280 +208 26060 0.9490 +208 26088 0.4910 +208 26499 0.7660 +208 26580 0.4330 +208 27154 0.4050 +208 28227 0.6550 +208 51230 0.4700 +208 51256 0.9230 +208 51764 0.4990 +208 51806 0.7130 +208 54331 0.5200 +208 54739 0.4320 +208 55012 0.6540 +208 55615 0.5570 +208 55844 0.6560 +208 55970 0.5210 +208 57148 0.7750 +208 57186 0.7520 +208 57521 0.9760 +208 57630 0.7520 +208 57706 0.4050 +208 57761 0.9650 +208 57818 0.4130 +208 59345 0.5520 +208 63924 0.4180 +208 64223 0.6660 +208 64764 0.6570 +208 64769 0.4070 +208 64784 0.4500 +208 79109 0.7760 +208 79594 0.6390 +208 84289 0.4520 +208 84335 0.9670 +208 84699 0.6830 +208 90993 0.6520 +208 91860 0.7060 +208 92579 0.4050 +208 94235 0.4990 +208 117145 0.9410 +208 137902 0.4520 +208 146850 0.9120 +208 148327 0.6750 +208 163688 0.7060 +208 196883 0.6760 +208 200186 0.9450 +208 252983 0.6130 +208 253260 0.8750 +208 100132074 0.7060 +210 211 0.9910 +210 212 0.9850 +210 506 0.6180 +210 645 0.5500 +210 833 0.4620 +210 1352 0.4630 +210 1355 0.5130 +210 1371 0.9780 +210 2053 0.4610 +210 2056 0.4920 +210 2058 0.5450 +210 2194 0.8140 +210 2235 0.9170 +210 2623 0.6240 +210 2752 0.4480 +210 2877 0.5410 +210 2878 0.5290 +210 2880 0.5270 +210 2882 0.5260 +210 2936 0.4940 +210 3077 0.4220 +210 3145 0.9990 +210 3162 0.5240 +210 3163 0.5050 +210 3240 0.5500 +210 4493 0.4550 +210 4706 0.6630 +210 4728 0.4120 +210 4891 0.4380 +210 4942 0.8850 +210 5091 0.4040 +210 5236 0.5650 +210 5238 0.6520 +210 5498 0.9060 +210 6182 0.4510 +210 6389 0.4370 +210 6470 0.5420 +210 7037 0.5740 +210 7248 0.4950 +210 7295 0.5150 +210 7389 0.9850 +210 7390 0.9970 +210 8192 0.4390 +210 9517 0.5640 +210 9563 0.4150 +210 10058 0.5560 +210 10423 0.4110 +210 10558 0.5310 +210 10845 0.4550 +210 22938 0.5680 +210 23456 0.4710 +210 23464 0.5660 +210 28982 0.4760 +210 51067 0.4100 +210 51312 0.4790 +210 51629 0.4100 +210 51805 0.4070 +210 54363 0.4120 +210 54884 0.4010 +210 54977 0.5710 +210 55191 0.4980 +210 55304 0.5380 +210 55312 0.4820 +210 57817 0.5990 +210 64850 0.5890 +210 64902 0.5880 +210 79587 0.4570 +210 79728 0.6630 +210 79747 0.4270 +210 81932 0.4660 +210 84263 0.4250 +210 85007 0.5920 +210 124454 0.6290 +210 132949 0.8160 +210 140862 0.5300 +210 145501 0.5300 +210 257202 0.5260 +210 284131 0.5210 +210 493869 0.5260 +211 212 0.9050 +211 224 0.4130 +211 406 0.6970 +211 567 0.4170 +211 644 0.5110 +211 645 0.4040 +211 1371 0.7990 +211 1387 0.4180 +211 1407 0.5860 +211 1431 0.4400 +211 1610 0.9180 +211 1757 0.9420 +211 1937 0.5230 +211 2101 0.7950 +211 2235 0.9050 +211 2395 0.4550 +211 2512 0.4570 +211 2531 0.4970 +211 2597 0.4690 +211 2623 0.6250 +211 2628 0.9060 +211 2731 0.9260 +211 2990 0.6730 +211 2994 0.5680 +211 3043 0.4210 +211 3046 0.4960 +211 3145 0.9180 +211 3155 0.4680 +211 3162 0.4820 +211 3163 0.5100 +211 3172 0.4150 +211 3283 0.4050 +211 3658 0.4790 +211 4151 0.4030 +211 4783 0.5830 +211 4862 0.7270 +211 4891 0.4190 +211 4899 0.7840 +211 4946 0.6300 +211 5093 0.4320 +211 5094 0.4100 +211 5106 0.4560 +211 5465 0.5470 +211 5469 0.4500 +211 5498 0.8570 +211 6095 0.4630 +211 6096 0.4370 +211 6143 0.5670 +211 6256 0.4630 +211 6389 0.4940 +211 6470 0.9290 +211 6472 0.9250 +211 6604 0.4440 +211 6652 0.6860 +211 6715 0.4370 +211 6821 0.4140 +211 6907 0.4390 +211 6908 0.5080 +211 6999 0.5100 +211 7037 0.4210 +211 7280 0.4130 +211 7389 0.8390 +211 7390 0.7710 +211 8031 0.4370 +211 8192 0.5250 +211 8553 0.4760 +211 8648 0.4450 +211 8863 0.5190 +211 8864 0.6440 +211 9054 0.4040 +211 9168 0.4870 +211 9572 0.7030 +211 9575 0.6030 +211 9698 0.4050 +211 9975 0.5890 +211 10058 0.4660 +211 10498 0.4540 +211 10499 0.4300 +211 10845 0.5160 +211 10891 0.4520 +211 23054 0.4170 +211 23456 0.4100 +211 26234 0.4610 +211 27232 0.9040 +211 27349 0.4080 +211 28982 0.6000 +211 50814 0.4590 +211 51268 0.9150 +211 51312 0.5310 +211 51621 0.5900 +211 51629 0.4140 +211 53335 0.4110 +211 54205 0.4770 +211 54977 0.5730 +211 54995 0.4220 +211 55240 0.4350 +211 55268 0.4260 +211 55640 0.5390 +211 55750 0.4250 +211 57591 0.4310 +211 57634 0.4270 +211 64902 0.9150 +211 79365 0.4950 +211 79577 0.4650 +211 79718 0.4030 +211 80205 0.4060 +211 81689 0.4300 +211 81894 0.5070 +211 84172 0.4650 +211 85441 0.4460 +211 96764 0.4050 +211 133522 0.7900 +211 142679 0.7120 +211 150274 0.5080 +211 203068 0.4340 +211 283212 0.4200 +211 728378 0.4010 +212 286 0.6200 +212 645 0.7570 +212 669 0.5770 +212 759 0.8100 +212 917 0.4190 +212 1371 0.7710 +212 1610 0.9130 +212 1757 0.9310 +212 2038 0.9130 +212 2039 0.4070 +212 2056 0.4570 +212 2057 0.4320 +212 2235 0.9840 +212 2395 0.4810 +212 2495 0.4060 +212 2531 0.4970 +212 2623 0.9470 +212 2624 0.5300 +212 2628 0.9070 +212 2731 0.9270 +212 2993 0.7310 +212 2994 0.9010 +212 2996 0.6670 +212 3039 0.7170 +212 3040 0.6680 +212 3042 0.8520 +212 3043 0.8310 +212 3045 0.8790 +212 3046 0.6900 +212 3047 0.7980 +212 3048 0.6990 +212 3049 0.7950 +212 3050 0.4810 +212 3077 0.6930 +212 3145 0.8930 +212 3163 0.4290 +212 3658 0.7780 +212 4151 0.4020 +212 4316 0.4110 +212 4635 0.5290 +212 4778 0.5520 +212 4891 0.5370 +212 5207 0.6950 +212 5230 0.5180 +212 5498 0.8310 +212 5725 0.4230 +212 6005 0.5520 +212 6470 0.9210 +212 6472 0.9260 +212 6521 0.8760 +212 6620 0.5100 +212 6622 0.6230 +212 6652 0.6840 +212 6708 0.4650 +212 6886 0.4860 +212 7036 0.4680 +212 7037 0.5900 +212 7111 0.4080 +212 7264 0.4410 +212 7389 0.7470 +212 7390 0.7970 +212 8803 0.5060 +212 8861 0.4120 +212 8991 0.6280 +212 9054 0.4160 +212 10058 0.4550 +212 10107 0.5030 +212 10560 0.4150 +212 10661 0.7650 +212 10845 0.5390 +212 23400 0.4140 +212 23456 0.7150 +212 23479 0.4240 +212 23762 0.4820 +212 24140 0.4930 +212 25853 0.4050 +212 25893 0.5500 +212 27232 0.9060 +212 28982 0.5120 +212 30061 0.5390 +212 50814 0.4020 +212 51218 0.8970 +212 51268 0.9200 +212 51312 0.8050 +212 51327 0.9190 +212 51522 0.4750 +212 51621 0.6150 +212 51629 0.6690 +212 54205 0.4050 +212 54971 0.4200 +212 54977 0.8780 +212 54995 0.4200 +212 55240 0.4270 +212 55363 0.5820 +212 57591 0.4310 +212 57679 0.4290 +212 57817 0.4810 +212 64902 0.9160 +212 80324 0.4880 +212 80347 0.5330 +212 81689 0.4830 +212 81894 0.5060 +212 84529 0.4650 +212 92745 0.4940 +212 93517 0.4380 +212 116151 0.4170 +212 146059 0.4510 +212 148738 0.4310 +212 161882 0.4280 +212 164656 0.4420 +212 222642 0.4070 +213 214 0.4450 +213 216 0.4450 +213 229 0.4510 +213 231 0.5030 +213 238 0.6890 +213 248 0.4450 +213 249 0.4040 +213 258 0.6980 +213 259 0.9700 +213 268 0.4060 +213 277 0.7540 +213 278 0.7620 +213 280 0.7460 +213 284 0.4620 +213 285 0.6560 +213 286 0.6280 +213 287 0.6110 +213 288 0.6130 +213 290 0.8660 +213 301 0.6380 +213 302 0.4680 +213 306 0.4040 +213 307 0.4470 +213 308 0.7860 +213 309 0.4160 +213 317 0.4170 +213 319 0.4620 +213 325 0.6710 +213 327 0.5760 +213 328 0.6630 +213 331 0.5470 +213 333 0.4610 +213 335 0.9980 +213 336 0.9620 +213 337 0.8240 +213 338 0.9510 +213 341 0.4570 +213 344 0.4850 +213 345 0.9120 +213 347 0.5900 +213 348 0.9530 +213 350 0.9330 +213 351 0.9010 +213 354 0.7680 +213 355 0.4380 +213 356 0.4760 +213 358 0.4540 +213 359 0.4930 +213 367 0.5340 +213 383 0.5910 +213 384 0.4720 +213 387 0.6240 +213 408 0.4580 +213 409 0.4380 +213 415 0.5260 +213 432 0.7680 +213 462 0.9330 +213 472 0.6230 +213 479 0.7730 +213 495 0.7760 +213 501 0.4070 +213 538 0.4030 +213 551 0.6080 +213 554 0.4110 +213 563 0.7200 +213 567 0.9870 +213 581 0.4460 +213 590 0.9120 +213 595 0.6400 +213 596 0.7480 +213 598 0.5720 +213 623 0.5220 +213 624 0.5350 +213 627 0.6840 +213 629 0.6440 +213 632 0.6600 +213 633 0.4140 +213 644 0.4310 +213 649 0.4460 +213 650 0.8280 +213 652 0.5920 +213 655 0.4750 +213 664 0.4200 +213 671 0.5340 +213 672 0.5030 +213 673 0.4940 +213 675 0.5840 +213 706 0.6040 +213 710 0.7910 +213 716 0.6300 +213 718 0.9590 +213 720 0.5840 +213 721 0.5390 +213 722 0.5920 +213 727 0.4450 +213 730 0.4260 +213 735 0.4110 +213 759 0.6570 +213 760 0.6220 +213 761 0.5900 +213 763 0.5820 +213 765 0.5910 +213 766 0.5490 +213 767 0.7320 +213 768 0.6680 +213 771 0.5500 +213 793 0.5610 +213 794 0.4620 +213 808 0.7890 +213 810 0.7920 +213 811 0.7180 +213 820 0.4470 +213 821 0.7430 +213 834 0.6110 +213 836 0.8150 +213 840 0.4230 +213 841 0.5950 +213 842 0.6340 +213 846 0.4600 +213 857 0.7430 +213 860 0.5880 +213 866 0.8850 +213 875 0.6290 +213 885 0.7330 +213 891 0.4790 +213 910 0.4020 +213 916 0.5330 +213 920 0.8170 +213 921 0.4690 +213 925 0.7710 +213 928 0.6020 +213 930 0.6840 +213 939 0.4690 +213 940 0.5420 +213 941 0.5950 +213 942 0.7360 +213 945 0.4180 +213 947 0.7460 +213 948 0.6400 +213 949 0.8990 +213 950 0.5960 +213 952 0.5540 +213 953 0.4980 +213 956 0.5150 +213 958 0.5410 +213 959 0.5570 +213 960 0.7390 +213 961 0.7110 +213 966 0.4360 +213 967 0.7390 +213 968 0.7270 +213 969 0.5040 +213 975 0.5860 +213 983 0.4970 +213 999 0.7350 +213 1000 0.6320 +213 1003 0.6380 +213 1015 0.5750 +213 1017 0.5360 +213 1019 0.5140 +213 1021 0.4130 +213 1026 0.4470 +213 1029 0.5110 +213 1039 0.4180 +213 1045 0.4140 +213 1048 0.7280 +213 1050 0.6420 +213 1051 0.4340 +213 1066 0.4430 +213 1071 0.4930 +213 1072 0.4710 +213 1073 0.4650 +213 1080 0.5020 +213 1103 0.5070 +213 1111 0.4190 +213 1113 0.4330 +213 1116 0.4090 +213 1147 0.4580 +213 1149 0.5190 +213 1191 0.8310 +213 1215 0.5350 +213 1234 0.4970 +213 1236 0.4970 +213 1244 0.5130 +213 1267 0.4100 +213 1268 0.4180 +213 1270 0.4760 +213 1277 0.5770 +213 1278 0.4640 +213 1291 0.4820 +213 1327 0.5320 +213 1356 0.9360 +213 1360 0.4320 +213 1361 0.4830 +213 1365 0.4300 +213 1366 0.5290 +213 1373 0.6260 +213 1374 0.4050 +213 1378 0.5750 +213 1385 0.6080 +213 1392 0.4530 +213 1401 0.9280 +213 1410 0.4160 +213 1420 0.6200 +213 1431 0.4400 +213 1432 0.4720 +213 1435 0.5330 +213 1436 0.4350 +213 1437 0.6720 +213 1440 0.7500 +213 1446 0.6490 +213 1447 0.8960 +213 1448 0.8360 +213 1471 0.8300 +213 1472 0.5800 +213 1490 0.5840 +213 1493 0.5220 +213 1499 0.7090 +213 1504 0.8290 +213 1506 0.6090 +213 1508 0.6060 +213 1509 0.5470 +213 1511 0.4420 +213 1514 0.4860 +213 1520 0.5220 +213 1524 0.4610 +213 1536 0.5530 +213 1543 0.5620 +213 1544 0.6220 +213 1548 0.4100 +213 1551 0.4820 +213 1555 0.5260 +213 1557 0.4730 +213 1558 0.4500 +213 1559 0.5700 +213 1565 0.5090 +213 1571 0.6370 +213 1576 0.7440 +213 1577 0.4350 +213 1581 0.4910 +213 1588 0.4460 +213 1591 0.4370 +213 1593 0.4520 +213 1594 0.4390 +213 1604 0.4650 +213 1628 0.5970 +213 1634 0.4630 +213 1636 0.9120 +213 1638 0.4480 +213 1641 0.5250 +213 1649 0.4600 +213 1672 0.5760 +213 1673 0.5480 +213 1674 0.4730 +213 1675 0.4240 +213 1719 0.4580 +213 1728 0.5290 +213 1742 0.5550 +213 1755 0.7100 +213 1756 0.4420 +213 1773 0.4840 +213 1786 0.4220 +213 1791 0.7360 +213 1803 0.7780 +213 1839 0.5860 +213 1846 0.4050 +213 1869 0.4030 +213 1906 0.6320 +213 1909 0.4030 +213 1910 0.4160 +213 1915 0.4310 +213 1917 0.6300 +213 1950 0.8890 +213 1956 0.8080 +213 1958 0.4210 +213 1991 0.6470 +213 1992 0.4450 +213 2017 0.4060 +213 2022 0.6610 +213 2023 0.6980 +213 2026 0.7230 +213 2028 0.6050 +213 2056 0.7840 +213 2064 0.6700 +213 2065 0.6310 +213 2081 0.4520 +213 2086 0.8660 +213 2091 0.7280 +213 2099 0.7960 +213 2100 0.6870 +213 2101 0.4190 +213 2147 0.9900 +213 2149 0.4190 +213 2152 0.7990 +213 2153 0.7470 +213 2155 0.6080 +213 2157 0.5840 +213 2158 0.7320 +213 2159 0.6460 +213 2160 0.5120 +213 2161 0.6070 +213 2165 0.6430 +213 2167 0.4830 +213 2168 0.7760 +213 2170 0.6210 +213 2172 0.4370 +213 2184 0.6720 +213 2194 0.4650 +213 2203 0.5270 +213 2209 0.4750 +213 2212 0.6000 +213 2213 0.6010 +213 2217 0.9990 +213 2219 0.5970 +213 2220 0.6260 +213 2243 0.9750 +213 2244 0.8780 +213 2246 0.4940 +213 2247 0.8420 +213 2248 0.7530 +213 2249 0.7800 +213 2250 0.7560 +213 2251 0.7550 +213 2252 0.7630 +213 2253 0.7550 +213 2254 0.7460 +213 2255 0.7580 +213 2258 0.6040 +213 2260 0.4050 +213 2266 0.9450 +213 2267 0.6700 +213 2308 0.5110 +213 2309 0.4520 +213 2321 0.5190 +213 2323 0.4210 +213 2324 0.4150 +213 2335 0.9980 +213 2346 0.8000 +213 2348 0.5370 +213 2350 0.4760 +213 2352 0.4790 +213 2353 0.6210 +213 2475 0.6280 +213 2495 0.7200 +213 2520 0.4810 +213 2521 0.4750 +213 2526 0.5070 +213 2534 0.4420 +213 2537 0.4440 +213 2538 0.6070 +213 2539 0.5470 +213 2571 0.5240 +213 2572 0.4620 +213 2596 0.4600 +213 2597 0.8950 +213 2621 0.5500 +213 2625 0.4130 +213 2626 0.4850 +213 2629 0.4790 +213 2638 0.9800 +213 2641 0.8390 +213 2645 0.4170 +213 2660 0.4490 +213 2668 0.5840 +213 2670 0.7710 +213 2678 0.6420 +213 2688 0.9360 +213 2689 0.4650 +213 2691 0.5610 +213 2695 0.5870 +213 2697 0.5740 +213 2705 0.4460 +213 2717 0.4330 +213 2719 0.4910 +213 2735 0.6100 +213 2740 0.7650 +213 2752 0.5230 +213 2796 0.5010 +213 2801 0.4440 +213 2805 0.5520 +213 2806 0.7860 +213 2811 0.6330 +213 2813 0.4590 +213 2852 0.6070 +213 2875 0.9280 +213 2877 0.7210 +213 2878 0.7160 +213 2879 0.4250 +213 2880 0.7130 +213 2882 0.7100 +213 2889 0.7030 +213 2890 0.4240 +213 2904 0.4360 +213 2908 0.6080 +213 2919 0.5180 +213 2922 0.5930 +213 2932 0.6740 +213 2934 0.6390 +213 2936 0.5890 +213 2944 0.4100 +213 2990 0.6440 +213 2993 0.6550 +213 2994 0.5130 +213 2996 0.4870 +213 3002 0.4790 +213 3005 0.4180 +213 3014 0.5120 +213 3015 0.4020 +213 3021 0.6680 +213 3026 0.5820 +213 3039 0.5310 +213 3040 0.6680 +213 3043 0.6040 +213 3046 0.4690 +213 3047 0.4120 +213 3050 0.4470 +213 3053 0.5420 +213 3059 0.4090 +213 3064 0.4470 +213 3065 0.4480 +213 3066 0.4330 +213 3075 0.6780 +213 3077 0.6860 +213 3082 0.7820 +213 3091 0.6420 +213 3105 0.4140 +213 3106 0.5380 +213 3146 0.5530 +213 3156 0.7340 +213 3162 0.6830 +213 3169 0.6430 +213 3170 0.7370 +213 3171 0.6930 +213 3172 0.6730 +213 3175 0.5880 +213 3178 0.5660 +213 3183 0.5050 +213 3240 0.9950 +213 3242 0.4880 +213 3250 0.5210 +213 3251 0.6010 +213 3263 0.9810 +213 3265 0.4400 +213 3273 0.7580 +213 3304 0.4080 +213 3308 0.7420 +213 3309 0.6870 +213 3312 0.7120 +213 3313 0.4470 +213 3315 0.6870 +213 3316 0.6170 +213 3320 0.5840 +213 3326 0.5830 +213 3329 0.5630 +213 3339 0.6360 +213 3346 0.5860 +213 3347 0.5630 +213 3375 0.4300 +213 3383 0.7090 +213 3397 0.5280 +213 3398 0.4970 +213 3417 0.4200 +213 3426 0.4670 +213 3439 0.7580 +213 3440 0.7340 +213 3441 0.4800 +213 3442 0.4800 +213 3443 0.4800 +213 3444 0.4800 +213 3445 0.4810 +213 3446 0.4800 +213 3447 0.4800 +213 3448 0.4800 +213 3449 0.5040 +213 3451 0.5050 +213 3452 0.4800 +213 3456 0.5720 +213 3458 0.8660 +213 3479 0.8300 +213 3480 0.4960 +213 3481 0.7130 +213 3482 0.7420 +213 3484 0.6420 +213 3486 0.6770 +213 3551 0.4710 +213 3552 0.7250 +213 3553 0.8360 +213 3557 0.4030 +213 3558 0.7180 +213 3562 0.5910 +213 3565 0.7250 +213 3567 0.6190 +213 3569 0.9260 +213 3570 0.5840 +213 3574 0.6520 +213 3576 0.7820 +213 3586 0.8470 +213 3596 0.6100 +213 3600 0.6600 +213 3605 0.8000 +213 3606 0.6300 +213 3620 0.4530 +213 3627 0.5830 +213 3630 0.9990 +213 3655 0.4380 +213 3661 0.4560 +213 3667 0.5420 +213 3673 0.4370 +213 3674 0.7010 +213 3678 0.4170 +213 3681 0.4610 +213 3684 0.7270 +213 3685 0.4020 +213 3687 0.6310 +213 3688 0.6170 +213 3689 0.6840 +213 3690 0.6290 +213 3697 0.6060 +213 3698 0.8320 +213 3699 0.5300 +213 3700 0.7650 +213 3716 0.4110 +213 3717 0.5300 +213 3725 0.6970 +213 3757 0.4330 +213 3791 0.6180 +213 3815 0.6400 +213 3816 0.4510 +213 3818 0.4310 +213 3827 0.9620 +213 3832 0.5110 +213 3845 0.5590 +213 3852 0.4320 +213 3855 0.5590 +213 3856 0.5900 +213 3861 0.4540 +213 3875 0.6750 +213 3880 0.6870 +213 3897 0.5050 +213 3906 0.9970 +213 3916 0.6500 +213 3920 0.5070 +213 3929 0.4670 +213 3931 0.7100 +213 3933 0.6630 +213 3934 0.7120 +213 3948 0.4340 +213 3952 0.8050 +213 3953 0.4440 +213 3958 0.7700 +213 3959 0.4780 +213 3960 0.5360 +213 3976 0.5260 +213 3990 0.4270 +213 3991 0.4440 +213 4000 0.5210 +213 4001 0.6250 +213 4015 0.5990 +213 4018 0.8050 +213 4023 0.7170 +213 4025 0.7050 +213 4035 0.7140 +213 4036 0.9940 +213 4057 0.9960 +213 4060 0.7370 +213 4069 0.6850 +213 4072 0.6300 +213 4087 0.6200 +213 4088 0.6040 +213 4089 0.5070 +213 4092 0.4190 +213 4102 0.5030 +213 4126 0.4690 +213 4128 0.4060 +213 4129 0.4340 +213 4130 0.4870 +213 4131 0.4490 +213 4133 0.6130 +213 4137 0.5400 +213 4151 0.9920 +213 4153 0.5550 +213 4155 0.6490 +213 4162 0.4200 +213 4170 0.4460 +213 4179 0.5260 +213 4193 0.5990 +213 4194 0.4240 +213 4233 0.5230 +213 4254 0.5600 +213 4256 0.5090 +213 4282 0.4140 +213 4283 0.6470 +213 4288 0.4320 +213 4306 0.5640 +213 4311 0.5290 +213 4312 0.4830 +213 4313 0.6400 +213 4314 0.5400 +213 4316 0.4700 +213 4317 0.4230 +213 4318 0.7450 +213 4322 0.5320 +213 4323 0.4410 +213 4340 0.4690 +213 4353 0.8870 +213 4360 0.7210 +213 4478 0.4120 +213 4493 0.7080 +213 4512 0.5030 +213 4519 0.4220 +213 4547 0.5030 +213 4586 0.4820 +213 4589 0.5290 +213 4591 0.4690 +213 4594 0.5720 +213 4599 0.4050 +213 4609 0.7590 +213 4613 0.4070 +213 4624 0.4820 +213 4633 0.4070 +213 4654 0.4720 +213 4656 0.4890 +213 4684 0.5910 +213 4691 0.6570 +213 4744 0.4230 +213 4747 0.5340 +213 4763 0.4810 +213 4780 0.5900 +213 4790 0.6210 +213 4792 0.6240 +213 4803 0.7630 +213 4804 0.4380 +213 4811 0.6060 +213 4842 0.4840 +213 4843 0.4990 +213 4846 0.6240 +213 4851 0.4630 +213 4852 0.5300 +213 4868 0.7250 +213 4869 0.5800 +213 4878 0.6070 +213 4879 0.6690 +213 4907 0.6340 +213 4908 0.4270 +213 4914 0.4820 +213 4915 0.4260 +213 4922 0.5410 +213 4948 0.5080 +213 4973 0.6240 +213 4976 0.5680 +213 5004 0.9980 +213 5005 0.9980 +213 5008 0.5220 +213 5020 0.5010 +213 5037 0.5080 +213 5045 0.5320 +213 5052 0.5600 +213 5053 0.5790 +213 5054 0.6290 +213 5055 0.6280 +213 5071 0.4800 +213 5080 0.6490 +213 5081 0.4780 +213 5104 0.5690 +213 5105 0.4050 +213 5133 0.4750 +213 5156 0.4960 +213 5159 0.5650 +213 5175 0.7810 +213 5176 0.8490 +213 5196 0.7660 +213 5197 0.5910 +213 5216 0.4040 +213 5228 0.6340 +213 5230 0.4980 +213 5241 0.5350 +213 5243 0.5690 +213 5245 0.5760 +213 5265 0.9980 +213 5267 0.5190 +213 5268 0.4580 +213 5284 0.6620 +213 5286 0.6210 +213 5304 0.5480 +213 5315 0.4370 +213 5320 0.6300 +213 5321 0.4120 +213 5327 0.6340 +213 5328 0.7080 +213 5340 0.9630 +213 5341 0.4270 +213 5345 0.8100 +213 5346 0.4160 +213 5347 0.4290 +213 5354 0.6070 +213 5406 0.5300 +213 5420 0.5150 +213 5443 0.8220 +213 5444 0.8620 +213 5445 0.6120 +213 5446 0.4610 +213 5457 0.4130 +213 5460 0.6770 +213 5465 0.7510 +213 5467 0.4250 +213 5468 0.6820 +213 5473 0.5810 +213 5476 0.4690 +213 5478 0.4850 +213 5551 0.4470 +213 5553 0.4130 +213 5566 0.6120 +213 5567 0.6100 +213 5568 0.6120 +213 5578 0.4680 +213 5594 0.5630 +213 5595 0.6970 +213 5599 0.5260 +213 5604 0.5120 +213 5610 0.4190 +213 5617 0.5840 +213 5621 0.4660 +213 5624 0.4890 +213 5644 0.4760 +213 5646 0.4230 +213 5651 0.4910 +213 5657 0.6120 +213 5663 0.4300 +213 5697 0.5410 +213 5725 0.4530 +213 5728 0.6070 +213 5730 0.4290 +213 5733 0.5420 +213 5741 0.8810 +213 5742 0.6160 +213 5743 0.7720 +213 5744 0.4180 +213 5747 0.4600 +213 5768 0.4850 +213 5770 0.5610 +213 5788 0.7730 +213 5806 0.4480 +213 5816 0.7170 +213 5829 0.5260 +213 5868 0.4790 +213 5877 0.4020 +213 5888 0.4640 +213 5950 0.7850 +213 5966 0.5100 +213 5970 0.4740 +213 5972 0.8300 +213 5979 0.4290 +213 6005 0.6430 +213 6010 0.5430 +213 6035 0.7720 +213 6037 0.4350 +213 6121 0.4140 +213 6175 0.4180 +213 6194 0.5450 +213 6198 0.5920 +213 6199 0.4160 +213 6262 0.6050 +213 6275 0.4180 +213 6277 0.4910 +213 6279 0.6530 +213 6285 0.5850 +213 6288 0.7050 +213 6289 0.4830 +213 6291 0.4750 +213 6319 0.4550 +213 6326 0.5290 +213 6347 0.7390 +213 6348 0.5430 +213 6351 0.5100 +213 6356 0.4450 +213 6376 0.4030 +213 6382 0.5920 +213 6387 0.5920 +213 6390 0.4520 +213 6391 0.5710 +213 6401 0.5910 +213 6402 0.5430 +213 6403 0.7200 +213 6441 0.6110 +213 6448 0.5270 +213 6452 0.4030 +213 6462 0.9960 +213 6469 0.5110 +213 6476 0.5700 +213 6490 0.6510 +213 6506 0.4280 +213 6507 0.4180 +213 6513 0.6300 +213 6514 0.5720 +213 6517 0.5910 +213 6523 0.4310 +213 6524 0.6720 +213 6550 0.4110 +213 6554 0.6870 +213 6555 0.5330 +213 6579 0.4280 +213 6591 0.4700 +213 6608 0.4170 +213 6615 0.5710 +213 6616 0.4100 +213 6622 0.6030 +213 6647 0.6230 +213 6648 0.5210 +213 6652 0.4710 +213 6657 0.6420 +213 6662 0.5870 +213 6663 0.4070 +213 6678 0.9910 +213 6694 0.5270 +213 6696 0.8050 +213 6714 0.6550 +213 6720 0.5410 +213 6721 0.4020 +213 6742 0.4230 +213 6750 0.6300 +213 6772 0.5450 +213 6774 0.6940 +213 6776 0.4280 +213 6777 0.4130 +213 6779 0.6100 +213 6818 0.5550 +213 6850 0.4590 +213 6853 0.5160 +213 6854 0.4130 +213 6855 0.5870 +213 6863 0.6030 +213 6868 0.4100 +213 6898 0.6300 +213 6906 0.9450 +213 6907 0.5200 +213 6908 0.6710 +213 6927 0.5210 +213 6942 0.7130 +213 6947 0.4190 +213 6950 0.4870 +213 6999 0.5070 +213 7001 0.4030 +213 7008 0.4800 +213 7010 0.4950 +213 7015 0.4690 +213 7018 0.9000 +213 7019 0.4440 +213 7025 0.4270 +213 7035 0.6400 +213 7037 0.8800 +213 7038 0.9120 +213 7039 0.4820 +213 7040 0.7840 +213 7042 0.4640 +213 7043 0.5200 +213 7046 0.4530 +213 7048 0.4240 +213 7052 0.4470 +213 7054 0.6010 +213 7056 0.6850 +213 7057 0.4630 +213 7066 0.5090 +213 7070 0.6990 +213 7076 0.7370 +213 7077 0.6660 +213 7082 0.7150 +213 7094 0.4650 +213 7097 0.7330 +213 7098 0.5040 +213 7099 0.8210 +213 7113 0.4640 +213 7122 0.6130 +213 7123 0.5410 +213 7124 0.8700 +213 7132 0.6000 +213 7137 0.7480 +213 7139 0.5710 +213 7157 0.7220 +213 7158 0.4460 +213 7167 0.4520 +213 7173 0.5230 +213 7184 0.4580 +213 7189 0.4040 +213 7200 0.5680 +213 7225 0.4550 +213 7251 0.5320 +213 7273 0.5720 +213 7276 0.9940 +213 7295 0.6170 +213 7299 0.5750 +213 7306 0.4940 +213 7341 0.5510 +213 7345 0.6310 +213 7350 0.4980 +213 7351 0.4430 +213 7352 0.4200 +213 7355 0.4530 +213 7356 0.4050 +213 7363 0.4880 +213 7364 0.5360 +213 7365 0.6790 +213 7366 0.4670 +213 7367 0.4500 +213 7369 0.8120 +213 7403 0.4750 +213 7412 0.6500 +213 7414 0.6670 +213 7415 0.5930 +213 7416 0.5120 +213 7424 0.4520 +213 7430 0.5210 +213 7431 0.5090 +213 7432 0.4030 +213 7442 0.5430 +213 7448 0.9880 +213 7450 0.8710 +213 7490 0.5510 +213 7494 0.4710 +213 7498 0.6050 +213 7827 0.6730 +213 7837 0.9380 +213 7852 0.6150 +213 8029 0.9920 +213 8050 0.4710 +213 8073 0.4200 +213 8074 0.6670 +213 8128 0.4530 +213 8209 0.4480 +213 8224 0.4350 +213 8290 0.6730 +213 8337 0.4450 +213 8338 0.4450 +213 8349 0.5440 +213 8356 0.6730 +213 8361 0.4350 +213 8369 0.4300 +213 8399 0.5910 +213 8411 0.5620 +213 8431 0.4770 +213 8542 0.5070 +213 8547 0.6980 +213 8549 0.5240 +213 8600 0.5410 +213 8639 0.5060 +213 8644 0.5710 +213 8647 0.4710 +213 8678 0.5900 +213 8706 0.6650 +213 8743 0.6100 +213 8766 0.4740 +213 8788 0.4140 +213 8789 0.4730 +213 8797 0.4180 +213 8817 0.7540 +213 8822 0.7510 +213 8823 0.7460 +213 8829 0.4120 +213 8842 0.6060 +213 8856 0.4840 +213 8877 0.4180 +213 8878 0.5200 +213 8900 0.4490 +213 8972 0.5710 +213 8988 0.6260 +213 9021 0.4150 +213 9076 0.5610 +213 9104 0.4060 +213 9113 0.4750 +213 9172 0.9800 +213 9213 0.4140 +213 9241 0.5550 +213 9313 0.4490 +213 9314 0.5120 +213 9332 0.5970 +213 9360 0.6610 +213 9365 0.5170 +213 9370 0.8540 +213 9376 0.4330 +213 9429 0.8070 +213 9451 0.5830 +213 9474 0.5430 +213 9493 0.4040 +213 9518 0.6360 +213 9563 0.5450 +213 9619 0.4070 +213 9622 0.6760 +213 9804 0.5480 +213 9817 0.5320 +213 9927 0.4550 +213 9965 0.5200 +213 9970 0.4380 +213 9971 0.5530 +213 10018 0.4120 +213 10059 0.4160 +213 10101 0.5200 +213 10117 0.5360 +213 10211 0.4360 +213 10215 0.4750 +213 10216 0.6230 +213 10232 0.5810 +213 10274 0.5240 +213 10332 0.6870 +213 10381 0.5080 +213 10468 0.4100 +213 10533 0.4770 +213 10536 0.5360 +213 10549 0.4530 +213 10599 0.4880 +213 10630 0.4590 +213 10673 0.4060 +213 10720 0.4720 +213 10724 0.7200 +213 10732 0.4870 +213 10763 0.6610 +213 10891 0.5990 +213 10894 0.5710 +213 11093 0.4790 +213 11238 0.5560 +213 11315 0.5970 +213 11331 0.4810 +213 11346 0.5420 +213 22881 0.5650 +213 22925 0.6330 +213 22926 0.5080 +213 22933 0.5250 +213 22943 0.4510 +213 22984 0.4260 +213 23166 0.5990 +213 23345 0.4890 +213 23408 0.4970 +213 23409 0.4570 +213 23410 0.4230 +213 23411 0.6110 +213 23521 0.4010 +213 23590 0.4480 +213 23607 0.6430 +213 23621 0.4540 +213 23632 0.5920 +213 23643 0.4310 +213 26137 0.4430 +213 26227 0.5010 +213 26253 0.4820 +213 26281 0.7460 +213 26291 0.5310 +213 26330 0.4560 +213 26355 0.4280 +213 26499 0.4320 +213 26998 0.5220 +213 27006 0.7510 +213 27035 0.4550 +213 27161 0.4060 +213 27235 0.6290 +213 27238 0.6890 +213 27306 0.4540 +213 27329 0.5450 +213 27344 0.4220 +213 28234 0.4300 +213 29126 0.5860 +213 29944 0.5450 +213 29979 0.4280 +213 30061 0.5150 +213 30816 0.8750 +213 30835 0.7460 +213 50489 0.4970 +213 50506 0.4190 +213 50507 0.5510 +213 50616 0.4360 +213 50943 0.6770 +213 51052 0.4340 +213 51151 0.5340 +213 51284 0.4720 +213 51310 0.4950 +213 51430 0.4180 +213 51738 0.6840 +213 51741 0.4380 +213 51806 0.7940 +213 53905 0.4480 +213 54106 0.4940 +213 54205 0.9860 +213 54363 0.8890 +213 54474 0.5720 +213 54490 0.4730 +213 54575 0.5520 +213 54576 0.5630 +213 54577 0.5620 +213 54578 0.5720 +213 54579 0.4620 +213 54600 0.5130 +213 54657 0.5670 +213 54658 0.5650 +213 54659 0.4650 +213 54757 0.4170 +213 54790 0.4320 +213 54840 0.4360 +213 54908 0.4260 +213 55201 0.4220 +213 55294 0.4160 +213 55576 0.7650 +213 55687 0.5230 +213 55808 0.4520 +213 55811 0.5820 +213 55937 0.5990 +213 56339 0.4100 +213 56729 0.4520 +213 56934 0.5930 +213 56938 0.4840 +213 56942 0.4850 +213 56975 0.7660 +213 56980 0.4040 +213 57030 0.4960 +213 57084 0.4600 +213 57104 0.4620 +213 57509 0.5600 +213 57817 0.7090 +213 57818 0.5000 +213 59272 0.8620 +213 64083 0.5410 +213 64100 0.5270 +213 64321 0.5210 +213 64781 0.4630 +213 65018 0.4380 +213 78989 0.4170 +213 79633 0.4320 +213 79727 0.4220 +213 79799 0.5160 +213 79813 0.4260 +213 79923 0.6570 +213 80012 0.4010 +213 80339 0.4080 +213 80341 0.4220 +213 80781 0.4590 +213 81631 0.6670 +213 81669 0.4320 +213 81671 0.4020 +213 81693 0.6320 +213 83660 0.4460 +213 83733 0.5030 +213 84260 0.4040 +213 84557 0.5320 +213 84569 0.4780 +213 84666 0.4710 +213 84699 0.4690 +213 84706 0.8920 +213 84823 0.5410 +213 84929 0.5310 +213 84941 0.5710 +213 85477 0.6380 +213 89780 0.6770 +213 90865 0.4380 +213 91860 0.7910 +213 92483 0.4200 +213 92579 0.4850 +213 112744 0.5600 +213 114548 0.4810 +213 114757 0.6660 +213 114801 0.5140 +213 114907 0.4240 +213 116519 0.4960 +213 120892 0.4310 +213 121340 0.4160 +213 133482 0.6680 +213 137902 0.9370 +213 146713 0.7280 +213 158835 0.4570 +213 160287 0.4100 +213 163688 0.7890 +213 165257 0.4130 +213 168400 0.4560 +213 196527 0.4520 +213 221302 0.4380 +213 255738 0.7200 +213 256394 0.5020 +213 256933 0.4530 +213 257202 0.7130 +213 284161 0.5070 +213 339221 0.4700 +213 374569 0.5490 +213 375611 0.5230 +213 375790 0.6050 +213 377677 0.5760 +213 377841 0.5280 +213 390243 0.4810 +213 401138 0.4680 +213 405754 0.8660 +213 440093 0.6680 +213 440387 0.8290 +213 440686 0.6990 +213 445329 0.5570 +213 493869 0.7230 +213 574537 0.4500 +213 645073 0.4960 +213 645369 0.5320 +213 653145 0.7130 +213 653361 0.4610 +213 653604 0.6990 +213 727897 0.6670 +213 728226 0.4590 +213 728378 0.5550 +213 100133941 0.5140 +213 100423062 0.4910 +213 100506658 0.6740 +213 100861540 0.4200 +213 102723407 0.6600 +214 216 0.6490 +214 290 0.6780 +214 632 0.4470 +214 648 0.4500 +214 682 0.4350 +214 684 0.4750 +214 860 0.4830 +214 920 0.4460 +214 922 0.5200 +214 923 0.9990 +214 928 0.7670 +214 930 0.5460 +214 947 0.7980 +214 948 0.5390 +214 949 0.5390 +214 950 0.5510 +214 960 0.8590 +214 965 0.4020 +214 966 0.4560 +214 967 0.4020 +214 969 0.5140 +214 977 0.4780 +214 999 0.4490 +214 1000 0.4480 +214 1003 0.6550 +214 1499 0.4570 +214 1803 0.4540 +214 1950 0.4460 +214 1956 0.7080 +214 2022 0.8800 +214 2064 0.5980 +214 2247 0.6900 +214 2258 0.5690 +214 2335 0.4610 +214 2526 0.4450 +214 2597 0.4320 +214 2810 0.4240 +214 3383 0.7550 +214 3456 0.4360 +214 3458 0.6410 +214 3569 0.4230 +214 3575 0.4550 +214 3586 0.4100 +214 3630 0.4040 +214 3655 0.5710 +214 3672 0.6150 +214 3673 0.5570 +214 3675 0.6410 +214 3676 0.4350 +214 3678 0.5430 +214 3684 0.5180 +214 3685 0.5390 +214 3688 0.8240 +214 3791 0.4370 +214 3815 0.5870 +214 3897 0.9790 +214 3956 0.5610 +214 3958 0.7610 +214 3964 0.9650 +214 3965 0.5580 +214 4072 0.6440 +214 4162 0.5600 +214 4283 0.4950 +214 4311 0.4760 +214 4345 0.4140 +214 4363 0.4570 +214 4609 0.4010 +214 4804 0.6140 +214 4907 0.8680 +214 5156 0.4180 +214 5159 0.4650 +214 5175 0.7290 +214 5460 0.5930 +214 5743 0.5010 +214 5788 0.7760 +214 5803 0.4100 +214 5868 0.4720 +214 6275 0.5250 +214 6285 0.8440 +214 6356 0.4620 +214 6386 0.5760 +214 6387 0.4450 +214 6402 0.5180 +214 6643 0.4100 +214 6657 0.5960 +214 6662 0.4710 +214 6696 0.4410 +214 7037 0.4810 +214 7040 0.4080 +214 7045 0.4220 +214 7070 0.8810 +214 7430 0.5500 +214 7534 0.4310 +214 7852 0.5070 +214 8459 0.5410 +214 8549 0.5820 +214 8763 0.4330 +214 8829 0.4580 +214 8842 0.7720 +214 9429 0.5070 +214 10512 0.4710 +214 10763 0.5510 +214 11006 0.8130 +214 26509 0.4070 +214 27111 0.5730 +214 27255 0.8060 +214 50848 0.4110 +214 64866 0.6290 +214 79923 0.6000 +214 80380 0.4910 +214 80381 0.5550 +214 83700 0.4330 +214 257194 0.4700 +214 340273 0.4560 +214 347734 0.5270 +214 100133941 0.7730 +214 100532731 0.4500 +215 224 0.6000 +215 225 0.9540 +215 2180 0.7030 +215 2181 0.7450 +215 2182 0.7080 +215 3295 0.6940 +215 3897 0.4500 +215 4099 0.4350 +215 4338 0.4200 +215 5190 0.5390 +215 5191 0.5770 +215 5192 0.5740 +215 5194 0.8410 +215 5195 0.7500 +215 5365 0.7080 +215 5824 0.9510 +215 5825 0.9800 +215 5827 0.7230 +215 5828 0.7250 +215 5830 0.6140 +215 6059 0.4810 +215 6342 0.6700 +215 6683 0.8890 +215 8309 0.4180 +215 8310 0.4720 +215 8443 0.4340 +215 8504 0.9070 +215 8540 0.7210 +215 8799 0.8120 +215 8800 0.5850 +215 9409 0.7770 +215 9429 0.5920 +215 10134 0.8370 +215 10455 0.4560 +215 10478 0.7630 +215 11001 0.9300 +215 11264 0.7020 +215 23205 0.8950 +215 23305 0.7310 +215 51024 0.5940 +215 51703 0.6770 +215 54332 0.5950 +215 55670 0.7400 +215 64834 0.6810 +215 80347 0.6450 +215 84896 0.6010 +215 91452 0.7710 +215 92960 0.4150 +215 132949 0.5270 +215 109703458 0.4140 +216 220 0.9030 +216 231 0.4170 +216 239 0.5230 +216 246 0.4630 +216 308 0.4320 +216 316 0.9510 +216 368 0.4260 +216 374 0.4630 +216 551 0.7390 +216 595 0.4710 +216 596 0.4570 +216 648 0.6660 +216 658 0.4850 +216 672 0.4360 +216 676 0.4330 +216 836 0.4110 +216 847 0.4140 +216 873 0.4120 +216 947 0.4600 +216 960 0.8400 +216 999 0.6250 +216 1000 0.5810 +216 1029 0.4060 +216 1051 0.4490 +216 1381 0.4130 +216 1382 0.4860 +216 1431 0.4280 +216 1479 0.4020 +216 1488 0.4140 +216 1499 0.7380 +216 1543 0.9390 +216 1544 0.9310 +216 1545 0.4370 +216 1548 0.9240 +216 1551 0.9230 +216 1555 0.9330 +216 1558 0.9240 +216 1559 0.9280 +216 1562 0.9190 +216 1571 0.4560 +216 1576 0.9370 +216 1577 0.9330 +216 1579 0.9190 +216 1592 0.9680 +216 1620 0.4290 +216 1644 0.4680 +216 1645 0.4410 +216 1950 0.5770 +216 1956 0.5820 +216 1958 0.4330 +216 2052 0.4340 +216 2053 0.8240 +216 2064 0.6110 +216 2099 0.5330 +216 2184 0.4090 +216 2243 0.4700 +216 2247 0.5100 +216 2271 0.4610 +216 2335 0.4260 +216 2597 0.6220 +216 2735 0.5030 +216 2806 0.6590 +216 3032 0.4490 +216 3091 0.4510 +216 3155 0.4310 +216 3172 0.6150 +216 3248 0.4350 +216 3295 0.4480 +216 3417 0.7390 +216 3418 0.5630 +216 3508 0.6320 +216 3558 0.4280 +216 3569 0.4330 +216 3630 0.4200 +216 3655 0.5850 +216 3688 0.4390 +216 3815 0.5160 +216 3845 0.4550 +216 3852 0.5060 +216 3861 0.4810 +216 3875 0.4640 +216 3880 0.5300 +216 4072 0.7200 +216 4128 0.4450 +216 4129 0.4670 +216 4191 0.7320 +216 4193 0.4320 +216 4233 0.4820 +216 4318 0.4080 +216 4363 0.4550 +216 4440 0.4750 +216 4513 0.4040 +216 4609 0.5920 +216 4728 0.4280 +216 4790 0.4060 +216 4851 0.5980 +216 4854 0.4440 +216 4855 0.4250 +216 4942 0.4500 +216 5241 0.4990 +216 5243 0.5920 +216 5309 0.4030 +216 5460 0.7380 +216 5728 0.4540 +216 5743 0.4070 +216 5832 0.6390 +216 5914 0.5470 +216 5915 0.5340 +216 5916 0.5050 +216 5917 0.5650 +216 5959 0.9450 +216 6296 0.4630 +216 6358 0.4740 +216 6389 0.5390 +216 6390 0.4860 +216 6391 0.4810 +216 6469 0.4970 +216 6506 0.5050 +216 6591 0.5880 +216 6615 0.6230 +216 6652 0.6060 +216 6657 0.7710 +216 6662 0.4830 +216 6714 0.4100 +216 6774 0.5440 +216 6925 0.4070 +216 7070 0.5050 +216 7083 0.4670 +216 7157 0.5410 +216 7167 0.6740 +216 7276 0.4550 +216 7291 0.6500 +216 7363 0.6650 +216 7364 0.6850 +216 7365 0.6630 +216 7366 0.6810 +216 7367 0.6760 +216 7431 0.4680 +216 7837 0.5290 +216 7852 0.5060 +216 8091 0.5690 +216 8549 0.6260 +216 8608 0.9270 +216 8630 0.9120 +216 8644 0.4190 +216 8801 0.4040 +216 8802 0.4920 +216 8803 0.4060 +216 8842 0.8760 +216 8854 0.9150 +216 9201 0.4540 +216 9227 0.4940 +216 9249 0.9510 +216 9314 0.6170 +216 9429 0.7380 +216 9563 0.4270 +216 9839 0.4400 +216 10170 0.9420 +216 10247 0.4200 +216 10257 0.5760 +216 10449 0.4310 +216 10551 0.4750 +216 10720 0.6630 +216 10763 0.5110 +216 10901 0.9630 +216 11200 0.4790 +216 26227 0.4280 +216 26471 0.4440 +216 29777 0.4240 +216 29785 0.9220 +216 50700 0.9370 +216 51071 0.4440 +216 51109 0.9510 +216 51129 0.4520 +216 53630 0.9460 +216 54490 0.6730 +216 54575 0.7100 +216 54576 0.7130 +216 54577 0.7070 +216 54578 0.7350 +216 54579 0.6630 +216 54600 0.6920 +216 54657 0.7100 +216 54658 0.7200 +216 54659 0.6790 +216 54884 0.4990 +216 54988 0.4310 +216 55902 0.4510 +216 56603 0.9640 +216 57016 0.4370 +216 57591 0.4350 +216 57665 0.4030 +216 64220 0.6190 +216 65220 0.4340 +216 79611 0.4120 +216 79727 0.4360 +216 79799 0.6840 +216 79923 0.7710 +216 84263 0.6880 +216 84532 0.4470 +216 112724 0.4050 +216 121214 0.4360 +216 130013 0.4290 +216 137872 0.4730 +216 137902 0.5270 +216 145226 0.9690 +216 157506 0.9690 +216 195814 0.9410 +216 284541 0.9180 +216 340273 0.4910 +216 340665 0.9530 +216 574537 0.6680 +216 100133941 0.8150 +216 100532731 0.6660 +216 100861540 0.9160 +216 109703458 0.4100 +217 219 0.9450 +217 224 0.9320 +217 231 0.9440 +217 314 0.9680 +217 316 0.6660 +217 335 0.5250 +217 348 0.4520 +217 438 0.9150 +217 551 0.9230 +217 587 0.4010 +217 847 0.5070 +217 1129 0.5340 +217 1138 0.4230 +217 1312 0.6820 +217 1345 0.6890 +217 1431 0.5490 +217 1479 0.4020 +217 1491 0.4170 +217 1543 0.4710 +217 1548 0.4450 +217 1557 0.5580 +217 1565 0.5300 +217 1571 0.8570 +217 1579 0.9230 +217 1629 0.8600 +217 1632 0.4070 +217 1636 0.5530 +217 1737 0.4590 +217 1805 0.5670 +217 1812 0.4830 +217 1813 0.6300 +217 1815 0.6190 +217 1892 0.6550 +217 1962 0.9400 +217 2052 0.5230 +217 2053 0.8270 +217 2098 0.4230 +217 2121 0.4170 +217 2177 0.4700 +217 2180 0.4920 +217 2184 0.4490 +217 2243 0.5200 +217 2244 0.5350 +217 2266 0.5140 +217 2271 0.7230 +217 2272 0.6190 +217 2555 0.5120 +217 2559 0.4310 +217 2561 0.4210 +217 2571 0.9330 +217 2572 0.9270 +217 2597 0.4950 +217 2618 0.4220 +217 2628 0.9250 +217 2639 0.4350 +217 2739 0.4070 +217 2744 0.8120 +217 2746 0.8740 +217 2747 0.8620 +217 2752 0.8520 +217 2806 0.6240 +217 2875 0.4650 +217 2936 0.4150 +217 2944 0.4970 +217 2950 0.4760 +217 3030 0.4240 +217 3032 0.5440 +217 3155 0.4440 +217 3248 0.5690 +217 3295 0.4700 +217 3329 0.5940 +217 3336 0.4290 +217 3417 0.5410 +217 3418 0.5910 +217 3712 0.4020 +217 4128 0.9820 +217 4129 0.9750 +217 4191 0.7380 +217 4255 0.4430 +217 4306 0.4350 +217 4329 0.9610 +217 4513 0.4150 +217 4522 0.4710 +217 4524 0.5630 +217 4728 0.4510 +217 4781 0.5010 +217 4942 0.5390 +217 4967 0.4470 +217 4985 0.5310 +217 4988 0.5830 +217 5095 0.8440 +217 5096 0.8430 +217 5236 0.4010 +217 5265 0.5190 +217 5726 0.4630 +217 5832 0.7040 +217 5890 0.5860 +217 6049 0.4960 +217 6296 0.4270 +217 6389 0.5880 +217 6390 0.4840 +217 6391 0.4090 +217 6470 0.4460 +217 6472 0.4300 +217 6532 0.7630 +217 6648 0.5520 +217 6652 0.5200 +217 6657 0.4230 +217 6821 0.4370 +217 7018 0.4690 +217 7054 0.4300 +217 7083 0.4010 +217 7167 0.5680 +217 7341 0.4090 +217 7498 0.4460 +217 7534 0.4850 +217 8091 0.7800 +217 8192 0.4160 +217 8309 0.5150 +217 8310 0.8640 +217 8424 0.9240 +217 8452 0.5460 +217 8639 0.9760 +217 8659 0.8500 +217 8801 0.4530 +217 8802 0.5070 +217 8803 0.4940 +217 8854 0.5980 +217 9369 0.4720 +217 9563 0.4380 +217 9940 0.5430 +217 10186 0.4760 +217 10247 0.4210 +217 10327 0.9440 +217 10449 0.6130 +217 10455 0.4120 +217 10786 0.4230 +217 10797 0.4330 +217 10961 0.4250 +217 11112 0.9390 +217 11178 0.4790 +217 11185 0.4750 +217 23410 0.6860 +217 26227 0.4140 +217 26275 0.5990 +217 27165 0.8250 +217 50833 0.5050 +217 51071 0.4580 +217 51084 0.6090 +217 51268 0.4300 +217 51733 0.9200 +217 51741 0.5040 +217 51806 0.4420 +217 54988 0.4210 +217 55268 0.7090 +217 55748 0.9120 +217 55825 0.4510 +217 55862 0.8500 +217 55902 0.9540 +217 57016 0.9300 +217 57402 0.4930 +217 57571 0.9060 +217 57591 0.4350 +217 57687 0.5610 +217 64850 0.4300 +217 64902 0.9420 +217 65220 0.4250 +217 65266 0.5790 +217 65985 0.4630 +217 79611 0.8860 +217 80018 0.5870 +217 80221 0.4190 +217 80724 0.6820 +217 81889 0.4130 +217 84263 0.6960 +217 84532 0.9510 +217 84735 0.9100 +217 85007 0.4060 +217 85320 0.4200 +217 89894 0.5120 +217 113278 0.4400 +217 130013 0.4660 +217 132158 0.9180 +217 134526 0.9070 +217 137872 0.4740 +217 150274 0.4070 +217 197322 0.9300 +217 255239 0.7810 +217 283450 0.6730 +217 284541 0.9190 +217 339896 0.9230 +217 348158 0.4010 +217 109703458 0.4100 +218 221 0.9090 +218 222 0.9090 +218 231 0.6010 +218 314 0.9300 +218 383 0.4280 +218 551 0.4840 +218 847 0.4340 +218 873 0.5000 +218 960 0.4300 +218 1312 0.9460 +218 1429 0.4860 +218 1431 0.4810 +218 1475 0.4050 +218 1543 0.6980 +218 1544 0.5680 +218 1545 0.6840 +218 1555 0.4510 +218 1559 0.4060 +218 1571 0.9390 +218 1645 0.6730 +218 1646 0.6180 +218 1728 0.5930 +218 1825 0.4750 +218 2052 0.4720 +218 2053 0.8010 +218 2184 0.4070 +218 2271 0.4440 +218 2571 0.9260 +218 2572 0.9260 +218 2597 0.4180 +218 2746 0.4830 +218 2805 0.4290 +218 2841 0.6210 +218 2877 0.5090 +218 2938 0.8230 +218 2939 0.7620 +218 2940 0.7270 +218 2941 0.7570 +218 2944 0.7530 +218 2946 0.7190 +218 2947 0.7260 +218 2948 0.7290 +218 2949 0.6790 +218 2950 0.7580 +218 3034 0.4320 +218 3067 0.5650 +218 3251 0.4240 +218 3326 0.4740 +218 3850 0.5270 +218 3859 0.5830 +218 3860 0.4300 +218 4051 0.4250 +218 4060 0.4510 +218 4128 0.9510 +218 4129 0.9520 +218 4166 0.4350 +218 4257 0.7190 +218 4258 0.7050 +218 4259 0.6860 +218 4522 0.4230 +218 4728 0.4130 +218 4942 0.4540 +218 4967 0.4220 +218 5052 0.4660 +218 5832 0.6420 +218 6389 0.5560 +218 6390 0.4310 +218 6470 0.4140 +218 6652 0.4950 +218 6888 0.4590 +218 7086 0.4080 +218 7167 0.5290 +218 7295 0.5060 +218 7296 0.4670 +218 8639 0.9280 +218 8644 0.5700 +218 8802 0.5450 +218 8842 0.4190 +218 9429 0.4190 +218 9446 0.7460 +218 9563 0.4690 +218 10247 0.4170 +218 10327 0.9410 +218 10551 0.4290 +218 11081 0.7590 +218 22949 0.4320 +218 23581 0.4790 +218 26227 0.4150 +218 27306 0.7470 +218 29785 0.5140 +218 51004 0.4560 +218 51071 0.4330 +218 51733 0.9160 +218 51741 0.4920 +218 54575 0.4210 +218 54576 0.4160 +218 54577 0.4050 +218 54578 0.5780 +218 54657 0.4020 +218 54658 0.4470 +218 54850 0.4440 +218 55349 0.4280 +218 55748 0.9070 +218 55753 0.4140 +218 55902 0.9440 +218 56912 0.4030 +218 57016 0.7170 +218 57571 0.9040 +218 57591 0.4740 +218 57834 0.4650 +218 64850 0.4610 +218 65220 0.4270 +218 79611 0.4200 +218 80227 0.4030 +218 84263 0.6860 +218 84532 0.9400 +218 84735 0.9070 +218 112812 0.4620 +218 116285 0.4080 +218 119391 0.7390 +218 126133 0.4410 +218 130013 0.4240 +218 137872 0.4610 +218 220074 0.9310 +218 221357 0.6910 +218 339896 0.9260 +218 441282 0.4480 +218 653689 0.7140 +218 100133941 0.4040 +218 100423062 0.4430 +219 224 0.9300 +219 231 0.9590 +219 314 0.9330 +219 368 0.6640 +219 438 0.9060 +219 501 0.4150 +219 551 0.4180 +219 635 0.4730 +219 847 0.4690 +219 875 0.5430 +219 1051 0.4550 +219 1431 0.4960 +219 1479 0.4070 +219 1571 0.4480 +219 1579 0.9180 +219 1629 0.8640 +219 1737 0.4450 +219 1962 0.9410 +219 2053 0.8060 +219 2098 0.6640 +219 2184 0.4120 +219 2271 0.5940 +219 2571 0.9270 +219 2572 0.9230 +219 2628 0.9220 +219 2744 0.8470 +219 2746 0.8610 +219 2747 0.8560 +219 2752 0.8460 +219 2806 0.4160 +219 3295 0.4190 +219 3303 0.4590 +219 3304 0.4490 +219 4128 0.9410 +219 4129 0.9410 +219 4329 0.9330 +219 4728 0.4100 +219 4942 0.6820 +219 5095 0.8210 +219 5096 0.8320 +219 5236 0.4030 +219 5394 0.6000 +219 5625 0.4080 +219 5832 0.7560 +219 6389 0.5480 +219 6390 0.4470 +219 6472 0.4070 +219 6652 0.5550 +219 6821 0.4030 +219 7167 0.5200 +219 7371 0.4370 +219 7555 0.4820 +219 7915 0.4430 +219 8310 0.8630 +219 8424 0.9220 +219 8639 0.9300 +219 8659 0.8520 +219 8802 0.4950 +219 8803 0.4040 +219 9380 0.4450 +219 9563 0.4210 +219 10116 0.5100 +219 10247 0.4280 +219 10327 0.9450 +219 10449 0.5060 +219 10901 0.6070 +219 11112 0.9410 +219 22803 0.4460 +219 23197 0.4320 +219 26227 0.4840 +219 27034 0.4170 +219 27165 0.8120 +219 28976 0.4180 +219 51011 0.4150 +219 51071 0.4410 +219 51179 0.4150 +219 51268 0.4050 +219 51684 0.4700 +219 51733 0.9160 +219 51741 0.4720 +219 54988 0.4220 +219 55349 0.4010 +219 55526 0.4080 +219 55626 0.5620 +219 55748 0.9080 +219 55862 0.8520 +219 55902 0.9440 +219 57016 0.9350 +219 57571 0.9040 +219 57591 0.4350 +219 58510 0.4280 +219 64902 0.9380 +219 65220 0.4220 +219 79611 0.8770 +219 80227 0.4330 +219 81889 0.4740 +219 84263 0.6880 +219 84532 0.9480 +219 84735 0.9120 +219 116285 0.4100 +219 123876 0.4250 +219 130013 0.4400 +219 132158 0.9180 +219 134526 0.9130 +219 137872 0.4990 +219 145482 0.5230 +219 197322 0.9300 +219 284541 0.9170 +219 339896 0.9270 +219 441531 0.4090 +219 109703458 0.4100 +220 316 0.9520 +220 847 0.4270 +220 960 0.5640 +220 1312 0.4930 +220 1381 0.4820 +220 1382 0.5210 +220 1431 0.4120 +220 1479 0.4070 +220 1499 0.4070 +220 1543 0.9580 +220 1544 0.9250 +220 1545 0.5340 +220 1548 0.9170 +220 1551 0.9220 +220 1555 0.9230 +220 1558 0.9260 +220 1559 0.9230 +220 1562 0.9190 +220 1571 0.4150 +220 1576 0.9250 +220 1577 0.9260 +220 1579 0.9170 +220 1592 0.9740 +220 1956 0.5080 +220 2053 0.8010 +220 2271 0.4230 +220 2597 0.4710 +220 2806 0.4050 +220 3295 0.4180 +220 3303 0.4450 +220 3304 0.4410 +220 3655 0.4230 +220 3861 0.4170 +220 4728 0.4190 +220 4942 0.4680 +220 5080 0.4410 +220 5460 0.4150 +220 5832 0.6940 +220 5914 0.6010 +220 5915 0.6370 +220 5916 0.6130 +220 5917 0.6330 +220 5959 0.9560 +220 6121 0.6010 +220 6389 0.5230 +220 6390 0.4620 +220 6652 0.6030 +220 6657 0.4590 +220 7167 0.4630 +220 7316 0.4420 +220 7363 0.6850 +220 7364 0.6790 +220 7365 0.6730 +220 7366 0.6750 +220 7367 0.6790 +220 7498 0.4340 +220 8396 0.4100 +220 8608 0.9320 +220 8630 0.9150 +220 8802 0.4910 +220 8842 0.4990 +220 8854 0.9030 +220 9227 0.5050 +220 9249 0.9610 +220 9360 0.5390 +220 9563 0.4020 +220 10170 0.9440 +220 10247 0.4290 +220 10644 0.4130 +220 10720 0.6830 +220 10901 0.9420 +220 25806 0.4510 +220 25979 0.4010 +220 29785 0.9200 +220 50700 0.9400 +220 51071 0.4390 +220 51109 0.9560 +220 53630 0.9500 +220 54490 0.6840 +220 54575 0.6790 +220 54576 0.6840 +220 54577 0.6860 +220 54578 0.6830 +220 54579 0.6770 +220 54600 0.6720 +220 54657 0.6760 +220 54658 0.6820 +220 54659 0.6800 +220 54884 0.4220 +220 55902 0.6760 +220 56603 0.9730 +220 57016 0.4470 +220 57591 0.4350 +220 57665 0.4140 +220 64220 0.7020 +220 65220 0.4220 +220 79611 0.4130 +220 79705 0.4120 +220 79799 0.6850 +220 79923 0.4420 +220 84263 0.6860 +220 84532 0.4450 +220 112724 0.4380 +220 121214 0.4970 +220 130013 0.4290 +220 137872 0.4810 +220 145226 0.9870 +220 157506 0.9750 +220 195814 0.9520 +220 284541 0.9190 +220 340665 0.9660 +220 574537 0.6860 +220 100133941 0.5190 +220 100861540 0.9160 +220 109703458 0.4100 +221 222 0.9590 +221 231 0.5180 +221 314 0.9280 +221 551 0.4090 +221 847 0.4770 +221 1312 0.9510 +221 1431 0.4660 +221 1571 0.9350 +221 2053 0.7930 +221 2184 0.4140 +221 2271 0.4290 +221 2571 0.9260 +221 2572 0.9260 +221 2746 0.4670 +221 2938 0.6620 +221 2939 0.7110 +221 2940 0.7190 +221 2941 0.7160 +221 2944 0.6900 +221 2946 0.6910 +221 2947 0.6590 +221 2948 0.6860 +221 2949 0.6660 +221 2950 0.6980 +221 3067 0.4710 +221 3903 0.4280 +221 4128 0.9500 +221 4129 0.9480 +221 4257 0.7120 +221 4258 0.6920 +221 4259 0.6820 +221 4728 0.8490 +221 4942 0.4460 +221 4967 0.4370 +221 5625 0.4630 +221 5832 0.7700 +221 6296 0.4430 +221 6389 0.5560 +221 6390 0.4310 +221 6517 0.4150 +221 6652 0.5170 +221 6888 0.4110 +221 7167 0.5160 +221 8639 0.9280 +221 8802 0.5450 +221 9446 0.7100 +221 9563 0.4530 +221 10247 0.4340 +221 10327 0.9480 +221 10901 0.4280 +221 23250 0.4210 +221 23363 0.4460 +221 27306 0.7100 +221 51071 0.4330 +221 51733 0.9160 +221 54511 0.4560 +221 55349 0.4030 +221 55748 0.9080 +221 55753 0.4400 +221 55902 0.9470 +221 56912 0.4030 +221 57016 0.5350 +221 57103 0.5370 +221 57571 0.9060 +221 57591 0.4820 +221 65220 0.4360 +221 65985 0.5470 +221 79611 0.4200 +221 80227 0.4030 +221 84263 0.6870 +221 84532 0.9450 +221 84735 0.9070 +221 84942 0.4410 +221 85007 0.4010 +221 119391 0.7200 +221 126133 0.5240 +221 130013 0.4240 +221 137872 0.4960 +221 220074 0.9250 +221 221357 0.6620 +221 339896 0.9260 +221 441282 0.4480 +221 653689 0.7210 +222 314 0.9280 +222 847 0.4920 +222 1312 0.9170 +222 1431 0.4660 +222 1571 0.9280 +222 1743 0.4220 +222 2053 0.7930 +222 2184 0.4020 +222 2271 0.4290 +222 2571 0.9260 +222 2572 0.9260 +222 2938 0.6620 +222 2939 0.6620 +222 2940 0.7160 +222 2941 0.6840 +222 2944 0.6710 +222 2946 0.6960 +222 2947 0.6590 +222 2948 0.6830 +222 2949 0.6710 +222 2950 0.7020 +222 4128 0.9410 +222 4129 0.9360 +222 4257 0.6530 +222 4258 0.6560 +222 4259 0.6910 +222 4728 0.4220 +222 4942 0.4460 +222 4967 0.4520 +222 5832 0.7040 +222 6389 0.5560 +222 6390 0.4310 +222 6652 0.5000 +222 7167 0.5290 +222 8639 0.9280 +222 8802 0.5510 +222 9446 0.6990 +222 10202 0.4640 +222 10247 0.4020 +222 10327 0.9390 +222 23363 0.4090 +222 27306 0.6750 +222 51071 0.4330 +222 51733 0.9160 +222 54884 0.4070 +222 55349 0.4030 +222 55526 0.4180 +222 55748 0.9070 +222 55753 0.4760 +222 55902 0.9470 +222 56912 0.4030 +222 57571 0.9180 +222 57591 0.4740 +222 64850 0.4060 +222 65220 0.4270 +222 65985 0.4020 +222 79611 0.4200 +222 84263 0.6860 +222 84532 0.9410 +222 84735 0.9070 +222 116285 0.4590 +222 119391 0.7030 +222 126133 0.6190 +222 130013 0.4240 +222 137872 0.4610 +222 220074 0.9270 +222 221357 0.6780 +222 255520 0.4250 +222 339896 0.9260 +222 653689 0.6960 +223 231 0.9310 +223 314 0.9280 +223 438 0.9160 +223 586 0.4240 +223 587 0.5840 +223 788 0.4120 +223 847 0.4850 +223 873 0.4050 +223 1376 0.4190 +223 1431 0.6080 +223 1479 0.4140 +223 1579 0.9190 +223 1629 0.8790 +223 1632 0.4480 +223 1666 0.4980 +223 1737 0.6370 +223 1738 0.4810 +223 1743 0.4090 +223 1892 0.6540 +223 1962 0.9460 +223 2053 0.8080 +223 2180 0.4190 +223 2184 0.4140 +223 2271 0.6210 +223 2571 0.9250 +223 2572 0.9230 +223 2628 0.9180 +223 2639 0.4860 +223 2739 0.4570 +223 2744 0.8150 +223 2746 0.8750 +223 2747 0.8530 +223 2752 0.8420 +223 2805 0.4040 +223 2806 0.4680 +223 3030 0.6510 +223 3032 0.7140 +223 3033 0.5670 +223 3155 0.5440 +223 3295 0.4750 +223 3417 0.4520 +223 3712 0.4550 +223 4128 0.9390 +223 4129 0.9400 +223 4191 0.4150 +223 4329 0.9370 +223 4695 0.4270 +223 4705 0.4130 +223 4728 0.8390 +223 4942 0.4770 +223 4967 0.4370 +223 5095 0.8480 +223 5096 0.8550 +223 5162 0.4940 +223 5498 0.4060 +223 5625 0.4720 +223 5824 0.4810 +223 5832 0.7270 +223 6296 0.4760 +223 6342 0.5300 +223 6389 0.6790 +223 6390 0.5680 +223 6391 0.5590 +223 6470 0.4370 +223 6472 0.4040 +223 6584 0.4580 +223 6652 0.5130 +223 6821 0.4060 +223 6888 0.4180 +223 7167 0.5510 +223 8050 0.5670 +223 8310 0.8930 +223 8424 0.9540 +223 8639 0.9280 +223 8659 0.8430 +223 8801 0.5090 +223 8802 0.5660 +223 8803 0.4630 +223 9563 0.5010 +223 9588 0.4530 +223 10247 0.4280 +223 10327 0.9490 +223 10449 0.6250 +223 10455 0.4950 +223 10994 0.4630 +223 11112 0.9390 +223 27165 0.8580 +223 51011 0.4290 +223 51031 0.5260 +223 51071 0.4930 +223 51102 0.5580 +223 51179 0.4070 +223 51300 0.6310 +223 51651 0.4020 +223 51733 0.9290 +223 54499 0.6250 +223 54511 0.4470 +223 54884 0.4030 +223 55217 0.6950 +223 55349 0.4450 +223 55699 0.5400 +223 55748 0.9270 +223 55862 0.8480 +223 55902 0.9450 +223 56898 0.5090 +223 57016 0.9310 +223 57103 0.5210 +223 57571 0.9140 +223 57591 0.4350 +223 64080 0.4140 +223 64850 0.4030 +223 64902 0.9420 +223 65220 0.4270 +223 79587 0.4030 +223 79611 0.8780 +223 80221 0.4480 +223 81889 0.4170 +223 84263 0.7070 +223 84532 0.9490 +223 84735 0.9080 +223 84795 0.4440 +223 84869 0.4410 +223 85007 0.4050 +223 115817 0.4520 +223 130013 0.4730 +223 130589 0.4130 +223 132158 0.9290 +223 134526 0.9060 +223 137872 0.4860 +223 197322 0.9370 +223 284541 0.9170 +223 339896 0.9230 +223 109703458 0.4100 +224 225 0.5700 +224 231 0.9580 +224 314 0.9280 +224 438 0.9120 +224 439 0.5270 +224 551 0.4060 +224 587 0.4390 +224 635 0.4080 +224 819 0.5000 +224 847 0.4710 +224 873 0.4700 +224 1312 0.4550 +224 1431 0.5270 +224 1479 0.4050 +224 1528 0.6700 +224 1579 0.9350 +224 1629 0.8630 +224 1737 0.4420 +224 1738 0.4130 +224 1743 0.4120 +224 1892 0.5180 +224 1956 0.5640 +224 1962 0.9590 +224 2010 0.6980 +224 2052 0.4390 +224 2053 0.8150 +224 2177 0.4220 +224 2180 0.6330 +224 2182 0.4680 +224 2184 0.4320 +224 2271 0.4830 +224 2571 0.9280 +224 2572 0.9260 +224 2628 0.9210 +224 2639 0.4890 +224 2739 0.4080 +224 2744 0.8170 +224 2746 0.8960 +224 2747 0.8650 +224 2752 0.8400 +224 2805 0.4730 +224 2806 0.4810 +224 2821 0.4050 +224 3030 0.4450 +224 3032 0.5240 +224 3033 0.4590 +224 3067 0.4740 +224 3155 0.4730 +224 3162 0.5410 +224 3295 0.6530 +224 4128 0.9570 +224 4129 0.9590 +224 4199 0.4180 +224 4329 0.9390 +224 4728 0.4720 +224 4942 0.5140 +224 4967 0.4800 +224 5095 0.8500 +224 5096 0.8490 +224 5191 0.4120 +224 5192 0.4810 +224 5194 0.5770 +224 5195 0.5220 +224 5245 0.5480 +224 5264 0.4860 +224 5824 0.6130 +224 5825 0.5510 +224 5827 0.7530 +224 5828 0.5300 +224 5830 0.4670 +224 5832 0.7180 +224 6129 0.4090 +224 6307 0.4050 +224 6342 0.4330 +224 6389 0.5900 +224 6390 0.4720 +224 6449 0.5290 +224 6470 0.4700 +224 6652 0.5210 +224 6785 0.4080 +224 6804 0.4990 +224 6811 0.5000 +224 6844 0.4990 +224 7167 0.5730 +224 7284 0.4190 +224 7363 0.4090 +224 7371 0.4160 +224 7485 0.5030 +224 7917 0.4990 +224 8153 0.5900 +224 8266 0.5540 +224 8309 0.5200 +224 8310 0.9020 +224 8402 0.4050 +224 8424 0.9210 +224 8504 0.5640 +224 8540 0.5000 +224 8639 0.9280 +224 8659 0.8550 +224 8760 0.4440 +224 8799 0.6080 +224 8801 0.4120 +224 8802 0.5630 +224 8803 0.4030 +224 8879 0.4740 +224 8942 0.4630 +224 9218 0.6230 +224 9381 0.4990 +224 9409 0.5960 +224 9517 0.5420 +224 9563 0.4560 +224 10247 0.4180 +224 10327 0.9570 +224 10449 0.5290 +224 10455 0.6340 +224 10478 0.6390 +224 10952 0.6010 +224 10994 0.4350 +224 11112 0.9290 +224 11264 0.6160 +224 23480 0.5040 +224 25979 0.4930 +224 26061 0.5500 +224 26063 0.4420 +224 26173 0.4710 +224 27165 0.8160 +224 27230 0.4990 +224 27289 0.5890 +224 51024 0.5820 +224 51071 0.4510 +224 51099 0.4390 +224 51170 0.4060 +224 51268 0.6200 +224 51608 0.5030 +224 51733 0.9160 +224 51741 0.4920 +224 54332 0.5440 +224 54363 0.4060 +224 54578 0.4080 +224 54884 0.4230 +224 55349 0.4050 +224 55670 0.5790 +224 55748 0.9280 +224 55825 0.4380 +224 55862 0.8650 +224 55902 0.9470 +224 56898 0.4510 +224 56912 0.4060 +224 57016 0.9510 +224 57571 0.9040 +224 57591 0.4740 +224 64080 0.5130 +224 64850 0.4340 +224 64902 0.9370 +224 65220 0.4310 +224 65985 0.4250 +224 79152 0.7820 +224 79611 0.9020 +224 79799 0.4130 +224 81889 0.4120 +224 84188 0.5730 +224 84263 0.7560 +224 84532 0.9530 +224 84693 0.4370 +224 84735 0.9100 +224 84869 0.4450 +224 84896 0.6180 +224 91452 0.7120 +224 115761 0.4090 +224 118424 0.4990 +224 126133 0.5630 +224 126410 0.4840 +224 130013 0.5000 +224 132158 0.9210 +224 132949 0.4500 +224 134526 0.9060 +224 137362 0.4130 +224 137872 0.5270 +224 197322 0.9270 +224 284273 0.4140 +224 284541 0.9290 +224 339896 0.9310 +224 392636 0.9520 +224 441282 0.4480 +225 231 0.5190 +225 1891 0.4470 +225 2180 0.5310 +225 2181 0.5830 +225 2182 0.5640 +225 2326 0.4350 +225 3295 0.5700 +225 3897 0.4890 +225 5190 0.4010 +225 5191 0.4710 +225 5192 0.4540 +225 5194 0.7540 +225 5195 0.6440 +225 5365 0.6780 +225 5824 0.8960 +225 5825 0.9260 +225 5827 0.6740 +225 5828 0.6550 +225 5830 0.4270 +225 6342 0.5750 +225 6720 0.4970 +225 8504 0.6950 +225 8799 0.7350 +225 8800 0.4850 +225 9409 0.6860 +225 9429 0.4320 +225 10134 0.6500 +225 10478 0.6870 +225 11001 0.8360 +225 11264 0.7020 +225 23205 0.8670 +225 23305 0.6240 +225 51024 0.5410 +225 51703 0.5010 +225 54332 0.5510 +225 55670 0.5720 +225 64834 0.5320 +225 80347 0.6480 +225 84896 0.6010 +225 91452 0.6530 +225 109703458 0.4140 +226 229 0.9760 +226 230 0.9930 +226 259 0.7160 +226 292 0.4190 +226 302 0.5840 +226 308 0.5460 +226 334 0.4220 +226 382 0.4290 +226 445 0.5860 +226 477 0.4820 +226 498 0.5950 +226 506 0.5570 +226 513 0.5150 +226 515 0.4260 +226 529 0.4130 +226 594 0.4360 +226 669 0.9060 +226 832 0.4040 +226 1072 0.5450 +226 1152 0.5870 +226 1159 0.4130 +226 1160 0.6020 +226 1173 0.6060 +226 1192 0.4950 +226 1327 0.4510 +226 1329 0.4430 +226 1410 0.4270 +226 1431 0.6440 +226 1675 0.4300 +226 1737 0.4790 +226 1892 0.4860 +226 1938 0.4540 +226 1956 0.5870 +226 2023 0.9880 +226 2026 0.9420 +226 2027 0.9720 +226 2162 0.4040 +226 2180 0.5420 +226 2194 0.6000 +226 2203 0.9770 +226 2271 0.5220 +226 2335 0.4880 +226 2353 0.4120 +226 2538 0.8640 +226 2539 0.8940 +226 2597 0.9990 +226 2632 0.4410 +226 2645 0.8680 +226 2806 0.4580 +226 2821 0.9870 +226 2879 0.5100 +226 2923 0.5550 +226 2934 0.4960 +226 2997 0.5340 +226 3091 0.5570 +226 3098 0.9390 +226 3099 0.9210 +226 3101 0.8580 +226 3312 0.6500 +226 3320 0.4090 +226 3326 0.4450 +226 3417 0.5030 +226 3418 0.5190 +226 3419 0.4650 +226 3420 0.4330 +226 3612 0.4290 +226 3613 0.5370 +226 3725 0.5390 +226 3795 0.9350 +226 3827 0.4290 +226 3835 0.4510 +226 3948 0.8970 +226 4137 0.4010 +226 4191 0.6950 +226 4609 0.4510 +226 4705 0.4100 +226 4831 0.4080 +226 4967 0.4810 +226 5004 0.4930 +226 5033 0.6040 +226 5052 0.4490 +226 5079 0.4910 +226 5091 0.4310 +226 5105 0.4690 +226 5106 0.4610 +226 5161 0.8500 +226 5162 0.9300 +226 5163 0.5400 +226 5207 0.4360 +226 5208 0.4830 +226 5209 0.6100 +226 5210 0.5390 +226 5211 0.9920 +226 5213 0.9900 +226 5214 0.9880 +226 5216 0.5320 +226 5223 0.9820 +226 5224 0.9440 +226 5226 0.4980 +226 5230 0.9620 +226 5232 0.7370 +226 5236 0.6950 +226 5265 0.5280 +226 5313 0.9280 +226 5315 0.9830 +226 5351 0.4530 +226 5473 0.4430 +226 5478 0.5930 +226 5531 0.6100 +226 5595 0.5300 +226 5768 0.4540 +226 5834 0.5250 +226 5836 0.5610 +226 5837 0.7330 +226 6120 0.4410 +226 6175 0.5180 +226 6389 0.5110 +226 6513 0.6720 +226 6515 0.5440 +226 6517 0.4380 +226 6521 0.4570 +226 6613 0.4400 +226 6647 0.4890 +226 6648 0.4160 +226 6888 0.9720 +226 7001 0.4330 +226 7009 0.4450 +226 7052 0.4330 +226 7086 0.9730 +226 7167 0.9970 +226 7184 0.5740 +226 7276 0.4840 +226 7280 0.5680 +226 7384 0.6090 +226 7416 0.4230 +226 7490 0.4300 +226 7529 0.4220 +226 7531 0.4330 +226 7534 0.4980 +226 7596 0.5160 +226 7767 0.8360 +226 7773 0.8260 +226 8277 0.9680 +226 8479 0.4450 +226 8789 0.9700 +226 8802 0.4150 +226 8803 0.4140 +226 9040 0.4170 +226 9123 0.4830 +226 9562 0.8040 +226 9563 0.9050 +226 9588 0.5720 +226 10172 0.6540 +226 10295 0.6100 +226 10376 0.4320 +226 10383 0.4050 +226 10397 0.4120 +226 10449 0.6680 +226 10476 0.4070 +226 10551 0.5250 +226 11332 0.4200 +226 11344 0.4630 +226 22934 0.5070 +226 23770 0.5540 +226 26007 0.9200 +226 26227 0.4740 +226 26330 0.9770 +226 26470 0.4060 +226 51071 0.9240 +226 51429 0.6020 +226 55276 0.8830 +226 57469 0.6030 +226 57818 0.8370 +226 79026 0.4780 +226 80201 0.8820 +226 83440 0.9170 +226 84076 0.9690 +226 84695 0.4210 +226 85477 0.4610 +226 92483 0.8930 +226 92579 0.8490 +226 132158 0.8300 +226 160287 0.8930 +226 203068 0.5750 +226 253980 0.4980 +226 253982 0.4040 +226 387082 0.4290 +226 387712 0.9120 +226 441531 0.9690 +226 548596 0.4180 +226 728378 0.5940 +226 729020 0.4120 +229 230 0.9600 +229 259 0.7030 +229 270 0.6690 +229 271 0.7240 +229 272 0.7180 +229 336 0.4470 +229 338 0.4270 +229 345 0.6250 +229 350 0.4060 +229 382 0.4480 +229 526 0.4850 +229 529 0.5770 +229 567 0.4850 +229 570 0.8040 +229 594 0.4490 +229 635 0.4290 +229 669 0.8950 +229 710 0.4760 +229 1173 0.4810 +229 1373 0.4600 +229 1431 0.4360 +229 1576 0.5330 +229 1579 0.4170 +229 2023 0.9360 +229 2026 0.9150 +229 2027 0.9320 +229 2034 0.4330 +229 2168 0.6730 +229 2203 0.9820 +229 2243 0.4080 +229 2538 0.9300 +229 2539 0.8690 +229 2597 0.9950 +229 2638 0.4010 +229 2645 0.8910 +229 2821 0.9700 +229 2998 0.4530 +229 3098 0.8680 +229 3099 0.8750 +229 3101 0.8710 +229 3172 0.4220 +229 3242 0.4650 +229 3417 0.4050 +229 3612 0.4220 +229 3613 0.4220 +229 3795 0.9730 +229 3948 0.8920 +229 4143 0.4560 +229 4191 0.5100 +229 4199 0.5040 +229 4351 0.5070 +229 5009 0.5430 +229 5053 0.4560 +229 5091 0.4780 +229 5092 0.4840 +229 5105 0.6030 +229 5106 0.4980 +229 5161 0.8510 +229 5162 0.9130 +229 5207 0.4320 +229 5211 0.9860 +229 5213 0.9820 +229 5214 0.9820 +229 5223 0.9020 +229 5224 0.9080 +229 5230 0.7190 +229 5232 0.6890 +229 5313 0.9730 +229 5315 0.9160 +229 5340 0.4990 +229 5834 0.5120 +229 5836 0.5450 +229 5837 0.5440 +229 6120 0.5300 +229 6513 0.4730 +229 6514 0.8020 +229 6518 0.5180 +229 6888 0.9550 +229 6927 0.5050 +229 7025 0.5500 +229 7086 0.9630 +229 7111 0.8240 +229 7167 0.9860 +229 7507 0.6500 +229 8277 0.9620 +229 8789 0.9760 +229 9550 0.4310 +229 9562 0.8090 +229 9563 0.8970 +229 22934 0.4570 +229 25802 0.4340 +229 26007 0.9550 +229 26330 0.9690 +229 29974 0.4380 +229 51071 0.9220 +229 51179 0.4470 +229 51429 0.4870 +229 55276 0.8430 +229 57469 0.6030 +229 57818 0.8810 +229 60386 0.5450 +229 64080 0.4140 +229 64902 0.4410 +229 80201 0.8810 +229 83440 0.9020 +229 84076 0.9610 +229 92483 0.8930 +229 92579 0.8580 +229 132158 0.8330 +229 160287 0.8890 +229 387712 0.9090 +229 441531 0.9070 +229 728378 0.4700 +229 729020 0.4450 +230 259 0.5090 +230 498 0.4670 +230 506 0.4260 +230 529 0.4380 +230 664 0.4500 +230 669 0.8880 +230 1152 0.4670 +230 1159 0.4630 +230 1431 0.4150 +230 1737 0.4170 +230 2023 0.9510 +230 2026 0.9570 +230 2027 0.9450 +230 2194 0.5390 +230 2203 0.9740 +230 2271 0.4310 +230 2316 0.4350 +230 2538 0.8550 +230 2539 0.8640 +230 2597 0.9930 +230 2645 0.8590 +230 2670 0.4540 +230 2821 0.9790 +230 3098 0.9070 +230 3099 0.8810 +230 3101 0.8600 +230 3417 0.4030 +230 3418 0.4040 +230 3612 0.5060 +230 3613 0.5250 +230 3704 0.4010 +230 3795 0.9440 +230 3948 0.8850 +230 4191 0.5480 +230 5106 0.4330 +230 5161 0.8470 +230 5162 0.9210 +230 5165 0.4190 +230 5209 0.4930 +230 5210 0.5780 +230 5211 0.9790 +230 5213 0.9770 +230 5214 0.9790 +230 5223 0.9420 +230 5224 0.9300 +230 5230 0.8350 +230 5232 0.7590 +230 5236 0.5440 +230 5313 0.9420 +230 5315 0.9430 +230 5834 0.4460 +230 5836 0.4940 +230 5837 0.4980 +230 6506 0.4130 +230 6507 0.5560 +230 6513 0.5000 +230 6888 0.9600 +230 7086 0.9620 +230 7167 0.9890 +230 7385 0.4400 +230 8277 0.9620 +230 8789 0.9700 +230 9562 0.8220 +230 9563 0.9010 +230 10397 0.4180 +230 10840 0.5000 +230 22934 0.4350 +230 26007 0.9150 +230 26330 0.9700 +230 51071 0.9220 +230 51429 0.4870 +230 55276 0.8590 +230 57469 0.6270 +230 57818 0.8320 +230 64080 0.4060 +230 80201 0.8780 +230 83440 0.9090 +230 84076 0.9600 +230 92483 0.8850 +230 92579 0.8410 +230 116448 0.4170 +230 130589 0.4660 +230 132158 0.8240 +230 160287 0.8890 +230 387712 0.9120 +230 441531 0.9300 +230 548596 0.4170 +230 729020 0.4290 +231 277 0.5380 +231 278 0.5710 +231 280 0.5380 +231 501 0.9360 +231 759 0.4730 +231 822 0.4330 +231 873 0.9910 +231 874 0.8270 +231 875 0.5640 +231 1636 0.4810 +231 1719 0.9740 +231 1728 0.4230 +231 1803 0.4360 +231 2023 0.6420 +231 2026 0.5090 +231 2027 0.5480 +231 2028 0.4810 +231 2171 0.5560 +231 2173 0.4290 +231 2274 0.4160 +231 2538 0.8570 +231 2539 0.5130 +231 2584 0.6570 +231 2585 0.5940 +231 2592 0.4290 +231 2597 0.4820 +231 2645 0.9150 +231 2673 0.5610 +231 2697 0.4930 +231 2710 0.9240 +231 2712 0.9230 +231 2717 0.9080 +231 2720 0.9030 +231 2729 0.5230 +231 2739 0.6780 +231 2877 0.5710 +231 2878 0.5760 +231 2879 0.4550 +231 2880 0.5480 +231 2882 0.5900 +231 2936 0.5680 +231 2941 0.4430 +231 2950 0.4880 +231 3029 0.4370 +231 3098 0.8440 +231 3099 0.8500 +231 3101 0.8300 +231 3419 0.4720 +231 3569 0.4010 +231 3630 0.6140 +231 3795 0.6110 +231 3938 0.9070 +231 4015 0.4940 +231 4087 0.6580 +231 4089 0.4550 +231 4128 0.4910 +231 4129 0.4770 +231 4297 0.4300 +231 4311 0.4230 +231 4780 0.4110 +231 4790 0.6150 +231 4837 0.4510 +231 4846 0.4590 +231 4919 0.4220 +231 5052 0.4320 +231 5053 0.9180 +231 5176 0.4480 +231 5214 0.5230 +231 5226 0.4780 +231 5230 0.4220 +231 5232 0.4690 +231 5375 0.4510 +231 5465 0.4070 +231 5468 0.5730 +231 5743 0.4380 +231 5770 0.5220 +231 5805 0.9160 +231 5834 0.4530 +231 5836 0.4500 +231 5837 0.4320 +231 5860 0.9380 +231 5929 0.5150 +231 5972 0.5800 +231 6476 0.6700 +231 6517 0.4220 +231 6526 0.7450 +231 6533 0.5710 +231 6539 0.8400 +231 6573 0.4260 +231 6647 0.4880 +231 6648 0.6040 +231 6652 0.9980 +231 6697 0.9740 +231 6774 0.5610 +231 6888 0.5630 +231 7054 0.9220 +231 7086 0.6010 +231 7166 0.9350 +231 7167 0.6070 +231 7295 0.4150 +231 7474 0.4280 +231 7498 0.4190 +231 7881 0.4930 +231 8085 0.4410 +231 8277 0.5190 +231 8514 0.4310 +231 8566 0.5350 +231 8574 0.9190 +231 8644 0.9110 +231 8972 0.6770 +231 9196 0.5060 +231 9380 0.5580 +231 9388 0.4050 +231 9563 0.5370 +231 9588 0.4930 +231 9942 0.6700 +231 9945 0.4640 +231 10170 0.5790 +231 10587 0.5530 +231 10725 0.7850 +231 11343 0.9120 +231 22925 0.6680 +231 22977 0.8740 +231 23542 0.4930 +231 27294 0.9400 +231 27306 0.4200 +231 29780 0.5080 +231 51181 0.9500 +231 51703 0.4210 +231 53346 0.4480 +231 55586 0.7660 +231 57016 0.9090 +231 57818 0.8590 +231 64065 0.4010 +231 65124 0.4720 +231 79924 0.5840 +231 80201 0.8430 +231 84076 0.6120 +231 84693 0.6710 +231 89780 0.4120 +231 92579 0.8620 +231 121278 0.9020 +231 130589 0.9270 +231 200895 0.9710 +231 221981 0.4050 +231 257202 0.5480 +231 441282 0.6360 +231 493869 0.5700 +238 308 0.4030 +238 471 0.9320 +238 472 0.5770 +238 546 0.5470 +238 580 0.4480 +238 595 0.5490 +238 596 0.5790 +238 597 0.7070 +238 604 0.5450 +238 652 0.4400 +238 655 0.6220 +238 657 0.4080 +238 659 0.7640 +238 672 0.5440 +238 673 0.4050 +238 675 0.5520 +238 800 0.4700 +238 833 0.6030 +238 836 0.4500 +238 857 0.4830 +238 909 0.4080 +238 914 0.5000 +238 920 0.5630 +238 921 0.5750 +238 924 0.5060 +238 925 0.5810 +238 943 0.8350 +238 947 0.5700 +238 968 0.5110 +238 972 0.5700 +238 973 0.6910 +238 999 0.4490 +238 1029 0.6640 +238 1048 0.5750 +238 1051 0.5310 +238 1111 0.5090 +238 1380 0.4590 +238 1399 0.5300 +238 1401 0.4150 +238 1493 0.5840 +238 1499 0.6250 +238 1604 0.6020 +238 1639 0.8070 +238 1910 0.5110 +238 1937 0.5540 +238 1950 0.5450 +238 1956 0.5050 +238 1964 0.4270 +238 2009 0.7540 +238 2026 0.4490 +238 2064 0.7750 +238 2067 0.4160 +238 2099 0.5250 +238 2120 0.5990 +238 2130 0.5440 +238 2146 0.4960 +238 2314 0.4020 +238 2335 0.7440 +238 2475 0.6730 +238 2521 0.4590 +238 2526 0.5070 +238 2549 0.4210 +238 2597 0.4890 +238 2625 0.4150 +238 2658 0.6510 +238 2767 0.5830 +238 2776 0.5400 +238 2778 0.6040 +238 2875 0.6030 +238 2885 0.9650 +238 2956 0.4500 +238 3002 0.4510 +238 3082 0.6960 +238 3084 0.5970 +238 3091 0.4160 +238 3092 0.4100 +238 3265 0.9660 +238 3320 0.7620 +238 3326 0.7560 +238 3417 0.5910 +238 3418 0.5520 +238 3458 0.4050 +238 3479 0.5340 +238 3488 0.4360 +238 3562 0.5830 +238 3569 0.4260 +238 3630 0.4290 +238 3662 0.4410 +238 3667 0.8820 +238 3716 0.9440 +238 3717 0.9360 +238 3718 0.9500 +238 3725 0.4140 +238 3799 0.9130 +238 3815 0.5580 +238 3831 0.8630 +238 3845 0.9890 +238 3852 0.5400 +238 3855 0.6460 +238 3875 0.4950 +238 3880 0.4120 +238 4000 0.4810 +238 4004 0.4900 +238 4008 0.5900 +238 4035 0.4570 +238 4058 0.5600 +238 4087 0.5550 +238 4088 0.4520 +238 4089 0.6700 +238 4170 0.4120 +238 4192 0.9970 +238 4193 0.5580 +238 4204 0.6740 +238 4267 0.4670 +238 4292 0.5520 +238 4297 0.5720 +238 4311 0.5680 +238 4436 0.4370 +238 4478 0.5770 +238 4595 0.4060 +238 4609 0.8960 +238 4613 0.9320 +238 4627 0.5020 +238 4684 0.5950 +238 4691 0.4470 +238 4763 0.6850 +238 4771 0.4360 +238 4841 0.4240 +238 4851 0.6000 +238 4853 0.6170 +238 4869 0.9940 +238 4893 0.9860 +238 4926 0.4050 +238 5004 0.4220 +238 5005 0.4300 +238 5077 0.4330 +238 5079 0.5790 +238 5133 0.6530 +238 5241 0.4020 +238 5243 0.4290 +238 5290 0.9790 +238 5291 0.9350 +238 5293 0.9270 +238 5295 0.9730 +238 5296 0.9270 +238 5335 0.9770 +238 5336 0.9150 +238 5395 0.4170 +238 5426 0.4150 +238 5495 0.4910 +238 5573 0.7150 +238 5594 0.4720 +238 5595 0.5360 +238 5604 0.4450 +238 5607 0.4760 +238 5727 0.4530 +238 5728 0.7220 +238 5747 0.5090 +238 5764 0.9990 +238 5774 0.5120 +238 5777 0.5240 +238 5781 0.7900 +238 5787 0.4650 +238 5788 0.5060 +238 5789 0.5270 +238 5803 0.8480 +238 5829 0.4400 +238 5832 0.4460 +238 5903 0.8260 +238 5914 0.4240 +238 5979 0.6860 +238 6098 0.4490 +238 6238 0.7290 +238 6382 0.7920 +238 6385 0.4400 +238 6421 0.4050 +238 6464 0.9530 +238 6469 0.5600 +238 6513 0.4890 +238 6597 0.7360 +238 6598 0.5850 +238 6654 0.4670 +238 6657 0.4350 +238 6663 0.4450 +238 6693 0.4560 +238 6714 0.8130 +238 6774 0.8930 +238 6776 0.6100 +238 6777 0.6410 +238 6794 0.7180 +238 6801 0.8250 +238 6855 0.4420 +238 6997 0.4730 +238 7015 0.5910 +238 7030 0.4280 +238 7040 0.7880 +238 7042 0.4040 +238 7043 0.5720 +238 7046 0.8820 +238 7048 0.9470 +238 7057 0.5220 +238 7072 0.5110 +238 7078 0.4430 +238 7080 0.6600 +238 7113 0.4450 +238 7157 0.7720 +238 7170 0.9050 +238 7171 0.8460 +238 7175 0.5600 +238 7298 0.4320 +238 7414 0.5950 +238 7431 0.4730 +238 7490 0.4390 +238 7837 0.4260 +238 7849 0.4800 +238 7852 0.5120 +238 8030 0.6630 +238 8031 0.4780 +238 8289 0.5720 +238 8445 0.4820 +238 8496 0.6800 +238 8503 0.9140 +238 8549 0.4130 +238 8626 0.4610 +238 8788 0.4520 +238 8878 0.6460 +238 8929 0.6250 +238 9241 0.4050 +238 9429 0.4230 +238 9451 0.5750 +238 9476 0.7030 +238 9564 0.4390 +238 9648 0.6120 +238 9817 0.4470 +238 10188 0.6250 +238 10342 0.8320 +238 10361 0.5280 +238 10460 0.5050 +238 10568 0.6180 +238 10733 0.4120 +238 10817 0.9140 +238 10818 0.8070 +238 22872 0.8250 +238 23095 0.4780 +238 26986 0.4070 +238 27436 0.9990 +238 29072 0.4020 +238 29126 0.8180 +238 51530 0.6000 +238 53335 0.5130 +238 53353 0.4200 +238 53358 0.4860 +238 54474 0.5540 +238 55107 0.4450 +238 55294 0.6070 +238 55720 0.5060 +238 56940 0.6090 +238 57120 0.5460 +238 57448 0.6210 +238 57492 0.4270 +238 57509 0.7040 +238 57670 0.4050 +238 57674 0.5710 +238 64925 0.4630 +238 80304 0.8110 +238 80380 0.4950 +238 84623 0.4520 +238 84706 0.4150 +238 90525 0.4650 +238 121227 0.4660 +238 130399 0.6750 +238 137902 0.4260 +238 168667 0.4380 +238 255738 0.4810 +238 256646 0.4200 +238 285016 0.9680 +238 387521 0.4180 +238 389421 0.4960 +238 389658 0.6750 +238 399694 0.4710 +238 400566 0.5400 +238 102723407 0.4580 +239 240 0.9140 +239 241 0.6060 +239 242 0.9210 +239 246 0.9060 +239 247 0.9190 +239 1191 0.4990 +239 1241 0.4120 +239 1555 0.9060 +239 1557 0.9150 +239 1558 0.9100 +239 1559 0.9190 +239 1571 0.9220 +239 1573 0.9310 +239 1579 0.9200 +239 1630 0.6380 +239 1826 0.5470 +239 2053 0.4130 +239 2182 0.4990 +239 2534 0.4560 +239 2811 0.5170 +239 2815 0.5000 +239 2853 0.4250 +239 2879 0.5920 +239 3674 0.6570 +239 3691 0.8610 +239 4015 0.6150 +239 4048 0.4700 +239 4051 0.9330 +239 4056 0.4620 +239 4352 0.4430 +239 4756 0.5480 +239 5319 0.7000 +239 5320 0.8240 +239 5321 0.8410 +239 5322 0.7010 +239 5599 0.4040 +239 5601 0.4520 +239 5605 0.4770 +239 5742 0.9600 +239 5743 0.9470 +239 5747 0.4870 +239 6373 0.4080 +239 8398 0.7340 +239 8399 0.7330 +239 8529 0.9220 +239 8605 0.7080 +239 8633 0.6490 +239 8681 0.6500 +239 9423 0.6480 +239 10162 0.4040 +239 10221 0.5150 +239 11145 0.6750 +239 11283 0.9110 +239 23657 0.4110 +239 26279 0.7250 +239 30814 0.6900 +239 50487 0.6840 +239 51206 0.5200 +239 55287 0.4040 +239 56413 0.4580 +239 59277 0.5540 +239 64600 0.6950 +239 81027 0.4090 +239 81579 0.6810 +239 84519 0.4450 +239 84647 0.6560 +239 84883 0.4120 +239 90249 0.6390 +239 113612 0.9130 +239 116173 0.4140 +239 123745 0.7010 +239 151056 0.6770 +239 219699 0.7170 +239 255189 0.6590 +239 283748 0.6610 +239 284541 0.9130 +239 340205 0.5570 +239 391013 0.6500 +239 100137049 0.6720 +240 241 0.9980 +240 242 0.9120 +240 246 0.9140 +240 247 0.9160 +240 348 0.5890 +240 604 0.4530 +240 719 0.4060 +240 728 0.4710 +240 1230 0.4370 +240 1240 0.4830 +240 1241 0.7220 +240 1536 0.5080 +240 1555 0.9170 +240 1557 0.9530 +240 1558 0.9240 +240 1559 0.9550 +240 1571 0.9200 +240 1573 0.9370 +240 1579 0.9220 +240 1958 0.4730 +240 2053 0.5190 +240 2125 0.4320 +240 2146 0.4290 +240 2182 0.4650 +240 2207 0.5520 +240 2268 0.5680 +240 2357 0.4230 +240 2358 0.5140 +240 2359 0.4650 +240 2678 0.4270 +240 2771 0.4270 +240 2854 0.5170 +240 2877 0.9390 +240 2878 0.9400 +240 2879 0.5100 +240 2880 0.9370 +240 2882 0.9370 +240 2885 0.5330 +240 2920 0.6160 +240 3055 0.5730 +240 3248 0.4690 +240 3458 0.4140 +240 3552 0.4270 +240 3553 0.6210 +240 3565 0.6280 +240 3569 0.5290 +240 3576 0.4800 +240 3586 0.4400 +240 3596 0.6050 +240 3606 0.8190 +240 3684 0.4920 +240 3689 0.5380 +240 3992 0.4270 +240 4015 0.7880 +240 4048 0.9920 +240 4051 0.9340 +240 4056 0.9860 +240 4257 0.5150 +240 4313 0.6530 +240 4318 0.4780 +240 4353 0.4420 +240 4688 0.4050 +240 4689 0.4850 +240 4790 0.4490 +240 4792 0.4200 +240 4907 0.4060 +240 5214 0.4460 +240 5319 0.7520 +240 5320 0.8100 +240 5321 0.9250 +240 5322 0.7180 +240 5465 0.4030 +240 5468 0.5090 +240 5566 0.4480 +240 5731 0.4180 +240 5734 0.4510 +240 5740 0.4360 +240 5742 0.9700 +240 5743 0.9730 +240 5970 0.4720 +240 6347 0.4260 +240 6348 0.6400 +240 6774 0.6150 +240 6915 0.4020 +240 7097 0.4820 +240 7099 0.4510 +240 7124 0.6250 +240 7941 0.4580 +240 8398 0.7500 +240 8399 0.7980 +240 8529 0.9300 +240 8544 0.4540 +240 8605 0.7420 +240 8639 0.4490 +240 8681 0.6560 +240 9261 0.8900 +240 9360 0.4900 +240 9415 0.4650 +240 9536 0.6660 +240 10800 0.7820 +240 11145 0.6890 +240 11283 0.9110 +240 23385 0.4420 +240 23405 0.5330 +240 23406 0.9890 +240 26279 0.7330 +240 30814 0.6950 +240 50487 0.7310 +240 54205 0.4350 +240 55660 0.4070 +240 56413 0.6670 +240 57105 0.6870 +240 64600 0.7010 +240 81579 0.7130 +240 84647 0.6660 +240 84941 0.4650 +240 113612 0.9100 +240 123745 0.6700 +240 151056 0.6850 +240 165140 0.5480 +240 255189 0.6990 +240 256646 0.4670 +240 257202 0.9370 +240 283748 0.6770 +240 284541 0.9060 +240 391013 0.6500 +240 493869 0.9370 +240 100137049 0.6870 +241 246 0.6390 +241 247 0.5410 +241 348 0.5290 +241 712 0.4010 +241 963 0.4820 +241 967 0.4280 +241 1191 0.4200 +241 1236 0.4110 +241 1241 0.6470 +241 1401 0.4570 +241 1441 0.4270 +241 1536 0.4110 +241 1636 0.6350 +241 2053 0.6100 +241 2147 0.4410 +241 2162 0.4230 +241 2207 0.5660 +241 2268 0.4440 +241 2357 0.4660 +241 3059 0.4850 +241 3122 0.4290 +241 3553 0.4240 +241 3684 0.4560 +241 3689 0.5800 +241 3936 0.4900 +241 4015 0.4480 +241 4048 0.9500 +241 4056 0.7580 +241 4257 0.8940 +241 4259 0.8480 +241 4332 0.4480 +241 4524 0.5030 +241 4688 0.4630 +241 4689 0.5000 +241 4815 0.6210 +241 5144 0.5220 +241 5321 0.7400 +241 5341 0.4440 +241 5552 0.6700 +241 5583 0.6510 +241 5742 0.5170 +241 5743 0.4840 +241 5788 0.4330 +241 5880 0.4010 +241 6283 0.4380 +241 6688 0.4340 +241 7097 0.4230 +241 7130 0.4090 +241 7286 0.4020 +241 7295 0.4260 +241 7305 0.6010 +241 7805 0.6510 +241 8530 0.4260 +241 9450 0.4240 +241 9536 0.8470 +241 10261 0.4130 +241 10800 0.7870 +241 23406 0.7960 +241 23480 0.4510 +241 25828 0.4240 +241 54440 0.4290 +241 56413 0.5780 +241 56729 0.5410 +241 57105 0.7490 +241 64174 0.4090 +241 80142 0.4180 +241 84935 0.4330 +242 246 0.9180 +242 247 0.9090 +242 1041 0.4360 +242 1555 0.9040 +242 1557 0.9050 +242 1558 0.9060 +242 1559 0.9060 +242 1571 0.9070 +242 1573 0.9100 +242 1579 0.9100 +242 2312 0.4370 +242 3848 0.4210 +242 3849 0.4310 +242 3858 0.4020 +242 4014 0.5610 +242 4015 0.7840 +242 4051 0.9210 +242 5319 0.6530 +242 5320 0.7140 +242 5321 0.7180 +242 5322 0.6500 +242 5742 0.9200 +242 5743 0.9200 +242 6820 0.5960 +242 7051 0.9070 +242 7918 0.4590 +242 8398 0.7190 +242 8399 0.6800 +242 8529 0.9290 +242 8605 0.6960 +242 8681 0.6500 +242 10999 0.4830 +242 11005 0.4560 +242 11145 0.6570 +242 11283 0.9100 +242 23581 0.5870 +242 26154 0.8030 +242 26279 0.6570 +242 30814 0.6750 +242 50487 0.7060 +242 51099 0.8590 +242 59344 0.4960 +242 64600 0.7120 +242 81579 0.6560 +242 84647 0.6940 +242 113612 0.9090 +242 121214 0.7350 +242 123745 0.6530 +242 126410 0.8430 +242 144501 0.4030 +242 151056 0.6500 +242 204219 0.7050 +242 255189 0.7000 +242 257000 0.6070 +242 283748 0.7280 +242 284541 0.9170 +242 285848 0.7930 +242 348938 0.9180 +242 388698 0.4140 +242 391013 0.6500 +242 643418 0.6620 +242 100137049 0.7080 +246 247 0.9160 +246 658 0.4840 +246 786 0.4020 +246 966 0.4710 +246 1240 0.4520 +246 1241 0.5220 +246 1544 0.9150 +246 1555 0.9110 +246 1557 0.9200 +246 1558 0.9130 +246 1559 0.9210 +246 1571 0.9160 +246 1573 0.9300 +246 1576 0.9120 +246 1579 0.9170 +246 1620 0.4240 +246 2053 0.4190 +246 2182 0.5990 +246 2358 0.5090 +246 2853 0.4210 +246 2854 0.7200 +246 2877 0.9330 +246 2878 0.9330 +246 2879 0.6660 +246 2880 0.9310 +246 2882 0.9290 +246 3248 0.4080 +246 3312 0.7550 +246 3458 0.4120 +246 3553 0.4820 +246 3565 0.6970 +246 3568 0.5470 +246 3569 0.4560 +246 3586 0.4120 +246 3596 0.6670 +246 4015 0.8590 +246 4048 0.5920 +246 4051 0.9210 +246 4056 0.5030 +246 4360 0.4020 +246 4973 0.5080 +246 5037 0.9890 +246 5319 0.7010 +246 5320 0.8120 +246 5321 0.8340 +246 5322 0.7090 +246 5468 0.5440 +246 5728 0.5480 +246 5742 0.9600 +246 5743 0.9630 +246 6303 0.4990 +246 6358 0.4820 +246 6688 0.4610 +246 7099 0.4800 +246 7124 0.4670 +246 8031 0.4470 +246 8398 0.7860 +246 8399 0.7980 +246 8529 0.9160 +246 8605 0.7100 +246 8681 0.6500 +246 9360 0.4530 +246 9536 0.4590 +246 10162 0.5940 +246 10257 0.4880 +246 10753 0.4170 +246 11145 0.6770 +246 11251 0.4060 +246 11283 0.9050 +246 23657 0.4470 +246 26279 0.7270 +246 27165 0.4320 +246 27295 0.4010 +246 29116 0.4100 +246 30814 0.6960 +246 50487 0.7100 +246 55847 0.4470 +246 56413 0.4480 +246 64600 0.7430 +246 64754 0.4530 +246 81579 0.6790 +246 84647 0.6970 +246 84883 0.4470 +246 113612 0.9050 +246 114803 0.4080 +246 116285 0.4040 +246 123745 0.7160 +246 151056 0.6540 +246 255189 0.7100 +246 257202 0.9310 +246 260429 0.5020 +246 283748 0.7200 +246 284541 0.9050 +246 391013 0.6800 +246 493869 0.9290 +246 100137049 0.7440 +247 1555 0.9040 +247 1557 0.9060 +247 1558 0.9080 +247 1559 0.9070 +247 1571 0.9060 +247 1573 0.9180 +247 1579 0.9180 +247 2182 0.4470 +247 2877 0.9150 +247 2878 0.9210 +247 2879 0.4340 +247 2880 0.9170 +247 2882 0.9130 +247 4015 0.8260 +247 4048 0.4460 +247 4051 0.9200 +247 4973 0.4190 +247 5037 0.6860 +247 5319 0.6640 +247 5320 0.7470 +247 5321 0.7720 +247 5322 0.6760 +247 5468 0.5230 +247 5742 0.9390 +247 5743 0.9410 +247 8398 0.7310 +247 8399 0.6780 +247 8529 0.9140 +247 8605 0.7160 +247 8681 0.7020 +247 10162 0.4180 +247 11145 0.6660 +247 11283 0.9340 +247 26279 0.6580 +247 27097 0.4190 +247 30814 0.6720 +247 50487 0.6550 +247 64600 0.7160 +247 81579 0.6560 +247 84647 0.7510 +247 113612 0.9040 +247 123745 0.6860 +247 151056 0.6540 +247 255189 0.7060 +247 257202 0.9170 +247 283748 0.6840 +247 284541 0.9100 +247 391013 0.6500 +247 493869 0.9120 +247 100137049 0.7480 +248 249 0.4430 +248 250 0.6380 +248 251 0.7730 +248 290 0.4390 +248 419 0.4060 +248 683 0.4070 +248 1048 0.4790 +248 1087 0.4590 +248 1144 0.7810 +248 1285 0.6940 +248 2169 0.4730 +248 2678 0.5540 +248 2686 0.6560 +248 2687 0.5940 +248 2805 0.5760 +248 2806 0.5190 +248 2813 0.4260 +248 2821 0.5850 +248 2875 0.4650 +248 2980 0.4840 +248 3082 0.4140 +248 3623 0.7800 +248 3630 0.4130 +248 3948 0.4610 +248 4045 0.4270 +248 4061 0.4030 +248 4241 0.4210 +248 4978 0.4150 +248 5077 0.6700 +248 5081 0.5660 +248 5464 0.4550 +248 5805 0.9010 +248 6470 0.4320 +248 6472 0.4280 +248 6476 0.6080 +248 7007 0.4080 +248 7070 0.4610 +248 7512 0.5010 +248 8000 0.4530 +248 8549 0.4010 +248 8581 0.4050 +248 8875 0.4050 +248 8876 0.4080 +248 9520 0.4270 +248 10232 0.4140 +248 10942 0.4400 +248 11181 0.4700 +248 22854 0.4030 +248 25961 0.4150 +248 27010 0.9060 +248 27068 0.4120 +248 29968 0.6330 +248 50863 0.4260 +248 54474 0.4040 +248 56667 0.4170 +248 65220 0.5990 +248 80328 0.4030 +248 83594 0.4470 +248 84284 0.9020 +248 84628 0.4010 +248 92483 0.5140 +248 124975 0.6730 +248 137362 0.6590 +248 137797 0.4450 +248 146760 0.4030 +248 147719 0.4040 +248 160287 0.5110 +248 171169 0.4230 +248 257194 0.4270 +248 266727 0.4080 +248 349667 0.4050 +248 360226 0.4070 +248 503542 0.4080 +248 646627 0.4420 +248 100506658 0.4150 +249 251 0.4360 +249 308 0.4580 +249 348 0.4950 +249 368 0.5170 +249 419 0.4060 +249 632 0.9000 +249 650 0.7570 +249 652 0.5090 +249 683 0.4180 +249 687 0.4040 +249 860 0.8910 +249 953 0.4160 +249 1043 0.4090 +249 1087 0.4430 +249 1118 0.5740 +249 1277 0.8260 +249 1278 0.5590 +249 1280 0.6190 +249 1300 0.6440 +249 1368 0.4350 +249 1381 0.4300 +249 1499 0.4440 +249 1513 0.4850 +249 1734 0.4570 +249 1735 0.4280 +249 1749 0.4910 +249 1758 0.5720 +249 1834 0.4060 +249 1915 0.5990 +249 2022 0.4300 +249 2247 0.4060 +249 2268 0.4840 +249 2289 0.4260 +249 2350 0.4260 +249 2517 0.7030 +249 2597 0.5280 +249 2629 0.4090 +249 2678 0.4900 +249 2686 0.5910 +249 2687 0.5270 +249 2805 0.5140 +249 2806 0.4220 +249 2813 0.4090 +249 2822 0.7740 +249 3381 0.8260 +249 4045 0.4270 +249 4061 0.4210 +249 4069 0.5820 +249 4151 0.4110 +249 4241 0.4210 +249 4256 0.5970 +249 4322 0.4800 +249 4488 0.5230 +249 4860 0.4170 +249 4900 0.4310 +249 4907 0.7070 +249 4978 0.4150 +249 4982 0.6090 +249 5167 0.8700 +249 5169 0.5190 +249 5236 0.5070 +249 5251 0.6830 +249 5468 0.4640 +249 5595 0.5160 +249 5741 0.5720 +249 5745 0.5270 +249 5805 0.9020 +249 6470 0.4500 +249 6472 0.4280 +249 6513 0.6530 +249 6548 0.4710 +249 6567 0.4780 +249 6569 0.4330 +249 6574 0.5300 +249 6575 0.4800 +249 6662 0.5830 +249 6678 0.5430 +249 6696 0.7210 +249 7007 0.4190 +249 7070 0.6950 +249 7187 0.5970 +249 7512 0.4640 +249 7779 0.5230 +249 8000 0.4450 +249 8074 0.5870 +249 8600 0.5940 +249 8875 0.4310 +249 8876 0.4420 +249 9365 0.4610 +249 9370 0.5750 +249 9429 0.4240 +249 9495 0.4260 +249 9789 0.7870 +249 10232 0.4170 +249 10491 0.4010 +249 10631 0.4320 +249 10942 0.4070 +249 22854 0.4150 +249 22943 0.4410 +249 23428 0.5740 +249 25961 0.4150 +249 27010 0.9010 +249 29968 0.6260 +249 50863 0.4300 +249 50964 0.6410 +249 54210 0.4060 +249 55163 0.4110 +249 55276 0.4680 +249 55512 0.5160 +249 55676 0.8850 +249 56172 0.7130 +249 56955 0.6740 +249 57126 0.5060 +249 57486 0.4100 +249 63978 0.4390 +249 64386 0.4350 +249 64924 0.8560 +249 65220 0.6160 +249 83594 0.4470 +249 84224 0.8860 +249 84284 0.9050 +249 84628 0.4210 +249 90701 0.7960 +249 92483 0.4360 +249 121340 0.7840 +249 124975 0.5920 +249 130576 0.4220 +249 135228 0.6530 +249 137362 0.5970 +249 137797 0.4450 +249 142680 0.4440 +249 146183 0.4010 +249 146760 0.4040 +249 148867 0.8860 +249 160287 0.4360 +249 162466 0.8360 +249 171017 0.4450 +249 221035 0.7630 +249 221037 0.5380 +249 257194 0.4270 +249 266727 0.4110 +249 338328 0.4050 +249 349667 0.4020 +249 360226 0.4070 +249 387733 0.5410 +249 646627 0.4120 +250 251 0.7910 +250 326 0.4080 +250 794 0.4470 +250 943 0.5810 +250 1048 0.5700 +250 1113 0.4030 +250 1144 0.6940 +250 1285 0.6000 +250 1442 0.5860 +250 1443 0.5740 +250 2026 0.4460 +250 2308 0.4140 +250 2678 0.5520 +250 2686 0.6510 +250 2687 0.5890 +250 2805 0.5770 +250 2806 0.4560 +250 2821 0.5940 +250 2875 0.4330 +250 3309 0.4660 +250 3458 0.4440 +250 3553 0.4620 +250 3623 0.6880 +250 3815 0.5770 +250 3816 0.4410 +250 3817 0.4300 +250 3855 0.5230 +250 3948 0.4690 +250 4225 0.4330 +250 4267 0.4330 +250 5046 0.6090 +250 5077 0.7740 +250 5081 0.5400 +250 5669 0.4790 +250 5670 0.4870 +250 5671 0.4920 +250 5672 0.4730 +250 5673 0.4040 +250 5675 0.5120 +250 5676 0.5060 +250 5678 0.4880 +250 5680 0.5190 +250 5805 0.9020 +250 6470 0.4280 +250 6472 0.4280 +250 6855 0.4480 +250 7766 0.4850 +250 8720 0.5090 +250 9321 0.7150 +250 9520 0.4260 +250 10026 0.6470 +250 10677 0.6710 +250 25862 0.7720 +250 25961 0.4150 +250 27010 0.9020 +250 29968 0.6260 +250 51752 0.5400 +250 54474 0.4610 +250 57167 0.5120 +250 64167 0.4220 +250 65220 0.5990 +250 83594 0.4470 +250 84284 0.9020 +250 84839 0.4350 +250 92483 0.5150 +250 124975 0.6640 +250 126205 0.4080 +250 137362 0.6570 +250 160287 0.5130 +250 317781 0.4340 +250 440533 0.4810 +251 419 0.4060 +251 683 0.4060 +251 1048 0.4270 +251 1087 0.4450 +251 1152 0.4140 +251 1158 0.4090 +251 1159 0.4460 +251 1160 0.4450 +251 2678 0.6550 +251 2686 0.7660 +251 2687 0.6990 +251 2805 0.6730 +251 2806 0.5460 +251 2813 0.4090 +251 2821 0.5870 +251 2822 0.4260 +251 2875 0.5020 +251 3948 0.5800 +251 4045 0.4270 +251 4061 0.4050 +251 4062 0.4090 +251 4241 0.4210 +251 4860 0.4300 +251 4978 0.4150 +251 5464 0.4090 +251 5805 0.9000 +251 6470 0.4280 +251 6472 0.4280 +251 7007 0.4080 +251 7070 0.4760 +251 7512 0.4770 +251 8000 0.4730 +251 8581 0.4140 +251 8875 0.4050 +251 8876 0.4050 +251 9002 0.5950 +251 9520 0.5270 +251 10232 0.4860 +251 10942 0.4110 +251 22854 0.4030 +251 25961 0.4150 +251 27010 0.9000 +251 27076 0.4090 +251 29968 0.6260 +251 50863 0.4150 +251 51056 0.4140 +251 54617 0.5120 +251 57491 0.4470 +251 58530 0.4010 +251 64005 0.4450 +251 65220 0.5990 +251 80328 0.4050 +251 80740 0.4010 +251 83594 0.4470 +251 83639 0.5570 +251 84284 0.9070 +251 84319 0.4760 +251 84628 0.4080 +251 92483 0.6270 +251 124975 0.7750 +251 135228 0.4230 +251 137362 0.7400 +251 137797 0.4450 +251 146760 0.4050 +251 160287 0.6220 +251 171169 0.4200 +251 257194 0.4270 +251 266727 0.4160 +251 338328 0.4040 +251 349667 0.4130 +251 360226 0.4070 +251 503542 0.4130 +251 548596 0.4820 +251 643136 0.5710 +251 646627 0.4160 +257 653 0.4600 +257 3815 0.4040 +257 4009 0.6400 +257 4286 0.4400 +257 5075 0.4260 +257 5080 0.5310 +257 5087 0.4160 +257 5089 0.4430 +257 5184 0.5450 +257 6913 0.5660 +257 8266 0.4360 +257 9496 0.4990 +257 10736 0.4220 +257 30813 0.4330 +257 51154 0.8270 +257 56154 0.6500 +257 64783 0.7280 +257 89884 0.4040 +257 145282 0.4550 +257 147949 0.4200 +257 164153 0.8280 +257 388662 0.8410 +258 265 0.9840 +258 266 0.6880 +258 395 0.4860 +258 632 0.4350 +258 633 0.4560 +258 651 0.7810 +258 652 0.4390 +258 696 0.4190 +258 860 0.4910 +258 967 0.5360 +258 968 0.4040 +258 1277 0.4590 +258 1302 0.4670 +258 1308 0.4510 +258 1747 0.5410 +258 1758 0.6600 +258 1834 0.8420 +258 2266 0.4100 +258 3381 0.8190 +258 3694 0.4030 +258 3861 0.5570 +258 3909 0.4950 +258 3910 0.4380 +258 3914 0.4870 +258 4488 0.5120 +258 5222 0.4210 +258 6696 0.6990 +258 7286 0.9920 +258 8111 0.4260 +258 8404 0.5850 +258 9131 0.4030 +258 9313 0.8920 +258 9622 0.8270 +258 10117 0.9990 +258 23705 0.4160 +258 24144 0.6730 +258 54757 0.8250 +258 54959 0.7810 +258 56955 0.6040 +258 56975 0.8290 +258 64386 0.6710 +258 80320 0.4040 +258 84957 0.4210 +258 93650 0.6740 +258 123041 0.5910 +258 152816 0.7240 +258 169044 0.4470 +258 221914 0.4200 +258 256764 0.7130 +258 286077 0.7050 +258 401138 0.9920 +258 440603 0.4480 +258 752014 0.4440 +259 319 0.4870 +259 325 0.5430 +259 335 0.8910 +259 336 0.8990 +259 337 0.4640 +259 338 0.6610 +259 341 0.4560 +259 344 0.4030 +259 345 0.8560 +259 346 0.4380 +259 347 0.4150 +259 348 0.5320 +259 350 0.9420 +259 351 0.4890 +259 462 0.9360 +259 563 0.5860 +259 567 0.9150 +259 629 0.4720 +259 718 0.4340 +259 727 0.4800 +259 731 0.4880 +259 733 0.4810 +259 735 0.6500 +259 866 0.5030 +259 911 0.4180 +259 920 0.6240 +259 925 0.5810 +259 930 0.6900 +259 939 0.4740 +259 940 0.4060 +259 945 0.6100 +259 947 0.6110 +259 952 0.5480 +259 960 0.4450 +259 969 0.4600 +259 973 0.5930 +259 1088 0.5440 +259 1184 0.5450 +259 1191 0.4310 +259 1236 0.4320 +259 1356 0.6660 +259 1361 0.6150 +259 1373 0.4130 +259 1401 0.5240 +259 1471 0.7390 +259 1472 0.4210 +259 1504 0.4180 +259 1508 0.5520 +259 1675 0.5600 +259 1950 0.4120 +259 1991 0.4410 +259 2022 0.4470 +259 2147 0.9790 +259 2158 0.4580 +259 2160 0.5340 +259 2168 0.6770 +259 2235 0.4080 +259 2243 0.9450 +259 2244 0.9310 +259 2266 0.8760 +259 2267 0.5510 +259 2335 0.6590 +259 2495 0.4150 +259 2512 0.4140 +259 2526 0.4470 +259 2638 0.9170 +259 2878 0.4420 +259 2993 0.5500 +259 3002 0.5040 +259 3003 0.4120 +259 3026 0.5230 +259 3053 0.6860 +259 3081 0.4160 +259 3083 0.4220 +259 3183 0.8300 +259 3240 0.7280 +259 3242 0.4330 +259 3250 0.5710 +259 3263 0.9160 +259 3273 0.5060 +259 3426 0.5480 +259 3458 0.4410 +259 3484 0.5290 +259 3563 0.4850 +259 3575 0.4790 +259 3684 0.5070 +259 3687 0.4800 +259 3697 0.9510 +259 3698 0.9700 +259 3699 0.9310 +259 3700 0.6530 +259 3782 0.5940 +259 3816 0.5790 +259 3818 0.5720 +259 3827 0.6220 +259 4018 0.7570 +259 4036 0.6950 +259 4072 0.4910 +259 4102 0.4280 +259 4143 0.4860 +259 4151 0.5840 +259 4153 0.4290 +259 4684 0.6540 +259 4907 0.4590 +259 5004 0.9220 +259 5005 0.8930 +259 5047 0.8630 +259 5053 0.5360 +259 5079 0.4200 +259 5104 0.5400 +259 5175 0.5230 +259 5265 0.7160 +259 5267 0.6190 +259 5340 0.8110 +259 5345 0.6790 +259 5624 0.6820 +259 5644 0.7090 +259 5645 0.7180 +259 5646 0.6350 +259 5652 0.4940 +259 5657 0.4070 +259 5788 0.7900 +259 5806 0.5250 +259 5950 0.6330 +259 6402 0.4030 +259 6490 0.5530 +259 6694 0.4750 +259 6696 0.5730 +259 6906 0.6700 +259 7018 0.6230 +259 7033 0.5450 +259 7070 0.5140 +259 7124 0.4110 +259 7130 0.6770 +259 7276 0.6600 +259 7345 0.4800 +259 7365 0.4020 +259 7369 0.7110 +259 7416 0.4630 +259 7448 0.7370 +259 8029 0.7040 +259 9104 0.4860 +259 9332 0.4250 +259 9436 0.4470 +259 10004 0.6680 +259 10724 0.7280 +259 10747 0.4700 +259 10755 0.4950 +259 11012 0.4580 +259 11202 0.4460 +259 26085 0.4390 +259 27257 0.5950 +259 28982 0.4270 +259 43847 0.4430 +259 43849 0.4430 +259 50943 0.4360 +259 51156 0.5060 +259 55554 0.4440 +259 55937 0.6890 +259 57211 0.5490 +259 80153 0.6880 +259 84684 0.5070 +259 84868 0.4080 +259 136991 0.6750 +259 167227 0.7230 +259 256394 0.4410 +259 340595 0.5140 +259 390714 0.5320 +259 440387 0.4130 +265 293 0.5970 +265 357 0.6500 +265 395 0.5900 +265 412 0.5270 +265 416 0.4760 +265 438 0.6790 +265 968 0.4140 +265 1101 0.6860 +265 1183 0.7090 +265 1308 0.4170 +265 1418 0.4110 +265 1420 0.4370 +265 1421 0.4180 +265 1442 0.4130 +265 1443 0.4190 +265 1444 0.4130 +265 1617 0.5060 +265 1747 0.5420 +265 1758 0.5260 +265 1834 0.6800 +265 2058 0.5860 +265 2243 0.6110 +265 2688 0.4080 +265 2689 0.4120 +265 2691 0.7060 +265 3381 0.4160 +265 3909 0.4110 +265 3914 0.4940 +265 4267 0.5290 +265 4281 0.6380 +265 4887 0.6980 +265 4935 0.4830 +265 5251 0.4050 +265 5613 0.8470 +265 5940 0.4810 +265 5961 0.6960 +265 6192 0.5170 +265 6736 0.6510 +265 7038 0.6830 +265 7258 0.9490 +265 7286 0.9080 +265 7404 0.5970 +265 7543 0.6030 +265 7544 0.7360 +265 8111 0.4490 +265 8284 0.4920 +265 8287 0.5920 +265 8623 0.4470 +265 8653 0.5710 +265 8671 0.4400 +265 9083 0.4470 +265 9084 0.5120 +265 9085 0.4410 +265 9086 0.4760 +265 9087 0.4480 +265 9131 0.4240 +265 9313 0.8340 +265 9622 0.7700 +265 9650 0.6800 +265 10002 0.5340 +265 10117 0.9840 +265 10136 0.6160 +265 22829 0.4850 +265 23436 0.6130 +265 23705 0.4070 +265 24144 0.5740 +265 26254 0.6150 +265 27328 0.8130 +265 54413 0.4140 +265 54757 0.7540 +265 54959 0.6950 +265 56955 0.4990 +265 56975 0.7090 +265 57502 0.4170 +265 58505 0.7190 +265 64061 0.4510 +265 64386 0.6640 +265 83259 0.9120 +265 86614 0.4460 +265 90655 0.4700 +265 90665 0.8960 +265 93650 0.5610 +265 123041 0.5760 +265 140683 0.7010 +265 152816 0.7200 +265 197021 0.4040 +265 256764 0.7530 +265 286077 0.8150 +265 353513 0.5050 +265 401138 0.9330 +265 440603 0.4700 +265 442867 0.4450 +265 442868 0.4450 +266 395 0.4540 +266 1101 0.6860 +266 1418 0.4020 +266 1419 0.4110 +266 1420 0.4180 +266 1421 0.4020 +266 1442 0.4150 +266 1443 0.4160 +266 1444 0.4360 +266 1617 0.5430 +266 1758 0.4420 +266 2243 0.4450 +266 2688 0.4110 +266 2689 0.4190 +266 2691 0.6910 +266 4887 0.6850 +266 5613 0.8190 +266 5940 0.5330 +266 5961 0.6960 +266 6192 0.6410 +266 6736 0.8430 +266 7038 0.6830 +266 7258 0.9700 +266 7404 0.7090 +266 7543 0.4890 +266 7544 0.8220 +266 8284 0.6150 +266 8287 0.7190 +266 8623 0.4150 +266 8653 0.6100 +266 9081 0.4390 +266 9083 0.5880 +266 9084 0.5880 +266 9085 0.4880 +266 9086 0.6710 +266 9087 0.7860 +266 9313 0.5350 +266 9622 0.4720 +266 9650 0.6800 +266 10002 0.5220 +266 10117 0.7990 +266 10136 0.6060 +266 22829 0.6340 +266 23436 0.6310 +266 26254 0.6090 +266 27328 0.8520 +266 54959 0.4380 +266 58505 0.7640 +266 64591 0.4180 +266 83259 0.9410 +266 86614 0.5220 +266 90655 0.5580 +266 90665 0.9430 +266 140032 0.5850 +266 140683 0.6980 +266 286077 0.4110 +266 353513 0.5820 +266 378948 0.4440 +266 378950 0.4470 +266 401138 0.4400 +266 442862 0.4350 +266 442867 0.5770 +266 442868 0.5770 +266 728395 0.4810 +266 728403 0.4740 +267 338 0.5650 +267 550 0.7120 +267 821 0.6850 +267 867 0.5010 +267 915 0.7760 +267 997 0.4530 +267 1080 0.7340 +267 1499 0.4070 +267 1576 0.7820 +267 2081 0.5200 +267 2086 0.4030 +267 2169 0.5500 +267 2821 0.9930 +267 3064 0.6840 +267 3093 0.6780 +267 3156 0.9530 +267 3305 0.4620 +267 3308 0.6250 +267 3309 0.8950 +267 3638 0.9990 +267 3708 0.4600 +267 3732 0.8190 +267 4287 0.7830 +267 5476 0.4710 +267 5494 0.4750 +267 5621 0.4340 +267 5700 0.8050 +267 5708 0.5140 +267 5887 0.9140 +267 5911 0.4290 +267 6047 0.4430 +267 6048 0.9630 +267 6233 0.9700 +267 6400 0.9780 +267 6449 0.5680 +267 6477 0.4110 +267 6647 0.4450 +267 6721 0.4370 +267 6909 0.4220 +267 7095 0.4030 +267 7184 0.5380 +267 7295 0.4120 +267 7311 0.9390 +267 7314 0.9530 +267 7316 0.9960 +267 7321 0.7750 +267 7322 0.7990 +267 7323 0.4920 +267 7326 0.9420 +267 7327 0.9990 +267 7334 0.4890 +267 7353 0.9200 +267 7415 0.9990 +267 7431 0.4080 +267 7494 0.4240 +267 7706 0.4670 +267 7844 0.5170 +267 7917 0.8550 +267 7993 0.5030 +267 8266 0.8310 +267 8788 0.4160 +267 8975 0.8450 +267 9058 0.4310 +267 9354 0.5110 +267 9527 0.4010 +267 9695 0.7840 +267 9709 0.8830 +267 9927 0.5740 +267 10273 0.5710 +267 10277 0.5490 +267 10299 0.9480 +267 10613 0.8920 +267 10956 0.9830 +267 11015 0.4320 +267 11124 0.7910 +267 11160 0.9680 +267 11236 0.8840 +267 22926 0.4270 +267 22937 0.5460 +267 22954 0.5500 +267 23111 0.4550 +267 23190 0.6690 +267 23197 0.9860 +267 23231 0.6710 +267 23241 0.5380 +267 23295 0.7520 +267 23304 0.4380 +267 25820 0.4980 +267 26043 0.7550 +267 27248 0.9350 +267 27338 0.4470 +267 29110 0.6640 +267 29800 0.5100 +267 29927 0.6810 +267 51009 0.9950 +267 51035 0.9380 +267 51085 0.5110 +267 51141 0.9490 +267 51257 0.4620 +267 51465 0.6260 +267 51608 0.7960 +267 51669 0.4320 +267 54431 0.4530 +267 54708 0.4830 +267 54788 0.4830 +267 55072 0.4240 +267 55176 0.4500 +267 55288 0.4180 +267 55432 0.6460 +267 55666 0.8450 +267 55669 0.4140 +267 55741 0.4760 +267 55757 0.5160 +267 55768 0.9320 +267 55829 0.9280 +267 55858 0.4230 +267 56886 0.6080 +267 57003 0.4460 +267 57154 0.4760 +267 57506 0.6260 +267 57574 0.4500 +267 65018 0.4120 +267 79029 0.5900 +267 79065 0.5910 +267 79102 0.5520 +267 79139 0.9990 +267 79594 0.6050 +267 79671 0.4630 +267 80233 0.4420 +267 80343 0.6730 +267 80700 0.4370 +267 81502 0.8170 +267 81790 0.5480 +267 81844 0.5900 +267 83590 0.7800 +267 84447 0.9210 +267 84649 0.4330 +267 91319 0.9030 +267 91445 0.7430 +267 92305 0.5210 +267 92552 0.5080 +267 118424 0.6520 +267 148066 0.4750 +267 165324 0.6000 +267 166378 0.5900 +267 197131 0.6040 +267 197358 0.4790 +267 221302 0.4180 +267 258010 0.8700 +267 285242 0.4140 +267 337867 0.9560 +267 405754 0.4010 +268 269 0.9990 +268 367 0.6260 +268 652 0.4440 +268 657 0.9560 +268 658 0.8910 +268 659 0.8850 +268 668 0.8040 +268 672 0.5680 +268 675 0.4730 +268 960 0.4570 +268 1442 0.4510 +268 1443 0.4440 +268 1583 0.7800 +268 1584 0.4720 +268 1585 0.4270 +268 1586 0.7050 +268 1588 0.8530 +268 1618 0.5500 +268 1675 0.4250 +268 1761 0.8470 +268 2022 0.4300 +268 2099 0.5560 +268 2100 0.5190 +268 2254 0.4510 +268 2309 0.4060 +268 2332 0.5140 +268 2488 0.7290 +268 2492 0.8820 +268 2516 0.9480 +268 2626 0.8640 +268 2627 0.5230 +268 2661 0.8180 +268 2689 0.4590 +268 2796 0.9180 +268 2798 0.6100 +268 3283 0.6580 +268 3284 0.5080 +268 3292 0.4950 +268 3293 0.5770 +268 3479 0.7020 +268 3481 0.5560 +268 3623 0.6050 +268 3625 0.5060 +268 3630 0.6540 +268 3640 0.8770 +268 3643 0.4300 +268 3814 0.5840 +268 3952 0.6200 +268 3956 0.4400 +268 3973 0.7220 +268 4087 0.4390 +268 4089 0.4150 +268 4090 0.4610 +268 4091 0.4120 +268 4093 0.4340 +268 4146 0.4220 +268 4214 0.4250 +268 4254 0.5200 +268 4282 0.4700 +268 4681 0.9100 +268 5010 0.4340 +268 5046 0.5090 +268 5087 0.4180 +268 5125 0.4250 +268 5241 0.4140 +268 5443 0.4550 +268 5460 0.4400 +268 5593 0.4490 +268 5617 0.7170 +268 6462 0.7920 +268 6578 0.5910 +268 6604 0.4010 +268 6658 0.4730 +268 6662 0.9200 +268 6716 0.4790 +268 6736 0.8550 +268 6770 0.7300 +268 6997 0.4050 +268 7046 0.4010 +268 7048 0.5850 +268 7049 0.4500 +268 7077 0.4100 +268 7200 0.4270 +268 7476 0.5520 +268 7490 0.8280 +268 7704 0.5450 +268 7783 0.4040 +268 7784 0.5770 +268 8175 0.8630 +268 8284 0.4250 +268 8646 0.9280 +268 9210 0.8110 +268 9241 0.9120 +268 9370 0.5850 +268 10468 0.5950 +268 10655 0.4150 +268 23414 0.6280 +268 26585 0.7120 +268 30812 0.5030 +268 50511 0.5160 +268 50846 0.6250 +268 51458 0.5230 +268 54361 0.6730 +268 54514 0.5930 +268 54760 0.5390 +268 54937 0.4060 +268 56729 0.4010 +268 56956 0.6830 +268 57706 0.5200 +268 63951 0.5380 +268 64388 0.6950 +268 84467 0.4960 +268 84634 0.4060 +268 135935 0.5990 +268 284654 0.5750 +268 339345 0.4650 +268 342977 0.4720 +268 344018 0.6480 +268 346673 0.5250 +268 392255 0.4060 +268 402381 0.4460 +268 431707 0.4270 +268 100526761 0.4020 +268 116033993 0.4450 +269 367 0.4300 +269 650 0.7460 +269 652 0.7750 +269 653 0.7370 +269 654 0.7750 +269 655 0.7710 +269 656 0.7300 +269 657 0.9250 +269 658 0.7960 +269 659 0.9160 +269 668 0.6810 +269 1499 0.4280 +269 1501 0.5080 +269 1583 0.5310 +269 1586 0.5320 +269 1588 0.6110 +269 1761 0.5970 +269 2022 0.5030 +269 2488 0.4390 +269 2492 0.7610 +269 2516 0.7320 +269 2626 0.5440 +269 2661 0.6800 +269 2796 0.4180 +269 3283 0.4450 +269 3292 0.4210 +269 3293 0.4220 +269 3623 0.4520 +269 3624 0.4380 +269 3625 0.4810 +269 3626 0.4580 +269 3640 0.4610 +269 3952 0.4510 +269 3973 0.7000 +269 4087 0.4170 +269 4089 0.5760 +269 4090 0.4610 +269 4093 0.4100 +269 5016 0.4370 +269 5156 0.4630 +269 5241 0.4040 +269 5728 0.4800 +269 6009 0.4190 +269 6195 0.4800 +269 6356 0.4160 +269 6658 0.4790 +269 6662 0.6220 +269 6667 0.4200 +269 6716 0.4770 +269 6736 0.6910 +269 7046 0.7790 +269 7332 0.4170 +269 7476 0.4690 +269 7490 0.4640 +269 8200 0.7640 +269 8284 0.5130 +269 9210 0.6530 +269 10424 0.4180 +269 10477 0.4890 +269 50846 0.4160 +269 54361 0.5620 +269 78996 0.7830 +269 83729 0.4240 +269 83853 0.4030 +269 84062 0.4800 +269 121268 0.4540 +269 130399 0.6340 +269 135935 0.4270 +269 151449 0.7390 +269 284654 0.4480 +269 343263 0.4080 +269 344018 0.4870 +269 353500 0.7040 +269 392255 0.7930 +270 271 0.9560 +270 272 0.9340 +270 353 0.9850 +270 445 0.5260 +270 471 0.9680 +270 844 0.6350 +270 845 0.5370 +270 953 0.9220 +270 955 0.9160 +270 956 0.9160 +270 957 0.9180 +270 1158 0.4790 +270 1376 0.4030 +270 1633 0.9480 +270 1719 0.4100 +270 1756 0.4880 +270 2053 0.8430 +270 2618 0.4830 +270 2766 0.9540 +270 2990 0.4480 +270 3251 0.9630 +270 3320 0.4120 +270 3326 0.4080 +270 3558 0.4360 +270 3614 0.9630 +270 3615 0.9660 +270 3704 0.9640 +270 3795 0.5860 +270 4151 0.6820 +270 4351 0.5020 +270 4507 0.5100 +270 4522 0.4490 +270 4524 0.4660 +270 4604 0.4510 +270 4606 0.4900 +270 4618 0.4870 +270 4625 0.4040 +270 4629 0.4280 +270 4632 0.4630 +270 4633 0.4180 +270 4860 0.8220 +270 4893 0.4130 +270 4907 0.8700 +270 5136 0.6970 +270 5137 0.6940 +270 5138 0.7020 +270 5139 0.6620 +270 5140 0.6640 +270 5141 0.6830 +270 5142 0.6840 +270 5143 0.6620 +270 5144 0.6690 +270 5150 0.6810 +270 5151 0.6740 +270 5153 0.7030 +270 5167 0.9230 +270 5169 0.9240 +270 5213 0.4040 +270 5214 0.5510 +270 5224 0.5270 +270 5471 0.4980 +270 5816 0.4390 +270 5837 0.6240 +270 6261 0.4080 +270 6566 0.4280 +270 7125 0.4560 +270 7136 0.4510 +270 7140 0.4680 +270 7273 0.4030 +270 7298 0.5100 +270 7378 0.4020 +270 7498 0.4720 +270 7812 0.4030 +270 8622 0.6590 +270 8833 0.6950 +270 9499 0.5290 +270 9563 0.4250 +270 9583 0.9140 +270 9615 0.5970 +270 10606 0.4100 +270 10846 0.6770 +270 10930 0.4740 +270 22978 0.7970 +270 23676 0.4460 +270 26289 0.7190 +270 27115 0.6620 +270 29895 0.5130 +270 29968 0.4170 +270 30833 0.8360 +270 50808 0.9110 +270 50940 0.6790 +270 51251 0.7220 +270 51292 0.4010 +270 51816 0.4200 +270 56952 0.4480 +270 56953 0.7940 +270 57467 0.4070 +270 58529 0.7230 +270 64080 0.5580 +270 79814 0.5030 +270 84618 0.8590 +270 84912 0.7910 +270 93034 0.7450 +270 115024 0.6770 +270 122481 0.7210 +270 122622 0.9620 +270 124583 0.9150 +270 131870 0.9100 +270 142689 0.4630 +270 151531 0.4400 +270 154141 0.4300 +270 158067 0.7170 +270 163259 0.5560 +270 221264 0.6880 +270 338599 0.4840 +270 377841 0.9190 +270 100526794 0.7470 +270 102157402 0.6500 +271 272 0.9210 +271 353 0.9860 +271 445 0.5430 +271 471 0.9510 +271 953 0.9320 +271 955 0.9180 +271 956 0.9220 +271 957 0.9140 +271 1633 0.9500 +271 2053 0.8430 +271 2618 0.4210 +271 2766 0.9560 +271 2773 0.7310 +271 2990 0.5030 +271 3251 0.9640 +271 3558 0.4370 +271 3614 0.9680 +271 3615 0.9660 +271 3704 0.9340 +271 3795 0.6300 +271 4351 0.5320 +271 4507 0.5170 +271 4860 0.8360 +271 4907 0.8850 +271 5136 0.7100 +271 5137 0.7000 +271 5138 0.7410 +271 5139 0.6680 +271 5140 0.6700 +271 5141 0.7370 +271 5142 0.7020 +271 5143 0.6680 +271 5144 0.6870 +271 5150 0.6840 +271 5151 0.6790 +271 5153 0.7110 +271 5167 0.9250 +271 5169 0.9210 +271 5214 0.4930 +271 5471 0.4830 +271 6253 0.4100 +271 6518 0.4430 +271 7378 0.4120 +271 7498 0.4840 +271 8622 0.6610 +271 8833 0.7220 +271 9563 0.4030 +271 9583 0.9110 +271 9615 0.5990 +271 9897 0.4180 +271 10717 0.4060 +271 10846 0.7070 +271 10908 0.4160 +271 22978 0.8570 +271 26289 0.7360 +271 27115 0.7080 +271 29968 0.4670 +271 30833 0.8320 +271 50808 0.9150 +271 50940 0.7060 +271 51020 0.4570 +271 51251 0.6880 +271 51816 0.4960 +271 55195 0.5450 +271 56952 0.4480 +271 56953 0.7810 +271 57704 0.4400 +271 64080 0.5670 +271 79574 0.4010 +271 79814 0.5090 +271 80821 0.4120 +271 84618 0.8000 +271 84912 0.8210 +271 91574 0.4400 +271 92154 0.4120 +271 93034 0.7170 +271 113612 0.4150 +271 115024 0.6860 +271 122481 0.7070 +271 122622 0.9540 +271 124583 0.9170 +271 131870 0.9130 +271 151531 0.5050 +271 154141 0.4300 +271 158067 0.7240 +271 221264 0.6910 +271 283989 0.4870 +271 337966 0.4290 +271 377841 0.9180 +271 100526794 0.7200 +271 102157402 0.6560 +272 353 0.9860 +272 445 0.5360 +272 471 0.9470 +272 953 0.9260 +272 955 0.9060 +272 956 0.9170 +272 957 0.9250 +272 1633 0.9260 +272 2053 0.8430 +272 2618 0.4620 +272 2766 0.9580 +272 2990 0.5100 +272 3251 0.9630 +272 3558 0.4300 +272 3614 0.9650 +272 3615 0.9660 +272 3704 0.9340 +272 3795 0.5890 +272 4351 0.5400 +272 4507 0.5150 +272 4860 0.8410 +272 4907 0.8820 +272 5136 0.7000 +272 5137 0.7000 +272 5138 0.7370 +272 5139 0.6930 +272 5140 0.8160 +272 5141 0.6840 +272 5142 0.7170 +272 5143 0.6620 +272 5144 0.6810 +272 5150 0.7030 +272 5151 0.6800 +272 5153 0.7800 +272 5167 0.9230 +272 5169 0.9190 +272 5471 0.5280 +272 7378 0.4130 +272 7498 0.4840 +272 8622 0.7110 +272 8833 0.7180 +272 9563 0.4190 +272 9583 0.9250 +272 9615 0.6070 +272 10606 0.4160 +272 10846 0.7600 +272 22978 0.8060 +272 26289 0.7360 +272 27115 0.6890 +272 30833 0.8450 +272 50808 0.9110 +272 50940 0.7060 +272 51251 0.7930 +272 51816 0.4840 +272 56952 0.4480 +272 56953 0.8080 +272 64080 0.5310 +272 84618 0.7990 +272 84912 0.8210 +272 93034 0.7710 +272 115024 0.6950 +272 122481 0.7120 +272 122622 0.9570 +272 124583 0.9150 +272 131870 0.9110 +272 151531 0.4080 +272 154141 0.4300 +272 158067 0.7310 +272 167359 0.4190 +272 221264 0.7050 +272 377841 0.9210 +272 100526794 0.7720 +272 102157402 0.6550 +273 274 0.9840 +273 287 0.4600 +273 288 0.4340 +273 382 0.5220 +273 808 0.4090 +273 969 0.4120 +273 1020 0.6140 +273 1072 0.5840 +273 1073 0.5880 +273 1123 0.4860 +273 1173 0.6320 +273 1175 0.8170 +273 1211 0.6500 +273 1212 0.6280 +273 1487 0.4320 +273 1514 0.4770 +273 1627 0.4970 +273 1742 0.5190 +273 1759 0.9960 +273 1785 0.9920 +273 1804 0.7380 +273 1996 0.5060 +273 2017 0.6870 +273 2060 0.8890 +273 2242 0.7960 +273 2550 0.5020 +273 2572 0.8740 +273 2580 0.4530 +273 2741 0.6680 +273 2743 0.6690 +273 2885 0.9190 +273 2890 0.4280 +273 2891 0.6680 +273 2902 0.4130 +273 2911 0.5800 +273 2915 0.5560 +273 3059 0.6880 +273 4137 0.4780 +273 4340 0.5350 +273 4609 0.5100 +273 4952 0.6900 +273 5217 0.5020 +273 5286 0.5560 +273 5338 0.4180 +273 5341 0.6090 +273 5868 0.5990 +273 5957 0.8290 +273 5962 0.4100 +273 6249 0.5110 +273 6453 0.9290 +273 6455 0.6550 +273 6456 0.9300 +273 6457 0.6680 +273 6620 0.5410 +273 6642 0.7700 +273 6643 0.7410 +273 6656 0.7360 +273 6714 0.7080 +273 6770 0.4160 +273 6844 0.4580 +273 6853 0.6500 +273 6854 0.4500 +273 6855 0.4560 +273 6857 0.5390 +273 7037 0.5550 +273 7074 0.4260 +273 7173 0.4180 +273 7273 0.5940 +273 7409 0.4270 +273 7454 0.8860 +273 7456 0.4940 +273 8218 0.9280 +273 8411 0.5050 +273 8522 0.4950 +273 8723 0.5540 +273 8724 0.6030 +273 8766 0.4400 +273 8851 0.5580 +273 8867 0.9970 +273 8871 0.9530 +273 8976 0.8880 +273 9026 0.4750 +273 9050 0.4440 +273 9211 0.8750 +273 9240 0.4940 +273 9322 0.8710 +273 9454 0.5030 +273 9463 0.6120 +273 9559 0.7380 +273 9685 0.6010 +273 9744 0.4270 +273 9784 0.5070 +273 9788 0.5100 +273 9829 0.6240 +273 9873 0.4590 +273 9892 0.8390 +273 9901 0.4830 +273 10044 0.4760 +273 10059 0.4120 +273 10097 0.4360 +273 10243 0.7110 +273 10458 0.6400 +273 10687 0.8960 +273 10938 0.5240 +273 11252 0.6130 +273 11345 0.4460 +273 22905 0.8860 +273 22906 0.5300 +273 23048 0.6970 +273 23092 0.7280 +273 23149 0.8300 +273 23154 0.4180 +273 23229 0.4020 +273 23268 0.7780 +273 23336 0.6490 +273 23380 0.4600 +273 23406 0.4090 +273 23647 0.5010 +273 23710 0.4360 +273 25977 0.6670 +273 26047 0.8050 +273 26052 0.7240 +273 26060 0.6320 +273 26289 0.4180 +273 26499 0.6140 +273 27131 0.6570 +273 27236 0.6040 +273 28988 0.5130 +273 29886 0.4580 +273 29924 0.5800 +273 29993 0.6210 +273 30845 0.4820 +273 30846 0.4460 +273 50618 0.9080 +273 50807 0.4020 +273 51100 0.4630 +273 51375 0.4160 +273 51429 0.8310 +273 51699 0.6770 +273 54848 0.6670 +273 54874 0.5840 +273 55040 0.8810 +273 55175 0.4230 +273 55333 0.6720 +273 55737 0.6100 +273 55971 0.4770 +273 56896 0.8880 +273 57628 0.7320 +273 58513 0.5300 +273 58533 0.6280 +273 64083 0.4020 +273 64419 0.4460 +273 79719 0.6930 +273 79745 0.4480 +273 80115 0.5350 +273 81609 0.5200 +273 83930 0.5600 +273 84107 0.8220 +273 84251 0.8000 +273 85021 0.4180 +273 85439 0.4530 +273 89848 0.5330 +273 92737 0.7910 +273 112574 0.5020 +273 112936 0.4820 +273 115548 0.8830 +273 133482 0.6080 +273 147179 0.6680 +273 254122 0.4880 +273 257364 0.4860 +273 402665 0.7260 +274 286 0.4060 +274 319 0.5400 +274 335 0.5800 +274 336 0.5400 +274 337 0.5400 +274 338 0.5520 +274 341 0.6810 +274 344 0.5710 +274 345 0.5400 +274 346 0.5580 +274 348 0.9080 +274 350 0.5780 +274 351 0.8340 +274 382 0.4900 +274 775 0.5310 +274 808 0.4350 +274 810 0.4050 +274 857 0.5050 +274 859 0.5760 +274 945 0.6850 +274 1020 0.4830 +274 1071 0.5690 +274 1072 0.5810 +274 1073 0.6140 +274 1180 0.5500 +274 1191 0.9550 +274 1211 0.6260 +274 1212 0.6370 +274 1379 0.4790 +274 1487 0.4030 +274 1499 0.4760 +274 1514 0.4080 +274 1622 0.5450 +274 1627 0.5140 +274 1716 0.5410 +274 1742 0.5080 +274 1759 0.9900 +274 1785 0.9920 +274 1804 0.6640 +274 1810 0.5400 +274 1829 0.4180 +274 1869 0.5680 +274 1996 0.4060 +274 2017 0.6730 +274 2041 0.7190 +274 2060 0.8560 +274 2185 0.5810 +274 2242 0.7750 +274 2309 0.5590 +274 2550 0.4280 +274 2572 0.8030 +274 2580 0.4520 +274 2741 0.5700 +274 2743 0.5500 +274 2872 0.4420 +274 2885 0.8990 +274 2890 0.5260 +274 2891 0.6220 +274 2911 0.4850 +274 2915 0.4610 +274 3059 0.6740 +274 3069 0.5710 +274 3123 0.4400 +274 3127 0.5740 +274 3250 0.5400 +274 3320 0.4970 +274 3416 0.5190 +274 3572 0.4180 +274 3620 0.6740 +274 3635 0.6580 +274 3675 0.5220 +274 3931 0.5400 +274 3949 0.5510 +274 3990 0.5420 +274 4018 0.5400 +274 4023 0.5450 +274 4084 0.5400 +274 4131 0.5180 +274 4137 0.9410 +274 4149 0.5830 +274 4154 0.5180 +274 4208 0.4920 +274 4218 0.6870 +274 4340 0.4460 +274 4481 0.5590 +274 4534 0.8340 +274 4609 0.9990 +274 4952 0.6030 +274 4983 0.6510 +274 5217 0.4690 +274 5286 0.5450 +274 5338 0.4120 +274 5341 0.5940 +274 5360 0.5500 +274 5444 0.5400 +274 5663 0.6110 +274 5664 0.6080 +274 5747 0.5970 +274 5868 0.5990 +274 5869 0.6280 +274 5957 0.7890 +274 6249 0.7790 +274 6261 0.5140 +274 6288 0.5400 +274 6289 0.5400 +274 6291 0.5400 +274 6426 0.4390 +274 6453 0.8910 +274 6455 0.6010 +274 6456 0.8550 +274 6457 0.5950 +274 6620 0.5230 +274 6622 0.4030 +274 6642 0.7250 +274 6643 0.6490 +274 6653 0.7980 +274 6654 0.4170 +274 6656 0.6660 +274 6714 0.7120 +274 6772 0.4010 +274 6844 0.4580 +274 6853 0.6100 +274 6857 0.4560 +274 6908 0.4070 +274 7008 0.5330 +274 7124 0.4890 +274 7273 0.6010 +274 7436 0.6040 +274 7454 0.8680 +274 7456 0.4800 +274 7518 0.5420 +274 7941 0.5710 +274 8218 0.9130 +274 8301 0.8920 +274 8411 0.5040 +274 8504 0.6040 +274 8522 0.4930 +274 8542 0.5400 +274 8678 0.4090 +274 8723 0.6460 +274 8724 0.5700 +274 8766 0.4370 +274 8867 0.9940 +274 8871 0.9390 +274 8976 0.9140 +274 9026 0.4550 +274 9050 0.4290 +274 9051 0.4100 +274 9096 0.5400 +274 9211 0.7940 +274 9322 0.8590 +274 9325 0.4480 +274 9454 0.5660 +274 9463 0.6650 +274 9559 0.7110 +274 9685 0.5560 +274 9744 0.4270 +274 9784 0.4840 +274 9788 0.4670 +274 9829 0.5610 +274 9873 0.4150 +274 9892 0.8120 +274 9901 0.4350 +274 10044 0.5180 +274 10059 0.4090 +274 10097 0.4150 +274 10150 0.4490 +274 10243 0.6210 +274 10347 0.8240 +274 10452 0.5070 +274 10458 0.6200 +274 10589 0.5460 +274 10658 0.6330 +274 10659 0.4860 +274 10687 0.8530 +274 10938 0.7080 +274 10979 0.6270 +274 11091 0.4150 +274 11252 0.5940 +274 11345 0.4270 +274 22848 0.5280 +274 22905 0.8530 +274 22906 0.4400 +274 23048 0.6760 +274 23092 0.6780 +274 23149 0.8050 +274 23224 0.4710 +274 23268 0.9180 +274 23301 0.5420 +274 23327 0.5490 +274 23380 0.4360 +274 23406 0.4560 +274 23607 0.7970 +274 23621 0.5140 +274 23646 0.5530 +274 23647 0.6780 +274 23710 0.4260 +274 25977 0.6210 +274 26047 0.7660 +274 26052 0.4750 +274 26060 0.6520 +274 26499 0.5960 +274 27131 0.6290 +274 27236 0.5480 +274 28988 0.5050 +274 29886 0.4360 +274 29924 0.5160 +274 29993 0.5780 +274 30011 0.6620 +274 30845 0.4950 +274 30846 0.4860 +274 30850 0.4580 +274 50618 0.8660 +274 50807 0.5220 +274 51100 0.7330 +274 51314 0.6320 +274 51338 0.6310 +274 51429 0.8370 +274 51449 0.5460 +274 51599 0.5430 +274 51699 0.6240 +274 51806 0.4040 +274 54209 0.6470 +274 54453 0.6070 +274 54848 0.6580 +274 54874 0.7520 +274 55040 0.8490 +274 55063 0.6730 +274 55175 0.4100 +274 55333 0.5560 +274 55737 0.5730 +274 55796 0.4150 +274 55829 0.5400 +274 55909 0.9410 +274 55911 0.5420 +274 55937 0.5400 +274 55971 0.4140 +274 56704 0.4470 +274 56896 0.8720 +274 56904 0.7030 +274 57091 0.7050 +274 57158 0.6830 +274 57628 0.6690 +274 57787 0.4590 +274 58513 0.4830 +274 58533 0.5800 +274 64231 0.7640 +274 64419 0.5020 +274 79135 0.5470 +274 79890 0.9990 +274 80115 0.4830 +274 81609 0.4770 +274 83661 0.5200 +274 83737 0.6680 +274 83930 0.4320 +274 84107 0.7290 +274 84251 0.6950 +274 85358 0.4180 +274 89848 0.4630 +274 92737 0.7060 +274 112574 0.4570 +274 112936 0.4320 +274 115548 0.8650 +274 116519 0.5590 +274 123041 0.6210 +274 125988 0.4070 +274 128866 0.4430 +274 132660 0.5400 +274 133482 0.7100 +274 147179 0.6090 +274 169355 0.5560 +274 245802 0.6240 +274 254102 0.4560 +274 254122 0.4680 +274 257364 0.4520 +274 286451 0.4150 +274 347273 0.4550 +274 402665 0.6710 +274 643680 0.7080 +274 100528017 0.5400 +275 435 0.4050 +275 471 0.9640 +275 635 0.5970 +275 1373 0.4160 +275 1431 0.4040 +275 1487 0.5090 +275 1488 0.5090 +275 1491 0.4500 +275 1610 0.6580 +275 1629 0.5050 +275 1719 0.9580 +275 1737 0.5150 +275 1738 0.9980 +275 1743 0.4680 +275 2356 0.6950 +275 2571 0.8230 +275 2572 0.8100 +275 2618 0.9610 +275 2639 0.4280 +275 2653 0.9990 +275 2731 0.9990 +275 2744 0.8090 +275 2746 0.8220 +275 2747 0.8200 +275 2752 0.8790 +275 2806 0.4680 +275 2936 0.4470 +275 3712 0.4460 +275 4143 0.4960 +275 4144 0.4020 +275 4485 0.4350 +275 4522 0.9650 +275 4524 0.9820 +275 4548 0.9660 +275 4608 0.9840 +275 4942 0.5890 +275 4948 0.9860 +275 4967 0.4780 +275 5096 0.4810 +275 5184 0.4090 +275 6470 0.9890 +275 6472 0.9890 +275 6821 0.4630 +275 7167 0.4160 +275 7296 0.4370 +275 7298 0.9750 +275 7511 0.4090 +275 7512 0.4140 +275 7915 0.4850 +275 8050 0.5170 +275 8528 0.6340 +275 8659 0.8700 +275 8801 0.5580 +275 8802 0.4200 +275 8803 0.5350 +275 9126 0.4350 +275 9380 0.7340 +275 10157 0.5140 +275 10587 0.4380 +275 10588 0.4300 +275 10797 0.9900 +275 10840 0.9390 +275 10841 0.9470 +275 10993 0.5220 +275 23464 0.7040 +275 23743 0.6060 +275 25902 0.9600 +275 26227 0.6700 +275 27165 0.8310 +275 29968 0.5220 +275 51015 0.4670 +275 51179 0.4730 +275 51268 0.7080 +275 54363 0.4590 +275 55526 0.4140 +275 55753 0.4210 +275 60491 0.4700 +275 63929 0.4090 +275 64902 0.4040 +275 79072 0.4090 +275 79693 0.4970 +275 79763 0.4670 +275 80347 0.4250 +275 81034 0.4450 +275 84276 0.7610 +275 113675 0.5690 +275 114112 0.4370 +275 123263 0.9530 +275 160428 0.9340 +275 200205 0.8020 +275 200895 0.9560 +275 441024 0.9900 +275 729020 0.5130 +275 730249 0.6500 +276 277 0.9990 +276 278 0.9030 +276 2632 0.6880 +276 3101 0.4120 +276 5009 0.4900 +276 5834 0.4780 +276 5836 0.4810 +276 5837 0.4790 +276 6714 0.4050 +276 7365 0.4330 +276 8226 0.5750 +276 10020 0.5320 +276 23552 0.4140 +276 80162 0.5660 +276 286451 0.5620 +277 278 0.9040 +277 280 0.9150 +277 362 0.5530 +277 590 0.6870 +277 671 0.7860 +277 765 0.4490 +277 1113 0.5160 +277 1118 0.4600 +277 1208 0.4460 +277 1401 0.5470 +277 1469 0.4390 +277 1472 0.7640 +277 1504 0.8410 +277 1636 0.5600 +277 1803 0.5790 +277 1805 0.4130 +277 2191 0.4110 +277 2538 0.4290 +277 2539 0.4750 +277 2548 0.9430 +277 2595 0.9000 +277 2632 0.9770 +277 2641 0.5630 +277 2645 0.5350 +277 2821 0.4460 +277 2875 0.5430 +277 2877 0.4460 +277 2878 0.4460 +277 2880 0.4500 +277 2882 0.4480 +277 2959 0.4050 +277 2990 0.4480 +277 2992 0.9010 +277 2997 0.5090 +277 2998 0.4420 +277 3098 0.4160 +277 3101 0.4500 +277 3347 0.4990 +277 3558 0.4300 +277 3569 0.4360 +277 3630 0.6930 +277 3933 0.5350 +277 4057 0.4810 +277 4069 0.5320 +277 4126 0.6920 +277 4589 0.5000 +277 5009 0.4900 +277 5222 0.5120 +277 5236 0.4150 +277 5284 0.5100 +277 5304 0.5780 +277 5406 0.7360 +277 5443 0.4180 +277 5468 0.4120 +277 5478 0.4420 +277 5507 0.5100 +277 5742 0.4390 +277 5770 0.4840 +277 5832 0.4450 +277 5834 0.9720 +277 5836 0.9700 +277 5837 0.9700 +277 6288 0.6200 +277 6289 0.6210 +277 6342 0.4270 +277 6476 0.9920 +277 6514 0.4860 +277 6517 0.5310 +277 6523 0.5240 +277 6652 0.4020 +277 6779 0.5070 +277 7099 0.5540 +277 7167 0.4100 +277 7299 0.5830 +277 7351 0.4270 +277 7363 0.4240 +277 7364 0.4180 +277 7365 0.4450 +277 7837 0.4320 +277 7957 0.7040 +277 8226 0.5750 +277 8513 0.4320 +277 8836 0.4210 +277 8908 0.8860 +277 8972 0.9980 +277 9352 0.7400 +277 9563 0.6140 +277 9852 0.5480 +277 10020 0.5310 +277 11035 0.4300 +277 11181 0.5870 +277 23643 0.4930 +277 26167 0.4010 +277 27159 0.4310 +277 27247 0.4690 +277 29930 0.4070 +277 51738 0.4080 +277 54363 0.8410 +277 56121 0.4120 +277 56122 0.4110 +277 56126 0.4070 +277 56128 0.4010 +277 56130 0.4120 +277 56131 0.4060 +277 56132 0.4010 +277 56133 0.4050 +277 57818 0.4260 +277 79799 0.4340 +277 80162 0.5630 +277 81570 0.4820 +277 84569 0.5560 +277 92579 0.4350 +277 93432 0.9980 +277 137902 0.4320 +277 257202 0.4490 +277 286451 0.5620 +277 440387 0.8400 +277 493869 0.4480 +277 643834 0.5520 +277 643847 0.5530 +277 653247 0.4370 +277 727897 0.7140 +278 280 0.9600 +278 362 0.4990 +278 590 0.6770 +278 671 0.8510 +278 1118 0.4490 +278 1208 0.4890 +278 1357 0.5000 +278 1360 0.4260 +278 1472 0.6420 +278 1504 0.8560 +278 1636 0.5880 +278 1803 0.6140 +278 1805 0.4130 +278 2191 0.4290 +278 2538 0.4560 +278 2539 0.4760 +278 2548 0.9560 +278 2595 0.9000 +278 2629 0.4020 +278 2632 0.9770 +278 2641 0.6200 +278 2645 0.5670 +278 2813 0.5010 +278 2821 0.4460 +278 2875 0.5480 +278 2877 0.4480 +278 2878 0.4470 +278 2880 0.4610 +278 2882 0.4520 +278 2990 0.4430 +278 2992 0.9510 +278 2997 0.6760 +278 2998 0.4590 +278 3101 0.4020 +278 3558 0.4260 +278 3569 0.4030 +278 3630 0.7410 +278 3933 0.4970 +278 4057 0.4790 +278 4069 0.5070 +278 4126 0.6900 +278 5009 0.4900 +278 5222 0.5260 +278 5284 0.4590 +278 5304 0.5300 +278 5406 0.8110 +278 5468 0.4400 +278 5507 0.5120 +278 5742 0.4320 +278 5770 0.5120 +278 5832 0.4500 +278 5834 0.9720 +278 5836 0.9720 +278 5837 0.9700 +278 6288 0.4480 +278 6289 0.4750 +278 6342 0.4280 +278 6476 0.9930 +278 6514 0.5720 +278 6517 0.5670 +278 6523 0.5860 +278 6652 0.4130 +278 6750 0.4070 +278 6779 0.4100 +278 7099 0.5480 +278 7167 0.4240 +278 7299 0.6080 +278 7365 0.4330 +278 7837 0.4320 +278 7957 0.6780 +278 8226 0.5750 +278 8513 0.4210 +278 8836 0.4070 +278 8908 0.9220 +278 8972 0.9980 +278 9352 0.7120 +278 9563 0.6140 +278 9852 0.5140 +278 10020 0.5310 +278 10136 0.4290 +278 11181 0.6120 +278 23499 0.4370 +278 23552 0.4140 +278 23643 0.4870 +278 27159 0.4420 +278 27247 0.4280 +278 29930 0.4030 +278 51738 0.4190 +278 54363 0.8330 +278 57720 0.5470 +278 57818 0.4470 +278 79633 0.4170 +278 80162 0.5630 +278 81570 0.4800 +278 84569 0.5330 +278 91749 0.4080 +278 92579 0.4620 +278 93432 0.9980 +278 137902 0.4320 +278 257202 0.4590 +278 283933 0.5350 +278 286451 0.5760 +278 440387 0.8530 +278 493869 0.4580 +278 643834 0.5420 +278 643847 0.5550 +278 653247 0.4040 +278 727897 0.5250 +280 362 0.5190 +280 476 0.6570 +280 478 0.6040 +280 480 0.6520 +280 590 0.6750 +280 671 0.6660 +280 914 0.5630 +280 1113 0.4400 +280 1118 0.4510 +280 1357 0.4120 +280 1472 0.6430 +280 1504 0.8400 +280 1636 0.5610 +280 1803 0.5790 +280 1805 0.4130 +280 2023 0.4740 +280 2191 0.4230 +280 2538 0.4290 +280 2539 0.4760 +280 2548 0.9430 +280 2595 0.9000 +280 2629 0.5680 +280 2632 0.9780 +280 2641 0.5630 +280 2645 0.5490 +280 2821 0.4520 +280 2875 0.5430 +280 2877 0.4430 +280 2878 0.4410 +280 2880 0.4460 +280 2882 0.4450 +280 2990 0.4590 +280 2992 0.8400 +280 2997 0.4600 +280 2998 0.4600 +280 3101 0.4130 +280 3558 0.4190 +280 3630 0.6910 +280 3933 0.4790 +280 3972 0.5840 +280 4057 0.4430 +280 4069 0.4890 +280 4126 0.6940 +280 4803 0.4890 +280 4893 0.5070 +280 5009 0.4900 +280 5222 0.5200 +280 5236 0.5920 +280 5284 0.4590 +280 5304 0.5280 +280 5406 0.7330 +280 5468 0.4120 +280 5507 0.4240 +280 5742 0.4380 +280 5770 0.4840 +280 5832 0.4430 +280 5834 0.9720 +280 5836 0.9700 +280 5837 0.9700 +280 6278 0.4570 +280 6288 0.4750 +280 6289 0.4790 +280 6342 0.4340 +280 6476 0.9920 +280 6514 0.4860 +280 6517 0.5320 +280 6523 0.4980 +280 6652 0.4020 +280 7099 0.5540 +280 7167 0.4090 +280 7252 0.6480 +280 7299 0.5850 +280 7363 0.4240 +280 7364 0.4180 +280 7837 0.4180 +280 7957 0.6280 +280 8226 0.5750 +280 8836 0.4250 +280 8908 0.8300 +280 8972 0.9980 +280 9352 0.5880 +280 9563 0.6140 +280 9852 0.4240 +280 10020 0.5310 +280 11181 0.5660 +280 23643 0.4930 +280 26167 0.4030 +280 27159 0.4310 +280 29930 0.4440 +280 54363 0.8380 +280 55276 0.6170 +280 55599 0.4210 +280 56128 0.4080 +280 56133 0.4140 +280 57818 0.4270 +280 79799 0.4180 +280 80162 0.5630 +280 81570 0.4840 +280 84569 0.5120 +280 92579 0.4350 +280 93432 0.9980 +280 137902 0.4180 +280 257202 0.4460 +280 283933 0.6100 +280 286451 0.5790 +280 440387 0.8390 +280 493869 0.4460 +280 643834 0.5550 +280 643847 0.5580 +280 653247 0.4120 +283 284 0.6400 +283 285 0.4790 +283 302 0.6240 +283 348 0.4290 +283 1003 0.4650 +283 1787 0.4310 +283 1950 0.6410 +283 2022 0.4390 +283 2192 0.4410 +283 2247 0.5810 +283 2250 0.5620 +283 2252 0.4200 +283 2275 0.4740 +283 2521 0.5290 +283 2919 0.5360 +283 3082 0.4190 +283 3569 0.6330 +283 3576 0.7670 +283 3791 0.5410 +283 4312 0.5220 +283 5175 0.5510 +283 5228 0.5160 +283 5328 0.4920 +283 5329 0.4480 +283 5340 0.5600 +283 5617 0.4480 +283 6036 0.9260 +283 6037 0.8790 +283 6038 0.9880 +283 6039 0.4900 +283 6041 0.7400 +283 6050 0.9990 +283 6311 0.4180 +283 6347 0.6220 +283 6374 0.5890 +283 6647 0.6310 +283 7010 0.5550 +283 7040 0.4740 +283 7076 0.6470 +283 7077 0.6310 +283 7157 0.6920 +283 8635 0.8290 +283 10133 0.4740 +283 10272 0.6670 +283 10468 0.7110 +283 23064 0.6740 +283 23405 0.4730 +283 23435 0.5430 +283 23654 0.8060 +283 27102 0.6940 +283 29978 0.4020 +283 51378 0.4890 +283 54888 0.4790 +283 57679 0.4470 +283 60528 0.4140 +283 80781 0.5080 +283 122665 0.9010 +283 203228 0.5050 +283 374879 0.5440 +283 387332 0.5410 +284 285 0.9200 +284 596 0.4260 +284 627 0.6370 +284 710 0.4550 +284 860 0.4370 +284 947 0.6100 +284 960 0.4190 +284 1000 0.4280 +284 1003 0.7970 +284 1270 0.4480 +284 1311 0.5580 +284 1316 0.4290 +284 1436 0.8470 +284 1437 0.4180 +284 1440 0.5070 +284 1441 0.4500 +284 1490 0.4470 +284 1499 0.4480 +284 1890 0.4920 +284 1902 0.4220 +284 1906 0.5150 +284 1909 0.4750 +284 1944 0.5780 +284 1948 0.7160 +284 1950 0.7290 +284 1956 0.8500 +284 1969 0.7150 +284 2022 0.5860 +284 2034 0.4640 +284 2050 0.6120 +284 2056 0.5170 +284 2064 0.7360 +284 2065 0.7280 +284 2066 0.7120 +284 2246 0.5490 +284 2247 0.8220 +284 2248 0.5880 +284 2249 0.5930 +284 2250 0.7300 +284 2251 0.7260 +284 2252 0.7050 +284 2253 0.5830 +284 2254 0.5850 +284 2255 0.5900 +284 2258 0.6920 +284 2260 0.8480 +284 2261 0.7320 +284 2263 0.7380 +284 2264 0.7160 +284 2277 0.5920 +284 2321 0.9840 +284 2322 0.7840 +284 2324 0.9160 +284 2335 0.6950 +284 2597 0.4640 +284 2627 0.4270 +284 2638 0.4030 +284 2668 0.4460 +284 2885 0.6390 +284 2886 0.5280 +284 2888 0.5510 +284 3082 0.6910 +284 3091 0.6530 +284 3265 0.5450 +284 3383 0.5450 +284 3458 0.4380 +284 3479 0.5950 +284 3480 0.7320 +284 3552 0.4180 +284 3553 0.7010 +284 3558 0.5360 +284 3569 0.5930 +284 3570 0.4400 +284 3576 0.5710 +284 3586 0.5110 +284 3630 0.4440 +284 3643 0.6770 +284 3676 0.5530 +284 3685 0.4110 +284 3791 0.9940 +284 3815 0.8410 +284 3827 0.4420 +284 3845 0.5760 +284 3910 0.5070 +284 4233 0.7700 +284 4254 0.5920 +284 4313 0.4730 +284 4318 0.6230 +284 4803 0.4380 +284 4804 0.7450 +284 4846 0.5430 +284 4851 0.4060 +284 4893 0.5360 +284 4907 0.4650 +284 4914 0.9960 +284 4915 0.7190 +284 5054 0.4770 +284 5154 0.4590 +284 5155 0.7660 +284 5156 0.8150 +284 5159 0.9160 +284 5175 0.6930 +284 5196 0.4940 +284 5197 0.4330 +284 5228 0.7000 +284 5290 0.6570 +284 5291 0.5170 +284 5295 0.5640 +284 5296 0.7030 +284 5329 0.4820 +284 5340 0.5450 +284 5600 0.4300 +284 5688 0.4140 +284 5727 0.5080 +284 5743 0.4170 +284 5744 0.5030 +284 5781 0.5900 +284 5787 0.7050 +284 5788 0.4810 +284 6347 0.5420 +284 6374 0.5840 +284 6383 0.4220 +284 6387 0.7040 +284 6401 0.5320 +284 6403 0.4590 +284 6464 0.5020 +284 6469 0.4210 +284 6654 0.4450 +284 6696 0.5400 +284 6714 0.4140 +284 6993 0.4140 +284 7010 0.9990 +284 7026 0.5380 +284 7040 0.5910 +284 7056 0.5670 +284 7057 0.7160 +284 7058 0.4720 +284 7066 0.5060 +284 7070 0.4740 +284 7075 0.9980 +284 7076 0.4970 +284 7077 0.4050 +284 7082 0.6680 +284 7122 0.6050 +284 7124 0.5460 +284 7130 0.4010 +284 7297 0.5750 +284 7412 0.6170 +284 7423 0.7120 +284 7424 0.6720 +284 7450 0.7550 +284 7852 0.7570 +284 8817 0.5880 +284 8822 0.5860 +284 8823 0.5850 +284 8829 0.5570 +284 8842 0.4290 +284 8862 0.4080 +284 9046 0.5550 +284 9590 0.7330 +284 10544 0.5270 +284 10718 0.4180 +284 10763 0.4460 +284 10894 0.4130 +284 22846 0.4020 +284 26281 0.5860 +284 27006 0.5890 +284 51378 0.9240 +284 54567 0.5400 +284 80781 0.5830 +284 100506658 0.4690 +285 627 0.5780 +285 947 0.5600 +285 1003 0.7030 +285 1401 0.4880 +285 1436 0.8060 +285 1437 0.4190 +285 1440 0.5830 +285 1490 0.5160 +285 1839 0.4540 +285 1906 0.8930 +285 1948 0.4750 +285 1950 0.7490 +285 1956 0.8590 +285 1969 0.7240 +285 2022 0.7050 +285 2034 0.5230 +285 2050 0.6010 +285 2056 0.4770 +285 2064 0.7520 +285 2065 0.7180 +285 2066 0.6940 +285 2149 0.6020 +285 2152 0.4480 +285 2169 0.4060 +285 2246 0.6450 +285 2247 0.8300 +285 2248 0.5180 +285 2249 0.5300 +285 2250 0.5140 +285 2251 0.5210 +285 2252 0.5840 +285 2253 0.5130 +285 2254 0.5220 +285 2255 0.5160 +285 2258 0.7140 +285 2260 0.8550 +285 2261 0.7250 +285 2263 0.7490 +285 2264 0.7260 +285 2277 0.7430 +285 2303 0.4640 +285 2308 0.5530 +285 2321 0.9830 +285 2322 0.7430 +285 2324 0.9800 +285 2335 0.4870 +285 2597 0.4280 +285 2658 0.5970 +285 3082 0.7110 +285 3091 0.6500 +285 3383 0.6000 +285 3448 0.4030 +285 3449 0.4020 +285 3458 0.4470 +285 3479 0.5410 +285 3480 0.7380 +285 3553 0.6890 +285 3569 0.7500 +285 3576 0.8690 +285 3586 0.4850 +285 3627 0.4140 +285 3630 0.4150 +285 3643 0.6850 +285 3678 0.6360 +285 3685 0.4590 +285 3688 0.7960 +285 3689 0.4920 +285 3791 0.9860 +285 3815 0.8060 +285 3952 0.4240 +285 4060 0.4170 +285 4067 0.4480 +285 4233 0.7770 +285 4303 0.4180 +285 4313 0.6060 +285 4318 0.6290 +285 4609 0.5510 +285 4804 0.7110 +285 4846 0.5250 +285 4851 0.4020 +285 4855 0.4090 +285 4914 0.9930 +285 4915 0.6840 +285 5054 0.5450 +285 5155 0.6540 +285 5156 0.8640 +285 5159 0.8510 +285 5175 0.7050 +285 5176 0.6040 +285 5228 0.8400 +285 5327 0.6030 +285 5328 0.4180 +285 5340 0.4840 +285 5743 0.4620 +285 5787 0.5270 +285 6347 0.5780 +285 6356 0.5110 +285 6362 0.4350 +285 6387 0.6020 +285 6401 0.5980 +285 6403 0.8490 +285 6441 0.4750 +285 6696 0.4120 +285 6909 0.4250 +285 7010 0.9990 +285 7037 0.4860 +285 7040 0.5120 +285 7056 0.6890 +285 7057 0.6000 +285 7058 0.4420 +285 7075 0.9940 +285 7076 0.5010 +285 7077 0.4490 +285 7122 0.5030 +285 7124 0.5750 +285 7297 0.4680 +285 7412 0.6140 +285 7423 0.7000 +285 7424 0.7980 +285 7450 0.9030 +285 7852 0.5060 +285 8473 0.4970 +285 8743 0.4590 +285 8817 0.5160 +285 8822 0.5160 +285 8823 0.5100 +285 8829 0.4720 +285 8862 0.4940 +285 10252 0.4300 +285 10344 0.4890 +285 10468 0.4180 +285 10894 0.6080 +285 11082 0.6490 +285 11093 0.6060 +285 25878 0.4540 +285 25942 0.4280 +285 26281 0.5090 +285 27006 0.5120 +285 29126 0.4120 +285 51129 0.4990 +285 51378 0.9240 +285 51705 0.4260 +285 54567 0.6570 +285 79648 0.4860 +285 79987 0.5900 +285 80781 0.5870 +285 728378 0.4530 +286 287 0.9060 +286 288 0.9090 +286 351 0.4110 +286 358 0.8520 +286 381 0.5550 +286 382 0.6160 +286 387 0.4460 +286 596 0.5590 +286 604 0.4540 +286 669 0.4080 +286 808 0.8880 +286 810 0.8660 +286 815 0.4920 +286 825 0.5470 +286 915 0.4550 +286 917 0.4220 +286 925 0.4480 +286 960 0.9710 +286 961 0.6570 +286 989 0.7180 +286 1019 0.4420 +286 1021 0.5920 +286 1147 0.4930 +286 1154 0.8070 +286 1499 0.4070 +286 1609 0.4480 +286 1742 0.5350 +286 1756 0.6350 +286 1840 0.7600 +286 1901 0.4740 +286 1903 0.4270 +286 1950 0.4890 +286 1956 0.4070 +286 2017 0.5480 +286 2035 0.9970 +286 2036 0.5970 +286 2038 0.9830 +286 2039 0.8840 +286 2041 0.5190 +286 2051 0.4220 +286 2064 0.8210 +286 2086 0.5630 +286 2235 0.4080 +286 2263 0.4450 +286 2316 0.4360 +286 2317 0.4210 +286 2318 0.4420 +286 2335 0.4720 +286 2346 0.4040 +286 2597 0.6950 +286 2623 0.4960 +286 2801 0.5120 +286 2918 0.4880 +286 2993 0.9710 +286 2994 0.9400 +286 2995 0.7230 +286 3047 0.4760 +286 3048 0.4490 +286 3059 0.5910 +286 3064 0.4050 +286 3065 0.5640 +286 3066 0.5190 +286 3093 0.5090 +286 3145 0.5210 +286 3320 0.4020 +286 3326 0.4010 +286 3516 0.8750 +286 3551 0.4810 +286 3553 0.4370 +286 3611 0.7380 +286 3684 0.7100 +286 3708 0.9640 +286 3709 0.9220 +286 3710 0.9840 +286 3717 0.4300 +286 3718 0.4510 +286 3767 0.4370 +286 3785 0.6530 +286 3786 0.6050 +286 3792 0.4910 +286 3799 0.4740 +286 3827 0.4620 +286 3897 0.9780 +286 3960 0.4310 +286 3987 0.7980 +286 4082 0.5650 +286 4131 0.5580 +286 4151 0.4310 +286 4478 0.6680 +286 4609 0.4270 +286 4635 0.4500 +286 4659 0.4450 +286 4684 0.4230 +286 4734 0.4600 +286 4780 0.4580 +286 4790 0.5330 +286 4791 0.5080 +286 4803 0.4180 +286 4851 0.5280 +286 4897 0.9830 +286 4905 0.5680 +286 5045 0.4460 +286 5297 0.4500 +286 5310 0.4190 +286 5311 0.4340 +286 5336 0.4020 +286 5339 0.5920 +286 5341 0.8120 +286 5500 0.7700 +286 5501 0.6270 +286 5537 0.6110 +286 5566 0.4300 +286 5567 0.4270 +286 5568 0.4270 +286 5587 0.5680 +286 5594 0.4370 +286 5719 0.4990 +286 5788 0.4040 +286 5829 0.4340 +286 5877 0.4030 +286 5921 0.4450 +286 5925 0.4720 +286 5962 0.6400 +286 5966 0.8520 +286 5970 0.8390 +286 5971 0.7480 +286 5989 0.4710 +286 5993 0.6450 +286 5994 0.7240 +286 6005 0.9830 +286 6006 0.9270 +286 6007 0.6030 +286 6046 0.4150 +286 6261 0.4580 +286 6323 0.6510 +286 6324 0.6000 +286 6326 0.6690 +286 6327 0.5490 +286 6328 0.6190 +286 6329 0.6040 +286 6330 0.5790 +286 6331 0.8450 +286 6332 0.5190 +286 6334 0.6690 +286 6335 0.6760 +286 6336 0.6960 +286 6500 0.4190 +286 6513 0.4730 +286 6521 0.9990 +286 6529 0.4010 +286 6543 0.4290 +286 6548 0.4870 +286 6615 0.4370 +286 6622 0.5330 +286 6624 0.4680 +286 6708 0.9540 +286 6709 0.9100 +286 6710 0.9990 +286 6711 0.9680 +286 6712 0.8460 +286 6714 0.7190 +286 6786 0.4240 +286 6811 0.5670 +286 6845 0.4590 +286 6850 0.5650 +286 6863 0.6990 +286 6886 0.4240 +286 6921 0.4060 +286 6923 0.5860 +286 6942 0.4060 +286 7013 0.6990 +286 7074 0.9670 +286 7082 0.4150 +286 7094 0.6360 +286 7111 0.8040 +286 7124 0.6540 +286 7157 0.7340 +286 7170 0.4180 +286 7220 0.7680 +286 7222 0.5980 +286 7223 0.7390 +286 7224 0.7360 +286 7225 0.7170 +286 7226 0.6260 +286 7273 0.9840 +286 7414 0.6150 +286 7430 0.6250 +286 7442 0.9020 +286 7514 0.5600 +286 7846 0.5020 +286 8048 0.5580 +286 8065 0.6540 +286 8218 0.5540 +286 8312 0.7010 +286 8313 0.6280 +286 8452 0.7710 +286 8453 0.6050 +286 8454 0.7420 +286 8517 0.4570 +286 8525 0.6870 +286 8526 0.4410 +286 8527 0.4390 +286 8557 0.7160 +286 8625 0.5170 +286 8650 0.5550 +286 8671 0.4240 +286 8682 0.4030 +286 8774 0.5040 +286 8775 0.5120 +286 8853 0.5180 +286 8934 0.6120 +286 8989 0.6940 +286 9033 0.4310 +286 9162 0.5460 +286 9229 0.4680 +286 9253 0.5620 +286 9294 0.4090 +286 9454 0.4810 +286 9455 0.4700 +286 9456 0.5580 +286 9459 0.4910 +286 9527 0.5510 +286 9570 0.5230 +286 9616 0.5510 +286 9759 0.4470 +286 9780 0.5150 +286 9794 0.8790 +286 9815 0.4490 +286 9885 0.4930 +286 9896 0.7960 +286 9911 0.4070 +286 10014 0.4790 +286 10083 0.6330 +286 10174 0.4530 +286 10204 0.4120 +286 10280 0.6040 +286 10282 0.5000 +286 10398 0.4770 +286 10399 0.4330 +286 10458 0.4530 +286 10518 0.5140 +286 10652 0.5760 +286 10661 0.6250 +286 10683 0.5510 +286 10752 0.9580 +286 10938 0.4830 +286 10981 0.5960 +286 11237 0.4630 +286 11280 0.6630 +286 11325 0.5150 +286 22870 0.4030 +286 22941 0.5920 +286 23114 0.9900 +286 23125 0.5290 +286 23136 0.5560 +286 23261 0.5310 +286 23683 0.5310 +286 23705 0.4860 +286 23762 0.4430 +286 25865 0.5370 +286 25999 0.5330 +286 26047 0.5270 +286 26499 0.8120 +286 26526 0.4970 +286 27039 0.4260 +286 27338 0.5350 +286 29765 0.7230 +286 29766 0.8050 +286 29767 0.7200 +286 29780 0.4640 +286 30816 0.5670 +286 50807 0.7620 +286 51272 0.4990 +286 51327 0.4280 +286 51332 0.9640 +286 51393 0.8130 +286 51504 0.4280 +286 51593 0.5350 +286 51676 0.5410 +286 51806 0.8660 +286 54795 0.6040 +286 54822 0.5460 +286 54882 0.5450 +286 55095 0.4810 +286 55503 0.4120 +286 55534 0.8720 +286 55697 0.6080 +286 55742 0.4800 +286 55800 0.5360 +286 57030 0.4700 +286 57192 0.5600 +286 57731 0.9720 +286 59341 0.8100 +286 63891 0.4660 +286 63895 0.4090 +286 63908 0.5160 +286 64072 0.4340 +286 64098 0.4480 +286 64411 0.5570 +286 79054 0.8670 +286 79705 0.6930 +286 80036 0.5640 +286 80325 0.5660 +286 80895 0.6510 +286 81847 0.4770 +286 81858 0.5720 +286 83594 0.5170 +286 83660 0.6370 +286 84033 0.9930 +286 84441 0.7630 +286 84894 0.4250 +286 85456 0.4600 +286 89796 0.5890 +286 91860 0.8550 +286 93973 0.4310 +286 113878 0.7120 +286 116984 0.5990 +286 116985 0.7270 +286 116986 0.6630 +286 116987 0.5820 +286 117531 0.5820 +286 118788 0.4160 +286 120892 0.5380 +286 122402 0.4680 +286 137964 0.4460 +286 140465 0.4670 +286 140803 0.4900 +286 162514 0.8710 +286 163688 0.8550 +286 169026 0.4480 +286 196403 0.6390 +286 200576 0.8310 +286 200845 0.4670 +286 221496 0.4010 +286 221895 0.4380 +286 284338 0.4220 +286 284697 0.4420 +286 317754 0.4350 +286 405754 0.5630 +286 445582 0.4050 +286 100288966 0.4310 +287 288 0.9110 +287 351 0.6050 +287 381 0.5540 +287 382 0.6160 +287 387 0.4430 +287 490 0.4310 +287 596 0.4980 +287 675 0.4610 +287 775 0.6300 +287 776 0.6130 +287 777 0.5690 +287 781 0.4150 +287 808 0.8590 +287 810 0.8410 +287 845 0.5620 +287 857 0.5160 +287 859 0.5810 +287 925 0.4280 +287 960 0.9800 +287 961 0.7510 +287 989 0.7060 +287 999 0.5840 +287 1019 0.4460 +287 1021 0.5890 +287 1147 0.4900 +287 1154 0.8070 +287 1272 0.4090 +287 1314 0.4320 +287 1499 0.7650 +287 1609 0.4630 +287 1740 0.5530 +287 1742 0.5570 +287 1756 0.7600 +287 1837 0.4020 +287 1840 0.7650 +287 1915 0.5350 +287 1917 0.5330 +287 1950 0.4740 +287 1956 0.4400 +287 2017 0.5580 +287 2035 0.9960 +287 2036 0.6360 +287 2037 0.4850 +287 2038 0.5190 +287 2039 0.8020 +287 2041 0.4990 +287 2064 0.8240 +287 2086 0.5600 +287 2316 0.4290 +287 2317 0.4070 +287 2318 0.4700 +287 2335 0.4810 +287 2346 0.4180 +287 2597 0.6550 +287 2801 0.5120 +287 2890 0.4030 +287 2904 0.4130 +287 2993 0.7400 +287 2994 0.5370 +287 2995 0.6730 +287 3059 0.5830 +287 3065 0.5060 +287 3093 0.5080 +287 3516 0.8670 +287 3551 0.4660 +287 3611 0.5580 +287 3708 0.9860 +287 3709 0.9230 +287 3710 0.9950 +287 3718 0.4270 +287 3737 0.4580 +287 3752 0.4340 +287 3753 0.6930 +287 3757 0.5830 +287 3759 0.5840 +287 3762 0.4770 +287 3767 0.7500 +287 3784 0.5520 +287 3785 0.7040 +287 3786 0.6700 +287 3799 0.4880 +287 3845 0.4040 +287 3897 0.9900 +287 3960 0.4470 +287 3987 0.7860 +287 4082 0.6280 +287 4130 0.4210 +287 4131 0.6830 +287 4478 0.6840 +287 4607 0.4030 +287 4609 0.4150 +287 4659 0.4520 +287 4684 0.6250 +287 4734 0.4640 +287 4790 0.5320 +287 4791 0.5080 +287 4851 0.5400 +287 4897 0.9380 +287 4905 0.5670 +287 5045 0.4070 +287 5297 0.4480 +287 5310 0.4200 +287 5311 0.4180 +287 5318 0.4420 +287 5339 0.6100 +287 5341 0.7970 +287 5500 0.7720 +287 5501 0.6390 +287 5525 0.7770 +287 5537 0.6020 +287 5566 0.4090 +287 5567 0.4110 +287 5568 0.4080 +287 5587 0.5810 +287 5594 0.4410 +287 5719 0.4820 +287 5829 0.4160 +287 5877 0.4020 +287 5921 0.4350 +287 5925 0.4710 +287 5962 0.6400 +287 5966 0.8570 +287 5970 0.8380 +287 5971 0.7480 +287 5989 0.4770 +287 5993 0.6440 +287 5994 0.7250 +287 6005 0.7770 +287 6262 0.5940 +287 6323 0.6980 +287 6324 0.7160 +287 6326 0.8480 +287 6327 0.6720 +287 6328 0.6520 +287 6329 0.6350 +287 6330 0.8620 +287 6331 0.8880 +287 6332 0.5460 +287 6334 0.8170 +287 6335 0.6460 +287 6336 0.6850 +287 6500 0.8930 +287 6513 0.4430 +287 6521 0.9080 +287 6546 0.6390 +287 6548 0.4810 +287 6615 0.4330 +287 6622 0.4140 +287 6624 0.4900 +287 6640 0.6240 +287 6708 0.8160 +287 6709 0.9950 +287 6710 0.9390 +287 6711 0.9970 +287 6712 0.7920 +287 6714 0.7070 +287 6786 0.4180 +287 6811 0.5680 +287 6833 0.6260 +287 6845 0.4590 +287 6850 0.5500 +287 6863 0.6340 +287 6900 0.5190 +287 6921 0.4010 +287 6923 0.5850 +287 7013 0.6730 +287 7052 0.4050 +287 7074 0.9570 +287 7082 0.4410 +287 7087 0.4330 +287 7094 0.6390 +287 7111 0.7170 +287 7124 0.4180 +287 7157 0.7270 +287 7220 0.7730 +287 7222 0.6100 +287 7223 0.7470 +287 7224 0.7420 +287 7225 0.7140 +287 7226 0.6100 +287 7273 0.9350 +287 7414 0.6090 +287 7430 0.6590 +287 7442 0.8450 +287 7846 0.5240 +287 8048 0.5970 +287 8065 0.6450 +287 8218 0.5580 +287 8312 0.7020 +287 8313 0.4350 +287 8452 0.6910 +287 8453 0.5960 +287 8454 0.8630 +287 8506 0.6710 +287 8517 0.4550 +287 8525 0.6900 +287 8526 0.4570 +287 8527 0.4250 +287 8557 0.6100 +287 8650 0.5330 +287 8671 0.4440 +287 8682 0.4200 +287 8774 0.5040 +287 8775 0.5190 +287 8831 0.4360 +287 8853 0.5220 +287 8912 0.5240 +287 8913 0.4680 +287 8934 0.5010 +287 8989 0.6590 +287 9033 0.4070 +287 9201 0.4260 +287 9229 0.5170 +287 9253 0.5420 +287 9276 0.4800 +287 9378 0.4820 +287 9379 0.4210 +287 9454 0.4830 +287 9455 0.4700 +287 9456 0.5720 +287 9459 0.4850 +287 9479 0.4200 +287 9527 0.5600 +287 9570 0.5410 +287 9616 0.5490 +287 9656 0.5270 +287 9759 0.4380 +287 9780 0.4070 +287 9794 0.8700 +287 9815 0.6240 +287 9885 0.4790 +287 9992 0.6080 +287 10014 0.4900 +287 10021 0.4480 +287 10083 0.6340 +287 10142 0.5740 +287 10204 0.4050 +287 10280 0.8380 +287 10282 0.4990 +287 10345 0.5320 +287 10398 0.4730 +287 10399 0.4380 +287 10518 0.5150 +287 10652 0.5660 +287 10683 0.5500 +287 10752 0.6290 +287 10938 0.4870 +287 10981 0.5750 +287 11237 0.4640 +287 11280 0.6300 +287 11325 0.5200 +287 11337 0.9570 +287 11345 0.4710 +287 22941 0.6150 +287 23022 0.4540 +287 23114 0.9660 +287 23125 0.5100 +287 23261 0.5420 +287 23683 0.5350 +287 23705 0.5190 +287 23710 0.4690 +287 25865 0.5310 +287 25999 0.5660 +287 26047 0.6230 +287 26499 0.8010 +287 26526 0.4910 +287 27338 0.5420 +287 29765 0.7160 +287 29766 0.7120 +287 29767 0.7270 +287 29780 0.5150 +287 30816 0.5630 +287 30844 0.4340 +287 30845 0.4630 +287 50807 0.7720 +287 51164 0.7820 +287 51272 0.4990 +287 51332 0.9430 +287 51393 0.7890 +287 51458 0.4420 +287 51593 0.5130 +287 51676 0.5310 +287 51806 0.8410 +287 54795 0.6150 +287 54822 0.5440 +287 54882 0.5420 +287 55095 0.4990 +287 55503 0.4130 +287 55534 0.8570 +287 55662 0.4220 +287 55742 0.4800 +287 55800 0.6880 +287 57158 0.5040 +287 57192 0.5270 +287 57680 0.4030 +287 57731 0.9860 +287 59341 0.7740 +287 63908 0.5260 +287 64098 0.4060 +287 64411 0.5760 +287 79054 0.8000 +287 79705 0.6690 +287 80036 0.5480 +287 80325 0.5540 +287 80895 0.5100 +287 81565 0.9300 +287 81847 0.4830 +287 81858 0.5480 +287 83594 0.5150 +287 83660 0.6700 +287 84033 0.9600 +287 84441 0.7450 +287 84557 0.5630 +287 84665 0.4360 +287 84808 0.4900 +287 85456 0.4550 +287 89796 0.6180 +287 91860 0.8280 +287 93973 0.4350 +287 113251 0.4400 +287 113878 0.7160 +287 116984 0.5960 +287 116985 0.6850 +287 116986 0.6430 +287 117531 0.5820 +287 118788 0.4140 +287 120892 0.5140 +287 122402 0.4600 +287 140803 0.4910 +287 162514 0.8480 +287 163688 0.8280 +287 196403 0.6700 +287 221496 0.4020 +287 284338 0.4220 +287 284697 0.4610 +287 317754 0.4310 +287 405754 0.5610 +287 445582 0.4050 +287 445815 0.4260 +287 100288966 0.4270 +288 381 0.5380 +288 382 0.6160 +288 387 0.5160 +288 421 0.5730 +288 493 0.5120 +288 596 0.4980 +288 775 0.7600 +288 783 0.4670 +288 808 0.8590 +288 810 0.8510 +288 925 0.4370 +288 960 0.9800 +288 961 0.6460 +288 989 0.7170 +288 999 0.7660 +288 1000 0.5140 +288 1019 0.4380 +288 1021 0.5860 +288 1147 0.4920 +288 1154 0.8060 +288 1258 0.4520 +288 1261 0.5090 +288 1272 0.4010 +288 1462 0.4840 +288 1463 0.4450 +288 1499 0.4860 +288 1500 0.4860 +288 1609 0.4540 +288 1739 0.6450 +288 1742 0.5410 +288 1756 0.6670 +288 1837 0.5940 +288 1840 0.7560 +288 1915 0.5250 +288 1917 0.5220 +288 1950 0.4830 +288 1956 0.4340 +288 2017 0.5380 +288 2035 0.9960 +288 2036 0.6640 +288 2039 0.8070 +288 2041 0.5170 +288 2064 0.8250 +288 2066 0.5020 +288 2086 0.5600 +288 2316 0.4160 +288 2317 0.4090 +288 2318 0.4990 +288 2335 0.4740 +288 2346 0.4230 +288 2534 0.6170 +288 2597 0.6540 +288 2697 0.4890 +288 2801 0.5190 +288 2890 0.5220 +288 2904 0.5340 +288 2993 0.7400 +288 2994 0.5390 +288 2995 0.6720 +288 3059 0.5820 +288 3065 0.5100 +288 3093 0.5140 +288 3516 0.8670 +288 3551 0.4760 +288 3611 0.5550 +288 3699 0.4250 +288 3700 0.5010 +288 3708 0.9460 +288 3709 0.9220 +288 3710 0.9790 +288 3718 0.4280 +288 3736 0.4550 +288 3737 0.5000 +288 3746 0.5510 +288 3776 0.5880 +288 3785 0.9560 +288 3786 0.9420 +288 3897 0.9740 +288 3960 0.4160 +288 3987 0.7860 +288 4082 0.5950 +288 4131 0.5780 +288 4478 0.7420 +288 4609 0.4250 +288 4659 0.4450 +288 4684 0.4570 +288 4734 0.4730 +288 4790 0.5310 +288 4791 0.5120 +288 4851 0.5360 +288 4897 0.9530 +288 4905 0.5680 +288 5045 0.4110 +288 5286 0.4320 +288 5297 0.4310 +288 5310 0.4050 +288 5311 0.4260 +288 5339 0.6520 +288 5341 0.7990 +288 5500 0.7710 +288 5501 0.6400 +288 5537 0.6030 +288 5566 0.4010 +288 5567 0.4120 +288 5568 0.4010 +288 5587 0.5670 +288 5594 0.4340 +288 5719 0.4780 +288 5774 0.4310 +288 5816 0.4270 +288 5829 0.4180 +288 5877 0.4060 +288 5921 0.4330 +288 5925 0.4760 +288 5962 0.6410 +288 5966 0.8540 +288 5970 0.8390 +288 5971 0.7470 +288 5989 0.4720 +288 5993 0.6430 +288 5994 0.7260 +288 6005 0.6260 +288 6046 0.4060 +288 6263 0.4720 +288 6323 0.7580 +288 6324 0.7510 +288 6326 0.9710 +288 6327 0.6240 +288 6328 0.6600 +288 6329 0.6380 +288 6330 0.6450 +288 6331 0.9930 +288 6332 0.5670 +288 6334 0.9590 +288 6335 0.6620 +288 6336 0.8060 +288 6513 0.4400 +288 6521 0.9280 +288 6548 0.6690 +288 6615 0.4340 +288 6616 0.5210 +288 6624 0.4760 +288 6640 0.5890 +288 6708 0.8630 +288 6709 0.9720 +288 6710 0.9290 +288 6711 0.9740 +288 6712 0.8440 +288 6714 0.7080 +288 6786 0.4020 +288 6811 0.5680 +288 6845 0.4700 +288 6850 0.5590 +288 6855 0.4540 +288 6863 0.6080 +288 6900 0.4900 +288 6923 0.5790 +288 7013 0.6730 +288 7074 0.9680 +288 7082 0.4270 +288 7094 0.6360 +288 7111 0.7020 +288 7124 0.4180 +288 7157 0.7530 +288 7220 0.7640 +288 7222 0.5890 +288 7223 0.7370 +288 7224 0.7350 +288 7225 0.7110 +288 7226 0.6100 +288 7273 0.9260 +288 7280 0.4600 +288 7402 0.6140 +288 7414 0.6120 +288 7430 0.7500 +288 7442 0.4470 +288 7444 0.4050 +288 7846 0.5080 +288 8048 0.5440 +288 8065 0.6370 +288 8218 0.5440 +288 8239 0.4130 +288 8312 0.7020 +288 8313 0.4380 +288 8379 0.4300 +288 8452 0.6740 +288 8453 0.5980 +288 8454 0.7280 +288 8496 0.4070 +288 8506 0.5580 +288 8517 0.4560 +288 8525 0.6920 +288 8526 0.4460 +288 8527 0.4260 +288 8557 0.5440 +288 8650 0.5500 +288 8671 0.4420 +288 8682 0.4130 +288 8774 0.5080 +288 8775 0.5160 +288 8934 0.5020 +288 8989 0.6590 +288 9033 0.4070 +288 9162 0.5560 +288 9229 0.5050 +288 9253 0.5480 +288 9378 0.4670 +288 9379 0.4010 +288 9454 0.4830 +288 9455 0.4820 +288 9456 0.6490 +288 9459 0.4900 +288 9479 0.4810 +288 9495 0.4030 +288 9527 0.5520 +288 9570 0.5480 +288 9616 0.5540 +288 9654 0.4220 +288 9744 0.6260 +288 9759 0.4260 +288 9780 0.4070 +288 9794 0.8700 +288 9815 0.6140 +288 9881 0.4590 +288 9885 0.4860 +288 9892 0.4380 +288 10014 0.4780 +288 10083 0.6350 +288 10160 0.5250 +288 10204 0.4120 +288 10280 0.6010 +288 10282 0.5000 +288 10382 0.4900 +288 10398 0.4730 +288 10399 0.4370 +288 10518 0.5120 +288 10652 0.5660 +288 10683 0.5440 +288 10752 0.5970 +288 10938 0.4850 +288 10981 0.5760 +288 11237 0.4620 +288 11280 0.6490 +288 11325 0.5160 +288 11337 0.9790 +288 11345 0.5090 +288 11346 0.4700 +288 22924 0.7650 +288 22941 0.6120 +288 22978 0.4440 +288 23114 0.9960 +288 23125 0.5090 +288 23261 0.5290 +288 23345 0.4160 +288 23426 0.4690 +288 23542 0.5120 +288 23683 0.5310 +288 23705 0.5260 +288 23710 0.7350 +288 25865 0.5310 +288 25999 0.5280 +288 26011 0.7260 +288 26047 0.6400 +288 26499 0.8030 +288 26526 0.4950 +288 27039 0.4070 +288 27185 0.6470 +288 27338 0.5420 +288 28964 0.5280 +288 29098 0.4890 +288 29765 0.7020 +288 29766 0.6970 +288 29767 0.7050 +288 29780 0.4500 +288 30816 0.5630 +288 50807 0.7470 +288 51272 0.4990 +288 51332 0.9510 +288 51393 0.4180 +288 51593 0.5140 +288 51676 0.5370 +288 51806 0.8510 +288 54795 0.6030 +288 54822 0.5460 +288 54882 0.5420 +288 55095 0.4800 +288 55503 0.4310 +288 55534 0.8620 +288 55662 0.4100 +288 55742 0.4750 +288 55800 0.6260 +288 56479 0.5380 +288 57192 0.5260 +288 57502 0.6070 +288 57553 0.5690 +288 57731 0.9990 +288 59341 0.7750 +288 60484 0.5040 +288 63827 0.5070 +288 63908 0.5240 +288 64098 0.4060 +288 64411 0.5580 +288 79054 0.8010 +288 79705 0.6690 +288 80036 0.5400 +288 80309 0.4400 +288 80325 0.5290 +288 80895 0.5110 +288 81565 0.6170 +288 81631 0.5890 +288 81847 0.4790 +288 81858 0.5530 +288 83660 0.6390 +288 84033 0.7590 +288 84441 0.7470 +288 84445 0.4440 +288 85456 0.5480 +288 89796 0.7520 +288 91752 0.5170 +288 91860 0.8380 +288 93973 0.4350 +288 113878 0.7120 +288 116984 0.6160 +288 116985 0.6820 +288 116986 0.6410 +288 116987 0.5930 +288 117531 0.5710 +288 118788 0.4120 +288 120892 0.5120 +288 122402 0.4660 +288 140803 0.4940 +288 160851 0.6700 +288 162514 0.8500 +288 163688 0.8380 +288 196403 0.6420 +288 221496 0.4030 +288 284338 0.4220 +288 284697 0.4400 +288 317754 0.4310 +288 342035 0.6570 +288 375790 0.4090 +288 405754 0.5610 +288 445582 0.4040 +288 445815 0.5980 +288 100288966 0.4270 +290 308 0.5950 +290 328 0.4780 +290 624 0.4950 +290 634 0.4610 +290 682 0.4140 +290 811 0.4450 +290 861 0.5390 +290 883 0.8280 +290 909 0.5930 +290 910 0.5910 +290 911 0.5930 +290 912 0.5300 +290 913 0.5920 +290 914 0.7340 +290 920 0.7620 +290 921 0.8340 +290 924 0.9640 +290 925 0.5730 +290 928 0.7020 +290 930 0.8530 +290 933 0.6970 +290 942 0.4240 +290 945 0.9530 +290 947 0.8780 +290 948 0.7350 +290 949 0.7290 +290 950 0.7370 +290 952 0.7200 +290 960 0.7720 +290 961 0.4110 +290 965 0.6110 +290 966 0.4830 +290 967 0.4860 +290 968 0.5350 +290 973 0.5840 +290 975 0.6980 +290 1003 0.4770 +290 1036 0.8040 +290 1048 0.5170 +290 1050 0.4010 +290 1080 0.4060 +290 1088 0.4100 +290 1244 0.4770 +290 1378 0.6350 +290 1407 0.5950 +290 1436 0.5320 +290 1437 0.4410 +290 1440 0.5050 +290 1491 0.8270 +290 1504 0.4610 +290 1508 0.4550 +290 1512 0.4380 +290 1514 0.4590 +290 1520 0.4020 +290 1604 0.4140 +290 1636 0.8160 +290 1674 0.5480 +290 1791 0.7790 +290 1803 0.9310 +290 1956 0.4050 +290 2022 0.8630 +290 2028 0.5570 +290 2056 0.4140 +290 2120 0.4060 +290 2152 0.5920 +290 2209 0.8200 +290 2247 0.4800 +290 2321 0.5880 +290 2322 0.5840 +290 2335 0.4480 +290 2346 0.4120 +290 2526 0.8740 +290 2597 0.6390 +290 2678 0.4980 +290 2686 0.9490 +290 2687 0.9460 +290 2729 0.9300 +290 2730 0.9240 +290 2805 0.8290 +290 2806 0.8440 +290 2810 0.9600 +290 2813 0.4150 +290 2919 0.5730 +290 2920 0.5300 +290 2937 0.9210 +290 2993 0.6090 +290 3309 0.4230 +290 3312 0.4400 +290 3383 0.5590 +290 3439 0.5740 +290 3458 0.4230 +290 3553 0.4470 +290 3560 0.4360 +290 3562 0.4470 +290 3563 0.6690 +290 3569 0.4880 +290 3576 0.6340 +290 3577 0.6410 +290 3579 0.6440 +290 3630 0.4280 +290 3655 0.7860 +290 3673 0.4140 +290 3674 0.5830 +290 3676 0.4710 +290 3678 0.4980 +290 3683 0.4310 +290 3684 0.9160 +290 3687 0.5960 +290 3688 0.8040 +290 3689 0.4600 +290 3690 0.6010 +290 3791 0.4390 +290 3815 0.9210 +290 3827 0.6780 +290 3956 0.4980 +290 3958 0.6080 +290 4071 0.6470 +290 4072 0.5960 +290 4162 0.5850 +290 4267 0.6190 +290 4311 0.8980 +290 4313 0.6370 +290 4318 0.6420 +290 4353 0.7400 +290 4609 0.4470 +290 4627 0.4360 +290 4629 0.4490 +290 4680 0.4320 +290 4684 0.8180 +290 4804 0.4480 +290 4869 0.5070 +290 4907 0.7850 +290 5045 0.6440 +290 5159 0.6210 +290 5175 0.6970 +290 5184 0.4800 +290 5216 0.4170 +290 5245 0.4860 +290 5265 0.4980 +290 5339 0.4120 +290 5343 0.4380 +290 5460 0.4750 +290 5550 0.5540 +290 5594 0.4690 +290 5788 0.7880 +290 5914 0.5580 +290 5972 0.6660 +290 6051 0.4350 +290 6476 0.4920 +290 6564 0.5230 +290 6566 0.4600 +290 6657 0.4350 +290 6693 0.4540 +290 7037 0.8320 +290 7040 0.4310 +290 7045 0.4410 +290 7064 0.6030 +290 7070 0.7760 +290 7076 0.5020 +290 7097 0.4880 +290 7113 0.5780 +290 7124 0.6380 +290 7174 0.4230 +290 7369 0.4400 +290 7412 0.5360 +290 7431 0.5320 +290 7511 0.4310 +290 7512 0.4910 +290 7837 0.4140 +290 7852 0.4550 +290 8739 0.4310 +290 8826 0.4180 +290 8829 0.4060 +290 8842 0.6640 +290 8877 0.4550 +290 8972 0.5260 +290 9027 0.9040 +290 9988 0.7160 +290 10004 0.4140 +290 10332 0.7620 +290 10763 0.4030 +290 23549 0.5850 +290 25884 0.5630 +290 26064 0.4530 +290 29952 0.4180 +290 30816 0.5430 +290 51056 0.9650 +290 51094 0.4370 +290 54858 0.4430 +290 56267 0.8110 +290 56649 0.5190 +290 56852 0.5180 +290 57126 0.4040 +290 57393 0.6070 +290 57486 0.4970 +290 58503 0.8870 +290 59272 0.9390 +290 64174 0.4770 +290 64180 0.4720 +290 65078 0.9960 +290 79017 0.9020 +290 79094 0.9000 +290 79258 0.4400 +290 79602 0.4420 +290 79923 0.4990 +290 84868 0.5080 +290 93432 0.4110 +290 124975 0.9530 +290 132724 0.4040 +290 137362 0.8280 +290 137902 0.4080 +290 339390 0.4880 +290 339967 0.4640 +290 374569 0.4080 +290 440387 0.4620 +290 494143 0.9040 +290 728378 0.4600 +290 100133941 0.5710 +290 102723407 0.4020 +291 292 0.9790 +291 293 0.9170 +291 351 0.6070 +291 402 0.5520 +291 498 0.8680 +291 506 0.8240 +291 509 0.5600 +291 513 0.5180 +291 515 0.6310 +291 516 0.6660 +291 518 0.4830 +291 539 0.5480 +291 578 0.7480 +291 581 0.8180 +291 596 0.7710 +291 617 0.7150 +291 706 0.9370 +291 727 0.7250 +291 729 0.7300 +291 730 0.7300 +291 731 0.7200 +291 732 0.7280 +291 733 0.5560 +291 735 0.7300 +291 859 0.5340 +291 947 0.7200 +291 1159 0.4530 +291 1160 0.6730 +291 1327 0.6050 +291 1329 0.5660 +291 1340 0.5160 +291 1431 0.8520 +291 1537 0.7560 +291 1678 0.6070 +291 1716 0.6770 +291 1819 0.4380 +291 2395 0.5540 +291 2483 0.5100 +291 2597 0.4970 +291 2896 0.4880 +291 3309 0.4130 +291 3312 0.4710 +291 3313 0.6150 +291 3329 0.5940 +291 3419 0.4580 +291 3421 0.6140 +291 4137 0.6940 +291 4191 0.4630 +291 4301 0.7200 +291 4358 0.5730 +291 4607 0.5990 +291 4624 0.5360 +291 4625 0.5250 +291 4633 0.5840 +291 4634 0.6970 +291 4697 0.4510 +291 4714 0.6650 +291 4733 0.5250 +291 5009 0.4990 +291 5250 0.7930 +291 5307 0.4060 +291 5427 0.4900 +291 5428 0.9420 +291 5481 0.9420 +291 5573 0.4760 +291 5581 0.9290 +291 5582 0.4110 +291 5657 0.4260 +291 6389 0.4840 +291 6576 0.6360 +291 6687 0.8600 +291 6714 0.4070 +291 6742 0.5010 +291 6834 0.4330 +291 6901 0.5900 +291 7084 0.4280 +291 7123 0.4130 +291 7137 0.5550 +291 7139 0.5320 +291 7157 0.9250 +291 7168 0.5280 +291 7273 0.5110 +291 7381 0.4700 +291 7384 0.7010 +291 7385 0.6880 +291 7386 0.6260 +291 7416 0.9860 +291 7417 0.9700 +291 7419 0.9830 +291 7846 0.4180 +291 8048 0.5550 +291 8604 0.5800 +291 8802 0.5520 +291 8803 0.6170 +291 9377 0.6100 +291 9512 0.5020 +291 9804 0.5630 +291 9868 0.5820 +291 9927 0.4370 +291 10063 0.5620 +291 10105 0.9980 +291 10165 0.5500 +291 10245 0.6410 +291 10440 0.6510 +291 10452 0.6650 +291 10469 0.6970 +291 10476 0.5120 +291 10574 0.5000 +291 10575 0.4650 +291 10576 0.4930 +291 10939 0.4210 +291 11232 0.9120 +291 22919 0.4170 +291 22948 0.4860 +291 23243 0.4030 +291 23347 0.4190 +291 23568 0.5710 +291 23787 0.5330 +291 26054 0.6570 +291 26235 0.4860 +291 26515 0.7100 +291 26517 0.6050 +291 26519 0.6320 +291 26520 0.6430 +291 26521 0.5470 +291 27235 0.5880 +291 29090 0.5280 +291 29928 0.8230 +291 29957 0.8280 +291 50484 0.8400 +291 51025 0.5340 +291 51142 0.5510 +291 51248 0.7430 +291 51287 0.6030 +291 51422 0.6350 +291 54205 0.9600 +291 54543 0.4780 +291 54927 0.5710 +291 55143 0.4600 +291 55750 0.5030 +291 56652 0.9210 +291 56942 0.5160 +291 56993 0.5780 +291 63932 0.4870 +291 79145 0.4990 +291 79570 0.4430 +291 80273 0.5350 +291 83447 0.9030 +291 84134 0.5850 +291 84269 0.5040 +291 84545 0.5180 +291 84701 0.4780 +291 85366 0.5930 +291 90639 0.5100 +291 92609 0.6400 +291 92667 0.5590 +291 117159 0.5400 +291 120892 0.6430 +291 123207 0.4910 +291 131118 0.6220 +291 134266 0.5270 +291 144100 0.7280 +291 150274 0.5040 +291 154215 0.7260 +291 197257 0.5720 +291 246243 0.4430 +291 283871 0.4110 +291 340348 0.7200 +291 388753 0.6350 +291 400916 0.5890 +291 401505 0.5510 +291 448831 0.5760 +291 548596 0.4480 +291 100188893 0.4560 +291 100272147 0.5690 +291 100287932 0.7660 +292 293 0.9690 +292 328 0.5060 +292 387 0.4630 +292 498 0.8430 +292 506 0.8270 +292 509 0.5320 +292 513 0.4720 +292 515 0.6100 +292 516 0.4060 +292 518 0.4790 +292 522 0.4050 +292 539 0.5540 +292 578 0.7380 +292 581 0.7380 +292 596 0.7810 +292 706 0.9430 +292 727 0.7250 +292 729 0.7300 +292 730 0.7300 +292 731 0.7280 +292 732 0.7330 +292 733 0.5750 +292 735 0.7300 +292 947 0.7200 +292 1159 0.4120 +292 1160 0.5270 +292 1327 0.5900 +292 1329 0.6150 +292 1340 0.4890 +292 1351 0.4140 +292 1431 0.6990 +292 1537 0.5790 +292 1678 0.5330 +292 1763 0.4130 +292 1819 0.4330 +292 1915 0.4340 +292 2023 0.4220 +292 2068 0.9090 +292 2246 0.4100 +292 2483 0.4590 +292 2539 0.4850 +292 2896 0.5000 +292 3313 0.6850 +292 3320 0.4710 +292 3329 0.4940 +292 3416 0.4940 +292 3419 0.4130 +292 3843 0.5480 +292 3921 0.4160 +292 4116 0.5240 +292 4191 0.6100 +292 4301 0.7200 +292 4323 0.4520 +292 4512 0.5770 +292 4697 0.4100 +292 4722 0.4120 +292 4724 0.4200 +292 4733 0.5260 +292 4736 0.4050 +292 5052 0.4110 +292 5091 0.5150 +292 5230 0.4600 +292 5245 0.8570 +292 5250 0.8600 +292 5427 0.4980 +292 5478 0.4270 +292 5481 0.9370 +292 5581 0.9120 +292 6124 0.6510 +292 6125 0.4370 +292 6128 0.4660 +292 6129 0.4070 +292 6138 0.4100 +292 6141 0.4840 +292 6143 0.4870 +292 6175 0.4410 +292 6187 0.4550 +292 6188 0.5100 +292 6189 0.4160 +292 6191 0.5260 +292 6194 0.4230 +292 6208 0.4850 +292 6389 0.5170 +292 6390 0.5460 +292 6391 0.4480 +292 6392 0.4730 +292 6576 0.6350 +292 6687 0.7790 +292 6714 0.4500 +292 6834 0.4630 +292 7178 0.5140 +292 7284 0.6000 +292 7381 0.4150 +292 7384 0.7140 +292 7385 0.6680 +292 7386 0.6510 +292 7416 0.9910 +292 7417 0.9900 +292 7419 0.9720 +292 8266 0.4150 +292 8604 0.4340 +292 8789 0.4870 +292 9131 0.5250 +292 9349 0.4760 +292 9377 0.6660 +292 9391 0.9930 +292 9512 0.5210 +292 9804 0.4880 +292 10059 0.4260 +292 10105 0.9610 +292 10165 0.5070 +292 10294 0.4360 +292 10452 0.6620 +292 10456 0.5080 +292 10469 0.4520 +292 10476 0.4760 +292 10857 0.4800 +292 10989 0.4390 +292 11060 0.5300 +292 11165 0.4410 +292 11331 0.4070 +292 23409 0.8520 +292 23787 0.7440 +292 23788 0.6640 +292 26517 0.5290 +292 26589 0.4350 +292 29090 0.4310 +292 29957 0.5850 +292 51248 0.7510 +292 51642 0.4350 +292 51647 0.9940 +292 54205 0.9780 +292 54978 0.6800 +292 55143 0.5080 +292 57019 0.4210 +292 57148 0.4470 +292 57186 0.4050 +292 63932 0.6810 +292 64210 0.9940 +292 64428 0.4340 +292 64976 0.4720 +292 79064 0.4300 +292 83447 0.9030 +292 84134 0.5850 +292 84617 0.4160 +292 84701 0.4160 +292 84987 0.4500 +292 112724 0.4450 +292 114789 0.4610 +292 117159 0.5400 +292 120892 0.6330 +292 123207 0.4910 +292 144100 0.7280 +292 149041 0.5100 +292 152100 0.4310 +292 340348 0.7200 +292 389203 0.4610 +292 448831 0.4290 +292 548596 0.4140 +293 327 0.4590 +293 412 0.7710 +293 438 0.8490 +293 498 0.8150 +293 506 0.8150 +293 509 0.5260 +293 513 0.4890 +293 515 0.5720 +293 516 0.6500 +293 539 0.5030 +293 617 0.6210 +293 706 0.9460 +293 788 0.4930 +293 1160 0.5080 +293 1183 0.5820 +293 1327 0.6200 +293 1329 0.5200 +293 1397 0.4340 +293 1431 0.8210 +293 1537 0.7550 +293 1763 0.4130 +293 1778 0.4620 +293 1819 0.4380 +293 1915 0.4130 +293 1937 0.4950 +293 1938 0.5340 +293 2058 0.6560 +293 2896 0.4990 +293 3305 0.4630 +293 3313 0.7670 +293 3320 0.4900 +293 3326 0.5180 +293 3329 0.6140 +293 3416 0.4820 +293 3421 0.6130 +293 3563 0.5150 +293 4191 0.4530 +293 4267 0.6500 +293 4318 0.4070 +293 4323 0.4690 +293 4705 0.4070 +293 4714 0.5570 +293 4733 0.5110 +293 4736 0.4480 +293 5018 0.4800 +293 5245 0.5260 +293 5250 0.7680 +293 5427 0.4870 +293 5481 0.9480 +293 5581 0.9150 +293 6122 0.5580 +293 6124 0.4800 +293 6128 0.4310 +293 6130 0.4460 +293 6132 0.5210 +293 6133 0.4050 +293 6137 0.4830 +293 6139 0.4090 +293 6141 0.5300 +293 6143 0.4850 +293 6159 0.4290 +293 6175 0.4740 +293 6187 0.5400 +293 6188 0.5530 +293 6191 0.5500 +293 6193 0.7180 +293 6194 0.4680 +293 6205 0.4010 +293 6209 0.4800 +293 6426 0.4140 +293 6446 0.4340 +293 6554 0.4170 +293 6576 0.6300 +293 6732 0.4060 +293 6901 0.5610 +293 7123 0.4250 +293 7178 0.5480 +293 7384 0.6830 +293 7385 0.6370 +293 7386 0.5970 +293 7416 0.9970 +293 7417 0.9930 +293 7419 0.9710 +293 7431 0.4380 +293 7531 0.5280 +293 8225 0.4920 +293 8227 0.7540 +293 8623 0.8900 +293 8665 0.4090 +293 8835 0.4580 +293 8856 0.5840 +293 9189 0.4440 +293 9377 0.5190 +293 9391 0.9350 +293 9512 0.5120 +293 9804 0.5080 +293 9868 0.6830 +293 9927 0.7360 +293 10105 0.9650 +293 10165 0.4330 +293 10245 0.7990 +293 10399 0.4650 +293 10440 0.7850 +293 10452 0.6700 +293 10456 0.4890 +293 10469 0.6550 +293 10476 0.4100 +293 10989 0.4190 +293 11331 0.4540 +293 23095 0.4190 +293 23409 0.5250 +293 23521 0.4330 +293 23646 0.4250 +293 23787 0.6210 +293 23788 0.5720 +293 25861 0.4040 +293 26515 0.6390 +293 26517 0.6360 +293 26519 0.9470 +293 26520 0.7180 +293 29090 0.9090 +293 29103 0.5840 +293 29928 0.6900 +293 29957 0.4930 +293 51025 0.5720 +293 51079 0.7210 +293 51574 0.5230 +293 51647 0.9600 +293 54205 0.9610 +293 54978 0.5210 +293 55143 0.4560 +293 55344 0.4450 +293 55669 0.5460 +293 56993 0.4590 +293 57019 0.4140 +293 63932 0.4900 +293 64210 0.9200 +293 64428 0.4370 +293 80273 0.5720 +293 80331 0.4910 +293 83440 0.4360 +293 83447 0.9030 +293 84247 0.4500 +293 84701 0.4430 +293 92609 0.8300 +293 114789 0.4500 +293 120892 0.5210 +293 123207 0.5000 +293 131118 0.5850 +293 134266 0.5650 +293 140801 0.4080 +293 140823 0.5680 +293 148109 0.4480 +293 207063 0.4770 +293 548596 0.4030 +293 100287932 0.9150 +301 302 0.9890 +301 308 0.6560 +301 309 0.8340 +301 311 0.4560 +301 350 0.5730 +301 351 0.5860 +301 359 0.4800 +301 382 0.5040 +301 462 0.4160 +301 595 0.4010 +301 596 0.4460 +301 695 0.5590 +301 811 0.7400 +301 821 0.5630 +301 825 0.6600 +301 836 0.5670 +301 857 0.4370 +301 859 0.9270 +301 920 0.4500 +301 928 0.7370 +301 942 0.4190 +301 952 0.5380 +301 960 0.5560 +301 967 0.7010 +301 975 0.6800 +301 991 0.4360 +301 999 0.7760 +301 1003 0.4950 +301 1015 0.6650 +301 1072 0.4230 +301 1191 0.4150 +301 1192 0.4150 +301 1277 0.6720 +301 1278 0.5640 +301 1396 0.4280 +301 1435 0.5230 +301 1465 0.4270 +301 1472 0.5210 +301 1485 0.6910 +301 1499 0.6240 +301 1509 0.5150 +301 1601 0.4150 +301 1831 0.4820 +301 1843 0.4080 +301 1956 0.8020 +301 1969 0.4830 +301 1992 0.4490 +301 2012 0.4760 +301 2023 0.7010 +301 2069 0.4270 +301 2100 0.4560 +301 2152 0.5570 +301 2162 0.5550 +301 2217 0.4390 +301 2319 0.4240 +301 2335 0.7930 +301 2346 0.4920 +301 2357 0.9990 +301 2358 0.9990 +301 2359 0.9660 +301 2597 0.6710 +301 2782 0.5980 +301 2783 0.6510 +301 2784 0.5330 +301 2785 0.4990 +301 2786 0.5260 +301 2787 0.5160 +301 2788 0.5290 +301 2790 0.5280 +301 2791 0.5840 +301 2792 0.5250 +301 2793 0.7190 +301 2810 0.4050 +301 2854 0.6550 +301 2869 0.4990 +301 2885 0.4250 +301 2919 0.5890 +301 2920 0.5140 +301 2923 0.6420 +301 2934 0.4920 +301 2944 0.4680 +301 3146 0.4210 +301 3304 0.5540 +301 3308 0.4290 +301 3312 0.4750 +301 3313 0.4690 +301 3315 0.4480 +301 3320 0.4470 +301 3326 0.4330 +301 3383 0.4490 +301 3458 0.4830 +301 3553 0.6020 +301 3565 0.5920 +301 3569 0.5560 +301 3576 0.8280 +301 3586 0.5060 +301 3596 0.5550 +301 3615 0.4460 +301 3627 0.4600 +301 3685 0.5940 +301 3688 0.4390 +301 3689 0.4150 +301 3827 0.5410 +301 3856 0.7230 +301 3911 0.4660 +301 3915 0.4200 +301 3921 0.5520 +301 3936 0.4310 +301 3956 0.6570 +301 3958 0.7360 +301 3959 0.4760 +301 4057 0.4820 +301 4060 0.5680 +301 4212 0.4090 +301 4240 0.5990 +301 4318 0.4170 +301 4478 0.4170 +301 4609 0.4330 +301 4637 0.5650 +301 4647 0.4290 +301 4691 0.4120 +301 4790 0.4570 +301 4985 0.4990 +301 4988 0.5170 +301 5021 0.4040 +301 5034 0.4800 +301 5052 0.4440 +301 5216 0.6480 +301 5295 0.5620 +301 5320 0.5790 +301 5321 0.8130 +301 5330 0.5000 +301 5331 0.4990 +301 5340 0.5330 +301 5355 0.4040 +301 5367 0.4410 +301 5621 0.4540 +301 5731 0.4330 +301 5743 0.4790 +301 5777 0.4020 +301 5803 0.4100 +301 5870 0.4240 +301 5970 0.6160 +301 5996 0.5570 +301 5998 0.5130 +301 5999 0.5230 +301 6003 0.5130 +301 6004 0.5450 +301 6251 0.4480 +301 6275 0.8440 +301 6277 0.8770 +301 6278 0.4250 +301 6280 0.4530 +301 6281 0.9770 +301 6282 0.9980 +301 6283 0.6090 +301 6288 0.5800 +301 6347 0.4650 +301 6367 0.4600 +301 6368 0.4500 +301 6657 0.7010 +301 6696 0.5280 +301 6698 0.4100 +301 6714 0.7740 +301 6863 0.4570 +301 7001 0.6340 +301 7045 0.4480 +301 7052 0.6320 +301 7057 0.6370 +301 7076 0.4510 +301 7098 0.5440 +301 7099 0.4570 +301 7124 0.6760 +301 7157 0.7620 +301 7170 0.4610 +301 7204 0.5120 +301 7251 0.5960 +301 7295 0.4270 +301 7316 0.4820 +301 7329 0.5100 +301 7345 0.4840 +301 7410 0.4080 +301 7431 0.5820 +301 7448 0.4950 +301 7531 0.6200 +301 7534 0.7950 +301 7837 0.4330 +301 7852 0.5580 +301 8291 0.9830 +301 8407 0.4270 +301 8490 0.5110 +301 8737 0.5840 +301 8997 0.5090 +301 9373 0.4930 +301 9588 0.4420 +301 10015 0.4020 +301 10287 0.5240 +301 10551 0.5960 +301 10681 0.5380 +301 10800 0.5640 +301 10874 0.4360 +301 10971 0.6010 +301 11151 0.4770 +301 22918 0.4650 +301 23210 0.5460 +301 23236 0.5070 +301 26509 0.6660 +301 26575 0.5110 +301 27035 0.5030 +301 27111 0.4090 +301 29110 0.4950 +301 29780 0.5080 +301 29899 0.4210 +301 50865 0.4230 +301 51764 0.4990 +301 54331 0.5090 +301 54822 0.4360 +301 55970 0.5440 +301 57105 0.5290 +301 59345 0.5940 +301 63940 0.4160 +301 64115 0.4210 +301 64407 0.5470 +301 64581 0.5070 +301 79026 0.7120 +301 83706 0.4050 +301 84634 0.4140 +301 84941 0.8370 +301 85477 0.4120 +301 91663 0.4370 +301 94235 0.5900 +301 115557 0.4990 +301 126006 0.4060 +301 137902 0.4300 +301 345456 0.5580 +301 374454 0.4310 +301 375189 0.5580 +301 388697 0.5380 +301 388698 0.5580 +301 431704 0.5130 +301 493829 0.9380 +301 728378 0.4720 +302 308 0.8330 +302 309 0.9100 +302 311 0.5220 +302 312 0.6430 +302 335 0.5520 +302 350 0.9430 +302 382 0.5720 +302 383 0.4280 +302 387 0.4720 +302 389 0.4190 +302 408 0.5090 +302 558 0.4030 +302 596 0.4350 +302 634 0.6730 +302 650 0.4690 +302 682 0.6080 +302 808 0.5730 +302 810 0.5670 +302 811 0.9230 +302 821 0.4020 +302 822 0.4560 +302 824 0.4510 +302 825 0.5240 +302 826 0.5150 +302 836 0.4080 +302 857 0.9220 +302 858 0.6030 +302 859 0.8980 +302 871 0.6160 +302 908 0.4850 +302 920 0.4120 +302 928 0.6190 +302 950 0.6200 +302 960 0.7060 +302 967 0.9850 +302 975 0.6930 +302 977 0.8130 +302 999 0.4170 +302 1015 0.5230 +302 1025 0.5340 +302 1072 0.6650 +302 1192 0.7130 +302 1300 0.4050 +302 1312 0.4390 +302 1366 0.5030 +302 1396 0.4450 +302 1432 0.5040 +302 1465 0.4710 +302 1499 0.4280 +302 1508 0.9780 +302 1520 0.4510 +302 1604 0.4120 +302 1654 0.4260 +302 1655 0.4390 +302 1690 0.4870 +302 1823 0.4050 +302 1828 0.4070 +302 1832 0.5110 +302 1915 0.7670 +302 1938 0.6550 +302 1950 0.6130 +302 1956 0.9580 +302 2012 0.4680 +302 2023 0.7650 +302 2064 0.6690 +302 2086 0.6900 +302 2130 0.4440 +302 2152 0.6440 +302 2171 0.4470 +302 2175 0.4020 +302 2194 0.4930 +302 2202 0.4300 +302 2247 0.5390 +302 2312 0.4260 +302 2316 0.7290 +302 2319 0.5550 +302 2321 0.5080 +302 2335 0.7230 +302 2346 0.5670 +302 2520 0.5640 +302 2597 0.7120 +302 2621 0.4160 +302 2638 0.5630 +302 2670 0.4540 +302 2885 0.7070 +302 2896 0.4710 +302 2923 0.5070 +302 2932 0.7500 +302 2934 0.5230 +302 3017 0.4190 +302 3018 0.4340 +302 3037 0.4490 +302 3190 0.5140 +302 3303 0.5660 +302 3304 0.5710 +302 3308 0.6450 +302 3309 0.7730 +302 3312 0.6890 +302 3313 0.5310 +302 3315 0.6480 +302 3316 0.5910 +302 3320 0.6480 +302 3326 0.6640 +302 3351 0.4320 +302 3383 0.4150 +302 3484 0.4250 +302 3569 0.6390 +302 3611 0.4970 +302 3615 0.4470 +302 3630 0.5820 +302 3678 0.5180 +302 3688 0.5980 +302 3700 0.4920 +302 3728 0.6080 +302 3777 0.7370 +302 3827 0.6900 +302 3848 0.5500 +302 3856 0.4070 +302 3916 0.5890 +302 3920 0.4900 +302 3956 0.7660 +302 3958 0.8320 +302 4000 0.5590 +302 4035 0.5450 +302 4072 0.4690 +302 4082 0.4790 +302 4137 0.7640 +302 4218 0.5080 +302 4237 0.4590 +302 4281 0.6680 +302 4312 0.6970 +302 4313 0.8260 +302 4318 0.6460 +302 4430 0.4020 +302 4478 0.6190 +302 4609 0.9510 +302 4627 0.5320 +302 4628 0.4570 +302 4637 0.6640 +302 4691 0.7740 +302 4734 0.4560 +302 4790 0.4500 +302 4869 0.6430 +302 4904 0.5660 +302 4914 0.4750 +302 5004 0.4810 +302 5005 0.4680 +302 5034 0.6240 +302 5037 0.5380 +302 5045 0.4500 +302 5052 0.6950 +302 5054 0.7900 +302 5111 0.6380 +302 5216 0.4380 +302 5230 0.5690 +302 5245 0.8010 +302 5297 0.4220 +302 5315 0.6520 +302 5321 0.6150 +302 5327 0.9970 +302 5328 0.8060 +302 5329 0.4780 +302 5339 0.4650 +302 5340 0.9970 +302 5345 0.4830 +302 5479 0.5970 +302 5587 0.4080 +302 5590 0.5050 +302 5663 0.5020 +302 5728 0.5980 +302 5756 0.4600 +302 5781 0.6350 +302 5788 0.5060 +302 5868 0.5870 +302 5869 0.5020 +302 5870 0.4610 +302 5880 0.4350 +302 5899 0.4250 +302 5908 0.4840 +302 6188 0.4040 +302 6195 0.9040 +302 6271 0.9470 +302 6275 0.9990 +302 6277 0.9520 +302 6278 0.4950 +302 6281 0.9990 +302 6282 0.9960 +302 6284 0.5550 +302 6288 0.4530 +302 6336 0.8150 +302 6386 0.6710 +302 6387 0.5810 +302 6404 0.6070 +302 6453 0.5160 +302 6590 0.6040 +302 6596 0.7580 +302 6657 0.4250 +302 6678 0.4840 +302 6714 0.4690 +302 6737 0.5880 +302 6774 0.5630 +302 6775 0.7580 +302 6830 0.4820 +302 6844 0.5240 +302 6950 0.5490 +302 7001 0.5290 +302 7037 0.5600 +302 7042 0.5210 +302 7045 0.4970 +302 7053 0.4130 +302 7057 0.4350 +302 7076 0.5040 +302 7094 0.5260 +302 7099 0.9680 +302 7124 0.4290 +302 7157 0.9770 +302 7184 0.4360 +302 7251 0.7900 +302 7277 0.5010 +302 7295 0.4020 +302 7306 0.4940 +302 7314 0.4040 +302 7412 0.5100 +302 7415 0.5320 +302 7430 0.7250 +302 7431 0.6060 +302 7448 0.5940 +302 7531 0.4940 +302 7534 0.6300 +302 7837 0.4540 +302 7852 0.5590 +302 7879 0.4360 +302 7942 0.4040 +302 8291 0.9890 +302 8340 0.4300 +302 8341 0.4280 +302 8342 0.4310 +302 8345 0.4300 +302 8347 0.4290 +302 8348 0.4310 +302 8349 0.4210 +302 8361 0.5230 +302 8407 0.5380 +302 8578 0.4200 +302 8646 0.5480 +302 8673 0.5800 +302 8766 0.6220 +302 8773 0.7330 +302 8826 0.6800 +302 8842 0.5440 +302 8970 0.4290 +302 8988 0.5870 +302 8989 0.4820 +302 9076 0.5080 +302 9261 0.4220 +302 9411 0.4500 +302 9531 0.4430 +302 9567 0.4050 +302 9784 0.5240 +302 9961 0.4310 +302 10015 0.4560 +302 10016 0.4100 +302 10095 0.4340 +302 10130 0.5630 +302 10144 0.4460 +302 10188 0.4220 +302 10211 0.4560 +302 10381 0.4880 +302 10382 0.4190 +302 10399 0.5600 +302 10406 0.5430 +302 10449 0.4760 +302 10461 0.4080 +302 10551 0.5850 +302 10631 0.6220 +302 10890 0.5370 +302 11010 0.4110 +302 22916 0.5930 +302 23363 0.5070 +302 23581 0.4130 +302 26509 0.6630 +302 27111 0.6300 +302 29780 0.4120 +302 30816 0.7040 +302 30835 0.6700 +302 50964 0.4580 +302 51350 0.4230 +302 51726 0.4570 +302 51806 0.6430 +302 54145 0.4310 +302 55114 0.4010 +302 55503 0.5550 +302 55848 0.4740 +302 56288 0.4750 +302 56302 0.7800 +302 56907 0.5740 +302 79017 0.5300 +302 79026 0.9990 +302 79714 0.4210 +302 83639 0.4890 +302 83932 0.5100 +302 84552 0.5050 +302 84612 0.5030 +302 84617 0.4740 +302 84790 0.4260 +302 85236 0.4430 +302 85477 0.4630 +302 91663 0.4560 +302 91860 0.5670 +302 92421 0.4440 +302 113146 0.9710 +302 128312 0.4300 +302 128866 0.5430 +302 137902 0.4410 +302 140576 0.5350 +302 154796 0.4780 +302 158983 0.4300 +302 163688 0.5660 +302 201294 0.5480 +302 255626 0.4310 +302 255738 0.8580 +302 286436 0.4310 +302 374897 0.4320 +302 388697 0.5510 +302 388698 0.6710 +302 389289 0.9970 +302 405754 0.6970 +302 440689 0.4300 +302 493829 0.8620 +302 728378 0.5580 +302 100506658 0.5080 +302 102723407 0.4280 +302 114483833 0.4310 +306 308 0.4850 +306 311 0.6340 +306 821 0.4060 +306 836 0.4150 +306 931 0.4490 +306 1968 0.4910 +306 1992 0.4550 +306 2206 0.4440 +306 2358 0.5180 +306 3934 0.4480 +306 3936 0.4220 +306 5743 0.4260 +306 6277 0.5930 +306 6281 0.5040 +306 6282 0.6050 +306 6283 0.4570 +306 6284 0.4750 +306 6590 0.4030 +306 6810 0.6170 +306 6813 0.6370 +306 7113 0.4400 +306 8291 0.4280 +306 8773 0.4930 +306 8876 0.4190 +306 8993 0.4100 +306 11328 0.4350 +306 25801 0.4010 +306 51700 0.4080 +306 79056 0.5280 +306 80315 0.4190 +306 83604 0.4460 +306 140576 0.4300 +306 257019 0.4760 +306 338339 0.4240 +306 388697 0.4170 +307 308 0.4450 +307 309 0.6940 +307 836 0.4160 +307 968 0.4810 +307 1234 0.7930 +307 1237 0.4450 +307 1238 0.4180 +307 1382 0.5070 +307 1508 0.4810 +307 1524 0.4490 +307 2152 0.6060 +307 2829 0.4320 +307 4057 0.4300 +307 4790 0.4100 +307 4791 0.4270 +307 5948 0.5420 +307 6275 0.4360 +307 6277 0.5790 +307 6281 0.8020 +307 6282 0.4890 +307 6857 0.4090 +307 7852 0.5040 +307 8125 0.4440 +307 8761 0.4190 +307 9948 0.4530 +307 23569 0.5910 +307 51554 0.4040 +307 57124 0.5730 +307 84519 0.4040 +308 309 0.4300 +308 312 0.4130 +308 317 0.6350 +308 329 0.5260 +308 330 0.5030 +308 331 0.6920 +308 332 0.4290 +308 348 0.4370 +308 350 0.6850 +308 351 0.6510 +308 355 0.6770 +308 356 0.7150 +308 367 0.4640 +308 387 0.4700 +308 392 0.4290 +308 432 0.5350 +308 445 0.4820 +308 462 0.5040 +308 468 0.4430 +308 472 0.6050 +308 477 0.4200 +308 558 0.4530 +308 567 0.4570 +308 578 0.4330 +308 581 0.6490 +308 595 0.8080 +308 596 0.8990 +308 597 0.4100 +308 598 0.7960 +308 599 0.5130 +308 632 0.6110 +308 648 0.5800 +308 664 0.4130 +308 672 0.4900 +308 673 0.5780 +308 695 0.4300 +308 811 0.7220 +308 821 0.5120 +308 834 0.6200 +308 835 0.5150 +308 836 0.9210 +308 837 0.4630 +308 839 0.5260 +308 840 0.7380 +308 841 0.8420 +308 842 0.8850 +308 843 0.4910 +308 857 0.4460 +308 859 0.5200 +308 860 0.5230 +308 861 0.4420 +308 885 0.8910 +308 891 0.6750 +308 894 0.4400 +308 896 0.4610 +308 898 0.4690 +308 916 0.4740 +308 920 0.8070 +308 921 0.6740 +308 925 0.7200 +308 928 0.7550 +308 930 0.7800 +308 939 0.4530 +308 940 0.6000 +308 941 0.6090 +308 942 0.6430 +308 945 0.4220 +308 947 0.7210 +308 948 0.4240 +308 949 0.4210 +308 950 0.4560 +308 952 0.5870 +308 958 0.6670 +308 959 0.4720 +308 960 0.7330 +308 961 0.4500 +308 962 0.4130 +308 967 0.8180 +308 968 0.4990 +308 969 0.6340 +308 975 0.7050 +308 983 0.6350 +308 995 0.5190 +308 999 0.6680 +308 1000 0.6110 +308 1003 0.4470 +308 1017 0.6830 +308 1019 0.6930 +308 1021 0.6330 +308 1026 0.6610 +308 1027 0.5040 +308 1029 0.5380 +308 1033 0.4590 +308 1048 0.4120 +308 1072 0.4110 +308 1088 0.4350 +308 1111 0.5430 +308 1147 0.4660 +308 1192 0.5530 +308 1236 0.4680 +308 1280 0.4590 +308 1327 0.5830 +308 1385 0.4330 +308 1420 0.5050 +308 1432 0.4470 +308 1435 0.4980 +308 1436 0.4520 +308 1437 0.5940 +308 1440 0.4570 +308 1493 0.4510 +308 1499 0.6940 +308 1504 0.4920 +308 1506 0.5140 +308 1508 0.5150 +308 1509 0.4140 +308 1520 0.4490 +308 1536 0.4260 +308 1647 0.4390 +308 1649 0.5720 +308 1666 0.4110 +308 1728 0.4770 +308 1786 0.4410 +308 1791 0.7860 +308 1869 0.5330 +308 1950 0.6590 +308 1956 0.7450 +308 1965 0.4540 +308 1978 0.4790 +308 1995 0.4200 +308 2021 0.4280 +308 2022 0.5200 +308 2028 0.4640 +308 2056 0.4200 +308 2064 0.7580 +308 2081 0.5290 +308 2091 0.4420 +308 2099 0.6180 +308 2146 0.5050 +308 2147 0.6440 +308 2152 0.8540 +308 2212 0.5120 +308 2213 0.5010 +308 2247 0.6070 +308 2252 0.4040 +308 2305 0.4350 +308 2308 0.4650 +308 2309 0.5230 +308 2316 0.5160 +308 2319 0.5020 +308 2322 0.6010 +308 2323 0.4830 +308 2335 0.5970 +308 2353 0.4260 +308 2475 0.6090 +308 2526 0.4680 +308 2597 0.9430 +308 2621 0.5890 +308 2670 0.6240 +308 2671 0.5160 +308 2811 0.5120 +308 2875 0.4820 +308 2877 0.4660 +308 2878 0.4800 +308 2879 0.4100 +308 2880 0.4750 +308 2882 0.4830 +308 2923 0.7010 +308 2932 0.5980 +308 2993 0.5400 +308 3002 0.5330 +308 3014 0.6990 +308 3021 0.6200 +308 3065 0.4480 +308 3082 0.4210 +308 3091 0.6390 +308 3099 0.4280 +308 3146 0.4760 +308 3162 0.6270 +308 3240 0.4680 +308 3251 0.5260 +308 3308 0.7410 +308 3309 0.6790 +308 3312 0.4400 +308 3315 0.5100 +308 3316 0.4460 +308 3320 0.5990 +308 3326 0.5980 +308 3336 0.4060 +308 3381 0.5210 +308 3383 0.5910 +308 3439 0.4720 +308 3456 0.4160 +308 3458 0.7160 +308 3479 0.5130 +308 3480 0.5090 +308 3551 0.4540 +308 3552 0.4610 +308 3553 0.7160 +308 3558 0.6620 +308 3562 0.5840 +308 3565 0.5990 +308 3569 0.7500 +308 3574 0.4920 +308 3575 0.5800 +308 3576 0.5220 +308 3586 0.6210 +308 3596 0.4090 +308 3600 0.4850 +308 3605 0.5490 +308 3606 0.4280 +308 3627 0.4070 +308 3630 0.6450 +308 3674 0.6080 +308 3684 0.7960 +308 3685 0.6280 +308 3687 0.7710 +308 3688 0.5920 +308 3689 0.4340 +308 3690 0.6460 +308 3693 0.4610 +308 3716 0.4600 +308 3717 0.5700 +308 3725 0.6300 +308 3791 0.6400 +308 3815 0.6540 +308 3845 0.6140 +308 3916 0.6020 +308 3920 0.4150 +308 3956 0.6890 +308 3958 0.4770 +308 3959 0.4530 +308 4000 0.5020 +308 4001 0.5660 +308 4072 0.6810 +308 4087 0.4350 +308 4088 0.4170 +308 4130 0.5410 +308 4131 0.4870 +308 4137 0.6420 +308 4145 0.5530 +308 4170 0.7510 +308 4193 0.6150 +308 4233 0.4640 +308 4240 0.6720 +308 4254 0.5000 +308 4282 0.4660 +308 4288 0.4150 +308 4313 0.5890 +308 4318 0.6620 +308 4353 0.4260 +308 4360 0.4480 +308 4594 0.7400 +308 4609 0.7410 +308 4684 0.4790 +308 4780 0.4990 +308 4790 0.6090 +308 4792 0.6310 +308 4851 0.5170 +308 4893 0.4300 +308 4907 0.5410 +308 5037 0.4730 +308 5052 0.4410 +308 5122 0.5890 +308 5175 0.6710 +308 5216 0.6920 +308 5223 0.4660 +308 5230 0.6910 +308 5241 0.4950 +308 5243 0.5110 +308 5290 0.5300 +308 5315 0.4680 +308 5339 0.5120 +308 5341 0.5610 +308 5347 0.4550 +308 5351 0.4400 +308 5366 0.6080 +308 5460 0.5150 +308 5468 0.5070 +308 5479 0.4020 +308 5551 0.4860 +308 5580 0.5470 +308 5594 0.4320 +308 5595 0.6970 +308 5599 0.5190 +308 5604 0.5390 +308 5617 0.4910 +308 5621 0.4160 +308 5627 0.5120 +308 5688 0.4820 +308 5728 0.6610 +308 5743 0.5320 +308 5747 0.4190 +308 5770 0.4950 +308 5788 0.7810 +308 5834 0.4040 +308 5894 0.4200 +308 5896 0.4020 +308 5899 0.4430 +308 5925 0.4330 +308 5966 0.4200 +308 5970 0.4790 +308 5971 0.4030 +308 6035 0.5480 +308 6093 0.4050 +308 6198 0.5970 +308 6275 0.6170 +308 6280 0.6280 +308 6281 0.8330 +308 6282 0.6360 +308 6347 0.5390 +308 6382 0.5560 +308 6386 0.4970 +308 6387 0.4860 +308 6390 0.4200 +308 6391 0.6500 +308 6401 0.4550 +308 6402 0.6320 +308 6403 0.7440 +308 6504 0.4530 +308 6554 0.4410 +308 6591 0.4880 +308 6615 0.5140 +308 6647 0.8460 +308 6648 0.4730 +308 6657 0.6350 +308 6678 0.6070 +308 6693 0.4520 +308 6696 0.4110 +308 6714 0.7360 +308 6772 0.5090 +308 6774 0.7300 +308 6776 0.5300 +308 6777 0.5230 +308 6813 0.4320 +308 7015 0.4240 +308 7037 0.5280 +308 7040 0.6240 +308 7045 0.4580 +308 7070 0.5790 +308 7076 0.5160 +308 7077 0.4060 +308 7094 0.5330 +308 7097 0.4500 +308 7099 0.5820 +308 7124 0.7580 +308 7132 0.5440 +308 7157 0.8180 +308 7167 0.4510 +308 7178 0.4080 +308 7184 0.5510 +308 7251 0.5750 +308 7273 0.4530 +308 7277 0.5390 +308 7295 0.4780 +308 7306 0.5350 +308 7408 0.4690 +308 7412 0.4470 +308 7414 0.6850 +308 7416 0.4810 +308 7431 0.6790 +308 7450 0.4410 +308 7465 0.4050 +308 7494 0.5390 +308 7514 0.4370 +308 7531 0.5790 +308 7534 0.6050 +308 7837 0.8880 +308 7852 0.5410 +308 8220 0.4320 +308 8290 0.6150 +308 8291 0.5420 +308 8349 0.4210 +308 8356 0.6150 +308 8407 0.6000 +308 8436 0.6520 +308 8600 0.4010 +308 8639 0.5800 +308 8678 0.6780 +308 8737 0.5450 +308 8743 0.5160 +308 8772 0.6150 +308 8795 0.6380 +308 8797 0.6060 +308 8837 0.5780 +308 8842 0.7260 +308 8878 0.5400 +308 8900 0.6000 +308 8988 0.4340 +308 9140 0.4350 +308 9308 0.4060 +308 9370 0.5060 +308 9429 0.6620 +308 9451 0.6520 +308 9474 0.6220 +308 9531 0.5050 +308 9601 0.5910 +308 9804 0.4170 +308 9817 0.4690 +308 9948 0.5270 +308 10018 0.7120 +308 10211 0.4400 +308 10278 0.5020 +308 10397 0.4110 +308 10413 0.4160 +308 10457 0.8070 +308 10533 0.5620 +308 10590 0.4260 +308 10614 0.4600 +308 10763 0.4280 +308 10971 0.4800 +308 11035 0.4860 +308 11200 0.5050 +308 22926 0.5510 +308 22927 0.4040 +308 23052 0.4330 +308 23411 0.5430 +308 23476 0.5680 +308 27032 0.4540 +308 27111 0.4090 +308 27113 0.4790 +308 27154 0.4080 +308 27161 0.5830 +308 29126 0.5190 +308 30009 0.4060 +308 50943 0.6090 +308 53373 0.4440 +308 54205 0.8410 +308 54431 0.4120 +308 55201 0.5070 +308 57721 0.4560 +308 58490 0.4460 +308 64422 0.4010 +308 79680 0.4790 +308 79923 0.5110 +308 80781 0.5600 +308 81631 0.6870 +308 81669 0.5800 +308 84260 0.5070 +308 84447 0.4080 +308 84557 0.5450 +308 84695 0.4300 +308 84823 0.5160 +308 84868 0.4090 +308 91937 0.4180 +308 131578 0.4410 +308 133482 0.4180 +308 137902 0.8880 +308 149428 0.7620 +308 150353 0.4510 +308 168400 0.5060 +308 196527 0.5350 +308 197259 0.5470 +308 203068 0.4900 +308 255738 0.5220 +308 257202 0.4750 +308 284119 0.5130 +308 345456 0.5720 +308 375189 0.5980 +308 440093 0.6150 +308 440387 0.4900 +308 440686 0.6150 +308 493869 0.5550 +308 641654 0.8440 +308 653604 0.6150 +308 728378 0.5020 +308 100133941 0.5180 +308 100532731 0.4290 +309 310 0.4860 +309 311 0.4560 +309 479 0.4130 +309 495 0.4510 +309 633 0.5050 +309 650 0.4290 +309 793 0.4380 +309 859 0.8470 +309 885 0.5300 +309 928 0.5860 +309 967 0.4440 +309 972 0.5770 +309 1044 0.6390 +309 1191 0.4110 +309 1436 0.4540 +309 1836 0.5860 +309 2358 0.4170 +309 2495 0.4210 +309 2597 0.4030 +309 2805 0.4300 +309 2878 0.5590 +309 3007 0.4730 +309 3240 0.4490 +309 3340 0.6810 +309 3785 0.4580 +309 4035 0.9320 +309 4137 0.5700 +309 5019 0.4340 +309 5054 0.4780 +309 5270 0.4820 +309 5341 0.4060 +309 5424 0.6610 +309 5425 0.4550 +309 5578 0.7940 +309 5806 0.4260 +309 5921 0.6960 +309 5970 0.7790 +309 6208 0.6370 +309 6271 0.5150 +309 6277 0.6080 +309 6281 0.4640 +309 6282 0.6930 +309 6285 0.6220 +309 6850 0.4290 +309 6949 0.5960 +309 7045 0.4500 +309 7057 0.5800 +309 7163 0.4540 +309 8291 0.8960 +309 8766 0.5120 +309 9114 0.4380 +309 9823 0.4330 +309 10059 0.4780 +309 10211 0.5360 +309 10528 0.4510 +309 23545 0.4700 +309 30011 0.4330 +309 51429 0.4100 +309 53373 0.4420 +309 55653 0.4070 +309 57696 0.4090 +309 57804 0.4350 +309 64756 0.4130 +309 79026 0.6330 +309 90423 0.4220 +309 203068 0.4020 +309 493829 0.8680 +310 311 0.9200 +310 596 0.4830 +310 989 0.5540 +310 1522 0.4070 +310 2040 0.4090 +310 2992 0.4880 +310 3958 0.9310 +310 4723 0.4280 +310 5547 0.4370 +310 5592 0.4360 +310 5908 0.4790 +310 6277 0.4080 +310 6642 0.5880 +310 6643 0.5200 +310 6717 0.9360 +310 7072 0.4100 +310 7157 0.4090 +310 7158 0.4400 +310 7251 0.6040 +310 8291 0.4330 +310 8635 0.4560 +310 8724 0.5130 +310 8971 0.4390 +310 9530 0.5420 +310 9559 0.7900 +310 9588 0.5500 +310 9690 0.4600 +310 10016 0.6370 +310 10399 0.6270 +310 10579 0.4630 +310 10801 0.4120 +310 11315 0.5120 +310 23560 0.5950 +310 25801 0.4170 +310 25802 0.4610 +310 27131 0.4900 +310 27286 0.4220 +310 51699 0.7870 +310 54205 0.4560 +310 55075 0.4230 +310 55233 0.4860 +310 55313 0.4340 +310 55737 0.7850 +310 58533 0.5250 +310 85365 0.5680 +310 112574 0.4680 +310 553115 0.5800 +311 808 0.5100 +311 810 0.4870 +311 899 0.4490 +311 928 0.4850 +311 967 0.4840 +311 975 0.4510 +311 1472 0.5580 +311 1956 0.4930 +311 2130 0.4790 +311 2521 0.4090 +311 3123 0.6370 +311 3303 0.4200 +311 3304 0.4180 +311 3305 0.6420 +311 3308 0.4950 +311 3446 0.4460 +311 4750 0.4640 +311 4942 0.4650 +311 5245 0.4550 +311 6277 0.9850 +311 6281 0.4720 +311 6282 0.4510 +311 6556 0.5410 +311 6717 0.4130 +311 6813 0.6230 +311 7158 0.4390 +311 7251 0.5220 +311 7277 0.4930 +311 7415 0.4290 +311 8291 0.4220 +311 9351 0.4980 +311 9373 0.5520 +311 9782 0.4100 +311 10016 0.8890 +311 10146 0.4310 +311 10342 0.7000 +311 22872 0.6030 +311 23435 0.4190 +311 27101 0.4580 +311 29978 0.4570 +311 51669 0.4110 +311 51806 0.4800 +311 55165 0.6070 +311 56244 0.8410 +311 85365 0.6460 +311 91860 0.4940 +311 163688 0.4780 +311 203228 0.4160 +311 219348 0.4730 +311 400916 0.4550 +311 503835 0.4160 +311 553115 0.6950 +312 579 0.4100 +312 1015 0.4460 +312 2131 0.7470 +312 4005 0.4100 +312 6442 0.4100 +312 7227 0.7270 +312 8291 0.4160 +312 54518 0.5660 +312 114788 0.8370 +312 124540 0.4850 +312 159989 0.4180 +313 2219 0.4100 +313 4542 0.4350 +313 4818 0.4070 +313 5660 0.4610 +313 7099 0.4140 +313 7305 0.5250 +313 9450 0.4070 +313 10578 0.4210 +313 23643 0.4230 +313 51311 0.4160 +313 83478 0.4640 +313 155038 0.5260 +313 768239 0.4620 +314 501 0.9280 +314 1312 0.9150 +314 1376 0.4140 +314 1610 0.4480 +314 1621 0.9010 +314 1644 0.9100 +314 2739 0.8160 +314 2793 0.7780 +314 3630 0.4120 +314 3683 0.5480 +314 4128 0.9800 +314 4129 0.9790 +314 5148 0.6550 +314 5168 0.4120 +314 5961 0.5900 +314 6010 0.4440 +314 7077 0.6390 +314 8639 0.9440 +314 9380 0.8200 +314 23171 0.4460 +314 23193 0.4270 +314 26275 0.4280 +314 51081 0.4180 +314 55173 0.4220 +314 57129 0.4050 +314 57591 0.6900 +314 60488 0.4100 +314 64432 0.4140 +314 64960 0.4310 +314 64969 0.4140 +314 65003 0.4170 +314 84263 0.4090 +314 137872 0.4620 +314 220074 0.9200 +316 438 0.9180 +316 847 0.4580 +316 1543 0.9410 +316 1544 0.9480 +316 1548 0.9560 +316 1551 0.9250 +316 1553 0.4110 +316 1555 0.9630 +316 1557 0.4100 +316 1558 0.9500 +316 1559 0.9640 +316 1562 0.9160 +316 1565 0.5080 +316 1571 0.5370 +316 1576 0.9560 +316 1577 0.9370 +316 1579 0.9240 +316 1592 0.9260 +316 1629 0.8070 +316 1962 0.9200 +316 2052 0.4470 +316 2328 0.4630 +316 2877 0.4020 +316 2878 0.4360 +316 4128 0.9470 +316 4129 0.9690 +316 4329 0.9170 +316 4337 0.9620 +316 4338 0.9450 +316 4507 0.6140 +316 4594 0.5890 +316 4837 0.9570 +316 4860 0.6620 +316 5095 0.8250 +316 5096 0.8290 +316 5959 0.9100 +316 6821 0.9660 +316 7172 0.4040 +316 7363 0.9370 +316 7364 0.9430 +316 7365 0.9460 +316 7366 0.9410 +316 7367 0.9390 +316 7378 0.5380 +316 7498 0.4260 +316 8310 0.8340 +316 8564 0.4180 +316 8566 0.9280 +316 8608 0.9210 +316 8630 0.9180 +316 8639 0.4520 +316 8854 0.9380 +316 9054 0.5560 +316 9249 0.9100 +316 9360 0.4730 +316 9615 0.7520 +316 10170 0.9160 +316 10243 0.8380 +316 10720 0.9370 +316 10901 0.9410 +316 11112 0.9030 +316 11185 0.6090 +316 23583 0.5180 +316 27233 0.4840 +316 27304 0.4910 +316 29785 0.9290 +316 50700 0.9170 +316 51109 0.9140 +316 51733 0.8400 +316 53630 0.9270 +316 54490 0.9380 +316 54575 0.9410 +316 54576 0.9410 +316 54577 0.9410 +316 54578 0.9460 +316 54579 0.9400 +316 54600 0.9420 +316 54657 0.9460 +316 54658 0.9410 +316 54659 0.9410 +316 55034 0.9780 +316 55163 0.9320 +316 55811 0.6030 +316 55862 0.8320 +316 55902 0.8150 +316 56603 0.9210 +316 57026 0.9190 +316 57679 0.6720 +316 57821 0.6250 +316 64757 0.4060 +316 64902 0.9100 +316 79611 0.8160 +316 79799 0.9400 +316 84532 0.8100 +316 113179 0.5080 +316 133688 0.4020 +316 134637 0.5100 +316 144193 0.6880 +316 145226 0.9140 +316 151531 0.5610 +316 157506 0.9100 +316 195814 0.9090 +316 197322 0.9200 +316 284541 0.9170 +316 340665 0.9170 +316 493911 0.9000 +316 574537 0.9360 +316 100861540 0.9240 +317 329 0.6600 +317 330 0.5680 +317 331 0.9770 +317 332 0.6140 +317 355 0.6330 +317 356 0.7810 +317 472 0.6280 +317 572 0.4340 +317 573 0.4180 +317 578 0.7450 +317 581 0.9220 +317 595 0.5120 +317 596 0.9930 +317 597 0.6830 +317 598 0.9960 +317 599 0.7700 +317 637 0.6100 +317 638 0.6980 +317 664 0.4660 +317 666 0.6630 +317 811 0.4800 +317 834 0.8170 +317 835 0.8590 +317 836 0.9990 +317 837 0.7200 +317 838 0.5950 +317 839 0.7760 +317 840 0.9400 +317 841 0.9700 +317 842 0.9990 +317 843 0.7630 +317 891 0.4840 +317 983 0.5130 +317 990 0.5540 +317 999 0.5810 +317 1017 0.5560 +317 1019 0.5240 +317 1021 0.4690 +317 1026 0.4760 +317 1029 0.4830 +317 1499 0.4240 +317 1520 0.4370 +317 1537 0.6800 +317 1612 0.4950 +317 1647 0.4180 +317 1676 0.5820 +317 1677 0.6290 +317 1791 0.4690 +317 1869 0.7630 +317 1876 0.5950 +317 1937 0.4080 +317 1956 0.4130 +317 2021 0.7490 +317 2099 0.4120 +317 2197 0.4520 +317 2309 0.4010 +317 2475 0.5050 +317 2597 0.5840 +317 2877 0.4440 +317 2878 0.4420 +317 2880 0.4440 +317 2882 0.4440 +317 2932 0.4230 +317 3006 0.4420 +317 3091 0.4230 +317 3162 0.6080 +317 3178 0.4230 +317 3181 0.4660 +317 3304 0.5790 +317 3308 0.9970 +317 3309 0.4750 +317 3315 0.7750 +317 3316 0.7750 +317 3320 0.9930 +317 3326 0.9880 +317 3398 0.4070 +317 3553 0.5970 +317 3569 0.4050 +317 3725 0.5730 +317 3815 0.4930 +317 4170 0.8130 +317 4193 0.5710 +317 4210 0.5880 +317 4217 0.4580 +317 4609 0.5270 +317 4671 0.5730 +317 4698 0.4600 +317 4780 0.5520 +317 4790 0.6430 +317 4792 0.4510 +317 5366 0.7170 +317 5480 0.4400 +317 5499 0.4230 +317 5594 0.6220 +317 5595 0.6760 +317 5599 0.4280 +317 5610 0.6080 +317 5688 0.6460 +317 5728 0.6930 +317 5905 0.5730 +317 6050 0.4480 +317 6426 0.4240 +317 6774 0.4170 +317 6850 0.4700 +317 7015 0.4920 +317 7027 0.5490 +317 7029 0.5490 +317 7124 0.6940 +317 7132 0.5990 +317 7157 0.9740 +317 7178 0.4440 +317 7184 0.4880 +317 7186 0.4410 +317 7295 0.4140 +317 7416 0.4640 +317 7531 0.4530 +317 7837 0.5180 +317 8125 0.5510 +317 8678 0.4820 +317 8717 0.6060 +317 8718 0.4200 +317 8737 0.5400 +317 8738 0.7450 +317 8739 0.5770 +317 8743 0.5780 +317 8767 0.6240 +317 8772 0.8290 +317 8793 0.4210 +317 8795 0.6730 +317 8797 0.6500 +317 8837 0.7390 +317 8878 0.4700 +317 8900 0.4300 +317 8988 0.7740 +317 9131 0.5350 +317 9140 0.4210 +317 9474 0.4730 +317 9652 0.5090 +317 9927 0.4370 +317 9994 0.4570 +317 10017 0.7370 +317 10018 0.8930 +317 10059 0.4730 +317 10105 0.5010 +317 10392 0.7190 +317 10480 0.4940 +317 10525 0.6680 +317 10533 0.4900 +317 10542 0.5330 +317 11035 0.4720 +317 11334 0.5060 +317 22861 0.7140 +317 22900 0.7380 +317 23001 0.4150 +317 23411 0.4210 +317 23581 0.5100 +317 23626 0.5370 +317 27113 0.5810 +317 27429 0.8140 +317 29108 0.5730 +317 51024 0.5040 +317 51074 0.9690 +317 51499 0.4890 +317 54205 0.9990 +317 55075 0.9030 +317 55367 0.6330 +317 55655 0.4740 +317 55669 0.4240 +317 57099 0.9910 +317 57448 0.4870 +317 58484 0.7280 +317 59082 0.6640 +317 64127 0.5960 +317 64170 0.5290 +317 79370 0.5270 +317 79444 0.5010 +317 79680 0.6220 +317 80013 0.6530 +317 81669 0.4090 +317 84191 0.5240 +317 84260 0.5450 +317 90427 0.5510 +317 112770 0.4140 +317 114987 0.4130 +317 121457 0.6490 +317 137902 0.5140 +317 197259 0.5170 +317 257202 0.4440 +317 284131 0.5040 +317 389384 0.4140 +317 493869 0.4440 +317 100528021 0.4140 +318 953 0.9020 +318 956 0.9040 +318 1271 0.6680 +318 1503 0.9360 +318 1797 0.4200 +318 1854 0.4070 +318 2272 0.8260 +318 2977 0.9030 +318 2982 0.9030 +318 2983 0.9030 +318 2984 0.9070 +318 2986 0.9050 +318 3000 0.9050 +318 3094 0.4570 +318 3590 0.7780 +318 3704 0.9400 +318 3735 0.4190 +318 4337 0.8160 +318 4521 0.6270 +318 4830 0.9100 +318 4831 0.9140 +318 4832 0.9220 +318 4833 0.9080 +318 4881 0.9050 +318 4882 0.9050 +318 5167 0.9150 +318 5169 0.9120 +318 5313 0.9030 +318 5315 0.9040 +318 7371 0.4310 +318 10201 0.9360 +318 11051 0.5710 +318 11162 0.5080 +318 11163 0.5430 +318 11164 0.7290 +318 11165 0.7110 +318 25961 0.5820 +318 28960 0.4500 +318 29922 0.9090 +318 29966 0.4170 +318 53343 0.6910 +318 54464 0.4920 +318 54840 0.4520 +318 54963 0.4170 +318 55270 0.7680 +318 55802 0.4820 +318 55811 0.9000 +318 56474 0.9360 +318 79873 0.6610 +318 80153 0.4540 +318 83549 0.4590 +318 83594 0.7870 +318 84304 0.6780 +318 84681 0.4450 +318 128240 0.4180 +318 131870 0.5860 +318 138716 0.4170 +318 167227 0.5190 +318 196513 0.4940 +318 196883 0.9030 +318 200035 0.7270 +318 221264 0.9090 +318 254552 0.5220 +318 256281 0.6690 +318 283927 0.5750 +318 377841 0.9000 +318 390916 0.6220 +318 440193 0.4060 +318 654364 0.9080 +319 325 0.5080 +319 335 0.9120 +319 336 0.9210 +319 337 0.9090 +319 338 0.8980 +319 341 0.8170 +319 344 0.8110 +319 345 0.8920 +319 346 0.8650 +319 347 0.8050 +319 348 0.8650 +319 350 0.9140 +319 351 0.5490 +319 462 0.5040 +319 909 0.4010 +319 1071 0.9810 +319 1191 0.8910 +319 1622 0.5400 +319 2267 0.6440 +319 2822 0.5430 +319 3069 0.5400 +319 3078 0.5490 +319 3080 0.5790 +319 3250 0.7430 +319 3827 0.4230 +319 3931 0.7540 +319 3949 0.5430 +319 3990 0.6980 +319 4018 0.8000 +319 4023 0.6130 +319 4481 0.5400 +319 5265 0.5790 +319 5360 0.8680 +319 5444 0.8880 +319 5445 0.4030 +319 5446 0.5800 +319 6288 0.7880 +319 6289 0.7850 +319 6291 0.7580 +319 7276 0.5760 +319 7436 0.5680 +319 7941 0.6110 +319 8504 0.5400 +319 8542 0.9290 +319 8693 0.6240 +319 51449 0.7050 +319 51599 0.5700 +319 55829 0.5400 +319 55911 0.5820 +319 55937 0.9010 +319 79135 0.7830 +319 116519 0.8550 +319 403284 0.4050 +319 100528017 0.5990 +320 322 0.8220 +320 323 0.8100 +320 333 0.7820 +320 334 0.7460 +320 351 0.9980 +320 673 0.4210 +320 774 0.4540 +320 815 0.5240 +320 864 0.5400 +320 1029 0.5910 +320 1739 0.7540 +320 1740 0.6400 +320 1741 0.6790 +320 1742 0.8160 +320 1827 0.4110 +320 1993 0.4060 +320 2035 0.4850 +320 2054 0.4410 +320 2395 0.5290 +320 2902 0.5800 +320 2903 0.6460 +320 2904 0.8600 +320 2905 0.5350 +320 2906 0.5160 +320 3090 0.4810 +320 3636 0.4020 +320 3690 0.4200 +320 3768 0.7660 +320 3845 0.4250 +320 4255 0.5820 +320 4292 0.6920 +320 4354 0.4570 +320 4355 0.4360 +320 4741 0.4220 +320 4762 0.5120 +320 5663 0.7660 +320 5664 0.4640 +320 5864 0.6040 +320 5865 0.4070 +320 5870 0.4380 +320 6242 0.5010 +320 6324 0.4050 +320 6383 0.4150 +320 6571 0.5000 +320 6616 0.6810 +320 6804 0.8740 +320 6809 0.4460 +320 6810 0.4410 +320 6812 0.9950 +320 6813 0.6250 +320 6814 0.5000 +320 6844 0.5600 +320 6853 0.5930 +320 6854 0.6070 +320 6857 0.5990 +320 7512 0.6490 +320 7804 0.7250 +320 8224 0.5580 +320 8395 0.4470 +320 8497 0.5990 +320 8499 0.7590 +320 8500 0.7880 +320 8506 0.4310 +320 8541 0.8140 +320 8573 0.9990 +320 8651 0.4060 +320 8825 0.9920 +320 8913 0.6220 +320 8997 0.5830 +320 9256 0.5400 +320 9369 0.6230 +320 9378 0.9130 +320 9379 0.8270 +320 9413 0.5550 +320 9414 0.4500 +320 9479 0.4290 +320 9973 0.6980 +320 10369 0.4600 +320 10497 0.5690 +320 10716 0.5280 +320 10815 0.5450 +320 11186 0.4300 +320 11249 0.5490 +320 22999 0.6990 +320 23208 0.4210 +320 26047 0.4360 +320 26059 0.4080 +320 30010 0.5110 +320 51560 0.4270 +320 51678 0.4460 +320 55327 0.9810 +320 55450 0.4030 +320 55851 0.4230 +320 57084 0.4470 +320 57513 0.6800 +320 57524 0.8410 +320 57576 0.9770 +320 64130 0.9250 +320 64398 0.4770 +320 79937 0.7830 +320 85445 0.7800 +320 112755 0.6060 +320 114805 0.4080 +320 254170 0.4060 +320 259197 0.7040 +320 283209 0.4080 +320 375337 0.4120 +320 643836 0.4240 +321 322 0.8110 +321 323 0.8280 +321 333 0.6310 +321 334 0.6760 +321 351 0.9980 +321 673 0.4050 +321 864 0.4610 +321 1029 0.5850 +321 2316 0.5660 +321 2558 0.4250 +321 2890 0.5760 +321 3831 0.5570 +321 3845 0.4020 +321 4255 0.5290 +321 4292 0.6650 +321 4692 0.5630 +321 4762 0.4790 +321 5663 0.6870 +321 5664 0.4120 +321 6804 0.7890 +321 6812 0.9660 +321 6813 0.5030 +321 6814 0.4110 +321 7512 0.6490 +321 8573 0.7510 +321 8825 0.4600 +321 8883 0.4230 +321 8913 0.5960 +321 8924 0.4440 +321 9265 0.4370 +321 9266 0.4360 +321 9369 0.5960 +321 9378 0.8200 +321 9379 0.6590 +321 9746 0.4580 +321 9863 0.6070 +321 9900 0.4250 +321 9992 0.5010 +321 10513 0.4240 +321 10868 0.5080 +321 11186 0.4180 +321 22871 0.4810 +321 22883 0.9230 +321 23096 0.5220 +321 23240 0.4980 +321 23359 0.4740 +321 23623 0.4060 +321 51555 0.6330 +321 54715 0.4220 +321 56160 0.7460 +321 57194 0.4160 +321 57576 0.6470 +321 58157 0.4250 +321 58512 0.5990 +321 63941 0.9310 +321 64084 0.4030 +321 64837 0.5280 +321 79596 0.4250 +321 89953 0.4770 +321 93643 0.5540 +321 114791 0.4170 +321 114798 0.4920 +321 147700 0.5020 +321 160622 0.8510 +321 161145 0.5010 +321 192683 0.4900 +321 728310 0.4750 +322 323 0.8700 +322 333 0.9860 +322 334 0.9840 +322 348 0.6230 +322 351 0.9990 +322 382 0.4490 +322 472 0.5660 +322 642 0.4180 +322 1465 0.4380 +322 1742 0.5210 +322 1808 0.5210 +322 2023 0.4530 +322 2597 0.5010 +322 2874 0.4250 +322 2932 0.5940 +322 3014 0.6530 +322 3017 0.5170 +322 3018 0.5170 +322 3065 0.6370 +322 3305 0.4120 +322 3553 0.4900 +322 3732 0.7640 +322 3897 0.4070 +322 3960 0.5820 +322 4035 0.9180 +322 4036 0.5940 +322 4137 0.5920 +322 4311 0.4130 +322 4361 0.5580 +322 4683 0.4990 +322 4790 0.4390 +322 4851 0.4920 +322 5173 0.4580 +322 5599 0.9420 +322 5663 0.7030 +322 5664 0.5880 +322 5725 0.7520 +322 5813 0.4420 +322 5903 0.4060 +322 6015 0.4110 +322 6045 0.4230 +322 6184 0.5360 +322 6464 0.4800 +322 6585 0.4170 +322 6640 0.4890 +322 6653 0.4780 +322 6812 0.4060 +322 6855 0.5750 +322 6907 0.4190 +322 7024 0.9280 +322 7277 0.4690 +322 7342 0.5540 +322 7408 0.5390 +322 7436 0.6880 +322 7512 0.5730 +322 7528 0.4610 +322 7532 0.6100 +322 7804 0.8980 +322 7846 0.5190 +322 8290 0.5630 +322 8295 0.4840 +322 8340 0.5170 +322 8341 0.5170 +322 8342 0.5170 +322 8345 0.5170 +322 8347 0.5170 +322 8348 0.5170 +322 8349 0.5350 +322 8361 0.5660 +322 8883 0.4230 +322 8970 0.5170 +322 8976 0.4070 +322 9479 0.7450 +322 9546 0.4800 +322 9611 0.6220 +322 9744 0.4100 +322 9784 0.6180 +322 9844 0.4050 +322 9900 0.4730 +322 10111 0.5220 +322 10307 0.4850 +322 10418 0.7950 +322 10524 0.9990 +322 10856 0.4030 +322 10858 0.4090 +322 22883 0.4280 +322 22953 0.4650 +322 23118 0.6610 +322 23327 0.4200 +322 23385 0.5350 +322 23558 0.4930 +322 23621 0.7910 +322 25942 0.4440 +322 25945 0.4310 +322 51107 0.4420 +322 51466 0.5010 +322 51567 0.4110 +322 51655 0.6710 +322 54103 0.5330 +322 54145 0.5170 +322 54518 0.8320 +322 55740 0.8600 +322 55851 0.4560 +322 57142 0.4050 +322 57616 0.4420 +322 79026 0.4230 +322 79258 0.5130 +322 79718 0.4040 +322 81890 0.7850 +322 85236 0.5170 +322 85360 0.6130 +322 90665 0.4300 +322 128312 0.5170 +322 255626 0.5170 +323 333 0.9330 +323 334 0.9190 +323 351 0.9950 +323 590 0.4440 +323 642 0.4750 +323 1636 0.4850 +323 1956 0.7380 +323 3290 0.4710 +323 4089 0.4180 +323 4690 0.4220 +323 5663 0.4370 +323 5664 0.4230 +323 5725 0.4290 +323 6812 0.5150 +323 7512 0.5700 +323 8573 0.4720 +323 8650 0.4100 +323 8825 0.4140 +323 9253 0.4240 +323 9479 0.4190 +323 9846 0.4400 +323 9885 0.4470 +323 10307 0.4510 +323 10513 0.4680 +323 10524 0.5070 +323 10858 0.5270 +323 23102 0.4050 +323 23621 0.4650 +323 26251 0.4540 +323 29979 0.4410 +323 51741 0.4340 +323 54502 0.4090 +323 55255 0.4640 +323 55809 0.4150 +323 56776 0.4090 +323 57576 0.4600 +323 57679 0.4590 +323 63941 0.4170 +323 80008 0.4110 +323 81890 0.6930 +323 84144 0.4420 +323 85360 0.4320 +323 92483 0.4930 +323 119391 0.4210 +323 149111 0.4040 +323 259173 0.4710 +324 595 0.5950 +324 607 0.6690 +324 673 0.4420 +324 699 0.7520 +324 701 0.5940 +324 836 0.8230 +324 991 0.5300 +324 999 0.9200 +324 1000 0.7870 +324 1001 0.5850 +324 1002 0.5520 +324 1003 0.5770 +324 1004 0.5520 +324 1005 0.5550 +324 1006 0.5550 +324 1007 0.5420 +324 1008 0.5490 +324 1009 0.5720 +324 1010 0.5400 +324 1012 0.6050 +324 1013 0.5520 +324 1015 0.7080 +324 1016 0.5400 +324 1045 0.5710 +324 1452 0.9990 +324 1453 0.4830 +324 1454 0.8850 +324 1457 0.7490 +324 1460 0.5500 +324 1487 0.9650 +324 1495 0.9750 +324 1496 0.5770 +324 1499 0.9990 +324 1500 0.7810 +324 1739 0.7790 +324 1742 0.5520 +324 1855 0.9890 +324 1856 0.9640 +324 1857 0.9310 +324 1956 0.4180 +324 2237 0.6030 +324 2314 0.4140 +324 2535 0.7860 +324 2931 0.9970 +324 2932 0.9990 +324 2944 0.4390 +324 3065 0.5880 +324 3172 0.7850 +324 3728 0.9800 +324 3845 0.6110 +324 3848 0.4050 +324 3857 0.4050 +324 4040 0.8770 +324 4041 0.9030 +324 4089 0.6150 +324 4292 0.4390 +324 4335 0.4560 +324 4593 0.4450 +324 4609 0.6130 +324 5290 0.4890 +324 5319 0.4850 +324 5320 0.5420 +324 5515 0.5780 +324 5516 0.5360 +324 5518 0.5340 +324 5519 0.5040 +324 5524 0.4060 +324 5525 0.6320 +324 5526 0.4990 +324 5527 0.4990 +324 5528 0.4990 +324 5529 0.5040 +324 5728 0.4780 +324 5743 0.5130 +324 5747 0.4780 +324 5783 0.9290 +324 5903 0.6500 +324 5929 0.5000 +324 5959 0.4540 +324 5996 0.5310 +324 6233 0.5050 +324 6249 0.7710 +324 6422 0.4280 +324 6477 0.9730 +324 6478 0.4050 +324 6500 0.9440 +324 6728 0.7120 +324 6737 0.4790 +324 6774 0.5280 +324 6907 0.9080 +324 6932 0.9560 +324 6934 0.8140 +324 7088 0.5610 +324 7089 0.5260 +324 7090 0.5080 +324 7091 0.5230 +324 7157 0.6100 +324 7311 0.4990 +324 7314 0.5130 +324 7316 0.5160 +324 7371 0.4750 +324 7471 0.7600 +324 7472 0.6820 +324 7473 0.8250 +324 7474 0.4580 +324 7476 0.4040 +324 7478 0.6120 +324 7479 0.6100 +324 7804 0.4240 +324 7874 0.6330 +324 7905 0.7230 +324 8085 0.5840 +324 8312 0.9990 +324 8313 0.9990 +324 8321 0.7140 +324 8454 0.6930 +324 8549 0.5400 +324 8642 0.5550 +324 8658 0.6470 +324 8739 0.7860 +324 8826 0.7310 +324 8945 0.9980 +324 9070 0.4990 +324 9184 0.5990 +324 9215 0.4370 +324 9978 0.5180 +324 10023 0.5800 +324 10297 0.9110 +324 10544 0.4130 +324 10656 0.4400 +324 10657 0.9540 +324 10982 0.5510 +324 11197 0.4260 +324 22881 0.4740 +324 22919 0.9520 +324 22920 0.7330 +324 22943 0.5070 +324 22954 0.4240 +324 23291 0.4540 +324 23401 0.4610 +324 23499 0.5420 +324 23513 0.6590 +324 25831 0.5080 +324 25960 0.7320 +324 25962 0.4700 +324 26108 0.5610 +324 26118 0.4290 +324 27101 0.9000 +324 27123 0.4010 +324 27231 0.4750 +324 28316 0.5520 +324 28513 0.5400 +324 29966 0.4220 +324 50649 0.9990 +324 50807 0.9640 +324 51176 0.8480 +324 51270 0.8840 +324 51433 0.4390 +324 54764 0.9360 +324 54878 0.6930 +324 54894 0.6020 +324 54963 0.4750 +324 54981 0.4760 +324 55905 0.4260 +324 56288 0.4380 +324 56998 0.9510 +324 57216 0.4890 +324 60437 0.5400 +324 64072 0.5550 +324 64397 0.4360 +324 64403 0.5400 +324 64405 0.5520 +324 65055 0.5230 +324 79718 0.9030 +324 80351 0.5000 +324 80829 0.4240 +324 81847 0.4290 +324 83439 0.7750 +324 83549 0.4750 +324 84260 0.6380 +324 84749 0.4210 +324 89780 0.7950 +324 90665 0.9020 +324 90780 0.5450 +324 120892 0.7450 +324 122011 0.9020 +324 139285 0.9980 +324 221178 0.9830 +324 222256 0.5400 +324 283149 0.6350 +324 284654 0.4770 +325 335 0.8510 +325 336 0.6400 +325 337 0.8360 +325 338 0.4140 +325 345 0.6620 +325 348 0.9330 +325 350 0.7660 +325 351 0.8560 +325 462 0.6110 +325 563 0.6060 +325 567 0.7670 +325 629 0.4220 +325 715 0.4440 +325 716 0.5990 +325 718 0.5420 +325 720 0.6500 +325 721 0.6400 +325 722 0.7110 +325 725 0.5690 +325 730 0.5420 +325 731 0.4870 +325 735 0.6680 +325 796 0.5320 +325 813 0.6360 +325 820 0.4380 +325 866 0.4070 +325 922 0.5690 +325 960 0.4650 +325 1191 0.5070 +325 1356 0.4460 +325 1361 0.6120 +325 1401 0.9070 +325 1471 0.5930 +325 1508 0.4750 +325 1509 0.4630 +325 2147 0.4270 +325 2158 0.4240 +325 2159 0.4680 +325 2204 0.4700 +325 2209 0.6150 +325 2212 0.9700 +325 2220 0.4290 +325 2243 0.7910 +325 2244 0.6240 +325 2266 0.5150 +325 2267 0.4030 +325 2335 0.8840 +325 2638 0.5610 +325 2919 0.4730 +325 2934 0.7110 +325 3012 0.4990 +325 3013 0.4990 +325 3014 0.4990 +325 3015 0.5050 +325 3017 0.4990 +325 3018 0.4990 +325 3021 0.5160 +325 3053 0.5250 +325 3080 0.4610 +325 3240 0.6040 +325 3263 0.5610 +325 3273 0.8080 +325 3339 0.7390 +325 3375 0.7850 +325 3428 0.6320 +325 3553 0.4590 +325 3569 0.6550 +325 3630 0.6040 +325 3697 0.4080 +325 3698 0.4730 +325 3699 0.4710 +325 3700 0.6710 +325 3827 0.4920 +325 3929 0.4180 +325 3950 0.4110 +325 3959 0.5490 +325 4018 0.4450 +325 4057 0.6220 +325 4060 0.5760 +325 4069 0.5890 +325 4153 0.7520 +325 4240 0.5340 +325 4314 0.4740 +325 4318 0.5060 +325 4332 0.4300 +325 4811 0.4050 +325 4878 0.5340 +325 4948 0.6800 +325 5004 0.5810 +325 5005 0.5280 +325 5265 0.5710 +325 5267 0.4330 +325 5340 0.5290 +325 5444 0.5240 +325 5617 0.5140 +325 5858 0.4020 +325 5950 0.7750 +325 5955 0.4040 +325 6288 0.9170 +325 6289 0.8410 +325 6291 0.5860 +325 6406 0.5340 +325 6622 0.5650 +325 6708 0.5350 +325 6804 0.4670 +325 7045 0.5760 +325 7276 0.9490 +325 7448 0.6910 +325 8128 0.5050 +325 8331 0.4990 +325 8334 0.4990 +325 8337 0.5190 +325 8338 0.5190 +325 8340 0.4990 +325 8341 0.4990 +325 8342 0.4990 +325 8345 0.4990 +325 8347 0.4990 +325 8348 0.4990 +325 8349 0.5080 +325 8356 0.5140 +325 8361 0.5150 +325 8370 0.4360 +325 8407 0.4910 +325 8542 0.5470 +325 8547 0.6690 +325 8720 0.4420 +325 8970 0.4990 +325 9445 0.5280 +325 10087 0.8620 +325 10747 0.5360 +325 10998 0.4210 +325 11001 0.4170 +325 22926 0.4040 +325 51360 0.4750 +325 54145 0.4990 +325 54959 0.4990 +325 55937 0.4820 +325 81494 0.4580 +325 84699 0.7230 +325 85236 0.4990 +325 85477 0.4050 +325 126961 0.5540 +325 128312 0.4990 +325 255626 0.4990 +325 474382 0.4990 +325 653604 0.5230 +325 100528017 0.5180 +326 545 0.4180 +326 846 0.6100 +326 904 0.6360 +326 920 0.6350 +326 925 0.5810 +326 930 0.4050 +326 941 0.6640 +326 958 0.4580 +326 987 0.4560 +326 1025 0.4910 +326 1134 0.7640 +326 1144 0.4400 +326 1146 0.4370 +326 1236 0.4110 +326 1387 0.7330 +326 1493 0.4810 +326 1544 0.6930 +326 1644 0.5540 +326 1655 0.7100 +326 1861 0.5270 +326 2534 0.4990 +326 2806 0.6020 +326 3020 0.9150 +326 3021 0.9830 +326 3065 0.5000 +326 3066 0.4990 +326 3191 0.5350 +326 3309 0.4360 +326 3394 0.6530 +326 3439 0.4200 +326 3458 0.4450 +326 3467 0.5750 +326 3558 0.4430 +326 3586 0.4440 +326 3594 0.4300 +326 3605 0.5400 +326 3622 0.4370 +326 3630 0.6870 +326 3852 0.4520 +326 3856 0.4120 +326 3872 0.4900 +326 4049 0.5690 +326 4050 0.6880 +326 4055 0.7720 +326 4072 0.4940 +326 4240 0.4820 +326 4791 0.6290 +326 5591 0.7660 +326 5696 0.5160 +326 5788 0.4560 +326 5798 0.5550 +326 5885 0.5690 +326 5896 0.4960 +326 5928 0.4270 +326 5931 0.4120 +326 5949 0.4850 +326 5971 0.6820 +326 6426 0.4610 +326 6519 0.5150 +326 6772 0.4340 +326 7038 0.4420 +326 7153 0.6310 +326 7520 0.4030 +326 8243 0.4020 +326 8290 0.9870 +326 8349 0.4780 +326 8350 0.9550 +326 8351 0.9150 +326 8352 0.9150 +326 8353 0.9150 +326 8354 0.9150 +326 8355 0.9150 +326 8356 0.9890 +326 8357 0.9150 +326 8358 0.9150 +326 8456 0.7560 +326 8718 0.6140 +326 8740 0.4390 +326 8968 0.9160 +326 9126 0.5790 +326 9247 0.5350 +326 9688 0.5680 +326 10279 0.4660 +326 10522 0.6720 +326 10691 0.4640 +326 11136 0.7460 +326 22861 0.4110 +326 23308 0.5590 +326 23411 0.5630 +326 23765 0.4780 +326 26065 0.4470 +326 26191 0.5320 +326 26273 0.4520 +326 28996 0.5130 +326 29841 0.4410 +326 29947 0.5310 +326 50616 0.5720 +326 50943 0.6480 +326 54556 0.4190 +326 55079 0.6420 +326 57697 0.4190 +326 58484 0.4420 +326 64170 0.7160 +326 64421 0.4980 +326 81704 0.4440 +326 84662 0.4210 +326 84905 0.4910 +326 92906 0.4030 +326 112398 0.8690 +326 112744 0.5590 +326 114548 0.4600 +326 122706 0.6040 +326 126206 0.8030 +326 126961 0.9150 +326 170685 0.8390 +326 283518 0.5000 +326 333932 0.9150 +326 440093 0.9830 +326 440686 0.9830 +326 653604 0.9830 +327 407 0.6840 +327 409 0.4560 +327 443 0.6680 +327 788 0.4020 +327 875 0.5920 +327 1803 0.7330 +327 1910 0.4370 +327 2547 0.4430 +327 2720 0.7240 +327 3329 0.4290 +327 3630 0.4190 +327 3658 0.4160 +327 3964 0.6040 +327 4145 0.4300 +327 4191 0.5020 +327 4306 0.7250 +327 4482 0.6980 +327 4485 0.8370 +327 4486 0.5090 +327 4924 0.4160 +327 5018 0.5940 +327 5051 0.4830 +327 5211 0.5220 +327 5538 0.5160 +327 5550 0.9310 +327 5663 0.5260 +327 6472 0.4710 +327 7284 0.5300 +327 7384 0.4450 +327 8099 0.5100 +327 8927 0.6060 +327 9581 0.5800 +327 9784 0.4010 +327 9798 0.7910 +327 9807 0.4110 +327 10072 0.5000 +327 10422 0.6180 +327 10733 0.4650 +327 10908 0.4430 +327 11180 0.5170 +327 11313 0.4540 +327 23385 0.9110 +327 26040 0.4390 +327 29952 0.4030 +327 51107 0.4610 +327 51246 0.4580 +327 54858 0.5890 +327 54933 0.4240 +327 55851 0.8220 +327 57124 0.6070 +327 57406 0.4100 +327 57552 0.4060 +327 63891 0.4630 +327 79876 0.4530 +327 83451 0.5090 +327 83464 0.4300 +327 83707 0.4300 +327 83986 0.4640 +327 112849 0.4210 +328 357 0.5830 +328 472 0.6810 +328 545 0.4200 +328 596 0.6500 +328 641 0.4440 +328 672 0.5900 +328 675 0.5850 +328 847 0.5200 +328 972 0.4490 +328 1019 0.4120 +328 1111 0.5580 +328 1161 0.4470 +328 1385 0.6450 +328 1642 0.4940 +328 1643 0.4740 +328 1647 0.9350 +328 1763 0.4950 +328 1791 0.4280 +328 1854 0.5960 +328 2033 0.9440 +328 2067 0.7740 +328 2068 0.7430 +328 2071 0.5700 +328 2072 0.8320 +328 2073 0.6340 +328 2074 0.5660 +328 2091 0.4460 +328 2099 0.6790 +328 2212 0.7100 +328 2237 0.9980 +328 2309 0.5210 +328 2547 0.6850 +328 2597 0.6890 +328 2739 0.5340 +328 2745 0.4890 +328 2877 0.7250 +328 2878 0.5770 +328 2880 0.5780 +328 2882 0.6110 +328 2936 0.6680 +328 2956 0.7590 +328 3001 0.8830 +328 3014 0.4470 +328 3065 0.5580 +328 3066 0.4820 +328 3091 0.7820 +328 3146 0.4690 +328 3148 0.5140 +328 3187 0.5060 +328 3188 0.4560 +328 3191 0.4570 +328 3304 0.5650 +328 3320 0.4300 +328 3326 0.4980 +328 3364 0.7220 +328 3608 0.5270 +328 3615 0.4980 +328 3725 0.6810 +328 3978 0.9960 +328 3980 0.9730 +328 3981 0.7410 +328 4082 0.6290 +328 4123 0.5880 +328 4141 0.4310 +328 4143 0.4420 +328 4170 0.4120 +328 4175 0.4030 +328 4176 0.5380 +328 4193 0.5400 +328 4217 0.5210 +328 4255 0.6180 +328 4292 0.6630 +328 4350 0.8920 +328 4361 0.5840 +328 4436 0.6750 +328 4437 0.5880 +328 4507 0.4290 +328 4521 0.4590 +328 4595 0.9750 +328 4609 0.4520 +328 4683 0.4310 +328 4691 0.5690 +328 4780 0.5680 +328 4830 0.9820 +328 4869 0.8710 +328 4904 0.8960 +328 4913 0.9940 +328 4968 0.9860 +328 5004 0.4020 +328 5018 0.6080 +328 5052 0.5960 +328 5111 0.8640 +328 5243 0.4230 +328 5315 0.4730 +328 5378 0.4510 +328 5395 0.5520 +328 5423 0.9980 +328 5424 0.7610 +328 5425 0.7660 +328 5426 0.6840 +328 5427 0.6120 +328 5428 0.6650 +328 5434 0.4030 +328 5435 0.4200 +328 5437 0.4330 +328 5591 0.6170 +328 5594 0.5130 +328 5625 0.7200 +328 5641 0.4330 +328 5728 0.4090 +328 5832 0.5540 +328 5883 0.6800 +328 5884 0.4400 +328 5886 0.4320 +328 5887 0.5590 +328 5888 0.6850 +328 5889 0.4500 +328 5890 0.4140 +328 5892 0.4100 +328 5893 0.5320 +328 5932 0.4280 +328 5980 0.5160 +328 5981 0.5990 +328 5982 0.6350 +328 5983 0.6260 +328 5984 0.6530 +328 5985 0.6600 +328 6059 0.4400 +328 6093 0.6890 +328 6117 0.7320 +328 6118 0.6680 +328 6119 0.6800 +328 6175 0.6200 +328 6188 0.4700 +328 6193 0.4430 +328 6208 0.5610 +328 6418 0.8590 +328 6632 0.5480 +328 6633 0.5210 +328 6634 0.6040 +328 6635 0.4720 +328 6636 0.5490 +328 6637 0.4470 +328 6648 0.4680 +328 6742 0.5130 +328 6774 0.7090 +328 6943 0.4200 +328 6950 0.4310 +328 6996 0.9050 +328 7013 0.6780 +328 7014 0.6720 +328 7150 0.5860 +328 7153 0.4760 +328 7155 0.5240 +328 7157 0.9440 +328 7158 0.5260 +328 7295 0.9830 +328 7296 0.5900 +328 7374 0.9630 +328 7450 0.4350 +328 7486 0.8770 +328 7507 0.7990 +328 7508 0.4930 +328 7515 0.9990 +328 7516 0.4860 +328 7517 0.7340 +328 7518 0.6950 +328 7520 0.7990 +328 7837 0.5440 +328 8091 0.6260 +328 8125 0.9960 +328 8243 0.4480 +328 8294 0.8000 +328 8317 0.4040 +328 8329 0.8000 +328 8330 0.8000 +328 8332 0.8000 +328 8336 0.8000 +328 8339 0.8000 +328 8343 0.8000 +328 8344 0.8000 +328 8346 0.8010 +328 8347 0.8150 +328 8349 0.8380 +328 8359 0.8000 +328 8360 0.8000 +328 8361 0.8410 +328 8362 0.8000 +328 8363 0.8000 +328 8364 0.8030 +328 8366 0.8000 +328 8367 0.8000 +328 8368 0.8000 +328 8370 0.8000 +328 8505 0.6610 +328 8545 0.5180 +328 8565 0.4270 +328 8930 0.7910 +328 8945 0.4100 +328 8969 0.8000 +328 9156 0.7260 +328 9400 0.4350 +328 9401 0.8580 +328 9446 0.4070 +328 9588 0.4440 +328 9611 0.4560 +328 9941 0.5510 +328 10038 0.8660 +328 10146 0.4240 +328 10574 0.6850 +328 10714 0.5940 +328 10842 0.4730 +328 11073 0.5230 +328 11165 0.4820 +328 11200 0.5010 +328 11201 0.4530 +328 11284 0.9360 +328 23028 0.4400 +328 23304 0.5520 +328 23411 0.7970 +328 23583 0.8520 +328 25828 0.4270 +328 27030 0.4400 +328 27301 0.9420 +328 27339 0.4500 +328 27343 0.6030 +328 27434 0.4740 +328 50813 0.4350 +328 51455 0.5460 +328 51548 0.7080 +328 51567 0.7120 +328 54107 0.6020 +328 54784 0.6380 +328 54840 0.8810 +328 55247 0.7670 +328 55775 0.9040 +328 56655 0.5560 +328 56852 0.6200 +328 57379 0.4340 +328 57477 0.6570 +328 57619 0.5430 +328 57697 0.6630 +328 57804 0.5590 +328 79661 0.7930 +328 79786 0.4790 +328 79840 0.4670 +328 79902 0.4070 +328 80198 0.6270 +328 80745 0.4100 +328 83990 0.4550 +328 84126 0.4610 +328 84893 0.4070 +328 84967 0.4050 +328 85452 0.4570 +328 87178 0.4510 +328 91442 0.4300 +328 116447 0.4080 +328 116986 0.4430 +328 119391 0.4750 +328 121504 0.8000 +328 121642 0.5010 +328 126961 0.8180 +328 131474 0.5720 +328 133482 0.4480 +328 137902 0.5430 +328 144811 0.4240 +328 146956 0.4020 +328 197131 0.4420 +328 200558 0.4020 +328 252969 0.7140 +328 257202 0.5780 +328 283677 0.4340 +328 284439 0.4140 +328 333932 0.8180 +328 404672 0.4220 +328 493869 0.5840 +328 554313 0.8000 +328 653604 0.8700 +328 100533467 0.5990 +329 330 0.9960 +329 331 0.9960 +329 332 0.8780 +329 351 0.4090 +329 355 0.4840 +329 356 0.5660 +329 387 0.6810 +329 472 0.4480 +329 578 0.4570 +329 595 0.5310 +329 596 0.7150 +329 597 0.5380 +329 598 0.7590 +329 599 0.4530 +329 695 0.9510 +329 834 0.7360 +329 835 0.8720 +329 836 0.9970 +329 837 0.4690 +329 838 0.4140 +329 839 0.6090 +329 840 0.9970 +329 841 0.9710 +329 842 0.9990 +329 843 0.6590 +329 891 0.4230 +329 939 0.4070 +329 943 0.5370 +329 958 0.9720 +329 959 0.7570 +329 983 0.4080 +329 1017 0.4330 +329 1019 0.4430 +329 1021 0.4290 +329 1075 0.6720 +329 1147 0.8650 +329 1499 0.4080 +329 1508 0.7200 +329 1509 0.6860 +329 1512 0.6610 +329 1513 0.6630 +329 1514 0.6800 +329 1515 0.6630 +329 1519 0.6600 +329 1520 0.7170 +329 1521 0.6600 +329 1522 0.6600 +329 1540 0.9430 +329 1654 0.8220 +329 1755 0.6950 +329 1869 0.7190 +329 1956 0.5620 +329 1977 0.4500 +329 2021 0.5610 +329 2597 0.9450 +329 2919 0.5350 +329 2921 0.4820 +329 2932 0.5850 +329 3091 0.4230 +329 3320 0.4250 +329 3456 0.4010 +329 3551 0.8900 +329 3553 0.4810 +329 3569 0.4170 +329 3619 0.4650 +329 3654 0.7260 +329 3725 0.4700 +329 3763 0.6780 +329 3767 0.6990 +329 4049 0.6940 +329 4050 0.6360 +329 4055 0.7900 +329 4170 0.6510 +329 4193 0.4820 +329 4214 0.8600 +329 4215 0.4090 +329 4318 0.4070 +329 4609 0.5200 +329 4790 0.7730 +329 4791 0.7480 +329 4792 0.7260 +329 4828 0.6910 +329 5122 0.4820 +329 5366 0.4680 +329 5414 0.9130 +329 5599 0.4200 +329 5657 0.4210 +329 5682 0.4830 +329 5683 0.4340 +329 5684 0.4420 +329 5685 0.4890 +329 5686 0.4500 +329 5687 0.4570 +329 5688 0.4180 +329 5689 0.4710 +329 5690 0.4110 +329 5691 0.4150 +329 5692 0.4170 +329 5693 0.4330 +329 5694 0.4400 +329 5695 0.4120 +329 5696 0.4440 +329 5698 0.4550 +329 5699 0.4100 +329 5700 0.4650 +329 5701 0.4540 +329 5702 0.4010 +329 5704 0.4060 +329 5705 0.4270 +329 5706 0.4890 +329 5707 0.4580 +329 5708 0.4290 +329 5710 0.4600 +329 5711 0.4280 +329 5713 0.4280 +329 5714 0.4160 +329 5715 0.4690 +329 5716 0.4790 +329 5717 0.4060 +329 5718 0.4210 +329 5720 0.4470 +329 5721 0.4430 +329 5728 0.4480 +329 5879 0.6600 +329 5894 0.4490 +329 5966 0.5710 +329 5970 0.7950 +329 5971 0.6190 +329 6047 0.6220 +329 6233 0.9810 +329 6500 0.4500 +329 6714 0.6100 +329 6774 0.4600 +329 6790 0.6140 +329 6795 0.5370 +329 6885 0.9690 +329 7057 0.4060 +329 7098 0.7340 +329 7099 0.8040 +329 7124 0.9990 +329 7128 0.9310 +329 7132 0.9990 +329 7133 0.8820 +329 7157 0.5870 +329 7184 0.6600 +329 7185 0.9990 +329 7186 0.9990 +329 7187 0.9990 +329 7188 0.9990 +329 7189 0.9930 +329 7311 0.9490 +329 7314 0.9600 +329 7316 0.9910 +329 7317 0.4440 +329 7321 0.9780 +329 7322 0.9940 +329 7323 0.9830 +329 7332 0.8000 +329 7334 0.9980 +329 7335 0.8240 +329 7336 0.6030 +329 7337 0.5930 +329 7375 0.5400 +329 7409 0.4040 +329 7412 0.4830 +329 7874 0.4270 +329 7979 0.4010 +329 8408 0.4080 +329 8454 0.4100 +329 8517 0.9920 +329 8600 0.6070 +329 8678 0.9960 +329 8717 0.9990 +329 8718 0.5430 +329 8722 0.6670 +329 8737 0.9990 +329 8738 0.5060 +329 8740 0.6700 +329 8742 0.7960 +329 8743 0.5370 +329 8767 0.9930 +329 8772 0.9940 +329 8792 0.5680 +329 8795 0.6250 +329 8797 0.5880 +329 8805 0.4320 +329 8837 0.9480 +329 8870 0.4720 +329 8878 0.4310 +329 8887 0.9120 +329 8915 0.8310 +329 9020 0.8880 +329 9099 0.4940 +329 9140 0.4170 +329 9212 0.6070 +329 9246 0.4100 +329 9491 0.4580 +329 9525 0.4190 +329 9641 0.7960 +329 9755 0.4800 +329 9817 0.4150 +329 9825 0.6200 +329 9861 0.4160 +329 9958 0.4430 +329 10010 0.9340 +329 10018 0.5640 +329 10133 0.7230 +329 10197 0.4680 +329 10213 0.5460 +329 10273 0.4830 +329 10318 0.4460 +329 10392 0.8610 +329 10399 0.4220 +329 10413 0.6780 +329 10454 0.8250 +329 10616 0.9750 +329 10673 0.6880 +329 10869 0.7200 +329 10892 0.4800 +329 10913 0.4480 +329 10935 0.6610 +329 11035 0.9760 +329 11146 0.6020 +329 23118 0.8770 +329 23198 0.4510 +329 23581 0.4440 +329 23643 0.4690 +329 25793 0.7340 +329 25999 0.5320 +329 26043 0.5400 +329 26499 0.4030 +329 27005 0.4110 +329 27338 0.8930 +329 27429 0.9950 +329 29110 0.8330 +329 50837 0.4160 +329 51027 0.5440 +329 51035 0.6740 +329 51330 0.7680 +329 51465 0.6370 +329 51474 0.4830 +329 54101 0.4500 +329 54205 0.6310 +329 54469 0.6730 +329 54739 0.5590 +329 54876 0.4710 +329 55072 0.9950 +329 55593 0.4610 +329 55611 0.6610 +329 55905 0.4410 +329 56957 0.5950 +329 57162 0.4420 +329 57448 0.4720 +329 57506 0.5150 +329 58484 0.5030 +329 64127 0.8320 +329 79155 0.6680 +329 79444 0.8500 +329 81858 0.9840 +329 83737 0.6110 +329 84433 0.5170 +329 92610 0.5550 +329 115650 0.8100 +329 122706 0.4130 +329 133482 0.5680 +329 148022 0.5080 +329 152926 0.4630 +329 192111 0.5200 +329 197259 0.6650 +329 220213 0.5160 +329 221302 0.4610 +329 257397 0.8460 +329 345193 0.5100 +329 353376 0.4640 +330 331 0.9940 +330 332 0.7460 +330 355 0.4350 +330 356 0.5070 +330 472 0.5810 +330 578 0.4030 +330 595 0.5940 +330 596 0.7170 +330 597 0.6730 +330 598 0.8130 +330 599 0.4340 +330 602 0.5100 +330 604 0.4110 +330 639 0.5060 +330 695 0.4780 +330 834 0.6940 +330 835 0.5880 +330 836 0.9970 +330 837 0.5560 +330 838 0.4600 +330 839 0.5870 +330 840 0.9890 +330 841 0.9220 +330 842 0.9960 +330 843 0.5960 +330 891 0.4120 +330 939 0.4930 +330 943 0.4600 +330 958 0.9140 +330 959 0.7380 +330 983 0.4070 +330 1017 0.4360 +330 1019 0.4700 +330 1021 0.4670 +330 1029 0.4160 +330 1075 0.6730 +330 1147 0.7580 +330 1236 0.4470 +330 1508 0.6900 +330 1509 0.6800 +330 1512 0.6810 +330 1513 0.6740 +330 1514 0.6840 +330 1515 0.6630 +330 1519 0.6650 +330 1520 0.7440 +330 1521 0.6920 +330 1522 0.6690 +330 1540 0.9440 +330 1654 0.7440 +330 1729 0.4400 +330 1755 0.4580 +330 1869 0.4510 +330 1956 0.5640 +330 2099 0.4070 +330 2531 0.4970 +330 2597 0.9440 +330 2919 0.4510 +330 2920 0.4630 +330 2932 0.5610 +330 3315 0.5160 +330 3316 0.5050 +330 3320 0.5530 +330 3326 0.5650 +330 3383 0.5130 +330 3417 0.4200 +330 3551 0.8960 +330 3552 0.4270 +330 3553 0.5180 +330 3569 0.4950 +330 3576 0.5490 +330 3619 0.4460 +330 3654 0.5820 +330 3656 0.4400 +330 3659 0.7320 +330 3717 0.4070 +330 3725 0.4610 +330 3763 0.4180 +330 3767 0.6670 +330 4049 0.6090 +330 4050 0.7000 +330 4055 0.8160 +330 4170 0.6320 +330 4193 0.5790 +330 4214 0.7350 +330 4318 0.4910 +330 4609 0.5350 +330 4653 0.4260 +330 4790 0.9390 +330 4791 0.8040 +330 4792 0.8270 +330 4794 0.6040 +330 4851 0.5880 +330 5366 0.4950 +330 5414 0.9330 +330 5682 0.4440 +330 5683 0.4100 +330 5684 0.4360 +330 5685 0.4540 +330 5686 0.4750 +330 5687 0.4400 +330 5688 0.4180 +330 5689 0.4540 +330 5690 0.5570 +330 5691 0.4060 +330 5692 0.4010 +330 5693 0.4470 +330 5694 0.4150 +330 5695 0.4100 +330 5696 0.4850 +330 5698 0.5170 +330 5699 0.4360 +330 5700 0.4660 +330 5701 0.4580 +330 5702 0.4190 +330 5704 0.4240 +330 5705 0.4440 +330 5706 0.4450 +330 5707 0.4620 +330 5709 0.4170 +330 5710 0.4660 +330 5711 0.4280 +330 5713 0.4340 +330 5714 0.4290 +330 5715 0.4690 +330 5716 0.4660 +330 5717 0.4230 +330 5718 0.4390 +330 5719 0.4170 +330 5720 0.4420 +330 5721 0.4810 +330 5728 0.4510 +330 5743 0.4510 +330 5966 0.7720 +330 5970 0.8850 +330 5971 0.7170 +330 6233 0.7270 +330 6347 0.4100 +330 6364 0.5760 +330 6648 0.4020 +330 6774 0.5040 +330 6790 0.6050 +330 6795 0.5370 +330 6885 0.9420 +330 7098 0.7080 +330 7099 0.7970 +330 7124 0.9640 +330 7128 0.9160 +330 7132 0.9990 +330 7133 0.9340 +330 7157 0.6250 +330 7185 0.9990 +330 7186 0.9990 +330 7187 0.9990 +330 7188 0.9970 +330 7189 0.9880 +330 7311 0.5160 +330 7314 0.6100 +330 7316 0.8350 +330 7321 0.9350 +330 7322 0.9980 +330 7323 0.8980 +330 7332 0.7850 +330 7334 0.9520 +330 7335 0.7420 +330 7337 0.5090 +330 7375 0.4590 +330 7412 0.4570 +330 7514 0.4300 +330 7535 0.4250 +330 8061 0.4750 +330 8517 0.9360 +330 8600 0.5800 +330 8678 0.9950 +330 8717 0.9980 +330 8722 0.6600 +330 8737 0.9990 +330 8738 0.4470 +330 8740 0.5820 +330 8742 0.6600 +330 8743 0.5380 +330 8767 0.9880 +330 8772 0.9600 +330 8792 0.5570 +330 8795 0.5650 +330 8797 0.5620 +330 8837 0.8460 +330 8870 0.5700 +330 8877 0.6440 +330 8887 0.7650 +330 8915 0.9350 +330 8988 0.5060 +330 9020 0.7460 +330 9099 0.4510 +330 9101 0.4640 +330 9212 0.5900 +330 9618 0.5330 +330 9641 0.7710 +330 9825 0.5290 +330 9861 0.4320 +330 10010 0.5810 +330 10018 0.5370 +330 10133 0.5630 +330 10190 0.4150 +330 10197 0.4790 +330 10213 0.5010 +330 10318 0.4280 +330 10392 0.7590 +330 10399 0.4210 +330 10413 0.5390 +330 10454 0.8450 +330 10537 0.6260 +330 10616 0.9420 +330 10617 0.4130 +330 10657 0.4320 +330 10673 0.6370 +330 10869 0.8940 +330 10892 0.8930 +330 11035 0.9630 +330 11146 0.6490 +330 23118 0.8010 +330 23198 0.4130 +330 23581 0.4600 +330 23643 0.4810 +330 25816 0.4360 +330 25999 0.5160 +330 27005 0.4110 +330 27338 0.5700 +330 27429 0.9720 +330 29110 0.7290 +330 51035 0.4230 +330 51185 0.5540 +330 51330 0.7520 +330 51474 0.4170 +330 54101 0.4230 +330 54205 0.6160 +330 54739 0.5260 +330 55072 0.9460 +330 55611 0.5330 +330 56957 0.4550 +330 57162 0.4720 +330 57448 0.4460 +330 57506 0.4360 +330 58484 0.4740 +330 64127 0.8250 +330 64332 0.5380 +330 80149 0.4140 +330 80342 0.4590 +330 81858 0.9470 +330 83737 0.5440 +330 83943 0.4020 +330 84433 0.5300 +330 89857 0.4580 +330 90865 0.4030 +330 115650 0.6070 +330 148022 0.5240 +330 150684 0.7260 +330 197259 0.5040 +330 220213 0.4730 +330 257397 0.7680 +330 353376 0.4900 +330 102723407 0.6240 +331 332 0.9600 +331 355 0.6950 +331 356 0.7380 +331 387 0.6040 +331 396 0.7690 +331 472 0.5380 +331 578 0.4880 +331 581 0.6590 +331 595 0.6610 +331 596 0.9510 +331 597 0.5450 +331 598 0.9390 +331 599 0.5890 +331 637 0.5180 +331 658 0.4230 +331 659 0.5000 +331 672 0.5360 +331 673 0.4290 +331 834 0.9660 +331 835 0.7750 +331 836 0.9990 +331 837 0.6780 +331 838 0.5140 +331 839 0.7660 +331 840 0.9990 +331 841 0.9700 +331 842 0.9990 +331 843 0.8860 +331 857 0.4630 +331 891 0.6870 +331 920 0.4160 +331 925 0.4500 +331 983 0.6670 +331 987 0.4070 +331 999 0.4390 +331 1017 0.6000 +331 1019 0.5970 +331 1021 0.5500 +331 1025 0.4250 +331 1026 0.4780 +331 1027 0.5660 +331 1029 0.5450 +331 1075 0.6860 +331 1111 0.7120 +331 1130 0.5520 +331 1147 0.7720 +331 1163 0.4170 +331 1488 0.6050 +331 1499 0.5350 +331 1508 0.7470 +331 1509 0.7140 +331 1512 0.6690 +331 1513 0.6700 +331 1514 0.6900 +331 1515 0.6610 +331 1519 0.6620 +331 1520 0.7450 +331 1521 0.6600 +331 1522 0.6600 +331 1540 0.7090 +331 1676 0.4330 +331 1677 0.4090 +331 1729 0.5260 +331 1736 0.5320 +331 1791 0.4210 +331 1869 0.7090 +331 1956 0.6360 +331 1977 0.4260 +331 1994 0.6960 +331 2021 0.5700 +331 2060 0.4050 +331 2064 0.4790 +331 2071 0.4150 +331 2099 0.6390 +331 2308 0.4180 +331 2309 0.4820 +331 2321 0.5140 +331 2475 0.4840 +331 2597 0.6270 +331 2735 0.5300 +331 2885 0.4820 +331 2892 0.4330 +331 2919 0.5240 +331 2932 0.8360 +331 2935 0.5570 +331 3021 0.4050 +331 3091 0.6810 +331 3178 0.5060 +331 3183 0.4300 +331 3304 0.4180 +331 3308 0.6390 +331 3309 0.4260 +331 3315 0.6190 +331 3316 0.6190 +331 3320 0.5050 +331 3326 0.4960 +331 3356 0.4500 +331 3383 0.4090 +331 3458 0.4360 +331 3480 0.4940 +331 3551 0.8580 +331 3553 0.4940 +331 3569 0.5060 +331 3619 0.5570 +331 3630 0.4450 +331 3635 0.5800 +331 3661 0.4890 +331 3702 0.4380 +331 3717 0.4540 +331 3725 0.5840 +331 3763 0.8380 +331 3767 0.8780 +331 3845 0.4690 +331 4068 0.7730 +331 4170 0.8090 +331 4193 0.9290 +331 4214 0.4620 +331 4313 0.4130 +331 4318 0.5440 +331 4609 0.6350 +331 4671 0.5230 +331 4738 0.5450 +331 4763 0.4130 +331 4790 0.6230 +331 4791 0.4760 +331 4792 0.6360 +331 4851 0.5190 +331 5093 0.4110 +331 5141 0.4140 +331 5243 0.4320 +331 5245 0.7680 +331 5286 0.5900 +331 5366 0.6100 +331 5414 0.9950 +331 5551 0.4290 +331 5595 0.5300 +331 5599 0.4830 +331 5609 0.5040 +331 5610 0.4260 +331 5654 0.8050 +331 5728 0.9210 +331 5743 0.4510 +331 5747 0.5230 +331 5802 0.4770 +331 5873 0.4350 +331 5879 0.6800 +331 5880 0.4010 +331 5894 0.8560 +331 5966 0.4780 +331 5970 0.5350 +331 5971 0.4550 +331 5985 0.4950 +331 6047 0.4720 +331 6198 0.4860 +331 6233 0.7790 +331 6477 0.5960 +331 6500 0.4190 +331 6615 0.4060 +331 6714 0.4830 +331 6741 0.4460 +331 6772 0.4180 +331 6774 0.6370 +331 6790 0.6140 +331 6795 0.5500 +331 6813 0.6030 +331 6885 0.9510 +331 7001 0.4590 +331 7015 0.4720 +331 7040 0.4960 +331 7046 0.8470 +331 7088 0.4990 +331 7089 0.4990 +331 7090 0.7670 +331 7091 0.4990 +331 7099 0.5440 +331 7124 0.9020 +331 7128 0.6540 +331 7132 0.8530 +331 7157 0.8360 +331 7185 0.9560 +331 7186 0.9570 +331 7187 0.5760 +331 7188 0.9310 +331 7189 0.8370 +331 7311 0.8960 +331 7314 0.5840 +331 7316 0.8830 +331 7321 0.9000 +331 7322 0.8810 +331 7323 0.8510 +331 7324 0.5060 +331 7332 0.6610 +331 7334 0.7370 +331 7335 0.4260 +331 7375 0.4970 +331 7403 0.4290 +331 7837 0.5840 +331 8078 0.4470 +331 8237 0.5800 +331 8239 0.6450 +331 8356 0.4060 +331 8517 0.7220 +331 8546 0.4490 +331 8676 0.6080 +331 8678 0.8670 +331 8717 0.8010 +331 8722 0.6690 +331 8737 0.9880 +331 8743 0.6200 +331 8767 0.9990 +331 8772 0.7380 +331 8793 0.4740 +331 8794 0.6290 +331 8795 0.8070 +331 8797 0.7810 +331 8805 0.4780 +331 8837 0.9170 +331 8878 0.4650 +331 8887 0.5680 +331 8900 0.4090 +331 8915 0.5030 +331 8988 0.6120 +331 9099 0.4720 +331 9113 0.4830 +331 9131 0.6800 +331 9212 0.6670 +331 9451 0.4440 +331 9500 0.9190 +331 9641 0.7390 +331 9817 0.4710 +331 9825 0.5550 +331 9973 0.5870 +331 10018 0.7080 +331 10133 0.5430 +331 10273 0.5070 +331 10392 0.6670 +331 10399 0.5000 +331 10413 0.5420 +331 10454 0.9990 +331 10456 0.4140 +331 10480 0.4690 +331 10542 0.8050 +331 10572 0.7000 +331 10616 0.9250 +331 10735 0.4460 +331 10746 0.7870 +331 10892 0.4730 +331 10935 0.6680 +331 11035 0.7920 +331 11124 0.4530 +331 11331 0.5690 +331 22861 0.8160 +331 22926 0.4030 +331 22954 0.6410 +331 22980 0.6970 +331 23085 0.5820 +331 23118 0.8010 +331 23411 0.4240 +331 23476 0.5530 +331 23581 0.5220 +331 25828 0.4480 +331 25853 0.4740 +331 25999 0.5160 +331 27005 0.4110 +331 27113 0.4180 +331 27242 0.5390 +331 27429 0.9990 +331 29110 0.8230 +331 29950 0.6860 +331 54101 0.4080 +331 54205 0.9350 +331 54739 0.9990 +331 54876 0.4700 +331 55072 0.9330 +331 55093 0.4700 +331 55143 0.4230 +331 55179 0.5960 +331 55437 0.6270 +331 55486 0.4770 +331 55905 0.4270 +331 56957 0.4920 +331 57217 0.4510 +331 57448 0.8640 +331 58484 0.5500 +331 64127 0.8060 +331 64170 0.4730 +331 79031 0.5630 +331 79444 0.8170 +331 79680 0.4800 +331 81669 0.4550 +331 81858 0.9290 +331 83737 0.4570 +331 84061 0.5230 +331 84955 0.6290 +331 94031 0.6920 +331 114803 0.4880 +331 115992 0.4120 +331 120892 0.4180 +331 133482 0.5490 +331 137902 0.5790 +331 140735 0.5320 +331 150684 0.8200 +331 192111 0.4330 +331 197259 0.5150 +331 201294 0.6010 +331 203100 0.6380 +331 220213 0.4820 +331 257397 0.7160 +331 284325 0.4990 +331 360023 0.4190 +331 653604 0.4050 +332 355 0.4680 +332 506 0.5890 +332 558 0.4050 +332 578 0.4090 +332 595 0.7510 +332 596 0.6140 +332 598 0.5370 +332 604 0.4720 +332 638 0.4900 +332 672 0.6150 +332 675 0.4040 +332 699 0.9790 +332 701 0.9870 +332 825 0.4740 +332 835 0.4750 +332 836 0.9160 +332 839 0.6360 +332 840 0.7550 +332 841 0.6600 +332 842 0.9110 +332 891 0.9930 +332 898 0.5540 +332 899 0.6040 +332 983 0.9970 +332 990 0.7320 +332 991 0.9950 +332 993 0.5930 +332 994 0.4340 +332 995 0.7870 +332 1017 0.7550 +332 1018 0.4020 +332 1019 0.8570 +332 1021 0.5980 +332 1026 0.6790 +332 1029 0.4720 +332 1033 0.8870 +332 1052 0.4310 +332 1058 0.9550 +332 1062 0.9630 +332 1063 0.9600 +332 1111 0.8150 +332 1163 0.6840 +332 1164 0.7740 +332 1434 0.4920 +332 1485 0.4240 +332 1490 0.4960 +332 1499 0.6500 +332 1601 0.4250 +332 1647 0.5410 +332 1719 0.4200 +332 1786 0.6190 +332 1841 0.4540 +332 1854 0.4970 +332 1869 0.6330 +332 1894 0.7810 +332 1956 0.6950 +332 1958 0.5150 +332 2064 0.7000 +332 2099 0.6350 +332 2146 0.5670 +332 2177 0.5260 +332 2237 0.6170 +332 2305 0.9580 +332 2308 0.5460 +332 2309 0.5590 +332 2353 0.6070 +332 2491 0.7230 +332 2547 0.5670 +332 2597 0.5480 +332 2729 0.4080 +332 2894 0.4420 +332 3014 0.6700 +332 3021 0.7930 +332 3070 0.5810 +332 3091 0.6240 +332 3161 0.8820 +332 3320 0.6420 +332 3326 0.5150 +332 3458 0.4700 +332 3491 0.4880 +332 3619 0.9990 +332 3624 0.4570 +332 3725 0.5100 +332 3726 0.4100 +332 3763 0.4070 +332 3832 0.9570 +332 3833 0.7790 +332 3835 0.8770 +332 3838 0.8180 +332 3845 0.4740 +332 3925 0.6430 +332 3930 0.4810 +332 3934 0.5000 +332 3978 0.4630 +332 4001 0.4120 +332 4085 0.9810 +332 4170 0.5070 +332 4171 0.5420 +332 4172 0.6250 +332 4173 0.6550 +332 4174 0.6860 +332 4175 0.6210 +332 4176 0.5960 +332 4193 0.4220 +332 4288 0.9390 +332 4313 0.4840 +332 4318 0.4010 +332 4323 0.4660 +332 4519 0.4620 +332 4605 0.8440 +332 4609 0.8250 +332 4738 0.6120 +332 4751 0.9400 +332 4790 0.4260 +332 4927 0.4160 +332 4928 0.5010 +332 4998 0.5860 +332 5292 0.4770 +332 5347 0.9800 +332 5451 0.4180 +332 5469 0.4190 +332 5557 0.4660 +332 5591 0.6050 +332 5728 0.4830 +332 5753 0.4670 +332 5888 0.8530 +332 5901 0.4300 +332 5903 0.5610 +332 5905 0.6050 +332 5983 0.5300 +332 5984 0.7230 +332 5985 0.4450 +332 6095 0.4670 +332 6097 0.4290 +332 6119 0.4170 +332 6233 0.4820 +332 6240 0.5130 +332 6241 0.8950 +332 6502 0.4170 +332 6612 0.4510 +332 6613 0.5030 +332 6657 0.5860 +332 6774 0.7960 +332 6778 0.5630 +332 6790 0.9930 +332 6795 0.9720 +332 6837 0.6690 +332 6839 0.4530 +332 6941 0.6020 +332 7003 0.4160 +332 7004 0.4170 +332 7083 0.9200 +332 7153 0.9760 +332 7155 0.5260 +332 7157 0.9300 +332 7175 0.4250 +332 7272 0.9360 +332 7291 0.5770 +332 7298 0.8620 +332 7311 0.4290 +332 7314 0.5040 +332 7316 0.5120 +332 7329 0.4730 +332 7514 0.4190 +332 7704 0.4320 +332 7852 0.5380 +332 8021 0.4020 +332 8086 0.4450 +332 8208 0.4050 +332 8290 0.7630 +332 8318 0.8730 +332 8356 0.7840 +332 8438 0.6550 +332 8480 0.4380 +332 8614 0.4270 +332 8678 0.7460 +332 8835 0.4510 +332 8837 0.4500 +332 8900 0.5360 +332 8914 0.4320 +332 9021 0.4970 +332 9040 0.5390 +332 9055 0.9400 +332 9088 0.5320 +332 9113 0.4250 +332 9133 0.9930 +332 9134 0.6110 +332 9156 0.8230 +332 9184 0.6590 +332 9212 0.9990 +332 9232 0.9260 +332 9282 0.6820 +332 9319 0.7160 +332 9401 0.4370 +332 9412 0.6290 +332 9440 0.6080 +332 9474 0.7180 +332 9477 0.6860 +332 9493 0.8850 +332 9585 0.5310 +332 9631 0.5010 +332 9656 0.5580 +332 9688 0.4930 +332 9700 0.9170 +332 9735 0.5670 +332 9768 0.9300 +332 9787 0.9670 +332 9818 0.4180 +332 9824 0.5810 +332 9833 0.9650 +332 9837 0.5260 +332 9918 0.5810 +332 9928 0.7410 +332 9947 0.4630 +332 9972 0.4310 +332 9978 0.6360 +332 10001 0.7270 +332 10024 0.7540 +332 10051 0.7320 +332 10055 0.4090 +332 10112 0.9730 +332 10401 0.4940 +332 10403 0.8850 +332 10413 0.6340 +332 10460 0.7250 +332 10533 0.5140 +332 10535 0.4140 +332 10538 0.4160 +332 10542 0.6840 +332 10592 0.6190 +332 10615 0.9170 +332 10635 0.7160 +332 10666 0.4470 +332 10726 0.5210 +332 10733 0.5910 +332 10744 0.6630 +332 10762 0.4090 +332 10951 0.4930 +332 11004 0.9720 +332 11065 0.9920 +332 11097 0.4250 +332 11130 0.9170 +332 11169 0.4120 +332 11335 0.5330 +332 11339 0.8440 +332 22974 0.9520 +332 23113 0.7210 +332 23165 0.4620 +332 23194 0.5340 +332 23225 0.4360 +332 23279 0.5440 +332 23363 0.4090 +332 23397 0.8470 +332 23411 0.4850 +332 23468 0.5100 +332 23511 0.4160 +332 23581 0.5170 +332 23594 0.4630 +332 23636 0.4770 +332 23710 0.4570 +332 24137 0.9250 +332 25886 0.5550 +332 26271 0.6700 +332 26586 0.7210 +332 27152 0.4400 +332 27338 0.4180 +332 27436 0.5660 +332 29028 0.4690 +332 29079 0.4320 +332 29089 0.7200 +332 29127 0.8270 +332 29128 0.7070 +332 30001 0.4340 +332 51003 0.7590 +332 51053 0.5310 +332 51203 0.9530 +332 51343 0.4740 +332 51438 0.4570 +332 51512 0.8520 +332 51514 0.5880 +332 51659 0.6410 +332 53371 0.4170 +332 54069 0.4990 +332 54443 0.7810 +332 54478 0.6890 +332 54541 0.4020 +332 54797 0.7000 +332 54821 0.5190 +332 54892 0.6230 +332 55010 0.5050 +332 55055 0.4740 +332 55143 0.9990 +332 55165 0.9130 +332 55215 0.6230 +332 55247 0.7240 +332 55255 0.5660 +332 55355 0.9120 +332 55388 0.6850 +332 55588 0.6540 +332 55605 0.4740 +332 55635 0.8210 +332 55706 0.5090 +332 55723 0.8070 +332 55746 0.5260 +332 55789 0.7090 +332 55839 0.8180 +332 56992 0.8350 +332 57082 0.5140 +332 57122 0.5630 +332 57405 0.8470 +332 57559 0.5240 +332 58484 0.5420 +332 63967 0.4130 +332 64105 0.6920 +332 64151 0.8760 +332 64946 0.5350 +332 79019 0.8010 +332 79023 0.6120 +332 79075 0.4590 +332 79444 0.8200 +332 79682 0.6260 +332 79733 0.6470 +332 79801 0.8530 +332 79902 0.5500 +332 79915 0.5160 +332 79923 0.5780 +332 79935 0.6440 +332 79980 0.5710 +332 81610 0.5700 +332 81620 0.7810 +332 81624 0.5050 +332 81671 0.4500 +332 81929 0.5200 +332 81930 0.6220 +332 83461 0.9600 +332 83540 0.9490 +332 83879 0.5280 +332 83903 0.4750 +332 83987 0.4050 +332 84057 0.6070 +332 84246 0.6700 +332 84722 0.4450 +332 85417 0.5850 +332 89839 0.4020 +332 90381 0.4480 +332 90390 0.7040 +332 90417 0.5340 +332 112950 0.6990 +332 113130 0.9420 +332 126961 0.5570 +332 128239 0.5370 +332 129401 0.4160 +332 144455 0.5800 +332 146909 0.8200 +332 147746 0.4240 +332 147841 0.9240 +332 150468 0.5810 +332 151648 0.7750 +332 157313 0.6580 +332 157570 0.6580 +332 157753 0.5330 +332 166979 0.8300 +332 220134 0.7520 +332 221150 0.5940 +332 259266 0.8790 +332 283431 0.5520 +332 285643 0.5010 +332 333932 0.4090 +332 348995 0.5500 +332 387103 0.7650 +332 402569 0.6110 +332 440093 0.7930 +332 440686 0.8050 +332 440738 0.5000 +332 653604 0.8050 +333 334 0.4890 +333 351 0.5280 +333 495 0.4380 +333 1272 0.5480 +333 1346 0.5340 +333 1508 0.6850 +333 1600 0.4770 +333 2160 0.4840 +333 2902 0.5140 +333 2903 0.4160 +333 2904 0.4450 +333 3162 0.4240 +333 3163 0.5480 +333 3778 0.4780 +333 3897 0.4180 +333 3934 0.5200 +333 4037 0.4470 +333 4137 0.4280 +333 4311 0.6020 +333 4345 0.4400 +333 4780 0.4240 +333 4868 0.4050 +333 4897 0.4660 +333 5067 0.6220 +333 5621 0.7140 +333 5663 0.7160 +333 5664 0.6580 +333 5725 0.4040 +333 6150 0.4250 +333 6620 0.4360 +333 6855 0.4110 +333 6860 0.5130 +333 6900 0.6870 +333 7512 0.4740 +333 8612 0.4220 +333 9179 0.5430 +333 9378 0.4520 +333 9379 0.4160 +333 9479 0.7310 +333 9546 0.5500 +333 10307 0.7960 +333 10418 0.7210 +333 10524 0.4460 +333 10752 0.5430 +333 22883 0.4300 +333 22927 0.4520 +333 23105 0.4160 +333 23114 0.4260 +333 23208 0.4730 +333 23385 0.6470 +333 23544 0.4890 +333 23621 0.8170 +333 25825 0.5420 +333 25999 0.5060 +333 26060 0.5440 +333 26470 0.4020 +333 27242 0.6650 +333 27255 0.5560 +333 29106 0.4260 +333 51107 0.6220 +333 51316 0.4180 +333 53827 0.4220 +333 53942 0.9290 +333 55256 0.5700 +333 55571 0.4690 +333 55851 0.6530 +333 56654 0.4940 +333 56884 0.4090 +333 64377 0.4160 +333 64837 0.4340 +333 79258 0.5970 +333 84063 0.4460 +333 89953 0.4190 +333 113246 0.6280 +333 124925 0.4900 +333 140690 0.4960 +333 152330 0.6870 +333 171568 0.5070 +333 196500 0.4130 +333 340895 0.4760 +334 338 0.4950 +334 348 0.4070 +334 351 0.8160 +334 563 0.4200 +334 839 0.4250 +334 928 0.4400 +334 948 0.4300 +334 1272 0.5540 +334 1508 0.6420 +334 1600 0.5210 +334 1601 0.4520 +334 2160 0.5160 +334 2314 0.4070 +334 2734 0.4450 +334 2902 0.4340 +334 2934 0.4610 +334 3674 0.4180 +334 3690 0.4160 +334 3698 0.4250 +334 3817 0.5710 +334 3831 0.4860 +334 3934 0.6080 +334 4035 0.5260 +334 4070 0.4120 +334 4192 0.4030 +334 4311 0.6180 +334 4345 0.4690 +334 4756 0.4250 +334 5067 0.4770 +334 5175 0.4810 +334 5578 0.6160 +334 5621 0.6420 +334 5644 0.6060 +334 5645 0.6060 +334 5646 0.5600 +334 5660 0.5230 +334 5663 0.7110 +334 5664 0.6910 +334 5725 0.4460 +334 5764 0.4240 +334 6272 0.5730 +334 6403 0.4070 +334 6610 0.4370 +334 6860 0.4740 +334 6900 0.6220 +334 7024 0.4450 +334 7276 0.4680 +334 7342 0.4450 +334 7409 0.4590 +334 7512 0.4610 +334 7804 0.4110 +334 8635 0.4030 +334 8646 0.4160 +334 8650 0.4190 +334 9179 0.5420 +334 9445 0.4560 +334 9479 0.7300 +334 9546 0.6570 +334 9749 0.4050 +334 9764 0.4690 +334 10184 0.4910 +334 10307 0.8030 +334 10418 0.7210 +334 10524 0.4680 +334 10752 0.4100 +334 11012 0.4120 +334 11202 0.4210 +334 23208 0.5180 +334 23385 0.6550 +334 23471 0.4780 +334 23621 0.7740 +334 25825 0.4990 +334 26060 0.5830 +334 26085 0.4120 +334 27242 0.8500 +334 27255 0.4910 +334 29966 0.4740 +334 43847 0.4120 +334 43849 0.4120 +334 51107 0.6310 +334 51706 0.4070 +334 53942 0.5490 +334 54495 0.4160 +334 55256 0.5230 +334 55554 0.4320 +334 55851 0.6310 +334 56975 0.5410 +334 64131 0.6080 +334 64837 0.4400 +334 79001 0.4270 +334 79258 0.5910 +334 89953 0.4550 +334 94121 0.4160 +334 135228 0.4800 +334 147700 0.4160 +334 152330 0.5390 +334 196463 0.4110 +334 255738 0.5700 +334 390714 0.4210 +334 100423062 0.4240 +334 102723407 0.4210 +335 336 0.9990 +335 337 0.9890 +335 338 0.9990 +335 341 0.9980 +335 344 0.9970 +335 345 0.9990 +335 346 0.9010 +335 347 0.9600 +335 348 0.9990 +335 350 0.9850 +335 351 0.9820 +335 408 0.4420 +335 462 0.7080 +335 492 0.4220 +335 506 0.7690 +335 563 0.6760 +335 567 0.9130 +335 629 0.6480 +335 633 0.5410 +335 649 0.7970 +335 706 0.4160 +335 715 0.5470 +335 716 0.5270 +335 718 0.9570 +335 720 0.7240 +335 721 0.6680 +335 725 0.4840 +335 727 0.4650 +335 730 0.4560 +335 731 0.5830 +335 735 0.4100 +335 768 0.4860 +335 796 0.4280 +335 811 0.5470 +335 820 0.5630 +335 915 0.4310 +335 916 0.4430 +335 947 0.4350 +335 948 0.9170 +335 949 0.9990 +335 950 0.7380 +335 959 0.6300 +335 967 0.6430 +335 1012 0.4300 +335 1071 0.9890 +335 1191 0.9980 +335 1356 0.6300 +335 1374 0.4340 +335 1387 0.4410 +335 1401 0.8070 +335 1471 0.8260 +335 1490 0.4560 +335 1511 0.4820 +335 1512 0.4060 +335 1576 0.4230 +335 1581 0.7320 +335 1593 0.4550 +335 1622 0.7800 +335 1636 0.5130 +335 1823 0.5070 +335 1956 0.4770 +335 1992 0.5030 +335 2023 0.6370 +335 2147 0.9270 +335 2152 0.4160 +335 2155 0.4920 +335 2162 0.4950 +335 2168 0.8800 +335 2169 0.6910 +335 2194 0.4010 +335 2239 0.4990 +335 2243 0.9020 +335 2244 0.6910 +335 2262 0.4990 +335 2266 0.7320 +335 2335 0.8450 +335 2590 0.4570 +335 2597 0.4600 +335 2623 0.4430 +335 2638 0.6560 +335 2719 0.6550 +335 2806 0.4140 +335 2817 0.5200 +335 2822 0.5260 +335 2875 0.7790 +335 2877 0.6120 +335 2878 0.6560 +335 2880 0.6080 +335 2882 0.6040 +335 2896 0.6790 +335 2934 0.8740 +335 2950 0.4970 +335 3040 0.7050 +335 3043 0.8390 +335 3053 0.6140 +335 3069 0.8870 +335 3075 0.4720 +335 3080 0.5430 +335 3156 0.7840 +335 3172 0.7250 +335 3240 0.9980 +335 3250 0.9970 +335 3263 0.8260 +335 3273 0.7800 +335 3339 0.5890 +335 3375 0.5340 +335 3383 0.5080 +335 3439 0.4910 +335 3484 0.5150 +335 3553 0.5410 +335 3569 0.6080 +335 3586 0.4180 +335 3600 0.4650 +335 3630 0.9060 +335 3697 0.4200 +335 3698 0.7930 +335 3699 0.8180 +335 3700 0.4390 +335 3717 0.5710 +335 3827 0.5180 +335 3848 0.5170 +335 3929 0.9490 +335 3931 0.9990 +335 3933 0.4810 +335 3949 0.5610 +335 3952 0.5820 +335 3958 0.5260 +335 3988 0.4310 +335 3990 0.9400 +335 3991 0.5690 +335 4018 0.9760 +335 4023 0.8900 +335 4035 0.6180 +335 4036 0.8560 +335 4057 0.8290 +335 4069 0.8380 +335 4137 0.5090 +335 4145 0.6360 +335 4240 0.5010 +335 4313 0.5460 +335 4323 0.9130 +335 4353 0.9240 +335 4481 0.6380 +335 4547 0.8990 +335 4684 0.6120 +335 4778 0.4110 +335 4846 0.4770 +335 4864 0.6940 +335 4878 0.5090 +335 4973 0.4850 +335 5004 0.8690 +335 5005 0.8280 +335 5034 0.5330 +335 5054 0.6870 +335 5197 0.5260 +335 5265 0.9270 +335 5320 0.4450 +335 5340 0.5850 +335 5345 0.4970 +335 5360 0.9730 +335 5444 0.9980 +335 5446 0.4830 +335 5465 0.8280 +335 5467 0.4460 +335 5468 0.5920 +335 5469 0.4220 +335 5473 0.5570 +335 5595 0.5200 +335 5597 0.5470 +335 5617 0.5290 +335 5730 0.4290 +335 5948 0.6330 +335 5950 0.8140 +335 6233 0.4030 +335 6256 0.5670 +335 6272 0.6200 +335 6288 0.9000 +335 6289 0.8940 +335 6291 0.9310 +335 6319 0.4130 +335 6326 0.4200 +335 6347 0.5070 +335 6382 0.5820 +335 6383 0.5130 +335 6385 0.5320 +335 6401 0.4210 +335 6406 0.5130 +335 6414 0.5800 +335 6462 0.5500 +335 6513 0.4740 +335 6514 0.4220 +335 6604 0.4070 +335 6622 0.8830 +335 6646 0.4070 +335 6648 0.4510 +335 6696 0.4070 +335 6720 0.6930 +335 6721 0.7300 +335 6774 0.6060 +335 6822 0.4550 +335 6906 0.6200 +335 6907 0.5070 +335 7001 0.4280 +335 7018 0.9190 +335 7025 0.4750 +335 7037 0.5740 +335 7040 0.5420 +335 7045 0.4850 +335 7070 0.5400 +335 7076 0.5690 +335 7099 0.4320 +335 7113 0.4320 +335 7124 0.5810 +335 7167 0.4940 +335 7184 0.5370 +335 7276 0.9940 +335 7412 0.6230 +335 7417 0.4430 +335 7436 0.8350 +335 7448 0.7550 +335 7450 0.4220 +335 7534 0.5210 +335 7804 0.6090 +335 7837 0.4570 +335 7941 0.9240 +335 8029 0.9850 +335 8399 0.4310 +335 8431 0.4640 +335 8435 0.4940 +335 8504 0.7200 +335 8542 0.9980 +335 8648 0.4490 +335 8694 0.5220 +335 8788 0.5260 +335 8829 0.4520 +335 8841 0.5400 +335 9213 0.6940 +335 9332 0.5410 +335 9370 0.6460 +335 9388 0.8330 +335 9404 0.5240 +335 9445 0.4380 +335 9611 0.5720 +335 9619 0.9970 +335 9672 0.4990 +335 9971 0.5970 +335 10062 0.5550 +335 10082 0.5190 +335 10130 0.5110 +335 10221 0.4040 +335 10347 0.9920 +335 10397 0.6120 +335 10499 0.4190 +335 22883 0.4290 +335 23054 0.4460 +335 26020 0.4180 +335 27329 0.7430 +335 29106 0.4590 +335 29881 0.8110 +335 29967 0.4110 +335 51085 0.4110 +335 51128 0.7320 +335 51449 0.7990 +335 51599 0.5490 +335 51726 0.4380 +335 54209 0.6450 +335 54757 0.4160 +335 54959 0.4130 +335 55829 0.7240 +335 55911 0.5750 +335 55937 0.9720 +335 56729 0.4160 +335 56975 0.5100 +335 57453 0.4510 +335 59272 0.5080 +335 64137 0.7160 +335 64240 0.7050 +335 64241 0.6580 +335 64374 0.4040 +335 79003 0.7800 +335 79017 0.4260 +335 79135 0.8720 +335 79714 0.4030 +335 79718 0.4100 +335 81693 0.7970 +335 83875 0.4800 +335 84647 0.5900 +335 84699 0.4110 +335 84706 0.6010 +335 84811 0.4180 +335 85477 0.7900 +335 116519 0.9510 +335 116844 0.4340 +335 128240 0.9750 +335 137362 0.6020 +335 137902 0.4480 +335 148156 0.4630 +335 154664 0.5050 +335 221914 0.5150 +335 255738 0.7810 +335 257202 0.6070 +335 338328 0.6440 +335 374897 0.4650 +335 375790 0.5260 +335 493869 0.6040 +335 653145 0.4690 +335 100528017 0.9070 +336 337 0.9940 +336 338 0.9990 +336 341 0.9910 +336 344 0.9950 +336 345 0.9990 +336 346 0.9470 +336 347 0.9930 +336 348 0.9990 +336 350 0.9890 +336 351 0.9020 +336 432 0.4300 +336 433 0.4220 +336 462 0.7830 +336 563 0.5970 +336 629 0.6520 +336 718 0.6340 +336 720 0.4690 +336 721 0.4090 +336 722 0.6220 +336 725 0.4270 +336 731 0.4330 +336 735 0.4410 +336 820 0.4510 +336 844 0.6600 +336 866 0.4380 +336 949 0.8640 +336 1071 0.9700 +336 1191 0.9670 +336 1277 0.4390 +336 1278 0.4290 +336 1281 0.4080 +336 1356 0.4950 +336 1361 0.4670 +336 1401 0.5160 +336 1576 0.4880 +336 1581 0.5680 +336 1622 0.7520 +336 1718 0.4350 +336 2147 0.7980 +336 2168 0.8010 +336 2180 0.4650 +336 2212 0.6240 +336 2239 0.4990 +336 2243 0.8930 +336 2244 0.8490 +336 2262 0.5010 +336 2266 0.8410 +336 2267 0.4830 +336 2627 0.4140 +336 2638 0.7650 +336 2719 0.6460 +336 2806 0.4200 +336 2817 0.5190 +336 2822 0.5810 +336 2934 0.4450 +336 3053 0.6610 +336 3069 0.8660 +336 3170 0.4860 +336 3172 0.5410 +336 3175 0.4240 +336 3240 0.7380 +336 3250 0.9320 +336 3263 0.6670 +336 3273 0.6440 +336 3339 0.5630 +336 3484 0.4750 +336 3569 0.4930 +336 3576 0.4220 +336 3630 0.4730 +336 3697 0.4850 +336 3698 0.6770 +336 3699 0.6360 +336 3700 0.6320 +336 3827 0.6530 +336 3931 0.9820 +336 3949 0.5460 +336 3990 0.8860 +336 3991 0.5460 +336 4018 0.9770 +336 4023 0.8180 +336 4035 0.4870 +336 4036 0.7010 +336 4143 0.4450 +336 4481 0.5500 +336 4547 0.7910 +336 4864 0.4670 +336 5004 0.7720 +336 5005 0.8340 +336 5034 0.4440 +336 5265 0.8220 +336 5267 0.4460 +336 5284 0.4700 +336 5313 0.4350 +336 5340 0.6870 +336 5345 0.5640 +336 5360 0.9620 +336 5444 0.9670 +336 5465 0.7600 +336 5469 0.5150 +336 5473 0.4610 +336 5948 0.5490 +336 5950 0.5780 +336 6256 0.4740 +336 6288 0.7990 +336 6289 0.7830 +336 6291 0.8160 +336 6382 0.5220 +336 6383 0.5200 +336 6385 0.4990 +336 6622 0.4910 +336 6720 0.4910 +336 6721 0.4910 +336 6906 0.5750 +336 6907 0.4390 +336 7018 0.8060 +336 7037 0.4970 +336 7276 0.8430 +336 7299 0.5870 +336 7391 0.6280 +336 7436 0.6990 +336 7448 0.7500 +336 7804 0.5070 +336 7941 0.8890 +336 8435 0.5840 +336 8504 0.7200 +336 8542 0.9260 +336 8694 0.5990 +336 8731 0.5050 +336 8856 0.4110 +336 9388 0.4890 +336 9619 0.7230 +336 9672 0.4990 +336 10082 0.5040 +336 10499 0.4160 +336 10555 0.4070 +336 10628 0.5120 +336 10842 0.5720 +336 10998 0.4430 +336 23054 0.4210 +336 27329 0.4260 +336 51128 0.4270 +336 51449 0.8220 +336 51599 0.5400 +336 51703 0.4040 +336 54757 0.4030 +336 55076 0.5130 +336 55829 0.7200 +336 55911 0.5400 +336 55937 0.9800 +336 56975 0.5130 +336 64137 0.5050 +336 64240 0.4240 +336 79135 0.6480 +336 84647 0.4080 +336 84649 0.4630 +336 116519 0.9720 +336 116842 0.4310 +336 117144 0.4260 +336 128240 0.7830 +336 221914 0.5110 +336 255738 0.6690 +336 284161 0.4610 +336 338328 0.5030 +336 375790 0.5090 +336 100528017 0.6890 +337 338 0.9920 +337 341 0.9690 +337 344 0.9870 +337 345 0.9990 +337 346 0.8870 +337 347 0.8640 +337 348 0.9950 +337 350 0.9380 +337 351 0.8270 +337 462 0.4310 +337 563 0.4080 +337 567 0.5280 +337 629 0.6300 +337 718 0.6300 +337 720 0.4400 +337 735 0.4050 +337 796 0.4160 +337 949 0.4750 +337 1071 0.9370 +337 1191 0.9760 +337 1311 0.4220 +337 1356 0.6080 +337 1471 0.5530 +337 1622 0.7200 +337 1717 0.4570 +337 2168 0.5650 +337 2169 0.5180 +337 2239 0.4990 +337 2243 0.6970 +337 2244 0.4170 +337 2262 0.5000 +337 2266 0.7920 +337 2335 0.5280 +337 2538 0.4680 +337 2638 0.5760 +337 2719 0.5010 +337 2817 0.5060 +337 2822 0.4610 +337 2934 0.6520 +337 3053 0.4100 +337 3069 0.8460 +337 3172 0.5290 +337 3240 0.5940 +337 3250 0.8310 +337 3263 0.4780 +337 3273 0.4030 +337 3339 0.5340 +337 3375 0.5070 +337 3630 0.6120 +337 3698 0.6090 +337 3700 0.6330 +337 3931 0.8900 +337 3949 0.5400 +337 3990 0.7960 +337 4018 0.8870 +337 4023 0.7810 +337 4035 0.4830 +337 4036 0.5070 +337 4057 0.7090 +337 4069 0.5280 +337 4133 0.4260 +337 4353 0.4370 +337 4481 0.5480 +337 4547 0.8510 +337 4653 0.4060 +337 4878 0.5830 +337 5004 0.4480 +337 5034 0.4170 +337 5265 0.7930 +337 5340 0.5820 +337 5360 0.8610 +337 5444 0.9270 +337 5446 0.5390 +337 5617 0.4110 +337 5948 0.7010 +337 5950 0.6480 +337 6288 0.7730 +337 6289 0.7510 +337 6291 0.7570 +337 6382 0.5290 +337 6383 0.4990 +337 6385 0.4990 +337 6622 0.4230 +337 7018 0.4840 +337 7037 0.4570 +337 7045 0.5090 +337 7276 0.8570 +337 7436 0.6430 +337 7448 0.4610 +337 7804 0.4670 +337 7941 0.7810 +337 8504 0.7200 +337 8542 0.9280 +337 9388 0.4220 +337 9672 0.4990 +337 9971 0.4520 +337 10082 0.4990 +337 10948 0.4200 +337 10999 0.4110 +337 26291 0.4670 +337 29881 0.4640 +337 51128 0.6050 +337 51449 0.7910 +337 51599 0.5400 +337 54959 0.4010 +337 55829 0.7200 +337 55911 0.5400 +337 55937 0.9490 +337 57453 0.5480 +337 63924 0.5740 +337 64240 0.4970 +337 64241 0.5130 +337 79135 0.7130 +337 84699 0.7400 +337 84811 0.4720 +337 116519 0.9180 +337 116844 0.6240 +337 221914 0.4990 +337 284161 0.4970 +337 338328 0.5130 +337 339221 0.4030 +337 375790 0.5190 +337 100528017 0.6590 +338 339 0.9630 +338 341 0.9960 +338 344 0.9910 +338 345 0.9990 +338 346 0.8710 +338 347 0.8640 +338 348 0.9990 +338 350 0.9850 +338 351 0.8390 +338 374 0.5120 +338 408 0.5390 +338 409 0.5450 +338 432 0.5340 +338 433 0.4320 +338 462 0.6900 +338 538 0.4020 +338 550 0.7140 +338 551 0.5920 +338 554 0.5840 +338 590 0.5930 +338 633 0.5520 +338 634 0.4250 +338 652 0.5130 +338 672 0.4800 +338 685 0.4990 +338 718 0.8190 +338 719 0.4270 +338 720 0.7430 +338 721 0.6130 +338 722 0.5500 +338 731 0.4910 +338 735 0.4020 +338 781 0.4350 +338 811 0.8920 +338 821 0.7940 +338 866 0.5940 +338 867 0.5170 +338 915 0.5880 +338 917 0.5040 +338 920 0.6980 +338 948 0.9800 +338 949 0.9970 +338 950 0.9620 +338 960 0.5480 +338 975 0.5830 +338 978 0.7120 +338 1063 0.4480 +338 1066 0.4550 +338 1071 0.9890 +338 1080 0.6760 +338 1104 0.4010 +338 1129 0.5090 +338 1173 0.6080 +338 1175 0.5070 +338 1191 0.8650 +338 1211 0.4990 +338 1212 0.5080 +338 1236 0.4460 +338 1244 0.5450 +338 1282 0.4390 +338 1284 0.4260 +338 1310 0.4390 +338 1356 0.5010 +338 1361 0.5580 +338 1373 0.5250 +338 1374 0.5560 +338 1401 0.8500 +338 1432 0.5830 +338 1471 0.4950 +338 1536 0.5370 +338 1576 0.5240 +338 1581 0.8330 +338 1582 0.4010 +338 1593 0.4230 +338 1601 0.5230 +338 1622 0.7610 +338 1636 0.7430 +338 1717 0.4930 +338 1803 0.4680 +338 1839 0.5410 +338 1856 0.5030 +338 1902 0.4310 +338 1950 0.7860 +338 1952 0.5210 +338 1956 0.6730 +338 1969 0.4100 +338 2023 0.5160 +338 2060 0.5070 +338 2069 0.5360 +338 2099 0.5360 +338 2147 0.8320 +338 2152 0.4580 +338 2155 0.5830 +338 2158 0.4090 +338 2165 0.4230 +338 2167 0.4010 +338 2168 0.8980 +338 2169 0.6640 +338 2180 0.4510 +338 2194 0.6030 +338 2239 0.5230 +338 2243 0.8320 +338 2244 0.8160 +338 2262 0.5270 +338 2266 0.7990 +338 2268 0.5360 +338 2308 0.4150 +338 2316 0.5140 +338 2317 0.4060 +338 2321 0.5200 +338 2335 0.8250 +338 2538 0.5330 +338 2590 0.4380 +338 2597 0.5100 +338 2626 0.4580 +338 2632 0.4150 +338 2638 0.5260 +338 2641 0.5870 +338 2646 0.4260 +338 2693 0.4030 +338 2717 0.4050 +338 2719 0.6660 +338 2740 0.4740 +338 2806 0.7730 +338 2817 0.5370 +338 2875 0.7170 +338 2877 0.4220 +338 2878 0.4310 +338 2882 0.4090 +338 2885 0.5290 +338 3040 0.6820 +338 3043 0.7200 +338 3045 0.4110 +338 3053 0.5870 +338 3069 0.8140 +338 3156 0.8960 +338 3157 0.4910 +338 3158 0.4920 +338 3172 0.6480 +338 3182 0.6280 +338 3240 0.6260 +338 3250 0.8220 +338 3263 0.6940 +338 3267 0.4990 +338 3273 0.8050 +338 3309 0.5860 +338 3339 0.7920 +338 3383 0.5160 +338 3458 0.4540 +338 3479 0.4160 +338 3482 0.5330 +338 3484 0.5370 +338 3485 0.4100 +338 3553 0.5420 +338 3569 0.7510 +338 3572 0.4260 +338 3575 0.5250 +338 3576 0.5600 +338 3586 0.4450 +338 3627 0.4690 +338 3630 0.8670 +338 3638 0.4090 +338 3667 0.4580 +338 3689 0.4520 +338 3697 0.4450 +338 3698 0.7880 +338 3699 0.4870 +338 3791 0.4940 +338 3827 0.6620 +338 3929 0.5570 +338 3931 0.9830 +338 3949 0.9550 +338 3952 0.6650 +338 3988 0.8710 +338 3990 0.9830 +338 3991 0.7880 +338 4018 0.9990 +338 4023 0.9400 +338 4035 0.6840 +338 4036 0.8810 +338 4040 0.4510 +338 4057 0.5090 +338 4074 0.5190 +338 4148 0.4410 +338 4153 0.5690 +338 4193 0.4190 +338 4253 0.4860 +338 4353 0.7110 +338 4481 0.6640 +338 4493 0.4340 +338 4524 0.4460 +338 4547 0.9990 +338 4609 0.4080 +338 4691 0.5440 +338 4763 0.4540 +338 4846 0.4470 +338 4864 0.4050 +338 4973 0.8680 +338 5004 0.6100 +338 5005 0.6110 +338 5009 0.6460 +338 5034 0.8610 +338 5053 0.4790 +338 5054 0.6060 +338 5105 0.4810 +338 5106 0.4090 +338 5174 0.4090 +338 5175 0.8060 +338 5176 0.5770 +338 5196 0.5550 +338 5265 0.8220 +338 5319 0.5010 +338 5320 0.4420 +338 5321 0.5090 +338 5327 0.4470 +338 5340 0.7740 +338 5345 0.6910 +338 5346 0.4500 +338 5360 0.9640 +338 5406 0.4870 +338 5424 0.4150 +338 5444 0.9520 +338 5465 0.8190 +338 5467 0.4630 +338 5468 0.6220 +338 5478 0.5290 +338 5479 0.6310 +338 5515 0.5050 +338 5516 0.5040 +338 5518 0.5110 +338 5519 0.5240 +338 5525 0.5180 +338 5526 0.5150 +338 5527 0.5050 +338 5528 0.5050 +338 5529 0.5180 +338 5663 0.4220 +338 5777 0.5590 +338 5781 0.5940 +338 5803 0.4150 +338 5832 0.4260 +338 5948 0.6440 +338 5950 0.5680 +338 5972 0.4940 +338 6189 0.4210 +338 6233 0.5120 +338 6240 0.4840 +338 6241 0.5310 +338 6272 0.9830 +338 6288 0.8880 +338 6289 0.7360 +338 6291 0.7550 +338 6319 0.5660 +338 6347 0.5070 +338 6351 0.4080 +338 6382 0.6750 +338 6383 0.5790 +338 6385 0.6270 +338 6401 0.4760 +338 6403 0.4160 +338 6448 0.5190 +338 6453 0.5120 +338 6455 0.5260 +338 6456 0.5260 +338 6457 0.5300 +338 6462 0.5950 +338 6476 0.5460 +338 6514 0.8150 +338 6517 0.5140 +338 6524 0.4840 +338 6572 0.4990 +338 6646 0.4380 +338 6678 0.8180 +338 6696 0.5240 +338 6720 0.7200 +338 6721 0.6750 +338 6822 0.4820 +338 6838 0.4010 +338 6844 0.4990 +338 6845 0.7520 +338 6857 0.4990 +338 6869 0.5470 +338 6906 0.6490 +338 6915 0.4630 +338 6927 0.4830 +338 7015 0.5030 +338 7018 0.7970 +338 7035 0.5780 +338 7037 0.8130 +338 7039 0.5350 +338 7076 0.4180 +338 7099 0.6920 +338 7124 0.5870 +338 7157 0.6050 +338 7184 0.8820 +338 7276 0.8780 +338 7295 0.5550 +338 7299 0.4890 +338 7311 0.5150 +338 7314 0.5140 +338 7316 0.6990 +338 7351 0.4470 +338 7391 0.6980 +338 7412 0.5810 +338 7415 0.7460 +338 7436 0.8730 +338 7448 0.5290 +338 7450 0.6310 +338 7474 0.5520 +338 7804 0.8360 +338 7837 0.4800 +338 7941 0.9360 +338 8027 0.4990 +338 8065 0.5020 +338 8218 0.5490 +338 8301 0.5110 +338 8310 0.4780 +338 8322 0.5290 +338 8431 0.5290 +338 8435 0.7630 +338 8504 0.7200 +338 8542 0.8920 +338 8578 0.5280 +338 8647 0.4780 +338 8673 0.5220 +338 8674 0.4990 +338 8694 0.6540 +338 8856 0.4660 +338 9076 0.4930 +338 9080 0.4410 +338 9146 0.4990 +338 9185 0.5020 +338 9213 0.5730 +338 9341 0.4990 +338 9370 0.7810 +338 9388 0.6280 +338 9404 0.7650 +338 9415 0.4140 +338 9582 0.7580 +338 9601 0.7650 +338 9619 0.6830 +338 9672 0.4990 +338 9856 0.4990 +338 9892 0.4990 +338 9971 0.6970 +338 10062 0.5250 +338 10082 0.5320 +338 10112 0.4130 +338 10221 0.6560 +338 10254 0.4990 +338 10400 0.4050 +338 10492 0.5340 +338 10577 0.7280 +338 10599 0.4070 +338 10618 0.5200 +338 10628 0.5420 +338 10841 0.6010 +338 10842 0.4260 +338 10891 0.5480 +338 10930 0.8600 +338 10969 0.4260 +338 10998 0.5000 +338 10999 0.5150 +338 11001 0.5290 +338 11037 0.4990 +338 22848 0.5210 +338 22905 0.4990 +338 23149 0.5000 +338 23166 0.8600 +338 23175 0.4100 +338 23197 0.5230 +338 23208 0.4990 +338 25939 0.4900 +338 25977 0.4990 +338 26020 0.5030 +338 26119 0.9260 +338 26228 0.4440 +338 26291 0.4500 +338 27141 0.8370 +338 27329 0.8770 +338 27350 0.8160 +338 29116 0.6070 +338 29881 0.9030 +338 29924 0.4990 +338 29927 0.4470 +338 29967 0.4630 +338 29974 0.8560 +338 29978 0.5130 +338 29988 0.5260 +338 30011 0.4990 +338 50618 0.5380 +338 51085 0.5970 +338 51128 0.8220 +338 51129 0.4940 +338 51141 0.4090 +338 51156 0.4220 +338 51449 0.7870 +338 51599 0.8470 +338 51726 0.5220 +338 53345 0.6540 +338 53630 0.4060 +338 54502 0.4520 +338 54757 0.4080 +338 55576 0.8360 +338 55707 0.4990 +338 55829 0.8200 +338 55911 0.9690 +338 55937 0.9330 +338 56729 0.4480 +338 56975 0.5300 +338 57104 0.4900 +338 57379 0.6170 +338 57678 0.4450 +338 57818 0.4310 +338 58191 0.4310 +338 58513 0.5070 +338 60489 0.8000 +338 64240 0.7730 +338 64241 0.7400 +338 64374 0.4040 +338 64788 0.5270 +338 79135 0.6800 +338 79139 0.6380 +338 80168 0.4710 +338 80339 0.5720 +338 81035 0.7400 +338 83706 0.4140 +338 84251 0.4990 +338 84447 0.4330 +338 84647 0.6310 +338 84649 0.6760 +338 84666 0.4460 +338 84699 0.6250 +338 84706 0.5230 +338 84722 0.5000 +338 84955 0.6240 +338 85021 0.4990 +338 85363 0.5740 +338 85439 0.4990 +338 85440 0.4280 +338 90019 0.4990 +338 92579 0.4280 +338 114884 0.5270 +338 115548 0.4990 +338 116519 0.9860 +338 127833 0.4990 +338 130502 0.4700 +338 137902 0.4760 +338 140564 0.4890 +338 143425 0.4990 +338 148113 0.4360 +338 158833 0.5540 +338 164668 0.5450 +338 200315 0.7650 +338 200316 0.7090 +338 201799 0.4080 +338 221914 0.5270 +338 255324 0.4990 +338 255738 0.9870 +338 285855 0.4710 +338 338328 0.7370 +338 345275 0.4070 +338 375056 0.5650 +338 375790 0.6660 +338 403314 0.6870 +338 440026 0.5570 +338 493869 0.4090 +338 100528017 0.6540 +339 978 0.9670 +339 1670 0.4150 +339 1982 0.5630 +339 3182 0.8370 +339 4340 0.4550 +339 4763 0.5730 +339 5450 0.4240 +339 6515 0.5130 +339 6996 0.6880 +339 7374 0.8220 +339 8065 0.6770 +339 8930 0.4380 +339 9582 0.6450 +339 9589 0.6160 +339 9987 0.4200 +339 10492 0.7720 +339 10930 0.7490 +339 23091 0.5880 +339 23466 0.4430 +339 23583 0.4560 +339 25962 0.6040 +339 27350 0.6320 +339 29890 0.5910 +339 29974 0.9980 +339 50856 0.5590 +339 51455 0.4520 +339 51726 0.7360 +339 54502 0.6850 +339 56339 0.6700 +339 57721 0.6460 +339 64783 0.6060 +339 79872 0.5740 +339 80312 0.5440 +339 133482 0.5240 +339 164668 0.6510 +339 170482 0.4340 +339 200315 0.6570 +339 373863 0.4340 +339 403314 0.9810 +341 344 0.9990 +341 345 0.9990 +341 346 0.9900 +341 347 0.8540 +341 348 0.9990 +341 350 0.9310 +341 351 0.8020 +341 433 0.4340 +341 718 0.4310 +341 922 0.5180 +341 945 0.5600 +341 949 0.4520 +341 1071 0.9850 +341 1158 0.4780 +341 1191 0.9690 +341 1278 0.4170 +341 1281 0.4190 +341 1289 0.4070 +341 1506 0.4290 +341 1548 0.4260 +341 1549 0.4940 +341 1553 0.4910 +341 1622 0.7370 +341 1952 0.4470 +341 2147 0.4790 +341 2168 0.6240 +341 2180 0.4150 +341 2243 0.4540 +341 2244 0.4410 +341 2266 0.4470 +341 2335 0.4850 +341 2638 0.5580 +341 3069 0.6210 +341 3240 0.7260 +341 3250 0.8530 +341 3263 0.4220 +341 3273 0.5260 +341 3339 0.4840 +341 3697 0.5880 +341 3699 0.4600 +341 3700 0.5010 +341 3931 0.9730 +341 3949 0.5400 +341 3952 0.4750 +341 3990 0.8530 +341 4018 0.8730 +341 4023 0.8660 +341 4133 0.4440 +341 4481 0.6590 +341 4547 0.5480 +341 5004 0.4290 +341 5184 0.7800 +341 5265 0.7580 +341 5340 0.4890 +341 5360 0.8810 +341 5444 0.9300 +341 5819 0.5440 +341 6256 0.5290 +341 6257 0.4990 +341 6288 0.7340 +341 6289 0.7170 +341 6291 0.7110 +341 7276 0.6020 +341 7376 0.5780 +341 7436 0.8060 +341 7753 0.4150 +341 7941 0.8420 +341 8435 0.4360 +341 8504 0.7200 +341 8542 0.9180 +341 9370 0.4800 +341 9619 0.4220 +341 10062 0.6890 +341 10347 0.4010 +341 10452 0.7550 +341 23788 0.4390 +341 25874 0.4960 +341 27329 0.4400 +341 51449 0.7720 +341 51599 0.5620 +341 54209 0.5250 +341 55763 0.5830 +341 55829 0.7200 +341 55911 0.5590 +341 55937 0.9390 +341 79135 0.6320 +341 79568 0.5680 +341 84722 0.4330 +341 116519 0.9470 +341 255738 0.6190 +341 100528017 0.5890 +343 358 0.6730 +343 359 0.6820 +343 360 0.7480 +343 362 0.6590 +343 363 0.4130 +343 364 0.8200 +343 366 0.7260 +343 766 0.4180 +343 1015 0.4660 +343 1087 0.4060 +343 1179 0.4650 +343 1811 0.5130 +343 2710 0.5060 +343 2712 0.5060 +343 2713 0.4500 +343 2820 0.5090 +343 2980 0.6120 +343 2981 0.5420 +343 4284 0.6860 +343 5700 0.4500 +343 5701 0.4500 +343 5705 0.4500 +343 5832 0.4150 +343 8647 0.4250 +343 11104 0.4600 +343 22802 0.5600 +343 23729 0.4500 +343 29028 0.4500 +343 51451 0.6540 +343 54454 0.4500 +343 54831 0.4060 +343 54860 0.7040 +343 55277 0.4500 +343 83473 0.4780 +343 84056 0.4600 +343 89872 0.9670 +343 256356 0.4500 +343 282679 0.9530 +343 653437 0.5140 +343 653808 0.5270 +343 100509620 0.6180 +344 345 0.9990 +344 346 0.9870 +344 347 0.7540 +344 348 0.9990 +344 350 0.9460 +344 351 0.7720 +344 478 0.4950 +344 602 0.5790 +344 949 0.5210 +344 1071 0.9290 +344 1081 0.4410 +344 1158 0.6680 +344 1159 0.4530 +344 1191 0.9550 +344 1356 0.5010 +344 1548 0.6770 +344 1549 0.7510 +344 1553 0.7490 +344 1572 0.6940 +344 1581 0.4780 +344 1582 0.5160 +344 1622 0.7200 +344 1760 0.4610 +344 2168 0.4200 +344 2239 0.5040 +344 2243 0.4620 +344 2262 0.5010 +344 2524 0.4240 +344 2696 0.4080 +344 2719 0.5400 +344 2817 0.4990 +344 2819 0.4080 +344 2821 0.4230 +344 3035 0.5480 +344 3053 0.4340 +344 3064 0.4740 +344 3069 0.7710 +344 3240 0.4050 +344 3250 0.8200 +344 3270 0.6550 +344 3315 0.4160 +344 3316 0.4060 +344 3339 0.4990 +344 3630 0.4740 +344 3697 0.5840 +344 3816 0.5350 +344 3931 0.9340 +344 3949 0.5530 +344 3990 0.9120 +344 4018 0.8900 +344 4023 0.9980 +344 4035 0.5610 +344 4036 0.4850 +344 4481 0.6210 +344 4547 0.5850 +344 5004 0.6330 +344 5005 0.5800 +344 5184 0.7950 +344 5265 0.7080 +344 5340 0.4740 +344 5360 0.8830 +344 5406 0.4230 +344 5444 0.8840 +344 5465 0.4790 +344 5819 0.6070 +344 6256 0.5650 +344 6257 0.5090 +344 6261 0.4100 +344 6288 0.8360 +344 6289 0.7330 +344 6291 0.7560 +344 6382 0.5940 +344 6383 0.5050 +344 6385 0.4990 +344 6720 0.4500 +344 6822 0.5580 +344 7276 0.5260 +344 7376 0.5870 +344 7436 0.7650 +344 7448 0.4100 +344 7804 0.5010 +344 7941 0.8200 +344 8431 0.4270 +344 8504 0.7200 +344 8542 0.9070 +344 8988 0.4120 +344 9388 0.5270 +344 9619 0.4550 +344 9622 0.5780 +344 9672 0.5000 +344 9971 0.6180 +344 10062 0.6250 +344 10082 0.4990 +344 10452 0.7800 +344 23438 0.5480 +344 26119 0.4160 +344 26291 0.5580 +344 27329 0.6950 +344 29881 0.4070 +344 29967 0.4200 +344 51129 0.5150 +344 51449 0.7740 +344 51599 0.5840 +344 55763 0.4970 +344 55829 0.7200 +344 55911 0.5500 +344 55937 0.9430 +344 63924 0.5460 +344 64240 0.5290 +344 64241 0.5150 +344 64577 0.6000 +344 64788 0.9280 +344 79135 0.6630 +344 84699 0.7670 +344 93659 0.4440 +344 116519 0.9940 +344 221914 0.5200 +344 255738 0.5220 +344 338328 0.9190 +344 374897 0.4440 +344 375790 0.5200 +344 100528017 0.6270 +345 346 0.9290 +345 347 0.7770 +345 348 0.9990 +345 350 0.9870 +345 351 0.7660 +345 356 0.4060 +345 406 0.4300 +345 432 0.4940 +345 433 0.5180 +345 462 0.8700 +345 629 0.5280 +345 718 0.4400 +345 721 0.5870 +345 722 0.5620 +345 731 0.4630 +345 732 0.4040 +345 735 0.4090 +345 948 0.4240 +345 949 0.8420 +345 1071 0.9770 +345 1191 0.9210 +345 1361 0.4240 +345 1373 0.4760 +345 1401 0.6090 +345 1576 0.5270 +345 1581 0.6070 +345 1582 0.4060 +345 1622 0.7550 +345 1718 0.4610 +345 2147 0.8890 +345 2159 0.4950 +345 2168 0.9330 +345 2169 0.4850 +345 2239 0.5080 +345 2243 0.8220 +345 2244 0.7560 +345 2262 0.5090 +345 2266 0.7790 +345 2267 0.4750 +345 2308 0.7200 +345 2335 0.4920 +345 2538 0.6010 +345 2590 0.5140 +345 2638 0.5100 +345 2646 0.4220 +345 2719 0.5650 +345 2817 0.5050 +345 2875 0.4190 +345 2878 0.4810 +345 3053 0.5730 +345 3069 0.8450 +345 3156 0.5050 +345 3158 0.4680 +345 3172 0.7030 +345 3240 0.5630 +345 3242 0.4660 +345 3250 0.8510 +345 3263 0.5210 +345 3273 0.6490 +345 3339 0.5210 +345 3484 0.4800 +345 3569 0.4020 +345 3630 0.6470 +345 3697 0.4460 +345 3698 0.5180 +345 3699 0.5250 +345 3827 0.5110 +345 3931 0.9580 +345 3949 0.5440 +345 3952 0.4330 +345 3990 0.9080 +345 3991 0.7200 +345 4018 0.9570 +345 4023 0.9810 +345 4035 0.5720 +345 4036 0.5110 +345 4143 0.4100 +345 4153 0.4540 +345 4481 0.5400 +345 4547 0.7990 +345 4862 0.4290 +345 5004 0.6760 +345 5005 0.6860 +345 5009 0.5080 +345 5105 0.4350 +345 5176 0.4510 +345 5265 0.7670 +345 5267 0.4290 +345 5340 0.6290 +345 5345 0.5080 +345 5360 0.8840 +345 5373 0.4450 +345 5444 0.9330 +345 5445 0.5230 +345 5465 0.7090 +345 5467 0.4050 +345 5468 0.5560 +345 5950 0.5820 +345 6095 0.4160 +345 6096 0.4590 +345 6288 0.8890 +345 6289 0.8210 +345 6291 0.7990 +345 6382 0.6090 +345 6383 0.5040 +345 6385 0.5140 +345 6514 0.6570 +345 6622 0.4560 +345 6648 0.4100 +345 6720 0.5700 +345 6822 0.5380 +345 6906 0.7100 +345 6927 0.4100 +345 7018 0.5270 +345 7037 0.4650 +345 7097 0.9630 +345 7124 0.5430 +345 7276 0.7710 +345 7391 0.5340 +345 7436 0.7650 +345 7448 0.5820 +345 7804 0.5160 +345 7941 0.8550 +345 8431 0.5420 +345 8435 0.5730 +345 8504 0.7200 +345 8542 0.9240 +345 8694 0.4250 +345 9032 0.5370 +345 9370 0.5130 +345 9388 0.5860 +345 9572 0.6360 +345 9619 0.4330 +345 9672 0.4990 +345 9971 0.6700 +345 9975 0.4640 +345 10082 0.5260 +345 10466 0.4380 +345 10555 0.4240 +345 10998 0.5610 +345 11001 0.4110 +345 27329 0.8480 +345 29881 0.5830 +345 29967 0.4100 +345 51085 0.5300 +345 51129 0.6170 +345 51449 0.8230 +345 51599 0.6110 +345 51703 0.4290 +345 53345 0.5510 +345 55304 0.4150 +345 55829 0.7320 +345 55911 0.5720 +345 55937 0.9550 +345 57453 0.5540 +345 57678 0.4790 +345 64240 0.5810 +345 64241 0.6010 +345 64788 0.6470 +345 79135 0.6390 +345 80339 0.5930 +345 84647 0.5170 +345 84649 0.4380 +345 84699 0.5600 +345 84722 0.4510 +345 85365 0.5100 +345 113174 0.4100 +345 116519 0.9950 +345 221914 0.5310 +345 255738 0.7340 +345 338328 0.8100 +345 375790 0.5260 +345 100507203 0.4090 +345 100528017 0.6400 +346 347 0.5200 +346 348 0.9570 +346 350 0.8770 +346 351 0.7500 +346 718 0.5380 +346 1071 0.8410 +346 1191 0.8160 +346 1622 0.7200 +346 3053 0.4240 +346 3069 0.5400 +346 3250 0.8020 +346 3263 0.4160 +346 3697 0.4170 +346 3931 0.8280 +346 3949 0.5400 +346 3990 0.7590 +346 4018 0.8550 +346 4023 0.6720 +346 4143 0.4230 +346 4481 0.5580 +346 5360 0.8400 +346 5444 0.9080 +346 6256 0.4560 +346 6257 0.4030 +346 6288 0.6930 +346 6289 0.6840 +346 6291 0.7310 +346 6694 0.4020 +346 7376 0.4340 +346 7436 0.6210 +346 7941 0.7730 +346 8504 0.7200 +346 8542 0.8470 +346 9519 0.4010 +346 10062 0.4690 +346 10452 0.4370 +346 51449 0.8250 +346 51599 0.5400 +346 55829 0.7200 +346 55911 0.5400 +346 55937 0.8900 +346 79135 0.6110 +346 80831 0.4260 +346 116519 0.9290 +346 100528017 0.5990 +347 348 0.9360 +347 350 0.8040 +347 563 0.7070 +347 567 0.6000 +347 720 0.4050 +347 722 0.5270 +347 960 0.5060 +347 1071 0.6280 +347 1191 0.9390 +347 1200 0.4070 +347 1356 0.4380 +347 1436 0.4520 +347 1476 0.7810 +347 1520 0.6480 +347 2099 0.4510 +347 2252 0.4770 +347 2256 0.5670 +347 2257 0.5840 +347 2259 0.5970 +347 2260 0.4130 +347 2261 0.4170 +347 2335 0.6740 +347 2739 0.5080 +347 2934 0.5730 +347 2990 0.4380 +347 3250 0.4450 +347 3491 0.4110 +347 3835 0.7270 +347 3931 0.8590 +347 3933 0.9080 +347 3953 0.6630 +347 4018 0.4790 +347 4036 0.5200 +347 4057 0.4430 +347 4314 0.4740 +347 4316 0.4680 +347 4502 0.7460 +347 5004 0.4190 +347 5005 0.4010 +347 5196 0.4830 +347 5265 0.4240 +347 5304 0.7300 +347 5354 0.4190 +347 5360 0.6770 +347 5423 0.4140 +347 5444 0.5160 +347 5446 0.4390 +347 5465 0.4860 +347 5730 0.5920 +347 5911 0.4440 +347 6120 0.5650 +347 6256 0.5380 +347 6257 0.5140 +347 6462 0.5550 +347 6649 0.4270 +347 6696 0.5540 +347 6750 0.5630 +347 7018 0.4280 +347 7276 0.6080 +347 7376 0.5570 +347 7436 0.5360 +347 8404 0.4480 +347 8542 0.7220 +347 9218 0.4650 +347 10062 0.5550 +347 10347 0.4370 +347 22883 0.4090 +347 23460 0.4680 +347 25870 0.4580 +347 29989 0.7610 +347 29991 0.7660 +347 55662 0.4270 +347 55869 0.4200 +347 55937 0.7900 +347 58157 0.4810 +347 79135 0.4320 +347 83706 0.4130 +347 85477 0.5270 +347 116519 0.5740 +347 138307 0.5100 +347 154881 0.4310 +347 286256 0.5020 +347 389812 0.6020 +347 392399 0.6100 +348 350 0.9210 +348 351 0.9990 +348 383 0.4770 +348 384 0.4050 +348 387 0.4080 +348 427 0.4720 +348 462 0.5700 +348 468 0.4780 +348 558 0.4560 +348 566 0.4630 +348 567 0.8030 +348 590 0.8350 +348 595 0.4930 +348 596 0.4910 +348 627 0.8310 +348 629 0.7000 +348 633 0.7230 +348 706 0.5870 +348 712 0.5460 +348 714 0.6850 +348 717 0.4020 +348 718 0.7320 +348 720 0.5200 +348 721 0.4720 +348 722 0.5080 +348 727 0.5360 +348 735 0.8170 +348 796 0.5340 +348 811 0.5930 +348 821 0.5000 +348 834 0.5170 +348 836 0.6140 +348 857 0.8010 +348 860 0.4150 +348 875 0.4690 +348 920 0.7010 +348 925 0.5100 +348 928 0.4290 +348 945 0.8130 +348 947 0.4470 +348 948 0.7950 +348 949 0.9680 +348 950 0.7970 +348 958 0.4400 +348 960 0.9370 +348 961 0.5460 +348 966 0.5960 +348 967 0.4210 +348 968 0.8430 +348 972 0.4700 +348 975 0.6630 +348 1003 0.4830 +348 1020 0.6310 +348 1050 0.4020 +348 1071 0.9740 +348 1073 0.5130 +348 1075 0.4940 +348 1103 0.4460 +348 1116 0.5180 +348 1137 0.5690 +348 1191 0.9990 +348 1232 0.4310 +348 1234 0.7830 +348 1277 0.5490 +348 1281 0.5500 +348 1284 0.4550 +348 1289 0.4690 +348 1312 0.6340 +348 1356 0.6480 +348 1379 0.4540 +348 1385 0.4740 +348 1401 0.8030 +348 1409 0.4260 +348 1410 0.5230 +348 1432 0.5410 +348 1435 0.4950 +348 1436 0.5840 +348 1437 0.5130 +348 1471 0.8500 +348 1499 0.6810 +348 1508 0.6990 +348 1509 0.7630 +348 1520 0.5310 +348 1524 0.7640 +348 1535 0.4760 +348 1536 0.5940 +348 1558 0.4860 +348 1559 0.4090 +348 1565 0.4090 +348 1581 0.7250 +348 1593 0.5450 +348 1622 0.9130 +348 1636 0.8760 +348 1717 0.5440 +348 1718 0.4130 +348 1742 0.4900 +348 1803 0.4540 +348 1906 0.5860 +348 1950 0.4470 +348 1952 0.4840 +348 1956 0.6080 +348 1958 0.5900 +348 2022 0.4590 +348 2033 0.7240 +348 2041 0.5790 +348 2053 0.5560 +348 2066 0.8620 +348 2099 0.4790 +348 2147 0.4630 +348 2152 0.5340 +348 2159 0.5260 +348 2161 0.5080 +348 2167 0.5130 +348 2168 0.4090 +348 2185 0.4470 +348 2194 0.4610 +348 2199 0.4040 +348 2200 0.4180 +348 2239 0.6420 +348 2243 0.7050 +348 2244 0.4390 +348 2247 0.5350 +348 2248 0.5670 +348 2249 0.5770 +348 2250 0.5680 +348 2251 0.5680 +348 2252 0.5680 +348 2253 0.5670 +348 2254 0.5690 +348 2255 0.5710 +348 2262 0.6760 +348 2266 0.6830 +348 2308 0.4010 +348 2309 0.4470 +348 2321 0.5700 +348 2335 0.7120 +348 2353 0.4130 +348 2475 0.4470 +348 2521 0.4380 +348 2597 0.6360 +348 2629 0.6590 +348 2638 0.4480 +348 2641 0.4850 +348 2670 0.6440 +348 2677 0.4230 +348 2719 0.6510 +348 2740 0.4330 +348 2806 0.4820 +348 2811 0.5430 +348 2813 0.4350 +348 2817 0.7210 +348 2875 0.5070 +348 2877 0.6760 +348 2878 0.7150 +348 2879 0.4210 +348 2880 0.6640 +348 2882 0.6640 +348 2896 0.5750 +348 2904 0.4180 +348 2919 0.4270 +348 2920 0.4800 +348 2932 0.7030 +348 2934 0.8280 +348 3064 0.4720 +348 3069 0.7680 +348 3075 0.9580 +348 3077 0.4710 +348 3091 0.4850 +348 3106 0.4990 +348 3113 0.4070 +348 3123 0.5770 +348 3127 0.4380 +348 3156 0.8060 +348 3162 0.5720 +348 3240 0.8110 +348 3250 0.7960 +348 3263 0.4380 +348 3276 0.8870 +348 3309 0.4930 +348 3339 0.9540 +348 3375 0.8180 +348 3383 0.7890 +348 3416 0.6670 +348 3426 0.5570 +348 3455 0.4710 +348 3458 0.8380 +348 3479 0.5790 +348 3481 0.4770 +348 3552 0.6020 +348 3553 0.8460 +348 3557 0.5090 +348 3558 0.4310 +348 3565 0.5420 +348 3567 0.5900 +348 3569 0.8350 +348 3576 0.6830 +348 3578 0.4420 +348 3586 0.7340 +348 3596 0.6360 +348 3605 0.6860 +348 3606 0.5490 +348 3627 0.4760 +348 3630 0.9200 +348 3635 0.4790 +348 3667 0.4860 +348 3684 0.6990 +348 3687 0.5290 +348 3688 0.5860 +348 3699 0.7050 +348 3700 0.4180 +348 3725 0.5450 +348 3791 0.4600 +348 3827 0.4710 +348 3916 0.4530 +348 3931 0.9560 +348 3949 0.8390 +348 3952 0.7150 +348 3953 0.4200 +348 3958 0.5810 +348 3973 0.4490 +348 3988 0.4980 +348 3990 0.9430 +348 3991 0.7510 +348 4000 0.5750 +348 4015 0.4550 +348 4016 0.5220 +348 4018 0.9710 +348 4023 0.9820 +348 4035 0.9990 +348 4036 0.9990 +348 4037 0.5140 +348 4040 0.6390 +348 4041 0.7360 +348 4057 0.8280 +348 4069 0.6370 +348 4094 0.4620 +348 4128 0.4340 +348 4129 0.4680 +348 4137 0.9910 +348 4179 0.4450 +348 4192 0.5090 +348 4208 0.4120 +348 4240 0.6350 +348 4256 0.4540 +348 4261 0.4490 +348 4311 0.5430 +348 4313 0.6610 +348 4314 0.8210 +348 4318 0.7690 +348 4319 0.7160 +348 4321 0.4620 +348 4353 0.6300 +348 4360 0.5330 +348 4481 0.8780 +348 4513 0.4080 +348 4524 0.8430 +348 4537 0.4340 +348 4547 0.7490 +348 4629 0.4610 +348 4669 0.4420 +348 4691 0.5650 +348 4741 0.4550 +348 4747 0.6130 +348 4780 0.4900 +348 4790 0.5540 +348 4792 0.4780 +348 4803 0.6090 +348 4842 0.5860 +348 4843 0.4200 +348 4846 0.7770 +348 4854 0.4030 +348 4864 0.6710 +348 4878 0.6600 +348 4900 0.4790 +348 4907 0.5290 +348 4973 0.6740 +348 5045 0.5950 +348 5054 0.6010 +348 5071 0.6170 +348 5159 0.6200 +348 5175 0.5950 +348 5176 0.4510 +348 5184 0.5560 +348 5196 0.6230 +348 5252 0.4190 +348 5265 0.7810 +348 5327 0.6390 +348 5328 0.5580 +348 5340 0.6520 +348 5346 0.4030 +348 5360 0.9680 +348 5444 0.9770 +348 5445 0.5870 +348 5446 0.5110 +348 5465 0.6320 +348 5467 0.4480 +348 5468 0.7400 +348 5478 0.5280 +348 5566 0.6180 +348 5567 0.6170 +348 5568 0.6170 +348 5595 0.5060 +348 5617 0.5740 +348 5621 0.7170 +348 5649 0.7090 +348 5663 0.9560 +348 5664 0.9610 +348 5725 0.4510 +348 5728 0.5280 +348 5730 0.4120 +348 5743 0.5210 +348 5788 0.5800 +348 5803 0.4060 +348 5819 0.4540 +348 5949 0.4140 +348 5950 0.4390 +348 5972 0.7320 +348 6017 0.4350 +348 6256 0.6360 +348 6257 0.5750 +348 6272 0.7430 +348 6277 0.5010 +348 6285 0.5270 +348 6288 0.7630 +348 6289 0.7500 +348 6291 0.7030 +348 6319 0.5260 +348 6326 0.4540 +348 6347 0.7460 +348 6348 0.6920 +348 6376 0.6410 +348 6382 0.9320 +348 6383 0.7410 +348 6385 0.7690 +348 6387 0.5000 +348 6401 0.6160 +348 6403 0.5930 +348 6406 0.4990 +348 6414 0.4780 +348 6506 0.4200 +348 6517 0.4400 +348 6531 0.4510 +348 6532 0.4520 +348 6616 0.4130 +348 6622 0.9960 +348 6625 0.4490 +348 6646 0.5450 +348 6647 0.5360 +348 6648 0.4480 +348 6653 0.9970 +348 6696 0.5720 +348 6714 0.5920 +348 6720 0.7210 +348 6721 0.6210 +348 6772 0.7330 +348 6774 0.4870 +348 6820 0.4350 +348 6855 0.4930 +348 6876 0.5320 +348 6908 0.4710 +348 7001 0.5180 +348 7010 0.4080 +348 7018 0.6270 +348 7037 0.4800 +348 7040 0.6940 +348 7045 0.6310 +348 7057 0.6490 +348 7058 0.5640 +348 7064 0.4070 +348 7070 0.5450 +348 7076 0.4760 +348 7077 0.4150 +348 7078 0.5450 +348 7097 0.5430 +348 7099 0.7770 +348 7122 0.4880 +348 7124 0.8060 +348 7157 0.6780 +348 7184 0.7240 +348 7274 0.4940 +348 7276 0.9520 +348 7295 0.4380 +348 7305 0.6520 +348 7350 0.4050 +348 7351 0.4040 +348 7376 0.7930 +348 7412 0.7990 +348 7415 0.6220 +348 7416 0.7610 +348 7431 0.4080 +348 7436 0.9980 +348 7447 0.4490 +348 7448 0.9890 +348 7450 0.5620 +348 7494 0.4320 +348 7498 0.5390 +348 7534 0.6200 +348 7545 0.5010 +348 7546 0.4120 +348 7804 0.9990 +348 7837 0.6110 +348 7852 0.5580 +348 7913 0.7550 +348 7941 0.9700 +348 8301 0.7730 +348 8404 0.4310 +348 8435 0.5490 +348 8504 0.9000 +348 8530 0.6030 +348 8542 0.9650 +348 8633 0.5080 +348 8648 0.5170 +348 8694 0.4440 +348 8817 0.5760 +348 8822 0.5790 +348 8823 0.5680 +348 8878 0.5980 +348 9015 0.4680 +348 9023 0.5420 +348 9076 0.5730 +348 9080 0.4220 +348 9201 0.4050 +348 9213 0.7940 +348 9314 0.4360 +348 9332 0.4930 +348 9365 0.4560 +348 9370 0.7950 +348 9388 0.5420 +348 9445 0.6670 +348 9619 0.9280 +348 9627 0.4170 +348 9672 0.5940 +348 9846 0.7190 +348 9911 0.6620 +348 9971 0.5250 +348 10062 0.8500 +348 10082 0.6120 +348 10133 0.5620 +348 10142 0.4560 +348 10226 0.4960 +348 10347 0.7740 +348 10365 0.4470 +348 10418 0.5750 +348 10452 0.9000 +348 10457 0.6430 +348 10461 0.6980 +348 10498 0.9480 +348 10521 0.4320 +348 10563 0.5570 +348 10577 0.5120 +348 10599 0.5830 +348 10659 0.4820 +348 10858 0.7400 +348 10891 0.5220 +348 10971 0.6620 +348 10979 0.4840 +348 11006 0.8590 +348 11309 0.4120 +348 11315 0.4310 +348 22915 0.4430 +348 22926 0.5250 +348 23385 0.6410 +348 23411 0.5840 +348 23435 0.6670 +348 23541 0.4140 +348 23558 0.4830 +348 23607 0.6430 +348 23621 0.7850 +348 23646 0.5540 +348 25825 0.4890 +348 26020 0.8720 +348 26119 0.7310 +348 26281 0.5690 +348 26291 0.4090 +348 27006 0.5680 +348 27035 0.5010 +348 27185 0.4620 +348 27250 0.6100 +348 27329 0.5770 +348 28959 0.5220 +348 29116 0.6100 +348 29881 0.5900 +348 29967 0.4770 +348 29979 0.4180 +348 50507 0.5620 +348 50943 0.4710 +348 51085 0.4110 +348 51107 0.4310 +348 51129 0.4540 +348 51225 0.4170 +348 51295 0.6190 +348 51314 0.4830 +348 51338 0.5260 +348 51422 0.4710 +348 51449 0.7840 +348 51599 0.7690 +348 53353 0.5500 +348 54205 0.4180 +348 54209 0.9970 +348 54210 0.4800 +348 54664 0.6000 +348 54757 0.4250 +348 54959 0.4990 +348 55063 0.5470 +348 55799 0.4450 +348 55829 0.7600 +348 55851 0.7040 +348 55911 0.6260 +348 55937 0.9410 +348 56729 0.4460 +348 56922 0.4380 +348 56975 0.5400 +348 57091 0.5070 +348 57326 0.4140 +348 57552 0.5650 +348 58157 0.5080 +348 59272 0.4320 +348 64137 0.6740 +348 64231 0.6160 +348 64240 0.6290 +348 64241 0.6160 +348 64581 0.5850 +348 64759 0.4290 +348 64788 0.4580 +348 64805 0.6840 +348 65018 0.4720 +348 79001 0.4870 +348 79068 0.7130 +348 79135 0.6270 +348 79258 0.6210 +348 79890 0.4470 +348 83706 0.4220 +348 84547 0.4180 +348 84666 0.4480 +348 84722 0.4720 +348 85477 0.6400 +348 92747 0.4380 +348 93624 0.4120 +348 114548 0.5050 +348 114757 0.4350 +348 114815 0.4100 +348 116519 0.9920 +348 120892 0.4860 +348 123041 0.4470 +348 137902 0.6080 +348 143458 0.4690 +348 146713 0.4260 +348 150372 0.4020 +348 203228 0.5410 +348 220074 0.4510 +348 221914 0.5950 +348 245802 0.5120 +348 246744 0.5310 +348 255022 0.5580 +348 255738 0.7290 +348 257019 0.4480 +348 257202 0.6630 +348 338328 0.7060 +348 338773 0.6910 +348 375790 0.7320 +348 387715 0.5800 +348 404037 0.4180 +348 493869 0.6630 +348 643680 0.5750 +348 653145 0.4430 +348 653361 0.4850 +348 100506658 0.5800 +348 100528017 0.6280 +350 351 0.7630 +350 408 0.4040 +350 432 0.5080 +350 462 0.9440 +350 563 0.8100 +350 715 0.4080 +350 717 0.4440 +350 718 0.6210 +350 720 0.5610 +350 721 0.5540 +350 722 0.5270 +350 727 0.4280 +350 731 0.4760 +350 735 0.5120 +350 866 0.5160 +350 1071 0.8170 +350 1191 0.9110 +350 1356 0.5230 +350 1361 0.7470 +350 1373 0.5450 +350 1401 0.7780 +350 1521 0.4090 +350 1604 0.4240 +350 1622 0.7200 +350 1667 0.4260 +350 1773 0.4430 +350 1893 0.4990 +350 2147 0.9840 +350 2152 0.7200 +350 2153 0.4170 +350 2155 0.4830 +350 2158 0.4500 +350 2159 0.4380 +350 2160 0.4880 +350 2161 0.5090 +350 2168 0.7760 +350 2194 0.4210 +350 2220 0.4360 +350 2243 0.8710 +350 2244 0.8040 +350 2266 0.9100 +350 2267 0.8440 +350 2335 0.5370 +350 2638 0.7660 +350 2811 0.5160 +350 3026 0.5020 +350 3050 0.4230 +350 3053 0.8060 +350 3069 0.5520 +350 3240 0.7360 +350 3250 0.8740 +350 3263 0.7920 +350 3273 0.8620 +350 3426 0.4630 +350 3484 0.6880 +350 3697 0.5350 +350 3698 0.8670 +350 3699 0.7770 +350 3700 0.8510 +350 3827 0.6270 +350 3848 0.4060 +350 3931 0.8280 +350 3949 0.7070 +350 3959 0.4970 +350 3990 0.7350 +350 4018 0.9410 +350 4023 0.9230 +350 4036 0.4030 +350 4069 0.4640 +350 4153 0.6000 +350 4353 0.4310 +350 4481 0.5980 +350 4524 0.4710 +350 5004 0.7600 +350 5005 0.6360 +350 5034 0.4110 +350 5104 0.4170 +350 5176 0.5940 +350 5196 0.7630 +350 5197 0.6540 +350 5265 0.8450 +350 5267 0.6800 +350 5327 0.4280 +350 5340 0.9400 +350 5345 0.8220 +350 5360 0.8170 +350 5444 0.8700 +350 5624 0.6160 +350 5657 0.5240 +350 5919 0.4030 +350 5950 0.4980 +350 6288 0.6780 +350 6289 0.6780 +350 6291 0.7180 +350 6414 0.4970 +350 6625 0.4300 +350 6694 0.6430 +350 6737 0.5420 +350 6738 0.6880 +350 6741 0.5230 +350 6906 0.6110 +350 7018 0.6280 +350 7056 0.4070 +350 7078 0.4160 +350 7096 0.4650 +350 7097 0.8360 +350 7099 0.8420 +350 7123 0.5070 +350 7168 0.4700 +350 7276 0.6910 +350 7299 0.7780 +350 7365 0.4010 +350 7436 0.7600 +350 7448 0.7870 +350 7450 0.6600 +350 7514 0.4530 +350 7804 0.9370 +350 7941 0.7450 +350 8435 0.4860 +350 8504 0.7220 +350 8542 0.9040 +350 9567 0.6090 +350 9971 0.4370 +350 10130 0.4350 +350 10447 0.4410 +350 10747 0.4600 +350 10841 0.6080 +350 10998 0.4680 +350 11093 0.5170 +350 27329 0.4810 +350 27332 0.4020 +350 29974 0.4320 +350 51156 0.4940 +350 51311 0.4750 +350 51449 0.7810 +350 51599 0.5400 +350 51726 0.4140 +350 55664 0.4010 +350 55829 0.7200 +350 55911 0.5400 +350 55937 0.9810 +350 79135 0.7310 +350 79714 0.4350 +350 84649 0.4210 +350 115004 0.4180 +350 116519 0.9180 +350 116844 0.4020 +350 255738 0.5400 +350 256394 0.4480 +350 728358 0.4830 +350 100528017 0.5910 +351 387 0.4580 +351 408 0.6480 +351 409 0.5430 +351 439 0.5000 +351 547 0.4020 +351 567 0.7660 +351 590 0.7270 +351 596 0.5940 +351 627 0.8580 +351 633 0.7380 +351 642 0.6150 +351 682 0.5280 +351 695 0.6970 +351 706 0.5080 +351 718 0.8870 +351 719 0.5430 +351 720 0.6030 +351 721 0.6770 +351 793 0.4420 +351 796 0.4410 +351 808 0.5200 +351 810 0.4860 +351 811 0.8780 +351 815 0.5510 +351 821 0.6930 +351 823 0.6600 +351 824 0.6120 +351 826 0.5780 +351 829 0.6430 +351 830 0.5510 +351 834 0.5020 +351 836 0.9080 +351 839 0.9030 +351 840 0.4120 +351 841 0.4310 +351 842 0.4300 +351 846 0.4910 +351 857 0.7250 +351 875 0.4170 +351 920 0.4870 +351 945 0.6430 +351 948 0.6350 +351 949 0.6410 +351 950 0.6470 +351 960 0.8230 +351 961 0.6370 +351 967 0.5380 +351 968 0.5330 +351 972 0.9850 +351 983 0.4310 +351 1000 0.4110 +351 1012 0.4170 +351 1020 0.8680 +351 1071 0.7610 +351 1072 0.6250 +351 1073 0.6240 +351 1103 0.6190 +351 1116 0.5440 +351 1139 0.7160 +351 1191 0.9980 +351 1234 0.4450 +351 1238 0.4160 +351 1272 0.8000 +351 1277 0.4140 +351 1325 0.4960 +351 1356 0.4490 +351 1385 0.7130 +351 1387 0.7810 +351 1392 0.5240 +351 1401 0.6800 +351 1410 0.8980 +351 1436 0.4130 +351 1471 0.9270 +351 1499 0.8140 +351 1504 0.6450 +351 1506 0.7050 +351 1508 0.9020 +351 1509 0.7350 +351 1520 0.4480 +351 1524 0.4570 +351 1558 0.4070 +351 1600 0.6870 +351 1601 0.6770 +351 1622 0.7360 +351 1627 0.6520 +351 1634 0.4950 +351 1636 0.5160 +351 1641 0.5380 +351 1718 0.5310 +351 1719 0.5240 +351 1742 0.8290 +351 1759 0.4320 +351 1808 0.4650 +351 1814 0.5180 +351 1827 0.5320 +351 1839 0.4530 +351 1869 0.4490 +351 1889 0.7070 +351 1906 0.5910 +351 1950 0.6410 +351 1956 0.8890 +351 1962 0.4320 +351 1994 0.4950 +351 1996 0.5870 +351 2023 0.6980 +351 2026 0.4950 +351 2033 0.9590 +351 2041 0.5210 +351 2048 0.7330 +351 2066 0.4310 +351 2099 0.4350 +351 2152 0.5070 +351 2153 0.4560 +351 2160 0.9540 +351 2162 0.4310 +351 2185 0.4640 +351 2192 0.6230 +351 2213 0.7320 +351 2243 0.7850 +351 2244 0.5810 +351 2247 0.6300 +351 2266 0.6250 +351 2280 0.4980 +351 2309 0.8360 +351 2332 0.7820 +351 2335 0.7820 +351 2353 0.5430 +351 2357 0.5830 +351 2358 0.9870 +351 2359 0.6770 +351 2475 0.4910 +351 2521 0.6030 +351 2534 0.7800 +351 2596 0.6470 +351 2597 0.9800 +351 2621 0.5210 +351 2629 0.4550 +351 2638 0.4750 +351 2660 0.4380 +351 2668 0.5060 +351 2670 0.7720 +351 2691 0.4180 +351 2734 0.4150 +351 2771 0.8130 +351 2775 0.4500 +351 2782 0.9320 +351 2783 0.5250 +351 2784 0.5380 +351 2785 0.5460 +351 2786 0.5060 +351 2787 0.5400 +351 2788 0.4990 +351 2790 0.5070 +351 2791 0.5250 +351 2792 0.4990 +351 2793 0.6350 +351 2817 0.6150 +351 2827 0.4600 +351 2869 0.5400 +351 2877 0.4490 +351 2878 0.4490 +351 2880 0.4490 +351 2882 0.4500 +351 2885 0.9450 +351 2890 0.5870 +351 2891 0.4870 +351 2896 0.6010 +351 2902 0.7760 +351 2903 0.8480 +351 2904 0.8720 +351 2908 0.5860 +351 2911 0.4980 +351 2915 0.7540 +351 2919 0.4570 +351 2923 0.7370 +351 2931 0.9270 +351 2932 0.8970 +351 2934 0.8600 +351 2969 0.4470 +351 3002 0.5500 +351 3005 0.5350 +351 3028 0.8810 +351 3029 0.4330 +351 3033 0.4160 +351 3064 0.8260 +351 3069 0.6100 +351 3084 0.4930 +351 3091 0.4830 +351 3146 0.5830 +351 3156 0.4310 +351 3162 0.5120 +351 3163 0.7190 +351 3178 0.5380 +351 3181 0.5070 +351 3183 0.4870 +351 3240 0.5930 +351 3250 0.7840 +351 3276 0.5260 +351 3308 0.8490 +351 3309 0.5630 +351 3312 0.8260 +351 3315 0.6020 +351 3316 0.6090 +351 3320 0.6300 +351 3321 0.4420 +351 3326 0.4650 +351 3329 0.9160 +351 3339 0.8410 +351 3350 0.4500 +351 3356 0.4480 +351 3375 0.9380 +351 3383 0.5950 +351 3416 0.9950 +351 3417 0.5080 +351 3440 0.4590 +351 3458 0.5500 +351 3479 0.5480 +351 3480 0.4060 +351 3552 0.5070 +351 3553 0.8280 +351 3554 0.5170 +351 3558 0.5880 +351 3565 0.4520 +351 3569 0.6800 +351 3576 0.6340 +351 3586 0.5610 +351 3606 0.4160 +351 3630 0.7990 +351 3667 0.4700 +351 3672 0.4010 +351 3673 0.6040 +351 3674 0.6110 +351 3684 0.6000 +351 3688 0.7610 +351 3690 0.4260 +351 3725 0.7900 +351 3732 0.6080 +351 3778 0.4230 +351 3791 0.4840 +351 3816 0.4590 +351 3827 0.7320 +351 3831 0.9430 +351 3897 0.5990 +351 3916 0.5580 +351 3931 0.7540 +351 3934 0.9740 +351 3949 0.5800 +351 3952 0.4160 +351 3959 0.4520 +351 3960 0.5450 +351 3990 0.5730 +351 4018 0.8080 +351 4023 0.6450 +351 4035 0.9830 +351 4036 0.7450 +351 4038 0.7820 +351 4040 0.4750 +351 4057 0.6210 +351 4069 0.4780 +351 4089 0.5420 +351 4099 0.4910 +351 4128 0.4910 +351 4129 0.5890 +351 4131 0.6570 +351 4133 0.5920 +351 4137 0.9950 +351 4155 0.7440 +351 4171 0.5330 +351 4179 0.4640 +351 4193 0.5530 +351 4194 0.4070 +351 4204 0.4350 +351 4217 0.7280 +351 4225 0.4070 +351 4240 0.5410 +351 4282 0.4990 +351 4287 0.4010 +351 4311 0.8570 +351 4313 0.5920 +351 4318 0.6440 +351 4319 0.4310 +351 4340 0.4260 +351 4481 0.6630 +351 4513 0.4670 +351 4535 0.4370 +351 4601 0.4830 +351 4609 0.4600 +351 4684 0.4460 +351 4691 0.5450 +351 4738 0.4320 +351 4744 0.4900 +351 4747 0.8610 +351 4763 0.7860 +351 4780 0.5460 +351 4790 0.8700 +351 4791 0.5070 +351 4792 0.4170 +351 4803 0.8500 +351 4804 0.9590 +351 4842 0.5010 +351 4846 0.6770 +351 4851 0.8860 +351 4853 0.5870 +351 4854 0.4270 +351 4864 0.4470 +351 4878 0.5070 +351 4897 0.5280 +351 4900 0.6130 +351 4914 0.8560 +351 4915 0.6020 +351 4924 0.5790 +351 4976 0.4950 +351 5004 0.4460 +351 5005 0.4480 +351 5045 0.4830 +351 5067 0.7230 +351 5071 0.8560 +351 5118 0.4570 +351 5175 0.4020 +351 5176 0.5220 +351 5179 0.5850 +351 5196 0.5080 +351 5252 0.6320 +351 5265 0.7640 +351 5274 0.5540 +351 5300 0.4780 +351 5327 0.6740 +351 5328 0.6960 +351 5330 0.5430 +351 5331 0.5620 +351 5337 0.4640 +351 5340 0.6850 +351 5345 0.5250 +351 5354 0.5710 +351 5359 0.4260 +351 5360 0.7610 +351 5367 0.4960 +351 5444 0.7820 +351 5468 0.5480 +351 5473 0.4990 +351 5481 0.7970 +351 5516 0.4880 +351 5566 0.4800 +351 5567 0.4700 +351 5568 0.4680 +351 5580 0.4960 +351 5581 0.4570 +351 5594 0.8270 +351 5595 0.7530 +351 5597 0.4070 +351 5599 0.7180 +351 5617 0.4900 +351 5621 0.9980 +351 5644 0.8220 +351 5645 0.8040 +351 5646 0.8430 +351 5649 0.8190 +351 5653 0.9670 +351 5654 0.5130 +351 5663 0.9990 +351 5664 0.9690 +351 5683 0.4170 +351 5725 0.6010 +351 5728 0.5920 +351 5730 0.5830 +351 5743 0.6420 +351 5756 0.4550 +351 5768 0.4450 +351 5788 0.4060 +351 5816 0.4710 +351 5864 0.4050 +351 5868 0.5600 +351 5869 0.4800 +351 5888 0.4520 +351 5970 0.5520 +351 5996 0.5360 +351 5998 0.5220 +351 5999 0.6200 +351 6003 0.5290 +351 6004 0.5310 +351 6093 0.5270 +351 6198 0.4460 +351 6252 0.4260 +351 6272 0.8830 +351 6281 0.4350 +351 6283 0.5080 +351 6285 0.7480 +351 6288 0.6870 +351 6289 0.6690 +351 6291 0.6130 +351 6310 0.6090 +351 6334 0.5350 +351 6336 0.6690 +351 6347 0.5060 +351 6351 0.4720 +351 6357 0.4280 +351 6363 0.4180 +351 6368 0.4350 +351 6376 0.4570 +351 6406 0.4390 +351 6431 0.5200 +351 6440 0.6880 +351 6449 0.5190 +351 6456 0.5120 +351 6464 0.9330 +351 6506 0.6320 +351 6507 0.4170 +351 6531 0.4790 +351 6616 0.5640 +351 6620 0.6280 +351 6622 0.9930 +351 6623 0.5760 +351 6625 0.5160 +351 6646 0.4810 +351 6647 0.8020 +351 6653 0.9990 +351 6714 0.8640 +351 6750 0.7880 +351 6772 0.4830 +351 6774 0.7530 +351 6804 0.7410 +351 6844 0.7050 +351 6853 0.7730 +351 6854 0.4890 +351 6855 0.9180 +351 6857 0.4780 +351 6860 0.5030 +351 6868 0.7330 +351 6880 0.4240 +351 6900 0.9430 +351 6908 0.5300 +351 7037 0.6510 +351 7040 0.8950 +351 7042 0.7120 +351 7045 0.4860 +351 7054 0.5060 +351 7057 0.4790 +351 7064 0.4960 +351 7070 0.6940 +351 7076 0.5770 +351 7077 0.4900 +351 7082 0.4060 +351 7088 0.4250 +351 7092 0.4970 +351 7097 0.5780 +351 7099 0.6700 +351 7100 0.4230 +351 7122 0.4300 +351 7124 0.7990 +351 7132 0.5740 +351 7157 0.7140 +351 7170 0.5000 +351 7184 0.5730 +351 7189 0.5200 +351 7204 0.5460 +351 7225 0.5530 +351 7276 0.9820 +351 7277 0.4860 +351 7305 0.5070 +351 7314 0.6440 +351 7345 0.7460 +351 7409 0.4160 +351 7412 0.5630 +351 7415 0.6520 +351 7416 0.6590 +351 7425 0.5030 +351 7436 0.8290 +351 7447 0.4900 +351 7448 0.6370 +351 7474 0.4990 +351 7511 0.4980 +351 7512 0.8190 +351 7531 0.5470 +351 7532 0.4810 +351 7804 0.8800 +351 7837 0.6690 +351 7846 0.4940 +351 7852 0.5240 +351 7917 0.6530 +351 7941 0.7510 +351 7942 0.4470 +351 8087 0.4010 +351 8224 0.4530 +351 8260 0.4530 +351 8266 0.5000 +351 8301 0.8200 +351 8312 0.4920 +351 8411 0.4780 +351 8452 0.4950 +351 8490 0.5480 +351 8504 0.7200 +351 8542 0.7560 +351 8650 0.7450 +351 8675 0.4370 +351 8678 0.5110 +351 8754 0.7110 +351 8766 0.4620 +351 8788 0.4370 +351 8795 0.5050 +351 8797 0.4680 +351 8826 0.4140 +351 8850 0.4630 +351 8864 0.4060 +351 8867 0.4570 +351 8878 0.5220 +351 8883 0.9980 +351 8988 0.5730 +351 8997 0.6150 +351 9039 0.6340 +351 9146 0.4070 +351 9179 0.8230 +351 9217 0.4970 +351 9253 0.5890 +351 9320 0.4620 +351 9378 0.6530 +351 9423 0.6540 +351 9445 0.9390 +351 9454 0.6340 +351 9455 0.5230 +351 9474 0.4750 +351 9479 0.9630 +351 9546 0.9640 +351 9559 0.4390 +351 9611 0.7110 +351 9718 0.7430 +351 9746 0.4540 +351 9780 0.4020 +351 9804 0.5790 +351 9817 0.4630 +351 9896 0.4550 +351 9900 0.4090 +351 9911 0.8150 +351 9927 0.4630 +351 10049 0.5730 +351 10059 0.4780 +351 10097 0.4500 +351 10098 0.5640 +351 10105 0.6440 +351 10133 0.5250 +351 10134 0.4240 +351 10211 0.5690 +351 10213 0.4370 +351 10273 0.6930 +351 10277 0.4570 +351 10280 0.5330 +351 10287 0.5600 +351 10288 0.6940 +351 10307 0.9840 +351 10313 0.6090 +351 10347 0.6970 +351 10371 0.5750 +351 10376 0.4520 +351 10418 0.9860 +351 10439 0.5430 +351 10452 0.9010 +351 10498 0.7170 +351 10512 0.4230 +351 10513 0.9360 +351 10524 0.9930 +351 10531 0.9760 +351 10533 0.4530 +351 10681 0.6880 +351 10717 0.5690 +351 10752 0.5180 +351 10763 0.4670 +351 10800 0.5640 +351 10858 0.6520 +351 10874 0.5670 +351 10891 0.4930 +351 10971 0.8540 +351 10972 0.4610 +351 10979 0.6410 +351 10987 0.4110 +351 11012 0.5350 +351 11018 0.4590 +351 11154 0.5710 +351 11202 0.6040 +351 11280 0.4030 +351 11315 0.7310 +351 22871 0.4160 +351 22883 0.8470 +351 22919 0.5270 +351 22986 0.5380 +351 23062 0.5850 +351 23095 0.4720 +351 23112 0.4740 +351 23114 0.5040 +351 23118 0.5220 +351 23163 0.7060 +351 23208 0.5060 +351 23236 0.5950 +351 23237 0.5790 +351 23385 0.9980 +351 23400 0.4340 +351 23411 0.5720 +351 23431 0.5820 +351 23435 0.8810 +351 23542 0.6530 +351 23544 0.4270 +351 23555 0.5690 +351 23607 0.5720 +351 23621 0.9990 +351 23646 0.5850 +351 25797 0.4550 +351 25825 0.8470 +351 25978 0.4910 +351 26020 0.6260 +351 26060 0.8070 +351 26085 0.5360 +351 26086 0.4260 +351 26088 0.8230 +351 26119 0.4210 +351 26575 0.5510 +351 27185 0.8730 +351 27242 0.9980 +351 27255 0.6570 +351 27327 0.4160 +351 27429 0.5810 +351 29106 0.4430 +351 29119 0.4760 +351 29122 0.5080 +351 29899 0.4080 +351 29978 0.6060 +351 29979 0.8820 +351 30061 0.6330 +351 43847 0.5390 +351 43849 0.5280 +351 50865 0.5120 +351 51024 0.4190 +351 51107 0.9860 +351 51449 0.7260 +351 51454 0.9170 +351 51466 0.4420 +351 51599 0.6140 +351 51608 0.5000 +351 51699 0.4060 +351 51726 0.4370 +351 51764 0.5110 +351 51806 0.4880 +351 51807 0.4140 +351 53353 0.7270 +351 53358 0.4550 +351 53942 0.8370 +351 54103 0.9050 +351 54148 0.4420 +351 54205 0.7090 +351 54209 0.9010 +351 54331 0.9060 +351 54413 0.4520 +351 54518 0.4480 +351 54536 0.4570 +351 54933 0.5710 +351 54959 0.4280 +351 55105 0.4440 +351 55554 0.5280 +351 55669 0.4170 +351 55680 0.4210 +351 55697 0.7800 +351 55737 0.5330 +351 55754 0.6630 +351 55829 0.7330 +351 55851 0.9860 +351 55911 0.5460 +351 55937 0.7540 +351 55970 0.5730 +351 56899 0.6090 +351 56975 0.6640 +351 56993 0.4570 +351 57030 0.4330 +351 57091 0.4340 +351 57105 0.5450 +351 57136 0.4690 +351 57142 0.7390 +351 57216 0.6640 +351 57468 0.5420 +351 57537 0.4140 +351 57787 0.5400 +351 58157 0.4920 +351 59272 0.4430 +351 59345 0.5180 +351 63940 0.4650 +351 63941 0.5180 +351 64231 0.4810 +351 64407 0.5250 +351 64759 0.4570 +351 64805 0.4050 +351 64837 0.9050 +351 65018 0.6330 +351 65078 0.7620 +351 79135 0.5500 +351 79258 0.8910 +351 79861 0.4160 +351 79890 0.4160 +351 80155 0.4310 +351 80781 0.5990 +351 81502 0.5110 +351 81559 0.4680 +351 81609 0.5370 +351 81619 0.5210 +351 81631 0.5800 +351 83464 0.8660 +351 83941 0.6430 +351 84290 0.5300 +351 84557 0.5110 +351 84570 0.7080 +351 84790 0.4490 +351 84867 0.4120 +351 84894 0.5390 +351 85477 0.6580 +351 89953 0.8110 +351 91860 0.4910 +351 93624 0.4200 +351 94235 0.4990 +351 112714 0.4140 +351 113457 0.4120 +351 114793 0.4120 +351 114815 0.6800 +351 115557 0.5350 +351 116519 0.8260 +351 120892 0.6840 +351 126006 0.4550 +351 126393 0.5050 +351 137902 0.6580 +351 143458 0.5680 +351 146713 0.6700 +351 147700 0.8920 +351 151056 0.6720 +351 152330 0.9500 +351 161835 0.4590 +351 163688 0.4860 +351 200576 0.7000 +351 203228 0.7490 +351 245802 0.4180 +351 255022 0.6920 +351 257202 0.4490 +351 284217 0.4100 +351 338773 0.4100 +351 340348 0.5150 +351 347731 0.5140 +351 375790 0.4830 +351 390714 0.5400 +351 414325 0.6740 +351 431704 0.5290 +351 440387 0.6490 +351 493869 0.4500 +351 613212 0.4390 +351 643680 0.4300 +351 728378 0.5760 +351 100287932 0.5010 +351 100423062 0.6280 +351 100528017 0.5800 +351 102723407 0.4680 +351 110599583 0.6600 +353 471 0.9820 +353 513 0.5010 +353 716 0.4110 +353 790 0.4330 +353 953 0.9080 +353 955 0.9120 +353 956 0.9160 +353 957 0.9110 +353 978 0.4790 +353 1013 0.4930 +353 1409 0.4320 +353 1503 0.6720 +353 1504 0.5360 +353 1535 0.5320 +353 1633 0.9500 +353 1716 0.5210 +353 1719 0.5920 +353 1723 0.6510 +353 1728 0.6400 +353 1739 0.5340 +353 1740 0.5260 +353 1741 0.5260 +353 1742 0.5260 +353 1806 0.5980 +353 1841 0.4410 +353 1890 0.9150 +353 2058 0.7470 +353 2356 0.4930 +353 2588 0.8980 +353 2597 0.5270 +353 2618 0.8790 +353 2745 0.4280 +353 2766 0.9570 +353 2781 0.4380 +353 2806 0.5660 +353 2936 0.5440 +353 2987 0.9710 +353 3039 0.4420 +353 3040 0.4610 +353 3050 0.5450 +353 3240 0.5190 +353 3251 0.9940 +353 3376 0.4090 +353 3418 0.4260 +353 3558 0.5570 +353 3614 0.6700 +353 3615 0.7800 +353 3704 0.9890 +353 3814 0.4970 +353 3931 0.4520 +353 4143 0.4030 +353 4144 0.4120 +353 4234 0.4270 +353 4354 0.5260 +353 4355 0.5260 +353 4356 0.5260 +353 4482 0.4550 +353 4489 0.5260 +353 4490 0.5660 +353 4493 0.5210 +353 4494 0.5630 +353 4496 0.5640 +353 4501 0.5710 +353 4502 0.4490 +353 4507 0.9860 +353 4522 0.4030 +353 4597 0.4140 +353 4809 0.4470 +353 4830 0.4680 +353 4831 0.4540 +353 4832 0.5750 +353 4860 0.9960 +353 4907 0.9530 +353 4953 0.4390 +353 5136 0.9110 +353 5137 0.9110 +353 5138 0.9100 +353 5139 0.9040 +353 5140 0.9010 +353 5141 0.9090 +353 5142 0.9070 +353 5143 0.9070 +353 5144 0.9080 +353 5145 0.9070 +353 5146 0.9060 +353 5147 0.9010 +353 5148 0.9000 +353 5149 0.9000 +353 5150 0.9090 +353 5151 0.9010 +353 5152 0.9130 +353 5153 0.9110 +353 5158 0.9070 +353 5161 0.6400 +353 5167 0.9080 +353 5169 0.9070 +353 5198 0.4250 +353 5230 0.4470 +353 5232 0.4310 +353 5464 0.8430 +353 5471 0.7970 +353 5539 0.5260 +353 5554 0.5190 +353 5555 0.4390 +353 5631 0.7040 +353 5634 0.6780 +353 5832 0.4940 +353 5893 0.4430 +353 5955 0.4420 +353 6132 0.4860 +353 6137 0.4020 +353 6175 0.4110 +353 6222 0.4020 +353 6240 0.4170 +353 6390 0.4710 +353 6391 0.4110 +353 6470 0.4240 +353 6472 0.4930 +353 6523 0.4130 +353 6524 0.4130 +353 6526 0.4130 +353 6527 0.4130 +353 6528 0.4130 +353 6687 0.5510 +353 6723 0.4430 +353 6729 0.4390 +353 6898 0.7500 +353 6999 0.5820 +353 7083 0.5250 +353 7084 0.4630 +353 7167 0.5870 +353 7284 0.4280 +353 7298 0.5660 +353 7371 0.4210 +353 7372 0.8620 +353 7378 0.8820 +353 7498 0.4180 +353 8192 0.4940 +353 8458 0.4060 +353 8558 0.5650 +353 8565 0.5450 +353 8573 0.5430 +353 8622 0.9040 +353 8654 0.9160 +353 8666 0.5340 +353 8833 0.9950 +353 8835 0.4240 +353 8884 0.4320 +353 9231 0.5260 +353 9332 0.5450 +353 9526 0.4630 +353 9583 0.9080 +353 9615 0.9700 +353 9784 0.4490 +353 9962 0.5610 +353 9963 0.5610 +353 10247 0.4540 +353 10557 0.4070 +353 10606 0.6880 +353 10797 0.4870 +353 10846 0.9080 +353 22934 0.6040 +353 22978 0.9120 +353 22984 0.4200 +353 23252 0.5070 +353 25873 0.4170 +353 26289 0.9650 +353 27068 0.8350 +353 27115 0.9090 +353 27430 0.4300 +353 29775 0.5270 +353 29968 0.4420 +353 30833 0.9120 +353 50808 0.9600 +353 50940 0.9080 +353 51022 0.4270 +353 51026 0.5040 +353 51074 0.4540 +353 51082 0.4610 +353 51154 0.4910 +353 51251 0.9070 +353 51279 0.5460 +353 51654 0.4220 +353 51678 0.5340 +353 51693 0.4180 +353 51727 0.6790 +353 51733 0.4210 +353 51741 0.5380 +353 51816 0.7370 +353 54059 0.4400 +353 54963 0.4940 +353 55157 0.4080 +353 55191 0.4050 +353 55651 0.6030 +353 55703 0.4190 +353 56474 0.6420 +353 56952 0.6390 +353 56953 0.9010 +353 58478 0.4260 +353 58497 0.8190 +353 58538 0.5260 +353 60482 0.4130 +353 60558 0.5100 +353 64080 0.6620 +353 64398 0.5260 +353 65003 0.4020 +353 65062 0.5260 +353 65993 0.4830 +353 79092 0.5260 +353 79694 0.5260 +353 83549 0.4520 +353 84172 0.4310 +353 84245 0.4910 +353 84433 0.5270 +353 84618 0.9290 +353 91875 0.5240 +353 92822 0.6120 +353 93034 0.9140 +353 93100 0.5160 +353 115024 0.9080 +353 115584 0.4130 +353 122481 0.9530 +353 122622 0.7200 +353 124583 0.9110 +353 125206 0.4130 +353 127845 0.4970 +353 136332 0.5350 +353 139596 0.6870 +353 143098 0.5260 +353 149175 0.5300 +353 151531 0.8800 +353 154141 0.5570 +353 158067 0.9530 +353 158471 0.8070 +353 159963 0.4130 +353 160728 0.4130 +353 161823 0.7350 +353 200010 0.4130 +353 200895 0.5260 +353 221264 0.9860 +353 221823 0.6920 +353 260425 0.5260 +353 341405 0.5260 +353 374659 0.5130 +353 377841 0.9090 +353 441024 0.4540 +353 651746 0.5260 +353 100526794 0.9140 +353 102157402 0.9100 +354 367 0.9950 +354 472 0.4050 +354 563 0.8330 +354 595 0.4770 +354 596 0.5350 +354 672 0.5430 +354 675 0.5710 +354 836 0.4310 +354 920 0.6630 +354 925 0.6190 +354 941 0.6290 +354 960 0.4180 +354 965 0.6310 +354 999 0.5050 +354 1029 0.4060 +354 1045 0.4320 +354 1048 0.8370 +354 1113 0.6550 +354 1365 0.4180 +354 1387 0.4110 +354 1401 0.7280 +354 1437 0.4480 +354 1493 0.4210 +354 1499 0.4470 +354 1504 0.5060 +354 1576 0.5880 +354 1586 0.6760 +354 1915 0.4450 +354 1950 0.5150 +354 1956 0.5800 +354 2026 0.6250 +354 2064 0.6580 +354 2078 0.6380 +354 2099 0.5950 +354 2100 0.4170 +354 2115 0.4790 +354 2146 0.5740 +354 2255 0.5400 +354 2289 0.6110 +354 2335 0.7770 +354 2346 0.9400 +354 2597 0.4950 +354 2629 0.6370 +354 2736 0.4330 +354 2796 0.6620 +354 2817 0.4650 +354 2875 0.5120 +354 2922 0.4800 +354 2950 0.5290 +354 3012 0.4990 +354 3013 0.4990 +354 3014 0.5620 +354 3015 0.5650 +354 3017 0.4990 +354 3018 0.4990 +354 3021 0.6380 +354 3082 0.5090 +354 3091 0.4060 +354 3105 0.5050 +354 3169 0.5370 +354 3303 0.4410 +354 3304 0.4640 +354 3309 0.6120 +354 3383 0.5780 +354 3479 0.7310 +354 3480 0.4470 +354 3481 0.5920 +354 3483 0.4090 +354 3486 0.8130 +354 3558 0.4250 +354 3569 0.6760 +354 3574 0.4080 +354 3586 0.5580 +354 3630 0.5190 +354 3697 0.4240 +354 3698 0.4560 +354 3699 0.4610 +354 3817 0.9630 +354 3845 0.4110 +354 3852 0.5480 +354 3855 0.6280 +354 3856 0.5070 +354 3875 0.6820 +354 3880 0.4850 +354 3952 0.5240 +354 4035 0.4580 +354 4072 0.5200 +354 4151 0.4120 +354 4233 0.4140 +354 4313 0.4140 +354 4318 0.4540 +354 4477 0.9210 +354 4481 0.5260 +354 4609 0.5070 +354 4613 0.4990 +354 4684 0.4190 +354 4803 0.5090 +354 4824 0.7800 +354 5104 0.9390 +354 5241 0.5060 +354 5265 0.9170 +354 5304 0.6950 +354 5539 0.5120 +354 5585 0.5500 +354 5660 0.4100 +354 5728 0.6130 +354 5741 0.4100 +354 5743 0.4080 +354 5744 0.7330 +354 6041 0.6220 +354 6049 0.4100 +354 6406 0.7670 +354 6407 0.8230 +354 6462 0.6690 +354 6590 0.4430 +354 6690 0.4600 +354 6714 0.4310 +354 6716 0.5700 +354 6774 0.4230 +354 6855 0.5690 +354 7015 0.5590 +354 7038 0.4450 +354 7047 0.8130 +354 7080 0.4470 +354 7124 0.4330 +354 7137 0.5060 +354 7157 0.7600 +354 7311 0.4220 +354 7837 0.4840 +354 8000 0.7810 +354 8031 0.5670 +354 8331 0.5050 +354 8334 0.5000 +354 8337 0.5540 +354 8338 0.5500 +354 8340 0.5070 +354 8341 0.4990 +354 8342 0.4990 +354 8345 0.4990 +354 8347 0.4990 +354 8348 0.4990 +354 8349 0.5590 +354 8356 0.6380 +354 8361 0.5470 +354 8405 0.5100 +354 8644 0.4470 +354 8712 0.6780 +354 8895 0.4100 +354 8970 0.4990 +354 9314 0.4700 +354 9604 0.4510 +354 9733 0.4590 +354 9937 0.4220 +354 10481 0.6130 +354 10630 0.4790 +354 10645 0.4910 +354 11005 0.4600 +354 11012 0.4040 +354 11013 0.6630 +354 11065 0.4190 +354 22853 0.5550 +354 23028 0.6240 +354 23301 0.5260 +354 23600 0.8050 +354 25803 0.5260 +354 26579 0.5610 +354 26872 0.5680 +354 26998 0.5270 +354 27232 0.4560 +354 27238 0.4480 +354 29126 0.4450 +354 50636 0.6860 +354 51109 0.4810 +354 54145 0.4990 +354 54363 0.4550 +354 54474 0.6560 +354 55128 0.5400 +354 55190 0.6070 +354 55766 0.4990 +354 56937 0.4490 +354 57119 0.5550 +354 57409 0.4700 +354 60528 0.5750 +354 79054 0.5660 +354 79689 0.5520 +354 79923 0.5460 +354 83639 0.4200 +354 85236 0.5090 +354 85414 0.8940 +354 93650 0.4660 +354 94239 0.5270 +354 112399 0.4770 +354 128312 0.5070 +354 137902 0.4840 +354 201161 0.4470 +354 221476 0.5680 +354 255626 0.5110 +354 261729 0.6150 +354 284366 0.4330 +354 285782 0.6040 +354 400566 0.6030 +354 440387 0.5180 +354 474382 0.4990 +354 645073 0.6780 +354 653604 0.6380 +354 100008586 0.5560 +355 356 0.9990 +355 387 0.7880 +355 396 0.5110 +355 399 0.5670 +355 578 0.5530 +355 581 0.6400 +355 596 0.7280 +355 597 0.4400 +355 598 0.7860 +355 599 0.4120 +355 604 0.7210 +355 637 0.8730 +355 639 0.4440 +355 643 0.6760 +355 649 0.4340 +355 808 0.6670 +355 810 0.5490 +355 834 0.8380 +355 835 0.6430 +355 836 0.9110 +355 837 0.4260 +355 839 0.5180 +355 840 0.5430 +355 841 0.9990 +355 842 0.7970 +355 843 0.9960 +355 857 0.6150 +355 912 0.4190 +355 914 0.5910 +355 920 0.8400 +355 921 0.5290 +355 925 0.8410 +355 930 0.7020 +355 933 0.4160 +355 939 0.8040 +355 940 0.7300 +355 941 0.6310 +355 942 0.6430 +355 943 0.6320 +355 944 0.5450 +355 947 0.4370 +355 952 0.7070 +355 953 0.4660 +355 958 0.8650 +355 959 0.7550 +355 960 0.7210 +355 965 0.4990 +355 969 0.7690 +355 970 0.4210 +355 1026 0.4900 +355 1149 0.5440 +355 1191 0.4040 +355 1234 0.5550 +355 1235 0.4480 +355 1236 0.7210 +355 1263 0.4360 +355 1380 0.6400 +355 1437 0.4740 +355 1493 0.5810 +355 1499 0.5760 +355 1616 0.9990 +355 1676 0.6070 +355 1956 0.6300 +355 2022 0.4780 +355 2081 0.4600 +355 2212 0.5130 +355 2213 0.5290 +355 2534 0.6890 +355 2597 0.4040 +355 2833 0.5720 +355 3002 0.7200 +355 3005 0.6240 +355 3105 0.4270 +355 3113 0.4230 +355 3133 0.5360 +355 3309 0.4700 +355 3383 0.5650 +355 3439 0.4610 +355 3456 0.4040 +355 3458 0.6940 +355 3459 0.5370 +355 3480 0.4350 +355 3552 0.6090 +355 3553 0.7200 +355 3554 0.5120 +355 3558 0.6690 +355 3559 0.4250 +355 3560 0.4690 +355 3563 0.4210 +355 3565 0.5810 +355 3569 0.6130 +355 3572 0.4890 +355 3574 0.5010 +355 3575 0.7030 +355 3576 0.4530 +355 3586 0.5900 +355 3600 0.6120 +355 3605 0.5300 +355 3606 0.4200 +355 3620 0.4160 +355 3627 0.4480 +355 3659 0.5020 +355 3662 0.4170 +355 3676 0.5560 +355 3682 0.4330 +355 3683 0.5080 +355 3684 0.5560 +355 3687 0.5810 +355 3717 0.4220 +355 3725 0.4730 +355 3820 0.4020 +355 3821 0.4320 +355 3902 0.4470 +355 3916 0.4940 +355 3958 0.4920 +355 3965 0.5430 +355 4049 0.5730 +355 4170 0.6190 +355 4179 0.5560 +355 4193 0.4280 +355 4217 0.7840 +355 4478 0.6720 +355 4609 0.6210 +355 4684 0.5420 +355 4790 0.5020 +355 4792 0.4530 +355 4804 0.6080 +355 5079 0.5470 +355 5133 0.6560 +355 5156 0.4660 +355 5175 0.4330 +355 5335 0.4250 +355 5366 0.5820 +355 5371 0.4100 +355 5551 0.6490 +355 5578 0.4990 +355 5599 0.8250 +355 5783 0.9700 +355 5788 0.7380 +355 5906 0.6340 +355 5970 0.5150 +355 6347 0.4500 +355 6348 0.4040 +355 6351 0.4090 +355 6382 0.6230 +355 6402 0.7050 +355 6609 0.4360 +355 6693 0.5030 +355 6696 0.4790 +355 6714 0.8070 +355 6772 0.4810 +355 6774 0.4900 +355 6850 0.5470 +355 7009 0.5540 +355 7037 0.6570 +355 7040 0.4210 +355 7045 0.4830 +355 7070 0.4810 +355 7072 0.4680 +355 7098 0.4300 +355 7099 0.5100 +355 7124 0.9970 +355 7132 0.9990 +355 7133 0.6730 +355 7157 0.8770 +355 7159 0.6180 +355 7161 0.5520 +355 7186 0.6260 +355 7187 0.4530 +355 7293 0.6230 +355 7329 0.5380 +355 7341 0.5380 +355 7358 0.4110 +355 7430 0.8410 +355 7525 0.5710 +355 7535 0.4150 +355 7837 0.4630 +355 7852 0.5120 +355 8626 0.6510 +355 8639 0.4150 +355 8682 0.4610 +355 8717 0.9920 +355 8718 0.5670 +355 8737 0.9660 +355 8742 0.6600 +355 8743 0.9960 +355 8771 0.4160 +355 8772 0.9990 +355 8794 0.5230 +355 8795 0.9770 +355 8797 0.9640 +355 8837 0.9970 +355 9034 0.4930 +355 9051 0.4050 +355 9451 0.4860 +355 9474 0.6650 +355 9966 0.5840 +355 10004 0.4440 +355 10017 0.5040 +355 10018 0.5340 +355 10114 0.6050 +355 10116 0.5560 +355 10219 0.4010 +355 10666 0.5910 +355 10673 0.5650 +355 11035 0.6710 +355 11124 0.9930 +355 22914 0.6200 +355 23017 0.6870 +355 23368 0.6030 +355 23495 0.4160 +355 27087 0.5720 +355 27141 0.6300 +355 27242 0.5070 +355 28996 0.4570 +355 29126 0.7620 +355 29851 0.7130 +355 30009 0.4910 +355 50943 0.6090 +355 51284 0.4470 +355 51806 0.5490 +355 54106 0.4160 +355 54205 0.7870 +355 55016 0.5140 +355 55167 0.4700 +355 55201 0.4130 +355 55367 0.6950 +355 55620 0.4100 +355 57379 0.5960 +355 64149 0.6070 +355 79626 0.4320 +355 79680 0.4180 +355 80380 0.4540 +355 80381 0.4350 +355 83451 0.4130 +355 84868 0.4480 +355 85302 0.5300 +355 91860 0.5490 +355 137902 0.4640 +355 157769 0.4570 +355 163688 0.5490 +355 197259 0.4450 +355 220972 0.4780 +355 389840 0.4390 +355 100133941 0.4180 +355 100423062 0.9150 +355 102723407 0.4040 +356 383 0.4810 +356 387 0.6100 +356 396 0.4950 +356 581 0.4800 +356 595 0.5060 +356 596 0.8110 +356 597 0.4040 +356 598 0.7280 +356 599 0.4860 +356 637 0.8670 +356 639 0.4160 +356 672 0.4350 +356 712 0.4150 +356 834 0.5970 +356 835 0.5320 +356 836 0.8920 +356 839 0.5070 +356 840 0.6750 +356 841 0.9990 +356 842 0.8470 +356 843 0.9820 +356 912 0.5160 +356 914 0.6160 +356 919 0.6350 +356 920 0.8680 +356 921 0.5170 +356 924 0.5910 +356 925 0.9220 +356 930 0.5880 +356 939 0.6190 +356 940 0.6850 +356 941 0.8980 +356 942 0.8820 +356 943 0.6650 +356 944 0.4710 +356 947 0.6370 +356 952 0.4940 +356 953 0.6780 +356 958 0.9500 +356 959 0.8500 +356 960 0.6020 +356 961 0.4310 +356 962 0.5560 +356 967 0.4060 +356 968 0.4110 +356 969 0.6430 +356 970 0.4980 +356 972 0.5290 +356 999 0.4240 +356 1015 0.5010 +356 1017 0.4070 +356 1026 0.4530 +356 1027 0.4080 +356 1234 0.6370 +356 1235 0.4070 +356 1236 0.5610 +356 1420 0.5660 +356 1435 0.4460 +356 1436 0.5650 +356 1437 0.7380 +356 1440 0.4810 +356 1493 0.8330 +356 1499 0.5930 +356 1521 0.4040 +356 1524 0.4760 +356 1616 0.7670 +356 1647 0.4120 +356 1676 0.4180 +356 1677 0.4180 +356 1791 0.5790 +356 1831 0.4080 +356 1950 0.4790 +356 1956 0.6800 +356 2021 0.4470 +356 2064 0.6590 +356 2086 0.5500 +356 2099 0.4320 +356 2197 0.8060 +356 2247 0.4450 +356 2268 0.6110 +356 2308 0.7370 +356 2309 0.9340 +356 2323 0.5770 +356 2335 0.9090 +356 2353 0.4230 +356 2475 0.4190 +356 2534 0.8560 +356 2597 0.5380 +356 2625 0.4260 +356 2833 0.6520 +356 2885 0.6350 +356 2908 0.4110 +356 2919 0.4380 +356 2999 0.7470 +356 3001 0.8890 +356 3002 0.9420 +356 3003 0.5860 +356 3055 0.4870 +356 3082 0.4250 +356 3091 0.4920 +356 3105 0.4180 +356 3133 0.4820 +356 3135 0.5170 +356 3146 0.4280 +356 3162 0.6160 +356 3164 0.5180 +356 3275 0.4480 +356 3308 0.4690 +356 3383 0.7770 +356 3439 0.5810 +356 3456 0.5050 +356 3458 0.9330 +356 3479 0.4420 +356 3552 0.5840 +356 3553 0.8000 +356 3554 0.5900 +356 3558 0.8240 +356 3559 0.5630 +356 3560 0.7400 +356 3562 0.4520 +356 3565 0.6790 +356 3567 0.5170 +356 3569 0.6970 +356 3574 0.5440 +356 3575 0.5250 +356 3576 0.5830 +356 3578 0.4020 +356 3586 0.8850 +356 3594 0.4170 +356 3595 0.5860 +356 3596 0.5800 +356 3600 0.6280 +356 3605 0.6200 +356 3606 0.6090 +356 3620 0.7750 +356 3627 0.6210 +356 3630 0.5200 +356 3659 0.4080 +356 3662 0.4050 +356 3682 0.4180 +356 3683 0.6460 +356 3684 0.7150 +356 3687 0.4980 +356 3689 0.4130 +356 3702 0.5790 +356 3717 0.4410 +356 3725 0.7240 +356 3791 0.4020 +356 3802 0.5150 +356 3804 0.4810 +356 3805 0.4490 +356 3811 0.4640 +356 3820 0.5600 +356 3821 0.6240 +356 3822 0.5200 +356 3824 0.8550 +356 3902 0.7680 +356 3916 0.5120 +356 3921 0.4160 +356 3965 0.6640 +356 4055 0.7380 +356 4060 0.9680 +356 4067 0.5590 +356 4068 0.6560 +356 4170 0.5970 +356 4193 0.4130 +356 4217 0.6400 +356 4277 0.6400 +356 4283 0.5560 +356 4303 0.9380 +356 4313 0.4590 +356 4316 0.7690 +356 4318 0.5620 +356 4353 0.4040 +356 4436 0.4510 +356 4478 0.5080 +356 4609 0.5070 +356 4684 0.5900 +356 4690 0.7150 +356 4790 0.6840 +356 4792 0.4850 +356 4803 0.5250 +356 4818 0.5670 +356 4842 0.4820 +356 4907 0.6530 +356 4929 0.4330 +356 5122 0.4040 +356 5133 0.8460 +356 5156 0.5080 +356 5230 0.4310 +356 5295 0.5900 +356 5366 0.5090 +356 5551 0.9920 +356 5595 0.4890 +356 5599 0.8490 +356 5728 0.5120 +356 5743 0.4470 +356 5783 0.5590 +356 5788 0.6210 +356 5970 0.4090 +356 6223 0.4140 +356 6229 0.4030 +356 6234 0.4130 +356 6347 0.7370 +356 6348 0.5610 +356 6351 0.5520 +356 6356 0.4120 +356 6373 0.4170 +356 6375 0.6480 +356 6376 0.4460 +356 6387 0.4760 +356 6402 0.5940 +356 6647 0.5190 +356 6714 0.5370 +356 6772 0.5290 +356 6774 0.8930 +356 6775 0.4770 +356 6776 0.4020 +356 6777 0.4070 +356 6778 0.6540 +356 6846 0.4400 +356 6885 0.4530 +356 7040 0.7240 +356 7076 0.4100 +356 7097 0.6930 +356 7098 0.5350 +356 7099 0.5910 +356 7124 0.9840 +356 7132 0.9980 +356 7133 0.7830 +356 7157 0.7180 +356 7185 0.4240 +356 7186 0.6790 +356 7292 0.4550 +356 7293 0.5230 +356 7412 0.4890 +356 7430 0.7830 +356 7535 0.4770 +356 7837 0.5600 +356 7852 0.4770 +356 8013 0.4460 +356 8320 0.6250 +356 8717 0.9380 +356 8718 0.9910 +356 8737 0.7990 +356 8741 0.4520 +356 8742 0.7740 +356 8743 0.9710 +356 8744 0.4770 +356 8764 0.6340 +356 8771 0.9990 +356 8772 0.9990 +356 8784 0.4620 +356 8793 0.5500 +356 8794 0.5700 +356 8795 0.9990 +356 8797 0.9980 +356 8809 0.4150 +356 8837 0.9630 +356 8995 0.4110 +356 9034 0.4220 +356 9051 0.6860 +356 9214 0.4630 +356 9402 0.4140 +356 9436 0.5190 +356 9437 0.6880 +356 9518 0.4040 +356 9966 0.4140 +356 10018 0.8930 +356 10219 0.5880 +356 10365 0.6400 +356 10536 0.4900 +356 10578 0.9210 +356 10663 0.7760 +356 10666 0.6430 +356 10673 0.6530 +356 11035 0.7600 +356 11124 0.6640 +356 11126 0.6190 +356 11252 0.5290 +356 22914 0.7710 +356 22984 0.4520 +356 23048 0.5260 +356 23380 0.4670 +356 27087 0.5160 +356 27102 0.6080 +356 27242 0.7860 +356 27250 0.5160 +356 29126 0.8890 +356 29851 0.6170 +356 29933 0.4010 +356 30009 0.7890 +356 30816 0.5700 +356 50616 0.4650 +356 50618 0.4240 +356 50943 0.6790 +356 51181 0.5060 +356 51284 0.4760 +356 51311 0.4140 +356 51348 0.4660 +356 51429 0.4700 +356 51744 0.5260 +356 54106 0.4810 +356 54205 0.8400 +356 57823 0.4200 +356 60401 0.4440 +356 79680 0.4750 +356 80329 0.4030 +356 80380 0.7460 +356 80381 0.5120 +356 84868 0.7700 +356 84957 0.4840 +356 114548 0.4410 +356 114836 0.6510 +356 137902 0.5600 +356 151888 0.4340 +356 153769 0.4280 +356 154075 0.4650 +356 158747 0.4270 +356 169355 0.7150 +356 197259 0.5470 +356 201633 0.6500 +356 257364 0.6290 +356 259197 0.6700 +356 284194 0.6510 +356 405754 0.5540 +356 653145 0.4230 +356 654346 0.6510 +357 1183 0.4010 +357 2315 0.4270 +357 4267 0.5040 +357 4647 0.5580 +357 4935 0.8960 +357 6093 0.9510 +357 6907 0.6300 +357 7082 0.8680 +357 9414 0.5050 +357 55344 0.4220 +357 55841 0.6140 +357 57477 0.4170 +357 59272 0.5290 +357 171482 0.4740 +358 359 0.7130 +358 360 0.7450 +358 362 0.5750 +358 364 0.7480 +358 366 0.7660 +358 445 0.5620 +358 551 0.5500 +358 655 0.4930 +358 760 0.4930 +358 793 0.4050 +358 810 0.6040 +358 999 0.4110 +358 1014 0.4320 +358 1080 0.4280 +358 1187 0.4640 +358 1317 0.4060 +358 1318 0.4020 +358 2038 0.8230 +358 2040 0.6550 +358 2046 0.6020 +358 2048 0.4910 +358 2296 0.4410 +358 2597 0.4490 +358 2710 0.4500 +358 2712 0.4500 +358 2713 0.4500 +358 2820 0.5090 +358 2993 0.8520 +358 3097 0.5300 +358 3766 0.4300 +358 4036 0.5270 +358 4188 0.6320 +358 4284 0.5500 +358 4653 0.4690 +358 4868 0.4260 +358 5175 0.4440 +358 5420 0.4860 +358 5494 0.5110 +358 5700 0.4500 +358 5701 0.4500 +358 5705 0.4500 +358 5747 0.5410 +358 5832 0.4150 +358 6005 0.9240 +358 6006 0.8350 +358 6343 0.6040 +358 6344 0.4730 +358 6513 0.5840 +358 6521 0.8900 +358 6522 0.5530 +358 6523 0.4180 +358 6548 0.4390 +358 6550 0.5850 +358 6557 0.6090 +358 6558 0.5400 +358 6559 0.5370 +358 6563 0.4040 +358 6640 0.4310 +358 7082 0.4380 +358 7122 0.5200 +358 7369 0.5810 +358 7450 0.5130 +358 7490 0.4110 +358 7827 0.5110 +358 7837 0.4160 +358 8170 0.6460 +358 8671 0.5220 +358 8825 0.5940 +358 9463 0.4910 +358 10273 0.6610 +358 11104 0.4600 +358 11255 0.5590 +358 23539 0.6090 +358 23729 0.4500 +358 25932 0.5610 +358 29028 0.4500 +358 51806 0.6040 +358 54454 0.4500 +358 54507 0.4550 +358 55277 0.4500 +358 57282 0.4730 +358 57835 0.4020 +358 79572 0.5500 +358 80012 0.4300 +358 83473 0.4780 +358 83483 0.4440 +358 84056 0.4600 +358 89872 0.6830 +358 91860 0.5840 +358 137902 0.4150 +358 150084 0.4060 +358 163688 0.5820 +358 256356 0.4500 +358 282679 0.8050 +359 360 0.7520 +359 362 0.6590 +359 364 0.7270 +359 366 0.7140 +359 476 0.5180 +359 525 0.5330 +359 551 0.9150 +359 552 0.4770 +359 553 0.4160 +359 554 0.9820 +359 793 0.5130 +359 808 0.4950 +359 810 0.4960 +359 846 0.5920 +359 1014 0.5400 +359 1080 0.4880 +359 1130 0.4600 +359 1184 0.4040 +359 1187 0.8130 +359 1188 0.5720 +359 1434 0.4220 +359 1636 0.4590 +359 1836 0.4590 +359 1950 0.5700 +359 2299 0.5080 +359 2597 0.4410 +359 2710 0.4980 +359 2712 0.4980 +359 2713 0.4500 +359 2820 0.5090 +359 3217 0.4840 +359 3308 0.6810 +359 3312 0.6090 +359 3758 0.7400 +359 3827 0.4390 +359 4036 0.5880 +359 4284 0.7380 +359 4306 0.4020 +359 4645 0.5620 +359 4650 0.4310 +359 4734 0.5670 +359 4868 0.5630 +359 4878 0.6230 +359 5020 0.4080 +359 5076 0.4440 +359 5172 0.7570 +359 5310 0.5210 +359 5311 0.4230 +359 5314 0.4780 +359 5420 0.5430 +359 5566 0.9600 +359 5567 0.9590 +359 5568 0.9600 +359 5573 0.5890 +359 5575 0.5890 +359 5576 0.5890 +359 5577 0.6550 +359 5700 0.4500 +359 5701 0.4500 +359 5705 0.4500 +359 5832 0.4150 +359 5972 0.6720 +359 6337 0.6130 +359 6338 0.6330 +359 6340 0.6500 +359 6343 0.7020 +359 6344 0.7380 +359 6446 0.4190 +359 6494 0.6130 +359 6521 0.6570 +359 6524 0.5700 +359 6539 0.4050 +359 6550 0.6790 +359 6557 0.9050 +359 6558 0.4060 +359 6559 0.7630 +359 6563 0.4360 +359 6569 0.5130 +359 6804 0.4140 +359 6809 0.5520 +359 6810 0.6060 +359 6814 0.4970 +359 6844 0.5760 +359 6845 0.4790 +359 7251 0.5820 +359 7369 0.9230 +359 7490 0.4390 +359 7534 0.5080 +359 7809 0.5230 +359 7827 0.6370 +359 7837 0.4290 +359 7849 0.4240 +359 8029 0.4590 +359 8170 0.6100 +359 8673 0.4960 +359 8766 0.6250 +359 8773 0.5200 +359 9341 0.5070 +359 10159 0.4470 +359 10228 0.4070 +359 10273 0.7900 +359 10725 0.5800 +359 10736 0.4740 +359 11104 0.4600 +359 22841 0.5960 +359 23729 0.4500 +359 29028 0.4500 +359 51534 0.6390 +359 51806 0.4950 +359 53828 0.4980 +359 54454 0.4500 +359 55277 0.4500 +359 56302 0.6520 +359 59341 0.4130 +359 65266 0.4400 +359 83473 0.4780 +359 84056 0.4600 +359 89872 0.7410 +359 91860 0.5180 +359 112755 0.4630 +359 127124 0.4430 +359 137902 0.4310 +359 163688 0.4600 +359 192668 0.5870 +359 256356 0.4500 +359 282679 0.8670 +360 362 0.7420 +360 363 0.6200 +360 364 0.5810 +360 366 0.5480 +360 551 0.4760 +360 554 0.5810 +360 999 0.4970 +360 1080 0.4280 +360 1536 0.5450 +360 1604 0.4320 +360 1824 0.4530 +360 1837 0.4760 +360 1838 0.4760 +360 2053 0.4370 +360 2312 0.5670 +360 2597 0.4580 +360 2697 0.4750 +360 2710 0.8290 +360 2712 0.8300 +360 2713 0.4590 +360 2820 0.5530 +360 3553 0.4190 +360 3713 0.4450 +360 3852 0.4080 +360 4014 0.4190 +360 4284 0.7440 +360 5338 0.5110 +360 5465 0.4640 +360 5467 0.4120 +360 5700 0.4500 +360 5701 0.4500 +360 5705 0.4500 +360 5832 0.4120 +360 6521 0.4940 +360 6550 0.4630 +360 6557 0.4810 +360 6559 0.4100 +360 6563 0.4820 +360 6640 0.4010 +360 7124 0.4570 +360 7514 0.4120 +360 9589 0.5720 +360 10273 0.4220 +360 11104 0.4500 +360 11340 0.5720 +360 23729 0.4590 +360 29028 0.4500 +360 54454 0.4500 +360 55277 0.4590 +360 56913 0.4120 +360 57510 0.4020 +360 83473 0.4780 +360 84056 0.4500 +360 89872 0.7080 +360 129285 0.5720 +360 256356 0.4600 +360 282679 0.9000 +360 388698 0.5640 +360 653437 0.4580 +360 100506658 0.4170 +362 364 0.7480 +362 366 0.7130 +362 999 0.6750 +362 1080 0.5300 +362 1499 0.5690 +362 1829 0.4180 +362 1950 0.4200 +362 2302 0.5570 +362 2353 0.4540 +362 2597 0.4730 +362 2710 0.5000 +362 2712 0.5010 +362 2713 0.4500 +362 2820 0.5090 +362 3852 0.7200 +362 3855 0.4280 +362 3861 0.4790 +362 3880 0.5870 +362 4284 0.6800 +362 4586 0.5340 +362 5175 0.4630 +362 5304 0.5760 +362 5700 0.4500 +362 5701 0.4500 +362 5705 0.4500 +362 5832 0.4150 +362 6337 0.4020 +362 6338 0.4610 +362 6340 0.4140 +362 6440 0.8230 +362 6441 0.5240 +362 6548 0.4390 +362 6558 0.6200 +362 6640 0.4120 +362 7080 0.5260 +362 7082 0.6320 +362 7124 0.5590 +362 7356 0.8020 +362 7471 0.4390 +362 7472 0.4690 +362 8323 0.4220 +362 10273 0.4350 +362 10630 0.5900 +362 11104 0.4600 +362 23729 0.4500 +362 29028 0.4500 +362 51393 0.4120 +362 54454 0.4500 +362 55107 0.4940 +362 55277 0.4500 +362 59341 0.8710 +362 64840 0.4240 +362 83473 0.4780 +362 84056 0.4600 +362 84525 0.5530 +362 89872 0.9430 +362 117156 0.4530 +362 140683 0.4110 +362 168620 0.4640 +362 256356 0.4500 +362 282679 0.8970 +362 653437 0.4550 +362 653509 0.6070 +362 727897 0.4950 +362 100506658 0.4520 +363 364 0.5910 +363 366 0.5050 +363 808 0.6340 +363 810 0.6300 +363 1291 0.4040 +363 2048 0.4190 +363 2710 0.4880 +363 2712 0.4900 +363 2713 0.4500 +363 2820 0.5090 +363 3758 0.4920 +363 5700 0.4500 +363 5701 0.4500 +363 5705 0.4500 +363 5832 0.4150 +363 6123 0.4410 +363 6559 0.4360 +363 7369 0.5100 +363 7809 0.5210 +363 10273 0.4090 +363 11104 0.4600 +363 23729 0.4500 +363 29028 0.4500 +363 29895 0.4670 +363 51806 0.6300 +363 54454 0.4500 +363 55277 0.4500 +363 55586 0.4480 +363 57127 0.5130 +363 79041 0.4170 +363 83473 0.4820 +363 84056 0.4600 +363 89872 0.9360 +363 91860 0.6050 +363 120939 0.4770 +363 163688 0.6060 +363 200539 0.4290 +363 256356 0.4500 +363 282679 0.8880 +363 653437 0.5870 +364 366 0.5610 +364 948 0.4230 +364 1080 0.5710 +364 1837 0.4760 +364 1838 0.4760 +364 2053 0.4020 +364 2167 0.4400 +364 2180 0.5270 +364 2710 0.7420 +364 2712 0.7420 +364 2713 0.4730 +364 2819 0.5790 +364 2820 0.5570 +364 3952 0.4510 +364 3991 0.5160 +364 4284 0.7340 +364 4799 0.4070 +364 5105 0.5080 +364 5346 0.7920 +364 5468 0.4350 +364 5577 0.4110 +364 5700 0.4500 +364 5701 0.4500 +364 5705 0.4500 +364 5832 0.4290 +364 6846 0.4360 +364 7097 0.4580 +364 9368 0.4420 +364 9370 0.6180 +364 9589 0.5720 +364 10273 0.4140 +364 11104 0.4500 +364 11340 0.5720 +364 22977 0.4070 +364 22982 0.4150 +364 23729 0.4590 +364 29028 0.4500 +364 54454 0.4500 +364 55277 0.4590 +364 57104 0.4220 +364 57105 0.4370 +364 57412 0.4570 +364 60675 0.4800 +364 63924 0.4470 +364 83473 0.4780 +364 84056 0.4500 +364 89872 0.7210 +364 129285 0.5720 +364 160728 0.5070 +364 256356 0.5100 +364 282679 0.9540 +364 400258 0.6450 +364 653437 0.5220 +364 729359 0.5150 +366 719 0.4890 +366 728 0.4540 +366 808 0.5040 +366 810 0.5070 +366 1080 0.5870 +366 1230 0.5830 +366 1441 0.4930 +366 1837 0.4760 +366 1838 0.5040 +366 2053 0.4060 +366 2180 0.6570 +366 2268 0.4770 +366 2357 0.6800 +366 2358 0.5560 +366 2710 0.8750 +366 2712 0.8530 +366 2713 0.4600 +366 2820 0.5470 +366 3055 0.4460 +366 3101 0.4980 +366 3553 0.4440 +366 3557 0.5300 +366 3577 0.4450 +366 4284 0.7580 +366 4332 0.8130 +366 4688 0.4950 +366 5341 0.4460 +366 5465 0.4780 +366 5467 0.4270 +366 5700 0.4550 +366 5701 0.4500 +366 5705 0.4500 +366 5832 0.4140 +366 5870 0.6050 +366 6279 0.5280 +366 6280 0.5410 +366 6283 0.5810 +366 6556 0.5350 +366 6563 0.4410 +366 6846 0.4690 +366 7097 0.6370 +366 7130 0.4400 +366 7305 0.4460 +366 7850 0.4230 +366 8875 0.5080 +366 9368 0.4600 +366 9589 0.5780 +366 10135 0.4270 +366 10261 0.4500 +366 10288 0.5010 +366 11024 0.4370 +366 11025 0.4330 +366 11104 0.4500 +366 11340 0.5720 +366 23601 0.4010 +366 23729 0.4590 +366 29028 0.4500 +366 51167 0.4230 +366 51311 0.5400 +366 51314 0.4210 +366 51806 0.5080 +366 53829 0.4070 +366 54210 0.7960 +366 54454 0.4500 +366 55277 0.4600 +366 57105 0.4580 +366 57412 0.4120 +366 60675 0.6530 +366 83473 0.4780 +366 84056 0.4500 +366 89872 0.7220 +366 91860 0.5100 +366 129285 0.5740 +366 138307 0.4150 +366 163688 0.5060 +366 256356 0.4600 +366 282679 0.8670 +366 653437 0.4190 +367 405 0.4650 +367 409 0.5300 +367 412 0.4150 +367 472 0.5390 +367 546 0.5790 +367 573 0.7140 +367 595 0.9550 +367 596 0.6230 +367 598 0.4770 +367 627 0.5070 +367 632 0.6320 +367 648 0.5310 +367 658 0.4860 +367 672 0.9080 +367 673 0.6830 +367 675 0.5940 +367 706 0.4240 +367 720 0.4180 +367 753 0.5390 +367 810 0.5360 +367 811 0.7060 +367 836 0.5970 +367 841 0.5360 +367 857 0.8200 +367 860 0.8810 +367 865 0.5380 +367 891 0.4180 +367 898 0.5010 +367 960 0.5270 +367 983 0.4840 +367 996 0.4100 +367 999 0.6290 +367 1000 0.4820 +367 1017 0.4950 +367 1019 0.5510 +367 1021 0.6540 +367 1022 0.6430 +367 1025 0.5340 +367 1026 0.4800 +367 1027 0.4480 +367 1029 0.6170 +367 1050 0.5460 +367 1051 0.6770 +367 1105 0.5810 +367 1113 0.5920 +367 1191 0.4500 +367 1365 0.4080 +367 1385 0.4640 +367 1387 0.9600 +367 1487 0.6300 +367 1491 0.4540 +367 1499 0.9960 +367 1576 0.4230 +367 1583 0.6190 +367 1586 0.7970 +367 1588 0.7870 +367 1616 0.8480 +367 1639 0.4840 +367 1642 0.5060 +367 1643 0.5440 +367 1646 0.4280 +367 1655 0.6300 +367 1757 0.4720 +367 1761 0.4540 +367 1778 0.4110 +367 1780 0.4050 +367 1781 0.4050 +367 1783 0.4030 +367 1786 0.4480 +367 1822 0.4800 +367 1869 0.8010 +367 1874 0.4170 +367 1917 0.5070 +367 1950 0.7430 +367 1956 0.8640 +367 1994 0.6240 +367 1999 0.4300 +367 2001 0.4970 +367 2005 0.5010 +367 2026 0.5030 +367 2033 0.9520 +367 2064 0.7880 +367 2065 0.6360 +367 2071 0.4060 +367 2078 0.8930 +367 2099 0.9810 +367 2100 0.5880 +367 2113 0.7810 +367 2115 0.8840 +367 2118 0.4510 +367 2119 0.5310 +367 2130 0.4180 +367 2146 0.9780 +367 2194 0.4330 +367 2247 0.4140 +367 2248 0.4450 +367 2249 0.4030 +367 2250 0.4180 +367 2251 0.4390 +367 2252 0.4760 +367 2253 0.4320 +367 2254 0.4180 +367 2255 0.5080 +367 2274 0.7240 +367 2288 0.9280 +367 2289 0.9050 +367 2290 0.5770 +367 2305 0.4050 +367 2308 0.9210 +367 2309 0.6600 +367 2316 0.8390 +367 2317 0.7790 +367 2318 0.7770 +367 2334 0.4080 +367 2346 0.7220 +367 2353 0.5420 +367 2475 0.5480 +367 2492 0.5850 +367 2521 0.6810 +367 2547 0.5080 +367 2597 0.8280 +367 2624 0.4560 +367 2625 0.4540 +367 2660 0.4530 +367 2735 0.5860 +367 2736 0.6810 +367 2737 0.4740 +367 2796 0.7790 +367 2798 0.4480 +367 2852 0.5450 +367 2908 0.7950 +367 2922 0.4160 +367 2925 0.5160 +367 2931 0.4630 +367 2932 0.8410 +367 2934 0.6350 +367 2950 0.4200 +367 2962 0.7320 +367 3012 0.5000 +367 3013 0.4990 +367 3014 0.6390 +367 3015 0.7540 +367 3017 0.5430 +367 3018 0.5360 +367 3021 0.8390 +367 3064 0.6780 +367 3065 0.9640 +367 3066 0.5920 +367 3091 0.8710 +367 3161 0.4360 +367 3169 0.9960 +367 3170 0.8570 +367 3172 0.6300 +367 3191 0.4300 +367 3276 0.4790 +367 3283 0.6310 +367 3284 0.4870 +367 3292 0.4540 +367 3293 0.5940 +367 3303 0.4350 +367 3304 0.7340 +367 3308 0.9250 +367 3309 0.5730 +367 3312 0.5510 +367 3315 0.6380 +367 3316 0.7380 +367 3320 0.9990 +367 3326 0.9990 +367 3337 0.7350 +367 3479 0.7470 +367 3480 0.8080 +367 3481 0.4250 +367 3486 0.4380 +367 3553 0.6300 +367 3569 0.5760 +367 3630 0.6070 +367 3640 0.5110 +367 3725 0.8400 +367 3727 0.6060 +367 3814 0.4390 +367 3815 0.4630 +367 3817 0.9190 +367 3818 0.7320 +367 3838 0.6760 +367 3845 0.4990 +367 3852 0.6310 +367 3855 0.4560 +367 3856 0.5970 +367 3861 0.4880 +367 3875 0.5240 +367 3952 0.5930 +367 3973 0.5520 +367 4072 0.4770 +367 4086 0.5850 +367 4087 0.4210 +367 4088 0.9530 +367 4089 0.8590 +367 4094 0.6010 +367 4110 0.8980 +367 4117 0.4250 +367 4150 0.5310 +367 4193 0.9980 +367 4214 0.5750 +367 4233 0.5070 +367 4287 0.4270 +367 4297 0.6020 +367 4306 0.7100 +367 4313 0.4120 +367 4318 0.4950 +367 4477 0.4340 +367 4609 0.7000 +367 4613 0.7590 +367 4690 0.5580 +367 4734 0.5360 +367 4780 0.4380 +367 4790 0.4750 +367 4824 0.9500 +367 4841 0.7750 +367 4851 0.4270 +367 4929 0.4750 +367 5010 0.4150 +367 5028 0.5430 +367 5036 0.6220 +367 5052 0.6510 +367 5080 0.6180 +367 5094 0.4260 +367 5230 0.6210 +367 5241 0.7660 +367 5245 0.5860 +367 5290 0.5710 +367 5295 0.6780 +367 5304 0.6130 +367 5443 0.4340 +367 5451 0.4270 +367 5460 0.4090 +367 5468 0.5170 +367 5469 0.8110 +367 5566 0.9390 +367 5567 0.9380 +367 5568 0.9380 +367 5579 0.7310 +367 5585 0.8730 +367 5587 0.4910 +367 5591 0.6720 +367 5594 0.5270 +367 5595 0.6810 +367 5617 0.4760 +367 5673 0.4220 +367 5728 0.8920 +367 5743 0.4230 +367 5883 0.4040 +367 5887 0.4320 +367 5894 0.4950 +367 5901 0.6940 +367 5925 0.8780 +367 5966 0.4450 +367 5970 0.6770 +367 5972 0.5810 +367 5978 0.5680 +367 6046 0.7990 +367 6047 0.7400 +367 6049 0.6640 +367 6198 0.4450 +367 6239 0.4510 +367 6293 0.4090 +367 6310 0.4280 +367 6364 0.4480 +367 6391 0.4180 +367 6421 0.6270 +367 6449 0.6280 +367 6462 0.6970 +367 6477 0.4360 +367 6478 0.7260 +367 6502 0.5600 +367 6591 0.4790 +367 6595 0.7030 +367 6597 0.8740 +367 6599 0.5690 +367 6602 0.4560 +367 6605 0.6700 +367 6615 0.5080 +367 6657 0.5320 +367 6662 0.5150 +367 6667 0.8370 +367 6690 0.4020 +367 6714 0.9850 +367 6715 0.6310 +367 6716 0.8210 +367 6720 0.5310 +367 6736 0.7030 +367 6767 0.5230 +367 6770 0.5110 +367 6772 0.5710 +367 6774 0.9070 +367 6790 0.4820 +367 6792 0.4360 +367 6840 0.6910 +367 6855 0.6280 +367 6872 0.6200 +367 6908 0.5710 +367 6934 0.4620 +367 6942 0.7520 +367 7015 0.4200 +367 7040 0.4600 +367 7041 0.9420 +367 7050 0.6080 +367 7110 0.5000 +367 7113 0.9740 +367 7124 0.4830 +367 7155 0.7740 +367 7157 0.9050 +367 7163 0.4510 +367 7181 0.4970 +367 7182 0.5970 +367 7184 0.9350 +367 7251 0.6680 +367 7258 0.4750 +367 7291 0.4160 +367 7329 0.8600 +367 7337 0.8070 +367 7341 0.7470 +367 7366 0.4530 +367 7367 0.4610 +367 7403 0.7650 +367 7415 0.4020 +367 7428 0.6790 +367 7468 0.5740 +367 7474 0.4090 +367 7490 0.4380 +367 7520 0.4510 +367 7528 0.7270 +367 7704 0.7520 +367 7832 0.4080 +367 7837 0.6150 +367 7852 0.5970 +367 7874 0.5200 +367 7942 0.5150 +367 8000 0.4840 +367 8019 0.6690 +367 8031 0.9990 +367 8085 0.7130 +367 8202 0.9970 +367 8204 0.5630 +367 8284 0.8820 +367 8289 0.6240 +367 8290 0.5750 +367 8331 0.5000 +367 8334 0.5000 +367 8337 0.6600 +367 8338 0.6600 +367 8340 0.5380 +367 8341 0.5360 +367 8342 0.5360 +367 8345 0.5380 +367 8347 0.5490 +367 8348 0.5360 +367 8349 0.6430 +367 8356 0.7780 +367 8361 0.6600 +367 8405 0.9530 +367 8409 0.7540 +367 8431 0.7700 +367 8453 0.4060 +367 8554 0.9240 +367 8630 0.4400 +367 8644 0.6270 +367 8648 0.9840 +367 8655 0.4020 +367 8678 0.4820 +367 8726 0.4200 +367 8805 0.7370 +367 8817 0.4370 +367 8822 0.4440 +367 8841 0.7300 +367 8842 0.4200 +367 8850 0.6820 +367 8896 0.9120 +367 8900 0.4070 +367 8970 0.5380 +367 8988 0.6380 +367 9063 0.8730 +367 9070 0.6450 +367 9097 0.9050 +367 9314 0.6950 +367 9325 0.4200 +367 9360 0.5820 +367 9480 0.6350 +367 9506 0.5520 +367 9604 0.9670 +367 9611 0.9910 +367 9612 0.9710 +367 9622 0.4470 +367 9682 0.7450 +367 9733 0.7060 +367 9759 0.6510 +367 9810 0.6590 +367 9968 0.5210 +367 10011 0.4390 +367 10013 0.4300 +367 10046 0.7510 +367 10048 0.5880 +367 10084 0.4350 +367 10121 0.4090 +367 10146 0.4610 +367 10188 0.8230 +367 10273 0.9310 +367 10397 0.6590 +367 10399 0.4240 +367 10401 0.4270 +367 10413 0.8470 +367 10468 0.4610 +367 10481 0.8250 +367 10499 0.9990 +367 10513 0.4760 +367 10521 0.6680 +367 10524 0.7650 +367 10540 0.4770 +367 10645 0.5030 +367 10728 0.9460 +367 10765 0.7880 +367 10847 0.6050 +367 10891 0.6860 +367 10894 0.6210 +367 10912 0.4370 +367 11065 0.5320 +367 11140 0.6610 +367 11143 0.6030 +367 11315 0.5020 +367 11322 0.4490 +367 11331 0.4050 +367 11338 0.5760 +367 22808 0.4260 +367 23028 0.9960 +367 23030 0.4030 +367 23081 0.8230 +367 23098 0.6820 +367 23118 0.4140 +367 23132 0.8580 +367 23186 0.7150 +367 23326 0.4830 +367 23411 0.7280 +367 23433 0.4110 +367 23462 0.5800 +367 23476 0.9690 +367 23600 0.5940 +367 23640 0.5040 +367 23705 0.6000 +367 24148 0.4010 +367 24149 0.4480 +367 25803 0.7280 +367 25898 0.9390 +367 25920 0.4970 +367 25925 0.5260 +367 25937 0.5550 +367 25976 0.4500 +367 26036 0.4790 +367 26524 0.4170 +367 27006 0.4360 +367 27043 0.4780 +367 27063 0.4820 +367 27232 0.5190 +367 29028 0.5850 +367 29126 0.5090 +367 50636 0.4630 +367 50943 0.5810 +367 51143 0.4030 +367 51203 0.4420 +367 51317 0.4550 +367 51341 0.5940 +367 51564 0.4400 +367 51588 0.6240 +367 51755 0.4470 +367 51765 0.4390 +367 51806 0.5350 +367 54106 0.4180 +367 54145 0.5370 +367 54474 0.4080 +367 54880 0.4380 +367 55128 0.6230 +367 55269 0.4030 +367 55334 0.4570 +367 55503 0.4170 +367 55693 0.5310 +367 55726 0.4220 +367 55766 0.5010 +367 55818 0.7320 +367 55827 0.7980 +367 55860 0.4090 +367 56163 0.4100 +367 56254 0.4850 +367 56924 0.9620 +367 56937 0.8190 +367 56998 0.5600 +367 57007 0.4660 +367 57144 0.5820 +367 57178 0.8020 +367 57379 0.4950 +367 57599 0.6940 +367 57680 0.4250 +367 57728 0.4890 +367 57805 0.4260 +367 59272 0.4180 +367 60401 0.5030 +367 63897 0.5770 +367 64324 0.6590 +367 64800 0.7120 +367 79084 0.6790 +367 79154 0.5470 +367 79644 0.5910 +367 79689 0.4860 +367 79723 0.6330 +367 79923 0.4610 +367 80308 0.4260 +367 80854 0.4940 +367 81567 0.5840 +367 81669 0.4380 +367 83637 0.4260 +367 83844 0.8290 +367 84458 0.4070 +367 85236 0.5440 +367 85414 0.5890 +367 91833 0.6940 +367 91860 0.5350 +367 92552 0.4060 +367 93661 0.4160 +367 94239 0.5400 +367 114803 0.4800 +367 122042 0.4180 +367 128312 0.5380 +367 131096 0.4590 +367 133482 0.5810 +367 134864 0.4550 +367 137902 0.6060 +367 140735 0.4020 +367 158800 0.5320 +367 163688 0.5340 +367 171023 0.6950 +367 199920 0.4250 +367 219333 0.8560 +367 221037 0.5290 +367 255626 0.5420 +367 340075 0.4540 +367 402569 0.5230 +367 440093 0.5750 +367 440686 0.5900 +367 474382 0.4990 +367 653604 0.7860 +367 122513141 0.4950 +368 632 0.4340 +368 1244 0.4350 +368 2147 0.4860 +368 2629 0.4120 +368 2677 0.9300 +368 2717 0.4030 +368 4256 0.8980 +368 4363 0.4470 +368 4629 0.6290 +368 4907 0.4570 +368 5167 0.7360 +368 5230 0.4180 +368 5243 0.4800 +368 5244 0.4430 +368 5324 0.5760 +368 5325 0.5280 +368 6554 0.4020 +368 6580 0.4330 +368 7189 0.4670 +368 8647 0.4730 +368 8714 0.4670 +368 9429 0.6120 +368 9665 0.5450 +368 10057 0.4960 +368 10864 0.5370 +368 11309 0.4450 +368 23671 0.4260 +368 26154 0.5240 +368 27164 0.5030 +368 51081 0.8040 +368 54820 0.4100 +368 55324 0.5630 +368 56172 0.5890 +368 57538 0.4020 +368 64131 0.8510 +368 64132 0.7010 +368 64240 0.5800 +368 79001 0.8240 +368 79642 0.5310 +368 123811 0.5400 +368 154664 0.4440 +368 255027 0.5010 +368 283820 0.7020 +368 284111 0.4290 +368 340273 0.4110 +368 408050 0.5100 +372 377 0.6740 +372 378 0.7500 +372 381 0.6530 +372 537 0.5600 +372 550 0.5260 +372 662 0.5900 +372 1314 0.9990 +372 1315 0.9990 +372 1650 0.4760 +372 1891 0.4040 +372 2058 0.6320 +372 3069 0.5590 +372 3703 0.4860 +372 3998 0.4680 +372 4736 0.4290 +372 4905 0.5500 +372 5236 0.4500 +372 5693 0.5200 +372 5861 0.7060 +372 6122 0.6240 +372 6125 0.4460 +372 6129 0.4180 +372 6132 0.4510 +372 6139 0.4380 +372 6142 0.4860 +372 6144 0.4890 +372 6147 0.4180 +372 6154 0.4480 +372 6176 0.4390 +372 6184 0.4450 +372 6185 0.4060 +372 6188 0.4340 +372 6189 0.5200 +372 6191 0.4160 +372 6193 0.4040 +372 6194 0.4320 +372 6201 0.4240 +372 6204 0.5000 +372 6205 0.4480 +372 6206 0.4200 +372 6207 0.4260 +372 6208 0.4910 +372 6210 0.4460 +372 6222 0.4630 +372 6223 0.4350 +372 6229 0.4870 +372 6230 0.4620 +372 6232 0.4200 +372 6234 0.4020 +372 6235 0.4260 +372 6396 0.7250 +372 6729 0.4080 +372 6734 0.4890 +372 6760 0.5260 +372 6780 0.4580 +372 6811 0.7350 +372 6836 0.6590 +372 7415 0.4250 +372 7841 0.5140 +372 8218 0.4810 +372 8539 0.4450 +372 8615 0.7210 +372 8693 0.4140 +372 8729 0.6150 +372 8774 0.5390 +372 8775 0.5230 +372 8869 0.4280 +372 8943 0.4020 +372 9183 0.8610 +372 9221 0.4480 +372 9276 0.9990 +372 9349 0.4500 +372 9482 0.4960 +372 9527 0.6310 +372 9554 0.7310 +372 9570 0.6370 +372 9632 0.5510 +372 9698 0.4100 +372 9777 0.4280 +372 9898 0.4360 +372 9919 0.4630 +372 9950 0.4530 +372 10113 0.4540 +372 10282 0.7090 +372 10399 0.4680 +372 10427 0.6740 +372 10483 0.6600 +372 10484 0.4750 +372 10558 0.4070 +372 10652 0.6200 +372 10694 0.4030 +372 10802 0.5260 +372 10945 0.7570 +372 10952 0.6970 +372 10959 0.7240 +372 10972 0.9230 +372 10973 0.6070 +372 11014 0.7110 +372 11015 0.6540 +372 11079 0.4410 +372 11196 0.6810 +372 11231 0.4110 +372 11316 0.9990 +372 22818 0.9990 +372 22820 0.9990 +372 22872 0.7230 +372 23187 0.4740 +372 23256 0.6550 +372 23423 0.7540 +372 23431 0.6240 +372 23451 0.5090 +372 25956 0.4270 +372 26003 0.6590 +372 26057 0.4040 +372 26286 0.8760 +372 26958 0.9900 +372 26984 0.4120 +372 29088 0.4900 +372 29927 0.4240 +372 51014 0.7800 +372 51128 0.4090 +372 51226 0.9790 +372 51272 0.6200 +372 51290 0.5120 +372 51594 0.6710 +372 53407 0.6580 +372 54732 0.6760 +372 55204 0.6720 +372 55737 0.4360 +372 55738 0.6410 +372 55770 0.4770 +372 55850 0.5120 +372 56652 0.4690 +372 57147 0.4230 +372 57410 0.9320 +372 60561 0.7730 +372 63908 0.5130 +372 64083 0.8870 +372 79170 0.7270 +372 81876 0.6810 +372 84364 0.8780 +372 84955 0.6930 +372 114960 0.6850 +372 133619 0.5270 +372 205428 0.7530 +372 400668 0.4470 +373 1509 0.4680 +373 2669 0.4230 +373 3320 0.6310 +373 3326 0.4980 +373 3661 0.4390 +373 3964 0.4980 +373 4591 0.5150 +373 5371 0.4450 +373 5682 0.4880 +373 5921 0.4330 +373 5987 0.7010 +373 6233 0.9160 +373 6418 0.5120 +373 6453 0.5350 +373 6619 0.4310 +373 6737 0.5450 +373 7187 0.7400 +373 7249 0.5110 +373 7311 0.9070 +373 7314 0.9180 +373 7316 0.9350 +373 7321 0.6950 +373 7322 0.9730 +373 7323 0.8460 +373 7324 0.8200 +373 7332 0.4020 +373 7334 0.5570 +373 7706 0.6350 +373 7726 0.4640 +373 8424 0.4480 +373 8517 0.4750 +373 8729 0.4080 +373 8805 0.4480 +373 8878 0.4180 +373 9135 0.4940 +373 9265 0.6620 +373 9266 0.8580 +373 9267 0.8360 +373 9641 0.4180 +373 9830 0.4240 +373 9866 0.4780 +373 10155 0.5760 +373 10206 0.4460 +373 10475 0.4760 +373 10626 0.4490 +373 10845 0.4120 +373 11074 0.6050 +373 11183 0.4020 +373 22954 0.4730 +373 23352 0.4960 +373 23376 0.4620 +373 23398 0.5000 +373 23650 0.7080 +373 27128 0.6970 +373 29110 0.7590 +373 29803 0.6200 +373 29890 0.5100 +373 50618 0.5470 +373 50852 0.6300 +373 51127 0.4860 +373 51314 0.6900 +373 51619 0.5280 +373 54765 0.5980 +373 55128 0.4680 +373 55223 0.4310 +373 55284 0.5440 +373 55435 0.7780 +373 57159 0.5540 +373 81559 0.5050 +373 81603 0.5570 +373 81844 0.6970 +373 84140 0.4270 +373 84675 0.6150 +373 84851 0.4900 +373 85363 0.5420 +373 89122 0.5320 +373 89870 0.4250 +373 90933 0.5460 +373 91107 0.4610 +373 117854 0.6180 +373 135644 0.4880 +373 135892 0.5320 +373 140691 0.4530 +373 201292 0.5190 +373 282809 0.4360 +373 287015 0.5020 +373 378108 0.4260 +373 442862 0.4050 +373 445372 0.4830 +373 493829 0.4210 +373 100287399 0.8010 +373 102724631 0.4330 +374 407 0.4700 +374 472 0.4670 +374 567 0.4760 +374 595 0.4350 +374 673 0.4180 +374 685 0.9910 +374 857 0.5240 +374 867 0.6170 +374 896 0.4450 +374 920 0.4820 +374 925 0.4470 +374 928 0.5310 +374 960 0.5860 +374 966 0.5350 +374 999 0.4630 +374 1033 0.4210 +374 1075 0.5270 +374 1081 0.5100 +374 1173 0.4990 +374 1175 0.4990 +374 1211 0.4990 +374 1294 0.5210 +374 1436 0.7110 +374 1437 0.5010 +374 1445 0.5500 +374 1490 0.5980 +374 1499 0.4210 +374 1514 0.4360 +374 1522 0.5580 +374 1588 0.4110 +374 1601 0.5090 +374 1839 0.7850 +374 1950 0.9980 +374 1956 0.9990 +374 1958 0.6300 +374 1969 0.7370 +374 2060 0.6840 +374 2064 0.9590 +374 2065 0.9930 +374 2066 0.9920 +374 2069 0.9980 +374 2099 0.6680 +374 2119 0.4510 +374 2153 0.5050 +374 2157 0.5050 +374 2247 0.4790 +374 2248 0.5790 +374 2250 0.5810 +374 2252 0.6750 +374 2253 0.5780 +374 2254 0.6030 +374 2255 0.4220 +374 2260 0.8020 +374 2261 0.7000 +374 2263 0.8240 +374 2264 0.7120 +374 2321 0.7420 +374 2322 0.7090 +374 2324 0.7250 +374 2348 0.5180 +374 2353 0.6620 +374 2488 0.6030 +374 2492 0.5500 +374 2549 0.4560 +374 2597 0.4520 +374 2625 0.5820 +374 2668 0.5010 +374 2801 0.4990 +374 2817 0.4540 +374 2885 0.5770 +374 2890 0.4990 +374 2919 0.5000 +374 2920 0.4520 +374 3037 0.4610 +374 3067 0.5230 +374 3068 0.4590 +374 3082 0.4830 +374 3084 0.7880 +374 3169 0.6150 +374 3265 0.6220 +374 3267 0.5010 +374 3308 0.4440 +374 3383 0.9470 +374 3458 0.5060 +374 3479 0.4470 +374 3480 0.7920 +374 3486 0.5570 +374 3491 0.5340 +374 3552 0.5050 +374 3553 0.5510 +374 3558 0.4010 +374 3565 0.5350 +374 3567 0.6140 +374 3569 0.6040 +374 3575 0.4180 +374 3576 0.5450 +374 3578 0.5690 +374 3586 0.4890 +374 3596 0.6310 +374 3603 0.4400 +374 3605 0.6010 +374 3606 0.4260 +374 3630 0.4150 +374 3643 0.6630 +374 3725 0.4260 +374 3791 0.7540 +374 3815 0.7670 +374 3845 0.7660 +374 3861 0.5570 +374 3949 0.5290 +374 3973 0.7660 +374 3998 0.4990 +374 4036 0.5790 +374 4233 0.8040 +374 4313 0.5500 +374 4318 0.4490 +374 4609 0.4320 +374 4684 0.5060 +374 4804 0.6940 +374 4853 0.5220 +374 4854 0.5030 +374 4893 0.6670 +374 4905 0.4990 +374 4914 0.8390 +374 4915 0.6740 +374 5054 0.6120 +374 5156 0.7370 +374 5159 0.7580 +374 5241 0.6230 +374 5265 0.5780 +374 5290 0.6090 +374 5295 0.4430 +374 5335 0.5500 +374 5531 0.4030 +374 5595 0.4880 +374 5743 0.5940 +374 5744 0.5490 +374 5747 0.5060 +374 5774 0.4140 +374 5781 0.4910 +374 5796 0.4290 +374 5806 0.5830 +374 5829 0.5400 +374 5925 0.4180 +374 6233 0.4990 +374 6275 0.8220 +374 6347 0.6470 +374 6348 0.5780 +374 6356 0.5550 +374 6364 0.6040 +374 6396 0.4990 +374 6423 0.4560 +374 6455 0.4990 +374 6456 0.4990 +374 6457 0.4990 +374 6464 0.5650 +374 6624 0.4400 +374 6654 0.4910 +374 6714 0.6840 +374 6770 0.5050 +374 6774 0.4860 +374 6778 0.4790 +374 6811 0.4990 +374 6844 0.4990 +374 6845 0.4990 +374 6868 0.7080 +374 6997 0.4170 +374 7010 0.7080 +374 7039 0.9600 +374 7040 0.5830 +374 7045 0.4580 +374 7046 0.4570 +374 7076 0.4130 +374 7124 0.5200 +374 7130 0.5150 +374 7157 0.4350 +374 7311 0.4990 +374 7314 0.4990 +374 7316 0.4990 +374 7490 0.5240 +374 8027 0.4990 +374 8301 0.4990 +374 8313 0.4990 +374 8600 0.4060 +374 8615 0.4990 +374 8673 0.5130 +374 8774 0.5000 +374 8775 0.4990 +374 8817 0.4010 +374 8874 0.4990 +374 9113 0.4060 +374 9117 0.4990 +374 9120 0.4510 +374 9146 0.4990 +374 9173 0.5980 +374 9185 0.4990 +374 9341 0.4990 +374 9370 0.4200 +374 9510 0.7220 +374 9542 0.7600 +374 9554 0.4990 +374 9570 0.4990 +374 9632 0.4990 +374 9871 0.4990 +374 9892 0.4990 +374 9919 0.4990 +374 9982 0.4700 +374 10113 0.4990 +374 10175 0.7270 +374 10219 0.5070 +374 10252 0.5520 +374 10253 0.5750 +374 10254 0.4990 +374 10282 0.5040 +374 10342 0.4990 +374 10413 0.4180 +374 10427 0.5010 +374 10484 0.4990 +374 10631 0.4530 +374 10652 0.5000 +374 10718 0.6690 +374 10802 0.4990 +374 10959 0.4990 +374 10960 0.4990 +374 10972 0.4990 +374 11196 0.4990 +374 11251 0.4710 +374 22872 0.4990 +374 22905 0.4990 +374 23256 0.5000 +374 23586 0.4900 +374 23765 0.4180 +374 26018 0.5010 +374 26119 0.4990 +374 26984 0.4990 +374 29851 0.5150 +374 29924 0.4990 +374 29978 0.4990 +374 30009 0.4470 +374 30011 0.5140 +374 50616 0.5330 +374 50943 0.4480 +374 51128 0.4990 +374 51129 0.7340 +374 55014 0.5230 +374 55540 0.4140 +374 55824 0.4990 +374 57829 0.4370 +374 58513 0.5110 +374 58985 0.5010 +374 63908 0.4990 +374 64285 0.4730 +374 64689 0.4990 +374 79651 0.4390 +374 79748 0.4990 +374 81562 0.4990 +374 85480 0.5990 +374 89866 0.4990 +374 90411 0.5570 +374 90865 0.6870 +374 93659 0.4970 +374 114335 0.5880 +374 134147 0.6320 +374 145957 0.7250 +374 149111 0.5150 +374 254263 0.5150 +374 255324 0.9310 +377 378 0.8160 +377 381 0.7560 +377 387 0.7600 +377 388 0.4280 +377 396 0.5970 +377 398 0.4100 +377 547 0.5210 +377 775 0.4080 +377 808 0.4510 +377 829 0.5420 +377 830 0.5530 +377 832 0.5940 +377 988 0.4980 +377 1029 0.7180 +377 1062 0.5060 +377 1122 0.4560 +377 1314 0.6520 +377 1315 0.8480 +377 1398 0.5380 +377 1639 0.5720 +377 1730 0.4080 +377 1778 0.5860 +377 1780 0.5150 +377 1781 0.5300 +377 1783 0.5450 +377 2050 0.4490 +377 2316 0.4310 +377 2889 0.6930 +377 3267 0.4250 +377 3796 0.5460 +377 3797 0.5580 +377 3798 0.5130 +377 3799 0.7040 +377 3831 0.5530 +377 3832 0.5180 +377 3833 0.6250 +377 3834 0.6250 +377 3835 0.5090 +377 4644 0.6960 +377 4688 0.9020 +377 4689 0.7080 +377 5245 0.4080 +377 5298 0.8730 +377 5364 0.6120 +377 5585 0.5210 +377 5590 0.4300 +377 5829 0.4160 +377 5861 0.6420 +377 5864 0.7130 +377 5867 0.4290 +377 5868 0.4480 +377 5869 0.4230 +377 5870 0.5800 +377 5873 0.6360 +377 5877 0.5990 +377 5879 0.4310 +377 5880 0.4960 +377 5898 0.7460 +377 5900 0.6700 +377 5901 0.6260 +377 5902 0.5560 +377 5906 0.4260 +377 5908 0.4370 +377 5921 0.7120 +377 6009 0.4700 +377 6093 0.4850 +377 6237 0.6410 +377 6396 0.4070 +377 6453 0.5560 +377 6517 0.5660 +377 6654 0.4740 +377 6655 0.4770 +377 6714 0.4240 +377 6836 0.5600 +377 7249 0.4380 +377 8120 0.4920 +377 8153 0.5950 +377 8218 0.6450 +377 8546 0.4150 +377 8615 0.6310 +377 8655 0.5560 +377 8729 0.8130 +377 8766 0.5590 +377 8907 0.4100 +377 8925 0.5270 +377 8943 0.5380 +377 8976 0.5300 +377 9138 0.4720 +377 9179 0.8000 +377 9185 0.4580 +377 9266 0.5420 +377 9267 0.7220 +377 9276 0.6980 +377 9363 0.6900 +377 9371 0.5580 +377 9463 0.4130 +377 9475 0.4420 +377 9493 0.8400 +377 9554 0.6040 +377 9585 0.5100 +377 9922 0.4010 +377 10112 0.5190 +377 10121 0.5910 +377 10507 0.5650 +377 10526 0.5680 +377 10540 0.5830 +377 10564 0.4840 +377 10565 0.4850 +377 10671 0.5240 +377 10717 0.7960 +377 10749 0.5250 +377 10890 0.4230 +377 10928 0.5140 +377 10945 0.5890 +377 10959 0.5590 +377 10972 0.5450 +377 11004 0.5020 +377 11014 0.5410 +377 11015 0.5380 +377 11127 0.5650 +377 11154 0.6980 +377 11258 0.5310 +377 11316 0.6600 +377 11336 0.5380 +377 22818 0.7050 +377 22820 0.7070 +377 22895 0.4780 +377 22920 0.7230 +377 23046 0.5050 +377 23062 0.4820 +377 23086 0.6690 +377 23095 0.5250 +377 23163 0.8250 +377 23265 0.6240 +377 23303 0.5040 +377 23423 0.5570 +377 23431 0.7160 +377 23433 0.7270 +377 23560 0.4350 +377 23647 0.7990 +377 24137 0.5110 +377 26088 0.8980 +377 26153 0.5330 +377 26286 0.6770 +377 26958 0.6740 +377 27236 0.9070 +377 27289 0.7040 +377 27314 0.6660 +377 29127 0.6600 +377 50618 0.5650 +377 51014 0.5690 +377 51143 0.5380 +377 51164 0.5450 +377 51226 0.6180 +377 54732 0.5320 +377 54843 0.6740 +377 55083 0.5330 +377 55333 0.4550 +377 55582 0.5050 +377 55605 0.5140 +377 55614 0.5240 +377 55738 0.7470 +377 55860 0.5500 +377 56992 0.5390 +377 57521 0.5520 +377 60412 0.5710 +377 63973 0.4740 +377 64083 0.4550 +377 64837 0.5510 +377 79083 0.5590 +377 80790 0.4230 +377 81876 0.6690 +377 81930 0.5110 +377 83452 0.7160 +377 84364 0.6960 +377 84516 0.5440 +377 84643 0.5020 +377 89953 0.5380 +377 90627 0.4250 +377 90990 0.6370 +377 93661 0.5420 +377 124602 0.5050 +377 140735 0.5750 +377 146909 0.5050 +377 147700 0.5320 +377 154796 0.4010 +377 221458 0.5330 +377 285643 0.5110 +377 342184 0.4920 +377 653361 0.8080 +378 381 0.8880 +378 488 0.4790 +378 547 0.5210 +378 582 0.4760 +378 829 0.5650 +378 830 0.5550 +378 832 0.5590 +378 864 0.4520 +378 871 0.6170 +378 1029 0.8050 +378 1062 0.5060 +378 1258 0.6350 +378 1260 0.5090 +378 1262 0.5090 +378 1314 0.6790 +378 1315 0.8370 +378 1639 0.5060 +378 1778 0.5500 +378 1780 0.5150 +378 1781 0.5580 +378 1783 0.5570 +378 1956 0.4560 +378 2801 0.4130 +378 2804 0.4190 +378 3309 0.4080 +378 3796 0.5060 +378 3797 0.5330 +378 3798 0.5110 +378 3799 0.6010 +378 3831 0.5520 +378 3832 0.5180 +378 3833 0.6250 +378 3834 0.6250 +378 3835 0.5050 +378 4218 0.8570 +378 4233 0.4030 +378 4690 0.4310 +378 4782 0.4440 +378 5245 0.4010 +378 5298 0.5500 +378 5310 0.7920 +378 5311 0.7910 +378 5314 0.5860 +378 5700 0.4960 +378 5861 0.7600 +378 5868 0.4760 +378 5870 0.6720 +378 5877 0.5290 +378 5921 0.6070 +378 6010 0.8810 +378 6396 0.5930 +378 6453 0.5540 +378 6836 0.6740 +378 7184 0.4300 +378 7289 0.4210 +378 8440 0.5570 +378 8517 0.9530 +378 8615 0.6980 +378 8655 0.6040 +378 8729 0.9050 +378 8766 0.9280 +378 9266 0.4150 +378 9267 0.5910 +378 9276 0.8070 +378 9371 0.5760 +378 9493 0.6460 +378 9554 0.6370 +378 9570 0.4010 +378 9585 0.5100 +378 9727 0.8720 +378 9922 0.4340 +378 10112 0.5180 +378 10121 0.5830 +378 10282 0.4440 +378 10488 0.5020 +378 10538 0.4830 +378 10540 0.5730 +378 10564 0.4630 +378 10565 0.4150 +378 10618 0.4460 +378 10671 0.5560 +378 10749 0.5490 +378 10945 0.6260 +378 10959 0.7270 +378 10972 0.6620 +378 11004 0.5030 +378 11014 0.7780 +378 11015 0.7080 +378 11127 0.6280 +378 11258 0.5460 +378 11316 0.7070 +378 22818 0.7750 +378 22820 0.7710 +378 22920 0.5120 +378 23046 0.5210 +378 23062 0.4010 +378 23071 0.5210 +378 23095 0.5280 +378 23163 0.5030 +378 23303 0.5050 +378 23423 0.5600 +378 24137 0.5110 +378 26088 0.4910 +378 26153 0.5730 +378 26286 0.7860 +378 26958 0.7240 +378 29127 0.5260 +378 50618 0.5360 +378 50807 0.9740 +378 51014 0.6050 +378 51143 0.5220 +378 51164 0.5700 +378 51226 0.6440 +378 51715 0.4020 +378 54732 0.5850 +378 55083 0.5330 +378 55212 0.4110 +378 55582 0.5050 +378 55605 0.5140 +378 55614 0.5060 +378 55738 0.7250 +378 55860 0.6030 +378 56992 0.5510 +378 57465 0.5440 +378 64083 0.5760 +378 64837 0.5540 +378 81876 0.6310 +378 81930 0.5110 +378 84364 0.7330 +378 84516 0.5270 +378 84643 0.5020 +378 89953 0.5560 +378 90410 0.4490 +378 90990 0.6250 +378 93661 0.5420 +378 117177 0.8540 +378 124602 0.5050 +378 140735 0.5850 +378 146909 0.5050 +378 147700 0.5320 +378 148327 0.5100 +378 221458 0.5330 +378 285643 0.5110 +379 2316 0.4710 +379 6453 0.5350 +379 9265 0.4550 +379 9266 0.7940 +379 9267 0.4030 +379 27128 0.4350 +379 50618 0.5360 +379 100287482 0.4200 +381 402 0.4140 +381 547 0.5210 +381 829 0.5480 +381 830 0.5640 +381 832 0.5880 +381 871 0.4920 +381 1029 0.7600 +381 1062 0.5100 +381 1174 0.5530 +381 1314 0.7180 +381 1315 0.8460 +381 1639 0.5160 +381 1778 0.5380 +381 1780 0.5150 +381 1781 0.5680 +381 1783 0.5150 +381 2783 0.5630 +381 2917 0.4330 +381 3087 0.4090 +381 3796 0.5040 +381 3797 0.5340 +381 3798 0.5110 +381 3799 0.5260 +381 3831 0.5670 +381 3832 0.5260 +381 3833 0.6250 +381 3834 0.6250 +381 3835 0.5090 +381 3916 0.4940 +381 4218 0.4600 +381 4599 0.4160 +381 5298 0.5450 +381 5341 0.5830 +381 5662 0.4780 +381 5861 0.6150 +381 5870 0.4150 +381 5877 0.4640 +381 6453 0.5350 +381 6836 0.5470 +381 8517 0.6430 +381 8615 0.5910 +381 8655 0.5520 +381 8729 0.8280 +381 8766 0.7920 +381 8853 0.7470 +381 8907 0.4070 +381 9266 0.4710 +381 9267 0.7650 +381 9276 0.7520 +381 9341 0.4280 +381 9371 0.5330 +381 9463 0.4880 +381 9493 0.6380 +381 9554 0.5870 +381 9585 0.5100 +381 9727 0.9520 +381 9744 0.8250 +381 9922 0.8350 +381 10112 0.5100 +381 10121 0.5770 +381 10540 0.5470 +381 10564 0.4400 +381 10565 0.4870 +381 10671 0.5130 +381 10749 0.5230 +381 10945 0.5790 +381 10959 0.5560 +381 10972 0.5670 +381 11004 0.5030 +381 11014 0.5810 +381 11015 0.5380 +381 11033 0.4220 +381 11127 0.5410 +381 11258 0.5200 +381 11316 0.7950 +381 22818 0.7050 +381 22820 0.6750 +381 22841 0.5640 +381 22920 0.5040 +381 23046 0.5070 +381 23071 0.5820 +381 23095 0.5230 +381 23162 0.4510 +381 23163 0.5420 +381 23265 0.6540 +381 23303 0.5050 +381 23423 0.5610 +381 23426 0.4520 +381 23527 0.8150 +381 23647 0.8420 +381 24137 0.5110 +381 26031 0.4050 +381 26056 0.5010 +381 26088 0.5940 +381 26153 0.5380 +381 26276 0.4400 +381 26286 0.7370 +381 26499 0.5840 +381 26958 0.6790 +381 27044 0.5250 +381 27128 0.6180 +381 27236 0.8610 +381 29127 0.5230 +381 50618 0.5420 +381 50807 0.8920 +381 51014 0.5650 +381 51143 0.5180 +381 51164 0.5300 +381 51226 0.6180 +381 54732 0.5390 +381 55083 0.5330 +381 55582 0.5050 +381 55605 0.5130 +381 55614 0.5060 +381 55616 0.4450 +381 55738 0.7950 +381 55768 0.4390 +381 55860 0.5490 +381 56903 0.4910 +381 56992 0.5390 +381 57111 0.5680 +381 57465 0.4550 +381 64083 0.4240 +381 64837 0.6010 +381 79571 0.5460 +381 80223 0.7550 +381 81876 0.6480 +381 81930 0.5110 +381 84364 0.7850 +381 84440 0.8470 +381 84516 0.5300 +381 84643 0.5020 +381 84955 0.6220 +381 89953 0.5770 +381 90990 0.6350 +381 92344 0.7450 +381 93661 0.5420 +381 116985 0.4520 +381 116987 0.7020 +381 124602 0.5050 +381 140735 0.5600 +381 146909 0.5050 +381 147700 0.5750 +381 221458 0.5330 +381 285643 0.5110 +382 387 0.7190 +382 388 0.4410 +382 389 0.4370 +382 391 0.5280 +382 392 0.5840 +382 396 0.4260 +382 408 0.5520 +382 409 0.5500 +382 528 0.4230 +382 857 0.8630 +382 858 0.4280 +382 928 0.5320 +382 967 0.5880 +382 975 0.5660 +382 999 0.4240 +382 1029 0.7750 +382 1072 0.4880 +382 1073 0.4610 +382 1173 0.7200 +382 1174 0.4740 +382 1175 0.4360 +382 1211 0.5000 +382 1212 0.5280 +382 1315 0.6690 +382 1363 0.4290 +382 1398 0.6830 +382 1399 0.6100 +382 1639 0.5730 +382 1759 0.4570 +382 1785 0.7850 +382 1793 0.7030 +382 1894 0.4990 +382 1950 0.4510 +382 1956 0.6600 +382 2017 0.6680 +382 2040 0.4960 +382 2060 0.7400 +382 2316 0.5510 +382 2547 0.6820 +382 2549 0.5190 +382 2776 0.5040 +382 2885 0.6530 +382 2911 0.4270 +382 3059 0.6800 +382 3082 0.6460 +382 3356 0.5190 +382 3482 0.4630 +382 3553 0.4350 +382 3611 0.5130 +382 3845 0.4660 +382 3916 0.6790 +382 4193 0.4050 +382 4218 0.4500 +382 4233 0.7280 +382 4478 0.4110 +382 4830 0.6330 +382 4952 0.8080 +382 5216 0.4140 +382 5298 0.4830 +382 5337 0.9760 +382 5338 0.9830 +382 5341 0.7560 +382 5662 0.8560 +382 5829 0.6670 +382 5861 0.6190 +382 5862 0.4310 +382 5867 0.7380 +382 5870 0.4890 +382 5873 0.6150 +382 5877 0.7850 +382 5879 0.6250 +382 5880 0.5270 +382 5898 0.7220 +382 5899 0.4300 +382 5908 0.4010 +382 5912 0.6070 +382 5921 0.7690 +382 6093 0.4190 +382 6237 0.4320 +382 6382 0.7060 +382 6386 0.7640 +382 6453 0.8300 +382 6642 0.4160 +382 6714 0.7350 +382 6811 0.4630 +382 6845 0.6610 +382 6850 0.4820 +382 7037 0.6980 +382 7074 0.7470 +382 7251 0.6570 +382 7430 0.4290 +382 7454 0.5360 +382 7535 0.4840 +382 7879 0.4290 +382 8218 0.7350 +382 8394 0.9640 +382 8395 0.9340 +382 8411 0.7200 +382 8517 0.8900 +382 8546 0.4440 +382 8729 0.7680 +382 8766 0.9110 +382 8773 0.4110 +382 8826 0.7850 +382 8853 0.9660 +382 8867 0.4350 +382 8871 0.5830 +382 8874 0.4780 +382 8881 0.5660 +382 8976 0.5420 +382 8997 0.4010 +382 9043 0.9960 +382 9098 0.5530 +382 9230 0.4360 +382 9265 0.9980 +382 9266 0.9980 +382 9267 0.9950 +382 9341 0.6190 +382 9364 0.4530 +382 9368 0.5380 +382 9459 0.4300 +382 9463 0.4670 +382 9479 0.4070 +382 9493 0.9820 +382 9522 0.5250 +382 9559 0.4050 +382 9712 0.5370 +382 9727 0.9860 +382 9744 0.9000 +382 9815 0.6940 +382 9844 0.4460 +382 9892 0.5290 +382 9922 0.9680 +382 10015 0.4630 +382 10066 0.8080 +382 10095 0.4970 +382 10097 0.5000 +382 10163 0.4120 +382 10211 0.4550 +382 10280 0.4800 +382 10490 0.5180 +382 10564 0.5670 +382 10565 0.5890 +382 10618 0.7360 +382 10640 0.9740 +382 10643 0.4500 +382 10905 0.4180 +382 10928 0.9340 +382 10938 0.7820 +382 11021 0.5500 +382 11031 0.4050 +382 11033 0.8380 +382 11252 0.4260 +382 22841 0.6480 +382 22848 0.5040 +382 22905 0.4570 +382 22931 0.5160 +382 23011 0.5670 +382 23062 0.4310 +382 23096 0.6360 +382 23149 0.4930 +382 23162 0.8630 +382 23163 0.9850 +382 23241 0.6670 +382 23265 0.8520 +382 23301 0.4540 +382 23303 0.4500 +382 23362 0.6250 +382 23396 0.9740 +382 23433 0.4240 +382 23435 0.4170 +382 23527 0.9130 +382 23550 0.8080 +382 23560 0.6060 +382 23647 0.9310 +382 25977 0.4540 +382 26000 0.6860 +382 26056 0.6460 +382 26060 0.4510 +382 26088 0.8190 +382 26269 0.6170 +382 26286 0.4380 +382 26499 0.7720 +382 27128 0.9830 +382 27236 0.9140 +382 28964 0.6100 +382 29127 0.5390 +382 29978 0.4100 +382 30844 0.4510 +382 30845 0.4860 +382 50618 0.7750 +382 50807 0.9910 +382 51552 0.5330 +382 53916 0.5620 +382 54443 0.4590 +382 54536 0.5140 +382 55040 0.4620 +382 55165 0.4460 +382 55283 0.5210 +382 55616 0.9910 +382 55690 0.5950 +382 55691 0.4060 +382 55707 0.4140 +382 55737 0.4300 +382 55738 0.8900 +382 55763 0.4460 +382 55770 0.5520 +382 55803 0.4540 +382 55845 0.4030 +382 57111 0.6300 +382 57192 0.5940 +382 57465 0.9530 +382 57584 0.4930 +382 60412 0.5320 +382 60682 0.7510 +382 64083 0.6600 +382 64145 0.4090 +382 64411 0.7980 +382 80223 0.6430 +382 81609 0.4950 +382 81624 0.4080 +382 83871 0.4890 +382 83874 0.8450 +382 84249 0.5250 +382 84251 0.4580 +382 84364 0.4840 +382 84440 0.9130 +382 85021 0.4840 +382 85377 0.6240 +382 90060 0.4980 +382 90809 0.4510 +382 91663 0.4510 +382 92714 0.5710 +382 115548 0.5190 +382 116984 0.4920 +382 116987 0.7300 +382 120892 0.4360 +382 133482 0.5630 +382 149371 0.5280 +382 154043 0.5070 +382 160622 0.4240 +382 200576 0.8570 +382 255231 0.6840 +382 375189 0.4690 +382 440073 0.7480 +382 728378 0.5300 +383 384 0.9330 +383 435 0.9740 +383 445 0.8110 +383 501 0.4090 +383 627 0.4050 +383 790 0.4990 +383 820 0.4110 +383 834 0.4460 +383 836 0.4920 +383 875 0.4240 +383 912 0.4220 +383 919 0.5970 +383 920 0.7610 +383 925 0.7200 +383 930 0.4480 +383 940 0.5160 +383 941 0.6930 +383 942 0.7470 +383 945 0.6710 +383 947 0.4290 +383 948 0.5330 +383 949 0.5170 +383 950 0.5280 +383 953 0.4940 +383 958 0.5810 +383 959 0.4060 +383 960 0.4070 +383 961 0.4450 +383 968 0.7420 +383 969 0.4230 +383 1051 0.5430 +383 1088 0.6660 +383 1116 0.4180 +383 1118 0.7250 +383 1230 0.4410 +383 1234 0.5480 +383 1236 0.4890 +383 1373 0.7110 +383 1401 0.4360 +383 1420 0.4030 +383 1428 0.7860 +383 1435 0.6740 +383 1436 0.6090 +383 1437 0.6730 +383 1440 0.5940 +383 1491 0.4720 +383 1493 0.6120 +383 1499 0.4200 +383 1511 0.4370 +383 1524 0.6120 +383 1536 0.5340 +383 1718 0.4760 +383 1725 0.4780 +383 1950 0.4010 +383 1991 0.5220 +383 2034 0.6270 +383 2099 0.6020 +383 2166 0.4870 +383 2209 0.5210 +383 2212 0.5200 +383 2213 0.5470 +383 2219 0.4930 +383 2271 0.7750 +383 2335 0.4770 +383 2475 0.4350 +383 2526 0.5830 +383 2597 0.6520 +383 2625 0.4390 +383 2628 0.9380 +383 2670 0.4230 +383 2719 0.4780 +383 2746 0.4380 +383 2752 0.7470 +383 2841 0.5460 +383 2875 0.4790 +383 2919 0.5660 +383 2920 0.4510 +383 3002 0.5220 +383 3034 0.8890 +383 3082 0.4410 +383 3091 0.6400 +383 3146 0.4310 +383 3162 0.4760 +383 3240 0.5200 +383 3251 0.4890 +383 3383 0.5060 +383 3394 0.4180 +383 3439 0.4430 +383 3456 0.4610 +383 3458 0.8010 +383 3479 0.5430 +383 3552 0.6080 +383 3553 0.8000 +383 3554 0.4690 +383 3558 0.6320 +383 3565 0.8800 +383 3566 0.7690 +383 3567 0.5290 +383 3569 0.8040 +383 3575 0.5530 +383 3576 0.5610 +383 3577 0.4490 +383 3579 0.5710 +383 3586 0.8930 +383 3596 0.8070 +383 3597 0.6200 +383 3600 0.4050 +383 3605 0.6160 +383 3606 0.5130 +383 3620 0.7750 +383 3627 0.6100 +383 3630 0.5140 +383 3662 0.4490 +383 3663 0.4500 +383 3684 0.7950 +383 3687 0.6660 +383 3689 0.5750 +383 3717 0.4060 +383 3725 0.4150 +383 3902 0.5440 +383 3934 0.4160 +383 3958 0.4470 +383 4282 0.4070 +383 4283 0.5170 +383 4313 0.4550 +383 4317 0.5290 +383 4318 0.6270 +383 4321 0.4970 +383 4353 0.5570 +383 4360 0.8810 +383 4481 0.6160 +383 4609 0.4670 +383 4684 0.4530 +383 4790 0.4980 +383 4842 0.9510 +383 4843 0.9800 +383 4846 0.9590 +383 4907 0.4730 +383 4942 0.9980 +383 4953 0.9840 +383 4973 0.4330 +383 5009 0.9930 +383 5091 0.5130 +383 5133 0.5190 +383 5175 0.5210 +383 5465 0.5670 +383 5468 0.5980 +383 5551 0.4980 +383 5625 0.5490 +383 5728 0.4320 +383 5743 0.6120 +383 5788 0.6310 +383 5832 0.5070 +383 6283 0.4600 +383 6285 0.4140 +383 6347 0.7260 +383 6348 0.5810 +383 6351 0.4600 +383 6361 0.5880 +383 6362 0.5110 +383 6367 0.6120 +383 6369 0.4480 +383 6374 0.4570 +383 6376 0.4500 +383 6387 0.5330 +383 6402 0.5030 +383 6513 0.4560 +383 6542 0.8410 +383 6556 0.4040 +383 6611 0.8320 +383 6614 0.4080 +383 6647 0.4250 +383 6723 0.8570 +383 6772 0.5990 +383 6774 0.6840 +383 6778 0.7320 +383 6821 0.4220 +383 6868 0.6430 +383 6898 0.4180 +383 6999 0.5090 +383 7040 0.6310 +383 7053 0.4260 +383 7097 0.5840 +383 7098 0.4280 +383 7099 0.6530 +383 7124 0.7770 +383 7157 0.4160 +383 7412 0.5110 +383 7837 0.5250 +383 7852 0.4900 +383 8424 0.4460 +383 8651 0.4290 +383 8654 0.5010 +383 8659 0.6130 +383 8876 0.4460 +383 8993 0.4760 +383 9021 0.4890 +383 9057 0.4850 +383 9332 0.7800 +383 9563 0.5020 +383 10166 0.4150 +383 10461 0.4360 +383 10462 0.5080 +383 22914 0.4570 +383 22949 0.4320 +383 23564 0.4370 +383 23576 0.4350 +383 27159 0.7190 +383 29126 0.7210 +383 30835 0.4160 +383 50943 0.6870 +383 51015 0.5170 +383 51520 0.4300 +383 51557 0.4900 +383 51582 0.6100 +383 54106 0.4650 +383 54209 0.4450 +383 55217 0.4390 +383 55278 0.5050 +383 56729 0.6170 +383 58510 0.4200 +383 60675 0.4150 +383 64386 0.4740 +383 64581 0.5470 +383 64850 0.4650 +383 64902 0.5460 +383 79763 0.5170 +383 79814 0.4980 +383 80380 0.5840 +383 80381 0.4710 +383 84666 0.8360 +383 84868 0.7200 +383 85007 0.4610 +383 89782 0.5850 +383 90865 0.5300 +383 91937 0.4190 +383 113451 0.9810 +383 114548 0.4210 +383 123096 0.4010 +383 131450 0.5110 +383 137902 0.5240 +383 140885 0.4880 +383 146433 0.4260 +383 158584 0.4520 +383 162417 0.7220 +383 168400 0.4510 +383 169355 0.7200 +383 196743 0.4100 +383 730249 0.4720 +384 435 0.9750 +384 445 0.8770 +384 790 0.5080 +384 875 0.4190 +384 919 0.4800 +384 920 0.6500 +384 921 0.4350 +384 925 0.6200 +384 940 0.4300 +384 941 0.5670 +384 942 0.5480 +384 945 0.5380 +384 953 0.4060 +384 958 0.4430 +384 968 0.5370 +384 1088 0.4040 +384 1118 0.4850 +384 1373 0.6500 +384 1428 0.7930 +384 1435 0.5070 +384 1436 0.4420 +384 1437 0.5460 +384 1440 0.4320 +384 1491 0.5180 +384 1493 0.5360 +384 1718 0.4780 +384 1725 0.4840 +384 1738 0.6350 +384 1810 0.4240 +384 2034 0.5700 +384 2166 0.4520 +384 2186 0.4990 +384 2271 0.7690 +384 2526 0.4330 +384 2597 0.5050 +384 2628 0.9480 +384 2731 0.4060 +384 2746 0.4540 +384 2752 0.7460 +384 2875 0.4380 +384 3021 0.7430 +384 3034 0.8010 +384 3091 0.5420 +384 3383 0.4180 +384 3458 0.6790 +384 3552 0.5000 +384 3553 0.6600 +384 3558 0.5420 +384 3565 0.6830 +384 3566 0.4860 +384 3569 0.6830 +384 3576 0.4830 +384 3579 0.4160 +384 3586 0.8110 +384 3596 0.6630 +384 3605 0.4850 +384 3620 0.7070 +384 3622 0.6790 +384 3627 0.4520 +384 3630 0.4530 +384 3684 0.6210 +384 3687 0.4790 +384 3714 0.4420 +384 3902 0.4920 +384 4143 0.4120 +384 4144 0.4160 +384 4313 0.4090 +384 4318 0.4770 +384 4321 0.4210 +384 4353 0.4230 +384 4360 0.6720 +384 4481 0.4300 +384 4842 0.9590 +384 4843 0.9700 +384 4846 0.9660 +384 4907 0.4750 +384 4942 0.9990 +384 4953 0.9870 +384 5009 0.9930 +384 5091 0.5370 +384 5175 0.4120 +384 5468 0.4240 +384 5625 0.5800 +384 5743 0.4560 +384 5788 0.4380 +384 5831 0.6870 +384 5832 0.6890 +384 6303 0.4520 +384 6347 0.5780 +384 6348 0.4100 +384 6361 0.4180 +384 6367 0.4620 +384 6387 0.4490 +384 6510 0.4020 +384 6513 0.4340 +384 6541 0.4230 +384 6542 0.8310 +384 6611 0.8560 +384 6615 0.4760 +384 6723 0.8760 +384 6772 0.4460 +384 6774 0.5420 +384 6778 0.5170 +384 6821 0.4480 +384 6881 0.4260 +384 6884 0.5620 +384 6898 0.4090 +384 6908 0.4200 +384 6999 0.4970 +384 7040 0.4710 +384 7099 0.5000 +384 7124 0.6310 +384 7299 0.4190 +384 7412 0.4440 +384 8290 0.7470 +384 8356 0.7520 +384 8424 0.4480 +384 8654 0.4040 +384 8659 0.7260 +384 8862 0.4700 +384 9013 0.4220 +384 9057 0.5060 +384 9332 0.6270 +384 9563 0.4900 +384 10206 0.5080 +384 10993 0.4200 +384 22949 0.4560 +384 23450 0.5560 +384 23564 0.5700 +384 23569 0.5510 +384 23576 0.5470 +384 27159 0.4830 +384 29126 0.6090 +384 50943 0.5560 +384 51015 0.5210 +384 51520 0.4370 +384 51557 0.4890 +384 51582 0.6460 +384 54498 0.5020 +384 54556 0.6070 +384 54583 0.5550 +384 54587 0.5350 +384 55217 0.4380 +384 55278 0.5050 +384 56729 0.4430 +384 58510 0.4340 +384 60496 0.5180 +384 64850 0.4620 +384 64902 0.5930 +384 79763 0.5170 +384 79814 0.5430 +384 80380 0.4530 +384 83860 0.6680 +384 84532 0.4140 +384 84666 0.4760 +384 84868 0.5080 +384 85007 0.4610 +384 89782 0.5760 +384 90865 0.4950 +384 113451 0.9840 +384 123096 0.4260 +384 158584 0.4550 +384 162417 0.7050 +384 169355 0.6340 +384 196743 0.4800 +384 440093 0.7500 +384 440686 0.7510 +384 653604 0.7480 +384 100423062 0.8500 +387 388 0.8210 +387 389 0.9510 +387 390 0.4790 +387 391 0.4610 +387 392 0.9990 +387 393 0.5630 +387 394 0.9920 +387 395 0.7970 +387 396 0.9990 +387 397 0.9950 +387 398 0.9970 +387 408 0.7280 +387 409 0.7340 +387 537 0.6030 +387 558 0.4040 +387 567 0.4150 +387 595 0.5890 +387 596 0.5720 +387 598 0.4170 +387 613 0.7180 +387 627 0.5540 +387 637 0.7820 +387 657 0.4020 +387 659 0.4930 +387 673 0.4980 +387 685 0.5270 +387 708 0.5250 +387 752 0.8210 +387 808 0.8090 +387 810 0.7870 +387 821 0.4070 +387 836 0.6330 +387 841 0.6600 +387 842 0.4190 +387 843 0.4880 +387 857 0.8980 +387 860 0.4780 +387 885 0.4300 +387 889 0.7450 +387 891 0.4020 +387 920 0.4500 +387 949 0.4400 +387 960 0.7830 +387 983 0.5160 +387 988 0.5090 +387 995 0.5770 +387 999 0.7510 +387 1000 0.7790 +387 1001 0.6770 +387 1003 0.6320 +387 1015 0.6720 +387 1017 0.5140 +387 1019 0.5010 +387 1020 0.5670 +387 1021 0.4330 +387 1026 0.6590 +387 1027 0.9770 +387 1029 0.6050 +387 1072 0.9620 +387 1073 0.9070 +387 1123 0.4570 +387 1124 0.4040 +387 1152 0.4200 +387 1268 0.4930 +387 1385 0.7070 +387 1398 0.7550 +387 1400 0.4100 +387 1432 0.7020 +387 1445 0.4920 +387 1464 0.4690 +387 1490 0.5900 +387 1495 0.5230 +387 1499 0.8820 +387 1500 0.9860 +387 1501 0.6290 +387 1508 0.5640 +387 1536 0.4660 +387 1609 0.7520 +387 1612 0.5200 +387 1636 0.4170 +387 1729 0.9940 +387 1730 0.9550 +387 1742 0.7490 +387 1760 0.4170 +387 1785 0.4990 +387 1793 0.8860 +387 1794 0.6620 +387 1795 0.4310 +387 1808 0.5560 +387 1809 0.7790 +387 1839 0.6690 +387 1855 0.7960 +387 1856 0.7170 +387 1857 0.6700 +387 1894 0.9660 +387 1902 0.5100 +387 1903 0.4810 +387 1906 0.6100 +387 1942 0.4730 +387 1943 0.4310 +387 1946 0.4230 +387 1947 0.5290 +387 1948 0.5080 +387 1949 0.4600 +387 1950 0.8740 +387 1956 0.9030 +387 1969 0.5680 +387 2011 0.5950 +387 2017 0.8390 +387 2023 0.4010 +387 2040 0.5760 +387 2041 0.5050 +387 2043 0.4950 +387 2048 0.4390 +387 2050 0.4910 +387 2064 0.7900 +387 2065 0.7040 +387 2066 0.6780 +387 2069 0.5710 +387 2099 0.5060 +387 2100 0.4290 +387 2149 0.6960 +387 2185 0.9520 +387 2245 0.5680 +387 2247 0.5320 +387 2248 0.4250 +387 2249 0.4270 +387 2250 0.4280 +387 2251 0.4240 +387 2252 0.4600 +387 2253 0.4440 +387 2254 0.4500 +387 2255 0.4600 +387 2260 0.5940 +387 2280 0.7040 +387 2316 0.9330 +387 2317 0.7730 +387 2318 0.7720 +387 2319 0.5940 +387 2335 0.7340 +387 2353 0.5380 +387 2475 0.9580 +387 2534 0.9660 +387 2596 0.4440 +387 2597 0.8030 +387 2626 0.9310 +387 2664 0.4080 +387 2665 0.6110 +387 2670 0.4790 +387 2697 0.4940 +387 2767 0.4780 +387 2768 0.9880 +387 2771 0.5110 +387 2776 0.9730 +387 2778 0.4610 +387 2782 0.8740 +387 2783 0.6180 +387 2784 0.5840 +387 2785 0.5220 +387 2786 0.4990 +387 2787 0.6960 +387 2788 0.4990 +387 2790 0.5240 +387 2791 0.5110 +387 2792 0.4990 +387 2793 0.5110 +387 2885 0.5730 +387 2909 0.9980 +387 2911 0.4880 +387 2932 0.6590 +387 2934 0.5030 +387 3021 0.4230 +387 3059 0.7870 +387 3064 0.4180 +387 3082 0.4880 +387 3084 0.6590 +387 3091 0.5550 +387 3146 0.4110 +387 3156 0.6050 +387 3163 0.6020 +387 3172 0.4470 +387 3181 0.4090 +387 3241 0.6480 +387 3265 0.5400 +387 3304 0.5780 +387 3312 0.5770 +387 3315 0.4610 +387 3320 0.7670 +387 3326 0.5450 +387 3383 0.5410 +387 3418 0.4380 +387 3458 0.4340 +387 3479 0.4740 +387 3480 0.4700 +387 3491 0.5060 +387 3553 0.7330 +387 3559 0.9100 +387 3560 0.9040 +387 3561 0.9110 +387 3569 0.6010 +387 3576 0.4450 +387 3611 0.7270 +387 3630 0.5690 +387 3636 0.4900 +387 3643 0.4800 +387 3674 0.5020 +387 3678 0.5240 +387 3685 0.7130 +387 3688 0.8390 +387 3690 0.8110 +387 3708 0.7640 +387 3710 0.6810 +387 3716 0.4840 +387 3717 0.5120 +387 3725 0.8080 +387 3728 0.5730 +387 3791 0.7550 +387 3798 0.5280 +387 3799 0.5960 +387 3827 0.4060 +387 3831 0.5810 +387 3838 0.4560 +387 3845 0.4820 +387 3895 0.9220 +387 3925 0.6590 +387 3930 0.6140 +387 3984 0.9190 +387 3985 0.7790 +387 3998 0.5950 +387 4007 0.4450 +387 4015 0.4930 +387 4036 0.4890 +387 4041 0.5110 +387 4043 0.4220 +387 4052 0.5080 +387 4060 0.4020 +387 4067 0.7590 +387 4082 0.4640 +387 4087 0.7310 +387 4088 0.5500 +387 4089 0.5300 +387 4092 0.4210 +387 4099 0.7890 +387 4155 0.4180 +387 4162 0.5780 +387 4168 0.9940 +387 4193 0.5600 +387 4210 0.7060 +387 4214 0.8610 +387 4215 0.6310 +387 4216 0.5380 +387 4233 0.7930 +387 4301 0.5090 +387 4313 0.5790 +387 4316 0.5350 +387 4318 0.7630 +387 4323 0.5280 +387 4478 0.8990 +387 4486 0.4060 +387 4599 0.4700 +387 4600 0.5240 +387 4609 0.7270 +387 4627 0.7450 +387 4628 0.6760 +387 4629 0.6580 +387 4633 0.8100 +387 4637 0.7390 +387 4649 0.7830 +387 4650 0.9970 +387 4659 0.9940 +387 4660 0.6750 +387 4690 0.4930 +387 4691 0.4750 +387 4735 0.4100 +387 4763 0.5220 +387 4771 0.4850 +387 4790 0.7350 +387 4792 0.6220 +387 4803 0.7490 +387 4804 0.9720 +387 4846 0.5810 +387 4851 0.5550 +387 4853 0.4080 +387 4868 0.4110 +387 4914 0.5120 +387 4915 0.5100 +387 4920 0.4530 +387 4946 0.4590 +387 4974 0.8550 +387 4983 0.7530 +387 5049 0.4110 +387 5054 0.4200 +387 5058 0.6190 +387 5062 0.7010 +387 5159 0.4240 +387 5170 0.6290 +387 5175 0.4840 +387 5216 0.9390 +387 5217 0.6760 +387 5229 0.4040 +387 5230 0.4970 +387 5250 0.4070 +387 5267 0.4570 +387 5290 0.7430 +387 5291 0.6640 +387 5294 0.6870 +387 5295 0.7110 +387 5296 0.6630 +387 5298 0.4060 +387 5328 0.6580 +387 5329 0.6120 +387 5333 0.5620 +387 5335 0.7760 +387 5337 0.9830 +387 5338 0.9400 +387 5341 0.8370 +387 5347 0.5120 +387 5361 0.5030 +387 5364 0.8350 +387 5420 0.4490 +387 5464 0.5410 +387 5467 0.4790 +387 5468 0.5130 +387 5476 0.5900 +387 5500 0.7200 +387 5501 0.5240 +387 5515 0.5990 +387 5523 0.4160 +387 5530 0.4600 +387 5566 0.9670 +387 5567 0.9620 +387 5568 0.9620 +387 5578 0.7340 +387 5580 0.5750 +387 5581 0.4750 +387 5583 0.4140 +387 5584 0.4660 +387 5585 0.9980 +387 5586 0.9920 +387 5587 0.4630 +387 5588 0.4250 +387 5590 0.8570 +387 5592 0.5460 +387 5594 0.5930 +387 5595 0.8330 +387 5598 0.4600 +387 5599 0.9880 +387 5600 0.4630 +387 5601 0.9390 +387 5603 0.4590 +387 5604 0.6690 +387 5605 0.4630 +387 5609 0.5590 +387 5716 0.4150 +387 5728 0.7260 +387 5743 0.4670 +387 5747 0.9830 +387 5753 0.6210 +387 5770 0.4400 +387 5781 0.5490 +387 5782 0.4610 +387 5792 0.5760 +387 5802 0.4700 +387 5818 0.5530 +387 5825 0.5240 +387 5829 0.9650 +387 5877 0.9460 +387 5879 0.7700 +387 5880 0.9400 +387 5881 0.9240 +387 5894 0.9480 +387 5898 0.9300 +387 5899 0.9200 +387 5900 0.9610 +387 5906 0.9280 +387 5908 0.9590 +387 5910 0.9450 +387 5921 0.8130 +387 5923 0.9500 +387 5924 0.8060 +387 5962 0.7180 +387 5972 0.4430 +387 5999 0.4230 +387 6000 0.4090 +387 6001 0.4010 +387 6002 0.4210 +387 6003 0.4050 +387 6010 0.4370 +387 6091 0.6360 +387 6093 0.9990 +387 6185 0.4110 +387 6195 0.4010 +387 6197 0.5680 +387 6198 0.5190 +387 6233 0.8480 +387 6237 0.9270 +387 6242 0.9990 +387 6249 0.4780 +387 6259 0.5410 +387 6275 0.7320 +387 6300 0.4770 +387 6347 0.4860 +387 6385 0.4530 +387 6386 0.4210 +387 6387 0.5170 +387 6416 0.6260 +387 6446 0.4130 +387 6453 0.8290 +387 6461 0.5100 +387 6464 0.4440 +387 6469 0.6700 +387 6472 0.5260 +387 6548 0.4870 +387 6586 0.4220 +387 6591 0.5450 +387 6615 0.6120 +387 6624 0.4270 +387 6654 0.6960 +387 6655 0.7070 +387 6657 0.5670 +387 6662 0.4300 +387 6696 0.4200 +387 6714 0.9920 +387 6722 0.7760 +387 6774 0.6220 +387 6786 0.4250 +387 6793 0.7050 +387 6811 0.6180 +387 6850 0.7410 +387 6876 0.4100 +387 6885 0.4040 +387 7010 0.4390 +387 7037 0.6260 +387 7040 0.8340 +387 7041 0.4550 +387 7042 0.4180 +387 7046 0.7940 +387 7048 0.9520 +387 7057 0.4220 +387 7074 0.9060 +387 7076 0.4310 +387 7082 0.6700 +387 7094 0.7880 +387 7099 0.5090 +387 7112 0.5030 +387 7122 0.4620 +387 7124 0.7790 +387 7126 0.4520 +387 7132 0.6270 +387 7157 0.6620 +387 7204 0.8940 +387 7205 0.5790 +387 7220 0.8270 +387 7225 0.6500 +387 7249 0.4860 +387 7291 0.4360 +387 7297 0.5220 +387 7311 0.5890 +387 7314 0.8930 +387 7316 0.7340 +387 7408 0.6480 +387 7409 0.9890 +387 7410 0.9810 +387 7412 0.5010 +387 7414 0.8520 +387 7415 0.4140 +387 7430 0.8970 +387 7431 0.6350 +387 7448 0.4510 +387 7450 0.4190 +387 7454 0.8310 +387 7469 0.5910 +387 7471 0.4130 +387 7474 0.5990 +387 7481 0.5120 +387 7484 0.4670 +387 7525 0.6920 +387 7529 0.4610 +387 7532 0.4140 +387 7534 0.6870 +387 7791 0.5650 +387 7803 0.5030 +387 7827 0.4040 +387 7837 0.6250 +387 7852 0.6080 +387 7879 0.6000 +387 7984 0.8340 +387 8086 0.5660 +387 8289 0.4040 +387 8312 0.6610 +387 8323 0.4110 +387 8324 0.5920 +387 8394 0.9220 +387 8395 0.9210 +387 8428 0.4020 +387 8452 0.8580 +387 8476 0.8210 +387 8490 0.4060 +387 8502 0.4910 +387 8517 0.4700 +387 8525 0.4780 +387 8600 0.4080 +387 8601 0.4050 +387 8650 0.4390 +387 8654 0.5060 +387 8678 0.4520 +387 8727 0.6010 +387 8737 0.5410 +387 8772 0.8100 +387 8773 0.6990 +387 8786 0.4200 +387 8795 0.5930 +387 8817 0.4250 +387 8822 0.4380 +387 8823 0.4500 +387 8826 0.8800 +387 8874 0.7270 +387 8936 0.4620 +387 8976 0.6790 +387 8987 0.5630 +387 8997 0.7380 +387 9055 0.5440 +387 9113 0.4850 +387 9138 0.9970 +387 9170 0.4400 +387 9175 0.5040 +387 9181 0.9990 +387 9212 0.4740 +387 9217 0.6090 +387 9270 0.5950 +387 9290 0.6400 +387 9294 0.7070 +387 9341 0.6980 +387 9353 0.7180 +387 9368 0.6000 +387 9411 0.8160 +387 9414 0.6800 +387 9423 0.4670 +387 9451 0.4820 +387 9455 0.4070 +387 9456 0.4650 +387 9459 0.6910 +387 9475 0.9980 +387 9493 0.7140 +387 9542 0.5470 +387 9564 0.7640 +387 9578 0.5610 +387 9600 0.7390 +387 9628 0.4130 +387 9639 0.7330 +387 9644 0.4240 +387 9651 0.4480 +387 9743 0.9110 +387 9748 0.5610 +387 9750 0.9050 +387 9754 0.8660 +387 9824 0.7360 +387 9826 0.9990 +387 9828 0.8410 +387 9839 0.4370 +387 9844 0.6830 +387 9912 0.5170 +387 9928 0.7380 +387 9948 0.4470 +387 9978 0.4780 +387 10013 0.7260 +387 10023 0.7690 +387 10092 0.5300 +387 10094 0.4300 +387 10096 0.5580 +387 10097 0.6470 +387 10101 0.7220 +387 10109 0.4200 +387 10134 0.6010 +387 10144 0.5140 +387 10154 0.4890 +387 10160 0.6080 +387 10163 0.5020 +387 10190 0.5410 +387 10207 0.5960 +387 10211 0.6180 +387 10226 0.4750 +387 10256 0.7940 +387 10276 0.9870 +387 10287 0.4260 +387 10298 0.5400 +387 10332 0.9080 +387 10371 0.6780 +387 10376 0.4600 +387 10395 0.9030 +387 10398 0.8280 +387 10399 0.4980 +387 10411 0.5700 +387 10413 0.4800 +387 10424 0.6150 +387 10451 0.9750 +387 10458 0.6660 +387 10507 0.7320 +387 10565 0.5220 +387 10627 0.4820 +387 10633 0.6470 +387 10652 0.6360 +387 10672 0.9910 +387 10681 0.6120 +387 10718 0.4990 +387 10763 0.4200 +387 10788 0.4140 +387 10971 0.4350 +387 11034 0.4430 +387 11069 0.5370 +387 11113 0.8450 +387 11155 0.4550 +387 11186 0.6430 +387 11214 0.9990 +387 11235 0.7290 +387 11252 0.5800 +387 11346 0.6310 +387 22836 0.5010 +387 22846 0.4030 +387 22899 0.8480 +387 22919 0.4550 +387 22924 0.4010 +387 22941 0.5390 +387 23002 0.9960 +387 23092 0.9180 +387 23129 0.5460 +387 23164 0.9930 +387 23189 0.5970 +387 23197 0.5810 +387 23229 0.7510 +387 23256 0.5810 +387 23263 0.8740 +387 23265 0.4320 +387 23353 0.4260 +387 23365 0.9990 +387 23370 0.9850 +387 23380 0.4070 +387 23396 0.9320 +387 23405 0.4130 +387 23463 0.5460 +387 23499 0.4300 +387 23500 0.9440 +387 23513 0.5490 +387 23526 0.6200 +387 23533 0.5590 +387 23560 0.4940 +387 23654 0.6810 +387 23779 0.7340 +387 25777 0.4130 +387 25791 0.9850 +387 25865 0.4010 +387 25894 0.6750 +387 25921 0.4300 +387 25959 0.5470 +387 25963 0.5770 +387 26030 0.5530 +387 26084 0.6230 +387 26230 0.6890 +387 26281 0.4610 +387 26499 0.8210 +387 26575 0.4040 +387 26986 0.4330 +387 27006 0.4470 +387 27035 0.4280 +387 27237 0.5770 +387 27289 0.9090 +387 28964 0.4160 +387 28984 0.4010 +387 29109 0.4630 +387 29127 0.9790 +387 29941 0.8910 +387 29964 0.4420 +387 29984 0.4510 +387 30011 0.5070 +387 30835 0.9180 +387 30851 0.7730 +387 50507 0.4670 +387 50618 0.7130 +387 50619 0.6660 +387 50649 0.8900 +387 50650 0.8880 +387 50848 0.8770 +387 50855 0.6850 +387 51072 0.6030 +387 51176 0.4200 +387 51196 0.9440 +387 51208 0.4630 +387 51291 0.8750 +387 51466 0.5800 +387 51474 0.6670 +387 51764 0.4990 +387 51806 0.7870 +387 54101 0.5110 +387 54205 0.4320 +387 54331 0.7000 +387 54434 0.4670 +387 54443 0.9990 +387 54763 0.5460 +387 54848 0.4950 +387 54922 0.4170 +387 55004 0.5920 +387 55107 0.5070 +387 55114 0.6200 +387 55160 0.7070 +387 55200 0.8530 +387 55219 0.5630 +387 55504 0.4300 +387 55611 0.7010 +387 55701 0.5380 +387 55763 0.5540 +387 55770 0.4130 +387 55789 0.5740 +387 55831 0.5810 +387 55852 0.5620 +387 55914 0.5880 +387 55970 0.5240 +387 56288 0.7240 +387 56776 0.5800 +387 56904 0.4120 +387 56924 0.4160 +387 57142 0.8110 +387 57144 0.6630 +387 57154 0.9880 +387 57216 0.5160 +387 57381 0.6080 +387 57449 0.7920 +387 57496 0.8060 +387 57514 0.8050 +387 57521 0.4100 +387 57522 0.8350 +387 57530 0.9270 +387 57569 0.9660 +387 57580 0.7890 +387 57584 0.8330 +387 57591 0.8870 +387 57636 0.6420 +387 57647 0.4030 +387 57826 0.9330 +387 58157 0.6420 +387 58480 0.6170 +387 58504 0.7420 +387 59345 0.6370 +387 60412 0.4240 +387 63916 0.6600 +387 64130 0.7130 +387 64283 0.9890 +387 64398 0.5840 +387 64411 0.9880 +387 64423 0.6320 +387 64750 0.9000 +387 64783 0.4390 +387 64837 0.5660 +387 64857 0.7530 +387 65078 0.6410 +387 65124 0.5960 +387 65992 0.5640 +387 78990 0.5080 +387 79567 0.5740 +387 79658 0.9150 +387 79784 0.5390 +387 79822 0.6200 +387 80223 0.4320 +387 80243 0.7930 +387 80728 0.5700 +387 81624 0.9650 +387 81839 0.7640 +387 83478 0.7890 +387 83544 0.6310 +387 83605 0.8190 +387 83660 0.7740 +387 84033 0.7150 +387 84317 0.6010 +387 84552 0.4770 +387 84612 0.5270 +387 84790 0.4180 +387 84894 0.9060 +387 84904 0.4380 +387 84952 0.4060 +387 84986 0.8530 +387 85358 0.4340 +387 85415 0.9150 +387 85477 0.4960 +387 89780 0.4830 +387 89839 0.6680 +387 89846 0.4280 +387 89953 0.5670 +387 90627 0.9400 +387 91010 0.7090 +387 91452 0.4940 +387 91584 0.4650 +387 91807 0.6720 +387 91860 0.7600 +387 93649 0.6330 +387 93663 0.6930 +387 94235 0.4990 +387 94274 0.8070 +387 103910 0.8700 +387 114793 0.5150 +387 114822 0.9200 +387 115557 0.9970 +387 116984 0.6540 +387 116985 0.5250 +387 117289 0.5210 +387 120892 0.7790 +387 121512 0.5070 +387 128239 0.6550 +387 128272 0.8690 +387 133482 0.6120 +387 133619 0.4320 +387 137902 0.6150 +387 140876 0.5030 +387 143872 0.5710 +387 144100 0.4050 +387 144165 0.6570 +387 145957 0.5350 +387 146850 0.4990 +387 147700 0.5650 +387 149428 0.6620 +387 154796 0.6120 +387 157285 0.4760 +387 158763 0.4090 +387 163688 0.7600 +387 163782 0.4510 +387 166336 0.4520 +387 203068 0.4230 +387 219790 0.5560 +387 221178 0.6240 +387 222545 0.4070 +387 253260 0.4760 +387 253980 0.6930 +387 257106 0.5180 +387 284119 0.6170 +387 284403 0.4220 +387 285282 0.5690 +387 342184 0.5640 +387 343578 0.6310 +387 345456 0.7760 +387 347273 0.5140 +387 349667 0.4020 +387 375189 0.8170 +387 389337 0.5000 +387 402569 0.4150 +387 431704 0.4210 +387 445328 0.4060 +387 653361 0.4580 +387 100271715 0.5100 +387 100506658 0.6260 +388 389 0.6350 +388 392 0.7240 +388 394 0.7180 +388 396 0.9010 +388 397 0.6630 +388 398 0.9530 +388 399 0.9280 +388 408 0.4090 +388 467 0.4050 +388 613 0.6520 +388 677 0.4120 +388 857 0.6760 +388 995 0.5230 +388 1000 0.4280 +388 1027 0.6080 +388 1029 0.4070 +388 1072 0.7090 +388 1073 0.7120 +388 1277 0.4810 +388 1499 0.4710 +388 1729 0.8950 +388 1730 0.4500 +388 1742 0.5980 +388 1793 0.4060 +388 1843 0.4740 +388 1848 0.4160 +388 1855 0.4530 +388 1894 0.7930 +388 1902 0.4710 +388 1956 0.5130 +388 1958 0.6180 +388 2034 0.4750 +388 2040 0.6030 +388 2064 0.7480 +388 2245 0.4770 +388 2319 0.5690 +388 2353 0.5130 +388 2487 0.4320 +388 2597 0.4010 +388 2768 0.6660 +388 2908 0.5420 +388 2909 0.8620 +388 3326 0.5150 +388 3655 0.4500 +388 3725 0.5190 +388 3728 0.6300 +388 3984 0.7250 +388 3985 0.6550 +388 4130 0.4900 +388 4162 0.8890 +388 4168 0.6810 +388 4478 0.4510 +388 4609 0.4030 +388 4627 0.5950 +388 4628 0.5560 +388 4629 0.5680 +388 4637 0.6470 +388 4649 0.5970 +388 4650 0.7180 +388 4659 0.7100 +388 4660 0.5830 +388 4751 0.4310 +388 4983 0.4850 +388 5170 0.5840 +388 5216 0.6290 +388 5295 0.5590 +388 5296 0.5280 +388 5364 0.5960 +388 5493 0.5390 +388 5500 0.6310 +388 5515 0.6250 +388 5580 0.4400 +388 5581 0.6430 +388 5583 0.4250 +388 5585 0.9270 +388 5586 0.7830 +388 5604 0.4260 +388 5728 0.4860 +388 5829 0.4770 +388 5877 0.4950 +388 5879 0.7240 +388 5906 0.5080 +388 5910 0.4510 +388 5921 0.4530 +388 5924 0.5020 +388 6093 0.9460 +388 6242 0.9000 +388 6453 0.7660 +388 6654 0.5540 +388 6655 0.5410 +388 6696 0.4300 +388 6714 0.5390 +388 6793 0.5690 +388 6850 0.5990 +388 7037 0.6080 +388 7074 0.7360 +388 7126 0.6580 +388 7130 0.5080 +388 7157 0.4270 +388 7204 0.6530 +388 7249 0.5760 +388 7295 0.5160 +388 7409 0.6580 +388 7410 0.7160 +388 7412 0.4780 +388 7414 0.4030 +388 7454 0.4020 +388 7474 0.4810 +388 7533 0.5310 +388 7832 0.4640 +388 7976 0.5720 +388 7984 0.4960 +388 8476 0.5520 +388 8773 0.6140 +388 8826 0.4800 +388 8874 0.5630 +388 8997 0.5830 +388 9055 0.5220 +388 9138 0.9010 +388 9181 0.8980 +388 9341 0.6240 +388 9414 0.6260 +388 9459 0.5420 +388 9475 0.8470 +388 9578 0.5150 +388 9639 0.5790 +388 9743 0.6300 +388 9748 0.6530 +388 9754 0.6650 +388 9826 0.7920 +388 9828 0.5390 +388 9928 0.5790 +388 9978 0.4120 +388 10211 0.5650 +388 10276 0.7230 +388 10298 0.4270 +388 10365 0.4010 +388 10395 0.6710 +388 10398 0.6910 +388 10451 0.6480 +388 10507 0.5360 +388 10672 0.7120 +388 11113 0.8040 +388 11119 0.5270 +388 11214 0.6540 +388 22899 0.4090 +388 23002 0.7770 +388 23092 0.4760 +388 23143 0.5810 +388 23229 0.5510 +388 23263 0.5730 +388 23365 0.8100 +388 23370 0.7070 +388 23433 0.4800 +388 25791 0.5730 +388 26084 0.6110 +388 26230 0.6490 +388 27237 0.5140 +388 27250 0.4150 +388 27289 0.5590 +388 29127 0.6200 +388 29941 0.7510 +388 30851 0.5530 +388 50618 0.6070 +388 50649 0.5180 +388 50650 0.9480 +388 50855 0.4810 +388 51314 0.5980 +388 54443 0.7120 +388 54509 0.4110 +388 54848 0.4810 +388 54936 0.4470 +388 55160 0.4910 +388 55327 0.4120 +388 55701 0.4420 +388 55763 0.4830 +388 55789 0.5750 +388 55914 0.5910 +388 56288 0.5000 +388 57154 0.6290 +388 57449 0.5000 +388 57530 0.5260 +388 57580 0.6190 +388 57584 0.5120 +388 57674 0.4190 +388 64130 0.5040 +388 64283 0.7490 +388 64857 0.4500 +388 65124 0.6140 +388 79567 0.7310 +388 79784 0.5180 +388 80213 0.5540 +388 80728 0.5330 +388 81624 0.9350 +388 81839 0.5930 +388 83892 0.5530 +388 84033 0.4310 +388 84144 0.4230 +388 84904 0.4380 +388 85360 0.4490 +388 85415 0.9290 +388 89846 0.4080 +388 90627 0.6650 +388 91010 0.4600 +388 94274 0.5810 +388 103910 0.6780 +388 114793 0.4750 +388 115557 0.5800 +388 121512 0.4410 +388 128239 0.6260 +388 149986 0.4120 +388 284119 0.5840 +388 345456 0.5500 +388 375189 0.6320 +388 389337 0.4870 +388 100271715 0.4920 +389 392 0.8910 +389 394 0.7100 +389 396 0.9870 +389 397 0.8280 +389 398 0.8810 +389 595 0.4100 +389 613 0.6560 +389 708 0.5710 +389 857 0.7740 +389 947 0.4050 +389 960 0.4360 +389 995 0.5150 +389 999 0.5240 +389 1000 0.4750 +389 1017 0.4340 +389 1027 0.6150 +389 1072 0.7970 +389 1073 0.7880 +389 1173 0.4110 +389 1277 0.4910 +389 1435 0.4610 +389 1436 0.4160 +389 1499 0.4480 +389 1729 0.9730 +389 1742 0.5710 +389 1760 0.4110 +389 1894 0.8230 +389 1956 0.5420 +389 2017 0.4430 +389 2040 0.5970 +389 2064 0.7210 +389 2245 0.5000 +389 2319 0.5830 +389 2335 0.4320 +389 2597 0.4360 +389 2720 0.4280 +389 2768 0.6870 +389 2771 0.4390 +389 2778 0.4140 +389 2783 0.4300 +389 2909 0.8910 +389 3059 0.4400 +389 3236 0.8190 +389 3690 0.4360 +389 3691 0.4410 +389 3693 0.5050 +389 3725 0.5060 +389 3728 0.5980 +389 3930 0.5890 +389 3984 0.7630 +389 3985 0.7180 +389 3998 0.5730 +389 4162 0.7330 +389 4168 0.6890 +389 4233 0.5500 +389 4313 0.4300 +389 4318 0.4680 +389 4323 0.4540 +389 4478 0.4500 +389 4609 0.4050 +389 4627 0.6010 +389 4628 0.5760 +389 4629 0.5410 +389 4637 0.6510 +389 4650 0.7360 +389 4659 0.7300 +389 4660 0.5800 +389 4851 0.4010 +389 4983 0.5020 +389 5058 0.4170 +389 5062 0.6250 +389 5170 0.5800 +389 5216 0.8910 +389 5217 0.5810 +389 5295 0.5440 +389 5329 0.4020 +389 5364 0.6280 +389 5476 0.6500 +389 5500 0.6380 +389 5580 0.4890 +389 5581 0.4070 +389 5583 0.4120 +389 5585 0.8750 +389 5586 0.8640 +389 5595 0.4420 +389 5728 0.4350 +389 5747 0.4010 +389 5782 0.5570 +389 5825 0.5890 +389 5829 0.5060 +389 5877 0.5100 +389 5879 0.7040 +389 5881 0.4260 +389 5910 0.8270 +389 5921 0.4470 +389 5924 0.7160 +389 5962 0.4250 +389 6093 0.9540 +389 6237 0.4100 +389 6242 0.9520 +389 6453 0.7550 +389 6591 0.4140 +389 6615 0.4180 +389 6654 0.5730 +389 6655 0.5090 +389 6714 0.5040 +389 6793 0.5640 +389 6811 0.6070 +389 7037 0.5670 +389 7041 0.4130 +389 7057 0.4550 +389 7074 0.7100 +389 7112 0.5820 +389 7157 0.4550 +389 7170 0.4430 +389 7204 0.6470 +389 7205 0.4670 +389 7291 0.4080 +389 7409 0.6220 +389 7410 0.6390 +389 7414 0.4280 +389 7430 0.4450 +389 7454 0.4280 +389 7532 0.4440 +389 7533 0.6360 +389 7803 0.4530 +389 7852 0.4080 +389 7879 0.5360 +389 7984 0.4830 +389 8476 0.5790 +389 8826 0.7540 +389 8838 0.4790 +389 8874 0.6010 +389 8976 0.6660 +389 8997 0.5630 +389 9055 0.5220 +389 9138 0.8710 +389 9181 0.8970 +389 9217 0.5910 +389 9341 0.6570 +389 9414 0.6290 +389 9459 0.5550 +389 9475 0.8830 +389 9493 0.4140 +389 9578 0.4670 +389 9639 0.5420 +389 9644 0.4290 +389 9743 0.5250 +389 9748 0.6000 +389 9750 0.4490 +389 9754 0.4070 +389 9805 0.4120 +389 9826 0.9500 +389 9828 0.5440 +389 9928 0.5780 +389 10093 0.4670 +389 10094 0.4630 +389 10096 0.5340 +389 10097 0.7680 +389 10121 0.4170 +389 10211 0.5760 +389 10276 0.6850 +389 10298 0.4130 +389 10395 0.7030 +389 10398 0.7200 +389 10451 0.5900 +389 10507 0.5690 +389 10672 0.7010 +389 11113 0.7780 +389 11214 0.6530 +389 22836 0.4160 +389 22899 0.4330 +389 23002 0.8990 +389 23092 0.4760 +389 23229 0.5330 +389 23263 0.5970 +389 23365 0.9410 +389 23370 0.6720 +389 23500 0.5470 +389 25791 0.4600 +389 26084 0.4660 +389 26230 0.5690 +389 27237 0.4890 +389 27289 0.5550 +389 29127 0.6400 +389 29941 0.9070 +389 30851 0.6290 +389 50618 0.6120 +389 50649 0.5310 +389 50650 0.9080 +389 54443 0.7920 +389 54848 0.4810 +389 55160 0.4480 +389 55219 0.5630 +389 55619 0.5660 +389 55701 0.4780 +389 55763 0.4850 +389 55789 0.5630 +389 55860 0.4260 +389 55914 0.5790 +389 56924 0.4050 +389 57449 0.5010 +389 57530 0.5780 +389 57580 0.6330 +389 57584 0.5730 +389 57669 0.5570 +389 64130 0.5590 +389 64283 0.8140 +389 64857 0.4410 +389 79567 0.7430 +389 79784 0.5190 +389 80728 0.5320 +389 81624 0.7660 +389 81839 0.5940 +389 84033 0.4310 +389 84708 0.5900 +389 84904 0.4380 +389 90627 0.7080 +389 91010 0.9180 +389 91452 0.5780 +389 93663 0.6600 +389 94274 0.5640 +389 103910 0.7170 +389 114793 0.9750 +389 115557 0.5720 +389 121512 0.4320 +389 128239 0.6670 +389 128272 0.4110 +389 140876 0.4170 +389 219790 0.5630 +389 221472 0.4010 +389 222484 0.4240 +389 255738 0.8320 +389 284119 0.6120 +389 375189 0.4740 +389 389337 0.4690 +389 399693 0.5700 +389 445328 0.4470 +389 100271715 0.5090 +390 394 0.9200 +390 396 0.6680 +390 397 0.5940 +390 398 0.5590 +390 667 0.6280 +390 857 0.7050 +390 1072 0.7600 +390 1073 0.7650 +390 1152 0.5700 +390 1362 0.5630 +390 1500 0.4480 +390 1729 0.4040 +390 1828 0.5220 +390 1832 0.6310 +390 1894 0.5410 +390 1956 0.4930 +390 1969 0.7130 +390 2319 0.5680 +390 2909 0.9860 +390 3491 0.4610 +390 3895 0.5930 +390 4233 0.4170 +390 4301 0.4470 +390 4493 0.4200 +390 4659 0.4710 +390 4851 0.6970 +390 5170 0.6480 +390 5295 0.6010 +390 5296 0.5850 +390 5364 0.9410 +390 5585 0.4650 +390 5586 0.4280 +390 5588 0.6200 +390 5783 0.6390 +390 6093 0.9990 +390 6453 0.5750 +390 6502 0.5660 +390 7074 0.6380 +390 7126 0.7550 +390 7529 0.5150 +390 7531 0.4640 +390 7534 0.6000 +390 8301 0.5660 +390 8476 0.6330 +390 8502 0.6180 +390 8915 0.4090 +390 9181 0.4010 +390 9231 0.6120 +390 9352 0.5760 +390 9462 0.6270 +390 9475 0.7740 +390 9578 0.4840 +390 9794 0.5720 +390 9826 0.4250 +390 10276 0.4230 +390 10398 0.4040 +390 10505 0.6130 +390 10769 0.4400 +390 10892 0.4290 +390 10970 0.6330 +390 11180 0.5690 +390 11188 0.5650 +390 22836 0.4780 +390 22852 0.5980 +390 23365 0.4300 +390 23513 0.6040 +390 23592 0.5660 +390 23654 0.9050 +390 27022 0.4120 +390 27316 0.5990 +390 29766 0.5460 +390 50618 0.5620 +390 50650 0.4720 +390 54514 0.5820 +390 55704 0.5710 +390 55763 0.4530 +390 55789 0.5730 +390 56667 0.5890 +390 57216 0.5920 +390 57449 0.9530 +390 57584 0.5790 +390 64283 0.4260 +390 81624 0.4120 +390 81839 0.5940 +390 83892 0.4100 +390 84433 0.4280 +390 91544 0.9570 +390 146779 0.4620 +390 222584 0.5770 +390 253980 0.7310 +390 347902 0.4410 +390 375287 0.7290 +391 392 0.7440 +391 394 0.5500 +391 396 0.9860 +391 397 0.8060 +391 398 0.9150 +391 575 0.5780 +391 752 0.4320 +391 857 0.6050 +391 1072 0.5450 +391 1073 0.4780 +391 1398 0.4730 +391 1445 0.4780 +391 1612 0.4070 +391 1659 0.4960 +391 1717 0.4170 +391 1729 0.4300 +391 1793 0.9990 +391 1794 0.8100 +391 1795 0.7900 +391 1829 0.5540 +391 1894 0.4300 +391 1969 0.7320 +391 2010 0.5620 +391 2017 0.4880 +391 2768 0.4220 +391 2909 0.6770 +391 3059 0.5900 +391 3123 0.4810 +391 3336 0.5890 +391 3611 0.6320 +391 3688 0.6490 +391 3689 0.4360 +391 3798 0.5150 +391 3799 0.5190 +391 3831 0.6030 +391 3895 0.9090 +391 3930 0.5820 +391 3954 0.5690 +391 3984 0.4030 +391 3998 0.5790 +391 4046 0.4190 +391 4067 0.4260 +391 4162 0.5580 +391 4168 0.8500 +391 4296 0.7480 +391 4478 0.4110 +391 4698 0.5700 +391 4722 0.5740 +391 4803 0.5130 +391 4893 0.4950 +391 4907 0.5060 +391 4952 0.4090 +391 4983 0.5340 +391 5058 0.5200 +391 5062 0.7110 +391 5170 0.5470 +391 5216 0.4500 +391 5290 0.7180 +391 5291 0.9600 +391 5293 0.6040 +391 5295 0.5200 +391 5296 0.4920 +391 5337 0.5560 +391 5341 0.5140 +391 5585 0.4420 +391 5586 0.4180 +391 5595 0.4040 +391 5606 0.4390 +391 5829 0.4560 +391 5877 0.6610 +391 5879 0.7100 +391 5880 0.6280 +391 5921 0.5470 +391 6093 0.6660 +391 6453 0.7790 +391 6472 0.5850 +391 6688 0.5730 +391 6714 0.4600 +391 6811 0.6160 +391 6850 0.6520 +391 7037 0.5710 +391 7074 0.6600 +391 7112 0.5650 +391 7169 0.4810 +391 7204 0.8380 +391 7205 0.5650 +391 7408 0.4710 +391 7409 0.8600 +391 7410 0.8900 +391 7444 0.5610 +391 7454 0.7150 +391 7465 0.4200 +391 7791 0.4480 +391 7879 0.7850 +391 7984 0.7980 +391 8503 0.4140 +391 8826 0.4950 +391 8871 0.4460 +391 8874 0.5820 +391 8976 0.5830 +391 8987 0.5520 +391 8997 0.9210 +391 9138 0.5540 +391 9181 0.4900 +391 9217 0.5670 +391 9341 0.6920 +391 9475 0.4130 +391 9710 0.6290 +391 9732 0.7760 +391 9743 0.6770 +391 9844 0.9970 +391 9986 0.4180 +391 10000 0.5740 +391 10152 0.5230 +391 10163 0.5660 +391 10298 0.7410 +391 10424 0.5550 +391 10451 0.8950 +391 10458 0.6520 +391 10533 0.4150 +391 10652 0.5700 +391 10787 0.4980 +391 10788 0.7850 +391 11135 0.5530 +391 11151 0.5760 +391 11214 0.5860 +391 23002 0.4320 +391 23011 0.5100 +391 23141 0.5840 +391 23191 0.5910 +391 23229 0.4340 +391 23263 0.4670 +391 23268 0.4540 +391 23344 0.5520 +391 23348 0.5510 +391 23365 0.4620 +391 23380 0.4330 +391 23463 0.4230 +391 23592 0.5470 +391 23647 0.4920 +391 26030 0.6390 +391 26084 0.9710 +391 26230 0.4170 +391 26286 0.6190 +391 26499 0.4820 +391 26999 0.5420 +391 27102 0.4600 +391 27237 0.7620 +391 29109 0.5440 +391 29978 0.4590 +391 50618 0.6380 +391 50640 0.4140 +391 50649 0.4610 +391 50650 0.6850 +391 51454 0.5960 +391 51763 0.4110 +391 54848 0.4250 +391 55004 0.6200 +391 55200 0.7270 +391 55243 0.4390 +391 55619 0.4900 +391 55764 0.4450 +391 55789 0.5500 +391 55914 0.5820 +391 56924 0.4110 +391 57144 0.6750 +391 57480 0.4580 +391 57572 0.4500 +391 57580 0.7710 +391 57584 0.5180 +391 57647 0.4170 +391 63916 0.9990 +391 64837 0.5810 +391 79767 0.9550 +391 80005 0.8140 +391 80243 0.6480 +391 80728 0.5660 +391 81624 0.7220 +391 81704 0.4160 +391 81839 0.6020 +391 84144 0.4400 +391 84612 0.4120 +391 85360 0.4520 +391 85440 0.4540 +391 89941 0.5230 +391 89953 0.5530 +391 92106 0.4120 +391 93649 0.4660 +391 114907 0.4170 +391 115557 0.5390 +391 139818 0.4060 +391 143098 0.5890 +391 147700 0.5650 +391 170954 0.4310 +391 221178 0.4380 +391 255520 0.4020 +391 375189 0.4190 +392 396 0.7110 +392 613 0.4590 +392 832 0.4440 +392 857 0.5040 +392 1072 0.4340 +392 1627 0.4440 +392 1729 0.5280 +392 1730 0.5730 +392 1894 0.6870 +392 2040 0.4050 +392 2245 0.4930 +392 2319 0.4380 +392 2697 0.4250 +392 3635 0.4350 +392 3728 0.4010 +392 4001 0.4310 +392 4168 0.6230 +392 4650 0.5460 +392 4952 0.7600 +392 5058 0.5530 +392 5062 0.6680 +392 5063 0.5150 +392 5295 0.4940 +392 5341 0.7330 +392 5361 0.4320 +392 5364 0.4470 +392 5585 0.4830 +392 5586 0.4520 +392 5782 0.4520 +392 5783 0.5050 +392 5879 0.8550 +392 5880 0.6800 +392 5881 0.5240 +392 5898 0.5710 +392 5921 0.9140 +392 6091 0.6570 +392 6093 0.5750 +392 6242 0.5980 +392 6453 0.4150 +392 6585 0.5330 +392 6586 0.5670 +392 6714 0.5450 +392 6793 0.4300 +392 7037 0.6230 +392 7112 0.4900 +392 7454 0.7590 +392 7803 0.5530 +392 7879 0.4470 +392 8153 0.6400 +392 8476 0.5230 +392 8766 0.4240 +392 8773 0.4090 +392 8826 0.7020 +392 8871 0.4180 +392 8874 0.5770 +392 8936 0.5110 +392 8976 0.7620 +392 9181 0.4120 +392 9322 0.8760 +392 9341 0.4400 +392 9414 0.4390 +392 9475 0.5240 +392 9493 0.6000 +392 9497 0.4230 +392 9578 0.4420 +392 9685 0.4680 +392 9815 0.5070 +392 9912 0.5050 +392 10066 0.5880 +392 10160 0.4230 +392 10207 0.6980 +392 10211 0.4300 +392 10298 0.4530 +392 10395 0.4050 +392 10409 0.4040 +392 11060 0.4210 +392 11113 0.4050 +392 11135 0.5000 +392 23002 0.4640 +392 23039 0.4890 +392 23048 0.5140 +392 23344 0.4580 +392 23433 0.6660 +392 23513 0.4900 +392 23607 0.4910 +392 26092 0.4080 +392 26260 0.5430 +392 26499 0.7330 +392 27134 0.4290 +392 28964 0.5340 +392 29127 0.4530 +392 29843 0.4090 +392 29941 0.6790 +392 29984 0.6810 +392 50618 0.4780 +392 51763 0.5350 +392 54443 0.5760 +392 54509 0.6560 +392 54768 0.4110 +392 54820 0.4590 +392 54874 0.5990 +392 55004 0.4300 +392 55114 0.6240 +392 55615 0.4930 +392 55789 0.6360 +392 55971 0.4260 +392 56288 0.6600 +392 56623 0.5380 +392 56924 0.4930 +392 57381 0.6140 +392 57522 0.4070 +392 58497 0.4040 +392 60314 0.4010 +392 64398 0.6690 +392 79096 0.5450 +392 79137 0.6010 +392 79180 0.4160 +392 79797 0.5020 +392 80728 0.4880 +392 81565 0.8680 +392 81624 0.4780 +392 84975 0.4380 +392 90627 0.4210 +392 91010 0.4380 +392 128239 0.5360 +392 139628 0.4030 +392 147179 0.4380 +392 149428 0.6800 +392 154796 0.8640 +392 284119 0.4600 +392 445582 0.4820 +393 554 0.8800 +393 752 0.4560 +393 4542 0.4740 +393 5330 0.4490 +393 5879 0.6620 +393 5973 0.4210 +393 6091 0.4800 +393 7454 0.7170 +393 7803 0.5010 +393 8976 0.5260 +393 9051 0.4460 +393 9322 0.4520 +393 9744 0.4160 +393 11151 0.5950 +393 23048 0.4520 +393 23149 0.4570 +393 23268 0.4170 +393 23526 0.4400 +393 29993 0.4010 +393 64926 0.4180 +393 80746 0.4760 +393 83706 0.4180 +393 89848 0.5760 +393 92154 0.4150 +393 253959 0.6220 +393 257106 0.4840 +393 374403 0.4210 +393 389337 0.4740 +394 1015 0.5790 +394 1500 0.7460 +394 1501 0.7870 +394 2909 0.9060 +394 3678 0.5310 +394 3688 0.4460 +394 5829 0.4050 +394 5879 0.5410 +394 5881 0.4990 +394 6093 0.4230 +394 6714 0.9690 +394 7070 0.9000 +394 8153 0.7350 +394 9044 0.4520 +394 10787 0.4650 +394 23254 0.7400 +394 23433 0.5820 +394 23469 0.4330 +394 27289 0.8070 +394 29984 0.5380 +394 54509 0.6070 +394 56339 0.6230 +394 57381 0.5100 +394 64750 0.4620 +394 93323 0.4070 +394 157769 0.4650 +394 253959 0.4930 +395 652 0.4270 +395 2202 0.4110 +395 2766 0.4380 +395 3052 0.9290 +395 3778 0.4220 +395 3832 0.4230 +395 4259 0.4160 +395 5230 0.5330 +395 5791 0.4440 +395 5881 0.5530 +395 6736 0.4590 +395 7272 0.4380 +395 8404 0.4170 +395 9700 0.4370 +395 10007 0.4280 +395 10117 0.4310 +395 10943 0.5160 +395 25972 0.4330 +395 51208 0.5940 +395 54205 0.5210 +395 54959 0.4400 +395 57863 0.4080 +395 259266 0.5620 +396 397 0.9070 +396 398 0.9110 +396 399 0.8920 +396 402 0.4140 +396 403 0.4440 +396 637 0.4730 +396 673 0.4720 +396 706 0.4970 +396 760 0.4130 +396 836 0.5710 +396 840 0.4720 +396 841 0.5260 +396 843 0.5000 +396 857 0.5610 +396 960 0.5660 +396 999 0.5600 +396 1072 0.6720 +396 1073 0.5900 +396 1759 0.4080 +396 1793 0.5360 +396 1947 0.6980 +396 2099 0.6980 +396 2316 0.5440 +396 2597 0.4160 +396 2664 0.6210 +396 2665 0.6350 +396 2739 0.4690 +396 2909 0.5180 +396 2923 0.4320 +396 3265 0.4640 +396 3611 0.4250 +396 3845 0.5090 +396 3964 0.5670 +396 3984 0.4370 +396 4099 0.7500 +396 4168 0.5400 +396 4306 0.6420 +396 4478 0.8000 +396 4627 0.4110 +396 4643 0.4440 +396 4688 0.5850 +396 4803 0.7140 +396 4804 0.9920 +396 4849 0.4460 +396 4868 0.4240 +396 4893 0.4020 +396 4915 0.5260 +396 4952 0.4410 +396 4974 0.7350 +396 5034 0.4650 +396 5037 0.4060 +396 5054 0.4090 +396 5058 0.5760 +396 5216 0.5790 +396 5566 0.9310 +396 5567 0.9270 +396 5568 0.9270 +396 5599 0.5380 +396 5829 0.4800 +396 5877 0.5090 +396 5879 0.9940 +396 5880 0.9930 +396 5881 0.7920 +396 5898 0.6440 +396 5899 0.4030 +396 5906 0.5580 +396 5912 0.5460 +396 5962 0.8770 +396 6093 0.4440 +396 6242 0.6610 +396 6272 0.4880 +396 6385 0.5620 +396 6453 0.4050 +396 6615 0.4180 +396 6714 0.6620 +396 6774 0.5110 +396 7074 0.5580 +396 7094 0.4370 +396 7132 0.5280 +396 7410 0.4450 +396 7430 0.8960 +396 7454 0.4460 +396 7529 0.6260 +396 7531 0.4200 +396 7532 0.4170 +396 7827 0.4700 +396 8153 0.4580 +396 8204 0.4680 +396 8482 0.4090 +396 8507 0.4020 +396 8517 0.4290 +396 8525 0.7370 +396 8766 0.5170 +396 8772 0.5210 +396 8795 0.4570 +396 8805 0.4530 +396 8826 0.4290 +396 8871 0.4280 +396 8874 0.6880 +396 8936 0.4120 +396 8976 0.4220 +396 9138 0.5910 +396 9181 0.4050 +396 9368 0.5810 +396 9886 0.5340 +396 9986 0.4700 +396 10097 0.4110 +396 10120 0.5010 +396 10163 0.4920 +396 10458 0.5360 +396 10755 0.5700 +396 10988 0.4250 +396 11344 0.4610 +396 11346 0.4270 +396 22948 0.4280 +396 23189 0.6550 +396 23191 0.4430 +396 23221 0.5230 +396 23406 0.4360 +396 23433 0.6110 +396 23463 0.4180 +396 23607 0.4540 +396 23647 0.4450 +396 25959 0.8570 +396 26999 0.4550 +396 27289 0.6440 +396 28986 0.4350 +396 29984 0.5650 +396 30846 0.4030 +396 50618 0.4400 +396 51004 0.4710 +396 51196 0.4680 +396 51763 0.4170 +396 54205 0.4840 +396 54509 0.6540 +396 55504 0.4240 +396 55611 0.4440 +396 56623 0.4180 +396 57142 0.6390 +396 57381 0.5170 +396 57580 0.4270 +396 58480 0.5850 +396 63916 0.4180 +396 64423 0.5080 +396 65078 0.5100 +396 79934 0.4810 +396 83478 0.6260 +396 84894 0.6350 +396 136319 0.4270 +396 163782 0.4100 +396 171177 0.5900 +396 200576 0.4890 +396 653361 0.6200 +397 398 0.9060 +397 399 0.8500 +397 427 0.4140 +397 808 0.4050 +397 836 0.4590 +397 857 0.4740 +397 963 0.4590 +397 1072 0.6240 +397 2665 0.6220 +397 3059 0.6150 +397 3689 0.4730 +397 3936 0.6300 +397 3937 0.6210 +397 4689 0.4470 +397 4804 0.9630 +397 4830 0.4330 +397 4915 0.4640 +397 5216 0.4150 +397 5336 0.4150 +397 5341 0.4150 +397 5552 0.6270 +397 5566 0.9140 +397 5567 0.9140 +397 5568 0.9130 +397 5696 0.4600 +397 5788 0.4260 +397 5879 0.8780 +397 5880 0.9920 +397 5881 0.8640 +397 5898 0.5510 +397 7074 0.4170 +397 7305 0.5580 +397 7409 0.5160 +397 7805 0.7950 +397 8153 0.4190 +397 8826 0.5010 +397 9535 0.5750 +397 9886 0.5050 +397 11010 0.5070 +397 11151 0.5190 +397 23221 0.4820 +397 23433 0.5180 +397 25855 0.4040 +397 26118 0.4880 +397 27289 0.6220 +397 29984 0.4740 +397 54509 0.5930 +397 54919 0.4620 +397 57381 0.4660 +397 58480 0.5110 +397 80117 0.4070 +397 139818 0.4560 +397 171177 0.5140 +398 399 0.8230 +398 857 0.4190 +398 1072 0.4080 +398 2665 0.4690 +398 4478 0.4290 +398 4804 0.9610 +398 4915 0.5070 +398 5566 0.9140 +398 5567 0.9140 +398 5568 0.9140 +398 5879 0.6150 +398 5880 0.7190 +398 5881 0.5660 +398 5898 0.5530 +398 5912 0.4040 +398 5962 0.5240 +398 7430 0.4340 +398 8153 0.4610 +398 9368 0.4250 +398 9886 0.4880 +398 23221 0.4960 +398 23433 0.5190 +398 27289 0.5930 +398 29984 0.6340 +398 54509 0.6360 +398 57381 0.4700 +398 58480 0.5100 +398 171177 0.5360 +399 489 0.4220 +399 604 0.8170 +399 640 0.5140 +399 752 0.4060 +399 857 0.5610 +399 915 0.4060 +399 930 0.5470 +399 969 0.4240 +399 973 0.6100 +399 974 0.6430 +399 1445 0.7380 +399 1500 0.4990 +399 1627 0.6090 +399 1629 0.5540 +399 1793 0.4810 +399 1794 0.6280 +399 1795 0.4670 +399 1879 0.5250 +399 2040 0.5960 +399 2631 0.5710 +399 3093 0.4040 +399 3384 0.5780 +399 3385 0.5960 +399 3678 0.4070 +399 3702 0.6480 +399 3728 0.5670 +399 3815 0.5060 +399 3936 0.5130 +399 4233 0.4030 +399 4548 0.5650 +399 4609 0.6140 +399 5058 0.6950 +399 5062 0.7010 +399 5079 0.8700 +399 5290 0.5350 +399 5292 0.4980 +399 5335 0.5140 +399 5450 0.6820 +399 6093 0.7090 +399 6453 0.5840 +399 6510 0.5790 +399 6850 0.5960 +399 7037 0.5610 +399 7374 0.4210 +399 7409 0.5640 +399 7415 0.6230 +399 7454 0.5180 +399 7535 0.8950 +399 7852 0.6020 +399 7879 0.6000 +399 8294 0.4590 +399 8976 0.4040 +399 9341 0.5850 +399 9475 0.6830 +399 9497 0.5470 +399 9528 0.6040 +399 9595 0.4570 +399 10009 0.4330 +399 10125 0.4230 +399 10298 0.6880 +399 10320 0.6380 +399 10376 0.6480 +399 10458 0.4680 +399 11151 0.5400 +399 22806 0.5190 +399 23002 0.4290 +399 25778 0.4200 +399 50618 0.5810 +399 50848 0.4380 +399 54440 0.4050 +399 54509 0.5030 +399 54900 0.4010 +399 55004 0.5550 +399 55075 0.5870 +399 55717 0.5640 +399 55968 0.5890 +399 56924 0.8230 +399 57144 0.7230 +399 57379 0.7610 +399 57580 0.5820 +399 64969 0.4500 +399 65078 0.4670 +399 80005 0.4820 +399 80008 0.4230 +399 80243 0.4280 +399 81704 0.5710 +399 81839 0.5950 +399 114885 0.5890 +399 147138 0.5880 +399 157769 0.5630 +399 253959 0.5860 +399 408187 0.4170 +399 102723407 0.5880 +400 403 0.4690 +400 738 0.5720 +400 822 0.4410 +400 1029 0.5210 +400 1315 0.4610 +400 2800 0.7810 +400 2803 0.9890 +400 3845 0.4790 +400 4905 0.5460 +400 5870 0.8010 +400 6293 0.5960 +400 6399 0.4870 +400 6453 0.5350 +400 7110 0.5340 +400 8576 0.4080 +400 8615 0.4570 +400 8674 0.5760 +400 8675 0.7430 +400 8729 0.5400 +400 8774 0.5560 +400 8775 0.5890 +400 9382 0.6250 +400 9391 0.4750 +400 9609 0.4430 +400 9648 0.8370 +400 9827 0.5630 +400 10139 0.6470 +400 10228 0.5640 +400 10466 0.5590 +400 10564 0.4320 +400 10565 0.9400 +400 10618 0.6480 +400 22796 0.5620 +400 22800 0.6030 +400 23041 0.7090 +400 23426 0.6750 +400 23521 0.4510 +400 23647 0.9850 +400 25839 0.5150 +400 26003 0.4540 +400 26286 0.5770 +400 27236 0.5380 +400 27248 0.4360 +400 50618 0.5400 +400 51542 0.5840 +400 51560 0.7670 +400 51569 0.4440 +400 51699 0.4490 +400 55275 0.6350 +400 55317 0.4120 +400 55738 0.7130 +400 55854 0.4230 +400 57511 0.7860 +400 57589 0.6320 +400 60412 0.5180 +400 60592 0.8650 +400 63908 0.5780 +400 79571 0.7680 +400 81555 0.4070 +400 83548 0.6390 +400 83871 0.5220 +400 84084 0.5530 +400 84364 0.6760 +400 90196 0.5130 +400 91949 0.5450 +400 93621 0.6050 +400 116461 0.4070 +400 134510 0.4110 +400 143187 0.6650 +400 164127 0.6050 +400 283989 0.4690 +400 339122 0.5720 +400 347517 0.5520 +401 429 0.8830 +401 1621 0.8780 +401 1908 0.6340 +401 2063 0.6730 +401 2624 0.4630 +401 2625 0.4350 +401 2668 0.6560 +401 3636 0.6490 +401 3642 0.5650 +401 3670 0.6880 +401 4010 0.4570 +401 4762 0.5780 +401 5979 0.6140 +401 6663 0.4240 +401 7021 0.4380 +401 7054 0.7200 +401 9464 0.7930 +401 10381 0.8150 +401 10660 0.4740 +401 23040 0.4810 +401 54903 0.4910 +401 55605 0.9600 +401 57057 0.4030 +401 63973 0.4860 +401 64221 0.4540 +401 143872 0.4120 +402 403 0.4580 +402 916 0.4970 +402 1029 0.4220 +402 1155 0.6700 +402 1184 0.4300 +402 1294 0.4330 +402 1877 0.4240 +402 2534 0.4050 +402 3055 0.5900 +402 3265 0.4880 +402 3568 0.5700 +402 3758 0.4050 +402 3845 0.6380 +402 4067 0.4280 +402 4218 0.4940 +402 4728 0.5320 +402 5147 0.9770 +402 5515 0.4080 +402 5872 0.4850 +402 5950 0.4330 +402 6009 0.5560 +402 6102 0.5120 +402 6103 0.6810 +402 6902 0.4640 +402 6903 0.6640 +402 6904 0.9960 +402 6905 0.5880 +402 7280 0.8030 +402 8666 0.5870 +402 9094 0.9970 +402 10381 0.5120 +402 10382 0.7050 +402 10383 0.7060 +402 23568 0.9990 +402 27031 0.4010 +402 27289 0.4090 +402 51715 0.4400 +402 55531 0.5690 +402 79718 0.6150 +402 81027 0.5060 +402 84173 0.5490 +402 84617 0.5110 +402 84747 0.6110 +402 112942 0.5040 +402 203068 0.4850 +402 255520 0.6550 +402 347733 0.7040 +403 471 0.4400 +403 582 0.5900 +403 583 0.4460 +403 740 0.5440 +403 1029 0.7080 +403 2803 0.4550 +403 3778 0.4740 +403 3838 0.6340 +403 4218 0.5790 +403 4867 0.4600 +403 5037 0.4470 +403 5147 0.9670 +403 5310 0.4460 +403 5311 0.4890 +403 5599 0.4640 +403 5601 0.4630 +403 5870 0.4800 +403 5872 0.4830 +403 5877 0.5750 +403 5921 0.8790 +403 6010 0.4060 +403 6011 0.5490 +403 6102 0.9940 +403 6103 0.6940 +403 6150 0.6140 +403 6183 0.5630 +403 6203 0.4370 +403 6222 0.4530 +403 6453 0.5370 +403 6648 0.4970 +403 6655 0.4920 +403 6774 0.4380 +403 6903 0.8660 +403 6904 0.6310 +403 6907 0.4050 +403 7289 0.4790 +403 7529 0.4960 +403 7532 0.4940 +403 7533 0.5040 +403 7534 0.4930 +403 7818 0.5350 +403 8100 0.6730 +403 8624 0.5150 +403 8766 0.5000 +403 9094 0.9980 +403 9135 0.6610 +403 9349 0.6000 +403 9364 0.5580 +403 9371 0.4590 +403 9553 0.5550 +403 9657 0.5020 +403 9742 0.4930 +403 9801 0.6440 +403 9858 0.5010 +403 10139 0.6720 +403 10890 0.4030 +403 10964 0.4050 +403 10971 0.5050 +403 11020 0.6700 +403 11127 0.4210 +403 11158 0.4260 +403 11159 0.4320 +403 11222 0.5090 +403 22897 0.4350 +403 23041 0.5170 +403 23193 0.5650 +403 23322 0.5030 +403 23426 0.5810 +403 23568 0.8290 +403 25943 0.7060 +403 26060 0.5130 +403 26088 0.6350 +403 26160 0.4310 +403 26275 0.5100 +403 26589 0.5970 +403 27031 0.8440 +403 27077 0.4650 +403 27130 0.4810 +403 27241 0.4350 +403 28981 0.4250 +403 28998 0.5630 +403 29088 0.4640 +403 29093 0.5770 +403 50618 0.5400 +403 51021 0.6150 +403 51023 0.5220 +403 51069 0.4710 +403 51073 0.5370 +403 51116 0.5010 +403 51263 0.5530 +403 51264 0.6240 +403 51560 0.4220 +403 51715 0.5660 +403 54806 0.4610 +403 54948 0.5510 +403 55081 0.5480 +403 55168 0.5150 +403 55173 0.5560 +403 55212 0.5290 +403 55531 0.5000 +403 55764 0.4520 +403 56623 0.4540 +403 57096 0.4610 +403 57129 0.5520 +403 57412 0.5530 +403 57545 0.4210 +403 57560 0.4320 +403 57576 0.5440 +403 57589 0.5430 +403 57728 0.4830 +403 60488 0.5440 +403 60592 0.6430 +403 63875 0.5650 +403 63931 0.5410 +403 64432 0.6460 +403 64792 0.6290 +403 64960 0.5630 +403 64963 0.5550 +403 64965 0.5420 +403 64968 0.5460 +403 64969 0.5920 +403 64975 0.5470 +403 64976 0.5450 +403 64978 0.4270 +403 64979 0.5470 +403 64981 0.6050 +403 64983 0.5440 +403 65003 0.5110 +403 65080 0.5200 +403 79363 0.5020 +403 80173 0.4350 +403 80184 0.5210 +403 80776 0.5120 +403 84173 0.4340 +403 84311 0.4590 +403 84545 0.5580 +403 84747 0.9960 +403 90196 0.8670 +403 90313 0.4800 +403 90410 0.6700 +403 90624 0.4070 +403 91746 0.4950 +403 94137 0.4710 +403 112942 0.9740 +403 114781 0.4050 +403 116541 0.4840 +403 117177 0.4870 +403 119032 0.5410 +403 124995 0.5110 +403 129880 0.4700 +403 157310 0.4250 +403 192668 0.5480 +403 200894 0.7820 +403 255520 0.6470 +403 261734 0.5290 +405 406 0.5850 +405 586 0.4370 +405 596 0.4210 +405 627 0.5700 +405 664 0.7290 +405 665 0.4190 +405 672 0.6460 +405 768 0.8060 +405 836 0.5530 +405 842 0.4640 +405 943 0.4380 +405 944 0.4350 +405 1019 0.5570 +405 1020 0.4540 +405 1029 0.5780 +405 1385 0.7260 +405 1387 0.9680 +405 1407 0.4980 +405 1408 0.4590 +405 1499 0.7320 +405 1543 0.9080 +405 1544 0.6230 +405 1545 0.7630 +405 1956 0.4480 +405 2033 0.9990 +405 2034 0.9990 +405 2056 0.8530 +405 2064 0.4500 +405 2099 0.8700 +405 2100 0.6070 +405 2120 0.4090 +405 2271 0.6060 +405 2309 0.4310 +405 2321 0.4490 +405 2353 0.6770 +405 2475 0.5150 +405 2597 0.4720 +405 2669 0.5270 +405 3065 0.4210 +405 3091 0.9990 +405 3098 0.4550 +405 3099 0.4540 +405 3162 0.4100 +405 3172 0.6690 +405 3320 0.7800 +405 3326 0.8000 +405 3417 0.4990 +405 3516 0.5490 +405 3551 0.4290 +405 3569 0.4160 +405 3630 0.6900 +405 3725 0.7170 +405 3791 0.4730 +405 4015 0.4850 +405 4193 0.6620 +405 4211 0.4140 +405 4609 0.7410 +405 4692 0.4510 +405 4780 0.4200 +405 4861 0.8780 +405 4862 0.6150 +405 5033 0.6410 +405 5155 0.4010 +405 5163 0.6840 +405 5187 0.4900 +405 5209 0.4930 +405 5210 0.4160 +405 5213 0.4430 +405 5230 0.5110 +405 5241 0.4700 +405 5315 0.4790 +405 5465 0.4510 +405 5468 0.4490 +405 5606 0.4550 +405 5728 0.4600 +405 5925 0.4040 +405 5970 0.5900 +405 5971 0.7310 +405 5979 0.5600 +405 6095 0.4260 +405 6198 0.4370 +405 6391 0.4170 +405 6421 0.4070 +405 6478 0.5470 +405 6492 0.9300 +405 6493 0.9620 +405 6502 0.4050 +405 6513 0.6730 +405 6515 0.5160 +405 6667 0.5550 +405 6774 0.4910 +405 6921 0.8850 +405 6923 0.8600 +405 6929 0.4030 +405 7010 0.4030 +405 7052 0.7510 +405 7067 0.4180 +405 7068 0.4810 +405 7157 0.6220 +405 7428 0.9250 +405 7837 0.4440 +405 8453 0.8690 +405 8648 0.4190 +405 8863 0.4260 +405 8864 0.4400 +405 8974 0.6330 +405 9049 0.7910 +405 9122 0.4310 +405 9123 0.4320 +405 9321 0.8770 +405 9575 0.6910 +405 9669 0.9560 +405 9915 0.9680 +405 9970 0.5810 +405 9978 0.4090 +405 10135 0.7030 +405 10370 0.5810 +405 10399 0.5260 +405 10460 0.7850 +405 10488 0.4570 +405 10499 0.6180 +405 10728 0.6060 +405 10769 0.5020 +405 10956 0.4320 +405 22926 0.4180 +405 23411 0.4410 +405 23493 0.6290 +405 25994 0.5370 +405 51430 0.5260 +405 54583 0.9430 +405 55269 0.4100 +405 55662 0.7930 +405 56938 0.5620 +405 57491 0.8940 +405 57658 0.6630 +405 64067 0.7330 +405 64344 0.9990 +405 79923 0.4450 +405 83667 0.6490 +405 84260 0.4820 +405 84925 0.4790 +405 90379 0.5540 +405 112398 0.8350 +405 112399 0.9290 +405 137902 0.4390 +405 139628 0.4700 +405 146713 0.4360 +405 266743 0.9920 +405 341359 0.4990 +405 440073 0.5050 +406 408 0.4260 +406 438 0.4440 +406 476 0.4390 +406 478 0.4360 +406 480 0.4380 +406 551 0.6000 +406 595 0.5590 +406 627 0.6190 +406 1020 0.4850 +406 1108 0.4460 +406 1119 0.5630 +406 1154 0.4090 +406 1195 0.4160 +406 1385 0.5820 +406 1387 0.9830 +406 1407 0.9990 +406 1408 0.9990 +406 1453 0.9750 +406 1454 0.9970 +406 1457 0.4410 +406 1460 0.5050 +406 1499 0.4630 +406 1628 0.8900 +406 1629 0.5530 +406 1813 0.4630 +406 1958 0.4730 +406 2033 0.9860 +406 2034 0.9220 +406 2099 0.4780 +406 2100 0.4370 +406 2146 0.9100 +406 2155 0.5390 +406 2308 0.4100 +406 2309 0.5290 +406 2353 0.8210 +406 2475 0.5610 +406 2538 0.4490 +406 2597 0.4610 +406 2641 0.4310 +406 2669 0.5040 +406 2908 0.6140 +406 2932 0.5300 +406 3021 0.5450 +406 3060 0.4820 +406 3091 0.9630 +406 3131 0.6720 +406 3172 0.5180 +406 3320 0.4840 +406 3326 0.6600 +406 3398 0.5090 +406 3553 0.4050 +406 3630 0.7800 +406 3720 0.4140 +406 3952 0.5080 +406 4059 0.4200 +406 4193 0.6120 +406 4297 0.4910 +406 4543 0.4050 +406 4544 0.4510 +406 4609 0.4750 +406 4783 0.9510 +406 4841 0.5140 +406 4861 0.4790 +406 4862 0.9990 +406 5054 0.6410 +406 5166 0.4300 +406 5187 0.9850 +406 5443 0.5200 +406 5453 0.4300 +406 5454 0.4550 +406 5465 0.8640 +406 5467 0.4260 +406 5468 0.5900 +406 5499 0.5360 +406 5578 0.5300 +406 5914 0.6750 +406 5927 0.9820 +406 5971 0.4670 +406 5979 0.5090 +406 6095 0.9620 +406 6096 0.9300 +406 6097 0.9120 +406 6256 0.7790 +406 6258 0.5410 +406 6493 0.4590 +406 6720 0.4840 +406 6886 0.4350 +406 7008 0.7470 +406 7067 0.4630 +406 7124 0.4070 +406 7157 0.4460 +406 7337 0.7700 +406 7391 0.5960 +406 7432 0.5430 +406 7434 0.5180 +406 7465 0.5970 +406 7546 0.4110 +406 8204 0.7540 +406 8290 0.5440 +406 8356 0.5440 +406 8431 0.5680 +406 8553 0.9850 +406 8841 0.6740 +406 8850 0.6410 +406 8851 0.4050 +406 8863 0.9800 +406 8864 0.9970 +406 8878 0.4810 +406 8914 0.9060 +406 8945 0.8130 +406 9049 0.4040 +406 9099 0.4630 +406 9513 0.4540 +406 9572 0.9890 +406 9575 0.9990 +406 9603 0.4130 +406 9611 0.7220 +406 9790 0.4190 +406 9915 0.7080 +406 9970 0.4160 +406 9971 0.4870 +406 9975 0.9590 +406 10062 0.5580 +406 10135 0.9010 +406 10399 0.7670 +406 10769 0.5350 +406 10891 0.7850 +406 11091 0.8350 +406 23028 0.8920 +406 23034 0.4050 +406 23410 0.4440 +406 23411 0.9970 +406 25819 0.8370 +406 26224 0.9210 +406 28987 0.4020 +406 28999 0.8010 +406 29122 0.5230 +406 51141 0.4130 +406 51548 0.8720 +406 51582 0.5230 +406 51738 0.4210 +406 53340 0.4430 +406 54962 0.5450 +406 55511 0.5490 +406 56938 0.9400 +406 57491 0.7340 +406 60675 0.4600 +406 64344 0.6040 +406 64802 0.5310 +406 79365 0.9890 +406 79836 0.4840 +406 79968 0.5010 +406 84699 0.4610 +406 85457 0.7680 +406 90737 0.5830 +406 94233 0.6780 +406 112398 0.4270 +406 139135 0.9030 +406 146713 0.5020 +406 148523 0.7820 +406 266743 0.9900 +406 341359 0.6130 +406 440073 0.5280 +406 440093 0.5440 +406 440686 0.5440 +406 653604 0.5440 +406 102800317 0.8220 +407 408 0.5980 +407 554 0.6560 +407 611 0.9120 +407 685 0.4970 +407 778 0.4420 +407 793 0.5520 +407 1040 0.4370 +407 1072 0.4640 +407 1073 0.4470 +407 1131 0.4060 +407 1258 0.5510 +407 1259 0.5980 +407 1261 0.6080 +407 1406 0.7220 +407 1488 0.5240 +407 1525 0.4460 +407 1813 0.5630 +407 2069 0.4260 +407 2492 0.4730 +407 2652 0.6990 +407 2670 0.4060 +407 2752 0.4500 +407 2779 0.6500 +407 2780 0.7120 +407 2784 0.6110 +407 2792 0.6280 +407 2793 0.6230 +407 2916 0.4730 +407 2978 0.4640 +407 2979 0.4960 +407 2986 0.4900 +407 3000 0.5030 +407 3725 0.4480 +407 3973 0.6930 +407 4193 0.6360 +407 4217 0.7870 +407 4887 0.5350 +407 4901 0.5790 +407 4988 0.6010 +407 5015 0.4830 +407 5080 0.6190 +407 5145 0.5250 +407 5146 0.6950 +407 5149 0.7210 +407 5158 0.5990 +407 5368 0.4090 +407 5457 0.5170 +407 5458 0.4670 +407 5578 0.6170 +407 5949 0.7920 +407 5956 0.5550 +407 5957 0.7770 +407 5961 0.4600 +407 5966 0.4420 +407 5996 0.4260 +407 5997 0.5340 +407 6001 0.4500 +407 6002 0.4340 +407 6003 0.4320 +407 6004 0.4180 +407 6010 0.9930 +407 6011 0.6740 +407 6017 0.5410 +407 6094 0.4290 +407 6121 0.6120 +407 6258 0.4590 +407 6416 0.5720 +407 6714 0.6820 +407 7049 0.4140 +407 8218 0.5970 +407 8801 0.6350 +407 8882 0.5630 +407 9187 0.5350 +407 9626 0.5230 +407 9628 0.4040 +407 10002 0.7350 +407 10590 0.4010 +407 11030 0.4010 +407 23746 0.4640 +407 26575 0.4530 +407 27232 0.7030 +407 30813 0.4560 +407 30818 0.4340 +407 54714 0.6260 +407 56344 0.4580 +407 57007 0.6010 +407 64407 0.4320 +407 80824 0.4620 +407 84146 0.4200 +407 84687 0.7530 +407 84838 0.7090 +407 85397 0.4470 +407 85406 0.4120 +407 92840 0.4610 +407 94233 0.5810 +407 115861 0.4840 +407 130162 0.4920 +407 130557 0.5940 +407 131890 0.5900 +407 158046 0.4310 +407 221178 0.5030 +407 338917 0.6050 +407 431704 0.4400 +407 101060233 0.4550 +408 409 0.9860 +408 501 0.6060 +408 538 0.4140 +408 551 0.6190 +408 552 0.4480 +408 554 0.9990 +408 643 0.7980 +408 673 0.9190 +408 728 0.5990 +408 808 0.5080 +408 810 0.5040 +408 846 0.5500 +408 857 0.6040 +408 859 0.4520 +408 940 0.4370 +408 950 0.5340 +408 1003 0.7460 +408 1072 0.7330 +408 1073 0.6230 +408 1080 0.4880 +408 1119 0.4300 +408 1128 0.8210 +408 1129 0.9560 +408 1132 0.5320 +408 1147 0.4810 +408 1173 0.6110 +408 1174 0.5110 +408 1175 0.6290 +408 1176 0.5110 +408 1211 0.5150 +408 1212 0.5300 +408 1230 0.7700 +408 1232 0.7720 +408 1233 0.6790 +408 1234 0.9360 +408 1235 0.8060 +408 1236 0.8590 +408 1237 0.7410 +408 1238 0.4030 +408 1240 0.4840 +408 1268 0.7570 +408 1362 0.5490 +408 1363 0.4040 +408 1385 0.6460 +408 1392 0.5570 +408 1394 0.7310 +408 1432 0.4470 +408 1445 0.7880 +408 1452 0.5910 +408 1499 0.7180 +408 1500 0.5030 +408 1522 0.5030 +408 1524 0.7520 +408 1601 0.7880 +408 1606 0.4550 +408 1608 0.4150 +408 1609 0.4820 +408 1615 0.4890 +408 1742 0.6700 +408 1777 0.5070 +408 1785 0.7270 +408 1812 0.6820 +408 1813 0.9770 +408 1814 0.4560 +408 1815 0.5570 +408 1840 0.6850 +408 1855 0.6900 +408 1856 0.9290 +408 1880 0.6980 +408 1901 0.6420 +408 1902 0.4610 +408 1903 0.5990 +408 1906 0.4180 +408 1909 0.6250 +408 1910 0.4050 +408 1956 0.7870 +408 2017 0.5390 +408 2033 0.7810 +408 2060 0.7910 +408 2149 0.9620 +408 2150 0.5860 +408 2151 0.5140 +408 2243 0.4160 +408 2244 0.4160 +408 2266 0.4180 +408 2268 0.5280 +408 2309 0.5910 +408 2335 0.5580 +408 2357 0.5260 +408 2358 0.4990 +408 2492 0.4710 +408 2495 0.5020 +408 2512 0.5020 +408 2532 0.5300 +408 2580 0.5550 +408 2641 0.6320 +408 2642 0.4090 +408 2647 0.5000 +408 2693 0.4490 +408 2696 0.4290 +408 2697 0.4720 +408 2735 0.9300 +408 2736 0.9230 +408 2737 0.9190 +408 2740 0.7750 +408 2767 0.4120 +408 2768 0.6590 +408 2769 0.5190 +408 2770 0.5700 +408 2775 0.5570 +408 2776 0.9080 +408 2778 0.5560 +408 2782 0.6400 +408 2793 0.4470 +408 2798 0.6500 +408 2799 0.5150 +408 2826 0.7350 +408 2827 0.7650 +408 2829 0.7250 +408 2833 0.8540 +408 2841 0.5560 +408 2852 0.4460 +408 2854 0.4740 +408 2859 0.4350 +408 2863 0.4490 +408 2864 0.6280 +408 2867 0.5630 +408 2868 0.9370 +408 2869 0.9760 +408 2870 0.9500 +408 2885 0.5790 +408 2908 0.4130 +408 2911 0.5620 +408 2912 0.6020 +408 2915 0.4080 +408 2932 0.5720 +408 3060 0.6120 +408 3061 0.5640 +408 3091 0.5220 +408 3178 0.4700 +408 3265 0.5580 +408 3267 0.5500 +408 3309 0.4800 +408 3312 0.5800 +408 3350 0.4080 +408 3356 0.6150 +408 3357 0.6730 +408 3358 0.6790 +408 3480 0.7580 +408 3482 0.5610 +408 3551 0.4930 +408 3577 0.7830 +408 3579 0.9530 +408 3630 0.6310 +408 3674 0.4450 +408 3690 0.4460 +408 3725 0.6270 +408 3760 0.4410 +408 3845 0.6100 +408 3949 0.5090 +408 3984 0.4680 +408 4036 0.5330 +408 4067 0.5550 +408 4074 0.5250 +408 4140 0.4570 +408 4142 0.4690 +408 4157 0.4830 +408 4160 0.4330 +408 4193 0.9900 +408 4214 0.4400 +408 4217 0.9120 +408 4591 0.4440 +408 4609 0.5060 +408 4734 0.7450 +408 4790 0.5680 +408 4792 0.9360 +408 4803 0.4200 +408 4846 0.5400 +408 4851 0.7890 +408 4852 0.5420 +408 4868 0.4950 +408 4886 0.4940 +408 4893 0.5580 +408 4905 0.6620 +408 4914 0.5240 +408 4922 0.6240 +408 4923 0.9960 +408 4952 0.6900 +408 4985 0.5620 +408 4988 0.9830 +408 4991 0.6880 +408 4992 0.6790 +408 4993 0.6660 +408 4994 0.6880 +408 5020 0.5530 +408 5021 0.6570 +408 5029 0.6810 +408 5030 0.4570 +408 5037 0.4780 +408 5141 0.9520 +408 5144 0.8730 +408 5164 0.5370 +408 5173 0.4340 +408 5286 0.5490 +408 5289 0.6650 +408 5290 0.4630 +408 5294 0.4870 +408 5368 0.4520 +408 5515 0.8330 +408 5516 0.8170 +408 5518 0.8150 +408 5519 0.8070 +408 5520 0.8100 +408 5521 0.8070 +408 5522 0.8070 +408 5523 0.8000 +408 5525 0.8070 +408 5526 0.8180 +408 5527 0.8050 +408 5528 0.8100 +408 5529 0.8060 +408 5566 0.6530 +408 5567 0.6490 +408 5568 0.6500 +408 5594 0.9890 +408 5595 0.9910 +408 5601 0.5490 +408 5604 0.8750 +408 5605 0.5480 +408 5724 0.8320 +408 5732 0.4960 +408 5734 0.8730 +408 5741 0.4340 +408 5744 0.4610 +408 5745 0.9810 +408 5771 0.4330 +408 5781 0.4950 +408 5829 0.5100 +408 5868 0.4910 +408 5877 0.5940 +408 5878 0.5460 +408 5894 0.9580 +408 5900 0.7760 +408 5906 0.4840 +408 5908 0.4580 +408 5972 0.4350 +408 5996 0.4170 +408 5999 0.4830 +408 6000 0.4720 +408 6001 0.4270 +408 6002 0.4430 +408 6003 0.4400 +408 6004 0.4310 +408 6010 0.9580 +408 6011 0.9520 +408 6198 0.5640 +408 6233 0.5110 +408 6272 0.5220 +408 6295 0.6290 +408 6373 0.4450 +408 6376 0.4760 +408 6387 0.5970 +408 6416 0.9580 +408 6453 0.5740 +408 6456 0.5110 +408 6548 0.4380 +408 6553 0.6610 +408 6608 0.9940 +408 6622 0.6750 +408 6643 0.5600 +408 6714 0.9990 +408 6752 0.4090 +408 6755 0.4080 +408 6844 0.5640 +408 6845 0.5210 +408 6863 0.7380 +408 6869 0.9570 +408 6949 0.6360 +408 7037 0.7890 +408 7048 0.4830 +408 7049 0.6570 +408 7094 0.5070 +408 7124 0.4120 +408 7157 0.5270 +408 7163 0.5000 +408 7164 0.4990 +408 7170 0.5980 +408 7186 0.4470 +408 7187 0.6450 +408 7189 0.8310 +408 7201 0.8480 +408 7222 0.5280 +408 7253 0.6000 +408 7311 0.4990 +408 7314 0.5490 +408 7316 0.5590 +408 7408 0.5140 +408 7414 0.4840 +408 7442 0.4060 +408 7450 0.4680 +408 7474 0.5650 +408 7481 0.4190 +408 7528 0.6340 +408 7529 0.5340 +408 7531 0.4040 +408 7532 0.4230 +408 7852 0.9730 +408 7862 0.6730 +408 7932 0.6500 +408 8027 0.7900 +408 8100 0.5050 +408 8218 0.8640 +408 8301 0.5470 +408 8312 0.8070 +408 8321 0.4780 +408 8322 0.7310 +408 8383 0.6500 +408 8386 0.6790 +408 8387 0.6790 +408 8388 0.6790 +408 8390 0.6790 +408 8490 0.4520 +408 8525 0.7890 +408 8526 0.5310 +408 8527 0.4800 +408 8546 0.6060 +408 8590 0.6790 +408 8601 0.4720 +408 8649 0.4660 +408 8650 0.5390 +408 8673 0.5240 +408 8678 0.7510 +408 8698 0.6240 +408 8766 0.4060 +408 8775 0.5210 +408 8786 0.4580 +408 8801 0.5900 +408 8826 0.7160 +408 8844 0.7500 +408 8856 0.5510 +408 8862 0.4630 +408 8877 0.4350 +408 8905 0.5130 +408 8907 0.5580 +408 8974 0.4440 +408 9002 0.5720 +408 9026 0.5440 +408 9034 0.5510 +408 9043 0.4030 +408 9146 0.6110 +408 9221 0.6370 +408 9248 0.5840 +408 9253 0.5320 +408 9266 0.6040 +408 9289 0.5400 +408 9290 0.7440 +408 9294 0.5230 +408 9341 0.5360 +408 9368 0.6190 +408 9371 0.4200 +408 9463 0.5560 +408 9590 0.4760 +408 9628 0.4730 +408 9685 0.5510 +408 9698 0.5000 +408 9738 0.4400 +408 9826 0.8770 +408 9829 0.5600 +408 9892 0.6370 +408 10053 0.5230 +408 10149 0.5900 +408 10203 0.5950 +408 10256 0.4650 +408 10287 0.4740 +408 10411 0.9420 +408 10413 0.4490 +408 10454 0.5370 +408 10618 0.5540 +408 10628 0.6510 +408 10663 0.7220 +408 10672 0.5000 +408 10717 0.5060 +408 10798 0.6790 +408 10803 0.7260 +408 10936 0.4630 +408 11069 0.9440 +408 11127 0.9490 +408 11245 0.4280 +408 11318 0.8400 +408 22848 0.5680 +408 22905 0.7090 +408 23032 0.7490 +408 23035 0.4520 +408 23099 0.4370 +408 23149 0.5830 +408 23168 0.6090 +408 23220 0.5000 +408 23327 0.5920 +408 23431 0.5070 +408 23432 0.9420 +408 23538 0.6790 +408 23557 0.5280 +408 25828 0.4140 +408 25977 0.5340 +408 26119 0.5940 +408 26188 0.6790 +408 26189 0.6500 +408 26211 0.6790 +408 26212 0.6840 +408 26219 0.6790 +408 26245 0.6790 +408 26246 0.6790 +408 26248 0.6840 +408 26258 0.4990 +408 26333 0.6790 +408 26338 0.6790 +408 26339 0.6790 +408 26341 0.6790 +408 26476 0.6820 +408 26493 0.6840 +408 26494 0.6840 +408 26496 0.6790 +408 26497 0.6870 +408 26529 0.6790 +408 26531 0.6790 +408 26532 0.6890 +408 26533 0.6850 +408 26534 0.6850 +408 26538 0.6890 +408 26539 0.6890 +408 26575 0.4570 +408 26595 0.6840 +408 26648 0.6790 +408 26658 0.6790 +408 26659 0.6790 +408 26664 0.6790 +408 26686 0.6790 +408 26687 0.6840 +408 26689 0.6790 +408 26692 0.6500 +408 26693 0.6790 +408 26707 0.6500 +408 26716 0.6500 +408 26735 0.6790 +408 26737 0.6790 +408 26740 0.6790 +408 27085 0.4540 +408 27131 0.5350 +408 27185 0.5520 +408 27202 0.6320 +408 27232 0.7800 +408 28227 0.8000 +408 29924 0.6940 +408 29978 0.5110 +408 50618 0.5580 +408 51289 0.9240 +408 51339 0.5510 +408 51429 0.5730 +408 51440 0.4160 +408 51554 0.4240 +408 51806 0.5040 +408 53637 0.6350 +408 54331 0.4230 +408 54518 0.4030 +408 54756 0.5110 +408 54885 0.5290 +408 55012 0.8020 +408 55040 0.4180 +408 55330 0.4990 +408 55707 0.5030 +408 55844 0.8080 +408 56656 0.6790 +408 56848 0.4320 +408 57007 0.8830 +408 57026 0.6470 +408 57542 0.4230 +408 57561 0.8380 +408 59340 0.4080 +408 64407 0.4380 +408 64582 0.6370 +408 64805 0.5570 +408 79290 0.6790 +408 79295 0.6790 +408 79310 0.6790 +408 79317 0.6500 +408 79324 0.6830 +408 79339 0.6830 +408 79345 0.6830 +408 79346 0.6860 +408 79473 0.6850 +408 79490 0.6850 +408 79541 0.6980 +408 79544 0.6500 +408 79549 0.6900 +408 81050 0.6790 +408 81099 0.6790 +408 81127 0.6790 +408 81168 0.6500 +408 81282 0.6830 +408 81285 0.6880 +408 81300 0.6840 +408 81309 0.6500 +408 81318 0.6840 +408 81327 0.6840 +408 81341 0.6500 +408 81392 0.6790 +408 81399 0.6790 +408 81442 0.6790 +408 81448 0.7190 +408 81466 0.6790 +408 81469 0.6840 +408 81470 0.6840 +408 81567 0.5020 +408 81696 0.6790 +408 81697 0.6840 +408 81797 0.6790 +408 83737 0.7430 +408 84062 0.4990 +408 84251 0.6130 +408 84292 0.5600 +408 84634 0.9530 +408 85021 0.5410 +408 85397 0.4540 +408 91860 0.5380 +408 91947 0.4130 +408 92714 0.6830 +408 94233 0.4800 +408 113878 0.5490 +408 115548 0.5570 +408 119678 0.6840 +408 119679 0.6840 +408 119682 0.6920 +408 119687 0.6830 +408 119692 0.6830 +408 119694 0.6830 +408 119695 0.6870 +408 119749 0.6790 +408 119764 0.6840 +408 119765 0.6790 +408 119772 0.6790 +408 119774 0.6910 +408 120065 0.6790 +408 120066 0.6790 +408 120586 0.6790 +408 120775 0.6840 +408 120776 0.6840 +408 120787 0.6790 +408 120793 0.6500 +408 121129 0.6840 +408 121130 0.7010 +408 121275 0.6500 +408 121364 0.6790 +408 122740 0.6500 +408 122742 0.6500 +408 122748 0.6790 +408 124538 0.6790 +408 125958 0.6790 +408 125962 0.6790 +408 125963 0.6790 +408 126370 0.6790 +408 126541 0.6890 +408 127059 0.6790 +408 127062 0.6790 +408 127064 0.6500 +408 127066 0.6790 +408 127068 0.6790 +408 127069 0.6790 +408 127077 0.6790 +408 127385 0.6930 +408 127608 0.6790 +408 127623 0.6790 +408 128360 0.6820 +408 128366 0.6790 +408 128367 0.6790 +408 128368 0.6820 +408 128372 0.6790 +408 130075 0.7060 +408 130162 0.4920 +408 130340 0.4990 +408 131890 0.9430 +408 134083 0.6790 +408 135924 0.6790 +408 135941 0.6830 +408 135946 0.6790 +408 135948 0.6790 +408 138799 0.6790 +408 138802 0.6790 +408 138804 0.6790 +408 138805 0.6840 +408 138881 0.6790 +408 138883 0.6790 +408 139760 0.5950 +408 140459 0.4490 +408 143496 0.6790 +408 143503 0.6930 +408 144124 0.6790 +408 144125 0.6790 +408 150681 0.6500 +408 158131 0.6790 +408 162998 0.6790 +408 163688 0.5010 +408 196335 0.6500 +408 201633 0.4180 +408 219417 0.6840 +408 219428 0.6500 +408 219429 0.6500 +408 219431 0.6840 +408 219436 0.6860 +408 219437 0.6790 +408 219438 0.6860 +408 219447 0.6790 +408 219453 0.6790 +408 219469 0.6790 +408 219473 0.6790 +408 219477 0.6500 +408 219479 0.6840 +408 219482 0.6500 +408 219484 0.6500 +408 219487 0.6790 +408 219493 0.6790 +408 219858 0.6840 +408 219869 0.6850 +408 219870 0.6850 +408 219874 0.6790 +408 219875 0.6790 +408 219952 0.6790 +408 219954 0.6880 +408 219956 0.6790 +408 219957 0.6790 +408 219960 0.6500 +408 219965 0.6790 +408 219968 0.6790 +408 219981 0.6790 +408 219982 0.6790 +408 219983 0.6790 +408 219986 0.6790 +408 222545 0.6240 +408 254786 0.6790 +408 254879 0.6790 +408 254973 0.6790 +408 255725 0.6790 +408 256148 0.6840 +408 282763 0.6830 +408 282770 0.6790 +408 282775 0.6850 +408 283092 0.6790 +408 283093 0.6860 +408 283159 0.6840 +408 283160 0.6840 +408 283162 0.7060 +408 283297 0.6790 +408 283365 0.6790 +408 283694 0.6790 +408 284383 0.6790 +408 284433 0.6890 +408 284521 0.6790 +408 284532 0.6790 +408 285659 0.6790 +408 286362 0.6790 +408 286451 0.4990 +408 338442 0.4330 +408 338557 0.6650 +408 338662 0.6840 +408 338674 0.6790 +408 338675 0.6790 +408 338751 0.6870 +408 338755 0.6790 +408 340024 0.4570 +408 340980 0.6790 +408 341152 0.6790 +408 341276 0.6790 +408 341416 0.6790 +408 341418 0.6840 +408 341799 0.6900 +408 343169 0.6790 +408 343170 0.6790 +408 343171 0.6790 +408 343172 0.6500 +408 343173 0.6790 +408 343563 0.6790 +408 346517 0.6790 +408 346525 0.6830 +408 347168 0.6790 +408 347169 0.6790 +408 347468 0.6840 +408 374654 0.5130 +408 387748 0.6500 +408 388552 0.4990 +408 388761 0.6790 +408 390036 0.6910 +408 390037 0.6790 +408 390038 0.6790 +408 390054 0.6790 +408 390058 0.6830 +408 390059 0.6830 +408 390061 0.6830 +408 390063 0.6830 +408 390064 0.6830 +408 390066 0.6790 +408 390067 0.6790 +408 390072 0.6850 +408 390075 0.6850 +408 390077 0.6850 +408 390078 0.6840 +408 390079 0.6840 +408 390081 0.6840 +408 390082 0.6840 +408 390083 0.6500 +408 390084 0.6500 +408 390093 0.6790 +408 390113 0.6840 +408 390142 0.6860 +408 390144 0.6790 +408 390148 0.6790 +408 390151 0.6790 +408 390152 0.6790 +408 390155 0.6790 +408 390157 0.6790 +408 390162 0.6500 +408 390168 0.6790 +408 390174 0.6830 +408 390181 0.6790 +408 390190 0.6790 +408 390191 0.6790 +408 390195 0.6790 +408 390197 0.6790 +408 390199 0.6790 +408 390201 0.6790 +408 390260 0.6790 +408 390261 0.6900 +408 390264 0.6850 +408 390265 0.6850 +408 390271 0.6840 +408 390275 0.6840 +408 390321 0.6790 +408 390323 0.6790 +408 390326 0.6790 +408 390327 0.6790 +408 390429 0.6790 +408 390431 0.6500 +408 390433 0.6500 +408 390437 0.6790 +408 390445 0.6790 +408 390538 0.6790 +408 390648 0.6790 +408 390649 0.6790 +408 390883 0.6790 +408 390892 0.6790 +408 391107 0.6820 +408 391109 0.6820 +408 391112 0.6790 +408 391114 0.6650 +408 391189 0.6790 +408 391190 0.6940 +408 391192 0.6790 +408 391194 0.6790 +408 391195 0.6500 +408 391196 0.6790 +408 391211 0.6840 +408 392138 0.6830 +408 392309 0.6500 +408 392376 0.6790 +408 392390 0.6790 +408 392391 0.6790 +408 392392 0.6790 +408 393046 0.6830 +408 401427 0.6830 +408 401665 0.6790 +408 401666 0.6830 +408 401667 0.6830 +408 401992 0.6790 +408 401993 0.6790 +408 401994 0.6790 +408 402135 0.6790 +408 402317 0.6830 +408 403239 0.6790 +408 403244 0.6790 +408 403253 0.6840 +408 403273 0.6790 +408 403274 0.6790 +408 403277 0.6790 +408 403278 0.6790 +408 403282 0.6790 +408 403284 0.6790 +408 431704 0.4560 +408 440153 0.6790 +408 441308 0.6790 +408 441608 0.6790 +408 441670 0.6790 +408 441933 0.6790 +408 442184 0.6840 +408 442185 0.6500 +408 442186 0.6500 +408 442191 0.6790 +408 442194 0.6790 +408 442361 0.6830 +408 102723532 0.6790 +408 104909134 0.5950 +408 105369274 0.6790 +409 501 0.6150 +409 538 0.4300 +409 551 0.6120 +409 552 0.4650 +409 553 0.4030 +409 554 0.9610 +409 575 0.4100 +409 643 0.8010 +409 673 0.9590 +409 680 0.4720 +409 682 0.4060 +409 719 0.4110 +409 728 0.6480 +409 808 0.5130 +409 810 0.5020 +409 821 0.4360 +409 823 0.4180 +409 846 0.4010 +409 857 0.7070 +409 859 0.4860 +409 940 0.4540 +409 1003 0.7280 +409 1072 0.5650 +409 1128 0.8100 +409 1129 0.5820 +409 1131 0.5480 +409 1132 0.4800 +409 1147 0.6510 +409 1173 0.7170 +409 1175 0.6590 +409 1211 0.5000 +409 1212 0.5340 +409 1230 0.7870 +409 1232 0.7790 +409 1233 0.6790 +409 1234 0.8940 +409 1235 0.8070 +409 1236 0.8680 +409 1237 0.7440 +409 1240 0.5140 +409 1241 0.4140 +409 1268 0.7630 +409 1269 0.4670 +409 1363 0.4040 +409 1364 0.4060 +409 1385 0.5100 +409 1387 0.4400 +409 1392 0.5900 +409 1394 0.8470 +409 1445 0.7450 +409 1452 0.5970 +409 1457 0.4040 +409 1459 0.4270 +409 1495 0.4160 +409 1499 0.6300 +409 1500 0.5030 +409 1524 0.7540 +409 1601 0.7270 +409 1606 0.4190 +409 1608 0.4080 +409 1609 0.4540 +409 1742 0.5480 +409 1785 0.5400 +409 1812 0.8000 +409 1813 0.9980 +409 1814 0.5160 +409 1815 0.7140 +409 1840 0.5750 +409 1855 0.5740 +409 1856 0.9810 +409 1857 0.4350 +409 1880 0.4470 +409 1901 0.7100 +409 1902 0.6970 +409 1903 0.5580 +409 1909 0.5590 +409 1956 0.7850 +409 2017 0.5260 +409 2022 0.4320 +409 2060 0.7810 +409 2149 0.9620 +409 2150 0.5820 +409 2151 0.5130 +409 2185 0.5480 +409 2244 0.4160 +409 2266 0.4060 +409 2268 0.7550 +409 2316 0.8070 +409 2335 0.5650 +409 2353 0.4060 +409 2357 0.5580 +409 2358 0.5500 +409 2492 0.6210 +409 2535 0.4350 +409 2641 0.5950 +409 2642 0.6310 +409 2657 0.4010 +409 2693 0.4500 +409 2697 0.4710 +409 2735 0.9540 +409 2736 0.9420 +409 2737 0.9210 +409 2740 0.7210 +409 2767 0.4050 +409 2768 0.6500 +409 2769 0.5340 +409 2771 0.4580 +409 2775 0.5610 +409 2776 0.8610 +409 2782 0.5030 +409 2798 0.6500 +409 2826 0.7460 +409 2827 0.9310 +409 2829 0.7300 +409 2830 0.6120 +409 2833 0.8590 +409 2841 0.5550 +409 2852 0.4370 +409 2854 0.6300 +409 2859 0.5260 +409 2861 0.4180 +409 2863 0.4290 +409 2864 0.7010 +409 2867 0.6330 +409 2868 0.9260 +409 2869 0.9720 +409 2870 0.9560 +409 2880 0.4100 +409 2911 0.5330 +409 2912 0.6030 +409 2915 0.4080 +409 2931 0.4040 +409 2932 0.5160 +409 3060 0.6200 +409 3061 0.5890 +409 3091 0.4590 +409 3178 0.4320 +409 3265 0.5530 +409 3267 0.5590 +409 3274 0.4090 +409 3326 0.5430 +409 3350 0.4660 +409 3351 0.4240 +409 3356 0.6620 +409 3357 0.5280 +409 3358 0.7350 +409 3480 0.8140 +409 3549 0.5060 +409 3553 0.4460 +409 3569 0.4230 +409 3577 0.7960 +409 3579 0.8900 +409 3630 0.4500 +409 3635 0.4490 +409 3674 0.4530 +409 3676 0.4250 +409 3690 0.4490 +409 3725 0.6260 +409 3760 0.6270 +409 3802 0.5540 +409 3827 0.7070 +409 3845 0.5980 +409 3949 0.5090 +409 3973 0.5370 +409 3984 0.4500 +409 4036 0.5400 +409 4140 0.4650 +409 4142 0.4980 +409 4157 0.4980 +409 4160 0.4460 +409 4193 0.9870 +409 4214 0.7610 +409 4217 0.9870 +409 4609 0.4100 +409 4734 0.9360 +409 4792 0.9860 +409 4795 0.4310 +409 4829 0.5650 +409 4846 0.5520 +409 4851 0.5930 +409 4852 0.5490 +409 4868 0.7950 +409 4886 0.4940 +409 4887 0.5650 +409 4893 0.5390 +409 4914 0.5240 +409 4915 0.4580 +409 4922 0.6580 +409 4923 0.8720 +409 4985 0.6350 +409 4988 0.9860 +409 4991 0.6940 +409 4992 0.6790 +409 4993 0.6660 +409 4994 0.6880 +409 5020 0.5520 +409 5021 0.6510 +409 5028 0.5210 +409 5029 0.5170 +409 5037 0.6210 +409 5093 0.4420 +409 5141 0.9380 +409 5144 0.9330 +409 5164 0.4690 +409 5173 0.5060 +409 5294 0.4820 +409 5368 0.5500 +409 5443 0.4080 +409 5495 0.5990 +409 5515 0.8360 +409 5516 0.8200 +409 5518 0.8180 +409 5519 0.8120 +409 5520 0.8070 +409 5521 0.8110 +409 5522 0.8140 +409 5523 0.8030 +409 5525 0.8070 +409 5526 0.8130 +409 5527 0.8070 +409 5528 0.8150 +409 5529 0.8050 +409 5566 0.6750 +409 5567 0.6530 +409 5568 0.6530 +409 5579 0.6630 +409 5580 0.4410 +409 5594 0.9850 +409 5595 0.9960 +409 5599 0.4690 +409 5601 0.8260 +409 5604 0.9750 +409 5605 0.5340 +409 5606 0.4180 +409 5607 0.4540 +409 5608 0.4030 +409 5609 0.4430 +409 5724 0.6120 +409 5727 0.5550 +409 5732 0.6620 +409 5734 0.5770 +409 5741 0.6320 +409 5744 0.5360 +409 5745 0.9800 +409 5781 0.5290 +409 5867 0.4020 +409 5868 0.4890 +409 5877 0.5930 +409 5879 0.5500 +409 5894 0.9690 +409 5900 0.7700 +409 5906 0.4880 +409 5908 0.4570 +409 5957 0.5490 +409 5972 0.4180 +409 5996 0.4140 +409 5997 0.5630 +409 5999 0.4970 +409 6000 0.4570 +409 6001 0.4210 +409 6002 0.4380 +409 6003 0.4260 +409 6004 0.4160 +409 6010 0.9450 +409 6011 0.9410 +409 6198 0.5530 +409 6233 0.5100 +409 6295 0.4250 +409 6363 0.6260 +409 6373 0.4570 +409 6376 0.4820 +409 6387 0.6050 +409 6416 0.9980 +409 6453 0.5530 +409 6469 0.5600 +409 6531 0.4170 +409 6553 0.4310 +409 6608 0.9970 +409 6622 0.5700 +409 6714 0.9980 +409 6752 0.5630 +409 6753 0.4110 +409 6772 0.5060 +409 6844 0.5720 +409 6845 0.5100 +409 6863 0.6410 +409 6865 0.5080 +409 6869 0.9570 +409 6915 0.5260 +409 6949 0.6520 +409 7040 0.6590 +409 7043 0.4830 +409 7048 0.5360 +409 7049 0.7450 +409 7094 0.5060 +409 7099 0.4180 +409 7124 0.4620 +409 7170 0.6010 +409 7189 0.9630 +409 7201 0.8890 +409 7205 0.4050 +409 7289 0.4450 +409 7311 0.5000 +409 7314 0.5280 +409 7316 0.6820 +409 7408 0.7050 +409 7414 0.4790 +409 7442 0.4870 +409 7450 0.4530 +409 7474 0.7470 +409 7481 0.4360 +409 7529 0.5170 +409 7531 0.5340 +409 7791 0.5200 +409 7827 0.4480 +409 7852 0.9750 +409 7862 0.6300 +409 7932 0.6500 +409 8100 0.5130 +409 8218 0.8560 +409 8301 0.5560 +409 8312 0.8290 +409 8321 0.6370 +409 8322 0.8180 +409 8324 0.4410 +409 8326 0.4020 +409 8383 0.6500 +409 8386 0.6790 +409 8387 0.6790 +409 8388 0.6790 +409 8390 0.6800 +409 8394 0.4960 +409 8395 0.4400 +409 8490 0.4380 +409 8525 0.7610 +409 8526 0.4600 +409 8527 0.4110 +409 8590 0.6850 +409 8601 0.4620 +409 8649 0.4750 +409 8650 0.4740 +409 8673 0.5210 +409 8698 0.6550 +409 8766 0.4180 +409 8786 0.4420 +409 8801 0.7520 +409 8826 0.7050 +409 8844 0.7160 +409 8856 0.5510 +409 8862 0.4630 +409 8882 0.4200 +409 8915 0.4520 +409 9002 0.5250 +409 9034 0.5550 +409 9043 0.4190 +409 9138 0.7610 +409 9146 0.6130 +409 9221 0.6860 +409 9248 0.4490 +409 9253 0.4670 +409 9266 0.6240 +409 9289 0.6640 +409 9290 0.8460 +409 9341 0.5430 +409 9451 0.5940 +409 9463 0.5290 +409 9495 0.6500 +409 9590 0.4570 +409 9628 0.4590 +409 9738 0.4160 +409 9826 0.4880 +409 9892 0.7140 +409 10256 0.4630 +409 10287 0.5430 +409 10399 0.4640 +409 10411 0.9440 +409 10413 0.4320 +409 10454 0.9870 +409 10524 0.4200 +409 10628 0.5230 +409 10663 0.7280 +409 10672 0.5380 +409 10749 0.5380 +409 10798 0.6790 +409 10803 0.7300 +409 10868 0.4680 +409 10892 0.4800 +409 10936 0.4630 +409 11069 0.9440 +409 11127 0.9550 +409 11245 0.4050 +409 11255 0.4030 +409 11318 0.8550 +409 11343 0.5190 +409 22848 0.5500 +409 22905 0.7110 +409 23032 0.9290 +409 23118 0.5400 +409 23149 0.5800 +409 23162 0.5120 +409 23168 0.5180 +409 23220 0.4990 +409 23295 0.4030 +409 23432 0.9670 +409 23476 0.5240 +409 23538 0.6790 +409 25977 0.5140 +409 26056 0.4990 +409 26119 0.5760 +409 26188 0.6790 +409 26189 0.6500 +409 26211 0.6790 +409 26212 0.6840 +409 26219 0.6790 +409 26245 0.6790 +409 26246 0.6790 +409 26248 0.6840 +409 26333 0.6790 +409 26338 0.6790 +409 26339 0.6790 +409 26341 0.6790 +409 26476 0.6820 +409 26493 0.6840 +409 26494 0.6840 +409 26496 0.6790 +409 26497 0.6870 +409 26529 0.6790 +409 26531 0.6790 +409 26532 0.6890 +409 26533 0.6850 +409 26534 0.6850 +409 26538 0.6990 +409 26539 0.6930 +409 26575 0.4670 +409 26595 0.6840 +409 26648 0.6790 +409 26658 0.6790 +409 26659 0.6790 +409 26664 0.6790 +409 26686 0.6790 +409 26687 0.6840 +409 26689 0.6790 +409 26692 0.6500 +409 26693 0.6790 +409 26707 0.6500 +409 26716 0.6500 +409 26735 0.6790 +409 26737 0.6790 +409 26740 0.6790 +409 27130 0.4380 +409 27185 0.5500 +409 27198 0.6020 +409 27202 0.6380 +409 27232 0.4400 +409 28227 0.8000 +409 29102 0.4390 +409 29775 0.5210 +409 29924 0.6840 +409 29978 0.5100 +409 50618 0.5710 +409 51107 0.5090 +409 51289 0.9250 +409 51479 0.5940 +409 51554 0.5500 +409 51684 0.5770 +409 51806 0.5010 +409 53637 0.6020 +409 53831 0.6230 +409 54518 0.4470 +409 54756 0.4990 +409 55012 0.8020 +409 55040 0.4170 +409 55707 0.5070 +409 55844 0.8080 +409 56656 0.6790 +409 57007 0.9670 +409 57026 0.4980 +409 57216 0.4080 +409 57561 0.7010 +409 59340 0.4270 +409 59350 0.7860 +409 64399 0.4680 +409 64407 0.4310 +409 64582 0.4110 +409 64805 0.5520 +409 79290 0.6790 +409 79295 0.6790 +409 79310 0.6790 +409 79317 0.6500 +409 79324 0.6830 +409 79339 0.6830 +409 79345 0.6830 +409 79346 0.6860 +409 79473 0.6850 +409 79490 0.6850 +409 79541 0.7030 +409 79544 0.6500 +409 79549 0.6900 +409 80824 0.5180 +409 81050 0.6790 +409 81099 0.6790 +409 81127 0.6790 +409 81168 0.6500 +409 81282 0.6830 +409 81285 0.6970 +409 81300 0.6840 +409 81309 0.6500 +409 81318 0.6840 +409 81327 0.6840 +409 81341 0.6500 +409 81392 0.6790 +409 81399 0.6790 +409 81442 0.6790 +409 81448 0.6940 +409 81466 0.6790 +409 81469 0.6840 +409 81470 0.6840 +409 81609 0.5220 +409 81696 0.6790 +409 81697 0.6840 +409 81797 0.6790 +409 83737 0.8100 +409 84251 0.6400 +409 84634 0.9300 +409 84687 0.6820 +409 85021 0.5040 +409 85397 0.4610 +409 91860 0.5360 +409 91947 0.4600 +409 94233 0.4320 +409 113878 0.5490 +409 114548 0.5250 +409 115548 0.5400 +409 117196 0.4620 +409 119678 0.6840 +409 119679 0.6840 +409 119682 0.6830 +409 119687 0.6830 +409 119692 0.6830 +409 119694 0.6830 +409 119695 0.6870 +409 119749 0.6790 +409 119764 0.6840 +409 119765 0.6790 +409 119772 0.6790 +409 119774 0.6910 +409 120065 0.6790 +409 120066 0.6790 +409 120586 0.6790 +409 120775 0.6840 +409 120776 0.6840 +409 120787 0.6790 +409 120793 0.6500 +409 121129 0.6840 +409 121130 0.7000 +409 121275 0.6500 +409 121364 0.6790 +409 122740 0.6500 +409 122742 0.6500 +409 122748 0.6790 +409 124538 0.6790 +409 125958 0.6790 +409 125962 0.6790 +409 125963 0.6790 +409 126370 0.6790 +409 126541 0.6890 +409 127059 0.6790 +409 127062 0.6790 +409 127064 0.6500 +409 127066 0.6790 +409 127068 0.6790 +409 127069 0.6790 +409 127077 0.6790 +409 127385 0.6820 +409 127608 0.6790 +409 127623 0.6790 +409 128360 0.6820 +409 128366 0.6790 +409 128367 0.6790 +409 128368 0.6820 +409 128372 0.6790 +409 130075 0.6790 +409 130162 0.4920 +409 131890 0.9320 +409 133482 0.5530 +409 134083 0.6790 +409 134864 0.4030 +409 135924 0.6790 +409 135941 0.6830 +409 135946 0.6790 +409 135948 0.6790 +409 138799 0.6790 +409 138802 0.6790 +409 138804 0.6790 +409 138805 0.6840 +409 138881 0.6790 +409 138883 0.6790 +409 139760 0.6080 +409 143496 0.6790 +409 143503 0.7010 +409 144124 0.6790 +409 144125 0.6790 +409 150681 0.6500 +409 158131 0.6790 +409 162998 0.6790 +409 163688 0.4980 +409 165140 0.4790 +409 196335 0.6500 +409 201633 0.7840 +409 219417 0.6840 +409 219428 0.6500 +409 219429 0.6500 +409 219431 0.6840 +409 219436 0.6860 +409 219437 0.6790 +409 219438 0.6860 +409 219447 0.6790 +409 219453 0.6790 +409 219469 0.6790 +409 219473 0.6790 +409 219477 0.6500 +409 219479 0.6840 +409 219482 0.6500 +409 219484 0.6500 +409 219487 0.6790 +409 219493 0.6790 +409 219858 0.6840 +409 219869 0.6850 +409 219870 0.6850 +409 219874 0.6790 +409 219875 0.6790 +409 219952 0.6790 +409 219954 0.6880 +409 219956 0.6790 +409 219957 0.6790 +409 219960 0.6500 +409 219965 0.6790 +409 219968 0.6790 +409 219981 0.6790 +409 219982 0.6790 +409 219983 0.6790 +409 219986 0.6790 +409 254786 0.6790 +409 254879 0.6790 +409 254973 0.6790 +409 255725 0.6790 +409 256148 0.6840 +409 282763 0.6830 +409 282770 0.6790 +409 282775 0.6850 +409 283092 0.6790 +409 283093 0.6900 +409 283159 0.6840 +409 283160 0.6840 +409 283162 0.6840 +409 283297 0.6790 +409 283365 0.6790 +409 283694 0.6790 +409 284383 0.6790 +409 284433 0.6890 +409 284521 0.6790 +409 284532 0.6790 +409 285659 0.6790 +409 286362 0.6790 +409 338442 0.4600 +409 338557 0.9120 +409 338662 0.6840 +409 338674 0.6790 +409 338675 0.6790 +409 338751 0.6870 +409 338755 0.6790 +409 340024 0.4560 +409 340980 0.6790 +409 341152 0.6790 +409 341276 0.6790 +409 341416 0.6790 +409 341418 0.6840 +409 341799 0.6900 +409 343169 0.6790 +409 343170 0.6790 +409 343171 0.6790 +409 343172 0.6500 +409 343173 0.6790 +409 343563 0.6790 +409 346517 0.6790 +409 346525 0.6830 +409 347168 0.6840 +409 347169 0.6790 +409 347468 0.6840 +409 374654 0.6470 +409 387748 0.6500 +409 388761 0.6790 +409 390036 0.6910 +409 390037 0.6790 +409 390038 0.6790 +409 390054 0.6790 +409 390058 0.6830 +409 390059 0.6830 +409 390061 0.6830 +409 390063 0.6830 +409 390064 0.6830 +409 390066 0.6790 +409 390067 0.6790 +409 390072 0.6850 +409 390075 0.6850 +409 390077 0.6850 +409 390078 0.6840 +409 390079 0.6840 +409 390081 0.6840 +409 390082 0.6840 +409 390083 0.6500 +409 390084 0.6500 +409 390093 0.6790 +409 390113 0.6840 +409 390142 0.6860 +409 390144 0.6790 +409 390148 0.6790 +409 390151 0.6790 +409 390152 0.6790 +409 390155 0.6790 +409 390157 0.6790 +409 390162 0.6500 +409 390168 0.6790 +409 390174 0.6830 +409 390181 0.6790 +409 390190 0.6790 +409 390191 0.6790 +409 390195 0.6790 +409 390197 0.6790 +409 390199 0.6790 +409 390201 0.6790 +409 390260 0.6790 +409 390261 0.6900 +409 390264 0.6850 +409 390265 0.6850 +409 390271 0.6840 +409 390275 0.6840 +409 390321 0.6790 +409 390323 0.6790 +409 390326 0.6790 +409 390327 0.6790 +409 390429 0.6790 +409 390431 0.6640 +409 390433 0.6500 +409 390437 0.6790 +409 390445 0.6790 +409 390538 0.6910 +409 390648 0.6790 +409 390649 0.6790 +409 390883 0.6790 +409 390892 0.6790 +409 391107 0.6820 +409 391109 0.6820 +409 391112 0.6790 +409 391114 0.6650 +409 391189 0.6790 +409 391190 0.6790 +409 391192 0.6790 +409 391194 0.6790 +409 391195 0.6500 +409 391196 0.6790 +409 391211 0.6840 +409 392138 0.6830 +409 392309 0.6500 +409 392376 0.6790 +409 392390 0.6790 +409 392391 0.6790 +409 392392 0.6790 +409 393046 0.6830 +409 401427 0.6830 +409 401665 0.6790 +409 401666 0.6830 +409 401667 0.6830 +409 401992 0.6790 +409 401993 0.6790 +409 401994 0.6790 +409 402135 0.6790 +409 402317 0.6830 +409 403239 0.6790 +409 403244 0.6790 +409 403253 0.6840 +409 403273 0.6790 +409 403274 0.6790 +409 403277 0.6790 +409 403278 0.6790 +409 403282 0.6790 +409 403284 0.6790 +409 431704 0.4600 +409 440153 0.6890 +409 441308 0.6790 +409 441608 0.6790 +409 441670 0.7060 +409 441933 0.6790 +409 442184 0.6840 +409 442185 0.6500 +409 442186 0.6620 +409 442191 0.6790 +409 442194 0.6790 +409 442361 0.6830 +409 100506013 0.4210 +409 102723532 0.6790 +409 104909134 0.7690 +409 105369274 0.6790 +410 411 0.9500 +410 412 0.5170 +410 414 0.5130 +410 415 0.4980 +410 416 0.4990 +410 427 0.7830 +410 825 0.4410 +410 910 0.4300 +410 1200 0.4610 +410 1621 0.4220 +410 1727 0.7790 +410 1861 0.4710 +410 2581 0.9850 +410 2588 0.8280 +410 2629 0.6980 +410 2717 0.9740 +410 2720 0.7020 +410 2760 0.4830 +410 2799 0.4480 +410 2990 0.8710 +410 3208 0.7800 +410 3306 0.6250 +410 3423 0.4730 +410 3425 0.7340 +410 4123 0.4170 +410 4126 0.4390 +410 4247 0.5470 +410 4353 0.4120 +410 4669 0.5390 +410 4758 0.9230 +410 4759 0.9040 +410 4864 0.4450 +410 5009 0.4740 +410 5053 0.4230 +410 5265 0.4010 +410 5373 0.5220 +410 5432 0.4090 +410 5433 0.4200 +410 5498 0.4300 +410 5660 0.9130 +410 5664 0.4110 +410 6448 0.6370 +410 6609 0.7000 +410 6622 0.4690 +410 6677 0.6150 +410 7037 0.4980 +410 7368 0.9480 +410 9282 0.5940 +410 9319 0.6830 +410 9412 0.4910 +410 9440 0.4330 +410 9443 0.5730 +410 9514 0.5810 +410 10001 0.5780 +410 10825 0.9050 +410 22901 0.9240 +410 23099 0.5020 +410 25870 0.7770 +410 51003 0.5540 +410 55173 0.4390 +410 79642 0.5950 +410 80331 0.4290 +410 84246 0.5400 +410 84286 0.5160 +410 84519 0.4540 +410 114790 0.4560 +410 129807 0.9160 +410 153642 0.6210 +410 285362 0.9570 +410 340075 0.6070 +410 347527 0.5000 +411 412 0.7080 +411 414 0.6020 +411 415 0.6050 +411 416 0.6170 +411 2588 0.4730 +411 2629 0.4510 +411 2717 0.5130 +411 2720 0.4950 +411 2799 0.5500 +411 2990 0.7780 +411 3373 0.9210 +411 3423 0.5100 +411 3425 0.9730 +411 4126 0.5000 +411 4594 0.7210 +411 4669 0.6000 +411 4915 0.4250 +411 5009 0.5040 +411 6448 0.4710 +411 6677 0.9180 +411 6906 0.5070 +411 8139 0.4160 +411 8372 0.9080 +411 8692 0.9120 +411 9282 0.5050 +411 9412 0.4880 +411 9440 0.4330 +411 9443 0.4910 +411 10001 0.4970 +411 10056 0.5270 +411 10724 0.7610 +411 22901 0.9400 +411 23213 0.4250 +411 23553 0.9100 +411 25870 0.6840 +411 51003 0.4810 +411 51363 0.4180 +411 54414 0.6080 +411 55959 0.4270 +411 79642 0.4260 +411 84246 0.4550 +411 138050 0.5130 +411 153642 0.8270 +411 285362 0.9470 +411 340075 0.4320 +411 347527 0.6250 +412 414 0.4630 +412 415 0.4760 +412 416 0.4760 +412 438 0.6670 +412 439 0.4750 +412 1183 0.5110 +412 1442 0.4610 +412 1443 0.4720 +412 1543 0.9210 +412 1544 0.9180 +412 1551 0.9090 +412 1571 0.9100 +412 1576 0.9230 +412 1577 0.9070 +412 1581 0.9040 +412 1583 0.9340 +412 1586 0.9450 +412 1588 0.7370 +412 1589 0.9220 +412 1717 0.8130 +412 1718 0.8100 +412 2058 0.4840 +412 2099 0.5340 +412 2100 0.4780 +412 2538 0.4010 +412 2539 0.4650 +412 2689 0.4440 +412 2745 0.4020 +412 2799 0.4870 +412 2877 0.4180 +412 2878 0.4250 +412 2880 0.4140 +412 2882 0.4180 +412 2990 0.4670 +412 3156 0.4310 +412 3283 0.9530 +412 3284 0.9410 +412 3292 0.7970 +412 3293 0.4970 +412 3294 0.6500 +412 3730 0.7540 +412 3792 0.4440 +412 3988 0.8070 +412 4267 0.7750 +412 5009 0.4470 +412 5230 0.4300 +412 5432 0.4090 +412 5433 0.4210 +412 6473 0.7620 +412 6579 0.4010 +412 6646 0.8230 +412 6658 0.4640 +412 6715 0.4850 +412 6736 0.5630 +412 6783 0.8650 +412 6799 0.6460 +412 6820 0.9400 +412 6822 0.6410 +412 7499 0.6490 +412 7504 0.6620 +412 8226 0.8720 +412 8228 0.6850 +412 8435 0.8210 +412 8644 0.9520 +412 8856 0.4690 +412 8910 0.4250 +412 9060 0.4080 +412 9084 0.5300 +412 9282 0.6200 +412 9412 0.4980 +412 9420 0.9000 +412 9440 0.4330 +412 9443 0.5730 +412 9701 0.4230 +412 10001 0.5780 +412 11309 0.4320 +412 22870 0.4200 +412 22901 0.5270 +412 23230 0.6470 +412 25870 0.6320 +412 26609 0.7760 +412 27233 0.5430 +412 27284 0.5490 +412 51003 0.5540 +412 51171 0.5210 +412 51480 0.7760 +412 51481 0.7760 +412 55291 0.4200 +412 57412 0.4550 +412 57502 0.4150 +412 79154 0.7490 +412 79642 0.6400 +412 79783 0.5490 +412 80331 0.4260 +412 84246 0.5400 +412 92579 0.4070 +412 127700 0.4010 +412 128674 0.4820 +412 136647 0.5480 +412 153642 0.6190 +412 159091 0.5030 +412 257202 0.4180 +412 285362 0.8160 +412 340075 0.6670 +412 345274 0.4570 +412 347527 0.4420 +412 353513 0.5300 +412 425054 0.5160 +412 442038 0.5400 +412 445329 0.7040 +412 493869 0.4180 +412 100861540 0.9110 +414 415 0.5520 +414 416 0.4840 +414 439 0.6690 +414 1654 0.4480 +414 1968 0.4520 +414 4267 0.6180 +414 5009 0.4420 +414 5432 0.4090 +414 5433 0.4200 +414 5613 0.6640 +414 6191 0.4710 +414 6473 0.5190 +414 6907 0.5050 +414 7403 0.4460 +414 7499 0.7760 +414 7543 0.5230 +414 8226 0.4820 +414 8228 0.6120 +414 8242 0.4420 +414 8908 0.5380 +414 9282 0.7010 +414 9350 0.4120 +414 9412 0.4910 +414 9440 0.4330 +414 9443 0.5730 +414 10001 0.5780 +414 22901 0.4760 +414 25870 0.6700 +414 25878 0.4240 +414 25975 0.4010 +414 51003 0.5540 +414 56474 0.4560 +414 57412 0.4680 +414 79642 0.6380 +414 84246 0.5400 +414 150165 0.5730 +414 153642 0.6720 +414 170082 0.4670 +414 207063 0.4260 +414 285362 0.7010 +414 340075 0.6500 +414 347527 0.4260 +414 414919 0.4340 +415 416 0.4530 +415 1588 0.4360 +415 2247 0.4470 +415 2258 0.4260 +415 2629 0.5260 +415 3176 0.4310 +415 3730 0.7000 +415 4256 0.5060 +415 4267 0.6830 +415 5009 0.4470 +415 5432 0.4090 +415 5433 0.4200 +415 5613 0.4930 +415 5901 0.4820 +415 6473 0.9150 +415 6658 0.5350 +415 7499 0.7500 +415 8228 0.4680 +415 8908 0.4360 +415 9282 0.6790 +415 9350 0.4070 +415 9412 0.4910 +415 9440 0.4330 +415 9443 0.5730 +415 10001 0.5780 +415 10682 0.8370 +415 22901 0.5010 +415 23213 0.5240 +415 25870 0.6230 +415 51003 0.5540 +415 51481 0.5950 +415 55959 0.5150 +415 57510 0.4390 +415 79642 0.5920 +415 84246 0.5400 +415 153642 0.6120 +415 207063 0.4350 +415 285362 0.7270 +415 340075 0.6020 +415 347527 0.4250 +416 2799 0.4080 +416 4267 0.7890 +416 5009 0.4570 +416 5432 0.4090 +416 5433 0.4200 +416 5613 0.7100 +416 5657 0.4910 +416 6191 0.4140 +416 6473 0.5010 +416 7499 0.7720 +416 7543 0.4130 +416 8226 0.4360 +416 8228 0.4700 +416 8908 0.7130 +416 9282 0.6350 +416 9412 0.4910 +416 9440 0.4330 +416 9443 0.5730 +416 9758 0.5100 +416 10001 0.5780 +416 10389 0.7360 +416 22901 0.4730 +416 25870 0.6220 +416 25878 0.5070 +416 51003 0.5540 +416 51480 0.4460 +416 51481 0.4800 +416 55959 0.5250 +416 64061 0.5080 +416 64110 0.4170 +416 79642 0.5800 +416 79649 0.4750 +416 84246 0.5400 +416 153642 0.5740 +416 170062 0.5050 +416 170082 0.5360 +416 170302 0.4050 +416 171482 0.6140 +416 207063 0.5240 +416 285362 0.7210 +416 340075 0.5790 +416 340562 0.5040 +416 347365 0.4080 +416 347527 0.4280 +416 425054 0.4760 +416 100130086 0.4310 +417 419 0.4220 +417 1667 0.4890 +417 1668 0.5490 +417 1669 0.5490 +417 1670 0.4660 +417 1671 0.4940 +417 1672 0.4650 +417 1673 0.4460 +417 3043 0.4270 +417 3700 0.4030 +417 4956 0.6980 +417 5027 0.4450 +417 5414 0.7740 +417 5626 0.4710 +417 8505 0.7440 +417 116969 0.4190 +417 728358 0.8670 +419 420 0.4360 +419 683 0.4880 +419 2822 0.4050 +419 3627 0.4320 +419 5414 0.8640 +419 6373 0.4510 +419 6389 0.4300 +419 7512 0.4790 +419 8505 0.7960 +419 10008 0.7330 +419 27247 0.4110 +419 51601 0.8700 +419 51626 0.4450 +419 54465 0.4150 +419 56911 0.4050 +419 57707 0.4470 +419 387787 0.7190 +420 683 0.4940 +420 2822 0.4200 +420 7512 0.4050 +420 51449 0.4420 +421 529 0.7050 +421 999 0.5920 +421 1000 0.6550 +421 1002 0.4410 +421 1006 0.5870 +421 1009 0.4150 +421 1010 0.5070 +421 1013 0.5610 +421 1015 0.7140 +421 1312 0.8970 +421 1495 0.5260 +421 1496 0.5760 +421 1499 0.8040 +421 1501 0.5030 +421 1815 0.4130 +421 2332 0.7970 +421 2812 0.6770 +421 4128 0.4050 +421 4904 0.5660 +421 5317 0.7950 +421 5413 0.4500 +421 5625 0.4640 +421 5902 0.4230 +421 6780 0.5580 +421 7122 0.5140 +421 8473 0.4210 +421 8502 0.5270 +421 9201 0.4890 +421 9414 0.6820 +421 9993 0.4310 +421 10009 0.5350 +421 10587 0.8600 +421 11187 0.7590 +421 22849 0.5400 +421 23254 0.4130 +421 23544 0.5120 +421 26065 0.5510 +421 27037 0.5530 +421 27067 0.5580 +421 29119 0.6430 +421 29801 0.5420 +421 54584 0.5930 +421 55914 0.8310 +421 56339 0.4060 +421 57554 0.6210 +421 64506 0.5400 +421 80315 0.5470 +421 114112 0.4160 +421 114800 0.4190 +421 128977 0.4200 +421 128989 0.6720 +421 132864 0.7200 +421 143162 0.7550 +427 910 0.5310 +427 912 0.5000 +427 950 0.5040 +427 961 0.4240 +427 1200 0.5010 +427 1508 0.4600 +427 1509 0.5760 +427 1520 0.4270 +427 1956 0.4460 +427 2166 0.4150 +427 2516 0.6320 +427 2531 0.9560 +427 2581 0.9830 +427 2629 0.9790 +427 2657 0.6220 +427 2717 0.8170 +427 2720 0.7710 +427 2760 0.5050 +427 2799 0.4060 +427 2990 0.4800 +427 4142 0.4430 +427 4668 0.4510 +427 4864 0.4550 +427 5538 0.5040 +427 5660 0.9280 +427 6441 0.4170 +427 6609 0.9690 +427 6610 0.8950 +427 6770 0.4290 +427 7357 0.9710 +427 7368 0.9420 +427 8560 0.9590 +427 8612 0.9350 +427 8613 0.9160 +427 8877 0.9800 +427 8879 0.5600 +427 9294 0.4700 +427 9331 0.4030 +427 9517 0.7610 +427 10087 0.4810 +427 10558 0.8140 +427 10577 0.5120 +427 11010 0.4620 +427 11343 0.4070 +427 23193 0.4030 +427 26503 0.5210 +427 27294 0.4660 +427 29956 0.9750 +427 51094 0.4280 +427 55173 0.4270 +427 55304 0.7540 +427 55331 0.9750 +427 55512 0.8360 +427 55627 0.8290 +427 56624 0.9930 +427 56848 0.9780 +427 57019 0.4280 +427 57704 0.9670 +427 64781 0.9790 +427 79602 0.4170 +427 79603 0.9640 +427 81537 0.9550 +427 83723 0.6100 +427 91012 0.9630 +427 123099 0.9450 +427 125981 0.9810 +427 126299 0.4720 +427 130367 0.9480 +427 166929 0.9550 +427 204219 0.9600 +427 253782 0.9730 +427 259230 0.9620 +427 339221 0.8170 +427 340485 0.9780 +427 653308 0.8940 +429 466 0.4990 +429 474 0.8550 +429 627 0.5210 +429 652 0.4800 +429 793 0.4990 +429 794 0.5430 +429 1028 0.4650 +429 1113 0.6030 +429 1385 0.9060 +429 1386 0.5000 +429 1406 0.4340 +429 1499 0.4590 +429 1621 0.4260 +429 1641 0.6350 +429 1745 0.8740 +429 1746 0.9260 +429 1749 0.4390 +429 1879 0.4180 +429 1908 0.5470 +429 1950 0.4410 +429 1956 0.4050 +429 1958 0.6260 +429 1995 0.5080 +429 1996 0.4020 +429 2016 0.5300 +429 2018 0.4580 +429 2019 0.4920 +429 2020 0.5290 +429 2033 0.8880 +429 2063 0.5220 +429 2146 0.4300 +429 2173 0.5960 +429 2247 0.5100 +429 2253 0.4530 +429 2258 0.4040 +429 2290 0.7710 +429 2307 0.4380 +429 2571 0.5790 +429 2572 0.4310 +429 2596 0.4670 +429 2597 0.4010 +429 2624 0.4690 +429 2625 0.4510 +429 2626 0.4130 +429 2637 0.4210 +429 2668 0.6610 +429 2670 0.6830 +429 2735 0.5370 +429 2736 0.4040 +429 2737 0.4330 +429 2918 0.4060 +429 3169 0.6150 +429 3170 0.7380 +429 3199 0.6230 +429 3212 0.6440 +429 3280 0.7200 +429 3398 0.6660 +429 3400 0.9110 +429 3516 0.5450 +429 3642 0.7260 +429 3670 0.6920 +429 3725 0.4780 +429 3975 0.6400 +429 4009 0.8010 +429 4010 0.7930 +429 4133 0.4750 +429 4192 0.4710 +429 4205 0.5530 +429 4208 0.5130 +429 4212 0.4850 +429 4440 0.4420 +429 4487 0.4220 +429 4609 0.5160 +429 4610 0.5080 +429 4613 0.4890 +429 4661 0.4980 +429 4684 0.5270 +429 4760 0.5410 +429 4761 0.7030 +429 4762 0.8860 +429 4781 0.4820 +429 4821 0.8720 +429 4825 0.4640 +429 4851 0.5590 +429 4853 0.4360 +429 4915 0.4100 +429 4929 0.6260 +429 5015 0.6060 +429 5076 0.4590 +429 5077 0.4360 +429 5080 0.7700 +429 5081 0.4120 +429 5156 0.4720 +429 5309 0.5570 +429 5454 0.9710 +429 5455 0.9310 +429 5456 0.5000 +429 5457 0.7610 +429 5458 0.4460 +429 5460 0.5770 +429 5816 0.4430 +429 5978 0.7250 +429 5979 0.6360 +429 6091 0.4810 +429 6285 0.4970 +429 6469 0.6580 +429 6496 0.4960 +429 6507 0.5270 +429 6656 0.6290 +429 6657 0.7480 +429 6658 0.4390 +429 6659 0.6090 +429 6662 0.5350 +429 6663 0.6210 +429 6664 0.5630 +429 6750 0.4260 +429 6853 0.4720 +429 6855 0.5510 +429 6925 0.8060 +429 6929 0.8370 +429 6938 0.9600 +429 7025 0.4250 +429 7054 0.5210 +429 7080 0.6540 +429 7088 0.5700 +429 7101 0.5550 +429 7157 0.4690 +429 7403 0.5210 +429 7425 0.5600 +429 7471 0.4340 +429 7528 0.4540 +429 7545 0.5850 +429 8022 0.5490 +429 8061 0.4290 +429 8320 0.5610 +429 8788 0.4010 +429 8928 0.4700 +429 8929 0.8940 +429 9241 0.4930 +429 9314 0.5210 +429 9355 0.7490 +429 9480 0.4170 +429 9915 0.5080 +429 10215 0.7750 +429 10381 0.4990 +429 10413 0.4910 +429 10661 0.4460 +429 10683 0.6810 +429 10716 0.6070 +429 10763 0.7440 +429 11075 0.4420 +429 23040 0.9640 +429 23314 0.5880 +429 23440 0.4320 +429 23462 0.4990 +429 23493 0.6470 +429 25833 0.6400 +429 26468 0.5960 +429 27319 0.5430 +429 28514 0.7940 +429 30012 0.4420 +429 30812 0.4360 +429 50674 0.7050 +429 55079 0.5080 +429 55502 0.8370 +429 55885 0.4310 +429 56956 0.5530 +429 57030 0.4890 +429 57084 0.4870 +429 57801 0.4450 +429 58158 0.8010 +429 63973 0.9760 +429 63974 0.6030 +429 64211 0.4120 +429 64321 0.5910 +429 64843 0.4960 +429 64919 0.4720 +429 79727 0.4700 +429 79923 0.4800 +429 83482 0.6920 +429 84181 0.6640 +429 84504 0.5600 +429 116448 0.7850 +429 120237 0.5070 +429 121601 0.4970 +429 121643 0.5500 +429 140679 0.4340 +429 146713 0.6120 +429 167826 0.4740 +429 170825 0.7010 +429 219409 0.6600 +429 221833 0.4920 +429 246213 0.5710 +429 338917 0.5720 +429 388585 0.7260 +429 390992 0.4490 +429 391723 0.6600 +429 431707 0.5280 +429 100131390 0.4450 +430 474 0.4770 +430 604 0.5570 +430 639 0.4350 +430 643 0.5310 +430 648 0.5570 +430 688 0.4010 +430 960 0.4250 +430 975 0.5610 +430 1028 0.7800 +430 1045 0.5900 +430 1113 0.4810 +430 1238 0.4210 +430 1499 0.5410 +430 1781 0.5580 +430 2001 0.4360 +430 2048 0.5560 +430 2049 0.5370 +430 2103 0.4100 +430 2625 0.4250 +430 2826 0.4120 +430 3021 0.4650 +430 3280 0.4610 +430 3398 0.4250 +430 3481 0.7390 +430 3482 0.5990 +430 3784 0.8060 +430 4094 0.4170 +430 4440 0.5560 +430 4609 0.4340 +430 4676 0.6230 +430 4760 0.4320 +430 5002 0.7940 +430 5460 0.4460 +430 5929 0.4250 +430 6150 0.5110 +430 6638 0.4050 +430 6662 0.5240 +430 6925 0.5760 +430 6929 0.7910 +430 6932 0.4150 +430 6938 0.5800 +430 7022 0.4070 +430 7262 0.9020 +430 7403 0.4070 +430 7473 0.4520 +430 8313 0.6310 +430 8320 0.4520 +430 8356 0.4660 +430 8521 0.5970 +430 8549 0.7810 +430 8788 0.4640 +430 8842 0.4060 +430 9201 0.5080 +430 9241 0.4770 +430 9682 0.6050 +430 10077 0.6460 +430 10078 0.7860 +430 10538 0.4990 +430 10562 0.7750 +430 10919 0.5060 +430 23054 0.5560 +430 23081 0.4280 +430 26018 0.6310 +430 28514 0.4640 +430 29851 0.4690 +430 29947 0.4390 +430 50674 0.4430 +430 51176 0.4360 +430 51554 0.4120 +430 54894 0.4310 +430 57801 0.4250 +430 64094 0.5970 +430 83998 0.4290 +430 84525 0.5920 +430 89780 0.4600 +430 114879 0.4520 +430 121549 0.4090 +430 284654 0.5800 +430 100532731 0.5550 +432 433 0.9920 +432 482 0.7490 +432 527 0.6490 +432 925 0.4470 +432 960 0.4640 +432 1508 0.4370 +432 1544 0.4350 +432 1551 0.4310 +432 1576 0.4500 +432 2147 0.4300 +432 2155 0.5350 +432 2204 0.6410 +432 2266 0.4020 +432 2719 0.5500 +432 3172 0.4090 +432 3569 0.4260 +432 4057 0.5790 +432 4072 0.6400 +432 4585 0.6970 +432 4691 0.4140 +432 5045 0.4450 +432 5265 0.5280 +432 5284 0.5200 +432 5788 0.5250 +432 6480 0.4430 +432 6482 0.7980 +432 6484 0.8980 +432 6554 0.4470 +432 6580 0.7060 +432 6614 0.4460 +432 6947 0.4230 +432 7037 0.6150 +432 7038 0.9490 +432 7113 0.4710 +432 7276 0.5090 +432 7355 0.4760 +432 7436 0.4090 +432 7450 0.8440 +432 8842 0.4160 +432 10630 0.4680 +432 10841 0.4290 +432 27329 0.4140 +432 29956 0.8580 +432 51091 0.5460 +432 51266 0.7020 +432 51267 0.5500 +432 54575 0.6220 +432 54576 0.6220 +432 54577 0.6200 +432 54578 0.6100 +432 54600 0.6080 +432 54657 0.6070 +432 54658 0.6540 +432 55248 0.7060 +432 83483 0.4920 +432 83544 0.6150 +432 83999 0.6480 +432 113174 0.4360 +432 255738 0.4680 +433 482 0.7650 +433 527 0.7440 +433 5340 0.4160 +433 6291 0.5020 +433 6482 0.7720 +433 6484 0.9290 +433 6580 0.6940 +433 7038 0.9020 +433 7450 0.7290 +433 9080 0.4060 +433 10956 0.4030 +433 25992 0.4030 +433 27248 0.5300 +433 29956 0.8440 +433 57515 0.4100 +433 64098 0.4910 +433 80727 0.4260 +433 113174 0.5020 +433 220001 0.4230 +433 440400 0.4600 +434 1638 0.6660 +434 1908 0.5510 +434 1910 0.4110 +434 3662 0.4970 +434 3815 0.4800 +434 4157 0.9990 +434 4158 0.6100 +434 4159 0.7620 +434 4160 0.7550 +434 4161 0.6530 +434 4254 0.4960 +434 4286 0.6220 +434 4644 0.4640 +434 4948 0.8110 +434 5443 0.9050 +434 6010 0.4750 +434 6382 0.5560 +434 7299 0.7930 +434 7306 0.8180 +434 8455 0.8300 +434 8894 0.6740 +434 9672 0.6810 +434 22913 0.8010 +434 23295 0.5710 +434 51151 0.7670 +434 55014 0.4300 +434 55191 0.4240 +434 55894 0.7670 +434 79083 0.4030 +434 83737 0.4730 +434 83875 0.4980 +434 112609 0.4480 +434 123041 0.7230 +434 126321 0.4600 +434 170575 0.4100 +434 219931 0.6850 +434 220064 0.4210 +434 283652 0.7480 +434 414325 0.8000 +435 440 0.5750 +435 445 0.9990 +435 471 0.4970 +435 586 0.4210 +435 587 0.4330 +435 790 0.7330 +435 875 0.4100 +435 1373 0.8720 +435 1418 0.4660 +435 1419 0.5950 +435 1420 0.4540 +435 1421 0.5210 +435 1427 0.4900 +435 1431 0.8910 +435 1491 0.5470 +435 1725 0.4240 +435 1962 0.5710 +435 2058 0.4390 +435 2184 0.5120 +435 2271 0.9020 +435 2628 0.8910 +435 2731 0.4070 +435 2744 0.4740 +435 2746 0.5410 +435 2747 0.4640 +435 2752 0.5860 +435 2821 0.4760 +435 3033 0.8210 +435 3081 0.4350 +435 3155 0.4330 +435 3300 0.4390 +435 3417 0.8750 +435 3418 0.8800 +435 3419 0.8590 +435 3420 0.8650 +435 3421 0.8650 +435 4143 0.4560 +435 4191 0.9030 +435 4842 0.9560 +435 4843 0.9540 +435 4846 0.9690 +435 4935 0.5950 +435 4942 0.9900 +435 4953 0.6730 +435 4967 0.8330 +435 5009 0.9630 +435 5091 0.8870 +435 5105 0.8330 +435 5106 0.8200 +435 5471 0.4290 +435 5625 0.5210 +435 5723 0.5440 +435 5831 0.5010 +435 5832 0.7180 +435 5859 0.4030 +435 6389 0.8600 +435 6390 0.8670 +435 6391 0.8150 +435 6392 0.8070 +435 6470 0.5020 +435 6472 0.4680 +435 6611 0.5870 +435 6720 0.4160 +435 6723 0.6250 +435 6888 0.4420 +435 7266 0.4160 +435 7372 0.5020 +435 7407 0.4810 +435 8458 0.4980 +435 8659 0.4730 +435 10157 0.5290 +435 10165 0.5260 +435 10166 0.5890 +435 10993 0.4140 +435 27165 0.4920 +435 29968 0.5000 +435 51512 0.5680 +435 55617 0.4140 +435 55687 0.5740 +435 55753 0.8000 +435 64902 0.4080 +435 79814 0.7230 +435 79892 0.4220 +435 80150 0.4150 +435 84955 0.6190 +435 85365 0.4440 +435 89894 0.5950 +435 90353 0.8060 +435 113451 0.9350 +435 122622 0.5160 +435 162417 0.9940 +435 285527 0.4260 +438 501 0.9050 +438 1183 0.6490 +438 1312 0.5050 +438 1407 0.4610 +438 1408 0.4470 +438 1543 0.9250 +438 1544 0.9390 +438 1545 0.9330 +438 1644 0.6920 +438 2058 0.7110 +438 2793 0.4040 +438 3563 0.6020 +438 3620 0.9270 +438 4128 0.4920 +438 4129 0.4160 +438 4267 0.6180 +438 4281 0.4650 +438 4543 0.6500 +438 4544 0.6300 +438 4835 0.4360 +438 5053 0.4050 +438 6473 0.6460 +438 6845 0.4380 +438 6999 0.4180 +438 7166 0.7600 +438 8225 0.5420 +438 8227 0.7880 +438 8856 0.5710 +438 8864 0.4220 +438 9189 0.4830 +438 9248 0.6000 +438 55344 0.6240 +438 80331 0.5100 +438 94233 0.5420 +438 114799 0.7410 +438 121278 0.5830 +438 157570 0.7340 +438 169355 0.9240 +438 207063 0.5290 +438 286530 0.4750 +439 445 0.8090 +439 516 0.4430 +439 573 0.5260 +439 819 0.9990 +439 1528 0.7590 +439 2010 0.6570 +439 2539 0.4280 +439 3162 0.5310 +439 3301 0.4140 +439 3308 0.4610 +439 3312 0.4880 +439 3337 0.4630 +439 3376 0.5020 +439 3814 0.4700 +439 4108 0.4040 +439 4338 0.4150 +439 4948 0.8320 +439 5018 0.5260 +439 5190 0.6280 +439 5621 0.5960 +439 5683 0.4280 +439 5685 0.4880 +439 5689 0.5050 +439 5690 0.6500 +439 5691 0.5290 +439 5693 0.5420 +439 5694 0.6720 +439 5728 0.4070 +439 5824 0.6990 +439 5886 0.7470 +439 5887 0.7280 +439 6449 0.9760 +439 6729 0.7380 +439 6779 0.4260 +439 6804 0.7320 +439 6811 0.9600 +439 6844 0.8470 +439 7095 0.4700 +439 7267 0.5750 +439 7316 0.4940 +439 7415 0.4190 +439 7485 0.9990 +439 7916 0.5260 +439 7917 0.9780 +439 8266 0.9990 +439 8504 0.6800 +439 9117 0.4980 +439 9217 0.5490 +439 9218 0.6830 +439 9381 0.6580 +439 9409 0.5810 +439 9554 0.6070 +439 10213 0.6730 +439 10952 0.8450 +439 11231 0.4780 +439 22909 0.4120 +439 23480 0.6020 +439 23548 0.4720 +439 26984 0.5020 +439 27113 0.4280 +439 27230 0.7280 +439 29100 0.6270 +439 29927 0.8420 +439 29978 0.4120 +439 29979 0.4180 +439 50613 0.4670 +439 51024 0.5620 +439 51026 0.5220 +439 51465 0.4830 +439 51608 0.9990 +439 53343 0.4230 +439 54499 0.4620 +439 54557 0.7480 +439 55157 0.4570 +439 55176 0.4060 +439 55658 0.8570 +439 55670 0.6560 +439 55831 0.6670 +439 56893 0.4540 +439 79890 0.4740 +439 80018 0.4010 +439 80308 0.6830 +439 80777 0.6020 +439 81570 0.4270 +439 83460 0.6300 +439 83473 0.4360 +439 84896 0.6680 +439 84993 0.4500 +439 90231 0.5340 +439 118424 0.5370 +439 127845 0.5180 +439 130355 0.4130 +439 144110 0.4590 +439 164153 0.4210 +439 347527 0.5730 +439 404552 0.4850 +439 728269 0.4060 +440 443 0.9080 +440 445 0.9760 +440 467 0.6130 +440 468 0.9280 +440 586 0.5560 +440 587 0.4510 +440 661 0.8540 +440 790 0.9450 +440 833 0.5360 +440 875 0.5090 +440 1051 0.7690 +440 1054 0.6760 +440 1491 0.5570 +440 1503 0.6560 +440 1615 0.4570 +440 1638 0.4260 +440 1649 0.4970 +440 1749 0.4050 +440 1750 0.4430 +440 1965 0.8510 +440 1968 0.6070 +440 2058 0.6710 +440 2166 0.5240 +440 2194 0.5120 +440 2232 0.5850 +440 2271 0.7760 +440 2571 0.8770 +440 2572 0.8600 +440 2582 0.4070 +440 2597 0.4270 +440 2617 0.8500 +440 2618 0.4130 +440 2673 0.5870 +440 2731 0.4060 +440 2744 0.5510 +440 2746 0.7480 +440 2747 0.6570 +440 2752 0.8610 +440 2805 0.9690 +440 2806 0.9730 +440 2875 0.5300 +440 3162 0.4800 +440 3305 0.4790 +440 3309 0.4010 +440 3336 0.4050 +440 3376 0.8040 +440 3615 0.6380 +440 4141 0.6530 +440 4143 0.4030 +440 4144 0.5320 +440 4189 0.4240 +440 4522 0.4260 +440 4548 0.4560 +440 4609 0.4230 +440 4677 0.9430 +440 4780 0.5390 +440 4942 0.8320 +440 4953 0.4110 +440 5009 0.4750 +440 5106 0.5270 +440 5188 0.7850 +440 5315 0.4080 +440 5444 0.4990 +440 5471 0.6420 +440 5625 0.4550 +440 5723 0.7080 +440 5831 0.5430 +440 5832 0.9170 +440 5859 0.4880 +440 6301 0.5000 +440 6470 0.6220 +440 6472 0.7780 +440 6505 0.4200 +440 6509 0.5020 +440 6510 0.5570 +440 6513 0.5280 +440 6520 0.7670 +440 6541 0.5070 +440 6897 0.5120 +440 6898 0.4380 +440 7298 0.4070 +440 7329 0.9010 +440 7398 0.4070 +440 7494 0.5460 +440 8140 0.8480 +440 8565 0.6650 +440 8833 0.6530 +440 8894 0.5870 +440 8942 0.4030 +440 9361 0.4700 +440 9451 0.6450 +440 9518 0.4110 +440 9563 0.4980 +440 10294 0.4320 +440 10600 0.6400 +440 10606 0.4110 +440 10797 0.7170 +440 10841 0.8270 +440 10993 0.4220 +440 11321 0.4350 +440 22809 0.5510 +440 22926 0.4430 +440 23476 0.5480 +440 23640 0.4960 +440 23645 0.6520 +440 23657 0.4710 +440 23743 0.4390 +440 25902 0.5210 +440 26227 0.8290 +440 27165 0.5220 +440 29968 0.8640 +440 51166 0.7770 +440 51520 0.4860 +440 51557 0.6710 +440 54407 0.5470 +440 54541 0.5590 +440 55157 0.4520 +440 55278 0.5340 +440 55617 0.5650 +440 55622 0.4160 +440 55785 0.7100 +440 55811 0.4160 +440 56267 0.4300 +440 56474 0.5390 +440 57761 0.9020 +440 64902 0.5030 +440 79073 0.7600 +440 79094 0.8070 +440 79587 0.4720 +440 79731 0.5560 +440 80150 0.9590 +440 80184 0.4270 +440 83667 0.4670 +440 84464 0.4610 +440 84706 0.6100 +440 85007 0.4280 +440 122622 0.9260 +440 137362 0.9490 +440 140691 0.6080 +440 158584 0.5460 +440 160428 0.4390 +440 259307 0.9130 +440 283985 0.5830 +440 339896 0.8650 +440 339983 0.9300 +440 374569 0.7940 +440 440275 0.7020 +440 554235 0.8000 +443 445 0.9160 +443 790 0.9000 +443 1267 0.5180 +443 1462 0.4490 +443 2346 0.9340 +443 2571 0.8220 +443 2572 0.8220 +443 2720 0.4490 +443 2744 0.8070 +443 2746 0.8150 +443 2747 0.8010 +443 2752 0.8310 +443 2805 0.9150 +443 2806 0.9020 +443 4118 0.4320 +443 4155 0.5210 +443 4336 0.4170 +443 5354 0.4660 +443 6500 0.4140 +443 7442 0.4180 +443 8659 0.8010 +443 9817 0.4200 +443 10841 0.8180 +443 23729 0.4970 +443 27165 0.8070 +443 55902 0.4260 +443 57494 0.9180 +443 80150 0.9050 +443 91703 0.7950 +443 122622 0.9000 +443 137362 0.9010 +443 259307 0.9000 +443 284716 0.9040 +443 285362 0.4130 +443 339896 0.8110 +443 339983 0.9770 +443 554235 0.8000 +444 488 0.4710 +444 715 0.5840 +444 716 0.5620 +444 775 0.4770 +444 779 0.5360 +444 808 0.8110 +444 810 0.7540 +444 811 0.6070 +444 834 0.4020 +444 836 0.4430 +444 844 0.9980 +444 845 0.9980 +444 1193 0.4740 +444 2159 0.9160 +444 2280 0.7370 +444 2281 0.9510 +444 3021 0.5690 +444 3270 0.4570 +444 3714 0.4700 +444 4790 0.4350 +444 4851 0.5060 +444 5000 0.4200 +444 5033 0.4660 +444 5142 0.4170 +444 5352 0.4340 +444 5566 0.5570 +444 5567 0.5550 +444 5568 0.5550 +444 5624 0.4070 +444 6261 0.9530 +444 6262 0.9980 +444 6263 0.8900 +444 6271 0.5330 +444 6345 0.4180 +444 6717 0.6820 +444 6786 0.6710 +444 8290 0.5640 +444 8337 0.5170 +444 8338 0.5180 +444 8349 0.5260 +444 8356 0.5790 +444 8361 0.4760 +444 9112 0.5940 +444 9218 0.4050 +444 10345 0.9990 +444 10439 0.4200 +444 23594 0.4050 +444 51593 0.6710 +444 51669 0.6700 +444 51742 0.4390 +444 51806 0.7540 +444 56704 0.8300 +444 57158 0.7600 +444 57338 0.7180 +444 57504 0.8070 +444 84502 0.7860 +444 84766 0.4470 +444 91860 0.7540 +444 126306 0.6720 +444 129804 0.4200 +444 163688 0.7550 +444 222229 0.5060 +444 246329 0.6410 +444 284612 0.6430 +444 375346 0.4800 +444 440093 0.5640 +444 440686 0.5640 +444 653604 0.5640 +445 471 0.4580 +445 498 0.7240 +445 509 0.4480 +445 540 0.4410 +445 586 0.5310 +445 587 0.4980 +445 635 0.4770 +445 790 0.9940 +445 875 0.5630 +445 883 0.4100 +445 1289 0.6080 +445 1373 0.9990 +445 1382 0.4070 +445 1410 0.4650 +445 1431 0.5830 +445 1491 0.6070 +445 1503 0.4740 +445 1621 0.5860 +445 1629 0.4160 +445 1725 0.4340 +445 1737 0.4030 +445 1738 0.4890 +445 1861 0.4450 +445 1869 0.4240 +445 2058 0.4430 +445 2184 0.4710 +445 2185 0.5320 +445 2271 0.6690 +445 2571 0.8380 +445 2572 0.8260 +445 2597 0.6580 +445 2618 0.4640 +445 2628 0.4420 +445 2731 0.5420 +445 2744 0.5740 +445 2746 0.6620 +445 2747 0.6090 +445 2752 0.6770 +445 2805 0.9500 +445 2806 0.9510 +445 2821 0.5180 +445 2875 0.5010 +445 2934 0.4830 +445 3032 0.4010 +445 3034 0.4590 +445 3155 0.5840 +445 3336 0.4120 +445 3417 0.5560 +445 3418 0.5700 +445 3419 0.4640 +445 3420 0.4670 +445 3421 0.4210 +445 3576 0.4200 +445 3658 0.4160 +445 3795 0.4670 +445 4010 0.4890 +445 4143 0.6100 +445 4144 0.5200 +445 4191 0.4940 +445 4513 0.4150 +445 4524 0.5000 +445 4548 0.4240 +445 4552 0.4330 +445 4609 0.4960 +445 4842 0.9600 +445 4843 0.9730 +445 4846 0.9610 +445 4935 0.9020 +445 4942 0.9880 +445 4943 0.4220 +445 4953 0.7580 +445 5009 0.9990 +445 5053 0.4440 +445 5091 0.6380 +445 5211 0.4050 +445 5230 0.4450 +445 5232 0.4190 +445 5239 0.5150 +445 5315 0.5550 +445 5351 0.4210 +445 5447 0.4620 +445 5471 0.4970 +445 5625 0.6020 +445 5723 0.6340 +445 5831 0.6370 +445 5832 0.8240 +445 6303 0.4160 +445 6364 0.4130 +445 6389 0.5350 +445 6470 0.6100 +445 6472 0.6350 +445 6510 0.4540 +445 6541 0.6560 +445 6542 0.5170 +445 6611 0.6260 +445 6672 0.4630 +445 6723 0.6100 +445 6888 0.4140 +445 6898 0.4790 +445 7054 0.4180 +445 7086 0.5160 +445 7124 0.4610 +445 7167 0.5350 +445 7248 0.5850 +445 7249 0.5500 +445 7296 0.5170 +445 7372 0.4730 +445 8192 0.5120 +445 8277 0.4220 +445 8458 0.4280 +445 8604 0.6260 +445 8623 0.4500 +445 8659 0.5140 +445 8939 0.4480 +445 8942 0.4070 +445 10157 0.7330 +445 10165 0.9460 +445 10166 0.5840 +445 10449 0.4230 +445 10606 0.6000 +445 10667 0.5640 +445 10841 0.8750 +445 10993 0.5210 +445 10994 0.4170 +445 23157 0.4090 +445 23743 0.4480 +445 23774 0.4210 +445 25885 0.5440 +445 26061 0.4040 +445 26227 0.7310 +445 26284 0.4410 +445 27158 0.4330 +445 27165 0.6220 +445 29789 0.4400 +445 29920 0.4720 +445 29968 0.6940 +445 51166 0.6850 +445 51582 0.4700 +445 51592 0.4210 +445 54187 0.5880 +445 54496 0.4090 +445 54511 0.4620 +445 55258 0.5610 +445 55748 0.7630 +445 56267 0.4160 +445 56474 0.4380 +445 56934 0.4350 +445 57407 0.8450 +445 58528 0.4040 +445 64902 0.4670 +445 65005 0.4130 +445 65263 0.5290 +445 79814 0.6360 +445 79896 0.5670 +445 80150 0.9060 +445 84076 0.4200 +445 84695 0.4130 +445 84706 0.5550 +445 84735 0.7390 +445 85477 0.5080 +445 89894 0.9020 +445 113451 0.7390 +445 122622 0.9500 +445 137362 0.9280 +445 148811 0.7330 +445 162417 0.9940 +445 169841 0.7500 +445 259307 0.9130 +445 283985 0.4090 +445 339896 0.8480 +445 339983 0.9120 +445 374569 0.5190 +445 554235 0.8240 +445 100526760 0.7330 +460 491 0.4060 +460 1462 0.4500 +460 1620 0.6060 +460 3036 0.4200 +460 3908 0.4560 +460 3912 0.4260 +460 3915 0.4400 +460 4053 0.4100 +460 5649 0.4970 +460 5803 0.4160 +460 6792 0.4060 +460 6900 0.5590 +460 9817 0.4130 +460 22871 0.4160 +460 51289 0.5070 +460 55096 0.4060 +460 55103 0.4490 +460 57575 0.4660 +460 57795 0.6200 +460 79891 0.6050 +460 113146 0.4010 +460 134829 0.4100 +460 151647 0.4050 +460 196500 0.4390 +460 339479 0.4820 +460 389073 0.5200 +462 472 0.4670 +462 563 0.4330 +462 566 0.5720 +462 629 0.4650 +462 710 0.7530 +462 715 0.4230 +462 716 0.4920 +462 718 0.6290 +462 720 0.6670 +462 721 0.6400 +462 722 0.4670 +462 725 0.4180 +462 727 0.5820 +462 731 0.6800 +462 732 0.4830 +462 733 0.4730 +462 735 0.7350 +462 866 0.4310 +462 959 0.4500 +462 960 0.7160 +462 1191 0.4270 +462 1356 0.6420 +462 1361 0.7660 +462 1401 0.7650 +462 1504 0.4460 +462 1511 0.5640 +462 1634 0.4020 +462 1636 0.4440 +462 1991 0.7530 +462 2056 0.4340 +462 2091 0.4580 +462 2147 0.9990 +462 2149 0.6700 +462 2152 0.9580 +462 2153 0.8170 +462 2155 0.9090 +462 2157 0.9060 +462 2158 0.9990 +462 2159 0.9980 +462 2160 0.9690 +462 2161 0.9690 +462 2162 0.6640 +462 2165 0.8100 +462 2168 0.4810 +462 2243 0.9800 +462 2244 0.9540 +462 2247 0.5590 +462 2248 0.5370 +462 2249 0.5820 +462 2250 0.5390 +462 2251 0.5360 +462 2252 0.5470 +462 2253 0.5300 +462 2254 0.5240 +462 2255 0.5330 +462 2266 0.9210 +462 2267 0.5280 +462 2335 0.6190 +462 2638 0.8400 +462 2811 0.7280 +462 2812 0.4060 +462 2814 0.6400 +462 2815 0.6380 +462 2875 0.5390 +462 3026 0.6420 +462 3053 0.8370 +462 3081 0.4110 +462 3083 0.4740 +462 3240 0.6300 +462 3242 0.5050 +462 3263 0.7620 +462 3273 0.8980 +462 3426 0.5450 +462 3440 0.4420 +462 3484 0.4260 +462 3486 0.4400 +462 3569 0.5130 +462 3630 0.6670 +462 3674 0.4240 +462 3690 0.4780 +462 3697 0.5660 +462 3698 0.6450 +462 3699 0.5300 +462 3700 0.4860 +462 3816 0.4410 +462 3818 0.7670 +462 3827 0.7580 +462 3990 0.5120 +462 4018 0.8040 +462 4143 0.4750 +462 4153 0.5090 +462 4351 0.6750 +462 4524 0.7120 +462 5004 0.6440 +462 5005 0.6330 +462 5053 0.5600 +462 5104 0.7210 +462 5176 0.6670 +462 5196 0.7060 +462 5197 0.8050 +462 5265 0.6800 +462 5267 0.6250 +462 5327 0.9140 +462 5328 0.4230 +462 5340 0.9920 +462 5345 0.7880 +462 5373 0.5570 +462 5444 0.5370 +462 5473 0.6930 +462 5479 0.4250 +462 5624 0.9240 +462 5627 0.7430 +462 5648 0.5540 +462 5858 0.4510 +462 5950 0.4400 +462 5972 0.4140 +462 6382 0.7920 +462 6385 0.6050 +462 6403 0.5610 +462 6462 0.4830 +462 6513 0.4370 +462 6514 0.5540 +462 6517 0.4500 +462 6694 0.6560 +462 6906 0.6040 +462 7018 0.5540 +462 7035 0.9390 +462 7040 0.4660 +462 7056 0.9120 +462 7099 0.4180 +462 7124 0.4590 +462 7276 0.6810 +462 7448 0.9490 +462 7450 0.8600 +462 7903 0.5040 +462 7980 0.4780 +462 8802 0.5090 +462 8817 0.5350 +462 8822 0.5360 +462 8823 0.5250 +462 8858 0.5310 +462 8942 0.4020 +462 9446 0.4040 +462 9622 0.8640 +462 9957 0.6050 +462 10423 0.4240 +462 10544 0.7020 +462 10747 0.5040 +462 10841 0.5960 +462 10998 0.4360 +462 11093 0.5310 +462 26281 0.5360 +462 27006 0.5360 +462 27329 0.5010 +462 51156 0.5560 +462 51270 0.5060 +462 54757 0.4020 +462 55937 0.4780 +462 56154 0.4740 +462 56975 0.6350 +462 57126 0.4970 +462 57817 0.4470 +462 79053 0.4730 +462 79644 0.4930 +462 84647 0.4450 +462 116519 0.5340 +462 157680 0.4300 +462 256394 0.4330 +462 344805 0.6120 +462 374569 0.6040 +462 440387 0.4510 +463 472 0.5790 +463 563 0.4240 +463 861 0.4010 +463 864 0.9550 +463 1026 0.7810 +463 1108 0.6310 +463 1316 0.4640 +463 1482 0.5370 +463 1757 0.4260 +463 2099 0.4980 +463 2115 0.5350 +463 3782 0.7170 +463 4601 0.4140 +463 4602 0.4300 +463 4625 0.4530 +463 4782 0.5390 +463 4795 0.4310 +463 4815 0.4390 +463 4929 0.4090 +463 5076 0.4170 +463 5125 0.4270 +463 5308 0.7200 +463 5364 0.4080 +463 5396 0.5270 +463 5449 0.8540 +463 5635 0.4100 +463 5725 0.4380 +463 6041 0.4050 +463 6575 0.5630 +463 6774 0.4190 +463 6926 0.6440 +463 7040 0.7630 +463 7113 0.4890 +463 7252 0.5880 +463 8085 0.4930 +463 8379 0.4320 +463 8895 0.4340 +463 9148 0.4750 +463 9159 0.4260 +463 9734 0.5110 +463 9968 0.5140 +463 10021 0.4450 +463 10100 0.4830 +463 10401 0.7890 +463 22853 0.4260 +463 23224 0.4720 +463 23301 0.4290 +463 23316 0.5470 +463 23600 0.4240 +463 27232 0.4350 +463 29803 0.4010 +463 30012 0.4140 +463 55251 0.4150 +463 57673 0.4220 +463 58508 0.5870 +463 60528 0.5130 +463 79933 0.6920 +463 84909 0.5070 +463 85414 0.4300 +463 114788 0.4490 +463 116931 0.4140 +463 126820 0.4520 +463 147991 0.4170 +463 221895 0.4420 +463 254827 0.5280 +466 468 0.8470 +466 648 0.4740 +466 672 0.5780 +466 814 0.7400 +466 815 0.7460 +466 816 0.6500 +466 1147 0.5580 +466 1385 0.9470 +466 1386 0.9460 +466 1387 0.7460 +466 1388 0.8010 +466 1390 0.6130 +466 1958 0.5870 +466 2033 0.7340 +466 2130 0.8740 +466 2353 0.6100 +466 2521 0.8290 +466 2551 0.4430 +466 3725 0.4320 +466 4772 0.4230 +466 4783 0.4610 +466 5566 0.7910 +466 5567 0.7930 +466 5568 0.7910 +466 5587 0.6560 +466 5600 0.5260 +466 5603 0.5540 +466 5978 0.5300 +466 6195 0.5160 +466 6927 0.4940 +466 6938 0.5450 +466 7158 0.4390 +466 7286 0.4510 +466 7425 0.4990 +466 7867 0.6690 +466 8536 0.7150 +466 9252 0.9600 +466 9261 0.7300 +466 9474 0.4500 +466 9586 0.8410 +466 10488 0.8880 +466 23435 0.7160 +466 23683 0.6570 +466 25865 0.6500 +466 56302 0.4260 +466 57118 0.6950 +466 57172 0.7100 +466 64764 0.9300 +466 84699 0.8360 +466 90993 0.8550 +466 148327 0.8610 +466 153222 0.4730 +467 468 0.9890 +467 595 0.4530 +467 596 0.4530 +467 627 0.5540 +467 836 0.4960 +467 891 0.5060 +467 1026 0.7370 +467 1050 0.6570 +467 1051 0.9800 +467 1052 0.5350 +467 1053 0.6430 +467 1054 0.8340 +467 1164 0.4190 +467 1316 0.7210 +467 1385 0.8410 +467 1386 0.7580 +467 1387 0.6810 +467 1388 0.4110 +467 1390 0.5690 +467 1432 0.4580 +467 1490 0.4670 +467 1499 0.4180 +467 1545 0.4310 +467 1647 0.7760 +467 1649 0.9880 +467 1827 0.5110 +467 1839 0.4460 +467 1843 0.8330 +467 1844 0.4930 +467 1847 0.6080 +467 1958 0.8730 +467 1959 0.8030 +467 1960 0.7110 +467 1961 0.4400 +467 1965 0.7660 +467 1968 0.5480 +467 2033 0.6240 +467 2052 0.4160 +467 2081 0.6020 +467 2099 0.5760 +467 2146 0.5080 +467 2305 0.4820 +467 2353 0.9940 +467 2354 0.9410 +467 2355 0.6720 +467 2596 0.5320 +467 2597 0.5610 +467 2670 0.5380 +467 2920 0.5410 +467 2932 0.7060 +467 3050 0.5810 +467 3065 0.9180 +467 3091 0.4850 +467 3162 0.4650 +467 3164 0.7720 +467 3184 0.4550 +467 3265 0.4940 +467 3303 0.6500 +467 3304 0.6380 +467 3309 0.6430 +467 3310 0.4150 +467 3312 0.5380 +467 3315 0.4250 +467 3320 0.4380 +467 3326 0.5490 +467 3337 0.4480 +467 3458 0.4570 +467 3475 0.6320 +467 3491 0.7170 +467 3553 0.7090 +467 3569 0.7790 +467 3576 0.4530 +467 3627 0.4040 +467 3630 0.4110 +467 3659 0.5180 +467 3662 0.4390 +467 3665 0.4230 +467 3725 0.9990 +467 3726 0.9640 +467 3727 0.9940 +467 3929 0.4010 +467 4087 0.6800 +467 4088 0.9880 +467 4089 0.6360 +467 4094 0.5230 +467 4097 0.5610 +467 4099 0.5150 +467 4170 0.6560 +467 4189 0.4440 +467 4193 0.9420 +467 4205 0.5860 +467 4318 0.5980 +467 4609 0.7370 +467 4616 0.8240 +467 4654 0.4140 +467 4772 0.6700 +467 4773 0.4340 +467 4776 0.4030 +467 4778 0.4070 +467 4780 0.6330 +467 4783 0.5360 +467 4790 0.6340 +467 4792 0.6760 +467 4803 0.5720 +467 4828 0.4150 +467 4901 0.5140 +467 4929 0.7500 +467 5125 0.4960 +467 5354 0.4950 +467 5366 0.5790 +467 5468 0.4320 +467 5534 0.4110 +467 5594 0.4600 +467 5595 0.5440 +467 5597 0.4100 +467 5599 0.7570 +467 5600 0.4170 +467 5601 0.6450 +467 5603 0.4160 +467 5610 0.4560 +467 5611 0.4500 +467 5728 0.4200 +467 5743 0.5670 +467 5816 0.4050 +467 5966 0.4320 +467 5970 0.7160 +467 5971 0.4120 +467 5976 0.4760 +467 5996 0.4060 +467 6300 0.4100 +467 6347 0.7040 +467 6351 0.4030 +467 6556 0.4230 +467 6591 0.4890 +467 6597 0.9080 +467 6664 0.4740 +467 6688 0.5870 +467 6698 0.4100 +467 6714 0.6220 +467 6772 0.5970 +467 6774 0.7290 +467 6790 0.4250 +467 6929 0.6280 +467 6938 0.4060 +467 7071 0.4840 +467 7096 0.4570 +467 7099 0.4510 +467 7124 0.5700 +467 7128 0.5430 +467 7157 0.9820 +467 7158 0.4780 +467 7184 0.4110 +467 7391 0.6860 +467 7442 0.5060 +467 7494 0.8240 +467 7538 0.5060 +467 7832 0.6390 +467 7837 0.4040 +467 7975 0.5200 +467 8013 0.6140 +467 8061 0.8800 +467 8202 0.4960 +467 8290 0.4030 +467 8361 0.4050 +467 8553 0.4620 +467 8626 0.4160 +467 8767 0.4320 +467 8841 0.4370 +467 8878 0.5220 +467 8894 0.5670 +467 9020 0.4130 +467 9021 0.5270 +467 9133 0.4450 +467 9314 0.6810 +467 9451 0.5670 +467 9454 0.4870 +467 9455 0.4930 +467 9518 0.6210 +467 9592 0.7180 +467 9709 0.5010 +467 9759 0.4620 +467 9935 0.7500 +467 10013 0.4460 +467 10014 0.4660 +467 10221 0.4210 +467 10498 0.4270 +467 10524 0.4330 +467 10538 0.7060 +467 10558 0.5340 +467 10912 0.4670 +467 11016 0.6340 +467 11065 0.4470 +467 11266 0.7510 +467 22809 0.5750 +467 22926 0.7770 +467 23645 0.8960 +467 23764 0.8680 +467 30001 0.5890 +467 51083 0.5200 +467 54206 0.4710 +467 54541 0.4290 +467 54676 0.4150 +467 55509 0.6830 +467 55816 0.5000 +467 57761 0.8620 +467 64332 0.6080 +467 64651 0.5480 +467 79094 0.8790 +467 79602 0.4610 +467 83667 0.4890 +467 84617 0.4460 +467 84668 0.4240 +467 116071 0.4500 +467 121340 0.4200 +467 122953 0.7250 +467 134266 0.4530 +467 137902 0.4020 +467 146713 0.4050 +467 150094 0.5170 +467 259217 0.4140 +467 440275 0.4830 +468 581 0.4170 +468 596 0.5970 +468 632 0.7040 +468 811 0.4800 +468 814 0.9150 +468 815 0.7060 +468 816 0.6880 +468 821 0.4390 +468 836 0.6020 +468 842 0.4350 +468 860 0.8420 +468 1050 0.6640 +468 1051 0.9970 +468 1052 0.6430 +468 1053 0.5510 +468 1054 0.9770 +468 1385 0.9590 +468 1386 0.9320 +468 1387 0.9870 +468 1388 0.9620 +468 1390 0.9200 +468 1613 0.4070 +468 1649 0.9960 +468 1728 0.5610 +468 1965 0.9890 +468 1968 0.5870 +468 2033 0.9880 +468 2081 0.8350 +468 2114 0.4370 +468 2197 0.5500 +468 2308 0.6630 +468 2353 0.8310 +468 2475 0.5720 +468 2550 0.5540 +468 2597 0.5550 +468 2729 0.5180 +468 2730 0.6600 +468 2872 0.9100 +468 2874 0.4340 +468 2879 0.4290 +468 2887 0.7780 +468 2932 0.9320 +468 2959 0.5880 +468 3091 0.4990 +468 3162 0.7600 +468 3163 0.4440 +468 3199 0.4970 +468 3309 0.9750 +468 3381 0.6210 +468 3484 0.7820 +468 3553 0.4280 +468 3569 0.4140 +468 3576 0.7970 +468 3600 0.4060 +468 3630 0.5180 +468 3725 0.9280 +468 3726 0.5260 +468 3727 0.5530 +468 3921 0.5420 +468 4094 0.5110 +468 4189 0.5840 +468 4193 0.5010 +468 4217 0.5130 +468 4736 0.6130 +468 4780 0.9530 +468 4792 0.4190 +468 4943 0.4910 +468 5033 0.4450 +468 5366 0.4090 +468 5468 0.4240 +468 5499 0.6870 +468 5500 0.7210 +468 5501 0.7390 +468 5566 0.9260 +468 5567 0.9250 +468 5568 0.9260 +468 5578 0.6870 +468 5579 0.6760 +468 5582 0.6510 +468 5587 0.6630 +468 5592 0.6950 +468 5593 0.6730 +468 5594 0.7020 +468 5595 0.7500 +468 5610 0.7550 +468 5611 0.5940 +468 6122 0.5450 +468 6123 0.4990 +468 6124 0.5510 +468 6125 0.6040 +468 6128 0.5480 +468 6129 0.5220 +468 6130 0.5230 +468 6132 0.5450 +468 6133 0.5710 +468 6135 0.5480 +468 6136 0.5560 +468 6137 0.5510 +468 6138 0.5150 +468 6139 0.5490 +468 6141 0.5220 +468 6142 0.5310 +468 6143 0.5850 +468 6144 0.5300 +468 6146 0.5250 +468 6147 0.5200 +468 6152 0.5300 +468 6154 0.5370 +468 6155 0.5440 +468 6156 0.5200 +468 6157 0.5110 +468 6158 0.5200 +468 6159 0.5190 +468 6160 0.5220 +468 6161 0.5850 +468 6164 0.5360 +468 6165 0.5260 +468 6166 0.5190 +468 6167 0.5110 +468 6168 0.5160 +468 6169 0.5310 +468 6170 0.5130 +468 6171 0.6000 +468 6173 0.5100 +468 6175 0.6490 +468 6176 0.5590 +468 6181 0.5550 +468 6187 0.5340 +468 6188 0.5770 +468 6189 0.5670 +468 6191 0.5340 +468 6192 0.5000 +468 6193 0.5440 +468 6194 0.7240 +468 6195 0.9130 +468 6196 0.9070 +468 6197 0.9540 +468 6198 0.4320 +468 6201 0.5310 +468 6202 0.5560 +468 6203 0.5870 +468 6204 0.5270 +468 6205 0.5860 +468 6206 0.5140 +468 6207 0.5300 +468 6208 0.5170 +468 6209 0.5500 +468 6210 0.5430 +468 6217 0.5260 +468 6218 0.5450 +468 6222 0.5520 +468 6223 0.5500 +468 6224 0.5480 +468 6227 0.5160 +468 6228 0.5330 +468 6229 0.5300 +468 6230 0.5220 +468 6231 0.5030 +468 6232 0.5510 +468 6233 0.5190 +468 6234 0.5690 +468 6235 0.5130 +468 6303 0.5620 +468 6347 0.8140 +468 6520 0.4530 +468 6612 0.4330 +468 6720 0.4190 +468 6774 0.5650 +468 6809 0.4220 +468 7124 0.4050 +468 7157 0.4500 +468 7184 0.6300 +468 7186 0.4030 +468 7276 0.4650 +468 7311 0.5400 +468 7350 0.4170 +468 7494 0.9170 +468 7837 0.4460 +468 7867 0.9030 +468 8061 0.7960 +468 8192 0.4560 +468 8408 0.4060 +468 8417 0.4690 +468 8419 0.5280 +468 8536 0.6820 +468 8569 0.9110 +468 8678 0.4720 +468 8720 0.4790 +468 8795 0.4190 +468 8878 0.4530 +468 8894 0.7190 +468 8945 0.9080 +468 8974 0.4390 +468 8986 0.9000 +468 9045 0.5830 +468 9252 0.9020 +468 9261 0.9060 +468 9349 0.5440 +468 9361 0.4650 +468 9451 0.9920 +468 9474 0.4630 +468 9482 0.5030 +468 9586 0.9210 +468 9601 0.4310 +468 9695 0.6110 +468 9709 0.8950 +468 9759 0.6580 +468 9817 0.6940 +468 10000 0.6760 +468 10014 0.4650 +468 10018 0.4390 +468 10209 0.4700 +468 10488 0.9400 +468 10525 0.5010 +468 10533 0.4280 +468 10538 0.6270 +468 10595 0.5120 +468 10797 0.5520 +468 10891 0.4060 +468 10985 0.6070 +468 11224 0.5430 +468 11231 0.4270 +468 11243 0.4900 +468 11315 0.4290 +468 22809 0.6290 +468 22926 0.9420 +468 23172 0.5690 +468 23291 0.5410 +468 23314 0.6920 +468 23521 0.5610 +468 23645 0.9790 +468 23657 0.7280 +468 23683 0.6500 +468 25865 0.6520 +468 25873 0.5220 +468 26291 0.5500 +468 26471 0.4070 +468 27102 0.8200 +468 27185 0.6100 +468 27330 0.9000 +468 29903 0.6050 +468 29968 0.4620 +468 30001 0.5580 +468 50615 0.4100 +468 51065 0.5180 +468 51121 0.5010 +468 51360 0.4720 +468 54205 0.4530 +468 54407 0.4260 +468 54541 0.4160 +468 55157 0.4050 +468 55272 0.4080 +468 55787 0.8320 +468 57118 0.6820 +468 57172 0.6910 +468 57761 0.9830 +468 58487 0.7780 +468 58528 0.4320 +468 64764 0.9270 +468 65018 0.4340 +468 79094 0.8400 +468 80184 0.6190 +468 81631 0.5020 +468 83667 0.4960 +468 83939 0.6830 +468 84699 0.9350 +468 84919 0.5980 +468 90993 0.9290 +468 112398 0.4330 +468 112399 0.7760 +468 116071 0.4700 +468 116832 0.4990 +468 121340 0.5730 +468 137902 0.4450 +468 140032 0.4990 +468 140801 0.5270 +468 148327 0.9290 +468 200186 0.8380 +468 200916 0.5070 +468 253260 0.4310 +468 440275 0.9170 +468 100527963 0.4890 +471 498 0.4310 +471 513 0.4120 +471 586 0.4540 +471 790 0.6580 +471 833 0.7260 +471 953 0.9190 +471 955 0.9070 +471 956 0.9130 +471 957 0.9100 +471 978 0.4030 +471 990 0.4490 +471 1159 0.4260 +471 1373 0.4210 +471 1487 0.5420 +471 1488 0.4360 +471 1503 0.6340 +471 1639 0.6280 +471 1719 0.9870 +471 1723 0.6640 +471 1738 0.4590 +471 1757 0.5460 +471 1806 0.6000 +471 1807 0.5650 +471 1808 0.4090 +471 1809 0.4230 +471 1841 0.4890 +471 1890 0.4330 +471 1937 0.6910 +471 1938 0.6150 +471 2058 0.5440 +471 2166 0.7300 +471 2271 0.6220 +471 2335 0.5760 +471 2356 0.7850 +471 2582 0.5030 +471 2584 0.4110 +471 2597 0.4410 +471 2618 0.9990 +471 2653 0.5920 +471 2673 0.4730 +471 2731 0.7560 +471 2746 0.4200 +471 2747 0.4150 +471 2752 0.7690 +471 2766 0.9750 +471 2885 0.7180 +471 2894 0.4200 +471 2983 0.4020 +471 2987 0.5580 +471 3092 0.5140 +471 3251 0.9580 +471 3309 0.4800 +471 3326 0.4750 +471 3329 0.5810 +471 3376 0.4180 +471 3614 0.9790 +471 3615 0.9910 +471 3667 0.5210 +471 3704 0.9740 +471 3735 0.5060 +471 3799 0.6550 +471 3814 0.4130 +471 3831 0.6510 +471 4008 0.5030 +471 4172 0.4530 +471 4191 0.4990 +471 4478 0.6660 +471 4522 0.9980 +471 4524 0.7870 +471 4528 0.4550 +471 4548 0.9720 +471 4552 0.5680 +471 4627 0.4100 +471 4691 0.4630 +471 4831 0.4310 +471 4860 0.4960 +471 4869 0.8790 +471 4907 0.9370 +471 4935 0.4090 +471 5034 0.4040 +471 5042 0.4090 +471 5162 0.4110 +471 5188 0.8620 +471 5198 0.8190 +471 5295 0.4990 +471 5335 0.5080 +471 5431 0.4520 +471 5471 0.9950 +471 5495 0.5390 +471 5571 0.8260 +471 5573 0.6580 +471 5631 0.5770 +471 5634 0.5570 +471 5705 0.4170 +471 5723 0.5980 +471 5832 0.4850 +471 5903 0.7930 +471 5981 0.4570 +471 6120 0.4140 +471 6122 0.5390 +471 6139 0.4400 +471 6175 0.4840 +471 6182 0.4310 +471 6188 0.4980 +471 6193 0.4620 +471 6207 0.4960 +471 6238 0.5910 +471 6240 0.6200 +471 6464 0.5730 +471 6470 0.9980 +471 6472 0.9950 +471 6573 0.6620 +471 6652 0.8600 +471 6774 0.5580 +471 6801 0.6300 +471 6836 0.8130 +471 6950 0.7110 +471 7083 0.4790 +471 7086 0.4330 +471 7167 0.5240 +471 7170 0.8090 +471 7171 0.8050 +471 7175 0.5080 +471 7203 0.4370 +471 7284 0.4460 +471 7298 0.8570 +471 7371 0.4250 +471 7372 0.7650 +471 7407 0.4960 +471 7414 0.5470 +471 7531 0.4940 +471 8195 0.5160 +471 8218 0.5400 +471 8458 0.5500 +471 8496 0.7040 +471 8663 0.4210 +471 8761 0.4530 +471 8802 0.4920 +471 8833 0.9210 +471 8836 0.7250 +471 8878 0.5930 +471 9093 0.4360 +471 9343 0.4910 +471 9451 0.4990 +471 9563 0.5430 +471 9583 0.9220 +471 9615 0.4270 +471 9648 0.5820 +471 9659 0.4300 +471 9945 0.4220 +471 9962 0.4600 +471 9963 0.4600 +471 10007 0.4460 +471 10342 0.7070 +471 10574 0.8810 +471 10575 0.4390 +471 10576 0.4360 +471 10588 0.6050 +471 10606 0.9970 +471 10797 0.9920 +471 10817 0.5130 +471 10818 0.5280 +471 10840 0.5050 +471 10841 0.9530 +471 10845 0.5310 +471 10989 0.4200 +471 22872 0.8020 +471 22978 0.9100 +471 22984 0.4330 +471 25796 0.5220 +471 25902 0.9940 +471 26227 0.5720 +471 26504 0.6300 +471 26505 0.6330 +471 26507 0.6300 +471 26986 0.4580 +471 27436 0.8070 +471 29958 0.5110 +471 29968 0.6320 +471 30833 0.9050 +471 51026 0.4230 +471 51071 0.4710 +471 51081 0.5110 +471 51095 0.4060 +471 51251 0.9120 +471 51292 0.7040 +471 51422 0.8220 +471 51520 0.4710 +471 51557 0.7340 +471 51727 0.4690 +471 53335 0.5350 +471 53632 0.8240 +471 54431 0.4130 +471 54541 0.4140 +471 54802 0.4390 +471 54805 0.6460 +471 54870 0.7030 +471 55066 0.4350 +471 55152 0.7010 +471 55191 0.4420 +471 55278 0.7410 +471 55699 0.4150 +471 55703 0.4570 +471 55759 0.4100 +471 56474 0.4790 +471 56896 0.4010 +471 56952 0.4010 +471 56953 0.9100 +471 57448 0.5080 +471 57674 0.4930 +471 63875 0.4240 +471 64080 0.4090 +471 64960 0.4320 +471 64965 0.4350 +471 79053 0.4080 +471 79587 0.4710 +471 79631 0.4410 +471 79738 0.5290 +471 80304 0.6720 +471 80347 0.5620 +471 81570 0.5420 +471 81671 0.4090 +471 83475 0.8100 +471 84172 0.4520 +471 84284 0.5110 +471 84618 0.9290 +471 85476 0.4450 +471 93034 0.9190 +471 113235 0.5120 +471 115024 0.9060 +471 122622 0.9960 +471 123263 0.5890 +471 124583 0.9420 +471 127845 0.4130 +471 131870 0.9020 +471 157753 0.5070 +471 158067 0.5080 +471 158584 0.7300 +471 160428 0.4580 +471 162417 0.4280 +471 200895 0.9740 +471 221264 0.4180 +471 221823 0.5450 +471 377841 0.9190 +471 441024 0.9890 +471 548596 0.4020 +471 100526794 0.9190 +472 545 0.9990 +472 546 0.8970 +472 567 0.4660 +472 580 0.9460 +472 595 0.6920 +472 596 0.7120 +472 598 0.6170 +472 641 0.9910 +472 648 0.8260 +472 657 0.4330 +472 672 0.9990 +472 673 0.7780 +472 675 0.9950 +472 695 0.6320 +472 699 0.4890 +472 701 0.5270 +472 835 0.4690 +472 836 0.7020 +472 840 0.4460 +472 841 0.9610 +472 842 0.5670 +472 857 0.5210 +472 861 0.4870 +472 867 0.4230 +472 891 0.7750 +472 894 0.4760 +472 896 0.4780 +472 898 0.5370 +472 900 0.5950 +472 904 0.5980 +472 905 0.5820 +472 920 0.5330 +472 921 0.4250 +472 925 0.5390 +472 930 0.4360 +472 952 0.4340 +472 960 0.4340 +472 983 0.7330 +472 990 0.6470 +472 991 0.4640 +472 993 0.8610 +472 994 0.4750 +472 995 0.8130 +472 999 0.4780 +472 1015 0.4750 +472 1017 0.9660 +472 1019 0.9370 +472 1021 0.6190 +472 1022 0.6840 +472 1025 0.7210 +472 1026 0.8070 +472 1027 0.7130 +472 1029 0.8470 +472 1030 0.5180 +472 1031 0.5440 +472 1033 0.5310 +472 1062 0.5190 +472 1069 0.9250 +472 1105 0.4180 +472 1107 0.4310 +472 1108 0.6060 +472 1111 0.9980 +472 1147 0.7470 +472 1161 0.9350 +472 1263 0.4700 +472 1385 0.7350 +472 1386 0.6510 +472 1387 0.4970 +472 1408 0.5630 +472 1432 0.7220 +472 1436 0.4120 +472 1453 0.4160 +472 1457 0.4060 +472 1493 0.4450 +472 1499 0.6200 +472 1612 0.4220 +472 1616 0.8130 +472 1642 0.5640 +472 1643 0.7120 +472 1647 0.7460 +472 1653 0.4350 +472 1763 0.9500 +472 1786 0.6960 +472 1788 0.4780 +472 1789 0.4130 +472 1791 0.4350 +472 1869 0.7560 +472 1870 0.4640 +472 1871 0.4930 +472 1874 0.4320 +472 1894 0.4870 +472 1950 0.4760 +472 1956 0.6810 +472 1978 0.5550 +472 2033 0.9040 +472 2064 0.7480 +472 2065 0.4670 +472 2066 0.5260 +472 2067 0.9750 +472 2068 0.9140 +472 2070 0.5290 +472 2071 0.8630 +472 2072 0.9650 +472 2073 0.9750 +472 2074 0.5170 +472 2099 0.6010 +472 2138 0.5640 +472 2139 0.5320 +472 2140 0.6050 +472 2146 0.5890 +472 2175 0.7370 +472 2176 0.7750 +472 2177 0.9890 +472 2178 0.6510 +472 2187 0.4110 +472 2188 0.5270 +472 2189 0.8060 +472 2195 0.4090 +472 2237 0.7530 +472 2260 0.5120 +472 2261 0.5710 +472 2263 0.7050 +472 2272 0.4080 +472 2280 0.4090 +472 2305 0.4340 +472 2308 0.7510 +472 2309 0.8260 +472 2322 0.5160 +472 2353 0.4700 +472 2475 0.4080 +472 2521 0.6110 +472 2547 0.9970 +472 2597 0.6240 +472 2624 0.4090 +472 2625 0.4400 +472 2629 0.4370 +472 2735 0.5390 +472 2767 0.5390 +472 2776 0.4250 +472 2778 0.5710 +472 2810 0.6040 +472 2932 0.4890 +472 2956 0.9990 +472 2962 0.5080 +472 2963 0.5000 +472 2965 0.5850 +472 2966 0.5900 +472 2967 0.5590 +472 2968 0.5560 +472 3005 0.4820 +472 3014 0.9980 +472 3015 0.4620 +472 3017 0.6410 +472 3018 0.6440 +472 3021 0.7670 +472 3064 0.6220 +472 3065 0.9480 +472 3066 0.5250 +472 3091 0.6880 +472 3105 0.5730 +472 3161 0.4980 +472 3265 0.6000 +472 3303 0.4750 +472 3304 0.4930 +472 3308 0.5360 +472 3309 0.4790 +472 3315 0.6230 +472 3316 0.6080 +472 3320 0.7850 +472 3326 0.6850 +472 3364 0.9280 +472 3417 0.5780 +472 3418 0.5100 +472 3458 0.4470 +472 3479 0.6170 +472 3480 0.4540 +472 3551 0.6350 +472 3553 0.4460 +472 3569 0.5480 +472 3572 0.4480 +472 3576 0.4090 +472 3630 0.5210 +472 3646 0.7680 +472 3659 0.6580 +472 3661 0.6240 +472 3716 0.4550 +472 3717 0.5460 +472 3718 0.5150 +472 3725 0.5650 +472 3791 0.4570 +472 3815 0.5460 +472 3845 0.7180 +472 3960 0.4720 +472 3978 0.6030 +472 3980 0.6520 +472 3981 0.9870 +472 4000 0.4110 +472 4001 0.4380 +472 4072 0.4480 +472 4077 0.6090 +472 4087 0.4700 +472 4089 0.6540 +472 4092 0.5930 +472 4170 0.5760 +472 4171 0.4200 +472 4172 0.4510 +472 4173 0.4390 +472 4193 0.9950 +472 4194 0.9540 +472 4214 0.4990 +472 4255 0.5700 +472 4292 0.9970 +472 4297 0.6440 +472 4318 0.4040 +472 4331 0.5560 +472 4361 0.9990 +472 4436 0.9990 +472 4437 0.9380 +472 4438 0.7600 +472 4439 0.7050 +472 4591 0.5810 +472 4595 0.6620 +472 4609 0.8710 +472 4613 0.4750 +472 4683 0.9990 +472 4691 0.4030 +472 4751 0.4110 +472 4763 0.7320 +472 4771 0.4010 +472 4780 0.4210 +472 4790 0.7460 +472 4792 0.4600 +472 4824 0.6750 +472 4851 0.7230 +472 4853 0.4300 +472 4863 0.7220 +472 4869 0.6510 +472 4893 0.6320 +472 4913 0.4590 +472 4968 0.6300 +472 5071 0.4910 +472 5111 0.6920 +472 5144 0.4740 +472 5156 0.4930 +472 5216 0.4620 +472 5241 0.4840 +472 5266 0.5980 +472 5290 0.4460 +472 5295 0.6090 +472 5347 0.7680 +472 5366 0.5700 +472 5378 0.8630 +472 5395 0.8860 +472 5423 0.5020 +472 5424 0.9600 +472 5425 0.5250 +472 5426 0.7940 +472 5427 0.5100 +472 5428 0.4390 +472 5429 0.5360 +472 5431 0.5500 +472 5432 0.5640 +472 5433 0.5260 +472 5434 0.5260 +472 5435 0.5480 +472 5436 0.5000 +472 5437 0.5290 +472 5438 0.5140 +472 5439 0.5000 +472 5440 0.4990 +472 5441 0.5000 +472 5460 0.4540 +472 5468 0.4180 +472 5515 0.5330 +472 5518 0.5210 +472 5525 0.4660 +472 5527 0.6610 +472 5528 0.4700 +472 5531 0.4880 +472 5536 0.4580 +472 5562 0.5100 +472 5563 0.5380 +472 5578 0.4740 +472 5591 0.9710 +472 5594 0.6220 +472 5595 0.5320 +472 5599 0.7920 +472 5604 0.5270 +472 5644 0.4750 +472 5727 0.5680 +472 5728 0.8970 +472 5781 0.4860 +472 5788 0.4640 +472 5810 0.8620 +472 5830 0.9640 +472 5883 0.9610 +472 5884 0.9830 +472 5885 0.5170 +472 5887 0.9410 +472 5888 0.9950 +472 5889 0.9210 +472 5890 0.8650 +472 5892 0.9300 +472 5893 0.9400 +472 5925 0.4490 +472 5932 0.9730 +472 5965 0.5720 +472 5966 0.4140 +472 5970 0.5450 +472 5976 0.4050 +472 5979 0.5750 +472 5980 0.5410 +472 5981 0.7990 +472 5982 0.8940 +472 5983 0.7020 +472 5984 0.8650 +472 5985 0.7060 +472 6009 0.5560 +472 6047 0.6340 +472 6098 0.4240 +472 6117 0.9280 +472 6118 0.9500 +472 6119 0.7200 +472 6125 0.4140 +472 6135 0.4670 +472 6194 0.5470 +472 6195 0.5660 +472 6197 0.5610 +472 6198 0.7250 +472 6199 0.4020 +472 6233 0.5670 +472 6240 0.5220 +472 6241 0.4230 +472 6416 0.4280 +472 6419 0.5000 +472 6426 0.6730 +472 6464 0.4070 +472 6502 0.5830 +472 6595 0.4320 +472 6596 0.4500 +472 6597 0.7860 +472 6598 0.6430 +472 6613 0.6740 +472 6615 0.5690 +472 6648 0.4550 +472 6657 0.4160 +472 6672 0.5480 +472 6714 0.5330 +472 6720 0.4300 +472 6737 0.4280 +472 6749 0.5970 +472 6772 0.4330 +472 6774 0.5920 +472 6777 0.4190 +472 6790 0.5220 +472 6794 0.8900 +472 6827 0.5180 +472 6829 0.5570 +472 6839 0.4650 +472 6847 0.4760 +472 6872 0.4400 +472 6885 0.7970 +472 6905 0.5070 +472 6917 0.5720 +472 6921 0.5640 +472 6923 0.5620 +472 6924 0.5110 +472 7013 0.9550 +472 7014 0.8140 +472 7015 0.8250 +472 7040 0.6190 +472 7046 0.5780 +472 7048 0.6310 +472 7071 0.4140 +472 7124 0.5450 +472 7150 0.7220 +472 7153 0.5600 +472 7155 0.6370 +472 7156 0.8870 +472 7157 0.9990 +472 7158 0.9990 +472 7161 0.4380 +472 7178 0.4150 +472 7189 0.5270 +472 7249 0.7350 +472 7273 0.5020 +472 7276 0.4580 +472 7292 0.4890 +472 7311 0.5180 +472 7314 0.5650 +472 7316 0.7330 +472 7329 0.7850 +472 7334 0.8390 +472 7336 0.6080 +472 7341 0.6900 +472 7347 0.4450 +472 7398 0.4820 +472 7403 0.7120 +472 7428 0.7010 +472 7465 0.7660 +472 7468 0.7150 +472 7469 0.5000 +472 7486 0.9550 +472 7490 0.4090 +472 7507 0.9080 +472 7508 0.9620 +472 7514 0.6720 +472 7515 0.8350 +472 7516 0.8180 +472 7517 0.9180 +472 7518 0.9800 +472 7520 0.9980 +472 7535 0.4690 +472 7837 0.5710 +472 7874 0.5790 +472 7936 0.5550 +472 7979 0.6650 +472 8065 0.5010 +472 8085 0.5110 +472 8091 0.4720 +472 8115 0.5540 +472 8178 0.5420 +472 8243 0.8900 +472 8289 0.6610 +472 8290 0.8710 +472 8295 0.7720 +472 8314 0.6180 +472 8315 0.5200 +472 8317 0.4910 +472 8318 0.7580 +472 8337 0.8010 +472 8338 0.8010 +472 8340 0.6430 +472 8341 0.6410 +472 8342 0.6400 +472 8345 0.6430 +472 8347 0.6400 +472 8348 0.6460 +472 8349 0.7450 +472 8356 0.7660 +472 8361 0.7720 +472 8369 0.5620 +472 8396 0.4290 +472 8405 0.7220 +472 8438 0.7560 +472 8445 0.8690 +472 8451 0.4530 +472 8467 0.6060 +472 8493 0.9240 +472 8505 0.5380 +472 8517 0.9900 +472 8554 0.4020 +472 8607 0.4450 +472 8651 0.7330 +472 8660 0.5180 +472 8678 0.4380 +472 8737 0.5850 +472 8812 0.6120 +472 8837 0.4300 +472 8850 0.6160 +472 8863 0.7780 +472 8878 0.9330 +472 8900 0.8100 +472 8914 0.8170 +472 8915 0.4640 +472 8924 0.5570 +472 8970 0.6420 +472 8988 0.6080 +472 9025 0.9260 +472 9031 0.4870 +472 9126 0.8060 +472 9150 0.7170 +472 9156 0.9630 +472 9184 0.4550 +472 9203 0.4260 +472 9212 0.5470 +472 9261 0.4010 +472 9400 0.6680 +472 9401 0.8580 +472 9474 0.4160 +472 9521 0.8380 +472 9555 0.4200 +472 9577 0.7770 +472 9611 0.4270 +472 9641 0.4460 +472 9656 0.9990 +472 9675 0.6460 +472 9682 0.6930 +472 9730 0.4480 +472 9736 0.5110 +472 9759 0.6230 +472 9780 0.4350 +472 9810 0.7090 +472 9817 0.4380 +472 9887 0.4040 +472 9891 0.4200 +472 9894 0.9610 +472 9937 0.5370 +472 10000 0.4240 +472 10013 0.4850 +472 10018 0.4830 +472 10038 0.6160 +472 10039 0.4520 +472 10051 0.5710 +472 10075 0.6900 +472 10111 0.9900 +472 10155 0.7630 +472 10459 0.5540 +472 10481 0.4460 +472 10524 0.9970 +472 10533 0.4300 +472 10635 0.6280 +472 10714 0.5710 +472 10721 0.5070 +472 10733 0.6380 +472 10735 0.4360 +472 10856 0.6990 +472 10926 0.4080 +472 10973 0.6160 +472 10987 0.4730 +472 11073 0.9540 +472 11100 0.4470 +472 11143 0.5460 +472 11144 0.8660 +472 11169 0.4120 +472 11177 0.4630 +472 11186 0.4020 +472 11198 0.6010 +472 11200 0.9990 +472 11201 0.6530 +472 11215 0.4030 +472 11284 0.5630 +472 11335 0.5770 +472 22897 0.8000 +472 22914 0.4410 +472 22933 0.4210 +472 22976 0.9630 +472 22992 0.4230 +472 23028 0.9290 +472 23030 0.6580 +472 23049 0.7050 +472 23063 0.4180 +472 23064 0.5200 +472 23085 0.5850 +472 23137 0.6050 +472 23186 0.9140 +472 23198 0.5030 +472 23244 0.4530 +472 23286 0.4960 +472 23300 0.9800 +472 23381 0.4080 +472 23405 0.4830 +472 23411 0.8560 +472 23468 0.4150 +472 23476 0.5400 +472 23514 0.5440 +472 23626 0.9050 +472 23650 0.6040 +472 25788 0.5630 +472 25836 0.4380 +472 25913 0.5220 +472 25920 0.5270 +472 25939 0.4260 +472 25942 0.5420 +472 26277 0.6080 +472 26574 0.4040 +472 27030 0.7710 +472 27113 0.4790 +472 27127 0.4240 +472 27343 0.5330 +472 27434 0.4600 +472 28996 0.4920 +472 29072 0.6430 +472 29086 0.6820 +472 29102 0.6220 +472 29110 0.4020 +472 29126 0.6890 +472 29893 0.5450 +472 29997 0.4180 +472 50484 0.5900 +472 50485 0.6340 +472 50511 0.4410 +472 51008 0.5430 +472 51177 0.4630 +472 51224 0.4990 +472 51317 0.9110 +472 51426 0.5150 +472 51497 0.5000 +472 51548 0.5250 +472 51567 0.4730 +472 51588 0.9780 +472 51720 0.7970 +472 51741 0.8060 +472 51750 0.7160 +472 51755 0.8310 +472 51773 0.4840 +472 53353 0.4180 +472 54107 0.5290 +472 54145 0.6420 +472 54205 0.5680 +472 54465 0.4570 +472 54790 0.5120 +472 54840 0.5740 +472 54861 0.4440 +472 54894 0.4390 +472 54904 0.4210 +472 54962 0.4860 +472 55054 0.4290 +472 55120 0.6190 +472 55159 0.4250 +472 55183 0.8230 +472 55193 0.5480 +472 55215 0.9460 +472 55294 0.7560 +472 55355 0.5390 +472 55367 0.8560 +472 55536 0.6050 +472 55611 0.5520 +472 55651 0.5140 +472 55775 0.7670 +472 55869 0.4010 +472 56154 0.5300 +472 56254 0.7180 +472 56655 0.4870 +472 56852 0.6100 +472 56916 0.4950 +472 56946 0.4510 +472 57099 0.4870 +472 57103 0.5990 +472 57379 0.6370 +472 57448 0.5310 +472 57492 0.4830 +472 57521 0.4470 +472 57634 0.6890 +472 57646 0.5930 +472 57695 0.4650 +472 57697 0.7450 +472 57804 0.5940 +472 57805 0.8230 +472 58508 0.5760 +472 63895 0.4310 +472 63967 0.8880 +472 64135 0.5220 +472 64223 0.4010 +472 64326 0.7930 +472 64421 0.9560 +472 64798 0.6310 +472 64858 0.5620 +472 65123 0.4850 +472 78996 0.5150 +472 79035 0.7760 +472 79184 0.6940 +472 79618 0.4320 +472 79633 0.4220 +472 79648 0.7710 +472 79677 0.4090 +472 79728 0.9450 +472 79791 0.5710 +472 79840 0.9820 +472 79858 0.4630 +472 79915 0.4310 +472 79991 0.7130 +472 80010 0.7240 +472 80119 0.5740 +472 80169 0.6110 +472 80185 0.5850 +472 80198 0.8490 +472 81620 0.5580 +472 81631 0.6490 +472 81669 0.5900 +472 83695 0.5750 +472 83752 0.4070 +472 83990 0.9330 +472 84057 0.6270 +472 84072 0.5130 +472 84126 0.9980 +472 84142 0.7850 +472 84148 0.6990 +472 84164 0.5470 +472 84250 0.4420 +472 84260 0.6100 +472 84464 0.8010 +472 84749 0.5390 +472 84893 0.4560 +472 85236 0.6450 +472 91419 0.9030 +472 91442 0.5230 +472 91875 0.7870 +472 92797 0.4180 +472 94239 0.6290 +472 113510 0.4220 +472 115004 0.5290 +472 116028 0.6450 +472 116447 0.5980 +472 125150 0.9120 +472 126074 0.9060 +472 128312 0.6430 +472 133482 0.4530 +472 135458 0.4260 +472 136541 0.5070 +472 137902 0.5770 +472 144715 0.8260 +472 146956 0.7260 +472 147923 0.8800 +472 148479 0.5420 +472 150280 0.4560 +472 165918 0.9060 +472 171023 0.4270 +472 196528 0.4930 +472 197342 0.5930 +472 200558 0.4320 +472 201161 0.5110 +472 221927 0.5900 +472 253260 0.6570 +472 255626 0.6400 +472 257218 0.4010 +472 261726 0.4950 +472 286053 0.4390 +472 286257 0.9460 +472 345456 0.4200 +472 348654 0.7420 +472 375189 0.4260 +472 404672 0.5940 +472 440093 0.7550 +472 440686 0.7550 +472 548593 0.7250 +472 653604 0.7540 +472 100532731 0.6560 +472 100533467 0.7410 +472 102723407 0.7870 +472 105375355 0.5400 +473 1036 0.4200 +473 1822 0.6790 +473 2033 0.8670 +473 3065 0.9730 +473 3066 0.9680 +473 3660 0.4390 +473 4297 0.4830 +473 5915 0.7300 +473 5929 0.6150 +473 6872 0.4540 +473 6917 0.4270 +473 6996 0.4640 +473 7026 0.8870 +473 7101 0.5660 +473 7798 0.4230 +473 9070 0.4340 +473 9612 0.4710 +473 9739 0.4230 +473 9757 0.4590 +473 10277 0.4780 +473 10919 0.7650 +473 11091 0.8110 +473 11262 0.4150 +473 23013 0.4590 +473 23060 0.4720 +473 23067 0.4520 +473 23524 0.4590 +473 26053 0.6970 +473 50651 0.5560 +473 51172 0.4730 +473 51433 0.4220 +473 53335 0.4820 +473 54808 0.4180 +473 55023 0.4320 +473 57507 0.6700 +473 57578 0.4050 +473 64919 0.5240 +473 80045 0.4220 +473 84328 0.4170 +473 128025 0.4860 +473 283093 0.4140 +473 284058 0.4960 +473 389799 0.4960 +474 554 0.4350 +474 648 0.4290 +474 652 0.5190 +474 793 0.4640 +474 1027 0.4870 +474 1044 0.4670 +474 1045 0.4980 +474 1113 0.5290 +474 1179 0.4680 +474 1452 0.5330 +474 1488 0.6660 +474 1499 0.4860 +474 1671 0.4470 +474 1786 0.4780 +474 1948 0.4180 +474 1959 0.4120 +474 2138 0.6090 +474 2253 0.4530 +474 2259 0.5010 +474 2290 0.4220 +474 2296 0.4310 +474 2303 0.4130 +474 2625 0.4010 +474 2637 0.4170 +474 2670 0.5120 +474 2672 0.7360 +474 2735 0.5580 +474 2736 0.5210 +474 3090 0.5780 +474 3211 0.5130 +474 3280 0.6420 +474 3516 0.4890 +474 3642 0.4860 +474 3670 0.4960 +474 3714 0.4810 +474 3852 0.4120 +474 3872 0.4250 +474 3955 0.5780 +474 3975 0.6150 +474 4009 0.5920 +474 4586 0.7430 +474 4588 0.7940 +474 4613 0.4400 +474 4646 0.5170 +474 4647 0.7860 +474 4821 0.4600 +474 4851 0.6240 +474 4853 0.4240 +474 4951 0.4100 +474 5015 0.4780 +474 5076 0.6380 +474 5078 0.4500 +474 5080 0.6270 +474 5457 0.8200 +474 5459 0.8180 +474 5727 0.5010 +474 6469 0.7780 +474 6495 0.5590 +474 6608 0.4350 +474 6657 0.6210 +474 6662 0.5210 +474 6900 0.4400 +474 6925 0.7260 +474 6929 0.7190 +474 6938 0.7190 +474 7033 0.4720 +474 7471 0.4120 +474 7473 0.4370 +474 7545 0.5060 +474 8022 0.4320 +474 8328 0.4900 +474 8549 0.6760 +474 8929 0.5440 +474 9201 0.4480 +474 9248 0.4670 +474 9314 0.4500 +474 9355 0.6750 +474 9381 0.4310 +474 10075 0.4450 +474 10215 0.4090 +474 10562 0.5900 +474 10763 0.4180 +474 23462 0.4540 +474 23493 0.4450 +474 25803 0.6350 +474 26018 0.4180 +474 27290 0.4800 +474 28514 0.6290 +474 54474 0.4520 +474 54567 0.4760 +474 55502 0.4260 +474 55897 0.4870 +474 56751 0.8540 +474 56956 0.6780 +474 57084 0.4130 +474 57634 0.4620 +474 63973 0.4480 +474 63974 0.4040 +474 64072 0.4890 +474 64211 0.4190 +474 83715 0.6110 +474 83998 0.4740 +474 84525 0.4200 +474 93986 0.5220 +474 94234 0.4980 +474 116448 0.4810 +474 117531 0.4950 +474 120237 0.5450 +474 151449 0.4750 +474 167826 0.4280 +474 246213 0.5340 +474 256297 0.4300 +474 284654 0.4310 +474 375611 0.4920 +474 388585 0.7070 +474 389333 0.4080 +474 654231 0.4440 +474 100532731 0.4270 +475 538 0.9990 +475 540 0.9980 +475 573 0.4420 +475 617 0.4080 +475 664 0.4120 +475 972 0.5300 +475 1317 0.8850 +475 1318 0.8150 +475 1340 0.4370 +475 1353 0.7770 +475 1356 0.7230 +475 1536 0.4560 +475 1621 0.4070 +475 2242 0.4550 +475 2288 0.6930 +475 2495 0.4630 +475 2671 0.4890 +475 2745 0.7060 +475 3052 0.5130 +475 3297 0.4360 +475 4015 0.5380 +475 4489 0.4220 +475 4493 0.6680 +475 4502 0.4740 +475 4504 0.4320 +475 4513 0.5860 +475 4521 0.4740 +475 4602 0.5280 +475 4603 0.5280 +475 4605 0.5280 +475 4698 0.8820 +475 4741 0.4380 +475 4744 0.4110 +475 4891 0.5780 +475 5066 0.4680 +475 5434 0.4630 +475 5435 0.5080 +475 5437 0.4630 +475 5440 0.4750 +475 5441 0.5230 +475 5469 0.4320 +475 6122 0.4250 +475 6123 0.4150 +475 6124 0.4260 +475 6132 0.4430 +475 6133 0.4420 +475 6135 0.5400 +475 6139 0.4090 +475 6147 0.5160 +475 6154 0.5010 +475 6175 0.4530 +475 6183 0.5200 +475 6187 0.5480 +475 6193 0.4500 +475 6203 0.5240 +475 6205 0.5140 +475 6207 0.4110 +475 6208 0.5640 +475 6217 0.4260 +475 6222 0.5140 +475 6224 0.5820 +475 6228 0.4370 +475 6235 0.4170 +475 6341 0.7940 +475 6506 0.4060 +475 6647 0.9320 +475 6649 0.9130 +475 6687 0.4660 +475 6834 0.5810 +475 7033 0.4990 +475 7295 0.4620 +475 7311 0.7060 +475 7704 0.4200 +475 7779 0.5030 +475 7782 0.4150 +475 8569 0.5910 +475 8624 0.5200 +475 8930 0.4230 +475 8992 0.4270 +475 9124 0.4310 +475 9349 0.5130 +475 9371 0.4340 +475 9533 0.5020 +475 9801 0.5140 +475 9858 0.4650 +475 9973 0.9730 +475 9997 0.8460 +475 10063 0.9540 +475 10473 0.4380 +475 10849 0.5100 +475 10935 0.7640 +475 10939 0.4620 +475 11222 0.5270 +475 11224 0.5260 +475 22818 0.6440 +475 22920 0.4240 +475 22984 0.5100 +475 23521 0.4100 +475 23621 0.4740 +475 25824 0.4370 +475 25885 0.4870 +475 25897 0.4480 +475 26519 0.4860 +475 27035 0.4280 +475 28998 0.5440 +475 29093 0.5460 +475 30834 0.5000 +475 51001 0.4090 +475 51021 0.5520 +475 51022 0.4430 +475 51023 0.5660 +475 51069 0.4500 +475 51073 0.5180 +475 51076 0.4720 +475 51081 0.4780 +475 51082 0.4990 +475 51116 0.5120 +475 51121 0.5450 +475 51154 0.4640 +475 51164 0.4910 +475 51248 0.7580 +475 51264 0.5790 +475 51693 0.4770 +475 54700 0.6620 +475 54948 0.4640 +475 55007 0.4450 +475 55052 0.5860 +475 55168 0.5560 +475 55173 0.4840 +475 55272 0.4400 +475 55334 0.4030 +475 63875 0.5670 +475 63931 0.5510 +475 64374 0.5230 +475 64425 0.5490 +475 64924 0.4230 +475 64960 0.5340 +475 64963 0.8310 +475 64965 0.5170 +475 64969 0.4550 +475 64979 0.5280 +475 65003 0.6290 +475 65005 0.5110 +475 79145 0.5440 +475 79590 0.6390 +475 84172 0.4650 +475 84560 0.4260 +475 90639 0.5240 +475 114785 0.4510 +475 126402 0.4170 +475 131474 0.6730 +475 150684 0.8600 +475 201266 0.4100 +475 219927 0.5410 +475 221830 0.5440 +475 388753 0.4620 +475 493753 0.4510 +475 100526842 0.4050 +476 477 0.9360 +476 478 0.9470 +476 479 0.7250 +476 480 0.9020 +476 481 0.9990 +476 482 0.9850 +476 483 0.9950 +476 486 0.9960 +476 488 0.8200 +476 490 0.4770 +476 492 0.4630 +476 493 0.4580 +476 496 0.7630 +476 509 0.4010 +476 776 0.7540 +476 857 0.5420 +476 859 0.5080 +476 914 0.5630 +476 965 0.5470 +476 1108 0.4070 +476 1181 0.6030 +476 1187 0.4430 +476 1408 0.4240 +476 1499 0.4700 +476 1584 0.6040 +476 1585 0.7200 +476 2023 0.5710 +476 2035 0.4020 +476 2597 0.4290 +476 2629 0.4630 +476 2908 0.5590 +476 3032 0.5020 +476 3265 0.4720 +476 3480 0.4230 +476 3762 0.8010 +476 3764 0.6260 +476 3845 0.5030 +476 3972 0.5940 +476 4063 0.4430 +476 4893 0.6810 +476 5045 0.4160 +476 5245 0.5640 +476 5348 0.9420 +476 5349 0.5790 +476 5350 0.8180 +476 5566 0.7420 +476 5567 0.7260 +476 5568 0.7160 +476 5583 0.4480 +476 5592 0.9090 +476 5593 0.9040 +476 5594 0.9430 +476 5595 0.9420 +476 5826 0.7260 +476 5972 0.4070 +476 6277 0.4540 +476 6296 0.4170 +476 6337 0.4210 +476 6520 0.6550 +476 6521 0.4340 +476 6546 0.4590 +476 6548 0.8210 +476 6550 0.4560 +476 6557 0.7940 +476 6558 0.5210 +476 6559 0.4220 +476 6714 0.5470 +476 6746 0.4330 +476 6833 0.6540 +476 7178 0.7290 +476 7252 0.5560 +476 7416 0.4870 +476 7417 0.4310 +476 7419 0.4160 +476 8140 0.5990 +476 8912 0.6030 +476 9980 0.6030 +476 10014 0.5300 +476 10058 0.7340 +476 10060 0.6050 +476 10397 0.7000 +476 11194 0.7560 +476 23439 0.9510 +476 51477 0.5890 +476 51497 0.4100 +476 53822 0.5390 +476 53826 0.6490 +476 53828 0.5750 +476 54499 0.4030 +476 54617 0.7670 +476 55276 0.4960 +476 55754 0.4560 +476 57669 0.4290 +476 64240 0.7450 +476 64241 0.7440 +476 79798 0.5830 +476 79968 0.5510 +476 81555 0.4200 +476 83932 0.5530 +476 83959 0.4100 +476 84446 0.4160 +476 150094 0.5480 +477 478 0.9780 +477 479 0.7250 +477 480 0.9360 +477 481 0.9960 +477 482 0.9930 +477 483 0.9780 +477 486 0.9780 +477 488 0.8730 +477 491 0.4210 +477 496 0.7700 +477 523 0.5420 +477 773 0.9410 +477 779 0.4070 +477 794 0.4520 +477 800 0.4340 +477 844 0.7110 +477 845 0.6050 +477 962 0.4040 +477 1007 0.5700 +477 1008 0.5410 +477 1152 0.5350 +477 1191 0.4730 +477 1192 0.4570 +477 1909 0.4310 +477 1917 0.4290 +477 2697 0.5410 +477 3720 0.4150 +477 3764 0.6210 +477 3765 0.5850 +477 3766 0.4970 +477 4063 0.4640 +477 4800 0.4700 +477 4854 0.4030 +477 5348 0.9460 +477 5349 0.5830 +477 5350 0.8600 +477 5354 0.4350 +477 5566 0.6920 +477 5567 0.6910 +477 5568 0.6890 +477 5592 0.9170 +477 5593 0.9040 +477 5594 0.9140 +477 5595 0.9160 +477 5826 0.7260 +477 6262 0.4180 +477 6263 0.4040 +477 6323 0.9260 +477 6326 0.4830 +477 6330 0.4090 +477 6506 0.4980 +477 6507 0.5730 +477 6513 0.5640 +477 6546 0.4480 +477 6548 0.7900 +477 6833 0.6950 +477 7089 0.4680 +477 7170 0.4550 +477 7903 0.5930 +477 8671 0.4780 +477 9037 0.4610 +477 9211 0.4040 +477 9365 0.6200 +477 9378 0.5400 +477 10058 0.7320 +477 10060 0.6530 +477 10590 0.4360 +477 11194 0.7460 +477 22871 0.5280 +477 23095 0.4070 +477 23245 0.6480 +477 23439 0.9600 +477 50834 0.5410 +477 51725 0.5780 +477 53822 0.5990 +477 53826 0.7090 +477 53828 0.5580 +477 53919 0.5070 +477 54413 0.5480 +477 54617 0.6710 +477 57030 0.5040 +477 57348 0.4340 +477 57502 0.5570 +477 64240 0.7470 +477 64241 0.7440 +477 64326 0.5030 +477 79641 0.4970 +477 79816 0.4650 +477 81688 0.4090 +477 84525 0.4200 +477 91851 0.5040 +477 112476 0.7100 +477 152330 0.6010 +477 167410 0.4170 +477 286410 0.4140 +477 338567 0.8140 +477 100533181 0.4530 +478 479 0.7250 +478 480 0.9370 +478 481 0.9980 +478 482 0.9880 +478 483 0.9920 +478 486 0.9960 +478 488 0.8770 +478 491 0.4370 +478 492 0.5720 +478 496 0.7680 +478 523 0.4730 +478 526 0.4130 +478 773 0.5430 +478 776 0.7460 +478 914 0.5560 +478 965 0.4980 +478 1108 0.4020 +478 1181 0.5920 +478 1187 0.4330 +478 1408 0.4370 +478 1410 0.4680 +478 1584 0.5470 +478 1585 0.6870 +478 1861 0.7130 +478 2023 0.5150 +478 2035 0.4020 +478 2319 0.4350 +478 2597 0.4080 +478 2629 0.5070 +478 2774 0.4910 +478 2775 0.4250 +478 3208 0.4900 +478 3358 0.5000 +478 3736 0.4320 +478 3762 0.7840 +478 3764 0.6280 +478 3766 0.4020 +478 3778 0.4360 +478 3785 0.4730 +478 3972 0.5550 +478 4063 0.4380 +478 4593 0.5650 +478 4800 0.4280 +478 4893 0.4460 +478 5348 0.9280 +478 5349 0.5780 +478 5350 0.8210 +478 5566 0.7300 +478 5567 0.7370 +478 5568 0.7150 +478 5583 0.4560 +478 5592 0.9100 +478 5593 0.9040 +478 5594 0.9220 +478 5595 0.9210 +478 5826 0.7260 +478 6247 0.5100 +478 6277 0.4230 +478 6323 0.5070 +478 6326 0.5370 +478 6334 0.4560 +478 6507 0.4090 +478 6513 0.6180 +478 6546 0.4580 +478 6548 0.8190 +478 6550 0.4250 +478 6557 0.4210 +478 6558 0.5140 +478 6616 0.4570 +478 6812 0.4690 +478 6833 0.6860 +478 6863 0.4140 +478 6872 0.4590 +478 7170 0.4420 +478 7252 0.5410 +478 7337 0.4190 +478 7417 0.4040 +478 8120 0.5410 +478 8575 0.5070 +478 8671 0.4320 +478 8910 0.6050 +478 8912 0.5960 +478 10058 0.7320 +478 10060 0.6010 +478 10382 0.5870 +478 11194 0.7560 +478 22883 0.4860 +478 23154 0.4660 +478 23439 0.9660 +478 25792 0.4750 +478 25953 0.4760 +478 51477 0.5380 +478 53822 0.6200 +478 53826 0.8330 +478 53828 0.5860 +478 54617 0.6520 +478 55145 0.6250 +478 55276 0.4550 +478 55754 0.4400 +478 57030 0.4240 +478 57468 0.4220 +478 57669 0.4200 +478 63982 0.5620 +478 64240 0.7450 +478 64241 0.7440 +478 79798 0.5450 +478 80025 0.4010 +478 84446 0.4880 +478 85397 0.4960 +478 112476 0.6610 +478 112755 0.5590 +478 126129 0.4360 +478 150094 0.5500 +478 259232 0.4080 +478 375790 0.5740 +478 100533181 0.6730 +479 480 0.5490 +479 481 0.9570 +479 482 0.8350 +479 483 0.8630 +479 486 0.7940 +479 488 0.7860 +479 495 0.9020 +479 496 0.9950 +479 523 0.5460 +479 525 0.9230 +479 526 0.5090 +479 527 0.8470 +479 528 0.4770 +479 529 0.5600 +479 535 0.8920 +479 537 0.5220 +479 760 0.7920 +479 810 0.4100 +479 887 0.5300 +479 920 0.5570 +479 954 0.6210 +479 967 0.4750 +479 1080 0.5430 +479 1113 0.6210 +479 1184 0.6020 +479 1186 0.8270 +479 1379 0.4360 +479 1401 0.6620 +479 1513 0.4620 +479 1520 0.4530 +479 1536 0.5010 +479 1544 0.5450 +479 1555 0.5090 +479 1557 0.9470 +479 1558 0.4670 +479 1559 0.6370 +479 1565 0.7130 +479 1576 0.7380 +479 1577 0.5110 +479 1636 0.7710 +479 2026 0.4480 +479 2147 0.5870 +479 2152 0.4470 +479 2172 0.5140 +479 2475 0.4500 +479 2520 0.9340 +479 2597 0.4130 +479 2641 0.4760 +479 2875 0.6170 +479 3067 0.4260 +479 3156 0.5150 +479 3274 0.8800 +479 3553 0.5070 +479 3569 0.5070 +479 3576 0.4450 +479 3630 0.6340 +479 3764 0.5580 +479 3916 0.4920 +479 3920 0.4020 +479 4295 0.4350 +479 4891 0.4010 +479 5172 0.4770 +479 5243 0.5270 +479 5286 0.4510 +479 5348 0.7300 +479 5350 0.8040 +479 5464 0.9610 +479 5663 0.4290 +479 5741 0.5910 +479 5742 0.4180 +479 5743 0.5950 +479 5810 0.6390 +479 5826 0.7350 +479 5832 0.4300 +479 5867 0.4760 +479 5873 0.5140 +479 5972 0.5510 +479 6010 0.6590 +479 6279 0.6050 +479 6343 0.4820 +479 6521 0.4940 +479 6541 0.6180 +479 6548 0.8540 +479 6549 0.4270 +479 6550 0.4300 +479 6554 0.4930 +479 6555 0.6110 +479 6750 0.6650 +479 6833 0.6210 +479 6844 0.6910 +479 6855 0.7190 +479 6857 0.6460 +479 6939 0.4010 +479 7124 0.5540 +479 7170 0.4900 +479 7531 0.4530 +479 7781 0.4120 +479 8600 0.4180 +479 8792 0.4140 +479 8992 0.4540 +479 9114 0.4660 +479 9172 0.4390 +479 9296 0.4030 +479 9360 0.7010 +479 9429 0.4460 +479 9842 0.6490 +479 9900 0.5370 +479 10058 0.7310 +479 10060 0.6000 +479 10159 0.4810 +479 10312 0.9270 +479 10344 0.5140 +479 10516 0.4280 +479 10599 0.4590 +479 10871 0.4400 +479 11194 0.7640 +479 23439 0.6330 +479 23530 0.4330 +479 23545 0.8340 +479 23564 0.4590 +479 23576 0.4610 +479 27068 0.9260 +479 28962 0.6920 +479 29887 0.4950 +479 30008 0.4870 +479 50617 0.9110 +479 51382 0.8200 +479 51606 0.4880 +479 51738 0.4640 +479 53828 0.4740 +479 54205 0.4860 +479 54575 0.4070 +479 54576 0.4070 +479 54577 0.4150 +479 54578 0.4290 +479 54657 0.5180 +479 54658 0.4220 +479 56172 0.4510 +479 57509 0.4180 +479 57521 0.5440 +479 59272 0.4010 +479 64077 0.9180 +479 64240 0.7520 +479 64241 0.7440 +479 64805 0.6630 +479 84329 0.4190 +479 84706 0.4150 +479 85365 0.7200 +479 115019 0.4130 +479 127124 0.4020 +479 140803 0.4590 +479 155066 0.7700 +479 200931 0.4060 +479 245972 0.4770 +479 245973 0.4020 +479 440854 0.4200 +480 481 0.9950 +480 482 0.9820 +480 483 0.9900 +480 486 0.9960 +480 488 0.6730 +480 492 0.4650 +480 496 0.7690 +480 776 0.7490 +480 914 0.5600 +480 965 0.5440 +480 1181 0.5980 +480 1187 0.4360 +480 1406 0.4380 +480 1408 0.4290 +480 1584 0.6010 +480 1585 0.7140 +480 1586 0.4350 +480 2023 0.5270 +480 2035 0.4020 +480 2597 0.4060 +480 2629 0.4390 +480 3762 0.8090 +480 3764 0.6250 +480 3972 0.5940 +480 4063 0.4730 +480 4800 0.4780 +480 4893 0.4740 +480 5348 0.9190 +480 5349 0.5840 +480 5350 0.7010 +480 5566 0.7300 +480 5567 0.7250 +480 5568 0.7150 +480 5583 0.4450 +480 5592 0.9100 +480 5593 0.9040 +480 5594 0.9200 +480 5595 0.9200 +480 5826 0.5510 +480 6277 0.4430 +480 6337 0.4190 +480 6546 0.4240 +480 6548 0.7810 +480 6549 0.5570 +480 6550 0.5940 +480 6553 0.4890 +480 6557 0.4220 +480 6558 0.5150 +480 6559 0.4110 +480 6833 0.6350 +480 7170 0.4740 +480 7252 0.5550 +480 8671 0.4070 +480 8912 0.5970 +480 9941 0.4270 +480 10058 0.5630 +480 10060 0.6140 +480 10479 0.4060 +480 11194 0.5960 +480 23250 0.4160 +480 23439 0.9730 +480 51477 0.5800 +480 53822 0.5620 +480 53826 0.6570 +480 53828 0.5790 +480 54617 0.6710 +480 55276 0.4930 +480 55754 0.4450 +480 57669 0.4580 +480 64240 0.5810 +480 64241 0.5790 +480 79798 0.5790 +480 84446 0.4030 +480 148870 0.4570 +480 150094 0.5260 +480 283847 0.4130 +480 285195 0.4510 +480 389015 0.4680 +480 441234 0.5430 +481 482 0.9710 +481 483 0.9500 +481 486 0.9990 +481 487 0.6290 +481 488 0.8780 +481 490 0.6300 +481 491 0.4720 +481 493 0.4320 +481 495 0.7180 +481 496 0.5440 +481 523 0.5950 +481 537 0.4690 +481 682 0.5190 +481 949 0.4700 +481 1577 0.4390 +481 1579 0.5310 +481 2035 0.5070 +481 2108 0.4990 +481 2697 0.5200 +481 2784 0.4890 +481 3157 0.4170 +481 3764 0.6280 +481 3778 0.5670 +481 3779 0.4590 +481 3897 0.5460 +481 4099 0.4420 +481 5319 0.4280 +481 5348 0.9390 +481 5349 0.6310 +481 5350 0.7220 +481 5566 0.7070 +481 5567 0.7260 +481 5568 0.6920 +481 5592 0.9010 +481 5593 0.9010 +481 5594 0.9050 +481 5595 0.9080 +481 5627 0.4410 +481 5740 0.5250 +481 5826 0.7240 +481 6241 0.4430 +481 6249 0.4180 +481 6385 0.4150 +481 6401 0.6850 +481 6548 0.7850 +481 6558 0.4450 +481 6616 0.4710 +481 6833 0.5850 +481 7277 0.4220 +481 7416 0.5110 +481 7450 0.4770 +481 7466 0.9040 +481 8490 0.5260 +481 8613 0.4580 +481 8671 0.4200 +481 9091 0.4910 +481 9722 0.4160 +481 9899 0.4770 +481 10058 0.7200 +481 10060 0.5860 +481 10632 0.5290 +481 10994 0.4090 +481 11194 0.7290 +481 23209 0.4160 +481 23327 0.4110 +481 23439 0.9100 +481 29922 0.8390 +481 51320 0.4910 +481 51752 0.4540 +481 53822 0.8970 +481 53826 0.8290 +481 53828 0.5780 +481 54899 0.6480 +481 57669 0.4500 +481 64240 0.7280 +481 64241 0.7280 +481 79178 0.5870 +481 79570 0.9160 +481 80142 0.4090 +481 90952 0.7520 +481 128414 0.8340 +481 154215 0.7780 +481 163782 0.4680 +481 388591 0.4350 +481 100533181 0.6760 +482 483 0.9400 +482 486 0.9660 +482 488 0.8050 +482 490 0.5740 +482 491 0.4710 +482 495 0.4430 +482 496 0.5650 +482 682 0.5750 +482 3764 0.5860 +482 3766 0.4740 +482 3897 0.5500 +482 4099 0.5130 +482 4826 0.4130 +482 5348 0.9230 +482 5349 0.5960 +482 5350 0.7340 +482 5566 0.6710 +482 5567 0.6590 +482 5568 0.6600 +482 5592 0.9080 +482 5593 0.9010 +482 5594 0.9030 +482 5595 0.9030 +482 5826 0.7240 +482 6247 0.5490 +482 6484 0.5040 +482 6548 0.7470 +482 6833 0.6250 +482 9091 0.7100 +482 10058 0.7200 +482 10060 0.5690 +482 11194 0.7440 +482 23439 0.9070 +482 53822 0.6110 +482 53826 0.6930 +482 53828 0.5530 +482 64240 0.7280 +482 64241 0.7280 +482 128414 0.4040 +482 100533181 0.4400 +483 486 0.9640 +483 488 0.8210 +483 490 0.4050 +483 493 0.4010 +483 495 0.4270 +483 496 0.5770 +483 522 0.5010 +483 529 0.4140 +483 682 0.6030 +483 2642 0.4650 +483 3764 0.6070 +483 3778 0.4020 +483 3897 0.4580 +483 4286 0.4490 +483 4951 0.4240 +483 5013 0.4460 +483 5348 0.9110 +483 5349 0.5790 +483 5350 0.7430 +483 5566 0.6690 +483 5567 0.6650 +483 5568 0.6590 +483 5592 0.9010 +483 5593 0.9010 +483 5594 0.9020 +483 5595 0.9020 +483 5826 0.7250 +483 6505 0.7890 +483 6510 0.5230 +483 6548 0.7340 +483 6833 0.5750 +483 7416 0.5320 +483 8140 0.5100 +483 8506 0.4160 +483 9091 0.5480 +483 9377 0.4080 +483 10058 0.7220 +483 10060 0.5680 +483 10455 0.4400 +483 10959 0.4470 +483 11137 0.4260 +483 11194 0.7300 +483 23093 0.4090 +483 23439 0.9090 +483 26022 0.5470 +483 26509 0.4100 +483 51084 0.4120 +483 51703 0.4050 +483 51761 0.5030 +483 53822 0.4990 +483 53826 0.6490 +483 53828 0.5920 +483 54899 0.4970 +483 57142 0.5260 +483 64240 0.7280 +483 64241 0.7280 +483 80344 0.4080 +483 83695 0.4360 +483 91304 0.4110 +483 115111 0.4070 +483 400961 0.8100 +486 487 0.7700 +486 488 0.7260 +486 491 0.4010 +486 495 0.5750 +486 496 0.8050 +486 1188 0.4410 +486 1950 0.4080 +486 2538 0.4490 +486 2542 0.6790 +486 3587 0.5580 +486 3758 0.4240 +486 3764 0.5830 +486 3766 0.4370 +486 4297 0.5490 +486 5092 0.4280 +486 5265 0.4300 +486 5348 0.9150 +486 5349 0.6800 +486 5350 0.5460 +486 5566 0.6730 +486 5567 0.6670 +486 5568 0.6680 +486 5592 0.9030 +486 5593 0.9010 +486 5594 0.9010 +486 5595 0.9010 +486 5741 0.5240 +486 5826 0.5630 +486 6462 0.5210 +486 6507 0.4080 +486 6548 0.5770 +486 6557 0.4690 +486 6559 0.8360 +486 6833 0.5760 +486 6928 0.5020 +486 7369 0.5340 +486 9344 0.4100 +486 10058 0.5430 +486 10060 0.6090 +486 10686 0.9230 +486 11194 0.5460 +486 23439 0.9620 +486 25890 0.5420 +486 53827 0.6730 +486 53828 0.8520 +486 54805 0.5700 +486 54879 0.4670 +486 54946 0.5030 +486 64240 0.5500 +486 64241 0.5420 +486 79178 0.5200 +486 84239 0.4330 +486 84624 0.5420 +486 136991 0.4220 +486 140803 0.7190 +486 149461 0.8530 +486 254428 0.5130 +487 488 0.9350 +487 489 0.9110 +487 490 0.6490 +487 491 0.6270 +487 492 0.6150 +487 493 0.6400 +487 498 0.4840 +487 538 0.4590 +487 540 0.4240 +487 596 0.6650 +487 775 0.4090 +487 779 0.6930 +487 782 0.5290 +487 783 0.5600 +487 785 0.5280 +487 786 0.4440 +487 808 0.4910 +487 810 0.4740 +487 811 0.4810 +487 821 0.4520 +487 832 0.4400 +487 844 0.8550 +487 845 0.5330 +487 859 0.4180 +487 1052 0.4390 +487 1134 0.4060 +487 1158 0.6670 +487 1180 0.8480 +487 1201 0.4980 +487 1356 0.5280 +487 1482 0.5270 +487 1760 0.7540 +487 1762 0.5770 +487 1837 0.4870 +487 2027 0.5390 +487 2651 0.4270 +487 2697 0.5030 +487 2702 0.5120 +487 3270 0.9460 +487 3309 0.4280 +487 3643 0.4420 +487 3708 0.6100 +487 3709 0.6290 +487 3710 0.6520 +487 4151 0.4380 +487 4154 0.8390 +487 4606 0.6070 +487 4618 0.5750 +487 4619 0.7370 +487 4620 0.8630 +487 4621 0.5490 +487 4622 0.5170 +487 4624 0.5580 +487 4625 0.7530 +487 4626 0.4870 +487 4632 0.8110 +487 4633 0.6850 +487 4634 0.4690 +487 4654 0.4540 +487 4656 0.6480 +487 4784 0.4240 +487 4851 0.4690 +487 4853 0.4400 +487 4854 0.4480 +487 4855 0.4210 +487 4892 0.4690 +487 5224 0.4680 +487 5350 0.9940 +487 5816 0.5430 +487 5837 0.5810 +487 6095 0.9000 +487 6261 0.9420 +487 6262 0.5900 +487 6263 0.6190 +487 6329 0.4820 +487 6345 0.8470 +487 6495 0.4330 +487 6547 0.4550 +487 6588 0.9980 +487 6647 0.4170 +487 6667 0.4350 +487 6786 0.7450 +487 7125 0.7850 +487 7134 0.4250 +487 7135 0.6650 +487 7136 0.7470 +487 7138 0.4600 +487 7139 0.6760 +487 7140 0.8060 +487 7169 0.4170 +487 7220 0.4010 +487 7273 0.6910 +487 7284 0.4310 +487 8048 0.5990 +487 8557 0.5220 +487 8735 0.4200 +487 8776 0.5160 +487 9451 0.4760 +487 9499 0.4240 +487 9517 0.5420 +487 9697 0.6030 +487 10021 0.5130 +487 10150 0.5960 +487 10324 0.4660 +487 10345 0.7690 +487 10367 0.4240 +487 10524 0.9010 +487 10558 0.5210 +487 10618 0.4500 +487 10658 0.6920 +487 10930 0.4440 +487 11155 0.5510 +487 11273 0.5570 +487 25970 0.5090 +487 29765 0.4750 +487 29895 0.8850 +487 51014 0.4040 +487 51741 0.5220 +487 51778 0.4060 +487 51806 0.4730 +487 55304 0.5280 +487 55796 0.5410 +487 55799 0.5180 +487 57620 0.4690 +487 58529 0.6360 +487 59285 0.4860 +487 79641 0.4300 +487 79874 0.5190 +487 84876 0.4210 +487 90550 0.4110 +487 91860 0.4620 +487 94103 0.4750 +487 126306 0.5050 +487 129446 0.5160 +487 131377 0.4540 +487 147912 0.6500 +487 163688 0.4840 +487 442721 0.5040 +487 100507027 0.5820 +488 489 0.9180 +488 490 0.7930 +488 491 0.7880 +488 492 0.6200 +488 493 0.7760 +488 496 0.6190 +488 498 0.5780 +488 526 0.4210 +488 539 0.5290 +488 596 0.6320 +488 598 0.5400 +488 775 0.6840 +488 776 0.5170 +488 779 0.4610 +488 783 0.4870 +488 808 0.5900 +488 810 0.5600 +488 811 0.5720 +488 813 0.4370 +488 818 0.5190 +488 821 0.8490 +488 844 0.6120 +488 845 0.6900 +488 859 0.4250 +488 1080 0.4890 +488 1180 0.5620 +488 1482 0.6860 +488 1760 0.5140 +488 1762 0.5000 +488 1832 0.7040 +488 1938 0.4760 +488 1956 0.7140 +488 2597 0.5130 +488 2626 0.4620 +488 2697 0.6820 +488 2702 0.6510 +488 3196 0.4770 +488 3226 0.4370 +488 3227 0.4100 +488 3270 0.9700 +488 3309 0.5150 +488 3313 0.5580 +488 3611 0.6640 +488 3708 0.8270 +488 3709 0.7220 +488 3710 0.9080 +488 3741 0.4010 +488 3752 0.4500 +488 3757 0.4550 +488 3759 0.4850 +488 3764 0.6440 +488 3784 0.4060 +488 3998 0.4550 +488 4154 0.5660 +488 4591 0.4430 +488 4607 0.4690 +488 4619 0.4040 +488 4620 0.4490 +488 4624 0.6760 +488 4625 0.6560 +488 4632 0.4180 +488 4633 0.5970 +488 4634 0.4790 +488 4656 0.5220 +488 4851 0.4960 +488 4853 0.5270 +488 4854 0.4550 +488 4855 0.4210 +488 4878 0.7570 +488 4879 0.5220 +488 5034 0.5110 +488 5096 0.4470 +488 5144 0.5610 +488 5245 0.4350 +488 5292 0.4510 +488 5317 0.4440 +488 5339 0.4230 +488 5348 0.8120 +488 5350 0.9980 +488 5566 0.4620 +488 5567 0.4370 +488 5568 0.4470 +488 5700 0.4330 +488 5816 0.4880 +488 5826 0.7350 +488 5957 0.4090 +488 6011 0.4370 +488 6095 0.9030 +488 6261 0.8010 +488 6262 0.8860 +488 6263 0.5640 +488 6271 0.7560 +488 6305 0.4010 +488 6331 0.6000 +488 6345 0.6240 +488 6546 0.8190 +488 6548 0.7980 +488 6588 0.9750 +488 6647 0.4240 +488 6648 0.5770 +488 6667 0.4510 +488 6717 0.4810 +488 6786 0.7820 +488 6833 0.6600 +488 6876 0.4340 +488 6910 0.5900 +488 6911 0.4340 +488 6926 0.4260 +488 7019 0.5380 +488 7125 0.6110 +488 7135 0.5880 +488 7136 0.6410 +488 7137 0.6120 +488 7138 0.4530 +488 7139 0.7430 +488 7168 0.4080 +488 7220 0.4230 +488 7273 0.5070 +488 7415 0.4160 +488 7416 0.5090 +488 7466 0.6410 +488 8048 0.4690 +488 9218 0.4630 +488 9465 0.7750 +488 9659 0.4810 +488 9697 0.5590 +488 9780 0.6990 +488 10021 0.5340 +488 10058 0.7360 +488 10060 0.6650 +488 10345 0.5590 +488 10424 0.4530 +488 10524 0.9060 +488 10658 0.4660 +488 11160 0.4040 +488 11194 0.7520 +488 11231 0.4650 +488 23411 0.4550 +488 23439 0.5960 +488 26580 0.4880 +488 29895 0.5570 +488 29927 0.4010 +488 51778 0.4120 +488 51806 0.5570 +488 55858 0.4490 +488 57158 0.4500 +488 57190 0.6160 +488 57192 0.4670 +488 57620 0.4030 +488 58498 0.5140 +488 58529 0.4080 +488 58538 0.6080 +488 59341 0.5420 +488 63895 0.4520 +488 64240 0.7470 +488 64241 0.7470 +488 81542 0.4780 +488 81671 0.6030 +488 83932 0.5100 +488 84876 0.4730 +488 89910 0.6830 +488 91860 0.5490 +488 93129 0.4200 +488 93380 0.4270 +488 120892 0.5570 +488 131474 0.4390 +488 131890 0.4910 +488 147912 0.4990 +488 163688 0.5360 +488 169200 0.6980 +488 728378 0.4140 +489 490 0.6720 +489 491 0.6540 +489 492 0.6230 +489 493 0.6480 +489 498 0.4860 +489 501 0.4080 +489 596 0.4210 +489 775 0.4100 +489 784 0.4360 +489 808 0.4360 +489 810 0.4230 +489 811 0.4350 +489 1398 0.4030 +489 2113 0.4630 +489 2975 0.6930 +489 3196 0.4260 +489 3270 0.9160 +489 3309 0.4080 +489 3708 0.6180 +489 3709 0.5570 +489 3710 0.6070 +489 4621 0.4170 +489 4851 0.5140 +489 4853 0.4380 +489 4854 0.4490 +489 4855 0.4210 +489 5336 0.4170 +489 5350 0.9870 +489 6095 0.9010 +489 6261 0.5410 +489 6262 0.5530 +489 6263 0.5890 +489 6345 0.4780 +489 6546 0.6190 +489 6588 0.9220 +489 6786 0.7570 +489 7220 0.4750 +489 7225 0.5980 +489 9697 0.7660 +489 10524 0.9020 +489 10634 0.4110 +489 11273 0.5620 +489 51806 0.4190 +489 55750 0.4320 +489 55858 0.4690 +489 57620 0.5040 +489 64969 0.4010 +489 80228 0.4060 +489 84876 0.6680 +489 91319 0.4180 +489 91860 0.4110 +489 93129 0.4430 +489 124925 0.4080 +490 682 0.7770 +490 775 0.4160 +490 776 0.4670 +490 783 0.4540 +490 793 0.4510 +490 795 0.6680 +490 808 0.7810 +490 810 0.7380 +490 821 0.4070 +490 933 0.4930 +490 1147 0.4510 +490 1586 0.4560 +490 1742 0.5020 +490 1780 0.4120 +490 2044 0.4190 +490 2783 0.4530 +490 3708 0.5110 +490 3709 0.4550 +490 3710 0.4320 +490 3845 0.4430 +490 4524 0.5610 +490 4893 0.4200 +490 5048 0.4820 +490 5350 0.5870 +490 5530 0.5370 +490 5566 0.9210 +490 5567 0.9250 +490 5568 0.9210 +490 5592 0.9110 +490 5593 0.9080 +490 6261 0.4010 +490 6543 0.5430 +490 6546 0.7750 +490 6547 0.5700 +490 6588 0.6380 +490 6640 0.6060 +490 6782 0.4890 +490 6786 0.4640 +490 7220 0.4270 +490 7531 0.4960 +490 7874 0.4040 +490 8508 0.4400 +490 8630 0.5840 +490 9254 0.4150 +490 9697 0.4260 +490 9899 0.4160 +490 9914 0.6340 +490 10019 0.4170 +490 25989 0.4180 +490 27020 0.7700 +490 27032 0.6310 +490 27347 0.4270 +490 51806 0.7290 +490 54805 0.4340 +490 54897 0.4530 +490 54986 0.4320 +490 55503 0.8620 +490 56302 0.6760 +490 59341 0.7110 +490 80024 0.4100 +490 84876 0.4030 +490 85358 0.4050 +490 89910 0.7790 +490 91860 0.7260 +490 113026 0.4380 +490 123041 0.4540 +490 130502 0.5090 +490 144100 0.4770 +490 163688 0.7250 +490 219621 0.5130 +490 246213 0.4600 +491 492 0.6870 +491 773 0.4660 +491 774 0.4700 +491 775 0.4720 +491 776 0.4910 +491 777 0.4010 +491 778 0.4030 +491 785 0.4110 +491 793 0.4240 +491 794 0.4120 +491 808 0.9050 +491 810 0.9000 +491 815 0.4620 +491 816 0.4010 +491 818 0.5010 +491 869 0.4010 +491 1271 0.4410 +491 1555 0.4060 +491 1740 0.5300 +491 1742 0.4020 +491 2026 0.4900 +491 2332 0.4490 +491 2554 0.4430 +491 2561 0.4100 +491 2665 0.4800 +491 2977 0.4830 +491 3208 0.4450 +491 3320 0.5330 +491 3326 0.5330 +491 3361 0.4010 +491 3708 0.6970 +491 3709 0.4290 +491 3710 0.6470 +491 3736 0.4160 +491 3745 0.5580 +491 3746 0.5190 +491 3765 0.4200 +491 3785 0.5530 +491 4646 0.4780 +491 4647 0.6930 +491 4771 0.4950 +491 4915 0.4770 +491 5172 0.6400 +491 5532 0.4400 +491 5566 0.9240 +491 5567 0.9270 +491 5568 0.9230 +491 5592 0.9110 +491 5593 0.9080 +491 5816 0.4870 +491 6262 0.5850 +491 6323 0.4320 +491 6326 0.4850 +491 6334 0.4020 +491 6396 0.6150 +491 6456 0.5150 +491 6506 0.4470 +491 6529 0.4700 +491 6543 0.6270 +491 6546 0.7090 +491 6547 0.5140 +491 6616 0.5030 +491 6786 0.6270 +491 7220 0.4620 +491 7222 0.4210 +491 7531 0.5030 +491 8927 0.4190 +491 9351 0.7570 +491 9362 0.4640 +491 9368 0.7280 +491 9454 0.5250 +491 9901 0.4250 +491 9914 0.6540 +491 10083 0.6670 +491 10815 0.4240 +491 22989 0.4460 +491 23467 0.5550 +491 25769 0.4360 +491 27020 0.5730 +491 27032 0.6290 +491 51014 0.4050 +491 51669 0.4410 +491 51806 0.9000 +491 53904 0.4140 +491 54715 0.4410 +491 56302 0.4350 +491 56934 0.4020 +491 57468 0.4330 +491 57620 0.5360 +491 64072 0.9000 +491 65217 0.8050 +491 79023 0.5690 +491 80024 0.4210 +491 84502 0.4090 +491 84876 0.5280 +491 91860 0.8940 +491 92736 0.5380 +491 93129 0.4550 +491 93377 0.4130 +491 117531 0.4080 +491 117532 0.4230 +491 133060 0.7590 +491 152330 0.4210 +491 163688 0.8950 +491 642968 0.4010 +491 654231 0.4050 +491 729330 0.7880 +492 773 0.4570 +492 774 0.4760 +492 776 0.8290 +492 808 0.7510 +492 810 0.7470 +492 815 0.4130 +492 816 0.4080 +492 949 0.5160 +492 950 0.5230 +492 1181 0.6380 +492 1271 0.4360 +492 1499 0.4030 +492 1555 0.6060 +492 1584 0.6570 +492 1585 0.7800 +492 1586 0.4320 +492 2335 0.4180 +492 2554 0.4190 +492 2563 0.4010 +492 3208 0.4510 +492 3361 0.4360 +492 3708 0.4130 +492 3746 0.4750 +492 3762 0.8780 +492 3765 0.4500 +492 4915 0.4130 +492 5532 0.4400 +492 5566 0.9320 +492 5567 0.9300 +492 5568 0.9260 +492 5592 0.9060 +492 5593 0.9060 +492 5737 0.4890 +492 5972 0.4200 +492 6326 0.4330 +492 6456 0.4960 +492 6543 0.6370 +492 6547 0.5330 +492 6616 0.4320 +492 6620 0.4380 +492 6804 0.4740 +492 7447 0.4440 +492 7448 0.5180 +492 7531 0.4950 +492 8228 0.4730 +492 8630 0.4240 +492 8912 0.7130 +492 9758 0.4150 +492 9901 0.4080 +492 9914 0.6030 +492 27032 0.5990 +492 51305 0.4430 +492 51806 0.7380 +492 79798 0.6650 +492 83482 0.4140 +492 91860 0.7250 +492 93377 0.4150 +492 128653 0.4120 +492 134829 0.4490 +492 158931 0.4070 +492 163688 0.7260 +492 221938 0.4100 +493 649 0.4870 +493 775 0.5030 +493 776 0.4470 +493 808 0.9830 +493 810 0.5990 +493 818 0.5190 +493 933 0.6740 +493 959 0.4010 +493 1185 0.4040 +493 1555 0.4930 +493 1725 0.5520 +493 1739 0.6790 +493 1740 0.4700 +493 1741 0.4220 +493 1742 0.4810 +493 1756 0.4160 +493 2026 0.4760 +493 2035 0.4270 +493 2539 0.4150 +493 2665 0.4240 +493 2869 0.4370 +493 2977 0.4190 +493 3043 0.5600 +493 3265 0.4130 +493 3708 0.4770 +493 3710 0.4140 +493 3745 0.5150 +493 3785 0.4430 +493 4312 0.4760 +493 4646 0.4080 +493 4647 0.5900 +493 4771 0.4420 +493 4842 0.9690 +493 5172 0.5840 +493 5336 0.4170 +493 5350 0.8960 +493 5566 0.9290 +493 5567 0.9290 +493 5568 0.9270 +493 5592 0.9480 +493 5593 0.9120 +493 5777 0.5330 +493 6331 0.7970 +493 6543 0.5460 +493 6546 0.5290 +493 6547 0.4910 +493 6640 0.8330 +493 6786 0.6010 +493 7137 0.7680 +493 7408 0.4190 +493 7531 0.4900 +493 8573 0.4270 +493 8821 0.4120 +493 9351 0.6640 +493 9368 0.4230 +493 9378 0.4100 +493 9467 0.6410 +493 9914 0.6330 +493 10083 0.5290 +493 10645 0.4620 +493 10951 0.4050 +493 22984 0.6140 +493 23467 0.4660 +493 25800 0.4390 +493 27000 0.5730 +493 27032 0.6000 +493 50837 0.4080 +493 51806 0.5980 +493 55328 0.7180 +493 55753 0.4180 +493 56302 0.4410 +493 60401 0.4200 +493 64072 0.7980 +493 65217 0.6880 +493 79850 0.4210 +493 80117 0.4090 +493 84640 0.4120 +493 91860 0.5760 +493 92736 0.4400 +493 117144 0.4150 +493 133060 0.7020 +493 157855 0.4320 +493 163688 0.5760 +493 166752 0.5150 +493 654346 0.5230 +493 729330 0.6960 +495 496 0.9990 +495 523 0.5750 +495 525 0.9270 +495 526 0.5110 +495 527 0.8600 +495 528 0.4770 +495 529 0.5830 +495 535 0.8930 +495 537 0.5190 +495 760 0.7970 +495 768 0.4250 +495 885 0.4270 +495 887 0.5950 +495 920 0.5590 +495 954 0.5960 +495 1080 0.4630 +495 1113 0.6410 +495 1184 0.6240 +495 1186 0.8350 +495 1346 0.4990 +495 1401 0.6620 +495 1513 0.4620 +495 1520 0.4530 +495 1536 0.5000 +495 1544 0.5440 +495 1555 0.4830 +495 1557 0.9480 +495 1558 0.4670 +495 1559 0.6310 +495 1565 0.7140 +495 1576 0.7380 +495 1577 0.5120 +495 1588 0.4110 +495 1636 0.7710 +495 2026 0.4600 +495 2099 0.4650 +495 2147 0.5930 +495 2152 0.4470 +495 2172 0.5130 +495 2475 0.4530 +495 2520 0.9350 +495 2597 0.4130 +495 2641 0.4820 +495 2694 0.7310 +495 2875 0.6180 +495 3067 0.4270 +495 3156 0.5140 +495 3274 0.8800 +495 3553 0.5060 +495 3569 0.5070 +495 3576 0.4440 +495 3596 0.4040 +495 3630 0.6420 +495 3746 0.4470 +495 3916 0.4910 +495 3920 0.4010 +495 4015 0.4480 +495 4295 0.4510 +495 4586 0.4040 +495 4588 0.4650 +495 4891 0.4080 +495 5225 0.4660 +495 5243 0.5260 +495 5464 0.9610 +495 5539 0.4160 +495 5663 0.4280 +495 5741 0.5910 +495 5742 0.4180 +495 5743 0.5940 +495 5832 0.4290 +495 5867 0.4810 +495 5873 0.5140 +495 5972 0.5360 +495 6010 0.6670 +495 6150 0.4260 +495 6279 0.6010 +495 6343 0.4860 +495 6521 0.4970 +495 6548 0.5000 +495 6549 0.4150 +495 6554 0.4950 +495 6555 0.6360 +495 6750 0.6740 +495 6844 0.7160 +495 6855 0.7320 +495 6857 0.6590 +495 7032 0.5290 +495 7124 0.5540 +495 7432 0.4100 +495 7531 0.4530 +495 8513 0.6030 +495 8600 0.4180 +495 8792 0.4240 +495 8856 0.4240 +495 8992 0.4550 +495 9114 0.4710 +495 9360 0.7010 +495 9429 0.4430 +495 9842 0.6500 +495 9900 0.5520 +495 9914 0.5250 +495 9992 0.5280 +495 10159 0.4830 +495 10312 0.9270 +495 10344 0.5120 +495 10516 0.4330 +495 10599 0.4600 +495 11202 0.4280 +495 23439 0.4320 +495 23530 0.4330 +495 23545 0.8380 +495 23564 0.4560 +495 23576 0.4570 +495 26118 0.4210 +495 27068 0.9260 +495 28962 0.6940 +495 29887 0.4950 +495 30008 0.4940 +495 50617 0.9080 +495 51382 0.8300 +495 51606 0.4940 +495 51738 0.4960 +495 53827 0.4240 +495 54205 0.4860 +495 54575 0.4050 +495 54576 0.4030 +495 54577 0.4130 +495 54578 0.4200 +495 54657 0.4430 +495 54658 0.4200 +495 55143 0.4740 +495 56172 0.4500 +495 56287 0.5300 +495 56605 0.4240 +495 57509 0.4180 +495 57521 0.5440 +495 64077 0.9130 +495 64805 0.6630 +495 84706 0.4130 +495 85365 0.7310 +495 140690 0.5000 +495 140803 0.4520 +495 155066 0.7940 +495 245972 0.4670 +495 440854 0.4050 +496 540 0.7310 +496 1356 0.4350 +496 1358 0.4240 +496 2520 0.5020 +496 2694 0.8750 +496 3764 0.5630 +496 4586 0.4870 +496 4588 0.5150 +496 5225 0.6170 +496 5348 0.5450 +496 5350 0.5430 +496 5464 0.9160 +496 5578 0.5070 +496 5826 0.6090 +496 6541 0.4430 +496 6548 0.5910 +496 6833 0.5790 +496 7032 0.5900 +496 8513 0.7570 +496 9992 0.4940 +496 10058 0.5400 +496 10060 0.5810 +496 11194 0.5770 +496 23439 0.4820 +496 27068 0.9090 +496 56287 0.6550 +496 64077 0.9120 +496 64240 0.5950 +496 64241 0.5960 +496 79178 0.4900 +498 506 0.9990 +498 509 0.9990 +498 513 0.9990 +498 514 0.9990 +498 515 0.9990 +498 516 0.9980 +498 517 0.9970 +498 518 0.9980 +498 521 0.9990 +498 522 0.9990 +498 523 0.9500 +498 525 0.9400 +498 526 0.9610 +498 527 0.9880 +498 528 0.7360 +498 529 0.8710 +498 533 0.9590 +498 534 0.6220 +498 535 0.6680 +498 539 0.9990 +498 594 0.4960 +498 617 0.7170 +498 645 0.4520 +498 689 0.4050 +498 706 0.5110 +498 708 0.4240 +498 972 0.8650 +498 1327 0.9220 +498 1329 0.9220 +498 1337 0.5050 +498 1339 0.4750 +498 1340 0.5770 +498 1345 0.6560 +498 1347 0.6800 +498 1349 0.4880 +498 1350 0.6390 +498 1351 0.4680 +498 1352 0.4680 +498 1431 0.9400 +498 1479 0.4450 +498 1499 0.4410 +498 1537 0.9910 +498 1629 0.6750 +498 1653 0.4990 +498 1654 0.5850 +498 1655 0.4570 +498 1678 0.5470 +498 1723 0.4540 +498 1737 0.8000 +498 1738 0.9170 +498 1743 0.8940 +498 1891 0.4540 +498 1915 0.5370 +498 1937 0.5370 +498 1938 0.8500 +498 1964 0.5430 +498 1973 0.5790 +498 1974 0.4600 +498 1984 0.4440 +498 2023 0.8280 +498 2026 0.7310 +498 2027 0.7610 +498 2058 0.6010 +498 2108 0.7860 +498 2109 0.6340 +498 2110 0.4950 +498 2166 0.4250 +498 2178 0.8350 +498 2193 0.4620 +498 2230 0.5100 +498 2271 0.7930 +498 2326 0.4400 +498 2327 0.4320 +498 2328 0.4320 +498 2329 0.4320 +498 2330 0.4320 +498 2395 0.5800 +498 2475 0.4330 +498 2597 0.7850 +498 2746 0.4680 +498 2752 0.4440 +498 2806 0.5350 +498 2821 0.6690 +498 2936 0.5690 +498 3028 0.4080 +498 3030 0.5840 +498 3032 0.6820 +498 3150 0.6820 +498 3151 0.6750 +498 3251 0.8450 +498 3304 0.5380 +498 3305 0.4230 +498 3306 0.4090 +498 3309 0.6300 +498 3312 0.6300 +498 3313 0.8710 +498 3320 0.6450 +498 3326 0.7060 +498 3329 0.8230 +498 3336 0.6630 +498 3376 0.4700 +498 3396 0.4710 +498 3417 0.6290 +498 3418 0.6490 +498 3419 0.8550 +498 3420 0.6470 +498 3421 0.7280 +498 3658 0.4180 +498 3720 0.8900 +498 3735 0.9210 +498 3921 0.7410 +498 3948 0.5180 +498 3982 0.8540 +498 4141 0.4320 +498 4191 0.9540 +498 4357 0.4010 +498 4508 0.9990 +498 4509 0.9940 +498 4512 0.9280 +498 4513 0.7190 +498 4514 0.4880 +498 4519 0.7850 +498 4528 0.6670 +498 4535 0.6730 +498 4536 0.5670 +498 4537 0.5670 +498 4538 0.6540 +498 4539 0.4590 +498 4540 0.5740 +498 4694 0.4880 +498 4695 0.5740 +498 4697 0.7250 +498 4698 0.7240 +498 4700 0.7000 +498 4702 0.6490 +498 4704 0.9470 +498 4705 0.7590 +498 4706 0.7670 +498 4708 0.4710 +498 4709 0.4190 +498 4710 0.4990 +498 4711 0.8290 +498 4712 0.5860 +498 4714 0.9430 +498 4715 0.8140 +498 4716 0.6460 +498 4718 0.4570 +498 4720 0.9800 +498 4722 0.9320 +498 4723 0.9580 +498 4724 0.6920 +498 4725 0.4110 +498 4726 0.4510 +498 4728 0.8010 +498 4729 0.8970 +498 4731 0.5990 +498 4736 0.8650 +498 4830 0.5440 +498 4831 0.4730 +498 4967 0.8170 +498 5009 0.5820 +498 5018 0.5430 +498 5034 0.6360 +498 5052 0.4990 +498 5096 0.5450 +498 5111 0.4770 +498 5161 0.5100 +498 5162 0.8100 +498 5188 0.6840 +498 5211 0.4570 +498 5213 0.4630 +498 5214 0.4290 +498 5223 0.5260 +498 5226 0.4900 +498 5230 0.6980 +498 5232 0.5270 +498 5245 0.6420 +498 5250 0.9770 +498 5313 0.4250 +498 5315 0.5810 +498 5431 0.8130 +498 5432 0.8830 +498 5436 0.6640 +498 5464 0.8390 +498 5469 0.8760 +498 5631 0.4440 +498 5634 0.4340 +498 5635 0.4550 +498 5636 0.4570 +498 5686 0.4440 +498 5713 0.4650 +498 5717 0.5410 +498 5832 0.6200 +498 5834 0.4200 +498 5836 0.4280 +498 5837 0.4310 +498 5917 0.4170 +498 5927 0.8900 +498 6120 0.4070 +498 6122 0.8310 +498 6123 0.8060 +498 6124 0.8670 +498 6125 0.9510 +498 6129 0.7720 +498 6132 0.8370 +498 6133 0.8990 +498 6135 0.9840 +498 6136 0.6910 +498 6139 0.8290 +498 6147 0.9780 +498 6154 0.7100 +498 6155 0.4120 +498 6157 0.4630 +498 6175 0.9130 +498 6182 0.7940 +498 6183 0.7540 +498 6187 0.9100 +498 6188 0.9820 +498 6193 0.8200 +498 6194 0.5620 +498 6198 0.5090 +498 6199 0.5610 +498 6203 0.9030 +498 6205 0.9160 +498 6207 0.4270 +498 6208 0.8660 +498 6209 0.9480 +498 6210 0.7320 +498 6217 0.8370 +498 6222 0.9550 +498 6224 0.8670 +498 6228 0.7670 +498 6235 0.8520 +498 6389 0.9720 +498 6390 0.9490 +498 6391 0.7740 +498 6392 0.7610 +498 6446 0.4640 +498 6470 0.6030 +498 6472 0.6180 +498 6595 0.4800 +498 6597 0.4770 +498 6647 0.5300 +498 6648 0.6030 +498 6687 0.5080 +498 6729 0.4640 +498 6742 0.5030 +498 6888 0.5450 +498 6901 0.5140 +498 6950 0.4540 +498 7001 0.4730 +498 7019 0.5250 +498 7086 0.5570 +498 7153 0.4160 +498 7155 0.4920 +498 7167 0.6810 +498 7178 0.5870 +498 7184 0.5020 +498 7203 0.4290 +498 7284 0.9670 +498 7296 0.5750 +498 7381 0.7770 +498 7384 0.9700 +498 7385 0.9860 +498 7386 0.9500 +498 7388 0.5910 +498 7403 0.9130 +498 7404 0.9130 +498 7407 0.5560 +498 7415 0.4570 +498 7416 0.8890 +498 7417 0.7150 +498 7419 0.7380 +498 7531 0.4420 +498 7534 0.4100 +498 7919 0.5160 +498 8050 0.7620 +498 8192 0.5610 +498 8242 0.8900 +498 8277 0.5390 +498 8284 0.8900 +498 8565 0.4170 +498 8604 0.6150 +498 8653 0.5650 +498 8801 0.6760 +498 8802 0.8530 +498 8803 0.8020 +498 8833 0.4440 +498 8886 0.4390 +498 9050 0.4250 +498 9086 0.5430 +498 9114 0.5740 +498 9131 0.6050 +498 9296 0.9110 +498 9343 0.7950 +498 9349 0.9160 +498 9361 0.4340 +498 9377 0.9790 +498 9429 0.5020 +498 9512 0.9250 +498 9533 0.8840 +498 9550 0.6590 +498 9551 0.9990 +498 9556 0.9940 +498 9563 0.4590 +498 9582 0.4810 +498 9588 0.5740 +498 9619 0.5020 +498 9669 0.6510 +498 9690 0.4420 +498 9775 0.4230 +498 9801 0.5080 +498 9804 0.6860 +498 9823 0.4500 +498 9858 0.7130 +498 9868 0.5890 +498 9914 0.4350 +498 9927 0.4090 +498 10063 0.6310 +498 10102 0.8990 +498 10105 0.4130 +498 10110 0.4610 +498 10131 0.5700 +498 10165 0.5930 +498 10212 0.4420 +498 10213 0.4750 +498 10245 0.5170 +498 10312 0.6430 +498 10399 0.5480 +498 10409 0.6240 +498 10440 0.6020 +498 10449 0.4450 +498 10452 0.5630 +498 10469 0.5780 +498 10473 0.6750 +498 10476 0.9990 +498 10553 0.4170 +498 10574 0.4800 +498 10576 0.4390 +498 10587 0.5830 +498 10632 0.9990 +498 10667 0.4910 +498 10730 0.6940 +498 10765 0.8900 +498 10845 0.5640 +498 10891 0.4370 +498 10935 0.6300 +498 10939 0.6420 +498 10971 0.4670 +498 10975 0.5490 +498 10987 0.4670 +498 10989 0.8090 +498 11079 0.5000 +498 11128 0.7880 +498 11222 0.8290 +498 11224 0.8790 +498 11315 0.4570 +498 11331 0.5450 +498 22948 0.4530 +498 22984 0.7920 +498 23135 0.9150 +498 23203 0.7460 +498 23204 0.6860 +498 23395 0.5190 +498 23410 0.6740 +498 23545 0.7750 +498 23621 0.4030 +498 23640 0.7580 +498 23645 0.4400 +498 25813 0.6310 +498 25824 0.4660 +498 25885 0.7880 +498 26227 0.5090 +498 26289 0.6730 +498 26330 0.5490 +498 26517 0.5600 +498 26519 0.5460 +498 26520 0.6340 +498 26521 0.5330 +498 27032 0.4390 +498 27068 0.8570 +498 27069 0.4230 +498 27089 0.6470 +498 27109 0.7030 +498 27235 0.5680 +498 27349 0.4500 +498 27350 0.4810 +498 28976 0.5890 +498 28998 0.4330 +498 29088 0.4640 +498 29090 0.5600 +498 29093 0.8270 +498 29104 0.5840 +498 29789 0.4750 +498 29796 0.5600 +498 29904 0.4590 +498 29927 0.8860 +498 29928 0.5890 +498 30968 0.6980 +498 50617 0.6190 +498 50808 0.6790 +498 51021 0.5700 +498 51025 0.5900 +498 51028 0.5200 +498 51069 0.8170 +498 51073 0.8540 +498 51079 0.5850 +498 51081 0.8020 +498 51116 0.7170 +498 51121 0.6880 +498 51142 0.7120 +498 51154 0.8860 +498 51264 0.4590 +498 51287 0.5180 +498 51382 0.9340 +498 51409 0.5170 +498 51444 0.5020 +498 51520 0.5180 +498 51606 0.6810 +498 51727 0.6960 +498 54205 0.6350 +498 54514 0.5650 +498 54539 0.4800 +498 54543 0.4930 +498 54927 0.6520 +498 54941 0.4740 +498 54948 0.8280 +498 54968 0.4260 +498 55028 0.8730 +498 55052 0.4990 +498 55143 0.9890 +498 55157 0.4620 +498 55173 0.8470 +498 55176 0.8850 +498 55272 0.8990 +498 55278 0.4300 +498 55293 0.4930 +498 55316 0.8450 +498 55526 0.6340 +498 55699 0.4910 +498 55703 0.7840 +498 55753 0.6240 +498 55967 0.7080 +498 56942 0.5140 +498 56952 0.8250 +498 56993 0.5720 +498 57007 0.8280 +498 57038 0.4030 +498 57136 0.5940 +498 57176 0.5110 +498 57379 0.4800 +498 57407 0.4120 +498 57469 0.5350 +498 57696 0.6510 +498 58472 0.5820 +498 60489 0.4850 +498 63875 0.8920 +498 63931 0.8540 +498 64077 0.6980 +498 64087 0.4660 +498 64111 0.4270 +498 64137 0.5020 +498 64216 0.4670 +498 64240 0.5020 +498 64241 0.5090 +498 64374 0.7590 +498 64756 0.9810 +498 64960 0.5090 +498 64963 0.8660 +498 64965 0.4920 +498 64968 0.7200 +498 64969 0.9100 +498 64979 0.6400 +498 64983 0.5710 +498 65003 0.6880 +498 65005 0.6900 +498 65008 0.8440 +498 65121 0.4390 +498 65122 0.4390 +498 79072 0.4110 +498 79145 0.5700 +498 79575 0.5020 +498 79590 0.7060 +498 79631 0.7760 +498 79728 0.4720 +498 79912 0.4030 +498 80020 0.4320 +498 80195 0.4150 +498 80273 0.6770 +498 81341 0.4330 +498 83447 0.5170 +498 83451 0.5060 +498 83473 0.4660 +498 83932 0.5100 +498 84076 0.5440 +498 84172 0.7800 +498 84269 0.5020 +498 84701 0.8760 +498 84705 0.5060 +498 84790 0.4460 +498 84833 0.9980 +498 84836 0.4100 +498 84883 0.4040 +498 84886 0.5950 +498 84939 0.4880 +498 85476 0.7940 +498 87178 0.5920 +498 90423 0.8570 +498 90639 0.5730 +498 91300 0.4330 +498 91647 0.9850 +498 91893 0.4530 +498 92399 0.7710 +498 92483 0.5200 +498 92609 0.5700 +498 93974 0.9400 +498 114112 0.5490 +498 118813 0.6210 +498 120892 0.5260 +498 122481 0.6780 +498 122622 0.5900 +498 126402 0.7850 +498 129831 0.4550 +498 130752 0.5020 +498 131118 0.5410 +498 133396 0.5650 +498 134266 0.6860 +498 138428 0.4080 +498 139221 0.4880 +498 140564 0.4800 +498 140801 0.7660 +498 146212 0.4190 +498 149041 0.5100 +498 150209 0.4030 +498 150274 0.5040 +498 158067 0.6730 +498 158584 0.4250 +498 160287 0.5010 +498 163882 0.8470 +498 164668 0.4800 +498 197257 0.5620 +498 200315 0.4800 +498 200316 0.4820 +498 219927 0.5280 +498 221264 0.8890 +498 221823 0.4330 +498 245973 0.7280 +498 259294 0.4460 +498 267020 0.9700 +498 285521 0.4220 +498 285855 0.7400 +498 343068 0.4390 +498 343070 0.4390 +498 347487 0.6750 +498 374291 0.6800 +498 387129 0.7450 +498 387712 0.7120 +498 388753 0.6610 +498 390999 0.4390 +498 391002 0.4390 +498 400735 0.4390 +498 400736 0.4390 +498 400916 0.6380 +498 401505 0.4570 +498 440560 0.4390 +498 440561 0.4390 +498 441531 0.4050 +498 441873 0.4390 +498 641776 0.6570 +498 643909 0.6570 +498 645359 0.4390 +498 653619 0.4390 +498 728317 0.4880 +498 728378 0.5240 +498 728524 0.6570 +498 729020 0.4030 +498 729528 0.4390 +498 100188893 0.4030 +498 100272147 0.5100 +498 100287482 0.6700 +498 100287932 0.6920 +498 100505478 0.7350 +498 100526740 0.5550 +498 100526842 0.8090 +498 100996746 0.6570 +498 101929983 0.4390 +498 105180390 0.6570 +498 105180391 0.6570 +501 635 0.9480 +501 808 0.8920 +501 810 0.9140 +501 847 0.6630 +501 875 0.5180 +501 1003 0.4490 +501 1385 0.5410 +501 1431 0.5450 +501 1479 0.4050 +501 1491 0.4610 +501 1499 0.5550 +501 1579 0.9150 +501 1629 0.8650 +501 1757 0.4340 +501 1892 0.5090 +501 1962 0.9390 +501 2053 0.8220 +501 2184 0.4050 +501 2271 0.4910 +501 2535 0.4400 +501 2571 0.9290 +501 2572 0.9260 +501 2597 0.4850 +501 2628 0.9290 +501 2639 0.4290 +501 2739 0.4260 +501 2744 0.8120 +501 2746 0.8730 +501 2747 0.8610 +501 2752 0.8440 +501 2780 0.4600 +501 2805 0.5550 +501 2885 0.4130 +501 3034 0.4430 +501 3155 0.5060 +501 3251 0.4390 +501 3558 0.4460 +501 3630 0.4160 +501 4128 0.9430 +501 4129 0.9450 +501 4191 0.4620 +501 4288 0.4260 +501 4329 0.9340 +501 4512 0.4150 +501 4522 0.4670 +501 4524 0.5010 +501 4548 0.4220 +501 4728 0.4360 +501 4842 0.4170 +501 4846 0.4640 +501 4878 0.4780 +501 4880 0.4200 +501 4942 0.6270 +501 5095 0.8520 +501 5096 0.8590 +501 5136 0.8840 +501 5137 0.8890 +501 5138 0.6690 +501 5139 0.8990 +501 5140 0.6990 +501 5141 0.9720 +501 5142 0.9420 +501 5143 0.9090 +501 5144 0.9100 +501 5145 0.7020 +501 5146 0.7490 +501 5147 0.8170 +501 5148 0.6360 +501 5149 0.7000 +501 5150 0.9490 +501 5151 0.8420 +501 5152 0.8810 +501 5153 0.8520 +501 5158 0.6590 +501 5566 0.8900 +501 5567 0.8900 +501 5568 0.8840 +501 5577 0.4110 +501 5592 0.7620 +501 5598 0.4280 +501 5625 0.4550 +501 5743 0.4020 +501 5832 0.7310 +501 5860 0.4690 +501 6010 0.6370 +501 6389 0.5550 +501 6390 0.5030 +501 6391 0.4540 +501 6470 0.5370 +501 6472 0.4810 +501 6517 0.4270 +501 6652 0.7240 +501 6821 0.4690 +501 7124 0.4460 +501 7167 0.5810 +501 7408 0.4030 +501 7518 0.4220 +501 7837 0.4570 +501 8165 0.8950 +501 8310 0.8650 +501 8424 0.9210 +501 8454 0.4500 +501 8622 0.8440 +501 8639 0.9280 +501 8654 0.9460 +501 8659 0.8680 +501 8801 0.6200 +501 8802 0.6090 +501 8803 0.4060 +501 9049 0.4840 +501 9465 0.4520 +501 9472 0.8100 +501 9495 0.4790 +501 9563 0.4560 +501 10142 0.4500 +501 10157 0.9560 +501 10247 0.4290 +501 10327 0.9400 +501 10411 0.9460 +501 10449 0.4790 +501 10455 0.4330 +501 10846 0.8950 +501 11069 0.9080 +501 11112 0.9270 +501 11212 0.6560 +501 23746 0.4650 +501 26227 0.5080 +501 26275 0.4820 +501 26468 0.5560 +501 27115 0.8740 +501 27165 0.8120 +501 27185 0.6550 +501 29958 0.4540 +501 50940 0.8610 +501 51011 0.8080 +501 51071 0.4480 +501 51102 0.4050 +501 51166 0.9290 +501 51268 0.4760 +501 51733 0.9380 +501 51741 0.5150 +501 51806 0.9130 +501 54511 0.4810 +501 55163 0.6870 +501 55349 0.9670 +501 55526 0.4140 +501 55748 0.9080 +501 55811 0.4310 +501 55862 0.8660 +501 55902 0.9420 +501 57016 0.9320 +501 57571 0.9040 +501 57591 0.4340 +501 58497 0.4040 +501 58510 0.4210 +501 60386 0.7940 +501 64850 0.4020 +501 64902 0.9410 +501 65220 0.4760 +501 79611 0.8700 +501 80227 0.4380 +501 83874 0.4190 +501 84152 0.4610 +501 84263 0.6900 +501 84532 0.9390 +501 84735 0.9070 +501 85007 0.9370 +501 91860 0.9140 +501 112812 0.4180 +501 123876 0.4190 +501 126133 0.5280 +501 130013 0.4240 +501 132158 0.9170 +501 134526 0.9060 +501 137872 0.4970 +501 137902 0.4370 +501 160287 0.4270 +501 163688 0.9140 +501 169522 0.5520 +501 197322 0.9270 +501 284541 0.9150 +501 339896 0.9290 +506 509 0.9990 +506 513 0.9990 +506 514 0.9990 +506 515 0.9990 +506 516 0.9950 +506 517 0.9900 +506 518 0.9950 +506 521 0.9990 +506 522 0.9990 +506 523 0.9600 +506 525 0.9420 +506 526 0.9800 +506 527 0.8740 +506 528 0.7680 +506 529 0.9610 +506 533 0.6860 +506 534 0.7830 +506 539 0.9990 +506 617 0.6740 +506 821 0.4960 +506 972 0.4840 +506 1327 0.9520 +506 1329 0.8860 +506 1337 0.5640 +506 1339 0.4600 +506 1340 0.6630 +506 1345 0.5130 +506 1347 0.6510 +506 1349 0.4340 +506 1350 0.6370 +506 1351 0.5720 +506 1353 0.4030 +506 1376 0.4010 +506 1431 0.9170 +506 1537 0.9760 +506 1654 0.5610 +506 1678 0.5530 +506 1737 0.5390 +506 1738 0.4270 +506 1743 0.6290 +506 1892 0.4820 +506 1915 0.6590 +506 1917 0.4950 +506 1936 0.4610 +506 1937 0.5660 +506 1938 0.6910 +506 1973 0.5270 +506 1974 0.5190 +506 1984 0.4840 +506 2023 0.6660 +506 2026 0.4520 +506 2027 0.4810 +506 2058 0.4520 +506 2101 0.8330 +506 2108 0.5250 +506 2178 0.4530 +506 2271 0.4680 +506 2395 0.5750 +506 2521 0.6880 +506 2597 0.7590 +506 2632 0.9180 +506 2746 0.4630 +506 2752 0.4290 +506 2806 0.5280 +506 2821 0.5830 +506 2923 0.4520 +506 2926 0.4770 +506 3030 0.5960 +506 3032 0.6310 +506 3033 0.4350 +506 3145 0.4530 +506 3150 0.4240 +506 3151 0.4330 +506 3251 0.4880 +506 3306 0.4110 +506 3309 0.5500 +506 3312 0.6810 +506 3313 0.8630 +506 3320 0.6770 +506 3326 0.7560 +506 3329 0.8210 +506 3336 0.4480 +506 3354 0.5510 +506 3396 0.4860 +506 3417 0.4920 +506 3418 0.5460 +506 3419 0.5870 +506 3420 0.6080 +506 3421 0.6660 +506 3619 0.6150 +506 3921 0.6970 +506 3982 0.4670 +506 4191 0.9210 +506 4508 0.9990 +506 4509 0.9950 +506 4512 0.5710 +506 4513 0.6480 +506 4519 0.5990 +506 4528 0.4340 +506 4535 0.5990 +506 4536 0.5140 +506 4538 0.5530 +506 4540 0.4690 +506 4694 0.4130 +506 4695 0.5710 +506 4696 0.4700 +506 4697 0.5810 +506 4698 0.5830 +506 4700 0.4610 +506 4701 0.4460 +506 4702 0.5430 +506 4704 0.9500 +506 4705 0.9380 +506 4706 0.6770 +506 4709 0.5850 +506 4710 0.6130 +506 4711 0.7290 +506 4712 0.4940 +506 4714 0.8850 +506 4715 0.6370 +506 4716 0.5950 +506 4718 0.5200 +506 4720 0.9700 +506 4722 0.8640 +506 4723 0.8910 +506 4724 0.5150 +506 4725 0.5180 +506 4726 0.6540 +506 4728 0.7370 +506 4729 0.6320 +506 4731 0.4180 +506 4736 0.4860 +506 4830 0.4110 +506 4899 0.7950 +506 4967 0.7090 +506 5009 0.5080 +506 5018 0.6410 +506 5034 0.7310 +506 5052 0.5350 +506 5096 0.4790 +506 5161 0.6010 +506 5162 0.7550 +506 5223 0.4420 +506 5230 0.5970 +506 5245 0.7820 +506 5250 0.9640 +506 5315 0.5700 +506 5431 0.5970 +506 5432 0.4870 +506 5464 0.7830 +506 5469 0.4630 +506 5478 0.4260 +506 5481 0.4890 +506 5501 0.5270 +506 5595 0.4080 +506 5682 0.4110 +506 5684 0.4410 +506 5694 0.4150 +506 5696 0.4670 +506 5699 0.4140 +506 5720 0.4340 +506 5721 0.4130 +506 6122 0.5210 +506 6123 0.4660 +506 6124 0.6320 +506 6125 0.5810 +506 6129 0.4190 +506 6132 0.5810 +506 6133 0.5510 +506 6135 0.6670 +506 6136 0.5210 +506 6139 0.4530 +506 6147 0.5230 +506 6175 0.6420 +506 6181 0.4380 +506 6182 0.6200 +506 6183 0.4920 +506 6187 0.6640 +506 6188 0.7030 +506 6189 0.4970 +506 6193 0.5610 +506 6198 0.4720 +506 6199 0.4330 +506 6203 0.5950 +506 6205 0.5390 +506 6208 0.5160 +506 6209 0.5510 +506 6217 0.4950 +506 6222 0.6680 +506 6224 0.5350 +506 6235 0.4850 +506 6389 0.9170 +506 6390 0.8790 +506 6391 0.4080 +506 6392 0.4730 +506 6446 0.4250 +506 6595 0.5080 +506 6597 0.5150 +506 6648 0.4330 +506 6888 0.4430 +506 6901 0.4990 +506 6950 0.4130 +506 7001 0.4530 +506 7019 0.4760 +506 7086 0.4460 +506 7167 0.6790 +506 7178 0.5580 +506 7184 0.4470 +506 7203 0.4440 +506 7284 0.8400 +506 7311 0.4610 +506 7314 0.6470 +506 7316 0.5310 +506 7381 0.6770 +506 7384 0.9690 +506 7385 0.9420 +506 7386 0.9140 +506 7388 0.5810 +506 7415 0.6010 +506 7416 0.8880 +506 7417 0.7580 +506 7419 0.7410 +506 7529 0.4700 +506 7531 0.6320 +506 7532 0.4010 +506 7534 0.6020 +506 7846 0.4390 +506 8050 0.4090 +506 8192 0.5230 +506 8277 0.4010 +506 8361 0.4880 +506 8402 0.4480 +506 8604 0.5730 +506 8653 0.5570 +506 8668 0.4280 +506 8703 0.5980 +506 8801 0.4710 +506 8802 0.7330 +506 8803 0.5720 +506 9055 0.4530 +506 9114 0.4680 +506 9131 0.4400 +506 9212 0.4910 +506 9296 0.8850 +506 9343 0.5080 +506 9349 0.5330 +506 9361 0.4250 +506 9377 0.9520 +506 9429 0.5170 +506 9493 0.4490 +506 9512 0.8450 +506 9533 0.4860 +506 9550 0.9160 +506 9551 0.9990 +506 9556 0.9950 +506 9588 0.4480 +506 9619 0.4400 +506 9804 0.7140 +506 9868 0.6550 +506 10063 0.6460 +506 10102 0.5530 +506 10105 0.5890 +506 10110 0.4160 +506 10112 0.4330 +506 10131 0.5080 +506 10165 0.6220 +506 10245 0.6140 +506 10376 0.4910 +506 10383 0.4410 +506 10399 0.5790 +506 10419 0.4360 +506 10434 0.5050 +506 10440 0.6710 +506 10452 0.7270 +506 10469 0.6660 +506 10473 0.4160 +506 10476 0.9990 +506 10531 0.4610 +506 10549 0.6300 +506 10551 0.5100 +506 10560 0.5530 +506 10574 0.5080 +506 10632 0.9990 +506 10728 0.7730 +506 10845 0.5980 +506 10891 0.4460 +506 10935 0.6730 +506 10939 0.5710 +506 10971 0.5180 +506 10975 0.5550 +506 10989 0.7450 +506 11128 0.4770 +506 11222 0.4870 +506 11224 0.5200 +506 11315 0.4250 +506 11331 0.7120 +506 22984 0.4820 +506 23203 0.6670 +506 23204 0.4070 +506 23410 0.5240 +506 23521 0.5970 +506 23530 0.4010 +506 23640 0.4400 +506 23645 0.4900 +506 23787 0.4400 +506 23788 0.5070 +506 25813 0.4710 +506 25824 0.5600 +506 25885 0.4750 +506 26517 0.5780 +506 26519 0.6260 +506 26520 0.5840 +506 26521 0.5630 +506 27068 0.7980 +506 27069 0.4100 +506 27089 0.6690 +506 27109 0.7650 +506 27235 0.5750 +506 28958 0.4160 +506 28976 0.6060 +506 29090 0.6030 +506 29093 0.4860 +506 29104 0.4510 +506 29796 0.4940 +506 29927 0.4840 +506 29928 0.6180 +506 29956 0.5590 +506 30968 0.5480 +506 50808 0.4800 +506 50840 0.4680 +506 51024 0.4200 +506 51025 0.5570 +506 51028 0.4490 +506 51069 0.5330 +506 51073 0.4060 +506 51079 0.6690 +506 51081 0.5210 +506 51138 0.4120 +506 51142 0.6980 +506 51154 0.4780 +506 51287 0.5090 +506 51382 0.8420 +506 51606 0.8050 +506 54205 0.6060 +506 54443 0.4150 +506 54514 0.5570 +506 54543 0.4570 +506 54927 0.6590 +506 54948 0.6100 +506 54968 0.6160 +506 55028 0.8130 +506 55173 0.4350 +506 55176 0.4610 +506 55272 0.5070 +506 55276 0.4840 +506 55316 0.4280 +506 55331 0.7690 +506 55703 0.4460 +506 55863 0.7970 +506 55967 0.7370 +506 56942 0.5260 +506 56993 0.7510 +506 57007 0.7800 +506 57017 0.4590 +506 58472 0.4940 +506 60496 0.6930 +506 63875 0.4990 +506 63931 0.5910 +506 64077 0.7180 +506 64087 0.4220 +506 64137 0.4400 +506 64240 0.4400 +506 64241 0.4400 +506 64374 0.4440 +506 64756 0.9830 +506 64963 0.6370 +506 64969 0.5230 +506 64979 0.4110 +506 65003 0.6080 +506 65008 0.4580 +506 79145 0.4990 +506 79575 0.4140 +506 79590 0.4210 +506 79631 0.4510 +506 80273 0.5890 +506 81341 0.4210 +506 81555 0.4450 +506 83447 0.4880 +506 83451 0.4190 +506 83932 0.5100 +506 84076 0.4090 +506 84172 0.4610 +506 84233 0.7810 +506 84269 0.5070 +506 84676 0.4930 +506 84701 0.8660 +506 84790 0.4820 +506 84833 0.9970 +506 84886 0.5020 +506 85476 0.5370 +506 90423 0.6400 +506 90639 0.5110 +506 91300 0.4240 +506 91647 0.9810 +506 92399 0.4390 +506 92609 0.7300 +506 93974 0.9660 +506 114987 0.4140 +506 118813 0.4430 +506 125965 0.4060 +506 126402 0.4400 +506 131118 0.5900 +506 133396 0.5570 +506 133522 0.8170 +506 134266 0.5620 +506 140801 0.4510 +506 150274 0.4820 +506 197257 0.4710 +506 203068 0.5280 +506 222553 0.5970 +506 245973 0.5900 +506 267020 0.9640 +506 347487 0.4750 +506 374291 0.6030 +506 388753 0.6820 +506 400916 0.6490 +506 401505 0.4890 +506 728378 0.5450 +506 100188893 0.4190 +506 100272147 0.5610 +506 100287932 0.6770 +506 100526740 0.5400 +506 100526842 0.4350 +509 513 0.9990 +509 514 0.9990 +509 515 0.9990 +509 516 0.9990 +509 517 0.9980 +509 518 0.9990 +509 521 0.9990 +509 522 0.9990 +509 523 0.9620 +509 525 0.9500 +509 526 0.9670 +509 527 0.9850 +509 528 0.6680 +509 529 0.8450 +509 533 0.9530 +509 534 0.6250 +509 535 0.6240 +509 539 0.9990 +509 594 0.7370 +509 645 0.4820 +509 689 0.4610 +509 908 0.4480 +509 972 0.8390 +509 1327 0.9070 +509 1329 0.9440 +509 1337 0.7790 +509 1339 0.7380 +509 1340 0.7180 +509 1345 0.8230 +509 1347 0.7210 +509 1349 0.5910 +509 1350 0.8820 +509 1352 0.5260 +509 1355 0.5040 +509 1431 0.7260 +509 1537 0.9700 +509 1629 0.4880 +509 1650 0.4680 +509 1653 0.4750 +509 1654 0.5590 +509 1737 0.5540 +509 1738 0.9140 +509 1743 0.8220 +509 1938 0.7730 +509 1964 0.4550 +509 1973 0.4620 +509 1974 0.4560 +509 2023 0.7390 +509 2026 0.7100 +509 2027 0.7290 +509 2058 0.4170 +509 2108 0.7150 +509 2166 0.4140 +509 2178 0.7630 +509 2193 0.4370 +509 2271 0.6960 +509 2335 0.4190 +509 2539 0.4060 +509 2597 0.6090 +509 2821 0.5000 +509 2936 0.5460 +509 3030 0.4670 +509 3032 0.5190 +509 3150 0.6910 +509 3151 0.6720 +509 3162 0.4330 +509 3251 0.8450 +509 3320 0.4390 +509 3326 0.4070 +509 3329 0.4730 +509 3336 0.5630 +509 3351 0.4230 +509 3396 0.5290 +509 3417 0.5700 +509 3419 0.8140 +509 3420 0.8120 +509 3421 0.7740 +509 3720 0.8900 +509 3735 0.9260 +509 3921 0.6680 +509 3948 0.4030 +509 3982 0.8350 +509 4191 0.9180 +509 4508 0.9990 +509 4509 0.9930 +509 4512 0.6910 +509 4513 0.6990 +509 4514 0.4980 +509 4519 0.5190 +509 4528 0.6110 +509 4535 0.6610 +509 4536 0.5230 +509 4537 0.4620 +509 4538 0.5470 +509 4540 0.4800 +509 4694 0.4980 +509 4695 0.7530 +509 4696 0.4710 +509 4697 0.8020 +509 4698 0.8730 +509 4700 0.7990 +509 4701 0.6900 +509 4702 0.8690 +509 4704 0.9340 +509 4705 0.9190 +509 4706 0.8890 +509 4707 0.4250 +509 4709 0.7590 +509 4710 0.7570 +509 4711 0.9190 +509 4712 0.9170 +509 4713 0.7570 +509 4714 0.9130 +509 4715 0.9740 +509 4716 0.7500 +509 4718 0.6650 +509 4720 0.9500 +509 4722 0.9810 +509 4723 0.9490 +509 4724 0.9230 +509 4725 0.6700 +509 4726 0.7710 +509 4728 0.9300 +509 4729 0.9710 +509 4731 0.5080 +509 4736 0.7910 +509 4830 0.4050 +509 4967 0.6060 +509 5028 0.4220 +509 5161 0.4540 +509 5162 0.9130 +509 5188 0.6940 +509 5211 0.4200 +509 5213 0.5020 +509 5214 0.4310 +509 5230 0.6310 +509 5232 0.5600 +509 5245 0.5400 +509 5250 0.8620 +509 5431 0.8140 +509 5432 0.8720 +509 5464 0.8540 +509 5469 0.8550 +509 5683 0.4330 +509 5687 0.5620 +509 5832 0.4240 +509 5927 0.8900 +509 6120 0.4110 +509 6122 0.7410 +509 6123 0.7320 +509 6124 0.8190 +509 6125 0.9600 +509 6129 0.7150 +509 6132 0.7870 +509 6133 0.8870 +509 6135 0.9650 +509 6136 0.6760 +509 6139 0.8650 +509 6147 0.9440 +509 6154 0.7010 +509 6157 0.4470 +509 6175 0.9050 +509 6182 0.8790 +509 6183 0.7290 +509 6187 0.8820 +509 6188 0.9730 +509 6193 0.7450 +509 6198 0.5330 +509 6199 0.5260 +509 6203 0.8970 +509 6205 0.9260 +509 6208 0.8380 +509 6209 0.9330 +509 6210 0.6980 +509 6217 0.8120 +509 6222 0.9450 +509 6224 0.8430 +509 6228 0.7300 +509 6235 0.7160 +509 6389 0.7500 +509 6390 0.9680 +509 6391 0.8300 +509 6392 0.7990 +509 6446 0.5260 +509 6472 0.5050 +509 6647 0.4280 +509 6648 0.4890 +509 6708 0.4930 +509 6742 0.6060 +509 6745 0.4870 +509 7167 0.7760 +509 7184 0.5220 +509 7284 0.9600 +509 7296 0.5470 +509 7381 0.9630 +509 7384 0.9550 +509 7385 0.9800 +509 7386 0.9700 +509 7388 0.6840 +509 7403 0.8990 +509 7404 0.8990 +509 7407 0.4100 +509 7416 0.7510 +509 7417 0.6930 +509 7419 0.6970 +509 7453 0.4120 +509 8050 0.5710 +509 8192 0.5430 +509 8242 0.8900 +509 8284 0.8900 +509 8565 0.4490 +509 8653 0.5560 +509 8801 0.7280 +509 8802 0.9340 +509 8803 0.7510 +509 8833 0.4820 +509 9086 0.4410 +509 9114 0.4670 +509 9131 0.4600 +509 9167 0.4580 +509 9296 0.9110 +509 9343 0.7910 +509 9349 0.8960 +509 9377 0.9880 +509 9429 0.4980 +509 9512 0.8660 +509 9524 0.4250 +509 9533 0.8740 +509 9538 0.4180 +509 9550 0.6960 +509 9551 0.9970 +509 9556 0.9820 +509 9563 0.4750 +509 9582 0.4900 +509 9619 0.4980 +509 9669 0.6090 +509 9775 0.4140 +509 9801 0.6380 +509 9804 0.5180 +509 9858 0.6460 +509 10056 0.4450 +509 10102 0.8840 +509 10110 0.5260 +509 10312 0.5900 +509 10352 0.4160 +509 10473 0.6700 +509 10476 0.9990 +509 10539 0.4260 +509 10553 0.4860 +509 10587 0.5400 +509 10632 0.9990 +509 10667 0.4460 +509 10765 0.8900 +509 10768 0.4650 +509 10845 0.4650 +509 10935 0.4960 +509 10939 0.4320 +509 10975 0.4670 +509 10989 0.6530 +509 11030 0.5470 +509 11128 0.7020 +509 11222 0.7870 +509 11224 0.9160 +509 11315 0.4760 +509 11331 0.4490 +509 23135 0.9010 +509 23203 0.6270 +509 23204 0.6660 +509 23382 0.4600 +509 23395 0.4050 +509 23543 0.6720 +509 23545 0.6030 +509 23640 0.7540 +509 23645 0.4070 +509 23678 0.4360 +509 23787 0.4900 +509 23788 0.6200 +509 25813 0.4190 +509 25831 0.5140 +509 25885 0.7000 +509 26289 0.6850 +509 26330 0.5410 +509 26520 0.4030 +509 27068 0.8470 +509 27089 0.9110 +509 27109 0.7740 +509 27350 0.4900 +509 28976 0.5790 +509 28998 0.4390 +509 29088 0.5650 +509 29093 0.8500 +509 29104 0.5960 +509 29796 0.7380 +509 29927 0.8450 +509 29990 0.4260 +509 50617 0.5860 +509 50808 0.7240 +509 51021 0.6280 +509 51028 0.5280 +509 51067 0.4340 +509 51069 0.7660 +509 51073 0.8110 +509 51079 0.8830 +509 51081 0.7580 +509 51102 0.4230 +509 51116 0.6530 +509 51121 0.7130 +509 51138 0.4610 +509 51142 0.4180 +509 51154 0.8890 +509 51382 0.9320 +509 51409 0.5290 +509 51444 0.4140 +509 51520 0.5420 +509 51574 0.5920 +509 51606 0.6940 +509 51642 0.4970 +509 51727 0.7300 +509 54205 0.6680 +509 54514 0.5560 +509 54539 0.8650 +509 54715 0.6070 +509 54927 0.7770 +509 54941 0.4030 +509 54948 0.7890 +509 54968 0.5220 +509 55028 0.8090 +509 55143 0.9760 +509 55173 0.8350 +509 55176 0.8450 +509 55272 0.8900 +509 55278 0.4230 +509 55293 0.4370 +509 55316 0.7110 +509 55331 0.8100 +509 55351 0.4360 +509 55471 0.8250 +509 55526 0.4490 +509 55703 0.7810 +509 55753 0.4460 +509 55794 0.4200 +509 55967 0.9690 +509 56945 0.4900 +509 56952 0.8370 +509 57379 0.4890 +509 57407 0.4720 +509 57469 0.5280 +509 57470 0.4390 +509 58472 0.4440 +509 60489 0.4970 +509 63875 0.8870 +509 63931 0.7640 +509 64077 0.7060 +509 64111 0.4350 +509 64137 0.4980 +509 64240 0.4980 +509 64241 0.4980 +509 64374 0.7550 +509 64756 0.8820 +509 64963 0.8530 +509 64968 0.7400 +509 64969 0.8850 +509 64979 0.6410 +509 64983 0.7310 +509 65003 0.6760 +509 65005 0.7220 +509 65008 0.8430 +509 65121 0.4020 +509 65122 0.4020 +509 79002 0.4810 +509 79575 0.5030 +509 79590 0.7520 +509 79631 0.7600 +509 79728 0.7390 +509 80195 0.4720 +509 81341 0.4070 +509 81570 0.4650 +509 83451 0.5050 +509 84172 0.7780 +509 84303 0.6320 +509 84701 0.8630 +509 84833 0.9970 +509 84886 0.7830 +509 84939 0.5050 +509 85476 0.7700 +509 90423 0.7570 +509 91300 0.4070 +509 91647 0.8370 +509 91893 0.4270 +509 92399 0.4870 +509 92483 0.4030 +509 93974 0.9640 +509 114112 0.5420 +509 118813 0.4380 +509 122481 0.6960 +509 122622 0.5000 +509 123263 0.5160 +509 125965 0.5380 +509 126328 0.4770 +509 126402 0.7160 +509 130752 0.6780 +509 133396 0.5560 +509 139221 0.5050 +509 140564 0.4890 +509 140801 0.7570 +509 158067 0.6960 +509 158584 0.4140 +509 160287 0.4030 +509 163882 0.8180 +509 164668 0.4890 +509 200315 0.4900 +509 200316 0.4910 +509 202374 0.4360 +509 203286 0.4980 +509 219927 0.6470 +509 221264 0.9130 +509 245973 0.6290 +509 259294 0.4030 +509 267020 0.9620 +509 282974 0.4360 +509 283459 0.5580 +509 285855 0.6440 +509 343068 0.4020 +509 343070 0.4020 +509 347487 0.6460 +509 374291 0.7220 +509 387129 0.6330 +509 387712 0.6980 +509 388753 0.4110 +509 390999 0.4020 +509 391002 0.4020 +509 391059 0.4360 +509 400735 0.4020 +509 400736 0.4020 +509 440560 0.4020 +509 440561 0.4020 +509 441873 0.4020 +509 641776 0.6460 +509 643909 0.6460 +509 645359 0.4020 +509 653619 0.4020 +509 728317 0.5050 +509 728524 0.6460 +509 729528 0.4020 +509 100287482 0.6460 +509 100505478 0.6320 +509 100526740 0.5400 +509 100526842 0.8330 +509 100532726 0.4830 +509 100996746 0.6460 +509 101929983 0.4020 +509 105180390 0.6460 +509 105180391 0.6460 +513 514 0.9990 +513 515 0.9990 +513 516 0.9990 +513 517 0.9980 +513 518 0.9990 +513 521 0.9990 +513 522 0.9990 +513 523 0.9230 +513 525 0.9100 +513 526 0.9130 +513 527 0.9850 +513 528 0.6110 +513 529 0.7710 +513 533 0.9610 +513 534 0.6030 +513 535 0.5860 +513 539 0.9990 +513 549 0.4440 +513 594 0.5620 +513 972 0.4660 +513 1175 0.5330 +513 1327 0.9330 +513 1329 0.9750 +513 1337 0.8080 +513 1339 0.7990 +513 1340 0.8140 +513 1345 0.8120 +513 1347 0.5240 +513 1350 0.9000 +513 1351 0.6210 +513 1352 0.4350 +513 1353 0.4430 +513 1355 0.5510 +513 1376 0.4850 +513 1429 0.4140 +513 1431 0.6370 +513 1479 0.4300 +513 1537 0.9910 +513 1629 0.4600 +513 1654 0.5450 +513 1737 0.5490 +513 1738 0.4470 +513 1743 0.7560 +513 1798 0.4420 +513 1891 0.4160 +513 1892 0.4220 +513 1938 0.5530 +513 2023 0.4750 +513 2058 0.4380 +513 2110 0.4340 +513 2178 0.5700 +513 2271 0.4210 +513 2597 0.4360 +513 2618 0.4120 +513 2745 0.4110 +513 2821 0.4860 +513 3251 0.7930 +513 3329 0.4170 +513 3336 0.5010 +513 3419 0.5420 +513 3420 0.5110 +513 3421 0.5460 +513 3720 0.8900 +513 3921 0.4450 +513 3982 0.8380 +513 4141 0.4200 +513 4191 0.8530 +513 4508 0.9990 +513 4509 0.9950 +513 4512 0.4930 +513 4513 0.4830 +513 4514 0.5100 +513 4519 0.6390 +513 4528 0.5650 +513 4535 0.7130 +513 4536 0.5380 +513 4537 0.5310 +513 4538 0.5930 +513 4540 0.5400 +513 4694 0.4580 +513 4695 0.6190 +513 4696 0.7550 +513 4697 0.5130 +513 4698 0.7200 +513 4700 0.5900 +513 4701 0.9030 +513 4702 0.8550 +513 4704 0.7610 +513 4705 0.8670 +513 4706 0.9240 +513 4710 0.6560 +513 4711 0.9010 +513 4712 0.8870 +513 4713 0.9700 +513 4714 0.9350 +513 4715 0.9220 +513 4716 0.9250 +513 4718 0.7550 +513 4720 0.9020 +513 4722 0.9570 +513 4723 0.9800 +513 4724 0.7340 +513 4725 0.5030 +513 4726 0.9150 +513 4728 0.9800 +513 4729 0.9440 +513 4731 0.5380 +513 4736 0.6010 +513 4830 0.4290 +513 4831 0.4400 +513 4832 0.4840 +513 4833 0.4210 +513 4904 0.4790 +513 4967 0.4150 +513 5161 0.4660 +513 5162 0.6490 +513 5211 0.4250 +513 5213 0.4050 +513 5214 0.4290 +513 5230 0.4810 +513 5250 0.5200 +513 5431 0.4620 +513 5432 0.4710 +513 5464 0.7400 +513 5469 0.4590 +513 5927 0.8900 +513 6122 0.4450 +513 6123 0.4430 +513 6124 0.4700 +513 6125 0.6590 +513 6129 0.4400 +513 6132 0.7280 +513 6133 0.4820 +513 6135 0.5080 +513 6139 0.6570 +513 6147 0.4460 +513 6150 0.4770 +513 6175 0.4370 +513 6182 0.9580 +513 6183 0.5710 +513 6187 0.7480 +513 6188 0.7580 +513 6193 0.5130 +513 6198 0.5970 +513 6199 0.5820 +513 6203 0.7390 +513 6205 0.8220 +513 6207 0.4490 +513 6208 0.4570 +513 6209 0.7850 +513 6217 0.4300 +513 6222 0.5710 +513 6224 0.5460 +513 6228 0.5320 +513 6235 0.5160 +513 6389 0.8630 +513 6390 0.9310 +513 6391 0.7500 +513 6392 0.6480 +513 6446 0.5630 +513 6595 0.4730 +513 6597 0.4700 +513 6888 0.4080 +513 7167 0.6170 +513 7284 0.9270 +513 7381 0.9270 +513 7384 0.9680 +513 7385 0.8240 +513 7386 0.9680 +513 7388 0.6760 +513 7403 0.9120 +513 7404 0.9120 +513 7416 0.5610 +513 7417 0.5360 +513 7419 0.6030 +513 8050 0.4800 +513 8192 0.6960 +513 8242 0.8900 +513 8284 0.8900 +513 8402 0.4840 +513 8565 0.4240 +513 8653 0.5640 +513 8721 0.4590 +513 8802 0.8400 +513 9040 0.4430 +513 9114 0.4450 +513 9218 0.4170 +513 9296 0.9380 +513 9343 0.4810 +513 9349 0.6740 +513 9377 0.9800 +513 9429 0.4650 +513 9512 0.8310 +513 9533 0.4660 +513 9550 0.6170 +513 9551 0.9990 +513 9556 0.9950 +513 9563 0.4660 +513 9582 0.4950 +513 9619 0.4650 +513 9669 0.4090 +513 10056 0.4070 +513 10102 0.6700 +513 10110 0.5440 +513 10201 0.4090 +513 10273 0.4130 +513 10312 0.5940 +513 10476 0.9990 +513 10574 0.4640 +513 10632 0.9990 +513 10765 0.8900 +513 10975 0.9220 +513 11128 0.6630 +513 11222 0.4380 +513 11224 0.7220 +513 11331 0.5310 +513 23135 0.9150 +513 23203 0.6220 +513 23545 0.5880 +513 23640 0.6590 +513 23645 0.5710 +513 23678 0.4460 +513 23787 0.4290 +513 25828 0.4910 +513 25873 0.4250 +513 25885 0.6490 +513 26164 0.4080 +513 26284 0.4010 +513 26289 0.4790 +513 27068 0.7380 +513 27089 0.9430 +513 27109 0.7400 +513 27349 0.4590 +513 27350 0.5030 +513 28976 0.5870 +513 29085 0.5230 +513 29093 0.6820 +513 29104 0.5620 +513 29796 0.8790 +513 29927 0.5130 +513 50808 0.4960 +513 51021 0.4820 +513 51022 0.4080 +513 51028 0.5200 +513 51067 0.4390 +513 51069 0.7750 +513 51073 0.6360 +513 51079 0.9340 +513 51081 0.4290 +513 51102 0.4570 +513 51116 0.5740 +513 51149 0.4350 +513 51154 0.4100 +513 51264 0.5510 +513 51295 0.5380 +513 51382 0.9310 +513 51409 0.4900 +513 51574 0.5140 +513 51606 0.6110 +513 51727 0.4730 +513 54205 0.5700 +513 54514 0.5450 +513 54539 0.9360 +513 54927 0.4430 +513 54948 0.7130 +513 54995 0.4650 +513 55009 0.5120 +513 55028 0.9210 +513 55052 0.5470 +513 55143 0.9750 +513 55168 0.4260 +513 55173 0.5740 +513 55176 0.5090 +513 55272 0.7360 +513 55316 0.5080 +513 55351 0.4460 +513 55703 0.4300 +513 55967 0.7520 +513 57007 0.6830 +513 57379 0.4920 +513 60489 0.5010 +513 63875 0.9320 +513 63931 0.5790 +513 64077 0.6980 +513 64137 0.4650 +513 64240 0.4650 +513 64241 0.4650 +513 64374 0.6540 +513 64756 0.5110 +513 64960 0.5340 +513 64963 0.5540 +513 64965 0.4310 +513 64968 0.4080 +513 64969 0.7260 +513 64975 0.4240 +513 64979 0.7760 +513 65003 0.4650 +513 65005 0.7670 +513 65008 0.6090 +513 65993 0.6740 +513 79002 0.6810 +513 79631 0.4760 +513 79728 0.8770 +513 81341 0.5710 +513 83590 0.4320 +513 84172 0.4260 +513 84266 0.4650 +513 84331 0.4060 +513 84545 0.4530 +513 84701 0.8810 +513 84816 0.5490 +513 84833 0.9980 +513 84886 0.8800 +513 84939 0.7160 +513 85476 0.5030 +513 90423 0.6660 +513 91300 0.6620 +513 91647 0.5880 +513 93974 0.8860 +513 115098 0.4330 +513 122481 0.4440 +513 125965 0.6660 +513 125988 0.5130 +513 126328 0.7720 +513 126402 0.4130 +513 133396 0.5450 +513 139221 0.7120 +513 140564 0.4920 +513 140801 0.6420 +513 140823 0.4550 +513 158067 0.4440 +513 163882 0.8490 +513 164668 0.4920 +513 200315 0.4920 +513 200316 0.4960 +513 202374 0.4460 +513 219927 0.5190 +513 221264 0.8140 +513 245973 0.5580 +513 259294 0.4200 +513 267020 0.9860 +513 282974 0.4460 +513 283459 0.6840 +513 285521 0.4560 +513 285855 0.4320 +513 374291 0.9920 +513 387129 0.4260 +513 388753 0.6780 +513 391059 0.4460 +513 400916 0.6010 +513 440567 0.4280 +513 728317 0.7120 +513 100505478 0.4240 +513 100526740 0.5400 +513 100526842 0.6540 +513 100532726 0.5780 +514 515 0.9990 +514 516 0.9950 +514 517 0.9910 +514 518 0.9940 +514 521 0.9990 +514 522 0.9990 +514 523 0.6110 +514 525 0.5400 +514 526 0.6110 +514 527 0.7390 +514 528 0.5870 +514 529 0.7460 +514 533 0.7470 +514 534 0.7100 +514 539 0.9990 +514 1327 0.7000 +514 1329 0.8210 +514 1337 0.7220 +514 1339 0.5760 +514 1340 0.6580 +514 1345 0.7960 +514 1347 0.7680 +514 1349 0.6690 +514 1350 0.9150 +514 1351 0.5210 +514 1522 0.8310 +514 1537 0.6190 +514 1654 0.4670 +514 2166 0.4010 +514 2197 0.4780 +514 2271 0.4130 +514 2778 0.4660 +514 3720 0.6660 +514 4508 0.9990 +514 4509 0.9940 +514 4514 0.4530 +514 4694 0.8400 +514 4695 0.8510 +514 4696 0.7910 +514 4697 0.6620 +514 4698 0.8170 +514 4700 0.8090 +514 4701 0.7950 +514 4702 0.5470 +514 4706 0.5960 +514 4708 0.6830 +514 4709 0.6250 +514 4710 0.5250 +514 4711 0.6760 +514 4712 0.5330 +514 4713 0.6620 +514 4714 0.6810 +514 4715 0.8280 +514 4716 0.8050 +514 4717 0.4500 +514 4718 0.5290 +514 4720 0.4340 +514 4722 0.4600 +514 4723 0.4940 +514 4724 0.5870 +514 4725 0.7590 +514 4726 0.7970 +514 4728 0.4100 +514 4729 0.5970 +514 4731 0.7870 +514 5464 0.6810 +514 5927 0.6660 +514 6146 0.4770 +514 6161 0.4960 +514 6187 0.4460 +514 6188 0.4490 +514 6198 0.4620 +514 6199 0.4580 +514 6202 0.5320 +514 6205 0.4900 +514 6208 0.5760 +514 6209 0.4830 +514 6217 0.5830 +514 6222 0.6630 +514 6223 0.5060 +514 6227 0.4150 +514 6230 0.4030 +514 6235 0.4670 +514 6389 0.4470 +514 6390 0.5580 +514 6392 0.5330 +514 6446 0.4580 +514 6595 0.4490 +514 6597 0.4420 +514 7314 0.4060 +514 7381 0.7090 +514 7384 0.5030 +514 7386 0.5090 +514 7388 0.8640 +514 7403 0.6830 +514 7404 0.6830 +514 8192 0.4320 +514 8242 0.6680 +514 8284 0.6660 +514 8653 0.4710 +514 9045 0.4710 +514 9167 0.4130 +514 9217 0.4680 +514 9296 0.7620 +514 9377 0.6200 +514 9550 0.6870 +514 9551 0.9990 +514 9553 0.5230 +514 9556 0.9960 +514 9946 0.4100 +514 10063 0.6000 +514 10110 0.4580 +514 10476 0.9990 +514 10632 0.9990 +514 10765 0.6660 +514 10975 0.9150 +514 23135 0.6900 +514 25873 0.6060 +514 26521 0.4810 +514 27068 0.7190 +514 27089 0.8630 +514 27109 0.6740 +514 29078 0.4690 +514 29104 0.5140 +514 29796 0.9250 +514 51012 0.6470 +514 51028 0.5230 +514 51079 0.7990 +514 51372 0.4050 +514 51382 0.6290 +514 51409 0.4420 +514 51606 0.5500 +514 54460 0.6580 +514 54514 0.4590 +514 54539 0.6650 +514 54543 0.5950 +514 54968 0.6670 +514 55028 0.9180 +514 55052 0.4050 +514 55143 0.9350 +514 55967 0.6330 +514 57017 0.4030 +514 64077 0.6690 +514 81027 0.7950 +514 84833 0.9980 +514 84886 0.4270 +514 90423 0.4950 +514 91647 0.6790 +514 91942 0.5920 +514 93974 0.9360 +514 125965 0.5050 +514 126328 0.5420 +514 129401 0.4320 +514 133396 0.4590 +514 170712 0.4540 +514 203068 0.7020 +514 220965 0.4180 +514 221264 0.8070 +514 245973 0.5550 +514 267020 0.9890 +514 374291 0.5270 +514 388753 0.4530 +514 440567 0.7720 +514 100526740 0.5400 +515 516 0.9990 +515 517 0.9960 +515 518 0.9990 +515 521 0.9990 +515 522 0.9990 +515 527 0.9100 +515 529 0.4080 +515 533 0.8890 +515 535 0.6600 +515 539 0.9990 +515 706 0.4410 +515 1327 0.9350 +515 1329 0.8720 +515 1337 0.7340 +515 1339 0.6670 +515 1340 0.6530 +515 1345 0.7400 +515 1347 0.6200 +515 1349 0.5830 +515 1350 0.8700 +515 1351 0.4060 +515 1429 0.4010 +515 1431 0.6430 +515 1537 0.9140 +515 1738 0.5590 +515 1743 0.6860 +515 2108 0.4170 +515 2271 0.5570 +515 2326 0.4500 +515 2327 0.4500 +515 2328 0.4500 +515 2329 0.4500 +515 2330 0.4500 +515 3030 0.4070 +515 3032 0.4260 +515 3329 0.4990 +515 3336 0.4210 +515 3396 0.5050 +515 3418 0.4010 +515 3419 0.7350 +515 3420 0.5670 +515 3421 0.4730 +515 3720 0.7260 +515 4191 0.6410 +515 4508 0.9990 +515 4509 0.9990 +515 4513 0.5070 +515 4694 0.5000 +515 4695 0.6750 +515 4696 0.5650 +515 4697 0.7670 +515 4698 0.8890 +515 4700 0.6560 +515 4701 0.5520 +515 4702 0.7710 +515 4704 0.8530 +515 4705 0.6970 +515 4706 0.8050 +515 4707 0.4470 +515 4708 0.4160 +515 4709 0.8120 +515 4710 0.6730 +515 4711 0.9540 +515 4712 0.9220 +515 4713 0.8080 +515 4714 0.7930 +515 4715 0.8150 +515 4716 0.7170 +515 4717 0.5260 +515 4718 0.7100 +515 4720 0.8500 +515 4722 0.8740 +515 4723 0.7310 +515 4724 0.8660 +515 4725 0.6420 +515 4726 0.5990 +515 4728 0.5770 +515 4729 0.9300 +515 4731 0.4700 +515 4967 0.6320 +515 5162 0.5730 +515 5250 0.8840 +515 5313 0.4090 +515 5464 0.7570 +515 5927 0.7260 +515 6187 0.4810 +515 6198 0.4810 +515 6199 0.4630 +515 6222 0.4300 +515 6389 0.7550 +515 6390 0.7070 +515 6391 0.7150 +515 6392 0.8320 +515 6446 0.4630 +515 6595 0.5230 +515 6597 0.4730 +515 7284 0.4090 +515 7381 0.9690 +515 7384 0.9030 +515 7385 0.9730 +515 7386 0.9690 +515 7388 0.8090 +515 7403 0.7920 +515 7404 0.7920 +515 7416 0.6310 +515 7417 0.5900 +515 7419 0.5980 +515 8242 0.7260 +515 8284 0.7260 +515 8402 0.4090 +515 8703 0.4420 +515 8802 0.6450 +515 8803 0.4570 +515 8992 0.5020 +515 9114 0.6260 +515 9377 0.9780 +515 9512 0.7900 +515 9551 0.9990 +515 9556 0.9970 +515 9582 0.6140 +515 9804 0.6180 +515 10063 0.4030 +515 10110 0.4630 +515 10159 0.5880 +515 10312 0.4880 +515 10476 0.9990 +515 10560 0.6010 +515 10632 0.9990 +515 10730 0.4130 +515 10765 0.7260 +515 10935 0.5070 +515 10939 0.4870 +515 10975 0.4510 +515 10989 0.4840 +515 23135 0.7990 +515 23203 0.6080 +515 23545 0.5640 +515 23678 0.5400 +515 23788 0.5320 +515 27068 0.7700 +515 27089 0.8190 +515 27109 0.9980 +515 27350 0.6120 +515 28976 0.6220 +515 29796 0.6390 +515 29904 0.4500 +515 29956 0.5740 +515 30968 0.4050 +515 50617 0.5890 +515 51071 0.4180 +515 51079 0.6590 +515 51142 0.5000 +515 51258 0.4360 +515 54205 0.4860 +515 54534 0.5090 +515 54539 0.5710 +515 55028 0.9040 +515 55143 0.9670 +515 55351 0.4630 +515 55967 0.9450 +515 56901 0.4160 +515 56993 0.4020 +515 57017 0.4120 +515 57379 0.6120 +515 60489 0.6170 +515 64077 0.8070 +515 64756 0.5390 +515 79135 0.4630 +515 79728 0.6330 +515 80020 0.4500 +515 83447 0.4480 +515 84701 0.8960 +515 84816 0.4100 +515 84833 0.9990 +515 84886 0.7430 +515 91647 0.5210 +515 93974 0.8750 +515 118813 0.4360 +515 125965 0.4580 +515 126328 0.5630 +515 137868 0.4220 +515 139322 0.4120 +515 140564 0.6120 +515 155066 0.6020 +515 164668 0.6120 +515 200315 0.6120 +515 200316 0.6150 +515 202374 0.4630 +515 253782 0.4880 +515 267020 0.9910 +515 282974 0.4630 +515 283459 0.5910 +515 374291 0.7670 +515 388753 0.4110 +515 391059 0.4630 +515 440400 0.5400 +515 440567 0.6390 +515 440574 0.5380 +515 100526740 0.5400 +516 517 0.9970 +516 518 0.9990 +516 521 0.9980 +516 522 0.9970 +516 523 0.9080 +516 525 0.8880 +516 526 0.9010 +516 527 0.6890 +516 528 0.6850 +516 529 0.9290 +516 533 0.6540 +516 534 0.5870 +516 535 0.8960 +516 537 0.6260 +516 539 0.9940 +516 617 0.6680 +516 972 0.5260 +516 1182 0.7310 +516 1201 0.6510 +516 1327 0.6830 +516 1329 0.8380 +516 1337 0.6730 +516 1339 0.6790 +516 1340 0.7200 +516 1345 0.7630 +516 1347 0.7910 +516 1349 0.6470 +516 1350 0.5990 +516 1351 0.6410 +516 1352 0.4850 +516 1431 0.6730 +516 1509 0.5060 +516 1537 0.9470 +516 1678 0.5570 +516 1938 0.4750 +516 2178 0.4450 +516 2323 0.4360 +516 2395 0.5320 +516 2475 0.4420 +516 2597 0.4720 +516 3251 0.4530 +516 3313 0.6010 +516 3329 0.5020 +516 3419 0.5550 +516 3420 0.5150 +516 3421 0.5980 +516 3720 0.6670 +516 3982 0.8900 +516 4137 0.6110 +516 4191 0.6980 +516 4508 0.9990 +516 4509 0.9930 +516 4512 0.5860 +516 4513 0.6420 +516 4514 0.5530 +516 4519 0.6030 +516 4535 0.5550 +516 4536 0.5220 +516 4537 0.4860 +516 4538 0.5400 +516 4539 0.4330 +516 4540 0.4900 +516 4694 0.5580 +516 4695 0.6200 +516 4696 0.6770 +516 4697 0.4830 +516 4698 0.5090 +516 4700 0.4860 +516 4701 0.5530 +516 4702 0.8170 +516 4704 0.6970 +516 4705 0.4370 +516 4706 0.8140 +516 4707 0.5700 +516 4708 0.4750 +516 4709 0.5730 +516 4710 0.5800 +516 4711 0.7720 +516 4712 0.6260 +516 4713 0.7030 +516 4714 0.9100 +516 4715 0.6910 +516 4716 0.5650 +516 4717 0.6440 +516 4718 0.6140 +516 4720 0.6630 +516 4722 0.8550 +516 4723 0.7240 +516 4724 0.4360 +516 4725 0.5040 +516 4726 0.6310 +516 4728 0.7560 +516 4729 0.6400 +516 4731 0.4680 +516 4736 0.4550 +516 4830 0.4050 +516 5009 0.4460 +516 5018 0.7090 +516 5245 0.4180 +516 5250 0.4380 +516 5432 0.5000 +516 5464 0.7860 +516 5469 0.5890 +516 5538 0.5730 +516 5693 0.4730 +516 5694 0.4810 +516 5927 0.6670 +516 6122 0.5380 +516 6123 0.5350 +516 6124 0.5020 +516 6125 0.6380 +516 6129 0.4070 +516 6132 0.5130 +516 6133 0.5950 +516 6135 0.6540 +516 6136 0.4020 +516 6139 0.4490 +516 6147 0.6120 +516 6175 0.4500 +516 6182 0.5960 +516 6183 0.5800 +516 6187 0.6110 +516 6188 0.7180 +516 6193 0.5110 +516 6203 0.5610 +516 6205 0.6260 +516 6208 0.5580 +516 6209 0.6560 +516 6210 0.4230 +516 6217 0.4930 +516 6222 0.7040 +516 6224 0.4710 +516 6228 0.5180 +516 6235 0.5350 +516 6389 0.5870 +516 6390 0.6120 +516 6391 0.4910 +516 6392 0.4660 +516 6901 0.5010 +516 7167 0.4040 +516 7284 0.7150 +516 7381 0.4960 +516 7384 0.6420 +516 7385 0.5460 +516 7386 0.9530 +516 7388 0.5200 +516 7403 0.7010 +516 7404 0.7010 +516 7416 0.6650 +516 8242 0.6670 +516 8284 0.6670 +516 8600 0.6740 +516 8604 0.5040 +516 8703 0.6270 +516 8802 0.4760 +516 8992 0.7660 +516 9114 0.9550 +516 9296 0.9310 +516 9343 0.4960 +516 9349 0.6870 +516 9377 0.8790 +516 9512 0.5930 +516 9533 0.4910 +516 9550 0.6170 +516 9551 0.9970 +516 9553 0.4090 +516 9556 0.9950 +516 9801 0.4150 +516 9804 0.5520 +516 9868 0.5280 +516 10063 0.6590 +516 10102 0.6050 +516 10159 0.8440 +516 10165 0.5210 +516 10245 0.6690 +516 10312 0.8450 +516 10440 0.6830 +516 10452 0.6910 +516 10469 0.6190 +516 10476 0.9990 +516 10531 0.4860 +516 10632 0.9910 +516 10765 0.6670 +516 10975 0.7940 +516 11118 0.4650 +516 11222 0.5500 +516 11224 0.6080 +516 11267 0.5320 +516 23135 0.7010 +516 23203 0.4960 +516 23204 0.4200 +516 23521 0.4410 +516 23545 0.8560 +516 23640 0.4840 +516 23645 0.4510 +516 26289 0.4310 +516 26517 0.6010 +516 26519 0.6900 +516 26520 0.5860 +516 26521 0.6690 +516 26985 0.4130 +516 27068 0.7860 +516 27089 0.8440 +516 27109 0.7760 +516 27235 0.4090 +516 28998 0.4820 +516 29090 0.5520 +516 29093 0.4790 +516 29104 0.4920 +516 29796 0.7940 +516 29927 0.5700 +516 29928 0.6410 +516 30818 0.4140 +516 50617 0.8590 +516 50808 0.4170 +516 51021 0.7520 +516 51025 0.5650 +516 51028 0.4100 +516 51069 0.4980 +516 51073 0.5230 +516 51079 0.7720 +516 51081 0.6460 +516 51121 0.4300 +516 51142 0.6050 +516 51154 0.4670 +516 51264 0.4460 +516 51287 0.5630 +516 51361 0.4180 +516 51382 0.8810 +516 51606 0.7920 +516 51727 0.4310 +516 54205 0.6050 +516 54539 0.4900 +516 54543 0.4830 +516 54927 0.6880 +516 54948 0.5830 +516 54998 0.5940 +516 55028 0.7210 +516 55052 0.4740 +516 55143 0.8230 +516 55173 0.4730 +516 55176 0.5630 +516 55272 0.5070 +516 55293 0.4020 +516 55316 0.5770 +516 55967 0.5970 +516 56942 0.6010 +516 56993 0.5540 +516 57707 0.4320 +516 63875 0.4720 +516 63931 0.5660 +516 64077 0.7200 +516 64374 0.4960 +516 64960 0.4530 +516 64963 0.5940 +516 64969 0.6050 +516 64979 0.5860 +516 64983 0.4200 +516 65003 0.5090 +516 65008 0.4490 +516 65260 0.4670 +516 65264 0.5850 +516 79145 0.5420 +516 79590 0.5170 +516 79631 0.4960 +516 80055 0.4540 +516 80273 0.6490 +516 80347 0.4700 +516 81341 0.4910 +516 84197 0.4780 +516 84269 0.5550 +516 84331 0.4050 +516 84557 0.5140 +516 84701 0.4840 +516 84833 0.9870 +516 85476 0.4950 +516 90231 0.4510 +516 90423 0.8970 +516 90639 0.5460 +516 91300 0.4510 +516 92399 0.4490 +516 92609 0.6300 +516 93974 0.8100 +516 122481 0.4390 +516 125965 0.5160 +516 126328 0.7700 +516 126402 0.4800 +516 127124 0.6620 +516 131118 0.5430 +516 134266 0.5990 +516 140691 0.6690 +516 140801 0.4720 +516 150274 0.4190 +516 155066 0.8040 +516 158067 0.4160 +516 163882 0.8690 +516 170712 0.4450 +516 197257 0.4240 +516 203547 0.4930 +516 219927 0.5650 +516 221264 0.4300 +516 245972 0.9320 +516 245973 0.6920 +516 267020 0.9520 +516 283459 0.4520 +516 285521 0.5730 +516 285855 0.4150 +516 374291 0.8020 +516 388753 0.6740 +516 400916 0.6320 +516 401505 0.5250 +516 440400 0.8360 +516 440563 0.4120 +516 641776 0.4110 +516 643909 0.4110 +516 649330 0.4120 +516 728524 0.4110 +516 100188893 0.4630 +516 100272147 0.5210 +516 100287932 0.6870 +516 100526740 0.5400 +516 100526842 0.4400 +516 100996746 0.4110 +516 102157402 0.5560 +516 105180390 0.4110 +516 105180391 0.4110 +517 518 0.9980 +517 521 0.9910 +517 522 0.9940 +517 523 0.8900 +517 525 0.8880 +517 526 0.9000 +517 527 0.6840 +517 528 0.6920 +517 529 0.9170 +517 533 0.6560 +517 534 0.6010 +517 535 0.8900 +517 537 0.6450 +517 539 0.9900 +517 972 0.5360 +517 1182 0.7710 +517 1183 0.4200 +517 1327 0.5740 +517 1329 0.6960 +517 1337 0.7090 +517 1339 0.6150 +517 1340 0.5720 +517 1345 0.5510 +517 1347 0.6460 +517 1349 0.4570 +517 1350 0.6060 +517 1351 0.5110 +517 1353 0.4270 +517 1509 0.5440 +517 1537 0.7050 +517 1937 0.4230 +517 1938 0.5160 +517 2178 0.4390 +517 2323 0.4380 +517 2597 0.4270 +517 3150 0.4040 +517 3251 0.4150 +517 3720 0.6670 +517 3982 0.8900 +517 4137 0.6010 +517 4191 0.4710 +517 4508 0.9980 +517 4509 0.9750 +517 4512 0.5390 +517 4513 0.6470 +517 4514 0.5620 +517 4519 0.5760 +517 4535 0.5440 +517 4536 0.4460 +517 4537 0.4610 +517 4538 0.5210 +517 4540 0.4600 +517 4695 0.4510 +517 4696 0.4890 +517 4697 0.4730 +517 4698 0.4590 +517 4701 0.4620 +517 4702 0.5170 +517 4704 0.4260 +517 4705 0.4610 +517 4706 0.5380 +517 4707 0.4090 +517 4709 0.4910 +517 4710 0.5080 +517 4711 0.7180 +517 4712 0.5160 +517 4713 0.5460 +517 4714 0.6460 +517 4715 0.5840 +517 4716 0.6160 +517 4717 0.4940 +517 4718 0.4510 +517 4720 0.6270 +517 4722 0.6790 +517 4723 0.4890 +517 4724 0.5160 +517 4725 0.4760 +517 4726 0.4630 +517 4728 0.6560 +517 4729 0.6310 +517 4736 0.5730 +517 5018 0.7080 +517 5204 0.4430 +517 5250 0.4500 +517 5432 0.4790 +517 5464 0.8020 +517 5469 0.5880 +517 5538 0.5720 +517 5927 0.6670 +517 6122 0.5970 +517 6123 0.5350 +517 6124 0.5440 +517 6125 0.6460 +517 6129 0.4220 +517 6132 0.6700 +517 6133 0.6080 +517 6135 0.6840 +517 6136 0.5360 +517 6139 0.4930 +517 6141 0.5370 +517 6147 0.6410 +517 6152 0.4100 +517 6154 0.4300 +517 6155 0.5820 +517 6157 0.4200 +517 6165 0.4320 +517 6175 0.6070 +517 6182 0.4870 +517 6183 0.5390 +517 6187 0.6640 +517 6188 0.7720 +517 6193 0.5970 +517 6203 0.6530 +517 6205 0.6520 +517 6207 0.4100 +517 6208 0.6510 +517 6209 0.7280 +517 6210 0.4860 +517 6217 0.5370 +517 6222 0.7400 +517 6224 0.5220 +517 6228 0.5350 +517 6231 0.4410 +517 6235 0.5980 +517 6389 0.5030 +517 6390 0.5460 +517 6391 0.4520 +517 7284 0.7010 +517 7381 0.5110 +517 7384 0.5700 +517 7385 0.4390 +517 7386 0.9490 +517 7388 0.4350 +517 7403 0.7010 +517 7404 0.7010 +517 8242 0.6750 +517 8284 0.6760 +517 8802 0.4090 +517 8992 0.7760 +517 9114 0.9560 +517 9296 0.9260 +517 9343 0.4840 +517 9349 0.6980 +517 9377 0.7910 +517 9533 0.4790 +517 9550 0.6100 +517 9551 0.9880 +517 9556 0.9280 +517 10102 0.5700 +517 10159 0.8460 +517 10312 0.8580 +517 10476 0.9970 +517 10632 0.9790 +517 10765 0.6670 +517 10975 0.5410 +517 11222 0.5570 +517 11224 0.5920 +517 23135 0.7010 +517 23204 0.4160 +517 23521 0.5180 +517 23545 0.8530 +517 23640 0.4720 +517 23645 0.4590 +517 25873 0.4320 +517 26289 0.4310 +517 27068 0.7670 +517 27089 0.7020 +517 27109 0.7040 +517 27335 0.4070 +517 28998 0.4760 +517 29093 0.4500 +517 29104 0.4880 +517 29796 0.4780 +517 29927 0.5630 +517 50617 0.8510 +517 50808 0.4520 +517 51021 0.6920 +517 51028 0.4100 +517 51069 0.4870 +517 51073 0.4810 +517 51079 0.5190 +517 51081 0.5430 +517 51121 0.4070 +517 51382 0.8690 +517 51606 0.7950 +517 51727 0.4310 +517 54205 0.5050 +517 54539 0.4360 +517 54948 0.5710 +517 55028 0.7200 +517 55052 0.4170 +517 55143 0.8210 +517 55173 0.4620 +517 55176 0.5630 +517 55272 0.4950 +517 55293 0.4020 +517 55316 0.5180 +517 55967 0.4600 +517 56952 0.4130 +517 57707 0.4320 +517 63931 0.5640 +517 64077 0.7170 +517 64374 0.4710 +517 64963 0.5580 +517 64969 0.6000 +517 64979 0.5440 +517 64983 0.4080 +517 65003 0.4170 +517 65008 0.4360 +517 65982 0.4060 +517 79002 0.4190 +517 79590 0.4940 +517 79631 0.5080 +517 81341 0.4910 +517 84701 0.4330 +517 84833 0.9810 +517 85476 0.5050 +517 90423 0.9010 +517 91300 0.4510 +517 92399 0.4370 +517 93974 0.7060 +517 122481 0.4160 +517 125965 0.5870 +517 126328 0.5760 +517 126402 0.4800 +517 127124 0.6140 +517 140801 0.4910 +517 155066 0.8240 +517 158067 0.4160 +517 163882 0.8690 +517 203547 0.4930 +517 219927 0.5110 +517 221264 0.4300 +517 245972 0.9300 +517 245973 0.7120 +517 267020 0.9000 +517 283212 0.4490 +517 283459 0.4480 +517 285521 0.5740 +517 285855 0.4090 +517 374291 0.6230 +517 440400 0.8410 +517 641776 0.4110 +517 643909 0.4110 +517 728524 0.4110 +517 100526740 0.5400 +517 100526842 0.4400 +517 100996746 0.4110 +517 102157402 0.5480 +517 105180390 0.4110 +517 105180391 0.4110 +518 521 0.9920 +518 522 0.9970 +518 523 0.9080 +518 525 0.8880 +518 526 0.9050 +518 527 0.6780 +518 528 0.6990 +518 529 0.9130 +518 533 0.6570 +518 534 0.6220 +518 535 0.8960 +518 537 0.6270 +518 539 0.9920 +518 833 0.4460 +518 972 0.5260 +518 1182 0.7660 +518 1183 0.4200 +518 1327 0.5840 +518 1329 0.7020 +518 1337 0.6990 +518 1339 0.6130 +518 1340 0.7760 +518 1345 0.5770 +518 1347 0.8670 +518 1349 0.6100 +518 1350 0.5980 +518 1351 0.4020 +518 1352 0.4230 +518 1353 0.4380 +518 1431 0.5030 +518 1509 0.5370 +518 1537 0.8410 +518 1803 0.5580 +518 1938 0.4830 +518 2178 0.4400 +518 2182 0.4160 +518 2222 0.4060 +518 2271 0.4250 +518 2323 0.4360 +518 2597 0.4330 +518 2879 0.4160 +518 3251 0.4220 +518 3309 0.5230 +518 3658 0.5740 +518 3720 0.6670 +518 3982 0.8900 +518 4137 0.5980 +518 4191 0.6340 +518 4495 0.4160 +518 4508 0.9980 +518 4509 0.9750 +518 4512 0.5390 +518 4513 0.6160 +518 4514 0.5340 +518 4519 0.5890 +518 4535 0.5550 +518 4536 0.4620 +518 4537 0.4830 +518 4538 0.5130 +518 4540 0.4750 +518 4694 0.5700 +518 4695 0.4770 +518 4697 0.4980 +518 4698 0.5470 +518 4700 0.5540 +518 4701 0.4450 +518 4702 0.6210 +518 4704 0.6290 +518 4705 0.4560 +518 4706 0.7520 +518 4707 0.4720 +518 4708 0.4480 +518 4709 0.6260 +518 4710 0.6290 +518 4711 0.8040 +518 4712 0.6010 +518 4713 0.6360 +518 4714 0.7510 +518 4715 0.8050 +518 4716 0.5360 +518 4717 0.6320 +518 4718 0.6220 +518 4720 0.6690 +518 4722 0.7470 +518 4723 0.5270 +518 4724 0.6210 +518 4725 0.5300 +518 4726 0.6190 +518 4728 0.6580 +518 4729 0.8290 +518 4736 0.4730 +518 5018 0.6890 +518 5037 0.4030 +518 5250 0.7430 +518 5432 0.4810 +518 5464 0.8090 +518 5469 0.5880 +518 5538 0.5580 +518 5927 0.6670 +518 6122 0.5690 +518 6123 0.5350 +518 6124 0.4870 +518 6125 0.6400 +518 6129 0.4270 +518 6132 0.7860 +518 6133 0.6040 +518 6135 0.6770 +518 6136 0.4060 +518 6139 0.4530 +518 6147 0.6370 +518 6154 0.4220 +518 6165 0.4380 +518 6175 0.4660 +518 6182 0.5580 +518 6183 0.5340 +518 6187 0.6030 +518 6188 0.7200 +518 6193 0.4980 +518 6203 0.4990 +518 6205 0.6360 +518 6208 0.5810 +518 6209 0.6270 +518 6210 0.4240 +518 6217 0.5030 +518 6222 0.7100 +518 6224 0.4890 +518 6228 0.5240 +518 6235 0.5290 +518 6389 0.5550 +518 6390 0.5650 +518 6391 0.5590 +518 6392 0.4570 +518 7284 0.6970 +518 7381 0.5840 +518 7384 0.6140 +518 7385 0.5900 +518 7386 0.9720 +518 7388 0.6150 +518 7403 0.7010 +518 7404 0.7010 +518 7417 0.4530 +518 7419 0.4970 +518 7920 0.6900 +518 8031 0.4040 +518 8242 0.6670 +518 8284 0.6670 +518 8802 0.6510 +518 8992 0.7840 +518 9114 0.9550 +518 9167 0.4160 +518 9296 0.9210 +518 9343 0.4820 +518 9349 0.6920 +518 9377 0.9390 +518 9533 0.4790 +518 9550 0.6270 +518 9551 0.9930 +518 9556 0.9460 +518 9694 0.6290 +518 9801 0.4220 +518 10102 0.5700 +518 10159 0.8530 +518 10162 0.4200 +518 10312 0.8490 +518 10476 0.9980 +518 10575 0.4230 +518 10632 0.9900 +518 10765 0.6670 +518 10975 0.6310 +518 11222 0.6050 +518 11224 0.5710 +518 23135 0.7010 +518 23204 0.4230 +518 23521 0.4470 +518 23545 0.8650 +518 23640 0.4730 +518 23645 0.4510 +518 26289 0.4310 +518 27068 0.7780 +518 27089 0.8170 +518 27109 0.8180 +518 28998 0.4930 +518 29093 0.4580 +518 29104 0.4900 +518 29796 0.6680 +518 29927 0.5630 +518 50617 0.8600 +518 50808 0.4600 +518 51021 0.7300 +518 51028 0.4100 +518 51069 0.4970 +518 51073 0.5100 +518 51079 0.4790 +518 51081 0.5410 +518 51121 0.4230 +518 51138 0.4460 +518 51382 0.8950 +518 51606 0.8160 +518 51727 0.4310 +518 54205 0.6120 +518 54539 0.4770 +518 54948 0.5890 +518 55028 0.7200 +518 55143 0.8230 +518 55173 0.5240 +518 55176 0.5630 +518 55272 0.4960 +518 55293 0.4060 +518 55316 0.5160 +518 55847 0.5680 +518 55967 0.7510 +518 56952 0.4060 +518 57707 0.4320 +518 63875 0.4100 +518 63931 0.5990 +518 64077 0.7750 +518 64374 0.4710 +518 64963 0.5350 +518 64969 0.5990 +518 64979 0.6020 +518 64983 0.4200 +518 65003 0.4190 +518 65008 0.4490 +518 79590 0.4730 +518 79631 0.4990 +518 80221 0.7140 +518 80347 0.4020 +518 80856 0.5310 +518 81341 0.4910 +518 84701 0.4330 +518 84833 0.9600 +518 85476 0.4950 +518 90423 0.8980 +518 91300 0.4510 +518 92399 0.4380 +518 93974 0.7670 +518 122481 0.4160 +518 125965 0.6800 +518 126328 0.5410 +518 126402 0.4800 +518 127124 0.6030 +518 140801 0.4700 +518 155066 0.8010 +518 158067 0.4160 +518 163882 0.8690 +518 203547 0.4930 +518 219927 0.4970 +518 221264 0.4300 +518 245972 0.9290 +518 245973 0.7120 +518 267020 0.9520 +518 283459 0.4450 +518 285521 0.6390 +518 285855 0.4050 +518 374291 0.5720 +518 388753 0.4300 +518 440400 0.8330 +518 440563 0.4190 +518 641776 0.4110 +518 643909 0.4110 +518 649330 0.4190 +518 728524 0.4110 +518 100526740 0.5400 +518 100526842 0.4400 +518 100996746 0.4110 +518 102157402 0.5560 +518 105180390 0.4110 +518 105180391 0.4110 +521 522 0.9990 +521 527 0.8230 +521 533 0.8340 +521 539 0.9990 +521 1327 0.8570 +521 1329 0.9160 +521 1337 0.7780 +521 1339 0.6820 +521 1340 0.7590 +521 1345 0.9590 +521 1347 0.8760 +521 1349 0.6800 +521 1350 0.9680 +521 1351 0.6730 +521 1537 0.5290 +521 2197 0.7170 +521 3351 0.4320 +521 3720 0.6340 +521 3736 0.4040 +521 4508 0.9990 +521 4509 0.9990 +521 4637 0.4520 +521 4694 0.9220 +521 4695 0.7500 +521 4696 0.8010 +521 4697 0.7210 +521 4698 0.9440 +521 4700 0.9460 +521 4701 0.7580 +521 4702 0.7590 +521 4704 0.5530 +521 4705 0.4490 +521 4706 0.6300 +521 4707 0.5830 +521 4708 0.5080 +521 4709 0.9080 +521 4710 0.9360 +521 4711 0.9560 +521 4712 0.7980 +521 4713 0.9480 +521 4714 0.7140 +521 4715 0.9630 +521 4716 0.8230 +521 4717 0.7380 +521 4718 0.7990 +521 4720 0.5210 +521 4722 0.8400 +521 4723 0.6910 +521 4724 0.7230 +521 4725 0.9680 +521 4726 0.9280 +521 4728 0.9150 +521 4729 0.7180 +521 4731 0.5900 +521 5250 0.4360 +521 5464 0.6850 +521 5927 0.6470 +521 6147 0.5630 +521 6152 0.4590 +521 6164 0.4080 +521 6166 0.4240 +521 6169 0.5660 +521 6176 0.4300 +521 6181 0.4070 +521 6202 0.4110 +521 6205 0.4130 +521 6207 0.4330 +521 6208 0.5580 +521 6217 0.5370 +521 6222 0.4820 +521 6227 0.6130 +521 6228 0.4270 +521 6229 0.4260 +521 6234 0.6130 +521 6235 0.5190 +521 6389 0.4960 +521 6390 0.6970 +521 6391 0.5850 +521 6392 0.7570 +521 6633 0.5150 +521 7381 0.8420 +521 7384 0.6550 +521 7385 0.4870 +521 7386 0.6100 +521 7388 0.8710 +521 7403 0.6340 +521 7404 0.6340 +521 8242 0.6350 +521 8284 0.6350 +521 8802 0.4290 +521 8803 0.4080 +521 8992 0.4880 +521 9114 0.4350 +521 9296 0.6300 +521 9377 0.9350 +521 9551 0.9990 +521 9556 0.9970 +521 9582 0.4300 +521 9928 0.5290 +521 10063 0.6100 +521 10159 0.5790 +521 10312 0.4070 +521 10476 0.9990 +521 10632 0.9990 +521 10765 0.6340 +521 10975 0.9330 +521 11079 0.5650 +521 11224 0.4990 +521 23135 0.6490 +521 23545 0.4630 +521 25873 0.4200 +521 26521 0.4690 +521 27068 0.7170 +521 27089 0.9790 +521 27109 0.7860 +521 27350 0.4270 +521 29796 0.9290 +521 29990 0.4700 +521 51079 0.9590 +521 51121 0.4270 +521 51142 0.4120 +521 51258 0.4220 +521 51300 0.6640 +521 51372 0.5730 +521 51529 0.4570 +521 54205 0.5040 +521 54460 0.7070 +521 54539 0.8980 +521 54543 0.7060 +521 54927 0.4560 +521 55028 0.9490 +521 55143 0.9140 +521 55967 0.8040 +521 57379 0.4270 +521 60489 0.4370 +521 63931 0.4780 +521 64077 0.7170 +521 79002 0.4920 +521 79135 0.4050 +521 79728 0.4690 +521 81892 0.5820 +521 84303 0.4560 +521 84337 0.4070 +521 84701 0.7550 +521 84833 0.9990 +521 84886 0.6640 +521 84939 0.4060 +521 91647 0.4620 +521 91942 0.4060 +521 93974 0.8380 +521 115939 0.4120 +521 125965 0.5440 +521 125988 0.5020 +521 126328 0.6090 +521 139221 0.4060 +521 139322 0.6260 +521 140564 0.4270 +521 140823 0.4270 +521 164668 0.4270 +521 200315 0.4270 +521 200316 0.4320 +521 267020 0.9860 +521 283459 0.5560 +521 374291 0.6960 +521 388753 0.5500 +521 440563 0.4180 +521 440567 0.7240 +521 440574 0.4960 +521 497661 0.4850 +521 728317 0.4060 +521 100526740 0.5400 +521 100532726 0.5940 +522 527 0.8690 +522 533 0.8020 +522 539 0.9990 +522 1327 0.7800 +522 1329 0.8340 +522 1337 0.6810 +522 1339 0.5980 +522 1340 0.8550 +522 1345 0.9080 +522 1347 0.9060 +522 1349 0.6960 +522 1350 0.9750 +522 1351 0.5350 +522 1537 0.4870 +522 1622 0.5300 +522 1654 0.5750 +522 1854 0.4420 +522 2100 0.8030 +522 2108 0.4060 +522 2153 0.5060 +522 2551 0.5150 +522 3094 0.4870 +522 3336 0.6330 +522 3720 0.5550 +522 4191 0.4330 +522 4508 0.9970 +522 4509 0.9860 +522 4694 0.8960 +522 4695 0.6880 +522 4696 0.5730 +522 4697 0.9630 +522 4698 0.9810 +522 4700 0.9660 +522 4701 0.9130 +522 4702 0.6930 +522 4704 0.6020 +522 4705 0.5320 +522 4706 0.7990 +522 4707 0.6830 +522 4708 0.6640 +522 4709 0.9450 +522 4710 0.8900 +522 4711 0.9090 +522 4712 0.9840 +522 4713 0.8030 +522 4714 0.8390 +522 4715 0.9170 +522 4716 0.7920 +522 4717 0.5820 +522 4718 0.8080 +522 4720 0.5980 +522 4722 0.9040 +522 4723 0.5650 +522 4724 0.8420 +522 4725 0.8370 +522 4726 0.7190 +522 4728 0.4650 +522 4729 0.9030 +522 4731 0.6030 +522 4738 0.4830 +522 5201 0.5330 +522 5202 0.4490 +522 5250 0.4330 +522 5434 0.4170 +522 5464 0.7590 +522 5822 0.4160 +522 5927 0.5550 +522 6139 0.4180 +522 6144 0.4250 +522 6152 0.4170 +522 6155 0.4730 +522 6182 0.4550 +522 6227 0.4310 +522 6389 0.5220 +522 6390 0.6930 +522 6391 0.5890 +522 6392 0.5150 +522 6595 0.4030 +522 6727 0.4780 +522 6742 0.5820 +522 7295 0.5710 +522 7381 0.9250 +522 7384 0.6280 +522 7385 0.8490 +522 7386 0.8430 +522 7388 0.8570 +522 7403 0.5570 +522 7404 0.5570 +522 7416 0.5440 +522 7531 0.4270 +522 7917 0.5420 +522 8242 0.5550 +522 8284 0.5570 +522 8602 0.4080 +522 8992 0.4390 +522 9114 0.4100 +522 9167 0.4170 +522 9354 0.4810 +522 9377 0.9460 +522 9550 0.5220 +522 9551 0.9990 +522 9553 0.5070 +522 9556 0.9910 +522 10063 0.5120 +522 10159 0.4250 +522 10277 0.4460 +522 10476 0.9990 +522 10528 0.4250 +522 10607 0.4170 +522 10632 0.9990 +522 10765 0.5550 +522 10813 0.4060 +522 10935 0.5460 +522 10975 0.9260 +522 11315 0.7360 +522 23135 0.5690 +522 25828 0.4700 +522 26521 0.4990 +522 26589 0.4450 +522 27068 0.8130 +522 27089 0.9040 +522 27109 0.7860 +522 28998 0.4190 +522 29796 0.8620 +522 51023 0.4220 +522 51071 0.5120 +522 51079 0.9210 +522 51142 0.6990 +522 51258 0.4510 +522 51263 0.4630 +522 51318 0.4480 +522 51372 0.4330 +522 51523 0.6900 +522 51602 0.4220 +522 51650 0.5410 +522 51661 0.4700 +522 54148 0.7690 +522 54205 0.4720 +522 54539 0.6000 +522 54859 0.5100 +522 55028 0.9550 +522 55143 0.8840 +522 55967 0.9820 +522 56901 0.8280 +522 56914 0.5060 +522 57017 0.4580 +522 57050 0.4270 +522 64077 0.7190 +522 64981 0.4110 +522 79002 0.4200 +522 79135 0.4230 +522 81539 0.4710 +522 81892 0.5510 +522 84274 0.4220 +522 84701 0.6810 +522 84833 0.9960 +522 84886 0.4390 +522 93974 0.8620 +522 116541 0.4580 +522 125965 0.6550 +522 126328 0.5880 +522 131076 0.6640 +522 131118 0.4200 +522 267020 0.9840 +522 283459 0.4200 +522 374291 0.4970 +522 388753 0.5690 +522 400916 0.4170 +522 440567 0.6880 +522 440574 0.5250 +522 100526740 0.5400 +522 100532726 0.6650 +523 525 0.9990 +523 526 0.9990 +523 527 0.9990 +523 528 0.9990 +523 529 0.9990 +523 533 0.9990 +523 534 0.9970 +523 535 0.9990 +523 537 0.9960 +523 539 0.8280 +523 821 0.4240 +523 949 0.4190 +523 1434 0.4600 +523 1509 0.4570 +523 1657 0.5160 +523 1759 0.4660 +523 1819 0.4230 +523 1915 0.5060 +523 1917 0.4750 +523 1938 0.5550 +523 1956 0.6910 +523 2023 0.4190 +523 2040 0.4380 +523 2108 0.5410 +523 2475 0.7720 +523 2592 0.5680 +523 2597 0.4480 +523 2781 0.4390 +523 3417 0.6200 +523 3418 0.5900 +523 3630 0.5400 +523 3643 0.4990 +523 3916 0.5020 +523 3920 0.5860 +523 4508 0.8220 +523 4704 0.4340 +523 4722 0.4310 +523 4728 0.6980 +523 4905 0.5560 +523 5162 0.6090 +523 5165 0.4410 +523 5464 0.8140 +523 5832 0.4610 +523 5861 0.4160 +523 6130 0.6580 +523 6187 0.4220 +523 6189 0.4710 +523 6224 0.4240 +523 6396 0.5390 +523 6609 0.5370 +523 7001 0.4120 +523 7018 0.5180 +523 7037 0.6300 +523 7403 0.4060 +523 7404 0.4050 +523 7415 0.4410 +523 7447 0.4400 +523 7466 0.4070 +523 7879 0.7070 +523 8050 0.4840 +523 8209 0.4020 +523 8566 0.5250 +523 8649 0.7060 +523 8992 0.9970 +523 9114 0.9990 +523 9296 0.9990 +523 9343 0.4490 +523 9475 0.4040 +523 9519 0.6980 +523 9550 0.9990 +523 9588 0.4120 +523 9681 0.5010 +523 10097 0.4050 +523 10159 0.9970 +523 10312 0.9840 +523 10325 0.6120 +523 10542 0.6550 +523 10641 0.5160 +523 10670 0.6180 +523 11133 0.4990 +523 23135 0.4130 +523 23312 0.4260 +523 23334 0.4990 +523 23335 0.4350 +523 23545 0.9860 +523 27068 0.7550 +523 27072 0.5020 +523 27244 0.5000 +523 28956 0.7280 +523 50617 0.9990 +523 51122 0.4110 +523 51382 0.9990 +523 51606 0.9990 +523 54453 0.4570 +523 54468 0.5320 +523 54664 0.4660 +523 55004 0.8490 +523 55143 0.4520 +523 55737 0.6110 +523 55846 0.4990 +523 57521 0.5660 +523 57600 0.4050 +523 57707 0.9300 +523 58528 0.5780 +523 64077 0.6930 +523 64121 0.6930 +523 64223 0.5630 +523 64969 0.4690 +523 79631 0.4460 +523 79726 0.5490 +523 79877 0.5640 +523 80142 0.4170 +523 80347 0.5710 +523 81609 0.4950 +523 81929 0.5040 +523 83667 0.5090 +523 84219 0.4990 +523 84317 0.9470 +523 84656 0.4170 +523 85476 0.4760 +523 90423 0.9940 +523 96459 0.4450 +523 127124 0.9320 +523 140711 0.6600 +523 144577 0.4990 +523 147007 0.9520 +523 151188 0.4240 +523 153129 0.5730 +523 154743 0.4390 +523 155066 0.9730 +523 163882 0.9750 +523 197131 0.4170 +523 201163 0.4640 +523 221264 0.4450 +523 245972 0.9980 +523 245973 0.9960 +523 261726 0.4980 +523 347862 0.4870 +523 389541 0.6540 +523 440400 0.9970 +525 526 0.9890 +525 527 0.9980 +525 528 0.9980 +525 529 0.9990 +525 533 0.9950 +525 534 0.9970 +525 535 0.9990 +525 537 0.9470 +525 539 0.8260 +525 759 0.6420 +525 760 0.8410 +525 1184 0.4030 +525 1186 0.4530 +525 1188 0.4460 +525 1657 0.9070 +525 1738 0.5310 +525 1938 0.4210 +525 1956 0.6700 +525 2023 0.4580 +525 2026 0.4830 +525 2027 0.4470 +525 2299 0.7130 +525 2475 0.5240 +525 2821 0.5340 +525 2923 0.4470 +525 3155 0.8390 +525 3630 0.5260 +525 3643 0.5090 +525 3758 0.4210 +525 3982 0.9750 +525 4482 0.5460 +525 5034 0.4470 +525 5172 0.6500 +525 5464 0.7560 +525 6396 0.5390 +525 6521 0.8400 +525 6557 0.4390 +525 6559 0.4470 +525 6569 0.4320 +525 6950 0.6810 +525 7018 0.5230 +525 7037 0.5750 +525 7809 0.5560 +525 8195 0.4740 +525 8649 0.7120 +525 8671 0.4560 +525 8802 0.4300 +525 8992 0.9510 +525 9114 0.9990 +525 9296 0.9990 +525 9343 0.4210 +525 9368 0.5770 +525 9550 0.9980 +525 9601 0.4470 +525 9681 0.5350 +525 9728 0.4170 +525 9842 0.4220 +525 10159 0.9400 +525 10312 0.9980 +525 10325 0.6650 +525 10542 0.6540 +525 10576 0.4090 +525 10641 0.5270 +525 10670 0.6570 +525 10686 0.4280 +525 11133 0.4990 +525 11316 0.6080 +525 23312 0.6110 +525 23334 0.4990 +525 23335 0.7360 +525 23545 0.9910 +525 23677 0.4160 +525 25806 0.4780 +525 27068 0.7410 +525 27244 0.4990 +525 28956 0.6950 +525 50617 0.9990 +525 51061 0.4170 +525 51382 0.9990 +525 51606 0.9970 +525 54468 0.5280 +525 54511 0.8190 +525 55004 0.7770 +525 55074 0.5350 +525 55143 0.4310 +525 55644 0.4160 +525 55846 0.5080 +525 57465 0.5480 +525 57508 0.4660 +525 57521 0.5220 +525 57600 0.4110 +525 57707 0.5790 +525 58528 0.5620 +525 64077 0.6940 +525 64121 0.6070 +525 64223 0.5580 +525 64714 0.4470 +525 64924 0.5340 +525 79048 0.4170 +525 79631 0.4210 +525 79641 0.4380 +525 79726 0.5930 +525 79738 0.4980 +525 79877 0.5620 +525 80347 0.5610 +525 81929 0.5560 +525 83667 0.5050 +525 83697 0.4410 +525 84219 0.4990 +525 84317 0.9220 +525 85476 0.4210 +525 90423 0.9990 +525 96459 0.4230 +525 127124 0.9530 +525 135112 0.7830 +525 144577 0.4990 +525 147007 0.9400 +525 153129 0.5080 +525 155066 0.9550 +525 163882 0.9750 +525 201163 0.5150 +525 221264 0.8090 +525 245972 0.9990 +525 245973 0.9970 +525 256764 0.5170 +525 387712 0.4470 +525 389541 0.6520 +525 440400 0.9550 +526 527 0.9990 +526 528 0.9990 +526 529 0.9990 +526 533 0.9990 +526 534 0.9930 +526 535 0.9980 +526 537 0.9950 +526 539 0.8560 +526 1537 0.4040 +526 1657 0.8770 +526 1738 0.5830 +526 1938 0.5160 +526 1956 0.6810 +526 2023 0.5660 +526 2026 0.5170 +526 2027 0.4700 +526 2335 0.4230 +526 2475 0.5690 +526 2821 0.5540 +526 2923 0.4990 +526 3155 0.8450 +526 3157 0.4700 +526 3309 0.6500 +526 3326 0.4360 +526 3630 0.5430 +526 3643 0.5090 +526 3916 0.4490 +526 3920 0.5330 +526 3982 0.9750 +526 4482 0.5360 +526 4508 0.7950 +526 5034 0.5020 +526 5431 0.4040 +526 5464 0.7610 +526 5864 0.4660 +526 6389 0.4150 +526 6390 0.4570 +526 6396 0.5570 +526 6570 0.4580 +526 6812 0.4910 +526 6950 0.6640 +526 7018 0.5350 +526 7037 0.5370 +526 7280 0.4510 +526 7384 0.5090 +526 7846 0.5260 +526 7879 0.5380 +526 8195 0.4790 +526 8578 0.4140 +526 8607 0.4220 +526 8649 0.7570 +526 8675 0.5260 +526 8802 0.4390 +526 8992 0.9930 +526 9114 0.9990 +526 9296 0.9990 +526 9343 0.4330 +526 9550 0.9990 +526 9601 0.4630 +526 9681 0.5240 +526 9728 0.4220 +526 10159 0.9960 +526 10312 0.9880 +526 10325 0.6940 +526 10376 0.4290 +526 10383 0.5180 +526 10542 0.6820 +526 10641 0.5270 +526 10670 0.7340 +526 11133 0.4990 +526 11316 0.6300 +526 23312 0.8340 +526 23334 0.4990 +526 23335 0.7570 +526 23545 0.9940 +526 27068 0.7610 +526 27244 0.5730 +526 28956 0.8860 +526 50617 0.9990 +526 51061 0.4170 +526 51382 0.9990 +526 51606 0.9990 +526 54468 0.5360 +526 54511 0.8220 +526 55004 0.9980 +526 55143 0.4330 +526 55324 0.4440 +526 55631 0.4190 +526 55846 0.5070 +526 57465 0.5770 +526 57508 0.4670 +526 57521 0.5760 +526 57600 0.4080 +526 57707 0.9140 +526 58528 0.6090 +526 64077 0.6680 +526 64121 0.7750 +526 64223 0.5730 +526 64714 0.4470 +526 79048 0.4220 +526 79631 0.4310 +526 79641 0.7220 +526 79726 0.5740 +526 79738 0.4940 +526 79877 0.5650 +526 80347 0.5730 +526 81929 0.5460 +526 83667 0.5120 +526 84219 0.4990 +526 84317 0.9090 +526 84790 0.6370 +526 85476 0.4250 +526 90423 0.9980 +526 96459 0.4300 +526 127124 0.9340 +526 135112 0.6550 +526 140711 0.6840 +526 144577 0.4990 +526 147007 0.9360 +526 153129 0.8330 +526 154743 0.4030 +526 155066 0.9510 +526 163882 0.9750 +526 201163 0.5210 +526 221264 0.8090 +526 245972 0.9990 +526 245973 0.9960 +526 387712 0.4470 +526 389541 0.7000 +526 440400 0.9910 +526 652968 0.4320 +527 528 0.9990 +527 529 0.9990 +527 533 0.9990 +527 534 0.9900 +527 535 0.9990 +527 537 0.9990 +527 539 0.9710 +527 968 0.4750 +527 972 0.5500 +527 1173 0.7800 +527 1175 0.4660 +527 1337 0.4690 +527 1537 0.5900 +527 1896 0.4280 +527 1938 0.6270 +527 1956 0.6810 +527 2172 0.6740 +527 2178 0.4360 +527 2280 0.4380 +527 2281 0.4120 +527 2287 0.4080 +527 2323 0.4730 +527 2475 0.5540 +527 2597 0.4110 +527 2799 0.4950 +527 2907 0.4690 +527 3091 0.4440 +527 3630 0.5230 +527 3643 0.5120 +527 3720 0.6670 +527 3982 0.9750 +527 4508 0.9950 +527 4509 0.8160 +527 4514 0.4810 +527 4519 0.5240 +527 4535 0.5220 +527 4536 0.4510 +527 4537 0.4580 +527 4538 0.5020 +527 4540 0.4740 +527 4706 0.4120 +527 4720 0.5840 +527 4722 0.5300 +527 4728 0.6440 +527 4729 0.4310 +527 4736 0.4450 +527 5018 0.5860 +527 5315 0.5130 +527 5431 0.4200 +527 5432 0.4880 +527 5464 0.7650 +527 5465 0.4290 +527 5469 0.6030 +527 5927 0.6670 +527 6122 0.5470 +527 6123 0.5410 +527 6124 0.4740 +527 6125 0.6340 +527 6132 0.5260 +527 6133 0.5960 +527 6135 0.6510 +527 6136 0.4230 +527 6139 0.4400 +527 6141 0.4530 +527 6147 0.6070 +527 6182 0.5540 +527 6183 0.6030 +527 6187 0.6300 +527 6188 0.6850 +527 6193 0.5690 +527 6203 0.4920 +527 6205 0.6100 +527 6208 0.5290 +527 6209 0.6340 +527 6210 0.4520 +527 6217 0.4930 +527 6222 0.6580 +527 6224 0.5420 +527 6228 0.5070 +527 6235 0.5200 +527 6389 0.4220 +527 6390 0.4170 +527 6396 0.5330 +527 6449 0.4390 +527 6554 0.6360 +527 6555 0.8570 +527 6563 0.4090 +527 6580 0.6760 +527 7018 0.4990 +527 7037 0.5500 +527 7249 0.4650 +527 7284 0.7200 +527 7386 0.5960 +527 7403 0.7010 +527 7404 0.7010 +527 8192 0.4530 +527 8242 0.6690 +527 8284 0.6670 +527 8649 0.6240 +527 8802 0.4400 +527 8992 0.9980 +527 9114 0.9990 +527 9296 0.9990 +527 9343 0.4760 +527 9349 0.7450 +527 9377 0.4890 +527 9533 0.4830 +527 9550 0.9960 +527 9551 0.8010 +527 9556 0.6990 +527 9681 0.4990 +527 9789 0.4510 +527 9858 0.4260 +527 10102 0.5600 +527 10159 0.9980 +527 10238 0.7330 +527 10312 0.9980 +527 10325 0.5730 +527 10476 0.8900 +527 10542 0.5690 +527 10632 0.9070 +527 10641 0.5010 +527 10670 0.5870 +527 10765 0.6670 +527 11133 0.5370 +527 11222 0.5780 +527 11224 0.5670 +527 23135 0.7090 +527 23204 0.4710 +527 23334 0.5500 +527 23521 0.4880 +527 23545 0.9990 +527 23558 0.4100 +527 23640 0.5180 +527 23645 0.5190 +527 23673 0.4010 +527 26289 0.4160 +527 27068 0.7960 +527 27089 0.4630 +527 27109 0.5890 +527 27244 0.5160 +527 28956 0.6080 +527 28998 0.4440 +527 29093 0.4620 +527 29104 0.4090 +527 29927 0.6210 +527 29956 0.9530 +527 29990 0.4260 +527 50617 0.9990 +527 50808 0.4260 +527 51005 0.5660 +527 51021 0.7130 +527 51028 0.4240 +527 51069 0.5770 +527 51073 0.4890 +527 51081 0.5730 +527 51116 0.4370 +527 51121 0.4030 +527 51122 0.4190 +527 51382 0.9990 +527 51606 0.9990 +527 51727 0.4190 +527 54468 0.5070 +527 54948 0.6310 +527 55004 0.6660 +527 55028 0.5790 +527 55052 0.4250 +527 55054 0.5490 +527 55143 0.7930 +527 55173 0.4720 +527 55176 0.5630 +527 55272 0.4880 +527 55293 0.4120 +527 55316 0.5160 +527 55846 0.5770 +527 57128 0.4200 +527 57521 0.5600 +527 57707 0.9260 +527 58528 0.5250 +527 63931 0.6300 +527 64077 0.7090 +527 64121 0.5590 +527 64223 0.5580 +527 64374 0.4840 +527 64960 0.4640 +527 64963 0.6370 +527 64969 0.5990 +527 64979 0.6030 +527 64983 0.4200 +527 65003 0.4580 +527 65008 0.4450 +527 79631 0.4760 +527 79726 0.5130 +527 79877 0.4060 +527 80347 0.4080 +527 81341 0.5060 +527 81929 0.5060 +527 83667 0.5160 +527 84219 0.5130 +527 84317 0.8850 +527 84833 0.6710 +527 84939 0.4160 +527 85476 0.4730 +527 90231 0.6360 +527 90423 0.9930 +527 91300 0.6190 +527 92399 0.4830 +527 93974 0.4120 +527 96459 0.4390 +527 122481 0.4170 +527 124997 0.4520 +527 126402 0.5660 +527 127124 0.9600 +527 139221 0.4160 +527 140801 0.4700 +527 144577 0.5540 +527 147007 0.9530 +527 153129 0.5020 +527 155066 0.9770 +527 158067 0.4170 +527 163882 0.9710 +527 201163 0.4360 +527 203547 0.9650 +527 219927 0.5370 +527 221264 0.5960 +527 221687 0.6030 +527 245972 0.9990 +527 245973 0.9800 +527 267020 0.8100 +527 285521 0.5690 +527 374291 0.4380 +527 387129 0.4150 +527 389541 0.5450 +527 440400 0.9980 +527 641776 0.4510 +527 643909 0.4510 +527 652968 0.4130 +527 728317 0.4160 +527 728524 0.4510 +527 100526740 0.5400 +527 100526842 0.4400 +527 100996746 0.4510 +527 102157402 0.5460 +527 105180390 0.4510 +527 105180391 0.4510 +528 529 0.9990 +528 533 0.9990 +528 534 0.9970 +528 535 0.9990 +528 537 0.9960 +528 539 0.5560 +528 1463 0.4260 +528 1956 0.6630 +528 2475 0.5790 +528 3630 0.5070 +528 3643 0.5050 +528 3982 0.8290 +528 5464 0.7030 +528 6396 0.5670 +528 7018 0.5200 +528 7037 0.5500 +528 8649 0.6870 +528 8992 0.9970 +528 9114 0.9980 +528 9296 0.9990 +528 9550 0.9980 +528 9681 0.5060 +528 10152 0.4300 +528 10159 0.9980 +528 10312 0.9690 +528 10325 0.5540 +528 10542 0.7420 +528 10641 0.5050 +528 10670 0.5520 +528 11133 0.4990 +528 23190 0.4170 +528 23334 0.4990 +528 23335 0.5790 +528 23545 0.9770 +528 23677 0.4150 +528 25879 0.4640 +528 26297 0.4460 +528 27068 0.6950 +528 27244 0.4990 +528 28956 0.6760 +528 50617 0.9980 +528 51382 0.9990 +528 51606 0.9990 +528 54468 0.5260 +528 55004 0.6520 +528 55270 0.4310 +528 55846 0.5240 +528 57521 0.5170 +528 57600 0.4490 +528 57707 0.9250 +528 58528 0.5250 +528 64077 0.6740 +528 64121 0.6150 +528 64223 0.5230 +528 79726 0.5650 +528 81929 0.5040 +528 83667 0.4990 +528 84219 0.5260 +528 84317 0.9070 +528 90423 0.9890 +528 96459 0.4630 +528 123591 0.4220 +528 127124 0.9350 +528 140711 0.6350 +528 144577 0.5040 +528 147007 0.8860 +528 153129 0.5590 +528 154743 0.4110 +528 155066 0.9730 +528 163882 0.8670 +528 201163 0.5470 +528 221264 0.4640 +528 245972 0.9830 +528 245973 0.9770 +528 285381 0.4360 +528 389541 0.6520 +528 440400 0.9970 +529 533 0.9990 +529 534 0.9980 +529 535 0.9990 +529 537 0.9950 +529 539 0.7450 +529 637 0.6560 +529 1312 0.5190 +529 1327 0.4660 +529 1347 0.4440 +529 1399 0.5540 +529 1657 0.7250 +529 1956 0.6860 +529 2475 0.5180 +529 2597 0.5120 +529 2781 0.4750 +529 2812 0.6360 +529 3630 0.5140 +529 3643 0.5180 +529 3982 0.9750 +529 4508 0.5270 +529 4698 0.4240 +529 4702 0.4320 +529 4711 0.4460 +529 4722 0.4720 +529 4728 0.5960 +529 4729 0.5560 +529 4905 0.4490 +529 5464 0.7330 +529 6396 0.5610 +529 7018 0.4990 +529 7037 0.5790 +529 7122 0.6000 +529 7384 0.4550 +529 7447 0.5130 +529 7879 0.5180 +529 8649 0.7270 +529 8766 0.4810 +529 8835 0.4430 +529 8992 0.9930 +529 9114 0.9990 +529 9218 0.4910 +529 9296 0.9990 +529 9377 0.4780 +529 9474 0.4180 +529 9550 0.9990 +529 9681 0.5080 +529 10159 0.9930 +529 10312 0.9930 +529 10325 0.4990 +529 10476 0.4330 +529 10490 0.4090 +529 10542 0.6810 +529 10641 0.5130 +529 10670 0.5210 +529 10939 0.4800 +529 11133 0.4990 +529 23312 0.7300 +529 23334 0.4990 +529 23335 0.7660 +529 23545 0.9940 +529 27068 0.7380 +529 27244 0.5270 +529 28956 0.6630 +529 50617 0.9990 +529 51382 0.9990 +529 51606 0.9990 +529 51699 0.4620 +529 54468 0.5520 +529 55004 0.7240 +529 55846 0.5200 +529 57521 0.5130 +529 57707 0.9070 +529 58528 0.5260 +529 64077 0.6940 +529 64121 0.5980 +529 64223 0.5040 +529 79641 0.7470 +529 79726 0.5080 +529 79877 0.5700 +529 80347 0.5810 +529 81929 0.5070 +529 83667 0.5200 +529 84219 0.4990 +529 84317 0.9600 +529 90423 0.9020 +529 96459 0.4190 +529 127124 0.9720 +529 140711 0.6340 +529 144577 0.5070 +529 147007 0.9750 +529 153129 0.5100 +529 154743 0.4020 +529 155066 0.9620 +529 163882 0.9750 +529 201163 0.4790 +529 221264 0.6750 +529 245972 0.9990 +529 245973 0.9950 +529 389541 0.6620 +529 440400 0.9900 +529 652968 0.4090 +529 102157402 0.8040 +533 534 0.9950 +533 535 0.9990 +533 537 0.9990 +533 539 0.9500 +533 873 0.6580 +533 874 0.4200 +533 972 0.5270 +533 1174 0.4760 +533 1337 0.4700 +533 1339 0.5880 +533 1537 0.5880 +533 1802 0.6260 +533 1938 0.4760 +533 1956 0.6780 +533 2178 0.4360 +533 2271 0.4050 +533 2323 0.4360 +533 2475 0.5040 +533 3630 0.4990 +533 3643 0.4990 +533 3720 0.6670 +533 3982 0.9750 +533 4508 0.9810 +533 4509 0.7540 +533 4514 0.4090 +533 4519 0.4490 +533 4535 0.4190 +533 4538 0.4170 +533 4706 0.4520 +533 4708 0.4020 +533 4720 0.5210 +533 4722 0.4880 +533 4728 0.5900 +533 4729 0.4550 +533 4736 0.4360 +533 5018 0.5720 +533 5333 0.4690 +533 5432 0.4900 +533 5464 0.7850 +533 5469 0.5880 +533 5927 0.6670 +533 6122 0.5390 +533 6123 0.5350 +533 6124 0.4720 +533 6125 0.6280 +533 6132 0.4600 +533 6133 0.6120 +533 6135 0.6580 +533 6139 0.4400 +533 6147 0.6600 +533 6154 0.4400 +533 6182 0.4770 +533 6183 0.5160 +533 6187 0.5970 +533 6188 0.6860 +533 6193 0.4900 +533 6203 0.5060 +533 6205 0.6180 +533 6208 0.5300 +533 6209 0.6460 +533 6210 0.4110 +533 6217 0.5330 +533 6222 0.6580 +533 6224 0.4620 +533 6228 0.5050 +533 6235 0.5170 +533 6390 0.4580 +533 6396 0.5380 +533 7018 0.4990 +533 7037 0.5150 +533 7280 0.6610 +533 7284 0.7070 +533 7386 0.5770 +533 7403 0.7010 +533 7404 0.7010 +533 7737 0.4530 +533 8242 0.6670 +533 8284 0.6840 +533 8649 0.5240 +533 8802 0.4090 +533 8992 0.9980 +533 9114 0.9990 +533 9296 0.9990 +533 9343 0.4750 +533 9349 0.6790 +533 9377 0.5250 +533 9533 0.4870 +533 9550 0.9980 +533 9551 0.8260 +533 9556 0.6620 +533 9681 0.4990 +533 10102 0.5620 +533 10159 0.9990 +533 10243 0.7190 +533 10312 0.9960 +533 10325 0.5620 +533 10410 0.4940 +533 10476 0.9050 +533 10542 0.5980 +533 10632 0.8530 +533 10641 0.5060 +533 10670 0.5360 +533 10682 0.5540 +533 10765 0.6670 +533 11133 0.5000 +533 11151 0.6840 +533 11222 0.5350 +533 11224 0.5500 +533 23135 0.7040 +533 23204 0.4230 +533 23334 0.5570 +533 23521 0.4790 +533 23545 0.9970 +533 23640 0.4700 +533 23645 0.4500 +533 26289 0.4160 +533 27068 0.7990 +533 27089 0.4980 +533 27109 0.5860 +533 27244 0.5720 +533 28956 0.6030 +533 28998 0.5040 +533 29093 0.4440 +533 29927 0.5930 +533 50617 0.9990 +533 50808 0.4160 +533 51021 0.6880 +533 51069 0.4520 +533 51073 0.4790 +533 51081 0.5040 +533 51121 0.4140 +533 51122 0.5000 +533 51382 0.9990 +533 51606 0.9990 +533 51727 0.4170 +533 54468 0.4990 +533 54939 0.4100 +533 54948 0.4740 +533 55004 0.5750 +533 55028 0.5790 +533 55052 0.4900 +533 55143 0.6700 +533 55173 0.4670 +533 55176 0.5630 +533 55272 0.4960 +533 55293 0.4020 +533 55316 0.5160 +533 55846 0.5460 +533 57521 0.5330 +533 57707 0.8850 +533 58528 0.5180 +533 63931 0.5200 +533 64077 0.7080 +533 64083 0.4970 +533 64121 0.5260 +533 64223 0.5240 +533 64374 0.4780 +533 64960 0.4050 +533 64963 0.5350 +533 64969 0.5930 +533 64979 0.5490 +533 64983 0.4130 +533 65008 0.4460 +533 79590 0.4870 +533 79631 0.4720 +533 79726 0.4990 +533 79956 0.4090 +533 80347 0.4100 +533 81341 0.4380 +533 81929 0.4990 +533 83447 0.4470 +533 83667 0.5260 +533 84219 0.4990 +533 84317 0.8120 +533 84650 0.5510 +533 84833 0.6720 +533 85476 0.4720 +533 90423 0.9940 +533 91300 0.4580 +533 92399 0.4330 +533 96459 0.4390 +533 112858 0.5090 +533 122481 0.4160 +533 124997 0.5000 +533 126402 0.4920 +533 127124 0.9700 +533 140801 0.4720 +533 144577 0.5150 +533 147007 0.8500 +533 153129 0.5030 +533 155066 0.9910 +533 158067 0.4160 +533 163882 0.9710 +533 201163 0.4240 +533 203068 0.6430 +533 203547 0.8640 +533 219927 0.4920 +533 221264 0.4160 +533 245972 0.9980 +533 245973 0.9840 +533 267020 0.8100 +533 285521 0.5690 +533 285855 0.4010 +533 389541 0.5590 +533 440400 0.9970 +533 641776 0.4110 +533 643909 0.4110 +533 728524 0.4110 +533 100526740 0.5400 +533 100526842 0.4400 +533 100529144 0.5650 +533 100996746 0.4110 +533 102157402 0.5450 +533 105180390 0.4110 +533 105180391 0.4110 +534 535 0.9970 +534 537 0.9780 +534 539 0.5610 +534 1350 0.4160 +534 1657 0.5780 +534 1795 0.4070 +534 1956 0.6550 +534 2475 0.4990 +534 3630 0.4990 +534 3643 0.5060 +534 3982 0.8770 +534 4795 0.9160 +534 5464 0.6500 +534 5864 0.4180 +534 6396 0.4990 +534 7018 0.5450 +534 7037 0.5520 +534 7919 0.5440 +534 8649 0.6500 +534 8927 0.4160 +534 8992 0.9730 +534 9114 0.9800 +534 9296 0.9970 +534 9550 0.9610 +534 9681 0.4990 +534 10159 0.9800 +534 10312 0.9560 +534 10325 0.5060 +534 10542 0.6540 +534 10570 0.4360 +534 10641 0.5000 +534 10670 0.5000 +534 11133 0.4990 +534 23061 0.4380 +534 23158 0.4130 +534 23334 0.5000 +534 23335 0.4870 +534 23545 0.9430 +534 27068 0.6500 +534 27089 0.4340 +534 27244 0.5050 +534 28956 0.6500 +534 50617 0.9860 +534 51382 0.9970 +534 51606 0.9810 +534 54468 0.4990 +534 55004 0.6640 +534 55846 0.4990 +534 57338 0.4220 +534 57521 0.4990 +534 57707 0.5080 +534 58528 0.5500 +534 64077 0.7040 +534 64121 0.5630 +534 64223 0.4990 +534 64420 0.4580 +534 79663 0.4060 +534 79726 0.4990 +534 81929 0.4990 +534 83667 0.5050 +534 84219 0.4990 +534 84317 0.7950 +534 90423 0.9970 +534 96459 0.4410 +534 127124 0.5630 +534 144577 0.4990 +534 147007 0.8220 +534 153129 0.4990 +534 154743 0.4140 +534 155066 0.9710 +534 163882 0.7540 +534 245972 0.9870 +534 245973 0.9940 +534 389541 0.6500 +534 401250 0.4730 +534 440400 0.9700 +535 537 0.9990 +535 539 0.8470 +535 1411 0.4340 +535 1509 0.4510 +535 1759 0.6020 +535 1956 0.6710 +535 2222 0.4200 +535 2781 0.6720 +535 3630 0.5470 +535 3643 0.5150 +535 3982 0.9400 +535 4162 0.6240 +535 4508 0.8370 +535 4509 0.4100 +535 4905 0.4090 +535 5230 0.4080 +535 5464 0.7710 +535 5868 0.5300 +535 6563 0.4200 +535 6844 0.4080 +535 6845 0.4230 +535 7018 0.5260 +535 7037 0.5540 +535 7447 0.5100 +535 8218 0.4490 +535 8813 0.5730 +535 8992 0.9950 +535 9026 0.4100 +535 9114 0.9990 +535 9146 0.6160 +535 9296 0.9990 +535 9550 0.9970 +535 9551 0.5480 +535 10159 0.9980 +535 10312 0.9600 +535 10476 0.6690 +535 10490 0.4350 +535 10632 0.5480 +535 10682 0.4530 +535 11345 0.4580 +535 23312 0.4610 +535 23355 0.4120 +535 23545 0.9770 +535 23710 0.4670 +535 27068 0.7350 +535 27109 0.6070 +535 29924 0.4460 +535 50617 0.9370 +535 51160 0.5030 +535 51382 0.9990 +535 51606 0.9990 +535 55697 0.4340 +535 57707 0.9070 +535 64077 0.7460 +535 64924 0.5480 +535 79643 0.5260 +535 79877 0.4260 +535 79947 0.4300 +535 80347 0.4420 +535 81609 0.4050 +535 84286 0.5300 +535 84317 0.8530 +535 84548 0.4070 +535 84650 0.4470 +535 90231 0.5160 +535 90423 0.9950 +535 120892 0.4950 +535 127124 0.9500 +535 147007 0.9550 +535 155066 0.9580 +535 163882 0.8300 +535 196051 0.4070 +535 200576 0.5070 +535 203547 0.6500 +535 221264 0.5400 +535 245972 0.9990 +535 245973 0.9730 +535 267020 0.5470 +535 347735 0.4830 +535 440400 0.9920 +535 100526740 0.5400 +535 102157402 0.5850 +537 949 0.4410 +537 1798 0.4670 +537 1956 0.6880 +537 2108 0.4200 +537 2332 0.4430 +537 2664 0.8620 +537 2665 0.6200 +537 3267 0.5900 +537 3630 0.5590 +537 3643 0.4990 +537 3895 0.4290 +537 3916 0.4620 +537 3920 0.4650 +537 3982 0.6160 +537 3998 0.4280 +537 4204 0.5730 +537 4700 0.4640 +537 5464 0.7050 +537 5538 0.5100 +537 5578 0.9000 +537 5579 0.9030 +537 5582 0.9000 +537 5660 0.5000 +537 5728 0.4220 +537 6563 0.4760 +537 6811 0.4880 +537 7018 0.5090 +537 7037 0.5570 +537 7879 0.4820 +537 8517 0.5590 +537 8639 0.6390 +537 8992 0.9910 +537 9114 0.9990 +537 9130 0.4450 +537 9217 0.4160 +537 9276 0.5450 +537 9296 0.9870 +537 9463 0.6280 +537 9550 0.9960 +537 10134 0.6550 +537 10159 0.9990 +537 10312 0.9910 +537 10424 0.4240 +537 10652 0.4690 +537 22820 0.4290 +537 23065 0.4300 +537 23545 0.9970 +537 25963 0.4110 +537 27068 0.6720 +537 28952 0.4500 +537 50617 0.9980 +537 51122 0.4480 +537 51382 0.9970 +537 51523 0.7040 +537 51606 0.9990 +537 54664 0.5220 +537 54939 0.4010 +537 55219 0.4290 +537 55831 0.4470 +537 55852 0.4290 +537 57707 0.9250 +537 64077 0.7340 +537 65992 0.4350 +537 79956 0.4010 +537 80142 0.4250 +537 80762 0.4110 +537 84317 0.8890 +537 90231 0.6940 +537 90423 0.9640 +537 124997 0.4750 +537 127124 0.9410 +537 147007 0.8330 +537 155066 0.9440 +537 163882 0.7920 +537 245972 0.9960 +537 245973 0.9670 +537 440400 0.9990 +537 448834 0.4130 +538 540 0.9080 +538 627 0.4380 +538 672 0.4630 +538 1174 0.4510 +538 1191 0.6090 +538 1215 0.6410 +538 1244 0.6050 +538 1317 0.9380 +538 1318 0.9100 +538 1353 0.6040 +538 1356 0.9390 +538 1392 0.4930 +538 1400 0.4530 +538 1432 0.5350 +538 1543 0.4750 +538 1621 0.6880 +538 1785 0.4770 +538 1973 0.4790 +538 1974 0.4800 +538 1977 0.8270 +538 1981 0.9890 +538 1982 0.7890 +538 2098 0.4790 +538 2153 0.4830 +538 2157 0.5150 +538 2335 0.5360 +538 2475 0.4360 +538 2597 0.4770 +538 2717 0.4070 +538 2745 0.7660 +538 2872 0.7960 +538 2950 0.5980 +538 3145 0.4760 +538 3553 0.4180 +538 3565 0.4180 +538 3569 0.5070 +538 3576 0.4480 +538 3790 0.4220 +538 3815 0.5740 +538 4015 0.5880 +538 4157 0.6320 +538 4158 0.5630 +538 4159 0.8950 +538 4161 0.5100 +538 4233 0.4200 +538 4246 0.4220 +538 4254 0.5410 +538 4489 0.5730 +538 4493 0.8010 +538 4502 0.5850 +538 4512 0.4340 +538 4520 0.4370 +538 4744 0.4190 +538 4891 0.6520 +538 4948 0.4970 +538 5066 0.5540 +538 5230 0.5370 +538 5252 0.4430 +538 5443 0.9640 +538 5594 0.4600 +538 5832 0.4830 +538 5868 0.4190 +538 6196 0.5350 +538 6197 0.4230 +538 6247 0.5000 +538 6341 0.5760 +538 6556 0.4960 +538 6645 0.4310 +538 6647 0.7150 +538 6649 0.8700 +538 7033 0.4100 +538 7037 0.4020 +538 7046 0.4740 +538 7124 0.5050 +538 7299 0.4960 +538 7704 0.4880 +538 7779 0.6020 +538 7781 0.4470 +538 7782 0.7200 +538 7941 0.4220 +538 8550 0.4520 +538 8569 0.8420 +538 8672 0.5340 +538 8974 0.4370 +538 9261 0.4910 +538 9429 0.5860 +538 9563 0.4520 +538 9843 0.5590 +538 9973 0.9930 +538 9997 0.5290 +538 10020 0.7630 +538 10063 0.7750 +538 10463 0.4950 +538 10618 0.6990 +538 10724 0.4480 +538 10935 0.5820 +538 11251 0.4120 +538 11315 0.4070 +538 23200 0.4050 +538 26258 0.5250 +538 28952 0.4560 +538 30061 0.4310 +538 50848 0.4320 +538 51076 0.4310 +538 51131 0.4170 +538 51248 0.9830 +538 51699 0.4840 +538 54520 0.5110 +538 54765 0.4650 +538 55244 0.4690 +538 55532 0.4340 +538 55676 0.6270 +538 57020 0.4100 +538 57120 0.4630 +538 57210 0.4520 +538 64924 0.5140 +538 79572 0.7620 +538 79901 0.4040 +538 81609 0.5220 +538 84062 0.5040 +538 85480 0.4160 +538 115727 0.4810 +538 148867 0.4490 +538 150684 0.7350 +538 261726 0.4130 +538 285636 0.4830 +538 341208 0.5290 +538 441531 0.5870 +539 594 0.4250 +539 598 0.5090 +539 706 0.6320 +539 972 0.6620 +539 1327 0.8520 +539 1329 0.9740 +539 1337 0.7230 +539 1339 0.5520 +539 1340 0.6910 +539 1345 0.8280 +539 1347 0.8080 +539 1349 0.6500 +539 1350 0.9260 +539 1351 0.4610 +539 1352 0.4410 +539 1431 0.7030 +539 1537 0.9210 +539 1654 0.4830 +539 1737 0.4790 +539 1738 0.4160 +539 1743 0.5700 +539 1937 0.4650 +539 1938 0.6880 +539 1964 0.5800 +539 2023 0.4580 +539 2027 0.4500 +539 2108 0.4670 +539 2178 0.6860 +539 2271 0.5900 +539 2323 0.6290 +539 2597 0.4660 +539 2653 0.6940 +539 3030 0.4470 +539 3032 0.5140 +539 3094 0.4370 +539 3150 0.6800 +539 3151 0.6440 +539 3251 0.6780 +539 3313 0.4570 +539 3336 0.6030 +539 3351 0.4050 +539 3396 0.6170 +539 3419 0.5260 +539 3420 0.4870 +539 3421 0.4460 +539 3720 0.7720 +539 3735 0.7020 +539 3921 0.5130 +539 3982 0.6140 +539 4191 0.6170 +539 4508 0.9990 +539 4509 0.9940 +539 4512 0.5450 +539 4513 0.6030 +539 4514 0.4730 +539 4519 0.5710 +539 4528 0.4520 +539 4535 0.4530 +539 4536 0.4470 +539 4537 0.4600 +539 4540 0.4440 +539 4666 0.4010 +539 4694 0.6070 +539 4695 0.6390 +539 4696 0.4820 +539 4697 0.7720 +539 4698 0.8920 +539 4700 0.7950 +539 4701 0.4620 +539 4702 0.8520 +539 4704 0.7830 +539 4705 0.5420 +539 4706 0.7620 +539 4707 0.4530 +539 4708 0.5000 +539 4709 0.7590 +539 4710 0.8660 +539 4711 0.8550 +539 4712 0.8700 +539 4713 0.6830 +539 4714 0.8820 +539 4715 0.8730 +539 4716 0.8600 +539 4717 0.5060 +539 4718 0.6540 +539 4720 0.8630 +539 4722 0.9580 +539 4723 0.7590 +539 4724 0.9540 +539 4725 0.8310 +539 4726 0.7620 +539 4728 0.7670 +539 4729 0.9240 +539 4736 0.7570 +539 4830 0.4250 +539 4831 0.4940 +539 4832 0.4330 +539 4967 0.6250 +539 5018 0.4730 +539 5161 0.4180 +539 5162 0.6790 +539 5188 0.5520 +539 5245 0.5130 +539 5250 0.7130 +539 5431 0.6300 +539 5432 0.7590 +539 5435 0.4210 +539 5464 0.8140 +539 5469 0.7380 +539 5481 0.9570 +539 5631 0.4250 +539 5634 0.4560 +539 5635 0.4260 +539 5636 0.4200 +539 5832 0.4120 +539 5927 0.7720 +539 6122 0.7470 +539 6123 0.7180 +539 6124 0.7740 +539 6125 0.8840 +539 6129 0.6470 +539 6132 0.7460 +539 6133 0.7950 +539 6135 0.8720 +539 6136 0.6890 +539 6139 0.7820 +539 6144 0.4090 +539 6147 0.8700 +539 6154 0.7160 +539 6157 0.4550 +539 6165 0.4480 +539 6175 0.7800 +539 6182 0.8070 +539 6183 0.7660 +539 6187 0.7730 +539 6188 0.8990 +539 6189 0.4110 +539 6193 0.7400 +539 6194 0.4060 +539 6198 0.4540 +539 6199 0.4420 +539 6203 0.8000 +539 6205 0.8930 +539 6207 0.4180 +539 6208 0.7220 +539 6209 0.8700 +539 6210 0.5830 +539 6217 0.7740 +539 6222 0.9030 +539 6224 0.7980 +539 6228 0.7750 +539 6235 0.6780 +539 6389 0.6670 +539 6390 0.8340 +539 6391 0.6440 +539 6392 0.7910 +539 6446 0.4390 +539 6470 0.4650 +539 6472 0.4710 +539 6647 0.4750 +539 6648 0.6550 +539 6687 0.4250 +539 6727 0.4130 +539 6742 0.7860 +539 7019 0.6140 +539 7038 0.5300 +539 7157 0.4850 +539 7167 0.6150 +539 7173 0.6110 +539 7284 0.8740 +539 7381 0.9400 +539 7384 0.7650 +539 7385 0.9750 +539 7386 0.9380 +539 7388 0.6840 +539 7403 0.7820 +539 7404 0.7820 +539 7416 0.6250 +539 7417 0.5120 +539 7419 0.5040 +539 8050 0.4010 +539 8242 0.7720 +539 8284 0.7720 +539 8653 0.4830 +539 8801 0.5050 +539 8802 0.7750 +539 8803 0.5340 +539 8879 0.4850 +539 8992 0.4200 +539 9086 0.5740 +539 9114 0.6830 +539 9131 0.4120 +539 9296 0.8910 +539 9343 0.7000 +539 9349 0.9060 +539 9360 0.4470 +539 9377 0.9440 +539 9512 0.5930 +539 9533 0.7610 +539 9550 0.7810 +539 9551 0.9990 +539 9553 0.5780 +539 9556 0.9890 +539 9563 0.4020 +539 9588 0.5670 +539 9801 0.7380 +539 9804 0.4230 +539 9858 0.4980 +539 10102 0.7920 +539 10105 0.9890 +539 10110 0.4280 +539 10159 0.5790 +539 10201 0.5690 +539 10312 0.6120 +539 10449 0.4410 +539 10473 0.6350 +539 10476 0.9990 +539 10606 0.4720 +539 10632 0.9990 +539 10765 0.7720 +539 10935 0.4280 +539 10975 0.6050 +539 10987 0.5970 +539 10989 0.4930 +539 11079 0.6220 +539 11128 0.4640 +539 11222 0.7370 +539 11224 0.8760 +539 11315 0.4610 +539 11331 0.4190 +539 22984 0.5960 +539 23135 0.7880 +539 23203 0.5390 +539 23204 0.4750 +539 23410 0.4120 +539 23521 0.6820 +539 23545 0.6110 +539 23640 0.6470 +539 23645 0.4700 +539 23678 0.4530 +539 23788 0.4370 +539 25813 0.5150 +539 25824 0.4770 +539 25874 0.4150 +539 25885 0.4470 +539 26289 0.5820 +539 27068 0.8860 +539 27089 0.8830 +539 27109 0.8190 +539 28976 0.5930 +539 28998 0.6930 +539 29088 0.4330 +539 29093 0.7280 +539 29104 0.5230 +539 29796 0.7610 +539 29927 0.7220 +539 29990 0.4650 +539 50617 0.6080 +539 50808 0.6020 +539 50840 0.5910 +539 51021 0.7920 +539 51028 0.4520 +539 51069 0.7190 +539 51073 0.8010 +539 51079 0.6260 +539 51081 0.6900 +539 51116 0.5090 +539 51121 0.7160 +539 51154 0.7410 +539 51204 0.4150 +539 51258 0.4770 +539 51264 0.5750 +539 51314 0.4210 +539 51318 0.4190 +539 51382 0.8280 +539 51409 0.4290 +539 51529 0.4490 +539 51574 0.4080 +539 51606 0.5600 +539 51650 0.4780 +539 51727 0.5900 +539 54148 0.4720 +539 54205 0.5930 +539 54514 0.4830 +539 54539 0.6090 +539 54543 0.4510 +539 54927 0.5640 +539 54948 0.6850 +539 55028 0.8660 +539 55052 0.5550 +539 55143 0.9430 +539 55173 0.7150 +539 55176 0.7210 +539 55272 0.7720 +539 55316 0.6410 +539 55703 0.5940 +539 55967 0.9170 +539 56901 0.4940 +539 56952 0.6460 +539 57007 0.8240 +539 57142 0.4880 +539 58472 0.4270 +539 63875 0.8070 +539 63931 0.6480 +539 64077 0.6810 +539 64374 0.6570 +539 64756 0.4610 +539 64963 0.6770 +539 64965 0.4680 +539 64968 0.8330 +539 64969 0.7820 +539 64979 0.7380 +539 64983 0.6150 +539 65003 0.6650 +539 65005 0.7340 +539 65008 0.7410 +539 79135 0.4390 +539 79575 0.4130 +539 79590 0.7800 +539 79631 0.6630 +539 79728 0.5510 +539 81341 0.4700 +539 83447 0.4440 +539 83451 0.4180 +539 84172 0.5960 +539 84300 0.4020 +539 84337 0.4500 +539 84701 0.7050 +539 84833 0.9950 +539 84883 0.4010 +539 84886 0.7410 +539 84939 0.4110 +539 84987 0.4290 +539 85476 0.7060 +539 90423 0.5760 +539 91300 0.4700 +539 91647 0.4410 +539 92399 0.7410 +539 93974 0.9740 +539 120892 0.5200 +539 122481 0.5650 +539 123263 0.4290 +539 126328 0.4590 +539 126402 0.6610 +539 130752 0.5030 +539 131474 0.5410 +539 133396 0.4920 +539 139221 0.4110 +539 139322 0.4540 +539 140801 0.6500 +539 155066 0.5720 +539 158067 0.5650 +539 163882 0.6130 +539 219927 0.7410 +539 221264 0.8840 +539 221823 0.4140 +539 245972 0.4170 +539 245973 0.6140 +539 267020 0.9660 +539 283459 0.4260 +539 285521 0.4100 +539 285855 0.5890 +539 347487 0.4980 +539 374291 0.6140 +539 387129 0.5860 +539 440400 0.5400 +539 440574 0.4130 +539 641776 0.4630 +539 643909 0.4630 +539 728317 0.4110 +539 728524 0.4630 +539 100287482 0.4980 +539 100505478 0.5830 +539 100526740 0.5400 +539 100526842 0.6980 +539 100532726 0.4310 +539 100996746 0.4630 +539 105180390 0.4630 +539 105180391 0.4630 +540 672 0.4570 +540 954 0.5960 +540 1080 0.4390 +540 1174 0.4320 +540 1191 0.6250 +540 1244 0.4950 +540 1317 0.9430 +540 1318 0.9300 +540 1353 0.5910 +540 1356 0.9790 +540 1621 0.4310 +540 1759 0.4600 +540 1770 0.4170 +540 1785 0.4640 +540 2098 0.6000 +540 2153 0.4790 +540 2157 0.4780 +540 2745 0.8560 +540 2875 0.4530 +540 3077 0.5960 +540 3145 0.5240 +540 3856 0.4410 +540 3875 0.4860 +540 4489 0.6980 +540 4493 0.8230 +540 4501 0.4220 +540 4502 0.6040 +540 4504 0.4230 +540 4520 0.5350 +540 4524 0.4560 +540 4891 0.6270 +540 5100 0.5530 +540 5101 0.6530 +540 5205 0.5590 +540 5244 0.4120 +540 5832 0.4020 +540 6247 0.4780 +540 6341 0.5740 +540 6556 0.4080 +540 6609 0.5480 +540 6647 0.5430 +540 7033 0.4800 +540 7299 0.4090 +540 7779 0.5810 +540 7781 0.4470 +540 7782 0.7840 +540 8398 0.4310 +540 8647 0.4120 +540 8668 0.4280 +540 9429 0.4120 +540 9563 0.4210 +540 9843 0.5750 +540 9973 0.9920 +540 9997 0.5280 +540 10063 0.7730 +540 10463 0.5070 +540 10935 0.6010 +540 23200 0.4440 +540 23400 0.4470 +540 23516 0.4490 +540 51076 0.4530 +540 51122 0.5390 +540 51164 0.6500 +540 55532 0.6010 +540 55676 0.4730 +540 55777 0.4210 +540 64116 0.4630 +540 64924 0.4940 +540 79572 0.8270 +540 84560 0.4420 +540 84706 0.4770 +540 114785 0.5840 +540 148741 0.4110 +540 148867 0.4400 +540 150684 0.9780 +540 261726 0.4250 +540 341208 0.5150 +545 546 0.6330 +545 567 0.6260 +545 580 0.7250 +545 641 0.9620 +545 672 0.9960 +545 675 0.8310 +545 699 0.4160 +545 745 0.4280 +545 891 0.6780 +545 900 0.4210 +545 901 0.4040 +545 904 0.6010 +545 905 0.5590 +545 983 0.7860 +545 988 0.5590 +545 990 0.8380 +545 991 0.4750 +545 993 0.8600 +545 994 0.4620 +545 995 0.7980 +545 1017 0.8720 +545 1018 0.5440 +545 1019 0.6690 +545 1021 0.6130 +545 1022 0.6160 +545 1025 0.7020 +545 1026 0.4100 +545 1029 0.5370 +545 1108 0.6950 +545 1111 0.9990 +545 1112 0.6760 +545 1643 0.4090 +545 1662 0.4040 +545 1663 0.4300 +545 1763 0.8990 +545 1869 0.5110 +545 2033 0.5220 +545 2067 0.7390 +545 2068 0.7710 +545 2071 0.6780 +545 2072 0.7450 +545 2073 0.5560 +545 2074 0.6260 +545 2175 0.9530 +545 2176 0.6200 +545 2177 0.9300 +545 2178 0.6100 +545 2187 0.5880 +545 2188 0.6180 +545 2189 0.9190 +545 2237 0.7170 +545 2475 0.4360 +545 2547 0.8280 +545 2956 0.8240 +545 2962 0.5170 +545 2963 0.5240 +545 2965 0.5440 +545 2966 0.5170 +545 2967 0.5630 +545 2968 0.5080 +545 3014 0.9140 +545 3015 0.5200 +545 3017 0.6060 +545 3018 0.6140 +545 3021 0.5340 +545 3065 0.5220 +545 3066 0.6940 +545 3308 0.4190 +545 3320 0.5850 +545 3364 0.9920 +545 3832 0.8540 +545 3978 0.5320 +545 3980 0.5120 +545 3981 0.6290 +545 4085 0.4020 +545 4171 0.7580 +545 4172 0.7730 +545 4173 0.7680 +545 4174 0.5950 +545 4175 0.7630 +545 4176 0.7200 +545 4193 0.4610 +545 4292 0.5710 +545 4331 0.5220 +545 4360 0.5590 +545 4361 0.9680 +545 4436 0.9100 +545 4437 0.7290 +545 4438 0.4930 +545 4439 0.4310 +545 4609 0.4480 +545 4683 0.9640 +545 4869 0.4050 +545 4998 0.6340 +545 4999 0.6300 +545 5000 0.5680 +545 5001 0.6430 +545 5111 0.6240 +545 5127 0.5310 +545 5128 0.5210 +545 5129 0.5470 +545 5218 0.5130 +545 5292 0.4140 +545 5347 0.4670 +545 5378 0.4690 +545 5395 0.6090 +545 5422 0.5290 +545 5424 0.4750 +545 5426 0.6210 +545 5429 0.4380 +545 5431 0.5610 +545 5432 0.5610 +545 5433 0.5070 +545 5434 0.5040 +545 5435 0.5050 +545 5436 0.5420 +545 5437 0.5070 +545 5438 0.5630 +545 5439 0.5070 +545 5440 0.5150 +545 5441 0.5340 +545 5520 0.8560 +545 5521 0.8450 +545 5531 0.6230 +545 5591 0.6430 +545 5810 0.9710 +545 5883 0.9940 +545 5884 0.9880 +545 5885 0.7010 +545 5888 0.9420 +545 5889 0.8400 +545 5890 0.7990 +545 5892 0.8130 +545 5893 0.9550 +545 5932 0.8990 +545 5980 0.7020 +545 5982 0.8500 +545 5983 0.6910 +545 5984 0.8060 +545 5985 0.7750 +545 5989 0.8350 +545 5990 0.8010 +545 5991 0.8000 +545 5992 0.5640 +545 5993 0.5740 +545 6047 0.6780 +545 6117 0.9830 +545 6118 0.9580 +545 6119 0.6640 +545 6233 0.5140 +545 6240 0.6100 +545 6241 0.5880 +545 6396 0.4330 +545 6596 0.5290 +545 6749 0.5820 +545 6827 0.5160 +545 6829 0.5380 +545 6917 0.5720 +545 6921 0.5100 +545 6923 0.5060 +545 6924 0.5070 +545 7013 0.4530 +545 7015 0.6320 +545 7032 0.5800 +545 7035 0.5330 +545 7150 0.5770 +545 7153 0.5000 +545 7155 0.4470 +545 7156 0.7970 +545 7157 0.9960 +545 7158 0.9750 +545 7311 0.4990 +545 7314 0.5120 +545 7316 0.5340 +545 7334 0.4240 +545 7336 0.4630 +545 7372 0.4030 +545 7465 0.7490 +545 7469 0.5160 +545 7486 0.9660 +545 7507 0.7470 +545 7508 0.7590 +545 7515 0.4870 +545 7516 0.6190 +545 7517 0.6270 +545 7518 0.5390 +545 7520 0.8980 +545 7917 0.4290 +545 7936 0.5190 +545 7979 0.5910 +545 8178 0.4990 +545 8243 0.7470 +545 8290 0.7540 +545 8295 0.4250 +545 8317 0.9920 +545 8318 0.9140 +545 8337 0.6250 +545 8338 0.6250 +545 8340 0.6150 +545 8341 0.6140 +545 8342 0.6150 +545 8345 0.6170 +545 8347 0.6110 +545 8348 0.6200 +545 8349 0.6880 +545 8356 0.5320 +545 8361 0.7740 +545 8369 0.4180 +545 8438 0.4610 +545 8493 0.4500 +545 8556 0.4530 +545 8607 0.4050 +545 8651 0.4380 +545 8812 0.5950 +545 8878 0.9150 +545 8914 0.8790 +545 8970 0.6140 +545 9025 0.4180 +545 9063 0.4100 +545 9088 0.4580 +545 9112 0.5200 +545 9126 0.7310 +545 9133 0.6560 +545 9150 0.5170 +545 9156 0.9470 +545 9212 0.4020 +545 9400 0.7810 +545 9401 0.8940 +545 9656 0.8890 +545 9675 0.6190 +545 9739 0.4010 +545 9780 0.6900 +545 9894 0.9890 +545 9972 0.4610 +545 9985 0.7080 +545 10038 0.4080 +545 10111 0.9050 +545 10198 0.4180 +545 10213 0.4250 +545 10274 0.6580 +545 10309 0.4150 +545 10388 0.5310 +545 10459 0.4900 +545 10524 0.6840 +545 10606 0.5990 +545 10734 0.5750 +545 10735 0.5670 +545 10926 0.8730 +545 10983 0.4260 +545 11073 0.9960 +545 11144 0.4600 +545 11169 0.8130 +545 11198 0.6040 +545 11200 0.9980 +545 11201 0.6510 +545 22909 0.4060 +545 22933 0.5590 +545 22938 0.4900 +545 22976 0.7230 +545 23049 0.4450 +545 23064 0.4550 +545 23137 0.7260 +545 23411 0.4910 +545 23476 0.4490 +545 23594 0.5520 +545 23595 0.5220 +545 23626 0.7330 +545 25788 0.6220 +545 25842 0.4700 +545 25913 0.4090 +545 25920 0.5080 +545 27127 0.6450 +545 27173 0.4050 +545 27343 0.4370 +545 29089 0.6400 +545 29126 0.4930 +545 29935 0.6280 +545 50484 0.5730 +545 50485 0.5010 +545 50511 0.6970 +545 51224 0.4990 +545 51455 0.6980 +545 51497 0.5070 +545 51514 0.5000 +545 51750 0.4880 +545 51755 0.6380 +545 54145 0.6150 +545 54205 0.5810 +545 54465 0.7470 +545 54841 0.4960 +545 54962 0.6080 +545 55063 0.5850 +545 55120 0.6310 +545 55159 0.4510 +545 55215 0.9600 +545 55255 0.5450 +545 55388 0.8250 +545 55723 0.4350 +545 55746 0.6490 +545 56254 0.4180 +545 56852 0.7600 +545 56916 0.4600 +545 57062 0.4060 +545 57082 0.4480 +545 57122 0.5720 +545 57223 0.7180 +545 57697 0.9780 +545 57805 0.7890 +545 58477 0.8620 +545 63895 0.6830 +545 63922 0.6550 +545 63967 0.9350 +545 65061 0.5130 +545 79648 0.7010 +545 79652 0.7600 +545 79677 0.6600 +545 79728 0.5930 +545 79840 0.6560 +545 79915 0.5570 +545 79935 0.5380 +545 79991 0.7500 +545 80010 0.7770 +545 80119 0.8380 +545 80174 0.4370 +545 80198 0.7530 +545 80233 0.5760 +545 81620 0.4640 +545 81669 0.4180 +545 83695 0.5880 +545 83990 0.7750 +545 84072 0.4820 +545 84126 0.9990 +545 84250 0.6920 +545 84444 0.4260 +545 84464 0.5230 +545 84515 0.5970 +545 84893 0.7180 +545 84955 0.6320 +545 85236 0.6110 +545 85417 0.5380 +545 90381 0.4690 +545 91442 0.7860 +545 92797 0.5000 +545 94239 0.4730 +545 113510 0.4990 +545 114799 0.4230 +545 115426 0.5510 +545 116028 0.5970 +545 128312 0.6150 +545 135458 0.5460 +545 144715 0.9380 +545 146956 0.4480 +545 150280 0.4150 +545 152098 0.5850 +545 163786 0.5700 +545 165918 0.4890 +545 167227 0.6080 +545 199990 0.5620 +545 201254 0.5980 +545 222546 0.5640 +545 254528 0.8420 +545 255626 0.6180 +545 283677 0.5190 +545 286053 0.6810 +545 348654 0.6110 +545 353497 0.4850 +545 378708 0.6000 +545 404672 0.5740 +545 440093 0.5280 +545 440686 0.5280 +545 494551 0.5240 +545 548593 0.5770 +545 644672 0.4580 +545 653604 0.5320 +545 728642 0.4580 +545 731220 0.5640 +545 100533467 0.5440 +546 580 0.6140 +546 641 0.7100 +546 648 0.4700 +546 672 0.8580 +546 673 0.6500 +546 675 0.8910 +546 701 0.4230 +546 983 0.6430 +546 996 0.4330 +546 1019 0.5400 +546 1021 0.4250 +546 1025 0.4460 +546 1029 0.6470 +546 1030 0.4660 +546 1058 0.5690 +546 1111 0.6160 +546 1387 0.6290 +546 1457 0.5160 +546 1499 0.4040 +546 1611 0.5880 +546 1616 0.9990 +546 1654 0.5000 +546 1657 0.4100 +546 1730 0.5130 +546 1740 0.4720 +546 1763 0.5880 +546 1786 0.8140 +546 1787 0.5530 +546 1788 0.7470 +546 1789 0.4220 +546 1956 0.6050 +546 2033 0.4590 +546 2067 0.4740 +546 2068 0.4830 +546 2071 0.4840 +546 2072 0.4630 +546 2146 0.9330 +546 2175 0.5830 +546 2176 0.4800 +546 2177 0.7610 +546 2186 0.7090 +546 2189 0.5770 +546 2237 0.5810 +546 2260 0.4600 +546 2332 0.4630 +546 2334 0.4560 +546 2547 0.8020 +546 2623 0.5070 +546 2670 0.4350 +546 2778 0.4390 +546 2956 0.5530 +546 3006 0.4340 +546 3012 0.7750 +546 3013 0.5570 +546 3014 0.7910 +546 3015 0.7760 +546 3017 0.6140 +546 3018 0.6090 +546 3020 0.9760 +546 3021 0.9990 +546 3039 0.5440 +546 3040 0.5550 +546 3065 0.6570 +546 3066 0.4420 +546 3190 0.4530 +546 3192 0.5340 +546 3265 0.4590 +546 3417 0.8880 +546 3418 0.7270 +546 3845 0.5430 +546 3981 0.7750 +546 4171 0.4060 +546 4173 0.7450 +546 4175 0.4670 +546 4176 0.5000 +546 4193 0.5300 +546 4194 0.4400 +546 4204 0.9810 +546 4208 0.4260 +546 4255 0.7330 +546 4292 0.4930 +546 4297 0.5300 +546 4355 0.4250 +546 4361 0.8510 +546 4436 0.5350 +546 4437 0.4520 +546 4595 0.4450 +546 4603 0.4280 +546 4609 0.6750 +546 4613 0.6130 +546 4683 0.7960 +546 4750 0.4250 +546 4763 0.7530 +546 4771 0.4240 +546 4796 0.4840 +546 4851 0.4810 +546 4893 0.5020 +546 4983 0.5640 +546 5111 0.5650 +546 5156 0.5930 +546 5178 0.4220 +546 5277 0.4850 +546 5290 0.6410 +546 5295 0.4850 +546 5371 0.7820 +546 5395 0.4790 +546 5424 0.5850 +546 5426 0.5990 +546 5456 0.4270 +546 5591 0.7040 +546 5604 0.5910 +546 5728 0.7790 +546 5781 0.4260 +546 5883 0.6000 +546 5884 0.4930 +546 5885 0.5290 +546 5888 0.9990 +546 5889 0.7800 +546 5890 0.7120 +546 5892 0.6990 +546 5893 0.9930 +546 5926 0.4620 +546 5927 0.4670 +546 5928 0.4180 +546 5932 0.4940 +546 5965 0.5400 +546 5979 0.4280 +546 5980 0.7250 +546 5981 0.4730 +546 6117 0.5250 +546 6241 0.4100 +546 6426 0.4970 +546 6594 0.4070 +546 6595 0.6720 +546 6597 0.6670 +546 6598 0.7170 +546 6599 0.5470 +546 6601 0.5840 +546 6602 0.4070 +546 6613 0.8110 +546 6658 0.5390 +546 6672 0.9910 +546 6732 0.4780 +546 6749 0.7820 +546 6790 0.5090 +546 6829 0.4250 +546 6839 0.7280 +546 6855 0.4370 +546 6872 0.4170 +546 6944 0.4010 +546 7013 0.7530 +546 7014 0.6480 +546 7015 0.7940 +546 7150 0.5100 +546 7153 0.4830 +546 7156 0.6390 +546 7157 0.9810 +546 7158 0.7420 +546 7249 0.4900 +546 7272 0.4100 +546 7290 0.7010 +546 7337 0.6110 +546 7341 0.6430 +546 7403 0.6370 +546 7465 0.4450 +546 7468 0.4040 +546 7486 0.8480 +546 7490 0.4180 +546 7507 0.4650 +546 7515 0.4500 +546 7516 0.5620 +546 7517 0.8840 +546 7518 0.5150 +546 7520 0.8150 +546 7543 0.5670 +546 7552 0.5510 +546 7592 0.4230 +546 7812 0.4700 +546 7846 0.4140 +546 7874 0.5410 +546 7913 0.4360 +546 7991 0.5440 +546 8085 0.4810 +546 8233 0.4360 +546 8239 0.5110 +546 8242 0.5420 +546 8243 0.7630 +546 8289 0.7820 +546 8290 0.9950 +546 8295 0.4850 +546 8331 0.5540 +546 8334 0.5560 +546 8337 0.7570 +546 8338 0.7570 +546 8340 0.7120 +546 8341 0.6090 +546 8342 0.6090 +546 8345 0.6120 +546 8347 0.6100 +546 8348 0.6090 +546 8349 0.8400 +546 8350 0.9640 +546 8351 0.9180 +546 8352 0.9660 +546 8353 0.9640 +546 8354 0.9180 +546 8355 0.9180 +546 8356 0.9950 +546 8357 0.9210 +546 8358 0.9640 +546 8361 0.8470 +546 8363 0.4180 +546 8369 0.4330 +546 8467 0.4420 +546 8493 0.4430 +546 8520 0.5010 +546 8540 0.4070 +546 8546 0.4140 +546 8607 0.4710 +546 8658 0.6000 +546 8805 0.6290 +546 8880 0.7440 +546 8968 0.9180 +546 8970 0.6100 +546 9031 0.5090 +546 9044 0.4210 +546 9093 0.6260 +546 9126 0.7890 +546 9156 0.7560 +546 9169 0.6210 +546 9189 0.5080 +546 9360 0.4430 +546 9400 0.6240 +546 9401 0.5620 +546 9555 0.7460 +546 9584 0.5680 +546 9611 0.4850 +546 9612 0.5450 +546 9656 0.4870 +546 9736 0.5040 +546 9759 0.4190 +546 9774 0.7690 +546 9857 0.4870 +546 9869 0.7860 +546 9948 0.4370 +546 9968 0.4730 +546 10036 0.4220 +546 10075 0.5530 +546 10111 0.6790 +546 10155 0.6240 +546 10178 0.4150 +546 10215 0.5200 +546 10376 0.5690 +546 10389 0.4510 +546 10459 0.4240 +546 10524 0.4100 +546 10592 0.4310 +546 10635 0.7450 +546 10664 0.6250 +546 10714 0.4070 +546 10735 0.7300 +546 10782 0.4380 +546 10856 0.4600 +546 10919 0.4230 +546 10951 0.5560 +546 11073 0.5510 +546 11169 0.5710 +546 11176 0.4100 +546 11177 0.4570 +546 11198 0.8300 +546 11200 0.7880 +546 11335 0.7280 +546 22866 0.5030 +546 23047 0.4150 +546 23089 0.4030 +546 23137 0.8010 +546 23186 0.4170 +546 23215 0.4600 +546 23272 0.4640 +546 23347 0.4390 +546 23350 0.4500 +546 23394 0.4460 +546 23468 0.8910 +546 23476 0.8270 +546 23512 0.6430 +546 23523 0.6340 +546 23626 0.5810 +546 25782 0.4050 +546 25788 0.9800 +546 25836 0.6740 +546 25842 0.7010 +546 25913 0.6650 +546 26040 0.5010 +546 26277 0.7090 +546 27330 0.6420 +546 27332 0.4960 +546 29072 0.7620 +546 29855 0.6550 +546 29947 0.9780 +546 29994 0.6290 +546 30812 0.4760 +546 51132 0.6600 +546 51455 0.4560 +546 51592 0.4080 +546 51742 0.5550 +546 51750 0.5480 +546 51755 0.6450 +546 51773 0.5870 +546 54014 0.4600 +546 54145 0.6100 +546 54148 0.6100 +546 54386 0.5900 +546 54737 0.5080 +546 54790 0.5400 +546 54962 0.4500 +546 55023 0.7420 +546 55120 0.6610 +546 55143 0.4690 +546 55193 0.7720 +546 55215 0.7470 +546 55285 0.4660 +546 55355 0.4130 +546 55654 0.4540 +546 55723 0.6000 +546 55746 0.4510 +546 55766 0.5530 +546 55814 0.6120 +546 55869 0.4650 +546 55870 0.4690 +546 55929 0.5190 +546 56852 0.5910 +546 56897 0.4830 +546 56925 0.4240 +546 56946 0.4230 +546 57187 0.7580 +546 57492 0.7510 +546 57562 0.4970 +546 57631 0.4800 +546 57670 0.5310 +546 57697 0.7490 +546 58508 0.7430 +546 58517 0.6310 +546 63035 0.4920 +546 64324 0.6300 +546 64710 0.4970 +546 65980 0.4290 +546 79075 0.4530 +546 79618 0.4370 +546 79677 0.5270 +546 79723 0.4290 +546 79728 0.6210 +546 79813 0.4050 +546 79915 0.4240 +546 80010 0.6040 +546 80119 0.5230 +546 80169 0.5380 +546 80198 0.8570 +546 80351 0.5720 +546 83990 0.4980 +546 84057 0.7170 +546 84061 0.6540 +546 84159 0.5010 +546 84295 0.5760 +546 84444 0.4130 +546 84464 0.4660 +546 84893 0.6030 +546 85236 0.6100 +546 93349 0.4920 +546 94239 0.7160 +546 113510 0.4280 +546 114803 0.4750 +546 116028 0.4480 +546 119392 0.4020 +546 120892 0.5460 +546 126961 0.9840 +546 128312 0.6090 +546 133482 0.4350 +546 139081 0.4360 +546 146956 0.5410 +546 152110 0.4340 +546 153090 0.4090 +546 154796 0.4180 +546 171023 0.4320 +546 196528 0.7200 +546 254065 0.5980 +546 255626 0.6170 +546 259282 0.4110 +546 333932 0.9180 +546 340096 0.4450 +546 340596 0.4080 +546 348654 0.5240 +546 391769 0.4470 +546 440093 0.9910 +546 440686 0.9910 +546 474382 0.6020 +546 548593 0.4650 +546 653604 0.9920 +547 627 0.5420 +547 636 0.4180 +547 662 0.4990 +547 810 0.4780 +547 823 0.4760 +547 1062 0.5250 +547 1400 0.4240 +547 1639 0.5850 +547 1778 0.5700 +547 1826 0.5270 +547 2099 0.5360 +547 2201 0.4170 +547 2596 0.4230 +547 3796 0.6230 +547 3797 0.6480 +547 3798 0.7620 +547 3799 0.7810 +547 3800 0.8000 +547 3801 0.6430 +547 3831 0.8180 +547 3832 0.6940 +547 3833 0.6190 +547 3834 0.6780 +547 3835 0.5900 +547 4131 0.4360 +547 4137 0.6120 +547 4218 0.4050 +547 4644 0.4090 +547 4741 0.6290 +547 4747 0.4820 +547 5048 0.7140 +547 5049 0.5820 +547 5050 0.6900 +547 5354 0.4100 +547 5649 0.4860 +547 5864 0.8010 +547 6253 0.4300 +547 6272 0.4310 +547 6616 0.5410 +547 6683 0.5960 +547 6687 0.5060 +547 6709 0.5460 +547 6812 0.5190 +547 6843 0.7170 +547 6855 0.7640 +547 6857 0.4930 +547 6860 0.7550 +547 7248 0.4260 +547 7280 0.7300 +547 7430 0.4040 +547 7846 0.9600 +547 8497 0.6510 +547 8499 0.5070 +547 8500 0.8340 +547 8541 0.7650 +547 8567 0.7410 +547 8618 0.4950 +547 8729 0.4990 +547 9053 0.4490 +547 9179 0.4160 +547 9183 0.5350 +547 9371 0.6110 +547 9378 0.6270 +547 9479 0.4740 +547 9493 0.6420 +547 9543 0.6010 +547 9585 0.6320 +547 9638 0.4040 +547 9892 0.5160 +547 9895 0.4320 +547 9897 0.4520 +547 9900 0.4060 +547 9907 0.4890 +547 9928 0.6380 +547 10112 0.7260 +547 10490 0.4370 +547 10497 0.5570 +547 10717 0.4470 +547 10749 0.8280 +547 10908 0.4010 +547 11004 0.6200 +547 11099 0.7070 +547 11127 0.6440 +547 11154 0.4180 +547 11160 0.4420 +547 22920 0.7340 +547 22999 0.4430 +547 23025 0.4300 +547 23046 0.6430 +547 23085 0.4230 +547 23095 0.8500 +547 23162 0.6950 +547 23259 0.4050 +547 23299 0.5540 +547 23303 0.6500 +547 23431 0.4220 +547 23503 0.4160 +547 24137 0.5460 +547 26115 0.6060 +547 26128 0.5430 +547 26153 0.6180 +547 26286 0.4990 +547 26499 0.5300 +547 26580 0.4720 +547 27185 0.4920 +547 29127 0.4400 +547 51062 0.4250 +547 51308 0.5530 +547 51324 0.4550 +547 51594 0.4990 +547 51806 0.4790 +547 53407 0.4990 +547 54332 0.4140 +547 54463 0.5630 +547 54820 0.8300 +547 55083 0.6090 +547 55582 0.6120 +547 55605 0.6890 +547 55614 0.6260 +547 55738 0.5130 +547 55740 0.4210 +547 55753 0.4010 +547 55850 0.5270 +547 56992 0.6630 +547 57576 0.6620 +547 57704 0.4290 +547 60561 0.5100 +547 63971 0.6420 +547 64837 0.8570 +547 65055 0.6020 +547 79152 0.4990 +547 79739 0.4490 +547 80208 0.5290 +547 80821 0.4060 +547 81565 0.6740 +547 81930 0.6450 +547 84364 0.4990 +547 84643 0.5800 +547 84955 0.6190 +547 89953 0.7500 +547 90990 0.6310 +547 91860 0.4780 +547 114088 0.4400 +547 115827 0.4190 +547 123606 0.4550 +547 124602 0.5860 +547 127829 0.5110 +547 146909 0.5870 +547 147700 0.7910 +547 163688 0.4780 +547 221079 0.7660 +547 221458 0.5640 +547 285643 0.4950 +547 341640 0.4260 +547 347733 0.9390 +547 374654 0.6350 +547 440730 0.4860 +547 100532724 0.4090 +549 740 0.4990 +549 1384 0.4270 +549 1431 0.5110 +549 1632 0.4390 +549 1891 0.4680 +549 1892 0.4130 +549 2108 0.6430 +549 2109 0.5970 +549 2194 0.4470 +549 2639 0.5590 +549 3032 0.7000 +549 3033 0.9680 +549 3155 0.9820 +549 3157 0.9440 +549 3158 0.9440 +549 3242 0.4580 +549 3295 0.4730 +549 3658 0.4060 +549 3712 0.7920 +549 4329 0.4660 +549 4728 0.4440 +549 4942 0.4130 +549 5019 0.4840 +549 5095 0.4880 +549 5096 0.6240 +549 5165 0.4100 +549 6182 0.4090 +549 6187 0.4320 +549 6205 0.4990 +549 6222 0.4200 +549 6342 0.8350 +549 6901 0.8440 +549 7818 0.5310 +549 8309 0.4660 +549 8310 0.4780 +549 8659 0.5510 +549 9349 0.4220 +549 9399 0.4390 +549 9553 0.5440 +549 9607 0.6360 +549 9801 0.4860 +549 10005 0.4630 +549 10295 0.4760 +549 10449 0.7270 +549 10455 0.4470 +549 11112 0.5650 +549 26275 0.6290 +549 26589 0.4930 +549 27034 0.5860 +549 27349 0.4110 +549 28976 0.5030 +549 51021 0.4970 +549 51084 0.4790 +549 51264 0.4890 +549 51497 0.4760 +549 54511 0.9770 +549 55052 0.4300 +549 55268 0.5260 +549 55289 0.4900 +549 55856 0.4230 +549 55902 0.4550 +549 56922 0.9600 +549 57129 0.4960 +549 57591 0.4360 +549 60488 0.5140 +549 63875 0.4930 +549 64064 0.4300 +549 64087 0.9560 +549 64965 0.5440 +549 64968 0.4860 +549 64969 0.4610 +549 64975 0.4720 +549 64976 0.4530 +549 64979 0.4690 +549 64981 0.4610 +549 64983 0.4550 +549 65985 0.5160 +549 80207 0.8740 +549 80221 0.4060 +549 80724 0.4260 +549 84129 0.5140 +549 84263 0.8360 +549 84532 0.4610 +549 84545 0.4970 +549 84693 0.5300 +549 131118 0.9100 +549 132949 0.4220 +549 140856 0.4120 +549 171425 0.5990 +549 197322 0.4430 +549 219927 0.5740 +549 254042 0.4080 +549 284422 0.4650 +549 339229 0.4540 +549 730249 0.4060 +549 109703458 0.4120 +549 122405565 0.4650 +550 821 0.8620 +550 1201 0.6440 +550 1650 0.5550 +550 2181 0.5220 +550 2342 0.5250 +550 3156 0.5260 +550 3309 0.7960 +550 4547 0.5030 +550 5034 0.8000 +550 5245 0.4380 +550 5346 0.4180 +550 5886 0.5000 +550 6184 0.5360 +550 6185 0.5180 +550 6400 0.9950 +550 6890 0.4710 +550 6923 0.5470 +550 7184 0.5170 +550 7327 0.9990 +550 7353 0.6260 +550 7415 0.9430 +550 7803 0.7800 +550 7993 0.4930 +550 8266 0.4580 +550 8694 0.4020 +550 8836 0.8030 +550 9183 0.4110 +550 9695 0.6960 +550 10226 0.4620 +550 10280 0.4600 +550 10299 0.7110 +550 10525 0.4720 +550 10558 0.4530 +550 10952 0.4680 +550 10956 0.9780 +550 11047 0.4020 +550 11160 0.5340 +550 11236 0.6950 +550 11343 0.4010 +550 22926 0.4710 +550 22931 0.4930 +550 23032 0.5400 +550 23111 0.5500 +550 23190 0.5210 +550 23197 0.9940 +550 25840 0.5140 +550 26580 0.4280 +550 27248 0.7180 +550 27429 0.4850 +550 50814 0.4430 +550 51009 0.9920 +550 51099 0.4520 +550 51170 0.4470 +550 51272 0.5090 +550 51439 0.7800 +550 51465 0.9500 +550 54431 0.5810 +550 55432 0.4010 +550 55666 0.6100 +550 55829 0.7830 +550 55905 0.5260 +550 57104 0.4180 +550 57414 0.5550 +550 64422 0.5980 +550 64427 0.5530 +550 79102 0.4140 +550 79139 0.7030 +550 79888 0.4780 +550 80124 0.5450 +550 81876 0.4320 +550 83985 0.4810 +550 84447 0.9870 +550 84649 0.4650 +550 91319 0.8650 +550 92305 0.4210 +550 118424 0.4270 +550 129642 0.4360 +550 132949 0.5200 +550 137964 0.7790 +550 165545 0.5810 +550 196410 0.4720 +550 197131 0.4590 +550 197322 0.4410 +550 201595 0.4680 +550 254531 0.4770 +550 337867 0.5940 +551 552 0.9990 +551 553 0.9950 +551 554 0.9990 +551 695 0.4990 +551 796 0.4470 +551 797 0.4200 +551 885 0.6430 +551 999 0.4690 +551 1081 0.5240 +551 1129 0.6660 +551 1173 0.4990 +551 1175 0.5140 +551 1211 0.4990 +551 1212 0.5010 +551 1392 0.8060 +551 1394 0.5310 +551 1401 0.6160 +551 1410 0.5790 +551 1471 0.4540 +551 1571 0.7740 +551 1588 0.4650 +551 1591 0.4150 +551 1601 0.5170 +551 1636 0.5850 +551 1902 0.6530 +551 1906 0.5060 +551 2052 0.4730 +551 2060 0.4990 +551 2100 0.4850 +551 2149 0.6500 +551 2170 0.4340 +551 2353 0.4310 +551 2488 0.4530 +551 2520 0.5520 +551 2555 0.4550 +551 2559 0.4130 +551 2641 0.7110 +551 2642 0.4810 +551 2691 0.6540 +551 2695 0.4480 +551 2778 0.5540 +551 2782 0.4990 +551 2783 0.5020 +551 2784 0.4990 +551 2785 0.5350 +551 2786 0.5130 +551 2787 0.5130 +551 2788 0.5150 +551 2790 0.5130 +551 2791 0.5130 +551 2792 0.5130 +551 2793 0.5150 +551 2796 0.4440 +551 2846 0.6530 +551 2863 0.4060 +551 2869 0.5460 +551 2875 0.5070 +551 2911 0.6770 +551 2912 0.7020 +551 2913 0.6880 +551 2914 0.6680 +551 2915 0.6840 +551 2916 0.6590 +551 2917 0.6590 +551 2918 0.6690 +551 2922 0.5820 +551 2950 0.4270 +551 3060 0.7230 +551 3267 0.5130 +551 3320 0.4540 +551 3326 0.4500 +551 3375 0.5060 +551 3553 0.4130 +551 3569 0.4880 +551 3577 0.6530 +551 3579 0.6530 +551 3630 0.6510 +551 3640 0.4110 +551 3814 0.5300 +551 3827 0.6470 +551 3934 0.4380 +551 3949 0.5140 +551 3953 0.4570 +551 3972 0.5100 +551 4036 0.5650 +551 4295 0.4490 +551 4852 0.5890 +551 4862 0.5350 +551 4878 0.7870 +551 4879 0.5710 +551 4885 0.8330 +551 4922 0.6430 +551 5020 0.9590 +551 5021 0.9130 +551 5032 0.4040 +551 5173 0.6310 +551 5330 0.5230 +551 5331 0.5270 +551 5367 0.6760 +551 5443 0.8790 +551 5566 0.4010 +551 5617 0.5980 +551 5737 0.6820 +551 5741 0.6970 +551 5744 0.5110 +551 5972 0.8250 +551 6019 0.4600 +551 6343 0.5760 +551 6453 0.4990 +551 6519 0.4350 +551 6557 0.4620 +551 6615 0.6000 +551 6652 0.4940 +551 6714 0.5840 +551 6750 0.5830 +551 6844 0.5470 +551 6845 0.4990 +551 6863 0.6670 +551 6869 0.4670 +551 7137 0.5060 +551 7139 0.4790 +551 7200 0.5620 +551 7204 0.5070 +551 7252 0.4460 +551 7263 0.4310 +551 7432 0.6720 +551 7474 0.4660 +551 7857 0.4860 +551 8218 0.4990 +551 8301 0.4990 +551 8322 0.4200 +551 8560 0.5130 +551 8620 0.5060 +551 8673 0.4990 +551 8997 0.4990 +551 9170 0.6540 +551 9341 0.5070 +551 9360 0.4460 +551 9575 0.5720 +551 9892 0.4990 +551 10161 0.6530 +551 10681 0.4990 +551 10800 0.5120 +551 10874 0.4590 +551 10901 0.7000 +551 22848 0.4990 +551 22888 0.4290 +551 22905 0.4990 +551 23149 0.4990 +551 23236 0.5230 +551 23566 0.7070 +551 25977 0.4990 +551 26119 0.5170 +551 27254 0.4190 +551 27306 0.4970 +551 28232 0.7500 +551 29924 0.5060 +551 29978 0.4990 +551 50618 0.4990 +551 50833 0.4240 +551 51083 0.4090 +551 51764 0.5170 +551 54331 0.5130 +551 55707 0.4990 +551 55970 0.5130 +551 57105 0.5050 +551 57121 0.6500 +551 59345 0.4990 +551 79924 0.4130 +551 84251 0.5160 +551 85021 0.4990 +551 94235 0.5130 +551 113091 0.5750 +551 115548 0.4990 +551 115557 0.4990 +551 117579 0.4940 +551 122876 0.5410 +551 129521 0.4730 +551 137872 0.8280 +551 145482 0.7750 +551 157506 0.4620 +551 170589 0.4920 +551 196883 0.5040 +551 255239 0.5210 +551 347148 0.4180 +551 387129 0.4560 +551 594857 0.5180 +551 104909134 0.5100 +552 553 0.9400 +552 554 0.9530 +552 695 0.5040 +552 952 0.4880 +552 1312 0.4540 +552 1392 0.4950 +552 1394 0.5500 +552 1395 0.5240 +552 1812 0.4400 +552 1814 0.4110 +552 1815 0.6490 +552 1906 0.5010 +552 1907 0.4010 +552 1908 0.4950 +552 2099 0.4160 +552 2100 0.4010 +552 2147 0.6680 +552 2353 0.4080 +552 2695 0.5030 +552 2696 0.6400 +552 2767 0.9170 +552 2768 0.9170 +552 2769 0.7020 +552 2776 0.9570 +552 2778 0.7470 +552 2784 0.4400 +552 2869 0.6820 +552 2922 0.5070 +552 3485 0.4540 +552 3576 0.6520 +552 4128 0.4420 +552 4204 0.4480 +552 5020 0.9930 +552 5021 0.7750 +552 5330 0.5020 +552 5331 0.5020 +552 5443 0.7860 +552 5972 0.4780 +552 6010 0.4240 +552 6532 0.6590 +552 7204 0.5160 +552 7432 0.9970 +552 7852 0.6120 +552 8997 0.5120 +552 9630 0.8390 +552 10672 0.9110 +552 10800 0.4180 +552 23236 0.5990 +552 57007 0.7670 +552 57105 0.4230 +552 58157 0.4060 +552 79050 0.4030 +552 115557 0.5110 +552 121278 0.4490 +552 104909134 0.5240 +553 554 0.9390 +553 695 0.5040 +553 1392 0.7470 +553 1394 0.8950 +553 1395 0.6030 +553 1813 0.5010 +553 1906 0.4380 +553 1908 0.4440 +553 2147 0.6740 +553 2692 0.4330 +553 2695 0.5600 +553 2696 0.6650 +553 2767 0.9090 +553 2768 0.9130 +553 2769 0.6780 +553 2776 0.9470 +553 2778 0.7390 +553 2864 0.4440 +553 2869 0.5290 +553 2904 0.4610 +553 3576 0.6520 +553 3973 0.5570 +553 5020 0.8960 +553 5021 0.6400 +553 5330 0.5020 +553 5331 0.5020 +553 5443 0.8150 +553 5617 0.5480 +553 5972 0.4730 +553 6010 0.4050 +553 7204 0.5160 +553 8383 0.4750 +553 8997 0.5030 +553 9095 0.4450 +553 9630 0.6780 +553 10672 0.9090 +553 10800 0.4180 +553 23236 0.5410 +553 29119 0.4030 +553 54970 0.4040 +553 57105 0.4310 +553 58157 0.4190 +553 115557 0.5110 +553 139760 0.4310 +553 151306 0.4320 +553 192668 0.4380 +553 255239 0.4020 +553 594857 0.5000 +553 104909134 0.8900 +554 708 0.5430 +554 811 0.4430 +554 821 0.5220 +554 846 0.6610 +554 1080 0.4220 +554 1129 0.4840 +554 1173 0.4990 +554 1175 0.5220 +554 1187 0.6160 +554 1211 0.4990 +554 1212 0.4990 +554 1601 0.4990 +554 1636 0.4060 +554 1813 0.4040 +554 1815 0.5020 +554 1856 0.4270 +554 1906 0.4070 +554 1909 0.4050 +554 1950 0.5060 +554 1995 0.4600 +554 2060 0.5290 +554 2147 0.6880 +554 2157 0.5180 +554 2642 0.4590 +554 2696 0.4720 +554 2768 0.7570 +554 2775 0.8510 +554 2776 0.4480 +554 2778 0.9950 +554 2782 0.9670 +554 2783 0.6080 +554 2784 0.5960 +554 2785 0.5650 +554 2786 0.5410 +554 2787 0.5410 +554 2788 0.5420 +554 2790 0.5410 +554 2791 0.5410 +554 2792 0.5410 +554 2793 0.6400 +554 2869 0.4560 +554 3054 0.5400 +554 3267 0.5070 +554 3576 0.6610 +554 3670 0.4350 +554 3758 0.4450 +554 3897 0.7520 +554 3949 0.5030 +554 3973 0.6560 +554 3975 0.4240 +554 4036 0.5720 +554 4158 0.5180 +554 4762 0.4420 +554 4956 0.6050 +554 4975 0.6090 +554 4988 0.4150 +554 5020 0.7770 +554 5076 0.4100 +554 5310 0.5800 +554 5311 0.5140 +554 5314 0.4230 +554 5443 0.5040 +554 5566 0.5190 +554 5567 0.5150 +554 5568 0.5260 +554 5587 0.5910 +554 5595 0.4720 +554 5972 0.7130 +554 5973 0.8370 +554 6295 0.6530 +554 6453 0.4990 +554 6557 0.7430 +554 6714 0.7520 +554 6750 0.4020 +554 6844 0.5250 +554 6845 0.4990 +554 6869 0.5070 +554 7153 0.5120 +554 7189 0.5770 +554 7253 0.5330 +554 7415 0.5450 +554 7450 0.4370 +554 7474 0.5080 +554 8170 0.4530 +554 8218 0.5450 +554 8260 0.7550 +554 8277 0.5940 +554 8301 0.4990 +554 8322 0.4490 +554 8673 0.5120 +554 8862 0.4390 +554 9146 0.5290 +554 9287 0.4970 +554 9341 0.4990 +554 9355 0.4640 +554 9737 0.6550 +554 9892 0.4990 +554 10672 0.7420 +554 10681 0.5920 +554 22848 0.5140 +554 22905 0.5450 +554 23149 0.5080 +554 25977 0.4990 +554 26119 0.4990 +554 27031 0.4830 +554 29924 0.5180 +554 29978 0.5040 +554 50618 0.5030 +554 51270 0.4010 +554 51475 0.4900 +554 51764 0.5890 +554 54331 0.9250 +554 55707 0.5010 +554 55970 0.5410 +554 56980 0.5040 +554 57105 0.4360 +554 57191 0.6900 +554 59345 0.6020 +554 80835 0.4010 +554 83551 0.4420 +554 84251 0.4990 +554 85021 0.4990 +554 93145 0.4830 +554 94235 0.5410 +554 114897 0.8330 +554 115548 0.4990 +554 134860 0.4440 +554 134864 0.4190 +554 167826 0.6720 +554 192668 0.4310 +554 196883 0.5720 +554 319100 0.4350 +554 388567 0.4950 +554 400720 0.4950 +558 575 0.5490 +558 595 0.4460 +558 596 0.4630 +558 682 0.4920 +558 712 0.5860 +558 836 0.4510 +558 857 0.4410 +558 867 0.6350 +558 920 0.6040 +558 925 0.4730 +558 942 0.4340 +558 946 0.6010 +558 948 0.4080 +558 949 0.4250 +558 950 0.4160 +558 960 0.6630 +558 961 0.4130 +558 968 0.6120 +558 999 0.5530 +558 1000 0.4840 +558 1012 0.5170 +558 1021 0.5120 +558 1113 0.4410 +558 1154 0.4100 +558 1230 0.4490 +558 1435 0.6140 +558 1437 0.4090 +558 1463 0.5670 +558 1464 0.5070 +558 1488 0.4690 +558 1490 0.5420 +558 1493 0.4340 +558 1499 0.5530 +558 1524 0.4980 +558 1793 0.5950 +558 1947 0.4930 +558 1949 0.4560 +558 1950 0.5110 +558 1956 0.7920 +558 1969 0.5930 +558 2064 0.7630 +558 2065 0.7320 +558 2146 0.4210 +558 2209 0.4390 +558 2253 0.4650 +558 2260 0.4470 +558 2316 0.5230 +558 2335 0.5340 +558 2475 0.4390 +558 2534 0.4670 +558 2549 0.9260 +558 2597 0.4710 +558 2620 0.4110 +558 2621 0.9990 +558 2885 0.9310 +558 3082 0.5470 +558 3091 0.4840 +558 3304 0.5330 +558 3320 0.7860 +558 3326 0.6930 +558 3439 0.4280 +558 3454 0.9250 +558 3455 0.5000 +558 3458 0.5190 +558 3479 0.6700 +558 3481 0.5300 +558 3489 0.4710 +558 3491 0.5850 +558 3553 0.5080 +558 3565 0.4240 +558 3569 0.5680 +558 3570 0.4760 +558 3586 0.5330 +558 3684 0.4230 +558 3687 0.4430 +558 3716 0.9140 +558 3717 0.9150 +558 3725 0.6330 +558 3791 0.6410 +558 3815 0.5000 +558 3845 0.5760 +558 3958 0.5080 +558 4035 0.7760 +558 4058 0.4310 +558 4067 0.6090 +558 4131 0.4430 +558 4233 0.6210 +558 4240 0.7040 +558 4254 0.5090 +558 4286 0.5510 +558 4313 0.4160 +558 4318 0.4010 +558 4436 0.4250 +558 4609 0.4840 +558 4628 0.4920 +558 4763 0.4200 +558 4790 0.4220 +558 4803 0.5260 +558 4893 0.5430 +558 5054 0.6090 +558 5159 0.5820 +558 5290 0.7430 +558 5291 0.6050 +558 5295 0.8900 +558 5296 0.7110 +558 5328 0.4250 +558 5335 0.9370 +558 5336 0.9180 +558 5578 0.4530 +558 5627 0.9970 +558 5728 0.5120 +558 5781 0.4380 +558 5788 0.4430 +558 6347 0.4870 +558 6355 0.4220 +558 6374 0.5290 +558 6387 0.4300 +558 6464 0.9570 +558 6591 0.5500 +558 6614 0.4240 +558 6615 0.5160 +558 6714 0.9830 +558 6772 0.6720 +558 6774 0.5470 +558 6850 0.5550 +558 7003 0.4230 +558 7040 0.4930 +558 7042 0.6490 +558 7045 0.6020 +558 7057 0.6700 +558 7098 0.4080 +558 7124 0.5150 +558 7145 0.6410 +558 7157 0.5220 +558 7287 0.7060 +558 7291 0.4200 +558 7299 0.5640 +558 7301 0.6490 +558 7409 0.6000 +558 7410 0.5430 +558 7412 0.4890 +558 7414 0.4870 +558 7424 0.4230 +558 7431 0.4390 +558 7450 0.4360 +558 7474 0.6300 +558 7534 0.6070 +558 7837 0.4100 +558 8061 0.4830 +558 8530 0.4080 +558 8651 0.8430 +558 8743 0.4410 +558 8829 0.4870 +558 9021 0.7430 +558 9047 0.5350 +558 9332 0.4480 +558 9567 0.5890 +558 9839 0.4130 +558 10048 0.8750 +558 10188 0.5340 +558 10273 0.4650 +558 10413 0.7010 +558 10451 0.5380 +558 10461 0.5180 +558 23371 0.9100 +558 23476 0.4860 +558 25759 0.9050 +558 27122 0.5560 +558 27436 0.4130 +558 29126 0.5840 +558 30835 0.7120 +558 51421 0.4090 +558 51454 0.4220 +558 53358 0.9070 +558 54209 0.5970 +558 55576 0.4820 +558 59272 0.4030 +558 60675 0.4100 +558 63916 0.7080 +558 64581 0.4020 +558 64805 0.6130 +558 84466 0.4880 +558 84868 0.4050 +558 84955 0.6250 +558 91937 0.6360 +558 128674 0.4290 +558 136991 0.5290 +558 140885 0.4600 +558 255738 0.4440 +558 284119 0.4600 +558 338773 0.6300 +558 339390 0.4940 +558 389289 0.4850 +558 399694 0.9100 +563 567 0.7090 +563 629 0.4410 +563 633 0.5470 +563 725 0.4410 +563 735 0.5030 +563 765 0.5850 +563 866 0.5160 +563 922 0.4030 +563 1149 0.4990 +563 1191 0.4970 +563 1356 0.5070 +563 1469 0.6240 +563 1470 0.5510 +563 1472 0.6800 +563 1473 0.4900 +563 1757 0.4440 +563 1893 0.5660 +563 1915 0.4070 +563 2167 0.5700 +563 2244 0.5750 +563 2266 0.6320 +563 2267 0.4970 +563 2335 0.5220 +563 2638 0.8230 +563 2734 0.4350 +563 2934 0.4160 +563 3053 0.5960 +563 3240 0.7820 +563 3249 0.5190 +563 3263 0.7840 +563 3273 0.7040 +563 3426 0.5400 +563 3685 0.4170 +563 3700 0.6220 +563 3817 0.4280 +563 3818 0.5030 +563 3827 0.4490 +563 3933 0.6450 +563 3959 0.4330 +563 3991 0.4370 +563 4036 0.4440 +563 4057 0.5750 +563 4069 0.4340 +563 4256 0.4230 +563 4477 0.7090 +563 4685 0.4110 +563 4946 0.4580 +563 5004 0.7870 +563 5005 0.7150 +563 5125 0.4220 +563 5216 0.4270 +563 5265 0.6740 +563 5268 0.4070 +563 5284 0.6870 +563 5304 0.9990 +563 5364 0.4070 +563 5444 0.4800 +563 5950 0.7460 +563 6168 0.4740 +563 6279 0.4920 +563 6291 0.5250 +563 6406 0.6010 +563 6407 0.5070 +563 6652 0.4370 +563 6716 0.6330 +563 6779 0.4390 +563 7018 0.5690 +563 7053 0.4410 +563 7099 0.4650 +563 7113 0.5420 +563 7276 0.4650 +563 7369 0.4370 +563 8455 0.5720 +563 8542 0.4360 +563 8614 0.4760 +563 8635 0.4050 +563 8895 0.4510 +563 9159 0.4240 +563 9370 0.4560 +563 10342 0.4140 +563 10598 0.4050 +563 10648 0.4500 +563 11001 0.4130 +563 11272 0.4870 +563 22853 0.4260 +563 23301 0.4240 +563 23600 0.5430 +563 27232 0.5600 +563 54532 0.5040 +563 57104 0.4270 +563 60528 0.4240 +563 84569 0.5070 +563 85414 0.5940 +563 90070 0.4750 +563 114770 0.5190 +563 116844 0.4500 +563 117159 0.4210 +563 124220 0.4010 +563 145483 0.5090 +563 220965 0.5710 +563 221895 0.4220 +563 374378 0.4790 +563 374897 0.4260 +563 400793 0.4440 +566 671 0.9510 +566 820 0.7650 +566 932 0.7800 +566 1088 0.8470 +566 1311 0.5370 +566 1356 0.4800 +566 1401 0.4240 +566 1511 0.9770 +566 1667 0.4930 +566 1668 0.4300 +566 1669 0.8550 +566 1950 0.4310 +566 1991 0.9990 +566 2246 0.5670 +566 2247 0.4160 +566 2258 0.4220 +566 2487 0.4250 +566 3068 0.7420 +566 3240 0.5340 +566 3273 0.4110 +566 3491 0.6780 +566 3689 0.5650 +566 3934 0.5210 +566 4036 0.5030 +566 4043 0.4890 +566 4057 0.8360 +566 4069 0.5910 +566 4184 0.6490 +566 4192 0.7320 +566 4317 0.6050 +566 4318 0.5990 +566 4353 0.9990 +566 4580 0.5490 +566 4680 0.4710 +566 5196 0.5710 +566 5197 0.5490 +566 5199 0.4320 +566 5267 0.7100 +566 5657 0.9990 +566 5764 0.8020 +566 5806 0.5600 +566 6036 0.6910 +566 6037 0.9210 +566 6271 0.4510 +566 6275 0.4170 +566 6280 0.6180 +566 6283 0.5820 +566 6382 0.5270 +566 6414 0.6770 +566 6422 0.4250 +566 6423 0.4930 +566 6425 0.5410 +566 6455 0.6850 +566 6456 0.7870 +566 6590 0.5590 +566 7040 0.4720 +566 7058 0.4540 +566 7059 0.6120 +566 7097 0.4970 +566 7099 0.5890 +566 7448 0.4960 +566 8993 0.6420 +566 55914 0.4200 +566 56729 0.4300 +566 79699 0.4200 +566 84823 0.5560 +566 114880 0.4200 +566 154150 0.4340 +567 595 0.4540 +567 596 0.5100 +567 604 0.5010 +567 627 0.5910 +567 657 0.5830 +567 658 0.5650 +567 695 0.7000 +567 696 0.4300 +567 710 0.5630 +567 718 0.4180 +567 796 0.4610 +567 811 0.9990 +567 821 0.8530 +567 834 0.4630 +567 836 0.4270 +567 857 0.5110 +567 909 0.9990 +567 910 0.9990 +567 911 0.9990 +567 912 0.9990 +567 913 0.8680 +567 914 0.6430 +567 915 0.9280 +567 916 0.9350 +567 917 0.9430 +567 919 0.9770 +567 920 0.7550 +567 921 0.6920 +567 923 0.4130 +567 925 0.9980 +567 926 0.8110 +567 930 0.5930 +567 933 0.4460 +567 939 0.4240 +567 940 0.5020 +567 941 0.9390 +567 942 0.6030 +567 945 0.4340 +567 947 0.6900 +567 952 0.6180 +567 958 0.4680 +567 959 0.4100 +567 960 0.6170 +567 961 0.4970 +567 962 0.6200 +567 965 0.6260 +567 968 0.4820 +567 969 0.4650 +567 972 0.8080 +567 973 0.4310 +567 974 0.6370 +567 1019 0.4040 +567 1029 0.4230 +567 1043 0.4490 +567 1048 0.6970 +567 1073 0.4250 +567 1104 0.6450 +567 1184 0.6400 +567 1191 0.5160 +567 1234 0.4230 +567 1236 0.4090 +567 1277 0.4040 +567 1387 0.5570 +567 1401 0.8480 +567 1437 0.4910 +567 1440 0.4090 +567 1471 0.9500 +567 1476 0.6070 +567 1493 0.5620 +567 1499 0.4190 +567 1520 0.6900 +567 1536 0.4540 +567 1636 0.4400 +567 1672 0.4850 +567 1763 0.4570 +567 1915 0.6070 +567 1950 0.4380 +567 1956 0.4460 +567 1991 0.4820 +567 2023 0.4540 +567 2028 0.4070 +567 2033 0.5370 +567 2056 0.4180 +567 2064 0.4120 +567 2086 0.6340 +567 2168 0.6450 +567 2209 0.4610 +567 2212 0.5480 +567 2217 0.9990 +567 2243 0.5430 +567 2247 0.4120 +567 2266 0.4590 +567 2335 0.4570 +567 2353 0.4140 +567 2495 0.4280 +567 2512 0.5940 +567 2534 0.5810 +567 2597 0.8000 +567 2633 0.4790 +567 2634 0.4870 +567 2638 0.6090 +567 2688 0.8150 +567 2717 0.4060 +567 2796 0.4460 +567 2875 0.4730 +567 2885 0.6320 +567 2923 0.9990 +567 2934 0.6160 +567 2956 0.6490 +567 2990 0.7330 +567 2995 0.8320 +567 3001 0.4290 +567 3002 0.4790 +567 3014 0.5690 +567 3021 0.4390 +567 3077 0.9990 +567 3091 0.4310 +567 3105 0.9990 +567 3106 0.9990 +567 3107 0.9990 +567 3108 0.8380 +567 3109 0.7850 +567 3111 0.7570 +567 3112 0.7610 +567 3113 0.7960 +567 3115 0.7660 +567 3117 0.6080 +567 3118 0.5890 +567 3119 0.6390 +567 3120 0.5890 +567 3122 0.8900 +567 3123 0.8260 +567 3127 0.6000 +567 3133 0.9990 +567 3134 0.9990 +567 3135 0.9990 +567 3140 0.9880 +567 3145 0.6910 +567 3183 0.8180 +567 3240 0.6670 +567 3251 0.7380 +567 3309 0.6480 +567 3320 0.4180 +567 3326 0.5130 +567 3339 0.5710 +567 3375 0.7540 +567 3383 0.6770 +567 3394 0.6190 +567 3434 0.4190 +567 3437 0.4440 +567 3439 0.5130 +567 3456 0.4450 +567 3458 0.6880 +567 3459 0.4040 +567 3479 0.4160 +567 3552 0.4560 +567 3553 0.6260 +567 3558 0.5880 +567 3565 0.5220 +567 3567 0.4050 +567 3569 0.6630 +567 3574 0.4280 +567 3576 0.7220 +567 3586 0.6910 +567 3600 0.4720 +567 3605 0.4520 +567 3606 0.4970 +567 3620 0.4480 +567 3627 0.5430 +567 3630 0.8330 +567 3659 0.5810 +567 3662 0.4040 +567 3683 0.4400 +567 3684 0.6390 +567 3685 0.4990 +567 3687 0.4990 +567 3707 0.4930 +567 3716 0.5500 +567 3717 0.5110 +567 3802 0.7770 +567 3804 0.9200 +567 3805 0.6680 +567 3811 0.9830 +567 3812 0.6460 +567 3815 0.4320 +567 3821 0.9900 +567 3822 0.9010 +567 3823 0.6100 +567 3824 0.9800 +567 3838 0.4340 +567 3845 0.4370 +567 3902 0.4990 +567 3934 0.7420 +567 3937 0.6210 +567 3952 0.5910 +567 4012 0.5980 +567 4036 0.7560 +567 4046 0.8320 +567 4057 0.6390 +567 4069 0.7490 +567 4137 0.4310 +567 4151 0.5050 +567 4171 0.4840 +567 4174 0.4760 +567 4179 0.5100 +567 4240 0.4990 +567 4261 0.6090 +567 4277 0.7910 +567 4283 0.4640 +567 4311 0.4470 +567 4318 0.4060 +567 4353 0.4140 +567 4436 0.4640 +567 4502 0.5730 +567 4508 0.4160 +567 4599 0.4600 +567 4609 0.5140 +567 4684 0.5520 +567 4790 0.4780 +567 4792 0.4010 +567 4851 0.6280 +567 4878 0.5450 +567 4891 0.4740 +567 4938 0.4330 +567 4939 0.4040 +567 4946 0.5460 +567 4948 0.4180 +567 5004 0.5890 +567 5005 0.5850 +567 5034 0.5090 +567 5111 0.7700 +567 5118 0.6460 +567 5133 0.5240 +567 5175 0.4860 +567 5230 0.5760 +567 5265 0.5220 +567 5290 0.6340 +567 5291 0.5430 +567 5295 0.5940 +567 5296 0.5160 +567 5335 0.5570 +567 5336 0.6110 +567 5426 0.4070 +567 5473 0.4730 +567 5478 0.5520 +567 5479 0.4150 +567 5551 0.5100 +567 5552 0.6340 +567 5558 0.4450 +567 5617 0.5810 +567 5621 0.4230 +567 5660 0.4970 +567 5696 0.8110 +567 5698 0.7210 +567 5699 0.5260 +567 5720 0.5460 +567 5721 0.6340 +567 5728 0.4160 +567 5730 0.5470 +567 5741 0.5720 +567 5788 0.6690 +567 5879 0.5940 +567 5888 0.4280 +567 5893 0.5780 +567 5903 0.7080 +567 5905 0.7550 +567 5966 0.4740 +567 5982 0.5900 +567 5983 0.4650 +567 5984 0.4080 +567 5994 0.4100 +567 6117 0.8820 +567 6119 0.5120 +567 6124 0.4740 +567 6125 0.7500 +567 6143 0.5520 +567 6155 0.4390 +567 6156 0.4520 +567 6161 0.5010 +567 6175 0.7220 +567 6176 0.5550 +567 6203 0.4610 +567 6222 0.5460 +567 6233 0.4310 +567 6240 0.6280 +567 6241 0.4730 +567 6288 0.6270 +567 6347 0.5360 +567 6348 0.4520 +567 6351 0.6230 +567 6364 0.4590 +567 6382 0.5420 +567 6387 0.4100 +567 6389 0.6520 +567 6396 0.5340 +567 6402 0.4430 +567 6406 0.4740 +567 6464 0.5190 +567 6550 0.4630 +567 6622 0.6530 +567 6654 0.5560 +567 6696 0.6400 +567 6741 0.4980 +567 6772 0.8050 +567 6774 0.4980 +567 6778 0.5850 +567 6850 0.6190 +567 6890 0.9840 +567 6891 0.9600 +567 6892 0.9990 +567 6908 0.7220 +567 7018 0.7770 +567 7033 0.6370 +567 7036 0.8630 +567 7037 0.9980 +567 7040 0.4730 +567 7045 0.5250 +567 7070 0.5360 +567 7076 0.5980 +567 7082 0.4700 +567 7084 0.5110 +567 7097 0.4280 +567 7098 0.4140 +567 7099 0.4540 +567 7114 0.6230 +567 7124 0.6450 +567 7128 0.4540 +567 7157 0.5820 +567 7189 0.4470 +567 7247 0.4910 +567 7276 0.9680 +567 7298 0.4410 +567 7305 0.8090 +567 7316 0.5910 +567 7329 0.7410 +567 7369 0.5260 +567 7410 0.5240 +567 7412 0.5020 +567 7431 0.4370 +567 7525 0.4230 +567 7534 0.6660 +567 7535 0.7330 +567 7837 0.6750 +567 7852 0.5860 +567 8029 0.5660 +567 8290 0.4150 +567 8302 0.4150 +567 8356 0.4240 +567 8673 0.5480 +567 8764 0.4210 +567 8773 0.5770 +567 9168 0.4900 +567 9172 0.6220 +567 9332 0.4720 +567 9341 0.5350 +567 9367 0.8110 +567 9402 0.5400 +567 9436 0.4100 +567 9445 0.5760 +567 9466 0.8130 +567 9518 0.5760 +567 9519 0.4760 +567 9601 0.4110 +567 9632 0.4990 +567 9636 0.4730 +567 9787 0.6210 +567 9871 0.5100 +567 9976 0.4720 +567 10148 0.4250 +567 10288 0.9940 +567 10379 0.4350 +567 10384 0.5030 +567 10385 0.4370 +567 10427 0.5170 +567 10451 0.5540 +567 10484 0.5170 +567 10526 0.4520 +567 10561 0.4610 +567 10673 0.4440 +567 10724 0.7900 +567 10802 0.5110 +567 10859 0.9990 +567 10917 0.4100 +567 10990 0.6190 +567 11006 0.6520 +567 11024 0.6230 +567 11025 0.5740 +567 11027 0.6030 +567 11118 0.5270 +567 11119 0.5120 +567 11120 0.4530 +567 11126 0.5900 +567 11314 0.4460 +567 22872 0.5070 +567 22914 0.8050 +567 23118 0.4010 +567 23306 0.6930 +567 23457 0.5830 +567 23521 0.7500 +567 23547 0.6080 +567 23558 0.4190 +567 27040 0.5340 +567 27122 0.4530 +567 27294 0.5840 +567 27348 0.4030 +567 29126 0.6280 +567 29927 0.4690 +567 30009 0.4010 +567 30816 0.6410 +567 50484 0.4830 +567 50943 0.4490 +567 51128 0.5300 +567 51744 0.4470 +567 51752 0.5210 +567 54209 0.5440 +567 54959 0.4170 +567 55080 0.9370 +567 55957 0.4690 +567 63892 0.4010 +567 64005 0.4530 +567 64135 0.6270 +567 64167 0.6500 +567 79168 0.5940 +567 79465 0.7200 +567 79901 0.5440 +567 79908 0.4230 +567 80328 0.7340 +567 80329 0.7320 +567 80380 0.4940 +567 80781 0.4830 +567 84166 0.5370 +567 84293 0.4510 +567 84569 0.5280 +567 84868 0.5290 +567 84896 0.4460 +567 85407 0.4520 +567 89790 0.5260 +567 113246 0.6580 +567 114625 0.4250 +567 135250 0.4720 +567 137902 0.6760 +567 140885 0.4030 +567 146722 0.4400 +567 148738 0.7770 +567 153579 0.4260 +567 154064 0.4340 +567 254528 0.6460 +567 353091 0.4760 +567 353514 0.5380 +567 405754 0.6330 +567 440093 0.4170 +567 440686 0.4150 +567 653604 0.4170 +567 728378 0.7890 +567 729857 0.6200 +567 100423062 0.9340 +567 100507436 0.4530 +567 102723407 0.7120 +570 706 0.5560 +570 1045 0.5030 +570 1244 0.6840 +570 1581 0.6990 +570 1582 0.7470 +570 1593 0.6370 +570 2052 0.6480 +570 2172 0.4280 +570 2571 0.9050 +570 2572 0.9040 +570 2597 0.4180 +570 2686 0.9000 +570 2687 0.9000 +570 2998 0.5160 +570 3295 0.7570 +570 5192 0.5780 +570 5194 0.5430 +570 5195 0.5280 +570 5205 0.6280 +570 5244 0.5790 +570 5828 0.5260 +570 5830 0.6210 +570 6233 0.5230 +570 6342 0.9560 +570 6554 0.6540 +570 6555 0.5200 +570 6579 0.4370 +570 6718 0.7520 +570 6822 0.5130 +570 7111 0.8140 +570 7311 0.4990 +570 7314 0.5230 +570 7316 0.5230 +570 7321 0.5060 +570 7322 0.5060 +570 7323 0.5060 +570 7507 0.6490 +570 8309 0.6680 +570 8431 0.6050 +570 8647 0.7010 +570 8856 0.4440 +570 9413 0.6440 +570 9414 0.8440 +570 9420 0.6280 +570 9970 0.4350 +570 9971 0.6410 +570 10005 0.9420 +570 10249 0.8930 +570 10599 0.5030 +570 10998 0.9870 +570 23600 0.5040 +570 51179 0.4220 +570 51302 0.5780 +570 51380 0.9290 +570 60386 0.5480 +570 64240 0.5090 +570 64241 0.4630 +570 80270 0.6250 +570 80347 0.4330 +570 117531 0.6500 +570 123264 0.5840 +570 124975 0.9060 +570 200931 0.5790 +570 219743 0.5720 +571 672 0.5630 +571 1386 0.6530 +571 1452 0.4530 +571 1649 0.5510 +571 1994 0.4490 +571 3065 0.5860 +571 3161 0.8810 +571 3162 0.8730 +571 3218 0.4030 +571 4094 0.8680 +571 4097 0.8940 +571 4780 0.4040 +571 6233 0.5070 +571 6500 0.6820 +571 6502 0.5040 +571 7157 0.6920 +571 7311 0.4990 +571 7314 0.5210 +571 7316 0.5100 +571 7514 0.8620 +571 7975 0.9890 +571 8454 0.5960 +571 9586 0.7300 +571 9935 0.7660 +571 9978 0.6650 +571 10739 0.4220 +571 11016 0.6890 +571 23764 0.9130 +571 25962 0.4220 +571 26263 0.7590 +571 55509 0.4180 +571 57614 0.5690 +571 60468 0.5060 +571 64839 0.9800 +571 81610 0.5200 +571 192111 0.4120 +571 548593 0.4200 +572 578 0.7290 +572 581 0.8630 +572 596 0.9990 +572 597 0.6800 +572 598 0.9990 +572 599 0.9330 +572 637 0.8320 +572 638 0.4860 +572 666 0.6360 +572 673 0.4200 +572 835 0.4520 +572 836 0.5760 +572 841 0.4750 +572 842 0.5770 +572 2475 0.4160 +572 2549 0.4540 +572 2645 0.5560 +572 2810 0.9140 +572 3725 0.4070 +572 4170 0.8140 +572 4803 0.5590 +572 4804 0.5150 +572 5058 0.6570 +572 5170 0.5760 +572 5366 0.4790 +572 5500 0.4080 +572 5530 0.9000 +572 5532 0.9000 +572 5533 0.9060 +572 5534 0.9000 +572 5566 0.9710 +572 5567 0.9360 +572 5568 0.9260 +572 5592 0.9010 +572 5593 0.9000 +572 5594 0.9170 +572 5595 0.9320 +572 5599 0.9590 +572 5601 0.9060 +572 5604 0.9200 +572 5879 0.5650 +572 5894 0.9850 +572 6195 0.5370 +572 6196 0.4790 +572 6281 0.6190 +572 6622 0.4180 +572 7132 0.4910 +572 7157 0.4770 +572 7159 0.7740 +572 7529 0.9820 +572 7531 0.9800 +572 7532 0.9400 +572 7533 0.9750 +572 7534 0.9890 +572 8408 0.4140 +572 8678 0.4560 +572 8739 0.4470 +572 8936 0.5670 +572 9500 0.5180 +572 10000 0.9200 +572 10017 0.8440 +572 10018 0.9180 +572 10971 0.9840 +572 11040 0.4600 +572 27113 0.5430 +572 54205 0.5100 +572 55967 0.6290 +572 79680 0.6170 +572 90427 0.5270 +573 596 0.9960 +573 597 0.5960 +573 598 0.6730 +573 673 0.6420 +573 1080 0.6050 +573 1515 0.5400 +573 1982 0.4190 +573 2099 0.8310 +573 2242 0.4240 +573 2288 0.4230 +573 2580 0.4110 +573 2886 0.4790 +573 2908 0.8300 +573 3064 0.6060 +573 3082 0.4140 +573 3297 0.5830 +573 3300 0.6170 +573 3301 0.6420 +573 3303 0.7860 +573 3304 0.9710 +573 3305 0.7270 +573 3306 0.7470 +573 3308 0.9990 +573 3309 0.7100 +573 3310 0.8320 +573 3312 0.9990 +573 3313 0.7100 +573 3320 0.8820 +573 3326 0.8760 +573 3337 0.9910 +573 4137 0.5110 +573 4170 0.4080 +573 4233 0.6160 +573 4320 0.4040 +573 4489 0.4910 +573 4605 0.4330 +573 4671 0.4490 +573 4741 0.4220 +573 5093 0.5590 +573 5241 0.4200 +573 5700 0.7390 +573 5704 0.4660 +573 5707 0.5940 +573 5708 0.8200 +573 5710 0.5710 +573 5711 0.6060 +573 5714 0.4600 +573 5716 0.4200 +573 5719 0.4450 +573 5894 0.9390 +573 6154 0.4080 +573 6449 0.4970 +573 6477 0.7630 +573 6622 0.5600 +573 6767 0.8960 +573 6782 0.6040 +573 7132 0.4080 +573 7157 0.7540 +573 7159 0.6330 +573 7812 0.4290 +573 8079 0.5130 +573 8266 0.5820 +573 8504 0.4780 +573 8532 0.4760 +573 8934 0.4900 +573 9528 0.5140 +573 9529 0.9180 +573 9530 0.9000 +573 9531 0.9670 +573 9532 0.9970 +573 9861 0.4020 +573 9973 0.4290 +573 10049 0.4550 +573 10273 0.9630 +573 10294 0.4040 +573 10525 0.4560 +573 10598 0.6550 +573 10728 0.5590 +573 10808 0.9540 +573 10963 0.7710 +573 11047 0.5060 +573 11080 0.6650 +573 11315 0.4500 +573 22824 0.9360 +573 23640 0.9730 +573 25789 0.4940 +573 25897 0.4240 +573 26046 0.5600 +573 26353 0.5700 +573 51182 0.6440 +573 51510 0.4050 +573 51608 0.7450 +573 54905 0.4510 +573 55062 0.5090 +573 57758 0.5740 +573 79705 0.5320 +573 80227 0.4330 +573 80273 0.7790 +573 116835 0.5890 +573 259217 0.6040 +575 948 0.6860 +575 949 0.6870 +575 950 0.6820 +575 976 0.4840 +575 1081 0.4280 +575 1285 0.4220 +575 1398 0.7350 +575 1434 0.6090 +575 1741 0.4450 +575 1742 0.6710 +575 1793 0.9590 +575 1984 0.5400 +575 2162 0.5090 +575 2175 0.4380 +575 2621 0.6540 +575 2778 0.4010 +575 3837 0.6220 +575 3842 0.4830 +575 4035 0.4060 +575 4240 0.6250 +575 4973 0.4080 +575 5877 0.4450 +575 5879 0.5330 +575 5902 0.5250 +575 5903 0.9000 +575 5905 0.7000 +575 6343 0.4430 +575 7074 0.6890 +575 7099 0.4370 +575 7301 0.5860 +575 8578 0.4310 +575 8938 0.8670 +575 9223 0.7870 +575 9648 0.5250 +575 9693 0.5130 +575 9796 0.5600 +575 9844 0.9320 +575 9972 0.4850 +575 10163 0.5040 +575 10204 0.4280 +575 10241 0.4930 +575 10458 0.9810 +575 10461 0.6190 +575 10762 0.4860 +575 11059 0.4220 +575 11260 0.6360 +575 11346 0.4040 +575 22871 0.4140 +575 23166 0.5140 +575 23210 0.4760 +575 29098 0.5780 +575 29933 0.4200 +575 30000 0.4860 +575 51454 0.7170 +575 54209 0.4520 +575 55113 0.5130 +575 55576 0.8620 +575 55764 0.7620 +575 56648 0.5400 +575 63916 0.9880 +575 65078 0.8200 +575 79767 0.6990 +575 81492 0.4050 +575 84220 0.5250 +575 84466 0.6760 +575 91937 0.8520 +575 124599 0.4180 +575 143244 0.5400 +575 146722 0.5400 +575 200726 0.4280 +575 203062 0.4060 +575 286410 0.4570 +575 389827 0.4220 +575 653489 0.5250 +575 729540 0.5250 +576 1081 0.4280 +576 1434 0.6090 +576 1793 0.6860 +576 1984 0.5400 +576 2175 0.4280 +576 2695 0.4870 +576 2774 0.4030 +576 3837 0.6220 +576 3842 0.4830 +576 5902 0.5250 +576 5903 0.9000 +576 5905 0.7000 +576 9223 0.6930 +576 9648 0.5250 +576 9844 0.4170 +576 9972 0.4850 +576 10204 0.4280 +576 10762 0.4860 +576 11260 0.6360 +576 27239 0.4140 +576 29098 0.5780 +576 30000 0.4830 +576 53942 0.4440 +576 56648 0.5400 +576 65078 0.4640 +576 84220 0.5250 +576 143244 0.5400 +576 284615 0.4630 +576 387509 0.4190 +576 653489 0.5250 +576 729540 0.5250 +577 869 0.5880 +577 1081 0.4280 +577 1434 0.6090 +577 1501 0.4230 +577 1793 0.6820 +577 1984 0.5400 +577 2042 0.5040 +577 2175 0.4280 +577 2775 0.5840 +577 2778 0.6840 +577 2895 0.4330 +577 2918 0.7300 +577 3837 0.6220 +577 3842 0.4830 +577 3845 0.4220 +577 4978 0.5210 +577 5789 0.5700 +577 5902 0.5250 +577 5903 0.9000 +577 5905 0.7000 +577 6416 0.4550 +577 8802 0.4650 +577 9223 0.4350 +577 9289 0.5120 +577 9378 0.5000 +577 9648 0.5250 +577 9844 0.7210 +577 9972 0.4850 +577 10204 0.4280 +577 10762 0.4860 +577 10882 0.8030 +577 11260 0.6360 +577 23284 0.4880 +577 29098 0.5780 +577 30000 0.4830 +577 53353 0.5560 +577 55576 0.6670 +577 56648 0.5400 +577 63916 0.4240 +577 65078 0.4740 +577 84220 0.5250 +577 143244 0.5400 +577 165257 0.6320 +577 253559 0.4180 +577 338761 0.4900 +577 389827 0.4920 +577 389941 0.8330 +577 653489 0.5250 +577 653641 0.4250 +577 729540 0.5250 +577 101929726 0.4180 +578 581 0.9960 +578 596 0.9990 +578 597 0.9830 +578 598 0.9990 +578 599 0.9590 +578 637 0.9990 +578 638 0.7990 +578 664 0.4280 +578 666 0.5820 +578 727 0.7200 +578 729 0.7200 +578 730 0.7200 +578 731 0.7200 +578 732 0.7240 +578 733 0.5450 +578 735 0.7200 +578 823 0.9480 +578 824 0.9150 +578 834 0.4140 +578 835 0.4460 +578 836 0.6660 +578 838 0.4150 +578 839 0.6680 +578 840 0.5450 +578 841 0.6320 +578 842 0.6640 +578 843 0.4090 +578 947 0.7560 +578 1026 0.4350 +578 1761 0.6260 +578 2081 0.7690 +578 3006 0.4480 +578 3484 0.4770 +578 3487 0.4450 +578 3763 0.6720 +578 3815 0.5250 +578 4170 0.9980 +578 4254 0.5510 +578 4301 0.7200 +578 4540 0.4110 +578 5366 0.8230 +578 5499 0.4490 +578 5599 0.4760 +578 5607 0.4320 +578 6687 0.7430 +578 6925 0.4020 +578 7009 0.9180 +578 7019 0.5130 +578 7157 0.9970 +578 7161 0.4940 +578 7186 0.7270 +578 7416 0.8990 +578 7417 0.8820 +578 7419 0.6060 +578 7494 0.5070 +578 8575 0.4150 +578 8678 0.7610 +578 8717 0.4390 +578 8739 0.5270 +578 8772 0.5750 +578 8837 0.4550 +578 9131 0.4220 +578 9551 0.4260 +578 9927 0.7800 +578 10017 0.7590 +578 10018 0.9980 +578 10105 0.7940 +578 10452 0.6880 +578 27113 0.9230 +578 29108 0.5140 +578 51248 0.7220 +578 51805 0.4180 +578 54205 0.9750 +578 54543 0.6360 +578 55669 0.7870 +578 55729 0.4470 +578 63933 0.4200 +578 79680 0.6070 +578 81037 0.4170 +578 81848 0.5060 +578 83447 0.7360 +578 84134 0.5850 +578 85462 0.4470 +578 90427 0.6350 +578 94241 0.4210 +578 117159 0.5400 +578 144100 0.7200 +578 222662 0.6380 +578 340348 0.7210 +578 441925 0.4810 +578 100529063 0.5530 +579 652 0.4610 +579 860 0.8820 +579 861 0.5020 +579 865 0.5320 +579 1280 0.4870 +579 1298 0.4630 +579 1300 0.5270 +579 1746 0.4710 +579 1749 0.5930 +579 1750 0.5980 +579 1906 0.4420 +579 1958 0.4270 +579 2070 0.4270 +579 2138 0.5620 +579 2294 0.5430 +579 2295 0.5040 +579 3065 0.6350 +579 3199 0.5110 +579 3381 0.4690 +579 3549 0.4630 +579 3908 0.5180 +579 4005 0.4200 +579 4089 0.7270 +579 4488 0.6090 +579 5075 0.6710 +579 5083 0.6460 +579 6299 0.6530 +579 6442 0.4240 +579 6469 0.5970 +579 6660 0.5250 +579 6662 0.6230 +579 6772 0.5280 +579 6939 0.5260 +579 6943 0.7950 +579 6949 0.6210 +579 8200 0.4770 +579 9242 0.6890 +579 9464 0.7310 +579 10273 0.5140 +579 11059 0.4990 +579 25942 0.6320 +579 55553 0.6410 +579 56033 0.6520 +579 56180 0.4210 +579 59269 0.5950 +579 157848 0.4150 +580 602 0.6010 +580 641 0.7180 +580 648 0.9240 +580 657 0.5340 +580 672 0.9990 +580 675 0.9990 +580 688 0.4290 +580 699 0.4480 +580 701 0.8380 +580 983 0.6270 +580 991 0.7030 +580 996 0.9140 +580 1017 0.7600 +580 1019 0.5030 +580 1026 0.5300 +580 1107 0.4290 +580 1111 0.8950 +580 1477 0.9970 +580 1478 0.7390 +580 1479 0.5970 +580 1643 0.5000 +580 1660 0.5050 +580 1763 0.7760 +580 1789 0.4940 +580 1857 0.4190 +580 1911 0.9050 +580 1912 0.9010 +580 2064 0.4570 +580 2067 0.6660 +580 2068 0.6330 +580 2072 0.6410 +580 2073 0.4130 +580 2099 0.8860 +580 2130 0.4560 +580 2175 0.6510 +580 2176 0.7420 +580 2177 0.7830 +580 2178 0.7910 +580 2187 0.4050 +580 2188 0.4860 +580 2189 0.6990 +580 2237 0.4960 +580 2547 0.9360 +580 2956 0.9250 +580 3012 0.9810 +580 3013 0.5330 +580 3014 0.8670 +580 3017 0.5770 +580 3018 0.7720 +580 3093 0.4650 +580 3161 0.5910 +580 3364 0.6540 +580 3607 0.5020 +580 3725 0.5690 +580 3845 0.4150 +580 3852 0.4730 +580 3861 0.4640 +580 3958 0.5930 +580 3981 0.5590 +580 4004 0.6380 +580 4072 0.4800 +580 4089 0.4160 +580 4193 0.8210 +580 4288 0.4340 +580 4292 0.7840 +580 4361 0.9990 +580 4436 0.8050 +580 4437 0.6260 +580 4595 0.6960 +580 4683 0.9980 +580 4763 0.5880 +580 4869 0.6610 +580 4893 0.5620 +580 4913 0.4020 +580 5073 0.6720 +580 5111 0.6610 +580 5241 0.6030 +580 5347 0.4240 +580 5378 0.6980 +580 5395 0.7380 +580 5424 0.7480 +580 5425 0.4510 +580 5426 0.7870 +580 5427 0.5740 +580 5429 0.4730 +580 5437 0.6200 +580 5520 0.4300 +580 5591 0.4930 +580 5728 0.6000 +580 5810 0.6000 +580 5883 0.7110 +580 5884 0.6280 +580 5888 0.9990 +580 5889 0.9670 +580 5890 0.8560 +580 5892 0.9400 +580 5893 0.8050 +580 5927 0.4540 +580 5932 0.9990 +580 5965 0.5390 +580 5981 0.5710 +580 5982 0.6380 +580 5983 0.6230 +580 5984 0.6410 +580 5985 0.6300 +580 6015 0.9260 +580 6045 0.9800 +580 6047 0.6190 +580 6117 0.7500 +580 6118 0.6340 +580 6119 0.6520 +580 6233 0.9530 +580 6502 0.4460 +580 6595 0.4410 +580 6597 0.4260 +580 6598 0.4850 +580 6613 0.7210 +580 6732 0.4280 +580 6790 0.6980 +580 6794 0.6410 +580 6867 0.4910 +580 6905 0.4280 +580 7013 0.4140 +580 7014 0.4180 +580 7015 0.4240 +580 7124 0.4460 +580 7153 0.5070 +580 7155 0.4760 +580 7156 0.6230 +580 7157 0.9820 +580 7158 0.8680 +580 7311 0.9530 +580 7314 0.9540 +580 7316 0.9700 +580 7321 0.9530 +580 7322 0.5360 +580 7323 0.9830 +580 7324 0.5040 +580 7325 0.4720 +580 7329 0.6540 +580 7332 0.6020 +580 7334 0.8030 +580 7336 0.6630 +580 7337 0.4890 +580 7398 0.4530 +580 7415 0.4290 +580 7465 0.4120 +580 7468 0.5990 +580 7486 0.8250 +580 7507 0.4100 +580 7515 0.4500 +580 7516 0.8880 +580 7517 0.9050 +580 7518 0.4210 +580 7520 0.8220 +580 7703 0.9100 +580 7979 0.7900 +580 8243 0.4680 +580 8289 0.5400 +580 8290 0.6510 +580 8294 0.9070 +580 8295 0.4580 +580 8314 0.9940 +580 8315 0.7120 +580 8318 0.4020 +580 8329 0.9530 +580 8330 0.9060 +580 8331 0.5450 +580 8332 0.9080 +580 8334 0.9510 +580 8335 0.9090 +580 8336 0.9120 +580 8337 0.7440 +580 8338 0.8690 +580 8340 0.5840 +580 8341 0.5740 +580 8342 0.5740 +580 8345 0.5830 +580 8347 0.5890 +580 8348 0.5870 +580 8349 0.9780 +580 8350 0.9460 +580 8351 0.9110 +580 8352 0.9140 +580 8353 0.9130 +580 8354 0.9110 +580 8355 0.9120 +580 8356 0.9350 +580 8357 0.9140 +580 8358 0.9160 +580 8359 0.9070 +580 8360 0.9070 +580 8361 0.9810 +580 8362 0.9070 +580 8363 0.9070 +580 8364 0.9130 +580 8366 0.9100 +580 8367 0.9070 +580 8368 0.9090 +580 8369 0.5480 +580 8370 0.9070 +580 8438 0.7040 +580 8505 0.6250 +580 8535 0.9030 +580 8554 0.5500 +580 8697 0.9130 +580 8861 0.4450 +580 8881 0.9200 +580 8900 0.6030 +580 8924 0.7060 +580 8929 0.4490 +580 8968 0.9110 +580 8969 0.9080 +580 8970 0.9560 +580 9025 0.9080 +580 9079 0.4760 +580 9134 0.5270 +580 9156 0.8580 +580 9212 0.8780 +580 9401 0.4320 +580 9500 0.4210 +580 9555 0.5010 +580 9577 0.9990 +580 9616 0.5150 +580 9656 0.9540 +580 9735 0.4530 +580 9768 0.4770 +580 9817 0.6110 +580 9958 0.6440 +580 9978 0.4630 +580 10038 0.5210 +580 10062 0.5190 +580 10111 0.9970 +580 10336 0.5400 +580 10393 0.9040 +580 10477 0.4610 +580 10524 0.6400 +580 10635 0.6570 +580 10714 0.5730 +580 10933 0.4560 +580 10951 0.6110 +580 11065 0.9360 +580 11073 0.9980 +580 11200 0.9370 +580 11266 0.5920 +580 11335 0.7380 +580 22827 0.4300 +580 22974 0.6900 +580 22976 0.7630 +580 23064 0.4630 +580 23468 0.4940 +580 23492 0.7200 +580 23514 0.4990 +580 25788 0.4670 +580 25847 0.9020 +580 25885 0.4770 +580 25906 0.9010 +580 25920 0.4460 +580 26271 0.5040 +580 26585 0.4080 +580 27030 0.4320 +580 27338 0.9610 +580 29086 0.9980 +580 29089 0.6550 +580 29789 0.9580 +580 29882 0.9160 +580 29945 0.9160 +580 50485 0.4010 +580 50945 0.4160 +580 51035 0.7060 +580 51144 0.5230 +580 51239 0.5810 +580 51343 0.6130 +580 51426 0.5040 +580 51433 0.9150 +580 51434 0.9060 +580 51529 0.9170 +580 51588 0.7890 +580 51720 0.9990 +580 51750 0.5940 +580 51755 0.5980 +580 54069 0.4350 +580 54107 0.4910 +580 54145 0.5740 +580 54514 0.4230 +580 54880 0.9050 +580 55120 0.6400 +580 55183 0.6460 +580 55215 0.6200 +580 55284 0.6460 +580 55388 0.4760 +580 55723 0.5210 +580 56655 0.4180 +580 56852 0.5250 +580 56916 0.5030 +580 56946 0.4220 +580 56992 0.4890 +580 57332 0.9090 +580 57697 0.7130 +580 59348 0.4970 +580 60561 0.4930 +580 63967 0.4850 +580 64421 0.6170 +580 64682 0.9100 +580 79184 0.9990 +580 79728 0.9870 +580 79915 0.4240 +580 80010 0.6640 +580 80012 0.9000 +580 80198 0.7110 +580 83695 0.5790 +580 83990 0.9990 +580 84057 0.6890 +580 84108 0.9010 +580 84126 0.6750 +580 84142 0.9990 +580 84260 0.5590 +580 84333 0.5400 +580 84464 0.7340 +580 84733 0.9040 +580 84759 0.5680 +580 85235 0.5450 +580 85236 0.9550 +580 91607 0.5320 +580 92815 0.5330 +580 93611 0.4620 +580 116028 0.6200 +580 119504 0.9030 +580 121504 0.9070 +580 126961 0.8190 +580 128312 0.5740 +580 133396 0.4700 +580 140459 0.5530 +580 144715 0.5760 +580 146956 0.7050 +580 165918 0.8210 +580 166979 0.5990 +580 171023 0.5460 +580 197342 0.5710 +580 221613 0.5330 +580 246184 0.9070 +580 253714 0.4350 +580 255626 0.5720 +580 317772 0.5330 +580 333932 0.8190 +580 348654 0.7000 +580 353497 0.4120 +580 389421 0.5120 +580 548593 0.6270 +580 554313 0.9070 +580 653604 0.8610 +580 100533467 0.4060 +581 595 0.5520 +581 596 0.9990 +581 597 0.5320 +581 598 0.9990 +581 599 0.9300 +581 627 0.4640 +581 637 0.9980 +581 638 0.7470 +581 706 0.7190 +581 727 0.7200 +581 729 0.7200 +581 730 0.7200 +581 731 0.7200 +581 732 0.7240 +581 733 0.5400 +581 735 0.7200 +581 823 0.9160 +581 824 0.9120 +581 834 0.4690 +581 835 0.4470 +581 836 0.8840 +581 839 0.4730 +581 840 0.6680 +581 841 0.8530 +581 842 0.8560 +581 843 0.4130 +581 860 0.7950 +581 865 0.7530 +581 885 0.4800 +581 891 0.4250 +581 947 0.7660 +581 1017 0.4150 +581 1019 0.4270 +581 1026 0.5050 +581 1033 0.5350 +581 1191 0.8860 +581 1499 0.4110 +581 1649 0.5550 +581 1728 0.4090 +581 1760 0.5070 +581 1791 0.5830 +581 1956 0.4180 +581 2021 0.4810 +581 2081 0.8150 +581 2475 0.5340 +581 2547 0.9720 +581 2597 0.7350 +581 2706 0.6670 +581 2810 0.8210 +581 2877 0.5180 +581 2878 0.5140 +581 2880 0.5280 +581 2882 0.5260 +581 2932 0.5760 +581 3091 0.4470 +581 3098 0.9040 +581 3099 0.9190 +581 3101 0.9010 +581 3162 0.7290 +581 3308 0.5470 +581 3309 0.4790 +581 3329 0.4110 +581 3553 0.5500 +581 3569 0.5150 +581 3661 0.8800 +581 3725 0.5600 +581 3738 0.5100 +581 4130 0.4430 +581 4170 0.9990 +581 4193 0.4590 +581 4217 0.6620 +581 4301 0.7200 +581 4318 0.4480 +581 4437 0.4500 +581 4609 0.4150 +581 4780 0.5490 +581 5071 0.9400 +581 5366 0.9030 +581 5566 0.9240 +581 5567 0.9230 +581 5568 0.9230 +581 5595 0.5150 +581 5599 0.5800 +581 5728 0.4420 +581 5743 0.6640 +581 6183 0.7740 +581 6591 0.5160 +581 6622 0.5130 +581 6687 0.7260 +581 6774 0.4700 +581 7009 0.9600 +581 7040 0.4400 +581 7124 0.5030 +581 7132 0.4020 +581 7157 0.9940 +581 7159 0.5400 +581 7161 0.5610 +581 7186 0.6060 +581 7405 0.5970 +581 7416 0.9830 +581 7417 0.6420 +581 7419 0.6150 +581 7494 0.4130 +581 7837 0.5810 +581 8562 0.4130 +581 8626 0.5510 +581 8678 0.7260 +581 8717 0.4010 +581 8772 0.5030 +581 8795 0.4710 +581 8837 0.4760 +581 9131 0.9290 +581 9451 0.4430 +581 9474 0.4260 +581 9817 0.4030 +581 9927 0.4310 +581 10017 0.7130 +581 10018 0.9980 +581 10059 0.6760 +581 10105 0.9310 +581 10452 0.6890 +581 10536 0.5400 +581 10971 0.7920 +581 11315 0.4150 +581 22926 0.4470 +581 23368 0.5090 +581 23411 0.9420 +581 25920 0.7560 +581 27113 0.9510 +581 29108 0.5560 +581 51100 0.6490 +581 51248 0.7220 +581 54205 0.9930 +581 55669 0.4190 +581 56993 0.5420 +581 79680 0.5710 +581 79784 0.7500 +581 80201 0.9010 +581 81631 0.4080 +581 83447 0.7360 +581 84134 0.5500 +581 90427 0.4720 +581 117159 0.5400 +581 137902 0.5780 +581 144100 0.7200 +581 255488 0.4270 +581 257202 0.5230 +581 340348 0.7200 +581 440603 0.4810 +581 441925 0.5480 +581 493869 0.5230 +581 100529063 0.5560 +582 583 0.9990 +582 585 0.9990 +582 1068 0.6310 +582 1639 0.6300 +582 2847 0.9100 +582 3832 0.6270 +582 3952 0.5470 +582 3953 0.8720 +582 4085 0.4740 +582 4218 0.9430 +582 4867 0.7180 +582 5108 0.8530 +582 5116 0.5200 +582 5310 0.7060 +582 5311 0.5060 +582 5341 0.5500 +582 5443 0.5610 +582 5727 0.8390 +582 5877 0.7790 +582 5880 0.7210 +582 5989 0.4460 +582 6010 0.4330 +582 6045 0.4840 +582 6047 0.4020 +582 6103 0.5870 +582 6608 0.8840 +582 6753 0.9170 +582 6950 0.4260 +582 7251 0.4660 +582 7399 0.5630 +582 7442 0.5530 +582 7481 0.4790 +582 7840 0.7130 +582 8100 0.8450 +582 8195 0.6160 +582 8481 0.6640 +582 9055 0.5180 +582 9371 0.4770 +582 9657 0.6510 +582 9738 0.4720 +582 9742 0.7290 +582 10324 0.5060 +582 10540 0.4210 +582 10576 0.4320 +582 10694 0.4360 +582 10806 0.7000 +582 10938 0.4140 +582 11020 0.8070 +582 11127 0.6230 +582 11315 0.5410 +582 22852 0.5290 +582 22897 0.4170 +582 22924 0.4510 +582 22954 0.7340 +582 23059 0.6080 +582 23322 0.6700 +582 23432 0.4500 +582 26005 0.4160 +582 26121 0.4290 +582 26146 0.4930 +582 26160 0.8140 +582 27031 0.7470 +582 27077 0.5090 +582 27130 0.5320 +582 27241 0.9990 +582 28981 0.5460 +582 51057 0.7960 +582 51098 0.7590 +582 51199 0.5130 +582 51259 0.5480 +582 51668 0.4350 +582 54585 0.9720 +582 54806 0.5340 +582 54903 0.8820 +582 55063 0.6160 +582 55081 0.6070 +582 55212 0.9990 +582 55764 0.6050 +582 55812 0.4240 +582 56912 0.5730 +582 57096 0.4870 +582 57539 0.4880 +582 57545 0.5740 +582 57560 0.6350 +582 57576 0.5600 +582 57728 0.8690 +582 64792 0.4440 +582 79140 0.8980 +582 79600 0.5180 +582 79659 0.5690 +582 79738 0.9820 +582 79809 0.6230 +582 79867 0.5060 +582 79902 0.4290 +582 79989 0.4850 +582 80173 0.6090 +582 80184 0.9210 +582 80776 0.4940 +582 81029 0.4580 +582 83857 0.4270 +582 84100 0.9480 +582 84229 0.4190 +582 84662 0.7150 +582 90410 0.6730 +582 91147 0.8010 +582 92482 0.9990 +582 112752 0.6270 +582 117177 0.9980 +582 129880 0.9990 +582 131377 0.4090 +582 145226 0.4250 +582 152098 0.6130 +582 157657 0.6130 +582 161003 0.6890 +582 166379 0.9630 +582 200894 0.5630 +582 261734 0.6640 +582 346007 0.4290 +582 374654 0.5280 +583 585 0.9990 +583 1915 0.4030 +583 2847 0.8910 +583 3652 0.4020 +583 3952 0.5780 +583 3953 0.5850 +583 4188 0.6060 +583 4218 0.8250 +583 4832 0.6790 +583 4867 0.6530 +583 5108 0.7550 +583 5310 0.4640 +583 5311 0.4880 +583 5341 0.5540 +583 5443 0.5850 +583 5877 0.5850 +583 5880 0.7050 +583 5989 0.4760 +583 6010 0.4240 +583 6045 0.4910 +583 6103 0.4790 +583 6608 0.7010 +583 6753 0.8880 +583 6950 0.4860 +583 7203 0.4680 +583 7287 0.4150 +583 7399 0.4330 +583 7442 0.5520 +583 7840 0.6310 +583 8100 0.8180 +583 8195 0.7750 +583 8310 0.4570 +583 8481 0.5560 +583 9371 0.4400 +583 9657 0.6170 +583 9742 0.6370 +583 10197 0.5260 +583 10324 0.4060 +583 10575 0.4130 +583 10576 0.6000 +583 10694 0.4500 +583 10806 0.6440 +583 11020 0.7130 +583 11127 0.5580 +583 22948 0.4170 +583 22954 0.7280 +583 23059 0.7670 +583 23322 0.7320 +583 23568 0.4050 +583 25970 0.4660 +583 26005 0.4120 +583 26146 0.5010 +583 26160 0.7080 +583 27031 0.7630 +583 27241 0.9990 +583 28981 0.5890 +583 51057 0.7990 +583 51090 0.6360 +583 51098 0.5280 +583 51259 0.4450 +583 51626 0.4490 +583 54585 0.9840 +583 54806 0.6140 +583 54903 0.8710 +583 55081 0.5550 +583 55212 0.9990 +583 55764 0.5450 +583 56912 0.5540 +583 57096 0.5110 +583 57539 0.5270 +583 57545 0.5860 +583 57560 0.6320 +583 57728 0.6050 +583 64792 0.5180 +583 79140 0.7990 +583 79600 0.4550 +583 79659 0.4590 +583 79738 0.9870 +583 79809 0.5760 +583 79867 0.4050 +583 80173 0.6060 +583 80184 0.8740 +583 84100 0.8050 +583 90410 0.6260 +583 91147 0.7650 +583 91754 0.4140 +583 92482 0.9990 +583 94137 0.4020 +583 112752 0.4680 +583 117177 0.9320 +583 129880 0.9990 +583 145226 0.4380 +583 150737 0.4020 +583 157657 0.6140 +583 161003 0.5950 +583 166379 0.9650 +583 200894 0.5550 +583 261734 0.5320 +583 284086 0.4600 +585 1069 0.4340 +585 1639 0.8900 +585 2847 0.8850 +585 3036 0.4200 +585 3037 0.4200 +585 3038 0.4200 +585 3952 0.5810 +585 3953 0.5690 +585 4218 0.8380 +585 4538 0.4720 +585 4649 0.6140 +585 4692 0.5440 +585 4832 0.8050 +585 4867 0.6630 +585 5108 0.9870 +585 5116 0.5820 +585 5310 0.4700 +585 5311 0.4950 +585 5341 0.5360 +585 5443 0.5910 +585 5708 0.4090 +585 5710 0.6860 +585 5877 0.6240 +585 5880 0.6710 +585 5989 0.5440 +585 6103 0.4440 +585 6247 0.5050 +585 6491 0.4470 +585 6608 0.6930 +585 6753 0.8740 +585 6790 0.4550 +585 6950 0.4880 +585 7203 0.4770 +585 7251 0.5120 +585 7289 0.4280 +585 7442 0.5560 +585 7840 0.6330 +585 8100 0.5650 +585 8195 0.5320 +585 8481 0.8170 +585 9371 0.4560 +585 9475 0.4230 +585 9527 0.4170 +585 9657 0.6580 +585 9696 0.6250 +585 9738 0.5090 +585 9742 0.6900 +585 9786 0.4400 +585 9859 0.4270 +585 10121 0.4200 +585 10324 0.4300 +585 10464 0.4190 +585 10575 0.4540 +585 10576 0.4740 +585 10694 0.5160 +585 10733 0.5200 +585 10806 0.6720 +585 11020 0.6840 +585 11127 0.7020 +585 22832 0.4090 +585 22897 0.5680 +585 22948 0.4620 +585 22954 0.7050 +585 22994 0.6620 +585 23059 0.5400 +585 23247 0.4190 +585 23322 0.7520 +585 26005 0.4700 +585 26146 0.5610 +585 26160 0.6970 +585 27031 0.7560 +585 27130 0.5540 +585 27185 0.8280 +585 27241 0.9990 +585 28981 0.7160 +585 29945 0.4080 +585 51057 0.7660 +585 51098 0.6960 +585 51134 0.4060 +585 51175 0.5110 +585 51199 0.5770 +585 51259 0.4590 +585 51668 0.5670 +585 54551 0.5660 +585 54585 0.9760 +585 54806 0.5560 +585 54875 0.4340 +585 54903 0.8010 +585 55015 0.4080 +585 55081 0.6540 +585 55125 0.4960 +585 55212 0.9990 +585 55722 0.5280 +585 55764 0.6580 +585 56912 0.5980 +585 57096 0.4420 +585 57539 0.4120 +585 57545 0.4600 +585 57560 0.6580 +585 57728 0.5990 +585 79140 0.9070 +585 79600 0.4110 +585 79659 0.5030 +585 79738 0.9690 +585 79809 0.6680 +585 79867 0.4620 +585 79989 0.5650 +585 80173 0.7430 +585 80184 0.9310 +585 81565 0.4180 +585 84100 0.7990 +585 84902 0.4010 +585 90410 0.7460 +585 91147 0.7340 +585 91754 0.4420 +585 92482 0.9990 +585 112752 0.5350 +585 117177 0.9670 +585 117178 0.4380 +585 123169 0.4840 +585 129880 0.9990 +585 132320 0.4090 +585 150737 0.4420 +585 152206 0.4300 +585 157657 0.4930 +585 161003 0.7060 +585 163786 0.5440 +585 166379 0.9640 +585 197335 0.4820 +585 200894 0.6140 +585 203286 0.4240 +585 261734 0.6290 +585 284086 0.5100 +585 374654 0.5050 +585 388939 0.4780 +586 587 0.9070 +586 593 0.9850 +586 594 0.9890 +586 635 0.4010 +586 875 0.4180 +586 883 0.4520 +586 1431 0.4380 +586 1491 0.9480 +586 1499 0.4050 +586 1629 0.7120 +586 1723 0.4570 +586 1737 0.5750 +586 1738 0.5900 +586 1743 0.5470 +586 2180 0.4750 +586 2271 0.4230 +586 2356 0.8700 +586 2597 0.4270 +586 2618 0.4160 +586 2729 0.9110 +586 2730 0.9130 +586 2731 0.5260 +586 2746 0.5990 +586 2747 0.5180 +586 2752 0.5530 +586 2805 0.4730 +586 2806 0.4310 +586 2821 0.4010 +586 2875 0.4850 +586 2936 0.5190 +586 3141 0.4220 +586 3155 0.8200 +586 3417 0.7090 +586 3418 0.6460 +586 3419 0.4230 +586 3420 0.4220 +586 3421 0.4170 +586 3948 0.8330 +586 4033 0.4260 +586 4143 0.6700 +586 4144 0.6670 +586 4522 0.4380 +586 4524 0.4080 +586 4548 0.4760 +586 4609 0.5580 +586 4817 0.4330 +586 4942 0.4300 +586 4953 0.4240 +586 5091 0.4390 +586 5096 0.4110 +586 5162 0.7590 +586 5315 0.4080 +586 5471 0.4160 +586 5723 0.6290 +586 5832 0.7290 +586 6390 0.4150 +586 6470 0.5620 +586 6472 0.5340 +586 6898 0.5130 +586 7068 0.5480 +586 7083 0.4110 +586 7296 0.5050 +586 7298 0.6300 +586 7357 0.4820 +586 7915 0.4270 +586 8050 0.5560 +586 8140 0.5090 +586 8424 0.6160 +586 8458 0.4690 +586 8659 0.4220 +586 8875 0.4160 +586 8876 0.4320 +586 9380 0.8680 +586 9497 0.4380 +586 9563 0.4680 +586 9673 0.4300 +586 10295 0.5940 +586 10320 0.4820 +586 10449 0.4380 +586 10587 0.5030 +586 10797 0.4630 +586 10801 0.4770 +586 10993 0.9120 +586 10994 0.7530 +586 11112 0.5740 +586 23057 0.4020 +586 23743 0.4410 +586 25902 0.4170 +586 26061 0.7530 +586 26227 0.5200 +586 26275 0.4030 +586 29968 0.6530 +586 51166 0.8890 +586 51733 0.4490 +586 54511 0.8110 +586 54995 0.5010 +586 55217 0.6080 +586 55256 0.4430 +586 55258 0.4250 +586 56954 0.4740 +586 63826 0.4710 +586 64902 0.9340 +586 79896 0.4250 +586 79944 0.4840 +586 84167 0.4540 +586 84245 0.4100 +586 84706 0.5390 +586 92483 0.8330 +586 113675 0.9090 +586 114112 0.4920 +586 124540 0.6280 +586 132949 0.4680 +586 152926 0.4070 +586 160287 0.8300 +586 160428 0.4140 +586 162417 0.4010 +586 219927 0.4020 +586 259307 0.9250 +586 284323 0.4240 +587 593 0.9970 +587 594 0.9970 +587 883 0.4850 +587 1431 0.4610 +587 1491 0.9440 +587 1629 0.7760 +587 1723 0.4620 +587 1737 0.5780 +587 1738 0.6400 +587 1743 0.6720 +587 1892 0.4290 +587 2110 0.4470 +587 2356 0.8730 +587 2475 0.4530 +587 2729 0.9050 +587 2730 0.9080 +587 2731 0.5010 +587 2746 0.6160 +587 2747 0.4750 +587 2752 0.5760 +587 2806 0.4410 +587 2821 0.4670 +587 2875 0.5260 +587 2936 0.5070 +587 3032 0.5110 +587 3033 0.4910 +587 3141 0.4420 +587 3155 0.8430 +587 3329 0.4210 +587 3417 0.5820 +587 3418 0.5670 +587 3419 0.4740 +587 3420 0.5350 +587 3421 0.4560 +587 3712 0.5370 +587 3948 0.8300 +587 4093 0.4260 +587 4143 0.6590 +587 4144 0.6590 +587 4200 0.4930 +587 4329 0.5120 +587 4522 0.4120 +587 4535 0.4290 +587 4548 0.4660 +587 4609 0.4140 +587 4713 0.4080 +587 4722 0.4800 +587 4728 0.4910 +587 4817 0.5950 +587 4942 0.4520 +587 5091 0.4280 +587 5095 0.4710 +587 5096 0.5250 +587 5162 0.7360 +587 5471 0.4080 +587 5625 0.4930 +587 5723 0.5330 +587 5832 0.7410 +587 6389 0.4910 +587 6390 0.6380 +587 6391 0.5250 +587 6470 0.5130 +587 6472 0.5400 +587 6898 0.5160 +587 7068 0.5430 +587 7296 0.4910 +587 7298 0.5380 +587 7357 0.4480 +587 7915 0.4070 +587 8050 0.6080 +587 8140 0.4840 +587 8424 0.6160 +587 8458 0.4630 +587 8659 0.4550 +587 8802 0.4300 +587 8875 0.4160 +587 8876 0.4160 +587 9380 0.8740 +587 9563 0.5360 +587 9673 0.5140 +587 10005 0.4290 +587 10295 0.7520 +587 10449 0.4400 +587 10587 0.5000 +587 10840 0.4130 +587 10993 0.9060 +587 10994 0.7900 +587 11112 0.6580 +587 11322 0.4480 +587 23395 0.4760 +587 23409 0.4150 +587 23743 0.4020 +587 26061 0.7580 +587 26227 0.4540 +587 26275 0.4840 +587 27034 0.4440 +587 28999 0.6010 +587 29968 0.5640 +587 50808 0.4300 +587 51102 0.5620 +587 51166 0.8940 +587 51733 0.4160 +587 54511 0.7960 +587 54995 0.6230 +587 55217 0.6880 +587 55256 0.4460 +587 55258 0.4220 +587 56922 0.4840 +587 56954 0.4550 +587 63826 0.4700 +587 64087 0.5060 +587 64902 0.9310 +587 79896 0.4330 +587 79944 0.4810 +587 80347 0.4030 +587 84245 0.4210 +587 84693 0.4550 +587 84706 0.5860 +587 84869 0.4530 +587 92483 0.8300 +587 113675 0.8980 +587 114112 0.4900 +587 132949 0.5120 +587 137362 0.4010 +587 152926 0.6240 +587 160287 0.8300 +587 162417 0.4550 +587 196483 0.5940 +587 219927 0.4090 +587 259307 0.9220 +587 285148 0.4540 +590 627 0.5590 +590 642 0.4440 +590 759 0.4530 +590 836 0.4130 +590 957 0.4260 +590 1103 0.8710 +590 1128 0.4300 +590 1135 0.4080 +590 1145 0.6200 +590 1146 0.4810 +590 1191 0.5230 +590 1312 0.4970 +590 1356 0.5910 +590 1401 0.7390 +590 1471 0.4120 +590 1509 0.4350 +590 1565 0.6250 +590 1576 0.4640 +590 1591 0.4550 +590 1636 0.4890 +590 1690 0.6600 +590 2147 0.7060 +590 2159 0.4630 +590 2703 0.4470 +590 2720 0.4260 +590 2875 0.8290 +590 2877 0.4690 +590 2878 0.4810 +590 2880 0.4810 +590 2882 0.5000 +590 2932 0.4430 +590 3060 0.5220 +590 3240 0.5560 +590 3273 0.4670 +590 3290 0.4490 +590 3350 0.4350 +590 3416 0.4600 +590 3479 0.5770 +590 3481 0.4420 +590 3486 0.4470 +590 3553 0.4610 +590 3569 0.6570 +590 3630 0.5140 +590 4057 0.5060 +590 4128 0.7620 +590 4129 0.8090 +590 4133 0.5130 +590 4137 0.7120 +590 4353 0.5450 +590 4493 0.4020 +590 4593 0.7480 +590 4700 0.4400 +590 4803 0.4540 +590 5444 0.7990 +590 5446 0.4310 +590 5594 0.4610 +590 5625 0.5650 +590 5663 0.6120 +590 5664 0.5190 +590 5743 0.4110 +590 5913 0.7170 +590 6476 0.7760 +590 6531 0.4750 +590 6572 0.6590 +590 6622 0.5940 +590 7124 0.4500 +590 7276 0.6080 +590 7299 0.6590 +590 7402 0.4130 +590 7498 0.6160 +590 8292 0.9810 +590 8621 0.5030 +590 8972 0.7760 +590 9360 0.4180 +590 9378 0.4900 +590 9379 0.4800 +590 9446 0.4010 +590 10558 0.5780 +590 10858 0.4920 +590 10908 0.5330 +590 11255 0.5750 +590 22871 0.4060 +590 23435 0.4010 +590 23621 0.7410 +590 23705 0.4270 +590 51738 0.8660 +590 55188 0.4370 +590 55505 0.4080 +590 60482 0.4630 +590 60626 0.5980 +590 65059 0.6170 +590 66004 0.4030 +590 79608 0.6450 +590 84706 0.5090 +590 114799 0.4480 +590 145270 0.7170 +590 157570 0.4570 +590 220074 0.4260 +590 257202 0.4810 +590 283871 0.4400 +590 285489 0.7980 +590 375790 0.5970 +590 493869 0.5080 +593 594 0.9990 +593 1431 0.8930 +593 1491 0.8200 +593 1629 0.9990 +593 1737 0.9450 +593 1738 0.9990 +593 1743 0.9630 +593 1891 0.4300 +593 1892 0.5200 +593 1938 0.4280 +593 2108 0.4070 +593 2109 0.4390 +593 2110 0.4660 +593 2203 0.6550 +593 2271 0.5780 +593 2597 0.6470 +593 2639 0.6100 +593 2653 0.7040 +593 2731 0.4280 +593 2746 0.6630 +593 2747 0.6040 +593 2821 0.8740 +593 2936 0.7710 +593 3030 0.5860 +593 3032 0.4240 +593 3033 0.4420 +593 3155 0.5860 +593 3329 0.5440 +593 3336 0.5060 +593 3417 0.4770 +593 3418 0.4950 +593 3419 0.7140 +593 3420 0.7170 +593 3421 0.7150 +593 3712 0.8200 +593 3948 0.9220 +593 4191 0.4380 +593 4199 0.5820 +593 4200 0.6170 +593 4329 0.5000 +593 4513 0.5220 +593 4668 0.4400 +593 4723 0.4640 +593 4967 0.8790 +593 5019 0.4920 +593 5095 0.7230 +593 5096 0.8910 +593 5161 0.5510 +593 5162 0.9990 +593 5211 0.4260 +593 5213 0.4250 +593 5214 0.4330 +593 5245 0.4320 +593 5313 0.5440 +593 5315 0.5650 +593 5423 0.6260 +593 6120 0.6750 +593 6389 0.4950 +593 6390 0.4630 +593 6391 0.4130 +593 6652 0.4280 +593 6672 0.4590 +593 6821 0.4170 +593 6888 0.8670 +593 7086 0.5060 +593 7284 0.4440 +593 7296 0.7700 +593 7384 0.4270 +593 8050 0.9510 +593 8192 0.4050 +593 8277 0.4880 +593 8789 0.6460 +593 8801 0.7170 +593 8802 0.7750 +593 8803 0.7580 +593 9399 0.4010 +593 9563 0.4020 +593 9673 0.4410 +593 9942 0.8020 +593 10295 0.9360 +593 10449 0.4940 +593 10587 0.7710 +593 10873 0.5730 +593 10993 0.8260 +593 10994 0.7440 +593 11112 0.5180 +593 22934 0.8440 +593 23600 0.4270 +593 23774 0.4210 +593 25974 0.4210 +593 26061 0.7730 +593 26275 0.4920 +593 26276 0.4390 +593 26330 0.5620 +593 27034 0.6470 +593 27154 0.4200 +593 28976 0.4630 +593 51497 0.4600 +593 51592 0.4210 +593 51601 0.7290 +593 54884 0.5980 +593 55526 0.6770 +593 55753 0.7410 +593 56915 0.4060 +593 56922 0.7100 +593 56965 0.5390 +593 57469 0.5620 +593 64064 0.4550 +593 64087 0.8460 +593 64146 0.4450 +593 64902 0.8180 +593 79668 0.5390 +593 79944 0.4120 +593 83451 0.4090 +593 84076 0.4910 +593 84263 0.4320 +593 84693 0.4890 +593 84795 0.5980 +593 87769 0.7690 +593 92259 0.7260 +593 92483 0.9220 +593 113675 0.8270 +593 114112 0.7690 +593 152926 0.9650 +593 160287 0.9220 +593 259307 0.9090 +593 326625 0.5240 +593 374291 0.4490 +593 387787 0.4050 +593 729020 0.6750 +594 829 0.9000 +594 830 0.9000 +594 1431 0.8940 +594 1491 0.8400 +594 1629 0.9990 +594 1737 0.9680 +594 1738 0.9990 +594 1743 0.9680 +594 1892 0.4360 +594 1962 0.4140 +594 2053 0.4900 +594 2108 0.6280 +594 2110 0.5980 +594 2203 0.7060 +594 2271 0.6400 +594 2597 0.5990 +594 2639 0.5770 +594 2653 0.7330 +594 2731 0.5060 +594 2746 0.6330 +594 2747 0.5670 +594 2821 0.8660 +594 2936 0.8310 +594 3030 0.4350 +594 3032 0.4420 +594 3033 0.4880 +594 3155 0.4900 +594 3295 0.4030 +594 3329 0.5640 +594 3336 0.5210 +594 3417 0.4510 +594 3418 0.4230 +594 3419 0.7930 +594 3420 0.7410 +594 3421 0.7200 +594 3712 0.7330 +594 3948 0.9270 +594 4199 0.5050 +594 4200 0.5100 +594 4329 0.6270 +594 4512 0.4500 +594 4513 0.4510 +594 4698 0.4510 +594 4712 0.4150 +594 4722 0.4510 +594 4723 0.4010 +594 4728 0.4760 +594 4967 0.8190 +594 5019 0.5220 +594 5091 0.4600 +594 5095 0.8720 +594 5096 0.8870 +594 5161 0.9850 +594 5162 0.5710 +594 5211 0.4120 +594 5213 0.4280 +594 5214 0.4260 +594 5313 0.5550 +594 5315 0.5720 +594 5423 0.6470 +594 5631 0.5970 +594 5634 0.5950 +594 5635 0.6130 +594 5636 0.6020 +594 5860 0.4050 +594 6120 0.6820 +594 6342 0.4510 +594 6389 0.5510 +594 6390 0.5930 +594 6391 0.5310 +594 6652 0.4450 +594 6672 0.4360 +594 6888 0.8660 +594 7167 0.4490 +594 7181 0.4300 +594 7284 0.4580 +594 7296 0.8300 +594 7384 0.4230 +594 7386 0.4110 +594 8050 0.9690 +594 8310 0.4470 +594 8789 0.7060 +594 8801 0.7460 +594 8802 0.8330 +594 8803 0.7930 +594 9551 0.4560 +594 9563 0.4630 +594 9942 0.7960 +594 10106 0.4060 +594 10295 0.8510 +594 10449 0.4510 +594 10587 0.8310 +594 10873 0.4940 +594 10993 0.8260 +594 10994 0.7080 +594 11112 0.6230 +594 22934 0.8350 +594 23530 0.4460 +594 23774 0.4210 +594 25974 0.4190 +594 26061 0.7120 +594 26275 0.6100 +594 26330 0.5690 +594 27034 0.6680 +594 28976 0.4250 +594 51011 0.4140 +594 51102 0.4450 +594 51497 0.5130 +594 51592 0.4210 +594 51601 0.7550 +594 54808 0.4660 +594 54884 0.5910 +594 54995 0.4440 +594 55171 0.4910 +594 55291 0.4020 +594 55526 0.7760 +594 55753 0.7650 +594 55854 0.7260 +594 56922 0.7720 +594 56965 0.5540 +594 57469 0.5690 +594 57719 0.4210 +594 64087 0.8390 +594 64399 0.4080 +594 64802 0.4250 +594 64902 0.8470 +594 79668 0.5550 +594 79731 0.4060 +594 79863 0.4560 +594 79944 0.4740 +594 81577 0.4690 +594 84263 0.4780 +594 84693 0.4550 +594 84795 0.5880 +594 84950 0.4010 +594 90407 0.4220 +594 92259 0.5650 +594 92483 0.9260 +594 113675 0.8290 +594 114112 0.8300 +594 130752 0.4100 +594 137872 0.4780 +594 152926 0.9620 +594 160287 0.9260 +594 169200 0.4150 +594 200879 0.4100 +594 221294 0.4370 +594 221823 0.5910 +594 259307 0.9070 +594 440026 0.4150 +594 729020 0.6930 +595 596 0.9580 +595 597 0.5770 +595 598 0.8080 +595 599 0.4440 +595 602 0.4770 +595 604 0.8700 +595 648 0.6160 +595 650 0.4220 +595 652 0.4970 +595 655 0.4310 +595 664 0.7020 +595 672 0.9220 +595 673 0.8640 +595 675 0.8610 +595 688 0.4490 +595 695 0.4510 +595 699 0.5930 +595 835 0.4080 +595 836 0.8470 +595 840 0.5830 +595 841 0.6870 +595 842 0.8440 +595 857 0.5580 +595 860 0.8190 +595 861 0.7330 +595 864 0.8550 +595 865 0.5520 +595 885 0.7940 +595 891 0.7970 +595 892 0.4260 +595 894 0.9420 +595 896 0.9390 +595 898 0.8410 +595 901 0.5100 +595 920 0.7810 +595 921 0.8220 +595 925 0.4800 +595 930 0.5050 +595 933 0.4160 +595 943 0.5130 +595 947 0.5640 +595 952 0.4460 +595 958 0.5500 +595 960 0.6960 +595 973 0.5820 +595 983 0.9980 +595 990 0.5970 +595 991 0.5360 +595 993 0.9700 +595 994 0.7070 +595 995 0.6380 +595 996 0.4790 +595 999 0.8510 +595 1000 0.7260 +595 1015 0.5220 +595 1017 0.9990 +595 1018 0.7380 +595 1019 0.9990 +595 1020 0.8850 +595 1021 0.9990 +595 1022 0.7200 +595 1024 0.6240 +595 1025 0.5690 +595 1026 0.9990 +595 1027 0.9990 +595 1028 0.9940 +595 1029 0.9980 +595 1030 0.9740 +595 1031 0.9890 +595 1032 0.9520 +595 1033 0.6800 +595 1050 0.6270 +595 1051 0.6210 +595 1052 0.5710 +595 1062 0.4250 +595 1104 0.5990 +595 1111 0.5930 +595 1119 0.5270 +595 1147 0.5400 +595 1163 0.8920 +595 1277 0.4510 +595 1312 0.4750 +595 1316 0.7280 +595 1380 0.4440 +595 1385 0.9490 +595 1386 0.7440 +595 1387 0.9860 +595 1410 0.5720 +595 1432 0.5760 +595 1447 0.5330 +595 1452 0.5240 +595 1454 0.4840 +595 1457 0.5460 +595 1459 0.5700 +595 1487 0.5850 +595 1490 0.5980 +595 1499 0.9720 +595 1500 0.4540 +595 1543 0.4210 +595 1588 0.7120 +595 1592 0.4550 +595 1647 0.5210 +595 1728 0.4320 +595 1786 0.6250 +595 1788 0.7080 +595 1789 0.6290 +595 1791 0.5850 +595 1848 0.4060 +595 1855 0.6180 +595 1856 0.5080 +595 1857 0.4190 +595 1869 0.9380 +595 1870 0.8710 +595 1871 0.8800 +595 1874 0.8350 +595 1875 0.8060 +595 1876 0.4060 +595 1877 0.4650 +595 1950 0.7310 +595 1956 0.8410 +595 1958 0.5180 +595 1969 0.4120 +595 1973 0.4030 +595 1977 0.6370 +595 1978 0.5920 +595 1981 0.4330 +595 1994 0.9460 +595 2017 0.6840 +595 2033 0.9740 +595 2034 0.5070 +595 2064 0.9040 +595 2065 0.6060 +595 2066 0.5340 +595 2099 0.9970 +595 2100 0.6790 +595 2113 0.4320 +595 2118 0.4200 +595 2130 0.4610 +595 2146 0.6230 +595 2194 0.6600 +595 2195 0.5000 +595 2247 0.6510 +595 2248 0.5910 +595 2249 0.6830 +595 2250 0.4630 +595 2251 0.4630 +595 2252 0.4950 +595 2253 0.4810 +595 2254 0.4960 +595 2255 0.4950 +595 2258 0.4790 +595 2260 0.6270 +595 2261 0.6330 +595 2263 0.6790 +595 2264 0.4130 +595 2272 0.4250 +595 2280 0.5470 +595 2305 0.7250 +595 2308 0.8360 +595 2309 0.7560 +595 2316 0.5810 +595 2321 0.4550 +595 2322 0.4270 +595 2335 0.7430 +595 2353 0.9420 +595 2475 0.8020 +595 2487 0.4300 +595 2535 0.4880 +595 2597 0.8190 +595 2623 0.4310 +595 2625 0.8480 +595 2626 0.4380 +595 2627 0.4420 +595 2648 0.6650 +595 2670 0.4690 +595 2697 0.5840 +595 2735 0.6330 +595 2736 0.5880 +595 2737 0.4890 +595 2885 0.6580 +595 2908 0.4070 +595 2931 0.5210 +595 2932 0.9870 +595 2956 0.4690 +595 3005 0.4400 +595 3012 0.4990 +595 3013 0.4990 +595 3014 0.7350 +595 3015 0.5740 +595 3017 0.5820 +595 3018 0.5810 +595 3021 0.8270 +595 3065 0.8330 +595 3066 0.6610 +595 3082 0.5260 +595 3091 0.8760 +595 3162 0.4640 +595 3169 0.8320 +595 3172 0.7730 +595 3184 0.5860 +595 3265 0.7470 +595 3276 0.4060 +595 3308 0.6580 +595 3309 0.4600 +595 3312 0.9450 +595 3320 0.8190 +595 3326 0.7110 +595 3383 0.4990 +595 3397 0.4450 +595 3417 0.4310 +595 3458 0.4880 +595 3479 0.6480 +595 3480 0.6760 +595 3481 0.5460 +595 3486 0.5510 +595 3488 0.5920 +595 3491 0.5170 +595 3516 0.7110 +595 3549 0.4630 +595 3551 0.5280 +595 3552 0.4630 +595 3553 0.6050 +595 3554 0.4300 +595 3558 0.5950 +595 3569 0.7630 +595 3576 0.5210 +595 3586 0.5630 +595 3611 0.4360 +595 3630 0.6560 +595 3642 0.8200 +595 3655 0.5690 +595 3662 0.4180 +595 3667 0.6840 +595 3678 0.5800 +595 3688 0.5130 +595 3714 0.4540 +595 3716 0.5170 +595 3717 0.8520 +595 3720 0.5230 +595 3725 0.9190 +595 3726 0.5840 +595 3727 0.5870 +595 3791 0.5920 +595 3815 0.7490 +595 3845 0.8350 +595 3852 0.4740 +595 3855 0.4420 +595 3856 0.5210 +595 3875 0.5270 +595 3880 0.5820 +595 3952 0.5680 +595 3958 0.6180 +595 4000 0.5100 +595 4001 0.5990 +595 4015 0.6320 +595 4040 0.6320 +595 4041 0.6590 +595 4067 0.5970 +595 4070 0.6280 +595 4072 0.5180 +595 4087 0.7430 +595 4088 0.5960 +595 4089 0.6130 +595 4092 0.4490 +595 4094 0.5190 +595 4170 0.8370 +595 4171 0.4920 +595 4172 0.7320 +595 4174 0.4060 +595 4175 0.5440 +595 4176 0.6220 +595 4193 0.9260 +595 4194 0.6510 +595 4214 0.4190 +595 4233 0.6550 +595 4254 0.5850 +595 4255 0.4310 +595 4267 0.4010 +595 4283 0.4590 +595 4286 0.4580 +595 4288 0.7220 +595 4292 0.4180 +595 4311 0.7170 +595 4312 0.4770 +595 4313 0.7380 +595 4314 0.4740 +595 4316 0.6980 +595 4318 0.7990 +595 4322 0.4110 +595 4323 0.4480 +595 4331 0.4570 +595 4335 0.4990 +595 4343 0.4990 +595 4436 0.4300 +595 4594 0.5450 +595 4602 0.4140 +595 4605 0.7020 +595 4609 0.9690 +595 4610 0.4450 +595 4613 0.7300 +595 4617 0.4130 +595 4654 0.5430 +595 4656 0.5580 +595 4683 0.4850 +595 4684 0.4750 +595 4760 0.5360 +595 4763 0.5420 +595 4771 0.4460 +595 4780 0.6580 +595 4790 0.6680 +595 4791 0.4500 +595 4792 0.6700 +595 4803 0.4070 +595 4830 0.4030 +595 4851 0.9020 +595 4853 0.5540 +595 4854 0.5360 +595 4855 0.4180 +595 4869 0.6250 +595 4893 0.7910 +595 4899 0.4190 +595 4904 0.6390 +595 4914 0.4840 +595 4953 0.4470 +595 5000 0.7250 +595 5048 0.4450 +595 5054 0.6520 +595 5071 0.4250 +595 5079 0.5870 +595 5080 0.4670 +595 5081 0.4030 +595 5111 0.9890 +595 5127 0.4680 +595 5128 0.4110 +595 5129 0.4480 +595 5156 0.5160 +595 5159 0.6920 +595 5175 0.5510 +595 5218 0.5230 +595 5241 0.8340 +595 5243 0.4860 +595 5290 0.7040 +595 5292 0.5160 +595 5295 0.4740 +595 5296 0.4620 +595 5300 0.5970 +595 5308 0.4240 +595 5315 0.5190 +595 5328 0.5120 +595 5347 0.7270 +595 5366 0.6670 +595 5451 0.5770 +595 5460 0.6120 +595 5465 0.4540 +595 5467 0.4460 +595 5468 0.6330 +595 5499 0.4150 +595 5566 0.4830 +595 5567 0.4840 +595 5568 0.4730 +595 5578 0.4600 +595 5594 0.6830 +595 5595 0.7440 +595 5598 0.4350 +595 5599 0.7240 +595 5600 0.5230 +595 5604 0.7510 +595 5617 0.5740 +595 5618 0.5060 +595 5682 0.4220 +595 5683 0.4070 +595 5684 0.4240 +595 5685 0.4060 +595 5686 0.4060 +595 5687 0.5890 +595 5688 0.5200 +595 5689 0.4210 +595 5690 0.4240 +595 5691 0.4150 +595 5692 0.4170 +595 5693 0.4970 +595 5694 0.4240 +595 5695 0.4250 +595 5696 0.4730 +595 5698 0.4930 +595 5699 0.4360 +595 5701 0.4580 +595 5702 0.4110 +595 5704 0.4460 +595 5705 0.4260 +595 5706 0.4010 +595 5707 0.4210 +595 5708 0.4460 +595 5709 0.4210 +595 5710 0.4350 +595 5711 0.4190 +595 5713 0.5750 +595 5714 0.4100 +595 5716 0.5730 +595 5717 0.4450 +595 5719 0.4170 +595 5720 0.4160 +595 5721 0.4080 +595 5727 0.5980 +595 5728 0.8550 +595 5743 0.6640 +595 5747 0.5750 +595 5753 0.6750 +595 5781 0.4740 +595 5788 0.5130 +595 5790 0.4890 +595 5829 0.4320 +595 5888 0.7210 +595 5894 0.5810 +595 5898 0.6330 +595 5914 0.4750 +595 5925 0.9980 +595 5928 0.5210 +595 5933 0.9350 +595 5934 0.9660 +595 5966 0.4950 +595 5970 0.7910 +595 5971 0.4730 +595 5979 0.4840 +595 6009 0.6010 +595 6046 0.6480 +595 6093 0.4470 +595 6095 0.4960 +595 6097 0.4250 +595 6144 0.4240 +595 6194 0.4450 +595 6195 0.4930 +595 6197 0.4340 +595 6198 0.7200 +595 6199 0.4910 +595 6208 0.4410 +595 6233 0.6790 +595 6256 0.5620 +595 6347 0.6480 +595 6382 0.7720 +595 6386 0.4480 +595 6387 0.7690 +595 6391 0.5700 +595 6422 0.5670 +595 6423 0.4870 +595 6464 0.4690 +595 6469 0.6250 +595 6500 0.9680 +595 6502 0.9590 +595 6513 0.4640 +595 6591 0.6690 +595 6595 0.6060 +595 6597 0.7180 +595 6598 0.7160 +595 6599 0.5860 +595 6601 0.5800 +595 6602 0.5960 +595 6603 0.5500 +595 6604 0.5820 +595 6605 0.5770 +595 6608 0.5850 +595 6615 0.7050 +595 6657 0.7920 +595 6659 0.4700 +595 6662 0.5900 +595 6664 0.5960 +595 6667 0.6110 +595 6693 0.5230 +595 6696 0.4500 +595 6714 0.8750 +595 6736 0.4270 +595 6756 0.4140 +595 6772 0.7830 +595 6774 0.9800 +595 6776 0.6030 +595 6777 0.6020 +595 6778 0.7040 +595 6790 0.6260 +595 6794 0.5320 +595 6872 0.8810 +595 6908 0.6590 +595 6925 0.4950 +595 6932 0.4570 +595 6934 0.8200 +595 7003 0.4180 +595 7015 0.6370 +595 7027 0.7010 +595 7029 0.7570 +595 7031 0.4150 +595 7039 0.5410 +595 7040 0.6450 +595 7042 0.4500 +595 7046 0.4210 +595 7048 0.5130 +595 7057 0.4280 +595 7068 0.6730 +595 7070 0.6010 +595 7076 0.4650 +595 7077 0.4390 +595 7078 0.4440 +595 7082 0.6700 +595 7099 0.4340 +595 7101 0.4790 +595 7124 0.6560 +595 7153 0.6560 +595 7157 0.9460 +595 7161 0.6580 +595 7249 0.7790 +595 7291 0.7110 +595 7298 0.4300 +595 7311 0.5220 +595 7314 0.5250 +595 7316 0.5910 +595 7321 0.4220 +595 7345 0.4450 +595 7403 0.5820 +595 7414 0.4680 +595 7424 0.4440 +595 7431 0.5170 +595 7465 0.6430 +595 7468 0.5870 +595 7471 0.6520 +595 7472 0.5430 +595 7473 0.5260 +595 7474 0.6380 +595 7475 0.4170 +595 7476 0.4790 +595 7477 0.4460 +595 7480 0.4750 +595 7481 0.4630 +595 7482 0.4630 +595 7490 0.4460 +595 7494 0.4060 +595 7514 0.6440 +595 7534 0.5070 +595 7555 0.4600 +595 7709 0.4480 +595 7832 0.6350 +595 7837 0.7780 +595 7852 0.7060 +595 7855 0.4090 +595 7979 0.4100 +595 8019 0.5550 +595 8061 0.5480 +595 8078 0.6000 +595 8091 0.5320 +595 8189 0.9210 +595 8202 0.7900 +595 8289 0.7520 +595 8290 0.6540 +595 8312 0.7790 +595 8313 0.7740 +595 8317 0.5570 +595 8321 0.5110 +595 8322 0.4270 +595 8323 0.4160 +595 8324 0.5260 +595 8325 0.4180 +595 8331 0.5310 +595 8334 0.4990 +595 8337 0.6370 +595 8338 0.6370 +595 8340 0.5750 +595 8341 0.5740 +595 8342 0.5740 +595 8345 0.5790 +595 8347 0.5750 +595 8348 0.5740 +595 8349 0.6600 +595 8356 0.8260 +595 8361 0.7580 +595 8454 0.9240 +595 8531 0.9610 +595 8538 0.4710 +595 8542 0.4010 +595 8549 0.5960 +595 8600 0.6280 +595 8626 0.4010 +595 8648 0.7740 +595 8651 0.5950 +595 8678 0.6790 +595 8739 0.5340 +595 8772 0.4750 +595 8795 0.4980 +595 8797 0.4060 +595 8817 0.4930 +595 8822 0.4580 +595 8823 0.4680 +595 8837 0.5400 +595 8840 0.4340 +595 8841 0.9000 +595 8842 0.5870 +595 8850 0.9590 +595 8878 0.5700 +595 8900 0.4690 +595 8945 0.6540 +595 8970 0.5820 +595 9021 0.4410 +595 9076 0.5960 +595 9099 0.6720 +595 9113 0.4170 +595 9133 0.6780 +595 9134 0.6670 +595 9212 0.5190 +595 9314 0.5610 +595 9429 0.4900 +595 9451 0.6100 +595 9518 0.4180 +595 9636 0.4450 +595 9687 0.4400 +595 9759 0.9200 +595 9774 0.4990 +595 9794 0.6750 +595 9817 0.4940 +595 9839 0.4790 +595 9861 0.4360 +595 9935 0.4830 +595 9965 0.6830 +595 9978 0.5040 +595 9988 0.4790 +595 10000 0.5570 +595 10013 0.4120 +595 10018 0.7520 +595 10046 0.5190 +595 10197 0.4790 +595 10213 0.4600 +595 10238 0.4930 +595 10270 0.4970 +595 10272 0.4920 +595 10413 0.6160 +595 10419 0.9030 +595 10489 0.4280 +595 10499 0.6530 +595 10519 0.6780 +595 10533 0.5060 +595 10538 0.4620 +595 10642 0.5090 +595 10733 0.5350 +595 10763 0.8020 +595 10891 0.4230 +595 10987 0.5510 +595 11065 0.5640 +595 11186 0.9450 +595 11197 0.5280 +595 11200 0.6010 +595 11252 0.4880 +595 22938 0.6080 +595 22943 0.6640 +595 22992 0.4950 +595 23028 0.4330 +595 23112 0.5190 +595 23198 0.4190 +595 23405 0.6820 +595 23411 0.7210 +595 23462 0.4540 +595 23476 0.5630 +595 23582 0.7690 +595 23621 0.4550 +595 23650 0.4180 +595 24137 0.4180 +595 26227 0.4460 +595 26259 0.7850 +595 26271 0.4910 +595 26272 0.9560 +595 26281 0.4880 +595 26523 0.6060 +595 26524 0.4150 +595 26579 0.7920 +595 27006 0.4660 +595 27122 0.4660 +595 27123 0.6410 +595 27134 0.4680 +595 27161 0.7280 +595 27250 0.4530 +595 27287 0.5160 +595 27327 0.5650 +595 28514 0.4020 +595 29028 0.5020 +595 29102 0.4320 +595 29126 0.5410 +595 29775 0.5450 +595 30849 0.4710 +595 50484 0.4810 +595 50717 0.4240 +595 51176 0.9300 +595 51199 0.4030 +595 51343 0.4940 +595 51412 0.5680 +595 51582 0.5170 +595 51684 0.4810 +595 53635 0.4040 +595 54033 0.4510 +595 54145 0.5730 +595 54205 0.6740 +595 54361 0.6380 +595 54475 0.4270 +595 54971 0.4540 +595 55107 0.4170 +595 55193 0.7560 +595 55197 0.4770 +595 55234 0.4240 +595 55294 0.5170 +595 55352 0.5280 +595 55388 0.8390 +595 55534 0.6610 +595 55536 0.4370 +595 55626 0.6420 +595 55766 0.5200 +595 55809 0.4070 +595 57167 0.5590 +595 57492 0.6430 +595 57510 0.4230 +595 57521 0.6450 +595 57551 0.4560 +595 58490 0.5410 +595 63897 0.5000 +595 64100 0.4560 +595 64170 0.4790 +595 64223 0.5540 +595 64798 0.5240 +595 65061 0.4060 +595 79084 0.8410 +595 79269 0.4350 +595 79365 0.4890 +595 79577 0.4470 +595 79791 0.9850 +595 79923 0.7460 +595 80139 0.4190 +595 80349 0.4640 +595 81620 0.5030 +595 81631 0.5900 +595 81669 0.9490 +595 83439 0.5770 +595 84260 0.6410 +595 84433 0.4610 +595 84441 0.6600 +595 84660 0.5980 +595 84823 0.5350 +595 85236 0.5860 +595 89780 0.6940 +595 94239 0.4990 +595 122706 0.4500 +595 128312 0.5730 +595 133482 0.4320 +595 137902 0.7610 +595 143471 0.4060 +595 144455 0.4980 +595 158471 0.4740 +595 163590 0.4240 +595 192669 0.5460 +595 192670 0.5550 +595 196528 0.6840 +595 220064 0.7090 +595 253260 0.6400 +595 255626 0.5730 +595 284654 0.4670 +595 440093 0.6550 +595 440686 0.6550 +595 474382 0.4990 +595 493869 0.4010 +595 653145 0.4440 +595 653604 0.8250 +595 728378 0.4100 +595 728642 0.4570 +595 100133941 0.4790 +595 100532731 0.6140 +595 102723407 0.9090 +596 597 0.6770 +596 598 0.9990 +596 599 0.7560 +596 602 0.6260 +596 604 0.9060 +596 627 0.7930 +596 637 0.9980 +596 638 0.9990 +596 639 0.5150 +596 640 0.4950 +596 643 0.5940 +596 648 0.7230 +596 658 0.4980 +596 659 0.5530 +596 662 0.8770 +596 664 0.9990 +596 665 0.9950 +596 666 0.8400 +596 672 0.8000 +596 673 0.7610 +596 675 0.4530 +596 695 0.6650 +596 706 0.7360 +596 727 0.7420 +596 729 0.7200 +596 730 0.7210 +596 731 0.7200 +596 732 0.7240 +596 733 0.5400 +596 735 0.7500 +596 768 0.5600 +596 808 0.6770 +596 810 0.5050 +596 811 0.6400 +596 821 0.4610 +596 823 0.4260 +596 824 0.5560 +596 834 0.8170 +596 835 0.7800 +596 836 0.9870 +596 837 0.5840 +596 838 0.6350 +596 839 0.6970 +596 840 0.8570 +596 841 0.9840 +596 842 0.9460 +596 843 0.6930 +596 857 0.4780 +596 860 0.5120 +596 861 0.5180 +596 864 0.4210 +596 885 0.8330 +596 891 0.7680 +596 894 0.8850 +596 896 0.6040 +596 898 0.6090 +596 912 0.4040 +596 914 0.4670 +596 920 0.8370 +596 921 0.8470 +596 924 0.4440 +596 925 0.8310 +596 930 0.6810 +596 933 0.7340 +596 939 0.5150 +596 940 0.5690 +596 941 0.5270 +596 942 0.4970 +596 943 0.6670 +596 945 0.4880 +596 947 0.9450 +596 948 0.4170 +596 949 0.4200 +596 952 0.7240 +596 958 0.5910 +596 959 0.5300 +596 960 0.6920 +596 967 0.4130 +596 968 0.6610 +596 969 0.5140 +596 973 0.7050 +596 974 0.5830 +596 983 0.9200 +596 993 0.5130 +596 995 0.5960 +596 999 0.7360 +596 1000 0.6650 +596 1009 0.5170 +596 1017 0.8120 +596 1019 0.8150 +596 1020 0.4520 +596 1021 0.7120 +596 1025 0.5640 +596 1026 0.8200 +596 1027 0.7020 +596 1028 0.4040 +596 1029 0.7170 +596 1030 0.4370 +596 1033 0.5840 +596 1048 0.4940 +596 1050 0.6210 +596 1051 0.4510 +596 1075 0.9140 +596 1111 0.5830 +596 1147 0.8130 +596 1154 0.4370 +596 1191 0.4320 +596 1234 0.4110 +596 1236 0.6620 +596 1268 0.4940 +596 1327 0.6390 +596 1380 0.6130 +596 1385 0.9250 +596 1387 0.7390 +596 1390 0.9220 +596 1401 0.4310 +596 1410 0.4140 +596 1429 0.4130 +596 1432 0.7010 +596 1435 0.4020 +596 1437 0.5440 +596 1440 0.5130 +596 1471 0.4700 +596 1490 0.4820 +596 1493 0.5540 +596 1499 0.7810 +596 1506 0.4300 +596 1508 0.9470 +596 1509 0.9490 +596 1512 0.9110 +596 1513 0.9280 +596 1514 0.9310 +596 1515 0.9260 +596 1519 0.9040 +596 1520 0.9460 +596 1521 0.9040 +596 1522 0.9120 +596 1535 0.4020 +596 1536 0.7060 +596 1543 0.4110 +596 1571 0.4620 +596 1588 0.5240 +596 1603 0.6740 +596 1612 0.7260 +596 1613 0.4450 +596 1616 0.5580 +596 1636 0.4030 +596 1647 0.5810 +596 1649 0.9720 +596 1655 0.5110 +596 1660 0.4920 +596 1676 0.5070 +596 1677 0.5440 +596 1728 0.6110 +596 1742 0.4030 +596 1786 0.5710 +596 1788 0.5070 +596 1789 0.4700 +596 1791 0.8270 +596 1843 0.4560 +596 1846 0.5820 +596 1848 0.5550 +596 1869 0.7780 +596 1871 0.5300 +596 1906 0.4920 +596 1950 0.6840 +596 1956 0.8390 +596 1958 0.6760 +596 1959 0.5550 +596 1965 0.5920 +596 1977 0.5380 +596 1978 0.5430 +596 1992 0.4440 +596 1994 0.6380 +596 2021 0.7070 +596 2026 0.5060 +596 2033 0.8690 +596 2034 0.4630 +596 2056 0.5350 +596 2064 0.8490 +596 2065 0.5230 +596 2066 0.6600 +596 2067 0.4490 +596 2081 0.7810 +596 2099 0.8970 +596 2100 0.5990 +596 2101 0.5440 +596 2113 0.6650 +596 2146 0.6140 +596 2247 0.6340 +596 2248 0.4520 +596 2249 0.4540 +596 2250 0.4520 +596 2251 0.4520 +596 2252 0.5070 +596 2253 0.4460 +596 2254 0.4480 +596 2255 0.4520 +596 2258 0.4460 +596 2260 0.4500 +596 2305 0.6560 +596 2308 0.7000 +596 2309 0.7300 +596 2321 0.4960 +596 2322 0.6070 +596 2335 0.7850 +596 2346 0.5920 +596 2353 0.7840 +596 2355 0.5210 +596 2475 0.7650 +596 2526 0.4750 +596 2531 0.5660 +596 2534 0.4280 +596 2547 0.6910 +596 2597 0.8760 +596 2625 0.4840 +596 2626 0.6310 +596 2641 0.4260 +596 2642 0.4290 +596 2645 0.6450 +596 2668 0.5060 +596 2670 0.5380 +596 2671 0.5110 +596 2697 0.4780 +596 2729 0.6200 +596 2735 0.5770 +596 2736 0.4470 +596 2810 0.4030 +596 2852 0.4030 +596 2875 0.6030 +596 2877 0.7300 +596 2878 0.7250 +596 2879 0.4640 +596 2880 0.7260 +596 2882 0.7310 +596 2885 0.6430 +596 2908 0.7670 +596 2919 0.4500 +596 2931 0.4400 +596 2932 0.7310 +596 2936 0.5490 +596 2950 0.4330 +596 3002 0.5910 +596 3014 0.5790 +596 3017 0.5850 +596 3018 0.5750 +596 3021 0.8010 +596 3064 0.4410 +596 3065 0.5580 +596 3066 0.4560 +596 3082 0.5640 +596 3091 0.9460 +596 3099 0.5440 +596 3146 0.6020 +596 3156 0.4190 +596 3161 0.5010 +596 3162 0.8560 +596 3164 0.9990 +596 3169 0.5850 +596 3172 0.4790 +596 3184 0.4470 +596 3205 0.5910 +596 3251 0.4190 +596 3265 0.9380 +596 3304 0.6130 +596 3308 0.8990 +596 3309 0.7380 +596 3312 0.6790 +596 3313 0.5880 +596 3315 0.5970 +596 3316 0.5810 +596 3320 0.9290 +596 3326 0.7750 +596 3337 0.5750 +596 3364 0.5010 +596 3383 0.6180 +596 3394 0.4160 +596 3417 0.5190 +596 3418 0.5060 +596 3439 0.5290 +596 3456 0.4820 +596 3458 0.7950 +596 3479 0.7650 +596 3480 0.7810 +596 3481 0.4850 +596 3486 0.4750 +596 3551 0.7270 +596 3552 0.6250 +596 3553 0.8080 +596 3558 0.7580 +596 3559 0.4200 +596 3560 0.4380 +596 3561 0.4420 +596 3562 0.6790 +596 3565 0.6070 +596 3567 0.4150 +596 3569 0.8680 +596 3570 0.4360 +596 3574 0.7200 +596 3575 0.7420 +596 3576 0.6210 +596 3586 0.7180 +596 3596 0.4520 +596 3600 0.5940 +596 3605 0.5710 +596 3606 0.5520 +596 3620 0.4180 +596 3627 0.4210 +596 3630 0.7210 +596 3643 0.5330 +596 3654 0.6820 +596 3656 0.4880 +596 3659 0.4090 +596 3661 0.4330 +596 3662 0.6210 +596 3667 0.7850 +596 3673 0.4910 +596 3684 0.5240 +596 3687 0.4210 +596 3688 0.6590 +596 3689 0.5890 +596 3708 0.9960 +596 3710 0.9930 +596 3716 0.6110 +596 3717 0.7200 +596 3718 0.5030 +596 3725 0.9270 +596 3738 0.4090 +596 3791 0.6090 +596 3815 0.7070 +596 3845 0.8620 +596 3852 0.6050 +596 3855 0.4540 +596 3875 0.4160 +596 3880 0.4300 +596 3902 0.4180 +596 3908 0.4300 +596 3916 0.4340 +596 3920 0.4040 +596 3952 0.6170 +596 3956 0.4780 +596 3958 0.9150 +596 3963 0.8220 +596 3977 0.4410 +596 4000 0.4140 +596 4001 0.5650 +596 4005 0.7590 +596 4015 0.4220 +596 4055 0.5050 +596 4067 0.4460 +596 4072 0.4180 +596 4087 0.6130 +596 4088 0.5780 +596 4089 0.6950 +596 4092 0.4500 +596 4128 0.5620 +596 4129 0.4550 +596 4130 0.6230 +596 4131 0.5880 +596 4137 0.4130 +596 4144 0.4100 +596 4170 0.7640 +596 4193 0.9530 +596 4194 0.7280 +596 4214 0.6030 +596 4217 0.7550 +596 4233 0.6000 +596 4254 0.4880 +596 4255 0.4920 +596 4267 0.7240 +596 4286 0.6490 +596 4288 0.6420 +596 4293 0.4530 +596 4301 0.7670 +596 4303 0.4290 +596 4311 0.7930 +596 4312 0.4470 +596 4313 0.7160 +596 4314 0.4780 +596 4316 0.4810 +596 4318 0.8040 +596 4322 0.4940 +596 4352 0.4360 +596 4353 0.5830 +596 4363 0.5380 +596 4478 0.5080 +596 4493 0.4180 +596 4521 0.4030 +596 4594 0.6040 +596 4602 0.4880 +596 4605 0.6970 +596 4609 0.9550 +596 4613 0.7240 +596 4665 0.4030 +596 4671 0.4190 +596 4684 0.6070 +596 4691 0.4920 +596 4697 0.4220 +596 4772 0.4510 +596 4780 0.6870 +596 4790 0.8180 +596 4791 0.6460 +596 4792 0.7300 +596 4803 0.6230 +596 4804 0.6120 +596 4842 0.6160 +596 4843 0.4660 +596 4846 0.5790 +596 4851 0.6760 +596 4853 0.5980 +596 4854 0.5290 +596 4869 0.6600 +596 4878 0.4070 +596 4893 0.7640 +596 4914 0.5170 +596 4915 0.5200 +596 4929 0.5830 +596 4976 0.6430 +596 5054 0.4480 +596 5055 0.4800 +596 5071 0.7050 +596 5079 0.6960 +596 5080 0.5140 +596 5133 0.4780 +596 5156 0.4370 +596 5159 0.6880 +596 5175 0.7520 +596 5209 0.5320 +596 5241 0.6360 +596 5243 0.6740 +596 5289 0.9760 +596 5290 0.6100 +596 5293 0.4650 +596 5294 0.4720 +596 5295 0.6750 +596 5315 0.6690 +596 5328 0.4600 +596 5340 0.5520 +596 5347 0.5070 +596 5366 0.9990 +596 5371 0.4760 +596 5460 0.6010 +596 5465 0.6490 +596 5468 0.6490 +596 5481 0.9470 +596 5499 0.5930 +596 5506 0.6130 +596 5515 0.9620 +596 5516 0.9040 +596 5518 0.9160 +596 5519 0.9130 +596 5520 0.9210 +596 5521 0.9100 +596 5522 0.9060 +596 5523 0.9120 +596 5525 0.9640 +596 5526 0.9060 +596 5527 0.9110 +596 5528 0.9090 +596 5529 0.9090 +596 5530 0.5920 +596 5534 0.4380 +596 5551 0.5220 +596 5563 0.4340 +596 5566 0.7060 +596 5567 0.7070 +596 5568 0.7000 +596 5578 0.6950 +596 5579 0.6050 +596 5580 0.4060 +596 5591 0.4140 +596 5594 0.9690 +596 5595 0.9850 +596 5598 0.4590 +596 5599 0.9790 +596 5600 0.6520 +596 5601 0.9570 +596 5603 0.6210 +596 5604 0.7490 +596 5605 0.5560 +596 5610 0.5590 +596 5621 0.6900 +596 5663 0.8040 +596 5664 0.4990 +596 5727 0.5180 +596 5728 0.8150 +596 5734 0.4080 +596 5742 0.5170 +596 5743 0.7450 +596 5747 0.5850 +596 5781 0.4580 +596 5788 0.6620 +596 5814 0.4690 +596 5829 0.6220 +596 5883 0.9340 +596 5888 0.5970 +596 5894 0.8920 +596 5896 0.4390 +596 5914 0.4940 +596 5925 0.5400 +596 5934 0.4020 +596 5966 0.5800 +596 5970 0.8980 +596 5971 0.5130 +596 5972 0.4400 +596 5979 0.4400 +596 6005 0.6030 +596 6009 0.6420 +596 6046 0.5230 +596 6093 0.4650 +596 6195 0.5280 +596 6196 0.6170 +596 6197 0.4180 +596 6198 0.6790 +596 6199 0.4330 +596 6237 0.9070 +596 6300 0.4210 +596 6347 0.6070 +596 6348 0.7530 +596 6366 0.4950 +596 6376 0.5540 +596 6382 0.5820 +596 6387 0.7270 +596 6390 0.6100 +596 6391 0.5120 +596 6401 0.5400 +596 6402 0.4970 +596 6416 0.6470 +596 6446 0.4120 +596 6464 0.4140 +596 6469 0.5320 +596 6502 0.4760 +596 6513 0.5120 +596 6517 0.4290 +596 6591 0.5830 +596 6606 0.6350 +596 6608 0.4830 +596 6615 0.6350 +596 6622 0.5270 +596 6647 0.9980 +596 6648 0.6330 +596 6657 0.5870 +596 6662 0.4270 +596 6667 0.4470 +596 6687 0.7390 +596 6688 0.4550 +596 6693 0.7020 +596 6696 0.4760 +596 6707 0.4290 +596 6711 0.4090 +596 6714 0.8600 +596 6720 0.4290 +596 6757 0.4310 +596 6772 0.6110 +596 6774 0.9590 +596 6776 0.7720 +596 6777 0.6470 +596 6778 0.7660 +596 6790 0.6250 +596 6794 0.4850 +596 6850 0.6700 +596 6855 0.5220 +596 6868 0.4950 +596 6908 0.4010 +596 6927 0.5640 +596 6929 0.4150 +596 6934 0.4370 +596 7001 0.5680 +596 7009 0.9240 +596 7015 0.5860 +596 7019 0.6390 +596 7037 0.4570 +596 7039 0.4740 +596 7040 0.6890 +596 7046 0.4140 +596 7048 0.6340 +596 7054 0.5040 +596 7057 0.4050 +596 7070 0.4520 +596 7076 0.5190 +596 7077 0.6320 +596 7078 0.4180 +596 7082 0.4810 +596 7088 0.6200 +596 7097 0.6320 +596 7098 0.4040 +596 7099 0.7240 +596 7124 0.8850 +596 7128 0.4690 +596 7132 0.6610 +596 7137 0.4320 +596 7157 0.9990 +596 7159 0.9900 +596 7161 0.4120 +596 7184 0.5050 +596 7185 0.5740 +596 7186 0.5030 +596 7187 0.5300 +596 7188 0.4100 +596 7189 0.6950 +596 7225 0.5200 +596 7249 0.5320 +596 7291 0.4830 +596 7293 0.4120 +596 7295 0.6180 +596 7297 0.4160 +596 7298 0.4470 +596 7329 0.4430 +596 7351 0.4780 +596 7405 0.9740 +596 7412 0.5890 +596 7416 0.9980 +596 7417 0.9110 +596 7419 0.6870 +596 7424 0.4050 +596 7444 0.5290 +596 7465 0.4490 +596 7471 0.4230 +596 7474 0.4250 +596 7490 0.5220 +596 7494 0.6660 +596 7498 0.4940 +596 7514 0.4180 +596 7532 0.5400 +596 7533 0.5080 +596 7535 0.5020 +596 7779 0.4050 +596 7837 0.8440 +596 7852 0.7590 +596 7917 0.5350 +596 7942 0.4280 +596 8013 0.4680 +596 8019 0.5960 +596 8085 0.4160 +596 8091 0.4880 +596 8115 0.4580 +596 8290 0.6140 +596 8312 0.4010 +596 8320 0.4290 +596 8334 0.4990 +596 8340 0.5740 +596 8341 0.5800 +596 8342 0.5780 +596 8345 0.5760 +596 8347 0.5820 +596 8348 0.5760 +596 8349 0.6610 +596 8356 0.7990 +596 8361 0.6460 +596 8408 0.5770 +596 8412 0.4190 +596 8452 0.5780 +596 8517 0.8050 +596 8542 0.4820 +596 8600 0.4730 +596 8648 0.5230 +596 8651 0.6710 +596 8655 0.6100 +596 8660 0.5430 +596 8678 0.9990 +596 8717 0.5960 +596 8718 0.6720 +596 8722 0.9070 +596 8737 0.5630 +596 8739 0.9970 +596 8743 0.6510 +596 8764 0.4160 +596 8772 0.7450 +596 8795 0.7390 +596 8797 0.7080 +596 8817 0.4520 +596 8822 0.4480 +596 8823 0.4480 +596 8837 0.8020 +596 8842 0.5820 +596 8870 0.4580 +596 8877 0.4450 +596 8878 0.8120 +596 8883 0.4030 +596 8900 0.6890 +596 8915 0.7800 +596 8925 0.4050 +596 8970 0.5770 +596 8988 0.9880 +596 9021 0.5030 +596 9088 0.4720 +596 9113 0.4920 +596 9131 0.4460 +596 9134 0.4980 +596 9140 0.9890 +596 9212 0.4050 +596 9314 0.4740 +596 9332 0.4100 +596 9370 0.4420 +596 9413 0.4290 +596 9414 0.4130 +596 9429 0.6030 +596 9451 0.7290 +596 9474 0.8450 +596 9529 0.6980 +596 9530 0.4150 +596 9531 0.9860 +596 9532 0.5820 +596 9623 0.4470 +596 9759 0.4300 +596 9774 0.9450 +596 9776 0.5310 +596 9804 0.7570 +596 9817 0.9200 +596 9821 0.5290 +596 9839 0.5120 +596 9927 0.9480 +596 9991 0.4340 +596 10000 0.9470 +596 10013 0.4790 +596 10017 0.9200 +596 10018 0.9990 +596 10059 0.6310 +596 10105 0.9610 +596 10128 0.6400 +596 10134 0.8460 +596 10219 0.4520 +596 10273 0.4160 +596 10278 0.7230 +596 10280 0.6030 +596 10320 0.5510 +596 10413 0.6150 +596 10452 0.6390 +596 10454 0.4880 +596 10456 0.6950 +596 10516 0.4100 +596 10533 0.8070 +596 10536 0.6210 +596 10550 0.4590 +596 10563 0.7250 +596 10572 0.9380 +596 10575 0.4420 +596 10628 0.4510 +596 10645 0.5800 +596 10657 0.4500 +596 10673 0.6730 +596 10763 0.4480 +596 10848 0.5770 +596 10871 0.4230 +596 10891 0.7440 +596 10892 0.5150 +596 11009 0.4440 +596 11035 0.5130 +596 11040 0.4650 +596 11200 0.5720 +596 11315 0.4150 +596 11331 0.5350 +596 11337 0.6050 +596 11345 0.5280 +596 22861 0.9990 +596 22863 0.9290 +596 22914 0.4030 +596 22926 0.7160 +596 22974 0.4240 +596 23017 0.6410 +596 23151 0.4970 +596 23192 0.6590 +596 23367 0.4010 +596 23368 0.5320 +596 23405 0.5360 +596 23410 0.5230 +596 23411 0.7440 +596 23476 0.7320 +596 23568 0.4720 +596 23604 0.4520 +596 23621 0.6700 +596 23645 0.4250 +596 23705 0.4240 +596 23710 0.5350 +596 23770 0.9960 +596 23786 0.5630 +596 25962 0.4090 +596 26267 0.7830 +596 26281 0.4480 +596 26330 0.4380 +596 26353 0.5330 +596 27006 0.4480 +596 27032 0.4190 +596 27035 0.4420 +596 27113 0.9990 +596 27161 0.5060 +596 27250 0.6130 +596 27429 0.7190 +596 28227 0.9010 +596 29102 0.4780 +596 29126 0.5900 +596 29851 0.4200 +596 30001 0.4470 +596 30009 0.4980 +596 30849 0.6920 +596 50486 0.7320 +596 50507 0.5740 +596 50616 0.4130 +596 50628 0.4810 +596 50943 0.7290 +596 51024 0.7750 +596 51100 0.4010 +596 51142 0.4160 +596 51176 0.4950 +596 51248 0.7220 +596 51283 0.6330 +596 51284 0.4020 +596 51643 0.5190 +596 51651 0.5270 +596 51684 0.4070 +596 51806 0.5050 +596 54106 0.4600 +596 54145 0.5750 +596 54205 0.9970 +596 54541 0.4080 +596 54583 0.4870 +596 54790 0.4280 +596 55012 0.9010 +596 55054 0.5200 +596 55075 0.5060 +596 55193 0.4590 +596 55201 0.5970 +596 55294 0.4650 +596 55332 0.4400 +596 55340 0.7330 +596 55486 0.6180 +596 55536 0.4860 +596 55626 0.9540 +596 55669 0.7640 +596 55728 0.4160 +596 55844 0.9070 +596 55859 0.4550 +596 56848 0.8990 +596 56947 0.4800 +596 57019 0.5180 +596 57099 0.4600 +596 57142 0.7370 +596 57161 0.4780 +596 57379 0.4910 +596 57521 0.4610 +596 60673 0.4070 +596 63970 0.6820 +596 64083 0.5070 +596 64112 0.4470 +596 64422 0.7490 +596 65018 0.6360 +596 79065 0.5200 +596 79370 0.6410 +596 79444 0.5510 +596 79680 0.9910 +596 79792 0.5280 +596 79923 0.5750 +596 80380 0.4010 +596 81631 0.7300 +596 81669 0.6910 +596 83447 0.7650 +596 83734 0.4540 +596 83985 0.7150 +596 84134 0.5400 +596 84260 0.8510 +596 84433 0.4950 +596 84557 0.6300 +596 84706 0.4090 +596 84707 0.4530 +596 84823 0.4890 +596 84868 0.4350 +596 84971 0.6940 +596 85236 0.5830 +596 89780 0.4630 +596 90427 0.9980 +596 91860 0.5260 +596 94241 0.4270 +596 114548 0.5160 +596 115650 0.6430 +596 115908 0.4200 +596 116443 0.4090 +596 117159 0.5590 +596 120892 0.4970 +596 128312 0.5760 +596 133482 0.4810 +596 137902 0.8440 +596 139341 0.6710 +596 144100 0.7200 +596 146713 0.5240 +596 149428 0.8520 +596 158471 0.4010 +596 163688 0.5050 +596 192111 0.5010 +596 197259 0.5210 +596 253260 0.4330 +596 255626 0.5730 +596 255738 0.4330 +596 257202 0.7260 +596 340348 0.7260 +596 440093 0.6130 +596 440686 0.6310 +596 441925 0.9990 +596 493856 0.7190 +596 493869 0.7340 +596 653145 0.6440 +596 653499 0.8220 +596 653604 0.8080 +596 728378 0.4260 +596 100133941 0.5060 +596 100423062 0.5070 +596 100506658 0.4530 +596 100532731 0.7140 +596 102723407 0.9290 +597 598 0.5550 +597 599 0.6660 +597 627 0.4700 +597 637 0.9810 +597 638 0.9320 +597 666 0.6940 +597 695 0.4160 +597 834 0.5300 +597 835 0.4030 +597 836 0.5790 +597 837 0.4410 +597 838 0.4620 +597 839 0.4250 +597 840 0.4560 +597 841 0.5830 +597 842 0.5490 +597 920 0.4720 +597 941 0.4030 +597 942 0.4170 +597 945 0.4990 +597 958 0.4550 +597 962 0.4200 +597 1051 0.6680 +597 1316 0.4440 +597 1392 0.7720 +597 1394 0.4440 +597 1475 0.4660 +597 1588 0.4210 +597 1831 0.4740 +597 1956 0.5770 +597 2194 0.4340 +597 2288 0.6420 +597 2289 0.8910 +597 2597 0.4010 +597 2885 0.4550 +597 2908 0.7000 +597 2932 0.4590 +597 3066 0.4560 +597 3105 0.4110 +597 3106 0.4130 +597 3164 0.7700 +597 3290 0.4130 +597 3291 0.5160 +597 3308 0.6160 +597 3309 0.4330 +597 3320 0.9330 +597 3326 0.9120 +597 3383 0.4640 +597 3458 0.4300 +597 3552 0.4050 +597 3553 0.6500 +597 3569 0.4990 +597 3576 0.5080 +597 3589 0.4880 +597 3630 0.4010 +597 3725 0.4170 +597 3726 0.4250 +597 3937 0.4240 +597 4170 0.6140 +597 4193 0.5620 +597 4306 0.6510 +597 4609 0.4490 +597 4671 0.4130 +597 4688 0.4220 +597 4790 0.7010 +597 4792 0.4800 +597 4869 0.8490 +597 5341 0.4140 +597 5366 0.9990 +597 5443 0.7440 +597 5743 0.4810 +597 5788 0.4310 +597 5966 0.4190 +597 5971 0.4340 +597 6189 0.4020 +597 6195 0.4310 +597 6196 0.4100 +597 6348 0.4160 +597 6688 0.4190 +597 6720 0.4500 +597 6774 0.5620 +597 6776 0.7610 +597 6777 0.7330 +597 7099 0.4080 +597 7124 0.6090 +597 7128 0.5090 +597 7132 0.4380 +597 7157 0.6990 +597 7185 0.5920 +597 7494 0.4670 +597 7846 0.4480 +597 8202 0.4770 +597 8477 0.5260 +597 8520 0.5240 +597 8678 0.7370 +597 8739 0.9190 +597 8743 0.4020 +597 8772 0.4220 +597 8837 0.6530 +597 8850 0.4800 +597 9611 0.4970 +597 9612 0.5050 +597 10017 0.8480 +597 10018 0.9990 +597 10134 0.5230 +597 10155 0.4030 +597 10658 0.4220 +597 11214 0.4610 +597 27113 0.8550 +597 27436 0.5570 +597 53831 0.4050 +597 54205 0.6350 +597 60489 0.4560 +597 63976 0.4530 +597 64092 0.5580 +597 79370 0.5800 +597 79444 0.4190 +597 79680 0.7630 +597 79865 0.4140 +597 84623 0.5830 +597 90427 0.9400 +597 441925 0.4930 +597 104909134 0.4180 +598 599 0.9330 +598 602 0.4020 +598 604 0.4740 +598 627 0.5120 +598 637 0.9990 +598 638 0.9990 +598 640 0.4070 +598 662 0.7870 +598 664 0.9980 +598 665 0.9510 +598 666 0.5750 +598 672 0.4480 +598 673 0.5570 +598 682 0.5390 +598 695 0.4920 +598 706 0.5760 +598 808 0.4290 +598 810 0.4120 +598 834 0.7280 +598 835 0.7700 +598 836 0.9500 +598 837 0.4750 +598 839 0.7010 +598 840 0.8540 +598 841 0.9330 +598 842 0.9920 +598 843 0.6180 +598 857 0.4910 +598 885 0.5070 +598 891 0.6310 +598 894 0.5450 +598 896 0.4990 +598 898 0.4490 +598 919 0.5530 +598 920 0.7460 +598 925 0.7260 +598 930 0.4590 +598 940 0.5120 +598 941 0.4790 +598 942 0.4330 +598 947 0.5130 +598 958 0.7100 +598 959 0.6830 +598 960 0.5830 +598 983 0.7030 +598 993 0.4180 +598 995 0.4770 +598 999 0.5870 +598 1000 0.4470 +598 1017 0.6640 +598 1019 0.6560 +598 1021 0.5870 +598 1025 0.4190 +598 1026 0.7040 +598 1027 0.8360 +598 1029 0.8140 +598 1033 0.4640 +598 1075 0.9100 +598 1111 0.6160 +598 1147 0.5470 +598 1191 0.7450 +598 1263 0.4510 +598 1327 0.5550 +598 1380 0.4680 +598 1385 0.5250 +598 1410 0.4370 +598 1432 0.7620 +598 1437 0.6260 +598 1440 0.5660 +598 1493 0.4470 +598 1499 0.7660 +598 1508 0.9380 +598 1509 0.9340 +598 1512 0.9080 +598 1513 0.9170 +598 1514 0.9190 +598 1515 0.9020 +598 1519 0.9020 +598 1520 0.9360 +598 1521 0.9020 +598 1522 0.9090 +598 1612 0.4830 +598 1613 0.4210 +598 1616 0.5090 +598 1641 0.4350 +598 1647 0.6680 +598 1649 0.5200 +598 1676 0.4480 +598 1677 0.4750 +598 1728 0.4120 +598 1791 0.6130 +598 1869 0.7020 +598 1950 0.5920 +598 1956 0.8470 +598 1958 0.4020 +598 1965 0.4190 +598 1977 0.4760 +598 1978 0.6050 +598 2021 0.6480 +598 2033 0.4110 +598 2038 0.4260 +598 2039 0.4990 +598 2056 0.6840 +598 2057 0.4930 +598 2064 0.7670 +598 2065 0.4450 +598 2081 0.5220 +598 2099 0.5780 +598 2114 0.5160 +598 2146 0.4260 +598 2194 0.5020 +598 2247 0.4800 +598 2280 0.5240 +598 2308 0.5190 +598 2309 0.6290 +598 2322 0.5040 +598 2335 0.4480 +598 2353 0.6810 +598 2355 0.5810 +598 2475 0.8130 +598 2597 0.7520 +598 2623 0.6710 +598 2877 0.4810 +598 2878 0.4750 +598 2880 0.4790 +598 2882 0.4990 +598 2885 0.4120 +598 2908 0.5970 +598 2931 0.5570 +598 2932 0.8280 +598 3002 0.4110 +598 3014 0.4420 +598 3021 0.4900 +598 3065 0.4520 +598 3082 0.4460 +598 3091 0.6740 +598 3099 0.4470 +598 3162 0.5940 +598 3265 0.4210 +598 3308 0.7300 +598 3309 0.5710 +598 3315 0.5400 +598 3316 0.4490 +598 3320 0.7270 +598 3326 0.6030 +598 3383 0.4820 +598 3439 0.4270 +598 3458 0.6090 +598 3479 0.7040 +598 3480 0.5410 +598 3551 0.5910 +598 3552 0.5560 +598 3553 0.7640 +598 3558 0.9120 +598 3559 0.5520 +598 3562 0.7160 +598 3565 0.5130 +598 3569 0.8090 +598 3574 0.6030 +598 3575 0.6170 +598 3576 0.5070 +598 3586 0.5810 +598 3600 0.4680 +598 3605 0.4320 +598 3606 0.4060 +598 3627 0.5590 +598 3630 0.5440 +598 3667 0.5300 +598 3689 0.4980 +598 3708 0.8560 +598 3710 0.9420 +598 3716 0.5610 +598 3717 0.7630 +598 3718 0.4360 +598 3725 0.7060 +598 3727 0.6350 +598 3791 0.4730 +598 3815 0.5250 +598 3845 0.9820 +598 4088 0.4100 +598 4089 0.4080 +598 4130 0.4190 +598 4170 0.9890 +598 4193 0.7940 +598 4194 0.4520 +598 4217 0.5430 +598 4233 0.4950 +598 4254 0.4020 +598 4303 0.4250 +598 4313 0.5700 +598 4318 0.6490 +598 4609 0.8630 +598 4671 0.4170 +598 4780 0.4840 +598 4790 0.6700 +598 4791 0.4670 +598 4792 0.7720 +598 4803 0.4450 +598 4851 0.4830 +598 4893 0.4530 +598 4914 0.4180 +598 5071 0.7770 +598 5159 0.4270 +598 5170 0.4790 +598 5175 0.6460 +598 5232 0.4100 +598 5241 0.4040 +598 5243 0.6620 +598 5289 0.7710 +598 5290 0.4610 +598 5293 0.4150 +598 5315 0.4100 +598 5328 0.6280 +598 5347 0.5570 +598 5366 0.9990 +598 5460 0.4450 +598 5468 0.5050 +598 5499 0.6500 +598 5501 0.4040 +598 5506 0.4910 +598 5566 0.4080 +598 5578 0.4180 +598 5594 0.6720 +598 5595 0.7010 +598 5599 0.9860 +598 5601 0.9560 +598 5604 0.5570 +598 5606 0.4330 +598 5610 0.4060 +598 5663 0.6240 +598 5728 0.6690 +598 5743 0.6270 +598 5747 0.4590 +598 5781 0.7250 +598 5788 0.4910 +598 5883 0.7540 +598 5894 0.8920 +598 5966 0.5810 +598 5970 0.7730 +598 5971 0.5240 +598 6005 0.5420 +598 6009 0.5950 +598 6195 0.4580 +598 6196 0.5250 +598 6198 0.5940 +598 6199 0.4070 +598 6347 0.4570 +598 6387 0.4540 +598 6390 0.4680 +598 6426 0.4160 +598 6449 0.4190 +598 6513 0.4350 +598 6521 0.4680 +598 6591 0.4370 +598 6615 0.4960 +598 6622 0.7060 +598 6648 0.6790 +598 6657 0.4520 +598 6714 0.6730 +598 6772 0.6100 +598 6773 0.4250 +598 6774 0.9490 +598 6776 0.8910 +598 6777 0.8970 +598 6778 0.7220 +598 6790 0.5420 +598 6794 0.4020 +598 6850 0.4340 +598 6921 0.8890 +598 6923 0.8920 +598 7009 0.9540 +598 7015 0.4250 +598 7019 0.5710 +598 7040 0.5210 +598 7096 0.4670 +598 7097 0.5850 +598 7099 0.4550 +598 7124 0.8780 +598 7128 0.4990 +598 7132 0.6130 +598 7157 0.9990 +598 7159 0.7300 +598 7161 0.9290 +598 7178 0.6980 +598 7185 0.7060 +598 7187 0.4050 +598 7189 0.4230 +598 7249 0.4580 +598 7293 0.4140 +598 7295 0.4530 +598 7297 0.4480 +598 7405 0.7490 +598 7412 0.5860 +598 7416 0.9980 +598 7417 0.7130 +598 7419 0.7550 +598 7428 0.8320 +598 7444 0.5920 +598 7494 0.4840 +598 7514 0.5170 +598 7832 0.4480 +598 7837 0.6880 +598 7850 0.5190 +598 7852 0.6600 +598 8290 0.4880 +598 8356 0.4890 +598 8408 0.4400 +598 8517 0.4960 +598 8562 0.7190 +598 8651 0.4010 +598 8655 0.4900 +598 8678 0.9990 +598 8717 0.6000 +598 8722 0.9050 +598 8737 0.4990 +598 8739 0.9990 +598 8743 0.6080 +598 8772 0.7390 +598 8794 0.4030 +598 8795 0.7270 +598 8797 0.6780 +598 8837 0.8640 +598 8842 0.4470 +598 8870 0.4540 +598 8878 0.4850 +598 8900 0.5830 +598 8915 0.5760 +598 8988 0.4500 +598 9021 0.4650 +598 9040 0.4540 +598 9097 0.7430 +598 9140 0.7290 +598 9214 0.4270 +598 9261 0.4650 +598 9413 0.4760 +598 9414 0.4050 +598 9429 0.4840 +598 9451 0.5870 +598 9474 0.9920 +598 9538 0.5400 +598 9559 0.4290 +598 9774 0.5650 +598 9776 0.4380 +598 9817 0.6710 +598 9821 0.4220 +598 9927 0.9590 +598 10000 0.9310 +598 10013 0.4170 +598 10017 0.9050 +598 10018 0.9990 +598 10059 0.9190 +598 10105 0.5100 +598 10134 0.8530 +598 10413 0.5240 +598 10439 0.4420 +598 10454 0.4860 +598 10533 0.7340 +598 10536 0.4060 +598 10563 0.5250 +598 10572 0.9900 +598 10657 0.4180 +598 10673 0.4330 +598 10875 0.4030 +598 10892 0.4810 +598 10904 0.4290 +598 11035 0.4130 +598 11040 0.4020 +598 11140 0.4080 +598 11200 0.4740 +598 11274 0.5350 +598 11315 0.9700 +598 11345 0.4600 +598 22806 0.4430 +598 22861 0.9980 +598 22863 0.6910 +598 22926 0.5040 +598 22974 0.4380 +598 23017 0.7360 +598 23218 0.4310 +598 23244 0.4120 +598 23263 0.4140 +598 23275 0.4240 +598 23411 0.5480 +598 23476 0.4430 +598 23513 0.4150 +598 23522 0.5800 +598 23581 0.4120 +598 23593 0.8180 +598 23604 0.4220 +598 23621 0.4700 +598 23710 0.4390 +598 23762 0.4550 +598 23770 0.9350 +598 23786 0.4410 +598 25853 0.4020 +598 26499 0.4430 +598 27113 0.9990 +598 27429 0.6090 +598 29126 0.4880 +598 30849 0.4250 +598 50616 0.4040 +598 50943 0.4560 +598 51024 0.7530 +598 51094 0.4840 +598 51142 0.5240 +598 51283 0.4120 +598 51629 0.4240 +598 51643 0.5070 +598 51806 0.4120 +598 54205 0.9980 +598 54471 0.4230 +598 55124 0.5530 +598 55303 0.4230 +598 55340 0.6130 +598 55626 0.4550 +598 55669 0.8280 +598 55737 0.4640 +598 55810 0.4470 +598 57019 0.4820 +598 57099 0.9670 +598 57142 0.6140 +598 57521 0.5500 +598 59067 0.4450 +598 64112 0.6410 +598 64223 0.5220 +598 64344 0.5260 +598 64422 0.6780 +598 64798 0.4490 +598 65018 0.9860 +598 79370 0.7740 +598 79444 0.5330 +598 79680 0.9790 +598 79923 0.4140 +598 81631 0.5570 +598 81669 0.5960 +598 83985 0.7500 +598 83992 0.4510 +598 84260 0.7070 +598 84433 0.5140 +598 84557 0.4470 +598 84971 0.5770 +598 90427 0.9940 +598 91860 0.4140 +598 124976 0.4100 +598 126393 0.4630 +598 131474 0.4850 +598 133482 0.6280 +598 137902 0.6840 +598 138065 0.4320 +598 140823 0.5490 +598 149428 0.5890 +598 163688 0.4140 +598 192111 0.9970 +598 197259 0.4100 +598 253260 0.5720 +598 257202 0.4770 +598 414899 0.6240 +598 415116 0.5860 +598 440093 0.4890 +598 440686 0.4890 +598 441925 0.9920 +598 493869 0.4980 +598 653145 0.5150 +598 653604 0.4900 +598 100529063 0.5540 +598 102723407 0.5030 +599 637 0.9320 +599 638 0.9910 +599 664 0.7370 +599 835 0.5430 +599 836 0.7490 +599 839 0.5450 +599 840 0.5930 +599 841 0.6580 +599 842 0.8640 +599 843 0.4710 +599 900 0.4350 +599 1026 0.4310 +599 1956 0.4190 +599 1981 0.4070 +599 2021 0.4600 +599 2309 0.5260 +599 3312 0.4170 +599 3725 0.4020 +599 4170 0.9880 +599 4193 0.4270 +599 4609 0.4340 +599 5071 0.4390 +599 5366 0.9980 +599 5499 0.6440 +599 5728 0.4100 +599 7021 0.5110 +599 7124 0.4190 +599 7157 0.7180 +599 7159 0.5820 +599 8106 0.4510 +599 8655 0.4970 +599 8678 0.9870 +599 8717 0.4100 +599 8739 0.9800 +599 8772 0.4430 +599 8795 0.4200 +599 8837 0.5090 +599 9530 0.4660 +599 9927 0.4940 +599 10017 0.8800 +599 10018 0.9990 +599 10273 0.4060 +599 23218 0.4330 +599 23263 0.4160 +599 23275 0.4300 +599 23593 0.6240 +599 23786 0.4290 +599 26986 0.4240 +599 27113 0.9790 +599 27429 0.4320 +599 54205 0.7970 +599 55075 0.4600 +599 55669 0.4310 +599 55810 0.4370 +599 65018 0.5100 +599 79370 0.4760 +599 79444 0.4550 +599 79680 0.8680 +599 90427 0.9960 +599 441925 0.6700 +599 100529063 0.5540 +602 604 0.6770 +602 958 0.8100 +602 1031 0.4820 +602 1032 0.5020 +602 1051 0.4970 +602 1052 0.4380 +602 1147 0.7010 +602 1281 0.4270 +602 1316 0.4920 +602 1326 0.4470 +602 1385 0.5520 +602 1487 0.5880 +602 1488 0.6600 +602 1499 0.4780 +602 1540 0.9860 +602 1843 0.5970 +602 1847 0.5150 +602 2033 0.5220 +602 2064 0.5230 +602 2099 0.4690 +602 2101 0.4740 +602 2162 0.4250 +602 2353 0.8560 +602 2355 0.4150 +602 2534 0.6020 +602 2919 0.4080 +602 2932 0.6710 +602 3065 0.9090 +602 3308 0.4050 +602 3383 0.6660 +602 3551 0.6110 +602 3552 0.4450 +602 3553 0.7190 +602 3569 0.7610 +602 3576 0.4270 +602 3586 0.6390 +602 3630 0.4160 +602 3654 0.4290 +602 3659 0.5450 +602 3725 0.7580 +602 3726 0.5740 +602 4087 0.4120 +602 4609 0.6420 +602 4627 0.4500 +602 4790 0.9990 +602 4791 0.9990 +602 4792 0.9040 +602 4793 0.6410 +602 4794 0.6560 +602 4795 0.4430 +602 4831 0.4680 +602 5090 0.5890 +602 5468 0.5390 +602 5594 0.4670 +602 5689 0.5770 +602 5743 0.4060 +602 5819 0.5440 +602 5966 0.9520 +602 5970 0.9510 +602 5971 0.9590 +602 6256 0.4210 +602 6688 0.4260 +602 6772 0.7500 +602 6774 0.6970 +602 6776 0.4110 +602 6908 0.4480 +602 7040 0.5130 +602 7097 0.4490 +602 7099 0.4640 +602 7124 0.5400 +602 7128 0.5870 +602 7132 0.5100 +602 7157 0.4070 +602 7185 0.4310 +602 7189 0.5750 +602 8517 0.6900 +602 8544 0.9830 +602 8625 0.4690 +602 8676 0.4730 +602 8841 0.5630 +602 8915 0.5960 +602 9021 0.6660 +602 9314 0.5520 +602 9560 0.4010 +602 9641 0.4130 +602 9935 0.4380 +602 10009 0.5440 +602 10013 0.5960 +602 10318 0.4270 +602 10524 0.8280 +602 10856 0.5420 +602 10987 0.8120 +602 11167 0.4310 +602 11213 0.5200 +602 11266 0.4890 +602 22904 0.6600 +602 23118 0.5800 +602 23284 0.4610 +602 23462 0.4360 +602 51239 0.5050 +602 53335 0.4760 +602 54472 0.4380 +602 55728 0.6750 +602 56971 0.4890 +602 57763 0.4210 +602 59307 0.4390 +602 64332 0.6030 +602 79155 0.4480 +602 79718 0.4680 +602 80149 0.6170 +602 83715 0.4220 +602 84676 0.4240 +602 84807 0.5720 +602 92747 0.4310 +602 136319 0.4680 +602 136991 0.4180 +602 140456 0.4730 +602 148022 0.4500 +602 161497 0.4060 +602 388551 0.5240 +602 415116 0.4200 +602 102723407 0.5680 +604 605 0.5970 +604 639 0.5580 +604 643 0.8940 +604 648 0.4630 +604 695 0.5220 +604 861 0.4750 +604 862 0.6650 +604 864 0.4840 +604 894 0.8510 +604 896 0.4530 +604 912 0.4240 +604 914 0.5770 +604 920 0.7990 +604 921 0.8630 +604 924 0.5070 +604 925 0.7020 +604 930 0.8260 +604 931 0.4840 +604 933 0.6010 +604 939 0.6280 +604 940 0.5900 +604 941 0.6530 +604 942 0.6740 +604 943 0.8320 +604 947 0.5040 +604 952 0.6950 +604 958 0.7410 +604 959 0.7750 +604 960 0.6380 +604 968 0.4590 +604 969 0.5480 +604 972 0.4060 +604 973 0.8760 +604 974 0.7280 +604 1017 0.4380 +604 1024 0.5370 +604 1026 0.6360 +604 1027 0.7080 +604 1029 0.5070 +604 1051 0.4990 +604 1052 0.7640 +604 1107 0.4040 +604 1111 0.4890 +604 1234 0.4180 +604 1235 0.6250 +604 1236 0.6550 +604 1378 0.4290 +604 1380 0.7260 +604 1387 0.6710 +604 1487 0.7960 +604 1490 0.4480 +604 1493 0.6190 +604 1499 0.6020 +604 1647 0.5320 +604 1770 0.5400 +604 1791 0.6980 +604 1839 0.6070 +604 1871 0.4390 +604 1879 0.7150 +604 1880 0.6230 +604 1901 0.4590 +604 2033 0.6430 +604 2063 0.4410 +604 2099 0.5640 +604 2146 0.7950 +604 2213 0.4040 +604 2305 0.4450 +604 2308 0.8010 +604 2309 0.7210 +604 2335 0.4710 +604 2353 0.6490 +604 2526 0.5490 +604 2597 0.4420 +604 2623 0.4230 +604 2625 0.6970 +604 2672 0.5520 +604 2833 0.5860 +604 3001 0.5660 +604 3002 0.6080 +604 3021 0.4230 +604 3065 0.9350 +604 3066 0.6510 +604 3091 0.6260 +604 3164 0.5860 +604 3320 0.7830 +604 3326 0.5700 +604 3394 0.6300 +604 3398 0.6010 +604 3399 0.5800 +604 3458 0.6470 +604 3516 0.4140 +604 3553 0.4390 +604 3558 0.6280 +604 3559 0.4860 +604 3560 0.5320 +604 3565 0.7570 +604 3566 0.4250 +604 3567 0.4780 +604 3569 0.6090 +604 3570 0.5040 +604 3574 0.4820 +604 3575 0.5860 +604 3578 0.4010 +604 3586 0.5970 +604 3594 0.4510 +604 3596 0.4740 +604 3600 0.4520 +604 3605 0.6030 +604 3659 0.4490 +604 3662 0.9420 +604 3665 0.5890 +604 3682 0.4420 +604 3684 0.5000 +604 3687 0.5500 +604 3707 0.4850 +604 3716 0.4190 +604 3717 0.4840 +604 3725 0.8140 +604 3726 0.7280 +604 3727 0.5140 +604 3815 0.4510 +604 3902 0.4460 +604 3936 0.4660 +604 4005 0.8520 +604 4067 0.4380 +604 4068 0.5700 +604 4084 0.5480 +604 4094 0.5990 +604 4170 0.5140 +604 4261 0.4630 +604 4303 0.6650 +604 4311 0.9260 +604 4345 0.4180 +604 4603 0.5400 +604 4609 0.9220 +604 4664 0.4270 +604 4684 0.5300 +604 4772 0.4870 +604 4783 0.4770 +604 4790 0.6900 +604 4792 0.6110 +604 4851 0.5250 +604 4853 0.5160 +604 5034 0.4610 +604 5079 0.9310 +604 5133 0.5950 +604 5134 0.6400 +604 5292 0.6600 +604 5317 0.4890 +604 5450 0.5830 +604 5451 0.4950 +604 5467 0.5970 +604 5551 0.4590 +604 5728 0.4730 +604 5743 0.5360 +604 5788 0.6940 +604 5894 0.4300 +604 5896 0.5090 +604 5914 0.6100 +604 5961 0.4910 +604 5966 0.5630 +604 5970 0.4330 +604 5971 0.4780 +604 5987 0.5220 +604 6095 0.5950 +604 6097 0.6980 +604 6348 0.6970 +604 6351 0.4460 +604 6382 0.8200 +604 6402 0.6350 +604 6404 0.4530 +604 6428 0.4170 +604 6446 0.4410 +604 6480 0.4420 +604 6500 0.4460 +604 6504 0.4870 +604 6597 0.4780 +604 6657 0.5580 +604 6664 0.5380 +604 6688 0.8630 +604 6689 0.5150 +604 6693 0.7060 +604 6772 0.7320 +604 6773 0.4150 +604 6774 0.9030 +604 6775 0.6000 +604 6776 0.6480 +604 6777 0.6710 +604 6778 0.8700 +604 6850 0.4880 +604 6929 0.5060 +604 6932 0.5990 +604 6934 0.4930 +604 6938 0.4580 +604 7037 0.5110 +604 7050 0.4790 +604 7072 0.4180 +604 7097 0.4510 +604 7099 0.4800 +604 7124 0.5490 +604 7128 0.4900 +604 7157 0.9570 +604 7291 0.6160 +604 7293 0.4880 +604 7345 0.5760 +604 7374 0.4240 +604 7424 0.4260 +604 7494 0.7270 +604 7704 0.6050 +604 7709 0.8880 +604 7852 0.7090 +604 7874 0.5280 +604 8019 0.4200 +604 8085 0.4890 +604 8115 0.5820 +604 8289 0.7200 +604 8290 0.4120 +604 8294 0.5810 +604 8320 0.6210 +604 8322 0.4090 +604 8325 0.4080 +604 8356 0.4130 +604 8452 0.8540 +604 8454 0.4420 +604 8639 0.4170 +604 8651 0.5110 +604 8764 0.4110 +604 8832 0.4180 +604 8841 0.4860 +604 8850 0.5070 +604 8882 0.4740 +604 8915 0.5130 +604 9021 0.4340 +604 9034 0.5360 +604 9260 0.4200 +604 9294 0.4480 +604 9308 0.4170 +604 9314 0.4740 +604 9516 0.4800 +604 9611 0.9990 +604 9612 0.9990 +604 9655 0.4420 +604 9734 0.8880 +604 9759 0.9660 +604 9935 0.4720 +604 10014 0.6510 +604 10018 0.4850 +604 10219 0.5270 +604 10320 0.5860 +604 10419 0.4410 +604 10538 0.8500 +604 10563 0.7140 +604 10672 0.4090 +604 10673 0.5800 +604 10892 0.5070 +604 11023 0.4070 +604 11025 0.4730 +604 23013 0.4700 +604 23097 0.5520 +604 23308 0.6130 +604 23411 0.8300 +604 23598 0.4610 +604 23683 0.5570 +604 25942 0.8630 +604 27033 0.5210 +604 29102 0.4960 +604 29117 0.5390 +604 29126 0.5210 +604 29851 0.8200 +604 29895 0.4030 +604 30009 0.9150 +604 50615 0.7740 +604 50616 0.4460 +604 50943 0.8000 +604 51176 0.6670 +604 51185 0.4560 +604 51284 0.4410 +604 51341 0.6170 +604 51564 0.7620 +604 53335 0.8890 +604 54106 0.4020 +604 54345 0.4620 +604 54790 0.4540 +604 54880 0.9990 +604 57162 0.4670 +604 57379 0.8980 +604 57492 0.6250 +604 57504 0.9080 +604 57761 0.4060 +604 59067 0.8140 +604 60468 0.5870 +604 63035 0.7970 +604 64919 0.6090 +604 65980 0.4760 +604 79718 0.7170 +604 79923 0.5130 +604 80204 0.8050 +604 80380 0.4500 +604 80381 0.4180 +604 84159 0.4910 +604 84433 0.5420 +604 84678 0.6840 +604 84759 0.5610 +604 84868 0.4220 +604 114836 0.4290 +604 149041 0.4590 +604 151888 0.6230 +604 196528 0.5830 +604 255877 0.9100 +604 257144 0.5760 +604 327657 0.5840 +604 440093 0.4120 +604 440686 0.4120 +604 653604 0.4120 +604 728378 0.5410 +604 100271849 0.6100 +604 100423062 0.5810 +604 102723407 0.9130 +605 639 0.4910 +605 800 0.7150 +605 931 0.4990 +605 952 0.4100 +605 1880 0.4950 +605 4005 0.4370 +605 4311 0.4200 +605 4603 0.6220 +605 4609 0.4120 +605 5079 0.4360 +605 5134 0.4970 +605 5925 0.7230 +605 5977 0.9840 +605 6046 0.4650 +605 6595 0.9930 +605 6597 0.9970 +605 6598 0.9960 +605 6599 0.9930 +605 6601 0.9890 +605 6602 0.9960 +605 6603 0.9910 +605 6604 0.9890 +605 6605 0.9930 +605 6760 0.9870 +605 7161 0.4320 +605 8019 0.4560 +605 8193 0.9390 +605 8289 0.9960 +605 8519 0.4220 +605 8815 0.4490 +605 9274 0.9900 +605 9275 0.9640 +605 9437 0.7200 +605 10486 0.6170 +605 10487 0.6170 +605 11344 0.6060 +605 23248 0.5020 +605 23506 0.9830 +605 26039 0.7490 +605 29117 0.8660 +605 29998 0.9870 +605 51188 0.5220 +605 51412 0.9450 +605 53335 0.9650 +605 54617 0.4530 +605 55193 0.9720 +605 55274 0.9440 +605 57492 0.9890 +605 59067 0.4300 +605 64919 0.9540 +605 65980 0.9920 +605 79187 0.5130 +605 144406 0.5900 +605 196528 0.9630 +605 653781 0.6030 +605 728378 0.4510 +605 102723407 0.5050 +607 1387 0.5000 +607 1452 0.4750 +607 1487 0.5940 +607 1499 0.9990 +607 1855 0.4760 +607 2305 0.4610 +607 2330 0.5100 +607 2703 0.4190 +607 3012 0.4990 +607 3013 0.4990 +607 3014 0.4990 +607 3015 0.4990 +607 3017 0.4990 +607 3018 0.5080 +607 3020 0.8000 +607 3021 0.9150 +607 3065 0.5640 +607 3172 0.9790 +607 4040 0.4050 +607 4041 0.4400 +607 4209 0.4050 +607 4609 0.6490 +607 5565 0.4560 +607 5929 0.6970 +607 6597 0.5080 +607 6925 0.9300 +607 6932 0.6370 +607 6934 0.9760 +607 7015 0.5400 +607 7088 0.9250 +607 7089 0.5520 +607 7090 0.9130 +607 7091 0.9000 +607 8028 0.5010 +607 8085 0.5300 +607 8290 0.9150 +607 8294 0.4630 +607 8312 0.6690 +607 8313 0.4520 +607 8331 0.4990 +607 8334 0.4990 +607 8337 0.5160 +607 8338 0.5200 +607 8340 0.4990 +607 8341 0.4990 +607 8342 0.4990 +607 8345 0.4990 +607 8347 0.4990 +607 8348 0.4990 +607 8349 0.5360 +607 8350 0.8000 +607 8351 0.8000 +607 8352 0.8000 +607 8353 0.8000 +607 8354 0.8000 +607 8355 0.8000 +607 8356 0.9160 +607 8357 0.8000 +607 8358 0.8000 +607 8361 0.7270 +607 8861 0.9200 +607 8945 0.7890 +607 8968 0.8000 +607 8970 0.4990 +607 9070 0.5070 +607 9557 0.5200 +607 10413 0.4540 +607 10664 0.4350 +607 10856 0.4610 +607 26108 0.9990 +607 51176 0.9100 +607 51205 0.5830 +607 51463 0.5410 +607 54145 0.4990 +607 55766 0.4990 +607 55810 0.4180 +607 64170 0.4120 +607 64843 0.4220 +607 79368 0.4240 +607 79577 0.8520 +607 80854 0.4120 +607 83416 0.7210 +607 83417 0.7090 +607 83439 0.8030 +607 84444 0.4860 +607 85236 0.4990 +607 90780 0.9990 +607 94239 0.4990 +607 115350 0.4240 +607 115352 0.4240 +607 126961 0.8000 +607 128312 0.4990 +607 200030 0.5210 +607 255626 0.5070 +607 283149 0.9630 +607 333932 0.8000 +607 440093 0.8380 +607 440686 0.8380 +607 474382 0.4990 +607 653519 0.4460 +607 653604 0.9150 +607 100423062 0.4240 +608 639 0.4170 +608 819 0.5070 +608 915 0.4090 +608 919 0.5520 +608 920 0.5000 +608 925 0.4950 +608 930 0.7650 +608 931 0.6630 +608 933 0.6580 +608 939 0.8250 +608 940 0.5240 +608 941 0.4530 +608 943 0.6830 +608 944 0.5690 +608 945 0.4890 +608 952 0.7730 +608 958 0.8130 +608 959 0.8930 +608 968 0.5100 +608 970 0.7210 +608 973 0.7930 +608 974 0.5240 +608 1043 0.4030 +608 1380 0.4270 +608 1493 0.4250 +608 1789 0.4290 +608 2206 0.4100 +608 2209 0.4900 +608 2212 0.4140 +608 2213 0.5710 +608 2217 0.4470 +608 2346 0.4070 +608 2817 0.4220 +608 3003 0.4170 +608 3399 0.4710 +608 3458 0.4100 +608 3543 0.4930 +608 3563 0.4370 +608 3662 0.5780 +608 3695 0.5880 +608 3902 0.4510 +608 4063 0.4370 +608 4208 0.4380 +608 4345 0.5290 +608 4791 0.4680 +608 5071 0.4220 +608 5368 0.5980 +608 5450 0.8710 +608 5583 0.5480 +608 5996 0.4720 +608 6382 0.6220 +608 6846 0.4680 +608 7037 0.4240 +608 7124 0.6780 +608 7132 0.5910 +608 7187 0.4480 +608 7188 0.5660 +608 7189 0.6380 +608 7293 0.4700 +608 7494 0.4070 +608 8115 0.4350 +608 8600 0.5000 +608 8741 0.9970 +608 8742 0.5520 +608 8764 0.4060 +608 9308 0.5720 +608 10189 0.4240 +608 10232 0.4180 +608 10563 0.4190 +608 10673 0.9990 +608 10913 0.4160 +608 23495 0.9750 +608 29126 0.4160 +608 29802 0.5060 +608 51237 0.9990 +608 54491 0.5330 +608 54900 0.4770 +608 55507 0.5960 +608 57823 0.6820 +608 60401 0.5010 +608 80321 0.6840 +608 80380 0.5320 +608 81567 0.6330 +608 83416 0.7430 +608 84824 0.5000 +608 91319 0.6050 +608 115650 0.9440 +608 151888 0.4490 +608 157574 0.5910 +608 220107 0.4910 +608 221061 0.4120 +608 407977 0.6590 +608 100423062 0.7460 +608 102723407 0.5430 +610 3756 0.4100 +610 9992 0.4400 +610 10021 0.9730 +610 23373 0.6330 +610 51555 0.6190 +610 57657 0.9100 +610 148170 0.7690 +610 254910 0.4350 +610 346562 0.6590 +610 348980 0.9560 +611 778 0.4890 +611 1258 0.4360 +611 1259 0.4260 +611 1261 0.4840 +611 1406 0.6890 +611 1415 0.4710 +611 2652 0.7080 +611 2779 0.8260 +611 2780 0.8650 +611 2782 0.6320 +611 2783 0.5460 +611 2784 0.6810 +611 2785 0.6170 +611 2786 0.5730 +611 2787 0.5410 +611 2788 0.5800 +611 2790 0.5410 +611 2791 0.6110 +611 2792 0.8320 +611 2793 0.7270 +611 2916 0.5240 +611 2979 0.4470 +611 2986 0.4630 +611 4901 0.4990 +611 5015 0.4580 +611 5080 0.6410 +611 5132 0.4070 +611 5145 0.5360 +611 5146 0.5610 +611 5148 0.5220 +611 5149 0.6210 +611 5158 0.5270 +611 5458 0.4530 +611 5949 0.8280 +611 5956 0.5810 +611 5957 0.6500 +611 5961 0.4430 +611 5995 0.6590 +611 6010 0.7530 +611 6011 0.4560 +611 6017 0.5000 +611 6094 0.4870 +611 6103 0.4290 +611 6121 0.5070 +611 9187 0.4620 +611 9626 0.5080 +611 10002 0.6160 +611 10590 0.4120 +611 10681 0.6020 +611 10692 0.6210 +611 23596 0.5780 +611 25769 0.4370 +611 27098 0.4090 +611 51151 0.4020 +611 51764 0.5520 +611 54331 0.5700 +611 54714 0.4180 +611 55212 0.4180 +611 55970 0.5560 +611 59345 0.5520 +611 94235 0.5410 +611 130557 0.7260 +611 221391 0.6550 +611 285331 0.4510 +611 338917 0.5550 +611 344658 0.4730 +611 729920 0.4190 +613 857 0.4080 +613 861 0.4040 +613 867 0.9710 +613 1021 0.4300 +613 1173 0.4860 +613 1398 0.9450 +613 1399 0.9750 +613 1459 0.5030 +613 1523 0.4250 +613 1729 0.4050 +613 2040 0.4030 +613 2071 0.7310 +613 2125 0.6230 +613 2242 0.6460 +613 2246 0.4130 +613 2247 0.4280 +613 2260 0.5130 +613 2319 0.4110 +613 2322 0.4180 +613 2803 0.4750 +613 2885 0.9940 +613 3055 0.5840 +613 3205 0.4860 +613 3320 0.6960 +613 3431 0.4280 +613 3543 0.5110 +613 3562 0.4300 +613 3725 0.4320 +613 3728 0.4150 +613 3815 0.8070 +613 3899 0.4140 +613 3927 0.4950 +613 4162 0.4090 +613 4297 0.5590 +613 4298 0.5330 +613 4299 0.6680 +613 4300 0.7690 +613 4301 0.7600 +613 4302 0.4850 +613 4609 0.4650 +613 4629 0.4650 +613 4650 0.5110 +613 5174 0.5360 +613 5226 0.5500 +613 5290 0.5590 +613 5294 0.7320 +613 5295 0.7440 +613 5335 0.5430 +613 5413 0.4550 +613 5585 0.4620 +613 5586 0.4460 +613 5777 0.4170 +613 5879 0.6990 +613 5880 0.5360 +613 5881 0.5210 +613 5888 0.4400 +613 5890 0.4200 +613 5914 0.7610 +613 6093 0.4680 +613 6242 0.4330 +613 6464 0.9250 +613 6654 0.6180 +613 6714 0.4150 +613 6772 0.5400 +613 6774 0.5870 +613 6776 0.9240 +613 6777 0.9360 +613 6793 0.4090 +613 7037 0.4670 +613 7153 0.5190 +613 7157 0.5800 +613 7289 0.4340 +613 7441 0.5510 +613 7750 0.5220 +613 8028 0.5130 +613 8805 0.4050 +613 8816 0.7580 +613 8826 0.4090 +613 8833 0.4980 +613 9208 0.4210 +613 9414 0.5250 +613 9475 0.4560 +613 9748 0.4050 +613 9846 0.7370 +613 9883 0.4430 +613 10243 0.4460 +613 10923 0.4240 +613 10978 0.4890 +613 11052 0.4680 +613 11064 0.4130 +613 11113 0.4050 +613 11160 0.4050 +613 23002 0.4980 +613 23048 0.4220 +613 23157 0.4270 +613 23365 0.4110 +613 25759 0.9000 +613 26127 0.5150 +613 27154 0.4200 +613 29941 0.4450 +613 53358 0.9010 +613 55914 0.5940 +613 57082 0.4910 +613 81624 0.4030 +613 81839 0.4090 +613 84324 0.4920 +613 85476 0.5800 +613 128239 0.4090 +613 221421 0.4200 +613 399687 0.5650 +613 399694 0.9000 +613 400745 0.7380 +613 100423062 0.4740 +617 972 0.5090 +617 1327 0.6850 +617 1329 0.7170 +617 1337 0.7000 +617 1339 0.7780 +617 1340 0.7190 +617 1345 0.6300 +617 1346 0.4380 +617 1347 0.6280 +617 1349 0.6680 +617 1350 0.7850 +617 1351 0.6940 +617 1352 0.9330 +617 1353 0.4910 +617 1355 0.9420 +617 1431 0.6430 +617 1468 0.4250 +617 1537 0.8450 +617 1678 0.6770 +617 1716 0.6150 +617 2040 0.4900 +617 2058 0.4680 +617 2193 0.6940 +617 2323 0.5390 +617 2395 0.6820 +617 3052 0.5750 +617 3251 0.6410 +617 3313 0.7450 +617 3329 0.6630 +617 3336 0.4210 +617 3396 0.5400 +617 3421 0.5100 +617 3954 0.5730 +617 4358 0.5830 +617 4508 0.7390 +617 4512 0.8740 +617 4513 0.8310 +617 4514 0.8880 +617 4519 0.8290 +617 4528 0.5030 +617 4536 0.6010 +617 4537 0.5550 +617 4540 0.6120 +617 4541 0.5540 +617 4695 0.6520 +617 4697 0.7950 +617 4702 0.4410 +617 4704 0.4540 +617 4709 0.4440 +617 4713 0.5700 +617 4714 0.6870 +617 4720 0.5210 +617 4722 0.7010 +617 4723 0.8020 +617 4724 0.7420 +617 4725 0.5180 +617 4726 0.4900 +617 4728 0.7400 +617 5009 0.5060 +617 5018 0.5540 +617 5096 0.4190 +617 5188 0.4550 +617 5245 0.5630 +617 5286 0.4730 +617 5428 0.5170 +617 5432 0.4550 +617 5469 0.5020 +617 5832 0.4190 +617 6122 0.5060 +617 6123 0.5010 +617 6124 0.4500 +617 6125 0.4440 +617 6132 0.5290 +617 6133 0.4990 +617 6135 0.5300 +617 6139 0.5120 +617 6147 0.4200 +617 6175 0.4640 +617 6183 0.6080 +617 6187 0.5330 +617 6193 0.5250 +617 6203 0.5290 +617 6205 0.5220 +617 6207 0.4710 +617 6208 0.5130 +617 6217 0.4430 +617 6222 0.5230 +617 6224 0.5080 +617 6228 0.5200 +617 6235 0.5020 +617 6341 0.6050 +617 6389 0.8380 +617 6390 0.4380 +617 6392 0.4400 +617 6648 0.4420 +617 6742 0.5450 +617 6821 0.4040 +617 6834 0.8040 +617 6901 0.7050 +617 7284 0.6410 +617 7381 0.9550 +617 7384 0.8310 +617 7385 0.9200 +617 7386 0.9520 +617 7388 0.7960 +617 7407 0.4450 +617 7416 0.6460 +617 7827 0.5090 +617 7922 0.8250 +617 8086 0.4090 +617 8192 0.6230 +617 8225 0.4580 +617 8577 0.4260 +617 8604 0.5470 +617 8624 0.5100 +617 8802 0.4550 +617 8803 0.4500 +617 9131 0.4590 +617 9167 0.5660 +617 9349 0.6260 +617 9361 0.5350 +617 9377 0.8240 +617 9399 0.5510 +617 9533 0.4440 +617 9553 0.4330 +617 9669 0.4370 +617 9801 0.6700 +617 9804 0.5610 +617 9868 0.5790 +617 9997 0.7050 +617 10058 0.5900 +617 10063 0.6460 +617 10102 0.5790 +617 10128 0.6520 +617 10165 0.5770 +617 10201 0.4950 +617 10245 0.5890 +617 10269 0.4150 +617 10273 0.5400 +617 10440 0.6310 +617 10452 0.6580 +617 10469 0.7270 +617 10667 0.4040 +617 10845 0.7000 +617 10975 0.7840 +617 10989 0.4530 +617 11222 0.5190 +617 11331 0.5940 +617 22984 0.5740 +617 23203 0.4490 +617 23474 0.4910 +617 23521 0.5480 +617 23590 0.5870 +617 23640 0.4590 +617 24140 0.5300 +617 25813 0.4950 +617 26284 0.4510 +617 26515 0.4250 +617 26517 0.6400 +617 26519 0.7140 +617 26520 0.6670 +617 26521 0.5960 +617 26589 0.4700 +617 27089 0.9740 +617 27235 0.6820 +617 28958 0.4100 +617 28976 0.5640 +617 28998 0.5460 +617 29078 0.4280 +617 29090 0.6340 +617 29093 0.5380 +617 29796 0.8460 +617 29928 0.6900 +617 29960 0.5300 +617 30968 0.5140 +617 50484 0.4860 +617 51001 0.4380 +617 51004 0.4230 +617 51021 0.7480 +617 51023 0.4920 +617 51025 0.6290 +617 51069 0.6620 +617 51073 0.5450 +617 51081 0.6330 +617 51103 0.4880 +617 51116 0.4440 +617 51142 0.5800 +617 51149 0.4790 +617 51154 0.4960 +617 51204 0.7780 +617 51264 0.6900 +617 51287 0.6770 +617 51295 0.4190 +617 54059 0.4280 +617 54205 0.5070 +617 54543 0.4580 +617 54802 0.5110 +617 54902 0.7840 +617 54927 0.5780 +617 54948 0.7840 +617 54963 0.4920 +617 54968 0.4660 +617 55052 0.5660 +617 55154 0.4760 +617 55157 0.5230 +617 55168 0.5660 +617 55173 0.5280 +617 55245 0.7120 +617 55272 0.5450 +617 55316 0.5580 +617 55572 0.6900 +617 55651 0.4210 +617 55687 0.6090 +617 56652 0.4550 +617 56901 0.5520 +617 56942 0.5570 +617 56952 0.6270 +617 56993 0.5770 +617 57017 0.6790 +617 57107 0.5410 +617 57505 0.4620 +617 63875 0.7100 +617 63931 0.5280 +617 64077 0.4230 +617 64374 0.5040 +617 64756 0.5410 +617 64960 0.5450 +617 64963 0.6550 +617 64965 0.6830 +617 64969 0.5800 +617 64976 0.5010 +617 64979 0.7070 +617 64981 0.5160 +617 65003 0.4100 +617 65005 0.5990 +617 65008 0.4630 +617 79133 0.6870 +617 79145 0.5630 +617 79590 0.6560 +617 80273 0.6720 +617 81570 0.4220 +617 83752 0.5070 +617 84262 0.4140 +617 84269 0.5280 +617 84300 0.5990 +617 84419 0.5400 +617 84545 0.4170 +617 84656 0.4130 +617 84701 0.7180 +617 85476 0.5330 +617 90624 0.7910 +617 90639 0.6340 +617 91252 0.4800 +617 91647 0.5460 +617 91942 0.7010 +617 92170 0.7040 +617 92399 0.6460 +617 92609 0.6770 +617 115209 0.4590 +617 117246 0.5180 +617 125965 0.4560 +617 126328 0.4640 +617 126402 0.5130 +617 128308 0.4660 +617 131118 0.6180 +617 134266 0.6660 +617 137682 0.7170 +617 150274 0.7130 +617 161003 0.4900 +617 170712 0.5400 +617 197257 0.5310 +617 219927 0.6150 +617 341947 0.6050 +617 374291 0.7740 +617 374969 0.4480 +617 388753 0.6510 +617 400916 0.5740 +617 401505 0.4560 +617 440567 0.6120 +617 644096 0.4780 +617 790955 0.6400 +617 100131801 0.4620 +617 100188893 0.4470 +617 100272147 0.5180 +617 100287932 0.6540 +617 100526842 0.5070 +622 949 0.4470 +622 950 0.4070 +622 1374 0.4090 +622 1376 0.4510 +622 1962 0.4710 +622 2180 0.4530 +622 3030 0.4180 +622 3032 0.4750 +622 3155 0.9760 +622 3157 0.5390 +622 3158 0.7440 +622 4329 0.5380 +622 5019 0.9840 +622 5095 0.4010 +622 5105 0.4040 +622 5130 0.5120 +622 5465 0.4240 +622 5834 0.4100 +622 5836 0.4420 +622 6566 0.4540 +622 7037 0.4520 +622 9194 0.4300 +622 10449 0.5830 +622 22916 0.5070 +622 26043 0.4860 +622 26063 0.4180 +622 54511 0.9460 +622 55526 0.5170 +622 55825 0.4430 +622 56898 0.9720 +622 64064 0.9580 +622 65985 0.9360 +622 80235 0.5310 +622 80347 0.4500 +622 84532 0.4160 +622 131540 0.5070 +622 165918 0.4180 +622 200931 0.4070 +622 200933 0.5600 +622 205564 0.4540 +622 348793 0.5910 +623 624 0.9690 +623 680 0.4180 +623 695 0.5120 +623 710 0.4800 +623 718 0.5890 +623 719 0.5330 +623 727 0.5340 +623 728 0.5400 +623 819 0.4930 +623 846 0.4550 +623 885 0.5240 +623 886 0.5050 +623 887 0.4660 +623 1131 0.6920 +623 1325 0.4990 +623 1368 0.7860 +623 1369 0.5050 +623 1636 0.8740 +623 1815 0.4260 +623 1902 0.4370 +623 1906 0.9290 +623 1907 0.4990 +623 1908 0.5850 +623 1909 0.4690 +623 1910 0.5190 +623 1950 0.4930 +623 2147 0.9090 +623 2149 0.4490 +623 2150 0.4290 +623 2151 0.4320 +623 2160 0.4190 +623 2161 0.4060 +623 2358 0.4300 +623 2587 0.5150 +623 2693 0.6250 +623 2767 0.9150 +623 2769 0.6990 +623 2775 0.4590 +623 2776 0.9740 +623 2782 0.9520 +623 2783 0.5450 +623 2784 0.6470 +623 2785 0.5800 +623 2786 0.5970 +623 2787 0.5410 +623 2788 0.5620 +623 2790 0.5580 +623 2791 0.5600 +623 2792 0.5510 +623 2793 0.5410 +623 2832 0.5080 +623 2837 0.4040 +623 2840 0.4050 +623 2847 0.4390 +623 2852 0.5120 +623 2861 0.5260 +623 2869 0.5610 +623 2918 0.4040 +623 2922 0.5320 +623 2925 0.6400 +623 3356 0.4170 +623 3357 0.4320 +623 3363 0.4370 +623 3576 0.6030 +623 3579 0.4010 +623 3814 0.5240 +623 3816 0.5760 +623 3817 0.4120 +623 3818 0.6480 +623 3827 0.9990 +623 3952 0.4200 +623 4160 0.4190 +623 4295 0.5000 +623 4828 0.5950 +623 4829 0.4220 +623 4852 0.5610 +623 4886 0.5410 +623 4887 0.5360 +623 4889 0.5280 +623 4922 0.6070 +623 4923 0.4160 +623 4985 0.6750 +623 4988 0.5270 +623 5029 0.4030 +623 5173 0.6040 +623 5179 0.6980 +623 5330 0.5020 +623 5331 0.5260 +623 5367 0.5320 +623 5368 0.5910 +623 5443 0.5660 +623 5539 0.4990 +623 5540 0.5110 +623 5595 0.5090 +623 5660 0.4990 +623 5697 0.4990 +623 5972 0.5070 +623 5996 0.5080 +623 5998 0.4990 +623 5999 0.5180 +623 6003 0.4990 +623 6004 0.5000 +623 6714 0.5340 +623 6750 0.5080 +623 6751 0.5110 +623 6752 0.5050 +623 6753 0.4990 +623 6754 0.5050 +623 6755 0.5140 +623 7200 0.5110 +623 7201 0.4210 +623 7204 0.5000 +623 7442 0.5830 +623 7443 0.8520 +623 7444 0.8750 +623 8484 0.4990 +623 8490 0.5140 +623 8811 0.5160 +623 8862 0.6230 +623 8989 0.7440 +623 8997 0.4990 +623 9002 0.4040 +623 9170 0.5040 +623 9283 0.7360 +623 9370 0.4030 +623 9622 0.8330 +623 9630 0.6820 +623 9737 0.5400 +623 10287 0.4990 +623 10316 0.4490 +623 10399 0.4240 +623 10681 0.5450 +623 10800 0.4380 +623 10874 0.5270 +623 10911 0.5010 +623 23236 0.5160 +623 23566 0.4720 +623 23620 0.4190 +623 26575 0.5000 +623 50832 0.4280 +623 51083 0.5150 +623 51738 0.5340 +623 51764 0.5410 +623 54331 0.9040 +623 55970 0.9090 +623 56923 0.4300 +623 57085 0.6550 +623 57105 0.4040 +623 57121 0.4080 +623 57486 0.4860 +623 59272 0.5230 +623 59345 0.5520 +623 60675 0.4990 +623 64407 0.4990 +623 79054 0.5640 +623 81851 0.4390 +623 84432 0.5240 +623 84539 0.4060 +623 84634 0.4070 +623 94235 0.5410 +623 115557 0.5010 +623 129521 0.4990 +623 256933 0.5290 +623 257313 0.5010 +623 283869 0.5350 +623 387129 0.6260 +623 431704 0.4990 +623 594857 0.5820 +624 680 0.4270 +624 695 0.5110 +624 710 0.5900 +624 718 0.5630 +624 719 0.5350 +624 727 0.5440 +624 728 0.5260 +624 819 0.4280 +624 846 0.4710 +624 885 0.5450 +624 886 0.5100 +624 887 0.4990 +624 1131 0.6040 +624 1325 0.4990 +624 1368 0.5580 +624 1369 0.5150 +624 1636 0.9170 +624 1902 0.5470 +624 1906 0.9350 +624 1907 0.5130 +624 1908 0.5730 +624 1909 0.5470 +624 1910 0.5370 +624 1950 0.6030 +624 2147 0.9100 +624 2149 0.5280 +624 2150 0.4240 +624 2151 0.4280 +624 2160 0.4420 +624 2161 0.4380 +624 2358 0.4230 +624 2587 0.5170 +624 2693 0.4160 +624 2767 0.9250 +624 2768 0.4590 +624 2769 0.9210 +624 2770 0.9090 +624 2771 0.9100 +624 2773 0.9090 +624 2775 0.4970 +624 2776 0.9820 +624 2782 0.9520 +624 2783 0.5450 +624 2784 0.6680 +624 2785 0.5510 +624 2786 0.5410 +624 2787 0.5410 +624 2788 0.5410 +624 2790 0.5570 +624 2791 0.5520 +624 2792 0.5410 +624 2793 0.5410 +624 2832 0.5160 +624 2837 0.4140 +624 2840 0.4050 +624 2847 0.4280 +624 2852 0.5490 +624 2861 0.5270 +624 2862 0.4060 +624 2869 0.6000 +624 2918 0.4020 +624 2922 0.5480 +624 2925 0.6350 +624 3269 0.4220 +624 3356 0.4130 +624 3357 0.4020 +624 3576 0.5750 +624 3619 0.4290 +624 3708 0.5400 +624 3710 0.5590 +624 3814 0.5140 +624 3816 0.6900 +624 3817 0.6290 +624 3818 0.6710 +624 3827 0.9990 +624 4295 0.5000 +624 4828 0.5320 +624 4829 0.6650 +624 4842 0.4380 +624 4846 0.4510 +624 4852 0.5500 +624 4886 0.5340 +624 4887 0.5060 +624 4889 0.5800 +624 4922 0.6120 +624 4923 0.4300 +624 4985 0.6730 +624 4988 0.5430 +624 5029 0.4090 +624 5173 0.6030 +624 5179 0.6890 +624 5330 0.5200 +624 5331 0.5380 +624 5367 0.4990 +624 5368 0.5770 +624 5443 0.5650 +624 5539 0.4990 +624 5540 0.5280 +624 5595 0.5510 +624 5660 0.4990 +624 5697 0.5000 +624 5781 0.4140 +624 5972 0.5070 +624 5996 0.5160 +624 5998 0.5400 +624 5999 0.5390 +624 6003 0.5220 +624 6004 0.5300 +624 6714 0.5890 +624 6750 0.5400 +624 6751 0.5300 +624 6752 0.5080 +624 6753 0.4990 +624 6754 0.5100 +624 6755 0.5150 +624 6863 0.4640 +624 7200 0.5340 +624 7201 0.4830 +624 7204 0.5000 +624 7442 0.6370 +624 8484 0.4990 +624 8490 0.5480 +624 8811 0.5180 +624 8862 0.5980 +624 8989 0.7260 +624 8997 0.5000 +624 9002 0.4260 +624 9170 0.5250 +624 9283 0.7230 +624 9622 0.8500 +624 9630 0.9130 +624 10287 0.5230 +624 10316 0.4160 +624 10681 0.5530 +624 10800 0.4330 +624 10874 0.5280 +624 10911 0.5160 +624 11004 0.4240 +624 23236 0.5720 +624 23566 0.4900 +624 23620 0.4170 +624 26575 0.5280 +624 51083 0.5300 +624 51738 0.5510 +624 51764 0.5410 +624 54331 0.9040 +624 55970 0.9140 +624 57085 0.6200 +624 57121 0.4080 +624 57486 0.4830 +624 57509 0.7270 +624 58503 0.5930 +624 59272 0.4850 +624 59345 0.5520 +624 59350 0.4550 +624 60675 0.5140 +624 64407 0.5190 +624 79054 0.6010 +624 84432 0.5090 +624 94235 0.5410 +624 115557 0.5290 +624 129521 0.4990 +624 256933 0.5280 +624 257313 0.5010 +624 283869 0.5340 +624 378708 0.4290 +624 387129 0.6030 +624 431704 0.5260 +624 594857 0.5370 +627 633 0.4330 +627 652 0.4880 +627 654 0.4820 +627 706 0.4140 +627 762 0.4310 +627 775 0.4480 +627 793 0.6160 +627 794 0.5530 +627 808 0.7460 +627 810 0.7480 +627 814 0.5900 +627 815 0.6470 +627 818 0.5060 +627 834 0.4570 +627 836 0.7200 +627 842 0.4350 +627 857 0.4320 +627 885 0.5040 +627 920 0.4460 +627 947 0.4460 +627 958 0.4280 +627 960 0.4290 +627 968 0.4340 +627 1000 0.4090 +627 1020 0.8470 +627 1072 0.6670 +627 1073 0.6770 +627 1103 0.6970 +627 1135 0.5010 +627 1143 0.4800 +627 1191 0.6120 +627 1267 0.4420 +627 1268 0.7840 +627 1270 0.9150 +627 1271 0.8010 +627 1312 0.9190 +627 1363 0.7470 +627 1385 0.9560 +627 1387 0.8860 +627 1392 0.8180 +627 1394 0.6670 +627 1395 0.5590 +627 1401 0.7200 +627 1420 0.5180 +627 1436 0.7600 +627 1437 0.5060 +627 1440 0.4640 +627 1499 0.5560 +627 1524 0.5170 +627 1588 0.4350 +627 1621 0.4800 +627 1641 0.7780 +627 1644 0.4290 +627 1734 0.4750 +627 1742 0.7860 +627 1746 0.4710 +627 1786 0.6360 +627 1788 0.4640 +627 1789 0.4200 +627 1791 0.4710 +627 1795 0.5840 +627 1808 0.4340 +627 1812 0.7950 +627 1813 0.7900 +627 1814 0.8410 +627 1815 0.8170 +627 1843 0.5860 +627 1906 0.5140 +627 1938 0.6900 +627 1946 0.4600 +627 1947 0.7100 +627 1948 0.7570 +627 1949 0.5910 +627 1950 0.7980 +627 1956 0.8770 +627 1958 0.6430 +627 1959 0.4850 +627 1960 0.4240 +627 1969 0.7080 +627 2026 0.5790 +627 2033 0.4050 +627 2056 0.7530 +627 2064 0.7460 +627 2065 0.7340 +627 2066 0.7810 +627 2099 0.5620 +627 2100 0.5260 +627 2146 0.5770 +627 2166 0.4310 +627 2246 0.7070 +627 2247 0.8400 +627 2248 0.7550 +627 2249 0.6470 +627 2250 0.7840 +627 2251 0.6520 +627 2252 0.7740 +627 2253 0.7780 +627 2254 0.7690 +627 2255 0.6490 +627 2258 0.6650 +627 2260 0.8640 +627 2261 0.7470 +627 2263 0.8270 +627 2264 0.7080 +627 2289 0.6320 +627 2290 0.5470 +627 2321 0.7690 +627 2322 0.6950 +627 2324 0.7150 +627 2332 0.6050 +627 2335 0.6950 +627 2353 0.7480 +627 2354 0.5310 +627 2475 0.6520 +627 2521 0.4460 +627 2534 0.8280 +627 2549 0.6700 +627 2550 0.5820 +627 2554 0.5330 +627 2555 0.5050 +627 2557 0.4290 +627 2558 0.4960 +627 2571 0.6960 +627 2572 0.7390 +627 2596 0.7480 +627 2597 0.7090 +627 2638 0.4970 +627 2641 0.4670 +627 2660 0.4100 +627 2668 0.9630 +627 2670 0.8040 +627 2674 0.9280 +627 2675 0.6400 +627 2676 0.6060 +627 2697 0.4090 +627 2740 0.4280 +627 2752 0.4280 +627 2877 0.5220 +627 2878 0.5250 +627 2880 0.5320 +627 2882 0.5300 +627 2885 0.7790 +627 2890 0.8280 +627 2891 0.6180 +627 2892 0.4690 +627 2893 0.4790 +627 2902 0.7450 +627 2903 0.8190 +627 2904 0.9310 +627 2905 0.6240 +627 2906 0.6280 +627 2908 0.7880 +627 2911 0.5290 +627 2912 0.6100 +627 2913 0.6590 +627 2914 0.4830 +627 2915 0.6360 +627 2917 0.5000 +627 2918 0.4620 +627 2932 0.6720 +627 2936 0.4180 +627 3005 0.4390 +627 3021 0.5140 +627 3060 0.5770 +627 3064 0.8230 +627 3065 0.7260 +627 3066 0.6960 +627 3082 0.5990 +627 3084 0.7370 +627 3091 0.5210 +627 3146 0.4230 +627 3162 0.6270 +627 3164 0.4130 +627 3170 0.4160 +627 3265 0.5920 +627 3308 0.6500 +627 3350 0.8160 +627 3351 0.5610 +627 3356 0.8900 +627 3357 0.5200 +627 3358 0.5810 +627 3359 0.4240 +627 3383 0.6210 +627 3416 0.4480 +627 3458 0.6040 +627 3479 0.8590 +627 3480 0.9070 +627 3481 0.6500 +627 3552 0.6450 +627 3553 0.8440 +627 3554 0.4680 +627 3558 0.4790 +627 3565 0.5890 +627 3569 0.8460 +627 3570 0.4100 +627 3576 0.7130 +627 3586 0.6950 +627 3587 0.4560 +627 3596 0.4480 +627 3600 0.4130 +627 3603 0.4610 +627 3605 0.4740 +627 3606 0.4820 +627 3620 0.4470 +627 3630 0.7500 +627 3643 0.7260 +627 3667 0.4180 +627 3670 0.4680 +627 3684 0.4760 +627 3700 0.6080 +627 3708 0.5690 +627 3710 0.5570 +627 3725 0.6440 +627 3782 0.4020 +627 3791 0.7950 +627 3815 0.8410 +627 3845 0.5960 +627 3913 0.4050 +627 3952 0.7320 +627 3953 0.4850 +627 3976 0.6020 +627 3984 0.6260 +627 4009 0.4660 +627 4035 0.4830 +627 4099 0.6810 +627 4128 0.7410 +627 4129 0.7080 +627 4131 0.4160 +627 4133 0.7130 +627 4137 0.6510 +627 4155 0.6830 +627 4160 0.7610 +627 4204 0.9650 +627 4233 0.7420 +627 4254 0.4330 +627 4306 0.4910 +627 4313 0.4360 +627 4314 0.4090 +627 4318 0.7400 +627 4340 0.4630 +627 4353 0.4730 +627 4609 0.4420 +627 4616 0.4700 +627 4684 0.7670 +627 4685 0.4100 +627 4744 0.4740 +627 4747 0.5350 +627 4760 0.6680 +627 4761 0.4590 +627 4762 0.5000 +627 4780 0.4940 +627 4790 0.5400 +627 4803 0.6980 +627 4804 0.9990 +627 4842 0.5110 +627 4846 0.4360 +627 4852 0.8250 +627 4853 0.4750 +627 4854 0.4660 +627 4885 0.4210 +627 4893 0.5660 +627 4897 0.6130 +627 4902 0.7610 +627 4907 0.4510 +627 4908 0.9910 +627 4909 0.9900 +627 4914 0.9990 +627 4915 0.9990 +627 4922 0.4300 +627 4923 0.7690 +627 4929 0.5800 +627 4974 0.6280 +627 4975 0.4050 +627 4988 0.5990 +627 5015 0.6410 +627 5020 0.6100 +627 5021 0.5610 +627 5024 0.4760 +627 5025 0.5710 +627 5045 0.4890 +627 5054 0.4060 +627 5071 0.4230 +627 5080 0.6160 +627 5122 0.4510 +627 5156 0.8600 +627 5159 0.7610 +627 5173 0.5820 +627 5175 0.5540 +627 5179 0.5800 +627 5196 0.4790 +627 5197 0.4440 +627 5290 0.5730 +627 5295 0.5950 +627 5309 0.4460 +627 5327 0.7570 +627 5330 0.4480 +627 5335 0.7150 +627 5340 0.6050 +627 5367 0.4180 +627 5368 0.6120 +627 5443 0.7270 +627 5454 0.4150 +627 5457 0.5100 +627 5460 0.5120 +627 5465 0.4390 +627 5468 0.5610 +627 5478 0.5220 +627 5566 0.6480 +627 5567 0.6370 +627 5568 0.7480 +627 5594 0.8450 +627 5595 0.9420 +627 5610 0.4870 +627 5617 0.5890 +627 5623 0.4690 +627 5649 0.5200 +627 5663 0.6860 +627 5664 0.5170 +627 5725 0.5210 +627 5728 0.6250 +627 5743 0.6540 +627 5764 0.4510 +627 5781 0.6300 +627 5788 0.4240 +627 5816 0.7760 +627 5879 0.6070 +627 5896 0.4370 +627 5978 0.7050 +627 5979 0.7410 +627 5998 0.4010 +627 5999 0.4030 +627 6005 0.4100 +627 6095 0.4810 +627 6198 0.6420 +627 6272 0.9980 +627 6285 0.7860 +627 6336 0.4060 +627 6346 0.4470 +627 6347 0.5970 +627 6348 0.4320 +627 6356 0.5690 +627 6376 0.6280 +627 6387 0.6990 +627 6401 0.4340 +627 6464 0.8390 +627 6469 0.7250 +627 6505 0.4190 +627 6506 0.6190 +627 6507 0.5730 +627 6513 0.6010 +627 6530 0.4800 +627 6531 0.6970 +627 6532 0.9220 +627 6547 0.4810 +627 6558 0.4920 +627 6571 0.5180 +627 6572 0.4180 +627 6586 0.4290 +627 6608 0.5610 +627 6616 0.5880 +627 6622 0.7980 +627 6647 0.5870 +627 6653 0.4690 +627 6654 0.5830 +627 6656 0.4790 +627 6657 0.6360 +627 6663 0.4740 +627 6714 0.6880 +627 6750 0.7230 +627 6774 0.6850 +627 6844 0.4010 +627 6853 0.7720 +627 6854 0.6190 +627 6855 0.8330 +627 6857 0.5130 +627 6863 0.8400 +627 6869 0.4730 +627 7010 0.7390 +627 7019 0.4110 +627 7040 0.5700 +627 7042 0.4240 +627 7043 0.4660 +627 7052 0.4460 +627 7054 0.8370 +627 7067 0.4040 +627 7068 0.4370 +627 7070 0.6480 +627 7074 0.8490 +627 7076 0.6040 +627 7079 0.4590 +627 7097 0.6150 +627 7099 0.5930 +627 7122 0.4060 +627 7124 0.7390 +627 7133 0.5130 +627 7157 0.5200 +627 7166 0.5590 +627 7220 0.5770 +627 7222 0.6500 +627 7224 0.5170 +627 7225 0.5930 +627 7295 0.5760 +627 7297 0.5000 +627 7345 0.4780 +627 7412 0.5530 +627 7423 0.5620 +627 7425 0.8070 +627 7432 0.4920 +627 7442 0.6530 +627 7837 0.7730 +627 7852 0.4920 +627 8074 0.4720 +627 8087 0.4320 +627 8224 0.6190 +627 8290 0.5160 +627 8356 0.5120 +627 8817 0.6570 +627 8822 0.6420 +627 8823 0.6370 +627 8851 0.6060 +627 8864 0.4280 +627 8989 0.5080 +627 9001 0.8260 +627 9048 0.5840 +627 9201 0.4270 +627 9241 0.6930 +627 9314 0.4330 +627 9353 0.4220 +627 9369 0.4550 +627 9370 0.4600 +627 9378 0.5150 +627 9379 0.4490 +627 9423 0.7080 +627 9451 0.4790 +627 9456 0.6060 +627 9463 0.4650 +627 9500 0.4930 +627 9513 0.4490 +627 9568 0.4820 +627 9588 0.4830 +627 9607 0.4310 +627 9615 0.5080 +627 9743 0.5870 +627 9759 0.4380 +627 9900 0.5560 +627 9915 0.5840 +627 9990 0.4220 +627 10014 0.4210 +627 10215 0.6350 +627 10243 0.4750 +627 10280 0.5040 +627 10362 0.4460 +627 10371 0.6260 +627 10381 0.5120 +627 10716 0.4820 +627 10763 0.7590 +627 10817 0.5760 +627 10818 0.6590 +627 10891 0.5890 +627 11075 0.4140 +627 11266 0.5150 +627 11280 0.5670 +627 11315 0.4380 +627 11343 0.5160 +627 22871 0.4690 +627 23017 0.4320 +627 23237 0.6850 +627 23316 0.4180 +627 23411 0.6520 +627 23435 0.5000 +627 23621 0.6380 +627 23788 0.4470 +627 25942 0.6380 +627 25946 0.5220 +627 25970 0.6910 +627 26281 0.6610 +627 26291 0.4770 +627 27006 0.6520 +627 27185 0.6100 +627 29904 0.4350 +627 50848 0.4400 +627 51083 0.5320 +627 51299 0.8250 +627 51435 0.4300 +627 51455 0.4200 +627 51738 0.5350 +627 51806 0.7480 +627 53358 0.5250 +627 54205 0.5930 +627 54209 0.4710 +627 54413 0.4490 +627 55322 0.4290 +627 55327 0.4910 +627 55366 0.4590 +627 57030 0.6300 +627 57084 0.5310 +627 57142 0.5390 +627 57468 0.7940 +627 57498 0.4600 +627 57537 0.8900 +627 57555 0.4030 +627 59277 0.4100 +627 63973 0.6310 +627 63974 0.4420 +627 64805 0.4860 +627 65018 0.4180 +627 65078 0.7560 +627 79006 0.5840 +627 79047 0.5280 +627 79068 0.5400 +627 79258 0.4450 +627 79800 0.6370 +627 79813 0.4670 +627 79923 0.4480 +627 80312 0.5930 +627 84062 0.4740 +627 84152 0.6030 +627 84189 0.4670 +627 84634 0.5080 +627 84894 0.4880 +627 85358 0.4740 +627 89866 0.5180 +627 91057 0.4060 +627 91860 0.8140 +627 93664 0.6440 +627 116443 0.5870 +627 116444 0.5360 +627 116448 0.4650 +627 121278 0.5810 +627 129787 0.5710 +627 132204 0.4430 +627 132789 0.5710 +627 137902 0.7660 +627 140679 0.4790 +627 146713 0.7690 +627 163688 0.7480 +627 169355 0.4030 +627 200186 0.5040 +627 200424 0.5830 +627 203228 0.4100 +627 220074 0.6200 +627 252995 0.6750 +627 255239 0.5000 +627 257194 0.5110 +627 257202 0.5310 +627 266743 0.7740 +627 375790 0.5970 +627 440093 0.5150 +627 440686 0.5270 +627 441549 0.6630 +627 493869 0.5510 +627 594857 0.5240 +627 653604 0.5270 +627 104909134 0.6560 +629 667 0.4720 +629 710 0.8800 +629 712 0.7950 +629 714 0.4940 +629 715 0.5240 +629 716 0.6170 +629 717 0.7100 +629 718 0.9990 +629 719 0.5410 +629 720 0.9700 +629 721 0.9480 +629 722 0.6280 +629 727 0.7740 +629 728 0.6800 +629 729 0.5070 +629 731 0.5930 +629 732 0.5230 +629 733 0.5490 +629 735 0.6850 +629 966 0.5890 +629 1071 0.5670 +629 1191 0.6930 +629 1295 0.4290 +629 1308 0.5160 +629 1356 0.5130 +629 1361 0.4230 +629 1378 0.7950 +629 1401 0.4480 +629 1471 0.4740 +629 1512 0.4850 +629 1604 0.8010 +629 1675 0.9970 +629 1811 0.4050 +629 2044 0.5530 +629 2074 0.4860 +629 2147 0.5370 +629 2165 0.6260 +629 2243 0.5320 +629 2244 0.4490 +629 2266 0.4780 +629 2335 0.5230 +629 2638 0.4120 +629 2776 0.4220 +629 2889 0.4360 +629 3004 0.4150 +629 3053 0.4870 +629 3075 0.9610 +629 3078 0.9210 +629 3080 0.6310 +629 3105 0.6160 +629 3106 0.6230 +629 3127 0.4600 +629 3263 0.5040 +629 3426 0.9700 +629 3569 0.4410 +629 3627 0.4030 +629 3827 0.4040 +629 3990 0.5430 +629 4050 0.4280 +629 4153 0.6850 +629 4179 0.7240 +629 4608 0.4310 +629 4831 0.4600 +629 4855 0.4020 +629 5004 0.4130 +629 5104 0.4250 +629 5199 0.9920 +629 5265 0.7250 +629 5294 0.4180 +629 5345 0.4090 +629 5654 0.5560 +629 6288 0.4430 +629 6289 0.4180 +629 6347 0.4330 +629 6441 0.4490 +629 6499 0.5710 +629 6563 0.6480 +629 6838 0.4140 +629 6941 0.4290 +629 7018 0.4570 +629 7056 0.6960 +629 7078 0.4220 +629 7124 0.4060 +629 7148 0.5150 +629 7448 0.5680 +629 7450 0.4210 +629 8526 0.7960 +629 8547 0.4170 +629 8859 0.4690 +629 9636 0.4890 +629 10516 0.5310 +629 10577 0.4970 +629 10877 0.8150 +629 10878 0.9450 +629 11093 0.6610 +629 23539 0.4180 +629 25974 0.5380 +629 55174 0.4110 +629 56999 0.4200 +629 81494 0.8220 +629 83872 0.6090 +629 114904 0.4060 +629 116844 0.4520 +629 145173 0.4330 +629 284161 0.4200 +629 285855 0.4250 +629 387715 0.8170 +629 102723407 0.5210 +631 1409 0.7730 +631 1410 0.6760 +631 1411 0.8020 +631 1412 0.7150 +631 1413 0.7480 +631 1414 0.8590 +631 1415 0.7410 +631 1417 0.7890 +631 1418 0.6210 +631 1419 0.6100 +631 1420 0.4080 +631 1421 0.7460 +631 1427 0.8030 +631 1674 0.5070 +631 1969 0.5070 +631 2301 0.5710 +631 2584 0.4890 +631 2651 0.6070 +631 2700 0.8060 +631 2703 0.8120 +631 2802 0.4220 +631 3299 0.7000 +631 3982 0.7480 +631 4094 0.4480 +631 4284 0.9400 +631 5080 0.4470 +631 5309 0.5910 +631 5493 0.4480 +631 7111 0.4940 +631 7431 0.4780 +631 8419 0.9990 +631 11130 0.6010 +631 23336 0.4380 +631 23424 0.6200 +631 29765 0.5770 +631 51557 0.6080 +631 57716 0.4890 +631 58511 0.5350 +631 79443 0.5110 +631 128866 0.5780 +631 155051 0.4800 +631 283953 0.6440 +631 402635 0.4560 +632 633 0.5120 +632 650 0.9320 +632 651 0.4480 +632 652 0.7700 +632 653 0.5380 +632 654 0.7860 +632 655 0.7870 +632 657 0.5400 +632 658 0.5720 +632 659 0.5810 +632 846 0.5160 +632 860 0.9960 +632 861 0.4030 +632 865 0.8090 +632 885 0.5990 +632 947 0.6280 +632 960 0.5870 +632 968 0.5200 +632 1050 0.5110 +632 1277 0.8890 +632 1278 0.8580 +632 1280 0.6830 +632 1300 0.6130 +632 1311 0.4800 +632 1401 0.5400 +632 1435 0.5050 +632 1499 0.7180 +632 1513 0.7680 +632 1591 0.5560 +632 1593 0.7950 +632 1594 0.4480 +632 1634 0.7310 +632 1647 0.4420 +632 1675 0.4250 +632 1747 0.7870 +632 1749 0.8960 +632 1750 0.4300 +632 1758 0.7880 +632 1834 0.8340 +632 1869 0.4240 +632 2022 0.6680 +632 2099 0.5740 +632 2147 0.4100 +632 2167 0.6100 +632 2224 0.5450 +632 2247 0.6280 +632 2248 0.5100 +632 2249 0.5110 +632 2250 0.5100 +632 2251 0.5100 +632 2252 0.5100 +632 2253 0.5100 +632 2254 0.5070 +632 2255 0.5060 +632 2258 0.4790 +632 2335 0.9160 +632 2353 0.5290 +632 2597 0.7600 +632 2641 0.4180 +632 2658 0.7760 +632 2677 0.9640 +632 2697 0.4790 +632 2776 0.4870 +632 2932 0.4790 +632 3091 0.4450 +632 3381 0.9710 +632 3479 0.8390 +632 3481 0.5780 +632 3486 0.5070 +632 3549 0.5740 +632 3552 0.4800 +632 3553 0.6000 +632 3558 0.4490 +632 3569 0.6640 +632 3576 0.4030 +632 3586 0.4180 +632 3630 0.7170 +632 3672 0.4730 +632 3688 0.6000 +632 3725 0.4700 +632 3952 0.6680 +632 3953 0.4340 +632 4023 0.5610 +632 4040 0.4480 +632 4041 0.6210 +632 4087 0.4300 +632 4089 0.4450 +632 4090 0.5120 +632 4093 0.5120 +632 4094 0.7710 +632 4151 0.4570 +632 4162 0.5060 +632 4256 0.9330 +632 4313 0.4250 +632 4314 0.4560 +632 4318 0.5620 +632 4322 0.6600 +632 4487 0.5720 +632 4488 0.8710 +632 4654 0.4350 +632 4745 0.4030 +632 4772 0.6280 +632 4907 0.6290 +632 4915 0.4160 +632 4958 0.4260 +632 4969 0.5900 +632 4982 0.6630 +632 5045 0.7800 +632 5167 0.4470 +632 5175 0.6030 +632 5251 0.7780 +632 5396 0.4040 +632 5460 0.4970 +632 5468 0.7090 +632 5595 0.5070 +632 5627 0.7410 +632 5741 0.9410 +632 5743 0.4210 +632 5744 0.6480 +632 5745 0.5940 +632 5788 0.5990 +632 5925 0.7750 +632 6387 0.5070 +632 6462 0.5700 +632 6569 0.4560 +632 6657 0.4450 +632 6662 0.7250 +632 6678 0.9910 +632 6696 0.9940 +632 7040 0.6770 +632 7043 0.5070 +632 7070 0.7560 +632 7124 0.6090 +632 7291 0.5550 +632 7412 0.4200 +632 7414 0.4180 +632 7448 0.6300 +632 7450 0.4360 +632 7471 0.4180 +632 7474 0.4470 +632 7480 0.5260 +632 7837 0.6140 +632 8074 0.8000 +632 8200 0.4330 +632 8313 0.4180 +632 8600 0.9150 +632 8792 0.4750 +632 8817 0.5170 +632 8822 0.5090 +632 8823 0.5060 +632 8841 0.5870 +632 8974 0.4040 +632 9200 0.4320 +632 9241 0.7090 +632 9365 0.4790 +632 9370 0.6660 +632 9453 0.4850 +632 10319 0.4470 +632 10413 0.5810 +632 10631 0.5410 +632 10763 0.4780 +632 22943 0.7000 +632 23013 0.5510 +632 23314 0.4180 +632 23462 0.5610 +632 25925 0.5280 +632 25937 0.8290 +632 26281 0.5060 +632 27006 0.5100 +632 50964 0.8710 +632 51129 0.4230 +632 54205 0.4670 +632 55787 0.5640 +632 56934 0.5880 +632 56955 0.6540 +632 57512 0.7560 +632 64102 0.4880 +632 79001 0.6190 +632 79923 0.4800 +632 80205 0.4540 +632 81501 0.4320 +632 89780 0.5780 +632 91544 0.5060 +632 117581 0.5870 +632 121340 0.9080 +632 137902 0.6140 +632 151449 0.4950 +632 171017 0.4490 +632 221044 0.5780 +632 222545 0.9740 +632 252995 0.4460 +632 752014 0.5740 +633 649 0.7250 +633 650 0.7380 +633 652 0.8520 +633 654 0.7530 +633 860 0.4810 +633 871 0.6110 +633 960 0.8990 +633 977 0.4170 +633 1009 0.6770 +633 1101 0.6420 +633 1277 0.9740 +633 1278 0.9380 +633 1280 0.6190 +633 1281 0.8900 +633 1282 0.7630 +633 1284 0.6330 +633 1289 0.7740 +633 1290 0.8070 +633 1291 0.8600 +633 1292 0.8160 +633 1293 0.8060 +633 1294 0.5420 +633 1295 0.5000 +633 1296 0.5380 +633 1297 0.6860 +633 1298 0.6790 +633 1299 0.6340 +633 1300 0.6950 +633 1301 0.5770 +633 1302 0.5710 +633 1303 0.7390 +633 1306 0.4610 +633 1307 0.6210 +633 1308 0.4900 +633 1311 0.7240 +633 1404 0.4600 +633 1462 0.9510 +633 1463 0.6110 +633 1464 0.6590 +633 1490 0.6130 +633 1513 0.4370 +633 1634 0.9890 +633 1758 0.4010 +633 1805 0.5150 +633 1833 0.6270 +633 1834 0.6310 +633 1842 0.4070 +633 1893 0.5200 +633 1950 0.6210 +633 1956 0.6300 +633 2022 0.4310 +633 2192 0.5530 +633 2199 0.7040 +633 2200 0.7840 +633 2201 0.5320 +633 2239 0.6350 +633 2247 0.4940 +633 2248 0.6090 +633 2249 0.6060 +633 2250 0.6070 +633 2251 0.6010 +633 2252 0.6560 +633 2253 0.6060 +633 2254 0.6140 +633 2255 0.6270 +633 2258 0.4200 +633 2262 0.5720 +633 2266 0.4270 +633 2318 0.5230 +633 2331 0.9760 +633 2334 0.4630 +633 2335 0.9950 +633 2556 0.4380 +633 2597 0.4450 +633 2719 0.6400 +633 2720 0.5960 +633 2817 0.7660 +633 3037 0.6340 +633 3146 0.4200 +633 3339 0.9970 +633 3381 0.5050 +633 3479 0.6950 +633 3481 0.4360 +633 3486 0.4150 +633 3488 0.5600 +633 3490 0.4190 +633 3552 0.5840 +633 3553 0.6460 +633 3569 0.6510 +633 3624 0.5710 +633 3627 0.4550 +633 3671 0.4240 +633 3685 0.5140 +633 3689 0.5020 +633 3908 0.4200 +633 3910 0.4010 +633 4015 0.6530 +633 4016 0.7270 +633 4017 0.4090 +633 4023 0.5460 +633 4049 0.4420 +633 4052 0.4930 +633 4053 0.5570 +633 4054 0.4430 +633 4060 0.9180 +633 4087 0.4290 +633 4146 0.5810 +633 4153 0.5080 +633 4237 0.8860 +633 4239 0.4460 +633 4256 0.6060 +633 4312 0.4910 +633 4313 0.7810 +633 4314 0.5860 +633 4318 0.6540 +633 4321 0.4030 +633 4322 0.5550 +633 4323 0.4850 +633 4488 0.4510 +633 4593 0.5590 +633 4811 0.7860 +633 4958 0.4320 +633 4969 0.6360 +633 5025 0.5680 +633 5054 0.4200 +633 5118 0.8290 +633 5156 0.4170 +633 5159 0.5200 +633 5176 0.4680 +633 5196 0.4330 +633 5197 0.4120 +633 5351 0.4020 +633 5396 0.4920 +633 5480 0.4860 +633 5549 0.6810 +633 5552 0.4410 +633 5764 0.5440 +633 6251 0.4630 +633 6382 0.9430 +633 6383 0.7090 +633 6385 0.7320 +633 6387 0.6460 +633 6402 0.4680 +633 6422 0.4640 +633 6442 0.4240 +633 6445 0.8980 +633 6591 0.5100 +633 6662 0.4930 +633 6678 0.7240 +633 6696 0.6170 +633 6876 0.4950 +633 7040 0.9780 +633 7042 0.7070 +633 7043 0.8100 +633 7045 0.8210 +633 7046 0.4100 +633 7049 0.4340 +633 7057 0.7790 +633 7058 0.6930 +633 7060 0.5360 +633 7070 0.4720 +633 7076 0.5780 +633 7077 0.5150 +633 7078 0.5710 +633 7097 0.9890 +633 7099 0.9940 +633 7124 0.9400 +633 7373 0.5140 +633 7402 0.6090 +633 7412 0.4020 +633 7448 0.7510 +633 7450 0.5700 +633 8076 0.4410 +633 8082 0.5110 +633 8483 0.4290 +633 8646 0.7620 +633 8817 0.6170 +633 8822 0.6010 +633 8823 0.6070 +633 8829 0.4520 +633 8840 0.9620 +633 9469 0.5540 +633 9507 0.7080 +633 9508 0.5080 +633 9509 0.6670 +633 9672 0.6990 +633 9902 0.5450 +633 10082 0.6070 +633 10090 0.4520 +633 10216 0.5950 +633 10516 0.5560 +633 10631 0.8300 +633 10675 0.4520 +633 10682 0.5800 +633 11096 0.5280 +633 11117 0.4060 +633 11285 0.6440 +633 22795 0.4900 +633 22856 0.5840 +633 22859 0.5140 +633 23213 0.5330 +633 23266 0.5430 +633 23284 0.5140 +633 23452 0.4360 +633 23643 0.7280 +633 25878 0.4160 +633 25987 0.4480 +633 26229 0.5680 +633 26281 0.6070 +633 27006 0.6130 +633 27087 0.4060 +633 29940 0.6360 +633 30008 0.7260 +633 50509 0.4470 +633 50515 0.5950 +633 51226 0.4700 +633 51363 0.5150 +633 51450 0.4480 +633 54480 0.4950 +633 55222 0.4370 +633 55454 0.6070 +633 55501 0.5330 +633 55790 0.5570 +633 56262 0.4780 +633 56548 0.4590 +633 57124 0.5510 +633 60681 0.5290 +633 63827 0.7290 +633 64102 0.6730 +633 64131 0.5780 +633 64132 0.5300 +633 64175 0.5300 +633 79442 0.4660 +633 79586 0.5870 +633 80781 0.7090 +633 81493 0.4370 +633 83539 0.4290 +633 84168 0.5330 +633 84467 0.4410 +633 84548 0.5490 +633 89780 0.5830 +633 90993 0.4510 +633 92126 0.4920 +633 113189 0.6160 +633 115908 0.5690 +633 116064 0.4510 +633 122769 0.6440 +633 126792 0.5600 +633 131578 0.5640 +633 135152 0.4060 +633 166012 0.4450 +633 169044 0.5230 +633 220965 0.4370 +633 221914 0.5720 +633 255252 0.4570 +633 283078 0.5420 +633 337876 0.4430 +633 339291 0.4650 +633 374378 0.4420 +633 375387 0.4240 +633 375790 0.9220 +633 376132 0.4700 +633 390205 0.4790 +633 474354 0.4670 +633 642658 0.4120 +634 719 0.4770 +634 808 0.5140 +634 810 0.4950 +634 838 0.4210 +634 920 0.4650 +634 925 0.4790 +634 928 0.4410 +634 948 0.4590 +634 949 0.4630 +634 950 0.4770 +634 966 0.4940 +634 969 0.4310 +634 999 0.4650 +634 1048 0.9090 +634 1084 0.5140 +634 1088 0.7990 +634 1230 0.4610 +634 1236 0.4910 +634 1493 0.4790 +634 1499 0.4810 +634 1536 0.4470 +634 1604 0.4580 +634 1803 0.4460 +634 1956 0.5610 +634 2086 0.6840 +634 2267 0.4190 +634 2335 0.6980 +634 3108 0.5190 +634 3146 0.6800 +634 3383 0.5290 +634 3385 0.5110 +634 3439 0.4020 +634 3458 0.4490 +634 3576 0.6110 +634 3678 0.4680 +634 3684 0.5210 +634 3688 0.4730 +634 3689 0.5120 +634 3690 0.6060 +634 3902 0.5420 +634 3903 0.5100 +634 3958 0.5480 +634 3965 0.8170 +634 4057 0.5210 +634 4102 0.4200 +634 4146 0.4700 +634 4680 0.8780 +634 4939 0.4080 +634 4973 0.4440 +634 5133 0.6670 +634 5175 0.5200 +634 5425 0.4310 +634 5593 0.4320 +634 5777 0.5150 +634 5781 0.8170 +634 5787 0.4150 +634 5817 0.4890 +634 5819 0.4560 +634 5829 0.5690 +634 6275 0.4220 +634 6351 0.4650 +634 6363 0.4370 +634 6372 0.4570 +634 6373 0.4530 +634 6520 0.4020 +634 6662 0.4640 +634 6850 0.5670 +634 7097 0.5720 +634 7099 0.6380 +634 7494 0.4020 +634 7917 0.4350 +634 8764 0.6230 +634 9607 0.4110 +634 10225 0.4420 +634 10332 0.4270 +634 10563 0.4400 +634 10666 0.4960 +634 10859 0.4320 +634 22918 0.4250 +634 23705 0.6210 +634 26073 0.7990 +634 26273 0.5960 +634 27036 0.6020 +634 27128 0.4540 +634 29126 0.5080 +634 30816 0.5580 +634 30835 0.8060 +634 51806 0.4990 +634 57126 0.5120 +634 57692 0.4020 +634 58191 0.4580 +634 59272 0.6280 +634 80380 0.4260 +634 81035 0.4410 +634 84868 0.9950 +634 91860 0.4920 +634 92140 0.5780 +634 133482 0.4280 +634 140885 0.5660 +634 151888 0.4550 +634 160364 0.5360 +634 163688 0.4890 +634 199675 0.4760 +634 201633 0.5470 +634 284194 0.7960 +634 339390 0.4480 +634 405754 0.6790 +634 654346 0.8000 +635 875 0.9850 +635 883 0.9250 +635 1036 0.5060 +635 1119 0.4410 +635 1373 0.4070 +635 1491 0.9900 +635 1610 0.5400 +635 1629 0.4720 +635 1719 0.6380 +635 1737 0.4140 +635 1738 0.4540 +635 1743 0.4140 +635 1757 0.8250 +635 1786 0.4820 +635 1807 0.4230 +635 2099 0.4260 +635 2356 0.8100 +635 2593 0.5070 +635 2618 0.5150 +635 2631 0.4630 +635 2653 0.5270 +635 2731 0.8230 +635 2875 0.4320 +635 2936 0.5220 +635 3235 0.6300 +635 3242 0.5020 +635 3251 0.4740 +635 3309 0.5190 +635 3326 0.4270 +635 4143 0.9880 +635 4144 0.9820 +635 4357 0.5230 +635 4482 0.4270 +635 4522 0.8670 +635 4524 0.9780 +635 4548 0.9500 +635 4552 0.8160 +635 4942 0.4190 +635 5053 0.4390 +635 5091 0.4210 +635 5105 0.4100 +635 5621 0.5060 +635 5832 0.4170 +635 6470 0.8720 +635 6472 0.8200 +635 6517 0.4140 +635 6539 0.5640 +635 6573 0.5700 +635 6898 0.9360 +635 6948 0.6680 +635 7263 0.4590 +635 7296 0.4230 +635 7298 0.6860 +635 8050 0.4140 +635 8528 0.4530 +635 8991 0.8300 +635 9739 0.4140 +635 10400 0.7410 +635 10587 0.4110 +635 10588 0.4290 +635 10768 0.9740 +635 10797 0.7380 +635 10840 0.4600 +635 10841 0.4820 +635 10993 0.8620 +635 23382 0.9750 +635 23743 0.9670 +635 25902 0.7160 +635 26227 0.5100 +635 27232 0.8440 +635 27430 0.9650 +635 29958 0.9920 +635 51074 0.4340 +635 51268 0.5650 +635 51324 0.4500 +635 51380 0.5230 +635 54205 0.4380 +635 55034 0.6880 +635 55066 0.4900 +635 55256 0.5630 +635 55349 0.7510 +635 55686 0.5280 +635 56267 0.9230 +635 64111 0.4070 +635 80227 0.4570 +635 84245 0.4940 +635 113675 0.8550 +635 126133 0.5200 +635 200895 0.4680 +635 259307 0.9040 +635 339896 0.4500 +635 441024 0.6860 +635 730249 0.4330 +636 829 0.5740 +636 830 0.5140 +636 832 0.6060 +636 1639 0.7960 +636 1663 0.8550 +636 1778 0.8300 +636 1780 0.7230 +636 1781 0.6920 +636 1783 0.7380 +636 2332 0.5820 +636 2589 0.5100 +636 2590 0.4990 +636 2931 0.4280 +636 2932 0.4090 +636 3799 0.4890 +636 3831 0.4390 +636 4747 0.5790 +636 5048 0.6210 +636 5289 0.7370 +636 5862 0.5380 +636 5870 0.9890 +636 5903 0.4710 +636 6780 0.4040 +636 8087 0.5420 +636 8655 0.8140 +636 9183 0.5150 +636 9513 0.5440 +636 9727 0.5120 +636 9928 0.5290 +636 10112 0.5150 +636 10121 0.5790 +636 10540 0.8780 +636 10671 0.5860 +636 11258 0.5530 +636 22906 0.4510 +636 22930 0.5190 +636 22931 0.5780 +636 22981 0.4250 +636 23299 0.8460 +636 25782 0.5310 +636 27314 0.4050 +636 29911 0.5180 +636 51143 0.7870 +636 51164 0.6800 +636 51199 0.6310 +636 51361 0.5210 +636 51560 0.7240 +636 54820 0.5550 +636 55860 0.6520 +636 56853 0.8390 +636 64506 0.4670 +636 64837 0.4660 +636 81037 0.4470 +636 81565 0.5540 +636 84084 0.4660 +636 84376 0.7090 +636 84516 0.5830 +636 91754 0.5430 +636 92558 0.6980 +636 93661 0.4990 +636 140735 0.5470 +636 146439 0.6020 +636 161829 0.7330 +636 374654 0.4510 +637 638 0.5350 +637 666 0.6310 +637 823 0.9180 +637 824 0.9380 +637 834 0.9410 +637 835 0.9720 +637 836 0.8270 +637 839 0.4640 +637 840 0.5120 +637 841 0.9920 +637 842 0.6640 +637 843 0.9760 +637 1075 0.9080 +637 1508 0.9210 +637 1509 0.9170 +637 1512 0.9070 +637 1513 0.9120 +637 1514 0.9130 +637 1515 0.9050 +637 1519 0.9010 +637 1520 0.9570 +637 1521 0.9020 +637 1522 0.9030 +637 2021 0.4940 +637 2212 0.4110 +637 3002 0.9640 +637 4170 0.9960 +637 4478 0.4610 +637 4836 0.7500 +637 5366 0.9580 +637 5599 0.9540 +637 5601 0.9110 +637 7124 0.4670 +637 7132 0.8000 +637 7157 0.8560 +637 7430 0.4540 +637 8517 0.4840 +637 8717 0.4510 +637 8722 0.9010 +637 8737 0.4030 +637 8739 0.4750 +637 8743 0.4860 +637 8767 0.5470 +637 8772 0.9040 +637 8795 0.7220 +637 8797 0.4800 +637 8837 0.6560 +637 9531 0.4100 +637 10017 0.4640 +637 10018 0.9820 +637 10392 0.5330 +637 23585 0.4700 +637 23788 0.7870 +637 27113 0.9610 +637 29946 0.4410 +637 54205 0.6850 +637 55367 0.9290 +637 64127 0.7080 +637 79680 0.5070 +637 90427 0.4710 +638 662 0.4160 +638 664 0.6370 +638 666 0.7210 +638 672 0.4690 +638 699 0.4240 +638 701 0.4230 +638 825 0.4380 +638 836 0.4830 +638 837 0.4860 +638 839 0.5850 +638 840 0.4320 +638 841 0.4470 +638 842 0.6790 +638 961 0.4950 +638 983 0.4850 +638 1613 0.4210 +638 1759 0.4950 +638 1785 0.5460 +638 2597 0.5380 +638 3309 0.6080 +638 3717 0.4570 +638 4170 0.9840 +638 5366 0.9300 +638 7157 0.4790 +638 7818 0.4060 +638 7852 0.4240 +638 8739 0.9680 +638 8767 0.4130 +638 8799 0.6400 +638 8800 0.6660 +638 9927 0.5620 +638 10017 0.8930 +638 10018 0.9680 +638 10059 0.6000 +638 26586 0.4180 +638 27113 0.8110 +638 51024 0.6970 +638 54205 0.5830 +638 54541 0.4180 +638 64852 0.4340 +638 79444 0.4790 +638 79680 0.6690 +638 84236 0.4350 +638 89885 0.5540 +638 90427 0.9500 +638 127247 0.4440 +638 140456 0.4640 +638 149428 0.4720 +638 493856 0.4800 +638 100529063 0.5650 +639 643 0.6970 +639 652 0.5130 +639 660 0.6910 +639 672 0.4050 +639 675 0.4170 +639 695 0.4210 +639 861 0.7130 +639 864 0.6250 +639 920 0.6760 +639 921 0.4630 +639 925 0.6880 +639 930 0.7260 +639 931 0.6290 +639 933 0.5440 +639 939 0.6280 +639 940 0.5980 +639 941 0.4510 +639 942 0.5020 +639 952 0.6240 +639 958 0.7730 +639 959 0.6220 +639 960 0.5200 +639 969 0.6170 +639 973 0.6290 +639 974 0.5210 +639 1052 0.4040 +639 1234 0.4300 +639 1235 0.5600 +639 1236 0.6140 +639 1380 0.5020 +639 1487 0.4650 +639 1493 0.6300 +639 1499 0.5870 +639 1618 0.6270 +639 1809 0.5950 +639 1879 0.4440 +639 1880 0.6390 +639 1901 0.5410 +639 2113 0.5240 +639 2146 0.7690 +639 2308 0.5290 +639 2309 0.4180 +639 2353 0.4600 +639 2625 0.6010 +639 2626 0.6020 +639 2833 0.5370 +639 3001 0.4820 +639 3002 0.6590 +639 3003 0.4230 +639 3065 0.7850 +639 3066 0.9010 +639 3091 0.6000 +639 3164 0.4780 +639 3172 0.5360 +639 3309 0.5260 +639 3320 0.5560 +639 3326 0.5690 +639 3394 0.6190 +639 3398 0.5950 +639 3399 0.5910 +639 3458 0.6420 +639 3553 0.4400 +639 3558 0.6160 +639 3559 0.7040 +639 3560 0.5450 +639 3565 0.5460 +639 3569 0.5030 +639 3574 0.4340 +639 3575 0.7640 +639 3586 0.5920 +639 3587 0.4590 +639 3594 0.4010 +639 3600 0.5260 +639 3605 0.4800 +639 3659 0.7420 +639 3660 0.6940 +639 3662 0.9380 +639 3682 0.5140 +639 3684 0.6190 +639 3687 0.6210 +639 3902 0.6010 +639 4068 0.4370 +639 4094 0.6180 +639 4170 0.4020 +639 4261 0.5000 +639 4311 0.5640 +639 4609 0.5960 +639 4684 0.5300 +639 4772 0.5440 +639 4773 0.4120 +639 4783 0.6080 +639 4790 0.4490 +639 5015 0.5450 +639 5079 0.9070 +639 5087 0.4740 +639 5133 0.5360 +639 5450 0.4640 +639 5460 0.4850 +639 5551 0.5460 +639 5788 0.6240 +639 5896 0.5730 +639 5966 0.4480 +639 6095 0.4230 +639 6097 0.4650 +639 6304 0.4180 +639 6382 0.8270 +639 6402 0.6010 +639 6504 0.4310 +639 6657 0.4860 +639 6664 0.4100 +639 6688 0.5390 +639 6689 0.5540 +639 6693 0.4340 +639 6772 0.4840 +639 6774 0.9420 +639 6775 0.5670 +639 6776 0.5580 +639 6777 0.5630 +639 6778 0.4360 +639 6929 0.6010 +639 6932 0.6390 +639 7003 0.4100 +639 7022 0.6340 +639 7124 0.5230 +639 7128 0.6100 +639 7157 0.8700 +639 7293 0.4470 +639 7473 0.4360 +639 7478 0.4060 +639 7494 0.8660 +639 7852 0.5020 +639 8085 0.4370 +639 8115 0.4290 +639 8320 0.7480 +639 8651 0.4370 +639 8764 0.5450 +639 8784 0.4310 +639 9034 0.5920 +639 9935 0.5450 +639 10018 0.4040 +639 10219 0.6250 +639 10419 0.8580 +639 10538 0.8040 +639 10563 0.4640 +639 10663 0.4350 +639 10673 0.5520 +639 10725 0.4230 +639 10919 0.9230 +639 11025 0.4290 +639 11126 0.4700 +639 22806 0.5110 +639 22918 0.4910 +639 23028 0.6570 +639 23308 0.4310 +639 23495 0.4510 +639 25942 0.7980 +639 27033 0.4410 +639 29126 0.4910 +639 29760 0.4900 +639 29851 0.6600 +639 30009 0.8050 +639 50615 0.7050 +639 50943 0.6070 +639 51176 0.5000 +639 51250 0.4040 +639 54496 0.4160 +639 54514 0.5470 +639 54855 0.4470 +639 54880 0.4210 +639 55278 0.4490 +639 55857 0.6100 +639 56978 0.4020 +639 57332 0.4220 +639 57379 0.7800 +639 57697 0.6100 +639 57823 0.4720 +639 59067 0.6880 +639 60468 0.8090 +639 64321 0.5010 +639 79727 0.6540 +639 79923 0.4740 +639 84433 0.4580 +639 84868 0.5230 +639 114836 0.4050 +639 149233 0.4240 +639 151888 0.4580 +639 201633 0.5270 +639 257101 0.5190 +639 342977 0.6500 +639 359787 0.8020 +639 373863 0.4570 +639 389421 0.5730 +639 653604 0.5440 +639 100271849 0.4480 +639 100423062 0.4270 +639 102723407 0.5780 +640 643 0.6870 +640 780 0.4160 +640 836 0.5110 +640 861 0.5930 +640 865 0.4990 +640 911 0.4860 +640 919 0.4200 +640 930 0.8780 +640 931 0.7380 +640 933 0.7340 +640 939 0.4450 +640 958 0.4960 +640 971 0.5460 +640 973 0.9560 +640 974 0.9210 +640 1232 0.4450 +640 1234 0.4880 +640 1285 0.4110 +640 1380 0.4420 +640 1445 0.4290 +640 1508 0.4370 +640 1656 0.5410 +640 1828 0.4380 +640 1879 0.6050 +640 1956 0.8070 +640 1997 0.5780 +640 1998 0.5980 +640 2064 0.4790 +640 2113 0.4130 +640 2206 0.4310 +640 2208 0.5270 +640 2212 0.6670 +640 2213 0.5270 +640 2444 0.4190 +640 2534 0.4110 +640 2645 0.5580 +640 2887 0.6330 +640 3112 0.6200 +640 3123 0.5010 +640 3394 0.4530 +640 3606 0.4550 +640 3651 0.5270 +640 3654 0.4370 +640 3662 0.4660 +640 3663 0.6810 +640 3767 0.5270 +640 3848 0.4260 +640 3857 0.4740 +640 3899 0.4600 +640 4063 0.4080 +640 4067 0.4880 +640 4145 0.4220 +640 4760 0.6640 +640 4795 0.5320 +640 4825 0.5680 +640 5078 0.7580 +640 5079 0.7950 +640 5336 0.6720 +640 5368 0.4380 +640 5450 0.7410 +640 5734 0.4230 +640 6689 0.6080 +640 6774 0.8210 +640 6775 0.6820 +640 6833 0.5850 +640 6927 0.7110 +640 6928 0.4820 +640 6929 0.4890 +640 7128 0.7260 +640 7185 0.4480 +640 7187 0.4080 +640 7292 0.4790 +640 7332 0.5310 +640 7456 0.4260 +640 8115 0.6070 +640 8462 0.8280 +640 9595 0.4500 +640 9846 0.4310 +640 10278 0.6220 +640 10318 0.5840 +640 10320 0.6510 +640 10457 0.5610 +640 10672 0.4680 +640 11262 0.4650 +640 22806 0.6240 +640 23495 0.6240 +640 26060 0.4790 +640 26191 0.6760 +640 29760 0.5460 +640 29802 0.7630 +640 51237 0.4350 +640 54106 0.4220 +640 54887 0.4020 +640 54899 0.5870 +640 55024 0.9120 +640 55613 0.6530 +640 57162 0.5340 +640 57379 0.5020 +640 57661 0.4540 +640 57705 0.5440 +640 58511 0.4090 +640 65999 0.4500 +640 66036 0.7100 +640 79368 0.4440 +640 79660 0.4670 +640 79722 0.4470 +640 80271 0.6730 +640 83416 0.4500 +640 83648 0.9780 +640 84433 0.4030 +640 84450 0.4190 +640 84504 0.5540 +640 84824 0.8550 +640 94103 0.4920 +640 115350 0.4090 +640 115352 0.5570 +640 115650 0.5870 +640 118932 0.4360 +640 128611 0.4820 +640 129138 0.5160 +640 151888 0.4240 +640 199786 0.7050 +640 222546 0.4020 +640 286046 0.6340 +640 390714 0.4480 +640 728642 0.4280 +640 102723407 0.5600 +641 672 0.9740 +641 675 0.9350 +641 699 0.4800 +641 701 0.4960 +641 864 0.4060 +641 983 0.5030 +641 990 0.5400 +641 993 0.5120 +641 1017 0.6580 +641 1019 0.8460 +641 1062 0.5360 +641 1063 0.4060 +641 1111 0.9320 +641 1663 0.4030 +641 1763 0.9870 +641 1789 0.4330 +641 1894 0.4590 +641 2067 0.7010 +641 2068 0.4230 +641 2072 0.8190 +641 2073 0.5350 +641 2175 0.9990 +641 2176 0.8290 +641 2177 0.9330 +641 2178 0.8140 +641 2188 0.8230 +641 2189 0.9990 +641 2237 0.9210 +641 2547 0.9100 +641 2618 0.4210 +641 2956 0.9720 +641 3014 0.8940 +641 3017 0.5300 +641 3018 0.5230 +641 3070 0.7020 +641 3364 0.7830 +641 3725 0.5160 +641 3832 0.5000 +641 3978 0.6900 +641 3980 0.4130 +641 3981 0.5820 +641 4000 0.4430 +641 4171 0.5670 +641 4173 0.6220 +641 4174 0.5330 +641 4175 0.4970 +641 4292 0.9990 +641 4361 0.9690 +641 4436 0.9070 +641 4437 0.5390 +641 4438 0.7500 +641 4439 0.7180 +641 4609 0.7080 +641 4683 0.9250 +641 4968 0.4610 +641 4998 0.5240 +641 5111 0.6860 +641 5347 0.6240 +641 5378 0.4500 +641 5395 0.6870 +641 5422 0.6270 +641 5424 0.7610 +641 5425 0.5160 +641 5426 0.6840 +641 5427 0.6550 +641 5429 0.5700 +641 5557 0.5450 +641 5558 0.4180 +641 5591 0.4730 +641 5810 0.7580 +641 5883 0.7330 +641 5884 0.8720 +641 5888 0.9980 +641 5889 0.8590 +641 5890 0.8200 +641 5892 0.8680 +641 5893 0.9580 +641 5932 0.8710 +641 5980 0.4170 +641 5981 0.8430 +641 5982 0.8330 +641 5983 0.7480 +641 5984 0.8710 +641 5985 0.7030 +641 6047 0.6330 +641 6117 0.9990 +641 6118 0.9980 +641 6119 0.9980 +641 6233 0.5290 +641 6596 0.5980 +641 6612 0.6360 +641 6613 0.7380 +641 6742 0.4310 +641 6790 0.4100 +641 7013 0.8860 +641 7014 0.8990 +641 7015 0.5450 +641 7150 0.6710 +641 7153 0.7710 +641 7155 0.5270 +641 7156 0.9990 +641 7157 0.9320 +641 7158 0.9780 +641 7272 0.4750 +641 7311 0.4990 +641 7314 0.5070 +641 7316 0.5070 +641 7329 0.7250 +641 7336 0.4180 +641 7341 0.5780 +641 7465 0.4060 +641 7486 0.8020 +641 7507 0.4720 +641 7508 0.4790 +641 7516 0.7890 +641 7517 0.9620 +641 7518 0.5450 +641 7520 0.6340 +641 7979 0.5440 +641 8208 0.4550 +641 8243 0.6600 +641 8290 0.5970 +641 8317 0.5830 +641 8318 0.7880 +641 8340 0.5360 +641 8341 0.5310 +641 8342 0.5300 +641 8345 0.5360 +641 8347 0.5230 +641 8348 0.5320 +641 8349 0.6200 +641 8361 0.6730 +641 8438 0.7380 +641 8914 0.7710 +641 8940 0.9450 +641 8970 0.5310 +641 9025 0.6110 +641 9156 0.9980 +641 9400 0.4330 +641 9401 0.5230 +641 9656 0.7430 +641 9735 0.4480 +641 9787 0.4280 +641 9793 0.4470 +641 9894 0.6370 +641 9918 0.4190 +641 9928 0.5430 +641 10036 0.5110 +641 10051 0.5340 +641 10111 0.9200 +641 10112 0.4850 +641 10198 0.5960 +641 10403 0.4380 +641 10524 0.6000 +641 10535 0.6930 +641 10592 0.4660 +641 10635 0.6920 +641 10714 0.6930 +641 10721 0.6690 +641 10733 0.5560 +641 11004 0.4190 +641 11073 0.8980 +641 11144 0.7350 +641 11169 0.6310 +641 11200 0.7440 +641 11276 0.4190 +641 11335 0.4240 +641 22909 0.6150 +641 22976 0.7890 +641 23064 0.4340 +641 23137 0.7210 +641 23514 0.6710 +641 23586 0.4460 +641 23626 0.5410 +641 25788 0.6780 +641 25842 0.4930 +641 25913 0.7800 +641 26271 0.4350 +641 26277 0.6780 +641 27030 0.7480 +641 27127 0.4320 +641 29028 0.4440 +641 29089 0.4130 +641 29128 0.5300 +641 29935 0.7470 +641 50485 0.5530 +641 51053 0.4470 +641 51203 0.4020 +641 51426 0.4980 +641 51514 0.4310 +641 51548 0.5320 +641 51659 0.4110 +641 51720 0.4330 +641 51750 0.8320 +641 54107 0.4610 +641 54145 0.5230 +641 54386 0.4520 +641 54465 0.4210 +641 54537 0.4740 +641 54821 0.9520 +641 54841 0.4760 +641 54962 0.8300 +641 55120 0.6680 +641 55143 0.4020 +641 55159 0.4090 +641 55183 0.7820 +641 55215 0.7730 +641 55247 0.4750 +641 55294 0.5140 +641 55388 0.6240 +641 55636 0.4330 +641 55723 0.5200 +641 56655 0.4610 +641 56852 0.8020 +641 56897 0.5360 +641 56916 0.5540 +641 56992 0.4710 +641 57082 0.5350 +641 57405 0.4370 +641 57534 0.5250 +641 57697 0.9990 +641 57804 0.4050 +641 63922 0.4770 +641 63967 0.6310 +641 64135 0.4490 +641 64151 0.4390 +641 64858 0.5490 +641 79008 0.6450 +641 79075 0.4510 +641 79132 0.4450 +641 79621 0.6190 +641 79677 0.7560 +641 79728 0.7290 +641 79831 0.7190 +641 79915 0.8140 +641 79968 0.4330 +641 80010 0.9990 +641 80119 0.8290 +641 80198 0.9640 +641 80233 0.9940 +641 81620 0.5020 +641 83540 0.4490 +641 83695 0.5250 +641 83990 0.9500 +641 84057 0.4070 +641 84126 0.7040 +641 84464 0.7710 +641 84893 0.8740 +641 85236 0.5270 +641 85365 0.6090 +641 90381 0.4660 +641 91442 0.5900 +641 92797 0.5120 +641 113510 0.4920 +641 116028 0.9960 +641 116447 0.6450 +641 122402 0.4150 +641 128312 0.5240 +641 135458 0.4380 +641 144715 0.6690 +641 146956 0.7730 +641 197342 0.5220 +641 201254 0.9940 +641 221150 0.4240 +641 246243 0.5150 +641 254528 0.6090 +641 255626 0.5230 +641 286053 0.6030 +641 348654 0.7750 +641 375748 0.4680 +641 378708 0.9940 +641 387082 0.4060 +641 548593 0.8770 +641 751071 0.4340 +641 100533467 0.5260 +642 670 0.4860 +642 823 0.4100 +642 1041 0.4910 +642 1509 0.6870 +642 1522 0.4140 +642 1636 0.4260 +642 1823 0.4690 +642 1828 0.4380 +642 2312 0.6130 +642 2923 0.4190 +642 3077 0.4430 +642 3290 0.4560 +642 3713 0.4490 +642 4012 0.4380 +642 4141 0.4330 +642 4524 0.5790 +642 4898 0.4050 +642 5328 0.4120 +642 5641 0.4300 +642 6051 0.4070 +642 6451 0.4040 +642 6892 0.4270 +642 7053 0.6690 +642 7064 0.5690 +642 7174 0.6340 +642 7314 0.4050 +642 7511 0.4550 +642 7512 0.4120 +642 9446 0.4320 +642 9520 0.5990 +642 9846 0.4240 +642 10858 0.5280 +642 10933 0.4770 +642 10988 0.4400 +642 11081 0.7460 +642 23581 0.8170 +642 29979 0.4480 +642 51379 0.4700 +642 51752 0.5370 +642 54788 0.5840 +642 54858 0.4430 +642 54902 0.5860 +642 55093 0.4040 +642 57128 0.4990 +642 57695 0.4870 +642 79718 0.4050 +642 83594 0.8690 +642 84078 0.4200 +642 84942 0.5530 +642 119391 0.4290 +642 132851 0.4210 +642 151516 0.5200 +642 339855 0.4540 +642 388364 0.5880 +642 388698 0.5080 +643 695 0.4360 +643 911 0.4580 +643 912 0.5010 +643 914 0.4850 +643 916 0.5170 +643 920 0.9090 +643 921 0.6530 +643 925 0.8550 +643 930 0.8950 +643 931 0.6580 +643 933 0.7170 +643 939 0.8040 +643 940 0.7040 +643 941 0.6620 +643 942 0.6830 +643 952 0.8550 +643 953 0.4860 +643 958 0.7860 +643 959 0.8690 +643 960 0.7450 +643 969 0.7080 +643 971 0.4440 +643 973 0.6570 +643 974 0.6970 +643 1230 0.7570 +643 1232 0.7340 +643 1233 0.5990 +643 1234 0.7710 +643 1235 0.8010 +643 1236 0.9620 +643 1237 0.7150 +643 1238 0.4890 +643 1378 0.4610 +643 1380 0.7970 +643 1435 0.5140 +643 1437 0.4430 +643 1440 0.4630 +643 1493 0.6710 +643 1524 0.7310 +643 1880 0.6000 +643 1901 0.7070 +643 1903 0.4910 +643 2149 0.4270 +643 2208 0.5130 +643 2212 0.4600 +643 2213 0.5010 +643 2316 0.4100 +643 2317 0.4100 +643 2318 0.4100 +643 2323 0.4140 +643 2625 0.6360 +643 2768 0.4150 +643 2769 0.4370 +643 2770 0.6830 +643 2771 0.9010 +643 2773 0.6830 +643 2776 0.9380 +643 2779 0.4310 +643 2793 0.4950 +643 2826 0.7160 +643 2829 0.4220 +643 2833 0.7990 +643 2868 0.6710 +643 2869 0.6720 +643 2870 0.6900 +643 2919 0.7850 +643 2920 0.7580 +643 2921 0.7490 +643 3001 0.4400 +643 3002 0.7360 +643 3299 0.4290 +643 3383 0.6310 +643 3394 0.4980 +643 3398 0.5170 +643 3399 0.4600 +643 3439 0.4160 +643 3458 0.8020 +643 3553 0.5520 +643 3558 0.6810 +643 3559 0.5530 +643 3560 0.5040 +643 3561 0.5790 +643 3565 0.7900 +643 3567 0.5120 +643 3569 0.7000 +643 3570 0.4390 +643 3574 0.7500 +643 3575 0.8300 +643 3576 0.7920 +643 3577 0.8770 +643 3578 0.4030 +643 3579 0.8410 +643 3581 0.5160 +643 3586 0.6780 +643 3594 0.4690 +643 3596 0.5160 +643 3600 0.4970 +643 3603 0.5430 +643 3605 0.6910 +643 3627 0.9700 +643 3662 0.6870 +643 3663 0.4280 +643 3676 0.4760 +643 3682 0.5400 +643 3683 0.4260 +643 3684 0.5920 +643 3687 0.6540 +643 3700 0.8430 +643 3717 0.7000 +643 3718 0.7320 +643 3782 0.4360 +643 3820 0.4950 +643 3821 0.4270 +643 3902 0.5480 +643 4049 0.7310 +643 4050 0.6290 +643 4055 0.5260 +643 4068 0.5980 +643 4094 0.5470 +643 4240 0.4870 +643 4283 0.9600 +643 4311 0.4040 +643 4345 0.4740 +643 4684 0.5050 +643 5079 0.5010 +643 5133 0.7140 +643 5196 0.7390 +643 5197 0.6820 +643 5368 0.5100 +643 5450 0.5900 +643 5473 0.8330 +643 5551 0.5290 +643 5788 0.8330 +643 5896 0.6140 +643 6003 0.5150 +643 6011 0.6720 +643 6097 0.4780 +643 6346 0.7660 +643 6347 0.8720 +643 6348 0.9060 +643 6351 0.8600 +643 6354 0.8280 +643 6355 0.7480 +643 6356 0.7530 +643 6357 0.8250 +643 6359 0.8200 +643 6360 0.9470 +643 6361 0.8730 +643 6362 0.9010 +643 6363 0.9990 +643 6364 0.9030 +643 6366 0.9970 +643 6367 0.8660 +643 6369 0.7170 +643 6370 0.8730 +643 6372 0.7850 +643 6373 0.8800 +643 6374 0.9060 +643 6375 0.8450 +643 6376 0.7870 +643 6382 0.6770 +643 6387 0.9980 +643 6402 0.7460 +643 6404 0.4910 +643 6504 0.5860 +643 6689 0.5910 +643 6693 0.4810 +643 6714 0.6020 +643 6772 0.4320 +643 6774 0.5490 +643 6775 0.5160 +643 6776 0.4350 +643 6777 0.4400 +643 6846 0.7520 +643 6850 0.4040 +643 6932 0.5630 +643 7037 0.5950 +643 7040 0.4050 +643 7097 0.4190 +643 7099 0.4260 +643 7124 0.6040 +643 7132 0.4030 +643 7292 0.4480 +643 7293 0.6170 +643 7412 0.4510 +643 7852 0.9460 +643 8115 0.6470 +643 8174 0.4500 +643 8320 0.5450 +643 8600 0.4020 +643 8639 0.5700 +643 8698 0.5270 +643 8784 0.4950 +643 8832 0.5080 +643 9034 0.4520 +643 9214 0.4690 +643 9308 0.4490 +643 9447 0.4100 +643 9547 0.8750 +643 9560 0.7210 +643 10004 0.5860 +643 10219 0.5860 +643 10344 0.7070 +643 10365 0.4390 +643 10538 0.6750 +643 10563 0.9990 +643 10663 0.7370 +643 10672 0.4260 +643 10673 0.6290 +643 10803 0.7200 +643 10850 0.9200 +643 22806 0.4920 +643 23308 0.6810 +643 23495 0.5520 +643 27087 0.8290 +643 29126 0.5730 +643 29802 0.5510 +643 29851 0.9500 +643 30009 0.7370 +643 30816 0.5320 +643 50615 0.8420 +643 50616 0.5500 +643 50863 0.4650 +643 50943 0.8430 +643 51284 0.5310 +643 51554 0.4660 +643 54106 0.4990 +643 55022 0.4260 +643 55024 0.4930 +643 56477 0.8430 +643 57007 0.7110 +643 57379 0.6070 +643 58191 0.8670 +643 59067 0.6950 +643 60468 0.5720 +643 63940 0.4210 +643 80380 0.4530 +643 80381 0.5070 +643 83416 0.5390 +643 83417 0.4730 +643 84684 0.5070 +643 84824 0.6120 +643 84868 0.5960 +643 94235 0.4320 +643 112744 0.4270 +643 114836 0.5620 +643 115650 0.6620 +643 123803 0.4180 +643 131890 0.6700 +643 149041 0.6680 +643 151888 0.7510 +643 199786 0.4480 +643 201633 0.5610 +643 259197 0.6080 +643 283149 0.4830 +643 414062 0.8220 +643 100133941 0.5200 +643 102723407 0.4730 +644 645 0.9930 +644 1371 0.5800 +644 1730 0.5600 +644 1775 0.6290 +644 2235 0.6360 +644 2495 0.4630 +644 2512 0.4340 +644 2539 0.5920 +644 2584 0.5130 +644 2585 0.5050 +644 3162 0.9950 +644 3163 0.9920 +644 3240 0.6170 +644 3263 0.6610 +644 3558 0.4270 +644 3667 0.4860 +644 3735 0.6300 +644 4151 0.4740 +644 4780 0.5280 +644 5447 0.7080 +644 5498 0.4280 +644 5580 0.4290 +644 5590 0.4040 +644 5595 0.4260 +644 5604 0.5440 +644 5621 0.4020 +644 5728 0.4200 +644 6652 0.5740 +644 6888 0.4520 +644 7094 0.4270 +644 7363 0.7720 +644 7364 0.7570 +644 7365 0.7780 +644 7366 0.7700 +644 7367 0.7700 +644 7389 0.5650 +644 7390 0.4020 +644 9104 0.6990 +644 9563 0.6530 +644 9817 0.4960 +644 10599 0.7600 +644 10720 0.7820 +644 23438 0.6700 +644 23476 0.5160 +644 23483 0.6600 +644 23621 0.4540 +644 28234 0.7420 +644 54490 0.7790 +644 54575 0.8320 +644 54576 0.8320 +644 54577 0.8320 +644 54578 0.8250 +644 54579 0.7810 +644 54600 0.7700 +644 54657 0.8260 +644 54658 0.9330 +644 54659 0.7770 +644 57057 0.7140 +644 64100 0.6830 +644 64951 0.4340 +644 79020 0.4370 +644 79799 0.7790 +644 81624 0.8300 +644 84263 0.4220 +644 84816 0.4840 +644 89874 0.5410 +644 148479 0.6070 +644 574537 0.7870 +645 874 0.4080 +645 1329 0.4520 +645 1345 0.4800 +645 1350 0.4280 +645 1371 0.4660 +645 1537 0.8480 +645 1633 0.4940 +645 1716 0.4960 +645 1730 0.5390 +645 2230 0.4990 +645 2235 0.7700 +645 2623 0.5010 +645 3145 0.5420 +645 3162 0.9520 +645 3163 0.9510 +645 4191 0.5610 +645 4512 0.5580 +645 4513 0.6580 +645 4514 0.5520 +645 4519 0.5640 +645 4535 0.7100 +645 4536 0.6130 +645 4537 0.7140 +645 4538 0.7140 +645 4539 0.6440 +645 4540 0.6120 +645 4541 0.5780 +645 4552 0.4110 +645 4644 0.6670 +645 4694 0.4310 +645 4695 0.7820 +645 4696 0.7040 +645 4698 0.7910 +645 4700 0.7770 +645 4701 0.4610 +645 4702 0.8280 +645 4705 0.4950 +645 4706 0.7070 +645 4709 0.7190 +645 4710 0.5520 +645 4711 0.5730 +645 4712 0.6350 +645 4713 0.7870 +645 4714 0.7860 +645 4715 0.7970 +645 4716 0.7830 +645 4718 0.5670 +645 4720 0.8240 +645 4722 0.8760 +645 4723 0.8420 +645 4724 0.8030 +645 4725 0.4080 +645 4726 0.7620 +645 4728 0.8400 +645 4729 0.8180 +645 4731 0.5940 +645 4842 0.4150 +645 4843 0.4070 +645 5052 0.4420 +645 5447 0.4510 +645 5498 0.4490 +645 6389 0.4010 +645 6390 0.4860 +645 6391 0.4920 +645 6620 0.5540 +645 6622 0.4200 +645 7001 0.4640 +645 7084 0.4930 +645 7295 0.6020 +645 7363 0.6760 +645 7364 0.6740 +645 7365 0.6850 +645 7366 0.6740 +645 7367 0.6750 +645 7381 0.6810 +645 7384 0.6140 +645 7385 0.5980 +645 7386 0.8620 +645 7388 0.6190 +645 7389 0.5430 +645 8991 0.4010 +645 9377 0.6630 +645 9446 0.4070 +645 9512 0.5840 +645 10245 0.4110 +645 10661 0.4250 +645 10681 0.7280 +645 10720 0.6810 +645 10975 0.4260 +645 11343 0.5600 +645 23203 0.5840 +645 23645 0.5370 +645 25828 0.4580 +645 27089 0.5650 +645 27235 0.5100 +645 29796 0.6990 +645 29937 0.5770 +645 29957 0.4200 +645 51015 0.6040 +645 51079 0.7720 +645 51629 0.4130 +645 51693 0.4190 +645 54431 0.4610 +645 54490 0.6810 +645 54539 0.6000 +645 54575 0.7050 +645 54576 0.6980 +645 54577 0.6980 +645 54578 0.6970 +645 54579 0.6800 +645 54600 0.6730 +645 54657 0.6950 +645 54658 0.7080 +645 54659 0.6790 +645 55312 0.9130 +645 55967 0.8130 +645 79085 0.4250 +645 79598 0.4930 +645 79728 0.6890 +645 79799 0.6800 +645 81341 0.5340 +645 81624 0.8310 +645 84886 0.4430 +645 84939 0.6660 +645 91300 0.5430 +645 91942 0.4690 +645 112812 0.4400 +645 114789 0.4200 +645 116151 0.4800 +645 126328 0.5740 +645 139221 0.6660 +645 140809 0.4450 +645 201140 0.4050 +645 284427 0.4200 +645 374291 0.7230 +645 389434 0.8290 +645 440567 0.6020 +645 574537 0.6850 +645 728317 0.6660 +645 100532726 0.5650 +646 3713 0.4060 +646 6427 0.6670 +646 6667 0.5490 +646 7348 0.4690 +646 8220 0.4840 +646 8626 0.4800 +646 105375355 0.4660 +648 667 0.4120 +648 672 0.9700 +648 675 0.7800 +648 701 0.7560 +648 836 0.4950 +648 861 0.8750 +648 865 0.8210 +648 894 0.4360 +648 898 0.5150 +648 901 0.5290 +648 947 0.5190 +648 960 0.7190 +648 962 0.4720 +648 983 0.6200 +648 990 0.4950 +648 991 0.6040 +648 996 0.9030 +648 999 0.6340 +648 1000 0.5770 +648 1017 0.5750 +648 1019 0.5370 +648 1021 0.6720 +648 1026 0.6450 +648 1027 0.5790 +648 1029 0.9130 +648 1030 0.6070 +648 1033 0.5080 +648 1058 0.4030 +648 1069 0.4160 +648 1107 0.7110 +648 1108 0.6250 +648 1386 0.5640 +648 1432 0.6930 +648 1457 0.8760 +648 1459 0.7890 +648 1460 0.7540 +648 1485 0.4530 +648 1487 0.7170 +648 1499 0.6610 +648 1670 0.5180 +648 1786 0.7910 +648 1788 0.6450 +648 1789 0.4620 +648 1822 0.5220 +648 1869 0.4530 +648 1876 0.9440 +648 1877 0.7210 +648 1911 0.9990 +648 1912 0.9990 +648 1950 0.5650 +648 1956 0.5230 +648 1958 0.6400 +648 1994 0.4150 +648 2033 0.4190 +648 2064 0.4330 +648 2099 0.4200 +648 2122 0.5830 +648 2145 0.9690 +648 2146 0.9990 +648 2247 0.5070 +648 2305 0.4180 +648 2307 0.4250 +648 2309 0.5630 +648 2322 0.5160 +648 2335 0.5510 +648 2547 0.4270 +648 2597 0.6860 +648 2625 0.8920 +648 2626 0.5140 +648 2670 0.5280 +648 2672 0.4010 +648 2735 0.8670 +648 2736 0.4510 +648 2932 0.4450 +648 3005 0.4620 +648 3012 0.9090 +648 3013 0.5170 +648 3014 0.8740 +648 3015 0.6490 +648 3017 0.5760 +648 3018 0.7830 +648 3021 0.8630 +648 3024 0.5270 +648 3064 0.4950 +648 3065 0.7180 +648 3066 0.9770 +648 3070 0.5930 +648 3091 0.4590 +648 3172 0.5370 +648 3190 0.6300 +648 3202 0.4590 +648 3205 0.4850 +648 3214 0.4750 +648 3222 0.4220 +648 3237 0.4970 +648 3238 0.4300 +648 3308 0.5430 +648 3320 0.4580 +648 3326 0.4340 +648 3655 0.4530 +648 3720 0.7750 +648 3725 0.6720 +648 3815 0.5120 +648 3837 0.5170 +648 3845 0.4780 +648 3856 0.4950 +648 3875 0.4760 +648 3880 0.4320 +648 3927 0.4100 +648 4000 0.5770 +648 4072 0.5540 +648 4193 0.7750 +648 4204 0.4950 +648 4233 0.4010 +648 4254 0.4010 +648 4288 0.4770 +648 4297 0.5220 +648 4298 0.9130 +648 4300 0.6210 +648 4316 0.5600 +648 4343 0.7480 +648 4440 0.6270 +648 4477 0.8780 +648 4602 0.5480 +648 4609 0.8780 +648 4613 0.6350 +648 4780 0.4060 +648 4851 0.6210 +648 4853 0.4080 +648 4869 0.4140 +648 4904 0.4510 +648 4907 0.4140 +648 5119 0.5570 +648 5241 0.4700 +648 5250 0.9780 +648 5305 0.5310 +648 5315 0.4970 +648 5454 0.4210 +648 5460 0.7450 +648 5468 0.6210 +648 5591 0.4230 +648 5600 0.5240 +648 5604 0.4330 +648 5725 0.4080 +648 5727 0.4550 +648 5728 0.7610 +648 5888 0.7920 +648 5914 0.7220 +648 5928 0.9630 +648 5931 0.9640 +648 5978 0.6040 +648 6015 0.9990 +648 6045 0.9990 +648 6046 0.5370 +648 6129 0.4400 +648 6188 0.4260 +648 6233 0.5410 +648 6275 0.4560 +648 6277 0.4010 +648 6426 0.4140 +648 6469 0.6030 +648 6500 0.4120 +648 6504 0.4560 +648 6513 0.4250 +648 6591 0.7910 +648 6597 0.6710 +648 6601 0.4380 +648 6608 0.4560 +648 6612 0.4280 +648 6613 0.6280 +648 6615 0.8080 +648 6657 0.8250 +648 6662 0.5360 +648 6756 0.4970 +648 6774 0.5480 +648 6908 0.6810 +648 7015 0.5610 +648 7027 0.5790 +648 7029 0.5050 +648 7070 0.4180 +648 7101 0.6140 +648 7153 0.4180 +648 7157 0.9560 +648 7272 0.9640 +648 7291 0.8850 +648 7317 0.4270 +648 7321 0.5660 +648 7322 0.6310 +648 7323 0.9440 +648 7324 0.5700 +648 7329 0.5810 +648 7337 0.5080 +648 7341 0.5170 +648 7342 0.5680 +648 7403 0.5290 +648 7520 0.7410 +648 7528 0.9600 +648 7703 0.9990 +648 7704 0.9430 +648 7837 0.5770 +648 7852 0.4480 +648 7867 0.7090 +648 7874 0.7680 +648 8091 0.4380 +648 8237 0.4700 +648 8290 0.8050 +648 8313 0.4070 +648 8314 0.9150 +648 8331 0.5170 +648 8334 0.5210 +648 8337 0.9600 +648 8338 0.9540 +648 8340 0.5740 +648 8341 0.5720 +648 8342 0.5640 +648 8345 0.5730 +648 8347 0.6820 +648 8348 0.5720 +648 8349 0.7310 +648 8356 0.8610 +648 8361 0.7580 +648 8405 0.7520 +648 8451 0.4300 +648 8452 0.4780 +648 8467 0.4610 +648 8473 0.4200 +648 8535 0.9990 +648 8549 0.7590 +648 8626 0.4300 +648 8650 0.5090 +648 8697 0.9080 +648 8726 0.9890 +648 8815 0.6270 +648 8819 0.4410 +648 8841 0.5640 +648 8842 0.7760 +648 8881 0.9030 +648 8945 0.4590 +648 8970 0.5760 +648 8971 0.5100 +648 9112 0.5840 +648 9201 0.5540 +648 9219 0.5640 +648 9261 0.5270 +648 9314 0.6420 +648 9429 0.6900 +648 9555 0.4170 +648 9577 0.9110 +648 9839 0.5810 +648 9869 0.5510 +648 9898 0.9520 +648 9994 0.4050 +648 10014 0.5540 +648 10138 0.9810 +648 10215 0.4450 +648 10336 0.9790 +648 10370 0.6480 +648 10381 0.4280 +648 10389 0.9830 +648 10393 0.9010 +648 10524 0.6980 +648 10562 0.6070 +648 10763 0.7200 +648 10919 0.4130 +648 10951 0.9910 +648 11065 0.9100 +648 11177 0.5990 +648 11186 0.4810 +648 11222 0.5270 +648 11335 0.7350 +648 22823 0.6190 +648 22955 0.9960 +648 23028 0.7700 +648 23112 0.5030 +648 23133 0.4480 +648 23135 0.7200 +648 23186 0.7550 +648 23309 0.4260 +648 23326 0.5720 +648 23367 0.6060 +648 23369 0.4040 +648 23405 0.5500 +648 23411 0.6000 +648 23412 0.4820 +648 23429 0.9960 +648 23466 0.9950 +648 23468 0.4700 +648 23476 0.6190 +648 23492 0.9990 +648 23512 0.9970 +648 25847 0.9010 +648 25906 0.9000 +648 26009 0.5200 +648 26013 0.6370 +648 26018 0.7080 +648 26053 0.6280 +648 26147 0.5700 +648 26523 0.5600 +648 27161 0.4610 +648 27327 0.6500 +648 27338 0.9170 +648 28514 0.4490 +648 29882 0.9050 +648 29945 0.9010 +648 29947 0.4750 +648 30009 0.4290 +648 51132 0.4800 +648 51133 0.5860 +648 51239 0.5400 +648 51274 0.4210 +648 51343 0.5450 +648 51366 0.6460 +648 51433 0.9040 +648 51434 0.9040 +648 51510 0.5240 +648 51529 0.9010 +648 51564 0.5740 +648 53615 0.5240 +648 54145 0.5730 +648 54815 0.5330 +648 54880 0.9580 +648 55252 0.6420 +648 55766 0.5170 +648 55904 0.5160 +648 55929 0.8310 +648 56852 0.4100 +648 57167 0.7490 +648 57332 0.9990 +648 57459 0.5180 +648 57504 0.5440 +648 57562 0.4180 +648 57708 0.4670 +648 64319 0.6540 +648 64682 0.9010 +648 79184 0.9170 +648 79727 0.4390 +648 79923 0.7520 +648 80012 0.9920 +648 80816 0.5610 +648 83746 0.6800 +648 84108 0.9880 +648 84232 0.4990 +648 84333 0.9760 +648 84456 0.5550 +648 84525 0.6350 +648 84678 0.8270 +648 84733 0.9990 +648 84759 0.9920 +648 85236 0.5750 +648 94239 0.5550 +648 117246 0.5560 +648 119504 0.9010 +648 121536 0.9280 +648 128312 0.5750 +648 132625 0.6290 +648 133482 0.4860 +648 135228 0.4120 +648 137902 0.4270 +648 140459 0.5400 +648 165918 0.4250 +648 166979 0.5450 +648 171023 0.9440 +648 192669 0.5140 +648 192670 0.5010 +648 246184 0.9000 +648 255626 0.5810 +648 284654 0.4190 +648 404281 0.7010 +648 440093 0.7370 +648 440686 0.7810 +648 440689 0.6290 +648 474382 0.5420 +648 653604 0.8850 +648 723790 0.4220 +648 100133941 0.6400 +648 100170841 0.4800 +648 100532731 0.9790 +649 650 0.8520 +649 651 0.6330 +649 652 0.6690 +649 653 0.6240 +649 654 0.6210 +649 655 0.7440 +649 656 0.6870 +649 657 0.6620 +649 658 0.4380 +649 659 0.7070 +649 715 0.9200 +649 716 0.8510 +649 871 0.7260 +649 1031 0.4020 +649 1277 0.7770 +649 1278 0.7840 +649 1280 0.5890 +649 1281 0.8220 +649 1282 0.4210 +649 1289 0.7730 +649 1290 0.6360 +649 1294 0.5890 +649 1300 0.5460 +649 1301 0.5780 +649 1302 0.4970 +649 1442 0.6210 +649 1443 0.5930 +649 1514 0.5760 +649 1634 0.6340 +649 1725 0.4530 +649 1758 0.4790 +649 1834 0.5600 +649 1950 0.4800 +649 2054 0.4700 +649 2274 0.4080 +649 2317 0.4360 +649 2335 0.8940 +649 2658 0.4620 +649 2660 0.8360 +649 2662 0.4940 +649 2689 0.5090 +649 2694 0.5930 +649 3339 0.7240 +649 3909 0.6970 +649 3910 0.4730 +649 3914 0.5050 +649 3918 0.6520 +649 4015 0.8410 +649 4016 0.7270 +649 4017 0.8460 +649 4036 0.4330 +649 4038 0.4390 +649 4041 0.4380 +649 4087 0.4070 +649 4153 0.4450 +649 4313 0.6800 +649 4314 0.6010 +649 4316 0.5550 +649 4318 0.4240 +649 4321 0.5170 +649 4322 0.5930 +649 4323 0.5050 +649 4327 0.5190 +649 4673 0.4200 +649 4851 0.4390 +649 5045 0.5560 +649 5118 0.8880 +649 5176 0.6040 +649 5251 0.4480 +649 5340 0.8410 +649 5351 0.4450 +649 5352 0.6130 +649 5358 0.4750 +649 5479 0.5470 +649 5617 0.6160 +649 5651 0.4110 +649 6423 0.7700 +649 6425 0.5100 +649 6440 0.4910 +649 6678 0.4240 +649 6696 0.4120 +649 7040 0.5720 +649 7042 0.4870 +649 7043 0.4620 +649 7057 0.5910 +649 7076 0.4030 +649 7092 0.6000 +649 7093 0.7600 +649 7471 0.4790 +649 8038 0.4220 +649 8200 0.4300 +649 8404 0.4190 +649 8646 0.9840 +649 9210 0.4080 +649 9241 0.5580 +649 9313 0.5340 +649 9467 0.4090 +649 9507 0.4810 +649 9509 0.6630 +649 9871 0.5140 +649 9918 0.5110 +649 10220 0.5990 +649 10272 0.4630 +649 10371 0.4880 +649 10468 0.4070 +649 10491 0.7240 +649 10631 0.9830 +649 10747 0.4690 +649 11004 0.4930 +649 11093 0.5920 +649 22984 0.4080 +649 23399 0.6490 +649 27302 0.4310 +649 50509 0.5290 +649 51360 0.4460 +649 55151 0.6700 +649 57045 0.6690 +649 60681 0.7070 +649 64175 0.6990 +649 64795 0.4510 +649 79070 0.4070 +649 80781 0.4320 +649 81693 0.6300 +649 84171 0.6450 +649 84695 0.8450 +649 85301 0.5690 +649 85443 0.4910 +649 90993 0.5280 +649 121340 0.5090 +649 140766 0.4680 +649 143888 0.4280 +649 151449 0.4140 +649 255631 0.5130 +649 283208 0.5140 +649 353500 0.4630 +649 375790 0.4260 +649 387733 0.6360 +649 392255 0.4950 +650 651 0.5050 +650 652 0.9700 +650 653 0.4720 +650 654 0.9470 +650 655 0.9880 +650 657 0.9990 +650 658 0.9990 +650 659 0.9990 +650 836 0.4210 +650 860 0.9820 +650 865 0.7880 +650 885 0.4960 +650 947 0.6890 +650 960 0.6560 +650 968 0.4760 +650 1277 0.6910 +650 1278 0.5040 +650 1280 0.8550 +650 1300 0.5600 +650 1301 0.5700 +650 1311 0.7370 +650 1435 0.4160 +650 1482 0.5390 +650 1490 0.8490 +650 1499 0.8010 +650 1513 0.5410 +650 1634 0.4420 +650 1745 0.5200 +650 1746 0.5970 +650 1747 0.4510 +650 1749 0.9030 +650 1750 0.7870 +650 1758 0.5830 +650 1834 0.7490 +650 1906 0.4780 +650 1948 0.4100 +650 1950 0.5830 +650 1956 0.4550 +650 2011 0.4240 +650 2022 0.8540 +650 2033 0.5570 +650 2099 0.4450 +650 2246 0.6840 +650 2247 0.9370 +650 2248 0.7490 +650 2249 0.8170 +650 2250 0.7620 +650 2251 0.7460 +650 2252 0.7600 +650 2253 0.8480 +650 2254 0.7780 +650 2255 0.7660 +650 2258 0.6440 +650 2260 0.4250 +650 2263 0.4130 +650 2302 0.4190 +650 2308 0.4220 +650 2335 0.9020 +650 2353 0.4330 +650 2535 0.4020 +650 2597 0.6210 +650 2626 0.4900 +650 2627 0.4230 +650 2658 0.5210 +650 2697 0.4190 +650 2719 0.4030 +650 2735 0.5070 +650 2737 0.4070 +650 2932 0.5120 +650 3082 0.4620 +650 3091 0.4960 +650 3096 0.4790 +650 3170 0.4220 +650 3172 0.4250 +650 3206 0.5640 +650 3308 0.4780 +650 3339 0.5810 +650 3381 0.7730 +650 3397 0.6050 +650 3479 0.7840 +650 3480 0.4470 +650 3481 0.4710 +650 3486 0.5700 +650 3487 0.5010 +650 3549 0.7720 +650 3552 0.4650 +650 3553 0.6050 +650 3569 0.5990 +650 3576 0.4340 +650 3586 0.4690 +650 3627 0.4800 +650 3630 0.5940 +650 3670 0.5610 +650 3688 0.4680 +650 3725 0.4740 +650 3791 0.4150 +650 3872 0.4040 +650 3952 0.5700 +650 3973 0.4590 +650 3976 0.4130 +650 4038 0.4780 +650 4040 0.4630 +650 4041 0.5640 +650 4086 0.7600 +650 4087 0.6680 +650 4088 0.6380 +650 4089 0.9540 +650 4090 0.9180 +650 4091 0.8680 +650 4092 0.8090 +650 4093 0.8720 +650 4256 0.9390 +650 4312 0.4250 +650 4313 0.4770 +650 4314 0.4180 +650 4316 0.5220 +650 4318 0.4790 +650 4321 0.4810 +650 4322 0.5810 +650 4487 0.7970 +650 4488 0.7010 +650 4609 0.4090 +650 4681 0.9240 +650 4745 0.5280 +650 4756 0.9040 +650 4772 0.4700 +650 4803 0.6120 +650 4851 0.4680 +650 4907 0.5070 +650 4969 0.5190 +650 4982 0.4560 +650 5008 0.4150 +650 5154 0.5340 +650 5175 0.4850 +650 5228 0.4850 +650 5241 0.4740 +650 5460 0.4780 +650 5468 0.5480 +650 5595 0.5180 +650 5617 0.4620 +650 5727 0.5580 +650 5741 0.6340 +650 5743 0.4390 +650 5744 0.6970 +650 5788 0.4550 +650 5914 0.4750 +650 5970 0.5200 +650 6382 0.4360 +650 6387 0.5320 +650 6422 0.4650 +650 6469 0.8320 +650 6591 0.4230 +650 6608 0.4650 +650 6615 0.4530 +650 6657 0.4850 +650 6662 0.8160 +650 6678 0.7020 +650 6694 0.4540 +650 6696 0.9210 +650 6736 0.4420 +650 6772 0.5480 +650 6774 0.6110 +650 6850 0.4480 +650 6876 0.4160 +650 6909 0.6260 +650 6926 0.6850 +650 7036 0.4590 +650 7040 0.7010 +650 7042 0.7220 +650 7043 0.5690 +650 7046 0.7470 +650 7048 0.5080 +650 7049 0.8250 +650 7057 0.4920 +650 7070 0.5140 +650 7124 0.7310 +650 7130 0.5810 +650 7157 0.4160 +650 7291 0.4490 +650 7412 0.5680 +650 7448 0.6230 +650 7450 0.6300 +650 7471 0.5030 +650 7472 0.4360 +650 7473 0.4640 +650 7474 0.5920 +650 7476 0.4100 +650 7477 0.4020 +650 7480 0.4790 +650 7481 0.4430 +650 7837 0.5010 +650 7852 0.4400 +650 8074 0.4220 +650 8200 0.8960 +650 8312 0.4080 +650 8313 0.4480 +650 8549 0.5430 +650 8600 0.8640 +650 8643 0.4330 +650 8646 0.9990 +650 8737 0.4470 +650 8817 0.8010 +650 8822 0.7410 +650 8823 0.7690 +650 8840 0.6160 +650 8842 0.4730 +650 9076 0.4300 +650 9241 0.9990 +650 9260 0.5420 +650 9314 0.4090 +650 9350 0.6130 +650 9464 0.4190 +650 9496 0.4400 +650 9765 0.5670 +650 10272 0.7190 +650 10468 0.8230 +650 10631 0.4350 +650 10763 0.4810 +650 10913 0.4640 +650 11061 0.4140 +650 11096 0.4200 +650 11167 0.8450 +650 22943 0.7640 +650 23181 0.4330 +650 25805 0.6440 +650 25884 0.6610 +650 25925 0.5100 +650 25928 0.6480 +650 26281 0.7690 +650 26585 0.9950 +650 27006 0.7550 +650 27123 0.5490 +650 27302 0.4710 +650 50846 0.4120 +650 50964 0.7690 +650 51176 0.4610 +650 54361 0.5540 +650 54959 0.4080 +650 56033 0.4870 +650 56934 0.5120 +650 56963 0.9620 +650 57007 0.4560 +650 57045 0.6890 +650 57154 0.7480 +650 57817 0.5800 +650 64321 0.4840 +650 64388 0.9630 +650 64750 0.6690 +650 78992 0.4050 +650 79923 0.5340 +650 80274 0.4520 +650 80326 0.4100 +650 81029 0.4320 +650 81621 0.5300 +650 89780 0.7450 +650 90488 0.4310 +650 91851 0.6550 +650 112574 0.4700 +650 117166 0.6680 +650 121340 0.8770 +650 124857 0.6790 +650 130399 0.6470 +650 137902 0.4880 +650 148738 0.9960 +650 168667 0.8950 +650 220001 0.6800 +650 285704 0.9930 +650 343637 0.4230 +650 375567 0.5110 +650 644168 0.4270 +650 752014 0.4180 +651 655 0.5260 +651 657 0.7020 +651 658 0.7230 +651 659 0.6690 +651 860 0.5200 +651 1284 0.5260 +651 1855 0.4340 +651 2248 0.5300 +651 2249 0.5160 +651 2250 0.5430 +651 2251 0.4980 +651 2252 0.5210 +651 2253 0.5210 +651 2254 0.5090 +651 2255 0.5360 +651 3381 0.6800 +651 3479 0.5590 +651 3845 0.5280 +651 4089 0.6470 +651 4090 0.4770 +651 4091 0.4220 +651 4093 0.4150 +651 4487 0.5610 +651 6383 0.4620 +651 6422 0.4160 +651 6423 0.5420 +651 6696 0.6150 +651 7040 0.4730 +651 7042 0.4400 +651 7431 0.6040 +651 7980 0.6950 +651 8323 0.4190 +651 8646 0.6060 +651 8817 0.5270 +651 8822 0.5100 +651 8823 0.5010 +651 9210 0.4660 +651 9241 0.5060 +651 10468 0.6060 +651 10801 0.6200 +651 11186 0.5150 +651 23136 0.4060 +651 26281 0.5000 +651 27006 0.4930 +651 60529 0.4620 +651 64094 0.4220 +651 65009 0.8420 +651 117166 0.4120 +651 124857 0.4390 +651 646960 0.4150 +652 653 0.6790 +652 654 0.9660 +652 655 0.9780 +652 657 0.9990 +652 658 0.9990 +652 659 0.9990 +652 836 0.4390 +652 860 0.8360 +652 861 0.4650 +652 947 0.7540 +652 960 0.4910 +652 999 0.5420 +652 1000 0.4960 +652 1003 0.5880 +652 1045 0.6130 +652 1050 0.4180 +652 1270 0.5290 +652 1277 0.5790 +652 1278 0.4500 +652 1280 0.5310 +652 1282 0.5610 +652 1285 0.5250 +652 1300 0.4500 +652 1482 0.8140 +652 1490 0.7110 +652 1499 0.8090 +652 1618 0.5260 +652 1634 0.5820 +652 1735 0.4560 +652 1745 0.6910 +652 1746 0.7230 +652 1747 0.4980 +652 1749 0.7110 +652 1834 0.6850 +652 1906 0.5280 +652 1948 0.4530 +652 1950 0.6890 +652 1956 0.5160 +652 2011 0.4060 +652 2022 0.5070 +652 2056 0.4040 +652 2064 0.4140 +652 2103 0.6380 +652 2116 0.4010 +652 2138 0.6640 +652 2200 0.7420 +652 2201 0.5060 +652 2239 0.5550 +652 2246 0.5490 +652 2247 0.8730 +652 2248 0.6850 +652 2249 0.8530 +652 2250 0.6990 +652 2251 0.6440 +652 2252 0.7180 +652 2253 0.8700 +652 2254 0.8180 +652 2255 0.8850 +652 2258 0.7370 +652 2260 0.5210 +652 2261 0.4490 +652 2263 0.6930 +652 2280 0.5640 +652 2290 0.4940 +652 2294 0.8860 +652 2295 0.6040 +652 2296 0.6840 +652 2303 0.4350 +652 2323 0.4410 +652 2335 0.7150 +652 2487 0.4430 +652 2492 0.4870 +652 2526 0.4580 +652 2597 0.6180 +652 2623 0.5000 +652 2624 0.5500 +652 2625 0.4760 +652 2626 0.9250 +652 2627 0.6590 +652 2637 0.4260 +652 2660 0.5300 +652 2668 0.7130 +652 2670 0.4910 +652 2674 0.4040 +652 2697 0.5050 +652 2719 0.4510 +652 2735 0.6440 +652 2736 0.5480 +652 2737 0.5500 +652 2932 0.5740 +652 3037 0.4060 +652 3082 0.4930 +652 3087 0.4160 +652 3091 0.4710 +652 3167 0.4520 +652 3169 0.4250 +652 3170 0.6680 +652 3172 0.5590 +652 3199 0.4080 +652 3200 0.4460 +652 3206 0.4440 +652 3209 0.4120 +652 3216 0.4040 +652 3217 0.4450 +652 3339 0.5980 +652 3381 0.5420 +652 3397 0.6060 +652 3398 0.5360 +652 3399 0.4310 +652 3400 0.4660 +652 3479 0.6060 +652 3480 0.4690 +652 3481 0.5320 +652 3491 0.6090 +652 3549 0.6870 +652 3553 0.4610 +652 3562 0.4880 +652 3569 0.6940 +652 3586 0.4020 +652 3630 0.6560 +652 3664 0.6700 +652 3670 0.6980 +652 3688 0.4160 +652 3725 0.4370 +652 3778 0.4140 +652 3791 0.6210 +652 3815 0.5230 +652 3856 0.4160 +652 3861 0.4250 +652 3875 0.4170 +652 3975 0.4440 +652 3976 0.6200 +652 4036 0.5930 +652 4038 0.4960 +652 4040 0.4770 +652 4041 0.5290 +652 4072 0.4230 +652 4086 0.4870 +652 4087 0.8040 +652 4088 0.6630 +652 4089 0.9330 +652 4090 0.8370 +652 4091 0.7280 +652 4092 0.6700 +652 4093 0.7850 +652 4208 0.5290 +652 4211 0.4110 +652 4254 0.6190 +652 4256 0.7200 +652 4314 0.5960 +652 4318 0.4220 +652 4319 0.4600 +652 4435 0.4870 +652 4487 0.9100 +652 4488 0.8230 +652 4599 0.4480 +652 4609 0.5750 +652 4617 0.4540 +652 4624 0.4660 +652 4633 0.4510 +652 4654 0.4840 +652 4681 0.9200 +652 4756 0.7500 +652 4760 0.4260 +652 4762 0.4150 +652 4803 0.4010 +652 4821 0.4050 +652 4851 0.5290 +652 4853 0.4050 +652 4907 0.4500 +652 4914 0.6090 +652 4915 0.5560 +652 4990 0.5790 +652 5008 0.4920 +652 5015 0.6350 +652 5047 0.4160 +652 5075 0.4130 +652 5076 0.5930 +652 5077 0.5500 +652 5080 0.6720 +652 5081 0.6820 +652 5083 0.7790 +652 5154 0.6140 +652 5156 0.5880 +652 5159 0.4410 +652 5175 0.5890 +652 5265 0.4460 +652 5307 0.4690 +652 5308 0.7560 +652 5460 0.7420 +652 5468 0.4990 +652 5595 0.4930 +652 5617 0.4850 +652 5629 0.5260 +652 5654 0.5350 +652 5727 0.6980 +652 5764 0.5400 +652 5788 0.4860 +652 6299 0.4480 +652 6387 0.5140 +652 6422 0.5120 +652 6423 0.4690 +652 6440 0.4220 +652 6469 0.9220 +652 6474 0.5150 +652 6495 0.5560 +652 6496 0.4830 +652 6591 0.5650 +652 6608 0.5910 +652 6615 0.5490 +652 6656 0.5760 +652 6657 0.7450 +652 6658 0.4420 +652 6662 0.7220 +652 6663 0.5150 +652 6678 0.5750 +652 6696 0.7400 +652 6736 0.4620 +652 6774 0.5340 +652 6783 0.4460 +652 6850 0.5120 +652 6862 0.8780 +652 6876 0.4270 +652 6909 0.5830 +652 6910 0.6230 +652 6911 0.7060 +652 6926 0.6920 +652 6943 0.4200 +652 6997 0.6050 +652 7010 0.4450 +652 7022 0.5600 +652 7026 0.4690 +652 7036 0.4440 +652 7046 0.7910 +652 7048 0.5800 +652 7049 0.7540 +652 7057 0.4070 +652 7070 0.4770 +652 7080 0.5180 +652 7124 0.4520 +652 7130 0.4330 +652 7139 0.5610 +652 7157 0.4700 +652 7291 0.5010 +652 7358 0.5920 +652 7431 0.4430 +652 7448 0.4590 +652 7450 0.4580 +652 7471 0.5950 +652 7472 0.5630 +652 7473 0.6420 +652 7474 0.6720 +652 7475 0.4850 +652 7476 0.5130 +652 7477 0.5320 +652 7478 0.4560 +652 7480 0.5230 +652 7481 0.6150 +652 7482 0.5350 +652 7483 0.4120 +652 7484 0.4340 +652 7490 0.4890 +652 7545 0.4970 +652 7546 0.4020 +652 7547 0.4490 +652 7704 0.5400 +652 7837 0.4710 +652 7852 0.5280 +652 7976 0.4930 +652 8022 0.4930 +652 8200 0.5350 +652 8284 0.4120 +652 8312 0.4730 +652 8313 0.6560 +652 8320 0.5240 +652 8321 0.4110 +652 8456 0.4540 +652 8549 0.4750 +652 8600 0.5060 +652 8643 0.4700 +652 8646 0.9990 +652 8817 0.8330 +652 8822 0.6410 +652 8823 0.6740 +652 8838 0.5550 +652 8842 0.6640 +652 8854 0.4500 +652 9096 0.5320 +652 9241 0.9990 +652 9260 0.4240 +652 9314 0.6450 +652 9350 0.4640 +652 9355 0.5070 +652 9464 0.5890 +652 9496 0.4460 +652 9577 0.4870 +652 9957 0.5800 +652 10117 0.4220 +652 10215 0.4770 +652 10365 0.4530 +652 10379 0.4020 +652 10413 0.4040 +652 10468 0.9260 +652 10631 0.4130 +652 10736 0.5460 +652 10763 0.6670 +652 10818 0.4760 +652 10913 0.6270 +652 11023 0.4070 +652 11167 0.7620 +652 22943 0.7170 +652 23105 0.4150 +652 23462 0.4530 +652 23493 0.4060 +652 25805 0.5210 +652 25925 0.5040 +652 25928 0.7570 +652 25987 0.5020 +652 26281 0.6900 +652 26585 0.9650 +652 27006 0.6530 +652 27022 0.6530 +652 27121 0.4170 +652 27123 0.4490 +652 27302 0.6990 +652 28514 0.4250 +652 50846 0.5210 +652 50964 0.8740 +652 51176 0.8340 +652 51232 0.5880 +652 51523 0.5570 +652 54361 0.5840 +652 54514 0.4180 +652 54567 0.4310 +652 54757 0.4650 +652 54959 0.4520 +652 55845 0.4370 +652 55897 0.4200 +652 56033 0.7400 +652 56944 0.5100 +652 56963 0.6660 +652 56975 0.5720 +652 57045 0.8830 +652 57057 0.4790 +652 57154 0.4210 +652 57167 0.4530 +652 57817 0.5420 +652 58498 0.4730 +652 63978 0.7130 +652 64321 0.7310 +652 64388 0.9250 +652 79727 0.4850 +652 79923 0.7580 +652 80326 0.5180 +652 80781 0.4700 +652 81029 0.4800 +652 83595 0.4220 +652 83881 0.5940 +652 84138 0.4460 +652 89780 0.8440 +652 91851 0.5690 +652 93649 0.4250 +652 115908 0.4760 +652 116039 0.6440 +652 117166 0.7070 +652 117581 0.4540 +652 121340 0.6200 +652 124857 0.6820 +652 130399 0.7300 +652 132625 0.4160 +652 137902 0.4500 +652 140628 0.4420 +652 144608 0.4500 +652 148738 0.9110 +652 168667 0.9260 +652 284654 0.4540 +652 285704 0.8340 +652 286133 0.4100 +652 338917 0.4130 +652 342977 0.4740 +652 346673 0.4530 +652 359787 0.4350 +652 389421 0.4710 +652 390992 0.4010 +652 431707 0.4230 +652 644168 0.4380 +653 657 0.9910 +653 658 0.9770 +653 659 0.9900 +653 1834 0.5330 +653 2019 0.4600 +653 2200 0.7080 +653 2201 0.5550 +653 2660 0.4990 +653 2662 0.4830 +653 3339 0.4610 +653 4010 0.4710 +653 4041 0.4510 +653 4087 0.4250 +653 4089 0.5380 +653 4090 0.5570 +653 4091 0.5430 +653 4092 0.4490 +653 4093 0.5130 +653 4487 0.4690 +653 4617 0.4360 +653 4681 0.9100 +653 5122 0.4560 +653 5307 0.5040 +653 6469 0.4440 +653 6473 0.4820 +653 6662 0.4090 +653 7046 0.4580 +653 7048 0.4220 +653 7412 0.4650 +653 7473 0.5500 +653 7474 0.4290 +653 7482 0.4220 +653 8646 0.9800 +653 9173 0.4220 +653 9210 0.4160 +653 9241 0.9850 +653 9423 0.4340 +653 9496 0.4820 +653 10468 0.8270 +653 10512 0.4430 +653 25805 0.4110 +653 25884 0.6930 +653 26585 0.7840 +653 27302 0.5490 +653 50964 0.7020 +653 54361 0.6200 +653 56033 0.5120 +653 57045 0.7000 +653 63976 0.4270 +653 64388 0.8600 +653 130399 0.4530 +653 148738 0.7970 +653 151449 0.4970 +653 168667 0.5270 +653 220001 0.4930 +654 657 0.9990 +654 658 0.9990 +654 659 0.9990 +654 860 0.6270 +654 960 0.4900 +654 968 0.4930 +654 1147 0.4650 +654 1277 0.4210 +654 1280 0.4290 +654 1300 0.4500 +654 1499 0.4320 +654 1950 0.4160 +654 2022 0.4230 +654 2056 0.4320 +654 2246 0.5640 +654 2247 0.5480 +654 2249 0.4110 +654 2250 0.4070 +654 2251 0.4050 +654 2252 0.4770 +654 2253 0.5510 +654 2254 0.4410 +654 2255 0.4470 +654 2258 0.4720 +654 2512 0.5070 +654 2597 0.4460 +654 2660 0.4510 +654 2852 0.5970 +654 2919 0.4330 +654 3077 0.9050 +654 3084 0.4070 +654 3283 0.4870 +654 3381 0.4180 +654 3397 0.5180 +654 3479 0.4940 +654 3549 0.4870 +654 3569 0.7060 +654 3630 0.4140 +654 3717 0.5450 +654 4087 0.5660 +654 4088 0.5030 +654 4089 0.7920 +654 4090 0.7980 +654 4091 0.6670 +654 4092 0.5870 +654 4093 0.8030 +654 4254 0.4170 +654 4487 0.6180 +654 4681 0.9080 +654 4756 0.7170 +654 4782 0.4060 +654 4851 0.4340 +654 4891 0.4780 +654 5295 0.4690 +654 5307 0.4140 +654 6356 0.4140 +654 6357 0.4120 +654 6359 0.4200 +654 6382 0.4190 +654 6469 0.4270 +654 6642 0.4770 +654 6643 0.5960 +654 6662 0.5510 +654 6696 0.4820 +654 6774 0.4260 +654 7036 0.8870 +654 7037 0.6600 +654 7043 0.4340 +654 7046 0.5530 +654 7048 0.6450 +654 7049 0.4130 +654 7070 0.5650 +654 7130 0.4320 +654 7474 0.4740 +654 7475 0.5090 +654 7480 0.5150 +654 8600 0.6390 +654 8646 0.9750 +654 8817 0.4950 +654 8823 0.4060 +654 9241 0.9900 +654 9260 0.5660 +654 9577 0.4280 +654 10272 0.6100 +654 10468 0.8190 +654 10611 0.4200 +654 22943 0.4220 +654 25805 0.4130 +654 25884 0.6100 +654 25928 0.5490 +654 26281 0.4090 +654 26585 0.7850 +654 30061 0.5400 +654 50964 0.8510 +654 56033 0.4890 +654 57045 0.6920 +654 57817 0.8970 +654 58533 0.4220 +654 64388 0.9030 +654 79901 0.4360 +654 84699 0.5250 +654 89780 0.4500 +654 121340 0.5130 +654 130399 0.5120 +654 148738 0.9980 +654 151176 0.4460 +654 151449 0.5020 +654 164656 0.8890 +654 168667 0.9190 +654 220001 0.6290 +654 285704 0.4160 +654 375567 0.6200 +654 728378 0.4330 +655 656 0.8790 +655 657 0.9990 +655 658 0.9990 +655 659 0.9990 +655 836 0.4110 +655 860 0.7130 +655 947 0.4200 +655 960 0.6100 +655 977 0.5390 +655 999 0.5290 +655 1000 0.4190 +655 1149 0.4310 +655 1277 0.4740 +655 1280 0.5140 +655 1284 0.5190 +655 1290 0.4770 +655 1436 0.5140 +655 1490 0.5790 +655 1499 0.7230 +655 1746 0.4640 +655 1747 0.6260 +655 1749 0.7380 +655 1750 0.6630 +655 1758 0.4410 +655 1834 0.4230 +655 1950 0.6670 +655 1956 0.5750 +655 2022 0.8300 +655 2138 0.4140 +655 2200 0.8600 +655 2201 0.6060 +655 2239 0.4430 +655 2246 0.6270 +655 2247 0.7860 +655 2248 0.6500 +655 2249 0.6000 +655 2250 0.5720 +655 2251 0.5700 +655 2252 0.6230 +655 2253 0.6350 +655 2254 0.6260 +655 2255 0.6290 +655 2258 0.5780 +655 2260 0.4210 +655 2263 0.6580 +655 2296 0.5190 +655 2323 0.4380 +655 2335 0.7280 +655 2534 0.4670 +655 2597 0.5080 +655 2624 0.4370 +655 2668 0.4360 +655 2735 0.4870 +655 2736 0.4410 +655 2737 0.4160 +655 2932 0.4110 +655 3082 0.4860 +655 3320 0.5030 +655 3326 0.5080 +655 3339 0.5370 +655 3381 0.5710 +655 3397 0.4920 +655 3398 0.4660 +655 3479 0.6270 +655 3481 0.4110 +655 3549 0.5360 +655 3553 0.4810 +655 3569 0.6620 +655 3630 0.6720 +655 3815 0.4050 +655 3852 0.4290 +655 3975 0.4220 +655 4086 0.7090 +655 4087 0.8070 +655 4088 0.8110 +655 4089 0.7770 +655 4090 0.8350 +655 4091 0.7530 +655 4092 0.7350 +655 4093 0.7340 +655 4237 0.4850 +655 4254 0.5670 +655 4256 0.4140 +655 4314 0.4080 +655 4318 0.4280 +655 4322 0.5080 +655 4435 0.4810 +655 4487 0.5870 +655 4488 0.7340 +655 4519 0.4090 +655 4617 0.4830 +655 4681 0.9160 +655 4756 0.5720 +655 4803 0.6090 +655 4868 0.4020 +655 5047 0.4120 +655 5076 0.5840 +655 5080 0.4410 +655 5155 0.4270 +655 5156 0.4390 +655 5159 0.4010 +655 5307 0.5740 +655 5308 0.4400 +655 5460 0.4030 +655 5468 0.4890 +655 5604 0.6860 +655 5727 0.4160 +655 5741 0.4590 +655 5796 0.5730 +655 6299 0.4280 +655 6387 0.4550 +655 6422 0.4060 +655 6469 0.7770 +655 6498 0.6070 +655 6591 0.4700 +655 6615 0.5030 +655 6622 0.4190 +655 6657 0.5420 +655 6662 0.6360 +655 6678 0.4550 +655 6694 0.4510 +655 6696 0.6110 +655 6997 0.4610 +655 7040 0.6860 +655 7042 0.5160 +655 7043 0.5180 +655 7046 0.7690 +655 7048 0.5330 +655 7049 0.6190 +655 7076 0.5690 +655 7092 0.4430 +655 7124 0.4450 +655 7130 0.4500 +655 7157 0.4310 +655 7291 0.4050 +655 7350 0.7320 +655 7471 0.4440 +655 7474 0.5390 +655 7481 0.4880 +655 7482 0.4400 +655 7484 0.4900 +655 7490 0.5540 +655 7545 0.4010 +655 8200 0.7140 +655 8313 0.4370 +655 8326 0.4100 +655 8600 0.5070 +655 8626 0.4820 +655 8646 0.9910 +655 8817 0.6130 +655 8822 0.5650 +655 8823 0.5790 +655 8861 0.4200 +655 9210 0.4360 +655 9241 0.9990 +655 9260 0.5660 +655 9355 0.4370 +655 9577 0.4070 +655 9776 0.4690 +655 9985 0.6770 +655 10272 0.6110 +655 10459 0.6500 +655 10468 0.9890 +655 10736 0.5280 +655 10891 0.4500 +655 22943 0.5060 +655 23078 0.4220 +655 23626 0.5810 +655 25805 0.4590 +655 25820 0.4490 +655 25884 0.7280 +655 25928 0.7050 +655 26281 0.6050 +655 26291 0.4830 +655 26585 0.9110 +655 26872 0.4350 +655 27006 0.5780 +655 27173 0.6590 +655 27250 0.4320 +655 27302 0.5060 +655 29102 0.4020 +655 50964 0.8150 +655 51176 0.6330 +655 54205 0.4810 +655 54361 0.6090 +655 55636 0.4680 +655 57045 0.6380 +655 57154 0.5580 +655 60529 0.4580 +655 63976 0.7830 +655 64388 0.9210 +655 79807 0.4290 +655 79923 0.4030 +655 81029 0.4020 +655 84057 0.7010 +655 84072 0.4770 +655 85480 0.4330 +655 89780 0.5410 +655 91851 0.4060 +655 121340 0.5820 +655 123606 0.4990 +655 130399 0.4990 +655 148738 0.6670 +655 151449 0.9440 +655 168667 0.8350 +655 220001 0.6720 +655 252995 0.4860 +655 283677 0.4790 +655 284654 0.4410 +655 353500 0.8820 +655 375616 0.7630 +655 101928601 0.5370 +656 657 0.9420 +656 658 0.9400 +656 659 0.9570 +656 1040 0.5050 +656 1149 0.4010 +656 1618 0.4600 +656 2660 0.4470 +656 2668 0.4350 +656 3358 0.4840 +656 4089 0.5840 +656 4090 0.5020 +656 4681 0.9050 +656 4692 0.4570 +656 4948 0.4360 +656 5019 0.5880 +656 6901 0.4840 +656 7350 0.6000 +656 7681 0.4930 +656 7857 0.4930 +656 8646 0.9380 +656 9241 0.9230 +656 10891 0.4260 +656 26291 0.5580 +656 26585 0.7240 +656 54551 0.4970 +656 57194 0.5470 +656 63976 0.5420 +656 63978 0.4770 +656 64064 0.8410 +656 64388 0.6910 +656 117166 0.4110 +656 124857 0.4120 +656 145957 0.5330 +656 252995 0.4180 +656 342977 0.4350 +656 353500 0.9030 +657 658 0.9970 +657 659 0.9990 +657 672 0.4320 +657 675 0.4640 +657 860 0.6460 +657 947 0.5570 +657 960 0.4640 +657 1029 0.4030 +657 1435 0.4570 +657 1499 0.7030 +657 1604 0.4730 +657 2022 0.6290 +657 2033 0.4070 +657 2099 0.4670 +657 2100 0.4620 +657 2173 0.4100 +657 2247 0.4060 +657 2253 0.4470 +657 2255 0.4540 +657 2280 0.6560 +657 2492 0.5290 +657 2658 0.9020 +657 2660 0.4470 +657 2661 0.7970 +657 2662 0.6240 +657 2956 0.6340 +657 3077 0.8110 +657 3397 0.5200 +657 3398 0.4350 +657 3459 0.4150 +657 3549 0.4270 +657 3624 0.4410 +657 3625 0.9410 +657 3688 0.5370 +657 4072 0.6790 +657 4086 0.9670 +657 4087 0.9650 +657 4088 0.9570 +657 4089 0.9570 +657 4090 0.9880 +657 4091 0.8800 +657 4092 0.9020 +657 4093 0.9760 +657 4292 0.7350 +657 4436 0.7460 +657 4437 0.4190 +657 4487 0.5200 +657 4488 0.4970 +657 4595 0.7190 +657 4756 0.9650 +657 4763 0.4080 +657 4913 0.5440 +657 5047 0.5620 +657 5395 0.6490 +657 5424 0.6530 +657 5426 0.6320 +657 5727 0.4590 +657 5728 0.7530 +657 5889 0.5160 +657 5892 0.5490 +657 6423 0.4130 +657 6469 0.4970 +657 6662 0.4570 +657 6794 0.6430 +657 6993 0.4500 +657 6997 0.4890 +657 7018 0.5500 +657 7036 0.8040 +657 7037 0.7230 +657 7040 0.8090 +657 7042 0.5110 +657 7043 0.4980 +657 7046 0.5520 +657 7048 0.7280 +657 7049 0.5940 +657 7157 0.4330 +657 7332 0.4540 +657 7473 0.5100 +657 8200 0.9980 +657 8313 0.5620 +657 8549 0.4110 +657 8646 0.6850 +657 9210 0.8410 +657 9241 0.8580 +657 9562 0.5980 +657 9577 0.4720 +657 9765 0.5840 +657 9860 0.4090 +657 10121 0.5820 +657 10220 0.4870 +657 10262 0.4040 +657 10468 0.7120 +657 10477 0.5310 +657 10522 0.4910 +657 10681 0.4150 +657 10771 0.6930 +657 11167 0.4440 +657 11200 0.4900 +657 25805 0.9560 +657 25884 0.5630 +657 26018 0.6540 +657 26585 0.6240 +657 27030 0.4310 +657 27302 0.7340 +657 51176 0.4220 +657 51295 0.4980 +657 55245 0.4580 +657 55720 0.4450 +657 56963 0.9220 +657 57045 0.5600 +657 57154 0.7950 +657 57817 0.4730 +657 64388 0.4450 +657 64750 0.6940 +657 79695 0.5470 +657 79728 0.5140 +657 116039 0.4440 +657 130497 0.4280 +657 148738 0.9730 +657 151449 0.9770 +657 164656 0.4250 +657 168667 0.6730 +657 202018 0.4100 +657 220001 0.6720 +657 221833 0.5510 +657 284654 0.4960 +657 285704 0.9450 +657 353500 0.9380 +657 392255 0.9850 +657 100423062 0.9040 +658 659 0.9990 +658 860 0.4770 +658 947 0.5710 +658 1000 0.4330 +658 1499 0.6190 +658 1620 0.4180 +658 1786 0.4130 +658 1956 0.4010 +658 2022 0.5810 +658 2146 0.4320 +658 2280 0.9270 +658 2492 0.6300 +658 2494 0.4270 +658 2658 0.7900 +658 2660 0.6500 +658 2661 0.8790 +658 2662 0.4480 +658 2690 0.4390 +658 2737 0.5170 +658 3077 0.6000 +658 3224 0.4370 +658 3283 0.4810 +658 3381 0.4950 +658 3397 0.4920 +658 3549 0.8020 +658 3569 0.4740 +658 3624 0.4640 +658 3625 0.9480 +658 3626 0.4520 +658 3685 0.4580 +658 3777 0.4540 +658 3973 0.4310 +658 3984 0.9060 +658 4086 0.9460 +658 4087 0.9630 +658 4088 0.9540 +658 4089 0.9060 +658 4090 0.9810 +658 4091 0.9130 +658 4092 0.7860 +658 4093 0.9730 +658 4756 0.9470 +658 5047 0.8730 +658 5159 0.4310 +658 5175 0.4920 +658 5728 0.4440 +658 5970 0.4260 +658 6143 0.4400 +658 6358 0.4160 +658 6469 0.4070 +658 6662 0.4280 +658 6993 0.5070 +658 7018 0.5500 +658 7036 0.6060 +658 7037 0.5840 +658 7040 0.5110 +658 7042 0.4690 +658 7043 0.4650 +658 7048 0.5190 +658 7049 0.4100 +658 7189 0.4090 +658 7332 0.4240 +658 7704 0.4190 +658 7980 0.4600 +658 8200 0.9990 +658 8646 0.5880 +658 9210 0.9950 +658 9241 0.8670 +658 9496 0.4020 +658 9577 0.4370 +658 9765 0.5960 +658 10121 0.6770 +658 10220 0.4680 +658 10257 0.4800 +658 10468 0.4670 +658 10477 0.4910 +658 25805 0.9540 +658 26018 0.5640 +658 27302 0.7330 +658 55245 0.5560 +658 56033 0.4910 +658 56963 0.9270 +658 57154 0.8050 +658 59271 0.4540 +658 64750 0.6900 +658 79674 0.4300 +658 84189 0.4150 +658 93166 0.6440 +658 131450 0.4180 +658 148738 0.9390 +658 151449 0.9840 +658 168667 0.5100 +658 285704 0.9490 +658 353500 0.9620 +658 392255 0.9890 +659 857 0.6980 +659 860 0.4740 +659 920 0.6350 +659 925 0.4240 +659 947 0.5790 +659 948 0.4690 +659 949 0.4680 +659 950 0.5290 +659 960 0.4880 +659 1003 0.5470 +659 1289 0.4190 +659 1373 0.5440 +659 1487 0.5240 +659 1499 0.4630 +659 1834 0.4060 +659 1906 0.5740 +659 2022 0.9790 +659 2247 0.4340 +659 2252 0.4040 +659 2254 0.4200 +659 2274 0.6310 +659 2294 0.4800 +659 2300 0.4200 +659 2335 0.7060 +659 2597 0.4070 +659 2657 0.5100 +659 2658 0.9990 +659 2661 0.9980 +659 2662 0.4210 +659 2670 0.4310 +659 2962 0.4640 +659 3066 0.4780 +659 3091 0.4030 +659 3276 0.4420 +659 3283 0.4060 +659 3337 0.4440 +659 3397 0.5920 +659 3399 0.4030 +659 3482 0.4370 +659 3569 0.4110 +659 3576 0.5230 +659 3588 0.4280 +659 3624 0.5360 +659 3625 0.9700 +659 3678 0.4440 +659 3717 0.5430 +659 3741 0.5310 +659 3777 0.7000 +659 3791 0.6130 +659 3815 0.6830 +659 3984 0.9890 +659 3985 0.4920 +659 4086 0.9420 +659 4087 0.9650 +659 4088 0.9580 +659 4089 0.9460 +659 4090 0.9840 +659 4091 0.8640 +659 4092 0.8840 +659 4093 0.9900 +659 4131 0.4740 +659 4313 0.4180 +659 4650 0.4850 +659 4854 0.4280 +659 5047 0.7340 +659 5074 0.4300 +659 5566 0.5220 +659 5567 0.5290 +659 5568 0.4730 +659 5579 0.4600 +659 5592 0.6430 +659 5740 0.4210 +659 5771 0.4280 +659 6373 0.4100 +659 6572 0.4290 +659 6662 0.4010 +659 6683 0.5550 +659 6714 0.4460 +659 6774 0.6150 +659 6993 0.9570 +659 6997 0.4540 +659 7040 0.7190 +659 7042 0.7610 +659 7043 0.5950 +659 7046 0.7220 +659 7049 0.6040 +659 7075 0.4110 +659 7092 0.4650 +659 7124 0.4100 +659 7132 0.4310 +659 7220 0.9240 +659 7222 0.9070 +659 7223 0.9140 +659 7224 0.9070 +659 7225 0.9290 +659 7341 0.4250 +659 7633 0.5610 +659 8200 0.9950 +659 8323 0.4380 +659 8646 0.7180 +659 8654 0.4320 +659 8823 0.4020 +659 8862 0.4340 +659 9210 0.9950 +659 9241 0.7490 +659 9472 0.4300 +659 9496 0.5940 +659 9577 0.4370 +659 9765 0.6350 +659 10220 0.4210 +659 10399 0.5980 +659 10468 0.7200 +659 10477 0.4570 +659 10763 0.4280 +659 11073 0.5370 +659 23111 0.6170 +659 23399 0.8530 +659 23637 0.6400 +659 25805 0.4360 +659 25884 0.4920 +659 26585 0.6890 +659 27242 0.4080 +659 27302 0.9990 +659 57045 0.5730 +659 57154 0.8000 +659 57761 0.6470 +659 64750 0.6730 +659 79572 0.5530 +659 79759 0.5310 +659 80852 0.4570 +659 84125 0.4210 +659 123606 0.7690 +659 130399 0.5410 +659 144125 0.4490 +659 147381 0.5030 +659 148738 0.6550 +659 151449 0.9660 +659 168667 0.6780 +659 220001 0.6780 +659 353500 0.9730 +659 392255 0.9730 +659 440275 0.5810 +660 836 0.8600 +660 1948 0.4720 +660 1956 0.5870 +660 2064 0.5770 +660 2066 0.4950 +660 2702 0.4500 +660 3480 0.4120 +660 3702 0.4670 +660 3718 0.5040 +660 3791 0.5210 +660 4540 0.4330 +660 5210 0.4700 +660 5292 0.4020 +660 5341 0.7130 +660 5747 0.4540 +660 6714 0.4270 +660 6774 0.9560 +660 7086 0.4240 +660 7157 0.4710 +660 8277 0.4350 +660 9047 0.4240 +660 11099 0.5960 +660 26228 0.7730 +660 26499 0.7050 +660 55680 0.6480 +660 55857 0.6340 +660 80230 0.8760 +660 84076 0.4430 +660 84306 0.4160 +660 116085 0.4140 +660 200014 0.4050 +661 705 0.4450 +661 1589 0.6810 +661 2960 0.4980 +661 2962 0.6920 +661 2963 0.4350 +661 2971 0.6470 +661 2972 0.8880 +661 2975 0.8030 +661 2976 0.6890 +661 3312 0.6180 +661 4774 0.4750 +661 4782 0.4110 +661 4784 0.4410 +661 5431 0.8320 +661 5432 0.8590 +661 5433 0.6940 +661 5434 0.9990 +661 5435 0.9990 +661 5436 0.6230 +661 5437 0.9990 +661 5438 0.7620 +661 5439 0.4910 +661 5440 0.9880 +661 5441 0.9980 +661 5451 0.5390 +661 5950 0.4430 +661 6617 0.7130 +661 6618 0.6710 +661 6619 0.6740 +661 6621 0.7190 +661 6741 0.4050 +661 6908 0.8750 +661 6917 0.6740 +661 6919 0.6780 +661 6920 0.6690 +661 7148 0.6670 +661 7702 0.5570 +661 8409 0.7870 +661 8602 0.5060 +661 8725 0.7130 +661 9328 0.7810 +661 9329 0.6970 +661 9330 0.9890 +661 9401 0.4380 +661 9441 0.4500 +661 9519 0.5060 +661 9533 0.9990 +661 10302 0.7130 +661 10526 0.5330 +661 10621 0.9990 +661 10622 0.9990 +661 10623 0.9990 +661 10849 0.6530 +661 11128 0.9990 +661 11201 0.4850 +661 11321 0.5290 +661 25885 0.9250 +661 27254 0.5310 +661 27297 0.9990 +661 28987 0.6060 +661 30834 0.7690 +661 51082 0.9990 +661 51184 0.8650 +661 51728 0.9990 +661 55011 0.8220 +661 55108 0.4430 +661 55239 0.4700 +661 55290 0.8760 +661 55703 0.9990 +661 55718 0.9990 +661 55720 0.6470 +661 55814 0.9570 +661 57157 0.4530 +661 57510 0.4400 +661 64425 0.6810 +661 65083 0.4760 +661 79657 0.6910 +661 79954 0.4050 +661 81572 0.6100 +661 81627 0.5660 +661 84172 0.8650 +661 84232 0.8900 +661 84265 0.9980 +661 84365 0.4030 +661 90121 0.4070 +661 112495 0.4990 +661 127428 0.4370 +661 170082 0.4260 +661 171568 0.9990 +661 221830 0.6340 +661 387332 0.5980 +661 399949 0.5060 +662 664 0.8370 +662 1062 0.5040 +662 1314 0.6360 +662 1315 0.5580 +662 2054 0.6100 +662 3796 0.5000 +662 3797 0.4990 +662 3798 0.5050 +662 3799 0.5120 +662 3831 0.5080 +662 3832 0.5010 +662 3833 0.5030 +662 3834 0.4990 +662 3835 0.5110 +662 4609 0.4080 +662 4905 0.8500 +662 5289 0.5230 +662 5861 0.6280 +662 6293 0.4980 +662 6616 0.7870 +662 6804 0.8490 +662 6809 0.8190 +662 6810 0.7690 +662 6811 0.9060 +662 6836 0.5450 +662 6843 0.6170 +662 6844 0.7730 +662 6845 0.8790 +662 7405 0.5560 +662 8417 0.7280 +662 8673 0.8090 +662 8674 0.8580 +662 8675 0.9090 +662 8676 0.5950 +662 8677 0.6590 +662 8723 0.7240 +662 8773 0.7660 +662 8774 0.7070 +662 8775 0.9300 +662 9117 0.5940 +662 9183 0.9650 +662 9276 0.5970 +662 9341 0.7510 +662 9342 0.8210 +662 9371 0.5170 +662 9482 0.7110 +662 9493 0.5070 +662 9515 0.5400 +662 9527 0.8790 +662 9554 0.9860 +662 9570 0.9270 +662 9585 0.5100 +662 9919 0.4470 +662 10112 0.5070 +662 10113 0.4290 +662 10228 0.9260 +662 10282 0.8980 +662 10490 0.8260 +662 10640 0.4900 +662 10652 0.8920 +662 10749 0.5300 +662 10814 0.7200 +662 10815 0.7200 +662 10945 0.6760 +662 10959 0.5590 +662 10972 0.5170 +662 11004 0.5130 +662 11014 0.4990 +662 11015 0.4990 +662 11127 0.5040 +662 11231 0.4050 +662 11316 0.6240 +662 11336 0.4720 +662 11337 0.4590 +662 22796 0.4770 +662 22818 0.5130 +662 22820 0.6030 +662 22863 0.8020 +662 22920 0.5040 +662 22931 0.5820 +662 23046 0.4990 +662 23095 0.5040 +662 23256 0.8800 +662 23303 0.5070 +662 23423 0.5160 +662 23673 0.9060 +662 24137 0.5040 +662 25839 0.4480 +662 26153 0.5640 +662 26958 0.6010 +662 26984 0.5960 +662 29127 0.5040 +662 30849 0.8770 +662 51014 0.5160 +662 51026 0.4540 +662 51226 0.5050 +662 51272 0.6400 +662 51399 0.4170 +662 51542 0.5710 +662 51594 0.9140 +662 53407 0.9990 +662 54546 0.6070 +662 54732 0.5510 +662 55014 0.8380 +662 55083 0.5150 +662 55275 0.5820 +662 55582 0.4990 +662 55605 0.5040 +662 55614 0.5050 +662 55770 0.4740 +662 55850 0.9970 +662 56992 0.5040 +662 57117 0.4720 +662 57511 0.4740 +662 60561 0.9990 +662 63908 0.5540 +662 64837 0.5090 +662 81876 0.5240 +662 81930 0.4990 +662 83548 0.5510 +662 84643 0.4990 +662 89953 0.5110 +662 90990 0.4990 +662 91445 0.5730 +662 112755 0.5810 +662 116841 0.5970 +662 124602 0.4990 +662 126208 0.9540 +662 134957 0.5490 +662 143187 0.7600 +662 146909 0.4990 +662 147700 0.5050 +662 148223 0.5840 +662 152579 0.8000 +662 153222 0.4300 +662 160364 0.5810 +662 203062 0.5790 +662 220441 0.4340 +662 221458 0.4990 +662 285643 0.5000 +662 339302 0.5400 +662 348793 0.4420 +662 415117 0.6120 +662 594855 0.5400 +664 665 0.9670 +664 666 0.4920 +664 768 0.6120 +664 793 0.4270 +664 836 0.6440 +664 841 0.4720 +664 842 0.5780 +664 961 0.6300 +664 1004 0.4370 +664 1327 0.5240 +664 1508 0.4130 +664 1514 0.5060 +664 1520 0.4140 +664 1603 0.6740 +664 1612 0.4520 +664 1650 0.6490 +664 2017 0.4220 +664 2021 0.4740 +664 2034 0.7460 +664 2064 0.4600 +664 2271 0.5640 +664 2308 0.5720 +664 2309 0.7080 +664 2475 0.5840 +664 2597 0.5190 +664 2631 0.5270 +664 2739 0.4090 +664 3061 0.4240 +664 3065 0.4490 +664 3091 0.8950 +664 3162 0.4010 +664 3164 0.5240 +664 3417 0.5120 +664 3553 0.5300 +664 3916 0.4620 +664 3920 0.6490 +664 4077 0.7330 +664 4130 0.9350 +664 4131 0.6740 +664 4170 0.7950 +664 4303 0.4390 +664 4609 0.4280 +664 4976 0.6390 +664 5033 0.4660 +664 5071 0.7980 +664 5163 0.5660 +664 5230 0.5890 +664 5289 0.6570 +664 5366 0.5770 +664 5481 0.9520 +664 5594 0.4780 +664 5595 0.5660 +664 5728 0.5400 +664 6009 0.9980 +664 6184 0.5470 +664 6185 0.5940 +664 6198 0.4770 +664 6275 0.4160 +664 6390 0.4650 +664 6477 0.4810 +664 6478 0.4870 +664 6513 0.5980 +664 6515 0.4010 +664 6648 0.5320 +664 6921 0.4430 +664 7019 0.5720 +664 7132 0.4320 +664 7157 0.5820 +664 7178 0.5090 +664 7249 0.4880 +664 7352 0.4370 +664 7405 0.5170 +664 7416 0.9240 +664 7428 0.6300 +664 7837 0.4310 +664 7942 0.5370 +664 8408 0.6360 +664 8508 0.5380 +664 8562 0.4070 +664 8678 0.9530 +664 8717 0.4080 +664 8739 0.4790 +664 8834 0.7780 +664 8878 0.8620 +664 8887 0.5110 +664 8988 0.6850 +664 9088 0.6690 +664 9123 0.4300 +664 9140 0.7120 +664 9355 0.4610 +664 9361 0.4080 +664 9445 0.4590 +664 9474 0.7970 +664 9531 0.7180 +664 9669 0.6790 +664 9706 0.5190 +664 9776 0.5970 +664 9804 0.6160 +664 9821 0.5950 +664 9927 0.6870 +664 10017 0.6130 +664 10018 0.5730 +664 10059 0.6350 +664 10105 0.6670 +664 10133 0.6110 +664 10241 0.6260 +664 10313 0.5300 +664 10381 0.4330 +664 10397 0.4780 +664 10399 0.4190 +664 10456 0.4420 +664 10488 0.4490 +664 10533 0.7590 +664 10871 0.9050 +664 10891 0.6160 +664 10971 0.4340 +664 11331 0.6230 +664 11337 0.9990 +664 11345 0.9970 +664 22863 0.6670 +664 23192 0.5610 +664 23410 0.5090 +664 23411 0.5960 +664 23604 0.4360 +664 23710 0.9960 +664 23770 0.7650 +664 23786 0.8210 +664 26355 0.4950 +664 27429 0.5430 +664 29110 0.4030 +664 30001 0.4490 +664 30849 0.5030 +664 51024 0.6730 +664 51147 0.4760 +664 51430 0.4110 +664 54205 0.6470 +664 54541 0.6510 +664 54583 0.6730 +664 55014 0.4080 +664 55054 0.5800 +664 55062 0.5070 +664 55201 0.6980 +664 55240 0.6370 +664 55332 0.4470 +664 55486 0.5980 +664 55626 0.6220 +664 55669 0.6750 +664 56947 0.6860 +664 57103 0.4440 +664 57521 0.4430 +664 60673 0.4710 +664 64344 0.4780 +664 64422 0.5980 +664 64786 0.4440 +664 65018 0.8900 +664 79065 0.4320 +664 79594 0.5900 +664 79680 0.6440 +664 81631 0.9430 +664 83667 0.4180 +664 83734 0.5220 +664 84141 0.4160 +664 84557 0.8770 +664 84676 0.5430 +664 84701 0.4460 +664 84749 0.4190 +664 84938 0.4850 +664 84971 0.4810 +664 90427 0.4740 +664 112398 0.5990 +664 112399 0.6910 +664 114907 0.6300 +664 125170 0.4180 +664 132671 0.6280 +664 137902 0.4140 +664 139341 0.9510 +664 149428 0.4290 +664 160760 0.5240 +664 192111 0.5830 +664 353322 0.5930 +664 440738 0.6340 +664 441925 0.7140 +665 666 0.4290 +665 669 0.4170 +665 836 0.4960 +665 1004 0.6890 +665 1387 0.7710 +665 2034 0.4320 +665 2309 0.6290 +665 2475 0.4470 +665 2631 0.5970 +665 3091 0.6590 +665 3308 0.5020 +665 3312 0.5540 +665 3920 0.4030 +665 3925 0.4780 +665 4077 0.8300 +665 4130 0.9400 +665 4131 0.6600 +665 4170 0.4600 +665 4601 0.5910 +665 4976 0.4850 +665 5071 0.7520 +665 5230 0.4010 +665 5289 0.6260 +665 5366 0.4740 +665 5728 0.4600 +665 6009 0.9730 +665 6513 0.4410 +665 6622 0.4340 +665 7019 0.4370 +665 7157 0.8550 +665 7178 0.6850 +665 7405 0.4750 +665 7416 0.5330 +665 7529 0.4270 +665 7942 0.4630 +665 8408 0.6250 +665 8508 0.6170 +665 8678 0.8730 +665 8780 0.4160 +665 8795 0.4170 +665 8834 0.6250 +665 8878 0.8540 +665 8887 0.6350 +665 8988 0.5100 +665 9088 0.8230 +665 9140 0.7010 +665 9370 0.4670 +665 9474 0.7280 +665 9531 0.6980 +665 9706 0.4890 +665 9776 0.5560 +665 9804 0.5990 +665 9821 0.6140 +665 9927 0.6560 +665 10013 0.4690 +665 10018 0.4320 +665 10059 0.6130 +665 10133 0.8100 +665 10241 0.7240 +665 10273 0.4320 +665 10533 0.6910 +665 10871 0.8490 +665 10891 0.5190 +665 11331 0.6540 +665 11337 0.9990 +665 11345 0.9990 +665 22863 0.6160 +665 23192 0.5180 +665 23410 0.4480 +665 23411 0.4930 +665 23710 0.9990 +665 23770 0.7080 +665 23786 0.8200 +665 26100 0.7560 +665 27429 0.4400 +665 29110 0.4170 +665 30849 0.4690 +665 51024 0.6560 +665 53349 0.4370 +665 54205 0.5280 +665 54463 0.4130 +665 54541 0.4390 +665 54708 0.4750 +665 55014 0.4100 +665 55054 0.5730 +665 55062 0.4730 +665 55201 0.6780 +665 55240 0.9830 +665 55288 0.4170 +665 55486 0.6350 +665 55626 0.6310 +665 55669 0.6310 +665 56935 0.4080 +665 56947 0.5120 +665 60673 0.4740 +665 64422 0.5870 +665 65018 0.8760 +665 79594 0.6290 +665 79680 0.5060 +665 81631 0.9370 +665 83734 0.4890 +665 84557 0.8510 +665 84749 0.4760 +665 125170 0.4450 +665 132671 0.7470 +665 139341 0.9660 +665 192111 0.5980 +665 440738 0.6660 +665 643246 0.4690 +666 836 0.6610 +666 841 0.4500 +666 842 0.4900 +666 4170 0.9850 +666 5366 0.6900 +666 8678 0.5580 +666 8739 0.7080 +666 9840 0.6130 +666 10017 0.7500 +666 10018 0.8100 +666 10134 0.4160 +666 23321 0.4010 +666 27113 0.6260 +666 54205 0.6240 +666 79370 0.5870 +666 79680 0.5070 +666 90427 0.5380 +666 130612 0.4300 +666 203062 0.4070 +666 441925 0.4970 +667 808 0.7150 +667 977 0.9910 +667 1062 0.4290 +667 1215 0.4190 +667 1294 0.4700 +667 1308 0.9990 +667 1639 0.6680 +667 1778 0.5490 +667 1823 0.5540 +667 1825 0.4990 +667 1828 0.8370 +667 1830 0.8700 +667 1832 0.7620 +667 2125 0.7530 +667 3567 0.4650 +667 3576 0.4050 +667 3655 0.8280 +667 3675 0.4860 +667 3691 0.9910 +667 3852 0.6040 +667 3861 0.6350 +667 3909 0.8390 +667 3910 0.5390 +667 3914 0.6800 +667 3918 0.6660 +667 4100 0.4020 +667 4131 0.6290 +667 4478 0.4290 +667 5058 0.4260 +667 5062 0.4910 +667 5063 0.4290 +667 5339 0.9980 +667 5493 0.7220 +667 5500 0.6480 +667 5555 0.4640 +667 5962 0.5030 +667 6249 0.6090 +667 7062 0.4930 +667 7267 0.6070 +667 7414 0.4010 +667 8139 0.4030 +667 8153 0.5770 +667 8546 0.4070 +667 8826 0.4770 +667 8859 0.4260 +667 22919 0.9880 +667 23043 0.4040 +667 23086 0.4430 +667 23271 0.4310 +667 26960 0.4940 +667 27289 0.5910 +667 54443 0.4320 +667 55914 0.8470 +667 58480 0.5780 +667 64065 0.4360 +667 66000 0.6940 +667 80005 0.4240 +667 83481 0.6200 +667 84875 0.5840 +667 133482 0.4440 +667 144568 0.5970 +667 161176 0.5880 +667 171177 0.5680 +667 345456 0.4060 +668 794 0.4640 +668 1499 0.5250 +668 1583 0.5700 +668 1584 0.4420 +668 1585 0.4600 +668 1586 0.5640 +668 1588 0.7570 +668 1618 0.5010 +668 1730 0.7060 +668 1761 0.8370 +668 2018 0.4290 +668 2099 0.5340 +668 2100 0.5050 +668 2117 0.6440 +668 2146 0.5360 +668 2254 0.4680 +668 2263 0.4250 +668 2332 0.6520 +668 2488 0.5910 +668 2492 0.6710 +668 2494 0.4370 +668 2516 0.9260 +668 2626 0.5620 +668 2661 0.7270 +668 2767 0.4180 +668 2778 0.4340 +668 2796 0.4180 +668 2798 0.4980 +668 3209 0.6250 +668 3239 0.5330 +668 3283 0.5130 +668 3292 0.4620 +668 3623 0.4390 +668 3625 0.4080 +668 3725 0.5290 +668 3815 0.4140 +668 3973 0.5340 +668 4040 0.4360 +668 4088 0.9410 +668 4089 0.7990 +668 4734 0.4280 +668 5045 0.4370 +668 5080 0.5060 +668 5290 0.4680 +668 5422 0.4340 +668 5460 0.4080 +668 5728 0.4230 +668 6474 0.4150 +668 6658 0.5770 +668 6662 0.8830 +668 6736 0.8110 +668 6770 0.5140 +668 7026 0.4050 +668 7329 0.6280 +668 7341 0.4330 +668 7490 0.6300 +668 7545 0.5990 +668 7546 0.5970 +668 8106 0.5330 +668 8361 0.4020 +668 8454 0.5660 +668 8487 0.4640 +668 8554 0.4730 +668 9210 0.8900 +668 9276 0.5930 +668 9775 0.5860 +668 10468 0.5750 +668 10655 0.5000 +668 10734 0.4650 +668 11063 0.4300 +668 11198 0.4110 +668 11218 0.8610 +668 22943 0.5340 +668 23411 0.4460 +668 23414 0.4330 +668 30812 0.5940 +668 50511 0.4410 +668 50846 0.4550 +668 54361 0.7610 +668 54514 0.5540 +668 56603 0.4080 +668 56945 0.8170 +668 56956 0.5880 +668 58524 0.4640 +668 79983 0.7520 +668 80319 0.6110 +668 84107 0.7660 +668 84133 0.4910 +668 84733 0.4610 +668 116039 0.8130 +668 135935 0.8990 +668 170302 0.5790 +668 284654 0.7370 +668 339345 0.4250 +668 342977 0.4220 +668 344018 0.8910 +668 346673 0.6910 +668 402381 0.5290 +668 431707 0.5110 +668 100125288 0.4590 +669 1431 0.4320 +669 2023 0.9770 +669 2026 0.9710 +669 2027 0.9780 +669 2038 0.6920 +669 2057 0.4360 +669 2203 0.4310 +669 2235 0.8820 +669 2539 0.8630 +669 2597 0.9610 +669 2821 0.9450 +669 2993 0.6950 +669 2994 0.7380 +669 3039 0.5030 +669 3040 0.4890 +669 3043 0.5100 +669 3045 0.4770 +669 3049 0.4510 +669 3099 0.4450 +669 3101 0.4450 +669 3417 0.4420 +669 3418 0.4440 +669 5091 0.4640 +669 5207 0.4740 +669 5208 0.4800 +669 5209 0.4720 +669 5210 0.4560 +669 5211 0.6680 +669 5213 0.6290 +669 5214 0.6550 +669 5223 0.9660 +669 5224 0.9680 +669 5230 0.9830 +669 5232 0.9810 +669 5236 0.4390 +669 5288 0.4180 +669 5313 0.7330 +669 5315 0.7000 +669 5837 0.4250 +669 6470 0.4080 +669 6521 0.6030 +669 6622 0.4990 +669 6888 0.8690 +669 7086 0.8600 +669 7111 0.4380 +669 7167 0.9270 +669 7504 0.4050 +669 8277 0.8520 +669 9562 0.9310 +669 9563 0.8940 +669 9911 0.4930 +669 10042 0.4760 +669 10661 0.5380 +669 22934 0.5880 +669 23608 0.4110 +669 25853 0.4250 +669 25893 0.4310 +669 26227 0.9160 +669 26330 0.9540 +669 26994 0.4440 +669 29968 0.4100 +669 51071 0.8300 +669 51218 0.5110 +669 51327 0.6550 +669 51629 0.4450 +669 53347 0.4060 +669 54583 0.4180 +669 54855 0.5570 +669 55363 0.5550 +669 55432 0.4230 +669 56965 0.5930 +669 57469 0.4720 +669 58478 0.4630 +669 64080 0.4160 +669 79668 0.5940 +669 80201 0.4460 +669 81689 0.4790 +669 83855 0.6340 +669 84076 0.8470 +669 84932 0.5000 +669 84959 0.4110 +669 116151 0.4030 +669 130589 0.4860 +669 130752 0.4470 +669 132158 0.9350 +669 246243 0.5220 +669 387712 0.9600 +669 441531 0.9400 +670 2194 0.4160 +670 4141 0.4270 +670 4706 0.5070 +670 5536 0.4640 +670 6564 0.5380 +670 10741 0.4830 +670 25864 0.4360 +670 57718 0.4660 +670 63874 0.4050 +670 79728 0.4950 +670 84193 0.4580 +670 84836 0.4500 +670 124641 0.4150 +670 132949 0.4220 +671 820 0.8960 +671 932 0.7320 +671 1053 0.4460 +671 1088 0.8440 +671 1511 0.9590 +671 1667 0.6030 +671 1668 0.4820 +671 1669 0.8620 +671 1672 0.4160 +671 1673 0.4140 +671 1991 0.9750 +671 3569 0.4110 +671 3576 0.4060 +671 3664 0.4190 +671 3929 0.8570 +671 3934 0.6030 +671 4057 0.9600 +671 4317 0.8210 +671 4353 0.9950 +671 5657 0.8740 +671 6037 0.7170 +671 6283 0.4070 +671 6590 0.4450 +671 6779 0.4900 +671 7099 0.4630 +671 7124 0.4170 +671 8993 0.7130 +671 10321 0.4090 +671 10562 0.6020 +671 23569 0.4200 +671 51297 0.7260 +671 51654 0.4380 +671 56729 0.5160 +671 57126 0.4590 +671 89886 0.4700 +671 92747 0.4810 +671 140683 0.6100 +671 728358 0.4420 +672 673 0.6780 +672 675 0.9990 +672 699 0.7330 +672 701 0.9050 +672 834 0.4410 +672 836 0.5770 +672 841 0.4680 +672 842 0.5740 +672 861 0.5300 +672 867 0.4840 +672 891 0.9160 +672 894 0.4560 +672 898 0.7180 +672 904 0.5720 +672 905 0.5530 +672 925 0.4470 +672 960 0.5050 +672 983 0.8780 +672 988 0.5030 +672 990 0.6530 +672 991 0.7660 +672 993 0.9290 +672 995 0.7350 +672 996 0.9230 +672 999 0.6760 +672 1002 0.7120 +672 1015 0.5030 +672 1017 0.9840 +672 1019 0.9720 +672 1021 0.5780 +672 1022 0.7650 +672 1024 0.4870 +672 1025 0.7380 +672 1026 0.8090 +672 1027 0.5060 +672 1029 0.8320 +672 1030 0.4930 +672 1032 0.4280 +672 1033 0.5820 +672 1051 0.4270 +672 1058 0.5290 +672 1062 0.5640 +672 1063 0.6540 +672 1069 0.6500 +672 1080 0.4050 +672 1108 0.4670 +672 1111 0.9960 +672 1161 0.6860 +672 1385 0.6410 +672 1387 0.9680 +672 1457 0.4690 +672 1477 0.9740 +672 1478 0.7550 +672 1487 0.8790 +672 1488 0.7590 +672 1493 0.4500 +672 1499 0.7310 +672 1588 0.6000 +672 1612 0.5070 +672 1616 0.5780 +672 1642 0.4750 +672 1643 0.5040 +672 1647 0.7100 +672 1653 0.4950 +672 1655 0.7640 +672 1656 0.4560 +672 1660 0.9830 +672 1663 0.5960 +672 1719 0.5760 +672 1763 0.8970 +672 1786 0.7990 +672 1788 0.4530 +672 1789 0.5440 +672 1845 0.4030 +672 1869 0.8790 +672 1870 0.4470 +672 1871 0.4390 +672 1874 0.7420 +672 1876 0.8020 +672 1894 0.4970 +672 1911 0.9050 +672 1912 0.9010 +672 1950 0.5710 +672 1956 0.8000 +672 1958 0.4150 +672 1960 0.4660 +672 1994 0.5760 +672 2005 0.4180 +672 2033 0.9860 +672 2064 0.9180 +672 2065 0.5090 +672 2066 0.4360 +672 2067 0.9300 +672 2068 0.8800 +672 2071 0.7650 +672 2072 0.9140 +672 2073 0.9110 +672 2074 0.7270 +672 2099 0.9990 +672 2100 0.6460 +672 2113 0.4900 +672 2118 0.5850 +672 2119 0.4200 +672 2120 0.5960 +672 2130 0.6620 +672 2146 0.9260 +672 2175 0.9950 +672 2176 0.9260 +672 2177 0.9990 +672 2178 0.9200 +672 2187 0.7910 +672 2188 0.8870 +672 2189 0.9390 +672 2237 0.7040 +672 2260 0.4830 +672 2261 0.4440 +672 2263 0.5750 +672 2272 0.4920 +672 2274 0.6650 +672 2305 0.6510 +672 2308 0.6330 +672 2309 0.7490 +672 2313 0.4100 +672 2316 0.9170 +672 2322 0.4860 +672 2355 0.6760 +672 2475 0.4970 +672 2491 0.6260 +672 2521 0.5950 +672 2547 0.9530 +672 2597 0.6020 +672 2625 0.7700 +672 2648 0.6090 +672 2810 0.4320 +672 2932 0.6100 +672 2950 0.5710 +672 2956 0.9960 +672 2959 0.4740 +672 2960 0.5690 +672 2962 0.7830 +672 2963 0.5210 +672 2965 0.5750 +672 2966 0.5810 +672 2967 0.6120 +672 2968 0.7910 +672 3005 0.4010 +672 3012 0.9250 +672 3013 0.5670 +672 3014 0.9990 +672 3015 0.6840 +672 3017 0.7960 +672 3018 0.8880 +672 3021 0.7350 +672 3054 0.5960 +672 3065 0.9580 +672 3066 0.9530 +672 3069 0.5810 +672 3070 0.5440 +672 3090 0.4230 +672 3091 0.6370 +672 3093 0.9080 +672 3104 0.4260 +672 3161 0.9640 +672 3169 0.6410 +672 3178 0.7370 +672 3181 0.6760 +672 3182 0.7130 +672 3183 0.5560 +672 3184 0.7150 +672 3265 0.5280 +672 3276 0.4830 +672 3308 0.5710 +672 3312 0.6170 +672 3320 0.7520 +672 3326 0.6600 +672 3364 0.8700 +672 3400 0.4180 +672 3417 0.4950 +672 3418 0.4130 +672 3428 0.9530 +672 3430 0.4590 +672 3479 0.4450 +672 3480 0.4800 +672 3482 0.4790 +672 3551 0.6230 +672 3569 0.4160 +672 3595 0.4470 +672 3619 0.6210 +672 3630 0.5170 +672 3646 0.4710 +672 3659 0.5600 +672 3674 0.5650 +672 3708 0.8220 +672 3710 0.5010 +672 3716 0.4960 +672 3717 0.5710 +672 3725 0.7940 +672 3726 0.6990 +672 3727 0.6280 +672 3796 0.5580 +672 3815 0.5110 +672 3832 0.5710 +672 3833 0.7110 +672 3838 0.7470 +672 3845 0.7210 +672 3852 0.5870 +672 3861 0.4800 +672 3960 0.5430 +672 3973 0.4290 +672 3978 0.5470 +672 3980 0.6030 +672 3981 0.8780 +672 4000 0.7650 +672 4001 0.8090 +672 4046 0.6540 +672 4072 0.5800 +672 4077 0.7420 +672 4085 0.5220 +672 4087 0.5620 +672 4088 0.8670 +672 4089 0.5960 +672 4170 0.4320 +672 4172 0.4800 +672 4173 0.5760 +672 4174 0.4580 +672 4175 0.5040 +672 4176 0.5320 +672 4193 0.7940 +672 4194 0.7700 +672 4210 0.4480 +672 4214 0.7700 +672 4233 0.4090 +672 4255 0.6250 +672 4288 0.7570 +672 4292 0.9940 +672 4331 0.7510 +672 4361 0.9990 +672 4436 0.9940 +672 4437 0.9100 +672 4438 0.7230 +672 4439 0.7110 +672 4478 0.5990 +672 4595 0.6960 +672 4605 0.5030 +672 4609 0.9990 +672 4613 0.7280 +672 4683 0.9930 +672 4751 0.6990 +672 4763 0.8760 +672 4771 0.4510 +672 4780 0.8130 +672 4782 0.5430 +672 4790 0.7260 +672 4796 0.7330 +672 4800 0.4860 +672 4851 0.6980 +672 4869 0.7730 +672 4893 0.5380 +672 4913 0.4650 +672 4914 0.4150 +672 4968 0.5240 +672 4998 0.4740 +672 4999 0.4880 +672 5071 0.4750 +672 5073 0.5230 +672 5076 0.4320 +672 5111 0.6540 +672 5127 0.6430 +672 5133 0.4180 +672 5156 0.5160 +672 5241 0.9630 +672 5243 0.4700 +672 5290 0.7280 +672 5295 0.7660 +672 5300 0.5740 +672 5329 0.4710 +672 5347 0.9600 +672 5371 0.7200 +672 5378 0.8860 +672 5395 0.9500 +672 5422 0.4620 +672 5423 0.6000 +672 5424 0.9370 +672 5425 0.5250 +672 5426 0.9190 +672 5427 0.7020 +672 5429 0.7010 +672 5431 0.5520 +672 5432 0.5430 +672 5433 0.5720 +672 5434 0.5350 +672 5435 0.6430 +672 5436 0.5480 +672 5437 0.7910 +672 5438 0.5300 +672 5439 0.5410 +672 5440 0.5110 +672 5441 0.5110 +672 5451 0.9190 +672 5460 0.6260 +672 5469 0.5230 +672 5499 0.8690 +672 5500 0.6270 +672 5501 0.8800 +672 5531 0.5770 +672 5537 0.5330 +672 5557 0.4260 +672 5591 0.9550 +672 5594 0.5160 +672 5595 0.5660 +672 5599 0.5460 +672 5644 0.4870 +672 5727 0.4030 +672 5728 0.8210 +672 5810 0.7780 +672 5878 0.4240 +672 5883 0.8950 +672 5884 0.8870 +672 5885 0.8410 +672 5887 0.7940 +672 5888 0.9990 +672 5889 0.9800 +672 5890 0.9220 +672 5892 0.9530 +672 5893 0.9870 +672 5915 0.4620 +672 5925 0.8580 +672 5928 0.6750 +672 5931 0.9300 +672 5932 0.9990 +672 5933 0.5850 +672 5934 0.6870 +672 5962 0.6080 +672 5965 0.7820 +672 5970 0.8780 +672 5979 0.5180 +672 5980 0.5340 +672 5981 0.8020 +672 5982 0.9400 +672 5983 0.7500 +672 5984 0.9400 +672 5985 0.7560 +672 5987 0.4760 +672 6005 0.4270 +672 6015 0.9170 +672 6045 0.9230 +672 6047 0.6930 +672 6049 0.4500 +672 6098 0.4480 +672 6117 0.9600 +672 6118 0.8810 +672 6119 0.8360 +672 6144 0.4290 +672 6233 0.7250 +672 6240 0.6520 +672 6241 0.6200 +672 6426 0.6210 +672 6491 0.4340 +672 6500 0.5000 +672 6502 0.7410 +672 6521 0.4390 +672 6525 0.4390 +672 6591 0.4200 +672 6595 0.7090 +672 6596 0.4860 +672 6597 0.9830 +672 6598 0.7090 +672 6599 0.4580 +672 6601 0.6270 +672 6612 0.4530 +672 6613 0.9120 +672 6615 0.4440 +672 6622 0.4770 +672 6657 0.4430 +672 6667 0.6650 +672 6672 0.4810 +672 6714 0.6600 +672 6749 0.6820 +672 6772 0.9580 +672 6774 0.8120 +672 6776 0.7340 +672 6790 0.9420 +672 6794 0.7400 +672 6827 0.5340 +672 6829 0.6740 +672 6905 0.6840 +672 6908 0.5000 +672 6917 0.5820 +672 6921 0.5740 +672 6923 0.5450 +672 6924 0.5420 +672 7013 0.9110 +672 7014 0.9350 +672 7015 0.6460 +672 7026 0.5290 +672 7027 0.6060 +672 7029 0.6060 +672 7083 0.5140 +672 7124 0.4180 +672 7150 0.7240 +672 7153 0.8360 +672 7155 0.5800 +672 7156 0.8980 +672 7157 0.9990 +672 7158 0.9990 +672 7161 0.5850 +672 7249 0.4510 +672 7272 0.6270 +672 7273 0.5370 +672 7283 0.9280 +672 7298 0.5840 +672 7307 0.5540 +672 7311 0.5340 +672 7314 0.5780 +672 7316 0.8880 +672 7317 0.5580 +672 7320 0.5600 +672 7321 0.9730 +672 7322 0.6970 +672 7323 0.9970 +672 7324 0.7820 +672 7325 0.7750 +672 7329 0.9040 +672 7332 0.7190 +672 7334 0.9550 +672 7336 0.6530 +672 7337 0.5380 +672 7341 0.8790 +672 7343 0.4250 +672 7374 0.4140 +672 7392 0.7800 +672 7398 0.6820 +672 7399 0.4890 +672 7412 0.5430 +672 7414 0.4670 +672 7415 0.7870 +672 7450 0.4250 +672 7465 0.6980 +672 7468 0.7960 +672 7469 0.4990 +672 7486 0.9830 +672 7490 0.6830 +672 7507 0.8790 +672 7508 0.6900 +672 7514 0.6570 +672 7515 0.8170 +672 7516 0.9540 +672 7517 0.9530 +672 7518 0.8660 +672 7520 0.9720 +672 7528 0.6260 +672 7541 0.5340 +672 7703 0.9160 +672 7756 0.4820 +672 7798 0.4540 +672 7799 0.4690 +672 7837 0.5210 +672 7849 0.4370 +672 7874 0.6760 +672 7936 0.5870 +672 7979 0.8950 +672 8061 0.4730 +672 8153 0.4610 +672 8178 0.5430 +672 8202 0.6970 +672 8208 0.4240 +672 8237 0.7230 +672 8239 0.4580 +672 8242 0.4490 +672 8243 0.9300 +672 8289 0.8010 +672 8290 0.8720 +672 8312 0.5350 +672 8314 0.9950 +672 8315 0.9970 +672 8317 0.5400 +672 8318 0.7960 +672 8329 0.5940 +672 8331 0.5630 +672 8334 0.5670 +672 8337 0.8850 +672 8338 0.9550 +672 8340 0.7950 +672 8341 0.7950 +672 8342 0.7930 +672 8345 0.7940 +672 8347 0.7990 +672 8348 0.8010 +672 8349 0.9380 +672 8356 0.7590 +672 8361 0.8670 +672 8369 0.4970 +672 8379 0.4570 +672 8405 0.4230 +672 8434 0.4080 +672 8438 0.7960 +672 8452 0.7090 +672 8467 0.5040 +672 8493 0.4670 +672 8505 0.6960 +672 8535 0.9150 +672 8543 0.7100 +672 8544 0.4650 +672 8554 0.9430 +672 8570 0.5310 +672 8626 0.6530 +672 8648 0.6640 +672 8658 0.7970 +672 8678 0.6030 +672 8697 0.9110 +672 8812 0.6360 +672 8819 0.4160 +672 8844 0.4570 +672 8850 0.5900 +672 8861 0.4790 +672 8878 0.4160 +672 8880 0.5350 +672 8881 0.9270 +672 8882 0.4680 +672 8900 0.7790 +672 8914 0.5840 +672 8924 0.8490 +672 8970 0.7990 +672 9025 0.9700 +672 9055 0.6340 +672 9079 0.5870 +672 9111 0.6250 +672 9126 0.7560 +672 9133 0.5290 +672 9134 0.4870 +672 9150 0.6780 +672 9156 0.9810 +672 9203 0.4280 +672 9212 0.6150 +672 9219 0.4870 +672 9232 0.4430 +672 9319 0.5050 +672 9400 0.7280 +672 9401 0.7770 +672 9412 0.5400 +672 9429 0.4270 +672 9440 0.6950 +672 9493 0.7130 +672 9555 0.6840 +672 9577 0.9990 +672 9585 0.5680 +672 9611 0.5940 +672 9616 0.4800 +672 9656 0.9990 +672 9700 0.4270 +672 9735 0.8490 +672 9768 0.8100 +672 9774 0.7900 +672 9785 0.4340 +672 9787 0.4440 +672 9804 0.4180 +672 9817 0.7570 +672 9833 0.5090 +672 9837 0.4690 +672 9852 0.4600 +672 9927 0.4300 +672 9928 0.5830 +672 9937 0.6280 +672 9967 0.5440 +672 9968 0.5730 +672 9978 0.6100 +672 9985 0.6340 +672 10000 0.9340 +672 10036 0.5340 +672 10038 0.7390 +672 10039 0.7060 +672 10051 0.4240 +672 10075 0.5240 +672 10111 0.9990 +672 10112 0.4890 +672 10155 0.6060 +672 10210 0.7520 +672 10213 0.5780 +672 10274 0.7530 +672 10293 0.4300 +672 10335 0.4880 +672 10336 0.5520 +672 10388 0.5720 +672 10393 0.9090 +672 10403 0.5050 +672 10426 0.5800 +672 10437 0.4200 +672 10459 0.6820 +672 10460 0.5660 +672 10477 0.7750 +672 10481 0.5840 +672 10499 0.8220 +672 10521 0.4830 +672 10522 0.5090 +672 10524 0.8500 +672 10535 0.5750 +672 10592 0.4980 +672 10615 0.4610 +672 10635 0.8540 +672 10664 0.4430 +672 10714 0.7230 +672 10721 0.7510 +672 10733 0.4940 +672 10734 0.5920 +672 10735 0.6260 +672 10765 0.5340 +672 10844 0.5690 +672 10891 0.4120 +672 10916 0.5710 +672 10933 0.7630 +672 10951 0.6930 +672 10973 0.5630 +672 10987 0.5680 +672 11004 0.7060 +672 11043 0.5760 +672 11052 0.4650 +672 11065 0.9510 +672 11073 0.9990 +672 11100 0.8010 +672 11113 0.4370 +672 11130 0.4030 +672 11144 0.8320 +672 11169 0.7270 +672 11186 0.6210 +672 11198 0.6650 +672 11200 0.9990 +672 11201 0.5210 +672 11244 0.4460 +672 11284 0.4300 +672 11325 0.4840 +672 11335 0.8340 +672 11345 0.5510 +672 22794 0.5960 +672 22803 0.4300 +672 22890 0.4750 +672 22974 0.9220 +672 22976 0.8360 +672 22981 0.4110 +672 23028 0.7170 +672 23064 0.9900 +672 23132 0.5120 +672 23137 0.7590 +672 23172 0.8140 +672 23186 0.6440 +672 23224 0.5580 +672 23243 0.6830 +672 23253 0.4310 +672 23310 0.6290 +672 23331 0.6200 +672 23345 0.5930 +672 23347 0.4680 +672 23353 0.5580 +672 23361 0.4710 +672 23383 0.4710 +672 23405 0.4470 +672 23411 0.7770 +672 23435 0.4490 +672 23468 0.7000 +672 23476 0.4920 +672 23481 0.7050 +672 23492 0.7640 +672 23512 0.5800 +672 23514 0.5770 +672 23515 0.4200 +672 23523 0.4890 +672 23532 0.4870 +672 23626 0.8000 +672 23644 0.4250 +672 23645 0.4180 +672 23649 0.4450 +672 23671 0.4470 +672 23710 0.5520 +672 24137 0.6770 +672 25777 0.5160 +672 25788 0.8820 +672 25847 0.9050 +672 25885 0.4940 +672 25906 0.9000 +672 25913 0.8380 +672 25920 0.9020 +672 25962 0.4270 +672 26009 0.4950 +672 26227 0.4210 +672 26271 0.6040 +672 26277 0.8580 +672 26574 0.4010 +672 26585 0.5510 +672 26986 0.5710 +672 27030 0.7730 +672 27127 0.6570 +672 27161 0.5130 +672 27175 0.5470 +672 27229 0.9080 +672 27238 0.4270 +672 27243 0.4920 +672 27324 0.7650 +672 27338 0.9630 +672 27339 0.4390 +672 27343 0.4970 +672 27434 0.4320 +672 29028 0.6030 +672 29086 0.9990 +672 29089 0.8490 +672 29102 0.9440 +672 29108 0.4150 +672 29117 0.8160 +672 29126 0.6200 +672 29127 0.5520 +672 29128 0.8060 +672 29789 0.8680 +672 29882 0.9120 +672 29893 0.7860 +672 29945 0.9100 +672 50485 0.6020 +672 50511 0.7490 +672 51008 0.5470 +672 51035 0.7900 +672 51203 0.5400 +672 51224 0.5220 +672 51239 0.5530 +672 51317 0.5680 +672 51343 0.6120 +672 51426 0.5490 +672 51433 0.9110 +672 51434 0.9060 +672 51455 0.6240 +672 51497 0.5270 +672 51510 0.4390 +672 51512 0.4420 +672 51514 0.5670 +672 51529 0.9130 +672 51548 0.5820 +672 51588 0.8970 +672 51592 0.5110 +672 51659 0.4810 +672 51710 0.4700 +672 51720 0.9990 +672 51741 0.5370 +672 51750 0.8520 +672 51755 0.8490 +672 54107 0.5400 +672 54145 0.7910 +672 54346 0.6100 +672 54386 0.8440 +672 54443 0.6390 +672 54465 0.7350 +672 54478 0.4010 +672 54537 0.5290 +672 54780 0.4720 +672 54821 0.4630 +672 54875 0.5550 +672 54880 0.9040 +672 54892 0.7580 +672 54962 0.4510 +672 55055 0.4050 +672 55086 0.4380 +672 55120 0.8300 +672 55159 0.5230 +672 55165 0.4270 +672 55183 0.8130 +672 55193 0.4550 +672 55196 0.4370 +672 55215 0.9930 +672 55218 0.6760 +672 55247 0.5860 +672 55284 0.8390 +672 55294 0.4840 +672 55320 0.4680 +672 55388 0.8490 +672 55511 0.4220 +672 55611 0.5180 +672 55615 0.5870 +672 55701 0.4790 +672 55719 0.5150 +672 55723 0.4290 +672 55732 0.4540 +672 55766 0.5530 +672 55775 0.5330 +672 55835 0.9200 +672 56154 0.5230 +672 56160 0.4840 +672 56254 0.4030 +672 56647 0.5500 +672 56652 0.4640 +672 56655 0.4850 +672 56852 0.8950 +672 56897 0.6160 +672 56916 0.5550 +672 56946 0.8250 +672 56992 0.5190 +672 57045 0.4190 +672 57082 0.6090 +672 57332 0.9080 +672 57405 0.4030 +672 57599 0.4990 +672 57646 0.4200 +672 57650 0.6370 +672 57680 0.4110 +672 57697 0.9160 +672 57787 0.9030 +672 57804 0.4430 +672 57805 0.4980 +672 58508 0.5160 +672 59348 0.9980 +672 63901 0.5900 +672 63967 0.8980 +672 64151 0.6180 +672 64421 0.7790 +672 64682 0.9170 +672 64858 0.6160 +672 65986 0.4370 +672 79075 0.6010 +672 79109 0.6080 +672 79184 0.9990 +672 79618 0.4520 +672 79648 0.6450 +672 79677 0.6420 +672 79682 0.6660 +672 79728 0.9990 +672 79733 0.5170 +672 79840 0.7990 +672 79866 0.4980 +672 79915 0.6910 +672 79923 0.4470 +672 79991 0.7530 +672 80010 0.9150 +672 80012 0.9110 +672 80097 0.9000 +672 80119 0.7380 +672 80169 0.5900 +672 80174 0.4180 +672 80198 0.9110 +672 80233 0.6800 +672 80351 0.4790 +672 80818 0.4700 +672 81620 0.5900 +672 81669 0.6160 +672 81930 0.6650 +672 83540 0.5210 +672 83695 0.8020 +672 83990 0.9990 +672 84057 0.8440 +672 84072 0.4250 +672 84083 0.5910 +672 84108 0.9070 +672 84126 0.9720 +672 84142 0.9990 +672 84164 0.5400 +672 84168 0.4610 +672 84250 0.6880 +672 84260 0.7310 +672 84333 0.5400 +672 84444 0.4760 +672 84464 0.9050 +672 84515 0.5590 +672 84687 0.5040 +672 84733 0.9400 +672 84759 0.5750 +672 84893 0.4590 +672 85235 0.5630 +672 85236 0.7910 +672 85378 0.9020 +672 90381 0.5480 +672 91404 0.4790 +672 91419 0.5600 +672 91442 0.7490 +672 91607 0.5880 +672 91746 0.4320 +672 92521 0.4470 +672 92815 0.5530 +672 93611 0.4320 +672 94239 0.6230 +672 113130 0.5970 +672 113510 0.4660 +672 114791 0.9190 +672 115004 0.7100 +672 115560 0.4700 +672 116028 0.8560 +672 119504 0.9000 +672 125150 0.5590 +672 126074 0.6540 +672 128312 0.7910 +672 128710 0.5260 +672 129831 0.4550 +672 133482 0.4060 +672 136541 0.5070 +672 137902 0.5200 +672 140459 0.5530 +672 144455 0.4490 +672 144715 0.6130 +672 146956 0.8800 +672 148266 0.4740 +672 149840 0.4870 +672 150468 0.4080 +672 151246 0.5590 +672 152485 0.6440 +672 157313 0.6150 +672 157570 0.5250 +672 158983 0.5960 +672 165918 0.9820 +672 166979 0.5620 +672 170082 0.5360 +672 171023 0.5840 +672 171024 0.4710 +672 197342 0.5870 +672 197370 0.5040 +672 201973 0.4830 +672 203068 0.4160 +672 221150 0.4140 +672 221302 0.6080 +672 221613 0.5530 +672 221927 0.9410 +672 221937 0.4680 +672 246184 0.9060 +672 246243 0.4220 +672 253260 0.7020 +672 253714 0.7480 +672 254225 0.7320 +672 255626 0.7890 +672 259266 0.6410 +672 259282 0.4070 +672 282991 0.9090 +672 284390 0.4700 +672 286053 0.5670 +672 286077 0.4580 +672 286205 0.4520 +672 286257 0.6810 +672 286436 0.5990 +672 317772 0.5540 +672 348654 0.7460 +672 353497 0.5630 +672 404672 0.5920 +672 440093 0.7380 +672 440145 0.9040 +672 440686 0.7430 +672 440689 0.5970 +672 441519 0.4200 +672 474382 0.5650 +672 548593 0.7360 +672 653604 0.7430 +672 653784 0.7200 +672 100133941 0.4470 +672 100532731 0.7160 +672 100533467 0.7480 +672 102723407 0.5070 +672 105375355 0.5400 +672 114483833 0.5970 +673 675 0.7210 +673 808 0.4760 +673 810 0.4730 +673 815 0.4170 +673 816 0.4140 +673 817 0.4210 +673 818 0.4710 +673 836 0.6110 +673 841 0.4400 +673 842 0.4170 +673 861 0.4390 +673 862 0.4340 +673 864 0.4800 +673 891 0.4050 +673 894 0.6000 +673 896 0.4130 +673 898 0.5250 +673 909 0.5800 +673 910 0.5790 +673 911 0.5190 +673 912 0.5180 +673 913 0.5800 +673 920 0.5440 +673 925 0.6220 +673 941 0.4200 +673 947 0.4730 +673 960 0.4720 +673 968 0.4470 +673 999 0.5980 +673 1000 0.4680 +673 1019 0.4220 +673 1026 0.5080 +673 1027 0.4860 +673 1029 0.8920 +673 1030 0.5340 +673 1031 0.5990 +673 1033 0.4090 +673 1045 0.5500 +673 1048 0.6350 +673 1185 0.7450 +673 1277 0.4340 +673 1381 0.4530 +673 1385 0.4590 +673 1387 0.4650 +673 1398 0.6280 +673 1399 0.6730 +673 1432 0.4550 +673 1445 0.5810 +673 1493 0.7730 +673 1499 0.7950 +673 1638 0.4150 +673 1786 0.4630 +673 1788 0.4860 +673 1794 0.4540 +673 1806 0.4220 +673 1846 0.4610 +673 1847 0.4220 +673 1848 0.5510 +673 1869 0.4670 +673 1950 0.6510 +673 1956 0.6010 +673 1964 0.6150 +673 1969 0.5530 +673 1977 0.4040 +673 2033 0.6340 +673 2064 0.4820 +673 2065 0.4160 +673 2066 0.4450 +673 2067 0.4180 +673 2069 0.5620 +673 2099 0.7460 +673 2115 0.4150 +673 2120 0.6020 +673 2130 0.4480 +673 2146 0.6220 +673 2243 0.5340 +673 2244 0.5140 +673 2247 0.6310 +673 2248 0.4010 +673 2258 0.5560 +673 2260 0.4020 +673 2261 0.6270 +673 2263 0.6740 +673 2264 0.4520 +673 2266 0.5070 +673 2309 0.4310 +673 2315 0.4490 +673 2335 0.7180 +673 2353 0.4600 +673 2475 0.6540 +673 2597 0.5920 +673 2624 0.4040 +673 2767 0.8050 +673 2776 0.7330 +673 2778 0.7610 +673 2810 0.8850 +673 2885 0.6170 +673 2889 0.8690 +673 2899 0.4010 +673 2908 0.5150 +673 2932 0.9250 +673 2956 0.8060 +673 3002 0.4070 +673 3020 0.6250 +673 3021 0.5730 +673 3082 0.5720 +673 3084 0.4290 +673 3091 0.5910 +673 3105 0.6030 +673 3169 0.5650 +673 3183 0.5010 +673 3263 0.4510 +673 3265 0.9990 +673 3266 0.5910 +673 3304 0.6970 +673 3308 0.6710 +673 3309 0.7730 +673 3312 0.8060 +673 3313 0.4200 +673 3315 0.5520 +673 3316 0.4540 +673 3320 0.9840 +673 3326 0.9980 +673 3357 0.4260 +673 3417 0.7990 +673 3418 0.7310 +673 3439 0.5010 +673 3440 0.5260 +673 3441 0.4700 +673 3442 0.4960 +673 3443 0.4960 +673 3444 0.4970 +673 3445 0.4970 +673 3446 0.4970 +673 3447 0.4940 +673 3448 0.4960 +673 3449 0.4970 +673 3451 0.4700 +673 3452 0.4970 +673 3458 0.5100 +673 3479 0.4860 +673 3481 0.4800 +673 3558 0.5420 +673 3569 0.5070 +673 3576 0.4310 +673 3586 0.4080 +673 3620 0.4470 +673 3630 0.5050 +673 3674 0.5600 +673 3690 0.5800 +673 3717 0.5850 +673 3720 0.4240 +673 3725 0.5760 +673 3799 0.5440 +673 3815 0.4260 +673 3845 0.9990 +673 3852 0.4320 +673 3855 0.5730 +673 3880 0.4830 +673 3902 0.4720 +673 3958 0.4330 +673 4000 0.6410 +673 4015 0.4530 +673 4072 0.5070 +673 4087 0.4370 +673 4089 0.7560 +673 4094 0.4460 +673 4140 0.4800 +673 4157 0.7460 +673 4170 0.6150 +673 4192 0.4340 +673 4193 0.6310 +673 4194 0.4920 +673 4214 0.6180 +673 4255 0.6610 +673 4286 0.7190 +673 4288 0.4680 +673 4292 0.8760 +673 4296 0.6800 +673 4297 0.5980 +673 4313 0.4120 +673 4316 0.4350 +673 4318 0.4830 +673 4436 0.7240 +673 4437 0.4640 +673 4586 0.4210 +673 4588 0.4210 +673 4594 0.4210 +673 4595 0.4700 +673 4603 0.4550 +673 4609 0.7220 +673 4613 0.5300 +673 4684 0.4310 +673 4691 0.4100 +673 4762 0.5050 +673 4763 0.9030 +673 4771 0.5520 +673 4780 0.4490 +673 4790 0.6840 +673 4803 0.6620 +673 4804 0.5660 +673 4851 0.6680 +673 4853 0.4890 +673 4869 0.6850 +673 4893 0.9990 +673 4914 0.6750 +673 5034 0.5230 +673 5037 0.8510 +673 5071 0.4180 +673 5133 0.6960 +673 5241 0.4500 +673 5243 0.4350 +673 5245 0.5680 +673 5290 0.9470 +673 5291 0.5570 +673 5293 0.4330 +673 5294 0.5690 +673 5295 0.6000 +673 5371 0.4030 +673 5378 0.6240 +673 5395 0.8360 +673 5424 0.4350 +673 5426 0.6040 +673 5468 0.6710 +673 5500 0.5550 +673 5501 0.4900 +673 5515 0.6470 +673 5516 0.5860 +673 5518 0.6270 +673 5519 0.4370 +673 5520 0.4570 +673 5525 0.5260 +673 5526 0.4700 +673 5527 0.5040 +673 5528 0.4600 +673 5529 0.5030 +673 5536 0.9790 +673 5537 0.5260 +673 5566 0.9220 +673 5567 0.9220 +673 5568 0.9220 +673 5578 0.9370 +673 5579 0.9090 +673 5580 0.6860 +673 5581 0.9100 +673 5582 0.9430 +673 5583 0.6820 +673 5588 0.6810 +673 5594 0.9490 +673 5595 0.9600 +673 5600 0.4910 +673 5603 0.4430 +673 5604 0.9990 +673 5605 0.9980 +673 5607 0.5750 +673 5609 0.5840 +673 5727 0.6380 +673 5728 0.9430 +673 5743 0.4280 +673 5781 0.8620 +673 5788 0.4130 +673 5792 0.4530 +673 5863 0.5380 +673 5894 0.9990 +673 5898 0.6410 +673 5899 0.5690 +673 5900 0.6830 +673 5906 0.9890 +673 5908 0.9600 +673 5909 0.4740 +673 5911 0.4740 +673 5912 0.4830 +673 5914 0.5880 +673 5921 0.5230 +673 5922 0.5320 +673 5979 0.4570 +673 6002 0.5670 +673 6009 0.4520 +673 6014 0.8010 +673 6016 0.7200 +673 6098 0.4030 +673 6194 0.4080 +673 6196 0.4780 +673 6197 0.5910 +673 6198 0.5690 +673 6199 0.9270 +673 6237 0.9560 +673 6300 0.4510 +673 6389 0.4240 +673 6390 0.4440 +673 6392 0.4030 +673 6416 0.5370 +673 6464 0.6450 +673 6490 0.5820 +673 6500 0.4450 +673 6513 0.4370 +673 6515 0.4980 +673 6528 0.6830 +673 6548 0.5000 +673 6591 0.4210 +673 6597 0.4990 +673 6598 0.5850 +673 6615 0.4780 +673 6654 0.9000 +673 6655 0.6310 +673 6657 0.4440 +673 6663 0.5800 +673 6714 0.8420 +673 6772 0.4310 +673 6774 0.7730 +673 6777 0.4230 +673 6794 0.4640 +673 6801 0.4360 +673 6855 0.4430 +673 6867 0.4580 +673 7015 0.8150 +673 7038 0.7520 +673 7039 0.4390 +673 7040 0.4540 +673 7080 0.5420 +673 7094 0.5520 +673 7124 0.4860 +673 7157 0.8870 +673 7170 0.4170 +673 7182 0.4850 +673 7184 0.4670 +673 7187 0.5840 +673 7189 0.4680 +673 7248 0.4840 +673 7249 0.8320 +673 7253 0.5450 +673 7291 0.4020 +673 7298 0.4450 +673 7299 0.6150 +673 7306 0.4100 +673 7307 0.4450 +673 7403 0.5040 +673 7414 0.6620 +673 7416 0.4300 +673 7417 0.5090 +673 7419 0.5940 +673 7431 0.4580 +673 7450 0.5590 +673 7474 0.4130 +673 7490 0.4920 +673 7529 0.9940 +673 7531 0.9940 +673 7532 0.9930 +673 7533 0.9930 +673 7534 0.9990 +673 7812 0.5410 +673 7837 0.5290 +673 7849 0.6970 +673 7852 0.4120 +673 7905 0.5850 +673 8019 0.5310 +673 8030 0.6990 +673 8031 0.6210 +673 8036 0.8570 +673 8061 0.4120 +673 8085 0.5200 +673 8087 0.5750 +673 8216 0.4770 +673 8289 0.7020 +673 8290 0.4580 +673 8312 0.4630 +673 8313 0.4380 +673 8314 0.5870 +673 8315 0.6440 +673 8356 0.5150 +673 8358 0.5090 +673 8405 0.4480 +673 8438 0.4630 +673 8452 0.4080 +673 8493 0.4270 +673 8513 0.4930 +673 8546 0.5170 +673 8549 0.4510 +673 8649 0.5890 +673 8651 0.6550 +673 8805 0.8390 +673 8817 0.4510 +673 8826 0.9830 +673 8831 0.4020 +673 8842 0.4310 +673 8844 0.9390 +673 8913 0.5070 +673 8988 0.4630 +673 9061 0.5300 +673 9077 0.4570 +673 9332 0.4220 +673 9429 0.4190 +673 9444 0.7400 +673 9462 0.4460 +673 9475 0.4980 +673 9476 0.4480 +673 9531 0.4860 +673 9610 0.5050 +673 9693 0.4210 +673 9715 0.7330 +673 9812 0.4020 +673 9817 0.5070 +673 9846 0.5760 +673 9968 0.4200 +673 10018 0.7830 +673 10125 0.4790 +673 10131 0.5080 +673 10142 0.8510 +673 10190 0.5040 +673 10197 0.4540 +673 10253 0.9700 +673 10256 0.6510 +673 10362 0.4300 +673 10413 0.4690 +673 10460 0.4640 +673 10533 0.7140 +673 10563 0.4750 +673 10568 0.4010 +673 10735 0.4010 +673 10765 0.4220 +673 10818 0.6640 +673 10827 0.5570 +673 10971 0.9970 +673 11044 0.4990 +673 11128 0.4900 +673 11140 0.9910 +673 11186 0.5830 +673 11345 0.4820 +673 22800 0.9510 +673 22808 0.9650 +673 22866 0.7730 +673 22894 0.5070 +673 22906 0.5490 +673 23118 0.4230 +673 23164 0.5570 +673 23405 0.4160 +673 23463 0.4810 +673 23476 0.4410 +673 23499 0.4890 +673 23532 0.4860 +673 23608 0.5750 +673 25998 0.4210 +673 26040 0.4160 +673 27030 0.5510 +673 27035 0.5340 +673 27044 0.6410 +673 27436 0.7450 +673 28954 0.4130 +673 28956 0.5100 +673 29072 0.5410 +673 29126 0.7990 +673 29760 0.4320 +673 50489 0.4810 +673 50943 0.4330 +673 51082 0.4180 +673 51185 0.4660 +673 51196 0.5290 +673 51317 0.5260 +673 51343 0.4670 +673 51592 0.5600 +673 51655 0.6290 +673 51806 0.4710 +673 53353 0.4510 +673 53373 0.6040 +673 54205 0.4020 +673 54474 0.5720 +673 54518 0.5500 +673 54756 0.5590 +673 54790 0.5140 +673 54845 0.5960 +673 54855 0.5080 +673 54894 0.6140 +673 55109 0.4990 +673 55193 0.6770 +673 55294 0.7990 +673 55534 0.5040 +673 55664 0.4420 +673 55750 0.6980 +673 55819 0.5560 +673 55904 0.4100 +673 56829 0.5320 +673 57085 0.5690 +673 57139 0.5130 +673 57492 0.4320 +673 57498 0.6140 +673 57509 0.6330 +673 57521 0.5200 +673 57670 0.9540 +673 58508 0.5350 +673 63035 0.4050 +673 79728 0.4350 +673 79791 0.4730 +673 79923 0.5000 +673 80243 0.4260 +673 80328 0.4640 +673 80380 0.5450 +673 80853 0.6490 +673 81669 0.4040 +673 81848 0.5890 +673 83737 0.4270 +673 84106 0.4990 +673 84232 0.4920 +673 84260 0.4250 +673 84292 0.5430 +673 84295 0.4330 +673 84868 0.4680 +673 91860 0.4710 +673 128272 0.4230 +673 137902 0.5290 +673 139285 0.4200 +673 152559 0.5660 +673 160728 0.5390 +673 161742 0.6160 +673 163688 0.4720 +673 171023 0.5160 +673 196528 0.5740 +673 200734 0.4630 +673 253260 0.6580 +673 255738 0.4090 +673 340273 0.5900 +673 399694 0.4910 +673 400566 0.5390 +673 440093 0.4580 +673 440686 0.4580 +673 653604 0.4580 +673 102723407 0.4860 +675 699 0.6710 +675 701 0.9530 +675 836 0.6230 +675 891 0.6300 +675 898 0.5880 +675 983 0.6450 +675 990 0.5270 +675 991 0.7120 +675 993 0.5550 +675 994 0.4880 +675 995 0.4790 +675 996 0.7630 +675 999 0.4790 +675 1017 0.9460 +675 1019 0.9430 +675 1021 0.4900 +675 1026 0.6350 +675 1027 0.4220 +675 1029 0.8060 +675 1030 0.4490 +675 1062 0.5710 +675 1063 0.4620 +675 1069 0.6170 +675 1105 0.4110 +675 1108 0.4500 +675 1111 0.9630 +675 1161 0.6830 +675 1477 0.4050 +675 1487 0.5030 +675 1493 0.4210 +675 1499 0.5430 +675 1588 0.5270 +675 1755 0.4340 +675 1763 0.8920 +675 1786 0.4180 +675 1869 0.5180 +675 1911 0.7340 +675 1912 0.7200 +675 1950 0.4260 +675 1956 0.6780 +675 2064 0.8730 +675 2065 0.4950 +675 2066 0.4290 +675 2067 0.8770 +675 2068 0.6360 +675 2071 0.7500 +675 2072 0.8520 +675 2073 0.9130 +675 2074 0.4350 +675 2099 0.7230 +675 2146 0.5520 +675 2175 0.9680 +675 2176 0.9190 +675 2177 0.9990 +675 2178 0.8990 +675 2187 0.9100 +675 2188 0.9080 +675 2189 0.9970 +675 2195 0.4890 +675 2237 0.7940 +675 2260 0.4850 +675 2261 0.4550 +675 2263 0.5810 +675 2305 0.5390 +675 2308 0.5520 +675 2316 0.9770 +675 2475 0.4070 +675 2547 0.8830 +675 2597 0.4670 +675 2778 0.4470 +675 2956 0.9670 +675 3014 0.9730 +675 3017 0.5650 +675 3018 0.5670 +675 3021 0.4620 +675 3065 0.5490 +675 3070 0.5050 +675 3161 0.9290 +675 3169 0.4370 +675 3183 0.5210 +675 3265 0.4800 +675 3320 0.6290 +675 3326 0.6200 +675 3364 0.7550 +675 3417 0.4840 +675 3418 0.4110 +675 3480 0.4180 +675 3815 0.4840 +675 3832 0.4630 +675 3845 0.7210 +675 3852 0.4320 +675 3973 0.4020 +675 3978 0.5530 +675 3980 0.5830 +675 3981 0.8870 +675 4000 0.4040 +675 4046 0.7060 +675 4072 0.5670 +675 4085 0.4060 +675 4087 0.4520 +675 4088 0.6520 +675 4089 0.6720 +675 4103 0.4120 +675 4193 0.7020 +675 4194 0.4290 +675 4214 0.6480 +675 4255 0.6110 +675 4288 0.5580 +675 4292 0.9540 +675 4361 0.9670 +675 4436 0.9680 +675 4437 0.8390 +675 4438 0.7310 +675 4439 0.7200 +675 4486 0.4850 +675 4524 0.4080 +675 4595 0.7280 +675 4609 0.7590 +675 4683 0.9010 +675 4691 0.5100 +675 4751 0.4450 +675 4763 0.7500 +675 4771 0.4350 +675 4804 0.4160 +675 4851 0.5690 +675 4869 0.8560 +675 4893 0.5210 +675 4913 0.4490 +675 4968 0.5080 +675 5111 0.6240 +675 5156 0.4190 +675 5241 0.7950 +675 5290 0.8120 +675 5295 0.4180 +675 5347 0.9960 +675 5378 0.8430 +675 5395 0.9470 +675 5422 0.4570 +675 5423 0.4010 +675 5424 0.8960 +675 5425 0.5020 +675 5426 0.8490 +675 5427 0.6340 +675 5429 0.6740 +675 5591 0.8870 +675 5644 0.5950 +675 5709 0.6720 +675 5727 0.4480 +675 5728 0.8770 +675 5810 0.5820 +675 5883 0.9310 +675 5884 0.8520 +675 5885 0.7200 +675 5886 0.4250 +675 5887 0.8100 +675 5888 0.9990 +675 5889 0.9990 +675 5890 0.9610 +675 5892 0.9830 +675 5893 0.9930 +675 5932 0.9830 +675 5965 0.6560 +675 5979 0.7050 +675 5980 0.5460 +675 5981 0.4880 +675 5982 0.6480 +675 5983 0.7230 +675 5984 0.6800 +675 5985 0.6460 +675 6015 0.7390 +675 6045 0.7550 +675 6098 0.4880 +675 6117 0.8070 +675 6118 0.8610 +675 6119 0.7620 +675 6233 0.4010 +675 6416 0.5620 +675 6502 0.4150 +675 6596 0.5490 +675 6597 0.6800 +675 6598 0.4790 +675 6615 0.5660 +675 6627 0.4320 +675 6667 0.4010 +675 6690 0.4290 +675 6776 0.4650 +675 6790 0.5810 +675 6794 0.8300 +675 6905 0.6500 +675 7015 0.5500 +675 7048 0.4310 +675 7113 0.4450 +675 7150 0.5990 +675 7153 0.6610 +675 7156 0.9150 +675 7157 0.9950 +675 7158 0.9220 +675 7249 0.4450 +675 7272 0.4650 +675 7314 0.4400 +675 7316 0.4270 +675 7321 0.5240 +675 7398 0.6050 +675 7399 0.4790 +675 7465 0.5940 +675 7486 0.8880 +675 7490 0.4690 +675 7507 0.8060 +675 7508 0.6430 +675 7514 0.6040 +675 7515 0.8270 +675 7516 0.9820 +675 7517 0.9990 +675 7518 0.8450 +675 7520 0.8900 +675 7703 0.7270 +675 7799 0.4230 +675 7979 0.9990 +675 8085 0.4500 +675 8237 0.9340 +675 8243 0.4180 +675 8289 0.6630 +675 8290 0.7060 +675 8314 0.5010 +675 8318 0.7850 +675 8338 0.4110 +675 8340 0.5760 +675 8341 0.5740 +675 8342 0.5720 +675 8345 0.5800 +675 8347 0.5660 +675 8348 0.5770 +675 8349 0.6400 +675 8356 0.4680 +675 8361 0.6110 +675 8379 0.6050 +675 8405 0.5060 +675 8438 0.7820 +675 8480 0.4790 +675 8493 0.4050 +675 8505 0.5750 +675 8535 0.7610 +675 8600 0.4750 +675 8658 0.5920 +675 8697 0.7290 +675 8850 0.9530 +675 8881 0.7610 +675 8900 0.5760 +675 8914 0.4340 +675 8970 0.5780 +675 9025 0.5800 +675 9126 0.6620 +675 9134 0.4110 +675 9156 0.9510 +675 9212 0.7900 +675 9319 0.4180 +675 9400 0.7120 +675 9401 0.6240 +675 9475 0.7590 +675 9493 0.4130 +675 9577 0.9600 +675 9656 0.8570 +675 9787 0.4110 +675 9817 0.7730 +675 9861 0.6330 +675 9928 0.4510 +675 9937 0.4040 +675 10038 0.8650 +675 10039 0.5660 +675 10048 0.4480 +675 10051 0.5460 +675 10111 0.7590 +675 10256 0.4720 +675 10336 0.5440 +675 10362 0.9420 +675 10393 0.7300 +675 10459 0.6580 +675 10481 0.5990 +675 10524 0.6580 +675 10535 0.5050 +675 10592 0.4490 +675 10635 0.7940 +675 10664 0.6770 +675 10714 0.6670 +675 10721 0.8040 +675 10733 0.4670 +675 10771 0.4420 +675 10933 0.7330 +675 10944 0.4860 +675 10973 0.5650 +675 11065 0.8020 +675 11073 0.8450 +675 11077 0.9510 +675 11100 0.4670 +675 11144 0.9790 +675 11169 0.4740 +675 11186 0.4180 +675 11200 0.9850 +675 11284 0.4310 +675 22909 0.4300 +675 22974 0.5350 +675 22976 0.5710 +675 23022 0.4260 +675 23028 0.6340 +675 23047 0.9390 +675 23063 0.4460 +675 23064 0.5330 +675 23137 0.4870 +675 23186 0.5710 +675 23244 0.6710 +675 23492 0.7530 +675 23514 0.6060 +675 23626 0.7510 +675 24137 0.7250 +675 25788 0.8570 +675 25847 0.7200 +675 25906 0.7200 +675 25913 0.4680 +675 26585 0.5740 +675 27030 0.7830 +675 27324 0.7970 +675 27338 0.7790 +675 27343 0.4400 +675 29086 0.7130 +675 29089 0.6430 +675 29126 0.5910 +675 29882 0.7600 +675 29893 0.5690 +675 29945 0.7200 +675 50485 0.7110 +675 50511 0.9690 +675 51008 0.5830 +675 51203 0.4640 +675 51239 0.5510 +675 51317 0.5690 +675 51343 0.5870 +675 51426 0.5150 +675 51433 0.7200 +675 51434 0.7220 +675 51455 0.6600 +675 51514 0.4470 +675 51529 0.7300 +675 51720 0.8000 +675 51750 0.6640 +675 51755 0.7400 +675 54107 0.4950 +675 54145 0.5740 +675 54465 0.5030 +675 54537 0.4280 +675 54780 0.6290 +675 54821 0.4610 +675 54880 0.7290 +675 54894 0.4710 +675 55086 0.5770 +675 55120 0.9020 +675 55159 0.5180 +675 55165 0.6150 +675 55193 0.4820 +675 55215 0.9960 +675 55247 0.5260 +675 55294 0.5030 +675 55388 0.5770 +675 55775 0.5330 +675 55795 0.7320 +675 56154 0.5630 +675 56647 0.9970 +675 56652 0.5470 +675 56655 0.4850 +675 56852 0.6230 +675 56897 0.4470 +675 56946 0.9970 +675 56992 0.4530 +675 57082 0.7410 +675 57332 0.7720 +675 57492 0.4160 +675 57697 0.9370 +675 57804 0.4190 +675 58508 0.5820 +675 59348 0.6540 +675 63967 0.5680 +675 64421 0.7140 +675 64682 0.7260 +675 79158 0.4030 +675 79184 0.9840 +675 79633 0.4950 +675 79648 0.8440 +675 79677 0.4230 +675 79728 0.9990 +675 79733 0.4730 +675 79840 0.8030 +675 79915 0.6330 +675 79980 0.5730 +675 79991 0.5120 +675 80010 0.7590 +675 80012 0.7350 +675 80119 0.4350 +675 80198 0.9190 +675 80233 0.5680 +675 81620 0.4690 +675 81669 0.5230 +675 81930 0.5790 +675 83695 0.5720 +675 83990 0.9980 +675 84057 0.8680 +675 84083 0.6330 +675 84108 0.7260 +675 84126 0.7920 +675 84142 0.7550 +675 84164 0.5400 +675 84250 0.4420 +675 84260 0.7160 +675 84333 0.5400 +675 84464 0.8790 +675 84515 0.4790 +675 84733 0.7540 +675 84759 0.5400 +675 84893 0.6150 +675 85236 0.5660 +675 91419 0.5400 +675 91442 0.7160 +675 113510 0.4440 +675 114788 0.4030 +675 115761 0.4670 +675 116028 0.7170 +675 116840 0.7710 +675 119504 0.7200 +675 125150 0.6630 +675 126074 0.7750 +675 128312 0.5650 +675 136541 0.6210 +675 139285 0.4890 +675 140459 0.5510 +675 144715 0.6790 +675 145173 0.4540 +675 146845 0.7550 +675 146956 0.7900 +675 157570 0.4800 +675 165918 0.7960 +675 166979 0.5620 +675 171023 0.4900 +675 197342 0.6090 +675 201973 0.5030 +675 246184 0.7520 +675 246243 0.4730 +675 253714 0.5450 +675 254528 0.4960 +675 255626 0.5650 +675 259266 0.4310 +675 259282 0.6600 +675 286205 0.4220 +675 286257 0.6830 +675 348654 0.7960 +675 353497 0.5730 +675 440093 0.4370 +675 440686 0.4430 +675 548593 0.7290 +675 653604 0.4430 +675 100533467 0.7540 +675 105375355 0.5400 +676 904 0.9090 +676 905 0.5520 +676 1025 0.9130 +676 1108 0.4030 +676 1672 0.9300 +676 1673 0.6240 +676 1869 0.5190 +676 1876 0.4290 +676 2515 0.5430 +676 3005 0.4020 +676 3015 0.5360 +676 3021 0.7080 +676 3065 0.4280 +676 4609 0.5060 +676 4670 0.4280 +676 5620 0.4070 +676 6046 0.9460 +676 6595 0.4220 +676 6597 0.5940 +676 6605 0.4500 +676 6872 0.5300 +676 6878 0.4030 +676 6879 0.6710 +676 7141 0.5320 +676 7142 0.5010 +676 7157 0.4990 +676 7862 0.5230 +676 7994 0.4360 +676 8019 0.9150 +676 8089 0.4540 +676 8290 0.7080 +676 8337 0.4320 +676 8338 0.4320 +676 8349 0.4050 +676 8356 0.7080 +676 8361 0.9880 +676 8369 0.9890 +676 8815 0.4490 +676 9120 0.4290 +676 9947 0.4490 +676 10524 0.4160 +676 10614 0.4180 +676 10847 0.4320 +676 11168 0.4100 +676 11262 0.5120 +676 23476 0.9260 +676 23774 0.4180 +676 26038 0.4250 +676 29028 0.4410 +676 51438 0.4350 +676 54457 0.5950 +676 54904 0.6200 +676 56163 0.4380 +676 57634 0.4210 +676 58531 0.4530 +676 60496 0.6820 +676 80705 0.6000 +676 83449 0.5700 +676 93349 0.5550 +676 122402 0.4100 +676 129685 0.4240 +676 138474 0.6570 +676 140732 0.5740 +676 256646 0.6750 +676 285782 0.5580 +676 440093 0.7080 +676 440686 0.7080 +676 653604 0.7080 +677 678 0.9170 +677 958 0.4500 +677 961 0.4930 +677 1432 0.7120 +677 1437 0.4610 +677 1656 0.4830 +677 1950 0.4040 +677 1994 0.7420 +677 3184 0.6240 +677 3312 0.4430 +677 5393 0.4990 +677 5757 0.4940 +677 5890 0.4650 +677 5976 0.7310 +677 7072 0.4400 +677 7073 0.4640 +677 7514 0.5100 +677 7529 0.8850 +677 7534 0.5240 +677 7538 0.4080 +677 8165 0.4790 +677 8570 0.5150 +677 8870 0.4350 +677 9261 0.9830 +677 11340 0.5420 +677 22894 0.5920 +677 23016 0.5360 +677 23019 0.7720 +677 23049 0.6320 +677 23404 0.8110 +677 24149 0.4710 +677 29883 0.6500 +677 51010 0.5510 +677 51013 0.5910 +677 54464 0.8490 +677 54512 0.5190 +677 55657 0.4730 +677 55802 0.6640 +677 56915 0.5530 +677 57472 0.5230 +677 118460 0.5340 +677 167227 0.9290 +678 1655 0.4020 +678 1656 0.4490 +678 1994 0.4530 +678 2107 0.4780 +678 2597 0.4540 +678 3184 0.4940 +678 3190 0.4150 +678 4691 0.4630 +678 5725 0.4350 +678 6135 0.4250 +678 7514 0.4900 +678 7529 0.5410 +678 7531 0.5200 +678 7532 0.5950 +678 7533 0.5670 +678 7534 0.6640 +678 7538 0.5290 +678 8570 0.4130 +678 8870 0.4120 +678 9261 0.9260 +678 9337 0.6170 +678 9698 0.4180 +678 10767 0.4470 +678 10782 0.4220 +678 11171 0.4550 +678 23019 0.7590 +678 24149 0.6700 +678 26986 0.4990 +678 29883 0.7840 +678 51114 0.9120 +678 51125 0.9180 +678 51201 0.4700 +678 51304 0.4180 +678 54432 0.4160 +678 54464 0.4280 +678 54542 0.4140 +678 54766 0.6330 +678 60468 0.4010 +678 64429 0.4390 +678 79699 0.4170 +678 167227 0.4260 +678 246175 0.6420 +678 341883 0.6830 +680 695 0.5110 +680 781 0.4590 +680 885 0.6450 +680 886 0.5050 +680 887 0.4940 +680 1906 0.5780 +680 1907 0.5140 +680 1908 0.5480 +680 1909 0.5600 +680 1910 0.4150 +680 2147 0.5070 +680 2149 0.4150 +680 2150 0.4050 +680 2520 0.4030 +680 2559 0.4360 +680 2693 0.4690 +680 2776 0.4460 +680 2837 0.4310 +680 2847 0.4540 +680 2862 0.4380 +680 2869 0.5290 +680 2922 0.9970 +680 2925 0.9420 +680 3814 0.5760 +680 3827 0.5810 +680 4233 0.4330 +680 4295 0.7000 +680 4828 0.9890 +680 4829 0.9410 +680 4922 0.7880 +680 4923 0.4650 +680 5330 0.5240 +680 5331 0.5260 +680 5367 0.6210 +680 5832 0.4730 +680 6324 0.4850 +680 6344 0.4290 +680 7200 0.5760 +680 7201 0.4810 +680 7204 0.5230 +680 7432 0.4870 +680 8406 0.8420 +680 8997 0.5110 +680 9002 0.4010 +680 10008 0.4160 +680 10316 0.4460 +680 10800 0.4500 +680 10874 0.6080 +680 10887 0.4420 +680 10911 0.4990 +680 23171 0.4890 +680 23236 0.5240 +680 23620 0.4490 +680 51738 0.5710 +680 55800 0.5220 +680 55879 0.5150 +680 56923 0.4920 +680 57105 0.4250 +680 60675 0.5540 +680 84432 0.5530 +680 84539 0.4190 +680 84634 0.4130 +680 94121 0.5080 +680 94235 0.5500 +680 115557 0.5230 +680 128674 0.4270 +680 129521 0.5940 +680 151887 0.9170 +680 221477 0.8100 +680 257313 0.5030 +680 387129 0.4580 +680 594857 0.5860 +682 760 0.5340 +682 762 0.4890 +682 768 0.6590 +682 770 0.4080 +682 819 0.5280 +682 821 0.4800 +682 857 0.9960 +682 920 0.4490 +682 921 0.4080 +682 925 0.4490 +682 928 0.5430 +682 960 0.9850 +682 961 0.4320 +682 966 0.5380 +682 967 0.5030 +682 975 0.6800 +682 977 0.4740 +682 999 0.4550 +682 1015 0.6750 +682 1017 0.6350 +682 1116 0.4590 +682 1173 0.4010 +682 1386 0.4960 +682 1401 0.5540 +682 1499 0.4110 +682 1508 0.4840 +682 1514 0.7060 +682 1604 0.4030 +682 1636 0.4750 +682 1774 0.5930 +682 1800 0.4100 +682 1803 0.9190 +682 1956 0.7440 +682 2022 0.5100 +682 2064 0.6120 +682 2086 0.4290 +682 2247 0.5500 +682 2335 0.4510 +682 2475 0.4120 +682 2597 0.4890 +682 2817 0.5100 +682 2885 0.4580 +682 2993 0.6880 +682 2994 0.5650 +682 2995 0.4790 +682 3091 0.4380 +682 3190 0.7060 +682 3265 0.4230 +682 3309 0.7280 +682 3312 0.4310 +682 3320 0.6360 +682 3326 0.6610 +682 3383 0.6060 +682 3458 0.4650 +682 3553 0.4840 +682 3558 0.4010 +682 3569 0.6910 +682 3576 0.4290 +682 3586 0.4730 +682 3655 0.6050 +682 3661 0.5400 +682 3675 0.6490 +682 3684 0.5160 +682 3688 0.9570 +682 3845 0.7620 +682 3897 0.6640 +682 3958 0.7020 +682 4064 0.4210 +682 4072 0.6350 +682 4099 0.5440 +682 4312 0.9770 +682 4313 0.6630 +682 4314 0.4770 +682 4316 0.4230 +682 4318 0.7710 +682 4323 0.7400 +682 4324 0.4190 +682 4609 0.4530 +682 4684 0.6380 +682 4790 0.4370 +682 4893 0.5570 +682 4907 0.5340 +682 5045 0.6590 +682 5478 0.9990 +682 5479 0.9960 +682 5480 0.6990 +682 5499 0.4360 +682 5595 0.6050 +682 5663 0.5840 +682 5743 0.4820 +682 5972 0.4380 +682 6005 0.4290 +682 6006 0.6960 +682 6007 0.6690 +682 6275 0.5770 +682 6280 0.7000 +682 6347 0.4610 +682 6382 0.6200 +682 6400 0.5300 +682 6401 0.6180 +682 6510 0.6120 +682 6513 0.9000 +682 6520 0.9500 +682 6566 0.9990 +682 6624 0.6010 +682 6693 0.9530 +682 6696 0.5290 +682 6714 0.4860 +682 6774 0.4340 +682 6868 0.4440 +682 7033 0.4490 +682 7037 0.5550 +682 7056 0.4280 +682 7076 0.4690 +682 7077 0.4510 +682 7099 0.6020 +682 7113 0.8370 +682 7124 0.4820 +682 7157 0.7270 +682 7189 0.6370 +682 7316 0.5510 +682 7348 0.4340 +682 8140 0.6300 +682 8482 0.5210 +682 8506 0.4590 +682 8795 0.4490 +682 8829 0.7160 +682 9040 0.4530 +682 9056 0.5280 +682 9057 0.5400 +682 9122 0.9730 +682 9123 0.9990 +682 9194 0.8950 +682 9429 0.8410 +682 10332 0.6620 +682 10399 0.4180 +682 10514 0.4920 +682 10894 0.8980 +682 10956 0.5450 +682 10972 0.6100 +682 11136 0.4990 +682 23385 0.6150 +682 23428 0.5270 +682 23539 0.9970 +682 23657 0.5800 +682 23759 0.9720 +682 23770 0.4500 +682 24148 0.4470 +682 26263 0.4240 +682 27020 0.7130 +682 28985 0.5920 +682 30816 0.4290 +682 30835 0.6280 +682 51107 0.5640 +682 51185 0.6790 +682 51206 0.8530 +682 51293 0.4350 +682 51361 0.5060 +682 51548 0.4160 +682 54103 0.6380 +682 55113 0.9540 +682 55851 0.6810 +682 55966 0.9300 +682 56301 0.5010 +682 56649 0.4600 +682 59272 0.9680 +682 64127 0.4280 +682 83639 0.4400 +682 84447 0.4500 +682 115861 0.6670 +682 133418 0.7700 +682 151473 0.4730 +682 201232 0.5010 +682 401994 0.6420 +682 405754 0.4370 +682 100133941 0.4660 +683 928 0.4630 +683 952 0.9200 +683 1043 0.5100 +683 1087 0.4070 +683 1368 0.4010 +683 2209 0.4980 +683 2350 0.4570 +683 2822 0.4100 +683 3690 0.5320 +683 4045 0.4160 +683 4062 0.4430 +683 4241 0.4060 +683 4837 0.9310 +683 4860 0.9300 +683 4907 0.4330 +683 4978 0.4160 +683 5020 0.5620 +683 5067 0.4060 +683 5167 0.9300 +683 5169 0.9180 +683 5592 0.9020 +683 5593 0.9020 +683 7007 0.4160 +683 7070 0.5120 +683 7226 0.4370 +683 7512 0.4010 +683 8000 0.4430 +683 8434 0.4210 +683 8875 0.5080 +683 8876 0.4580 +683 10135 0.9600 +683 10232 0.4180 +683 10942 0.6370 +683 11341 0.7410 +683 22933 0.9260 +683 23057 0.9510 +683 23098 0.5710 +683 23408 0.9270 +683 23409 0.9270 +683 23410 0.9340 +683 23411 0.9370 +683 23475 0.4180 +683 23530 0.9090 +683 50863 0.4160 +683 51547 0.9250 +683 51548 0.9280 +683 53942 0.4060 +683 54981 0.5200 +683 55191 0.9150 +683 56985 0.4280 +683 64802 0.9600 +683 79717 0.4220 +683 80328 0.4090 +683 83594 0.9150 +683 83639 0.4060 +683 84561 0.6040 +683 84628 0.4240 +683 93100 0.5520 +683 133686 0.9150 +683 135228 0.4380 +683 137797 0.4050 +683 146183 0.4050 +683 152330 0.4060 +683 154064 0.4090 +683 171169 0.4570 +683 257194 0.4240 +683 266727 0.4160 +683 338328 0.4020 +683 349565 0.5680 +683 353091 0.4090 +683 390243 0.4270 +683 442191 0.6180 +683 102723407 0.4680 +684 819 0.7280 +684 834 0.4040 +684 920 0.7880 +684 925 0.5250 +684 930 0.4670 +684 941 0.4530 +684 942 0.5110 +684 958 0.4170 +684 975 0.5400 +684 978 0.4070 +684 1234 0.5840 +684 1236 0.4130 +684 1470 0.5940 +684 1653 0.4410 +684 2323 0.4080 +684 2537 0.7440 +684 2633 0.5340 +684 3105 0.5930 +684 3106 0.4710 +684 3383 0.5310 +684 3384 0.4720 +684 3394 0.4210 +684 3428 0.5630 +684 3429 0.6140 +684 3430 0.8190 +684 3433 0.6470 +684 3434 0.7090 +684 3437 0.7170 +684 3439 0.6750 +684 3440 0.6330 +684 3441 0.5760 +684 3442 0.5470 +684 3443 0.5390 +684 3444 0.5370 +684 3445 0.5510 +684 3446 0.5370 +684 3448 0.5780 +684 3449 0.5440 +684 3451 0.5810 +684 3452 0.5360 +684 3454 0.5280 +684 3455 0.4210 +684 3456 0.5990 +684 3458 0.4800 +684 3563 0.4080 +684 3569 0.4230 +684 3620 0.4350 +684 3627 0.5490 +684 3659 0.5100 +684 3661 0.5180 +684 3665 0.7610 +684 3669 0.5700 +684 3682 0.4110 +684 3684 0.5530 +684 3687 0.6080 +684 3700 0.5070 +684 3958 0.6650 +684 4061 0.5390 +684 4343 0.4880 +684 4599 0.8040 +684 4600 0.8010 +684 4938 0.7790 +684 4939 0.7770 +684 4940 0.6530 +684 5610 0.6850 +684 5696 0.6080 +684 5698 0.4510 +684 5738 0.4740 +684 5788 0.5680 +684 6041 0.5450 +684 6401 0.4680 +684 6614 0.4380 +684 6693 0.4360 +684 6737 0.4560 +684 6772 0.8130 +684 6773 0.8090 +684 7037 0.4260 +684 7098 0.4800 +684 7124 0.4630 +684 7185 0.4720 +684 7187 0.4970 +684 7189 0.6120 +684 7305 0.4690 +684 7318 0.4090 +684 7706 0.4570 +684 7755 0.4080 +684 7852 0.4990 +684 8519 0.8100 +684 8638 0.6650 +684 8737 0.4530 +684 8763 0.4160 +684 8945 0.7540 +684 9246 0.6880 +684 9368 0.4850 +684 9582 0.4050 +684 9636 0.8450 +684 9730 0.4350 +684 9912 0.6790 +684 10045 0.5510 +684 10241 0.5780 +684 10346 0.6460 +684 10379 0.8150 +684 10410 0.6990 +684 10561 0.7080 +684 10581 0.6150 +684 10955 0.5910 +684 10964 0.6840 +684 11035 0.4800 +684 11274 0.6710 +684 23547 0.9950 +684 23586 0.7950 +684 24138 0.4330 +684 25939 0.8960 +684 27246 0.6390 +684 27350 0.4320 +684 29110 0.4070 +684 30816 0.5140 +684 50852 0.5770 +684 51191 0.6720 +684 51284 0.5590 +684 54106 0.4820 +684 54739 0.6960 +684 54809 0.4150 +684 55008 0.5160 +684 55281 0.4200 +684 55601 0.5530 +684 56829 0.5030 +684 57085 0.5930 +684 57506 0.4790 +684 60489 0.9430 +684 64108 0.6200 +684 64127 0.4780 +684 64135 0.6780 +684 64761 0.4250 +684 79132 0.5330 +684 79924 0.4080 +684 80830 0.4360 +684 81622 0.4630 +684 83483 0.7520 +684 83666 0.5100 +684 85363 0.8550 +684 90865 0.4120 +684 91543 0.7540 +684 91607 0.4750 +684 93978 0.4590 +684 94240 0.4100 +684 113277 0.4100 +684 114836 0.4530 +684 115004 0.4490 +684 115362 0.4620 +684 128866 0.4180 +684 129607 0.4680 +684 140564 0.4940 +684 164668 0.4460 +684 170482 0.5780 +684 200315 0.4580 +684 200316 0.6290 +684 220972 0.9780 +684 256987 0.6510 +684 353514 0.4800 +684 375790 0.8890 +684 619189 0.4430 +685 867 0.6400 +685 958 0.4230 +685 1081 0.5480 +685 1173 0.4990 +685 1175 0.4990 +685 1211 0.4990 +685 1435 0.4010 +685 1445 0.5160 +685 1601 0.4990 +685 1729 0.4990 +685 1839 0.9350 +685 1950 0.9730 +685 1956 0.9990 +685 1967 0.4280 +685 2060 0.5770 +685 2064 0.9250 +685 2065 0.9750 +685 2066 0.9990 +685 2069 0.8220 +685 2100 0.4950 +685 2252 0.4260 +685 2353 0.4660 +685 2492 0.5920 +685 2534 0.4520 +685 2549 0.4730 +685 2554 0.4990 +685 2560 0.4990 +685 2561 0.5040 +685 2562 0.4990 +685 2566 0.4990 +685 2567 0.5000 +685 2641 0.4360 +685 2885 0.5920 +685 3084 0.9090 +685 3265 0.5350 +685 3267 0.4990 +685 3320 0.5350 +685 3630 0.4830 +685 3845 0.6210 +685 3949 0.4990 +685 3952 0.4490 +685 3973 0.7810 +685 4036 0.5000 +685 4145 0.4990 +685 4760 0.4780 +685 4825 0.4310 +685 4893 0.5610 +685 5078 0.4420 +685 5290 0.5000 +685 5295 0.4030 +685 5307 0.4240 +685 5335 0.5790 +685 5747 0.4600 +685 5753 0.5210 +685 5774 0.4130 +685 5781 0.4600 +685 5782 0.4990 +685 5796 0.4160 +685 5806 0.4720 +685 5829 0.5130 +685 6233 0.4990 +685 6455 0.5130 +685 6456 0.5010 +685 6457 0.5000 +685 6464 0.5940 +685 6624 0.4290 +685 6654 0.4940 +685 6714 0.6050 +685 6770 0.4700 +685 6844 0.5050 +685 6845 0.4990 +685 6868 0.7440 +685 7039 0.7280 +685 7130 0.5390 +685 7311 0.4990 +685 7314 0.4990 +685 7316 0.5090 +685 7525 0.4030 +685 8027 0.4990 +685 8301 0.5050 +685 8673 0.5280 +685 8874 0.5130 +685 9146 0.4990 +685 9185 0.4990 +685 9341 0.5050 +685 9542 0.7890 +685 9892 0.5050 +685 10252 0.4990 +685 10253 0.4990 +685 10254 0.5000 +685 10718 0.7400 +685 11140 0.4990 +685 22905 0.4990 +685 26018 0.4390 +685 26119 0.4990 +685 29924 0.4990 +685 29926 0.4590 +685 29978 0.4990 +685 30011 0.5100 +685 50674 0.5790 +685 51072 0.4990 +685 51129 0.5120 +685 55824 0.4990 +685 55879 0.4990 +685 55914 0.5340 +685 58513 0.5390 +685 84504 0.4110 +685 93659 0.5480 +685 114335 0.6450 +685 134147 0.6400 +685 145957 0.7780 +685 255324 0.9520 +687 958 0.4300 +687 1051 0.4500 +687 1052 0.4900 +687 1316 0.5190 +687 1381 0.4250 +687 1543 0.4490 +687 1551 0.4550 +687 1831 0.5390 +687 1915 0.4740 +687 2289 0.6420 +687 2308 0.4510 +687 2353 0.4570 +687 2623 0.4620 +687 3484 0.4750 +687 3725 0.5810 +687 3727 0.5260 +687 5241 0.8980 +687 5460 0.4350 +687 5617 0.4090 +687 6926 0.4740 +687 7067 0.4180 +687 7157 0.4050 +687 9414 0.4300 +687 10587 0.4230 +687 10628 0.4920 +687 25942 0.9110 +687 28959 0.4280 +687 54541 0.4090 +687 55365 0.4200 +687 56265 0.4110 +687 79727 0.4050 +687 80036 0.6660 +687 201456 0.4040 +687 388585 0.4220 +688 999 0.4270 +688 1044 0.4630 +688 1045 0.5240 +688 1050 0.9410 +688 1051 0.9670 +688 1052 0.9500 +688 1054 0.4830 +688 1375 0.7130 +688 1387 0.7070 +688 1499 0.7830 +688 1871 0.4600 +688 1879 0.6310 +688 1956 0.4050 +688 1958 0.5280 +688 1999 0.5240 +688 2033 0.9310 +688 2099 0.5480 +688 2100 0.8810 +688 2103 0.8450 +688 2122 0.4330 +688 2494 0.4440 +688 2597 0.4110 +688 2624 0.4310 +688 2626 0.4430 +688 2627 0.5570 +688 2932 0.6610 +688 2957 0.4490 +688 3054 0.4040 +688 3065 0.7110 +688 3066 0.4640 +688 3091 0.4240 +688 3097 0.5180 +688 3164 0.4890 +688 3169 0.4500 +688 3170 0.4100 +688 3664 0.4050 +688 3725 0.8600 +688 3845 0.4030 +688 4087 0.5850 +688 4088 0.5590 +688 4089 0.5720 +688 4609 0.5410 +688 4628 0.7020 +688 4664 0.4250 +688 4790 0.7950 +688 4792 0.4840 +688 5154 0.6600 +688 5460 0.5750 +688 5465 0.4700 +688 5467 0.7230 +688 5468 0.9010 +688 5885 0.4170 +688 5914 0.9380 +688 5927 0.4260 +688 6256 0.7970 +688 6613 0.4730 +688 6657 0.5760 +688 6659 0.4480 +688 6662 0.4820 +688 6720 0.5110 +688 6774 0.4490 +688 6908 0.4440 +688 6926 0.5600 +688 7022 0.4190 +688 7157 0.7620 +688 7329 0.4190 +688 7341 0.7580 +688 7351 0.4850 +688 7352 0.5830 +688 7706 0.5940 +688 8295 0.4560 +688 8314 0.5420 +688 8433 0.4450 +688 8549 0.4150 +688 8626 0.5030 +688 8850 0.4960 +688 9519 0.4150 +688 9611 0.6510 +688 9612 0.4130 +688 9960 0.4260 +688 9982 0.4950 +688 10413 0.5530 +688 10464 0.7170 +688 11059 0.9140 +688 23476 0.4410 +688 25937 0.5910 +688 29842 0.5410 +688 55294 0.9400 +688 55885 0.4530 +688 57167 0.5180 +688 64321 0.4160 +688 64750 0.6540 +688 79923 0.6240 +688 89941 0.4130 +688 91464 0.4470 +688 93649 0.5170 +688 126129 0.6980 +688 387082 0.6380 +688 440145 0.4010 +689 708 0.4270 +689 1499 0.6210 +689 1654 0.4760 +689 1656 0.4240 +689 1660 0.6840 +689 1915 0.6770 +689 1936 0.5200 +689 1937 0.7720 +689 1938 0.5900 +689 1965 0.4890 +689 1968 0.4650 +689 1973 0.5310 +689 1981 0.4650 +689 1984 0.5190 +689 2079 0.4180 +689 2091 0.4640 +689 2197 0.7140 +689 2332 0.4200 +689 2521 0.5230 +689 2597 0.4730 +689 2697 0.4900 +689 3015 0.4110 +689 3094 0.4090 +689 3151 0.4630 +689 3178 0.5220 +689 3181 0.4200 +689 3183 0.4870 +689 3190 0.4090 +689 3301 0.4020 +689 3308 0.5950 +689 3312 0.5980 +689 3313 0.4130 +689 3320 0.4820 +689 3326 0.4760 +689 3430 0.4190 +689 3615 0.5580 +689 3646 0.4660 +689 3921 0.7550 +689 4076 0.4370 +689 4085 0.4800 +689 4172 0.4130 +689 4637 0.4530 +689 4666 0.9990 +689 4676 0.4320 +689 4736 0.9790 +689 4809 0.6070 +689 4869 0.5540 +689 4904 0.6110 +689 5094 0.4540 +689 5250 0.4950 +689 5469 0.5100 +689 5478 0.5050 +689 5610 0.4430 +689 5700 0.4360 +689 5901 0.4860 +689 5902 0.5280 +689 5903 0.4570 +689 5931 0.4010 +689 5935 0.4800 +689 6122 0.9570 +689 6123 0.4410 +689 6124 0.9650 +689 6125 0.9540 +689 6128 0.9870 +689 6129 0.9640 +689 6130 0.9750 +689 6132 0.9820 +689 6133 0.9550 +689 6135 0.9810 +689 6136 0.9560 +689 6137 0.9450 +689 6138 0.9510 +689 6139 0.9650 +689 6141 0.9810 +689 6142 0.9820 +689 6143 0.9790 +689 6144 0.9740 +689 6146 0.9340 +689 6147 0.9840 +689 6152 0.9840 +689 6154 0.9580 +689 6155 0.9590 +689 6156 0.9930 +689 6157 0.9350 +689 6158 0.9420 +689 6159 0.9730 +689 6160 0.9970 +689 6161 0.9840 +689 6164 0.9490 +689 6165 0.9510 +689 6166 0.9330 +689 6167 0.8960 +689 6168 0.9620 +689 6169 0.9730 +689 6170 0.9630 +689 6171 0.6380 +689 6173 0.9610 +689 6175 0.9550 +689 6176 0.8170 +689 6181 0.7220 +689 6187 0.7620 +689 6188 0.8060 +689 6189 0.9120 +689 6191 0.7310 +689 6193 0.8470 +689 6194 0.8050 +689 6201 0.7500 +689 6202 0.9000 +689 6203 0.6540 +689 6204 0.7330 +689 6205 0.7860 +689 6206 0.8720 +689 6207 0.8800 +689 6208 0.8290 +689 6209 0.8700 +689 6210 0.7250 +689 6217 0.8130 +689 6218 0.7540 +689 6222 0.7870 +689 6223 0.9070 +689 6224 0.6680 +689 6227 0.8650 +689 6228 0.8730 +689 6229 0.8970 +689 6230 0.8600 +689 6231 0.8550 +689 6232 0.7580 +689 6233 0.6920 +689 6234 0.8450 +689 6235 0.8810 +689 6427 0.4660 +689 6428 0.4280 +689 6431 0.4350 +689 6449 0.4060 +689 6500 0.5020 +689 6633 0.4530 +689 6637 0.4300 +689 6726 0.4520 +689 6727 0.5670 +689 6728 0.8640 +689 6729 0.8410 +689 6730 0.8430 +689 7167 0.4240 +689 7170 0.4180 +689 7178 0.5560 +689 7184 0.4220 +689 7203 0.4180 +689 7311 0.8910 +689 7415 0.4400 +689 7458 0.5600 +689 7555 0.4330 +689 8148 0.4410 +689 8662 0.4020 +689 8664 0.5320 +689 8665 0.5930 +689 8666 0.4030 +689 8667 0.9280 +689 8815 0.4130 +689 9045 0.9650 +689 9349 0.9550 +689 9557 0.4130 +689 9631 0.7720 +689 9688 0.8150 +689 9732 0.4540 +689 9782 0.4690 +689 9804 0.4700 +689 9898 0.4800 +689 10399 0.7450 +689 10480 0.7170 +689 10492 0.4210 +689 10514 0.4160 +689 10557 0.4220 +689 10575 0.4400 +689 10657 0.4190 +689 10728 0.6320 +689 10808 0.5790 +689 11051 0.4740 +689 11171 0.4290 +689 11224 0.9670 +689 11338 0.4030 +689 22858 0.4070 +689 23019 0.4030 +689 23148 0.9190 +689 23165 0.7940 +689 23185 0.5740 +689 23367 0.5030 +689 23435 0.4160 +689 23521 0.9460 +689 25873 0.9780 +689 26135 0.6290 +689 26156 0.4780 +689 26986 0.6300 +689 27000 0.5420 +689 27316 0.4860 +689 27335 0.6310 +689 28998 0.5220 +689 51082 0.4780 +689 51121 0.5150 +689 51149 0.4460 +689 51202 0.4380 +689 51386 0.4410 +689 51602 0.4050 +689 51637 0.5250 +689 53371 0.4710 +689 54433 0.4040 +689 55505 0.4170 +689 55651 0.5880 +689 55787 0.4580 +689 55854 0.4790 +689 56647 0.4230 +689 56950 0.4870 +689 57532 0.5590 +689 65003 0.4160 +689 79036 0.4400 +689 79065 0.5170 +689 79829 0.4510 +689 80145 0.4780 +689 81669 0.4290 +689 84220 0.4180 +689 91408 0.7470 +689 91875 0.8210 +689 116832 0.4220 +689 140801 0.5690 +689 200081 0.5090 +689 203068 0.8890 +689 221937 0.5390 +689 285855 0.5180 +689 342538 0.9920 +689 347487 0.4090 +689 387129 0.4740 +689 645051 0.4270 +689 645073 0.4270 +689 653489 0.4260 +689 729396 0.4270 +689 729422 0.4270 +689 729428 0.4270 +689 729431 0.4270 +689 729442 0.4270 +689 729447 0.4270 +689 100008586 0.4270 +689 100132399 0.4270 +689 100505478 0.4730 +689 100526842 0.9030 +689 102724473 0.4270 +694 2309 0.7700 +694 3276 0.7120 +694 9337 0.8570 +694 29883 0.9370 +695 834 0.7030 +695 836 0.4390 +695 846 0.5630 +695 857 0.6090 +695 867 0.8510 +695 885 0.5830 +695 886 0.5050 +695 887 0.5050 +695 916 0.4340 +695 919 0.4740 +695 920 0.6570 +695 921 0.7370 +695 925 0.5570 +695 930 0.8870 +695 931 0.5540 +695 933 0.7090 +695 939 0.5010 +695 940 0.4440 +695 941 0.5180 +695 942 0.6160 +695 945 0.4710 +695 951 0.4690 +695 952 0.5920 +695 958 0.6600 +695 959 0.6370 +695 962 0.4660 +695 963 0.6510 +695 969 0.5170 +695 971 0.5460 +695 973 0.9550 +695 974 0.9650 +695 1043 0.6120 +695 1128 0.4990 +695 1131 0.4990 +695 1133 0.4990 +695 1147 0.9170 +695 1230 0.4230 +695 1236 0.4020 +695 1241 0.5370 +695 1380 0.5410 +695 1439 0.5020 +695 1445 0.5090 +695 1493 0.4830 +695 1499 0.6160 +695 1520 0.4940 +695 1536 0.6330 +695 1678 0.5190 +695 1794 0.5010 +695 1820 0.8350 +695 1821 0.5810 +695 1902 0.5230 +695 1906 0.5500 +695 1907 0.4990 +695 1908 0.5010 +695 1909 0.5230 +695 1910 0.5470 +695 1956 0.4490 +695 2042 0.4490 +695 2147 0.5800 +695 2149 0.6050 +695 2150 0.5220 +695 2151 0.5220 +695 2157 0.4100 +695 2207 0.7970 +695 2208 0.4060 +695 2212 0.5080 +695 2213 0.5960 +695 2268 0.4200 +695 2357 0.4560 +695 2358 0.5670 +695 2475 0.5410 +695 2520 0.4990 +695 2533 0.6100 +695 2534 0.8760 +695 2597 0.4260 +695 2641 0.5300 +695 2642 0.4990 +695 2688 0.4110 +695 2693 0.4990 +695 2767 0.5720 +695 2768 0.8400 +695 2769 0.5670 +695 2776 0.8180 +695 2782 0.6920 +695 2783 0.5730 +695 2784 0.5570 +695 2785 0.4990 +695 2786 0.5260 +695 2787 0.5170 +695 2788 0.5170 +695 2790 0.5070 +695 2791 0.5270 +695 2792 0.5110 +695 2793 0.5510 +695 2796 0.5120 +695 2797 0.4990 +695 2798 0.4990 +695 2828 0.5140 +695 2829 0.5680 +695 2837 0.4990 +695 2840 0.5130 +695 2846 0.5330 +695 2847 0.5060 +695 2862 0.4990 +695 2863 0.5160 +695 2864 0.5070 +695 2865 0.5510 +695 2867 0.5410 +695 2885 0.9840 +695 2911 0.5470 +695 2915 0.5470 +695 2922 0.5340 +695 2925 0.5260 +695 2969 0.9780 +695 3055 0.7590 +695 3059 0.5570 +695 3060 0.5090 +695 3061 0.4990 +695 3062 0.4990 +695 3071 0.6910 +695 3133 0.5860 +695 3265 0.6100 +695 3269 0.5190 +695 3303 0.4580 +695 3304 0.4510 +695 3320 0.7160 +695 3326 0.6770 +695 3356 0.5140 +695 3357 0.5170 +695 3358 0.5200 +695 3394 0.5870 +695 3440 0.5120 +695 3456 0.5930 +695 3458 0.6690 +695 3543 0.7470 +695 3551 0.9200 +695 3553 0.5330 +695 3558 0.4770 +695 3561 0.5590 +695 3565 0.4490 +695 3569 0.5680 +695 3575 0.4220 +695 3586 0.4880 +695 3587 0.4270 +695 3635 0.7340 +695 3636 0.5080 +695 3654 0.9150 +695 3662 0.5710 +695 3676 0.4230 +695 3684 0.5210 +695 3687 0.4200 +695 3689 0.5580 +695 3702 0.4910 +695 3708 0.6210 +695 3709 0.7120 +695 3710 0.6140 +695 3716 0.4570 +695 3725 0.4250 +695 3814 0.4990 +695 3815 0.5240 +695 3822 0.5250 +695 3824 0.5480 +695 3827 0.5270 +695 3845 0.5350 +695 3936 0.4420 +695 3937 0.9990 +695 4033 0.5310 +695 4064 0.5960 +695 4066 0.4070 +695 4067 0.9970 +695 4068 0.5330 +695 4170 0.5410 +695 4193 0.5250 +695 4295 0.4990 +695 4332 0.4080 +695 4352 0.5400 +695 4540 0.4330 +695 4609 0.5650 +695 4673 0.4730 +695 4688 0.5630 +695 4689 0.6310 +695 4690 0.7110 +695 4772 0.4790 +695 4790 0.7590 +695 4791 0.4270 +695 4792 0.6300 +695 4828 0.5050 +695 4829 0.4990 +695 4851 0.4680 +695 4893 0.4630 +695 4922 0.5050 +695 4923 0.5430 +695 4935 0.5120 +695 5020 0.4990 +695 5021 0.5040 +695 5028 0.5220 +695 5029 0.4990 +695 5031 0.5040 +695 5032 0.5080 +695 5079 0.4930 +695 5133 0.4230 +695 5238 0.4310 +695 5290 0.9460 +695 5291 0.9430 +695 5293 0.9780 +695 5294 0.6650 +695 5295 0.9470 +695 5296 0.9250 +695 5333 0.5970 +695 5335 0.9500 +695 5336 0.9990 +695 5341 0.9290 +695 5367 0.4990 +695 5514 0.5350 +695 5579 0.7750 +695 5588 0.6260 +695 5610 0.4270 +695 5724 0.6000 +695 5728 0.5130 +695 5731 0.4990 +695 5737 0.4990 +695 5777 0.9530 +695 5781 0.5160 +695 5788 0.6850 +695 5879 0.6150 +695 5880 0.6770 +695 5896 0.4250 +695 5971 0.4180 +695 6039 0.4370 +695 6198 0.4290 +695 6282 0.5100 +695 6288 0.4990 +695 6348 0.4630 +695 6351 0.4190 +695 6368 0.5480 +695 6375 0.5730 +695 6387 0.5050 +695 6402 0.4360 +695 6464 0.7590 +695 6654 0.5480 +695 6688 0.6840 +695 6689 0.4070 +695 6693 0.5350 +695 6772 0.4730 +695 6774 0.5890 +695 6776 0.8500 +695 6777 0.4920 +695 6778 0.6420 +695 6846 0.5600 +695 6850 0.9990 +695 6863 0.5280 +695 6865 0.4990 +695 6869 0.5110 +695 6870 0.4990 +695 6915 0.5230 +695 7006 0.9160 +695 7096 0.4600 +695 7097 0.6060 +695 7098 0.4380 +695 7099 0.8310 +695 7114 0.4200 +695 7124 0.5930 +695 7128 0.4810 +695 7157 0.6540 +695 7186 0.9150 +695 7187 0.9390 +695 7189 0.7860 +695 7200 0.4990 +695 7201 0.4990 +695 7294 0.4890 +695 7305 0.7680 +695 7409 0.9960 +695 7410 0.7430 +695 7430 0.4430 +695 7441 0.4460 +695 7450 0.4790 +695 7454 0.9760 +695 7456 0.5900 +695 7462 0.5340 +695 7535 0.7310 +695 7805 0.6720 +695 7852 0.6090 +695 8111 0.5470 +695 8115 0.5840 +695 8477 0.5660 +695 8503 0.9270 +695 8517 0.9320 +695 8600 0.4010 +695 8620 0.4990 +695 8751 0.5150 +695 8792 0.5030 +695 8915 0.5380 +695 8976 0.5510 +695 8993 0.4760 +695 9002 0.5220 +695 9087 0.4290 +695 9170 0.4990 +695 9265 0.4230 +695 9402 0.9290 +695 9447 0.5070 +695 9450 0.5590 +695 9467 0.9310 +695 9531 0.4440 +695 9623 0.5490 +695 9630 0.4990 +695 9937 0.4240 +695 10018 0.5510 +695 10161 0.5260 +695 10316 0.4990 +695 10320 0.6180 +695 10451 0.7400 +695 10563 0.4840 +695 10657 0.5980 +695 10672 0.6340 +695 10673 0.7780 +695 10681 0.5570 +695 10782 0.4020 +695 10787 0.4150 +695 10800 0.6080 +695 10874 0.4990 +695 10886 0.4990 +695 10887 0.4990 +695 10892 0.5460 +695 10911 0.5130 +695 11140 0.5360 +695 11151 0.4290 +695 11314 0.4260 +695 22806 0.4330 +695 22914 0.6130 +695 23162 0.4380 +695 23495 0.5750 +695 23533 0.4710 +695 23566 0.5100 +695 23620 0.4990 +695 23643 0.5580 +695 25998 0.9500 +695 26191 0.4440 +695 26228 0.6590 +695 26499 0.8680 +695 26517 0.4360 +695 27040 0.6900 +695 27071 0.6560 +695 27334 0.6140 +695 29126 0.5150 +695 29760 0.9990 +695 29851 0.4250 +695 29933 0.5770 +695 30011 0.7310 +695 51135 0.8940 +695 51185 0.8360 +695 51206 0.6060 +695 51266 0.4870 +695 51284 0.7720 +695 51311 0.7440 +695 51517 0.4140 +695 51738 0.5160 +695 51764 0.5310 +695 54106 0.9110 +695 54206 0.4200 +695 54209 0.6050 +695 54331 0.5460 +695 54440 0.5500 +695 54518 0.4450 +695 55970 0.5000 +695 56262 0.4860 +695 56413 0.5150 +695 56923 0.4990 +695 57105 0.5550 +695 57121 0.5580 +695 57162 0.4930 +695 57379 0.4930 +695 57705 0.5010 +695 59345 0.5820 +695 60675 0.5440 +695 64098 0.4230 +695 64106 0.4990 +695 64170 0.4500 +695 64407 0.4630 +695 64421 0.7390 +695 79577 0.4460 +695 79930 0.5430 +695 81704 0.4770 +695 83706 0.4920 +695 84109 0.5050 +695 84432 0.4990 +695 84433 0.7980 +695 84539 0.5130 +695 84634 0.4990 +695 89857 0.4220 +695 94233 0.5230 +695 94235 0.5250 +695 114548 0.8760 +695 114609 0.8680 +695 115650 0.6730 +695 118788 0.4430 +695 128674 0.4990 +695 129138 0.5100 +695 129521 0.4990 +695 140609 0.4630 +695 147179 0.4080 +695 148022 0.5490 +695 222545 0.5550 +695 257313 0.4990 +695 282618 0.5490 +695 283237 0.4870 +695 338557 0.5000 +695 347148 0.5230 +695 387129 0.5190 +695 390714 0.5710 +695 399665 0.4720 +695 594857 0.4990 +695 644150 0.4350 +695 653361 0.4400 +695 100423062 0.6180 +695 102723407 0.7470 +696 910 0.4370 +696 912 0.4060 +696 920 0.5270 +696 925 0.5630 +696 1149 0.5390 +696 1201 0.4330 +696 1446 0.6070 +696 1447 0.7980 +696 1448 0.5280 +696 2170 0.4450 +696 2224 0.4180 +696 2806 0.5390 +696 3105 0.4290 +696 3906 0.7520 +696 4057 0.6340 +696 4240 0.7890 +696 4974 0.4340 +696 5346 0.4730 +696 5493 0.8980 +696 7498 0.9980 +696 9081 0.4830 +696 11119 0.4300 +696 11120 0.4830 +696 57678 0.4510 +696 84376 0.4160 +696 132949 0.4680 +696 137964 0.4680 +696 143662 0.6990 +696 442862 0.4790 +699 701 0.9990 +699 825 0.4290 +699 839 0.4490 +699 842 0.4940 +699 891 0.9920 +699 898 0.5520 +699 899 0.6910 +699 900 0.4380 +699 943 0.4530 +699 983 0.9980 +699 988 0.4360 +699 990 0.8400 +699 991 0.9990 +699 993 0.6170 +699 994 0.4750 +699 995 0.9210 +699 996 0.8850 +699 1017 0.7350 +699 1018 0.4570 +699 1019 0.6850 +699 1021 0.5760 +699 1030 0.4060 +699 1033 0.8460 +699 1058 0.9690 +699 1059 0.4430 +699 1060 0.6200 +699 1062 0.9910 +699 1063 0.9870 +699 1104 0.4230 +699 1111 0.9460 +699 1163 0.7170 +699 1164 0.8050 +699 1263 0.5210 +699 1434 0.4770 +699 1452 0.4220 +699 1763 0.5890 +699 1788 0.4200 +699 1869 0.5500 +699 1870 0.4740 +699 1894 0.9470 +699 1978 0.4690 +699 2146 0.5140 +699 2177 0.5910 +699 2186 0.5940 +699 2237 0.6060 +699 2305 0.8250 +699 2491 0.8540 +699 2956 0.4520 +699 3014 0.4760 +699 3017 0.4030 +699 3021 0.7070 +699 3065 0.4220 +699 3070 0.6460 +699 3161 0.9090 +699 3312 0.4720 +699 3619 0.8640 +699 3667 0.4690 +699 3763 0.4530 +699 3767 0.5550 +699 3796 0.5010 +699 3832 0.9850 +699 3833 0.9160 +699 3835 0.6120 +699 3838 0.6440 +699 4001 0.4480 +699 4085 0.9990 +699 4171 0.5420 +699 4172 0.7000 +699 4173 0.7510 +699 4174 0.7160 +699 4175 0.6910 +699 4176 0.7960 +699 4288 0.9630 +699 4436 0.4890 +699 4605 0.7230 +699 4609 0.6080 +699 4678 0.4110 +699 4750 0.4310 +699 4751 0.9320 +699 4761 0.4220 +699 4926 0.4260 +699 4998 0.6940 +699 5347 0.9960 +699 5422 0.4030 +699 5424 0.4470 +699 5426 0.5070 +699 5427 0.5730 +699 5510 0.4100 +699 5518 0.5120 +699 5525 0.5650 +699 5526 0.4830 +699 5527 0.7000 +699 5528 0.5210 +699 5529 0.4780 +699 5557 0.5920 +699 5885 0.8320 +699 5888 0.8320 +699 5925 0.5180 +699 5982 0.4440 +699 5983 0.6000 +699 5984 0.8420 +699 5985 0.4720 +699 6195 0.9150 +699 6196 0.9090 +699 6197 0.9140 +699 6240 0.4420 +699 6241 0.8250 +699 6249 0.5160 +699 6464 0.4850 +699 6491 0.5570 +699 6502 0.4640 +699 6790 0.9710 +699 6795 0.6690 +699 6877 0.4100 +699 6907 0.4390 +699 7083 0.7070 +699 7112 0.4560 +699 7153 0.9820 +699 7157 0.6510 +699 7158 0.4200 +699 7272 0.9990 +699 7298 0.8460 +699 7443 0.4410 +699 7465 0.5540 +699 7756 0.5430 +699 8208 0.4260 +699 8243 0.4660 +699 8290 0.7350 +699 8317 0.8090 +699 8318 0.9300 +699 8337 0.7810 +699 8338 0.7800 +699 8348 0.5290 +699 8349 0.4670 +699 8356 0.7170 +699 8379 0.9980 +699 8438 0.7280 +699 8480 0.9390 +699 8546 0.5660 +699 8556 0.5190 +699 8697 0.9340 +699 8881 0.8860 +699 8900 0.6070 +699 8914 0.5400 +699 9055 0.7570 +699 9088 0.7650 +699 9126 0.6360 +699 9133 0.9980 +699 9134 0.5910 +699 9156 0.9290 +699 9183 0.8830 +699 9184 0.9990 +699 9212 0.9970 +699 9232 0.9550 +699 9319 0.7250 +699 9344 0.4610 +699 9493 0.9580 +699 9585 0.7410 +699 9700 0.9900 +699 9735 0.8260 +699 9768 0.8310 +699 9787 0.9860 +699 9793 0.7660 +699 9824 0.7660 +699 9833 0.9840 +699 9837 0.4450 +699 9918 0.6830 +699 9928 0.8170 +699 9985 0.7320 +699 10024 0.7290 +699 10036 0.4600 +699 10051 0.7880 +699 10112 0.9590 +699 10393 0.8090 +699 10403 0.9980 +699 10425 0.7610 +699 10459 0.9680 +699 10460 0.8110 +699 10592 0.6620 +699 10600 0.4320 +699 10606 0.4100 +699 10615 0.9340 +699 10635 0.7240 +699 10694 0.4720 +699 10717 0.5620 +699 10721 0.4090 +699 10726 0.8710 +699 10733 0.9260 +699 10735 0.5550 +699 10744 0.8270 +699 10769 0.5600 +699 10814 0.4240 +699 10926 0.6990 +699 10982 0.4390 +699 11004 0.9940 +699 11065 0.9540 +699 11113 0.4530 +699 11129 0.5520 +699 11130 0.9910 +699 11169 0.7020 +699 11200 0.5810 +699 11243 0.8330 +699 11339 0.8910 +699 22919 0.7780 +699 22924 0.4110 +699 22974 0.9580 +699 23047 0.4100 +699 23063 0.4740 +699 23122 0.4710 +699 23244 0.8130 +699 23310 0.4670 +699 23397 0.9330 +699 23421 0.5350 +699 23468 0.4460 +699 23594 0.5400 +699 23625 0.5380 +699 24137 0.9520 +699 25788 0.4590 +699 25936 0.8840 +699 26271 0.6650 +699 26586 0.8790 +699 27127 0.4030 +699 27152 0.6490 +699 27330 0.9000 +699 27436 0.6810 +699 29028 0.6510 +699 29089 0.7300 +699 29127 0.8430 +699 29128 0.6580 +699 29882 0.8170 +699 29945 0.8100 +699 51053 0.5210 +699 51143 0.4410 +699 51203 0.9370 +699 51343 0.7660 +699 51366 0.8150 +699 51433 0.8260 +699 51512 0.6700 +699 51514 0.8110 +699 51529 0.8260 +699 51659 0.5600 +699 51668 0.6020 +699 54069 0.4300 +699 54443 0.9170 +699 54478 0.7900 +699 54821 0.7120 +699 54892 0.7030 +699 54908 0.5390 +699 54962 0.4390 +699 55010 0.6190 +699 55055 0.8790 +699 55063 0.6030 +699 55143 0.9710 +699 55165 0.9280 +699 55166 0.5300 +699 55215 0.6840 +699 55247 0.6030 +699 55255 0.5130 +699 55320 0.6400 +699 55355 0.9280 +699 55388 0.6960 +699 55605 0.4370 +699 55632 0.4640 +699 55635 0.8310 +699 55723 0.6200 +699 55732 0.5010 +699 55755 0.4930 +699 55789 0.7210 +699 55839 0.7600 +699 55920 0.5720 +699 56992 0.9230 +699 57082 0.9990 +699 57122 0.4280 +699 57405 0.9670 +699 57477 0.4140 +699 57505 0.5150 +699 57551 0.5020 +699 57650 0.5330 +699 63922 0.5160 +699 63967 0.5890 +699 64105 0.6830 +699 64151 0.9760 +699 64682 0.8750 +699 64946 0.7030 +699 79003 0.9180 +699 79004 0.4060 +699 79019 0.7300 +699 79073 0.5140 +699 79075 0.5950 +699 79172 0.5580 +699 79444 0.5360 +699 79682 0.7580 +699 79733 0.7200 +699 79801 0.7370 +699 79823 0.4130 +699 79866 0.5730 +699 79915 0.4830 +699 79935 0.5600 +699 79980 0.9440 +699 80119 0.4630 +699 80152 0.6320 +699 81610 0.6810 +699 81620 0.6140 +699 81624 0.5600 +699 81669 0.4790 +699 81930 0.8650 +699 83461 0.8700 +699 83540 0.9940 +699 83879 0.6490 +699 83903 0.9380 +699 84057 0.8250 +699 84515 0.4400 +699 84643 0.6600 +699 84823 0.5630 +699 84930 0.6060 +699 85417 0.6280 +699 89839 0.5460 +699 90381 0.6880 +699 90417 0.6380 +699 91687 0.4990 +699 113115 0.5670 +699 113130 0.9330 +699 126520 0.4790 +699 128239 0.5500 +699 144455 0.6140 +699 146909 0.7910 +699 146956 0.4020 +699 147841 0.9260 +699 150468 0.8670 +699 151246 0.9020 +699 151648 0.9820 +699 152098 0.6030 +699 153768 0.4250 +699 157313 0.8900 +699 157570 0.8190 +699 166979 0.8390 +699 220134 0.8200 +699 221150 0.8390 +699 259266 0.9760 +699 283431 0.4780 +699 285643 0.5360 +699 348235 0.6340 +699 375061 0.5380 +699 378708 0.5060 +699 387103 0.6170 +699 401541 0.4510 +699 440093 0.7080 +699 440686 0.7080 +699 653604 0.7080 +699 653820 0.4680 +699 728637 0.4030 +699 729533 0.4300 +701 825 0.4010 +701 839 0.4470 +701 842 0.5140 +701 891 0.9980 +701 898 0.4670 +701 899 0.7260 +701 983 0.9990 +701 990 0.8030 +701 991 0.9990 +701 993 0.6460 +701 994 0.4900 +701 995 0.8090 +701 996 0.9990 +701 999 0.4060 +701 1017 0.6530 +701 1019 0.5620 +701 1021 0.5270 +701 1029 0.5230 +701 1033 0.8970 +701 1058 0.9850 +701 1059 0.4100 +701 1060 0.7700 +701 1062 0.9990 +701 1063 0.9990 +701 1104 0.4180 +701 1111 0.8760 +701 1163 0.6920 +701 1164 0.6790 +701 1263 0.6600 +701 1434 0.4670 +701 1616 0.4610 +701 1763 0.4740 +701 1778 0.5700 +701 1780 0.4990 +701 1781 0.5190 +701 1783 0.5530 +701 1788 0.4420 +701 1869 0.5590 +701 1894 0.8640 +701 1911 0.7350 +701 1912 0.7200 +701 2033 0.4350 +701 2048 0.4560 +701 2146 0.5520 +701 2175 0.5060 +701 2177 0.5840 +701 2178 0.4470 +701 2187 0.5080 +701 2189 0.4370 +701 2237 0.6220 +701 2305 0.9440 +701 2491 0.9050 +701 2956 0.4190 +701 3014 0.4500 +701 3017 0.4170 +701 3018 0.4100 +701 3021 0.6180 +701 3065 0.6070 +701 3066 0.5880 +701 3070 0.6660 +701 3161 0.8820 +701 3569 0.4670 +701 3619 0.9120 +701 3725 0.9140 +701 3796 0.7410 +701 3801 0.4360 +701 3832 0.9940 +701 3833 0.8620 +701 3834 0.4110 +701 3835 0.7090 +701 3838 0.5540 +701 4001 0.4510 +701 4085 0.9990 +701 4134 0.4570 +701 4139 0.4300 +701 4146 0.4460 +701 4171 0.5700 +701 4172 0.6540 +701 4173 0.6950 +701 4174 0.6010 +701 4175 0.6040 +701 4176 0.7920 +701 4193 0.5040 +701 4254 0.4080 +701 4288 0.9320 +701 4331 0.4570 +701 4436 0.5480 +701 4601 0.9940 +701 4605 0.6550 +701 4609 0.4340 +701 4751 0.9990 +701 4761 0.4260 +701 4926 0.6070 +701 4928 0.8330 +701 4998 0.6690 +701 5048 0.5300 +701 5111 0.4030 +701 5116 0.5050 +701 5347 0.9990 +701 5424 0.4390 +701 5426 0.5000 +701 5427 0.6120 +701 5501 0.6790 +701 5515 0.9970 +701 5516 0.5620 +701 5518 0.6500 +701 5519 0.5830 +701 5525 0.9800 +701 5526 0.8110 +701 5527 0.9600 +701 5528 0.9290 +701 5529 0.8090 +701 5557 0.5030 +701 5885 0.4730 +701 5888 0.9420 +701 5903 0.7520 +701 5905 0.6380 +701 5927 0.4170 +701 5983 0.5660 +701 5984 0.7480 +701 5985 0.4130 +701 6015 0.7220 +701 6045 0.7200 +701 6232 0.5160 +701 6233 0.6400 +701 6240 0.4120 +701 6241 0.9220 +701 6249 0.6740 +701 6396 0.6610 +701 6491 0.6350 +701 6500 0.4020 +701 6502 0.4880 +701 6599 0.4930 +701 6601 0.4470 +701 6623 0.5220 +701 6636 0.4820 +701 6637 0.4630 +701 6790 0.9240 +701 6795 0.7770 +701 6907 0.4400 +701 6941 0.4920 +701 7083 0.6520 +701 7153 0.9800 +701 7155 0.4020 +701 7157 0.7450 +701 7272 0.9910 +701 7283 0.4090 +701 7298 0.7200 +701 7311 0.5370 +701 7314 0.4990 +701 7316 0.5110 +701 7321 0.6210 +701 7324 0.5380 +701 7341 0.5230 +701 7465 0.5770 +701 7514 0.6160 +701 7703 0.7290 +701 7756 0.4890 +701 8243 0.4110 +701 8290 0.6120 +701 8317 0.6940 +701 8318 0.8170 +701 8340 0.4280 +701 8341 0.4170 +701 8342 0.4140 +701 8345 0.4350 +701 8347 0.4120 +701 8348 0.4270 +701 8349 0.5050 +701 8356 0.6280 +701 8379 0.9930 +701 8438 0.7450 +701 8454 0.6070 +701 8480 0.9350 +701 8535 0.7200 +701 8546 0.5540 +701 8556 0.4480 +701 8655 0.5610 +701 8697 0.9990 +701 8841 0.5430 +701 8850 0.7350 +701 8881 0.9990 +701 8900 0.8400 +701 8914 0.4860 +701 8970 0.4280 +701 9055 0.8930 +701 9088 0.6420 +701 9126 0.5880 +701 9133 0.9930 +701 9134 0.4860 +701 9156 0.8070 +701 9183 0.9280 +701 9184 0.9990 +701 9212 0.9990 +701 9232 0.9780 +701 9319 0.9280 +701 9344 0.4220 +701 9493 0.9260 +701 9577 0.7450 +701 9585 0.5370 +701 9587 0.8340 +701 9700 0.9890 +701 9702 0.6770 +701 9735 0.9210 +701 9768 0.8750 +701 9787 0.9810 +701 9790 0.4260 +701 9793 0.8230 +701 9824 0.7960 +701 9833 0.9530 +701 9837 0.6740 +701 9918 0.6750 +701 9928 0.8780 +701 9978 0.5310 +701 10024 0.7530 +701 10036 0.4580 +701 10051 0.7330 +701 10112 0.9770 +701 10336 0.5550 +701 10393 0.9990 +701 10403 0.9920 +701 10459 0.9260 +701 10460 0.9460 +701 10528 0.4680 +701 10535 0.4530 +701 10592 0.6680 +701 10615 0.9510 +701 10635 0.7470 +701 10717 0.5580 +701 10721 0.5080 +701 10726 0.6970 +701 10733 0.9350 +701 10744 0.9250 +701 10769 0.5500 +701 10814 0.4370 +701 10926 0.5040 +701 10982 0.4030 +701 11004 0.9910 +701 11065 0.9910 +701 11083 0.6010 +701 11113 0.4070 +701 11130 0.9960 +701 11169 0.6460 +701 11200 0.6040 +701 11243 0.7280 +701 11339 0.8370 +701 22897 0.4020 +701 22919 0.7130 +701 22920 0.4080 +701 22924 0.4720 +701 22933 0.5480 +701 22974 0.9360 +701 23122 0.7420 +701 23279 0.6030 +701 23310 0.4020 +701 23332 0.6880 +701 23397 0.9150 +701 23421 0.5800 +701 23492 0.7360 +701 23594 0.6110 +701 23625 0.5380 +701 24137 0.9680 +701 25788 0.4600 +701 25847 0.9590 +701 25886 0.4380 +701 25906 0.9780 +701 25909 0.6100 +701 25936 0.7010 +701 26271 0.7390 +701 26586 0.8860 +701 27127 0.4020 +701 27152 0.6490 +701 27338 0.8960 +701 27436 0.6710 +701 29028 0.5190 +701 29089 0.5900 +701 29127 0.9190 +701 29128 0.6770 +701 29882 0.9990 +701 29945 0.9990 +701 51053 0.4870 +701 51143 0.6260 +701 51203 0.9530 +701 51239 0.5750 +701 51343 0.9810 +701 51366 0.7820 +701 51433 0.9980 +701 51434 0.9990 +701 51512 0.6170 +701 51514 0.8110 +701 51529 0.9640 +701 51592 0.9940 +701 51659 0.4810 +701 51668 0.5990 +701 54069 0.5130 +701 54145 0.4220 +701 54443 0.8000 +701 54478 0.5590 +701 54820 0.6000 +701 54821 0.8240 +701 54880 0.7540 +701 54892 0.7240 +701 54908 0.9580 +701 55010 0.5400 +701 55055 0.9530 +701 55063 0.6030 +701 55120 0.4560 +701 55143 0.9940 +701 55165 0.9390 +701 55166 0.6970 +701 55215 0.8180 +701 55247 0.6370 +701 55255 0.5050 +701 55294 0.4300 +701 55355 0.8970 +701 55388 0.7660 +701 55605 0.4370 +701 55635 0.8500 +701 55723 0.7000 +701 55732 0.4920 +701 55746 0.6310 +701 55789 0.7970 +701 55795 0.6600 +701 55839 0.8600 +701 55844 0.4350 +701 55920 0.6440 +701 56992 0.9230 +701 57082 0.9990 +701 57122 0.7100 +701 57332 0.7220 +701 57405 0.9300 +701 57505 0.5150 +701 57551 0.8100 +701 57650 0.5020 +701 63922 0.5180 +701 63967 0.6070 +701 64105 0.8690 +701 64151 0.9520 +701 64682 0.9990 +701 64946 0.8470 +701 79003 0.9330 +701 79019 0.8840 +701 79023 0.6650 +701 79073 0.5140 +701 79075 0.4570 +701 79172 0.7100 +701 79184 0.7200 +701 79444 0.5550 +701 79682 0.8120 +701 79733 0.8360 +701 79801 0.7690 +701 79823 0.4480 +701 79866 0.5800 +701 79902 0.5960 +701 79915 0.4880 +701 79935 0.5540 +701 79980 0.9030 +701 80012 0.7960 +701 80119 0.4600 +701 80152 0.7290 +701 80776 0.4990 +701 81565 0.5750 +701 81610 0.6590 +701 81620 0.6410 +701 81624 0.5680 +701 81669 0.4760 +701 81929 0.6140 +701 81930 0.9130 +701 83461 0.8860 +701 83540 0.9800 +701 83879 0.4910 +701 83903 0.6840 +701 83990 0.4470 +701 84057 0.6620 +701 84108 0.7400 +701 84333 0.5540 +701 84643 0.7860 +701 84722 0.4060 +701 84733 0.7670 +701 84759 0.5540 +701 84896 0.4750 +701 84930 0.6670 +701 85236 0.4230 +701 85417 0.6170 +701 89839 0.6080 +701 90381 0.5660 +701 90417 0.7580 +701 91272 0.9240 +701 91687 0.6350 +701 113115 0.4370 +701 113130 0.8510 +701 114799 0.4060 +701 119504 0.9920 +701 126520 0.5090 +701 128239 0.6280 +701 128312 0.4090 +701 140459 0.5750 +701 140735 0.5180 +701 144455 0.6060 +701 146909 0.8380 +701 147841 0.7900 +701 150468 0.5370 +701 151246 0.8650 +701 151648 0.9740 +701 152098 0.6030 +701 157313 0.9160 +701 157570 0.7060 +701 158983 0.4090 +701 166979 0.9170 +701 203068 0.5370 +701 220134 0.9760 +701 221150 0.9760 +701 246184 0.9920 +701 259266 0.9740 +701 259282 0.5510 +701 284257 0.5450 +701 285643 0.6610 +701 286436 0.4090 +701 348235 0.9420 +701 348995 0.5910 +701 375061 0.5380 +701 378708 0.7350 +701 387103 0.5690 +701 401541 0.6260 +701 440093 0.6140 +701 440686 0.6140 +701 440689 0.4090 +701 494551 0.4290 +701 653604 0.6160 +701 653820 0.4760 +701 728833 0.4380 +701 729533 0.4010 +701 114483833 0.4090 +705 896 0.4830 +705 972 0.8370 +705 1434 0.6510 +705 1452 0.9010 +705 1453 0.9550 +705 1454 0.9310 +705 1503 0.5120 +705 1655 0.5110 +705 1659 0.8940 +705 1660 0.4370 +705 1662 0.9710 +705 1665 0.9690 +705 1725 0.4730 +705 1736 0.8550 +705 1802 0.5500 +705 2066 0.4270 +705 2091 0.9950 +705 2193 0.5420 +705 2197 0.9790 +705 2593 0.6910 +705 2794 0.7360 +705 3276 0.4240 +705 3692 0.4460 +705 3921 0.9770 +705 4163 0.9310 +705 4234 0.4860 +705 4809 0.9920 +705 4839 0.9150 +705 4931 0.6640 +705 5028 0.6800 +705 5032 0.6810 +705 5036 0.7070 +705 5073 0.7280 +705 5134 0.4820 +705 5393 0.8760 +705 5394 0.9880 +705 5431 0.4630 +705 5442 0.4330 +705 5479 0.5880 +705 5480 0.5810 +705 5822 0.9980 +705 6059 0.5920 +705 6124 0.8600 +705 6125 0.4510 +705 6129 0.4930 +705 6130 0.6050 +705 6135 0.8960 +705 6147 0.5220 +705 6152 0.4480 +705 6159 0.4660 +705 6175 0.6830 +705 6183 0.7840 +705 6187 0.9980 +705 6188 0.9980 +705 6189 0.9920 +705 6191 0.9830 +705 6192 0.8840 +705 6193 0.9950 +705 6194 0.9990 +705 6201 0.9980 +705 6202 0.9940 +705 6203 0.9980 +705 6204 0.9250 +705 6205 0.9920 +705 6206 0.9950 +705 6207 0.9930 +705 6208 0.9960 +705 6209 0.9960 +705 6210 0.9610 +705 6217 0.9970 +705 6218 0.9800 +705 6222 0.9920 +705 6223 0.9940 +705 6224 0.9890 +705 6227 0.9920 +705 6228 0.9840 +705 6229 0.9920 +705 6230 0.9360 +705 6231 0.9640 +705 6232 0.9810 +705 6233 0.9610 +705 6234 0.9910 +705 6235 0.7910 +705 6499 0.5620 +705 6742 0.4140 +705 6838 0.9080 +705 6894 0.4220 +705 7216 0.9990 +705 7268 0.4210 +705 7443 0.4130 +705 7444 0.4020 +705 7514 0.6740 +705 8161 0.4800 +705 8241 0.5390 +705 8449 0.4960 +705 8518 0.4040 +705 8568 0.8060 +705 8602 0.9990 +705 8634 0.9420 +705 8780 0.8540 +705 8833 0.4010 +705 8882 0.4280 +705 8886 0.9630 +705 8945 0.4050 +705 9136 0.9990 +705 9188 0.6240 +705 9221 0.7960 +705 9277 0.9990 +705 9477 0.7170 +705 9533 0.8450 +705 9669 0.4030 +705 9704 0.7240 +705 9724 0.9580 +705 9732 0.5900 +705 9775 0.4240 +705 9785 0.4320 +705 9790 0.9990 +705 9858 0.5520 +705 9875 0.5520 +705 9904 0.9220 +705 9933 0.8590 +705 10024 0.9980 +705 10153 0.9120 +705 10171 0.9990 +705 10180 0.5110 +705 10181 0.5290 +705 10196 0.4090 +705 10199 0.9980 +705 10399 0.9730 +705 10412 0.8070 +705 10436 0.9990 +705 10438 0.6570 +705 10482 0.4850 +705 10514 0.7300 +705 10521 0.5470 +705 10526 0.5560 +705 10527 0.5650 +705 10528 0.9980 +705 10557 0.8700 +705 10607 0.9980 +705 10621 0.4090 +705 10767 0.4130 +705 10785 0.7000 +705 10813 0.9970 +705 10849 0.4880 +705 10885 0.9990 +705 10969 0.9260 +705 11056 0.9330 +705 11103 0.9990 +705 11128 0.5560 +705 11137 0.8910 +705 11340 0.8420 +705 22803 0.4530 +705 22894 0.5880 +705 22907 0.4400 +705 22984 0.9980 +705 23016 0.8580 +705 23029 0.6970 +705 23054 0.9320 +705 23076 0.8770 +705 23082 0.4420 +705 23131 0.5190 +705 23160 0.9980 +705 23204 0.7720 +705 23212 0.9450 +705 23223 0.9990 +705 23246 0.9360 +705 23378 0.8810 +705 23404 0.8160 +705 23481 0.9420 +705 23517 0.9850 +705 23560 0.9190 +705 23640 0.5010 +705 24140 0.5140 +705 25778 0.4180 +705 25793 0.4030 +705 25862 0.7370 +705 25879 0.9990 +705 25885 0.8560 +705 25926 0.8470 +705 25983 0.9980 +705 26155 0.9210 +705 26156 0.9970 +705 26354 0.8810 +705 26574 0.9980 +705 26589 0.4060 +705 26995 0.5440 +705 27037 0.5610 +705 27042 0.8950 +705 27292 0.9990 +705 27340 0.9980 +705 27341 0.9980 +705 28987 0.9990 +705 29777 0.9910 +705 29889 0.9120 +705 29960 0.6070 +705 29997 0.8830 +705 30834 0.4170 +705 30836 0.9940 +705 51010 0.8310 +705 51013 0.8800 +705 51018 0.6970 +705 51042 0.6720 +705 51065 0.9030 +705 51068 0.9170 +705 51073 0.7410 +705 51077 0.9960 +705 51081 0.8020 +705 51082 0.6070 +705 51096 0.9990 +705 51106 0.8480 +705 51116 0.6460 +705 51118 0.9980 +705 51149 0.8450 +705 51154 0.9540 +705 51187 0.9130 +705 51202 0.7700 +705 51236 0.6790 +705 51319 0.8670 +705 51388 0.9520 +705 51406 0.8070 +705 51490 0.6490 +705 51504 0.9250 +705 51538 0.5860 +705 51574 0.5880 +705 51575 0.9300 +705 51602 0.9980 +705 51605 0.4200 +705 51645 0.4710 +705 54433 0.4060 +705 54463 0.6240 +705 54475 0.8520 +705 54505 0.4580 +705 54512 0.8640 +705 54517 0.6050 +705 54552 0.8590 +705 54555 0.9750 +705 54606 0.9000 +705 54663 0.8220 +705 54680 0.5520 +705 54700 0.5690 +705 54865 0.8960 +705 54881 0.4970 +705 54888 0.6850 +705 54920 0.4280 +705 54948 0.4710 +705 54957 0.7020 +705 54984 0.9720 +705 55003 0.7570 +705 55027 0.4840 +705 55035 0.4170 +705 55105 0.8860 +705 55109 0.5080 +705 55127 0.9980 +705 55131 0.8720 +705 55140 0.6040 +705 55153 0.9220 +705 55170 0.4080 +705 55173 0.8010 +705 55226 0.9990 +705 55272 0.9970 +705 55299 0.9470 +705 55316 0.5280 +705 55319 0.6000 +705 55341 0.9080 +705 55505 0.4050 +705 55601 0.5540 +705 55621 0.4580 +705 55622 0.6030 +705 55646 0.6590 +705 55651 0.8610 +705 55668 0.8430 +705 55695 0.4780 +705 55703 0.4550 +705 55720 0.9990 +705 55759 0.8800 +705 55760 0.8700 +705 55781 0.9990 +705 55794 0.6620 +705 55813 0.9990 +705 56342 0.8190 +705 56902 0.9990 +705 56915 0.8280 +705 56919 0.7310 +705 56931 0.4530 +705 57050 0.9990 +705 57062 0.6490 +705 57418 0.7290 +705 57510 0.4390 +705 57647 0.9610 +705 57696 0.7270 +705 60487 0.5890 +705 60625 0.7210 +705 63899 0.4490 +705 63931 0.4620 +705 64118 0.7350 +705 64216 0.9810 +705 64318 0.8410 +705 64374 0.4410 +705 64425 0.8660 +705 64434 0.7480 +705 64782 0.4420 +705 64794 0.7320 +705 64848 0.4020 +705 64960 0.7800 +705 64963 0.7790 +705 64969 0.8020 +705 65083 0.9990 +705 65095 0.7420 +705 79009 0.4960 +705 79039 0.8220 +705 79050 0.9990 +705 79080 0.5640 +705 79137 0.5590 +705 79159 0.5730 +705 79365 0.4170 +705 79571 0.9330 +705 79665 0.5880 +705 79711 0.4920 +705 79954 0.9990 +705 79979 0.5390 +705 80135 0.9160 +705 80324 0.4740 +705 81627 0.5080 +705 83475 0.6090 +705 83480 0.6680 +705 83732 0.9550 +705 83743 0.9580 +705 84128 0.9980 +705 84135 0.9990 +705 84154 0.9540 +705 84172 0.8560 +705 84240 0.4270 +705 84294 0.7100 +705 84305 0.4050 +705 84306 0.6510 +705 84319 0.7460 +705 84365 0.9090 +705 84549 0.9380 +705 84916 0.9990 +705 84946 0.9990 +705 85395 0.9700 +705 88745 0.9780 +705 90121 0.8390 +705 90381 0.6040 +705 90441 0.6900 +705 90957 0.4860 +705 91582 0.8150 +705 91752 0.5080 +705 91893 0.4860 +705 92856 0.9990 +705 112840 0.4310 +705 112970 0.4040 +705 114987 0.6520 +705 115708 0.4210 +705 115752 0.4880 +705 115939 0.4570 +705 116966 0.7110 +705 117246 0.9490 +705 118460 0.5710 +705 126402 0.7890 +705 126789 0.4640 +705 128061 0.8160 +705 129563 0.4960 +705 140032 0.8790 +705 140801 0.8430 +705 142940 0.6110 +705 146212 0.8170 +705 153443 0.9710 +705 155368 0.6250 +705 161424 0.9720 +705 162427 0.5570 +705 165545 0.7740 +705 170506 0.6470 +705 219578 0.5080 +705 221078 0.8340 +705 221830 0.7310 +705 285855 0.4990 +705 317781 0.4420 +705 345630 0.9480 +705 347487 0.6740 +705 387129 0.4720 +705 387338 0.4540 +705 641776 0.4940 +705 643909 0.4940 +705 692312 0.7320 +705 728524 0.4940 +705 100287482 0.5300 +705 100505478 0.4660 +705 100529239 0.7870 +705 100996746 0.4940 +705 102157402 0.4530 +705 102800317 0.5770 +705 105180390 0.4940 +705 105180391 0.4940 +706 762 0.4700 +706 810 0.4330 +706 822 0.4130 +706 834 0.4040 +706 968 0.5940 +706 1381 0.4590 +706 1407 0.4910 +706 1408 0.4760 +706 1436 0.4380 +706 1513 0.4160 +706 1524 0.4110 +706 1543 0.4500 +706 1583 0.7860 +706 1586 0.5110 +706 1622 0.9410 +706 2232 0.5300 +706 2235 0.4320 +706 2597 0.4270 +706 2670 0.5500 +706 2745 0.5300 +706 2932 0.5440 +706 3091 0.4820 +706 3283 0.5430 +706 3293 0.4270 +706 3351 0.4240 +706 3553 0.6330 +706 3569 0.5120 +706 3576 0.5490 +706 3586 0.4030 +706 3684 0.4590 +706 3976 0.4150 +706 4077 0.4480 +706 4128 0.4190 +706 4129 0.5430 +706 4151 0.4360 +706 4684 0.4240 +706 5004 0.4510 +706 5005 0.4230 +706 5052 0.4740 +706 5241 0.4740 +706 5566 0.6160 +706 5567 0.6140 +706 5568 0.6140 +706 5595 0.4580 +706 5654 0.4350 +706 5743 0.4220 +706 6282 0.5390 +706 6347 0.4200 +706 6531 0.4180 +706 6622 0.4360 +706 6770 0.9930 +706 7124 0.4770 +706 7132 0.5230 +706 7276 0.4500 +706 7416 0.9990 +706 7417 0.9560 +706 7419 0.9580 +706 7874 0.5040 +706 8165 0.4720 +706 8856 0.4560 +706 9256 0.9900 +706 9360 0.5410 +706 9370 0.4620 +706 9413 0.8300 +706 9414 0.7630 +706 9699 0.5890 +706 10105 0.8070 +706 10170 0.4160 +706 11345 0.6760 +706 22999 0.5450 +706 23504 0.6570 +706 23710 0.6690 +706 25813 0.4140 +706 29108 0.4130 +706 51806 0.4360 +706 54205 0.5550 +706 54209 0.5810 +706 54363 0.4070 +706 55210 0.7480 +706 55847 0.4550 +706 64746 0.9850 +706 64805 0.4060 +706 83447 0.9350 +706 84433 0.4090 +706 85376 0.4140 +706 90993 0.6110 +706 91860 0.4340 +706 112849 0.5360 +706 116843 0.4030 +706 117531 0.7170 +706 150221 0.4350 +706 163688 0.4330 +706 255738 0.4460 +706 338773 0.4290 +706 414149 0.4270 +706 440804 0.4560 +708 710 0.8000 +708 712 0.8000 +708 715 0.4790 +708 716 0.4480 +708 718 0.6100 +708 719 0.6850 +708 720 0.5450 +708 728 0.6260 +708 811 0.7510 +708 948 0.5210 +708 949 0.5420 +708 950 0.5320 +708 999 0.5730 +708 1029 0.8730 +708 1378 0.5730 +708 1537 0.5240 +708 1604 0.5770 +708 1729 0.4030 +708 1737 0.4780 +708 2010 0.8360 +708 2035 0.4250 +708 2091 0.7730 +708 2160 0.6710 +708 2161 0.9660 +708 2332 0.4210 +708 2811 0.6070 +708 2812 0.5070 +708 2814 0.4990 +708 2815 0.5320 +708 2926 0.4660 +708 2976 0.6060 +708 3148 0.5030 +708 3182 0.5360 +708 3276 0.4010 +708 3312 0.4870 +708 3313 0.6930 +708 3329 0.6020 +708 3336 0.5650 +708 3337 0.4480 +708 3383 0.5350 +708 3396 0.4820 +708 3608 0.5510 +708 3818 0.6720 +708 3827 0.9980 +708 3848 0.9490 +708 3903 0.5550 +708 3930 0.5920 +708 4035 0.5480 +708 4066 0.5500 +708 4179 0.5190 +708 4233 0.4800 +708 4323 0.4120 +708 4357 0.4340 +708 4595 0.5500 +708 4706 0.5980 +708 4809 0.4390 +708 4869 0.7310 +708 4904 0.9040 +708 5036 0.4050 +708 5071 0.4740 +708 5097 0.4500 +708 5245 0.8470 +708 5329 0.7150 +708 5547 0.6320 +708 5573 0.4220 +708 5584 0.4250 +708 5587 0.5130 +708 5590 0.7620 +708 5594 0.4250 +708 5688 0.4050 +708 5901 0.4750 +708 6137 0.4020 +708 6182 0.6340 +708 6187 0.4320 +708 6403 0.5390 +708 6426 0.8140 +708 6441 0.4610 +708 6741 0.5350 +708 6742 0.5410 +708 6886 0.4360 +708 6887 0.4280 +708 6996 0.4030 +708 7019 0.5090 +708 7097 0.5030 +708 7284 0.6140 +708 7385 0.4030 +708 7448 0.9590 +708 7818 0.6310 +708 7916 0.5460 +708 8683 0.4610 +708 8739 0.6390 +708 8777 0.4610 +708 8826 0.4590 +708 9188 0.5880 +708 9361 0.4470 +708 9401 0.5640 +708 9406 0.4310 +708 9556 0.4150 +708 9622 0.4800 +708 9801 0.4750 +708 9898 0.4560 +708 9918 0.5460 +708 9972 0.5430 +708 10102 0.4820 +708 10105 0.4890 +708 10128 0.5080 +708 10131 0.4710 +708 10189 0.5770 +708 10399 0.4670 +708 10419 0.5530 +708 10452 0.4570 +708 10528 0.4050 +708 10574 0.4780 +708 10884 0.4960 +708 10916 0.5680 +708 10969 0.4200 +708 10978 0.4050 +708 11113 0.5710 +708 11222 0.6530 +708 11331 0.9640 +708 22918 0.7450 +708 22927 0.7080 +708 23076 0.5900 +708 23107 0.5660 +708 23136 0.4930 +708 23608 0.5090 +708 25936 0.5530 +708 26065 0.4770 +708 26191 0.9430 +708 26284 0.4540 +708 26589 0.4800 +708 28957 0.4920 +708 29074 0.4010 +708 29093 0.4950 +708 30835 0.7790 +708 30968 0.4900 +708 51073 0.4780 +708 51081 0.4970 +708 51116 0.5420 +708 51142 0.6600 +708 51253 0.4200 +708 51278 0.4770 +708 51388 0.4020 +708 51649 0.4170 +708 51720 0.5100 +708 55037 0.5180 +708 55147 0.5310 +708 55172 0.4300 +708 55173 0.5120 +708 55178 0.5120 +708 55651 0.5130 +708 56945 0.5430 +708 56993 0.4250 +708 57035 0.4630 +708 57122 0.4470 +708 57506 0.5240 +708 64216 0.4110 +708 64432 0.4070 +708 64949 0.4620 +708 64965 0.4730 +708 64969 0.4060 +708 64978 0.4890 +708 65080 0.4190 +708 65993 0.4900 +708 79968 0.5190 +708 81624 0.4140 +708 128239 0.4480 +708 149986 0.4490 +708 219927 0.4720 +708 389072 0.4480 +708 400916 0.4850 +710 712 0.9730 +710 714 0.9590 +710 715 0.9990 +710 716 0.9990 +710 717 0.6980 +710 718 0.9540 +710 719 0.6360 +710 720 0.8790 +710 721 0.7560 +710 722 0.5350 +710 725 0.4140 +710 727 0.5570 +710 728 0.7560 +710 729 0.4040 +710 730 0.4500 +710 731 0.4920 +710 732 0.5010 +710 733 0.5230 +710 735 0.4450 +710 813 0.4440 +710 823 0.4300 +710 921 0.4540 +710 960 0.4690 +710 966 0.7760 +710 1128 0.4220 +710 1191 0.7210 +710 1215 0.4170 +710 1351 0.4480 +710 1356 0.6730 +710 1361 0.4610 +710 1378 0.6070 +710 1401 0.5070 +710 1471 0.7370 +710 1511 0.5510 +710 1604 0.7170 +710 1636 0.6340 +710 1675 0.4070 +710 1991 0.7160 +710 2012 0.4260 +710 2086 0.4480 +710 2147 0.6900 +710 2152 0.5210 +710 2158 0.4620 +710 2159 0.6760 +710 2160 0.7590 +710 2161 0.9870 +710 2168 0.4450 +710 2209 0.4010 +710 2219 0.6540 +710 2220 0.6710 +710 2243 0.4410 +710 2495 0.4650 +710 2537 0.4460 +710 2633 0.5920 +710 2634 0.5310 +710 3026 0.4430 +710 3053 0.4530 +710 3075 0.7220 +710 3078 0.5410 +710 3240 0.6450 +710 3263 0.4670 +710 3273 0.4690 +710 3426 0.6340 +710 3429 0.4010 +710 3430 0.4090 +710 3434 0.4280 +710 3437 0.4890 +710 3484 0.4280 +710 3553 0.4420 +710 3569 0.4660 +710 3627 0.4560 +710 3700 0.5480 +710 3818 0.9960 +710 3827 0.9640 +710 3846 0.5350 +710 3959 0.4160 +710 4061 0.4230 +710 4153 0.9790 +710 4179 0.7550 +710 4296 0.4470 +710 4311 0.4320 +710 4811 0.5520 +710 4938 0.4190 +710 4940 0.4060 +710 5004 0.4280 +710 5005 0.4080 +710 5007 0.5460 +710 5054 0.5570 +710 5176 0.4110 +710 5199 0.7740 +710 5203 0.6080 +710 5265 0.5830 +710 5274 0.4190 +710 5327 0.6810 +710 5328 0.4010 +710 5331 0.4270 +710 5340 0.6840 +710 5345 0.5920 +710 5499 0.5010 +710 5547 0.4050 +710 5552 0.4050 +710 5648 0.9900 +710 5730 0.4220 +710 5834 0.4360 +710 5836 0.4710 +710 5837 0.5000 +710 5919 0.4370 +710 6094 0.4290 +710 6347 0.4210 +710 6401 0.4930 +710 6403 0.5640 +710 6614 0.5080 +710 6694 0.4300 +710 6772 0.4200 +710 7035 0.4400 +710 7056 0.4330 +710 7114 0.4960 +710 7124 0.4040 +710 7448 0.7190 +710 7450 0.5250 +710 7536 0.4240 +710 8061 0.4350 +710 8519 0.4240 +710 8547 0.6090 +710 8928 0.5180 +710 9246 0.4850 +710 9622 0.9980 +710 10296 0.4160 +710 10410 0.4450 +710 10561 0.4490 +710 10747 0.9990 +710 10964 0.4970 +710 11326 0.5170 +710 26509 0.4380 +710 27202 0.4910 +710 30816 0.4430 +710 51279 0.4070 +710 54739 0.4980 +710 54904 0.4240 +710 78989 0.4710 +710 79026 0.4470 +710 80781 0.4330 +710 81494 0.4470 +710 91543 0.4520 +710 115361 0.4650 +710 115362 0.4580 +710 116071 0.4550 +710 136991 0.4330 +710 284293 0.4850 +710 347902 0.5450 +710 387715 0.4180 +710 390714 0.5260 +710 405754 0.4480 +712 714 0.9990 +712 715 0.9880 +712 716 0.9900 +712 717 0.9500 +712 718 0.6050 +712 719 0.8370 +712 720 0.9830 +712 721 0.9720 +712 722 0.4010 +712 728 0.8100 +712 731 0.4590 +712 732 0.4510 +712 811 0.9430 +712 837 0.4890 +712 915 0.4480 +712 920 0.4980 +712 922 0.4430 +712 942 0.4910 +712 945 0.5550 +712 948 0.6040 +712 949 0.5270 +712 950 0.5620 +712 962 0.5640 +712 963 0.5800 +712 966 0.4140 +712 968 0.7460 +712 972 0.6960 +712 1043 0.4300 +712 1071 0.4300 +712 1191 0.6100 +712 1230 0.5950 +712 1234 0.5740 +712 1401 0.6980 +712 1436 0.9060 +712 1440 0.4450 +712 1441 0.4250 +712 1464 0.4370 +712 1509 0.6230 +712 1520 0.7460 +712 1522 0.4570 +712 1524 0.6110 +712 1536 0.6970 +712 1604 0.4760 +712 1634 0.4780 +712 2015 0.4680 +712 2162 0.5400 +712 2207 0.7920 +712 2209 0.5540 +712 2212 0.4030 +712 2213 0.5060 +712 2219 0.7100 +712 2220 0.6390 +712 2335 0.4590 +712 2350 0.8210 +712 2533 0.5100 +712 2621 0.6340 +712 2670 0.4540 +712 2857 0.6720 +712 3001 0.4340 +712 3002 0.5190 +712 3055 0.6360 +712 3059 0.5040 +712 3075 0.5020 +712 3108 0.4450 +712 3109 0.4900 +712 3113 0.5080 +712 3115 0.4120 +712 3118 0.4230 +712 3119 0.4780 +712 3122 0.6560 +712 3123 0.4990 +712 3394 0.4960 +712 3454 0.4300 +712 3553 0.4740 +712 3569 0.6080 +712 3587 0.4330 +712 3627 0.4790 +712 3684 0.7030 +712 3687 0.4940 +712 3689 0.7360 +712 3937 0.6030 +712 4069 0.4220 +712 4151 0.4240 +712 4153 0.8520 +712 4283 0.5190 +712 4360 0.7030 +712 4481 0.6780 +712 4542 0.4670 +712 4688 0.5190 +712 4818 0.4210 +712 5175 0.4490 +712 5199 0.5770 +712 5230 0.4410 +712 5465 0.4010 +712 5467 0.4320 +712 5621 0.4180 +712 5627 0.5870 +712 5648 0.6150 +712 5788 0.5220 +712 5806 0.6420 +712 5879 0.4520 +712 6035 0.4800 +712 6347 0.4700 +712 6348 0.4660 +712 6351 0.6610 +712 6355 0.4230 +712 6362 0.5550 +712 6363 0.4680 +712 6614 0.6330 +712 6688 0.5360 +712 7056 0.5200 +712 7097 0.5060 +712 7099 0.4570 +712 7122 0.4890 +712 7124 0.4520 +712 7305 0.8900 +712 7450 0.4870 +712 7805 0.7020 +712 8530 0.5000 +712 8547 0.6450 +712 8685 0.5670 +712 8807 0.4800 +712 8809 0.4450 +712 9332 0.7270 +712 9450 0.6760 +712 9935 0.4250 +712 10288 0.4310 +712 10457 0.4650 +712 10461 0.5890 +712 10462 0.5040 +712 10507 0.4070 +712 10584 0.5300 +712 10747 0.6260 +712 10875 0.4420 +712 10894 0.5620 +712 10990 0.4420 +712 11309 0.5010 +712 11314 0.5490 +712 11326 0.9710 +712 22918 0.8570 +712 23166 0.6040 +712 28959 0.4690 +712 51284 0.4280 +712 51311 0.4720 +712 51338 0.8030 +712 54106 0.4950 +712 54209 0.8540 +712 55303 0.4220 +712 55365 0.4460 +712 56833 0.5310 +712 57413 0.4470 +712 58475 0.4590 +712 64231 0.6030 +712 64581 0.4370 +712 64805 0.7140 +712 78989 0.7750 +712 83483 0.4270 +712 83666 0.4080 +712 91522 0.5090 +712 91937 0.4650 +712 115362 0.4050 +712 146433 0.4030 +712 338773 0.7050 +712 390714 0.4010 +712 102723407 0.9080 +714 715 0.9930 +714 716 0.9920 +714 717 0.9440 +714 718 0.6080 +714 719 0.6650 +714 720 0.9720 +714 721 0.9670 +714 722 0.4270 +714 728 0.4500 +714 731 0.4480 +714 732 0.4390 +714 733 0.4800 +714 811 0.9080 +714 920 0.4010 +714 922 0.4030 +714 945 0.5060 +714 968 0.5380 +714 972 0.5910 +714 1191 0.5340 +714 1230 0.5780 +714 1278 0.5290 +714 1401 0.5440 +714 1436 0.8090 +714 1520 0.5510 +714 1522 0.4040 +714 1524 0.4250 +714 1794 0.4270 +714 2015 0.4610 +714 2162 0.4660 +714 2165 0.4120 +714 2207 0.6450 +714 2209 0.4470 +714 2213 0.4030 +714 2219 0.5620 +714 2220 0.5290 +714 2350 0.6790 +714 2359 0.5000 +714 2857 0.4660 +714 3075 0.4600 +714 3113 0.5940 +714 3122 0.4970 +714 3394 0.4640 +714 3587 0.4240 +714 3683 0.4550 +714 3689 0.5540 +714 4069 0.4760 +714 4153 0.4550 +714 4360 0.6170 +714 4481 0.6470 +714 5199 0.5130 +714 5478 0.4060 +714 5551 0.4290 +714 5648 0.5840 +714 5806 0.5470 +714 6035 0.5370 +714 6355 0.4130 +714 6362 0.4960 +714 6363 0.5930 +714 6366 0.4990 +714 6614 0.6040 +714 6688 0.4390 +714 7305 0.7240 +714 7450 0.4290 +714 7805 0.5640 +714 8547 0.6220 +714 8685 0.4650 +714 8743 0.4430 +714 9332 0.6780 +714 9450 0.6450 +714 10457 0.4350 +714 10584 0.5140 +714 10673 0.4780 +714 10747 0.6840 +714 10894 0.4380 +714 11309 0.4930 +714 11326 0.9430 +714 22918 0.4170 +714 23166 0.5520 +714 23643 0.4180 +714 51338 0.5690 +714 51435 0.4920 +714 54209 0.6820 +714 56833 0.4780 +714 57471 0.4550 +714 58475 0.4570 +714 64231 0.5410 +714 64805 0.4050 +714 78989 0.7270 +714 91937 0.4480 +714 114899 0.4560 +714 140885 0.4160 +714 266743 0.4040 +714 284759 0.4150 +714 390714 0.4390 +714 100423062 0.5050 +714 102723407 0.9080 +715 716 0.9990 +715 717 0.9530 +715 718 0.9350 +715 719 0.5910 +715 720 0.9910 +715 721 0.9910 +715 722 0.5430 +715 725 0.5380 +715 727 0.5420 +715 728 0.6250 +715 729 0.4650 +715 730 0.4540 +715 731 0.6250 +715 732 0.6810 +715 733 0.7170 +715 735 0.4250 +715 844 0.5840 +715 912 0.4080 +715 920 0.4180 +715 925 0.4080 +715 966 0.6540 +715 1191 0.6040 +715 1278 0.4090 +715 1281 0.4570 +715 1291 0.4580 +715 1292 0.5340 +715 1356 0.4010 +715 1361 0.4110 +715 1378 0.5230 +715 1401 0.8680 +715 1604 0.6380 +715 1634 0.5840 +715 1950 0.7050 +715 1991 0.4260 +715 2192 0.4560 +715 2219 0.8090 +715 2220 0.8270 +715 2335 0.6160 +715 2694 0.7110 +715 2898 0.4330 +715 3075 0.8440 +715 3078 0.5220 +715 3080 0.4040 +715 3105 0.5560 +715 3106 0.5050 +715 3426 0.5040 +715 3458 0.4470 +715 3569 0.4060 +715 3698 0.4140 +715 3827 0.5160 +715 4036 0.5260 +715 4060 0.4090 +715 4153 0.8970 +715 4179 0.6140 +715 4224 0.5980 +715 4481 0.5040 +715 4837 0.4990 +715 5176 0.4090 +715 5199 0.7630 +715 5203 0.6360 +715 5265 0.4020 +715 5327 0.5310 +715 5340 0.5230 +715 5345 0.4340 +715 5552 0.4590 +715 5648 0.7690 +715 5730 0.4680 +715 5806 0.5710 +715 6387 0.5620 +715 6441 0.4290 +715 7092 0.4700 +715 7124 0.4070 +715 7276 0.5290 +715 7448 0.5340 +715 7450 0.4750 +715 8547 0.7880 +715 9332 0.5250 +715 9622 0.5860 +715 10345 0.6050 +715 10371 0.4480 +715 10584 0.6240 +715 10747 0.6880 +715 10878 0.4270 +715 10882 0.4340 +715 11093 0.6320 +715 11326 0.4460 +715 22918 0.4720 +715 26509 0.4300 +715 27202 0.4850 +715 51279 0.5550 +715 78989 0.8500 +715 79841 0.5740 +715 80274 0.4830 +715 80344 0.4060 +715 81494 0.4040 +715 81693 0.6910 +715 81831 0.5700 +715 81832 0.4970 +715 375790 0.5580 +715 390714 0.4860 +715 102723407 0.9200 +716 717 0.9500 +716 718 0.9080 +716 719 0.6060 +716 720 0.9930 +716 721 0.9930 +716 722 0.7050 +716 725 0.5090 +716 727 0.5710 +716 728 0.6590 +716 729 0.4390 +716 730 0.5040 +716 731 0.6640 +716 732 0.6080 +716 733 0.5890 +716 735 0.4470 +716 760 0.4890 +716 844 0.5550 +716 966 0.6570 +716 1191 0.7400 +716 1281 0.4670 +716 1290 0.5250 +716 1291 0.5710 +716 1292 0.5420 +716 1361 0.4280 +716 1378 0.5460 +716 1401 0.8350 +716 1604 0.6440 +716 1634 0.6080 +716 1950 0.6980 +716 1991 0.4450 +716 2161 0.5350 +716 2192 0.4420 +716 2219 0.8200 +716 2220 0.8350 +716 2243 0.5060 +716 2247 0.5180 +716 2335 0.4680 +716 2694 0.6940 +716 3053 0.4170 +716 3075 0.7440 +716 3078 0.6150 +716 3080 0.4020 +716 3263 0.4910 +716 3426 0.4630 +716 3488 0.4600 +716 3569 0.4440 +716 3827 0.7460 +716 3931 0.5120 +716 4015 0.4810 +716 4036 0.4980 +716 4060 0.4580 +716 4153 0.8970 +716 4179 0.6190 +716 5176 0.4850 +716 5199 0.7690 +716 5203 0.6270 +716 5265 0.4440 +716 5327 0.5790 +716 5345 0.4790 +716 5648 0.8510 +716 5730 0.5200 +716 5806 0.8110 +716 6387 0.5900 +716 6441 0.4210 +716 7092 0.4650 +716 7412 0.4340 +716 7448 0.6780 +716 7450 0.5470 +716 8030 0.6420 +716 8293 0.7200 +716 8547 0.8240 +716 8792 0.5480 +716 9332 0.7030 +716 9622 0.8150 +716 9827 0.4880 +716 9989 0.7840 +716 10345 0.5730 +716 10584 0.6170 +716 10747 0.7030 +716 11093 0.6350 +716 11326 0.4710 +716 22918 0.6490 +716 25915 0.8800 +716 27202 0.5280 +716 27230 0.4860 +716 27238 0.6220 +716 51279 0.6420 +716 51741 0.4060 +716 78989 0.8510 +716 79841 0.5570 +716 80274 0.4700 +716 81494 0.4370 +716 81693 0.6520 +716 81831 0.5400 +716 81832 0.6200 +716 343521 0.4160 +716 375790 0.5290 +716 390714 0.4860 +716 728358 0.4440 +716 102723407 0.9240 +717 718 0.9780 +717 719 0.4570 +717 720 0.9530 +717 721 0.9750 +717 722 0.6120 +717 725 0.5720 +717 727 0.8030 +717 728 0.4360 +717 729 0.6050 +717 730 0.4880 +717 731 0.4780 +717 732 0.4720 +717 733 0.4240 +717 735 0.6410 +717 966 0.4400 +717 1361 0.5140 +717 1378 0.5990 +717 1471 0.5230 +717 1524 0.5080 +717 1604 0.9160 +717 1675 0.4080 +717 1797 0.7400 +717 2074 0.4670 +717 2147 0.4390 +717 2202 0.4490 +717 2219 0.5910 +717 2220 0.6410 +717 3075 0.8760 +717 3078 0.7400 +717 3273 0.4500 +717 3426 0.8640 +717 3990 0.4020 +717 4153 0.9460 +717 4179 0.7510 +717 5176 0.5040 +717 5199 0.6050 +717 5340 0.5320 +717 5345 0.5380 +717 5648 0.5560 +717 5654 0.5120 +717 6499 0.6510 +717 6696 0.4220 +717 7448 0.4500 +717 8547 0.6190 +717 8859 0.6230 +717 10516 0.6370 +717 10584 0.4910 +717 10747 0.9250 +717 10878 0.7610 +717 22803 0.4680 +717 59338 0.5870 +717 78989 0.5150 +717 83872 0.7060 +717 84839 0.5510 +717 93643 0.4160 +717 387715 0.7650 +717 390714 0.4890 +718 719 0.9980 +718 720 0.9980 +718 721 0.9980 +718 722 0.8170 +718 725 0.6310 +718 727 0.9740 +718 728 0.9770 +718 729 0.5050 +718 730 0.6370 +718 731 0.8160 +718 732 0.7360 +718 735 0.6420 +718 920 0.5900 +718 925 0.5480 +718 930 0.7060 +718 942 0.5590 +718 948 0.5450 +718 949 0.5620 +718 950 0.5470 +718 958 0.4020 +718 959 0.5540 +718 962 0.4110 +718 966 0.8410 +718 968 0.4260 +718 975 0.6610 +718 1036 0.6860 +718 1052 0.4180 +718 1173 0.5510 +718 1191 0.8030 +718 1277 0.5120 +718 1325 0.4990 +718 1356 0.7510 +718 1361 0.8070 +718 1369 0.6780 +718 1370 0.4560 +718 1378 0.9990 +718 1379 0.9660 +718 1380 0.9990 +718 1401 0.9850 +718 1437 0.4460 +718 1471 0.4080 +718 1511 0.6970 +718 1514 0.4340 +718 1525 0.4660 +718 1604 0.9990 +718 1636 0.4280 +718 1675 0.9980 +718 1991 0.4990 +718 1992 0.5240 +718 2026 0.4640 +718 2028 0.6680 +718 2086 0.7460 +718 2147 0.8740 +718 2152 0.8030 +718 2153 0.6890 +718 2155 0.7020 +718 2157 0.6520 +718 2158 0.6960 +718 2159 0.7550 +718 2160 0.7170 +718 2161 0.7480 +718 2162 0.4180 +718 2165 0.6720 +718 2168 0.4690 +718 2204 0.5360 +718 2209 0.4360 +718 2212 0.4590 +718 2213 0.4280 +718 2217 0.5730 +718 2219 0.8350 +718 2220 0.8600 +718 2243 0.6130 +718 2244 0.4530 +718 2266 0.4650 +718 2335 0.6230 +718 2587 0.4990 +718 2597 0.6660 +718 2638 0.7680 +718 2697 0.4210 +718 2832 0.4990 +718 2847 0.5130 +718 2852 0.5120 +718 2861 0.5010 +718 2875 0.4930 +718 2889 0.6080 +718 2908 0.4520 +718 2919 0.4130 +718 2934 0.4070 +718 2993 0.5470 +718 3004 0.4640 +718 3075 0.9990 +718 3078 0.9990 +718 3080 0.9510 +718 3146 0.4670 +718 3240 0.8620 +718 3250 0.6830 +718 3263 0.8410 +718 3273 0.8480 +718 3383 0.7050 +718 3426 0.9990 +718 3439 0.4180 +718 3458 0.6030 +718 3552 0.5300 +718 3553 0.6640 +718 3558 0.6840 +718 3565 0.4930 +718 3569 0.6660 +718 3576 0.7830 +718 3586 0.7290 +718 3596 0.4040 +718 3605 0.4470 +718 3606 0.4300 +718 3627 0.4600 +718 3630 0.5010 +718 3683 0.5700 +718 3684 0.9990 +718 3687 0.9690 +718 3688 0.4360 +718 3689 0.9980 +718 3698 0.6220 +718 3700 0.7450 +718 3818 0.7420 +718 3827 0.8040 +718 3934 0.4480 +718 3952 0.4010 +718 3998 0.4540 +718 4018 0.5890 +718 4057 0.7110 +718 4060 0.5400 +718 4069 0.6360 +718 4137 0.4100 +718 4153 0.9340 +718 4179 0.9990 +718 4240 0.5500 +718 4316 0.5160 +718 4318 0.6090 +718 4353 0.7860 +718 4360 0.5200 +718 4608 0.8570 +718 4852 0.5610 +718 4886 0.5320 +718 4887 0.4990 +718 4889 0.5060 +718 4985 0.5090 +718 4988 0.5100 +718 5004 0.7750 +718 5005 0.7720 +718 5025 0.5210 +718 5027 0.5430 +718 5054 0.4410 +718 5173 0.4990 +718 5176 0.4700 +718 5179 0.5150 +718 5197 0.4490 +718 5199 0.9990 +718 5265 0.8590 +718 5284 0.6250 +718 5327 0.4460 +718 5328 0.7070 +718 5329 0.6090 +718 5340 0.9780 +718 5345 0.4860 +718 5367 0.5360 +718 5368 0.4990 +718 5443 0.6450 +718 5444 0.6060 +718 5539 0.5380 +718 5540 0.5310 +718 5549 0.4690 +718 5624 0.6940 +718 5645 0.4470 +718 5648 0.9360 +718 5657 0.6110 +718 5660 0.5650 +718 5697 0.5230 +718 5788 0.4190 +718 5806 0.7370 +718 5937 0.5980 +718 5939 0.6550 +718 5950 0.4530 +718 5970 0.4020 +718 5979 0.4460 +718 6288 0.4150 +718 6289 0.4500 +718 6336 0.4380 +718 6347 0.7370 +718 6348 0.4010 +718 6399 0.4020 +718 6401 0.4210 +718 6403 0.9910 +718 6696 0.4220 +718 6714 0.6030 +718 6750 0.5280 +718 6751 0.4990 +718 6752 0.4990 +718 6753 0.4990 +718 6754 0.4990 +718 6755 0.4990 +718 6863 0.4260 +718 7018 0.6830 +718 7056 0.9330 +718 7058 0.5010 +718 7097 0.5330 +718 7098 0.4260 +718 7099 0.5100 +718 7124 0.6210 +718 7276 0.7820 +718 7306 0.4860 +718 7412 0.4530 +718 7415 0.5740 +718 7448 0.7900 +718 7450 0.5740 +718 7837 0.4610 +718 8484 0.4990 +718 8519 0.5710 +718 8526 0.5070 +718 8547 0.8440 +718 8811 0.4990 +718 8862 0.5620 +718 9172 0.6490 +718 9283 0.4990 +718 9370 0.4410 +718 9622 0.5510 +718 10162 0.5790 +718 10316 0.4990 +718 10544 0.4690 +718 10553 0.4740 +718 10584 0.6960 +718 10733 0.5700 +718 10747 0.9100 +718 10874 0.5030 +718 10877 0.9980 +718 10878 0.9910 +718 11093 0.7350 +718 11326 0.9990 +718 22918 0.6340 +718 26086 0.4230 +718 27202 0.9980 +718 27350 0.4110 +718 27429 0.5550 +718 30816 0.7430 +718 51008 0.4200 +718 51083 0.5150 +718 51279 0.4650 +718 51297 0.4390 +718 54106 0.6130 +718 54209 0.4130 +718 54757 0.4280 +718 54766 0.4160 +718 55054 0.9610 +718 56923 0.4990 +718 56975 0.6450 +718 60489 0.4350 +718 63940 0.4030 +718 64129 0.4100 +718 78989 0.8020 +718 79841 0.4900 +718 81494 0.9920 +718 83706 0.4110 +718 83733 0.5520 +718 84539 0.4990 +718 84871 0.6100 +718 84890 0.4240 +718 85477 0.7160 +718 89782 0.8810 +718 115939 0.5290 +718 126669 0.4580 +718 129521 0.4990 +718 137902 0.4570 +718 140683 0.4120 +718 256933 0.4990 +718 283869 0.4990 +718 340351 0.8550 +718 375790 0.4080 +718 387715 0.6980 +718 405754 0.7440 +718 727897 0.5180 +718 102723407 0.5150 +719 720 0.9870 +719 721 0.7820 +719 727 0.8800 +719 728 0.9870 +719 811 0.5080 +719 834 0.4250 +719 912 0.4270 +719 920 0.5580 +719 925 0.4250 +719 942 0.5510 +719 945 0.5740 +719 948 0.5290 +719 949 0.4970 +719 950 0.5070 +719 963 0.5090 +719 966 0.6120 +719 968 0.6260 +719 972 0.5490 +719 1230 0.7330 +719 1234 0.6430 +719 1236 0.4500 +719 1241 0.4740 +719 1325 0.5140 +719 1378 0.6700 +719 1380 0.4330 +719 1436 0.7540 +719 1514 0.4940 +719 1520 0.4700 +719 1536 0.6990 +719 1604 0.6630 +719 1675 0.4420 +719 2167 0.4080 +719 2207 0.8440 +719 2209 0.5690 +719 2212 0.6760 +719 2213 0.6350 +719 2219 0.4960 +719 2220 0.4120 +719 2357 0.7910 +719 2358 0.6170 +719 2359 0.4780 +719 2587 0.5240 +719 2769 0.4290 +719 2832 0.5040 +719 2847 0.5170 +719 2852 0.4990 +719 2861 0.5110 +719 2921 0.4140 +719 3059 0.4060 +719 3075 0.7770 +719 3146 0.5190 +719 3458 0.4650 +719 3553 0.7390 +719 3557 0.4080 +719 3565 0.5740 +719 3569 0.5000 +719 3576 0.7960 +719 3586 0.4380 +719 3587 0.4190 +719 3620 0.4400 +719 3627 0.6110 +719 3684 0.7390 +719 3687 0.6610 +719 3689 0.7860 +719 3762 0.4440 +719 3827 0.6150 +719 3903 0.5720 +719 3937 0.5640 +719 4153 0.5880 +719 4179 0.6670 +719 4332 0.4580 +719 4481 0.5080 +719 4599 0.4730 +719 4688 0.6040 +719 4852 0.5280 +719 4886 0.5230 +719 4887 0.4990 +719 4889 0.5050 +719 4985 0.5060 +719 4988 0.4990 +719 5025 0.5480 +719 5027 0.5960 +719 5173 0.4990 +719 5179 0.5370 +719 5199 0.6740 +719 5367 0.5110 +719 5368 0.5680 +719 5443 0.5550 +719 5539 0.4990 +719 5540 0.4990 +719 5648 0.5800 +719 5660 0.5230 +719 5697 0.4990 +719 5724 0.5650 +719 5788 0.4350 +719 6037 0.5300 +719 6347 0.6710 +719 6348 0.4460 +719 6351 0.6350 +719 6354 0.5000 +719 6357 0.4660 +719 6363 0.4930 +719 6373 0.5890 +719 6374 0.5710 +719 6403 0.6050 +719 6503 0.4820 +719 6688 0.4510 +719 6714 0.5580 +719 6750 0.5210 +719 6751 0.5170 +719 6752 0.5070 +719 6753 0.5070 +719 6754 0.4990 +719 6755 0.4990 +719 7096 0.4530 +719 7097 0.7530 +719 7099 0.6050 +719 7124 0.5070 +719 7275 0.4670 +719 7305 0.7380 +719 7805 0.4990 +719 8484 0.5040 +719 8522 0.5960 +719 8811 0.5100 +719 8862 0.5110 +719 9034 0.4340 +719 9283 0.5130 +719 9332 0.6330 +719 9450 0.4280 +719 10261 0.4360 +719 10288 0.4700 +719 10316 0.5120 +719 10561 0.5040 +719 10563 0.4900 +719 10663 0.4460 +719 10673 0.4020 +719 10747 0.5750 +719 10874 0.4990 +719 11006 0.4520 +719 11326 0.7830 +719 22852 0.4980 +719 22918 0.6960 +719 27180 0.4180 +719 27202 0.5720 +719 29899 0.4280 +719 51083 0.4990 +719 51284 0.4060 +719 51311 0.4890 +719 51338 0.5590 +719 53831 0.5450 +719 54209 0.5380 +719 54331 0.4870 +719 56833 0.4160 +719 56923 0.5250 +719 58191 0.5550 +719 58475 0.4250 +719 63940 0.4750 +719 64231 0.4260 +719 64581 0.4530 +719 84539 0.5210 +719 84868 0.6130 +719 90865 0.5030 +719 114294 0.5820 +719 114548 0.4040 +719 126014 0.4320 +719 129521 0.4990 +719 151742 0.4370 +719 256933 0.5080 +719 283869 0.5080 +720 721 0.9990 +720 722 0.9980 +720 725 0.9950 +720 727 0.7660 +720 728 0.9800 +720 729 0.4010 +720 730 0.6200 +720 731 0.9150 +720 732 0.8050 +720 733 0.5680 +720 735 0.5500 +720 759 0.4010 +720 760 0.4200 +720 762 0.5710 +720 920 0.4560 +720 966 0.7120 +720 1101 0.5250 +720 1191 0.6310 +720 1308 0.4230 +720 1356 0.6780 +720 1361 0.6010 +720 1378 0.9990 +720 1379 0.5860 +720 1380 0.5880 +720 1401 0.7870 +720 1471 0.4670 +720 1509 0.5480 +720 1513 0.4800 +720 1524 0.5600 +720 1589 0.9230 +720 1604 0.9950 +720 1675 0.4260 +720 2028 0.7930 +720 2054 0.4240 +720 2058 0.5150 +720 2086 0.6730 +720 2099 0.4470 +720 2147 0.7350 +720 2153 0.5610 +720 2159 0.4290 +720 2161 0.4040 +720 2165 0.4860 +720 2219 0.7440 +720 2220 0.7910 +720 2243 0.6640 +720 2244 0.4250 +720 2266 0.4580 +720 2331 0.5740 +720 2335 0.4610 +720 2625 0.4090 +720 2638 0.4580 +720 2739 0.5290 +720 2993 0.4050 +720 3009 0.5860 +720 3053 0.4560 +720 3075 0.9650 +720 3078 0.7690 +720 3080 0.6130 +720 3105 0.7610 +720 3106 0.8750 +720 3107 0.5720 +720 3117 0.4460 +720 3119 0.5260 +720 3123 0.7610 +720 3127 0.5120 +720 3183 0.4740 +720 3240 0.8170 +720 3250 0.4100 +720 3263 0.4160 +720 3273 0.7250 +720 3305 0.4340 +720 3371 0.4090 +720 3426 0.9450 +720 3458 0.4320 +720 3483 0.4640 +720 3552 0.4050 +720 3553 0.4900 +720 3569 0.4800 +720 3586 0.4600 +720 3684 0.5050 +720 3689 0.6330 +720 3698 0.4210 +720 3699 0.4210 +720 3700 0.6730 +720 3818 0.4430 +720 3827 0.6880 +720 3973 0.5370 +720 3998 0.4700 +720 4153 0.9810 +720 4179 0.9980 +720 4700 0.4630 +720 4958 0.5680 +720 5004 0.4440 +720 5005 0.4150 +720 5176 0.6030 +720 5196 0.4040 +720 5199 0.7340 +720 5225 0.4110 +720 5265 0.5690 +720 5340 0.7220 +720 5345 0.6430 +720 5555 0.4020 +720 5627 0.9460 +720 5648 0.9420 +720 5657 0.4290 +720 5806 0.6080 +720 5939 0.5890 +720 6233 0.4410 +720 6347 0.4040 +720 6469 0.4620 +720 6480 0.4420 +720 6499 0.5340 +720 7018 0.4520 +720 7056 0.5960 +720 7124 0.5060 +720 7130 0.5080 +720 7148 0.8530 +720 7276 0.4320 +720 7415 0.5120 +720 7448 0.8080 +720 7450 0.4510 +720 8547 0.7670 +720 8718 0.7650 +720 8797 0.4330 +720 8859 0.8500 +720 9172 0.7030 +720 9179 0.4670 +720 9370 0.5100 +720 9622 0.4540 +720 10162 0.4060 +720 10567 0.5270 +720 10584 0.5880 +720 10747 0.9970 +720 10877 0.6990 +720 10878 0.6030 +720 11326 0.6650 +720 23621 0.4560 +720 25915 0.4190 +720 27202 0.9200 +720 30816 0.6680 +720 51279 0.5130 +720 54209 0.4370 +720 54757 0.4130 +720 54829 0.4600 +720 55024 0.4180 +720 55748 0.4260 +720 56975 0.5240 +720 78989 0.7010 +720 79841 0.5590 +720 81494 0.6840 +720 85476 0.4260 +720 85478 0.4890 +720 124925 0.4450 +720 284161 0.4120 +720 340351 0.5470 +720 390714 0.4140 +720 405754 0.6680 +720 440955 0.5910 +720 102723407 0.4830 +721 722 0.9980 +721 725 0.9950 +721 727 0.7320 +721 728 0.7450 +721 729 0.4120 +721 731 0.5730 +721 732 0.5550 +721 733 0.4290 +721 735 0.5240 +721 760 0.4110 +721 966 0.6690 +721 1101 0.5300 +721 1191 0.6930 +721 1356 0.6530 +721 1378 0.9990 +721 1379 0.7410 +721 1380 0.5820 +721 1401 0.7740 +721 1509 0.5300 +721 1524 0.5240 +721 1589 0.7420 +721 1604 0.9920 +721 1675 0.4270 +721 1861 0.4340 +721 2028 0.7880 +721 2054 0.4330 +721 2086 0.6490 +721 2147 0.6950 +721 2153 0.6090 +721 2159 0.4280 +721 2165 0.5290 +721 2219 0.7200 +721 2220 0.7720 +721 2243 0.4300 +721 2331 0.5620 +721 2335 0.4070 +721 2934 0.5560 +721 3053 0.4100 +721 3075 0.9510 +721 3078 0.7740 +721 3080 0.5990 +721 3105 0.5350 +721 3106 0.5420 +721 3240 0.5820 +721 3250 0.4320 +721 3263 0.4010 +721 3273 0.6560 +721 3426 0.9540 +721 3553 0.4150 +721 3569 0.4180 +721 3689 0.6150 +721 3698 0.6000 +721 3700 0.6210 +721 3827 0.4280 +721 3973 0.5640 +721 3998 0.4830 +721 4153 0.9700 +721 4179 0.9980 +721 4353 0.5150 +721 4958 0.5700 +721 5199 0.7100 +721 5225 0.4160 +721 5265 0.4990 +721 5340 0.5520 +721 5345 0.4130 +721 5555 0.4340 +721 5627 0.9530 +721 5648 0.9350 +721 5657 0.4250 +721 5806 0.5840 +721 5939 0.6210 +721 6233 0.4400 +721 7018 0.4580 +721 7056 0.6020 +721 7124 0.4030 +721 7148 0.6010 +721 7415 0.5120 +721 7416 0.4020 +721 7448 0.7330 +721 7450 0.4080 +721 8547 0.7470 +721 8718 0.4040 +721 8859 0.6900 +721 9172 0.7140 +721 9179 0.4990 +721 9370 0.4890 +721 10162 0.4840 +721 10436 0.4340 +721 10567 0.5450 +721 10584 0.5830 +721 10747 0.9940 +721 10877 0.7230 +721 10878 0.5960 +721 11326 0.6640 +721 23621 0.4510 +721 25915 0.4480 +721 27202 0.4100 +721 30816 0.6460 +721 51279 0.4330 +721 54209 0.4400 +721 54742 0.4050 +721 54829 0.4120 +721 55748 0.4610 +721 78989 0.6640 +721 79841 0.5930 +721 81494 0.6990 +721 85477 0.5440 +721 124925 0.4790 +721 340351 0.5690 +721 390714 0.4140 +721 405754 0.6480 +722 725 0.9780 +722 727 0.4410 +722 731 0.6180 +722 732 0.5870 +722 733 0.5820 +722 735 0.4650 +722 1191 0.4350 +722 1361 0.4350 +722 1401 0.7600 +722 1604 0.6050 +722 1675 0.4850 +722 2017 0.4250 +722 2153 0.5380 +722 2243 0.4770 +722 2244 0.4580 +722 2266 0.5520 +722 2267 0.4010 +722 2312 0.4860 +722 3053 0.4680 +722 3059 0.4320 +722 3075 0.4420 +722 3240 0.5190 +722 3250 0.4630 +722 3273 0.4630 +722 3308 0.4370 +722 3426 0.8160 +722 3698 0.5010 +722 3700 0.4220 +722 3713 0.6780 +722 3827 0.6710 +722 4014 0.7210 +722 4057 0.5650 +722 5004 0.6550 +722 5216 0.4580 +722 5225 0.4080 +722 5265 0.4010 +722 5542 0.8180 +722 5544 0.7440 +722 5545 0.7500 +722 5554 0.7130 +722 5555 0.7690 +722 5627 0.8010 +722 5648 0.4440 +722 6277 0.4370 +722 6281 0.5170 +722 6698 0.6590 +722 6699 0.7050 +722 6700 0.5280 +722 6701 0.5690 +722 6707 0.7210 +722 6779 0.7740 +722 7057 0.5010 +722 7062 0.5590 +722 7157 0.4910 +722 7276 0.4590 +722 7448 0.4820 +722 7454 0.6500 +722 7456 0.6050 +722 7783 0.4010 +722 8403 0.5510 +722 8547 0.4510 +722 8874 0.4120 +722 10878 0.6720 +722 10957 0.7780 +722 11166 0.5460 +722 22917 0.4190 +722 50839 0.4700 +722 51606 0.4530 +722 55615 0.4650 +722 55748 0.4530 +722 64223 0.4870 +722 79109 0.4850 +722 84766 0.4380 +722 93436 0.4780 +722 345456 0.4230 +722 375189 0.4170 +722 388698 0.5080 +722 653247 0.7280 +725 731 0.7640 +725 732 0.6260 +725 733 0.5940 +725 735 0.5600 +725 1361 0.4690 +725 1378 0.6080 +725 1604 0.4280 +725 2153 0.6280 +725 2243 0.4020 +725 2266 0.4440 +725 3053 0.5000 +725 3078 0.7060 +725 3080 0.7430 +725 3273 0.5150 +725 3426 0.8120 +725 3698 0.4710 +725 3950 0.4290 +725 4153 0.4270 +725 5225 0.5300 +725 5627 0.8740 +725 5648 0.5080 +725 6293 0.4200 +725 7783 0.4140 +725 8547 0.4160 +725 9120 0.4160 +725 10671 0.4630 +725 10747 0.5060 +725 10877 0.7740 +725 10878 0.7110 +725 22917 0.4550 +725 51129 0.4170 +725 51164 0.6150 +725 51438 0.4310 +725 55748 0.5490 +725 57692 0.4560 +725 79027 0.4820 +725 79887 0.4110 +725 80309 0.4220 +725 81557 0.4030 +725 728239 0.4050 +726 808 0.5980 +726 810 0.6010 +726 825 0.5560 +726 826 0.9340 +726 831 0.7230 +726 975 0.5130 +726 4975 0.5170 +726 6921 0.4400 +726 10116 0.4720 +726 10745 0.4610 +726 51806 0.6010 +726 55527 0.5030 +726 56929 0.4860 +726 84290 0.8340 +726 91860 0.6020 +726 136332 0.4490 +726 153443 0.5470 +726 163688 0.6020 +727 728 0.9990 +727 729 0.9990 +727 730 0.9990 +727 731 0.9990 +727 732 0.9990 +727 733 0.9970 +727 735 0.9990 +727 947 0.7760 +727 966 0.7460 +727 1191 0.6320 +727 1325 0.4990 +727 1356 0.4300 +727 1361 0.8470 +727 1369 0.5650 +727 1370 0.4470 +727 1401 0.4390 +727 1604 0.5010 +727 1675 0.4820 +727 1991 0.8230 +727 2147 0.9210 +727 2159 0.4180 +727 2243 0.4820 +727 2335 0.5100 +727 2587 0.4990 +727 2832 0.4990 +727 2847 0.4990 +727 2852 0.5070 +727 2861 0.4990 +727 3009 0.4170 +727 3024 0.4200 +727 3053 0.4580 +727 3075 0.8240 +727 3078 0.6840 +727 3240 0.6400 +727 3273 0.5750 +727 3426 0.6990 +727 3483 0.4800 +727 3486 0.4260 +727 3553 0.4110 +727 3569 0.4270 +727 3576 0.7540 +727 3827 0.7010 +727 4018 0.4180 +727 4153 0.5920 +727 4179 0.5360 +727 4301 0.7240 +727 4852 0.5120 +727 4886 0.5150 +727 4887 0.4990 +727 4889 0.4990 +727 4985 0.5070 +727 4988 0.5070 +727 5173 0.4990 +727 5176 0.5290 +727 5179 0.5110 +727 5199 0.5590 +727 5340 0.7250 +727 5345 0.6380 +727 5367 0.5270 +727 5368 0.4990 +727 5443 0.5260 +727 5539 0.5020 +727 5540 0.5140 +727 5624 0.4260 +727 5648 0.4680 +727 5660 0.4990 +727 5697 0.5070 +727 6687 0.9000 +727 6714 0.5420 +727 6750 0.4990 +727 6751 0.5050 +727 6752 0.5050 +727 6753 0.5050 +727 6754 0.5030 +727 6755 0.5210 +727 7078 0.4240 +727 7124 0.4170 +727 7185 0.7700 +727 7416 0.9010 +727 7417 0.5410 +727 7419 0.5440 +727 7448 0.8890 +727 8484 0.4990 +727 8811 0.4990 +727 8862 0.4990 +727 9283 0.4990 +727 10105 0.9010 +727 10316 0.4990 +727 10438 0.4770 +727 10452 0.5400 +727 10747 0.5390 +727 10874 0.5210 +727 10878 0.4240 +727 11093 0.4810 +727 26086 0.4060 +727 27202 0.9900 +727 29899 0.4050 +727 51083 0.5080 +727 51248 0.7210 +727 51279 0.4170 +727 54766 0.4120 +727 56923 0.4990 +727 63940 0.4020 +727 81494 0.5240 +727 83447 0.7230 +727 84134 0.5400 +727 84539 0.4990 +727 117159 0.5400 +727 129521 0.4990 +727 144100 0.7290 +727 256933 0.4990 +727 283869 0.4990 +727 340348 0.7200 +728 811 0.5080 +728 912 0.4270 +728 920 0.5970 +728 925 0.5000 +728 941 0.4490 +728 942 0.5710 +728 966 0.6520 +728 968 0.5800 +728 976 0.4570 +728 1129 0.4080 +728 1230 0.6380 +728 1232 0.4180 +728 1234 0.8740 +728 1235 0.4160 +728 1238 0.4020 +728 1277 0.4370 +728 1278 0.4260 +728 1325 0.5010 +728 1378 0.7650 +728 1380 0.5010 +728 1436 0.4850 +728 1437 0.4180 +728 1441 0.5900 +728 1514 0.4310 +728 1520 0.4080 +728 1524 0.5040 +728 1604 0.7100 +728 1813 0.4030 +728 1815 0.4080 +728 1901 0.4300 +728 2147 0.4570 +728 2152 0.4500 +728 2167 0.4050 +728 2204 0.5010 +728 2207 0.7760 +728 2209 0.5720 +728 2212 0.7190 +728 2213 0.5260 +728 2219 0.6280 +728 2220 0.4700 +728 2268 0.5220 +728 2357 0.8290 +728 2358 0.6050 +728 2359 0.4610 +728 2587 0.5260 +728 2638 0.4890 +728 2769 0.6530 +728 2770 0.4400 +728 2771 0.8470 +728 2832 0.4990 +728 2847 0.5040 +728 2852 0.6720 +728 2861 0.5390 +728 2919 0.4160 +728 2920 0.5900 +728 3055 0.4320 +728 3075 0.6690 +728 3122 0.5000 +728 3351 0.4310 +728 3383 0.4660 +728 3426 0.4280 +728 3454 0.4110 +728 3458 0.6960 +728 3490 0.4040 +728 3552 0.4230 +728 3553 0.6220 +728 3565 0.6060 +728 3569 0.6000 +728 3576 0.7890 +728 3577 0.6450 +728 3579 0.7830 +728 3586 0.6820 +728 3605 0.4720 +728 3627 0.4120 +728 3684 0.8220 +728 3687 0.6640 +728 3689 0.6080 +728 3827 0.6420 +728 4153 0.7720 +728 4179 0.6900 +728 4311 0.4890 +728 4318 0.4620 +728 4353 0.5300 +728 4360 0.5900 +728 4481 0.4920 +728 4542 0.4700 +728 4688 0.4720 +728 4852 0.5390 +728 4886 0.5140 +728 4887 0.4990 +728 4889 0.4990 +728 4985 0.5050 +728 4988 0.5160 +728 5173 0.5320 +728 5179 0.5080 +728 5199 0.7660 +728 5329 0.4750 +728 5367 0.5120 +728 5368 0.5510 +728 5443 0.5980 +728 5539 0.4990 +728 5540 0.4990 +728 5648 0.5990 +728 5657 0.4050 +728 5660 0.5190 +728 5697 0.5000 +728 5724 0.4230 +728 5733 0.4710 +728 5743 0.5580 +728 5788 0.5180 +728 6037 0.5050 +728 6223 0.9860 +728 6283 0.4610 +728 6347 0.5470 +728 6348 0.5980 +728 6351 0.4190 +728 6376 0.6220 +728 6387 0.5730 +728 6402 0.4510 +728 6403 0.6280 +728 6556 0.7950 +728 6688 0.5200 +728 6714 0.5870 +728 6750 0.5270 +728 6751 0.5060 +728 6752 0.5130 +728 6753 0.5150 +728 6754 0.5030 +728 6755 0.5070 +728 7056 0.4500 +728 7096 0.4100 +728 7097 0.9220 +728 7099 0.6910 +728 7124 0.7130 +728 7305 0.6050 +728 7454 0.6220 +728 7941 0.4460 +728 8484 0.4990 +728 8547 0.4400 +728 8698 0.4200 +728 8811 0.4990 +728 8862 0.5340 +728 9034 0.4610 +728 9283 0.4990 +728 9332 0.5770 +728 9586 0.4240 +728 10261 0.4500 +728 10288 0.4930 +728 10316 0.5220 +728 10663 0.4140 +728 10747 0.6400 +728 10803 0.4380 +728 10874 0.6880 +728 11326 0.5560 +728 22918 0.7080 +728 27165 0.5160 +728 27202 0.8070 +728 29992 0.4620 +728 51083 0.5250 +728 51311 0.5280 +728 53831 0.4810 +728 54210 0.4850 +728 54518 0.4180 +728 56923 0.5180 +728 58191 0.4360 +728 63940 0.4620 +728 64581 0.5820 +728 78989 0.4130 +728 84539 0.5610 +728 84868 0.5180 +728 114548 0.4650 +728 126006 0.4010 +728 129521 0.4990 +728 140885 0.4270 +728 256933 0.5020 +728 283869 0.5020 +729 730 0.9950 +729 731 0.9850 +729 732 0.9840 +729 733 0.9940 +729 735 0.9960 +729 947 0.7220 +729 966 0.5940 +729 1191 0.6640 +729 2243 0.4540 +729 2739 0.4620 +729 3053 0.4940 +729 3075 0.6660 +729 3426 0.5840 +729 3700 0.5440 +729 4301 0.7200 +729 5199 0.4450 +729 5238 0.4890 +729 5345 0.4050 +729 6687 0.9000 +729 6694 0.4250 +729 7416 0.9010 +729 7417 0.5450 +729 7419 0.5450 +729 7448 0.6680 +729 10105 0.9000 +729 10452 0.5610 +729 51248 0.7200 +729 83447 0.7330 +729 84134 0.5620 +729 117159 0.5400 +729 144100 0.7200 +729 340348 0.7200 +730 731 0.9840 +730 732 0.9910 +730 733 0.9940 +730 735 0.9860 +730 922 0.5250 +730 947 0.7390 +730 966 0.5950 +730 1191 0.8470 +730 1828 0.4420 +730 3075 0.5390 +730 3078 0.4650 +730 3240 0.5600 +730 3426 0.5990 +730 3483 0.4190 +730 4060 0.5420 +730 4301 0.7200 +730 5340 0.6140 +730 5345 0.4100 +730 5950 0.4630 +730 6288 0.4390 +730 6363 0.4320 +730 6366 0.4630 +730 6687 0.9000 +730 7416 0.9020 +730 7417 0.5580 +730 7419 0.5520 +730 7448 0.6910 +730 8404 0.4060 +730 8407 0.4590 +730 8808 0.4160 +730 10105 0.9000 +730 10452 0.5500 +730 51248 0.7200 +730 83447 0.7330 +730 84134 0.5500 +730 117159 0.5720 +730 144100 0.7200 +730 283521 0.4200 +730 340348 0.7200 +730 100423062 0.5910 +731 732 0.9990 +731 733 0.9990 +731 735 0.9970 +731 866 0.4280 +731 947 0.7240 +731 966 0.7420 +731 1191 0.6630 +731 1361 0.5490 +731 1378 0.4460 +731 1604 0.4190 +731 2147 0.4770 +731 2158 0.4860 +731 2160 0.4500 +731 2165 0.6460 +731 2220 0.5360 +731 2243 0.7530 +731 2244 0.6470 +731 2266 0.6480 +731 2267 0.4160 +731 3053 0.5490 +731 3075 0.5330 +731 3078 0.5820 +731 3080 0.4020 +731 3127 0.6400 +731 3263 0.4400 +731 3273 0.5170 +731 3426 0.5180 +731 3697 0.6750 +731 3698 0.5180 +731 3699 0.5290 +731 4153 0.5800 +731 4301 0.7200 +731 5004 0.4290 +731 5005 0.4170 +731 5199 0.5250 +731 5236 0.6520 +731 5267 0.4440 +731 5340 0.4880 +731 5345 0.6790 +731 5648 0.4990 +731 6288 0.5340 +731 6289 0.5370 +731 6291 0.4720 +731 6554 0.4160 +731 6687 0.9000 +731 6694 0.4750 +731 6906 0.5540 +731 7416 0.9030 +731 7417 0.5590 +731 7419 0.5900 +731 7448 0.8320 +731 8547 0.4170 +731 10105 0.9000 +731 10246 0.6390 +731 10452 0.5400 +731 10747 0.4870 +731 10841 0.5740 +731 10877 0.5540 +731 10878 0.4530 +731 23732 0.4460 +731 26998 0.4390 +731 51156 0.5090 +731 51248 0.7200 +731 51279 0.5430 +731 54363 0.4250 +731 54942 0.4530 +731 81494 0.6130 +731 83447 0.7200 +731 84134 0.5400 +731 116519 0.5250 +731 117159 0.5400 +731 144100 0.7200 +731 340348 0.7200 +732 733 0.9990 +732 735 0.9890 +732 947 0.7200 +732 966 0.8000 +732 1191 0.7700 +732 1361 0.7160 +732 1600 0.6400 +732 2147 0.4410 +732 2158 0.4220 +732 2165 0.4530 +732 2243 0.5950 +732 2244 0.5540 +732 2266 0.6010 +732 3053 0.4730 +732 3075 0.4910 +732 3078 0.4410 +732 3080 0.4420 +732 3127 0.4950 +732 3273 0.4930 +732 3426 0.4290 +732 3697 0.4810 +732 3698 0.4920 +732 3699 0.4610 +732 4153 0.5410 +732 4301 0.7280 +732 5199 0.4220 +732 5236 0.7020 +732 5267 0.4260 +732 5648 0.4970 +732 6291 0.4330 +732 6687 0.9000 +732 6906 0.4730 +732 7416 0.9000 +732 7417 0.5400 +732 7419 0.5400 +732 7448 0.7320 +732 8547 0.4060 +732 10105 0.9000 +732 10246 0.4460 +732 10452 0.5620 +732 10747 0.5070 +732 10877 0.5040 +732 10878 0.4330 +732 23732 0.4780 +732 51248 0.7200 +732 54363 0.4010 +732 55276 0.5500 +732 81494 0.5960 +732 83447 0.7280 +732 84134 0.5570 +732 116519 0.4340 +732 117159 0.5400 +732 144100 0.7200 +732 340348 0.7200 +733 735 0.9900 +733 947 0.5400 +733 966 0.6090 +733 1191 0.6490 +733 1361 0.4090 +733 2243 0.4540 +733 2266 0.4110 +733 3053 0.4200 +733 3075 0.4660 +733 3127 0.5500 +733 3426 0.4310 +733 3933 0.7990 +733 3934 0.5370 +733 4018 0.7040 +733 4301 0.5400 +733 5004 0.6310 +733 5047 0.7210 +733 5199 0.4090 +733 5236 0.5230 +733 5340 0.7130 +733 5345 0.4200 +733 5648 0.4610 +733 5730 0.7890 +733 6687 0.5660 +733 7416 0.5400 +733 7417 0.5400 +733 7419 0.5400 +733 7448 0.6910 +733 8547 0.4180 +733 10105 0.5440 +733 10452 0.5540 +733 10747 0.4860 +733 10877 0.4430 +733 10878 0.4080 +733 23621 0.4470 +733 29991 0.4070 +733 51248 0.5400 +733 81494 0.4600 +733 83447 0.5520 +733 84134 0.5520 +733 117159 0.5400 +733 144100 0.5400 +733 286256 0.4920 +733 340348 0.5400 +734 766 0.7670 +734 793 0.8450 +734 794 0.6630 +734 795 0.4310 +734 1666 0.9050 +734 4683 0.5350 +734 84443 0.4550 +734 115330 0.4010 +734 339287 0.4070 +735 947 0.7240 +735 966 0.9610 +735 1191 0.7970 +735 1356 0.5650 +735 1361 0.4180 +735 1401 0.6410 +735 2147 0.5240 +735 2158 0.6200 +735 2161 0.4010 +735 2243 0.7310 +735 2244 0.7020 +735 2266 0.6750 +735 3001 0.4200 +735 3053 0.5370 +735 3075 0.5880 +735 3078 0.4150 +735 3240 0.5670 +735 3250 0.4230 +735 3263 0.6450 +735 3273 0.5570 +735 3313 0.7300 +735 3320 0.4850 +735 3326 0.4830 +735 3426 0.7070 +735 3699 0.5020 +735 3700 0.5000 +735 3818 0.4290 +735 3827 0.5110 +735 3929 0.4160 +735 3950 0.4250 +735 4018 0.6180 +735 4153 0.6010 +735 4301 0.7200 +735 5004 0.4970 +735 5199 0.4150 +735 5265 0.4800 +735 5340 0.7570 +735 5444 0.4730 +735 5551 0.7070 +735 5648 0.4340 +735 6687 0.9000 +735 7018 0.6450 +735 7276 0.4130 +735 7416 0.9000 +735 7417 0.5400 +735 7419 0.5400 +735 7448 0.9570 +735 10105 0.9000 +735 10452 0.5550 +735 10747 0.4320 +735 51248 0.7200 +735 81494 0.4270 +735 83447 0.7350 +735 84134 0.5600 +735 116844 0.5670 +735 117159 0.5990 +735 144100 0.7200 +735 340348 0.7200 +735 440184 0.4510 +738 1938 0.4080 +738 2321 0.4120 +738 2324 0.4450 +738 2800 0.6600 +738 2803 0.6520 +738 3482 0.6580 +738 3791 0.4560 +738 4074 0.5810 +738 4905 0.5960 +738 5859 0.4930 +738 5861 0.5020 +738 5862 0.4100 +738 5870 0.7210 +738 6293 0.9990 +738 6811 0.5020 +738 7010 0.7590 +738 7075 0.7110 +738 7110 0.6280 +738 7260 0.9380 +738 8225 0.4220 +738 8674 0.7980 +738 8675 0.8870 +738 8677 0.8290 +738 8774 0.6450 +738 8775 0.5400 +738 9183 0.4880 +738 9341 0.5670 +738 9342 0.8110 +738 9367 0.5210 +738 9375 0.4380 +738 9382 0.8420 +738 9392 0.4750 +738 9527 0.4250 +738 9570 0.4800 +738 9648 0.6880 +738 9827 0.5780 +738 10139 0.6830 +738 10226 0.5290 +738 10228 0.9920 +738 10244 0.5420 +738 10466 0.8270 +738 10490 0.4770 +738 10618 0.6700 +738 11311 0.6440 +738 11336 0.5350 +738 22796 0.8150 +738 22836 0.5220 +738 23265 0.4740 +738 23317 0.4140 +738 23339 0.5160 +738 23355 0.4520 +738 25839 0.7890 +738 25972 0.4940 +738 26225 0.5500 +738 27352 0.4900 +738 29997 0.4450 +738 51209 0.4990 +738 51378 0.5710 +738 51542 0.9990 +738 51560 0.5710 +738 51594 0.4440 +738 51699 0.4350 +738 53407 0.4300 +738 55088 0.5650 +738 55275 0.9990 +738 55610 0.9990 +738 55684 0.4310 +738 55763 0.5770 +738 57511 0.7530 +738 57589 0.5850 +738 60561 0.4610 +738 63908 0.4990 +738 64326 0.4240 +738 64601 0.5200 +738 79571 0.6580 +738 83548 0.7750 +738 84062 0.7410 +738 84964 0.4440 +738 90196 0.5980 +738 91949 0.7900 +738 126208 0.5050 +738 143187 0.8210 +738 146923 0.4960 +738 149371 0.5650 +738 165055 0.4570 +738 201627 0.4240 +738 339122 0.5660 +740 972 0.7690 +740 1632 0.4860 +740 1743 0.4060 +740 1892 0.5100 +740 1962 0.4720 +740 2323 0.7840 +740 2395 0.5520 +740 3030 0.4760 +740 3150 0.6570 +740 3151 0.6590 +740 3283 0.4240 +740 3284 0.4240 +740 3396 0.9140 +740 3658 0.6570 +740 3921 0.6320 +740 4528 0.9290 +740 4706 0.9400 +740 4904 0.4420 +740 5018 0.9190 +740 5037 0.7870 +740 5245 0.4150 +740 5469 0.7170 +740 5538 0.4420 +740 5542 0.4210 +740 5544 0.4210 +740 5545 0.4210 +740 5554 0.4210 +740 5555 0.4210 +740 5599 0.7880 +740 5601 0.7860 +740 6122 0.8140 +740 6123 0.8130 +740 6124 0.8240 +740 6132 0.6840 +740 6133 0.7190 +740 6135 0.8530 +740 6136 0.6560 +740 6139 0.8540 +740 6150 0.9960 +740 6154 0.6190 +740 6157 0.6400 +740 6167 0.4200 +740 6182 0.9930 +740 6183 0.9950 +740 6187 0.8610 +740 6193 0.7990 +740 6202 0.5580 +740 6203 0.8680 +740 6205 0.8630 +740 6207 0.7980 +740 6208 0.7710 +740 6210 0.4800 +740 6217 0.8240 +740 6222 0.8360 +740 6224 0.8370 +740 6228 0.8580 +740 6235 0.7650 +740 6648 0.7750 +740 6742 0.5210 +740 7019 0.4360 +740 7264 0.4440 +740 7284 0.9130 +740 7818 0.9960 +740 8225 0.8190 +740 8624 0.8530 +740 9085 0.4720 +740 9093 0.4090 +740 9349 0.8450 +740 9374 0.5410 +740 9425 0.4790 +740 9553 0.9940 +740 9617 0.6330 +740 9801 0.9970 +740 9858 0.8630 +740 10102 0.6730 +740 10240 0.8830 +740 10455 0.4980 +740 10473 0.6580 +740 10573 0.9530 +740 10884 0.9760 +740 10964 0.6530 +740 11182 0.4210 +740 11222 0.9930 +740 23107 0.8670 +740 23193 0.5150 +740 23204 0.4860 +740 23405 0.8110 +740 23423 0.5480 +740 23521 0.7850 +740 23640 0.6390 +740 23732 0.6840 +740 26164 0.8360 +740 26275 0.8970 +740 26515 0.6960 +740 26519 0.4690 +740 26520 0.7710 +740 26589 0.9960 +740 27430 0.4330 +740 28957 0.8730 +740 28973 0.9200 +740 28977 0.9470 +740 28998 0.9960 +740 29074 0.9480 +740 29088 0.9970 +740 29093 0.9940 +740 29102 0.8110 +740 29960 0.8450 +740 29988 0.4210 +740 50814 0.4360 +740 51014 0.5450 +740 51021 0.9940 +740 51023 0.9700 +740 51069 0.9920 +740 51073 0.9980 +740 51081 0.9930 +740 51116 0.9750 +740 51121 0.6250 +740 51149 0.7950 +740 51250 0.8130 +740 51253 0.9740 +740 51258 0.9710 +740 51263 0.9910 +740 51264 0.9980 +740 51318 0.9660 +740 51373 0.8690 +740 51388 0.4130 +740 51574 0.5290 +740 51642 0.9410 +740 51649 0.8840 +740 51650 0.9020 +740 51734 0.4050 +740 54148 0.9820 +740 54460 0.8740 +740 54516 0.7730 +740 54534 0.9850 +740 54948 0.9930 +740 54998 0.8330 +740 55037 0.8370 +740 55052 0.9860 +740 55168 0.9770 +740 55173 0.9920 +740 55178 0.8200 +740 55210 0.4170 +740 55268 0.4870 +740 55272 0.7380 +740 55316 0.7670 +740 55651 0.5880 +740 55794 0.8470 +740 55862 0.5020 +740 56945 0.9470 +740 56993 0.6020 +740 57129 0.9980 +740 60488 0.9910 +740 63875 0.9960 +740 63931 0.9910 +740 64374 0.6360 +740 64432 0.9880 +740 64928 0.8970 +740 64949 0.8720 +740 64951 0.8650 +740 64960 0.9930 +740 64963 0.9900 +740 64965 0.9930 +740 64968 0.9880 +740 64969 0.9930 +740 64975 0.9970 +740 64976 0.9960 +740 64978 0.9840 +740 64979 0.9960 +740 64981 0.9930 +740 64983 0.9920 +740 65003 0.9930 +740 65005 0.9540 +740 65008 0.9390 +740 65080 0.9960 +740 65121 0.5460 +740 65122 0.5460 +740 65993 0.8800 +740 78988 0.9460 +740 79590 0.9400 +740 80146 0.4290 +740 80270 0.4250 +740 81031 0.4210 +740 84311 0.9600 +740 84340 0.8490 +740 84545 0.9970 +740 85476 0.8360 +740 85865 0.8260 +740 90313 0.8560 +740 90480 0.9850 +740 90624 0.6590 +740 90639 0.4010 +740 91574 0.8560 +740 92170 0.8390 +740 92399 0.8570 +740 93517 0.4290 +740 114134 0.4210 +740 114781 0.6530 +740 115416 0.8490 +740 116540 0.9000 +740 116541 0.9770 +740 118487 0.8940 +740 122704 0.9520 +740 124359 0.4720 +740 124995 0.9930 +740 126402 0.7800 +740 128308 0.9110 +740 130916 0.8380 +740 133015 0.4290 +740 135138 0.4290 +740 140801 0.6260 +740 148022 0.5390 +740 149478 0.5900 +740 154091 0.4210 +740 157310 0.7840 +740 219402 0.6570 +740 219927 0.9750 +740 253175 0.4720 +740 284106 0.4550 +740 343068 0.5460 +740 343070 0.5460 +740 345051 0.6760 +740 347487 0.6260 +740 353376 0.5390 +740 387338 0.8260 +740 390999 0.5460 +740 391002 0.5460 +740 400735 0.5460 +740 400736 0.5460 +740 440560 0.5460 +740 440561 0.5460 +740 441873 0.5460 +740 493753 0.4750 +740 641776 0.4750 +740 643909 0.4750 +740 645359 0.5460 +740 653247 0.4210 +740 653619 0.5460 +740 728524 0.4750 +740 729528 0.5460 +740 100287482 0.6260 +740 100302736 0.5390 +740 100526842 0.8310 +740 100996746 0.4750 +740 101929983 0.5460 +740 105180390 0.4750 +740 105180391 0.4750 +740 127898561 0.8110 +741 1939 0.6030 +741 3320 0.4510 +741 3326 0.4570 +741 4809 0.4300 +741 5202 0.5230 +741 5434 0.4380 +741 7108 0.9040 +741 8607 0.8170 +741 8725 0.4870 +741 9169 0.4140 +741 9191 0.4060 +741 9326 0.6810 +741 9343 0.8820 +741 9410 0.8050 +741 9416 0.4870 +741 9675 0.4660 +741 9793 0.8300 +741 10078 0.8950 +741 10421 0.6460 +741 10467 0.5190 +741 10471 0.6210 +741 10594 0.7710 +741 10847 0.4020 +741 10856 0.8190 +741 11104 0.4910 +741 11319 0.8680 +741 23020 0.5700 +741 23154 0.7040 +741 23732 0.4450 +741 24148 0.4810 +741 25980 0.9480 +741 26121 0.4160 +741 26747 0.4190 +741 29937 0.4560 +741 51028 0.6340 +741 51191 0.4350 +741 51602 0.4080 +741 51699 0.4380 +741 51759 0.4290 +741 54505 0.4300 +741 54680 0.6790 +741 54991 0.5360 +741 55011 0.6950 +741 55164 0.4560 +741 55593 0.4090 +741 55622 0.6270 +741 55837 0.7600 +741 56980 0.4960 +741 60528 0.4800 +741 63922 0.4410 +741 64397 0.4880 +741 79657 0.7110 +741 79810 0.4650 +741 80185 0.4570 +741 80304 0.5430 +741 81930 0.4330 +741 83444 0.6280 +741 83479 0.4070 +741 83786 0.4540 +741 85464 0.4340 +741 114798 0.4420 +741 116143 0.4920 +741 121053 0.5720 +741 144132 0.4850 +741 147912 0.4410 +741 150350 0.5310 +741 150696 0.4170 +741 259282 0.4470 +744 758 0.4580 +744 2063 0.7220 +744 2488 0.7070 +744 3859 0.4970 +744 5080 0.6980 +744 6691 0.4540 +744 9319 0.4200 +744 23329 0.4280 +744 26610 0.8550 +744 120526 0.8880 +744 128178 0.4160 +744 196294 0.8720 +744 341019 0.9050 +745 746 0.4570 +745 1267 0.5440 +745 2237 0.7730 +745 2705 0.4370 +745 2840 0.5070 +745 3400 0.4640 +745 4099 0.5820 +745 4117 0.4170 +745 4155 0.6300 +745 4336 0.5800 +745 4340 0.4900 +745 4438 0.4030 +745 4821 0.6170 +745 5010 0.4040 +745 5156 0.5390 +745 5354 0.7520 +745 5888 0.4010 +745 5891 0.4170 +745 6663 0.7990 +745 7368 0.4480 +745 7439 0.8320 +745 7572 0.4180 +745 8317 0.4110 +745 9985 0.5920 +745 10215 0.6930 +745 11076 0.4190 +745 22858 0.4170 +745 23626 0.7870 +745 26022 0.7590 +745 27173 0.5060 +745 57165 0.4140 +745 57471 0.5330 +745 65983 0.5510 +745 79152 0.5970 +745 80198 0.4220 +745 84072 0.4810 +745 84504 0.4900 +745 85476 0.4120 +745 93377 0.4430 +745 116448 0.7030 +745 117584 0.5970 +745 128853 0.5420 +745 129563 0.4480 +745 133121 0.5460 +745 150280 0.4600 +745 220004 0.4340 +745 283677 0.4380 +745 388585 0.4490 +745 646960 0.4470 +746 1347 0.7740 +746 1603 0.9990 +746 1650 0.9990 +746 2197 0.4200 +746 2237 0.6310 +746 3703 0.9990 +746 4738 0.4700 +746 5436 0.4250 +746 5441 0.4120 +746 5714 0.5800 +746 6184 0.9970 +746 6185 0.9960 +746 6633 0.4630 +746 6636 0.5080 +746 6745 0.8260 +746 6746 0.8660 +746 6747 0.8170 +746 6748 0.9100 +746 7072 0.4610 +746 7991 0.9630 +746 9341 0.4450 +746 9415 0.4110 +746 9553 0.4550 +746 9761 0.9730 +746 10952 0.8790 +746 11179 0.4660 +746 23480 0.8960 +746 25880 0.4950 +746 27089 0.4400 +746 28972 0.7280 +746 29927 0.8510 +746 51124 0.4570 +746 51194 0.4320 +746 51258 0.4630 +746 51372 0.4660 +746 51504 0.4660 +746 54543 0.4340 +746 55954 0.4240 +746 58505 0.9860 +746 59286 0.5840 +746 81490 0.4450 +746 83443 0.4160 +746 84061 0.9960 +746 132720 0.4260 +746 140823 0.5130 +746 200185 0.9710 +746 201595 0.9980 +746 347148 0.4390 +746 100128731 0.9990 +747 1268 0.8170 +747 1269 0.5220 +747 2166 0.8980 +747 2841 0.4750 +747 2911 0.4570 +747 2915 0.8110 +747 3748 0.4370 +747 7442 0.6250 +747 9290 0.7000 +747 9455 0.5630 +747 9456 0.5820 +747 9853 0.4580 +747 11343 0.8870 +747 23094 0.4010 +747 25927 0.5670 +747 26090 0.7910 +747 27163 0.6360 +747 51573 0.6340 +747 55283 0.4340 +747 57406 0.8310 +747 63874 0.7140 +747 84547 0.4070 +747 117245 0.5380 +747 139760 0.5270 +747 158584 0.6350 +747 221955 0.9150 +747 222236 0.8940 +752 1072 0.4630 +752 1073 0.4530 +752 1950 0.6360 +752 1956 0.4210 +752 2017 0.5080 +752 4046 0.4600 +752 5216 0.9530 +752 5217 0.7190 +752 5308 0.5110 +752 5879 0.8470 +752 5880 0.5020 +752 6494 0.4030 +752 6840 0.5770 +752 6997 0.9730 +752 7044 0.5760 +752 7414 0.5100 +752 7454 0.5900 +752 7456 0.4120 +752 8766 0.5320 +752 9901 0.8670 +752 10094 0.5510 +752 10109 0.4290 +752 11151 0.5780 +752 11193 0.6040 +752 11198 0.4060 +752 23048 0.5670 +752 23075 0.4160 +752 23360 0.6010 +752 23380 0.9620 +752 23640 0.4270 +752 26030 0.4010 +752 29109 0.5620 +752 51474 0.4010 +752 55660 0.6340 +752 55997 0.9050 +752 56776 0.5370 +752 56907 0.4350 +752 58480 0.4160 +752 64423 0.6340 +752 79026 0.4150 +752 123720 0.4460 +752 342184 0.4070 +752 345456 0.8930 +752 375189 0.8980 +753 2091 0.4390 +753 4087 0.7190 +753 4088 0.5250 +753 4839 0.4240 +753 5036 0.4060 +753 6429 0.4330 +753 6430 0.4410 +753 6431 0.4300 +753 7178 0.5350 +753 8848 0.7200 +753 8886 0.4240 +753 10280 0.4070 +753 10528 0.4300 +753 10616 0.4050 +753 10885 0.5310 +753 11060 0.4750 +753 11137 0.4190 +753 23072 0.4580 +753 23212 0.4210 +753 23223 0.5210 +753 23560 0.5270 +753 25885 0.4110 +753 26155 0.5610 +753 26156 0.4280 +753 26354 0.4500 +753 51154 0.5670 +753 51504 0.5290 +753 54433 0.4460 +753 54475 0.4230 +753 54552 0.4280 +753 55651 0.4660 +753 57154 0.6780 +753 60487 0.4540 +753 64750 0.6550 +753 80014 0.4280 +753 84154 0.5360 +753 221078 0.4240 +753 345630 0.4590 +754 875 0.5330 +754 1827 0.5480 +754 2114 0.5210 +754 4731 0.6190 +754 5316 0.6410 +754 6528 0.4100 +754 7157 0.6610 +754 7307 0.5370 +754 8417 0.6290 +754 8624 0.4230 +754 8673 0.4800 +754 8775 0.4400 +754 8867 0.6780 +754 9232 0.8930 +754 9341 0.5250 +754 9482 0.5420 +754 9510 0.5950 +754 9619 0.4250 +754 10228 0.4340 +754 10311 0.4060 +754 10490 0.5280 +754 10785 0.5500 +754 55534 0.4540 +754 58494 0.6910 +754 59342 0.5080 +754 64581 0.4210 +754 445815 0.4050 +755 899 0.5060 +755 1353 0.4040 +755 2395 0.5970 +755 2521 0.4730 +755 3798 0.4340 +755 4336 0.4330 +755 4599 0.7730 +755 4750 0.9820 +755 5211 0.7840 +755 5216 0.4140 +755 6311 0.4180 +755 6647 0.4180 +755 7277 0.5050 +755 7415 0.4490 +755 7448 0.6060 +755 9217 0.4610 +755 9364 0.4080 +755 9782 0.5700 +755 10133 0.4330 +755 23025 0.5420 +755 23064 0.4650 +755 23093 0.4520 +755 23256 0.5070 +755 23435 0.4460 +755 29110 0.4350 +755 29978 0.4790 +755 55112 0.4450 +755 55812 0.6600 +755 57679 0.8750 +755 57728 0.4190 +755 83394 0.4290 +755 84131 0.4390 +755 84839 0.4110 +755 89891 0.4040 +755 92211 0.4160 +755 93589 0.4060 +755 150483 0.5380 +755 157657 0.4440 +755 169522 0.4330 +755 203228 0.5170 +755 255758 0.4810 +755 400916 0.6310 +757 2618 0.5980 +757 3460 0.4310 +757 9144 0.4340 +757 9946 0.5150 +757 9980 0.4900 +757 23484 0.8660 +757 26297 0.4360 +757 29980 0.6410 +757 54065 0.4130 +757 54741 0.8610 +757 64968 0.5880 +757 94104 0.5020 +757 219793 0.4320 +758 2063 0.6760 +758 4336 0.4060 +758 5255 0.6990 +758 5256 0.6120 +758 5257 0.6140 +758 5261 0.6260 +758 6529 0.4770 +758 7025 0.4710 +758 9362 0.4850 +758 9391 0.6280 +758 10190 0.6210 +758 25830 0.5130 +758 26502 0.4590 +758 54963 0.6240 +758 55622 0.4290 +758 64210 0.6880 +758 83549 0.7840 +758 93377 0.4680 +758 139596 0.7760 +758 140679 0.4320 +758 155185 0.4160 +758 101059915 0.5140 +759 760 0.8330 +759 761 0.7010 +759 762 0.4490 +759 765 0.5440 +759 766 0.7020 +759 768 0.5150 +759 771 0.4880 +759 1591 0.8830 +759 2023 0.5640 +759 2038 0.8250 +759 2235 0.4830 +759 2495 0.4790 +759 2821 0.4300 +759 2993 0.5680 +759 2994 0.8000 +759 2996 0.4200 +759 3040 0.4580 +759 3042 0.5430 +759 3043 0.4180 +759 3045 0.8530 +759 3049 0.5000 +759 4094 0.4040 +759 5036 0.4060 +759 5176 0.4640 +759 5569 0.4120 +759 6035 0.4850 +759 6125 0.4780 +759 6518 0.5910 +759 6521 0.8240 +759 6622 0.6000 +759 6652 0.5460 +759 6775 0.7620 +759 7001 0.6860 +759 7024 0.5200 +759 7038 0.4930 +759 7504 0.4290 +759 7975 0.5140 +759 8712 0.4050 +759 8991 0.7260 +759 9588 0.5000 +759 10107 0.4690 +759 10312 0.4060 +759 10661 0.4410 +759 11240 0.5980 +759 23212 0.4730 +759 23560 0.4060 +759 23762 0.5440 +759 25853 0.4520 +759 51327 0.8450 +759 51460 0.4340 +759 54475 0.4110 +759 54855 0.4410 +759 55363 0.4100 +759 55437 0.5330 +759 55600 0.4060 +759 55683 0.5570 +759 57418 0.4040 +759 60468 0.5080 +759 65110 0.4570 +759 80320 0.5420 +759 83743 0.4510 +759 84154 0.5610 +759 92799 0.4450 +759 377677 0.6510 +760 761 0.6930 +760 762 0.5570 +760 766 0.6910 +760 768 0.6370 +760 808 0.6980 +760 875 0.8190 +760 914 0.4090 +760 1080 0.6570 +760 1152 0.4950 +760 1186 0.8060 +760 1401 0.4700 +760 1513 0.7910 +760 1588 0.4900 +760 1591 0.7990 +760 1811 0.6930 +760 2023 0.7660 +760 2159 0.4440 +760 2299 0.4070 +760 2353 0.4110 +760 2597 0.4500 +760 2752 0.4100 +760 2806 0.4370 +760 2993 0.5510 +760 3145 0.4110 +760 3251 0.4080 +760 3329 0.7900 +760 3690 0.4590 +760 4057 0.6250 +760 4151 0.4330 +760 4155 0.5690 +760 4318 0.4540 +760 4609 0.4620 +760 4772 0.5220 +760 5172 0.5220 +760 5478 0.4900 +760 5770 0.4030 +760 5957 0.5940 +760 6010 0.4990 +760 6035 0.4930 +760 6125 0.4780 +760 6295 0.5150 +760 6337 0.4480 +760 6508 0.4440 +760 6518 0.5910 +760 6521 0.9190 +760 6522 0.5440 +760 6548 0.9540 +760 6549 0.4200 +760 6550 0.7630 +760 6566 0.7640 +760 6714 0.5550 +760 7137 0.4680 +760 8600 0.5870 +760 8671 0.8930 +760 8792 0.5890 +760 9104 0.4180 +760 9122 0.6450 +760 9123 0.6580 +760 9497 0.7930 +760 9498 0.7850 +760 9842 0.7770 +760 10312 0.8710 +760 23212 0.4730 +760 23560 0.4060 +760 23621 0.4380 +760 28962 0.7950 +760 29760 0.4030 +760 50617 0.5510 +760 50674 0.4150 +760 50964 0.4190 +760 54205 0.5160 +760 54475 0.4110 +760 55644 0.6210 +760 57127 0.4130 +760 57418 0.4040 +760 57835 0.4640 +760 65010 0.5030 +760 83697 0.6020 +760 83743 0.4510 +760 84154 0.5610 +760 91860 0.4050 +760 115019 0.5250 +760 133418 0.4570 +760 377677 0.6420 +761 762 0.8450 +761 766 0.5340 +761 808 0.4320 +761 841 0.4600 +761 1158 0.5700 +761 1591 0.7860 +761 2023 0.6790 +761 2027 0.4980 +761 2495 0.4880 +761 3028 0.4310 +761 4151 0.6400 +761 4620 0.4080 +761 4632 0.5910 +761 6035 0.4790 +761 6125 0.4780 +761 6518 0.7640 +761 6678 0.5020 +761 7038 0.4930 +761 8671 0.4440 +761 23212 0.4730 +761 23560 0.4060 +761 54475 0.4110 +761 83743 0.4510 +761 84154 0.5610 +761 377677 0.5300 +762 763 0.4120 +762 765 0.5690 +762 768 0.6660 +762 770 0.4260 +762 771 0.6400 +762 1018 0.4020 +762 1152 0.4400 +762 1258 0.5720 +762 1259 0.5780 +762 1406 0.5660 +762 1482 0.6350 +762 1591 0.7700 +762 1811 0.4300 +762 2100 0.4420 +762 2670 0.4860 +762 2678 0.5180 +762 2979 0.6330 +762 3420 0.5720 +762 3614 0.6740 +762 3791 0.5560 +762 3952 0.4210 +762 4137 0.4470 +762 4901 0.5960 +762 5145 0.6140 +762 5148 0.6400 +762 5330 0.4510 +762 5816 0.5060 +762 5961 0.6110 +762 6094 0.5000 +762 6100 0.7100 +762 6103 0.5310 +762 6121 0.5470 +762 6125 0.4780 +762 6337 0.4110 +762 6521 0.5090 +762 6548 0.4370 +762 6550 0.4750 +762 6622 0.4260 +762 6653 0.4110 +762 6888 0.6800 +762 7287 0.5770 +762 7439 0.5520 +762 8492 0.7140 +762 8671 0.8220 +762 8842 0.4170 +762 9033 0.7290 +762 9129 0.6680 +762 9312 0.5590 +762 9429 0.4400 +762 9497 0.4480 +762 9498 0.4320 +762 9589 0.4070 +762 9807 0.4950 +762 10002 0.5560 +762 10210 0.6400 +762 10461 0.4800 +762 10594 0.6530 +762 23020 0.5640 +762 23212 0.4730 +762 23435 0.5060 +762 23560 0.4180 +762 23632 0.6620 +762 25794 0.7190 +762 26121 0.6980 +762 26526 0.4860 +762 27012 0.5660 +762 50939 0.5880 +762 54475 0.4110 +762 55975 0.6030 +762 56934 0.4560 +762 57126 0.4600 +762 57468 0.6010 +762 57835 0.4220 +762 64218 0.6030 +762 83743 0.4510 +762 83756 0.4220 +762 84154 0.5610 +762 85366 0.4240 +762 117283 0.5260 +762 130557 0.6090 +762 145226 0.5990 +762 146713 0.5670 +762 346007 0.5930 +762 346562 0.4380 +762 375298 0.6440 +762 388939 0.5840 +762 768206 0.6020 +763 914 0.4990 +763 920 0.4490 +763 921 0.4530 +763 1591 0.8490 +763 2495 0.4980 +763 5091 0.4140 +763 6035 0.5130 +763 6125 0.4780 +763 7038 0.5230 +763 8455 0.4360 +763 10553 0.4410 +763 11238 0.7340 +763 23212 0.4730 +763 23560 0.4060 +763 54475 0.4120 +763 83743 0.4510 +763 84154 0.5610 +763 162417 0.4780 +765 770 0.4040 +765 1080 0.5240 +765 1469 0.5160 +765 1472 0.6810 +765 1482 0.5620 +765 1591 0.8120 +765 2023 0.7810 +765 2495 0.4860 +765 3347 0.4560 +765 3815 0.4150 +765 4316 0.4140 +765 4589 0.6850 +765 5284 0.6790 +765 5304 0.4380 +765 5726 0.6640 +765 6035 0.4950 +765 6125 0.4780 +765 6518 0.8660 +765 6779 0.4910 +765 7038 0.5180 +765 7296 0.4100 +765 8671 0.5890 +765 9123 0.4350 +765 9486 0.6640 +765 10553 0.4220 +765 11238 0.4270 +765 23212 0.4730 +765 23560 0.4060 +765 54475 0.4110 +765 56934 0.4220 +765 64377 0.8760 +765 83539 0.8600 +765 83697 0.4470 +765 83743 0.4510 +765 84154 0.5610 +765 84569 0.4380 +765 140683 0.7860 +765 352999 0.5270 +765 727897 0.4970 +766 771 0.4050 +766 793 0.6910 +766 794 0.7370 +766 795 0.4340 +766 1591 0.8250 +766 1666 0.7770 +766 2495 0.4940 +766 6035 0.5210 +766 6125 0.4780 +766 7038 0.5120 +766 8455 0.4300 +766 8671 0.4480 +766 9033 0.4540 +766 23212 0.4730 +766 23560 0.4060 +766 29951 0.4130 +766 54475 0.4110 +766 55017 0.4240 +766 83743 0.4510 +766 84154 0.5610 +766 92736 0.4180 +766 128025 0.4050 +766 164832 0.4200 +766 246329 0.4140 +766 266675 0.4570 +766 377677 0.5300 +767 1591 0.8760 +767 2495 0.5140 +767 3708 0.9460 +767 3709 0.4920 +767 5055 0.4880 +767 5265 0.4060 +767 5650 0.4220 +767 5956 0.4890 +767 6035 0.5430 +767 6125 0.4780 +767 7018 0.4250 +767 7038 0.5450 +767 7436 0.8650 +767 7776 0.4150 +767 8455 0.4760 +767 9454 0.4290 +767 10768 0.6340 +767 23071 0.4830 +767 23077 0.4710 +767 23212 0.4750 +767 23560 0.4060 +767 51171 0.5930 +767 54475 0.4110 +767 83743 0.4510 +767 84154 0.5610 +767 645832 0.4060 +767 653145 0.5260 +767 100423062 0.4100 +768 771 0.7390 +768 836 0.4390 +768 925 0.4180 +768 960 0.5870 +768 999 0.6350 +768 1048 0.4470 +768 1387 0.5730 +768 1499 0.7030 +768 1591 0.7840 +768 1800 0.4010 +768 1950 0.4220 +768 1956 0.6140 +768 2023 0.4500 +768 2026 0.4220 +768 2033 0.6400 +768 2034 0.9080 +768 2056 0.4360 +768 2064 0.6050 +768 2099 0.4100 +768 2321 0.4490 +768 2346 0.5470 +768 2348 0.4830 +768 2495 0.5050 +768 2597 0.4990 +768 3091 0.9440 +768 3558 0.4250 +768 3569 0.4290 +768 3576 0.5670 +768 3791 0.5080 +768 3815 0.4350 +768 3842 0.4280 +768 3855 0.6440 +768 3897 0.4540 +768 4015 0.6380 +768 4072 0.4570 +768 4233 0.4410 +768 4311 0.5920 +768 4318 0.6220 +768 4319 0.5170 +768 4323 0.6020 +768 4609 0.4110 +768 5033 0.4640 +768 5054 0.5800 +768 5076 0.4360 +768 5163 0.5070 +768 5175 0.5490 +768 5210 0.4610 +768 5230 0.5460 +768 5420 0.4480 +768 5702 0.4380 +768 5728 0.4320 +768 6035 0.4160 +768 6125 0.4780 +768 6387 0.5540 +768 6513 0.8490 +768 6515 0.5260 +768 6517 0.4130 +768 6521 0.5220 +768 6548 0.6160 +768 6566 0.4050 +768 6667 0.4120 +768 6696 0.4310 +768 6774 0.4900 +768 6921 0.5900 +768 6923 0.5560 +768 6924 0.4670 +768 7030 0.5720 +768 7038 0.5210 +768 7124 0.5460 +768 7157 0.5770 +768 7369 0.5010 +768 7428 0.7610 +768 7837 0.4730 +768 7849 0.6230 +768 7852 0.6070 +768 8453 0.5470 +768 8671 0.5660 +768 9122 0.8860 +768 9123 0.8830 +768 9497 0.5260 +768 9524 0.6990 +768 9669 0.5940 +768 10232 0.4460 +768 10397 0.4750 +768 22943 0.6600 +768 23212 0.4740 +768 23315 0.4260 +768 23560 0.4080 +768 23600 0.6670 +768 23632 0.6150 +768 26155 0.4030 +768 26281 0.5200 +768 26526 0.4360 +768 26580 0.4950 +768 27121 0.4660 +768 29126 0.5120 +768 29923 0.4710 +768 51129 0.4420 +768 51224 0.4920 +768 51458 0.5160 +768 54474 0.4460 +768 54475 0.4230 +768 54583 0.6790 +768 55662 0.6600 +768 55832 0.7260 +768 56901 0.5340 +768 56934 0.4650 +768 64344 0.7180 +768 83743 0.4510 +768 84154 0.5650 +768 84925 0.6940 +768 112398 0.6140 +768 112399 0.7640 +768 137902 0.4610 +768 138046 0.4970 +768 150353 0.7690 +768 400566 0.4110 +770 771 0.4110 +770 3708 0.4640 +770 6125 0.4780 +770 23212 0.4730 +770 23560 0.4060 +770 23632 0.4060 +770 51096 0.4380 +770 54475 0.4110 +770 83743 0.4510 +770 84154 0.5610 +770 200172 0.4630 +770 645027 0.4510 +771 1591 0.8060 +771 2034 0.5520 +771 2099 0.4030 +771 2294 0.5070 +771 2495 0.4900 +771 3091 0.4870 +771 3880 0.4270 +771 4015 0.4160 +771 5054 0.4060 +771 5075 0.4860 +771 5702 0.4380 +771 6035 0.4660 +771 6125 0.4780 +771 6513 0.5770 +771 6522 0.6490 +771 6548 0.6490 +771 6923 0.4240 +771 6924 0.4710 +771 7038 0.4900 +771 7428 0.5560 +771 8671 0.5530 +771 9122 0.5110 +771 9123 0.5140 +771 9497 0.5240 +771 9498 0.4060 +771 10174 0.4340 +771 23212 0.4730 +771 23315 0.4030 +771 23560 0.4060 +771 23632 0.5690 +771 51224 0.4950 +771 54475 0.4110 +771 54583 0.4610 +771 55662 0.5390 +771 83743 0.4510 +771 84154 0.5610 +771 84925 0.4840 +771 112398 0.4060 +771 112399 0.5040 +771 727800 0.4190 +773 774 0.9450 +773 775 0.9520 +773 776 0.6730 +773 777 0.9500 +773 778 0.6340 +773 779 0.6390 +773 781 0.9510 +773 782 0.9190 +773 783 0.9550 +773 784 0.8530 +773 785 0.9950 +773 786 0.8860 +773 793 0.4670 +773 808 0.9770 +773 810 0.8010 +773 815 0.4340 +773 836 0.4060 +773 857 0.6260 +773 858 0.7320 +773 859 0.7820 +773 1600 0.4180 +773 1759 0.5560 +773 1822 0.6710 +773 1938 0.4690 +773 1945 0.4080 +773 2041 0.4180 +773 2191 0.4220 +773 2259 0.6290 +773 2280 0.5400 +773 2332 0.4180 +773 2395 0.7270 +773 2554 0.5500 +773 2559 0.4470 +773 2562 0.6610 +773 2563 0.4710 +773 2566 0.5010 +773 2571 0.5520 +773 2590 0.7680 +773 2770 0.6970 +773 2771 0.6800 +773 2773 0.6660 +773 2775 0.5990 +773 2782 0.7230 +773 2783 0.7440 +773 2784 0.6680 +773 2785 0.7360 +773 2786 0.7180 +773 2787 0.6530 +773 2788 0.6950 +773 2790 0.7300 +773 2791 0.6820 +773 2792 0.6820 +773 2793 0.6680 +773 2823 0.4040 +773 2890 0.5040 +773 2891 0.5810 +773 2895 0.4610 +773 2903 0.5040 +773 2904 0.4580 +773 2911 0.6900 +773 2913 0.5190 +773 3064 0.6110 +773 3306 0.5540 +773 3630 0.9260 +773 3708 0.5660 +773 3736 0.8920 +773 3737 0.6030 +773 3745 0.5650 +773 3746 0.5330 +773 3748 0.7240 +773 3751 0.4530 +773 3752 0.5990 +773 3760 0.4170 +773 3763 0.4960 +773 3765 0.4450 +773 3775 0.5060 +773 3778 0.5930 +773 3782 0.4080 +773 3785 0.7340 +773 3786 0.5510 +773 3912 0.5900 +773 4131 0.4360 +773 4200 0.5520 +773 4287 0.8050 +773 4593 0.4210 +773 5142 0.5670 +773 5144 0.6800 +773 5428 0.4180 +773 5521 0.9290 +773 5578 0.9150 +773 5579 0.9190 +773 5582 0.9800 +773 5595 0.4750 +773 5816 0.5090 +773 5923 0.7050 +773 5924 0.6680 +773 6261 0.9460 +773 6262 0.4720 +773 6263 0.4900 +773 6310 0.8040 +773 6311 0.8580 +773 6314 0.9640 +773 6323 0.4670 +773 6324 0.6750 +773 6327 0.5820 +773 6507 0.5440 +773 6529 0.4140 +773 6538 0.5210 +773 6616 0.8750 +773 6687 0.4470 +773 6712 0.8240 +773 6792 0.5140 +773 6804 0.7740 +773 6812 0.5310 +773 6844 0.5710 +773 6853 0.4220 +773 6857 0.7650 +773 6908 0.7770 +773 7001 0.4020 +773 7222 0.5250 +773 7274 0.6550 +773 7442 0.5700 +773 8395 0.4380 +773 8560 0.4470 +773 8629 0.5270 +773 8911 0.6750 +773 8912 0.7620 +773 8913 0.7780 +773 9254 0.9820 +773 9256 0.5330 +773 9378 0.4610 +773 9478 0.8620 +773 9699 0.6250 +773 10125 0.6560 +773 10235 0.6560 +773 10368 0.8150 +773 10369 0.9120 +773 10439 0.5180 +773 10497 0.4760 +773 10528 0.4470 +773 10681 0.6980 +773 10939 0.4740 +773 22999 0.6710 +773 23025 0.4670 +773 23064 0.4570 +773 23085 0.4180 +773 23236 0.4150 +773 23335 0.4360 +773 23345 0.5960 +773 23504 0.7210 +773 25769 0.4150 +773 25780 0.6710 +773 25791 0.6400 +773 25814 0.8990 +773 25858 0.5820 +773 25894 0.6080 +773 27019 0.4120 +773 27092 0.6620 +773 51764 0.6660 +773 51806 0.8010 +773 54331 0.6890 +773 54840 0.4220 +773 55129 0.4400 +773 55799 0.9360 +773 55970 0.6920 +773 56652 0.5650 +773 57030 0.4410 +773 57338 0.5650 +773 57468 0.4340 +773 57530 0.4320 +773 57539 0.4200 +773 57578 0.5010 +773 57582 0.5080 +773 57626 0.4040 +773 57679 0.4690 +773 57685 0.7570 +773 57828 0.6360 +773 59283 0.6730 +773 59284 0.6630 +773 59285 0.5660 +773 59345 0.6790 +773 79820 0.6580 +773 83988 0.4270 +773 84502 0.4100 +773 91860 0.7520 +773 93589 0.9320 +773 94235 0.6580 +773 112476 0.7040 +773 115727 0.6590 +773 117144 0.6550 +773 117155 0.5730 +773 146057 0.7740 +773 146227 0.4610 +773 163688 0.7520 +773 219902 0.4450 +773 246329 0.7990 +773 257044 0.5820 +773 257062 0.6390 +773 285588 0.5950 +773 338567 0.7090 +773 340393 0.5400 +773 343641 0.4290 +773 347732 0.6080 +773 378807 0.6610 +773 401474 0.4640 +773 100130348 0.5820 +774 775 0.7560 +774 776 0.7720 +774 777 0.9560 +774 778 0.6300 +774 779 0.6380 +774 781 0.9910 +774 782 0.9820 +774 783 0.9110 +774 784 0.9980 +774 785 0.8850 +774 786 0.8750 +774 808 0.9780 +774 810 0.7760 +774 815 0.4380 +774 857 0.6650 +774 858 0.7940 +774 859 0.7010 +774 1128 0.4070 +774 1129 0.6050 +774 1137 0.4400 +774 1808 0.9240 +774 1813 0.5350 +774 2280 0.5400 +774 2550 0.6010 +774 2554 0.4510 +774 2687 0.5180 +774 2770 0.6750 +774 2771 0.6580 +774 2773 0.6700 +774 2775 0.5910 +774 2782 0.7030 +774 2783 0.7440 +774 2784 0.7010 +774 2785 0.7510 +774 2786 0.7120 +774 2787 0.6940 +774 2788 0.6920 +774 2790 0.7840 +774 2791 0.6970 +774 2792 0.6890 +774 2793 0.6690 +774 2890 0.4880 +774 2891 0.4040 +774 2903 0.4690 +774 2904 0.4440 +774 2911 0.5230 +774 2915 0.4840 +774 2987 0.4680 +774 3064 0.7890 +774 3306 0.5550 +774 3630 0.9190 +774 3736 0.5780 +774 3737 0.6050 +774 3738 0.4090 +774 3739 0.4430 +774 3745 0.5070 +774 3746 0.6220 +774 3747 0.4330 +774 3749 0.4090 +774 3751 0.5560 +774 3752 0.4370 +774 3757 0.4320 +774 3760 0.5890 +774 3763 0.4120 +774 3765 0.4600 +774 3778 0.5520 +774 3785 0.5940 +774 3786 0.4780 +774 3827 0.4610 +774 3831 0.4440 +774 4131 0.4780 +774 5142 0.5930 +774 5144 0.5760 +774 5368 0.5190 +774 5581 0.6970 +774 5621 0.9060 +774 5816 0.4820 +774 5864 0.4250 +774 5923 0.6950 +774 5924 0.6830 +774 6261 0.7440 +774 6262 0.4660 +774 6324 0.5810 +774 6327 0.6090 +774 6455 0.4350 +774 6543 0.4260 +774 6547 0.4240 +774 6616 0.8840 +774 6804 0.9900 +774 6844 0.5760 +774 6853 0.4610 +774 6857 0.7780 +774 6863 0.4600 +774 7001 0.4760 +774 7329 0.4020 +774 7332 0.5830 +774 7416 0.4160 +774 7442 0.5190 +774 8787 0.6830 +774 8911 0.6660 +774 8912 0.7720 +774 8913 0.8530 +774 8989 0.4640 +774 9254 0.9310 +774 9312 0.5740 +774 9378 0.4270 +774 9568 0.5360 +774 9721 0.4440 +774 10125 0.6690 +774 10235 0.6580 +774 10280 0.4290 +774 10368 0.6880 +774 10369 0.8730 +774 10439 0.7930 +774 10497 0.4430 +774 10570 0.5180 +774 10611 0.8410 +774 10681 0.8460 +774 11141 0.5570 +774 22999 0.6360 +774 23025 0.4400 +774 23345 0.4250 +774 23413 0.6970 +774 23504 0.4970 +774 25780 0.6650 +774 25858 0.5820 +774 26280 0.4110 +774 27091 0.6190 +774 27092 0.8220 +774 28954 0.4700 +774 29119 0.4220 +774 51393 0.4710 +774 51764 0.6800 +774 51806 0.7770 +774 54331 0.7090 +774 55799 0.8740 +774 55970 0.7010 +774 57338 0.4910 +774 57528 0.5250 +774 57539 0.4200 +774 57578 0.4600 +774 57685 0.7850 +774 57828 0.6350 +774 59283 0.6920 +774 59284 0.7870 +774 59285 0.5700 +774 59345 0.6680 +774 79813 0.6850 +774 79820 0.6710 +774 80036 0.4820 +774 83544 0.4890 +774 84502 0.4210 +774 91860 0.7220 +774 92292 0.5430 +774 93589 0.8200 +774 94235 0.6520 +774 115727 0.6620 +774 117144 0.6610 +774 117155 0.5550 +774 147199 0.4160 +774 161253 0.4800 +774 163688 0.7220 +774 246329 0.6360 +774 257044 0.5820 +774 257062 0.6470 +774 285588 0.5950 +774 340393 0.5400 +774 347732 0.6140 +774 378807 0.6580 +774 388531 0.6640 +774 653486 0.4150 +774 100130348 0.5820 +775 776 0.9810 +775 777 0.6530 +775 778 0.9780 +775 779 0.9820 +775 781 0.9980 +775 782 0.9880 +775 783 0.9990 +775 784 0.9970 +775 785 0.9700 +775 786 0.9500 +775 808 0.9990 +775 810 0.9990 +775 815 0.8630 +775 816 0.7810 +775 817 0.4370 +775 831 0.4630 +775 845 0.7770 +775 857 0.7430 +775 858 0.6740 +775 859 0.9270 +775 1132 0.4500 +775 1312 0.4170 +775 1363 0.4310 +775 1385 0.4330 +775 1463 0.4650 +775 1482 0.4900 +775 1742 0.6500 +775 1806 0.4600 +775 1813 0.5080 +775 2257 0.4410 +775 2280 0.8560 +775 2281 0.4470 +775 2332 0.4180 +775 2597 0.4180 +775 2697 0.5980 +775 2702 0.4890 +775 2709 0.4970 +775 2770 0.6640 +775 2771 0.6670 +775 2773 0.6880 +775 2776 0.5660 +775 2782 0.6760 +775 2783 0.6580 +775 2784 0.7340 +775 2785 0.6830 +775 2786 0.6610 +775 2787 0.6500 +775 2788 0.6750 +775 2790 0.6610 +775 2791 0.6650 +775 2792 0.6650 +775 2793 0.6940 +775 2890 0.4780 +775 2903 0.5340 +775 2904 0.4430 +775 2913 0.5290 +775 3306 0.7200 +775 3356 0.9370 +775 3357 0.9160 +775 3358 0.9180 +775 3630 0.9560 +775 3646 0.4460 +775 3699 0.4890 +775 3700 0.4640 +775 3708 0.5470 +775 3709 0.4280 +775 3710 0.5330 +775 3736 0.4830 +775 3737 0.5570 +775 3738 0.4820 +775 3739 0.6410 +775 3741 0.7100 +775 3745 0.6930 +775 3746 0.5640 +775 3751 0.7260 +775 3752 0.8060 +775 3753 0.8030 +775 3757 0.8910 +775 3759 0.8530 +775 3760 0.5940 +775 3761 0.4960 +775 3762 0.7630 +775 3764 0.6920 +775 3767 0.5900 +775 3768 0.5480 +775 3778 0.9180 +775 3779 0.8110 +775 3780 0.4060 +775 3782 0.4900 +775 3783 0.6350 +775 3784 0.7910 +775 3785 0.4850 +775 3786 0.4150 +775 4010 0.4150 +775 4204 0.4170 +775 4607 0.5230 +775 4624 0.5660 +775 4625 0.5750 +775 4633 0.5630 +775 4634 0.4540 +775 4684 0.5670 +775 4744 0.4010 +775 4842 0.9240 +775 4855 0.4210 +775 4878 0.5220 +775 5021 0.7270 +775 5136 0.5100 +775 5142 0.7750 +775 5144 0.6610 +775 5225 0.4050 +775 5318 0.5750 +775 5348 0.5100 +775 5350 0.4370 +775 5499 0.9070 +775 5500 0.9090 +775 5501 0.9070 +775 5515 0.7470 +775 5516 0.6780 +775 5518 0.6620 +775 5519 0.6540 +775 5520 0.6500 +775 5521 0.6750 +775 5522 0.6940 +775 5523 0.7100 +775 5525 0.7080 +775 5526 0.6610 +775 5527 0.6500 +775 5528 0.6800 +775 5529 0.6500 +775 5530 0.9260 +775 5532 0.9200 +775 5533 0.9150 +775 5566 0.9710 +775 5567 0.9720 +775 5568 0.9610 +775 5573 0.4250 +775 5578 0.9530 +775 5579 0.9160 +775 5582 0.9160 +775 5592 0.9370 +775 5593 0.9240 +775 5621 0.9100 +775 5816 0.4320 +775 5912 0.4140 +775 5923 0.6680 +775 5924 0.6700 +775 6261 0.9450 +775 6262 0.9810 +775 6263 0.7370 +775 6324 0.8800 +775 6327 0.7440 +775 6330 0.8190 +775 6331 0.5920 +775 6506 0.4370 +775 6532 0.4610 +775 6535 0.5240 +775 6546 0.7830 +775 6616 0.7820 +775 6640 0.7330 +775 6717 0.4200 +775 6786 0.9490 +775 6804 0.7590 +775 6812 0.5670 +775 6833 0.4360 +775 6844 0.7160 +775 6861 0.4240 +775 6910 0.4290 +775 7001 0.4650 +775 7124 0.4510 +775 7137 0.5030 +775 7139 0.5940 +775 7220 0.8900 +775 7222 0.6700 +775 7223 0.6120 +775 7224 0.6010 +775 7225 0.6140 +775 7226 0.4420 +775 7273 0.4940 +775 7442 0.4250 +775 7444 0.4260 +775 7784 0.4390 +775 7871 0.4960 +775 7881 0.4220 +775 8165 0.4740 +775 8911 0.7360 +775 8912 0.9170 +775 8913 0.8460 +775 8989 0.4130 +775 9254 0.9820 +775 9312 0.5410 +775 9378 0.4920 +775 9465 0.8770 +775 9478 0.7910 +775 9495 0.8390 +775 9722 0.6160 +775 9759 0.4010 +775 9881 0.4990 +775 9896 0.4480 +775 9992 0.8860 +775 10008 0.8010 +775 10021 0.8320 +775 10060 0.5940 +775 10125 0.6690 +775 10142 0.7430 +775 10206 0.4620 +775 10235 0.6560 +775 10242 0.6950 +775 10265 0.5530 +775 10345 0.7790 +775 10368 0.9100 +775 10369 0.7970 +775 10618 0.4010 +775 10681 0.6880 +775 22845 0.5060 +775 22941 0.4280 +775 22978 0.4980 +775 22999 0.4510 +775 23085 0.4330 +775 23171 0.8220 +775 23345 0.4520 +775 23630 0.5780 +775 23704 0.6420 +775 25780 0.6560 +775 25858 0.7450 +775 26011 0.6380 +775 26047 0.4250 +775 27063 0.4860 +775 27092 0.9530 +775 27094 0.6690 +775 27185 0.6880 +775 27295 0.4180 +775 27345 0.7320 +775 28227 0.6630 +775 28954 0.6720 +775 29098 0.5920 +775 30818 0.6490 +775 30819 0.6730 +775 51764 0.6660 +775 51806 0.9990 +775 54331 0.7100 +775 54715 0.4280 +775 54795 0.5700 +775 54838 0.5730 +775 55012 0.6510 +775 55636 0.4960 +775 55697 0.5100 +775 55799 0.8710 +775 55800 0.7920 +775 55844 0.6650 +775 55970 0.6690 +775 56704 0.5720 +775 57010 0.4220 +775 57158 0.8080 +775 57338 0.7310 +775 57526 0.4220 +775 57539 0.4200 +775 57554 0.6150 +775 57578 0.4560 +775 57620 0.6540 +775 57628 0.4750 +775 57679 0.4570 +775 57680 0.4020 +775 57685 0.7020 +775 57828 0.7680 +775 57829 0.4940 +775 58498 0.4990 +775 59283 0.9200 +775 59284 0.9230 +775 59285 0.9010 +775 59341 0.4470 +775 59345 0.6700 +775 64478 0.5460 +775 79026 0.5140 +775 79192 0.5330 +775 79820 0.7810 +775 80228 0.6490 +775 84033 0.4960 +775 84152 0.4390 +775 84502 0.7190 +775 84876 0.8440 +775 85358 0.5080 +775 89796 0.4950 +775 91752 0.6990 +775 91860 0.9990 +775 93129 0.6390 +775 93589 0.9840 +775 94235 0.6500 +775 115727 0.6580 +775 117144 0.7960 +775 117155 0.7280 +775 124989 0.4320 +775 131096 0.4720 +775 146779 0.4320 +775 152330 0.5620 +775 157855 0.7380 +775 160851 0.4520 +775 161253 0.4770 +775 163688 0.9990 +775 200576 0.5220 +775 246329 0.8530 +775 257044 0.7490 +775 257062 0.7680 +775 267012 0.4160 +775 282996 0.4620 +775 285588 0.7530 +775 340393 0.7200 +775 342667 0.6040 +775 347732 0.7610 +775 378807 0.7890 +775 100130348 0.7450 +776 777 0.7870 +776 778 0.9800 +776 779 0.9750 +776 781 0.9990 +776 782 0.9900 +776 783 0.9970 +776 784 0.9970 +776 785 0.9650 +776 786 0.9950 +776 793 0.5960 +776 795 0.4900 +776 808 0.9900 +776 810 0.9900 +776 815 0.8610 +776 816 0.7500 +776 857 0.8290 +776 858 0.6670 +776 859 0.6730 +776 1181 0.5910 +776 1488 0.7510 +776 1501 0.4440 +776 1584 0.5750 +776 1585 0.6950 +776 2280 0.7200 +776 2550 0.4650 +776 2770 0.6580 +776 2771 0.7800 +776 2773 0.6580 +776 2782 0.6510 +776 2783 0.6510 +776 2784 0.7160 +776 2785 0.6920 +776 2786 0.6520 +776 2787 0.6600 +776 2788 0.6710 +776 2790 0.6610 +776 2791 0.6650 +776 2792 0.6650 +776 2793 0.6900 +776 2890 0.5070 +776 2891 0.4030 +776 2903 0.5150 +776 2915 0.4320 +776 3306 0.7200 +776 3356 0.9160 +776 3357 0.9080 +776 3358 0.9210 +776 3630 0.9340 +776 3708 0.7530 +776 3710 0.6420 +776 3736 0.4590 +776 3739 0.4810 +776 3741 0.5020 +776 3745 0.4480 +776 3750 0.4350 +776 3751 0.5180 +776 3752 0.5330 +776 3754 0.4210 +776 3757 0.4850 +776 3759 0.4100 +776 3760 0.5060 +776 3762 0.8060 +776 3767 0.5310 +776 3777 0.4140 +776 3778 0.8480 +776 3779 0.7370 +776 3782 0.4300 +776 3783 0.8330 +776 3784 0.4940 +776 3785 0.4090 +776 4036 0.4120 +776 4133 0.4560 +776 4646 0.6360 +776 4684 0.5410 +776 4842 0.9180 +776 5021 0.6740 +776 5142 0.5680 +776 5144 0.6260 +776 5499 0.9040 +776 5500 0.9070 +776 5501 0.9040 +776 5515 0.6840 +776 5516 0.6800 +776 5518 0.6540 +776 5519 0.6540 +776 5520 0.6500 +776 5521 0.6600 +776 5522 0.6750 +776 5523 0.6630 +776 5525 0.6770 +776 5526 0.6510 +776 5527 0.6500 +776 5528 0.6500 +776 5529 0.6500 +776 5530 0.9180 +776 5532 0.9120 +776 5533 0.9130 +776 5566 0.9350 +776 5567 0.9340 +776 5568 0.9330 +776 5578 0.9170 +776 5579 0.9330 +776 5582 0.9430 +776 5592 0.9170 +776 5593 0.9050 +776 5621 0.9050 +776 5816 0.4230 +776 5923 0.7030 +776 5924 0.6650 +776 5957 0.4090 +776 6261 0.8650 +776 6262 0.9440 +776 6263 0.5220 +776 6324 0.6280 +776 6326 0.4800 +776 6327 0.5840 +776 6546 0.5150 +776 6616 0.7360 +776 6786 0.6670 +776 6804 0.7170 +776 6812 0.5350 +776 6833 0.4830 +776 6844 0.6810 +776 6857 0.7670 +776 6861 0.4410 +776 7220 0.4220 +776 8911 0.6540 +776 8912 0.8560 +776 8913 0.8520 +776 9254 0.9710 +776 9381 0.9080 +776 9478 0.4560 +776 9568 0.5050 +776 9699 0.4430 +776 10021 0.6350 +776 10083 0.4060 +776 10125 0.6620 +776 10235 0.6560 +776 10242 0.7330 +776 10368 0.9570 +776 10369 0.8670 +776 10681 0.6960 +776 10755 0.4240 +776 22999 0.5630 +776 23413 0.4040 +776 23504 0.6120 +776 25780 0.6910 +776 25858 0.7450 +776 25861 0.5890 +776 26251 0.5050 +776 27091 0.6720 +776 27092 0.9860 +776 27094 0.6670 +776 27345 0.7200 +776 28227 0.6740 +776 30819 0.4410 +776 50944 0.7450 +776 51475 0.6040 +776 51764 0.6650 +776 51806 0.9900 +776 54331 0.6780 +776 55012 0.6510 +776 55503 0.4610 +776 55799 0.8760 +776 55844 0.6650 +776 55970 0.6760 +776 56479 0.4080 +776 56704 0.6760 +776 57010 0.7380 +776 57158 0.5310 +776 57172 0.4210 +776 57338 0.7780 +776 57539 0.4250 +776 57554 0.7840 +776 57578 0.4240 +776 57685 0.7190 +776 57828 0.7520 +776 59283 0.9660 +776 59284 0.9770 +776 59285 0.9010 +776 59345 0.6510 +776 64116 0.4300 +776 79798 0.5410 +776 79820 0.7540 +776 84502 0.7630 +776 85358 0.7580 +776 91860 0.9850 +776 93589 0.9710 +776 94235 0.6500 +776 115727 0.6560 +776 117144 0.7840 +776 117155 0.7430 +776 124989 0.4320 +776 127833 0.6660 +776 146779 0.4320 +776 157855 0.7310 +776 163688 0.9850 +776 246213 0.4350 +776 246329 0.8100 +776 257044 0.7530 +776 257062 0.7550 +776 285588 0.7530 +776 340393 0.7200 +776 347732 0.7540 +776 378807 0.7870 +776 100130348 0.7450 +777 778 0.6360 +777 779 0.6370 +777 781 0.9900 +777 782 0.8820 +777 783 0.8330 +777 784 0.9820 +777 785 0.8160 +777 786 0.8560 +777 808 0.9710 +777 810 0.5580 +777 857 0.6210 +777 858 0.7260 +777 859 0.7000 +777 2280 0.5400 +777 2561 0.4020 +777 2904 0.4170 +777 3306 0.5490 +777 3630 0.9190 +777 3736 0.4690 +777 3737 0.5040 +777 3745 0.4940 +777 3746 0.5110 +777 3747 0.4100 +777 3751 0.4920 +777 3778 0.5030 +777 3785 0.4910 +777 3786 0.4900 +777 5142 0.5600 +777 5144 0.5600 +777 5923 0.6900 +777 5924 0.6750 +777 6261 0.7340 +777 6262 0.5180 +777 6263 0.4800 +777 6324 0.5780 +777 6327 0.5670 +777 6616 0.6010 +777 6869 0.4710 +777 8911 0.6900 +777 8912 0.7470 +777 8913 0.8630 +777 9254 0.9700 +777 9312 0.4160 +777 9607 0.4580 +777 10125 0.6820 +777 10235 0.6690 +777 10368 0.6900 +777 10369 0.6610 +777 22999 0.4550 +777 25780 0.6710 +777 25858 0.5820 +777 27092 0.9330 +777 51806 0.5540 +777 55799 0.8960 +777 57539 0.4200 +777 57578 0.4540 +777 57657 0.4320 +777 57685 0.7620 +777 57828 0.5980 +777 59283 0.6590 +777 59284 0.7960 +777 59285 0.5600 +777 79820 0.6200 +777 84258 0.4030 +777 84320 0.4110 +777 91860 0.4460 +777 93589 0.8090 +777 114327 0.8770 +777 115727 0.6590 +777 117144 0.6590 +777 117155 0.5440 +777 163688 0.4460 +777 246329 0.6380 +777 257044 0.6180 +777 257062 0.6090 +777 285588 0.5950 +777 340393 0.5400 +777 342667 0.4010 +777 347732 0.6020 +777 378807 0.6430 +777 100130348 0.5820 +778 779 0.9880 +778 781 0.9870 +778 782 0.8860 +778 783 0.9730 +778 784 0.9730 +778 785 0.9650 +778 786 0.9320 +778 795 0.7090 +778 808 0.8970 +778 810 0.6650 +778 815 0.7040 +778 816 0.6850 +778 857 0.6670 +778 858 0.6360 +778 859 0.6520 +778 961 0.4680 +778 1258 0.5030 +778 1259 0.4200 +778 1261 0.5720 +778 1406 0.4870 +778 1488 0.8210 +778 1742 0.5370 +778 1836 0.5020 +778 2280 0.7250 +778 2652 0.6120 +778 2770 0.6580 +778 2771 0.6580 +778 2773 0.6580 +778 2779 0.5820 +778 2782 0.6510 +778 2783 0.6510 +778 2784 0.7460 +778 2785 0.6590 +778 2786 0.6610 +778 2787 0.6500 +778 2788 0.6550 +778 2790 0.6690 +778 2791 0.6900 +778 2792 0.7480 +778 2793 0.7530 +778 2916 0.7340 +778 3000 0.6520 +778 3306 0.7200 +778 3356 0.9000 +778 3357 0.9000 +778 3358 0.9050 +778 3752 0.4240 +778 3778 0.7810 +778 3779 0.7120 +778 4007 0.7250 +778 4128 0.4920 +778 4129 0.5940 +778 4935 0.4130 +778 5021 0.6500 +778 5142 0.5550 +778 5144 0.5550 +778 5146 0.4660 +778 5158 0.7040 +778 5499 0.6610 +778 5500 0.6610 +778 5501 0.6610 +778 5515 0.6720 +778 5516 0.6720 +778 5518 0.6540 +778 5519 0.6540 +778 5520 0.6500 +778 5521 0.6500 +778 5522 0.6860 +778 5523 0.6610 +778 5525 0.6500 +778 5526 0.6520 +778 5527 0.6500 +778 5528 0.6560 +778 5529 0.6500 +778 5566 0.9150 +778 5567 0.9140 +778 5568 0.9140 +778 5578 0.9260 +778 5579 0.9020 +778 5582 0.9080 +778 5592 0.9040 +778 5593 0.9030 +778 5621 0.9020 +778 5923 0.6790 +778 5924 0.6770 +778 5956 0.6080 +778 5959 0.4220 +778 5961 0.4820 +778 6010 0.5920 +778 6094 0.5170 +778 6103 0.8510 +778 6247 0.5650 +778 6261 0.8220 +778 6277 0.5450 +778 6324 0.5130 +778 6327 0.4550 +778 6855 0.5110 +778 8911 0.6630 +778 8912 0.8490 +778 8913 0.7370 +778 8927 0.4520 +778 9094 0.4270 +778 9187 0.5630 +778 9254 0.8540 +778 9480 0.4570 +778 9699 0.6400 +778 9742 0.4390 +778 10002 0.4490 +778 10125 0.6570 +778 10235 0.6630 +778 10242 0.6640 +778 10368 0.9270 +778 10369 0.7790 +778 10681 0.7720 +778 11081 0.5980 +778 22999 0.5600 +778 23746 0.4670 +778 25780 0.6560 +778 25858 0.7480 +778 27092 0.9300 +778 27094 0.6600 +778 27345 0.6830 +778 28227 0.6750 +778 30820 0.4680 +778 51475 0.6690 +778 51764 0.6680 +778 51806 0.6640 +778 54331 0.6520 +778 54714 0.5370 +778 55012 0.6500 +778 55799 0.7830 +778 55844 0.6650 +778 55970 0.6510 +778 57010 0.9860 +778 57096 0.4580 +778 57172 0.4460 +778 57539 0.4200 +778 57578 0.4110 +778 57685 0.7500 +778 57828 0.7490 +778 59283 0.9200 +778 59284 0.9190 +778 59285 0.9020 +778 59345 0.6580 +778 60506 0.9650 +778 79820 0.7530 +778 83394 0.4130 +778 84146 0.4190 +778 84839 0.4600 +778 91860 0.5000 +778 92211 0.4070 +778 93589 0.9800 +778 94137 0.4300 +778 94235 0.6500 +778 115727 0.6570 +778 117144 0.7900 +778 117155 0.7240 +778 124989 0.4320 +778 146779 0.4320 +778 157657 0.4160 +778 157855 0.7100 +778 163688 0.5020 +778 169522 0.5830 +778 246329 0.8040 +778 257044 0.7680 +778 257062 0.7540 +778 285588 0.7530 +778 340393 0.7200 +778 345193 0.7810 +778 347732 0.7540 +778 378807 0.7830 +778 388531 0.4540 +778 392617 0.6770 +778 440435 0.6040 +778 100130348 0.7450 +779 781 0.9990 +779 782 0.9950 +779 783 0.9870 +779 784 0.9630 +779 785 0.9680 +779 786 0.9970 +779 808 0.9900 +779 810 0.9020 +779 815 0.7420 +779 816 0.7480 +779 844 0.5840 +779 857 0.7100 +779 858 0.6700 +779 859 0.9280 +779 1180 0.7060 +779 1400 0.4030 +779 1785 0.4970 +779 1808 0.4390 +779 2165 0.4610 +779 2280 0.9180 +779 2770 0.6580 +779 2771 0.6580 +779 2773 0.6580 +779 2782 0.6640 +779 2783 0.6510 +779 2784 0.7010 +779 2785 0.6620 +779 2786 0.6760 +779 2787 0.6500 +779 2788 0.6630 +779 2790 0.6610 +779 2791 0.6650 +779 2792 0.6650 +779 2793 0.6850 +779 3211 0.4330 +779 3306 0.7240 +779 3356 0.9090 +779 3357 0.9020 +779 3358 0.9050 +779 3708 0.4140 +779 3737 0.4390 +779 3738 0.5630 +779 3751 0.5770 +779 3757 0.4140 +779 3759 0.8130 +779 3763 0.5130 +779 3768 0.5140 +779 3770 0.4280 +779 3778 0.7910 +779 3779 0.6800 +779 3991 0.4280 +779 4154 0.4600 +779 4350 0.6490 +779 4534 0.5610 +779 4625 0.4830 +779 4633 0.5460 +779 4634 0.4800 +779 4684 0.5290 +779 5021 0.7820 +779 5132 0.5740 +779 5142 0.5550 +779 5144 0.5700 +779 5225 0.4850 +779 5499 0.6610 +779 5500 0.6610 +779 5501 0.6610 +779 5515 0.6720 +779 5516 0.6720 +779 5518 0.6540 +779 5519 0.6540 +779 5520 0.6950 +779 5521 0.6500 +779 5522 0.6650 +779 5523 0.6900 +779 5525 0.6550 +779 5526 0.6510 +779 5527 0.6500 +779 5528 0.6740 +779 5529 0.6500 +779 5566 0.9190 +779 5567 0.9170 +779 5568 0.9180 +779 5578 0.9190 +779 5579 0.9020 +779 5582 0.9080 +779 5592 0.9130 +779 5593 0.9050 +779 5621 0.9000 +779 5860 0.4470 +779 5923 0.6700 +779 5924 0.6690 +779 6004 0.4290 +779 6261 0.9970 +779 6262 0.8010 +779 6263 0.6120 +779 6324 0.6030 +779 6327 0.4890 +779 6329 0.4880 +779 6769 0.4340 +779 6786 0.4620 +779 7125 0.6100 +779 7136 0.5370 +779 7140 0.4400 +779 7273 0.4510 +779 8911 0.6500 +779 8912 0.8430 +779 8913 0.8290 +779 9254 0.8610 +779 9465 0.6310 +779 10008 0.7880 +779 10125 0.6650 +779 10235 0.6560 +779 10242 0.6600 +779 10345 0.7710 +779 10368 0.9160 +779 10369 0.7740 +779 10681 0.6650 +779 25780 0.6560 +779 25858 0.7530 +779 27092 0.9180 +779 27094 0.6660 +779 27345 0.6790 +779 27348 0.4970 +779 28227 0.6630 +779 51764 0.6940 +779 51806 0.9020 +779 54331 0.6520 +779 55012 0.6700 +779 55799 0.7550 +779 55844 0.6650 +779 55970 0.6510 +779 56704 0.7920 +779 57158 0.7710 +779 57338 0.8360 +779 57539 0.4290 +779 57578 0.5060 +779 57617 0.6880 +779 57685 0.7610 +779 57828 0.7480 +779 59283 0.9200 +779 59284 0.9130 +779 59285 0.9270 +779 59345 0.6510 +779 79820 0.7830 +779 79906 0.4460 +779 80351 0.5120 +779 81570 0.6500 +779 84502 0.8590 +779 85366 0.4170 +779 89796 0.4810 +779 91860 0.8480 +779 93107 0.5050 +779 93589 0.9590 +779 94235 0.6500 +779 113146 0.5630 +779 115727 0.6580 +779 117144 0.7940 +779 117155 0.7360 +779 124989 0.4320 +779 126306 0.8960 +779 131377 0.4480 +779 146779 0.4320 +779 157855 0.7260 +779 163688 0.8570 +779 170850 0.5230 +779 246329 0.9730 +779 257044 0.7590 +779 257062 0.7760 +779 284612 0.4560 +779 285588 0.7530 +779 340393 0.7200 +779 342667 0.9600 +779 345193 0.5810 +779 347732 0.7700 +779 378807 0.8020 +779 100130348 0.7450 +779 100134444 0.9130 +780 928 0.6430 +780 999 0.7320 +780 1000 0.5190 +780 1277 0.7190 +780 1280 0.4770 +780 1281 0.7980 +780 1282 0.6610 +780 1289 0.7060 +780 1290 0.4500 +780 1301 0.5300 +780 1969 0.5080 +780 2064 0.6770 +780 2260 0.4360 +780 2263 0.4650 +780 2534 0.4890 +780 2885 0.4240 +780 2909 0.4980 +780 3002 0.4150 +780 3673 0.6080 +780 3791 0.4170 +780 3903 0.4270 +780 4071 0.8670 +780 4318 0.5590 +780 4771 0.4320 +780 4851 0.4450 +780 4914 0.4470 +780 4921 0.6470 +780 5045 0.4820 +780 5290 0.4260 +780 5578 0.5890 +780 5781 0.6150 +780 6046 0.4110 +780 6464 0.6710 +780 6714 0.6090 +780 6774 0.4930 +780 7094 0.4140 +780 7276 0.4620 +780 8440 0.6110 +780 8767 0.4330 +780 11140 0.6500 +780 11259 0.4420 +780 23286 0.5510 +780 23539 0.4380 +780 27111 0.6660 +780 51206 0.5300 +780 145173 0.4460 +781 782 0.9990 +781 783 0.9950 +781 784 0.9950 +781 785 0.9830 +781 786 0.9980 +781 815 0.7570 +781 816 0.7480 +781 845 0.4440 +781 857 0.5590 +781 858 0.6090 +781 859 0.4400 +781 1277 0.4190 +781 1804 0.4220 +781 1826 0.4670 +781 2257 0.4830 +781 2280 0.7210 +781 2891 0.4090 +781 2902 0.4460 +781 3064 0.5010 +781 3306 0.7300 +781 3728 0.5160 +781 3751 0.5190 +781 3752 0.6400 +781 3753 0.4820 +781 3757 0.6330 +781 3759 0.6100 +781 3762 0.5620 +781 3764 0.7280 +781 3767 0.4630 +781 3784 0.5750 +781 3991 0.4330 +781 4007 0.5960 +781 4053 0.4070 +781 4208 0.4570 +781 4624 0.4690 +781 4629 0.4050 +781 5021 0.6710 +781 5142 0.6170 +781 5144 0.6210 +781 5156 0.4540 +781 5318 0.5640 +781 5499 0.6550 +781 5500 0.6550 +781 5501 0.6550 +781 5515 0.6650 +781 5516 0.6600 +781 5518 0.6500 +781 5519 0.6500 +781 5520 0.6530 +781 5521 0.6620 +781 5522 0.6650 +781 5523 0.6560 +781 5525 0.6510 +781 5526 0.6500 +781 5527 0.6530 +781 5528 0.6720 +781 5529 0.6510 +781 5566 0.7010 +781 5567 0.7040 +781 5568 0.6980 +781 5582 0.4190 +781 5860 0.4690 +781 5923 0.6820 +781 5924 0.6740 +781 6059 0.4240 +781 6261 0.9290 +781 6262 0.5290 +781 6323 0.5090 +781 6324 0.6790 +781 6326 0.5070 +781 6327 0.6320 +781 6328 0.4810 +781 6329 0.4930 +781 6330 0.5170 +781 6331 0.8550 +781 6332 0.5750 +781 6334 0.4870 +781 6335 0.5380 +781 6336 0.7100 +781 6508 0.4450 +781 6546 0.4290 +781 6640 0.4740 +781 6804 0.4680 +781 6812 0.4650 +781 6860 0.4520 +781 7168 0.5430 +781 7458 0.4920 +781 7461 0.4420 +781 7871 0.5840 +781 8326 0.4240 +781 8468 0.4290 +781 8557 0.4890 +781 8911 0.5470 +781 8912 0.9190 +781 8913 0.7680 +781 9201 0.4840 +781 9254 0.7410 +781 9275 0.4700 +781 9289 0.4370 +781 9569 0.4240 +781 9992 0.4790 +781 10008 0.7000 +781 10021 0.6090 +781 10060 0.6320 +781 10125 0.6710 +781 10235 0.6500 +781 10345 0.7350 +781 10368 0.9780 +781 10369 0.9120 +781 10960 0.4730 +781 11280 0.5060 +781 23171 0.6740 +781 23512 0.4200 +781 23630 0.6460 +781 25780 0.6680 +781 25858 0.7200 +781 26608 0.4970 +781 27091 0.7110 +781 27092 0.9720 +781 28227 0.6500 +781 29098 0.7080 +781 29119 0.5160 +781 30819 0.4060 +781 51085 0.4260 +781 54504 0.4220 +781 54795 0.5260 +781 55012 0.6700 +781 55695 0.4700 +781 55799 0.8100 +781 55800 0.7120 +781 55844 0.6500 +781 56999 0.4170 +781 57685 0.6430 +781 57828 0.7200 +781 59283 0.9650 +781 59284 0.9650 +781 59285 0.9160 +781 60681 0.4500 +781 79820 0.7430 +781 81562 0.4010 +781 92293 0.4370 +781 93589 0.9280 +781 115727 0.6500 +781 117144 0.7540 +781 117155 0.8070 +781 129684 0.4300 +781 135892 0.4370 +781 166752 0.4320 +781 246329 0.7630 +781 257044 0.7260 +781 257062 0.7380 +781 259232 0.4970 +781 285588 0.7200 +781 340393 0.7200 +781 347732 0.7940 +781 378807 0.7470 +781 100130348 0.7200 +782 783 0.9420 +782 784 0.9370 +782 785 0.5770 +782 786 0.9970 +782 815 0.7620 +782 816 0.7440 +782 857 0.5170 +782 858 0.5420 +782 2138 0.4900 +782 2280 0.5900 +782 2558 0.4310 +782 2572 0.4340 +782 2669 0.5840 +782 2892 0.4130 +782 3216 0.4550 +782 3306 0.5540 +782 3754 0.4880 +782 3765 0.4380 +782 4684 0.5290 +782 4830 0.4530 +782 4915 0.5870 +782 4978 0.4200 +782 5021 0.6540 +782 5142 0.5520 +782 5144 0.5830 +782 5499 0.6680 +782 5500 0.6730 +782 5501 0.6640 +782 5515 0.6680 +782 5516 0.6680 +782 5518 0.6520 +782 5519 0.6780 +782 5520 0.6640 +782 5521 0.6640 +782 5522 0.6620 +782 5523 0.6740 +782 5525 0.6630 +782 5526 0.6930 +782 5527 0.6720 +782 5528 0.6610 +782 5529 0.6830 +782 5566 0.6710 +782 5567 0.6720 +782 5568 0.6620 +782 5582 0.4470 +782 5923 0.6970 +782 5924 0.6570 +782 6261 0.7460 +782 6323 0.6340 +782 6326 0.5570 +782 6328 0.5550 +782 6329 0.6580 +782 6331 0.5480 +782 6332 0.4560 +782 6334 0.4650 +782 6335 0.4730 +782 6336 0.4200 +782 6854 0.4090 +782 8911 0.6070 +782 8912 0.7610 +782 8913 0.7790 +782 9196 0.5090 +782 9254 0.9470 +782 10125 0.6510 +782 10235 0.6500 +782 10368 0.9120 +782 10369 0.8470 +782 11280 0.4130 +782 23416 0.5280 +782 25780 0.6680 +782 25858 0.5400 +782 27091 0.8100 +782 27092 0.9280 +782 28227 0.6610 +782 53373 0.4750 +782 55012 0.6550 +782 55799 0.9260 +782 55844 0.6570 +782 57685 0.7120 +782 57828 0.5400 +782 59283 0.9000 +782 59284 0.8850 +782 59285 0.6510 +782 79820 0.5450 +782 93589 0.9300 +782 114798 0.4090 +782 115727 0.6500 +782 117144 0.6060 +782 117155 0.6830 +782 219931 0.4070 +782 246329 0.7460 +782 255057 0.6860 +782 257044 0.5480 +782 257062 0.5440 +782 259232 0.4310 +782 285588 0.5400 +782 340393 0.5400 +782 347732 0.6710 +782 378807 0.5860 +782 100130348 0.5400 +783 784 0.9610 +783 785 0.8910 +783 786 0.8970 +783 815 0.7220 +783 816 0.7110 +783 845 0.5530 +783 859 0.4520 +783 1804 0.4490 +783 1829 0.4460 +783 2280 0.7220 +783 2770 0.6290 +783 2771 0.5220 +783 2782 0.5150 +783 2783 0.5050 +783 2784 0.6010 +783 2785 0.5360 +783 2786 0.5010 +783 2787 0.5010 +783 2788 0.6440 +783 2790 0.4990 +783 2791 0.5050 +783 2792 0.5050 +783 2793 0.4990 +783 2903 0.4200 +783 3306 0.7320 +783 3630 0.4550 +783 3699 0.4900 +783 3700 0.4040 +783 3709 0.4540 +783 3710 0.4430 +783 3728 0.4100 +783 3745 0.4200 +783 3751 0.4710 +783 3752 0.6290 +783 3753 0.5930 +783 3757 0.7730 +783 3759 0.6390 +783 3762 0.5560 +783 3764 0.6790 +783 3767 0.4070 +783 3784 0.6020 +783 4607 0.4220 +783 4684 0.5390 +783 5021 0.6540 +783 5142 0.6080 +783 5144 0.6000 +783 5305 0.5810 +783 5318 0.5910 +783 5499 0.6640 +783 5500 0.6640 +783 5501 0.6640 +783 5515 0.6680 +783 5516 0.6680 +783 5518 0.6500 +783 5519 0.6550 +783 5520 0.6720 +783 5521 0.7710 +783 5522 0.6560 +783 5523 0.6920 +783 5525 0.6710 +783 5526 0.6900 +783 5527 0.6660 +783 5528 0.6610 +783 5529 0.6600 +783 5566 0.6710 +783 5567 0.6800 +783 5568 0.6700 +783 5923 0.6580 +783 5924 0.6500 +783 6261 0.7590 +783 6262 0.7590 +783 6263 0.4920 +783 6323 0.5590 +783 6324 0.8280 +783 6326 0.4900 +783 6327 0.6350 +783 6328 0.4580 +783 6329 0.4680 +783 6330 0.5610 +783 6331 0.9050 +783 6332 0.5090 +783 6334 0.4620 +783 6335 0.4850 +783 6336 0.6770 +783 6546 0.4060 +783 6616 0.5060 +783 6640 0.5120 +783 6804 0.4260 +783 6812 0.5310 +783 6844 0.4360 +783 6861 0.4310 +783 7871 0.5120 +783 8292 0.4510 +783 8379 0.4890 +783 8514 0.4150 +783 8911 0.7780 +783 8912 0.8560 +783 8913 0.7660 +783 9254 0.9900 +783 9312 0.4400 +783 9881 0.5210 +783 9992 0.7460 +783 10008 0.8410 +783 10021 0.8020 +783 10060 0.5940 +783 10125 0.6580 +783 10142 0.4570 +783 10235 0.6500 +783 10265 0.6010 +783 10345 0.4660 +783 10368 0.7790 +783 10369 0.8130 +783 10529 0.4300 +783 10681 0.5240 +783 11317 0.4100 +783 23171 0.8680 +783 23345 0.4600 +783 23630 0.6200 +783 23704 0.7200 +783 25780 0.6500 +783 25858 0.7200 +783 26011 0.5530 +783 27092 0.7930 +783 28227 0.6890 +783 29098 0.6040 +783 51764 0.5520 +783 54331 0.4990 +783 54795 0.5150 +783 54805 0.4370 +783 55012 0.6550 +783 55799 0.9390 +783 55800 0.8460 +783 55844 0.6550 +783 55970 0.4990 +783 57158 0.4100 +783 57412 0.4190 +783 57685 0.6990 +783 57828 0.7200 +783 59283 0.7670 +783 59284 0.8010 +783 59285 0.8520 +783 59345 0.5400 +783 79192 0.5910 +783 79820 0.7240 +783 93589 0.9480 +783 94235 0.4990 +783 115727 0.6500 +783 117144 0.7460 +783 117155 0.8240 +783 144100 0.4320 +783 219621 0.4800 +783 221074 0.4370 +783 221078 0.4440 +783 221079 0.4070 +783 246329 0.7600 +783 256297 0.5860 +783 257044 0.7280 +783 257062 0.7220 +783 259232 0.4430 +783 285588 0.7200 +783 340393 0.7200 +783 347732 0.7990 +783 378807 0.7650 +783 100130348 0.7200 +784 785 0.9640 +784 786 0.9000 +784 815 0.6880 +784 816 0.6740 +784 2138 0.4350 +784 2280 0.7220 +784 2669 0.5930 +784 2770 0.5220 +784 2771 0.5220 +784 2782 0.5210 +784 2783 0.5060 +784 2784 0.5220 +784 2785 0.5420 +784 2786 0.4990 +784 2787 0.5010 +784 2788 0.4990 +784 2790 0.4990 +784 2791 0.5050 +784 2792 0.5050 +784 2793 0.4990 +784 2987 0.8360 +784 3306 0.7280 +784 3630 0.4310 +784 4684 0.5130 +784 5021 0.6540 +784 5142 0.5520 +784 5144 0.5580 +784 5499 0.6700 +784 5500 0.6800 +784 5501 0.6640 +784 5515 0.6680 +784 5516 0.6680 +784 5518 0.6500 +784 5519 0.6500 +784 5520 0.6640 +784 5521 0.6660 +784 5522 0.6610 +784 5523 0.6640 +784 5525 0.6600 +784 5526 0.6730 +784 5527 0.6610 +784 5528 0.6610 +784 5529 0.6600 +784 5566 0.6580 +784 5567 0.6560 +784 5568 0.6560 +784 5923 0.6500 +784 5924 0.6670 +784 6261 0.7530 +784 6323 0.4110 +784 6326 0.4630 +784 6328 0.4560 +784 6331 0.4150 +784 6334 0.4530 +784 6335 0.4180 +784 6336 0.4090 +784 6616 0.4470 +784 6714 0.4500 +784 6804 0.4900 +784 6812 0.5050 +784 6844 0.4450 +784 6861 0.4770 +784 8604 0.4030 +784 8911 0.5320 +784 8912 0.8910 +784 8913 0.8250 +784 9254 0.8690 +784 10125 0.6530 +784 10235 0.6850 +784 10368 0.9380 +784 10369 0.8670 +784 10681 0.5050 +784 11280 0.4120 +784 25780 0.6500 +784 25858 0.7200 +784 26011 0.4220 +784 27092 0.9620 +784 28227 0.6610 +784 51764 0.5580 +784 54331 0.4990 +784 55012 0.6550 +784 55799 0.8900 +784 55844 0.6550 +784 55970 0.5220 +784 56654 0.4170 +784 57019 0.6280 +784 57158 0.4640 +784 57530 0.4430 +784 57685 0.7000 +784 57828 0.7200 +784 59283 0.9300 +784 59284 0.9420 +784 59285 0.9090 +784 59345 0.5050 +784 63941 0.4480 +784 79820 0.7350 +784 92922 0.4400 +784 93589 0.9900 +784 94235 0.4990 +784 115727 0.6500 +784 117144 0.7710 +784 117155 0.8070 +784 200035 0.4050 +784 246329 0.7400 +784 255057 0.6050 +784 257044 0.7410 +784 257062 0.7220 +784 285588 0.7200 +784 340393 0.7200 +784 347732 0.8030 +784 378807 0.7480 +784 100130348 0.7200 +785 786 0.9350 +785 808 0.4630 +785 815 0.7170 +785 816 0.6920 +785 1181 0.8010 +785 1740 0.4550 +785 1946 0.4580 +785 1969 0.5630 +785 1993 0.4440 +785 2042 0.5530 +785 2048 0.6840 +785 2259 0.4730 +785 2280 0.7320 +785 2554 0.7720 +785 2562 0.5340 +785 2563 0.7990 +785 2566 0.5550 +785 2890 0.4500 +785 2903 0.5400 +785 2987 0.7900 +785 3306 0.7330 +785 3736 0.7770 +785 3737 0.5500 +785 3748 0.4810 +785 3752 0.4310 +785 3778 0.4380 +785 3785 0.7270 +785 4684 0.5450 +785 5021 0.6520 +785 5142 0.5850 +785 5144 0.5870 +785 5499 0.6730 +785 5500 0.6640 +785 5501 0.6640 +785 5515 0.6750 +785 5516 0.6750 +785 5518 0.6500 +785 5519 0.6500 +785 5520 0.6600 +785 5521 0.7150 +785 5522 0.6690 +785 5523 0.6590 +785 5525 0.6600 +785 5526 0.6640 +785 5527 0.6750 +785 5528 0.7660 +785 5529 0.6600 +785 5566 0.6640 +785 5567 0.7940 +785 5568 0.6640 +785 5923 0.6690 +785 5924 0.6580 +785 6261 0.7850 +785 6262 0.4980 +785 6323 0.7080 +785 6324 0.4950 +785 6326 0.6930 +785 6328 0.4310 +785 6329 0.4690 +785 6334 0.5890 +785 6335 0.4700 +785 6336 0.4030 +785 6507 0.7540 +785 8911 0.5610 +785 8912 0.8610 +785 8913 0.7390 +785 9254 0.9600 +785 10125 0.6500 +785 10235 0.6700 +785 10368 0.9580 +785 10369 0.9510 +785 10788 0.4370 +785 11335 0.9320 +785 23208 0.4420 +785 25780 0.6650 +785 25858 0.7200 +785 27092 0.9340 +785 28227 0.6590 +785 54331 0.4270 +785 55012 0.6550 +785 55799 0.8880 +785 55844 0.6540 +785 57685 0.7340 +785 57828 0.7560 +785 59283 0.9400 +785 59284 0.9360 +785 59285 0.9490 +785 79820 0.7600 +785 80258 0.6160 +785 93589 0.9610 +785 112476 0.4990 +785 114327 0.8740 +785 114805 0.4150 +785 115727 0.6500 +785 117144 0.7460 +785 117155 0.8120 +785 246329 0.7500 +785 257044 0.7720 +785 257062 0.7220 +785 259232 0.5100 +785 285588 0.7200 +785 340393 0.7200 +785 347732 0.7990 +785 378807 0.7480 +785 100130348 0.7200 +786 815 0.7250 +786 816 0.7390 +786 844 0.4380 +786 2280 0.7230 +786 3216 0.4530 +786 3306 0.7270 +786 3743 0.6210 +786 4618 0.6230 +786 4632 0.4840 +786 4654 0.4460 +786 4656 0.5350 +786 4830 0.4390 +786 5021 0.6500 +786 5142 0.5590 +786 5144 0.5590 +786 5499 0.6500 +786 5500 0.6500 +786 5501 0.6500 +786 5515 0.6500 +786 5516 0.6500 +786 5518 0.6500 +786 5519 0.6500 +786 5520 0.6500 +786 5521 0.6500 +786 5522 0.6570 +786 5523 0.6910 +786 5525 0.6500 +786 5526 0.6500 +786 5527 0.6500 +786 5528 0.6500 +786 5529 0.6500 +786 5566 0.6500 +786 5567 0.6500 +786 5568 0.6520 +786 5582 0.5200 +786 5923 0.6880 +786 5924 0.6660 +786 6261 0.8690 +786 6323 0.4130 +786 6326 0.4390 +786 6328 0.4130 +786 6329 0.8200 +786 6331 0.4560 +786 6332 0.4140 +786 6334 0.4440 +786 6335 0.4570 +786 6336 0.4410 +786 7125 0.5110 +786 7135 0.4110 +786 7136 0.5240 +786 7140 0.4580 +786 8911 0.4340 +786 8912 0.8170 +786 8913 0.7800 +786 9172 0.4300 +786 9254 0.9810 +786 10125 0.6530 +786 10235 0.6530 +786 10368 0.9740 +786 10369 0.9620 +786 10753 0.5150 +786 25780 0.6740 +786 25858 0.7200 +786 27091 0.9180 +786 27092 0.9860 +786 27295 0.5700 +786 28227 0.6680 +786 29895 0.4670 +786 51207 0.4570 +786 53373 0.5340 +786 55012 0.6640 +786 55799 0.9410 +786 55844 0.6500 +786 57685 0.7750 +786 57828 0.7210 +786 58529 0.4820 +786 59283 0.9680 +786 59284 0.9760 +786 59285 0.7540 +786 79820 0.7200 +786 85366 0.4120 +786 93589 0.9620 +786 115727 0.6530 +786 116285 0.5120 +786 117144 0.7300 +786 117155 0.8480 +786 219931 0.4520 +786 246329 0.7670 +786 255919 0.4080 +786 257044 0.7260 +786 257062 0.7260 +786 285588 0.7220 +786 340393 0.7200 +786 347732 0.8060 +786 378807 0.7340 +786 644070 0.4900 +786 100130348 0.7200 +786 100288072 0.5300 +788 948 0.4280 +788 1103 0.7120 +788 1374 0.9260 +788 1375 0.9260 +788 1376 0.9960 +788 1384 0.9160 +788 1431 0.5480 +788 1468 0.5390 +788 1632 0.4570 +788 1666 0.5150 +788 1891 0.5610 +788 1892 0.5680 +788 1962 0.5100 +788 2108 0.5570 +788 2109 0.5930 +788 2110 0.7590 +788 2180 0.5640 +788 2641 0.4060 +788 2744 0.4300 +788 3030 0.7200 +788 3032 0.7080 +788 3033 0.6300 +788 3155 0.5250 +788 3158 0.4240 +788 3295 0.7490 +788 4967 0.4670 +788 5166 0.4840 +788 5250 0.4070 +788 5465 0.7150 +788 6574 0.4010 +788 6576 0.4320 +788 6584 0.6720 +788 8802 0.4050 +788 10449 0.6710 +788 10455 0.4990 +788 10891 0.5210 +788 10999 0.4730 +788 11254 0.4180 +788 23417 0.5010 +788 25874 0.4570 +788 28976 0.5010 +788 50640 0.5740 +788 51097 0.5760 +788 51107 0.8380 +788 51703 0.5000 +788 54677 0.4890 +788 55217 0.4310 +788 55902 0.4350 +788 57104 0.4070 +788 80221 0.4690 +788 80704 0.4380 +788 84263 0.5010 +788 84532 0.4550 +788 84619 0.4190 +788 123096 0.9080 +788 126129 0.9250 +788 132949 0.9170 +788 148867 0.5970 +788 376497 0.4890 +790 978 0.4420 +790 1373 0.9080 +790 1400 0.6610 +790 1503 0.7320 +790 1723 0.9940 +790 1727 0.6130 +790 1806 0.8400 +790 1807 0.7720 +790 1808 0.6430 +790 1809 0.6660 +790 1841 0.5990 +790 1854 0.5060 +790 2058 0.5480 +790 2166 0.5590 +790 2193 0.4320 +790 2194 0.4520 +790 2232 0.5470 +790 2475 0.4310 +790 2571 0.8360 +790 2572 0.8340 +790 2618 0.8770 +790 2673 0.9490 +790 2744 0.9300 +790 2746 0.6410 +790 2747 0.5960 +790 2752 0.9670 +790 2805 0.9250 +790 2806 0.9310 +790 2956 0.4630 +790 3376 0.5230 +790 3611 0.5730 +790 3614 0.4240 +790 3615 0.5680 +790 3814 0.6430 +790 3978 0.5030 +790 4292 0.5720 +790 4522 0.5970 +790 4609 0.7100 +790 4942 0.6710 +790 4953 0.6420 +790 5009 0.9750 +790 5188 0.6120 +790 5198 0.6500 +790 5424 0.4270 +790 5471 0.9910 +790 5631 0.4140 +790 5634 0.4820 +790 5701 0.4330 +790 5832 0.7960 +790 6188 0.4060 +790 6194 0.4080 +790 6198 0.4660 +790 6199 0.4300 +790 6203 0.5090 +790 6222 0.4550 +790 6470 0.4490 +790 6472 0.4820 +790 6723 0.5000 +790 6780 0.4030 +790 6898 0.4060 +790 7167 0.4570 +790 7277 0.6010 +790 7280 0.5900 +790 7298 0.5530 +790 7371 0.4940 +790 7372 0.9460 +790 7378 0.4850 +790 7407 0.5640 +790 7531 0.4280 +790 8565 0.4440 +790 8607 0.5720 +790 8833 0.7490 +790 9343 0.4120 +790 9401 0.4080 +790 9615 0.4360 +790 9945 0.9340 +790 9962 0.6540 +790 9963 0.6540 +790 10131 0.4180 +790 10155 0.4490 +790 10383 0.5670 +790 10419 0.4460 +790 10570 0.6410 +790 10606 0.5590 +790 10797 0.4690 +790 10841 0.8160 +790 10856 0.5450 +790 11140 0.4610 +790 22934 0.4470 +790 22984 0.4580 +790 23363 0.5320 +790 23476 0.5420 +790 27165 0.9180 +790 29968 0.4400 +790 51026 0.6440 +790 51154 0.4850 +790 51167 0.6810 +790 51320 0.5480 +790 51366 0.4880 +790 51557 0.5520 +790 51582 0.4670 +790 51700 0.6130 +790 51706 0.6130 +790 51727 0.5340 +790 54963 0.5170 +790 55157 0.5610 +790 55278 0.5630 +790 56474 0.5940 +790 56896 0.6300 +790 79073 0.6410 +790 79711 0.5500 +790 79814 0.4290 +790 80150 0.9040 +790 83549 0.5160 +790 83932 0.5100 +790 92106 0.6130 +790 113451 0.5250 +790 122622 0.9540 +790 127845 0.6430 +790 137362 0.9090 +790 139596 0.6530 +790 149041 0.5100 +790 151531 0.4730 +790 158584 0.5590 +790 162417 0.7260 +790 259307 0.9000 +790 283985 0.5360 +790 285148 0.5790 +790 339896 0.8280 +790 339983 0.9020 +790 340706 0.4230 +790 554235 0.8000 +790 606495 0.6160 +790 100129583 0.4150 +793 795 0.9710 +793 808 0.5930 +793 811 0.5170 +793 815 0.5690 +793 836 0.8100 +793 869 0.4790 +793 885 0.6620 +793 1103 0.7280 +793 1124 0.4030 +793 1191 0.4070 +793 1267 0.4040 +793 1392 0.4050 +793 1406 0.4590 +793 1464 0.4090 +793 1471 0.4120 +793 1488 0.4990 +793 1523 0.4470 +793 1641 0.6940 +793 1644 0.4500 +793 1666 0.8360 +793 1690 0.6750 +793 1742 0.5510 +793 1746 0.4960 +793 1824 0.4890 +793 1825 0.4910 +793 1958 0.4320 +793 1995 0.4720 +793 2016 0.4530 +793 2019 0.4590 +793 2026 0.4630 +793 2115 0.4030 +793 2173 0.5290 +793 2247 0.4090 +793 2290 0.4760 +793 2353 0.5420 +793 2571 0.8730 +793 2572 0.7260 +793 2596 0.4530 +793 2597 0.5040 +793 2668 0.4470 +793 2670 0.7650 +793 2752 0.5260 +793 2890 0.4800 +793 2895 0.4940 +793 2902 0.4050 +793 2903 0.4170 +793 2904 0.4180 +793 2911 0.4850 +793 2916 0.4120 +793 2922 0.4730 +793 3064 0.4020 +793 3083 0.4250 +793 3208 0.4270 +793 3359 0.4400 +793 3670 0.5220 +793 3708 0.6650 +793 3736 0.4640 +793 3746 0.4660 +793 3747 0.4620 +793 3751 0.4100 +793 3763 0.6030 +793 3975 0.4980 +793 4009 0.4430 +793 4133 0.5760 +793 4155 0.4670 +793 4645 0.4450 +793 4647 0.4170 +793 4684 0.4040 +793 4741 0.4430 +793 4744 0.4930 +793 4747 0.4770 +793 4753 0.4740 +793 4760 0.4960 +793 4842 0.4860 +793 4852 0.7630 +793 4908 0.4020 +793 4915 0.4790 +793 4922 0.6110 +793 4929 0.4130 +793 5015 0.5490 +793 5076 0.5320 +793 5080 0.6970 +793 5100 0.4570 +793 5121 0.5700 +793 5173 0.4720 +793 5179 0.5050 +793 5457 0.6050 +793 5458 0.5180 +793 5578 0.6190 +793 5582 0.6640 +793 5649 0.5850 +793 5741 0.4320 +793 5816 0.9640 +793 5957 0.6940 +793 6010 0.6050 +793 6017 0.5000 +793 6262 0.4820 +793 6271 0.6130 +793 6277 0.7410 +793 6285 0.7570 +793 6310 0.5840 +793 6334 0.4140 +793 6469 0.4980 +793 6507 0.4700 +793 6511 0.4130 +793 6529 0.4980 +793 6531 0.5050 +793 6546 0.4240 +793 6571 0.4460 +793 6572 0.5090 +793 6616 0.5100 +793 6622 0.4990 +793 6657 0.4980 +793 6696 0.4090 +793 6750 0.8820 +793 6853 0.5460 +793 6854 0.4630 +793 6855 0.7550 +793 6863 0.6810 +793 6869 0.4260 +793 6975 0.6660 +793 7033 0.5610 +793 7054 0.7780 +793 7080 0.4600 +793 7201 0.4280 +793 7369 0.4670 +793 7432 0.6420 +793 7447 0.4040 +793 7545 0.4230 +793 7837 0.5120 +793 8224 0.4420 +793 8320 0.4350 +793 8573 0.4760 +793 9306 0.6390 +793 9607 0.4340 +793 9657 0.4200 +793 10215 0.5320 +793 10243 0.5290 +793 10381 0.4890 +793 10457 0.4810 +793 10716 0.6840 +793 10763 0.6310 +793 11030 0.4710 +793 25894 0.4360 +793 26121 0.4240 +793 26137 0.4490 +793 26468 0.5430 +793 27286 0.5230 +793 30818 0.4300 +793 30820 0.4040 +793 51083 0.4800 +793 51806 0.5860 +793 54550 0.5290 +793 55503 0.7200 +793 56302 0.7990 +793 57030 0.7240 +793 57084 0.7300 +793 57468 0.4050 +793 57626 0.5670 +793 63973 0.4140 +793 63974 0.4070 +793 64168 0.4570 +793 64211 0.4320 +793 64919 0.5170 +793 80031 0.4950 +793 84152 0.6040 +793 91860 0.5900 +793 93986 0.5130 +793 94233 0.4610 +793 117156 0.4200 +793 126006 0.4500 +793 127833 0.5000 +793 132204 0.4580 +793 137902 0.5120 +793 140679 0.6900 +793 146227 0.6880 +793 146713 0.8050 +793 163688 0.5840 +793 170302 0.5350 +793 170825 0.4870 +793 221833 0.4050 +793 246213 0.6200 +793 256297 0.4260 +793 338917 0.6460 +793 654231 0.4280 +793 100423062 0.4400 +794 795 0.7530 +794 800 0.5600 +794 811 0.5920 +794 815 0.5610 +794 869 0.4620 +794 885 0.6780 +794 947 0.6060 +794 968 0.6610 +794 1029 0.4110 +794 1045 0.5410 +794 1048 0.6420 +794 1103 0.7610 +794 1113 0.5340 +794 1191 0.5150 +794 1264 0.4260 +794 1265 0.4240 +794 1266 0.4390 +794 1364 0.5850 +794 1392 0.6110 +794 1523 0.4220 +794 1641 0.7280 +794 1666 0.6470 +794 1728 0.4270 +794 1740 0.5150 +794 1742 0.4710 +794 1745 0.7940 +794 1746 0.6850 +794 1834 0.4180 +794 1995 0.5260 +794 1996 0.4830 +794 2016 0.4660 +794 2026 0.6490 +794 2099 0.4820 +794 2100 0.4650 +794 2115 0.4310 +794 2173 0.4620 +794 2290 0.5020 +794 2353 0.4750 +794 2526 0.4320 +794 2571 0.8320 +794 2572 0.7550 +794 2596 0.4450 +794 2597 0.4310 +794 2670 0.7050 +794 2752 0.4560 +794 2890 0.4160 +794 2911 0.4060 +794 2922 0.5790 +794 3208 0.5140 +794 3359 0.5980 +794 3670 0.4970 +794 3736 0.4100 +794 3746 0.5060 +794 3747 0.4420 +794 3815 0.5350 +794 3852 0.7900 +794 3855 0.7890 +794 3880 0.4530 +794 3975 0.4300 +794 4072 0.5440 +794 4133 0.5490 +794 4267 0.7180 +794 4311 0.6390 +794 4355 0.4910 +794 4646 0.4360 +794 4647 0.5450 +794 4684 0.6070 +794 4741 0.4120 +794 4744 0.4460 +794 4747 0.4180 +794 4760 0.5350 +794 4842 0.5790 +794 4852 0.9020 +794 4915 0.4460 +794 4922 0.5510 +794 4975 0.4430 +794 5015 0.4160 +794 5076 0.4900 +794 5080 0.7370 +794 5173 0.4950 +794 5175 0.5110 +794 5179 0.4820 +794 5241 0.5140 +794 5422 0.4240 +794 5457 0.5920 +794 5458 0.4800 +794 5459 0.4580 +794 5578 0.5330 +794 5582 0.4570 +794 5649 0.6950 +794 5734 0.6210 +794 5816 0.9670 +794 5957 0.6400 +794 6010 0.4760 +794 6017 0.4080 +794 6277 0.5770 +794 6285 0.5000 +794 6469 0.4230 +794 6474 0.4180 +794 6507 0.4240 +794 6529 0.5450 +794 6538 0.5190 +794 6572 0.4920 +794 6616 0.5160 +794 6622 0.4390 +794 6657 0.4880 +794 6662 0.5150 +794 6663 0.4930 +794 6750 0.9380 +794 6853 0.5460 +794 6854 0.4800 +794 6855 0.7430 +794 6863 0.6580 +794 6869 0.4330 +794 7026 0.4290 +794 7038 0.4120 +794 7054 0.7310 +794 7056 0.5180 +794 7080 0.7170 +794 7122 0.4370 +794 7157 0.4320 +794 7345 0.4460 +794 7432 0.7210 +794 7490 0.8040 +794 7837 0.4740 +794 7849 0.6770 +794 8224 0.4190 +794 8320 0.4930 +794 8573 0.4390 +794 9355 0.4150 +794 9476 0.6260 +794 10215 0.5480 +794 10232 0.6350 +794 10243 0.5440 +794 10381 0.4890 +794 10630 0.5740 +794 10716 0.7720 +794 10763 0.6180 +794 10842 0.4020 +794 11030 0.5380 +794 23314 0.4410 +794 25981 0.4200 +794 26007 0.4050 +794 26468 0.7680 +794 27286 0.5850 +794 27319 0.4490 +794 30012 0.4950 +794 51083 0.4230 +794 53904 0.4040 +794 53919 0.4910 +794 54474 0.7390 +794 55036 0.4440 +794 55107 0.4130 +794 55172 0.4320 +794 57030 0.6890 +794 57084 0.7310 +794 57468 0.4330 +794 63973 0.4490 +794 64168 0.4450 +794 64211 0.4100 +794 64919 0.5130 +794 83715 0.4050 +794 84152 0.5880 +794 84525 0.4800 +794 89765 0.4160 +794 91860 0.4450 +794 93233 0.4520 +794 93986 0.6100 +794 94233 0.4960 +794 127833 0.4210 +794 137902 0.4740 +794 140679 0.6970 +794 146713 0.7580 +794 163688 0.4450 +794 170302 0.5930 +794 170825 0.5340 +794 221833 0.8700 +794 246213 0.6280 +794 338917 0.5560 +794 400566 0.7180 +794 654231 0.4760 +795 808 0.7910 +795 810 0.7870 +795 846 0.4770 +795 857 0.5280 +795 1591 0.5870 +795 1594 0.5620 +795 1666 0.4370 +795 2099 0.4010 +795 3906 0.4820 +795 5741 0.5950 +795 5816 0.8630 +795 5957 0.4100 +795 6274 0.5430 +795 6276 0.5770 +795 6277 0.5400 +795 6281 0.4670 +795 6283 0.4470 +795 6284 0.5270 +795 6546 0.4880 +795 8074 0.4310 +795 9069 0.4230 +795 9478 0.5590 +795 10568 0.5020 +795 10590 0.4570 +795 51475 0.7670 +795 51806 0.7860 +795 55503 0.8770 +795 56302 0.7310 +795 56344 0.5190 +795 57010 0.8690 +795 57402 0.4160 +795 63904 0.4490 +795 83698 0.4130 +795 91860 0.7870 +795 140576 0.5870 +795 142680 0.4420 +795 163688 0.7870 +795 164633 0.4980 +795 338324 0.4730 +795 388697 0.5760 +795 654231 0.4560 +796 797 0.9730 +796 1081 0.4770 +796 1315 0.4090 +796 1392 0.4970 +796 1471 0.4160 +796 1612 0.4180 +796 1906 0.4510 +796 2243 0.4650 +796 2488 0.5030 +796 2492 0.4200 +796 2641 0.5020 +796 2691 0.6840 +796 2695 0.5290 +796 2696 0.4180 +796 2778 0.9640 +796 2782 0.9230 +796 2893 0.4700 +796 2934 0.4080 +796 3339 0.4990 +796 3356 0.4700 +796 3375 0.9860 +796 3627 0.4180 +796 3630 0.4900 +796 3640 0.4240 +796 4057 0.4370 +796 4069 0.4160 +796 4240 0.4430 +796 4878 0.4920 +796 5024 0.4340 +796 5368 0.5260 +796 5443 0.5120 +796 5617 0.4650 +796 5741 0.8360 +796 5744 0.6730 +796 5745 0.4200 +796 6288 0.4410 +796 6336 0.4820 +796 6343 0.5130 +796 6344 0.4650 +796 6406 0.4170 +796 6622 0.4130 +796 6714 0.5370 +796 6863 0.8340 +796 7252 0.4380 +796 7276 0.4380 +796 7432 0.6120 +796 7442 0.5860 +796 7450 0.4120 +796 8989 0.5260 +796 10203 0.9990 +796 10266 0.9980 +796 10267 0.9980 +796 10268 0.9860 +796 10367 0.7250 +796 11186 0.4300 +796 54331 0.9220 +796 54959 0.4280 +796 55503 0.5520 +796 55553 0.4360 +796 57105 0.5760 +796 63895 0.4280 +796 79924 0.6370 +796 113091 0.4980 +796 116512 0.5820 +796 117579 0.4470 +796 170589 0.4280 +796 594857 0.4500 +797 1081 0.4220 +797 1392 0.5160 +797 2641 0.5060 +797 2691 0.5640 +797 2695 0.4820 +797 2778 0.8950 +797 2782 0.8000 +797 3375 0.9940 +797 3640 0.4820 +797 4803 0.4240 +797 4852 0.4240 +797 5443 0.5500 +797 5741 0.6400 +797 5744 0.4740 +797 6019 0.4180 +797 6343 0.5750 +797 6714 0.4990 +797 6750 0.4240 +797 6863 0.6210 +797 6869 0.4470 +797 7432 0.6520 +797 7442 0.5250 +797 10203 0.9990 +797 10266 0.9900 +797 10267 0.9990 +797 10268 0.9930 +797 10367 0.7110 +797 27297 0.4450 +797 51083 0.4640 +797 54331 0.8000 +797 57105 0.4990 +797 79924 0.7940 +797 113091 0.5550 +797 116254 0.4200 +797 117579 0.4730 +797 122876 0.4090 +797 594857 0.4880 +800 808 0.9960 +800 810 0.9960 +800 947 0.7280 +800 968 0.4450 +800 1015 0.4650 +800 1072 0.5400 +800 1073 0.5600 +800 1264 0.8670 +800 1265 0.5030 +800 1266 0.5150 +800 1277 0.4120 +800 1278 0.4430 +800 1282 0.4680 +800 1284 0.4550 +800 1290 0.6540 +800 1293 0.4200 +800 1490 0.4180 +800 2017 0.4910 +800 2026 0.4280 +800 2099 0.5120 +800 2316 0.5930 +800 2317 0.6440 +800 2318 0.6770 +800 2335 0.4700 +800 2885 0.4880 +800 2932 0.4360 +800 2934 0.6340 +800 3157 0.4110 +800 3309 0.4350 +800 3569 0.4460 +800 3667 0.4270 +800 3672 0.7160 +800 3691 0.4740 +800 3693 0.5930 +800 3815 0.6640 +800 3852 0.4160 +800 3855 0.5370 +800 3880 0.5770 +800 4060 0.4620 +800 4267 0.6760 +800 4311 0.6750 +800 4627 0.7110 +800 4628 0.4340 +800 4629 0.9460 +800 4636 0.5470 +800 4637 0.6590 +800 4638 0.8320 +800 4654 0.5050 +800 4656 0.6250 +800 4659 0.4700 +800 4684 0.4150 +800 5175 0.5630 +800 5241 0.4800 +800 5265 0.4750 +800 5594 0.9500 +800 5595 0.9260 +800 5829 0.7630 +800 6249 0.4090 +800 6464 0.7180 +800 6525 0.6360 +800 6663 0.4780 +800 6678 0.4850 +800 6855 0.4770 +800 6876 0.7940 +800 7030 0.4390 +800 7094 0.6790 +800 7157 0.4590 +800 7168 0.8690 +800 7169 0.7470 +800 7170 0.6000 +800 7171 0.6880 +800 7414 0.7710 +800 7431 0.4980 +800 7490 0.4720 +800 7849 0.4090 +800 8312 0.4440 +800 8407 0.6550 +800 9274 0.7790 +800 9275 0.6900 +800 10174 0.5550 +800 10398 0.8440 +800 10580 0.6110 +800 10627 0.6090 +800 11167 0.4690 +800 23022 0.5510 +800 25802 0.8940 +800 25836 0.6840 +800 25913 0.4830 +800 26872 0.5020 +800 29114 0.6670 +800 29895 0.5470 +800 51806 0.9960 +800 54474 0.4180 +800 55107 0.7290 +800 55631 0.4280 +800 56624 0.4750 +800 58498 0.5480 +800 85477 0.6200 +800 91624 0.4990 +800 91860 0.9960 +800 93408 0.5490 +800 93649 0.4640 +800 94274 0.4250 +800 103910 0.7090 +800 112950 0.4730 +800 140465 0.5480 +800 163688 0.9960 +800 400566 0.4170 +808 810 0.9960 +808 811 0.7130 +808 813 0.5530 +808 814 0.9980 +808 815 0.9990 +808 816 0.9990 +808 817 0.9910 +808 818 0.9930 +808 821 0.4540 +808 823 0.4470 +808 825 0.5860 +808 826 0.5520 +808 827 0.6070 +808 836 0.5180 +808 844 0.4210 +808 845 0.7430 +808 846 0.4930 +808 857 0.9910 +808 858 0.9280 +808 859 0.9410 +808 875 0.7680 +808 894 0.6340 +808 896 0.5540 +808 920 0.4060 +808 945 0.4350 +808 960 0.6230 +808 983 0.4610 +808 999 0.5680 +808 1003 0.5490 +808 1017 0.4650 +808 1019 0.7250 +808 1020 0.7390 +808 1072 0.8590 +808 1073 0.5320 +808 1080 0.4310 +808 1113 0.5240 +808 1123 0.4820 +808 1124 0.4720 +808 1130 0.4130 +808 1147 0.6570 +808 1152 0.8450 +808 1153 0.4820 +808 1158 0.8320 +808 1258 0.9960 +808 1259 0.9270 +808 1260 0.9580 +808 1262 0.9700 +808 1264 0.9480 +808 1265 0.6060 +808 1266 0.5670 +808 1267 0.5240 +808 1268 0.5820 +808 1311 0.4420 +808 1385 0.8910 +808 1394 0.4190 +808 1432 0.4780 +808 1448 0.7300 +808 1457 0.4550 +808 1459 0.4170 +808 1460 0.4350 +808 1471 0.4520 +808 1476 0.4080 +808 1491 0.5250 +808 1499 0.5280 +808 1504 0.4790 +808 1536 0.5730 +808 1611 0.5450 +808 1612 0.9940 +808 1613 0.8570 +808 1636 0.7600 +808 1641 0.5490 +808 1739 0.4570 +808 1742 0.9890 +808 1756 0.8380 +808 1759 0.4080 +808 1778 0.4590 +808 1808 0.5760 +808 1811 0.9110 +808 1813 0.7560 +808 1827 0.7750 +808 1832 0.4240 +808 1843 0.7260 +808 1906 0.5390 +808 1915 0.6900 +808 1917 0.6770 +808 1938 0.8210 +808 1950 0.5060 +808 1956 0.8590 +808 1958 0.5740 +808 1994 0.4900 +808 2017 0.5550 +808 2028 0.5210 +808 2030 0.6860 +808 2035 0.8170 +808 2042 0.4500 +808 2064 0.5800 +808 2099 0.9950 +808 2130 0.4560 +808 2167 0.4590 +808 2185 0.6860 +808 2246 0.4880 +808 2248 0.6010 +808 2249 0.6010 +808 2250 0.6010 +808 2251 0.6010 +808 2252 0.6060 +808 2253 0.6010 +808 2254 0.6060 +808 2255 0.6040 +808 2257 0.9170 +808 2258 0.9310 +808 2260 0.4970 +808 2280 0.9940 +808 2281 0.9860 +808 2287 0.7330 +808 2288 0.6130 +808 2316 0.9420 +808 2317 0.6620 +808 2318 0.6170 +808 2335 0.6590 +808 2353 0.6720 +808 2475 0.7140 +808 2534 0.6850 +808 2538 0.4150 +808 2562 0.4110 +808 2596 0.9870 +808 2597 0.6840 +808 2641 0.6340 +808 2669 0.5240 +808 2697 0.8100 +808 2703 0.5440 +808 2705 0.9370 +808 2740 0.4400 +808 2752 0.4030 +808 2768 0.4130 +808 2775 0.4240 +808 2776 0.5930 +808 2798 0.4610 +808 2812 0.7290 +808 2868 0.4640 +808 2869 0.9520 +808 2877 0.4110 +808 2878 0.4090 +808 2880 0.4120 +808 2882 0.4260 +808 2885 0.6500 +808 2886 0.5130 +808 2890 0.5830 +808 2891 0.4340 +808 2902 0.9960 +808 2903 0.9010 +808 2904 0.9100 +808 2905 0.7580 +808 2906 0.7550 +808 2911 0.4450 +808 2913 0.4960 +808 2915 0.6880 +808 2917 0.6550 +808 2918 0.5280 +808 2932 0.8120 +808 2978 0.6510 +808 3004 0.4010 +808 3014 0.4060 +808 3018 0.4420 +808 3021 0.4510 +808 3059 0.4770 +808 3064 0.4690 +808 3091 0.4460 +808 3093 0.5300 +808 3161 0.4040 +808 3164 0.5010 +808 3187 0.4220 +808 3188 0.4110 +808 3208 0.5080 +808 3265 0.9650 +808 3303 0.5100 +808 3304 0.5510 +808 3308 0.6940 +808 3309 0.6370 +808 3312 0.7230 +808 3313 0.5830 +808 3320 0.9960 +808 3326 0.9950 +808 3356 0.4530 +808 3383 0.4050 +808 3417 0.5370 +808 3458 0.4460 +808 3479 0.4470 +808 3480 0.5920 +808 3551 0.5410 +808 3553 0.5160 +808 3558 0.4770 +808 3569 0.4820 +808 3630 0.7700 +808 3667 0.6570 +808 3700 0.5170 +808 3706 0.9440 +808 3707 0.4540 +808 3708 0.9830 +808 3709 0.9570 +808 3710 0.9850 +808 3717 0.5820 +808 3725 0.5820 +808 3737 0.6530 +808 3738 0.4310 +808 3741 0.4160 +808 3745 0.4520 +808 3746 0.5010 +808 3751 0.4520 +808 3752 0.4330 +808 3753 0.6430 +808 3756 0.9390 +808 3757 0.6890 +808 3759 0.4810 +808 3762 0.4330 +808 3778 0.5350 +808 3780 0.6060 +808 3782 0.7410 +808 3783 0.9930 +808 3784 0.9990 +808 3785 0.9930 +808 3786 0.9840 +808 3827 0.5950 +808 3831 0.5780 +808 3845 0.9980 +808 3906 0.4140 +808 3925 0.5820 +808 3936 0.5380 +808 3960 0.4180 +808 4067 0.5920 +808 4077 0.4280 +808 4082 0.9990 +808 4087 0.6040 +808 4133 0.6790 +808 4135 0.7190 +808 4137 0.8380 +808 4148 0.4050 +808 4151 0.4080 +808 4155 0.9880 +808 4188 0.4760 +808 4193 0.5560 +808 4205 0.6070 +808 4209 0.6050 +808 4214 0.4300 +808 4284 0.9450 +808 4301 0.4110 +808 4430 0.7220 +808 4478 0.5980 +808 4519 0.5560 +808 4542 0.5550 +808 4599 0.4970 +808 4606 0.6970 +808 4607 0.8950 +808 4609 0.5530 +808 4619 0.6410 +808 4620 0.4540 +808 4624 0.6960 +808 4625 0.5080 +808 4627 0.6550 +808 4628 0.6170 +808 4629 0.4730 +808 4633 0.4960 +808 4637 0.4060 +808 4638 0.9990 +808 4640 0.8270 +808 4641 0.9500 +808 4642 0.6150 +808 4643 0.6110 +808 4644 0.8170 +808 4645 0.6530 +808 4646 0.6660 +808 4647 0.7360 +808 4648 0.6040 +808 4649 0.6070 +808 4650 0.6860 +808 4651 0.9850 +808 4659 0.6080 +808 4690 0.4320 +808 4734 0.4150 +808 4744 0.5360 +808 4772 0.7860 +808 4773 0.7770 +808 4775 0.7320 +808 4776 0.7190 +808 4790 0.6520 +808 4792 0.6000 +808 4803 0.8680 +808 4842 0.9990 +808 4843 0.9990 +808 4846 0.9990 +808 4878 0.5190 +808 4893 0.9590 +808 4900 0.9920 +808 4915 0.7080 +808 4942 0.4790 +808 5020 0.4350 +808 5025 0.5600 +808 5027 0.5060 +808 5071 0.5530 +808 5074 0.4750 +808 5116 0.8880 +808 5121 0.9730 +808 5136 0.9850 +808 5137 0.9790 +808 5141 0.5660 +808 5144 0.6100 +808 5153 0.9730 +808 5173 0.5480 +808 5213 0.5680 +808 5216 0.7760 +808 5245 0.4370 +808 5255 0.9680 +808 5256 0.9720 +808 5257 0.9710 +808 5260 0.6960 +808 5261 0.9730 +808 5289 0.9780 +808 5295 0.5130 +808 5298 0.4100 +808 5320 0.6700 +808 5330 0.7160 +808 5331 0.7510 +808 5332 0.7240 +808 5333 0.5930 +808 5335 0.9420 +808 5336 0.9310 +808 5337 0.5500 +808 5339 0.6850 +808 5341 0.5200 +808 5431 0.6890 +808 5443 0.8280 +808 5464 0.4270 +808 5465 0.5950 +808 5468 0.4230 +808 5475 0.6140 +808 5478 0.4640 +808 5480 0.5230 +808 5481 0.5470 +808 5499 0.7990 +808 5500 0.8640 +808 5501 0.8170 +808 5506 0.6850 +808 5507 0.6560 +808 5509 0.6500 +808 5515 0.4320 +808 5518 0.4300 +808 5530 0.9990 +808 5532 0.9880 +808 5533 0.9570 +808 5534 0.9800 +808 5566 0.9890 +808 5567 0.9890 +808 5568 0.9920 +808 5573 0.5290 +808 5578 0.7300 +808 5579 0.5490 +808 5580 0.4680 +808 5587 0.5300 +808 5592 0.5840 +808 5594 0.5530 +808 5595 0.6730 +808 5598 0.4090 +808 5599 0.4110 +808 5600 0.4550 +808 5603 0.4350 +808 5604 0.5390 +808 5728 0.4510 +808 5743 0.4110 +808 5745 0.7320 +808 5816 0.7830 +808 5829 0.5490 +808 5834 0.8760 +808 5836 0.8640 +808 5837 0.8680 +808 5864 0.6260 +808 5865 0.4340 +808 5877 0.7060 +808 5879 0.4430 +808 5880 0.4600 +808 5894 0.6130 +808 5898 0.8270 +808 5899 0.5520 +808 5912 0.4250 +808 5921 0.6450 +808 5923 0.9560 +808 5924 0.9260 +808 5955 0.4670 +808 5957 0.5230 +808 5962 0.6520 +808 5966 0.7470 +808 5970 0.4310 +808 5972 0.5320 +808 5996 0.5870 +808 5997 0.6040 +808 5999 0.6670 +808 6001 0.6410 +808 6010 0.9020 +808 6011 0.4430 +808 6014 0.4970 +808 6045 0.4080 +808 6093 0.4120 +808 6103 0.5320 +808 6143 0.5410 +808 6195 0.4640 +808 6197 0.4070 +808 6198 0.4710 +808 6249 0.5470 +808 6261 0.9990 +808 6262 0.9990 +808 6263 0.9960 +808 6271 0.7890 +808 6277 0.5610 +808 6282 0.5300 +808 6285 0.6580 +808 6295 0.7610 +808 6300 0.6210 +808 6323 0.5620 +808 6326 0.9930 +808 6328 0.5590 +808 6329 0.9890 +808 6330 0.4100 +808 6331 0.9990 +808 6334 0.8960 +808 6335 0.7780 +808 6336 0.5050 +808 6402 0.9680 +808 6469 0.4910 +808 6477 0.5020 +808 6517 0.4390 +808 6529 0.4240 +808 6531 0.5650 +808 6546 0.4360 +808 6548 0.9910 +808 6605 0.4280 +808 6616 0.6870 +808 6622 0.9950 +808 6640 0.6810 +808 6670 0.4790 +808 6708 0.4710 +808 6709 0.9630 +808 6711 0.6060 +808 6714 0.8580 +808 6717 0.8650 +808 6774 0.6070 +808 6786 0.7940 +808 6790 0.4740 +808 6794 0.6800 +808 6801 0.9330 +808 6804 0.5260 +808 6833 0.5920 +808 6844 0.7160 +808 6850 0.4110 +808 6853 0.8350 +808 6854 0.6920 +808 6855 0.6620 +808 6857 0.6720 +808 6863 0.7910 +808 6876 0.5350 +808 6885 0.4330 +808 6925 0.4800 +808 6927 0.5350 +808 7019 0.4180 +808 7054 0.4200 +808 7064 0.8440 +808 7082 0.6730 +808 7094 0.4380 +808 7099 0.4120 +808 7114 0.5210 +808 7124 0.8200 +808 7137 0.6990 +808 7139 0.4120 +808 7157 0.5080 +808 7167 0.4130 +808 7168 0.6230 +808 7170 0.4750 +808 7184 0.8610 +808 7187 0.4370 +808 7220 0.7640 +808 7222 0.8460 +808 7223 0.6400 +808 7224 0.8470 +808 7225 0.8620 +808 7273 0.8860 +808 7277 0.4270 +808 7294 0.6600 +808 7295 0.5390 +808 7329 0.4510 +808 7345 0.5200 +808 7409 0.4610 +808 7414 0.4260 +808 7415 0.4640 +808 7416 0.4710 +808 7417 0.4160 +808 7430 0.6400 +808 7432 0.6090 +808 7442 0.9980 +808 7447 0.4050 +808 7454 0.6240 +808 7498 0.4180 +808 7529 0.4640 +808 7531 0.6580 +808 7533 0.5110 +808 7534 0.8370 +808 7802 0.4160 +808 7837 0.5860 +808 7846 0.4010 +808 8165 0.6900 +808 8224 0.6780 +808 8290 0.4500 +808 8356 0.4500 +808 8361 0.4910 +808 8398 0.6590 +808 8399 0.5020 +808 8404 0.4600 +808 8407 0.5620 +808 8411 0.5890 +808 8445 0.4170 +808 8517 0.5130 +808 8536 0.9980 +808 8557 0.4970 +808 8573 0.7370 +808 8654 0.5180 +808 8655 0.4390 +808 8678 0.4540 +808 8766 0.4460 +808 8795 0.4850 +808 8817 0.6010 +808 8822 0.9090 +808 8823 0.6060 +808 8825 0.5320 +808 8826 0.9960 +808 8911 0.9400 +808 8912 0.9570 +808 8913 0.9800 +808 8976 0.5510 +808 8989 0.7670 +808 8997 0.4790 +808 9053 0.4120 +808 9104 0.7290 +808 9132 0.9720 +808 9138 0.5340 +808 9201 0.7720 +808 9217 0.4990 +808 9265 0.4610 +808 9351 0.4350 +808 9368 0.5660 +808 9402 0.8600 +808 9454 0.5330 +808 9455 0.5170 +808 9456 0.6300 +808 9463 0.6170 +808 9472 0.4870 +808 9474 0.4030 +808 9478 0.4450 +808 9495 0.9830 +808 9529 0.5970 +808 9590 0.9360 +808 9626 0.4440 +808 9627 0.4860 +808 9657 0.9780 +808 9734 0.7340 +808 9738 0.9010 +808 9759 0.7410 +808 9814 0.4100 +808 9882 0.6860 +808 9890 0.4150 +808 9922 0.9360 +808 10008 0.9720 +808 10013 0.4750 +808 10014 0.4660 +808 10059 0.5730 +808 10097 0.4180 +808 10125 0.5070 +808 10142 0.8260 +808 10231 0.4050 +808 10287 0.6200 +808 10335 0.4990 +808 10345 0.9520 +808 10376 0.4210 +808 10399 0.6000 +808 10409 0.6040 +808 10411 0.5800 +808 10426 0.5660 +808 10438 0.5090 +808 10490 0.4490 +808 10497 0.9730 +808 10519 0.6480 +808 10536 0.4810 +808 10567 0.4310 +808 10645 0.9990 +808 10777 0.4600 +808 10788 0.9380 +808 10891 0.4340 +808 10944 0.5700 +808 10945 0.4440 +808 10971 0.5210 +808 11035 0.5490 +808 11069 0.5480 +808 11280 0.5910 +808 11345 0.4940 +808 23025 0.9910 +808 23096 0.6990 +808 23125 0.7240 +808 23139 0.4710 +808 23236 0.7620 +808 23241 0.4790 +808 23261 0.7650 +808 23327 0.5610 +808 23339 0.4130 +808 23352 0.9130 +808 23363 0.4710 +808 23411 0.4290 +808 23413 0.6040 +808 23523 0.8490 +808 23604 0.9910 +808 23621 0.6360 +808 23643 0.4180 +808 23647 0.4100 +808 23683 0.4650 +808 23710 0.4840 +808 23770 0.8180 +808 25804 0.4690 +808 25824 0.4740 +808 25827 0.5390 +808 25828 0.4660 +808 25865 0.4380 +808 25898 0.4070 +808 26059 0.8440 +808 26074 0.4500 +808 26227 0.6030 +808 26281 0.6060 +808 26468 0.4220 +808 26499 0.5200 +808 27006 0.6050 +808 27035 0.5370 +808 27043 0.4070 +808 27130 0.8270 +808 27133 0.4690 +808 27185 0.4280 +808 27286 0.6360 +808 27338 0.5200 +808 28954 0.6330 +808 29114 0.5220 +808 29888 0.8470 +808 29904 0.9870 +808 29927 0.5710 +808 50507 0.5430 +808 50508 0.4420 +808 51168 0.4270 +808 51206 0.7950 +808 51366 0.4630 +808 51393 0.5570 +808 51655 0.8230 +808 51762 0.5130 +808 51778 0.5100 +808 51806 0.9960 +808 53343 0.4330 +808 53373 0.4840 +808 53904 0.5420 +808 54205 0.6490 +808 54704 0.5160 +808 54769 0.4100 +808 54795 0.6970 +808 54822 0.4560 +808 55107 0.6700 +808 55165 0.4590 +808 55503 0.9760 +808 55636 0.6590 +808 55811 0.4630 +808 55827 0.4990 +808 55859 0.6670 +808 55930 0.6280 +808 56302 0.7720 +808 56479 0.7190 +808 56704 0.5970 +808 56964 0.4950 +808 57101 0.5350 +808 57118 0.9610 +808 57158 0.6400 +808 57172 0.9430 +808 57192 0.6630 +808 57338 0.5770 +808 57369 0.5610 +808 57524 0.4610 +808 57534 0.4030 +808 57576 0.4750 +808 57578 0.8200 +808 57620 0.7430 +808 57731 0.5520 +808 58529 0.7170 +808 59272 0.6930 +808 59341 0.7960 +808 60558 0.6530 +808 64220 0.7030 +808 64374 0.4840 +808 64781 0.4120 +808 65108 0.9410 +808 65220 0.4510 +808 65975 0.4730 +808 79012 0.4700 +808 79054 0.4290 +808 79400 0.9880 +808 79598 0.8200 +808 79660 0.6580 +808 79781 0.5160 +808 79929 0.6310 +808 79968 0.5460 +808 80036 0.5680 +808 80184 0.7020 +808 80228 0.4450 +808 80271 0.4280 +808 80726 0.6790 +808 80781 0.4430 +808 81565 0.4570 +808 81669 0.5900 +808 83442 0.4440 +808 84033 0.7590 +808 84152 0.4440 +808 84168 0.4830 +808 84223 0.9220 +808 84254 0.9980 +808 84502 0.5930 +808 84617 0.5350 +808 84665 0.4150 +808 84676 0.6280 +808 84687 0.6520 +808 84707 0.6620 +808 84766 0.5560 +808 84876 0.9790 +808 85366 0.9970 +808 89801 0.6580 +808 89910 0.4950 +808 90550 0.4900 +808 90673 0.6500 +808 91404 0.4530 +808 91624 0.4650 +808 91807 0.9840 +808 91860 0.9960 +808 91977 0.5150 +808 92291 0.5570 +808 93129 0.4750 +808 94032 0.6820 +808 94274 0.5870 +808 114794 0.5240 +808 116443 0.5150 +808 118429 0.4860 +808 120892 0.4710 +808 124152 0.4360 +808 128153 0.5730 +808 128239 0.7320 +808 133482 0.7110 +808 133686 0.5420 +808 136991 0.4420 +808 137902 0.5860 +808 139728 0.5710 +808 144245 0.4070 +808 144406 0.4360 +808 144535 0.5210 +808 152926 0.4980 +808 160622 0.5070 +808 161253 0.4120 +808 161497 0.5000 +808 162514 0.7150 +808 163688 0.9960 +808 166614 0.4470 +808 196883 0.7730 +808 200373 0.7970 +808 203068 0.4250 +808 219537 0.4700 +808 219670 0.8010 +808 257202 0.4110 +808 259232 0.9400 +808 259266 0.7560 +808 285175 0.9130 +808 340156 0.7340 +808 345456 0.6270 +808 375189 0.6760 +808 375775 0.5760 +808 389015 0.4790 +808 399687 0.4890 +808 440093 0.4500 +808 440387 0.4790 +808 440686 0.4500 +808 440854 0.5440 +808 445815 0.5700 +808 493869 0.4260 +808 642489 0.5640 +808 653145 0.5920 +808 653604 0.4500 +808 654231 0.5880 +808 728215 0.8090 +808 100271849 0.4860 +810 811 0.6740 +810 813 0.5370 +810 814 0.9980 +810 815 0.9990 +810 816 0.9880 +810 817 0.7770 +810 818 0.9860 +810 821 0.4370 +810 823 0.4130 +810 825 0.5630 +810 826 0.5200 +810 827 0.6060 +810 836 0.5180 +810 844 0.4050 +810 845 0.6600 +810 846 0.4770 +810 857 0.9960 +810 858 0.9360 +810 859 0.9430 +810 867 0.4930 +810 875 0.7550 +810 894 0.5070 +810 896 0.5260 +810 898 0.4480 +810 960 0.5460 +810 983 0.4530 +810 999 0.5690 +810 1017 0.4440 +810 1019 0.7230 +810 1020 0.5670 +810 1026 0.5510 +810 1072 0.8110 +810 1073 0.5120 +810 1080 0.4300 +810 1113 0.5020 +810 1130 0.4130 +810 1258 0.9610 +810 1259 0.9250 +810 1260 0.9580 +810 1262 0.9690 +810 1264 0.9470 +810 1265 0.5920 +810 1266 0.5640 +810 1267 0.5140 +810 1268 0.5720 +810 1385 0.8900 +810 1432 0.4700 +810 1448 0.5690 +810 1457 0.4330 +810 1460 0.4190 +810 1471 0.4330 +810 1476 0.4290 +810 1491 0.5360 +810 1499 0.6280 +810 1504 0.4780 +810 1536 0.5730 +810 1611 0.5410 +810 1612 0.9200 +810 1613 0.8960 +810 1636 0.7550 +810 1641 0.5490 +810 1739 0.4560 +810 1742 0.8910 +810 1756 0.8350 +810 1808 0.5410 +810 1827 0.7490 +810 1832 0.4280 +810 1843 0.5510 +810 1906 0.5310 +810 1915 0.6770 +810 1917 0.6590 +810 1938 0.7980 +810 1950 0.5050 +810 1956 0.8110 +810 1958 0.5790 +810 1959 0.4340 +810 2017 0.4750 +810 2028 0.7820 +810 2030 0.6440 +810 2035 0.8090 +810 2099 0.9810 +810 2100 0.5540 +810 2130 0.4350 +810 2159 0.4330 +810 2167 0.4520 +810 2185 0.6840 +810 2248 0.6060 +810 2249 0.5920 +810 2250 0.5920 +810 2251 0.5940 +810 2252 0.5990 +810 2253 0.5970 +810 2254 0.5970 +810 2255 0.5950 +810 2258 0.5950 +810 2260 0.4860 +810 2264 0.4170 +810 2280 0.9920 +810 2281 0.9620 +810 2287 0.7260 +810 2288 0.6220 +810 2316 0.7250 +810 2317 0.6000 +810 2318 0.6120 +810 2335 0.6420 +810 2353 0.6340 +810 2475 0.7070 +810 2534 0.6820 +810 2571 0.5910 +810 2572 0.5850 +810 2596 0.9870 +810 2597 0.6710 +810 2641 0.6350 +810 2669 0.5080 +810 2697 0.8620 +810 2700 0.5140 +810 2703 0.5220 +810 2705 0.9360 +810 2768 0.4080 +810 2776 0.5810 +810 2798 0.4670 +810 2812 0.7270 +810 2868 0.4520 +810 2869 0.5460 +810 2877 0.4250 +810 2878 0.4040 +810 2880 0.4090 +810 2882 0.4230 +810 2885 0.5860 +810 2886 0.5700 +810 2887 0.4650 +810 2888 0.4780 +810 2890 0.5810 +810 2902 0.9600 +810 2903 0.8950 +810 2904 0.9270 +810 2905 0.7410 +810 2906 0.7400 +810 2907 0.4600 +810 2911 0.4320 +810 2913 0.4880 +810 2915 0.4930 +810 2917 0.6620 +810 2918 0.5210 +810 2932 0.7810 +810 2978 0.6530 +810 3000 0.5530 +810 3021 0.4490 +810 3059 0.4750 +810 3064 0.6340 +810 3091 0.4450 +810 3093 0.5210 +810 3164 0.5100 +810 3208 0.6510 +810 3265 0.9630 +810 3308 0.7200 +810 3309 0.4240 +810 3312 0.6640 +810 3320 0.9960 +810 3326 0.9950 +810 3458 0.4450 +810 3479 0.4340 +810 3480 0.5630 +810 3553 0.5120 +810 3558 0.4770 +810 3569 0.4770 +810 3630 0.7640 +810 3667 0.6520 +810 3706 0.4270 +810 3707 0.4440 +810 3708 0.9840 +810 3709 0.9450 +810 3710 0.9820 +810 3717 0.7950 +810 3725 0.5810 +810 3737 0.4380 +810 3738 0.4300 +810 3745 0.4490 +810 3746 0.4730 +810 3751 0.4340 +810 3753 0.4350 +810 3756 0.7640 +810 3757 0.6120 +810 3778 0.5120 +810 3780 0.6040 +810 3782 0.7280 +810 3783 0.8580 +810 3784 0.9880 +810 3785 0.9650 +810 3786 0.8210 +810 3827 0.5960 +810 3845 0.9980 +810 3852 0.6470 +810 3861 0.4420 +810 3906 0.4230 +810 3925 0.5680 +810 3936 0.5330 +810 3960 0.4140 +810 4067 0.5860 +810 4077 0.4340 +810 4082 0.9950 +810 4087 0.5430 +810 4133 0.6800 +810 4135 0.7140 +810 4137 0.6030 +810 4148 0.4070 +810 4151 0.4050 +810 4155 0.9870 +810 4188 0.4730 +810 4193 0.5540 +810 4205 0.6040 +810 4209 0.6020 +810 4284 0.9870 +810 4430 0.6720 +810 4478 0.5980 +810 4519 0.5550 +810 4542 0.5470 +810 4599 0.4870 +810 4606 0.7010 +810 4607 0.8890 +810 4609 0.5460 +810 4619 0.6340 +810 4620 0.4410 +810 4624 0.6810 +810 4625 0.4570 +810 4627 0.5240 +810 4628 0.6670 +810 4629 0.4620 +810 4638 0.9980 +810 4640 0.8300 +810 4642 0.5370 +810 4643 0.5350 +810 4644 0.8150 +810 4645 0.5870 +810 4646 0.5800 +810 4647 0.7340 +810 4648 0.5950 +810 4649 0.6090 +810 4650 0.6230 +810 4651 0.9100 +810 4659 0.5400 +810 4690 0.4240 +810 4772 0.7860 +810 4773 0.7770 +810 4775 0.7320 +810 4776 0.7280 +810 4790 0.6450 +810 4792 0.4140 +810 4803 0.8640 +810 4842 0.9990 +810 4843 0.9930 +810 4846 0.9990 +810 4878 0.5180 +810 4893 0.9580 +810 4900 0.9920 +810 4914 0.5040 +810 4915 0.6700 +810 4942 0.4810 +810 5020 0.4340 +810 5025 0.5580 +810 5027 0.5150 +810 5071 0.6070 +810 5074 0.4770 +810 5116 0.8110 +810 5121 0.9790 +810 5136 0.9720 +810 5137 0.9730 +810 5141 0.5410 +810 5144 0.6080 +810 5153 0.9710 +810 5173 0.5470 +810 5213 0.5500 +810 5216 0.7500 +810 5245 0.4280 +810 5255 0.9190 +810 5256 0.9200 +810 5257 0.9170 +810 5260 0.4600 +810 5261 0.9680 +810 5289 0.9760 +810 5290 0.5180 +810 5317 0.4640 +810 5320 0.6720 +810 5330 0.7040 +810 5331 0.7470 +810 5332 0.7180 +810 5333 0.5870 +810 5335 0.9390 +810 5336 0.9300 +810 5337 0.5450 +810 5339 0.6730 +810 5341 0.5180 +810 5431 0.6720 +810 5443 0.8300 +810 5464 0.4260 +810 5465 0.5770 +810 5468 0.4160 +810 5475 0.5770 +810 5478 0.4570 +810 5480 0.5100 +810 5481 0.5460 +810 5499 0.7900 +810 5500 0.8250 +810 5501 0.8300 +810 5506 0.6810 +810 5507 0.6510 +810 5509 0.6500 +810 5515 0.4010 +810 5530 0.9970 +810 5532 0.9780 +810 5533 0.9470 +810 5534 0.9520 +810 5566 0.9890 +810 5567 0.9890 +810 5568 0.9920 +810 5578 0.7190 +810 5579 0.5330 +810 5580 0.4460 +810 5587 0.5230 +810 5592 0.5560 +810 5594 0.4970 +810 5595 0.6480 +810 5598 0.4100 +810 5599 0.4050 +810 5600 0.4330 +810 5603 0.4410 +810 5604 0.5120 +810 5728 0.4370 +810 5745 0.4640 +810 5816 0.7760 +810 5829 0.5470 +810 5834 0.8700 +810 5836 0.8610 +810 5837 0.8670 +810 5864 0.5920 +810 5865 0.4230 +810 5877 0.4920 +810 5880 0.4210 +810 5894 0.6110 +810 5898 0.8170 +810 5899 0.5900 +810 5912 0.4340 +810 5921 0.6430 +810 5923 0.9560 +810 5924 0.9250 +810 5955 0.4510 +810 5957 0.5220 +810 5962 0.6540 +810 5966 0.5810 +810 5972 0.5330 +810 5996 0.5770 +810 5997 0.6040 +810 5999 0.7630 +810 6001 0.6300 +810 6010 0.9030 +810 6011 0.7200 +810 6093 0.4120 +810 6103 0.5310 +810 6195 0.4530 +810 6198 0.4700 +810 6249 0.5440 +810 6261 0.9990 +810 6262 0.9990 +810 6263 0.9660 +810 6271 0.7120 +810 6277 0.5480 +810 6282 0.5290 +810 6285 0.6520 +810 6295 0.7620 +810 6300 0.6210 +810 6323 0.5480 +810 6326 0.8280 +810 6328 0.5530 +810 6329 0.8570 +810 6331 0.9740 +810 6334 0.8180 +810 6335 0.6710 +810 6336 0.4670 +810 6402 0.5650 +810 6469 0.4850 +810 6477 0.5020 +810 6517 0.4380 +810 6531 0.5630 +810 6546 0.4110 +810 6548 0.9360 +810 6605 0.4180 +810 6616 0.4830 +810 6622 0.9370 +810 6640 0.6810 +810 6670 0.4770 +810 6708 0.4660 +810 6709 0.4600 +810 6711 0.5190 +810 6714 0.9270 +810 6717 0.8450 +810 6786 0.6910 +810 6790 0.4660 +810 6794 0.6660 +810 6801 0.9590 +810 6804 0.4930 +810 6833 0.5790 +810 6844 0.6460 +810 6850 0.4080 +810 6853 0.7750 +810 6854 0.6780 +810 6855 0.6070 +810 6857 0.6500 +810 6863 0.7910 +810 6876 0.5260 +810 6925 0.4680 +810 6927 0.4920 +810 7054 0.4250 +810 7064 0.6680 +810 7082 0.6090 +810 7099 0.4050 +810 7114 0.5040 +810 7124 0.7400 +810 7137 0.5080 +810 7157 0.6570 +810 7168 0.5910 +810 7170 0.4390 +810 7184 0.8850 +810 7187 0.4410 +810 7220 0.7630 +810 7222 0.8850 +810 7223 0.6390 +810 7224 0.8470 +810 7225 0.8620 +810 7247 0.4150 +810 7273 0.8080 +810 7294 0.4110 +810 7295 0.5190 +810 7345 0.4860 +810 7409 0.4480 +810 7414 0.4060 +810 7416 0.4500 +810 7430 0.6360 +810 7432 0.6120 +810 7442 0.9920 +810 7447 0.4290 +810 7454 0.6060 +810 7498 0.4210 +810 7531 0.6120 +810 7534 0.8110 +810 7837 0.5600 +810 8165 0.6750 +810 8224 0.6780 +810 8290 0.4480 +810 8356 0.4480 +810 8398 0.7870 +810 8399 0.5020 +810 8404 0.4380 +810 8407 0.5460 +810 8411 0.5870 +810 8445 0.4190 +810 8536 0.9580 +810 8557 0.4700 +810 8573 0.7380 +810 8654 0.5180 +810 8655 0.4280 +810 8678 0.4470 +810 8721 0.5580 +810 8766 0.4320 +810 8795 0.4830 +810 8817 0.5950 +810 8822 0.8400 +810 8823 0.5980 +810 8825 0.4440 +810 8826 0.9950 +810 8877 0.4710 +810 8911 0.9380 +810 8912 0.9430 +810 8913 0.9800 +810 8976 0.5510 +810 8989 0.7670 +810 8997 0.4740 +810 9104 0.7290 +810 9132 0.5580 +810 9138 0.5280 +810 9166 0.5000 +810 9201 0.7750 +810 9217 0.4730 +810 9265 0.4540 +810 9368 0.5400 +810 9402 0.8950 +810 9454 0.5320 +810 9455 0.5180 +810 9456 0.6250 +810 9463 0.6160 +810 9472 0.4800 +810 9474 0.4030 +810 9478 0.4400 +810 9495 0.8220 +810 9529 0.5810 +810 9590 0.9370 +810 9626 0.4320 +810 9627 0.4820 +810 9635 0.4850 +810 9657 0.9490 +810 9734 0.7400 +810 9738 0.7010 +810 9759 0.7410 +810 9882 0.6590 +810 9890 0.4060 +810 10013 0.4730 +810 10014 0.4410 +810 10059 0.4170 +810 10096 0.5060 +810 10097 0.5210 +810 10125 0.4980 +810 10142 0.8020 +810 10287 0.6030 +810 10335 0.4990 +810 10345 0.9180 +810 10399 0.5910 +810 10409 0.7360 +810 10411 0.5720 +810 10426 0.5670 +810 10438 0.5110 +810 10490 0.4500 +810 10497 0.9690 +810 10519 0.6560 +810 10536 0.4800 +810 10567 0.4100 +810 10645 0.9980 +810 10777 0.4430 +810 10788 0.9240 +810 10891 0.4320 +810 10944 0.5230 +810 10945 0.4110 +810 11035 0.4840 +810 11069 0.5460 +810 11231 0.5020 +810 11261 0.5530 +810 11345 0.4830 +810 23025 0.9110 +810 23096 0.4800 +810 23125 0.6280 +810 23236 0.7510 +810 23241 0.4570 +810 23261 0.5970 +810 23327 0.5610 +810 23352 0.8980 +810 23363 0.5310 +810 23411 0.4280 +810 23413 0.5820 +810 23523 0.8420 +810 23604 0.9050 +810 23647 0.4550 +810 23683 0.4880 +810 23704 0.4750 +810 23710 0.4830 +810 23770 0.7440 +810 25804 0.4420 +810 25824 0.4490 +810 25827 0.5410 +810 25865 0.4490 +810 26059 0.8890 +810 26074 0.4220 +810 26227 0.5980 +810 26281 0.6000 +810 26499 0.5190 +810 27006 0.6020 +810 27035 0.5360 +810 27130 0.7860 +810 27133 0.4530 +810 27338 0.5120 +810 28954 0.6340 +810 29114 0.5120 +810 29888 0.8400 +810 29904 0.9060 +810 29927 0.5670 +810 50507 0.5450 +810 50508 0.4480 +810 51168 0.4310 +810 51206 0.7030 +810 51366 0.4650 +810 51393 0.5450 +810 51655 0.8230 +810 51762 0.5180 +810 51778 0.4850 +810 51806 0.9670 +810 53343 0.4410 +810 53373 0.4510 +810 53904 0.5380 +810 53905 0.4180 +810 54205 0.6490 +810 54443 0.4410 +810 54704 0.5140 +810 54795 0.6830 +810 54822 0.4560 +810 55107 0.6830 +810 55503 0.6560 +810 55636 0.6580 +810 55811 0.4490 +810 55827 0.4930 +810 55859 0.7480 +810 55930 0.5550 +810 56302 0.7620 +810 56479 0.7010 +810 56704 0.5750 +810 56964 0.5000 +810 57101 0.5480 +810 57118 0.9460 +810 57158 0.6090 +810 57172 0.8370 +810 57192 0.6540 +810 57338 0.5320 +810 57524 0.4480 +810 57534 0.4080 +810 57576 0.4590 +810 57620 0.7310 +810 57731 0.5240 +810 57761 0.4080 +810 58529 0.7230 +810 59272 0.5670 +810 59341 0.8990 +810 60558 0.6020 +810 64220 0.8000 +810 64359 0.4470 +810 64374 0.4750 +810 64781 0.6250 +810 65108 0.9620 +810 65220 0.4180 +810 65975 0.4830 +810 79012 0.4310 +810 79054 0.4280 +810 79400 0.8130 +810 79598 0.4590 +810 79660 0.6500 +810 79763 0.4710 +810 79781 0.4990 +810 79929 0.6160 +810 80228 0.4470 +810 80271 0.4150 +810 80333 0.5810 +810 80726 0.5990 +810 81565 0.4470 +810 81669 0.5910 +810 83442 0.4350 +810 84033 0.6790 +810 84152 0.4180 +810 84168 0.4860 +810 84254 0.9870 +810 84502 0.5540 +810 84676 0.6210 +810 84687 0.5660 +810 84707 0.7360 +810 84876 0.8810 +810 85366 0.9970 +810 89801 0.6500 +810 90550 0.4870 +810 90673 0.6500 +810 91404 0.4540 +810 91624 0.4310 +810 91807 0.9880 +810 91860 0.9630 +810 91977 0.5370 +810 92291 0.5610 +810 93129 0.4620 +810 93974 0.4870 +810 94032 0.6480 +810 94274 0.5470 +810 118429 0.5110 +810 124152 0.4400 +810 128153 0.5730 +810 128239 0.7060 +810 131890 0.6890 +810 133482 0.5180 +810 134359 0.5010 +810 136991 0.4200 +810 137902 0.5600 +810 139728 0.5650 +810 144406 0.4140 +810 144535 0.5230 +810 160622 0.5050 +810 161497 0.5000 +810 162514 0.7100 +810 163688 0.9620 +810 166614 0.4570 +810 196883 0.7720 +810 200373 0.7980 +810 219537 0.4490 +810 219670 0.7980 +810 257202 0.4080 +810 259232 0.4180 +810 259266 0.5930 +810 340156 0.7250 +810 345456 0.6270 +810 375189 0.6740 +810 440093 0.4480 +810 440387 0.4830 +810 440686 0.4480 +810 440854 0.5480 +810 493869 0.4240 +810 642489 0.5580 +810 653145 0.6450 +810 653604 0.4480 +810 654231 0.5980 +810 728378 0.4730 +810 100271849 0.4810 +811 813 0.9090 +811 821 0.9990 +811 834 0.5850 +811 836 0.5370 +811 841 0.4400 +811 842 0.4290 +811 845 0.6310 +811 858 0.4070 +811 859 0.4180 +811 861 0.4720 +811 871 0.6860 +811 873 0.4100 +811 912 0.4680 +811 920 0.6090 +811 925 0.8010 +811 941 0.5120 +811 942 0.5220 +811 947 0.4160 +811 948 0.6140 +811 949 0.6330 +811 950 0.6410 +811 958 0.4450 +811 961 0.7740 +811 966 0.5630 +811 967 0.4980 +811 969 0.5530 +811 1012 0.5250 +811 1047 0.6590 +811 1050 0.6420 +811 1051 0.5230 +811 1072 0.4040 +811 1385 0.7860 +811 1388 0.6720 +811 1431 0.4020 +811 1435 0.5710 +811 1437 0.4740 +811 1441 0.5790 +811 1485 0.6700 +811 1493 0.5080 +811 1508 0.4860 +811 1509 0.4920 +811 1520 0.4680 +811 1524 0.4870 +811 1649 0.6860 +811 1650 0.5350 +811 1755 0.4070 +811 1788 0.5460 +811 1915 0.4460 +811 1917 0.4030 +811 1938 0.6670 +811 1956 0.4690 +811 1965 0.5890 +811 1991 0.4690 +811 2023 0.5390 +811 2081 0.6450 +811 2086 0.5620 +811 2099 0.4750 +811 2120 0.4370 +811 2122 0.5400 +811 2146 0.5490 +811 2147 0.6960 +811 2157 0.5250 +811 2219 0.5160 +811 2220 0.9120 +811 2244 0.4270 +811 2281 0.5330 +811 2322 0.5030 +811 2335 0.4270 +811 2597 0.7570 +811 2621 0.6140 +811 2624 0.4030 +811 2801 0.5000 +811 2804 0.4630 +811 2806 0.5910 +811 2810 0.4210 +811 2908 0.4340 +811 2923 0.9990 +811 3002 0.4190 +811 3014 0.5910 +811 3105 0.9970 +811 3106 0.9690 +811 3107 0.9300 +811 3123 0.5280 +811 3133 0.9440 +811 3134 0.9490 +811 3135 0.9230 +811 3146 0.8650 +811 3181 0.5560 +811 3265 0.4140 +811 3303 0.5970 +811 3304 0.6230 +811 3308 0.9550 +811 3309 0.9950 +811 3312 0.7180 +811 3313 0.7700 +811 3315 0.6070 +811 3320 0.9680 +811 3326 0.9750 +811 3329 0.4590 +811 3336 0.4360 +811 3337 0.4900 +811 3383 0.5880 +811 3385 0.5270 +811 3417 0.5940 +811 3418 0.5810 +811 3439 0.4760 +811 3458 0.5970 +811 3482 0.4480 +811 3553 0.4790 +811 3558 0.4400 +811 3569 0.5310 +811 3577 0.5120 +811 3586 0.4800 +811 3623 0.5050 +811 3627 0.4210 +811 3630 0.4020 +811 3684 0.4020 +811 3687 0.4230 +811 3688 0.5240 +811 3690 0.4300 +811 3703 0.6250 +811 3708 0.8340 +811 3709 0.4050 +811 3710 0.8790 +811 3716 0.4830 +811 3717 0.7970 +811 3725 0.4310 +811 3757 0.4080 +811 3815 0.4320 +811 3845 0.5020 +811 3903 0.4510 +811 3916 0.5780 +811 3920 0.4420 +811 3959 0.4930 +811 3998 0.7920 +811 4000 0.5260 +811 4001 0.4200 +811 4012 0.4100 +811 4035 0.9980 +811 4054 0.4050 +811 4077 0.4960 +811 4103 0.4100 +811 4123 0.4760 +811 4124 0.5970 +811 4153 0.9860 +811 4189 0.5240 +811 4237 0.4080 +811 4282 0.4270 +811 4318 0.7530 +811 4319 0.4950 +811 4352 0.8890 +811 4353 0.4710 +811 4430 0.4380 +811 4478 0.4330 +811 4481 0.6550 +811 4609 0.4840 +811 4690 0.4430 +811 4691 0.9660 +811 4784 0.4650 +811 4869 0.5200 +811 4893 0.4810 +811 5027 0.6460 +811 5034 0.9940 +811 5037 0.4550 +811 5052 0.4490 +811 5216 0.4790 +811 5223 0.4170 +811 5230 0.4830 +811 5245 0.6140 +811 5327 0.4680 +811 5351 0.5160 +811 5359 0.4430 +811 5479 0.9870 +811 5499 0.5750 +811 5551 0.5410 +811 5589 0.9150 +811 5610 0.4890 +811 5611 0.6670 +811 5621 0.5350 +811 5641 0.4680 +811 5657 0.5610 +811 5696 0.4820 +811 5698 0.4480 +811 5699 0.4530 +811 5781 0.4540 +811 5816 0.5030 +811 5868 0.4350 +811 5954 0.6510 +811 5962 0.5490 +811 6184 0.7270 +811 6185 0.6810 +811 6345 0.4780 +811 6347 0.4080 +811 6388 0.4680 +811 6400 0.5350 +811 6427 0.6650 +811 6432 0.4140 +811 6441 0.8640 +811 6513 0.6240 +811 6598 0.4310 +811 6647 0.4690 +811 6657 0.4080 +811 6737 0.8640 +811 6738 0.8160 +811 6741 0.5150 +811 6745 0.4140 +811 6747 0.4300 +811 6748 0.4310 +811 6772 0.4150 +811 6774 0.4830 +811 6776 0.6100 +811 6777 0.6200 +811 6781 0.4570 +811 6786 0.5290 +811 6810 0.8220 +811 6890 0.9620 +811 6891 0.9240 +811 6892 0.9990 +811 7001 0.4820 +811 7009 0.4170 +811 7018 0.4240 +811 7036 0.4550 +811 7037 0.6160 +811 7052 0.5360 +811 7057 0.9880 +811 7064 0.4430 +811 7066 0.4710 +811 7080 0.4110 +811 7086 0.4670 +811 7097 0.6140 +811 7098 0.4430 +811 7099 0.9530 +811 7124 0.5070 +811 7132 0.5470 +811 7157 0.5560 +811 7167 0.5570 +811 7169 0.5220 +811 7171 0.5550 +811 7184 0.9990 +811 7247 0.5770 +811 7251 0.4150 +811 7295 0.6930 +811 7299 0.5450 +811 7307 0.6350 +811 7415 0.7120 +811 7416 0.7030 +811 7430 0.5710 +811 7448 0.4410 +811 7450 0.7100 +811 7490 0.4070 +811 7494 0.8440 +811 7514 0.6550 +811 7531 0.5470 +811 7532 0.5400 +811 7534 0.5980 +811 7837 0.5160 +811 7841 0.8130 +811 8233 0.5800 +811 8411 0.4840 +811 8468 0.5340 +811 8547 0.6740 +811 8578 0.7520 +811 8625 0.4170 +811 8717 0.4780 +811 8720 0.5410 +811 8974 0.5000 +811 9124 0.4230 +811 9217 0.4180 +811 9343 0.6300 +811 9370 0.8380 +811 9451 0.7140 +811 9474 0.4180 +811 9554 0.8770 +811 9588 0.4290 +811 9601 0.9730 +811 9695 0.9030 +811 9761 0.5960 +811 10019 0.5820 +811 10130 0.9370 +811 10131 0.4320 +811 10134 0.7420 +811 10211 0.5610 +811 10236 0.4240 +811 10345 0.6090 +811 10347 0.4540 +811 10461 0.6160 +811 10525 0.9470 +811 10541 0.4130 +811 10549 0.5020 +811 10595 0.4300 +811 10618 0.4750 +811 10728 0.5160 +811 10735 0.4320 +811 10890 0.5000 +811 10935 0.4650 +811 10945 0.6140 +811 10952 0.5570 +811 10954 0.5080 +811 10956 0.7370 +811 10960 0.5130 +811 10961 0.8140 +811 11231 0.5670 +811 11253 0.7210 +811 11315 0.4070 +811 11337 0.9480 +811 11345 0.4390 +811 22872 0.5410 +811 22918 0.8060 +811 22924 0.4780 +811 22926 0.9330 +811 22937 0.4570 +811 23065 0.4250 +811 23071 0.7440 +811 23166 0.5260 +811 23193 0.9430 +811 23373 0.4760 +811 23457 0.6070 +811 23621 0.6800 +811 23645 0.6900 +811 23710 0.4500 +811 23753 0.7170 +811 25828 0.5990 +811 26040 0.5830 +811 26548 0.5350 +811 26580 0.4200 +811 27248 0.7330 +811 29126 0.5800 +811 29927 0.8160 +811 30001 0.5160 +811 30816 0.5790 +811 30848 0.4400 +811 50507 0.4420 +811 50863 0.4760 +811 51009 0.4210 +811 51094 0.5880 +811 51237 0.4920 +811 51360 0.5680 +811 51726 0.7090 +811 51752 0.5140 +811 51806 0.6740 +811 54106 0.4250 +811 54205 0.4950 +811 54431 0.8920 +811 54790 0.6210 +811 55080 0.4470 +811 55500 0.4200 +811 55741 0.7700 +811 55757 0.8030 +811 56005 0.4140 +811 56886 0.8510 +811 58513 0.4360 +811 63035 0.4040 +811 64083 0.4150 +811 64167 0.6350 +811 64241 0.4590 +811 64581 0.5290 +811 64714 0.6410 +811 64784 0.5130 +811 79026 0.4840 +811 79139 0.4650 +811 79174 0.5190 +811 79602 0.5910 +811 80267 0.8460 +811 81502 0.4190 +811 81542 0.4220 +811 81567 0.6030 +811 81631 0.6200 +811 83786 0.4590 +811 84295 0.4790 +811 90411 0.5790 +811 91319 0.4140 +811 91860 0.7110 +811 113177 0.4020 +811 115004 0.4310 +811 118427 0.4700 +811 121506 0.7450 +811 137902 0.5120 +811 139341 0.4410 +811 140885 0.8230 +811 163688 0.6610 +811 168400 0.8210 +811 170825 0.4140 +811 171023 0.7290 +811 200186 0.5060 +811 201595 0.5680 +811 204474 0.4070 +811 220988 0.4750 +811 221981 0.4300 +811 283208 0.4320 +811 339416 0.6520 +811 342538 0.4870 +811 405754 0.5610 +811 503542 0.4890 +811 653145 0.4400 +811 653509 0.6310 +813 821 0.4280 +813 1080 0.5370 +813 1559 0.5410 +813 1650 0.5080 +813 2052 0.5780 +813 2677 0.7170 +813 2923 0.7540 +813 3308 0.5260 +813 3309 0.8640 +813 3703 0.4450 +813 3915 0.4220 +813 4869 0.4400 +813 4924 0.5740 +813 4925 0.5940 +813 5033 0.4080 +813 5034 0.8720 +813 5320 0.4380 +813 5351 0.4270 +813 5352 0.4730 +813 5479 0.4240 +813 5589 0.4960 +813 5611 0.5560 +813 6745 0.4100 +813 6747 0.5070 +813 6786 0.4950 +813 6790 0.8370 +813 6836 0.4020 +813 7095 0.5000 +813 7163 0.4530 +813 7184 0.7730 +813 7203 0.4090 +813 7415 0.5410 +813 8529 0.6460 +813 9601 0.6600 +813 10130 0.5350 +813 10525 0.5640 +813 10728 0.4550 +813 10959 0.6270 +813 10972 0.4100 +813 11231 0.7290 +813 23065 0.5340 +813 23193 0.4910 +813 23225 0.4580 +813 23774 0.4240 +813 51592 0.4300 +813 51726 0.6050 +813 51806 0.5300 +813 54431 0.6700 +813 54757 0.4350 +813 56893 0.4360 +813 56975 0.7790 +813 60681 0.5310 +813 64175 0.5080 +813 64359 0.4410 +813 64374 0.4310 +813 79001 0.8170 +813 79589 0.4170 +813 79709 0.4290 +813 81567 0.4250 +813 91860 0.5160 +813 121457 0.4510 +813 125972 0.5680 +813 130340 0.4670 +813 163688 0.5160 +813 166655 0.4390 +813 342538 0.4780 +814 815 0.9240 +814 816 0.9180 +814 817 0.5680 +814 818 0.5430 +814 1385 0.9860 +814 1386 0.9300 +814 1387 0.9370 +814 1388 0.9170 +814 1390 0.4610 +814 1585 0.6160 +814 1641 0.9290 +814 1740 0.5300 +814 1742 0.4590 +814 2033 0.9220 +814 2353 0.4910 +814 2491 0.4520 +814 2597 0.4120 +814 2874 0.4600 +814 2890 0.4700 +814 2893 0.5020 +814 2895 0.4980 +814 2903 0.4520 +814 2904 0.4780 +814 3241 0.4280 +814 3708 0.5180 +814 3709 0.4410 +814 3710 0.4680 +814 3725 0.4140 +814 3739 0.4430 +814 3778 0.5230 +814 3838 0.9030 +814 4204 0.5670 +814 4205 0.4160 +814 4209 0.5370 +814 4354 0.6630 +814 4355 0.6360 +814 4741 0.4660 +814 4747 0.4060 +814 4772 0.4080 +814 4846 0.9280 +814 4857 0.4490 +814 5021 0.4670 +814 5136 0.4130 +814 5139 0.6580 +814 5140 0.6660 +814 5141 0.6970 +814 5142 0.6900 +814 5143 0.6510 +814 5144 0.6800 +814 5293 0.4710 +814 5335 0.4530 +814 5336 0.9150 +814 5530 0.4160 +814 5566 0.5450 +814 5581 0.4040 +814 5620 0.5410 +814 5650 0.4620 +814 5653 0.4250 +814 5663 0.4120 +814 5816 0.4200 +814 6335 0.4080 +814 6622 0.4370 +814 6660 0.4220 +814 6699 0.4910 +814 6793 0.4800 +814 6853 0.6270 +814 6854 0.5560 +814 6907 0.5170 +814 7142 0.5380 +814 7225 0.4050 +814 8224 0.5280 +814 8767 0.4540 +814 8825 0.4700 +814 8841 0.4210 +814 8874 0.6430 +814 8997 0.5240 +814 9586 0.9130 +814 9611 0.5120 +814 9612 0.4810 +814 9701 0.5290 +814 9759 0.9600 +814 9815 0.6780 +814 10014 0.9410 +814 10488 0.9030 +814 10645 0.9450 +814 10846 0.7030 +814 10891 0.5130 +814 10892 0.4400 +814 22843 0.8140 +814 23243 0.4840 +814 28964 0.6830 +814 51237 0.4100 +814 51678 0.4510 +814 51806 0.9980 +814 55553 0.4190 +814 64105 0.5060 +814 64764 0.9030 +814 79718 0.4590 +814 84254 0.9470 +814 84699 0.9000 +814 90993 0.9030 +814 91687 0.5370 +814 91860 0.9980 +814 148327 0.9030 +814 148979 0.5590 +814 163688 0.9980 +814 196883 0.6840 +814 283373 0.4770 +815 816 0.9990 +815 817 0.9960 +815 818 0.9450 +815 885 0.4030 +815 991 0.4140 +815 995 0.9000 +815 1114 0.4600 +815 1385 0.8870 +815 1386 0.6670 +815 1387 0.9190 +815 1388 0.6740 +815 1392 0.5390 +815 1394 0.6300 +815 1399 0.4880 +815 1536 0.9030 +815 1641 0.7270 +815 1739 0.7210 +815 1740 0.6880 +815 1741 0.6880 +815 1742 0.9200 +815 1759 0.6070 +815 1812 0.5070 +815 1813 0.4470 +815 1814 0.4480 +815 1848 0.4070 +815 1958 0.7270 +815 1994 0.4990 +815 1996 0.6250 +815 2016 0.6120 +815 2033 0.9080 +815 2036 0.5710 +815 2051 0.4040 +815 2066 0.4890 +815 2316 0.9060 +815 2317 0.9030 +815 2318 0.9040 +815 2332 0.8390 +815 2353 0.5450 +815 2566 0.5750 +815 2571 0.6370 +815 2572 0.5780 +815 2596 0.4300 +815 2597 0.4690 +815 2664 0.4250 +815 2665 0.4160 +815 2670 0.6230 +815 2775 0.4890 +815 2890 0.9990 +815 2891 0.9770 +815 2892 0.8080 +815 2893 0.8140 +815 2894 0.7640 +815 2898 0.7150 +815 2901 0.5850 +815 2902 0.9110 +815 2903 0.9680 +815 2904 0.9990 +815 2905 0.7350 +815 2906 0.6070 +815 2911 0.9680 +815 2913 0.5520 +815 2915 0.9750 +815 3084 0.4850 +815 3182 0.4180 +815 3192 0.4240 +815 3208 0.4310 +815 3265 0.5300 +815 3297 0.4240 +815 3320 0.5220 +815 3326 0.5090 +815 3458 0.4410 +815 3460 0.4300 +815 3706 0.5450 +815 3708 0.6130 +815 3709 0.5420 +815 3710 0.5950 +815 3716 0.4080 +815 3717 0.4240 +815 3736 0.5050 +815 3746 0.5450 +815 3756 0.5480 +815 3845 0.5320 +815 4000 0.4130 +815 4087 0.4400 +815 4131 0.4220 +815 4133 0.4910 +815 4137 0.9760 +815 4155 0.4010 +815 4193 0.4490 +815 4204 0.6700 +815 4354 0.8800 +815 4355 0.7910 +815 4356 0.5360 +815 4634 0.5600 +815 4646 0.4110 +815 4741 0.4260 +815 4747 0.6270 +815 4790 0.4970 +815 4792 0.4760 +815 4842 0.9290 +815 4846 0.9300 +815 4893 0.5140 +815 4900 0.6370 +815 4905 0.4930 +815 5071 0.4010 +815 5139 0.6810 +815 5140 0.6630 +815 5141 0.8320 +815 5142 0.7230 +815 5143 0.6880 +815 5144 0.7180 +815 5173 0.5610 +815 5179 0.5350 +815 5289 0.9030 +815 5330 0.9190 +815 5331 0.9220 +815 5332 0.9290 +815 5335 0.9390 +815 5336 0.9050 +815 5499 0.9250 +815 5500 0.9230 +815 5501 0.9250 +815 5530 0.6250 +815 5578 0.4560 +815 5580 0.4550 +815 5604 0.4940 +815 5605 0.4540 +815 5789 0.4550 +815 5816 0.7440 +815 5894 0.4200 +815 5906 0.9050 +815 5908 0.9060 +815 5923 0.6120 +815 5924 0.6730 +815 6009 0.4400 +815 6262 0.9320 +815 6324 0.9180 +815 6327 0.4160 +815 6330 0.9160 +815 6331 0.9190 +815 6332 0.9100 +815 6506 0.4160 +815 6529 0.6190 +815 6531 0.9490 +815 6543 0.5740 +815 6616 0.5890 +815 6714 0.4830 +815 6744 0.4330 +815 6750 0.4590 +815 6772 0.9130 +815 6853 0.7330 +815 6854 0.6470 +815 6855 0.5790 +815 6857 0.6610 +815 6885 0.7340 +815 6934 0.4960 +815 7074 0.9200 +815 7442 0.9220 +815 7529 0.6300 +815 8087 0.7960 +815 8224 0.5600 +815 8473 0.5430 +815 8825 0.4950 +815 8831 0.7290 +815 8844 0.4090 +815 8851 0.4110 +815 8927 0.4270 +815 8997 0.4950 +815 9061 0.4200 +815 9118 0.6530 +815 9228 0.4360 +815 9229 0.7030 +815 9254 0.7320 +815 9369 0.4040 +815 9378 0.5420 +815 9379 0.5070 +815 9444 0.4310 +815 9456 0.7350 +815 9463 0.7250 +815 9478 0.4400 +815 9495 0.7050 +815 9513 0.6930 +815 9586 0.7060 +815 9647 0.6210 +815 9715 0.4700 +815 9743 0.4440 +815 9899 0.5670 +815 10013 0.4180 +815 10014 0.4200 +815 10018 0.4110 +815 10142 0.4330 +815 10189 0.4420 +815 10211 0.4300 +815 10243 0.4180 +815 10368 0.8050 +815 10369 0.8080 +815 10458 0.4960 +815 10488 0.6730 +815 10533 0.4530 +815 10627 0.4720 +815 10716 0.5640 +815 10763 0.4520 +815 10777 0.5550 +815 10846 0.7260 +815 10971 0.4080 +815 11035 0.9020 +815 22849 0.5820 +815 22871 0.4140 +815 22873 0.4620 +815 22941 0.4420 +815 22999 0.5620 +815 23109 0.4770 +815 23164 0.4360 +815 23236 0.9370 +815 23237 0.7020 +815 23314 0.4480 +815 23416 0.4630 +815 23426 0.4430 +815 23543 0.4010 +815 27091 0.6730 +815 27092 0.7030 +815 27133 0.5120 +815 28964 0.4160 +815 30818 0.4110 +815 30820 0.4070 +815 50944 0.5330 +815 51440 0.4650 +815 51678 0.7480 +815 51701 0.5060 +815 51806 0.9990 +815 54715 0.4660 +815 55109 0.4030 +815 55188 0.6270 +815 55450 0.6400 +815 55636 0.4190 +815 55799 0.7560 +815 56899 0.5300 +815 57030 0.6360 +815 57084 0.5620 +815 57172 0.5710 +815 57524 0.5510 +815 57554 0.9950 +815 57555 0.4110 +815 57576 0.5030 +815 58512 0.4510 +815 59283 0.7820 +815 59284 0.6990 +815 59285 0.6840 +815 64506 0.6340 +815 64764 0.6890 +815 80315 0.5600 +815 80853 0.4320 +815 84152 0.4390 +815 84687 0.5220 +815 84699 0.6550 +815 84894 0.4900 +815 85358 0.5090 +815 85461 0.5470 +815 90993 0.6750 +815 91860 0.9990 +815 93589 0.6950 +815 94032 0.7990 +815 112755 0.4460 +815 113026 0.4430 +815 124989 0.4950 +815 132204 0.4220 +815 132864 0.5530 +815 139728 0.5160 +815 140679 0.6220 +815 143098 0.5380 +815 146713 0.6350 +815 146779 0.4780 +815 148327 0.6720 +815 163688 0.9990 +815 196883 0.6760 +815 266743 0.4740 +815 286151 0.9020 +816 817 0.9940 +816 818 0.9400 +816 995 0.9000 +816 1385 0.7690 +816 1386 0.6770 +816 1387 0.9100 +816 1388 0.6870 +816 1399 0.5120 +816 1536 0.9080 +816 1739 0.5560 +816 1740 0.6500 +816 1741 0.5690 +816 1742 0.8310 +816 2033 0.9030 +816 2036 0.5210 +816 2066 0.4700 +816 2316 0.9010 +816 2317 0.9000 +816 2318 0.9050 +816 2890 0.9550 +816 2891 0.9530 +816 2892 0.7970 +816 2893 0.5890 +816 2902 0.6870 +816 2903 0.7690 +816 2904 0.8830 +816 2905 0.6640 +816 2906 0.5490 +816 2908 0.4580 +816 2911 0.9330 +816 2915 0.9330 +816 2923 0.4180 +816 3064 0.4620 +816 3084 0.4180 +816 3265 0.5410 +816 3297 0.4150 +816 3458 0.4160 +816 3460 0.4300 +816 3709 0.5220 +816 3710 0.5830 +816 3716 0.4020 +816 3717 0.4080 +816 3756 0.5180 +816 3845 0.5230 +816 4000 0.4130 +816 4137 0.9370 +816 4193 0.4340 +816 4204 0.5630 +816 4354 0.4670 +816 4355 0.6070 +816 4646 0.4110 +816 4747 0.5780 +816 4842 0.9150 +816 4846 0.9020 +816 4893 0.5290 +816 4978 0.4700 +816 5108 0.4820 +816 5139 0.6800 +816 5140 0.6630 +816 5141 0.8130 +816 5142 0.7290 +816 5143 0.6880 +816 5144 0.6880 +816 5289 0.9030 +816 5330 0.9150 +816 5331 0.9170 +816 5332 0.9240 +816 5335 0.9120 +816 5336 0.9040 +816 5499 0.9200 +816 5500 0.9200 +816 5501 0.9160 +816 5580 0.6370 +816 5604 0.4520 +816 5605 0.4450 +816 5816 0.4320 +816 5894 0.4090 +816 5906 0.9000 +816 5908 0.9000 +816 5923 0.5500 +816 5924 0.4930 +816 6262 0.9250 +816 6295 0.4460 +816 6324 0.9140 +816 6330 0.9120 +816 6331 0.9200 +816 6332 0.9090 +816 6531 0.9070 +816 6616 0.4290 +816 6714 0.4470 +816 6744 0.4220 +816 6772 0.9180 +816 6853 0.4510 +816 6857 0.5390 +816 6907 0.4170 +816 7407 0.4280 +816 7442 0.9020 +816 7529 0.5760 +816 8087 0.4620 +816 8398 0.4290 +816 8473 0.4930 +816 8822 0.4340 +816 8831 0.6680 +816 8844 0.4090 +816 8927 0.4070 +816 9061 0.4200 +816 9229 0.4140 +816 9254 0.7260 +816 9378 0.4250 +816 9495 0.4550 +816 9586 0.7050 +816 9639 0.4100 +816 9647 0.4650 +816 9715 0.4500 +816 10142 0.4130 +816 10368 0.7660 +816 10369 0.8080 +816 10488 0.6790 +816 10533 0.4180 +816 10590 0.4110 +816 10846 0.7140 +816 11035 0.9020 +816 22871 0.4350 +816 23025 0.4060 +816 23129 0.4030 +816 23236 0.9240 +816 23237 0.7900 +816 25942 0.4030 +816 27091 0.6700 +816 27092 0.7030 +816 27133 0.5040 +816 27185 0.4570 +816 50944 0.4340 +816 51806 0.9880 +816 55109 0.4030 +816 55799 0.7420 +816 56899 0.5500 +816 57172 0.4960 +816 57554 0.7920 +816 57670 0.4010 +816 59283 0.7480 +816 59284 0.6880 +816 59285 0.6810 +816 64764 0.6670 +816 80853 0.4320 +816 84258 0.4470 +816 84687 0.4520 +816 84699 0.6550 +816 90993 0.6740 +816 91860 0.9830 +816 91875 0.6010 +816 93589 0.6950 +816 94032 0.8400 +816 124989 0.4950 +816 146779 0.4780 +816 148327 0.6730 +816 163688 0.9830 +816 196883 0.7040 +816 283933 0.5800 +816 286151 0.9010 +816 388336 0.4100 +817 818 0.9640 +817 1185 0.4010 +817 1399 0.4950 +817 1641 0.5220 +817 1739 0.4660 +817 1740 0.4900 +817 1741 0.4620 +817 1742 0.5110 +817 2036 0.4640 +817 2066 0.4100 +817 2890 0.5920 +817 2891 0.5950 +817 2892 0.4760 +817 2893 0.4830 +817 2902 0.5610 +817 2903 0.7740 +817 2904 0.7040 +817 2905 0.5470 +817 2906 0.4860 +817 2913 0.5440 +817 3178 0.4450 +817 3265 0.5250 +817 3297 0.4150 +817 3458 0.4230 +817 3459 0.4020 +817 3460 0.4530 +817 3708 0.4360 +817 3709 0.5490 +817 3710 0.5270 +817 3716 0.4300 +817 3717 0.4120 +817 3756 0.4870 +817 3815 0.4220 +817 3845 0.5290 +817 4000 0.4620 +817 4140 0.4130 +817 4193 0.4170 +817 4204 0.5230 +817 4354 0.8640 +817 4355 0.7040 +817 4356 0.4180 +817 4646 0.4040 +817 4747 0.4670 +817 4893 0.5230 +817 5141 0.4980 +817 5530 0.5060 +817 5532 0.4350 +817 5580 0.4480 +817 5604 0.4560 +817 5605 0.4490 +817 5894 0.4070 +817 5923 0.4720 +817 5924 0.5560 +817 6262 0.8040 +817 6331 0.5270 +817 6426 0.5620 +817 6546 0.5120 +817 6714 0.4310 +817 6744 0.4470 +817 6745 0.4030 +817 6772 0.4440 +817 7273 0.4380 +817 7529 0.4090 +817 7532 0.4530 +817 8087 0.4550 +817 8473 0.4030 +817 8546 0.4010 +817 8844 0.4590 +817 9061 0.4330 +817 9444 0.4470 +817 9495 0.4100 +817 9513 0.4080 +817 9647 0.4880 +817 9715 0.4080 +817 9759 0.7510 +817 10018 0.4350 +817 10044 0.4870 +817 10142 0.4310 +817 10368 0.4370 +817 10369 0.4160 +817 10533 0.4320 +817 10827 0.4050 +817 22906 0.4110 +817 22981 0.5370 +817 23164 0.4240 +817 23534 0.4220 +817 27092 0.4470 +817 27133 0.5320 +817 51678 0.7150 +817 51806 0.7760 +817 55109 0.4030 +817 55450 0.5410 +817 55750 0.4010 +817 56829 0.4050 +817 57172 0.4180 +817 57554 0.4550 +817 59283 0.4560 +817 65979 0.5380 +817 79968 0.4450 +817 80853 0.4320 +817 84955 0.6190 +817 85464 0.4860 +817 91860 0.6790 +817 91875 0.7250 +817 124989 0.4950 +817 143098 0.5090 +817 146779 0.4780 +817 163688 0.6740 +817 282996 0.6100 +818 1185 0.4080 +818 1385 0.7860 +818 1399 0.4740 +818 1641 0.7610 +818 1655 0.4550 +818 1739 0.5610 +818 1740 0.5390 +818 1741 0.5130 +818 1742 0.7670 +818 2036 0.4410 +818 2066 0.4340 +818 2316 0.4590 +818 2332 0.4900 +818 2353 0.4300 +818 2516 0.4860 +818 2890 0.6800 +818 2891 0.6300 +818 2892 0.5320 +818 2893 0.5030 +818 2902 0.8100 +818 2903 0.9000 +818 2904 0.9270 +818 2905 0.6090 +818 2906 0.6390 +818 2908 0.6390 +818 2913 0.8030 +818 3084 0.4710 +818 3265 0.5940 +818 3297 0.4450 +818 3458 0.4890 +818 3460 0.4090 +818 3708 0.5650 +818 3710 0.6200 +818 3716 0.4720 +818 3717 0.4620 +818 3739 0.4490 +818 3845 0.6230 +818 3925 0.4450 +818 4000 0.4720 +818 4088 0.4670 +818 4140 0.4650 +818 4193 0.4500 +818 4204 0.5770 +818 4354 0.8230 +818 4355 0.6100 +818 4747 0.4710 +818 4855 0.4080 +818 4893 0.5800 +818 5021 0.4780 +818 5037 0.4180 +818 5500 0.5380 +818 5501 0.5200 +818 5530 0.4460 +818 5533 0.5130 +818 5580 0.6880 +818 5604 0.5470 +818 5605 0.5100 +818 5728 0.4410 +818 5816 0.4020 +818 5894 0.5010 +818 5923 0.5280 +818 5924 0.4570 +818 6714 0.5240 +818 6731 0.5910 +818 6772 0.4990 +818 6853 0.5840 +818 6854 0.6760 +818 7157 0.4890 +818 7529 0.6220 +818 8087 0.4520 +818 8224 0.6800 +818 8509 0.5170 +818 8546 0.4320 +818 8678 0.4090 +818 8805 0.4570 +818 8825 0.6140 +818 8844 0.4640 +818 9061 0.4210 +818 9444 0.4090 +818 9495 0.4520 +818 9513 0.4070 +818 9575 0.4310 +818 9647 0.7270 +818 9715 0.4150 +818 9759 0.4810 +818 10014 0.4400 +818 10018 0.4720 +818 10044 0.4680 +818 10142 0.4870 +818 10221 0.4290 +818 10368 0.4600 +818 10369 0.4840 +818 10533 0.4800 +818 10827 0.4100 +818 10891 0.4550 +818 11044 0.4050 +818 22906 0.4590 +818 23122 0.4360 +818 23164 0.4270 +818 26986 0.4440 +818 27044 0.4030 +818 27092 0.4060 +818 27233 0.4220 +818 27284 0.4240 +818 51678 0.6360 +818 51806 0.9850 +818 53635 0.5460 +818 55107 0.4760 +818 55750 0.4020 +818 56829 0.4140 +818 57085 0.4050 +818 57172 0.4410 +818 57554 0.4330 +818 57576 0.4360 +818 57670 0.4080 +818 59283 0.4840 +818 64118 0.4490 +818 65217 0.5870 +818 80853 0.4170 +818 81857 0.6050 +818 84955 0.6210 +818 91860 0.9840 +818 91875 0.4330 +818 114609 0.6970 +818 143098 0.4270 +818 163688 0.9820 +818 388336 0.4350 +818 442038 0.4220 +819 1131 0.5480 +819 1528 0.6420 +819 1956 0.7670 +819 2010 0.6160 +819 3162 0.4990 +819 3737 0.5910 +819 4232 0.4200 +819 4773 0.4520 +819 5314 0.7960 +819 5479 0.9690 +819 6449 0.8390 +819 6804 0.5140 +819 6811 0.7110 +819 6844 0.5710 +819 7188 0.4190 +819 7189 0.5950 +819 7485 0.9990 +819 7917 0.6320 +819 8266 0.8620 +819 8624 0.4030 +819 9218 0.7360 +819 9381 0.6030 +819 9879 0.5660 +819 10673 0.7920 +819 10952 0.6120 +819 11231 0.5150 +819 23480 0.5110 +819 23495 0.9980 +819 23704 0.4260 +819 27230 0.6630 +819 29100 0.4490 +819 29927 0.4470 +819 51608 0.8880 +819 55658 0.4410 +819 55670 0.4110 +819 55831 0.4350 +819 57085 0.8430 +819 79770 0.4760 +819 79845 0.4110 +819 83460 0.4530 +819 83590 0.5820 +819 115650 0.7830 +819 118424 0.5090 +820 834 0.4930 +820 909 0.6330 +820 910 0.5390 +820 911 0.5810 +820 912 0.5240 +820 913 0.5730 +820 920 0.5510 +820 925 0.4930 +820 932 0.4470 +820 942 0.4410 +820 1088 0.8640 +820 1235 0.4360 +820 1401 0.6060 +820 1432 0.4190 +820 1437 0.4800 +820 1511 0.9710 +820 1520 0.4070 +820 1591 0.6810 +820 1594 0.7210 +820 1667 0.6530 +820 1668 0.5330 +820 1669 0.8400 +820 1670 0.6850 +820 1671 0.4010 +820 1672 0.8660 +820 1673 0.9370 +820 1956 0.5980 +820 1991 0.9910 +820 2064 0.6760 +820 2219 0.5210 +820 2220 0.4880 +820 2312 0.4970 +820 2335 0.5970 +820 2357 0.5110 +820 2358 0.9970 +820 2359 0.7400 +820 2597 0.9610 +820 2638 0.4460 +820 2919 0.4950 +820 2920 0.4080 +820 3021 0.5430 +820 3045 0.5710 +820 3107 0.5960 +820 3112 0.4950 +820 3115 0.4860 +820 3119 0.5530 +820 3120 0.5340 +820 3122 0.9160 +820 3123 0.9340 +820 3127 0.8020 +820 3146 0.8820 +820 3240 0.4970 +820 3346 0.4800 +820 3347 0.7000 +820 3383 0.4070 +820 3439 0.5930 +820 3456 0.4790 +820 3458 0.6110 +820 3480 0.8170 +820 3552 0.5180 +820 3553 0.6770 +820 3565 0.6420 +820 3569 0.6570 +820 3576 0.7880 +820 3577 0.4130 +820 3579 0.9480 +820 3586 0.5920 +820 3596 0.4500 +820 3605 0.6220 +820 3606 0.5060 +820 3627 0.4850 +820 3683 0.4710 +820 3684 0.4610 +820 3687 0.4390 +820 3725 0.9230 +820 3934 0.8460 +820 3950 0.4420 +820 4057 0.9640 +820 4317 0.7530 +820 4318 0.7890 +820 4353 0.9820 +820 4790 0.9380 +820 4863 0.4760 +820 5027 0.8550 +820 5265 0.6290 +820 5266 0.5170 +820 5657 0.9900 +820 5806 0.5500 +820 5970 0.9160 +820 6036 0.4360 +820 6037 0.5720 +820 6278 0.7240 +820 6279 0.6220 +820 6280 0.6950 +820 6283 0.7490 +820 6347 0.5070 +820 6348 0.4370 +820 6364 0.5700 +820 6556 0.4390 +820 6590 0.6300 +820 7019 0.4100 +820 7096 0.6450 +820 7097 0.7070 +820 7098 0.6560 +820 7099 0.8510 +820 7100 0.5280 +820 7124 0.6870 +820 7432 0.4420 +820 7852 0.6510 +820 8290 0.5460 +820 8337 0.5100 +820 8338 0.5110 +820 8349 0.5090 +820 8356 0.5480 +820 8808 0.4170 +820 8878 0.4720 +820 8993 0.8440 +820 9034 0.4870 +820 9140 0.4570 +820 9172 0.5190 +820 9332 0.4920 +820 9447 0.4130 +820 10578 0.4040 +820 11005 0.5940 +820 22921 0.5150 +820 23569 0.6380 +820 23586 0.4090 +820 23643 0.4110 +820 25818 0.7880 +820 26330 0.4080 +820 50489 0.5080 +820 50616 0.5940 +820 51206 0.4970 +820 51284 0.7610 +820 51311 0.5840 +820 51393 0.5080 +820 54106 0.9670 +820 54210 0.6120 +820 55801 0.5740 +820 56729 0.5090 +820 57817 0.5060 +820 59272 0.5820 +820 64127 0.5280 +820 64581 0.4410 +820 84659 0.7280 +820 90865 0.4060 +820 112744 0.4330 +820 114548 0.4200 +820 116844 0.4100 +820 117159 0.6670 +820 117194 0.9760 +820 130120 0.4800 +820 140596 0.6230 +820 283748 0.4440 +820 339366 0.6440 +820 388698 0.5090 +820 414325 0.8730 +820 440093 0.5430 +820 440686 0.5440 +820 503618 0.6220 +820 653604 0.5460 +820 728358 0.6430 +820 100289462 0.7860 +821 836 0.5240 +821 842 0.5900 +821 871 0.6250 +821 912 0.4410 +821 915 0.7900 +821 917 0.4890 +821 928 0.7590 +821 949 0.4600 +821 967 0.8430 +821 972 0.6610 +821 973 0.6420 +821 974 0.8250 +821 975 0.7700 +821 1080 0.9360 +821 1138 0.4290 +821 1315 0.7710 +821 1327 0.5680 +821 1388 0.5320 +821 1509 0.5170 +821 1528 0.6310 +821 1603 0.4300 +821 1649 0.5160 +821 1650 0.8860 +821 1812 0.4130 +821 1861 0.7370 +821 1937 0.4310 +821 1938 0.6250 +821 1956 0.6030 +821 1965 0.5640 +821 2010 0.4450 +821 2028 0.5450 +821 2058 0.5230 +821 2081 0.7260 +821 2157 0.4410 +821 2171 0.4250 +821 2182 0.4040 +821 2492 0.4060 +821 2548 0.4110 +821 2554 0.5540 +821 2566 0.5360 +821 2597 0.8280 +821 2629 0.4930 +821 2705 0.5880 +821 2783 0.4090 +821 2800 0.5110 +821 2801 0.7430 +821 2804 0.6410 +821 2806 0.5080 +821 2923 0.9990 +821 3074 0.4410 +821 3105 0.7360 +821 3106 0.7050 +821 3107 0.6700 +821 3113 0.5440 +821 3115 0.5120 +821 3117 0.5210 +821 3118 0.5090 +821 3119 0.5410 +821 3120 0.5420 +821 3122 0.5310 +821 3123 0.5300 +821 3127 0.5090 +821 3133 0.6000 +821 3134 0.5620 +821 3135 0.5940 +821 3156 0.6220 +821 3187 0.4170 +821 3301 0.5950 +821 3303 0.6020 +821 3304 0.6350 +821 3308 0.8820 +821 3309 0.9980 +821 3312 0.6650 +821 3313 0.8710 +821 3320 0.8480 +821 3326 0.8860 +821 3329 0.4010 +821 3337 0.5920 +821 3439 0.5110 +821 3440 0.4550 +821 3441 0.4530 +821 3442 0.4470 +821 3443 0.4460 +821 3444 0.4450 +821 3445 0.4450 +821 3446 0.4410 +821 3447 0.4400 +821 3448 0.4460 +821 3449 0.4470 +821 3451 0.4470 +821 3452 0.4410 +821 3592 0.4990 +821 3630 0.4580 +821 3638 0.4860 +821 3688 0.6710 +821 3703 0.7300 +821 3708 0.8430 +821 3710 0.8930 +821 3725 0.4220 +821 3757 0.6400 +821 3897 0.5850 +821 3916 0.8310 +821 3920 0.6860 +821 3973 0.4180 +821 3998 0.8970 +821 4000 0.4060 +821 4001 0.5090 +821 4012 0.5550 +821 4018 0.6960 +821 4035 0.4420 +821 4077 0.5170 +821 4121 0.5080 +821 4123 0.6640 +821 4124 0.5140 +821 4189 0.6170 +821 4208 0.4470 +821 4245 0.4640 +821 4283 0.4290 +821 4353 0.4730 +821 4478 0.4980 +821 4547 0.5370 +821 4609 0.4870 +821 4691 0.4700 +821 4864 0.4150 +821 4985 0.5390 +821 5033 0.5940 +821 5034 0.9660 +821 5245 0.7400 +821 5265 0.7720 +821 5290 0.4310 +821 5311 0.4250 +821 5376 0.5990 +821 5479 0.9430 +821 5589 0.9110 +821 5595 0.4360 +821 5610 0.4870 +821 5611 0.6610 +821 5621 0.5860 +821 5660 0.4410 +821 5689 0.4260 +821 5693 0.6830 +821 5696 0.4650 +821 5698 0.4510 +821 5699 0.6390 +821 5720 0.5770 +821 5721 0.5490 +821 5728 0.5150 +821 5861 0.4980 +821 5862 0.5380 +821 5868 0.6180 +821 5878 0.4200 +821 6010 0.5710 +821 6175 0.4270 +821 6184 0.8410 +821 6185 0.9240 +821 6311 0.4100 +821 6386 0.5290 +821 6396 0.7570 +821 6400 0.9180 +821 6440 0.4160 +821 6476 0.5660 +821 6513 0.4050 +821 6519 0.4890 +821 6532 0.6360 +821 6622 0.5750 +821 6646 0.4890 +821 6710 0.4540 +821 6711 0.4040 +821 6745 0.9300 +821 6747 0.5590 +821 6748 0.4230 +821 6776 0.5160 +821 6777 0.5210 +821 6780 0.4060 +821 6782 0.5250 +821 6786 0.7540 +821 6811 0.5190 +821 6850 0.4110 +821 6890 0.7620 +821 6891 0.6310 +821 6892 0.9960 +821 7001 0.5090 +821 7009 0.4560 +821 7037 0.5760 +821 7072 0.4810 +821 7095 0.6870 +821 7112 0.6430 +821 7124 0.6180 +821 7157 0.4380 +821 7184 0.9900 +821 7189 0.4110 +821 7251 0.8450 +821 7280 0.4370 +821 7295 0.5380 +821 7299 0.5660 +821 7306 0.6070 +821 7314 0.4880 +821 7341 0.4360 +821 7353 0.4560 +821 7414 0.5850 +821 7415 0.9670 +821 7416 0.8630 +821 7417 0.6700 +821 7431 0.4800 +821 7436 0.4450 +821 7450 0.4960 +821 7466 0.5250 +821 7494 0.8900 +821 7529 0.4460 +821 7837 0.7110 +821 7841 0.9520 +821 7879 0.5100 +821 7905 0.4460 +821 7991 0.4400 +821 8218 0.5230 +821 8266 0.4410 +821 8411 0.7380 +821 8468 0.4650 +821 8675 0.4670 +821 8678 0.4740 +821 8720 0.6160 +821 8766 0.5570 +821 8836 0.5060 +821 8879 0.4580 +821 8912 0.4240 +821 8972 0.5650 +821 8974 0.5150 +821 9144 0.6420 +821 9172 0.5560 +821 9217 0.5430 +821 9218 0.6190 +821 9276 0.4590 +821 9343 0.7420 +821 9445 0.5480 +821 9451 0.6420 +821 9474 0.4690 +821 9527 0.4140 +821 9554 0.7030 +821 9601 0.9310 +821 9632 0.6910 +821 9694 0.4920 +821 9695 0.9860 +821 9761 0.6500 +821 9804 0.9050 +821 9871 0.6490 +821 9919 0.5190 +821 9927 0.5920 +821 10015 0.4290 +821 10026 0.6060 +821 10059 0.4790 +821 10113 0.6640 +821 10130 0.7250 +821 10134 0.9380 +821 10148 0.9260 +821 10159 0.4260 +821 10211 0.6780 +821 10228 0.4570 +821 10269 0.4760 +821 10280 0.4470 +821 10294 0.6010 +821 10299 0.4340 +821 10313 0.4870 +821 10381 0.4240 +821 10383 0.4190 +821 10427 0.7240 +821 10484 0.6640 +821 10488 0.4290 +821 10525 0.8690 +821 10533 0.4230 +821 10551 0.5690 +821 10595 0.5020 +821 10598 0.4400 +821 10613 0.5060 +821 10618 0.6740 +821 10728 0.6770 +821 10802 0.6710 +821 10857 0.5210 +821 10945 0.5320 +821 10952 0.7880 +821 10956 0.9580 +821 10959 0.5380 +821 10960 0.6250 +821 10961 0.7440 +821 10970 0.6200 +821 10972 0.6050 +821 11079 0.6740 +821 11136 0.4250 +821 11160 0.6830 +821 11231 0.7130 +821 11236 0.4240 +821 11253 0.7990 +821 11315 0.5530 +821 11322 0.7410 +821 11331 0.5290 +821 11337 0.4080 +821 11345 0.4140 +821 22818 0.4410 +821 22872 0.7610 +821 22916 0.6160 +821 22926 0.8630 +821 23065 0.8540 +821 23071 0.7900 +821 23190 0.5010 +821 23193 0.9530 +821 23197 0.8750 +821 23208 0.4180 +821 23241 0.9480 +821 23309 0.4100 +821 23385 0.7540 +821 23621 0.5740 +821 23710 0.4120 +821 23753 0.4090 +821 23770 0.6070 +821 25923 0.5320 +821 26100 0.4730 +821 26580 0.5470 +821 27111 0.4430 +821 27248 0.9470 +821 29896 0.4360 +821 29927 0.9140 +821 29929 0.5440 +821 30001 0.7260 +821 50507 0.7240 +821 51009 0.8870 +821 51014 0.4040 +821 51061 0.4210 +821 51075 0.7130 +821 51128 0.6330 +821 51141 0.4040 +821 51234 0.4370 +821 51237 0.4710 +821 51272 0.4220 +821 51306 0.4800 +821 51363 0.4440 +821 51371 0.4080 +821 51465 0.8320 +821 51614 0.4010 +821 51726 0.7560 +821 51741 0.5040 +821 51752 0.4670 +821 51806 0.4370 +821 53407 0.5460 +821 54205 0.5870 +821 54413 0.4610 +821 54431 0.8760 +821 54463 0.8090 +821 54495 0.6300 +821 54732 0.5560 +821 54788 0.5600 +821 54872 0.4250 +821 55062 0.4760 +821 55161 0.4030 +821 55379 0.5120 +821 55626 0.5720 +821 55666 0.6590 +821 55669 0.4980 +821 55741 0.8970 +821 55754 0.4630 +821 55757 0.9000 +821 55831 0.4290 +821 55847 0.5100 +821 56255 0.5770 +821 56605 0.5000 +821 56886 0.9350 +821 56983 0.6150 +821 57003 0.4440 +821 57130 0.4180 +821 57136 0.4700 +821 57142 0.6340 +821 58477 0.4290 +821 58487 0.4930 +821 60559 0.4790 +821 64083 0.5820 +821 64215 0.4390 +821 64241 0.5300 +821 64374 0.4330 +821 64429 0.5020 +821 64714 0.5300 +821 64788 0.6200 +821 79053 0.5140 +821 79087 0.4620 +821 79139 0.6890 +821 79152 0.5490 +821 79412 0.4680 +821 79608 0.5610 +821 79701 0.4210 +821 80055 0.4690 +821 80124 0.4060 +821 80168 0.5250 +821 80267 0.7540 +821 80764 0.4010 +821 80777 0.6790 +821 81502 0.4450 +821 81542 0.8720 +821 81562 0.5220 +821 81567 0.4800 +821 81631 0.5100 +821 81876 0.5640 +821 84061 0.6510 +821 84197 0.4020 +821 84447 0.8750 +821 84649 0.5600 +821 84790 0.5010 +821 85406 0.7070 +821 90411 0.6100 +821 91304 0.4510 +821 91319 0.6420 +821 91445 0.5480 +821 91860 0.4080 +821 92521 0.4460 +821 93380 0.5760 +821 93432 0.4070 +821 116255 0.5030 +821 121506 0.5030 +821 125972 0.7250 +821 128637 0.6420 +821 137902 0.6560 +821 139341 0.9180 +821 147138 0.7300 +821 148066 0.4440 +821 153443 0.5120 +821 153830 0.4130 +821 158833 0.4620 +821 160335 0.6710 +821 163590 0.4230 +821 163688 0.4080 +821 197131 0.4110 +821 201595 0.7470 +821 203068 0.4640 +821 204474 0.4250 +821 246778 0.5120 +821 339416 0.6730 +821 346606 0.5590 +821 347733 0.5520 +821 375790 0.4060 +821 405753 0.4630 +821 440138 0.6670 +821 493856 0.7060 +822 829 0.5720 +822 830 0.5990 +822 832 0.6900 +822 1072 0.6400 +822 1073 0.5270 +822 1396 0.5980 +822 2028 0.4320 +822 3115 0.4290 +822 3936 0.5090 +822 4282 0.4840 +822 6419 0.4750 +822 6514 0.4240 +822 7305 0.4090 +822 7579 0.4810 +822 8544 0.4280 +822 10457 0.4390 +822 10755 0.4670 +822 11219 0.4840 +822 57511 0.5010 +822 83548 0.4500 +822 93661 0.5600 +822 136319 0.7540 +822 142940 0.4770 +823 824 0.9780 +823 826 0.9990 +823 831 0.9990 +823 836 0.7900 +823 839 0.4120 +823 840 0.4150 +823 842 0.4220 +823 999 0.5080 +823 1020 0.7540 +823 1075 0.4180 +823 1080 0.5830 +823 1128 0.7690 +823 1351 0.7700 +823 1499 0.5360 +823 1508 0.4690 +823 1509 0.4980 +823 1514 0.4640 +823 1520 0.6720 +823 1742 0.5690 +823 2011 0.7710 +823 2017 0.5340 +823 2021 0.5640 +823 2149 0.4390 +823 2185 0.4220 +823 2312 0.5300 +823 2316 0.4070 +823 2495 0.7680 +823 2597 0.4130 +823 2880 0.4300 +823 2904 0.7100 +823 2932 0.4470 +823 3059 0.5280 +823 3091 0.4510 +823 3309 0.4150 +823 3552 0.9170 +823 3827 0.4450 +823 3899 0.4190 +823 3920 0.4810 +823 4134 0.4440 +823 4137 0.5110 +823 4296 0.7820 +823 4741 0.4560 +823 4763 0.4220 +823 4792 0.4860 +823 5050 0.4570 +823 5158 0.4650 +823 5211 0.4240 +823 5331 0.7760 +823 5770 0.6190 +823 5834 0.4160 +823 5837 0.7920 +823 5970 0.7270 +823 6094 0.7690 +823 6709 0.7860 +823 6721 0.4120 +823 7019 0.4750 +823 7040 0.4360 +823 7082 0.4610 +823 7094 0.7700 +823 7157 0.9380 +823 7273 0.7740 +823 7356 0.7620 +823 7430 0.4640 +823 7431 0.6050 +823 7536 0.7700 +823 7837 0.4010 +823 8061 0.7630 +823 8851 0.9490 +823 9131 0.5300 +823 9474 0.5030 +823 23581 0.6190 +823 25818 0.4630 +823 27129 0.4100 +823 51806 0.4130 +823 54205 0.4330 +823 57680 0.4290 +823 63036 0.4220 +823 79026 0.8130 +823 79932 0.4090 +823 83660 0.6560 +823 84290 0.9230 +823 84676 0.4160 +823 91860 0.4130 +823 114907 0.5140 +823 136332 0.4490 +823 163688 0.4130 +823 285989 0.4380 +823 388743 0.7770 +823 641372 0.4080 +824 826 0.9990 +824 831 0.9990 +824 834 0.6640 +824 835 0.6180 +824 836 0.7580 +824 839 0.6940 +824 840 0.6810 +824 841 0.6910 +824 842 0.6780 +824 1020 0.6810 +824 1508 0.4140 +824 1520 0.4160 +824 2316 0.4070 +824 2326 0.4040 +824 2890 0.4730 +824 3178 0.4950 +824 3309 0.4120 +824 3552 0.9120 +824 3685 0.4760 +824 3841 0.4930 +824 4137 0.4580 +824 4287 0.5970 +824 4478 0.5620 +824 5328 0.5380 +824 5594 0.5690 +824 5654 0.4500 +824 5747 0.5800 +824 5770 0.4620 +824 6281 0.4640 +824 6709 0.7620 +824 6714 0.7190 +824 7094 0.9710 +824 7157 0.9240 +824 8702 0.4360 +824 8733 0.5420 +824 8851 0.9140 +824 9365 0.4080 +824 9474 0.4860 +824 10026 0.5400 +824 10362 0.4060 +824 11251 0.4700 +824 23371 0.5670 +824 26509 0.5230 +824 27166 0.6860 +824 30819 0.4290 +824 51362 0.4120 +824 51520 0.4430 +824 51604 0.5430 +824 57326 0.4060 +824 83660 0.9520 +824 84290 0.7970 +824 84955 0.6240 +824 94005 0.5430 +824 114907 0.4140 +824 128869 0.5400 +824 136332 0.4490 +824 284217 0.4320 +825 826 0.6750 +825 831 0.9180 +825 839 0.4660 +825 842 0.4520 +825 859 0.7880 +825 983 0.4420 +825 1020 0.4600 +825 1145 0.5700 +825 1146 0.5100 +825 1291 0.4120 +825 1410 0.5210 +825 1756 0.7950 +825 2010 0.4700 +825 2218 0.5280 +825 2274 0.7210 +825 2318 0.8670 +825 2660 0.4750 +825 3689 0.4470 +825 3691 0.4170 +825 3695 0.4200 +825 3908 0.7070 +825 4000 0.5290 +825 4077 0.5490 +825 4606 0.4160 +825 4607 0.5710 +825 4632 0.6480 +825 4654 0.4570 +825 4656 0.4130 +825 4790 0.4020 +825 5034 0.4250 +825 6123 0.4480 +825 6261 0.7460 +825 6442 0.7730 +825 6443 0.8190 +825 6444 0.6790 +825 6445 0.8530 +825 7273 0.9980 +825 7301 0.6030 +825 8291 0.9850 +825 8424 0.6700 +825 8557 0.8550 +825 8878 0.4330 +825 9172 0.5140 +825 9499 0.6540 +825 10049 0.4060 +825 10585 0.5780 +825 10612 0.4300 +825 22954 0.8580 +825 23336 0.4990 +825 26287 0.5440 +825 26509 0.7610 +825 26586 0.4200 +825 27063 0.6120 +825 29780 0.8170 +825 29895 0.4970 +825 29925 0.4510 +825 29948 0.4790 +825 29954 0.5160 +825 50852 0.4180 +825 51806 0.5620 +825 55586 0.4130 +825 55624 0.4320 +825 57152 0.6890 +825 57159 0.5050 +825 58529 0.4350 +825 79026 0.8070 +825 79041 0.4620 +825 79147 0.8690 +825 79444 0.5160 +825 80333 0.4550 +825 84033 0.7130 +825 84290 0.6570 +825 84665 0.8200 +825 84676 0.7490 +825 91860 0.5620 +825 113146 0.4550 +825 114907 0.4390 +825 116519 0.4380 +825 120939 0.4310 +825 131405 0.8440 +825 132671 0.4240 +825 136332 0.4500 +825 163688 0.5720 +825 200539 0.6780 +825 202333 0.7910 +825 203859 0.7320 +825 375484 0.6540 +825 399664 0.5770 +825 493829 0.6280 +826 827 0.9660 +826 831 0.9950 +826 834 0.5800 +826 835 0.5610 +826 836 0.7350 +826 839 0.5990 +826 840 0.5990 +826 841 0.5730 +826 842 0.6010 +826 999 0.4820 +826 1020 0.5840 +826 1155 0.4710 +826 1173 0.4050 +826 1938 0.6100 +826 2312 0.4200 +826 2597 0.4670 +826 5499 0.4230 +826 5745 0.4490 +826 5921 0.4060 +826 6464 0.4110 +826 6650 0.7750 +826 7094 0.6470 +826 7124 0.4470 +826 7384 0.7490 +826 7534 0.4180 +826 8733 0.5780 +826 8851 0.4990 +826 9114 0.4660 +826 9459 0.5100 +826 10026 0.5400 +826 10753 0.6770 +826 11131 0.7010 +826 11132 0.8160 +826 23065 0.4760 +826 23473 0.8300 +826 23581 0.4220 +826 25818 0.4210 +826 26509 0.4300 +826 51604 0.5600 +826 51806 0.5200 +826 84290 0.8850 +826 84955 0.6190 +826 91860 0.5190 +826 92291 0.6880 +826 94005 0.5560 +826 128869 0.5400 +826 147968 0.6880 +826 163688 0.5190 +826 284217 0.4360 +826 388743 0.6770 +826 440854 0.6880 +827 831 0.7090 +827 1641 0.5600 +827 3800 0.4700 +827 5613 0.4310 +827 6191 0.4050 +827 7224 0.4220 +827 7543 0.4320 +827 8908 0.4270 +827 9181 0.8050 +827 22832 0.4520 +827 51442 0.4640 +827 51806 0.6010 +827 55787 0.4420 +827 57502 0.4220 +827 79868 0.4260 +827 84290 0.8360 +827 89797 0.5350 +827 91860 0.6000 +827 114786 0.4450 +827 136332 0.4490 +827 139081 0.4240 +827 147968 0.4350 +827 163688 0.6000 +827 359845 0.4160 +829 830 0.9970 +829 832 0.9990 +829 989 0.7760 +829 1062 0.5130 +829 1072 0.7200 +829 1073 0.7090 +829 1080 0.4390 +829 1147 0.4440 +829 1176 0.4110 +829 1639 0.9940 +829 1778 0.9230 +829 1780 0.5910 +829 1781 0.9080 +829 1783 0.9180 +829 1906 0.4320 +829 2017 0.5220 +829 2036 0.5060 +829 2059 0.6250 +829 2288 0.4420 +829 2316 0.5040 +829 2317 0.4440 +829 2318 0.4890 +829 2589 0.5210 +829 2590 0.5030 +829 2801 0.5470 +829 2804 0.5530 +829 2908 0.4230 +829 2934 0.6260 +829 3059 0.4840 +829 3146 0.5910 +829 3312 0.4690 +829 3313 0.4030 +829 3320 0.5320 +829 3326 0.5100 +829 3796 0.5270 +829 3797 0.4990 +829 3798 0.5310 +829 3799 0.5730 +829 3831 0.5510 +829 3832 0.5100 +829 3835 0.5000 +829 3856 0.4250 +829 4478 0.6100 +829 4627 0.6190 +829 4641 0.5870 +829 4647 0.5470 +829 4690 0.6210 +829 4735 0.6330 +829 4848 0.4510 +829 4849 0.4810 +829 4868 0.4830 +829 5048 0.6410 +829 5062 0.4350 +829 5162 0.7660 +829 5216 0.7240 +829 5241 0.4150 +829 5357 0.6550 +829 5500 0.4410 +829 5603 0.5790 +829 5756 0.9800 +829 5870 0.6000 +829 5962 0.6100 +829 6271 0.7170 +829 6283 0.6310 +829 6285 0.9960 +829 6288 0.5070 +829 6300 0.5780 +829 6709 0.5790 +829 6711 0.5250 +829 6775 0.7540 +829 6811 0.5150 +829 7111 0.8140 +829 7124 0.5640 +829 7170 0.5450 +829 7251 0.4290 +829 7273 0.5070 +829 7408 0.5050 +829 7430 0.6170 +829 7454 0.5530 +829 7472 0.5640 +829 7529 0.4880 +829 7867 0.5560 +829 8557 0.6490 +829 8573 0.5410 +829 8655 0.6000 +829 8729 0.6210 +829 8976 0.4920 +829 9125 0.4270 +829 9261 0.5880 +829 9337 0.5100 +829 9371 0.5010 +829 9382 0.5070 +829 9493 0.5270 +829 9499 0.4060 +829 9527 0.5100 +829 9531 0.5300 +829 9559 0.4070 +829 9570 0.6780 +829 9750 0.5820 +829 9897 0.9810 +829 9948 0.6370 +829 10044 0.4820 +829 10092 0.5450 +829 10094 0.5790 +829 10096 0.7110 +829 10097 0.6270 +829 10109 0.7110 +829 10112 0.6350 +829 10120 0.8110 +829 10121 0.9920 +829 10466 0.5690 +829 10529 0.4220 +829 10540 0.9950 +829 10594 0.4470 +829 10671 0.9740 +829 10728 0.4830 +829 11004 0.5140 +829 11034 0.5540 +829 11070 0.5320 +829 11076 0.9000 +829 11078 0.5310 +829 11127 0.5040 +829 11258 0.9520 +829 11311 0.4790 +829 11344 0.8030 +829 22796 0.5250 +829 22920 0.4990 +829 22930 0.5110 +829 22931 0.5450 +829 23019 0.6540 +829 23136 0.5070 +829 23299 0.6370 +829 23307 0.5780 +829 23325 0.9700 +829 23607 0.9610 +829 24137 0.5000 +829 25782 0.5080 +829 25794 0.5370 +829 25839 0.5070 +829 25861 0.5720 +829 25904 0.4400 +829 26153 0.4990 +829 26228 0.4480 +829 26286 0.5070 +829 29127 0.5020 +829 29765 0.8850 +829 29766 0.8220 +829 29767 0.7910 +829 29883 0.4640 +829 30011 0.8950 +829 51019 0.9480 +829 51143 0.6130 +829 51164 0.9870 +829 51168 0.6160 +829 51177 0.4400 +829 51272 0.5040 +829 51366 0.4030 +829 51560 0.5410 +829 53405 0.5090 +829 53904 0.5830 +829 54443 0.5350 +829 55604 0.9320 +829 55737 0.4710 +829 55738 0.5010 +829 55752 0.5990 +829 55860 0.9900 +829 55930 0.6210 +829 56992 0.5030 +829 57180 0.8320 +829 57472 0.4290 +829 57511 0.5170 +829 64689 0.4990 +829 64787 0.6890 +829 64837 0.5380 +829 80301 0.7350 +829 81688 0.4590 +829 81930 0.5330 +829 83548 0.5060 +829 83658 0.8580 +829 83715 0.6080 +829 84364 0.5010 +829 84516 0.9850 +829 84643 0.5170 +829 84665 0.6010 +829 85456 0.6630 +829 85477 0.6200 +829 89953 0.5770 +829 91949 0.5160 +829 92241 0.9720 +829 92558 0.8010 +829 93661 0.9190 +829 120892 0.5330 +829 129446 0.5570 +829 136319 0.9620 +829 140469 0.6040 +829 140735 0.6450 +829 146206 0.7930 +829 147700 0.5160 +829 246175 0.4230 +829 253725 0.9730 +829 285643 0.4990 +829 285855 0.4110 +829 286262 0.4990 +829 339768 0.6150 +829 345456 0.6490 +829 375189 0.6610 +829 387680 0.9290 +829 389207 0.4990 +829 442721 0.4630 +829 494513 0.4990 +829 643226 0.4990 +829 653857 0.8410 +829 728378 0.5490 +829 100287171 0.9510 +830 832 0.9990 +830 1062 0.5030 +830 1072 0.7550 +830 1073 0.7530 +830 1080 0.5340 +830 1639 0.9800 +830 1778 0.6190 +830 1780 0.5960 +830 1781 0.5610 +830 1783 0.6200 +830 1906 0.4680 +830 2017 0.5410 +830 2036 0.5340 +830 2059 0.6230 +830 2288 0.4250 +830 2316 0.4840 +830 2317 0.5280 +830 2318 0.5100 +830 2355 0.4300 +830 2589 0.5130 +830 2590 0.5010 +830 2801 0.5370 +830 2804 0.5450 +830 2908 0.4120 +830 2934 0.6700 +830 3059 0.4780 +830 3146 0.5590 +830 3320 0.5040 +830 3326 0.4870 +830 3796 0.5440 +830 3797 0.4990 +830 3798 0.5230 +830 3799 0.5790 +830 3831 0.5350 +830 3832 0.5000 +830 3835 0.5000 +830 4478 0.6060 +830 4627 0.6230 +830 4641 0.5910 +830 4644 0.5450 +830 4647 0.5210 +830 4690 0.5390 +830 4848 0.4660 +830 4849 0.6290 +830 4868 0.4830 +830 5048 0.6070 +830 5062 0.4530 +830 5162 0.7890 +830 5216 0.6760 +830 5241 0.4230 +830 5357 0.6390 +830 5756 0.8180 +830 5870 0.6290 +830 5962 0.6160 +830 6271 0.6900 +830 6283 0.5770 +830 6285 0.9910 +830 6288 0.4990 +830 6709 0.6090 +830 6711 0.6130 +830 6811 0.5110 +830 6840 0.5090 +830 7111 0.8400 +830 7170 0.4230 +830 7273 0.5330 +830 7408 0.4600 +830 7430 0.6150 +830 7454 0.5510 +830 7472 0.7220 +830 8557 0.6690 +830 8573 0.5380 +830 8655 0.5850 +830 8729 0.5630 +830 8766 0.5640 +830 8976 0.5050 +830 9125 0.4480 +830 9371 0.5000 +830 9382 0.5040 +830 9493 0.6520 +830 9499 0.4180 +830 9527 0.5090 +830 9570 0.5730 +830 9750 0.5680 +830 9897 0.7500 +830 9948 0.6640 +830 9973 0.4320 +830 10092 0.6290 +830 10093 0.5760 +830 10094 0.8030 +830 10095 0.5090 +830 10096 0.6620 +830 10097 0.7430 +830 10109 0.8130 +830 10112 0.6340 +830 10120 0.8800 +830 10121 0.9690 +830 10466 0.5530 +830 10529 0.4330 +830 10540 0.9880 +830 10671 0.9460 +830 10728 0.4630 +830 11004 0.5130 +830 11034 0.5460 +830 11070 0.5320 +830 11076 0.9020 +830 11078 0.5490 +830 11127 0.5030 +830 11258 0.8840 +830 11311 0.4770 +830 11333 0.4190 +830 11344 0.8100 +830 22796 0.5210 +830 22920 0.5040 +830 22930 0.5070 +830 22931 0.5950 +830 23019 0.5820 +830 23136 0.5080 +830 23299 0.5840 +830 23325 0.7700 +830 23607 0.9120 +830 23616 0.4620 +830 24137 0.4990 +830 25782 0.5070 +830 25794 0.5300 +830 25839 0.5070 +830 25861 0.5380 +830 25904 0.4750 +830 26153 0.4990 +830 26228 0.6120 +830 26286 0.5110 +830 28988 0.4310 +830 29127 0.5450 +830 29765 0.8880 +830 29766 0.8440 +830 29767 0.7940 +830 29883 0.7060 +830 30011 0.8670 +830 51019 0.6280 +830 51143 0.7220 +830 51164 0.9600 +830 51168 0.5290 +830 51177 0.4550 +830 51272 0.5200 +830 51560 0.5410 +830 51699 0.4250 +830 53405 0.5110 +830 53904 0.5610 +830 54443 0.4910 +830 55571 0.6180 +830 55604 0.9660 +830 55737 0.4350 +830 55738 0.5000 +830 55860 0.9800 +830 55930 0.5160 +830 56992 0.5000 +830 57175 0.4430 +830 57180 0.8440 +830 57472 0.6180 +830 57482 0.6350 +830 57511 0.5250 +830 64431 0.4150 +830 64689 0.4990 +830 64787 0.5930 +830 64837 0.5290 +830 81873 0.4640 +830 81930 0.5120 +830 83548 0.5030 +830 83715 0.5780 +830 83987 0.5270 +830 84364 0.5040 +830 84516 0.9670 +830 84643 0.5340 +830 84665 0.6700 +830 85379 0.4150 +830 85456 0.6810 +830 85477 0.6240 +830 89953 0.5320 +830 91949 0.5060 +830 92241 0.7470 +830 93661 0.9090 +830 116985 0.4520 +830 129446 0.5400 +830 136319 0.8990 +830 140469 0.5760 +830 140735 0.5880 +830 146206 0.6800 +830 147700 0.5250 +830 246175 0.6010 +830 253725 0.7660 +830 285643 0.4990 +830 286262 0.5650 +830 339768 0.5550 +830 345456 0.6600 +830 375189 0.6620 +830 387680 0.7570 +830 389207 0.4990 +830 442721 0.4370 +830 494513 0.4990 +830 643226 0.4990 +830 653857 0.8520 +830 100287171 0.5590 +831 836 0.5340 +831 1020 0.6840 +831 1145 0.5500 +831 1146 0.4930 +831 1462 0.5770 +831 1520 0.4910 +831 1938 0.4620 +831 2342 0.6080 +831 3920 0.4550 +831 4012 0.5050 +831 5106 0.4240 +831 6622 0.4530 +831 6650 0.6620 +831 6709 0.7900 +831 6855 0.4220 +831 7094 0.7840 +831 7174 0.4300 +831 7273 0.4510 +831 8851 0.5830 +831 9365 0.4560 +831 9892 0.6490 +831 10753 0.7680 +831 11131 0.7270 +831 11132 0.7470 +831 23098 0.5280 +831 23371 0.5810 +831 23473 0.7560 +831 51752 0.6220 +831 64167 0.6820 +831 79747 0.4220 +831 83660 0.4490 +831 84290 0.9290 +831 92291 0.6560 +831 114907 0.4340 +831 147968 0.6630 +831 284217 0.4550 +831 388743 0.9550 +831 440854 0.7440 +832 857 0.4380 +832 950 0.4630 +832 989 0.5320 +832 1025 0.4230 +832 1062 0.5040 +832 1072 0.7640 +832 1073 0.6640 +832 1080 0.4510 +832 1180 0.4560 +832 1211 0.4150 +832 1627 0.8290 +832 1639 0.9880 +832 1729 0.5500 +832 1730 0.4480 +832 1778 0.9640 +832 1780 0.5440 +832 1781 0.9130 +832 1783 0.9650 +832 1906 0.4240 +832 1938 0.5860 +832 2011 0.4730 +832 2036 0.5070 +832 2059 0.6610 +832 2288 0.4050 +832 2316 0.4380 +832 2539 0.5610 +832 2589 0.5060 +832 2590 0.5040 +832 2801 0.5430 +832 2804 0.5610 +832 2934 0.4930 +832 3312 0.5460 +832 3320 0.5800 +832 3326 0.5620 +832 3705 0.4550 +832 3796 0.5800 +832 3797 0.4990 +832 3798 0.4990 +832 3799 0.5060 +832 3831 0.5180 +832 3832 0.4990 +832 3835 0.5670 +832 3936 0.6870 +832 4001 0.4110 +832 4154 0.5650 +832 4162 0.4030 +832 4306 0.5110 +832 4430 0.4660 +832 4478 0.6120 +832 4627 0.7910 +832 4628 0.5130 +832 4637 0.4530 +832 4641 0.5850 +832 4647 0.5870 +832 4659 0.5180 +832 4735 0.4350 +832 4848 0.6380 +832 4849 0.5540 +832 5048 0.6660 +832 5216 0.6440 +832 5357 0.8280 +832 5358 0.6850 +832 5361 0.4050 +832 5499 0.4740 +832 5501 0.4660 +832 5705 0.4030 +832 5720 0.4130 +832 5756 0.9840 +832 5870 0.5490 +832 5962 0.5900 +832 6161 0.5050 +832 6709 0.6530 +832 6711 0.7740 +832 6811 0.5070 +832 6840 0.5030 +832 7111 0.4160 +832 7112 0.5080 +832 7168 0.4840 +832 7169 0.4630 +832 7170 0.5220 +832 7171 0.4470 +832 7408 0.4340 +832 7430 0.6140 +832 7454 0.5260 +832 7472 0.5650 +832 7529 0.4140 +832 7531 0.4160 +832 7532 0.4780 +832 7534 0.4030 +832 7879 0.7780 +832 8573 0.5410 +832 8622 0.8520 +832 8655 0.6700 +832 8663 0.4750 +832 8669 0.4560 +832 8729 0.5070 +832 8773 0.4160 +832 8775 0.4890 +832 8776 0.4640 +832 8976 0.4650 +832 9125 0.5040 +832 9337 0.4550 +832 9341 0.4660 +832 9371 0.5000 +832 9382 0.5070 +832 9493 0.6980 +832 9497 0.4010 +832 9527 0.5080 +832 9531 0.4140 +832 9570 0.5680 +832 9590 0.4790 +832 9750 0.5770 +832 9816 0.4860 +832 9897 0.9790 +832 9948 0.9410 +832 10044 0.5020 +832 10092 0.6590 +832 10093 0.5710 +832 10094 0.8630 +832 10095 0.6140 +832 10096 0.7740 +832 10097 0.6690 +832 10109 0.8800 +832 10112 0.6300 +832 10120 0.9030 +832 10121 0.9900 +832 10160 0.4150 +832 10409 0.4590 +832 10452 0.4190 +832 10466 0.5060 +832 10486 0.5150 +832 10487 0.7300 +832 10540 0.9920 +832 10551 0.5790 +832 10552 0.4700 +832 10658 0.4110 +832 10671 0.9800 +832 10728 0.4160 +832 10880 0.4610 +832 10960 0.4170 +832 11004 0.5000 +832 11034 0.6040 +832 11070 0.5040 +832 11078 0.5150 +832 11127 0.5090 +832 11258 0.9500 +832 11311 0.7980 +832 11344 0.8770 +832 22796 0.5070 +832 22919 0.4160 +832 22920 0.4990 +832 22930 0.5130 +832 22931 0.5060 +832 23019 0.7080 +832 23136 0.5160 +832 23299 0.6380 +832 23307 0.5430 +832 23325 0.9640 +832 23344 0.4260 +832 23363 0.4570 +832 23406 0.5410 +832 23603 0.6220 +832 23607 0.8960 +832 23616 0.4320 +832 24137 0.5000 +832 25782 0.5070 +832 25794 0.5310 +832 25839 0.5080 +832 25861 0.6400 +832 25904 0.5630 +832 26049 0.4630 +832 26064 0.4090 +832 26092 0.4050 +832 26153 0.4990 +832 26228 0.5950 +832 26286 0.6030 +832 28988 0.6750 +832 29127 0.5790 +832 29765 0.6040 +832 29766 0.5940 +832 29883 0.5490 +832 29984 0.5890 +832 30011 0.8820 +832 51019 0.9430 +832 51143 0.6810 +832 51164 0.9920 +832 51168 0.6130 +832 51177 0.5000 +832 51272 0.5000 +832 51366 0.4260 +832 51560 0.5340 +832 51562 0.4660 +832 53405 0.5110 +832 53904 0.5990 +832 54443 0.4690 +832 54504 0.5010 +832 54509 0.5990 +832 55114 0.4250 +832 55571 0.6920 +832 55604 0.9370 +832 55738 0.5070 +832 55752 0.5060 +832 55860 0.9750 +832 55930 0.5730 +832 55971 0.5400 +832 56257 0.4120 +832 56924 0.4210 +832 56992 0.5040 +832 57175 0.4730 +832 57180 0.7080 +832 57472 0.5460 +832 57482 0.4820 +832 57511 0.5060 +832 63893 0.4220 +832 64689 0.5020 +832 64787 0.7590 +832 64837 0.5180 +832 65124 0.5420 +832 79180 0.5770 +832 80115 0.4870 +832 80301 0.7780 +832 80728 0.4360 +832 81624 0.4470 +832 81873 0.5700 +832 81930 0.4990 +832 83548 0.5060 +832 83658 0.9020 +832 83715 0.6550 +832 84364 0.5360 +832 84376 0.5220 +832 84516 0.9660 +832 84517 0.4100 +832 84643 0.4990 +832 85456 0.6730 +832 85477 0.5160 +832 89953 0.5180 +832 91949 0.5130 +832 92241 0.7810 +832 92558 0.9350 +832 93661 0.9900 +832 113177 0.4980 +832 116985 0.4640 +832 125988 0.4580 +832 129446 0.5330 +832 136319 0.9450 +832 140465 0.4060 +832 140469 0.5930 +832 140735 0.6440 +832 144402 0.4250 +832 146206 0.8330 +832 147700 0.5140 +832 151306 0.4630 +832 203068 0.4630 +832 246175 0.5890 +832 253725 0.9720 +832 285643 0.4990 +832 286262 0.4990 +832 339768 0.6910 +832 345456 0.4460 +832 345651 0.4830 +832 375189 0.5590 +832 387680 0.9370 +832 389207 0.5060 +832 445582 0.6140 +832 494513 0.4990 +832 643226 0.5200 +832 653857 0.6620 +832 728378 0.4860 +832 100287171 0.9490 +832 100287284 0.4450 +833 875 0.6730 +833 1491 0.6460 +833 1639 0.5110 +833 1803 0.4120 +833 1915 0.8610 +833 1917 0.7320 +833 1936 0.8060 +833 1937 0.9410 +833 2058 0.8490 +833 2177 0.4100 +833 2182 0.4600 +833 2193 0.5410 +833 2335 0.4990 +833 2617 0.8940 +833 2618 0.4790 +833 2821 0.4200 +833 2879 0.5160 +833 2885 0.5010 +833 3035 0.8210 +833 3092 0.4990 +833 3281 0.4120 +833 3376 0.9050 +833 3396 0.4050 +833 3658 0.4520 +833 3667 0.5040 +833 3735 0.8170 +833 3799 0.5080 +833 3831 0.5290 +833 4008 0.5000 +833 4141 0.8900 +833 4302 0.7320 +833 4357 0.5940 +833 4478 0.5730 +833 4528 0.4070 +833 4677 0.8350 +833 4869 0.5410 +833 5188 0.5910 +833 5295 0.5000 +833 5335 0.5000 +833 5435 0.4240 +833 5495 0.5410 +833 5573 0.5220 +833 5805 0.5640 +833 5859 0.8380 +833 5903 0.6630 +833 5917 0.8050 +833 6132 0.4400 +833 6203 0.5260 +833 6205 0.4070 +833 6238 0.5100 +833 6301 0.9130 +833 6389 0.4160 +833 6464 0.5070 +833 6470 0.4360 +833 6472 0.4520 +833 6509 0.4250 +833 6510 0.4330 +833 6520 0.4310 +833 6729 0.4170 +833 6774 0.5160 +833 6801 0.5040 +833 6821 0.4730 +833 6894 0.5010 +833 6897 0.8170 +833 7097 0.4120 +833 7167 0.6690 +833 7170 0.6130 +833 7171 0.6000 +833 7175 0.5040 +833 7263 0.4290 +833 7284 0.4510 +833 7407 0.8720 +833 7414 0.5110 +833 7453 0.8290 +833 8031 0.4300 +833 8496 0.5260 +833 8565 0.8980 +833 8697 0.4090 +833 8833 0.4360 +833 8878 0.5800 +833 9060 0.6670 +833 9061 0.6790 +833 9255 0.5970 +833 9349 0.4370 +833 9451 0.5110 +833 9487 0.8740 +833 9553 0.4450 +833 9648 0.5350 +833 9669 0.5670 +833 9694 0.4390 +833 10056 0.5450 +833 10102 0.5610 +833 10162 0.5020 +833 10342 0.5800 +833 10352 0.8290 +833 10667 0.6560 +833 10817 0.4990 +833 10818 0.4990 +833 11212 0.5590 +833 11232 0.4470 +833 22872 0.6410 +833 23395 0.9230 +833 23438 0.7930 +833 23657 0.4770 +833 25973 0.9000 +833 27102 0.4320 +833 27436 0.5650 +833 29789 0.4020 +833 51067 0.8370 +833 51095 0.5000 +833 51520 0.9500 +833 53335 0.4990 +833 54802 0.4380 +833 54938 0.8810 +833 55157 0.5770 +833 55178 0.5010 +833 55699 0.9010 +833 55847 0.4400 +833 57038 0.8590 +833 57176 0.8780 +833 57448 0.5180 +833 57470 0.4320 +833 57505 0.7680 +833 57761 0.4290 +833 58472 0.4660 +833 60678 0.5420 +833 64965 0.4070 +833 64968 0.4030 +833 79094 0.4530 +833 79587 0.9130 +833 79731 0.8330 +833 79922 0.4980 +833 80222 0.7930 +833 80304 0.4990 +833 80325 0.7880 +833 84464 0.4090 +833 84883 0.4150 +833 85476 0.4360 +833 90353 0.4100 +833 92399 0.5100 +833 92935 0.8270 +833 114879 0.4960 +833 121506 0.6220 +833 123263 0.5710 +833 123283 0.7920 +833 124454 0.8230 +833 257019 0.5070 +833 374395 0.4100 +833 374659 0.5170 +833 440275 0.5010 +833 440498 0.4270 +833 101927367 0.4390 +834 835 0.6850 +834 836 0.7090 +834 837 0.9960 +834 838 0.9980 +834 839 0.9220 +834 840 0.6960 +834 841 0.9990 +834 842 0.7120 +834 843 0.7250 +834 885 0.5020 +834 894 0.4260 +834 920 0.7150 +834 925 0.6440 +834 941 0.4850 +834 942 0.5860 +834 948 0.5530 +834 949 0.4890 +834 950 0.4990 +834 953 0.4950 +834 956 0.4120 +834 958 0.4870 +834 959 0.4230 +834 960 0.4560 +834 962 0.4160 +834 968 0.6150 +834 1051 0.4880 +834 1147 0.5080 +834 1234 0.5030 +834 1387 0.4760 +834 1401 0.5070 +834 1432 0.5620 +834 1435 0.5290 +834 1436 0.4350 +834 1437 0.5890 +834 1440 0.4360 +834 1475 0.7370 +834 1508 0.9170 +834 1509 0.4240 +834 1511 0.8770 +834 1513 0.5430 +834 1514 0.4160 +834 1520 0.7620 +834 1524 0.4480 +834 1536 0.6510 +834 1540 0.4060 +834 1649 0.4600 +834 1654 0.7750 +834 1677 0.4170 +834 1687 0.7470 +834 1728 0.4330 +834 1791 0.4530 +834 1956 0.5440 +834 1991 0.5280 +834 2026 0.4140 +834 2033 0.5010 +834 2081 0.5050 +834 2100 0.5490 +834 2180 0.5010 +834 2207 0.4660 +834 2209 0.4020 +834 2212 0.4570 +834 2213 0.4010 +834 2247 0.5220 +834 2335 0.4020 +834 2353 0.7400 +834 2475 0.4530 +834 2549 0.4720 +834 2597 0.6880 +834 2633 0.5780 +834 2634 0.6050 +834 2635 0.4990 +834 2670 0.4830 +834 2875 0.4250 +834 2877 0.4150 +834 2878 0.4100 +834 2879 0.4530 +834 2880 0.4100 +834 2882 0.4300 +834 2919 0.5780 +834 2920 0.4570 +834 2932 0.4030 +834 3001 0.4980 +834 3002 0.6610 +834 3091 0.5060 +834 3146 0.6870 +834 3162 0.5980 +834 3308 0.4180 +834 3309 0.4730 +834 3320 0.4090 +834 3326 0.4080 +834 3383 0.6500 +834 3394 0.4630 +834 3428 0.9480 +834 3439 0.5790 +834 3454 0.5530 +834 3456 0.7910 +834 3458 0.8930 +834 3459 0.4150 +834 3551 0.5490 +834 3552 0.9680 +834 3553 0.9990 +834 3554 0.8760 +834 3556 0.5510 +834 3557 0.7940 +834 3558 0.5290 +834 3565 0.6160 +834 3566 0.4840 +834 3567 0.4530 +834 3569 0.8810 +834 3574 0.4200 +834 3576 0.6680 +834 3579 0.4480 +834 3586 0.7240 +834 3587 0.4270 +834 3588 0.4020 +834 3594 0.5410 +834 3596 0.5470 +834 3600 0.5630 +834 3605 0.6350 +834 3606 0.9980 +834 3620 0.4360 +834 3627 0.6570 +834 3630 0.5320 +834 3654 0.6010 +834 3659 0.7840 +834 3661 0.6340 +834 3663 0.4160 +834 3665 0.5920 +834 3684 0.6610 +834 3687 0.5820 +834 3689 0.5070 +834 3716 0.4160 +834 3717 0.5300 +834 3725 0.5920 +834 3832 0.4400 +834 3916 0.4010 +834 3934 0.4210 +834 3952 0.4160 +834 3954 0.4220 +834 3958 0.4330 +834 3960 0.4490 +834 3965 0.4270 +834 4001 0.4210 +834 4088 0.7110 +834 4137 0.4810 +834 4170 0.5270 +834 4210 0.9990 +834 4217 0.5240 +834 4261 0.5120 +834 4283 0.6740 +834 4318 0.5680 +834 4332 0.5150 +834 4353 0.5810 +834 4360 0.4740 +834 4599 0.5210 +834 4600 0.4100 +834 4671 0.9790 +834 4688 0.4780 +834 4689 0.4060 +834 4780 0.6440 +834 4790 0.8260 +834 4792 0.6810 +834 4843 0.4280 +834 4938 0.4410 +834 4939 0.4070 +834 5025 0.4120 +834 5027 0.7930 +834 5029 0.4080 +834 5054 0.6720 +834 5058 0.4770 +834 5071 0.4100 +834 5104 0.7580 +834 5122 0.4060 +834 5175 0.4340 +834 5269 0.7510 +834 5272 0.7920 +834 5298 0.4650 +834 5327 0.6410 +834 5328 0.6420 +834 5465 0.4060 +834 5468 0.5180 +834 5551 0.4870 +834 5595 0.6900 +834 5599 0.4580 +834 5601 0.5560 +834 5610 0.6100 +834 5657 0.6310 +834 5664 0.4770 +834 5696 0.4840 +834 5698 0.4990 +834 5728 0.5940 +834 5742 0.5260 +834 5743 0.6310 +834 5770 0.4110 +834 5788 0.6140 +834 5880 0.4290 +834 5970 0.4520 +834 5971 0.4120 +834 6041 0.4590 +834 6280 0.4420 +834 6283 0.4300 +834 6347 0.7070 +834 6348 0.5700 +834 6351 0.4860 +834 6364 0.4330 +834 6373 0.4120 +834 6387 0.4060 +834 6401 0.4400 +834 6402 0.4590 +834 6403 0.4310 +834 6622 0.4490 +834 6647 0.4190 +834 6648 0.4520 +834 6662 0.4380 +834 6688 0.4990 +834 6714 0.4560 +834 6772 0.7020 +834 6773 0.4480 +834 6774 0.6090 +834 6776 0.5820 +834 6778 0.4470 +834 6850 0.7910 +834 7040 0.5700 +834 7082 0.4160 +834 7096 0.7260 +834 7097 0.8090 +834 7098 0.7260 +834 7099 0.9160 +834 7100 0.6580 +834 7124 0.9040 +834 7128 0.4660 +834 7132 0.7400 +834 7133 0.4390 +834 7157 0.8760 +834 7161 0.5860 +834 7186 0.5510 +834 7187 0.4720 +834 7189 0.6280 +834 7295 0.5750 +834 7305 0.4370 +834 7412 0.5060 +834 7448 0.5970 +834 7494 0.4190 +834 7498 0.4520 +834 7837 0.6280 +834 7850 0.5280 +834 7852 0.4350 +834 8452 0.6120 +834 8517 0.4260 +834 8626 0.5580 +834 8678 0.6130 +834 8717 0.6870 +834 8733 0.5400 +834 8737 0.8930 +834 8738 0.6260 +834 8743 0.6510 +834 8767 0.8490 +834 8772 0.9540 +834 8795 0.4450 +834 8797 0.4040 +834 8807 0.5340 +834 8808 0.4400 +834 8809 0.5530 +834 8837 0.9400 +834 8878 0.4510 +834 8915 0.4710 +834 8988 0.6810 +834 9021 0.4400 +834 9034 0.4090 +834 9051 0.6950 +834 9169 0.7060 +834 9332 0.4730 +834 9447 0.9990 +834 9451 0.4510 +834 9474 0.8050 +834 9636 0.5040 +834 9641 0.4870 +834 9817 0.7090 +834 9927 0.4290 +834 9971 0.6150 +834 9978 0.6120 +834 9994 0.4470 +834 10010 0.4030 +834 10018 0.4230 +834 10026 0.5450 +834 10059 0.4380 +834 10062 0.4790 +834 10068 0.5820 +834 10134 0.4020 +834 10346 0.4240 +834 10379 0.4500 +834 10392 0.9740 +834 10533 0.4940 +834 10616 0.4540 +834 10628 0.8670 +834 10673 0.5060 +834 10892 0.4010 +834 11035 0.9250 +834 11127 0.4640 +834 11202 0.7220 +834 11213 0.4630 +834 22861 0.9990 +834 22900 0.9970 +834 22926 0.4670 +834 23411 0.5440 +834 23581 0.4500 +834 23586 0.8950 +834 23643 0.6510 +834 24145 0.8360 +834 26003 0.5010 +834 26253 0.4440 +834 26525 0.4630 +834 26999 0.4040 +834 27178 0.9470 +834 29108 0.9990 +834 29110 0.6020 +834 29126 0.4460 +834 50507 0.4640 +834 50616 0.5100 +834 50852 0.4300 +834 50943 0.4380 +834 51135 0.5420 +834 51284 0.6700 +834 51311 0.6430 +834 51604 0.5400 +834 51742 0.4250 +834 54106 0.7710 +834 54205 0.7800 +834 54210 0.4450 +834 54734 0.5170 +834 54878 0.4100 +834 55054 0.6370 +834 55072 0.4570 +834 55367 0.5910 +834 55655 0.9760 +834 55697 0.4220 +834 55876 0.5970 +834 56169 0.5820 +834 56300 0.4610 +834 56776 0.4220 +834 56919 0.9340 +834 57506 0.6050 +834 58472 0.4080 +834 58484 0.9990 +834 59082 0.9810 +834 59272 0.4410 +834 59341 0.4870 +834 64108 0.4150 +834 64127 0.9230 +834 64135 0.6750 +834 64170 0.8140 +834 64581 0.6160 +834 65018 0.4470 +834 79132 0.7320 +834 79671 0.5250 +834 79792 0.9990 +834 80013 0.7130 +834 81030 0.5030 +834 81543 0.8580 +834 81631 0.4790 +834 81858 0.4590 +834 84166 0.7840 +834 84290 0.5600 +834 84639 0.4810 +834 84674 0.6310 +834 85480 0.4300 +834 90865 0.9870 +834 91662 0.9890 +834 93978 0.4320 +834 94005 0.5400 +834 114548 0.9990 +834 114609 0.7460 +834 115004 0.6430 +834 115361 0.4170 +834 115362 0.5780 +834 126204 0.6380 +834 126205 0.5850 +834 128869 0.5400 +834 137902 0.6270 +834 140609 0.9390 +834 147945 0.9700 +834 149628 0.4420 +834 171389 0.9990 +834 197259 0.7520 +834 197358 0.7030 +834 199713 0.9150 +834 204801 0.5710 +834 219285 0.4400 +834 257202 0.4100 +834 260434 0.8520 +834 284110 0.7730 +834 338321 0.9810 +834 338322 0.7480 +834 338323 0.6820 +834 340061 0.5290 +834 377841 0.4160 +834 493869 0.4140 +834 494513 0.5390 +834 653361 0.4560 +834 100506658 0.4280 +835 836 0.9000 +835 837 0.5340 +835 839 0.6540 +835 840 0.7500 +835 841 0.8930 +835 842 0.7490 +835 843 0.6940 +835 891 0.4330 +835 896 0.6370 +835 960 0.4880 +835 983 0.4180 +835 1017 0.4520 +835 1111 0.5180 +835 1676 0.5180 +835 1677 0.4730 +835 2021 0.5160 +835 2064 0.4270 +835 2081 0.5400 +835 2099 0.5010 +835 2491 0.4600 +835 2553 0.9030 +835 2597 0.4310 +835 2802 0.4950 +835 2937 0.4080 +835 3002 0.4930 +835 3190 0.4030 +835 3309 0.4010 +835 3553 0.4100 +835 3662 0.4260 +835 3725 0.4410 +835 4170 0.6000 +835 4193 0.6210 +835 4210 0.5350 +835 4671 0.5180 +835 4803 0.6290 +835 4804 0.5690 +835 4869 0.4340 +835 4982 0.4620 +835 5366 0.4580 +835 5610 0.5040 +835 5663 0.4970 +835 6427 0.4030 +835 6428 0.5100 +835 7124 0.4990 +835 7132 0.8400 +835 7157 0.7940 +835 7185 0.4880 +835 7186 0.5490 +835 7187 0.4680 +835 7280 0.4280 +835 7412 0.5520 +835 7494 0.5100 +835 7531 0.5540 +835 7532 0.9070 +835 7534 0.5750 +835 7706 0.4130 +835 7837 0.4100 +835 8424 0.4560 +835 8678 0.4100 +835 8717 0.7940 +835 8733 0.5430 +835 8737 0.6370 +835 8738 0.9990 +835 8743 0.4070 +835 8767 0.6040 +835 8772 0.7750 +835 8795 0.4770 +835 8797 0.4190 +835 8996 0.5580 +835 9447 0.5540 +835 9474 0.4110 +835 10017 0.4110 +835 10018 0.5290 +835 10026 0.5620 +835 10181 0.4470 +835 10392 0.7310 +835 11035 0.6040 +835 22861 0.8250 +835 22900 0.4710 +835 22926 0.4510 +835 23379 0.4140 +835 23421 0.6610 +835 23581 0.4040 +835 26999 0.5600 +835 27018 0.7640 +835 27429 0.7110 +835 29108 0.5820 +835 51176 0.4020 +835 51237 0.6990 +835 51604 0.5430 +835 54205 0.8470 +835 55040 0.5420 +835 55367 0.9990 +835 55655 0.4490 +835 57448 0.4790 +835 58484 0.5910 +835 79370 0.5040 +835 79444 0.4690 +835 79680 0.4510 +835 79755 0.4520 +835 84290 0.5570 +835 94005 0.5420 +835 114548 0.7000 +835 121441 0.6810 +835 128869 0.5400 +835 135935 0.5400 +835 137902 0.4050 +835 197259 0.4230 +835 203068 0.4480 +836 839 0.9550 +836 840 0.9500 +836 841 0.9990 +836 842 0.9990 +836 843 0.9690 +836 857 0.4860 +836 860 0.5210 +836 885 0.8580 +836 891 0.7980 +836 894 0.5290 +836 896 0.5260 +836 898 0.5770 +836 900 0.4070 +836 920 0.7720 +836 925 0.6710 +836 928 0.4440 +836 930 0.5230 +836 940 0.4320 +836 941 0.4620 +836 942 0.4920 +836 947 0.6240 +836 948 0.4750 +836 949 0.4590 +836 950 0.4680 +836 952 0.4210 +836 958 0.5150 +836 959 0.4210 +836 960 0.6530 +836 967 0.5210 +836 968 0.6320 +836 969 0.4270 +836 975 0.4060 +836 983 0.8620 +836 993 0.4720 +836 994 0.4720 +836 995 0.6040 +836 999 0.9560 +836 1000 0.6640 +836 1003 0.4640 +836 1015 0.4480 +836 1017 0.8290 +836 1019 0.7500 +836 1020 0.6910 +836 1021 0.6700 +836 1026 0.9960 +836 1027 0.7210 +836 1029 0.6150 +836 1033 0.5340 +836 1103 0.4320 +836 1111 0.7640 +836 1147 0.6690 +836 1149 0.5540 +836 1191 0.4010 +836 1232 0.4630 +836 1234 0.5800 +836 1267 0.4870 +836 1270 0.5720 +836 1277 0.4550 +836 1327 0.7960 +836 1366 0.4730 +836 1385 0.6820 +836 1386 0.5640 +836 1398 0.4910 +836 1401 0.4180 +836 1410 0.8020 +836 1420 0.4750 +836 1429 0.4290 +836 1432 0.8170 +836 1435 0.4420 +836 1436 0.4260 +836 1437 0.5250 +836 1440 0.4430 +836 1471 0.4730 +836 1490 0.4960 +836 1493 0.4160 +836 1499 0.9650 +836 1506 0.5810 +836 1508 0.6310 +836 1509 0.5680 +836 1513 0.4130 +836 1514 0.4710 +836 1520 0.6200 +836 1535 0.4790 +836 1536 0.6200 +836 1540 0.4240 +836 1543 0.4460 +836 1571 0.5150 +836 1576 0.5650 +836 1588 0.4680 +836 1612 0.7170 +836 1613 0.6620 +836 1630 0.9320 +836 1636 0.4630 +836 1641 0.5610 +836 1647 0.5250 +836 1649 0.7340 +836 1676 0.9920 +836 1677 0.9780 +836 1687 0.9130 +836 1728 0.6450 +836 1742 0.6780 +836 1777 0.4830 +836 1786 0.4880 +836 1791 0.8820 +836 1803 0.4470 +836 1828 0.7970 +836 1829 0.7890 +836 1830 0.7960 +836 1832 0.8060 +836 1843 0.4110 +836 1869 0.6040 +836 1906 0.6800 +836 1938 0.4510 +836 1950 0.8010 +836 1956 0.7470 +836 1958 0.4810 +836 1965 0.6470 +836 1977 0.6050 +836 1978 0.5830 +836 1991 0.4850 +836 1994 0.4050 +836 1995 0.4160 +836 2017 0.7140 +836 2021 0.6940 +836 2022 0.4180 +836 2028 0.4870 +836 2033 0.4260 +836 2034 0.4870 +836 2056 0.5420 +836 2064 0.6870 +836 2065 0.4670 +836 2066 0.4070 +836 2081 0.7140 +836 2099 0.6920 +836 2100 0.5430 +836 2146 0.5190 +836 2149 0.5470 +836 2212 0.5840 +836 2213 0.5680 +836 2247 0.6710 +836 2248 0.4730 +836 2249 0.4940 +836 2250 0.4790 +836 2251 0.4780 +836 2252 0.5030 +836 2253 0.4970 +836 2254 0.4900 +836 2255 0.5000 +836 2258 0.4840 +836 2260 0.4150 +836 2290 0.4510 +836 2305 0.4570 +836 2308 0.6420 +836 2309 0.7760 +836 2317 0.4890 +836 2321 0.4520 +836 2322 0.4440 +836 2335 0.6120 +836 2339 0.7620 +836 2353 0.7490 +836 2475 0.7230 +836 2492 0.4420 +836 2534 0.6330 +836 2547 0.6480 +836 2596 0.4860 +836 2597 0.8900 +836 2620 0.8360 +836 2623 0.4950 +836 2641 0.5120 +836 2668 0.5110 +836 2670 0.8080 +836 2674 0.4400 +836 2697 0.5130 +836 2729 0.4670 +836 2735 0.4730 +836 2740 0.4250 +836 2745 0.4370 +836 2752 0.4470 +836 2875 0.6990 +836 2877 0.7690 +836 2878 0.7410 +836 2879 0.5390 +836 2880 0.7660 +836 2882 0.7730 +836 2885 0.4110 +836 2896 0.5250 +836 2904 0.4250 +836 2908 0.6170 +836 2919 0.4710 +836 2931 0.5010 +836 2932 0.7470 +836 2934 0.9070 +836 2936 0.5930 +836 2937 0.7220 +836 3001 0.4180 +836 3002 0.9860 +836 3014 0.6960 +836 3021 0.7300 +836 3059 0.7730 +836 3064 0.7500 +836 3065 0.7380 +836 3066 0.4830 +836 3082 0.5190 +836 3091 0.7660 +836 3092 0.9050 +836 3099 0.4480 +836 3146 0.7550 +836 3156 0.5070 +836 3162 0.8060 +836 3172 0.4740 +836 3205 0.4850 +836 3251 0.4530 +836 3265 0.4800 +836 3297 0.4600 +836 3303 0.5530 +836 3304 0.6630 +836 3308 0.9060 +836 3309 0.7930 +836 3312 0.4800 +836 3315 0.8670 +836 3316 0.8180 +836 3320 0.8780 +836 3326 0.8580 +836 3329 0.8060 +836 3336 0.6940 +836 3383 0.6350 +836 3439 0.5060 +836 3454 0.4170 +836 3456 0.5160 +836 3458 0.8250 +836 3479 0.6800 +836 3480 0.6310 +836 3481 0.6480 +836 3487 0.4420 +836 3551 0.6310 +836 3552 0.7250 +836 3553 0.8990 +836 3558 0.5960 +836 3562 0.4290 +836 3565 0.5990 +836 3569 0.8810 +836 3574 0.4120 +836 3576 0.7520 +836 3586 0.7860 +836 3594 0.4560 +836 3596 0.4410 +836 3600 0.4390 +836 3603 0.8010 +836 3605 0.5540 +836 3606 0.6390 +836 3627 0.5600 +836 3630 0.7610 +836 3654 0.6160 +836 3655 0.4040 +836 3659 0.6560 +836 3661 0.5030 +836 3667 0.4910 +836 3684 0.6080 +836 3687 0.4500 +836 3688 0.5080 +836 3708 0.4510 +836 3710 0.4380 +836 3716 0.5340 +836 3717 0.6910 +836 3718 0.4110 +836 3725 0.8090 +836 3767 0.7110 +836 3791 0.5980 +836 3815 0.5630 +836 3836 0.5940 +836 3837 0.5610 +836 3845 0.6450 +836 3856 0.4030 +836 3875 0.5430 +836 3880 0.4010 +836 3916 0.5620 +836 3920 0.4710 +836 3934 0.4970 +836 3952 0.6390 +836 3958 0.4610 +836 3960 0.4830 +836 4000 0.5340 +836 4001 0.6840 +836 4015 0.5440 +836 4067 0.4200 +836 4072 0.4550 +836 4087 0.6890 +836 4088 0.6750 +836 4089 0.5170 +836 4090 0.4200 +836 4092 0.4120 +836 4129 0.4440 +836 4130 0.6490 +836 4131 0.6020 +836 4133 0.5450 +836 4137 0.9800 +836 4155 0.6010 +836 4170 0.9110 +836 4193 0.9660 +836 4194 0.4760 +836 4210 0.5030 +836 4214 0.9340 +836 4217 0.6990 +836 4233 0.7080 +836 4255 0.4460 +836 4283 0.6050 +836 4288 0.5410 +836 4292 0.5110 +836 4303 0.4150 +836 4312 0.4920 +836 4313 0.7130 +836 4314 0.5750 +836 4316 0.4760 +836 4318 0.8060 +836 4322 0.5920 +836 4353 0.6800 +836 4360 0.4370 +836 4363 0.4430 +836 4493 0.4330 +836 4594 0.6090 +836 4609 0.8810 +836 4613 0.4950 +836 4671 0.7670 +836 4772 0.4060 +836 4780 0.7170 +836 4790 0.8210 +836 4791 0.4410 +836 4792 0.7400 +836 4802 0.4330 +836 4803 0.8580 +836 4804 0.8200 +836 4836 0.4360 +836 4842 0.4860 +836 4843 0.5370 +836 4846 0.6040 +836 4851 0.5760 +836 4853 0.4040 +836 4868 0.4200 +836 4869 0.6560 +836 4878 0.4490 +836 4893 0.4850 +836 4904 0.5760 +836 4914 0.5220 +836 4915 0.5300 +836 4925 0.4220 +836 4976 0.4070 +836 4988 0.4950 +836 5052 0.4340 +836 5054 0.5270 +836 5058 0.9220 +836 5062 0.9540 +836 5071 0.5590 +836 5076 0.4500 +836 5080 0.6440 +836 5122 0.5980 +836 5156 0.4750 +836 5159 0.4920 +836 5170 0.5280 +836 5175 0.7050 +836 5241 0.5180 +836 5243 0.5780 +836 5245 0.5960 +836 5265 0.5710 +836 5271 0.5260 +836 5289 0.4890 +836 5290 0.5560 +836 5295 0.4050 +836 5315 0.4780 +836 5317 0.7580 +836 5327 0.4440 +836 5328 0.4180 +836 5347 0.6420 +836 5355 0.4260 +836 5366 0.7430 +836 5457 0.4060 +836 5460 0.5980 +836 5465 0.5720 +836 5467 0.4070 +836 5468 0.6940 +836 5506 0.4360 +836 5551 0.5270 +836 5566 0.5370 +836 5567 0.5440 +836 5568 0.5320 +836 5578 0.9480 +836 5579 0.9310 +836 5580 0.9270 +836 5582 0.9210 +836 5585 0.4290 +836 5588 0.7820 +836 5591 0.7320 +836 5594 0.9610 +836 5595 0.9850 +836 5598 0.4330 +836 5599 0.9430 +836 5600 0.6740 +836 5601 0.7750 +836 5603 0.4840 +836 5604 0.6430 +836 5606 0.4440 +836 5610 0.5920 +836 5621 0.4880 +836 5657 0.4310 +836 5663 0.7180 +836 5664 0.6500 +836 5727 0.4010 +836 5728 0.7480 +836 5742 0.5470 +836 5743 0.8650 +836 5747 0.6220 +836 5757 0.5740 +836 5770 0.4080 +836 5781 0.4020 +836 5788 0.6490 +836 5816 0.4480 +836 5829 0.4250 +836 5831 0.4380 +836 5834 0.4540 +836 5866 0.5090 +836 5888 0.6510 +836 5894 0.5280 +836 5925 0.7510 +836 5966 0.5160 +836 5970 0.6070 +836 5971 0.4780 +836 5972 0.4740 +836 5979 0.5180 +836 6035 0.4020 +836 6093 0.9590 +836 6193 0.4980 +836 6194 0.4450 +836 6195 0.4940 +836 6198 0.7370 +836 6199 0.4820 +836 6275 0.4160 +836 6285 0.5130 +836 6300 0.4810 +836 6311 0.4010 +836 6314 0.4620 +836 6347 0.6540 +836 6348 0.4460 +836 6382 0.4300 +836 6387 0.5430 +836 6391 0.5430 +836 6401 0.4600 +836 6402 0.4290 +836 6403 0.4390 +836 6416 0.4800 +836 6469 0.7000 +836 6472 0.4590 +836 6502 0.7350 +836 6506 0.5810 +836 6513 0.4560 +836 6517 0.4330 +836 6591 0.5270 +836 6609 0.5720 +836 6615 0.7340 +836 6620 0.4300 +836 6622 0.6870 +836 6647 0.6240 +836 6648 0.6530 +836 6657 0.6230 +836 6662 0.5240 +836 6667 0.5690 +836 6696 0.5980 +836 6708 0.9130 +836 6709 0.9720 +836 6714 0.6850 +836 6720 0.4710 +836 6721 0.5140 +836 6772 0.7800 +836 6774 0.8040 +836 6776 0.5710 +836 6777 0.5610 +836 6788 0.9460 +836 6789 0.9500 +836 6790 0.4400 +836 6794 0.4580 +836 6850 0.4350 +836 6853 0.4240 +836 6855 0.5750 +836 6868 0.4130 +836 6885 0.4170 +836 6908 0.4380 +836 7015 0.4680 +836 7019 0.5320 +836 7037 0.4530 +836 7040 0.7060 +836 7046 0.4660 +836 7048 0.4160 +836 7054 0.7090 +836 7057 0.4180 +836 7070 0.4990 +836 7076 0.5220 +836 7077 0.4360 +836 7082 0.8970 +836 7097 0.5940 +836 7098 0.5230 +836 7099 0.7400 +836 7122 0.4990 +836 7124 0.9390 +836 7132 0.8530 +836 7137 0.5060 +836 7150 0.4050 +836 7153 0.5550 +836 7157 0.9560 +836 7158 0.5010 +836 7159 0.5620 +836 7161 0.5570 +836 7168 0.4900 +836 7178 0.5950 +836 7184 0.5680 +836 7185 0.6550 +836 7186 0.5990 +836 7187 0.7100 +836 7189 0.5480 +836 7249 0.4720 +836 7291 0.4080 +836 7295 0.8570 +836 7296 0.4050 +836 7298 0.4640 +836 7316 0.5100 +836 7351 0.4840 +836 7412 0.5930 +836 7414 0.5840 +836 7416 0.7250 +836 7431 0.9080 +836 7442 0.4260 +836 7450 0.4720 +836 7465 0.4660 +836 7471 0.4440 +836 7474 0.4110 +836 7490 0.4040 +836 7494 0.7060 +836 7498 0.5440 +836 7520 0.6040 +836 7531 0.7100 +836 7704 0.4290 +836 7837 0.9180 +836 7852 0.6010 +836 7942 0.4100 +836 8220 0.4280 +836 8290 0.7320 +836 8312 0.4210 +836 8313 0.4280 +836 8320 0.4530 +836 8349 0.4180 +836 8356 0.7310 +836 8408 0.4640 +836 8428 0.7900 +836 8505 0.4780 +836 8517 0.4080 +836 8549 0.4820 +836 8600 0.6830 +836 8651 0.4100 +836 8662 0.4060 +836 8678 0.9250 +836 8717 0.7750 +836 8718 0.4220 +836 8733 0.5400 +836 8737 0.9080 +836 8739 0.5070 +836 8743 0.8350 +836 8772 0.9510 +836 8793 0.4470 +836 8794 0.4470 +836 8795 0.7820 +836 8797 0.7320 +836 8804 0.4790 +836 8817 0.4790 +836 8822 0.4710 +836 8823 0.4640 +836 8837 0.8630 +836 8842 0.5780 +836 8877 0.4560 +836 8878 0.6720 +836 8880 0.4910 +836 8900 0.6940 +836 8945 0.5070 +836 8988 0.8160 +836 9020 0.4700 +836 9021 0.4380 +836 9076 0.4670 +836 9131 0.6700 +836 9133 0.4580 +836 9134 0.4300 +836 9140 0.6080 +836 9191 0.6930 +836 9212 0.4770 +836 9314 0.4380 +836 9370 0.4650 +836 9397 0.7370 +836 9414 0.8060 +836 9429 0.5110 +836 9447 0.4740 +836 9451 0.7760 +836 9474 0.7870 +836 9475 0.4160 +836 9500 0.5660 +836 9529 0.4960 +836 9531 0.4750 +836 9656 0.4400 +836 9759 0.4250 +836 9776 0.4230 +836 9804 0.5870 +836 9817 0.6500 +836 9927 0.6310 +836 9978 0.4760 +836 10000 0.7650 +836 10013 0.4940 +836 10017 0.6130 +836 10018 0.8630 +836 10026 0.5500 +836 10038 0.9270 +836 10039 0.9200 +836 10059 0.6270 +836 10101 0.4160 +836 10105 0.5250 +836 10155 0.4110 +836 10215 0.6420 +836 10278 0.7390 +836 10381 0.4620 +836 10413 0.4380 +836 10533 0.8070 +836 10536 0.4320 +836 10594 0.4190 +836 10616 0.4730 +836 10628 0.4790 +836 10716 0.6050 +836 10728 0.5870 +836 10763 0.7370 +836 10848 0.4950 +836 10891 0.6130 +836 10912 0.5610 +836 10955 0.4380 +836 11035 0.6910 +836 11124 0.4820 +836 11200 0.6080 +836 11315 0.4400 +836 11334 0.5390 +836 11345 0.4280 +836 22861 0.4610 +836 22863 0.4050 +836 22926 0.7370 +836 22985 0.8870 +836 23151 0.4690 +836 23405 0.4960 +836 23410 0.5200 +836 23411 0.7250 +836 23435 0.4580 +836 23463 0.5600 +836 23474 0.4040 +836 23475 0.4670 +836 23476 0.4020 +836 23493 0.4100 +836 23566 0.4540 +836 23586 0.4250 +836 23604 0.6750 +836 23621 0.6700 +836 23710 0.4370 +836 24145 0.8190 +836 25828 0.6730 +836 26060 0.9230 +836 26281 0.4650 +836 26354 0.4920 +836 27006 0.4690 +836 27018 0.5500 +836 27032 0.4380 +836 27035 0.5470 +836 27113 0.7520 +836 27141 0.6010 +836 27161 0.6420 +836 27242 0.6300 +836 27250 0.4880 +836 27429 0.6210 +836 28988 0.8220 +836 29108 0.4570 +836 29110 0.5300 +836 29126 0.5240 +836 29944 0.4790 +836 50506 0.4360 +836 50507 0.6180 +836 50943 0.5220 +836 51024 0.5030 +836 51065 0.4470 +836 51074 0.4670 +836 51176 0.4070 +836 51284 0.4470 +836 51604 0.5400 +836 51684 0.4990 +836 51765 0.8570 +836 51806 0.5180 +836 53905 0.4590 +836 54106 0.4130 +836 54205 0.9970 +836 54739 0.5800 +836 55054 0.5840 +836 55081 0.9060 +836 55201 0.6000 +836 55269 0.4230 +836 55367 0.4210 +836 55536 0.4290 +836 55669 0.5720 +836 55876 0.4640 +836 56169 0.4360 +836 56666 0.4680 +836 56850 0.5480 +836 56947 0.4010 +836 57161 0.4320 +836 57215 0.5350 +836 57448 0.8550 +836 57521 0.4520 +836 58484 0.4550 +836 59272 0.4060 +836 60485 0.8040 +836 64422 0.5230 +836 64689 0.5680 +836 65018 0.5920 +836 79444 0.9920 +836 79680 0.6420 +836 79697 0.4040 +836 79792 0.9180 +836 79923 0.5610 +836 80012 0.5850 +836 80271 0.6500 +836 81631 0.7830 +836 81669 0.6270 +836 83891 0.4390 +836 84141 0.4230 +836 84260 0.6130 +836 84290 0.5690 +836 84557 0.6580 +836 84676 0.4020 +836 84701 0.4070 +836 84706 0.4910 +836 84823 0.6390 +836 84941 0.4090 +836 84971 0.5120 +836 85477 0.4570 +836 89780 0.6590 +836 90249 0.7850 +836 90268 0.4080 +836 90427 0.5010 +836 91860 0.5140 +836 94005 0.5400 +836 114548 0.6000 +836 114907 0.4820 +836 116143 0.4310 +836 116448 0.4330 +836 120892 0.5170 +836 128869 0.5400 +836 133482 0.5150 +836 137902 0.9180 +836 146713 0.7290 +836 150353 0.4740 +836 162989 0.4080 +836 163688 0.5090 +836 168400 0.4820 +836 197259 0.7180 +836 200539 0.4130 +836 203245 0.5290 +836 219699 0.8110 +836 253260 0.4290 +836 255738 0.5060 +836 257202 0.7660 +836 284110 0.5800 +836 414062 0.4100 +836 414899 0.4200 +836 440093 0.7300 +836 440686 0.7530 +836 441925 0.6020 +836 493869 0.7730 +836 653145 0.7330 +836 653361 0.4460 +836 653604 0.7530 +836 728378 0.5260 +836 100133941 0.4370 +836 100506658 0.9010 +836 100532731 0.4870 +837 838 0.9880 +837 840 0.4250 +837 841 0.7440 +837 843 0.7100 +837 920 0.4230 +837 925 0.4390 +837 942 0.4130 +837 1234 0.4330 +837 1649 0.6320 +837 1654 0.5510 +837 1687 0.6310 +837 1965 0.4170 +837 2081 0.6100 +837 2353 0.4730 +837 2633 0.4430 +837 2634 0.4340 +837 2635 0.4940 +837 3309 0.6340 +837 3428 0.4270 +837 3458 0.6450 +837 3552 0.6030 +837 3553 0.9850 +837 3569 0.6970 +837 3594 0.4200 +837 3606 0.9670 +837 3659 0.6850 +837 4170 0.4580 +837 4210 0.7220 +837 4217 0.4860 +837 4283 0.5280 +837 4671 0.7760 +837 5601 0.4670 +837 5610 0.4860 +837 6775 0.4370 +837 7097 0.4340 +837 7099 0.6720 +837 7124 0.5550 +837 7157 0.4380 +837 7184 0.4180 +837 7189 0.4500 +837 7494 0.5190 +837 8743 0.4340 +837 8767 0.4580 +837 8772 0.4300 +837 9169 0.8620 +837 9447 0.8760 +837 9451 0.4660 +837 9912 0.5280 +837 10392 0.7910 +837 11035 0.4340 +837 22861 0.8870 +837 22900 0.6400 +837 22926 0.6020 +837 23581 0.4450 +837 23643 0.5920 +837 27178 0.4810 +837 29108 0.8500 +837 29126 0.6430 +837 54205 0.5610 +837 55655 0.5100 +837 55876 0.5500 +837 56169 0.5730 +837 56919 0.5400 +837 58484 0.9390 +837 64127 0.5990 +837 79792 0.9980 +837 80380 0.4860 +837 84674 0.4240 +837 114548 0.8110 +837 171389 0.8700 +837 197259 0.5360 +837 199713 0.5220 +837 284110 0.5900 +837 338321 0.6300 +837 494513 0.4570 +838 841 0.4390 +838 1439 0.4520 +838 1508 0.5290 +838 1654 0.7300 +838 1687 0.6470 +838 2180 0.4390 +838 2879 0.4140 +838 3428 0.4550 +838 3552 0.6450 +838 3553 0.8500 +838 3554 0.5450 +838 3557 0.5850 +838 3569 0.6070 +838 3606 0.8060 +838 4210 0.9390 +838 4437 0.4650 +838 4671 0.8990 +838 4790 0.5210 +838 5027 0.5740 +838 5493 0.4650 +838 7048 0.4260 +838 7097 0.4090 +838 7099 0.6900 +838 7124 0.5230 +838 8517 0.4010 +838 8737 0.4020 +838 8764 0.4030 +838 8767 0.6470 +838 8772 0.4290 +838 8795 0.4950 +838 9169 0.6020 +838 9447 0.9890 +838 9912 0.6320 +838 10392 0.5650 +838 10628 0.4070 +838 11035 0.4890 +838 22861 0.9990 +838 22900 0.9890 +838 24145 0.5250 +838 26188 0.4300 +838 28990 0.4530 +838 29108 0.9990 +838 51311 0.4630 +838 51360 0.4030 +838 51535 0.7540 +838 55655 0.8690 +838 55876 0.6020 +838 56169 0.6080 +838 56919 0.9000 +838 58484 0.9770 +838 59082 0.6620 +838 64127 0.5830 +838 79792 0.9850 +838 81469 0.5000 +838 84166 0.4730 +838 91662 0.5730 +838 114548 0.9930 +838 115362 0.4030 +838 152138 0.4760 +838 171389 0.9680 +838 197259 0.4710 +838 199713 0.6580 +838 260434 0.5870 +838 284110 0.6240 +838 338321 0.9320 +838 338322 0.4280 +838 343169 0.4240 +838 441933 0.4380 +838 494513 0.5960 +839 840 0.8170 +839 841 0.9970 +839 842 0.9520 +839 843 0.7470 +839 983 0.5760 +839 1434 0.4140 +839 1508 0.5150 +839 1676 0.7090 +839 1677 0.7310 +839 1687 0.5060 +839 1718 0.4550 +839 2021 0.4400 +839 2121 0.5540 +839 2160 0.4100 +839 2597 0.4220 +839 3064 0.7370 +839 3553 0.4130 +839 4000 0.9400 +839 4001 0.9440 +839 4137 0.6640 +839 4170 0.5900 +839 4671 0.5370 +839 4738 0.4090 +839 5366 0.4570 +839 6304 0.8670 +839 7001 0.4920 +839 7124 0.5260 +839 7132 0.4500 +839 7157 0.8980 +839 7185 0.4490 +839 7431 0.7930 +839 7852 0.4690 +839 8678 0.4470 +839 8717 0.5030 +839 8733 0.5410 +839 8737 0.8000 +839 8738 0.4130 +839 8743 0.4260 +839 8772 0.6400 +839 8795 0.4490 +839 8797 0.4520 +839 8883 0.5010 +839 9039 0.4080 +839 9040 0.4470 +839 9169 0.5110 +839 9474 0.4240 +839 9530 0.4470 +839 10017 0.4160 +839 10018 0.4630 +839 10026 0.5500 +839 10572 0.4160 +839 11035 0.8640 +839 22861 0.4680 +839 23385 0.4220 +839 23621 0.5590 +839 26586 0.4320 +839 27242 0.8650 +839 29108 0.4670 +839 51604 0.5410 +839 54205 0.7460 +839 55054 0.4650 +839 55367 0.4220 +839 55876 0.4900 +839 56169 0.5050 +839 57448 0.4320 +839 79444 0.6770 +839 79792 0.5380 +839 81579 0.4520 +839 84290 0.5790 +839 84823 0.9420 +839 94005 0.5410 +839 114548 0.6040 +839 128869 0.5420 +839 197259 0.4370 +839 199713 0.4570 +839 284110 0.4780 +839 494513 0.4490 +840 841 0.9920 +840 842 0.9520 +840 843 0.9680 +840 885 0.4420 +840 891 0.6010 +840 898 0.4710 +840 983 0.4860 +840 1017 0.5390 +840 1019 0.5200 +840 1021 0.4410 +840 1026 0.4480 +840 1111 0.4300 +840 1147 0.5330 +840 1410 0.5990 +840 1499 0.4340 +840 1649 0.4170 +840 1676 0.7160 +840 1677 0.5360 +840 1687 0.4190 +840 1718 0.4120 +840 1791 0.4520 +840 1869 0.6830 +840 1956 0.6510 +840 2021 0.4840 +840 2064 0.4400 +840 2081 0.4630 +840 2099 0.4540 +840 2121 0.5030 +840 2261 0.4120 +840 2305 0.5000 +840 2597 0.7330 +840 2620 0.8230 +840 3002 0.9510 +840 3065 0.5230 +840 3091 0.4560 +840 3308 0.4230 +840 3309 0.9660 +840 3320 0.4050 +840 3553 0.4700 +840 3569 0.4670 +840 3606 0.4090 +840 3725 0.4950 +840 4087 0.4130 +840 4137 0.9350 +840 4170 0.6670 +840 4193 0.4570 +840 4318 0.4220 +840 4609 0.4510 +840 4671 0.7080 +840 4738 0.4600 +840 4790 0.4860 +840 4792 0.4320 +840 5062 0.4120 +840 5366 0.5390 +840 5594 0.4510 +840 5595 0.4710 +840 5728 0.4660 +840 5747 0.8100 +840 5925 0.7220 +840 6093 0.5510 +840 6195 0.4240 +840 6198 0.4140 +840 6303 0.4860 +840 6709 0.5550 +840 6772 0.6510 +840 6774 0.4900 +840 7124 0.5820 +840 7132 0.7890 +840 7157 0.7400 +840 7178 0.4460 +840 7186 0.4570 +840 7291 0.4830 +840 7431 0.9270 +840 7494 0.4640 +840 7531 0.4640 +840 7837 0.6280 +840 8428 0.7500 +840 8678 0.5500 +840 8717 0.5790 +840 8733 0.5420 +840 8737 0.7440 +840 8743 0.7360 +840 8772 0.6690 +840 8793 0.5110 +840 8794 0.4990 +840 8795 0.7170 +840 8797 0.6650 +840 8900 0.4090 +840 9169 0.4080 +840 9451 0.4530 +840 9474 0.5240 +840 10018 0.6140 +840 10026 0.5500 +840 10038 0.9170 +840 10039 0.9130 +840 10728 0.5790 +840 11035 0.6710 +840 22926 0.5410 +840 23463 0.4370 +840 24145 0.8330 +840 27242 0.5640 +840 27429 0.4440 +840 51604 0.5440 +840 54205 0.9420 +840 54882 0.4360 +840 56666 0.5830 +840 57448 0.7430 +840 57659 0.4530 +840 58484 0.4270 +840 63967 0.8550 +840 79444 0.9930 +840 79680 0.4160 +840 79792 0.5650 +840 79915 0.5940 +840 81631 0.4410 +840 84290 0.5650 +840 94005 0.5430 +840 128869 0.5400 +840 137902 0.6260 +840 197259 0.5570 +840 253461 0.4290 +840 653145 0.4180 +840 100288687 0.4010 +841 842 0.9440 +841 843 0.9990 +841 860 0.4650 +841 885 0.5570 +841 891 0.6040 +841 920 0.5860 +841 925 0.5950 +841 940 0.4040 +841 942 0.4280 +841 947 0.4990 +841 958 0.6250 +841 959 0.4490 +841 960 0.4910 +841 983 0.7160 +841 995 0.4580 +841 996 0.4250 +841 999 0.6920 +841 1017 0.7560 +841 1019 0.6020 +841 1021 0.4830 +841 1026 0.6210 +841 1027 0.6210 +841 1029 0.5860 +841 1051 0.4820 +841 1111 0.5310 +841 1147 0.9500 +841 1263 0.4650 +841 1326 0.4540 +841 1327 0.4870 +841 1385 0.4360 +841 1387 0.5440 +841 1432 0.6410 +841 1437 0.4290 +841 1499 0.7680 +841 1508 0.5000 +841 1509 0.4320 +841 1520 0.5560 +841 1540 0.9720 +841 1611 0.4020 +841 1612 0.4890 +841 1616 0.6760 +841 1649 0.5520 +841 1676 0.5870 +841 1677 0.6260 +841 1687 0.6270 +841 1791 0.6390 +841 1869 0.4640 +841 1950 0.4860 +841 1956 0.7370 +841 1965 0.4560 +841 1977 0.5660 +841 1994 0.5440 +841 2021 0.6290 +841 2033 0.5890 +841 2045 0.4900 +841 2064 0.5380 +841 2067 0.5440 +841 2081 0.5460 +841 2099 0.6900 +841 2100 0.5760 +841 2151 0.4110 +841 2184 0.4320 +841 2195 0.6430 +841 2309 0.4930 +841 2317 0.4520 +841 2335 0.4110 +841 2353 0.6530 +841 2475 0.6110 +841 2597 0.7170 +841 2875 0.4060 +841 2877 0.4960 +841 2878 0.4910 +841 2879 0.4310 +841 2880 0.4940 +841 2882 0.4930 +841 2919 0.5930 +841 2932 0.5000 +841 3002 0.9620 +841 3014 0.4450 +841 3021 0.4220 +841 3065 0.4030 +841 3091 0.5560 +841 3092 0.8990 +841 3146 0.4960 +841 3162 0.6650 +841 3183 0.4100 +841 3205 0.4690 +841 3265 0.4650 +841 3308 0.7110 +841 3309 0.6730 +841 3312 0.5260 +841 3315 0.4750 +841 3316 0.4490 +841 3320 0.6920 +841 3326 0.7610 +841 3383 0.4720 +841 3439 0.4780 +841 3454 0.4470 +841 3456 0.7270 +841 3458 0.6260 +841 3479 0.4480 +841 3480 0.4410 +841 3551 0.8700 +841 3552 0.5820 +841 3553 0.9430 +841 3554 0.4430 +841 3558 0.4910 +841 3565 0.4230 +841 3569 0.7390 +841 3576 0.5150 +841 3586 0.5580 +841 3605 0.4410 +841 3606 0.6310 +841 3611 0.4460 +841 3627 0.4040 +841 3630 0.5040 +841 3654 0.6500 +841 3659 0.5020 +841 3661 0.5490 +841 3665 0.4040 +841 3684 0.4180 +841 3716 0.6340 +841 3717 0.5230 +841 3725 0.7820 +841 3845 0.4800 +841 4001 0.4430 +841 4067 0.6130 +841 4087 0.4020 +841 4130 0.4110 +841 4137 0.4250 +841 4170 0.8020 +841 4193 0.7500 +841 4210 0.7090 +841 4214 0.4990 +841 4215 0.4960 +841 4217 0.7920 +841 4233 0.5870 +841 4313 0.4900 +841 4318 0.7120 +841 4478 0.5090 +841 4609 0.7900 +841 4671 0.5920 +841 4684 0.5270 +841 4780 0.4970 +841 4790 0.6640 +841 4791 0.4590 +841 4792 0.6860 +841 4842 0.5860 +841 4851 0.4980 +841 4863 0.4560 +841 5122 0.6810 +841 5245 0.5020 +841 5272 0.5230 +841 5289 0.5720 +841 5290 0.4880 +841 5295 0.5980 +841 5339 0.7930 +841 5366 0.6950 +841 5371 0.4170 +841 5468 0.4450 +841 5551 0.4770 +841 5578 0.4900 +841 5580 0.5780 +841 5594 0.8390 +841 5595 0.7090 +841 5599 0.8900 +841 5601 0.6130 +841 5604 0.4810 +841 5610 0.5570 +841 5728 0.7810 +841 5742 0.4360 +841 5743 0.7000 +841 5777 0.4540 +841 5788 0.5040 +841 5867 0.4070 +841 5894 0.4230 +841 5925 0.5080 +841 5966 0.4740 +841 5970 0.7040 +841 5971 0.4480 +841 5976 0.4470 +841 6005 0.5120 +841 6093 0.5550 +841 6198 0.4800 +841 6240 0.4500 +841 6347 0.6690 +841 6416 0.4090 +841 6502 0.4040 +841 6609 0.5360 +841 6615 0.6190 +841 6647 0.6290 +841 6657 0.5650 +841 6696 0.4740 +841 6714 0.8530 +841 6772 0.5590 +841 6774 0.6340 +841 6777 0.4160 +841 6850 0.4460 +841 6885 0.7470 +841 7015 0.4280 +841 7040 0.5010 +841 7048 0.4200 +841 7096 0.4020 +841 7097 0.5290 +841 7098 0.9230 +841 7099 0.8850 +841 7100 0.4350 +841 7124 0.9990 +841 7128 0.7890 +841 7132 0.9980 +841 7133 0.4840 +841 7157 0.9910 +841 7168 0.4590 +841 7185 0.9730 +841 7186 0.9940 +841 7187 0.5900 +841 7188 0.5400 +841 7189 0.9780 +841 7295 0.4590 +841 7335 0.4180 +841 7416 0.6200 +841 7430 0.5690 +841 7431 0.8200 +841 7494 0.5030 +841 7531 0.4590 +841 7706 0.6010 +841 7786 0.4340 +841 7837 0.7030 +841 7852 0.4470 +841 8290 0.4220 +841 8356 0.4230 +841 8452 0.8540 +841 8517 0.9610 +841 8669 0.4040 +841 8678 0.9140 +841 8682 0.7940 +841 8717 0.9990 +841 8718 0.5860 +841 8733 0.5400 +841 8737 0.9990 +841 8738 0.5230 +841 8739 0.4800 +841 8742 0.4650 +841 8743 0.9940 +841 8767 0.4810 +841 8772 0.9990 +841 8793 0.6260 +841 8794 0.6300 +841 8795 0.9990 +841 8797 0.9970 +841 8837 0.9990 +841 8878 0.9820 +841 8887 0.4710 +841 8900 0.5410 +841 8915 0.9980 +841 8988 0.4480 +841 8996 0.8220 +841 9020 0.6060 +841 9131 0.4330 +841 9140 0.8990 +841 9169 0.6810 +841 9175 0.4740 +841 9191 0.7200 +841 9214 0.4570 +841 9232 0.4310 +841 9241 0.4180 +841 9330 0.4150 +841 9447 0.6000 +841 9451 0.5780 +841 9474 0.9750 +841 9588 0.6280 +841 9641 0.4280 +841 9683 0.7900 +841 9817 0.4070 +841 9971 0.6470 +841 9994 0.9660 +841 10017 0.4800 +841 10018 0.7530 +841 10026 0.5480 +841 10059 0.7590 +841 10105 0.4540 +841 10133 0.5200 +841 10134 0.9890 +841 10193 0.4020 +841 10278 0.4190 +841 10392 0.8000 +841 10454 0.5630 +841 10533 0.7110 +841 10657 0.4250 +841 10666 0.4520 +841 10691 0.5220 +841 10892 0.9980 +841 11035 0.9990 +841 11124 0.9910 +841 11140 0.5360 +841 11186 0.4430 +841 11200 0.4850 +841 11213 0.5280 +841 11315 0.4120 +841 22861 0.7690 +841 22926 0.5240 +841 22933 0.4650 +841 23118 0.4650 +841 23304 0.6890 +841 23411 0.4470 +841 23429 0.6520 +841 23463 0.4140 +841 23581 0.4420 +841 23586 0.8330 +841 23643 0.6190 +841 27113 0.5090 +841 27242 0.6710 +841 27324 0.4070 +841 27429 0.5720 +841 29108 0.9920 +841 29110 0.6830 +841 29126 0.4450 +841 51024 0.4840 +841 51135 0.4670 +841 51283 0.4590 +841 51284 0.5020 +841 51311 0.4460 +841 51604 0.5400 +841 54106 0.4120 +841 54205 0.9520 +841 55054 0.6160 +841 55072 0.5960 +841 55081 0.9630 +841 55367 0.6810 +841 55620 0.4550 +841 55749 0.4700 +841 55876 0.4690 +841 56169 0.4800 +841 57099 0.4080 +841 57161 0.4870 +841 57448 0.6150 +841 57506 0.8250 +841 58484 0.9460 +841 64127 0.4920 +841 64135 0.7250 +841 64170 0.9980 +841 64422 0.4730 +841 64581 0.7870 +841 79132 0.5910 +841 79444 0.5830 +841 79626 0.7760 +841 79680 0.6690 +841 79792 0.8810 +841 81030 0.8230 +841 81631 0.8050 +841 81669 0.4970 +841 81858 0.4330 +841 84260 0.4750 +841 84282 0.5670 +841 84290 0.5510 +841 84433 0.7230 +841 84557 0.5970 +841 84941 0.4080 +841 84971 0.4790 +841 89122 0.5130 +841 90427 0.4610 +841 91662 0.4330 +841 94005 0.5400 +841 114548 0.9480 +841 120892 0.4120 +841 128869 0.5400 +841 130540 0.4180 +841 133482 0.5890 +841 137902 0.7030 +841 140823 0.4850 +841 148022 0.9770 +841 162989 0.6290 +841 171389 0.4580 +841 192111 0.4390 +841 197259 0.9690 +841 199713 0.4470 +841 200539 0.4090 +841 257202 0.4930 +841 284110 0.5760 +841 317649 0.4100 +841 353376 0.5960 +841 440093 0.4210 +841 440686 0.4210 +841 493869 0.4970 +841 653145 0.5940 +841 653604 0.4220 +841 728378 0.5720 +842 843 0.7190 +842 860 0.5580 +842 885 0.7220 +842 891 0.8030 +842 896 0.4030 +842 898 0.4450 +842 919 0.4050 +842 920 0.4480 +842 925 0.4550 +842 930 0.4500 +842 960 0.4510 +842 983 0.7630 +842 995 0.5830 +842 999 0.5890 +842 1000 0.4920 +842 1017 0.6730 +842 1019 0.6610 +842 1021 0.5700 +842 1026 0.7130 +842 1027 0.5130 +842 1029 0.4520 +842 1111 0.5040 +842 1131 0.4030 +842 1147 0.6860 +842 1191 0.4930 +842 1327 0.6490 +842 1385 0.4840 +842 1432 0.6330 +842 1434 0.4490 +842 1499 0.6210 +842 1508 0.4780 +842 1509 0.4060 +842 1520 0.4690 +842 1630 0.9730 +842 1647 0.4170 +842 1649 0.6020 +842 1676 0.5990 +842 1677 0.6520 +842 1687 0.5690 +842 1728 0.4480 +842 1729 0.4940 +842 1791 0.7070 +842 1869 0.4740 +842 1950 0.5370 +842 1956 0.7530 +842 1965 0.5080 +842 1994 0.4770 +842 2021 0.7450 +842 2064 0.5710 +842 2081 0.6060 +842 2099 0.5370 +842 2100 0.4100 +842 2247 0.4080 +842 2274 0.5340 +842 2280 0.5130 +842 2308 0.6460 +842 2309 0.6830 +842 2335 0.4050 +842 2353 0.6360 +842 2475 0.7380 +842 2597 0.7860 +842 2670 0.4140 +842 2875 0.4550 +842 2877 0.6090 +842 2878 0.5960 +842 2880 0.5980 +842 2882 0.6010 +842 2931 0.4080 +842 2932 0.6310 +842 2936 0.4870 +842 3006 0.4470 +842 3014 0.5010 +842 3021 0.4650 +842 3064 0.5600 +842 3065 0.4120 +842 3091 0.7460 +842 3146 0.4560 +842 3162 0.6120 +842 3181 0.4440 +842 3265 0.5460 +842 3308 0.5950 +842 3309 0.6870 +842 3315 0.7420 +842 3316 0.6960 +842 3320 0.5410 +842 3326 0.5250 +842 3337 0.4820 +842 3383 0.4080 +842 3458 0.5290 +842 3479 0.4810 +842 3480 0.4940 +842 3551 0.5170 +842 3552 0.4350 +842 3553 0.8260 +842 3558 0.4460 +842 3569 0.7850 +842 3576 0.4450 +842 3586 0.5060 +842 3600 0.4090 +842 3606 0.4870 +842 3611 0.4470 +842 3630 0.5440 +842 3661 0.4490 +842 3716 0.4180 +842 3717 0.5300 +842 3725 0.7700 +842 3763 0.6060 +842 3767 0.6040 +842 3791 0.4060 +842 3845 0.6280 +842 4001 0.5010 +842 4087 0.4460 +842 4088 0.4210 +842 4130 0.4740 +842 4131 0.4040 +842 4170 0.8290 +842 4193 0.8690 +842 4210 0.4030 +842 4217 0.6110 +842 4313 0.5890 +842 4318 0.6540 +842 4609 0.7170 +842 4671 0.7100 +842 4780 0.7020 +842 4790 0.5960 +842 4792 0.6120 +842 4803 0.4030 +842 4846 0.4170 +842 5170 0.6330 +842 5243 0.4160 +842 5290 0.5830 +842 5291 0.5500 +842 5294 0.4700 +842 5321 0.4320 +842 5366 0.7260 +842 5468 0.4840 +842 5495 0.4050 +842 5530 0.4220 +842 5532 0.4160 +842 5580 0.4360 +842 5594 0.8410 +842 5595 0.8830 +842 5599 0.7270 +842 5601 0.4220 +842 5604 0.5030 +842 5610 0.4410 +842 5727 0.4220 +842 5728 0.6420 +842 5743 0.7260 +842 5757 0.6140 +842 5770 0.5940 +842 5894 0.4560 +842 5925 0.5320 +842 5970 0.4620 +842 6198 0.5950 +842 6347 0.4010 +842 6416 0.5210 +842 6615 0.6450 +842 6647 0.4480 +842 6648 0.4820 +842 6714 0.6570 +842 6772 0.6620 +842 6774 0.6480 +842 6777 0.4140 +842 7040 0.4900 +842 7084 0.5080 +842 7099 0.5870 +842 7124 0.8160 +842 7132 0.6340 +842 7157 0.9530 +842 7168 0.4350 +842 7184 0.4280 +842 7186 0.4470 +842 7295 0.6150 +842 7416 0.5120 +842 7430 0.4740 +842 7494 0.5490 +842 7837 0.7590 +842 7852 0.6110 +842 8290 0.4660 +842 8356 0.4660 +842 8669 0.4110 +842 8678 0.9280 +842 8717 0.6200 +842 8718 0.4190 +842 8733 0.5400 +842 8737 0.6450 +842 8738 0.5470 +842 8739 0.5070 +842 8743 0.7690 +842 8767 0.6920 +842 8772 0.8720 +842 8793 0.4010 +842 8795 0.7300 +842 8797 0.7070 +842 8837 0.4120 +842 8878 0.6130 +842 8900 0.6090 +842 8988 0.6810 +842 9131 0.5530 +842 9140 0.4720 +842 9169 0.4710 +842 9191 0.4590 +842 9447 0.4010 +842 9451 0.6160 +842 9474 0.6680 +842 9612 0.4060 +842 9804 0.4080 +842 9817 0.6370 +842 9927 0.5140 +842 10000 0.9370 +842 10017 0.6130 +842 10018 0.8640 +842 10026 0.5450 +842 10038 0.9170 +842 10039 0.9140 +842 10059 0.4920 +842 10105 0.4570 +842 10193 0.4570 +842 10278 0.5170 +842 10392 0.8850 +842 10480 0.5620 +842 10533 0.6880 +842 10542 0.5210 +842 10891 0.4140 +842 11035 0.5460 +842 11083 0.4280 +842 11200 0.5050 +842 22861 0.8700 +842 22900 0.9760 +842 22926 0.6270 +842 23410 0.4360 +842 23411 0.5590 +842 25828 0.6180 +842 26060 0.8250 +842 27113 0.5940 +842 27343 0.5230 +842 27429 0.6730 +842 29108 0.6130 +842 50507 0.4060 +842 51024 0.4020 +842 51074 0.7890 +842 51237 0.4940 +842 51604 0.5420 +842 54205 0.9990 +842 54541 0.4760 +842 55075 0.7420 +842 55201 0.4320 +842 55367 0.5110 +842 55655 0.4590 +842 55669 0.6310 +842 57099 0.7390 +842 57448 0.9310 +842 58484 0.5780 +842 59082 0.4300 +842 64422 0.4200 +842 65018 0.4260 +842 79444 0.9980 +842 79680 0.6210 +842 79792 0.6080 +842 81631 0.6080 +842 81669 0.5220 +842 84260 0.5330 +842 84290 0.5570 +842 84557 0.5110 +842 84823 0.4380 +842 90249 0.5170 +842 90427 0.5310 +842 94005 0.5470 +842 114548 0.5870 +842 128869 0.5400 +842 137902 0.7590 +842 197259 0.5610 +842 219699 0.5430 +842 257202 0.5970 +842 284110 0.5290 +842 414899 0.5200 +842 440093 0.4660 +842 440686 0.4660 +842 493869 0.6090 +842 494513 0.5430 +842 653145 0.6000 +842 653604 0.4660 +843 1147 0.6410 +843 1677 0.4310 +843 1994 0.4410 +843 3002 0.5590 +843 3458 0.4150 +843 3551 0.6600 +843 3569 0.4100 +843 3662 0.4270 +843 4170 0.5480 +843 4478 0.4540 +843 5366 0.4470 +843 5599 0.5510 +843 5976 0.4260 +843 7098 0.4020 +843 7124 0.5480 +843 7132 0.9020 +843 7157 0.9390 +843 7185 0.4680 +843 7186 0.4560 +843 7430 0.4750 +843 7706 0.5670 +843 8517 0.7980 +843 8717 0.9960 +843 8737 0.9960 +843 8738 0.4150 +843 8743 0.9170 +843 8772 0.9990 +843 8780 0.5170 +843 8793 0.6670 +843 8794 0.4490 +843 8795 0.9570 +843 8797 0.9480 +843 8837 0.9980 +843 8915 0.4430 +843 9020 0.5290 +843 9191 0.4720 +843 9474 0.4860 +843 9588 0.6050 +843 9774 0.4990 +843 10018 0.4790 +843 11035 0.7810 +843 11124 0.9000 +843 23581 0.4450 +843 23586 0.6290 +843 51283 0.4090 +843 54205 0.8000 +843 57506 0.6180 +843 64135 0.6400 +843 84282 0.5140 +843 89122 0.5090 +843 126282 0.4740 +843 148022 0.9060 +843 162989 0.4440 +843 197259 0.5500 +844 845 0.9150 +844 859 0.4190 +844 1158 0.5800 +844 1482 0.5830 +844 2027 0.4390 +844 3270 0.5270 +844 4151 0.5100 +844 4208 0.4130 +844 4604 0.5650 +844 4606 0.5490 +844 4618 0.4780 +844 4619 0.5030 +844 4620 0.6770 +844 4622 0.4770 +844 4624 0.7220 +844 4625 0.6640 +844 4632 0.8410 +844 4633 0.7140 +844 4634 0.5470 +844 4635 0.4060 +844 4892 0.4720 +844 5224 0.4270 +844 5745 0.4930 +844 5816 0.5670 +844 5837 0.5160 +844 6261 0.9790 +844 6262 0.9670 +844 6263 0.9470 +844 6345 0.8030 +844 6588 0.7170 +844 6717 0.4300 +844 6786 0.5150 +844 7019 0.6750 +844 7125 0.5700 +844 7134 0.5270 +844 7135 0.5740 +844 7136 0.6630 +844 7137 0.6050 +844 7138 0.5140 +844 7139 0.4880 +844 7140 0.6340 +844 7168 0.5630 +844 7273 0.6030 +844 8048 0.5670 +844 8557 0.4410 +844 8736 0.4290 +844 9172 0.5430 +844 9499 0.5310 +844 10105 0.4840 +844 10324 0.6200 +844 10345 0.9980 +844 23676 0.6830 +844 29765 0.4730 +844 29895 0.6240 +844 51778 0.5610 +844 51806 0.4050 +844 56704 0.7440 +844 57158 0.7100 +844 57338 0.6180 +844 57467 0.4310 +844 58529 0.7480 +844 84502 0.6420 +844 91860 0.4090 +844 91977 0.4300 +844 126306 0.7690 +844 129446 0.5250 +844 131377 0.4020 +844 140458 0.4260 +844 150572 0.4580 +844 200539 0.4990 +844 202333 0.4200 +844 246329 0.6790 +844 284612 0.6830 +844 442721 0.5030 +845 859 0.6340 +845 1160 0.4210 +845 1410 0.4530 +845 1482 0.4320 +845 1824 0.4880 +845 1825 0.4460 +845 1829 0.5190 +845 1837 0.4660 +845 2281 0.8680 +845 2697 0.4260 +845 2702 0.4190 +845 3270 0.5580 +845 3728 0.5280 +845 3741 0.4100 +845 3752 0.5110 +845 3753 0.5990 +845 3757 0.6620 +845 3759 0.7560 +845 3762 0.5230 +845 3764 0.4730 +845 3768 0.4230 +845 3775 0.4680 +845 3784 0.6180 +845 4000 0.4430 +845 4140 0.4220 +845 4607 0.6640 +845 4619 0.5860 +845 4620 0.4680 +845 4622 0.5450 +845 4624 0.6600 +845 4625 0.6890 +845 4629 0.4660 +845 4632 0.5710 +845 4633 0.7120 +845 4634 0.6770 +845 4635 0.5240 +845 4878 0.6540 +845 4881 0.6540 +845 4892 0.4320 +845 5318 0.6090 +845 5350 0.7710 +845 5972 0.4050 +845 6261 0.9580 +845 6262 0.9980 +845 6263 0.9520 +845 6324 0.4500 +845 6330 0.5330 +845 6331 0.7080 +845 6345 0.5970 +845 6442 0.4620 +845 6444 0.4460 +845 6546 0.5880 +845 6588 0.5760 +845 6640 0.4860 +845 6717 0.4780 +845 6910 0.4580 +845 7125 0.4430 +845 7134 0.4630 +845 7135 0.5430 +845 7136 0.5120 +845 7137 0.6140 +845 7138 0.4200 +845 7139 0.6730 +845 7140 0.4210 +845 7168 0.5560 +845 7273 0.6380 +845 7871 0.5090 +845 8048 0.7010 +845 8557 0.5830 +845 8736 0.5430 +845 9172 0.4730 +845 9499 0.5030 +845 9722 0.4790 +845 9992 0.5980 +845 10008 0.4660 +845 10021 0.6330 +845 10060 0.5240 +845 10142 0.4480 +845 10159 0.4240 +845 10324 0.4650 +845 10345 0.9990 +845 11155 0.7310 +845 23171 0.5520 +845 23246 0.4370 +845 23363 0.4210 +845 23676 0.5070 +845 25802 0.5260 +845 26548 0.5000 +845 27063 0.5460 +845 27129 0.4240 +845 27295 0.5630 +845 29895 0.4410 +845 49854 0.5190 +845 51422 0.5180 +845 51665 0.5360 +845 51778 0.7540 +845 51806 0.6530 +845 54566 0.6670 +845 55759 0.4450 +845 55800 0.4430 +845 56704 0.4410 +845 56980 0.4020 +845 57158 0.6950 +845 58498 0.6870 +845 58529 0.5740 +845 79188 0.4800 +845 83987 0.4090 +845 84665 0.5390 +845 84687 0.4270 +845 85366 0.4590 +845 91624 0.4410 +845 91860 0.6400 +845 93649 0.4440 +845 125972 0.6170 +845 127294 0.4140 +845 146862 0.4020 +845 150572 0.4960 +845 163688 0.6410 +845 165904 0.5640 +845 171024 0.4660 +845 202333 0.5470 +845 203062 0.4480 +845 253017 0.6570 +845 282996 0.5470 +845 317781 0.4170 +845 442721 0.4040 +846 857 0.4970 +846 860 0.4330 +846 885 0.4200 +846 1080 0.5170 +846 1175 0.7270 +846 1184 0.6320 +846 1187 0.4120 +846 1188 0.7020 +846 1294 0.4180 +846 1357 0.4340 +846 1401 0.4820 +846 1499 0.4180 +846 1591 0.5930 +846 1594 0.5970 +846 1644 0.4460 +846 1902 0.4440 +846 2260 0.4690 +846 2316 0.8720 +846 2317 0.6170 +846 2318 0.6130 +846 2358 0.4720 +846 2520 0.4800 +846 2550 0.9040 +846 2638 0.4440 +846 2641 0.5040 +846 2691 0.4680 +846 2692 0.6390 +846 2696 0.5380 +846 2697 0.4180 +846 2740 0.5840 +846 2767 0.9770 +846 2768 0.5690 +846 2770 0.9320 +846 2771 0.9000 +846 2773 0.9000 +846 2776 0.9680 +846 2782 0.5110 +846 2783 0.6900 +846 2784 0.6920 +846 2785 0.5190 +846 2786 0.5410 +846 2787 0.5020 +846 2788 0.5280 +846 2790 0.5180 +846 2791 0.5130 +846 2792 0.5210 +846 2793 0.5260 +846 2840 0.4280 +846 2847 0.5920 +846 2859 0.5070 +846 2864 0.4960 +846 2867 0.4120 +846 2869 0.5130 +846 2911 0.7860 +846 2912 0.5540 +846 2913 0.5260 +846 2914 0.5470 +846 2915 0.6750 +846 2916 0.5210 +846 2917 0.5440 +846 2918 0.5630 +846 3091 0.5920 +846 3569 0.6100 +846 3630 0.5070 +846 3708 0.4460 +846 3710 0.4510 +846 3758 0.8840 +846 3973 0.4110 +846 4158 0.5560 +846 4256 0.6080 +846 4792 0.4100 +846 4851 0.4230 +846 4854 0.4240 +846 5251 0.4100 +846 5330 0.9250 +846 5331 0.9150 +846 5332 0.9010 +846 5443 0.5530 +846 5534 0.4370 +846 5578 0.4230 +846 5595 0.4320 +846 5644 0.5710 +846 5645 0.4230 +846 5697 0.5280 +846 5704 0.6400 +846 5726 0.6720 +846 5741 0.9510 +846 5744 0.7440 +846 5745 0.5980 +846 5798 0.4200 +846 5972 0.4240 +846 5979 0.4360 +846 5996 0.5290 +846 5998 0.4990 +846 5999 0.5700 +846 6003 0.5260 +846 6004 0.5090 +846 6010 0.4750 +846 6557 0.7680 +846 6559 0.6680 +846 6564 0.6260 +846 6569 0.5550 +846 6690 0.5710 +846 6696 0.4510 +846 6714 0.6370 +846 6781 0.4380 +846 7015 0.4400 +846 7204 0.5430 +846 7220 0.4590 +846 7222 0.4270 +846 7225 0.4600 +846 7369 0.4800 +846 7432 0.4400 +846 7809 0.6980 +846 8074 0.7280 +846 8202 0.4080 +846 8490 0.5550 +846 8521 0.5690 +846 8600 0.5470 +846 8997 0.5040 +846 9033 0.4360 +846 9075 0.4360 +846 9170 0.4140 +846 9247 0.9450 +846 9365 0.6060 +846 9568 0.8190 +846 10149 0.5130 +846 10190 0.4140 +846 10267 0.7000 +846 10268 0.4640 +846 10287 0.5390 +846 10316 0.4730 +846 10681 0.5310 +846 10686 0.6800 +846 10800 0.4270 +846 10887 0.5060 +846 10959 0.4320 +846 10971 0.5910 +846 11330 0.5300 +846 23236 0.9050 +846 23562 0.6830 +846 23566 0.4300 +846 25897 0.4680 +846 26086 0.4070 +846 26136 0.4790 +846 26575 0.5430 +846 29899 0.4070 +846 50831 0.6030 +846 50832 0.5230 +846 50833 0.5300 +846 50834 0.7080 +846 50835 0.4990 +846 50836 0.5020 +846 50837 0.5960 +846 50838 0.5090 +846 50839 0.4990 +846 50840 0.5290 +846 50964 0.4180 +846 51314 0.4090 +846 51764 0.5380 +846 51806 0.4770 +846 54331 0.5020 +846 54429 0.5300 +846 54822 0.4760 +846 55503 0.5380 +846 55970 0.5020 +846 56302 0.6670 +846 56923 0.4620 +846 57105 0.4300 +846 57121 0.6710 +846 57578 0.4100 +846 59345 0.5470 +846 63940 0.4160 +846 64407 0.5660 +846 79577 0.8550 +846 80834 0.5620 +846 80835 0.7180 +846 83756 0.6880 +846 84539 0.4250 +846 91860 0.4840 +846 94235 0.5370 +846 114327 0.5630 +846 115557 0.5050 +846 120227 0.4320 +846 126006 0.4330 +846 126206 0.6520 +846 134864 0.4460 +846 136541 0.4970 +846 139760 0.4910 +846 140803 0.5450 +846 142680 0.5490 +846 149461 0.6160 +846 151306 0.4030 +846 151651 0.4050 +846 163688 0.4770 +846 197335 0.5770 +846 222545 0.9570 +846 259285 0.6950 +846 259286 0.5160 +846 259287 0.6510 +846 259289 0.5200 +846 259290 0.5140 +846 259292 0.5400 +846 259293 0.4990 +846 259294 0.4990 +846 259295 0.4990 +846 259296 0.5470 +846 337960 0.4120 +846 338398 0.7010 +846 338557 0.4510 +846 342372 0.4140 +846 350383 0.5310 +846 353164 0.7020 +846 431704 0.5140 +847 1431 0.4420 +847 1962 0.4870 +847 2235 0.5150 +847 2271 0.5160 +847 2308 0.5560 +847 2309 0.5470 +847 2539 0.4720 +847 2632 0.5710 +847 2686 0.4060 +847 2729 0.5000 +847 2877 0.5570 +847 2878 0.5640 +847 2879 0.5550 +847 2880 0.5620 +847 2882 0.6250 +847 2936 0.6460 +847 2937 0.4870 +847 3295 0.9540 +847 3336 0.5020 +847 3658 0.4010 +847 4126 0.4010 +847 4482 0.4840 +847 5052 0.6640 +847 5192 0.5040 +847 5194 0.5500 +847 5195 0.5960 +847 5236 0.5100 +847 5239 0.4160 +847 5264 0.4630 +847 5828 0.5210 +847 5830 0.7940 +847 5832 0.4560 +847 6233 0.5710 +847 6342 0.9390 +847 6389 0.4250 +847 6390 0.5510 +847 6647 0.9200 +847 6648 0.9080 +847 6649 0.8920 +847 6652 0.6650 +847 6888 0.4610 +847 7001 0.6930 +847 7086 0.4450 +847 7296 0.4030 +847 7311 0.5610 +847 7314 0.5560 +847 7316 0.5500 +847 7321 0.5160 +847 7322 0.5080 +847 7323 0.5120 +847 7915 0.4310 +847 8277 0.4290 +847 8309 0.4100 +847 8540 0.4990 +847 8659 0.4040 +847 8942 0.9140 +847 9104 0.8600 +847 9399 0.5040 +847 9563 0.4990 +847 9588 0.6460 +847 10549 0.5790 +847 10587 0.4120 +847 10935 0.6050 +847 10994 0.4620 +847 11181 0.7950 +847 11315 0.6730 +847 22921 0.5160 +847 23498 0.9100 +847 25824 0.4950 +847 26061 0.5160 +847 51011 0.5060 +847 51015 0.4550 +847 51179 0.9230 +847 51314 0.4320 +847 51734 0.5190 +847 54205 0.4450 +847 54363 0.9220 +847 55167 0.4010 +847 64577 0.4210 +847 81570 0.4040 +847 84076 0.4290 +847 84263 0.7910 +847 114112 0.4420 +847 124975 0.4120 +847 140856 0.5000 +847 219743 0.7050 +847 253827 0.5180 +847 257202 0.5620 +847 286451 0.7770 +847 374875 0.4180 +847 404636 0.5870 +847 493869 0.6260 +847 100130890 0.8200 +847 100131187 0.8200 +847 100132074 0.5460 +847 109703458 0.7360 +857 858 0.9990 +857 859 0.9950 +857 928 0.5720 +857 947 0.4280 +857 948 0.9560 +857 949 0.9520 +857 950 0.9450 +857 960 0.6320 +857 961 0.5610 +857 966 0.8420 +857 967 0.6820 +857 975 0.5670 +857 976 0.4770 +857 999 0.7680 +857 1000 0.6560 +857 1003 0.7120 +857 1015 0.4340 +857 1026 0.6030 +857 1029 0.4060 +857 1114 0.4110 +857 1124 0.4020 +857 1192 0.4730 +857 1193 0.4460 +857 1234 0.4040 +857 1277 0.6080 +857 1282 0.5460 +857 1284 0.4960 +857 1291 0.5620 +857 1366 0.5740 +857 1445 0.9310 +857 1490 0.5420 +857 1499 0.9420 +857 1525 0.4900 +857 1536 0.4050 +857 1627 0.5030 +857 1636 0.4680 +857 1638 0.4960 +857 1729 0.4270 +857 1739 0.4200 +857 1756 0.6150 +857 1785 0.9760 +857 1803 0.9910 +857 1829 0.7560 +857 1901 0.4220 +857 1906 0.5420 +857 1910 0.6600 +857 1950 0.6940 +857 1956 0.9990 +857 1958 0.5660 +857 1969 0.7980 +857 2017 0.6170 +857 2022 0.5930 +857 2023 0.5100 +857 2040 0.7580 +857 2047 0.4460 +857 2060 0.5310 +857 2064 0.7350 +857 2099 0.9980 +857 2100 0.9710 +857 2149 0.6600 +857 2191 0.4890 +857 2194 0.5410 +857 2247 0.5000 +857 2260 0.5570 +857 2274 0.5340 +857 2287 0.4340 +857 2308 0.8280 +857 2309 0.8240 +857 2316 0.9080 +857 2317 0.8690 +857 2318 0.8800 +857 2319 0.9650 +857 2321 0.5730 +857 2335 0.7710 +857 2346 0.5490 +857 2475 0.4220 +857 2534 0.9970 +857 2597 0.6310 +857 2631 0.4110 +857 2697 0.9650 +857 2705 0.6110 +857 2706 0.6550 +857 2740 0.7710 +857 2776 0.9050 +857 2806 0.6700 +857 2817 0.4200 +857 2852 0.4030 +857 2885 0.6240 +857 2908 0.6560 +857 2911 0.4910 +857 2923 0.6690 +857 2932 0.7810 +857 3064 0.7180 +857 3075 0.4570 +857 3091 0.7150 +857 3156 0.4270 +857 3162 0.6780 +857 3181 0.6610 +857 3265 0.9740 +857 3299 0.4240 +857 3308 0.6090 +857 3309 0.6110 +857 3315 0.4380 +857 3320 0.9880 +857 3326 0.9830 +857 3356 0.4290 +857 3383 0.9340 +857 3397 0.4770 +857 3458 0.5950 +857 3479 0.7310 +857 3480 0.9710 +857 3481 0.5730 +857 3482 0.4700 +857 3486 0.4670 +857 3488 0.5440 +857 3489 0.4100 +857 3491 0.6540 +857 3552 0.5520 +857 3553 0.6330 +857 3569 0.7140 +857 3611 0.4040 +857 3630 0.8100 +857 3643 0.6640 +857 3654 0.4390 +857 3667 0.7220 +857 3672 0.5970 +857 3678 0.4250 +857 3688 0.9800 +857 3690 0.7560 +857 3691 0.7580 +857 3693 0.7250 +857 3694 0.7090 +857 3695 0.6590 +857 3696 0.6840 +857 3700 0.4060 +857 3708 0.6420 +857 3710 0.8270 +857 3717 0.7810 +857 3725 0.4510 +857 3728 0.5860 +857 3738 0.8290 +857 3741 0.7920 +857 3751 0.4770 +857 3757 0.6820 +857 3761 0.5010 +857 3764 0.5340 +857 3766 0.8720 +857 3768 0.5480 +857 3777 0.5800 +857 3778 0.5910 +857 3782 0.7760 +857 3783 0.5430 +857 3791 0.9620 +857 3827 0.4180 +857 3845 0.4080 +857 3856 0.4790 +857 3880 0.6220 +857 3916 0.5830 +857 3952 0.4280 +857 3960 0.4700 +857 3984 0.4720 +857 3991 0.5980 +857 4000 0.5160 +857 4001 0.5270 +857 4015 0.4960 +857 4040 0.9710 +857 4067 0.7510 +857 4087 0.6000 +857 4088 0.6380 +857 4089 0.6730 +857 4093 0.4980 +857 4162 0.5950 +857 4170 0.4280 +857 4188 0.4750 +857 4223 0.4970 +857 4233 0.6210 +857 4306 0.4210 +857 4313 0.6900 +857 4318 0.6410 +857 4323 0.7940 +857 4363 0.4680 +857 4430 0.4590 +857 4478 0.4570 +857 4548 0.4350 +857 4599 0.5230 +857 4609 0.5580 +857 4627 0.5240 +857 4641 0.4450 +857 4650 0.4350 +857 4653 0.4680 +857 4763 0.4210 +857 4790 0.4150 +857 4792 0.4570 +857 4804 0.4240 +857 4810 0.4120 +857 4831 0.4890 +857 4842 0.6410 +857 4843 0.4530 +857 4846 0.9990 +857 4864 0.5350 +857 4868 0.6810 +857 4914 0.7710 +857 4919 0.5080 +857 4990 0.4120 +857 5054 0.5290 +857 5058 0.6390 +857 5062 0.4220 +857 5140 0.4700 +857 5156 0.5490 +857 5159 0.6000 +857 5175 0.6890 +857 5176 0.5000 +857 5243 0.6180 +857 5289 0.6830 +857 5290 0.7270 +857 5295 0.6060 +857 5296 0.5010 +857 5328 0.4300 +857 5331 0.4820 +857 5335 0.6360 +857 5336 0.5370 +857 5338 0.7650 +857 5346 0.9200 +857 5361 0.4400 +857 5364 0.4410 +857 5468 0.7650 +857 5478 0.5430 +857 5499 0.5300 +857 5515 0.7250 +857 5566 0.9220 +857 5567 0.8910 +857 5568 0.8940 +857 5578 0.8770 +857 5585 0.4590 +857 5586 0.4190 +857 5591 0.4700 +857 5592 0.5620 +857 5594 0.5070 +857 5595 0.8030 +857 5599 0.5080 +857 5621 0.9900 +857 5724 0.6530 +857 5727 0.4290 +857 5728 0.9120 +857 5737 0.4760 +857 5740 0.4460 +857 5743 0.8260 +857 5747 0.4880 +857 5770 0.8090 +857 5781 0.7390 +857 5783 0.7400 +857 5788 0.4730 +857 5792 0.4460 +857 5829 0.7230 +857 5868 0.7610 +857 5869 0.6650 +857 5874 0.6820 +857 5879 0.9080 +857 5880 0.6550 +857 5881 0.5600 +857 5898 0.5150 +857 5921 0.5820 +857 6093 0.5950 +857 6242 0.4760 +857 6261 0.5290 +857 6262 0.6390 +857 6275 0.4290 +857 6277 0.5860 +857 6331 0.7070 +857 6336 0.6220 +857 6338 0.4820 +857 6342 0.7780 +857 6347 0.6500 +857 6351 0.4780 +857 6382 0.4220 +857 6387 0.6420 +857 6449 0.4020 +857 6464 0.7950 +857 6495 0.4030 +857 6510 0.5320 +857 6517 0.5710 +857 6591 0.5020 +857 6615 0.4340 +857 6616 0.5320 +857 6622 0.4810 +857 6678 0.4420 +857 6714 0.9990 +857 6717 0.6130 +857 6720 0.4060 +857 6772 0.5170 +857 6774 0.7590 +857 6778 0.4340 +857 6786 0.8680 +857 6793 0.4510 +857 6801 0.8090 +857 6876 0.4030 +857 6939 0.5020 +857 7010 0.5640 +857 7035 0.5000 +857 7037 0.8170 +857 7040 0.6920 +857 7046 0.9070 +857 7048 0.5100 +857 7056 0.5250 +857 7057 0.6180 +857 7076 0.4460 +857 7078 0.4170 +857 7082 0.5590 +857 7094 0.4060 +857 7099 0.9620 +857 7100 0.4700 +857 7112 0.4050 +857 7122 0.7330 +857 7124 0.6470 +857 7132 0.4610 +857 7157 0.5740 +857 7173 0.4620 +857 7184 0.8410 +857 7186 0.6620 +857 7220 0.9450 +857 7222 0.6410 +857 7223 0.8070 +857 7249 0.4050 +857 7251 0.4330 +857 7296 0.7580 +857 7410 0.4100 +857 7412 0.4610 +857 7414 0.7440 +857 7415 0.9050 +857 7416 0.8860 +857 7417 0.6960 +857 7424 0.4420 +857 7431 0.4400 +857 7442 0.6300 +857 7450 0.4660 +857 7454 0.5000 +857 7525 0.5550 +857 7531 0.4170 +857 7535 0.4710 +857 7804 0.5410 +857 7827 0.4420 +857 7837 0.6260 +857 7851 0.7020 +857 7852 0.7150 +857 7855 0.8190 +857 7879 0.6030 +857 8153 0.5450 +857 8218 0.6490 +857 8312 0.8660 +857 8321 0.4030 +857 8398 0.4400 +857 8411 0.7130 +857 8436 0.9460 +857 8452 0.4110 +857 8476 0.5290 +857 8503 0.4360 +857 8519 0.8010 +857 8678 0.8420 +857 8766 0.5510 +857 8773 0.7410 +857 8776 0.4790 +857 8795 0.4100 +857 8801 0.5050 +857 8826 0.5410 +857 8842 0.4550 +857 8874 0.5210 +857 8878 0.6320 +857 8910 0.6040 +857 8911 0.6030 +857 8912 0.5460 +857 8913 0.5810 +857 8976 0.8480 +857 9076 0.5820 +857 9122 0.4840 +857 9123 0.4910 +857 9140 0.8140 +857 9322 0.4940 +857 9341 0.5820 +857 9368 0.4910 +857 9370 0.5270 +857 9373 0.4090 +857 9402 0.4180 +857 9414 0.5630 +857 9454 0.4570 +857 9455 0.4500 +857 9456 0.4910 +857 9465 0.5140 +857 9474 0.6860 +857 9475 0.5720 +857 9495 0.5550 +857 9496 0.4510 +857 9497 0.4860 +857 9528 0.4280 +857 9564 0.4360 +857 9578 0.4450 +857 9590 0.6270 +857 9710 0.5330 +857 9748 0.4120 +857 9815 0.4310 +857 10006 0.4160 +857 10044 0.5030 +857 10134 0.4150 +857 10152 0.4130 +857 10160 0.4180 +857 10163 0.4490 +857 10211 0.9720 +857 10298 0.4840 +857 10345 0.4100 +857 10376 0.4650 +857 10395 0.7850 +857 10409 0.5250 +857 10544 0.7970 +857 10555 0.8440 +857 10630 0.4190 +857 10631 0.5370 +857 10672 0.4990 +857 10765 0.4050 +857 10787 0.4430 +857 10788 0.5050 +857 10791 0.5020 +857 10801 0.4850 +857 10818 0.4600 +857 10998 0.4970 +857 10999 0.5890 +857 11060 0.5830 +857 11113 0.4110 +857 11135 0.4850 +857 11252 0.7950 +857 23002 0.4100 +857 23048 0.4680 +857 23075 0.4120 +857 23191 0.4160 +857 23236 0.5240 +857 23344 0.5000 +857 23371 0.4340 +857 23433 0.6360 +857 23513 0.4960 +857 23580 0.4620 +857 23607 0.4720 +857 25894 0.4430 +857 25924 0.5990 +857 25932 0.5110 +857 26049 0.4110 +857 26050 0.4020 +857 26509 0.4880 +857 26580 0.8430 +857 27123 0.4230 +857 27289 0.6070 +857 28954 0.4150 +857 28964 0.4720 +857 29763 0.4920 +857 29843 0.4160 +857 29941 0.4390 +857 29984 0.5970 +857 30816 0.5820 +857 30817 0.4390 +857 30819 0.4840 +857 30845 0.6670 +857 30846 0.7860 +857 50507 0.4310 +857 50964 0.4010 +857 51070 0.6270 +857 51347 0.4060 +857 51806 0.9960 +857 53635 0.4340 +857 53905 0.5640 +857 54205 0.4560 +857 54443 0.6200 +857 54472 0.5820 +857 54499 0.5750 +857 54509 0.5910 +857 54874 0.4430 +857 55004 0.5000 +857 55075 0.4420 +857 55240 0.5610 +857 55361 0.4970 +857 55512 0.4290 +857 55752 0.4810 +857 55789 0.4750 +857 55829 0.4180 +857 55914 0.7330 +857 55971 0.4510 +857 56262 0.4630 +857 56924 0.4570 +857 57104 0.5280 +857 57142 0.4100 +857 57144 0.4100 +857 57369 0.4700 +857 57381 0.6210 +857 57708 0.4550 +857 59341 0.9470 +857 63924 0.4090 +857 64083 0.6570 +857 64582 0.4210 +857 64838 0.4370 +857 65124 0.4130 +857 79180 0.4330 +857 79572 0.4100 +857 79933 0.4130 +857 80012 0.4850 +857 80115 0.4530 +857 80700 0.6930 +857 80728 0.4670 +857 81555 0.5120 +857 81624 0.5370 +857 81631 0.9380 +857 81839 0.5130 +857 83478 0.5240 +857 83483 0.5260 +857 83700 0.4200 +857 84168 0.5470 +857 84876 0.5790 +857 84879 0.4060 +857 85358 0.4180 +857 89780 0.8940 +857 89796 0.4510 +857 89885 0.4610 +857 90865 0.5040 +857 91010 0.4250 +857 91860 0.9950 +857 92521 0.4640 +857 93380 0.4020 +857 112464 0.9220 +857 113146 0.5710 +857 114885 0.4220 +857 115677 0.8690 +857 116150 0.5530 +857 118429 0.4190 +857 128239 0.4250 +857 137902 0.5780 +857 143098 0.4650 +857 144402 0.4710 +857 161003 0.4450 +857 161742 0.5330 +857 163688 0.9950 +857 200734 0.4920 +857 200894 0.4800 +857 220296 0.4780 +857 253959 0.4530 +857 284119 0.9990 +857 285590 0.4660 +857 347273 0.6770 +857 387837 0.4180 +857 445582 0.4520 +857 653361 0.6560 +857 100506658 0.7890 +858 859 0.9980 +858 1030 0.5240 +858 1525 0.4710 +858 1785 0.4610 +858 1803 0.4420 +858 1950 0.4990 +858 1956 0.9770 +858 2099 0.6550 +858 2100 0.5680 +858 2319 0.5230 +858 2332 0.4970 +858 2534 0.9620 +858 2697 0.5370 +858 2762 0.4030 +858 3162 0.4140 +858 3320 0.8340 +858 3326 0.8330 +858 3688 0.7260 +858 3690 0.7060 +858 3691 0.7060 +858 3693 0.7050 +858 3694 0.6620 +858 3695 0.6550 +858 3696 0.6720 +858 3778 0.5260 +858 3791 0.5070 +858 3852 0.4560 +858 3880 0.5490 +858 4233 0.5150 +858 4653 0.5640 +858 4846 0.8710 +858 4990 0.5510 +858 5175 0.4800 +858 5339 0.4060 +858 5592 0.5750 +858 5621 0.9340 +858 5829 0.4760 +858 6277 0.4340 +858 6331 0.6100 +858 6336 0.6930 +858 6464 0.4070 +858 6495 0.4710 +858 6616 0.4240 +858 6714 0.9710 +858 6910 0.4800 +858 7094 0.4690 +858 7184 0.8100 +858 7417 0.4490 +858 7450 0.4370 +858 7851 0.4780 +858 8436 0.6310 +858 8522 0.5210 +858 8801 0.4600 +858 8911 0.6600 +858 8912 0.6020 +858 8913 0.6370 +858 10211 0.5360 +858 22999 0.6030 +858 23085 0.4280 +858 28954 0.4020 +858 30845 0.4090 +858 30846 0.5880 +858 51806 0.9360 +858 54499 0.6960 +858 55133 0.4740 +858 55188 0.5070 +858 56704 0.4410 +858 57158 0.4670 +858 60312 0.4530 +858 80346 0.4220 +858 83478 0.6790 +858 91860 0.9330 +858 112464 0.6420 +858 161253 0.4580 +858 163688 0.9330 +858 220202 0.4140 +858 284119 0.9200 +858 347273 0.5120 +859 975 0.5480 +859 1003 0.4390 +859 1410 0.4020 +859 1739 0.8880 +859 1756 0.9900 +859 1785 0.5080 +859 1829 0.4140 +859 1837 0.4380 +859 1956 0.9310 +859 2010 0.4320 +859 2060 0.4910 +859 2100 0.5350 +859 2218 0.5120 +859 2316 0.7890 +859 2317 0.5080 +859 2318 0.4920 +859 2319 0.4490 +859 2534 0.9330 +859 2597 0.4170 +859 2660 0.6730 +859 2697 0.5030 +859 2811 0.5420 +859 2812 0.5410 +859 2814 0.5420 +859 2815 0.5420 +859 3320 0.8480 +859 3326 0.8480 +859 3630 0.4190 +859 3679 0.5800 +859 3688 0.6900 +859 3690 0.6710 +859 3691 0.6840 +859 3693 0.6710 +859 3694 0.6710 +859 3695 0.6710 +859 3696 0.6560 +859 3728 0.5110 +859 3741 0.4810 +859 3746 0.9060 +859 3751 0.6120 +859 3752 0.4890 +859 3753 0.6690 +859 3757 0.8580 +859 3759 0.8260 +859 3761 0.4680 +859 3762 0.7080 +859 3764 0.4440 +859 3766 0.4620 +859 3768 0.5380 +859 3776 0.5360 +859 3778 0.6060 +859 3784 0.6310 +859 3785 0.4330 +859 3908 0.5190 +859 3920 0.4300 +859 3960 0.4310 +859 4000 0.5100 +859 4318 0.4140 +859 4607 0.6770 +859 4617 0.4180 +859 4618 0.4470 +859 4624 0.5130 +859 4625 0.5670 +859 4632 0.4150 +859 4633 0.6910 +859 4634 0.7510 +859 4654 0.5380 +859 4656 0.6180 +859 4734 0.4690 +859 4842 0.8220 +859 4843 0.4570 +859 4846 0.9590 +859 5021 0.4860 +859 5029 0.4160 +859 5156 0.4020 +859 5239 0.7260 +859 5318 0.4730 +859 5348 0.6050 +859 5467 0.4070 +859 5566 0.6580 +859 5567 0.6560 +859 5568 0.6580 +859 5621 0.9140 +859 6261 0.8820 +859 6262 0.7280 +859 6323 0.4520 +859 6324 0.4810 +859 6329 0.5840 +859 6330 0.8300 +859 6331 0.9270 +859 6334 0.4250 +859 6335 0.4300 +859 6336 0.4710 +859 6345 0.4100 +859 6442 0.9250 +859 6443 0.9560 +859 6444 0.9780 +859 6445 0.8820 +859 6517 0.5100 +859 6546 0.5010 +859 6616 0.6650 +859 6640 0.9890 +859 6641 0.6240 +859 6645 0.6110 +859 6714 0.9660 +859 6717 0.4290 +859 6804 0.8680 +859 7046 0.7620 +859 7094 0.4840 +859 7125 0.4430 +859 7135 0.4940 +859 7137 0.5700 +859 7139 0.5220 +859 7168 0.4190 +859 7184 0.8080 +859 7220 0.7400 +859 7273 0.7210 +859 7402 0.8110 +859 7414 0.6760 +859 8038 0.5100 +859 8048 0.7320 +859 8082 0.9310 +859 8291 0.9990 +859 8436 0.5140 +859 8557 0.6860 +859 8910 0.9230 +859 8911 0.8320 +859 8912 0.9080 +859 8913 0.8140 +859 9132 0.4210 +859 9172 0.5320 +859 9370 0.4420 +859 9472 0.5800 +859 9499 0.6370 +859 9992 0.7920 +859 10021 0.6550 +859 10142 0.7600 +859 10211 0.6830 +859 10345 0.6540 +859 10585 0.4200 +859 11149 0.6810 +859 11155 0.5860 +859 23171 0.8170 +859 23327 0.4190 +859 23473 0.5620 +859 24145 0.4900 +859 26509 0.6030 +859 26548 0.4120 +859 27063 0.4430 +859 27295 0.4610 +859 29780 0.6890 +859 30818 0.6640 +859 30820 0.5530 +859 30845 0.4420 +859 30846 0.4700 +859 51094 0.6740 +859 51308 0.6300 +859 51393 0.5910 +859 51422 0.6960 +859 51778 0.6120 +859 51806 0.9430 +859 54205 0.4760 +859 54212 0.7200 +859 54221 0.7200 +859 55320 0.4570 +859 55800 0.4740 +859 56704 0.5710 +859 57158 0.8810 +859 57685 0.6210 +859 64091 0.4280 +859 64102 0.4700 +859 65055 0.6070 +859 79026 0.5890 +859 79147 0.5830 +859 79188 0.4120 +859 83660 0.4750 +859 84502 0.4310 +859 84665 0.5390 +859 85366 0.6160 +859 89796 0.5060 +859 91860 0.9430 +859 92106 0.6560 +859 112464 0.5950 +859 116969 0.4210 +859 125972 0.4460 +859 137868 0.5760 +859 146862 0.4270 +859 161003 0.4030 +859 163688 0.9410 +859 165904 0.6980 +859 203859 0.6040 +859 284119 0.9790 +859 285489 0.5330 +859 347273 0.6850 +859 493829 0.9940 +859 642658 0.4770 +860 861 0.8970 +860 864 0.9330 +860 865 0.9990 +860 885 0.6400 +860 891 0.6860 +860 947 0.6500 +860 960 0.7940 +860 983 0.5700 +860 999 0.4180 +860 1000 0.4370 +860 1003 0.4040 +860 1004 0.5110 +860 1009 0.4460 +860 1019 0.6070 +860 1026 0.7000 +860 1029 0.4230 +860 1050 0.7670 +860 1051 0.9440 +860 1052 0.4010 +860 1080 0.4340 +860 1277 0.9550 +860 1278 0.5890 +860 1280 0.7770 +860 1281 0.4240 +860 1300 0.8750 +860 1311 0.5220 +860 1385 0.7920 +860 1387 0.7830 +860 1435 0.4810 +860 1437 0.5700 +860 1488 0.5520 +860 1490 0.5030 +860 1493 0.4840 +860 1499 0.8020 +860 1513 0.7650 +860 1634 0.4680 +860 1675 0.4190 +860 1746 0.4770 +860 1747 0.7970 +860 1749 0.9900 +860 1750 0.8280 +860 1758 0.7130 +860 1834 0.6980 +860 1950 0.4400 +860 1956 0.6070 +860 2022 0.6670 +860 2033 0.8850 +860 2034 0.4020 +860 2066 0.5080 +860 2078 0.8620 +860 2099 0.9420 +860 2101 0.8100 +860 2113 0.8120 +860 2114 0.6590 +860 2117 0.4220 +860 2130 0.4960 +860 2146 0.6420 +860 2167 0.6070 +860 2247 0.7530 +860 2248 0.5500 +860 2249 0.5630 +860 2250 0.5390 +860 2251 0.5320 +860 2252 0.5420 +860 2253 0.6800 +860 2254 0.5560 +860 2255 0.5760 +860 2258 0.5870 +860 2260 0.6350 +860 2261 0.6750 +860 2263 0.7980 +860 2268 0.4090 +860 2274 0.4440 +860 2308 0.6800 +860 2309 0.4020 +860 2313 0.8490 +860 2322 0.5020 +860 2335 0.5830 +860 2353 0.9870 +860 2355 0.4560 +860 2487 0.4520 +860 2547 0.6160 +860 2597 0.7750 +860 2623 0.4730 +860 2624 0.4520 +860 2625 0.4340 +860 2626 0.4440 +860 2627 0.4020 +860 2658 0.6240 +860 2672 0.5800 +860 2697 0.4180 +860 2719 0.4570 +860 2735 0.6890 +860 2736 0.9580 +860 2737 0.8260 +860 2908 0.8270 +860 2932 0.8730 +860 3021 0.4630 +860 3037 0.5440 +860 3065 0.8790 +860 3091 0.8440 +860 3162 0.5900 +860 3172 0.7750 +860 3199 0.4600 +860 3206 0.4110 +860 3209 0.5420 +860 3239 0.5570 +860 3251 0.4050 +860 3280 0.8030 +860 3381 0.9310 +860 3479 0.6420 +860 3480 0.4020 +860 3549 0.9580 +860 3552 0.4440 +860 3553 0.7600 +860 3569 0.7380 +860 3589 0.4070 +860 3630 0.5890 +860 3662 0.5450 +860 3667 0.4830 +860 3678 0.8520 +860 3684 0.4700 +860 3688 0.7480 +860 3725 0.9680 +860 3791 0.4190 +860 3815 0.6380 +860 3952 0.4940 +860 3958 0.8870 +860 4023 0.5530 +860 4040 0.6270 +860 4041 0.8300 +860 4067 0.4500 +860 4086 0.8890 +860 4087 0.6620 +860 4088 0.9600 +860 4089 0.8940 +860 4090 0.8470 +860 4091 0.8250 +860 4092 0.8190 +860 4093 0.4510 +860 4094 0.8550 +860 4162 0.5060 +860 4193 0.5900 +860 4208 0.5060 +860 4256 0.6830 +860 4313 0.4630 +860 4314 0.4850 +860 4318 0.6150 +860 4322 0.9450 +860 4487 0.7010 +860 4488 0.9950 +860 4594 0.4280 +860 4609 0.6130 +860 4654 0.5230 +860 4734 0.5360 +860 4745 0.5430 +860 4772 0.7240 +860 4773 0.5890 +860 4780 0.5770 +860 4782 0.5760 +860 4790 0.4920 +860 4791 0.4680 +860 4851 0.6600 +860 4853 0.4100 +860 4869 0.4320 +860 4907 0.6390 +860 4958 0.4100 +860 4969 0.4380 +860 4982 0.7420 +860 5076 0.6650 +860 5083 0.4710 +860 5167 0.5170 +860 5175 0.6030 +860 5251 0.5740 +860 5295 0.4690 +860 5371 0.5420 +860 5456 0.4020 +860 5460 0.5810 +860 5468 0.8730 +860 5566 0.9370 +860 5567 0.9370 +860 5568 0.9360 +860 5587 0.5130 +860 5594 0.5830 +860 5595 0.7660 +860 5682 0.4070 +860 5684 0.4670 +860 5686 0.4090 +860 5688 0.5530 +860 5689 0.4390 +860 5690 0.4040 +860 5693 0.4160 +860 5694 0.4230 +860 5696 0.4450 +860 5698 0.4460 +860 5700 0.4060 +860 5701 0.4060 +860 5705 0.4060 +860 5714 0.4200 +860 5715 0.4150 +860 5716 0.4050 +860 5717 0.4320 +860 5719 0.4060 +860 5727 0.5970 +860 5728 0.4300 +860 5729 0.5410 +860 5741 0.7560 +860 5743 0.4940 +860 5744 0.7130 +860 5745 0.6200 +860 5747 0.4160 +860 5788 0.6480 +860 5925 0.9700 +860 5970 0.5600 +860 6097 0.4360 +860 6233 0.5500 +860 6347 0.4320 +860 6387 0.5310 +860 6391 0.4250 +860 6422 0.4730 +860 6423 0.4400 +860 6424 0.5860 +860 6469 0.6590 +860 6474 0.5850 +860 6500 0.5290 +860 6502 0.6860 +860 6510 0.4120 +860 6575 0.4320 +860 6591 0.4710 +860 6597 0.5490 +860 6615 0.4830 +860 6657 0.6930 +860 6659 0.4270 +860 6660 0.5960 +860 6662 0.9800 +860 6678 0.7570 +860 6688 0.6340 +860 6696 0.9010 +860 6714 0.5070 +860 6722 0.5910 +860 6736 0.5530 +860 6772 0.9420 +860 6774 0.7620 +860 6776 0.5060 +860 6839 0.4230 +860 6850 0.7060 +860 6876 0.5610 +860 6877 0.4320 +860 6901 0.7270 +860 6925 0.6090 +860 6928 0.4310 +860 6932 0.4960 +860 6934 0.5750 +860 7003 0.5970 +860 7015 0.4540 +860 7022 0.4850 +860 7040 0.7030 +860 7042 0.4830 +860 7043 0.6100 +860 7046 0.6750 +860 7048 0.4640 +860 7070 0.6780 +860 7088 0.5490 +860 7124 0.6080 +860 7157 0.8080 +860 7159 0.4920 +860 7227 0.6900 +860 7291 0.9720 +860 7311 0.4990 +860 7314 0.4990 +860 7316 0.5690 +860 7343 0.7050 +860 7412 0.4970 +860 7414 0.4180 +860 7471 0.5050 +860 7474 0.5730 +860 7480 0.5930 +860 7704 0.5220 +860 7837 0.6460 +860 7852 0.4910 +860 7994 0.8070 +860 8061 0.4880 +860 8074 0.5980 +860 8200 0.5690 +860 8290 0.4530 +860 8312 0.4900 +860 8313 0.5780 +860 8356 0.4540 +860 8431 0.7500 +860 8454 0.5220 +860 8464 0.5490 +860 8468 0.4230 +860 8493 0.8340 +860 8600 0.8760 +860 8793 0.4080 +860 8817 0.5900 +860 8822 0.5270 +860 8823 0.5230 +860 8840 0.4170 +860 8841 0.8760 +860 8850 0.4460 +860 9241 0.6140 +860 9314 0.5300 +860 9358 0.8180 +860 9365 0.4950 +860 9370 0.4880 +860 9429 0.4060 +860 9451 0.4140 +860 9464 0.8850 +860 9507 0.5230 +860 9508 0.4840 +860 9575 0.5540 +860 9611 0.4590 +860 9734 0.6570 +860 9759 0.9970 +860 9794 0.4850 +860 9968 0.4080 +860 9978 0.5340 +860 10000 0.5040 +860 10013 0.9640 +860 10014 0.7060 +860 10197 0.4160 +860 10273 0.8410 +860 10370 0.4180 +860 10413 0.9730 +860 10432 0.7950 +860 10521 0.6780 +860 10631 0.5530 +860 10763 0.4500 +860 10891 0.8260 +860 11059 0.7610 +860 11060 0.4810 +860 11096 0.7410 +860 22926 0.6840 +860 22943 0.7170 +860 23314 0.8820 +860 23411 0.5250 +860 23462 0.8890 +860 23493 0.6320 +860 23522 0.8270 +860 23558 0.4710 +860 23683 0.4400 +860 25873 0.4090 +860 25925 0.7610 +860 25937 0.9340 +860 26281 0.5290 +860 26508 0.4690 +860 27006 0.5450 +860 27063 0.4690 +860 27123 0.4400 +860 29121 0.4120 +860 50964 0.7750 +860 51082 0.4080 +860 51176 0.8380 +860 51341 0.4600 +860 51384 0.4550 +860 51548 0.5520 +860 51564 0.7190 +860 51705 0.4120 +860 51741 0.7240 +860 54361 0.4040 +860 55079 0.4170 +860 55294 0.5550 +860 55553 0.5830 +860 55959 0.4100 +860 56172 0.4020 +860 56934 0.4890 +860 56955 0.5890 +860 57154 0.9880 +860 59269 0.9090 +860 60529 0.5260 +860 64102 0.5670 +860 64399 0.4870 +860 64750 0.7650 +860 65123 0.4080 +860 79923 0.5450 +860 80005 0.5570 +860 81501 0.4120 +860 89780 0.6440 +860 91662 0.4720 +860 93986 0.4590 +860 117581 0.9480 +860 121340 0.9770 +860 122706 0.4150 +860 133522 0.7880 +860 137902 0.6450 +860 154796 0.4830 +860 202374 0.4520 +860 221044 0.6390 +860 283078 0.4050 +860 285231 0.6100 +860 440093 0.4530 +860 440686 0.4530 +860 642658 0.4130 +860 653604 0.4530 +860 752014 0.5430 +861 862 0.9990 +861 863 0.9760 +861 864 0.9800 +861 865 0.9990 +861 894 0.6900 +861 896 0.8110 +861 914 0.4080 +861 920 0.5910 +861 921 0.4050 +861 924 0.5310 +861 925 0.5280 +861 930 0.5720 +861 945 0.5940 +861 947 0.7240 +861 952 0.5280 +861 960 0.5830 +861 962 0.4010 +861 983 0.4760 +861 1003 0.5170 +861 1021 0.9290 +861 1022 0.5600 +861 1025 0.6150 +861 1026 0.4780 +861 1027 0.4280 +861 1029 0.6980 +861 1030 0.4250 +861 1050 0.9940 +861 1051 0.9720 +861 1052 0.5210 +861 1053 0.6770 +861 1147 0.4430 +861 1316 0.5770 +861 1378 0.7610 +861 1385 0.6610 +861 1387 0.9770 +861 1435 0.6270 +861 1436 0.9830 +861 1437 0.9410 +861 1440 0.4790 +861 1441 0.8060 +861 1457 0.5480 +861 1459 0.5330 +861 1460 0.5050 +861 1487 0.9730 +861 1488 0.9420 +861 1493 0.8440 +861 1499 0.5460 +861 1501 0.4040 +861 1513 0.6360 +861 1514 0.5950 +861 1515 0.5600 +861 1523 0.4470 +861 1746 0.5350 +861 1749 0.5430 +861 1786 0.7430 +861 1788 0.7770 +861 1791 0.4010 +861 1869 0.4490 +861 1879 0.6210 +861 1911 0.5380 +861 1912 0.5390 +861 1958 0.6110 +861 1959 0.4660 +861 1997 0.6810 +861 1998 0.8750 +861 2000 0.6780 +861 2005 0.4150 +861 2033 0.9890 +861 2057 0.4450 +861 2078 0.4710 +861 2099 0.8370 +861 2113 0.9990 +861 2114 0.7630 +861 2115 0.4570 +861 2116 0.5660 +861 2117 0.4110 +861 2118 0.4410 +861 2119 0.4370 +861 2120 0.9830 +861 2122 0.9880 +861 2146 0.7030 +861 2177 0.4100 +861 2274 0.4020 +861 2296 0.4960 +861 2308 0.6590 +861 2309 0.9080 +861 2313 0.9210 +861 2322 0.8280 +861 2323 0.4740 +861 2353 0.7370 +861 2354 0.4140 +861 2355 0.4780 +861 2521 0.5410 +861 2526 0.4320 +861 2551 0.4900 +861 2597 0.4880 +861 2623 0.9890 +861 2624 0.9960 +861 2625 0.9890 +861 2626 0.6620 +861 2627 0.4300 +861 2672 0.8700 +861 2697 0.4440 +861 2811 0.5790 +861 2885 0.4610 +861 2908 0.5530 +861 3012 0.4990 +861 3013 0.5000 +861 3014 0.5660 +861 3015 0.5760 +861 3017 0.5340 +861 3018 0.5180 +861 3021 0.7370 +861 3065 0.9980 +861 3066 0.9840 +861 3091 0.9450 +861 3131 0.5460 +861 3164 0.4990 +861 3169 0.5970 +861 3195 0.4870 +861 3199 0.5040 +861 3202 0.4090 +861 3205 0.6520 +861 3206 0.4470 +861 3214 0.5020 +861 3265 0.4240 +861 3276 0.9600 +861 3381 0.4810 +861 3394 0.7950 +861 3417 0.7200 +861 3418 0.7200 +861 3458 0.8930 +861 3553 0.4510 +861 3558 0.8480 +861 3559 0.8960 +861 3562 0.9730 +861 3563 0.4310 +861 3569 0.4640 +861 3574 0.4080 +861 3575 0.5810 +861 3586 0.5790 +861 3630 0.5370 +861 3651 0.4060 +861 3659 0.7090 +861 3662 0.7220 +861 3663 0.4630 +861 3674 0.7860 +861 3684 0.5260 +861 3716 0.4520 +861 3717 0.6890 +861 3718 0.4940 +861 3725 0.8430 +861 3791 0.5070 +861 3815 0.7730 +861 3845 0.6520 +861 3925 0.4060 +861 3958 0.8470 +861 3977 0.7750 +861 4004 0.7040 +861 4005 0.9880 +861 4015 0.5190 +861 4066 0.8980 +861 4087 0.7710 +861 4088 0.8780 +861 4089 0.4690 +861 4094 0.4080 +861 4145 0.5080 +861 4193 0.4190 +861 4208 0.4400 +861 4209 0.4260 +861 4211 0.6320 +861 4254 0.4900 +861 4297 0.8950 +861 4298 0.5980 +861 4299 0.7310 +861 4300 0.7190 +861 4311 0.5120 +861 4330 0.4320 +861 4343 0.5260 +861 4352 0.5180 +861 4353 0.9470 +861 4602 0.9360 +861 4609 0.6900 +861 4613 0.4180 +861 4629 0.9220 +861 4654 0.5380 +861 4684 0.4190 +861 4763 0.5830 +861 4772 0.5160 +861 4773 0.7500 +861 4778 0.8810 +861 4790 0.4880 +861 4851 0.6140 +861 4853 0.4110 +861 4869 0.8540 +861 4893 0.7430 +861 4914 0.5790 +861 4928 0.5790 +861 4929 0.6720 +861 4988 0.4020 +861 5079 0.9200 +861 5080 0.5700 +861 5087 0.8600 +861 5101 0.4090 +861 5133 0.5770 +861 5154 0.4630 +861 5156 0.4730 +861 5159 0.4760 +861 5175 0.4570 +861 5196 0.8100 +861 5214 0.4260 +861 5275 0.7650 +861 5371 0.9740 +861 5460 0.4340 +861 5468 0.4610 +861 5532 0.4270 +861 5579 0.7960 +861 5588 0.7920 +861 5590 0.4220 +861 5594 0.4960 +861 5599 0.4610 +861 5688 0.6200 +861 5728 0.5160 +861 5781 0.9600 +861 5788 0.6310 +861 5885 0.5670 +861 5896 0.6680 +861 5914 0.9050 +861 5929 0.5640 +861 5966 0.6880 +861 5970 0.8310 +861 6015 0.5990 +861 6045 0.6290 +861 6046 0.6110 +861 6097 0.6230 +861 6146 0.6150 +861 6304 0.6550 +861 6427 0.8580 +861 6573 0.4610 +861 6583 0.7790 +861 6595 0.6390 +861 6597 0.7610 +861 6598 0.8290 +861 6599 0.6800 +861 6601 0.5280 +861 6602 0.5560 +861 6603 0.5460 +861 6604 0.5570 +861 6605 0.6060 +861 6657 0.6300 +861 6659 0.4620 +861 6662 0.4900 +861 6667 0.4580 +861 6688 0.9930 +861 6693 0.4650 +861 6714 0.9430 +861 6772 0.4320 +861 6774 0.7260 +861 6775 0.5880 +861 6776 0.8290 +861 6777 0.8240 +861 6778 0.4110 +861 6839 0.7780 +861 6886 0.9960 +861 6908 0.6150 +861 6910 0.5250 +861 6929 0.9750 +861 6932 0.4850 +861 6938 0.9110 +861 7003 0.6240 +861 7010 0.4040 +861 7015 0.4930 +861 7040 0.4550 +861 7057 0.5580 +861 7066 0.4840 +861 7080 0.4200 +861 7082 0.7770 +861 7088 0.8770 +861 7089 0.6170 +861 7090 0.5510 +861 7091 0.6300 +861 7122 0.7830 +861 7124 0.4310 +861 7128 0.4860 +861 7157 0.8200 +861 7189 0.6610 +861 7307 0.7290 +861 7391 0.4920 +861 7403 0.4730 +861 7412 0.5470 +861 7442 0.4900 +861 7490 0.7280 +861 7528 0.4040 +861 7704 0.5070 +861 7813 0.4370 +861 7852 0.4220 +861 7913 0.7650 +861 7994 0.9590 +861 8013 0.7960 +861 8021 0.5500 +861 8028 0.5740 +861 8038 0.4280 +861 8061 0.4650 +861 8085 0.7580 +861 8091 0.4800 +861 8178 0.4190 +861 8202 0.5140 +861 8233 0.7190 +861 8243 0.5110 +861 8289 0.6730 +861 8290 0.4970 +861 8312 0.5730 +861 8320 0.4140 +861 8328 0.6160 +861 8331 0.4990 +861 8334 0.5110 +861 8337 0.6050 +861 8338 0.6050 +861 8340 0.5240 +861 8341 0.5210 +861 8342 0.5250 +861 8345 0.5260 +861 8347 0.5310 +861 8348 0.5200 +861 8349 0.6070 +861 8356 0.7370 +861 8361 0.7160 +861 8535 0.5500 +861 8553 0.5570 +861 8784 0.8220 +861 8805 0.4030 +861 8841 0.6960 +861 8850 0.5890 +861 8861 0.9440 +861 8945 0.4520 +861 8970 0.5220 +861 9021 0.8860 +861 9070 0.5920 +861 9079 0.8870 +861 9126 0.5120 +861 9139 0.9070 +861 9314 0.5210 +861 9611 0.8490 +861 9612 0.8150 +861 9656 0.4250 +861 9739 0.5910 +861 9757 0.5610 +861 9833 0.4230 +861 9968 0.5040 +861 10019 0.6020 +861 10138 0.5550 +861 10189 0.4240 +861 10273 0.7170 +861 10320 0.9410 +861 10365 0.4140 +861 10398 0.8060 +861 10413 0.9360 +861 10499 0.4180 +861 10514 0.4220 +861 10538 0.5410 +861 10661 0.5820 +861 10664 0.5640 +861 10735 0.6660 +861 11091 0.6250 +861 22806 0.8490 +861 22807 0.4820 +861 22852 0.6250 +861 22955 0.5020 +861 23028 0.6150 +861 23067 0.5820 +861 23112 0.5080 +861 23284 0.4210 +861 23309 0.5580 +861 23361 0.4980 +861 23414 0.4830 +861 23429 0.5740 +861 23466 0.5090 +861 23476 0.4170 +861 23512 0.4470 +861 23522 0.7590 +861 25937 0.4060 +861 25942 0.9520 +861 26040 0.7040 +861 26053 0.5760 +861 26151 0.4930 +861 26191 0.5190 +861 26523 0.5400 +861 27161 0.6400 +861 27286 0.4840 +861 27327 0.5140 +861 28996 0.8630 +861 29072 0.4090 +861 29109 0.4370 +861 30009 0.9740 +861 30012 0.6430 +861 50943 0.9990 +861 51043 0.5420 +861 51176 0.9630 +861 51341 0.5680 +861 51412 0.5050 +861 51421 0.4250 +861 51428 0.5060 +861 51441 0.6930 +861 51703 0.5940 +861 51710 0.5000 +861 53335 0.6840 +861 54065 0.4280 +861 54093 0.4030 +861 54145 0.5250 +861 54567 0.4010 +861 54790 0.8690 +861 55170 0.6200 +861 55193 0.5730 +861 55252 0.4470 +861 55294 0.6210 +861 55500 0.4310 +861 55636 0.5380 +861 55766 0.4990 +861 55904 0.6930 +861 57332 0.5620 +861 57492 0.6270 +861 57592 0.5900 +861 58508 0.7500 +861 60468 0.4730 +861 63035 0.5730 +861 64321 0.4860 +861 64324 0.4030 +861 64375 0.6180 +861 64919 0.5820 +861 79092 0.4750 +861 79576 0.4470 +861 79816 0.5650 +861 79870 0.5070 +861 80012 0.5440 +861 80818 0.4980 +861 81669 0.4860 +861 83737 0.5450 +861 84106 0.6580 +861 84295 0.8030 +861 84333 0.5640 +861 84444 0.4090 +861 84661 0.5490 +861 84733 0.5630 +861 84870 0.4480 +861 85236 0.5200 +861 94239 0.5040 +861 115560 0.4970 +861 122809 0.7800 +861 122953 0.4320 +861 128312 0.5160 +861 140688 0.4680 +861 148266 0.4990 +861 161882 0.7980 +861 171017 0.5070 +861 171023 0.8750 +861 192669 0.4990 +861 192670 0.4990 +861 196528 0.5710 +861 200845 0.4990 +861 255626 0.5220 +861 284390 0.4980 +861 285231 0.6100 +861 286530 0.4990 +861 374569 0.4840 +861 440093 0.4960 +861 440686 0.4960 +861 474382 0.5090 +861 653145 0.4570 +861 653604 0.7370 +861 100288687 0.4180 +861 100506658 0.7690 +861 100532731 0.6720 +861 102723407 0.5730 +862 863 0.7750 +862 865 0.7800 +862 945 0.4320 +862 947 0.5310 +862 1050 0.9610 +862 1511 0.4800 +862 1601 0.4020 +862 1786 0.6770 +862 1788 0.5220 +862 1822 0.5590 +862 1991 0.4160 +862 2120 0.5960 +862 2122 0.7440 +862 2194 0.4060 +862 2322 0.6970 +862 2624 0.4740 +862 2672 0.5380 +862 2918 0.5040 +862 3021 0.5170 +862 3065 0.8980 +862 3205 0.4320 +862 3417 0.4860 +862 3418 0.4870 +862 3562 0.4520 +862 3815 0.6000 +862 4211 0.4240 +862 4297 0.6390 +862 4298 0.4270 +862 4299 0.4830 +862 4300 0.6150 +862 4629 0.8140 +862 4869 0.6960 +862 4893 0.4690 +862 4914 0.4350 +862 4928 0.4750 +862 5087 0.5100 +862 5361 0.4020 +862 5371 0.5080 +862 5521 0.4130 +862 5576 0.9380 +862 5914 0.8180 +862 5935 0.4310 +862 6427 0.4480 +862 6688 0.9320 +862 6860 0.4120 +862 6874 0.4140 +862 6876 0.4120 +862 6907 0.4270 +862 6925 0.5750 +862 6929 0.5070 +862 6938 0.9890 +862 7157 0.4230 +862 7490 0.5280 +862 7539 0.4060 +862 7704 0.9030 +862 7913 0.5890 +862 8021 0.5900 +862 8028 0.4800 +862 8165 0.4070 +862 8290 0.5150 +862 8313 0.4080 +862 8328 0.6660 +862 8356 0.5150 +862 8805 0.4670 +862 8841 0.5710 +862 9139 0.9040 +862 9495 0.4220 +862 9611 0.9630 +862 9612 0.9920 +862 10142 0.4390 +862 10270 0.5140 +862 10342 0.4370 +862 10771 0.6110 +862 23414 0.4780 +862 25942 0.8230 +862 51364 0.7850 +862 51441 0.5470 +862 54790 0.5220 +862 55252 0.4790 +862 55294 0.4310 +862 55558 0.4030 +862 55904 0.4700 +862 57592 0.4730 +862 63978 0.6800 +862 79068 0.4690 +862 79718 0.4400 +862 79870 0.4040 +862 80243 0.4450 +862 84106 0.6170 +862 90665 0.4160 +862 91584 0.4210 +862 94081 0.4610 +862 116225 0.5470 +862 132949 0.5090 +862 144165 0.4300 +862 171023 0.5760 +862 440093 0.5160 +862 440686 0.5150 +862 653604 0.5160 +863 865 0.8180 +863 1435 0.5070 +863 1436 0.5840 +863 2066 0.4720 +863 2113 0.4940 +863 2120 0.4390 +863 2122 0.6120 +863 2322 0.4120 +863 2623 0.9490 +863 2624 0.5860 +863 3065 0.8820 +863 3066 0.7290 +863 3148 0.4450 +863 4005 0.7650 +863 4066 0.8430 +863 4297 0.4620 +863 4629 0.5610 +863 4739 0.4130 +863 4928 0.5710 +863 5914 0.4130 +863 5927 0.4900 +863 6688 0.7970 +863 6886 0.9580 +863 6907 0.4250 +863 6925 0.7170 +863 6929 0.8810 +863 6938 0.5090 +863 8028 0.4010 +863 8165 0.4370 +863 8328 0.6860 +863 8841 0.5640 +863 8861 0.9910 +863 9079 0.9810 +863 9139 0.9060 +863 9495 0.4510 +863 9611 0.8380 +863 10009 0.4110 +863 10013 0.5700 +863 10270 0.5780 +863 10320 0.4090 +863 10661 0.5240 +863 22834 0.8270 +863 23028 0.4470 +863 23309 0.4150 +863 23414 0.4790 +863 51441 0.4910 +863 51646 0.4480 +863 51741 0.4180 +863 55558 0.4120 +863 55869 0.5560 +863 57591 0.4320 +863 57592 0.5320 +863 57659 0.6020 +863 58189 0.4600 +863 63978 0.7600 +863 64795 0.4200 +863 79718 0.4580 +863 84662 0.7980 +863 90665 0.4010 +863 92999 0.7800 +863 93166 0.6200 +863 132949 0.5090 +863 161882 0.4970 +863 170463 0.4110 +863 197322 0.4580 +863 200942 0.6520 +863 253461 0.5810 +863 359948 0.5010 +864 865 0.9990 +864 920 0.6180 +864 925 0.7490 +864 939 0.4020 +864 940 0.4200 +864 960 0.5290 +864 969 0.5080 +864 999 0.5200 +864 1003 0.4430 +864 1012 0.5210 +864 1026 0.8460 +864 1027 0.5120 +864 1029 0.7890 +864 1050 0.4350 +864 1051 0.5800 +864 1236 0.4730 +864 1280 0.5150 +864 1300 0.5630 +864 1303 0.4110 +864 1381 0.6690 +864 1387 0.5870 +864 1490 0.5770 +864 1499 0.9770 +864 1612 0.5220 +864 1747 0.4300 +864 1786 0.5020 +864 1788 0.4110 +864 1789 0.4200 +864 1879 0.4550 +864 1901 0.4240 +864 1959 0.4290 +864 2033 0.9480 +864 2099 0.4180 +864 2113 0.6470 +864 2114 0.4890 +864 2115 0.6150 +864 2122 0.4810 +864 2146 0.6270 +864 2272 0.4340 +864 2309 0.7790 +864 2521 0.4710 +864 2623 0.4410 +864 2624 0.4580 +864 2625 0.6730 +864 2648 0.5500 +864 2672 0.4790 +864 2735 0.4580 +864 2833 0.4110 +864 2950 0.4550 +864 3001 0.4070 +864 3002 0.5590 +864 3021 0.4130 +864 3065 0.5690 +864 3090 0.4990 +864 3091 0.5020 +864 3142 0.4240 +864 3172 0.8290 +864 3280 0.5380 +864 3394 0.4980 +864 3398 0.4880 +864 3458 0.5260 +864 3481 0.6000 +864 3516 0.8300 +864 3549 0.6460 +864 3558 0.4350 +864 3560 0.5120 +864 3565 0.4340 +864 3575 0.5560 +864 3587 0.4170 +864 3594 0.4440 +864 3600 0.4160 +864 3605 0.4140 +864 3662 0.7520 +864 3676 0.6550 +864 3682 0.4730 +864 3683 0.6630 +864 3702 0.4030 +864 3725 0.5930 +864 3845 0.7100 +864 4004 0.4820 +864 4087 0.6830 +864 4088 0.9540 +864 4089 0.7400 +864 4094 0.4060 +864 4193 0.8360 +864 4205 0.5070 +864 4208 0.5700 +864 4255 0.5810 +864 4292 0.6660 +864 4322 0.5310 +864 4353 0.4480 +864 4488 0.4490 +864 4609 0.8370 +864 4613 0.4440 +864 4762 0.7370 +864 4772 0.6730 +864 4773 0.4610 +864 4818 0.5090 +864 4851 0.7460 +864 5079 0.4460 +864 5452 0.5860 +864 5551 0.5670 +864 5682 0.4070 +864 5684 0.4200 +864 5685 0.4080 +864 5688 0.4830 +864 5690 0.4040 +864 5693 0.4160 +864 5694 0.4230 +864 5696 0.4710 +864 5698 0.5600 +864 5699 0.4350 +864 5700 0.4060 +864 5701 0.4060 +864 5705 0.4060 +864 5706 0.4130 +864 5714 0.4200 +864 5715 0.4150 +864 5716 0.4050 +864 5717 0.4240 +864 5719 0.4030 +864 5720 0.4080 +864 5721 0.4080 +864 5728 0.4320 +864 5788 0.5030 +864 5915 0.5010 +864 5970 0.5240 +864 6046 0.7070 +864 6097 0.8480 +864 6233 0.4990 +864 6239 0.4080 +864 6402 0.4840 +864 6422 0.5150 +864 6423 0.4120 +864 6662 0.4450 +864 6688 0.5560 +864 6696 0.8270 +864 6714 0.9330 +864 6774 0.4850 +864 6775 0.4870 +864 6776 0.4550 +864 6777 0.4050 +864 6839 0.8620 +864 6886 0.5100 +864 6929 0.4950 +864 6932 0.8400 +864 6934 0.8990 +864 6938 0.4100 +864 7003 0.5680 +864 7004 0.7390 +864 7005 0.5460 +864 7040 0.8590 +864 7078 0.4590 +864 7088 0.6980 +864 7090 0.5970 +864 7124 0.4360 +864 7157 0.9360 +864 7227 0.5590 +864 7291 0.5580 +864 7311 0.4990 +864 7314 0.4990 +864 7316 0.5180 +864 7343 0.4220 +864 7528 0.6650 +864 7704 0.6280 +864 7799 0.4520 +864 7905 0.5120 +864 8290 0.4130 +864 8320 0.6640 +864 8356 0.4130 +864 8463 0.5450 +864 8651 0.6790 +864 8850 0.5640 +864 8913 0.7280 +864 9759 0.7660 +864 9794 0.5460 +864 10014 0.5980 +864 10018 0.7120 +864 10046 0.4990 +864 10197 0.4090 +864 10219 0.4200 +864 10320 0.9030 +864 10365 0.4970 +864 10413 0.7080 +864 10538 0.7250 +864 10664 0.6270 +864 10865 0.4280 +864 11186 0.6480 +864 22806 0.8500 +864 22938 0.5160 +864 23414 0.4030 +864 23476 0.4240 +864 23598 0.4040 +864 25942 0.4530 +864 30009 0.9910 +864 50615 0.5650 +864 50943 0.6980 +864 51043 0.8220 +864 51176 0.8340 +864 51752 0.5980 +864 53335 0.6280 +864 55534 0.5430 +864 55734 0.5560 +864 55743 0.4830 +864 55888 0.5210 +864 57154 0.6090 +864 60468 0.5080 +864 64750 0.6110 +864 64919 0.5280 +864 79923 0.6160 +864 83439 0.5480 +864 84206 0.6700 +864 84441 0.5430 +864 115653 0.7200 +864 117581 0.5600 +864 149233 0.4180 +864 151449 0.4650 +864 257101 0.6220 +864 284110 0.6040 +864 285231 0.6100 +864 440093 0.4130 +864 440686 0.4130 +864 653604 0.4130 +865 891 0.4270 +865 894 0.5270 +865 896 0.5600 +865 983 0.4570 +865 1019 0.4500 +865 1021 0.8210 +865 1022 0.4400 +865 1026 0.6100 +865 1050 0.5380 +865 1051 0.7250 +865 1378 0.7500 +865 1387 0.6070 +865 1396 0.4390 +865 1437 0.5720 +865 1457 0.5620 +865 1459 0.5610 +865 1460 0.5420 +865 1493 0.7880 +865 1513 0.5200 +865 1514 0.4990 +865 1515 0.4990 +865 1749 0.5410 +865 1750 0.4990 +865 1911 0.4990 +865 1912 0.5040 +865 1997 0.5630 +865 1998 0.4990 +865 2033 0.8000 +865 2078 0.8210 +865 2099 0.5670 +865 2101 0.5180 +865 2113 0.8250 +865 2120 0.4360 +865 2122 0.5910 +865 2313 0.8350 +865 2316 0.8820 +865 2322 0.5820 +865 2623 0.8740 +865 2624 0.8130 +865 2625 0.7260 +865 2811 0.4380 +865 2908 0.5180 +865 3012 0.4990 +865 3013 0.4990 +865 3014 0.5080 +865 3015 0.5070 +865 3017 0.4990 +865 3018 0.4990 +865 3021 0.5910 +865 3065 0.6160 +865 3148 0.4330 +865 3172 0.4480 +865 3276 0.8850 +865 3458 0.8020 +865 3549 0.7860 +865 3558 0.6090 +865 3559 0.7920 +865 3562 0.6200 +865 3600 0.4370 +865 3662 0.4720 +865 3674 0.6970 +865 3676 0.5440 +865 3678 0.7500 +865 3683 0.5340 +865 3815 0.4870 +865 3845 0.5280 +865 3958 0.7500 +865 3977 0.7500 +865 4004 0.5400 +865 4005 0.8710 +865 4066 0.9210 +865 4086 0.5020 +865 4087 0.4530 +865 4089 0.5810 +865 4091 0.5020 +865 4094 0.5430 +865 4297 0.7430 +865 4298 0.4180 +865 4299 0.4460 +865 4300 0.5060 +865 4322 0.7940 +865 4331 0.4230 +865 4343 0.5070 +865 4488 0.5450 +865 4602 0.6460 +865 4629 0.9780 +865 4738 0.6190 +865 4773 0.5800 +865 4778 0.7770 +865 4869 0.5790 +865 4893 0.4220 +865 5079 0.6280 +865 5087 0.4210 +865 5196 0.7650 +865 5275 0.7500 +865 5478 0.6860 +865 5579 0.7500 +865 5588 0.7570 +865 5594 0.4250 +865 5595 0.4520 +865 5914 0.6250 +865 5925 0.5600 +865 5929 0.5300 +865 6015 0.5640 +865 6045 0.6030 +865 6046 0.5270 +865 6097 0.7880 +865 6595 0.5250 +865 6597 0.5790 +865 6598 0.5430 +865 6599 0.5290 +865 6601 0.5410 +865 6602 0.5560 +865 6603 0.5070 +865 6604 0.5070 +865 6605 0.5350 +865 6688 0.7100 +865 6696 0.7880 +865 6714 0.5460 +865 6772 0.5840 +865 6777 0.4660 +865 6886 0.8430 +865 6921 0.9990 +865 6923 0.9990 +865 6929 0.9320 +865 6932 0.5180 +865 6938 0.5980 +865 7040 0.4810 +865 7057 0.4020 +865 7082 0.7530 +865 7122 0.7500 +865 7157 0.5940 +865 7268 0.6130 +865 7291 0.5210 +865 7490 0.4050 +865 7913 0.4710 +865 7994 0.5310 +865 8013 0.7500 +865 8028 0.4500 +865 8065 0.9990 +865 8085 0.5040 +865 8289 0.5250 +865 8312 0.4010 +865 8331 0.4990 +865 8334 0.5070 +865 8337 0.5100 +865 8338 0.5070 +865 8340 0.4990 +865 8341 0.4990 +865 8342 0.4990 +865 8345 0.4990 +865 8347 0.4990 +865 8348 0.5070 +865 8349 0.5170 +865 8356 0.5810 +865 8361 0.5110 +865 8453 0.5480 +865 8493 0.7610 +865 8535 0.5550 +865 8784 0.8550 +865 8841 0.5490 +865 8850 0.4990 +865 8861 0.8130 +865 8970 0.4990 +865 9021 0.7630 +865 9070 0.5060 +865 9079 0.6360 +865 9139 0.4910 +865 9358 0.7500 +865 9616 0.9930 +865 9739 0.5210 +865 9757 0.4990 +865 9759 0.5500 +865 9978 0.6240 +865 10000 0.4160 +865 10013 0.5500 +865 10138 0.5030 +865 10273 0.5690 +865 10320 0.5380 +865 10398 0.7650 +865 10413 0.5040 +865 10891 0.4990 +865 11059 0.5040 +865 11091 0.5360 +865 22806 0.4380 +865 22955 0.4990 +865 23067 0.4990 +865 23112 0.5060 +865 23309 0.5370 +865 23429 0.5040 +865 23466 0.6800 +865 25925 0.5020 +865 25937 0.4990 +865 25942 0.7540 +865 26053 0.4990 +865 26523 0.5040 +865 27161 0.5300 +865 27327 0.4990 +865 27350 0.5710 +865 28996 0.8680 +865 30009 0.4440 +865 50943 0.9180 +865 51043 0.4780 +865 51176 0.7470 +865 51412 0.5170 +865 51441 0.5200 +865 54145 0.4990 +865 55170 0.5070 +865 55193 0.5410 +865 55626 0.4220 +865 55766 0.4990 +865 55904 0.4990 +865 57050 0.7590 +865 57154 0.7500 +865 57332 0.5640 +865 57379 0.5280 +865 57492 0.5040 +865 57592 0.5020 +865 58508 0.5100 +865 59269 0.5100 +865 60489 0.9570 +865 80012 0.5000 +865 83737 0.5150 +865 84333 0.5200 +865 84661 0.5060 +865 84733 0.5510 +865 84955 0.6240 +865 85236 0.4990 +865 94239 0.5040 +865 121340 0.5930 +865 122809 0.7830 +865 128312 0.4990 +865 133522 0.4990 +865 140564 0.6990 +865 161882 0.6040 +865 164668 0.6640 +865 192669 0.5000 +865 192670 0.4990 +865 196528 0.5070 +865 200315 0.4130 +865 200316 0.9670 +865 200845 0.4990 +865 221044 0.4990 +865 255626 0.4990 +865 285231 0.6140 +865 474382 0.5140 +865 653604 0.5860 +865 100506658 0.7500 +865 100532731 0.5060 +866 1268 0.6960 +866 1269 0.5010 +866 1356 0.5720 +866 1392 0.6010 +866 1636 0.5070 +866 1690 0.4510 +866 1991 0.4250 +866 2147 0.4430 +866 2166 0.4630 +866 2243 0.4690 +866 2244 0.4300 +866 2266 0.4270 +866 2638 0.4260 +866 2841 0.4620 +866 2908 0.7260 +866 3053 0.4380 +866 3172 0.4300 +866 3240 0.4070 +866 3263 0.6020 +866 3290 0.6030 +866 3291 0.6640 +866 3350 0.6120 +866 3630 0.4580 +866 3698 0.4730 +866 3816 0.5290 +866 3817 0.5180 +866 4158 0.4190 +866 4306 0.6390 +866 5004 0.4890 +866 5005 0.6570 +866 5066 0.4200 +866 5176 0.6470 +866 5265 0.5640 +866 5443 0.7200 +866 5465 0.4660 +866 5468 0.5880 +866 6010 0.4630 +866 6462 0.9530 +866 6898 0.4280 +866 6906 0.6250 +866 7018 0.4060 +866 7025 0.6490 +866 7276 0.6640 +866 7442 0.7200 +866 7466 0.4180 +866 8455 0.4120 +866 8989 0.4490 +866 9290 0.7050 +866 11098 0.4060 +866 11343 0.4910 +866 51393 0.6840 +866 54587 0.4060 +866 54757 0.4250 +866 79054 0.5270 +866 139760 0.5350 +866 200895 0.4370 +867 914 0.4420 +867 915 0.4850 +867 916 0.4980 +867 917 0.5590 +867 919 0.5230 +867 921 0.8080 +867 945 0.7360 +867 952 0.8230 +867 958 0.6020 +867 967 0.4030 +867 975 0.5080 +867 999 0.6880 +867 1080 0.6860 +867 1173 0.5850 +867 1175 0.5000 +867 1211 0.5750 +867 1398 0.9990 +867 1399 0.9990 +867 1432 0.6100 +867 1435 0.7260 +867 1436 0.9640 +867 1445 0.8390 +867 1499 0.9100 +867 1601 0.6140 +867 1759 0.4660 +867 1839 0.6060 +867 1950 0.8590 +867 1956 0.9990 +867 1969 0.9260 +867 2017 0.7010 +867 2046 0.4230 +867 2047 0.6560 +867 2056 0.5090 +867 2057 0.6420 +867 2059 0.6200 +867 2060 0.7660 +867 2064 0.9440 +867 2065 0.7320 +867 2066 0.8610 +867 2069 0.5950 +867 2113 0.4560 +867 2185 0.9350 +867 2209 0.4050 +867 2212 0.4120 +867 2246 0.6840 +867 2247 0.6160 +867 2248 0.5950 +867 2249 0.6010 +867 2250 0.5940 +867 2251 0.5950 +867 2252 0.6140 +867 2253 0.6050 +867 2254 0.6220 +867 2255 0.6160 +867 2260 0.6480 +867 2261 0.7220 +867 2263 0.8110 +867 2264 0.7120 +867 2268 0.7660 +867 2319 0.8830 +867 2321 0.6890 +867 2322 0.8520 +867 2323 0.5760 +867 2332 0.4310 +867 2334 0.5710 +867 2335 0.9440 +867 2533 0.4990 +867 2534 0.9980 +867 2549 0.4130 +867 2597 0.5090 +867 2694 0.8630 +867 2810 0.4450 +867 2885 0.9990 +867 2889 0.9990 +867 3002 0.4670 +867 3055 0.9300 +867 3059 0.5990 +867 3082 0.6710 +867 3145 0.5090 +867 3265 0.4550 +867 3267 0.5280 +867 3308 0.4400 +867 3309 0.5010 +867 3320 0.6670 +867 3394 0.4110 +867 3480 0.8530 +867 3569 0.7710 +867 3570 0.5320 +867 3572 0.5050 +867 3630 0.4450 +867 3635 0.7860 +867 3636 0.9650 +867 3643 0.9290 +867 3659 0.5800 +867 3661 0.4210 +867 3667 0.7040 +867 3702 0.7200 +867 3716 0.7450 +867 3717 0.7900 +867 3725 0.6110 +867 3791 0.8050 +867 3815 0.9570 +867 3875 0.4920 +867 3937 0.9810 +867 3949 0.5000 +867 4036 0.5800 +867 4058 0.4720 +867 4067 0.9870 +867 4193 0.5580 +867 4233 0.9990 +867 4254 0.6070 +867 4486 0.8680 +867 4548 0.7570 +867 4552 0.5950 +867 4594 0.8390 +867 4627 0.4880 +867 4641 0.5190 +867 4690 0.9580 +867 4734 0.7510 +867 4738 0.6860 +867 4763 0.5110 +867 4798 0.5030 +867 4851 0.6100 +867 4893 0.5430 +867 4914 0.7150 +867 5156 0.9190 +867 5159 0.5890 +867 5290 0.8870 +867 5291 0.8900 +867 5293 0.7220 +867 5294 0.6130 +867 5295 0.9990 +867 5296 0.9540 +867 5315 0.4330 +867 5335 0.9840 +867 5336 0.8430 +867 5515 0.5370 +867 5516 0.5140 +867 5518 0.6810 +867 5566 0.4420 +867 5567 0.4460 +867 5568 0.4380 +867 5578 0.5470 +867 5588 0.4570 +867 5595 0.4560 +867 5599 0.6320 +867 5728 0.6870 +867 5747 0.8930 +867 5753 0.8090 +867 5774 0.4440 +867 5777 0.5050 +867 5781 0.9510 +867 5788 0.4050 +867 5795 0.4470 +867 5796 0.5020 +867 5829 0.8710 +867 5867 0.4940 +867 5868 0.4420 +867 5877 0.4610 +867 5894 0.6800 +867 5979 0.7060 +867 6047 0.4320 +867 6233 0.9540 +867 6311 0.4650 +867 6314 0.4310 +867 6452 0.7170 +867 6453 0.8430 +867 6455 0.8870 +867 6456 0.9420 +867 6457 0.9140 +867 6464 0.9960 +867 6503 0.9300 +867 6517 0.4310 +867 6531 0.5400 +867 6654 0.8270 +867 6655 0.4020 +867 6708 0.4290 +867 6714 0.9990 +867 6744 0.6290 +867 6772 0.6330 +867 6774 0.8800 +867 6776 0.7550 +867 6777 0.4290 +867 6844 0.5200 +867 6845 0.5350 +867 6850 0.9970 +867 6947 0.9340 +867 6948 0.9170 +867 7039 0.6650 +867 7048 0.9600 +867 7070 0.5800 +867 7124 0.6100 +867 7132 0.4350 +867 7189 0.9050 +867 7249 0.4320 +867 7251 0.4760 +867 7297 0.7460 +867 7311 0.9480 +867 7314 0.9510 +867 7316 0.9940 +867 7321 0.8330 +867 7322 0.9940 +867 7323 0.7410 +867 7324 0.4320 +867 7332 0.9980 +867 7334 0.6600 +867 7409 0.9970 +867 7410 0.7470 +867 7414 0.5550 +867 7454 0.6780 +867 7525 0.7090 +867 7529 0.8470 +867 7531 0.4830 +867 7532 0.4700 +867 7533 0.6700 +867 7534 0.8990 +867 7535 0.9990 +867 8027 0.5880 +867 8029 0.8050 +867 8074 0.5130 +867 8239 0.5880 +867 8301 0.5260 +867 8411 0.4050 +867 8440 0.7100 +867 8470 0.9270 +867 8503 0.8260 +867 8517 0.5360 +867 8563 0.5150 +867 8650 0.5830 +867 8673 0.5000 +867 8737 0.4530 +867 8795 0.6090 +867 8797 0.4470 +867 8817 0.5970 +867 8822 0.5950 +867 8823 0.6160 +867 8826 0.4530 +867 8835 0.5620 +867 8837 0.5570 +867 8867 0.5300 +867 8874 0.9890 +867 9040 0.8460 +867 9101 0.4490 +867 9146 0.7890 +867 9185 0.5380 +867 9253 0.5620 +867 9306 0.6210 +867 9341 0.5290 +867 9365 0.5110 +867 9402 0.9530 +867 9459 0.6310 +867 9564 0.9260 +867 9610 0.4780 +867 9846 0.7440 +867 9892 0.5410 +867 9965 0.5130 +867 9978 0.4010 +867 10006 0.6970 +867 10015 0.5290 +867 10019 0.6820 +867 10152 0.5350 +867 10174 0.7580 +867 10211 0.7400 +867 10252 0.9030 +867 10253 0.9990 +867 10254 0.6230 +867 10273 0.4800 +867 10277 0.6170 +867 10519 0.4720 +867 10580 0.9890 +867 10603 0.9910 +867 10657 0.4550 +867 10750 0.6730 +867 10817 0.4140 +867 10818 0.9240 +867 10971 0.8030 +867 11059 0.5140 +867 11140 0.5540 +867 11322 0.4370 +867 22821 0.4240 +867 22905 0.6740 +867 23091 0.4490 +867 23327 0.4310 +867 23433 0.6500 +867 23586 0.7710 +867 23603 0.6240 +867 23607 0.9880 +867 23624 0.9120 +867 25759 0.5640 +867 25962 0.5750 +867 25974 0.5250 +867 26018 0.8440 +867 26060 0.4920 +867 26119 0.5080 +867 26130 0.4740 +867 26191 0.6720 +867 26281 0.6160 +867 27006 0.6060 +867 27040 0.8420 +867 27249 0.7920 +867 27338 0.7380 +867 29760 0.9670 +867 29924 0.8660 +867 29978 0.5320 +867 30011 0.9990 +867 50618 0.5200 +867 50807 0.4940 +867 51185 0.4460 +867 51293 0.5450 +867 51529 0.5240 +867 51806 0.4930 +867 53347 0.9610 +867 55620 0.6120 +867 55788 0.6650 +867 55914 0.4460 +867 56904 0.8000 +867 57154 0.4070 +867 57488 0.4230 +867 58513 0.8640 +867 79872 0.4810 +867 79930 0.6710 +867 80762 0.4820 +867 81631 0.6260 +867 81693 0.5660 +867 81848 0.6800 +867 83737 0.6830 +867 84174 0.9750 +867 84548 0.6040 +867 84951 0.5700 +867 84959 0.9470 +867 91860 0.4930 +867 120892 0.4500 +867 127002 0.4710 +867 139716 0.5310 +867 146433 0.5170 +867 147381 0.4020 +867 152831 0.5020 +867 163688 0.4930 +867 166785 0.8510 +867 171222 0.9090 +867 203068 0.4240 +867 222255 0.4720 +867 255324 0.5970 +867 326625 0.8290 +869 1006 0.4420 +869 1008 0.4170 +869 1742 0.4020 +869 2559 0.6370 +869 2674 0.4170 +869 2746 0.8350 +869 2894 0.5600 +869 2895 0.9950 +869 2936 0.4510 +869 3787 0.4230 +869 5816 0.4340 +869 6616 0.4210 +869 6750 0.4680 +869 7545 0.4090 +869 8404 0.4530 +869 8678 0.5870 +869 9312 0.4460 +869 9369 0.5650 +869 9378 0.9940 +869 9379 0.9890 +869 9746 0.4730 +869 22871 0.6110 +869 22986 0.4700 +869 26045 0.7170 +869 30820 0.4060 +869 54413 0.5070 +869 55966 0.4170 +869 56934 0.5520 +869 57030 0.5090 +869 57084 0.5410 +869 57502 0.5600 +869 57554 0.4080 +869 57555 0.5590 +869 64359 0.7450 +869 85397 0.5430 +869 94030 0.5310 +869 124997 0.4040 +869 126006 0.5810 +869 131149 0.4630 +869 140679 0.5220 +869 140689 0.5050 +869 147381 0.4360 +869 159371 0.4390 +869 347730 0.6480 +869 347731 0.4600 +869 729330 0.6780 +871 920 0.5370 +871 925 0.5440 +871 928 0.7460 +871 950 0.4520 +871 960 0.5140 +871 1025 0.4050 +871 1277 0.9210 +871 1278 0.8790 +871 1280 0.7910 +871 1281 0.8760 +871 1282 0.8180 +871 1284 0.8800 +871 1285 0.6230 +871 1286 0.5720 +871 1287 0.6530 +871 1288 0.6960 +871 1289 0.8040 +871 1290 0.8660 +871 1291 0.8370 +871 1292 0.8370 +871 1293 0.8310 +871 1294 0.6440 +871 1295 0.6500 +871 1296 0.5890 +871 1297 0.5720 +871 1298 0.5560 +871 1299 0.5440 +871 1300 0.7740 +871 1301 0.6730 +871 1302 0.5670 +871 1303 0.7360 +871 1305 0.5880 +871 1306 0.7660 +871 1307 0.6200 +871 1308 0.5550 +871 1310 0.6210 +871 1316 0.6250 +871 1385 0.5270 +871 1490 0.6300 +871 1634 0.6730 +871 1938 0.4110 +871 2033 0.4970 +871 2081 0.6050 +871 2091 0.4110 +871 2200 0.4760 +871 2331 0.6460 +871 2335 0.7400 +871 2597 0.4070 +871 2923 0.4680 +871 3303 0.5960 +871 3304 0.6730 +871 3308 0.5930 +871 3309 0.7470 +871 3312 0.7070 +871 3315 0.5860 +871 3316 0.4590 +871 3320 0.5320 +871 3326 0.5290 +871 3336 0.5470 +871 3337 0.7020 +871 3956 0.4510 +871 3958 0.5420 +871 4015 0.5640 +871 4016 0.4630 +871 4017 0.4550 +871 4060 0.6520 +871 4191 0.6300 +871 4253 0.4550 +871 4312 0.7110 +871 4313 0.4510 +871 4317 0.8720 +871 4319 0.4700 +871 4534 0.5110 +871 4921 0.4330 +871 5033 0.6280 +871 5034 0.6350 +871 5118 0.6880 +871 5351 0.4740 +871 5352 0.6770 +871 5358 0.5250 +871 5468 0.4110 +871 5479 0.8250 +871 5480 0.5420 +871 5530 0.6570 +871 6376 0.4700 +871 6513 0.5970 +871 6678 0.6340 +871 6876 0.4690 +871 6947 0.4400 +871 7040 0.4530 +871 7058 0.5900 +871 7076 0.4920 +871 7157 0.6810 +871 7184 0.6290 +871 7373 0.6910 +871 7431 0.4170 +871 7471 0.4180 +871 7837 0.4430 +871 8829 0.6580 +871 8974 0.6500 +871 8988 0.4480 +871 9507 0.5370 +871 9509 0.6190 +871 9601 0.5030 +871 9632 0.4300 +871 9871 0.6010 +871 10130 0.5440 +871 10296 0.4420 +871 10491 0.9000 +871 10609 0.4870 +871 10631 0.4570 +871 10956 0.7990 +871 11167 0.4100 +871 23197 0.6380 +871 25903 0.4200 +871 26577 0.4660 +871 27286 0.4150 +871 30816 0.4550 +871 50509 0.6290 +871 51360 0.5360 +871 55151 0.6960 +871 55245 0.5160 +871 55823 0.4410 +871 57124 0.5480 +871 57642 0.6260 +871 60681 0.9470 +871 64175 0.9110 +871 80267 0.4980 +871 80781 0.6400 +871 81578 0.6410 +871 84570 0.5630 +871 84955 0.6210 +871 85301 0.7350 +871 89782 0.5420 +871 90993 0.5740 +871 91522 0.5400 +871 121340 0.4820 +871 129080 0.8340 +871 131873 0.5550 +871 136227 0.9580 +871 140838 0.4280 +871 169044 0.5680 +871 255631 0.5820 +871 283208 0.5850 +871 284293 0.4950 +871 340267 0.6050 +871 375056 0.7160 +871 387733 0.6250 +871 493869 0.4020 +873 874 0.9830 +873 983 0.4010 +873 1109 0.5860 +873 1268 0.6050 +873 1429 0.4390 +873 1543 0.9360 +873 1548 0.9260 +873 1553 0.9240 +873 1555 0.4650 +873 1565 0.9300 +873 1571 0.9270 +873 1576 0.9410 +873 1645 0.6650 +873 1646 0.5960 +873 1719 0.9750 +873 1728 0.4790 +873 1847 0.4010 +873 1956 0.5750 +873 2052 0.4610 +873 2099 0.4210 +873 2166 0.5260 +873 2194 0.4070 +873 2230 0.4720 +873 2260 0.4290 +873 2739 0.4720 +873 2908 0.4200 +873 2923 0.5090 +873 2936 0.4200 +873 2950 0.4640 +873 3141 0.4570 +873 3284 0.4140 +873 3290 0.4330 +873 3482 0.4200 +873 3925 0.5010 +873 4043 0.4160 +873 4430 0.4380 +873 5052 0.4200 +873 5053 0.4210 +873 5092 0.5800 +873 5121 0.4200 +873 5740 0.4190 +873 5743 0.5460 +873 5805 0.9180 +873 5860 0.5110 +873 6697 0.9740 +873 6774 0.4420 +873 7054 0.5070 +873 7166 0.5760 +873 7295 0.4410 +873 7296 0.4970 +873 7363 0.9140 +873 7364 0.9250 +873 7365 0.9170 +873 7366 0.9200 +873 7367 0.9250 +873 8574 0.5610 +873 8644 0.9710 +873 9536 0.9390 +873 9540 0.4040 +873 9563 0.4260 +873 10327 0.9090 +873 10720 0.9140 +873 10728 0.9390 +873 27130 0.4370 +873 27306 0.4200 +873 27349 0.4030 +873 54097 0.4310 +873 54490 0.9140 +873 54575 0.9260 +873 54576 0.9260 +873 54577 0.9250 +873 54578 0.9330 +873 54579 0.9130 +873 54600 0.9210 +873 54657 0.9250 +873 54658 0.9240 +873 54659 0.9160 +873 54995 0.4560 +873 57016 0.9590 +873 64332 0.4600 +873 79154 0.5420 +873 79783 0.4150 +873 79799 0.9200 +873 80142 0.9370 +873 84105 0.4160 +873 84693 0.8180 +873 84869 0.5540 +873 85413 0.4790 +873 112812 0.4680 +873 135152 0.4460 +873 200895 0.9810 +873 574537 0.9150 +873 653361 0.4200 +874 1109 0.4920 +874 1244 0.4350 +874 1429 0.4630 +874 1543 0.9290 +874 1544 0.4970 +874 1548 0.9170 +874 1553 0.9170 +874 1555 0.5490 +874 1565 0.9320 +874 1571 0.9260 +874 1576 0.9520 +874 1577 0.4310 +874 1645 0.5120 +874 1646 0.4910 +874 1728 0.6370 +874 1757 0.5410 +874 2052 0.4080 +874 2230 0.4670 +874 2739 0.4630 +874 2950 0.6150 +874 3294 0.5210 +874 3576 0.4220 +874 4363 0.4390 +874 4722 0.4480 +874 4741 0.4370 +874 4747 0.4210 +874 5224 0.4110 +874 5243 0.4240 +874 6373 0.4170 +874 6386 0.6150 +874 6783 0.4180 +874 7296 0.4840 +874 7363 0.7050 +874 7364 0.7450 +874 7365 0.7100 +874 7366 0.7440 +874 7367 0.7150 +874 8574 0.4500 +874 8644 0.5360 +874 9536 0.9040 +874 10327 0.9230 +874 10720 0.7110 +874 10728 0.9190 +874 10935 0.4440 +874 27130 0.4200 +874 27233 0.4190 +874 27349 0.4070 +874 54490 0.7100 +874 54575 0.7330 +874 54576 0.7390 +874 54577 0.7310 +874 54578 0.7780 +874 54579 0.7050 +874 54600 0.7230 +874 54657 0.7310 +874 54658 0.7210 +874 54659 0.7090 +874 54995 0.4550 +874 57016 0.4700 +874 57834 0.5120 +874 64078 0.5570 +874 79799 0.7360 +874 80142 0.9060 +874 81669 0.4010 +874 84144 0.4290 +874 84869 0.6020 +874 85360 0.4280 +874 85413 0.5090 +874 112812 0.4680 +874 114781 0.5690 +874 574537 0.7100 +875 883 0.9350 +875 1036 0.6680 +875 1180 0.5220 +875 1184 0.4780 +875 1373 0.4120 +875 1409 0.5770 +875 1428 0.5900 +875 1431 0.4910 +875 1476 0.5950 +875 1488 0.4230 +875 1491 0.9990 +875 1499 0.4990 +875 1595 0.4210 +875 1610 0.6700 +875 1719 0.5530 +875 1757 0.4830 +875 1788 0.5210 +875 1827 0.4420 +875 1915 0.4760 +875 1917 0.4430 +875 2017 0.4500 +875 2023 0.4420 +875 2098 0.5250 +875 2099 0.4180 +875 2152 0.4570 +875 2200 0.4640 +875 2232 0.4080 +875 2235 0.4250 +875 2271 0.4480 +875 2539 0.4370 +875 2597 0.7610 +875 2618 0.6440 +875 2639 0.4110 +875 2729 0.6030 +875 2730 0.4780 +875 2731 0.5260 +875 2752 0.7050 +875 2805 0.4500 +875 2840 0.5710 +875 2875 0.4250 +875 2877 0.4940 +875 2878 0.5030 +875 2879 0.4600 +875 2880 0.4990 +875 2882 0.4940 +875 2896 0.5290 +875 2936 0.4700 +875 2937 0.4740 +875 3059 0.4240 +875 3064 0.8300 +875 3105 0.4050 +875 3107 0.4240 +875 3162 0.6480 +875 3163 0.5040 +875 3308 0.4100 +875 3329 0.4310 +875 3336 0.5500 +875 3577 0.4160 +875 3614 0.4580 +875 3615 0.7600 +875 3630 0.4920 +875 3658 0.4550 +875 3735 0.4550 +875 3852 0.4090 +875 3931 0.5430 +875 4137 0.5820 +875 4141 0.6170 +875 4143 0.8470 +875 4144 0.7130 +875 4191 0.4430 +875 4357 0.9270 +875 4482 0.5400 +875 4507 0.6420 +875 4522 0.8700 +875 4524 0.9560 +875 4548 0.9940 +875 4552 0.9700 +875 4594 0.4140 +875 4625 0.4140 +875 4731 0.5050 +875 4747 0.4470 +875 4780 0.4020 +875 4842 0.7400 +875 4843 0.6890 +875 4846 0.7680 +875 4942 0.5870 +875 4953 0.4730 +875 5018 0.4180 +875 5045 0.4660 +875 5198 0.4420 +875 5211 0.5850 +875 5230 0.4370 +875 5316 0.5690 +875 5351 0.4300 +875 5431 0.8200 +875 5444 0.6010 +875 5447 0.6680 +875 5464 0.4930 +875 5468 0.4480 +875 5571 0.8330 +875 5626 0.4350 +875 5723 0.9610 +875 5832 0.4870 +875 6189 0.5710 +875 6389 0.4010 +875 6390 0.4170 +875 6470 0.9870 +875 6472 0.9720 +875 6573 0.5270 +875 6622 0.4080 +875 6647 0.5310 +875 6648 0.4560 +875 6652 0.4510 +875 6821 0.6920 +875 6907 0.7900 +875 6948 0.5950 +875 7031 0.4460 +875 7040 0.4260 +875 7076 0.4990 +875 7124 0.4110 +875 7167 0.5680 +875 7173 0.6660 +875 7263 0.7350 +875 7273 0.4790 +875 7275 0.4480 +875 7295 0.5540 +875 7298 0.6770 +875 7307 0.6060 +875 7317 0.4480 +875 7318 0.4180 +875 7329 0.4530 +875 7357 0.4890 +875 7837 0.5460 +875 8192 0.4040 +875 8337 0.4500 +875 8338 0.4500 +875 8349 0.4690 +875 8513 0.4490 +875 8565 0.5930 +875 8566 0.5120 +875 8833 0.5260 +875 8867 0.4630 +875 8883 0.4270 +875 8972 0.4420 +875 8991 0.8480 +875 9039 0.4180 +875 9054 0.6100 +875 9060 0.6450 +875 9061 0.6530 +875 9401 0.4180 +875 9451 0.4210 +875 9517 0.8400 +875 9563 0.5570 +875 9619 0.4470 +875 9817 0.4220 +875 9942 0.4050 +875 10054 0.4910 +875 10055 0.4290 +875 10247 0.4310 +875 10400 0.4740 +875 10427 0.5270 +875 10533 0.4770 +875 10558 0.8400 +875 10606 0.4220 +875 10768 0.9730 +875 10785 0.5570 +875 10797 0.5240 +875 10840 0.4050 +875 10841 0.4320 +875 10987 0.4910 +875 10993 0.9570 +875 11212 0.4040 +875 22921 0.7210 +875 23382 0.9750 +875 23435 0.5810 +875 23464 0.4340 +875 23474 0.6470 +875 23478 0.4180 +875 23479 0.4080 +875 23491 0.4460 +875 23657 0.5160 +875 23743 0.9700 +875 25813 0.4580 +875 25902 0.5130 +875 25974 0.4880 +875 26227 0.6860 +875 26504 0.8390 +875 26505 0.8360 +875 26507 0.9060 +875 27158 0.6480 +875 27232 0.7120 +875 27249 0.6820 +875 27291 0.8440 +875 27304 0.4180 +875 27430 0.4060 +875 29958 0.4970 +875 29968 0.6430 +875 51380 0.5290 +875 51422 0.7950 +875 51540 0.5360 +875 51806 0.7550 +875 53347 0.4720 +875 53632 0.7580 +875 54805 0.7890 +875 55034 0.4350 +875 55236 0.4180 +875 55304 0.8400 +875 55349 0.5470 +875 55636 0.5090 +875 55788 0.6460 +875 55811 0.4630 +875 56267 0.9310 +875 57380 0.4930 +875 57818 0.4040 +875 58472 0.6830 +875 58478 0.4570 +875 58494 0.4990 +875 58515 0.4230 +875 63826 0.9480 +875 64319 0.5720 +875 79587 0.9320 +875 79814 0.4130 +875 79876 0.4910 +875 80308 0.6180 +875 81031 0.4030 +875 81570 0.4900 +875 84706 0.4460 +875 90701 0.4280 +875 91860 0.7550 +875 92935 0.4320 +875 93432 0.4420 +875 113675 0.9530 +875 120892 0.4340 +875 137902 0.5420 +875 139596 0.4950 +875 163688 0.7550 +875 200895 0.4520 +875 203228 0.5400 +875 254428 0.4260 +875 257202 0.4980 +875 339896 0.4060 +875 441024 0.4020 +875 493869 0.4900 +875 100130890 0.7100 +875 100131187 0.7300 +881 1538 0.9820 +881 1539 0.9890 +881 2632 0.4410 +881 26737 0.4470 +881 51542 0.4460 +881 81833 0.4250 +881 83893 0.4510 +881 139741 0.4910 +881 140625 0.4250 +881 219938 0.4090 +881 283417 0.4950 +883 1036 0.9040 +883 1373 0.4360 +883 1491 0.9630 +883 1610 0.4010 +883 1629 0.4120 +883 2021 0.7860 +883 2271 0.5290 +883 2729 0.8060 +883 2730 0.8320 +883 2805 0.9430 +883 2806 0.9790 +883 2859 0.6270 +883 3034 0.4410 +883 3081 0.4850 +883 3242 0.4800 +883 3620 0.6890 +883 4143 0.4620 +883 4144 0.5040 +883 4357 0.9200 +883 4548 0.9290 +883 4835 0.4300 +883 4953 0.4950 +883 5832 0.5520 +883 6389 0.5140 +883 6999 0.8310 +883 7263 0.9100 +883 7296 0.9200 +883 8564 0.9840 +883 8942 0.9860 +883 8991 0.8100 +883 9380 0.5330 +883 9563 0.4760 +883 10157 0.4500 +883 10587 0.9180 +883 10768 0.9230 +883 10993 0.8510 +883 10999 0.4080 +883 23262 0.4190 +883 23382 0.9200 +883 23475 0.6990 +883 23498 0.7360 +883 23743 0.9230 +883 26009 0.6260 +883 51056 0.8190 +883 51166 0.9990 +883 51179 0.4030 +883 51490 0.9290 +883 51562 0.6280 +883 51582 0.4710 +883 54662 0.9040 +883 55163 0.4290 +883 55256 0.5470 +883 55258 0.4280 +883 55689 0.6030 +883 56267 0.9090 +883 56954 0.6270 +883 79017 0.8030 +883 79717 0.8250 +883 79896 0.4600 +883 84842 0.4330 +883 113451 0.4720 +883 113675 0.8240 +883 114112 0.9180 +883 125061 0.9650 +883 130013 0.6250 +883 137362 0.9300 +883 169355 0.6430 +883 253143 0.4830 +883 259307 0.5010 +883 387921 0.5070 +883 388630 0.5830 +885 886 0.9990 +885 887 0.9990 +885 891 0.5750 +885 898 0.5070 +885 920 0.4880 +885 925 0.4330 +885 928 0.4400 +885 942 0.4010 +885 947 0.5440 +885 949 0.5510 +885 953 0.4260 +885 956 0.4120 +885 960 0.5920 +885 967 0.4930 +885 975 0.4020 +885 983 0.5110 +885 999 0.7780 +885 1000 0.7340 +885 1017 0.6140 +885 1019 0.6240 +885 1021 0.5650 +885 1026 0.4140 +885 1029 0.4180 +885 1113 0.5320 +885 1128 0.4310 +885 1268 0.5540 +885 1277 0.4380 +885 1357 0.4380 +885 1385 0.4430 +885 1392 0.7350 +885 1394 0.4980 +885 1490 0.4280 +885 1499 0.7390 +885 1504 0.5180 +885 1506 0.4110 +885 1621 0.4810 +885 1622 0.8200 +885 1630 0.4210 +885 1649 0.4070 +885 1728 0.4380 +885 1786 0.4020 +885 1791 0.6450 +885 1803 0.4570 +885 1869 0.4760 +885 1950 0.7380 +885 1956 0.6270 +885 1995 0.5260 +885 2022 0.4470 +885 2064 0.5130 +885 2099 0.5360 +885 2146 0.5320 +885 2247 0.5900 +885 2248 0.4030 +885 2305 0.4590 +885 2308 0.4370 +885 2309 0.4380 +885 2335 0.5460 +885 2353 0.7080 +885 2475 0.5710 +885 2520 0.9930 +885 2571 0.6130 +885 2572 0.5260 +885 2597 0.8810 +885 2641 0.8900 +885 2670 0.5140 +885 2691 0.5040 +885 2693 0.7760 +885 2695 0.8660 +885 2740 0.7340 +885 2796 0.5720 +885 2837 0.5370 +885 2862 0.6650 +885 2864 0.4820 +885 2865 0.5210 +885 2869 0.5220 +885 2875 0.4800 +885 2877 0.4610 +885 2878 0.4410 +885 2879 0.5310 +885 2880 0.4410 +885 2882 0.4410 +885 2915 0.4380 +885 2922 0.9720 +885 2925 0.6530 +885 2932 0.5840 +885 3021 0.4480 +885 3060 0.8490 +885 3091 0.6280 +885 3099 0.4030 +885 3146 0.4290 +885 3162 0.5560 +885 3309 0.5120 +885 3350 0.4840 +885 3359 0.4470 +885 3361 0.4690 +885 3375 0.8100 +885 3458 0.5440 +885 3479 0.5330 +885 3480 0.4430 +885 3485 0.4070 +885 3486 0.4950 +885 3490 0.4440 +885 3552 0.4360 +885 3553 0.7270 +885 3558 0.4600 +885 3565 0.4880 +885 3569 0.7190 +885 3576 0.4640 +885 3586 0.5450 +885 3605 0.4410 +885 3606 0.4310 +885 3630 0.8430 +885 3688 0.5120 +885 3717 0.5130 +885 3725 0.5770 +885 3765 0.4100 +885 3791 0.4250 +885 3814 0.5490 +885 3815 0.4230 +885 3827 0.6390 +885 3845 0.4590 +885 3952 0.8820 +885 3953 0.4760 +885 4001 0.4640 +885 4087 0.5230 +885 4088 0.4960 +885 4089 0.4430 +885 4130 0.4500 +885 4160 0.6880 +885 4170 0.4420 +885 4193 0.4260 +885 4288 0.4030 +885 4295 0.9030 +885 4313 0.6330 +885 4314 0.4500 +885 4316 0.4300 +885 4318 0.7160 +885 4322 0.5390 +885 4594 0.8130 +885 4609 0.6680 +885 4772 0.4450 +885 4780 0.5010 +885 4790 0.4470 +885 4792 0.5670 +885 4803 0.4110 +885 4828 0.6540 +885 4829 0.5980 +885 4842 0.4480 +885 4851 0.4800 +885 4852 0.9160 +885 4887 0.4670 +885 4907 0.4470 +885 4922 0.9280 +885 4925 0.4890 +885 4975 0.4960 +885 4988 0.7470 +885 5020 0.8370 +885 5122 0.4770 +885 5173 0.7640 +885 5175 0.5890 +885 5179 0.5510 +885 5241 0.4030 +885 5243 0.4180 +885 5315 0.4610 +885 5330 0.6400 +885 5331 0.5790 +885 5367 0.7820 +885 5368 0.4960 +885 5406 0.4720 +885 5443 0.8200 +885 5460 0.5090 +885 5465 0.4070 +885 5468 0.5140 +885 5539 0.8000 +885 5578 0.4380 +885 5595 0.6280 +885 5697 0.9030 +885 5728 0.6240 +885 5729 0.5430 +885 5743 0.5100 +885 5747 0.4310 +885 5754 0.9230 +885 5788 0.4770 +885 5816 0.8190 +885 5925 0.4050 +885 6010 0.4630 +885 6093 0.4230 +885 6198 0.5140 +885 6319 0.4680 +885 6343 0.8760 +885 6347 0.4180 +885 6391 0.6680 +885 6529 0.4360 +885 6564 0.5620 +885 6565 0.4440 +885 6591 0.5420 +885 6615 0.6110 +885 6616 0.4450 +885 6620 0.4110 +885 6657 0.5250 +885 6659 0.4030 +885 6662 0.4820 +885 6696 0.5490 +885 6710 0.4010 +885 6714 0.4620 +885 6750 0.9330 +885 6774 0.7020 +885 6781 0.6670 +885 6853 0.4020 +885 6855 0.4340 +885 6863 0.9200 +885 6869 0.4170 +885 7040 0.6340 +885 7054 0.6660 +885 7070 0.5440 +885 7082 0.4450 +885 7099 0.5400 +885 7124 0.6880 +885 7157 0.6950 +885 7200 0.7510 +885 7201 0.5790 +885 7204 0.5080 +885 7251 0.4790 +885 7291 0.4370 +885 7432 0.8760 +885 7434 0.4290 +885 7442 0.4040 +885 7837 0.8550 +885 7852 0.4300 +885 8034 0.4520 +885 8091 0.4410 +885 8290 0.4670 +885 8356 0.4490 +885 8600 0.4800 +885 8620 0.6320 +885 8678 0.6300 +885 8842 0.5070 +885 8878 0.4630 +885 8900 0.4740 +885 8997 0.5300 +885 9370 0.5060 +885 9429 0.4390 +885 9451 0.5970 +885 9474 0.5420 +885 9564 0.4280 +885 9607 0.6730 +885 9817 0.4270 +885 9839 0.4010 +885 9971 0.4210 +885 10243 0.4110 +885 10316 0.5500 +885 10413 0.4520 +885 10533 0.4780 +885 10800 0.5210 +885 10874 0.6560 +885 10887 0.5400 +885 10911 0.4880 +885 11096 0.4290 +885 22926 0.4010 +885 23236 0.6170 +885 23411 0.5430 +885 23560 0.4370 +885 23620 0.4460 +885 25970 0.4260 +885 27032 0.5830 +885 27161 0.6540 +885 29126 0.4480 +885 51052 0.4180 +885 51083 0.8650 +885 51738 0.9580 +885 53373 0.6030 +885 54205 0.5880 +885 56339 0.4640 +885 56477 0.9950 +885 56923 0.5840 +885 56934 0.4600 +885 57030 0.5070 +885 57084 0.4850 +885 57105 0.5030 +885 57721 0.4010 +885 58157 0.4070 +885 60675 0.5430 +885 79792 0.4420 +885 79923 0.4870 +885 80834 0.4310 +885 80835 0.4260 +885 81631 0.6170 +885 81669 0.4180 +885 83756 0.4870 +885 84432 0.5080 +885 84557 0.4940 +885 89780 0.4250 +885 93377 0.4080 +885 114548 0.4160 +885 115557 0.5530 +885 121340 0.4180 +885 128674 0.5500 +885 129521 0.5110 +885 132204 0.4430 +885 137902 0.8560 +885 139760 0.4520 +885 140679 0.5280 +885 146713 0.4830 +885 150353 0.4320 +885 151306 0.4610 +885 168620 0.5540 +885 197131 0.4910 +885 246213 0.4700 +885 255738 0.5810 +885 257202 0.4270 +885 257313 0.5490 +885 338557 0.5150 +885 347148 0.5080 +885 387129 0.5960 +885 440093 0.4830 +885 440387 0.4930 +885 440686 0.4490 +885 493869 0.4520 +885 594857 0.7250 +885 619373 0.4110 +885 653145 0.5070 +885 653604 0.4480 +885 723961 0.4470 +886 2353 0.4020 +886 2520 0.9760 +886 2641 0.7380 +886 2642 0.5740 +886 2693 0.6390 +886 2695 0.6480 +886 2740 0.7090 +886 2767 0.9210 +886 2769 0.7070 +886 2770 0.9110 +886 2776 0.9960 +886 2778 0.9130 +886 2782 0.9090 +886 2862 0.4930 +886 2865 0.4570 +886 2869 0.5300 +886 2922 0.7460 +886 2925 0.4930 +886 3060 0.4380 +886 3630 0.4430 +886 3827 0.5770 +886 3952 0.7110 +886 3953 0.5060 +886 4159 0.4690 +886 4160 0.4550 +886 4295 0.6240 +886 4828 0.6840 +886 4829 0.4690 +886 4852 0.5560 +886 4887 0.4720 +886 4922 0.4970 +886 5020 0.4080 +886 5330 0.5580 +886 5331 0.5140 +886 5443 0.5020 +886 5539 0.4300 +886 5697 0.5970 +886 5754 0.9520 +886 6343 0.4860 +886 6750 0.5340 +886 6752 0.4270 +886 7200 0.6220 +886 7201 0.4380 +886 7204 0.4990 +886 8823 0.4200 +886 8997 0.4990 +886 9607 0.4770 +886 9630 0.7330 +886 10316 0.4520 +886 10800 0.4490 +886 10874 0.5760 +886 10887 0.4540 +886 10911 0.5000 +886 23216 0.6910 +886 23236 0.5590 +886 51738 0.7450 +886 54331 0.8160 +886 56477 0.9500 +886 56923 0.4610 +886 57105 0.4900 +886 57620 0.7360 +886 60675 0.5260 +886 84432 0.5320 +886 94121 0.5030 +886 115557 0.4990 +886 128674 0.4560 +886 129521 0.5740 +886 257313 0.6580 +886 387129 0.5460 +886 594857 0.5680 +887 1113 0.4220 +887 1394 0.5440 +887 2268 0.5500 +887 2520 0.9990 +887 2641 0.5460 +887 2693 0.4730 +887 2695 0.5590 +887 2767 0.5170 +887 2770 0.6060 +887 2771 0.7990 +887 2773 0.6060 +887 2775 0.4710 +887 2776 0.9270 +887 2782 0.4290 +887 2862 0.4210 +887 2869 0.5300 +887 2922 0.7480 +887 2925 0.5150 +887 3055 0.5480 +887 3067 0.5110 +887 3747 0.4390 +887 3827 0.5230 +887 4160 0.4030 +887 4295 0.5680 +887 4828 0.6280 +887 4829 0.4800 +887 4852 0.4490 +887 4884 0.4770 +887 4922 0.4840 +887 5330 0.5140 +887 5331 0.5140 +887 5562 0.7240 +887 5564 0.6290 +887 5571 0.6820 +887 5754 0.9370 +887 5781 0.6340 +887 6334 0.4020 +887 6714 0.5350 +887 6750 0.6020 +887 7032 0.4540 +887 7200 0.5760 +887 7201 0.4240 +887 7204 0.4990 +887 8549 0.4030 +887 8997 0.5110 +887 9630 0.5170 +887 10312 0.8170 +887 10316 0.4470 +887 10753 0.4620 +887 10800 0.4370 +887 10874 0.5660 +887 10887 0.4430 +887 10911 0.4990 +887 23236 0.5520 +887 50863 0.4180 +887 51738 0.6670 +887 56477 0.6970 +887 56923 0.4420 +887 57105 0.4430 +887 59345 0.4670 +887 60675 0.5190 +887 84432 0.5080 +887 84634 0.4080 +887 115557 0.5130 +887 128674 0.4660 +887 129521 0.5060 +887 134391 0.4310 +887 147381 0.4520 +887 257313 0.5720 +887 387129 0.5230 +887 594857 0.6310 +887 104909134 0.5080 +889 988 0.4500 +889 1003 0.7730 +889 1499 0.9610 +889 1500 0.5510 +889 1629 0.4500 +889 1730 0.4100 +889 1952 0.4130 +889 2022 0.6880 +889 2035 0.4620 +889 3688 0.5670 +889 4043 0.5860 +889 4093 0.4140 +889 4215 0.8220 +889 4289 0.4860 +889 4301 0.6370 +889 4633 0.7000 +889 5144 0.4240 +889 5189 0.4780 +889 5598 0.4300 +889 5783 0.5360 +889 5906 0.9990 +889 5908 0.9980 +889 5911 0.7290 +889 5962 0.4470 +889 6801 0.4480 +889 7010 0.5660 +889 8428 0.6180 +889 9138 0.4220 +889 9270 0.9990 +889 9475 0.7320 +889 9784 0.9960 +889 9786 0.4360 +889 10365 0.4870 +889 10411 0.4180 +889 10494 0.8480 +889 10755 0.4100 +889 10915 0.4880 +889 11146 0.4140 +889 11235 0.9970 +889 23089 0.4110 +889 30011 0.4110 +889 51362 0.4450 +889 51765 0.5300 +889 54467 0.4190 +889 54922 0.7540 +889 55610 0.6610 +889 56061 0.5180 +889 56899 0.4480 +889 57154 0.6110 +889 57493 0.9980 +889 59274 0.6600 +889 64897 0.5970 +889 65095 0.6520 +889 79677 0.4380 +889 83605 0.9990 +889 90627 0.4120 +889 140706 0.6660 +889 154007 0.4550 +889 282808 0.4280 +891 892 0.4710 +891 894 0.5880 +891 898 0.7460 +891 899 0.8470 +891 900 0.4070 +891 914 0.4660 +891 925 0.4830 +891 983 0.9990 +891 988 0.5730 +891 990 0.9310 +891 991 0.9990 +891 993 0.9950 +891 994 0.9510 +891 995 0.9910 +891 996 0.9990 +891 997 0.5000 +891 999 0.6860 +891 1000 0.5130 +891 1017 0.9990 +891 1018 0.9170 +891 1019 0.9400 +891 1020 0.8870 +891 1021 0.9270 +891 1022 0.9250 +891 1025 0.4170 +891 1026 0.9770 +891 1027 0.9720 +891 1028 0.8260 +891 1029 0.7720 +891 1030 0.4330 +891 1031 0.4910 +891 1032 0.4370 +891 1033 0.9410 +891 1058 0.9530 +891 1060 0.5060 +891 1062 0.9670 +891 1063 0.9880 +891 1104 0.5460 +891 1111 0.9350 +891 1119 0.4010 +891 1163 0.9980 +891 1164 0.9990 +891 1263 0.6950 +891 1278 0.4490 +891 1432 0.4060 +891 1499 0.6240 +891 1515 0.4870 +891 1647 0.9830 +891 1719 0.4190 +891 1778 0.4820 +891 1780 0.4330 +891 1781 0.4370 +891 1783 0.4390 +891 1786 0.6080 +891 1789 0.4400 +891 1869 0.8340 +891 1870 0.5150 +891 1871 0.6100 +891 1874 0.5030 +891 1875 0.4100 +891 1894 0.9110 +891 1950 0.4900 +891 1956 0.8040 +891 1978 0.4340 +891 1994 0.4180 +891 2033 0.8160 +891 2064 0.6070 +891 2077 0.5040 +891 2099 0.5850 +891 2145 0.4910 +891 2146 0.5950 +891 2177 0.4290 +891 2222 0.4080 +891 2237 0.6560 +891 2305 0.9880 +891 2308 0.7990 +891 2309 0.4420 +891 2353 0.4320 +891 2475 0.5070 +891 2491 0.6670 +891 2547 0.5230 +891 2597 0.8280 +891 2674 0.4280 +891 2735 0.4110 +891 2801 0.4650 +891 2810 0.9650 +891 2919 0.4770 +891 2932 0.4980 +891 2956 0.5910 +891 2966 0.4360 +891 2997 0.4060 +891 3005 0.7130 +891 3009 0.5790 +891 3012 0.4560 +891 3013 0.4230 +891 3014 0.9740 +891 3015 0.6880 +891 3017 0.5940 +891 3018 0.5930 +891 3021 0.8110 +891 3024 0.8070 +891 3065 0.5860 +891 3070 0.5320 +891 3091 0.6340 +891 3093 0.4880 +891 3149 0.4280 +891 3161 0.9420 +891 3308 0.4680 +891 3320 0.4590 +891 3326 0.6500 +891 3480 0.4240 +891 3569 0.6090 +891 3619 0.7740 +891 3630 0.4160 +891 3646 0.6010 +891 3725 0.5610 +891 3796 0.6290 +891 3832 0.9660 +891 3833 0.7260 +891 3835 0.6410 +891 3837 0.4450 +891 3838 0.8400 +891 3845 0.4760 +891 3925 0.5720 +891 3930 0.5030 +891 4000 0.5700 +891 4001 0.7250 +891 4085 0.9880 +891 4170 0.5580 +891 4171 0.6080 +891 4172 0.7760 +891 4173 0.8690 +891 4174 0.6560 +891 4175 0.8060 +891 4176 0.6670 +891 4193 0.7480 +891 4233 0.4020 +891 4255 0.4370 +891 4288 0.8680 +891 4313 0.4880 +891 4318 0.5550 +891 4331 0.7140 +891 4353 0.4270 +891 4361 0.5200 +891 4436 0.5040 +891 4602 0.5990 +891 4605 0.9310 +891 4609 0.8720 +891 4613 0.4080 +891 4616 0.9700 +891 4678 0.4770 +891 4683 0.5100 +891 4751 0.9100 +891 4780 0.4070 +891 4790 0.4150 +891 4792 0.4010 +891 4801 0.4920 +891 4851 0.4210 +891 4869 0.4340 +891 4926 0.8840 +891 4927 0.4580 +891 4928 0.5190 +891 4998 0.7780 +891 4999 0.6480 +891 5000 0.6130 +891 5001 0.6440 +891 5048 0.4540 +891 5062 0.5580 +891 5111 0.8670 +891 5116 0.4720 +891 5127 0.5990 +891 5128 0.5580 +891 5129 0.6120 +891 5155 0.4300 +891 5218 0.5940 +891 5241 0.4660 +891 5245 0.4870 +891 5347 0.9990 +891 5366 0.4460 +891 5422 0.5480 +891 5424 0.4020 +891 5427 0.4620 +891 5460 0.4460 +891 5499 0.4200 +891 5501 0.6210 +891 5515 0.6520 +891 5516 0.5980 +891 5518 0.6190 +891 5519 0.5990 +891 5520 0.7230 +891 5525 0.5730 +891 5526 0.5150 +891 5527 0.5600 +891 5528 0.5510 +891 5529 0.5380 +891 5557 0.4970 +891 5558 0.6250 +891 5591 0.6030 +891 5594 0.4390 +891 5595 0.5930 +891 5604 0.4170 +891 5718 0.6810 +891 5727 0.9640 +891 5728 0.5850 +891 5743 0.4120 +891 5757 0.4100 +891 5861 0.4300 +891 5885 0.7410 +891 5888 0.7590 +891 5898 0.5780 +891 5903 0.5590 +891 5905 0.5530 +891 5925 0.7680 +891 5928 0.6430 +891 5934 0.5060 +891 5970 0.7350 +891 5983 0.6530 +891 5984 0.6510 +891 5985 0.4090 +891 6117 0.4710 +891 6193 0.4020 +891 6198 0.4840 +891 6222 0.4530 +891 6232 0.4600 +891 6233 0.5930 +891 6240 0.6350 +891 6241 0.9050 +891 6249 0.4980 +891 6396 0.4290 +891 6418 0.4400 +891 6491 0.5270 +891 6500 0.5030 +891 6502 0.7970 +891 6615 0.4480 +891 6657 0.4380 +891 6667 0.6270 +891 6714 0.4370 +891 6772 0.5780 +891 6774 0.6130 +891 6790 0.9790 +891 6795 0.5840 +891 6907 0.4220 +891 6908 0.4770 +891 6927 0.4510 +891 7015 0.4370 +891 7027 0.4290 +891 7048 0.6790 +891 7083 0.8790 +891 7124 0.4120 +891 7153 0.9890 +891 7155 0.5530 +891 7157 0.9140 +891 7158 0.7590 +891 7161 0.4420 +891 7175 0.4580 +891 7272 0.9360 +891 7283 0.4200 +891 7298 0.8410 +891 7311 0.6900 +891 7314 0.6080 +891 7316 0.6150 +891 7321 0.6290 +891 7322 0.4520 +891 7324 0.5390 +891 7334 0.4230 +891 7415 0.4210 +891 7443 0.4240 +891 7465 0.9900 +891 7514 0.9310 +891 7531 0.5990 +891 7532 0.6110 +891 7837 0.6210 +891 7884 0.4430 +891 8021 0.4650 +891 8086 0.4280 +891 8087 0.4530 +891 8161 0.5220 +891 8243 0.5780 +891 8290 0.8100 +891 8317 0.7460 +891 8318 0.8000 +891 8331 0.4300 +891 8334 0.4590 +891 8337 0.5430 +891 8338 0.5420 +891 8340 0.5990 +891 8341 0.5930 +891 8342 0.5980 +891 8345 0.6110 +891 8347 0.5880 +891 8348 0.6030 +891 8349 0.6430 +891 8356 0.8150 +891 8361 0.5680 +891 8379 0.8650 +891 8438 0.5560 +891 8451 0.4280 +891 8454 0.4730 +891 8480 0.5330 +891 8556 0.8180 +891 8607 0.5180 +891 8615 0.4050 +891 8650 0.4830 +891 8655 0.4640 +891 8678 0.4060 +891 8697 0.9740 +891 8878 0.4580 +891 8880 0.4480 +891 8881 0.9750 +891 8900 0.8470 +891 8945 0.6380 +891 8970 0.5980 +891 9055 0.9320 +891 9088 0.9700 +891 9097 0.6480 +891 9126 0.6020 +891 9133 0.9980 +891 9134 0.7550 +891 9156 0.7730 +891 9183 0.5600 +891 9184 0.8800 +891 9212 0.9620 +891 9232 0.9840 +891 9253 0.4850 +891 9319 0.7970 +891 9401 0.6820 +891 9451 0.4420 +891 9493 0.9220 +891 9585 0.5620 +891 9631 0.5890 +891 9663 0.4350 +891 9688 0.5110 +891 9690 0.4090 +891 9700 0.9990 +891 9735 0.7310 +891 9768 0.7960 +891 9774 0.9400 +891 9787 0.9650 +891 9793 0.7800 +891 9818 0.4530 +891 9824 0.5820 +891 9833 0.9720 +891 9837 0.7110 +891 9859 0.5000 +891 9883 0.4240 +891 9918 0.7040 +891 9928 0.8610 +891 9972 0.5150 +891 9987 0.4810 +891 10018 0.4590 +891 10024 0.6260 +891 10036 0.4120 +891 10051 0.8570 +891 10112 0.9540 +891 10155 0.4040 +891 10190 0.4750 +891 10198 0.8170 +891 10199 0.6550 +891 10209 0.4950 +891 10213 0.4480 +891 10274 0.5100 +891 10300 0.5320 +891 10393 0.9990 +891 10403 0.9810 +891 10413 0.5410 +891 10460 0.7030 +891 10535 0.4610 +891 10592 0.7690 +891 10615 0.8650 +891 10634 0.5120 +891 10635 0.6180 +891 10726 0.4880 +891 10733 0.8240 +891 10735 0.5210 +891 10744 0.9120 +891 10762 0.4690 +891 10769 0.6970 +891 10912 0.9860 +891 10926 0.6950 +891 10928 0.4820 +891 10971 0.6890 +891 11004 0.9660 +891 11065 0.9900 +891 11073 0.4490 +891 11097 0.4140 +891 11104 0.4760 +891 11130 0.9500 +891 11169 0.4570 +891 11178 0.5350 +891 11200 0.8170 +891 11243 0.4210 +891 11329 0.4360 +891 11339 0.8880 +891 22919 0.4980 +891 22974 0.9490 +891 22984 0.4230 +891 23047 0.5150 +891 23063 0.5040 +891 23122 0.4510 +891 23133 0.4650 +891 23165 0.5210 +891 23175 0.4440 +891 23225 0.4760 +891 23244 0.5140 +891 23279 0.4750 +891 23310 0.6010 +891 23326 0.4610 +891 23332 0.4650 +891 23397 0.8890 +891 23411 0.5920 +891 23421 0.5120 +891 23511 0.4330 +891 23594 0.7760 +891 23595 0.6360 +891 23636 0.5040 +891 24137 0.9310 +891 25847 0.9140 +891 25886 0.4260 +891 25906 0.6170 +891 25909 0.4930 +891 25936 0.4660 +891 26271 0.8800 +891 26586 0.6820 +891 27000 0.6040 +891 27152 0.6070 +891 27338 0.7670 +891 28984 0.8100 +891 29028 0.4490 +891 29089 0.8510 +891 29127 0.9520 +891 29128 0.5670 +891 29781 0.4480 +891 29882 0.9350 +891 29893 0.4270 +891 29945 0.9990 +891 50484 0.4180 +891 51053 0.6230 +891 51143 0.4660 +891 51203 0.9230 +891 51343 0.9980 +891 51433 0.9360 +891 51434 0.9260 +891 51512 0.7460 +891 51514 0.6430 +891 51529 0.7970 +891 51530 0.8160 +891 51659 0.6430 +891 53371 0.4490 +891 54069 0.5440 +891 54145 0.5930 +891 54205 0.6450 +891 54443 0.8600 +891 54478 0.6840 +891 54820 0.5180 +891 54821 0.7200 +891 54892 0.7120 +891 54908 0.8480 +891 55010 0.5610 +891 55055 0.7020 +891 55143 0.9870 +891 55165 0.9400 +891 55166 0.5650 +891 55215 0.7460 +891 55247 0.4700 +891 55294 0.4110 +891 55355 0.8710 +891 55388 0.7030 +891 55536 0.4300 +891 55635 0.8710 +891 55669 0.4210 +891 55706 0.6080 +891 55723 0.5900 +891 55746 0.4930 +891 55749 0.7440 +891 55766 0.4140 +891 55789 0.8450 +891 55795 0.5970 +891 55839 0.7680 +891 55844 0.4980 +891 55920 0.5480 +891 55957 0.6640 +891 56475 0.7510 +891 56477 0.4330 +891 56992 0.9160 +891 57082 0.7890 +891 57122 0.5310 +891 57405 0.9030 +891 57521 0.4330 +891 57551 0.4740 +891 57650 0.5640 +891 57758 0.4770 +891 63967 0.6690 +891 64100 0.4350 +891 64105 0.6940 +891 64112 0.4360 +891 64151 0.9620 +891 64506 0.5210 +891 64682 0.9330 +891 64689 0.4690 +891 64900 0.4350 +891 64946 0.7360 +891 65061 0.5720 +891 79003 0.4800 +891 79019 0.7140 +891 79023 0.6040 +891 79075 0.4310 +891 79172 0.5930 +891 79682 0.7470 +891 79733 0.6530 +891 79801 0.6770 +891 79866 0.8030 +891 79902 0.4960 +891 79923 0.4060 +891 79980 0.7450 +891 79991 0.4770 +891 80012 0.4460 +891 80119 0.4150 +891 80152 0.5720 +891 81565 0.5190 +891 81610 0.6010 +891 81620 0.7980 +891 81624 0.8740 +891 81669 0.9090 +891 81876 0.4300 +891 81929 0.4380 +891 81930 0.8350 +891 83461 0.9360 +891 83540 0.9670 +891 83879 0.5400 +891 84057 0.6490 +891 84153 0.5430 +891 84260 0.4830 +891 84515 0.6800 +891 84619 0.4130 +891 84643 0.5430 +891 84722 0.4270 +891 84823 0.5090 +891 84930 0.8930 +891 85236 0.5960 +891 85417 0.9340 +891 90381 0.4750 +891 90417 0.6090 +891 91272 0.7450 +891 91687 0.4750 +891 91750 0.6370 +891 91754 0.5190 +891 92292 0.4030 +891 92906 0.6270 +891 94239 0.5960 +891 112858 0.4530 +891 113115 0.4320 +891 113130 0.8690 +891 116028 0.4160 +891 119504 0.7380 +891 126520 0.6060 +891 128312 0.6740 +891 129401 0.5080 +891 132660 0.6720 +891 137902 0.6150 +891 140735 0.4280 +891 144455 0.5690 +891 146909 0.6060 +891 147841 0.7170 +891 150468 0.5190 +891 151246 0.7520 +891 151648 0.8010 +891 157313 0.7630 +891 157570 0.6270 +891 163786 0.4260 +891 166979 0.7810 +891 196410 0.4080 +891 219970 0.4220 +891 220134 0.9030 +891 221150 0.9110 +891 246184 0.9250 +891 255626 0.5830 +891 255877 0.4060 +891 259266 0.9520 +891 259282 0.5490 +891 284257 0.5400 +891 284273 0.4600 +891 286151 0.9440 +891 286826 0.7220 +891 326340 0.5320 +891 346673 0.4240 +891 348235 0.8060 +891 348995 0.4870 +891 378708 0.5670 +891 387103 0.6470 +891 401541 0.5280 +891 402569 0.6110 +891 440093 0.6970 +891 440686 0.6970 +891 474382 0.4140 +891 494551 0.6570 +891 642636 0.4090 +891 644672 0.4400 +891 653604 0.8120 +891 728378 0.5450 +891 728642 0.4620 +891 100101267 0.4330 +891 100287520 0.4030 +892 896 0.6150 +892 898 0.5490 +892 899 0.4880 +892 900 0.4540 +892 901 0.5150 +892 904 0.7240 +892 905 0.7250 +892 948 0.4990 +892 983 0.5650 +892 1017 0.8700 +892 1018 0.9970 +892 1019 0.8810 +892 1020 0.7000 +892 1021 0.7780 +892 1022 0.9380 +892 1024 0.9990 +892 1025 0.8620 +892 1026 0.5970 +892 1050 0.5650 +892 1051 0.5740 +892 1052 0.5270 +892 1387 0.6620 +892 1499 0.5800 +892 1876 0.4160 +892 1879 0.5080 +892 2033 0.5730 +892 2068 0.5090 +892 2071 0.6350 +892 2099 0.4860 +892 2100 0.4070 +892 2167 0.4990 +892 2648 0.6020 +892 2959 0.5710 +892 2965 0.5600 +892 3516 0.6430 +892 3952 0.5110 +892 4023 0.4990 +892 4087 0.4860 +892 4088 0.4710 +892 4089 0.4940 +892 4848 0.4840 +892 4850 0.4900 +892 4851 0.6720 +892 5105 0.4990 +892 5127 0.4570 +892 5128 0.5660 +892 5129 0.4660 +892 5218 0.4160 +892 5346 0.5210 +892 5432 0.4210 +892 5468 0.5720 +892 5469 0.9990 +892 5925 0.4720 +892 5934 0.4300 +892 6256 0.5440 +892 6500 0.6210 +892 6517 0.5110 +892 6829 0.4590 +892 6837 0.9870 +892 6917 0.4120 +892 7112 0.4260 +892 7157 0.5910 +892 7158 0.4490 +892 7566 0.6550 +892 8202 0.5490 +892 8454 0.6020 +892 8558 0.4970 +892 8576 0.4090 +892 8621 0.6020 +892 8648 0.5310 +892 8812 0.7470 +892 8841 0.5810 +892 8850 0.6410 +892 8900 0.7200 +892 9282 0.9970 +892 9370 0.5090 +892 9412 0.9960 +892 9439 0.9860 +892 9440 0.9960 +892 9441 0.9760 +892 9442 0.9830 +892 9443 0.9900 +892 9477 0.9800 +892 9611 0.5650 +892 9612 0.5760 +892 9774 0.5820 +892 9794 0.7590 +892 9862 0.9780 +892 9939 0.4300 +892 9967 0.5450 +892 9968 0.9990 +892 9969 0.9990 +892 9978 0.5900 +892 10001 0.9970 +892 10025 0.9820 +892 10046 0.5020 +892 10499 0.5480 +892 10891 0.5150 +892 10985 0.4010 +892 10989 0.4480 +892 22850 0.4480 +892 22938 0.5690 +892 23013 0.4010 +892 23019 0.4710 +892 23091 0.9940 +892 23097 0.9990 +892 23389 0.9990 +892 23476 0.6200 +892 23552 0.5200 +892 25842 0.4320 +892 25957 0.4490 +892 27085 0.6330 +892 29079 0.9860 +892 51003 0.9870 +892 51129 0.4990 +892 51586 0.9870 +892 51755 0.5340 +892 51805 0.4090 +892 54797 0.9990 +892 55090 0.9770 +892 55294 0.7650 +892 55299 0.4830 +892 55534 0.7160 +892 55588 0.9820 +892 59336 0.5030 +892 80306 0.9990 +892 81857 0.9650 +892 83548 0.4020 +892 84246 0.9900 +892 84441 0.7240 +892 84498 0.5220 +892 84553 0.4820 +892 85441 0.4990 +892 90390 0.9740 +892 112950 0.9790 +892 116931 0.9990 +892 133522 0.5400 +892 219771 0.5020 +892 256643 0.5400 +892 285231 0.4070 +892 400569 0.9750 +892 404672 0.5220 +894 896 0.9370 +894 898 0.6400 +894 901 0.4920 +894 920 0.5430 +894 925 0.5130 +894 960 0.5120 +894 983 0.8880 +894 990 0.4600 +894 993 0.9550 +894 995 0.6000 +894 999 0.4370 +894 1017 0.9950 +894 1018 0.5500 +894 1019 0.9990 +894 1020 0.9510 +894 1021 0.9990 +894 1022 0.7310 +894 1026 0.9990 +894 1027 0.9990 +894 1028 0.9940 +894 1029 0.9900 +894 1030 0.9620 +894 1031 0.9630 +894 1032 0.9630 +894 1111 0.5760 +894 1163 0.6770 +894 1164 0.4040 +894 1236 0.4020 +894 1499 0.5600 +894 1588 0.4160 +894 1612 0.4280 +894 1653 0.6010 +894 1761 0.4080 +894 1786 0.4330 +894 1869 0.7910 +894 1870 0.8380 +894 1871 0.7470 +894 1874 0.7000 +894 1875 0.6840 +894 1950 0.4110 +894 1956 0.6280 +894 1959 0.4760 +894 2033 0.5570 +894 2064 0.5400 +894 2099 0.5170 +894 2146 0.4720 +894 2247 0.5960 +894 2258 0.5440 +894 2261 0.4090 +894 2305 0.4250 +894 2308 0.4660 +894 2335 0.5950 +894 2353 0.4030 +894 2597 0.5370 +894 2626 0.4200 +894 2674 0.4300 +894 2735 0.4870 +894 2736 0.6360 +894 2932 0.9380 +894 2950 0.4550 +894 3021 0.4370 +894 3024 0.5310 +894 3091 0.4630 +894 3169 0.4910 +894 3265 0.5970 +894 3418 0.4950 +894 3479 0.4020 +894 3480 0.4250 +894 3569 0.4550 +894 3630 0.4310 +894 3662 0.4170 +894 3717 0.7110 +894 3720 0.4940 +894 3725 0.6750 +894 3815 0.4360 +894 3838 0.4210 +894 3845 0.6870 +894 4005 0.8470 +894 4067 0.5410 +894 4076 0.5160 +894 4089 0.5970 +894 4094 0.6370 +894 4170 0.5100 +894 4193 0.4920 +894 4233 0.4340 +894 4318 0.4120 +894 4331 0.4160 +894 4343 0.5090 +894 4603 0.5420 +894 4605 0.4870 +894 4609 0.7010 +894 4613 0.5690 +894 4790 0.4020 +894 4792 0.4130 +894 4815 0.4450 +894 4851 0.4930 +894 4854 0.5850 +894 4869 0.5140 +894 4893 0.6220 +894 5111 0.9710 +894 5127 0.4170 +894 5128 0.4230 +894 5129 0.4340 +894 5156 0.4770 +894 5159 0.5160 +894 5218 0.4720 +894 5290 0.5840 +894 5308 0.5620 +894 5347 0.5580 +894 5552 0.4060 +894 5595 0.4360 +894 5599 0.5040 +894 5604 0.5490 +894 5617 0.4510 +894 5727 0.4730 +894 5728 0.7060 +894 5753 0.4740 +894 5915 0.4930 +894 5925 0.9880 +894 5933 0.9240 +894 5934 0.9900 +894 5970 0.4110 +894 6348 0.7170 +894 6422 0.4380 +894 6469 0.5150 +894 6500 0.6110 +894 6502 0.8680 +894 6608 0.4560 +894 6634 0.4260 +894 6657 0.4390 +894 6714 0.6190 +894 6722 0.5070 +894 6774 0.5410 +894 6776 0.4570 +894 6777 0.4480 +894 6790 0.6350 +894 6875 0.4990 +894 7015 0.5000 +894 7027 0.6570 +894 7029 0.6280 +894 7040 0.4150 +894 7132 0.4070 +894 7153 0.5380 +894 7157 0.6410 +894 7249 0.5070 +894 7465 0.5590 +894 7468 0.4400 +894 7703 0.6340 +894 7837 0.4430 +894 8019 0.4860 +894 8091 0.4610 +894 8290 0.4270 +894 8313 0.4530 +894 8324 0.4760 +894 8356 0.4300 +894 8454 0.6650 +894 8549 0.4900 +894 8651 0.5510 +894 8666 0.4100 +894 8669 0.4100 +894 9134 0.6010 +894 9314 0.4130 +894 9573 0.5340 +894 9935 0.6620 +894 9978 0.4070 +894 9988 0.8440 +894 10000 0.4790 +894 10014 0.4570 +894 10018 0.6180 +894 10419 0.4290 +894 10725 0.4910 +894 10733 0.4920 +894 11186 0.6430 +894 23112 0.5270 +894 23405 0.6020 +894 25827 0.6780 +894 26523 0.5810 +894 27161 0.7650 +894 27327 0.5490 +894 27335 0.5050 +894 29127 0.4080 +894 29760 0.4160 +894 51176 0.4520 +894 51806 0.5030 +894 55193 0.4300 +894 55500 0.4740 +894 57551 0.4240 +894 79084 0.4270 +894 81620 0.5760 +894 81669 0.8650 +894 83737 0.4570 +894 84678 0.4170 +894 91860 0.5000 +894 133482 0.4110 +894 137902 0.4430 +894 163688 0.5000 +894 192669 0.5130 +894 192670 0.5130 +894 255877 0.4470 +894 346673 0.5190 +894 440093 0.4270 +894 440686 0.4400 +894 653604 0.4400 +894 100423062 0.4680 +894 100532731 0.4360 +894 102723407 0.4790 +896 898 0.6290 +896 899 0.4360 +896 900 0.4140 +896 901 0.5500 +896 983 0.9490 +896 984 0.5760 +896 990 0.4610 +896 993 0.9530 +896 994 0.4220 +896 995 0.4640 +896 1017 0.9990 +896 1018 0.6410 +896 1019 0.9990 +896 1020 0.8980 +896 1021 0.9990 +896 1022 0.6680 +896 1026 0.9990 +896 1027 0.9990 +896 1028 0.9920 +896 1029 0.9750 +896 1030 0.9460 +896 1031 0.9930 +896 1032 0.9780 +896 1163 0.8280 +896 1382 0.7420 +896 1387 0.8610 +896 1487 0.5540 +896 1499 0.4510 +896 1647 0.5500 +896 1869 0.7770 +896 1870 0.7430 +896 1871 0.7350 +896 1874 0.7110 +896 1875 0.6630 +896 1956 0.4510 +896 2064 0.4520 +896 2167 0.7700 +896 2261 0.5460 +896 2280 0.4900 +896 2597 0.5080 +896 2932 0.9350 +896 3065 0.5660 +896 3561 0.4170 +896 3569 0.4040 +896 3717 0.6030 +896 3725 0.4270 +896 3815 0.5930 +896 3845 0.4530 +896 4000 0.4580 +896 4067 0.5650 +896 4094 0.6880 +896 4170 0.5150 +896 4193 0.4600 +896 4254 0.5030 +896 4331 0.4160 +896 4343 0.5020 +896 4609 0.6400 +896 4628 0.5020 +896 4851 0.5060 +896 4853 0.4140 +896 4893 0.4420 +896 5111 0.9780 +896 5127 0.5500 +896 5128 0.6050 +896 5129 0.4790 +896 5218 0.8690 +896 5290 0.4300 +896 5595 0.4630 +896 5597 0.9310 +896 5728 0.5330 +896 5753 0.4640 +896 5914 0.6300 +896 5925 0.9890 +896 5933 0.9270 +896 5934 0.9950 +896 6009 0.4770 +896 6198 0.4250 +896 6446 0.4860 +896 6500 0.6220 +896 6502 0.8200 +896 6598 0.4820 +896 6714 0.6230 +896 6774 0.5050 +896 6776 0.4550 +896 6777 0.4530 +896 6929 0.4120 +896 7027 0.6480 +896 7029 0.6030 +896 7157 0.6380 +896 7249 0.5050 +896 7465 0.4480 +896 7468 0.6140 +896 7837 0.4190 +896 8454 0.6550 +896 8555 0.4620 +896 8556 0.5330 +896 8621 0.4270 +896 8663 0.5030 +896 8666 0.5500 +896 8669 0.5470 +896 9134 0.6030 +896 9477 0.4600 +896 9935 0.7500 +896 9978 0.4260 +896 10270 0.4110 +896 22809 0.4450 +896 23112 0.5050 +896 25827 0.5870 +896 25862 0.4600 +896 26523 0.5310 +896 27161 0.5750 +896 27327 0.5050 +896 27335 0.8990 +896 51806 0.5260 +896 55388 0.8050 +896 57521 0.5310 +896 64223 0.4740 +896 64798 0.6980 +896 65061 0.4280 +896 81669 0.9090 +896 84265 0.4590 +896 91860 0.5260 +896 133482 0.4310 +896 137902 0.4190 +896 163688 0.5260 +896 192669 0.5130 +896 192670 0.5130 +896 253260 0.5330 +896 728642 0.5040 +896 100423062 0.5440 +896 102723407 0.7410 +898 899 0.6020 +898 900 0.5990 +898 901 0.4980 +898 908 0.5250 +898 983 0.9720 +898 990 0.9020 +898 991 0.7600 +898 993 0.9910 +898 994 0.5950 +898 995 0.7380 +898 996 0.7180 +898 999 0.4890 +898 1000 0.4210 +898 1017 0.9990 +898 1018 0.9260 +898 1019 0.9990 +898 1020 0.8600 +898 1021 0.9990 +898 1022 0.7930 +898 1025 0.4250 +898 1026 0.9990 +898 1027 0.9990 +898 1028 0.9730 +898 1029 0.8140 +898 1030 0.5960 +898 1031 0.5590 +898 1032 0.4620 +898 1033 0.4200 +898 1058 0.4730 +898 1063 0.4100 +898 1111 0.7040 +898 1163 0.8970 +898 1164 0.8520 +898 1387 0.4870 +898 1432 0.4650 +898 1499 0.6850 +898 1869 0.9420 +898 1870 0.9080 +898 1871 0.8310 +898 1874 0.8190 +898 1875 0.8080 +898 1876 0.4480 +898 1894 0.4170 +898 1956 0.7520 +898 2051 0.4280 +898 2064 0.6750 +898 2065 0.4720 +898 2099 0.5210 +898 2101 0.4180 +898 2146 0.5200 +898 2175 0.5570 +898 2222 0.6750 +898 2260 0.4880 +898 2261 0.4150 +898 2263 0.4570 +898 2264 0.4060 +898 2305 0.7760 +898 2597 0.7360 +898 2932 0.7480 +898 2956 0.4140 +898 3005 0.4540 +898 3009 0.7460 +898 3021 0.4010 +898 3024 0.8800 +898 3065 0.4050 +898 3265 0.5790 +898 3480 0.6600 +898 3717 0.5850 +898 3725 0.4330 +898 3801 0.4260 +898 3838 0.5280 +898 3845 0.6070 +898 4085 0.4250 +898 4089 0.4110 +898 4149 0.5410 +898 4170 0.4350 +898 4171 0.5040 +898 4172 0.6590 +898 4173 0.6220 +898 4174 0.7300 +898 4175 0.6930 +898 4176 0.7580 +898 4193 0.5850 +898 4288 0.5130 +898 4318 0.4310 +898 4331 0.4440 +898 4361 0.5000 +898 4436 0.4060 +898 4605 0.6690 +898 4609 0.9080 +898 4610 0.4100 +898 4613 0.4020 +898 4654 0.4150 +898 4763 0.5100 +898 4771 0.4100 +898 4791 0.4280 +898 4851 0.6380 +898 4863 0.7850 +898 4893 0.4230 +898 4998 0.6140 +898 4999 0.5120 +898 5054 0.4190 +898 5071 0.6760 +898 5111 0.8960 +898 5127 0.4690 +898 5128 0.4110 +898 5129 0.4850 +898 5218 0.4390 +898 5241 0.4150 +898 5290 0.6310 +898 5347 0.5380 +898 5422 0.5080 +898 5424 0.4750 +898 5573 0.4810 +898 5682 0.4290 +898 5683 0.4090 +898 5684 0.4020 +898 5685 0.4220 +898 5686 0.4140 +898 5687 0.5620 +898 5688 0.4520 +898 5689 0.4040 +898 5690 0.6290 +898 5691 0.4370 +898 5692 0.4430 +898 5693 0.4160 +898 5694 0.4290 +898 5695 0.4090 +898 5696 0.4130 +898 5698 0.4290 +898 5700 0.4040 +898 5701 0.4080 +898 5702 0.4080 +898 5704 0.4380 +898 5705 0.4080 +898 5706 0.4010 +898 5707 0.4300 +898 5708 0.4240 +898 5709 0.4220 +898 5710 0.4050 +898 5713 0.4210 +898 5714 0.4160 +898 5716 0.4550 +898 5717 0.4460 +898 5718 0.4050 +898 5721 0.4110 +898 5728 0.6150 +898 5753 0.5990 +898 5888 0.4890 +898 5925 0.9940 +898 5928 0.5420 +898 5933 0.9670 +898 5934 0.9900 +898 5966 0.5120 +898 6009 0.4560 +898 6233 0.5430 +898 6241 0.5840 +898 6489 0.4290 +898 6500 0.9910 +898 6502 0.9900 +898 6595 0.4390 +898 6597 0.6950 +898 6598 0.5380 +898 6599 0.4520 +898 6615 0.4120 +898 6714 0.4180 +898 6774 0.6470 +898 6790 0.6750 +898 6794 0.4500 +898 6894 0.4970 +898 6908 0.6620 +898 6950 0.5680 +898 7015 0.7660 +898 7027 0.6880 +898 7029 0.8660 +898 7124 0.5110 +898 7153 0.5330 +898 7157 0.9260 +898 7161 0.5380 +898 7203 0.5570 +898 7272 0.4150 +898 7298 0.4640 +898 7311 0.5010 +898 7314 0.5280 +898 7316 0.6570 +898 7465 0.8170 +898 7581 0.4280 +898 7832 0.6180 +898 7837 0.4470 +898 7979 0.4050 +898 8237 0.4230 +898 8289 0.6200 +898 8312 0.4370 +898 8317 0.4370 +898 8318 0.5450 +898 8361 0.4040 +898 8405 0.6470 +898 8450 0.4470 +898 8452 0.8160 +898 8454 0.9590 +898 8467 0.4440 +898 8697 0.7270 +898 8841 0.4750 +898 8881 0.7190 +898 8900 0.9070 +898 8945 0.6180 +898 9055 0.4180 +898 9088 0.5120 +898 9133 0.7570 +898 9134 0.9560 +898 9156 0.4720 +898 9212 0.5140 +898 9232 0.4430 +898 9319 0.5390 +898 9493 0.6020 +898 9519 0.6040 +898 9557 0.5450 +898 9692 0.5650 +898 9700 0.4270 +898 9757 0.4050 +898 9833 0.4510 +898 9837 0.4410 +898 9861 0.5030 +898 9978 0.9300 +898 10018 0.5300 +898 10036 0.4890 +898 10197 0.4620 +898 10213 0.6310 +898 10238 0.4310 +898 10270 0.5370 +898 10309 0.4400 +898 10393 0.6500 +898 10413 0.4710 +898 10517 0.4720 +898 10528 0.4250 +898 10574 0.8050 +898 10575 0.7650 +898 10576 0.8660 +898 10693 0.5110 +898 10694 0.5230 +898 10983 0.4400 +898 11004 0.4320 +898 11065 0.4080 +898 11200 0.6020 +898 11328 0.4140 +898 22803 0.4480 +898 22836 0.6520 +898 22948 0.5600 +898 22984 0.8250 +898 23031 0.4040 +898 23405 0.5590 +898 23594 0.4460 +898 24137 0.4120 +898 25820 0.6330 +898 25847 0.6500 +898 26190 0.4490 +898 26224 0.4110 +898 26234 0.4010 +898 26272 0.4370 +898 26330 0.6470 +898 26524 0.6650 +898 27161 0.5480 +898 28984 0.4680 +898 29028 0.5340 +898 29127 0.5580 +898 29882 0.6960 +898 29945 0.6930 +898 50488 0.4030 +898 51053 0.4240 +898 51343 0.4210 +898 51433 0.6950 +898 51434 0.6950 +898 51755 0.5170 +898 51773 0.5780 +898 51806 0.4500 +898 54461 0.4070 +898 54487 0.6400 +898 55135 0.4440 +898 55143 0.5180 +898 55165 0.6060 +898 55197 0.5490 +898 55244 0.5650 +898 55255 0.4480 +898 55294 0.9980 +898 55388 0.5370 +898 55635 0.5020 +898 55832 0.4450 +898 55957 0.7570 +898 57060 0.5000 +898 57521 0.4680 +898 57634 0.5240 +898 60561 0.4980 +898 64100 0.4380 +898 64223 0.4050 +898 64682 0.7140 +898 65061 0.4610 +898 79733 0.4540 +898 79935 0.4400 +898 81620 0.8320 +898 81669 0.8690 +898 84261 0.5310 +898 85417 0.4770 +898 91750 0.5310 +898 91768 0.5020 +898 91860 0.4410 +898 113130 0.5550 +898 115426 0.5440 +898 132660 0.5790 +898 137682 0.5160 +898 137902 0.4390 +898 144455 0.4940 +898 146802 0.5650 +898 151242 0.6080 +898 163688 0.4410 +898 196528 0.5390 +898 246184 0.6640 +898 253260 0.5260 +898 286826 0.5990 +898 340390 0.5150 +898 345079 0.4400 +898 387332 0.6040 +898 399949 0.6010 +898 645121 0.4660 +898 647309 0.4140 +898 728378 0.4680 +898 728642 0.4010 +899 900 0.4960 +899 901 0.5640 +899 983 0.9110 +899 990 0.8740 +899 991 0.9100 +899 993 0.6330 +899 994 0.4800 +899 995 0.5790 +899 997 0.4380 +899 1017 0.8370 +899 1019 0.5440 +899 1021 0.5410 +899 1026 0.4530 +899 1029 0.4690 +899 1058 0.5840 +899 1062 0.4920 +899 1063 0.6370 +899 1111 0.6300 +899 1163 0.6830 +899 1164 0.5370 +899 1642 0.4770 +899 1719 0.4480 +899 1763 0.4690 +899 1869 0.6630 +899 1870 0.6750 +899 1871 0.5430 +899 2189 0.5010 +899 2237 0.7530 +899 2305 0.6340 +899 2521 0.4990 +899 2956 0.4510 +899 3021 0.4360 +899 3069 0.4200 +899 3070 0.4660 +899 3161 0.4270 +899 3619 0.4240 +899 3832 0.6390 +899 3833 0.7960 +899 3835 0.4730 +899 3838 0.4200 +899 4001 0.4530 +899 4008 0.4070 +899 4085 0.5670 +899 4172 0.6670 +899 4173 0.5760 +899 4174 0.6250 +899 4175 0.6210 +899 4176 0.5360 +899 4193 0.4170 +899 4288 0.6820 +899 4436 0.4140 +899 4605 0.7210 +899 4734 0.4070 +899 4738 0.6270 +899 4750 0.6330 +899 4751 0.7300 +899 4796 0.4330 +899 4998 0.5250 +899 5111 0.4020 +899 5127 0.4130 +899 5128 0.4350 +899 5129 0.4840 +899 5216 0.4650 +899 5347 0.9180 +899 5662 0.5440 +899 5687 0.5210 +899 5887 0.4090 +899 5983 0.5230 +899 6240 0.5240 +899 6241 0.8930 +899 6311 0.5590 +899 6491 0.4690 +899 6500 0.9990 +899 6502 0.9460 +899 6596 0.4090 +899 6647 0.4170 +899 6790 0.7910 +899 7153 0.7850 +899 7266 0.4180 +899 7272 0.4740 +899 7277 0.5110 +899 7283 0.4240 +899 7311 0.4240 +899 7415 0.7590 +899 7465 0.6330 +899 7884 0.7120 +899 8208 0.4920 +899 8317 0.5160 +899 8318 0.6810 +899 8454 0.9860 +899 8697 0.4090 +899 8878 0.7010 +899 8883 0.5210 +899 8945 0.9210 +899 9039 0.6910 +899 9040 0.5270 +899 9055 0.5340 +899 9088 0.5130 +899 9133 0.6750 +899 9134 0.4160 +899 9156 0.6380 +899 9212 0.7860 +899 9217 0.4310 +899 9232 0.5150 +899 9319 0.5560 +899 9493 0.4740 +899 9662 0.5010 +899 9700 0.8060 +899 9730 0.4200 +899 9738 0.9840 +899 9782 0.6400 +899 9787 0.6060 +899 9918 0.4280 +899 9928 0.4380 +899 9978 0.9170 +899 10024 0.5660 +899 10036 0.4190 +899 10051 0.4990 +899 10112 0.7260 +899 10133 0.4720 +899 10403 0.4530 +899 10535 0.4900 +899 10607 0.4320 +899 10615 0.6600 +899 10733 0.7430 +899 11004 0.6720 +899 11065 0.5740 +899 11130 0.4080 +899 22974 0.6890 +899 22992 0.7030 +899 23032 0.5350 +899 23194 0.7290 +899 23291 0.8740 +899 23435 0.8180 +899 24137 0.5300 +899 25793 0.5520 +899 25827 0.5480 +899 25886 0.4570 +899 26224 0.6760 +899 26232 0.6430 +899 26234 0.6240 +899 26235 0.7070 +899 26259 0.5920 +899 26268 0.4790 +899 26269 0.6840 +899 26270 0.6770 +899 26271 0.5620 +899 26272 0.5250 +899 27097 0.4100 +899 29110 0.4740 +899 29127 0.4940 +899 29128 0.5260 +899 29978 0.6650 +899 51203 0.8720 +899 51343 0.6110 +899 51512 0.5550 +899 51514 0.6250 +899 51659 0.4170 +899 54205 0.4060 +899 55143 0.7330 +899 55165 0.5280 +899 55294 0.5950 +899 55355 0.6980 +899 55388 0.5750 +899 55832 0.5840 +899 55835 0.4890 +899 55920 0.4040 +899 57465 0.4130 +899 57679 0.4210 +899 64151 0.4740 +899 79084 0.4180 +899 79733 0.6900 +899 80176 0.4210 +899 80178 0.4290 +899 80198 0.4430 +899 81610 0.4900 +899 81620 0.7800 +899 81669 0.5170 +899 83461 0.7430 +899 83540 0.4520 +899 84188 0.4010 +899 84823 0.4230 +899 90381 0.5160 +899 93611 0.5070 +899 113130 0.5960 +899 123879 0.4990 +899 124602 0.4530 +899 144455 0.6250 +899 146909 0.6240 +899 147841 0.4050 +899 150468 0.4470 +899 157313 0.4760 +899 162989 0.4040 +899 163786 0.5650 +899 166979 0.4620 +899 203228 0.5320 +899 259266 0.5810 +899 283807 0.4240 +899 286151 0.6200 +899 400916 0.6210 +899 494188 0.5230 +900 901 0.9110 +900 983 0.7720 +900 990 0.5560 +900 991 0.4300 +900 1017 0.7350 +900 1018 0.4750 +900 1019 0.6280 +900 1020 0.8170 +900 1021 0.6440 +900 1026 0.6180 +900 1027 0.4240 +900 1028 0.4120 +900 1029 0.5290 +900 1033 0.4010 +900 1163 0.4630 +900 1164 0.5010 +900 1263 0.4490 +900 1643 0.4630 +900 1647 0.5970 +900 1994 0.4200 +900 2232 0.4300 +900 2580 0.9630 +900 2597 0.4870 +900 3005 0.4760 +900 3162 0.4450 +900 3480 0.4450 +900 4085 0.4400 +900 4193 0.9150 +900 4194 0.4070 +900 5127 0.4570 +900 5128 0.6160 +900 5129 0.5010 +900 5218 0.4730 +900 5347 0.4750 +900 5366 0.4110 +900 5515 0.6250 +900 5516 0.5750 +900 5518 0.8180 +900 5519 0.5470 +900 5527 0.8490 +900 5528 0.6490 +900 5529 0.5250 +900 5728 0.4380 +900 5935 0.4040 +900 6427 0.5930 +900 6541 0.6090 +900 6790 0.4200 +900 6868 0.5190 +900 7011 0.4020 +900 7157 0.9980 +900 7161 0.4100 +900 7465 0.5160 +900 7832 0.4190 +900 8451 0.4560 +900 8493 0.5790 +900 8900 0.4150 +900 9088 0.4240 +900 9134 0.6420 +900 9184 0.4900 +900 9212 0.4090 +900 9232 0.4200 +900 9538 0.4450 +900 9829 0.4470 +900 10121 0.5190 +900 10298 0.4710 +900 10657 0.4120 +900 10733 0.4020 +900 10769 0.5540 +900 11200 0.5340 +900 23612 0.5220 +900 27113 0.4430 +900 27244 0.4320 +900 29085 0.4690 +900 54619 0.4170 +900 54904 0.4300 +900 55809 0.6490 +900 57446 0.5470 +900 64065 0.4360 +900 64393 0.5700 +900 64782 0.4810 +900 65061 0.4400 +900 81669 0.7800 +900 92292 0.4030 +900 148738 0.4080 +900 219970 0.4030 +900 494551 0.4120 +900 642843 0.4910 +900 644672 0.4400 +900 728378 0.4040 +900 728642 0.4400 +900 100287520 0.4030 +901 983 0.5790 +901 990 0.6100 +901 991 0.4730 +901 993 0.4160 +901 1017 0.6480 +901 1018 0.4540 +901 1019 0.6040 +901 1021 0.6200 +901 1025 0.4080 +901 1026 0.4790 +901 1027 0.5700 +901 1163 0.4030 +901 1164 0.5640 +901 1263 0.4100 +901 1647 0.4710 +901 2308 0.6920 +901 2309 0.8060 +901 2597 0.4370 +901 3066 0.4280 +901 4085 0.4630 +901 4087 0.4320 +901 4088 0.4060 +901 4089 0.4360 +901 4193 0.6170 +901 4303 0.6750 +901 4613 0.4320 +901 5127 0.5040 +901 5128 0.6190 +901 5129 0.5020 +901 5218 0.5040 +901 5295 0.4100 +901 5347 0.4600 +901 5470 0.4270 +901 5515 0.4350 +901 5526 0.4020 +901 5527 0.6960 +901 5528 0.4230 +901 5728 0.4170 +901 5934 0.4560 +901 6500 0.4210 +901 6502 0.5220 +901 7157 0.6110 +901 7465 0.5220 +901 7832 0.4740 +901 8558 0.5970 +901 8621 0.4040 +901 9088 0.4260 +901 9134 0.5300 +901 9184 0.4330 +901 10769 0.4490 +901 11200 0.4520 +901 22984 0.4150 +901 54619 0.4030 +901 54800 0.4710 +901 55252 0.4010 +901 55818 0.4300 +901 65061 0.4600 +901 79365 0.4800 +901 81669 0.8160 +901 92292 0.4030 +901 219970 0.4030 +901 494551 0.4120 +901 644672 0.4400 +901 728642 0.4700 +901 100287520 0.4030 +901 100532731 0.5220 +904 905 0.9860 +904 920 0.5010 +904 983 0.8330 +904 984 0.5370 +904 996 0.4180 +904 1017 0.7790 +904 1019 0.5060 +904 1020 0.6160 +904 1021 0.7930 +904 1022 0.9930 +904 1024 0.9240 +904 1025 0.9990 +904 1026 0.5280 +904 1027 0.4370 +904 1051 0.6500 +904 1108 0.4610 +904 1111 0.5690 +904 1234 0.4460 +904 1387 0.4260 +904 1672 0.5750 +904 1673 0.7160 +904 2033 0.6610 +904 2068 0.9070 +904 2071 0.9190 +904 2074 0.9030 +904 2099 0.7160 +904 2177 0.5400 +904 2334 0.5530 +904 2623 0.4850 +904 2626 0.4470 +904 2896 0.6690 +904 2957 0.6170 +904 2958 0.5230 +904 2959 0.7490 +904 2960 0.6250 +904 2961 0.6480 +904 2962 0.7240 +904 2963 0.6220 +904 2965 0.9170 +904 2966 0.9080 +904 2967 0.9160 +904 2968 0.9040 +904 3021 0.4870 +904 3065 0.4670 +904 3178 0.4130 +904 3700 0.5880 +904 3714 0.7070 +904 3759 0.4200 +904 3899 0.7710 +904 4087 0.4630 +904 4088 0.6110 +904 4089 0.4350 +904 4149 0.4160 +904 4170 0.4100 +904 4261 0.7760 +904 4297 0.6910 +904 4298 0.9990 +904 4299 0.9990 +904 4300 0.9970 +904 4331 0.9340 +904 4602 0.5700 +904 4609 0.9750 +904 4654 0.4240 +904 4686 0.8210 +904 4691 0.5160 +904 4848 0.4220 +904 5371 0.7760 +904 5431 0.6060 +904 5432 0.6320 +904 5433 0.5360 +904 5434 0.5520 +904 5435 0.6750 +904 5436 0.6010 +904 5437 0.5190 +904 5438 0.5760 +904 5439 0.5440 +904 5440 0.5100 +904 5441 0.5160 +904 5451 0.5440 +904 5452 0.5070 +904 5469 0.5520 +904 5496 0.4720 +904 5514 0.4360 +904 5813 0.4480 +904 5828 0.9010 +904 5892 0.5270 +904 5970 0.5850 +904 6046 0.8780 +904 6187 0.6650 +904 6426 0.6020 +904 6427 0.7360 +904 6500 0.4430 +904 6502 0.4790 +904 6597 0.4310 +904 6617 0.5060 +904 6618 0.5000 +904 6619 0.5220 +904 6621 0.5040 +904 6667 0.7590 +904 6749 0.7150 +904 6827 0.9700 +904 6829 0.9900 +904 6830 0.7520 +904 6872 0.5150 +904 6877 0.5620 +904 6878 0.6060 +904 6879 0.4330 +904 6880 0.6510 +904 6882 0.5920 +904 6884 0.5540 +904 6908 0.7590 +904 6917 0.7790 +904 6919 0.9390 +904 6920 0.4080 +904 6921 0.9090 +904 6923 0.9270 +904 6924 0.9490 +904 7157 0.4370 +904 7319 0.4400 +904 7392 0.4130 +904 7469 0.9390 +904 7528 0.5330 +904 7702 0.5630 +904 7852 0.5270 +904 7936 0.9680 +904 8019 0.5700 +904 8178 0.9980 +904 8290 0.4690 +904 8356 0.4710 +904 8454 0.5340 +904 8458 0.7250 +904 8558 0.4170 +904 8621 0.9680 +904 8812 0.8350 +904 8850 0.6370 +904 8900 0.7230 +904 9013 0.4220 +904 9092 0.5700 +904 9150 0.7480 +904 9188 0.5160 +904 9441 0.6150 +904 9443 0.4070 +904 9464 0.4220 +904 9640 0.5310 +904 9646 0.9640 +904 9656 0.5030 +904 9733 0.6560 +904 9869 0.4180 +904 9939 0.9950 +904 9968 0.4060 +904 9969 0.4770 +904 10155 0.4270 +904 10302 0.5040 +904 10346 0.4790 +904 10369 0.4220 +904 10499 0.6270 +904 10614 0.9990 +904 11168 0.6220 +904 11198 0.6900 +904 11338 0.5010 +904 22803 0.4010 +904 22828 0.5030 +904 22916 0.7520 +904 22936 0.9950 +904 22938 0.5890 +904 23097 0.4160 +904 23099 0.4080 +904 23168 0.9450 +904 23210 0.5570 +904 23379 0.9110 +904 23411 0.5520 +904 23476 0.9990 +904 23534 0.4460 +904 25920 0.9400 +904 25939 0.4020 +904 25942 0.4160 +904 26610 0.9060 +904 26747 0.8020 +904 27125 0.9990 +904 27336 0.9000 +904 29072 0.5250 +904 29101 0.6910 +904 51224 0.5740 +904 51497 0.9160 +904 51574 0.9960 +904 51585 0.6810 +904 51755 0.9530 +904 54606 0.5030 +904 54623 0.9440 +904 54904 0.5780 +904 55209 0.4280 +904 55215 0.5340 +904 55250 0.7280 +904 55269 0.4180 +904 55421 0.4310 +904 55677 0.4240 +904 55840 0.9100 +904 56257 0.9840 +904 56647 0.9100 +904 57592 0.5130 +904 64210 0.9010 +904 64919 0.5730 +904 79066 0.4520 +904 79577 0.9630 +904 79664 0.9120 +904 79871 0.4240 +904 80237 0.9920 +904 80335 0.4870 +904 80349 0.9160 +904 80351 0.4580 +904 81669 0.5420 +904 84337 0.5480 +904 84444 0.4730 +904 84524 0.9000 +904 84656 0.4070 +904 84717 0.4290 +904 85363 0.4260 +904 85403 0.9360 +904 122809 0.4660 +904 123169 0.9560 +904 124790 0.9420 +904 129303 0.4200 +904 129685 0.5730 +904 133482 0.4250 +904 256646 0.5610 +904 404672 0.5490 +904 440093 0.4690 +904 440686 0.4690 +904 653604 0.4810 +904 728340 0.5560 +905 983 0.5070 +905 984 0.4580 +905 1017 0.5820 +905 1019 0.5720 +905 1020 0.5900 +905 1021 0.6350 +905 1022 0.9720 +905 1024 0.7750 +905 1025 0.9990 +905 1111 0.5610 +905 2068 0.9030 +905 2071 0.9180 +905 2074 0.9010 +905 2177 0.5260 +905 2334 0.4680 +905 2957 0.5450 +905 2958 0.5230 +905 2959 0.8000 +905 2960 0.5040 +905 2961 0.5120 +905 2962 0.6700 +905 2963 0.5790 +905 2965 0.9080 +905 2966 0.9430 +905 2967 0.9080 +905 2968 0.9300 +905 3714 0.5720 +905 3899 0.6990 +905 4087 0.4610 +905 4088 0.4690 +905 4089 0.4410 +905 4298 0.9890 +905 4299 0.9910 +905 4300 0.9800 +905 4330 0.4260 +905 4331 0.9240 +905 4609 0.6070 +905 4686 0.6500 +905 4848 0.4020 +905 5431 0.7520 +905 5432 0.6270 +905 5433 0.5300 +905 5434 0.5380 +905 5435 0.6050 +905 5436 0.5730 +905 5437 0.5080 +905 5438 0.5570 +905 5439 0.5090 +905 5440 0.5140 +905 5441 0.4990 +905 5451 0.5550 +905 5452 0.5690 +905 5585 0.5320 +905 5828 0.9010 +905 5892 0.5230 +905 5925 0.6600 +905 6046 0.6350 +905 6421 0.4040 +905 6617 0.5000 +905 6618 0.4990 +905 6619 0.5540 +905 6621 0.4990 +905 6667 0.5550 +905 6749 0.6140 +905 6827 0.9570 +905 6829 0.9780 +905 6830 0.6860 +905 6877 0.5460 +905 6878 0.5120 +905 6880 0.5430 +905 6882 0.5410 +905 6884 0.5230 +905 6908 0.6800 +905 6917 0.6680 +905 6919 0.9330 +905 6921 0.9020 +905 6923 0.9130 +905 6924 0.9140 +905 7469 0.9120 +905 7702 0.6220 +905 7936 0.9580 +905 8178 0.9740 +905 8458 0.7220 +905 8621 0.9630 +905 8812 0.8790 +905 8899 0.4220 +905 8900 0.6960 +905 9150 0.6730 +905 9324 0.7730 +905 9441 0.5730 +905 9604 0.4990 +905 9646 0.9210 +905 9656 0.5030 +905 9733 0.6010 +905 9939 0.7150 +905 10208 0.5820 +905 10302 0.4990 +905 10432 0.4330 +905 10472 0.4210 +905 10614 0.9950 +905 11168 0.4380 +905 11198 0.5990 +905 22828 0.4680 +905 22916 0.5340 +905 22936 0.9870 +905 23097 0.4010 +905 23168 0.9290 +905 23210 0.4090 +905 23379 0.9060 +905 23390 0.4850 +905 23451 0.4840 +905 23476 0.9810 +905 25920 0.9290 +905 25957 0.4230 +905 26610 0.9030 +905 26747 0.7250 +905 27125 0.9990 +905 27336 0.7100 +905 29072 0.4020 +905 29101 0.5630 +905 51224 0.5400 +905 51497 0.9060 +905 51574 0.9570 +905 51585 0.7050 +905 51755 0.9420 +905 54469 0.4140 +905 54623 0.9170 +905 54778 0.6480 +905 55015 0.5010 +905 55209 0.4630 +905 55215 0.5280 +905 55250 0.7350 +905 55269 0.4440 +905 55677 0.6110 +905 55840 0.9060 +905 56257 0.9060 +905 56647 0.9090 +905 57599 0.4360 +905 64210 0.9000 +905 79066 0.4340 +905 79577 0.9370 +905 79664 0.9070 +905 80237 0.9910 +905 80349 0.9100 +905 83903 0.4400 +905 84337 0.5480 +905 84524 0.9020 +905 84656 0.4100 +905 85403 0.9190 +905 114803 0.4220 +905 123169 0.9600 +905 124790 0.8820 +905 129685 0.5290 +905 404672 0.5490 +905 728340 0.5560 +905 100526737 0.4770 +908 991 0.9950 +908 999 0.4250 +908 1036 0.4360 +908 1457 0.4410 +908 1503 0.4230 +908 1653 0.4560 +908 1660 0.5190 +908 1665 0.4380 +908 1736 0.4870 +908 1915 0.5660 +908 1937 0.5030 +908 1938 0.5230 +908 1965 0.8360 +908 1968 0.6710 +908 1973 0.5630 +908 2023 0.4160 +908 2058 0.4310 +908 2107 0.5180 +908 2287 0.4140 +908 2597 0.4850 +908 2618 0.4810 +908 2629 0.5150 +908 2631 0.4440 +908 2782 0.6390 +908 2783 0.5850 +908 2784 0.5100 +908 2785 0.4990 +908 2786 0.5070 +908 2787 0.5040 +908 2788 0.4990 +908 2790 0.5090 +908 2791 0.4990 +908 2792 0.4990 +908 2793 0.4990 +908 3064 0.4680 +908 3066 0.4930 +908 3181 0.4320 +908 3297 0.7370 +908 3301 0.6280 +908 3303 0.5660 +908 3304 0.5410 +908 3305 0.5130 +908 3306 0.5200 +908 3308 0.7610 +908 3309 0.5310 +908 3310 0.5900 +908 3312 0.8720 +908 3313 0.7520 +908 3320 0.8390 +908 3326 0.9240 +908 3329 0.8710 +908 3336 0.8800 +908 3337 0.5080 +908 3376 0.5460 +908 3476 0.7780 +908 3608 0.4010 +908 3611 0.4860 +908 3615 0.4170 +908 3692 0.4490 +908 3735 0.5020 +908 3801 0.4990 +908 3837 0.5670 +908 3840 0.5680 +908 3921 0.6960 +908 4141 0.4420 +908 4691 0.4070 +908 4733 0.4310 +908 4830 0.4660 +908 4831 0.5550 +908 4869 0.4210 +908 5036 0.6320 +908 5082 0.7320 +908 5091 0.4870 +908 5111 0.4240 +908 5201 0.9580 +908 5202 0.9770 +908 5203 0.9310 +908 5204 0.9900 +908 5230 0.4380 +908 5245 0.4840 +908 5260 0.4100 +908 5464 0.4480 +908 5499 0.4660 +908 5515 0.9950 +908 5516 0.9940 +908 5518 0.5780 +908 5519 0.4950 +908 5521 0.6240 +908 5522 0.9960 +908 5524 0.4570 +908 5531 0.7950 +908 5536 0.9130 +908 5682 0.4590 +908 5683 0.5170 +908 5684 0.6050 +908 5685 0.5060 +908 5686 0.5540 +908 5687 0.4050 +908 5688 0.5110 +908 5700 0.4780 +908 5701 0.5530 +908 5702 0.4840 +908 5704 0.4630 +908 5705 0.4790 +908 5706 0.4330 +908 5707 0.4870 +908 5708 0.5870 +908 5710 0.4060 +908 5713 0.4940 +908 5714 0.4200 +908 5717 0.5310 +908 5718 0.5340 +908 5813 0.4010 +908 5901 0.7950 +908 5920 0.4110 +908 6000 0.5070 +908 6059 0.4380 +908 6122 0.5590 +908 6124 0.4750 +908 6125 0.4500 +908 6128 0.5050 +908 6129 0.4760 +908 6130 0.4960 +908 6132 0.4250 +908 6133 0.5350 +908 6135 0.4460 +908 6136 0.5610 +908 6137 0.4480 +908 6142 0.4200 +908 6154 0.4320 +908 6155 0.4630 +908 6157 0.4350 +908 6158 0.4320 +908 6164 0.4140 +908 6175 0.5480 +908 6187 0.5900 +908 6188 0.6820 +908 6189 0.4930 +908 6191 0.5580 +908 6202 0.5700 +908 6203 0.5420 +908 6205 0.4880 +908 6206 0.4800 +908 6207 0.4940 +908 6217 0.5280 +908 6224 0.5550 +908 6231 0.4050 +908 6388 0.7230 +908 6468 0.7040 +908 6499 0.5110 +908 6674 0.5990 +908 6741 0.4390 +908 6774 0.5450 +908 6782 0.4270 +908 6801 0.7160 +908 6950 0.9990 +908 7001 0.4470 +908 7157 0.7610 +908 7167 0.4100 +908 7184 0.6300 +908 7203 0.9990 +908 7248 0.9430 +908 7266 0.4310 +908 7277 0.6370 +908 7278 0.5740 +908 7280 0.9660 +908 7336 0.5980 +908 7385 0.4140 +908 7407 0.4370 +908 7411 0.9750 +908 7415 0.5450 +908 7416 0.8280 +908 7417 0.4560 +908 7846 0.7100 +908 7965 0.4900 +908 8192 0.4380 +908 8195 0.7880 +908 8237 0.5310 +908 8409 0.5660 +908 8428 0.9940 +908 8607 0.7510 +908 8624 0.9290 +908 8661 0.4330 +908 8662 0.5500 +908 8664 0.4070 +908 8665 0.4250 +908 8668 0.6290 +908 8725 0.5940 +908 8786 0.4990 +908 8787 0.4990 +908 8833 0.4080 +908 8841 0.5770 +908 8877 0.5060 +908 9045 0.4370 +908 9134 0.5460 +908 9141 0.6360 +908 9361 0.4490 +908 9528 0.4330 +908 9531 0.7540 +908 9532 0.6040 +908 9628 0.4990 +908 9669 0.5080 +908 9775 0.4980 +908 9961 0.4030 +908 10051 0.4010 +908 10096 0.4080 +908 10131 0.4700 +908 10146 0.4620 +908 10190 0.6700 +908 10213 0.7470 +908 10236 0.4420 +908 10238 0.7360 +908 10273 0.5540 +908 10294 0.5700 +908 10376 0.8970 +908 10381 0.6640 +908 10382 0.6640 +908 10383 0.6950 +908 10399 0.6210 +908 10471 0.9700 +908 10480 0.4730 +908 10492 0.5350 +908 10517 0.5030 +908 10525 0.4610 +908 10528 0.7560 +908 10534 0.4480 +908 10564 0.5110 +908 10574 0.9990 +908 10575 0.9990 +908 10576 0.9990 +908 10598 0.5450 +908 10606 0.6650 +908 10681 0.5880 +908 10693 0.9470 +908 10694 0.9990 +908 10726 0.5540 +908 10728 0.9470 +908 10808 0.5380 +908 10856 0.6920 +908 10963 0.9310 +908 10987 0.4110 +908 10989 0.4080 +908 11080 0.4450 +908 11140 0.9310 +908 11145 0.4110 +908 11328 0.5430 +908 11345 0.4620 +908 22803 0.5450 +908 22824 0.5090 +908 22948 0.9990 +908 23030 0.4140 +908 23221 0.5900 +908 23234 0.9470 +908 23476 0.5130 +908 23753 0.7220 +908 25789 0.4330 +908 25843 0.9940 +908 25870 0.6560 +908 25956 0.6370 +908 26140 0.4430 +908 26190 0.5070 +908 26224 0.5080 +908 26234 0.4990 +908 26270 0.5170 +908 26272 0.4990 +908 26330 0.6150 +908 26353 0.7620 +908 26354 0.4360 +908 26985 0.5130 +908 27000 0.4450 +908 29789 0.4680 +908 29888 0.9940 +908 29966 0.9940 +908 30846 0.4940 +908 51142 0.4290 +908 51182 0.5100 +908 51373 0.6870 +908 51398 0.5400 +908 51602 0.5160 +908 51726 0.8300 +908 51764 0.4990 +908 51807 0.5730 +908 54331 0.4990 +908 54431 0.4440 +908 54461 0.5300 +908 54475 0.4080 +908 54853 0.4960 +908 54979 0.4110 +908 55135 0.7300 +908 55154 0.4990 +908 55172 0.5700 +908 55294 0.6330 +908 55466 0.5650 +908 55622 0.4140 +908 55780 0.8370 +908 55844 0.6130 +908 55970 0.5070 +908 56852 0.4060 +908 56984 0.9050 +908 57003 0.5560 +908 57110 0.4110 +908 57826 0.4580 +908 59345 0.5100 +908 63971 0.5580 +908 79031 0.9840 +908 79657 0.6040 +908 79738 0.8550 +908 79861 0.8340 +908 80086 0.5730 +908 80273 0.5920 +908 81027 0.5800 +908 81570 0.5510 +908 81572 0.5500 +908 81631 0.5360 +908 83752 0.7110 +908 83992 0.9940 +908 84140 0.6260 +908 84261 0.5670 +908 84557 0.4420 +908 84617 0.6760 +908 84790 0.8080 +908 94235 0.4990 +908 112714 0.5730 +908 113457 0.5770 +908 116835 0.5020 +908 118461 0.4110 +908 120379 0.5450 +908 134266 0.5700 +908 150160 0.9510 +908 165721 0.4080 +908 202052 0.4330 +908 203068 0.9300 +908 259217 0.4110 +908 285126 0.4810 +908 339416 0.4230 +908 347733 0.6460 +908 349075 0.4610 +908 387712 0.4270 +908 388633 0.4110 +909 910 0.9260 +909 911 0.8800 +909 912 0.5770 +909 913 0.7880 +909 914 0.7360 +909 915 0.6290 +909 916 0.6990 +909 917 0.5540 +909 919 0.6040 +909 920 0.7930 +909 921 0.7970 +909 924 0.7510 +909 925 0.7370 +909 930 0.6640 +909 933 0.5150 +909 940 0.4210 +909 941 0.8010 +909 942 0.8120 +909 943 0.6690 +909 945 0.6320 +909 947 0.7240 +909 949 0.4350 +909 952 0.5750 +909 958 0.7170 +909 959 0.5110 +909 960 0.6020 +909 965 0.4210 +909 968 0.9060 +909 969 0.4330 +909 973 0.5890 +909 1234 0.4600 +909 1235 0.6390 +909 1236 0.5900 +909 1378 0.6170 +909 1380 0.6620 +909 1437 0.7370 +909 1791 0.6230 +909 2209 0.5020 +909 2212 0.4390 +909 2213 0.4420 +909 2323 0.4530 +909 2335 0.4900 +909 2526 0.5930 +909 2950 0.4280 +909 2993 0.4200 +909 3002 0.4140 +909 3383 0.5230 +909 3385 0.4240 +909 3439 0.4770 +909 3458 0.6380 +909 3553 0.5290 +909 3558 0.5160 +909 3563 0.6650 +909 3565 0.7050 +909 3569 0.5360 +909 3574 0.4350 +909 3575 0.5570 +909 3576 0.4490 +909 3586 0.6190 +909 3596 0.4400 +909 3605 0.4730 +909 3683 0.6380 +909 3684 0.5700 +909 3687 0.7860 +909 3689 0.4190 +909 3815 0.6000 +909 3820 0.4030 +909 3824 0.4030 +909 4065 0.5710 +909 4267 0.6800 +909 4311 0.7590 +909 4353 0.5290 +909 4360 0.4660 +909 4684 0.6750 +909 5079 0.4750 +909 5175 0.4080 +909 5551 0.4490 +909 5788 0.6820 +909 6118 0.4360 +909 6335 0.4450 +909 6363 0.4170 +909 6364 0.4260 +909 6367 0.4030 +909 6373 0.5360 +909 6382 0.4360 +909 6624 0.5070 +909 6693 0.4670 +909 7096 0.4780 +909 7099 0.4240 +909 7124 0.6320 +909 7852 0.4130 +909 8797 0.4040 +909 9034 0.4170 +909 9308 0.8880 +909 9332 0.7010 +909 9436 0.4490 +909 11251 0.4510 +909 23284 0.4520 +909 26155 0.7390 +909 27074 0.6200 +909 27087 0.4910 +909 29126 0.4360 +909 29935 0.4360 +909 30835 0.7260 +909 50489 0.9750 +909 50943 0.5410 +909 59340 0.4910 +909 80381 0.4580 +909 80709 0.6970 +909 81793 0.4730 +909 89790 0.4070 +909 143689 0.4020 +909 170482 0.5100 +909 100526664 0.5610 +910 911 0.9160 +910 912 0.5710 +910 913 0.9980 +910 914 0.7310 +910 915 0.6560 +910 916 0.7900 +910 917 0.5720 +910 919 0.5980 +910 920 0.8530 +910 921 0.7970 +910 924 0.7390 +910 925 0.8110 +910 928 0.6030 +910 930 0.6540 +910 933 0.5110 +910 940 0.4750 +910 941 0.8020 +910 942 0.8100 +910 943 0.6560 +910 945 0.6290 +910 947 0.7240 +910 948 0.4260 +910 950 0.4060 +910 952 0.5690 +910 958 0.7210 +910 959 0.7820 +910 960 0.5980 +910 962 0.5410 +910 965 0.4120 +910 967 0.4740 +910 968 0.9000 +910 969 0.4630 +910 972 0.4930 +910 973 0.5670 +910 1043 0.5950 +910 1234 0.4480 +910 1235 0.6440 +910 1236 0.6100 +910 1378 0.6060 +910 1380 0.6670 +910 1437 0.7400 +910 1493 0.4230 +910 1791 0.6270 +910 2209 0.5150 +910 2212 0.4450 +910 2213 0.4410 +910 2323 0.4570 +910 2335 0.4920 +910 2526 0.5840 +910 2625 0.4110 +910 2629 0.5900 +910 2717 0.6050 +910 2993 0.4230 +910 3002 0.4180 +910 3383 0.5270 +910 3385 0.4420 +910 3439 0.4790 +910 3458 0.7770 +910 3552 0.4100 +910 3553 0.5470 +910 3558 0.5550 +910 3559 0.5510 +910 3563 0.6650 +910 3565 0.7330 +910 3567 0.4040 +910 3569 0.5650 +910 3574 0.4390 +910 3575 0.7070 +910 3576 0.5390 +910 3586 0.8570 +910 3596 0.4740 +910 3600 0.4270 +910 3605 0.5080 +910 3620 0.4160 +910 3682 0.4090 +910 3683 0.5830 +910 3684 0.5860 +910 3687 0.7040 +910 3689 0.6330 +910 3702 0.4390 +910 3732 0.4380 +910 3815 0.5810 +910 3820 0.4700 +910 3824 0.4060 +910 3920 0.4280 +910 4065 0.5990 +910 4125 0.6200 +910 4267 0.6790 +910 4311 0.7440 +910 4353 0.5200 +910 4360 0.5280 +910 4684 0.6760 +910 5079 0.4810 +910 5346 0.4120 +910 5551 0.4030 +910 5660 0.6470 +910 5788 0.6750 +910 6118 0.4360 +910 6335 0.4430 +910 6361 0.4730 +910 6363 0.4410 +910 6364 0.4290 +910 6367 0.4380 +910 6373 0.5490 +910 6382 0.4350 +910 6624 0.5070 +910 6693 0.4610 +910 7097 0.4350 +910 7099 0.4400 +910 7124 0.6410 +910 7852 0.4010 +910 8546 0.5410 +910 9034 0.4310 +910 9308 0.9620 +910 9332 0.7040 +910 10320 0.6040 +910 10385 0.4840 +910 10462 0.4330 +910 10871 0.4020 +910 11027 0.4870 +910 11120 0.5000 +910 11151 0.4160 +910 11251 0.4450 +910 23284 0.4410 +910 26155 0.7350 +910 27074 0.6200 +910 27087 0.4960 +910 27243 0.4100 +910 29126 0.4510 +910 29935 0.4360 +910 30835 0.7560 +910 50489 0.9400 +910 50616 0.4520 +910 50943 0.5420 +910 51284 0.5970 +910 51311 0.5550 +910 57823 0.4210 +910 78991 0.4010 +910 79908 0.4310 +910 80023 0.4200 +910 80381 0.4680 +910 80709 0.5800 +910 84868 0.5630 +910 114625 0.4560 +910 153579 0.4510 +910 170482 0.5450 +910 100526664 0.5980 +911 912 0.6400 +911 913 0.7790 +911 914 0.8380 +911 915 0.8180 +911 916 0.7600 +911 917 0.6210 +911 919 0.6530 +911 920 0.8890 +911 921 0.7940 +911 923 0.4030 +911 924 0.7390 +911 925 0.8560 +911 926 0.4580 +911 928 0.6110 +911 930 0.7800 +911 931 0.5890 +911 933 0.5540 +911 939 0.5970 +911 940 0.5600 +911 941 0.8140 +911 942 0.8560 +911 943 0.6350 +911 945 0.6840 +911 946 0.5120 +911 947 0.7260 +911 948 0.4620 +911 949 0.4240 +911 950 0.4380 +911 952 0.6410 +911 958 0.7510 +911 959 0.8080 +911 960 0.6350 +911 962 0.4390 +911 965 0.4450 +911 968 0.8880 +911 969 0.6300 +911 972 0.4370 +911 973 0.6620 +911 1043 0.5010 +911 1088 0.4810 +911 1230 0.4270 +911 1234 0.6800 +911 1235 0.7250 +911 1236 0.7290 +911 1378 0.6220 +911 1380 0.6890 +911 1435 0.4340 +911 1436 0.6230 +911 1437 0.7460 +911 1493 0.5390 +911 1524 0.4820 +911 1791 0.5900 +911 2205 0.6720 +911 2206 0.4120 +911 2207 0.4130 +911 2208 0.4600 +911 2209 0.6050 +911 2212 0.5050 +911 2213 0.5560 +911 2322 0.4730 +911 2323 0.6040 +911 2335 0.5100 +911 2526 0.6090 +911 2625 0.4400 +911 2829 0.6580 +911 2833 0.4810 +911 2993 0.4470 +911 3002 0.5410 +911 3108 0.4050 +911 3113 0.4760 +911 3122 0.4980 +911 3383 0.5590 +911 3385 0.5010 +911 3394 0.6150 +911 3439 0.6050 +911 3456 0.4090 +911 3458 0.8100 +911 3552 0.4380 +911 3553 0.6270 +911 3558 0.6050 +911 3562 0.4270 +911 3563 0.8740 +911 3565 0.7430 +911 3567 0.4560 +911 3569 0.6180 +911 3574 0.4860 +911 3575 0.6490 +911 3576 0.5140 +911 3586 0.8160 +911 3596 0.5170 +911 3600 0.5020 +911 3605 0.5940 +911 3606 0.4330 +911 3620 0.5250 +911 3627 0.5000 +911 3662 0.5530 +911 3682 0.6320 +911 3683 0.5130 +911 3684 0.7050 +911 3687 0.8870 +911 3689 0.4920 +911 3700 0.4810 +911 3732 0.4760 +911 3811 0.4730 +911 3815 0.5820 +911 3820 0.5450 +911 3824 0.4740 +911 4065 0.6380 +911 4069 0.4370 +911 4267 0.6310 +911 4283 0.4330 +911 4311 0.7400 +911 4353 0.5220 +911 4360 0.6030 +911 4684 0.7270 +911 4818 0.4100 +911 5079 0.6810 +911 5133 0.4490 +911 5175 0.4570 +911 5493 0.4010 +911 5551 0.4970 +911 5660 0.4140 +911 5664 0.4350 +911 5788 0.7410 +911 6118 0.4360 +911 6335 0.4310 +911 6347 0.4870 +911 6348 0.4700 +911 6351 0.4720 +911 6361 0.5030 +911 6363 0.5120 +911 6364 0.4560 +911 6366 0.4640 +911 6367 0.4570 +911 6373 0.5930 +911 6382 0.4620 +911 6402 0.5280 +911 6614 0.4270 +911 6624 0.5060 +911 6688 0.4940 +911 6693 0.4790 +911 7040 0.4350 +911 7056 0.8920 +911 7096 0.4650 +911 7097 0.5430 +911 7098 0.5260 +911 7099 0.5580 +911 7124 0.6970 +911 7292 0.4070 +911 7852 0.4890 +911 8829 0.7600 +911 9034 0.5370 +911 9308 0.9420 +911 9332 0.7350 +911 9436 0.5230 +911 9437 0.4350 +911 9450 0.4190 +911 9656 0.4790 +911 9728 0.5170 +911 10288 0.6500 +911 10320 0.4280 +911 10462 0.7500 +911 10578 0.4050 +911 11006 0.4880 +911 11027 0.4660 +911 11151 0.4580 +911 11251 0.4470 +911 11326 0.4100 +911 22914 0.5070 +911 23284 0.4300 +911 23547 0.5410 +911 23643 0.4100 +911 23765 0.4290 +911 25936 0.4280 +911 26155 0.6990 +911 27074 0.6570 +911 27087 0.5160 +911 29126 0.5840 +911 29851 0.4570 +911 29935 0.4360 +911 30009 0.5090 +911 30835 0.8610 +911 50489 0.9360 +911 50616 0.4880 +911 50856 0.5710 +911 50943 0.6400 +911 51284 0.6140 +911 51311 0.5200 +911 51338 0.4730 +911 51348 0.4850 +911 53616 0.5710 +911 54106 0.5730 +911 54210 0.5050 +911 55509 0.5970 +911 57823 0.4460 +911 64581 0.4570 +911 65258 0.6970 +911 80380 0.4080 +911 80381 0.5590 +911 80709 0.5790 +911 84868 0.4260 +911 85480 0.4570 +911 89790 0.4800 +911 140685 0.4500 +911 140885 0.6650 +911 151888 0.4590 +911 160364 0.4200 +911 169355 0.4090 +911 170482 0.9150 +911 283420 0.7300 +911 100133941 0.4130 +911 100526664 0.6280 +912 914 0.6500 +912 915 0.6390 +912 916 0.7140 +912 917 0.5790 +912 919 0.6790 +912 920 0.9110 +912 921 0.8400 +912 924 0.6960 +912 925 0.8910 +912 928 0.6360 +912 930 0.7620 +912 933 0.5170 +912 939 0.6040 +912 940 0.5890 +912 941 0.7940 +912 942 0.8290 +912 943 0.6260 +912 945 0.6210 +912 947 0.7010 +912 948 0.4190 +912 950 0.4240 +912 951 0.4290 +912 952 0.6290 +912 958 0.8400 +912 959 0.8770 +912 960 0.7500 +912 968 0.8750 +912 969 0.7120 +912 972 0.6770 +912 973 0.5440 +912 1003 0.4240 +912 1039 0.6510 +912 1234 0.5350 +912 1235 0.7060 +912 1236 0.6260 +912 1362 0.4930 +912 1378 0.6130 +912 1380 0.7390 +912 1437 0.7390 +912 1493 0.5020 +912 1511 0.4280 +912 1514 0.5050 +912 1520 0.6290 +912 1791 0.5780 +912 1956 0.7830 +912 1959 0.4310 +912 2064 0.4560 +912 2209 0.5120 +912 2212 0.5470 +912 2213 0.5800 +912 2323 0.4460 +912 2335 0.5130 +912 2526 0.5790 +912 2625 0.5410 +912 2629 0.5240 +912 2717 0.7130 +912 2833 0.4950 +912 3002 0.5930 +912 3383 0.5730 +912 3385 0.4070 +912 3398 0.4930 +912 3439 0.5410 +912 3458 0.8840 +912 3552 0.4650 +912 3553 0.6260 +912 3558 0.6930 +912 3559 0.4130 +912 3560 0.5540 +912 3563 0.6210 +912 3565 0.8710 +912 3566 0.4280 +912 3567 0.5600 +912 3569 0.6220 +912 3574 0.5280 +912 3575 0.6510 +912 3576 0.4560 +912 3586 0.8470 +912 3596 0.7590 +912 3600 0.6080 +912 3605 0.6930 +912 3606 0.5620 +912 3620 0.4860 +912 3627 0.4380 +912 3682 0.5300 +912 3683 0.4790 +912 3684 0.6950 +912 3687 0.7400 +912 3689 0.4510 +912 3732 0.4510 +912 3815 0.5770 +912 3820 0.8520 +912 3821 0.4790 +912 3824 0.5550 +912 3916 0.4040 +912 4065 0.5130 +912 4068 0.4390 +912 4267 0.6310 +912 4311 0.5860 +912 4353 0.5260 +912 4360 0.4900 +912 4547 0.5070 +912 4585 0.4800 +912 4586 0.4640 +912 4684 0.7050 +912 5079 0.4440 +912 5133 0.4200 +912 5175 0.4230 +912 5551 0.6270 +912 5588 0.4090 +912 5660 0.7390 +912 5688 0.4630 +912 5788 0.8200 +912 5817 0.4230 +912 5896 0.4920 +912 6118 0.4360 +912 6241 0.4880 +912 6335 0.4310 +912 6347 0.4600 +912 6348 0.4290 +912 6351 0.4080 +912 6361 0.4270 +912 6363 0.4410 +912 6364 0.4400 +912 6366 0.4290 +912 6382 0.5880 +912 6402 0.6240 +912 6504 0.5290 +912 6614 0.4610 +912 6624 0.4480 +912 6693 0.5890 +912 6714 0.4740 +912 7040 0.4160 +912 7097 0.5340 +912 7098 0.4450 +912 7099 0.5620 +912 7124 0.6950 +912 7399 0.5010 +912 7704 0.6270 +912 7852 0.4610 +912 8320 0.4030 +912 8639 0.5220 +912 9034 0.5300 +912 9308 0.9140 +912 9332 0.6880 +912 9436 0.4310 +912 9437 0.5030 +912 10161 0.4140 +912 10288 0.6170 +912 10384 0.4310 +912 10544 0.4200 +912 10663 0.4810 +912 10673 0.4380 +912 10871 0.4260 +912 10917 0.4100 +912 11118 0.4370 +912 11119 0.4870 +912 11120 0.4230 +912 11251 0.4110 +912 22914 0.7610 +912 22918 0.4220 +912 23643 0.4490 +912 23765 0.4640 +912 27036 0.4240 +912 27074 0.5830 +912 27087 0.5170 +912 29126 0.5830 +912 29851 0.4870 +912 29935 0.4360 +912 30009 0.6260 +912 30835 0.6730 +912 50489 0.9070 +912 50616 0.5810 +912 50943 0.7220 +912 51043 0.4150 +912 51284 0.4910 +912 51311 0.4040 +912 54106 0.5280 +912 55016 0.4560 +912 58191 0.4010 +912 64581 0.4050 +912 79908 0.4510 +912 80380 0.4040 +912 80381 0.5590 +912 80709 0.5130 +912 84868 0.5420 +912 85480 0.4080 +912 89790 0.4050 +912 90865 0.4430 +912 114836 0.5250 +912 127550 0.4600 +912 135250 0.4830 +912 153579 0.4050 +912 170482 0.4870 +912 256987 0.4160 +912 375611 0.4220 +912 100133941 0.6260 +912 100526664 0.5000 +913 914 0.6960 +913 920 0.7930 +913 921 0.7810 +913 924 0.7450 +913 925 0.7300 +913 930 0.6460 +913 933 0.4910 +913 940 0.4300 +913 941 0.7890 +913 942 0.8060 +913 943 0.6800 +913 945 0.6300 +913 947 0.7240 +913 952 0.5720 +913 958 0.7170 +913 959 0.7110 +913 960 0.5910 +913 968 0.9060 +913 969 0.4490 +913 973 0.6770 +913 1234 0.4460 +913 1235 0.6450 +913 1236 0.6850 +913 1378 0.6060 +913 1380 0.6550 +913 1437 0.7490 +913 1791 0.6290 +913 2205 0.5050 +913 2209 0.5470 +913 2212 0.4130 +913 2213 0.4130 +913 2323 0.4280 +913 2335 0.4820 +913 2526 0.5840 +913 2950 0.4240 +913 2993 0.4220 +913 3002 0.4140 +913 3383 0.5100 +913 3439 0.4780 +913 3458 0.6500 +913 3552 0.4130 +913 3553 0.5200 +913 3558 0.5360 +913 3563 0.6660 +913 3565 0.7440 +913 3567 0.4280 +913 3569 0.5360 +913 3574 0.4220 +913 3575 0.6050 +913 3576 0.5380 +913 3586 0.6190 +913 3596 0.4760 +913 3605 0.4980 +913 3620 0.4130 +913 3682 0.4150 +913 3683 0.6270 +913 3684 0.5630 +913 3687 0.7040 +913 3689 0.4070 +913 3815 0.5860 +913 3820 0.4050 +913 3824 0.4100 +913 4065 0.5690 +913 4125 0.7140 +913 4267 0.6810 +913 4311 0.6030 +913 4353 0.5260 +913 4360 0.4970 +913 4684 0.6760 +913 5079 0.4550 +913 5175 0.4080 +913 5788 0.6690 +913 6118 0.4360 +913 6335 0.4450 +913 6361 0.4560 +913 6363 0.4390 +913 6364 0.4530 +913 6382 0.4480 +913 6624 0.5180 +913 6693 0.4670 +913 7096 0.4390 +913 7124 0.6110 +913 9034 0.4170 +913 9308 0.9160 +913 9332 0.7020 +913 9436 0.4840 +913 10462 0.5060 +913 11251 0.4820 +913 27074 0.6100 +913 27087 0.5180 +913 29126 0.4470 +913 29935 0.4360 +913 30835 0.7060 +913 50489 0.9560 +913 50616 0.4310 +913 50943 0.5460 +913 51720 0.4010 +913 57552 0.4070 +913 80381 0.5980 +913 80709 0.6760 +913 81793 0.4590 +913 170482 0.5140 +913 100526664 0.5630 +914 915 0.9560 +914 916 0.9590 +914 917 0.9300 +914 919 0.9440 +914 920 0.9960 +914 921 0.9940 +914 923 0.9500 +914 924 0.9790 +914 925 0.9980 +914 926 0.6610 +914 928 0.4490 +914 930 0.9420 +914 931 0.5250 +914 933 0.8330 +914 939 0.8870 +914 940 0.9850 +914 941 0.9030 +914 942 0.8320 +914 943 0.7780 +914 945 0.7700 +914 946 0.4030 +914 947 0.7830 +914 948 0.6970 +914 949 0.6530 +914 950 0.6700 +914 951 0.7630 +914 952 0.8260 +914 958 0.5170 +914 959 0.8770 +914 960 0.7100 +914 962 0.9980 +914 963 0.9410 +914 965 0.9990 +914 966 0.9520 +914 968 0.5300 +914 969 0.8910 +914 972 0.4650 +914 973 0.7440 +914 974 0.5600 +914 975 0.6290 +914 1043 0.8710 +914 1066 0.6020 +914 1088 0.6520 +914 1234 0.8100 +914 1236 0.8220 +914 1238 0.5610 +914 1378 0.4690 +914 1380 0.6780 +914 1436 0.5210 +914 1437 0.4450 +914 1493 0.8250 +914 1521 0.4100 +914 1791 0.6620 +914 1803 0.6880 +914 1880 0.4020 +914 1956 0.4870 +914 2205 0.4020 +914 2207 0.5130 +914 2209 0.6380 +914 2212 0.4450 +914 2213 0.4780 +914 2322 0.4890 +914 2323 0.5000 +914 2335 0.5160 +914 2526 0.8530 +914 2533 0.5490 +914 2534 0.9020 +914 2625 0.4520 +914 2811 0.4470 +914 2829 0.5300 +914 2833 0.6930 +914 2993 0.7620 +914 2995 0.4920 +914 2999 0.8340 +914 3001 0.9230 +914 3002 0.8740 +914 3003 0.8890 +914 3004 0.4750 +914 3105 0.4310 +914 3108 0.4710 +914 3113 0.5610 +914 3117 0.4040 +914 3119 0.4310 +914 3122 0.6620 +914 3133 0.4790 +914 3383 0.9920 +914 3384 0.5860 +914 3385 0.6030 +914 3394 0.4120 +914 3439 0.4310 +914 3458 0.7230 +914 3553 0.4500 +914 3558 0.7290 +914 3559 0.7690 +914 3560 0.8240 +914 3561 0.7890 +914 3563 0.7670 +914 3565 0.5530 +914 3566 0.4330 +914 3569 0.6020 +914 3574 0.4870 +914 3575 0.7750 +914 3586 0.5350 +914 3587 0.5630 +914 3600 0.5180 +914 3605 0.4340 +914 3630 0.6500 +914 3662 0.4890 +914 3674 0.4420 +914 3676 0.6750 +914 3678 0.4200 +914 3683 0.9250 +914 3684 0.6660 +914 3687 0.7780 +914 3688 0.6090 +914 3689 0.8360 +914 3700 0.5460 +914 3702 0.9090 +914 3718 0.4140 +914 3802 0.7130 +914 3804 0.4870 +914 3811 0.4730 +914 3812 0.4150 +914 3815 0.6850 +914 3820 0.9180 +914 3821 0.6030 +914 3822 0.7430 +914 3824 0.7230 +914 3902 0.6240 +914 3937 0.6010 +914 3960 0.4340 +914 3972 0.4230 +914 4050 0.4520 +914 4063 0.8060 +914 4068 0.8730 +914 4118 0.5290 +914 4261 0.4590 +914 4267 0.6690 +914 4283 0.7030 +914 4311 0.7700 +914 4353 0.6040 +914 4684 0.9210 +914 4818 0.8470 +914 4893 0.5170 +914 4948 0.4140 +914 5079 0.6390 +914 5133 0.5150 +914 5175 0.5080 +914 5450 0.4240 +914 5551 0.8380 +914 5578 0.4390 +914 5588 0.4120 +914 5781 0.5020 +914 5782 0.5990 +914 5788 0.8720 +914 5790 0.5510 +914 5817 0.5440 +914 5896 0.4290 +914 5914 0.4120 +914 6351 0.4430 +914 6363 0.4410 +914 6375 0.4470 +914 6382 0.4800 +914 6402 0.8010 +914 6403 0.4130 +914 6504 0.8990 +914 6693 0.8170 +914 6714 0.4050 +914 6772 0.4130 +914 6775 0.6370 +914 6777 0.4040 +914 6846 0.4510 +914 6850 0.4930 +914 7037 0.6150 +914 7056 0.5570 +914 7072 0.7240 +914 7094 0.6590 +914 7097 0.4470 +914 7098 0.5240 +914 7124 0.5820 +914 7252 0.4690 +914 7293 0.4640 +914 7305 0.5050 +914 7409 0.4100 +914 7412 0.6130 +914 7454 0.6320 +914 7535 0.8490 +914 7852 0.6730 +914 8115 0.4110 +914 8320 0.6160 +914 8449 0.4120 +914 8530 0.4640 +914 8631 0.5010 +914 8743 0.5450 +914 8784 0.5800 +914 8829 0.5180 +914 8832 0.8200 +914 8986 0.4890 +914 9034 0.4320 +914 9051 0.9580 +914 9184 0.4600 +914 9235 0.4130 +914 9252 0.4260 +914 9308 0.5580 +914 9332 0.7270 +914 9398 0.5780 +914 9436 0.6100 +914 9437 0.7500 +914 9595 0.4800 +914 9806 0.4010 +914 10013 0.4770 +914 10077 0.6390 +914 10125 0.4010 +914 10219 0.4890 +914 10225 0.7090 +914 10288 0.4100 +914 10320 0.5310 +914 10421 0.9920 +914 10537 0.4600 +914 10563 0.6960 +914 10578 0.6500 +914 10663 0.6130 +914 10666 0.7440 +914 10673 0.4310 +914 10803 0.6270 +914 10859 0.5040 +914 10870 0.5420 +914 10875 0.4500 +914 10969 0.4290 +914 11126 0.6190 +914 11151 0.5470 +914 22806 0.4060 +914 22914 0.6820 +914 23532 0.4370 +914 23607 0.9910 +914 26191 0.5860 +914 27036 0.4920 +914 27040 0.4700 +914 27087 0.7240 +914 27240 0.4050 +914 27334 0.4170 +914 29126 0.4550 +914 29851 0.8800 +914 29909 0.5800 +914 30009 0.7250 +914 30011 0.8190 +914 50852 0.7740 +914 50856 0.4040 +914 50943 0.6130 +914 51338 0.4230 +914 51348 0.6760 +914 51744 0.7980 +914 53347 0.6460 +914 55303 0.5190 +914 55340 0.4950 +914 55423 0.5750 +914 56253 0.4850 +914 56833 0.6500 +914 57823 0.8530 +914 59272 0.4080 +914 60489 0.5870 +914 64919 0.4150 +914 64926 0.4850 +914 65217 0.4790 +914 79037 0.5360 +914 80342 0.5890 +914 80381 0.6580 +914 83660 0.6600 +914 84636 0.4150 +914 84868 0.5540 +914 89886 0.7540 +914 114569 0.4280 +914 114836 0.8640 +914 115362 0.4020 +914 117157 0.7730 +914 117289 0.5090 +914 149628 0.4830 +914 151888 0.6510 +914 168537 0.5400 +914 170482 0.7260 +914 200316 0.5550 +914 201633 0.6020 +914 259197 0.6850 +914 259236 0.4610 +914 374403 0.4040 +914 374569 0.5000 +914 387357 0.4760 +914 474344 0.4400 +914 100133941 0.4200 +914 102723407 0.6150 +915 916 0.9990 +915 917 0.9990 +915 919 0.9990 +915 920 0.9820 +915 921 0.6680 +915 923 0.8560 +915 924 0.6260 +915 925 0.9970 +915 926 0.9920 +915 930 0.6100 +915 931 0.7490 +915 939 0.8010 +915 940 0.7040 +915 942 0.4630 +915 950 0.4880 +915 959 0.7500 +915 962 0.7350 +915 963 0.4170 +915 968 0.7100 +915 969 0.6180 +915 972 0.6810 +915 973 0.7270 +915 974 0.6980 +915 975 0.4630 +915 1043 0.7160 +915 1080 0.5360 +915 1173 0.5220 +915 1175 0.5190 +915 1234 0.4940 +915 1236 0.6960 +915 1237 0.4390 +915 1436 0.4450 +915 1445 0.6380 +915 1493 0.6330 +915 1521 0.4880 +915 1524 0.4380 +915 1601 0.5250 +915 1656 0.4400 +915 1811 0.4530 +915 1953 0.5360 +915 2028 0.4060 +915 2113 0.6460 +915 2205 0.4920 +915 2206 0.6730 +915 2207 0.7200 +915 2230 0.4630 +915 2335 0.4520 +915 2533 0.5310 +915 2534 0.8540 +915 2625 0.5210 +915 2833 0.4640 +915 2885 0.5660 +915 2990 0.4060 +915 2999 0.6820 +915 3001 0.9400 +915 3002 0.6930 +915 3003 0.9410 +915 3004 0.5420 +915 3105 0.9250 +915 3106 0.6280 +915 3107 0.6390 +915 3112 0.4070 +915 3113 0.7910 +915 3115 0.6310 +915 3117 0.7670 +915 3118 0.7760 +915 3119 0.7770 +915 3120 0.6550 +915 3122 0.8640 +915 3123 0.6920 +915 3127 0.6640 +915 3133 0.6400 +915 3134 0.6080 +915 3135 0.6000 +915 3145 0.7950 +915 3267 0.4990 +915 3458 0.5610 +915 3558 0.7190 +915 3559 0.4940 +915 3560 0.7030 +915 3561 0.7410 +915 3569 0.5530 +915 3575 0.8460 +915 3586 0.4330 +915 3587 0.5040 +915 3627 0.4020 +915 3683 0.6460 +915 3684 0.4710 +915 3687 0.4350 +915 3689 0.4310 +915 3695 0.6230 +915 3702 0.9450 +915 3718 0.4660 +915 3738 0.4040 +915 3820 0.8150 +915 3821 0.5670 +915 3824 0.5770 +915 3902 0.5850 +915 3937 0.9070 +915 3949 0.5040 +915 4036 0.5150 +915 4050 0.4650 +915 4067 0.4250 +915 4068 0.9140 +915 4069 0.5920 +915 4074 0.4050 +915 4261 0.5410 +915 4283 0.4960 +915 4288 0.4570 +915 4297 0.4520 +915 4635 0.4050 +915 4684 0.4250 +915 4818 0.8340 +915 5133 0.8520 +915 5295 0.5450 +915 5335 0.5470 +915 5551 0.5800 +915 5588 0.6310 +915 5777 0.6390 +915 5781 0.5880 +915 5788 0.8990 +915 5790 0.5640 +915 5795 0.4480 +915 5880 0.4280 +915 5896 0.5060 +915 6363 0.4510 +915 6375 0.5460 +915 6464 0.5190 +915 6572 0.4030 +915 6734 0.4860 +915 6772 0.4170 +915 6775 0.4660 +915 6844 0.4990 +915 6845 0.4990 +915 6846 0.5460 +915 6850 0.9400 +915 6932 0.5540 +915 7018 0.4740 +915 7037 0.4920 +915 7070 0.7390 +915 7124 0.4140 +915 7153 0.5530 +915 7177 0.5060 +915 7294 0.4380 +915 7305 0.4580 +915 7409 0.5200 +915 7415 0.7420 +915 7535 0.9980 +915 7850 0.4210 +915 7852 0.4040 +915 8301 0.5000 +915 8320 0.4960 +915 8530 0.4980 +915 8631 0.5840 +915 8673 0.5130 +915 8832 0.4130 +915 9235 0.5720 +915 9332 0.4960 +915 9341 0.4990 +915 9402 0.7880 +915 9437 0.4260 +915 9452 0.4250 +915 9595 0.4310 +915 9856 0.4180 +915 9892 0.5000 +915 9923 0.5500 +915 10125 0.4190 +915 10206 0.4230 +915 10219 0.4030 +915 10225 0.6560 +915 10320 0.4980 +915 10365 0.4450 +915 10537 0.5430 +915 10538 0.4060 +915 10563 0.4860 +915 10578 0.7710 +915 10618 0.4860 +915 10663 0.6010 +915 10870 0.5610 +915 11151 0.6370 +915 11184 0.4710 +915 22800 0.4270 +915 22914 0.5720 +915 23190 0.6860 +915 23547 0.4130 +915 23644 0.4210 +915 26119 0.5200 +915 26191 0.6650 +915 27040 0.8040 +915 27240 0.4820 +915 29126 0.8060 +915 29851 0.8010 +915 29909 0.6050 +915 29978 0.5560 +915 29988 0.4470 +915 30009 0.5050 +915 49856 0.6330 +915 50852 0.9750 +915 50943 0.6660 +915 51176 0.4820 +915 51237 0.6270 +915 51338 0.4700 +915 51348 0.5090 +915 51744 0.4130 +915 53347 0.6390 +915 54518 0.4140 +915 54995 0.4470 +915 55423 0.4920 +915 55824 0.5660 +915 56253 0.4360 +915 57823 0.4670 +915 64919 0.5670 +915 79037 0.4370 +915 79139 0.6000 +915 80153 0.4200 +915 80342 0.5140 +915 80380 0.6670 +915 83888 0.4230 +915 84174 0.4430 +915 84447 0.4730 +915 84868 0.4600 +915 112812 0.4630 +915 114836 0.5850 +915 115361 0.4710 +915 117289 0.4350 +915 151888 0.4100 +915 167227 0.4230 +915 168537 0.4670 +915 171558 0.6960 +915 201633 0.5850 +915 374403 0.4460 +915 387357 0.4640 +915 653361 0.4100 +916 917 0.9990 +916 919 0.9990 +916 920 0.9910 +916 921 0.8990 +916 923 0.8490 +916 924 0.6770 +916 925 0.9950 +916 926 0.9900 +916 930 0.8090 +916 931 0.6920 +916 939 0.7870 +916 940 0.8280 +916 941 0.5740 +916 942 0.6810 +916 945 0.5130 +916 947 0.5440 +916 948 0.4590 +916 952 0.7000 +916 958 0.4970 +916 959 0.7340 +916 960 0.6620 +916 962 0.7800 +916 968 0.7210 +916 969 0.7990 +916 972 0.4670 +916 973 0.6610 +916 974 0.5420 +916 1043 0.8460 +916 1230 0.4840 +916 1234 0.4500 +916 1236 0.7440 +916 1237 0.4470 +916 1380 0.4910 +916 1436 0.5560 +916 1437 0.4490 +916 1445 0.7660 +916 1493 0.6730 +916 1521 0.5890 +916 1524 0.4390 +916 1731 0.5110 +916 2015 0.4580 +916 2057 0.4180 +916 2113 0.6440 +916 2205 0.5230 +916 2206 0.5840 +916 2207 0.5310 +916 2209 0.4860 +916 2212 0.6770 +916 2213 0.6780 +916 2322 0.5500 +916 2323 0.6340 +916 2533 0.5650 +916 2534 0.9670 +916 2597 0.4230 +916 2625 0.6150 +916 2833 0.6390 +916 2999 0.5420 +916 3001 0.7020 +916 3002 0.6720 +916 3003 0.7260 +916 3004 0.5580 +916 3055 0.5420 +916 3105 0.9410 +916 3106 0.6360 +916 3107 0.6240 +916 3113 0.7160 +916 3115 0.5720 +916 3117 0.6390 +916 3118 0.6540 +916 3119 0.7580 +916 3120 0.5880 +916 3122 0.7760 +916 3123 0.7740 +916 3127 0.6940 +916 3133 0.6480 +916 3134 0.5850 +916 3135 0.5850 +916 3145 0.7120 +916 3384 0.4760 +916 3394 0.4090 +916 3458 0.7420 +916 3553 0.4770 +916 3558 0.5860 +916 3559 0.7180 +916 3560 0.6380 +916 3561 0.6890 +916 3565 0.5460 +916 3567 0.4200 +916 3569 0.6540 +916 3574 0.4460 +916 3575 0.8630 +916 3586 0.7390 +916 3587 0.4150 +916 3596 0.4230 +916 3605 0.5800 +916 3620 0.4020 +916 3627 0.4800 +916 3662 0.4270 +916 3673 0.4990 +916 3674 0.4540 +916 3676 0.4340 +916 3682 0.5420 +916 3683 0.5900 +916 3684 0.8000 +916 3687 0.7420 +916 3689 0.4040 +916 3695 0.4550 +916 3702 0.9350 +916 3718 0.5240 +916 3805 0.5450 +916 3812 0.5570 +916 3815 0.6270 +916 3820 0.5760 +916 3821 0.5890 +916 3824 0.5360 +916 3902 0.5840 +916 3916 0.4020 +916 3937 0.8240 +916 4063 0.5130 +916 4068 0.7100 +916 4069 0.4810 +916 4072 0.5240 +916 4145 0.5990 +916 4155 0.4050 +916 4261 0.4600 +916 4283 0.4850 +916 4288 0.4060 +916 4301 0.4070 +916 4360 0.4560 +916 4684 0.4280 +916 4690 0.7850 +916 4818 0.7310 +916 5133 0.7820 +916 5175 0.5180 +916 5294 0.4860 +916 5295 0.5330 +916 5335 0.6500 +916 5450 0.4700 +916 5551 0.6970 +916 5588 0.6040 +916 5777 0.6300 +916 5781 0.6000 +916 5788 0.9120 +916 5790 0.4890 +916 5795 0.4270 +916 5896 0.4920 +916 6347 0.4020 +916 6351 0.4150 +916 6382 0.4260 +916 6402 0.6980 +916 6504 0.6630 +916 6693 0.5610 +916 6714 0.4070 +916 6734 0.4370 +916 6772 0.4300 +916 6775 0.4630 +916 6776 0.4170 +916 6850 0.9970 +916 6932 0.5580 +916 7040 0.4110 +916 7070 0.8070 +916 7124 0.5750 +916 7305 0.5050 +916 7409 0.5710 +916 7535 0.9980 +916 7852 0.4270 +916 8320 0.4900 +916 8440 0.5810 +916 8631 0.5690 +916 8639 0.8490 +916 8763 0.4030 +916 8784 0.4190 +916 9094 0.4400 +916 9235 0.4040 +916 9332 0.4960 +916 9402 0.7110 +916 9437 0.7150 +916 10219 0.5580 +916 10225 0.7280 +916 10320 0.6890 +916 10537 0.4800 +916 10541 0.4110 +916 10563 0.4510 +916 10578 0.6700 +916 10663 0.5680 +916 10666 0.4060 +916 10803 0.5220 +916 10849 0.4630 +916 10894 0.4800 +916 11151 0.4480 +916 11314 0.5150 +916 22914 0.5100 +916 26191 0.7130 +916 27040 0.7700 +916 29126 0.8080 +916 29851 0.7150 +916 30009 0.6100 +916 50852 0.9740 +916 50943 0.7160 +916 51176 0.4430 +916 51237 0.4150 +916 51284 0.4730 +916 51311 0.5020 +916 51338 0.4150 +916 53347 0.6660 +916 54440 0.4160 +916 54518 0.4370 +916 54869 0.6450 +916 55423 0.6940 +916 55824 0.5310 +916 64115 0.5310 +916 64919 0.4880 +916 79037 0.5240 +916 80321 0.4280 +916 80380 0.7130 +916 84514 0.4070 +916 84868 0.7080 +916 114836 0.5980 +916 115653 0.5430 +916 117289 0.4050 +916 151888 0.4050 +916 161779 0.7330 +916 171558 0.5250 +916 201633 0.5120 +916 219738 0.4200 +916 100133941 0.4260 +917 919 0.9990 +917 920 0.9850 +917 921 0.7400 +917 923 0.7950 +917 924 0.5280 +917 925 0.9890 +917 926 0.9880 +917 930 0.4960 +917 931 0.6460 +917 939 0.6600 +917 940 0.7110 +917 941 0.5220 +917 950 0.4680 +917 952 0.5100 +917 958 0.4210 +917 959 0.5210 +917 962 0.4170 +917 968 0.6120 +917 969 0.5970 +917 972 0.4080 +917 973 0.5790 +917 974 0.5840 +917 1043 0.4430 +917 1173 0.4990 +917 1175 0.5000 +917 1236 0.6310 +917 1398 0.4990 +917 1445 0.5890 +917 1493 0.5540 +917 1521 0.5040 +917 1601 0.4990 +917 1793 0.5100 +917 1901 0.4370 +917 2113 0.6750 +917 2206 0.5730 +917 2207 0.6240 +917 2209 0.8370 +917 2212 0.5140 +917 2268 0.4590 +917 2533 0.4270 +917 2534 0.7540 +917 2833 0.4060 +917 2885 0.6580 +917 2919 0.4160 +917 2999 0.5730 +917 3001 0.7600 +917 3002 0.5410 +917 3003 0.7290 +917 3004 0.5060 +917 3055 0.4930 +917 3071 0.5440 +917 3105 0.9190 +917 3106 0.5880 +917 3107 0.5860 +917 3113 0.7610 +917 3115 0.5580 +917 3117 0.7450 +917 3118 0.7410 +917 3119 0.7530 +917 3120 0.6170 +917 3122 0.7130 +917 3123 0.6410 +917 3127 0.6160 +917 3133 0.5690 +917 3134 0.5700 +917 3135 0.5680 +917 3145 0.8570 +917 3267 0.4990 +917 3458 0.4970 +917 3482 0.4140 +917 3558 0.4100 +917 3559 0.4760 +917 3560 0.4660 +917 3561 0.4430 +917 3569 0.5220 +917 3570 0.4560 +917 3575 0.7660 +917 3695 0.4570 +917 3702 0.9080 +917 3820 0.5900 +917 3821 0.5790 +917 3824 0.6220 +917 3902 0.4580 +917 3937 0.8250 +917 3949 0.4990 +917 4036 0.5160 +917 4067 0.4950 +917 4068 0.7690 +917 4074 0.4410 +917 4620 0.4400 +917 4627 0.4160 +917 4641 0.4070 +917 4644 0.4150 +917 4650 0.4050 +917 4651 0.4990 +917 4818 0.7490 +917 5133 0.8100 +917 5290 0.5190 +917 5291 0.4990 +917 5295 0.7620 +917 5296 0.4990 +917 5335 0.6410 +917 5336 0.5370 +917 5551 0.6260 +917 5588 0.6350 +917 5777 0.5880 +917 5781 0.5490 +917 5788 0.8570 +917 5790 0.4130 +917 5795 0.4330 +917 5879 0.5310 +917 5896 0.5320 +917 6464 0.5290 +917 6714 0.6410 +917 6734 0.5240 +917 6844 0.4990 +917 6845 0.4990 +917 6850 0.9890 +917 6932 0.6600 +917 7037 0.4520 +917 7070 0.7380 +917 7305 0.5670 +917 7409 0.6720 +917 7410 0.5130 +917 7525 0.4280 +917 7535 0.9940 +917 8301 0.5070 +917 8320 0.4150 +917 8631 0.5880 +917 8673 0.5030 +917 8936 0.4990 +917 9341 0.4990 +917 9398 0.5980 +917 9402 0.7360 +917 9437 0.4860 +917 9844 0.5040 +917 9892 0.5320 +917 10006 0.4990 +917 10092 0.5330 +917 10093 0.5000 +917 10094 0.5030 +917 10095 0.5160 +917 10096 0.4990 +917 10097 0.5070 +917 10109 0.5010 +917 10152 0.4990 +917 10163 0.4990 +917 10225 0.6080 +917 10320 0.5130 +917 10451 0.5260 +917 10458 0.4990 +917 10552 0.4990 +917 10578 0.5190 +917 10618 0.4380 +917 10663 0.5180 +917 10787 0.4990 +917 10810 0.4990 +917 22800 0.4020 +917 22806 0.4340 +917 22914 0.4700 +917 23191 0.5000 +917 26119 0.5110 +917 26191 0.6270 +917 26999 0.5190 +917 27040 0.8090 +917 27350 0.4350 +917 29126 0.7850 +917 29851 0.7070 +917 29909 0.4870 +917 29978 0.5030 +917 29988 0.4200 +917 30009 0.4090 +917 50852 0.9700 +917 50943 0.6290 +917 51176 0.4130 +917 51237 0.4600 +917 53347 0.6200 +917 54518 0.4140 +917 55423 0.4160 +917 55824 0.5710 +917 55845 0.4990 +917 63916 0.4990 +917 64919 0.5310 +917 80380 0.6390 +917 149628 0.4230 +917 161779 0.8520 +917 171558 0.7920 +917 201633 0.4600 +917 387357 0.4600 +917 390714 0.5070 +919 920 0.9890 +919 921 0.6840 +919 923 0.8750 +919 924 0.8070 +919 925 0.9980 +919 926 0.9530 +919 930 0.8080 +919 931 0.4500 +919 933 0.6430 +919 939 0.8210 +919 940 0.9810 +919 941 0.5790 +919 942 0.5620 +919 943 0.4430 +919 945 0.7380 +919 952 0.6370 +919 958 0.4440 +919 959 0.5810 +919 960 0.4280 +919 962 0.6380 +919 963 0.4180 +919 968 0.5230 +919 969 0.6800 +919 970 0.4310 +919 973 0.4180 +919 974 0.5560 +919 975 0.6930 +919 1043 0.5950 +919 1048 0.5940 +919 1234 0.4690 +919 1236 0.7500 +919 1398 0.5970 +919 1437 0.5130 +919 1439 0.5300 +919 1445 0.8050 +919 1485 0.5070 +919 1493 0.7080 +919 1521 0.4890 +919 1793 0.5300 +919 1794 0.7340 +919 1956 0.5060 +919 2064 0.6900 +919 2206 0.6340 +919 2207 0.9890 +919 2209 0.8720 +919 2212 0.5920 +919 2268 0.6210 +919 2346 0.5410 +919 2348 0.4800 +919 2350 0.4330 +919 2533 0.4820 +919 2534 0.9930 +919 2719 0.4160 +919 2833 0.4460 +919 2885 0.8230 +919 2999 0.6390 +919 3001 0.8660 +919 3002 0.8830 +919 3003 0.7840 +919 3004 0.5540 +919 3055 0.5950 +919 3071 0.5500 +919 3105 0.9630 +919 3106 0.6640 +919 3107 0.6820 +919 3108 0.9220 +919 3109 0.9190 +919 3111 0.9140 +919 3112 0.9220 +919 3113 0.9470 +919 3115 0.9240 +919 3117 0.9380 +919 3118 0.9350 +919 3119 0.7570 +919 3120 0.5460 +919 3122 0.9570 +919 3123 0.6600 +919 3127 0.9450 +919 3133 0.7180 +919 3134 0.6010 +919 3135 0.6740 +919 3383 0.4090 +919 3458 0.7400 +919 3558 0.8180 +919 3559 0.4920 +919 3560 0.9170 +919 3561 0.5950 +919 3563 0.5170 +919 3565 0.4840 +919 3566 0.4010 +919 3569 0.6540 +919 3574 0.5980 +919 3575 0.6830 +919 3586 0.5500 +919 3596 0.4050 +919 3598 0.5190 +919 3600 0.6570 +919 3606 0.4480 +919 3620 0.5260 +919 3635 0.4090 +919 3683 0.6950 +919 3684 0.4720 +919 3685 0.4270 +919 3689 0.5770 +919 3702 0.9500 +919 3718 0.6600 +919 3725 0.5080 +919 3802 0.4250 +919 3804 0.6050 +919 3805 0.6650 +919 3811 0.6010 +919 3812 0.5690 +919 3820 0.9070 +919 3821 0.5350 +919 3822 0.7430 +919 3824 0.8390 +919 3902 0.6580 +919 3904 0.5230 +919 3916 0.4570 +919 3937 0.9410 +919 4067 0.6300 +919 4068 0.8420 +919 4215 0.9050 +919 4277 0.4860 +919 4609 0.5840 +919 4627 0.4190 +919 4641 0.4310 +919 4650 0.4010 +919 4651 0.4990 +919 4684 0.5100 +919 4690 0.7160 +919 4818 0.7470 +919 4919 0.4390 +919 4942 0.4400 +919 5133 0.8710 +919 5290 0.5710 +919 5291 0.5480 +919 5295 0.8900 +919 5296 0.5770 +919 5335 0.8920 +919 5336 0.6400 +919 5451 0.4110 +919 5551 0.8960 +919 5588 0.7270 +919 5777 0.9380 +919 5781 0.8170 +919 5788 0.8810 +919 5790 0.4780 +919 5795 0.5010 +919 5879 0.5450 +919 6363 0.4140 +919 6402 0.5980 +919 6461 0.4290 +919 6464 0.9800 +919 6490 0.4460 +919 6503 0.5410 +919 6504 0.4470 +919 6654 0.4750 +919 6655 0.4260 +919 6714 0.8630 +919 6774 0.4070 +919 6775 0.5960 +919 6776 0.5620 +919 6777 0.5530 +919 6846 0.4010 +919 6850 0.9970 +919 6890 0.4400 +919 7124 0.5600 +919 7293 0.7600 +919 7294 0.4630 +919 7305 0.9160 +919 7409 0.8870 +919 7410 0.5920 +919 7525 0.4920 +919 7535 0.9990 +919 7852 0.6790 +919 8000 0.5770 +919 8320 0.6000 +919 8530 0.4300 +919 8631 0.7780 +919 8744 0.7060 +919 8936 0.4990 +919 9047 0.4340 +919 9289 0.4170 +919 9402 0.8460 +919 9436 0.9350 +919 9437 0.9990 +919 9595 0.4310 +919 9806 0.5600 +919 9844 0.5340 +919 10006 0.4990 +919 10019 0.4310 +919 10092 0.5250 +919 10093 0.5010 +919 10094 0.4990 +919 10095 0.5040 +919 10096 0.5010 +919 10097 0.5210 +919 10109 0.5140 +919 10125 0.4850 +919 10152 0.4990 +919 10163 0.5260 +919 10219 0.4260 +919 10225 0.7590 +919 10232 0.6690 +919 10320 0.4550 +919 10451 0.5820 +919 10458 0.4990 +919 10552 0.4990 +919 10578 0.6380 +919 10663 0.4170 +919 10666 0.5460 +919 10750 0.5230 +919 10787 0.4990 +919 10810 0.4990 +919 10870 0.9390 +919 11126 0.4710 +919 11151 0.4400 +919 22800 0.4540 +919 22914 0.9010 +919 23191 0.4990 +919 23547 0.9110 +919 23607 0.4450 +919 26191 0.8160 +919 26999 0.5290 +919 27020 0.4310 +919 27040 0.9140 +919 27240 0.5590 +919 29126 0.8740 +919 29851 0.7930 +919 30009 0.5700 +919 50852 0.9870 +919 50943 0.6980 +919 51052 0.4200 +919 51348 0.6180 +919 51744 0.6010 +919 53347 0.6890 +919 53637 0.5030 +919 54518 0.4480 +919 55024 0.4250 +919 55423 0.4430 +919 55824 0.6180 +919 55845 0.4990 +919 57599 0.4260 +919 57823 0.5300 +919 63916 0.4990 +919 64919 0.4780 +919 79037 0.5710 +919 80321 0.5140 +919 80329 0.4170 +919 80342 0.4530 +919 80380 0.7410 +919 80381 0.7550 +919 84174 0.6470 +919 84433 0.4650 +919 84868 0.6250 +919 114836 0.5300 +919 117157 0.5320 +919 120425 0.4010 +919 124599 0.4700 +919 128611 0.4390 +919 133482 0.4100 +919 146722 0.4730 +919 151888 0.4790 +919 168537 0.4110 +919 169355 0.4140 +919 171558 0.6220 +919 201633 0.6220 +919 259197 0.9990 +919 259307 0.5290 +919 342510 0.5140 +919 374383 0.7060 +919 374403 0.4480 +919 387357 0.5250 +919 390714 0.5340 +920 921 0.9970 +920 923 0.8110 +920 924 0.9010 +920 925 0.9990 +920 926 0.9800 +920 927 0.9210 +920 928 0.8290 +920 930 0.9360 +920 931 0.5650 +920 933 0.8360 +920 939 0.9310 +920 940 0.9710 +920 941 0.9580 +920 942 0.9580 +920 943 0.7760 +920 944 0.6400 +920 945 0.8690 +920 947 0.8860 +920 948 0.6120 +920 949 0.5890 +920 950 0.7390 +920 951 0.6570 +920 952 0.9320 +920 953 0.7740 +920 954 0.5120 +920 958 0.9240 +920 959 0.9830 +920 960 0.9500 +920 961 0.6230 +920 962 0.7920 +920 963 0.6610 +920 965 0.6480 +920 966 0.4740 +920 967 0.5770 +920 968 0.8980 +920 969 0.9480 +920 970 0.6700 +920 971 0.4560 +920 972 0.6530 +920 973 0.7530 +920 974 0.6130 +920 975 0.9820 +920 990 0.4100 +920 999 0.5730 +920 1003 0.4080 +920 1019 0.4150 +920 1025 0.4360 +920 1026 0.4090 +920 1029 0.5650 +920 1039 0.5770 +920 1043 0.6810 +920 1048 0.6050 +920 1050 0.4340 +920 1051 0.4610 +920 1080 0.6220 +920 1088 0.6050 +920 1113 0.5970 +920 1116 0.4190 +920 1147 0.4710 +920 1154 0.5580 +920 1173 0.5810 +920 1175 0.5390 +920 1215 0.4740 +920 1230 0.7080 +920 1232 0.8320 +920 1233 0.7360 +920 1234 0.9990 +920 1235 0.8800 +920 1236 0.9470 +920 1237 0.7340 +920 1238 0.7340 +920 1240 0.4050 +920 1241 0.6250 +920 1308 0.4780 +920 1378 0.5630 +920 1380 0.7980 +920 1385 0.5050 +920 1390 0.4010 +920 1401 0.7900 +920 1420 0.5720 +920 1432 0.6900 +920 1435 0.6700 +920 1436 0.7550 +920 1437 0.8800 +920 1440 0.7340 +920 1441 0.4560 +920 1445 0.6900 +920 1471 0.4060 +920 1485 0.7870 +920 1493 0.9550 +920 1499 0.7000 +920 1506 0.4970 +920 1508 0.4860 +920 1511 0.5230 +920 1514 0.4900 +920 1520 0.6200 +920 1524 0.7700 +920 1536 0.5550 +920 1565 0.5080 +920 1601 0.5900 +920 1604 0.5360 +920 1636 0.5960 +920 1638 0.4400 +920 1668 0.7400 +920 1673 0.4770 +920 1737 0.5070 +920 1773 0.4100 +920 1786 0.5200 +920 1788 0.4420 +920 1791 0.7260 +920 1794 0.4160 +920 1803 0.7740 +920 1830 0.4920 +920 1839 0.5070 +920 1843 0.5780 +920 1861 0.6280 +920 1880 0.6130 +920 1901 0.6490 +920 1950 0.5830 +920 1956 0.6400 +920 1959 0.4610 +920 1991 0.5980 +920 2015 0.4800 +920 2022 0.5700 +920 2023 0.7520 +920 2028 0.9940 +920 2033 0.4570 +920 2056 0.5160 +920 2064 0.6760 +920 2086 0.7640 +920 2099 0.5500 +920 2113 0.4560 +920 2146 0.4810 +920 2147 0.5220 +920 2149 0.5180 +920 2152 0.5400 +920 2158 0.4150 +920 2185 0.7360 +920 2205 0.5310 +920 2206 0.5050 +920 2207 0.6420 +920 2208 0.4490 +920 2209 0.9020 +920 2212 0.8370 +920 2213 0.8420 +920 2217 0.6890 +920 2247 0.5100 +920 2248 0.4290 +920 2249 0.4240 +920 2250 0.4230 +920 2251 0.4280 +920 2252 0.4850 +920 2253 0.4210 +920 2254 0.4230 +920 2255 0.4350 +920 2308 0.5440 +920 2309 0.4520 +920 2312 0.4500 +920 2316 0.5570 +920 2321 0.4360 +920 2322 0.6490 +920 2323 0.6770 +920 2335 0.9160 +920 2346 0.4720 +920 2350 0.4590 +920 2353 0.6630 +920 2357 0.5580 +920 2358 0.5900 +920 2475 0.6350 +920 2524 0.5590 +920 2526 0.8070 +920 2532 0.4880 +920 2533 0.4980 +920 2534 0.9800 +920 2572 0.7840 +920 2597 0.7590 +920 2615 0.5290 +920 2621 0.5320 +920 2623 0.4290 +920 2624 0.4520 +920 2625 0.8990 +920 2641 0.4310 +920 2670 0.5170 +920 2672 0.4190 +920 2813 0.4760 +920 2826 0.7260 +920 2829 0.6250 +920 2833 0.8640 +920 2838 0.4800 +920 2865 0.4500 +920 2867 0.5070 +920 2875 0.7200 +920 2885 0.4360 +920 2908 0.5830 +920 2919 0.7350 +920 2920 0.6390 +920 2921 0.4960 +920 2932 0.4290 +920 2993 0.7160 +920 2995 0.5170 +920 2999 0.5880 +920 3001 0.7580 +920 3002 0.9360 +920 3003 0.6330 +920 3004 0.4550 +920 3021 0.5240 +920 3050 0.5580 +920 3055 0.5130 +920 3060 0.4120 +920 3065 0.4380 +920 3082 0.5650 +920 3091 0.6220 +920 3105 0.8640 +920 3106 0.8900 +920 3107 0.8570 +920 3108 0.9600 +920 3109 0.9410 +920 3111 0.9340 +920 3112 0.9380 +920 3113 0.9770 +920 3115 0.9600 +920 3117 0.9820 +920 3118 0.9610 +920 3119 0.9510 +920 3120 0.6690 +920 3122 0.9970 +920 3123 0.9940 +920 3127 0.9450 +920 3133 0.7850 +920 3134 0.4110 +920 3135 0.6390 +920 3146 0.6110 +920 3162 0.5190 +920 3164 0.5100 +920 3240 0.5150 +920 3251 0.6010 +920 3267 0.5650 +920 3274 0.4030 +920 3308 0.7120 +920 3320 0.5400 +920 3326 0.5400 +920 3329 0.5880 +920 3375 0.4810 +920 3383 0.9690 +920 3384 0.6250 +920 3385 0.7070 +920 3394 0.6580 +920 3396 0.5430 +920 3398 0.5140 +920 3399 0.4750 +920 3417 0.4590 +920 3418 0.4120 +920 3428 0.4490 +920 3434 0.4490 +920 3437 0.4270 +920 3439 0.8870 +920 3440 0.7880 +920 3441 0.6210 +920 3442 0.6210 +920 3443 0.6210 +920 3444 0.6200 +920 3445 0.6210 +920 3446 0.6200 +920 3447 0.6200 +920 3448 0.6210 +920 3449 0.6200 +920 3451 0.7560 +920 3452 0.6200 +920 3454 0.6530 +920 3455 0.5190 +920 3456 0.8450 +920 3458 0.9910 +920 3459 0.7390 +920 3460 0.4650 +920 3479 0.5130 +920 3482 0.6540 +920 3516 0.4500 +920 3551 0.5280 +920 3552 0.8760 +920 3553 0.9580 +920 3554 0.7430 +920 3557 0.5100 +920 3558 0.9750 +920 3559 0.9360 +920 3560 0.8750 +920 3561 0.8840 +920 3562 0.7090 +920 3563 0.8870 +920 3565 0.9700 +920 3566 0.7800 +920 3567 0.9300 +920 3568 0.5290 +920 3569 0.9660 +920 3570 0.6700 +920 3572 0.5760 +920 3574 0.9090 +920 3575 0.9600 +920 3576 0.8610 +920 3577 0.5650 +920 3578 0.7670 +920 3579 0.6420 +920 3586 0.9760 +920 3587 0.7080 +920 3588 0.6650 +920 3589 0.4800 +920 3592 0.4020 +920 3594 0.7650 +920 3595 0.7600 +920 3596 0.9310 +920 3597 0.5450 +920 3598 0.4710 +920 3600 0.9170 +920 3601 0.5880 +920 3603 0.9980 +920 3605 0.9720 +920 3606 0.8490 +920 3620 0.8750 +920 3627 0.8390 +920 3630 0.8290 +920 3635 0.4220 +920 3654 0.5010 +920 3659 0.6300 +920 3660 0.4190 +920 3661 0.6330 +920 3662 0.7450 +920 3663 0.5590 +920 3665 0.6310 +920 3672 0.5010 +920 3673 0.6700 +920 3674 0.5910 +920 3676 0.7400 +920 3682 0.8480 +920 3683 0.8590 +920 3684 0.9430 +920 3687 0.9490 +920 3688 0.6310 +920 3689 0.8340 +920 3690 0.4890 +920 3695 0.7280 +920 3700 0.9990 +920 3702 0.8870 +920 3716 0.7400 +920 3717 0.6350 +920 3718 0.7380 +920 3725 0.6260 +920 3732 0.9680 +920 3737 0.4650 +920 3738 0.4480 +920 3782 0.7210 +920 3791 0.6810 +920 3802 0.6680 +920 3804 0.4980 +920 3805 0.4450 +920 3811 0.5250 +920 3812 0.4790 +920 3815 0.7780 +920 3820 0.7870 +920 3821 0.8390 +920 3822 0.6060 +920 3824 0.7900 +920 3845 0.5890 +920 3852 0.4140 +920 3875 0.4030 +920 3902 0.9140 +920 3903 0.4970 +920 3916 0.7750 +920 3920 0.4090 +920 3934 0.5680 +920 3937 0.8910 +920 3949 0.5400 +920 3952 0.5750 +920 3956 0.4870 +920 3958 0.6520 +920 3965 0.7280 +920 4000 0.4770 +920 4015 0.5090 +920 4035 0.4620 +920 4036 0.5700 +920 4049 0.7770 +920 4050 0.5480 +920 4055 0.5600 +920 4057 0.6400 +920 4063 0.4800 +920 4065 0.7440 +920 4067 0.7000 +920 4068 0.5810 +920 4069 0.4170 +920 4072 0.6110 +920 4074 0.4130 +920 4087 0.5070 +920 4088 0.5680 +920 4089 0.4060 +920 4094 0.6210 +920 4100 0.4320 +920 4102 0.5810 +920 4145 0.6060 +920 4153 0.6720 +920 4155 0.7730 +920 4170 0.5030 +920 4171 0.4120 +920 4179 0.7390 +920 4210 0.5030 +920 4233 0.4090 +920 4254 0.5770 +920 4261 0.7450 +920 4267 0.4280 +920 4277 0.5630 +920 4282 0.4750 +920 4283 0.7900 +920 4288 0.5100 +920 4301 0.5940 +920 4311 0.8160 +920 4312 0.4450 +920 4313 0.5170 +920 4314 0.6590 +920 4318 0.7010 +920 4321 0.4320 +920 4340 0.7950 +920 4345 0.5720 +920 4353 0.7000 +920 4360 0.7570 +920 4481 0.4680 +920 4586 0.4610 +920 4599 0.6100 +920 4600 0.4440 +920 4609 0.6630 +920 4684 0.8830 +920 4747 0.6150 +920 4772 0.5830 +920 4773 0.7140 +920 4783 0.4550 +920 4790 0.8580 +920 4791 0.4360 +920 4792 0.6180 +920 4803 0.4180 +920 4804 0.4160 +920 4818 0.5690 +920 4843 0.5850 +920 4851 0.6110 +920 4853 0.4500 +920 4869 0.4370 +920 4893 0.4150 +920 4907 0.7360 +920 4938 0.4160 +920 4973 0.4220 +920 5008 0.4560 +920 5027 0.4440 +920 5032 0.4330 +920 5045 0.7490 +920 5054 0.4150 +920 5055 0.4570 +920 5079 0.5990 +920 5125 0.6170 +920 5133 0.9600 +920 5156 0.4330 +920 5158 0.5110 +920 5159 0.4240 +920 5175 0.7460 +920 5196 0.4630 +920 5199 0.6550 +920 5243 0.4380 +920 5265 0.4600 +920 5268 0.4110 +920 5284 0.4640 +920 5293 0.4990 +920 5294 0.4540 +920 5295 0.4990 +920 5304 0.8770 +920 5327 0.9420 +920 5335 0.7370 +920 5340 0.4390 +920 5354 0.5760 +920 5359 0.4520 +920 5443 0.4790 +920 5450 0.4090 +920 5468 0.5840 +920 5473 0.6430 +920 5478 0.4180 +920 5551 0.9400 +920 5588 0.6900 +920 5594 0.5940 +920 5595 0.7100 +920 5599 0.4150 +920 5603 0.4720 +920 5610 0.4900 +920 5617 0.4110 +920 5657 0.6120 +920 5688 0.5080 +920 5696 0.4380 +920 5698 0.5220 +920 5728 0.6020 +920 5734 0.4980 +920 5743 0.6150 +920 5747 0.8590 +920 5771 0.4150 +920 5777 0.7040 +920 5781 0.7830 +920 5788 0.9810 +920 5790 0.5520 +920 5795 0.5360 +920 5798 0.6460 +920 5817 0.5710 +920 5818 0.4150 +920 5819 0.4730 +920 5880 0.6470 +920 5896 0.8980 +920 5949 0.5260 +920 5966 0.6030 +920 5970 0.5460 +920 5971 0.5500 +920 5972 0.4840 +920 6036 0.4150 +920 6037 0.4580 +920 6041 0.4140 +920 6095 0.4490 +920 6097 0.8010 +920 6198 0.4030 +920 6275 0.4100 +920 6279 0.4350 +920 6280 0.4530 +920 6283 0.4030 +920 6304 0.4350 +920 6346 0.4850 +920 6347 0.8390 +920 6348 0.8800 +920 6351 0.9390 +920 6354 0.5620 +920 6355 0.5410 +920 6356 0.6740 +920 6357 0.4740 +920 6361 0.7180 +920 6362 0.5700 +920 6363 0.8880 +920 6364 0.7310 +920 6366 0.8810 +920 6367 0.7200 +920 6369 0.5250 +920 6370 0.5710 +920 6372 0.4060 +920 6373 0.7690 +920 6374 0.6130 +920 6375 0.7240 +920 6376 0.6090 +920 6382 0.7270 +920 6386 0.6820 +920 6387 0.8250 +920 6401 0.7560 +920 6402 0.9310 +920 6403 0.7820 +920 6404 0.6260 +920 6441 0.4410 +920 6490 0.7820 +920 6500 0.9500 +920 6504 0.7910 +920 6513 0.5420 +920 6572 0.4310 +920 6590 0.4100 +920 6614 0.6900 +920 6622 0.5850 +920 6688 0.6960 +920 6689 0.4290 +920 6693 0.7700 +920 6696 0.5070 +920 6714 0.7280 +920 6737 0.4700 +920 6772 0.8910 +920 6773 0.5720 +920 6774 0.8920 +920 6775 0.8320 +920 6776 0.8430 +920 6777 0.8330 +920 6778 0.8620 +920 6844 0.5520 +920 6845 0.5600 +920 6846 0.4280 +920 6850 0.9810 +920 6863 0.4160 +920 6868 0.4750 +920 6892 0.4850 +920 6907 0.4010 +920 6929 0.5090 +920 6932 0.6150 +920 7010 0.4330 +920 7015 0.4470 +920 7018 0.4770 +920 7037 0.8800 +920 7038 0.5560 +920 7039 0.4500 +920 7040 0.8700 +920 7042 0.7020 +920 7043 0.5140 +920 7046 0.4240 +920 7048 0.5470 +920 7052 0.4330 +920 7056 0.6340 +920 7057 0.8170 +920 7062 0.4760 +920 7066 0.4370 +920 7070 0.7530 +920 7072 0.6210 +920 7076 0.4630 +920 7082 0.4520 +920 7084 0.4810 +920 7094 0.5840 +920 7096 0.6720 +920 7097 0.8140 +920 7098 0.7860 +920 7099 0.9020 +920 7100 0.6950 +920 7113 0.5870 +920 7124 0.9680 +920 7128 0.4640 +920 7130 0.4140 +920 7132 0.7970 +920 7133 0.6140 +920 7148 0.5240 +920 7157 0.7030 +920 7173 0.4130 +920 7184 0.4060 +920 7185 0.4290 +920 7187 0.4490 +920 7189 0.6200 +920 7251 0.4150 +920 7264 0.4160 +920 7268 0.4860 +920 7276 0.4270 +920 7292 0.7210 +920 7293 0.8720 +920 7294 0.6090 +920 7297 0.5720 +920 7299 0.5390 +920 7301 0.5370 +920 7305 0.6340 +920 7306 0.6790 +920 7337 0.4710 +920 7345 0.6370 +920 7409 0.7350 +920 7412 0.7240 +920 7415 0.4150 +920 7424 0.4200 +920 7431 0.4040 +920 7432 0.6400 +920 7434 0.5130 +920 7448 0.5700 +920 7450 0.5370 +920 7454 0.5120 +920 7490 0.6450 +920 7494 0.4180 +920 7535 0.9950 +920 7704 0.5190 +920 7837 0.7430 +920 7850 0.4240 +920 7852 0.9990 +920 8034 0.4770 +920 8065 0.5150 +920 8115 0.4580 +920 8174 0.8010 +920 8290 0.5260 +920 8301 0.5340 +920 8320 0.7220 +920 8337 0.4030 +920 8338 0.4030 +920 8349 0.6830 +920 8356 0.5260 +920 8454 0.9440 +920 8456 0.4540 +920 8514 0.6350 +920 8517 0.4120 +920 8519 0.4100 +920 8549 0.6280 +920 8600 0.7260 +920 8631 0.5170 +920 8639 0.8770 +920 8651 0.6190 +920 8673 0.5650 +920 8674 0.4130 +920 8678 0.4310 +920 8685 0.4050 +920 8698 0.4460 +920 8718 0.6340 +920 8737 0.4250 +920 8740 0.4250 +920 8743 0.5950 +920 8744 0.6260 +920 8764 0.6110 +920 8772 0.4250 +920 8784 0.8710 +920 8795 0.4800 +920 8797 0.8320 +920 8809 0.6130 +920 8817 0.4230 +920 8822 0.4230 +920 8823 0.4240 +920 8829 0.7250 +920 8832 0.5570 +920 8834 0.4640 +920 8837 0.4700 +920 8842 0.4470 +920 8862 0.4830 +920 8915 0.4370 +920 8945 0.9470 +920 8995 0.6680 +920 9021 0.7120 +920 9034 0.8780 +920 9159 0.5820 +920 9168 0.4470 +920 9172 0.6790 +920 9173 0.5600 +920 9235 0.4610 +920 9241 0.4010 +920 9290 0.4610 +920 9308 0.7540 +920 9332 0.8060 +920 9341 0.6220 +920 9370 0.4790 +920 9398 0.4350 +920 9402 0.7420 +920 9436 0.5820 +920 9437 0.7370 +920 9447 0.4830 +920 9450 0.4120 +920 9451 0.4300 +920 9466 0.7410 +920 9474 0.4480 +920 9516 0.4470 +920 9560 0.5250 +920 9623 0.4310 +920 9636 0.5610 +920 9641 0.4270 +920 9677 0.4060 +920 9760 0.5460 +920 9856 0.4120 +920 9892 0.5140 +920 9939 0.5070 +920 9966 0.4800 +920 9978 0.9140 +920 10004 0.7510 +920 10018 0.5750 +920 10044 0.4250 +920 10045 0.4140 +920 10103 0.4760 +920 10125 0.4350 +920 10219 0.7550 +920 10225 0.4380 +920 10232 0.5150 +920 10273 0.5180 +920 10288 0.7200 +920 10320 0.6650 +920 10332 0.4940 +920 10365 0.5020 +920 10379 0.4370 +920 10385 0.5190 +920 10392 0.5070 +920 10410 0.4090 +920 10437 0.4480 +920 10461 0.4580 +920 10462 0.5330 +920 10538 0.6270 +920 10544 0.4350 +920 10563 0.8180 +920 10578 0.6470 +920 10618 0.5200 +920 10630 0.5140 +920 10663 0.7180 +920 10666 0.6100 +920 10673 0.7140 +920 10803 0.8170 +920 10850 0.6360 +920 10859 0.7430 +920 10870 0.5220 +920 10875 0.5370 +920 10892 0.4310 +920 10894 0.4910 +920 11006 0.5960 +920 11009 0.4320 +920 11035 0.4570 +920 11119 0.4230 +920 11126 0.6070 +920 11168 0.4160 +920 11251 0.5990 +920 11314 0.4480 +920 11326 0.4640 +920 22806 0.4810 +920 22807 0.5370 +920 22861 0.4440 +920 22914 0.7800 +920 22918 0.5270 +920 23166 0.4160 +920 23291 0.9030 +920 23308 0.6890 +920 23405 0.4500 +920 23411 0.4480 +920 23495 0.5130 +920 23547 0.4510 +920 23586 0.6280 +920 23643 0.4670 +920 23705 0.6380 +920 23765 0.7790 +920 25825 0.4170 +920 25939 0.6670 +920 26119 0.5180 +920 26191 0.7930 +920 26253 0.4940 +920 26281 0.4230 +920 27006 0.4230 +920 27036 0.4920 +920 27040 0.7370 +920 27074 0.5140 +920 27087 0.7960 +920 27111 0.4570 +920 27141 0.5050 +920 27178 0.4310 +920 27180 0.4180 +920 27189 0.6290 +920 27190 0.6090 +920 27294 0.4430 +920 28514 0.4110 +920 29110 0.5160 +920 29121 0.4620 +920 29126 0.9380 +920 29760 0.5400 +920 29851 0.9290 +920 29978 0.5630 +920 29988 0.4440 +920 30009 0.9470 +920 30816 0.9960 +920 30817 0.4110 +920 30835 0.8400 +920 30848 0.4990 +920 50489 0.7670 +920 50615 0.7810 +920 50616 0.9130 +920 50848 0.5140 +920 50852 0.9420 +920 50856 0.5120 +920 50943 0.9790 +920 51043 0.6100 +920 51135 0.4240 +920 51176 0.4700 +920 51266 0.4760 +920 51284 0.8340 +920 51311 0.7540 +920 51324 0.5540 +920 51338 0.4650 +920 51348 0.4240 +920 51430 0.4950 +920 51497 0.6920 +920 51554 0.6030 +920 51561 0.6420 +920 51744 0.6410 +920 51752 0.5000 +920 53342 0.6260 +920 53637 0.4180 +920 53832 0.4220 +920 54106 0.8680 +920 54205 0.5440 +920 54209 0.4140 +920 54210 0.4530 +920 54474 0.4480 +920 54518 0.5010 +920 54567 0.6140 +920 54674 0.4820 +920 54726 0.4240 +920 54790 0.4460 +920 55016 0.5600 +920 55423 0.4980 +920 55509 0.5980 +920 55532 0.4550 +920 55540 0.5170 +920 55717 0.4040 +920 55801 0.5450 +920 55824 0.6100 +920 55905 0.4610 +920 56253 0.4260 +920 56729 0.4380 +920 57088 0.5670 +920 57211 0.5300 +920 57379 0.5660 +920 57506 0.6060 +920 57509 0.8020 +920 57817 0.4360 +920 57818 0.6050 +920 57823 0.5300 +920 58191 0.5560 +920 58484 0.4830 +920 58985 0.5710 +920 59067 0.7160 +920 59272 0.7880 +920 60468 0.4810 +920 60489 0.7670 +920 64083 0.9050 +920 64115 0.4720 +920 64127 0.6570 +920 64135 0.5930 +920 64170 0.5060 +920 64375 0.4120 +920 64581 0.7790 +920 64806 0.5240 +920 64919 0.4830 +920 65258 0.6200 +920 79132 0.4100 +920 79465 0.4150 +920 79679 0.5450 +920 79755 0.4420 +920 79966 0.8040 +920 80321 0.4740 +920 80328 0.4590 +920 80329 0.4750 +920 80380 0.9450 +920 80381 0.8770 +920 81539 0.4550 +920 81704 0.5480 +920 81793 0.4380 +920 83394 0.4430 +920 83660 0.5630 +920 84166 0.4090 +920 84433 0.5320 +920 84666 0.4750 +920 84684 0.5050 +920 84706 0.5420 +920 84818 0.5060 +920 84824 0.4540 +920 84868 0.8330 +920 84941 0.4690 +920 85363 0.6410 +920 85480 0.7180 +920 90865 0.7290 +920 91543 0.4160 +920 91937 0.5150 +920 92979 0.4680 +920 93589 0.4580 +920 93978 0.6430 +920 93986 0.5070 +920 112744 0.8700 +920 114548 0.6500 +920 114757 0.4130 +920 114836 0.6100 +920 115004 0.5750 +920 115650 0.5710 +920 116379 0.4180 +920 120425 0.4680 +920 123803 0.4710 +920 130120 0.5060 +920 131450 0.6430 +920 133418 0.5160 +920 135250 0.5810 +920 137902 0.7430 +920 140885 0.7240 +920 149233 0.8040 +920 151056 0.6350 +920 151888 0.6770 +920 160364 0.4300 +920 168400 0.6680 +920 169026 0.4360 +920 169355 0.8260 +920 170482 0.6660 +920 171389 0.4120 +920 171558 0.6900 +920 200316 0.4430 +920 201633 0.7570 +920 203068 0.4440 +920 220972 0.4240 +920 221613 0.6240 +920 246778 0.6510 +920 256987 0.4340 +920 257101 0.4260 +920 259197 0.6190 +920 282617 0.4740 +920 282618 0.4470 +920 283420 0.6140 +920 284194 0.6420 +920 338442 0.4570 +920 339390 0.4520 +920 374383 0.6340 +920 374569 0.4040 +920 375790 0.4910 +920 386653 0.4790 +920 388698 0.4500 +920 389903 0.4080 +920 390243 0.4280 +920 400668 0.4370 +920 405754 0.7630 +920 414062 0.6600 +920 440093 0.5240 +920 440138 0.6550 +920 440686 0.5400 +920 441168 0.4680 +920 641371 0.4480 +920 653145 0.4370 +920 653604 0.5400 +920 654346 0.6500 +920 692312 0.4320 +920 728358 0.8430 +920 728378 0.4480 +920 100133941 0.7020 +920 100423062 0.8850 +920 100506658 0.4940 +920 100526664 0.7320 +920 102723407 0.7010 +920 102723547 0.4080 +921 922 0.8910 +921 923 0.9850 +921 924 0.9700 +921 925 0.9630 +921 926 0.6740 +921 928 0.4980 +921 930 0.9410 +921 931 0.6550 +921 933 0.9030 +921 939 0.9080 +921 940 0.8390 +921 941 0.7590 +921 942 0.7480 +921 943 0.8440 +921 945 0.7510 +921 947 0.7310 +921 951 0.5020 +921 952 0.8920 +921 958 0.6590 +921 959 0.8230 +921 960 0.6870 +921 962 0.6150 +921 965 0.4450 +921 968 0.5890 +921 969 0.8410 +921 970 0.4390 +921 971 0.9940 +921 973 0.8660 +921 974 0.8280 +921 975 0.6070 +921 1043 0.6780 +921 1235 0.5200 +921 1236 0.8900 +921 1269 0.4370 +921 1378 0.4670 +921 1380 0.9170 +921 1399 0.4460 +921 1401 0.6320 +921 1437 0.5190 +921 1440 0.5140 +921 1493 0.6560 +921 1755 0.5620 +921 1791 0.7290 +921 1803 0.6180 +921 2086 0.5470 +921 2205 0.5920 +921 2208 0.5760 +921 2209 0.6180 +921 2212 0.5670 +921 2213 0.6180 +921 2249 0.4020 +921 2322 0.5410 +921 2323 0.5390 +921 2334 0.4080 +921 2526 0.8190 +921 2534 0.7000 +921 2625 0.6520 +921 2833 0.5970 +921 2885 0.6520 +921 2993 0.4180 +921 3002 0.6710 +921 3003 0.4700 +921 3004 0.6240 +921 3164 0.4180 +921 3383 0.4340 +921 3385 0.4510 +921 3394 0.4080 +921 3458 0.6840 +921 3487 0.4210 +921 3543 0.5390 +921 3553 0.4300 +921 3558 0.7380 +921 3559 0.7710 +921 3560 0.6230 +921 3561 0.5480 +921 3562 0.4190 +921 3563 0.6510 +921 3565 0.6180 +921 3567 0.4870 +921 3569 0.8300 +921 3574 0.5980 +921 3575 0.7250 +921 3586 0.6870 +921 3587 0.4020 +921 3594 0.4800 +921 3596 0.4440 +921 3600 0.4610 +921 3605 0.5340 +921 3606 0.5830 +921 3630 0.5140 +921 3662 0.6500 +921 3674 0.5010 +921 3676 0.7040 +921 3682 0.6560 +921 3683 0.7680 +921 3684 0.8120 +921 3687 0.7690 +921 3688 0.5630 +921 3689 0.5050 +921 3702 0.6860 +921 3714 0.5590 +921 3815 0.7240 +921 3820 0.5600 +921 3821 0.4870 +921 3824 0.5020 +921 3902 0.6020 +921 3937 0.4980 +921 3952 0.4400 +921 4049 0.4120 +921 4050 0.4350 +921 4058 0.5650 +921 4063 0.4540 +921 4067 0.4440 +921 4068 0.5600 +921 4145 0.4890 +921 4153 0.4660 +921 4162 0.5940 +921 4267 0.5810 +921 4311 0.9250 +921 4345 0.5770 +921 4353 0.6100 +921 4481 0.4260 +921 4493 0.4350 +921 4609 0.5820 +921 4684 0.8480 +921 4851 0.4320 +921 5004 0.4400 +921 5007 0.4240 +921 5008 0.4430 +921 5079 0.7850 +921 5133 0.7060 +921 5175 0.5910 +921 5295 0.6510 +921 5336 0.4060 +921 5444 0.4330 +921 5450 0.4240 +921 5551 0.6590 +921 5777 0.4840 +921 5788 0.8980 +921 5790 0.4390 +921 5896 0.5550 +921 6364 0.4590 +921 6373 0.5410 +921 6382 0.7650 +921 6402 0.7050 +921 6504 0.7230 +921 6664 0.5810 +921 6693 0.9400 +921 6774 0.4110 +921 6850 0.5320 +921 6932 0.4840 +921 7037 0.5420 +921 7038 0.5990 +921 7070 0.6030 +921 7072 0.7120 +921 7123 0.4380 +921 7124 0.7280 +921 7157 0.5740 +921 7293 0.4010 +921 7409 0.6190 +921 7412 0.4910 +921 7535 0.8830 +921 7837 0.4200 +921 7852 0.5300 +921 8115 0.7460 +921 8320 0.5000 +921 8519 0.4640 +921 8639 0.6480 +921 8784 0.4210 +921 8832 0.4060 +921 9034 0.4030 +921 9173 0.4550 +921 9308 0.4250 +921 9332 0.6470 +921 9398 0.4270 +921 9402 0.4220 +921 9437 0.5770 +921 9623 0.6310 +921 9760 0.6060 +921 10206 0.7350 +921 10219 0.6090 +921 10225 0.4630 +921 10320 0.4830 +921 10563 0.5210 +921 10663 0.4950 +921 10673 0.7040 +921 10750 0.5210 +921 10803 0.4320 +921 10892 0.4490 +921 11251 0.4010 +921 22914 0.4880 +921 22918 0.5090 +921 23495 0.4410 +921 23705 0.4040 +921 27040 0.4580 +921 27087 0.6630 +921 29126 0.4800 +921 29760 0.8610 +921 29802 0.4140 +921 29851 0.7110 +921 30009 0.5860 +921 30816 0.5550 +921 50615 0.4690 +921 50618 0.4300 +921 50852 0.5910 +921 50943 0.7000 +921 51176 0.5100 +921 51296 0.6520 +921 51744 0.4230 +921 53347 0.4790 +921 54106 0.4680 +921 54900 0.5980 +921 55423 0.5880 +921 57120 0.4570 +921 57379 0.4730 +921 58513 0.4010 +921 64581 0.4510 +921 64919 0.5060 +921 79368 0.4250 +921 81850 0.4470 +921 83416 0.4950 +921 83417 0.5340 +921 84868 0.5340 +921 114836 0.4520 +921 115352 0.4750 +921 115650 0.5170 +921 115761 0.4370 +921 136853 0.5040 +921 137902 0.4190 +921 140885 0.5520 +921 151888 0.7690 +921 201633 0.4300 +921 259197 0.4020 +921 283518 0.4240 +921 283677 0.4620 +921 374569 0.4730 +921 387357 0.4090 +921 405754 0.5460 +921 619207 0.5120 +921 643834 0.4470 +921 643847 0.4740 +921 100133941 0.7830 +921 100423062 0.9460 +921 102723407 0.8330 +922 933 0.4690 +922 948 0.5990 +922 949 0.5960 +922 950 0.5980 +922 958 0.4240 +922 968 0.7260 +922 1191 0.4700 +922 1504 0.4190 +922 1581 0.4390 +922 1755 0.4270 +922 2220 0.5330 +922 3026 0.5790 +922 3240 0.4390 +922 3273 0.6110 +922 3309 0.7690 +922 3952 0.4320 +922 4015 0.5610 +922 4060 0.5400 +922 5328 0.8350 +922 5624 0.5240 +922 5644 0.6270 +922 5646 0.5440 +922 5950 0.5200 +922 6291 0.4230 +922 6591 0.4020 +922 6708 0.6330 +922 6709 0.6180 +922 6720 0.4120 +922 6721 0.4140 +922 6820 0.5230 +922 7039 0.4860 +922 7057 0.4390 +922 7376 0.5140 +922 8407 0.4570 +922 8477 0.4640 +922 8547 0.4180 +922 9213 0.5390 +922 9332 0.4320 +922 9619 0.5090 +922 9935 0.4700 +922 10062 0.4320 +922 10332 0.4230 +922 10942 0.4200 +922 11326 0.5040 +922 51332 0.4410 +922 51561 0.5530 +922 54575 0.6670 +922 54576 0.6670 +922 54577 0.6650 +922 54578 0.6490 +922 54657 0.6490 +922 54658 0.7130 +922 55243 0.4160 +922 64063 0.5820 +922 64240 0.4770 +922 64241 0.4460 +922 79368 0.6300 +922 83417 0.4280 +922 83886 0.5470 +922 91937 0.5780 +922 115352 0.6110 +922 132724 0.6090 +922 165530 0.6620 +923 924 0.8820 +923 925 0.7990 +923 926 0.4210 +923 928 0.4300 +923 930 0.4600 +923 931 0.4300 +923 933 0.4290 +923 939 0.6500 +923 940 0.7850 +923 941 0.5710 +923 947 0.5180 +923 951 0.4940 +923 952 0.6730 +923 959 0.5790 +923 960 0.6020 +923 962 0.4840 +923 963 0.4640 +923 965 0.6360 +923 969 0.4170 +923 971 0.5850 +923 973 0.4100 +923 974 0.4060 +923 1043 0.4100 +923 1236 0.6100 +923 1380 0.5500 +923 1493 0.5440 +923 1521 0.4760 +923 1755 0.4240 +923 1803 0.5570 +923 1880 0.4350 +923 2262 0.5370 +923 2323 0.4600 +923 2833 0.4820 +923 2999 0.4070 +923 3001 0.5190 +923 3003 0.6320 +923 3004 0.4100 +923 3115 0.4950 +923 3122 0.4610 +923 3123 0.4040 +923 3127 0.4780 +923 3383 0.5080 +923 3394 0.5730 +923 3458 0.6120 +923 3558 0.4200 +923 3559 0.4750 +923 3560 0.5700 +923 3561 0.4730 +923 3568 0.4270 +923 3575 0.5830 +923 3635 0.5800 +923 3683 0.7250 +923 3688 0.5400 +923 3689 0.4150 +923 3700 0.4600 +923 3702 0.8740 +923 3820 0.5410 +923 3824 0.4690 +923 3897 0.4850 +923 3937 0.9050 +923 4050 0.4610 +923 4068 0.7810 +923 4162 0.4690 +923 4234 0.4390 +923 4818 0.4800 +923 4907 0.4690 +923 5551 0.5030 +923 5788 0.6350 +923 5790 0.4800 +923 5795 0.4240 +923 6347 0.5310 +923 6354 0.4210 +923 6363 0.4870 +923 6364 0.4100 +923 6372 0.4520 +923 6382 0.4640 +923 6386 0.8760 +923 6402 0.4040 +923 6426 0.4160 +923 6693 0.6030 +923 6932 0.4090 +923 7037 0.4330 +923 7070 0.4870 +923 7297 0.5090 +923 7409 0.7040 +923 7535 0.6580 +923 7726 0.4410 +923 8227 0.4290 +923 8631 0.5640 +923 9308 0.4640 +923 9402 0.4730 +923 9744 0.4040 +923 9806 0.6350 +923 10107 0.4770 +923 10225 0.5820 +923 10663 0.5160 +923 11184 0.4310 +923 22914 0.4300 +923 23274 0.6480 +923 27040 0.5770 +923 27111 0.7200 +923 27255 0.7740 +923 29851 0.6170 +923 50852 0.4840 +923 51176 0.4060 +923 51296 0.7900 +923 53347 0.6710 +923 54900 0.6430 +923 55423 0.5990 +923 64866 0.7860 +923 79037 0.4110 +923 89870 0.4900 +923 114836 0.5370 +923 124925 0.4070 +923 128611 0.4100 +923 149233 0.4410 +923 151888 0.5770 +923 374403 0.4720 +923 100133941 0.4870 +924 925 0.8390 +924 926 0.4600 +924 928 0.4210 +924 930 0.8170 +924 931 0.5760 +924 933 0.7520 +924 939 0.7310 +924 940 0.7630 +924 943 0.7940 +924 945 0.8800 +924 947 0.8110 +924 948 0.4460 +924 949 0.4450 +924 950 0.4470 +924 951 0.4240 +924 952 0.8650 +924 960 0.6010 +924 965 0.4470 +924 968 0.4940 +924 969 0.5010 +924 973 0.7540 +924 974 0.4580 +924 1043 0.6240 +924 1137 0.5640 +924 1236 0.5710 +924 1238 0.5330 +924 1380 0.5410 +924 1493 0.4230 +924 1521 0.5590 +924 1604 0.5410 +924 1791 0.7660 +924 1803 0.7510 +924 1956 0.4310 +924 2120 0.4040 +924 2209 0.6580 +924 2212 0.5460 +924 2322 0.5930 +924 2323 0.5570 +924 2335 0.4320 +924 2526 0.8650 +924 2829 0.4920 +924 2833 0.4150 +924 2993 0.6420 +924 3001 0.4690 +924 3002 0.6900 +924 3003 0.4330 +924 3004 0.5360 +924 3385 0.4850 +924 3458 0.4840 +924 3476 0.4240 +924 3558 0.5060 +924 3559 0.6200 +924 3560 0.5710 +924 3561 0.4390 +924 3563 0.7260 +924 3574 0.4710 +924 3575 0.5830 +924 3600 0.4080 +924 3605 0.4040 +924 3674 0.5420 +924 3682 0.4200 +924 3683 0.6930 +924 3684 0.8420 +924 3687 0.5610 +924 3689 0.4020 +924 3690 0.4860 +924 3702 0.5080 +924 3785 0.5910 +924 3802 0.4190 +924 3804 0.4150 +924 3811 0.4040 +924 3815 0.8170 +924 3820 0.6280 +924 3821 0.4730 +924 3822 0.4300 +924 3824 0.6260 +924 3902 0.4230 +924 3956 0.6090 +924 3958 0.7040 +924 4068 0.4600 +924 4267 0.7120 +924 4311 0.8400 +924 4353 0.7040 +924 4493 0.5100 +924 4502 0.6470 +924 4504 0.4230 +924 4684 0.8980 +924 4818 0.5370 +924 4869 0.5060 +924 5079 0.6200 +924 5133 0.4230 +924 5295 0.7530 +924 5551 0.6730 +924 5788 0.8440 +924 6382 0.5050 +924 6398 0.9740 +924 6402 0.5390 +924 6504 0.5580 +924 6693 0.8230 +924 6932 0.4090 +924 7037 0.6910 +924 7070 0.6980 +924 7072 0.7120 +924 7098 0.4300 +924 7412 0.4610 +924 7535 0.6240 +924 8115 0.4050 +924 8519 0.5440 +924 8973 0.4260 +924 9436 0.4080 +924 9437 0.4690 +924 9476 0.4720 +924 10206 0.5820 +924 10225 0.5930 +924 10320 0.4330 +924 10803 0.5800 +924 22914 0.5710 +924 27087 0.6960 +924 29851 0.5490 +924 30009 0.4270 +924 51744 0.4280 +924 53347 0.4230 +924 54923 0.6340 +924 59272 0.4060 +924 60496 0.5080 +924 64421 0.4070 +924 64919 0.4530 +924 80381 0.4220 +924 80781 0.5430 +924 84868 0.4040 +924 147495 0.8250 +924 160364 0.4740 +924 170482 0.4090 +924 259197 0.4590 +924 374569 0.5290 +924 102723407 0.5770 +925 926 0.9990 +925 927 0.9820 +925 928 0.6980 +925 930 0.9130 +925 931 0.5700 +925 933 0.6590 +925 939 0.9370 +925 940 0.9610 +925 941 0.9590 +925 942 0.9330 +925 943 0.7280 +925 944 0.4600 +925 945 0.7200 +925 947 0.8740 +925 948 0.7370 +925 949 0.7200 +925 950 0.7200 +925 951 0.4340 +925 952 0.8840 +925 953 0.7760 +925 958 0.9150 +925 959 0.9070 +925 960 0.9380 +925 961 0.6440 +925 962 0.7310 +925 965 0.7670 +925 966 0.5810 +925 967 0.5070 +925 968 0.8930 +925 969 0.9380 +925 970 0.6690 +925 971 0.4170 +925 972 0.5960 +925 973 0.6860 +925 974 0.4980 +925 975 0.9620 +925 990 0.4370 +925 999 0.7130 +925 1015 0.4570 +925 1019 0.4460 +925 1029 0.5790 +925 1039 0.5060 +925 1043 0.6880 +925 1048 0.5970 +925 1050 0.5890 +925 1051 0.4160 +925 1088 0.6120 +925 1147 0.4020 +925 1154 0.4930 +925 1230 0.5990 +925 1232 0.7630 +925 1233 0.4560 +925 1234 0.9410 +925 1235 0.7700 +925 1236 0.9410 +925 1237 0.6220 +925 1238 0.8170 +925 1366 0.5210 +925 1378 0.4250 +925 1380 0.7740 +925 1385 0.4580 +925 1401 0.7660 +925 1420 0.5700 +925 1432 0.5270 +925 1435 0.6650 +925 1436 0.7410 +925 1437 0.8730 +925 1440 0.7200 +925 1441 0.6010 +925 1485 0.7280 +925 1493 0.9400 +925 1499 0.7370 +925 1506 0.4540 +925 1508 0.4370 +925 1511 0.4250 +925 1514 0.4360 +925 1520 0.5710 +925 1521 0.7300 +925 1524 0.7030 +925 1536 0.5400 +925 1604 0.4520 +925 1636 0.5710 +925 1638 0.5140 +925 1786 0.4550 +925 1788 0.4200 +925 1791 0.5920 +925 1803 0.6250 +925 1839 0.5060 +925 1861 0.4790 +925 1880 0.4610 +925 1901 0.6490 +925 1950 0.5780 +925 1956 0.6970 +925 1959 0.4490 +925 1991 0.5410 +925 2022 0.5060 +925 2028 0.5190 +925 2056 0.4440 +925 2064 0.7200 +925 2086 0.6460 +925 2099 0.5430 +925 2113 0.4590 +925 2146 0.4830 +925 2147 0.4470 +925 2152 0.5060 +925 2205 0.5050 +925 2206 0.4850 +925 2207 0.5890 +925 2209 0.6780 +925 2212 0.7800 +925 2213 0.7860 +925 2217 0.5060 +925 2219 0.4070 +925 2247 0.5050 +925 2248 0.4180 +925 2249 0.4180 +925 2250 0.4180 +925 2251 0.4180 +925 2252 0.4810 +925 2254 0.4180 +925 2255 0.4180 +925 2308 0.5240 +925 2309 0.4230 +925 2321 0.4640 +925 2322 0.6490 +925 2323 0.7010 +925 2335 0.7530 +925 2346 0.5050 +925 2353 0.4860 +925 2475 0.6200 +925 2524 0.5180 +925 2526 0.6960 +925 2532 0.4550 +925 2534 0.9640 +925 2572 0.7010 +925 2597 0.6910 +925 2625 0.7450 +925 2633 0.5550 +925 2634 0.5580 +925 2670 0.4020 +925 2672 0.5040 +925 2719 0.4180 +925 2826 0.6680 +925 2829 0.6540 +925 2833 0.9100 +925 2875 0.6700 +925 2885 0.4080 +925 2919 0.6710 +925 2920 0.5880 +925 2921 0.4270 +925 2923 0.4020 +925 2932 0.4080 +925 2944 0.4260 +925 2956 0.4180 +925 2993 0.5070 +925 2995 0.5440 +925 2999 0.8950 +925 3001 0.9640 +925 3002 0.9630 +925 3003 0.9150 +925 3004 0.5580 +925 3021 0.4720 +925 3050 0.4180 +925 3055 0.4210 +925 3082 0.5050 +925 3091 0.6440 +925 3105 0.9990 +925 3106 0.9960 +925 3107 0.9940 +925 3108 0.5530 +925 3109 0.4070 +925 3113 0.5490 +925 3115 0.5430 +925 3117 0.5830 +925 3118 0.4860 +925 3119 0.7240 +925 3122 0.6170 +925 3123 0.7850 +925 3133 0.9990 +925 3134 0.9480 +925 3135 0.9980 +925 3140 0.9510 +925 3146 0.6380 +925 3161 0.5410 +925 3162 0.6580 +925 3164 0.5060 +925 3190 0.4590 +925 3240 0.4020 +925 3251 0.5400 +925 3308 0.5810 +925 3309 0.4450 +925 3312 0.5240 +925 3320 0.5060 +925 3326 0.5060 +925 3329 0.4480 +925 3375 0.5100 +925 3383 0.8420 +925 3384 0.4140 +925 3385 0.5460 +925 3394 0.6500 +925 3398 0.5450 +925 3399 0.5070 +925 3417 0.4570 +925 3434 0.4280 +925 3437 0.4050 +925 3439 0.8900 +925 3440 0.7590 +925 3441 0.5950 +925 3442 0.5840 +925 3443 0.5830 +925 3444 0.5830 +925 3445 0.5830 +925 3446 0.5820 +925 3447 0.5830 +925 3448 0.5830 +925 3449 0.5830 +925 3451 0.7200 +925 3452 0.5820 +925 3454 0.6660 +925 3455 0.5140 +925 3456 0.7710 +925 3458 0.9900 +925 3459 0.7100 +925 3460 0.4510 +925 3476 0.4820 +925 3479 0.4900 +925 3516 0.6040 +925 3551 0.4520 +925 3552 0.7770 +925 3553 0.9220 +925 3554 0.5830 +925 3557 0.4310 +925 3558 0.9710 +925 3559 0.9430 +925 3560 0.9220 +925 3561 0.8590 +925 3562 0.6490 +925 3563 0.7270 +925 3565 0.9470 +925 3566 0.7180 +925 3567 0.8650 +925 3569 0.9300 +925 3570 0.5920 +925 3574 0.9140 +925 3575 0.9460 +925 3576 0.8440 +925 3577 0.6950 +925 3578 0.6680 +925 3579 0.6360 +925 3586 0.9580 +925 3587 0.7720 +925 3588 0.4050 +925 3589 0.4460 +925 3594 0.7620 +925 3595 0.6050 +925 3596 0.8540 +925 3598 0.4750 +925 3600 0.9360 +925 3601 0.7850 +925 3603 0.6690 +925 3605 0.9360 +925 3606 0.7910 +925 3620 0.8130 +925 3627 0.8870 +925 3630 0.6900 +925 3635 0.4540 +925 3654 0.4350 +925 3659 0.6660 +925 3660 0.5700 +925 3661 0.6470 +925 3662 0.6890 +925 3663 0.5050 +925 3665 0.7230 +925 3672 0.5710 +925 3673 0.6210 +925 3674 0.5820 +925 3676 0.8350 +925 3682 0.9080 +925 3683 0.8490 +925 3684 0.9400 +925 3687 0.9380 +925 3688 0.5770 +925 3689 0.7870 +925 3690 0.4230 +925 3695 0.5150 +925 3700 0.8500 +925 3702 0.7760 +925 3716 0.6410 +925 3717 0.6210 +925 3718 0.6230 +925 3725 0.5830 +925 3732 0.9130 +925 3782 0.6940 +925 3791 0.5560 +925 3802 0.6230 +925 3804 0.6000 +925 3805 0.6820 +925 3811 0.6250 +925 3812 0.5130 +925 3815 0.7270 +925 3820 0.8910 +925 3821 0.7740 +925 3822 0.7050 +925 3823 0.4970 +925 3824 0.9300 +925 3845 0.6510 +925 3852 0.4250 +925 3872 0.4260 +925 3902 0.9470 +925 3903 0.5780 +925 3916 0.7950 +925 3920 0.4110 +925 3937 0.6280 +925 3952 0.5120 +925 3956 0.5660 +925 3958 0.5430 +925 3960 0.5410 +925 3965 0.8080 +925 4000 0.4180 +925 4015 0.4470 +925 4035 0.4070 +925 4049 0.6440 +925 4050 0.5670 +925 4055 0.5070 +925 4057 0.5820 +925 4063 0.5010 +925 4065 0.7360 +925 4067 0.6700 +925 4068 0.7500 +925 4072 0.6200 +925 4087 0.4780 +925 4088 0.5070 +925 4089 0.4220 +925 4094 0.5280 +925 4100 0.5170 +925 4102 0.6300 +925 4145 0.6170 +925 4153 0.4240 +925 4155 0.5940 +925 4170 0.4750 +925 4179 0.5290 +925 4210 0.4470 +925 4233 0.4480 +925 4254 0.5440 +925 4261 0.6060 +925 4267 0.4030 +925 4277 0.8750 +925 4282 0.4730 +925 4283 0.8480 +925 4288 0.4040 +925 4292 0.4330 +925 4301 0.5770 +925 4311 0.6620 +925 4313 0.5050 +925 4317 0.5590 +925 4318 0.6400 +925 4340 0.6690 +925 4345 0.7020 +925 4353 0.6210 +925 4360 0.7250 +925 4436 0.4330 +925 4481 0.5000 +925 4599 0.5960 +925 4609 0.7560 +925 4684 0.8890 +925 4772 0.5110 +925 4773 0.5250 +925 4783 0.4030 +925 4790 0.8180 +925 4792 0.5320 +925 4818 0.9040 +925 4820 0.4470 +925 4843 0.5410 +925 4851 0.5440 +925 4884 0.4650 +925 4893 0.4560 +925 4907 0.6670 +925 4919 0.4830 +925 4938 0.4090 +925 4973 0.4060 +925 5008 0.5960 +925 5026 0.4520 +925 5027 0.4120 +925 5045 0.6850 +925 5079 0.5730 +925 5125 0.7410 +925 5133 0.9380 +925 5156 0.4480 +925 5158 0.4510 +925 5159 0.4850 +925 5175 0.7480 +925 5196 0.4430 +925 5236 0.4310 +925 5241 0.4460 +925 5265 0.4160 +925 5290 0.5010 +925 5293 0.5480 +925 5294 0.4880 +925 5335 0.5090 +925 5341 0.4020 +925 5395 0.4050 +925 5414 0.4720 +925 5426 0.4450 +925 5443 0.4190 +925 5450 0.4720 +925 5468 0.5070 +925 5473 0.6290 +925 5551 0.9870 +925 5588 0.4410 +925 5594 0.5420 +925 5595 0.5800 +925 5610 0.4800 +925 5657 0.6200 +925 5688 0.5160 +925 5696 0.5690 +925 5698 0.6400 +925 5699 0.5090 +925 5728 0.6230 +925 5729 0.4030 +925 5734 0.4200 +925 5743 0.5810 +925 5770 0.4940 +925 5771 0.4130 +925 5777 0.5650 +925 5781 0.5770 +925 5788 0.9690 +925 5790 0.4460 +925 5798 0.6260 +925 5817 0.6060 +925 5818 0.6060 +925 5819 0.5120 +925 5873 0.5760 +925 5896 0.8590 +925 5966 0.5140 +925 5970 0.4480 +925 5971 0.4600 +925 5972 0.4540 +925 6097 0.6060 +925 6118 0.5370 +925 6280 0.4060 +925 6304 0.4110 +925 6346 0.4470 +925 6347 0.8000 +925 6348 0.8730 +925 6351 0.8890 +925 6354 0.5450 +925 6355 0.5190 +925 6356 0.6030 +925 6357 0.4040 +925 6361 0.7420 +925 6362 0.6240 +925 6363 0.8650 +925 6364 0.6580 +925 6366 0.8620 +925 6367 0.7680 +925 6370 0.7180 +925 6373 0.8000 +925 6374 0.5800 +925 6375 0.7860 +925 6376 0.7040 +925 6382 0.6970 +925 6387 0.7010 +925 6401 0.6000 +925 6402 0.9320 +925 6403 0.6230 +925 6404 0.6660 +925 6464 0.5410 +925 6490 0.8910 +925 6503 0.5380 +925 6504 0.7210 +925 6513 0.5170 +925 6614 0.6170 +925 6615 0.4300 +925 6688 0.5390 +925 6693 0.8160 +925 6696 0.4750 +925 6714 0.7350 +925 6737 0.4060 +925 6772 0.8360 +925 6773 0.5130 +925 6774 0.8390 +925 6775 0.8130 +925 6776 0.7840 +925 6777 0.7940 +925 6778 0.7280 +925 6794 0.4320 +925 6846 0.6840 +925 6850 0.9600 +925 6868 0.4480 +925 6892 0.5960 +925 6929 0.4750 +925 6932 0.6650 +925 6999 0.4090 +925 7010 0.4280 +925 7015 0.4800 +925 7037 0.6620 +925 7038 0.6300 +925 7040 0.7960 +925 7042 0.6730 +925 7043 0.4260 +925 7048 0.5190 +925 7056 0.7340 +925 7057 0.4180 +925 7066 0.4180 +925 7070 0.7430 +925 7072 0.6680 +925 7076 0.4180 +925 7084 0.5070 +925 7094 0.5410 +925 7096 0.7490 +925 7097 0.7480 +925 7098 0.7450 +925 7099 0.8470 +925 7100 0.6080 +925 7113 0.5450 +925 7124 0.9580 +925 7128 0.4240 +925 7132 0.7660 +925 7133 0.5490 +925 7157 0.7700 +925 7184 0.4510 +925 7185 0.4130 +925 7187 0.4440 +925 7189 0.5140 +925 7292 0.6690 +925 7293 0.7970 +925 7294 0.4020 +925 7297 0.5210 +925 7299 0.7090 +925 7305 0.5830 +925 7306 0.4070 +925 7345 0.6030 +925 7364 0.4590 +925 7409 0.5790 +925 7412 0.7900 +925 7424 0.4310 +925 7450 0.4780 +925 7454 0.4340 +925 7490 0.5430 +925 7494 0.4340 +925 7535 0.9920 +925 7704 0.5110 +925 7837 0.6970 +925 7852 0.9030 +925 8034 0.5280 +925 8115 0.4400 +925 8174 0.8080 +925 8290 0.4690 +925 8312 0.5130 +925 8320 0.9200 +925 8349 0.6690 +925 8356 0.4710 +925 8456 0.4380 +925 8530 0.6020 +925 8600 0.5440 +925 8631 0.6100 +925 8639 0.8400 +925 8651 0.7420 +925 8676 0.4200 +925 8698 0.4380 +925 8718 0.5850 +925 8737 0.4060 +925 8740 0.4370 +925 8743 0.6070 +925 8744 0.6920 +925 8764 0.6030 +925 8772 0.4010 +925 8784 0.7330 +925 8795 0.4800 +925 8797 0.7000 +925 8807 0.4450 +925 8809 0.5510 +925 8817 0.4180 +925 8822 0.4180 +925 8823 0.4180 +925 8829 0.6990 +925 8832 0.4650 +925 8837 0.4550 +925 8842 0.4800 +925 8995 0.6530 +925 9021 0.5360 +925 9034 0.7530 +925 9047 0.5490 +925 9076 0.5200 +925 9159 0.5780 +925 9168 0.4560 +925 9172 0.5110 +925 9173 0.4470 +925 9235 0.4900 +925 9241 0.5610 +925 9308 0.7260 +925 9332 0.7970 +925 9370 0.4310 +925 9398 0.4940 +925 9402 0.4090 +925 9436 0.5910 +925 9437 0.7900 +925 9447 0.4970 +925 9451 0.4310 +925 9466 0.5200 +925 9474 0.4200 +925 9636 0.6850 +925 9760 0.6000 +925 9976 0.4600 +925 10004 0.7130 +925 10018 0.6080 +925 10097 0.4090 +925 10103 0.4280 +925 10125 0.5200 +925 10219 0.8610 +925 10225 0.6440 +925 10232 0.5900 +925 10288 0.7180 +925 10320 0.5720 +925 10365 0.7320 +925 10379 0.4610 +925 10385 0.5630 +925 10392 0.4200 +925 10410 0.4180 +925 10437 0.5840 +925 10461 0.4190 +925 10462 0.4390 +925 10538 0.7400 +925 10563 0.7880 +925 10578 0.8900 +925 10630 0.5140 +925 10663 0.8680 +925 10666 0.6670 +925 10673 0.7760 +925 10687 0.5090 +925 10803 0.8590 +925 10850 0.6150 +925 10859 0.7520 +925 10870 0.7310 +925 10875 0.4450 +925 10894 0.4380 +925 11006 0.6340 +925 11009 0.4110 +925 11035 0.4120 +925 11119 0.4410 +925 11120 0.5140 +925 11126 0.8900 +925 11148 0.5770 +925 11151 0.4220 +925 11251 0.4750 +925 11326 0.4350 +925 22806 0.4800 +925 22807 0.4600 +925 22914 0.9460 +925 23308 0.7420 +925 23411 0.4010 +925 23495 0.4480 +925 23532 0.4470 +925 23586 0.6520 +925 23598 0.5020 +925 23705 0.7480 +925 23765 0.5940 +925 25939 0.4160 +925 26191 0.9100 +925 26253 0.4420 +925 26281 0.4180 +925 27006 0.4180 +925 27040 0.5220 +925 27074 0.5500 +925 27087 0.8560 +925 27141 0.5150 +925 27294 0.5400 +925 29110 0.5100 +925 29121 0.4310 +925 29126 0.9390 +925 29851 0.9030 +925 29935 0.5400 +925 30009 0.9440 +925 30816 0.8060 +925 30835 0.6680 +925 50489 0.6290 +925 50615 0.7680 +925 50616 0.7710 +925 50852 0.9480 +925 50856 0.4670 +925 50943 0.9480 +925 51043 0.5830 +925 51176 0.5200 +925 51284 0.7820 +925 51311 0.7760 +925 51338 0.4120 +925 51348 0.5310 +925 51497 0.6200 +925 51554 0.5150 +925 51561 0.5140 +925 51744 0.7220 +925 51752 0.5300 +925 53637 0.4640 +925 54106 0.8500 +925 54205 0.5070 +925 54210 0.4150 +925 54518 0.4700 +925 54674 0.4450 +925 54790 0.4270 +925 54843 0.5630 +925 54908 0.4970 +925 55340 0.4010 +925 55509 0.6990 +925 55532 0.6180 +925 55801 0.4380 +925 56253 0.7550 +925 57211 0.5060 +925 57379 0.4470 +925 57506 0.5060 +925 57509 0.7800 +925 57818 0.7310 +925 57823 0.5880 +925 58191 0.5870 +925 58484 0.4590 +925 58494 0.4070 +925 59067 0.6090 +925 59272 0.7910 +925 60468 0.4450 +925 60489 0.4780 +925 64115 0.5380 +925 64127 0.5870 +925 64135 0.6020 +925 64167 0.4080 +925 64170 0.4040 +925 64581 0.7420 +925 64806 0.4040 +925 64919 0.5480 +925 65258 0.7830 +925 79037 0.5750 +925 79132 0.4300 +925 79465 0.4820 +925 79679 0.5910 +925 79991 0.4990 +925 80321 0.5410 +925 80328 0.5150 +925 80329 0.5480 +925 80380 0.9100 +925 80381 0.8730 +925 81557 0.5380 +925 81704 0.4650 +925 83660 0.5350 +925 83888 0.5320 +925 84166 0.4620 +925 84433 0.4250 +925 84684 0.4780 +925 84706 0.4750 +925 84868 0.8920 +925 85480 0.5810 +925 90865 0.6670 +925 91074 0.4390 +925 91937 0.4550 +925 94025 0.4060 +925 112744 0.6610 +925 114548 0.6190 +925 114836 0.7450 +925 115004 0.6090 +925 115352 0.4010 +925 115362 0.4350 +925 115650 0.4740 +925 117157 0.4380 +925 122706 0.4650 +925 123803 0.4760 +925 126259 0.4030 +925 131450 0.4660 +925 133418 0.5320 +925 135250 0.7180 +925 137902 0.6970 +925 140685 0.4040 +925 140885 0.6600 +925 149233 0.6000 +925 149628 0.4480 +925 151888 0.7250 +925 153579 0.5090 +925 154075 0.4470 +925 163786 0.4890 +925 168400 0.7630 +925 169026 0.6030 +925 169355 0.7210 +925 170482 0.5890 +925 171558 0.6940 +925 201294 0.4310 +925 201633 0.8610 +925 222484 0.5740 +925 257101 0.7090 +925 259197 0.6600 +925 282617 0.4300 +925 282618 0.4380 +925 283420 0.6370 +925 284194 0.7820 +925 339366 0.5400 +925 339390 0.4060 +925 340061 0.4190 +925 387357 0.6280 +925 405754 0.6440 +925 414062 0.4240 +925 440093 0.4480 +925 440686 0.4480 +925 441168 0.4240 +925 653145 0.6390 +925 653604 0.4480 +925 654346 0.7820 +925 728239 0.5380 +925 728378 0.4130 +925 100133941 0.7080 +925 100423062 0.4800 +925 100506658 0.5560 +925 100507436 0.6180 +925 100526664 0.7150 +925 102723407 0.6280 +926 930 0.5990 +926 931 0.5690 +926 939 0.7160 +926 940 0.5730 +926 942 0.4190 +926 958 0.4960 +926 968 0.4240 +926 969 0.5340 +926 973 0.5690 +926 974 0.4820 +926 1236 0.5510 +926 1237 0.4190 +926 1493 0.5990 +926 1521 0.4860 +926 2206 0.4890 +926 2625 0.6060 +926 2833 0.4410 +926 2999 0.6040 +926 3001 0.7170 +926 3002 0.6410 +926 3003 0.7200 +926 3004 0.5350 +926 3105 0.7240 +926 3106 0.7060 +926 3107 0.7050 +926 3113 0.4600 +926 3122 0.5290 +926 3133 0.6850 +926 3134 0.5700 +926 3135 0.5540 +926 3458 0.5950 +926 3559 0.4390 +926 3560 0.4720 +926 3575 0.4980 +926 3684 0.6610 +926 3687 0.4500 +926 3695 0.4340 +926 3702 0.4560 +926 3820 0.5190 +926 3824 0.5750 +926 3902 0.6140 +926 4068 0.5620 +926 4261 0.5640 +926 4283 0.4390 +926 4818 0.6740 +926 5133 0.5710 +926 5551 0.5600 +926 5777 0.4810 +926 5788 0.5960 +926 6047 0.6490 +926 6304 0.6240 +926 6363 0.5000 +926 6375 0.4730 +926 6402 0.4160 +926 6490 0.4730 +926 6775 0.4150 +926 6850 0.9090 +926 6932 0.5180 +926 7535 0.9610 +926 8320 0.4780 +926 8631 0.5420 +926 9332 0.5890 +926 9437 0.4760 +926 9611 0.5560 +926 10219 0.4880 +926 10578 0.5530 +926 10663 0.6380 +926 11326 0.4720 +926 22914 0.6020 +926 23598 0.8140 +926 26095 0.4330 +926 29126 0.4960 +926 29851 0.4900 +926 30009 0.5530 +926 50852 0.9330 +926 50943 0.5450 +926 51338 0.5250 +926 56253 0.4300 +926 56940 0.4090 +926 60468 0.5300 +926 84868 0.4840 +926 150572 0.7620 +926 201633 0.5290 +926 445328 0.4250 +927 3105 0.9220 +927 3106 0.9230 +927 3107 0.9220 +927 3133 0.9220 +927 3134 0.9010 +927 3135 0.9010 +927 5174 0.4610 +927 6304 0.5020 +927 7535 0.9070 +927 23598 0.4930 +927 26095 0.4520 +927 253769 0.5270 +927 445328 0.6060 +927 552900 0.4090 +927 554282 0.4290 +927 653820 0.4140 +927 654483 0.4070 +928 930 0.9120 +928 933 0.6530 +928 940 0.7220 +928 941 0.4940 +928 942 0.6660 +928 945 0.4960 +928 947 0.6740 +928 948 0.9020 +928 949 0.6810 +928 950 0.7870 +928 951 0.7460 +928 952 0.6480 +928 958 0.4470 +928 960 0.9850 +928 961 0.7360 +928 963 0.6970 +928 965 0.4360 +928 966 0.7180 +928 967 0.9940 +928 968 0.4120 +928 969 0.4470 +928 975 0.9970 +928 977 0.9230 +928 999 0.7590 +928 1000 0.5520 +928 1048 0.5620 +928 1073 0.5110 +928 1308 0.5360 +928 1366 0.7460 +928 1380 0.6660 +928 1408 0.5570 +928 1490 0.7050 +928 1499 0.8360 +928 1604 0.6100 +928 1653 0.6940 +928 1803 0.8820 +928 1839 0.9800 +928 1950 0.8020 +928 1956 0.8730 +928 1994 0.4330 +928 2022 0.6480 +928 2086 0.5820 +928 2152 0.4010 +928 2209 0.4500 +928 2247 0.4650 +928 2248 0.4180 +928 2251 0.4240 +928 2252 0.4710 +928 2253 0.4220 +928 2254 0.4410 +928 2319 0.5380 +928 2324 0.4530 +928 2335 0.7110 +928 2348 0.4140 +928 2515 0.7140 +928 2526 0.4680 +928 2597 0.6750 +928 2670 0.5490 +928 2674 0.4230 +928 2678 0.4510 +928 2767 0.4760 +928 2776 0.6800 +928 2801 0.5750 +928 2815 0.5660 +928 2817 0.4650 +928 3105 0.4660 +928 3133 0.4050 +928 3265 0.6310 +928 3308 0.9470 +928 3312 0.7530 +928 3320 0.8710 +928 3321 0.7530 +928 3326 0.8210 +928 3383 0.9120 +928 3384 0.5290 +928 3458 0.5000 +928 3543 0.4740 +928 3553 0.4950 +928 3565 0.4100 +928 3569 0.5400 +928 3586 0.4990 +928 3603 0.5840 +928 3630 0.4130 +928 3655 0.8710 +928 3672 0.4380 +928 3673 0.5680 +928 3674 0.8140 +928 3675 0.9690 +928 3676 0.4780 +928 3678 0.8260 +928 3680 0.4350 +928 3683 0.5400 +928 3684 0.6030 +928 3685 0.7180 +928 3687 0.4810 +928 3688 0.9890 +928 3689 0.4390 +928 3690 0.8060 +928 3691 0.5990 +928 3732 0.9830 +928 3815 0.6930 +928 3855 0.4550 +928 3897 0.4740 +928 3916 0.5260 +928 3920 0.5600 +928 3958 0.4640 +928 3959 0.7360 +928 4071 0.6490 +928 4072 0.9430 +928 4162 0.6460 +928 4179 0.7440 +928 4233 0.4920 +928 4240 0.7030 +928 4267 0.6450 +928 4283 0.5240 +928 4311 0.8670 +928 4312 0.5560 +928 4313 0.4120 +928 4318 0.4800 +928 4322 0.4900 +928 4323 0.5390 +928 4360 0.4470 +928 4478 0.4470 +928 4606 0.4300 +928 4609 0.5060 +928 4613 0.4170 +928 4684 0.5710 +928 4781 0.4060 +928 4851 0.4540 +928 4893 0.4220 +928 4907 0.7210 +928 5034 0.5720 +928 5045 0.4550 +928 5159 0.5400 +928 5175 0.8270 +928 5307 0.4990 +928 5339 0.6120 +928 5420 0.4010 +928 5460 0.4740 +928 5578 0.6780 +928 5663 0.4770 +928 5680 0.4040 +928 5728 0.4360 +928 5737 0.5480 +928 5738 0.9990 +928 5777 0.4600 +928 5788 0.6660 +928 5868 0.4570 +928 5873 0.6290 +928 5874 0.5390 +928 5899 0.4370 +928 6094 0.4100 +928 6302 0.5620 +928 6347 0.6420 +928 6382 0.6060 +928 6386 0.8990 +928 6387 0.4160 +928 6401 0.5330 +928 6403 0.6640 +928 6515 0.4350 +928 6520 0.7500 +928 6557 0.4430 +928 6610 0.4800 +928 6657 0.4270 +928 6677 0.4890 +928 6696 0.4210 +928 6774 0.4500 +928 6868 0.7820 +928 7037 0.8250 +928 7040 0.4880 +928 7070 0.6780 +928 7099 0.4190 +928 7102 0.4310 +928 7103 0.5060 +928 7106 0.6280 +928 7113 0.8070 +928 7124 0.5410 +928 7132 0.5420 +928 7180 0.4370 +928 7184 0.4720 +928 7251 0.9950 +928 7412 0.7590 +928 7430 0.4630 +928 7431 0.5390 +928 7441 0.4180 +928 7450 0.6140 +928 7837 0.6040 +928 7852 0.5090 +928 8218 0.4800 +928 8416 0.4530 +928 8600 0.5730 +928 8766 0.4840 +928 8801 0.4470 +928 8817 0.4230 +928 8822 0.4230 +928 8823 0.5930 +928 8842 0.4800 +928 8883 0.4620 +928 9076 0.8170 +928 9172 0.4050 +928 9289 0.7190 +928 9332 0.4450 +928 9341 0.7970 +928 9368 0.4370 +928 9398 0.6440 +928 9525 0.4360 +928 9573 0.6420 +928 9749 0.4060 +928 10015 0.8080 +928 10016 0.4420 +928 10077 0.7900 +928 10098 0.6060 +928 10103 0.4830 +928 10184 0.4130 +928 10211 0.8710 +928 10219 0.5150 +928 10321 0.4030 +928 10343 0.4090 +928 10855 0.4110 +928 10867 0.7610 +928 11021 0.6620 +928 22914 0.5800 +928 23555 0.7120 +928 23705 0.4410 +928 26281 0.4390 +928 27006 0.4460 +928 27111 0.7860 +928 27161 0.4630 +928 29126 0.6290 +928 30816 0.5880 +928 50848 0.6360 +928 51303 0.8940 +928 51534 0.4830 +928 51706 0.4110 +928 54209 0.5060 +928 54495 0.4060 +928 54586 0.4250 +928 55512 0.5710 +928 57124 0.4280 +928 57722 0.4270 +928 59272 0.4570 +928 79923 0.4520 +928 80381 0.6120 +928 81619 0.7420 +928 83639 0.5450 +928 91937 0.4640 +928 92714 0.4060 +928 93185 0.9990 +928 94121 0.5100 +928 113177 0.5810 +928 126123 0.5640 +928 135228 0.7280 +928 137902 0.6030 +928 140885 0.4120 +928 147650 0.4460 +928 166647 0.4190 +928 284359 0.8770 +928 390243 0.5030 +928 390714 0.4380 +928 405754 0.5880 +928 653145 0.7980 +928 100129669 0.7140 +928 100133941 0.6090 +928 100423062 0.6220 +928 102723407 0.5030 +930 931 0.9760 +930 933 0.9920 +930 939 0.9550 +930 940 0.8420 +930 941 0.8190 +930 942 0.8330 +930 943 0.7350 +930 945 0.8810 +930 947 0.9000 +930 948 0.8880 +930 949 0.8810 +930 950 0.8880 +930 951 0.8990 +930 952 0.9460 +930 953 0.5940 +930 958 0.8800 +930 959 0.8010 +930 960 0.8510 +930 961 0.5700 +930 962 0.6700 +930 963 0.6210 +930 965 0.7100 +930 966 0.4150 +930 967 0.6540 +930 968 0.6500 +930 969 0.8590 +930 970 0.6640 +930 971 0.7800 +930 972 0.5710 +930 973 0.9980 +930 974 0.9910 +930 975 0.9990 +930 977 0.5680 +930 999 0.5550 +930 1039 0.6130 +930 1043 0.7330 +930 1048 0.4340 +930 1088 0.9000 +930 1230 0.4800 +930 1232 0.4920 +930 1233 0.5200 +930 1234 0.6270 +930 1235 0.8010 +930 1236 0.8800 +930 1237 0.4050 +930 1238 0.5300 +930 1378 0.7660 +930 1379 0.4330 +930 1380 0.9990 +930 1401 0.5810 +930 1420 0.4180 +930 1435 0.5320 +930 1436 0.6390 +930 1437 0.7410 +930 1440 0.6210 +930 1464 0.5540 +930 1485 0.5710 +930 1493 0.7660 +930 1524 0.5800 +930 1604 0.4430 +930 1791 0.7720 +930 1820 0.4730 +930 1847 0.4050 +930 1879 0.8210 +930 1880 0.5660 +930 1956 0.5200 +930 2015 0.4280 +930 2022 0.8180 +930 2064 0.5980 +930 2086 0.5060 +930 2120 0.4790 +930 2205 0.5430 +930 2206 0.5230 +930 2207 0.4720 +930 2208 0.7200 +930 2209 0.8210 +930 2212 0.7680 +930 2213 0.9330 +930 2217 0.5020 +930 2247 0.4170 +930 2309 0.4730 +930 2322 0.7030 +930 2323 0.6740 +930 2335 0.4410 +930 2346 0.5270 +930 2526 0.8890 +930 2534 0.6420 +930 2597 0.6090 +930 2624 0.4240 +930 2625 0.6260 +930 2829 0.4950 +930 2833 0.7150 +930 2841 0.4060 +930 2875 0.4470 +930 2885 0.8920 +930 2919 0.4750 +930 2993 0.8220 +930 3001 0.5160 +930 3002 0.8050 +930 3003 0.4410 +930 3091 0.5470 +930 3105 0.6020 +930 3106 0.4380 +930 3107 0.4100 +930 3112 0.7310 +930 3119 0.4440 +930 3122 0.5020 +930 3123 0.4770 +930 3133 0.4480 +930 3135 0.4020 +930 3251 0.4800 +930 3383 0.5980 +930 3384 0.4940 +930 3394 0.6070 +930 3399 0.4810 +930 3439 0.6420 +930 3440 0.4470 +930 3454 0.4510 +930 3456 0.5430 +930 3458 0.8580 +930 3543 0.7210 +930 3552 0.5790 +930 3553 0.6860 +930 3554 0.4090 +930 3558 0.8240 +930 3559 0.6140 +930 3560 0.6190 +930 3561 0.6310 +930 3562 0.6170 +930 3563 0.8920 +930 3565 0.8790 +930 3566 0.4610 +930 3567 0.6700 +930 3569 0.8360 +930 3570 0.4830 +930 3574 0.8200 +930 3575 0.8080 +930 3576 0.5810 +930 3578 0.4720 +930 3579 0.4150 +930 3586 0.8060 +930 3587 0.4920 +930 3596 0.6630 +930 3598 0.4770 +930 3600 0.8190 +930 3601 0.5750 +930 3605 0.7320 +930 3606 0.5880 +930 3620 0.5940 +930 3627 0.6820 +930 3630 0.5010 +930 3635 0.4020 +930 3662 0.6770 +930 3663 0.4540 +930 3665 0.4180 +930 3672 0.4690 +930 3673 0.6460 +930 3674 0.6210 +930 3676 0.7720 +930 3682 0.7490 +930 3683 0.6810 +930 3684 0.9120 +930 3687 0.9090 +930 3688 0.6100 +930 3689 0.5410 +930 3690 0.4860 +930 3695 0.5200 +930 3700 0.4110 +930 3702 0.4510 +930 3716 0.6160 +930 3717 0.4430 +930 3718 0.4210 +930 3732 0.8470 +930 3782 0.6280 +930 3802 0.4900 +930 3804 0.4350 +930 3811 0.4570 +930 3815 0.7810 +930 3820 0.7470 +930 3821 0.6780 +930 3822 0.6000 +930 3824 0.6230 +930 3902 0.6620 +930 3916 0.6460 +930 4049 0.5480 +930 4050 0.4810 +930 4063 0.5390 +930 4064 0.6450 +930 4065 0.5020 +930 4067 0.9990 +930 4068 0.4250 +930 4072 0.6010 +930 4102 0.4730 +930 4145 0.5930 +930 4153 0.4970 +930 4162 0.5060 +930 4170 0.4470 +930 4254 0.5820 +930 4261 0.4490 +930 4283 0.7160 +930 4297 0.4510 +930 4299 0.4390 +930 4301 0.5870 +930 4311 0.9540 +930 4312 0.4300 +930 4318 0.4250 +930 4340 0.5580 +930 4345 0.7120 +930 4353 0.6160 +930 4360 0.5810 +930 4599 0.4560 +930 4609 0.5830 +930 4684 0.9720 +930 4790 0.5050 +930 4804 0.4740 +930 4818 0.4060 +930 4851 0.4470 +930 4907 0.8160 +930 4928 0.4280 +930 5079 0.9180 +930 5087 0.4180 +930 5125 0.6100 +930 5133 0.8170 +930 5175 0.6690 +930 5238 0.4710 +930 5290 0.9670 +930 5291 0.9180 +930 5293 0.9710 +930 5294 0.5170 +930 5295 0.9760 +930 5296 0.9440 +930 5336 0.8990 +930 5368 0.5180 +930 5450 0.8060 +930 5551 0.6870 +930 5595 0.4440 +930 5657 0.4160 +930 5688 0.5700 +930 5738 0.4370 +930 5788 0.9210 +930 5790 0.5130 +930 5896 0.6910 +930 5914 0.4200 +930 6097 0.4110 +930 6304 0.4350 +930 6347 0.5940 +930 6348 0.5840 +930 6351 0.5630 +930 6363 0.7320 +930 6366 0.5530 +930 6367 0.6140 +930 6373 0.4040 +930 6382 0.8560 +930 6387 0.6000 +930 6402 0.8380 +930 6403 0.4330 +930 6472 0.7840 +930 6490 0.4790 +930 6504 0.7030 +930 6614 0.4950 +930 6688 0.5850 +930 6689 0.7980 +930 6693 0.9290 +930 6714 0.4340 +930 6772 0.5310 +930 6774 0.7260 +930 6776 0.7010 +930 6777 0.6930 +930 6778 0.4640 +930 6850 0.9830 +930 6929 0.5600 +930 6932 0.4430 +930 7037 0.6520 +930 7040 0.5640 +930 7056 0.5700 +930 7057 0.4650 +930 7066 0.4660 +930 7070 0.8360 +930 7084 0.4160 +930 7096 0.4420 +930 7097 0.5760 +930 7098 0.5020 +930 7099 0.6140 +930 7100 0.4160 +930 7124 0.7880 +930 7157 0.6030 +930 7251 0.4830 +930 7292 0.4350 +930 7293 0.6420 +930 7305 0.4250 +930 7345 0.5370 +930 7374 0.4160 +930 7409 0.9970 +930 7410 0.9470 +930 7412 0.5340 +930 7441 0.5780 +930 7490 0.4250 +930 7494 0.4240 +930 7535 0.6850 +930 7837 0.6100 +930 7852 0.8180 +930 8000 0.4480 +930 8115 0.8870 +930 8320 0.5620 +930 8503 0.9320 +930 8519 0.9990 +930 8600 0.4180 +930 8639 0.7950 +930 8744 0.7220 +930 8764 0.4180 +930 8784 0.5510 +930 8829 0.5050 +930 8832 0.4200 +930 8842 0.5110 +930 8900 0.4530 +930 9034 0.6300 +930 9159 0.6120 +930 9173 0.4120 +930 9214 0.7360 +930 9308 0.7930 +930 9332 0.5950 +930 9436 0.5740 +930 9437 0.7460 +930 9450 0.6410 +930 9623 0.5550 +930 10004 0.7060 +930 10018 0.4160 +930 10077 0.5890 +930 10103 0.4810 +930 10113 0.4360 +930 10219 0.7040 +930 10225 0.4220 +930 10232 0.6240 +930 10320 0.6130 +930 10331 0.4240 +930 10421 0.5060 +930 10451 0.9210 +930 10538 0.4050 +930 10563 0.7850 +930 10584 0.4310 +930 10631 0.4200 +930 10663 0.5290 +930 10666 0.5180 +930 10673 0.7260 +930 10803 0.6350 +930 10859 0.4590 +930 10870 0.4610 +930 10894 0.5270 +930 11126 0.4240 +930 11184 0.4730 +930 11251 0.5810 +930 11326 0.4760 +930 22806 0.5000 +930 22914 0.6930 +930 22918 0.5840 +930 23308 0.5260 +930 23495 0.8090 +930 23583 0.4240 +930 26228 0.4660 +930 27071 0.5890 +930 27087 0.6940 +930 27141 0.4320 +930 29126 0.8160 +930 29760 0.9320 +930 29802 0.8470 +930 29851 0.7790 +930 30009 0.7140 +930 30816 0.5070 +930 30835 0.5160 +930 50489 0.4140 +930 50615 0.8230 +930 50616 0.5830 +930 50943 0.8390 +930 51176 0.4020 +930 51237 0.6410 +930 51284 0.6450 +930 51311 0.4510 +930 51348 0.4250 +930 51744 0.5500 +930 53335 0.4830 +930 53342 0.4030 +930 54106 0.7100 +930 54205 0.4350 +930 54790 0.4180 +930 55024 0.6410 +930 55507 0.4400 +930 57153 0.4070 +930 57211 0.4840 +930 57379 0.7880 +930 57623 0.4530 +930 57823 0.6170 +930 59067 0.6790 +930 60468 0.4620 +930 65258 0.4750 +930 79368 0.7090 +930 79870 0.4570 +930 80013 0.4220 +930 80321 0.9790 +930 80328 0.5750 +930 80380 0.6130 +930 80381 0.6560 +930 81488 0.4120 +930 81793 0.5670 +930 83416 0.7430 +930 83417 0.5710 +930 84433 0.4350 +930 84684 0.7000 +930 84824 0.9310 +930 84868 0.6640 +930 85480 0.4320 +930 89790 0.4170 +930 90865 0.5050 +930 93185 0.4400 +930 114836 0.4800 +930 115350 0.5610 +930 115352 0.5370 +930 115650 0.8890 +930 118788 0.8550 +930 137902 0.6100 +930 140885 0.5200 +930 151888 0.7030 +930 160364 0.5140 +930 169355 0.5070 +930 170482 0.6820 +930 199786 0.5740 +930 201633 0.6230 +930 259197 0.5950 +930 283420 0.4310 +930 374569 0.4790 +930 390714 0.6030 +930 405754 0.5060 +930 100133941 0.7960 +930 100423062 0.6580 +930 100526664 0.4880 +930 102723407 0.8540 +931 932 0.9600 +931 933 0.9280 +931 939 0.6480 +931 942 0.4580 +931 945 0.4150 +931 948 0.4350 +931 949 0.4210 +931 950 0.4160 +931 951 0.5230 +931 952 0.6420 +931 958 0.6020 +931 959 0.4100 +931 962 0.4560 +931 963 0.4170 +931 968 0.4890 +931 969 0.7480 +931 971 0.5530 +931 972 0.4800 +931 973 0.9350 +931 974 0.8790 +931 975 0.5520 +931 1043 0.5790 +931 1088 0.4690 +931 1235 0.6590 +931 1236 0.6260 +931 1359 0.6450 +931 1380 0.8200 +931 1436 0.5260 +931 1493 0.4700 +931 1880 0.6270 +931 2205 0.8050 +931 2207 0.7580 +931 2208 0.6820 +931 2534 0.4230 +931 2624 0.5290 +931 2841 0.5250 +931 2999 0.4010 +931 3001 0.4970 +931 3002 0.4310 +931 3003 0.5350 +931 3004 0.5320 +931 3112 0.5490 +931 3122 0.6540 +931 3123 0.4550 +931 3394 0.4980 +931 3557 0.4450 +931 3559 0.4170 +931 3560 0.5510 +931 3563 0.5630 +931 3575 0.5510 +931 3635 0.4560 +931 3662 0.4860 +931 3820 0.4580 +931 3824 0.4190 +931 3937 0.4810 +931 4033 0.4120 +931 4050 0.4190 +931 4067 0.5930 +931 4068 0.4210 +931 4069 0.6070 +931 4288 0.4450 +931 4311 0.4830 +931 4603 0.4540 +931 4684 0.6290 +931 4689 0.4700 +931 4818 0.6880 +931 5026 0.4540 +931 5079 0.7120 +931 5133 0.4170 +931 5134 0.4370 +931 5368 0.5260 +931 5450 0.8890 +931 5473 0.4400 +931 5788 0.6310 +931 5790 0.4780 +931 6363 0.4460 +931 6382 0.5040 +931 6402 0.7360 +931 6688 0.4160 +931 6689 0.6130 +931 7124 0.4340 +931 7130 0.4110 +931 7133 0.4570 +931 7177 0.5930 +931 7412 0.4040 +931 8115 0.8370 +931 8519 0.7680 +931 9034 0.5090 +931 9214 0.5820 +931 9332 0.4530 +931 10206 0.4870 +931 10320 0.4220 +931 10563 0.4980 +931 10578 0.5680 +931 22914 0.4220 +931 23495 0.6680 +931 23547 0.5380 +931 26228 0.5250 +931 27334 0.5940 +931 29760 0.5800 +931 29802 0.7720 +931 29851 0.6220 +931 30009 0.4260 +931 50852 0.4090 +931 50943 0.4040 +931 51200 0.6160 +931 51237 0.7840 +931 51348 0.4920 +931 54440 0.4140 +931 55024 0.8750 +931 55843 0.4910 +931 58475 0.7970 +931 59067 0.4970 +931 64231 0.4260 +931 64232 0.5030 +931 79368 0.6730 +931 81793 0.5940 +931 83416 0.7020 +931 84636 0.5070 +931 84767 0.4510 +931 84824 0.8000 +931 85414 0.4560 +931 115350 0.8260 +931 115352 0.7000 +931 115650 0.7420 +931 151888 0.7610 +931 199786 0.7420 +931 245802 0.4150 +931 257019 0.4870 +931 643680 0.5150 +931 643834 0.6360 +931 643847 0.6390 +931 645432 0.4170 +931 100049587 0.4580 +931 100423062 0.8190 +931 102723407 0.4630 +932 1053 0.4780 +932 1088 0.8370 +932 1178 0.4460 +932 1511 0.7970 +932 1667 0.4160 +932 1669 0.8540 +932 1991 0.8450 +932 2206 0.4260 +932 4317 0.5580 +932 4353 0.8860 +932 4680 0.4410 +932 5657 0.8100 +932 6036 0.7070 +932 6037 0.8450 +932 6947 0.5370 +932 8993 0.4610 +932 9389 0.4870 +932 10321 0.4750 +932 51156 0.4040 +932 51368 0.4870 +932 64231 0.4170 +932 83661 0.4320 +932 158131 0.4910 +932 219990 0.4900 +932 245802 0.5070 +932 341116 0.4440 +933 939 0.6780 +933 940 0.6120 +933 941 0.6900 +933 942 0.6530 +933 943 0.7160 +933 945 0.4370 +933 946 0.4090 +933 947 0.6750 +933 951 0.7100 +933 952 0.7870 +933 958 0.6520 +933 959 0.7270 +933 960 0.5780 +933 961 0.4480 +933 965 0.5090 +933 967 0.5230 +933 968 0.4130 +933 969 0.7260 +933 970 0.5190 +933 971 0.8880 +933 972 0.5580 +933 973 0.9850 +933 974 0.9600 +933 975 0.8470 +933 1043 0.6980 +933 1173 0.5880 +933 1235 0.6310 +933 1236 0.5070 +933 1378 0.4770 +933 1380 0.8940 +933 1436 0.4070 +933 1493 0.6880 +933 1524 0.5750 +933 1660 0.4120 +933 1791 0.7770 +933 1879 0.5910 +933 2064 0.5070 +933 2206 0.5350 +933 2208 0.6800 +933 2212 0.6070 +933 2213 0.5110 +933 2217 0.4990 +933 2322 0.4340 +933 2346 0.4810 +933 2526 0.6000 +933 2587 0.7780 +933 2864 0.7970 +933 2865 0.8390 +933 2866 0.7690 +933 2867 0.7810 +933 2885 0.7830 +933 3002 0.4160 +933 3112 0.4030 +933 3122 0.4210 +933 3240 0.5330 +933 3383 0.4190 +933 3384 0.4940 +933 3458 0.4970 +933 3543 0.6430 +933 3558 0.5240 +933 3563 0.6790 +933 3565 0.4230 +933 3569 0.4880 +933 3574 0.4060 +933 3586 0.4880 +933 3600 0.4480 +933 3635 0.5160 +933 3662 0.4730 +933 3676 0.5670 +933 3682 0.6070 +933 3683 0.6130 +933 3684 0.7430 +933 3687 0.7620 +933 3815 0.5480 +933 3902 0.4280 +933 3903 0.4940 +933 4063 0.4440 +933 4064 0.5820 +933 4067 0.9700 +933 4283 0.6710 +933 4297 0.4240 +933 4311 0.8410 +933 4345 0.6720 +933 4353 0.5410 +933 4609 0.4020 +933 4914 0.4120 +933 5079 0.7960 +933 5133 0.4050 +933 5335 0.6250 +933 5336 0.4840 +933 5450 0.6910 +933 5777 0.9970 +933 5781 0.5680 +933 5788 0.9990 +933 6363 0.5570 +933 6367 0.5070 +933 6382 0.6200 +933 6402 0.5110 +933 6480 0.5450 +933 6614 0.6090 +933 6689 0.5170 +933 6693 0.7040 +933 6714 0.4770 +933 6850 0.9590 +933 7037 0.6010 +933 7100 0.4240 +933 7124 0.5980 +933 7157 0.4090 +933 7293 0.4300 +933 7305 0.4320 +933 7441 0.4030 +933 7494 0.4460 +933 7535 0.5140 +933 7852 0.4990 +933 8115 0.5630 +933 8431 0.5650 +933 8811 0.7820 +933 9034 0.5460 +933 9214 0.5810 +933 9308 0.4200 +933 9332 0.6200 +933 10232 0.6150 +933 10320 0.4170 +933 10563 0.5920 +933 10673 0.6240 +933 11025 0.6880 +933 22914 0.4090 +933 23495 0.5700 +933 27036 0.4060 +933 29126 0.4680 +933 29760 0.7500 +933 29802 0.7120 +933 29851 0.4290 +933 30835 0.4090 +933 50615 0.4610 +933 51083 0.7620 +933 51284 0.4220 +933 54106 0.4400 +933 54209 0.5280 +933 54414 0.7280 +933 54867 0.5910 +933 55024 0.5580 +933 55808 0.4440 +933 55843 0.4110 +933 57379 0.4820 +933 57823 0.4480 +933 64922 0.4030 +933 79168 0.4370 +933 79368 0.4300 +933 79400 0.7510 +933 80321 0.6210 +933 80381 0.4400 +933 81607 0.4530 +933 81793 0.5860 +933 83416 0.4720 +933 84636 0.4030 +933 84824 0.6260 +933 84868 0.4410 +933 89790 0.4660 +933 115350 0.5350 +933 115650 0.6280 +933 131450 0.9350 +933 140885 0.6070 +933 151888 0.7460 +933 160364 0.4040 +933 162466 0.4080 +933 199786 0.5210 +933 284266 0.7500 +933 374569 0.4790 +933 390714 0.5050 +933 100133941 0.6010 +933 100423062 0.4960 +933 102723407 0.6660 +939 940 0.8980 +939 941 0.9890 +939 942 0.9920 +939 943 0.9340 +939 944 0.9270 +939 945 0.5240 +939 947 0.5220 +939 951 0.4360 +939 952 0.9080 +939 953 0.6350 +939 958 0.9210 +939 959 0.9340 +939 960 0.6650 +939 962 0.7110 +939 965 0.4320 +939 966 0.4710 +939 969 0.8660 +939 970 0.9990 +939 971 0.4760 +939 972 0.4480 +939 973 0.8770 +939 974 0.6010 +939 975 0.7290 +939 1043 0.6950 +939 1088 0.5850 +939 1233 0.4630 +939 1234 0.7970 +939 1235 0.7210 +939 1236 0.9230 +939 1238 0.5070 +939 1380 0.9050 +939 1401 0.4300 +939 1435 0.4280 +939 1436 0.4380 +939 1437 0.5480 +939 1485 0.4050 +939 1493 0.7810 +939 1524 0.5190 +939 1847 0.4070 +939 1880 0.4060 +939 1901 0.4590 +939 2212 0.5480 +939 2213 0.6210 +939 2322 0.4030 +939 2323 0.4740 +939 2357 0.4460 +939 2625 0.4840 +939 2826 0.4270 +939 2833 0.8630 +939 2999 0.5740 +939 3001 0.6940 +939 3002 0.7850 +939 3003 0.7120 +939 3105 0.5550 +939 3106 0.4350 +939 3122 0.4130 +939 3123 0.4350 +939 3133 0.4890 +939 3383 0.4330 +939 3394 0.4270 +939 3399 0.6060 +939 3439 0.5270 +939 3458 0.8600 +939 3552 0.6080 +939 3553 0.5270 +939 3558 0.8440 +939 3559 0.7380 +939 3560 0.8290 +939 3561 0.6160 +939 3563 0.6030 +939 3565 0.7460 +939 3567 0.5060 +939 3569 0.6100 +939 3570 0.4300 +939 3574 0.6660 +939 3575 0.8540 +939 3576 0.4450 +939 3586 0.7110 +939 3587 0.5040 +939 3594 0.4020 +939 3596 0.5060 +939 3600 0.6960 +939 3601 0.4810 +939 3605 0.6620 +939 3606 0.5320 +939 3620 0.5780 +939 3627 0.6830 +939 3662 0.6070 +939 3672 0.4800 +939 3673 0.4100 +939 3676 0.6130 +939 3682 0.6070 +939 3683 0.6430 +939 3684 0.7380 +939 3687 0.7020 +939 3689 0.6500 +939 3695 0.6620 +939 3702 0.6240 +939 3718 0.4080 +939 3782 0.5860 +939 3802 0.4300 +939 3804 0.4070 +939 3811 0.4320 +939 3815 0.5260 +939 3820 0.7120 +939 3821 0.7330 +939 3822 0.6160 +939 3824 0.6520 +939 3902 0.7750 +939 3903 0.4580 +939 3916 0.6310 +939 3965 0.6830 +939 4049 0.4890 +939 4050 0.5550 +939 4055 0.6380 +939 4063 0.5770 +939 4068 0.6650 +939 4283 0.5090 +939 4311 0.6860 +939 4345 0.6440 +939 4684 0.7700 +939 4772 0.5370 +939 4790 0.4310 +939 4804 0.4930 +939 4818 0.5980 +939 4907 0.4510 +939 5079 0.4630 +939 5125 0.4850 +939 5133 0.6920 +939 5175 0.5310 +939 5450 0.6790 +939 5551 0.7670 +939 5583 0.5440 +939 5788 0.8040 +939 5790 0.5520 +939 5817 0.7440 +939 5819 0.5920 +939 5896 0.4720 +939 5996 0.5050 +939 6097 0.4370 +939 6348 0.4690 +939 6351 0.5520 +939 6363 0.5580 +939 6366 0.4380 +939 6382 0.7260 +939 6387 0.4080 +939 6402 0.8280 +939 6490 0.4120 +939 6504 0.5910 +939 6693 0.8130 +939 6772 0.4970 +939 6774 0.4620 +939 6775 0.4760 +939 6776 0.4790 +939 6777 0.4640 +939 6850 0.5000 +939 6932 0.5880 +939 7037 0.6220 +939 7040 0.4130 +939 7070 0.4310 +939 7097 0.4440 +939 7099 0.4380 +939 7124 0.7250 +939 7132 0.7150 +939 7133 0.6280 +939 7185 0.6220 +939 7186 0.8140 +939 7187 0.7750 +939 7188 0.7260 +939 7292 0.9860 +939 7293 0.9340 +939 7305 0.4170 +939 7345 0.5920 +939 7494 0.4800 +939 7535 0.5970 +939 7852 0.7470 +939 8115 0.4910 +939 8320 0.7220 +939 8519 0.5040 +939 8639 0.5720 +939 8718 0.6270 +939 8740 0.7000 +939 8743 0.4200 +939 8744 0.9830 +939 8764 0.7700 +939 8784 0.8700 +939 8809 0.4340 +939 8832 0.4030 +939 8995 0.7680 +939 9034 0.6780 +939 9159 0.4700 +939 9308 0.4890 +939 9332 0.4530 +939 9436 0.4820 +939 9437 0.8020 +939 9976 0.5110 +939 10004 0.7310 +939 10219 0.8280 +939 10225 0.5070 +939 10320 0.4400 +939 10538 0.4310 +939 10563 0.6080 +939 10572 0.9720 +939 10578 0.5540 +939 10663 0.6280 +939 10666 0.5860 +939 10673 0.7190 +939 10803 0.4510 +939 10859 0.5000 +939 10870 0.5590 +939 10913 0.4380 +939 11119 0.4120 +939 11126 0.6230 +939 11151 0.5720 +939 11251 0.4160 +939 22914 0.8020 +939 23308 0.9640 +939 23495 0.6840 +939 27087 0.8610 +939 27141 0.4890 +939 27240 0.4460 +939 29126 0.6760 +939 29851 0.8330 +939 30009 0.7730 +939 50615 0.7320 +939 50616 0.5050 +939 50852 0.4060 +939 50943 0.7460 +939 51135 0.4480 +939 51176 0.4680 +939 51237 0.6220 +939 51266 0.4040 +939 51284 0.5150 +939 51348 0.4140 +939 51554 0.4100 +939 51744 0.6470 +939 53347 0.4240 +939 54106 0.6290 +939 54900 0.5780 +939 55080 0.6440 +939 55423 0.5230 +939 56913 0.4200 +939 57211 0.4770 +939 57379 0.7280 +939 57823 0.5300 +939 59067 0.6880 +939 60468 0.4500 +939 64115 0.4700 +939 79037 0.5640 +939 79679 0.4120 +939 79934 0.4470 +939 80380 0.5990 +939 80381 0.7980 +939 83416 0.6820 +939 83417 0.6710 +939 84061 0.5550 +939 84684 0.7700 +939 84824 0.4920 +939 84868 0.7350 +939 89790 0.5590 +939 92014 0.4140 +939 114836 0.5650 +939 115352 0.4450 +939 115650 0.7800 +939 117157 0.4150 +939 120425 0.4060 +939 126259 0.4440 +939 131450 0.6160 +939 140885 0.5510 +939 151888 0.8360 +939 201633 0.7560 +939 257101 0.4510 +939 259197 0.7250 +939 284194 0.6060 +939 654346 0.6090 +939 100133941 0.7350 +939 100423062 0.4720 +939 102723407 0.6310 +940 941 0.9990 +940 942 0.9990 +940 943 0.6120 +940 944 0.4500 +940 945 0.6200 +940 947 0.5410 +940 952 0.8560 +940 953 0.6660 +940 958 0.9970 +940 959 0.9980 +940 960 0.8010 +940 961 0.4760 +940 962 0.7040 +940 965 0.9670 +940 966 0.5690 +940 968 0.4180 +940 969 0.8650 +940 970 0.9790 +940 973 0.4410 +940 1043 0.5800 +940 1048 0.4400 +940 1211 0.4460 +940 1233 0.6460 +940 1234 0.7170 +940 1235 0.6780 +940 1236 0.8570 +940 1237 0.4170 +940 1238 0.4800 +940 1380 0.5000 +940 1401 0.4780 +940 1435 0.4520 +940 1437 0.8210 +940 1440 0.4500 +940 1485 0.5810 +940 1493 0.9910 +940 1524 0.4880 +940 1794 0.4660 +940 1803 0.6020 +940 1844 0.4170 +940 1901 0.4170 +940 1956 0.6570 +940 2064 0.7300 +940 2086 0.6580 +940 2207 0.4460 +940 2209 0.5800 +940 2212 0.7120 +940 2213 0.7110 +940 2308 0.4360 +940 2316 0.4760 +940 2323 0.4930 +940 2346 0.6460 +940 2475 0.5130 +940 2526 0.4160 +940 2533 0.5670 +940 2534 0.8670 +940 2597 0.5190 +940 2625 0.6300 +940 2833 0.8030 +940 2885 0.9990 +940 2999 0.4130 +940 3001 0.6290 +940 3002 0.7920 +940 3003 0.5140 +940 3091 0.4330 +940 3105 0.6200 +940 3106 0.4890 +940 3107 0.5860 +940 3122 0.5420 +940 3123 0.4630 +940 3133 0.4930 +940 3135 0.4550 +940 3383 0.9770 +940 3439 0.6050 +940 3454 0.4440 +940 3456 0.5150 +940 3458 0.9540 +940 3552 0.8000 +940 3553 0.8080 +940 3554 0.5680 +940 3558 0.9650 +940 3559 0.8460 +940 3560 0.7770 +940 3561 0.5970 +940 3562 0.4370 +940 3563 0.5710 +940 3565 0.8960 +940 3566 0.4180 +940 3567 0.7760 +940 3569 0.7900 +940 3570 0.4560 +940 3574 0.7740 +940 3575 0.8140 +940 3576 0.5930 +940 3578 0.5180 +940 3586 0.9220 +940 3587 0.6380 +940 3594 0.5170 +940 3595 0.4650 +940 3596 0.7680 +940 3598 0.4470 +940 3600 0.8420 +940 3601 0.4010 +940 3605 0.8670 +940 3606 0.6090 +940 3620 0.7130 +940 3627 0.6110 +940 3655 0.4020 +940 3662 0.6570 +940 3676 0.8010 +940 3682 0.6220 +940 3683 0.6260 +940 3684 0.6700 +940 3687 0.6770 +940 3689 0.6830 +940 3695 0.4420 +940 3700 0.4450 +940 3702 0.9730 +940 3716 0.5740 +940 3717 0.4250 +940 3718 0.4770 +940 3725 0.4470 +940 3732 0.6260 +940 3782 0.5730 +940 3802 0.6000 +940 3804 0.5600 +940 3811 0.4090 +940 3815 0.5600 +940 3820 0.6590 +940 3821 0.6190 +940 3822 0.4740 +940 3824 0.5990 +940 3902 0.8260 +940 3903 0.4070 +940 3916 0.6630 +940 3934 0.6460 +940 3937 0.8430 +940 3965 0.6200 +940 4049 0.4600 +940 4065 0.5680 +940 4067 0.5420 +940 4068 0.6610 +940 4094 0.4690 +940 4102 0.4700 +940 4179 0.5890 +940 4277 0.4420 +940 4283 0.5530 +940 4340 0.5420 +940 4345 0.4560 +940 4609 0.5320 +940 4684 0.7450 +940 4690 0.4870 +940 4772 0.6620 +940 4773 0.6940 +940 4775 0.5520 +940 4790 0.7040 +940 4792 0.4180 +940 4907 0.5540 +940 5058 0.5310 +940 5062 0.6630 +940 5063 0.5170 +940 5133 0.9360 +940 5141 0.4820 +940 5170 0.5540 +940 5175 0.4960 +940 5245 0.4120 +940 5290 0.9400 +940 5291 0.9170 +940 5293 0.9430 +940 5295 0.9930 +940 5296 0.9330 +940 5335 0.5780 +940 5551 0.7910 +940 5588 0.9940 +940 5595 0.4120 +940 5728 0.4390 +940 5781 0.5920 +940 5788 0.8000 +940 5817 0.7080 +940 5819 0.7180 +940 5877 0.4120 +940 5879 0.4460 +940 5896 0.6010 +940 5966 0.4840 +940 6097 0.5690 +940 6347 0.5470 +940 6348 0.5170 +940 6351 0.5760 +940 6361 0.4020 +940 6363 0.4640 +940 6364 0.4490 +940 6366 0.4600 +940 6367 0.4260 +940 6373 0.4080 +940 6375 0.4080 +940 6382 0.5070 +940 6387 0.4600 +940 6402 0.8300 +940 6490 0.6250 +940 6504 0.5890 +940 6513 0.4700 +940 6693 0.4800 +940 6714 0.7840 +940 6772 0.5840 +940 6774 0.6160 +940 6775 0.6230 +940 6776 0.6160 +940 6777 0.6050 +940 6778 0.4800 +940 6850 0.4710 +940 6932 0.5840 +940 7037 0.5080 +940 7040 0.6250 +940 7070 0.4730 +940 7084 0.4180 +940 7097 0.4800 +940 7098 0.4610 +940 7099 0.5400 +940 7124 0.8750 +940 7132 0.6680 +940 7133 0.4220 +940 7157 0.4860 +940 7189 0.4070 +940 7253 0.4800 +940 7268 0.4180 +940 7292 0.9810 +940 7293 0.9340 +940 7299 0.5970 +940 7345 0.4790 +940 7409 0.8790 +940 7412 0.4420 +940 7525 0.4100 +940 7535 0.9410 +940 7837 0.4700 +940 7852 0.5990 +940 8000 0.4480 +940 8320 0.6440 +940 8503 0.9060 +940 8600 0.4190 +940 8639 0.7720 +940 8744 0.9920 +940 8764 0.6530 +940 8784 0.7380 +940 8915 0.5800 +940 8995 0.6900 +940 9034 0.6260 +940 9308 0.7240 +940 9332 0.4950 +940 9402 0.9830 +940 9436 0.4320 +940 9437 0.5430 +940 10000 0.5800 +940 10004 0.6270 +940 10018 0.4500 +940 10219 0.6940 +940 10225 0.6400 +940 10232 0.5940 +940 10288 0.7690 +940 10320 0.4810 +940 10538 0.5550 +940 10563 0.5100 +940 10578 0.4730 +940 10663 0.4670 +940 10666 0.6370 +940 10673 0.5150 +940 10750 0.4670 +940 10803 0.4680 +940 10859 0.4590 +940 10870 0.7440 +940 10892 0.6330 +940 10955 0.4690 +940 11006 0.6770 +940 11072 0.6970 +940 11126 0.7380 +940 11148 0.6750 +940 22806 0.4040 +940 22807 0.4450 +940 22914 0.8220 +940 23308 0.9970 +940 23476 0.4460 +940 25945 0.4680 +940 26191 0.6380 +940 27040 0.5020 +940 27087 0.8690 +940 29126 0.9970 +940 29851 0.9790 +940 30009 0.8260 +940 30816 0.6760 +940 30835 0.4080 +940 50615 0.5990 +940 50616 0.6150 +940 50852 0.4940 +940 50943 0.9350 +940 51176 0.5060 +940 51284 0.5290 +940 51311 0.4270 +940 51744 0.6280 +940 54106 0.5160 +940 54908 0.4070 +940 55423 0.5130 +940 57211 0.4520 +940 57509 0.5920 +940 57823 0.4810 +940 59067 0.4780 +940 64115 0.6800 +940 79679 0.7730 +940 80321 0.5450 +940 80328 0.5010 +940 80380 0.9760 +940 80381 0.9980 +940 80736 0.5210 +940 84433 0.8990 +940 84868 0.8120 +940 84941 0.5500 +940 90865 0.4190 +940 112744 0.5890 +940 114836 0.5230 +940 115650 0.4320 +940 120425 0.7200 +940 126259 0.6180 +940 131450 0.4210 +940 135250 0.4550 +940 137902 0.4700 +940 140885 0.5570 +940 146206 0.7700 +940 149041 0.6100 +940 149233 0.6450 +940 151888 0.7470 +940 168400 0.4760 +940 169355 0.6230 +940 201633 0.7800 +940 256987 0.4730 +940 259197 0.5210 +940 284194 0.6080 +940 374383 0.5490 +940 405754 0.6560 +940 654346 0.6080 +940 100133941 0.4330 +940 100526664 0.5560 +941 942 0.9990 +941 943 0.6490 +941 944 0.4590 +941 945 0.6250 +941 947 0.6540 +941 948 0.5160 +941 949 0.4960 +941 950 0.4960 +941 952 0.7990 +941 953 0.6310 +941 958 0.9990 +941 959 0.9980 +941 960 0.8250 +941 961 0.5310 +941 962 0.7320 +941 965 0.9940 +941 967 0.4540 +941 968 0.6840 +941 969 0.9060 +941 970 0.8130 +941 972 0.5530 +941 973 0.4090 +941 974 0.4120 +941 975 0.4880 +941 1043 0.4720 +941 1048 0.6380 +941 1211 0.8600 +941 1230 0.5660 +941 1232 0.5340 +941 1234 0.7870 +941 1235 0.6120 +941 1236 0.8940 +941 1237 0.4980 +941 1238 0.5370 +941 1380 0.6350 +941 1432 0.4870 +941 1435 0.8530 +941 1436 0.6580 +941 1437 0.8800 +941 1440 0.5220 +941 1485 0.5110 +941 1493 0.9990 +941 1520 0.4690 +941 1524 0.5960 +941 1636 0.4570 +941 1829 0.4020 +941 1956 0.4470 +941 2015 0.4030 +941 2022 0.5270 +941 2064 0.4780 +941 2086 0.6640 +941 2207 0.4210 +941 2208 0.5780 +941 2209 0.6100 +941 2212 0.7110 +941 2213 0.7340 +941 2322 0.4360 +941 2323 0.6020 +941 2335 0.4240 +941 2475 0.4280 +941 2526 0.4470 +941 2534 0.5980 +941 2597 0.5330 +941 2625 0.5120 +941 2829 0.5100 +941 2833 0.6440 +941 2885 0.5830 +941 2919 0.5340 +941 2920 0.4410 +941 2999 0.5710 +941 3001 0.5060 +941 3002 0.8170 +941 3082 0.4280 +941 3091 0.4510 +941 3105 0.7140 +941 3106 0.7720 +941 3107 0.5210 +941 3108 0.4430 +941 3115 0.5540 +941 3117 0.6380 +941 3119 0.4450 +941 3122 0.5730 +941 3123 0.5580 +941 3127 0.5680 +941 3133 0.5640 +941 3135 0.5880 +941 3146 0.5330 +941 3162 0.5810 +941 3308 0.5540 +941 3383 0.9980 +941 3385 0.5560 +941 3394 0.5400 +941 3439 0.7220 +941 3440 0.4410 +941 3454 0.4710 +941 3455 0.4020 +941 3456 0.6450 +941 3458 0.9430 +941 3459 0.4330 +941 3552 0.7780 +941 3553 0.8550 +941 3554 0.6540 +941 3558 0.9030 +941 3559 0.6460 +941 3560 0.5250 +941 3561 0.5240 +941 3562 0.4820 +941 3563 0.7470 +941 3565 0.8940 +941 3566 0.5510 +941 3567 0.7700 +941 3568 0.4750 +941 3569 0.8470 +941 3570 0.4380 +941 3574 0.6380 +941 3575 0.6470 +941 3576 0.6380 +941 3577 0.4250 +941 3578 0.4580 +941 3579 0.4720 +941 3586 0.9620 +941 3587 0.5380 +941 3593 0.4110 +941 3594 0.4810 +941 3595 0.4890 +941 3596 0.7070 +941 3600 0.7060 +941 3601 0.5520 +941 3605 0.8090 +941 3606 0.6060 +941 3620 0.8570 +941 3627 0.7240 +941 3630 0.5140 +941 3654 0.4510 +941 3659 0.4800 +941 3661 0.4980 +941 3662 0.5910 +941 3663 0.5000 +941 3665 0.5250 +941 3673 0.6210 +941 3676 0.6810 +941 3681 0.4840 +941 3682 0.7100 +941 3683 0.7690 +941 3684 0.8430 +941 3687 0.8970 +941 3688 0.5320 +941 3689 0.7350 +941 3690 0.5170 +941 3702 0.4180 +941 3716 0.5080 +941 3717 0.5060 +941 3718 0.4450 +941 3725 0.4120 +941 3812 0.4560 +941 3815 0.5050 +941 3820 0.4230 +941 3821 0.4630 +941 3824 0.4670 +941 3902 0.9900 +941 3903 0.4690 +941 3916 0.6780 +941 3920 0.4920 +941 3937 0.4830 +941 3958 0.4070 +941 3965 0.6340 +941 4000 0.4580 +941 4049 0.5080 +941 4064 0.4160 +941 4065 0.7240 +941 4067 0.6740 +941 4072 0.5890 +941 4102 0.4300 +941 4155 0.4110 +941 4179 0.6680 +941 4261 0.5340 +941 4277 0.4480 +941 4283 0.7890 +941 4301 0.5920 +941 4318 0.4970 +941 4340 0.5190 +941 4345 0.6770 +941 4360 0.7850 +941 4481 0.5710 +941 4599 0.4170 +941 4684 0.6430 +941 4790 0.7050 +941 4792 0.4730 +941 4804 0.5380 +941 4843 0.4570 +941 4907 0.6820 +941 5026 0.5540 +941 5058 0.4990 +941 5062 0.4990 +941 5063 0.4990 +941 5133 0.9980 +941 5154 0.4720 +941 5170 0.5110 +941 5175 0.5760 +941 5290 0.5320 +941 5295 0.4480 +941 5296 0.4110 +941 5329 0.4110 +941 5468 0.4040 +941 5515 0.4990 +941 5516 0.4990 +941 5518 0.4990 +941 5519 0.4990 +941 5525 0.5080 +941 5526 0.5080 +941 5527 0.5080 +941 5528 0.5080 +941 5529 0.5080 +941 5551 0.6990 +941 5588 0.4870 +941 5595 0.5760 +941 5604 0.4660 +941 5698 0.4160 +941 5743 0.4320 +941 5781 0.6990 +941 5788 0.8440 +941 5817 0.5060 +941 5819 0.4450 +941 5879 0.4770 +941 5891 0.4260 +941 5896 0.4790 +941 5966 0.4730 +941 5970 0.4100 +941 5971 0.5190 +941 6347 0.7000 +941 6348 0.7060 +941 6351 0.6620 +941 6354 0.4480 +941 6355 0.4830 +941 6356 0.4230 +941 6361 0.5870 +941 6362 0.5340 +941 6363 0.6710 +941 6364 0.5000 +941 6366 0.6250 +941 6367 0.6700 +941 6373 0.5640 +941 6374 0.4120 +941 6382 0.5540 +941 6387 0.5420 +941 6401 0.4230 +941 6402 0.7490 +941 6403 0.4360 +941 6404 0.4220 +941 6490 0.5720 +941 6504 0.7000 +941 6614 0.5110 +941 6688 0.4710 +941 6693 0.5710 +941 6714 0.6660 +941 6772 0.6370 +941 6773 0.4360 +941 6774 0.8090 +941 6775 0.4950 +941 6776 0.5540 +941 6777 0.5210 +941 6778 0.5420 +941 6850 0.5280 +941 6892 0.4640 +941 7037 0.4790 +941 7040 0.6110 +941 7056 0.5540 +941 7070 0.5830 +941 7094 0.5250 +941 7096 0.6150 +941 7097 0.7490 +941 7098 0.8120 +941 7099 0.8010 +941 7100 0.5870 +941 7124 0.9080 +941 7132 0.6780 +941 7133 0.4110 +941 7157 0.6570 +941 7173 0.4290 +941 7189 0.4690 +941 7292 0.7300 +941 7293 0.9940 +941 7297 0.4210 +941 7299 0.6030 +941 7409 0.6070 +941 7412 0.5620 +941 7525 0.5570 +941 7535 0.6960 +941 7837 0.4900 +941 7850 0.5720 +941 7852 0.7160 +941 8320 0.4020 +941 8349 0.4160 +941 8503 0.4090 +941 8600 0.4790 +941 8639 0.6230 +941 8651 0.4730 +941 8718 0.4050 +941 8740 0.6120 +941 8743 0.4200 +941 8744 0.8820 +941 8764 0.6350 +941 8766 0.4040 +941 8784 0.8760 +941 8797 0.5580 +941 8807 0.4010 +941 8829 0.4560 +941 8832 0.4270 +941 8995 0.6970 +941 9021 0.4450 +941 9034 0.6260 +941 9308 0.9140 +941 9332 0.7880 +941 9368 0.5440 +941 9402 0.6450 +941 9437 0.4660 +941 9966 0.4080 +941 10000 0.5500 +941 10219 0.6270 +941 10288 0.7350 +941 10461 0.4200 +941 10563 0.5210 +941 10663 0.4530 +941 10666 0.4940 +941 10673 0.6250 +941 10803 0.5590 +941 10859 0.4790 +941 10990 0.5090 +941 11006 0.7760 +941 11126 0.5950 +941 11148 0.5070 +941 11213 0.6270 +941 22914 0.7310 +941 23308 0.7760 +941 23495 0.4650 +941 23586 0.5290 +941 23643 0.4620 +941 26191 0.4160 +941 27074 0.5290 +941 27087 0.5680 +941 27242 0.5210 +941 29110 0.4150 +941 29126 0.9990 +941 29851 0.9970 +941 30009 0.8350 +941 30816 0.6640 +941 30835 0.7390 +941 50489 0.6010 +941 50615 0.4950 +941 50616 0.5310 +941 50943 0.9090 +941 51135 0.4040 +941 51284 0.7690 +941 51311 0.6750 +941 51561 0.4310 +941 51744 0.4590 +941 54106 0.7400 +941 54915 0.5290 +941 55509 0.6110 +941 56244 0.4130 +941 57379 0.4290 +941 57509 0.5820 +941 57823 0.4400 +941 64115 0.4790 +941 64127 0.4860 +941 64135 0.4870 +941 64581 0.5320 +941 65258 0.5710 +941 79679 0.6630 +941 80142 0.4070 +941 80380 0.9930 +941 80381 0.9870 +941 80736 0.9270 +941 81793 0.4210 +941 83417 0.4260 +941 84868 0.9720 +941 85480 0.5070 +941 90865 0.4830 +941 91937 0.4760 +941 112744 0.4050 +941 114548 0.4290 +941 114609 0.4040 +941 114836 0.5900 +941 115650 0.4530 +941 126259 0.7280 +941 131450 0.5610 +941 137902 0.4900 +941 140885 0.6430 +941 149041 0.4190 +941 149233 0.5170 +941 151888 0.7880 +941 168400 0.5420 +941 169355 0.8070 +941 170482 0.5830 +941 201633 0.9060 +941 259197 0.4580 +941 283420 0.4880 +941 284194 0.5840 +941 374383 0.6510 +941 405754 0.6640 +941 414062 0.4220 +941 654346 0.5920 +941 100133941 0.6160 +941 100526664 0.7170 +942 943 0.6230 +942 944 0.4970 +942 945 0.6330 +942 947 0.6590 +942 948 0.5880 +942 949 0.5610 +942 950 0.5700 +942 951 0.5550 +942 952 0.8620 +942 953 0.6480 +942 958 0.9880 +942 959 0.9980 +942 960 0.8090 +942 961 0.5480 +942 962 0.7770 +942 963 0.5930 +942 965 0.6700 +942 967 0.7370 +942 968 0.7900 +942 969 0.8390 +942 970 0.6710 +942 971 0.4580 +942 972 0.6370 +942 973 0.4660 +942 974 0.4370 +942 975 0.6900 +942 1043 0.5700 +942 1048 0.5030 +942 1088 0.4400 +942 1211 0.8150 +942 1230 0.6990 +942 1232 0.5860 +942 1234 0.7780 +942 1235 0.6030 +942 1236 0.8950 +942 1237 0.5970 +942 1238 0.5070 +942 1282 0.4290 +942 1289 0.4160 +942 1378 0.4120 +942 1380 0.6820 +942 1390 0.4150 +942 1432 0.4770 +942 1435 0.8570 +942 1436 0.7350 +942 1437 0.8500 +942 1439 0.4620 +942 1440 0.5110 +942 1485 0.4720 +942 1493 0.9990 +942 1520 0.5760 +942 1524 0.6770 +942 1535 0.5750 +942 1536 0.6680 +942 1803 0.5600 +942 1829 0.4960 +942 1880 0.4240 +942 1950 0.5500 +942 1956 0.4320 +942 1991 0.4530 +942 2015 0.4620 +942 2022 0.6170 +942 2064 0.5910 +942 2086 0.6670 +942 2205 0.4130 +942 2207 0.6040 +942 2208 0.6680 +942 2209 0.7450 +942 2212 0.7880 +942 2213 0.8300 +942 2268 0.4650 +942 2322 0.6540 +942 2323 0.6170 +942 2335 0.4410 +942 2350 0.4510 +942 2526 0.4870 +942 2534 0.6230 +942 2597 0.5930 +942 2625 0.5250 +942 2670 0.4340 +942 2829 0.5520 +942 2833 0.6410 +942 2885 0.6920 +942 2919 0.5280 +942 2920 0.4290 +942 2999 0.5730 +942 3001 0.4780 +942 3002 0.8190 +942 3055 0.6350 +942 3082 0.4030 +942 3091 0.4320 +942 3105 0.6040 +942 3106 0.4620 +942 3108 0.5210 +942 3109 0.4940 +942 3113 0.7120 +942 3117 0.5630 +942 3118 0.5140 +942 3119 0.6410 +942 3122 0.7140 +942 3123 0.7020 +942 3133 0.4760 +942 3135 0.5270 +942 3146 0.5480 +942 3308 0.6390 +942 3320 0.6000 +942 3326 0.6040 +942 3383 0.9850 +942 3384 0.4180 +942 3385 0.5330 +942 3394 0.7080 +942 3439 0.7200 +942 3440 0.4340 +942 3454 0.5040 +942 3455 0.4360 +942 3456 0.6470 +942 3458 0.9430 +942 3459 0.5430 +942 3460 0.4340 +942 3552 0.8250 +942 3553 0.8630 +942 3554 0.7500 +942 3557 0.4220 +942 3558 0.8790 +942 3559 0.5990 +942 3560 0.5060 +942 3561 0.4870 +942 3562 0.4800 +942 3563 0.6890 +942 3565 0.9170 +942 3566 0.6480 +942 3567 0.7730 +942 3568 0.4820 +942 3569 0.8620 +942 3570 0.5380 +942 3574 0.6110 +942 3575 0.6510 +942 3576 0.6990 +942 3577 0.4500 +942 3578 0.4470 +942 3579 0.4740 +942 3586 0.9660 +942 3587 0.6900 +942 3594 0.4580 +942 3596 0.7220 +942 3600 0.6740 +942 3601 0.4130 +942 3605 0.7520 +942 3606 0.6800 +942 3620 0.7860 +942 3627 0.7480 +942 3630 0.4550 +942 3654 0.4220 +942 3659 0.5140 +942 3661 0.5350 +942 3662 0.6170 +942 3663 0.5830 +942 3665 0.5420 +942 3669 0.5040 +942 3673 0.6110 +942 3676 0.5160 +942 3681 0.4780 +942 3682 0.7220 +942 3683 0.7750 +942 3684 0.9130 +942 3687 0.9120 +942 3688 0.4980 +942 3689 0.8070 +942 3690 0.5240 +942 3716 0.4640 +942 3717 0.4720 +942 3718 0.4200 +942 3725 0.4190 +942 3815 0.4890 +942 3820 0.4960 +942 3821 0.6560 +942 3824 0.6120 +942 3902 0.9790 +942 3903 0.4900 +942 3916 0.7240 +942 3918 0.4650 +942 3920 0.6410 +942 3937 0.5440 +942 3958 0.4400 +942 3965 0.7660 +942 4000 0.5040 +942 4049 0.4640 +942 4055 0.4230 +942 4064 0.4660 +942 4065 0.7480 +942 4067 0.6950 +942 4069 0.4290 +942 4072 0.6410 +942 4155 0.4200 +942 4179 0.6990 +942 4210 0.5690 +942 4261 0.5590 +942 4283 0.6780 +942 4301 0.6130 +942 4312 0.4720 +942 4318 0.5550 +942 4332 0.6600 +942 4340 0.5320 +942 4345 0.4860 +942 4353 0.4590 +942 4360 0.8710 +942 4481 0.6560 +942 4599 0.4410 +942 4609 0.4240 +942 4684 0.6270 +942 4688 0.4270 +942 4689 0.4200 +942 4790 0.7170 +942 4792 0.5230 +942 4843 0.5330 +942 4907 0.6090 +942 5058 0.5070 +942 5062 0.4990 +942 5063 0.4990 +942 5133 0.9960 +942 5154 0.4330 +942 5170 0.5140 +942 5175 0.6150 +942 5290 0.4940 +942 5295 0.4670 +942 5296 0.4190 +942 5341 0.5280 +942 5468 0.4510 +942 5515 0.6860 +942 5516 0.5070 +942 5518 0.5230 +942 5519 0.4990 +942 5525 0.5140 +942 5526 0.5070 +942 5527 0.4990 +942 5528 0.5080 +942 5529 0.4990 +942 5551 0.6870 +942 5595 0.5780 +942 5599 0.4550 +942 5606 0.4050 +942 5734 0.4840 +942 5743 0.4850 +942 5781 0.6720 +942 5788 0.8790 +942 5817 0.4770 +942 5819 0.4180 +942 5879 0.4690 +942 5896 0.5450 +942 5966 0.4180 +942 5970 0.4110 +942 5971 0.4860 +942 6039 0.5090 +942 6347 0.7370 +942 6348 0.7480 +942 6351 0.7270 +942 6354 0.4450 +942 6355 0.4680 +942 6356 0.4820 +942 6361 0.6270 +942 6362 0.5520 +942 6363 0.6570 +942 6364 0.5310 +942 6366 0.6320 +942 6367 0.6400 +942 6369 0.4400 +942 6373 0.5390 +942 6374 0.4980 +942 6375 0.4310 +942 6376 0.4650 +942 6382 0.5950 +942 6387 0.5510 +942 6401 0.4290 +942 6402 0.7700 +942 6403 0.4700 +942 6404 0.4280 +942 6490 0.5400 +942 6504 0.6700 +942 6614 0.6470 +942 6688 0.6550 +942 6693 0.6030 +942 6714 0.6330 +942 6772 0.6450 +942 6773 0.4370 +942 6774 0.8060 +942 6775 0.4680 +942 6776 0.5410 +942 6777 0.4910 +942 6778 0.5860 +942 6850 0.5570 +942 7037 0.6460 +942 7038 0.4130 +942 7040 0.6550 +942 7056 0.5950 +942 7070 0.5830 +942 7096 0.7200 +942 7097 0.8050 +942 7098 0.6960 +942 7099 0.8410 +942 7100 0.5840 +942 7124 0.9220 +942 7132 0.5070 +942 7133 0.4590 +942 7157 0.5950 +942 7173 0.4520 +942 7189 0.5730 +942 7292 0.7220 +942 7293 0.9900 +942 7305 0.6540 +942 7328 0.4240 +942 7409 0.6460 +942 7412 0.5790 +942 7525 0.5240 +942 7535 0.6580 +942 7837 0.5590 +942 7850 0.5590 +942 7852 0.8010 +942 8320 0.4510 +942 8600 0.4400 +942 8639 0.6660 +942 8651 0.4650 +942 8743 0.4600 +942 8744 0.7810 +942 8764 0.6580 +942 8784 0.8610 +942 8829 0.5050 +942 8832 0.5800 +942 8995 0.6790 +942 9021 0.4850 +942 9034 0.6300 +942 9308 0.9260 +942 9332 0.8320 +942 9368 0.4740 +942 9370 0.4720 +942 9402 0.6400 +942 9437 0.4940 +942 9450 0.8210 +942 9636 0.4200 +942 9976 0.5150 +942 10000 0.5310 +942 10219 0.4760 +942 10288 0.8730 +942 10320 0.4590 +942 10437 0.4790 +942 10461 0.4360 +942 10462 0.6060 +942 10538 0.4530 +942 10563 0.5300 +942 10631 0.4160 +942 10663 0.4970 +942 10666 0.4820 +942 10673 0.6700 +942 10803 0.5620 +942 10859 0.5800 +942 10871 0.5290 +942 10875 0.4130 +942 10894 0.4080 +942 11006 0.8070 +942 11126 0.4500 +942 11148 0.4870 +942 11314 0.4690 +942 11326 0.5650 +942 22914 0.7950 +942 22918 0.4520 +942 23118 0.4510 +942 23308 0.5960 +942 23495 0.4700 +942 23547 0.4560 +942 23586 0.5260 +942 23643 0.5140 +942 26191 0.4070 +942 26253 0.4220 +942 27036 0.4330 +942 27074 0.5780 +942 27087 0.5820 +942 29126 0.9720 +942 29851 0.9960 +942 30009 0.6780 +942 30816 0.6830 +942 30817 0.5090 +942 30835 0.7550 +942 50489 0.7460 +942 50615 0.6620 +942 50616 0.5170 +942 50856 0.5780 +942 50943 0.9030 +942 51257 0.4250 +942 51284 0.8160 +942 51311 0.8300 +942 51338 0.5890 +942 51561 0.4440 +942 51744 0.5240 +942 54106 0.7470 +942 54205 0.4630 +942 54209 0.4930 +942 54210 0.6440 +942 55016 0.8380 +942 55509 0.5790 +942 56244 0.5290 +942 57379 0.4740 +942 57506 0.4450 +942 57509 0.5140 +942 57705 0.4910 +942 57823 0.4260 +942 58191 0.6490 +942 59067 0.4190 +942 64115 0.4620 +942 64127 0.5650 +942 64135 0.4790 +942 64581 0.6470 +942 65258 0.5810 +942 79679 0.7450 +942 79930 0.4960 +942 80142 0.4180 +942 80380 0.9720 +942 80381 0.9880 +942 80736 0.8260 +942 81793 0.4550 +942 84666 0.4270 +942 84824 0.4100 +942 84868 0.9710 +942 85480 0.5220 +942 90865 0.5920 +942 91937 0.4410 +942 93978 0.4550 +942 112744 0.4300 +942 114548 0.6110 +942 115004 0.4040 +942 115650 0.5620 +942 126259 0.5700 +942 131450 0.5990 +942 137902 0.5590 +942 140885 0.6140 +942 146722 0.4030 +942 149041 0.4250 +942 149233 0.5250 +942 151888 0.7720 +942 160364 0.4350 +942 168400 0.5410 +942 169355 0.7030 +942 170482 0.6300 +942 201633 0.7740 +942 203068 0.4330 +942 220972 0.8040 +942 259197 0.4850 +942 283420 0.5600 +942 284194 0.5780 +942 374383 0.4030 +942 405754 0.6670 +942 414062 0.4500 +942 654346 0.5830 +942 100133941 0.5970 +942 100526664 0.7830 +942 102723407 0.4200 +943 944 0.9990 +943 945 0.8310 +943 947 0.6210 +943 951 0.4140 +943 952 0.6470 +943 958 0.9520 +943 959 0.8470 +943 968 0.6970 +943 969 0.4170 +943 970 0.8810 +943 972 0.4280 +943 973 0.8180 +943 974 0.5380 +943 1043 0.6260 +943 1048 0.5660 +943 1237 0.5460 +943 1378 0.5230 +943 1380 0.7250 +943 1435 0.5370 +943 1437 0.4040 +943 1440 0.4230 +943 1493 0.5550 +943 1540 0.4700 +943 1791 0.5990 +943 1803 0.4180 +943 1956 0.4310 +943 1991 0.4130 +943 2064 0.7250 +943 2066 0.4430 +943 2086 0.4810 +943 2206 0.4480 +943 2207 0.6020 +943 2209 0.5120 +943 2217 0.6510 +943 2322 0.5120 +943 2346 0.4450 +943 2526 0.8720 +943 2719 0.4850 +943 2838 0.4830 +943 3002 0.6580 +943 3455 0.4180 +943 3458 0.5090 +943 3459 0.4050 +943 3557 0.4500 +943 3558 0.5710 +943 3559 0.6800 +943 3563 0.5340 +943 3565 0.4920 +943 3567 0.4420 +943 3569 0.4470 +943 3575 0.4710 +943 3576 0.5730 +943 3586 0.4800 +943 3596 0.4330 +943 3600 0.4360 +943 3606 0.5720 +943 3662 0.6230 +943 3815 0.6410 +943 3855 0.5470 +943 3902 0.4830 +943 4055 0.5260 +943 4267 0.6210 +943 4311 0.7930 +943 4353 0.5810 +943 4609 0.5510 +943 4684 0.7710 +943 4790 0.5860 +943 4851 0.7260 +943 4869 0.6170 +943 5079 0.7950 +943 5133 0.5390 +943 5175 0.4430 +943 5450 0.5990 +943 5551 0.5840 +943 5788 0.7360 +943 5971 0.7450 +943 6348 0.4960 +943 6351 0.6250 +943 6361 0.4930 +943 6382 0.6990 +943 6624 0.4020 +943 6693 0.7290 +943 6774 0.4240 +943 6855 0.4770 +943 7040 0.5230 +943 7072 0.7670 +943 7124 0.8580 +943 7132 0.7030 +943 7133 0.7580 +943 7157 0.4790 +943 7185 0.9220 +943 7186 0.8680 +943 7187 0.9550 +943 7188 0.9690 +943 7292 0.8970 +943 7293 0.9410 +943 7345 0.4700 +943 7852 0.5480 +943 8717 0.5910 +943 8718 0.6260 +943 8740 0.5040 +943 8742 0.4890 +943 8744 0.8150 +943 8764 0.8560 +943 8771 0.4190 +943 8784 0.8210 +943 8995 0.5060 +943 9260 0.5810 +943 9332 0.6270 +943 9966 0.5990 +943 10010 0.5780 +943 10232 0.4200 +943 10293 0.6790 +943 10563 0.4800 +943 10572 0.4970 +943 10673 0.6420 +943 10850 0.4470 +943 23308 0.4120 +943 23495 0.4330 +943 23532 0.4520 +943 23550 0.4270 +943 23765 0.5570 +943 27087 0.6100 +943 29126 0.5850 +943 29851 0.5180 +943 30816 0.4830 +943 50943 0.4370 +943 51126 0.4200 +943 51567 0.5760 +943 53833 0.4700 +943 54474 0.5450 +943 56154 0.4210 +943 56940 0.5760 +943 57167 0.5960 +943 60672 0.6040 +943 64115 0.4460 +943 80321 0.4540 +943 80380 0.4740 +943 80381 0.5000 +943 84433 0.5780 +943 84868 0.4170 +943 115650 0.6590 +943 126259 0.4030 +943 151888 0.6270 +943 201633 0.4070 +943 259197 0.5920 +943 346689 0.5480 +943 374569 0.4460 +943 400566 0.4800 +943 405754 0.4810 +943 102723407 0.6420 +944 958 0.8510 +944 959 0.7510 +944 961 0.4130 +944 970 0.6200 +944 1234 0.4170 +944 1236 0.4280 +944 1493 0.4290 +944 3381 0.4690 +944 3454 0.4120 +944 3455 0.4500 +944 3458 0.4910 +944 3553 0.4200 +944 3565 0.5760 +944 3575 0.4490 +944 3576 0.7200 +944 3600 0.4990 +944 3606 0.4500 +944 3683 0.4250 +944 4049 0.6080 +944 4050 0.4940 +944 4254 0.4950 +944 4283 0.4550 +944 4790 0.5550 +944 5133 0.5060 +944 5788 0.4220 +944 5971 0.5460 +944 6348 0.6490 +944 6351 0.6490 +944 6362 0.4970 +944 6402 0.4330 +944 7124 0.7460 +944 7132 0.6710 +944 7133 0.5000 +944 7188 0.6110 +944 7292 0.8420 +944 7293 0.9320 +944 8600 0.4260 +944 8718 0.4240 +944 8740 0.5080 +944 8741 0.4340 +944 8742 0.6270 +944 8743 0.4390 +944 8744 0.6760 +944 8764 0.7020 +944 8771 0.7130 +944 8784 0.4400 +944 8995 0.5140 +944 9034 0.4130 +944 9169 0.4220 +944 9173 0.4440 +944 9966 0.8780 +944 10544 0.4950 +944 10673 0.5140 +944 23495 0.5720 +944 23765 0.4520 +944 29851 0.6210 +944 50616 0.4590 +944 80781 0.4240 +944 121227 0.4780 +944 151888 0.4290 +945 947 0.9510 +945 948 0.7320 +945 949 0.7020 +945 950 0.7070 +945 951 0.5840 +945 952 0.8230 +945 953 0.4130 +945 958 0.5160 +945 959 0.4440 +945 960 0.5300 +945 961 0.6790 +945 962 0.4250 +945 965 0.6020 +945 968 0.7140 +945 969 0.4830 +945 970 0.6370 +945 972 0.4260 +945 973 0.6100 +945 974 0.4550 +945 1043 0.6190 +945 1050 0.4640 +945 1088 0.7120 +945 1191 0.7900 +945 1230 0.4390 +945 1234 0.4640 +945 1236 0.5410 +945 1378 0.6450 +945 1399 0.6010 +945 1435 0.4730 +945 1436 0.6150 +945 1437 0.6430 +945 1440 0.6280 +945 1441 0.5040 +945 1493 0.5840 +945 1524 0.5610 +945 1536 0.4160 +945 1788 0.4160 +945 1791 0.6610 +945 1956 0.4180 +945 2022 0.4150 +945 2041 0.6600 +945 2064 0.5070 +945 2120 0.4370 +945 2185 0.4370 +945 2205 0.4730 +945 2207 0.4140 +945 2209 0.7470 +945 2212 0.5720 +945 2213 0.5240 +945 2217 0.4070 +945 2322 0.7300 +945 2323 0.5610 +945 2346 0.4750 +945 2350 0.4820 +945 2526 0.8800 +945 2993 0.6690 +945 3002 0.5130 +945 3105 0.4810 +945 3122 0.4470 +945 3123 0.4570 +945 3127 0.5600 +945 3133 0.4160 +945 3383 0.4700 +945 3394 0.4440 +945 3417 0.5010 +945 3418 0.5130 +945 3458 0.6100 +945 3553 0.5410 +945 3558 0.7370 +945 3561 0.4150 +945 3562 0.5960 +945 3563 0.8190 +945 3565 0.4830 +945 3566 0.5050 +945 3569 0.6060 +945 3574 0.4350 +945 3575 0.6550 +945 3576 0.4390 +945 3579 0.4970 +945 3586 0.5950 +945 3594 0.4970 +945 3600 0.8070 +945 3620 0.5080 +945 3635 0.5780 +945 3674 0.6160 +945 3676 0.4340 +945 3682 0.4040 +945 3683 0.5150 +945 3684 0.8500 +945 3687 0.7110 +945 3689 0.4690 +945 3690 0.5510 +945 3700 0.5310 +945 3717 0.4540 +945 3815 0.8980 +945 3821 0.5730 +945 3824 0.4150 +945 3902 0.4830 +945 3903 0.6480 +945 3952 0.7520 +945 4049 0.4790 +945 4068 0.5680 +945 4072 0.4330 +945 4137 0.4830 +945 4208 0.4270 +945 4254 0.5700 +945 4267 0.4950 +945 4277 0.7560 +945 4297 0.4620 +945 4300 0.4320 +945 4311 0.7780 +945 4345 0.6300 +945 4353 0.7510 +945 4360 0.4940 +945 4481 0.4240 +945 4629 0.4230 +945 4680 0.4020 +945 4684 0.8650 +945 4869 0.5970 +945 4907 0.4900 +945 5079 0.4220 +945 5125 0.4010 +945 5133 0.4600 +945 5175 0.5110 +945 5329 0.4300 +945 5335 0.6250 +945 5551 0.4690 +945 5663 0.5350 +945 5664 0.5670 +945 5688 0.5070 +945 5724 0.4720 +945 5777 0.7920 +945 5781 0.8630 +945 5788 0.8190 +945 5819 0.5850 +945 5914 0.5930 +945 6280 0.4560 +945 6347 0.4660 +945 6348 0.4270 +945 6382 0.5060 +945 6387 0.4260 +945 6401 0.6490 +945 6402 0.6940 +945 6464 0.4040 +945 6504 0.7950 +945 6614 0.5960 +945 6653 0.8090 +945 6688 0.5380 +945 6693 0.6180 +945 6714 0.4490 +945 6774 0.4710 +945 6776 0.4210 +945 6777 0.4070 +945 6850 0.6540 +945 7037 0.5980 +945 7040 0.5800 +945 7056 0.4580 +945 7066 0.4450 +945 7070 0.5790 +945 7097 0.4490 +945 7099 0.6750 +945 7100 0.4050 +945 7124 0.5680 +945 7157 0.4420 +945 7293 0.4160 +945 7305 0.8970 +945 7490 0.4790 +945 7535 0.4040 +945 7852 0.5410 +945 8301 0.7560 +945 8842 0.5110 +945 9021 0.6420 +945 9034 0.4790 +945 9173 0.4320 +945 9308 0.4970 +945 9332 0.6850 +945 9437 0.4580 +945 9450 0.4270 +945 10004 0.4420 +945 10024 0.4210 +945 10225 0.4520 +945 10232 0.4490 +945 10288 0.5950 +945 10320 0.4120 +945 10347 0.7670 +945 10584 0.7530 +945 10630 0.4290 +945 10658 0.4450 +945 10673 0.5070 +945 10859 0.5520 +945 10870 0.4050 +945 10871 0.4920 +945 10979 0.5130 +945 11006 0.4230 +945 11024 0.4400 +945 11025 0.4770 +945 11027 0.5140 +945 22914 0.5680 +945 22918 0.4030 +945 23409 0.4290 +945 23412 0.4330 +945 23532 0.4280 +945 23601 0.4260 +945 23607 0.7120 +945 23646 0.4260 +945 27087 0.4830 +945 27180 0.5200 +945 29126 0.6340 +945 30817 0.6120 +945 30835 0.4300 +945 43847 0.5580 +945 50943 0.5730 +945 51225 0.5170 +945 51284 0.4260 +945 51314 0.5760 +945 51338 0.6780 +945 51547 0.5490 +945 51744 0.5310 +945 54209 0.9540 +945 54210 0.6390 +945 54790 0.4470 +945 55063 0.5750 +945 57091 0.5910 +945 64231 0.7660 +945 64805 0.4180 +945 79168 0.4390 +945 79890 0.5140 +945 80321 0.7510 +945 80328 0.5710 +945 80380 0.4190 +945 80381 0.4460 +945 83661 0.5680 +945 84868 0.7380 +945 114836 0.4200 +945 123041 0.5000 +945 140885 0.6730 +945 146722 0.5520 +945 160364 0.8130 +945 170482 0.5090 +945 171023 0.4890 +945 199675 0.4140 +945 201266 0.4440 +945 245802 0.6070 +945 259197 0.4210 +945 284021 0.4240 +945 338773 0.4190 +945 342510 0.5280 +945 374569 0.4200 +945 390243 0.4200 +945 643680 0.8180 +945 100133941 0.4520 +945 102723407 0.4470 +946 2205 0.4520 +946 3563 0.4910 +946 3687 0.4290 +946 3952 0.9580 +946 6480 0.4910 +946 6504 0.6030 +946 6614 0.4040 +946 7056 0.4800 +946 10462 0.4130 +946 54106 0.4290 +946 60676 0.4870 +946 65258 0.4800 +946 83416 0.4390 +946 83417 0.5610 +946 90865 0.4240 +946 158835 0.4200 +946 170482 0.4800 +946 283420 0.4950 +946 284266 0.5860 +947 948 0.7390 +947 949 0.7140 +947 950 0.7200 +947 952 0.9640 +947 953 0.4230 +947 958 0.6010 +947 959 0.4810 +947 960 0.9120 +947 961 0.5280 +947 962 0.6950 +947 965 0.6780 +947 966 0.6240 +947 967 0.6120 +947 968 0.8010 +947 969 0.4800 +947 972 0.4280 +947 973 0.7690 +947 975 0.6300 +947 999 0.5600 +947 1000 0.4600 +947 1003 0.8800 +947 1013 0.4500 +947 1019 0.4620 +947 1026 0.6380 +947 1029 0.5400 +947 1043 0.4560 +947 1048 0.5560 +947 1050 0.6160 +947 1088 0.5460 +947 1113 0.5070 +947 1215 0.4620 +947 1230 0.4350 +947 1232 0.4960 +947 1234 0.6390 +947 1236 0.6250 +947 1277 0.6900 +947 1280 0.4030 +947 1285 0.4550 +947 1378 0.5140 +947 1380 0.5900 +947 1399 0.7280 +947 1401 0.5060 +947 1435 0.5740 +947 1436 0.7460 +947 1437 0.7720 +947 1440 0.9400 +947 1441 0.5680 +947 1482 0.4430 +947 1490 0.4160 +947 1493 0.4470 +947 1499 0.6550 +947 1524 0.4330 +947 1604 0.5680 +947 1634 0.4150 +947 1636 0.4220 +947 1788 0.5580 +947 1791 0.7260 +947 1803 0.5110 +947 1906 0.4220 +947 1950 0.6320 +947 1956 0.5230 +947 1991 0.4010 +947 2022 0.9190 +947 2026 0.6430 +947 2034 0.4360 +947 2056 0.7300 +947 2057 0.5120 +947 2064 0.5040 +947 2078 0.4260 +947 2086 0.4840 +947 2099 0.5120 +947 2120 0.5530 +947 2122 0.6100 +947 2125 0.5070 +947 2130 0.4470 +947 2146 0.4910 +947 2152 0.4160 +947 2157 0.4990 +947 2167 0.4710 +947 2184 0.5060 +947 2209 0.7580 +947 2212 0.5690 +947 2213 0.5810 +947 2246 0.4770 +947 2247 0.7600 +947 2248 0.5740 +947 2249 0.6130 +947 2250 0.5880 +947 2251 0.5770 +947 2252 0.6400 +947 2253 0.5630 +947 2254 0.5690 +947 2255 0.5930 +947 2258 0.5500 +947 2277 0.4150 +947 2319 0.4040 +947 2321 0.7540 +947 2322 0.8800 +947 2323 0.8100 +947 2324 0.6520 +947 2335 0.9600 +947 2353 0.4050 +947 2475 0.4200 +947 2526 0.8610 +947 2532 0.4080 +947 2597 0.6920 +947 2623 0.7800 +947 2624 0.7570 +947 2625 0.4710 +947 2626 0.4930 +947 2670 0.7470 +947 2672 0.4310 +947 2697 0.4100 +947 2719 0.4560 +947 2734 0.4120 +947 2735 0.4340 +947 2811 0.5810 +947 2815 0.4270 +947 2833 0.4090 +947 2875 0.4180 +947 2919 0.4180 +947 2932 0.4010 +947 2993 0.7930 +947 3002 0.4910 +947 3021 0.4500 +947 3043 0.5060 +947 3046 0.4440 +947 3082 0.6420 +947 3091 0.6410 +947 3105 0.6180 +947 3106 0.4200 +947 3107 0.4190 +947 3135 0.4230 +947 3164 0.4290 +947 3202 0.5800 +947 3205 0.6060 +947 3214 0.5810 +947 3383 0.8440 +947 3384 0.4360 +947 3394 0.4240 +947 3417 0.5410 +947 3418 0.4740 +947 3425 0.4680 +947 3439 0.5540 +947 3440 0.4350 +947 3441 0.4140 +947 3442 0.4170 +947 3443 0.4170 +947 3444 0.4170 +947 3445 0.4170 +947 3446 0.4170 +947 3447 0.4170 +947 3448 0.4170 +947 3449 0.4180 +947 3451 0.4170 +947 3452 0.4170 +947 3458 0.6950 +947 3479 0.6310 +947 3480 0.4080 +947 3481 0.4040 +947 3550 0.4200 +947 3552 0.5850 +947 3553 0.6720 +947 3558 0.6300 +947 3559 0.4200 +947 3561 0.6140 +947 3562 0.9040 +947 3563 0.7850 +947 3565 0.6150 +947 3567 0.5070 +947 3568 0.4730 +947 3569 0.8300 +947 3574 0.6390 +947 3575 0.6800 +947 3576 0.5910 +947 3579 0.4470 +947 3586 0.7180 +947 3589 0.5140 +947 3596 0.4810 +947 3600 0.6080 +947 3605 0.5140 +947 3606 0.4180 +947 3620 0.5660 +947 3627 0.4560 +947 3630 0.6920 +947 3655 0.6590 +947 3670 0.4520 +947 3672 0.4700 +947 3673 0.4950 +947 3674 0.8590 +947 3676 0.6290 +947 3678 0.7310 +947 3679 0.4580 +947 3682 0.4460 +947 3683 0.7190 +947 3684 0.8720 +947 3685 0.5280 +947 3687 0.7180 +947 3688 0.8870 +947 3689 0.5430 +947 3690 0.6630 +947 3717 0.6250 +947 3725 0.4430 +947 3791 0.9060 +947 3815 0.9560 +947 3820 0.4330 +947 3821 0.4460 +947 3824 0.5110 +947 3845 0.4470 +947 3852 0.5830 +947 3855 0.6940 +947 3856 0.5130 +947 3861 0.6060 +947 3866 0.5740 +947 3875 0.5070 +947 3880 0.6210 +947 3897 0.4760 +947 3952 0.4210 +947 3976 0.4430 +947 4005 0.6230 +947 4066 0.4040 +947 4072 0.5990 +947 4087 0.4260 +947 4089 0.5730 +947 4145 0.7670 +947 4162 0.7890 +947 4170 0.4800 +947 4193 0.5140 +947 4208 0.4220 +947 4211 0.5110 +947 4233 0.4740 +947 4254 0.9340 +947 4267 0.8520 +947 4277 0.7470 +947 4283 0.4290 +947 4288 0.4310 +947 4297 0.4640 +947 4299 0.4480 +947 4300 0.6030 +947 4301 0.7850 +947 4311 0.8410 +947 4313 0.6820 +947 4318 0.7100 +947 4345 0.5490 +947 4352 0.7910 +947 4353 0.7350 +947 4356 0.4520 +947 4360 0.4690 +947 4599 0.4320 +947 4602 0.4440 +947 4609 0.6360 +947 4617 0.5250 +947 4629 0.5720 +947 4654 0.6110 +947 4656 0.6240 +947 4665 0.5710 +947 4684 0.8210 +947 4707 0.4930 +947 4763 0.4460 +947 4772 0.4830 +947 4790 0.4540 +947 4803 0.4670 +947 4804 0.6460 +947 4846 0.4890 +947 4851 0.6130 +947 4856 0.4400 +947 4869 0.7460 +947 4893 0.4760 +947 4907 0.9050 +947 4914 0.6270 +947 4928 0.4360 +947 4929 0.4070 +947 5077 0.4710 +947 5079 0.6120 +947 5081 0.5970 +947 5087 0.4280 +947 5125 0.4840 +947 5155 0.4550 +947 5156 0.7440 +947 5159 0.7290 +947 5175 0.9400 +947 5196 0.4400 +947 5228 0.4280 +947 5241 0.5130 +947 5243 0.4200 +947 5277 0.5290 +947 5328 0.4220 +947 5420 0.8050 +947 5460 0.7230 +947 5468 0.5660 +947 5551 0.4770 +947 5553 0.4260 +947 5594 0.5300 +947 5595 0.5480 +947 5688 0.7990 +947 5728 0.4950 +947 5743 0.6350 +947 5781 0.4190 +947 5788 0.9190 +947 5896 0.5030 +947 5914 0.5940 +947 6010 0.4210 +947 6208 0.4140 +947 6275 0.4170 +947 6347 0.6140 +947 6348 0.6320 +947 6351 0.4410 +947 6363 0.4270 +947 6366 0.4380 +947 6382 0.5840 +947 6387 0.8560 +947 6401 0.9530 +947 6402 0.9990 +947 6403 0.8320 +947 6404 0.7840 +947 6427 0.4330 +947 6469 0.4710 +947 6504 0.7590 +947 6513 0.4400 +947 6598 0.5070 +947 6657 0.6650 +947 6662 0.5860 +947 6663 0.5870 +947 6678 0.4950 +947 6687 0.7200 +947 6688 0.6070 +947 6693 0.8110 +947 6696 0.6070 +947 6714 0.5170 +947 6757 0.4180 +947 6772 0.4430 +947 6774 0.6140 +947 6776 0.6080 +947 6777 0.5930 +947 6778 0.6040 +947 6855 0.6620 +947 6863 0.4590 +947 6876 0.4380 +947 6886 0.5920 +947 6900 0.4070 +947 6925 0.4290 +947 6929 0.4360 +947 7010 0.7280 +947 7015 0.5010 +947 7037 0.7280 +947 7040 0.7870 +947 7043 0.5500 +947 7056 0.5180 +947 7057 0.4500 +947 7066 0.9040 +947 7070 0.9150 +947 7075 0.6330 +947 7076 0.5390 +947 7077 0.5580 +947 7078 0.4580 +947 7082 0.5450 +947 7088 0.4760 +947 7097 0.4470 +947 7099 0.5190 +947 7122 0.5090 +947 7124 0.7120 +947 7130 0.4950 +947 7157 0.7000 +947 7251 0.4230 +947 7412 0.8960 +947 7416 0.7340 +947 7417 0.5400 +947 7419 0.5400 +947 7424 0.5280 +947 7431 0.4730 +947 7448 0.4100 +947 7450 0.8490 +947 7472 0.4870 +947 7490 0.6600 +947 7525 0.4190 +947 7837 0.6970 +947 7849 0.4590 +947 7852 0.8150 +947 8013 0.4850 +947 8174 0.6080 +947 8290 0.4380 +947 8328 0.4010 +947 8356 0.4500 +947 8549 0.5290 +947 8600 0.4200 +947 8639 0.5030 +947 8763 0.6350 +947 8817 0.5960 +947 8822 0.5750 +947 8823 0.5610 +947 8829 0.4210 +947 8842 0.9280 +947 8878 0.4520 +947 9034 0.4200 +947 9159 0.4990 +947 9241 0.7020 +947 9308 0.6110 +947 9314 0.6300 +947 9332 0.6400 +947 9370 0.4750 +947 9429 0.5530 +947 9436 0.4760 +947 9437 0.4760 +947 9452 0.6050 +947 9521 0.4380 +947 9524 0.4510 +947 9526 0.4290 +947 9533 0.4700 +947 9552 0.4950 +947 9553 0.5490 +947 9556 0.4930 +947 9988 0.4060 +947 10004 0.4390 +947 10105 0.7380 +947 10215 0.4280 +947 10261 0.4120 +947 10320 0.4740 +947 10452 0.5400 +947 10544 0.4680 +947 10584 0.4310 +947 10630 0.6240 +947 10661 0.5320 +947 10763 0.7030 +947 10885 0.5490 +947 10894 0.7160 +947 11251 0.4180 +947 22914 0.4800 +947 22918 0.6430 +947 22943 0.4010 +947 23705 0.6080 +947 25925 0.4970 +947 26281 0.5580 +947 27006 0.5780 +947 27087 0.5430 +947 27255 0.4080 +947 28514 0.4290 +947 29087 0.5620 +947 29089 0.4540 +947 29126 0.5830 +947 30816 0.4890 +947 50489 0.4760 +947 50512 0.4470 +947 50943 0.5850 +947 51119 0.4220 +947 51176 0.4060 +947 51246 0.4950 +947 51248 0.7200 +947 51491 0.4260 +947 51693 0.5490 +947 51705 0.7570 +947 53335 0.5250 +947 54360 0.5660 +947 54474 0.5830 +947 54567 0.5320 +947 54790 0.7100 +947 54829 0.4860 +947 54997 0.4140 +947 55107 0.7880 +947 57167 0.4350 +947 58515 0.5490 +947 59352 0.4150 +947 64321 0.4740 +947 64866 0.4800 +947 79727 0.4520 +947 79870 0.7280 +947 79923 0.6950 +947 80312 0.4800 +947 80318 0.4220 +947 80380 0.4320 +947 83447 0.7200 +947 84134 0.5400 +947 84267 0.5490 +947 84792 0.4950 +947 84868 0.4220 +947 85480 0.5800 +947 89780 0.4010 +947 90865 0.6630 +947 90952 0.6690 +947 117159 0.5430 +947 121340 0.4470 +947 135228 0.5980 +947 137902 0.6930 +947 140885 0.4600 +947 144100 0.7220 +947 146713 0.4310 +947 146894 0.5710 +947 158158 0.5000 +947 160364 0.5080 +947 161198 0.4450 +947 161882 0.5600 +947 169355 0.4900 +947 170482 0.5060 +947 171023 0.5710 +947 200424 0.4440 +947 259197 0.4100 +947 340348 0.7290 +947 374569 0.4310 +947 400566 0.5820 +947 405754 0.4870 +947 414328 0.4960 +947 440093 0.4350 +947 440686 0.4530 +947 653604 0.4530 +947 728378 0.4150 +947 100133941 0.6870 +947 100532731 0.5190 +947 102723407 0.5520 +948 952 0.5170 +948 953 0.4160 +948 958 0.7070 +948 959 0.6310 +948 960 0.7140 +948 961 0.9940 +948 966 0.5000 +948 967 0.4560 +948 968 0.7970 +948 975 0.8890 +948 977 0.5530 +948 1003 0.5870 +948 1024 0.4990 +948 1050 0.6450 +948 1051 0.4860 +948 1071 0.4130 +948 1088 0.6750 +948 1149 0.5090 +948 1234 0.4700 +948 1236 0.4060 +948 1277 0.7200 +948 1278 0.7350 +948 1295 0.4180 +948 1311 0.9530 +948 1312 0.4210 +948 1374 0.8110 +948 1375 0.6920 +948 1376 0.6250 +948 1387 0.5670 +948 1401 0.4740 +948 1431 0.4320 +948 1435 0.4830 +948 1436 0.5830 +948 1437 0.4830 +948 1520 0.4370 +948 1524 0.5240 +948 1536 0.5520 +948 1581 0.5190 +948 1593 0.4480 +948 1636 0.4080 +948 1650 0.6340 +948 1675 0.6650 +948 1803 0.4200 +948 1902 0.4840 +948 1909 0.4020 +948 1910 0.4910 +948 1950 0.5490 +948 1962 0.4460 +948 2012 0.6940 +948 2022 0.4490 +948 2033 0.5840 +948 2056 0.4010 +948 2152 0.4180 +948 2162 0.4290 +948 2167 0.9690 +948 2168 0.9380 +948 2169 0.5740 +948 2170 0.7860 +948 2171 0.7700 +948 2173 0.4070 +948 2180 0.8570 +948 2181 0.6580 +948 2182 0.6180 +948 2194 0.7350 +948 2207 0.7340 +948 2209 0.7100 +948 2212 0.5640 +948 2213 0.5640 +948 2217 0.4450 +948 2243 0.5640 +948 2244 0.5730 +948 2266 0.5540 +948 2308 0.4690 +948 2321 0.4590 +948 2335 0.7020 +948 2475 0.4160 +948 2526 0.6690 +948 2534 0.9830 +948 2538 0.5270 +948 2597 0.5930 +948 2621 0.6300 +948 2632 0.4390 +948 2641 0.4770 +948 2670 0.4620 +948 2693 0.5190 +948 2806 0.8600 +948 2811 0.7020 +948 2813 0.9940 +948 2814 0.9910 +948 2815 0.8590 +948 2817 0.4260 +948 2833 0.4460 +948 2864 0.5300 +948 2865 0.4790 +948 2875 0.4780 +948 2993 0.8390 +948 2994 0.6400 +948 2995 0.6450 +948 2996 0.6430 +948 3030 0.6450 +948 3032 0.4430 +948 3033 0.4690 +948 3046 0.4760 +948 3091 0.5200 +948 3146 0.7890 +948 3156 0.5960 +948 3158 0.4670 +948 3162 0.4720 +948 3164 0.5570 +948 3240 0.5980 +948 3263 0.4300 +948 3273 0.5490 +948 3290 0.6780 +948 3308 0.5630 +948 3383 0.8060 +948 3394 0.4990 +948 3397 0.4290 +948 3458 0.6070 +948 3479 0.4960 +948 3552 0.5180 +948 3553 0.7270 +948 3562 0.4150 +948 3563 0.6140 +948 3565 0.8880 +948 3569 0.7300 +948 3576 0.5120 +948 3586 0.6490 +948 3596 0.8550 +948 3600 0.4340 +948 3605 0.4290 +948 3606 0.4830 +948 3624 0.4750 +948 3627 0.4410 +948 3630 0.7410 +948 3655 0.4800 +948 3667 0.6610 +948 3673 0.6090 +948 3674 0.9520 +948 3675 0.5240 +948 3676 0.5760 +948 3678 0.4730 +948 3680 0.4430 +948 3683 0.4130 +948 3684 0.8050 +948 3685 0.8750 +948 3687 0.6290 +948 3688 0.8640 +948 3689 0.8090 +948 3690 0.8610 +948 3693 0.5400 +948 3717 0.4170 +948 3725 0.4470 +948 3791 0.8570 +948 3815 0.6920 +948 3916 0.4060 +948 3952 0.6630 +948 3953 0.4600 +948 3956 0.5110 +948 3958 0.6460 +948 3988 0.5160 +948 3990 0.4230 +948 3991 0.7070 +948 4023 0.8770 +948 4035 0.7420 +948 4041 0.4790 +948 4064 0.5060 +948 4065 0.4170 +948 4067 0.9870 +948 4151 0.4160 +948 4240 0.6720 +948 4311 0.4650 +948 4314 0.5640 +948 4318 0.5780 +948 4353 0.5020 +948 4360 0.6870 +948 4481 0.8170 +948 4547 0.6030 +948 4684 0.7160 +948 4780 0.4530 +948 4790 0.6930 +948 4792 0.4400 +948 4846 0.4360 +948 4973 0.8520 +948 5029 0.4620 +948 5045 0.4110 +948 5054 0.4360 +948 5105 0.5490 +948 5106 0.4630 +948 5166 0.6960 +948 5175 0.8510 +948 5196 0.4340 +948 5245 0.6030 +948 5329 0.5740 +948 5346 0.8150 +948 5443 0.4780 +948 5465 0.9520 +948 5467 0.7870 +948 5468 0.9420 +948 5469 0.5590 +948 5534 0.4050 +948 5547 0.4100 +948 5578 0.5880 +948 5589 0.5550 +948 5595 0.4560 +948 5724 0.5890 +948 5743 0.4840 +948 5747 0.4550 +948 5764 0.4280 +948 5781 0.5660 +948 5787 0.4390 +948 5788 0.7700 +948 5829 0.4160 +948 5832 0.4670 +948 5972 0.5700 +948 6256 0.6690 +948 6271 0.6080 +948 6279 0.6620 +948 6280 0.8060 +948 6281 0.6070 +948 6283 0.6740 +948 6288 0.5290 +948 6289 0.5200 +948 6319 0.6980 +948 6347 0.6700 +948 6348 0.4510 +948 6373 0.5680 +948 6374 0.5450 +948 6387 0.4330 +948 6389 0.4460 +948 6390 0.4330 +948 6401 0.7240 +948 6402 0.4010 +948 6403 0.8610 +948 6513 0.5170 +948 6514 0.4660 +948 6515 0.5560 +948 6517 0.7190 +948 6604 0.4260 +948 6614 0.6770 +948 6622 0.5900 +948 6646 0.4360 +948 6652 0.4390 +948 6714 0.7200 +948 6720 0.7650 +948 6721 0.5680 +948 6772 0.4410 +948 6774 0.5080 +948 6778 0.4420 +948 6837 0.4990 +948 6845 0.7030 +948 6850 0.4910 +948 6863 0.4450 +948 6907 0.6170 +948 7037 0.6960 +948 7040 0.5400 +948 7056 0.4120 +948 7057 0.9990 +948 7058 0.9950 +948 7059 0.9280 +948 7060 0.9600 +948 7069 0.4130 +948 7070 0.4460 +948 7076 0.6170 +948 7096 0.9680 +948 7097 0.9980 +948 7098 0.4810 +948 7099 0.9980 +948 7100 0.4290 +948 7124 0.7110 +948 7157 0.4210 +948 7251 0.5130 +948 7295 0.8720 +948 7305 0.4540 +948 7350 0.6110 +948 7351 0.6020 +948 7352 0.6050 +948 7412 0.7710 +948 7436 0.6960 +948 7450 0.8030 +948 7837 0.5340 +948 7852 0.4320 +948 8202 0.5500 +948 8310 0.6020 +948 8398 0.4830 +948 8542 0.4450 +948 8578 0.8370 +948 8639 0.4630 +948 8648 0.5830 +948 8660 0.4380 +948 8685 0.5680 +948 8694 0.8210 +948 8763 0.5230 +948 8828 0.4420 +948 8841 0.5840 +948 8856 0.4500 +948 8877 0.4240 +948 8997 0.4220 +948 9033 0.4240 +948 9213 0.5810 +948 9282 0.4990 +948 9332 0.9810 +948 9370 0.8060 +948 9412 0.5170 +948 9439 0.4990 +948 9440 0.4990 +948 9441 0.4990 +948 9442 0.5160 +948 9443 0.4990 +948 9477 0.7530 +948 9508 0.4040 +948 9510 0.4320 +948 9567 0.8290 +948 9611 0.6300 +948 9612 0.5750 +948 9619 0.7070 +948 9749 0.4230 +948 9862 0.5040 +948 9882 0.5770 +948 9967 0.5230 +948 9968 0.4990 +948 9969 0.5130 +948 9971 0.5180 +948 10001 0.5130 +948 10025 0.5060 +948 10062 0.5880 +948 10135 0.4900 +948 10184 0.4180 +948 10226 0.4660 +948 10232 0.4140 +948 10449 0.6230 +948 10461 0.5800 +948 10462 0.5170 +948 10498 0.4190 +948 10499 0.5620 +948 10544 0.8320 +948 10575 0.7950 +948 10746 0.6340 +948 10788 0.4690 +948 10875 0.4320 +948 10891 0.8430 +948 10894 0.4610 +948 10970 0.4100 +948 10998 0.6370 +948 10999 0.7530 +948 11000 0.5170 +948 11001 0.6690 +948 11095 0.4330 +948 11173 0.4080 +948 11343 0.4800 +948 22918 0.6040 +948 23054 0.4750 +948 23090 0.4180 +948 23097 0.4990 +948 23166 0.5160 +948 23175 0.4660 +948 23210 0.4760 +948 23305 0.6060 +948 23389 0.5090 +948 23411 0.6780 +948 23417 0.4490 +948 23601 0.4840 +948 23643 0.7340 +948 25936 0.6400 +948 26291 0.5480 +948 28965 0.5770 +948 29079 0.4990 +948 29881 0.5950 +948 30816 0.4220 +948 30835 0.5190 +948 50943 0.4070 +948 51003 0.5050 +948 51085 0.5770 +948 51099 0.4280 +948 51129 0.6900 +948 51206 0.8780 +948 51284 0.4720 +948 51311 0.4750 +948 51503 0.4360 +948 51586 0.4990 +948 51703 0.6750 +948 51706 0.4340 +948 51738 0.6270 +948 54106 0.4470 +948 54209 0.5210 +948 54495 0.4150 +948 54677 0.6310 +948 54797 0.4990 +948 55090 0.4990 +948 55311 0.5160 +948 55576 0.4550 +948 55588 0.4990 +948 55902 0.4310 +948 56652 0.5550 +948 56729 0.6250 +948 56942 0.4260 +948 56999 0.6010 +948 57104 0.7220 +948 57678 0.5430 +948 57818 0.4190 +948 58191 0.4270 +948 59341 0.4470 +948 63924 0.7590 +948 64231 0.5060 +948 64240 0.5100 +948 64241 0.4390 +948 64581 0.7870 +948 79071 0.4370 +948 79718 0.4210 +948 80070 0.6430 +948 80205 0.4050 +948 80306 0.4990 +948 80339 0.4180 +948 81792 0.6900 +948 81857 0.4990 +948 84246 0.4990 +948 84498 0.5070 +948 84649 0.6850 +948 84666 0.4760 +948 84803 0.4990 +948 84868 0.4890 +948 84935 0.4840 +948 85441 0.5130 +948 90390 0.7280 +948 91937 0.6980 +948 92579 0.4230 +948 96764 0.4010 +948 112950 0.4990 +948 114548 0.5440 +948 116255 0.5040 +948 126129 0.6280 +948 132949 0.5510 +948 133522 0.5130 +948 135228 0.5180 +948 137902 0.5340 +948 137964 0.5110 +948 140885 0.7500 +948 146722 0.4440 +948 158747 0.4140 +948 158833 0.4520 +948 158835 0.5390 +948 160364 0.5790 +948 170689 0.4670 +948 199675 0.4340 +948 255738 0.7450 +948 259215 0.4130 +948 338328 0.4630 +948 338557 0.7350 +948 346562 0.4340 +948 376497 0.8360 +948 400569 0.4990 +948 440503 0.5050 +948 653361 0.6250 +948 729359 0.4890 +949 952 0.4920 +949 958 0.7070 +949 959 0.6160 +949 960 0.6780 +949 961 0.9940 +949 966 0.5010 +949 967 0.4570 +949 968 0.7900 +949 975 0.9950 +949 977 0.5300 +949 1003 0.5760 +949 1050 0.5940 +949 1051 0.4800 +949 1071 0.8000 +949 1088 0.6590 +949 1149 0.4750 +949 1234 0.4340 +949 1240 0.4100 +949 1241 0.4790 +949 1244 0.4720 +949 1277 0.6210 +949 1278 0.7390 +949 1295 0.4210 +949 1311 0.5330 +949 1312 0.4600 +949 1366 0.8930 +949 1374 0.7870 +949 1375 0.6200 +949 1376 0.6050 +949 1401 0.5060 +949 1435 0.4930 +949 1436 0.4980 +949 1437 0.5050 +949 1440 0.4560 +949 1499 0.4050 +949 1524 0.5310 +949 1536 0.4900 +949 1581 0.8750 +949 1582 0.4490 +949 1583 0.6480 +949 1586 0.5710 +949 1593 0.5520 +949 1636 0.4140 +949 1650 0.7410 +949 1675 0.5360 +949 1803 0.4160 +949 1901 0.4330 +949 1902 0.4740 +949 1910 0.4560 +949 1950 0.5580 +949 1956 0.4010 +949 1969 0.7100 +949 2012 0.6850 +949 2022 0.4510 +949 2056 0.4110 +949 2086 0.4170 +949 2099 0.6130 +949 2152 0.4310 +949 2167 0.8650 +949 2168 0.8770 +949 2169 0.5470 +949 2170 0.7510 +949 2171 0.7420 +949 2180 0.8150 +949 2181 0.6430 +949 2182 0.5790 +949 2194 0.7480 +949 2207 0.5540 +949 2209 0.6940 +949 2212 0.5000 +949 2213 0.5190 +949 2217 0.4200 +949 2308 0.4470 +949 2321 0.5670 +949 2335 0.6870 +949 2358 0.6150 +949 2475 0.4290 +949 2526 0.6510 +949 2534 0.9410 +949 2538 0.5020 +949 2597 0.6230 +949 2621 0.6390 +949 2632 0.4110 +949 2641 0.4730 +949 2670 0.4650 +949 2693 0.5140 +949 2782 0.4250 +949 2806 0.8380 +949 2811 0.6380 +949 2815 0.5800 +949 2817 0.4440 +949 2833 0.4470 +949 2864 0.5050 +949 2865 0.4460 +949 2875 0.5060 +949 2993 0.8280 +949 2994 0.6080 +949 2995 0.4800 +949 2996 0.6080 +949 3030 0.6310 +949 3032 0.4100 +949 3091 0.5210 +949 3122 0.4390 +949 3146 0.6130 +949 3156 0.7870 +949 3157 0.5030 +949 3158 0.4940 +949 3162 0.4890 +949 3164 0.5780 +949 3240 0.5880 +949 3263 0.4350 +949 3265 0.4010 +949 3273 0.5250 +949 3283 0.5580 +949 3290 0.4300 +949 3293 0.5420 +949 3308 0.5700 +949 3383 0.8150 +949 3394 0.4620 +949 3439 0.4080 +949 3455 0.4080 +949 3458 0.6010 +949 3479 0.4780 +949 3552 0.5320 +949 3553 0.7140 +949 3562 0.4170 +949 3563 0.5910 +949 3565 0.5710 +949 3569 0.7100 +949 3576 0.5170 +949 3586 0.6390 +949 3596 0.4470 +949 3605 0.4380 +949 3606 0.4790 +949 3624 0.4860 +949 3627 0.4410 +949 3630 0.7270 +949 3638 0.4420 +949 3640 0.5480 +949 3667 0.5400 +949 3673 0.5200 +949 3674 0.7160 +949 3675 0.5270 +949 3676 0.5630 +949 3678 0.4660 +949 3680 0.4360 +949 3684 0.7760 +949 3685 0.7930 +949 3687 0.5810 +949 3688 0.8020 +949 3689 0.7850 +949 3690 0.6890 +949 3725 0.6880 +949 3791 0.8460 +949 3815 0.6870 +949 3853 0.4570 +949 3916 0.4590 +949 3931 0.7940 +949 3952 0.6220 +949 3953 0.4450 +949 3956 0.5070 +949 3958 0.6390 +949 3973 0.5240 +949 3988 0.5230 +949 3990 0.6640 +949 3991 0.6760 +949 4018 0.6410 +949 4023 0.8330 +949 4035 0.7450 +949 4041 0.5050 +949 4064 0.4800 +949 4067 0.9750 +949 4240 0.6740 +949 4311 0.4330 +949 4314 0.5580 +949 4318 0.5570 +949 4353 0.5100 +949 4360 0.6460 +949 4481 0.8170 +949 4547 0.6290 +949 4609 0.4340 +949 4684 0.7060 +949 4780 0.4360 +949 4790 0.6970 +949 4792 0.4350 +949 4846 0.5090 +949 4864 0.4840 +949 4973 0.8560 +949 5045 0.4440 +949 5054 0.4610 +949 5105 0.4840 +949 5106 0.4400 +949 5166 0.6010 +949 5174 0.9430 +949 5175 0.6850 +949 5244 0.4160 +949 5245 0.6220 +949 5329 0.7160 +949 5346 0.7600 +949 5360 0.7350 +949 5444 0.5410 +949 5465 0.8960 +949 5467 0.7630 +949 5468 0.8210 +949 5534 0.4220 +949 5578 0.5850 +949 5589 0.6450 +949 5595 0.4870 +949 5724 0.5550 +949 5743 0.4860 +949 5781 0.5540 +949 5787 0.4160 +949 5788 0.7460 +949 5832 0.4750 +949 5970 0.5230 +949 5972 0.5930 +949 6280 0.5660 +949 6283 0.6250 +949 6288 0.8760 +949 6289 0.5830 +949 6319 0.7210 +949 6347 0.6750 +949 6348 0.4330 +949 6373 0.5590 +949 6374 0.5460 +949 6387 0.4020 +949 6389 0.4460 +949 6390 0.4310 +949 6401 0.7100 +949 6403 0.7450 +949 6513 0.5160 +949 6514 0.4340 +949 6515 0.5410 +949 6517 0.6930 +949 6622 0.5780 +949 6646 0.7040 +949 6652 0.4750 +949 6695 0.4070 +949 6696 0.4070 +949 6714 0.8340 +949 6715 0.4260 +949 6720 0.7730 +949 6721 0.6610 +949 6770 0.5580 +949 6772 0.4110 +949 6774 0.4830 +949 6778 0.4020 +949 6845 0.7010 +949 6850 0.4240 +949 6863 0.4350 +949 7037 0.7380 +949 7040 0.5290 +949 7057 0.9940 +949 7058 0.9510 +949 7060 0.5900 +949 7070 0.4010 +949 7076 0.6170 +949 7096 0.9410 +949 7097 0.9960 +949 7098 0.4890 +949 7099 0.9960 +949 7122 0.4920 +949 7124 0.7080 +949 7157 0.4390 +949 7251 0.5360 +949 7274 0.4020 +949 7350 0.6010 +949 7351 0.5640 +949 7352 0.5350 +949 7412 0.7810 +949 7436 0.6330 +949 7450 0.5130 +949 7753 0.4090 +949 7804 0.4310 +949 7837 0.5320 +949 7852 0.4170 +949 7879 0.4570 +949 8140 0.5320 +949 8310 0.5620 +949 8431 0.4610 +949 8435 0.4710 +949 8542 0.5080 +949 8578 0.8350 +949 8639 0.4250 +949 8647 0.4860 +949 8654 0.4370 +949 8660 0.4230 +949 8685 0.5440 +949 8694 0.8150 +949 8737 0.4740 +949 8763 0.4930 +949 8809 0.4470 +949 8856 0.4610 +949 8877 0.4470 +949 9076 0.9340 +949 9080 0.4470 +949 9213 0.6560 +949 9332 0.6020 +949 9368 0.5220 +949 9370 0.7590 +949 9388 0.5770 +949 9414 0.4470 +949 9420 0.4110 +949 9477 0.6270 +949 9510 0.4370 +949 9619 0.8490 +949 9780 0.4470 +949 9882 0.5490 +949 9971 0.5940 +949 10011 0.4400 +949 10062 0.6470 +949 10135 0.4830 +949 10226 0.6360 +949 10232 0.4140 +949 10332 0.4100 +949 10449 0.6290 +949 10461 0.5790 +949 10544 0.8300 +949 10575 0.8290 +949 10577 0.4260 +949 10746 0.6190 +949 10788 0.4700 +949 10891 0.6710 +949 10970 0.4130 +949 10998 0.6140 +949 10999 0.7380 +949 11000 0.6790 +949 11001 0.6320 +949 11093 0.5720 +949 11095 0.4390 +949 11343 0.4320 +949 22918 0.5270 +949 23166 0.4620 +949 23175 0.4500 +949 23210 0.5050 +949 23305 0.5300 +949 23411 0.6780 +949 23417 0.4310 +949 23541 0.4710 +949 23601 0.4470 +949 23643 0.4640 +949 25936 0.6390 +949 26291 0.5180 +949 26577 0.5180 +949 28965 0.5150 +949 29108 0.4440 +949 29801 0.4290 +949 29881 0.9370 +949 30816 0.4210 +949 30835 0.7080 +949 50940 0.4220 +949 50943 0.4130 +949 51085 0.5790 +949 51099 0.4040 +949 51129 0.6860 +949 51284 0.4560 +949 51311 0.4090 +949 51703 0.6090 +949 51738 0.6060 +949 53630 0.7970 +949 54106 0.4780 +949 54209 0.5130 +949 54518 0.4260 +949 55311 0.4870 +949 55576 0.4790 +949 55902 0.4140 +949 55937 0.4280 +949 56729 0.5980 +949 56942 0.4140 +949 56999 0.5560 +949 57104 0.6970 +949 57539 0.4270 +949 57552 0.4370 +949 57678 0.5130 +949 58191 0.4840 +949 63924 0.7140 +949 64137 0.4160 +949 64240 0.7110 +949 64241 0.6830 +949 64581 0.7270 +949 65010 0.4450 +949 79071 0.4200 +949 79602 0.4010 +949 79908 0.4190 +949 80070 0.5570 +949 80339 0.4330 +949 81792 0.6520 +949 83875 0.5810 +949 84649 0.6380 +949 84666 0.4770 +949 84935 0.4550 +949 90390 0.4740 +949 91464 0.7910 +949 91937 0.6720 +949 92579 0.4140 +949 114548 0.5070 +949 116255 0.4500 +949 116519 0.4560 +949 126129 0.6030 +949 132949 0.4870 +949 133522 0.4890 +949 137902 0.5260 +949 137964 0.4610 +949 140885 0.6400 +949 146722 0.4160 +949 158747 0.4110 +949 158833 0.4180 +949 158835 0.5240 +949 160364 0.5420 +949 170689 0.4300 +949 255738 0.7960 +949 338328 0.4670 +949 338557 0.7240 +949 376497 0.8720 +949 400668 0.4120 +949 405754 0.4170 +949 440503 0.4780 +949 653361 0.5970 +949 729359 0.4150 +949 100506658 0.8610 +950 952 0.5130 +950 958 0.7060 +950 959 0.6170 +950 960 0.6810 +950 961 0.9940 +950 966 0.5150 +950 967 0.9460 +950 968 0.7900 +950 975 0.8960 +950 977 0.5290 +950 1003 0.5750 +950 1050 0.5790 +950 1051 0.4740 +950 1080 0.4730 +950 1088 0.6660 +950 1149 0.4740 +950 1173 0.5000 +950 1175 0.5030 +950 1234 0.4110 +950 1277 0.6180 +950 1278 0.7370 +950 1295 0.4230 +950 1311 0.5450 +950 1312 0.4340 +950 1374 0.7880 +950 1375 0.6270 +950 1376 0.6050 +950 1401 0.4480 +950 1435 0.4660 +950 1436 0.4990 +950 1437 0.4800 +950 1476 0.4910 +950 1499 0.4010 +950 1508 0.4450 +950 1509 0.4540 +950 1510 0.5420 +950 1520 0.4160 +950 1524 0.5310 +950 1536 0.5060 +950 1581 0.5170 +950 1593 0.4400 +950 1601 0.7690 +950 1650 0.6640 +950 1675 0.5600 +950 1803 0.6190 +950 1902 0.4720 +950 1910 0.4670 +950 1950 0.5450 +950 2012 0.6960 +950 2022 0.4440 +950 2056 0.4030 +950 2086 0.6280 +950 2152 0.4010 +950 2167 0.8660 +950 2168 0.8640 +950 2169 0.5230 +950 2170 0.7580 +950 2171 0.7420 +950 2180 0.8260 +950 2181 0.6490 +950 2182 0.6020 +950 2194 0.7250 +950 2207 0.5670 +950 2209 0.7020 +950 2212 0.4750 +950 2213 0.4930 +950 2217 0.4340 +950 2308 0.4270 +950 2335 0.6970 +950 2475 0.4150 +950 2526 0.6730 +950 2534 0.9420 +950 2538 0.4920 +950 2597 0.5930 +950 2621 0.6360 +950 2629 0.9760 +950 2632 0.4410 +950 2641 0.4520 +950 2670 0.4750 +950 2693 0.5160 +950 2799 0.5030 +950 2806 0.7980 +950 2811 0.6390 +950 2815 0.5890 +950 2817 0.4430 +950 2833 0.4390 +950 2864 0.5110 +950 2865 0.4420 +950 2875 0.4480 +950 2896 0.4730 +950 2993 0.8380 +950 2994 0.6290 +950 2995 0.4890 +950 2996 0.6330 +950 3030 0.6350 +950 3032 0.4050 +950 3046 0.4610 +950 3091 0.5250 +950 3146 0.5950 +950 3156 0.5860 +950 3158 0.4330 +950 3162 0.4610 +950 3164 0.5570 +950 3240 0.5630 +950 3263 0.4200 +950 3267 0.5120 +950 3273 0.5360 +950 3308 0.5930 +950 3383 0.8110 +950 3394 0.4710 +950 3458 0.5970 +950 3479 0.4540 +950 3480 0.5300 +950 3482 0.7340 +950 3552 0.5070 +950 3553 0.7120 +950 3562 0.4160 +950 3563 0.5940 +950 3565 0.5710 +950 3569 0.7090 +950 3575 0.5560 +950 3576 0.5120 +950 3586 0.6290 +950 3596 0.4470 +950 3605 0.4300 +950 3606 0.4780 +950 3624 0.4720 +950 3627 0.4610 +950 3630 0.7220 +950 3667 0.5150 +950 3673 0.5360 +950 3674 0.7170 +950 3675 0.5530 +950 3676 0.5650 +950 3678 0.4720 +950 3680 0.4310 +950 3684 0.7780 +950 3685 0.8070 +950 3687 0.5840 +950 3688 0.7190 +950 3689 0.7810 +950 3690 0.6890 +950 3725 0.4480 +950 3728 0.4040 +950 3791 0.8450 +950 3815 0.6880 +950 3916 0.6470 +950 3920 0.6540 +950 3949 0.5170 +950 3952 0.6120 +950 3953 0.4250 +950 3956 0.5210 +950 3958 0.6460 +950 3988 0.5220 +950 3990 0.4040 +950 3991 0.6640 +950 4023 0.8120 +950 4035 0.7350 +950 4036 0.6180 +950 4041 0.4680 +950 4064 0.4900 +950 4067 0.9730 +950 4074 0.5620 +950 4240 0.6720 +950 4311 0.4350 +950 4314 0.5590 +950 4318 0.5340 +950 4353 0.4810 +950 4360 0.6470 +950 4481 0.8070 +950 4547 0.5480 +950 4591 0.4730 +950 4609 0.4070 +950 4684 0.7170 +950 4780 0.4390 +950 4790 0.6810 +950 4792 0.4280 +950 4846 0.4330 +950 4864 0.4260 +950 4973 0.8530 +950 5045 0.4070 +950 5054 0.4270 +950 5105 0.4800 +950 5106 0.4470 +950 5166 0.6270 +950 5175 0.6890 +950 5245 0.6250 +950 5329 0.5750 +950 5346 0.7600 +950 5443 0.4590 +950 5465 0.9090 +950 5467 0.7630 +950 5468 0.8620 +950 5547 0.4150 +950 5578 0.5790 +950 5589 0.5660 +950 5595 0.4510 +950 5610 0.4260 +950 5660 0.6350 +950 5724 0.5540 +950 5743 0.4790 +950 5764 0.4370 +950 5781 0.5730 +950 5787 0.4140 +950 5788 0.7460 +950 5832 0.4590 +950 5972 0.5740 +950 6272 0.4010 +950 6280 0.5720 +950 6283 0.6250 +950 6288 0.5220 +950 6289 0.5180 +950 6319 0.6780 +950 6347 0.6720 +950 6348 0.4320 +950 6373 0.5650 +950 6374 0.5430 +950 6387 0.4060 +950 6389 0.5120 +950 6390 0.4390 +950 6401 0.7090 +950 6403 0.7460 +950 6404 0.7970 +950 6513 0.5080 +950 6514 0.4270 +950 6515 0.5390 +950 6517 0.6980 +950 6622 0.6820 +950 6646 0.4600 +950 6652 0.4500 +950 6714 0.7030 +950 6720 0.7200 +950 6721 0.5330 +950 6772 0.4690 +950 6773 0.4720 +950 6774 0.5080 +950 6844 0.5750 +950 6845 0.8520 +950 6850 0.4090 +950 6863 0.4330 +950 7018 0.4150 +950 7037 0.9170 +950 7040 0.5270 +950 7057 0.9970 +950 7058 0.9560 +950 7060 0.6050 +950 7070 0.4050 +950 7076 0.6050 +950 7096 0.9320 +950 7097 0.9960 +950 7098 0.4950 +950 7099 0.9960 +950 7124 0.6800 +950 7157 0.4160 +950 7251 0.5400 +950 7348 0.4550 +950 7350 0.6020 +950 7351 0.5640 +950 7352 0.5380 +950 7412 0.7710 +950 7436 0.5760 +950 7450 0.4970 +950 7837 0.5100 +950 7852 0.4080 +950 8301 0.6080 +950 8310 0.5640 +950 8542 0.4810 +950 8578 0.8320 +950 8639 0.4310 +950 8660 0.4140 +950 8673 0.5750 +950 8674 0.5110 +950 8685 0.5100 +950 8694 0.8110 +950 8763 0.5210 +950 8809 0.4400 +950 8856 0.4160 +950 8877 0.4220 +950 8905 0.4010 +950 9213 0.5800 +950 9332 0.6080 +950 9341 0.6910 +950 9370 0.7570 +950 9477 0.5330 +950 9510 0.4180 +950 9619 0.8090 +950 9856 0.4100 +950 9882 0.5470 +950 9892 0.5060 +950 9971 0.4890 +950 10062 0.5500 +950 10135 0.4780 +950 10153 0.4370 +950 10226 0.4140 +950 10232 0.4180 +950 10449 0.6180 +950 10461 0.5860 +950 10544 0.8320 +950 10575 0.8140 +950 10577 0.4510 +950 10618 0.5280 +950 10746 0.6290 +950 10788 0.4600 +950 10891 0.6740 +950 10970 0.4350 +950 10998 0.6040 +950 10999 0.7250 +950 11000 0.4800 +950 11001 0.6220 +950 11095 0.4410 +950 11173 0.4120 +950 11343 0.4360 +950 22918 0.5360 +950 23090 0.4090 +950 23166 0.4250 +950 23175 0.4480 +950 23210 0.4920 +950 23305 0.5580 +950 23411 0.6610 +950 23417 0.4280 +950 23601 0.4560 +950 23643 0.4710 +950 25890 0.4100 +950 25936 0.6400 +950 26119 0.5660 +950 26291 0.5160 +950 28965 0.5160 +950 29108 0.4400 +950 29881 0.5460 +950 29978 0.5230 +950 29988 0.5020 +950 30816 0.6190 +950 30835 0.4940 +950 50943 0.4170 +950 51085 0.5410 +950 51099 0.4010 +950 51129 0.6660 +950 51284 0.4840 +950 51703 0.6210 +950 51738 0.6060 +950 53371 0.4550 +950 54106 0.4700 +950 54209 0.5250 +950 54518 0.4010 +950 55311 0.5260 +950 55576 0.4470 +950 56729 0.5990 +950 56942 0.4320 +950 56999 0.6090 +950 57104 0.6940 +950 57542 0.4400 +950 57678 0.5080 +950 58191 0.4370 +950 63924 0.7250 +950 64240 0.4940 +950 64241 0.4210 +950 64581 0.7610 +950 64759 0.4340 +950 79602 0.4020 +950 80070 0.6480 +950 81792 0.6940 +950 84649 0.6320 +950 84666 0.4480 +950 84868 0.5060 +950 84935 0.4640 +950 90390 0.4650 +950 91937 0.6930 +950 114548 0.5060 +950 114899 0.4670 +950 116255 0.4500 +950 126129 0.6140 +950 132949 0.5130 +950 133522 0.4790 +950 137902 0.4850 +950 137964 0.4580 +950 140459 0.4910 +950 140885 0.6480 +950 144165 0.5270 +950 146722 0.4170 +950 154881 0.5230 +950 158747 0.4140 +950 158833 0.4110 +950 158835 0.5280 +950 160364 0.5320 +950 170689 0.4510 +950 201931 0.4290 +950 255738 0.7340 +950 338557 0.7310 +950 376497 0.8170 +950 405754 0.6280 +950 440503 0.4830 +950 653361 0.5820 +950 729359 0.4130 +951 952 0.4700 +951 953 0.6090 +951 958 0.6180 +951 960 0.5420 +951 962 0.5520 +951 963 0.8110 +951 967 0.7120 +951 971 0.4900 +951 972 0.5340 +951 973 0.5360 +951 974 0.5930 +951 975 0.7250 +951 977 0.6000 +951 1043 0.6770 +951 1380 0.7870 +951 1436 0.4800 +951 2124 0.4120 +951 2207 0.4220 +951 2209 0.4830 +951 3308 0.4890 +951 3320 0.6230 +951 3326 0.6330 +951 3587 0.4570 +951 3675 0.4340 +951 3689 0.4640 +951 3732 0.7960 +951 4046 0.4450 +951 4064 0.5340 +951 4067 0.6820 +951 4071 0.6660 +951 5175 0.5660 +951 5293 0.4890 +951 5294 0.7800 +951 5777 0.4780 +951 5788 0.5430 +951 6302 0.6870 +951 6688 0.4250 +951 6850 0.7310 +951 7103 0.5260 +951 7251 0.5920 +951 7348 0.6970 +951 7379 0.4310 +951 7380 0.6330 +951 7412 0.4710 +951 7621 0.4120 +951 7805 0.5220 +951 8744 0.4540 +951 9021 0.5060 +951 10077 0.6940 +951 11151 0.4990 +951 23554 0.4280 +951 27075 0.4070 +951 30817 0.5120 +951 54440 0.4730 +951 64581 0.9340 +951 80342 0.4100 +951 84868 0.4080 +951 257106 0.4560 +951 388325 0.4350 +951 653145 0.4040 +952 953 0.6640 +952 958 0.7140 +952 959 0.7700 +952 960 0.7820 +952 961 0.5290 +952 962 0.5280 +952 965 0.5670 +952 966 0.4170 +952 968 0.5280 +952 969 0.8150 +952 970 0.5800 +952 971 0.4900 +952 972 0.6310 +952 973 0.8250 +952 974 0.6190 +952 975 0.6910 +952 1043 0.6000 +952 1088 0.6710 +952 1234 0.6930 +952 1235 0.6690 +952 1236 0.8840 +952 1238 0.6180 +952 1327 0.4400 +952 1378 0.4320 +952 1380 0.7940 +952 1401 0.5070 +952 1437 0.5820 +952 1440 0.7920 +952 1485 0.4510 +952 1493 0.7850 +952 1524 0.4460 +952 1791 0.5790 +952 1803 0.4740 +952 1880 0.5540 +952 1959 0.4490 +952 2022 0.4460 +952 2086 0.4120 +952 2209 0.7600 +952 2212 0.5270 +952 2213 0.6870 +952 2322 0.6680 +952 2323 0.6030 +952 2335 0.4120 +952 2346 0.5750 +952 2526 0.7000 +952 2597 0.4590 +952 2678 0.4120 +952 2826 0.5810 +952 2833 0.6510 +952 2841 0.4170 +952 2990 0.4560 +952 2993 0.7470 +952 3001 0.5030 +952 3002 0.7860 +952 3003 0.4450 +952 3105 0.4450 +952 3312 0.4480 +952 3383 0.5410 +952 3394 0.4440 +952 3439 0.5450 +952 3456 0.4060 +952 3458 0.7790 +952 3552 0.4160 +952 3553 0.5800 +952 3558 0.6910 +952 3559 0.5110 +952 3560 0.4860 +952 3561 0.5240 +952 3562 0.6020 +952 3563 0.7920 +952 3565 0.6270 +952 3567 0.4410 +952 3569 0.7880 +952 3570 0.4390 +952 3574 0.5990 +952 3575 0.7180 +952 3576 0.4840 +952 3578 0.5570 +952 3581 0.6610 +952 3586 0.6920 +952 3596 0.4460 +952 3600 0.5730 +952 3605 0.5910 +952 3606 0.4550 +952 3620 0.5760 +952 3627 0.5960 +952 3655 0.5160 +952 3662 0.7970 +952 3674 0.5180 +952 3676 0.8020 +952 3682 0.5830 +952 3683 0.7140 +952 3684 0.8080 +952 3687 0.6860 +952 3688 0.4750 +952 3689 0.4550 +952 3690 0.4410 +952 3695 0.4440 +952 3717 0.4870 +952 3718 0.4170 +952 3782 0.5910 +952 3815 0.7220 +952 3820 0.6160 +952 3821 0.6970 +952 3822 0.4170 +952 3824 0.5030 +952 3902 0.6800 +952 3916 0.5140 +952 3937 0.5550 +952 4067 0.6520 +952 4068 0.4040 +952 4145 0.4120 +952 4170 0.4360 +952 4179 0.4270 +952 4254 0.7860 +952 4267 0.6070 +952 4283 0.5130 +952 4288 0.4080 +952 4311 0.8200 +952 4345 0.5510 +952 4352 0.6150 +952 4353 0.5820 +952 4360 0.4280 +952 4603 0.4080 +952 4609 0.7000 +952 4684 0.8180 +952 4790 0.4470 +952 4837 0.9250 +952 4851 0.4810 +952 4860 0.9220 +952 4869 0.4730 +952 4907 0.7020 +952 5020 0.7060 +952 5021 0.7270 +952 5079 0.6290 +952 5125 0.5070 +952 5133 0.7510 +952 5167 0.9300 +952 5169 0.9200 +952 5175 0.9920 +952 5450 0.5450 +952 5551 0.6630 +952 5578 0.9120 +952 5579 0.9220 +952 5582 0.9020 +952 5592 0.9050 +952 5593 0.9020 +952 5688 0.6120 +952 5788 0.8640 +952 5896 0.5370 +952 5914 0.4520 +952 5918 0.6450 +952 6261 0.9120 +952 6262 0.9140 +952 6263 0.9180 +952 6347 0.4860 +952 6348 0.6600 +952 6351 0.5110 +952 6363 0.4190 +952 6366 0.5610 +952 6373 0.4050 +952 6382 0.8820 +952 6387 0.6570 +952 6401 0.6360 +952 6402 0.7000 +952 6403 0.6510 +952 6404 0.6960 +952 6504 0.6400 +952 6614 0.4450 +952 6688 0.4120 +952 6693 0.8160 +952 6772 0.6240 +952 6774 0.4840 +952 6776 0.4630 +952 6777 0.4410 +952 6850 0.4620 +952 6888 0.5680 +952 7037 0.7880 +952 7040 0.4020 +952 7066 0.7270 +952 7070 0.7080 +952 7099 0.4320 +952 7124 0.6810 +952 7157 0.7270 +952 7293 0.5160 +952 7345 0.4580 +952 7409 0.4550 +952 7412 0.4600 +952 7494 0.5270 +952 7535 0.8450 +952 7538 0.4100 +952 7837 0.4130 +952 7852 0.7860 +952 8115 0.4550 +952 8320 0.4720 +952 8711 0.6900 +952 8764 0.5890 +952 8784 0.4380 +952 8842 0.6260 +952 8888 0.6510 +952 9034 0.6190 +952 9159 0.5050 +952 9172 0.5700 +952 9308 0.5650 +952 9332 0.5680 +952 9398 0.4230 +952 9437 0.4820 +952 9451 0.4830 +952 9556 0.6520 +952 9934 0.5050 +952 10004 0.6680 +952 10135 0.9550 +952 10203 0.4070 +952 10219 0.4770 +952 10225 0.5200 +952 10320 0.5070 +952 10563 0.6820 +952 10578 0.4350 +952 10584 0.5710 +952 10663 0.4420 +952 10666 0.4200 +952 10673 0.6390 +952 10850 0.4430 +952 11126 0.6420 +952 11314 0.4450 +952 22806 0.4280 +952 22914 0.5550 +952 22918 0.4460 +952 22933 0.9240 +952 23057 0.9400 +952 23098 0.5000 +952 23408 0.9230 +952 23409 0.9210 +952 23410 0.9390 +952 23411 0.9430 +952 23495 0.5460 +952 23530 0.9090 +952 23657 0.4110 +952 27033 0.4590 +952 27087 0.7200 +952 29126 0.6420 +952 29851 0.6940 +952 30009 0.5840 +952 30816 0.4320 +952 50615 0.6830 +952 50943 0.6820 +952 51237 0.6350 +952 51284 0.5220 +952 51547 0.9210 +952 51548 0.9260 +952 51554 0.5740 +952 51744 0.4910 +952 53373 0.9120 +952 54106 0.4840 +952 54861 0.4930 +952 54981 0.4370 +952 55191 0.9080 +952 55507 0.5600 +952 57126 0.4840 +952 57379 0.6170 +952 57823 0.8070 +952 59067 0.6520 +952 60468 0.5750 +952 64802 0.9500 +952 80321 0.4720 +952 80380 0.5190 +952 80381 0.4860 +952 83416 0.6020 +952 83417 0.5410 +952 83594 0.9040 +952 84561 0.4130 +952 84684 0.7190 +952 84868 0.6640 +952 93100 0.4140 +952 115650 0.5090 +952 133686 0.9100 +952 137902 0.4110 +952 151888 0.4660 +952 160364 0.6200 +952 170482 0.4230 +952 201633 0.6520 +952 219931 0.9220 +952 259197 0.4330 +952 349565 0.4460 +952 100133941 0.7830 +952 100423062 0.4800 +952 102723407 0.7940 +953 954 0.9440 +953 955 0.9530 +953 956 0.9170 +953 957 0.9460 +953 958 0.5450 +953 959 0.5160 +953 960 0.5230 +953 961 0.4810 +953 969 0.6010 +953 1234 0.5320 +953 1235 0.5300 +953 1236 0.6060 +953 1237 0.4010 +953 1436 0.4760 +953 1437 0.4760 +953 1493 0.7890 +953 1503 0.9240 +953 1524 0.4180 +953 1557 0.5610 +953 1559 0.5560 +953 1562 0.6600 +953 1604 0.5150 +953 1633 0.9050 +953 1791 0.4690 +953 1803 0.4550 +953 1841 0.9100 +953 1901 0.4010 +953 2030 0.5150 +953 2152 0.4350 +953 2209 0.4810 +953 2212 0.5100 +953 2213 0.4480 +953 2596 0.4240 +953 2615 0.4670 +953 2766 0.9000 +953 2811 0.4450 +953 2833 0.5590 +953 2977 0.6700 +953 2982 0.6900 +953 2983 0.6880 +953 2984 0.6560 +953 2986 0.6550 +953 2987 0.9060 +953 3000 0.6550 +953 3001 0.5190 +953 3002 0.6640 +953 3003 0.4340 +953 3091 0.5220 +953 3133 0.4130 +953 3177 0.4470 +953 3251 0.9120 +953 3383 0.4270 +953 3458 0.6810 +953 3553 0.5850 +953 3558 0.6620 +953 3559 0.5490 +953 3560 0.4070 +953 3565 0.5260 +953 3569 0.5820 +953 3574 0.4300 +953 3575 0.6860 +953 3576 0.4090 +953 3586 0.7020 +953 3596 0.4180 +953 3600 0.4860 +953 3605 0.6000 +953 3606 0.4570 +953 3614 0.9000 +953 3615 0.9120 +953 3620 0.6600 +953 3627 0.4250 +953 3662 0.4210 +953 3673 0.4120 +953 3674 0.6970 +953 3682 0.6280 +953 3684 0.6190 +953 3687 0.5500 +953 3704 0.9130 +953 3820 0.5740 +953 3821 0.4670 +953 3902 0.7220 +953 3965 0.5370 +953 4179 0.4940 +953 4283 0.4100 +953 4337 0.8030 +953 4360 0.4250 +953 4684 0.4690 +953 4830 0.6910 +953 4831 0.6900 +953 4832 0.6940 +953 4833 0.6910 +953 4881 0.6550 +953 4882 0.6630 +953 4907 0.9990 +953 4914 0.4300 +953 5023 0.6500 +953 5024 0.4790 +953 5025 0.5330 +953 5026 0.4700 +953 5027 0.6310 +953 5028 0.8200 +953 5029 0.9360 +953 5030 0.5810 +953 5031 0.6010 +953 5032 0.5820 +953 5133 0.6430 +953 5136 0.6790 +953 5137 0.6770 +953 5138 0.6710 +953 5139 0.6770 +953 5140 0.6950 +953 5141 0.6880 +953 5142 0.7070 +953 5143 0.6500 +953 5144 0.6500 +953 5145 0.6500 +953 5146 0.6570 +953 5147 0.6540 +953 5148 0.6500 +953 5149 0.6500 +953 5150 0.6570 +953 5151 0.6500 +953 5152 0.6500 +953 5153 0.6800 +953 5158 0.6600 +953 5167 0.9580 +953 5169 0.9440 +953 5175 0.5210 +953 5313 0.9000 +953 5315 0.9130 +953 5551 0.6260 +953 5788 0.6460 +953 6240 0.9190 +953 6241 0.9140 +953 6347 0.4440 +953 6348 0.4250 +953 6351 0.4420 +953 6367 0.4070 +953 6402 0.6470 +953 6403 0.5920 +953 6609 0.4890 +953 6774 0.4650 +953 6777 0.4090 +953 6850 0.4360 +953 6932 0.4710 +953 7035 0.5640 +953 7040 0.5120 +953 7056 0.6180 +953 7084 0.9120 +953 7097 0.4790 +953 7099 0.5300 +953 7124 0.6290 +953 7293 0.5930 +953 7298 0.9060 +953 7371 0.9160 +953 7372 0.9080 +953 7450 0.4970 +953 7852 0.4660 +953 7980 0.4740 +953 8320 0.4790 +953 8470 0.4310 +953 8622 0.6500 +953 8639 0.5750 +953 8654 0.6920 +953 8784 0.8010 +953 8829 0.4020 +953 8833 0.9070 +953 9034 0.5590 +953 9060 0.5860 +953 9061 0.6110 +953 9127 0.4140 +953 9332 0.5080 +953 9583 0.9330 +953 9895 0.4920 +953 9907 0.4700 +953 9934 0.5750 +953 10004 0.4390 +953 10201 0.7280 +953 10219 0.5170 +953 10544 0.4180 +953 10580 0.5620 +953 10663 0.4250 +953 10666 0.4370 +953 10846 0.6500 +953 10875 0.5420 +953 11126 0.4800 +953 22914 0.4740 +953 22953 0.5070 +953 22978 0.7510 +953 24145 0.6810 +953 26289 0.6900 +953 27087 0.4180 +953 27115 0.6500 +953 29126 0.6970 +953 29851 0.6460 +953 29922 0.6960 +953 30009 0.6060 +953 30833 0.7080 +953 50484 0.9140 +953 50808 0.9060 +953 50940 0.6500 +953 50943 0.7770 +953 51206 0.5360 +953 51251 0.6680 +953 51311 0.5190 +953 51744 0.4450 +953 51816 0.5200 +953 53829 0.6180 +953 54963 0.9140 +953 55811 0.6520 +953 56474 0.9230 +953 56953 0.6900 +953 64115 0.4370 +953 64805 0.6760 +953 80380 0.5130 +953 80381 0.4800 +953 80821 0.4560 +953 83549 0.9140 +953 84284 0.9330 +953 84618 0.6940 +953 84868 0.7330 +953 90865 0.4150 +953 93034 0.6870 +953 115024 0.6950 +953 122481 0.6730 +953 122622 0.9070 +953 124583 0.9250 +953 129607 0.9010 +953 131870 0.9010 +953 139596 0.9000 +953 140885 0.6000 +953 151888 0.4970 +953 158067 0.6780 +953 169355 0.5740 +953 196883 0.7020 +953 201633 0.7140 +953 221264 0.6830 +953 284194 0.4580 +953 374659 0.9020 +953 377841 0.9090 +953 654346 0.4580 +953 654364 0.6620 +953 692312 0.5810 +953 100526794 0.6680 +953 102157402 0.6500 +954 955 0.4850 +954 956 0.9120 +954 957 0.4800 +954 2538 0.4900 +954 3490 0.5070 +954 3916 0.5080 +954 4040 0.4180 +954 4212 0.4690 +954 4726 0.4290 +954 4830 0.9030 +954 4831 0.9050 +954 4832 0.9170 +954 4833 0.9060 +954 4907 0.6190 +954 5023 0.4650 +954 5024 0.4550 +954 5028 0.8590 +954 5029 0.6550 +954 5030 0.4360 +954 5031 0.4460 +954 5080 0.6470 +954 5167 0.5260 +954 5169 0.4980 +954 5289 0.5070 +954 5313 0.9000 +954 5315 0.9050 +954 5330 0.5740 +954 5885 0.4530 +954 6240 0.9190 +954 6241 0.9180 +954 6444 0.4440 +954 6496 0.7770 +954 6588 0.4450 +954 6616 0.4210 +954 8289 0.6000 +954 9033 0.4280 +954 9114 0.5900 +954 9218 0.4160 +954 9365 0.4140 +954 9525 0.6720 +954 9990 0.4030 +954 10159 0.7640 +954 10201 0.9080 +954 10617 0.4370 +954 22953 0.5360 +954 24145 0.5150 +954 26289 0.9150 +954 27183 0.6710 +954 27243 0.7770 +954 29922 0.9110 +954 50484 0.9140 +954 50808 0.9060 +954 51053 0.5490 +954 51652 0.7880 +954 51806 0.4070 +954 53829 0.4520 +954 54617 0.5550 +954 55811 0.9070 +954 57818 0.5160 +954 64805 0.4090 +954 79643 0.5050 +954 81620 0.4990 +954 83756 0.4140 +954 84284 0.9510 +954 92579 0.5280 +954 122481 0.9060 +954 129531 0.6680 +954 154215 0.4300 +954 158067 0.9120 +954 196883 0.9050 +954 221264 0.9070 +954 346562 0.4580 +954 377841 0.9160 +954 654364 0.9080 +954 100526767 0.7810 +954 102157402 0.9050 +955 956 0.9520 +955 957 0.9110 +955 2766 0.9060 +955 3251 0.9000 +955 3614 0.9090 +955 3615 0.9070 +955 3704 0.9240 +955 4830 0.6570 +955 4831 0.7000 +955 4832 0.6610 +955 4833 0.7240 +955 4907 0.6950 +955 5136 0.6500 +955 5137 0.6500 +955 5138 0.7090 +955 5139 0.6650 +955 5140 0.6650 +955 5145 0.6700 +955 5146 0.6700 +955 5147 0.6520 +955 5148 0.6500 +955 5149 0.6500 +955 5152 0.6600 +955 5153 0.6500 +955 5158 0.6700 +955 5167 0.9230 +955 5169 0.9330 +955 5313 0.9000 +955 5315 0.9010 +955 5834 0.4250 +955 6240 0.9160 +955 6241 0.9150 +955 7371 0.9140 +955 7372 0.9030 +955 8654 0.7390 +955 8833 0.9160 +955 9583 0.9420 +955 10201 0.6840 +955 10846 0.6750 +955 22978 0.6560 +955 29922 0.6590 +955 30833 0.6880 +955 50484 0.9180 +955 50940 0.6750 +955 51251 0.7080 +955 51727 0.5070 +955 54963 0.9300 +955 55739 0.4440 +955 56953 0.6500 +955 57089 0.4500 +955 57704 0.4820 +955 64981 0.4250 +955 83549 0.9130 +955 84618 0.6850 +955 93034 0.6850 +955 115024 0.7260 +955 122622 0.9110 +955 124583 0.9420 +955 139596 0.9000 +955 169841 0.4180 +955 221264 0.6920 +955 255220 0.4590 +955 284067 0.5420 +955 374659 0.9000 +955 377841 0.9420 +955 654364 0.6630 +955 100526794 0.6850 +956 957 0.9480 +956 1503 0.9280 +956 1633 0.9060 +956 1841 0.9140 +956 2149 0.4470 +956 2697 0.4090 +956 2766 0.9090 +956 2811 0.5470 +956 2977 0.6710 +956 2982 0.6770 +956 2983 0.6900 +956 2984 0.6550 +956 2986 0.6560 +956 2987 0.9070 +956 3000 0.6560 +956 3251 0.9090 +956 3614 0.9030 +956 3615 0.9000 +956 3674 0.7400 +956 3704 0.9160 +956 4337 0.8030 +956 4830 0.6620 +956 4831 0.6860 +956 4832 0.7100 +956 4833 0.7080 +956 4881 0.6650 +956 4882 0.6640 +956 4907 0.8310 +956 5023 0.6340 +956 5024 0.5410 +956 5025 0.5230 +956 5026 0.4660 +956 5027 0.5940 +956 5028 0.6580 +956 5029 0.7170 +956 5030 0.5720 +956 5031 0.5940 +956 5032 0.5720 +956 5136 0.6850 +956 5137 0.6770 +956 5138 0.6810 +956 5139 0.6630 +956 5140 0.7300 +956 5141 0.6600 +956 5142 0.6580 +956 5143 0.6500 +956 5144 0.6500 +956 5145 0.6500 +956 5146 0.6500 +956 5147 0.6500 +956 5148 0.6500 +956 5149 0.6500 +956 5150 0.6500 +956 5151 0.6500 +956 5152 0.6560 +956 5153 0.6780 +956 5158 0.6500 +956 5167 0.9480 +956 5169 0.9690 +956 5313 0.9000 +956 5315 0.9020 +956 5336 0.4180 +956 6240 0.9230 +956 6241 0.9160 +956 6403 0.5970 +956 6850 0.4030 +956 7084 0.9030 +956 7298 0.9000 +956 7317 0.4350 +956 7371 0.9180 +956 7372 0.9130 +956 7450 0.4660 +956 8622 0.6570 +956 8654 0.6670 +956 8833 0.9060 +956 9045 0.4260 +956 9060 0.6670 +956 9061 0.7020 +956 9583 0.9300 +956 9934 0.4580 +956 10201 0.6880 +956 10846 0.6510 +956 22953 0.5760 +956 22978 0.6940 +956 24145 0.6760 +956 26289 0.7250 +956 27115 0.6500 +956 29922 0.7230 +956 30833 0.6870 +956 50484 0.9170 +956 50808 0.9060 +956 50940 0.6520 +956 51206 0.6270 +956 51251 0.6850 +956 51266 0.4050 +956 51727 0.7410 +956 53829 0.4840 +956 54963 0.9150 +956 55811 0.6660 +956 56474 0.9290 +956 56953 0.7020 +956 64805 0.6690 +956 79645 0.4050 +956 83549 0.9160 +956 84284 0.9210 +956 84618 0.6780 +956 89970 0.4050 +956 93034 0.6800 +956 115024 0.6780 +956 122481 0.6730 +956 122622 0.9050 +956 124583 0.9380 +956 129607 0.9010 +956 131870 0.9000 +956 139596 0.9020 +956 158067 0.6770 +956 196883 0.6760 +956 221264 0.6960 +956 374659 0.9020 +956 377841 0.9100 +956 654364 0.6620 +956 692312 0.5700 +956 100526794 0.6820 +956 102157402 0.6500 +957 2766 0.9110 +957 3251 0.9000 +957 3614 0.9070 +957 3615 0.9070 +957 3704 0.9270 +957 4830 0.7170 +957 4831 0.7010 +957 4832 0.6590 +957 4833 0.6810 +957 4907 0.7030 +957 5136 0.6500 +957 5137 0.6500 +957 5138 0.6900 +957 5139 0.6970 +957 5140 0.6670 +957 5145 0.6740 +957 5146 0.6700 +957 5147 0.6500 +957 5148 0.6500 +957 5149 0.6500 +957 5152 0.6590 +957 5153 0.6660 +957 5158 0.6700 +957 5167 0.9410 +957 5169 0.9440 +957 5313 0.9040 +957 5315 0.9120 +957 5728 0.4650 +957 6240 0.9180 +957 6241 0.9160 +957 7371 0.9120 +957 7372 0.9210 +957 8654 0.6750 +957 8833 0.9160 +957 9583 0.9440 +957 10201 0.7420 +957 10846 0.6750 +957 22978 0.6600 +957 26270 0.4570 +957 29922 0.6670 +957 30833 0.6740 +957 50484 0.9150 +957 50940 0.6750 +957 51004 0.4460 +957 51251 0.7010 +957 51727 0.8360 +957 54963 0.9190 +957 56953 0.6500 +957 57089 0.4690 +957 79178 0.4010 +957 83549 0.9000 +957 84284 0.4330 +957 84618 0.7360 +957 91977 0.4180 +957 93034 0.7560 +957 115024 0.7050 +957 122622 0.9290 +957 124583 0.9290 +957 139596 0.9180 +957 145483 0.6280 +957 221264 0.6920 +957 257407 0.4870 +957 374659 0.9000 +957 377841 0.9390 +957 654364 0.6550 +957 100526794 0.7580 +958 959 0.9990 +958 960 0.7910 +958 961 0.5390 +958 962 0.6870 +958 965 0.7220 +958 967 0.4310 +958 968 0.6430 +958 969 0.7320 +958 970 0.8720 +958 971 0.5520 +958 972 0.5700 +958 973 0.5380 +958 974 0.5380 +958 975 0.4550 +958 1043 0.4420 +958 1147 0.8710 +958 1230 0.4980 +958 1232 0.4310 +958 1234 0.7510 +958 1235 0.5900 +958 1236 0.8010 +958 1238 0.4820 +958 1326 0.5010 +958 1380 0.6930 +958 1401 0.6660 +958 1432 0.5610 +958 1435 0.5980 +958 1436 0.6230 +958 1437 0.8580 +958 1440 0.5250 +958 1485 0.4330 +958 1493 0.9730 +958 1520 0.4170 +958 1524 0.5120 +958 1536 0.4070 +958 1540 0.6810 +958 1896 0.4260 +958 1903 0.4480 +958 1956 0.5880 +958 1969 0.4610 +958 2022 0.4870 +958 2064 0.4460 +958 2086 0.4470 +958 2149 0.4990 +958 2152 0.6440 +958 2160 0.4320 +958 2208 0.4580 +958 2209 0.5900 +958 2212 0.6860 +958 2213 0.7070 +958 2250 0.4150 +958 2323 0.5880 +958 2335 0.4310 +958 2475 0.4350 +958 2526 0.4310 +958 2534 0.4670 +958 2597 0.5070 +958 2625 0.4740 +958 2815 0.4660 +958 2829 0.4800 +958 2833 0.5940 +958 2919 0.5460 +958 2920 0.4390 +958 3002 0.7220 +958 3105 0.5490 +958 3106 0.4250 +958 3108 0.4280 +958 3112 0.4140 +958 3122 0.4340 +958 3123 0.4930 +958 3133 0.4340 +958 3135 0.6300 +958 3146 0.4620 +958 3240 0.4040 +958 3308 0.9910 +958 3312 0.5680 +958 3320 0.7800 +958 3326 0.7800 +958 3383 0.9720 +958 3384 0.7520 +958 3385 0.4480 +958 3394 0.5950 +958 3439 0.8080 +958 3440 0.4050 +958 3454 0.4640 +958 3456 0.6150 +958 3458 0.9270 +958 3459 0.4290 +958 3551 0.8570 +958 3552 0.8030 +958 3553 0.9490 +958 3554 0.6670 +958 3558 0.8470 +958 3559 0.5500 +958 3560 0.4510 +958 3561 0.6080 +958 3562 0.5150 +958 3563 0.5910 +958 3565 0.9290 +958 3566 0.7900 +958 3567 0.7890 +958 3569 0.8910 +958 3570 0.4450 +958 3574 0.6180 +958 3575 0.5950 +958 3576 0.6820 +958 3578 0.4600 +958 3579 0.4410 +958 3581 0.4390 +958 3586 0.9010 +958 3587 0.5090 +958 3594 0.4470 +958 3595 0.4030 +958 3596 0.6740 +958 3600 0.7690 +958 3601 0.4760 +958 3605 0.8560 +958 3606 0.6380 +958 3620 0.7310 +958 3627 0.7000 +958 3630 0.4570 +958 3654 0.7700 +958 3659 0.5510 +958 3661 0.6330 +958 3662 0.6340 +958 3663 0.4810 +958 3665 0.5050 +958 3674 0.7320 +958 3676 0.4480 +958 3682 0.6600 +958 3683 0.7210 +958 3684 0.7840 +958 3687 0.8770 +958 3688 0.4550 +958 3689 0.5660 +958 3690 0.6830 +958 3700 0.6380 +958 3716 0.4640 +958 3717 0.4710 +958 3718 0.6750 +958 3725 0.6710 +958 3791 0.5290 +958 3815 0.4540 +958 3824 0.5250 +958 3838 0.4140 +958 3902 0.6320 +958 3916 0.4570 +958 3952 0.5480 +958 3965 0.5640 +958 4035 0.6340 +958 4049 0.8730 +958 4050 0.7650 +958 4055 0.7500 +958 4064 0.4280 +958 4065 0.7400 +958 4067 0.7170 +958 4068 0.4090 +958 4088 0.5390 +958 4170 0.4180 +958 4179 0.5830 +958 4214 0.7870 +958 4261 0.5210 +958 4283 0.6410 +958 4301 0.5330 +958 4311 0.4180 +958 4318 0.6260 +958 4340 0.5060 +958 4345 0.6870 +958 4360 0.6290 +958 4609 0.4800 +958 4684 0.5810 +958 4689 0.5150 +958 4734 0.5260 +958 4790 0.8980 +958 4791 0.7990 +958 4792 0.8220 +958 4794 0.5110 +958 4803 0.5770 +958 4843 0.4540 +958 4851 0.8010 +958 4907 0.5570 +958 4938 0.4480 +958 4973 0.6340 +958 5079 0.4970 +958 5133 0.6390 +958 5175 0.6660 +958 5290 0.4570 +958 5293 0.4550 +958 5294 0.4030 +958 5295 0.4490 +958 5336 0.4370 +958 5551 0.6090 +958 5595 0.4710 +958 5599 0.4380 +958 5603 0.4870 +958 5682 0.4150 +958 5684 0.4130 +958 5685 0.4180 +958 5686 0.4090 +958 5687 0.4450 +958 5688 0.4820 +958 5689 0.4320 +958 5690 0.4090 +958 5691 0.4080 +958 5693 0.4360 +958 5694 0.4240 +958 5695 0.4460 +958 5696 0.5890 +958 5698 0.6570 +958 5699 0.5460 +958 5700 0.4050 +958 5701 0.4190 +958 5702 0.4130 +958 5704 0.4080 +958 5705 0.4050 +958 5706 0.4130 +958 5707 0.4200 +958 5708 0.4130 +958 5709 0.4180 +958 5713 0.4230 +958 5715 0.4080 +958 5717 0.4090 +958 5718 0.4250 +958 5720 0.4890 +958 5721 0.5140 +958 5731 0.4510 +958 5743 0.4470 +958 5781 0.4010 +958 5788 0.7980 +958 5896 0.5750 +958 5966 0.9920 +958 5970 0.9910 +958 5971 0.9340 +958 6347 0.8110 +958 6348 0.8420 +958 6351 0.7390 +958 6354 0.5850 +958 6355 0.4110 +958 6356 0.4510 +958 6361 0.5610 +958 6362 0.4080 +958 6363 0.6480 +958 6364 0.5200 +958 6366 0.6100 +958 6367 0.6110 +958 6373 0.5350 +958 6374 0.4310 +958 6376 0.4280 +958 6382 0.6030 +958 6387 0.5780 +958 6401 0.4820 +958 6402 0.6710 +958 6403 0.9850 +958 6404 0.8820 +958 6490 0.4790 +958 6504 0.6390 +958 6614 0.4740 +958 6688 0.4760 +958 6689 0.4510 +958 6693 0.6060 +958 6714 0.4580 +958 6772 0.7580 +958 6774 0.6340 +958 6775 0.5100 +958 6776 0.4850 +958 6777 0.4670 +958 6778 0.5520 +958 6850 0.6270 +958 6885 0.5510 +958 7037 0.4380 +958 7039 0.5450 +958 7040 0.6340 +958 7042 0.5700 +958 7048 0.5650 +958 7056 0.5880 +958 7070 0.5350 +958 7096 0.5820 +958 7097 0.9110 +958 7098 0.8550 +958 7099 0.9180 +958 7100 0.5280 +958 7124 0.9920 +958 7128 0.5580 +958 7132 0.9190 +958 7133 0.7770 +958 7157 0.6670 +958 7185 0.9680 +958 7186 0.9960 +958 7187 0.9990 +958 7188 0.9930 +958 7189 0.9990 +958 7253 0.4260 +958 7292 0.8730 +958 7293 0.9420 +958 7297 0.4140 +958 7334 0.8010 +958 7412 0.8570 +958 7450 0.5970 +958 7535 0.5010 +958 7837 0.4520 +958 7852 0.7500 +958 8349 0.4120 +958 8517 0.9020 +958 8578 0.4640 +958 8600 0.8780 +958 8639 0.5820 +958 8651 0.5050 +958 8717 0.7400 +958 8718 0.6230 +958 8737 0.4120 +958 8740 0.7190 +958 8742 0.6990 +958 8743 0.4940 +958 8744 0.7830 +958 8767 0.5420 +958 8772 0.5970 +958 8784 0.8130 +958 8792 0.5460 +958 8795 0.6710 +958 8797 0.4770 +958 8829 0.4050 +958 8837 0.6790 +958 8887 0.4190 +958 8995 0.6820 +958 9020 0.8090 +958 9021 0.4170 +958 9034 0.5990 +958 9260 0.5990 +958 9308 0.9510 +958 9332 0.5900 +958 9368 0.4180 +958 9437 0.4270 +958 9518 0.4050 +958 9618 0.4830 +958 9641 0.5940 +958 9966 0.4060 +958 10010 0.7710 +958 10148 0.4230 +958 10197 0.4220 +958 10232 0.6620 +958 10261 0.4570 +958 10392 0.6100 +958 10538 0.4290 +958 10563 0.5890 +958 10666 0.6120 +958 10673 0.9590 +958 10758 0.7160 +958 10803 0.4250 +958 10892 0.6180 +958 10913 0.5890 +958 11006 0.4850 +958 22861 0.5100 +958 22914 0.5080 +958 22918 0.5390 +958 23308 0.9570 +958 23495 0.8450 +958 23586 0.5160 +958 23643 0.4330 +958 26191 0.5810 +958 27074 0.4840 +958 27242 0.4390 +958 27429 0.6840 +958 29110 0.4200 +958 29126 0.8570 +958 29760 0.4860 +958 29851 0.9870 +958 30009 0.6200 +958 30816 0.4480 +958 30835 0.6720 +958 50489 0.5760 +958 50615 0.6610 +958 50616 0.5230 +958 50856 0.4110 +958 50943 0.7770 +958 51135 0.4140 +958 51284 0.7400 +958 51311 0.5890 +958 51330 0.7430 +958 51561 0.4450 +958 51567 0.8250 +958 51744 0.4070 +958 54106 0.8450 +958 54915 0.5260 +958 55072 0.7600 +958 55509 0.5990 +958 57007 0.4210 +958 57379 0.8050 +958 57506 0.5810 +958 57823 0.5930 +958 58191 0.4200 +958 59067 0.4990 +958 60401 0.5730 +958 60468 0.5930 +958 64115 0.6160 +958 64127 0.4840 +958 64135 0.4790 +958 64581 0.5120 +958 65258 0.5700 +958 79155 0.4460 +958 79679 0.4800 +958 80271 0.4480 +958 80380 0.6830 +958 80381 0.8020 +958 80709 0.4900 +958 81793 0.4190 +958 84433 0.4180 +958 84807 0.5700 +958 84868 0.6140 +958 85480 0.4870 +958 90865 0.4780 +958 112744 0.4140 +958 114548 0.4040 +958 115352 0.4150 +958 115650 0.9840 +958 122706 0.5660 +958 131450 0.4340 +958 137902 0.4510 +958 140885 0.5490 +958 143471 0.4080 +958 151888 0.6360 +958 160364 0.5030 +958 168400 0.4480 +958 169355 0.6100 +958 170482 0.5410 +958 201633 0.5230 +958 203068 0.5860 +958 283420 0.5120 +958 284194 0.4650 +958 340061 0.4460 +958 405754 0.4470 +958 414062 0.4240 +958 654346 0.4650 +958 100133941 0.5520 +958 100526664 0.7310 +958 102723407 0.5930 +959 960 0.7620 +959 961 0.4550 +959 962 0.6840 +959 965 0.6860 +959 967 0.4340 +959 968 0.4490 +959 969 0.8490 +959 970 0.9640 +959 972 0.5900 +959 973 0.6440 +959 974 0.4960 +959 1003 0.4630 +959 1039 0.4910 +959 1043 0.4560 +959 1084 0.4270 +959 1147 0.4970 +959 1230 0.4450 +959 1232 0.4450 +959 1233 0.4730 +959 1234 0.7710 +959 1235 0.7140 +959 1236 0.7800 +959 1237 0.4170 +959 1238 0.4320 +959 1380 0.6550 +959 1401 0.6330 +959 1435 0.4470 +959 1436 0.4220 +959 1437 0.7870 +959 1440 0.6050 +959 1471 0.4170 +959 1493 0.8560 +959 1520 0.5160 +959 1524 0.4480 +959 1536 0.4550 +959 1880 0.4050 +959 1950 0.6680 +959 1956 0.4720 +959 2099 0.5160 +959 2149 0.4160 +959 2152 0.5970 +959 2159 0.4920 +959 2209 0.4020 +959 2212 0.5740 +959 2213 0.5570 +959 2247 0.6590 +959 2258 0.6390 +959 2323 0.7870 +959 2353 0.5430 +959 2597 0.4040 +959 2625 0.4750 +959 2670 0.4380 +959 2811 0.5450 +959 2833 0.7300 +959 2919 0.7180 +959 3001 0.4960 +959 3002 0.6820 +959 3105 0.4540 +959 3123 0.4310 +959 3371 0.9000 +959 3383 0.8910 +959 3384 0.6560 +959 3385 0.5320 +959 3394 0.4690 +959 3439 0.6460 +959 3440 0.7180 +959 3456 0.6840 +959 3458 0.9190 +959 3551 0.4590 +959 3552 0.8000 +959 3553 0.8900 +959 3554 0.4470 +959 3557 0.4090 +959 3558 0.9240 +959 3559 0.8680 +959 3560 0.5640 +959 3561 0.5400 +959 3562 0.6020 +959 3563 0.4820 +959 3565 0.9140 +959 3566 0.7080 +959 3567 0.7210 +959 3569 0.7950 +959 3570 0.4570 +959 3574 0.6800 +959 3575 0.6790 +959 3576 0.6700 +959 3578 0.6120 +959 3579 0.4230 +959 3586 0.8760 +959 3587 0.4510 +959 3594 0.5410 +959 3595 0.4100 +959 3596 0.7190 +959 3600 0.7450 +959 3603 0.4970 +959 3605 0.7320 +959 3606 0.7650 +959 3620 0.6000 +959 3627 0.6800 +959 3630 0.6310 +959 3659 0.4270 +959 3662 0.5940 +959 3674 0.9340 +959 3676 0.6870 +959 3678 0.4710 +959 3682 0.4860 +959 3683 0.7370 +959 3684 0.8940 +959 3687 0.6930 +959 3688 0.5660 +959 3689 0.9250 +959 3690 0.5680 +959 3700 0.4220 +959 3702 0.5050 +959 3718 0.4380 +959 3725 0.4040 +959 3820 0.5290 +959 3824 0.4240 +959 3902 0.6150 +959 3916 0.4940 +959 3965 0.4460 +959 4049 0.8580 +959 4050 0.8160 +959 4055 0.8540 +959 4065 0.5340 +959 4067 0.4160 +959 4068 0.7790 +959 4179 0.4190 +959 4261 0.4180 +959 4283 0.5590 +959 4318 0.5340 +959 4340 0.4060 +959 4353 0.4810 +959 4684 0.6430 +959 4689 0.4980 +959 4772 0.4010 +959 4773 0.4230 +959 4775 0.4450 +959 4783 0.4810 +959 4790 0.7280 +959 4791 0.5390 +959 4792 0.4880 +959 4803 0.5000 +959 4907 0.4190 +959 5045 0.4680 +959 5054 0.4790 +959 5079 0.4580 +959 5133 0.7750 +959 5175 0.4740 +959 5196 0.6260 +959 5197 0.5360 +959 5293 0.4170 +959 5327 0.4020 +959 5473 0.5360 +959 5551 0.6780 +959 5685 0.4240 +959 5688 0.4730 +959 5693 0.4210 +959 5694 0.4230 +959 5696 0.5060 +959 5698 0.5520 +959 5699 0.4400 +959 5701 0.4110 +959 5716 0.4170 +959 5720 0.4080 +959 5721 0.4210 +959 5788 0.7190 +959 5817 0.5370 +959 5819 0.5100 +959 5896 0.5320 +959 5966 0.5260 +959 5970 0.5090 +959 5971 0.5720 +959 6347 0.7140 +959 6348 0.7990 +959 6351 0.8520 +959 6354 0.5590 +959 6356 0.7310 +959 6361 0.5240 +959 6363 0.6170 +959 6364 0.6540 +959 6366 0.5480 +959 6367 0.7400 +959 6373 0.4490 +959 6374 0.6160 +959 6375 0.4500 +959 6376 0.7180 +959 6382 0.5850 +959 6387 0.6970 +959 6401 0.6040 +959 6402 0.6770 +959 6403 0.9510 +959 6404 0.9830 +959 6490 0.4320 +959 6504 0.7170 +959 6693 0.4870 +959 6772 0.5530 +959 6774 0.5670 +959 6775 0.5360 +959 6776 0.4900 +959 6777 0.4880 +959 6778 0.5140 +959 6850 0.5620 +959 6915 0.4140 +959 7037 0.4160 +959 7039 0.5640 +959 7040 0.5510 +959 7056 0.5360 +959 7096 0.6510 +959 7097 0.7530 +959 7098 0.5790 +959 7099 0.8890 +959 7100 0.4560 +959 7124 0.9420 +959 7132 0.8240 +959 7133 0.8270 +959 7157 0.6870 +959 7185 0.6530 +959 7186 0.7420 +959 7187 0.8400 +959 7188 0.4900 +959 7189 0.6500 +959 7292 0.9580 +959 7293 0.9380 +959 7374 0.5080 +959 7412 0.6370 +959 7450 0.5730 +959 7494 0.4330 +959 7535 0.6330 +959 7837 0.4210 +959 7852 0.7550 +959 8320 0.4680 +959 8517 0.6550 +959 8600 0.6290 +959 8639 0.4350 +959 8718 0.4550 +959 8740 0.7370 +959 8742 0.8030 +959 8743 0.4920 +959 8744 0.8590 +959 8764 0.5530 +959 8771 0.5040 +959 8784 0.6060 +959 8792 0.6130 +959 8795 0.5610 +959 8832 0.4640 +959 8995 0.6480 +959 9020 0.6690 +959 9034 0.5780 +959 9260 0.4730 +959 9308 0.7150 +959 9332 0.6810 +959 9656 0.4410 +959 9966 0.5850 +959 10219 0.4330 +959 10261 0.4570 +959 10288 0.6130 +959 10320 0.4280 +959 10538 0.4710 +959 10563 0.6200 +959 10578 0.4230 +959 10663 0.5060 +959 10666 0.4170 +959 10672 0.4260 +959 10673 0.9610 +959 10758 0.5030 +959 10803 0.5020 +959 10913 0.4450 +959 11006 0.6210 +959 11126 0.4550 +959 22914 0.5210 +959 23308 0.9880 +959 23495 0.9380 +959 26191 0.4400 +959 27074 0.4040 +959 27087 0.6400 +959 29126 0.6750 +959 29851 0.9990 +959 30009 0.6540 +959 30816 0.4320 +959 30835 0.5080 +959 50489 0.4010 +959 50615 0.7250 +959 50616 0.7290 +959 50943 0.7720 +959 51176 0.5590 +959 51206 0.4870 +959 51266 0.5700 +959 51284 0.6920 +959 51293 0.4110 +959 51311 0.5610 +959 51330 0.5940 +959 51744 0.4630 +959 54106 0.8470 +959 54210 0.5840 +959 57379 0.8530 +959 57823 0.5860 +959 59067 0.7710 +959 60468 0.5800 +959 64581 0.4240 +959 64805 0.4340 +959 80271 0.4720 +959 80380 0.5950 +959 80381 0.9350 +959 80709 0.5810 +959 81501 0.5800 +959 81704 0.4390 +959 83416 0.4360 +959 83417 0.4330 +959 84868 0.7340 +959 85480 0.4460 +959 90273 0.4240 +959 90865 0.4800 +959 112744 0.5170 +959 114836 0.4730 +959 115650 0.9590 +959 122706 0.4540 +959 126259 0.4310 +959 131450 0.4340 +959 137902 0.4210 +959 140885 0.4300 +959 149041 0.5080 +959 151888 0.7740 +959 169355 0.5230 +959 170482 0.4240 +959 201633 0.6580 +959 259197 0.4200 +959 260436 0.4400 +959 386653 0.4320 +959 100133941 0.4400 +959 100526664 0.5170 +959 102723407 0.6110 +960 961 0.7020 +960 962 0.5640 +960 965 0.5830 +960 966 0.7370 +960 967 0.7470 +960 968 0.7080 +960 969 0.8930 +960 970 0.6170 +960 972 0.9990 +960 973 0.4710 +960 975 0.7570 +960 976 0.6040 +960 977 0.7780 +960 983 0.5930 +960 994 0.4560 +960 999 0.9270 +960 1000 0.8400 +960 1001 0.4100 +960 1003 0.5960 +960 1015 0.5310 +960 1019 0.5230 +960 1021 0.4890 +960 1026 0.4940 +960 1029 0.6140 +960 1030 0.4610 +960 1048 0.6430 +960 1116 0.4240 +960 1230 0.6390 +960 1232 0.4350 +960 1234 0.7040 +960 1235 0.5930 +960 1236 0.7180 +960 1238 0.4790 +960 1277 0.9870 +960 1278 0.9880 +960 1280 0.9420 +960 1281 0.5990 +960 1282 0.9280 +960 1284 0.9250 +960 1285 0.9200 +960 1286 0.9050 +960 1287 0.9150 +960 1288 0.9110 +960 1291 0.9260 +960 1292 0.9210 +960 1293 0.9210 +960 1297 0.9120 +960 1298 0.9030 +960 1299 0.9040 +960 1301 0.4710 +960 1366 0.8940 +960 1378 0.4010 +960 1380 0.5690 +960 1404 0.5290 +960 1435 0.5470 +960 1436 0.5190 +960 1437 0.7450 +960 1439 0.4230 +960 1440 0.4850 +960 1462 0.9960 +960 1463 0.5310 +960 1464 0.4250 +960 1490 0.6830 +960 1493 0.6870 +960 1499 0.8460 +960 1508 0.4120 +960 1509 0.4170 +960 1520 0.4380 +960 1524 0.4800 +960 1588 0.5450 +960 1601 0.5150 +960 1602 0.4030 +960 1604 0.5050 +960 1634 0.5230 +960 1652 0.5040 +960 1758 0.6010 +960 1786 0.4140 +960 1791 0.4080 +960 1803 0.6430 +960 1839 0.9900 +960 1901 0.4660 +960 1906 0.4480 +960 1950 0.9220 +960 1956 0.9980 +960 1958 0.6180 +960 1959 0.5200 +960 1969 0.4650 +960 1994 0.5320 +960 2000 0.4650 +960 2014 0.4590 +960 2022 0.8960 +960 2023 0.4950 +960 2033 0.5190 +960 2034 0.7690 +960 2035 0.6300 +960 2064 0.9990 +960 2065 0.4340 +960 2066 0.7200 +960 2086 0.5230 +960 2099 0.7690 +960 2100 0.5560 +960 2113 0.4610 +960 2146 0.4940 +960 2159 0.4260 +960 2200 0.5800 +960 2209 0.4820 +960 2212 0.6860 +960 2213 0.6750 +960 2246 0.6120 +960 2247 0.9930 +960 2248 0.8740 +960 2249 0.9230 +960 2250 0.8750 +960 2251 0.8740 +960 2252 0.8890 +960 2253 0.8730 +960 2254 0.8750 +960 2255 0.9220 +960 2258 0.6930 +960 2260 0.8480 +960 2263 0.7090 +960 2277 0.5390 +960 2305 0.6110 +960 2308 0.4180 +960 2309 0.4020 +960 2316 0.4380 +960 2317 0.4180 +960 2319 0.5720 +960 2321 0.6580 +960 2322 0.5060 +960 2323 0.4740 +960 2324 0.6260 +960 2335 0.9990 +960 2346 0.6350 +960 2348 0.5280 +960 2352 0.6020 +960 2353 0.6430 +960 2475 0.5050 +960 2526 0.6000 +960 2532 0.5310 +960 2534 0.8400 +960 2597 0.7450 +960 2625 0.6230 +960 2626 0.4010 +960 2638 0.5410 +960 2670 0.5770 +960 2697 0.4040 +960 2719 0.5400 +960 2734 0.6750 +960 2735 0.5770 +960 2736 0.4270 +960 2817 0.8760 +960 2829 0.4240 +960 2833 0.7510 +960 2840 0.4180 +960 2919 0.6720 +960 2932 0.5740 +960 2993 0.4350 +960 2994 0.4490 +960 2995 0.8510 +960 3001 0.4010 +960 3002 0.6720 +960 3014 0.5170 +960 3021 0.4420 +960 3026 0.6120 +960 3036 0.7610 +960 3037 0.8170 +960 3038 0.8060 +960 3053 0.4390 +960 3059 0.5280 +960 3068 0.5240 +960 3075 0.6870 +960 3082 0.9640 +960 3091 0.6480 +960 3105 0.4150 +960 3161 0.9950 +960 3172 0.5700 +960 3185 0.4610 +960 3251 0.4700 +960 3263 0.5510 +960 3265 0.6640 +960 3308 0.6060 +960 3320 0.7790 +960 3326 0.7800 +960 3339 0.8020 +960 3373 0.7480 +960 3383 0.9950 +960 3384 0.8510 +960 3385 0.5900 +960 3397 0.4480 +960 3398 0.4810 +960 3439 0.6600 +960 3440 0.5550 +960 3441 0.5170 +960 3442 0.5140 +960 3443 0.5150 +960 3444 0.5140 +960 3445 0.5120 +960 3446 0.5120 +960 3447 0.5180 +960 3448 0.5130 +960 3449 0.5140 +960 3451 0.5300 +960 3452 0.5140 +960 3458 0.8830 +960 3476 0.4630 +960 3479 0.7190 +960 3480 0.4800 +960 3481 0.4100 +960 3485 0.5670 +960 3486 0.7390 +960 3491 0.6740 +960 3552 0.7160 +960 3553 0.7070 +960 3554 0.4280 +960 3558 0.8060 +960 3559 0.7560 +960 3560 0.8270 +960 3561 0.6160 +960 3562 0.5880 +960 3563 0.4470 +960 3565 0.8070 +960 3566 0.4360 +960 3567 0.5150 +960 3569 0.8210 +960 3570 0.4430 +960 3574 0.6620 +960 3575 0.7550 +960 3576 0.7510 +960 3577 0.4380 +960 3579 0.9830 +960 3586 0.7950 +960 3594 0.4850 +960 3596 0.5720 +960 3600 0.7700 +960 3601 0.6410 +960 3605 0.7200 +960 3606 0.4600 +960 3620 0.5330 +960 3627 0.5780 +960 3630 0.6770 +960 3655 0.7430 +960 3662 0.5130 +960 3667 0.4790 +960 3672 0.5630 +960 3673 0.7270 +960 3674 0.7020 +960 3675 0.6450 +960 3676 0.9330 +960 3678 0.7850 +960 3682 0.7100 +960 3683 0.8150 +960 3684 0.8600 +960 3685 0.8500 +960 3687 0.8330 +960 3688 0.9570 +960 3689 0.8790 +960 3690 0.8380 +960 3691 0.4890 +960 3693 0.5130 +960 3696 0.4940 +960 3697 0.5170 +960 3698 0.4950 +960 3702 0.5710 +960 3713 0.4860 +960 3716 0.4350 +960 3717 0.4850 +960 3725 0.6000 +960 3730 0.4160 +960 3732 0.5110 +960 3791 0.6040 +960 3815 0.7940 +960 3821 0.4390 +960 3824 0.4070 +960 3845 0.6540 +960 3852 0.6090 +960 3855 0.4670 +960 3856 0.5590 +960 3861 0.5800 +960 3875 0.5770 +960 3880 0.6160 +960 3897 0.6560 +960 3902 0.5890 +960 3908 0.9450 +960 3909 0.9380 +960 3910 0.9250 +960 3911 0.9200 +960 3912 0.9230 +960 3913 0.9090 +960 3914 0.9240 +960 3915 0.9220 +960 3916 0.5880 +960 3918 0.9580 +960 3921 0.4260 +960 3925 0.5110 +960 3937 0.4150 +960 3952 0.4190 +960 3956 0.4910 +960 3958 0.9040 +960 3959 0.5490 +960 3965 0.9890 +960 3976 0.4330 +960 3990 0.4280 +960 4000 0.4250 +960 4015 0.5250 +960 4023 0.7000 +960 4025 0.4350 +960 4040 0.6320 +960 4060 0.6240 +960 4067 0.6150 +960 4072 0.9710 +960 4087 0.7020 +960 4088 0.6900 +960 4089 0.4930 +960 4137 0.4910 +960 4145 0.4340 +960 4162 0.7000 +960 4170 0.4970 +960 4179 0.6290 +960 4192 0.5620 +960 4193 0.4660 +960 4233 0.9950 +960 4240 0.5220 +960 4254 0.7120 +960 4261 0.4320 +960 4267 0.6460 +960 4282 0.8630 +960 4283 0.4460 +960 4288 0.4710 +960 4301 0.5110 +960 4311 0.5980 +960 4312 0.5120 +960 4313 0.9710 +960 4314 0.5300 +960 4316 0.9730 +960 4318 0.9980 +960 4322 0.6620 +960 4323 0.9190 +960 4324 0.5500 +960 4325 0.5680 +960 4340 0.4860 +960 4345 0.4660 +960 4360 0.8280 +960 4363 0.4530 +960 4440 0.5420 +960 4478 0.9960 +960 4487 0.6920 +960 4586 0.7630 +960 4609 0.7720 +960 4613 0.4180 +960 4627 0.4190 +960 4670 0.5850 +960 4684 0.7120 +960 4763 0.5740 +960 4771 0.9790 +960 4780 0.4130 +960 4790 0.6420 +960 4792 0.4530 +960 4803 0.4150 +960 4804 0.6040 +960 4811 0.9910 +960 4851 0.7600 +960 4853 0.5560 +960 4854 0.5140 +960 4855 0.4180 +960 4893 0.4240 +960 4904 0.5650 +960 4907 0.9010 +960 4914 0.6170 +960 5034 0.5180 +960 5045 0.4020 +960 5054 0.6840 +960 5093 0.5200 +960 5133 0.5970 +960 5156 0.6620 +960 5159 0.8250 +960 5175 0.9490 +960 5196 0.5510 +960 5228 0.5610 +960 5230 0.5380 +960 5241 0.5690 +960 5243 0.5870 +960 5290 0.6320 +960 5315 0.9650 +960 5320 0.4680 +960 5328 0.5470 +960 5329 0.7030 +960 5340 0.6070 +960 5364 0.4590 +960 5365 0.4100 +960 5460 0.8190 +960 5468 0.5380 +960 5473 0.5800 +960 5551 0.5700 +960 5552 0.9660 +960 5578 0.6540 +960 5584 0.6450 +960 5590 0.5280 +960 5595 0.7510 +960 5663 0.5090 +960 5725 0.6710 +960 5727 0.4300 +960 5728 0.7540 +960 5734 0.4190 +960 5743 0.5820 +960 5747 0.6890 +960 5754 0.4160 +960 5764 0.5460 +960 5781 0.5810 +960 5788 0.9310 +960 5829 0.4330 +960 5877 0.6820 +960 5880 0.4420 +960 5896 0.6460 +960 5962 0.9990 +960 6097 0.4440 +960 6259 0.4510 +960 6275 0.5690 +960 6277 0.4070 +960 6279 0.8870 +960 6280 0.5430 +960 6281 0.4240 +960 6282 0.5380 +960 6285 0.4180 +960 6304 0.4130 +960 6331 0.4820 +960 6347 0.8150 +960 6348 0.6690 +960 6351 0.4460 +960 6362 0.4890 +960 6363 0.5870 +960 6366 0.4660 +960 6373 0.5740 +960 6382 0.9270 +960 6383 0.6480 +960 6385 0.6850 +960 6386 0.5630 +960 6387 0.9610 +960 6401 0.9970 +960 6402 0.9980 +960 6403 0.9930 +960 6404 0.9350 +960 6424 0.4790 +960 6430 0.4430 +960 6469 0.7250 +960 6490 0.4320 +960 6504 0.5160 +960 6513 0.4340 +960 6520 0.7640 +960 6548 0.8600 +960 6566 0.4150 +960 6591 0.6890 +960 6608 0.4460 +960 6609 0.4610 +960 6615 0.7210 +960 6649 0.5040 +960 6657 0.7920 +960 6662 0.6400 +960 6677 0.7270 +960 6678 0.6680 +960 6688 0.5690 +960 6693 0.9270 +960 6695 0.4340 +960 6696 0.9990 +960 6714 0.9720 +960 6736 0.4230 +960 6772 0.8420 +960 6774 0.8020 +960 6776 0.5360 +960 6777 0.5160 +960 6778 0.4090 +960 6794 0.4310 +960 6850 0.4600 +960 6868 0.4530 +960 6925 0.5580 +960 6932 0.5130 +960 6997 0.5620 +960 7010 0.4600 +960 7015 0.5580 +960 7037 0.6720 +960 7039 0.4320 +960 7040 0.7470 +960 7042 0.5090 +960 7043 0.5180 +960 7045 0.6410 +960 7046 0.8490 +960 7048 0.6490 +960 7057 0.7670 +960 7070 0.8950 +960 7074 0.9890 +960 7076 0.9220 +960 7077 0.4650 +960 7078 0.4030 +960 7082 0.4480 +960 7094 0.6430 +960 7097 0.8740 +960 7098 0.4150 +960 7099 0.9830 +960 7103 0.5660 +960 7124 0.8220 +960 7130 0.9480 +960 7132 0.4430 +960 7157 0.8760 +960 7168 0.4690 +960 7169 0.4740 +960 7251 0.4630 +960 7291 0.9590 +960 7293 0.5120 +960 7297 0.4240 +960 7305 0.5210 +960 7373 0.6180 +960 7409 0.9340 +960 7410 0.9640 +960 7412 0.9940 +960 7414 0.6650 +960 7423 0.5130 +960 7424 0.6200 +960 7430 0.9960 +960 7431 0.8090 +960 7448 0.8630 +960 7450 0.6570 +960 7454 0.5630 +960 7471 0.4660 +960 7474 0.6600 +960 7490 0.4420 +960 7535 0.5040 +960 7704 0.4740 +960 7837 0.6940 +960 7852 0.9940 +960 8061 0.4070 +960 8091 0.6570 +960 8290 0.4340 +960 8312 0.4630 +960 8313 0.5460 +960 8320 0.6220 +960 8349 0.4470 +960 8356 0.4340 +960 8372 0.4200 +960 8549 0.7930 +960 8600 0.4700 +960 8609 0.4110 +960 8639 0.7730 +960 8650 0.4050 +960 8692 0.9560 +960 8743 0.5920 +960 8744 0.4870 +960 8764 0.5990 +960 8767 0.4300 +960 8784 0.5920 +960 8809 0.5540 +960 8817 0.8740 +960 8822 0.8740 +960 8823 0.8740 +960 8826 0.9880 +960 8829 0.4640 +960 8842 0.8850 +960 8878 0.5320 +960 8976 0.6670 +960 8988 0.4420 +960 9032 0.5330 +960 9034 0.5480 +960 9122 0.6980 +960 9123 0.7170 +960 9138 0.9780 +960 9140 0.4790 +960 9201 0.4790 +960 9241 0.4210 +960 9308 0.6000 +960 9314 0.6730 +960 9332 0.4470 +960 9429 0.7360 +960 9437 0.6770 +960 9610 0.4140 +960 9672 0.4480 +960 9839 0.5940 +960 9884 0.4150 +960 9928 0.5200 +960 9965 0.5480 +960 10018 0.4460 +960 10096 0.4070 +960 10097 0.4060 +960 10098 0.4370 +960 10103 0.4560 +960 10109 0.4560 +960 10112 0.5650 +960 10162 0.4380 +960 10215 0.5120 +960 10216 0.7960 +960 10219 0.7320 +960 10232 0.5820 +960 10319 0.9050 +960 10365 0.4680 +960 10413 0.4180 +960 10451 0.9120 +960 10457 0.7850 +960 10630 0.5250 +960 10631 0.4550 +960 10642 0.5370 +960 10643 0.5670 +960 10657 0.5730 +960 10661 0.5170 +960 10663 0.4390 +960 10687 0.4390 +960 10691 0.4360 +960 10763 0.8880 +960 10803 0.4600 +960 10894 0.8390 +960 10933 0.4280 +960 10962 0.4630 +960 10987 0.4900 +960 11093 0.4870 +960 11213 0.5410 +960 11261 0.5010 +960 22795 0.4800 +960 22798 0.9000 +960 22806 0.4010 +960 22914 0.5230 +960 22918 0.4060 +960 22943 0.4810 +960 23236 0.4160 +960 23365 0.9850 +960 23524 0.4630 +960 23553 0.4750 +960 23555 0.6110 +960 23586 0.5550 +960 23643 0.9650 +960 23654 0.4500 +960 23657 0.9940 +960 23705 0.6920 +960 26205 0.4450 +960 26281 0.8870 +960 26524 0.4030 +960 27006 0.8750 +960 27087 0.5320 +960 27255 0.4290 +960 28514 0.4330 +960 28951 0.4400 +960 28996 0.4360 +960 29126 0.6840 +960 29851 0.7690 +960 30009 0.6890 +960 30812 0.4060 +960 30816 0.7620 +960 30817 0.5900 +960 30835 0.5490 +960 50615 0.5610 +960 50616 0.4310 +960 50846 0.4820 +960 50848 0.5630 +960 50943 0.8550 +960 51176 0.7870 +960 51266 0.4830 +960 51284 0.4190 +960 51474 0.4750 +960 51599 0.4940 +960 51660 0.4440 +960 51806 0.5470 +960 54106 0.4270 +960 54205 0.4190 +960 54361 0.5570 +960 54474 0.4920 +960 54567 0.4590 +960 54829 0.5440 +960 54845 0.7510 +960 55423 0.4530 +960 55576 0.8700 +960 55611 0.6540 +960 55740 0.5740 +960 55796 0.4910 +960 55959 0.5420 +960 57823 0.4110 +960 59067 0.4490 +960 60468 0.5000 +960 63827 0.6180 +960 64283 0.4450 +960 79727 0.4550 +960 79923 0.9870 +960 80004 0.6680 +960 80380 0.5660 +960 80381 0.5280 +960 81610 0.4070 +960 83660 0.6150 +960 83706 0.5270 +960 84868 0.6610 +960 89780 0.4920 +960 90139 0.4540 +960 90865 0.4360 +960 91860 0.5460 +960 92906 0.4990 +960 114836 0.4010 +960 117581 0.9380 +960 121340 0.4140 +960 131873 0.9010 +960 135228 0.6110 +960 135295 0.4360 +960 137902 0.6900 +960 140885 0.5180 +960 146722 0.4430 +960 160364 0.4050 +960 163688 0.5460 +960 168400 0.4480 +960 169355 0.4450 +960 171558 0.4900 +960 201633 0.6420 +960 220972 0.4120 +960 253260 0.5060 +960 255738 0.5390 +960 259197 0.5230 +960 284194 0.9350 +960 284217 0.9470 +960 284266 0.4690 +960 284654 0.6130 +960 339390 0.9570 +960 340273 0.6050 +960 374819 0.4050 +960 375790 0.7200 +960 388112 0.9200 +960 390243 0.4120 +960 405754 0.5260 +960 440093 0.4200 +960 440686 0.4390 +960 474170 0.4150 +960 653145 0.4130 +960 653604 0.4390 +960 654346 0.9350 +960 728378 0.4240 +960 100133941 0.8980 +960 100532731 0.7180 +961 962 0.4060 +961 965 0.4370 +961 966 0.5280 +961 967 0.6270 +961 968 0.5340 +961 972 0.6000 +961 975 0.4870 +961 1232 0.4430 +961 1237 0.4430 +961 1285 0.4440 +961 1311 0.9550 +961 1378 0.5410 +961 1435 0.5070 +961 1436 0.5370 +961 1437 0.4800 +961 1485 0.5820 +961 1493 0.6410 +961 1499 0.5100 +961 1524 0.9170 +961 1604 0.5940 +961 1718 0.4270 +961 1759 0.4040 +961 1785 0.4620 +961 1843 0.4510 +961 1956 0.7020 +961 1994 0.5130 +961 2023 0.5140 +961 2035 0.5970 +961 2039 0.5180 +961 2048 0.4040 +961 2064 0.5070 +961 2086 0.6450 +961 2159 0.6600 +961 2184 0.4310 +961 2185 0.6810 +961 2212 0.4730 +961 2213 0.4480 +961 2335 0.7030 +961 2358 0.4440 +961 2517 0.4730 +961 2533 0.5410 +961 2621 0.4040 +961 2626 0.4060 +961 2771 0.4100 +961 2885 0.5600 +961 2932 0.4100 +961 2993 0.9400 +961 2994 0.9920 +961 2995 0.5300 +961 3002 0.4250 +961 3091 0.4060 +961 3133 0.4580 +961 3146 0.4060 +961 3383 0.5430 +961 3386 0.5020 +961 3416 0.4420 +961 3417 0.4390 +961 3458 0.5890 +961 3553 0.5350 +961 3558 0.4730 +961 3563 0.5080 +961 3565 0.4500 +961 3569 0.5440 +961 3575 0.4610 +961 3576 0.4120 +961 3586 0.5300 +961 3600 0.6190 +961 3620 0.5640 +961 3672 0.5440 +961 3673 0.4880 +961 3676 0.6630 +961 3678 0.5600 +961 3680 0.4740 +961 3683 0.6420 +961 3684 0.5890 +961 3685 0.7730 +961 3687 0.5070 +961 3688 0.8120 +961 3689 0.7010 +961 3690 0.7940 +961 3791 0.9400 +961 3815 0.4440 +961 3820 0.4850 +961 3902 0.7550 +961 3956 0.5910 +961 3958 0.6160 +961 3965 0.7830 +961 4035 0.5060 +961 4072 0.5450 +961 4179 0.5370 +961 4240 0.4390 +961 4254 0.4690 +961 4261 0.4060 +961 4267 0.5130 +961 4282 0.5290 +961 4314 0.4490 +961 4318 0.4530 +961 4345 0.7750 +961 4360 0.5910 +961 4481 0.6350 +961 4609 0.4460 +961 4684 0.4140 +961 4907 0.6420 +961 5133 0.7280 +961 5175 0.7000 +961 5226 0.5200 +961 5698 0.4340 +961 5747 0.5280 +961 5777 0.6000 +961 5781 0.8490 +961 5788 0.9770 +961 5817 0.4440 +961 6005 0.9930 +961 6006 0.9320 +961 6007 0.9440 +961 6098 0.4060 +961 6347 0.4820 +961 6376 0.4640 +961 6387 0.4180 +961 6402 0.5660 +961 6403 0.4120 +961 6418 0.6040 +961 6714 0.6690 +961 6734 0.6620 +961 6772 0.4420 +961 6774 0.4790 +961 6782 0.4670 +961 7037 0.4040 +961 7040 0.4470 +961 7052 0.4580 +961 7056 0.5410 +961 7057 0.9990 +961 7058 0.9780 +961 7059 0.9330 +961 7060 0.9600 +961 7066 0.4380 +961 7070 0.4200 +961 7087 0.4830 +961 7097 0.7830 +961 7099 0.7680 +961 7124 0.5660 +961 7157 0.6680 +961 7293 0.4160 +961 7305 0.6310 +961 7412 0.4220 +961 7430 0.5250 +961 7448 0.6030 +961 7852 0.5120 +961 8322 0.4220 +961 8799 0.4970 +961 8800 0.4970 +961 8826 0.6550 +961 8842 0.4800 +961 8935 0.5760 +961 9241 0.5080 +961 9332 0.5360 +961 10059 0.6100 +961 10098 0.4680 +961 10225 0.5170 +961 10326 0.9930 +961 10461 0.4850 +961 10544 0.4660 +961 10584 0.5140 +961 10859 0.7360 +961 10963 0.4700 +961 11010 0.4050 +961 11119 0.4770 +961 22914 0.4600 +961 23166 0.4850 +961 26580 0.4200 +961 27180 0.5250 +961 27255 0.4100 +961 29126 0.8180 +961 29978 0.7070 +961 29979 0.9590 +961 30816 0.6610 +961 50943 0.4460 +961 51024 0.5080 +961 51458 0.7870 +961 54106 0.6090 +961 54209 0.7290 +961 54458 0.7280 +961 54814 0.4100 +961 55312 0.4510 +961 55423 0.9990 +961 55576 0.4090 +961 57126 0.4830 +961 57509 0.4120 +961 79258 0.4290 +961 80321 0.6070 +961 80380 0.5460 +961 80381 0.4780 +961 80781 0.4310 +961 81501 0.5270 +961 81792 0.4220 +961 83639 0.5010 +961 83700 0.5740 +961 84868 0.6210 +961 89790 0.9280 +961 91937 0.4640 +961 128646 0.5930 +961 131450 0.9900 +961 140885 0.9990 +961 151888 0.6060 +961 160364 0.5560 +961 162427 0.5870 +961 168400 0.6270 +961 169355 0.4170 +961 201633 0.5020 +961 284759 0.4330 +961 338323 0.8430 +961 374383 0.4600 +961 405754 0.6610 +961 654346 0.6300 +961 100133941 0.5400 +962 963 0.8480 +962 965 0.9090 +962 966 0.6600 +962 969 0.5990 +962 970 0.4530 +962 972 0.4530 +962 973 0.4030 +962 974 0.4850 +962 999 0.4080 +962 1043 0.9030 +962 1234 0.4800 +962 1236 0.6100 +962 1436 0.4860 +962 1441 0.4090 +962 1493 0.6820 +962 1520 0.4860 +962 1536 0.4750 +962 1794 0.4680 +962 1880 0.4470 +962 2124 0.5950 +962 2205 0.4960 +962 2207 0.6720 +962 2212 0.4760 +962 2213 0.5080 +962 2268 0.4560 +962 2322 0.7970 +962 2323 0.5710 +962 2355 0.4090 +962 2533 0.4900 +962 2534 0.6130 +962 2678 0.4880 +962 3001 0.5740 +962 3002 0.4850 +962 3003 0.5470 +962 3059 0.4400 +962 3109 0.4840 +962 3113 0.4340 +962 3122 0.4840 +962 3133 0.5260 +962 3383 0.6580 +962 3384 0.4070 +962 3394 0.5110 +962 3458 0.5430 +962 3552 0.5380 +962 3553 0.6240 +962 3558 0.4510 +962 3559 0.6220 +962 3560 0.4420 +962 3561 0.5350 +962 3562 0.4690 +962 3567 0.4270 +962 3569 0.4120 +962 3574 0.4120 +962 3575 0.8290 +962 3586 0.6220 +962 3587 0.5570 +962 3600 0.4300 +962 3603 0.6060 +962 3606 0.5960 +962 3635 0.4940 +962 3674 0.6470 +962 3676 0.4140 +962 3683 0.5990 +962 3684 0.6850 +962 3687 0.4650 +962 3689 0.6490 +962 3702 0.6630 +962 3802 0.5750 +962 3811 0.4650 +962 3815 0.8260 +962 3820 0.8180 +962 3821 0.5150 +962 3822 0.4290 +962 3824 0.7180 +962 3902 0.6540 +962 3903 0.5630 +962 3936 0.4250 +962 3937 0.6180 +962 3958 0.4740 +962 3965 0.7310 +962 4050 0.4150 +962 4063 0.9480 +962 4064 0.5800 +962 4068 0.9150 +962 4145 0.8410 +962 4254 0.5200 +962 4277 0.4550 +962 4356 0.6310 +962 4599 0.4210 +962 4689 0.4050 +962 4794 0.4480 +962 4818 0.4010 +962 5133 0.6560 +962 5175 0.4670 +962 5277 0.4110 +962 5341 0.5800 +962 5551 0.4990 +962 5597 0.4490 +962 5688 0.6790 +962 5781 0.6040 +962 5788 0.8530 +962 5790 0.4820 +962 5817 0.5270 +962 5819 0.7200 +962 5880 0.4980 +962 6283 0.4830 +962 6348 0.4200 +962 6351 0.4060 +962 6363 0.4050 +962 6387 0.4220 +962 6402 0.5860 +962 6504 0.8890 +962 6688 0.5700 +962 6693 0.6950 +962 7037 0.4370 +962 7066 0.4650 +962 7070 0.4130 +962 7096 0.4690 +962 7097 0.4240 +962 7099 0.4330 +962 7124 0.6650 +962 7292 0.5440 +962 7293 0.4140 +962 7305 0.5560 +962 7409 0.7000 +962 7535 0.4760 +962 7621 0.4110 +962 7805 0.7020 +962 7852 0.4860 +962 8477 0.6860 +962 8482 0.4350 +962 8698 0.4050 +962 8740 0.4390 +962 8744 0.4460 +962 8764 0.7080 +962 8809 0.4400 +962 8832 0.9140 +962 8995 0.4020 +962 9046 0.5270 +962 9404 0.5420 +962 9436 0.4790 +962 9437 0.8300 +962 9450 0.5460 +962 9535 0.4910 +962 9595 0.7890 +962 9938 0.4270 +962 9966 0.4450 +962 9976 0.4300 +962 10018 0.4180 +962 10219 0.4260 +962 10225 0.5110 +962 10288 0.4350 +962 10320 0.7180 +962 10544 0.5450 +962 10666 0.8380 +962 10673 0.4230 +962 10859 0.4290 +962 10870 0.6320 +962 11126 0.5410 +962 11148 0.4710 +962 11151 0.4580 +962 11314 0.5290 +962 11326 0.4940 +962 22914 0.7820 +962 23495 0.4830 +962 29121 0.4920 +962 29126 0.6330 +962 29851 0.6150 +962 50852 0.4010 +962 50856 0.4490 +962 51284 0.5230 +962 51311 0.5790 +962 51348 0.7010 +962 51744 0.9990 +962 54440 0.5300 +962 55843 0.5650 +962 57823 0.8910 +962 64092 0.4860 +962 64115 0.4130 +962 64926 0.4390 +962 79465 0.4370 +962 80110 0.4170 +962 80328 0.4360 +962 80329 0.7070 +962 80342 0.5560 +962 80380 0.4460 +962 80381 0.4440 +962 84658 0.4180 +962 84868 0.7580 +962 89886 0.5110 +962 114836 0.9390 +962 117157 0.5850 +962 117289 0.4670 +962 118471 0.7170 +962 124599 0.5570 +962 126259 0.4940 +962 131450 0.4500 +962 151888 0.6230 +962 201633 0.7020 +962 257106 0.5210 +962 259197 0.5810 +962 284194 0.5980 +962 374383 0.5300 +962 374403 0.4070 +962 375387 0.4400 +962 654346 0.5990 +962 100532731 0.4680 +963 965 0.6560 +963 967 0.6090 +963 968 0.6170 +963 969 0.5330 +963 972 0.5450 +963 975 0.6620 +963 977 0.6650 +963 1043 0.7520 +963 1230 0.6270 +963 1234 0.4120 +963 1380 0.5350 +963 1436 0.5960 +963 1439 0.5060 +963 1520 0.7020 +963 1536 0.5870 +963 1794 0.5570 +963 1880 0.4680 +963 2124 0.7260 +963 2207 0.5900 +963 2209 0.4130 +963 2212 0.4820 +963 2213 0.6220 +963 2533 0.5120 +963 3055 0.6890 +963 3059 0.5670 +963 3071 0.7160 +963 3113 0.4180 +963 3122 0.6390 +963 3308 0.4480 +963 3320 0.4510 +963 3326 0.4630 +963 3394 0.4870 +963 3561 0.4890 +963 3587 0.6540 +963 3676 0.5260 +963 3683 0.5260 +963 3684 0.5550 +963 3687 0.4610 +963 3688 0.4910 +963 3689 0.8290 +963 3702 0.4250 +963 3725 0.4180 +963 3732 0.8720 +963 3936 0.6880 +963 3937 0.7960 +963 4033 0.4130 +963 4071 0.6540 +963 4332 0.7230 +963 4684 0.4360 +963 4688 0.5580 +963 4689 0.5680 +963 4818 0.4050 +963 5341 0.6420 +963 5552 0.5160 +963 5578 0.5260 +963 5579 0.4390 +963 5788 0.8210 +963 5880 0.5060 +963 5983 0.4030 +963 6039 0.5180 +963 6302 0.7150 +963 6402 0.4930 +963 6404 0.4270 +963 6503 0.4660 +963 6688 0.5360 +963 7103 0.5110 +963 7124 0.5100 +963 7251 0.4160 +963 7305 0.7910 +963 7348 0.7250 +963 7379 0.4510 +963 7380 0.6570 +963 7409 0.4770 +963 7412 0.5140 +963 7462 0.4010 +963 7805 0.9300 +963 7852 0.4380 +963 8832 0.4700 +963 9332 0.5460 +963 9398 0.7510 +963 9402 0.4450 +963 9450 0.6290 +963 9473 0.6200 +963 9535 0.5180 +963 9595 0.6570 +963 9938 0.5640 +963 10077 0.6390 +963 10168 0.4160 +963 10288 0.4350 +963 10320 0.5320 +963 11151 0.4490 +963 11314 0.4900 +963 22918 0.4480 +963 23554 0.4360 +963 27128 0.4810 +963 30817 0.4370 +963 51025 0.4220 +963 54440 0.7150 +963 54518 0.4250 +963 55843 0.5580 +963 57705 0.4360 +963 64092 0.5180 +963 64098 0.4410 +963 64581 0.5870 +963 64926 0.4280 +963 80342 0.4710 +963 83706 0.4100 +963 117289 0.5180 +963 257106 0.4710 +963 338339 0.4270 +963 388325 0.4760 +965 966 0.6560 +965 969 0.4220 +965 970 0.4760 +965 974 0.4390 +965 999 0.4220 +965 1048 0.6070 +965 1234 0.6010 +965 1236 0.4240 +965 1437 0.5070 +965 1493 0.7360 +965 1604 0.4680 +965 2023 0.4610 +965 2212 0.4340 +965 2262 0.5780 +965 2526 0.6170 +965 3002 0.4090 +965 3105 0.4630 +965 3107 0.5430 +965 3115 0.4320 +965 3123 0.5800 +965 3383 0.9960 +965 3384 0.5530 +965 3385 0.5430 +965 3458 0.5940 +965 3552 0.5460 +965 3553 0.4190 +965 3558 0.5900 +965 3559 0.4720 +965 3563 0.4100 +965 3565 0.5670 +965 3569 0.4020 +965 3575 0.4470 +965 3586 0.4480 +965 3600 0.4270 +965 3601 0.4680 +965 3676 0.4840 +965 3683 0.9050 +965 3684 0.4600 +965 3687 0.6520 +965 3688 0.5270 +965 3689 0.7780 +965 3824 0.4070 +965 3899 0.4020 +965 3958 0.4510 +965 3965 0.5620 +965 4063 0.6110 +965 4065 0.4850 +965 4072 0.4590 +965 4179 0.6080 +965 4261 0.4250 +965 4311 0.5110 +965 4680 0.4530 +965 4684 0.4830 +965 5175 0.5840 +965 5551 0.4080 +965 5788 0.7080 +965 6402 0.4920 +965 6504 0.5860 +965 6693 0.4100 +965 7124 0.5190 +965 7128 0.4420 +965 7412 0.6590 +965 7852 0.6240 +965 8174 0.4190 +965 8764 0.6060 +965 8832 0.4190 +965 8986 0.5910 +965 9123 0.4140 +965 9252 0.5320 +965 9308 0.5390 +965 9398 0.5850 +965 9966 0.4890 +965 10421 0.6790 +965 10457 0.4010 +965 10666 0.6150 +965 22914 0.4360 +965 23274 0.6280 +965 23308 0.5140 +965 23607 0.4330 +965 29126 0.6100 +965 51744 0.4190 +965 55276 0.4990 +965 55801 0.4550 +965 56833 0.5170 +965 64092 0.4660 +965 80380 0.4550 +965 80381 0.7220 +965 84433 0.4070 +965 89886 0.4600 +965 114836 0.5510 +965 117289 0.4390 +965 145447 0.6110 +965 167826 0.4330 +965 170482 0.4580 +965 199834 0.4460 +965 654346 0.5260 +965 100129271 0.4080 +965 100526664 0.4740 +966 967 0.6830 +966 975 0.4950 +966 976 0.7780 +966 1043 0.4310 +966 1075 0.5410 +966 1088 0.5020 +966 1114 0.4180 +966 1191 0.7330 +966 1294 0.5120 +966 1315 0.5040 +966 1378 0.8240 +966 1479 0.5480 +966 1522 0.5240 +966 1525 0.6470 +966 1604 0.9880 +966 1956 0.5090 +966 2022 0.4870 +966 2086 0.6570 +966 2152 0.4220 +966 2153 0.5190 +966 2157 0.5740 +966 2219 0.4290 +966 2220 0.4470 +966 2348 0.5890 +966 2801 0.5350 +966 2890 0.4990 +966 2993 0.4340 +966 3075 0.8300 +966 3078 0.5480 +966 3080 0.5770 +966 3240 0.4240 +966 3265 0.4710 +966 3383 0.4390 +966 3426 0.5240 +966 3458 0.4320 +966 3553 0.4610 +966 3569 0.4580 +966 3630 0.5720 +966 3688 0.6890 +966 3689 0.4430 +966 3959 0.5820 +966 3998 0.5670 +966 4061 0.5610 +966 4067 0.5200 +966 4153 0.6070 +966 4179 0.9670 +966 4311 0.4140 +966 4313 0.4800 +966 4905 0.5230 +966 4907 0.5100 +966 4973 0.4570 +966 5199 0.7010 +966 5216 0.5240 +966 5265 0.6150 +966 5277 0.9720 +966 5284 0.4850 +966 5320 0.4320 +966 5329 0.5950 +966 5551 0.6020 +966 5648 0.5510 +966 5788 0.4830 +966 6396 0.5100 +966 6403 0.6120 +966 6657 0.4200 +966 6811 0.5930 +966 6850 0.4870 +966 7037 0.5090 +966 7039 0.5550 +966 7056 0.4740 +966 7070 0.5140 +966 7076 0.4770 +966 7124 0.4460 +966 7163 0.6090 +966 7178 0.5210 +966 7448 0.8090 +966 7851 0.6960 +966 8482 0.4380 +966 8547 0.4020 +966 8578 0.4090 +966 8581 0.6710 +966 8615 0.5010 +966 8655 0.5170 +966 8766 0.4750 +966 8774 0.5040 +966 8775 0.5270 +966 9094 0.4100 +966 9117 0.5430 +966 9437 0.4180 +966 9487 0.4040 +966 9527 0.5480 +966 9554 0.5770 +966 9570 0.5110 +966 9632 0.6060 +966 9871 0.6210 +966 9919 0.4990 +966 10113 0.5000 +966 10175 0.5040 +966 10211 0.5810 +966 10282 0.4050 +966 10342 0.5070 +966 10427 0.5850 +966 10484 0.5040 +966 10551 0.5600 +966 10652 0.5240 +966 10747 0.5850 +966 10802 0.5880 +966 10878 0.4190 +966 10959 0.6090 +966 10960 0.5290 +966 10972 0.5060 +966 11014 0.4160 +966 11015 0.4160 +966 11196 0.5040 +966 11326 0.5080 +966 22872 0.5170 +966 23256 0.5090 +966 25758 0.6680 +966 26984 0.5430 +966 27076 0.5360 +966 27202 0.4970 +966 27315 0.4660 +966 30816 0.5860 +966 30817 0.7560 +966 51128 0.5220 +966 51272 0.4990 +966 51348 0.4900 +966 51604 0.4790 +966 53944 0.4500 +966 55014 0.5140 +966 55283 0.5560 +966 55650 0.4170 +966 57152 0.4630 +966 57192 0.5430 +966 63908 0.5290 +966 64129 0.4510 +966 64689 0.4990 +966 66004 0.7130 +966 79748 0.4990 +966 81494 0.4520 +966 81562 0.5040 +966 83639 0.5040 +966 84720 0.4230 +966 89866 0.4990 +966 90411 0.5370 +966 93183 0.6710 +966 114569 0.6600 +966 114836 0.4930 +966 116372 0.6670 +966 140885 0.5720 +966 149111 0.5000 +966 160364 0.4700 +966 199675 0.4040 +966 254263 0.4990 +966 255231 0.6720 +966 259197 0.6680 +966 338328 0.4900 +966 340351 0.5920 +966 345456 0.5210 +966 375189 0.5210 +966 405754 0.6390 +966 100133941 0.6250 +967 968 0.4760 +967 969 0.4280 +967 972 0.4310 +967 975 0.9940 +967 977 0.9390 +967 978 0.4190 +967 999 0.4510 +967 1048 0.4060 +967 1088 0.5930 +967 1191 0.4980 +967 1230 0.4730 +967 1232 0.4490 +967 1378 0.4760 +967 1380 0.5290 +967 1499 0.6460 +967 1508 0.6430 +967 1509 0.7360 +967 1604 0.4240 +967 1803 0.5950 +967 1889 0.4090 +967 1906 0.4810 +967 1950 0.4640 +967 1956 0.8670 +967 1991 0.6140 +967 2022 0.7260 +967 2030 0.6550 +967 2064 0.6300 +967 2086 0.5830 +967 2149 0.4180 +967 2152 0.4480 +967 2319 0.7410 +967 2335 0.7100 +967 2346 0.5320 +967 2348 0.4410 +967 2357 0.4350 +967 2597 0.7560 +967 2801 0.6730 +967 2811 0.5430 +967 2815 0.5060 +967 2817 0.5210 +967 2934 0.4050 +967 2950 0.4660 +967 3001 0.4820 +967 3091 0.6270 +967 3122 0.6940 +967 3127 0.4230 +967 3135 0.4370 +967 3177 0.6890 +967 3308 0.9810 +967 3309 0.5790 +967 3312 0.7740 +967 3320 0.8290 +967 3326 0.8290 +967 3383 0.7750 +967 3458 0.4950 +967 3490 0.4370 +967 3553 0.5270 +967 3562 0.4160 +967 3563 0.4540 +967 3565 0.4500 +967 3569 0.5620 +967 3576 0.4320 +967 3586 0.5020 +967 3674 0.7360 +967 3675 0.4030 +967 3676 0.6030 +967 3678 0.4420 +967 3683 0.4460 +967 3684 0.6180 +967 3687 0.4900 +967 3688 0.9970 +967 3689 0.4810 +967 3690 0.5500 +967 3709 0.4970 +967 3732 0.9870 +967 3791 0.7430 +967 3815 0.7570 +967 3897 0.4050 +967 3916 0.9860 +967 3920 0.9920 +967 3956 0.4550 +967 3958 0.7640 +967 3965 0.5260 +967 4071 0.6070 +967 4072 0.7430 +967 4137 0.4360 +967 4162 0.4660 +967 4240 0.6690 +967 4311 0.4090 +967 4313 0.4310 +967 4318 0.6990 +967 4323 0.6230 +967 4353 0.7580 +967 4360 0.4470 +967 4594 0.4510 +967 4637 0.4890 +967 4684 0.4010 +967 4691 0.5070 +967 4907 0.7430 +967 5169 0.7720 +967 5175 0.6820 +967 5197 0.4700 +967 5267 0.4210 +967 5327 0.6030 +967 5551 0.7810 +967 5578 0.4430 +967 5705 0.4020 +967 5728 0.4470 +967 5738 0.5700 +967 5747 0.5620 +967 5788 0.6130 +967 5868 0.6270 +967 5869 0.7270 +967 5873 0.8400 +967 5874 0.8570 +967 5959 0.4390 +967 6302 0.6460 +967 6347 0.4490 +967 6382 0.6800 +967 6386 0.9960 +967 6403 0.9070 +967 6490 0.8200 +967 6515 0.4200 +967 6610 0.5820 +967 6647 0.5340 +967 6662 0.4230 +967 6678 0.4430 +967 6696 0.4220 +967 6714 0.5730 +967 6774 0.4420 +967 6845 0.4610 +967 7037 0.7210 +967 7040 0.4820 +967 7042 0.4850 +967 7070 0.6140 +967 7076 0.9980 +967 7077 0.4280 +967 7099 0.4180 +967 7103 0.6190 +967 7105 0.4320 +967 7124 0.5490 +967 7157 0.4020 +967 7184 0.5750 +967 7251 0.9980 +967 7292 0.4360 +967 7295 0.6110 +967 7305 0.4280 +967 7380 0.5550 +967 7412 0.4560 +967 7448 0.4530 +967 7450 0.7250 +967 7474 0.4060 +967 7481 0.4760 +967 7805 0.7340 +967 7837 0.6430 +967 7852 0.6440 +967 7879 0.4040 +967 8027 0.4640 +967 8082 0.4800 +967 8411 0.7130 +967 8416 0.4200 +967 8546 0.6620 +967 8766 0.6280 +967 8842 0.7290 +967 8988 0.4680 +967 9066 0.5210 +967 9146 0.4070 +967 9179 0.7130 +967 9332 0.4860 +967 9341 0.4170 +967 9525 0.5000 +967 9741 0.4040 +967 10015 0.8360 +967 10016 0.4880 +967 10077 0.7990 +967 10100 0.7320 +967 10117 0.4950 +967 10211 0.9490 +967 10344 0.4810 +967 10577 0.4570 +967 10578 0.4990 +967 10618 0.6400 +967 10867 0.5150 +967 10948 0.4560 +967 11021 0.6410 +967 11342 0.6980 +967 22914 0.5850 +967 23405 0.5310 +967 23480 0.4290 +967 25828 0.4370 +967 27111 0.9920 +967 27161 0.5400 +967 27183 0.4500 +967 27319 0.5740 +967 29102 0.4560 +967 29126 0.6530 +967 30816 0.5870 +967 51206 0.4440 +967 51534 0.5070 +967 54205 0.4040 +967 55283 0.5940 +967 55315 0.7040 +967 55512 0.6210 +967 55737 0.4930 +967 56729 0.4370 +967 57124 0.4530 +967 57192 0.6140 +967 64581 0.7480 +967 79720 0.4270 +967 79971 0.5410 +967 80381 0.5700 +967 84343 0.4190 +967 89780 0.4660 +967 91937 0.4410 +967 92714 0.5120 +967 93185 0.4580 +967 135228 0.5370 +967 137902 0.6420 +967 255231 0.6150 +967 405754 0.5840 +967 653145 0.8260 +967 728378 0.4780 +967 100133941 0.4470 +968 969 0.4520 +968 972 0.5280 +968 973 0.6550 +968 975 0.5900 +968 999 0.4550 +968 1003 0.4570 +968 1043 0.4320 +968 1088 0.6850 +968 1230 0.6980 +968 1232 0.5480 +968 1234 0.8060 +968 1236 0.7030 +968 1237 0.5700 +968 1267 0.4500 +968 1277 0.5320 +968 1281 0.4120 +968 1364 0.4590 +968 1366 0.4240 +968 1378 0.5920 +968 1380 0.6250 +968 1401 0.5900 +968 1435 0.7230 +968 1436 0.7920 +968 1437 0.6330 +968 1439 0.4090 +968 1440 0.4470 +968 1490 0.5020 +968 1493 0.7300 +968 1499 0.4430 +968 1508 0.7920 +968 1509 0.5140 +968 1513 0.6230 +968 1514 0.4270 +968 1515 0.4110 +968 1520 0.6040 +968 1522 0.4530 +968 1524 0.7500 +968 1535 0.4580 +968 1536 0.6240 +968 1604 0.4020 +968 1636 0.4290 +968 1641 0.4230 +968 1791 0.5830 +968 1890 0.4060 +968 1950 0.4490 +968 1956 0.4490 +968 1973 0.5140 +968 1991 0.5150 +968 2015 0.6740 +968 2022 0.6440 +968 2026 0.5800 +968 2064 0.6120 +968 2099 0.4200 +968 2206 0.4010 +968 2207 0.6490 +968 2209 0.6650 +968 2212 0.6250 +968 2213 0.7220 +968 2247 0.5030 +968 2260 0.5360 +968 2315 0.4080 +968 2335 0.5780 +968 2350 0.4490 +968 2526 0.6810 +968 2597 0.8630 +968 2625 0.4030 +968 2670 0.8460 +968 2799 0.5040 +968 2817 0.4600 +968 2833 0.4610 +968 2875 0.5140 +968 2896 0.6820 +968 2919 0.5810 +968 2920 0.4610 +968 3002 0.7500 +968 3091 0.5130 +968 3105 0.4020 +968 3122 0.4550 +968 3135 0.6080 +968 3146 0.4450 +968 3162 0.5830 +968 3383 0.6930 +968 3385 0.5360 +968 3394 0.4650 +968 3439 0.4780 +968 3456 0.4450 +968 3458 0.8110 +968 3479 0.4750 +968 3552 0.6390 +968 3553 0.8400 +968 3554 0.4190 +968 3557 0.4990 +968 3558 0.5420 +968 3563 0.5940 +968 3565 0.7240 +968 3566 0.4390 +968 3567 0.4370 +968 3569 0.8390 +968 3575 0.4480 +968 3576 0.6250 +968 3579 0.4390 +968 3586 0.7940 +968 3587 0.4140 +968 3596 0.6450 +968 3600 0.4620 +968 3605 0.6040 +968 3606 0.5950 +968 3620 0.5570 +968 3627 0.7320 +968 3630 0.6120 +968 3659 0.4370 +968 3662 0.4420 +968 3663 0.5120 +968 3682 0.4700 +968 3683 0.4650 +968 3684 0.8960 +968 3687 0.8260 +968 3688 0.5750 +968 3689 0.6710 +968 3690 0.5140 +968 3717 0.4070 +968 3725 0.6090 +968 3791 0.6550 +968 3815 0.6870 +968 3845 0.4050 +968 3852 0.4490 +968 3855 0.5850 +968 3875 0.4190 +968 3880 0.4770 +968 3902 0.5030 +968 3916 0.9150 +968 3952 0.5380 +968 3956 0.4850 +968 3958 0.7060 +968 3965 0.4430 +968 4069 0.4340 +968 4072 0.4620 +968 4155 0.6170 +968 4261 0.4320 +968 4267 0.6250 +968 4283 0.5540 +968 4288 0.4250 +968 4311 0.5970 +968 4312 0.4070 +968 4313 0.4950 +968 4314 0.4700 +968 4318 0.7660 +968 4321 0.6830 +968 4332 0.5480 +968 4340 0.4370 +968 4345 0.5850 +968 4353 0.7400 +968 4360 0.8770 +968 4481 0.7700 +968 4599 0.4200 +968 4605 0.4160 +968 4609 0.4020 +968 4629 0.4360 +968 4656 0.4390 +968 4684 0.7210 +968 4688 0.4240 +968 4780 0.5340 +968 4790 0.5410 +968 4792 0.5040 +968 4803 0.4070 +968 4818 0.4680 +968 4843 0.5680 +968 4907 0.4040 +968 4973 0.5500 +968 5054 0.5830 +968 5079 0.6180 +968 5133 0.7300 +968 5156 0.4950 +968 5159 0.4560 +968 5175 0.8230 +968 5236 0.7760 +968 5241 0.4070 +968 5265 0.4810 +968 5329 0.4550 +968 5465 0.4100 +968 5468 0.5880 +968 5551 0.4800 +968 5552 0.5400 +968 5595 0.4090 +968 5743 0.5820 +968 5788 0.8880 +968 5917 0.4730 +968 5972 0.4190 +968 6275 0.6610 +968 6280 0.6470 +968 6285 0.4550 +968 6347 0.8150 +968 6348 0.6530 +968 6351 0.5480 +968 6354 0.4020 +968 6355 0.4270 +968 6356 0.4530 +968 6361 0.4550 +968 6362 0.5290 +968 6363 0.4090 +968 6364 0.4390 +968 6366 0.4030 +968 6367 0.5390 +968 6373 0.4550 +968 6376 0.5520 +968 6382 0.7160 +968 6387 0.5700 +968 6401 0.4780 +968 6402 0.4280 +968 6403 0.4310 +968 6404 0.5530 +968 6506 0.4540 +968 6556 0.4490 +968 6614 0.8000 +968 6622 0.4350 +968 6624 0.4630 +968 6647 0.4010 +968 6663 0.4350 +968 6688 0.5570 +968 6693 0.7640 +968 6696 0.5540 +968 6772 0.5330 +968 6774 0.6170 +968 6778 0.5450 +968 6790 0.4930 +968 6820 0.4220 +968 6855 0.5780 +968 6876 0.4440 +968 7010 0.4160 +968 7040 0.7870 +968 7054 0.4340 +968 7056 0.4070 +968 7070 0.7040 +968 7072 0.4870 +968 7076 0.5540 +968 7077 0.4160 +968 7096 0.4250 +968 7097 0.6470 +968 7098 0.4590 +968 7099 0.7260 +968 7122 0.5730 +968 7124 0.8600 +968 7132 0.4390 +968 7157 0.5420 +968 7305 0.7960 +968 7345 0.4870 +968 7412 0.6310 +968 7431 0.4870 +968 7450 0.7080 +968 7805 0.4010 +968 7837 0.7930 +968 7849 0.5290 +968 7852 0.5630 +968 8530 0.4580 +968 8600 0.4340 +968 8685 0.4470 +968 8741 0.6490 +968 9021 0.4490 +968 9034 0.4630 +968 9076 0.4280 +968 9131 0.4030 +968 9213 0.5030 +968 9308 0.7930 +968 9332 0.9190 +968 9370 0.5370 +968 9473 0.4840 +968 9619 0.4300 +968 9928 0.4200 +968 10215 0.5360 +968 10437 0.4900 +968 10457 0.5530 +968 10461 0.6400 +968 10462 0.4530 +968 10563 0.4740 +968 10630 0.5170 +968 10673 0.7060 +968 10763 0.4560 +968 10894 0.6740 +968 11326 0.5530 +968 23166 0.4890 +968 23495 0.5100 +968 23643 0.4070 +968 23705 0.5310 +968 27074 0.9220 +968 27087 0.5810 +968 27163 0.4330 +968 29126 0.8230 +968 30009 0.4330 +968 30835 0.6060 +968 50489 0.6500 +968 50943 0.8500 +968 51284 0.4920 +968 51311 0.4520 +968 51338 0.5490 +968 54106 0.4400 +968 54209 0.8050 +968 54210 0.4240 +968 54474 0.4490 +968 56729 0.4080 +968 57124 0.5720 +968 57817 0.4650 +968 58191 0.4960 +968 59272 0.6360 +968 64581 0.6290 +968 64805 0.7080 +968 80380 0.5720 +968 80381 0.6070 +968 84666 0.4770 +968 84868 0.5970 +968 89790 0.4020 +968 90865 0.4450 +968 91937 0.4640 +968 93978 0.4110 +968 114548 0.4940 +968 115650 0.4180 +968 121340 0.4060 +968 131450 0.4520 +968 137902 0.7930 +968 140885 0.5530 +968 140947 0.7710 +968 146433 0.4380 +968 146713 0.7550 +968 148738 0.4220 +968 165530 0.4470 +968 169355 0.4040 +968 170482 0.4530 +968 283316 0.4440 +968 338773 0.6390 +968 345778 0.4140 +968 653361 0.5390 +968 100506658 0.4370 +969 970 0.4550 +969 972 0.4980 +969 973 0.4020 +969 974 0.4390 +969 999 0.6120 +969 1043 0.5790 +969 1088 0.4210 +969 1230 0.4380 +969 1232 0.4360 +969 1234 0.7540 +969 1235 0.7880 +969 1236 0.9050 +969 1237 0.4350 +969 1238 0.5720 +969 1380 0.7610 +969 1436 0.4690 +969 1437 0.6830 +969 1440 0.4120 +969 1493 0.7940 +969 1524 0.5690 +969 1803 0.4270 +969 1844 0.4630 +969 1880 0.7450 +969 1901 0.9950 +969 1903 0.4780 +969 1959 0.4900 +969 2205 0.4030 +969 2207 0.4120 +969 2209 0.5190 +969 2212 0.6570 +969 2213 0.6690 +969 2247 0.5210 +969 2258 0.4750 +969 2323 0.4380 +969 2353 0.4160 +969 2354 0.4040 +969 2534 0.4080 +969 2597 0.4770 +969 2625 0.6090 +969 2833 0.7410 +969 2919 0.4220 +969 2920 0.4320 +969 2999 0.4650 +969 3001 0.6880 +969 3002 0.8380 +969 3003 0.7430 +969 3105 0.5030 +969 3106 0.4110 +969 3122 0.4700 +969 3123 0.4510 +969 3133 0.7990 +969 3164 0.5720 +969 3383 0.6380 +969 3394 0.4630 +969 3439 0.6010 +969 3454 0.4350 +969 3456 0.4870 +969 3458 0.9120 +969 3552 0.5200 +969 3553 0.6780 +969 3557 0.4210 +969 3558 0.9060 +969 3559 0.7940 +969 3560 0.7320 +969 3561 0.6360 +969 3562 0.4370 +969 3563 0.5270 +969 3565 0.7570 +969 3567 0.6350 +969 3569 0.7200 +969 3574 0.6710 +969 3575 0.9000 +969 3576 0.7560 +969 3578 0.4330 +969 3586 0.7660 +969 3587 0.4840 +969 3594 0.4400 +969 3596 0.6230 +969 3600 0.7580 +969 3601 0.6510 +969 3605 0.7380 +969 3606 0.6070 +969 3620 0.4920 +969 3627 0.6540 +969 3659 0.4590 +969 3662 0.5860 +969 3672 0.6610 +969 3673 0.5450 +969 3676 0.7840 +969 3682 0.8180 +969 3683 0.7070 +969 3684 0.8050 +969 3687 0.8050 +969 3689 0.5590 +969 3695 0.5320 +969 3702 0.6100 +969 3718 0.4200 +969 3725 0.4420 +969 3782 0.5720 +969 3802 0.5890 +969 3804 0.5320 +969 3811 0.5040 +969 3815 0.4720 +969 3820 0.9380 +969 3821 0.4460 +969 3822 0.5810 +969 3824 0.4690 +969 3902 0.7130 +969 3916 0.7210 +969 3937 0.6470 +969 4049 0.4370 +969 4065 0.4500 +969 4068 0.4770 +969 4072 0.4050 +969 4277 0.4160 +969 4283 0.7570 +969 4301 0.5130 +969 4340 0.4490 +969 4360 0.5520 +969 4609 0.4230 +969 4684 0.7810 +969 4773 0.4130 +969 4790 0.4350 +969 4792 0.4390 +969 4815 0.5050 +969 4818 0.4940 +969 4907 0.4530 +969 4929 0.4130 +969 4973 0.4170 +969 5125 0.4050 +969 5133 0.6840 +969 5175 0.5180 +969 5335 0.4340 +969 5450 0.5190 +969 5551 0.7990 +969 5743 0.6420 +969 5781 0.5200 +969 5788 0.8820 +969 5803 0.4080 +969 5896 0.6170 +969 5966 0.4040 +969 5970 0.4680 +969 5996 0.8340 +969 6097 0.4710 +969 6347 0.5650 +969 6348 0.6980 +969 6351 0.6890 +969 6356 0.6520 +969 6363 0.5490 +969 6364 0.4570 +969 6366 0.4780 +969 6373 0.4330 +969 6375 0.4950 +969 6382 0.5750 +969 6387 0.4390 +969 6401 0.4080 +969 6402 0.9050 +969 6403 0.4660 +969 6404 0.4650 +969 6490 0.4330 +969 6504 0.6840 +969 6520 0.5120 +969 6614 0.6050 +969 6693 0.6670 +969 6772 0.5080 +969 6774 0.4980 +969 6775 0.4520 +969 6776 0.5640 +969 6777 0.5240 +969 6850 0.6580 +969 6932 0.4960 +969 7037 0.6130 +969 7040 0.5190 +969 7042 0.4740 +969 7070 0.5810 +969 7097 0.5110 +969 7098 0.4930 +969 7099 0.5570 +969 7124 0.8290 +969 7128 0.5720 +969 7292 0.4420 +969 7293 0.6780 +969 7305 0.4190 +969 7345 0.5000 +969 7409 0.6030 +969 7412 0.4800 +969 7535 0.7360 +969 7704 0.4570 +969 7837 0.4200 +969 7852 0.7010 +969 8302 0.4640 +969 8320 0.6930 +969 8525 0.5220 +969 8639 0.7690 +969 8744 0.4270 +969 8764 0.4110 +969 8784 0.6170 +969 8809 0.4760 +969 9034 0.7770 +969 9262 0.4130 +969 9308 0.6780 +969 9332 0.6630 +969 9398 0.4510 +969 9402 0.4030 +969 9436 0.6620 +969 9437 0.7370 +969 9595 0.4420 +969 10004 0.6260 +969 10018 0.4020 +969 10125 0.4240 +969 10162 0.5470 +969 10225 0.5400 +969 10320 0.4890 +969 10365 0.5560 +969 10398 0.4620 +969 10538 0.4640 +969 10563 0.4870 +969 10578 0.5480 +969 10663 0.7840 +969 10666 0.6390 +969 10673 0.5050 +969 10803 0.5880 +969 10859 0.4520 +969 11126 0.5530 +969 22914 0.4240 +969 23308 0.4060 +969 26191 0.4830 +969 27087 0.6660 +969 27141 0.5200 +969 29126 0.6900 +969 29781 0.4680 +969 29851 0.8280 +969 30009 0.7570 +969 30816 0.4030 +969 50615 0.4780 +969 50616 0.5820 +969 50852 0.4240 +969 50943 0.8230 +969 51043 0.4430 +969 51284 0.5420 +969 51311 0.4410 +969 51744 0.5920 +969 54106 0.5850 +969 54793 0.4080 +969 54941 0.4190 +969 55843 0.5590 +969 56253 0.4120 +969 57211 0.5080 +969 58191 0.5480 +969 59067 0.5140 +969 64092 0.5010 +969 80328 0.4650 +969 80329 0.4170 +969 80380 0.5470 +969 80381 0.6230 +969 84174 0.4600 +969 84636 0.5720 +969 84868 0.7260 +969 90865 0.4740 +969 112744 0.4210 +969 114836 0.5470 +969 117289 0.4750 +969 135250 0.4920 +969 137902 0.4200 +969 147744 0.4200 +969 149233 0.4020 +969 151888 0.7590 +969 201633 0.6750 +969 257101 0.5770 +969 259197 0.6800 +969 342979 0.4890 +969 353091 0.4300 +969 100133941 0.6110 +969 100526664 0.4260 +970 1236 0.4830 +970 1437 0.4920 +970 1493 0.7440 +970 1503 0.4450 +970 1786 0.4530 +970 3002 0.4330 +970 3383 0.6040 +970 3458 0.6000 +970 3553 0.4010 +970 3558 0.6140 +970 3565 0.4820 +970 3569 0.4910 +970 3586 0.5060 +970 3600 0.4970 +970 3605 0.4550 +970 3620 0.4910 +970 3683 0.5830 +970 3687 0.4780 +970 3696 0.4840 +970 3902 0.5900 +970 3965 0.4880 +970 4049 0.6310 +970 4068 0.4280 +970 4102 0.4130 +970 4179 0.4520 +970 4345 0.6050 +970 4851 0.4410 +970 4982 0.5300 +970 5031 0.4260 +970 5133 0.5230 +970 5551 0.5150 +970 5788 0.4170 +970 5817 0.5420 +970 6402 0.4320 +970 6490 0.4340 +970 6693 0.4500 +970 7099 0.6530 +970 7124 0.7470 +970 7132 0.4740 +970 7133 0.4970 +970 7292 0.8430 +970 7293 0.9940 +970 7852 0.4010 +970 8600 0.4660 +970 8718 0.4480 +970 8740 0.7050 +970 8742 0.5480 +970 8744 0.9330 +970 8764 0.7500 +970 8784 0.8170 +970 8995 0.7690 +970 9308 0.4300 +970 9437 0.5050 +970 9966 0.6360 +970 10125 0.4010 +970 10572 0.6380 +970 10666 0.5600 +970 10673 0.4350 +970 11126 0.4460 +970 11148 0.5620 +970 22914 0.6400 +970 22953 0.4350 +970 23308 0.6130 +970 23495 0.5150 +970 27242 0.5100 +970 29126 0.6220 +970 29851 0.9030 +970 50489 0.4930 +970 50616 0.4910 +970 50943 0.5100 +970 51348 0.4080 +970 51561 0.4630 +970 51744 0.4310 +970 64115 0.4550 +970 79679 0.5400 +970 80380 0.5890 +970 80381 0.7970 +970 84061 0.4800 +970 84868 0.7410 +970 115650 0.5900 +970 126259 0.5050 +970 131450 0.5930 +970 151888 0.5100 +970 169355 0.4020 +970 201633 0.4980 +970 259197 0.5030 +971 972 0.4290 +971 973 0.7710 +971 974 0.8010 +971 1043 0.4140 +971 1380 0.5790 +971 2213 0.8450 +971 2841 0.4140 +971 3112 0.5250 +971 3394 0.4430 +971 3561 0.4920 +971 3566 0.4560 +971 3597 0.4630 +971 3598 0.4930 +971 3903 0.4300 +971 4064 0.5330 +971 4067 0.6240 +971 5079 0.5100 +971 5175 0.6930 +971 5364 0.8460 +971 5450 0.4550 +971 5777 0.9900 +971 5788 0.4530 +971 6405 0.5100 +971 6850 0.6080 +971 7869 0.5190 +971 8115 0.6030 +971 8764 0.4370 +971 8829 0.4590 +971 8832 0.4010 +971 10221 0.4440 +971 10507 0.9990 +971 10798 0.4280 +971 10859 0.4170 +971 11314 0.4570 +971 23654 0.6240 +971 26692 0.4250 +971 27159 0.5530 +971 29126 0.5270 +971 29760 0.7150 +971 29802 0.7530 +971 57556 0.5080 +971 64218 0.6830 +971 79368 0.5240 +971 83416 0.6070 +971 83417 0.5370 +971 84824 0.7040 +971 89790 0.6510 +971 90865 0.4680 +971 115352 0.5130 +971 151888 0.6230 +971 199786 0.6500 +972 973 0.5140 +972 974 0.4980 +972 1043 0.6350 +972 1044 0.4470 +972 1075 0.6990 +972 1173 0.5290 +972 1174 0.5170 +972 1175 0.5180 +972 1211 0.5160 +972 1230 0.4570 +972 1234 0.5200 +972 1236 0.4740 +972 1436 0.6990 +972 1462 0.4160 +972 1493 0.4150 +972 1508 0.9540 +972 1509 0.6150 +972 1510 0.5390 +972 1512 0.6550 +972 1513 0.5480 +972 1514 0.9930 +972 1515 0.5040 +972 1519 0.4660 +972 1520 0.9810 +972 1524 0.5370 +972 1536 0.4610 +972 1638 0.4540 +972 1652 0.9650 +972 1759 0.5340 +972 1785 0.5260 +972 1836 0.4240 +972 1936 0.5810 +972 1937 0.4730 +972 1938 0.9450 +972 1956 0.4360 +972 1964 0.9340 +972 1965 0.8680 +972 1968 0.6730 +972 1983 0.8400 +972 1984 0.7660 +972 2023 0.5860 +972 2026 0.5690 +972 2027 0.5370 +972 2058 0.8450 +972 2091 0.6520 +972 2178 0.9310 +972 2197 0.9970 +972 2207 0.5120 +972 2209 0.4410 +972 2212 0.4080 +972 2213 0.4830 +972 2280 0.4090 +972 2281 0.4060 +972 2287 0.4060 +972 2323 0.9470 +972 2597 0.5600 +972 2829 0.5110 +972 2878 0.4160 +972 3001 0.4940 +972 3002 0.4730 +972 3003 0.4490 +972 3030 0.4360 +972 3043 0.4870 +972 3045 0.4240 +972 3105 0.8070 +972 3106 0.8000 +972 3107 0.8150 +972 3108 0.9940 +972 3109 0.9820 +972 3111 0.9660 +972 3112 0.9750 +972 3113 0.9930 +972 3115 0.9820 +972 3117 0.9940 +972 3118 0.9920 +972 3119 0.9970 +972 3120 0.9660 +972 3122 0.9990 +972 3123 0.9950 +972 3127 0.9860 +972 3133 0.7640 +972 3134 0.8450 +972 3135 0.6540 +972 3140 0.5810 +972 3150 0.8170 +972 3151 0.8170 +972 3283 0.4830 +972 3284 0.6200 +972 3303 0.4630 +972 3304 0.5700 +972 3310 0.4380 +972 3312 0.4380 +972 3340 0.5730 +972 3376 0.4330 +972 3383 0.4880 +972 3394 0.6180 +972 3396 0.8160 +972 3430 0.9400 +972 3437 0.4450 +972 3458 0.5550 +972 3460 0.4770 +972 3475 0.5110 +972 3553 0.5130 +972 3558 0.4370 +972 3561 0.4140 +972 3569 0.5090 +972 3575 0.4250 +972 3576 0.4800 +972 3577 0.4840 +972 3579 0.9940 +972 3586 0.6530 +972 3587 0.4380 +972 3627 0.5510 +972 3646 0.6980 +972 3658 0.4180 +972 3659 0.5010 +972 3662 0.4080 +972 3665 0.5960 +972 3683 0.5550 +972 3684 0.5760 +972 3687 0.5210 +972 3689 0.7210 +972 3720 0.4630 +972 3735 0.4580 +972 3736 0.5010 +972 3737 0.5010 +972 3738 0.5310 +972 3739 0.5010 +972 3741 0.5010 +972 3742 0.5010 +972 3743 0.5010 +972 3744 0.5010 +972 3745 0.5010 +972 3746 0.5010 +972 3747 0.5010 +972 3748 0.5120 +972 3749 0.5010 +972 3750 0.5010 +972 3751 0.5010 +972 3752 0.5100 +972 3754 0.5010 +972 3755 0.5010 +972 3784 0.5460 +972 3785 0.5010 +972 3786 0.5040 +972 3787 0.5010 +972 3788 0.5010 +972 3790 0.5010 +972 3799 0.4480 +972 3820 0.5160 +972 3821 0.5640 +972 3845 0.4610 +972 3921 0.9810 +972 3937 0.6150 +972 3958 0.4290 +972 3965 0.4040 +972 4057 0.5140 +972 4064 0.5120 +972 4069 0.4790 +972 4163 0.4730 +972 4233 0.5240 +972 4261 0.8330 +972 4282 0.9990 +972 4283 0.5400 +972 4360 0.5230 +972 4508 0.5860 +972 4528 0.8420 +972 4537 0.4340 +972 4585 0.4110 +972 4666 0.4320 +972 4680 0.6350 +972 4736 0.9350 +972 4738 0.5100 +972 4790 0.4330 +972 4809 0.8720 +972 4818 0.4730 +972 4830 0.4840 +972 4831 0.4840 +972 4832 0.4910 +972 4833 0.4850 +972 4914 0.5680 +972 5036 0.6710 +972 5037 0.5410 +972 5175 0.4010 +972 5313 0.6120 +972 5315 0.6350 +972 5326 0.4220 +972 5341 0.4060 +972 5394 0.4240 +972 5431 0.7700 +972 5432 0.8770 +972 5435 0.8500 +972 5441 0.6420 +972 5469 0.9370 +972 5476 0.4500 +972 5595 0.4220 +972 5599 0.5520 +972 5601 0.5290 +972 5641 0.9320 +972 5660 0.4840 +972 5688 0.5360 +972 5696 0.5190 +972 5698 0.4850 +972 5756 0.4050 +972 5777 0.4220 +972 5788 0.6360 +972 5822 0.6540 +972 5859 0.7060 +972 5880 0.4330 +972 5886 0.5040 +972 5887 0.5030 +972 5920 0.4680 +972 5927 0.4630 +972 5979 0.4410 +972 5993 0.4680 +972 5994 0.4090 +972 6059 0.7610 +972 6098 0.7760 +972 6122 0.9370 +972 6123 0.9340 +972 6124 0.9820 +972 6125 0.9820 +972 6128 0.9800 +972 6129 0.9360 +972 6130 0.9740 +972 6132 0.9800 +972 6133 0.9800 +972 6135 0.9810 +972 6136 0.9770 +972 6137 0.9760 +972 6138 0.9770 +972 6139 0.9350 +972 6141 0.9770 +972 6142 0.9730 +972 6143 0.9780 +972 6144 0.9790 +972 6146 0.9050 +972 6147 0.9810 +972 6150 0.5910 +972 6152 0.9750 +972 6154 0.9370 +972 6155 0.9790 +972 6156 0.9800 +972 6157 0.9780 +972 6158 0.9770 +972 6159 0.9790 +972 6160 0.9780 +972 6161 0.9790 +972 6164 0.9790 +972 6165 0.9750 +972 6166 0.8380 +972 6167 0.9750 +972 6168 0.9720 +972 6169 0.9810 +972 6170 0.9310 +972 6173 0.8390 +972 6175 0.9830 +972 6176 0.9400 +972 6181 0.9350 +972 6182 0.9710 +972 6183 0.8880 +972 6187 0.9810 +972 6188 0.9830 +972 6189 0.9800 +972 6191 0.8690 +972 6192 0.8640 +972 6193 0.9810 +972 6194 0.9780 +972 6201 0.9800 +972 6202 0.9790 +972 6203 0.9820 +972 6204 0.9350 +972 6205 0.9810 +972 6206 0.9790 +972 6207 0.9800 +972 6208 0.6950 +972 6209 0.9810 +972 6210 0.8530 +972 6217 0.9810 +972 6218 0.9780 +972 6222 0.9820 +972 6223 0.9850 +972 6224 0.9810 +972 6227 0.9790 +972 6228 0.9790 +972 6229 0.9810 +972 6230 0.9780 +972 6231 0.9800 +972 6232 0.9370 +972 6233 0.9740 +972 6234 0.9800 +972 6235 0.9800 +972 6347 0.4970 +972 6348 0.4420 +972 6351 0.4820 +972 6382 0.5840 +972 6385 0.5750 +972 6387 0.4110 +972 6396 0.4990 +972 6414 0.6910 +972 6456 0.5060 +972 6499 0.4240 +972 6554 0.4580 +972 6614 0.4110 +972 6648 0.6460 +972 6687 0.5090 +972 6688 0.5240 +972 6693 0.4120 +972 6729 0.6850 +972 6742 0.4670 +972 6772 0.5050 +972 6774 0.4030 +972 6850 0.4080 +972 6892 0.5920 +972 6897 0.4280 +972 7037 0.5220 +972 7097 0.6120 +972 7099 0.6970 +972 7124 0.5470 +972 7153 0.4270 +972 7157 0.5030 +972 7170 0.5320 +972 7178 0.8510 +972 7264 0.4710 +972 7284 0.9720 +972 7305 0.6450 +972 7311 0.9730 +972 7314 0.5870 +972 7316 0.6070 +972 7379 0.5100 +972 7403 0.5360 +972 7404 0.5540 +972 7412 0.4170 +972 7430 0.5000 +972 7450 0.4660 +972 7805 0.5840 +972 7818 0.7930 +972 7852 0.9940 +972 7866 0.5110 +972 8030 0.5220 +972 8034 0.4150 +972 8192 0.4920 +972 8242 0.4630 +972 8266 0.5990 +972 8284 0.4760 +972 8382 0.4840 +972 8519 0.4030 +972 8530 0.4880 +972 8562 0.5610 +972 8565 0.5280 +972 8602 0.7850 +972 8624 0.6250 +972 8625 0.4490 +972 8634 0.4730 +972 8638 0.6490 +972 8661 0.7460 +972 8662 0.6930 +972 8663 0.7170 +972 8664 0.7010 +972 8665 0.4440 +972 8666 0.5620 +972 8667 0.4940 +972 8668 0.6920 +972 8669 0.6970 +972 8718 0.4890 +972 8721 0.5250 +972 8722 0.5050 +972 8797 0.4890 +972 8832 0.4450 +972 8833 0.4130 +972 8857 0.4480 +972 8894 0.8000 +972 8905 0.5330 +972 8907 0.4990 +972 9045 0.9810 +972 9086 0.9420 +972 9132 0.5010 +972 9136 0.7900 +972 9255 0.5560 +972 9277 0.7750 +972 9308 0.4660 +972 9312 0.5010 +972 9332 0.5160 +972 9343 0.8060 +972 9349 0.9810 +972 9450 0.5890 +972 9518 0.4810 +972 9533 0.8770 +972 9553 0.9670 +972 9617 0.5330 +972 9632 0.4990 +972 9636 0.7140 +972 9652 0.4220 +972 9669 0.9080 +972 9724 0.6180 +972 9732 0.9090 +972 9750 0.4080 +972 9790 0.8340 +972 9801 0.9690 +972 9858 0.7730 +972 9871 0.5000 +972 10053 0.4990 +972 10061 0.5110 +972 10068 0.4510 +972 10102 0.7300 +972 10135 0.5810 +972 10158 0.4210 +972 10171 0.7810 +972 10199 0.8290 +972 10201 0.4840 +972 10209 0.8380 +972 10225 0.4210 +972 10289 0.8100 +972 10320 0.4150 +972 10399 0.9760 +972 10410 0.5310 +972 10412 0.8050 +972 10427 0.4990 +972 10436 0.7880 +972 10437 0.5820 +972 10473 0.8170 +972 10480 0.4240 +972 10484 0.4990 +972 10528 0.8040 +972 10537 0.6840 +972 10557 0.7150 +972 10568 0.6950 +972 10607 0.7810 +972 10673 0.5730 +972 10730 0.5090 +972 10765 0.4630 +972 10802 0.4990 +972 10813 0.6100 +972 10875 0.4040 +972 10885 0.8240 +972 10894 0.4870 +972 10939 0.5090 +972 10964 0.5150 +972 10985 0.7870 +972 10987 0.5870 +972 10988 0.6460 +972 11014 0.4820 +972 11074 0.4610 +972 11103 0.8440 +972 11128 0.8080 +972 11222 0.8360 +972 11224 0.9800 +972 22820 0.7190 +972 22872 0.5270 +972 22927 0.7160 +972 22984 0.9670 +972 23054 0.5570 +972 23135 0.5570 +972 23148 0.4300 +972 23160 0.7990 +972 23164 0.4360 +972 23173 0.6580 +972 23204 0.8530 +972 23252 0.6770 +972 23395 0.4820 +972 23405 0.5720 +972 23517 0.4260 +972 23521 0.9430 +972 23566 0.4870 +972 23640 0.7740 +972 25873 0.9810 +972 25879 0.7850 +972 25885 0.8020 +972 25983 0.7900 +972 26052 0.5170 +972 26054 0.4350 +972 26135 0.8320 +972 26156 0.7710 +972 26251 0.5010 +972 26271 0.5330 +972 26289 0.4700 +972 26574 0.8340 +972 26589 0.8210 +972 26958 0.8380 +972 27012 0.5010 +972 27292 0.5270 +972 27335 0.7170 +972 27340 0.7920 +972 27341 0.7780 +972 27430 0.4690 +972 27436 0.5460 +972 28987 0.5590 +972 28991 0.4600 +972 28998 0.8470 +972 29088 0.5800 +972 29093 0.8360 +972 29102 0.5720 +972 29126 0.4800 +972 29789 0.4540 +972 29851 0.4660 +972 29922 0.4840 +972 29927 0.8690 +972 29978 0.5030 +972 29979 0.5030 +972 30836 0.7810 +972 50613 0.5030 +972 50808 0.4700 +972 50814 0.4680 +972 51021 0.9700 +972 51023 0.6250 +972 51065 0.9340 +972 51069 0.8360 +972 51073 0.8350 +972 51077 0.7890 +972 51079 0.4150 +972 51081 0.8450 +972 51096 0.7960 +972 51106 0.5270 +972 51116 0.7730 +972 51118 0.7660 +972 51119 0.5080 +972 51121 0.9370 +972 51128 0.5630 +972 51149 0.9090 +972 51154 0.8880 +972 51187 0.6090 +972 51263 0.5880 +972 51264 0.9510 +972 51314 0.5770 +972 51319 0.9270 +972 51386 0.5770 +972 51520 0.4700 +972 51602 0.7980 +972 51727 0.4700 +972 54059 0.4430 +972 54148 0.4280 +972 54209 0.6020 +972 54464 0.4930 +972 54516 0.5330 +972 54948 0.7760 +972 54965 0.4280 +972 55052 0.9590 +972 55127 0.7910 +972 55143 0.4760 +972 55157 0.4370 +972 55168 0.6250 +972 55173 0.8880 +972 55176 0.8530 +972 55226 0.7940 +972 55272 0.9380 +972 55316 0.9230 +972 55324 0.5110 +972 55591 0.6460 +972 55601 0.4820 +972 55651 0.6630 +972 55699 0.4220 +972 55703 0.7780 +972 55720 0.4720 +972 55781 0.7680 +972 55813 0.7810 +972 55854 0.4620 +972 56479 0.5010 +972 56648 0.7650 +972 56893 0.5030 +972 56902 0.5570 +972 56965 0.5980 +972 57050 0.7850 +972 57120 0.5050 +972 57129 0.7670 +972 57136 0.6120 +972 57823 0.4780 +972 58191 0.5510 +972 60488 0.8270 +972 60558 0.6770 +972 60678 0.5470 +972 63875 0.9710 +972 63931 0.8350 +972 64146 0.7630 +972 64216 0.5270 +972 64374 0.7740 +972 64432 0.6470 +972 64581 0.6890 +972 64805 0.5790 +972 64960 0.8270 +972 64965 0.9570 +972 64968 0.9690 +972 64969 0.8880 +972 64975 0.8170 +972 64976 0.7920 +972 64978 0.5250 +972 64979 0.9710 +972 64981 0.7720 +972 64983 0.9680 +972 65003 0.7740 +972 65005 0.9680 +972 65008 0.8340 +972 65080 0.5720 +972 65083 0.7920 +972 65121 0.5800 +972 65122 0.5800 +972 65993 0.4840 +972 79050 0.8120 +972 79571 0.5570 +972 79590 0.8360 +972 79631 0.8060 +972 79668 0.6220 +972 79853 0.4910 +972 79954 0.7810 +972 80146 0.4680 +972 80222 0.4280 +972 80270 0.4760 +972 84128 0.7660 +972 84135 0.7790 +972 84166 0.4800 +972 84172 0.7800 +972 84340 0.4180 +972 84545 0.7720 +972 84851 0.4400 +972 84888 0.5440 +972 84916 0.7880 +972 84946 0.7950 +972 84993 0.5030 +972 85027 0.4060 +972 85377 0.4970 +972 85476 0.8060 +972 87178 0.6120 +972 90313 0.6110 +972 90865 0.5340 +972 91574 0.5330 +972 92196 0.6490 +972 92399 0.8940 +972 92856 0.7710 +972 93107 0.5010 +972 93517 0.4680 +972 93550 0.5880 +972 96459 0.4930 +972 114781 0.4220 +972 114803 0.4050 +972 114987 0.8880 +972 116541 0.6120 +972 116832 0.9310 +972 118487 0.5750 +972 121227 0.6000 +972 122481 0.4700 +972 123283 0.4280 +972 124454 0.7050 +972 124995 0.5840 +972 126402 0.8450 +972 130340 0.5170 +972 140032 0.8610 +972 140801 0.9300 +972 143244 0.7650 +972 143630 0.5040 +972 148022 0.4060 +972 153443 0.5270 +972 157310 0.5330 +972 158067 0.4740 +972 164153 0.5990 +972 169522 0.5010 +972 170850 0.5010 +972 200916 0.9040 +972 219927 0.9690 +972 221264 0.4700 +972 221613 0.5540 +972 254268 0.9050 +972 255308 0.6220 +972 283518 0.5010 +972 285855 0.9320 +972 338773 0.5920 +972 342538 0.4300 +972 343068 0.5800 +972 343070 0.5800 +972 345630 0.6520 +972 347487 0.9340 +972 374659 0.7690 +972 387129 0.8520 +972 387712 0.5350 +972 390999 0.5800 +972 391002 0.5800 +972 400258 0.4870 +972 400735 0.5800 +972 400736 0.5800 +972 440560 0.5800 +972 440561 0.5800 +972 441873 0.5800 +972 474382 0.5640 +972 641776 0.6860 +972 642489 0.4060 +972 643909 0.6860 +972 645051 0.6520 +972 645073 0.6520 +972 645359 0.5800 +972 653619 0.5800 +972 654364 0.4840 +972 727897 0.5970 +972 728524 0.6860 +972 728689 0.6740 +972 729396 0.6520 +972 729422 0.6520 +972 729428 0.6520 +972 729431 0.6520 +972 729442 0.6520 +972 729447 0.6520 +972 729528 0.5800 +972 100008586 0.6520 +972 100132399 0.6520 +972 100287482 0.7730 +972 100505478 0.8050 +972 100526842 0.9350 +972 100529097 0.8370 +972 100529239 0.9350 +972 100996746 0.6860 +972 101929983 0.5800 +972 102157402 0.8010 +972 102724473 0.6520 +972 105180390 0.6860 +972 105180391 0.6860 +972 114483834 0.5110 +973 974 0.9990 +973 975 0.6120 +973 1043 0.5940 +973 1084 0.4940 +973 1113 0.4620 +973 1236 0.6310 +973 1378 0.4780 +973 1380 0.8860 +973 1436 0.4060 +973 1493 0.4740 +973 1789 0.5280 +973 1791 0.8080 +973 1879 0.7320 +973 1956 0.4160 +973 2022 0.7330 +973 2099 0.4630 +973 2205 0.4900 +973 2206 0.6380 +973 2208 0.6020 +973 2209 0.4350 +973 2213 0.4630 +973 2335 0.5090 +973 2526 0.6760 +973 2534 0.9320 +973 2838 0.4820 +973 2885 0.7370 +973 3001 0.4310 +973 3002 0.5620 +973 3003 0.4490 +973 3059 0.4180 +973 3112 0.6020 +973 3113 0.4510 +973 3122 0.5320 +973 3394 0.4820 +973 3399 0.6340 +973 3476 0.4320 +973 3480 0.4290 +973 3543 0.9970 +973 3563 0.4680 +973 3574 0.4170 +973 3575 0.5050 +973 3627 0.5350 +973 3635 0.5440 +973 3662 0.6840 +973 3684 0.7010 +973 3687 0.5350 +973 3688 0.4250 +973 3689 0.4210 +973 3695 0.5800 +973 3708 0.5450 +973 3709 0.5130 +973 3710 0.5410 +973 3791 0.4730 +973 3815 0.5810 +973 3902 0.4450 +973 3937 0.5860 +973 4046 0.4290 +973 4050 0.4010 +973 4064 0.5680 +973 4067 0.9990 +973 4069 0.5270 +973 4162 0.4060 +973 4208 0.5450 +973 4267 0.5440 +973 4283 0.9880 +973 4311 0.8700 +973 4353 0.6500 +973 4609 0.5450 +973 4684 0.7220 +973 4690 0.8010 +973 4790 0.4180 +973 4818 0.6730 +973 4907 0.6860 +973 5079 0.9460 +973 5133 0.4060 +973 5175 0.5460 +973 5238 0.4910 +973 5284 0.8190 +973 5293 0.8070 +973 5295 0.6130 +973 5336 0.7840 +973 5368 0.5110 +973 5450 0.9130 +973 5579 0.4970 +973 5583 0.6230 +973 5604 0.4670 +973 5605 0.4260 +973 5777 0.8110 +973 5783 0.4360 +973 5788 0.8590 +973 5790 0.5100 +973 5896 0.4970 +973 5996 0.5740 +973 6363 0.5940 +973 6367 0.4150 +973 6382 0.8460 +973 6464 0.4590 +973 6654 0.4950 +973 6688 0.4980 +973 6689 0.6360 +973 6693 0.8430 +973 6714 0.6420 +973 6850 0.9960 +973 6929 0.5180 +973 7037 0.6560 +973 7040 0.5320 +973 7070 0.7410 +973 7072 0.5800 +973 7124 0.4130 +973 7128 0.4670 +973 7157 0.4680 +973 7177 0.4240 +973 7187 0.5700 +973 7297 0.5530 +973 7409 0.7530 +973 7441 0.9940 +973 7494 0.5270 +973 7525 0.4450 +973 7535 0.7140 +973 7852 0.4840 +973 8115 0.7110 +973 8440 0.4010 +973 8445 0.4620 +973 8915 0.4740 +973 9214 0.5500 +973 9260 0.4040 +973 9308 0.4710 +973 9332 0.5690 +973 9355 0.4280 +973 10019 0.4320 +973 10320 0.5030 +973 10326 0.5250 +973 10398 0.4100 +973 10563 0.6460 +973 10578 0.4370 +973 10603 0.4570 +973 10673 0.6740 +973 10892 0.5420 +973 11025 0.5750 +973 23075 0.5950 +973 23495 0.5370 +973 23621 0.7270 +973 26228 0.4830 +973 29760 0.9980 +973 29802 0.9340 +973 30011 0.4880 +973 50615 0.5030 +973 50943 0.4270 +973 51237 0.8150 +973 51303 0.4840 +973 51338 0.4050 +973 54106 0.6300 +973 54923 0.5780 +973 55024 0.6410 +973 55423 0.5590 +973 56262 0.5820 +973 56971 0.4320 +973 57379 0.5140 +973 64925 0.4700 +973 79368 0.5510 +973 83416 0.7020 +973 83417 0.4880 +973 84433 0.7970 +973 84824 0.8230 +973 90273 0.5160 +973 115350 0.5410 +973 115352 0.5140 +973 115650 0.6250 +973 118429 0.4720 +973 118788 0.6250 +973 128646 0.5310 +973 140885 0.5850 +973 151888 0.6750 +973 199786 0.4460 +973 284759 0.5200 +973 374383 0.5090 +973 390714 0.6100 +973 100271849 0.4300 +973 100423062 0.9840 +973 102723407 0.9650 +974 975 0.7020 +974 1043 0.6030 +974 1236 0.4480 +974 1380 0.8220 +974 1387 0.6390 +974 1442 0.4270 +974 1443 0.4330 +974 1791 0.4290 +974 1879 0.5750 +974 2033 0.5470 +974 2146 0.4780 +974 2206 0.6060 +974 2208 0.5370 +974 2213 0.6540 +974 2217 0.4390 +974 2534 0.8370 +974 2689 0.4490 +974 2885 0.6000 +974 3112 0.6050 +974 3309 0.4350 +974 3394 0.5270 +974 3543 0.9960 +974 3560 0.4430 +974 3563 0.4190 +974 3575 0.4730 +974 3662 0.6130 +974 3683 0.5060 +974 3687 0.4760 +974 3689 0.4190 +974 3695 0.5340 +974 3708 0.5330 +974 3709 0.4990 +974 3710 0.5420 +974 3937 0.4190 +974 4050 0.4700 +974 4064 0.4650 +974 4067 0.9970 +974 4261 0.5320 +974 4283 0.9890 +974 4311 0.6040 +974 4345 0.5190 +974 4609 0.4850 +974 4684 0.4160 +974 4690 0.4880 +974 4790 0.4270 +974 4818 0.4870 +974 4851 0.4270 +974 4853 0.4180 +974 5079 0.8600 +974 5238 0.4610 +974 5284 0.6420 +974 5293 0.8360 +974 5295 0.7180 +974 5336 0.8250 +974 5450 0.8120 +974 5579 0.5050 +974 5626 0.4220 +974 5777 0.7470 +974 5788 0.7290 +974 5790 0.5520 +974 5896 0.4880 +974 6329 0.4560 +974 6382 0.4750 +974 6654 0.4710 +974 6688 0.4730 +974 6689 0.6800 +974 6693 0.7770 +974 6714 0.6940 +974 6850 0.9970 +974 6929 0.4610 +974 7128 0.5900 +974 7157 0.4540 +974 7184 0.4420 +974 7409 0.7040 +974 7441 0.9930 +974 7535 0.7980 +974 7852 0.5280 +974 8085 0.5070 +974 8115 0.6510 +974 8764 0.4640 +974 8915 0.5300 +974 9214 0.5660 +974 9308 0.4950 +974 9437 0.4550 +974 10019 0.4200 +974 10320 0.5220 +974 10326 0.5170 +974 10603 0.4520 +974 10672 0.4470 +974 10673 0.4920 +974 10750 0.4300 +974 10870 0.4560 +974 10892 0.5510 +974 22806 0.4890 +974 23075 0.6170 +974 23495 0.6040 +974 29760 0.9610 +974 29802 0.9250 +974 29851 0.4100 +974 30011 0.4880 +974 50615 0.4060 +974 51237 0.6610 +974 54923 0.5600 +974 55024 0.5890 +974 55423 0.5600 +974 56262 0.6580 +974 57379 0.5710 +974 57705 0.4270 +974 79368 0.4810 +974 79718 0.4890 +974 81607 0.5250 +974 83416 0.5060 +974 84329 0.4860 +974 84433 0.8830 +974 84824 0.7610 +974 89857 0.5000 +974 115350 0.4540 +974 115352 0.4460 +974 115650 0.7180 +974 118788 0.6980 +974 120425 0.4120 +974 128646 0.5260 +974 140885 0.5790 +974 151888 0.4350 +974 199786 0.5700 +974 202309 0.4550 +974 284759 0.5170 +974 374383 0.5040 +974 390714 0.6020 +974 100271849 0.5190 +974 100423062 0.9710 +974 102723407 0.9480 +975 977 0.9260 +975 1028 0.5260 +975 1039 0.4950 +975 1282 0.4790 +975 1291 0.4770 +975 1293 0.4220 +975 1364 0.4950 +975 1365 0.4750 +975 1366 0.9970 +975 1378 0.6230 +975 1380 0.9980 +975 1499 0.4060 +975 1604 0.4660 +975 1739 0.5960 +975 1803 0.4760 +975 1950 0.5420 +975 1956 0.8860 +975 1969 0.7500 +975 2022 0.5900 +975 2035 0.4400 +975 2064 0.5800 +975 2086 0.5760 +975 2184 0.4320 +975 2194 0.4070 +975 2319 0.7640 +975 2335 0.6620 +975 2524 0.5500 +975 2597 0.7520 +975 2719 0.8870 +975 2767 0.6030 +975 2771 0.4210 +975 2776 0.9250 +975 2782 0.5220 +975 2801 0.5850 +975 2817 0.4720 +975 2885 0.4760 +975 3091 0.5840 +975 3135 0.4100 +975 3156 0.4050 +975 3265 0.5320 +975 3308 0.9590 +975 3312 0.8700 +975 3320 0.8260 +975 3321 0.6250 +975 3326 0.8280 +975 3383 0.8370 +975 3385 0.4550 +975 3439 0.4750 +975 3442 0.5200 +975 3443 0.5180 +975 3444 0.5190 +975 3445 0.5240 +975 3448 0.5210 +975 3458 0.4940 +975 3543 0.4770 +975 3553 0.5310 +975 3565 0.4460 +975 3569 0.5750 +975 3586 0.4600 +975 3661 0.4630 +975 3674 0.5350 +975 3675 0.7220 +975 3676 0.7450 +975 3678 0.4650 +975 3683 0.4120 +975 3684 0.6650 +975 3685 0.5860 +975 3687 0.4050 +975 3688 0.9950 +975 3689 0.6260 +975 3690 0.4150 +975 3691 0.5060 +975 3700 0.4010 +975 3732 0.9840 +975 3784 0.5170 +975 3815 0.5980 +975 3897 0.5660 +975 3903 0.4700 +975 3912 0.4110 +975 3915 0.4300 +975 3916 0.7290 +975 3920 0.4380 +975 4067 0.7020 +975 4071 0.4970 +975 4072 0.6960 +975 4162 0.4490 +975 4179 0.7160 +975 4218 0.4790 +975 4240 0.7090 +975 4267 0.6220 +975 4283 0.5290 +975 4311 0.5890 +975 4478 0.4950 +975 4547 0.4520 +975 4676 0.5320 +975 4684 0.5190 +975 4851 0.4220 +975 4907 0.7280 +975 5175 0.5820 +975 5478 0.5180 +975 5578 0.5020 +975 5737 0.4910 +975 5738 0.9990 +975 5781 0.4750 +975 5788 0.6070 +975 5868 0.4620 +975 5873 0.6270 +975 5874 0.5340 +975 5912 0.4480 +975 5962 0.5620 +975 6150 0.5030 +975 6302 0.6270 +975 6347 0.4190 +975 6382 0.6290 +975 6386 0.8870 +975 6464 0.6820 +975 6490 0.4800 +975 6610 0.5170 +975 6614 0.4010 +975 6693 0.4150 +975 6772 0.4540 +975 6774 0.4350 +975 6939 0.4300 +975 7037 0.7320 +975 7040 0.4720 +975 7042 0.4860 +975 7070 0.6030 +975 7098 0.4330 +975 7099 0.6080 +975 7102 0.5220 +975 7103 0.5460 +975 7106 0.6980 +975 7122 0.5200 +975 7124 0.5290 +975 7132 0.4200 +975 7157 0.4570 +975 7184 0.4900 +975 7251 0.9950 +975 7262 0.6400 +975 7412 0.6340 +975 7430 0.4590 +975 7474 0.4350 +975 7481 0.6410 +975 7837 0.5650 +975 7852 0.6380 +975 8519 0.9990 +975 8694 0.4130 +975 8766 0.4820 +975 8801 0.6240 +975 8904 0.4390 +975 9069 0.4280 +975 9074 0.6000 +975 9075 0.4350 +975 9076 0.9980 +975 9080 0.6030 +975 9246 0.4510 +975 9289 0.5940 +975 9332 0.4140 +975 9341 0.4190 +975 9368 0.6000 +975 9398 0.5800 +975 9525 0.4180 +975 10015 0.8030 +975 10016 0.4480 +975 10077 0.7680 +975 10078 0.7110 +975 10098 0.5250 +975 10099 0.4970 +975 10211 0.9070 +975 10332 0.5820 +975 10410 0.4470 +975 10672 0.5040 +975 11021 0.6450 +975 22914 0.5280 +975 23495 0.4540 +975 23541 0.5060 +975 23555 0.5610 +975 25827 0.4440 +975 25939 0.5380 +975 27111 0.7800 +975 27161 0.4630 +975 29126 0.6190 +975 29851 0.5510 +975 29881 0.7090 +975 30816 0.8630 +975 30835 0.7620 +975 51284 0.6130 +975 51303 0.7230 +975 51534 0.5270 +975 55361 0.4530 +975 55512 0.5740 +975 57124 0.4930 +975 57153 0.4830 +975 57506 0.4680 +975 64866 0.4350 +975 80381 0.5870 +975 81619 0.5460 +975 84961 0.4500 +975 92714 0.4220 +975 93185 0.9970 +975 115650 0.4180 +975 117157 0.4500 +975 135228 0.5420 +975 137902 0.5560 +975 140885 0.4670 +975 144448 0.4240 +975 153443 0.7990 +975 255738 0.5550 +975 405754 0.5790 +975 653145 0.6900 +975 728378 0.4380 +975 100133941 0.4880 +975 100423062 0.5380 +975 100506658 0.9740 +976 1234 0.4560 +976 1525 0.6360 +976 1604 0.9990 +976 1880 0.4200 +976 1902 0.9730 +976 2534 0.4120 +976 2768 0.8110 +976 2870 0.4490 +976 3684 0.5620 +976 3685 0.4680 +976 3689 0.4350 +976 3916 0.4550 +976 4179 0.5590 +976 5020 0.4070 +976 6343 0.7330 +976 6403 0.4820 +976 7070 0.7510 +976 7099 0.5400 +976 7132 0.4040 +976 8638 0.4230 +976 23555 0.4520 +976 29992 0.4480 +976 30817 0.4720 +976 51206 0.4530 +977 999 0.5820 +977 1285 0.5740 +977 1286 0.6040 +977 1287 0.5770 +977 1294 0.6100 +977 1308 0.9920 +977 1366 0.4870 +977 1508 0.6320 +977 1956 0.9440 +977 2335 0.4520 +977 2814 0.9940 +977 3308 0.7050 +977 3320 0.8340 +977 3326 0.8340 +977 3383 0.5930 +977 3655 0.9620 +977 3672 0.5530 +977 3675 0.9930 +977 3678 0.7800 +977 3685 0.4150 +977 3688 0.9490 +977 3690 0.5450 +977 3691 0.9600 +977 3732 0.7700 +977 3897 0.6300 +977 3909 0.5940 +977 3914 0.6390 +977 3918 0.5630 +977 3921 0.4230 +977 3959 0.5440 +977 4059 0.4850 +977 4072 0.5970 +977 4179 0.6480 +977 4313 0.5380 +977 4316 0.6730 +977 4318 0.5740 +977 4323 0.5960 +977 4478 0.4700 +977 4627 0.4090 +977 5329 0.4590 +977 5339 0.9880 +977 5737 0.4030 +977 5738 0.9670 +977 5747 0.6080 +977 6094 0.4350 +977 6281 0.4850 +977 6302 0.4610 +977 6386 0.4210 +977 6591 0.5110 +977 6614 0.6560 +977 6939 0.4460 +977 7103 0.6660 +977 7184 0.4270 +977 7251 0.4620 +977 7379 0.4240 +977 7380 0.6630 +977 7430 0.6490 +977 7514 0.4300 +977 8349 0.4520 +977 9032 0.6560 +977 9332 0.6180 +977 10077 0.8050 +977 10098 0.4170 +977 10100 0.4810 +977 10109 0.4390 +977 10867 0.5270 +977 23363 0.5250 +977 23554 0.4440 +977 23626 0.7200 +977 30827 0.5350 +977 30835 0.5490 +977 51206 0.5940 +977 54762 0.7830 +977 57124 0.5030 +977 80349 0.6310 +977 80381 0.4280 +977 80781 0.4430 +977 81619 0.4080 +977 93185 0.5870 +977 135228 0.5930 +977 283677 0.9830 +977 339834 0.6720 +977 101928601 0.9800 +978 1031 0.5450 +978 1066 0.9160 +978 1499 0.6690 +978 1503 0.5870 +978 1633 0.9960 +978 1635 0.9210 +978 1716 0.6820 +978 1719 0.5070 +978 1723 0.6010 +978 1786 0.5200 +978 1806 0.7250 +978 1808 0.4930 +978 1841 0.8910 +978 1854 0.5120 +978 1890 0.9970 +978 1902 0.4970 +978 2030 0.7140 +978 2597 0.4620 +978 2617 0.5980 +978 2618 0.4910 +978 2821 0.4220 +978 3177 0.4650 +978 3728 0.5910 +978 4018 0.5800 +978 4141 0.4100 +978 4355 0.6600 +978 4524 0.5040 +978 4705 0.5830 +978 4860 0.9470 +978 4907 0.9350 +978 5478 0.4470 +978 6240 0.6590 +978 6241 0.4190 +978 6470 0.4110 +978 6728 0.4870 +978 6729 0.5670 +978 6897 0.5290 +978 6923 0.4260 +978 7083 0.9210 +978 7084 0.9720 +978 7157 0.4330 +978 7167 0.4260 +978 7298 0.9250 +978 7371 0.9770 +978 7372 0.6380 +978 7374 0.7710 +978 7378 0.9970 +978 8065 0.5010 +978 8451 0.4450 +978 8825 0.6200 +978 8833 0.4150 +978 9060 0.7970 +978 9061 0.7920 +978 9107 0.6190 +978 9153 0.5340 +978 9154 0.7000 +978 9170 0.5590 +978 9582 0.8880 +978 9615 0.5180 +978 10434 0.4250 +978 10930 0.8400 +978 11232 0.6060 +978 22978 0.9370 +978 23583 0.6190 +978 25939 0.4770 +978 26166 0.4290 +978 26284 0.8760 +978 27231 0.5370 +978 27350 0.8660 +978 29974 0.7060 +978 30833 0.9270 +978 51071 0.9240 +978 51251 0.9330 +978 51678 0.6190 +978 51727 0.6160 +978 51733 0.4240 +978 51816 0.4150 +978 54059 0.5670 +978 54148 0.5290 +978 54963 0.9740 +978 54965 0.5290 +978 54981 0.5400 +978 55020 0.4710 +978 56474 0.5270 +978 56953 0.9140 +978 57379 0.7850 +978 60489 0.9450 +978 64078 0.6950 +978 66036 0.5970 +978 79598 0.5830 +978 80222 0.5290 +978 80817 0.4320 +978 83549 0.9770 +978 84305 0.4730 +978 84618 0.9280 +978 85363 0.4700 +978 90353 0.4040 +978 93034 0.9070 +978 113179 0.6770 +978 115024 0.9180 +978 123283 0.5290 +978 129607 0.8640 +978 134637 0.5780 +978 139596 0.7130 +978 140564 0.8670 +978 144193 0.4010 +978 151531 0.9970 +978 164668 0.8690 +978 200315 0.9200 +978 200316 0.8370 +978 200895 0.5020 +978 403314 0.8480 +978 100526794 0.9020 +978 101927367 0.5980 +983 984 0.5700 +983 988 0.4990 +983 990 0.9630 +983 991 0.9990 +983 993 0.9930 +983 994 0.9980 +983 995 0.9990 +983 996 0.9420 +983 999 0.5060 +983 1000 0.4650 +983 1017 0.9940 +983 1018 0.8940 +983 1020 0.4610 +983 1021 0.5790 +983 1022 0.9760 +983 1026 0.9980 +983 1027 0.9780 +983 1028 0.9520 +983 1029 0.8180 +983 1030 0.5000 +983 1031 0.5710 +983 1032 0.5120 +983 1033 0.9820 +983 1058 0.9890 +983 1060 0.5950 +983 1062 0.9730 +983 1063 0.9780 +983 1104 0.6080 +983 1111 0.9110 +983 1119 0.5230 +983 1163 0.9990 +983 1164 0.9990 +983 1200 0.5130 +983 1263 0.5480 +983 1277 0.4910 +983 1385 0.5020 +983 1387 0.5330 +983 1432 0.5520 +983 1434 0.5480 +983 1453 0.4760 +983 1457 0.5850 +983 1499 0.7000 +983 1523 0.6940 +983 1601 0.5840 +983 1616 0.5310 +983 1642 0.4050 +983 1647 0.9970 +983 1719 0.5710 +983 1763 0.6640 +983 1778 0.8400 +983 1780 0.4170 +983 1781 0.8100 +983 1783 0.4380 +983 1786 0.5790 +983 1789 0.4120 +983 1841 0.4370 +983 1854 0.4190 +983 1869 0.9090 +983 1870 0.5970 +983 1871 0.5120 +983 1874 0.7530 +983 1875 0.7180 +983 1894 0.9630 +983 1950 0.5000 +983 1956 0.8490 +983 1977 0.5870 +983 1978 0.4100 +983 1982 0.5250 +983 1994 0.5580 +983 2017 0.5650 +983 2029 0.8050 +983 2033 0.7260 +983 2064 0.5170 +983 2068 0.4930 +983 2091 0.4090 +983 2099 0.5440 +983 2146 0.9650 +983 2175 0.6970 +983 2176 0.6300 +983 2177 0.5480 +983 2189 0.4500 +983 2237 0.8290 +983 2268 0.5030 +983 2305 0.9910 +983 2308 0.6250 +983 2309 0.8900 +983 2313 0.6030 +983 2316 0.6260 +983 2335 0.6050 +983 2353 0.6390 +983 2354 0.4750 +983 2475 0.5170 +983 2491 0.8280 +983 2534 0.4250 +983 2547 0.7500 +983 2597 0.6630 +983 2624 0.4940 +983 2697 0.9220 +983 2786 0.4140 +983 2788 0.4080 +983 2801 0.6540 +983 2810 0.9630 +983 2923 0.4890 +983 2932 0.4930 +983 2956 0.4260 +983 3005 0.9500 +983 3007 0.4740 +983 3009 0.8900 +983 3012 0.5990 +983 3013 0.4930 +983 3014 0.8820 +983 3015 0.7440 +983 3017 0.6370 +983 3018 0.7260 +983 3021 0.8060 +983 3024 0.9310 +983 3055 0.4680 +983 3059 0.4550 +983 3065 0.8400 +983 3066 0.4650 +983 3068 0.4270 +983 3070 0.6640 +983 3091 0.7930 +983 3093 0.5420 +983 3146 0.4780 +983 3148 0.5260 +983 3159 0.6940 +983 3161 0.9310 +983 3169 0.7870 +983 3265 0.4220 +983 3303 0.5150 +983 3304 0.5340 +983 3305 0.4370 +983 3308 0.7390 +983 3315 0.4130 +983 3320 0.9100 +983 3326 0.8090 +983 3337 0.4680 +983 3364 0.4020 +983 3383 0.4810 +983 3434 0.5120 +983 3482 0.4440 +983 3569 0.6130 +983 3608 0.5300 +983 3619 0.9470 +983 3630 0.4300 +983 3643 0.4590 +983 3654 0.5210 +983 3685 0.4030 +983 3725 0.7780 +983 3796 0.6070 +983 3832 0.9870 +983 3833 0.7760 +983 3835 0.6050 +983 3838 0.8480 +983 3845 0.7270 +983 3875 0.5560 +983 3925 0.6000 +983 3930 0.6230 +983 3978 0.4760 +983 4000 0.6120 +983 4001 0.8970 +983 4067 0.8890 +983 4082 0.4570 +983 4085 0.9920 +983 4087 0.5790 +983 4134 0.6560 +983 4137 0.7090 +983 4155 0.4340 +983 4170 0.7900 +983 4171 0.8050 +983 4172 0.7480 +983 4173 0.8270 +983 4174 0.7400 +983 4175 0.7670 +983 4176 0.8460 +983 4193 0.8290 +983 4194 0.6660 +983 4216 0.4470 +983 4218 0.5810 +983 4255 0.4440 +983 4288 0.9390 +983 4292 0.5020 +983 4314 0.4120 +983 4318 0.6250 +983 4331 0.5780 +983 4430 0.4250 +983 4436 0.5270 +983 4605 0.7430 +983 4609 0.7550 +983 4613 0.5590 +983 4616 0.9810 +983 4624 0.5300 +983 4659 0.7450 +983 4661 0.5180 +983 4678 0.4610 +983 4691 0.7210 +983 4735 0.4940 +983 4751 0.9190 +983 4790 0.5460 +983 4792 0.4400 +983 4801 0.4160 +983 4841 0.4320 +983 4851 0.4230 +983 4869 0.5250 +983 4893 0.4590 +983 4926 0.8510 +983 4927 0.4710 +983 4928 0.6040 +983 4998 0.8620 +983 4999 0.7370 +983 5000 0.6280 +983 5001 0.6650 +983 5004 0.4760 +983 5048 0.8810 +983 5052 0.4850 +983 5111 0.9300 +983 5116 0.5300 +983 5128 0.4370 +983 5245 0.4260 +983 5347 0.9930 +983 5366 0.4580 +983 5371 0.4010 +983 5422 0.6450 +983 5424 0.4750 +983 5427 0.6510 +983 5460 0.6690 +983 5499 0.5570 +983 5500 0.4230 +983 5501 0.7290 +983 5515 0.8010 +983 5516 0.6400 +983 5518 0.8960 +983 5519 0.6750 +983 5520 0.8070 +983 5521 0.6130 +983 5525 0.6090 +983 5526 0.5520 +983 5527 0.6850 +983 5528 0.5950 +983 5529 0.5380 +983 5531 0.4630 +983 5538 0.6730 +983 5557 0.6000 +983 5558 0.4460 +983 5567 0.4780 +983 5576 0.4140 +983 5591 0.5370 +983 5594 0.6930 +983 5597 0.8020 +983 5604 0.8370 +983 5610 0.4670 +983 5663 0.4760 +983 5684 0.5110 +983 5687 0.4170 +983 5727 0.5080 +983 5728 0.6160 +983 5770 0.4880 +983 5777 0.4220 +983 5832 0.4280 +983 5861 0.4810 +983 5883 0.4910 +983 5884 0.4290 +983 5885 0.7180 +983 5888 0.8370 +983 5893 0.4770 +983 5898 0.4090 +983 5902 0.4350 +983 5903 0.6240 +983 5905 0.5750 +983 5925 0.9950 +983 5928 0.6050 +983 5932 0.5570 +983 5933 0.6630 +983 5934 0.7160 +983 5970 0.5860 +983 5982 0.4550 +983 5983 0.7120 +983 5984 0.8320 +983 5985 0.5290 +983 6047 0.4160 +983 6117 0.7630 +983 6118 0.6910 +983 6119 0.4490 +983 6188 0.4770 +983 6194 0.4190 +983 6197 0.4740 +983 6217 0.4630 +983 6232 0.4360 +983 6233 0.6980 +983 6240 0.7770 +983 6241 0.9730 +983 6249 0.8300 +983 6396 0.4540 +983 6419 0.5340 +983 6491 0.7560 +983 6500 0.4940 +983 6502 0.9430 +983 6615 0.4080 +983 6654 0.5180 +983 6657 0.9610 +983 6667 0.6560 +983 6714 0.6590 +983 6742 0.4190 +983 6772 0.4170 +983 6774 0.5540 +983 6790 0.9510 +983 6795 0.8580 +983 6907 0.4390 +983 6925 0.4700 +983 6941 0.6460 +983 7001 0.5860 +983 7011 0.4300 +983 7013 0.5440 +983 7015 0.4850 +983 7027 0.7760 +983 7029 0.6220 +983 7083 0.8400 +983 7094 0.9090 +983 7112 0.4910 +983 7124 0.4290 +983 7153 0.9970 +983 7155 0.5490 +983 7157 0.9620 +983 7158 0.8270 +983 7161 0.4460 +983 7175 0.5330 +983 7248 0.7100 +983 7249 0.6000 +983 7272 0.9050 +983 7295 0.4090 +983 7298 0.8460 +983 7306 0.9160 +983 7311 0.5500 +983 7314 0.6000 +983 7316 0.5950 +983 7321 0.6410 +983 7324 0.5710 +983 7329 0.5350 +983 7337 0.5930 +983 7341 0.4430 +983 7345 0.6200 +983 7371 0.5460 +983 7409 0.4260 +983 7416 0.4770 +983 7443 0.5630 +983 7465 0.9980 +983 7486 0.6270 +983 7514 0.8690 +983 7520 0.4830 +983 7525 0.5720 +983 7531 0.6040 +983 7704 0.4780 +983 7837 0.5560 +983 7852 0.5320 +983 7884 0.7420 +983 8021 0.4760 +983 8086 0.4300 +983 8091 0.5880 +983 8161 0.4010 +983 8208 0.4270 +983 8243 0.6190 +983 8290 0.8060 +983 8317 0.7840 +983 8318 0.9520 +983 8331 0.4710 +983 8334 0.4740 +983 8337 0.6440 +983 8338 0.6450 +983 8340 0.6440 +983 8341 0.6370 +983 8342 0.6370 +983 8345 0.6450 +983 8347 0.6310 +983 8348 0.6400 +983 8349 0.7990 +983 8356 0.8120 +983 8361 0.8200 +983 8369 0.5990 +983 8379 0.7150 +983 8438 0.7800 +983 8454 0.4950 +983 8480 0.5770 +983 8555 0.4420 +983 8556 0.9140 +983 8562 0.4300 +983 8615 0.4540 +983 8655 0.8370 +983 8697 0.8950 +983 8766 0.6270 +983 8772 0.6190 +983 8812 0.5760 +983 8826 0.4240 +983 8836 0.4650 +983 8878 0.7620 +983 8881 0.8790 +983 8900 0.9990 +983 8914 0.6220 +983 8945 0.5940 +983 8970 0.6420 +983 9055 0.9370 +983 9088 0.9950 +983 9097 0.4380 +983 9113 0.8690 +983 9126 0.7220 +983 9133 0.9990 +983 9134 0.9330 +983 9156 0.9590 +983 9183 0.6100 +983 9184 0.9240 +983 9212 0.9970 +983 9232 0.9850 +983 9319 0.8450 +983 9401 0.6210 +983 9493 0.9140 +983 9531 0.6080 +983 9585 0.5380 +983 9631 0.5840 +983 9636 0.5270 +983 9656 0.4480 +983 9663 0.5160 +983 9682 0.4030 +983 9688 0.5700 +983 9696 0.4120 +983 9698 0.4820 +983 9700 0.9950 +983 9735 0.7510 +983 9738 0.5340 +983 9748 0.9020 +983 9768 0.8770 +983 9787 0.9570 +983 9793 0.9110 +983 9818 0.4670 +983 9824 0.7450 +983 9833 0.9020 +983 9837 0.7260 +983 9883 0.4520 +983 9918 0.7890 +983 9928 0.8950 +983 9972 0.5840 +983 9978 0.4280 +983 10013 0.5430 +983 10014 0.4020 +983 10018 0.4690 +983 10024 0.5470 +983 10051 0.9060 +983 10055 0.4020 +983 10059 0.5480 +983 10075 0.4420 +983 10112 0.9580 +983 10131 0.4640 +983 10133 0.5660 +983 10146 0.5970 +983 10155 0.4430 +983 10190 0.5270 +983 10213 0.4410 +983 10252 0.4570 +983 10274 0.5890 +983 10309 0.7350 +983 10393 0.9300 +983 10403 0.9570 +983 10413 0.5990 +983 10419 0.4340 +983 10434 0.4020 +983 10460 0.7820 +983 10519 0.5010 +983 10524 0.4810 +983 10535 0.4760 +983 10592 0.8620 +983 10600 0.6950 +983 10606 0.4500 +983 10614 0.4040 +983 10615 0.9270 +983 10635 0.8440 +983 10643 0.4900 +983 10721 0.4660 +983 10726 0.5630 +983 10733 0.9460 +983 10735 0.5470 +983 10744 0.9130 +983 10762 0.5270 +983 10769 0.5550 +983 10776 0.7980 +983 10848 0.8710 +983 10912 0.9820 +983 10926 0.6710 +983 10928 0.6100 +983 10971 0.7240 +983 10983 0.5560 +983 11004 0.9720 +983 11065 0.9820 +983 11073 0.6020 +983 11097 0.4260 +983 11113 0.4520 +983 11130 0.9500 +983 11140 0.6380 +983 11169 0.5970 +983 11178 0.6920 +983 11200 0.6790 +983 11243 0.4460 +983 11339 0.8460 +983 22849 0.9190 +983 22858 0.4480 +983 22905 0.4690 +983 22919 0.8420 +983 22974 0.9520 +983 22995 0.6030 +983 23047 0.5700 +983 23063 0.6490 +983 23122 0.5590 +983 23133 0.5530 +983 23165 0.5540 +983 23175 0.5480 +983 23225 0.5180 +983 23244 0.6400 +983 23279 0.4750 +983 23310 0.7520 +983 23332 0.8490 +983 23354 0.5310 +983 23397 0.9070 +983 23411 0.6540 +983 23421 0.5600 +983 23476 0.6730 +983 23511 0.4820 +983 23552 0.5140 +983 23594 0.7430 +983 23595 0.6270 +983 23636 0.5140 +983 24137 0.9110 +983 25788 0.4110 +983 25847 0.6960 +983 25886 0.4300 +983 25906 0.5960 +983 25909 0.5550 +983 25913 0.4270 +983 25936 0.4490 +983 25939 0.8500 +983 26227 0.4300 +983 26271 0.9370 +983 26277 0.4210 +983 26353 0.4080 +983 26586 0.8420 +983 27152 0.5630 +983 27338 0.7430 +983 28984 0.6450 +983 29028 0.6440 +983 29089 0.8440 +983 29127 0.9600 +983 29128 0.6330 +983 29781 0.5070 +983 29882 0.7370 +983 29904 0.5030 +983 29945 0.9980 +983 29980 0.5520 +983 50484 0.5800 +983 51024 0.4250 +983 51053 0.8670 +983 51143 0.5120 +983 51203 0.9460 +983 51343 0.9830 +983 51433 0.7630 +983 51434 0.6840 +983 51496 0.4010 +983 51512 0.7960 +983 51514 0.9050 +983 51529 0.6400 +983 51547 0.4200 +983 51574 0.4580 +983 51659 0.6590 +983 51720 0.5630 +983 51806 0.4530 +983 53371 0.4540 +983 54069 0.5870 +983 54145 0.6360 +983 54205 0.6410 +983 54443 0.8160 +983 54478 0.7480 +983 54541 0.4910 +983 54619 0.4100 +983 54801 0.6570 +983 54820 0.8900 +983 54821 0.9020 +983 54875 0.6040 +983 54892 0.7730 +983 54908 0.6860 +983 54930 0.5530 +983 54962 0.4440 +983 55010 0.7260 +983 55040 0.4660 +983 55055 0.7810 +983 55125 0.4770 +983 55142 0.5390 +983 55143 0.9900 +983 55165 0.9570 +983 55166 0.6740 +983 55215 0.8530 +983 55247 0.5400 +983 55255 0.5870 +983 55294 0.6280 +983 55299 0.4660 +983 55320 0.6040 +983 55355 0.9100 +983 55388 0.8840 +983 55559 0.5090 +983 55635 0.8490 +983 55706 0.6200 +983 55723 0.6410 +983 55746 0.5240 +983 55766 0.4540 +983 55789 0.7620 +983 55795 0.5650 +983 55835 0.4440 +983 55839 0.8310 +983 55844 0.7650 +983 55920 0.7080 +983 56947 0.4110 +983 56992 0.8560 +983 57082 0.8380 +983 57122 0.5810 +983 57369 0.9030 +983 57405 0.8950 +983 57551 0.4250 +983 57650 0.5720 +983 57805 0.4260 +983 59274 0.4470 +983 63967 0.7300 +983 64061 0.7150 +983 64105 0.7890 +983 64151 0.9810 +983 64223 0.4210 +983 64506 0.9380 +983 64682 0.9360 +983 64689 0.6200 +983 64710 0.6310 +983 64785 0.4380 +983 64857 0.5110 +983 64858 0.4270 +983 64900 0.5320 +983 64946 0.7230 +983 79003 0.4850 +983 79019 0.8510 +983 79023 0.6340 +983 79075 0.5250 +983 79172 0.6020 +983 79441 0.5480 +983 79444 0.5540 +983 79648 0.5850 +983 79682 0.9140 +983 79733 0.7340 +983 79801 0.6980 +983 79840 0.4370 +983 79866 0.9110 +983 79902 0.5130 +983 79935 0.7610 +983 79980 0.7100 +983 79991 0.4140 +983 80010 0.5490 +983 80124 0.7940 +983 80152 0.7050 +983 80198 0.5240 +983 80315 0.9210 +983 80776 0.4990 +983 81565 0.7100 +983 81610 0.7600 +983 81620 0.9670 +983 81624 0.5410 +983 81631 0.5130 +983 81669 0.9990 +983 81876 0.4280 +983 81929 0.5000 +983 81930 0.8430 +983 83461 0.9730 +983 83473 0.4970 +983 83540 0.9570 +983 83660 0.7430 +983 83879 0.5560 +983 83903 0.7720 +983 84056 0.4050 +983 84057 0.8050 +983 84101 0.5680 +983 84260 0.5090 +983 84515 0.6960 +983 84643 0.5780 +983 84790 0.4170 +983 84823 0.5380 +983 84930 0.8700 +983 84962 0.4170 +983 85236 0.6390 +983 85417 0.9890 +983 89839 0.5430 +983 90381 0.7270 +983 90417 0.6410 +983 91687 0.5420 +983 91754 0.5080 +983 91860 0.4270 +983 92292 0.4390 +983 93323 0.6050 +983 94239 0.6090 +983 113115 0.4200 +983 113130 0.9790 +983 114799 0.5180 +983 115106 0.6380 +983 116028 0.4610 +983 117177 0.5710 +983 119504 0.5690 +983 121441 0.4770 +983 126353 0.5990 +983 126520 0.5220 +983 128239 0.4550 +983 128312 0.6310 +983 129401 0.5760 +983 132864 0.9190 +983 133482 0.6970 +983 137902 0.5520 +983 140735 0.4290 +983 143471 0.4120 +983 144455 0.6440 +983 146909 0.5370 +983 146956 0.6530 +983 147841 0.7670 +983 150468 0.7970 +983 151246 0.7480 +983 151648 0.9020 +983 157313 0.8320 +983 157570 0.7530 +983 158983 0.4060 +983 163688 0.4270 +983 163786 0.5430 +983 166979 0.7810 +983 203068 0.5740 +983 219970 0.4510 +983 220134 0.9030 +983 221150 0.8010 +983 222229 0.4420 +983 245711 0.9490 +983 246184 0.7250 +983 255626 0.6270 +983 256364 0.5090 +983 259266 0.9420 +983 283431 0.4890 +983 285231 0.4060 +983 285955 0.9030 +983 286151 0.9520 +983 286436 0.4060 +983 286826 0.4320 +983 345079 0.4400 +983 348235 0.5810 +983 348654 0.4470 +983 348995 0.4870 +983 378708 0.6280 +983 387103 0.6770 +983 387778 0.9490 +983 388333 0.9130 +983 400668 0.5500 +983 401541 0.5540 +983 402569 0.4320 +983 440093 0.6890 +983 440686 0.7000 +983 440689 0.4100 +983 441272 0.9000 +983 441273 0.9000 +983 442590 0.9000 +983 474382 0.4540 +983 494551 0.9530 +983 645121 0.5120 +983 653604 0.8120 +983 728642 0.5150 +983 729597 0.9000 +983 100101267 0.4630 +983 100287520 0.4210 +983 100310812 0.9000 +983 100532731 0.6180 +983 100996746 0.9020 +983 102723555 0.9000 +983 114483833 0.4060 +984 1022 0.4270 +984 1069 0.5080 +984 1453 0.5950 +984 1454 0.5550 +984 1459 0.6750 +984 1639 0.5220 +984 1778 0.5150 +984 1781 0.5040 +984 1975 0.5070 +984 2810 0.4890 +984 3320 0.7570 +984 3399 0.4310 +984 4751 0.5190 +984 4957 0.5070 +984 5048 0.5130 +984 5058 0.5330 +984 5108 0.5210 +984 5116 0.7050 +984 5347 0.5580 +984 5518 0.5080 +984 5566 0.5090 +984 5577 0.4990 +984 5803 0.4340 +984 6433 0.6110 +984 6829 0.4010 +984 7277 0.4990 +984 7283 0.5630 +984 7531 0.6760 +984 7532 0.6310 +984 7536 0.5090 +984 7706 0.4480 +984 7813 0.4930 +984 7840 0.4990 +984 7846 0.5190 +984 8233 0.4960 +984 8481 0.5150 +984 8510 0.8580 +984 8621 0.5800 +984 8636 0.5150 +984 8655 0.5040 +984 8665 0.4330 +984 8812 0.5890 +984 8943 0.5190 +984 9295 0.5100 +984 9662 0.5400 +984 9702 0.4990 +984 9738 0.4990 +984 9793 0.5480 +984 9814 0.5170 +984 10121 0.5120 +984 10142 0.5180 +984 10382 0.5000 +984 10383 0.5100 +984 10540 0.5030 +984 10733 0.5360 +984 10806 0.5050 +984 10844 0.4070 +984 10921 0.6470 +984 11064 0.5140 +984 11116 0.5380 +984 11140 0.7070 +984 11143 0.4630 +984 11190 0.5190 +984 11258 0.5030 +984 22897 0.5340 +984 22919 0.5510 +984 22981 0.5010 +984 22994 0.5600 +984 22995 0.5040 +984 23168 0.4950 +984 23216 0.4970 +984 23332 0.5310 +984 23354 0.5350 +984 23476 0.4440 +984 29115 0.8350 +984 51574 0.4240 +984 51684 0.5420 +984 54801 0.5310 +984 54820 0.5230 +984 54930 0.4990 +984 55125 0.5410 +984 55142 0.5040 +984 55153 0.4080 +984 55559 0.5010 +984 55672 0.4650 +984 55722 0.4990 +984 55755 0.5130 +984 55835 0.5450 +984 57018 0.8390 +984 58517 0.4240 +984 79441 0.5040 +984 79720 0.4290 +984 79959 0.4990 +984 80184 0.5050 +984 80321 0.4990 +984 81669 0.5630 +984 84131 0.5120 +984 93323 0.5330 +984 95681 0.4990 +984 115098 0.4350 +984 115106 0.5030 +984 118856 0.7630 +984 121441 0.5210 +984 203068 0.5210 +984 728642 0.4160 +987 1130 0.4520 +987 1380 0.4450 +987 1493 0.8590 +987 1503 0.4020 +987 4068 0.4370 +987 4791 0.4180 +987 5293 0.4010 +987 5295 0.4720 +987 5336 0.4020 +987 5566 0.7180 +987 5567 0.7260 +987 5568 0.7170 +987 5580 0.4600 +987 6774 0.4380 +987 6813 0.5580 +987 7174 0.4590 +987 8821 0.4160 +987 9652 0.4730 +987 23495 0.5910 +987 29851 0.4730 +987 30849 0.6580 +987 50943 0.4980 +987 54967 0.4140 +987 55294 0.6650 +987 57217 0.6240 +987 81704 0.5850 +987 84320 0.4090 +987 84433 0.4280 +987 115650 0.5050 +987 201294 0.4080 +987 343035 0.4220 +987 359948 0.4620 +988 989 0.4480 +988 991 0.6850 +988 993 0.4870 +988 996 0.6880 +988 997 0.4360 +988 1017 0.5290 +988 1025 0.5490 +988 1026 0.7190 +988 1029 0.4130 +988 1108 0.4430 +988 1111 0.4420 +988 1263 0.8860 +988 1457 0.4880 +988 1459 0.5800 +988 1477 0.4870 +988 1478 0.7140 +988 1479 0.7410 +988 1654 0.6850 +988 1655 0.4970 +988 1659 0.9990 +988 1660 0.7640 +988 1662 0.4470 +988 1665 0.9960 +988 1778 0.5300 +988 1791 0.4260 +988 1842 0.7380 +988 1869 0.4100 +988 1894 0.7160 +988 1938 0.7270 +988 1973 0.4050 +988 1974 0.4020 +988 1993 0.4970 +988 2146 0.4170 +988 2483 0.8200 +988 2521 0.5660 +988 2626 0.4200 +988 2960 0.4070 +988 2962 0.4310 +988 3065 0.6270 +988 3066 0.5270 +988 3178 0.5850 +988 3181 0.4650 +988 3183 0.6050 +988 3184 0.4230 +988 3190 0.4190 +988 3308 0.4250 +988 3312 0.9910 +988 3338 0.4920 +988 3550 0.6310 +988 3608 0.5280 +988 3621 0.4260 +988 3622 0.4380 +988 4116 0.9300 +988 4133 0.4370 +988 4172 0.7890 +988 4173 0.7030 +988 4174 0.5130 +988 4176 0.4300 +988 4236 0.9420 +988 4609 0.5280 +988 4670 0.7320 +988 4686 0.9310 +988 4848 0.4130 +988 4904 0.4030 +988 4993 0.5140 +988 4998 0.8040 +988 4999 0.8030 +988 5001 0.4890 +988 5347 0.8260 +988 5356 0.9990 +988 5394 0.4200 +988 5411 0.4390 +988 5496 0.4490 +988 5499 0.6520 +988 5511 0.7720 +988 5546 0.4370 +988 5591 0.5100 +988 5704 0.5120 +988 5705 0.5140 +988 5708 0.5140 +988 5885 0.5030 +988 5903 0.4860 +988 5912 0.5970 +988 5930 0.4110 +988 5932 0.5040 +988 5936 0.4020 +988 6093 0.4570 +988 6117 0.5760 +988 6118 0.4430 +988 6136 0.5610 +988 6137 0.4380 +988 6188 0.4800 +988 6201 0.4140 +988 6217 0.4160 +988 6230 0.5580 +988 6421 0.6920 +988 6426 0.9570 +988 6427 0.7570 +988 6429 0.8480 +988 6430 0.8460 +988 6431 0.8430 +988 6434 0.4180 +988 6625 0.7000 +988 6626 0.9590 +988 6627 0.9990 +988 6628 0.9950 +988 6629 0.9980 +988 6631 0.5650 +988 6632 0.9990 +988 6633 0.9990 +988 6634 0.9990 +988 6635 0.9990 +988 6636 0.9990 +988 6637 0.9990 +988 6638 0.9690 +988 6711 0.4130 +988 6729 0.5220 +988 6732 0.8440 +988 6733 0.8330 +988 6749 0.5390 +988 6871 0.4050 +988 6950 0.4660 +988 7073 0.4590 +988 7150 0.8230 +988 7153 0.5650 +988 7175 0.5730 +988 7307 0.7790 +988 7392 0.6890 +988 7486 0.6910 +988 7520 0.5260 +988 7528 0.4760 +988 7534 0.4020 +988 7536 0.9830 +988 7737 0.9980 +988 7919 0.5860 +988 8087 0.5130 +988 8161 0.4790 +988 8175 0.9980 +988 8241 0.4570 +988 8243 0.4710 +988 8317 0.4550 +988 8449 0.9970 +988 8452 0.4160 +988 8458 0.5430 +988 8464 0.6610 +988 8467 0.5720 +988 8493 0.5030 +988 8537 0.4380 +988 8539 0.5360 +988 8556 0.6330 +988 8559 0.9440 +988 8570 0.4830 +988 8653 0.6300 +988 8683 0.4930 +988 8880 0.4880 +988 8886 0.4990 +988 8896 0.9990 +988 8899 0.5890 +988 9055 0.4080 +988 9088 0.4060 +988 9092 0.9790 +988 9126 0.6630 +988 9129 0.7860 +988 9138 0.4950 +988 9156 0.5210 +988 9188 0.6430 +988 9212 0.6590 +988 9219 0.4730 +988 9343 0.9990 +988 9360 0.9070 +988 9401 0.4030 +988 9410 0.9990 +988 9416 0.8210 +988 9419 0.8010 +988 9475 0.4540 +988 9493 0.5310 +988 9541 0.8140 +988 9584 0.9560 +988 9689 0.4790 +988 9700 0.6930 +988 9704 0.8060 +988 9716 0.9990 +988 9733 0.4540 +988 9774 0.5400 +988 9775 0.9760 +988 9785 0.9970 +988 9790 0.4350 +988 9794 0.4740 +988 9814 0.5180 +988 9879 0.8350 +988 9939 0.8480 +988 9967 0.4800 +988 9984 0.4270 +988 9985 0.4980 +988 9987 0.4710 +988 10051 0.5000 +988 10078 0.6630 +988 10084 0.8390 +988 10189 0.7870 +988 10212 0.5520 +988 10250 0.9450 +988 10262 0.9720 +988 10283 0.9970 +988 10286 0.9990 +988 10291 0.9980 +988 10393 0.5460 +988 10450 0.9970 +988 10465 0.4220 +988 10521 0.4390 +988 10524 0.8530 +988 10527 0.4670 +988 10569 0.9970 +988 10594 0.9990 +988 10640 0.5100 +988 10733 0.4910 +988 10735 0.4210 +988 10769 0.5680 +988 10891 0.8340 +988 10898 0.4800 +988 10907 0.4880 +988 10914 0.4190 +988 10915 0.9850 +988 10926 0.4790 +988 10946 0.9970 +988 10949 0.4380 +988 10973 0.8330 +988 10985 0.4800 +988 10992 0.9970 +988 11103 0.4370 +988 11143 0.6010 +988 11157 0.8410 +988 11193 0.5730 +988 11198 0.5910 +988 11235 0.4660 +988 11325 0.4430 +988 11338 0.9970 +988 22794 0.8190 +988 22828 0.6270 +988 22889 0.6060 +988 22907 0.4980 +988 22913 0.4220 +988 22916 0.9820 +988 22938 0.9990 +988 22944 0.8170 +988 22985 0.4110 +988 23019 0.6070 +988 23020 0.9980 +988 23028 0.4460 +988 23029 0.4840 +988 23047 0.4690 +988 23063 0.4750 +988 23082 0.8360 +988 23091 0.9180 +988 23211 0.4010 +988 23244 0.4010 +988 23265 0.4350 +988 23283 0.4380 +988 23309 0.4260 +988 23350 0.8530 +988 23398 0.8970 +988 23435 0.5730 +988 23450 0.9970 +988 23451 0.9990 +988 23476 0.6240 +988 23512 0.4010 +988 23517 0.5480 +988 23524 0.9990 +988 23592 0.7970 +988 23658 0.8530 +988 23759 0.9560 +988 24144 0.8810 +988 24148 0.7890 +988 24149 0.5950 +988 25766 0.9650 +988 25804 0.8380 +988 25836 0.4190 +988 25942 0.5700 +988 25949 0.9990 +988 25980 0.5140 +988 26009 0.4440 +988 26017 0.8390 +988 26054 0.4950 +988 26121 0.5020 +988 26146 0.4150 +988 26168 0.5780 +988 26576 0.8010 +988 26986 0.5320 +988 27000 0.4310 +988 27185 0.6170 +988 27238 0.8700 +988 27258 0.8250 +988 27316 0.8900 +988 27339 0.9990 +988 29079 0.4850 +988 29101 0.5990 +988 29115 0.4180 +988 29117 0.4210 +988 29127 0.6610 +988 29889 0.5150 +988 29896 0.4880 +988 51147 0.4150 +988 51202 0.4700 +988 51322 0.8280 +988 51340 0.9990 +988 51343 0.5400 +988 51362 0.9990 +988 51428 0.4430 +988 51503 0.9990 +988 51538 0.6880 +988 51574 0.7310 +988 51585 0.6020 +988 51634 0.9940 +988 51639 0.9070 +988 51645 0.9990 +988 51663 0.5450 +988 51690 0.8350 +988 51691 0.8480 +988 51692 0.6180 +988 51729 0.9740 +988 51741 0.5760 +988 51747 0.4320 +988 51773 0.5370 +988 53938 0.4410 +988 53981 0.6760 +988 54443 0.4550 +988 54505 0.4830 +988 54514 0.6490 +988 54556 0.4780 +988 54606 0.5520 +988 54883 0.9980 +988 55015 0.9620 +988 55094 0.5180 +988 55100 0.8260 +988 55110 0.8370 +988 55147 0.8540 +988 55192 0.9860 +988 55234 0.6590 +988 55280 0.9770 +988 55285 0.7730 +988 55339 0.5880 +988 55388 0.7220 +988 55599 0.7580 +988 55660 0.8360 +988 55677 0.4560 +988 55692 0.4250 +988 55696 0.9990 +988 55702 0.9990 +988 55749 0.4100 +988 55760 0.8080 +988 55770 0.4680 +988 55832 0.4040 +988 55837 0.5520 +988 55854 0.4740 +988 56254 0.4040 +988 56259 0.9990 +988 56521 0.4920 +988 56919 0.7920 +988 56949 0.9990 +988 57124 0.4210 +988 57187 0.9530 +988 57325 0.5180 +988 57461 0.9960 +988 57466 0.6610 +988 57647 0.6140 +988 57696 0.4950 +988 57703 0.9990 +988 57708 0.4680 +988 57819 0.8770 +988 58509 0.9370 +988 58517 0.5220 +988 59286 0.8910 +988 60412 0.4730 +988 60496 0.4830 +988 60625 0.8090 +988 63967 0.6490 +988 64794 0.4210 +988 64802 0.6100 +988 64848 0.4890 +988 65117 0.4010 +988 79005 0.9000 +988 79009 0.4960 +988 79446 0.8950 +988 79576 0.8150 +988 79577 0.5700 +988 79631 0.7240 +988 79637 0.9220 +988 79650 0.7940 +988 79665 0.6520 +988 79696 0.7980 +988 79706 0.8540 +988 79753 0.9580 +988 79811 0.5950 +988 79866 0.5040 +988 79869 0.4100 +988 79903 0.5140 +988 80011 0.9020 +988 80198 0.4600 +988 80218 0.5550 +988 80331 0.8690 +988 80742 0.8650 +988 81576 0.9580 +988 81608 0.4910 +988 81620 0.9860 +988 81624 0.4180 +988 81669 0.4440 +988 81890 0.5050 +988 83443 0.9030 +988 83938 0.7860 +988 84060 0.8110 +988 84081 0.9610 +988 84148 0.7590 +988 84277 0.4920 +988 84289 0.4270 +988 84292 0.6270 +988 84316 0.6470 +988 84811 0.9970 +988 84844 0.9930 +988 84950 0.9350 +988 84967 0.8520 +988 84991 0.6790 +988 85313 0.5610 +988 85476 0.7230 +988 85479 0.8690 +988 90204 0.4140 +988 90381 0.4400 +988 90627 0.4240 +988 90957 0.5200 +988 91603 0.6770 +988 92906 0.4770 +988 93974 0.6300 +988 122402 0.4640 +988 124245 0.6970 +988 126259 0.6470 +988 126520 0.5670 +988 133396 0.6300 +988 140831 0.4140 +988 140890 0.6120 +988 143884 0.9920 +988 146956 0.4560 +988 147650 0.6470 +988 151903 0.9810 +988 153527 0.9080 +988 154007 0.8630 +988 163859 0.9400 +988 164045 0.8370 +988 165545 0.8070 +988 170506 0.5210 +988 199746 0.6060 +988 220074 0.7860 +988 222183 0.8990 +988 256536 0.8420 +988 342184 0.5480 +988 392517 0.4550 +988 728294 0.4260 +988 100534599 0.9910 +988 101669762 0.8830 +989 990 0.4780 +989 1000 0.4990 +989 1062 0.8000 +989 1072 0.5780 +989 1073 0.5410 +989 1122 0.5490 +989 1410 0.4200 +989 1627 0.4220 +989 1639 0.4820 +989 1731 0.9330 +989 1742 0.5580 +989 1759 0.4050 +989 1950 0.4970 +989 2017 0.5800 +989 2290 0.4280 +989 3059 0.6020 +989 3064 0.4270 +989 3148 0.4090 +989 3516 0.5520 +989 4134 0.4620 +989 4137 0.4090 +989 4218 0.6960 +989 4627 0.5380 +989 4659 0.4620 +989 4690 0.7610 +989 4735 0.9990 +989 4854 0.5120 +989 4855 0.5170 +989 4925 0.4740 +989 5339 0.4610 +989 5413 0.9930 +989 5414 0.9980 +989 5597 0.9060 +989 5757 0.4340 +989 6182 0.4690 +989 6275 0.5460 +989 6507 0.4260 +989 6616 0.4750 +989 6709 0.4420 +989 6790 0.5010 +989 6812 0.4640 +989 6855 0.4170 +989 7155 0.5280 +989 7157 0.4530 +989 7251 0.5220 +989 7329 0.4070 +989 7341 0.5270 +989 7979 0.6660 +989 8317 0.4620 +989 8402 0.4270 +989 8440 0.4640 +989 8546 0.4230 +989 8550 0.8260 +989 8556 0.4500 +989 8604 0.4150 +989 8878 0.4880 +989 8896 0.4290 +989 9025 0.4310 +989 9295 0.4980 +989 9322 0.4360 +989 9588 0.4450 +989 10013 0.9020 +989 10096 0.6540 +989 10109 0.4220 +989 10112 0.5920 +989 10165 0.4100 +989 10435 0.7240 +989 10602 0.8430 +989 10787 0.4180 +989 10801 0.9990 +989 11020 0.5150 +989 11200 0.5150 +989 22938 0.4100 +989 23157 0.9990 +989 23176 0.9890 +989 23262 0.4140 +989 23580 0.9020 +989 23594 0.4280 +989 23607 0.6350 +989 26999 0.4230 +989 30837 0.7750 +989 51057 0.5590 +989 51174 0.4370 +989 51514 0.4030 +989 54443 0.8100 +989 54504 0.5300 +989 54851 0.4290 +989 55055 0.4890 +989 55752 0.9990 +989 55964 0.9880 +989 56943 0.5880 +989 65108 0.4440 +989 81570 0.4610 +989 81620 0.5890 +989 90120 0.7110 +989 116983 0.6100 +989 122809 0.7750 +989 124404 0.9920 +989 148170 0.8420 +989 151011 0.9790 +989 346288 0.9550 +989 415117 0.5560 +989 492311 0.4600 +990 991 0.9210 +990 993 0.8200 +990 994 0.5230 +990 995 0.8180 +990 996 0.8530 +990 1017 0.9990 +990 1018 0.6950 +990 1019 0.8360 +990 1021 0.8200 +990 1022 0.4200 +990 1026 0.9270 +990 1027 0.4370 +990 1029 0.9220 +990 1030 0.5300 +990 1033 0.6730 +990 1058 0.6400 +990 1062 0.5520 +990 1063 0.6400 +990 1104 0.4220 +990 1111 0.9410 +990 1163 0.6350 +990 1164 0.6440 +990 1642 0.5390 +990 1663 0.4140 +990 1719 0.6270 +990 1763 0.5780 +990 1841 0.4620 +990 1854 0.4210 +990 1869 0.9770 +990 1870 0.6770 +990 1871 0.5880 +990 1874 0.8450 +990 1875 0.7290 +990 1876 0.4690 +990 1894 0.5160 +990 2073 0.4010 +990 2146 0.4940 +990 2177 0.4500 +990 2237 0.8440 +990 2305 0.6570 +990 2491 0.4100 +990 2597 0.4330 +990 2648 0.4090 +990 3014 0.5860 +990 3021 0.5520 +990 3070 0.8160 +990 3091 0.7970 +990 3161 0.5840 +990 3207 0.5320 +990 3239 0.5470 +990 3619 0.4500 +990 3832 0.8700 +990 3833 0.4600 +990 3835 0.4530 +990 3838 0.5320 +990 3845 0.5270 +990 3978 0.6190 +990 4001 0.4080 +990 4085 0.7540 +990 4090 0.5170 +990 4117 0.7870 +990 4171 0.9990 +990 4172 0.9990 +990 4173 0.9990 +990 4174 0.9990 +990 4175 0.9990 +990 4176 0.9990 +990 4288 0.6690 +990 4605 0.6910 +990 4609 0.7940 +990 4678 0.5000 +990 4751 0.6480 +990 4869 0.5090 +990 4998 0.9990 +990 4999 0.9990 +990 5000 0.9990 +990 5001 0.9990 +990 5111 0.7160 +990 5127 0.6070 +990 5128 0.6040 +990 5129 0.6330 +990 5218 0.6130 +990 5347 0.8090 +990 5422 0.9070 +990 5424 0.6810 +990 5426 0.7970 +990 5427 0.9430 +990 5515 0.4190 +990 5520 0.4570 +990 5521 0.4620 +990 5523 0.8500 +990 5557 0.8700 +990 5558 0.8410 +990 5682 0.4230 +990 5683 0.4510 +990 5684 0.4160 +990 5685 0.4450 +990 5686 0.4190 +990 5687 0.4160 +990 5688 0.4190 +990 5689 0.4310 +990 5690 0.4270 +990 5691 0.4550 +990 5692 0.4090 +990 5693 0.4230 +990 5694 0.4020 +990 5695 0.4420 +990 5696 0.4220 +990 5698 0.4210 +990 5699 0.4160 +990 5700 0.4460 +990 5701 0.4940 +990 5702 0.4260 +990 5704 0.4400 +990 5705 0.4530 +990 5706 0.4120 +990 5707 0.4360 +990 5708 0.4160 +990 5709 0.4730 +990 5710 0.4150 +990 5711 0.4420 +990 5713 0.4190 +990 5714 0.4160 +990 5715 0.4030 +990 5716 0.4270 +990 5717 0.4390 +990 5718 0.6380 +990 5719 0.4280 +990 5720 0.4130 +990 5721 0.4390 +990 5728 0.5090 +990 5883 0.4900 +990 5884 0.6280 +990 5885 0.5200 +990 5888 0.8230 +990 5891 0.7880 +990 5925 0.6330 +990 5928 0.6320 +990 5933 0.4870 +990 5934 0.7250 +990 5979 0.4060 +990 5980 0.4170 +990 5981 0.4240 +990 5982 0.7160 +990 5983 0.7850 +990 5984 0.8390 +990 5985 0.5960 +990 6117 0.7230 +990 6118 0.7030 +990 6119 0.7120 +990 6233 0.6770 +990 6240 0.7490 +990 6241 0.9290 +990 6491 0.4450 +990 6500 0.5010 +990 6502 0.7460 +990 6594 0.4310 +990 6790 0.7610 +990 7013 0.4420 +990 7027 0.6880 +990 7029 0.6320 +990 7048 0.4370 +990 7083 0.6890 +990 7150 0.5550 +990 7153 0.7970 +990 7157 0.7410 +990 7158 0.5370 +990 7272 0.7990 +990 7298 0.6390 +990 7311 0.4990 +990 7314 0.5650 +990 7316 0.5890 +990 7321 0.5360 +990 7324 0.4580 +990 7465 0.7070 +990 7486 0.4670 +990 7884 0.4810 +990 7979 0.4320 +990 8208 0.5190 +990 8243 0.4440 +990 8290 0.5530 +990 8317 0.9770 +990 8318 0.9940 +990 8356 0.5680 +990 8361 0.5540 +990 8438 0.6010 +990 8450 0.4960 +990 8451 0.5040 +990 8454 0.5110 +990 8467 0.4700 +990 8555 0.4480 +990 8556 0.7650 +990 8697 0.8070 +990 8850 0.4100 +990 8881 0.7010 +990 8900 0.9930 +990 8914 0.6630 +990 9055 0.5390 +990 9088 0.6860 +990 9126 0.5440 +990 9133 0.9610 +990 9134 0.9310 +990 9156 0.9660 +990 9184 0.4040 +990 9212 0.8550 +990 9232 0.6710 +990 9319 0.6500 +990 9401 0.6780 +990 9493 0.6640 +990 9585 0.4330 +990 9700 0.8550 +990 9735 0.7670 +990 9768 0.5240 +990 9780 0.5450 +990 9787 0.8550 +990 9833 0.7190 +990 9837 0.7440 +990 9861 0.4200 +990 9918 0.6830 +990 9928 0.5060 +990 10036 0.6080 +990 10051 0.7280 +990 10053 0.4120 +990 10075 0.6050 +990 10112 0.5910 +990 10197 0.4730 +990 10213 0.4970 +990 10309 0.4760 +990 10319 0.8970 +990 10393 0.7560 +990 10403 0.6160 +990 10460 0.4710 +990 10517 0.4930 +990 10535 0.4130 +990 10592 0.7160 +990 10606 0.4670 +990 10615 0.5620 +990 10626 0.4970 +990 10635 0.6600 +990 10733 0.6400 +990 10744 0.4970 +990 10926 0.9560 +990 10983 0.4650 +990 11004 0.7130 +990 11065 0.8350 +990 11073 0.7930 +990 11130 0.7100 +990 11143 0.7480 +990 11169 0.9160 +990 11200 0.8030 +990 11339 0.5330 +990 22858 0.8000 +990 22974 0.6810 +990 23198 0.4010 +990 23397 0.6500 +990 23476 0.4990 +990 23594 0.9990 +990 23595 0.9990 +990 23649 0.8850 +990 24137 0.5630 +990 25788 0.4500 +990 25836 0.4910 +990 25906 0.4960 +990 26271 0.6510 +990 27152 0.4700 +990 27338 0.6490 +990 28227 0.9520 +990 29028 0.7030 +990 29089 0.5580 +990 29127 0.4690 +990 29128 0.6430 +990 29882 0.5350 +990 29935 0.5660 +990 29945 0.6570 +990 29980 0.5060 +990 50484 0.4590 +990 51053 0.9050 +990 51203 0.7660 +990 51270 0.5680 +990 51343 0.9180 +990 51433 0.8170 +990 51434 0.6810 +990 51514 0.9630 +990 51529 0.6500 +990 51617 0.5470 +990 51659 0.7050 +990 54107 0.6270 +990 54443 0.5790 +990 54478 0.4140 +990 54541 0.4840 +990 54821 0.5250 +990 54892 0.6060 +990 54962 0.7320 +990 55023 0.4090 +990 55055 0.4680 +990 55063 0.5180 +990 55143 0.8190 +990 55165 0.6300 +990 55215 0.4800 +990 55247 0.4530 +990 55255 0.6220 +990 55294 0.6570 +990 55355 0.5520 +990 55388 0.9980 +990 55536 0.5190 +990 55635 0.5370 +990 55723 0.6480 +990 55789 0.4470 +990 55839 0.4990 +990 55957 0.5900 +990 56655 0.5870 +990 56852 0.4610 +990 56992 0.6280 +990 57405 0.4710 +990 57418 0.9620 +990 57650 0.5180 +990 63895 0.5460 +990 63922 0.6030 +990 63967 0.8670 +990 64105 0.4080 +990 64151 0.6670 +990 64682 0.7210 +990 64785 0.8500 +990 64946 0.4360 +990 65061 0.5910 +990 65258 0.5910 +990 79019 0.4790 +990 79075 0.6540 +990 79682 0.4710 +990 79733 0.9340 +990 79801 0.5690 +990 79892 0.6200 +990 79915 0.7460 +990 79935 0.6150 +990 80119 0.4260 +990 80174 0.4170 +990 81620 0.9990 +990 81624 0.4580 +990 81669 0.8560 +990 81930 0.5810 +990 83461 0.5880 +990 83540 0.7170 +990 83743 0.6920 +990 83879 0.6000 +990 83990 0.4620 +990 84057 0.4650 +990 84126 0.8560 +990 84250 0.4610 +990 84261 0.4930 +990 84296 0.7850 +990 84515 0.9930 +990 84687 0.4240 +990 84823 0.4620 +990 84930 0.7460 +990 85417 0.6910 +990 90381 0.8120 +990 91750 0.6150 +990 113130 0.7080 +990 114799 0.5170 +990 116211 0.8180 +990 119504 0.5010 +990 122769 0.4450 +990 132660 0.6640 +990 133482 0.5750 +990 144455 0.9160 +990 146909 0.4300 +990 147179 0.8000 +990 151648 0.5160 +990 152098 0.5180 +990 157313 0.6280 +990 157570 0.6570 +990 157777 0.8180 +990 166979 0.6000 +990 200895 0.4090 +990 220134 0.5660 +990 221150 0.5390 +990 222229 0.5190 +990 246184 0.7270 +990 253714 0.4610 +990 254394 0.9780 +990 259266 0.6230 +990 286826 0.6910 +990 345079 0.4650 +990 348654 0.4990 +990 349136 0.4930 +990 374286 0.4930 +990 387103 0.4640 +990 387893 0.4600 +990 440093 0.5530 +990 440686 0.5530 +990 644672 0.5560 +990 645121 0.4650 +990 653604 0.5540 +990 728642 0.5560 +990 100533467 0.4010 +991 993 0.8390 +991 994 0.7860 +991 995 0.9000 +991 996 0.9990 +991 997 0.4640 +991 1017 0.9920 +991 1018 0.6650 +991 1019 0.7850 +991 1021 0.7360 +991 1026 0.8530 +991 1027 0.4260 +991 1029 0.4630 +991 1033 0.8850 +991 1058 0.9860 +991 1060 0.8360 +991 1062 0.9890 +991 1063 0.9900 +991 1070 0.4200 +991 1104 0.4850 +991 1111 0.7710 +991 1119 0.4670 +991 1163 0.9710 +991 1164 0.9710 +991 1211 0.4190 +991 1263 0.5550 +991 1387 0.5710 +991 1616 0.4590 +991 1778 0.5260 +991 1780 0.5170 +991 1781 0.5180 +991 1783 0.5000 +991 1803 0.4130 +991 1841 0.4520 +991 1869 0.8280 +991 1870 0.4890 +991 1874 0.4450 +991 1894 0.7260 +991 1911 0.5500 +991 1912 0.5530 +991 2033 0.7500 +991 2145 0.5060 +991 2146 0.5070 +991 2177 0.4170 +991 2237 0.6640 +991 2305 0.9370 +991 2308 0.4660 +991 2313 0.4120 +991 2491 0.8020 +991 2597 0.4740 +991 2648 0.4080 +991 3014 0.4460 +991 3015 0.4440 +991 3021 0.5340 +991 3065 0.5360 +991 3066 0.4860 +991 3070 0.5180 +991 3093 0.5360 +991 3161 0.8820 +991 3265 0.4650 +991 3297 0.5500 +991 3397 0.4900 +991 3619 0.9640 +991 3796 0.8780 +991 3832 0.9870 +991 3833 0.9150 +991 3835 0.8370 +991 3838 0.7120 +991 3875 0.4440 +991 3925 0.5130 +991 4001 0.4500 +991 4085 0.9990 +991 4144 0.5200 +991 4170 0.5020 +991 4171 0.7330 +991 4172 0.8450 +991 4173 0.8820 +991 4174 0.8620 +991 4175 0.8390 +991 4176 0.8210 +991 4193 0.4060 +991 4288 0.9340 +991 4436 0.5630 +991 4521 0.5150 +991 4601 0.9940 +991 4605 0.8650 +991 4609 0.5810 +991 4678 0.4820 +991 4751 0.9990 +991 4761 0.7760 +991 4904 0.4430 +991 4926 0.4100 +991 4928 0.8270 +991 4956 0.5410 +991 4998 0.6540 +991 5048 0.8270 +991 5111 0.7980 +991 5116 0.6340 +991 5127 0.5440 +991 5128 0.5270 +991 5129 0.5530 +991 5218 0.5410 +991 5347 0.9990 +991 5424 0.4340 +991 5427 0.4370 +991 5500 0.5200 +991 5501 0.8720 +991 5515 0.9970 +991 5516 0.8510 +991 5518 0.8930 +991 5519 0.5490 +991 5520 0.5480 +991 5521 0.4940 +991 5525 0.9050 +991 5526 0.5450 +991 5527 0.5800 +991 5528 0.5880 +991 5529 0.8360 +991 5530 0.6960 +991 5532 0.6940 +991 5533 0.6940 +991 5534 0.6830 +991 5557 0.4380 +991 5558 0.5800 +991 5682 0.4900 +991 5683 0.4470 +991 5684 0.4150 +991 5685 0.4620 +991 5686 0.4440 +991 5687 0.4180 +991 5688 0.4440 +991 5689 0.4290 +991 5690 0.4610 +991 5691 0.4430 +991 5692 0.4160 +991 5693 0.4540 +991 5694 0.4610 +991 5695 0.4440 +991 5696 0.4480 +991 5698 0.4410 +991 5699 0.4230 +991 5700 0.4740 +991 5701 0.4340 +991 5702 0.4840 +991 5704 0.4920 +991 5705 0.4580 +991 5706 0.4170 +991 5707 0.4270 +991 5708 0.4600 +991 5709 0.4380 +991 5710 0.4580 +991 5711 0.5060 +991 5713 0.4330 +991 5714 0.4880 +991 5715 0.4140 +991 5716 0.4790 +991 5717 0.4480 +991 5718 0.4170 +991 5719 0.4140 +991 5720 0.4050 +991 5721 0.4390 +991 5728 0.4060 +991 5885 0.5840 +991 5888 0.8440 +991 5903 0.8640 +991 5905 0.8540 +991 5980 0.5100 +991 5983 0.5850 +991 5984 0.7560 +991 6015 0.5860 +991 6045 0.5880 +991 6047 0.4160 +991 6232 0.8120 +991 6233 0.5930 +991 6240 0.5620 +991 6241 0.9070 +991 6249 0.8670 +991 6279 0.4350 +991 6396 0.6800 +991 6491 0.5740 +991 6500 0.8110 +991 6502 0.9980 +991 6636 0.5160 +991 6637 0.4950 +991 6714 0.4570 +991 6790 0.9950 +991 6795 0.7010 +991 6878 0.4100 +991 6883 0.4210 +991 6908 0.4030 +991 6941 0.5200 +991 6950 0.9960 +991 7027 0.5990 +991 7083 0.8830 +991 7124 0.5710 +991 7153 0.9800 +991 7155 0.5920 +991 7157 0.6080 +991 7175 0.5170 +991 7203 0.9950 +991 7272 0.9900 +991 7283 0.5370 +991 7298 0.7570 +991 7311 0.6370 +991 7314 0.6490 +991 7316 0.8010 +991 7317 0.6480 +991 7321 0.6950 +991 7322 0.4200 +991 7324 0.6010 +991 7398 0.4580 +991 7450 0.4570 +991 7465 0.8010 +991 7514 0.8420 +991 7703 0.5590 +991 7813 0.4640 +991 7884 0.4040 +991 7979 0.4130 +991 8208 0.4460 +991 8290 0.5350 +991 8295 0.6080 +991 8317 0.7750 +991 8318 0.9460 +991 8337 0.5210 +991 8338 0.5220 +991 8349 0.4210 +991 8356 0.5510 +991 8379 0.9990 +991 8405 0.6380 +991 8438 0.6850 +991 8452 0.5340 +991 8454 0.8040 +991 8480 0.5900 +991 8535 0.5720 +991 8556 0.7980 +991 8655 0.5620 +991 8668 0.4030 +991 8697 0.9990 +991 8850 0.4450 +991 8881 0.9990 +991 8900 0.9820 +991 8945 0.6760 +991 9055 0.9470 +991 9088 0.8300 +991 9126 0.5150 +991 9133 0.9990 +991 9134 0.5470 +991 9156 0.7960 +991 9183 0.8010 +991 9184 0.9990 +991 9212 0.9980 +991 9232 0.9990 +991 9319 0.9960 +991 9401 0.4070 +991 9491 0.4200 +991 9493 0.7970 +991 9531 0.4260 +991 9577 0.5760 +991 9585 0.6010 +991 9587 0.9990 +991 9616 0.4350 +991 9656 0.8140 +991 9700 0.9880 +991 9735 0.8820 +991 9768 0.8810 +991 9787 0.9810 +991 9790 0.4730 +991 9793 0.8800 +991 9824 0.5700 +991 9833 0.9640 +991 9861 0.4510 +991 9918 0.7200 +991 9928 0.6740 +991 9985 0.6870 +991 10013 0.5100 +991 10024 0.8270 +991 10036 0.4140 +991 10051 0.6470 +991 10112 0.9810 +991 10197 0.4660 +991 10213 0.5410 +991 10273 0.4550 +991 10309 0.4640 +991 10336 0.5450 +991 10383 0.4210 +991 10393 0.9990 +991 10403 0.9620 +991 10413 0.4880 +991 10419 0.4710 +991 10459 0.9330 +991 10460 0.8420 +991 10528 0.5170 +991 10535 0.4920 +991 10574 0.9950 +991 10575 0.9950 +991 10576 0.9960 +991 10592 0.5810 +991 10606 0.5620 +991 10615 0.9230 +991 10635 0.7370 +991 10694 0.9950 +991 10726 0.8340 +991 10733 0.7210 +991 10735 0.4360 +991 10744 0.9940 +991 10769 0.5590 +991 10814 0.7450 +991 10856 0.4110 +991 10926 0.7010 +991 11004 0.9950 +991 11065 0.9990 +991 11091 0.5150 +991 11130 0.9680 +991 11169 0.4520 +991 11186 0.8080 +991 11200 0.5190 +991 11243 0.5730 +991 11339 0.6950 +991 22897 0.4280 +991 22919 0.8160 +991 22933 0.7070 +991 22948 0.9960 +991 22974 0.9610 +991 23122 0.8240 +991 23133 0.5470 +991 23198 0.4150 +991 23279 0.5920 +991 23326 0.5000 +991 23332 0.8350 +991 23397 0.8380 +991 23421 0.5890 +991 23492 0.5460 +991 23594 0.5440 +991 24137 0.9410 +991 25847 0.9960 +991 25886 0.6090 +991 25906 0.9860 +991 25909 0.8250 +991 25936 0.5710 +991 26271 0.9990 +991 26586 0.5790 +991 27338 0.9990 +991 27436 0.5000 +991 28960 0.5580 +991 29089 0.6790 +991 29127 0.8530 +991 29128 0.6850 +991 29882 0.9990 +991 29945 0.9990 +991 50484 0.4890 +991 51053 0.8890 +991 51143 0.5000 +991 51203 0.9460 +991 51239 0.5710 +991 51343 0.9370 +991 51366 0.5450 +991 51433 0.9990 +991 51434 0.9990 +991 51512 0.7110 +991 51514 0.6780 +991 51529 0.9990 +991 51592 0.9960 +991 51619 0.4590 +991 51659 0.6280 +991 54069 0.5200 +991 54205 0.5100 +991 54443 0.7010 +991 54461 0.4750 +991 54478 0.7340 +991 54820 0.8240 +991 54821 0.9000 +991 54875 0.4680 +991 54880 0.5780 +991 54892 0.6810 +991 54908 0.8880 +991 54971 0.4540 +991 55010 0.5430 +991 55038 0.5420 +991 55055 0.8950 +991 55143 0.9920 +991 55165 0.9500 +991 55166 0.6080 +991 55215 0.5530 +991 55247 0.4760 +991 55255 0.6220 +991 55355 0.9250 +991 55388 0.6910 +991 55635 0.7610 +991 55723 0.8060 +991 55743 0.4310 +991 55746 0.6020 +991 55789 0.5340 +991 55839 0.8370 +991 55844 0.5080 +991 55920 0.8660 +991 56992 0.8360 +991 57082 0.9500 +991 57122 0.6560 +991 57332 0.5680 +991 57405 0.8020 +991 57551 0.8230 +991 57650 0.4280 +991 57695 0.5090 +991 63922 0.4080 +991 63967 0.6220 +991 64105 0.7800 +991 64112 0.6320 +991 64151 0.9490 +991 64682 0.9990 +991 64946 0.7290 +991 65061 0.5270 +991 79003 0.7030 +991 79004 0.4490 +991 79019 0.9370 +991 79023 0.6930 +991 79075 0.4580 +991 79142 0.4350 +991 79172 0.6970 +991 79184 0.6130 +991 79682 0.8360 +991 79733 0.6790 +991 79801 0.5930 +991 79866 0.4200 +991 79902 0.7480 +991 79935 0.7520 +991 79980 0.7310 +991 80012 0.6190 +991 80119 0.5150 +991 80152 0.6890 +991 80776 0.8020 +991 81565 0.8190 +991 81610 0.6590 +991 81620 0.9210 +991 81669 0.8130 +991 81929 0.5710 +991 81930 0.9450 +991 83461 0.9810 +991 83540 0.9620 +991 83879 0.5800 +991 83903 0.5060 +991 84057 0.5090 +991 84101 0.9820 +991 84108 0.5550 +991 84333 0.5450 +991 84643 0.8830 +991 84722 0.4530 +991 84733 0.6370 +991 84759 0.5450 +991 84790 0.4490 +991 84823 0.4740 +991 84930 0.5210 +991 85417 0.7410 +991 90381 0.5590 +991 90417 0.5620 +991 90952 0.4400 +991 91687 0.5770 +991 112399 0.4040 +991 113130 0.9380 +991 114799 0.4320 +991 119504 0.9990 +991 122706 0.4020 +991 126520 0.4890 +991 128239 0.6170 +991 132864 0.4840 +991 140459 0.5700 +991 140735 0.5380 +991 143471 0.4020 +991 144455 0.5840 +991 146909 0.7920 +991 146956 0.4080 +991 147841 0.9000 +991 150468 0.6180 +991 151195 0.4240 +991 151246 0.9380 +991 151648 0.9860 +991 157313 0.8220 +991 157570 0.4500 +991 163786 0.4640 +991 166979 0.5860 +991 203068 0.5040 +991 220134 0.9330 +991 221150 0.6660 +991 246184 0.9990 +991 259266 0.9720 +991 286151 0.9880 +991 348235 0.8400 +991 348995 0.5770 +991 375686 0.8090 +991 378708 0.6950 +991 387103 0.7200 +991 401541 0.6150 +991 440093 0.5350 +991 440686 0.5350 +991 494551 0.5230 +991 653604 0.5350 +991 728833 0.4350 +993 994 0.9380 +993 995 0.9610 +993 996 0.6260 +993 1017 0.9980 +993 1018 0.5230 +993 1019 0.9790 +993 1020 0.8680 +993 1021 0.9860 +993 1022 0.4710 +993 1026 0.8470 +993 1027 0.8170 +993 1028 0.4760 +993 1029 0.4870 +993 1030 0.4020 +993 1033 0.5670 +993 1058 0.5240 +993 1062 0.5290 +993 1063 0.5140 +993 1111 0.9990 +993 1163 0.5370 +993 1164 0.5210 +993 1263 0.4830 +993 1387 0.4040 +993 1432 0.5180 +993 1452 0.4240 +993 1499 0.4620 +993 1617 0.4240 +993 1618 0.6690 +993 1642 0.4650 +993 1719 0.4090 +993 1869 0.9070 +993 1870 0.6060 +993 1871 0.5450 +993 1874 0.7050 +993 1875 0.6980 +993 1956 0.5870 +993 2033 0.8640 +993 2064 0.4420 +993 2146 0.4210 +993 2177 0.4770 +993 2237 0.6330 +993 2305 0.9360 +993 2547 0.4010 +993 2597 0.4850 +993 2810 0.7010 +993 2956 0.5660 +993 3014 0.7660 +993 3021 0.4240 +993 3070 0.4050 +993 3161 0.5890 +993 3265 0.4490 +993 3364 0.6210 +993 3832 0.5800 +993 3833 0.5000 +993 3838 0.4560 +993 3845 0.5680 +993 4001 0.6770 +993 4085 0.5850 +993 4088 0.5390 +993 4149 0.7920 +993 4170 0.4020 +993 4171 0.5480 +993 4172 0.5530 +993 4173 0.7150 +993 4174 0.5560 +993 4175 0.5290 +993 4176 0.6310 +993 4193 0.4870 +993 4217 0.6500 +993 4288 0.5470 +993 4292 0.5130 +993 4436 0.5910 +993 4605 0.7280 +993 4609 0.9500 +993 4683 0.6410 +993 4751 0.5260 +993 4790 0.5410 +993 4851 0.6090 +993 4869 0.5490 +993 4953 0.4460 +993 4998 0.7350 +993 4999 0.7940 +993 5001 0.7990 +993 5127 0.4760 +993 5128 0.4140 +993 5129 0.4620 +993 5218 0.4220 +993 5292 0.5330 +993 5315 0.4920 +993 5347 0.9750 +993 5422 0.4160 +993 5424 0.5500 +993 5427 0.4480 +993 5591 0.4940 +993 5595 0.4470 +993 5604 0.4020 +993 5682 0.4010 +993 5683 0.4160 +993 5684 0.4010 +993 5685 0.4160 +993 5686 0.4130 +993 5687 0.4130 +993 5688 0.4270 +993 5689 0.4110 +993 5690 0.4160 +993 5692 0.4010 +993 5693 0.4160 +993 5694 0.4010 +993 5695 0.4100 +993 5698 0.4110 +993 5699 0.4080 +993 5700 0.4530 +993 5701 0.4120 +993 5702 0.4240 +993 5704 0.4180 +993 5705 0.4320 +993 5707 0.4250 +993 5708 0.4230 +993 5709 0.4190 +993 5713 0.4030 +993 5714 0.4330 +993 5715 0.4040 +993 5716 0.4140 +993 5717 0.4130 +993 5718 0.4180 +993 5719 0.4100 +993 5720 0.4060 +993 5721 0.4050 +993 5728 0.5560 +993 5883 0.6310 +993 5884 0.6230 +993 5888 0.6350 +993 5894 0.7060 +993 5925 0.4260 +993 5928 0.5740 +993 5934 0.6170 +993 5970 0.4640 +993 5982 0.6360 +993 5983 0.4720 +993 5984 0.6630 +993 6093 0.4820 +993 6233 0.5270 +993 6241 0.5790 +993 6500 0.8730 +993 6502 0.7180 +993 6714 0.5450 +993 6790 0.7270 +993 7027 0.7780 +993 7029 0.6160 +993 7083 0.4050 +993 7153 0.5770 +993 7157 0.8610 +993 7158 0.6820 +993 7263 0.4270 +993 7272 0.5290 +993 7298 0.4790 +993 7311 0.5110 +993 7314 0.5240 +993 7316 0.5370 +993 7465 0.9560 +993 7486 0.4690 +993 7529 0.7930 +993 7531 0.8090 +993 7532 0.5810 +993 7533 0.6520 +993 7534 0.7660 +993 7874 0.4470 +993 7979 0.4170 +993 8091 0.4420 +993 8243 0.5540 +993 8260 0.6440 +993 8290 0.4240 +993 8317 0.7370 +993 8318 0.9490 +993 8356 0.4410 +993 8438 0.6920 +993 8454 0.9060 +993 8555 0.4120 +993 8556 0.5870 +993 8851 0.7710 +993 8900 0.9130 +993 8945 0.9690 +993 9024 0.5640 +993 9055 0.5190 +993 9088 0.9110 +993 9133 0.9730 +993 9134 0.9840 +993 9156 0.7050 +993 9184 0.5250 +993 9212 0.7460 +993 9232 0.5300 +993 9261 0.4770 +993 9319 0.5030 +993 9491 0.4190 +993 9493 0.6360 +993 9656 0.6290 +993 9700 0.6990 +993 9787 0.5190 +993 9833 0.5670 +993 9837 0.5730 +993 9861 0.4520 +993 9928 0.4200 +993 9978 0.5190 +993 9986 0.6520 +993 10036 0.5870 +993 10112 0.4840 +993 10197 0.4400 +993 10213 0.4600 +993 10221 0.4190 +993 10393 0.4470 +993 10419 0.4760 +993 10615 0.4290 +993 10635 0.4400 +993 10733 0.5950 +993 10769 0.4080 +993 10926 0.4330 +993 10971 0.7370 +993 10988 0.4030 +993 11004 0.5620 +993 11065 0.4860 +993 11073 0.5640 +993 11130 0.4190 +993 11169 0.4970 +993 11200 0.9980 +993 11339 0.4150 +993 22907 0.4170 +993 22974 0.5050 +993 23198 0.4480 +993 23291 0.9070 +993 23397 0.4350 +993 23586 0.4330 +993 23594 0.4480 +993 23595 0.7930 +993 23649 0.4110 +993 24137 0.5060 +993 25930 0.4230 +993 26271 0.6180 +993 27250 0.4310 +993 29126 0.4480 +993 29127 0.5110 +993 29128 0.4730 +993 51203 0.4150 +993 51343 0.7030 +993 51512 0.5000 +993 51514 0.7550 +993 51659 0.4730 +993 54443 0.4300 +993 54465 0.4680 +993 54821 0.5420 +993 55143 0.5660 +993 55165 0.5130 +993 55388 0.8500 +993 55957 0.6020 +993 56992 0.5170 +993 57405 0.4600 +993 57761 0.4860 +993 63967 0.8180 +993 64135 0.4160 +993 64151 0.5410 +993 65061 0.4100 +993 66037 0.7890 +993 79000 0.4690 +993 79019 0.4130 +993 79075 0.4310 +993 79733 0.5800 +993 79840 0.4470 +993 79858 0.5360 +993 80204 0.4130 +993 81620 0.7480 +993 81624 0.5710 +993 81669 0.7910 +993 83461 0.4530 +993 83540 0.4730 +993 83903 0.4050 +993 84126 0.7600 +993 84446 0.5630 +993 84823 0.4970 +993 85417 0.9370 +993 90381 0.6040 +993 91750 0.5700 +993 113130 0.5880 +993 132660 0.5920 +993 133482 0.5160 +993 144455 0.5520 +993 151195 0.4130 +993 151648 0.4140 +993 157313 0.5800 +993 166979 0.7810 +993 220134 0.4330 +993 221150 0.4380 +993 259266 0.4560 +993 286826 0.6270 +993 377630 0.7120 +993 387893 0.4560 +993 392188 0.5070 +993 401447 0.4990 +993 440093 0.4240 +993 440686 0.4250 +993 494551 0.7020 +993 645402 0.5310 +993 645836 0.5330 +993 653604 0.4250 +993 728373 0.5950 +993 728386 0.4990 +993 100287144 0.4990 +993 100287178 0.4990 +993 100287205 0.4990 +993 100287238 0.4990 +993 100287327 0.5090 +993 100287364 0.4990 +993 100287404 0.4990 +993 100287441 0.5160 +993 100287478 0.4990 +993 100287513 0.5110 +993 102723407 0.4140 +994 995 0.9220 +994 1017 0.9940 +994 1018 0.5190 +994 1019 0.7700 +994 1020 0.9130 +994 1021 0.6370 +994 1026 0.5710 +994 1027 0.5340 +994 1029 0.5530 +994 1058 0.5170 +994 1059 0.5460 +994 1062 0.4160 +994 1063 0.7300 +994 1069 0.4900 +994 1111 0.9840 +994 1163 0.4910 +994 1164 0.4530 +994 1432 0.9510 +994 1497 0.4210 +994 1845 0.4680 +994 1869 0.4450 +994 2099 0.4470 +994 2305 0.9180 +994 2810 0.8440 +994 2956 0.4540 +994 3265 0.4470 +994 3832 0.4450 +994 4067 0.4190 +994 4085 0.4530 +994 4172 0.4260 +994 4176 0.5060 +994 4436 0.4580 +994 4605 0.4320 +994 4609 0.6210 +994 4751 0.5170 +994 4999 0.7960 +994 5001 0.7880 +994 5127 0.4610 +994 5218 0.4050 +994 5347 0.9760 +994 5424 0.6090 +994 5426 0.5060 +994 5600 0.9270 +994 5603 0.9270 +994 5728 0.4340 +994 5770 0.5140 +994 5884 0.5100 +994 5894 0.4120 +994 6300 0.9310 +994 6502 0.5180 +994 6790 0.6880 +994 7153 0.4450 +994 7157 0.5160 +994 7465 0.9000 +994 7529 0.9970 +994 7531 0.9950 +994 7532 0.9870 +994 7533 0.9890 +994 7534 0.9930 +994 7867 0.4340 +994 8317 0.6400 +994 8318 0.7150 +994 8550 0.4360 +994 8555 0.4210 +994 8556 0.6620 +994 8767 0.4300 +994 8851 0.8300 +994 8897 0.5890 +994 8900 0.9740 +994 8945 0.9140 +994 9024 0.8150 +994 9088 0.7580 +994 9110 0.4050 +994 9133 0.8470 +994 9134 0.5900 +994 9184 0.4210 +994 9212 0.6500 +994 9232 0.4380 +994 9261 0.7020 +994 9700 0.4600 +994 9833 0.7640 +994 10125 0.4120 +994 10419 0.4190 +994 10971 0.9900 +994 11200 0.6920 +994 23291 0.8530 +994 23595 0.7910 +994 51278 0.5180 +994 51343 0.4650 +994 55143 0.5120 +994 66037 0.6150 +994 81565 0.4530 +994 81620 0.5670 +994 81669 0.5330 +994 84446 0.7350 +994 85417 0.4100 +994 115207 0.4120 +994 115727 0.4650 +994 494551 0.7880 +995 996 0.4320 +995 1017 0.9940 +995 1018 0.5380 +995 1019 0.8300 +995 1020 0.8620 +995 1021 0.6870 +995 1022 0.4510 +995 1026 0.6810 +995 1027 0.5490 +995 1029 0.4390 +995 1033 0.7300 +995 1058 0.8450 +995 1062 0.6880 +995 1063 0.6180 +995 1111 0.9990 +995 1163 0.5190 +995 1164 0.5880 +995 1263 0.9650 +995 1432 0.9520 +995 1499 0.4120 +995 1647 0.4480 +995 1869 0.6360 +995 1870 0.4470 +995 1874 0.6910 +995 1894 0.5280 +995 1956 0.7720 +995 2177 0.5000 +995 2237 0.4270 +995 2305 0.8230 +995 2491 0.4400 +995 2597 0.4960 +995 2810 0.9660 +995 3005 0.4030 +995 3014 0.7030 +995 3021 0.5040 +995 3161 0.7200 +995 3308 0.4360 +995 3320 0.4960 +995 3619 0.4570 +995 3659 0.5250 +995 3832 0.6600 +995 3833 0.5980 +995 3835 0.5760 +995 4001 0.4950 +995 4085 0.6390 +995 4134 0.6350 +995 4140 0.9450 +995 4170 0.4050 +995 4171 0.4200 +995 4172 0.4540 +995 4173 0.5780 +995 4174 0.4880 +995 4175 0.4220 +995 4176 0.6400 +995 4193 0.6390 +995 4217 0.4440 +995 4288 0.5670 +995 4605 0.5910 +995 4609 0.5010 +995 4751 0.8140 +995 4998 0.5050 +995 4999 0.7890 +995 5001 0.8000 +995 5111 0.6790 +995 5127 0.4110 +995 5129 0.4020 +995 5170 0.5210 +995 5218 0.4300 +995 5300 0.6880 +995 5347 0.9990 +995 5424 0.5060 +995 5427 0.4200 +995 5499 0.9280 +995 5500 0.9220 +995 5501 0.9240 +995 5528 0.6570 +995 5566 0.9140 +995 5567 0.9140 +995 5568 0.9140 +995 5585 0.9340 +995 5586 0.5300 +995 5591 0.6430 +995 5594 0.5630 +995 5595 0.6390 +995 5600 0.9270 +995 5603 0.9270 +995 5604 0.4190 +995 5728 0.4790 +995 5879 0.5600 +995 5884 0.5830 +995 5888 0.5900 +995 5933 0.5810 +995 5934 0.6170 +995 5984 0.4180 +995 6240 0.4020 +995 6241 0.6630 +995 6300 0.9310 +995 6502 0.4250 +995 6790 0.8310 +995 7027 0.6360 +995 7029 0.5760 +995 7054 0.5200 +995 7083 0.4430 +995 7153 0.7970 +995 7157 0.8940 +995 7158 0.4480 +995 7166 0.4100 +995 7178 0.5540 +995 7263 0.4030 +995 7272 0.7870 +995 7298 0.4570 +995 7465 0.9460 +995 7529 0.9950 +995 7531 0.9990 +995 7532 0.9790 +995 7533 0.9890 +995 7534 0.9990 +995 7837 0.4140 +995 8290 0.5040 +995 8317 0.6420 +995 8318 0.8560 +995 8356 0.5210 +995 8438 0.5740 +995 8555 0.4060 +995 8556 0.5690 +995 8844 0.5610 +995 8851 0.7700 +995 8881 0.4680 +995 8900 0.8780 +995 9024 0.7770 +995 9055 0.5200 +995 9088 0.8220 +995 9110 0.4140 +995 9133 0.9930 +995 9134 0.6750 +995 9156 0.6220 +995 9184 0.5420 +995 9212 0.8430 +995 9232 0.7160 +995 9319 0.4560 +995 9493 0.6760 +995 9585 0.4360 +995 9700 0.6180 +995 9735 0.5990 +995 9787 0.8900 +995 9833 0.8210 +995 9837 0.5970 +995 9918 0.4180 +995 9928 0.7420 +995 10024 0.6570 +995 10051 0.4470 +995 10112 0.8490 +995 10403 0.4930 +995 10419 0.4530 +995 10460 0.5810 +995 10615 0.6020 +995 10635 0.5050 +995 10733 0.7720 +995 10744 0.6270 +995 10769 0.5180 +995 10971 0.9920 +995 11004 0.9070 +995 11065 0.8160 +995 11073 0.4680 +995 11130 0.5150 +995 11140 0.5260 +995 11169 0.4100 +995 11178 0.4860 +995 11200 0.9980 +995 11244 0.4880 +995 11339 0.5730 +995 22882 0.4890 +995 22974 0.6440 +995 23397 0.5430 +995 23595 0.8070 +995 24137 0.7980 +995 25886 0.4500 +995 26271 0.4010 +995 26586 0.4400 +995 27175 0.4330 +995 29089 0.4320 +995 29127 0.5030 +995 29941 0.5500 +995 51203 0.6770 +995 51512 0.7210 +995 51514 0.4650 +995 51659 0.4640 +995 51684 0.4440 +995 54205 0.5100 +995 54443 0.5300 +995 54478 0.5930 +995 54821 0.5430 +995 55010 0.4650 +995 55038 0.4660 +995 55143 0.8210 +995 55165 0.5850 +995 55215 0.4660 +995 55247 0.5250 +995 55355 0.8650 +995 55388 0.5350 +995 55635 0.8080 +995 55723 0.4010 +995 55789 0.4820 +995 56992 0.5700 +995 57082 0.4130 +995 57405 0.4780 +995 57761 0.4900 +995 63967 0.7090 +995 64151 0.5630 +995 66037 0.5240 +995 79019 0.5130 +995 79682 0.4860 +995 79733 0.4620 +995 79866 0.4370 +995 81610 0.4890 +995 81620 0.5790 +995 81624 0.4010 +995 81669 0.6240 +995 81930 0.7190 +995 83461 0.6620 +995 83540 0.6600 +995 83879 0.4070 +995 83903 0.4620 +995 84057 0.4680 +995 84126 0.6900 +995 84446 0.5970 +995 84823 0.4190 +995 84930 0.5060 +995 90381 0.5090 +995 113130 0.7390 +995 121278 0.4220 +995 126520 0.4770 +995 133482 0.5650 +995 137902 0.4140 +995 146909 0.5440 +995 146956 0.4260 +995 150468 0.6860 +995 151648 0.5460 +995 157313 0.7130 +995 220134 0.5990 +995 221150 0.5880 +995 245711 0.9000 +995 259266 0.6150 +995 285955 0.9000 +995 387778 0.9010 +995 388333 0.9000 +995 440093 0.5040 +995 440686 0.5040 +995 441272 0.9000 +995 441273 0.9000 +995 442590 0.9000 +995 494551 0.6750 +995 653604 0.5050 +995 729597 0.9000 +995 100310812 0.9000 +995 100996746 0.9000 +995 102723555 0.9000 +996 999 0.7920 +996 1017 0.8790 +996 1018 0.5680 +996 1019 0.6160 +996 1021 0.6330 +996 1026 0.6630 +996 1027 0.5420 +996 1051 0.5190 +996 1062 0.4220 +996 1163 0.5450 +996 1387 0.7060 +996 1499 0.4570 +996 1647 0.4250 +996 1869 0.4470 +996 1911 0.9010 +996 1912 0.9010 +996 2305 0.5280 +996 3005 0.4430 +996 3018 0.4110 +996 3021 0.4290 +996 3036 0.4200 +996 3037 0.4200 +996 3038 0.4200 +996 3087 0.4210 +996 3093 0.5100 +996 3312 0.4820 +996 3320 0.5990 +996 3326 0.5910 +996 3569 0.4810 +996 3576 0.4320 +996 3832 0.5030 +996 3845 0.4120 +996 3925 0.4350 +996 4085 0.9990 +996 4087 0.6730 +996 4173 0.4130 +996 4601 0.9940 +996 4609 0.5950 +996 4691 0.4140 +996 4751 0.9990 +996 4790 0.5820 +996 4924 0.5110 +996 4956 0.6820 +996 5127 0.5010 +996 5128 0.5170 +996 5129 0.4950 +996 5179 0.6240 +996 5218 0.5090 +996 5300 0.7340 +996 5347 0.8720 +996 5424 0.5320 +996 5515 0.9230 +996 5516 0.7460 +996 5525 0.7020 +996 5530 0.6820 +996 5532 0.6750 +996 5533 0.6720 +996 5534 0.6880 +996 5536 0.4580 +996 5682 0.4890 +996 5683 0.4160 +996 5684 0.5380 +996 5685 0.5080 +996 5686 0.4610 +996 5687 0.4580 +996 5688 0.4910 +996 5689 0.4520 +996 5690 0.5140 +996 5691 0.4480 +996 5692 0.4190 +996 5693 0.4380 +996 5694 0.4160 +996 5695 0.4920 +996 5696 0.4300 +996 5698 0.4110 +996 5699 0.4410 +996 5700 0.4640 +996 5701 0.4620 +996 5702 0.4270 +996 5704 0.4420 +996 5705 0.4570 +996 5706 0.4750 +996 5707 0.4550 +996 5708 0.4370 +996 5709 0.5800 +996 5710 0.4520 +996 5711 0.4130 +996 5713 0.4540 +996 5714 0.5320 +996 5715 0.4440 +996 5716 0.4510 +996 5717 0.4830 +996 5718 0.5800 +996 5719 0.4130 +996 5720 0.4120 +996 5721 0.4130 +996 5728 0.4680 +996 5884 0.5110 +996 5888 0.7720 +996 5925 0.7630 +996 5970 0.5670 +996 6015 0.9020 +996 6045 0.9070 +996 6207 0.4440 +996 6233 0.5650 +996 6241 0.5010 +996 6498 0.4790 +996 6500 0.5670 +996 6502 0.6600 +996 6790 0.7830 +996 6874 0.5690 +996 6877 0.5860 +996 6921 0.4020 +996 7027 0.4440 +996 7272 0.7710 +996 7283 0.5350 +996 7311 0.5790 +996 7314 0.9090 +996 7316 0.9070 +996 7317 0.4810 +996 7321 0.8650 +996 7324 0.8180 +996 7465 0.4990 +996 7702 0.4170 +996 7703 0.9000 +996 7979 0.4050 +996 8290 0.4130 +996 8317 0.4770 +996 8349 0.4680 +996 8356 0.4420 +996 8361 0.4170 +996 8379 0.7950 +996 8452 0.4150 +996 8454 0.6030 +996 8535 0.9090 +996 8555 0.7430 +996 8556 0.8210 +996 8697 0.9990 +996 8761 0.4150 +996 8881 0.9990 +996 8900 0.7840 +996 9024 0.4120 +996 9133 0.9470 +996 9134 0.7270 +996 9184 0.9990 +996 9212 0.8300 +996 9232 0.9760 +996 9491 0.4160 +996 9577 0.9060 +996 9587 0.4800 +996 9616 0.4980 +996 9656 0.8120 +996 9700 0.8170 +996 9861 0.4230 +996 10197 0.5790 +996 10213 0.4710 +996 10336 0.5470 +996 10393 0.9990 +996 10459 0.8580 +996 10733 0.4060 +996 10744 0.8850 +996 10914 0.4460 +996 10919 0.5530 +996 11065 0.9930 +996 11198 0.4180 +996 11201 0.4370 +996 23113 0.5920 +996 23168 0.5040 +996 23476 0.5370 +996 23492 0.7210 +996 23625 0.5940 +996 23774 0.4420 +996 25809 0.4890 +996 25833 0.5910 +996 25847 0.9990 +996 25906 0.9960 +996 25909 0.4370 +996 26118 0.4510 +996 26271 0.9840 +996 26973 0.4460 +996 27152 0.7140 +996 27338 0.9990 +996 29775 0.5310 +996 29882 0.9990 +996 29920 0.4690 +996 29945 0.9990 +996 30011 0.4570 +996 51053 0.5340 +996 51239 0.5760 +996 51343 0.9990 +996 51433 0.9990 +996 51434 0.9990 +996 51529 0.9990 +996 51592 0.9940 +996 51668 0.5190 +996 54875 0.5030 +996 54880 0.9070 +996 55143 0.4650 +996 57332 0.9030 +996 57587 0.4310 +996 57695 0.4800 +996 64682 0.9990 +996 65061 0.4950 +996 65258 0.9620 +996 79004 0.6080 +996 79184 0.9040 +996 79577 0.4570 +996 79648 0.5860 +996 79813 0.5410 +996 79917 0.5940 +996 80012 0.9070 +996 81620 0.5020 +996 81669 0.4540 +996 84108 0.9040 +996 84333 0.5430 +996 84446 0.4120 +996 84464 0.5150 +996 84733 0.9000 +996 84759 0.5410 +996 84976 0.4070 +996 85417 0.7740 +996 113130 0.4470 +996 119504 0.9990 +996 123169 0.5040 +996 140459 0.5760 +996 143384 0.4280 +996 153090 0.4520 +996 166979 0.8630 +996 246184 0.9990 +996 286151 0.7630 +996 375061 0.5940 +996 375686 0.7860 +996 388272 0.6090 +996 440093 0.4130 +996 440686 0.4130 +996 653604 0.4220 +996 100131827 0.4240 +997 1017 0.4510 +997 1021 0.4020 +997 1025 0.4180 +997 1026 0.5030 +997 1027 0.6720 +997 1105 0.5590 +997 1108 0.4270 +997 1147 0.5940 +997 1163 0.4010 +997 1386 0.4100 +997 1457 0.7090 +997 1460 0.7600 +997 1938 0.4200 +997 2313 0.7120 +997 2550 0.4560 +997 2597 0.4580 +997 3029 0.4040 +997 3065 0.4100 +997 3093 0.5790 +997 3113 0.5470 +997 3118 0.4260 +997 3122 0.4160 +997 3308 0.5900 +997 3312 0.4160 +997 3320 0.6370 +997 3326 0.6340 +997 3551 0.6040 +997 3836 0.4010 +997 4172 0.5690 +997 4173 0.5330 +997 4175 0.4130 +997 4176 0.5690 +997 4193 0.4870 +997 4686 0.4100 +997 4734 0.5400 +997 4738 0.8150 +997 4790 0.5860 +997 4792 0.7510 +997 4850 0.4070 +997 5071 0.4230 +997 5292 0.4110 +997 5431 0.4070 +997 5468 0.5300 +997 5708 0.4020 +997 5710 0.4870 +997 5885 0.5260 +997 5886 0.6130 +997 5903 0.4850 +997 5905 0.6470 +997 5970 0.6880 +997 5983 0.4840 +997 6047 0.4190 +997 6233 0.9920 +997 6500 0.9980 +997 6502 0.8170 +997 6613 0.4800 +997 6737 0.4970 +997 6794 0.5230 +997 6921 0.5730 +997 7037 0.4260 +997 7264 0.4270 +997 7295 0.4070 +997 7311 0.9830 +997 7314 0.9830 +997 7316 0.9980 +997 7317 0.9940 +997 7318 0.8660 +997 7319 0.5430 +997 7320 0.5260 +997 7321 0.5280 +997 7322 0.6690 +997 7323 0.4240 +997 7324 0.5700 +997 7326 0.4340 +997 7327 0.4890 +997 7328 0.6740 +997 7332 0.5420 +997 7335 0.7190 +997 7336 0.6890 +997 7337 0.4350 +997 7341 0.5700 +997 7415 0.6630 +997 7465 0.4340 +997 7763 0.5810 +997 7803 0.4970 +997 8065 0.5920 +997 8078 0.4830 +997 8451 0.4270 +997 8452 0.7370 +997 8453 0.7380 +997 8454 0.9980 +997 8517 0.6260 +997 8818 0.4290 +997 8878 0.4500 +997 8881 0.4400 +997 8883 0.6030 +997 8914 0.4290 +997 8945 0.9860 +997 9039 0.8030 +997 9040 0.7210 +997 9099 0.5320 +997 9232 0.4770 +997 9320 0.4800 +997 9354 0.5310 +997 9373 0.5470 +997 9616 0.8470 +997 9636 0.4070 +997 9646 0.6370 +997 9810 0.4640 +997 9817 0.4310 +997 9978 0.9990 +997 10051 0.4160 +997 10054 0.4400 +997 10155 0.4170 +997 10213 0.4570 +997 10273 0.4960 +997 10277 0.5480 +997 10477 0.5240 +997 10533 0.6280 +997 10537 0.5340 +997 10592 0.4120 +997 10606 0.4360 +997 10617 0.6460 +997 10618 0.4130 +997 10987 0.4200 +997 11016 0.5190 +997 11060 0.4580 +997 11065 0.5520 +997 11146 0.6790 +997 11343 0.4790 +997 22809 0.8210 +997 23291 0.8710 +997 23295 0.7370 +997 23327 0.6600 +997 23595 0.4160 +997 23625 0.4020 +997 23759 0.4440 +997 23770 0.4790 +997 25793 0.6890 +997 25820 0.5580 +997 25827 0.6110 +997 26001 0.6940 +997 26224 0.4770 +997 26259 0.5140 +997 26272 0.4890 +997 26994 0.6900 +997 27161 0.4090 +997 27338 0.5600 +997 29089 0.5050 +997 29882 0.5730 +997 29945 0.4170 +997 29979 0.4070 +997 51035 0.4300 +997 51257 0.6910 +997 51529 0.5550 +997 51692 0.4160 +997 54165 0.4330 +997 54431 0.4240 +997 54469 0.6670 +997 54583 0.8150 +997 54926 0.9610 +997 55016 0.7390 +997 55070 0.4480 +997 55072 0.5660 +997 55236 0.8790 +997 55284 0.4940 +997 55294 0.9490 +997 55544 0.4850 +997 55611 0.6330 +997 55620 0.4440 +997 55658 0.4400 +997 55696 0.4330 +997 55832 0.4300 +997 56254 0.5550 +997 56852 0.5470 +997 57610 0.4060 +997 63893 0.4140 +997 63967 0.4840 +997 64750 0.6780 +997 79577 0.6670 +997 79594 0.4170 +997 79876 0.6340 +997 80700 0.5350 +997 81858 0.5520 +997 83737 0.8140 +997 84188 0.5090 +997 84231 0.4500 +997 84261 0.4150 +997 84498 0.5040 +997 84901 0.4500 +997 84932 0.4270 +997 84937 0.4070 +997 89910 0.4470 +997 89941 0.4110 +997 91300 0.5010 +997 92912 0.5760 +997 92979 0.5720 +997 112399 0.5100 +997 118424 0.4350 +997 127428 0.4880 +997 133482 0.5830 +997 197131 0.5040 +997 201595 0.4500 +997 220972 0.6970 +997 221302 0.4910 +997 387082 0.4500 +997 387522 0.5090 +999 1000 0.9950 +999 1001 0.9670 +999 1002 0.5680 +999 1003 0.9850 +999 1004 0.5990 +999 1005 0.5640 +999 1006 0.7470 +999 1007 0.5730 +999 1008 0.5760 +999 1009 0.7740 +999 1010 0.7490 +999 1012 0.5830 +999 1013 0.7370 +999 1015 0.7020 +999 1016 0.5780 +999 1017 0.6030 +999 1019 0.7120 +999 1021 0.6660 +999 1026 0.5830 +999 1027 0.5110 +999 1029 0.7130 +999 1030 0.4490 +999 1045 0.5800 +999 1048 0.5290 +999 1072 0.4940 +999 1073 0.4950 +999 1080 0.6260 +999 1105 0.4200 +999 1111 0.5350 +999 1113 0.4800 +999 1272 0.4260 +999 1277 0.4870 +999 1301 0.4680 +999 1364 0.8290 +999 1365 0.7060 +999 1366 0.9230 +999 1385 0.5700 +999 1387 0.7440 +999 1432 0.4390 +999 1434 0.5700 +999 1437 0.4600 +999 1452 0.4740 +999 1487 0.6830 +999 1488 0.5570 +999 1490 0.6080 +999 1493 0.4140 +999 1495 0.9990 +999 1496 0.9690 +999 1499 0.9990 +999 1500 0.9990 +999 1501 0.8620 +999 1508 0.4040 +999 1525 0.4150 +999 1612 0.5500 +999 1674 0.6120 +999 1786 0.7680 +999 1788 0.4780 +999 1789 0.5210 +999 1791 0.4170 +999 1824 0.5800 +999 1825 0.4770 +999 1829 0.5670 +999 1830 0.6440 +999 1832 0.7610 +999 1839 0.4350 +999 1855 0.4940 +999 1856 0.4140 +999 1869 0.6430 +999 1894 0.7270 +999 1947 0.6180 +999 1948 0.6190 +999 1949 0.5720 +999 1950 0.8520 +999 1956 0.9990 +999 1969 0.7180 +999 1994 0.6140 +999 1999 0.4650 +999 2001 0.4030 +999 2017 0.8310 +999 2022 0.4420 +999 2033 0.6000 +999 2034 0.4970 +999 2041 0.4470 +999 2048 0.6250 +999 2049 0.5560 +999 2058 0.4930 +999 2064 0.9700 +999 2065 0.8560 +999 2066 0.5010 +999 2086 0.9290 +999 2099 0.8030 +999 2100 0.4810 +999 2107 0.8000 +999 2113 0.4310 +999 2146 0.6660 +999 2197 0.8000 +999 2247 0.6330 +999 2248 0.5940 +999 2249 0.6150 +999 2250 0.6010 +999 2251 0.5920 +999 2252 0.6040 +999 2253 0.6010 +999 2254 0.5900 +999 2255 0.6160 +999 2258 0.5020 +999 2260 0.8850 +999 2263 0.4960 +999 2296 0.4160 +999 2303 0.6030 +999 2305 0.5540 +999 2308 0.4330 +999 2309 0.4800 +999 2312 0.4050 +999 2316 0.4040 +999 2319 0.9510 +999 2321 0.4490 +999 2335 0.8730 +999 2353 0.6180 +999 2475 0.6730 +999 2526 0.4300 +999 2534 0.7190 +999 2597 0.8550 +999 2625 0.5510 +999 2626 0.4320 +999 2627 0.4230 +999 2670 0.4790 +999 2697 0.5810 +999 2705 0.6250 +999 2706 0.4300 +999 2735 0.5820 +999 2736 0.4450 +999 2768 0.6580 +999 2810 0.5900 +999 2817 0.4620 +999 2885 0.6320 +999 2889 0.9440 +999 2919 0.4200 +999 2932 0.8940 +999 2950 0.4770 +999 3021 0.6310 +999 3059 0.8200 +999 3065 0.7750 +999 3066 0.8420 +999 3082 0.6750 +999 3091 0.7210 +999 3161 0.5150 +999 3169 0.5660 +999 3170 0.5420 +999 3172 0.8250 +999 3240 0.5030 +999 3265 0.5500 +999 3304 0.5120 +999 3308 0.4100 +999 3309 0.5890 +999 3312 0.5160 +999 3320 0.6790 +999 3326 0.5070 +999 3329 0.4920 +999 3383 0.5830 +999 3418 0.4400 +999 3458 0.5720 +999 3479 0.7310 +999 3480 0.7420 +999 3481 0.4720 +999 3491 0.4280 +999 3551 0.4080 +999 3552 0.4750 +999 3553 0.6070 +999 3558 0.4380 +999 3565 0.4860 +999 3569 0.6710 +999 3576 0.5920 +999 3586 0.5420 +999 3596 0.4350 +999 3605 0.4790 +999 3611 0.6380 +999 3630 0.6580 +999 3655 0.8440 +999 3664 0.4180 +999 3672 0.8510 +999 3673 0.6670 +999 3675 0.4160 +999 3678 0.5420 +999 3682 0.9970 +999 3684 0.4480 +999 3685 0.6800 +999 3688 0.8560 +999 3689 0.5740 +999 3690 0.4620 +999 3691 0.5690 +999 3693 0.4860 +999 3694 0.6000 +999 3695 0.8040 +999 3713 0.4250 +999 3717 0.5200 +999 3725 0.7550 +999 3728 0.9990 +999 3732 0.6750 +999 3791 0.7800 +999 3801 0.5010 +999 3815 0.5820 +999 3821 0.5240 +999 3824 0.5140 +999 3845 0.7230 +999 3848 0.6000 +999 3852 0.6760 +999 3855 0.7870 +999 3856 0.8260 +999 3857 0.5020 +999 3858 0.4350 +999 3861 0.6630 +999 3872 0.4340 +999 3875 0.8810 +999 3880 0.7470 +999 3897 0.6440 +999 3898 0.4380 +999 3921 0.8290 +999 3934 0.4300 +999 3958 0.4300 +999 3960 0.4840 +999 3965 0.4830 +999 4000 0.6320 +999 4001 0.4540 +999 4008 0.5830 +999 4014 0.4120 +999 4015 0.5780 +999 4017 0.4610 +999 4040 0.4860 +999 4041 0.4910 +999 4070 0.5000 +999 4072 0.9050 +999 4087 0.8520 +999 4088 0.7240 +999 4089 0.8040 +999 4092 0.6960 +999 4162 0.4030 +999 4170 0.4730 +999 4193 0.9250 +999 4233 0.9590 +999 4248 0.6340 +999 4249 0.6230 +999 4255 0.5450 +999 4288 0.6090 +999 4292 0.5790 +999 4301 0.8670 +999 4311 0.4510 +999 4312 0.5270 +999 4313 0.7910 +999 4314 0.7390 +999 4316 0.8190 +999 4318 0.9570 +999 4322 0.4490 +999 4323 0.5960 +999 4363 0.5480 +999 4436 0.4250 +999 4478 0.5070 +999 4585 0.4140 +999 4586 0.4840 +999 4594 0.5990 +999 4609 0.8040 +999 4613 0.4490 +999 4646 0.6920 +999 4647 0.4870 +999 4680 0.5910 +999 4684 0.4980 +999 4736 0.8020 +999 4739 0.4160 +999 4771 0.8590 +999 4780 0.5250 +999 4790 0.5860 +999 4792 0.4820 +999 4830 0.4720 +999 4851 0.6610 +999 4853 0.5150 +999 4854 0.4770 +999 4855 0.4120 +999 4868 0.4200 +999 4893 0.4260 +999 4904 0.4180 +999 4914 0.4830 +999 4921 0.5000 +999 4926 0.5250 +999 5017 0.4580 +999 5037 0.4220 +999 5054 0.5450 +999 5076 0.4790 +999 5080 0.4090 +999 5133 0.5630 +999 5144 0.4890 +999 5156 0.4680 +999 5159 0.5090 +999 5175 0.6430 +999 5241 0.6770 +999 5243 0.4950 +999 5265 0.5530 +999 5268 0.4540 +999 5284 0.5660 +999 5290 0.5750 +999 5304 0.4550 +999 5310 0.6790 +999 5315 0.4560 +999 5317 0.4400 +999 5318 0.6550 +999 5328 0.5750 +999 5329 0.4450 +999 5340 0.6440 +999 5361 0.4480 +999 5362 0.4340 +999 5375 0.8250 +999 5396 0.4380 +999 5420 0.4730 +999 5434 0.4050 +999 5460 0.8520 +999 5468 0.4750 +999 5499 0.4420 +999 5578 0.4180 +999 5587 0.5310 +999 5590 0.4050 +999 5594 0.4650 +999 5595 0.7700 +999 5599 0.4470 +999 5604 0.5640 +999 5650 0.8090 +999 5652 0.5370 +999 5663 0.9800 +999 5727 0.4470 +999 5728 0.9300 +999 5743 0.5940 +999 5747 0.7610 +999 5754 0.4580 +999 5781 0.4300 +999 5788 0.6010 +999 5789 0.4040 +999 5793 0.4130 +999 5796 0.5320 +999 5797 0.6280 +999 5801 0.5060 +999 5802 0.4350 +999 5818 0.9390 +999 5819 0.6000 +999 5829 0.6220 +999 5868 0.4040 +999 5879 0.6180 +999 5894 0.6010 +999 5900 0.5570 +999 5915 0.4750 +999 5925 0.4740 +999 5962 0.4980 +999 5970 0.4100 +999 6093 0.5270 +999 6122 0.8020 +999 6124 0.8130 +999 6125 0.8120 +999 6128 0.8080 +999 6129 0.8100 +999 6130 0.8120 +999 6132 0.8000 +999 6133 0.8000 +999 6135 0.8120 +999 6136 0.8000 +999 6137 0.8010 +999 6138 0.8160 +999 6139 0.8000 +999 6141 0.8020 +999 6142 0.8030 +999 6143 0.8230 +999 6144 0.8090 +999 6146 0.8130 +999 6147 0.8120 +999 6152 0.8080 +999 6154 0.8020 +999 6155 0.8050 +999 6156 0.8080 +999 6157 0.8000 +999 6158 0.8000 +999 6159 0.8080 +999 6160 0.8040 +999 6161 0.8210 +999 6164 0.8110 +999 6165 0.8200 +999 6166 0.8080 +999 6167 0.8100 +999 6168 0.8030 +999 6169 0.8000 +999 6170 0.8000 +999 6173 0.8080 +999 6175 0.8480 +999 6187 0.8110 +999 6188 0.8150 +999 6189 0.8100 +999 6191 0.8000 +999 6192 0.8000 +999 6193 0.8150 +999 6194 0.8390 +999 6198 0.5120 +999 6201 0.8040 +999 6202 0.8080 +999 6203 0.8070 +999 6204 0.8030 +999 6205 0.8060 +999 6206 0.8010 +999 6207 0.8130 +999 6208 0.8130 +999 6209 0.8050 +999 6210 0.8050 +999 6217 0.8050 +999 6218 0.8040 +999 6222 0.8250 +999 6223 0.8080 +999 6224 0.8030 +999 6227 0.8010 +999 6228 0.8010 +999 6229 0.8040 +999 6230 0.8000 +999 6231 0.8080 +999 6232 0.8040 +999 6233 0.9040 +999 6234 0.8000 +999 6235 0.8100 +999 6240 0.4820 +999 6249 0.5530 +999 6275 0.6660 +999 6279 0.9440 +999 6347 0.5210 +999 6362 0.4420 +999 6382 0.4990 +999 6387 0.7260 +999 6391 0.5790 +999 6401 0.6050 +999 6403 0.5770 +999 6404 0.4850 +999 6422 0.4760 +999 6423 0.4400 +999 6440 0.4550 +999 6464 0.6040 +999 6469 0.5900 +999 6495 0.4200 +999 6502 0.9270 +999 6513 0.4500 +999 6531 0.9010 +999 6554 0.6740 +999 6591 0.9290 +999 6595 0.4130 +999 6597 0.5640 +999 6598 0.4800 +999 6599 0.4040 +999 6608 0.4530 +999 6613 0.4440 +999 6615 0.9650 +999 6624 0.5260 +999 6647 0.6450 +999 6648 0.5510 +999 6657 0.7300 +999 6659 0.5200 +999 6662 0.7380 +999 6665 0.7800 +999 6667 0.4130 +999 6678 0.4180 +999 6692 0.5040 +999 6696 0.5290 +999 6714 0.9880 +999 6736 0.4380 +999 6737 0.9130 +999 6768 0.4600 +999 6772 0.4520 +999 6774 0.7320 +999 6790 0.6160 +999 6794 0.4800 +999 6855 0.4320 +999 6868 0.4520 +999 6925 0.4470 +999 6927 0.4150 +999 6928 0.4060 +999 6932 0.5470 +999 6939 0.5280 +999 6997 0.4040 +999 7015 0.4890 +999 7033 0.4110 +999 7037 0.4030 +999 7039 0.5130 +999 7040 0.8410 +999 7042 0.5950 +999 7043 0.4890 +999 7046 0.6120 +999 7048 0.6460 +999 7052 0.5700 +999 7057 0.6240 +999 7070 0.5100 +999 7074 0.4460 +999 7076 0.5550 +999 7077 0.5360 +999 7078 0.5230 +999 7080 0.4480 +999 7082 0.9870 +999 7094 0.6920 +999 7099 0.4870 +999 7113 0.4830 +999 7122 0.5550 +999 7124 0.6590 +999 7153 0.4110 +999 7157 0.8530 +999 7159 0.6850 +999 7184 0.4410 +999 7275 0.5090 +999 7291 0.8490 +999 7311 0.8980 +999 7314 0.5290 +999 7316 0.5920 +999 7341 0.4120 +999 7373 0.4300 +999 7408 0.4050 +999 7410 0.5610 +999 7412 0.4800 +999 7414 0.9960 +999 7424 0.4780 +999 7430 0.7090 +999 7431 0.8920 +999 7448 0.5350 +999 7471 0.5960 +999 7472 0.4890 +999 7473 0.4410 +999 7474 0.5920 +999 7476 0.5970 +999 7481 0.4390 +999 7490 0.5790 +999 7520 0.5110 +999 7525 0.4790 +999 7534 0.5960 +999 7750 0.4420 +999 7764 0.5880 +999 7837 0.7890 +999 7849 0.4800 +999 7852 0.7470 +999 8061 0.4370 +999 8091 0.5930 +999 8289 0.4470 +999 8290 0.6280 +999 8312 0.7710 +999 8313 0.5930 +999 8356 0.6270 +999 8361 0.5210 +999 8394 0.4670 +999 8502 0.7490 +999 8549 0.5850 +999 8642 0.5720 +999 8650 0.8720 +999 8678 0.4470 +999 8751 0.8200 +999 8754 0.5180 +999 8766 0.6380 +999 8795 0.6150 +999 8797 0.7110 +999 8817 0.5950 +999 8822 0.5790 +999 8823 0.5810 +999 8826 0.9970 +999 8842 0.7140 +999 8900 0.5250 +999 8945 0.4890 +999 8976 0.4060 +999 9045 0.8080 +999 9073 0.4250 +999 9074 0.5010 +999 9075 0.5920 +999 9076 0.8820 +999 9112 0.6200 +999 9113 0.6590 +999 9212 0.4760 +999 9223 0.6450 +999 9232 0.4660 +999 9241 0.6260 +999 9253 0.8720 +999 9314 0.8090 +999 9349 0.8000 +999 9365 0.4660 +999 9368 0.5970 +999 9414 0.7720 +999 9429 0.5890 +999 9451 0.5710 +999 9475 0.4230 +999 9495 0.4410 +999 9564 0.4750 +999 9620 0.4650 +999 9658 0.4390 +999 9780 0.5310 +999 9817 0.5240 +999 9828 0.4870 +999 9839 0.9540 +999 9922 0.5100 +999 10000 0.4090 +999 10009 0.4530 +999 10014 0.4200 +999 10018 0.4770 +999 10053 0.4350 +999 10076 0.6910 +999 10163 0.5010 +999 10207 0.5640 +999 10211 0.9260 +999 10219 0.9990 +999 10232 0.5830 +999 10297 0.7480 +999 10397 0.7120 +999 10399 0.8800 +999 10413 0.7120 +999 10551 0.4020 +999 10564 0.4280 +999 10575 0.4280 +999 10580 0.6200 +999 10630 0.5090 +999 10631 0.4440 +999 10642 0.4610 +999 10653 0.4280 +999 10672 0.4590 +999 10736 0.4180 +999 10744 0.4390 +999 10763 0.5080 +999 10788 0.5790 +999 10919 0.4450 +999 10979 0.5210 +999 11065 0.5950 +999 11078 0.4140 +999 11122 0.5490 +999 11186 0.5950 +999 11187 0.5470 +999 11197 0.4520 +999 11224 0.8000 +999 11279 0.4750 +999 11314 0.4550 +999 22837 0.4100 +999 22943 0.5470 +999 23028 0.6430 +999 23186 0.6090 +999 23385 0.8060 +999 23396 0.5880 +999 23405 0.4860 +999 23411 0.5120 +999 23512 0.4480 +999 23513 0.9160 +999 23521 0.8330 +999 23603 0.7810 +999 23705 0.4060 +999 25803 0.5500 +999 25873 0.8000 +999 25942 0.4170 +999 26018 0.5900 +999 26276 0.5130 +999 26281 0.5820 +999 26524 0.4530 +999 27006 0.5960 +999 27032 0.4470 +999 27134 0.5700 +999 27161 0.5010 +999 27250 0.4540 +999 27254 0.6040 +999 28316 0.5530 +999 28513 0.5580 +999 29102 0.4170 +999 29119 0.9810 +999 29126 0.7180 +999 29127 0.4130 +999 30816 0.9320 +999 50489 0.4320 +999 50649 0.5030 +999 50674 0.4270 +999 50848 0.9210 +999 50943 0.4600 +999 51121 0.8020 +999 51176 0.7510 +999 51208 0.6200 +999 51339 0.4960 +999 51474 0.7760 +999 51762 0.5710 +999 51806 0.5860 +999 53373 0.4360 +999 53827 0.6260 +999 54205 0.4470 +999 54361 0.4880 +999 54474 0.6000 +999 54845 0.7140 +999 54894 0.5120 +999 55294 0.4160 +999 55558 0.4170 +999 55578 0.5630 +999 55591 0.6420 +999 55727 0.6440 +999 55742 0.4600 +999 55966 0.9650 +999 56288 0.7410 +999 56924 0.5620 +999 56998 0.5080 +999 57111 0.6120 +999 57175 0.4790 +999 57216 0.7360 +999 57504 0.7570 +999 57530 0.6870 +999 57584 0.6520 +999 57662 0.5440 +999 57669 0.5380 +999 57758 0.5000 +999 58494 0.5340 +999 58495 0.5400 +999 59341 0.5340 +999 60437 0.5520 +999 60485 0.4590 +999 63035 0.4010 +999 63894 0.5110 +999 64072 0.5690 +999 64321 0.5030 +999 64398 0.4970 +999 64403 0.5440 +999 64405 0.5580 +999 64581 0.5000 +999 79602 0.4630 +999 79727 0.4740 +999 79872 0.9930 +999 79923 0.7250 +999 79977 0.6420 +999 80004 0.5430 +999 81669 0.4790 +999 81839 0.5830 +999 83660 0.6610 +999 83854 0.8390 +999 84260 0.5070 +999 84612 0.4410 +999 84962 0.5310 +999 85409 0.4650 +999 89780 0.7370 +999 91584 0.4260 +999 91860 0.5680 +999 92140 0.4450 +999 92335 0.4680 +999 92359 0.5710 +999 114569 0.4570 +999 115908 0.5150 +999 117581 0.6790 +999 121227 0.4700 +999 128239 0.5400 +999 131450 0.4160 +999 132864 0.5110 +999 133482 0.9870 +999 137902 0.7890 +999 140801 0.8000 +999 143162 0.4450 +999 144100 0.8230 +999 146722 0.6240 +999 149461 0.4870 +999 150274 0.5660 +999 150353 0.4240 +999 151963 0.4330 +999 153562 0.5810 +999 154796 0.5870 +999 163688 0.5680 +999 220296 0.5790 +999 220972 0.4680 +999 222256 0.5900 +999 255738 0.4810 +999 284194 0.4730 +999 284654 0.4420 +999 333929 0.5380 +999 346389 0.4250 +999 400566 0.5100 +999 401251 0.4330 +999 405754 0.9320 +999 440093 0.6320 +999 440686 0.6280 +999 653604 0.6280 +999 654346 0.4730 +999 728378 0.4580 +999 100133941 0.7520 +999 100506658 0.9930 +999 100526842 0.8000 +999 100529239 0.8030 +999 100532731 0.6320 +1000 1001 0.8850 +1000 1002 0.8810 +1000 1003 0.8980 +1000 1004 0.8330 +1000 1005 0.8200 +1000 1006 0.6200 +1000 1007 0.7450 +1000 1008 0.8430 +1000 1009 0.9580 +1000 1010 0.7560 +1000 1012 0.5830 +1000 1013 0.8190 +1000 1015 0.7080 +1000 1016 0.7500 +1000 1017 0.5330 +1000 1019 0.5640 +1000 1021 0.5090 +1000 1026 0.4250 +1000 1029 0.4570 +1000 1072 0.4320 +1000 1073 0.4550 +1000 1277 0.6110 +1000 1364 0.5410 +1000 1365 0.5520 +1000 1366 0.6120 +1000 1385 0.5910 +1000 1387 0.9340 +1000 1432 0.6510 +1000 1452 0.4630 +1000 1462 0.5730 +1000 1464 0.5830 +1000 1490 0.5240 +1000 1495 0.9900 +1000 1496 0.9360 +1000 1499 0.9990 +1000 1500 0.9990 +1000 1501 0.7660 +1000 1583 0.4130 +1000 1627 0.4290 +1000 1634 0.4830 +1000 1674 0.4670 +1000 1742 0.6660 +1000 1786 0.4030 +1000 1826 0.5580 +1000 1829 0.5610 +1000 1832 0.8230 +1000 1947 0.4040 +1000 1948 0.5400 +1000 1949 0.4070 +1000 1950 0.7840 +1000 1956 0.7800 +1000 1969 0.6100 +1000 1994 0.5630 +1000 2017 0.7980 +1000 2022 0.4070 +1000 2023 0.4560 +1000 2041 0.4250 +1000 2043 0.4040 +1000 2045 0.4960 +1000 2048 0.6180 +1000 2064 0.7350 +1000 2065 0.4430 +1000 2066 0.4450 +1000 2099 0.5750 +1000 2146 0.5350 +1000 2246 0.5750 +1000 2247 0.6270 +1000 2248 0.8810 +1000 2249 0.8810 +1000 2250 0.8830 +1000 2251 0.8810 +1000 2252 0.8820 +1000 2253 0.8850 +1000 2254 0.8820 +1000 2255 0.8820 +1000 2258 0.5040 +1000 2260 0.9460 +1000 2263 0.4610 +1000 2264 0.5950 +1000 2274 0.5150 +1000 2303 0.6070 +1000 2305 0.4760 +1000 2318 0.6220 +1000 2335 0.8600 +1000 2475 0.4640 +1000 2596 0.6940 +1000 2597 0.8080 +1000 2619 0.5460 +1000 2670 0.4910 +1000 2697 0.9520 +1000 2706 0.5030 +1000 2735 0.4760 +1000 2768 0.4130 +1000 2891 0.9820 +1000 2893 0.5240 +1000 2895 0.4330 +1000 2898 0.5220 +1000 2902 0.5270 +1000 2932 0.6670 +1000 3021 0.4880 +1000 3059 0.7880 +1000 3082 0.5450 +1000 3091 0.6280 +1000 3161 0.5140 +1000 3172 0.5730 +1000 3383 0.4490 +1000 3479 0.4810 +1000 3480 0.5560 +1000 3553 0.4440 +1000 3569 0.5460 +1000 3576 0.4220 +1000 3611 0.4660 +1000 3630 0.5390 +1000 3655 0.4440 +1000 3673 0.5580 +1000 3676 0.5270 +1000 3678 0.7120 +1000 3685 0.4190 +1000 3688 0.8180 +1000 3695 0.4100 +1000 3717 0.5440 +1000 3725 0.5270 +1000 3728 0.9750 +1000 3791 0.5020 +1000 3815 0.5760 +1000 3845 0.5140 +1000 3852 0.4190 +1000 3856 0.5600 +1000 3861 0.4440 +1000 3875 0.5870 +1000 3880 0.5580 +1000 3897 0.6190 +1000 3934 0.4430 +1000 3958 0.5930 +1000 4001 0.4020 +1000 4015 0.4730 +1000 4017 0.4160 +1000 4040 0.4360 +1000 4041 0.7800 +1000 4072 0.6690 +1000 4087 0.7070 +1000 4088 0.6400 +1000 4089 0.7510 +1000 4092 0.4570 +1000 4162 0.4410 +1000 4170 0.5510 +1000 4193 0.4030 +1000 4205 0.5670 +1000 4208 0.6300 +1000 4209 0.5660 +1000 4233 0.7500 +1000 4284 0.4240 +1000 4286 0.4050 +1000 4301 0.7380 +1000 4312 0.4440 +1000 4313 0.8340 +1000 4314 0.4940 +1000 4316 0.7200 +1000 4318 0.7870 +1000 4322 0.4120 +1000 4323 0.5170 +1000 4522 0.4790 +1000 4594 0.5870 +1000 4609 0.7120 +1000 4684 0.9670 +1000 4756 0.5940 +1000 4790 0.4790 +1000 4803 0.4420 +1000 4851 0.6010 +1000 4853 0.4400 +1000 4854 0.4350 +1000 4855 0.4830 +1000 4897 0.5910 +1000 4907 0.4320 +1000 4914 0.4120 +1000 4917 0.4450 +1000 4921 0.5260 +1000 5010 0.5730 +1000 5052 0.4350 +1000 5054 0.4540 +1000 5080 0.5340 +1000 5100 0.6620 +1000 5156 0.4100 +1000 5159 0.4940 +1000 5175 0.5760 +1000 5241 0.4510 +1000 5243 0.4150 +1000 5294 0.4770 +1000 5295 0.5130 +1000 5318 0.7730 +1000 5328 0.4220 +1000 5339 0.6900 +1000 5396 0.4490 +1000 5460 0.6890 +1000 5595 0.6290 +1000 5600 0.6070 +1000 5604 0.4360 +1000 5608 0.4680 +1000 5663 0.9430 +1000 5728 0.7540 +1000 5747 0.6030 +1000 5770 0.6740 +1000 5788 0.5600 +1000 5802 0.4010 +1000 5818 0.6930 +1000 5819 0.7320 +1000 5829 0.5140 +1000 5877 0.4830 +1000 6091 0.5430 +1000 6092 0.5730 +1000 6093 0.4430 +1000 6198 0.4420 +1000 6259 0.6710 +1000 6275 0.5800 +1000 6300 0.6040 +1000 6310 0.4240 +1000 6331 0.6890 +1000 6387 0.5960 +1000 6391 0.4790 +1000 6405 0.4950 +1000 6469 0.5540 +1000 6500 0.4080 +1000 6585 0.4470 +1000 6591 0.8910 +1000 6608 0.4410 +1000 6615 0.9320 +1000 6616 0.4460 +1000 6624 0.4270 +1000 6647 0.4650 +1000 6648 0.4370 +1000 6656 0.4380 +1000 6657 0.6900 +1000 6659 0.4510 +1000 6662 0.5640 +1000 6663 0.4090 +1000 6678 0.4100 +1000 6696 0.6530 +1000 6714 0.7730 +1000 6737 0.7560 +1000 6774 0.6630 +1000 6929 0.5970 +1000 7010 0.4710 +1000 7040 0.7380 +1000 7042 0.5460 +1000 7043 0.4860 +1000 7046 0.5710 +1000 7048 0.5180 +1000 7057 0.5850 +1000 7070 0.4920 +1000 7076 0.4610 +1000 7077 0.4280 +1000 7082 0.9090 +1000 7094 0.4210 +1000 7124 0.4920 +1000 7138 0.4960 +1000 7157 0.6580 +1000 7223 0.5290 +1000 7225 0.4980 +1000 7291 0.8230 +1000 7412 0.4700 +1000 7414 0.9390 +1000 7424 0.4320 +1000 7430 0.4160 +1000 7431 0.7850 +1000 7448 0.4480 +1000 7471 0.4850 +1000 7472 0.4150 +1000 7474 0.5670 +1000 7481 0.4060 +1000 7837 0.7260 +1000 7852 0.5440 +1000 7869 0.4520 +1000 8061 0.5700 +1000 8091 0.5380 +1000 8290 0.4880 +1000 8312 0.8350 +1000 8313 0.4780 +1000 8323 0.4960 +1000 8324 0.4320 +1000 8325 0.4660 +1000 8356 0.4880 +1000 8502 0.7050 +1000 8549 0.4170 +1000 8642 0.6540 +1000 8650 0.4700 +1000 8739 0.4050 +1000 8766 0.6090 +1000 8817 0.8820 +1000 8822 0.8810 +1000 8823 0.8820 +1000 8826 0.6690 +1000 8829 0.4970 +1000 8842 0.6460 +1000 8874 0.4850 +1000 8877 0.4660 +1000 9043 0.5650 +1000 9074 0.4290 +1000 9076 0.6750 +1000 9231 0.5300 +1000 9253 0.4710 +1000 9314 0.5090 +1000 9368 0.6800 +1000 9374 0.5560 +1000 9378 0.4270 +1000 9379 0.4220 +1000 9414 0.5940 +1000 9423 0.5180 +1000 9429 0.5260 +1000 9451 0.4740 +1000 9620 0.4580 +1000 9723 0.4440 +1000 9743 0.5300 +1000 9839 0.7900 +1000 9965 0.4080 +1000 9991 0.4800 +1000 10153 0.5280 +1000 10219 0.9440 +1000 10297 0.7270 +1000 10371 0.5760 +1000 10413 0.6900 +1000 10512 0.5120 +1000 10575 0.4370 +1000 10631 0.5080 +1000 10763 0.6100 +1000 10818 0.5290 +1000 11127 0.4570 +1000 11249 0.4200 +1000 22871 0.7080 +1000 22943 0.4650 +1000 23114 0.6260 +1000 23500 0.4960 +1000 23705 0.6300 +1000 25945 0.4880 +1000 26045 0.4590 +1000 26281 0.8820 +1000 27006 0.8820 +1000 27032 0.4130 +1000 27134 0.4230 +1000 27161 0.4450 +1000 28316 0.8430 +1000 28513 0.8330 +1000 29119 0.8820 +1000 29126 0.4460 +1000 29937 0.4260 +1000 30851 0.4220 +1000 50848 0.6820 +1000 50937 0.8660 +1000 51176 0.5270 +1000 51474 0.5310 +1000 51548 0.4310 +1000 53373 0.4230 +1000 54345 0.5840 +1000 54757 0.4180 +1000 54845 0.4210 +1000 56288 0.5090 +1000 56920 0.4070 +1000 56975 0.6330 +1000 57526 0.9000 +1000 57575 0.9040 +1000 57619 0.5430 +1000 58494 0.5380 +1000 60437 0.5550 +1000 64072 0.5800 +1000 64403 0.5770 +1000 64405 0.5630 +1000 64866 0.5700 +1000 79827 0.5690 +1000 79872 0.5840 +1000 79923 0.6810 +1000 81839 0.5030 +1000 83660 0.4340 +1000 83700 0.4350 +1000 89780 0.5490 +1000 91653 0.7880 +1000 112464 0.4800 +1000 115908 0.4830 +1000 117581 0.6410 +1000 137902 0.7070 +1000 165904 0.6580 +1000 200933 0.5340 +1000 222256 0.5590 +1000 223117 0.4270 +1000 255738 0.4200 +1000 333929 0.4660 +1000 401251 0.5860 +1000 440093 0.4880 +1000 440686 0.4880 +1000 653604 0.4880 +1000 100133941 0.5960 +1000 100271849 0.5200 +1000 100506658 0.6960 +1000 100532731 0.5510 +1001 1002 0.5820 +1001 1003 0.6400 +1001 1004 0.7660 +1001 1005 0.7350 +1001 1006 0.6330 +1001 1007 0.5690 +1001 1008 0.7530 +1001 1009 0.8010 +1001 1010 0.6060 +1001 1012 0.7280 +1001 1013 0.5870 +1001 1015 0.7050 +1001 1016 0.5700 +1001 1366 0.5470 +1001 1495 0.9300 +1001 1496 0.6270 +1001 1499 0.9950 +1001 1500 0.9750 +1001 1832 0.6050 +1001 1956 0.6860 +1001 2064 0.5690 +1001 2099 0.4210 +1001 2195 0.5930 +1001 2335 0.4380 +1001 2909 0.5230 +1001 3065 0.4450 +1001 3480 0.4130 +1001 3655 0.4330 +1001 3691 0.4690 +1001 3728 0.8470 +1001 3852 0.7240 +1001 3853 0.4860 +1001 3854 0.4630 +1001 3856 0.4780 +1001 3861 0.6580 +1001 3866 0.4780 +1001 3872 0.6350 +1001 3875 0.4050 +1001 3918 0.4570 +1001 4072 0.4800 +1001 4318 0.5930 +1001 4684 0.5150 +1001 4868 0.9850 +1001 5241 0.4220 +1001 5268 0.5270 +1001 5317 0.4020 +1001 5364 0.4040 +1001 5420 0.5980 +1001 6092 0.4410 +1001 6093 0.5170 +1001 6383 0.4320 +1001 6591 0.4850 +1001 6615 0.5110 +1001 7082 0.9500 +1001 7157 0.4340 +1001 7291 0.4040 +1001 7414 0.6330 +1001 7827 0.9620 +1001 8642 0.5790 +1001 9075 0.4250 +1001 9076 0.5160 +1001 9839 0.4080 +1001 10112 0.4690 +1001 10297 0.5480 +1001 10686 0.4950 +1001 11187 0.4520 +1001 11346 0.4600 +1001 23607 0.8530 +1001 28316 0.7370 +1001 28513 0.7400 +1001 29119 0.6510 +1001 30851 0.4210 +1001 51176 0.4050 +1001 54815 0.4080 +1001 54845 0.4120 +1001 55243 0.7800 +1001 57554 0.4820 +1001 60437 0.5550 +1001 64072 0.5830 +1001 64221 0.4880 +1001 64403 0.5610 +1001 64405 0.5570 +1001 79827 0.4430 +1001 83540 0.4460 +1001 222256 0.5790 +1001 100133941 0.4070 +1001 100506658 0.5970 +1002 1003 0.5800 +1002 1004 0.7270 +1002 1005 0.7620 +1002 1006 0.7600 +1002 1007 0.5930 +1002 1008 0.5980 +1002 1009 0.7050 +1002 1010 0.5780 +1002 1012 0.5960 +1002 1013 0.5800 +1002 1015 0.6910 +1002 1016 0.5910 +1002 1432 0.5580 +1002 1495 0.8170 +1002 1496 0.7490 +1002 1499 0.8070 +1002 1500 0.9420 +1002 1501 0.4950 +1002 3695 0.4500 +1002 3728 0.7760 +1002 3908 0.4280 +1002 3911 0.4720 +1002 4205 0.5200 +1002 4208 0.5310 +1002 4209 0.5200 +1002 4753 0.4280 +1002 4978 0.4310 +1002 5600 0.5530 +1002 5608 0.4100 +1002 6300 0.5640 +1002 6695 0.4110 +1002 6857 0.4050 +1002 6900 0.4500 +1002 6929 0.5480 +1002 7158 0.6790 +1002 7414 0.5280 +1002 7436 0.4300 +1002 8502 0.4430 +1002 8642 0.6020 +1002 9037 0.4410 +1002 9043 0.4990 +1002 9228 0.4340 +1002 9379 0.4810 +1002 10219 0.8090 +1002 10297 0.5710 +1002 23114 0.4470 +1002 26047 0.4690 +1002 28316 0.7840 +1002 28513 0.7690 +1002 29119 0.6200 +1002 50937 0.5120 +1002 51474 0.4610 +1002 54549 0.4930 +1002 55816 0.4320 +1002 60437 0.5690 +1002 64072 0.5890 +1002 64403 0.5680 +1002 64405 0.5830 +1002 81575 0.4090 +1002 91653 0.5090 +1002 118427 0.4700 +1002 222256 0.5770 +1002 222553 0.4420 +1002 257194 0.4230 +1002 100271849 0.5200 +1003 1004 0.5590 +1003 1005 0.5650 +1003 1006 0.5870 +1003 1007 0.5480 +1003 1008 0.5720 +1003 1009 0.6060 +1003 1010 0.5820 +1003 1012 0.6130 +1003 1013 0.6290 +1003 1015 0.8400 +1003 1016 0.5510 +1003 1043 0.4480 +1003 1264 0.4520 +1003 1277 0.4640 +1003 1282 0.4550 +1003 1364 0.5580 +1003 1366 0.4830 +1003 1436 0.4400 +1003 1445 0.5570 +1003 1464 0.4050 +1003 1482 0.4870 +1003 1490 0.4430 +1003 1495 0.9720 +1003 1496 0.7000 +1003 1499 0.9990 +1003 1500 0.9990 +1003 1501 0.5640 +1003 1832 0.8670 +1003 1901 0.5040 +1003 1906 0.5280 +1003 1948 0.6160 +1003 1950 0.5440 +1003 1956 0.7360 +1003 1969 0.5930 +1003 2017 0.5550 +1003 2022 0.8790 +1003 2034 0.5600 +1003 2050 0.5220 +1003 2054 0.4310 +1003 2059 0.5950 +1003 2078 0.5050 +1003 2113 0.4470 +1003 2116 0.6010 +1003 2122 0.4380 +1003 2149 0.4100 +1003 2152 0.4840 +1003 2185 0.7910 +1003 2212 0.5220 +1003 2213 0.5420 +1003 2243 0.5380 +1003 2244 0.4620 +1003 2246 0.4230 +1003 2247 0.6750 +1003 2248 0.5000 +1003 2249 0.5020 +1003 2250 0.5020 +1003 2251 0.5000 +1003 2252 0.5230 +1003 2253 0.5050 +1003 2254 0.4970 +1003 2255 0.5260 +1003 2258 0.4860 +1003 2266 0.4150 +1003 2277 0.5370 +1003 2303 0.4180 +1003 2321 0.8330 +1003 2324 0.9540 +1003 2335 0.7040 +1003 2534 0.7520 +1003 2597 0.6130 +1003 2623 0.4060 +1003 2624 0.5090 +1003 2626 0.4330 +1003 2658 0.5890 +1003 2697 0.6960 +1003 2701 0.6730 +1003 2702 0.5570 +1003 2768 0.5960 +1003 2811 0.4200 +1003 2909 0.6800 +1003 2993 0.6190 +1003 2994 0.4070 +1003 2996 0.4330 +1003 3059 0.5750 +1003 3065 0.4020 +1003 3082 0.6410 +1003 3091 0.6060 +1003 3339 0.4120 +1003 3383 0.7190 +1003 3384 0.6850 +1003 3397 0.5070 +1003 3458 0.4190 +1003 3479 0.4680 +1003 3480 0.4920 +1003 3553 0.5700 +1003 3569 0.5860 +1003 3576 0.4760 +1003 3630 0.4710 +1003 3674 0.6270 +1003 3678 0.6510 +1003 3684 0.5200 +1003 3685 0.4520 +1003 3688 0.5700 +1003 3689 0.6630 +1003 3690 0.4640 +1003 3693 0.5150 +1003 3728 0.8930 +1003 3764 0.4070 +1003 3791 0.9990 +1003 3815 0.7230 +1003 3827 0.4370 +1003 3958 0.5840 +1003 4005 0.5080 +1003 4015 0.4580 +1003 4072 0.4440 +1003 4087 0.4360 +1003 4162 0.7030 +1003 4254 0.4270 +1003 4301 0.8260 +1003 4313 0.5210 +1003 4318 0.6170 +1003 4323 0.4290 +1003 4609 0.4600 +1003 4629 0.5620 +1003 4633 0.4180 +1003 4651 0.5140 +1003 4688 0.8340 +1003 4846 0.7640 +1003 4851 0.4960 +1003 4854 0.4580 +1003 4855 0.6030 +1003 4907 0.5540 +1003 5029 0.4250 +1003 5054 0.4490 +1003 5058 0.5510 +1003 5062 0.5130 +1003 5063 0.5080 +1003 5097 0.4350 +1003 5144 0.4420 +1003 5155 0.6010 +1003 5156 0.5520 +1003 5159 0.6660 +1003 5175 0.9990 +1003 5228 0.4980 +1003 5420 0.5020 +1003 5460 0.4910 +1003 5468 0.5940 +1003 5578 0.5190 +1003 5595 0.5540 +1003 5629 0.4440 +1003 5663 0.4750 +1003 5688 0.4140 +1003 5747 0.8760 +1003 5770 0.6010 +1003 5771 0.4700 +1003 5781 0.5500 +1003 5787 0.9820 +1003 5788 0.8060 +1003 5792 0.5010 +1003 5795 0.8110 +1003 5797 0.5200 +1003 5818 0.8440 +1003 5829 0.6970 +1003 5877 0.5390 +1003 5879 0.6080 +1003 6275 0.5240 +1003 6295 0.4310 +1003 6347 0.5170 +1003 6387 0.6160 +1003 6401 0.9800 +1003 6403 0.6030 +1003 6464 0.4280 +1003 6591 0.4890 +1003 6615 0.5720 +1003 6657 0.4570 +1003 6693 0.4160 +1003 6696 0.4050 +1003 6714 0.8260 +1003 6774 0.4030 +1003 6876 0.7220 +1003 6886 0.4870 +1003 7010 0.9010 +1003 7026 0.4410 +1003 7040 0.5790 +1003 7042 0.4520 +1003 7046 0.4420 +1003 7056 0.5260 +1003 7057 0.4270 +1003 7070 0.7330 +1003 7074 0.5650 +1003 7075 0.8070 +1003 7082 0.9950 +1003 7099 0.4110 +1003 7122 0.9930 +1003 7124 0.5930 +1003 7148 0.4340 +1003 7157 0.4020 +1003 7291 0.4470 +1003 7408 0.5590 +1003 7409 0.6130 +1003 7410 0.6740 +1003 7412 0.8060 +1003 7414 0.9750 +1003 7423 0.4190 +1003 7424 0.5970 +1003 7431 0.5260 +1003 7442 0.4240 +1003 7448 0.5030 +1003 7450 0.8810 +1003 7453 0.8500 +1003 7472 0.5920 +1003 7791 0.4730 +1003 7837 0.5200 +1003 7852 0.5600 +1003 8189 0.4060 +1003 8322 0.6250 +1003 8490 0.4070 +1003 8502 0.7550 +1003 8547 0.4610 +1003 8613 0.4090 +1003 8642 0.6610 +1003 8774 0.5490 +1003 8775 0.5770 +1003 8777 0.5160 +1003 8817 0.5100 +1003 8822 0.4960 +1003 8823 0.4980 +1003 8825 0.4320 +1003 8826 0.6010 +1003 8829 0.6980 +1003 8842 0.6670 +1003 8862 0.4320 +1003 9076 0.4990 +1003 9127 0.4180 +1003 9223 0.4380 +1003 9270 0.4220 +1003 9314 0.6560 +1003 9414 0.5440 +1003 9693 0.5510 +1003 9780 0.4490 +1003 10266 0.4210 +1003 10297 0.5400 +1003 10352 0.4800 +1003 10365 0.5260 +1003 10403 0.4720 +1003 10411 0.4960 +1003 10451 0.5380 +1003 10544 0.4470 +1003 10630 0.5080 +1003 10672 0.4410 +1003 10763 0.6760 +1003 10894 0.7070 +1003 10970 0.4890 +1003 11069 0.4330 +1003 11082 0.5820 +1003 11346 0.4720 +1003 22918 0.6750 +1003 23365 0.4110 +1003 23462 0.4830 +1003 23493 0.4590 +1003 23584 0.4730 +1003 26038 0.6190 +1003 26281 0.4980 +1003 27006 0.5050 +1003 27134 0.4290 +1003 27143 0.4320 +1003 28316 0.5850 +1003 28513 0.5920 +1003 28514 0.4360 +1003 30818 0.4120 +1003 50848 0.7970 +1003 51129 0.8700 +1003 51162 0.4800 +1003 51294 0.7000 +1003 51474 0.5710 +1003 51705 0.7860 +1003 54345 0.6710 +1003 54538 0.7070 +1003 54567 0.7190 +1003 54922 0.4720 +1003 55591 0.5350 +1003 56288 0.9160 +1003 56920 0.4140 +1003 57530 0.6090 +1003 57591 0.5040 +1003 58494 0.4320 +1003 60437 0.5460 +1003 64072 0.5820 +1003 64123 0.4560 +1003 64321 0.6650 +1003 64398 0.5300 +1003 64403 0.5500 +1003 64405 0.5630 +1003 79812 0.6170 +1003 79923 0.4630 +1003 80781 0.4200 +1003 83483 0.5990 +1003 83595 0.6070 +1003 83605 0.6860 +1003 83700 0.4810 +1003 84364 0.4260 +1003 84708 0.4230 +1003 90952 0.8500 +1003 117583 0.4900 +1003 128209 0.4540 +1003 137902 0.5020 +1003 140706 0.4760 +1003 161198 0.5470 +1003 168667 0.4830 +1003 196883 0.4530 +1003 221395 0.6410 +1003 222256 0.5430 +1003 338328 0.4920 +1003 641700 0.5670 +1003 100506658 0.9800 +1004 1005 0.7990 +1004 1006 0.5660 +1004 1007 0.7260 +1004 1008 0.7820 +1004 1009 0.7240 +1004 1010 0.7370 +1004 1012 0.6100 +1004 1013 0.8410 +1004 1015 0.6930 +1004 1016 0.7820 +1004 1306 0.4260 +1004 1364 0.4880 +1004 1495 0.8750 +1004 1496 0.6380 +1004 1499 0.8630 +1004 1500 0.7040 +1004 1601 0.4740 +1004 3728 0.5940 +1004 3975 0.4160 +1004 4060 0.4150 +1004 4072 0.4890 +1004 4435 0.4010 +1004 5076 0.4560 +1004 5097 0.4630 +1004 6500 0.4570 +1004 7082 0.5080 +1004 7122 0.4780 +1004 7791 0.4410 +1004 7849 0.4210 +1004 8642 0.5890 +1004 8777 0.4930 +1004 8825 0.5110 +1004 9071 0.4350 +1004 10297 0.5400 +1004 10736 0.4590 +1004 11337 0.6880 +1004 28316 0.7960 +1004 28513 0.7990 +1004 55591 0.5240 +1004 60437 0.5780 +1004 64072 0.5660 +1004 64403 0.5620 +1004 64405 0.5920 +1004 84708 0.4240 +1004 114928 0.4070 +1004 222256 0.5630 +1005 1006 0.7580 +1005 1007 0.7250 +1005 1008 0.8270 +1005 1009 0.7150 +1005 1010 0.7490 +1005 1012 0.6160 +1005 1013 0.8350 +1005 1015 0.6750 +1005 1016 0.7400 +1005 1311 0.4530 +1005 1495 0.6680 +1005 1496 0.7380 +1005 1499 0.8960 +1005 1500 0.7480 +1005 1501 0.4510 +1005 2200 0.4280 +1005 2201 0.4020 +1005 3035 0.4050 +1005 3728 0.7480 +1005 5075 0.4480 +1005 6597 0.5180 +1005 7546 0.4180 +1005 8190 0.4570 +1005 8642 0.6840 +1005 10297 0.5590 +1005 28316 0.5920 +1005 28513 0.5750 +1005 55636 0.4050 +1005 60437 0.5710 +1005 64072 0.5890 +1005 64403 0.5470 +1005 64405 0.5510 +1005 65217 0.4380 +1005 134359 0.4440 +1005 167838 0.4060 +1005 222256 0.6000 +1006 1007 0.7260 +1006 1008 0.5980 +1006 1009 0.5560 +1006 1010 0.8930 +1006 1012 0.7570 +1006 1013 0.6310 +1006 1015 0.6910 +1006 1016 0.5890 +1006 1495 0.8630 +1006 1496 0.9220 +1006 1499 0.9550 +1006 1500 0.9290 +1006 1501 0.4580 +1006 1789 0.4760 +1006 2895 0.4310 +1006 3030 0.4260 +1006 3728 0.7990 +1006 4988 0.4220 +1006 5308 0.4140 +1006 6900 0.4550 +1006 7223 0.4090 +1006 8502 0.5750 +1006 8642 0.6010 +1006 9312 0.4410 +1006 10297 0.5590 +1006 10716 0.4560 +1006 22854 0.5440 +1006 22986 0.5980 +1006 26047 0.4680 +1006 28316 0.7620 +1006 28513 0.7480 +1006 53841 0.4160 +1006 57680 0.5000 +1006 60437 0.5780 +1006 64072 0.5980 +1006 64403 0.5480 +1006 64405 0.5650 +1006 65217 0.4780 +1006 80059 0.5630 +1006 84628 0.4370 +1006 84966 0.5010 +1006 85445 0.4740 +1006 91461 0.4530 +1006 118427 0.4620 +1006 222256 0.5920 +1006 246213 0.4320 +1006 259232 0.4670 +1007 1008 0.7400 +1007 1009 0.5570 +1007 1010 0.7970 +1007 1012 0.7510 +1007 1013 0.7420 +1007 1015 0.6620 +1007 1016 0.7490 +1007 1495 0.7520 +1007 1496 0.6670 +1007 1499 0.8280 +1007 1500 0.6680 +1007 1501 0.4040 +1007 2332 0.4710 +1007 2557 0.4980 +1007 2895 0.4760 +1007 3240 0.4240 +1007 3728 0.5890 +1007 4478 0.4260 +1007 5318 0.4380 +1007 6900 0.4650 +1007 7089 0.5400 +1007 7337 0.4220 +1007 8642 0.5660 +1007 9037 0.7880 +1007 9228 0.6230 +1007 9231 0.4180 +1007 9378 0.7060 +1007 10297 0.5400 +1007 22871 0.7070 +1007 22941 0.5680 +1007 23245 0.6820 +1007 26047 0.5640 +1007 26050 0.4140 +1007 26053 0.4030 +1007 28316 0.7290 +1007 28513 0.7320 +1007 30010 0.4080 +1007 50834 0.8050 +1007 51725 0.6910 +1007 53942 0.4010 +1007 54413 0.7430 +1007 54549 0.4980 +1007 56243 0.4250 +1007 56934 0.4040 +1007 57502 0.7700 +1007 57512 0.4090 +1007 57795 0.4190 +1007 60437 0.5950 +1007 64072 0.5830 +1007 64326 0.6310 +1007 64403 0.5560 +1007 64405 0.6020 +1007 79816 0.5420 +1007 84466 0.4390 +1007 85358 0.5920 +1007 85445 0.5540 +1007 114798 0.4050 +1007 139411 0.6190 +1007 140733 0.5080 +1007 152330 0.7510 +1007 222256 0.5990 +1007 389941 0.4020 +1008 1009 0.7180 +1008 1010 0.7450 +1008 1012 0.6190 +1008 1013 0.8340 +1008 1015 0.6320 +1008 1016 0.7670 +1008 1495 0.7690 +1008 1496 0.6660 +1008 1499 0.8660 +1008 1500 0.6720 +1008 1501 0.4570 +1008 2332 0.4500 +1008 2557 0.5060 +1008 2622 0.4230 +1008 2895 0.4290 +1008 3240 0.4280 +1008 3676 0.4310 +1008 3728 0.6540 +1008 4478 0.4020 +1008 5010 0.4740 +1008 5101 0.4560 +1008 6323 0.4250 +1008 6383 0.4340 +1008 7089 0.5320 +1008 7337 0.4340 +1008 8642 0.5960 +1008 9037 0.7450 +1008 9228 0.5350 +1008 9312 0.4380 +1008 9378 0.6710 +1008 10297 0.5600 +1008 10686 0.4280 +1008 22871 0.7080 +1008 22941 0.5550 +1008 23245 0.6680 +1008 26047 0.5160 +1008 28316 0.8340 +1008 28513 0.8250 +1008 29119 0.5740 +1008 50834 0.7890 +1008 51725 0.6310 +1008 54413 0.7240 +1008 56934 0.4270 +1008 57502 0.7510 +1008 57717 0.4400 +1008 60437 0.5890 +1008 64072 0.5690 +1008 64326 0.5970 +1008 64403 0.5590 +1008 64405 0.6170 +1008 79816 0.5300 +1008 84623 0.4660 +1008 85358 0.5640 +1008 114788 0.4320 +1008 121256 0.4070 +1008 139411 0.5880 +1008 140733 0.4800 +1008 152330 0.7310 +1008 222256 0.5750 +1008 339479 0.4940 +1009 1010 0.5630 +1009 1012 0.7590 +1009 1013 0.7840 +1009 1015 0.7010 +1009 1016 0.5780 +1009 1277 0.6400 +1009 1278 0.6930 +1009 1281 0.6950 +1009 1282 0.4190 +1009 1289 0.6480 +1009 1290 0.6760 +1009 1293 0.5370 +1009 1295 0.4210 +1009 1301 0.4550 +1009 1303 0.4780 +1009 1490 0.4530 +1009 1495 0.8150 +1009 1496 0.7360 +1009 1499 0.9930 +1009 1500 0.9190 +1009 1501 0.4590 +1009 1513 0.4030 +1009 1634 0.5490 +1009 1832 0.5160 +1009 1956 0.4030 +1009 2066 0.4020 +1009 2191 0.4320 +1009 2200 0.5300 +1009 2260 0.4670 +1009 2335 0.6640 +1009 2697 0.5070 +1009 3678 0.4090 +1009 3728 0.8030 +1009 3909 0.5210 +1009 3910 0.6170 +1009 3914 0.4570 +1009 3918 0.4250 +1009 4053 0.4210 +1009 4060 0.5260 +1009 4301 0.4960 +1009 4313 0.4820 +1009 4684 0.6020 +1009 5156 0.6760 +1009 5159 0.4700 +1009 5877 0.4620 +1009 6387 0.4640 +1009 6591 0.5490 +1009 6615 0.6350 +1009 6662 0.4100 +1009 6678 0.4970 +1009 7040 0.4050 +1009 7058 0.4890 +1009 7070 0.4750 +1009 7077 0.4110 +1009 7223 0.4460 +1009 7291 0.4770 +1009 7412 0.6170 +1009 7414 0.6030 +1009 7431 0.4160 +1009 7474 0.4010 +1009 8502 0.6150 +1009 8642 0.6870 +1009 8829 0.4560 +1009 9098 0.5000 +1009 9358 0.4350 +1009 9928 0.4030 +1009 10297 0.5550 +1009 10631 0.6730 +1009 23213 0.4640 +1009 23499 0.4090 +1009 28316 0.7440 +1009 28513 0.7260 +1009 53841 0.4330 +1009 60437 0.5660 +1009 64072 0.6000 +1009 64403 0.5530 +1009 64405 0.5530 +1009 65217 0.4410 +1009 79872 0.6720 +1009 222256 0.5570 +1009 285423 0.4260 +1010 1012 0.7460 +1010 1013 0.7510 +1010 1015 0.6830 +1010 1016 0.7520 +1010 1495 0.8370 +1010 1496 0.8020 +1010 1499 0.8890 +1010 1500 0.6590 +1010 3728 0.5890 +1010 8502 0.4830 +1010 8642 0.6830 +1010 10297 0.5400 +1010 28316 0.7340 +1010 28513 0.7440 +1010 29119 0.6770 +1010 57482 0.4140 +1010 60437 0.5770 +1010 64072 0.5950 +1010 64403 0.8200 +1010 64405 0.5600 +1010 222256 0.5930 +1012 1013 0.7190 +1012 1015 0.6570 +1012 1016 0.6110 +1012 1021 0.4310 +1012 1029 0.7470 +1012 1030 0.4700 +1012 1464 0.4710 +1012 1495 0.7770 +1012 1496 0.7550 +1012 1499 0.8580 +1012 1500 0.7210 +1012 1612 0.6720 +1012 1786 0.4020 +1012 1789 0.4350 +1012 1959 0.4010 +1012 2099 0.4180 +1012 2272 0.5990 +1012 2917 0.4830 +1012 2950 0.5910 +1012 3090 0.4450 +1012 3240 0.4290 +1012 3309 0.4910 +1012 3611 0.4720 +1012 3630 0.5860 +1012 3690 0.4950 +1012 3728 0.6480 +1012 4255 0.6200 +1012 4292 0.5100 +1012 4978 0.4950 +1012 5915 0.6580 +1012 6422 0.4690 +1012 6616 0.4500 +1012 6939 0.5040 +1012 7035 0.4210 +1012 7078 0.5160 +1012 7161 0.4700 +1012 7799 0.4080 +1012 8642 0.6030 +1012 8751 0.4040 +1012 8895 0.4030 +1012 9370 0.9960 +1012 9656 0.4480 +1012 9940 0.4860 +1012 9956 0.4140 +1012 10297 0.7110 +1012 11186 0.9060 +1012 22918 0.4250 +1012 23071 0.4710 +1012 23245 0.4620 +1012 23671 0.4330 +1012 23705 0.4590 +1012 26047 0.4550 +1012 26060 0.4070 +1012 27122 0.4780 +1012 28316 0.5950 +1012 28513 0.6090 +1012 51094 0.9040 +1012 54438 0.4880 +1012 54622 0.4020 +1012 55743 0.5280 +1012 55816 0.4290 +1012 58189 0.5030 +1012 60437 0.5600 +1012 64072 0.5990 +1012 64403 0.5850 +1012 64405 0.6060 +1012 64478 0.4380 +1012 79602 0.8690 +1012 92304 0.4160 +1012 114898 0.4400 +1012 118427 0.4160 +1012 140628 0.4350 +1012 222256 0.5680 +1012 254827 0.5680 +1013 1015 0.7070 +1013 1016 0.7390 +1013 1432 0.5560 +1013 1495 0.8750 +1013 1496 0.7050 +1013 1499 0.9570 +1013 1500 0.8920 +1013 1501 0.4310 +1013 1956 0.5750 +1013 2274 0.4440 +1013 3065 0.4490 +1013 3361 0.4210 +1013 3431 0.4200 +1013 3679 0.4400 +1013 3728 0.7950 +1013 3852 0.4190 +1013 4205 0.5860 +1013 4208 0.6170 +1013 4209 0.5610 +1013 4233 0.4330 +1013 4318 0.4870 +1013 4617 0.8160 +1013 4618 0.6240 +1013 4624 0.4310 +1013 4654 0.7100 +1013 4656 0.7080 +1013 4684 0.5750 +1013 5077 0.5520 +1013 5081 0.7120 +1013 5600 0.5420 +1013 5923 0.4570 +1013 6300 0.5400 +1013 6383 0.4330 +1013 6385 0.4040 +1013 6929 0.5470 +1013 8642 0.5960 +1013 8788 0.4630 +1013 8842 0.4830 +1013 8916 0.4180 +1013 9043 0.5440 +1013 9672 0.5050 +1013 10297 0.5990 +1013 10686 0.4650 +1013 10904 0.4080 +1013 23476 0.4200 +1013 23603 0.4290 +1013 27132 0.4760 +1013 27154 0.4220 +1013 28316 0.8400 +1013 28513 0.8400 +1013 50937 0.8040 +1013 55089 0.4640 +1013 60437 0.5610 +1013 64072 0.7570 +1013 64403 0.5730 +1013 64405 0.5760 +1013 84623 0.7720 +1013 91653 0.8140 +1013 137075 0.4900 +1013 146198 0.5360 +1013 197320 0.4750 +1013 222256 0.5760 +1013 100271849 0.5570 +1014 3855 0.4890 +1014 5076 0.5210 +1014 5546 0.4270 +1014 6928 0.4490 +1014 7030 0.4740 +1014 7369 0.5270 +1014 7849 0.6350 +1014 23600 0.4800 +1014 55586 0.5100 +1014 201163 0.4030 +1015 1016 0.6700 +1015 1029 0.4020 +1015 1044 0.5580 +1015 1045 0.6120 +1015 1072 0.4160 +1015 1073 0.4160 +1015 1244 0.4030 +1015 1272 0.4960 +1015 1305 0.4920 +1015 1364 0.4100 +1015 1365 0.4280 +1015 1366 0.5520 +1015 1387 0.4740 +1015 1407 0.6140 +1015 1464 0.5160 +1015 1466 0.4220 +1015 1495 0.9830 +1015 1496 0.9270 +1015 1499 0.9990 +1015 1500 0.9990 +1015 1501 0.9910 +1015 1742 0.4640 +1015 1824 0.5200 +1015 1825 0.5320 +1015 1830 0.5960 +1015 1832 0.9270 +1015 1855 0.4940 +1015 1943 0.4670 +1015 1948 0.5920 +1015 1950 0.7630 +1015 1951 0.6390 +1015 1952 0.5560 +1015 1956 0.8200 +1015 1958 0.5040 +1015 1969 0.6000 +1015 2011 0.4770 +1015 2017 0.5150 +1015 2041 0.4500 +1015 2064 0.7400 +1015 2065 0.5640 +1015 2086 0.5760 +1015 2125 0.5030 +1015 2235 0.4750 +1015 2247 0.4870 +1015 2248 0.4430 +1015 2249 0.4430 +1015 2250 0.4420 +1015 2251 0.4400 +1015 2252 0.4540 +1015 2253 0.4540 +1015 2254 0.4470 +1015 2255 0.4440 +1015 2263 0.4110 +1015 2287 0.4080 +1015 2335 0.8040 +1015 2348 0.4290 +1015 2534 0.4080 +1015 2597 0.6040 +1015 2624 0.4710 +1015 2670 0.4260 +1015 2676 0.4100 +1015 2697 0.5600 +1015 2768 0.5500 +1015 2889 0.4520 +1015 2891 0.7380 +1015 2909 0.7140 +1015 2932 0.5850 +1015 2984 0.4810 +1015 3059 0.5150 +1015 3082 0.6590 +1015 3091 0.4530 +1015 3172 0.7470 +1015 3315 0.4860 +1015 3316 0.4710 +1015 3383 0.6000 +1015 3553 0.4160 +1015 3569 0.5700 +1015 3611 0.4460 +1015 3630 0.5230 +1015 3667 0.5240 +1015 3688 0.6280 +1015 3700 0.4440 +1015 3725 0.4320 +1015 3728 0.8010 +1015 3791 0.9910 +1015 3845 0.4840 +1015 3897 0.5980 +1015 3915 0.4760 +1015 3958 0.5610 +1015 3960 0.7620 +1015 4007 0.6020 +1015 4041 0.6090 +1015 4072 0.4890 +1015 4087 0.4220 +1015 4089 0.4850 +1015 4093 0.4530 +1015 4193 0.5130 +1015 4224 0.4660 +1015 4233 0.6440 +1015 4301 0.8780 +1015 4313 0.5330 +1015 4316 0.4290 +1015 4318 0.7350 +1015 4323 0.4040 +1015 4355 0.4170 +1015 4478 0.4480 +1015 4588 0.4260 +1015 4609 0.6000 +1015 4640 0.4180 +1015 4647 0.6250 +1015 4680 0.4260 +1015 4771 0.4180 +1015 4909 0.4200 +1015 5080 0.5710 +1015 5098 0.4240 +1015 5100 0.5870 +1015 5175 0.9950 +1015 5317 0.5360 +1015 5318 0.5660 +1015 5339 0.5110 +1015 5375 0.7500 +1015 5460 0.4790 +1015 5595 0.4810 +1015 5663 0.9250 +1015 5728 0.6440 +1015 5747 0.6820 +1015 5770 0.8760 +1015 5781 0.6360 +1015 5784 0.5360 +1015 5787 0.6990 +1015 5789 0.5040 +1015 5792 0.5210 +1015 5795 0.6310 +1015 5796 0.6280 +1015 5797 0.7280 +1015 5802 0.6030 +1015 5817 0.4440 +1015 5818 0.9920 +1015 5829 0.5420 +1015 5962 0.4340 +1015 5979 0.6170 +1015 6401 0.5970 +1015 6440 0.4750 +1015 6464 0.6610 +1015 6469 0.4660 +1015 6564 0.6540 +1015 6591 0.6610 +1015 6615 0.7010 +1015 6657 0.4180 +1015 6711 0.4520 +1015 6714 0.7870 +1015 6774 0.4440 +1015 6794 0.5250 +1015 6932 0.4250 +1015 6939 0.7430 +1015 7010 0.4490 +1015 7040 0.5340 +1015 7048 0.5840 +1015 7056 0.4220 +1015 7058 0.4950 +1015 7074 0.4280 +1015 7077 0.5370 +1015 7078 0.4540 +1015 7082 0.9500 +1015 7094 0.7840 +1015 7122 0.8860 +1015 7124 0.4700 +1015 7157 0.5700 +1015 7223 0.5310 +1015 7291 0.5690 +1015 7408 0.6770 +1015 7412 0.4450 +1015 7414 0.9900 +1015 7429 0.4460 +1015 7430 0.4470 +1015 7448 0.4540 +1015 7450 0.4710 +1015 7471 0.4510 +1015 7474 0.4540 +1015 7791 0.4210 +1015 7837 0.5320 +1015 8048 0.4370 +1015 8312 0.5910 +1015 8313 0.4160 +1015 8502 0.7530 +1015 8642 0.7990 +1015 8650 0.7350 +1015 8766 0.5820 +1015 8775 0.4420 +1015 8817 0.4400 +1015 8822 0.4410 +1015 8823 0.4400 +1015 8825 0.5620 +1015 8826 0.7760 +1015 8842 0.4270 +1015 8988 0.4800 +1015 9069 0.4230 +1015 9075 0.4500 +1015 9076 0.6600 +1015 9253 0.7390 +1015 9378 0.6300 +1015 9379 0.6210 +1015 9414 0.6850 +1015 9495 0.4930 +1015 9564 0.4220 +1015 9620 0.6440 +1015 9746 0.6900 +1015 9826 0.5130 +1015 9828 0.6370 +1015 9839 0.5260 +1015 10009 0.4480 +1015 10076 0.7130 +1015 10083 0.5780 +1015 10207 0.4650 +1015 10219 0.9290 +1015 10297 0.5710 +1015 10562 0.8260 +1015 11127 0.4960 +1015 11187 0.4970 +1015 22829 0.5060 +1015 22871 0.5560 +1015 22883 0.7740 +1015 23426 0.5430 +1015 23513 0.8150 +1015 23607 0.4780 +1015 23705 0.5640 +1015 24146 0.4300 +1015 24147 0.5370 +1015 25945 0.6740 +1015 26281 0.4410 +1015 27006 0.4410 +1015 27134 0.6120 +1015 27328 0.4390 +1015 28316 0.6680 +1015 28513 0.6810 +1015 28514 0.4520 +1015 29119 0.8030 +1015 29964 0.6020 +1015 30816 0.5750 +1015 50649 0.4050 +1015 50848 0.5190 +1015 50937 0.4730 +1015 51176 0.6330 +1015 51474 0.7120 +1015 53841 0.8280 +1015 54103 0.4140 +1015 54413 0.5160 +1015 54474 0.4630 +1015 54510 0.6420 +1015 54536 0.5980 +1015 55349 0.4010 +1015 55591 0.5790 +1015 55704 0.5550 +1015 56288 0.7100 +1015 56667 0.5750 +1015 57216 0.4590 +1015 57502 0.5290 +1015 57530 0.4760 +1015 57555 0.5180 +1015 57575 0.5210 +1015 60437 0.5950 +1015 64072 0.6870 +1015 64084 0.5920 +1015 64398 0.4640 +1015 64403 0.5920 +1015 64405 0.6710 +1015 65108 0.4310 +1015 79071 0.6760 +1015 79633 0.5360 +1015 79872 0.6090 +1015 83604 0.5280 +1015 83660 0.7220 +1015 83700 0.5850 +1015 89780 0.4530 +1015 93643 0.4180 +1015 137902 0.5320 +1015 139341 0.4180 +1015 144100 0.6180 +1015 144165 0.5430 +1015 147409 0.5030 +1015 151963 0.4240 +1015 153562 0.4160 +1015 166336 0.5640 +1015 171177 0.4660 +1015 205428 0.4160 +1015 222256 0.6160 +1015 344561 0.7170 +1015 389813 0.4850 +1015 405754 0.5780 +1015 100506658 0.9490 +1016 1495 0.6500 +1016 1496 0.7280 +1016 1499 0.8460 +1016 1500 0.7030 +1016 1501 0.4870 +1016 3728 0.5890 +1016 5310 0.4370 +1016 6882 0.4610 +1016 8289 0.4570 +1016 8642 0.6160 +1016 9759 0.4260 +1016 10297 0.5500 +1016 10409 0.7060 +1016 26045 0.4030 +1016 28316 0.7270 +1016 28513 0.7300 +1016 60437 0.5750 +1016 64072 0.6220 +1016 64403 0.5470 +1016 64405 0.5690 +1016 80851 0.4540 +1016 84435 0.4010 +1016 85442 0.4610 +1016 222256 0.5730 +1016 339479 0.4100 +1016 401498 0.6580 +1017 1018 0.9380 +1017 1019 0.9980 +1017 1020 0.9280 +1017 1021 0.9980 +1017 1022 0.9920 +1017 1024 0.5020 +1017 1026 0.9990 +1017 1027 0.9990 +1017 1028 0.9990 +1017 1029 0.9930 +1017 1030 0.7990 +1017 1031 0.6690 +1017 1032 0.8470 +1017 1033 0.9990 +1017 1045 0.4310 +1017 1050 0.9920 +1017 1051 0.4240 +1017 1054 0.4490 +1017 1058 0.4830 +1017 1062 0.4340 +1017 1063 0.4670 +1017 1104 0.7680 +1017 1111 0.8690 +1017 1119 0.7920 +1017 1163 0.9990 +1017 1164 0.9940 +1017 1263 0.5260 +1017 1385 0.4120 +1017 1387 0.9180 +1017 1432 0.5430 +1017 1453 0.4670 +1017 1454 0.4460 +1017 1457 0.5450 +1017 1487 0.5140 +1017 1499 0.7330 +1017 1523 0.4590 +1017 1588 0.4210 +1017 1642 0.4080 +1017 1647 0.6220 +1017 1655 0.4460 +1017 1719 0.5070 +1017 1736 0.6010 +1017 1762 0.5480 +1017 1763 0.4760 +1017 1786 0.5290 +1017 1803 0.4500 +1017 1813 0.4260 +1017 1869 0.9970 +1017 1870 0.9620 +1017 1871 0.9730 +1017 1874 0.9530 +1017 1875 0.9050 +1017 1876 0.4480 +1017 1950 0.5650 +1017 1956 0.5660 +1017 1978 0.4170 +1017 1994 0.4040 +1017 2033 0.9250 +1017 2099 0.7140 +1017 2146 0.7020 +1017 2147 0.4330 +1017 2177 0.4160 +1017 2237 0.7340 +1017 2247 0.4210 +1017 2305 0.8930 +1017 2308 0.9670 +1017 2309 0.9990 +1017 2353 0.6430 +1017 2475 0.5850 +1017 2547 0.8050 +1017 2597 0.7910 +1017 2624 0.4810 +1017 2625 0.5180 +1017 2648 0.5360 +1017 2801 0.6520 +1017 2810 0.9400 +1017 2885 0.6080 +1017 2932 0.7700 +1017 2956 0.5590 +1017 3005 0.9790 +1017 3006 0.5330 +1017 3007 0.4820 +1017 3009 0.9330 +1017 3014 0.8620 +1017 3017 0.6300 +1017 3018 0.7190 +1017 3021 0.6350 +1017 3024 0.9950 +1017 3065 0.5750 +1017 3066 0.4460 +1017 3091 0.7730 +1017 3107 0.6860 +1017 3265 0.6440 +1017 3308 0.4390 +1017 3309 0.4280 +1017 3315 0.5100 +1017 3316 0.4860 +1017 3320 0.7990 +1017 3326 0.7390 +1017 3337 0.4570 +1017 3364 0.4240 +1017 3396 0.4260 +1017 3398 0.7790 +1017 3399 0.4300 +1017 3479 0.4470 +1017 3553 0.4110 +1017 3569 0.4730 +1017 3615 0.4550 +1017 3619 0.4640 +1017 3630 0.5150 +1017 3659 0.4200 +1017 3714 0.4220 +1017 3716 0.5180 +1017 3718 0.4110 +1017 3725 0.8250 +1017 3791 0.4320 +1017 3802 0.6780 +1017 3804 0.4140 +1017 3805 0.5630 +1017 3811 0.4800 +1017 3812 0.4070 +1017 3815 0.4300 +1017 3832 0.7800 +1017 3833 0.4490 +1017 3838 0.4290 +1017 3845 0.5520 +1017 3925 0.4820 +1017 3978 0.6220 +1017 4001 0.6260 +1017 4067 0.4140 +1017 4082 0.4050 +1017 4085 0.8020 +1017 4087 0.5750 +1017 4088 0.8360 +1017 4089 0.4040 +1017 4137 0.4440 +1017 4149 0.6080 +1017 4170 0.6020 +1017 4171 0.8570 +1017 4172 0.9730 +1017 4173 0.9530 +1017 4174 0.8600 +1017 4175 0.9070 +1017 4176 0.9140 +1017 4193 0.8490 +1017 4214 0.4760 +1017 4255 0.6280 +1017 4286 0.5090 +1017 4288 0.5350 +1017 4292 0.7330 +1017 4303 0.9370 +1017 4313 0.4790 +1017 4318 0.5660 +1017 4331 0.6580 +1017 4361 0.7530 +1017 4438 0.6260 +1017 4439 0.5880 +1017 4602 0.4320 +1017 4605 0.9860 +1017 4609 0.9600 +1017 4613 0.5040 +1017 4654 0.4090 +1017 4656 0.4060 +1017 4683 0.8230 +1017 4734 0.5110 +1017 4738 0.8770 +1017 4751 0.4450 +1017 4790 0.5230 +1017 4792 0.5060 +1017 4800 0.5960 +1017 4851 0.4640 +1017 4863 0.9280 +1017 4869 0.8260 +1017 4893 0.5230 +1017 4914 0.5360 +1017 4998 0.9080 +1017 4999 0.9500 +1017 5000 0.6820 +1017 5001 0.6810 +1017 5052 0.5190 +1017 5111 0.9510 +1017 5116 0.4190 +1017 5241 0.8220 +1017 5290 0.4480 +1017 5300 0.4840 +1017 5311 0.4120 +1017 5347 0.7420 +1017 5366 0.4390 +1017 5371 0.4260 +1017 5422 0.8420 +1017 5424 0.6030 +1017 5426 0.6550 +1017 5427 0.6960 +1017 5460 0.5240 +1017 5468 0.4310 +1017 5495 0.6300 +1017 5499 0.5080 +1017 5500 0.4020 +1017 5501 0.4260 +1017 5515 0.6580 +1017 5520 0.5170 +1017 5521 0.4170 +1017 5557 0.6810 +1017 5558 0.7870 +1017 5591 0.5110 +1017 5599 0.4670 +1017 5600 0.4940 +1017 5603 0.4900 +1017 5682 0.4520 +1017 5683 0.4240 +1017 5684 0.4770 +1017 5685 0.4660 +1017 5686 0.4670 +1017 5687 0.6160 +1017 5688 0.5100 +1017 5689 0.4370 +1017 5690 0.4590 +1017 5691 0.4240 +1017 5692 0.4130 +1017 5693 0.6050 +1017 5694 0.4630 +1017 5695 0.4430 +1017 5696 0.4520 +1017 5698 0.4460 +1017 5699 0.4270 +1017 5700 0.4540 +1017 5701 0.4450 +1017 5702 0.4870 +1017 5704 0.5110 +1017 5705 0.5100 +1017 5706 0.4950 +1017 5707 0.4970 +1017 5708 0.5250 +1017 5709 0.5160 +1017 5710 0.4960 +1017 5711 0.4440 +1017 5713 0.4800 +1017 5714 0.4800 +1017 5715 0.5750 +1017 5716 0.5030 +1017 5717 0.4910 +1017 5718 0.5520 +1017 5719 0.4130 +1017 5720 0.4390 +1017 5721 0.4510 +1017 5728 0.7840 +1017 5743 0.5980 +1017 5753 0.5770 +1017 5883 0.4800 +1017 5884 0.4220 +1017 5888 0.8220 +1017 5893 0.4040 +1017 5925 0.9990 +1017 5928 0.6740 +1017 5932 0.7280 +1017 5933 0.9950 +1017 5934 0.9980 +1017 5966 0.5100 +1017 5970 0.4350 +1017 5982 0.5950 +1017 5983 0.4750 +1017 5984 0.6540 +1017 6093 0.4390 +1017 6117 0.8250 +1017 6118 0.7570 +1017 6119 0.6410 +1017 6188 0.4580 +1017 6233 0.9140 +1017 6240 0.5210 +1017 6241 0.7280 +1017 6285 0.4510 +1017 6300 0.5020 +1017 6464 0.5960 +1017 6500 0.9990 +1017 6502 0.9990 +1017 6591 0.4150 +1017 6597 0.5760 +1017 6613 0.4870 +1017 6615 0.4480 +1017 6647 0.4920 +1017 6657 0.4620 +1017 6667 0.5660 +1017 6742 0.4970 +1017 6749 0.5080 +1017 6769 0.6410 +1017 6772 0.4170 +1017 6774 0.6270 +1017 6776 0.5990 +1017 6790 0.8860 +1017 6795 0.5010 +1017 6873 0.4150 +1017 6907 0.4540 +1017 6927 0.4560 +1017 7001 0.6180 +1017 7011 0.4300 +1017 7013 0.5540 +1017 7014 0.5050 +1017 7015 0.6890 +1017 7027 0.8670 +1017 7029 0.7090 +1017 7037 0.5310 +1017 7040 0.4690 +1017 7048 0.5100 +1017 7051 0.5400 +1017 7083 0.4400 +1017 7124 0.4890 +1017 7132 0.4990 +1017 7150 0.4010 +1017 7153 0.8010 +1017 7155 0.5370 +1017 7156 0.5920 +1017 7157 0.9870 +1017 7158 0.8040 +1017 7159 0.4140 +1017 7161 0.4600 +1017 7174 0.4750 +1017 7249 0.4350 +1017 7272 0.6090 +1017 7273 0.6650 +1017 7283 0.4250 +1017 7297 0.4930 +1017 7298 0.6360 +1017 7299 0.4230 +1017 7311 0.9000 +1017 7314 0.9100 +1017 7316 0.9130 +1017 7319 0.4770 +1017 7321 0.6230 +1017 7324 0.5760 +1017 7334 0.6340 +1017 7336 0.5310 +1017 7343 0.4620 +1017 7345 0.4190 +1017 7465 0.9870 +1017 7468 0.6100 +1017 7486 0.4240 +1017 7514 0.4460 +1017 7520 0.4550 +1017 7532 0.5360 +1017 7534 0.5320 +1017 7593 0.4120 +1017 7837 0.6220 +1017 7884 0.6990 +1017 7979 0.4330 +1017 8099 0.5710 +1017 8161 0.4160 +1017 8243 0.5640 +1017 8290 0.8060 +1017 8317 0.9480 +1017 8318 0.9740 +1017 8340 0.6230 +1017 8341 0.6230 +1017 8342 0.6220 +1017 8345 0.6270 +1017 8347 0.6210 +1017 8348 0.6350 +1017 8349 0.7020 +1017 8356 0.6320 +1017 8361 0.7790 +1017 8369 0.4180 +1017 8451 0.4030 +1017 8454 0.9980 +1017 8517 0.4270 +1017 8556 0.5880 +1017 8621 0.4660 +1017 8678 0.4030 +1017 8697 0.8660 +1017 8772 0.4190 +1017 8812 0.5250 +1017 8826 0.4500 +1017 8850 0.5810 +1017 8851 0.7380 +1017 8881 0.8580 +1017 8900 0.9990 +1017 8914 0.4330 +1017 8924 0.5280 +1017 8970 0.6350 +1017 8988 0.4950 +1017 9025 0.6340 +1017 9040 0.4700 +1017 9055 0.6210 +1017 9088 0.5700 +1017 9113 0.6400 +1017 9133 0.9990 +1017 9134 0.9990 +1017 9156 0.7270 +1017 9184 0.5620 +1017 9212 0.6420 +1017 9229 0.5630 +1017 9232 0.6510 +1017 9319 0.4600 +1017 9399 0.4090 +1017 9401 0.5880 +1017 9491 0.4030 +1017 9493 0.4770 +1017 9557 0.5180 +1017 9577 0.5980 +1017 9612 0.4450 +1017 9656 0.7040 +1017 9700 0.5710 +1017 9738 0.5680 +1017 9787 0.4590 +1017 9833 0.4920 +1017 9861 0.4760 +1017 9873 0.6260 +1017 9978 0.9930 +1017 10014 0.4970 +1017 10018 0.5050 +1017 10036 0.4740 +1017 10051 0.5420 +1017 10075 0.4900 +1017 10111 0.6640 +1017 10112 0.4300 +1017 10142 0.4960 +1017 10189 0.4040 +1017 10197 0.5220 +1017 10213 0.5660 +1017 10263 0.5290 +1017 10309 0.9280 +1017 10389 0.6510 +1017 10393 0.7830 +1017 10403 0.4750 +1017 10419 0.4480 +1017 10434 0.4010 +1017 10514 0.4690 +1017 10519 0.8580 +1017 10524 0.6420 +1017 10535 0.4380 +1017 10574 0.5650 +1017 10575 0.5050 +1017 10576 0.5550 +1017 10580 0.6070 +1017 10614 0.4630 +1017 10615 0.4110 +1017 10733 0.5650 +1017 10744 0.6020 +1017 10769 0.5330 +1017 10848 0.4670 +1017 10926 0.8980 +1017 10983 0.5030 +1017 10987 0.7330 +1017 11004 0.4410 +1017 11065 0.7750 +1017 11073 0.6770 +1017 11140 0.6220 +1017 11144 0.5780 +1017 11169 0.4170 +1017 11200 0.5890 +1017 11221 0.4710 +1017 11331 0.4370 +1017 22858 0.4890 +1017 22933 0.4900 +1017 22974 0.5150 +1017 23111 0.7130 +1017 23133 0.4050 +1017 23197 0.4580 +1017 23353 0.9540 +1017 23411 0.6210 +1017 23476 0.5490 +1017 23552 0.5520 +1017 23594 0.6960 +1017 23595 0.6480 +1017 23649 0.6520 +1017 25792 0.5940 +1017 25820 0.8010 +1017 25847 0.8060 +1017 25906 0.5390 +1017 25913 0.4790 +1017 25939 0.7930 +1017 25962 0.4210 +1017 26270 0.4410 +1017 26271 0.5840 +1017 26277 0.5000 +1017 26353 0.4230 +1017 26524 0.4920 +1017 27030 0.5550 +1017 27043 0.5510 +1017 27152 0.5630 +1017 27338 0.6910 +1017 27343 0.6670 +1017 27436 0.4110 +1017 29028 0.4120 +1017 29086 0.5310 +1017 29089 0.5030 +1017 29127 0.4100 +1017 29128 0.4030 +1017 29882 0.7450 +1017 29935 0.5880 +1017 29945 0.7080 +1017 49855 0.7650 +1017 51053 0.7970 +1017 51203 0.4060 +1017 51343 0.9700 +1017 51379 0.4460 +1017 51433 0.7410 +1017 51434 0.6990 +1017 51514 0.6920 +1017 51529 0.6190 +1017 51547 0.6740 +1017 51548 0.5440 +1017 51574 0.4650 +1017 51588 0.5620 +1017 51692 0.4180 +1017 51720 0.6080 +1017 51750 0.4740 +1017 51806 0.4440 +1017 51807 0.5010 +1017 54107 0.5540 +1017 54145 0.6270 +1017 54205 0.6750 +1017 54386 0.4560 +1017 54433 0.4240 +1017 54487 0.5940 +1017 54619 0.7560 +1017 54726 0.4630 +1017 54978 0.4680 +1017 55135 0.4470 +1017 55143 0.5180 +1017 55255 0.5740 +1017 55294 0.6690 +1017 55388 0.8470 +1017 55505 0.4180 +1017 55651 0.5670 +1017 55723 0.5600 +1017 55957 0.8640 +1017 56647 0.6580 +1017 56655 0.5370 +1017 56893 0.4880 +1017 57060 0.5150 +1017 57634 0.6170 +1017 57695 0.5650 +1017 63967 0.7360 +1017 64061 0.6180 +1017 64100 0.5400 +1017 64101 0.4810 +1017 64223 0.4640 +1017 64682 0.8430 +1017 79084 0.5680 +1017 79184 0.5760 +1017 79733 0.4930 +1017 79840 0.4320 +1017 79923 0.4210 +1017 79935 0.8130 +1017 80198 0.4900 +1017 80263 0.7470 +1017 81620 0.9820 +1017 81669 0.9990 +1017 83461 0.4090 +1017 83473 0.5720 +1017 83540 0.4300 +1017 84056 0.5410 +1017 84126 0.7750 +1017 84142 0.5080 +1017 84260 0.6270 +1017 84289 0.5080 +1017 84515 0.6610 +1017 84823 0.4360 +1017 85236 0.6350 +1017 85417 0.9540 +1017 90381 0.6710 +1017 91750 0.6760 +1017 91768 0.8990 +1017 91860 0.4270 +1017 92292 0.4520 +1017 112399 0.4180 +1017 115426 0.6940 +1017 115653 0.4100 +1017 118460 0.4300 +1017 119504 0.5550 +1017 120892 0.5740 +1017 126520 0.4570 +1017 128312 0.6210 +1017 132660 0.6770 +1017 133482 0.6710 +1017 134353 0.5000 +1017 137902 0.6200 +1017 144455 0.5410 +1017 163688 0.4270 +1017 163786 0.4400 +1017 165918 0.5900 +1017 166979 0.6160 +1017 171222 0.8220 +1017 201161 0.5330 +1017 203068 0.4180 +1017 219771 0.4030 +1017 219970 0.4210 +1017 222229 0.4820 +1017 225689 0.6840 +1017 245711 0.9990 +1017 246184 0.6920 +1017 255626 0.6180 +1017 259266 0.4220 +1017 283129 0.5500 +1017 283847 0.5790 +1017 285955 0.9010 +1017 286826 0.7290 +1017 342527 0.4200 +1017 345079 0.4400 +1017 387778 0.9260 +1017 388324 0.5070 +1017 388333 0.9130 +1017 404672 0.4030 +1017 440093 0.6290 +1017 440686 0.6330 +1017 441272 0.9000 +1017 441273 0.9000 +1017 442590 0.9000 +1017 494551 0.4730 +1017 642489 0.4190 +1017 645121 0.4400 +1017 647309 0.5040 +1017 653604 0.6380 +1017 728378 0.5750 +1017 729597 0.9000 +1017 100287520 0.4210 +1017 100310812 0.9000 +1017 100532731 0.4090 +1017 100996746 0.9020 +1017 102723555 0.9000 +1018 1019 0.7800 +1018 1020 0.7870 +1018 1026 0.9400 +1018 1027 0.9090 +1018 1028 0.8760 +1018 1029 0.6200 +1018 1033 0.7410 +1018 1104 0.5050 +1018 1111 0.4260 +1018 1163 0.9470 +1018 1164 0.9560 +1018 1263 0.4960 +1018 1869 0.4190 +1018 1876 0.4520 +1018 3005 0.4820 +1018 3320 0.5230 +1018 3326 0.5320 +1018 3832 0.4830 +1018 4085 0.4870 +1018 4172 0.4300 +1018 4173 0.4170 +1018 4174 0.5000 +1018 4176 0.4190 +1018 4999 0.4720 +1018 5347 0.6670 +1018 5520 0.4110 +1018 5536 0.4710 +1018 5578 0.4330 +1018 5925 0.6960 +1018 6187 0.4190 +1018 6502 0.8380 +1018 6788 0.4050 +1018 6789 0.4210 +1018 6790 0.4670 +1018 6795 0.4860 +1018 7011 0.4290 +1018 7153 0.4390 +1018 7155 0.4060 +1018 7465 0.6010 +1018 8318 0.4130 +1018 8556 0.6240 +1018 8697 0.5300 +1018 8812 0.5660 +1018 8851 0.6040 +1018 8881 0.4880 +1018 8900 0.8690 +1018 9088 0.4870 +1018 9133 0.6450 +1018 9134 0.9580 +1018 9212 0.6710 +1018 9229 0.4930 +1018 9232 0.5960 +1018 9700 0.5790 +1018 10309 0.7570 +1018 10393 0.5780 +1018 10744 0.6500 +1018 10769 0.4890 +1018 10983 0.5460 +1018 11140 0.5920 +1018 11200 0.4490 +1018 27127 0.5160 +1018 27152 0.5630 +1018 51053 0.7680 +1018 51343 0.6100 +1018 55143 0.6440 +1018 55255 0.5730 +1018 64682 0.6620 +1018 79935 0.5890 +1018 81620 0.8880 +1018 81669 0.9060 +1018 81928 0.5920 +1018 85417 0.7560 +1018 91768 0.9450 +1018 92292 0.4210 +1018 126520 0.4190 +1018 166979 0.5870 +1018 219970 0.4210 +1018 345079 0.4400 +1018 494551 0.4510 +1018 645121 0.5240 +1018 100287520 0.4210 +1019 1020 0.7100 +1019 1021 0.9990 +1019 1022 0.7390 +1019 1024 0.6210 +1019 1025 0.6210 +1019 1026 0.9990 +1019 1027 0.9990 +1019 1028 0.9940 +1019 1029 0.9990 +1019 1030 0.9990 +1019 1031 0.9990 +1019 1032 0.9990 +1019 1033 0.8350 +1019 1050 0.9910 +1019 1051 0.6920 +1019 1104 0.7210 +1019 1111 0.6880 +1019 1119 0.7610 +1019 1163 0.8650 +1019 1164 0.6820 +1019 1263 0.5000 +1019 1277 0.5530 +1019 1432 0.5010 +1019 1493 0.4480 +1019 1499 0.7950 +1019 1588 0.6630 +1019 1647 0.4470 +1019 1660 0.5250 +1019 1719 0.4610 +1019 1786 0.7380 +1019 1788 0.6940 +1019 1869 0.9580 +1019 1870 0.8050 +1019 1871 0.8110 +1019 1874 0.8470 +1019 1875 0.7560 +1019 1876 0.4160 +1019 1950 0.6020 +1019 1973 0.4320 +1019 1977 0.4120 +1019 1978 0.4750 +1019 2033 0.4340 +1019 2042 0.4720 +1019 2058 0.4590 +1019 2064 0.5360 +1019 2065 0.5240 +1019 2099 0.7180 +1019 2130 0.4140 +1019 2146 0.6390 +1019 2167 0.7820 +1019 2237 0.4740 +1019 2247 0.4550 +1019 2288 0.5430 +1019 2289 0.7030 +1019 2305 0.7280 +1019 2308 0.5180 +1019 2309 0.7030 +1019 2316 0.6860 +1019 2335 0.4040 +1019 2353 0.4780 +1019 2475 0.6440 +1019 2547 0.4370 +1019 2597 0.7230 +1019 2624 0.5340 +1019 2625 0.4080 +1019 2648 0.5330 +1019 2735 0.5240 +1019 2767 0.4230 +1019 2810 0.8610 +1019 2872 0.5630 +1019 2885 0.5320 +1019 2908 0.5810 +1019 2932 0.8050 +1019 2956 0.5840 +1019 2990 0.5490 +1019 3005 0.7280 +1019 3007 0.4550 +1019 3012 0.4570 +1019 3013 0.4540 +1019 3014 0.7420 +1019 3015 0.5940 +1019 3017 0.5810 +1019 3018 0.5690 +1019 3020 0.4290 +1019 3021 0.5990 +1019 3024 0.8330 +1019 3065 0.6360 +1019 3066 0.4590 +1019 3082 0.4930 +1019 3091 0.6200 +1019 3265 0.6760 +1019 3276 0.4470 +1019 3308 0.4900 +1019 3312 0.5370 +1019 3320 0.9980 +1019 3326 0.9990 +1019 3417 0.5510 +1019 3418 0.4550 +1019 3479 0.4480 +1019 3480 0.6110 +1019 3553 0.4120 +1019 3569 0.5060 +1019 3619 0.4050 +1019 3630 0.5490 +1019 3642 0.4180 +1019 3659 0.4770 +1019 3717 0.5710 +1019 3718 0.5190 +1019 3720 0.4350 +1019 3725 0.7590 +1019 3727 0.6510 +1019 3832 0.5880 +1019 3838 0.4130 +1019 3845 0.7430 +1019 4001 0.4470 +1019 4067 0.5460 +1019 4082 0.4020 +1019 4085 0.6370 +1019 4087 0.5820 +1019 4088 0.8920 +1019 4089 0.5520 +1019 4141 0.4070 +1019 4157 0.7070 +1019 4170 0.5980 +1019 4171 0.8550 +1019 4172 0.7090 +1019 4173 0.6200 +1019 4174 0.6450 +1019 4175 0.7390 +1019 4176 0.8780 +1019 4193 0.8840 +1019 4194 0.6450 +1019 4215 0.5030 +1019 4233 0.4270 +1019 4234 0.5510 +1019 4255 0.4620 +1019 4286 0.5240 +1019 4288 0.6660 +1019 4292 0.7430 +1019 4313 0.5060 +1019 4318 0.5630 +1019 4331 0.5120 +1019 4343 0.5200 +1019 4361 0.4310 +1019 4436 0.5370 +1019 4438 0.5780 +1019 4439 0.5450 +1019 4507 0.4070 +1019 4594 0.4260 +1019 4595 0.4130 +1019 4605 0.5160 +1019 4609 0.9660 +1019 4613 0.6210 +1019 4654 0.8620 +1019 4656 0.4150 +1019 4739 0.4590 +1019 4763 0.6930 +1019 4771 0.5020 +1019 4772 0.4630 +1019 4773 0.4460 +1019 4790 0.7100 +1019 4792 0.5100 +1019 4802 0.4350 +1019 4830 0.4780 +1019 4851 0.5630 +1019 4853 0.4080 +1019 4869 0.4970 +1019 4893 0.8220 +1019 4969 0.4240 +1019 4999 0.4980 +1019 5111 0.9960 +1019 5133 0.4070 +1019 5159 0.5050 +1019 5209 0.4800 +1019 5241 0.5780 +1019 5245 0.5930 +1019 5290 0.7090 +1019 5291 0.5810 +1019 5295 0.4480 +1019 5315 0.5920 +1019 5347 0.7890 +1019 5366 0.4270 +1019 5395 0.4620 +1019 5424 0.6550 +1019 5426 0.5210 +1019 5460 0.4770 +1019 5468 0.4290 +1019 5469 0.5890 +1019 5499 0.5650 +1019 5501 0.4010 +1019 5518 0.4550 +1019 5520 0.4900 +1019 5521 0.4320 +1019 5530 0.4810 +1019 5557 0.4330 +1019 5562 0.4350 +1019 5591 0.5090 +1019 5604 0.4240 +1019 5607 0.4160 +1019 5716 0.9720 +1019 5728 0.8650 +1019 5743 0.4180 +1019 5753 0.6030 +1019 5757 0.4090 +1019 5781 0.4500 +1019 5793 0.4180 +1019 5888 0.9130 +1019 5889 0.7040 +1019 5892 0.5260 +1019 5925 0.9990 +1019 5933 0.9410 +1019 5934 0.9860 +1019 5970 0.5940 +1019 5984 0.4420 +1019 6117 0.7260 +1019 6118 0.7000 +1019 6119 0.6280 +1019 6194 0.4410 +1019 6208 0.6520 +1019 6240 0.4880 +1019 6241 0.5140 +1019 6302 0.5030 +1019 6391 0.4040 +1019 6469 0.4090 +1019 6472 0.4040 +1019 6500 0.7230 +1019 6502 0.8780 +1019 6591 0.4620 +1019 6595 0.6560 +1019 6597 0.7500 +1019 6598 0.7530 +1019 6599 0.5910 +1019 6601 0.5630 +1019 6602 0.5680 +1019 6603 0.5400 +1019 6604 0.5340 +1019 6605 0.5870 +1019 6615 0.5210 +1019 6647 0.4480 +1019 6657 0.5600 +1019 6667 0.5430 +1019 6714 0.5920 +1019 6772 0.6350 +1019 6774 0.6400 +1019 6776 0.4300 +1019 6777 0.4110 +1019 6790 0.7040 +1019 6794 0.4310 +1019 6795 0.5080 +1019 6837 0.5540 +1019 6907 0.4320 +1019 6942 0.4740 +1019 7011 0.4300 +1019 7015 0.7560 +1019 7027 0.7210 +1019 7029 0.6040 +1019 7040 0.4720 +1019 7048 0.4140 +1019 7082 0.5470 +1019 7083 0.4840 +1019 7124 0.4770 +1019 7150 0.6350 +1019 7153 0.7730 +1019 7155 0.4990 +1019 7156 0.8320 +1019 7157 0.9660 +1019 7158 0.5590 +1019 7248 0.4400 +1019 7249 0.6500 +1019 7272 0.4560 +1019 7298 0.5600 +1019 7299 0.4500 +1019 7337 0.4160 +1019 7343 0.4310 +1019 7345 0.4010 +1019 7403 0.4030 +1019 7465 0.5860 +1019 7514 0.4340 +1019 7545 0.4550 +1019 7837 0.6320 +1019 8091 0.5210 +1019 8189 0.9080 +1019 8289 0.7130 +1019 8290 0.7740 +1019 8317 0.8830 +1019 8318 0.7450 +1019 8331 0.4540 +1019 8334 0.4550 +1019 8337 0.5710 +1019 8338 0.5730 +1019 8340 0.5680 +1019 8341 0.5700 +1019 8342 0.5690 +1019 8345 0.5700 +1019 8347 0.5760 +1019 8348 0.5700 +1019 8349 0.6340 +1019 8356 0.7830 +1019 8361 0.6600 +1019 8405 0.7220 +1019 8452 0.4070 +1019 8454 0.7130 +1019 8517 0.5750 +1019 8531 0.9640 +1019 8536 0.4460 +1019 8556 0.4660 +1019 8621 0.5170 +1019 8678 0.4950 +1019 8697 0.5810 +1019 8767 0.4230 +1019 8772 0.4180 +1019 8812 0.6480 +1019 8815 0.4530 +1019 8851 0.4540 +1019 8881 0.6040 +1019 8900 0.9880 +1019 8970 0.5760 +1019 9055 0.4200 +1019 9088 0.5460 +1019 9126 0.4080 +1019 9133 0.7820 +1019 9134 0.9880 +1019 9138 0.4110 +1019 9156 0.4850 +1019 9184 0.5490 +1019 9212 0.6080 +1019 9232 0.5700 +1019 9282 0.5510 +1019 9401 0.6000 +1019 9412 0.5490 +1019 9439 0.5490 +1019 9440 0.5400 +1019 9441 0.5470 +1019 9442 0.5650 +1019 9443 0.5400 +1019 9477 0.5510 +1019 9493 0.4060 +1019 9582 0.4130 +1019 9700 0.4040 +1019 9774 0.6030 +1019 9775 0.4180 +1019 9792 0.4680 +1019 9817 0.4130 +1019 9833 0.4240 +1019 9862 0.5490 +1019 9967 0.5860 +1019 9968 0.6740 +1019 9969 0.6130 +1019 9988 0.5350 +1019 10001 0.5810 +1019 10018 0.5070 +1019 10025 0.5510 +1019 10051 0.4440 +1019 10131 0.4060 +1019 10155 0.5020 +1019 10273 0.4710 +1019 10295 0.4810 +1019 10309 0.4610 +1019 10403 0.4390 +1019 10413 0.4130 +1019 10419 0.9330 +1019 10460 0.4330 +1019 10499 0.4060 +1019 10519 0.8550 +1019 10535 0.4430 +1019 10574 0.4410 +1019 10576 0.5510 +1019 10598 0.5470 +1019 10606 0.4030 +1019 10614 0.4100 +1019 10733 0.6310 +1019 10744 0.6610 +1019 10769 0.5030 +1019 10935 0.5180 +1019 10956 0.4840 +1019 10983 0.4650 +1019 11010 0.4050 +1019 11054 0.4750 +1019 11065 0.5040 +1019 11140 0.9990 +1019 11144 0.8300 +1019 11184 0.4370 +1019 11186 0.5060 +1019 11200 0.6440 +1019 23097 0.6070 +1019 23112 0.5610 +1019 23389 0.5510 +1019 23411 0.4930 +1019 23476 0.4390 +1019 23552 0.4020 +1019 23582 0.5490 +1019 23626 0.5880 +1019 25939 0.4870 +1019 26272 0.5460 +1019 26523 0.5740 +1019 27030 0.5830 +1019 27043 0.5270 +1019 27152 0.5630 +1019 27327 0.5260 +1019 27436 0.5320 +1019 28996 0.4110 +1019 29072 0.4030 +1019 29079 0.5400 +1019 29107 0.4260 +1019 29126 0.5910 +1019 29883 0.4580 +1019 29893 0.4440 +1019 29950 0.8740 +1019 51003 0.5510 +1019 51343 0.7210 +1019 51361 0.6660 +1019 51412 0.5640 +1019 51806 0.7230 +1019 54145 0.5670 +1019 54205 0.7450 +1019 54386 0.4680 +1019 54797 0.5700 +1019 55090 0.5410 +1019 55143 0.6060 +1019 55193 0.6350 +1019 55255 0.5770 +1019 55294 0.5270 +1019 55352 0.5320 +1019 55388 0.4030 +1019 55588 0.5510 +1019 55716 0.4610 +1019 55766 0.4630 +1019 56154 0.4380 +1019 56890 0.4020 +1019 57492 0.6300 +1019 57680 0.4460 +1019 64061 0.6340 +1019 64321 0.4660 +1019 64682 0.5170 +1019 79084 0.8860 +1019 79627 0.4770 +1019 79728 0.4560 +1019 79733 0.4060 +1019 79738 0.4160 +1019 79923 0.4050 +1019 79935 0.5860 +1019 80306 0.5670 +1019 81620 0.7070 +1019 81631 0.4240 +1019 81669 0.9990 +1019 81857 0.5780 +1019 83461 0.4010 +1019 83605 0.4350 +1019 84057 0.4570 +1019 84246 0.5860 +1019 84260 0.8410 +1019 85235 0.4540 +1019 85236 0.5710 +1019 85417 0.6580 +1019 90390 0.5400 +1019 91860 0.7100 +1019 92292 0.4510 +1019 94239 0.5220 +1019 112950 0.5440 +1019 116931 0.5690 +1019 116986 0.5250 +1019 124222 0.4170 +1019 126520 0.4190 +1019 128312 0.5740 +1019 133482 0.5640 +1019 133522 0.5880 +1019 137902 0.6290 +1019 144455 0.4320 +1019 158880 0.5840 +1019 163688 0.7100 +1019 163786 0.4340 +1019 166979 0.5870 +1019 192669 0.5330 +1019 192670 0.5250 +1019 196528 0.6780 +1019 203068 0.5230 +1019 219970 0.4210 +1019 221613 0.4540 +1019 253260 0.5930 +1019 255626 0.5660 +1019 256643 0.5400 +1019 259266 0.4590 +1019 283629 0.5050 +1019 339416 0.4560 +1019 340273 0.4090 +1019 345079 0.4400 +1019 377630 0.6550 +1019 400569 0.5420 +1019 440093 0.5670 +1019 440686 0.5670 +1019 474382 0.4540 +1019 494551 0.4610 +1019 645121 0.4550 +1019 653604 0.7740 +1019 728378 0.5450 +1019 100287520 0.4210 +1019 100532731 0.5340 +1020 1021 0.5010 +1020 1026 0.8850 +1020 1027 0.9410 +1020 1029 0.7420 +1020 1072 0.5090 +1020 1073 0.5120 +1020 1103 0.5160 +1020 1385 0.5790 +1020 1400 0.7490 +1020 1453 0.4660 +1020 1499 0.6530 +1020 1508 0.4430 +1020 1509 0.4960 +1020 1600 0.4190 +1020 1627 0.5480 +1020 1641 0.4960 +1020 1742 0.9740 +1020 1759 0.7700 +1020 1778 0.5080 +1020 1786 0.6540 +1020 1808 0.9800 +1020 1809 0.7270 +1020 1869 0.6130 +1020 1956 0.5380 +1020 1958 0.6750 +1020 2043 0.4890 +1020 2048 0.4470 +1020 2288 0.6290 +1020 2289 0.6100 +1020 2309 0.8100 +1020 2353 0.4410 +1020 2354 0.6200 +1020 2534 0.9510 +1020 2580 0.8210 +1020 2597 0.5550 +1020 2670 0.4250 +1020 2801 0.7930 +1020 2890 0.5240 +1020 2903 0.7630 +1020 2904 0.8000 +1020 2915 0.5040 +1020 2932 0.6270 +1020 3005 0.8500 +1020 3024 0.6350 +1020 3064 0.6090 +1020 3065 0.4140 +1020 3156 0.5160 +1020 3320 0.5070 +1020 3326 0.4940 +1020 3416 0.5080 +1020 3630 0.5550 +1020 3725 0.9260 +1020 3746 0.4260 +1020 3831 0.4090 +1020 4000 0.7710 +1020 4001 0.7930 +1020 4088 0.4690 +1020 4131 0.5300 +1020 4133 0.5150 +1020 4137 0.9990 +1020 4155 0.4780 +1020 4609 0.4100 +1020 4665 0.5710 +1020 4741 0.5940 +1020 4744 0.8460 +1020 4747 0.6560 +1020 4803 0.4980 +1020 4842 0.5430 +1020 4915 0.6150 +1020 5048 0.6150 +1020 5052 0.8050 +1020 5071 0.6310 +1020 5111 0.7840 +1020 5127 0.6270 +1020 5218 0.5760 +1020 5252 0.6140 +1020 5361 0.6450 +1020 5362 0.7910 +1020 5468 0.9090 +1020 5499 0.5200 +1020 5663 0.8530 +1020 5664 0.7200 +1020 5728 0.4380 +1020 5781 0.4040 +1020 5813 0.4490 +1020 5925 0.4200 +1020 6622 0.6720 +1020 6647 0.6580 +1020 6804 0.5390 +1020 6812 0.6850 +1020 6853 0.5910 +1020 6854 0.4900 +1020 6855 0.7150 +1020 7001 0.8360 +1020 7074 0.6320 +1020 7094 0.5050 +1020 7150 0.4460 +1020 7157 0.9670 +1020 7203 0.4090 +1020 7345 0.4540 +1020 7514 0.4320 +1020 7531 0.7060 +1020 7837 0.4480 +1020 8224 0.4890 +1020 8318 0.4440 +1020 8812 0.4420 +1020 8829 0.6390 +1020 8851 0.9990 +1020 8867 0.4780 +1020 8871 0.4050 +1020 8878 0.4560 +1020 8900 0.7930 +1020 8936 0.6490 +1020 8941 0.9930 +1020 9158 0.8750 +1020 9625 0.7560 +1020 9759 0.5140 +1020 9772 0.7650 +1020 9847 0.9190 +1020 9867 0.4140 +1020 9915 0.4080 +1020 9967 0.5360 +1020 10013 0.4510 +1020 10059 0.5140 +1020 10190 0.4730 +1020 10273 0.7300 +1020 10309 0.5090 +1020 10371 0.7430 +1020 10570 0.6360 +1020 10574 0.4020 +1020 10575 0.4110 +1020 10763 0.8960 +1020 10971 0.5140 +1020 10983 0.8120 +1020 11104 0.5140 +1020 22853 0.5520 +1020 22920 0.4030 +1020 22948 0.6650 +1020 23235 0.4770 +1020 23376 0.5880 +1020 23385 0.6040 +1020 23411 0.4900 +1020 23435 0.4220 +1020 23621 0.8760 +1020 25791 0.4570 +1020 25825 0.5010 +1020 27429 0.4110 +1020 51100 0.4830 +1020 51107 0.5370 +1020 51343 0.6760 +1020 51654 0.9100 +1020 51806 0.5670 +1020 54820 0.5020 +1020 54901 0.6930 +1020 55558 0.6250 +1020 55755 0.8230 +1020 55851 0.5540 +1020 56896 0.6380 +1020 64837 0.5350 +1020 65018 0.4700 +1020 79187 0.4670 +1020 79258 0.5810 +1020 80279 0.8410 +1020 81565 0.8350 +1020 81669 0.9330 +1020 81928 0.8840 +1020 83856 0.4640 +1020 84152 0.9760 +1020 84260 0.4780 +1020 84290 0.5090 +1020 84570 0.4960 +1020 84630 0.4400 +1020 91584 0.6230 +1020 91768 0.9690 +1020 91860 0.5320 +1020 120892 0.5810 +1020 137902 0.4430 +1020 148479 0.4990 +1020 163688 0.5120 +1020 219771 0.6760 +1020 266743 0.5000 +1020 284403 0.4630 +1020 387119 0.4540 +1020 645121 0.6550 +1021 1022 0.7460 +1021 1024 0.6330 +1021 1025 0.6140 +1021 1026 0.9990 +1021 1027 0.9990 +1021 1028 0.9950 +1021 1029 0.9990 +1021 1030 0.9990 +1021 1031 0.9990 +1021 1032 0.9990 +1021 1033 0.9010 +1021 1051 0.6510 +1021 1062 0.4200 +1021 1063 0.4070 +1021 1104 0.4860 +1021 1111 0.6560 +1021 1119 0.7090 +1021 1163 0.8320 +1021 1164 0.6560 +1021 1263 0.4870 +1021 1499 0.7520 +1021 1588 0.4340 +1021 1647 0.6120 +1021 1786 0.5340 +1021 1788 0.4610 +1021 1789 0.4500 +1021 1869 0.9310 +1021 1870 0.7760 +1021 1871 0.8320 +1021 1874 0.7470 +1021 1875 0.8070 +1021 1876 0.4380 +1021 1950 0.4620 +1021 2057 0.4060 +1021 2099 0.5850 +1021 2139 0.4350 +1021 2146 0.6860 +1021 2305 0.6670 +1021 2308 0.4610 +1021 2309 0.8020 +1021 2353 0.4050 +1021 2475 0.4970 +1021 2597 0.6450 +1021 2623 0.5860 +1021 2624 0.5730 +1021 2627 0.4010 +1021 2956 0.4170 +1021 3005 0.5750 +1021 3014 0.4260 +1021 3021 0.5180 +1021 3024 0.6210 +1021 3065 0.6470 +1021 3091 0.5520 +1021 3178 0.6480 +1021 3265 0.6700 +1021 3276 0.5260 +1021 3308 0.6220 +1021 3320 0.5870 +1021 3326 0.7110 +1021 3417 0.4240 +1021 3569 0.4250 +1021 3630 0.4080 +1021 3659 0.4860 +1021 3673 0.4450 +1021 3717 0.5610 +1021 3725 0.7870 +1021 3727 0.5980 +1021 3832 0.5730 +1021 3845 0.6360 +1021 3925 0.5590 +1021 3927 0.4680 +1021 4067 0.4910 +1021 4085 0.6400 +1021 4087 0.5820 +1021 4088 0.5840 +1021 4089 0.4650 +1021 4150 0.4300 +1021 4170 0.5890 +1021 4171 0.7960 +1021 4172 0.5340 +1021 4173 0.5720 +1021 4174 0.5810 +1021 4175 0.4990 +1021 4176 0.6040 +1021 4193 0.6560 +1021 4194 0.4790 +1021 4233 0.4500 +1021 4288 0.4330 +1021 4299 0.6370 +1021 4300 0.6120 +1021 4313 0.4350 +1021 4318 0.4840 +1021 4331 0.5090 +1021 4343 0.5130 +1021 4436 0.4180 +1021 4594 0.4310 +1021 4602 0.4010 +1021 4605 0.6640 +1021 4609 0.7880 +1021 4610 0.5180 +1021 4613 0.6160 +1021 4739 0.4520 +1021 4763 0.5510 +1021 4771 0.4270 +1021 4790 0.6720 +1021 4792 0.4620 +1021 4851 0.5780 +1021 4853 0.4570 +1021 4869 0.6590 +1021 4893 0.5640 +1021 4904 0.5720 +1021 4999 0.4760 +1021 5111 0.9810 +1021 5290 0.5960 +1021 5291 0.5160 +1021 5295 0.4350 +1021 5347 0.5250 +1021 5460 0.4350 +1021 5469 0.5720 +1021 5515 0.4440 +1021 5520 0.4790 +1021 5521 0.4090 +1021 5728 0.8010 +1021 5753 0.4860 +1021 5793 0.4050 +1021 5888 0.6940 +1021 5925 0.9970 +1021 5933 0.9420 +1021 5934 0.9740 +1021 6240 0.4140 +1021 6241 0.4980 +1021 6275 0.4050 +1021 6491 0.4900 +1021 6500 0.7550 +1021 6502 0.8060 +1021 6591 0.4250 +1021 6597 0.4240 +1021 6615 0.4500 +1021 6634 0.4950 +1021 6635 0.4570 +1021 6657 0.4740 +1021 6714 0.5520 +1021 6774 0.8810 +1021 6790 0.5650 +1021 6795 0.4810 +1021 6837 0.5400 +1021 6886 0.4770 +1021 6907 0.4230 +1021 7011 0.4290 +1021 7015 0.5960 +1021 7027 0.7330 +1021 7029 0.7530 +1021 7132 0.4120 +1021 7153 0.6230 +1021 7155 0.4770 +1021 7157 0.8080 +1021 7158 0.4610 +1021 7298 0.4990 +1021 7329 0.4720 +1021 7334 0.4690 +1021 7341 0.4690 +1021 7345 0.4520 +1021 7403 0.4700 +1021 7465 0.8280 +1021 7837 0.5470 +1021 8028 0.4490 +1021 8091 0.7040 +1021 8289 0.4220 +1021 8290 0.5050 +1021 8313 0.5350 +1021 8317 0.5530 +1021 8318 0.5080 +1021 8356 0.5150 +1021 8454 0.6940 +1021 8517 0.4990 +1021 8531 0.4410 +1021 8555 0.4030 +1021 8556 0.4520 +1021 8697 0.5730 +1021 8812 0.6260 +1021 8833 0.4380 +1021 8851 0.4540 +1021 8881 0.5930 +1021 8900 0.9930 +1021 9088 0.5040 +1021 9133 0.8060 +1021 9134 0.9590 +1021 9150 0.5250 +1021 9156 0.4400 +1021 9184 0.4590 +1021 9212 0.6940 +1021 9232 0.5280 +1021 9282 0.5530 +1021 9412 0.5490 +1021 9439 0.5530 +1021 9440 0.5410 +1021 9441 0.5470 +1021 9442 0.5620 +1021 9443 0.5400 +1021 9477 0.5430 +1021 9491 0.4580 +1021 9493 0.4410 +1021 9659 0.4830 +1021 9662 0.5750 +1021 9774 0.6080 +1021 9787 0.4230 +1021 9817 0.4620 +1021 9862 0.5490 +1021 9928 0.4870 +1021 9967 0.5760 +1021 9968 0.6540 +1021 9969 0.6150 +1021 10001 0.5830 +1021 10018 0.4470 +1021 10025 0.5500 +1021 10051 0.4720 +1021 10298 0.4120 +1021 10309 0.4510 +1021 10403 0.4040 +1021 10413 0.4100 +1021 10419 0.5960 +1021 10519 0.5760 +1021 10614 0.4160 +1021 10643 0.5970 +1021 10744 0.6090 +1021 10769 0.4910 +1021 10983 0.5280 +1021 11065 0.4550 +1021 11140 0.9640 +1021 11186 0.4250 +1021 11200 0.5260 +1021 22974 0.4020 +1021 23097 0.6140 +1021 23112 0.5770 +1021 23365 0.4370 +1021 23389 0.5510 +1021 23405 0.4630 +1021 23411 0.5820 +1021 23476 0.4480 +1021 25793 0.7250 +1021 25898 0.4360 +1021 25942 0.4850 +1021 26523 0.6930 +1021 27102 0.6530 +1021 27113 0.5180 +1021 27152 0.5630 +1021 27161 0.7010 +1021 27250 0.4190 +1021 27327 0.5580 +1021 27436 0.4500 +1021 28232 0.4220 +1021 29079 0.5420 +1021 29102 0.4730 +1021 29107 0.4210 +1021 29126 0.4290 +1021 51003 0.5510 +1021 51343 0.7050 +1021 51659 0.4280 +1021 53354 0.4350 +1021 54205 0.5150 +1021 54619 0.4360 +1021 54797 0.5870 +1021 54875 0.4140 +1021 55090 0.5400 +1021 55143 0.6270 +1021 55193 0.5260 +1021 55255 0.5810 +1021 55284 0.5040 +1021 55294 0.4840 +1021 55339 0.4500 +1021 55388 0.8170 +1021 55588 0.5470 +1021 55835 0.4440 +1021 57082 0.5920 +1021 57510 0.4220 +1021 57680 0.5020 +1021 60436 0.4170 +1021 63925 0.5620 +1021 64682 0.5460 +1021 79084 0.6210 +1021 79648 0.5910 +1021 79733 0.4140 +1021 79923 0.6090 +1021 79935 0.6570 +1021 80306 0.5560 +1021 81620 0.5270 +1021 81669 0.9990 +1021 81857 0.5810 +1021 83540 0.4090 +1021 84246 0.5900 +1021 84260 0.7340 +1021 84324 0.4030 +1021 84879 0.4370 +1021 85417 0.6640 +1021 90390 0.5420 +1021 92292 0.4210 +1021 112950 0.5400 +1021 115426 0.5370 +1021 116931 0.5770 +1021 126520 0.4190 +1021 133522 0.5600 +1021 137902 0.5410 +1021 144455 0.4520 +1021 158880 0.5610 +1021 163786 0.5530 +1021 166979 0.8790 +1021 192669 0.5580 +1021 192670 0.5420 +1021 219970 0.4210 +1021 253012 0.4730 +1021 253260 0.5320 +1021 256643 0.5400 +1021 257415 0.5220 +1021 259266 0.4740 +1021 283629 0.4830 +1021 345079 0.4400 +1021 377630 0.6050 +1021 400569 0.5410 +1021 440093 0.5080 +1021 440686 0.5050 +1021 494551 0.4500 +1021 645121 0.4400 +1021 653604 0.5050 +1021 100287520 0.4210 +1021 100532731 0.6690 +1022 1024 0.5660 +1022 1025 0.9900 +1022 1026 0.6490 +1022 1027 0.8530 +1022 1028 0.7060 +1022 1029 0.6230 +1022 1069 0.8000 +1022 1111 0.7440 +1022 1161 0.6760 +1022 1163 0.5680 +1022 1432 0.4220 +1022 1642 0.7000 +1022 1643 0.6640 +1022 1647 0.5440 +1022 1663 0.5190 +1022 1869 0.8950 +1022 1875 0.4410 +1022 2033 0.6080 +1022 2067 0.7890 +1022 2068 0.9990 +1022 2071 0.9990 +1022 2072 0.6120 +1022 2073 0.8800 +1022 2074 0.6670 +1022 2099 0.7430 +1022 2177 0.5700 +1022 2547 0.4140 +1022 2623 0.4650 +1022 2624 0.4900 +1022 2625 0.5030 +1022 2873 0.5200 +1022 2957 0.9030 +1022 2958 0.9180 +1022 2959 0.9870 +1022 2960 0.9940 +1022 2961 0.9890 +1022 2962 0.9290 +1022 2963 0.9280 +1022 2965 0.9990 +1022 2966 0.9990 +1022 2967 0.9990 +1022 2968 0.9990 +1022 3015 0.8700 +1022 3021 0.4260 +1022 3066 0.6540 +1022 3185 0.4860 +1022 3192 0.4590 +1022 3320 0.4990 +1022 3326 0.5790 +1022 3714 0.6690 +1022 3978 0.5360 +1022 3980 0.4930 +1022 4004 0.5210 +1022 4005 0.4410 +1022 4170 0.5220 +1022 4176 0.5050 +1022 4331 0.9990 +1022 4609 0.6800 +1022 4613 0.4840 +1022 4686 0.5570 +1022 5111 0.9090 +1022 5347 0.4120 +1022 5431 0.9480 +1022 5432 0.9430 +1022 5433 0.9490 +1022 5434 0.9190 +1022 5435 0.9320 +1022 5436 0.9430 +1022 5437 0.9140 +1022 5438 0.9130 +1022 5439 0.9190 +1022 5440 0.9210 +1022 5441 0.9040 +1022 5451 0.5200 +1022 5452 0.5010 +1022 5469 0.9140 +1022 5536 0.4360 +1022 5605 0.4770 +1022 5831 0.4300 +1022 5886 0.6170 +1022 5887 0.7710 +1022 5888 0.4710 +1022 5892 0.5970 +1022 5906 0.4320 +1022 6118 0.5410 +1022 6187 0.5620 +1022 6233 0.5170 +1022 6346 0.7880 +1022 6446 0.4290 +1022 6502 0.5270 +1022 6617 0.5200 +1022 6618 0.5110 +1022 6619 0.5080 +1022 6621 0.4990 +1022 6662 0.4540 +1022 6667 0.5370 +1022 6732 0.4400 +1022 6733 0.4410 +1022 6749 0.6720 +1022 6790 0.5100 +1022 6827 0.7860 +1022 6829 0.9510 +1022 6830 0.4650 +1022 6837 0.8590 +1022 6872 0.9250 +1022 6873 0.9150 +1022 6874 0.9230 +1022 6875 0.5490 +1022 6877 0.9210 +1022 6878 0.9260 +1022 6879 0.9390 +1022 6880 0.9210 +1022 6881 0.9030 +1022 6882 0.9020 +1022 6883 0.9130 +1022 6884 0.9080 +1022 6886 0.5410 +1022 6908 0.9830 +1022 6917 0.7620 +1022 6919 0.5270 +1022 6920 0.5200 +1022 6921 0.5300 +1022 6923 0.5080 +1022 6924 0.5700 +1022 6929 0.4570 +1022 6938 0.4050 +1022 7029 0.4280 +1022 7157 0.8880 +1022 7158 0.4290 +1022 7159 0.4150 +1022 7187 0.4380 +1022 7270 0.5300 +1022 7311 0.5040 +1022 7314 0.5300 +1022 7316 0.6280 +1022 7343 0.5510 +1022 7392 0.4220 +1022 7465 0.5240 +1022 7469 0.5490 +1022 7507 0.9150 +1022 7508 0.8080 +1022 7515 0.5300 +1022 7520 0.4450 +1022 7702 0.5340 +1022 7818 0.4240 +1022 7936 0.7130 +1022 8019 0.4640 +1022 8148 0.5330 +1022 8178 0.6630 +1022 8202 0.5010 +1022 8290 0.4150 +1022 8294 0.8000 +1022 8317 0.6500 +1022 8356 0.4300 +1022 8359 0.8000 +1022 8360 0.8000 +1022 8361 0.8330 +1022 8362 0.8000 +1022 8363 0.8010 +1022 8364 0.8000 +1022 8366 0.8010 +1022 8367 0.8030 +1022 8368 0.8000 +1022 8370 0.8000 +1022 8450 0.5790 +1022 8451 0.6070 +1022 8533 0.5520 +1022 8621 0.8080 +1022 8731 0.6490 +1022 8732 0.6250 +1022 8812 0.9150 +1022 8861 0.4150 +1022 8900 0.8760 +1022 8970 0.8280 +1022 9013 0.6000 +1022 9014 0.5140 +1022 9015 0.5140 +1022 9021 0.4120 +1022 9112 0.7070 +1022 9133 0.5490 +1022 9134 0.6030 +1022 9150 0.8410 +1022 9282 0.9050 +1022 9318 0.5300 +1022 9412 0.8830 +1022 9439 0.8500 +1022 9440 0.9390 +1022 9441 0.8710 +1022 9442 0.8370 +1022 9443 0.8690 +1022 9477 0.8370 +1022 9533 0.6320 +1022 9557 0.5080 +1022 9641 0.6390 +1022 9656 0.5760 +1022 9862 0.8390 +1022 9968 0.6600 +1022 9969 0.4170 +1022 9978 0.6100 +1022 10001 0.9380 +1022 10018 0.5360 +1022 10025 0.8240 +1022 10038 0.5700 +1022 10302 0.5080 +1022 10614 0.6920 +1022 10681 0.9000 +1022 10849 0.5070 +1022 10920 0.5420 +1022 10980 0.5070 +1022 10987 0.5400 +1022 10989 0.6730 +1022 11140 0.7670 +1022 11198 0.6280 +1022 22827 0.5200 +1022 22916 0.5500 +1022 23097 0.4340 +1022 23405 0.4560 +1022 23476 0.9540 +1022 23552 0.4110 +1022 25885 0.5680 +1022 25920 0.6240 +1022 26271 0.4730 +1022 27161 0.4250 +1022 27336 0.5830 +1022 28996 0.4040 +1022 29079 0.8460 +1022 29101 0.7310 +1022 29893 0.5470 +1022 30834 0.5510 +1022 50813 0.5030 +1022 51003 0.8620 +1022 51082 0.5160 +1022 51138 0.5230 +1022 51224 0.5230 +1022 51497 0.5270 +1022 51574 0.4150 +1022 51585 0.5890 +1022 51586 0.8400 +1022 51616 0.5010 +1022 51750 0.5010 +1022 51755 0.8080 +1022 54457 0.5140 +1022 54700 0.5410 +1022 54797 0.8620 +1022 55090 0.8240 +1022 55215 0.5650 +1022 55588 0.8280 +1022 56257 0.4110 +1022 56647 0.9170 +1022 57018 0.4460 +1022 57654 0.4360 +1022 64210 0.9370 +1022 64425 0.5060 +1022 64708 0.5070 +1022 79101 0.5220 +1022 79871 0.5590 +1022 80306 0.8380 +1022 81669 0.8410 +1022 81857 0.8190 +1022 83860 0.9060 +1022 83990 0.6970 +1022 84172 0.6140 +1022 84246 0.8370 +1022 90390 0.8370 +1022 112950 0.8620 +1022 121504 0.8000 +1022 126961 0.8060 +1022 129685 0.8980 +1022 133482 0.5880 +1022 138474 0.5540 +1022 154810 0.4200 +1022 219771 0.4130 +1022 221322 0.4660 +1022 221830 0.5090 +1022 284119 0.5040 +1022 333932 0.8060 +1022 400569 0.8430 +1022 404672 0.9970 +1022 440093 0.4140 +1022 440686 0.4140 +1022 554313 0.8000 +1022 653604 0.8790 +1022 728340 0.9530 +1024 1025 0.8230 +1024 1026 0.7760 +1024 1029 0.5660 +1024 1050 0.7240 +1024 1051 0.7860 +1024 1052 0.5140 +1024 1111 0.4700 +1024 1387 0.7020 +1024 1457 0.4620 +1024 1499 0.6580 +1024 1869 0.7190 +1024 1879 0.5440 +1024 2033 0.6660 +1024 2068 0.4590 +1024 2071 0.4510 +1024 2099 0.5470 +1024 2100 0.4010 +1024 2167 0.4990 +1024 2648 0.8040 +1024 2959 0.6120 +1024 2965 0.4830 +1024 3021 0.4320 +1024 3091 0.7870 +1024 3516 0.6630 +1024 3660 0.4140 +1024 3714 0.4840 +1024 3812 0.4100 +1024 3845 0.4190 +1024 3952 0.5130 +1024 3960 0.5730 +1024 4023 0.4990 +1024 4087 0.7150 +1024 4088 0.7130 +1024 4089 0.6190 +1024 4090 0.4550 +1024 4193 0.4520 +1024 4609 0.7070 +1024 4850 0.8680 +1024 4851 0.6850 +1024 5105 0.5020 +1024 5127 0.4870 +1024 5346 0.5250 +1024 5432 0.5140 +1024 5438 0.4160 +1024 5468 0.5820 +1024 5469 0.9980 +1024 5591 0.4160 +1024 5934 0.4380 +1024 6046 0.5640 +1024 6256 0.5410 +1024 6500 0.6320 +1024 6502 0.4910 +1024 6517 0.5150 +1024 6597 0.4670 +1024 6598 0.4190 +1024 6720 0.6460 +1024 6829 0.5060 +1024 6837 0.9920 +1024 6908 0.6710 +1024 6917 0.7180 +1024 6919 0.4420 +1024 6920 0.4340 +1024 7157 0.7260 +1024 7158 0.4740 +1024 8202 0.5920 +1024 8204 0.6220 +1024 8290 0.4330 +1024 8295 0.4430 +1024 8356 0.5060 +1024 8454 0.6250 +1024 8621 0.5430 +1024 8648 0.5560 +1024 8812 0.8070 +1024 8841 0.6020 +1024 8850 0.8480 +1024 8900 0.5340 +1024 9150 0.6640 +1024 9282 0.9990 +1024 9370 0.4990 +1024 9412 0.9980 +1024 9439 0.9960 +1024 9440 0.9990 +1024 9441 0.9960 +1024 9442 0.9870 +1024 9443 0.9970 +1024 9475 0.4290 +1024 9477 0.9860 +1024 9555 0.4090 +1024 9611 0.6060 +1024 9612 0.5930 +1024 9696 0.5380 +1024 9774 0.5490 +1024 9794 0.8470 +1024 9862 0.9910 +1024 9967 0.9300 +1024 9968 0.9990 +1024 9969 0.9990 +1024 9978 0.5780 +1024 10001 0.9990 +1024 10025 0.9970 +1024 10046 0.5020 +1024 10419 0.4190 +1024 10499 0.6090 +1024 10891 0.6940 +1024 10919 0.4960 +1024 22938 0.5710 +1024 23097 0.9940 +1024 23389 0.9970 +1024 23411 0.4090 +1024 23476 0.7650 +1024 25836 0.4250 +1024 26271 0.4580 +1024 27085 0.6310 +1024 29079 0.9920 +1024 30849 0.4900 +1024 50640 0.4830 +1024 51003 0.9920 +1024 51129 0.5030 +1024 51535 0.4850 +1024 51586 0.9960 +1024 54487 0.4050 +1024 54797 0.9980 +1024 55090 0.9880 +1024 55294 0.8080 +1024 55534 0.6740 +1024 55588 0.9930 +1024 59348 0.4630 +1024 79084 0.7060 +1024 79577 0.4520 +1024 80306 0.9870 +1024 81488 0.4140 +1024 81669 0.8770 +1024 81857 0.9750 +1024 84246 0.9950 +1024 84441 0.6770 +1024 84498 0.5370 +1024 84955 0.6270 +1024 85441 0.5070 +1024 90381 0.4830 +1024 90390 0.9970 +1024 112950 0.9980 +1024 116931 0.9950 +1024 133522 0.9000 +1024 256643 0.5430 +1024 353322 0.4110 +1024 400569 0.9860 +1024 404672 0.4650 +1024 440093 0.4330 +1024 440686 0.4270 +1024 653604 0.4320 +1025 1026 0.6690 +1025 1028 0.4520 +1025 1029 0.5640 +1025 1051 0.4540 +1025 1111 0.6230 +1025 1387 0.5410 +1025 1457 0.4670 +1025 1460 0.4630 +1025 1479 0.4070 +1025 1650 0.4290 +1025 1654 0.4210 +1025 1655 0.5450 +1025 1660 0.4860 +1025 1787 0.4920 +1025 1915 0.4120 +1025 1977 0.4260 +1025 2017 0.4380 +1025 2033 0.7250 +1025 2068 0.9180 +1025 2071 0.9330 +1025 2074 0.9110 +1025 2099 0.6710 +1025 2130 0.4770 +1025 2177 0.5820 +1025 2289 0.8350 +1025 2308 0.4190 +1025 2521 0.5840 +1025 2547 0.7430 +1025 2597 0.5870 +1025 2623 0.4680 +1025 2624 0.4240 +1025 2626 0.5410 +1025 2648 0.4520 +1025 2957 0.6330 +1025 2958 0.4990 +1025 2959 0.7590 +1025 2960 0.6690 +1025 2961 0.5810 +1025 2962 0.8470 +1025 2963 0.5820 +1025 2965 0.9290 +1025 2966 0.9190 +1025 2967 0.9180 +1025 2968 0.9200 +1025 3014 0.4520 +1025 3021 0.5690 +1025 3065 0.4460 +1025 3066 0.5360 +1025 3094 0.4270 +1025 3178 0.5630 +1025 3181 0.5110 +1025 3183 0.4510 +1025 3190 0.8450 +1025 3191 0.4450 +1025 3192 0.4870 +1025 3303 0.4130 +1025 3304 0.6600 +1025 3308 0.7360 +1025 3310 0.4780 +1025 3312 0.4740 +1025 3320 0.8820 +1025 3326 0.7760 +1025 3553 0.4460 +1025 3714 0.7820 +1025 3725 0.6120 +1025 3759 0.4070 +1025 3899 0.9470 +1025 4001 0.4210 +1025 4005 0.5210 +1025 4087 0.6380 +1025 4088 0.6690 +1025 4089 0.6020 +1025 4141 0.4480 +1025 4155 0.5260 +1025 4170 0.6350 +1025 4193 0.6390 +1025 4261 0.6760 +1025 4297 0.7300 +1025 4298 0.9990 +1025 4299 0.9990 +1025 4300 0.9960 +1025 4331 0.9340 +1025 4436 0.4260 +1025 4602 0.5690 +1025 4605 0.6540 +1025 4609 0.9530 +1025 4654 0.5590 +1025 4686 0.6410 +1025 4691 0.6480 +1025 4790 0.5920 +1025 4841 0.4040 +1025 4869 0.5110 +1025 5093 0.4130 +1025 5339 0.4850 +1025 5431 0.6330 +1025 5432 0.7860 +1025 5433 0.6260 +1025 5434 0.5820 +1025 5435 0.6370 +1025 5436 0.6200 +1025 5437 0.5440 +1025 5438 0.5650 +1025 5439 0.5410 +1025 5440 0.5310 +1025 5441 0.5220 +1025 5451 0.5250 +1025 5452 0.5000 +1025 5469 0.9970 +1025 5494 0.5260 +1025 5496 0.4150 +1025 5499 0.7190 +1025 5514 0.4400 +1025 5591 0.5880 +1025 5828 0.9000 +1025 5888 0.5000 +1025 5892 0.5270 +1025 5925 0.8010 +1025 5970 0.8370 +1025 6046 0.9060 +1025 6187 0.7410 +1025 6191 0.4680 +1025 6193 0.6010 +1025 6205 0.4090 +1025 6223 0.4740 +1025 6421 0.4180 +1025 6426 0.4100 +1025 6427 0.5200 +1025 6500 0.4200 +1025 6502 0.6620 +1025 6617 0.5070 +1025 6618 0.5060 +1025 6619 0.5070 +1025 6621 0.5090 +1025 6667 0.7520 +1025 6688 0.5290 +1025 6722 0.4690 +1025 6749 0.7820 +1025 6772 0.4480 +1025 6774 0.8190 +1025 6827 0.9800 +1025 6829 0.9950 +1025 6830 0.8190 +1025 6837 0.6740 +1025 6877 0.5680 +1025 6878 0.6230 +1025 6879 0.4710 +1025 6880 0.5780 +1025 6882 0.5600 +1025 6884 0.5350 +1025 6908 0.7750 +1025 6917 0.8610 +1025 6919 0.9460 +1025 6920 0.4510 +1025 6921 0.9080 +1025 6923 0.9140 +1025 6924 0.9300 +1025 7157 0.8890 +1025 7319 0.4630 +1025 7392 0.4490 +1025 7469 0.9260 +1025 7528 0.4550 +1025 7702 0.5180 +1025 7852 0.4820 +1025 7936 0.9720 +1025 8019 0.6370 +1025 8021 0.4310 +1025 8178 0.9970 +1025 8290 0.5570 +1025 8337 0.5010 +1025 8340 0.4990 +1025 8349 0.7150 +1025 8356 0.5640 +1025 8361 0.5430 +1025 8454 0.5990 +1025 8458 0.7620 +1025 8621 0.8670 +1025 8812 0.9990 +1025 8815 0.5340 +1025 8826 0.4270 +1025 8850 0.5260 +1025 8851 0.4360 +1025 8861 0.6640 +1025 8878 0.5420 +1025 8900 0.7610 +1025 9049 0.6290 +1025 9079 0.6530 +1025 9092 0.6400 +1025 9150 0.9170 +1025 9188 0.8300 +1025 9282 0.6730 +1025 9314 0.4790 +1025 9412 0.5930 +1025 9439 0.8310 +1025 9440 0.6760 +1025 9441 0.8450 +1025 9442 0.6120 +1025 9443 0.6250 +1025 9464 0.5050 +1025 9477 0.6320 +1025 9572 0.4870 +1025 9646 0.9650 +1025 9656 0.5440 +1025 9733 0.7680 +1025 9739 0.4560 +1025 9774 0.5900 +1025 9793 0.4460 +1025 9810 0.4760 +1025 9862 0.6410 +1025 9939 0.8830 +1025 9967 0.6350 +1025 9968 0.9980 +1025 9969 0.7440 +1025 10001 0.6820 +1025 10025 0.6230 +1025 10155 0.8470 +1025 10171 0.5880 +1025 10236 0.5060 +1025 10291 0.4300 +1025 10302 0.5040 +1025 10399 0.4100 +1025 10492 0.4590 +1025 10521 0.4240 +1025 10614 0.9990 +1025 10642 0.4340 +1025 10694 0.4290 +1025 10989 0.6030 +1025 11091 0.4800 +1025 11140 0.9350 +1025 11198 0.8940 +1025 11335 0.4330 +1025 22803 0.5810 +1025 22916 0.6040 +1025 22936 0.9950 +1025 22938 0.6970 +1025 23028 0.4760 +1025 23081 0.4430 +1025 23091 0.9940 +1025 23097 0.7200 +1025 23168 0.9380 +1025 23186 0.4570 +1025 23210 0.5600 +1025 23379 0.9110 +1025 23389 0.6690 +1025 23435 0.4240 +1025 23451 0.4310 +1025 23476 0.9990 +1025 23524 0.4260 +1025 23534 0.4290 +1025 25920 0.9560 +1025 26610 0.9030 +1025 26747 0.7950 +1025 27125 0.9990 +1025 27327 0.4210 +1025 27336 0.9170 +1025 29072 0.4700 +1025 29079 0.6530 +1025 29101 0.7510 +1025 51003 0.6470 +1025 51185 0.4900 +1025 51224 0.6200 +1025 51366 0.4070 +1025 51497 0.9160 +1025 51547 0.4190 +1025 51574 0.9970 +1025 51585 0.7670 +1025 51586 0.5090 +1025 51592 0.5560 +1025 51755 0.8990 +1025 54205 0.5880 +1025 54606 0.6540 +1025 54623 0.9710 +1025 54797 0.6390 +1025 55090 0.5770 +1025 55215 0.5910 +1025 55250 0.7380 +1025 55588 0.5700 +1025 55677 0.5390 +1025 55840 0.9150 +1025 55909 0.7060 +1025 56254 0.5970 +1025 56257 0.9980 +1025 56647 0.9020 +1025 57018 0.4990 +1025 57805 0.6810 +1025 63899 0.4650 +1025 64210 0.9140 +1025 64223 0.4680 +1025 64919 0.5590 +1025 79066 0.4350 +1025 79577 0.9730 +1025 79664 0.9130 +1025 79871 0.4910 +1025 80237 0.9840 +1025 80306 0.9970 +1025 80335 0.4230 +1025 80349 0.9270 +1025 81669 0.9940 +1025 81857 0.5680 +1025 84126 0.4510 +1025 84246 0.5780 +1025 84337 0.5430 +1025 84444 0.5770 +1025 84524 0.9070 +1025 85403 0.9520 +1025 90390 0.6650 +1025 92002 0.5530 +1025 93649 0.4160 +1025 112950 0.6430 +1025 116931 0.6460 +1025 123169 0.9600 +1025 124790 0.9790 +1025 129685 0.5470 +1025 133522 0.5460 +1025 255626 0.4950 +1025 256643 0.5400 +1025 256646 0.6040 +1025 400569 0.6560 +1025 404672 0.5880 +1025 440093 0.5570 +1025 440686 0.5580 +1025 653604 0.5690 +1025 728340 0.5780 +1026 1027 0.9820 +1026 1028 0.7350 +1026 1029 0.9660 +1026 1030 0.8900 +1026 1031 0.9020 +1026 1032 0.8540 +1026 1033 0.9460 +1026 1050 0.9560 +1026 1051 0.5000 +1026 1111 0.7400 +1026 1119 0.5810 +1026 1163 0.9260 +1026 1164 0.7760 +1026 1263 0.4220 +1026 1277 0.5850 +1026 1316 0.4110 +1026 1385 0.5780 +1026 1387 0.9040 +1026 1432 0.5910 +1026 1454 0.4360 +1026 1460 0.5670 +1026 1490 0.6450 +1026 1499 0.6250 +1026 1594 0.4170 +1026 1613 0.4300 +1026 1642 0.8370 +1026 1643 0.7020 +1026 1647 0.9740 +1026 1660 0.5050 +1026 1786 0.5430 +1026 1788 0.4610 +1026 1789 0.4500 +1026 1843 0.4230 +1026 1847 0.4570 +1026 1869 0.9770 +1026 1870 0.7780 +1026 1871 0.7650 +1026 1874 0.8960 +1026 1875 0.8290 +1026 1950 0.5700 +1026 1956 0.7520 +1026 1958 0.7010 +1026 1994 0.4250 +1026 2033 0.9200 +1026 2064 0.5880 +1026 2065 0.4420 +1026 2099 0.8420 +1026 2113 0.5330 +1026 2130 0.5180 +1026 2146 0.7390 +1026 2178 0.4310 +1026 2232 0.4790 +1026 2237 0.5940 +1026 2246 0.4820 +1026 2247 0.4460 +1026 2305 0.5320 +1026 2308 0.8180 +1026 2309 0.9950 +1026 2335 0.4620 +1026 2353 0.7530 +1026 2354 0.5750 +1026 2475 0.5210 +1026 2547 0.4080 +1026 2597 0.7770 +1026 2697 0.4300 +1026 2810 0.5310 +1026 2932 0.5290 +1026 3014 0.5800 +1026 3021 0.7100 +1026 3065 0.9030 +1026 3066 0.6200 +1026 3091 0.6090 +1026 3162 0.4760 +1026 3181 0.6030 +1026 3184 0.5640 +1026 3190 0.5560 +1026 3265 0.6750 +1026 3304 0.4360 +1026 3309 0.4670 +1026 3315 0.4530 +1026 3320 0.9090 +1026 3326 0.8310 +1026 3337 0.4170 +1026 3383 0.4230 +1026 3397 0.4170 +1026 3398 0.5410 +1026 3458 0.4420 +1026 3479 0.5060 +1026 3480 0.5100 +1026 3486 0.4890 +1026 3552 0.4320 +1026 3553 0.5360 +1026 3569 0.6330 +1026 3572 0.4790 +1026 3576 0.4800 +1026 3608 0.4060 +1026 3615 0.4590 +1026 3630 0.5220 +1026 3659 0.4030 +1026 3662 0.5600 +1026 3678 0.5110 +1026 3716 0.5620 +1026 3717 0.6400 +1026 3725 0.8310 +1026 3815 0.4340 +1026 3845 0.5790 +1026 4000 0.4670 +1026 4001 0.4540 +1026 4015 0.5760 +1026 4067 0.6810 +1026 4087 0.5420 +1026 4088 0.9180 +1026 4089 0.9400 +1026 4092 0.6470 +1026 4170 0.8490 +1026 4175 0.5890 +1026 4176 0.8240 +1026 4193 0.9800 +1026 4194 0.7540 +1026 4217 0.9700 +1026 4255 0.7190 +1026 4286 0.5660 +1026 4288 0.4180 +1026 4303 0.4390 +1026 4313 0.4760 +1026 4318 0.5140 +1026 4323 0.5290 +1026 4331 0.4750 +1026 4436 0.6480 +1026 4440 0.5700 +1026 4609 0.9810 +1026 4613 0.7090 +1026 4616 0.7580 +1026 4654 0.4440 +1026 4656 0.4440 +1026 4734 0.4090 +1026 4780 0.7500 +1026 4790 0.7510 +1026 4791 0.5200 +1026 4792 0.5240 +1026 4800 0.5570 +1026 4843 0.5400 +1026 4851 0.6800 +1026 4853 0.5970 +1026 4869 0.6660 +1026 4893 0.4680 +1026 4929 0.5220 +1026 5054 0.7010 +1026 5055 0.5650 +1026 5058 0.4830 +1026 5071 0.4040 +1026 5111 0.9990 +1026 5129 0.4370 +1026 5170 0.6120 +1026 5218 0.7820 +1026 5241 0.5550 +1026 5290 0.4450 +1026 5291 0.4320 +1026 5292 0.4290 +1026 5295 0.5750 +1026 5315 0.6210 +1026 5347 0.6820 +1026 5366 0.6660 +1026 5460 0.6200 +1026 5467 0.4500 +1026 5468 0.4480 +1026 5469 0.4440 +1026 5566 0.4740 +1026 5594 0.7320 +1026 5595 0.6080 +1026 5599 0.8080 +1026 5604 0.4540 +1026 5682 0.4440 +1026 5683 0.4580 +1026 5684 0.8710 +1026 5685 0.4530 +1026 5686 0.4270 +1026 5687 0.4380 +1026 5688 0.5510 +1026 5689 0.4060 +1026 5690 0.4400 +1026 5691 0.4260 +1026 5693 0.4820 +1026 5694 0.4510 +1026 5695 0.4380 +1026 5696 0.6690 +1026 5698 0.5000 +1026 5699 0.4580 +1026 5700 0.4300 +1026 5701 0.5440 +1026 5702 0.4450 +1026 5704 0.5210 +1026 5705 0.5840 +1026 5706 0.4280 +1026 5708 0.7150 +1026 5709 0.4440 +1026 5710 0.4400 +1026 5713 0.4630 +1026 5714 0.4220 +1026 5715 0.4590 +1026 5716 0.5030 +1026 5717 0.4770 +1026 5718 0.4230 +1026 5720 0.4550 +1026 5721 0.4840 +1026 5728 0.7920 +1026 5743 0.6780 +1026 5753 0.5540 +1026 5925 0.8760 +1026 5928 0.5090 +1026 5933 0.6530 +1026 5934 0.9590 +1026 5970 0.7450 +1026 5976 0.4100 +1026 6093 0.5400 +1026 6198 0.4750 +1026 6217 0.5130 +1026 6233 0.8370 +1026 6282 0.4700 +1026 6347 0.4900 +1026 6389 0.4970 +1026 6391 0.4300 +1026 6418 0.6640 +1026 6469 0.4430 +1026 6500 0.9800 +1026 6502 0.9960 +1026 6591 0.4610 +1026 6597 0.5510 +1026 6615 0.4920 +1026 6624 0.4880 +1026 6657 0.5200 +1026 6667 0.6150 +1026 6714 0.6970 +1026 6772 0.7650 +1026 6774 0.9840 +1026 6776 0.8480 +1026 6777 0.8870 +1026 6778 0.6140 +1026 6790 0.4760 +1026 6794 0.5780 +1026 6908 0.4070 +1026 7015 0.5070 +1026 7022 0.6090 +1026 7023 0.9190 +1026 7027 0.6910 +1026 7029 0.7260 +1026 7040 0.6050 +1026 7046 0.4060 +1026 7048 0.4650 +1026 7057 0.5080 +1026 7068 0.4120 +1026 7076 0.4260 +1026 7083 0.4440 +1026 7124 0.5670 +1026 7128 0.4220 +1026 7150 0.5900 +1026 7157 0.9990 +1026 7158 0.7210 +1026 7159 0.4840 +1026 7161 0.6910 +1026 7249 0.4110 +1026 7251 0.5810 +1026 7298 0.5900 +1026 7311 0.5140 +1026 7314 0.6270 +1026 7316 0.6400 +1026 7321 0.6340 +1026 7324 0.5940 +1026 7431 0.7630 +1026 7465 0.7090 +1026 7516 0.4540 +1026 7517 0.5110 +1026 7531 0.4510 +1026 7534 0.5530 +1026 7707 0.5640 +1026 7709 0.5610 +1026 7832 0.6210 +1026 7837 0.5930 +1026 8061 0.6190 +1026 8237 0.5310 +1026 8289 0.4040 +1026 8290 0.6380 +1026 8295 0.4130 +1026 8315 0.6640 +1026 8317 0.8510 +1026 8318 0.8440 +1026 8356 0.6380 +1026 8361 0.5800 +1026 8369 0.5730 +1026 8451 0.7240 +1026 8452 0.5700 +1026 8453 0.4790 +1026 8454 0.9580 +1026 8493 0.6110 +1026 8517 0.4250 +1026 8549 0.4210 +1026 8570 0.4540 +1026 8626 0.6330 +1026 8697 0.5050 +1026 8714 0.4040 +1026 8737 0.5200 +1026 8795 0.5670 +1026 8842 0.4030 +1026 8850 0.5350 +1026 8851 0.5170 +1026 8878 0.5600 +1026 8881 0.5010 +1026 8900 0.9990 +1026 9021 0.6140 +1026 9133 0.9270 +1026 9134 0.9990 +1026 9212 0.5010 +1026 9232 0.5590 +1026 9314 0.5480 +1026 9370 0.4910 +1026 9440 0.4680 +1026 9451 0.5210 +1026 9518 0.5560 +1026 9540 0.5180 +1026 9557 0.5280 +1026 9611 0.5020 +1026 9612 0.4870 +1026 9759 0.5830 +1026 9768 0.7190 +1026 9817 0.6050 +1026 9861 0.4110 +1026 9968 0.5720 +1026 9978 0.9450 +1026 10000 0.9500 +1026 10013 0.7750 +1026 10018 0.7260 +1026 10197 0.8280 +1026 10213 0.5050 +1026 10273 0.4980 +1026 10309 0.6400 +1026 10393 0.4840 +1026 10498 0.4700 +1026 10519 0.6300 +1026 10572 0.4040 +1026 10714 0.4560 +1026 10765 0.6310 +1026 10912 0.7290 +1026 11065 0.5400 +1026 11073 0.5080 +1026 11143 0.4630 +1026 11200 0.7610 +1026 23028 0.5410 +1026 23352 0.4670 +1026 23405 0.4810 +1026 23411 0.7190 +1026 23608 0.5650 +1026 23612 0.5660 +1026 23645 0.4140 +1026 25792 0.9900 +1026 25946 0.5890 +1026 26287 0.4090 +1026 26524 0.7530 +1026 26528 0.4080 +1026 27063 0.4430 +1026 27113 0.8080 +1026 27244 0.5120 +1026 27250 0.4260 +1026 27338 0.5350 +1026 29085 0.4720 +1026 29102 0.4640 +1026 29117 0.4100 +1026 29882 0.5400 +1026 29945 0.4310 +1026 29950 0.4120 +1026 50484 0.6400 +1026 51053 0.6950 +1026 51246 0.4960 +1026 51343 0.6760 +1026 51433 0.4600 +1026 51434 0.4110 +1026 51512 0.8440 +1026 51514 0.8800 +1026 51529 0.4780 +1026 51548 0.4180 +1026 51806 0.5510 +1026 54205 0.7990 +1026 54206 0.4960 +1026 54487 0.5910 +1026 54541 0.4790 +1026 55294 0.4050 +1026 55367 0.4180 +1026 55388 0.7470 +1026 55544 0.6130 +1026 55658 0.5650 +1026 55749 0.4400 +1026 55905 0.5240 +1026 56647 0.9900 +1026 57060 0.7680 +1026 57103 0.4300 +1026 57332 0.4320 +1026 57634 0.7880 +1026 58480 0.4550 +1026 63943 0.8760 +1026 63970 0.5630 +1026 64065 0.4220 +1026 64393 0.6870 +1026 64682 0.4630 +1026 64782 0.4290 +1026 79365 0.4840 +1026 79923 0.4700 +1026 81620 0.5350 +1026 81631 0.4670 +1026 81669 0.9960 +1026 81839 0.4230 +1026 83667 0.4720 +1026 84260 0.7600 +1026 84289 0.4950 +1026 84883 0.4690 +1026 90480 0.5700 +1026 91860 0.5480 +1026 94241 0.5150 +1026 114907 0.4590 +1026 119504 0.4140 +1026 122769 0.4350 +1026 124540 0.5140 +1026 131405 0.4590 +1026 133482 0.5550 +1026 137902 0.5900 +1026 149708 0.4210 +1026 162239 0.6070 +1026 163688 0.5480 +1026 171017 0.4520 +1026 246184 0.4550 +1026 253260 0.5210 +1026 255488 0.4040 +1026 339967 0.4970 +1026 440093 0.6380 +1026 440686 0.6380 +1026 653604 0.6380 +1026 728378 0.4570 +1026 100532731 0.5150 +1027 1028 0.9460 +1027 1029 0.9300 +1027 1030 0.8590 +1027 1031 0.9560 +1027 1032 0.9250 +1027 1033 0.7810 +1027 1104 0.4180 +1027 1111 0.4530 +1027 1119 0.5830 +1027 1147 0.5070 +1027 1161 0.9020 +1027 1163 0.9970 +1027 1164 0.8370 +1027 1385 0.4150 +1027 1389 0.5970 +1027 1432 0.4320 +1027 1499 0.5870 +1027 1602 0.4680 +1027 1642 0.9520 +1027 1643 0.9130 +1027 1647 0.4780 +1027 1869 0.8120 +1027 1870 0.7110 +1027 1871 0.7220 +1027 1874 0.7150 +1027 1875 0.6550 +1027 1950 0.4790 +1027 1956 0.7360 +1027 2017 0.4700 +1027 2033 0.6420 +1027 2064 0.7390 +1027 2065 0.4170 +1027 2099 0.5710 +1027 2120 0.5670 +1027 2146 0.6090 +1027 2247 0.4160 +1027 2305 0.4600 +1027 2308 0.8390 +1027 2309 0.9800 +1027 2322 0.8230 +1027 2323 0.7730 +1027 2353 0.5140 +1027 2475 0.5330 +1027 2597 0.5460 +1027 2625 0.4530 +1027 2697 0.4090 +1027 2810 0.9230 +1027 2842 0.5720 +1027 2885 0.8270 +1027 2931 0.5320 +1027 2932 0.6200 +1027 3021 0.4970 +1027 3059 0.4640 +1027 3065 0.4080 +1027 3091 0.5110 +1027 3265 0.4450 +1027 3312 0.6240 +1027 3320 0.4660 +1027 3479 0.4850 +1027 3480 0.7320 +1027 3569 0.4340 +1027 3630 0.4650 +1027 3717 0.7250 +1027 3725 0.5540 +1027 3815 0.4520 +1027 3841 0.5390 +1027 3845 0.5290 +1027 3872 0.4490 +1027 3925 0.9510 +1027 4067 0.6540 +1027 4087 0.4210 +1027 4088 0.4700 +1027 4089 0.5720 +1027 4170 0.5360 +1027 4176 0.5000 +1027 4193 0.5870 +1027 4214 0.4050 +1027 4282 0.4380 +1027 4286 0.4700 +1027 4297 0.4650 +1027 4303 0.7920 +1027 4318 0.4290 +1027 4331 0.4330 +1027 4609 0.8550 +1027 4613 0.4470 +1027 4627 0.5460 +1027 4628 0.4990 +1027 4629 0.5540 +1027 4637 0.4990 +1027 4738 0.8630 +1027 4763 0.4230 +1027 4790 0.4430 +1027 4792 0.4130 +1027 4851 0.4780 +1027 4893 0.4560 +1027 4990 0.4650 +1027 5079 0.6050 +1027 5111 0.4070 +1027 5127 0.5530 +1027 5128 0.5500 +1027 5170 0.6190 +1027 5218 0.5430 +1027 5290 0.5680 +1027 5294 0.4690 +1027 5295 0.4350 +1027 5460 0.4440 +1027 5499 0.4590 +1027 5573 0.4510 +1027 5594 0.8580 +1027 5595 0.6340 +1027 5599 0.5590 +1027 5604 0.4580 +1027 5682 0.4090 +1027 5683 0.4040 +1027 5684 0.4060 +1027 5685 0.4340 +1027 5686 0.4060 +1027 5687 0.4410 +1027 5688 0.4880 +1027 5689 0.5740 +1027 5690 0.4160 +1027 5691 0.4110 +1027 5693 0.4670 +1027 5694 0.4230 +1027 5695 0.4160 +1027 5696 0.4810 +1027 5698 0.4930 +1027 5699 0.4340 +1027 5700 0.4160 +1027 5701 0.4160 +1027 5702 0.4280 +1027 5704 0.5060 +1027 5705 0.4290 +1027 5706 0.4470 +1027 5707 0.4160 +1027 5708 0.5570 +1027 5709 0.4150 +1027 5710 0.4380 +1027 5713 0.4520 +1027 5715 0.4350 +1027 5716 0.4500 +1027 5717 0.4530 +1027 5718 0.4110 +1027 5720 0.4490 +1027 5721 0.4310 +1027 5728 0.8340 +1027 5753 0.5590 +1027 5879 0.5970 +1027 5925 0.8180 +1027 5933 0.6400 +1027 5934 0.7960 +1027 5979 0.5950 +1027 6195 0.5210 +1027 6198 0.4940 +1027 6233 0.9660 +1027 6416 0.4070 +1027 6446 0.4690 +1027 6469 0.4630 +1027 6500 0.9940 +1027 6502 0.9990 +1027 6657 0.6540 +1027 6714 0.8380 +1027 6772 0.5870 +1027 6774 0.5410 +1027 6777 0.5090 +1027 6790 0.7400 +1027 6794 0.4610 +1027 6840 0.4950 +1027 6932 0.4340 +1027 7027 0.6130 +1027 7029 0.5890 +1027 7040 0.6560 +1027 7054 0.4380 +1027 7077 0.4130 +1027 7078 0.4120 +1027 7124 0.4250 +1027 7157 0.9910 +1027 7186 0.6090 +1027 7248 0.5080 +1027 7249 0.8400 +1027 7311 0.9470 +1027 7314 0.9530 +1027 7316 0.9670 +1027 7321 0.4600 +1027 7322 0.5670 +1027 7324 0.4680 +1027 7329 0.4110 +1027 7337 0.4510 +1027 7345 0.4100 +1027 7428 0.4980 +1027 7465 0.5270 +1027 7473 0.4070 +1027 7476 0.4100 +1027 7514 0.9700 +1027 7525 0.4020 +1027 7529 0.6480 +1027 7531 0.4090 +1027 7534 0.6410 +1027 7837 0.4720 +1027 7852 0.5440 +1027 8290 0.4740 +1027 8356 0.4740 +1027 8450 0.9260 +1027 8451 0.9800 +1027 8454 0.9960 +1027 8539 0.4150 +1027 8660 0.5180 +1027 8697 0.4670 +1027 8816 0.9010 +1027 8850 0.4890 +1027 8851 0.5030 +1027 8881 0.5080 +1027 8900 0.9990 +1027 9049 0.5060 +1027 9055 0.5430 +1027 9133 0.8600 +1027 9134 0.9980 +1027 9212 0.4040 +1027 9368 0.4140 +1027 9451 0.5370 +1027 9698 0.5730 +1027 9730 0.9060 +1027 9861 0.4090 +1027 9928 0.5540 +1027 9978 0.9890 +1027 10000 0.9600 +1027 10018 0.7480 +1027 10197 0.4670 +1027 10213 0.4700 +1027 10220 0.4120 +1027 10238 0.9080 +1027 10309 0.4930 +1027 10393 0.5070 +1027 10398 0.5110 +1027 10422 0.4750 +1027 10519 0.6240 +1027 10628 0.4860 +1027 10658 0.4090 +1027 10971 0.6710 +1027 10987 0.9920 +1027 11065 0.5170 +1027 11113 0.8250 +1027 11146 0.7200 +1027 11200 0.5520 +1027 23035 0.5330 +1027 23038 0.5670 +1027 23239 0.5530 +1027 23369 0.4180 +1027 23405 0.4940 +1027 23411 0.5540 +1027 23512 0.4480 +1027 25820 0.9490 +1027 25853 0.9010 +1027 25879 0.9000 +1027 25898 0.6790 +1027 26094 0.9060 +1027 26133 0.9020 +1027 26586 0.5770 +1027 27161 0.4860 +1027 27250 0.4530 +1027 27338 0.6540 +1027 29102 0.4330 +1027 29882 0.5010 +1027 29945 0.4780 +1027 50717 0.9000 +1027 51185 0.9150 +1027 51343 0.6710 +1027 51433 0.4510 +1027 51514 0.9240 +1027 51529 0.4520 +1027 51548 0.4870 +1027 54205 0.6040 +1027 54461 0.9000 +1027 54876 0.9000 +1027 55004 0.8020 +1027 55070 0.9000 +1027 55626 0.9100 +1027 55827 0.9000 +1027 57060 0.5090 +1027 57634 0.5210 +1027 63891 0.7340 +1027 64101 0.4210 +1027 64326 0.9280 +1027 64682 0.4680 +1027 79016 0.9000 +1027 79269 0.9000 +1027 79577 0.4840 +1027 79784 0.4990 +1027 80067 0.9000 +1027 80344 0.9000 +1027 81620 0.4650 +1027 81669 0.9950 +1027 83550 0.5200 +1027 84260 0.6760 +1027 85417 0.5650 +1027 90379 0.9040 +1027 103910 0.5160 +1027 119504 0.4450 +1027 127933 0.8180 +1027 137902 0.4650 +1027 138009 0.5400 +1027 139170 0.5450 +1027 139425 0.5400 +1027 147040 0.4530 +1027 171222 0.8070 +1027 245711 0.9830 +1027 246184 0.4380 +1027 285429 0.5400 +1027 340578 0.5450 +1027 347442 0.5400 +1027 373863 0.5880 +1027 440093 0.4740 +1027 440686 0.4740 +1027 653604 0.4740 +1028 1029 0.8600 +1028 1030 0.8350 +1028 1031 0.8580 +1028 1032 0.8780 +1028 1033 0.7480 +1028 1119 0.5080 +1028 1163 0.6240 +1028 1482 0.4710 +1028 1499 0.4040 +1028 1781 0.7590 +1028 1786 0.4180 +1028 1824 0.4170 +1028 1869 0.7930 +1028 1870 0.7010 +1028 1871 0.7350 +1028 1874 0.6600 +1028 1875 0.6260 +1028 2146 0.4680 +1028 2719 0.6650 +1028 2778 0.4180 +1028 2887 0.7070 +1028 3021 0.4070 +1028 3312 0.4630 +1028 3399 0.4270 +1028 3481 0.9070 +1028 3482 0.7290 +1028 3630 0.5530 +1028 3717 0.4950 +1028 3784 0.9180 +1028 3984 0.6660 +1028 4067 0.4340 +1028 4087 0.4830 +1028 4176 0.4460 +1028 4208 0.4730 +1028 4232 0.6920 +1028 4331 0.4200 +1028 4605 0.4420 +1028 4609 0.5210 +1028 4624 0.5520 +1028 4625 0.5250 +1028 4654 0.8160 +1028 4676 0.7010 +1028 4692 0.5090 +1028 4760 0.6800 +1028 4826 0.4820 +1028 5002 0.8900 +1028 5077 0.4830 +1028 5081 0.5070 +1028 5111 0.6580 +1028 5178 0.6570 +1028 5325 0.7090 +1028 5629 0.5340 +1028 5676 0.4010 +1028 5728 0.5130 +1028 5753 0.4120 +1028 5925 0.7960 +1028 5933 0.7320 +1028 5934 0.7080 +1028 6500 0.9310 +1028 6502 0.9750 +1028 6591 0.4210 +1028 6597 0.5880 +1028 6638 0.6870 +1028 6714 0.5170 +1028 7027 0.5840 +1028 7029 0.5440 +1028 7051 0.6600 +1028 7157 0.7010 +1028 7262 0.9280 +1028 7490 0.5210 +1028 8290 0.4030 +1028 8356 0.4050 +1028 8454 0.9310 +1028 8745 0.4330 +1028 8788 0.7320 +1028 8882 0.4050 +1028 8900 0.9880 +1028 8910 0.4180 +1028 9133 0.6060 +1028 9134 0.9780 +1028 9451 0.4100 +1028 9978 0.9160 +1028 10077 0.6010 +1028 10078 0.7240 +1028 10365 0.4090 +1028 10519 0.7810 +1028 10664 0.6990 +1028 10904 0.4150 +1028 10987 0.4110 +1028 22822 0.4740 +1028 23022 0.4130 +1028 23089 0.4840 +1028 23328 0.4190 +1028 23405 0.4150 +1028 26958 0.5650 +1028 27302 0.7640 +1028 51305 0.4220 +1028 54551 0.4250 +1028 54850 0.4510 +1028 55004 0.4400 +1028 57057 0.4160 +1028 63974 0.6090 +1028 64919 0.5270 +1028 81669 0.7540 +1028 90427 0.5140 +1028 114879 0.4150 +1028 199713 0.5230 +1028 440093 0.4050 +1028 440686 0.4040 +1028 653604 0.4030 +1029 1030 0.9510 +1029 1031 0.8150 +1029 1032 0.8100 +1029 1033 0.8420 +1029 1045 0.5060 +1029 1048 0.5060 +1029 1050 0.4600 +1029 1051 0.6910 +1029 1104 0.4230 +1029 1111 0.7240 +1029 1119 0.5180 +1029 1176 0.5160 +1029 1272 0.5180 +1029 1315 0.6130 +1029 1378 0.4040 +1029 1381 0.5240 +1029 1385 0.6170 +1029 1387 0.7510 +1029 1432 0.9440 +1029 1436 0.4320 +1029 1487 0.4030 +1029 1488 0.7630 +1029 1493 0.5070 +1029 1495 0.4800 +1029 1499 0.9300 +1029 1613 0.5140 +1029 1616 0.6260 +1029 1647 0.5050 +1029 1786 0.7030 +1029 1788 0.6370 +1029 1789 0.7270 +1029 1803 0.5280 +1029 1846 0.4520 +1029 1869 0.9690 +1029 1870 0.6480 +1029 1871 0.6660 +1029 1874 0.6670 +1029 1875 0.5610 +1029 1877 0.7920 +1029 1879 0.4500 +1029 1893 0.4380 +1029 1894 0.4200 +1029 1911 0.5830 +1029 1912 0.5530 +1029 1950 0.5960 +1029 1956 0.9100 +1029 1958 0.5760 +1029 1969 0.4420 +1029 2033 0.8590 +1029 2034 0.5330 +1029 2050 0.4470 +1029 2064 0.7730 +1029 2065 0.6590 +1029 2066 0.5600 +1029 2067 0.4740 +1029 2091 0.4240 +1029 2099 0.6670 +1029 2113 0.7860 +1029 2114 0.6650 +1029 2120 0.6010 +1029 2130 0.4880 +1029 2146 0.8130 +1029 2167 0.4630 +1029 2175 0.4090 +1029 2178 0.4920 +1029 2195 0.5970 +1029 2247 0.4860 +1029 2248 0.4310 +1029 2249 0.4440 +1029 2255 0.4150 +1029 2260 0.6100 +1029 2261 0.7750 +1029 2263 0.5920 +1029 2264 0.4510 +1029 2272 0.7010 +1029 2305 0.5260 +1029 2308 0.4830 +1029 2309 0.7600 +1029 2322 0.7250 +1029 2335 0.5570 +1029 2353 0.4890 +1029 2475 0.6150 +1029 2597 0.6980 +1029 2625 0.6460 +1029 2626 0.5020 +1029 2627 0.4240 +1029 2735 0.4590 +1029 2767 0.5730 +1029 2776 0.5070 +1029 2778 0.6220 +1029 2803 0.5500 +1029 2810 0.5160 +1029 2814 0.5330 +1029 2868 0.4310 +1029 2869 0.4540 +1029 2870 0.4400 +1029 2932 0.5010 +1029 2950 0.6690 +1029 2956 0.6280 +1029 3012 0.5250 +1029 3013 0.5120 +1029 3014 0.7680 +1029 3015 0.6270 +1029 3017 0.6000 +1029 3018 0.5910 +1029 3020 0.5030 +1029 3021 0.8320 +1029 3065 0.7940 +1029 3066 0.4850 +1029 3070 0.4840 +1029 3082 0.5440 +1029 3087 0.6090 +1029 3090 0.5940 +1029 3091 0.9560 +1029 3146 0.5430 +1029 3169 0.4530 +1029 3172 0.4210 +1029 3195 0.5420 +1029 3205 0.4720 +1029 3265 0.9900 +1029 3308 0.4480 +1029 3313 0.4600 +1029 3320 0.5410 +1029 3326 0.5390 +1029 3344 0.5010 +1029 3397 0.6300 +1029 3417 0.7440 +1029 3418 0.6580 +1029 3458 0.5040 +1029 3479 0.5150 +1029 3480 0.6390 +1029 3481 0.5820 +1029 3486 0.4710 +1029 3516 0.5640 +1029 3551 0.5450 +1029 3552 0.4880 +1029 3553 0.5260 +1029 3558 0.4010 +1029 3569 0.6210 +1029 3576 0.5140 +1029 3586 0.4280 +1029 3621 0.5430 +1029 3630 0.5840 +1029 3667 0.4080 +1029 3716 0.4620 +1029 3717 0.5990 +1029 3718 0.5330 +1029 3725 0.7790 +1029 3767 0.4770 +1029 3784 0.4620 +1029 3791 0.5370 +1029 3815 0.6690 +1029 3845 0.9920 +1029 3852 0.5990 +1029 3855 0.6170 +1029 3856 0.5910 +1029 3861 0.4380 +1029 3880 0.4920 +1029 4000 0.4590 +1029 4001 0.4850 +1029 4015 0.5310 +1029 4072 0.5070 +1029 4087 0.6080 +1029 4088 0.8060 +1029 4089 0.8510 +1029 4094 0.4250 +1029 4097 0.5880 +1029 4157 0.7930 +1029 4170 0.5440 +1029 4171 0.7880 +1029 4174 0.7740 +1029 4175 0.6700 +1029 4176 0.6080 +1029 4193 0.9990 +1029 4194 0.9630 +1029 4212 0.4350 +1029 4233 0.5620 +1029 4255 0.8760 +1029 4286 0.5880 +1029 4292 0.8550 +1029 4297 0.5130 +1029 4300 0.4050 +1029 4311 0.4540 +1029 4312 0.4120 +1029 4313 0.4740 +1029 4314 0.4330 +1029 4318 0.5130 +1029 4343 0.5700 +1029 4361 0.4480 +1029 4436 0.6580 +1029 4507 0.9310 +1029 4524 0.4230 +1029 4544 0.4360 +1029 4585 0.4090 +1029 4588 0.4490 +1029 4595 0.4770 +1029 4605 0.4160 +1029 4609 0.9980 +1029 4610 0.4250 +1029 4613 0.7820 +1029 4616 0.5260 +1029 4654 0.4610 +1029 4684 0.4360 +1029 4691 0.5140 +1029 4762 0.5810 +1029 4763 0.7720 +1029 4771 0.6700 +1029 4780 0.7450 +1029 4790 0.5710 +1029 4799 0.4780 +1029 4830 0.4440 +1029 4851 0.7230 +1029 4853 0.5600 +1029 4854 0.4670 +1029 4869 0.9990 +1029 4893 0.9840 +1029 4914 0.5080 +1029 5000 0.6940 +1029 5001 0.7440 +1029 5007 0.5090 +1029 5034 0.4580 +1029 5054 0.4710 +1029 5079 0.5940 +1029 5080 0.5630 +1029 5111 0.4480 +1029 5133 0.4470 +1029 5155 0.4080 +1029 5156 0.7300 +1029 5159 0.5300 +1029 5175 0.4500 +1029 5241 0.5720 +1029 5281 0.4340 +1029 5290 0.7910 +1029 5291 0.4570 +1029 5295 0.5250 +1029 5341 0.4190 +1029 5347 0.4800 +1029 5366 0.5090 +1029 5371 0.5830 +1029 5395 0.5980 +1029 5424 0.4110 +1029 5426 0.5120 +1029 5460 0.5100 +1029 5468 0.5080 +1029 5537 0.4370 +1029 5554 0.5610 +1029 5555 0.5600 +1029 5584 0.4180 +1029 5591 0.6400 +1029 5594 0.8460 +1029 5595 0.6510 +1029 5599 0.8380 +1029 5600 0.9240 +1029 5603 0.9240 +1029 5604 0.6180 +1029 5644 0.5340 +1029 5662 0.4140 +1029 5702 0.5820 +1029 5716 0.5530 +1029 5727 0.5140 +1029 5728 0.9230 +1029 5743 0.4820 +1029 5747 0.4070 +1029 5781 0.6650 +1029 5788 0.4860 +1029 5789 0.4860 +1029 5866 0.4720 +1029 5868 0.6710 +1029 5870 0.5750 +1029 5877 0.6610 +1029 5880 0.4160 +1029 5888 0.4440 +1029 5889 0.4520 +1029 5892 0.4390 +1029 5894 0.5570 +1029 5898 0.4520 +1029 5901 0.4140 +1029 5915 0.6660 +1029 5921 0.7940 +1029 5925 0.8430 +1029 5934 0.4530 +1029 5966 0.4300 +1029 5970 0.8510 +1029 5979 0.5960 +1029 6010 0.5280 +1029 6015 0.6670 +1029 6045 0.8350 +1029 6098 0.5670 +1029 6125 0.5860 +1029 6135 0.7620 +1029 6198 0.4670 +1029 6233 0.7500 +1029 6237 0.9300 +1029 6241 0.4020 +1029 6279 0.5310 +1029 6300 0.9240 +1029 6347 0.4490 +1029 6387 0.4320 +1029 6390 0.4020 +1029 6391 0.4250 +1029 6416 0.4210 +1029 6422 0.5300 +1029 6423 0.4380 +1029 6424 0.4280 +1029 6469 0.4730 +1029 6495 0.4940 +1029 6502 0.8000 +1029 6513 0.4140 +1029 6591 0.4750 +1029 6595 0.4320 +1029 6597 0.8110 +1029 6598 0.6430 +1029 6612 0.4570 +1029 6613 0.6070 +1029 6615 0.5220 +1029 6657 0.7060 +1029 6659 0.6350 +1029 6662 0.4390 +1029 6663 0.4370 +1029 6667 0.5640 +1029 6714 0.7450 +1029 6732 0.4240 +1029 6772 0.4410 +1029 6774 0.6170 +1029 6776 0.4210 +1029 6777 0.4080 +1029 6790 0.7230 +1029 6794 0.8240 +1029 6839 0.4590 +1029 6855 0.4740 +1029 6872 0.5200 +1029 6886 0.4360 +1029 6907 0.5890 +1029 6909 0.4370 +1029 6923 0.4530 +1029 6926 0.4130 +1029 6934 0.7780 +1029 7015 0.8170 +1029 7027 0.4480 +1029 7040 0.5720 +1029 7046 0.4050 +1029 7048 0.5340 +1029 7057 0.6670 +1029 7060 0.4490 +1029 7078 0.5960 +1029 7080 0.4530 +1029 7088 0.4260 +1029 7124 0.5720 +1029 7150 0.7200 +1029 7153 0.6610 +1029 7157 0.9990 +1029 7158 0.5140 +1029 7161 0.6970 +1029 7178 0.4160 +1029 7248 0.4260 +1029 7249 0.5130 +1029 7270 0.4630 +1029 7291 0.4870 +1029 7298 0.4020 +1029 7299 0.6890 +1029 7306 0.4150 +1029 7311 0.5410 +1029 7314 0.5580 +1029 7316 0.6830 +1029 7329 0.8240 +1029 7341 0.5780 +1029 7343 0.4890 +1029 7345 0.8180 +1029 7403 0.6180 +1029 7409 0.5140 +1029 7428 0.6030 +1029 7431 0.4200 +1029 7465 0.5120 +1029 7466 0.4060 +1029 7468 0.6880 +1029 7477 0.4830 +1029 7486 0.7470 +1029 7490 0.6230 +1029 7517 0.5280 +1029 7528 0.5590 +1029 7703 0.5750 +1029 7709 0.4400 +1029 7764 0.4020 +1029 7799 0.4180 +1029 7837 0.5930 +1029 7849 0.5070 +1029 7852 0.4320 +1029 7874 0.6910 +1029 7965 0.4570 +1029 8021 0.5140 +1029 8085 0.5990 +1029 8091 0.5080 +1029 8289 0.7200 +1029 8290 0.6420 +1029 8312 0.4870 +1029 8313 0.6060 +1029 8314 0.6710 +1029 8317 0.9050 +1029 8318 0.8600 +1029 8331 0.5190 +1029 8334 0.5190 +1029 8337 0.7160 +1029 8338 0.7140 +1029 8340 0.6000 +1029 8341 0.5930 +1029 8342 0.5960 +1029 8345 0.5960 +1029 8347 0.5930 +1029 8348 0.5950 +1029 8349 0.6970 +1029 8356 0.8280 +1029 8358 0.4110 +1029 8361 0.6870 +1029 8398 0.4520 +1029 8452 0.5990 +1029 8453 0.6950 +1029 8454 0.4840 +1029 8493 0.5100 +1029 8517 0.6690 +1029 8535 0.6370 +1029 8549 0.4430 +1029 8600 0.5230 +1029 8626 0.7410 +1029 8649 0.8220 +1029 8651 0.6000 +1029 8678 0.6710 +1029 8717 0.4450 +1029 8726 0.4100 +1029 8729 0.6350 +1029 8766 0.6540 +1029 8772 0.4020 +1029 8842 0.4470 +1029 8844 0.4540 +1029 8850 0.5200 +1029 8872 0.4870 +1029 8880 0.4120 +1029 8900 0.6710 +1029 8913 0.5710 +1029 8928 0.4250 +1029 8943 0.4710 +1029 8970 0.5930 +1029 9094 0.4810 +1029 9112 0.4260 +1029 9133 0.4210 +1029 9134 0.4830 +1029 9135 0.5420 +1029 9212 0.7330 +1029 9265 0.6380 +1029 9266 0.7130 +1029 9267 0.9760 +1029 9314 0.5090 +1029 9320 0.8940 +1029 9364 0.4220 +1029 9459 0.4800 +1029 9476 0.4180 +1029 9611 0.4040 +1029 9648 0.5030 +1029 9727 0.5150 +1029 9734 0.4190 +1029 9815 0.6750 +1029 9817 0.5100 +1029 9839 0.4220 +1029 9922 0.4340 +1029 9940 0.4780 +1029 9965 0.4020 +1029 9968 0.4120 +1029 9978 0.6400 +1029 10000 0.4510 +1029 10018 0.5410 +1029 10043 0.5160 +1029 10075 0.9150 +1029 10092 0.4660 +1029 10094 0.5310 +1029 10097 0.7660 +1029 10109 0.5950 +1029 10124 0.6800 +1029 10139 0.6130 +1029 10155 0.4360 +1029 10197 0.6480 +1029 10239 0.5920 +1029 10320 0.6070 +1029 10370 0.4830 +1029 10413 0.4760 +1029 10519 0.6190 +1029 10524 0.5370 +1029 10542 0.4820 +1029 10572 0.6060 +1029 10644 0.7340 +1029 10664 0.7940 +1029 10735 0.4770 +1029 10736 0.5130 +1029 10763 0.4700 +1029 10801 0.4230 +1029 10912 0.5250 +1029 10919 0.4420 +1029 10923 0.4920 +1029 11073 0.4500 +1029 11140 0.4440 +1029 11186 0.8940 +1029 11197 0.4490 +1029 11200 0.7580 +1029 11201 0.5490 +1029 22800 0.9220 +1029 22808 0.9250 +1029 22955 0.5390 +1029 23022 0.4850 +1029 23028 0.4560 +1029 23062 0.4950 +1029 23063 0.4560 +1029 23112 0.5290 +1029 23135 0.7710 +1029 23163 0.7250 +1029 23207 0.5130 +1029 23405 0.4560 +1029 23411 0.6160 +1029 23413 0.5150 +1029 23426 0.5250 +1029 23466 0.5920 +1029 23476 0.4300 +1029 23492 0.8100 +1029 23512 0.6070 +1029 23532 0.5490 +1029 23604 0.5200 +1029 23647 0.8220 +1029 23705 0.4370 +1029 26038 0.5180 +1029 26088 0.7460 +1029 26168 0.6200 +1029 26225 0.5690 +1029 26354 0.5170 +1029 26499 0.4190 +1029 26523 0.6300 +1029 26524 0.6300 +1029 27019 0.4330 +1029 27123 0.5050 +1029 27154 0.4200 +1029 27236 0.5370 +1029 27287 0.5400 +1029 27327 0.5340 +1029 27436 0.4360 +1029 28964 0.6930 +1029 29072 0.6120 +1029 29102 0.4050 +1029 29126 0.6440 +1029 29128 0.5650 +1029 29760 0.4180 +1029 29950 0.7580 +1029 29997 0.4190 +1029 30012 0.6050 +1029 50807 0.4350 +1029 51053 0.6610 +1029 51147 0.4370 +1029 51176 0.6750 +1029 51341 0.4040 +1029 51529 0.4320 +1029 51548 0.4140 +1029 51741 0.5100 +1029 53353 0.5050 +1029 54145 0.5870 +1029 54205 0.4600 +1029 54386 0.4340 +1029 54474 0.5970 +1029 54760 0.4590 +1029 54790 0.5560 +1029 54894 0.7000 +1029 54901 0.6530 +1029 55004 0.4670 +1029 55144 0.4240 +1029 55193 0.5750 +1029 55294 0.6630 +1029 55388 0.8240 +1029 55567 0.4250 +1029 55602 0.9580 +1029 55684 0.6540 +1029 55743 0.5180 +1029 55766 0.5160 +1029 56339 0.4230 +1029 56890 0.4480 +1029 57045 0.5300 +1029 57118 0.4210 +1029 57216 0.4790 +1029 57332 0.6450 +1029 57492 0.4470 +1029 57670 0.4470 +1029 58508 0.5990 +1029 60485 0.4850 +1029 64083 0.6460 +1029 64121 0.4720 +1029 64324 0.4840 +1029 65977 0.7010 +1029 79068 0.4560 +1029 79728 0.6640 +1029 79733 0.4300 +1029 79763 0.7900 +1029 79923 0.4850 +1029 80012 0.5820 +1029 80279 0.6940 +1029 80312 0.4530 +1029 80380 0.4190 +1029 81669 0.9620 +1029 84159 0.4450 +1029 84260 0.8280 +1029 84295 0.4360 +1029 84433 0.4100 +1029 84678 0.4060 +1029 84725 0.6990 +1029 84733 0.6290 +1029 84897 0.5420 +1029 85236 0.5950 +1029 85377 0.4200 +1029 85407 0.4180 +1029 94239 0.5260 +1029 120892 0.4150 +1029 128312 0.6950 +1029 132946 0.4480 +1029 133482 0.6360 +1029 136541 0.5930 +1029 137902 0.5870 +1029 140628 0.4200 +1029 147923 0.5440 +1029 150684 0.5780 +1029 169026 0.5790 +1029 171023 0.4650 +1029 192669 0.5500 +1029 192670 0.5640 +1029 196528 0.5770 +1029 200576 0.5360 +1029 201161 0.5020 +1029 221079 0.4470 +1029 221895 0.4470 +1029 253260 0.4250 +1029 253461 0.4040 +1029 255626 0.5910 +1029 285598 0.4800 +1029 286530 0.4300 +1029 338382 0.4270 +1029 389541 0.4730 +1029 400566 0.5370 +1029 440093 0.6420 +1029 440686 0.6430 +1029 474382 0.5130 +1029 653604 0.8130 +1029 728378 0.4090 +1029 100532731 0.8350 +1029 102723407 0.7170 +1030 1031 0.7510 +1030 1032 0.6980 +1030 1033 0.7220 +1030 1051 0.8250 +1030 1111 0.5690 +1030 1495 0.4030 +1030 1499 0.4530 +1030 1647 0.4050 +1030 1786 0.5190 +1030 1788 0.5000 +1030 1789 0.4500 +1030 1869 0.5070 +1030 1871 0.5340 +1030 1956 0.5960 +1030 2033 0.4310 +1030 2048 0.4200 +1030 2064 0.5360 +1030 2099 0.4210 +1030 2120 0.4800 +1030 2122 0.4750 +1030 2146 0.6140 +1030 2272 0.4830 +1030 2597 0.4490 +1030 2950 0.4440 +1030 3021 0.4910 +1030 3087 0.6550 +1030 3090 0.6590 +1030 3091 0.6270 +1030 3265 0.6100 +1030 3383 0.4510 +1030 3417 0.5300 +1030 3418 0.4580 +1030 3480 0.4680 +1030 3784 0.4120 +1030 3832 0.4240 +1030 3845 0.5540 +1030 3880 0.4450 +1030 4087 0.7140 +1030 4088 0.7450 +1030 4089 0.8120 +1030 4092 0.5630 +1030 4193 0.7200 +1030 4194 0.5240 +1030 4233 0.4030 +1030 4255 0.5890 +1030 4292 0.5120 +1030 4343 0.5290 +1030 4507 0.8180 +1030 4609 0.9660 +1030 4653 0.4450 +1030 4763 0.5490 +1030 4771 0.5270 +1030 4853 0.4010 +1030 4893 0.4960 +1030 5079 0.4490 +1030 5156 0.5530 +1030 5290 0.5070 +1030 5460 0.5180 +1030 5594 0.4640 +1030 5728 0.6260 +1030 5915 0.4210 +1030 5925 0.5100 +1030 6275 0.5810 +1030 6615 0.5770 +1030 6657 0.5750 +1030 6667 0.7270 +1030 6794 0.4760 +1030 6934 0.6240 +1030 7015 0.6520 +1030 7040 0.4340 +1030 7046 0.4070 +1030 7048 0.4600 +1030 7072 0.4430 +1030 7078 0.4050 +1030 7157 0.8600 +1030 7161 0.4930 +1030 7185 0.6250 +1030 7403 0.4320 +1030 7465 0.5790 +1030 7709 0.6140 +1030 8289 0.4340 +1030 8290 0.4700 +1030 8356 0.4720 +1030 8872 0.4150 +1030 8900 0.5090 +1030 9063 0.6840 +1030 9085 0.4260 +1030 9212 0.4390 +1030 9314 0.5850 +1030 9734 0.5470 +1030 10221 0.4080 +1030 10320 0.5020 +1030 10370 0.4020 +1030 10519 0.5390 +1030 10644 0.7730 +1030 11132 0.4710 +1030 11186 0.6420 +1030 23112 0.5090 +1030 23187 0.5710 +1030 23409 0.4020 +1030 23411 0.4240 +1030 23492 0.7370 +1030 23512 0.5520 +1030 26523 0.5330 +1030 26524 0.4140 +1030 27327 0.4990 +1030 29072 0.4240 +1030 51297 0.4930 +1030 51750 0.4370 +1030 54499 0.4650 +1030 54790 0.4150 +1030 54901 0.7120 +1030 55197 0.6420 +1030 55810 0.4030 +1030 56925 0.4260 +1030 57680 0.5300 +1030 63951 0.4080 +1030 79068 0.5540 +1030 79885 0.4490 +1030 81669 0.8460 +1030 84678 0.4020 +1030 147746 0.4190 +1030 153090 0.4720 +1030 169026 0.6530 +1030 170712 0.5470 +1030 192669 0.5250 +1030 192670 0.5250 +1030 253175 0.4360 +1030 360203 0.4490 +1030 440093 0.4700 +1030 440686 0.4700 +1030 653604 0.4700 +1030 100532731 0.6070 +1031 1032 0.6730 +1031 1033 0.5360 +1031 1051 0.5660 +1031 1119 0.4910 +1031 1163 0.6080 +1031 1540 0.4450 +1031 1869 0.6070 +1031 1870 0.4040 +1031 2064 0.4100 +1031 2146 0.4700 +1031 4193 0.4670 +1031 4343 0.5150 +1031 4609 0.5460 +1031 4613 0.7190 +1031 4794 0.4470 +1031 5156 0.4120 +1031 5594 0.4180 +1031 5728 0.4430 +1031 5925 0.4020 +1031 6041 0.4870 +1031 6502 0.4260 +1031 7157 0.9570 +1031 8649 0.4900 +1031 8900 0.5140 +1031 9133 0.4580 +1031 9134 0.4670 +1031 10519 0.6340 +1031 10542 0.4350 +1031 10768 0.4160 +1031 11124 0.5870 +1031 23112 0.5090 +1031 26523 0.5250 +1031 27327 0.4990 +1031 51665 0.4730 +1031 51666 0.4220 +1031 54522 0.4850 +1031 54851 0.4250 +1031 54855 0.5070 +1031 55577 0.4490 +1031 57730 0.5210 +1031 57763 0.4790 +1031 79577 0.4410 +1031 79754 0.5260 +1031 81669 0.8450 +1031 84210 0.4800 +1031 84305 0.4290 +1031 91074 0.4530 +1031 91526 0.4030 +1031 92591 0.4100 +1031 118932 0.4550 +1031 126626 0.4480 +1031 136319 0.5130 +1031 140456 0.4890 +1031 140458 0.4800 +1031 140462 0.5230 +1031 142689 0.5010 +1031 192669 0.5250 +1031 192670 0.5250 +1031 317754 0.5400 +1031 342850 0.4270 +1031 374860 0.4870 +1031 375248 0.4800 +1031 389541 0.4360 +1031 400986 0.4820 +1031 401036 0.4100 +1031 100287399 0.5130 +1031 100288966 0.5400 +1031 100996331 0.5400 +1031 102723502 0.5380 +1032 1033 0.4120 +1032 1051 0.5450 +1032 1119 0.4910 +1032 1487 0.5640 +1032 1869 0.4210 +1032 1870 0.4100 +1032 1958 0.4550 +1032 4343 0.5150 +1032 4613 0.5240 +1032 4792 0.7100 +1032 4794 0.4920 +1032 4929 0.5320 +1032 5594 0.4170 +1032 6041 0.4910 +1032 7157 0.4840 +1032 8900 0.5280 +1032 9817 0.5140 +1032 10519 0.6480 +1032 11140 0.4250 +1032 23112 0.5090 +1032 26523 0.5250 +1032 27327 0.4990 +1032 51171 0.4400 +1032 51665 0.4390 +1032 57153 0.6760 +1032 57730 0.5120 +1032 57763 0.5120 +1032 79735 0.4200 +1032 81669 0.8190 +1032 84210 0.4950 +1032 91074 0.4790 +1032 92591 0.4220 +1032 115825 0.4630 +1032 116729 0.4380 +1032 118932 0.4460 +1032 136319 0.5490 +1032 136991 0.4890 +1032 140456 0.4840 +1032 140458 0.4880 +1032 140462 0.5220 +1032 142689 0.4940 +1032 192669 0.5250 +1032 192670 0.5320 +1032 342850 0.4520 +1032 375248 0.4990 +1032 388324 0.4020 +1032 400986 0.5010 +1032 401036 0.4180 +1033 1058 0.8240 +1033 1062 0.8080 +1033 1063 0.7250 +1033 1111 0.7040 +1033 1163 0.6380 +1033 1164 0.7250 +1033 1200 0.4380 +1033 1263 0.5070 +1033 1499 0.4690 +1033 1647 0.4450 +1033 1786 0.4420 +1033 1869 0.5440 +1033 1894 0.4620 +1033 1956 0.4720 +1033 2064 0.4440 +1033 2099 0.4250 +1033 2113 0.4350 +1033 2146 0.5280 +1033 2237 0.5220 +1033 2305 0.6590 +1033 2309 0.5960 +1033 2313 0.6420 +1033 2353 0.6070 +1033 2475 0.4330 +1033 2597 0.4950 +1033 2810 0.4190 +1033 3014 0.4210 +1033 3021 0.6490 +1033 3065 0.6380 +1033 3066 0.6030 +1033 3161 0.8330 +1033 3320 0.5180 +1033 3326 0.5120 +1033 3397 0.4270 +1033 3725 0.4390 +1033 3832 0.8480 +1033 3833 0.4810 +1033 3845 0.4150 +1033 3925 0.6740 +1033 4085 0.8700 +1033 4170 0.4110 +1033 4173 0.4360 +1033 4193 0.7730 +1033 4288 0.7070 +1033 4609 0.5980 +1033 4751 0.7220 +1033 5347 0.7710 +1033 5366 0.4250 +1033 5427 0.4270 +1033 5595 0.4680 +1033 5728 0.4790 +1033 5888 0.4650 +1033 5925 0.5300 +1033 5928 0.4460 +1033 5931 0.4450 +1033 5984 0.4410 +1033 6093 0.4550 +1033 6241 0.7130 +1033 6502 0.5330 +1033 6774 0.4100 +1033 6790 0.8700 +1033 7083 0.5740 +1033 7153 0.8630 +1033 7157 0.8580 +1033 7158 0.4760 +1033 7262 0.4220 +1033 7272 0.8490 +1033 7298 0.5970 +1033 7341 0.4300 +1033 7465 0.6650 +1033 7837 0.4170 +1033 8290 0.6510 +1033 8317 0.4410 +1033 8318 0.5940 +1033 8356 0.6560 +1033 8819 0.4580 +1033 8900 0.7330 +1033 9055 0.8830 +1033 9088 0.6270 +1033 9133 0.8930 +1033 9156 0.4450 +1033 9203 0.4130 +1033 9212 0.7240 +1033 9232 0.8400 +1033 9319 0.5700 +1033 9475 0.4200 +1033 9493 0.5700 +1033 9700 0.5370 +1033 9768 0.6350 +1033 9787 0.9620 +1033 9833 0.8420 +1033 9928 0.5180 +1033 10018 0.4350 +1033 10024 0.4700 +1033 10051 0.4530 +1033 10112 0.8350 +1033 10284 0.4240 +1033 10403 0.8670 +1033 10592 0.4870 +1033 10615 0.5840 +1033 10635 0.5860 +1033 10733 0.7320 +1033 10769 0.5230 +1033 11004 0.7910 +1033 11065 0.8470 +1033 11130 0.6760 +1033 11200 0.5250 +1033 11329 0.5230 +1033 11339 0.7920 +1033 22974 0.8180 +1033 23012 0.5120 +1033 23210 0.4140 +1033 23397 0.4420 +1033 23411 0.4850 +1033 24137 0.8030 +1033 25984 0.5490 +1033 26574 0.4640 +1033 26586 0.4460 +1033 29089 0.7960 +1033 29127 0.5650 +1033 29128 0.4030 +1033 51203 0.8310 +1033 51512 0.4320 +1033 51514 0.5730 +1033 51529 0.4170 +1033 51550 0.4320 +1033 51659 0.4490 +1033 54205 0.4150 +1033 54443 0.6410 +1033 54478 0.4890 +1033 54892 0.5400 +1033 55010 0.4700 +1033 55143 0.7200 +1033 55165 0.8220 +1033 55197 0.5590 +1033 55215 0.4430 +1033 55294 0.4830 +1033 55355 0.7820 +1033 55635 0.7300 +1033 55749 0.6130 +1033 55789 0.4850 +1033 55839 0.6920 +1033 56848 0.6060 +1033 56992 0.7270 +1033 57405 0.8170 +1033 63943 0.4400 +1033 64151 0.8160 +1033 79019 0.6570 +1033 79682 0.4620 +1033 79801 0.4530 +1033 81620 0.5430 +1033 81669 0.7940 +1033 81930 0.4680 +1033 83461 0.8590 +1033 83540 0.8580 +1033 84057 0.6620 +1033 84260 0.7310 +1033 90417 0.4520 +1033 93649 0.4130 +1033 113130 0.6340 +1033 126520 0.4880 +1033 137902 0.4120 +1033 143689 0.4030 +1033 147841 0.4220 +1033 150468 0.5410 +1033 157313 0.5630 +1033 220134 0.4990 +1033 221150 0.4650 +1033 259266 0.8540 +1033 387103 0.6790 +1033 440093 0.6510 +1033 440686 0.6510 +1033 494551 0.5380 +1033 653604 0.6510 +1036 1491 0.9740 +1036 2571 0.9320 +1036 2572 0.9310 +1036 2729 0.8480 +1036 2730 0.8570 +1036 2805 0.9400 +1036 2806 0.9330 +1036 3735 0.4280 +1036 4143 0.4340 +1036 4357 0.5640 +1036 4548 0.4370 +1036 4602 0.4990 +1036 6422 0.5430 +1036 6533 0.5810 +1036 6821 0.7100 +1036 6950 0.4860 +1036 7203 0.4370 +1036 7263 0.5380 +1036 7296 0.6120 +1036 9140 0.5170 +1036 10574 0.4360 +1036 10575 0.4260 +1036 10576 0.4380 +1036 10694 0.4490 +1036 10801 0.4370 +1036 11073 0.4240 +1036 22948 0.4440 +1036 23474 0.6080 +1036 25893 0.5210 +1036 25927 0.4700 +1036 27232 0.4150 +1036 51056 0.8040 +1036 51380 0.9840 +1036 55253 0.4760 +1036 55422 0.5590 +1036 56267 0.9070 +1036 58472 0.5130 +1036 65982 0.6860 +1036 79017 0.8010 +1036 79575 0.4300 +1036 79717 0.8000 +1036 79901 0.4060 +1036 84890 0.9860 +1036 137362 0.9200 +1036 339896 0.9760 +1036 441061 0.4160 +1039 1238 0.4120 +1039 1241 0.5270 +1039 1843 0.6100 +1039 1847 0.6710 +1039 1850 0.5050 +1039 2053 0.4260 +1039 2217 0.4330 +1039 2556 0.4930 +1039 2562 0.4470 +1039 3105 0.4300 +1039 3123 0.4080 +1039 3321 0.5020 +1039 3700 0.7710 +1039 3895 0.7040 +1039 3897 0.4590 +1039 4609 0.8720 +1039 4761 0.4110 +1039 5585 0.4120 +1039 6397 0.4270 +1039 6658 0.4370 +1039 6792 0.4890 +1039 7465 0.7190 +1039 9024 0.5710 +1039 10214 0.4510 +1039 10488 0.5560 +1039 10673 0.4350 +1039 11120 0.5630 +1039 11345 0.4240 +1039 30816 0.4180 +1039 30850 0.7970 +1039 51430 0.6170 +1039 55072 0.4140 +1039 55095 0.4490 +1039 55763 0.5570 +1039 57379 0.4240 +1039 80256 0.4220 +1039 84260 0.6280 +1039 84446 0.7780 +1039 112942 0.4300 +1039 201725 0.6860 +1039 390714 0.4910 +1039 100423062 0.5930 +1039 102723407 0.7150 +1040 1606 0.6990 +1040 1607 0.6990 +1040 1608 0.6990 +1040 1609 0.7060 +1040 2194 0.4590 +1040 5158 0.4460 +1040 5337 0.9540 +1040 5338 0.9510 +1040 6010 0.5920 +1040 6121 0.5250 +1040 6901 0.4360 +1040 8525 0.6920 +1040 8526 0.7240 +1040 8527 0.6580 +1040 8612 0.9470 +1040 8613 0.9370 +1040 8760 0.9610 +1040 9162 0.7120 +1040 9489 0.9920 +1040 9663 0.9190 +1040 10390 0.4010 +1040 10400 0.5210 +1040 10423 0.9880 +1040 10535 0.6160 +1040 10554 0.9690 +1040 10555 0.9630 +1040 23175 0.9250 +1040 23646 0.9000 +1040 23761 0.5670 +1040 27235 0.8700 +1040 54675 0.9850 +1040 55326 0.9380 +1040 56894 0.9380 +1040 56895 0.9300 +1040 56994 0.4140 +1040 64900 0.9190 +1040 84513 0.9050 +1040 85465 0.5130 +1040 114569 0.4240 +1040 122618 0.9000 +1040 129642 0.9450 +1040 132001 0.9850 +1040 137964 0.4450 +1040 139189 0.6580 +1040 143662 0.5080 +1040 154141 0.9030 +1040 160851 0.6740 +1040 196051 0.9050 +1040 201164 0.4900 +1040 253558 0.9360 +1040 254531 0.4360 +1040 353500 0.5710 +1040 388531 0.4300 +1041 1475 0.7080 +1041 1823 0.9970 +1041 1824 0.4510 +1041 1825 0.6730 +1041 1828 0.9950 +1041 1830 0.6000 +1041 1832 0.5140 +1041 2121 0.4160 +1041 2125 0.7020 +1041 2312 0.7370 +1041 2794 0.4480 +1041 2968 0.4290 +1041 3105 0.4890 +1041 3106 0.5950 +1041 3107 0.8450 +1041 3713 0.8100 +1041 3848 0.6990 +1041 3849 0.5220 +1041 3853 0.5080 +1041 3858 0.6870 +1041 3868 0.5930 +1041 3872 0.5040 +1041 4014 0.9330 +1041 5266 0.6280 +1041 5317 0.6310 +1041 5460 0.4600 +1041 5493 0.7010 +1041 5650 0.8760 +1041 5653 0.7480 +1041 6278 0.5090 +1041 6635 0.4350 +1041 6698 0.6920 +1041 6699 0.7450 +1041 6700 0.6570 +1041 6701 0.7540 +1041 6703 0.6750 +1041 6704 0.6810 +1041 6705 0.5690 +1041 6706 0.8310 +1041 6707 0.6590 +1041 6941 0.6460 +1041 7051 0.8000 +1041 7053 0.7110 +1041 7062 0.6160 +1041 7726 0.4110 +1041 8796 0.4940 +1041 9333 0.7570 +1041 9622 0.6390 +1041 10161 0.5030 +1041 10786 0.4330 +1041 11005 0.7400 +1041 22915 0.4240 +1041 23581 0.7990 +1041 25818 0.6660 +1041 26154 0.4410 +1041 26191 0.4610 +1041 26239 0.8730 +1041 26525 0.4450 +1041 29113 0.4490 +1041 43847 0.5510 +1041 54535 0.9210 +1041 54901 0.4910 +1041 55165 0.4340 +1041 57176 0.4710 +1041 59272 0.6250 +1041 59344 0.5390 +1041 64377 0.4410 +1041 79092 0.6520 +1041 79574 0.4080 +1041 80332 0.4930 +1041 80352 0.5390 +1041 80724 0.4330 +1041 80740 0.4040 +1041 84283 0.4110 +1041 84518 0.4220 +1041 84648 0.8370 +1041 93099 0.4770 +1041 126295 0.4070 +1041 126638 0.6230 +1041 135644 0.4440 +1041 144501 0.5660 +1041 145264 0.4560 +1041 147409 0.6960 +1041 147495 0.6400 +1041 149018 0.5480 +1041 163778 0.4940 +1041 170679 0.9460 +1041 170680 0.7390 +1041 199834 0.4990 +1041 222696 0.4950 +1041 254910 0.5800 +1041 283450 0.4180 +1041 353131 0.6800 +1041 353132 0.6800 +1041 353133 0.6720 +1041 353134 0.7050 +1041 353135 0.6220 +1041 353137 0.6690 +1041 353139 0.6270 +1041 353140 0.6630 +1041 353141 0.6860 +1041 353142 0.6480 +1041 353143 0.6960 +1041 353144 0.7110 +1041 353145 0.7930 +1041 374897 0.4520 +1041 388533 0.6650 +1041 388698 0.7900 +1041 448835 0.6600 +1041 100507679 0.4280 +1043 1048 0.5080 +1043 1230 0.4530 +1043 1234 0.4640 +1043 1236 0.5620 +1043 1436 0.5340 +1043 1493 0.5710 +1043 1520 0.4770 +1043 1723 0.4250 +1043 1731 0.5200 +1043 1791 0.4160 +1043 1880 0.4430 +1043 2124 0.5220 +1043 2207 0.5470 +1043 2208 0.4010 +1043 2213 0.6080 +1043 2268 0.4160 +1043 2533 0.4220 +1043 3001 0.5960 +1043 3002 0.4840 +1043 3003 0.5590 +1043 3059 0.4270 +1043 3108 0.4530 +1043 3113 0.4320 +1043 3122 0.4510 +1043 3123 0.4210 +1043 3394 0.4490 +1043 3456 0.4750 +1043 3458 0.4720 +1043 3553 0.4070 +1043 3558 0.5030 +1043 3559 0.6410 +1043 3561 0.5270 +1043 3563 0.4450 +1043 3575 0.6610 +1043 3586 0.6280 +1043 3587 0.5170 +1043 3600 0.4150 +1043 3683 0.5230 +1043 3684 0.4470 +1043 3687 0.4330 +1043 3689 0.5880 +1043 3702 0.6530 +1043 3820 0.5310 +1043 3937 0.4150 +1043 4050 0.4460 +1043 4068 0.4240 +1043 4283 0.4650 +1043 4332 0.4010 +1043 4684 0.4460 +1043 4689 0.4670 +1043 4818 0.5480 +1043 5098 0.4460 +1043 5133 0.4440 +1043 5341 0.4240 +1043 5551 0.4970 +1043 5788 0.7200 +1043 5790 0.5240 +1043 6402 0.5420 +1043 6404 0.4090 +1043 6693 0.4330 +1043 7124 0.4900 +1043 7305 0.6260 +1043 7512 0.4280 +1043 7535 0.5070 +1043 7805 0.5900 +1043 7852 0.4370 +1043 8115 0.4070 +1043 8530 0.4170 +1043 8698 0.4150 +1043 8832 0.4280 +1043 9332 0.4780 +1043 9398 0.4590 +1043 9450 0.6030 +1043 9535 0.5150 +1043 9595 0.4870 +1043 10225 0.4210 +1043 10320 0.6560 +1043 10673 0.5020 +1043 10870 0.6050 +1043 11151 0.5450 +1043 11314 0.4640 +1043 27240 0.4220 +1043 29126 0.4450 +1043 29851 0.4750 +1043 50943 0.4240 +1043 51284 0.5000 +1043 51311 0.4700 +1043 54440 0.5530 +1043 57823 0.4570 +1043 64926 0.4200 +1043 80321 0.4180 +1043 80342 0.5010 +1043 81623 0.5060 +1043 84868 0.6090 +1043 89790 0.8820 +1043 160364 0.4540 +1043 257106 0.4020 +1043 374403 0.4890 +1043 102723407 0.4330 +1044 1045 0.6410 +1044 1365 0.5780 +1044 1436 0.5080 +1044 1499 0.4770 +1044 1836 0.5450 +1044 2626 0.4680 +1044 2878 0.4060 +1044 3170 0.6410 +1044 3172 0.4580 +1044 3340 0.5900 +1044 4081 0.4220 +1044 4211 0.4060 +1044 5159 0.5250 +1044 5460 0.4570 +1044 6208 0.5230 +1044 6657 0.5670 +1044 6927 0.6180 +1044 6949 0.6700 +1044 7032 0.4140 +1044 7033 0.5550 +1044 8313 0.4820 +1044 8549 0.4160 +1044 9075 0.6130 +1044 9076 0.4650 +1044 10265 0.4130 +1044 26122 0.4610 +1044 51176 0.7040 +1044 54474 0.4700 +1044 79574 0.4040 +1044 83998 0.4760 +1044 157506 0.4090 +1044 343930 0.4440 +1044 359948 0.4470 +1045 1048 0.6790 +1045 1113 0.6500 +1045 1365 0.5520 +1045 1499 0.6280 +1045 1786 0.4260 +1045 1950 0.4080 +1045 1956 0.5060 +1045 2001 0.7890 +1045 2026 0.4300 +1045 2033 0.4230 +1045 2064 0.5070 +1045 2099 0.4850 +1045 2103 0.7700 +1045 2114 0.4190 +1045 2146 0.4390 +1045 2247 0.4750 +1045 2249 0.7240 +1045 2250 0.5060 +1045 2253 0.4230 +1045 2255 0.4160 +1045 2263 0.4200 +1045 2520 0.4500 +1045 2547 0.5030 +1045 2597 0.4630 +1045 2624 0.4930 +1045 2625 0.7920 +1045 2626 0.6950 +1045 2627 0.8940 +1045 2641 0.8310 +1045 2719 0.4790 +1045 2932 0.4980 +1045 2956 0.5320 +1045 2984 0.5020 +1045 3091 0.4110 +1045 3169 0.7630 +1045 3170 0.8130 +1045 3171 0.4320 +1045 3172 0.6080 +1045 3549 0.4430 +1045 3670 0.7090 +1045 3815 0.4360 +1045 3845 0.5870 +1045 3852 0.6260 +1045 3855 0.8870 +1045 3856 0.5670 +1045 3875 0.4540 +1045 3880 0.6150 +1045 3938 0.6380 +1045 3976 0.4250 +1045 4072 0.5000 +1045 4089 0.6320 +1045 4224 0.5200 +1045 4292 0.5710 +1045 4311 0.5430 +1045 4436 0.5210 +1045 4586 0.7320 +1045 4588 0.7720 +1045 4609 0.4790 +1045 4684 0.5080 +1045 4790 0.6230 +1045 4838 0.4230 +1045 5046 0.4610 +1045 5080 0.6350 +1045 5087 0.5810 +1045 5241 0.4810 +1045 5304 0.6640 +1045 5395 0.6910 +1045 5456 0.5160 +1045 5460 0.9230 +1045 5593 0.4120 +1045 5728 0.6310 +1045 5959 0.5010 +1045 5970 0.5610 +1045 6595 0.4630 +1045 6597 0.5640 +1045 6598 0.5090 +1045 6656 0.4580 +1045 6657 0.8660 +1045 6662 0.5120 +1045 6855 0.7010 +1045 6862 0.4280 +1045 6911 0.4930 +1045 6926 0.4890 +1045 6927 0.8330 +1045 6928 0.6100 +1045 6997 0.4120 +1045 7004 0.8080 +1045 7022 0.5670 +1045 7032 0.4870 +1045 7033 0.5150 +1045 7157 0.6030 +1045 7364 0.5200 +1045 7429 0.5600 +1045 7473 0.4170 +1045 7490 0.5830 +1045 7849 0.7200 +1045 8313 0.4450 +1045 8320 0.7990 +1045 8433 0.4130 +1045 8521 0.6230 +1045 8549 0.5630 +1045 8554 0.4290 +1045 9075 0.6160 +1045 9241 0.5490 +1045 9314 0.6180 +1045 9476 0.7200 +1045 10170 0.5230 +1045 10413 0.5420 +1045 10562 0.4750 +1045 10568 0.4030 +1045 10637 0.4670 +1045 10763 0.4060 +1045 10765 0.5750 +1045 11166 0.5910 +1045 23314 0.6280 +1045 23600 0.5140 +1045 26007 0.4160 +1045 27022 0.5540 +1045 29842 0.4080 +1045 29947 0.4480 +1045 50674 0.4030 +1045 51208 0.4130 +1045 53841 0.4650 +1045 54474 0.9240 +1045 55294 0.4260 +1045 56987 0.4110 +1045 57167 0.5930 +1045 57862 0.5860 +1045 63978 0.6280 +1045 64321 0.7930 +1045 79727 0.4170 +1045 79923 0.5590 +1045 83595 0.4830 +1045 83881 0.5260 +1045 83998 0.4480 +1045 85407 0.4620 +1045 89780 0.5550 +1045 92312 0.6320 +1045 132625 0.4490 +1045 140628 0.4110 +1045 154796 0.4060 +1045 200931 0.4160 +1045 256297 0.5860 +1045 399664 0.4120 +1045 400566 0.9040 +1045 642623 0.6250 +1046 2249 0.5010 +1046 2253 0.4560 +1046 3670 0.5800 +1046 4005 0.4710 +1046 4211 0.4180 +1046 4673 0.7620 +1046 4674 0.8680 +1046 5565 0.4220 +1046 6567 0.5090 +1046 6862 0.4180 +1046 6908 0.4170 +1046 6911 0.4880 +1046 51132 0.4110 +1046 51334 0.4140 +1046 53344 0.5950 +1046 63947 0.4180 +1046 84690 0.4070 +1046 84889 0.4450 +1046 387332 0.9110 +1047 1315 0.4040 +1047 1937 0.4040 +1047 2058 0.4960 +1047 2515 0.9720 +1047 2531 0.4900 +1047 2548 0.4060 +1047 2923 0.6520 +1047 3301 0.4390 +1047 3309 0.8090 +1047 5034 0.4040 +1047 5245 0.5090 +1047 5479 0.5550 +1047 6184 0.5290 +1047 6185 0.6120 +1047 6954 0.4100 +1047 7095 0.4170 +1047 7184 0.8410 +1047 7841 0.6760 +1047 9343 0.9050 +1047 9601 0.4030 +1047 10525 0.4850 +1047 10728 0.6020 +1047 10952 0.4530 +1047 11079 0.4230 +1047 11231 0.4530 +1047 22824 0.4460 +1047 23193 0.6470 +1047 29927 0.4950 +1047 53340 0.4100 +1047 54742 0.4540 +1047 55757 0.4470 +1047 56886 0.5810 +1047 64518 0.4470 +1047 80055 0.5450 +1047 81623 0.4850 +1047 83639 0.4850 +1047 125972 0.6840 +1047 127579 0.4720 +1047 136242 0.4360 +1047 203074 0.4020 +1047 204474 0.6930 +1047 219670 0.4430 +1047 255220 0.4080 +1047 284359 0.5590 +1047 338879 0.4770 +1047 339416 0.6750 +1048 1084 0.4210 +1048 1087 0.6580 +1048 1113 0.7230 +1048 1368 0.4060 +1048 1401 0.7690 +1048 1437 0.4800 +1048 1485 0.5290 +1048 1493 0.5120 +1048 1499 0.4800 +1048 1803 0.5110 +1048 1950 0.4440 +1048 1956 0.7200 +1048 1999 0.4960 +1048 2026 0.9190 +1048 2064 0.7680 +1048 2086 0.5830 +1048 2099 0.6010 +1048 2147 0.6540 +1048 2152 0.4480 +1048 2202 0.4130 +1048 2217 0.5900 +1048 2335 0.6570 +1048 2346 0.6110 +1048 2348 0.5430 +1048 2350 0.6280 +1048 2352 0.4070 +1048 2520 0.4830 +1048 2526 0.4140 +1048 2719 0.6030 +1048 2778 0.5140 +1048 2813 0.5440 +1048 2822 0.5140 +1048 2875 0.7280 +1048 2922 0.7050 +1048 2947 0.4050 +1048 2956 0.4350 +1048 3105 0.6490 +1048 3240 0.4260 +1048 3309 0.4150 +1048 3383 0.6320 +1048 3458 0.6970 +1048 3558 0.6940 +1048 3569 0.5250 +1048 3576 0.4260 +1048 3586 0.4130 +1048 3630 0.4830 +1048 3815 0.5080 +1048 3845 0.7170 +1048 3852 0.7530 +1048 3855 0.8830 +1048 3856 0.5280 +1048 3875 0.4930 +1048 3880 0.8770 +1048 3902 0.4080 +1048 3958 0.7170 +1048 3959 0.4150 +1048 3965 0.4040 +1048 4045 0.4570 +1048 4061 0.4170 +1048 4072 0.7570 +1048 4089 0.4230 +1048 4102 0.4790 +1048 4151 0.4110 +1048 4233 0.4990 +1048 4241 0.4110 +1048 4254 0.4890 +1048 4267 0.4470 +1048 4282 0.4990 +1048 4292 0.4870 +1048 4311 0.5720 +1048 4318 0.4090 +1048 4436 0.4730 +1048 4585 0.4660 +1048 4586 0.6300 +1048 4588 0.5420 +1048 4609 0.4040 +1048 4680 0.7100 +1048 4684 0.4080 +1048 4893 0.4740 +1048 4915 0.4410 +1048 4978 0.6550 +1048 5009 0.4650 +1048 5133 0.4730 +1048 5214 0.4290 +1048 5241 0.6230 +1048 5265 0.6930 +1048 5266 0.4410 +1048 5268 0.6020 +1048 5284 0.5610 +1048 5290 0.4490 +1048 5304 0.6990 +1048 5315 0.4870 +1048 5364 0.4110 +1048 5395 0.4370 +1048 5420 0.4970 +1048 5443 0.4290 +1048 5657 0.4500 +1048 5734 0.5090 +1048 5788 0.4340 +1048 5979 0.5460 +1048 6098 0.4030 +1048 6401 0.6650 +1048 6402 0.6610 +1048 6490 0.4790 +1048 6528 0.4480 +1048 6750 0.4820 +1048 6855 0.7010 +1048 6975 0.5450 +1048 7015 0.4330 +1048 7031 0.4260 +1048 7037 0.4980 +1048 7038 0.6590 +1048 7056 0.4050 +1048 7070 0.6600 +1048 7080 0.6970 +1048 7084 0.4300 +1048 7104 0.4210 +1048 7124 0.4530 +1048 7157 0.6910 +1048 7162 0.4360 +1048 7276 0.4180 +1048 7299 0.4170 +1048 7490 0.5410 +1048 7849 0.5060 +1048 8000 0.7100 +1048 8140 0.5130 +1048 8399 0.4060 +1048 8434 0.4330 +1048 8549 0.4540 +1048 8581 0.4050 +1048 8766 0.4510 +1048 8842 0.4040 +1048 8875 0.4150 +1048 8876 0.4690 +1048 9230 0.5080 +1048 9476 0.5970 +1048 9482 0.4260 +1048 10232 0.7910 +1048 10397 0.4700 +1048 10406 0.6090 +1048 10551 0.4260 +1048 10562 0.4760 +1048 10630 0.4340 +1048 10801 0.5050 +1048 10942 0.4530 +1048 11047 0.5480 +1048 11074 0.4830 +1048 22854 0.4420 +1048 23650 0.4750 +1048 23673 0.4930 +1048 23705 0.7330 +1048 26276 0.6740 +1048 27037 0.5930 +1048 27076 0.4460 +1048 27238 0.4470 +1048 29126 0.6150 +1048 30816 0.5830 +1048 30835 0.9160 +1048 50863 0.6600 +1048 53942 0.4050 +1048 54363 0.4130 +1048 54474 0.8690 +1048 54742 0.4880 +1048 58530 0.4020 +1048 63894 0.6500 +1048 65082 0.5440 +1048 80321 0.6020 +1048 80328 0.5180 +1048 80740 0.4050 +1048 83639 0.4080 +1048 84329 0.4790 +1048 84628 0.4320 +1048 84706 0.5690 +1048 84868 0.6660 +1048 94025 0.5230 +1048 130576 0.4040 +1048 135228 0.4450 +1048 146760 0.4370 +1048 154064 0.4640 +1048 171169 0.4200 +1048 257194 0.4530 +1048 266727 0.4530 +1048 284194 0.4020 +1048 285782 0.4790 +1048 349667 0.4370 +1048 353091 0.4550 +1048 360226 0.4530 +1048 390243 0.6220 +1048 400566 0.7880 +1048 405754 0.5830 +1048 646627 0.4090 +1048 654346 0.4120 +1050 1051 0.9900 +1050 1052 0.7010 +1050 1053 0.8930 +1050 1054 0.7330 +1050 1149 0.5570 +1050 1316 0.4330 +1050 1327 0.5660 +1050 1329 0.5630 +1050 1337 0.4660 +1050 1339 0.4780 +1050 1340 0.4440 +1050 1350 0.5530 +1050 1374 0.4170 +1050 1385 0.8310 +1050 1386 0.5010 +1050 1387 0.7110 +1050 1435 0.5780 +1050 1436 0.5670 +1050 1437 0.4160 +1050 1440 0.6640 +1050 1441 0.9360 +1050 1487 0.5460 +1050 1488 0.5490 +1050 1499 0.7330 +1050 1537 0.4230 +1050 1616 0.4530 +1050 1628 0.4330 +1050 1649 0.9430 +1050 1675 0.6600 +1050 1728 0.5090 +1050 1786 0.6790 +1050 1788 0.7180 +1050 1869 0.9130 +1050 1874 0.6340 +1050 1879 0.8760 +1050 1952 0.5070 +1050 1958 0.4800 +1050 1959 0.4720 +1050 2033 0.9020 +1050 2068 0.4140 +1050 2099 0.6060 +1050 2113 0.8060 +1050 2114 0.4280 +1050 2120 0.7190 +1050 2122 0.6600 +1050 2146 0.5780 +1050 2167 0.9140 +1050 2180 0.4380 +1050 2194 0.6390 +1050 2296 0.4400 +1050 2305 0.5680 +1050 2308 0.9750 +1050 2309 0.6690 +1050 2313 0.5250 +1050 2322 0.9810 +1050 2353 0.8590 +1050 2355 0.6670 +1050 2494 0.4100 +1050 2538 0.6010 +1050 2547 0.6310 +1050 2597 0.5940 +1050 2623 0.8300 +1050 2624 0.9390 +1050 2625 0.7160 +1050 2626 0.4280 +1050 2627 0.4270 +1050 2672 0.8990 +1050 2806 0.5210 +1050 2833 0.4710 +1050 2875 0.4190 +1050 2908 0.7580 +1050 2932 0.4800 +1050 2959 0.6130 +1050 3012 0.5010 +1050 3013 0.5010 +1050 3014 0.5480 +1050 3015 0.5620 +1050 3017 0.5200 +1050 3018 0.5200 +1050 3021 0.7370 +1050 3065 0.9390 +1050 3066 0.6820 +1050 3091 0.8260 +1050 3097 0.6490 +1050 3169 0.8040 +1050 3170 0.7150 +1050 3171 0.6180 +1050 3172 0.8280 +1050 3175 0.7280 +1050 3176 0.5320 +1050 3205 0.4910 +1050 3394 0.6110 +1050 3417 0.7100 +1050 3418 0.6730 +1050 3458 0.4060 +1050 3479 0.4450 +1050 3553 0.5230 +1050 3562 0.4470 +1050 3569 0.7390 +1050 3570 0.8090 +1050 3576 0.6080 +1050 3586 0.5480 +1050 3630 0.8110 +1050 3659 0.5350 +1050 3667 0.5090 +1050 3684 0.5500 +1050 3717 0.5500 +1050 3725 0.8860 +1050 3726 0.4270 +1050 3727 0.5290 +1050 3815 0.6910 +1050 3845 0.5230 +1050 3950 0.5300 +1050 3952 0.9430 +1050 3960 0.4530 +1050 3991 0.6910 +1050 4005 0.6380 +1050 4023 0.7250 +1050 4057 0.4960 +1050 4066 0.6080 +1050 4087 0.5980 +1050 4088 0.8820 +1050 4089 0.6430 +1050 4094 0.5830 +1050 4145 0.4670 +1050 4208 0.4240 +1050 4211 0.5190 +1050 4297 0.5200 +1050 4300 0.5070 +1050 4353 0.4580 +1050 4488 0.6500 +1050 4502 0.5280 +1050 4513 0.6330 +1050 4514 0.4750 +1050 4602 0.7290 +1050 4605 0.4720 +1050 4609 0.9040 +1050 4617 0.4690 +1050 4629 0.5880 +1050 4654 0.5290 +1050 4656 0.4020 +1050 4763 0.4940 +1050 4774 0.4980 +1050 4776 0.4120 +1050 4778 0.4250 +1050 4781 0.5810 +1050 4790 0.6080 +1050 4802 0.4690 +1050 4851 0.4660 +1050 4869 0.8130 +1050 4893 0.6210 +1050 5079 0.6980 +1050 5087 0.4210 +1050 5094 0.9250 +1050 5106 0.4060 +1050 5156 0.4030 +1050 5328 0.4590 +1050 5346 0.7230 +1050 5371 0.5570 +1050 5460 0.4560 +1050 5465 0.6850 +1050 5467 0.4970 +1050 5468 0.9910 +1050 5469 0.6050 +1050 5566 0.5560 +1050 5567 0.5550 +1050 5568 0.5480 +1050 5595 0.4930 +1050 5599 0.6620 +1050 5688 0.4230 +1050 5716 0.8020 +1050 5728 0.4630 +1050 5781 0.5340 +1050 5788 0.5130 +1050 5885 0.4890 +1050 5914 0.9090 +1050 5915 0.4350 +1050 5925 0.4360 +1050 5970 0.6110 +1050 6256 0.7730 +1050 6272 0.4770 +1050 6304 0.5290 +1050 6319 0.5980 +1050 6347 0.4450 +1050 6390 0.4010 +1050 6391 0.4840 +1050 6427 0.5980 +1050 6495 0.4780 +1050 6502 0.6100 +1050 6517 0.9220 +1050 6595 0.7580 +1050 6597 0.5050 +1050 6603 0.4760 +1050 6657 0.6560 +1050 6662 0.6900 +1050 6667 0.4070 +1050 6688 0.9900 +1050 6694 0.4400 +1050 6720 0.8040 +1050 6721 0.4850 +1050 6772 0.4710 +1050 6774 0.8750 +1050 6776 0.5420 +1050 6777 0.5210 +1050 6778 0.4020 +1050 6837 0.5030 +1050 6877 0.4350 +1050 6886 0.8210 +1050 6908 0.6670 +1050 6927 0.5740 +1050 6929 0.6430 +1050 6932 0.5460 +1050 6934 0.6590 +1050 7027 0.6210 +1050 7029 0.5500 +1050 7040 0.8500 +1050 7099 0.4440 +1050 7110 0.4240 +1050 7124 0.9260 +1050 7157 0.9300 +1050 7307 0.6300 +1050 7350 0.6960 +1050 7351 0.4230 +1050 7381 0.4840 +1050 7385 0.4720 +1050 7391 0.5260 +1050 7392 0.5420 +1050 7403 0.4250 +1050 7471 0.8220 +1050 7480 0.8910 +1050 7490 0.6850 +1050 7494 0.4940 +1050 7528 0.5130 +1050 7704 0.5210 +1050 7837 0.4500 +1050 7913 0.6780 +1050 8061 0.6830 +1050 8202 0.7030 +1050 8233 0.6000 +1050 8243 0.4180 +1050 8290 0.4900 +1050 8328 0.4430 +1050 8331 0.5010 +1050 8334 0.5010 +1050 8337 0.5770 +1050 8338 0.5760 +1050 8340 0.5160 +1050 8341 0.5170 +1050 8342 0.5160 +1050 8345 0.5180 +1050 8347 0.5200 +1050 8348 0.5160 +1050 8349 0.5890 +1050 8356 0.7360 +1050 8361 0.7140 +1050 8431 0.5840 +1050 8648 0.6380 +1050 8694 0.5660 +1050 8788 0.5510 +1050 8841 0.6350 +1050 8856 0.5530 +1050 8864 0.9290 +1050 8870 0.5310 +1050 8876 0.4710 +1050 8970 0.5260 +1050 9112 0.4370 +1050 9126 0.4160 +1050 9282 0.5320 +1050 9314 0.5870 +1050 9370 0.9420 +1050 9377 0.6210 +1050 9412 0.5080 +1050 9439 0.5500 +1050 9440 0.4990 +1050 9441 0.4990 +1050 9442 0.5270 +1050 9443 0.5210 +1050 9477 0.4990 +1050 9611 0.7800 +1050 9612 0.6460 +1050 9839 0.4220 +1050 9862 0.5000 +1050 9935 0.4940 +1050 9967 0.5160 +1050 9968 0.5720 +1050 9969 0.5330 +1050 9971 0.4550 +1050 10001 0.5060 +1050 10019 0.4010 +1050 10025 0.5070 +1050 10047 0.4970 +1050 10062 0.4810 +1050 10220 0.4940 +1050 10221 0.9490 +1050 10318 0.4050 +1050 10320 0.5730 +1050 10365 0.4670 +1050 10413 0.5380 +1050 10499 0.6640 +1050 10524 0.7450 +1050 10538 0.5660 +1050 10555 0.5060 +1050 10661 0.4780 +1050 10664 0.6790 +1050 10735 0.5700 +1050 10891 0.8590 +1050 22809 0.7030 +1050 22852 0.4920 +1050 22926 0.4200 +1050 23028 0.4300 +1050 23054 0.4160 +1050 23090 0.5660 +1050 23097 0.5320 +1050 23175 0.4470 +1050 23389 0.4990 +1050 23411 0.7130 +1050 23414 0.4020 +1050 23468 0.7890 +1050 23476 0.6120 +1050 25902 0.4910 +1050 26040 0.5860 +1050 26150 0.4320 +1050 27063 0.4390 +1050 27089 0.4350 +1050 27159 0.4170 +1050 28951 0.5990 +1050 28999 0.5060 +1050 29079 0.4990 +1050 29796 0.4730 +1050 51003 0.5030 +1050 51085 0.4750 +1050 51176 0.8620 +1050 51274 0.4100 +1050 51428 0.4720 +1050 51441 0.5760 +1050 51547 0.4600 +1050 51586 0.5150 +1050 54145 0.5180 +1050 54790 0.7180 +1050 54797 0.4990 +1050 55090 0.4990 +1050 55294 0.4410 +1050 55588 0.4990 +1050 55766 0.5020 +1050 56729 0.5630 +1050 57104 0.6450 +1050 57761 0.4880 +1050 57817 0.5850 +1050 57818 0.5580 +1050 63035 0.4600 +1050 63924 0.4360 +1050 63976 0.7700 +1050 64318 0.5780 +1050 64783 0.4800 +1050 79002 0.4430 +1050 79068 0.6000 +1050 79365 0.4100 +1050 79870 0.5770 +1050 79923 0.4230 +1050 80306 0.4990 +1050 81857 0.5030 +1050 83401 0.4030 +1050 83881 0.4800 +1050 84246 0.5380 +1050 84295 0.5940 +1050 84498 0.5140 +1050 84649 0.5320 +1050 84666 0.5180 +1050 84701 0.5390 +1050 84722 0.5520 +1050 84886 0.5330 +1050 84960 0.4250 +1050 85236 0.5160 +1050 85441 0.5230 +1050 90390 0.4990 +1050 92579 0.6010 +1050 94239 0.4990 +1050 112950 0.5130 +1050 121340 0.5100 +1050 125965 0.4430 +1050 128312 0.5180 +1050 133522 0.4160 +1050 137902 0.4500 +1050 150709 0.4180 +1050 161882 0.6140 +1050 171023 0.7210 +1050 201161 0.5760 +1050 255626 0.5200 +1050 283459 0.4650 +1050 388753 0.4420 +1050 400569 0.5190 +1050 440093 0.4730 +1050 440686 0.4830 +1050 474382 0.5010 +1050 653604 0.7350 +1051 1052 0.9940 +1051 1054 0.9710 +1051 1116 0.4350 +1051 1118 0.4100 +1051 1149 0.5200 +1051 1316 0.6320 +1051 1327 0.5630 +1051 1329 0.5750 +1051 1337 0.4870 +1051 1339 0.4980 +1051 1340 0.4470 +1051 1350 0.5450 +1051 1385 0.9630 +1051 1386 0.5980 +1051 1387 0.8800 +1051 1390 0.4060 +1051 1432 0.9610 +1051 1435 0.4510 +1051 1436 0.4270 +1051 1437 0.4710 +1051 1440 0.5080 +1051 1441 0.4080 +1051 1446 0.4270 +1051 1453 0.4710 +1051 1499 0.5070 +1051 1537 0.4320 +1051 1583 0.4260 +1051 1612 0.5550 +1051 1616 0.5670 +1051 1649 0.9940 +1051 1675 0.4040 +1051 1820 0.4690 +1051 1843 0.4650 +1051 1869 0.8200 +1051 1874 0.7730 +1051 1879 0.8520 +1051 1950 0.6160 +1051 1956 0.5540 +1051 1958 0.8850 +1051 1959 0.8770 +1051 1965 0.6530 +1051 1968 0.5020 +1051 1994 0.5640 +1051 2033 0.9960 +1051 2081 0.4020 +1051 2099 0.9080 +1051 2113 0.4860 +1051 2114 0.4280 +1051 2122 0.5310 +1051 2146 0.5650 +1051 2167 0.8320 +1051 2173 0.4080 +1051 2194 0.4810 +1051 2263 0.4870 +1051 2290 0.5960 +1051 2308 0.9430 +1051 2309 0.6870 +1051 2335 0.5400 +1051 2353 0.8190 +1051 2354 0.4610 +1051 2355 0.7750 +1051 2475 0.4390 +1051 2597 0.5820 +1051 2623 0.6920 +1051 2624 0.7190 +1051 2625 0.7080 +1051 2626 0.5940 +1051 2648 0.6820 +1051 2672 0.4250 +1051 2872 0.4050 +1051 2908 0.8860 +1051 2919 0.5030 +1051 2920 0.4320 +1051 2932 0.6030 +1051 2959 0.5790 +1051 3021 0.4750 +1051 3065 0.9910 +1051 3091 0.5460 +1051 3134 0.4170 +1051 3159 0.4620 +1051 3162 0.4320 +1051 3164 0.6270 +1051 3169 0.5030 +1051 3170 0.6520 +1051 3172 0.5110 +1051 3297 0.4200 +1051 3320 0.4950 +1051 3383 0.4040 +1051 3394 0.7090 +1051 3458 0.5470 +1051 3460 0.4910 +1051 3479 0.4480 +1051 3552 0.5720 +1051 3553 0.6990 +1051 3565 0.4790 +1051 3569 0.8960 +1051 3576 0.8420 +1051 3586 0.5380 +1051 3589 0.5330 +1051 3596 0.4610 +1051 3605 0.4470 +1051 3630 0.7670 +1051 3654 0.4340 +1051 3656 0.5140 +1051 3659 0.7210 +1051 3660 0.5830 +1051 3662 0.7470 +1051 3665 0.6080 +1051 3667 0.4040 +1051 3684 0.4810 +1051 3717 0.4420 +1051 3720 0.4180 +1051 3725 0.9270 +1051 3726 0.6200 +1051 3727 0.8520 +1051 3952 0.5900 +1051 3958 0.5390 +1051 3991 0.5150 +1051 4023 0.5520 +1051 4087 0.6260 +1051 4088 0.9590 +1051 4089 0.9280 +1051 4094 0.4560 +1051 4170 0.4300 +1051 4205 0.5420 +1051 4208 0.4040 +1051 4261 0.9150 +1051 4318 0.4830 +1051 4513 0.6200 +1051 4514 0.4940 +1051 4602 0.9800 +1051 4609 0.9580 +1051 4616 0.4480 +1051 4617 0.4700 +1051 4654 0.4680 +1051 4774 0.4100 +1051 4780 0.4670 +1051 4782 0.5110 +1051 4783 0.7080 +1051 4790 0.9040 +1051 4792 0.7440 +1051 4843 0.4060 +1051 4869 0.8030 +1051 4899 0.4090 +1051 4901 0.4260 +1051 5079 0.4160 +1051 5080 0.5250 +1051 5133 0.4610 +1051 5241 0.4730 +1051 5243 0.4390 +1051 5346 0.5760 +1051 5465 0.7400 +1051 5467 0.6580 +1051 5468 0.9890 +1051 5469 0.7990 +1051 5530 0.4120 +1051 5566 0.4450 +1051 5567 0.4320 +1051 5568 0.4310 +1051 5579 0.4610 +1051 5594 0.8770 +1051 5595 0.9470 +1051 5600 0.9360 +1051 5601 0.5560 +1051 5603 0.9280 +1051 5663 0.4350 +1051 5669 0.4590 +1051 5670 0.4670 +1051 5676 0.4690 +1051 5728 0.4140 +1051 5743 0.7060 +1051 5795 0.4290 +1051 5914 0.6470 +1051 5915 0.4400 +1051 5925 0.7070 +1051 5927 0.7150 +1051 5966 0.6830 +1051 5970 0.9670 +1051 5971 0.4650 +1051 6095 0.5270 +1051 6195 0.7780 +1051 6196 0.6210 +1051 6197 0.6220 +1051 6256 0.7620 +1051 6300 0.9290 +1051 6319 0.4770 +1051 6347 0.5510 +1051 6348 0.5650 +1051 6390 0.4100 +1051 6391 0.4900 +1051 6495 0.4970 +1051 6517 0.5630 +1051 6595 0.8900 +1051 6597 0.7880 +1051 6598 0.6130 +1051 6599 0.5410 +1051 6601 0.4320 +1051 6657 0.5770 +1051 6662 0.4340 +1051 6667 0.7980 +1051 6670 0.4850 +1051 6688 0.8560 +1051 6714 0.4560 +1051 6720 0.6840 +1051 6721 0.5660 +1051 6722 0.7940 +1051 6770 0.4310 +1051 6772 0.7620 +1051 6774 0.9840 +1051 6776 0.7670 +1051 6777 0.6790 +1051 6778 0.7120 +1051 6837 0.5020 +1051 6839 0.4810 +1051 6886 0.6980 +1051 6908 0.4320 +1051 6927 0.5600 +1051 6938 0.4800 +1051 7004 0.5710 +1051 7025 0.5030 +1051 7026 0.5940 +1051 7027 0.5480 +1051 7029 0.5100 +1051 7040 0.4890 +1051 7090 0.5070 +1051 7097 0.4340 +1051 7099 0.5250 +1051 7124 0.7600 +1051 7128 0.5840 +1051 7130 0.4780 +1051 7132 0.5050 +1051 7157 0.8620 +1051 7189 0.4300 +1051 7316 0.5450 +1051 7321 0.5450 +1051 7324 0.5330 +1051 7341 0.4430 +1051 7350 0.6250 +1051 7381 0.4840 +1051 7385 0.4570 +1051 7391 0.7410 +1051 7392 0.5010 +1051 7494 0.5630 +1051 7528 0.5710 +1051 7538 0.4450 +1051 7702 0.6280 +1051 7837 0.4580 +1051 7975 0.4840 +1051 8061 0.8110 +1051 8140 0.4690 +1051 8202 0.6490 +1051 8290 0.4660 +1051 8356 0.4660 +1051 8361 0.4510 +1051 8553 0.7800 +1051 8626 0.6170 +1051 8648 0.6370 +1051 8651 0.4860 +1051 8697 0.4990 +1051 8767 0.5560 +1051 8788 0.4380 +1051 8815 0.4570 +1051 8841 0.6260 +1051 8850 0.7410 +1051 8881 0.5040 +1051 8894 0.5430 +1051 9021 0.5780 +1051 9126 0.5390 +1051 9213 0.6770 +1051 9221 0.6060 +1051 9282 0.5490 +1051 9314 0.8890 +1051 9370 0.9040 +1051 9377 0.6390 +1051 9412 0.5230 +1051 9439 0.7010 +1051 9440 0.5200 +1051 9441 0.7890 +1051 9442 0.5290 +1051 9443 0.5210 +1051 9477 0.6520 +1051 9512 0.4030 +1051 9582 0.5260 +1051 9611 0.8360 +1051 9612 0.8190 +1051 9641 0.4900 +1051 9734 0.4800 +1051 9759 0.6930 +1051 9774 0.5930 +1051 9862 0.5010 +1051 9935 0.5220 +1051 9967 0.5130 +1051 9968 0.5550 +1051 9969 0.5650 +1051 10001 0.5060 +1051 10025 0.5250 +1051 10062 0.4240 +1051 10135 0.4080 +1051 10155 0.4360 +1051 10221 0.7130 +1051 10321 0.4550 +1051 10365 0.4980 +1051 10393 0.5500 +1051 10498 0.6530 +1051 10499 0.6320 +1051 10538 0.4890 +1051 10658 0.7220 +1051 10664 0.6190 +1051 10782 0.4210 +1051 10891 0.9530 +1051 10919 0.7340 +1051 11065 0.5750 +1051 11091 0.6350 +1051 11322 0.4840 +1051 22809 0.7360 +1051 22926 0.9290 +1051 23090 0.4790 +1051 23097 0.5590 +1051 23314 0.4650 +1051 23389 0.5180 +1051 23411 0.5110 +1051 23476 0.6880 +1051 23645 0.4400 +1051 23764 0.4190 +1051 25906 0.4990 +1051 25942 0.5630 +1051 26253 0.6340 +1051 27089 0.4360 +1051 27159 0.4540 +1051 27287 0.5090 +1051 27338 0.5670 +1051 27350 0.5210 +1051 28996 0.4850 +1051 28999 0.5020 +1051 29079 0.5100 +1051 29796 0.4650 +1051 29882 0.5220 +1051 29945 0.4990 +1051 30849 0.4240 +1051 51003 0.5030 +1051 51135 0.4330 +1051 51343 0.5200 +1051 51433 0.5220 +1051 51434 0.4990 +1051 51441 0.5210 +1051 51529 0.5050 +1051 51586 0.5300 +1051 54541 0.4960 +1051 54575 0.4410 +1051 54797 0.5110 +1051 55090 0.4990 +1051 55509 0.4450 +1051 55588 0.5070 +1051 55785 0.4220 +1051 56729 0.4710 +1051 57104 0.5470 +1051 57379 0.4140 +1051 57761 0.8890 +1051 59340 0.4710 +1051 60489 0.6980 +1051 63924 0.5920 +1051 63976 0.9950 +1051 64332 0.4550 +1051 64641 0.4180 +1051 64682 0.4990 +1051 79002 0.4420 +1051 79094 0.6600 +1051 79365 0.4420 +1051 79723 0.4210 +1051 79813 0.6350 +1051 80149 0.5450 +1051 80306 0.5110 +1051 81857 0.5120 +1051 84246 0.5450 +1051 84444 0.6670 +1051 84498 0.4990 +1051 84666 0.4310 +1051 84701 0.5330 +1051 84886 0.5330 +1051 85236 0.4180 +1051 85441 0.6430 +1051 90390 0.5470 +1051 112950 0.5270 +1051 119504 0.5000 +1051 122953 0.4580 +1051 125965 0.4430 +1051 137902 0.4570 +1051 163732 0.5220 +1051 200316 0.5500 +1051 246184 0.5030 +1051 259307 0.4300 +1051 283459 0.4650 +1051 388753 0.4420 +1051 400569 0.5190 +1051 440093 0.4660 +1051 440533 0.4590 +1051 440686 0.4660 +1051 653604 0.4660 +1052 1053 0.4820 +1052 1180 0.4800 +1052 1316 0.4490 +1052 1327 0.5000 +1052 1329 0.5370 +1052 1337 0.4650 +1052 1339 0.4750 +1052 1340 0.4440 +1052 1350 0.5510 +1052 1385 0.8290 +1052 1387 0.7100 +1052 1440 0.4720 +1052 1537 0.4210 +1052 1649 0.5620 +1052 1760 0.6310 +1052 1831 0.4470 +1052 1843 0.4330 +1052 1869 0.4600 +1052 1879 0.8120 +1052 1906 0.5110 +1052 1909 0.4270 +1052 1958 0.4630 +1052 1959 0.4280 +1052 2033 0.7360 +1052 2099 0.5680 +1052 2167 0.5790 +1052 2308 0.6030 +1052 2309 0.5420 +1052 2353 0.7720 +1052 2355 0.5310 +1052 2357 0.4570 +1052 2597 0.4150 +1052 2624 0.4400 +1052 2908 0.4030 +1052 2932 0.5050 +1052 3065 0.6300 +1052 3091 0.5990 +1052 3181 0.4740 +1052 3183 0.5960 +1052 3394 0.5430 +1052 3553 0.4610 +1052 3569 0.5220 +1052 3630 0.5390 +1052 3643 0.4470 +1052 3725 0.7340 +1052 3726 0.6910 +1052 3727 0.6540 +1052 3952 0.4220 +1052 4023 0.4510 +1052 4088 0.8200 +1052 4089 0.8600 +1052 4154 0.7800 +1052 4173 0.4090 +1052 4513 0.6010 +1052 4514 0.4750 +1052 4609 0.6340 +1052 4616 0.4240 +1052 4772 0.4020 +1052 4783 0.5790 +1052 4790 0.4150 +1052 4792 0.4890 +1052 5241 0.4080 +1052 5292 0.4890 +1052 5346 0.4120 +1052 5451 0.4690 +1052 5468 0.9250 +1052 5469 0.5460 +1052 5591 0.4360 +1052 5595 0.5120 +1052 5743 0.5470 +1052 5970 0.5110 +1052 6095 0.5630 +1052 6097 0.5340 +1052 6240 0.5270 +1052 6241 0.6510 +1052 6256 0.6370 +1052 6478 0.4470 +1052 6517 0.4650 +1052 6657 0.7890 +1052 6667 0.4970 +1052 6688 0.6030 +1052 6720 0.5570 +1052 6772 0.4080 +1052 6774 0.7720 +1052 6778 0.6350 +1052 6837 0.5020 +1052 7124 0.4340 +1052 7132 0.4600 +1052 7139 0.8320 +1052 7291 0.4810 +1052 7305 0.5000 +1052 7307 0.4190 +1052 7381 0.4840 +1052 7385 0.4270 +1052 7494 0.4950 +1052 7538 0.5170 +1052 7704 0.4050 +1052 8202 0.6600 +1052 8648 0.5820 +1052 8776 0.4790 +1052 8788 0.4040 +1052 8841 0.6180 +1052 9021 0.4600 +1052 9282 0.5230 +1052 9314 0.5630 +1052 9370 0.5110 +1052 9377 0.6130 +1052 9412 0.5080 +1052 9439 0.5440 +1052 9440 0.4990 +1052 9441 0.5000 +1052 9442 0.5210 +1052 9443 0.5210 +1052 9477 0.6300 +1052 9586 0.5450 +1052 9862 0.4990 +1052 9914 0.6040 +1052 9935 0.4320 +1052 9966 0.4040 +1052 9967 0.5090 +1052 9968 0.5040 +1052 9969 0.5540 +1052 10001 0.5060 +1052 10025 0.5070 +1052 10150 0.5980 +1052 10365 0.5880 +1052 10499 0.5730 +1052 10538 0.6160 +1052 10658 0.9080 +1052 10659 0.8930 +1052 10891 0.6690 +1052 11031 0.4320 +1052 11189 0.9000 +1052 22926 0.5180 +1052 23097 0.5010 +1052 23389 0.5070 +1052 23514 0.5150 +1052 23543 0.4480 +1052 27089 0.4400 +1052 27332 0.5280 +1052 28999 0.5200 +1052 29079 0.5010 +1052 29796 0.4650 +1052 51003 0.5030 +1052 51586 0.4990 +1052 51588 0.6000 +1052 54541 0.5030 +1052 54715 0.4800 +1052 54797 0.4990 +1052 55090 0.4990 +1052 55294 0.5420 +1052 55588 0.4990 +1052 55796 0.5830 +1052 56853 0.8910 +1052 58155 0.5960 +1052 60677 0.7970 +1052 60680 0.8310 +1052 64332 0.6720 +1052 79002 0.4420 +1052 79923 0.4880 +1052 80306 0.5010 +1052 80790 0.4830 +1052 81857 0.5040 +1052 84246 0.5380 +1052 84498 0.4990 +1052 84701 0.4820 +1052 84818 0.5170 +1052 84886 0.5360 +1052 85441 0.5420 +1052 90390 0.5070 +1052 112950 0.5130 +1052 116085 0.7630 +1052 125965 0.4420 +1052 147912 0.4440 +1052 159963 0.7730 +1052 160728 0.7770 +1052 283459 0.4650 +1052 388753 0.4420 +1052 400569 0.5190 +1053 1054 0.6050 +1053 1178 0.4260 +1053 1327 0.4820 +1053 1329 0.5320 +1053 1337 0.4650 +1053 1339 0.4650 +1053 1340 0.4420 +1053 1350 0.5450 +1053 1436 0.4030 +1053 1441 0.6310 +1053 1511 0.6660 +1053 1514 0.5280 +1053 1537 0.4160 +1053 1649 0.6540 +1053 1991 0.7070 +1053 2033 0.5430 +1053 2120 0.4140 +1053 2353 0.4530 +1053 2623 0.8320 +1053 2624 0.5120 +1053 2625 0.4730 +1053 2672 0.6380 +1053 2908 0.4100 +1053 2999 0.7250 +1053 3002 0.4170 +1053 3394 0.4940 +1053 3568 0.4780 +1053 3662 0.4840 +1053 3684 0.4550 +1053 3725 0.5130 +1053 4057 0.8760 +1053 4353 0.7350 +1053 4513 0.5920 +1053 4514 0.4750 +1053 4602 0.5210 +1053 4774 0.4180 +1053 4901 0.4110 +1053 5079 0.4180 +1053 5305 0.6700 +1053 5371 0.4520 +1053 5657 0.4300 +1053 5914 0.8630 +1053 6036 0.4920 +1053 6037 0.5870 +1053 6256 0.7790 +1053 6354 0.4360 +1053 6603 0.5680 +1053 6688 0.8920 +1053 6696 0.4370 +1053 7381 0.4840 +1053 7385 0.4270 +1053 7391 0.4040 +1053 8061 0.6410 +1053 8328 0.4860 +1053 8841 0.4080 +1053 9377 0.6130 +1053 10320 0.6650 +1053 10538 0.4600 +1053 10661 0.4160 +1053 11251 0.4080 +1053 22809 0.4710 +1053 27089 0.4340 +1053 29796 0.4650 +1053 54210 0.5090 +1053 64077 0.4730 +1053 79002 0.4440 +1053 84159 0.9170 +1053 84295 0.4480 +1053 84701 0.4820 +1053 84886 0.5320 +1053 125965 0.4470 +1053 201161 0.7850 +1053 283459 0.4650 +1053 286530 0.4660 +1053 388753 0.4420 +1054 1327 0.4860 +1054 1329 0.5330 +1054 1337 0.4650 +1054 1339 0.4650 +1054 1340 0.4440 +1054 1350 0.5460 +1054 1385 0.4950 +1054 1386 0.7600 +1054 1440 0.4800 +1054 1537 0.4240 +1054 1649 0.9490 +1054 1965 0.6150 +1054 1968 0.5020 +1054 2353 0.7730 +1054 2966 0.4310 +1054 3172 0.5060 +1054 3569 0.4680 +1054 3725 0.8230 +1054 3727 0.6650 +1054 4261 0.9030 +1054 4302 0.6920 +1054 4513 0.5920 +1054 4514 0.4750 +1054 4780 0.5040 +1054 5087 0.4400 +1054 5468 0.4130 +1054 5970 0.5110 +1054 6688 0.6070 +1054 6927 0.5180 +1054 6928 0.4610 +1054 7381 0.4840 +1054 7385 0.4320 +1054 7407 0.4700 +1054 7494 0.4930 +1054 8061 0.4330 +1054 8894 0.5670 +1054 9377 0.6190 +1054 9586 0.5740 +1054 10488 0.5450 +1054 10538 0.5260 +1054 11016 0.6900 +1054 22809 0.9550 +1054 26277 0.4750 +1054 27089 0.4390 +1054 29796 0.4650 +1054 55509 0.4110 +1054 57761 0.8020 +1054 79002 0.4420 +1054 79094 0.5150 +1054 84701 0.4820 +1054 84886 0.5320 +1054 122953 0.7950 +1054 125965 0.4420 +1054 134266 0.5390 +1054 259217 0.4430 +1054 283459 0.4650 +1054 388753 0.4470 +1054 728340 0.4500 +1058 1059 0.9940 +1058 1060 0.9990 +1058 1062 0.9930 +1058 1063 0.9650 +1058 1068 0.6440 +1058 1069 0.4380 +1058 1070 0.6130 +1058 1104 0.6090 +1058 1105 0.5260 +1058 1111 0.7970 +1058 1163 0.5410 +1058 1164 0.6050 +1058 1241 0.4140 +1058 1267 0.5800 +1058 1616 0.7360 +1058 1642 0.4770 +1058 1786 0.4920 +1058 1869 0.4080 +1058 1894 0.6350 +1058 1973 0.5570 +1058 2091 0.6360 +1058 2146 0.5880 +1058 2203 0.4140 +1058 2237 0.5870 +1058 2305 0.7940 +1058 2491 0.9990 +1058 2547 0.5330 +1058 2597 0.4270 +1058 2648 0.6510 +1058 3005 0.6110 +1058 3006 0.5060 +1058 3012 0.9930 +1058 3013 0.7620 +1058 3014 0.8830 +1058 3015 0.9360 +1058 3017 0.9830 +1058 3018 0.9300 +1058 3020 0.9390 +1058 3021 0.9710 +1058 3024 0.5170 +1058 3065 0.4190 +1058 3070 0.6050 +1058 3119 0.4720 +1058 3161 0.8700 +1058 3235 0.4710 +1058 3619 0.8650 +1058 3832 0.9420 +1058 3833 0.8300 +1058 3835 0.6830 +1058 3838 0.4150 +1058 3980 0.4140 +1058 4001 0.7010 +1058 4085 0.8650 +1058 4171 0.6280 +1058 4172 0.4470 +1058 4173 0.7430 +1058 4174 0.5100 +1058 4175 0.5080 +1058 4176 0.4640 +1058 4288 0.7850 +1058 4605 0.6300 +1058 4609 0.5270 +1058 4678 0.6900 +1058 4751 0.8500 +1058 4869 0.9530 +1058 4998 0.5400 +1058 4999 0.4380 +1058 5347 0.9880 +1058 5394 0.4160 +1058 5427 0.4090 +1058 5431 0.4150 +1058 5432 0.4140 +1058 5557 0.4720 +1058 5591 0.4600 +1058 5885 0.5150 +1058 5888 0.7540 +1058 5893 0.5790 +1058 5926 0.5340 +1058 5928 0.9140 +1058 5931 0.8820 +1058 5982 0.4160 +1058 5983 0.4500 +1058 5984 0.6520 +1058 5985 0.4380 +1058 6117 0.4830 +1058 6156 0.4030 +1058 6233 0.4440 +1058 6241 0.8180 +1058 6491 0.4190 +1058 6594 0.5700 +1058 6595 0.5910 +1058 6597 0.5420 +1058 6598 0.4070 +1058 6599 0.4230 +1058 6737 0.4300 +1058 6749 0.7920 +1058 6776 0.4930 +1058 6777 0.4840 +1058 6790 0.9590 +1058 6795 0.9180 +1058 6827 0.4560 +1058 6829 0.4030 +1058 6830 0.5120 +1058 6839 0.6380 +1058 6847 0.4150 +1058 6908 0.4120 +1058 6917 0.4840 +1058 6919 0.4770 +1058 6920 0.4750 +1058 7035 0.4700 +1058 7083 0.5340 +1058 7153 0.9190 +1058 7157 0.5970 +1058 7272 0.9050 +1058 7280 0.4690 +1058 7290 0.6040 +1058 7298 0.5500 +1058 7311 0.4160 +1058 7343 0.5000 +1058 7403 0.6430 +1058 7404 0.6220 +1058 7520 0.4810 +1058 7525 0.4800 +1058 8208 0.6350 +1058 8294 0.9680 +1058 8317 0.4190 +1058 8318 0.7070 +1058 8329 0.9470 +1058 8330 0.9330 +1058 8331 0.6290 +1058 8332 0.9330 +1058 8334 0.9630 +1058 8335 0.9640 +1058 8336 0.9460 +1058 8337 0.9980 +1058 8338 0.9870 +1058 8339 0.8610 +1058 8340 0.7740 +1058 8341 0.9830 +1058 8342 0.9830 +1058 8343 0.8600 +1058 8344 0.8620 +1058 8345 0.9830 +1058 8346 0.8600 +1058 8347 0.9510 +1058 8348 0.9850 +1058 8349 0.9950 +1058 8350 0.8090 +1058 8351 0.8130 +1058 8352 0.9170 +1058 8353 0.8830 +1058 8354 0.8120 +1058 8355 0.8140 +1058 8356 0.9170 +1058 8357 0.8170 +1058 8358 0.8150 +1058 8359 0.9670 +1058 8360 0.9670 +1058 8361 0.9990 +1058 8362 0.9670 +1058 8363 0.9670 +1058 8364 0.9670 +1058 8366 0.9680 +1058 8367 0.9670 +1058 8368 0.9680 +1058 8369 0.9310 +1058 8370 0.9670 +1058 8438 0.5510 +1058 8451 0.4800 +1058 8467 0.8280 +1058 8520 0.5800 +1058 8607 0.8710 +1058 8726 0.4090 +1058 8850 0.6330 +1058 8900 0.4150 +1058 8968 0.8110 +1058 8969 0.9350 +1058 8970 0.9570 +1058 9055 0.7720 +1058 9126 0.6600 +1058 9133 0.9750 +1058 9134 0.4010 +1058 9156 0.7500 +1058 9183 0.6210 +1058 9184 0.8630 +1058 9212 0.9970 +1058 9232 0.7610 +1058 9319 0.6610 +1058 9493 0.8650 +1058 9555 0.8070 +1058 9585 0.4170 +1058 9611 0.4660 +1058 9700 0.8900 +1058 9735 0.6130 +1058 9739 0.4800 +1058 9768 0.7700 +1058 9787 0.9450 +1058 9793 0.4670 +1058 9824 0.5990 +1058 9833 0.8820 +1058 9841 0.4270 +1058 9918 0.5460 +1058 9928 0.8120 +1058 9985 0.4440 +1058 10013 0.4340 +1058 10024 0.6560 +1058 10036 0.6860 +1058 10038 0.8230 +1058 10051 0.6440 +1058 10112 0.9130 +1058 10212 0.4330 +1058 10381 0.4390 +1058 10382 0.4480 +1058 10383 0.5080 +1058 10403 0.9170 +1058 10460 0.6720 +1058 10592 0.5250 +1058 10615 0.8250 +1058 10635 0.5540 +1058 10664 0.6230 +1058 10726 0.8120 +1058 10733 0.6840 +1058 10744 0.5020 +1058 10856 0.5980 +1058 10920 0.4960 +1058 10926 0.4450 +1058 10951 0.5560 +1058 11004 0.9860 +1058 11065 0.9380 +1058 11091 0.4030 +1058 11130 0.9080 +1058 11143 0.4550 +1058 11169 0.4750 +1058 11176 0.5180 +1058 11190 0.4530 +1058 11198 0.8510 +1058 11200 0.4670 +1058 11201 0.4410 +1058 11243 0.5200 +1058 11335 0.7060 +1058 11339 0.9810 +1058 22806 0.4180 +1058 22919 0.4790 +1058 22974 0.8820 +1058 22992 0.4560 +1058 23091 0.5690 +1058 23135 0.6490 +1058 23168 0.4420 +1058 23310 0.4890 +1058 23397 0.6930 +1058 23421 0.9460 +1058 23468 0.7680 +1058 23594 0.4440 +1058 24137 0.9060 +1058 25842 0.6180 +1058 25886 0.5140 +1058 25936 0.5790 +1058 26227 0.5320 +1058 26271 0.6970 +1058 26586 0.5780 +1058 27436 0.5310 +1058 28989 0.5620 +1058 29028 0.5850 +1058 29072 0.5730 +1058 29089 0.4840 +1058 29127 0.8490 +1058 29128 0.5110 +1058 50511 0.4160 +1058 51203 0.8740 +1058 51512 0.8070 +1058 51514 0.4650 +1058 51548 0.4340 +1058 51659 0.5280 +1058 51742 0.5510 +1058 51773 0.7440 +1058 54069 0.9560 +1058 54145 0.8270 +1058 54443 0.6470 +1058 54478 0.8630 +1058 54821 0.7720 +1058 54892 0.5190 +1058 55055 0.6020 +1058 55143 0.9710 +1058 55165 0.9200 +1058 55166 0.9910 +1058 55193 0.4440 +1058 55215 0.4970 +1058 55234 0.4250 +1058 55247 0.5370 +1058 55320 0.8810 +1058 55355 0.9990 +1058 55388 0.6780 +1058 55506 0.5180 +1058 55635 0.8580 +1058 55657 0.4790 +1058 55723 0.8310 +1058 55766 0.6460 +1058 55789 0.5970 +1058 55839 0.9990 +1058 55920 0.5740 +1058 55929 0.5210 +1058 56992 0.8650 +1058 57082 0.9030 +1058 57332 0.4730 +1058 57405 0.8040 +1058 64105 0.9970 +1058 64151 0.8700 +1058 64946 0.9990 +1058 79003 0.6230 +1058 79019 0.9990 +1058 79075 0.4520 +1058 79172 0.9910 +1058 79682 0.9980 +1058 79711 0.5280 +1058 79723 0.5330 +1058 79733 0.6090 +1058 79801 0.8090 +1058 79866 0.6070 +1058 79980 0.9250 +1058 80152 0.9970 +1058 81027 0.4340 +1058 81610 0.6240 +1058 81620 0.6320 +1058 81624 0.6410 +1058 81930 0.8090 +1058 83461 0.8900 +1058 83540 0.9360 +1058 83879 0.5470 +1058 83903 0.6860 +1058 84057 0.5060 +1058 84444 0.4870 +1058 84517 0.4250 +1058 84617 0.4620 +1058 84678 0.4190 +1058 84722 0.5140 +1058 84823 0.6280 +1058 84962 0.4140 +1058 85236 0.9530 +1058 90381 0.4120 +1058 90417 0.5870 +1058 91687 0.9930 +1058 94239 0.8090 +1058 113115 0.4860 +1058 113130 0.8560 +1058 121504 0.9680 +1058 121665 0.4390 +1058 123169 0.4730 +1058 125476 0.4070 +1058 126961 0.4440 +1058 128312 0.8300 +1058 132243 0.4160 +1058 139741 0.4110 +1058 140625 0.4070 +1058 144455 0.4240 +1058 146909 0.6220 +1058 147841 0.8080 +1058 150468 0.8290 +1058 151246 0.6290 +1058 151648 0.8800 +1058 157313 0.8200 +1058 157570 0.5620 +1058 158809 0.6020 +1058 158983 0.5730 +1058 166979 0.4520 +1058 201254 0.9720 +1058 203068 0.5170 +1058 220134 0.8430 +1058 221150 0.6570 +1058 255626 0.7950 +1058 259266 0.8650 +1058 284361 0.4930 +1058 286436 0.5540 +1058 347688 0.4390 +1058 347733 0.4300 +1058 378708 0.9930 +1058 387103 0.9910 +1058 387893 0.9270 +1058 401541 0.9850 +1058 440689 0.9670 +1058 474381 0.7060 +1058 474382 0.8270 +1058 554313 0.9670 +1058 723790 0.9270 +1058 728833 0.4640 +1058 100527963 0.5160 +1058 114483833 0.5560 +1059 1060 0.9930 +1059 1062 0.9010 +1059 1063 0.8120 +1059 1616 0.4750 +1059 2091 0.5610 +1059 2491 0.8850 +1059 3021 0.5540 +1059 3035 0.4380 +1059 3431 0.4240 +1059 3619 0.8010 +1059 3980 0.4060 +1059 4926 0.4010 +1059 4948 0.4790 +1059 5347 0.4060 +1059 5394 0.7740 +1059 5423 0.4450 +1059 5501 0.4360 +1059 6156 0.4030 +1059 6419 0.4890 +1059 6625 0.6420 +1059 6737 0.8160 +1059 6738 0.8040 +1059 6741 0.4480 +1059 6917 0.4120 +1059 7038 0.4160 +1059 7150 0.5580 +1059 7329 0.4320 +1059 7343 0.5670 +1059 8290 0.5530 +1059 8349 0.4360 +1059 8356 0.5530 +1059 8424 0.4200 +1059 8427 0.4990 +1059 9183 0.6570 +1059 9184 0.6050 +1059 9212 0.7240 +1059 9700 0.4590 +1059 9739 0.5510 +1059 10038 0.7650 +1059 10112 0.4860 +1059 10219 0.4260 +1059 10403 0.6050 +1059 10434 0.4690 +1059 10474 0.4040 +1059 10536 0.7180 +1059 11004 0.7680 +1059 11130 0.5020 +1059 23225 0.4200 +1059 23438 0.4270 +1059 23468 0.4220 +1059 27154 0.4330 +1059 51185 0.4300 +1059 55143 0.4590 +1059 55166 0.4470 +1059 55320 0.4180 +1059 55355 0.6070 +1059 55839 0.7590 +1059 57082 0.4710 +1059 64105 0.5540 +1059 64946 0.9310 +1059 79003 0.5550 +1059 79019 0.5300 +1059 79172 0.6360 +1059 79682 0.6090 +1059 79980 0.4850 +1059 80152 0.6580 +1059 81930 0.5230 +1059 83444 0.4180 +1059 83540 0.4010 +1059 83903 0.4730 +1059 84188 0.4100 +1059 91687 0.6240 +1059 116447 0.4400 +1059 149986 0.4970 +1059 151648 0.4880 +1059 201254 0.6330 +1059 284361 0.6050 +1059 378708 0.9730 +1059 387103 0.8660 +1059 401541 0.5260 +1059 440093 0.5530 +1059 440686 0.5530 +1059 653604 0.6700 +1060 1062 0.9130 +1060 1063 0.6850 +1060 1068 0.4330 +1060 1070 0.4970 +1060 1616 0.6780 +1060 1654 0.4330 +1060 1788 0.6590 +1060 1789 0.9780 +1060 2491 0.9980 +1060 3014 0.5780 +1060 3021 0.7700 +1060 3291 0.5780 +1060 3619 0.7150 +1060 4085 0.5770 +1060 4869 0.6900 +1060 5203 0.4430 +1060 5347 0.6700 +1060 5501 0.7850 +1060 5728 0.7400 +1060 5885 0.4350 +1060 5928 0.6340 +1060 5931 0.6670 +1060 6651 0.5640 +1060 6749 0.5150 +1060 7024 0.5910 +1060 7035 0.4470 +1060 7150 0.6530 +1060 7343 0.7940 +1060 7529 0.4320 +1060 8290 0.7660 +1060 8294 0.9000 +1060 8334 0.9010 +1060 8337 0.9460 +1060 8338 0.4800 +1060 8339 0.9150 +1060 8343 0.9000 +1060 8344 0.9000 +1060 8346 0.9000 +1060 8347 0.9220 +1060 8349 0.5060 +1060 8356 0.8400 +1060 8359 0.9000 +1060 8360 0.9000 +1060 8361 0.9630 +1060 8362 0.9000 +1060 8363 0.9000 +1060 8364 0.9000 +1060 8366 0.9000 +1060 8367 0.9000 +1060 8368 0.9000 +1060 8370 0.9000 +1060 8607 0.5210 +1060 8653 0.7280 +1060 9133 0.4010 +1060 9183 0.5900 +1060 9184 0.8280 +1060 9212 0.7000 +1060 9700 0.6790 +1060 10038 0.5220 +1060 10403 0.9030 +1060 10726 0.5130 +1060 11004 0.6460 +1060 11130 0.8900 +1060 11243 0.9760 +1060 11339 0.9050 +1060 23029 0.4460 +1060 23310 0.5360 +1060 23421 0.9890 +1060 23468 0.4290 +1060 25936 0.9180 +1060 27436 0.5100 +1060 51203 0.4980 +1060 54069 0.8950 +1060 54465 0.4140 +1060 54514 0.7620 +1060 55055 0.5250 +1060 55166 0.9950 +1060 55320 0.9120 +1060 55355 0.8520 +1060 55839 0.9990 +1060 57082 0.8840 +1060 57223 0.5010 +1060 64105 0.9980 +1060 64946 0.9990 +1060 79003 0.9970 +1060 79019 0.9990 +1060 79172 0.9970 +1060 79682 0.9990 +1060 79980 0.9930 +1060 80152 0.9990 +1060 83540 0.9250 +1060 84365 0.4250 +1060 91687 0.9980 +1060 121504 0.9000 +1060 147841 0.6210 +1060 151246 0.4300 +1060 151648 0.6740 +1060 201254 0.9950 +1060 220134 0.4170 +1060 284361 0.5030 +1060 378708 0.9990 +1060 387103 0.9970 +1060 401541 0.9960 +1060 440093 0.8300 +1060 440686 0.8300 +1060 554313 0.9000 +1060 653604 0.7690 +1060 723790 0.9000 +1060 728637 0.6860 +1060 100527963 0.5460 +1062 1063 0.9990 +1062 1111 0.7570 +1062 1164 0.5810 +1062 1639 0.8210 +1062 1763 0.4260 +1062 1781 0.6240 +1062 1894 0.8440 +1062 2079 0.4600 +1062 2175 0.4790 +1062 2305 0.7180 +1062 2491 0.8820 +1062 3021 0.4940 +1062 3070 0.5910 +1062 3161 0.9260 +1062 3619 0.8110 +1062 3796 0.8860 +1062 3797 0.4570 +1062 3798 0.4780 +1062 3799 0.5010 +1062 3831 0.5160 +1062 3832 0.9880 +1062 3833 0.8130 +1062 3834 0.5780 +1062 3835 0.6770 +1062 4085 0.9420 +1062 4171 0.4080 +1062 4173 0.6790 +1062 4174 0.4080 +1062 4175 0.4850 +1062 4176 0.4160 +1062 4288 0.9210 +1062 4605 0.4990 +1062 4678 0.5200 +1062 4751 0.8340 +1062 4926 0.4950 +1062 5048 0.6830 +1062 5116 0.4740 +1062 5216 0.4440 +1062 5347 0.9770 +1062 5414 0.4590 +1062 5422 0.4420 +1062 5427 0.4790 +1062 5499 0.4070 +1062 5557 0.4390 +1062 5888 0.6530 +1062 5983 0.4090 +1062 5984 0.5490 +1062 6241 0.6850 +1062 6249 0.7510 +1062 6376 0.4400 +1062 6397 0.4310 +1062 6491 0.6110 +1062 6599 0.4670 +1062 6601 0.4300 +1062 6790 0.8690 +1062 6795 0.4990 +1062 6904 0.4500 +1062 7062 0.4880 +1062 7083 0.4380 +1062 7153 0.9260 +1062 7157 0.4620 +1062 7158 0.7400 +1062 7267 0.6510 +1062 7272 0.9680 +1062 7298 0.4070 +1062 7461 0.6110 +1062 8290 0.4910 +1062 8317 0.4380 +1062 8318 0.6780 +1062 8349 0.4010 +1062 8356 0.5090 +1062 8379 0.5700 +1062 8438 0.4630 +1062 8480 0.4250 +1062 8729 0.5030 +1062 8900 0.5040 +1062 9055 0.9900 +1062 9133 0.9420 +1062 9156 0.7810 +1062 9183 0.8320 +1062 9184 0.9350 +1062 9212 0.9750 +1062 9232 0.7960 +1062 9319 0.6360 +1062 9371 0.4530 +1062 9401 0.5310 +1062 9493 0.9690 +1062 9585 0.9500 +1062 9662 0.4740 +1062 9700 0.9050 +1062 9735 0.7620 +1062 9768 0.5580 +1062 9787 0.9570 +1062 9793 0.7880 +1062 9824 0.7290 +1062 9833 0.8860 +1062 9859 0.4880 +1062 9918 0.5830 +1062 9928 0.8510 +1062 10024 0.5750 +1062 10051 0.8990 +1062 10112 0.9670 +1062 10121 0.5580 +1062 10244 0.4240 +1062 10403 0.9790 +1062 10460 0.7950 +1062 10540 0.7580 +1062 10592 0.8610 +1062 10615 0.8110 +1062 10635 0.6430 +1062 10664 0.5070 +1062 10671 0.5050 +1062 10721 0.5710 +1062 10726 0.8370 +1062 10733 0.8660 +1062 10744 0.5880 +1062 10749 0.4700 +1062 10982 0.5970 +1062 11004 0.9880 +1062 11065 0.8030 +1062 11127 0.4600 +1062 11129 0.6410 +1062 11130 0.8780 +1062 11169 0.5230 +1062 11200 0.5480 +1062 11258 0.5040 +1062 11339 0.6160 +1062 22919 0.7080 +1062 22920 0.4760 +1062 22924 0.6810 +1062 22974 0.8940 +1062 22995 0.5240 +1062 23046 0.4310 +1062 23095 0.4630 +1062 23122 0.7860 +1062 23141 0.5150 +1062 23157 0.5290 +1062 23176 0.5830 +1062 23303 0.4890 +1062 23310 0.5010 +1062 23332 0.7930 +1062 23397 0.7240 +1062 23421 0.5370 +1062 24137 0.9570 +1062 25792 0.4600 +1062 26153 0.4560 +1062 26271 0.6150 +1062 26286 0.5010 +1062 26586 0.8310 +1062 27436 0.5370 +1062 29028 0.7290 +1062 29089 0.4030 +1062 29127 0.8330 +1062 29128 0.4590 +1062 51053 0.4820 +1062 51164 0.5180 +1062 51199 0.4210 +1062 51203 0.9290 +1062 51490 0.5070 +1062 51512 0.5300 +1062 51514 0.5480 +1062 51594 0.5040 +1062 51659 0.4690 +1062 53407 0.5030 +1062 54145 0.5310 +1062 54443 0.7620 +1062 54478 0.5820 +1062 54801 0.4770 +1062 54820 0.4510 +1062 54821 0.7340 +1062 54892 0.6490 +1062 54908 0.6790 +1062 55010 0.6170 +1062 55055 0.8700 +1062 55083 0.4670 +1062 55143 0.9560 +1062 55165 0.9360 +1062 55166 0.6040 +1062 55215 0.6960 +1062 55247 0.5690 +1062 55320 0.7090 +1062 55355 0.9140 +1062 55388 0.6080 +1062 55582 0.4300 +1062 55605 0.6040 +1062 55614 0.4270 +1062 55632 0.4430 +1062 55635 0.8280 +1062 55723 0.5520 +1062 55732 0.4130 +1062 55738 0.5010 +1062 55752 0.6050 +1062 55789 0.6720 +1062 55835 0.6020 +1062 55839 0.6920 +1062 55850 0.5030 +1062 55860 0.5620 +1062 56992 0.9320 +1062 57082 0.9000 +1062 57122 0.4310 +1062 57405 0.6620 +1062 57650 0.5670 +1062 60561 0.5240 +1062 63925 0.5060 +1062 63967 0.7200 +1062 64105 0.7030 +1062 64151 0.9200 +1062 64837 0.4770 +1062 64946 0.9060 +1062 79019 0.7250 +1062 79075 0.4330 +1062 79172 0.7210 +1062 79648 0.4060 +1062 79659 0.4880 +1062 79682 0.7100 +1062 79733 0.5650 +1062 79801 0.6890 +1062 79823 0.6280 +1062 79866 0.4980 +1062 79980 0.6420 +1062 80152 0.6270 +1062 81610 0.6180 +1062 81620 0.5160 +1062 81624 0.5130 +1062 81930 0.9850 +1062 83461 0.7100 +1062 83540 0.9960 +1062 83879 0.4300 +1062 83903 0.4700 +1062 84057 0.4480 +1062 84364 0.5030 +1062 84516 0.5350 +1062 84643 0.8920 +1062 84722 0.4820 +1062 84930 0.4960 +1062 89839 0.5530 +1062 89953 0.4180 +1062 90417 0.8900 +1062 90990 0.5840 +1062 91687 0.4450 +1062 93661 0.4990 +1062 113130 0.7930 +1062 117286 0.5090 +1062 124602 0.5270 +1062 146909 0.6880 +1062 147700 0.4900 +1062 147841 0.7050 +1062 150468 0.8270 +1062 151246 0.8320 +1062 151648 0.8330 +1062 157313 0.8770 +1062 157570 0.4690 +1062 163786 0.5700 +1062 220134 0.8860 +1062 221150 0.8510 +1062 221458 0.4240 +1062 259266 0.9810 +1062 282991 0.4030 +1062 283431 0.4510 +1062 283489 0.5070 +1062 284403 0.5110 +1062 285643 0.6160 +1062 345456 0.4290 +1062 348235 0.4370 +1062 375189 0.4290 +1062 378708 0.8680 +1062 387103 0.5930 +1062 401541 0.5740 +1062 440093 0.4910 +1062 440686 0.5020 +1062 653604 0.5060 +1063 1111 0.7610 +1063 1163 0.5910 +1063 1164 0.6730 +1063 1869 0.5710 +1063 1894 0.7700 +1063 2146 0.5120 +1063 2177 0.4740 +1063 2237 0.4350 +1063 2305 0.9890 +1063 2491 0.9100 +1063 2804 0.4520 +1063 3070 0.6000 +1063 3161 0.9270 +1063 3619 0.6840 +1063 3796 0.4290 +1063 3832 0.9720 +1063 3833 0.7460 +1063 3835 0.6380 +1063 3838 0.4830 +1063 4001 0.4350 +1063 4008 0.5130 +1063 4085 0.9150 +1063 4171 0.4710 +1063 4172 0.6100 +1063 4173 0.5790 +1063 4174 0.4320 +1063 4175 0.5520 +1063 4176 0.4050 +1063 4288 0.9790 +1063 4502 0.4470 +1063 4605 0.6510 +1063 4609 0.6690 +1063 4678 0.4500 +1063 4751 0.9700 +1063 4926 0.5440 +1063 4957 0.4520 +1063 4998 0.4080 +1063 5048 0.4030 +1063 5116 0.4440 +1063 5347 0.9730 +1063 5557 0.4530 +1063 5888 0.5610 +1063 5903 0.5440 +1063 5932 0.6070 +1063 5984 0.7180 +1063 6240 0.6250 +1063 6241 0.8220 +1063 6491 0.7080 +1063 6790 0.9020 +1063 6810 0.4820 +1063 6876 0.4100 +1063 7083 0.7820 +1063 7112 0.4510 +1063 7153 0.9740 +1063 7272 0.9670 +1063 7298 0.6840 +1063 7704 0.4100 +1063 8208 0.4230 +1063 8315 0.5100 +1063 8317 0.4040 +1063 8318 0.7760 +1063 8349 0.4090 +1063 8361 0.4110 +1063 8438 0.6020 +1063 8900 0.4950 +1063 8914 0.4210 +1063 9055 0.9370 +1063 9088 0.4340 +1063 9133 0.9740 +1063 9134 0.4550 +1063 9156 0.9000 +1063 9183 0.7470 +1063 9184 0.7650 +1063 9212 0.9250 +1063 9232 0.8270 +1063 9319 0.7460 +1063 9493 0.9300 +1063 9585 0.6940 +1063 9700 0.9260 +1063 9735 0.7950 +1063 9768 0.8980 +1063 9787 0.9760 +1063 9793 0.5860 +1063 9824 0.8110 +1063 9833 0.9190 +1063 9837 0.4290 +1063 9918 0.5990 +1063 9928 0.9590 +1063 10024 0.7640 +1063 10051 0.8000 +1063 10112 0.9600 +1063 10398 0.4080 +1063 10403 0.9870 +1063 10460 0.7050 +1063 10540 0.5230 +1063 10592 0.7640 +1063 10615 0.9050 +1063 10635 0.6020 +1063 10721 0.5460 +1063 10726 0.8320 +1063 10733 0.6670 +1063 10744 0.4030 +1063 11004 0.9850 +1063 11065 0.9400 +1063 11113 0.5140 +1063 11130 0.9530 +1063 11169 0.4680 +1063 11339 0.6330 +1063 22897 0.6200 +1063 22974 0.9540 +1063 23122 0.5010 +1063 23299 0.5240 +1063 23397 0.6190 +1063 23421 0.4200 +1063 23594 0.5310 +1063 24137 0.8790 +1063 25886 0.4540 +1063 26271 0.5020 +1063 26586 0.9340 +1063 27436 0.5290 +1063 29028 0.6710 +1063 29089 0.8530 +1063 29127 0.7950 +1063 29128 0.5780 +1063 50484 0.4010 +1063 51053 0.4920 +1063 51134 0.6100 +1063 51199 0.6870 +1063 51203 0.9440 +1063 51512 0.7450 +1063 51514 0.8930 +1063 51659 0.5210 +1063 54443 0.8420 +1063 54478 0.6730 +1063 54795 0.4540 +1063 54820 0.8660 +1063 54821 0.5060 +1063 54892 0.5600 +1063 54908 0.9500 +1063 55010 0.5870 +1063 55055 0.7700 +1063 55125 0.4880 +1063 55143 0.9620 +1063 55165 0.9590 +1063 55166 0.5190 +1063 55215 0.5830 +1063 55247 0.5360 +1063 55288 0.4830 +1063 55320 0.7520 +1063 55355 0.9460 +1063 55388 0.6630 +1063 55632 0.4700 +1063 55635 0.8440 +1063 55723 0.7260 +1063 55732 0.5660 +1063 55746 0.8630 +1063 55789 0.5330 +1063 55835 0.4860 +1063 55839 0.6450 +1063 56992 0.9590 +1063 57082 0.7840 +1063 57122 0.5740 +1063 57405 0.7340 +1063 57576 0.5820 +1063 63967 0.6930 +1063 64105 0.6450 +1063 64151 0.9240 +1063 64946 0.7390 +1063 79019 0.7890 +1063 79075 0.4910 +1063 79172 0.6320 +1063 79598 0.4560 +1063 79648 0.4560 +1063 79682 0.7360 +1063 79733 0.8030 +1063 79801 0.6210 +1063 79980 0.5370 +1063 80152 0.5700 +1063 80178 0.4340 +1063 80323 0.4970 +1063 81565 0.8230 +1063 81610 0.7340 +1063 81620 0.5840 +1063 81624 0.5500 +1063 81930 0.8500 +1063 83461 0.7810 +1063 83540 0.9520 +1063 83879 0.5020 +1063 84057 0.6910 +1063 84643 0.4440 +1063 84722 0.4480 +1063 84902 0.5970 +1063 84930 0.4760 +1063 85302 0.5630 +1063 89765 0.4080 +1063 89839 0.6360 +1063 90381 0.5370 +1063 90417 0.6230 +1063 91272 0.9150 +1063 91687 0.4530 +1063 113130 0.8570 +1063 128239 0.6480 +1063 132320 0.5880 +1063 144455 0.5440 +1063 146909 0.6980 +1063 147841 0.5900 +1063 150468 0.7370 +1063 151246 0.6650 +1063 151648 0.7460 +1063 157313 0.7950 +1063 157570 0.5030 +1063 166979 0.6570 +1063 220134 0.9650 +1063 221150 0.9680 +1063 259266 0.9870 +1063 259282 0.5430 +1063 283431 0.4970 +1063 283489 0.4690 +1063 284257 0.5430 +1063 339829 0.4080 +1063 348235 0.9390 +1063 378708 0.8150 +1063 387103 0.6050 +1063 401541 0.4960 +1066 1244 0.4610 +1066 1544 0.4910 +1066 1555 0.5180 +1066 1557 0.5570 +1066 1558 0.4440 +1066 1559 0.5200 +1066 1565 0.4740 +1066 1571 0.9330 +1066 1576 0.9580 +1066 1577 0.4540 +1066 2098 0.7950 +1066 2166 0.4190 +1066 2689 0.6120 +1066 2948 0.4410 +1066 2987 0.4640 +1066 2990 0.9810 +1066 3029 0.5550 +1066 3094 0.7180 +1066 3952 0.4350 +1066 3991 0.7820 +1066 4057 0.4960 +1066 4353 0.9390 +1066 5243 0.4770 +1066 5264 0.4600 +1066 5406 0.4470 +1066 5444 0.5160 +1066 5465 0.5480 +1066 5476 0.7230 +1066 6591 0.4710 +1066 6615 0.4650 +1066 6646 0.5690 +1066 6829 0.4900 +1066 7355 0.4310 +1066 7363 0.7800 +1066 7364 0.8030 +1066 7365 0.7900 +1066 7366 0.7890 +1066 7367 0.7770 +1066 7706 0.4970 +1066 8731 0.5590 +1066 8732 0.7980 +1066 8856 0.4350 +1066 8915 0.5430 +1066 9227 0.4740 +1066 9360 0.5460 +1066 9429 0.4050 +1066 10599 0.4880 +1066 10720 0.7760 +1066 11343 0.8080 +1066 27022 0.4360 +1066 51099 0.4430 +1066 54490 0.7790 +1066 54575 0.8240 +1066 54576 0.8140 +1066 54577 0.8240 +1066 54578 0.8270 +1066 54579 0.7710 +1066 54600 0.7930 +1066 54657 0.8240 +1066 54658 0.8260 +1066 54659 0.7810 +1066 57104 0.5790 +1066 57406 0.4730 +1066 57552 0.8870 +1066 79799 0.7820 +1066 115650 0.6150 +1066 161198 0.7820 +1066 161823 0.4830 +1066 162979 0.4950 +1066 284293 0.4530 +1066 574537 0.7780 +1068 1069 0.7410 +1068 1070 0.6480 +1068 1080 0.4590 +1068 1639 0.6350 +1068 1778 0.6430 +1068 1780 0.5820 +1068 1781 0.6060 +1068 1783 0.5520 +1068 2491 0.5460 +1068 2670 0.5050 +1068 3021 0.4120 +1068 3043 0.4060 +1068 3297 0.5110 +1068 3312 0.5620 +1068 3320 0.5360 +1068 3326 0.5360 +1068 3833 0.4230 +1068 3920 0.5090 +1068 4218 0.5670 +1068 4647 0.4650 +1068 5021 0.4180 +1068 5071 0.5070 +1068 5108 0.7620 +1068 5116 0.9380 +1068 5347 0.4540 +1068 5886 0.4290 +1068 6103 0.4330 +1068 6233 0.4550 +1068 6491 0.4420 +1068 7015 0.4330 +1068 7251 0.4080 +1068 7283 0.4290 +1068 7314 0.4480 +1068 7316 0.4560 +1068 7334 0.5600 +1068 7335 0.5250 +1068 7415 0.5280 +1068 7508 0.5530 +1068 7979 0.4740 +1068 8100 0.6760 +1068 8290 0.4110 +1068 8356 0.4110 +1068 8573 0.4450 +1068 8655 0.6030 +1068 8888 0.6980 +1068 9154 0.4610 +1068 9662 0.7150 +1068 9700 0.4200 +1068 9702 0.4210 +1068 9738 0.7580 +1068 9814 0.9240 +1068 9972 0.4800 +1068 10013 0.4820 +1068 10226 0.4390 +1068 10403 0.4330 +1068 10540 0.6460 +1068 10733 0.6200 +1068 11315 0.4160 +1068 22897 0.7210 +1068 22924 0.4440 +1068 22994 0.4380 +1068 22995 0.6220 +1068 27098 0.5420 +1068 27243 0.4130 +1068 29901 0.5770 +1068 51143 0.5410 +1068 51160 0.4160 +1068 51175 0.4270 +1068 51199 0.8670 +1068 51314 0.5990 +1068 51652 0.4390 +1068 54875 0.4920 +1068 55125 0.6750 +1068 55556 0.5030 +1068 55755 0.4180 +1068 55795 0.6760 +1068 55835 0.4400 +1068 56943 0.8040 +1068 79598 0.4090 +1068 79643 0.4070 +1068 79902 0.7140 +1068 79906 0.6960 +1068 80184 0.7400 +1068 81035 0.4460 +1068 83449 0.4950 +1068 83540 0.4340 +1068 85459 0.5410 +1068 90141 0.5940 +1068 92421 0.4060 +1068 116840 0.5500 +1068 121441 0.5030 +1068 128866 0.4060 +1068 129049 0.8060 +1068 134359 0.9350 +1068 140732 0.5530 +1068 140735 0.6030 +1068 149018 0.5360 +1068 153241 0.4400 +1068 157574 0.4890 +1068 163786 0.6210 +1068 197335 0.4410 +1068 200894 0.6680 +1068 221421 0.4280 +1068 282809 0.4430 +1068 341567 0.4150 +1068 378708 0.4550 +1068 440093 0.4110 +1068 440686 0.4120 +1068 642597 0.4180 +1068 653604 0.4110 +1069 1070 0.9670 +1069 1161 0.9430 +1069 1642 0.9050 +1069 1643 0.9170 +1069 1938 0.4480 +1069 2067 0.9710 +1069 2068 0.8770 +1069 2071 0.8960 +1069 2072 0.9370 +1069 2073 0.9390 +1069 2074 0.4970 +1069 2177 0.6150 +1069 2491 0.5070 +1069 2547 0.9250 +1069 2873 0.5060 +1069 2956 0.9170 +1069 2965 0.8370 +1069 2966 0.6600 +1069 2967 0.8130 +1069 2968 0.8060 +1069 3833 0.4220 +1069 3978 0.4340 +1069 3981 0.9140 +1069 4085 0.9060 +1069 4218 0.6180 +1069 4292 0.6200 +1069 4331 0.7300 +1069 4436 0.9170 +1069 4437 0.7830 +1069 4735 0.4270 +1069 4798 0.4050 +1069 4867 0.7730 +1069 4928 0.9140 +1069 4957 0.4390 +1069 5116 0.8920 +1069 5347 0.8810 +1069 5378 0.6110 +1069 5395 0.6170 +1069 5423 0.5050 +1069 5424 0.9140 +1069 5460 0.6030 +1069 5591 0.9230 +1069 5886 0.9850 +1069 5887 0.9990 +1069 5903 0.9260 +1069 6015 0.4150 +1069 6045 0.4180 +1069 6103 0.4650 +1069 6117 0.6670 +1069 6118 0.7470 +1069 6119 0.6770 +1069 6233 0.5510 +1069 6491 0.5140 +1069 6612 0.5480 +1069 6613 0.6010 +1069 6657 0.4790 +1069 6993 0.4110 +1069 7158 0.4870 +1069 7175 0.9260 +1069 7272 0.4150 +1069 7277 0.7180 +1069 7283 0.6650 +1069 7311 0.5190 +1069 7314 0.5610 +1069 7316 0.5400 +1069 7329 0.6470 +1069 7334 0.6020 +1069 7336 0.5760 +1069 7341 0.5870 +1069 7507 0.8410 +1069 7508 0.9990 +1069 7515 0.6000 +1069 7518 0.9190 +1069 7520 0.9270 +1069 7528 0.4380 +1069 7703 0.4080 +1069 7979 0.8460 +1069 8100 0.6100 +1069 8317 0.5130 +1069 8361 0.5800 +1069 8379 0.9050 +1069 8450 0.6470 +1069 8451 0.7070 +1069 8533 0.5210 +1069 8535 0.4100 +1069 8554 0.4030 +1069 8573 0.4540 +1069 8607 0.5260 +1069 8766 0.6260 +1069 8888 0.9980 +1069 9318 0.5310 +1069 9557 0.5970 +1069 9662 0.8420 +1069 9696 0.4830 +1069 9700 0.4140 +1069 9738 0.8670 +1069 9814 0.9960 +1069 9859 0.5070 +1069 9972 0.9530 +1069 9978 0.6690 +1069 10038 0.5670 +1069 10133 0.5080 +1069 10295 0.5680 +1069 10401 0.4040 +1069 10445 0.4710 +1069 10542 0.6060 +1069 10733 0.8320 +1069 10920 0.5120 +1069 10973 0.5450 +1069 10980 0.5490 +1069 10987 0.5670 +1069 11200 0.5140 +1069 22897 0.6720 +1069 22924 0.4130 +1069 22994 0.4470 +1069 22995 0.5320 +1069 23028 0.9100 +1069 23186 0.9000 +1069 23203 0.8170 +1069 23354 0.5350 +1069 25861 0.4470 +1069 25862 0.5000 +1069 27030 0.5770 +1069 28992 0.4740 +1069 29844 0.4210 +1069 29901 0.5770 +1069 50813 0.5070 +1069 51008 0.5520 +1069 51138 0.5160 +1069 51175 0.4260 +1069 51199 0.7600 +1069 51314 0.5990 +1069 51317 0.9070 +1069 54617 0.4490 +1069 54778 0.5850 +1069 54801 0.5830 +1069 54806 0.6700 +1069 54875 0.5540 +1069 54903 0.4440 +1069 54930 0.5080 +1069 55125 0.5850 +1069 55142 0.4990 +1069 55171 0.5360 +1069 55215 0.6290 +1069 55559 0.5580 +1069 55795 0.9990 +1069 55835 0.7750 +1069 56943 0.9990 +1069 56949 0.4500 +1069 57654 0.4740 +1069 64421 0.9050 +1069 64682 0.6710 +1069 64708 0.5130 +1069 79441 0.4990 +1069 79598 0.5230 +1069 79728 0.5980 +1069 79840 0.9290 +1069 79866 0.4990 +1069 79902 0.6840 +1069 79906 0.7060 +1069 79913 0.4080 +1069 79959 0.4570 +1069 79968 0.5530 +1069 80012 0.4690 +1069 80127 0.5070 +1069 80184 0.4260 +1069 81847 0.5960 +1069 83444 0.4390 +1069 84101 0.8590 +1069 84140 0.4610 +1069 84164 0.5600 +1069 91419 0.9020 +1069 93323 0.5410 +1069 93973 0.4720 +1069 114327 0.4550 +1069 115106 0.5470 +1069 116840 0.8880 +1069 117177 0.5880 +1069 121441 0.4360 +1069 125150 0.9000 +1069 125476 0.4230 +1069 126074 0.9000 +1069 127602 0.7020 +1069 129049 0.6720 +1069 129401 0.5870 +1069 134359 0.9590 +1069 146330 0.4520 +1069 153241 0.5230 +1069 159989 0.4240 +1069 163786 0.7750 +1069 197335 0.6700 +1069 200558 0.7200 +1069 200894 0.6040 +1069 222235 0.9150 +1069 261734 0.5570 +1069 282809 0.8000 +1069 283899 0.4410 +1069 286257 0.9050 +1069 404672 0.8740 +1069 728642 0.5690 +1069 105375355 0.5400 +1070 3021 0.4030 +1070 3326 0.4470 +1070 3833 0.4250 +1070 4085 0.9240 +1070 4609 0.4190 +1070 4928 0.9140 +1070 5108 0.5050 +1070 5116 0.6390 +1070 5230 0.5810 +1070 5255 0.6570 +1070 5260 0.4400 +1070 5261 0.4130 +1070 5885 0.5360 +1070 5887 0.5090 +1070 5903 0.9160 +1070 6191 0.6400 +1070 6206 0.4020 +1070 6500 0.4130 +1070 7035 0.5520 +1070 7175 0.9450 +1070 7272 0.4810 +1070 7508 0.7890 +1070 7543 0.5740 +1070 7979 0.6600 +1070 8100 0.5360 +1070 8290 0.4050 +1070 8356 0.4040 +1070 8379 0.9080 +1070 8481 0.4600 +1070 8573 0.4450 +1070 8888 0.9990 +1070 9126 0.4340 +1070 9141 0.4210 +1070 9212 0.4500 +1070 9412 0.5260 +1070 9662 0.6100 +1070 9700 0.4360 +1070 9738 0.6110 +1070 9742 0.4230 +1070 9786 0.4480 +1070 9793 0.4090 +1070 9814 0.9820 +1070 9859 0.5210 +1070 9950 0.4040 +1070 9972 0.9490 +1070 9985 0.4410 +1070 10189 0.4110 +1070 10295 0.6120 +1070 10403 0.4750 +1070 10426 0.5060 +1070 10428 0.4730 +1070 10606 0.5080 +1070 10733 0.6220 +1070 10844 0.5040 +1070 22897 0.6470 +1070 22924 0.4170 +1070 22995 0.5300 +1070 25862 0.5500 +1070 29901 0.5950 +1070 29984 0.4770 +1070 51174 0.4070 +1070 51175 0.4190 +1070 51199 0.6620 +1070 51314 0.5990 +1070 51650 0.4550 +1070 54826 0.4430 +1070 54875 0.4050 +1070 55795 0.9920 +1070 55835 0.4290 +1070 56943 0.9990 +1070 57187 0.4140 +1070 64078 0.4130 +1070 64431 0.4560 +1070 79003 0.5160 +1070 79959 0.5010 +1070 80184 0.4770 +1070 83540 0.5590 +1070 84232 0.6080 +1070 90141 0.4030 +1070 115106 0.4090 +1070 116068 0.4280 +1070 116840 0.4320 +1070 123811 0.4830 +1070 129049 0.6690 +1070 129401 0.5680 +1070 134359 0.9420 +1070 145508 0.4050 +1070 153241 0.5020 +1070 153364 0.4370 +1070 157378 0.4690 +1070 157574 0.4350 +1070 163786 0.7590 +1070 200894 0.5830 +1070 203286 0.6390 +1070 222235 0.7640 +1070 282809 0.4250 +1070 440093 0.4050 +1070 440686 0.4050 +1070 653604 0.4050 +1071 1191 0.8870 +1071 1401 0.5710 +1071 1581 0.7220 +1071 1622 0.7290 +1071 1636 0.4490 +1071 1952 0.5710 +1071 2147 0.4810 +1071 2303 0.4260 +1071 2590 0.5950 +1071 3069 0.8660 +1071 3075 0.5880 +1071 3156 0.7810 +1071 3250 0.8150 +1071 3426 0.4590 +1071 3569 0.4530 +1071 3630 0.6000 +1071 3931 0.9870 +1071 3949 0.5520 +1071 3990 0.9490 +1071 3991 0.6360 +1071 4018 0.9320 +1071 4023 0.9400 +1071 4481 0.5770 +1071 4524 0.4180 +1071 4547 0.6230 +1071 5004 0.5070 +1071 5005 0.5040 +1071 5340 0.4150 +1071 5360 0.8510 +1071 5444 0.9680 +1071 5446 0.4660 +1071 5465 0.5250 +1071 5468 0.4560 +1071 6256 0.5630 +1071 6257 0.5250 +1071 6272 0.5070 +1071 6288 0.7830 +1071 6289 0.7630 +1071 6291 0.6610 +1071 6648 0.4330 +1071 6720 0.4360 +1071 6721 0.4760 +1071 7376 0.6590 +1071 7391 0.4070 +1071 7412 0.4300 +1071 7436 0.8950 +1071 7941 0.8610 +1071 8504 0.7200 +1071 8542 0.8960 +1071 8882 0.6210 +1071 9213 0.5450 +1071 9370 0.4710 +1071 9388 0.7640 +1071 9404 0.4310 +1071 9619 0.7420 +1071 9971 0.4590 +1071 10062 0.7180 +1071 10221 0.5070 +1071 10628 0.4780 +1071 11216 0.4950 +1071 23539 0.4100 +1071 26119 0.4330 +1071 26998 0.5660 +1071 27329 0.6250 +1071 29881 0.7870 +1071 51085 0.4200 +1071 51129 0.4050 +1071 51297 0.7640 +1071 51441 0.4950 +1071 51449 0.7730 +1071 51599 0.5410 +1071 55076 0.4180 +1071 55829 0.7200 +1071 55911 0.5610 +1071 55937 0.8880 +1071 64240 0.6570 +1071 64241 0.6420 +1071 64788 0.4450 +1071 79135 0.5920 +1071 84722 0.4740 +1071 84811 0.7150 +1071 116519 0.9350 +1071 145173 0.4460 +1071 148113 0.4320 +1071 158219 0.4200 +1071 255738 0.7820 +1071 326625 0.4470 +1071 338328 0.4500 +1071 387715 0.6970 +1071 100528017 0.5770 +1072 1073 0.9720 +1072 1152 0.4550 +1072 1184 0.8080 +1072 1385 0.6270 +1072 1471 0.4310 +1072 1499 0.5140 +1072 1627 0.7340 +1072 1729 0.6100 +1072 1742 0.5620 +1072 1785 0.4710 +1072 1808 0.4340 +1072 1894 0.4810 +1072 1915 0.4250 +1072 1950 0.5190 +1072 1956 0.7940 +1072 1984 0.5220 +1072 2017 0.9960 +1072 2023 0.7550 +1072 2059 0.4030 +1072 2066 0.5450 +1072 2167 0.4090 +1072 2185 0.4130 +1072 2316 0.9160 +1072 2317 0.8290 +1072 2318 0.8120 +1072 2332 0.4140 +1072 2335 0.5210 +1072 2534 0.4450 +1072 2597 0.7720 +1072 2638 0.5100 +1072 2764 0.4500 +1072 2885 0.6870 +1072 2890 0.4880 +1072 2898 0.4170 +1072 2909 0.7500 +1072 2932 0.4620 +1072 2934 0.8670 +1072 3014 0.4180 +1072 3059 0.9950 +1072 3064 0.5460 +1072 3190 0.5330 +1072 3308 0.4420 +1072 3309 0.5680 +1072 3312 0.4720 +1072 3313 0.6340 +1072 3315 0.6060 +1072 3316 0.5420 +1072 3320 0.6880 +1072 3326 0.6880 +1072 3383 0.5450 +1072 3611 0.5270 +1072 3700 0.6000 +1072 3716 0.5230 +1072 3717 0.5350 +1072 3725 0.4570 +1072 3925 0.4840 +1072 3936 0.6310 +1072 3984 0.9990 +1072 3985 0.9950 +1072 4000 0.4360 +1072 4137 0.5250 +1072 4313 0.5510 +1072 4318 0.5900 +1072 4323 0.6630 +1072 4478 0.7690 +1072 4609 0.7060 +1072 4627 0.5860 +1072 4633 0.5200 +1072 4637 0.8380 +1072 4641 0.4130 +1072 4659 0.5500 +1072 4690 0.8320 +1072 4735 0.4030 +1072 4739 0.4590 +1072 4790 0.4230 +1072 4830 0.4270 +1072 4869 0.4790 +1072 4915 0.4140 +1072 4946 0.4360 +1072 5052 0.7040 +1072 5058 0.5800 +1072 5062 0.4230 +1072 5216 0.9940 +1072 5217 0.5670 +1072 5230 0.4830 +1072 5245 0.5280 +1072 5337 0.6710 +1072 5338 0.4890 +1072 5341 0.4320 +1072 5358 0.5150 +1072 5371 0.4090 +1072 5478 0.8800 +1072 5499 0.4820 +1072 5515 0.4870 +1072 5566 0.4750 +1072 5567 0.4580 +1072 5568 0.4600 +1072 5587 0.4370 +1072 5590 0.5310 +1072 5594 0.5800 +1072 5595 0.5270 +1072 5598 0.5500 +1072 5621 0.6010 +1072 5728 0.4720 +1072 5747 0.5340 +1072 5756 0.9130 +1072 5829 0.7950 +1072 5868 0.4260 +1072 5870 0.4200 +1072 5877 0.5180 +1072 5879 0.5420 +1072 5880 0.5600 +1072 5921 0.4220 +1072 5962 0.6170 +1072 6093 0.9240 +1072 6224 0.4540 +1072 6282 0.4170 +1072 6548 0.4190 +1072 6624 0.7750 +1072 6657 0.4130 +1072 6708 0.4040 +1072 6709 0.5130 +1072 6714 0.8470 +1072 6722 0.5040 +1072 6775 0.7530 +1072 6812 0.4300 +1072 6876 0.6910 +1072 6950 0.4470 +1072 7016 0.6110 +1072 7040 0.6170 +1072 7074 0.4600 +1072 7077 0.4550 +1072 7082 0.4090 +1072 7094 0.6870 +1072 7111 0.5570 +1072 7114 0.7370 +1072 7157 0.4520 +1072 7167 0.7550 +1072 7168 0.5240 +1072 7169 0.4550 +1072 7170 0.7500 +1072 7171 0.6300 +1072 7273 0.4120 +1072 7295 0.4110 +1072 7297 0.5160 +1072 7345 0.4460 +1072 7350 0.4030 +1072 7408 0.8810 +1072 7409 0.4610 +1072 7414 0.8330 +1072 7415 0.4050 +1072 7430 0.6360 +1072 7454 0.8880 +1072 7456 0.8450 +1072 7464 0.4530 +1072 7529 0.6880 +1072 7531 0.7230 +1072 7532 0.5790 +1072 7534 0.8880 +1072 7791 0.5220 +1072 7837 0.4970 +1072 7846 0.4080 +1072 7879 0.4520 +1072 8218 0.4650 +1072 8407 0.7160 +1072 8476 0.5140 +1072 8655 0.4330 +1072 8766 0.4650 +1072 8826 0.6110 +1072 8874 0.4420 +1072 8936 0.6010 +1072 8976 0.9970 +1072 8988 0.5310 +1072 8997 0.4050 +1072 9026 0.4960 +1072 9040 0.6570 +1072 9138 0.5770 +1072 9168 0.4400 +1072 9181 0.4640 +1072 9459 0.4060 +1072 9475 0.8760 +1072 9493 0.5680 +1072 9513 0.4940 +1072 9535 0.5340 +1072 9564 0.5470 +1072 9636 0.4090 +1072 9644 0.8320 +1072 9826 0.4020 +1072 9948 0.9940 +1072 10006 0.5970 +1072 10009 0.4590 +1072 10092 0.5790 +1072 10094 0.5220 +1072 10095 0.5390 +1072 10096 0.7500 +1072 10097 0.9630 +1072 10109 0.7490 +1072 10120 0.4620 +1072 10121 0.5080 +1072 10146 0.4020 +1072 10163 0.6110 +1072 10190 0.5720 +1072 10209 0.4020 +1072 10298 0.7550 +1072 10371 0.5860 +1072 10376 0.6510 +1072 10383 0.4140 +1072 10398 0.4830 +1072 10420 0.4050 +1072 10458 0.4900 +1072 10486 0.9380 +1072 10487 0.9780 +1072 10801 0.4280 +1072 10808 0.6350 +1072 10810 0.4320 +1072 10971 0.4220 +1072 11034 0.6370 +1072 11060 0.5540 +1072 11151 0.8600 +1072 11315 0.5040 +1072 11316 0.4020 +1072 11344 0.7600 +1072 11346 0.4800 +1072 23002 0.4060 +1072 23214 0.6800 +1072 23406 0.5820 +1072 23513 0.5830 +1072 23603 0.5560 +1072 23683 0.4130 +1072 25824 0.6020 +1072 26499 0.4310 +1072 27032 0.8710 +1072 27289 0.5590 +1072 28988 0.6210 +1072 29114 0.6280 +1072 29127 0.4750 +1072 29765 0.6160 +1072 29766 0.5680 +1072 29767 0.5580 +1072 29924 0.4090 +1072 30811 0.4420 +1072 51412 0.5640 +1072 51806 0.8110 +1072 54205 0.4730 +1072 54434 0.9980 +1072 54443 0.6410 +1072 54961 0.9890 +1072 55004 0.4320 +1072 55040 0.4500 +1072 55275 0.4090 +1072 55705 0.7460 +1072 55845 0.5280 +1072 56776 0.4670 +1072 56924 0.4120 +1072 57026 0.8940 +1072 57142 0.4800 +1072 57175 0.6440 +1072 57180 0.5480 +1072 64423 0.4620 +1072 64780 0.4450 +1072 65979 0.5130 +1072 80790 0.4720 +1072 81624 0.5940 +1072 83442 0.6060 +1072 83660 0.6430 +1072 84687 0.4160 +1072 84790 0.4640 +1072 84940 0.4990 +1072 85464 0.9870 +1072 85477 0.8660 +1072 90627 0.4850 +1072 91624 0.4760 +1072 91807 0.4540 +1072 91860 0.7970 +1072 103910 0.5480 +1072 120892 0.4450 +1072 123720 0.5710 +1072 134492 0.4210 +1072 137902 0.4930 +1072 163688 0.7960 +1072 203068 0.5170 +1072 203228 0.6840 +1072 221692 0.5110 +1072 285590 0.5780 +1072 345456 0.9580 +1072 345651 0.5620 +1072 375189 0.9650 +1072 445582 0.4080 +1072 644150 0.4670 +1072 653857 0.5570 +1072 728378 0.5050 +1072 100529144 0.8340 +1073 1080 0.4630 +1073 1184 0.8090 +1073 1385 0.4190 +1073 1499 0.4610 +1073 1627 0.7230 +1073 1729 0.5910 +1073 1742 0.5590 +1073 1785 0.4680 +1073 1808 0.4170 +1073 1894 0.4690 +1073 1950 0.5070 +1073 1956 0.4320 +1073 1984 0.4030 +1073 2017 0.9960 +1073 2059 0.4070 +1073 2185 0.4370 +1073 2266 0.4410 +1073 2316 0.8880 +1073 2317 0.8210 +1073 2318 0.8410 +1073 2332 0.4210 +1073 2335 0.4900 +1073 2534 0.4450 +1073 2597 0.5960 +1073 2638 0.4790 +1073 2764 0.4680 +1073 2885 0.6610 +1073 2890 0.4880 +1073 2909 0.7360 +1073 2932 0.4460 +1073 2934 0.8640 +1073 3059 0.9950 +1073 3064 0.5450 +1073 3313 0.5370 +1073 3315 0.5570 +1073 3316 0.5240 +1073 3320 0.6330 +1073 3326 0.6370 +1073 3383 0.5190 +1073 3611 0.4760 +1073 3700 0.6010 +1073 3716 0.4960 +1073 3717 0.5260 +1073 3925 0.4250 +1073 3936 0.5530 +1073 3984 0.9980 +1073 3985 0.9900 +1073 4313 0.5300 +1073 4318 0.5740 +1073 4323 0.6540 +1073 4478 0.6460 +1073 4609 0.6140 +1073 4627 0.4610 +1073 4633 0.5460 +1073 4641 0.4330 +1073 4659 0.5560 +1073 4690 0.8280 +1073 4739 0.4550 +1073 4915 0.4160 +1073 5058 0.5680 +1073 5062 0.4060 +1073 5216 0.9670 +1073 5217 0.5730 +1073 5341 0.4240 +1073 5358 0.5230 +1073 5500 0.5920 +1073 5566 0.4630 +1073 5567 0.4610 +1073 5568 0.4570 +1073 5578 0.5680 +1073 5587 0.4440 +1073 5594 0.5660 +1073 5595 0.4960 +1073 5598 0.5390 +1073 5621 0.6090 +1073 5728 0.4330 +1073 5747 0.5670 +1073 5756 0.8310 +1073 5829 0.7880 +1073 5877 0.5080 +1073 5879 0.5070 +1073 5880 0.5330 +1073 5921 0.4130 +1073 5962 0.6490 +1073 6093 0.8020 +1073 6224 0.4260 +1073 6548 0.4420 +1073 6624 0.7580 +1073 6714 0.7870 +1073 6722 0.4940 +1073 6876 0.4260 +1073 7016 0.5640 +1073 7074 0.5390 +1073 7077 0.4390 +1073 7082 0.4110 +1073 7094 0.6430 +1073 7111 0.5610 +1073 7114 0.4930 +1073 7138 0.6850 +1073 7157 0.4120 +1073 7167 0.6110 +1073 7168 0.5670 +1073 7169 0.6350 +1073 7170 0.7160 +1073 7171 0.5810 +1073 7273 0.4830 +1073 7280 0.5290 +1073 7297 0.4630 +1073 7408 0.8730 +1073 7414 0.8300 +1073 7430 0.6310 +1073 7454 0.8830 +1073 7456 0.8420 +1073 7464 0.4840 +1073 7529 0.5040 +1073 7531 0.5640 +1073 7534 0.7110 +1073 7791 0.4490 +1073 7837 0.4780 +1073 8048 0.4220 +1073 8407 0.4580 +1073 8476 0.5240 +1073 8557 0.4950 +1073 8766 0.4320 +1073 8826 0.6010 +1073 8874 0.4380 +1073 8936 0.6120 +1073 8976 0.9970 +1073 8988 0.5280 +1073 8997 0.4080 +1073 9138 0.5730 +1073 9181 0.4620 +1073 9459 0.4260 +1073 9475 0.7750 +1073 9493 0.5840 +1073 9513 0.5090 +1073 9535 0.5340 +1073 9564 0.5460 +1073 9644 0.8320 +1073 9948 0.9930 +1073 10006 0.5940 +1073 10092 0.4550 +1073 10094 0.4920 +1073 10095 0.5130 +1073 10096 0.6870 +1073 10097 0.9360 +1073 10109 0.5460 +1073 10120 0.4380 +1073 10121 0.4720 +1073 10163 0.6080 +1073 10190 0.5810 +1073 10298 0.7550 +1073 10324 0.5160 +1073 10371 0.5250 +1073 10381 0.5250 +1073 10382 0.4680 +1073 10398 0.4800 +1073 10420 0.4100 +1073 10458 0.4890 +1073 10472 0.5320 +1073 10486 0.7100 +1073 10487 0.6710 +1073 10801 0.4030 +1073 10810 0.4690 +1073 11034 0.9210 +1073 11151 0.8420 +1073 11344 0.7450 +1073 11346 0.4740 +1073 23002 0.4010 +1073 23193 0.4570 +1073 23214 0.6760 +1073 23406 0.4240 +1073 23433 0.4320 +1073 23513 0.5630 +1073 23558 0.5200 +1073 23603 0.5070 +1073 23683 0.4220 +1073 25802 0.4290 +1073 25913 0.4980 +1073 26499 0.4330 +1073 27032 0.6950 +1073 27289 0.5900 +1073 28988 0.4990 +1073 29114 0.4270 +1073 29127 0.4800 +1073 29765 0.6260 +1073 29766 0.5730 +1073 29767 0.5590 +1073 51144 0.4170 +1073 51412 0.4740 +1073 51806 0.5120 +1073 54205 0.4590 +1073 54434 0.9950 +1073 54443 0.5920 +1073 54874 0.5230 +1073 54961 0.9890 +1073 55705 0.7390 +1073 55845 0.5010 +1073 56203 0.6150 +1073 56776 0.5200 +1073 56924 0.4320 +1073 57026 0.8990 +1073 57175 0.6410 +1073 57180 0.5160 +1073 64283 0.4320 +1073 64423 0.4140 +1073 64780 0.4380 +1073 80790 0.4220 +1073 81624 0.5840 +1073 83660 0.6440 +1073 84790 0.5300 +1073 84940 0.5220 +1073 85464 0.9870 +1073 85477 0.8460 +1073 90627 0.4980 +1073 91624 0.4850 +1073 91807 0.4580 +1073 91860 0.4750 +1073 103910 0.4900 +1073 123720 0.5830 +1073 131377 0.5830 +1073 137902 0.4710 +1073 163688 0.4750 +1073 203228 0.6840 +1073 221692 0.5110 +1073 285590 0.5760 +1073 342184 0.4010 +1073 345456 0.9590 +1073 375189 0.9660 +1073 390594 0.8210 +1073 442721 0.4310 +1073 445582 0.4010 +1073 644150 0.4710 +1073 653857 0.5150 +1073 728378 0.4660 +1073 100529144 0.8400 +1075 1124 0.5310 +1075 1200 0.4090 +1075 1215 0.7630 +1075 1277 0.4570 +1075 1294 0.5260 +1075 1453 0.4030 +1075 1471 0.4910 +1075 1474 0.4050 +1075 1475 0.6660 +1075 1504 0.4190 +1075 1508 0.4160 +1075 1509 0.7130 +1075 1510 0.5870 +1075 1511 0.6790 +1075 1514 0.4450 +1075 1520 0.5220 +1075 1522 0.6680 +1075 1803 0.5030 +1075 1828 0.5940 +1075 1834 0.5160 +1075 1991 0.5660 +1075 2153 0.5770 +1075 2157 0.6080 +1075 2268 0.4850 +1075 2348 0.5070 +1075 2625 0.4020 +1075 2801 0.5140 +1075 2890 0.5090 +1075 2896 0.5030 +1075 3001 0.8540 +1075 3002 0.7180 +1075 3113 0.4900 +1075 3115 0.4580 +1075 3117 0.4850 +1075 3118 0.4840 +1075 3119 0.5300 +1075 3120 0.4720 +1075 3122 0.5600 +1075 3123 0.5060 +1075 3127 0.5320 +1075 3552 0.4500 +1075 3553 0.5420 +1075 3558 0.4630 +1075 3848 0.4990 +1075 3857 0.5980 +1075 3916 0.5330 +1075 3920 0.4180 +1075 3998 0.8110 +1075 4905 0.5290 +1075 5045 0.5010 +1075 5265 0.6060 +1075 5476 0.5890 +1075 5551 0.5960 +1075 5552 0.4220 +1075 5641 0.7090 +1075 5650 0.4290 +1075 5657 0.5980 +1075 5660 0.4020 +1075 5788 0.4290 +1075 5896 0.4020 +1075 6396 0.5350 +1075 6648 0.5050 +1075 6811 0.5000 +1075 7039 0.5210 +1075 7177 0.6580 +1075 7373 0.4060 +1075 8530 0.7250 +1075 8615 0.5100 +1075 8722 0.5570 +1075 8774 0.4990 +1075 8775 0.5050 +1075 9117 0.5510 +1075 9554 0.5310 +1075 9570 0.5000 +1075 9632 0.5120 +1075 9871 0.5210 +1075 9919 0.5150 +1075 10072 0.5310 +1075 10113 0.5200 +1075 10146 0.4060 +1075 10175 0.5070 +1075 10282 0.5000 +1075 10342 0.5180 +1075 10427 0.5070 +1075 10484 0.5470 +1075 10652 0.5230 +1075 10802 0.5390 +1075 10959 0.5570 +1075 10960 0.5880 +1075 10972 0.5390 +1075 11005 0.6170 +1075 11196 0.5100 +1075 22872 0.5330 +1075 23256 0.5000 +1075 23682 0.5170 +1075 25818 0.6150 +1075 26984 0.5520 +1075 29952 0.6630 +1075 51128 0.5210 +1075 55014 0.5350 +1075 57864 0.5480 +1075 58485 0.5000 +1075 63908 0.5050 +1075 64689 0.5360 +1075 79748 0.5040 +1075 81562 0.5880 +1075 81704 0.4270 +1075 89866 0.4990 +1075 90411 0.6970 +1075 149111 0.4990 +1075 254263 0.4990 +1075 259240 0.4410 +1075 360203 0.7530 +1075 374354 0.4270 +1075 440387 0.4350 +1080 1173 0.5360 +1080 1175 0.5130 +1080 1179 0.8380 +1080 1180 0.5980 +1080 1181 0.4690 +1080 1182 0.6970 +1080 1183 0.4030 +1080 1184 0.5440 +1080 1186 0.5260 +1080 1357 0.5570 +1080 1365 0.4760 +1080 1499 0.5810 +1080 1601 0.7420 +1080 1742 0.5940 +1080 1756 0.4400 +1080 1778 0.5310 +1080 1780 0.5110 +1080 1781 0.5110 +1080 1783 0.5160 +1080 1811 0.8880 +1080 1836 0.6490 +1080 1956 0.4080 +1080 1973 0.4170 +1080 1981 0.4330 +1080 1990 0.4370 +1080 1991 0.5320 +1080 2010 0.6080 +1080 2202 0.4300 +1080 2299 0.4210 +1080 2302 0.5930 +1080 2316 0.9570 +1080 2317 0.5120 +1080 2318 0.5200 +1080 2597 0.4550 +1080 2670 0.5610 +1080 2911 0.4200 +1080 2980 0.8050 +1080 2981 0.7690 +1080 2984 0.8250 +1080 3043 0.6600 +1080 3064 0.5400 +1080 3267 0.5220 +1080 3297 0.5490 +1080 3301 0.8490 +1080 3304 0.4950 +1080 3308 0.9250 +1080 3309 0.5590 +1080 3312 0.9860 +1080 3315 0.7800 +1080 3316 0.6260 +1080 3320 0.9860 +1080 3326 0.9640 +1080 3337 0.8250 +1080 3475 0.4180 +1080 3482 0.4320 +1080 3553 0.5140 +1080 3569 0.4810 +1080 3575 0.4360 +1080 3576 0.5360 +1080 3586 0.4700 +1080 3596 0.4010 +1080 3630 0.5290 +1080 3689 0.4550 +1080 3710 0.4220 +1080 3757 0.5200 +1080 3758 0.9250 +1080 3764 0.4470 +1080 3767 0.5530 +1080 3768 0.4080 +1080 3772 0.4310 +1080 3777 0.5550 +1080 3783 0.6510 +1080 3784 0.4790 +1080 3845 0.4250 +1080 3856 0.7520 +1080 3875 0.7020 +1080 3880 0.6400 +1080 3920 0.5840 +1080 3949 0.5310 +1080 4036 0.6110 +1080 4074 0.4260 +1080 4301 0.4830 +1080 4524 0.4940 +1080 4586 0.6020 +1080 4645 0.6330 +1080 4646 0.4260 +1080 4734 0.6060 +1080 4883 0.5180 +1080 4914 0.4520 +1080 5029 0.4590 +1080 5068 0.4100 +1080 5071 0.6130 +1080 5116 0.4310 +1080 5139 0.5180 +1080 5172 0.7670 +1080 5174 0.9690 +1080 5205 0.4530 +1080 5243 0.5720 +1080 5244 0.4580 +1080 5265 0.5900 +1080 5304 0.4270 +1080 5310 0.4920 +1080 5311 0.4940 +1080 5518 0.5890 +1080 5562 0.9530 +1080 5563 0.9070 +1080 5564 0.9080 +1080 5565 0.9440 +1080 5566 0.9820 +1080 5567 0.9760 +1080 5568 0.9760 +1080 5571 0.9220 +1080 5593 0.5150 +1080 5624 0.4130 +1080 5644 0.8540 +1080 5645 0.7070 +1080 5646 0.4770 +1080 5652 0.4400 +1080 5682 0.4120 +1080 5683 0.4340 +1080 5684 0.6110 +1080 5685 0.4120 +1080 5686 0.4350 +1080 5687 0.4440 +1080 5688 0.4480 +1080 5689 0.4620 +1080 5690 0.4190 +1080 5691 0.4740 +1080 5692 0.4750 +1080 5693 0.4330 +1080 5694 0.4370 +1080 5695 0.4020 +1080 5696 0.4240 +1080 5698 0.4240 +1080 5699 0.4020 +1080 5700 0.4700 +1080 5701 0.4730 +1080 5702 0.4460 +1080 5704 0.4790 +1080 5705 0.4620 +1080 5706 0.4370 +1080 5707 0.4160 +1080 5708 0.4940 +1080 5709 0.4420 +1080 5710 0.4670 +1080 5711 0.4300 +1080 5713 0.4640 +1080 5714 0.4100 +1080 5715 0.4070 +1080 5716 0.4300 +1080 5717 0.4690 +1080 5718 0.4350 +1080 5720 0.4010 +1080 5721 0.4480 +1080 5867 0.5260 +1080 5868 0.6570 +1080 5884 0.4040 +1080 5962 0.6100 +1080 5972 0.5230 +1080 6035 0.4400 +1080 6048 0.9790 +1080 6233 0.6010 +1080 6240 0.4200 +1080 6337 0.8210 +1080 6338 0.8950 +1080 6340 0.8860 +1080 6343 0.5140 +1080 6344 0.6460 +1080 6400 0.6390 +1080 6440 0.4210 +1080 6446 0.6050 +1080 6522 0.6370 +1080 6523 0.4780 +1080 6531 0.4970 +1080 6535 0.4020 +1080 6548 0.5330 +1080 6549 0.6440 +1080 6550 0.8280 +1080 6555 0.5130 +1080 6557 0.4710 +1080 6558 0.8160 +1080 6559 0.5440 +1080 6572 0.4520 +1080 6606 0.4750 +1080 6607 0.4770 +1080 6622 0.5270 +1080 6690 0.8880 +1080 6714 0.4160 +1080 6804 0.6700 +1080 6809 0.6200 +1080 6844 0.5520 +1080 6845 0.5730 +1080 7018 0.4390 +1080 7037 0.5900 +1080 7082 0.9640 +1080 7099 0.4620 +1080 7124 0.4870 +1080 7157 0.4380 +1080 7169 0.4540 +1080 7251 0.6410 +1080 7311 0.4870 +1080 7314 0.4770 +1080 7316 0.5110 +1080 7323 0.4780 +1080 7329 0.6180 +1080 7334 0.5420 +1080 7335 0.4990 +1080 7356 0.4020 +1080 7415 0.9380 +1080 7430 0.8980 +1080 7431 0.4320 +1080 7529 0.9440 +1080 7532 0.9140 +1080 7534 0.9170 +1080 8100 0.4790 +1080 8165 0.4450 +1080 8301 0.5260 +1080 8411 0.4710 +1080 8647 0.4660 +1080 8655 0.5160 +1080 8665 0.4370 +1080 8671 0.6450 +1080 8673 0.5640 +1080 8674 0.4320 +1080 8675 0.5030 +1080 8701 0.5560 +1080 8724 0.4550 +1080 8735 0.4330 +1080 8766 0.7090 +1080 8773 0.6150 +1080 8878 0.6080 +1080 8988 0.5020 +1080 9075 0.4530 +1080 9100 0.9350 +1080 9146 0.4160 +1080 9170 0.5340 +1080 9201 0.5110 +1080 9341 0.5590 +1080 9351 0.9750 +1080 9368 0.9990 +1080 9429 0.7330 +1080 9482 0.4700 +1080 9497 0.6400 +1080 9498 0.4300 +1080 9635 0.8290 +1080 9775 0.4530 +1080 9856 0.4200 +1080 9892 0.5190 +1080 9943 0.4930 +1080 9961 0.4670 +1080 9971 0.4100 +1080 10008 0.4020 +1080 10013 0.8480 +1080 10061 0.4020 +1080 10095 0.4400 +1080 10109 0.4130 +1080 10134 0.8080 +1080 10149 0.6830 +1080 10197 0.4010 +1080 10213 0.4600 +1080 10226 0.4400 +1080 10228 0.5920 +1080 10257 0.6380 +1080 10273 0.9700 +1080 10299 0.4440 +1080 10381 0.4210 +1080 10399 0.4590 +1080 10552 0.4370 +1080 10598 0.8670 +1080 10613 0.5860 +1080 10618 0.4800 +1080 10728 0.5810 +1080 10768 0.4560 +1080 10861 0.4410 +1080 10869 0.4350 +1080 10956 0.6290 +1080 10963 0.5440 +1080 11160 0.5720 +1080 11200 0.5450 +1080 11231 0.4670 +1080 11254 0.4440 +1080 11315 0.5110 +1080 11330 0.7740 +1080 22802 0.7470 +1080 22941 0.6030 +1080 23198 0.4200 +1080 23327 0.7640 +1080 23433 0.7210 +1080 23435 0.6930 +1080 23436 0.4890 +1080 23507 0.4610 +1080 23553 0.5740 +1080 23640 0.5520 +1080 25978 0.4630 +1080 26003 0.7210 +1080 26119 0.4990 +1080 26232 0.4560 +1080 26526 0.5500 +1080 27164 0.4890 +1080 27243 0.4110 +1080 27248 0.6210 +1080 27347 0.4530 +1080 29927 0.4640 +1080 29941 0.4310 +1080 29978 0.5910 +1080 29988 0.4530 +1080 51009 0.6170 +1080 51081 0.4900 +1080 51143 0.5080 +1080 51257 0.6850 +1080 51422 0.9050 +1080 51465 0.6020 +1080 51806 0.4150 +1080 53632 0.9010 +1080 54102 0.4970 +1080 54788 0.4160 +1080 55107 0.8820 +1080 55144 0.4500 +1080 55666 0.4520 +1080 55847 0.4890 +1080 56262 0.5170 +1080 56676 0.5380 +1080 57120 0.9920 +1080 57595 0.4540 +1080 59272 0.5180 +1080 59341 0.4050 +1080 64083 0.4020 +1080 65010 0.9210 +1080 65125 0.5680 +1080 65266 0.5700 +1080 65267 0.5450 +1080 79139 0.9170 +1080 79849 0.8820 +1080 80131 0.4610 +1080 80331 0.6540 +1080 80333 0.5150 +1080 81537 0.4840 +1080 83697 0.5910 +1080 83723 0.5280 +1080 83987 0.4170 +1080 83992 0.5970 +1080 84230 0.4420 +1080 84868 0.4500 +1080 89853 0.4490 +1080 91319 0.5700 +1080 91445 0.7380 +1080 91860 0.4010 +1080 92421 0.4010 +1080 93343 0.4060 +1080 93986 0.5000 +1080 115019 0.9100 +1080 115111 0.4290 +1080 116369 0.7250 +1080 122706 0.4160 +1080 128866 0.5960 +1080 134864 0.4580 +1080 136541 0.6960 +1080 140735 0.5130 +1080 143471 0.4370 +1080 150684 0.6160 +1080 196527 0.4180 +1080 200576 0.4530 +1080 200894 0.4670 +1080 203859 0.4090 +1080 284106 0.4240 +1080 340273 0.4150 +1080 359845 0.7070 +1080 375611 0.7140 +1080 442867 0.4220 +1080 442868 0.4220 +1080 653145 0.4340 +1080 727897 0.5820 +1080 114483834 0.4030 +1081 1082 0.9610 +1081 1392 0.5280 +1081 1442 0.7440 +1081 1443 0.7420 +1081 1444 0.4070 +1081 2069 0.4700 +1081 2488 0.9990 +1081 2492 0.9900 +1081 2641 0.4820 +1081 2688 0.4480 +1081 2689 0.4680 +1081 2691 0.5830 +1081 2695 0.4540 +1081 2778 0.9040 +1081 2782 0.8130 +1081 2828 0.6740 +1081 3035 0.7610 +1081 3375 0.4510 +1081 3623 0.4350 +1081 3640 0.4100 +1081 3972 0.9560 +1081 3973 0.8190 +1081 5184 0.4940 +1081 5289 0.6880 +1081 5443 0.8490 +1081 5526 0.4260 +1081 5617 0.6120 +1081 5741 0.5340 +1081 5744 0.4060 +1081 5901 0.4320 +1081 5996 0.4460 +1081 6000 0.4040 +1081 6002 0.4310 +1081 6343 0.4250 +1081 6714 0.5390 +1081 6752 0.4940 +1081 7022 0.7530 +1081 7200 0.5050 +1081 7252 0.9990 +1081 7253 0.9640 +1081 7432 0.4620 +1081 8601 0.4480 +1081 8786 0.4020 +1081 8801 0.7780 +1081 10287 0.4140 +1081 10587 0.4110 +1081 23438 0.7610 +1081 26575 0.4110 +1081 30849 0.5290 +1081 54331 0.8000 +1081 55636 0.4300 +1081 57105 0.5090 +1081 60626 0.4230 +1081 64377 0.7580 +1081 79924 0.4460 +1081 83729 0.4010 +1081 84188 0.5420 +1081 85397 0.4300 +1081 93659 0.9990 +1081 94115 0.9610 +1081 114335 0.8350 +1081 122876 0.9280 +1081 170589 0.9720 +1081 283383 0.4280 +1081 431704 0.4180 +1082 1442 0.4010 +1082 2488 0.6100 +1082 2782 0.8000 +1082 3972 0.6120 +1082 3973 0.9200 +1082 7252 0.5750 +1082 29124 0.4060 +1082 54331 0.8000 +1082 56891 0.4320 +1082 93659 0.9340 +1082 94115 0.9150 +1082 114335 0.4640 +1082 148003 0.5230 +1084 1548 0.4070 +1084 1549 0.4770 +1084 1553 0.4830 +1084 1604 0.4810 +1084 2086 0.6860 +1084 3055 0.4320 +1084 3577 0.4790 +1084 4680 0.4570 +1084 5676 0.5890 +1084 5724 0.4250 +1084 6279 0.4160 +1084 6283 0.4540 +1084 6850 0.6460 +1084 7099 0.4610 +1084 7409 0.5440 +1084 27128 0.6330 +1084 30816 0.5000 +1084 57126 0.4190 +1084 84658 0.6630 +1084 114836 0.4200 +1084 125931 0.5420 +1084 405754 0.6850 +1084 100049587 0.4670 +1087 1548 0.4810 +1087 1549 0.5350 +1087 1553 0.5550 +1087 1811 0.4550 +1087 2822 0.4180 +1087 2888 0.4350 +1087 7512 0.4210 +1087 22802 0.4500 +1087 54474 0.4290 +1087 54827 0.5230 +1087 54860 0.5190 +1087 57126 0.4110 +1087 64763 0.5500 +1087 642574 0.4080 +1088 1236 0.4590 +1088 1378 0.7480 +1088 1436 0.4150 +1088 1437 0.5060 +1088 1440 0.5190 +1088 1499 0.4780 +1088 1511 0.7260 +1088 1548 0.4080 +1088 1549 0.4480 +1088 1553 0.4500 +1088 1604 0.5410 +1088 1667 0.8130 +1088 1669 0.9990 +1088 1991 0.9070 +1088 2086 0.5220 +1088 2209 0.5410 +1088 2212 0.4470 +1088 2321 0.4830 +1088 2335 0.5110 +1088 2352 0.4200 +1088 2357 0.5640 +1088 2526 0.7770 +1088 2811 0.5520 +1088 2919 0.4150 +1088 2993 0.8050 +1088 3055 0.4870 +1088 3383 0.4830 +1088 3458 0.4960 +1088 3553 0.4700 +1088 3563 0.5970 +1088 3569 0.4770 +1088 3575 0.4500 +1088 3576 0.5340 +1088 3577 0.4780 +1088 3579 0.5350 +1088 3586 0.4660 +1088 3605 0.4140 +1088 3674 0.6970 +1088 3676 0.4210 +1088 3678 0.4580 +1088 3683 0.6130 +1088 3684 0.8640 +1088 3687 0.5930 +1088 3688 0.5140 +1088 3689 0.7470 +1088 3690 0.6200 +1088 3903 0.4930 +1088 3934 0.6260 +1088 3958 0.8390 +1088 4057 0.8820 +1088 4067 0.4590 +1088 4311 0.5280 +1088 4317 0.8930 +1088 4318 0.4330 +1088 4353 0.9380 +1088 4680 0.9930 +1088 4684 0.7970 +1088 4973 0.5760 +1088 5175 0.6220 +1088 5657 0.6380 +1088 5788 0.6810 +1088 6037 0.8210 +1088 6347 0.4150 +1088 6401 0.5270 +1088 6402 0.7650 +1088 6403 0.4320 +1088 6947 0.6010 +1088 7040 0.4190 +1088 7056 0.4220 +1088 7099 0.4360 +1088 7124 0.4590 +1088 7852 0.4120 +1088 8993 0.5920 +1088 9332 0.6090 +1088 10321 0.6020 +1088 10562 0.7540 +1088 11117 0.4300 +1088 23569 0.4100 +1088 27128 0.5630 +1088 27181 0.5770 +1088 29126 0.6790 +1088 50943 0.4780 +1088 56729 0.4590 +1088 57126 0.6390 +1088 57211 0.4350 +1088 202333 0.4060 +1088 405754 0.5220 +1088 100133941 0.4680 +1089 1548 0.4610 +1089 1549 0.4970 +1089 1553 0.5310 +1089 2268 0.5580 +1089 2324 0.4850 +1089 3055 0.4460 +1089 3101 0.4380 +1089 3916 0.4180 +1089 4332 0.4750 +1089 5676 0.5010 +1089 5799 0.4300 +1089 6036 0.4180 +1089 6283 0.4490 +1089 7329 0.4220 +1089 7941 0.6140 +1089 8638 0.4380 +1089 9543 0.4020 +1089 11024 0.5020 +1089 51311 0.4970 +1089 56971 0.4570 +1089 57578 0.5750 +1089 80380 0.4280 +1089 124599 0.4220 +1089 125931 0.6000 +1089 128646 0.4240 +1089 146722 0.4640 +1089 160364 0.4080 +1089 256356 0.5960 +1089 259232 0.5510 +1089 285175 0.5700 +1101 1280 0.5360 +1101 1297 0.4740 +1101 1298 0.4790 +1101 1311 0.6520 +1101 1404 0.5130 +1101 1634 0.4370 +1101 1833 0.4350 +1101 2131 0.4070 +1101 2331 0.6840 +1101 2691 0.6150 +1101 3655 0.6610 +1101 3672 0.6840 +1101 3673 0.9190 +1101 3674 0.6610 +1101 3675 0.6990 +1101 3676 0.6920 +1101 3678 0.6710 +1101 3679 0.6710 +1101 3680 0.6850 +1101 3685 0.7590 +1101 3688 0.9110 +1101 3690 0.6840 +1101 3691 0.6980 +1101 3693 0.6640 +1101 3694 0.6900 +1101 3695 0.7040 +1101 3696 0.7000 +1101 4060 0.6420 +1101 4146 0.6060 +1101 4958 0.6560 +1101 4969 0.5470 +1101 5549 0.6640 +1101 5747 0.6500 +1101 6251 0.4780 +1101 7057 0.4770 +1101 7059 0.4020 +1101 7060 0.4490 +1101 8483 0.5270 +1101 8515 0.7250 +1101 8516 0.7140 +1101 9362 0.4370 +1101 10136 0.6000 +1101 10143 0.4070 +1101 10233 0.4230 +1101 11081 0.4670 +1101 22801 0.7200 +1101 22859 0.5230 +1101 23266 0.5500 +1101 23284 0.5370 +1101 23436 0.6000 +1101 26254 0.4240 +1101 54829 0.5740 +1101 55379 0.4060 +1101 56899 0.4150 +1101 57470 0.4200 +1101 79442 0.4910 +1101 83987 0.4230 +1101 93517 0.4520 +1101 116064 0.4600 +1101 122769 0.5890 +1101 123355 0.4510 +1101 140683 0.8460 +1101 148113 0.4100 +1101 245812 0.6120 +1101 255252 0.4960 +1101 401387 0.4370 +1101 474354 0.4860 +1102 1104 0.4270 +1102 2862 0.4630 +1102 4538 0.4620 +1102 5296 0.4480 +1102 8452 0.4430 +1102 9445 0.6530 +1102 10161 0.7550 +1102 10477 0.5650 +1102 22862 0.5650 +1102 51131 0.4790 +1102 55213 0.6980 +1102 57105 0.4920 +1102 57507 0.4520 +1102 81602 0.5550 +1102 81617 0.4360 +1102 83852 0.4960 +1102 134265 0.4620 +1102 134266 0.4660 +1102 134492 0.6070 +1102 139221 0.4710 +1102 148156 0.4270 +1102 203074 0.4360 +1102 283629 0.4900 +1103 1119 0.9180 +1103 1120 0.9110 +1103 1128 0.5600 +1103 1132 0.4620 +1103 1136 0.5240 +1103 1145 0.4170 +1103 1270 0.5740 +1103 1376 0.4200 +1103 1384 0.4380 +1103 1385 0.4160 +1103 1392 0.4140 +1103 1431 0.5850 +1103 1536 0.4450 +1103 1621 0.7640 +1103 1641 0.4120 +1103 1644 0.4740 +1103 1742 0.4190 +1103 1812 0.4340 +1103 1813 0.4830 +1103 1995 0.5190 +1103 2026 0.4210 +1103 2353 0.5410 +1103 2571 0.7030 +1103 2572 0.6330 +1103 2596 0.4790 +1103 2597 0.4400 +1103 2658 0.4900 +1103 2668 0.5930 +1103 2670 0.7430 +1103 2891 0.5890 +1103 2902 0.4560 +1103 3060 0.4880 +1103 3110 0.5690 +1103 3295 0.8140 +1103 3630 0.4200 +1103 3670 0.6060 +1103 3960 0.4180 +1103 4128 0.4240 +1103 4129 0.4610 +1103 4133 0.7300 +1103 4137 0.4470 +1103 4593 0.4470 +1103 4741 0.5240 +1103 4744 0.6180 +1103 4747 0.5980 +1103 4803 0.7730 +1103 4804 0.6380 +1103 4842 0.7600 +1103 4852 0.6960 +1103 4908 0.5080 +1103 4909 0.4050 +1103 4914 0.5820 +1103 4915 0.4610 +1103 4967 0.4970 +1103 5074 0.4260 +1103 5080 0.4180 +1103 5173 0.4490 +1103 5409 0.4470 +1103 5457 0.4530 +1103 5663 0.4310 +1103 5802 0.4950 +1103 5816 0.7720 +1103 5913 0.6420 +1103 6342 0.5270 +1103 6469 0.4200 +1103 6530 0.4740 +1103 6531 0.4530 +1103 6570 0.6010 +1103 6571 0.7470 +1103 6572 0.9960 +1103 6622 0.4460 +1103 6647 0.7410 +1103 6750 0.6680 +1103 6853 0.5840 +1103 6854 0.4430 +1103 6855 0.6230 +1103 6863 0.8300 +1103 6869 0.4210 +1103 7054 0.8810 +1103 7345 0.5050 +1103 7432 0.7200 +1103 7498 0.4740 +1103 7837 0.5450 +1103 8022 0.4490 +1103 8224 0.4550 +1103 8292 0.4190 +1103 8309 0.4320 +1103 8929 0.4470 +1103 8973 0.4550 +1103 9152 0.4780 +1103 9371 0.4490 +1103 9399 0.4530 +1103 9607 0.5280 +1103 10215 0.4750 +1103 10449 0.4360 +1103 10763 0.5070 +1103 22920 0.8480 +1103 23230 0.5990 +1103 23435 0.4430 +1103 23621 0.4470 +1103 27035 0.4200 +1103 51083 0.7200 +1103 55188 0.4310 +1103 55584 0.8010 +1103 56261 0.9240 +1103 57030 0.6470 +1103 57053 0.7740 +1103 57084 0.6790 +1103 60482 0.7740 +1103 84152 0.5420 +1103 84263 0.5030 +1103 94233 0.4700 +1103 137902 0.5670 +1103 140679 0.6300 +1103 140856 0.4520 +1103 146713 0.6610 +1103 162466 0.9030 +1103 246213 0.5980 +1103 285489 0.4510 +1103 338917 0.4160 +1103 109703458 0.6850 +1104 1434 0.6490 +1104 2237 0.4310 +1104 2547 0.4570 +1104 3012 0.5530 +1104 3014 0.6130 +1104 3015 0.5670 +1104 3018 0.4110 +1104 3021 0.5570 +1104 3065 0.4080 +1104 3169 0.4550 +1104 3190 0.7630 +1104 3619 0.5130 +1104 3832 0.4980 +1104 3833 0.4460 +1104 3836 0.9000 +1104 3837 0.9360 +1104 3838 0.8880 +1104 3839 0.9760 +1104 3840 0.9930 +1104 3841 0.7510 +1104 3842 0.4610 +1104 3843 0.4330 +1104 4001 0.5080 +1104 4085 0.4400 +1104 4171 0.4420 +1104 4172 0.4450 +1104 4173 0.4940 +1104 4174 0.5270 +1104 4176 0.5410 +1104 4538 0.4700 +1104 4609 0.4680 +1104 4678 0.6540 +1104 4750 0.5120 +1104 4751 0.4400 +1104 4752 0.4890 +1104 4926 0.5220 +1104 4927 0.4480 +1104 4928 0.4820 +1104 5036 0.4470 +1104 5347 0.4540 +1104 5496 0.5400 +1104 5757 0.4160 +1104 5868 0.6980 +1104 5877 0.9280 +1104 5901 0.9990 +1104 5902 0.9890 +1104 5903 0.9770 +1104 5905 0.9930 +1104 5921 0.5140 +1104 5965 0.5040 +1104 6147 0.5640 +1104 6472 0.4160 +1104 6503 0.4710 +1104 6599 0.5890 +1104 6613 0.4050 +1104 6688 0.4360 +1104 6787 0.4730 +1104 7141 0.4120 +1104 7150 0.4690 +1104 7153 0.5690 +1104 7157 0.5730 +1104 7329 0.8610 +1104 7337 0.4040 +1104 7341 0.4210 +1104 7443 0.4400 +1104 7465 0.4710 +1104 7514 0.9270 +1104 7520 0.4800 +1104 8021 0.5020 +1104 8290 0.5230 +1104 8337 0.9810 +1104 8338 0.9820 +1104 8340 0.4050 +1104 8341 0.4010 +1104 8342 0.4060 +1104 8345 0.5920 +1104 8348 0.5340 +1104 8349 0.9800 +1104 8350 0.5110 +1104 8356 0.6040 +1104 8361 0.8040 +1104 8369 0.4070 +1104 8411 0.5230 +1104 8480 0.4020 +1104 8498 0.9780 +1104 8874 0.4220 +1104 8900 0.5040 +1104 8970 0.4140 +1104 9212 0.5460 +1104 9401 0.4050 +1104 9555 0.4790 +1104 9584 0.4660 +1104 9670 0.5420 +1104 9688 0.6390 +1104 9787 0.8630 +1104 9928 0.4670 +1104 9972 0.7980 +1104 10051 0.5020 +1104 10073 0.4240 +1104 10146 0.4090 +1104 10204 0.8610 +1104 10482 0.4630 +1104 10514 0.4470 +1104 10527 0.4230 +1104 10600 0.4220 +1104 10744 0.4180 +1104 10762 0.7500 +1104 10783 0.5460 +1104 10856 0.4580 +1104 11004 0.4120 +1104 11198 0.4090 +1104 11200 0.4090 +1104 11260 0.5700 +1104 22879 0.4030 +1104 22894 0.6560 +1104 22974 0.5150 +1104 23165 0.4690 +1104 23306 0.6520 +1104 23310 0.4490 +1104 23397 0.4290 +1104 23463 0.4450 +1104 23476 0.6560 +1104 23633 0.8650 +1104 23636 0.5130 +1104 25909 0.4660 +1104 26130 0.4410 +1104 26261 0.6760 +1104 26354 0.7430 +1104 27037 0.4010 +1104 28989 0.9280 +1104 29889 0.7510 +1104 51203 0.8510 +1104 51454 0.4360 +1104 51501 0.4010 +1104 51622 0.4770 +1104 51655 0.4260 +1104 53371 0.4220 +1104 54145 0.4180 +1104 54552 0.7550 +1104 54623 0.5150 +1104 54892 0.5220 +1104 55143 0.6180 +1104 55213 0.4080 +1104 55226 0.7030 +1104 55655 0.4300 +1104 55746 0.4550 +1104 55764 0.4630 +1104 55920 0.5630 +1104 56647 0.5510 +1104 57096 0.5620 +1104 57122 0.7590 +1104 57510 0.6360 +1104 65979 0.4310 +1104 79577 0.4060 +1104 79648 0.6310 +1104 81554 0.4460 +1104 81620 0.4590 +1104 81669 0.6260 +1104 83858 0.4280 +1104 83903 0.5090 +1104 84174 0.4850 +1104 84220 0.6190 +1104 84315 0.4020 +1104 84823 0.4610 +1104 85236 0.4230 +1104 89796 0.4670 +1104 90865 0.4060 +1104 128312 0.4030 +1104 151648 0.4370 +1104 158983 0.4080 +1104 221960 0.4760 +1104 259266 0.4610 +1104 282808 0.5680 +1104 283383 0.7170 +1104 284654 0.4430 +1104 286436 0.4040 +1104 401265 0.6070 +1104 402569 0.6850 +1104 440093 0.5230 +1104 440686 0.5230 +1104 440689 0.5050 +1104 653489 0.7720 +1104 653604 0.5430 +1104 727851 0.5300 +1104 729540 0.4100 +1104 729857 0.4270 +1104 114483833 0.4040 +1105 1107 0.7100 +1105 1108 0.6710 +1105 1316 0.4600 +1105 1457 0.7690 +1105 1460 0.6270 +1105 2033 0.4590 +1105 2099 0.6120 +1105 2146 0.4970 +1105 2186 0.7810 +1105 2294 0.4700 +1105 2494 0.5570 +1105 2648 0.7290 +1105 2950 0.4410 +1105 3005 0.4330 +1105 3012 0.5920 +1105 3013 0.5640 +1105 3014 0.6510 +1105 3015 0.8940 +1105 3017 0.6460 +1105 3018 0.6490 +1105 3020 0.9270 +1105 3021 0.9940 +1105 3065 0.6690 +1105 3066 0.4890 +1105 3169 0.4760 +1105 3205 0.6460 +1105 3622 0.6750 +1105 4298 0.4060 +1105 4343 0.5350 +1105 4601 0.4510 +1105 4609 0.4850 +1105 4824 0.4680 +1105 5431 0.4800 +1105 5432 0.7150 +1105 5728 0.5200 +1105 5753 0.4400 +1105 5888 0.4490 +1105 5903 0.5280 +1105 5927 0.4240 +1105 5928 0.4110 +1105 5929 0.4860 +1105 5931 0.4320 +1105 5970 0.5160 +1105 6046 0.4180 +1105 6194 0.4240 +1105 6294 0.6070 +1105 6314 0.5690 +1105 6426 0.4910 +1105 6594 0.5350 +1105 6595 0.6750 +1105 6597 0.6850 +1105 6598 0.4470 +1105 6599 0.5470 +1105 6601 0.4830 +1105 6602 0.5810 +1105 6603 0.4170 +1105 6690 0.4670 +1105 6749 0.9010 +1105 6827 0.6670 +1105 6829 0.8300 +1105 6830 0.7250 +1105 6839 0.4220 +1105 6872 0.4930 +1105 6878 0.5340 +1105 6880 0.5560 +1105 6881 0.5870 +1105 6883 0.5850 +1105 6885 0.5680 +1105 6908 0.5190 +1105 6917 0.4440 +1105 6919 0.4270 +1105 6920 0.4290 +1105 6944 0.4400 +1105 7113 0.5090 +1105 7157 0.4340 +1105 7158 0.4380 +1105 7290 0.4170 +1105 7403 0.4840 +1105 7415 0.5920 +1105 7486 0.4060 +1105 7528 0.6400 +1105 7764 0.5660 +1105 8019 0.4650 +1105 8202 0.6150 +1105 8289 0.4490 +1105 8290 0.9890 +1105 8295 0.4650 +1105 8331 0.5640 +1105 8334 0.5710 +1105 8337 0.8100 +1105 8338 0.8090 +1105 8340 0.6500 +1105 8341 0.6470 +1105 8342 0.6550 +1105 8345 0.6480 +1105 8347 0.6490 +1105 8348 0.6540 +1105 8349 0.8610 +1105 8350 0.9620 +1105 8351 0.9200 +1105 8352 0.9400 +1105 8353 0.9410 +1105 8354 0.9190 +1105 8355 0.9190 +1105 8356 0.9940 +1105 8357 0.9190 +1105 8358 0.9190 +1105 8361 0.7660 +1105 8369 0.5470 +1105 8405 0.6870 +1105 8467 0.6160 +1105 8607 0.5250 +1105 8661 0.4060 +1105 8815 0.4770 +1105 8841 0.4060 +1105 8850 0.7240 +1105 8930 0.4360 +1105 8968 0.9190 +1105 8970 0.6470 +1105 9031 0.4830 +1105 9044 0.6060 +1105 9070 0.4050 +1105 9101 0.4360 +1105 9113 0.4600 +1105 9373 0.5150 +1105 9611 0.5850 +1105 9646 0.8830 +1105 9739 0.6290 +1105 9774 0.5840 +1105 9869 0.4190 +1105 9968 0.4240 +1105 10009 0.5830 +1105 10488 0.4260 +1105 10524 0.4730 +1105 10664 0.5400 +1105 10765 0.4190 +1105 10856 0.4770 +1105 10919 0.6090 +1105 10933 0.7330 +1105 10951 0.6030 +1105 11091 0.6610 +1105 11176 0.4350 +1105 11177 0.7200 +1105 11198 0.8610 +1105 11335 0.4990 +1105 23028 0.8300 +1105 23076 0.4440 +1105 23112 0.5380 +1105 23133 0.6070 +1105 23168 0.9800 +1105 23186 0.4290 +1105 23363 0.5290 +1105 23411 0.4600 +1105 23468 0.5670 +1105 23469 0.4330 +1105 23476 0.6890 +1105 23512 0.4680 +1105 25836 0.6380 +1105 25842 0.4680 +1105 25942 0.5690 +1105 26523 0.5880 +1105 27161 0.5960 +1105 27327 0.5170 +1105 29072 0.8450 +1105 29128 0.4640 +1105 51574 0.4340 +1105 51755 0.4410 +1105 51773 0.4620 +1105 54145 0.6520 +1105 54556 0.6720 +1105 54623 0.8000 +1105 54737 0.6300 +1105 55023 0.5190 +1105 55193 0.5210 +1105 55636 0.7270 +1105 55660 0.4310 +1105 55677 0.4490 +1105 55766 0.5640 +1105 55814 0.4120 +1105 55869 0.4140 +1105 55904 0.5470 +1105 55929 0.4030 +1105 56254 0.5730 +1105 56852 0.4260 +1105 56916 0.4230 +1105 56943 0.5320 +1105 57332 0.4510 +1105 57492 0.4140 +1105 57504 0.4920 +1105 57621 0.4410 +1105 57680 0.7690 +1105 57697 0.4700 +1105 58508 0.4520 +1105 58517 0.5020 +1105 64919 0.4910 +1105 79577 0.7290 +1105 79913 0.4660 +1105 80205 0.7100 +1105 83444 0.4540 +1105 83860 0.6960 +1105 84181 0.7750 +1105 84444 0.4640 +1105 84661 0.4450 +1105 85236 0.6470 +1105 85456 0.4730 +1105 93986 0.4400 +1105 94239 0.7100 +1105 112869 0.7170 +1105 123169 0.5360 +1105 125476 0.5650 +1105 126961 0.9320 +1105 128312 0.6500 +1105 140890 0.4790 +1105 147912 0.5200 +1105 148327 0.4260 +1105 153642 0.4590 +1105 192669 0.5540 +1105 192670 0.5570 +1105 221037 0.5620 +1105 255626 0.6560 +1105 333932 0.9190 +1105 440093 0.9890 +1105 440686 0.9890 +1105 474382 0.6000 +1105 653604 0.9940 +1106 3015 0.4200 +1106 5432 0.4110 +1106 6594 0.4270 +1106 6749 0.5470 +1106 6827 0.4370 +1106 6829 0.4440 +1106 7157 0.4330 +1106 7341 0.4150 +1106 8361 0.4980 +1106 8467 0.4400 +1106 9646 0.6790 +1106 11198 0.5250 +1106 23476 0.6020 +1106 29072 0.4410 +1106 54623 0.6490 +1106 57697 0.4190 +1106 85456 0.4600 +1106 114991 0.5350 +1106 123169 0.7010 +1106 353324 0.4790 +1106 400451 0.4370 +1107 1108 0.9990 +1107 1386 0.5320 +1107 1387 0.4570 +1107 1457 0.8510 +1107 1523 0.4490 +1107 1616 0.4450 +1107 1655 0.5980 +1107 1662 0.4080 +1107 1786 0.5900 +1107 1788 0.5470 +1107 1822 0.6060 +1107 1911 0.5890 +1107 1912 0.5360 +1107 1958 0.6000 +1107 1973 0.4030 +1107 2033 0.5980 +1107 2074 0.6190 +1107 2091 0.4010 +1107 2122 0.6820 +1107 2146 0.8290 +1107 2186 0.4610 +1107 2547 0.4910 +1107 2597 0.4010 +1107 2956 0.4160 +1107 3012 0.6700 +1107 3013 0.5540 +1107 3014 0.6630 +1107 3015 0.8560 +1107 3017 0.5850 +1107 3018 0.7900 +1107 3021 0.8470 +1107 3065 0.9990 +1107 3066 0.9990 +1107 3187 0.5280 +1107 3191 0.5210 +1107 3276 0.4880 +1107 3326 0.4050 +1107 3376 0.4190 +1107 3621 0.4060 +1107 3622 0.4460 +1107 3725 0.7090 +1107 3836 0.4280 +1107 3838 0.4200 +1107 3910 0.4370 +1107 3980 0.4050 +1107 4172 0.4030 +1107 4174 0.4440 +1107 4176 0.4550 +1107 4204 0.4840 +1107 4288 0.6950 +1107 4361 0.4500 +1107 4602 0.4460 +1107 4665 0.8230 +1107 4691 0.4110 +1107 4904 0.5570 +1107 4926 0.4260 +1107 5116 0.6410 +1107 5371 0.4540 +1107 5393 0.5380 +1107 5394 0.4850 +1107 5468 0.5240 +1107 5591 0.4250 +1107 5655 0.7050 +1107 5888 0.4080 +1107 5926 0.6180 +1107 5928 0.9990 +1107 5931 0.9990 +1107 5978 0.5700 +1107 5981 0.4010 +1107 6015 0.6220 +1107 6045 0.6440 +1107 6046 0.4860 +1107 6299 0.6920 +1107 6304 0.4410 +1107 6426 0.4570 +1107 6591 0.5550 +1107 6594 0.7640 +1107 6595 0.6780 +1107 6597 0.6570 +1107 6598 0.5500 +1107 6599 0.6370 +1107 6601 0.7150 +1107 6602 0.5680 +1107 6605 0.4750 +1107 6613 0.5370 +1107 6615 0.5800 +1107 6625 0.4410 +1107 6657 0.7030 +1107 6737 0.5230 +1107 6749 0.5510 +1107 6829 0.5120 +1107 6830 0.5510 +1107 6839 0.4580 +1107 6872 0.4850 +1107 6908 0.5440 +1107 6996 0.4510 +1107 7101 0.5290 +1107 7150 0.4440 +1107 7153 0.4370 +1107 7155 0.4770 +1107 7157 0.7170 +1107 7158 0.4730 +1107 7203 0.4060 +1107 7270 0.5280 +1107 7306 0.4580 +1107 7329 0.7730 +1107 7341 0.8050 +1107 7343 0.6920 +1107 7486 0.4270 +1107 7520 0.4830 +1107 7745 0.4500 +1107 7862 0.4960 +1107 7994 0.5230 +1107 8099 0.9660 +1107 8241 0.4040 +1107 8243 0.4540 +1107 8289 0.5250 +1107 8290 0.6970 +1107 8294 0.4030 +1107 8295 0.4590 +1107 8329 0.4640 +1107 8331 0.5540 +1107 8334 0.5750 +1107 8337 0.7210 +1107 8338 0.7200 +1107 8340 0.5870 +1107 8341 0.5860 +1107 8342 0.5870 +1107 8345 0.6950 +1107 8347 0.5850 +1107 8348 0.5910 +1107 8349 0.7990 +1107 8350 0.8190 +1107 8356 0.8520 +1107 8361 0.8820 +1107 8369 0.4220 +1107 8467 0.8510 +1107 8535 0.7100 +1107 8554 0.4560 +1107 8607 0.6390 +1107 8726 0.7110 +1107 8815 0.4160 +1107 8819 0.7110 +1107 8841 0.7320 +1107 8932 0.9560 +1107 8970 0.5860 +1107 9013 0.4250 +1107 9015 0.4160 +1107 9031 0.5460 +1107 9092 0.4010 +1107 9112 0.9990 +1107 9188 0.4600 +1107 9189 0.6980 +1107 9203 0.4220 +1107 9219 0.9990 +1107 9221 0.4470 +1107 9343 0.4120 +1107 9401 0.4610 +1107 9416 0.4370 +1107 9584 0.5530 +1107 9611 0.4030 +1107 9612 0.5520 +1107 9640 0.4800 +1107 9646 0.4220 +1107 9656 0.4220 +1107 9737 0.4120 +1107 9775 0.4180 +1107 9810 0.4760 +1107 9869 0.7790 +1107 10014 0.6240 +1107 10055 0.6180 +1107 10155 0.9830 +1107 10210 0.4360 +1107 10284 0.7510 +1107 10320 0.8980 +1107 10362 0.6130 +1107 10399 0.6030 +1107 10498 0.5420 +1107 10524 0.6640 +1107 10594 0.4110 +1107 10743 0.4140 +1107 10856 0.5250 +1107 10919 0.6650 +1107 10951 0.7800 +1107 10992 0.4200 +1107 11177 0.5410 +1107 11198 0.6350 +1107 11335 0.9010 +1107 22803 0.4330 +1107 22806 0.4180 +1107 22847 0.4960 +1107 22927 0.8200 +1107 22955 0.5910 +1107 23020 0.4340 +1107 23028 0.9410 +1107 23091 0.4260 +1107 23186 0.7410 +1107 23195 0.4480 +1107 23309 0.5250 +1107 23394 0.4580 +1107 23411 0.4610 +1107 23450 0.4040 +1107 23466 0.5530 +1107 23468 0.6860 +1107 23476 0.6500 +1107 23512 0.7710 +1107 23515 0.7030 +1107 23613 0.4910 +1107 23645 0.4020 +1107 23774 0.6190 +1107 25855 0.5420 +1107 25942 0.6080 +1107 25962 0.5220 +1107 26038 0.8390 +1107 26135 0.7090 +1107 27154 0.5120 +1107 29117 0.5660 +1107 29843 0.6340 +1107 29947 0.4740 +1107 51105 0.8240 +1107 51222 0.8430 +1107 51317 0.5660 +1107 51341 0.6060 +1107 51564 0.6820 +1107 51742 0.7750 +1107 53335 0.5820 +1107 53615 0.9820 +1107 54145 0.5880 +1107 54556 0.4330 +1107 54606 0.4150 +1107 54815 0.9990 +1107 55193 0.5470 +1107 55226 0.4220 +1107 55379 0.4230 +1107 55643 0.4630 +1107 55660 0.5590 +1107 55766 0.5540 +1107 55869 0.4230 +1107 55929 0.4360 +1107 56254 0.4430 +1107 57167 0.7600 +1107 57182 0.4280 +1107 57332 0.6120 +1107 57459 0.9960 +1107 57473 0.7270 +1107 57504 0.9980 +1107 57592 0.4190 +1107 57680 0.5050 +1107 57696 0.4020 +1107 57697 0.4210 +1107 57727 0.4430 +1107 64135 0.6470 +1107 64397 0.4570 +1107 64426 0.6830 +1107 64769 0.4960 +1107 64919 0.7130 +1107 79009 0.4280 +1107 79039 0.4040 +1107 79101 0.4460 +1107 79446 0.4430 +1107 79685 0.5340 +1107 79913 0.4230 +1107 79915 0.4070 +1107 80012 0.5290 +1107 80205 0.4390 +1107 84181 0.7580 +1107 84232 0.5170 +1107 84289 0.4760 +1107 84295 0.6490 +1107 84618 0.4040 +1107 84619 0.6290 +1107 84656 0.4110 +1107 84661 0.4730 +1107 84733 0.5820 +1107 85235 0.6040 +1107 85236 0.6940 +1107 85509 0.8870 +1107 92815 0.4640 +1107 93986 0.4850 +1107 94239 0.6870 +1107 114825 0.4750 +1107 124245 0.4050 +1107 125997 0.4380 +1107 128312 0.5870 +1107 152485 0.4560 +1107 165918 0.4610 +1107 169966 0.4020 +1107 221613 0.4640 +1107 255626 0.5970 +1107 286077 0.4300 +1107 317772 0.4690 +1107 440093 0.6970 +1107 440686 0.6970 +1107 440689 0.5090 +1107 474382 0.5540 +1107 653604 0.8440 +1108 1386 0.5320 +1108 1408 0.4370 +1108 1457 0.9090 +1108 1459 0.6350 +1108 1487 0.6210 +1108 1488 0.6230 +1108 1654 0.4320 +1108 1655 0.5160 +1108 1659 0.4310 +1108 1660 0.6400 +1108 1665 0.4680 +1108 1736 0.5720 +1108 1763 0.4060 +1108 1786 0.8310 +1108 1789 0.5500 +1108 1822 0.5860 +1108 1911 0.6190 +1108 1912 0.5380 +1108 1915 0.4230 +1108 1958 0.6150 +1108 1959 0.8430 +1108 1973 0.4180 +1108 1981 0.5520 +1108 1994 0.4760 +1108 2023 0.4100 +1108 2033 0.9330 +1108 2058 0.4250 +1108 2074 0.6290 +1108 2079 0.4440 +1108 2091 0.7280 +1108 2122 0.5790 +1108 2130 0.4910 +1108 2146 0.9930 +1108 2186 0.7290 +1108 2237 0.4040 +1108 2309 0.4610 +1108 2521 0.4770 +1108 2547 0.6090 +1108 2597 0.4650 +1108 2623 0.6160 +1108 2625 0.7040 +1108 3005 0.6570 +1108 3012 0.9330 +1108 3013 0.5540 +1108 3014 0.7640 +1108 3015 0.9110 +1108 3017 0.6320 +1108 3018 0.7290 +1108 3020 0.9220 +1108 3021 0.9940 +1108 3065 0.9990 +1108 3066 0.9990 +1108 3070 0.4220 +1108 3178 0.5000 +1108 3181 0.4810 +1108 3183 0.6410 +1108 3184 0.4170 +1108 3185 0.4550 +1108 3187 0.4900 +1108 3190 0.5230 +1108 3191 0.5120 +1108 3192 0.5520 +1108 3312 0.4020 +1108 3398 0.5670 +1108 3400 0.5520 +1108 3608 0.4600 +1108 3659 0.9100 +1108 3725 0.6150 +1108 3833 0.4330 +1108 3838 0.4310 +1108 3841 0.4610 +1108 3980 0.4820 +1108 4001 0.4220 +1108 4139 0.4270 +1108 4171 0.4280 +1108 4172 0.4610 +1108 4175 0.5020 +1108 4236 0.4550 +1108 4288 0.5420 +1108 4297 0.6850 +1108 4300 0.5180 +1108 4361 0.4860 +1108 4609 0.6200 +1108 4664 0.4370 +1108 4665 0.9520 +1108 4670 0.5610 +1108 4691 0.5130 +1108 4839 0.7240 +1108 4841 0.6260 +1108 4869 0.4540 +1108 4926 0.7130 +1108 4968 0.4080 +1108 5077 0.5010 +1108 5094 0.4710 +1108 5116 0.6520 +1108 5371 0.5840 +1108 5393 0.4330 +1108 5394 0.6100 +1108 5411 0.5460 +1108 5426 0.4090 +1108 5460 0.5090 +1108 5468 0.5380 +1108 5496 0.4040 +1108 5501 0.4040 +1108 5518 0.4230 +1108 5591 0.4780 +1108 5725 0.5910 +1108 5888 0.6950 +1108 5893 0.4080 +1108 5926 0.6740 +1108 5928 0.9990 +1108 5930 0.4280 +1108 5931 0.9990 +1108 5970 0.4330 +1108 5978 0.6060 +1108 5981 0.4020 +1108 5982 0.5190 +1108 5987 0.9030 +1108 6015 0.6480 +1108 6045 0.7070 +1108 6046 0.8000 +1108 6294 0.5460 +1108 6299 0.6230 +1108 6421 0.7100 +1108 6426 0.5460 +1108 6428 0.5180 +1108 6430 0.4160 +1108 6431 0.5510 +1108 6434 0.4510 +1108 6591 0.6510 +1108 6594 0.7560 +1108 6595 0.7390 +1108 6597 0.9660 +1108 6599 0.9240 +1108 6601 0.7750 +1108 6602 0.6190 +1108 6605 0.7940 +1108 6613 0.6730 +1108 6615 0.7690 +1108 6625 0.5050 +1108 6627 0.4480 +1108 6633 0.4560 +1108 6636 0.4560 +1108 6657 0.5680 +1108 6667 0.5510 +1108 6696 0.4560 +1108 6737 0.4380 +1108 6749 0.8430 +1108 6829 0.5400 +1108 6830 0.6040 +1108 6839 0.5250 +1108 6872 0.6490 +1108 6886 0.4050 +1108 6908 0.7080 +1108 6910 0.4570 +1108 6942 0.4750 +1108 6949 0.6240 +1108 7015 0.4940 +1108 7101 0.5420 +1108 7112 0.4350 +1108 7150 0.7540 +1108 7153 0.7150 +1108 7155 0.6620 +1108 7157 0.7490 +1108 7158 0.5510 +1108 7175 0.4510 +1108 7182 0.6360 +1108 7270 0.6130 +1108 7307 0.5440 +1108 7343 0.9560 +1108 7403 0.4240 +1108 7486 0.4700 +1108 7520 0.5550 +1108 7528 0.6210 +1108 7750 0.5690 +1108 7862 0.5250 +1108 7913 0.4240 +1108 7919 0.5040 +1108 7994 0.5550 +1108 8019 0.8290 +1108 8089 0.5590 +1108 8099 0.9100 +1108 8161 0.4280 +1108 8241 0.4610 +1108 8242 0.5770 +1108 8243 0.5540 +1108 8289 0.7260 +1108 8290 0.9920 +1108 8294 0.9440 +1108 8295 0.6840 +1108 8320 0.5310 +1108 8329 0.8900 +1108 8330 0.8210 +1108 8331 0.5540 +1108 8332 0.8210 +1108 8334 0.9110 +1108 8335 0.8290 +1108 8336 0.8260 +1108 8337 0.7400 +1108 8338 0.8050 +1108 8340 0.6340 +1108 8341 0.6280 +1108 8342 0.6270 +1108 8345 0.7640 +1108 8347 0.6280 +1108 8348 0.6410 +1108 8349 0.7660 +1108 8350 0.9850 +1108 8351 0.9150 +1108 8352 0.9210 +1108 8353 0.9220 +1108 8354 0.9150 +1108 8355 0.9150 +1108 8356 0.9940 +1108 8357 0.9150 +1108 8358 0.9190 +1108 8359 0.9270 +1108 8360 0.9450 +1108 8361 0.9920 +1108 8362 0.9440 +1108 8363 0.9440 +1108 8364 0.9440 +1108 8366 0.9450 +1108 8367 0.9450 +1108 8368 0.9440 +1108 8369 0.4760 +1108 8370 0.9450 +1108 8467 0.8770 +1108 8535 0.5950 +1108 8549 0.5090 +1108 8570 0.4330 +1108 8607 0.6560 +1108 8661 0.4010 +1108 8664 0.4590 +1108 8726 0.7550 +1108 8815 0.6160 +1108 8819 0.7840 +1108 8841 0.6670 +1108 8850 0.4070 +1108 8864 0.4120 +1108 8886 0.4160 +1108 8932 0.9420 +1108 8968 0.9150 +1108 8969 0.8680 +1108 8970 0.9220 +1108 9013 0.4050 +1108 9015 0.4160 +1108 9025 0.9340 +1108 9031 0.8440 +1108 9092 0.4210 +1108 9112 0.9990 +1108 9126 0.4820 +1108 9128 0.5090 +1108 9156 0.4030 +1108 9184 0.4510 +1108 9188 0.6790 +1108 9202 0.6260 +1108 9203 0.7190 +1108 9219 0.9990 +1108 9221 0.6940 +1108 9320 0.5290 +1108 9343 0.6080 +1108 9401 0.4980 +1108 9416 0.5410 +1108 9493 0.4040 +1108 9555 0.6880 +1108 9584 0.5690 +1108 9611 0.6750 +1108 9612 0.5870 +1108 9640 0.7010 +1108 9646 0.5570 +1108 9656 0.6080 +1108 9678 0.5830 +1108 9734 0.5820 +1108 9739 0.4820 +1108 9774 0.4430 +1108 9775 0.4090 +1108 9787 0.4380 +1108 9839 0.4220 +1108 9869 0.4470 +1108 9879 0.4310 +1108 9967 0.5660 +1108 9968 0.4170 +1108 10014 0.6180 +1108 10036 0.4220 +1108 10055 0.5720 +1108 10155 0.8940 +1108 10212 0.4510 +1108 10236 0.4430 +1108 10250 0.6410 +1108 10284 0.8910 +1108 10291 0.4680 +1108 10320 0.9690 +1108 10362 0.6030 +1108 10432 0.5110 +1108 10445 0.9200 +1108 10498 0.5480 +1108 10514 0.4730 +1108 10521 0.4370 +1108 10523 0.4470 +1108 10524 0.5000 +1108 10528 0.5490 +1108 10594 0.4600 +1108 10614 0.4500 +1108 10657 0.5350 +1108 10661 0.6210 +1108 10664 0.7630 +1108 10713 0.4200 +1108 10856 0.6360 +1108 10919 0.8730 +1108 10946 0.4330 +1108 10949 0.5440 +1108 10951 0.9100 +1108 10992 0.5390 +1108 11074 0.4260 +1108 11091 0.4220 +1108 11143 0.6390 +1108 11168 0.4220 +1108 11176 0.6220 +1108 11177 0.4090 +1108 11198 0.8150 +1108 11201 0.5400 +1108 11325 0.4430 +1108 11335 0.9340 +1108 11338 0.5460 +1108 22803 0.5290 +1108 22806 0.6660 +1108 22807 0.4060 +1108 22827 0.5130 +1108 22828 0.4330 +1108 22850 0.5790 +1108 22938 0.6590 +1108 22955 0.6120 +1108 22976 0.6070 +1108 22985 0.8200 +1108 22992 0.4550 +1108 23013 0.6190 +1108 23020 0.4780 +1108 23028 0.9900 +1108 23030 0.4780 +1108 23076 0.5440 +1108 23126 0.7400 +1108 23186 0.8290 +1108 23210 0.6060 +1108 23215 0.4230 +1108 23223 0.4390 +1108 23309 0.5170 +1108 23367 0.4170 +1108 23394 0.9910 +1108 23429 0.4090 +1108 23450 0.4530 +1108 23451 0.4480 +1108 23466 0.5560 +1108 23468 0.8810 +1108 23476 0.9890 +1108 23512 0.7650 +1108 23515 0.6540 +1108 23524 0.4790 +1108 23613 0.9460 +1108 23633 0.6320 +1108 23774 0.7940 +1108 25836 0.4760 +1108 25855 0.5490 +1108 25885 0.4340 +1108 25942 0.8840 +1108 25962 0.5290 +1108 26038 0.8970 +1108 26135 0.4210 +1108 26156 0.5300 +1108 26259 0.4300 +1108 26986 0.4220 +1108 27154 0.5130 +1108 27316 0.4850 +1108 27339 0.4900 +1108 27430 0.5130 +1108 29117 0.5910 +1108 29998 0.5710 +1108 50485 0.4150 +1108 50809 0.4640 +1108 51105 0.7120 +1108 51202 0.4020 +1108 51222 0.7880 +1108 51317 0.7310 +1108 51340 0.4740 +1108 51341 0.5120 +1108 51366 0.5020 +1108 51412 0.4140 +1108 51548 0.4430 +1108 51564 0.7850 +1108 51574 0.4010 +1108 51592 0.6380 +1108 51593 0.7600 +1108 51602 0.5540 +1108 51742 0.6540 +1108 51747 0.4340 +1108 51773 0.4370 +1108 53335 0.8770 +1108 53615 0.9940 +1108 53981 0.4420 +1108 54107 0.4260 +1108 54145 0.6280 +1108 54606 0.6750 +1108 54815 0.9990 +1108 54828 0.4920 +1108 54904 0.5300 +1108 55023 0.4220 +1108 55153 0.4020 +1108 55193 0.7340 +1108 55209 0.4160 +1108 55226 0.4930 +1108 55294 0.6520 +1108 55506 0.4760 +1108 55596 0.5230 +1108 55660 0.6570 +1108 55677 0.4080 +1108 55695 0.5250 +1108 55749 0.4320 +1108 55766 0.5680 +1108 55922 0.4330 +1108 55929 0.4650 +1108 56252 0.5700 +1108 56254 0.4770 +1108 56259 0.4030 +1108 56852 0.4020 +1108 56902 0.4170 +1108 56916 0.5400 +1108 56949 0.4400 +1108 57062 0.6050 +1108 57167 0.8000 +1108 57332 0.6170 +1108 57459 0.9980 +1108 57473 0.7630 +1108 57504 0.9980 +1108 57592 0.5840 +1108 57602 0.4650 +1108 57621 0.4120 +1108 57634 0.4870 +1108 57680 0.6010 +1108 57696 0.4230 +1108 57697 0.4780 +1108 57699 0.4050 +1108 57805 0.4440 +1108 58499 0.4730 +1108 58517 0.4340 +1108 64135 0.4600 +1108 64426 0.7000 +1108 64769 0.4920 +1108 64919 0.8880 +1108 79009 0.6180 +1108 79101 0.4310 +1108 79577 0.5450 +1108 79648 0.4160 +1108 79685 0.5290 +1108 79776 0.8620 +1108 79813 0.6500 +1108 79913 0.4100 +1108 79915 0.4820 +1108 79923 0.4100 +1108 80012 0.5430 +1108 80198 0.4320 +1108 80205 0.4210 +1108 84181 0.4670 +1108 84232 0.5200 +1108 84271 0.5900 +1108 84289 0.5150 +1108 84295 0.5630 +1108 84619 0.6510 +1108 84656 0.4880 +1108 84678 0.4160 +1108 84733 0.6020 +1108 84844 0.4650 +1108 84893 0.4020 +1108 84991 0.4020 +1108 85235 0.6040 +1108 85236 0.7250 +1108 85509 0.8640 +1108 92815 0.5070 +1108 94239 0.6760 +1108 112398 0.5830 +1108 114825 0.4090 +1108 121504 0.9260 +1108 123169 0.4930 +1108 124245 0.7180 +1108 125997 0.6170 +1108 126961 0.9380 +1108 128312 0.6270 +1108 147807 0.4550 +1108 152485 0.6090 +1108 161882 0.7750 +1108 165918 0.5530 +1108 220988 0.4880 +1108 221092 0.4360 +1108 221613 0.4800 +1108 254251 0.4540 +1108 255626 0.6310 +1108 283489 0.4980 +1108 317772 0.6150 +1108 333932 0.9150 +1108 346673 0.4430 +1108 440093 0.9920 +1108 440686 0.9890 +1108 440689 0.5640 +1108 474382 0.5540 +1108 554313 0.9250 +1108 653604 0.9950 +1109 1582 0.9390 +1109 1584 0.4090 +1109 1586 0.4640 +1109 1589 0.4190 +1109 1593 0.9380 +1109 1646 0.8630 +1109 2729 0.4160 +1109 3283 0.5200 +1109 3284 0.6850 +1109 3290 0.9500 +1109 3292 0.5800 +1109 3293 0.5480 +1109 3295 0.4320 +1109 5948 0.4180 +1109 6715 0.9610 +1109 6716 0.9590 +1109 6718 0.9080 +1109 7363 0.9190 +1109 7364 0.9180 +1109 7365 0.9210 +1109 7366 0.9280 +1109 7367 0.9190 +1109 7881 0.4770 +1109 8309 0.4250 +1109 8514 0.4700 +1109 8574 0.6770 +1109 8630 0.5990 +1109 8644 0.8830 +1109 9196 0.5080 +1109 9380 0.4130 +1109 10170 0.9470 +1109 10720 0.9080 +1109 10901 0.5100 +1109 22949 0.4020 +1109 22977 0.4830 +1109 27294 0.9290 +1109 51171 0.4070 +1109 51366 0.5760 +1109 54490 0.9060 +1109 54575 0.9180 +1109 54576 0.9220 +1109 54577 0.9200 +1109 54578 0.9290 +1109 54579 0.9080 +1109 54600 0.9130 +1109 54657 0.9250 +1109 54658 0.9280 +1109 54659 0.9140 +1109 79154 0.5370 +1109 79644 0.9630 +1109 79799 0.9150 +1109 80270 0.5770 +1109 84898 0.5010 +1109 374875 0.9160 +1109 574537 0.9080 +1111 1163 0.4690 +1111 1164 0.4670 +1111 1408 0.8230 +1111 1432 0.4920 +1111 1457 0.6510 +1111 1460 0.4670 +1111 1493 0.4870 +1111 1499 0.4690 +1111 1503 0.4320 +1111 1642 0.9020 +1111 1643 0.5060 +1111 1647 0.5320 +1111 1719 0.4960 +1111 1763 0.8910 +1111 1786 0.7110 +1111 1869 0.7640 +1111 1876 0.8120 +1111 1877 0.5020 +1111 1894 0.6780 +1111 1956 0.6010 +1111 1977 0.4020 +1111 2067 0.6210 +1111 2068 0.8170 +1111 2071 0.6930 +1111 2072 0.5900 +1111 2073 0.4670 +1111 2074 0.4240 +1111 2099 0.4550 +1111 2146 0.5880 +1111 2175 0.7100 +1111 2176 0.5610 +1111 2177 0.9580 +1111 2178 0.7850 +1111 2187 0.4090 +1111 2188 0.6420 +1111 2189 0.5340 +1111 2237 0.8530 +1111 2272 0.4490 +1111 2305 0.6830 +1111 2475 0.7630 +1111 2547 0.9130 +1111 2597 0.6290 +1111 2810 0.6990 +1111 2877 0.4670 +1111 2932 0.5140 +1111 2956 0.8410 +1111 2962 0.5070 +1111 2963 0.5160 +1111 2965 0.6020 +1111 2966 0.5780 +1111 2967 0.6230 +1111 2968 0.5940 +1111 3005 0.5230 +1111 3014 0.8980 +1111 3015 0.4600 +1111 3017 0.4560 +1111 3021 0.6750 +1111 3065 0.5660 +1111 3066 0.4130 +1111 3070 0.6930 +1111 3091 0.4290 +1111 3127 0.4080 +1111 3161 0.6250 +1111 3184 0.5380 +1111 3308 0.5750 +1111 3320 0.8910 +1111 3326 0.8750 +1111 3337 0.4650 +1111 3364 0.9600 +1111 3480 0.4650 +1111 3619 0.6710 +1111 3659 0.5180 +1111 3703 0.6110 +1111 3716 0.5790 +1111 3717 0.6440 +1111 3718 0.5100 +1111 3725 0.4960 +1111 3791 0.5400 +1111 3815 0.5620 +1111 3832 0.8010 +1111 3833 0.4480 +1111 3845 0.6500 +1111 3978 0.7940 +1111 3980 0.5350 +1111 3981 0.6660 +1111 4001 0.5050 +1111 4085 0.9270 +1111 4170 0.4750 +1111 4171 0.8700 +1111 4172 0.9500 +1111 4173 0.9780 +1111 4174 0.8660 +1111 4175 0.9010 +1111 4176 0.9060 +1111 4193 0.6990 +1111 4194 0.7420 +1111 4254 0.5570 +1111 4255 0.4980 +1111 4287 0.5820 +1111 4288 0.5620 +1111 4292 0.5670 +1111 4331 0.6130 +1111 4360 0.5470 +1111 4361 0.8680 +1111 4436 0.7650 +1111 4437 0.5120 +1111 4595 0.4070 +1111 4605 0.4830 +1111 4609 0.7600 +1111 4613 0.4540 +1111 4683 0.8690 +1111 4751 0.7040 +1111 4790 0.5470 +1111 4893 0.6050 +1111 4968 0.4410 +1111 4998 0.8580 +1111 4999 0.5980 +1111 5000 0.6200 +1111 5001 0.7350 +1111 5111 0.7570 +1111 5116 0.6480 +1111 5127 0.4100 +1111 5128 0.4020 +1111 5129 0.4230 +1111 5133 0.4910 +1111 5155 0.4070 +1111 5290 0.6680 +1111 5347 0.5350 +1111 5366 0.5040 +1111 5378 0.5620 +1111 5395 0.4740 +1111 5422 0.6910 +1111 5423 0.4090 +1111 5424 0.7400 +1111 5425 0.4470 +1111 5426 0.7550 +1111 5427 0.6560 +1111 5431 0.5380 +1111 5432 0.5100 +1111 5433 0.5920 +1111 5434 0.5030 +1111 5435 0.5350 +1111 5436 0.5510 +1111 5437 0.5380 +1111 5438 0.5200 +1111 5439 0.5090 +1111 5440 0.5040 +1111 5441 0.5030 +1111 5515 0.8090 +1111 5516 0.7640 +1111 5520 0.9070 +1111 5521 0.8580 +1111 5531 0.4330 +1111 5557 0.5550 +1111 5558 0.4820 +1111 5591 0.9280 +1111 5728 0.7910 +1111 5810 0.7750 +1111 5883 0.9630 +1111 5884 0.9820 +1111 5885 0.5210 +1111 5886 0.4350 +1111 5888 0.9980 +1111 5889 0.7310 +1111 5890 0.6640 +1111 5892 0.8000 +1111 5893 0.8330 +1111 5925 0.5500 +1111 5932 0.9020 +1111 5965 0.4950 +1111 5970 0.4900 +1111 5980 0.5580 +1111 5981 0.4200 +1111 5982 0.8600 +1111 5983 0.8580 +1111 5984 0.9420 +1111 5985 0.7620 +1111 6117 0.8570 +1111 6118 0.9250 +1111 6119 0.8170 +1111 6233 0.6040 +1111 6240 0.6800 +1111 6241 0.8520 +1111 6419 0.4630 +1111 6491 0.5440 +1111 6500 0.4670 +1111 6502 0.7770 +1111 6596 0.4380 +1111 6597 0.4580 +1111 6749 0.6170 +1111 6774 0.4340 +1111 6790 0.7540 +1111 6827 0.4990 +1111 6829 0.5050 +1111 6905 0.4250 +1111 6917 0.6070 +1111 6921 0.5930 +1111 6923 0.5960 +1111 6924 0.5030 +1111 7013 0.4640 +1111 7015 0.6100 +1111 7027 0.5210 +1111 7029 0.6650 +1111 7083 0.5700 +1111 7150 0.7430 +1111 7153 0.8890 +1111 7155 0.4790 +1111 7156 0.7440 +1111 7157 0.9970 +1111 7158 0.9920 +1111 7272 0.6390 +1111 7298 0.8630 +1111 7311 0.4990 +1111 7314 0.5290 +1111 7316 0.5330 +1111 7317 0.4550 +1111 7334 0.4920 +1111 7374 0.5030 +1111 7398 0.5060 +1111 7465 0.9920 +1111 7469 0.5040 +1111 7486 0.8700 +1111 7507 0.5900 +1111 7514 0.5620 +1111 7515 0.5820 +1111 7516 0.6670 +1111 7517 0.7390 +1111 7518 0.7560 +1111 7520 0.8790 +1111 7529 0.6690 +1111 7531 0.4610 +1111 7532 0.6060 +1111 7533 0.4010 +1111 7534 0.7370 +1111 7535 0.4300 +1111 7837 0.5200 +1111 7874 0.9000 +1111 7936 0.5350 +1111 7979 0.8410 +1111 8178 0.4990 +1111 8208 0.5220 +1111 8243 0.5130 +1111 8289 0.5050 +1111 8290 0.6750 +1111 8295 0.4280 +1111 8317 0.9110 +1111 8318 0.9940 +1111 8337 0.5890 +1111 8338 0.5140 +1111 8349 0.4580 +1111 8356 0.7660 +1111 8361 0.4240 +1111 8369 0.4140 +1111 8438 0.7970 +1111 8450 0.4050 +1111 8451 0.8650 +1111 8454 0.9000 +1111 8493 0.7750 +1111 8556 0.4690 +1111 8812 0.5830 +1111 8842 0.5870 +1111 8900 0.7210 +1111 8914 0.9930 +1111 8945 0.5730 +1111 9025 0.6880 +1111 9055 0.5480 +1111 9088 0.7150 +1111 9126 0.5880 +1111 9133 0.8330 +1111 9134 0.7470 +1111 9150 0.5220 +1111 9156 0.9730 +1111 9184 0.5930 +1111 9212 0.7540 +1111 9232 0.6240 +1111 9319 0.6760 +1111 9400 0.5600 +1111 9401 0.7430 +1111 9493 0.6870 +1111 9585 0.4640 +1111 9656 0.9400 +1111 9700 0.7760 +1111 9730 0.4480 +1111 9735 0.4490 +1111 9768 0.5450 +1111 9787 0.6540 +1111 9833 0.8730 +1111 9837 0.5990 +1111 9874 0.5180 +1111 9894 0.7200 +1111 9928 0.5390 +1111 9960 0.4500 +1111 9978 0.5840 +1111 10013 0.4740 +1111 10018 0.4200 +1111 10024 0.5030 +1111 10036 0.6420 +1111 10038 0.5600 +1111 10051 0.5480 +1111 10054 0.4370 +1111 10111 0.6280 +1111 10112 0.5580 +1111 10116 0.7520 +1111 10179 0.4340 +1111 10206 0.4240 +1111 10403 0.5940 +1111 10459 0.5270 +1111 10498 0.4470 +1111 10513 0.4610 +1111 10524 0.7590 +1111 10592 0.5090 +1111 10606 0.5270 +1111 10615 0.5140 +1111 10635 0.8020 +1111 10714 0.4680 +1111 10721 0.5230 +1111 10733 0.6700 +1111 10744 0.4090 +1111 10891 0.4420 +1111 10926 0.9210 +1111 10950 0.6120 +1111 10971 0.4210 +1111 11004 0.7380 +1111 11044 0.4360 +1111 11065 0.6910 +1111 11073 0.9890 +1111 11130 0.7220 +1111 11140 0.4520 +1111 11169 0.7120 +1111 11198 0.6270 +1111 11200 0.9710 +1111 11284 0.4300 +1111 11339 0.7430 +1111 22974 0.6630 +1111 22976 0.6120 +1111 23049 0.5510 +1111 23063 0.5490 +1111 23137 0.4650 +1111 23397 0.6180 +1111 23411 0.4430 +1111 23476 0.4690 +1111 23594 0.7320 +1111 23595 0.6190 +1111 23626 0.4620 +1111 23649 0.4750 +1111 24137 0.6310 +1111 25788 0.6070 +1111 25842 0.5200 +1111 25913 0.4440 +1111 25920 0.5110 +1111 26227 0.4300 +1111 26234 0.4040 +1111 26270 0.7250 +1111 26271 0.7790 +1111 26524 0.5550 +1111 26586 0.5350 +1111 27127 0.4510 +1111 27301 0.4890 +1111 27343 0.6250 +1111 27434 0.5590 +1111 29028 0.5620 +1111 29089 0.7120 +1111 29126 0.4520 +1111 29127 0.7480 +1111 29128 0.5220 +1111 29945 0.4400 +1111 29980 0.4750 +1111 50484 0.4670 +1111 50485 0.5190 +1111 51053 0.4620 +1111 51203 0.6730 +1111 51224 0.4990 +1111 51343 0.6090 +1111 51366 0.4600 +1111 51455 0.4410 +1111 51497 0.5210 +1111 51512 0.5580 +1111 51514 0.9310 +1111 51659 0.6340 +1111 51720 0.4550 +1111 51755 0.6110 +1111 54205 0.5210 +1111 54443 0.6330 +1111 54465 0.5960 +1111 54821 0.6010 +1111 54892 0.6350 +1111 54962 0.9480 +1111 55010 0.4880 +1111 55055 0.4660 +1111 55120 0.6010 +1111 55143 0.6260 +1111 55159 0.4190 +1111 55165 0.8710 +1111 55215 0.8610 +1111 55247 0.6520 +1111 55320 0.5010 +1111 55355 0.6670 +1111 55367 0.4530 +1111 55388 0.9690 +1111 55635 0.4630 +1111 55706 0.4360 +1111 55723 0.5660 +1111 55775 0.5000 +1111 55789 0.4710 +1111 55839 0.7050 +1111 56852 0.7750 +1111 56992 0.5710 +1111 57082 0.5330 +1111 57379 0.5200 +1111 57405 0.7780 +1111 57505 0.4290 +1111 57650 0.4560 +1111 57695 0.4330 +1111 57697 0.8700 +1111 63922 0.5490 +1111 63967 0.9990 +1111 64105 0.4370 +1111 64151 0.7750 +1111 64785 0.5780 +1111 64946 0.4260 +1111 79000 0.4160 +1111 79019 0.5080 +1111 79075 0.6860 +1111 79370 0.4670 +1111 79648 0.7840 +1111 79682 0.4190 +1111 79728 0.7010 +1111 79733 0.5450 +1111 79801 0.5890 +1111 79840 0.4480 +1111 79866 0.5890 +1111 79915 0.6590 +1111 79991 0.7660 +1111 80010 0.8180 +1111 80119 0.6050 +1111 80174 0.4170 +1111 80198 0.7600 +1111 80895 0.4230 +1111 81620 0.9340 +1111 81669 0.5980 +1111 81930 0.6460 +1111 83461 0.6710 +1111 83540 0.7020 +1111 83695 0.8660 +1111 83879 0.4210 +1111 83903 0.4990 +1111 83990 0.9330 +1111 84057 0.8610 +1111 84083 0.4330 +1111 84126 0.9810 +1111 84142 0.4500 +1111 84250 0.4620 +1111 84260 0.5170 +1111 84296 0.6310 +1111 84464 0.5580 +1111 84515 0.7250 +1111 84823 0.4190 +1111 84930 0.4140 +1111 90381 0.8760 +1111 91442 0.8210 +1111 91607 0.4190 +1111 91754 0.4070 +1111 94239 0.4490 +1111 113115 0.4300 +1111 113130 0.7670 +1111 114799 0.4210 +1111 115004 0.4150 +1111 116028 0.7440 +1111 116447 0.5910 +1111 122769 0.4060 +1111 133482 0.4180 +1111 135458 0.4380 +1111 137902 0.5160 +1111 144455 0.5050 +1111 144715 0.7050 +1111 146956 0.5650 +1111 150468 0.4350 +1111 151648 0.4270 +1111 157313 0.6150 +1111 157570 0.6030 +1111 165918 0.5190 +1111 221150 0.4410 +1111 246243 0.4030 +1111 253714 0.5150 +1111 259266 0.6450 +1111 284086 0.4430 +1111 286204 0.7600 +1111 348654 0.5720 +1111 404672 0.5750 +1111 440093 0.6750 +1111 440686 0.6770 +1111 494551 0.9550 +1111 548593 0.4730 +1111 653604 0.6770 +1111 100533467 0.4660 +1112 1591 0.5970 +1112 1594 0.5110 +1112 2290 0.4110 +1112 2310 0.4360 +1112 3065 0.5670 +1112 3066 0.5640 +1112 3239 0.4510 +1112 4656 0.4390 +1112 5991 0.6410 +1112 6656 0.4090 +1112 6660 0.4450 +1112 6664 0.4220 +1112 8106 0.5980 +1112 8648 0.5200 +1112 8841 0.5910 +1112 22938 0.8630 +1112 25942 0.9560 +1112 55869 0.5340 +1112 139628 0.4140 +1112 144348 0.4460 +1112 158248 0.4640 +1112 399823 0.4670 +1113 1114 0.9940 +1113 1363 0.8630 +1113 1392 0.5040 +1113 1499 0.4480 +1113 1621 0.5540 +1113 1950 0.5360 +1113 1956 0.4030 +1113 2026 0.9410 +1113 2243 0.4120 +1113 2346 0.4200 +1113 2520 0.8400 +1113 2572 0.4870 +1113 2597 0.4120 +1113 2641 0.8530 +1113 2670 0.4190 +1113 2922 0.7410 +1113 3067 0.5690 +1113 3375 0.7060 +1113 3440 0.4240 +1113 3624 0.4700 +1113 3627 0.4310 +1113 3630 0.6840 +1113 3642 0.6830 +1113 3670 0.4540 +1113 3767 0.4110 +1113 3815 0.5790 +1113 3852 0.6050 +1113 3855 0.7300 +1113 3856 0.5720 +1113 3875 0.4700 +1113 3880 0.5970 +1113 4069 0.4090 +1113 4072 0.4290 +1113 4137 0.4340 +1113 4267 0.6410 +1113 4288 0.4290 +1113 4295 0.5230 +1113 4311 0.5420 +1113 4314 0.4070 +1113 4586 0.4690 +1113 4588 0.4610 +1113 4613 0.4550 +1113 4684 0.8300 +1113 4760 0.6370 +1113 4821 0.5060 +1113 4824 0.4460 +1113 4825 0.6190 +1113 4852 0.7440 +1113 4922 0.5200 +1113 5078 0.4290 +1113 5122 0.5860 +1113 5126 0.5660 +1113 5173 0.4080 +1113 5179 0.4470 +1113 5241 0.4470 +1113 5340 0.6660 +1113 5367 0.5040 +1113 5409 0.4480 +1113 5443 0.6250 +1113 5539 0.7390 +1113 5617 0.4480 +1113 5697 0.7210 +1113 5741 0.5410 +1113 5788 0.4340 +1113 5798 0.5010 +1113 5799 0.4260 +1113 5979 0.4680 +1113 6343 0.5420 +1113 6390 0.4800 +1113 6392 0.4470 +1113 6447 0.8000 +1113 6570 0.4740 +1113 6571 0.4480 +1113 6616 0.4930 +1113 6647 0.6060 +1113 6662 0.4540 +1113 6750 0.9210 +1113 6751 0.5720 +1113 6752 0.6370 +1113 6755 0.4800 +1113 6833 0.4830 +1113 6855 0.9320 +1113 6857 0.4720 +1113 6860 0.5080 +1113 6863 0.5810 +1113 7033 0.5200 +1113 7038 0.5440 +1113 7040 0.4600 +1113 7054 0.5630 +1113 7080 0.7160 +1113 7133 0.4120 +1113 7157 0.5780 +1113 7166 0.6670 +1113 7345 0.5060 +1113 7425 0.5340 +1113 7429 0.4910 +1113 7432 0.6570 +1113 7448 0.4080 +1113 7490 0.4480 +1113 7837 0.4510 +1113 7849 0.4770 +1113 7857 0.9540 +1113 8549 0.7330 +1113 9201 0.5950 +1113 9241 0.5580 +1113 9476 0.5810 +1113 10562 0.7110 +1113 10590 0.6340 +1113 10732 0.4160 +1113 23467 0.4280 +1113 23600 0.4440 +1113 26007 0.5730 +1113 27087 0.4490 +1113 27344 0.5860 +1113 29106 0.9900 +1113 50674 0.6680 +1113 51738 0.6640 +1113 51806 0.5020 +1113 54474 0.7760 +1113 55532 0.4520 +1113 55654 0.4180 +1113 57818 0.4240 +1113 83998 0.4200 +1113 84504 0.5930 +1113 84525 0.4160 +1113 84530 0.4410 +1113 91860 0.4880 +1113 137902 0.4510 +1113 163688 0.4860 +1113 169026 0.4630 +1113 222546 0.5560 +1113 284654 0.4970 +1113 347148 0.5620 +1113 400566 0.7130 +1114 1363 0.7500 +1114 1392 0.4540 +1114 1394 0.4730 +1114 1621 0.4970 +1114 2026 0.4960 +1114 2036 0.4680 +1114 2520 0.5380 +1114 2641 0.4770 +1114 3375 0.4040 +1114 3630 0.4860 +1114 3642 0.4640 +1114 3858 0.4060 +1114 4000 0.4530 +1114 4295 0.4230 +1114 4684 0.4020 +1114 4760 0.4360 +1114 4828 0.4560 +1114 4852 0.8420 +1114 4878 0.5450 +1114 5075 0.4550 +1114 5122 0.6560 +1114 5125 0.4390 +1114 5126 0.7390 +1114 5173 0.6130 +1114 5179 0.7370 +1114 5409 0.6100 +1114 5443 0.4010 +1114 5539 0.4350 +1114 5621 0.4440 +1114 5697 0.5690 +1114 5798 0.4370 +1114 5799 0.4250 +1114 6447 0.8930 +1114 6616 0.6510 +1114 6636 0.4410 +1114 6647 0.5430 +1114 6750 0.6160 +1114 6833 0.4730 +1114 6844 0.4900 +1114 6855 0.6880 +1114 6857 0.4870 +1114 6860 0.6170 +1114 6863 0.4580 +1114 7166 0.4240 +1114 7425 0.6980 +1114 7429 0.4150 +1114 7432 0.7570 +1114 7857 0.9860 +1114 8620 0.4090 +1114 9066 0.4180 +1114 9159 0.4280 +1114 9607 0.4880 +1114 10590 0.4320 +1114 11075 0.4010 +1114 11344 0.4430 +1114 27344 0.7210 +1114 29106 0.9370 +1114 50861 0.4170 +1114 54757 0.4920 +1114 54760 0.4280 +1114 56975 0.6370 +1114 57512 0.4170 +1114 64094 0.4110 +1114 79705 0.4280 +1114 84626 0.4360 +1114 118461 0.4560 +1114 120892 0.6380 +1114 222546 0.4170 +1114 347148 0.4170 +1116 1191 0.4080 +1116 1311 0.4750 +1116 1329 0.6540 +1116 1337 0.5160 +1116 1339 0.5160 +1116 1340 0.5410 +1116 1350 0.6140 +1116 1401 0.6120 +1116 1471 0.4330 +1116 1537 0.4590 +1116 1604 0.5560 +1116 1610 0.5270 +1116 2022 0.5210 +1116 2041 0.4690 +1116 2064 0.4760 +1116 2170 0.5650 +1116 2247 0.5640 +1116 2335 0.4060 +1116 2561 0.4780 +1116 2670 0.4510 +1116 3123 0.6920 +1116 3176 0.4350 +1116 3383 0.6240 +1116 3417 0.4250 +1116 3426 0.4190 +1116 3458 0.4480 +1116 3485 0.4460 +1116 3488 0.4570 +1116 3553 0.7130 +1116 3558 0.6030 +1116 3565 0.4530 +1116 3569 0.5980 +1116 3576 0.5240 +1116 3586 0.4990 +1116 3596 0.7000 +1116 3598 0.9840 +1116 3605 0.4030 +1116 3606 0.4160 +1116 3627 0.4510 +1116 3630 0.4970 +1116 3934 0.8010 +1116 3958 0.7370 +1116 4057 0.6130 +1116 4137 0.4120 +1116 4312 0.5100 +1116 4313 0.4180 +1116 4314 0.5310 +1116 4316 0.4060 +1116 4318 0.5960 +1116 4321 0.5990 +1116 4512 0.4300 +1116 4513 0.6630 +1116 4514 0.6710 +1116 4747 0.7370 +1116 4900 0.6660 +1116 5054 0.4080 +1116 5284 0.5060 +1116 5533 0.4600 +1116 5625 0.4070 +1116 5806 0.4940 +1116 5999 0.4010 +1116 6283 0.4170 +1116 6285 0.4270 +1116 6347 0.6110 +1116 6362 0.5050 +1116 6364 0.5030 +1116 6382 0.6470 +1116 6441 0.4160 +1116 6696 0.6900 +1116 6774 0.5730 +1116 7040 0.4190 +1116 7058 0.4610 +1116 7076 0.5110 +1116 7124 0.5360 +1116 7132 0.4090 +1116 7381 0.4550 +1116 7384 0.4280 +1116 7385 0.4470 +1116 7412 0.4270 +1116 7447 0.6260 +1116 8797 0.8500 +1116 9332 0.5230 +1116 9377 0.5870 +1116 9512 0.4280 +1116 9518 0.4130 +1116 9577 0.5640 +1116 9722 0.4370 +1116 10215 0.6250 +1116 10406 0.5160 +1116 10551 0.4300 +1116 10563 0.4430 +1116 10631 0.5030 +1116 10673 0.4250 +1116 10683 0.4080 +1116 11213 0.4460 +1116 11251 0.5410 +1116 27159 0.4230 +1116 27185 0.4040 +1116 29796 0.4430 +1116 29801 0.4260 +1116 54209 0.5670 +1116 54516 0.5460 +1116 55876 0.5270 +1116 56729 0.6800 +1116 66005 0.5990 +1116 79002 0.5410 +1116 84666 0.4350 +1116 84886 0.4630 +1116 85480 0.4240 +1116 91752 0.4260 +1116 94103 0.6340 +1116 124446 0.7910 +1116 125965 0.5410 +1116 151887 0.4880 +1116 154664 0.4500 +1116 157310 0.5030 +1116 267012 0.4420 +1116 319100 0.4240 +1116 387129 0.5180 +1117 1329 0.6540 +1117 1337 0.5160 +1117 1339 0.5160 +1117 1340 0.5410 +1117 1350 0.6080 +1117 1537 0.4590 +1117 4512 0.4070 +1117 4513 0.6630 +1117 4514 0.6650 +1117 7381 0.4550 +1117 7384 0.4280 +1117 7385 0.4470 +1117 9377 0.5870 +1117 9512 0.4280 +1117 23166 0.4540 +1117 26353 0.4130 +1117 29796 0.4430 +1117 66005 0.7450 +1117 79002 0.5410 +1117 79961 0.6220 +1117 84886 0.5690 +1117 125965 0.5410 +1118 1329 0.6540 +1118 1337 0.5160 +1118 1339 0.5160 +1118 1340 0.5410 +1118 1350 0.6080 +1118 1537 0.4590 +1118 1636 0.4610 +1118 2108 0.4430 +1118 2629 0.9240 +1118 2717 0.4010 +1118 3073 0.9320 +1118 3074 0.9300 +1118 3105 0.4210 +1118 3458 0.4830 +1118 3553 0.5210 +1118 3565 0.6040 +1118 3566 0.4250 +1118 3567 0.4060 +1118 3569 0.4770 +1118 3586 0.5540 +1118 3596 0.7330 +1118 3684 0.4110 +1118 4057 0.4040 +1118 4069 0.7990 +1118 4318 0.4010 +1118 4360 0.6100 +1118 4512 0.4480 +1118 4513 0.6630 +1118 4514 0.6650 +1118 4747 0.4590 +1118 4864 0.7200 +1118 5660 0.7920 +1118 5973 0.9020 +1118 6347 0.4610 +1118 6361 0.4100 +1118 6362 0.7310 +1118 6778 0.4340 +1118 6947 0.4150 +1118 7097 0.4050 +1118 7124 0.4680 +1118 7357 0.9230 +1118 7381 0.4550 +1118 7384 0.4280 +1118 7385 0.4470 +1118 8712 0.4090 +1118 9332 0.4840 +1118 9377 0.5870 +1118 9512 0.4280 +1118 10577 0.6500 +1118 10631 0.4910 +1118 23166 0.5960 +1118 27159 0.9060 +1118 29796 0.4430 +1118 51754 0.4580 +1118 54209 0.4540 +1118 55577 0.9010 +1118 56729 0.4890 +1118 60482 0.6650 +1118 64581 0.4300 +1118 66005 0.6830 +1118 79002 0.5410 +1118 84666 0.5910 +1118 84886 0.4580 +1118 125965 0.5410 +1118 144811 0.4180 +1119 1120 0.9050 +1119 1445 0.4560 +1119 1453 0.7910 +1119 1454 0.7120 +1119 1457 0.6400 +1119 1499 0.6350 +1119 1629 0.5550 +1119 1834 0.4020 +1119 1956 0.6030 +1119 2735 0.4160 +1119 2770 0.4360 +1119 2931 0.4970 +1119 2932 0.9820 +1119 3982 0.5120 +1119 5130 0.9960 +1119 5297 0.5260 +1119 5337 0.4540 +1119 5338 0.4560 +1119 5598 0.4600 +1119 5727 0.4510 +1119 5833 0.9930 +1119 6502 0.5600 +1119 6608 0.4330 +1119 7157 0.4790 +1119 8165 0.4440 +1119 8312 0.9890 +1119 8313 0.6520 +1119 8643 0.4320 +1119 8900 0.5070 +1119 9468 0.9970 +1119 9472 0.4970 +1119 9575 0.4290 +1119 9791 0.4330 +1119 10117 0.4020 +1119 10390 0.7450 +1119 10400 0.7110 +1119 10411 0.4980 +1119 10423 0.5650 +1119 10519 0.5080 +1119 11127 0.4220 +1119 23446 0.4910 +1119 23761 0.6360 +1119 54947 0.4250 +1119 55224 0.5540 +1119 55349 0.5790 +1119 55500 0.5440 +1119 56261 0.9530 +1119 56994 0.7330 +1119 57521 0.5450 +1119 64850 0.9120 +1119 79109 0.5000 +1119 79888 0.4640 +1119 81490 0.4460 +1119 81544 0.4400 +1119 81669 0.8020 +1119 84260 0.5610 +1119 85465 0.6760 +1119 129642 0.4180 +1119 162466 0.9100 +1119 285440 0.4150 +1120 1374 0.7060 +1120 1375 0.9600 +1120 1757 0.4090 +1120 5130 0.9810 +1120 5833 0.9930 +1120 6305 0.5410 +1120 6863 0.5930 +1120 6865 0.7610 +1120 6869 0.7080 +1120 6870 0.7320 +1120 6942 0.4350 +1120 9468 0.9830 +1120 9620 0.4510 +1120 10390 0.6310 +1120 10400 0.6020 +1120 10423 0.4910 +1120 23446 0.4480 +1120 23761 0.6380 +1120 23774 0.4440 +1120 55224 0.5490 +1120 55349 0.5260 +1120 55500 0.5230 +1120 56261 0.9320 +1120 56994 0.6550 +1120 57521 0.5120 +1120 64850 0.9120 +1120 79109 0.4850 +1120 83642 0.4630 +1120 85378 0.4010 +1120 85465 0.6550 +1120 91289 0.5470 +1120 126129 0.9060 +1120 162466 0.9200 +1120 255061 0.9270 +1121 1122 0.7360 +1121 2559 0.4170 +1121 2664 0.5140 +1121 2665 0.4980 +1121 2744 0.5470 +1121 3006 0.4460 +1121 4137 0.5700 +1121 4218 0.8470 +1121 5861 0.9490 +1121 5862 0.6660 +1121 5864 0.9350 +1121 5865 0.5750 +1121 5866 0.4400 +1121 5867 0.6630 +1121 5868 0.8780 +1121 5869 0.6580 +1121 5870 0.7720 +1121 5872 0.6080 +1121 5873 0.9350 +1121 5874 0.7290 +1121 5875 0.9850 +1121 5876 0.9230 +1121 5878 0.8610 +1121 6103 0.4520 +1121 6121 0.5440 +1121 6247 0.4410 +1121 6305 0.4220 +1121 6399 0.4490 +1121 6622 0.7740 +1121 6764 0.4560 +1121 6991 0.6180 +1121 7109 0.4350 +1121 7531 0.5070 +1121 7879 0.9470 +1121 7993 0.5220 +1121 8073 0.5290 +1121 8567 0.4790 +1121 8766 0.7790 +1121 8934 0.7450 +1121 9230 0.6770 +1121 9363 0.6610 +1121 9367 0.7060 +1121 9369 0.4240 +1121 9545 0.6500 +1121 9609 0.5360 +1121 9610 0.4690 +1121 9662 0.4360 +1121 9738 0.5720 +1121 9827 0.4160 +1121 9909 0.4080 +1121 10260 0.4110 +1121 10733 0.4300 +1121 10890 0.7910 +1121 10966 0.5590 +1121 10981 0.7700 +1121 11021 0.6290 +1121 11031 0.8360 +1121 22878 0.4790 +1121 22879 0.4050 +1121 22898 0.5000 +1121 22930 0.6280 +1121 22931 0.5740 +1121 23011 0.6820 +1121 23086 0.4700 +1121 23258 0.4650 +1121 23400 0.5860 +1121 23682 0.6890 +1121 25782 0.5650 +1121 25837 0.6020 +1121 26130 0.4770 +1121 27095 0.4100 +1121 27147 0.4200 +1121 27314 0.6760 +1121 50833 0.4930 +1121 51112 0.4080 +1121 51209 0.7690 +1121 51399 0.4280 +1121 51552 0.6580 +1121 51560 0.6400 +1121 51622 0.4110 +1121 51693 0.4050 +1121 51715 0.5970 +1121 51762 0.6600 +1121 53916 0.5450 +1121 53917 0.6440 +1121 54453 0.4310 +1121 54714 0.4120 +1121 54734 0.5720 +1121 54843 0.4470 +1121 55647 0.6190 +1121 55667 0.4330 +1121 55835 0.4330 +1121 57111 0.5890 +1121 57403 0.6040 +1121 57589 0.4430 +1121 57679 0.4890 +1121 57706 0.5260 +1121 57799 0.5590 +1121 58485 0.4320 +1121 60684 0.4350 +1121 64284 0.7500 +1121 79083 0.4770 +1121 79890 0.4160 +1121 79958 0.4230 +1121 79961 0.4210 +1121 80006 0.5290 +1121 80184 0.6030 +1121 81846 0.4220 +1121 81876 0.9110 +1121 83452 0.7500 +1121 83857 0.4640 +1121 83871 0.5790 +1121 84079 0.4280 +1121 84932 0.6280 +1121 89781 0.4050 +1121 115273 0.6890 +1121 115827 0.5810 +1121 116442 0.6170 +1121 117177 0.4700 +1121 120892 0.4340 +1121 122553 0.4800 +1121 126003 0.4450 +1121 126432 0.4160 +1121 142684 0.5590 +1121 160518 0.4120 +1121 163259 0.4200 +1121 163486 0.5280 +1121 163786 0.4430 +1121 201627 0.4250 +1121 202500 0.4700 +1121 221960 0.4330 +1121 246744 0.4400 +1121 255239 0.4510 +1121 284058 0.4930 +1121 326624 0.4990 +1121 338382 0.8410 +1121 339122 0.6420 +1121 347517 0.5610 +1121 375743 0.5670 +1121 376267 0.5810 +1121 387849 0.4330 +1121 401258 0.5840 +1121 401409 0.5390 +1122 2664 0.4910 +1122 2665 0.4720 +1122 4218 0.7200 +1122 5861 0.9170 +1122 5862 0.6080 +1122 5864 0.8300 +1122 5865 0.5830 +1122 5866 0.4190 +1122 5867 0.8220 +1122 5868 0.9410 +1122 5869 0.6030 +1122 5870 0.7250 +1122 5872 0.5880 +1122 5873 0.9210 +1122 5874 0.8190 +1122 5875 0.9890 +1122 5876 0.9610 +1122 5878 0.8300 +1122 5912 0.4640 +1122 6305 0.4410 +1122 6399 0.4130 +1122 6764 0.4610 +1122 6857 0.4280 +1122 7109 0.4050 +1122 7531 0.4990 +1122 7879 0.8610 +1122 7993 0.6050 +1122 8073 0.5280 +1122 8567 0.4130 +1122 8766 0.7170 +1122 8934 0.7170 +1122 9230 0.6760 +1122 9363 0.6070 +1122 9367 0.7020 +1122 9545 0.6110 +1122 9609 0.5260 +1122 9610 0.4160 +1122 9827 0.4050 +1122 10890 0.7410 +1122 10966 0.5720 +1122 10981 0.8590 +1122 11021 0.6430 +1122 11031 0.8640 +1122 22878 0.4360 +1122 22898 0.4990 +1122 22930 0.4990 +1122 22931 0.5780 +1122 23011 0.6070 +1122 23086 0.6480 +1122 23258 0.4300 +1122 23596 0.9740 +1122 23682 0.6710 +1122 25782 0.4910 +1122 25837 0.8350 +1122 26031 0.4050 +1122 26130 0.4730 +1122 27095 0.4140 +1122 27147 0.4200 +1122 27314 0.6670 +1122 51209 0.7500 +1122 51399 0.4160 +1122 51552 0.6710 +1122 51560 0.6130 +1122 51622 0.4150 +1122 51715 0.5580 +1122 51762 0.6420 +1122 53916 0.5380 +1122 53917 0.6180 +1122 54453 0.4300 +1122 54734 0.5490 +1122 54843 0.6450 +1122 55647 0.6070 +1122 55667 0.4050 +1122 55686 0.4250 +1122 57111 0.7420 +1122 57403 0.7290 +1122 57589 0.4270 +1122 57679 0.4380 +1122 57706 0.5190 +1122 57799 0.5590 +1122 58485 0.4210 +1122 58504 0.4140 +1122 60684 0.4050 +1122 64284 0.7450 +1122 79083 0.6420 +1122 79890 0.4160 +1122 79958 0.4230 +1122 79961 0.4200 +1122 80006 0.4050 +1122 81846 0.4170 +1122 81876 0.8610 +1122 83452 0.5540 +1122 83871 0.5520 +1122 84079 0.4580 +1122 84932 0.6190 +1122 115273 0.6800 +1122 115827 0.5590 +1122 116442 0.5960 +1122 117177 0.4840 +1122 122553 0.4050 +1122 126003 0.4410 +1122 126432 0.4160 +1122 142684 0.5590 +1122 160518 0.4200 +1122 163259 0.4200 +1122 163486 0.5190 +1122 201627 0.4050 +1122 221960 0.4140 +1122 326624 0.4990 +1122 338382 0.8260 +1122 339122 0.6040 +1122 347517 0.5260 +1122 375743 0.5790 +1122 376267 0.5590 +1122 387849 0.5410 +1122 401258 0.5880 +1122 401409 0.5430 +1122 440738 0.5870 +1123 1124 0.5280 +1123 1608 0.6700 +1123 1793 0.4120 +1123 1942 0.4920 +1123 1949 0.4670 +1123 1969 0.4490 +1123 2043 0.7670 +1123 2138 0.4980 +1123 3198 0.8470 +1123 3211 0.6710 +1123 3231 0.6480 +1123 3831 0.4980 +1123 5879 0.6940 +1123 5921 0.7510 +1123 6405 0.4830 +1123 7074 0.4750 +1123 8440 0.8370 +1123 10972 0.5250 +1123 51409 0.6220 +1123 55605 0.6030 +1123 57167 0.8250 +1123 57580 0.4320 +1123 64221 0.8250 +1124 1508 0.6240 +1124 1514 0.4760 +1124 1520 0.4040 +1124 1608 0.6560 +1124 1969 0.4530 +1124 2043 0.5900 +1124 3831 0.4780 +1124 4685 0.4050 +1124 4690 0.4020 +1124 5816 0.4410 +1124 5879 0.8350 +1124 5921 0.5330 +1124 6405 0.4750 +1124 7074 0.4240 +1124 9844 0.4110 +1124 10972 0.5360 +1124 54504 0.7030 +1124 55748 0.4400 +1124 57580 0.4280 +1124 84735 0.4560 +1124 84899 0.4440 +1124 257019 0.6240 +1128 1129 0.9080 +1128 1131 0.9100 +1128 1133 0.9050 +1128 1135 0.5970 +1128 1136 0.5440 +1128 1137 0.5130 +1128 1138 0.4650 +1128 1139 0.4170 +1128 1140 0.4170 +1128 1141 0.5580 +1128 1143 0.5470 +1128 1351 0.7660 +1128 1609 0.4310 +1128 1610 0.4650 +1128 1902 0.9160 +1128 1906 0.6660 +1128 1907 0.6500 +1128 1908 0.6650 +1128 2011 0.7630 +1128 2149 0.9070 +1128 2495 0.7650 +1128 2554 0.5210 +1128 2555 0.4250 +1128 2557 0.4260 +1128 2558 0.4700 +1128 2559 0.4420 +1128 2561 0.4500 +1128 2563 0.5060 +1128 2565 0.4240 +1128 2566 0.4600 +1128 2693 0.4020 +1128 2767 0.9200 +1128 2769 0.7140 +1128 2770 0.6780 +1128 2771 0.6920 +1128 2773 0.6770 +1128 2774 0.6780 +1128 2776 0.9630 +1128 2778 0.6760 +1128 2846 0.9040 +1128 2869 0.5190 +1128 2897 0.4960 +1128 2902 0.5470 +1128 2903 0.4520 +1128 2904 0.4710 +1128 2911 0.4270 +1128 2915 0.9500 +1128 3356 0.5300 +1128 3708 0.4500 +1128 3710 0.4490 +1128 3760 0.5450 +1128 3761 0.4010 +1128 3765 0.4110 +1128 3785 0.5360 +1128 3827 0.9140 +1128 4296 0.7680 +1128 4852 0.7380 +1128 5020 0.7070 +1128 5173 0.4370 +1128 5294 0.7070 +1128 5330 0.5850 +1128 5331 0.8940 +1128 5333 0.4180 +1128 5733 0.4520 +1128 5837 0.7630 +1128 5970 0.6610 +1128 6000 0.4580 +1128 6094 0.7740 +1128 6295 0.5220 +1128 6511 0.4310 +1128 6572 0.4990 +1128 6750 0.7400 +1128 7204 0.4990 +1128 7356 0.7630 +1128 7536 0.7660 +1128 8061 0.7640 +1128 8525 0.4220 +1128 8526 0.4220 +1128 8801 0.5270 +1128 8811 0.4140 +1128 8997 0.5330 +1128 9170 0.9000 +1128 9630 0.7060 +1128 10161 0.9310 +1128 10800 0.4890 +1128 23236 0.6620 +1128 23533 0.6850 +1128 23566 0.9080 +1128 23620 0.4330 +1128 51738 0.6830 +1128 54738 0.4080 +1128 55970 0.9110 +1128 57030 0.5390 +1128 57105 0.4830 +1128 57121 0.9010 +1128 58157 0.5200 +1128 79026 0.7660 +1128 85397 0.4670 +1128 115557 0.5390 +1128 146850 0.6620 +1129 1131 0.4530 +1129 1132 0.5610 +1129 1135 0.6840 +1129 1136 0.4750 +1129 1137 0.4740 +1129 1138 0.6280 +1129 1141 0.7090 +1129 1142 0.4780 +1129 1143 0.5570 +1129 1173 0.5090 +1129 1175 0.4990 +1129 1211 0.4990 +1129 1212 0.4990 +1129 1312 0.6860 +1129 1394 0.5610 +1129 1601 0.5240 +1129 1813 0.4390 +1129 1815 0.5230 +1129 1902 0.9100 +1129 1906 0.6670 +1129 1907 0.6500 +1129 1908 0.6500 +1129 2060 0.4990 +1129 2149 0.9190 +1129 2289 0.4090 +1129 2554 0.6150 +1129 2555 0.8120 +1129 2559 0.5360 +1129 2565 0.4030 +1129 2567 0.4480 +1129 2687 0.4910 +1129 2741 0.5000 +1129 2767 0.6670 +1129 2769 0.6800 +1129 2770 0.8000 +1129 2771 0.6600 +1129 2773 0.6540 +1129 2776 0.6870 +1129 2782 0.7890 +1129 2783 0.6600 +1129 2784 0.6800 +1129 2785 0.6930 +1129 2786 0.7080 +1129 2787 0.6500 +1129 2788 0.6980 +1129 2790 0.7030 +1129 2791 0.7170 +1129 2792 0.6530 +1129 2793 0.6680 +1129 2838 0.4010 +1129 2846 0.9020 +1129 2894 0.4510 +1129 2897 0.4850 +1129 2918 0.6770 +1129 3267 0.5270 +1129 3356 0.4910 +1129 3358 0.5340 +1129 3553 0.4320 +1129 3569 0.4590 +1129 3586 0.4310 +1129 3660 0.4010 +1129 3728 0.4080 +1129 3767 0.4350 +1129 3827 0.9040 +1129 3949 0.5080 +1129 4036 0.5080 +1129 4129 0.4340 +1129 4133 0.5490 +1129 4360 0.4060 +1129 4852 0.7310 +1129 5020 0.6890 +1129 5294 0.7080 +1129 5726 0.4900 +1129 6288 0.4080 +1129 6289 0.4100 +1129 6453 0.4990 +1129 6529 0.4730 +1129 6530 0.5730 +1129 6531 0.4870 +1129 6532 0.6830 +1129 6714 0.5290 +1129 6750 0.7120 +1129 6844 0.5230 +1129 6845 0.4990 +1129 6869 0.4830 +1129 7166 0.4680 +1129 7474 0.4010 +1129 8218 0.5270 +1129 8301 0.4990 +1129 8601 0.4980 +1129 8673 0.4990 +1129 8787 0.6480 +1129 8973 0.4230 +1129 9170 0.9000 +1129 9341 0.4990 +1129 9369 0.4990 +1129 9586 0.4470 +1129 9630 0.6710 +1129 9892 0.5100 +1129 10161 0.9010 +1129 10681 0.8190 +1129 22848 0.5090 +1129 22905 0.4990 +1129 23149 0.4990 +1129 23533 0.6710 +1129 23566 0.9000 +1129 25977 0.4990 +1129 26086 0.4160 +1129 26119 0.4990 +1129 29924 0.4990 +1129 29978 0.4990 +1129 50618 0.4990 +1129 50833 0.7460 +1129 51738 0.6640 +1129 51764 0.6560 +1129 54331 0.7990 +1129 55707 0.4990 +1129 55970 0.9130 +1129 57121 0.9050 +1129 59345 0.7050 +1129 60482 0.4290 +1129 64857 0.6480 +1129 84251 0.5330 +1129 85021 0.4990 +1129 85406 0.5500 +1129 92292 0.4930 +1129 94235 0.6600 +1129 115548 0.4990 +1129 116443 0.5220 +1129 121278 0.5390 +1129 146850 0.6620 +1129 255239 0.7020 +1129 388531 0.5880 +1129 104909134 0.5220 +1130 1460 0.4460 +1130 1493 0.4580 +1130 1511 0.4960 +1130 1908 0.5670 +1130 1910 0.4890 +1130 2274 0.4560 +1130 3702 0.4800 +1130 3916 0.5310 +1130 4068 0.6890 +1130 4157 0.5840 +1130 4644 0.5450 +1130 4948 0.5740 +1130 5551 0.5790 +1130 5591 0.4170 +1130 5873 0.7870 +1130 5875 0.4360 +1130 6813 0.7920 +1130 7299 0.5150 +1130 7306 0.4620 +1130 8546 0.8050 +1130 8676 0.8170 +1130 8943 0.5210 +1130 9146 0.4340 +1130 9525 0.6180 +1130 9896 0.6350 +1130 11234 0.7540 +1130 23586 0.4590 +1130 26258 0.6200 +1130 26276 0.4140 +1130 26960 0.4310 +1130 30849 0.7180 +1130 51151 0.5810 +1130 51510 0.4940 +1130 51534 0.9480 +1130 51806 0.4130 +1130 54832 0.4140 +1130 55294 0.4410 +1130 55330 0.4240 +1130 79083 0.4160 +1130 79803 0.6540 +1130 81704 0.4530 +1130 83938 0.5150 +1130 84061 0.5450 +1130 84062 0.4900 +1130 84343 0.7420 +1130 89781 0.5700 +1130 91860 0.4020 +1130 92293 0.4570 +1130 114795 0.4420 +1130 121256 0.4030 +1130 157680 0.4310 +1130 163688 0.4020 +1130 201294 0.8290 +1130 283652 0.5190 +1130 388552 0.6820 +1130 415117 0.6080 +1131 1133 0.9330 +1131 1134 0.4050 +1131 1135 0.4640 +1131 1137 0.4830 +1131 1138 0.4540 +1131 1141 0.5220 +1131 1143 0.4420 +1131 1394 0.4740 +1131 2261 0.4140 +1131 2554 0.6200 +1131 2741 0.4970 +1131 2767 0.9080 +1131 2769 0.7170 +1131 2774 0.6990 +1131 2776 0.9500 +1131 2778 0.6660 +1131 2788 0.4650 +1131 2869 0.5190 +1131 2894 0.4940 +1131 2897 0.5030 +1131 2915 0.9290 +1131 2918 0.5300 +1131 3358 0.4840 +1131 3827 0.9030 +1131 5330 0.5680 +1131 5331 0.5220 +1131 5367 0.4120 +1131 5999 0.4030 +1131 6863 0.5120 +1131 7204 0.4990 +1131 8997 0.5200 +1131 9170 0.4120 +1131 9630 0.6900 +1131 9737 0.4860 +1131 10399 0.4910 +1131 10800 0.4550 +1131 23236 0.6070 +1131 54965 0.4200 +1131 55188 0.4790 +1131 55970 0.9100 +1131 57085 0.7150 +1131 57105 0.4490 +1131 85397 0.6150 +1131 115557 0.5100 +1131 116443 0.4730 +1131 259232 0.4220 +1131 104909134 0.4260 +1132 1136 0.4180 +1132 1137 0.4140 +1132 1138 0.4440 +1132 1141 0.5270 +1132 1143 0.4300 +1132 1812 0.4340 +1132 1813 0.4040 +1132 2770 0.7140 +1132 2771 0.8750 +1132 2773 0.6780 +1132 2782 0.8810 +1132 2783 0.6940 +1132 2784 0.6610 +1132 2785 0.7030 +1132 2786 0.6630 +1132 2787 0.6910 +1132 2788 0.6770 +1132 2790 0.7100 +1132 2791 0.6590 +1132 2792 0.6500 +1132 2793 0.6620 +1132 2830 0.4420 +1132 2912 0.4050 +1132 2913 0.4650 +1132 2915 0.4110 +1132 3358 0.5880 +1132 3361 0.4160 +1132 3827 0.9050 +1132 5142 0.4680 +1132 6572 0.4060 +1132 6714 0.5350 +1132 6854 0.5190 +1132 8542 0.4240 +1132 10681 0.6670 +1132 23780 0.4890 +1132 26086 0.4100 +1132 51764 0.6850 +1132 54331 0.8720 +1132 55188 0.5180 +1132 55970 0.9100 +1132 59345 0.6840 +1132 63940 0.4380 +1132 80832 0.4900 +1132 94235 0.6500 +1133 1135 0.5560 +1133 1136 0.4210 +1133 1137 0.6350 +1133 1138 0.4920 +1133 1140 0.4600 +1133 1141 0.6670 +1133 1142 0.4460 +1133 1143 0.4790 +1133 2767 0.9020 +1133 2774 0.6550 +1133 2776 0.9100 +1133 2778 0.6760 +1133 2869 0.5190 +1133 2892 0.4840 +1133 2894 0.4860 +1133 2899 0.4770 +1133 2903 0.5110 +1133 2904 0.4870 +1133 2915 0.9460 +1133 3827 0.9030 +1133 3834 0.4370 +1133 4988 0.4930 +1133 5330 0.5390 +1133 5331 0.5220 +1133 7204 0.4990 +1133 8383 0.4100 +1133 8973 0.5680 +1133 8997 0.5030 +1133 10800 0.4720 +1133 23236 0.5500 +1133 26610 0.4020 +1133 55970 0.9030 +1133 57105 0.4640 +1133 84066 0.4780 +1133 84144 0.4740 +1133 115557 0.4990 +1133 117532 0.5240 +1133 170692 0.4030 +1134 1135 0.7260 +1134 1136 0.8440 +1134 1137 0.8120 +1134 1138 0.7170 +1134 1139 0.6180 +1134 1140 0.9120 +1134 1141 0.7620 +1134 1142 0.7120 +1134 1143 0.7670 +1134 1144 0.9590 +1134 1145 0.9410 +1134 1146 0.9260 +1134 1232 0.4230 +1134 1277 0.4130 +1134 1798 0.5380 +1134 2673 0.5480 +1134 2833 0.4690 +1134 3178 0.4060 +1134 3187 0.4460 +1134 3188 0.4560 +1134 3191 0.4690 +1134 3394 0.6030 +1134 3627 0.4230 +1134 4283 0.4980 +1134 4593 0.7090 +1134 4618 0.5020 +1134 4621 0.4190 +1134 4654 0.4180 +1134 4656 0.6680 +1134 5913 0.8830 +1134 6261 0.4370 +1134 6329 0.5020 +1134 6606 0.4500 +1134 6607 0.4630 +1134 6780 0.4220 +1134 7136 0.4200 +1134 7273 0.5810 +1134 8292 0.7470 +1134 8973 0.7590 +1134 23439 0.5170 +1134 29925 0.4180 +1134 55584 0.8280 +1134 57053 0.7280 +1134 57152 0.6690 +1134 60482 0.4090 +1134 66004 0.6280 +1134 89832 0.7010 +1134 92906 0.4880 +1134 134957 0.5450 +1134 199857 0.5430 +1134 285489 0.7500 +1134 339291 0.5620 +1134 375790 0.4880 +1134 389207 0.4050 +1134 432355 0.6500 +1135 1136 0.9150 +1135 1137 0.9390 +1135 1138 0.6350 +1135 1139 0.9300 +1135 1140 0.7880 +1135 1141 0.9480 +1135 1142 0.9190 +1135 1143 0.9180 +1135 1144 0.7770 +1135 1145 0.7920 +1135 1146 0.6590 +1135 1644 0.5220 +1135 1812 0.5320 +1135 1813 0.5830 +1135 2564 0.4480 +1135 2566 0.4370 +1135 2570 0.4750 +1135 3476 0.6020 +1135 3785 0.4550 +1135 3786 0.4910 +1135 4915 0.5810 +1135 5368 0.7580 +1135 5533 0.5910 +1135 5726 0.5600 +1135 6323 0.4990 +1135 6324 0.4450 +1135 6326 0.4270 +1135 6506 0.4890 +1135 6531 0.5010 +1135 6532 0.5060 +1135 6709 0.4630 +1135 8973 0.7630 +1135 9211 0.5260 +1135 9568 0.7670 +1135 9681 0.5800 +1135 55584 0.9160 +1135 57030 0.6030 +1135 57053 0.6110 +1135 57084 0.6520 +1135 57152 0.6700 +1135 57526 0.4480 +1135 57582 0.6840 +1135 84812 0.4030 +1135 89832 0.5820 +1135 112476 0.4500 +1135 134957 0.5450 +1135 219770 0.4470 +1135 255022 0.4130 +1135 432355 0.6530 +1136 1137 0.9150 +1136 1138 0.9800 +1136 1139 0.9180 +1136 1140 0.7490 +1136 1141 0.9620 +1136 1142 0.7740 +1136 1143 0.9980 +1136 1144 0.7430 +1136 1145 0.7440 +1136 1146 0.5940 +1136 1548 0.7770 +1136 1644 0.5060 +1136 1812 0.5300 +1136 1813 0.5260 +1136 1815 0.4630 +1136 2218 0.4040 +1136 2564 0.4460 +1136 3356 0.5350 +1136 3359 0.4550 +1136 3476 0.5390 +1136 3658 0.6960 +1136 3717 0.9020 +1136 4439 0.4470 +1136 5685 0.9390 +1136 5726 0.4610 +1136 6506 0.4790 +1136 7015 0.4090 +1136 8929 0.4950 +1136 8973 0.8260 +1136 9568 0.5720 +1136 10144 0.7200 +1136 27436 0.4270 +1136 53916 0.4810 +1136 54970 0.5080 +1136 55140 0.4220 +1136 55277 0.4290 +1136 55584 0.9420 +1136 57030 0.4450 +1136 57053 0.5930 +1136 57084 0.5300 +1136 57152 0.6810 +1136 64399 0.6650 +1136 66004 0.6010 +1136 79608 0.6650 +1136 79807 0.4450 +1136 79890 0.4180 +1136 81037 0.6300 +1136 89832 0.5750 +1136 112398 0.4160 +1136 123099 0.5700 +1136 123688 0.7840 +1136 124446 0.4300 +1136 132204 0.4040 +1136 134957 0.5630 +1136 255239 0.5330 +1136 432355 0.6540 +1137 1138 0.8770 +1137 1139 0.9250 +1137 1140 0.7720 +1137 1141 0.9940 +1137 1142 0.8430 +1137 1143 0.9200 +1137 1144 0.7810 +1137 1145 0.7770 +1137 1146 0.6440 +1137 1312 0.5170 +1137 1394 0.4290 +1137 1548 0.4970 +1137 1565 0.4540 +1137 1639 0.4600 +1137 1644 0.5470 +1137 1812 0.7090 +1137 1813 0.6330 +1137 1814 0.5330 +1137 1815 0.7320 +1137 1816 0.5270 +1137 2554 0.4120 +1137 2561 0.5860 +1137 2562 0.4420 +1137 2563 0.4380 +1137 2565 0.4310 +1137 2566 0.5220 +1137 2833 0.5940 +1137 2897 0.5080 +1137 2899 0.4150 +1137 2902 0.4060 +1137 2903 0.5090 +1137 2904 0.5840 +1137 2906 0.4080 +1137 2911 0.4050 +1137 2915 0.4080 +1137 3350 0.4330 +1137 3351 0.6560 +1137 3352 0.5800 +1137 3354 0.4270 +1137 3356 0.6510 +1137 3358 0.6400 +1137 3361 0.4530 +1137 3476 0.8090 +1137 3717 0.9030 +1137 3736 0.4500 +1137 3778 0.4040 +1137 3785 0.9240 +1137 3786 0.7520 +1137 4048 0.4100 +1137 4129 0.5020 +1137 4988 0.6250 +1137 5726 0.4850 +1137 5913 0.4420 +1137 6323 0.6070 +1137 6324 0.5280 +1137 6326 0.5450 +1137 6334 0.4270 +1137 6506 0.5430 +1137 6529 0.5150 +1137 6530 0.4040 +1137 6531 0.6200 +1137 6532 0.6870 +1137 6572 0.4040 +1137 6616 0.4990 +1137 6812 0.4050 +1137 7166 0.4690 +1137 8973 0.8910 +1137 9211 0.5650 +1137 9568 0.7070 +1137 9681 0.5820 +1137 11255 0.4640 +1137 55140 0.4260 +1137 55277 0.4890 +1137 55584 0.9160 +1137 57030 0.5420 +1137 57053 0.6140 +1137 57084 0.6560 +1137 57152 0.6740 +1137 57526 0.4830 +1137 57582 0.6690 +1137 66004 0.6700 +1137 79174 0.7230 +1137 79608 0.7640 +1137 89832 0.5920 +1137 112476 0.5970 +1137 114327 0.4450 +1137 123099 0.6330 +1137 134957 0.5560 +1137 255239 0.4910 +1137 432355 0.6530 +1138 1139 0.6340 +1138 1140 0.6470 +1138 1141 0.8910 +1138 1142 0.5600 +1138 1143 0.9190 +1138 1144 0.6550 +1138 1145 0.6420 +1138 1146 0.6540 +1138 1312 0.4470 +1138 1548 0.8220 +1138 1644 0.5480 +1138 1812 0.5610 +1138 1813 0.5720 +1138 1815 0.4810 +1138 2555 0.4010 +1138 2564 0.4920 +1138 3658 0.6710 +1138 4439 0.4470 +1138 4915 0.4250 +1138 4988 0.4760 +1138 5685 0.9460 +1138 5726 0.4820 +1138 6531 0.5690 +1138 6532 0.6230 +1138 7015 0.4020 +1138 8973 0.6290 +1138 9456 0.4020 +1138 9568 0.6600 +1138 10144 0.6410 +1138 23230 0.4470 +1138 27436 0.4330 +1138 53916 0.4080 +1138 54970 0.5160 +1138 55584 0.7510 +1138 57030 0.5090 +1138 57053 0.7460 +1138 57084 0.5340 +1138 57152 0.7010 +1138 64399 0.5820 +1138 66004 0.6440 +1138 79807 0.4370 +1138 79890 0.4100 +1138 81037 0.5920 +1138 89832 0.5990 +1138 123688 0.7580 +1138 134957 0.5450 +1138 255239 0.5860 +1138 432355 0.6520 +1139 1140 0.7750 +1139 1141 0.9230 +1139 1142 0.7770 +1139 1143 0.9240 +1139 1144 0.7650 +1139 1145 0.7770 +1139 1146 0.6430 +1139 2558 0.4370 +1139 2902 0.4570 +1139 5621 0.4160 +1139 8973 0.7760 +1139 51285 0.4040 +1139 55584 0.9190 +1139 57053 0.6250 +1139 57152 0.6190 +1139 66004 0.6320 +1139 79608 0.4290 +1139 89832 0.9690 +1139 134957 0.5510 +1140 1141 0.7450 +1140 1142 0.7840 +1140 1143 0.7440 +1140 1144 0.9080 +1140 1145 0.8470 +1140 1146 0.7390 +1140 1798 0.5260 +1140 2243 0.4280 +1140 2657 0.4240 +1140 2673 0.5170 +1140 2833 0.4250 +1140 4593 0.7960 +1140 5913 0.9290 +1140 6329 0.5160 +1140 7043 0.4050 +1140 8292 0.7980 +1140 8718 0.4100 +1140 8973 0.7520 +1140 55584 0.8280 +1140 57053 0.6220 +1140 57152 0.6550 +1140 89832 0.5700 +1140 134957 0.5450 +1140 199857 0.5460 +1140 285489 0.7860 +1140 375790 0.4890 +1140 432355 0.6550 +1141 1142 0.7850 +1141 1143 0.9100 +1141 1144 0.7560 +1141 1145 0.7490 +1141 1146 0.6030 +1141 1548 0.4120 +1141 1644 0.5020 +1141 1812 0.6000 +1141 1813 0.6490 +1141 1814 0.4100 +1141 1815 0.4500 +1141 2554 0.4120 +1141 2562 0.5550 +1141 2566 0.5000 +1141 2567 0.4130 +1141 2891 0.4420 +1141 2894 0.5030 +1141 2899 0.5860 +1141 2903 0.6430 +1141 2904 0.6360 +1141 3350 0.5640 +1141 3356 0.5760 +1141 3361 0.5370 +1141 3476 0.6770 +1141 3717 0.9000 +1141 3785 0.5840 +1141 3786 0.5670 +1141 4204 0.4910 +1141 4904 0.4370 +1141 4915 0.4900 +1141 5538 0.4230 +1141 5726 0.4650 +1141 5813 0.5750 +1141 6323 0.5450 +1141 6324 0.4930 +1141 6326 0.5360 +1141 6334 0.4180 +1141 6506 0.5730 +1141 6531 0.6080 +1141 6532 0.5360 +1141 6709 0.4760 +1141 6812 0.4460 +1141 8973 0.7490 +1141 9211 0.5100 +1141 9568 0.6980 +1141 9681 0.5850 +1141 23025 0.4670 +1141 55584 0.9190 +1141 57030 0.6090 +1141 57053 0.6080 +1141 57084 0.7060 +1141 57152 0.6780 +1141 57526 0.4390 +1141 57582 0.6950 +1141 66004 0.7600 +1141 89832 0.6860 +1141 112476 0.4950 +1141 134957 0.5450 +1141 255239 0.4460 +1141 432355 0.6550 +1142 1143 0.8430 +1142 1144 0.7780 +1142 1145 0.8290 +1142 1146 0.6660 +1142 1548 0.8070 +1142 1555 0.7040 +1142 1644 0.4360 +1142 1813 0.4360 +1142 2564 0.4120 +1142 5726 0.4180 +1142 7301 0.6360 +1142 8973 0.9300 +1142 9145 0.4620 +1142 9568 0.5680 +1142 55584 0.7650 +1142 57030 0.4790 +1142 57053 0.6160 +1142 57084 0.5340 +1142 57152 0.6840 +1142 81790 0.4090 +1142 85445 0.4290 +1142 89832 0.5890 +1142 112398 0.6060 +1142 126638 0.4060 +1142 127833 0.4230 +1142 134957 0.5450 +1142 221496 0.4580 +1142 432355 0.6520 +1142 642968 0.5410 +1143 1144 0.7690 +1143 1145 0.7520 +1143 1146 0.5920 +1143 1548 0.6030 +1143 1644 0.4700 +1143 1812 0.5430 +1143 1813 0.4980 +1143 1815 0.4930 +1143 3356 0.5140 +1143 3476 0.6060 +1143 3658 0.5770 +1143 3717 0.9000 +1143 4915 0.5000 +1143 5685 0.9380 +1143 5726 0.4780 +1143 6506 0.4640 +1143 6531 0.5090 +1143 6532 0.5570 +1143 6572 0.4330 +1143 8973 0.8220 +1143 9568 0.5810 +1143 54970 0.4500 +1143 55140 0.4260 +1143 55277 0.4890 +1143 55584 0.9200 +1143 56923 0.5590 +1143 57030 0.4820 +1143 57053 0.6070 +1143 57084 0.5600 +1143 57152 0.7000 +1143 66004 0.6940 +1143 79608 0.7570 +1143 81037 0.4490 +1143 89832 0.5740 +1143 123099 0.6080 +1143 123688 0.7020 +1143 134957 0.5450 +1143 255239 0.4900 +1143 432355 0.6550 +1144 1145 0.8470 +1144 1146 0.8130 +1144 1285 0.7220 +1144 1293 0.5520 +1144 1798 0.5350 +1144 2673 0.5720 +1144 2833 0.4250 +1144 3623 0.5250 +1144 4593 0.7670 +1144 4617 0.4060 +1144 4635 0.4010 +1144 4649 0.4350 +1144 4654 0.4510 +1144 4656 0.5790 +1144 5077 0.6490 +1144 5913 0.9300 +1144 6261 0.4310 +1144 6329 0.5650 +1144 6606 0.4350 +1144 6607 0.4430 +1144 7136 0.4050 +1144 7429 0.5510 +1144 8292 0.7040 +1144 8973 0.7650 +1144 9427 0.6220 +1144 29925 0.4880 +1144 55584 0.8440 +1144 57053 0.6020 +1144 57152 0.6560 +1144 60482 0.4300 +1144 89832 0.5510 +1144 131377 0.5130 +1144 134957 0.5450 +1144 170622 0.5480 +1144 199857 0.5860 +1144 285489 0.7620 +1144 375790 0.6470 +1144 432355 0.6540 +1145 1146 0.7320 +1145 1798 0.5920 +1145 2673 0.6230 +1145 2811 0.6200 +1145 4534 0.4150 +1145 4593 0.8480 +1145 4649 0.4300 +1145 5339 0.4410 +1145 5913 0.9150 +1145 6329 0.6090 +1145 6606 0.4570 +1145 6607 0.4720 +1145 7402 0.5650 +1145 8292 0.8680 +1145 8718 0.4910 +1145 8973 0.8350 +1145 9145 0.4540 +1145 9581 0.4070 +1145 29925 0.5750 +1145 50488 0.8330 +1145 55584 0.7770 +1145 57053 0.6370 +1145 57152 0.6580 +1145 60482 0.4730 +1145 89832 0.5770 +1145 134957 0.5450 +1145 199857 0.6070 +1145 285489 0.8580 +1145 374569 0.5510 +1145 375790 0.5430 +1145 432355 0.6550 +1145 100130311 0.4430 +1146 1281 0.4070 +1146 1293 0.5370 +1146 1798 0.4580 +1146 2218 0.4190 +1146 3084 0.4220 +1146 4593 0.7860 +1146 4618 0.5200 +1146 4619 0.4830 +1146 4620 0.6100 +1146 4621 0.5220 +1146 4625 0.5000 +1146 4626 0.4110 +1146 4656 0.6040 +1146 5913 0.9000 +1146 6329 0.4540 +1146 7060 0.4420 +1146 7125 0.4960 +1146 7135 0.5200 +1146 7136 0.6450 +1146 7140 0.5870 +1146 7169 0.5310 +1146 7402 0.4800 +1146 7429 0.4820 +1146 8292 0.6560 +1146 8557 0.4540 +1146 8973 0.5990 +1146 9379 0.4330 +1146 9427 0.4580 +1146 9470 0.4600 +1146 51412 0.4200 +1146 55584 0.6290 +1146 57053 0.6250 +1146 57152 0.6600 +1146 89832 0.5760 +1146 134957 0.5450 +1146 170622 0.5120 +1146 199857 0.4470 +1146 200765 0.4680 +1146 285489 0.6490 +1146 375790 0.6670 +1146 386676 0.4220 +1146 432355 0.6550 +1146 646960 0.4260 +1147 1326 0.9600 +1147 1385 0.4590 +1147 1387 0.8240 +1147 1432 0.6090 +1147 1499 0.7570 +1147 1540 0.9210 +1147 1654 0.6040 +1147 1660 0.5240 +1147 1788 0.4190 +1147 1794 0.6340 +1147 1843 0.4870 +1147 1917 0.4110 +1147 1950 0.4040 +1147 1956 0.4810 +1147 1994 0.4540 +1147 2033 0.7420 +1147 2064 0.6180 +1147 2099 0.7350 +1147 2288 0.8010 +1147 2289 0.9490 +1147 2308 0.9360 +1147 2309 0.9570 +1147 2353 0.4950 +1147 2475 0.9730 +1147 2597 0.6250 +1147 2810 0.5710 +1147 2960 0.4650 +1147 3021 0.8530 +1147 3064 0.4110 +1147 3065 0.5310 +1147 3091 0.4570 +1147 3093 0.5200 +1147 3162 0.4050 +1147 3183 0.4310 +1147 3265 0.5660 +1147 3303 0.6610 +1147 3304 0.5270 +1147 3305 0.4560 +1147 3308 0.7150 +1147 3312 0.5030 +1147 3313 0.5970 +1147 3315 0.6860 +1147 3320 0.9920 +1147 3326 0.9790 +1147 3329 0.4620 +1147 3383 0.4830 +1147 3439 0.4910 +1147 3454 0.4010 +1147 3456 0.6180 +1147 3458 0.5180 +1147 3480 0.4440 +1147 3551 0.9990 +1147 3552 0.7140 +1147 3553 0.8330 +1147 3554 0.5160 +1147 3558 0.4140 +1147 3565 0.4080 +1147 3569 0.7130 +1147 3576 0.5750 +1147 3586 0.5320 +1147 3605 0.4310 +1147 3606 0.4600 +1147 3630 0.4220 +1147 3654 0.9990 +1147 3656 0.7410 +1147 3659 0.4360 +1147 3661 0.7210 +1147 3663 0.5740 +1147 3665 0.9930 +1147 3667 0.9530 +1147 3725 0.6660 +1147 3845 0.4320 +1147 4001 0.4850 +1147 4050 0.5940 +1147 4055 0.8230 +1147 4077 0.4740 +1147 4087 0.9220 +1147 4088 0.8750 +1147 4089 0.5910 +1147 4130 0.6190 +1147 4170 0.4030 +1147 4193 0.5950 +1147 4214 0.9710 +1147 4215 0.9610 +1147 4216 0.4780 +1147 4303 0.9200 +1147 4318 0.5470 +1147 4609 0.8790 +1147 4627 0.5340 +1147 4628 0.4050 +1147 4637 0.4170 +1147 4772 0.4010 +1147 4790 0.9990 +1147 4791 0.9980 +1147 4792 0.9990 +1147 4793 0.9970 +1147 4794 0.9780 +1147 4796 0.4280 +1147 4851 0.7260 +1147 4854 0.5390 +1147 5037 0.6640 +1147 5155 0.4240 +1147 5170 0.9220 +1147 5268 0.5970 +1147 5290 0.5290 +1147 5494 0.4460 +1147 5495 0.8310 +1147 5499 0.4830 +1147 5515 0.6510 +1147 5531 0.4640 +1147 5578 0.6330 +1147 5579 0.6470 +1147 5580 0.4360 +1147 5588 0.9690 +1147 5590 0.4690 +1147 5591 0.4450 +1147 5604 0.4340 +1147 5606 0.5390 +1147 5608 0.6170 +1147 5610 0.9770 +1147 5669 0.4820 +1147 5728 0.9640 +1147 5743 0.6130 +1147 5868 0.5000 +1147 5903 0.4960 +1147 5966 0.9670 +1147 5970 0.9990 +1147 5971 0.9950 +1147 5987 0.8610 +1147 6195 0.6040 +1147 6233 0.5800 +1147 6347 0.4910 +1147 6416 0.4710 +1147 6500 0.6690 +1147 6502 0.4720 +1147 6654 0.4240 +1147 6696 0.7680 +1147 6714 0.7500 +1147 6732 0.4150 +1147 6772 0.5540 +1147 6773 0.4260 +1147 6774 0.6390 +1147 6790 0.4300 +1147 6885 0.9940 +1147 6900 0.5220 +1147 7037 0.4150 +1147 7040 0.4830 +1147 7096 0.4460 +1147 7097 0.5850 +1147 7098 0.8800 +1147 7099 0.8520 +1147 7100 0.4520 +1147 7124 0.9990 +1147 7128 0.7680 +1147 7132 0.9990 +1147 7133 0.5290 +1147 7157 0.9140 +1147 7161 0.5310 +1147 7185 0.7760 +1147 7186 0.9950 +1147 7187 0.9980 +1147 7188 0.9590 +1147 7189 0.9990 +1147 7311 0.5710 +1147 7314 0.5790 +1147 7316 0.6520 +1147 7321 0.6640 +1147 7322 0.6220 +1147 7329 0.4740 +1147 7334 0.8370 +1147 7335 0.7420 +1147 7375 0.5260 +1147 7412 0.4420 +1147 7706 0.7880 +1147 7837 0.5700 +1147 8153 0.4360 +1147 8202 0.8140 +1147 8237 0.5300 +1147 8290 0.8510 +1147 8356 0.8520 +1147 8453 0.4900 +1147 8454 0.7610 +1147 8471 0.9060 +1147 8517 0.9990 +1147 8518 0.8760 +1147 8554 0.7450 +1147 8600 0.5320 +1147 8660 0.9190 +1147 8717 0.9840 +1147 8737 0.9980 +1147 8767 0.9430 +1147 8772 0.8240 +1147 8773 0.5640 +1147 8837 0.6940 +1147 8887 0.6160 +1147 8915 0.9940 +1147 8945 0.8300 +1147 9020 0.9970 +1147 9025 0.4440 +1147 9039 0.5280 +1147 9040 0.4820 +1147 9097 0.5110 +1147 9099 0.4950 +1147 9451 0.9190 +1147 9474 0.4870 +1147 9611 0.4040 +1147 9612 0.6340 +1147 9618 0.5480 +1147 9641 0.9540 +1147 9684 0.8560 +1147 9755 0.5820 +1147 9794 0.5890 +1147 9817 0.6610 +1147 9821 0.5090 +1147 9825 0.8400 +1147 9989 0.4780 +1147 10000 0.9160 +1147 10010 0.8700 +1147 10133 0.6110 +1147 10273 0.4810 +1147 10346 0.4080 +1147 10382 0.4510 +1147 10392 0.7060 +1147 10399 0.5740 +1147 10454 0.9930 +1147 10600 0.4210 +1147 10613 0.7070 +1147 10616 0.7470 +1147 10627 0.5580 +1147 10673 0.5910 +1147 10758 0.7460 +1147 10888 0.9000 +1147 10892 0.9680 +1147 10987 0.7180 +1147 11035 0.5930 +1147 11140 0.9790 +1147 11274 0.7010 +1147 23085 0.9960 +1147 23118 0.9910 +1147 23239 0.5080 +1147 23291 0.6020 +1147 23411 0.5300 +1147 23586 0.8060 +1147 23643 0.6740 +1147 26994 0.5240 +1147 27005 0.4380 +1147 27102 0.9030 +1147 27429 0.5900 +1147 29102 0.5050 +1147 29108 0.7620 +1147 29110 0.9640 +1147 50650 0.4120 +1147 51135 0.9900 +1147 51284 0.7440 +1147 51311 0.6840 +1147 51588 0.6370 +1147 54106 0.7260 +1147 54205 0.4310 +1147 55072 0.8610 +1147 55626 0.4690 +1147 55914 0.4090 +1147 56957 0.5900 +1147 57161 0.6460 +1147 57162 0.7070 +1147 57506 0.9940 +1147 57521 0.5190 +1147 64127 0.7800 +1147 64135 0.7890 +1147 64170 0.9280 +1147 64332 0.4250 +1147 79004 0.6600 +1147 79132 0.5220 +1147 79155 0.7750 +1147 79671 0.6960 +1147 79784 0.4460 +1147 80216 0.4410 +1147 81030 0.6180 +1147 81552 0.4270 +1147 81858 0.8770 +1147 83737 0.5340 +1147 84166 0.9970 +1147 84282 0.7820 +1147 84335 0.4460 +1147 84433 0.9240 +1147 84451 0.5860 +1147 84807 0.4780 +1147 84823 0.4290 +1147 89122 0.5940 +1147 89849 0.5990 +1147 90268 0.4430 +1147 92610 0.4540 +1147 113457 0.4410 +1147 114548 0.4810 +1147 114609 0.5540 +1147 115004 0.4250 +1147 115650 0.6050 +1147 121457 0.8350 +1147 126695 0.4760 +1147 135644 0.6950 +1147 137902 0.5700 +1147 147945 0.6480 +1147 148022 0.6960 +1147 197259 0.4010 +1147 203068 0.4690 +1147 220213 0.4510 +1147 221302 0.4560 +1147 246330 0.6450 +1147 253260 0.6840 +1147 257397 0.9730 +1147 260434 0.7670 +1147 353376 0.6700 +1147 440093 0.8510 +1147 440275 0.9050 +1147 440686 0.8510 +1147 653604 0.8520 +1147 728378 0.4200 +1149 1327 0.4830 +1149 1329 0.4110 +1149 1346 0.8160 +1149 1374 0.4740 +1149 1375 0.6860 +1149 1376 0.4060 +1149 1675 0.4610 +1149 1677 0.8750 +1149 1734 0.8080 +1149 2167 0.7100 +1149 2170 0.4640 +1149 2180 0.5100 +1149 2194 0.5570 +1149 3225 0.4890 +1149 3630 0.5990 +1149 3952 0.6870 +1149 3991 0.8530 +1149 4023 0.4200 +1149 4435 0.5570 +1149 4617 0.5120 +1149 5166 0.4580 +1149 5317 0.4330 +1149 5346 0.9590 +1149 5465 0.6600 +1149 5468 0.8390 +1149 5564 0.4140 +1149 6319 0.4440 +1149 6517 0.5200 +1149 6720 0.5060 +1149 6899 0.6320 +1149 7019 0.4840 +1149 7069 0.5230 +1149 7350 0.9560 +1149 7351 0.5010 +1149 7352 0.5770 +1149 7498 0.4770 +1149 7545 0.5180 +1149 8204 0.5130 +1149 8694 0.4570 +1149 9370 0.7630 +1149 10113 0.4120 +1149 10226 0.4120 +1149 10384 0.5060 +1149 10385 0.5120 +1149 10891 0.8110 +1149 10917 0.5130 +1149 11118 0.4990 +1149 11119 0.4930 +1149 11120 0.5060 +1149 23411 0.4020 +1149 26291 0.6310 +1149 51099 0.4190 +1149 51703 0.4670 +1149 56301 0.4070 +1149 56729 0.4380 +1149 57104 0.7730 +1149 60386 0.7540 +1149 63924 0.9580 +1149 63976 0.8810 +1149 64641 0.5770 +1149 79071 0.4120 +1149 79908 0.5080 +1149 83401 0.8430 +1149 84649 0.4770 +1149 84701 0.4240 +1149 114625 0.5110 +1149 116255 0.4870 +1149 126129 0.6160 +1149 133060 0.5650 +1149 133522 0.5070 +1149 145264 0.4770 +1149 145957 0.4090 +1149 153201 0.4360 +1149 153579 0.5190 +1149 219623 0.8030 +1149 252995 0.5830 +1149 286753 0.4830 +1149 431707 0.4490 +1149 440503 0.5460 +1149 729359 0.6780 +1152 1158 0.9960 +1152 1186 0.4360 +1152 1627 0.4220 +1152 1759 0.5190 +1152 1808 0.4410 +1152 2023 0.7360 +1152 2026 0.5530 +1152 2288 0.4340 +1152 2593 0.9440 +1152 2597 0.4630 +1152 2739 0.4950 +1152 2805 0.5360 +1152 2806 0.4650 +1152 2923 0.4900 +1152 2934 0.4130 +1152 3312 0.6440 +1152 3336 0.5850 +1152 3417 0.4880 +1152 3418 0.5100 +1152 3662 0.4060 +1152 3948 0.6940 +1152 4191 0.4590 +1152 4313 0.4100 +1152 4493 0.4010 +1152 4632 0.5390 +1152 6535 0.8590 +1152 6620 0.5730 +1152 6622 0.4980 +1152 6853 0.4550 +1152 6921 0.8400 +1152 6923 0.8470 +1152 7001 0.6210 +1152 7167 0.5630 +1152 7168 0.5630 +1152 7170 0.5490 +1152 7171 0.5690 +1152 7184 0.4390 +1152 7416 0.4150 +1152 9143 0.4130 +1152 22948 0.4940 +1152 23077 0.4290 +1152 29895 0.4410 +1152 81570 0.6230 +1152 85477 0.4100 +1152 92483 0.7260 +1152 137362 0.6140 +1152 140462 0.9970 +1152 160287 0.7260 +1152 387923 0.4400 +1152 102723407 0.4320 +1153 1392 0.4080 +1153 1848 0.4080 +1153 1958 0.4550 +1153 1960 0.4310 +1153 1981 0.5910 +1153 1994 0.4060 +1153 2197 0.4940 +1153 2353 0.4420 +1153 2521 0.5490 +1153 3146 0.4020 +1153 3150 0.5060 +1153 3178 0.6080 +1153 3183 0.4860 +1153 3190 0.8800 +1153 3191 0.5220 +1153 3276 0.7680 +1153 3308 0.4280 +1153 3309 0.4240 +1153 3516 0.4290 +1153 3725 0.5110 +1153 4076 0.4180 +1153 4904 0.5690 +1153 5641 0.4090 +1153 6428 0.5530 +1153 6430 0.4430 +1153 6625 0.4170 +1153 6626 0.5620 +1153 6635 0.4310 +1153 6638 0.4840 +1153 7015 0.4090 +1153 7072 0.4160 +1153 7099 0.8540 +1153 7158 0.4470 +1153 7295 0.5350 +1153 8106 0.5570 +1153 8175 0.7300 +1153 8570 0.4120 +1153 8780 0.4750 +1153 8863 0.5720 +1153 8864 0.4170 +1153 9343 0.4350 +1153 9939 0.4330 +1153 9987 0.4530 +1153 10146 0.4270 +1153 10657 0.8290 +1153 10949 0.6700 +1153 11129 0.4310 +1153 22927 0.4550 +1153 23534 0.4140 +1153 23643 0.6560 +1153 25804 0.4380 +1153 26065 0.5030 +1153 27316 0.5610 +1153 51335 0.4210 +1153 54210 0.7260 +1153 55009 0.4840 +1153 55352 0.5250 +1153 55862 0.4500 +1153 57062 0.4700 +1153 58155 0.4060 +1153 79042 0.4490 +1153 79084 0.5170 +1153 202559 0.4060 +1153 390748 0.4140 +1153 100529063 0.4140 +1154 1437 0.4580 +1154 1440 0.4070 +1154 1441 0.7120 +1154 1647 0.4310 +1154 1795 0.4620 +1154 1956 0.8420 +1154 2056 0.4040 +1154 2057 0.9180 +1154 2064 0.5770 +1154 2353 0.4040 +1154 2688 0.6070 +1154 2689 0.6060 +1154 2690 0.8810 +1154 3439 0.5730 +1154 3454 0.5140 +1154 3456 0.5320 +1154 3458 0.7300 +1154 3459 0.4200 +1154 3479 0.4370 +1154 3480 0.6430 +1154 3551 0.4080 +1154 3552 0.4640 +1154 3553 0.5970 +1154 3558 0.5200 +1154 3560 0.4460 +1154 3562 0.4210 +1154 3565 0.5530 +1154 3566 0.4550 +1154 3567 0.4010 +1154 3569 0.6650 +1154 3570 0.4170 +1154 3572 0.5360 +1154 3574 0.4470 +1154 3575 0.6670 +1154 3586 0.6130 +1154 3596 0.4720 +1154 3600 0.4570 +1154 3605 0.6170 +1154 3620 0.6170 +1154 3627 0.4180 +1154 3630 0.5120 +1154 3643 0.5260 +1154 3654 0.6370 +1154 3659 0.4470 +1154 3661 0.4180 +1154 3665 0.4300 +1154 3667 0.7110 +1154 3716 0.8620 +1154 3717 0.9740 +1154 3718 0.7950 +1154 3725 0.4320 +1154 3812 0.4510 +1154 3952 0.4750 +1154 3953 0.4110 +1154 3976 0.5640 +1154 4599 0.4120 +1154 4609 0.4630 +1154 4738 0.6410 +1154 4762 0.4230 +1154 4790 0.4400 +1154 4792 0.6410 +1154 4843 0.5480 +1154 5008 0.4280 +1154 5286 0.5970 +1154 5287 0.5860 +1154 5288 0.5890 +1154 5289 0.5610 +1154 5290 0.6410 +1154 5291 0.5890 +1154 5293 0.5920 +1154 5294 0.6080 +1154 5295 0.5700 +1154 5296 0.5600 +1154 5335 0.6420 +1154 5617 0.4560 +1154 5618 0.9590 +1154 5770 0.4150 +1154 5781 0.6910 +1154 5805 0.4530 +1154 6347 0.4430 +1154 6500 0.6180 +1154 6714 0.5950 +1154 6772 0.9800 +1154 6773 0.9600 +1154 6774 0.9830 +1154 6775 0.9590 +1154 6776 0.9800 +1154 6777 0.9820 +1154 6778 0.9610 +1154 6921 0.9930 +1154 6923 0.9980 +1154 7097 0.4300 +1154 7098 0.4590 +1154 7099 0.5190 +1154 7124 0.6050 +1154 7157 0.4180 +1154 7189 0.4180 +1154 7297 0.8690 +1154 7301 0.4020 +1154 7405 0.5400 +1154 8065 0.9990 +1154 8452 0.5740 +1154 8453 0.9700 +1154 8454 0.5740 +1154 8503 0.5530 +1154 8554 0.4300 +1154 8651 0.7170 +1154 8660 0.4040 +1154 8678 0.5780 +1154 8835 0.6820 +1154 8883 0.5400 +1154 9021 0.7070 +1154 9039 0.5340 +1154 9040 0.5430 +1154 9148 0.5890 +1154 9306 0.6400 +1154 9616 0.9860 +1154 9655 0.7350 +1154 9868 0.4610 +1154 9978 0.6960 +1154 10018 0.6210 +1154 10379 0.4420 +1154 10401 0.6630 +1154 11213 0.4050 +1154 22863 0.5400 +1154 23412 0.4990 +1154 23533 0.5940 +1154 23586 0.4420 +1154 23643 0.4080 +1154 26118 0.6460 +1154 27036 0.4510 +1154 28952 0.5130 +1154 28991 0.4990 +1154 29099 0.4990 +1154 30837 0.6620 +1154 30849 0.5400 +1154 50943 0.4600 +1154 51122 0.4990 +1154 51224 0.5250 +1154 51397 0.5000 +1154 51665 0.7560 +1154 51666 0.7110 +1154 51676 0.8110 +1154 54939 0.4990 +1154 54951 0.5000 +1154 55626 0.4360 +1154 55697 0.5540 +1154 55832 0.6150 +1154 64135 0.4160 +1154 79442 0.4310 +1154 80176 0.8680 +1154 84174 0.5980 +1154 84727 0.8320 +1154 90864 0.7640 +1154 92369 0.8060 +1154 114609 0.5520 +1154 122809 0.7270 +1154 140456 0.6590 +1154 140462 0.4450 +1154 140739 0.5620 +1154 140825 0.6470 +1154 142685 0.4200 +1154 146850 0.5570 +1154 149951 0.4990 +1154 150684 0.5500 +1154 170622 0.5000 +1154 441925 0.5400 +1154 110117498 0.5400 +1155 1175 0.4740 +1155 4738 0.4960 +1155 5438 0.4140 +1155 6902 0.7170 +1155 6903 0.7430 +1155 6904 0.9030 +1155 6905 0.8070 +1155 7277 0.8080 +1155 7278 0.6280 +1155 7280 0.7300 +1155 7846 0.8190 +1155 8139 0.8810 +1155 8881 0.4130 +1155 10376 0.7860 +1155 10381 0.7140 +1155 10382 0.6860 +1155 10383 0.7630 +1155 10880 0.5350 +1155 11258 0.5130 +1155 22948 0.4070 +1155 26472 0.6810 +1155 51399 0.6270 +1155 51807 0.7110 +1155 55124 0.4120 +1155 55611 0.4470 +1155 79861 0.7140 +1155 80086 0.6160 +1155 80755 0.5010 +1155 81027 0.6860 +1155 84617 0.7700 +1155 84790 0.7180 +1155 112714 0.7120 +1155 113457 0.7020 +1155 203068 0.5120 +1155 219899 0.4860 +1155 253559 0.4020 +1155 347688 0.5430 +1155 347733 0.7220 +1155 392509 0.4010 +1155 619279 0.4700 +1155 100885850 0.5530 +1158 1159 0.6110 +1158 1160 0.8660 +1158 1339 0.5250 +1158 1548 0.4310 +1158 1549 0.5070 +1158 1553 0.5050 +1158 2027 0.8430 +1158 2067 0.4910 +1158 2068 0.5540 +1158 2274 0.5990 +1158 2593 0.9450 +1158 2597 0.5150 +1158 2628 0.4110 +1158 2805 0.4900 +1158 2806 0.4220 +1158 3270 0.4810 +1158 3948 0.6580 +1158 4151 0.7890 +1158 4604 0.4310 +1158 4606 0.5320 +1158 4617 0.5730 +1158 4618 0.6900 +1158 4619 0.8150 +1158 4620 0.8610 +1158 4621 0.5490 +1158 4622 0.4910 +1158 4624 0.6900 +1158 4625 0.8620 +1158 4626 0.4330 +1158 4632 0.9280 +1158 4633 0.9160 +1158 4634 0.6920 +1158 4654 0.6460 +1158 4656 0.6790 +1158 4892 0.6000 +1158 5081 0.5110 +1158 5184 0.4450 +1158 5224 0.6770 +1158 5582 0.6320 +1158 5834 0.4100 +1158 5837 0.5710 +1158 6123 0.4220 +1158 6261 0.6010 +1158 6442 0.5640 +1158 6588 0.8160 +1158 7125 0.7670 +1158 7134 0.5490 +1158 7135 0.6530 +1158 7136 0.7470 +1158 7138 0.5130 +1158 7140 0.7670 +1158 7167 0.4260 +1158 7273 0.6710 +1158 7402 0.4330 +1158 7416 0.4060 +1158 8048 0.8150 +1158 8557 0.6830 +1158 9172 0.6260 +1158 9499 0.5630 +1158 10324 0.7910 +1158 10345 0.4370 +1158 10891 0.4470 +1158 10930 0.6630 +1158 23676 0.5160 +1158 26548 0.4280 +1158 27130 0.4640 +1158 29765 0.4080 +1158 29895 0.9080 +1158 29954 0.4690 +1158 51778 0.5100 +1158 55625 0.4310 +1158 57159 0.4680 +1158 58529 0.7090 +1158 81570 0.6230 +1158 84676 0.7530 +1158 92483 0.6990 +1158 124872 0.4140 +1158 129446 0.7830 +1158 131377 0.4010 +1158 137362 0.6050 +1158 140458 0.4190 +1158 140462 0.8730 +1158 150572 0.4010 +1158 160287 0.7000 +1158 202333 0.4210 +1158 245973 0.4360 +1158 442721 0.6290 +1159 1160 0.8640 +1159 1366 0.4210 +1159 1404 0.4460 +1159 2067 0.4260 +1159 2068 0.4220 +1159 2593 0.9630 +1159 2597 0.4080 +1159 2628 0.8090 +1159 2686 0.4230 +1159 2805 0.5650 +1159 2806 0.4510 +1159 3336 0.4160 +1159 3948 0.7160 +1159 4151 0.4090 +1159 4632 0.4630 +1159 4831 0.4300 +1159 4832 0.5040 +1159 4833 0.8440 +1159 5223 0.4180 +1159 6535 0.9210 +1159 7157 0.4380 +1159 7350 0.4190 +1159 7416 0.7760 +1159 7417 0.5910 +1159 7419 0.5410 +1159 9677 0.8720 +1159 10053 0.4420 +1159 81570 0.6440 +1159 92483 0.7400 +1159 117155 0.9490 +1159 124975 0.4750 +1159 137362 0.6340 +1159 140462 0.9320 +1159 160287 0.7420 +1159 161497 0.9440 +1159 548596 0.9990 +1159 654231 0.6060 +1160 1339 0.5740 +1160 1346 0.4810 +1160 1431 0.4190 +1160 2027 0.5700 +1160 2170 0.4030 +1160 2593 0.9560 +1160 2597 0.4110 +1160 2628 0.5840 +1160 2686 0.4240 +1160 2687 0.4280 +1160 2805 0.5490 +1160 2806 0.4570 +1160 3270 0.6410 +1160 3336 0.4230 +1160 3948 0.6960 +1160 4151 0.7510 +1160 4620 0.4120 +1160 4625 0.4520 +1160 4632 0.6040 +1160 4633 0.5200 +1160 4634 0.6150 +1160 4635 0.4290 +1160 4892 0.4480 +1160 5224 0.5710 +1160 5834 0.4280 +1160 5837 0.5150 +1160 6345 0.4540 +1160 6389 0.4300 +1160 6535 0.5130 +1160 6588 0.4290 +1160 7125 0.5410 +1160 7135 0.5010 +1160 7136 0.4800 +1160 7140 0.4750 +1160 7273 0.5490 +1160 7350 0.4050 +1160 7416 0.7660 +1160 7417 0.7500 +1160 7419 0.7470 +1160 8048 0.6110 +1160 8557 0.6890 +1160 9172 0.4850 +1160 9499 0.4550 +1160 10345 0.5970 +1160 23676 0.5380 +1160 29895 0.5960 +1160 51778 0.7280 +1160 55745 0.4770 +1160 57159 0.5030 +1160 58529 0.4660 +1160 81570 0.6230 +1160 92483 0.7400 +1160 124975 0.4490 +1160 127294 0.4410 +1160 137362 0.6330 +1160 140462 0.7080 +1160 160287 0.7410 +1160 202333 0.5640 +1160 548596 0.8180 +1161 1642 0.9990 +1161 1643 0.9600 +1161 2067 0.9770 +1161 2068 0.9150 +1161 2071 0.9330 +1161 2072 0.9750 +1161 2073 0.9900 +1161 2074 0.9990 +1161 2175 0.5150 +1161 2176 0.5300 +1161 2177 0.6320 +1161 2178 0.5100 +1161 2547 0.9280 +1161 2873 0.8000 +1161 2956 0.9210 +1161 2965 0.7170 +1161 2966 0.9490 +1161 2967 0.7470 +1161 2968 0.7120 +1161 3015 0.4110 +1161 3150 0.7920 +1161 3978 0.5680 +1161 3980 0.5440 +1161 3981 0.9390 +1161 4292 0.6820 +1161 4331 0.7480 +1161 4436 0.9240 +1161 4437 0.8230 +1161 4605 0.4010 +1161 4738 0.5350 +1161 4968 0.5840 +1161 5203 0.4960 +1161 5378 0.6930 +1161 5395 0.7440 +1161 5424 0.9390 +1161 5431 0.9050 +1161 5432 0.9020 +1161 5433 0.9110 +1161 5434 0.9020 +1161 5435 0.9020 +1161 5436 0.9130 +1161 5437 0.9030 +1161 5438 0.9190 +1161 5439 0.9050 +1161 5440 0.9040 +1161 5441 0.9020 +1161 5460 0.4750 +1161 5591 0.9280 +1161 5886 0.4980 +1161 5887 0.9570 +1161 5929 0.5040 +1161 5931 0.6350 +1161 6119 0.4370 +1161 6233 0.5720 +1161 6830 0.8040 +1161 6917 0.5630 +1161 7157 0.6370 +1161 7158 0.4910 +1161 7311 0.4990 +1161 7314 0.5260 +1161 7316 0.5260 +1161 7486 0.4320 +1161 7507 0.9150 +1161 7508 0.9510 +1161 7515 0.5990 +1161 7516 0.4320 +1161 7518 0.9360 +1161 7520 0.9290 +1161 7874 0.7110 +1161 8178 0.4260 +1161 8450 0.9840 +1161 8451 0.9990 +1161 8533 0.8740 +1161 8816 0.9000 +1161 8883 0.5310 +1161 9039 0.5150 +1161 9040 0.6370 +1161 9318 0.8690 +1161 9646 0.8060 +1161 9730 0.9000 +1161 9978 0.9940 +1161 10238 0.9360 +1161 10269 0.4390 +1161 10920 0.8250 +1161 10973 0.5880 +1161 10980 0.8560 +1161 10987 0.8990 +1161 11091 0.5150 +1161 11146 0.7380 +1161 11200 0.5170 +1161 23028 0.9000 +1161 23038 0.5400 +1161 23142 0.5260 +1161 23186 0.9000 +1161 23412 0.4990 +1161 25836 0.4240 +1161 25853 0.9000 +1161 25879 0.9020 +1161 26094 0.9000 +1161 26133 0.9000 +1161 27030 0.6570 +1161 27301 0.4290 +1161 28952 0.4990 +1161 28991 0.4990 +1161 29099 0.5000 +1161 50717 0.9030 +1161 50813 0.7790 +1161 51008 0.6200 +1161 51122 0.5100 +1161 51138 0.8310 +1161 51185 0.9000 +1161 51317 0.9040 +1161 51397 0.5900 +1161 51514 0.9380 +1161 54165 0.5090 +1161 54461 0.9000 +1161 54623 0.8010 +1161 54876 0.9000 +1161 54939 0.5000 +1161 54951 0.5140 +1161 55070 0.9010 +1161 55208 0.5120 +1161 55215 0.6210 +1161 55247 0.4680 +1161 55626 0.9000 +1161 55827 0.9030 +1161 55832 0.5090 +1161 56852 0.4300 +1161 56949 0.9230 +1161 57654 0.9980 +1161 64210 0.4210 +1161 64326 0.9140 +1161 64421 0.9210 +1161 64708 0.6530 +1161 79016 0.9390 +1161 79269 0.9130 +1161 79577 0.8050 +1161 79661 0.4110 +1161 79723 0.4620 +1161 79728 0.6690 +1161 79840 0.9180 +1161 80067 0.9020 +1161 80344 0.9000 +1161 80349 0.8500 +1161 83932 0.5090 +1161 84083 0.4220 +1161 84164 0.5400 +1161 84259 0.5440 +1161 84942 0.4100 +1161 90379 0.9000 +1161 91419 0.9160 +1161 91942 0.5240 +1161 123169 0.8340 +1161 125150 0.9000 +1161 126074 0.9000 +1161 136647 0.4130 +1161 138009 0.5400 +1161 139170 0.5400 +1161 139425 0.5530 +1161 149951 0.4990 +1161 150678 0.4890 +1161 150684 0.5000 +1161 170622 0.5010 +1161 201973 0.4850 +1161 285368 0.4270 +1161 285429 0.5400 +1161 286257 0.9000 +1161 340578 0.5400 +1161 347442 0.5530 +1161 404672 0.7820 +1161 728340 0.6860 +1161 100533467 0.9140 +1161 105375355 0.5400 +1163 1164 0.9930 +1163 1200 0.4490 +1163 1470 0.4200 +1163 1843 0.7500 +1163 1874 0.5980 +1163 1875 0.5600 +1163 2237 0.5110 +1163 2261 0.4200 +1163 2305 0.4990 +1163 2547 0.4490 +1163 3015 0.5770 +1163 3093 0.4500 +1163 3161 0.5010 +1163 3608 0.6090 +1163 3832 0.5650 +1163 3838 0.5100 +1163 4085 0.7220 +1163 4172 0.4210 +1163 4173 0.4300 +1163 4174 0.4880 +1163 4175 0.4040 +1163 4176 0.5130 +1163 4605 0.4220 +1163 4609 0.6680 +1163 4678 0.4080 +1163 4738 0.8740 +1163 4751 0.6020 +1163 4761 0.5720 +1163 4893 0.4290 +1163 4998 0.4330 +1163 5111 0.5940 +1163 5127 0.5740 +1163 5128 0.5600 +1163 5129 0.5590 +1163 5218 0.5980 +1163 5347 0.5980 +1163 5557 0.4790 +1163 5682 0.4460 +1163 5683 0.4760 +1163 5684 0.4600 +1163 5685 0.4890 +1163 5686 0.4670 +1163 5687 0.4740 +1163 5688 0.4580 +1163 5689 0.4430 +1163 5690 0.4940 +1163 5691 0.4490 +1163 5692 0.5510 +1163 5693 0.5020 +1163 5694 0.4760 +1163 5695 0.4620 +1163 5696 0.4330 +1163 5698 0.4340 +1163 5699 0.4250 +1163 5700 0.4580 +1163 5701 0.4660 +1163 5702 0.4600 +1163 5704 0.4490 +1163 5705 0.4440 +1163 5706 0.4460 +1163 5707 0.4310 +1163 5708 0.4250 +1163 5709 0.4370 +1163 5710 0.5910 +1163 5713 0.4210 +1163 5714 0.4420 +1163 5715 0.5970 +1163 5716 0.5030 +1163 5717 0.4350 +1163 5718 0.4310 +1163 5719 0.4290 +1163 5720 0.4130 +1163 5721 0.4180 +1163 5888 0.4160 +1163 5906 0.4230 +1163 5934 0.6350 +1163 5983 0.4170 +1163 5984 0.6080 +1163 6119 0.4370 +1163 6233 0.9060 +1163 6240 0.4030 +1163 6241 0.5470 +1163 6500 0.9990 +1163 6502 0.9990 +1163 6742 0.5400 +1163 6774 0.5290 +1163 6790 0.6450 +1163 7027 0.6410 +1163 7029 0.5800 +1163 7083 0.4760 +1163 7153 0.5510 +1163 7157 0.4800 +1163 7272 0.5240 +1163 7298 0.5720 +1163 7311 0.9090 +1163 7314 0.9100 +1163 7316 0.9140 +1163 7317 0.5140 +1163 7465 0.4640 +1163 7468 0.4060 +1163 7520 0.4270 +1163 7979 0.4410 +1163 8091 0.4600 +1163 8317 0.4030 +1163 8318 0.5190 +1163 8361 0.4940 +1163 8369 0.4700 +1163 8454 0.9980 +1163 8556 0.4060 +1163 8900 0.9470 +1163 9055 0.5080 +1163 9088 0.8660 +1163 9133 0.9520 +1163 9134 0.9150 +1163 9156 0.4050 +1163 9212 0.6600 +1163 9232 0.8540 +1163 9319 0.7180 +1163 9491 0.4010 +1163 9493 0.4930 +1163 9700 0.9260 +1163 9768 0.4190 +1163 9787 0.5760 +1163 9833 0.5180 +1163 9861 0.4260 +1163 9918 0.5100 +1163 9978 0.9880 +1163 9985 0.4280 +1163 10051 0.4440 +1163 10112 0.5030 +1163 10197 0.4250 +1163 10213 0.5180 +1163 10309 0.7090 +1163 10393 0.4290 +1163 10403 0.5430 +1163 10535 0.4030 +1163 10635 0.4650 +1163 10814 0.5890 +1163 10983 0.4030 +1163 11004 0.5980 +1163 11065 0.7270 +1163 11130 0.4370 +1163 11266 0.5450 +1163 22974 0.5660 +1163 25820 0.8170 +1163 26271 0.4270 +1163 27338 0.5320 +1163 29089 0.7170 +1163 29127 0.4410 +1163 51053 0.7660 +1163 51138 0.4050 +1163 51203 0.6030 +1163 51343 0.6210 +1163 51430 0.4280 +1163 51514 0.4210 +1163 51659 0.4310 +1163 54443 0.4740 +1163 54478 0.4520 +1163 55143 0.5920 +1163 55165 0.4080 +1163 55255 0.5890 +1163 55839 0.5060 +1163 57093 0.7490 +1163 64151 0.4340 +1163 64857 0.4700 +1163 65061 0.5580 +1163 79019 0.4030 +1163 79682 0.4310 +1163 79935 0.5780 +1163 81611 0.5400 +1163 81620 0.8730 +1163 81669 0.6600 +1163 83461 0.5140 +1163 83540 0.6250 +1163 84057 0.4230 +1163 85417 0.6820 +1163 113130 0.5090 +1163 133482 0.4850 +1163 166979 0.4210 +1163 171222 0.8070 +1163 259266 0.5270 +1163 342527 0.6090 +1163 345079 0.4030 +1163 387103 0.4880 +1163 387778 0.5640 +1163 644672 0.4210 +1163 645121 0.4030 +1163 728642 0.4720 +1163 102723407 0.4740 +1164 1176 0.4010 +1164 1192 0.4020 +1164 1211 0.4020 +1164 1763 0.4140 +1164 1854 0.4770 +1164 1894 0.6190 +1164 2146 0.4580 +1164 2237 0.5030 +1164 2305 0.6510 +1164 2353 0.4400 +1164 3015 0.6930 +1164 3070 0.4390 +1164 3161 0.7160 +1164 3832 0.6750 +1164 3838 0.7890 +1164 4000 0.4080 +1164 4085 0.8200 +1164 4172 0.4200 +1164 4173 0.5240 +1164 4174 0.5420 +1164 4175 0.5050 +1164 4176 0.4880 +1164 4288 0.5250 +1164 4678 0.4170 +1164 4751 0.5690 +1164 5111 0.5760 +1164 5127 0.5500 +1164 5128 0.5410 +1164 5129 0.5410 +1164 5218 0.5580 +1164 5347 0.5760 +1164 5557 0.4830 +1164 5599 0.4080 +1164 5601 0.4030 +1164 5832 0.5850 +1164 5888 0.4420 +1164 5983 0.4220 +1164 5984 0.5310 +1164 6240 0.4070 +1164 6241 0.6790 +1164 6500 0.9710 +1164 6502 0.9820 +1164 6742 0.5620 +1164 6790 0.8040 +1164 6950 0.4420 +1164 7083 0.6530 +1164 7153 0.7080 +1164 7272 0.6390 +1164 7298 0.6790 +1164 7465 0.4100 +1164 7884 0.4630 +1164 8318 0.6910 +1164 8454 0.9480 +1164 8697 0.4190 +1164 8900 0.8450 +1164 9055 0.6250 +1164 9088 0.9090 +1164 9133 0.9760 +1164 9156 0.4080 +1164 9184 0.4180 +1164 9212 0.7380 +1164 9232 0.8880 +1164 9319 0.6910 +1164 9454 0.4290 +1164 9493 0.6140 +1164 9585 0.4680 +1164 9700 0.4500 +1164 9768 0.6850 +1164 9787 0.8410 +1164 9833 0.7930 +1164 9918 0.4590 +1164 9928 0.4270 +1164 9978 0.9310 +1164 10051 0.5870 +1164 10112 0.6660 +1164 10309 0.7050 +1164 10393 0.4010 +1164 10403 0.5510 +1164 10615 0.5220 +1164 10635 0.5770 +1164 10733 0.4050 +1164 10983 0.4030 +1164 11004 0.7320 +1164 11065 0.8740 +1164 11130 0.6180 +1164 11339 0.4390 +1164 22974 0.5960 +1164 23397 0.4370 +1164 24137 0.4940 +1164 26271 0.4110 +1164 26586 0.4430 +1164 29028 0.4220 +1164 29089 0.6100 +1164 29127 0.6240 +1164 51002 0.4590 +1164 51053 0.7870 +1164 51203 0.7740 +1164 51343 0.7020 +1164 51514 0.4050 +1164 51659 0.4680 +1164 54443 0.6300 +1164 54478 0.4470 +1164 54962 0.4120 +1164 55143 0.6870 +1164 55165 0.6920 +1164 55255 0.5900 +1164 55355 0.5130 +1164 55706 0.4200 +1164 55839 0.5110 +1164 56992 0.4690 +1164 57405 0.4040 +1164 64151 0.6600 +1164 64857 0.4700 +1164 65061 0.5410 +1164 79019 0.4500 +1164 79682 0.5590 +1164 79801 0.4050 +1164 79935 0.5780 +1164 81620 0.8640 +1164 81669 0.6710 +1164 81930 0.4640 +1164 83461 0.5480 +1164 83540 0.7010 +1164 83879 0.4260 +1164 84057 0.4550 +1164 85417 0.5870 +1164 94239 0.4410 +1164 113130 0.5800 +1164 150468 0.5680 +1164 157313 0.4810 +1164 166979 0.4420 +1164 221150 0.4490 +1164 259266 0.7450 +1164 345079 0.4030 +1164 387103 0.5130 +1164 387778 0.6120 +1164 401565 0.4680 +1164 644672 0.4210 +1164 645121 0.4030 +1164 728642 0.4890 +1173 1174 0.9650 +1173 1175 0.9990 +1173 1176 0.9540 +1173 1211 0.9580 +1173 1212 0.9420 +1173 1314 0.4090 +1173 1493 0.9000 +1173 1601 0.7230 +1173 1759 0.7340 +1173 1785 0.7690 +1173 1839 0.4990 +1173 1856 0.7210 +1173 1947 0.4990 +1173 1948 0.4990 +1173 1949 0.4990 +1173 1950 0.5750 +1173 1956 0.9120 +1173 2011 0.4060 +1173 2047 0.5060 +1173 2048 0.5060 +1173 2049 0.5080 +1173 2050 0.5070 +1173 2051 0.5180 +1173 2060 0.9580 +1173 2069 0.4990 +1173 2194 0.4890 +1173 2535 0.4130 +1173 2580 0.7350 +1173 2597 0.4260 +1173 2697 0.5010 +1173 2885 0.6800 +1173 2890 0.5800 +1173 2891 0.5900 +1173 2892 0.5560 +1173 2893 0.5290 +1173 2944 0.7240 +1173 2957 0.4320 +1173 3030 0.4510 +1173 3075 0.5200 +1173 3113 0.5010 +1173 3115 0.5000 +1173 3117 0.4990 +1173 3118 0.4990 +1173 3119 0.5000 +1173 3120 0.5000 +1173 3122 0.5100 +1173 3123 0.5000 +1173 3127 0.5120 +1173 3267 0.5100 +1173 3305 0.5440 +1173 3312 0.4710 +1173 3454 0.5550 +1173 3482 0.5680 +1173 3575 0.4990 +1173 3667 0.9420 +1173 3897 0.5110 +1173 3949 0.5320 +1173 4036 0.5610 +1173 4074 0.5580 +1173 4137 0.5580 +1173 4201 0.6500 +1173 4478 0.5480 +1173 4547 0.4030 +1173 4608 0.5250 +1173 4646 0.6710 +1173 4803 0.4990 +1173 4914 0.5200 +1173 4919 0.4070 +1173 4920 0.4070 +1173 5045 0.4300 +1173 5199 0.6330 +1173 5211 0.4260 +1173 5213 0.4350 +1173 5214 0.4230 +1173 5305 0.7500 +1173 5321 0.4070 +1173 5518 0.4340 +1173 5578 0.4150 +1173 5579 0.4860 +1173 5582 0.4120 +1173 5594 0.5830 +1173 5702 0.4250 +1173 5708 0.4460 +1173 5710 0.4590 +1173 5861 0.4610 +1173 5868 0.4320 +1173 5878 0.6240 +1173 5962 0.5280 +1173 6195 0.5740 +1173 6196 0.5550 +1173 6197 0.6120 +1173 6233 0.6000 +1173 6275 0.4430 +1173 6280 0.4410 +1173 6282 0.4640 +1173 6283 0.4400 +1173 6286 0.4400 +1173 6403 0.9000 +1173 6453 0.9270 +1173 6455 0.5960 +1173 6456 0.6570 +1173 6457 0.6450 +1173 6464 0.5270 +1173 6572 0.5400 +1173 6614 0.4930 +1173 6844 0.7450 +1173 6845 0.6090 +1173 6857 0.5110 +1173 6869 0.4990 +1173 7018 0.4990 +1173 7037 0.7150 +1173 7039 0.4990 +1173 7056 0.4050 +1173 7062 0.4400 +1173 7280 0.5440 +1173 7311 0.5480 +1173 7314 0.6040 +1173 7316 0.6320 +1173 7384 0.4870 +1173 7430 0.5310 +1173 7436 0.5320 +1173 7474 0.5170 +1173 7855 0.4430 +1173 7879 0.5770 +1173 8027 0.5190 +1173 8087 0.5110 +1173 8120 0.6520 +1173 8218 0.8760 +1173 8301 0.9350 +1173 8322 0.5380 +1173 8394 0.7110 +1173 8411 0.5720 +1173 8546 0.6270 +1173 8650 0.7030 +1173 8660 0.4720 +1173 8673 0.5970 +1173 8674 0.5700 +1173 8867 0.8670 +1173 8871 0.5580 +1173 8905 0.8750 +1173 8906 0.8660 +1173 8907 0.6790 +1173 8940 0.4230 +1173 8943 0.8470 +1173 8986 0.5100 +1173 9146 0.5850 +1173 9179 0.9250 +1173 9185 0.8370 +1173 9252 0.5000 +1173 9341 0.6080 +1173 9343 0.4100 +1173 9378 0.4120 +1173 9463 0.5160 +1173 9513 0.4330 +1173 9685 0.8670 +1173 9779 0.4950 +1173 9829 0.5410 +1173 9856 0.7770 +1173 9867 0.4280 +1173 9892 0.7310 +1173 9900 0.4050 +1173 9907 0.9150 +1173 10053 0.6320 +1173 10126 0.4240 +1173 10155 0.4540 +1173 10239 0.9230 +1173 10254 0.5040 +1173 10618 0.9880 +1173 10717 0.9860 +1173 10890 0.4250 +1173 10900 0.6640 +1173 10928 0.8440 +1173 10947 0.7920 +1173 11154 0.9260 +1173 11276 0.7590 +1173 22818 0.4130 +1173 22848 0.9790 +1173 22905 0.7170 +1173 22907 0.4130 +1173 23048 0.4380 +1173 23149 0.7980 +1173 23243 0.6620 +1173 23339 0.4570 +1173 23396 0.7870 +1173 23426 0.5440 +1173 23431 0.9670 +1173 24137 0.5320 +1173 25921 0.4230 +1173 25977 0.9950 +1173 26052 0.6670 +1173 26119 0.6340 +1173 26985 0.6610 +1173 27243 0.4800 +1173 27330 0.5050 +1173 29086 0.4750 +1173 29924 0.7950 +1173 29978 0.5980 +1173 29988 0.5050 +1173 30011 0.5010 +1173 30846 0.4020 +1173 50618 0.8860 +1173 51320 0.4050 +1173 51429 0.5960 +1173 51454 0.4370 +1173 51552 0.4920 +1173 55040 0.6970 +1173 55317 0.9050 +1173 55707 0.9700 +1173 55738 0.5830 +1173 55745 0.9220 +1173 55823 0.4940 +1173 56479 0.9030 +1173 56649 0.4130 +1173 57455 0.4200 +1173 57659 0.4400 +1173 57704 0.6180 +1173 58513 0.9180 +1173 59272 0.5150 +1173 63971 0.4220 +1173 64753 0.5760 +1173 79065 0.7350 +1173 80115 0.7230 +1173 80852 0.5050 +1173 81557 0.4200 +1173 83988 0.9010 +1173 84070 0.4400 +1173 84074 0.4400 +1173 84251 0.8640 +1173 84466 0.8100 +1173 84557 0.4140 +1173 85021 0.8370 +1173 85439 0.8700 +1173 91056 0.9000 +1173 92017 0.4420 +1173 115548 0.9160 +1173 120892 0.5470 +1173 122616 0.5400 +1173 126638 0.4400 +1173 130340 0.7980 +1173 140576 0.4490 +1173 150350 0.6110 +1173 170591 0.4400 +1173 203068 0.5700 +1173 253959 0.5630 +1173 255324 0.4990 +1173 255738 0.5400 +1173 285643 0.5260 +1173 339967 0.4160 +1173 342346 0.4400 +1173 388697 0.4400 +1173 388698 0.4400 +1173 728378 0.4390 +1173 100526783 0.4350 +1174 1175 0.9210 +1174 1176 0.9100 +1174 1211 0.9320 +1174 1212 0.7850 +1174 1362 0.5830 +1174 1457 0.5670 +1174 1459 0.4930 +1174 1522 0.5880 +1174 1759 0.5250 +1174 1777 0.5590 +1174 1785 0.5570 +1174 2060 0.5740 +1174 2495 0.6070 +1174 2512 0.6030 +1174 2580 0.5890 +1174 2647 0.5210 +1174 2707 0.6460 +1174 2799 0.6560 +1174 2944 0.6030 +1174 3105 0.6500 +1174 3106 0.6500 +1174 3107 0.6500 +1174 3113 0.4990 +1174 3115 0.4990 +1174 3117 0.4990 +1174 3118 0.4990 +1174 3119 0.4990 +1174 3120 0.4990 +1174 3122 0.4990 +1174 3123 0.4990 +1174 3127 0.4990 +1174 3133 0.6500 +1174 3134 0.6500 +1174 3135 0.6500 +1174 3312 0.5010 +1174 3482 0.5720 +1174 3916 0.4860 +1174 4074 0.5970 +1174 4802 0.4340 +1174 4952 0.5710 +1174 5286 0.6100 +1174 5878 0.5300 +1174 6272 0.6450 +1174 6456 0.5400 +1174 6572 0.5790 +1174 6643 0.5800 +1174 6844 0.5110 +1174 6845 0.6850 +1174 7037 0.5840 +1174 7163 0.5520 +1174 7164 0.5010 +1174 7317 0.4660 +1174 8120 0.6410 +1174 8218 0.6960 +1174 8301 0.7250 +1174 8546 0.6730 +1174 8673 0.7160 +1174 8775 0.5040 +1174 8867 0.6090 +1174 8905 0.9450 +1174 8906 0.9950 +1174 8907 0.9990 +1174 8943 0.7930 +1174 9001 0.4320 +1174 9026 0.5280 +1174 9179 0.9690 +1174 9342 0.4060 +1174 9482 0.4500 +1174 9685 0.6760 +1174 9698 0.5510 +1174 9829 0.6200 +1174 9907 0.9230 +1174 10053 0.9960 +1174 10239 0.9080 +1174 10490 0.4690 +1174 10618 0.6420 +1174 10717 0.9640 +1174 10947 0.8490 +1174 11154 0.9140 +1174 11276 0.8210 +1174 22905 0.5950 +1174 23163 0.6380 +1174 23339 0.4210 +1174 23431 0.9610 +1174 23557 0.5290 +1174 25977 0.5540 +1174 26052 0.5250 +1174 26088 0.6980 +1174 26154 0.4900 +1174 26258 0.4990 +1174 26276 0.4260 +1174 26985 0.6730 +1174 27131 0.5880 +1174 29803 0.4940 +1174 29924 0.6040 +1174 51429 0.5000 +1174 54885 0.5000 +1174 55040 0.6040 +1174 55096 0.7380 +1174 55317 0.9380 +1174 55330 0.4990 +1174 55707 0.7240 +1174 55745 0.9570 +1174 56479 0.9010 +1174 57590 0.6360 +1174 57617 0.4430 +1174 58513 0.5670 +1174 64083 0.4110 +1174 80115 0.7260 +1174 81567 0.5130 +1174 83988 0.9010 +1174 84062 0.5040 +1174 84251 0.7380 +1174 91056 0.9160 +1174 115825 0.4980 +1174 116987 0.6670 +1174 122616 0.5400 +1174 124045 0.4220 +1174 130340 0.9020 +1174 134829 0.5210 +1174 150350 0.5700 +1174 157807 0.5210 +1174 221421 0.4410 +1174 255104 0.4080 +1174 286451 0.4990 +1174 340900 0.4930 +1174 349149 0.7880 +1174 388552 0.4990 +1175 1176 0.9100 +1175 1211 0.9610 +1175 1212 0.9600 +1175 1601 0.5950 +1175 1759 0.6210 +1175 1785 0.6270 +1175 1839 0.4990 +1175 1856 0.5630 +1175 1947 0.4990 +1175 1948 0.4990 +1175 1949 0.4990 +1175 1950 0.5340 +1175 1956 0.7300 +1175 2047 0.5080 +1175 2048 0.5090 +1175 2049 0.5080 +1175 2050 0.5080 +1175 2051 0.5020 +1175 2060 0.9520 +1175 2069 0.4990 +1175 2535 0.4430 +1175 2767 0.7220 +1175 2885 0.6540 +1175 2890 0.5220 +1175 2891 0.5190 +1175 2892 0.5070 +1175 2893 0.4990 +1175 3064 0.9000 +1175 3092 0.8200 +1175 3113 0.5090 +1175 3115 0.5040 +1175 3117 0.5010 +1175 3118 0.4990 +1175 3119 0.5010 +1175 3120 0.4990 +1175 3122 0.5070 +1175 3123 0.4990 +1175 3127 0.4990 +1175 3267 0.5330 +1175 3482 0.5030 +1175 3575 0.5000 +1175 3897 0.5090 +1175 3949 0.5220 +1175 4036 0.5530 +1175 4074 0.5200 +1175 4478 0.5110 +1175 4713 0.5890 +1175 4728 0.4340 +1175 4802 0.4110 +1175 4803 0.4990 +1175 4914 0.5020 +1175 4919 0.4020 +1175 4920 0.4020 +1175 5578 0.4050 +1175 5579 0.4010 +1175 5594 0.5460 +1175 5741 0.5000 +1175 5962 0.5010 +1175 6195 0.5030 +1175 6196 0.4990 +1175 6197 0.5040 +1175 6233 0.5600 +1175 6453 0.9300 +1175 6455 0.5360 +1175 6456 0.5200 +1175 6457 0.5200 +1175 6572 0.5400 +1175 6844 0.5830 +1175 6845 0.5600 +1175 6869 0.4990 +1175 7018 0.4990 +1175 7037 0.6680 +1175 7039 0.4990 +1175 7311 0.5510 +1175 7314 0.6280 +1175 7316 0.5640 +1175 7430 0.5030 +1175 7436 0.5180 +1175 7474 0.4990 +1175 7855 0.4330 +1175 8027 0.5010 +1175 8120 0.6060 +1175 8218 0.9550 +1175 8301 0.7770 +1175 8322 0.4990 +1175 8546 0.5640 +1175 8650 0.4130 +1175 8673 0.5600 +1175 8674 0.5490 +1175 8867 0.6240 +1175 8905 0.7510 +1175 8906 0.8210 +1175 8907 0.9420 +1175 8943 0.8600 +1175 8986 0.5170 +1175 9146 0.5900 +1175 9179 0.9340 +1175 9185 0.5560 +1175 9247 0.6150 +1175 9252 0.4990 +1175 9296 0.4900 +1175 9341 0.5580 +1175 9381 0.4640 +1175 9463 0.4990 +1175 9685 0.6520 +1175 9856 0.4990 +1175 9892 0.6500 +1175 9907 0.9060 +1175 10053 0.6650 +1175 10093 0.4120 +1175 10094 0.5010 +1175 10126 0.4030 +1175 10193 0.5140 +1175 10239 0.9080 +1175 10254 0.5010 +1175 10618 0.7520 +1175 10717 0.9760 +1175 10900 0.7890 +1175 10928 0.7550 +1175 10947 0.8030 +1175 11154 0.9100 +1175 11276 0.7750 +1175 22848 0.9540 +1175 22905 0.6970 +1175 23149 0.6930 +1175 23339 0.4260 +1175 23426 0.5120 +1175 23431 0.9600 +1175 24137 0.5030 +1175 25977 0.6780 +1175 26052 0.5450 +1175 26119 0.5760 +1175 26985 0.6840 +1175 27330 0.4990 +1175 29086 0.4280 +1175 29924 0.7370 +1175 29978 0.5710 +1175 29988 0.5080 +1175 30011 0.5020 +1175 30846 0.9010 +1175 50618 0.8070 +1175 51079 0.4090 +1175 51429 0.4350 +1175 51611 0.6000 +1175 55040 0.6590 +1175 55317 0.9030 +1175 55707 0.9550 +1175 55738 0.7470 +1175 55745 0.9210 +1175 56479 0.9020 +1175 57704 0.6060 +1175 58513 0.9460 +1175 79577 0.6140 +1175 79719 0.9170 +1175 80115 0.7330 +1175 80852 0.4990 +1175 83988 0.9030 +1175 84251 0.8860 +1175 85021 0.8280 +1175 85439 0.7440 +1175 90416 0.7760 +1175 91056 0.9020 +1175 115548 0.9350 +1175 122616 0.5400 +1175 130340 0.5790 +1175 150350 0.5890 +1175 255324 0.4990 +1175 255738 0.5360 +1175 285643 0.5090 +1175 374291 0.4150 +1175 100526783 0.4020 +1176 1192 0.4100 +1176 1211 0.7420 +1176 1314 0.4480 +1176 1315 0.5300 +1176 1362 0.5250 +1176 2495 0.5190 +1176 2512 0.5200 +1176 2580 0.6920 +1176 2647 0.5800 +1176 3015 0.4440 +1176 3312 0.5360 +1176 3482 0.5610 +1176 3838 0.4010 +1176 4952 0.5090 +1176 5286 0.5070 +1176 5878 0.5680 +1176 6130 0.8550 +1176 6272 0.5470 +1176 6572 0.5400 +1176 6643 0.5730 +1176 6844 0.5680 +1176 6845 0.5910 +1176 7037 0.5440 +1176 7163 0.5030 +1176 7164 0.4990 +1176 7170 0.4140 +1176 7781 0.5020 +1176 8120 0.9850 +1176 8301 0.5040 +1176 8546 0.9990 +1176 8673 0.5920 +1176 8775 0.5000 +1176 8905 0.7510 +1176 8906 0.7460 +1176 8907 0.8540 +1176 8943 0.9990 +1176 9026 0.5010 +1176 9179 0.9300 +1176 9559 0.7770 +1176 9570 0.4280 +1176 9685 0.5580 +1176 9698 0.5070 +1176 9829 0.6130 +1176 9907 0.9110 +1176 10053 0.7560 +1176 10239 0.9020 +1176 10618 0.5540 +1176 10717 0.9170 +1176 10947 0.9920 +1176 11154 0.9030 +1176 11276 0.7310 +1176 11342 0.7830 +1176 23431 0.9480 +1176 23557 0.6190 +1176 25977 0.5030 +1176 26001 0.5180 +1176 26258 0.6130 +1176 26985 0.9980 +1176 27131 0.5210 +1176 51397 0.5080 +1176 51429 0.5190 +1176 51528 0.4230 +1176 54431 0.4360 +1176 54885 0.5000 +1176 55317 0.9250 +1176 55330 0.5760 +1176 55745 0.9320 +1176 55823 0.4210 +1176 57142 0.4200 +1176 79577 0.8340 +1176 81567 0.5340 +1176 84062 0.6510 +1176 84251 0.7200 +1176 91056 0.9050 +1176 122616 0.5400 +1176 128408 0.6820 +1176 130340 0.5590 +1176 148066 0.4130 +1176 192669 0.6740 +1176 285855 0.4730 +1176 286451 0.5300 +1176 388552 0.5650 +1178 1232 0.7650 +1178 1359 0.5910 +1178 1669 0.4270 +1178 2582 0.9320 +1178 2584 0.5710 +1178 3065 0.4650 +1178 3066 0.4730 +1178 3067 0.4180 +1178 3568 0.6400 +1178 3956 0.4370 +1178 3957 0.7090 +1178 3958 0.5760 +1178 5553 0.5340 +1178 6036 0.7580 +1178 6037 0.7080 +1178 8288 0.6100 +1178 8841 0.5170 +1178 9525 0.4100 +1178 10606 0.5070 +1178 11251 0.5610 +1178 27181 0.4920 +1178 29124 0.4220 +1178 51477 0.5400 +1178 55636 0.6010 +1178 55869 0.4990 +1178 85329 0.6520 +1178 260429 0.4630 +1178 100423062 0.9070 +1179 1182 0.5360 +1179 1298 0.4400 +1179 1359 0.4450 +1179 1670 0.5600 +1179 1671 0.5850 +1179 1811 0.6470 +1179 2288 0.7450 +1179 2289 0.7730 +1179 2641 0.5730 +1179 2980 0.7000 +1179 2981 0.4700 +1179 3565 0.4480 +1179 3566 0.5000 +1179 3567 0.4480 +1179 3596 0.7880 +1179 3693 0.4870 +1179 3783 0.4040 +1179 4586 0.7410 +1179 5055 0.9000 +1179 5068 0.4460 +1179 5172 0.4080 +1179 6288 0.4050 +1179 6289 0.4180 +1179 6356 0.4070 +1179 6476 0.6200 +1179 6558 0.4900 +1179 6579 0.5270 +1179 7033 0.5900 +1179 7177 0.4060 +1179 7439 0.5400 +1179 8399 0.4060 +1179 8857 0.8460 +1179 8972 0.4200 +1179 9058 0.4790 +1179 9635 0.9110 +1179 10071 0.4100 +1179 10551 0.5910 +1179 10562 0.5910 +1179 10628 0.4200 +1179 10631 0.8980 +1179 22802 0.9180 +1179 23507 0.4930 +1179 25803 0.4930 +1179 26027 0.4160 +1179 27290 0.7190 +1179 27304 0.4470 +1179 50636 0.4690 +1179 51200 0.4040 +1179 54474 0.5420 +1179 54827 0.4560 +1179 54831 0.6390 +1179 54860 0.5120 +1179 54883 0.5520 +1179 54955 0.5270 +1179 55107 0.8760 +1179 55129 0.5750 +1179 55144 0.4420 +1179 55600 0.5690 +1179 56262 0.4810 +1179 57101 0.9330 +1179 63928 0.7920 +1179 63982 0.4180 +1179 80131 0.4650 +1179 83998 0.5940 +1179 84230 0.4650 +1179 84419 0.7070 +1179 84666 0.6130 +1179 115019 0.4690 +1179 133688 0.4030 +1179 140453 0.4010 +1179 144453 0.4180 +1179 167127 0.4030 +1179 167410 0.5960 +1179 196527 0.6080 +1179 203859 0.4680 +1179 338440 0.4830 +1179 388364 0.5950 +1179 644844 0.5070 +1179 645191 0.4250 +1179 653808 0.9300 +1179 727897 0.6470 +1180 1181 0.4330 +1180 1187 0.4670 +1180 1188 0.4820 +1180 1294 0.4630 +1180 1482 0.4080 +1180 1642 0.5030 +1180 1760 0.8780 +1180 1762 0.6250 +1180 1837 0.4120 +1180 2039 0.5770 +1180 2697 0.4810 +1180 2702 0.4630 +1180 3623 0.4410 +1180 3643 0.5670 +1180 3759 0.5080 +1180 3977 0.4560 +1180 4137 0.5050 +1180 4154 0.9320 +1180 4656 0.5420 +1180 4784 0.4750 +1180 6261 0.7710 +1180 6329 0.9510 +1180 6421 0.4040 +1180 6503 0.4260 +1180 6667 0.4370 +1180 7139 0.7710 +1180 7140 0.7950 +1180 7555 0.8190 +1180 7809 0.7260 +1180 8450 0.4760 +1180 8451 0.5170 +1180 8776 0.6450 +1180 10150 0.9000 +1180 10658 0.9310 +1180 10659 0.5250 +1180 11155 0.7720 +1180 11189 0.5450 +1180 22921 0.5120 +1180 23332 0.4520 +1180 23770 0.4480 +1180 28962 0.5420 +1180 51185 0.7970 +1180 55655 0.4210 +1180 55796 0.8960 +1180 56853 0.5190 +1180 60680 0.5100 +1180 84174 0.4350 +1180 135935 0.5140 +1180 144453 0.4030 +1180 147912 0.6950 +1180 203859 0.4640 +1180 285525 0.4480 +1180 389813 0.5760 +1180 100134444 0.5480 +1181 1187 0.4380 +1181 1188 0.4330 +1181 1584 0.4790 +1181 1585 0.5750 +1181 1589 0.4310 +1181 1811 0.4540 +1181 1981 0.5350 +1181 2554 0.8760 +1181 2559 0.6180 +1181 2561 0.4780 +1181 2562 0.6910 +1181 2563 0.7760 +1181 2566 0.8920 +1181 3747 0.4230 +1181 3762 0.6350 +1181 3766 0.4050 +1181 3785 0.4560 +1181 3786 0.4510 +1181 6323 0.7180 +1181 6324 0.7090 +1181 6326 0.4210 +1181 6334 0.4560 +1181 6529 0.4290 +1181 6558 0.4890 +1181 7066 0.4600 +1181 7417 0.4950 +1181 7809 0.5350 +1181 8629 0.5430 +1181 8646 0.4860 +1181 8671 0.4060 +1181 8912 0.8940 +1181 8913 0.4590 +1181 9635 0.4460 +1181 10273 0.4970 +1181 23327 0.5190 +1181 27094 0.7960 +1181 51185 0.4030 +1181 59272 0.4740 +1181 65010 0.4200 +1181 79798 0.4340 +1181 84501 0.4490 +1181 114327 0.9220 +1181 140803 0.4200 +1181 220296 0.6030 +1181 254251 0.5790 +1182 1184 0.7540 +1182 1185 0.4220 +1182 1186 0.4070 +1182 1192 0.4930 +1182 1207 0.4900 +1182 1509 0.5310 +1182 2823 0.8400 +1182 3778 0.4340 +1182 3783 0.5160 +1182 4313 0.8620 +1182 5538 0.5470 +1182 6550 0.4690 +1182 6558 0.5090 +1182 7439 0.6750 +1182 7809 0.4710 +1182 8671 0.4350 +1182 8773 0.4860 +1182 9138 0.5760 +1182 9368 0.4260 +1182 9424 0.4820 +1182 9522 0.4290 +1182 9635 0.5370 +1182 9990 0.4070 +1182 10336 0.4150 +1182 22802 0.4800 +1182 23507 0.5500 +1182 26088 0.4480 +1182 28962 0.7510 +1182 55107 0.5840 +1182 55144 0.5720 +1182 56262 0.6210 +1182 56674 0.4580 +1182 63910 0.4320 +1182 80131 0.5240 +1182 80331 0.4040 +1182 84230 0.5280 +1182 84329 0.4300 +1182 144453 0.4530 +1182 147837 0.4530 +1182 203062 0.4790 +1182 203238 0.4140 +1182 259232 0.4520 +1182 643677 0.4150 +1183 1184 0.6260 +1183 1192 0.6710 +1183 2058 0.5520 +1183 4267 0.4300 +1183 4281 0.6820 +1183 4952 0.4480 +1183 7809 0.4830 +1183 9138 0.4930 +1183 10336 0.4400 +1183 10479 0.4480 +1183 22802 0.4050 +1183 23096 0.4390 +1183 25932 0.6830 +1183 28962 0.5920 +1183 55841 0.6010 +1183 80012 0.4140 +1183 80331 0.4440 +1183 84679 0.4680 +1183 203062 0.4950 +1184 1294 0.4810 +1184 1497 0.4710 +1184 3093 0.4100 +1184 3747 0.4180 +1184 3758 0.7160 +1184 3796 0.4050 +1184 3964 0.4200 +1184 4036 0.9340 +1184 4943 0.6090 +1184 4952 0.9440 +1184 5167 0.6400 +1184 5172 0.4760 +1184 5251 0.7150 +1184 5546 0.5820 +1184 5741 0.5980 +1184 5832 0.4030 +1184 5867 0.5260 +1184 5868 0.5790 +1184 6421 0.4200 +1184 6521 0.4140 +1184 6523 0.4130 +1184 6550 0.8180 +1184 6557 0.6980 +1184 6559 0.6380 +1184 6568 0.4180 +1184 6569 0.5970 +1184 6855 0.4640 +1184 7030 0.5480 +1184 7224 0.4370 +1184 7809 0.8070 +1184 7827 0.4050 +1184 7837 0.5940 +1184 8029 0.8680 +1184 9351 0.4040 +1184 9365 0.4470 +1184 9368 0.4490 +1184 9371 0.6750 +1184 9380 0.4120 +1184 10336 0.4140 +1184 10479 0.4220 +1184 10686 0.4910 +1184 11060 0.5700 +1184 22921 0.4080 +1184 23063 0.4260 +1184 23229 0.4340 +1184 28962 0.6360 +1184 56674 0.5720 +1184 56850 0.4350 +1184 79050 0.4090 +1184 79058 0.5860 +1184 80737 0.4090 +1184 81693 0.4810 +1184 92002 0.4330 +1184 112817 0.5070 +1184 137902 0.5970 +1184 142680 0.8390 +1184 165257 0.4390 +1184 256356 0.4020 +1184 286148 0.4700 +1185 1187 0.4190 +1185 1188 0.4060 +1185 1201 0.4530 +1185 1207 0.4610 +1185 1277 0.4220 +1185 2055 0.4520 +1185 2770 0.5300 +1185 3845 0.4510 +1185 4000 0.5060 +1185 4524 0.8180 +1185 4952 0.4060 +1185 5037 0.4460 +1185 5530 0.4140 +1185 5538 0.7620 +1185 5604 0.5130 +1185 5605 0.4990 +1185 5894 0.4520 +1185 6448 0.5460 +1185 6714 0.5160 +1185 6774 0.4250 +1185 7529 0.4550 +1185 7809 0.4400 +1185 8087 0.6160 +1185 8546 0.4990 +1185 8805 0.6630 +1185 8844 0.6940 +1185 9061 0.5010 +1185 9444 0.6080 +1185 9715 0.8560 +1185 9771 0.4360 +1185 10018 0.4990 +1185 10142 0.5650 +1185 10533 0.5350 +1185 10827 0.4990 +1185 11044 0.5290 +1185 22906 0.7440 +1185 23164 0.5160 +1185 23608 0.6380 +1185 27044 0.5040 +1185 28962 0.8170 +1185 51154 0.4290 +1185 54431 0.4580 +1185 54845 0.5040 +1185 54982 0.5220 +1185 55109 0.5340 +1185 55750 0.5010 +1185 55753 0.4470 +1185 55819 0.6980 +1185 56829 0.5080 +1185 57085 0.7760 +1185 57670 0.7670 +1185 80853 0.5010 +1185 256471 0.4910 +1186 1207 0.4240 +1186 1435 0.5230 +1186 1509 0.4330 +1186 1513 0.6900 +1186 3636 0.4110 +1186 3916 0.5060 +1186 3920 0.4320 +1186 4041 0.6650 +1186 4772 0.4810 +1186 6448 0.4250 +1186 6522 0.4990 +1186 6653 0.4050 +1186 7809 0.5180 +1186 7942 0.5030 +1186 8517 0.4380 +1186 8600 0.7680 +1186 8733 0.4370 +1186 8792 0.7720 +1186 9066 0.5660 +1186 9842 0.9090 +1186 10312 0.9700 +1186 11342 0.6280 +1186 23207 0.4030 +1186 23315 0.4260 +1186 25963 0.4140 +1186 26173 0.5220 +1186 28962 0.9990 +1186 29887 0.7190 +1186 29946 0.4060 +1186 50964 0.5160 +1186 51343 0.4470 +1186 51606 0.4100 +1186 55168 0.4060 +1186 55283 0.5360 +1186 55315 0.4270 +1186 55697 0.4450 +1186 56262 0.4520 +1186 57192 0.6340 +1186 57505 0.4060 +1186 79444 0.4400 +1186 81501 0.5100 +1186 83985 0.4760 +1186 84286 0.4580 +1186 85413 0.4070 +1186 121260 0.4110 +1186 128506 0.4430 +1186 133308 0.4220 +1186 146705 0.4590 +1186 147710 0.4440 +1186 219931 0.4750 +1186 220296 0.5930 +1186 221496 0.4600 +1186 245972 0.4420 +1186 284325 0.4560 +1186 387509 0.4490 +1187 1188 0.6150 +1187 1589 0.4020 +1187 3758 0.8400 +1187 3766 0.4560 +1187 4150 0.6660 +1187 6548 0.6250 +1187 6557 0.9070 +1187 6559 0.8780 +1187 6582 0.4160 +1187 7809 0.9990 +1187 8170 0.6240 +1187 10916 0.4720 +1187 27129 0.6140 +1187 28962 0.4360 +1187 28999 0.7970 +1187 140803 0.4090 +1188 2557 0.4180 +1188 3758 0.9420 +1188 3766 0.6110 +1188 4150 0.5960 +1188 5172 0.4340 +1188 5726 0.4060 +1188 5972 0.6510 +1188 6338 0.4550 +1188 6340 0.4110 +1188 6521 0.4340 +1188 6548 0.6140 +1188 6557 0.9510 +1188 6559 0.9670 +1188 6569 0.4690 +1188 7369 0.4440 +1188 7809 0.9990 +1188 10686 0.6540 +1188 10916 0.5700 +1188 23562 0.4060 +1188 27347 0.5530 +1188 28999 0.7630 +1188 50617 0.4920 +1188 54805 0.4440 +1188 65125 0.4930 +1188 65266 0.5940 +1188 140803 0.6290 +1188 149461 0.6180 +1191 1356 0.7940 +1191 1378 0.5670 +1191 1379 0.7410 +1191 1401 0.6420 +1191 1410 0.4350 +1191 1471 0.7660 +1191 1506 0.4460 +1191 1509 0.4130 +1191 1558 0.4190 +1191 1604 0.5130 +1191 1622 0.7330 +1191 1742 0.5380 +1191 1950 0.4070 +1191 1956 0.4130 +1191 1958 0.5730 +1191 2041 0.6850 +1191 2099 0.5040 +1191 2100 0.5660 +1191 2113 0.4130 +1191 2185 0.5070 +1191 2200 0.6070 +1191 2243 0.5960 +1191 2244 0.6590 +1191 2249 0.4750 +1191 2335 0.8020 +1191 2353 0.6290 +1191 2547 0.9730 +1191 2597 0.5790 +1191 2625 0.4800 +1191 2638 0.7450 +1191 2670 0.4140 +1191 2694 0.5070 +1191 2817 0.4300 +1191 2877 0.5570 +1191 2878 0.5970 +1191 2880 0.5420 +1191 2882 0.5260 +1191 2896 0.5630 +1191 2934 0.6460 +1191 3040 0.4200 +1191 3069 0.5950 +1191 3075 0.6330 +1191 3078 0.4470 +1191 3091 0.5690 +1191 3127 0.5420 +1191 3240 0.8040 +1191 3250 0.8510 +1191 3263 0.7430 +1191 3305 0.5240 +1191 3309 0.8740 +1191 3315 0.4640 +1191 3316 0.4780 +1191 3320 0.5570 +1191 3329 0.4070 +1191 3339 0.4700 +1191 3397 0.4310 +1191 3416 0.4190 +1191 3426 0.4960 +1191 3479 0.5620 +1191 3481 0.4680 +1191 3486 0.5980 +1191 3552 0.5660 +1191 3553 0.6010 +1191 3565 0.5330 +1191 3567 0.4870 +1191 3569 0.4550 +1191 3576 0.5570 +1191 3630 0.4550 +1191 3635 0.5660 +1191 3672 0.4030 +1191 3697 0.5340 +1191 3698 0.5710 +1191 3725 0.5740 +1191 3827 0.4730 +1191 3931 0.8910 +1191 3934 0.6250 +1191 3949 0.5980 +1191 3952 0.8990 +1191 3958 0.6260 +1191 3959 0.6160 +1191 3990 0.6310 +1191 4016 0.7020 +1191 4018 0.8060 +1191 4023 0.7730 +1191 4035 0.7150 +1191 4036 0.9940 +1191 4052 0.6220 +1191 4053 0.7040 +1191 4054 0.5880 +1191 4057 0.9930 +1191 4069 0.5250 +1191 4133 0.4750 +1191 4137 0.6960 +1191 4147 0.4450 +1191 4153 0.4100 +1191 4179 0.5120 +1191 4208 0.4350 +1191 4240 0.5760 +1191 4257 0.4120 +1191 4314 0.6950 +1191 4318 0.7180 +1191 4481 0.5690 +1191 4790 0.7610 +1191 4792 0.4010 +1191 4811 0.4660 +1191 5004 0.8540 +1191 5005 0.6990 +1191 5176 0.6580 +1191 5199 0.7170 +1191 5265 0.8960 +1191 5304 0.5100 +1191 5327 0.5660 +1191 5328 0.4500 +1191 5340 0.5230 +1191 5360 0.8940 +1191 5444 0.9960 +1191 5445 0.5790 +1191 5446 0.7340 +1191 5478 0.4950 +1191 5620 0.6580 +1191 5621 0.6130 +1191 5648 0.4260 +1191 5663 0.6640 +1191 5664 0.6260 +1191 5730 0.4960 +1191 5819 0.5300 +1191 5949 0.6200 +1191 5950 0.4190 +1191 6120 0.4220 +1191 6288 0.7200 +1191 6289 0.7050 +1191 6291 0.7060 +1191 6347 0.6080 +1191 6351 0.5280 +1191 6355 0.4210 +1191 6376 0.5310 +1191 6406 0.9000 +1191 6462 0.6010 +1191 6622 0.8610 +1191 6653 0.8620 +1191 6657 0.4610 +1191 6662 0.5550 +1191 6678 0.5890 +1191 6696 0.7300 +1191 6921 0.4300 +1191 6923 0.4470 +1191 7018 0.6300 +1191 7033 0.5300 +1191 7040 0.7450 +1191 7057 0.6000 +1191 7076 0.4440 +1191 7077 0.4710 +1191 7078 0.5120 +1191 7099 0.5490 +1191 7124 0.4940 +1191 7157 0.4180 +1191 7184 0.5430 +1191 7276 0.8850 +1191 7277 0.4530 +1191 7295 0.5180 +1191 7305 0.4340 +1191 7316 0.5160 +1191 7369 0.4350 +1191 7412 0.5510 +1191 7416 0.5070 +1191 7436 0.9380 +1191 7448 0.9620 +1191 7514 0.5620 +1191 7804 0.8990 +1191 7846 0.4920 +1191 7941 0.8420 +1191 8029 0.4270 +1191 8301 0.9230 +1191 8404 0.4600 +1191 8504 0.7200 +1191 8542 0.9230 +1191 8988 0.6400 +1191 9131 0.4740 +1191 9804 0.4600 +1191 9978 0.4380 +1191 10082 0.4420 +1191 10347 0.8100 +1191 10452 0.5060 +1191 10525 0.4130 +1191 10590 0.4220 +1191 10658 0.5070 +1191 10747 0.4100 +1191 10979 0.5900 +1191 23059 0.4140 +1191 23480 0.4110 +1191 23607 0.8000 +1191 23621 0.5380 +1191 23646 0.5000 +1191 25828 0.4290 +1191 26119 0.4910 +1191 26577 0.4280 +1191 27185 0.6100 +1191 30835 0.6210 +1191 51280 0.5300 +1191 51314 0.5900 +1191 51338 0.6090 +1191 51422 0.4390 +1191 51449 0.8170 +1191 51599 0.5590 +1191 51738 0.4830 +1191 53353 0.4020 +1191 53919 0.4320 +1191 54209 0.9850 +1191 55063 0.6210 +1191 55829 0.7320 +1191 55911 0.5400 +1191 55937 0.9270 +1191 56729 0.4540 +1191 57091 0.5950 +1191 57119 0.7530 +1191 64231 0.7140 +1191 64386 0.4030 +1191 64759 0.4360 +1191 79135 0.6130 +1191 79258 0.4060 +1191 79890 0.5280 +1191 81669 0.4550 +1191 83661 0.5760 +1191 84557 0.5660 +1191 84955 0.6190 +1191 85358 0.4020 +1191 85477 0.6410 +1191 91584 0.8020 +1191 94241 0.4390 +1191 116519 0.8720 +1191 120892 0.4190 +1191 123041 0.5710 +1191 150684 0.7660 +1191 245802 0.6100 +1191 257202 0.5270 +1191 374897 0.4800 +1191 493869 0.5260 +1191 643680 0.8090 +1191 653145 0.5050 +1191 100528017 0.6170 +1192 2023 0.4290 +1192 2670 0.4120 +1192 2745 0.4220 +1192 2950 0.4190 +1192 3015 0.4140 +1192 4137 0.4350 +1192 5052 0.4190 +1192 5720 0.4110 +1192 6282 0.6240 +1192 7167 0.4020 +1192 7430 0.7150 +1192 9446 0.5340 +1192 9588 0.4300 +1192 10044 0.5130 +1192 27257 0.6450 +1192 56262 0.4130 +1192 80012 0.7170 +1192 225689 0.8390 +1192 286262 0.6340 +1193 4512 0.4220 +1193 5303 0.4750 +1193 6261 0.4160 +1193 6262 0.4310 +1193 6399 0.4750 +1193 7411 0.4430 +1193 7430 0.4720 +1193 10345 0.5570 +1193 25932 0.8530 +1193 53405 0.8570 +1193 55217 0.4300 +1193 65991 0.4560 +1193 66008 0.5100 +1193 80012 0.7490 +1193 116442 0.5350 +1193 123207 0.6100 +1193 225689 0.8270 +1193 286262 0.6530 +1193 619208 0.4200 +1193 100272147 0.4020 +1195 1196 0.7920 +1195 1407 0.5050 +1195 1408 0.4910 +1195 1453 0.4780 +1195 1604 0.4680 +1195 1629 0.4210 +1195 1977 0.4650 +1195 1979 0.4910 +1195 1981 0.4560 +1195 4820 0.7880 +1195 5303 0.4970 +1195 5411 0.4500 +1195 5876 0.5340 +1195 6426 0.9300 +1195 6427 0.8260 +1195 6428 0.7580 +1195 6429 0.5660 +1195 6430 0.5780 +1195 6431 0.6120 +1195 6432 0.6100 +1195 6434 0.5160 +1195 6625 0.4610 +1195 6651 0.4700 +1195 6732 0.6660 +1195 6733 0.7490 +1195 8864 0.4090 +1195 8899 0.5990 +1195 8914 0.4450 +1195 9221 0.5260 +1195 9295 0.6890 +1195 9360 0.5720 +1195 9416 0.8590 +1195 9584 0.6170 +1195 9987 0.4810 +1195 10482 0.4120 +1195 10772 0.5110 +1195 11129 0.4840 +1195 23451 0.4360 +1195 23534 0.5510 +1195 25957 0.5770 +1195 29896 0.7990 +1195 51747 0.4760 +1195 54205 0.8090 +1195 57018 0.5680 +1195 57035 0.5500 +1195 57396 0.9590 +1195 59286 0.6240 +1195 65117 0.4210 +1195 84950 0.4370 +1195 124245 0.5990 +1196 1198 0.8460 +1196 4820 0.5980 +1196 5050 0.7700 +1196 5411 0.6560 +1196 5563 0.4290 +1196 5564 0.4440 +1196 5571 0.4400 +1196 5930 0.7880 +1196 6434 0.5870 +1196 6625 0.5600 +1196 6651 0.5610 +1196 6733 0.5790 +1196 8233 0.4320 +1196 8899 0.5190 +1196 9295 0.5190 +1196 9506 0.5840 +1196 9584 0.4680 +1196 9774 0.8010 +1196 9967 0.6550 +1196 10250 0.6280 +1196 10772 0.6750 +1196 10921 0.6320 +1196 10929 0.7290 +1196 10971 0.4150 +1196 11129 0.6380 +1196 22794 0.6540 +1196 22985 0.7480 +1196 23131 0.6290 +1196 23524 0.5450 +1196 23708 0.4060 +1196 27332 0.4900 +1196 29072 0.4250 +1196 29896 0.7030 +1196 51535 0.6180 +1196 51593 0.6450 +1196 51631 0.7200 +1196 55339 0.5730 +1196 55596 0.4420 +1196 55657 0.4580 +1196 55692 0.7010 +1196 57035 0.8490 +1196 57649 0.6170 +1196 79746 0.4190 +1196 79753 0.7810 +1196 79882 0.6220 +1196 84950 0.4940 +1196 91746 0.7170 +1196 124245 0.4870 +1196 135295 0.7320 +1196 494115 0.5340 +1198 2289 0.4350 +1198 3183 0.6060 +1198 3217 0.4750 +1198 4939 0.6530 +1198 5050 0.5520 +1198 5134 0.4030 +1198 5411 0.4800 +1198 5930 0.7340 +1198 6426 0.7820 +1198 6428 0.6340 +1198 6429 0.6340 +1198 6430 0.4260 +1198 6431 0.5080 +1198 6432 0.5750 +1198 6434 0.8550 +1198 6625 0.4920 +1198 6732 0.4930 +1198 6733 0.7360 +1198 7533 0.4590 +1198 7534 0.5050 +1198 8237 0.5190 +1198 8975 0.4500 +1198 9295 0.5440 +1198 9360 0.6310 +1198 9584 0.4910 +1198 9774 0.6590 +1198 9894 0.7700 +1198 9967 0.6690 +1198 10197 0.5940 +1198 10229 0.8930 +1198 10250 0.4570 +1198 10772 0.8330 +1198 10921 0.6570 +1198 10929 0.8310 +1198 10989 0.7680 +1198 11129 0.4350 +1198 11140 0.4800 +1198 11338 0.5760 +1198 22985 0.4110 +1198 23091 0.4360 +1198 23131 0.6770 +1198 23513 0.5020 +1198 23524 0.7390 +1198 23534 0.6320 +1198 25962 0.6000 +1198 27332 0.4720 +1198 29896 0.8370 +1198 51535 0.4560 +1198 51574 0.4890 +1198 51631 0.6780 +1198 55119 0.4900 +1198 55227 0.4800 +1198 55692 0.6550 +1198 56257 0.5640 +1198 57035 0.8350 +1198 79753 0.6220 +1198 80011 0.4760 +1198 84993 0.5190 +1198 91746 0.6920 +1198 124245 0.6330 +1198 135295 0.7060 +1198 192683 0.5120 +1200 1201 0.9110 +1200 1362 0.4620 +1200 1508 0.5580 +1200 1509 0.7610 +1200 1636 0.4090 +1200 2055 0.7540 +1200 2313 0.9400 +1200 2720 0.4090 +1200 2799 0.6220 +1200 2896 0.6370 +1200 3073 0.4060 +1200 3074 0.4370 +1200 3308 0.4260 +1200 3320 0.4260 +1200 3326 0.4340 +1200 3423 0.5100 +1200 3916 0.4010 +1200 4074 0.4710 +1200 5265 0.4020 +1200 5476 0.6230 +1200 5538 0.9600 +1200 5550 0.4100 +1200 5660 0.4820 +1200 6448 0.5210 +1200 6500 0.5120 +1200 6881 0.4990 +1200 6921 0.4730 +1200 6923 0.4970 +1200 7013 0.9930 +1200 7014 0.7430 +1200 7015 0.6770 +1200 7174 0.4230 +1200 7494 0.7560 +1200 7942 0.4020 +1200 8451 0.4260 +1200 8453 0.4670 +1200 8454 0.4270 +1200 8658 0.4800 +1200 8722 0.6110 +1200 9978 0.4900 +1200 10577 0.4980 +1200 23400 0.4670 +1200 25913 0.9960 +1200 26227 0.5410 +1200 26277 0.9950 +1200 29952 0.4370 +1200 51127 0.4300 +1200 51529 0.6890 +1200 51655 0.4230 +1200 54386 0.7570 +1200 54982 0.7740 +1200 55294 0.5340 +1200 79991 0.5520 +1200 80169 0.7010 +1200 80331 0.7880 +1200 81669 0.4730 +1200 84188 0.6560 +1200 154881 0.5930 +1200 256471 0.6870 +1200 388743 0.4950 +1200 389493 0.8200 +1201 1298 0.4390 +1201 1355 0.6120 +1201 1468 0.6090 +1201 1497 0.6210 +1201 1509 0.8370 +1201 1512 0.5160 +1201 1537 0.4110 +1201 1650 0.4760 +1201 2055 0.9660 +1201 2313 0.4790 +1201 2572 0.5560 +1201 2629 0.4240 +1201 2896 0.4500 +1201 3155 0.8930 +1201 3654 0.4080 +1201 3916 0.4910 +1201 4125 0.4160 +1201 4610 0.4420 +1201 4627 0.4640 +1201 4669 0.4570 +1201 4864 0.5000 +1201 5538 0.9850 +1201 6185 0.6000 +1201 6448 0.5620 +1201 6609 0.4250 +1201 6855 0.5460 +1201 7514 0.6050 +1201 7837 0.4700 +1201 7942 0.4790 +1201 8402 0.6000 +1201 8722 0.6760 +1201 8766 0.5680 +1201 9319 0.4150 +1201 9374 0.7630 +1201 9900 0.5160 +1201 10533 0.7390 +1201 10577 0.4910 +1201 10897 0.4620 +1201 10985 0.5020 +1201 10989 0.4370 +1201 23165 0.6080 +1201 23392 0.6250 +1201 23400 0.6250 +1201 26985 0.5110 +1201 29911 0.5560 +1201 30818 0.8900 +1201 51119 0.7560 +1201 51144 0.4570 +1201 51172 0.4300 +1201 51361 0.9360 +1201 54511 0.8670 +1201 54982 0.9790 +1201 55176 0.4050 +1201 55183 0.4010 +1201 55759 0.5930 +1201 55911 0.4680 +1201 57192 0.4420 +1201 64422 0.5050 +1201 79751 0.5400 +1201 80331 0.9140 +1201 81669 0.4360 +1201 83985 0.4130 +1201 84188 0.5240 +1201 84376 0.6590 +1201 84557 0.4280 +1201 93436 0.4890 +1201 93627 0.4270 +1201 137902 0.4700 +1201 138050 0.4460 +1201 154881 0.7280 +1201 220002 0.4460 +1201 256471 0.9520 +1207 1627 0.4260 +1207 1653 0.4080 +1207 2035 0.4700 +1207 2037 0.4600 +1207 2079 0.9160 +1207 3028 0.4430 +1207 3276 0.9260 +1207 5464 0.4010 +1207 6132 0.4250 +1207 6188 0.4080 +1207 6468 0.4320 +1207 6606 0.9260 +1207 6607 0.8530 +1207 6628 0.9940 +1207 6632 0.9990 +1207 6633 0.9980 +1207 6634 0.9970 +1207 6635 0.9890 +1207 6636 0.9870 +1207 6637 0.9830 +1207 6638 0.4630 +1207 8487 0.7020 +1207 9184 0.4080 +1207 10055 0.4500 +1207 10286 0.4220 +1207 10419 0.9990 +1207 10436 0.4070 +1207 10480 0.4110 +1207 11022 0.9570 +1207 11157 0.9270 +1207 11171 0.5480 +1207 11218 0.5780 +1207 23107 0.4180 +1207 23136 0.4230 +1207 23196 0.4740 +1207 23564 0.6780 +1207 25804 0.7130 +1207 25929 0.6490 +1207 27101 0.4500 +1207 27257 0.4940 +1207 27258 0.8810 +1207 27304 0.5050 +1207 50628 0.5390 +1207 51123 0.4730 +1207 51433 0.4230 +1207 51574 0.4030 +1207 51773 0.4850 +1207 51780 0.4100 +1207 53371 0.4750 +1207 54433 0.6150 +1207 54496 0.4740 +1207 54960 0.5120 +1207 55144 0.4240 +1207 55352 0.7500 +1207 56262 0.4840 +1207 57407 0.4460 +1207 57488 0.4470 +1207 57819 0.8690 +1207 79053 0.4240 +1207 79084 0.9990 +1207 79760 0.5400 +1207 79833 0.5220 +1207 80131 0.4050 +1207 83732 0.7660 +1207 84230 0.4090 +1207 84316 0.4770 +1207 84950 0.4380 +1207 84967 0.9320 +1207 124801 0.4630 +1207 134353 0.6590 +1207 157922 0.4790 +1208 1357 0.8380 +1208 1358 0.5380 +1208 1360 0.6500 +1208 1504 0.8010 +1208 1506 0.7350 +1208 3630 0.4420 +1208 3990 0.7050 +1208 4023 0.6760 +1208 5319 0.6330 +1208 5406 0.9990 +1208 5407 0.9940 +1208 5539 0.5350 +1208 5644 0.5270 +1208 5967 0.7970 +1208 5968 0.6080 +1208 6035 0.4290 +1208 7032 0.4150 +1208 8192 0.6570 +1208 8513 0.9450 +1208 8864 0.5440 +1208 10136 0.9010 +1208 10845 0.5720 +1208 11101 0.4030 +1208 11330 0.7580 +1208 23304 0.4530 +1208 23436 0.6400 +1208 50945 0.9400 +1208 51032 0.7020 +1208 60675 0.7330 +1208 63036 0.5850 +1208 84432 0.7700 +1208 119548 0.7010 +1208 197131 0.4380 +1208 342898 0.7470 +1208 440387 0.9320 +1208 653808 0.7610 +1209 2734 0.5240 +1209 3664 0.4070 +1209 4085 0.4880 +1209 5654 0.5490 +1209 5971 0.4110 +1209 7015 0.4460 +1209 8379 0.5260 +1209 9788 0.5530 +1209 50945 0.4320 +1209 55697 0.4460 +1209 56950 0.4370 +1209 56971 0.5100 +1209 79090 0.4260 +1209 81502 0.5460 +1209 81618 0.6200 +1209 337867 0.5280 +1209 348932 0.4050 +1209 388135 0.4150 +1209 497661 0.4140 +1209 729956 0.4460 +1211 1212 0.9850 +1211 1362 0.5060 +1211 1493 0.6210 +1211 1522 0.5330 +1211 1601 0.7500 +1211 1759 0.7020 +1211 1777 0.5220 +1211 1785 0.7670 +1211 1839 0.5110 +1211 1856 0.5150 +1211 1947 0.4990 +1211 1948 0.4990 +1211 1949 0.4990 +1211 1950 0.5520 +1211 1956 0.6200 +1211 2017 0.5020 +1211 2047 0.5130 +1211 2048 0.5130 +1211 2049 0.5130 +1211 2050 0.5130 +1211 2051 0.5130 +1211 2060 0.8350 +1211 2069 0.4990 +1211 2495 0.5070 +1211 2512 0.5340 +1211 2580 0.8590 +1211 2647 0.5170 +1211 2697 0.4990 +1211 2799 0.5040 +1211 2885 0.5400 +1211 3064 0.9100 +1211 3092 0.9130 +1211 3113 0.5030 +1211 3115 0.5070 +1211 3117 0.4990 +1211 3118 0.4990 +1211 3119 0.5030 +1211 3120 0.5030 +1211 3122 0.5010 +1211 3123 0.5180 +1211 3127 0.5050 +1211 3267 0.5580 +1211 3304 0.4410 +1211 3305 0.4400 +1211 3312 0.7320 +1211 3482 0.6350 +1211 3897 0.5680 +1211 3921 0.4410 +1211 3949 0.5160 +1211 4036 0.5330 +1211 4074 0.5110 +1211 4478 0.5080 +1211 4646 0.9740 +1211 4803 0.4990 +1211 4914 0.5220 +1211 4919 0.4150 +1211 4920 0.4150 +1211 4952 0.6790 +1211 5133 0.4470 +1211 5286 0.7670 +1211 5335 0.5430 +1211 5499 0.6760 +1211 5594 0.5420 +1211 5878 0.6580 +1211 5962 0.5340 +1211 6195 0.5080 +1211 6196 0.5020 +1211 6197 0.5110 +1211 6233 0.5900 +1211 6272 0.6230 +1211 6453 0.8240 +1211 6455 0.5400 +1211 6456 0.5810 +1211 6457 0.5360 +1211 6572 0.5450 +1211 6643 0.5520 +1211 6844 0.6300 +1211 6845 0.5990 +1211 6869 0.5150 +1211 7037 0.6720 +1211 7039 0.4990 +1211 7163 0.5260 +1211 7164 0.4990 +1211 7266 0.4280 +1211 7284 0.5170 +1211 7311 0.5320 +1211 7314 0.5380 +1211 7316 0.5390 +1211 7415 0.4600 +1211 7430 0.5210 +1211 7436 0.5160 +1211 7454 0.4880 +1211 7474 0.4990 +1211 7529 0.6810 +1211 8027 0.5220 +1211 8218 0.9990 +1211 8301 0.9220 +1211 8322 0.4990 +1211 8411 0.5620 +1211 8546 0.6060 +1211 8673 0.6020 +1211 8775 0.5140 +1211 8867 0.7790 +1211 8905 0.6500 +1211 8906 0.6200 +1211 8907 0.7160 +1211 8943 0.4130 +1211 8976 0.4980 +1211 8986 0.5030 +1211 9026 0.8710 +1211 9146 0.5940 +1211 9179 0.5260 +1211 9185 0.4990 +1211 9252 0.4990 +1211 9341 0.6610 +1211 9685 0.8540 +1211 9698 0.5740 +1211 9829 0.8990 +1211 9892 0.6570 +1211 9919 0.4560 +1211 10053 0.6540 +1211 10097 0.5430 +1211 10126 0.4230 +1211 10254 0.5250 +1211 10459 0.6540 +1211 10618 0.5090 +1211 10717 0.6640 +1211 10890 0.4920 +1211 11276 0.7940 +1211 22848 0.6280 +1211 22905 0.9180 +1211 23149 0.6890 +1211 23163 0.4350 +1211 23431 0.6600 +1211 23557 0.5070 +1211 24137 0.5000 +1211 25930 0.4570 +1211 25977 0.8040 +1211 26052 0.6690 +1211 26058 0.5620 +1211 26119 0.5810 +1211 26258 0.5360 +1211 27131 0.5850 +1211 27243 0.4120 +1211 27330 0.5040 +1211 29126 0.6990 +1211 29924 0.8150 +1211 29978 0.5060 +1211 30011 0.5170 +1211 30846 0.9250 +1211 50618 0.8920 +1211 51429 0.6640 +1211 54885 0.4990 +1211 55040 0.8830 +1211 55081 0.4960 +1211 55330 0.5200 +1211 55707 0.7750 +1211 55738 0.4050 +1211 56479 0.9000 +1211 57509 0.4190 +1211 58513 0.7610 +1211 64599 0.5460 +1211 80115 0.7200 +1211 81567 0.5260 +1211 83988 0.9000 +1211 84062 0.5200 +1211 84251 0.7950 +1211 85021 0.5820 +1211 115548 0.6840 +1211 122616 0.5400 +1211 130162 0.6900 +1211 130340 0.5970 +1211 134829 0.4990 +1211 150350 0.7080 +1211 157807 0.4990 +1211 255324 0.4990 +1211 255738 0.5340 +1211 285643 0.4990 +1211 286451 0.5190 +1211 388552 0.4990 +1212 1601 0.8020 +1212 1759 0.7260 +1212 1785 0.7280 +1212 1856 0.4990 +1212 1947 0.5100 +1212 1948 0.5070 +1212 1949 0.4990 +1212 2047 0.5130 +1212 2048 0.5130 +1212 2049 0.5140 +1212 2050 0.5130 +1212 2051 0.5170 +1212 2060 0.9210 +1212 2580 0.8160 +1212 2697 0.4990 +1212 3064 0.9380 +1212 3092 0.9650 +1212 3267 0.5770 +1212 3312 0.6650 +1212 3482 0.5290 +1212 3949 0.5160 +1212 4036 0.5460 +1212 4646 0.8120 +1212 4809 0.4610 +1212 4919 0.4150 +1212 4920 0.4150 +1212 5286 0.6780 +1212 5868 0.6580 +1212 5869 0.6010 +1212 5878 0.6160 +1212 6396 0.6260 +1212 6432 0.4360 +1212 6453 0.6800 +1212 6572 0.5450 +1212 6844 0.6470 +1212 6845 0.5920 +1212 6869 0.5150 +1212 7454 0.4980 +1212 7474 0.4990 +1212 8061 0.4120 +1212 8218 0.9990 +1212 8301 0.9190 +1212 8322 0.4990 +1212 8546 0.4870 +1212 8650 0.5360 +1212 8673 0.5740 +1212 8867 0.7310 +1212 8905 0.6390 +1212 8906 0.6210 +1212 8907 0.7470 +1212 8943 0.4620 +1212 8976 0.4890 +1212 9026 0.9600 +1212 9040 0.4210 +1212 9179 0.5430 +1212 9341 0.5810 +1212 9559 0.4010 +1212 9685 0.9350 +1212 9829 0.7320 +1212 9892 0.6930 +1212 9919 0.4740 +1212 10053 0.6390 +1212 10084 0.5080 +1212 10097 0.4080 +1212 10717 0.5600 +1212 11276 0.8020 +1212 22848 0.7960 +1212 22905 0.9370 +1212 23149 0.6830 +1212 23163 0.4440 +1212 25930 0.4880 +1212 25977 0.8120 +1212 26119 0.5600 +1212 26130 0.5280 +1212 26276 0.4170 +1212 29924 0.8230 +1212 29978 0.5060 +1212 30846 0.9200 +1212 50618 0.7020 +1212 54892 0.4820 +1212 55040 0.9230 +1212 55707 0.7840 +1212 55738 0.4160 +1212 56479 0.7200 +1212 57706 0.4300 +1212 58513 0.7210 +1212 65082 0.4050 +1212 65125 0.4690 +1212 80115 0.7260 +1212 83988 0.7370 +1212 84251 0.8110 +1212 84955 0.6210 +1212 85021 0.5520 +1212 85439 0.4680 +1212 115548 0.7910 +1212 122616 0.5400 +1212 130162 0.6900 +1212 130340 0.5970 +1212 134829 0.4990 +1212 150350 0.7080 +1212 157807 0.4990 +1215 1308 0.4650 +1215 1359 0.9660 +1215 1475 0.4360 +1215 1509 0.4640 +1215 1511 0.6950 +1215 1520 0.5550 +1215 1636 0.8460 +1215 1906 0.4920 +1215 1991 0.5740 +1215 2028 0.4440 +1215 2205 0.6810 +1215 2206 0.8100 +1215 2335 0.4050 +1215 2534 0.9490 +1215 3067 0.5260 +1215 3082 0.4290 +1215 3458 0.4400 +1215 3552 0.4340 +1215 3553 0.6360 +1215 3562 0.4860 +1215 3565 0.5110 +1215 3567 0.4870 +1215 3569 0.5410 +1215 3576 0.4180 +1215 3578 0.4090 +1215 3586 0.4700 +1215 3596 0.5080 +1215 3601 0.4440 +1215 3815 0.6030 +1215 3818 0.5170 +1215 3827 0.5510 +1215 4254 0.9070 +1215 4311 0.4980 +1215 4312 0.5450 +1215 4318 0.5250 +1215 4353 0.5510 +1215 4803 0.4190 +1215 5265 0.6130 +1215 5340 0.4920 +1215 5550 0.4090 +1215 5552 0.6390 +1215 5644 0.4750 +1215 5645 0.4770 +1215 5730 0.5130 +1215 5972 0.7270 +1215 6318 0.6920 +1215 6347 0.4380 +1215 6356 0.4290 +1215 6369 0.4790 +1215 6590 0.4040 +1215 6863 0.5200 +1215 7035 0.4090 +1215 7040 0.4770 +1215 7124 0.5380 +1215 7177 0.7080 +1215 8660 0.4210 +1215 9092 0.5410 +1215 9718 0.4090 +1215 10159 0.6780 +1215 10257 0.4220 +1215 10344 0.4870 +1215 10724 0.4350 +1215 11005 0.5870 +1215 22914 0.4120 +1215 51131 0.4450 +1215 51200 0.8520 +1215 51279 0.4680 +1215 59272 0.6110 +1215 64499 0.4450 +1215 79258 0.4820 +1215 90865 0.5610 +1215 115727 0.4350 +1215 117194 0.5590 +1230 1232 0.9970 +1230 1233 0.5430 +1230 1234 0.9980 +1230 1235 0.9270 +1230 1236 0.9470 +1230 1237 0.8450 +1230 1238 0.8240 +1230 1311 0.4890 +1230 1420 0.8670 +1230 1435 0.6510 +1230 1436 0.7110 +1230 1437 0.6680 +1230 1439 0.4260 +1230 1441 0.6310 +1230 1493 0.4190 +1230 1520 0.4360 +1230 1524 0.7700 +1230 1536 0.5790 +1230 1794 0.4590 +1230 2203 0.4310 +1230 2207 0.7370 +1230 2209 0.5740 +1230 2212 0.5360 +1230 2213 0.6160 +1230 2268 0.4490 +1230 2353 0.5170 +1230 2357 0.8130 +1230 2358 0.5640 +1230 2359 0.5770 +1230 2532 0.6150 +1230 2533 0.4140 +1230 2770 0.9670 +1230 2771 0.7100 +1230 2773 0.6880 +1230 2776 0.9320 +1230 2782 0.9090 +1230 2826 0.8770 +1230 2829 0.5180 +1230 2833 0.9660 +1230 2838 0.4470 +1230 2868 0.6730 +1230 2869 0.6700 +1230 2870 0.6840 +1230 2919 0.9800 +1230 2920 0.9360 +1230 2921 0.8780 +1230 3002 0.4480 +1230 3055 0.5010 +1230 3071 0.4050 +1230 3082 0.5580 +1230 3383 0.5320 +1230 3394 0.4690 +1230 3458 0.6460 +1230 3479 0.5220 +1230 3552 0.5100 +1230 3553 0.7640 +1230 3554 0.4150 +1230 3557 0.7410 +1230 3558 0.4670 +1230 3565 0.6880 +1230 3566 0.5180 +1230 3567 0.7230 +1230 3569 0.7530 +1230 3570 0.5770 +1230 3575 0.5320 +1230 3576 0.9970 +1230 3577 0.9450 +1230 3578 0.4240 +1230 3579 0.8660 +1230 3586 0.7810 +1230 3587 0.7080 +1230 3588 0.5550 +1230 3594 0.5300 +1230 3596 0.4840 +1230 3600 0.4150 +1230 3605 0.4670 +1230 3606 0.4370 +1230 3627 0.9940 +1230 3676 0.4190 +1230 3683 0.4590 +1230 3684 0.7110 +1230 3687 0.6070 +1230 3689 0.7430 +1230 3695 0.4190 +1230 3700 0.5910 +1230 3717 0.7490 +1230 3718 0.7360 +1230 3791 0.4870 +1230 3815 0.4610 +1230 3937 0.6110 +1230 3965 0.6020 +1230 4069 0.5160 +1230 4155 0.4340 +1230 4283 0.9570 +1230 4285 0.4260 +1230 4318 0.5710 +1230 4332 0.5120 +1230 4360 0.4200 +1230 4481 0.4100 +1230 4688 0.4440 +1230 4689 0.4360 +1230 4773 0.4660 +1230 4790 0.6140 +1230 5156 0.4640 +1230 5159 0.4830 +1230 5175 0.4230 +1230 5196 0.8950 +1230 5197 0.7610 +1230 5341 0.4100 +1230 5468 0.5210 +1230 5473 0.8170 +1230 5551 0.4040 +1230 5724 0.7550 +1230 5743 0.4180 +1230 5788 0.6020 +1230 5919 0.5230 +1230 6010 0.4470 +1230 6011 0.6700 +1230 6039 0.4320 +1230 6283 0.5770 +1230 6346 0.9720 +1230 6347 0.9990 +1230 6348 0.9990 +1230 6351 0.9990 +1230 6354 0.9990 +1230 6355 0.9990 +1230 6356 0.9960 +1230 6357 0.9980 +1230 6358 0.9930 +1230 6359 0.9990 +1230 6360 0.9990 +1230 6361 0.9420 +1230 6362 0.9560 +1230 6363 0.9120 +1230 6364 0.9730 +1230 6366 0.9450 +1230 6367 0.9500 +1230 6368 0.9940 +1230 6369 0.9340 +1230 6370 0.8890 +1230 6372 0.8650 +1230 6373 0.9190 +1230 6374 0.8530 +1230 6375 0.8980 +1230 6376 0.9050 +1230 6387 0.9460 +1230 6401 0.5300 +1230 6402 0.5080 +1230 6403 0.5700 +1230 6404 0.4840 +1230 6614 0.4750 +1230 6688 0.6940 +1230 6714 0.6140 +1230 6772 0.4150 +1230 6774 0.7160 +1230 6846 0.7700 +1230 7040 0.4720 +1230 7096 0.6900 +1230 7097 0.5900 +1230 7099 0.7250 +1230 7124 0.6440 +1230 7132 0.6090 +1230 7133 0.8640 +1230 7305 0.7310 +1230 7412 0.5070 +1230 7805 0.4890 +1230 7850 0.5250 +1230 7852 0.9390 +1230 7941 0.4400 +1230 8302 0.5220 +1230 8744 0.4630 +1230 9034 0.8960 +1230 9240 0.4060 +1230 9308 0.4300 +1230 9332 0.5790 +1230 9450 0.4270 +1230 9547 0.7810 +1230 9560 0.8200 +1230 10261 0.4200 +1230 10288 0.5720 +1230 10344 0.9600 +1230 10397 0.4020 +1230 10437 0.4990 +1230 10563 0.9290 +1230 10584 0.4330 +1230 10663 0.7710 +1230 10673 0.5560 +1230 10803 0.8660 +1230 10850 0.8880 +1230 10859 0.4040 +1230 10875 0.4210 +1230 10936 0.4130 +1230 11025 0.4560 +1230 11314 0.5140 +1230 23019 0.5090 +1230 23601 0.5360 +1230 23644 0.4260 +1230 23765 0.5750 +1230 27036 0.4240 +1230 27177 0.4610 +1230 27180 0.4440 +1230 29126 0.4010 +1230 29899 0.4200 +1230 30817 0.4260 +1230 50943 0.4750 +1230 51284 0.5170 +1230 51311 0.5920 +1230 51338 0.4480 +1230 51554 0.4970 +1230 54210 0.4580 +1230 54331 0.8220 +1230 54464 0.4130 +1230 56242 0.4160 +1230 56477 0.6990 +1230 56833 0.4090 +1230 57007 0.5500 +1230 58191 0.8830 +1230 63940 0.6430 +1230 64581 0.4610 +1230 65258 0.4680 +1230 79165 0.4090 +1230 84868 0.4620 +1230 131890 0.6700 +1230 149233 0.5740 +1230 160364 0.6180 +1230 414062 0.9980 +1232 1233 0.6370 +1232 1234 0.9980 +1232 1235 0.9210 +1232 1236 0.9460 +1232 1237 0.9080 +1232 1238 0.5510 +1232 1420 0.6240 +1232 1435 0.5170 +1232 1436 0.4180 +1232 1437 0.5450 +1232 1524 0.7620 +1232 1907 0.4430 +1232 2205 0.5330 +1232 2206 0.5700 +1232 2212 0.4150 +1232 2213 0.6270 +1232 2625 0.6150 +1232 2770 0.9670 +1232 2771 0.6870 +1232 2773 0.6810 +1232 2776 0.9160 +1232 2782 0.9130 +1232 2826 0.7570 +1232 2829 0.4620 +1232 2833 0.9630 +1232 2868 0.6700 +1232 2869 0.6800 +1232 2870 0.6840 +1232 2919 0.9380 +1232 2920 0.8750 +1232 2921 0.7900 +1232 3035 0.6850 +1232 3383 0.5310 +1232 3458 0.7910 +1232 3459 0.5080 +1232 3552 0.6390 +1232 3553 0.7960 +1232 3558 0.5240 +1232 3562 0.7110 +1232 3563 0.4540 +1232 3565 0.8290 +1232 3566 0.4180 +1232 3567 0.7750 +1232 3568 0.8060 +1232 3569 0.7770 +1232 3576 0.9860 +1232 3577 0.9090 +1232 3578 0.5940 +1232 3579 0.7760 +1232 3586 0.6620 +1232 3587 0.5540 +1232 3588 0.5120 +1232 3596 0.7580 +1232 3597 0.4720 +1232 3600 0.4580 +1232 3603 0.6030 +1232 3605 0.5250 +1232 3606 0.5900 +1232 3627 0.9930 +1232 3684 0.6180 +1232 3687 0.5520 +1232 3689 0.4070 +1232 3700 0.7160 +1232 3717 0.7290 +1232 3718 0.7180 +1232 3815 0.4930 +1232 4283 0.9570 +1232 4318 0.6350 +1232 4345 0.4260 +1232 4677 0.7740 +1232 4689 0.4320 +1232 5169 0.4910 +1232 5196 0.8640 +1232 5197 0.7220 +1232 5473 0.8010 +1232 5788 0.5840 +1232 6010 0.4300 +1232 6011 0.6710 +1232 6036 0.5420 +1232 6037 0.5810 +1232 6346 0.9260 +1232 6347 0.9980 +1232 6348 0.9980 +1232 6351 0.9980 +1232 6354 0.9990 +1232 6355 0.9960 +1232 6356 0.9990 +1232 6357 0.9990 +1232 6358 0.7670 +1232 6359 0.9970 +1232 6360 0.8640 +1232 6361 0.9860 +1232 6362 0.8110 +1232 6363 0.9090 +1232 6364 0.9120 +1232 6366 0.8640 +1232 6367 0.9950 +1232 6368 0.7570 +1232 6369 0.9990 +1232 6370 0.8660 +1232 6372 0.8500 +1232 6373 0.9520 +1232 6374 0.8690 +1232 6375 0.8090 +1232 6376 0.9300 +1232 6387 0.9310 +1232 6402 0.4870 +1232 6404 0.6130 +1232 6622 0.4330 +1232 6714 0.7580 +1232 6774 0.4120 +1232 6778 0.4080 +1232 6846 0.7410 +1232 7040 0.4230 +1232 7097 0.4660 +1232 7099 0.5020 +1232 7124 0.6740 +1232 7132 0.5220 +1232 7305 0.4320 +1232 7412 0.5420 +1232 7852 0.8640 +1232 7941 0.4050 +1232 8174 0.5130 +1232 8288 0.6070 +1232 8742 0.4370 +1232 8744 0.4430 +1232 9034 0.8620 +1232 9092 0.4240 +1232 9547 0.7470 +1232 9560 0.7620 +1232 10344 0.9990 +1232 10392 0.4400 +1232 10563 0.8020 +1232 10663 0.7680 +1232 10803 0.7870 +1232 10850 0.9420 +1232 11251 0.5780 +1232 11314 0.5750 +1232 23438 0.4790 +1232 27177 0.4420 +1232 27181 0.6850 +1232 29851 0.4390 +1232 30009 0.4010 +1232 50943 0.5350 +1232 51131 0.5070 +1232 51554 0.4810 +1232 51752 0.5110 +1232 54331 0.8310 +1232 56477 0.9280 +1232 57007 0.5530 +1232 58191 0.8680 +1232 59340 0.4340 +1232 63940 0.4200 +1232 79731 0.7780 +1232 80332 0.4180 +1232 85480 0.4790 +1232 90865 0.4790 +1232 131890 0.6700 +1232 146433 0.4040 +1232 149233 0.5540 +1232 260429 0.4970 +1232 414062 0.9920 +1233 1234 0.5660 +1233 1235 0.5730 +1233 1236 0.5820 +1233 1237 0.6250 +1233 1420 0.4260 +1233 1493 0.5850 +1233 1524 0.5310 +1233 2770 0.6810 +1233 2771 0.6810 +1233 2773 0.6810 +1233 2776 0.9080 +1233 2826 0.5340 +1233 2833 0.5970 +1233 2868 0.6870 +1233 2869 0.6720 +1233 2870 0.6710 +1233 2919 0.6970 +1233 2920 0.6800 +1233 2921 0.6680 +1233 3458 0.4260 +1233 3558 0.4810 +1233 3575 0.4600 +1233 3576 0.7040 +1233 3577 0.5400 +1233 3579 0.5520 +1233 3627 0.7170 +1233 3717 0.6770 +1233 3718 0.6840 +1233 4283 0.7080 +1233 5133 0.4300 +1233 5196 0.6780 +1233 5197 0.6780 +1233 5473 0.6870 +1233 6011 0.6700 +1233 6346 0.6990 +1233 6347 0.9200 +1233 6348 0.7970 +1233 6351 0.7010 +1233 6354 0.6670 +1233 6355 0.7080 +1233 6356 0.6980 +1233 6357 0.6780 +1233 6359 0.6580 +1233 6360 0.6610 +1233 6361 0.9960 +1233 6362 0.6970 +1233 6363 0.6980 +1233 6364 0.7020 +1233 6366 0.7130 +1233 6367 0.9970 +1233 6369 0.6520 +1233 6370 0.6810 +1233 6372 0.6720 +1233 6373 0.7080 +1233 6374 0.6890 +1233 6375 0.6680 +1233 6376 0.6650 +1233 6387 0.8130 +1233 6714 0.5190 +1233 6846 0.6600 +1233 7852 0.5520 +1233 9337 0.4610 +1233 9547 0.6590 +1233 9560 0.6960 +1233 10344 0.6500 +1233 10563 0.7070 +1233 10663 0.5770 +1233 10803 0.6970 +1233 10850 0.8360 +1233 23019 0.4240 +1233 29851 0.4390 +1233 29899 0.4200 +1233 50943 0.4770 +1233 56477 0.6780 +1233 57007 0.5020 +1233 58191 0.6580 +1233 63940 0.4030 +1233 131890 0.6710 +1233 414062 0.6890 +1234 1235 0.8640 +1234 1236 0.9560 +1234 1237 0.8480 +1234 1238 0.6680 +1234 1240 0.5690 +1234 1401 0.4160 +1234 1420 0.8870 +1234 1435 0.6890 +1234 1436 0.7880 +1234 1437 0.7540 +1234 1440 0.4720 +1234 1493 0.6630 +1234 1520 0.4600 +1234 1524 0.8230 +1234 1536 0.4770 +1234 1636 0.4010 +1234 1667 0.4020 +1234 1668 0.4540 +1234 1669 0.4140 +1234 1672 0.4710 +1234 1673 0.4960 +1234 1803 0.4420 +1234 1880 0.5360 +1234 1901 0.4770 +1234 1915 0.4570 +1234 1956 0.5780 +1234 1958 0.5070 +1234 1977 0.4100 +1234 2028 0.9300 +1234 2086 0.5950 +1234 2207 0.4190 +1234 2209 0.5790 +1234 2212 0.6820 +1234 2213 0.7160 +1234 2268 0.4080 +1234 2316 0.7790 +1234 2335 0.6200 +1234 2357 0.7640 +1234 2359 0.5820 +1234 2532 0.6820 +1234 2581 0.4730 +1234 2597 0.4980 +1234 2625 0.4460 +1234 2767 0.9420 +1234 2770 0.9910 +1234 2771 0.9420 +1234 2773 0.9090 +1234 2776 0.9320 +1234 2782 0.9900 +1234 2783 0.9090 +1234 2784 0.9130 +1234 2785 0.9080 +1234 2786 0.9130 +1234 2787 0.9080 +1234 2788 0.9090 +1234 2790 0.9080 +1234 2791 0.9150 +1234 2792 0.9810 +1234 2793 0.9210 +1234 2813 0.4660 +1234 2826 0.8090 +1234 2828 0.4300 +1234 2829 0.4340 +1234 2833 0.9830 +1234 2868 0.6800 +1234 2869 0.6790 +1234 2870 0.6990 +1234 2919 0.9740 +1234 2920 0.9570 +1234 2921 0.8730 +1234 2999 0.5230 +1234 3001 0.6670 +1234 3002 0.8090 +1234 3003 0.7340 +1234 3035 0.7190 +1234 3043 0.5400 +1234 3055 0.4250 +1234 3105 0.4760 +1234 3106 0.7250 +1234 3107 0.4700 +1234 3122 0.6370 +1234 3123 0.5050 +1234 3133 0.4210 +1234 3308 0.7350 +1234 3320 0.4910 +1234 3326 0.4910 +1234 3383 0.6290 +1234 3385 0.5160 +1234 3394 0.5020 +1234 3439 0.6080 +1234 3440 0.7570 +1234 3456 0.7090 +1234 3458 0.9200 +1234 3479 0.4780 +1234 3480 0.4350 +1234 3552 0.5830 +1234 3553 0.8260 +1234 3554 0.4360 +1234 3557 0.6470 +1234 3558 0.7580 +1234 3559 0.5630 +1234 3560 0.5600 +1234 3561 0.5320 +1234 3562 0.4290 +1234 3563 0.5220 +1234 3565 0.7810 +1234 3567 0.7030 +1234 3569 0.8310 +1234 3570 0.4380 +1234 3574 0.5830 +1234 3575 0.7360 +1234 3576 0.9710 +1234 3577 0.8710 +1234 3579 0.9250 +1234 3586 0.8780 +1234 3587 0.7780 +1234 3588 0.5160 +1234 3594 0.4650 +1234 3595 0.4130 +1234 3596 0.6540 +1234 3597 0.5200 +1234 3600 0.6540 +1234 3603 0.8490 +1234 3605 0.7600 +1234 3606 0.7260 +1234 3620 0.5570 +1234 3627 0.9990 +1234 3635 0.4020 +1234 3659 0.4630 +1234 3661 0.4090 +1234 3662 0.4380 +1234 3665 0.4250 +1234 3676 0.6770 +1234 3682 0.5800 +1234 3683 0.5660 +1234 3684 0.8400 +1234 3687 0.7800 +1234 3688 0.6010 +1234 3689 0.6590 +1234 3695 0.4710 +1234 3700 0.9990 +1234 3716 0.6180 +1234 3717 0.8980 +1234 3718 0.7690 +1234 3804 0.4860 +1234 3820 0.6210 +1234 3821 0.4610 +1234 3824 0.6180 +1234 3902 0.7360 +1234 3916 0.4480 +1234 3937 0.6750 +1234 3965 0.4300 +1234 4000 0.4430 +1234 4049 0.4280 +1234 4057 0.5590 +1234 4065 0.4400 +1234 4254 0.5080 +1234 4261 0.4100 +1234 4283 0.9980 +1234 4285 0.4130 +1234 4318 0.5870 +1234 4340 0.4150 +1234 4353 0.4200 +1234 4360 0.5940 +1234 4481 0.4080 +1234 4524 0.4470 +1234 4599 0.4200 +1234 4677 0.6330 +1234 4684 0.5920 +1234 4790 0.5300 +1234 4818 0.4870 +1234 4852 0.4260 +1234 4988 0.6880 +1234 5004 0.4290 +1234 5005 0.5240 +1234 5045 0.4320 +1234 5133 0.5750 +1234 5175 0.5440 +1234 5196 0.9400 +1234 5197 0.7230 +1234 5241 0.4290 +1234 5341 0.4020 +1234 5473 0.9180 +1234 5478 0.4080 +1234 5480 0.4110 +1234 5551 0.6670 +1234 5724 0.5950 +1234 5747 0.4300 +1234 5788 0.8060 +1234 5919 0.5510 +1234 5970 0.5090 +1234 5996 0.4040 +1234 6010 0.4720 +1234 6011 0.6840 +1234 6346 0.9760 +1234 6347 0.9990 +1234 6348 0.9990 +1234 6351 0.9990 +1234 6354 0.9980 +1234 6355 0.9990 +1234 6356 0.9980 +1234 6357 0.9960 +1234 6358 0.9730 +1234 6359 0.8690 +1234 6360 0.9870 +1234 6361 0.9810 +1234 6362 0.9030 +1234 6363 0.9940 +1234 6364 0.9940 +1234 6366 0.9810 +1234 6367 0.9720 +1234 6368 0.6760 +1234 6369 0.8750 +1234 6370 0.9300 +1234 6372 0.8270 +1234 6373 0.9900 +1234 6374 0.8910 +1234 6375 0.9160 +1234 6376 0.9770 +1234 6387 0.9980 +1234 6401 0.6640 +1234 6402 0.8200 +1234 6403 0.5450 +1234 6404 0.8020 +1234 6426 0.5210 +1234 6504 0.4500 +1234 6531 0.4200 +1234 6614 0.5930 +1234 6688 0.4530 +1234 6714 0.6730 +1234 6772 0.7100 +1234 6774 0.8200 +1234 6775 0.4760 +1234 6777 0.5240 +1234 6846 0.8710 +1234 7040 0.5280 +1234 7096 0.5290 +1234 7097 0.6790 +1234 7098 0.5660 +1234 7099 0.7880 +1234 7100 0.4280 +1234 7113 0.5560 +1234 7124 0.8800 +1234 7132 0.6200 +1234 7133 0.6460 +1234 7293 0.5340 +1234 7297 0.5400 +1234 7305 0.6820 +1234 7412 0.5940 +1234 7514 0.4800 +1234 7535 0.4190 +1234 7837 0.4230 +1234 7850 0.4210 +1234 7852 0.9960 +1234 8320 0.5160 +1234 8459 0.4440 +1234 8698 0.5330 +1234 8743 0.4410 +1234 8784 0.4360 +1234 8809 0.4730 +1234 8832 0.4210 +1234 8834 0.4790 +1234 8862 0.5880 +1234 9034 0.7850 +1234 9308 0.5560 +1234 9332 0.7110 +1234 9437 0.4580 +1234 9450 0.4020 +1234 9547 0.7740 +1234 9560 0.9980 +1234 9939 0.5230 +1234 10004 0.4300 +1234 10105 0.9070 +1234 10135 0.5380 +1234 10219 0.5010 +1234 10261 0.4220 +1234 10268 0.4500 +1234 10288 0.4820 +1234 10332 0.4220 +1234 10344 0.8990 +1234 10365 0.5790 +1234 10462 0.4890 +1234 10563 0.9170 +1234 10578 0.4840 +1234 10653 0.4180 +1234 10663 0.9310 +1234 10666 0.4140 +1234 10673 0.5160 +1234 10681 0.9090 +1234 10803 0.8700 +1234 10850 0.8830 +1234 10859 0.4290 +1234 10875 0.4900 +1234 10955 0.5030 +1234 11168 0.4340 +1234 22914 0.5890 +1234 23438 0.5100 +1234 23534 0.5260 +1234 23586 0.4020 +1234 23765 0.5930 +1234 25939 0.6430 +1234 27036 0.4030 +1234 27087 0.5100 +1234 27180 0.4040 +1234 27202 0.4620 +1234 29126 0.6180 +1234 29851 0.6430 +1234 29899 0.4040 +1234 29909 0.4440 +1234 29949 0.4480 +1234 30009 0.7220 +1234 30816 0.9960 +1234 30817 0.4770 +1234 30835 0.7930 +1234 50489 0.4620 +1234 50615 0.4530 +1234 50616 0.5130 +1234 50856 0.6420 +1234 50943 0.7010 +1234 51284 0.6500 +1234 51311 0.7470 +1234 51554 0.5490 +1234 51744 0.4230 +1234 51764 0.9080 +1234 53829 0.4280 +1234 54106 0.5270 +1234 54209 0.4560 +1234 54331 0.9820 +1234 54776 0.4810 +1234 55970 0.9080 +1234 56253 0.5280 +1234 56477 0.6980 +1234 56833 0.4980 +1234 57007 0.7090 +1234 57121 0.4480 +1234 57705 0.4160 +1234 57823 0.4830 +1234 58191 0.9440 +1234 59272 0.5260 +1234 59345 0.9130 +1234 60489 0.7390 +1234 63940 0.4590 +1234 64083 0.5180 +1234 64127 0.4770 +1234 64581 0.4040 +1234 64805 0.4590 +1234 65258 0.4890 +1234 79731 0.6350 +1234 79902 0.8590 +1234 79966 0.7270 +1234 80380 0.4060 +1234 80381 0.4780 +1234 84868 0.6050 +1234 85363 0.7370 +1234 90865 0.4190 +1234 93978 0.5280 +1234 94235 0.9080 +1234 114548 0.4430 +1234 115362 0.5390 +1234 126006 0.4030 +1234 131890 0.6760 +1234 137902 0.4230 +1234 149233 0.5900 +1234 164668 0.4180 +1234 169355 0.4270 +1234 201633 0.5590 +1234 201799 0.4330 +1234 259197 0.4380 +1234 405754 0.5910 +1234 414062 0.9990 +1234 641371 0.4230 +1234 728358 0.4120 +1235 1236 0.8250 +1235 1237 0.8720 +1235 1238 0.6150 +1235 1380 0.6780 +1235 1420 0.8320 +1235 1437 0.6040 +1235 1493 0.6200 +1235 1524 0.7090 +1235 1667 0.4510 +1235 1672 0.9940 +1235 1673 0.9970 +1235 1901 0.6100 +1235 2064 0.4270 +1235 2625 0.6120 +1235 2770 0.6810 +1235 2771 0.6810 +1235 2773 0.6810 +1235 2776 0.9130 +1235 2782 0.8220 +1235 2826 0.7470 +1235 2829 0.4290 +1235 2833 0.8140 +1235 2868 0.6700 +1235 2869 0.6710 +1235 2870 0.6740 +1235 2919 0.8220 +1235 2920 0.7950 +1235 2921 0.7610 +1235 3001 0.4170 +1235 3002 0.5930 +1235 3003 0.4120 +1235 3045 0.5760 +1235 3320 0.4100 +1235 3383 0.6570 +1235 3439 0.4200 +1235 3458 0.8500 +1235 3552 0.5070 +1235 3553 0.7410 +1235 3554 0.6810 +1235 3558 0.7510 +1235 3559 0.6910 +1235 3560 0.4880 +1235 3563 0.6430 +1235 3565 0.7900 +1235 3567 0.6980 +1235 3569 0.6510 +1235 3570 0.4340 +1235 3574 0.5970 +1235 3575 0.8260 +1235 3576 0.9000 +1235 3577 0.7040 +1235 3578 0.5440 +1235 3579 0.7010 +1235 3581 0.5650 +1235 3586 0.7660 +1235 3594 0.6430 +1235 3595 0.4770 +1235 3596 0.6010 +1235 3600 0.5160 +1235 3605 0.8890 +1235 3606 0.5110 +1235 3620 0.5850 +1235 3627 0.9460 +1235 3662 0.5290 +1235 3663 0.5410 +1235 3672 0.4060 +1235 3676 0.4860 +1235 3682 0.6430 +1235 3683 0.6190 +1235 3684 0.5940 +1235 3687 0.6230 +1235 3689 0.5490 +1235 3695 0.4340 +1235 3717 0.7640 +1235 3718 0.7270 +1235 3782 0.4180 +1235 3815 0.4330 +1235 3820 0.8990 +1235 3821 0.4520 +1235 3824 0.4010 +1235 3902 0.4800 +1235 4049 0.4310 +1235 4050 0.4550 +1235 4094 0.4180 +1235 4283 0.9800 +1235 4312 0.5290 +1235 4318 0.5620 +1235 4340 0.5660 +1235 4684 0.7470 +1235 5133 0.4830 +1235 5196 0.7250 +1235 5197 0.6770 +1235 5450 0.5470 +1235 5473 0.7620 +1235 5551 0.5750 +1235 5788 0.6380 +1235 5896 0.4770 +1235 6011 0.6700 +1235 6095 0.4340 +1235 6097 0.7260 +1235 6346 0.9420 +1235 6347 0.9960 +1235 6348 0.9730 +1235 6351 0.9650 +1235 6354 0.8660 +1235 6355 0.8630 +1235 6356 0.7800 +1235 6357 0.7640 +1235 6359 0.7500 +1235 6360 0.8360 +1235 6361 0.9640 +1235 6362 0.8650 +1235 6363 0.9890 +1235 6364 0.9990 +1235 6366 0.9450 +1235 6367 0.9370 +1235 6368 0.8590 +1235 6369 0.8330 +1235 6370 0.9000 +1235 6372 0.7230 +1235 6373 0.8920 +1235 6374 0.8080 +1235 6375 0.7950 +1235 6376 0.8850 +1235 6387 0.9570 +1235 6402 0.6810 +1235 6403 0.5060 +1235 6404 0.5840 +1235 6714 0.5720 +1235 6772 0.4180 +1235 6774 0.5820 +1235 6775 0.4790 +1235 6846 0.7380 +1235 6932 0.4280 +1235 7040 0.4620 +1235 7096 0.7230 +1235 7097 0.4510 +1235 7099 0.6440 +1235 7100 0.5090 +1235 7124 0.6580 +1235 7292 0.4080 +1235 7293 0.5160 +1235 7297 0.5030 +1235 7412 0.6230 +1235 7704 0.4470 +1235 7852 0.7290 +1235 8174 0.4490 +1235 8320 0.5150 +1235 8600 0.4750 +1235 8635 0.6170 +1235 8639 0.4790 +1235 8784 0.4880 +1235 8809 0.7410 +1235 8995 0.4160 +1235 9235 0.4210 +1235 9308 0.4720 +1235 9332 0.4030 +1235 9436 0.5190 +1235 9437 0.6010 +1235 9547 0.8430 +1235 9560 0.7820 +1235 10004 0.5820 +1235 10219 0.5600 +1235 10344 0.8220 +1235 10538 0.4530 +1235 10563 0.9580 +1235 10663 0.7160 +1235 10673 0.4010 +1235 10803 0.7660 +1235 10850 0.9280 +1235 11116 0.7710 +1235 22914 0.4340 +1235 23308 0.4440 +1235 23569 0.4820 +1235 23765 0.5480 +1235 26191 0.4380 +1235 27033 0.4510 +1235 27087 0.4470 +1235 29121 0.5880 +1235 29126 0.4770 +1235 29851 0.7780 +1235 29899 0.4130 +1235 30009 0.7280 +1235 50489 0.4540 +1235 50615 0.5670 +1235 50616 0.7850 +1235 50943 0.7670 +1235 51554 0.4420 +1235 51561 0.5170 +1235 54331 0.8170 +1235 55801 0.5700 +1235 55975 0.4650 +1235 56477 0.6870 +1235 57007 0.5750 +1235 58191 0.9900 +1235 58985 0.4160 +1235 60468 0.5770 +1235 63940 0.4010 +1235 64127 0.5900 +1235 80381 0.4180 +1235 81793 0.5200 +1235 84636 0.4060 +1235 84868 0.4670 +1235 85480 0.4650 +1235 89857 0.4970 +1235 90865 0.4890 +1235 112744 0.7140 +1235 131890 0.6700 +1235 132014 0.5720 +1235 140596 0.5260 +1235 149233 0.8020 +1235 151888 0.6340 +1235 169355 0.5360 +1235 201633 0.4810 +1235 245928 0.5200 +1235 414062 0.7950 +1235 414325 0.9870 +1235 728358 0.5360 +1235 100133941 0.4220 +1235 100289462 0.8020 +1236 1237 0.8350 +1236 1238 0.8330 +1236 1241 0.4020 +1236 1271 0.4320 +1236 1380 0.6200 +1236 1420 0.6160 +1236 1435 0.4350 +1236 1436 0.5260 +1236 1437 0.6900 +1236 1440 0.4050 +1236 1493 0.7980 +1236 1524 0.7620 +1236 1794 0.5840 +1236 1803 0.4020 +1236 1880 0.5360 +1236 1901 0.7390 +1236 2000 0.4840 +1236 2086 0.5680 +1236 2205 0.4360 +1236 2209 0.5470 +1236 2212 0.5450 +1236 2213 0.6660 +1236 2268 0.5500 +1236 2308 0.4760 +1236 2322 0.4320 +1236 2323 0.5860 +1236 2335 0.6150 +1236 2357 0.4780 +1236 2359 0.4270 +1236 2597 0.4640 +1236 2625 0.6070 +1236 2770 0.7030 +1236 2771 0.7060 +1236 2773 0.6890 +1236 2776 0.9200 +1236 2826 0.8400 +1236 2829 0.4750 +1236 2833 0.7630 +1236 2868 0.7190 +1236 2869 0.7030 +1236 2870 0.7330 +1236 2919 0.8930 +1236 2920 0.8980 +1236 2921 0.9030 +1236 2999 0.5820 +1236 3001 0.6900 +1236 3002 0.8030 +1236 3003 0.7870 +1236 3105 0.6000 +1236 3106 0.4530 +1236 3113 0.4200 +1236 3119 0.5170 +1236 3122 0.5150 +1236 3123 0.4360 +1236 3133 0.4480 +1236 3383 0.7360 +1236 3394 0.5880 +1236 3398 0.4220 +1236 3399 0.4050 +1236 3439 0.5910 +1236 3456 0.4870 +1236 3458 0.8410 +1236 3552 0.5400 +1236 3553 0.8040 +1236 3558 0.7850 +1236 3559 0.7770 +1236 3560 0.7280 +1236 3561 0.6060 +1236 3563 0.7270 +1236 3565 0.7350 +1236 3566 0.4780 +1236 3567 0.5740 +1236 3569 0.8240 +1236 3570 0.4140 +1236 3574 0.7150 +1236 3575 0.9220 +1236 3576 0.9000 +1236 3577 0.7930 +1236 3578 0.4180 +1236 3579 0.7820 +1236 3586 0.7610 +1236 3587 0.5910 +1236 3594 0.6370 +1236 3596 0.6090 +1236 3600 0.6900 +1236 3601 0.4710 +1236 3603 0.4140 +1236 3605 0.7040 +1236 3606 0.5300 +1236 3620 0.5870 +1236 3627 0.9680 +1236 3659 0.4330 +1236 3662 0.6410 +1236 3665 0.6040 +1236 3672 0.4780 +1236 3676 0.8280 +1236 3682 0.7730 +1236 3683 0.7640 +1236 3684 0.7410 +1236 3687 0.7950 +1236 3689 0.7310 +1236 3695 0.5400 +1236 3702 0.6220 +1236 3717 0.7500 +1236 3718 0.7810 +1236 3738 0.4220 +1236 3782 0.5910 +1236 3802 0.4150 +1236 3820 0.8050 +1236 3821 0.6120 +1236 3822 0.4850 +1236 3824 0.5740 +1236 3902 0.7070 +1236 3916 0.6050 +1236 3965 0.4110 +1236 4049 0.8030 +1236 4050 0.8140 +1236 4055 0.4770 +1236 4065 0.6020 +1236 4068 0.4510 +1236 4261 0.4520 +1236 4283 0.9610 +1236 4288 0.4090 +1236 4318 0.7060 +1236 4360 0.7390 +1236 4599 0.4250 +1236 4684 0.7320 +1236 4790 0.5640 +1236 4792 0.6070 +1236 4818 0.6070 +1236 4843 0.5430 +1236 4907 0.4260 +1236 5125 0.4070 +1236 5133 0.6890 +1236 5154 0.4330 +1236 5175 0.6090 +1236 5196 0.7650 +1236 5197 0.6860 +1236 5266 0.4270 +1236 5468 0.5590 +1236 5473 0.8660 +1236 5551 0.7620 +1236 5732 0.4240 +1236 5734 0.6020 +1236 5743 0.5810 +1236 5781 0.5130 +1236 5788 0.8770 +1236 5896 0.5130 +1236 5919 0.5560 +1236 5971 0.4490 +1236 6011 0.6890 +1236 6097 0.4770 +1236 6275 0.4340 +1236 6346 0.8770 +1236 6347 0.9650 +1236 6348 0.9530 +1236 6351 0.9960 +1236 6354 0.8690 +1236 6355 0.8860 +1236 6356 0.8060 +1236 6357 0.8620 +1236 6359 0.7440 +1236 6360 0.7490 +1236 6361 0.9320 +1236 6362 0.8700 +1236 6363 0.9990 +1236 6364 0.9940 +1236 6366 0.9990 +1236 6367 0.9840 +1236 6368 0.6720 +1236 6369 0.8700 +1236 6370 0.9940 +1236 6372 0.7360 +1236 6373 0.9300 +1236 6374 0.8770 +1236 6375 0.9510 +1236 6376 0.9150 +1236 6382 0.4300 +1236 6387 0.9990 +1236 6401 0.6450 +1236 6402 0.9420 +1236 6403 0.5090 +1236 6404 0.5750 +1236 6490 0.4370 +1236 6504 0.6050 +1236 6614 0.4820 +1236 6693 0.4520 +1236 6696 0.5530 +1236 6714 0.7740 +1236 6772 0.5330 +1236 6774 0.5520 +1236 6775 0.6240 +1236 6776 0.5330 +1236 6777 0.5040 +1236 6778 0.4480 +1236 6846 0.8670 +1236 6850 0.4200 +1236 6932 0.6720 +1236 7040 0.5650 +1236 7056 0.5140 +1236 7070 0.4010 +1236 7096 0.4340 +1236 7097 0.5640 +1236 7098 0.4910 +1236 7099 0.6180 +1236 7124 0.7830 +1236 7128 0.4390 +1236 7133 0.6170 +1236 7185 0.4030 +1236 7292 0.5340 +1236 7293 0.7700 +1236 7305 0.4120 +1236 7345 0.6190 +1236 7412 0.5800 +1236 7424 0.6720 +1236 7535 0.6460 +1236 7832 0.4030 +1236 7852 0.9590 +1236 8174 0.5280 +1236 8320 0.6700 +1236 8549 0.4390 +1236 8600 0.4100 +1236 8639 0.5130 +1236 8698 0.5940 +1236 8744 0.4180 +1236 8764 0.4130 +1236 8784 0.6120 +1236 8809 0.4270 +1236 8837 0.4500 +1236 8879 0.4360 +1236 9034 0.7840 +1236 9159 0.4070 +1236 9214 0.5260 +1236 9308 0.8760 +1236 9332 0.7750 +1236 9436 0.4470 +1236 9437 0.5660 +1236 9547 0.7680 +1236 9560 0.8870 +1236 9595 0.4460 +1236 10004 0.7790 +1236 10219 0.7270 +1236 10225 0.6090 +1236 10288 0.4750 +1236 10320 0.4680 +1236 10344 0.7330 +1236 10365 0.8040 +1236 10538 0.5390 +1236 10563 0.9990 +1236 10578 0.5600 +1236 10630 0.4480 +1236 10663 0.8630 +1236 10666 0.4750 +1236 10673 0.5300 +1236 10803 0.8060 +1236 10850 0.9800 +1236 10859 0.5090 +1236 10894 0.6470 +1236 11006 0.4660 +1236 11126 0.5080 +1236 22807 0.4290 +1236 22914 0.6010 +1236 23075 0.4140 +1236 23308 0.5290 +1236 23547 0.4630 +1236 26999 0.4010 +1236 27074 0.5170 +1236 27087 0.7220 +1236 27163 0.4140 +1236 29121 0.5190 +1236 29126 0.6840 +1236 29851 0.8380 +1236 30009 0.8230 +1236 30816 0.5710 +1236 30835 0.6180 +1236 50489 0.5880 +1236 50615 0.6200 +1236 50616 0.5710 +1236 50943 0.8020 +1236 51176 0.5580 +1236 51284 0.5910 +1236 51311 0.4640 +1236 51554 0.9650 +1236 51561 0.4160 +1236 51696 0.4300 +1236 51744 0.5280 +1236 53637 0.4720 +1236 54106 0.7010 +1236 54209 0.5550 +1236 55509 0.5570 +1236 55540 0.4040 +1236 56477 0.6710 +1236 57007 0.5800 +1236 57211 0.5260 +1236 57823 0.4070 +1236 58191 0.9140 +1236 59067 0.4300 +1236 59272 0.4260 +1236 60468 0.4400 +1236 63940 0.4900 +1236 64127 0.4720 +1236 65258 0.5850 +1236 80142 0.4030 +1236 80380 0.5750 +1236 80381 0.6220 +1236 83737 0.4160 +1236 84684 0.4750 +1236 84824 0.4600 +1236 84868 0.7110 +1236 90865 0.4270 +1236 112464 0.4260 +1236 112744 0.4190 +1236 114836 0.5030 +1236 123803 0.7900 +1236 126006 0.4040 +1236 131890 0.6700 +1236 140685 0.5170 +1236 140885 0.5100 +1236 151888 0.6950 +1236 169355 0.4560 +1236 170482 0.5270 +1236 201633 0.6680 +1236 257101 0.5400 +1236 259197 0.5310 +1236 283420 0.5110 +1236 405754 0.5680 +1236 414062 0.8770 +1236 100133941 0.5530 +1236 100526664 0.5720 +1236 102723407 0.4180 +1237 1238 0.5800 +1237 1240 0.4890 +1237 1420 0.5630 +1237 1435 0.4290 +1237 1436 0.5000 +1237 1437 0.6440 +1237 1493 0.5960 +1237 1524 0.7090 +1237 1736 0.4510 +1237 2625 0.4760 +1237 2770 0.6870 +1237 2771 0.6810 +1237 2773 0.6810 +1237 2776 0.9100 +1237 2826 0.7550 +1237 2833 0.7360 +1237 2868 0.6700 +1237 2869 0.6700 +1237 2870 0.6800 +1237 2919 0.8660 +1237 2920 0.7730 +1237 2921 0.7560 +1237 3002 0.4580 +1237 3458 0.6470 +1237 3553 0.5610 +1237 3558 0.5120 +1237 3559 0.4750 +1237 3565 0.5350 +1237 3567 0.4530 +1237 3569 0.5380 +1237 3575 0.4360 +1237 3576 0.8600 +1237 3577 0.5910 +1237 3579 0.7040 +1237 3586 0.7280 +1237 3595 0.5320 +1237 3596 0.4880 +1237 3600 0.4200 +1237 3605 0.4820 +1237 3627 0.8180 +1237 3662 0.4330 +1237 3682 0.5090 +1237 3684 0.4740 +1237 3687 0.4460 +1237 3700 0.4910 +1237 3717 0.8130 +1237 3718 0.6960 +1237 3902 0.5400 +1237 4049 0.6350 +1237 4277 0.6800 +1237 4283 0.8270 +1237 4318 0.4010 +1237 4345 0.4210 +1237 5133 0.4450 +1237 5196 0.7170 +1237 5197 0.6700 +1237 5473 0.7480 +1237 5788 0.4570 +1237 5919 0.6000 +1237 6011 0.6700 +1237 6346 0.9990 +1237 6347 0.9250 +1237 6348 0.8970 +1237 6351 0.9830 +1237 6354 0.8610 +1237 6355 0.9780 +1237 6356 0.8960 +1237 6357 0.7940 +1237 6359 0.7230 +1237 6360 0.9770 +1237 6361 0.9980 +1237 6362 0.9970 +1237 6363 0.9240 +1237 6364 0.9490 +1237 6366 0.9070 +1237 6367 0.9950 +1237 6368 0.4820 +1237 6369 0.8500 +1237 6370 0.9100 +1237 6372 0.7400 +1237 6373 0.8130 +1237 6374 0.7660 +1237 6375 0.8080 +1237 6376 0.8460 +1237 6387 0.8580 +1237 6402 0.6360 +1237 6714 0.5380 +1237 6775 0.4350 +1237 6776 0.6460 +1237 6777 0.6930 +1237 6778 0.4020 +1237 6783 0.7120 +1237 6846 0.7400 +1237 7015 0.8800 +1237 7040 0.4400 +1237 7124 0.5550 +1237 7293 0.4550 +1237 7412 0.4200 +1237 7852 0.7290 +1237 8744 0.4650 +1237 8784 0.4630 +1237 9034 0.8090 +1237 9332 0.4810 +1237 9547 0.8270 +1237 9560 0.8660 +1237 10344 0.7780 +1237 10563 0.9050 +1237 10663 0.7250 +1237 10803 0.7430 +1237 10850 0.8700 +1237 10859 0.4970 +1237 10870 0.6490 +1237 11326 0.5250 +1237 22914 0.6840 +1237 24142 0.4100 +1237 29851 0.5620 +1237 30009 0.5010 +1237 50616 0.4130 +1237 50943 0.6820 +1237 51338 0.5710 +1237 51554 0.4750 +1237 55135 0.5320 +1237 56477 0.7490 +1237 57007 0.5360 +1237 58191 0.7770 +1237 63940 0.4130 +1237 79465 0.7170 +1237 80328 0.7230 +1237 80329 0.7250 +1237 83394 0.5590 +1237 84868 0.5040 +1237 131890 0.6710 +1237 143903 0.4460 +1237 201633 0.4650 +1237 414062 0.7680 +1238 1269 0.4360 +1238 1420 0.7270 +1238 1437 0.4450 +1238 1493 0.5140 +1238 1524 0.4380 +1238 1737 0.4310 +1238 1803 0.5430 +1238 1901 0.6200 +1238 1902 0.4370 +1238 2532 0.7130 +1238 2581 0.4260 +1238 2625 0.4730 +1238 2829 0.4400 +1238 2833 0.5180 +1238 2841 0.4140 +1238 2919 0.4540 +1238 3002 0.4820 +1238 3003 0.4360 +1238 3351 0.4240 +1238 3383 0.4160 +1238 3385 0.4960 +1238 3394 0.5140 +1238 3439 0.4820 +1238 3456 0.4960 +1238 3458 0.6230 +1238 3459 0.4010 +1238 3476 0.5760 +1238 3553 0.4810 +1238 3558 0.5670 +1238 3559 0.5360 +1238 3565 0.5450 +1238 3567 0.4760 +1238 3569 0.5270 +1238 3574 0.4760 +1238 3575 0.5800 +1238 3576 0.6750 +1238 3577 0.4770 +1238 3579 0.4510 +1238 3586 0.5950 +1238 3596 0.5060 +1238 3600 0.4810 +1238 3603 0.4340 +1238 3605 0.6090 +1238 3606 0.4080 +1238 3620 0.4060 +1238 3627 0.7230 +1238 3676 0.6470 +1238 3682 0.7200 +1238 3684 0.5710 +1238 3687 0.5830 +1238 3688 0.5290 +1238 3695 0.5450 +1238 3820 0.4790 +1238 3902 0.4280 +1238 4145 0.4160 +1238 4254 0.4320 +1238 4283 0.7020 +1238 4352 0.4030 +1238 4684 0.6120 +1238 5551 0.4180 +1238 5788 0.5780 +1238 5896 0.4750 +1238 6097 0.4420 +1238 6346 0.8090 +1238 6347 0.9850 +1238 6348 0.9820 +1238 6351 0.9300 +1238 6354 0.9490 +1238 6355 0.9220 +1238 6356 0.7950 +1238 6357 0.8930 +1238 6358 0.7130 +1238 6360 0.6020 +1238 6361 0.9900 +1238 6362 0.5200 +1238 6363 0.9650 +1238 6364 0.8140 +1238 6366 0.9920 +1238 6367 0.9770 +1238 6369 0.5600 +1238 6370 0.9990 +1238 6373 0.6720 +1238 6374 0.5300 +1238 6375 0.6210 +1238 6376 0.4410 +1238 6387 0.9000 +1238 6401 0.6420 +1238 6402 0.7530 +1238 6403 0.6610 +1238 6404 0.6730 +1238 6504 0.5040 +1238 6689 0.4910 +1238 6993 0.5430 +1238 7040 0.5760 +1238 7124 0.5480 +1238 7412 0.7850 +1238 7852 0.6430 +1238 8174 0.9960 +1238 8639 0.4420 +1238 8805 0.4190 +1238 8854 0.4480 +1238 9034 0.6970 +1238 9547 0.4180 +1238 10219 0.4350 +1238 10344 0.4990 +1238 10365 0.5380 +1238 10563 0.6850 +1238 10663 0.4180 +1238 10803 0.4060 +1238 10850 0.9980 +1238 23705 0.4100 +1238 29126 0.4450 +1238 29851 0.4830 +1238 30009 0.5430 +1238 50616 0.5910 +1238 50943 0.6660 +1238 54585 0.6040 +1238 54716 0.5860 +1238 56477 0.8650 +1238 58191 0.6420 +1238 59272 0.5290 +1238 79443 0.5710 +1238 85480 0.4160 +1238 414062 0.8820 +1240 1241 0.6040 +1240 1524 0.4710 +1240 2671 0.6680 +1240 2775 0.5030 +1240 2833 0.4310 +1240 2841 0.5040 +1240 2854 0.4730 +1240 2861 0.5660 +1240 3117 0.5910 +1240 3118 0.6100 +1240 3123 0.5180 +1240 3553 0.4880 +1240 3569 0.4490 +1240 3684 0.4100 +1240 4283 0.4470 +1240 4481 0.5160 +1240 4818 0.4690 +1240 5175 0.4960 +1240 5699 0.4350 +1240 5728 0.6970 +1240 5919 0.9990 +1240 6347 0.4180 +1240 6363 0.6370 +1240 7097 0.4800 +1240 7099 0.4250 +1240 7124 0.4740 +1240 8862 0.5110 +1240 9034 0.6400 +1240 9332 0.4480 +1240 9370 0.6310 +1240 10135 0.7490 +1240 10663 0.4920 +1240 11314 0.4040 +1240 51094 0.5750 +1240 51439 0.4120 +1240 56729 0.6130 +1240 59352 0.4330 +1240 64420 0.4310 +1240 79602 0.5820 +1240 80381 0.4670 +1240 84666 0.5940 +1240 84941 0.7510 +1240 91937 0.4380 +1240 115350 0.4520 +1240 338557 0.5280 +1241 1536 0.4290 +1241 1903 0.4420 +1241 2358 0.4740 +1241 2671 0.4010 +1241 2770 0.9090 +1241 2775 0.5450 +1241 2776 0.5550 +1241 2782 0.9090 +1241 2854 0.5310 +1241 2861 0.4160 +1241 2869 0.7170 +1241 2870 0.5740 +1241 2919 0.6110 +1241 3551 0.4170 +1241 3553 0.4460 +1241 3554 0.4770 +1241 3569 0.4010 +1241 3576 0.7200 +1241 4015 0.4100 +1241 4048 0.8420 +1241 4056 0.6360 +1241 5321 0.4220 +1241 5330 0.5800 +1241 5331 0.5600 +1241 5465 0.4630 +1241 5731 0.4180 +1241 5733 0.6230 +1241 5734 0.4750 +1241 5919 0.8410 +1241 6319 0.4490 +1241 6915 0.5240 +1241 7100 0.5260 +1241 7124 0.4340 +1241 7204 0.4990 +1241 7465 0.4590 +1241 7837 0.4280 +1241 8310 0.4240 +1241 8997 0.4990 +1241 10161 0.4120 +1241 10392 0.4260 +1241 10800 0.6970 +1241 11345 0.4180 +1241 22806 0.5020 +1241 23236 0.5390 +1241 25970 0.4300 +1241 54331 0.8160 +1241 56413 0.9550 +1241 57105 0.5590 +1241 59352 0.4140 +1241 84941 0.7320 +1241 115557 0.4990 +1241 137902 0.4300 +1244 1317 0.5020 +1244 1373 0.4040 +1244 1407 0.8070 +1244 1543 0.5350 +1244 1544 0.5660 +1244 1548 0.4710 +1244 1551 0.4690 +1244 1555 0.6250 +1244 1557 0.6150 +1244 1558 0.6210 +1244 1559 0.6220 +1244 1565 0.6100 +1244 1571 0.4800 +1244 1576 0.7540 +1244 1577 0.7080 +1244 1581 0.6370 +1244 1582 0.5880 +1244 1593 0.4830 +1244 1803 0.7080 +1244 1806 0.4710 +1244 1811 0.4430 +1244 2052 0.4990 +1244 2067 0.4330 +1244 2155 0.5200 +1244 2172 0.4110 +1244 2327 0.4360 +1244 2330 0.4410 +1244 2597 0.4150 +1244 2677 0.4200 +1244 2875 0.4510 +1244 2938 0.4560 +1244 2944 0.4860 +1244 2950 0.6990 +1244 3156 0.4040 +1244 3172 0.4800 +1244 3308 0.4050 +1244 4524 0.4560 +1244 5174 0.7980 +1244 5205 0.7590 +1244 5243 0.5860 +1244 5244 0.7150 +1244 5962 0.8110 +1244 6059 0.4580 +1244 6513 0.4010 +1244 6514 0.5550 +1244 6550 0.5640 +1244 6554 0.7920 +1244 6555 0.6370 +1244 6561 0.4180 +1244 6564 0.7170 +1244 6565 0.4510 +1244 6573 0.4960 +1244 6579 0.7520 +1244 6580 0.7100 +1244 6581 0.5560 +1244 6582 0.6370 +1244 6583 0.5420 +1244 6584 0.5730 +1244 6647 0.5450 +1244 6657 0.4910 +1244 6718 0.5780 +1244 6822 0.6040 +1244 6927 0.4320 +1244 7046 0.4110 +1244 7082 0.5160 +1244 7172 0.4560 +1244 7298 0.4360 +1244 7355 0.7280 +1244 7363 0.5760 +1244 7364 0.7980 +1244 7365 0.5620 +1244 7366 0.5710 +1244 7367 0.5370 +1244 7430 0.4610 +1244 8431 0.5790 +1244 8647 0.6730 +1244 8856 0.7300 +1244 9076 0.4520 +1244 9153 0.4780 +1244 9154 0.4130 +1244 9356 0.7380 +1244 9360 0.6260 +1244 9368 0.7720 +1244 9376 0.9130 +1244 9390 0.4320 +1244 9420 0.4170 +1244 9429 0.9790 +1244 9970 0.6260 +1244 9971 0.7200 +1244 10061 0.5090 +1244 10158 0.5200 +1244 10351 0.4530 +1244 10599 0.8420 +1244 10720 0.5490 +1244 10864 0.6690 +1244 11309 0.7190 +1244 27306 0.4700 +1244 28231 0.5250 +1244 28234 0.8170 +1244 51081 0.6770 +1244 51582 0.4370 +1244 53919 0.4810 +1244 54490 0.5390 +1244 54575 0.7250 +1244 54576 0.7460 +1244 54577 0.7400 +1244 54578 0.8440 +1244 54579 0.5310 +1244 54600 0.6730 +1244 54657 0.7340 +1244 54658 0.7500 +1244 54659 0.6030 +1244 55244 0.6490 +1244 55324 0.4120 +1244 55867 0.6230 +1244 56413 0.4160 +1244 56606 0.4110 +1244 57120 0.4780 +1244 64078 0.4600 +1244 64137 0.5000 +1244 64240 0.5070 +1244 64241 0.4420 +1244 65010 0.6790 +1244 79799 0.5430 +1244 81894 0.4260 +1244 84068 0.4190 +1244 85413 0.4390 +1244 113235 0.4030 +1244 114571 0.6020 +1244 116085 0.4320 +1244 123264 0.6190 +1244 135152 0.5290 +1244 146802 0.5860 +1244 200931 0.6700 +1244 204962 0.4520 +1244 340273 0.4570 +1244 353189 0.4300 +1244 574537 0.5140 +1244 100861540 0.4600 +1244 114483834 0.5090 +1258 1259 0.9990 +1258 1260 0.9990 +1258 1261 0.8350 +1258 1262 0.9990 +1258 1406 0.7590 +1258 2774 0.6150 +1258 2779 0.8750 +1258 2780 0.6290 +1258 2784 0.4770 +1258 2792 0.6960 +1258 2793 0.4530 +1258 2978 0.4340 +1258 2979 0.8650 +1258 2986 0.4970 +1258 3000 0.7760 +1258 3420 0.6970 +1258 3614 0.6440 +1258 3801 0.7150 +1258 4218 0.5730 +1258 4901 0.7110 +1258 4990 0.4270 +1258 5145 0.9320 +1258 5146 0.7430 +1258 5148 0.8790 +1258 5149 0.5970 +1258 5158 0.9060 +1258 5310 0.5530 +1258 5311 0.5670 +1258 5956 0.4110 +1258 5957 0.6140 +1258 5961 0.8340 +1258 5995 0.5350 +1258 6010 0.8990 +1258 6011 0.5420 +1258 6017 0.5920 +1258 6094 0.8510 +1258 6100 0.6900 +1258 6103 0.7710 +1258 6121 0.7860 +1258 6295 0.4520 +1258 6331 0.4090 +1258 6373 0.4060 +1258 6450 0.7730 +1258 6451 0.8340 +1258 7287 0.8070 +1258 7399 0.6230 +1258 7401 0.5140 +1258 7439 0.6880 +1258 8481 0.4220 +1258 8766 0.5560 +1258 8842 0.5330 +1258 9129 0.7120 +1258 9187 0.6870 +1258 9227 0.5100 +1258 9626 0.7820 +1258 9727 0.4990 +1258 10002 0.7400 +1258 10210 0.6740 +1258 10461 0.6470 +1258 10594 0.6740 +1258 10640 0.5310 +1258 11336 0.5220 +1258 23020 0.6440 +1258 23114 0.6480 +1258 23265 0.4990 +1258 23746 0.7730 +1258 24148 0.4070 +1258 25769 0.5270 +1258 25794 0.7560 +1258 26121 0.7450 +1258 50807 0.5790 +1258 50939 0.7730 +1258 51806 0.9610 +1258 54536 0.5340 +1258 54714 0.6800 +1258 55763 0.4990 +1258 55770 0.4990 +1258 55812 0.5300 +1258 55975 0.6270 +1258 57010 0.5210 +1258 57096 0.5830 +1258 57101 0.6760 +1258 57576 0.4140 +1258 60412 0.5260 +1258 64218 0.6220 +1258 79947 0.5500 +1258 80184 0.4650 +1258 84140 0.5950 +1258 84839 0.4960 +1258 91860 0.9610 +1258 92211 0.5300 +1258 92840 0.4210 +1258 94137 0.4710 +1258 117177 0.5840 +1258 130557 0.7380 +1258 131890 0.4610 +1258 145226 0.7730 +1258 149371 0.4990 +1258 157657 0.4810 +1258 163688 0.9610 +1258 167691 0.4880 +1258 169522 0.4640 +1258 343035 0.4630 +1258 344892 0.4510 +1258 346007 0.8100 +1258 375298 0.8250 +1258 388531 0.4950 +1258 388939 0.7860 +1258 768206 0.8110 +1259 1260 0.5660 +1259 1261 0.5890 +1259 1262 0.7590 +1259 1406 0.6930 +1259 2779 0.7810 +1259 2780 0.5650 +1259 2784 0.5270 +1259 2792 0.6420 +1259 2793 0.5940 +1259 2888 0.6670 +1259 2978 0.5010 +1259 2979 0.8830 +1259 2986 0.4980 +1259 3000 0.6360 +1259 3420 0.6910 +1259 3614 0.6540 +1259 3960 0.6510 +1259 4901 0.7100 +1259 5145 0.9290 +1259 5146 0.7030 +1259 5148 0.8980 +1259 5149 0.6860 +1259 5158 0.9310 +1259 5956 0.4530 +1259 5957 0.5920 +1259 5961 0.7790 +1259 5995 0.5090 +1259 6010 0.8000 +1259 6011 0.5220 +1259 6017 0.5980 +1259 6094 0.7830 +1259 6100 0.6970 +1259 6103 0.7300 +1259 6121 0.7270 +1259 6295 0.4340 +1259 7287 0.7790 +1259 7399 0.5710 +1259 7401 0.5140 +1259 7439 0.6280 +1259 8842 0.6240 +1259 9129 0.6670 +1259 9187 0.7730 +1259 9227 0.5170 +1259 9626 0.6950 +1259 10002 0.7410 +1259 10210 0.6780 +1259 10461 0.6370 +1259 10594 0.6740 +1259 11281 0.4440 +1259 23020 0.6550 +1259 23746 0.5210 +1259 25794 0.7280 +1259 26121 0.7060 +1259 50939 0.7400 +1259 51806 0.9250 +1259 54714 0.8780 +1259 55812 0.4470 +1259 55975 0.6340 +1259 57010 0.4640 +1259 57096 0.4850 +1259 64218 0.5930 +1259 79947 0.4480 +1259 84140 0.5050 +1259 91860 0.9250 +1259 92211 0.4530 +1259 93589 0.4440 +1259 94137 0.4050 +1259 130557 0.7080 +1259 131890 0.4660 +1259 145226 0.7570 +1259 152518 0.4930 +1259 157657 0.4460 +1259 163688 0.9250 +1259 169522 0.5140 +1259 343035 0.4130 +1259 346007 0.7910 +1259 375298 0.8000 +1259 388531 0.4750 +1259 388939 0.7900 +1259 768206 0.7740 +1260 1261 0.8980 +1260 1262 0.9980 +1260 2596 0.5310 +1260 2770 0.4860 +1260 2771 0.5270 +1260 2773 0.4790 +1260 2774 0.8410 +1260 2780 0.5280 +1260 2793 0.5470 +1260 3000 0.4150 +1260 3801 0.4380 +1260 4218 0.5040 +1260 4975 0.7740 +1260 4991 0.4310 +1260 4994 0.4480 +1260 5032 0.4080 +1260 5137 0.4720 +1260 5141 0.4060 +1260 5146 0.5770 +1260 5310 0.4370 +1260 5311 0.4830 +1260 6010 0.5940 +1260 6276 0.4200 +1260 6335 0.4120 +1260 7439 0.5550 +1260 8383 0.4190 +1260 8766 0.5010 +1260 9038 0.4710 +1260 9727 0.5050 +1260 10640 0.4990 +1260 10941 0.4910 +1260 11336 0.4990 +1260 23265 0.4990 +1260 26533 0.4060 +1260 50807 0.5050 +1260 51764 0.5080 +1260 51806 0.9580 +1260 54536 0.4990 +1260 54714 0.8680 +1260 54831 0.7210 +1260 55107 0.4140 +1260 55188 0.4010 +1260 55763 0.4990 +1260 55770 0.5060 +1260 55811 0.4150 +1260 57101 0.8760 +1260 57471 0.4040 +1260 60412 0.5150 +1260 79541 0.4330 +1260 81285 0.5600 +1260 83857 0.4060 +1260 84063 0.5880 +1260 84623 0.4770 +1260 91860 0.9580 +1260 117177 0.4990 +1260 127385 0.4730 +1260 132112 0.6730 +1260 134864 0.4010 +1260 143503 0.5440 +1260 144453 0.4270 +1260 149371 0.4990 +1260 161003 0.5140 +1260 163688 0.9580 +1260 266675 0.4270 +1260 319100 0.4990 +1260 344892 0.6510 +1260 393046 0.4520 +1260 402317 0.4020 +1260 574537 0.4380 +1260 692312 0.4070 +1261 1262 0.7400 +1261 1406 0.5800 +1261 1641 0.4550 +1261 2353 0.4290 +1261 2652 0.5480 +1261 2779 0.8770 +1261 2780 0.9820 +1261 2784 0.4780 +1261 2792 0.5750 +1261 2793 0.5490 +1261 2978 0.5610 +1261 2979 0.4840 +1261 2980 0.4720 +1261 2981 0.4860 +1261 2986 0.5390 +1261 3000 0.7590 +1261 4647 0.4040 +1261 4901 0.6450 +1261 5145 0.7000 +1261 5146 0.9760 +1261 5149 0.8330 +1261 5158 0.6850 +1261 5956 0.4150 +1261 5957 0.6100 +1261 5961 0.6070 +1261 6010 0.7330 +1261 6011 0.5490 +1261 6103 0.7250 +1261 6121 0.8740 +1261 6247 0.4700 +1261 6638 0.4090 +1261 7287 0.4100 +1261 7399 0.4570 +1261 7439 0.4810 +1261 9187 0.6030 +1261 9227 0.7630 +1261 9313 0.4280 +1261 9486 0.6710 +1261 10002 0.4700 +1261 10461 0.6690 +1261 22926 0.5900 +1261 23093 0.4160 +1261 23746 0.5810 +1261 26504 0.5610 +1261 54551 0.4310 +1261 54714 0.9990 +1261 54910 0.7450 +1261 57010 0.4720 +1261 57096 0.5750 +1261 57194 0.4040 +1261 80184 0.5170 +1261 92211 0.4700 +1261 92292 0.8120 +1261 94137 0.4050 +1261 94233 0.9420 +1261 131890 0.5530 +1261 145226 0.4570 +1261 169522 0.6180 +1261 199720 0.4570 +1261 221391 0.4230 +1261 346007 0.4540 +1261 388531 0.5240 +1262 2770 0.5010 +1262 2771 0.4950 +1262 2773 0.4930 +1262 2774 0.7370 +1262 2793 0.5010 +1262 3801 0.4790 +1262 4218 0.5040 +1262 4975 0.5180 +1262 5137 0.5410 +1262 5147 0.4470 +1262 5310 0.4260 +1262 5311 0.5310 +1262 6010 0.5160 +1262 8766 0.5010 +1262 9727 0.5050 +1262 10640 0.4990 +1262 11336 0.4990 +1262 23265 0.4990 +1262 50807 0.5050 +1262 51764 0.4370 +1262 51806 0.9690 +1262 54536 0.4990 +1262 54714 0.8640 +1262 55763 0.4990 +1262 55770 0.5060 +1262 57101 0.8060 +1262 60412 0.5150 +1262 65055 0.5290 +1262 79595 0.4690 +1262 91860 0.9690 +1262 117177 0.4990 +1262 120787 0.6010 +1262 120793 0.4390 +1262 132112 0.5950 +1262 149371 0.4990 +1262 161003 0.5060 +1262 163688 0.9690 +1262 196335 0.4940 +1262 255725 0.5410 +1262 338751 0.4670 +1262 340980 0.4400 +1262 344892 0.6710 +1262 347732 0.4960 +1262 390067 0.4230 +1262 390083 0.4820 +1262 402317 0.4100 +1263 1647 0.4150 +1263 1847 0.5680 +1263 1848 0.5240 +1263 3091 0.6260 +1263 3619 0.5920 +1263 3832 0.5630 +1263 4046 0.8390 +1263 4085 0.5860 +1263 4174 0.4620 +1263 4175 0.4760 +1263 4176 0.4240 +1263 5127 0.4150 +1263 5128 0.4560 +1263 5129 0.4290 +1263 5515 0.5180 +1263 5516 0.5180 +1263 5520 0.5760 +1263 5521 0.5750 +1263 5531 0.7630 +1263 5621 0.4040 +1263 5885 0.6580 +1263 5894 0.9050 +1263 6241 0.4420 +1263 6478 0.4110 +1263 6622 0.4290 +1263 6790 0.6400 +1263 6795 0.4970 +1263 7153 0.5970 +1263 7157 0.9240 +1263 7158 0.4190 +1263 7443 0.5410 +1263 7465 0.4680 +1263 8061 0.4440 +1263 8243 0.5910 +1263 8317 0.5270 +1263 8522 0.4320 +1263 8555 0.5530 +1263 8556 0.5800 +1263 8772 0.4500 +1263 8844 0.8360 +1263 8870 0.5570 +1263 8900 0.5850 +1263 8945 0.4410 +1263 9050 0.4760 +1263 9051 0.4760 +1263 9055 0.5420 +1263 9088 0.4300 +1263 9126 0.5530 +1263 9133 0.6230 +1263 9156 0.4480 +1263 9212 0.5160 +1263 9493 0.5400 +1263 9585 0.4350 +1263 9700 0.8580 +1263 9985 0.4860 +1263 10051 0.4420 +1263 10112 0.4410 +1263 10332 0.9000 +1263 10460 0.4510 +1263 10519 0.7520 +1263 10579 0.4050 +1263 10592 0.4230 +1263 10926 0.5510 +1263 11200 0.8140 +1263 11329 0.4030 +1263 22822 0.4150 +1263 27127 0.5800 +1263 27152 0.4870 +1263 28996 0.4020 +1263 29127 0.4490 +1263 30835 0.9000 +1263 50484 0.4260 +1263 51343 0.4900 +1263 54935 0.4770 +1263 55051 0.5780 +1263 55255 0.5770 +1263 65061 0.4240 +1263 79682 0.4060 +1263 79935 0.5770 +1263 80174 0.4930 +1263 81848 0.4380 +1263 85417 0.5770 +1263 166979 0.4890 +1263 286151 0.5190 +1263 494551 0.4210 +1263 642636 0.6410 +1264 1277 0.4950 +1264 1465 0.4610 +1264 1674 0.5830 +1264 2064 0.4240 +1264 2200 0.4300 +1264 2316 0.4010 +1264 2318 0.4550 +1264 2491 0.4100 +1264 2597 0.4390 +1264 2627 0.5160 +1264 3611 0.4110 +1264 3643 0.4870 +1264 3779 0.5400 +1264 4239 0.4410 +1264 4288 0.5700 +1264 4303 0.4030 +1264 4629 0.9680 +1264 4638 0.7030 +1264 4660 0.4030 +1264 4969 0.4900 +1264 5136 0.5040 +1264 5159 0.4980 +1264 5175 0.4680 +1264 5339 0.4010 +1264 5350 0.4820 +1264 5358 0.4150 +1264 5549 0.4870 +1264 5784 0.4680 +1264 6525 0.7990 +1264 6597 0.4050 +1264 6722 0.6830 +1264 6876 0.7810 +1264 7040 0.4570 +1264 7041 0.4140 +1264 7139 0.4170 +1264 7168 0.7920 +1264 7169 0.6340 +1264 7414 0.6400 +1264 7431 0.4030 +1264 7450 0.4800 +1264 10398 0.7710 +1264 10516 0.4200 +1264 22919 0.5520 +1264 22924 0.6210 +1264 23301 0.5080 +1264 23336 0.4040 +1264 25802 0.8120 +1264 25836 0.5050 +1264 25876 0.7880 +1264 28984 0.6580 +1264 30846 0.6580 +1264 51806 0.9470 +1264 57484 0.5110 +1264 79003 0.4320 +1264 79980 0.4380 +1264 80152 0.4850 +1264 80258 0.4170 +1264 89795 0.7030 +1264 89797 0.7250 +1264 91860 0.9420 +1264 93649 0.8400 +1264 133015 0.4430 +1264 135138 0.4430 +1264 147841 0.5980 +1264 151651 0.4560 +1264 163688 0.9420 +1264 171024 0.4780 +1264 197335 0.7790 +1264 203068 0.5270 +1265 1266 0.6700 +1265 2316 0.5600 +1265 2317 0.4010 +1265 2318 0.4570 +1265 3611 0.4010 +1265 3936 0.4010 +1265 4627 0.5330 +1265 4629 0.5150 +1265 6525 0.4430 +1265 6624 0.6810 +1265 6722 0.4950 +1265 6775 0.7500 +1265 7168 0.6840 +1265 7169 0.4520 +1265 7171 0.5070 +1265 7277 0.4050 +1265 7408 0.5240 +1265 7409 0.4420 +1265 7414 0.7110 +1265 7791 0.7590 +1265 7846 0.4200 +1265 9948 0.5410 +1265 10376 0.4290 +1265 10398 0.4980 +1265 26136 0.4380 +1265 51806 0.5920 +1265 84617 0.4020 +1265 84790 0.4170 +1265 91860 0.6870 +1265 93649 0.4540 +1265 133015 0.4430 +1265 135138 0.4430 +1265 151651 0.4560 +1265 163688 0.5750 +1265 197335 0.7790 +1265 203068 0.4210 +1266 1956 0.4840 +1266 2318 0.4370 +1266 4628 0.4120 +1266 4629 0.4250 +1266 5339 0.4100 +1266 5358 0.6380 +1266 6525 0.4080 +1266 7003 0.4660 +1266 7414 0.6440 +1266 8572 0.4670 +1266 11034 0.5240 +1266 29766 0.4620 +1266 51806 0.5640 +1266 57326 0.4110 +1266 57451 0.4040 +1266 84790 0.4440 +1266 91860 0.6080 +1266 133015 0.4440 +1266 135138 0.4430 +1266 140465 0.4070 +1266 151651 0.4560 +1266 163688 0.5410 +1266 197335 0.7790 +1267 1270 0.5070 +1267 1464 0.4820 +1267 1641 0.5530 +1267 2230 0.4200 +1267 2247 0.5290 +1267 2491 0.4190 +1267 2581 0.7580 +1267 2596 0.4220 +1267 2597 0.4180 +1267 2670 0.8830 +1267 2840 0.4850 +1267 3064 0.4520 +1267 3308 0.4400 +1267 4099 0.8780 +1267 4133 0.5640 +1267 4137 0.5280 +1267 4155 0.9070 +1267 4336 0.7410 +1267 4340 0.8350 +1267 4535 0.4950 +1267 4537 0.4760 +1267 4538 0.4960 +1267 4539 0.4730 +1267 4695 0.5240 +1267 4698 0.5270 +1267 4700 0.5370 +1267 4702 0.5100 +1267 4704 0.4290 +1267 4713 0.7050 +1267 4715 0.5010 +1267 4716 0.4900 +1267 4720 0.5280 +1267 4722 0.5100 +1267 4723 0.4890 +1267 4724 0.4870 +1267 4726 0.5420 +1267 4728 0.4890 +1267 4729 0.5090 +1267 4744 0.4530 +1267 4747 0.4480 +1267 4804 0.5890 +1267 4821 0.4860 +1267 4880 0.5730 +1267 4974 0.5930 +1267 5010 0.6830 +1267 5156 0.7010 +1267 5354 0.8470 +1267 5816 0.4100 +1267 6233 0.4160 +1267 6285 0.5620 +1267 6426 0.4050 +1267 6657 0.5600 +1267 6663 0.6530 +1267 6777 0.5710 +1267 7070 0.5130 +1267 7265 0.5430 +1267 7266 0.7680 +1267 7368 0.4770 +1267 7837 0.4710 +1267 8361 0.5040 +1267 8369 0.5060 +1267 8506 0.4900 +1267 8683 0.4030 +1267 9446 0.4200 +1267 10105 0.5030 +1267 10215 0.8350 +1267 10381 0.4410 +1267 10763 0.6890 +1267 10965 0.4420 +1267 11076 0.4250 +1267 23410 0.5840 +1267 29796 0.4450 +1267 51079 0.4790 +1267 51806 0.5140 +1267 55967 0.5240 +1267 57471 0.4650 +1267 65243 0.5110 +1267 83538 0.7480 +1267 84894 0.5050 +1267 91860 0.5040 +1267 93377 0.4280 +1267 112812 0.4200 +1267 116448 0.7440 +1267 119391 0.4150 +1267 120892 0.5230 +1267 137902 0.4670 +1267 146713 0.7190 +1267 163688 0.5180 +1267 338773 0.4580 +1267 388585 0.4050 +1267 641371 0.4900 +1268 1269 0.9810 +1268 1312 0.4630 +1268 1392 0.4390 +1268 1394 0.4450 +1268 1396 0.4300 +1268 1397 0.4290 +1268 1432 0.4210 +1268 1812 0.4620 +1268 1813 0.9900 +1268 1880 0.5350 +1268 2166 0.9720 +1268 2353 0.4320 +1268 2571 0.4760 +1268 2740 0.4650 +1268 2768 0.5910 +1268 2770 0.9950 +1268 2771 0.9930 +1268 2773 0.9330 +1268 2775 0.6050 +1268 2776 0.7490 +1268 2778 0.5140 +1268 2782 0.9430 +1268 2783 0.7250 +1268 2784 0.7480 +1268 2785 0.7210 +1268 2786 0.7050 +1268 2787 0.6780 +1268 2788 0.6960 +1268 2790 0.6780 +1268 2791 0.6780 +1268 2792 0.6850 +1268 2793 0.6850 +1268 2823 0.4870 +1268 2841 0.8160 +1268 2890 0.4560 +1268 2891 0.4300 +1268 2902 0.4130 +1268 2903 0.4430 +1268 2904 0.4710 +1268 2911 0.5040 +1268 2912 0.4530 +1268 2915 0.6240 +1268 3060 0.8150 +1268 3061 0.6930 +1268 3356 0.7600 +1268 3479 0.4140 +1268 3630 0.4880 +1268 3708 0.4540 +1268 3952 0.4500 +1268 4543 0.5190 +1268 4544 0.5080 +1268 4852 0.6760 +1268 4909 0.4260 +1268 4914 0.4320 +1268 4915 0.8220 +1268 4988 0.6320 +1268 5080 0.4130 +1268 5173 0.4770 +1268 5179 0.4140 +1268 5367 0.4860 +1268 5443 0.5140 +1268 5465 0.5140 +1268 5468 0.5130 +1268 5566 0.4620 +1268 5567 0.4760 +1268 5568 0.4620 +1268 5573 0.4330 +1268 5595 0.4050 +1268 5743 0.4380 +1268 5816 0.6050 +1268 5972 0.4220 +1268 6295 0.4520 +1268 6531 0.4820 +1268 6532 0.4890 +1268 6714 0.6090 +1268 6750 0.4590 +1268 6863 0.4480 +1268 7054 0.4470 +1268 7442 0.7810 +1268 8989 0.4830 +1268 9290 0.9830 +1268 9737 0.4040 +1268 10280 0.6030 +1268 10681 0.7280 +1268 11343 0.9410 +1268 22999 0.6020 +1268 23413 0.6200 +1268 25927 0.7520 +1268 26086 0.4080 +1268 26090 0.6050 +1268 27163 0.5170 +1268 27199 0.5500 +1268 29899 0.4380 +1268 51393 0.4690 +1268 51738 0.6540 +1268 51764 0.6930 +1268 51806 0.5720 +1268 54331 0.9400 +1268 55811 0.9110 +1268 55970 0.6860 +1268 56670 0.5220 +1268 57030 0.4380 +1268 57084 0.4400 +1268 57406 0.6790 +1268 59345 0.7250 +1268 63874 0.4300 +1268 79054 0.4090 +1268 83698 0.6510 +1268 84152 0.4170 +1268 91860 0.5710 +1268 94235 0.6780 +1268 126006 0.4290 +1268 140679 0.4680 +1268 158584 0.4180 +1268 163688 0.5710 +1268 196883 0.9070 +1268 221955 0.7050 +1268 222236 0.8000 +1268 246213 0.4360 +1268 338442 0.5170 +1269 1392 0.4450 +1269 1880 0.5760 +1269 2166 0.8860 +1269 2770 0.9090 +1269 2782 0.9210 +1269 2841 0.8230 +1269 4543 0.5350 +1269 4544 0.5510 +1269 5179 0.4010 +1269 5621 0.4130 +1269 6015 0.4370 +1269 6714 0.5450 +1269 7442 0.5990 +1269 8600 0.4280 +1269 9213 0.4680 +1269 9290 0.7930 +1269 9473 0.4630 +1269 10052 0.5260 +1269 11343 0.6050 +1269 26086 0.4080 +1269 27189 0.7040 +1269 27199 0.5250 +1269 29899 0.4380 +1269 29930 0.4480 +1269 54331 0.8310 +1269 56670 0.5180 +1269 57165 0.5570 +1269 63940 0.4030 +1269 126006 0.4470 +1269 149041 0.6890 +1269 151306 0.4200 +1269 221955 0.4830 +1269 222236 0.6180 +1269 338442 0.5100 +1269 340152 0.9100 +1269 386724 0.4180 +1269 100126572 0.8060 +1270 1271 0.9990 +1270 1439 0.6640 +1270 1440 0.9360 +1270 1441 0.7700 +1270 1442 0.9060 +1270 1443 0.9070 +1270 1489 0.8740 +1270 1950 0.7410 +1270 1956 0.7580 +1270 2056 0.9390 +1270 2057 0.7050 +1270 2246 0.4100 +1270 2247 0.8940 +1270 2248 0.5620 +1270 2249 0.5640 +1270 2250 0.5830 +1270 2251 0.5850 +1270 2252 0.5610 +1270 2253 0.5820 +1270 2254 0.5720 +1270 2255 0.5550 +1270 2258 0.7230 +1270 2581 0.4710 +1270 2592 0.4240 +1270 2596 0.6070 +1270 2597 0.4200 +1270 2668 0.9140 +1270 2670 0.7620 +1270 2674 0.6100 +1270 2688 0.9070 +1270 2689 0.9070 +1270 2690 0.6740 +1270 2752 0.4750 +1270 3082 0.4390 +1270 3084 0.4340 +1270 3454 0.6730 +1270 3455 0.6500 +1270 3458 0.4390 +1270 3459 0.7890 +1270 3479 0.7410 +1270 3552 0.4200 +1270 3553 0.5130 +1270 3559 0.6980 +1270 3560 0.6550 +1270 3561 0.6840 +1270 3563 0.6550 +1270 3566 0.6810 +1270 3568 0.6780 +1270 3569 0.8870 +1270 3570 0.9780 +1270 3572 0.9960 +1270 3575 0.6630 +1270 3581 0.6720 +1270 3586 0.4560 +1270 3587 0.6940 +1270 3588 0.6780 +1270 3589 0.9270 +1270 3590 0.8850 +1270 3594 0.7080 +1270 3595 0.7220 +1270 3597 0.6930 +1270 3598 0.7800 +1270 3630 0.5860 +1270 3670 0.4180 +1270 3716 0.6980 +1270 3717 0.7320 +1270 3952 0.9670 +1270 3953 0.8630 +1270 3976 0.9450 +1270 3977 0.9990 +1270 4099 0.4620 +1270 4133 0.4150 +1270 4155 0.6070 +1270 4160 0.4060 +1270 4352 0.6580 +1270 4790 0.4950 +1270 4803 0.8360 +1270 4804 0.4920 +1270 4843 0.4290 +1270 4852 0.6150 +1270 4902 0.6280 +1270 4908 0.8080 +1270 4909 0.7200 +1270 4914 0.7340 +1270 4915 0.7280 +1270 4922 0.4580 +1270 4974 0.4200 +1270 5008 0.8870 +1270 5080 0.4290 +1270 5154 0.4820 +1270 5156 0.8160 +1270 5159 0.7210 +1270 5617 0.9260 +1270 5618 0.6730 +1270 5623 0.4430 +1270 6010 0.4580 +1270 6121 0.4080 +1270 6272 0.6980 +1270 6285 0.5070 +1270 6469 0.7150 +1270 6507 0.4630 +1270 6608 0.4900 +1270 6663 0.5620 +1270 6772 0.4340 +1270 6774 0.8180 +1270 6778 0.4230 +1270 7040 0.5910 +1270 7054 0.4540 +1270 7066 0.9160 +1270 7124 0.4610 +1270 7297 0.6730 +1270 7837 0.6550 +1270 8817 0.5630 +1270 8822 0.5590 +1270 8823 0.5690 +1270 9021 0.5760 +1270 9048 0.4610 +1270 9180 0.9280 +1270 9241 0.4710 +1270 9244 0.8560 +1270 9466 0.9560 +1270 10215 0.5990 +1270 10401 0.4120 +1270 10763 0.6060 +1270 11009 0.4870 +1270 23529 0.9520 +1270 26281 0.5730 +1270 27006 0.5770 +1270 50615 0.6740 +1270 53832 0.6750 +1270 53833 0.6720 +1270 55801 0.4870 +1270 58985 0.6960 +1270 63973 0.4450 +1270 80829 0.7580 +1270 84894 0.4550 +1270 115861 0.4350 +1270 116379 0.6680 +1270 116448 0.6730 +1270 137902 0.6550 +1270 146713 0.4720 +1270 149233 0.6950 +1270 163702 0.6580 +1270 386653 0.5180 +1270 388585 0.5330 +1270 441549 0.5310 +1270 654231 0.5620 +1271 1437 0.6700 +1271 1440 0.6860 +1271 1442 0.6550 +1271 1443 0.6500 +1271 1489 0.9790 +1271 1950 0.7070 +1271 1956 0.4530 +1271 2056 0.6820 +1271 2358 0.5800 +1271 2592 0.5410 +1271 2668 0.6650 +1271 2674 0.4270 +1271 2688 0.6690 +1271 2689 0.6570 +1271 3439 0.6680 +1271 3440 0.6580 +1271 3441 0.6580 +1271 3442 0.6580 +1271 3443 0.6580 +1271 3444 0.6580 +1271 3445 0.6580 +1271 3446 0.6580 +1271 3447 0.6590 +1271 3448 0.6580 +1271 3449 0.6580 +1271 3451 0.6580 +1271 3452 0.6580 +1271 3456 0.6720 +1271 3458 0.6850 +1271 3467 0.6580 +1271 3479 0.4990 +1271 3558 0.6730 +1271 3562 0.6710 +1271 3565 0.6700 +1271 3567 0.6680 +1271 3569 0.9080 +1271 3570 0.9100 +1271 3572 0.9860 +1271 3574 0.6850 +1271 3578 0.6560 +1271 3586 0.6870 +1271 3589 0.9370 +1271 3590 0.8120 +1271 3592 0.6990 +1271 3593 0.7070 +1271 3596 0.6680 +1271 3600 0.6670 +1271 3716 0.7420 +1271 3717 0.7690 +1271 3718 0.6900 +1271 3952 0.8270 +1271 3953 0.5920 +1271 3976 0.9380 +1271 3977 0.9990 +1271 4799 0.7110 +1271 4803 0.6020 +1271 4804 0.5710 +1271 4826 0.4520 +1271 4852 0.4720 +1271 4908 0.5830 +1271 4909 0.6250 +1271 4915 0.6610 +1271 5008 0.8850 +1271 5154 0.6770 +1271 5155 0.6700 +1271 5595 0.4500 +1271 5617 0.6700 +1271 5781 0.4640 +1271 6456 0.4070 +1271 6653 0.4960 +1271 6774 0.6910 +1271 7066 0.6660 +1271 7297 0.8490 +1271 7837 0.6680 +1271 9180 0.7460 +1271 9244 0.8700 +1271 9466 0.9950 +1271 10316 0.4120 +1271 11006 0.4450 +1271 11009 0.6780 +1271 23529 0.9940 +1271 29949 0.6760 +1271 50604 0.6500 +1271 50616 0.6930 +1271 51533 0.4060 +1271 51561 0.6910 +1271 53342 0.6930 +1271 55970 0.4040 +1271 56832 0.6580 +1271 59067 0.6710 +1271 85480 0.6600 +1271 137902 0.6700 +1271 203259 0.4120 +1271 282616 0.6590 +1271 282617 0.6500 +1271 282618 0.6810 +1271 338376 0.6740 +1271 375323 0.4070 +1271 386653 0.5810 +1272 1804 0.4520 +1272 1837 0.5810 +1272 1840 0.7510 +1272 2335 0.5370 +1272 2697 0.4500 +1272 2891 0.4030 +1272 3059 0.5000 +1272 3708 0.4840 +1272 3747 0.4890 +1272 3897 0.9450 +1272 4155 0.6010 +1272 4162 0.7110 +1272 4218 0.5170 +1272 4645 0.4770 +1272 4851 0.7930 +1272 4853 0.8200 +1272 4854 0.4160 +1272 4897 0.9690 +1272 4969 0.4440 +1272 5067 0.4280 +1272 5098 0.4930 +1272 5354 0.4320 +1272 5420 0.6230 +1272 5621 0.6600 +1272 5663 0.4550 +1272 5664 0.4520 +1272 5764 0.4490 +1272 5787 0.8650 +1272 5789 0.4460 +1272 5793 0.6260 +1272 5803 0.9920 +1272 6323 0.4950 +1272 6328 0.6700 +1272 6616 0.4150 +1272 6645 0.6800 +1272 6900 0.6280 +1272 7082 0.6610 +1272 7143 0.4940 +1272 7476 0.4750 +1272 8120 0.4620 +1272 8443 0.6490 +1272 8506 0.9990 +1272 9211 0.4290 +1272 9368 0.5260 +1272 9378 0.4870 +1272 9379 0.4060 +1272 9794 0.4040 +1272 10211 0.6980 +1272 10752 0.4890 +1272 23114 0.9980 +1272 23220 0.5610 +1272 23385 0.4320 +1272 26047 0.7510 +1272 30816 0.4700 +1272 51107 0.4170 +1272 53942 0.4630 +1272 54536 0.4530 +1272 55851 0.4170 +1272 60484 0.6270 +1272 63827 0.5280 +1272 83464 0.4180 +1272 85445 0.4300 +1272 92359 0.5950 +1272 92737 0.5220 +1272 113878 0.5160 +1272 117177 0.4120 +1272 342035 0.6830 +1272 441478 0.4320 +1272 100133941 0.4030 +1277 1278 0.9990 +1277 1280 0.8670 +1277 1281 0.9990 +1277 1282 0.8270 +1277 1284 0.6980 +1277 1285 0.6350 +1277 1286 0.5110 +1277 1287 0.7980 +1277 1288 0.7110 +1277 1289 0.9940 +1277 1290 0.9950 +1277 1291 0.9690 +1277 1292 0.9540 +1277 1293 0.9740 +1277 1294 0.7900 +1277 1295 0.7650 +1277 1296 0.5920 +1277 1297 0.5400 +1277 1298 0.6800 +1277 1299 0.5130 +1277 1300 0.7810 +1277 1301 0.9650 +1277 1302 0.8680 +1277 1303 0.8360 +1277 1305 0.5450 +1277 1306 0.7130 +1277 1307 0.7560 +1277 1308 0.6580 +1277 1310 0.4800 +1277 1311 0.6360 +1277 1404 0.4050 +1277 1462 0.5850 +1277 1464 0.4470 +1277 1490 0.8760 +1277 1499 0.5890 +1277 1511 0.4040 +1277 1513 0.6510 +1277 1594 0.4240 +1277 1634 0.9230 +1277 1690 0.4440 +1277 1749 0.4730 +1277 1758 0.5960 +1277 1805 0.4290 +1277 1834 0.4300 +1277 1836 0.4500 +1277 1848 0.4390 +1277 1902 0.5010 +1277 1906 0.4210 +1277 1950 0.5640 +1277 1956 0.6550 +1277 1958 0.6230 +1277 2022 0.5000 +1277 2099 0.4430 +1277 2100 0.4440 +1277 2113 0.4840 +1277 2167 0.4560 +1277 2191 0.5730 +1277 2192 0.6940 +1277 2199 0.5530 +1277 2200 0.9290 +1277 2201 0.5320 +1277 2202 0.6380 +1277 2207 0.4060 +1277 2244 0.4200 +1277 2247 0.5800 +1277 2252 0.4410 +1277 2255 0.4080 +1277 2258 0.4540 +1277 2261 0.5590 +1277 2308 0.5190 +1277 2331 0.7920 +1277 2335 0.9740 +1277 2353 0.6690 +1277 2358 0.4400 +1277 2584 0.4970 +1277 2597 0.7400 +1277 2697 0.4560 +1277 2875 0.4860 +1277 2921 0.4740 +1277 3037 0.5050 +1277 3091 0.4590 +1277 3122 0.4380 +1277 3251 0.4510 +1277 3326 0.4690 +1277 3339 0.5340 +1277 3381 0.7130 +1277 3434 0.4530 +1277 3458 0.4070 +1277 3479 0.7140 +1277 3481 0.4560 +1277 3486 0.7500 +1277 3488 0.5260 +1277 3490 0.4170 +1277 3491 0.4630 +1277 3549 0.4330 +1277 3552 0.4160 +1277 3553 0.5960 +1277 3565 0.5550 +1277 3569 0.6300 +1277 3576 0.4080 +1277 3579 0.5020 +1277 3586 0.4240 +1277 3624 0.4460 +1277 3627 0.5750 +1277 3630 0.5310 +1277 3655 0.7710 +1277 3671 0.6770 +1277 3672 0.8790 +1277 3673 0.9830 +1277 3674 0.7180 +1277 3675 0.8480 +1277 3676 0.8300 +1277 3678 0.9440 +1277 3679 0.7500 +1277 3680 0.7040 +1277 3684 0.4140 +1277 3685 0.8740 +1277 3688 0.9840 +1277 3690 0.9320 +1277 3691 0.7560 +1277 3693 0.8590 +1277 3694 0.8510 +1277 3695 0.7080 +1277 3696 0.8320 +1277 3698 0.4140 +1277 3725 0.6670 +1277 3755 0.4030 +1277 3861 0.4040 +1277 3875 0.4240 +1277 3880 0.5250 +1277 3908 0.5080 +1277 3909 0.4380 +1277 3910 0.6120 +1277 3911 0.4440 +1277 3912 0.7340 +1277 3914 0.4210 +1277 3915 0.7700 +1277 3918 0.4420 +1277 3958 0.4220 +1277 4015 0.8080 +1277 4016 0.6890 +1277 4017 0.6120 +1277 4041 0.5320 +1277 4052 0.4990 +1277 4053 0.5430 +1277 4054 0.4600 +1277 4060 0.9810 +1277 4072 0.4440 +1277 4087 0.6590 +1277 4088 0.7730 +1277 4089 0.6870 +1277 4092 0.6870 +1277 4146 0.5030 +1277 4147 0.5050 +1277 4162 0.6020 +1277 4208 0.5840 +1277 4237 0.4210 +1277 4239 0.6820 +1277 4256 0.5520 +1277 4283 0.5230 +1277 4312 0.7670 +1277 4313 0.8280 +1277 4314 0.6780 +1277 4316 0.6650 +1277 4317 0.4280 +1277 4318 0.8400 +1277 4319 0.4530 +1277 4320 0.6920 +1277 4321 0.5230 +1277 4322 0.7020 +1277 4323 0.5530 +1277 4353 0.4720 +1277 4481 0.6050 +1277 4605 0.4560 +1277 4609 0.4020 +1277 4624 0.4190 +1277 4629 0.5420 +1277 4635 0.4300 +1277 4638 0.4600 +1277 4776 0.4300 +1277 4790 0.4230 +1277 4804 0.4820 +1277 4811 0.7390 +1277 4851 0.4060 +1277 4854 0.4760 +1277 4878 0.5920 +1277 4879 0.4160 +1277 4907 0.4790 +1277 4921 0.8560 +1277 4969 0.5280 +1277 4982 0.7290 +1277 5033 0.7540 +1277 5034 0.7630 +1277 5054 0.6430 +1277 5118 0.8130 +1277 5154 0.6000 +1277 5155 0.8640 +1277 5156 0.6840 +1277 5159 0.8310 +1277 5175 0.6240 +1277 5176 0.6020 +1277 5251 0.5230 +1277 5320 0.4850 +1277 5328 0.4110 +1277 5351 0.8180 +1277 5352 0.8260 +1277 5358 0.4400 +1277 5396 0.5980 +1277 5460 0.4420 +1277 5468 0.6040 +1277 5479 0.8930 +1277 5549 0.6000 +1277 5595 0.4530 +1277 5654 0.4400 +1277 5728 0.6310 +1277 5741 0.4800 +1277 5743 0.6260 +1277 5745 0.4800 +1277 5747 0.7540 +1277 5764 0.5270 +1277 5788 0.5840 +1277 5925 0.7660 +1277 5954 0.4030 +1277 6256 0.4050 +1277 6275 0.5530 +1277 6347 0.6040 +1277 6348 0.5740 +1277 6354 0.4470 +1277 6363 0.5500 +1277 6372 0.4840 +1277 6382 0.8150 +1277 6385 0.7450 +1277 6387 0.5990 +1277 6423 0.4830 +1277 6424 0.5340 +1277 6591 0.6610 +1277 6615 0.4930 +1277 6657 0.4260 +1277 6662 0.7150 +1277 6667 0.6340 +1277 6678 0.9680 +1277 6696 0.7470 +1277 6709 0.4270 +1277 6774 0.4320 +1277 6876 0.7850 +1277 6943 0.4240 +1277 7040 0.8020 +1277 7041 0.4210 +1277 7042 0.6060 +1277 7043 0.7190 +1277 7045 0.7160 +1277 7046 0.7210 +1277 7048 0.6670 +1277 7052 0.5100 +1277 7057 0.8960 +1277 7058 0.8280 +1277 7060 0.4770 +1277 7070 0.8070 +1277 7076 0.8420 +1277 7077 0.6200 +1277 7078 0.6840 +1277 7083 0.5190 +1277 7084 0.5260 +1277 7092 0.5640 +1277 7093 0.5150 +1277 7124 0.5980 +1277 7132 0.4810 +1277 7148 0.4640 +1277 7157 0.4720 +1277 7169 0.6330 +1277 7249 0.4330 +1277 7291 0.5090 +1277 7299 0.4360 +1277 7369 0.5000 +1277 7373 0.7830 +1277 7412 0.4410 +1277 7431 0.7780 +1277 7448 0.4220 +1277 7450 0.8770 +1277 7471 0.4500 +1277 7474 0.4830 +1277 7837 0.6360 +1277 7852 0.5930 +1277 8038 0.4460 +1277 8076 0.6760 +1277 8200 0.4900 +1277 8437 0.4800 +1277 8483 0.4610 +1277 8515 0.8290 +1277 8516 0.7650 +1277 8600 0.5970 +1277 8754 0.4910 +1277 8817 0.4160 +1277 8840 0.4770 +1277 8844 0.4510 +1277 8974 0.8630 +1277 8985 0.7100 +1277 9098 0.5370 +1277 9314 0.4090 +1277 9358 0.4330 +1277 9378 0.4080 +1277 9507 0.8120 +1277 9508 0.6670 +1277 9509 0.9360 +1277 9871 0.4030 +1277 10000 0.5660 +1277 10117 0.5160 +1277 10216 0.4080 +1277 10269 0.4200 +1277 10398 0.5170 +1277 10491 0.9710 +1277 10516 0.5580 +1277 10536 0.6160 +1277 10631 0.9030 +1277 11065 0.4260 +1277 11096 0.5500 +1277 11167 0.6580 +1277 11285 0.5470 +1277 22795 0.6430 +1277 22801 0.8880 +1277 22943 0.4990 +1277 23022 0.4670 +1277 23127 0.6480 +1277 23213 0.6210 +1277 25878 0.6490 +1277 25925 0.4610 +1277 26577 0.7030 +1277 26585 0.5120 +1277 27161 0.5160 +1277 30008 0.5190 +1277 50507 0.4100 +1277 50509 0.7990 +1277 50964 0.6340 +1277 51043 0.4900 +1277 51151 0.5070 +1277 51206 0.9430 +1277 51450 0.4320 +1277 54587 0.4170 +1277 54829 0.7190 +1277 55033 0.5380 +1277 55151 0.5420 +1277 55214 0.6210 +1277 56955 0.5470 +1277 57124 0.6620 +1277 57381 0.5250 +1277 57642 0.4970 +1277 57817 0.4240 +1277 58498 0.4220 +1277 60681 0.8040 +1277 64102 0.7740 +1277 64175 0.9450 +1277 64866 0.4400 +1277 79038 0.4350 +1277 79709 0.8270 +1277 79823 0.4220 +1277 79923 0.4410 +1277 80781 0.7240 +1277 81578 0.5430 +1277 84168 0.4380 +1277 84570 0.5150 +1277 84624 0.4440 +1277 85301 0.5580 +1277 90952 0.5470 +1277 90993 0.5870 +1277 91252 0.4830 +1277 91522 0.5160 +1277 91544 0.4250 +1277 115908 0.7950 +1277 117581 0.4470 +1277 121340 0.8800 +1277 131873 0.5390 +1277 136227 0.6280 +1277 137902 0.5500 +1277 140766 0.5860 +1277 151887 0.5110 +1277 169044 0.5150 +1277 171017 0.6320 +1277 221476 0.4200 +1277 255631 0.5140 +1277 283078 0.6020 +1277 283208 0.7890 +1277 284217 0.4520 +1277 340267 0.6370 +1277 375056 0.5810 +1277 387733 0.6030 +1277 401138 0.4330 +1277 642658 0.6780 +1277 728378 0.4920 +1278 1280 0.8830 +1278 1281 0.9990 +1278 1282 0.7570 +1278 1284 0.7860 +1278 1285 0.5470 +1278 1286 0.5190 +1278 1287 0.7890 +1278 1288 0.5760 +1278 1289 0.9890 +1278 1290 0.9980 +1278 1291 0.8750 +1278 1292 0.9080 +1278 1293 0.9680 +1278 1294 0.5340 +1278 1295 0.7710 +1278 1296 0.5740 +1278 1297 0.5520 +1278 1298 0.7250 +1278 1299 0.5230 +1278 1300 0.7550 +1278 1301 0.9920 +1278 1302 0.9530 +1278 1303 0.7930 +1278 1305 0.5550 +1278 1306 0.7020 +1278 1307 0.8220 +1278 1308 0.5430 +1278 1310 0.5040 +1278 1311 0.5510 +1278 1462 0.7560 +1278 1490 0.8350 +1278 1499 0.4290 +1278 1513 0.5940 +1278 1634 0.9300 +1278 1805 0.4140 +1278 1836 0.4170 +1278 1902 0.4430 +1278 1956 0.5910 +1278 1977 0.4160 +1278 2033 0.6070 +1278 2162 0.5230 +1278 2191 0.4460 +1278 2192 0.6320 +1278 2195 0.4680 +1278 2199 0.7130 +1278 2200 0.9650 +1278 2201 0.5160 +1278 2202 0.4270 +1278 2247 0.4440 +1278 2261 0.5080 +1278 2308 0.4340 +1278 2331 0.6950 +1278 2335 0.9820 +1278 2355 0.5040 +1278 2358 0.4500 +1278 2584 0.4120 +1278 2597 0.5890 +1278 2697 0.4760 +1278 2920 0.4250 +1278 2921 0.4440 +1278 3037 0.4400 +1278 3065 0.4090 +1278 3122 0.4400 +1278 3309 0.5210 +1278 3339 0.4500 +1278 3381 0.4990 +1278 3434 0.4450 +1278 3479 0.5270 +1278 3486 0.4680 +1278 3488 0.4940 +1278 3490 0.4870 +1278 3553 0.4470 +1278 3565 0.5430 +1278 3569 0.4900 +1278 3579 0.4770 +1278 3596 0.5390 +1278 3624 0.5990 +1278 3628 0.4180 +1278 3655 0.7510 +1278 3671 0.6230 +1278 3672 0.8550 +1278 3673 0.9730 +1278 3674 0.6900 +1278 3675 0.7770 +1278 3676 0.7300 +1278 3678 0.8690 +1278 3679 0.7270 +1278 3680 0.7050 +1278 3685 0.8890 +1278 3688 0.9880 +1278 3690 0.8840 +1278 3691 0.7390 +1278 3693 0.7910 +1278 3694 0.7500 +1278 3695 0.6950 +1278 3696 0.7230 +1278 3725 0.6210 +1278 3726 0.4330 +1278 3861 0.5650 +1278 3880 0.4090 +1278 3908 0.4900 +1278 3909 0.5200 +1278 3910 0.6140 +1278 3911 0.7610 +1278 3912 0.5990 +1278 3915 0.7010 +1278 4015 0.7880 +1278 4016 0.6380 +1278 4017 0.5160 +1278 4041 0.4070 +1278 4052 0.6060 +1278 4053 0.5260 +1278 4054 0.4370 +1278 4060 0.9990 +1278 4087 0.7030 +1278 4088 0.7990 +1278 4089 0.7150 +1278 4092 0.4880 +1278 4237 0.5090 +1278 4239 0.4680 +1278 4256 0.5320 +1278 4312 0.6590 +1278 4313 0.8530 +1278 4314 0.6800 +1278 4316 0.6130 +1278 4318 0.9040 +1278 4319 0.4380 +1278 4320 0.4100 +1278 4321 0.5160 +1278 4322 0.5530 +1278 4323 0.4950 +1278 4481 0.6130 +1278 4629 0.4510 +1278 4638 0.4620 +1278 4653 0.4100 +1278 4811 0.5330 +1278 4904 0.6030 +1278 4921 0.4770 +1278 4969 0.5570 +1278 4982 0.4060 +1278 5033 0.6910 +1278 5034 0.6620 +1278 5054 0.6940 +1278 5118 0.9630 +1278 5154 0.5810 +1278 5155 0.4870 +1278 5156 0.6650 +1278 5159 0.6290 +1278 5175 0.4820 +1278 5176 0.6690 +1278 5184 0.4640 +1278 5251 0.4190 +1278 5351 0.7770 +1278 5352 0.8170 +1278 5358 0.4740 +1278 5396 0.5410 +1278 5479 0.8760 +1278 5480 0.4980 +1278 5577 0.4020 +1278 5649 0.5000 +1278 5740 0.4350 +1278 5741 0.5950 +1278 5743 0.5800 +1278 5747 0.7270 +1278 5764 0.5280 +1278 5788 0.4160 +1278 5989 0.4220 +1278 5993 0.4670 +1278 6238 0.4040 +1278 6275 0.5090 +1278 6347 0.4730 +1278 6348 0.5200 +1278 6367 0.4550 +1278 6382 0.7150 +1278 6385 0.7130 +1278 6387 0.7270 +1278 6423 0.4690 +1278 6424 0.4050 +1278 6591 0.4100 +1278 6662 0.5350 +1278 6667 0.7030 +1278 6678 0.9590 +1278 6696 0.5700 +1278 6709 0.4450 +1278 6876 0.7440 +1278 7040 0.8040 +1278 7041 0.4440 +1278 7042 0.5140 +1278 7043 0.5750 +1278 7045 0.7380 +1278 7046 0.5110 +1278 7048 0.5180 +1278 7057 0.5900 +1278 7058 0.8580 +1278 7060 0.4560 +1278 7070 0.7340 +1278 7076 0.6710 +1278 7077 0.5550 +1278 7078 0.6620 +1278 7084 0.4920 +1278 7092 0.5990 +1278 7093 0.5160 +1278 7094 0.4140 +1278 7124 0.4670 +1278 7148 0.4630 +1278 7153 0.4760 +1278 7169 0.5630 +1278 7291 0.4320 +1278 7373 0.7880 +1278 7431 0.5740 +1278 7450 0.6590 +1278 7471 0.4500 +1278 7837 0.5440 +1278 8038 0.4280 +1278 8076 0.5060 +1278 8515 0.7240 +1278 8516 0.7470 +1278 8600 0.4800 +1278 8910 0.4840 +1278 8974 0.6790 +1278 8985 0.6810 +1278 8999 0.4210 +1278 9358 0.4150 +1278 9370 0.4770 +1278 9507 0.8070 +1278 9508 0.6060 +1278 9509 0.9460 +1278 9839 0.6370 +1278 9871 0.4460 +1278 10398 0.4410 +1278 10469 0.4100 +1278 10491 0.9640 +1278 10516 0.7050 +1278 10536 0.5840 +1278 10537 0.4590 +1278 10631 0.9180 +1278 10874 0.4020 +1278 11065 0.4760 +1278 11167 0.6330 +1278 11285 0.5760 +1278 22795 0.5360 +1278 22801 0.9270 +1278 23022 0.4110 +1278 23026 0.4010 +1278 23127 0.5750 +1278 23213 0.5870 +1278 25878 0.5790 +1278 26002 0.4430 +1278 26284 0.4440 +1278 26577 0.6380 +1278 26998 0.5300 +1278 30008 0.5590 +1278 50509 0.9300 +1278 50964 0.5410 +1278 51206 0.9080 +1278 51226 0.4540 +1278 51339 0.4390 +1278 51450 0.4140 +1278 54829 0.7140 +1278 55033 0.4340 +1278 55151 0.5820 +1278 55214 0.5990 +1278 57124 0.6860 +1278 57642 0.5170 +1278 60681 0.8710 +1278 64102 0.4840 +1278 64175 0.9450 +1278 79709 0.7570 +1278 79783 0.4430 +1278 79823 0.4590 +1278 80333 0.4360 +1278 80781 0.5750 +1278 81031 0.4550 +1278 81578 0.5810 +1278 81792 0.4040 +1278 83942 0.6430 +1278 84168 0.4210 +1278 84570 0.5320 +1278 84624 0.4050 +1278 85301 0.5220 +1278 90993 0.5370 +1278 91252 0.5810 +1278 91522 0.5370 +1278 115908 0.6840 +1278 121340 0.7170 +1278 127435 0.5250 +1278 131873 0.5390 +1278 136227 0.6750 +1278 136647 0.4240 +1278 137902 0.4170 +1278 140766 0.6210 +1278 151887 0.5390 +1278 169044 0.5580 +1278 171017 0.5030 +1278 255631 0.4910 +1278 283078 0.4140 +1278 283208 0.5910 +1278 340267 0.5860 +1278 387733 0.6250 +1280 1281 0.8640 +1280 1282 0.6590 +1280 1284 0.6600 +1280 1285 0.5130 +1280 1286 0.5080 +1280 1287 0.6930 +1280 1288 0.5260 +1280 1289 0.8610 +1280 1290 0.8780 +1280 1291 0.6080 +1280 1292 0.6060 +1280 1293 0.7730 +1280 1294 0.6510 +1280 1295 0.5930 +1280 1296 0.7950 +1280 1297 0.9180 +1280 1298 0.7350 +1280 1299 0.7260 +1280 1300 0.6640 +1280 1301 0.9760 +1280 1302 0.9650 +1280 1303 0.5250 +1280 1305 0.5180 +1280 1306 0.4820 +1280 1307 0.7570 +1280 1308 0.5080 +1280 1310 0.4830 +1280 1311 0.7270 +1280 1404 0.7550 +1280 1462 0.6290 +1280 1490 0.4020 +1280 1499 0.4800 +1280 1634 0.6020 +1280 1690 0.6990 +1280 1836 0.6510 +1280 1990 0.4010 +1280 2022 0.4740 +1280 2138 0.4620 +1280 2200 0.5020 +1280 2201 0.4350 +1280 2247 0.4770 +1280 2261 0.7750 +1280 2331 0.5560 +1280 2335 0.4560 +1280 2487 0.4440 +1280 2597 0.6120 +1280 2624 0.4150 +1280 3112 0.4680 +1280 3115 0.4680 +1280 3119 0.6730 +1280 3120 0.5190 +1280 3122 0.7970 +1280 3127 0.7990 +1280 3224 0.4180 +1280 3235 0.4470 +1280 3236 0.4420 +1280 3339 0.4590 +1280 3381 0.6070 +1280 3479 0.5180 +1280 3549 0.7090 +1280 3553 0.5960 +1280 3569 0.4870 +1280 3630 0.4220 +1280 3655 0.7130 +1280 3672 0.8450 +1280 3673 0.8540 +1280 3674 0.8600 +1280 3675 0.7440 +1280 3676 0.6980 +1280 3678 0.7340 +1280 3679 0.6860 +1280 3680 0.7020 +1280 3685 0.7220 +1280 3688 0.7910 +1280 3690 0.7090 +1280 3691 0.7160 +1280 3693 0.6960 +1280 3694 0.7180 +1280 3695 0.6720 +1280 3696 0.6990 +1280 3769 0.4560 +1280 4060 0.8430 +1280 4088 0.4180 +1280 4146 0.7410 +1280 4148 0.5810 +1280 4312 0.4970 +1280 4313 0.5300 +1280 4314 0.6800 +1280 4318 0.5870 +1280 4322 0.8620 +1280 4784 0.4160 +1280 4880 0.5960 +1280 4907 0.4420 +1280 4921 0.5770 +1280 5033 0.5800 +1280 5034 0.5420 +1280 5075 0.4290 +1280 5118 0.5570 +1280 5351 0.7160 +1280 5352 0.6250 +1280 5468 0.4650 +1280 5479 0.5790 +1280 5549 0.5610 +1280 5593 0.5830 +1280 5609 0.4010 +1280 5744 0.7450 +1280 5745 0.5390 +1280 5747 0.6990 +1280 6382 0.7830 +1280 6385 0.7000 +1280 6660 0.8450 +1280 6662 0.9440 +1280 6663 0.5770 +1280 6678 0.4950 +1280 6696 0.5690 +1280 6736 0.5870 +1280 6975 0.4850 +1280 7040 0.8450 +1280 7043 0.6200 +1280 7057 0.5260 +1280 7060 0.4090 +1280 7070 0.4480 +1280 7076 0.4070 +1280 7092 0.4670 +1280 7093 0.4370 +1280 7124 0.4630 +1280 7130 0.4680 +1280 7132 0.4170 +1280 7373 0.5650 +1280 7476 0.4450 +1280 7837 0.4040 +1280 8190 0.4010 +1280 8200 0.6200 +1280 8515 0.7570 +1280 8516 0.7060 +1280 8600 0.4130 +1280 8785 0.4340 +1280 8974 0.5280 +1280 8985 0.6120 +1280 9321 0.6760 +1280 9507 0.7270 +1280 9508 0.8250 +1280 9509 0.6310 +1280 10216 0.5940 +1280 10491 0.6520 +1280 10536 0.5060 +1280 10763 0.5510 +1280 10882 0.4020 +1280 11061 0.6150 +1280 11096 0.8070 +1280 11167 0.5460 +1280 22801 0.7400 +1280 23127 0.7980 +1280 23143 0.4140 +1280 26577 0.4880 +1280 50509 0.7720 +1280 51206 0.9140 +1280 54829 0.6800 +1280 55214 0.6080 +1280 55553 0.8280 +1280 57642 0.4890 +1280 64102 0.5410 +1280 64131 0.4950 +1280 64175 0.7450 +1280 79709 0.6590 +1280 80781 0.6590 +1280 81578 0.5470 +1280 84570 0.5250 +1280 85301 0.6830 +1280 91522 0.4980 +1280 114898 0.5600 +1280 115908 0.4430 +1280 121340 0.6110 +1280 131873 0.5140 +1280 136227 0.5170 +1280 140766 0.5230 +1280 169044 0.5180 +1280 255631 0.4910 +1280 283208 0.4840 +1280 338872 0.6750 +1280 340267 0.5900 +1280 342035 0.4910 +1280 375790 0.4190 +1280 642658 0.4620 +1281 1282 0.8560 +1281 1284 0.8170 +1281 1285 0.7000 +1281 1286 0.6360 +1281 1287 0.8030 +1281 1288 0.5330 +1281 1289 0.9830 +1281 1290 0.9980 +1281 1291 0.9260 +1281 1292 0.8940 +1281 1293 0.9520 +1281 1294 0.7150 +1281 1295 0.6550 +1281 1296 0.6970 +1281 1297 0.5540 +1281 1298 0.5360 +1281 1299 0.5130 +1281 1300 0.7620 +1281 1301 0.9650 +1281 1302 0.8620 +1281 1303 0.7300 +1281 1305 0.5420 +1281 1306 0.7910 +1281 1307 0.8280 +1281 1308 0.5940 +1281 1310 0.5050 +1281 1311 0.5260 +1281 1419 0.4700 +1281 1420 0.4300 +1281 1421 0.4220 +1281 1462 0.7220 +1281 1490 0.7820 +1281 1499 0.4460 +1281 1513 0.6820 +1281 1634 0.9350 +1281 1805 0.4660 +1281 1909 0.4570 +1281 1950 0.5270 +1281 1956 0.4720 +1281 2191 0.4520 +1281 2192 0.5730 +1281 2199 0.6900 +1281 2200 0.9700 +1281 2201 0.7510 +1281 2202 0.4140 +1281 2243 0.5040 +1281 2247 0.4070 +1281 2331 0.6910 +1281 2335 0.9280 +1281 2517 0.4270 +1281 2534 0.4180 +1281 2597 0.6010 +1281 2660 0.6010 +1281 2812 0.4070 +1281 3037 0.4310 +1281 3122 0.4430 +1281 3207 0.5940 +1281 3339 0.4200 +1281 3479 0.4990 +1281 3488 0.5480 +1281 3490 0.4350 +1281 3553 0.4670 +1281 3565 0.4280 +1281 3569 0.5010 +1281 3579 0.4140 +1281 3624 0.5850 +1281 3671 0.6940 +1281 3672 0.7230 +1281 3673 0.9760 +1281 3678 0.4110 +1281 3685 0.6220 +1281 3688 0.9420 +1281 3690 0.7860 +1281 3693 0.6190 +1281 3696 0.5210 +1281 3725 0.5930 +1281 3852 0.4530 +1281 3872 0.4760 +1281 3908 0.6840 +1281 3909 0.5880 +1281 3910 0.7500 +1281 3911 0.4320 +1281 3912 0.6850 +1281 3914 0.5570 +1281 3915 0.5410 +1281 3918 0.5230 +1281 3956 0.5410 +1281 4015 0.8430 +1281 4016 0.6050 +1281 4017 0.4840 +1281 4052 0.4910 +1281 4053 0.5290 +1281 4054 0.4540 +1281 4060 0.9860 +1281 4087 0.6970 +1281 4088 0.6010 +1281 4089 0.4130 +1281 4239 0.4440 +1281 4256 0.5620 +1281 4312 0.5500 +1281 4313 0.7990 +1281 4314 0.6310 +1281 4316 0.6430 +1281 4318 0.7450 +1281 4321 0.4790 +1281 4322 0.5460 +1281 4323 0.4690 +1281 4481 0.6220 +1281 4619 0.4830 +1281 4620 0.4160 +1281 4625 0.6020 +1281 4629 0.6310 +1281 4635 0.4380 +1281 4638 0.6250 +1281 4811 0.5290 +1281 4878 0.5460 +1281 4879 0.4370 +1281 4921 0.8410 +1281 4969 0.5330 +1281 5016 0.5920 +1281 5033 0.5950 +1281 5034 0.5930 +1281 5054 0.5070 +1281 5077 0.4150 +1281 5118 0.9760 +1281 5154 0.4890 +1281 5155 0.4780 +1281 5156 0.6130 +1281 5159 0.6230 +1281 5175 0.5010 +1281 5176 0.4360 +1281 5351 0.7810 +1281 5352 0.7130 +1281 5396 0.4980 +1281 5479 0.5990 +1281 5592 0.4240 +1281 5743 0.5420 +1281 6275 0.4740 +1281 6347 0.5110 +1281 6387 0.7390 +1281 6423 0.4270 +1281 6424 0.4300 +1281 6556 0.4440 +1281 6591 0.4380 +1281 6662 0.4080 +1281 6678 0.9110 +1281 6696 0.4020 +1281 6876 0.5920 +1281 7040 0.7480 +1281 7042 0.6080 +1281 7043 0.6430 +1281 7045 0.5310 +1281 7046 0.7460 +1281 7048 0.7500 +1281 7057 0.6570 +1281 7058 0.8040 +1281 7060 0.6910 +1281 7070 0.4870 +1281 7076 0.6780 +1281 7077 0.5520 +1281 7078 0.6030 +1281 7092 0.4690 +1281 7093 0.4370 +1281 7094 0.4230 +1281 7124 0.4540 +1281 7132 0.5090 +1281 7148 0.7460 +1281 7174 0.5550 +1281 7249 0.4220 +1281 7276 0.4390 +1281 7291 0.4200 +1281 7299 0.4320 +1281 7369 0.5570 +1281 7373 0.7010 +1281 7412 0.4580 +1281 7431 0.5850 +1281 7450 0.6160 +1281 7837 0.4880 +1281 8038 0.4150 +1281 8061 0.4500 +1281 8076 0.6310 +1281 8515 0.5040 +1281 8557 0.4650 +1281 8840 0.4840 +1281 8974 0.6040 +1281 8985 0.6720 +1281 9289 0.7100 +1281 9330 0.5380 +1281 9358 0.4170 +1281 9507 0.6290 +1281 9508 0.6010 +1281 9509 0.8910 +1281 10269 0.4260 +1281 10398 0.4080 +1281 10491 0.7480 +1281 10516 0.7240 +1281 10536 0.5570 +1281 10631 0.9760 +1281 10979 0.4300 +1281 11096 0.4020 +1281 11167 0.6050 +1281 11173 0.4860 +1281 11285 0.5570 +1281 22795 0.5620 +1281 22801 0.6770 +1281 23026 0.4020 +1281 23127 0.5690 +1281 23213 0.7480 +1281 25878 0.6460 +1281 26284 0.5690 +1281 26577 0.5810 +1281 26872 0.4590 +1281 30008 0.7190 +1281 50509 0.8750 +1281 51206 0.9360 +1281 54587 0.4230 +1281 54829 0.8150 +1281 55033 0.6160 +1281 55214 0.5740 +1281 57124 0.5820 +1281 57642 0.5040 +1281 58498 0.5130 +1281 64102 0.6020 +1281 64175 0.6600 +1281 79709 0.6460 +1281 80781 0.5580 +1281 81031 0.6350 +1281 81578 0.5900 +1281 81792 0.5370 +1281 84570 0.5510 +1281 84624 0.4790 +1281 84706 0.5510 +1281 85301 0.6610 +1281 91252 0.5640 +1281 91522 0.5310 +1281 113189 0.4030 +1281 115908 0.5200 +1281 127435 0.5180 +1281 131873 0.5460 +1281 136227 0.6430 +1281 140766 0.5350 +1281 144811 0.4020 +1281 151887 0.5830 +1281 169044 0.5540 +1281 255631 0.5060 +1281 283078 0.5110 +1281 283208 0.6150 +1281 284217 0.5440 +1281 340267 0.5530 +1281 375790 0.4190 +1281 642658 0.4490 +1282 1284 0.9990 +1282 1285 0.7360 +1282 1286 0.6460 +1282 1287 0.6080 +1282 1288 0.7220 +1282 1289 0.9150 +1282 1290 0.9140 +1282 1291 0.8320 +1282 1292 0.8100 +1282 1293 0.8090 +1282 1294 0.7210 +1282 1295 0.7360 +1282 1296 0.5550 +1282 1297 0.5110 +1282 1298 0.4840 +1282 1299 0.4810 +1282 1300 0.6440 +1282 1301 0.7420 +1282 1302 0.5230 +1282 1303 0.6490 +1282 1305 0.6970 +1282 1306 0.7400 +1282 1307 0.6530 +1282 1308 0.5470 +1282 1310 0.4930 +1282 1404 0.4100 +1282 1421 0.4730 +1282 1462 0.4480 +1282 1490 0.6110 +1282 1634 0.5030 +1282 1690 0.4380 +1282 1834 0.4530 +1282 1956 0.5690 +1282 2159 0.4490 +1282 2192 0.4970 +1282 2199 0.4340 +1282 2200 0.8050 +1282 2201 0.4650 +1282 2331 0.4260 +1282 2335 0.8490 +1282 2353 0.4970 +1282 2597 0.4050 +1282 3339 0.6990 +1282 3476 0.4810 +1282 3490 0.4740 +1282 3655 0.7850 +1282 3672 0.9230 +1282 3673 0.7810 +1282 3674 0.6900 +1282 3675 0.8700 +1282 3676 0.7500 +1282 3678 0.8820 +1282 3679 0.7720 +1282 3680 0.7340 +1282 3685 0.8630 +1282 3688 0.8670 +1282 3690 0.8490 +1282 3691 0.8460 +1282 3693 0.8340 +1282 3694 0.7560 +1282 3695 0.7130 +1282 3696 0.8370 +1282 3791 0.4060 +1282 3908 0.5870 +1282 3909 0.6640 +1282 3910 0.7870 +1282 3911 0.7360 +1282 3912 0.8430 +1282 3914 0.6500 +1282 3915 0.8800 +1282 3918 0.7350 +1282 4015 0.5670 +1282 4016 0.4640 +1282 4017 0.4830 +1282 4053 0.4980 +1282 4054 0.4030 +1282 4060 0.6990 +1282 4092 0.4680 +1282 4313 0.8210 +1282 4318 0.7530 +1282 4323 0.4330 +1282 4481 0.5790 +1282 4651 0.4450 +1282 4684 0.5880 +1282 4811 0.8550 +1282 4846 0.4520 +1282 4854 0.5480 +1282 4921 0.6560 +1282 5033 0.5810 +1282 5034 0.5410 +1282 5054 0.4660 +1282 5118 0.4410 +1282 5154 0.7090 +1282 5155 0.7190 +1282 5156 0.4400 +1282 5159 0.4800 +1282 5175 0.4010 +1282 5351 0.8050 +1282 5352 0.8190 +1282 5479 0.5630 +1282 5480 0.4380 +1282 5728 0.5340 +1282 5747 0.7310 +1282 6382 0.7210 +1282 6385 0.7050 +1282 6422 0.5270 +1282 6678 0.6170 +1282 6696 0.5690 +1282 6876 0.4230 +1282 7040 0.5220 +1282 7042 0.4430 +1282 7043 0.5280 +1282 7045 0.6910 +1282 7052 0.4680 +1282 7057 0.7740 +1282 7058 0.7150 +1282 7059 0.5560 +1282 7060 0.6050 +1282 7076 0.4980 +1282 7078 0.4940 +1282 7373 0.5660 +1282 7428 0.5240 +1282 7431 0.4590 +1282 7837 0.5450 +1282 8404 0.5620 +1282 8482 0.4510 +1282 8515 0.7390 +1282 8516 0.8500 +1282 8974 0.6030 +1282 8985 0.8740 +1282 9353 0.5180 +1282 9509 0.4810 +1282 10000 0.5070 +1282 10085 0.4750 +1282 10319 0.4590 +1282 10479 0.4050 +1282 10491 0.5360 +1282 10497 0.4100 +1282 10536 0.5200 +1282 10631 0.5780 +1282 11107 0.4400 +1282 11167 0.5250 +1282 11173 0.4200 +1282 22795 0.7400 +1282 22801 0.8560 +1282 22943 0.4790 +1282 23127 0.8100 +1282 50509 0.7330 +1282 51206 0.9060 +1282 55214 0.6020 +1282 56999 0.4210 +1282 57124 0.4230 +1282 57642 0.4810 +1282 64175 0.6700 +1282 79709 0.6770 +1282 80781 0.7740 +1282 81578 0.5160 +1282 84439 0.4040 +1282 84570 0.5520 +1282 85301 0.7070 +1282 91522 0.4950 +1282 114897 0.4860 +1282 131149 0.5810 +1282 131873 0.5230 +1282 136227 0.5810 +1282 169044 0.5770 +1282 255631 0.4990 +1282 283208 0.5560 +1282 284217 0.5620 +1282 340267 0.4990 +1282 375790 0.6100 +1282 440279 0.6360 +1284 1285 0.8200 +1284 1286 0.6170 +1284 1287 0.8260 +1284 1288 0.6240 +1284 1289 0.8720 +1284 1290 0.9090 +1284 1291 0.8100 +1284 1292 0.8130 +1284 1293 0.7920 +1284 1294 0.6460 +1284 1295 0.7120 +1284 1296 0.6970 +1284 1297 0.5820 +1284 1298 0.4970 +1284 1299 0.4830 +1284 1300 0.8230 +1284 1301 0.7150 +1284 1302 0.4960 +1284 1303 0.7570 +1284 1305 0.7200 +1284 1306 0.7770 +1284 1307 0.7590 +1284 1308 0.5680 +1284 1310 0.4980 +1284 1462 0.4330 +1284 1490 0.5000 +1284 1601 0.4590 +1284 1634 0.4570 +1284 1956 0.5640 +1284 2159 0.6580 +1284 2192 0.4890 +1284 2199 0.4180 +1284 2200 0.6560 +1284 2202 0.4580 +1284 2316 0.4660 +1284 2318 0.5290 +1284 2331 0.4380 +1284 2335 0.7500 +1284 2737 0.4040 +1284 3339 0.6910 +1284 3476 0.5750 +1284 3490 0.4140 +1284 3655 0.7690 +1284 3672 0.8930 +1284 3673 0.7650 +1284 3674 0.6860 +1284 3675 0.7840 +1284 3676 0.7440 +1284 3678 0.8030 +1284 3679 0.7690 +1284 3680 0.7400 +1284 3685 0.8410 +1284 3688 0.7760 +1284 3690 0.7480 +1284 3691 0.8270 +1284 3693 0.8570 +1284 3694 0.7170 +1284 3695 0.6940 +1284 3696 0.7980 +1284 3895 0.4280 +1284 3908 0.6880 +1284 3909 0.6670 +1284 3910 0.7980 +1284 3911 0.7240 +1284 3912 0.7380 +1284 3913 0.4920 +1284 3914 0.4650 +1284 3915 0.8140 +1284 3918 0.6160 +1284 4015 0.5040 +1284 4017 0.6560 +1284 4060 0.6590 +1284 4313 0.7830 +1284 4318 0.5740 +1284 4323 0.4380 +1284 4481 0.8230 +1284 4684 0.5630 +1284 4811 0.8230 +1284 4854 0.4710 +1284 5033 0.5940 +1284 5034 0.5540 +1284 5046 0.4100 +1284 5118 0.6470 +1284 5154 0.5930 +1284 5155 0.6120 +1284 5159 0.4280 +1284 5351 0.7870 +1284 5352 0.6910 +1284 5479 0.5490 +1284 5654 0.4020 +1284 5747 0.7240 +1284 6382 0.7210 +1284 6385 0.6950 +1284 6678 0.5790 +1284 6696 0.5450 +1284 7045 0.6690 +1284 7057 0.6770 +1284 7058 0.6790 +1284 7059 0.5750 +1284 7060 0.5490 +1284 7078 0.4960 +1284 7084 0.4780 +1284 7373 0.6700 +1284 7428 0.5240 +1284 7837 0.4470 +1284 8292 0.4170 +1284 8515 0.7330 +1284 8516 0.7520 +1284 8974 0.5540 +1284 8985 0.8020 +1284 9037 0.4140 +1284 9509 0.4880 +1284 9914 0.4120 +1284 10319 0.4240 +1284 10491 0.5830 +1284 10536 0.5560 +1284 10631 0.4970 +1284 10637 0.4070 +1284 11167 0.4620 +1284 11173 0.5790 +1284 11328 0.4630 +1284 22795 0.7340 +1284 22801 0.7750 +1284 22918 0.5490 +1284 23127 0.8320 +1284 23543 0.4410 +1284 50509 0.7510 +1284 51206 0.9070 +1284 54549 0.4040 +1284 55193 0.4090 +1284 55214 0.5570 +1284 57124 0.4110 +1284 57642 0.5340 +1284 64175 0.7080 +1284 64579 0.4480 +1284 79709 0.6820 +1284 80114 0.4380 +1284 80781 0.7330 +1284 80790 0.4190 +1284 81575 0.4070 +1284 81578 0.7980 +1284 81792 0.4160 +1284 84570 0.5620 +1284 84934 0.5860 +1284 85301 0.7700 +1284 91522 0.5530 +1284 114897 0.4700 +1284 124093 0.4030 +1284 131149 0.5920 +1284 131873 0.4920 +1284 136227 0.5540 +1284 169044 0.6130 +1284 255631 0.5140 +1284 283208 0.5140 +1284 284217 0.6580 +1284 340267 0.5420 +1284 375790 0.7250 +1285 1286 0.9950 +1285 1287 0.9030 +1285 1288 0.7220 +1285 1289 0.7220 +1285 1290 0.7060 +1285 1291 0.5530 +1285 1292 0.6230 +1285 1293 0.5680 +1285 1294 0.5100 +1285 1295 0.7900 +1285 1296 0.6170 +1285 1297 0.5280 +1285 1298 0.5030 +1285 1299 0.4830 +1285 1300 0.6160 +1285 1301 0.6150 +1285 1302 0.5060 +1285 1303 0.5930 +1285 1305 0.6900 +1285 1306 0.9350 +1285 1307 0.7070 +1285 1308 0.6150 +1285 1310 0.5000 +1285 1495 0.4180 +1285 1520 0.4410 +1285 1636 0.4020 +1285 1956 0.4930 +1285 2239 0.5260 +1285 2335 0.4560 +1285 2799 0.4010 +1285 2817 0.4940 +1285 3069 0.5850 +1285 3339 0.5810 +1285 3476 0.7810 +1285 3623 0.4620 +1285 3655 0.7270 +1285 3672 0.7770 +1285 3673 0.8320 +1285 3674 0.6780 +1285 3675 0.7850 +1285 3676 0.7020 +1285 3678 0.7200 +1285 3679 0.6890 +1285 3680 0.7090 +1285 3685 0.7420 +1285 3688 0.7320 +1285 3690 0.8370 +1285 3691 0.8290 +1285 3693 0.7110 +1285 3694 0.7290 +1285 3695 0.6780 +1285 3696 0.7200 +1285 3769 0.5240 +1285 3911 0.4640 +1285 3915 0.5920 +1285 3918 0.5470 +1285 4010 0.6590 +1285 4313 0.4110 +1285 4318 0.5000 +1285 4627 0.6900 +1285 4684 0.5460 +1285 4811 0.6670 +1285 4868 0.7070 +1285 5033 0.4960 +1285 5034 0.5080 +1285 5077 0.6170 +1285 5154 0.6110 +1285 5155 0.5970 +1285 5159 0.4150 +1285 5340 0.5740 +1285 5351 0.5560 +1285 5352 0.5620 +1285 5479 0.5460 +1285 5747 0.7320 +1285 6382 0.6720 +1285 6385 0.6940 +1285 6696 0.5460 +1285 7057 0.6810 +1285 7058 0.6300 +1285 7059 0.5280 +1285 7060 0.4860 +1285 7225 0.4280 +1285 7273 0.4480 +1285 7369 0.4300 +1285 7373 0.5270 +1285 7448 0.6510 +1285 7490 0.4180 +1285 7827 0.6160 +1285 8515 0.6790 +1285 8516 0.7230 +1285 8974 0.4900 +1285 8985 0.5440 +1285 10087 0.8310 +1285 10491 0.5030 +1285 10536 0.5030 +1285 10569 0.7190 +1285 11185 0.4300 +1285 22801 0.7030 +1285 23127 0.5470 +1285 23607 0.4300 +1285 27329 0.4750 +1285 30813 0.7240 +1285 50509 0.6880 +1285 51004 0.4360 +1285 51196 0.4430 +1285 51206 0.9030 +1285 55214 0.5540 +1285 57642 0.4650 +1285 64175 0.5030 +1285 64423 0.5090 +1285 79709 0.5150 +1285 80781 0.6750 +1285 81578 0.4880 +1285 84570 0.5120 +1285 84627 0.4310 +1285 85301 0.7030 +1285 90952 0.4370 +1285 91522 0.5060 +1285 131149 0.5970 +1285 131873 0.4990 +1285 136227 0.6310 +1285 169044 0.5200 +1285 255631 0.5240 +1285 283208 0.4440 +1285 340267 0.5180 +1286 1287 0.9020 +1286 1288 0.6130 +1286 1289 0.5440 +1286 1290 0.5330 +1286 1291 0.5470 +1286 1292 0.6090 +1286 1293 0.5110 +1286 1294 0.5610 +1286 1295 0.7840 +1286 1296 0.5390 +1286 1297 0.5260 +1286 1298 0.5030 +1286 1299 0.4880 +1286 1300 0.6140 +1286 1301 0.5120 +1286 1302 0.4830 +1286 1303 0.5400 +1286 1305 0.5420 +1286 1306 0.9150 +1286 1307 0.5480 +1286 1308 0.5280 +1286 1310 0.5720 +1286 1417 0.4470 +1286 3476 0.8600 +1286 3655 0.7490 +1286 3672 0.7670 +1286 3673 0.7300 +1286 3674 0.6750 +1286 3675 0.7860 +1286 3676 0.7120 +1286 3678 0.6930 +1286 3679 0.7160 +1286 3680 0.6930 +1286 3685 0.8120 +1286 3688 0.7310 +1286 3690 0.7200 +1286 3691 0.7650 +1286 3693 0.7150 +1286 3694 0.7350 +1286 3695 0.6980 +1286 3696 0.7230 +1286 3909 0.4090 +1286 3910 0.4670 +1286 3911 0.4760 +1286 3912 0.4360 +1286 3915 0.4670 +1286 3975 0.4440 +1286 4009 0.4820 +1286 4010 0.7100 +1286 4627 0.6700 +1286 4643 0.4010 +1286 4684 0.5270 +1286 4811 0.6110 +1286 4821 0.4760 +1286 4868 0.7710 +1286 5033 0.4500 +1286 5034 0.5080 +1286 5154 0.5320 +1286 5155 0.5330 +1286 5351 0.6070 +1286 5352 0.5440 +1286 5479 0.5460 +1286 5747 0.6720 +1286 6382 0.6680 +1286 6385 0.6870 +1286 6696 0.4720 +1286 7057 0.5110 +1286 7058 0.5400 +1286 7059 0.5130 +1286 7060 0.5150 +1286 7225 0.4050 +1286 7373 0.5740 +1286 7827 0.7630 +1286 8515 0.7590 +1286 8516 0.7330 +1286 8542 0.4010 +1286 8974 0.4200 +1286 8985 0.5440 +1286 9079 0.4070 +1286 10491 0.5030 +1286 10536 0.5030 +1286 22801 0.7470 +1286 23127 0.5320 +1286 23607 0.4270 +1286 30813 0.5080 +1286 50509 0.5090 +1286 51004 0.4250 +1286 51196 0.4250 +1286 51206 0.9000 +1286 55205 0.4630 +1286 55214 0.5640 +1286 56172 0.4090 +1286 57642 0.5250 +1286 64175 0.5140 +1286 64423 0.5050 +1286 79709 0.5200 +1286 80781 0.6430 +1286 81494 0.4050 +1286 81578 0.5660 +1286 84236 0.5250 +1286 84570 0.5080 +1286 84627 0.4390 +1286 85301 0.5490 +1286 91522 0.5160 +1286 131149 0.6000 +1286 131873 0.5610 +1286 136227 0.5190 +1286 169044 0.5530 +1286 255631 0.5480 +1286 283208 0.4200 +1286 340267 0.5370 +1287 1288 0.9820 +1287 1289 0.5690 +1287 1290 0.7210 +1287 1291 0.5470 +1287 1292 0.5960 +1287 1293 0.7160 +1287 1294 0.7120 +1287 1295 0.7730 +1287 1296 0.8800 +1287 1297 0.5220 +1287 1298 0.4980 +1287 1299 0.4810 +1287 1300 0.5910 +1287 1301 0.7100 +1287 1302 0.6980 +1287 1303 0.5430 +1287 1305 0.5080 +1287 1306 0.7670 +1287 1307 0.7170 +1287 1308 0.5840 +1287 1310 0.5080 +1287 1678 0.4600 +1287 1730 0.4290 +1287 2182 0.8120 +1287 2986 0.5500 +1287 3339 0.4720 +1287 3476 0.8090 +1287 3655 0.8250 +1287 3672 0.7690 +1287 3673 0.7440 +1287 3674 0.6610 +1287 3675 0.7890 +1287 3676 0.7130 +1287 3678 0.7180 +1287 3679 0.7020 +1287 3680 0.7160 +1287 3685 0.7240 +1287 3688 0.8180 +1287 3690 0.7010 +1287 3691 0.7650 +1287 3693 0.7300 +1287 3694 0.6980 +1287 3695 0.6820 +1287 3696 0.6850 +1287 3759 0.4450 +1287 3909 0.4410 +1287 3910 0.4910 +1287 3911 0.6780 +1287 3912 0.4850 +1287 3915 0.4960 +1287 3920 0.4620 +1287 4035 0.4230 +1287 4627 0.4330 +1287 4684 0.5430 +1287 4811 0.6920 +1287 4868 0.6520 +1287 5033 0.5670 +1287 5034 0.5080 +1287 5154 0.5390 +1287 5155 0.5360 +1287 5351 0.7340 +1287 5352 0.6370 +1287 5479 0.5460 +1287 5747 0.6870 +1287 6191 0.5090 +1287 6382 0.6680 +1287 6385 0.6740 +1287 6585 0.7320 +1287 6696 0.4620 +1287 7057 0.5510 +1287 7058 0.5390 +1287 7059 0.5300 +1287 7060 0.5300 +1287 7369 0.4190 +1287 7373 0.5140 +1287 7827 0.5770 +1287 8515 0.7010 +1287 8516 0.7340 +1287 8678 0.9450 +1287 8974 0.4630 +1287 8985 0.6560 +1287 9949 0.8630 +1287 9968 0.5040 +1287 10491 0.5030 +1287 10536 0.5040 +1287 22795 0.4310 +1287 22801 0.7370 +1287 22863 0.8110 +1287 23127 0.8320 +1287 23630 0.7020 +1287 50509 0.5550 +1287 51206 0.9040 +1287 55214 0.5890 +1287 55916 0.5150 +1287 57642 0.4550 +1287 64175 0.5180 +1287 64423 0.4620 +1287 79709 0.6070 +1287 80781 0.6570 +1287 81578 0.5250 +1287 84570 0.5240 +1287 85301 0.5420 +1287 91522 0.4890 +1287 131149 0.5820 +1287 131873 0.5440 +1287 136227 0.6610 +1287 169044 0.5150 +1287 255631 0.5210 +1287 283208 0.4600 +1287 340267 0.5120 +1288 1289 0.5430 +1288 1290 0.5810 +1288 1291 0.5780 +1288 1292 0.6160 +1288 1293 0.5340 +1288 1294 0.6400 +1288 1295 0.6560 +1288 1296 0.6080 +1288 1297 0.4810 +1288 1298 0.4970 +1288 1299 0.4910 +1288 1300 0.6080 +1288 1301 0.5260 +1288 1302 0.5020 +1288 1303 0.6290 +1288 1305 0.5530 +1288 1306 0.6110 +1288 1307 0.5210 +1288 1308 0.5710 +1288 1310 0.5330 +1288 3339 0.4210 +1288 3476 0.5600 +1288 3655 0.7480 +1288 3672 0.7750 +1288 3673 0.7990 +1288 3674 0.6820 +1288 3675 0.7400 +1288 3676 0.6940 +1288 3678 0.8010 +1288 3679 0.7020 +1288 3680 0.7130 +1288 3685 0.6790 +1288 3688 0.7020 +1288 3690 0.7000 +1288 3691 0.7510 +1288 3693 0.7120 +1288 3694 0.7270 +1288 3695 0.6950 +1288 3696 0.7200 +1288 3909 0.4650 +1288 3910 0.4940 +1288 3911 0.4060 +1288 3915 0.4060 +1288 3918 0.4030 +1288 4811 0.4320 +1288 5008 0.4080 +1288 5033 0.5500 +1288 5034 0.5530 +1288 5351 0.7700 +1288 5352 0.6060 +1288 5456 0.4340 +1288 5479 0.6150 +1288 5631 0.7660 +1288 5634 0.5990 +1288 5747 0.6860 +1288 5987 0.4300 +1288 6382 0.6940 +1288 6385 0.6680 +1288 7153 0.4530 +1288 7373 0.6630 +1288 8091 0.4170 +1288 8515 0.7090 +1288 8516 0.7340 +1288 8805 0.4270 +1288 8974 0.4380 +1288 8985 0.7760 +1288 9131 0.5450 +1288 9968 0.5090 +1288 10175 0.5630 +1288 10491 0.6730 +1288 10536 0.5300 +1288 11043 0.7670 +1288 22801 0.7600 +1288 23127 0.5740 +1288 23676 0.6810 +1288 50509 0.5480 +1288 51206 0.9030 +1288 55214 0.5640 +1288 57642 0.5420 +1288 64175 0.6790 +1288 79709 0.5820 +1288 80781 0.6080 +1288 81578 0.5550 +1288 84570 0.5600 +1288 85301 0.5900 +1288 89866 0.4600 +1288 91522 0.5350 +1288 114897 0.4630 +1288 131149 0.6060 +1288 131873 0.5380 +1288 136227 0.6490 +1288 140766 0.4460 +1288 149111 0.5450 +1288 169044 0.5210 +1288 221823 0.7500 +1288 255631 0.5830 +1288 283208 0.4310 +1288 340267 0.5850 +1288 100130613 0.4040 +1289 1290 0.9960 +1289 1291 0.8790 +1289 1292 0.8620 +1289 1293 0.8920 +1289 1294 0.6070 +1289 1295 0.7250 +1289 1296 0.8120 +1289 1297 0.5510 +1289 1298 0.5120 +1289 1299 0.5070 +1289 1300 0.5770 +1289 1301 0.8770 +1289 1302 0.8910 +1289 1303 0.7920 +1289 1305 0.6950 +1289 1306 0.7930 +1289 1307 0.8180 +1289 1308 0.5500 +1289 1310 0.5090 +1289 1462 0.6310 +1289 1490 0.6580 +1289 1634 0.5730 +1289 2022 0.4920 +1289 2192 0.5280 +1289 2199 0.7070 +1289 2200 0.9290 +1289 2201 0.5780 +1289 2316 0.5510 +1289 2318 0.5570 +1289 2331 0.5100 +1289 2335 0.8400 +1289 3339 0.4810 +1289 3371 0.4290 +1289 3672 0.6830 +1289 3673 0.5000 +1289 3675 0.4130 +1289 3678 0.5300 +1289 3693 0.4370 +1289 3908 0.5110 +1289 3909 0.4910 +1289 3910 0.6200 +1289 3911 0.5190 +1289 3912 0.6130 +1289 3914 0.4100 +1289 3915 0.7430 +1289 3918 0.5000 +1289 4015 0.7030 +1289 4016 0.5840 +1289 4017 0.5230 +1289 4052 0.4660 +1289 4053 0.5260 +1289 4054 0.4620 +1289 4060 0.9120 +1289 4088 0.4330 +1289 4237 0.4240 +1289 4312 0.4160 +1289 4313 0.7960 +1289 4314 0.4930 +1289 4316 0.5360 +1289 4318 0.5340 +1289 4320 0.4050 +1289 4323 0.5910 +1289 4629 0.4050 +1289 4638 0.4720 +1289 4753 0.4340 +1289 4811 0.4830 +1289 4851 0.5880 +1289 4921 0.7620 +1289 4969 0.4030 +1289 5004 0.4240 +1289 5033 0.6130 +1289 5034 0.5570 +1289 5054 0.4320 +1289 5118 0.9280 +1289 5159 0.4060 +1289 5196 0.4100 +1289 5351 0.8570 +1289 5352 0.7500 +1289 5479 0.5790 +1289 5480 0.4130 +1289 5728 0.5260 +1289 5771 0.4760 +1289 6256 0.5910 +1289 6678 0.6750 +1289 6876 0.4200 +1289 7040 0.6590 +1289 7041 0.4880 +1289 7042 0.4580 +1289 7043 0.4640 +1289 7045 0.5910 +1289 7046 0.4370 +1289 7048 0.4210 +1289 7057 0.6530 +1289 7058 0.7420 +1289 7070 0.4090 +1289 7076 0.6260 +1289 7077 0.4310 +1289 7078 0.4780 +1289 7092 0.4550 +1289 7093 0.4460 +1289 7132 0.4360 +1289 7148 0.7810 +1289 7248 0.5530 +1289 7249 0.5390 +1289 7373 0.7860 +1289 7633 0.7550 +1289 7837 0.5530 +1289 8038 0.5150 +1289 8076 0.5130 +1289 8404 0.5110 +1289 8777 0.4290 +1289 8974 0.6030 +1289 8985 0.6630 +1289 9231 0.4160 +1289 9507 0.5280 +1289 9508 0.5550 +1289 9509 0.8260 +1289 10000 0.5030 +1289 10269 0.4320 +1289 10319 0.4250 +1289 10491 0.7450 +1289 10516 0.6360 +1289 10536 0.6120 +1289 10631 0.7800 +1289 11093 0.4410 +1289 11098 0.4640 +1289 11167 0.4070 +1289 11285 0.4440 +1289 22795 0.5820 +1289 22801 0.7210 +1289 23127 0.5360 +1289 23203 0.4020 +1289 23213 0.4900 +1289 25878 0.5810 +1289 26577 0.5800 +1289 30008 0.5900 +1289 50509 0.8560 +1289 51339 0.4040 +1289 54829 0.5880 +1289 55033 0.5350 +1289 55214 0.5650 +1289 57124 0.5230 +1289 57642 0.5070 +1289 64102 0.4580 +1289 64175 0.7960 +1289 64778 0.4570 +1289 79709 0.7760 +1289 80781 0.5680 +1289 81031 0.5470 +1289 81578 0.5570 +1289 84570 0.5260 +1289 84627 0.7430 +1289 85301 0.7720 +1289 91252 0.4160 +1289 91522 0.5230 +1289 113189 0.4900 +1289 114898 0.4550 +1289 115908 0.6190 +1289 131873 0.5180 +1289 136227 0.5830 +1289 140766 0.6000 +1289 144125 0.4360 +1289 151887 0.4170 +1289 169044 0.5780 +1289 255631 0.6050 +1289 283208 0.5900 +1289 340267 0.5450 +1290 1291 0.9040 +1290 1292 0.8560 +1290 1293 0.9350 +1290 1294 0.5240 +1290 1295 0.6470 +1290 1296 0.5740 +1290 1297 0.6970 +1290 1298 0.6790 +1290 1299 0.6840 +1290 1300 0.7530 +1290 1301 0.9760 +1290 1302 0.9040 +1290 1303 0.8610 +1290 1305 0.5560 +1290 1306 0.7660 +1290 1307 0.8310 +1290 1308 0.5430 +1290 1310 0.5260 +1290 1462 0.5890 +1290 1490 0.5100 +1290 1513 0.4610 +1290 1634 0.6300 +1290 1950 0.4410 +1290 1956 0.5070 +1290 2191 0.6060 +1290 2192 0.4290 +1290 2199 0.4600 +1290 2200 0.9240 +1290 2201 0.5880 +1290 2331 0.4710 +1290 2335 0.8300 +1290 2632 0.5210 +1290 2660 0.6240 +1290 2697 0.4220 +1290 3113 0.4470 +1290 3231 0.4250 +1290 3488 0.4960 +1290 3672 0.6190 +1290 3673 0.5210 +1290 3675 0.5060 +1290 3678 0.4150 +1290 3685 0.6540 +1290 3689 0.5130 +1290 3690 0.5520 +1290 3693 0.5450 +1290 3696 0.4980 +1290 3852 0.4320 +1290 3908 0.5250 +1290 3910 0.6200 +1290 3912 0.7540 +1290 3915 0.5570 +1290 4015 0.6800 +1290 4016 0.5290 +1290 4017 0.4410 +1290 4043 0.4180 +1290 4052 0.4050 +1290 4053 0.6680 +1290 4054 0.5940 +1290 4060 0.9600 +1290 4237 0.4390 +1290 4313 0.5960 +1290 4314 0.4080 +1290 4318 0.6050 +1290 4320 0.4240 +1290 4629 0.4210 +1290 4638 0.4650 +1290 4811 0.5360 +1290 5033 0.5290 +1290 5034 0.5830 +1290 5118 0.8570 +1290 5156 0.4150 +1290 5159 0.4590 +1290 5211 0.4320 +1290 5328 0.5420 +1290 5351 0.8650 +1290 5352 0.7370 +1290 5479 0.5990 +1290 5547 0.4750 +1290 5764 0.4090 +1290 6591 0.6060 +1290 6678 0.6490 +1290 6876 0.5820 +1290 7042 0.4550 +1290 7043 0.4600 +1290 7045 0.4170 +1290 7046 0.4120 +1290 7048 0.4040 +1290 7058 0.8240 +1290 7070 0.7170 +1290 7076 0.4430 +1290 7092 0.5180 +1290 7093 0.4430 +1290 7148 0.7510 +1290 7169 0.4490 +1290 7373 0.7520 +1290 7412 0.4860 +1290 7431 0.5660 +1290 7837 0.4090 +1290 8038 0.4420 +1290 8076 0.5590 +1290 8515 0.4750 +1290 8974 0.5930 +1290 8985 0.6690 +1290 9330 0.6490 +1290 9358 0.4240 +1290 9507 0.4990 +1290 9508 0.5200 +1290 9509 0.7970 +1290 10175 0.4700 +1290 10269 0.4130 +1290 10491 0.7580 +1290 10516 0.4390 +1290 10536 0.5770 +1290 10609 0.4250 +1290 10631 0.7920 +1290 11167 0.6130 +1290 11285 0.5690 +1290 22795 0.5570 +1290 22801 0.6440 +1290 23026 0.4220 +1290 23127 0.5570 +1290 23213 0.6300 +1290 23314 0.4370 +1290 25878 0.5840 +1290 25903 0.4490 +1290 26577 0.5850 +1290 26872 0.5130 +1290 30008 0.5730 +1290 50509 0.8910 +1290 54829 0.4820 +1290 55033 0.5330 +1290 55214 0.5530 +1290 57124 0.4040 +1290 57642 0.4800 +1290 60681 0.4220 +1290 64175 0.7930 +1290 79709 0.7670 +1290 80781 0.7180 +1290 81031 0.5840 +1290 81578 0.5800 +1290 81792 0.4440 +1290 84570 0.5070 +1290 84627 0.4610 +1290 85301 0.6940 +1290 89866 0.4550 +1290 91252 0.4020 +1290 91522 0.4920 +1290 113189 0.4800 +1290 115908 0.5980 +1290 121457 0.4370 +1290 131873 0.5520 +1290 136227 0.4670 +1290 140766 0.5860 +1290 149111 0.4890 +1290 151887 0.4940 +1290 169044 0.5740 +1290 220164 0.4370 +1290 255631 0.5210 +1290 283208 0.6280 +1290 284217 0.5230 +1290 340267 0.5530 +1291 1292 0.9980 +1291 1293 0.9940 +1291 1294 0.5890 +1291 1295 0.6580 +1291 1296 0.6310 +1291 1297 0.8280 +1291 1298 0.5410 +1291 1299 0.7080 +1291 1300 0.5680 +1291 1301 0.7590 +1291 1302 0.6390 +1291 1303 0.7810 +1291 1305 0.6190 +1291 1306 0.7600 +1291 1307 0.6730 +1291 1308 0.5500 +1291 1310 0.4870 +1291 1311 0.4260 +1291 1464 0.4350 +1291 1490 0.5540 +1291 1508 0.4120 +1291 1513 0.4120 +1291 1634 0.8240 +1291 1756 0.5880 +1291 1893 0.4400 +1291 2167 0.4600 +1291 2192 0.7380 +1291 2199 0.5860 +1291 2200 0.7430 +1291 2201 0.5410 +1291 2202 0.4570 +1291 2318 0.4150 +1291 2331 0.5220 +1291 2335 0.7800 +1291 2697 0.4480 +1291 3339 0.4930 +1291 3655 0.7710 +1291 3672 0.8700 +1291 3673 0.8570 +1291 3674 0.6720 +1291 3675 0.8350 +1291 3676 0.7190 +1291 3678 0.9220 +1291 3679 0.7960 +1291 3680 0.7190 +1291 3685 0.8850 +1291 3688 0.7760 +1291 3689 0.5330 +1291 3690 0.8440 +1291 3691 0.7660 +1291 3693 0.8660 +1291 3694 0.7220 +1291 3695 0.7160 +1291 3696 0.7690 +1291 3908 0.7620 +1291 3909 0.6120 +1291 3910 0.7430 +1291 3911 0.6920 +1291 3912 0.8430 +1291 3913 0.5980 +1291 3914 0.4590 +1291 3915 0.6900 +1291 4015 0.7360 +1291 4016 0.4880 +1291 4017 0.4330 +1291 4052 0.4010 +1291 4053 0.5320 +1291 4054 0.4590 +1291 4060 0.6950 +1291 4240 0.4420 +1291 4313 0.6950 +1291 4314 0.4110 +1291 4318 0.6720 +1291 4684 0.5800 +1291 4811 0.7090 +1291 4969 0.5270 +1291 5033 0.5440 +1291 5034 0.6060 +1291 5118 0.7790 +1291 5154 0.5580 +1291 5155 0.6390 +1291 5156 0.4820 +1291 5159 0.4600 +1291 5167 0.5290 +1291 5211 0.7050 +1291 5328 0.5240 +1291 5351 0.7290 +1291 5352 0.6710 +1291 5396 0.4080 +1291 5479 0.5790 +1291 5481 0.5630 +1291 5549 0.4500 +1291 5747 0.6950 +1291 6123 0.4530 +1291 6238 0.7430 +1291 6285 0.4220 +1291 6382 0.6990 +1291 6385 0.7140 +1291 6442 0.5990 +1291 6445 0.6000 +1291 6529 0.4820 +1291 6678 0.6470 +1291 6696 0.5670 +1291 6876 0.5840 +1291 7040 0.4010 +1291 7043 0.5970 +1291 7045 0.5750 +1291 7052 0.4610 +1291 7057 0.7780 +1291 7058 0.7560 +1291 7059 0.6610 +1291 7060 0.8190 +1291 7070 0.6550 +1291 7076 0.4300 +1291 7077 0.5260 +1291 7078 0.5570 +1291 7148 0.7250 +1291 7169 0.4050 +1291 7369 0.4650 +1291 7373 0.7680 +1291 7431 0.6330 +1291 7450 0.4410 +1291 7849 0.4610 +1291 8291 0.4470 +1291 8515 0.8390 +1291 8516 0.8600 +1291 8974 0.5480 +1291 8985 0.6740 +1291 9509 0.5420 +1291 9719 0.5260 +1291 10105 0.6490 +1291 10491 0.5430 +1291 10516 0.4430 +1291 10536 0.6270 +1291 10585 0.4010 +1291 10631 0.6770 +1291 11167 0.4360 +1291 22795 0.5190 +1291 22801 0.8780 +1291 23127 0.6520 +1291 23452 0.4070 +1291 26577 0.5100 +1291 29895 0.4270 +1291 30008 0.5430 +1291 50509 0.7730 +1291 51206 0.9310 +1291 51450 0.4490 +1291 54829 0.5710 +1291 55214 0.5900 +1291 57124 0.4530 +1291 57190 0.4720 +1291 57642 0.5350 +1291 60681 0.5570 +1291 64175 0.7440 +1291 78989 0.5220 +1291 79041 0.4320 +1291 79147 0.4770 +1291 79709 0.6100 +1291 80781 0.8480 +1291 81578 0.5400 +1291 81794 0.5290 +1291 83546 0.4220 +1291 84168 0.5120 +1291 84570 0.5690 +1291 85301 0.5970 +1291 91522 0.5350 +1291 131873 0.5620 +1291 136227 0.5220 +1291 151887 0.4200 +1291 169044 0.5210 +1291 200539 0.4070 +1291 255631 0.5430 +1291 283208 0.5240 +1291 284217 0.6200 +1291 338872 0.4800 +1291 340267 0.5430 +1291 340706 0.4210 +1291 375790 0.5380 +1292 1293 0.9940 +1292 1294 0.6230 +1292 1295 0.6660 +1292 1296 0.6870 +1292 1297 0.7100 +1292 1298 0.5890 +1292 1299 0.5570 +1292 1300 0.6510 +1292 1301 0.7850 +1292 1302 0.6130 +1292 1303 0.7930 +1292 1305 0.6170 +1292 1306 0.7770 +1292 1307 0.7720 +1292 1308 0.5740 +1292 1310 0.5590 +1292 1464 0.4090 +1292 1490 0.5590 +1292 1500 0.5990 +1292 1634 0.6280 +1292 1756 0.6180 +1292 1826 0.5850 +1292 1893 0.4050 +1292 2114 0.4190 +1292 2192 0.6630 +1292 2199 0.6880 +1292 2200 0.7500 +1292 2201 0.4740 +1292 2202 0.4450 +1292 2316 0.4460 +1292 2331 0.4650 +1292 2335 0.8020 +1292 2584 0.4140 +1292 2697 0.4380 +1292 3075 0.4310 +1292 3339 0.5300 +1292 3383 0.6400 +1292 3655 0.7810 +1292 3671 0.4590 +1292 3672 0.8640 +1292 3673 0.8180 +1292 3674 0.7110 +1292 3675 0.7810 +1292 3676 0.7320 +1292 3678 0.8920 +1292 3679 0.8040 +1292 3680 0.7670 +1292 3685 0.7580 +1292 3688 0.8170 +1292 3689 0.4700 +1292 3690 0.8310 +1292 3691 0.7660 +1292 3693 0.8590 +1292 3694 0.7140 +1292 3695 0.7140 +1292 3696 0.7130 +1292 3908 0.6680 +1292 3909 0.4590 +1292 3910 0.6150 +1292 3911 0.6550 +1292 3912 0.8420 +1292 3913 0.5690 +1292 3914 0.5420 +1292 3915 0.6830 +1292 4000 0.4030 +1292 4015 0.5190 +1292 4016 0.5780 +1292 4017 0.4300 +1292 4052 0.4270 +1292 4053 0.5510 +1292 4054 0.5110 +1292 4060 0.7020 +1292 4237 0.4200 +1292 4239 0.4170 +1292 4313 0.6420 +1292 4318 0.6650 +1292 4323 0.4250 +1292 4684 0.5770 +1292 4811 0.7160 +1292 4969 0.4210 +1292 5033 0.4940 +1292 5034 0.5720 +1292 5118 0.8330 +1292 5154 0.5450 +1292 5155 0.5480 +1292 5159 0.5970 +1292 5211 0.6880 +1292 5328 0.4960 +1292 5351 0.7260 +1292 5352 0.6200 +1292 5396 0.4220 +1292 5479 0.5960 +1292 5481 0.4300 +1292 5549 0.5170 +1292 5747 0.6860 +1292 6238 0.8050 +1292 6285 0.4470 +1292 6347 0.4810 +1292 6382 0.7010 +1292 6385 0.7020 +1292 6442 0.5910 +1292 6445 0.5660 +1292 6678 0.5710 +1292 6696 0.5070 +1292 6876 0.5960 +1292 7041 0.4030 +1292 7043 0.5110 +1292 7045 0.5430 +1292 7057 0.7840 +1292 7058 0.7540 +1292 7059 0.6340 +1292 7060 0.5830 +1292 7070 0.5710 +1292 7077 0.5110 +1292 7078 0.5100 +1292 7084 0.4380 +1292 7148 0.6540 +1292 7373 0.7990 +1292 7412 0.5010 +1292 7431 0.5900 +1292 8076 0.4900 +1292 8291 0.4080 +1292 8425 0.4490 +1292 8515 0.7420 +1292 8516 0.8470 +1292 8974 0.5150 +1292 8985 0.6820 +1292 9509 0.5540 +1292 9510 0.4110 +1292 9656 0.4400 +1292 9902 0.5470 +1292 10105 0.4500 +1292 10491 0.5360 +1292 10516 0.4460 +1292 10536 0.5980 +1292 10585 0.4090 +1292 10631 0.6250 +1292 11098 0.4350 +1292 11167 0.4090 +1292 11173 0.4200 +1292 22795 0.5030 +1292 22801 0.8630 +1292 23127 0.6340 +1292 26577 0.4950 +1292 30008 0.5950 +1292 50509 0.7700 +1292 51206 0.9120 +1292 51226 0.4970 +1292 51450 0.4460 +1292 54587 0.5210 +1292 54829 0.6430 +1292 55214 0.7260 +1292 57124 0.5740 +1292 57190 0.4260 +1292 57642 0.5390 +1292 60681 0.5420 +1292 64175 0.6910 +1292 78987 0.4930 +1292 79147 0.4790 +1292 79709 0.7520 +1292 80781 0.7180 +1292 81578 0.5520 +1292 84168 0.4060 +1292 84570 0.5920 +1292 85301 0.6130 +1292 91522 0.5830 +1292 114898 0.4870 +1292 131873 0.7370 +1292 136227 0.5200 +1292 169044 0.5990 +1292 255631 0.5980 +1292 283208 0.5250 +1292 338872 0.4670 +1292 340267 0.5350 +1292 375790 0.4940 +1293 1294 0.5490 +1293 1295 0.5850 +1293 1296 0.6810 +1293 1297 0.4830 +1293 1298 0.4740 +1293 1299 0.4920 +1293 1300 0.5360 +1293 1301 0.8260 +1293 1302 0.7170 +1293 1303 0.7880 +1293 1305 0.4950 +1293 1306 0.6890 +1293 1307 0.7500 +1293 1308 0.4840 +1293 1310 0.5230 +1293 1462 0.6710 +1293 1490 0.6030 +1293 1499 0.4450 +1293 1634 0.6570 +1293 1756 0.6210 +1293 2114 0.4020 +1293 2192 0.4990 +1293 2199 0.4240 +1293 2200 0.7860 +1293 2244 0.4380 +1293 2331 0.4780 +1293 2335 0.7360 +1293 2627 0.4020 +1293 2791 0.4360 +1293 3069 0.6490 +1293 3122 0.4070 +1293 3127 0.4550 +1293 3339 0.6250 +1293 3655 0.7250 +1293 3672 0.8190 +1293 3673 0.7810 +1293 3674 0.6960 +1293 3675 0.7610 +1293 3676 0.7370 +1293 3678 0.8700 +1293 3679 0.7660 +1293 3680 0.7330 +1293 3685 0.7430 +1293 3688 0.8590 +1293 3690 0.8290 +1293 3691 0.7540 +1293 3693 0.8350 +1293 3694 0.7470 +1293 3695 0.7090 +1293 3696 0.7220 +1293 3908 0.6480 +1293 3910 0.5870 +1293 3911 0.6010 +1293 3912 0.7600 +1293 3914 0.4110 +1293 3915 0.5490 +1293 4015 0.4410 +1293 4016 0.4930 +1293 4053 0.4080 +1293 4060 0.8530 +1293 4313 0.4940 +1293 4318 0.5920 +1293 4684 0.5660 +1293 4811 0.4840 +1293 4969 0.4420 +1293 5033 0.4790 +1293 5034 0.5440 +1293 5118 0.6540 +1293 5154 0.5430 +1293 5155 0.6070 +1293 5156 0.5560 +1293 5159 0.6330 +1293 5211 0.6460 +1293 5328 0.4800 +1293 5351 0.7820 +1293 5352 0.6540 +1293 5479 0.5450 +1293 5747 0.6850 +1293 6347 0.4990 +1293 6355 0.4120 +1293 6382 0.6860 +1293 6385 0.6960 +1293 6591 0.4770 +1293 6678 0.5560 +1293 6696 0.5290 +1293 6876 0.5700 +1293 7045 0.4890 +1293 7057 0.6640 +1293 7058 0.7990 +1293 7059 0.5540 +1293 7060 0.5810 +1293 7070 0.5840 +1293 7076 0.4470 +1293 7114 0.4410 +1293 7373 0.6070 +1293 7429 0.5280 +1293 7431 0.5970 +1293 8038 0.4950 +1293 8291 0.4180 +1293 8515 0.8160 +1293 8516 0.7520 +1293 8974 0.5270 +1293 8985 0.6070 +1293 9358 0.4170 +1293 9509 0.4870 +1293 10000 0.4810 +1293 10105 0.4110 +1293 10491 0.5310 +1293 10536 0.5240 +1293 10631 0.8190 +1293 11167 0.4190 +1293 22795 0.6800 +1293 22801 0.8200 +1293 23127 0.5720 +1293 25878 0.4980 +1293 30008 0.4010 +1293 50509 0.6130 +1293 51206 0.9130 +1293 54829 0.4570 +1293 55214 0.6300 +1293 55279 0.4330 +1293 57124 0.4250 +1293 57190 0.4230 +1293 57642 0.5290 +1293 64175 0.7060 +1293 64518 0.4610 +1293 79147 0.4760 +1293 79709 0.5580 +1293 80781 0.5390 +1293 81578 0.5410 +1293 84168 0.5090 +1293 84570 0.4540 +1293 85301 0.6830 +1293 91522 0.4640 +1293 115908 0.4360 +1293 127435 0.4320 +1293 131873 0.5250 +1293 136227 0.4810 +1293 138162 0.4940 +1293 169044 0.5260 +1293 170622 0.5460 +1293 171024 0.4230 +1293 200162 0.4610 +1293 255631 0.5140 +1293 283208 0.5980 +1293 284217 0.5270 +1293 340267 0.4910 +1293 375307 0.4610 +1293 389827 0.4490 +1294 1295 0.5100 +1294 1296 0.5180 +1294 1297 0.4910 +1294 1298 0.4800 +1294 1299 0.4450 +1294 1300 0.4980 +1294 1301 0.5260 +1294 1302 0.4840 +1294 1303 0.8030 +1294 1305 0.4840 +1294 1306 0.5460 +1294 1307 0.6210 +1294 1308 0.6510 +1294 1310 0.4990 +1294 1453 0.4080 +1294 1522 0.5250 +1294 1537 0.6350 +1294 1810 0.6930 +1294 2153 0.5080 +1294 2157 0.5200 +1294 2200 0.5010 +1294 2335 0.6620 +1294 2348 0.5350 +1294 2706 0.4850 +1294 2801 0.5080 +1294 2890 0.4990 +1294 3119 0.4270 +1294 3655 0.4390 +1294 3675 0.4830 +1294 3691 0.5310 +1294 3852 0.5300 +1294 3861 0.5570 +1294 3872 0.4540 +1294 3908 0.4440 +1294 3909 0.8330 +1294 3910 0.6350 +1294 3911 0.6760 +1294 3912 0.4910 +1294 3914 0.8940 +1294 3915 0.6870 +1294 3918 0.9270 +1294 3998 0.5000 +1294 4253 0.5680 +1294 4312 0.6730 +1294 4314 0.5570 +1294 4316 0.5050 +1294 4317 0.5320 +1294 4319 0.6670 +1294 4321 0.4320 +1294 4322 0.5060 +1294 4905 0.5170 +1294 5033 0.4810 +1294 5034 0.5190 +1294 5265 0.5500 +1294 5339 0.5650 +1294 5351 0.6600 +1294 5352 0.6430 +1294 5479 0.5470 +1294 6396 0.5120 +1294 6811 0.5040 +1294 7022 0.4320 +1294 7039 0.5270 +1294 7057 0.6540 +1294 7092 0.4760 +1294 7093 0.4370 +1294 7124 0.4010 +1294 7348 0.4370 +1294 7373 0.7740 +1294 7381 0.6270 +1294 7384 0.6490 +1294 7448 0.4230 +1294 8061 0.4680 +1294 8615 0.5010 +1294 8774 0.5000 +1294 8775 0.5000 +1294 8974 0.5200 +1294 8985 0.6530 +1294 9117 0.4990 +1294 9507 0.5010 +1294 9509 0.6080 +1294 9554 0.5050 +1294 9570 0.5070 +1294 9632 0.5210 +1294 9871 0.5130 +1294 9919 0.5010 +1294 10113 0.5010 +1294 10175 0.5070 +1294 10282 0.5000 +1294 10342 0.5360 +1294 10427 0.7540 +1294 10484 0.7430 +1294 10491 0.5140 +1294 10536 0.5260 +1294 10652 0.5130 +1294 10802 0.7450 +1294 10959 0.5030 +1294 10960 0.5080 +1294 10972 0.5000 +1294 11196 0.5140 +1294 22872 0.5090 +1294 23127 0.5200 +1294 23256 0.5030 +1294 23367 0.8150 +1294 25960 0.4310 +1294 26984 0.5030 +1294 27335 0.4970 +1294 50509 0.5420 +1294 51128 0.5060 +1294 55014 0.5100 +1294 55214 0.5870 +1294 55612 0.5980 +1294 57642 0.4770 +1294 63908 0.4990 +1294 64175 0.5350 +1294 64689 0.5110 +1294 79709 0.5250 +1294 79748 0.4990 +1294 80781 0.6010 +1294 81562 0.5090 +1294 81578 0.4750 +1294 84570 0.4570 +1294 85301 0.5580 +1294 89866 0.4990 +1294 90411 0.5030 +1294 91522 0.4530 +1294 131873 0.4600 +1294 136227 0.4260 +1294 149111 0.5000 +1294 169044 0.5360 +1294 171017 0.5100 +1294 254263 0.4990 +1294 255631 0.4640 +1294 283208 0.4730 +1294 340267 0.4620 +1294 375056 0.9610 +1294 440387 0.4040 +1295 1296 0.9270 +1295 1297 0.5250 +1295 1298 0.5320 +1295 1299 0.5270 +1295 1300 0.7810 +1295 1301 0.6180 +1295 1302 0.5240 +1295 1303 0.6700 +1295 1305 0.5720 +1295 1306 0.8010 +1295 1307 0.5830 +1295 1308 0.5350 +1295 1310 0.5240 +1295 1404 0.5400 +1295 1634 0.4300 +1295 1810 0.7620 +1295 2058 0.4180 +1295 2152 0.5280 +1295 2199 0.4250 +1295 2200 0.5860 +1295 2335 0.4480 +1295 3075 0.4700 +1295 3673 0.5470 +1295 3908 0.4410 +1295 3909 0.4090 +1295 3910 0.5370 +1295 3912 0.4550 +1295 3915 0.4420 +1295 3990 0.4400 +1295 4015 0.4960 +1295 4053 0.4100 +1295 4060 0.4390 +1295 4147 0.5030 +1295 4811 0.4050 +1295 5033 0.5200 +1295 5034 0.5260 +1295 5118 0.4710 +1295 5351 0.6160 +1295 5352 0.6490 +1295 5479 0.5440 +1295 5890 0.4340 +1295 7046 0.5560 +1295 7057 0.4320 +1295 7058 0.5900 +1295 7078 0.4850 +1295 7373 0.6140 +1295 7450 0.6730 +1295 8076 0.4190 +1295 8974 0.5570 +1295 8985 0.5810 +1295 9358 0.5360 +1295 9507 0.5270 +1295 9509 0.5950 +1295 9635 0.4410 +1295 10175 0.4200 +1295 10491 0.6040 +1295 10536 0.5860 +1295 10631 0.5530 +1295 11259 0.5250 +1295 22795 0.4020 +1295 22801 0.5480 +1295 23127 0.5460 +1295 23539 0.5810 +1295 30008 0.4250 +1295 50509 0.5780 +1295 51206 0.9450 +1295 54829 0.4180 +1295 55214 0.6310 +1295 56999 0.5010 +1295 57642 0.5540 +1295 64175 0.6380 +1295 79709 0.5310 +1295 80781 0.6500 +1295 81578 0.5780 +1295 84570 0.5750 +1295 85301 0.5420 +1295 89866 0.4260 +1295 91522 0.6420 +1295 131149 0.5980 +1295 131873 0.5020 +1295 136227 0.5300 +1295 145173 0.6320 +1295 149111 0.4110 +1295 169044 0.4930 +1295 255631 0.5370 +1295 283208 0.4980 +1295 340267 0.5650 +1295 387715 0.5960 +1295 388818 0.5030 +1296 1297 0.5190 +1296 1298 0.5610 +1296 1299 0.6480 +1296 1300 0.5520 +1296 1301 0.5840 +1296 1302 0.5250 +1296 1303 0.6460 +1296 1305 0.5670 +1296 1306 0.5610 +1296 1307 0.7180 +1296 1308 0.5880 +1296 1310 0.5080 +1296 1810 0.6690 +1296 2058 0.4240 +1296 2152 0.5560 +1296 2200 0.4030 +1296 2207 0.4240 +1296 2331 0.4540 +1296 2335 0.5850 +1296 3673 0.5210 +1296 3850 0.4390 +1296 3855 0.4950 +1296 3859 0.4320 +1296 3880 0.4040 +1296 3915 0.4480 +1296 4053 0.4020 +1296 4166 0.5140 +1296 4306 0.4310 +1296 5033 0.4470 +1296 5034 0.5710 +1296 5179 0.4060 +1296 5351 0.5940 +1296 5352 0.6790 +1296 5479 0.5460 +1296 6529 0.4800 +1296 6543 0.5230 +1296 6925 0.7710 +1296 7045 0.4260 +1296 7373 0.7570 +1296 7450 0.6910 +1296 8974 0.7690 +1296 8985 0.5580 +1296 9719 0.5520 +1296 10491 0.7280 +1296 10536 0.5300 +1296 11081 0.4200 +1296 23127 0.8180 +1296 25966 0.4140 +1296 30813 0.8950 +1296 50509 0.5420 +1296 51206 0.9490 +1296 54829 0.5160 +1296 55033 0.4290 +1296 55069 0.4480 +1296 55214 0.5650 +1296 57642 0.5950 +1296 64175 0.6520 +1296 78989 0.5130 +1296 79709 0.5270 +1296 80781 0.7370 +1296 81035 0.4570 +1296 81578 0.5680 +1296 81794 0.5860 +1296 83959 0.9620 +1296 84570 0.6160 +1296 84627 0.6400 +1296 85301 0.5990 +1296 91522 0.6080 +1296 116159 0.5830 +1296 123624 0.6850 +1296 125336 0.7150 +1296 131873 0.5360 +1296 136227 0.6030 +1296 163782 0.4970 +1296 169044 0.5370 +1296 255631 0.5890 +1296 283208 0.5330 +1296 340267 0.5540 +1297 1298 0.9880 +1297 1299 0.9930 +1297 1300 0.5680 +1297 1301 0.7520 +1297 1302 0.6890 +1297 1303 0.8020 +1297 1305 0.5360 +1297 1306 0.5160 +1297 1307 0.7680 +1297 1308 0.5610 +1297 1310 0.5800 +1297 1311 0.6070 +1297 1404 0.8390 +1297 1836 0.8310 +1297 2138 0.4410 +1297 2201 0.4050 +1297 2331 0.4460 +1297 3655 0.6920 +1297 3672 0.7090 +1297 3673 0.8060 +1297 3674 0.6700 +1297 3675 0.7910 +1297 3676 0.6660 +1297 3678 0.6740 +1297 3679 0.6870 +1297 3680 0.6720 +1297 3685 0.6830 +1297 3688 0.6890 +1297 3690 0.6670 +1297 3691 0.6890 +1297 3693 0.6870 +1297 3694 0.7040 +1297 3695 0.6790 +1297 3696 0.6870 +1297 4146 0.7390 +1297 4148 0.8910 +1297 4314 0.5960 +1297 4322 0.6790 +1297 4684 0.5870 +1297 5033 0.4910 +1297 5034 0.5160 +1297 5154 0.5000 +1297 5155 0.5200 +1297 5351 0.6480 +1297 5352 0.5810 +1297 5479 0.5460 +1297 5521 0.4020 +1297 5747 0.6580 +1297 6382 0.6510 +1297 6385 0.6600 +1297 6585 0.4230 +1297 6660 0.5100 +1297 6662 0.5830 +1297 6696 0.4970 +1297 6712 0.4910 +1297 7007 0.4750 +1297 7057 0.5070 +1297 7058 0.4740 +1297 7059 0.5870 +1297 7060 0.5460 +1297 7373 0.7800 +1297 7428 0.4220 +1297 8200 0.4390 +1297 8515 0.6680 +1297 8516 0.6980 +1297 8785 0.6140 +1297 8974 0.4880 +1297 8985 0.5990 +1297 9507 0.4410 +1297 9508 0.4510 +1297 10491 0.5560 +1297 10536 0.5070 +1297 10584 0.4780 +1297 10882 0.4460 +1297 11061 0.4630 +1297 22801 0.7040 +1297 23127 0.5140 +1297 23143 0.4110 +1297 50509 0.5080 +1297 51206 0.9040 +1297 54776 0.6440 +1297 54829 0.5380 +1297 55214 0.5590 +1297 55553 0.4900 +1297 55821 0.4160 +1297 57642 0.5470 +1297 64175 0.5230 +1297 79709 0.5020 +1297 80781 0.6610 +1297 81578 0.5270 +1297 84570 0.5610 +1297 84695 0.4490 +1297 85301 0.5600 +1297 91522 0.5350 +1297 93986 0.4820 +1297 115908 0.4200 +1297 131873 0.5040 +1297 136227 0.5430 +1297 147372 0.4870 +1297 169044 0.5570 +1297 255631 0.5440 +1297 283208 0.5080 +1297 340267 0.5370 +1297 389084 0.4370 +1298 1299 0.9920 +1298 1300 0.5670 +1298 1301 0.6730 +1298 1302 0.6160 +1298 1303 0.7880 +1298 1305 0.5220 +1298 1306 0.5100 +1298 1307 0.7730 +1298 1308 0.5220 +1298 1310 0.5120 +1298 1311 0.7360 +1298 1404 0.7830 +1298 1836 0.8700 +1298 2200 0.4080 +1298 2331 0.4160 +1298 3199 0.4010 +1298 3381 0.4570 +1298 3655 0.6760 +1298 3672 0.7750 +1298 3673 0.7040 +1298 3674 0.6610 +1298 3675 0.6810 +1298 3676 0.6680 +1298 3678 0.6820 +1298 3679 0.7010 +1298 3680 0.6760 +1298 3685 0.6880 +1298 3688 0.6760 +1298 3690 0.6670 +1298 3691 0.6970 +1298 3693 0.6670 +1298 3694 0.6840 +1298 3695 0.6850 +1298 3696 0.6580 +1298 3915 0.5000 +1298 4148 0.9210 +1298 4314 0.5840 +1298 4322 0.5920 +1298 4481 0.4020 +1298 4610 0.6110 +1298 4684 0.5480 +1298 5033 0.4390 +1298 5034 0.5150 +1298 5154 0.5270 +1298 5155 0.5200 +1298 5351 0.6740 +1298 5352 0.5500 +1298 5479 0.5580 +1298 5538 0.4490 +1298 5747 0.6580 +1298 6382 0.6600 +1298 6385 0.6600 +1298 6442 0.4280 +1298 6660 0.4110 +1298 6662 0.4360 +1298 6696 0.4540 +1298 7057 0.4620 +1298 7058 0.7210 +1298 7059 0.6600 +1298 7060 0.5050 +1298 7373 0.7830 +1298 8483 0.8030 +1298 8515 0.7010 +1298 8516 0.6990 +1298 8785 0.4860 +1298 8974 0.4430 +1298 8985 0.7940 +1298 9132 0.4600 +1298 10491 0.5720 +1298 10536 0.5030 +1298 22801 0.6940 +1298 23127 0.7530 +1298 50509 0.5030 +1298 51206 0.9000 +1298 54829 0.6790 +1298 55214 0.5880 +1298 55759 0.6810 +1298 56172 0.4360 +1298 57642 0.5160 +1298 64175 0.5910 +1298 64748 0.4680 +1298 78989 0.4490 +1298 79709 0.5400 +1298 80781 0.5210 +1298 81578 0.5390 +1298 84570 0.5660 +1298 84695 0.4780 +1298 85301 0.5690 +1298 91522 0.5640 +1298 128218 0.4070 +1298 131873 0.4890 +1298 136227 0.5530 +1298 169044 0.5680 +1298 255631 0.5080 +1298 283208 0.4600 +1298 340267 0.6310 +1299 1300 0.5380 +1299 1301 0.7150 +1299 1302 0.6250 +1299 1303 0.7510 +1299 1305 0.5390 +1299 1306 0.4800 +1299 1307 0.7640 +1299 1308 0.4680 +1299 1310 0.5040 +1299 1311 0.7340 +1299 1404 0.5620 +1299 1836 0.8210 +1299 1893 0.4200 +1299 1956 0.4730 +1299 2335 0.4370 +1299 3655 0.7570 +1299 3672 0.7040 +1299 3673 0.7890 +1299 3674 0.6610 +1299 3675 0.7690 +1299 3676 0.6700 +1299 3678 0.6830 +1299 3679 0.7140 +1299 3680 0.6870 +1299 3685 0.6710 +1299 3688 0.6880 +1299 3690 0.6760 +1299 3691 0.7040 +1299 3693 0.6770 +1299 3694 0.6980 +1299 3695 0.7050 +1299 3696 0.6640 +1299 4146 0.5440 +1299 4148 0.9290 +1299 4314 0.5740 +1299 4318 0.4440 +1299 4322 0.5340 +1299 4684 0.5470 +1299 5033 0.4740 +1299 5034 0.5080 +1299 5154 0.5180 +1299 5155 0.5140 +1299 5351 0.7610 +1299 5352 0.5550 +1299 5479 0.5550 +1299 5747 0.6640 +1299 5753 0.4100 +1299 6382 0.6730 +1299 6385 0.6740 +1299 6696 0.4270 +1299 6885 0.4230 +1299 7007 0.4780 +1299 7057 0.5110 +1299 7058 0.7560 +1299 7059 0.6850 +1299 7060 0.4890 +1299 7373 0.7680 +1299 8483 0.8190 +1299 8515 0.7040 +1299 8516 0.6860 +1299 8785 0.6790 +1299 8974 0.4420 +1299 8985 0.8170 +1299 9586 0.4190 +1299 10491 0.5460 +1299 10536 0.5170 +1299 10584 0.4560 +1299 22801 0.6740 +1299 23127 0.6960 +1299 50509 0.5090 +1299 51206 0.9000 +1299 54829 0.7050 +1299 55214 0.6030 +1299 57642 0.4880 +1299 63827 0.4450 +1299 63910 0.4010 +1299 64175 0.5220 +1299 78989 0.4150 +1299 79709 0.5040 +1299 80781 0.6750 +1299 81578 0.4940 +1299 84570 0.5040 +1299 84695 0.4480 +1299 85301 0.5390 +1299 91522 0.5180 +1299 131873 0.5210 +1299 136227 0.5180 +1299 169044 0.5030 +1299 255631 0.5260 +1299 283208 0.4610 +1299 340267 0.5040 +1300 1301 0.8770 +1300 1302 0.5190 +1300 1303 0.6100 +1300 1305 0.5250 +1300 1306 0.6380 +1300 1307 0.5120 +1300 1308 0.4790 +1300 1310 0.4880 +1300 1311 0.7680 +1300 1404 0.4970 +1300 1499 0.4160 +1300 1513 0.4880 +1300 1634 0.4470 +1300 1747 0.6320 +1300 1810 0.5570 +1300 1833 0.5460 +1300 2034 0.5570 +1300 2261 0.4310 +1300 2331 0.4630 +1300 2335 0.6020 +1300 2444 0.5660 +1300 2487 0.4040 +1300 2597 0.4900 +1300 2980 0.5460 +1300 3381 0.7870 +1300 3549 0.7450 +1300 3624 0.4600 +1300 3673 0.4140 +1300 3675 0.4310 +1300 3688 0.5510 +1300 3690 0.4390 +1300 4146 0.4200 +1300 4148 0.6020 +1300 4208 0.4280 +1300 4312 0.6180 +1300 4314 0.5420 +1300 4318 0.4590 +1300 4320 0.8120 +1300 4322 0.9360 +1300 4488 0.4430 +1300 4958 0.4340 +1300 5033 0.4850 +1300 5034 0.7010 +1300 5351 0.5650 +1300 5352 0.6530 +1300 5479 0.5460 +1300 5593 0.5230 +1300 5744 0.6230 +1300 5745 0.5810 +1300 6422 0.4820 +1300 6424 0.4640 +1300 6660 0.6120 +1300 6662 0.7950 +1300 6678 0.4400 +1300 6696 0.5490 +1300 6736 0.4430 +1300 7040 0.4660 +1300 7043 0.5810 +1300 7058 0.5680 +1300 7078 0.4140 +1300 7291 0.4750 +1300 7373 0.5680 +1300 8038 0.5780 +1300 8200 0.5240 +1300 8483 0.4250 +1300 8838 0.6180 +1300 8840 0.5210 +1300 8974 0.4980 +1300 8985 0.5530 +1300 9321 0.5890 +1300 9358 0.4120 +1300 9507 0.8440 +1300 9508 0.7410 +1300 9509 0.6160 +1300 10216 0.5500 +1300 10491 0.6180 +1300 10536 0.5130 +1300 10631 0.5770 +1300 11096 0.6620 +1300 22801 0.4310 +1300 23127 0.6420 +1300 23213 0.5210 +1300 26585 0.4030 +1300 50507 0.5730 +1300 50509 0.5080 +1300 50964 0.4180 +1300 54829 0.6210 +1300 55214 0.5590 +1300 55553 0.6030 +1300 57642 0.5090 +1300 64175 0.7350 +1300 79709 0.5090 +1300 80005 0.5130 +1300 80781 0.5680 +1300 81578 0.5050 +1300 83451 0.4180 +1300 84525 0.4560 +1300 84570 0.5130 +1300 84624 0.6320 +1300 85301 0.6800 +1300 90952 0.4060 +1300 91522 0.5030 +1300 115908 0.5600 +1300 117581 0.4890 +1300 121340 0.5980 +1300 131149 0.5950 +1300 131578 0.4390 +1300 131873 0.5090 +1300 136227 0.5060 +1300 145173 0.4190 +1300 169044 0.5040 +1300 255631 0.5240 +1300 283208 0.7060 +1300 284217 0.4060 +1300 340267 0.5170 +1300 344752 0.4020 +1300 387715 0.4320 +1301 1302 0.9520 +1301 1303 0.6780 +1301 1305 0.5240 +1301 1306 0.5930 +1301 1307 0.8440 +1301 1308 0.4870 +1301 1310 0.5110 +1301 1311 0.6030 +1301 1404 0.8110 +1301 1462 0.4980 +1301 1500 0.4190 +1301 1634 0.4240 +1301 1833 0.6260 +1301 2138 0.4720 +1301 2191 0.5250 +1301 2192 0.4070 +1301 2200 0.6020 +1301 2201 0.4810 +1301 2331 0.5110 +1301 2335 0.5110 +1301 3113 0.5210 +1301 3381 0.4300 +1301 3383 0.4690 +1301 3624 0.4780 +1301 3673 0.6020 +1301 3675 0.5440 +1301 3685 0.4790 +1301 3690 0.5620 +1301 3769 0.6420 +1301 3908 0.4570 +1301 3909 0.4170 +1301 3910 0.4700 +1301 3912 0.4220 +1301 3914 0.4110 +1301 3915 0.4320 +1301 4015 0.4500 +1301 4053 0.4040 +1301 4060 0.9490 +1301 4148 0.6580 +1301 4312 0.5990 +1301 4314 0.4430 +1301 4318 0.6160 +1301 4320 0.7320 +1301 4322 0.6090 +1301 4921 0.7700 +1301 5033 0.5110 +1301 5034 0.5200 +1301 5101 0.4130 +1301 5118 0.7650 +1301 5351 0.7010 +1301 5352 0.6580 +1301 5479 0.5440 +1301 6257 0.4370 +1301 6387 0.5420 +1301 6422 0.5390 +1301 6423 0.4560 +1301 6424 0.4260 +1301 6662 0.4770 +1301 6678 0.5830 +1301 6696 0.5490 +1301 6712 0.4440 +1301 7040 0.5690 +1301 7057 0.5850 +1301 7058 0.8980 +1301 7078 0.4050 +1301 7092 0.4970 +1301 7093 0.4580 +1301 7373 0.7300 +1301 7412 0.5100 +1301 8038 0.5160 +1301 8076 0.5190 +1301 8200 0.4920 +1301 8483 0.7760 +1301 8840 0.4080 +1301 8974 0.5100 +1301 8985 0.6120 +1301 9507 0.4130 +1301 9508 0.6130 +1301 9509 0.6970 +1301 10085 0.5200 +1301 10491 0.5700 +1301 10536 0.5520 +1301 10631 0.6480 +1301 11096 0.4140 +1301 11107 0.4740 +1301 22801 0.5410 +1301 23127 0.5680 +1301 23213 0.5420 +1301 25878 0.4480 +1301 26577 0.6080 +1301 26585 0.5090 +1301 26872 0.4050 +1301 50507 0.5500 +1301 50509 0.9100 +1301 54829 0.8140 +1301 55214 0.5960 +1301 57642 0.4870 +1301 64175 0.5950 +1301 64399 0.4590 +1301 79709 0.5410 +1301 80781 0.6440 +1301 81578 0.5640 +1301 84525 0.4190 +1301 84570 0.5050 +1301 84624 0.4180 +1301 84695 0.4720 +1301 85301 0.7040 +1301 91522 0.5250 +1301 115294 0.5960 +1301 115908 0.4740 +1301 129446 0.4110 +1301 131578 0.5250 +1301 131873 0.5270 +1301 136227 0.6370 +1301 137970 0.4140 +1301 140766 0.5740 +1301 144100 0.5820 +1301 169044 0.5560 +1301 221044 0.4210 +1301 255631 0.5710 +1301 283208 0.5780 +1301 284217 0.5740 +1301 340267 0.5470 +1301 642273 0.4080 +1302 1303 0.5200 +1302 1305 0.5050 +1302 1306 0.5250 +1302 1307 0.7940 +1302 1308 0.5250 +1302 1310 0.4930 +1302 1311 0.5410 +1302 1345 0.4910 +1302 1404 0.7020 +1302 2070 0.5060 +1302 2138 0.4510 +1302 2201 0.4670 +1302 2706 0.4790 +1302 2707 0.4060 +1302 3112 0.5250 +1302 3113 0.5480 +1302 3115 0.4430 +1302 3118 0.4600 +1302 3119 0.5450 +1302 3120 0.5960 +1302 3122 0.4320 +1302 3127 0.4040 +1302 3339 0.4960 +1302 3759 0.4020 +1302 3833 0.7950 +1302 4060 0.9490 +1302 4146 0.4220 +1302 4318 0.4470 +1302 4340 0.4170 +1302 4646 0.4340 +1302 4647 0.4790 +1302 4855 0.4870 +1302 4921 0.4340 +1302 5033 0.4570 +1302 5034 0.5080 +1302 5075 0.4590 +1302 5118 0.8000 +1302 5167 0.5530 +1302 5172 0.4950 +1302 5307 0.4120 +1302 5351 0.6140 +1302 5352 0.5570 +1302 5456 0.4120 +1302 5459 0.4050 +1302 5479 0.5440 +1302 5696 0.4500 +1302 5698 0.4570 +1302 5745 0.4960 +1302 5863 0.7900 +1302 6015 0.6750 +1302 6046 0.4250 +1302 6222 0.8050 +1302 6257 0.8170 +1302 6660 0.4200 +1302 6662 0.4800 +1302 6712 0.4140 +1302 7007 0.5480 +1302 7040 0.4310 +1302 7043 0.4990 +1302 7092 0.4450 +1302 7093 0.4450 +1302 7373 0.5150 +1302 7466 0.4750 +1302 7922 0.7800 +1302 7923 0.8020 +1302 8190 0.6310 +1302 8974 0.4510 +1302 8985 0.6080 +1302 9132 0.5180 +1302 9381 0.5250 +1302 9508 0.5520 +1302 9509 0.5570 +1302 10083 0.4190 +1302 10186 0.5270 +1302 10471 0.7170 +1302 10491 0.5880 +1302 10536 0.5500 +1302 10665 0.5310 +1302 23127 0.6450 +1302 25861 0.4020 +1302 26577 0.4680 +1302 50509 0.9110 +1302 51168 0.5380 +1302 53904 0.4170 +1302 54796 0.4240 +1302 55214 0.5420 +1302 55553 0.4280 +1302 56244 0.4240 +1302 56649 0.4120 +1302 57642 0.5190 +1302 64072 0.4850 +1302 64175 0.5680 +1302 64699 0.5100 +1302 65217 0.4340 +1302 79709 0.5100 +1302 80781 0.4810 +1302 81578 0.5450 +1302 84570 0.5010 +1302 84695 0.4230 +1302 85301 0.5410 +1302 91522 0.5350 +1302 114803 0.4070 +1302 117531 0.5400 +1302 125336 0.4250 +1302 131873 0.5170 +1302 136227 0.5470 +1302 140766 0.5040 +1302 146183 0.5070 +1302 152137 0.4460 +1302 161497 0.5060 +1302 169044 0.5160 +1302 222662 0.8560 +1302 255631 0.4970 +1302 259236 0.4620 +1302 283208 0.4600 +1302 286262 0.4070 +1302 340267 0.5580 +1302 340990 0.4130 +1302 375612 0.6130 +1302 388551 0.4210 +1302 389207 0.4320 +1302 494513 0.4300 +1303 1305 0.6530 +1303 1306 0.6080 +1303 1307 0.8390 +1303 1308 0.5170 +1303 1310 0.6160 +1303 1311 0.5330 +1303 1462 0.6370 +1303 1490 0.4760 +1303 1634 0.5820 +1303 2192 0.4690 +1303 2200 0.6670 +1303 2201 0.4710 +1303 2202 0.5130 +1303 2244 0.4740 +1303 2331 0.5680 +1303 2335 0.4470 +1303 3339 0.4080 +1303 3673 0.5050 +1303 3675 0.6360 +1303 3688 0.5500 +1303 3696 0.4280 +1303 3908 0.7670 +1303 3909 0.4930 +1303 3910 0.5890 +1303 3911 0.6580 +1303 3912 0.7150 +1303 3914 0.5290 +1303 3915 0.7210 +1303 3918 0.4560 +1303 4015 0.5740 +1303 4017 0.4460 +1303 4053 0.4740 +1303 4060 0.7690 +1303 4288 0.4280 +1303 4313 0.7630 +1303 4314 0.4250 +1303 4318 0.5010 +1303 4321 0.8180 +1303 4325 0.5340 +1303 4622 0.4900 +1303 4811 0.4180 +1303 4969 0.4090 +1303 5004 0.4120 +1303 5033 0.5070 +1303 5034 0.5260 +1303 5118 0.5930 +1303 5270 0.4870 +1303 5351 0.7550 +1303 5352 0.8080 +1303 5479 0.5470 +1303 5549 0.5790 +1303 5649 0.4240 +1303 7045 0.4620 +1303 7057 0.5290 +1303 7058 0.7330 +1303 7078 0.4150 +1303 7373 0.7720 +1303 8974 0.5750 +1303 8985 0.7590 +1303 9358 0.4410 +1303 9509 0.5230 +1303 9510 0.4610 +1303 9721 0.4390 +1303 10491 0.5260 +1303 10536 0.5290 +1303 10631 0.6690 +1303 10893 0.4620 +1303 11167 0.4530 +1303 11173 0.4480 +1303 22795 0.4680 +1303 22801 0.4650 +1303 23127 0.7510 +1303 23213 0.4910 +1303 25878 0.4560 +1303 50509 0.7160 +1303 54768 0.4040 +1303 54829 0.4680 +1303 55033 0.4370 +1303 55214 0.5720 +1303 57642 0.4580 +1303 63967 0.4070 +1303 64175 0.5430 +1303 79709 0.6320 +1303 80781 0.5280 +1303 81578 0.5740 +1303 81792 0.4350 +1303 84033 0.4990 +1303 84168 0.5700 +1303 84570 0.5040 +1303 84627 0.4250 +1303 84955 0.6200 +1303 85301 0.6950 +1303 91522 0.4730 +1303 94025 0.4830 +1303 115908 0.4800 +1303 131873 0.5050 +1303 136227 0.4640 +1303 151887 0.4570 +1303 169044 0.8760 +1303 169355 0.4300 +1303 255631 0.5230 +1303 283208 0.5640 +1303 285313 0.4900 +1303 340267 0.5170 +1305 1306 0.5470 +1305 1307 0.7050 +1305 1308 0.5390 +1305 1310 0.5340 +1305 3339 0.5510 +1305 3672 0.5980 +1305 3688 0.5460 +1305 3787 0.4170 +1305 3904 0.4530 +1305 5033 0.7860 +1305 5034 0.5080 +1305 5351 0.6760 +1305 5352 0.6250 +1305 5479 0.5460 +1305 7025 0.4100 +1305 7373 0.5780 +1305 8292 0.5850 +1305 8974 0.4690 +1305 8985 0.7610 +1305 10491 0.5030 +1305 10536 0.5200 +1305 23127 0.7400 +1305 50509 0.7000 +1305 51232 0.4010 +1305 51435 0.5040 +1305 51751 0.4080 +1305 55214 0.5680 +1305 57642 0.5810 +1305 64175 0.5210 +1305 79709 0.5790 +1305 80781 0.5310 +1305 81578 0.5630 +1305 81849 0.4100 +1305 84570 0.5390 +1305 85301 0.7020 +1305 91522 0.5290 +1305 131873 0.5070 +1305 136227 0.5620 +1305 169044 0.5580 +1305 255631 0.5350 +1305 283208 0.4200 +1305 340267 0.5350 +1306 1307 0.5790 +1306 1308 0.5230 +1306 1310 0.6600 +1306 1508 0.5970 +1306 1513 0.4710 +1306 1514 0.4110 +1306 1515 0.4090 +1306 1520 0.4400 +1306 1634 0.4720 +1306 2192 0.4490 +1306 2199 0.5250 +1306 2200 0.5350 +1306 2220 0.4420 +1306 2239 0.8160 +1306 2331 0.4310 +1306 2335 0.5670 +1306 2817 0.7600 +1306 3339 0.5170 +1306 3671 0.4030 +1306 3688 0.4790 +1306 3690 0.4940 +1306 3908 0.4760 +1306 3909 0.4190 +1306 3910 0.5820 +1306 3912 0.6310 +1306 3915 0.6260 +1306 4060 0.5940 +1306 4313 0.5540 +1306 4314 0.5560 +1306 4316 0.5100 +1306 4318 0.5250 +1306 4322 0.4860 +1306 4325 0.5320 +1306 4691 0.4970 +1306 4811 0.6330 +1306 4969 0.4080 +1306 5033 0.4720 +1306 5034 0.5040 +1306 5118 0.4530 +1306 5351 0.6760 +1306 5352 0.5890 +1306 5479 0.5010 +1306 7043 0.4940 +1306 7058 0.6120 +1306 7373 0.7790 +1306 7448 0.5830 +1306 8547 0.4630 +1306 8974 0.4750 +1306 8985 0.5550 +1306 9313 0.4060 +1306 10491 0.5500 +1306 10536 0.5520 +1306 10584 0.4860 +1306 10631 0.4730 +1306 11259 0.4050 +1306 22795 0.5450 +1306 23127 0.5100 +1306 25878 0.5010 +1306 25960 0.4740 +1306 50509 0.6500 +1306 54829 0.5350 +1306 55214 0.6250 +1306 57642 0.4660 +1306 64175 0.6080 +1306 79709 0.5580 +1306 80781 0.9040 +1306 81578 0.5590 +1306 83872 0.4210 +1306 84570 0.5200 +1306 85301 0.5420 +1306 91522 0.5350 +1306 115908 0.5730 +1306 121457 0.4210 +1306 131149 0.6020 +1306 131873 0.6790 +1306 136227 0.5380 +1306 147372 0.4970 +1306 169044 0.4970 +1306 255631 0.5010 +1306 283208 0.5410 +1306 338761 0.4280 +1306 340267 0.5150 +1306 342035 0.4770 +1307 1308 0.6050 +1307 1310 0.4870 +1307 2199 0.4120 +1307 2200 0.6330 +1307 3672 0.6330 +1307 3673 0.6130 +1307 3688 0.5820 +1307 3725 0.5520 +1307 3908 0.4540 +1307 3909 0.5030 +1307 3910 0.5140 +1307 3912 0.4310 +1307 3914 0.4270 +1307 3915 0.4600 +1307 4015 0.4030 +1307 4053 0.4760 +1307 4060 0.7390 +1307 4318 0.8020 +1307 5033 0.5510 +1307 5034 0.5080 +1307 5118 0.4120 +1307 5351 0.6710 +1307 5352 0.6040 +1307 5479 0.5820 +1307 6422 0.4760 +1307 6529 0.5000 +1307 6543 0.5120 +1307 7040 0.4290 +1307 7058 0.5660 +1307 7059 0.4740 +1307 7070 0.4440 +1307 7078 0.4720 +1307 7373 0.8740 +1307 8515 0.6030 +1307 8974 0.4950 +1307 8985 0.7790 +1307 9719 0.5620 +1307 10491 0.5250 +1307 10536 0.5520 +1307 10631 0.4790 +1307 23127 0.6470 +1307 26577 0.4040 +1307 30008 0.5930 +1307 50509 0.8390 +1307 51226 0.4980 +1307 51450 0.4110 +1307 54507 0.4580 +1307 55214 0.5610 +1307 57608 0.4130 +1307 57642 0.5080 +1307 60681 0.4530 +1307 64175 0.6120 +1307 79709 0.6020 +1307 80781 0.5740 +1307 81578 0.5420 +1307 81794 0.5480 +1307 84570 0.5760 +1307 85301 0.7590 +1307 91522 0.5290 +1307 131873 0.5340 +1307 136227 0.6190 +1307 169044 0.5600 +1307 255631 0.6090 +1307 283208 0.5310 +1307 340267 0.5460 +1308 1310 0.4990 +1308 1500 0.5810 +1308 1511 0.4250 +1308 1747 0.5060 +1308 1803 0.4150 +1308 1823 0.4720 +1308 1825 0.4740 +1308 1828 0.7830 +1308 1830 0.8150 +1308 1832 0.5430 +1308 1956 0.5890 +1308 2125 0.6660 +1308 2335 0.5790 +1308 2810 0.5440 +1308 3119 0.6660 +1308 3265 0.5570 +1308 3486 0.4130 +1308 3576 0.4540 +1308 3611 0.4180 +1308 3655 0.9450 +1308 3675 0.6110 +1308 3678 0.4090 +1308 3691 0.9960 +1308 3694 0.5720 +1308 3848 0.4540 +1308 3852 0.7990 +1308 3853 0.4510 +1308 3854 0.4390 +1308 3858 0.4180 +1308 3861 0.8390 +1308 3866 0.5700 +1308 3868 0.4300 +1308 3872 0.4340 +1308 3875 0.4740 +1308 3903 0.5540 +1308 3909 0.9720 +1308 3910 0.8600 +1308 3914 0.9590 +1308 3915 0.5650 +1308 3918 0.9440 +1308 3921 0.4030 +1308 4054 0.4240 +1308 5033 0.4350 +1308 5034 0.5110 +1308 5268 0.5180 +1308 5317 0.4540 +1308 5329 0.4240 +1308 5339 0.9980 +1308 5351 0.5740 +1308 5352 0.5950 +1308 5479 0.5380 +1308 5493 0.8240 +1308 5555 0.4860 +1308 5655 0.4760 +1308 6786 0.4010 +1308 6868 0.6250 +1308 7076 0.4440 +1308 7077 0.4140 +1308 7078 0.4010 +1308 7373 0.5000 +1308 8111 0.5090 +1308 8546 0.4130 +1308 8626 0.5270 +1308 8754 0.6770 +1308 8859 0.4290 +1308 8974 0.4200 +1308 8985 0.7780 +1308 9333 0.4100 +1308 10117 0.6400 +1308 10491 0.5030 +1308 10536 0.5170 +1308 11284 0.4750 +1308 23127 0.5430 +1308 23283 0.5580 +1308 25861 0.5010 +1308 29978 0.4660 +1308 50509 0.5250 +1308 54757 0.5340 +1308 54908 0.5700 +1308 55165 0.4210 +1308 55214 0.5730 +1308 55612 0.6150 +1308 57642 0.5230 +1308 60529 0.4020 +1308 64175 0.5270 +1308 79709 0.5420 +1308 80781 0.6580 +1308 81578 0.5480 +1308 83481 0.4130 +1308 84570 0.5470 +1308 85301 0.5610 +1308 91522 0.4960 +1308 93650 0.4070 +1308 118932 0.4030 +1308 123041 0.5680 +1308 131873 0.4670 +1308 136227 0.6800 +1308 144568 0.4030 +1308 152816 0.5710 +1308 169044 0.5390 +1308 255631 0.5480 +1308 256764 0.5530 +1308 283130 0.4020 +1308 283208 0.4360 +1308 286077 0.6360 +1308 340267 0.5190 +1308 401138 0.6490 +1308 644994 0.5770 +1310 2200 0.4450 +1310 3339 0.4620 +1310 5033 0.4200 +1310 5034 0.5430 +1310 5351 0.5970 +1310 5352 0.5650 +1310 5479 0.5870 +1310 6238 0.4240 +1310 7373 0.4930 +1310 8974 0.4200 +1310 8985 0.5440 +1310 9326 0.4060 +1310 9537 0.4090 +1310 10175 0.5380 +1310 10491 0.6460 +1310 10536 0.5030 +1310 23127 0.5650 +1310 50509 0.5140 +1310 50937 0.4270 +1310 55214 0.5030 +1310 55784 0.4180 +1310 56942 0.4090 +1310 57642 0.4920 +1310 63977 0.4240 +1310 64175 0.6540 +1310 64856 0.8420 +1310 79709 0.5270 +1310 80781 0.6930 +1310 81578 0.6070 +1310 84570 0.5130 +1310 85301 0.5350 +1310 89866 0.4450 +1310 91522 0.5140 +1310 115677 0.4370 +1310 131873 0.4930 +1310 136227 0.6260 +1310 149111 0.5380 +1310 154664 0.4640 +1310 169044 0.5000 +1310 255631 0.5620 +1310 256646 0.4200 +1310 283208 0.4200 +1310 285175 0.4550 +1310 340267 0.5710 +1310 375449 0.4090 +1311 1401 0.6230 +1311 1404 0.7070 +1311 1513 0.4370 +1311 1634 0.8300 +1311 1833 0.4850 +1311 1836 0.4460 +1311 1893 0.5440 +1311 2266 0.4360 +1311 2331 0.8460 +1311 2335 0.9580 +1311 3309 0.4630 +1311 3339 0.4380 +1311 3371 0.4260 +1311 3381 0.4640 +1311 3486 0.4930 +1311 3553 0.4560 +1311 3569 0.4560 +1311 3655 0.6830 +1311 3672 0.7200 +1311 3673 0.7200 +1311 3674 0.9020 +1311 3675 0.9120 +1311 3676 0.6780 +1311 3678 0.7100 +1311 3679 0.6660 +1311 3680 0.6710 +1311 3685 0.9110 +1311 3688 0.9230 +1311 3690 0.9450 +1311 3691 0.6870 +1311 3693 0.6810 +1311 3694 0.6830 +1311 3695 0.6710 +1311 3696 0.6970 +1311 3700 0.4410 +1311 3958 0.4830 +1311 3965 0.5580 +1311 4060 0.5860 +1311 4146 0.7410 +1311 4148 0.9230 +1311 4249 0.4840 +1311 4256 0.4180 +1311 4312 0.4690 +1311 4313 0.5540 +1311 4314 0.6290 +1311 4318 0.4450 +1311 4322 0.6410 +1311 4580 0.6440 +1311 4958 0.5290 +1311 4982 0.4350 +1311 5013 0.4680 +1311 5034 0.4020 +1311 5075 0.4100 +1311 5199 0.7480 +1311 5307 0.4100 +1311 5500 0.4630 +1311 5549 0.5580 +1311 5747 0.6850 +1311 6382 0.9110 +1311 6385 0.9180 +1311 6423 0.4280 +1311 6424 0.4990 +1311 6662 0.6080 +1311 6678 0.4040 +1311 6696 0.4320 +1311 6786 0.4830 +1311 6876 0.6060 +1311 7010 0.4040 +1311 7040 0.6500 +1311 7043 0.5400 +1311 7057 0.4490 +1311 7059 0.6600 +1311 7060 0.8560 +1311 7124 0.4480 +1311 7184 0.4030 +1311 7276 0.4680 +1311 7450 0.4940 +1311 7849 0.4030 +1311 7850 0.4390 +1311 8106 0.4550 +1311 8483 0.6540 +1311 8515 0.7140 +1311 8516 0.6940 +1311 8785 0.5800 +1311 9358 0.4370 +1311 9507 0.5990 +1311 9508 0.5510 +1311 9509 0.4360 +1311 9510 0.4030 +1311 9601 0.4030 +1311 10216 0.7190 +1311 10631 0.5010 +1311 11095 0.4040 +1311 11096 0.5590 +1311 11173 0.9410 +1311 11174 0.4380 +1311 22801 0.7690 +1311 22918 0.4200 +1311 29114 0.5470 +1311 54829 0.5730 +1311 56729 0.4220 +1311 64102 0.5980 +1311 80336 0.4380 +1311 81792 0.8970 +1311 84624 0.4210 +1311 84666 0.4220 +1311 116844 0.4490 +1311 132430 0.4380 +1311 148113 0.5240 +1311 340529 0.4370 +1311 440387 0.4540 +1312 1392 0.4370 +1312 1394 0.5710 +1312 1399 0.4570 +1312 1499 0.4500 +1312 1543 0.9850 +1312 1544 0.6080 +1312 1545 0.9710 +1312 1548 0.4530 +1312 1555 0.4690 +1312 1557 0.5360 +1312 1559 0.6880 +1312 1565 0.6820 +1312 1571 0.4050 +1312 1576 0.6030 +1312 1577 0.5330 +1312 1586 0.5960 +1312 1588 0.6140 +1312 1592 0.4110 +1312 1610 0.6070 +1312 1621 0.9790 +1312 1636 0.6650 +1312 1644 0.9810 +1312 1728 0.4340 +1312 1812 0.7150 +1312 1813 0.9240 +1312 1814 0.7830 +1312 1815 0.9420 +1312 1816 0.6590 +1312 1890 0.5900 +1312 2099 0.5870 +1312 2100 0.4650 +1312 2166 0.4470 +1312 2289 0.6210 +1312 2539 0.5020 +1312 2555 0.5110 +1312 2559 0.4970 +1312 2571 0.5300 +1312 2629 0.4690 +1312 2784 0.4160 +1312 2812 0.5450 +1312 2877 0.5430 +1312 2878 0.5480 +1312 2880 0.5360 +1312 2882 0.5480 +1312 2904 0.4790 +1312 2908 0.5580 +1312 2913 0.7370 +1312 2928 0.5620 +1312 2944 0.5230 +1312 2950 0.5530 +1312 3084 0.5500 +1312 3176 0.4480 +1312 3292 0.5400 +1312 3303 0.4080 +1312 3304 0.4180 +1312 3350 0.6470 +1312 3351 0.5800 +1312 3356 0.8640 +1312 3358 0.5730 +1312 3359 0.4800 +1312 3688 0.4100 +1312 3689 0.4330 +1312 3690 0.4030 +1312 3787 0.4460 +1312 3938 0.4210 +1312 4128 0.9960 +1312 4129 0.9960 +1312 4137 0.4270 +1312 4143 0.5880 +1312 4144 0.5950 +1312 4311 0.4890 +1312 4524 0.7910 +1312 4548 0.4360 +1312 4835 0.4580 +1312 4852 0.4330 +1312 4985 0.7300 +1312 4988 0.8700 +1312 5020 0.4640 +1312 5021 0.5910 +1312 5053 0.4010 +1312 5054 0.4740 +1312 5226 0.6720 +1312 5243 0.5900 +1312 5409 0.9650 +1312 5413 0.6080 +1312 5443 0.4890 +1312 5533 0.5830 +1312 5625 0.8900 +1312 5649 0.4760 +1312 5902 0.5440 +1312 5999 0.5720 +1312 6334 0.4060 +1312 6335 0.4180 +1312 6389 0.4530 +1312 6530 0.6960 +1312 6531 0.9170 +1312 6532 0.9430 +1312 6554 0.4270 +1312 6570 0.4050 +1312 6571 0.6720 +1312 6576 0.5800 +1312 6616 0.4280 +1312 6622 0.5750 +1312 6625 0.4430 +1312 6648 0.4050 +1312 6783 0.4140 +1312 6822 0.4240 +1312 6899 0.7020 +1312 7054 0.7890 +1312 7083 0.6380 +1312 7122 0.4890 +1312 7157 0.4670 +1312 7166 0.6360 +1312 7172 0.8150 +1312 7290 0.6550 +1312 7353 0.4310 +1312 7355 0.6100 +1312 7363 0.8050 +1312 7364 0.8640 +1312 7365 0.8100 +1312 7366 0.8220 +1312 7367 0.7950 +1312 7442 0.4180 +1312 7625 0.5640 +1312 7915 0.5330 +1312 8214 0.6530 +1312 8218 0.4030 +1312 8542 0.6730 +1312 8639 0.9060 +1312 8905 0.4470 +1312 8907 0.4930 +1312 9177 0.5420 +1312 9319 0.4070 +1312 9360 0.7040 +1312 9369 0.4140 +1312 9446 0.5190 +1312 9563 0.5340 +1312 9722 0.5110 +1312 9993 0.6890 +1312 10279 0.4160 +1312 10587 0.8060 +1312 10720 0.8100 +1312 11315 0.4020 +1312 23286 0.4200 +1312 23316 0.4040 +1312 23646 0.4100 +1312 23780 0.6730 +1312 27185 0.7150 +1312 29801 0.8140 +1312 54084 0.4080 +1312 54490 0.8050 +1312 54575 0.8590 +1312 54576 0.8590 +1312 54577 0.8580 +1312 54578 0.8600 +1312 54579 0.8180 +1312 54584 0.7480 +1312 54600 0.8820 +1312 54657 0.8590 +1312 54658 0.8500 +1312 54659 0.8180 +1312 58510 0.4960 +1312 64976 0.4090 +1312 79154 0.4570 +1312 79799 0.8050 +1312 80830 0.7670 +1312 80831 0.6490 +1312 80832 0.7260 +1312 83943 0.4540 +1312 84062 0.8200 +1312 84152 0.5400 +1312 85359 0.6330 +1312 91752 0.7120 +1312 118881 0.4800 +1312 119391 0.4520 +1312 121278 0.5990 +1312 128989 0.4350 +1312 129831 0.4090 +1312 130340 0.5300 +1312 135152 0.5230 +1312 144717 0.4120 +1312 154664 0.4300 +1312 220074 0.9170 +1312 255239 0.8520 +1312 257202 0.5370 +1312 267012 0.7450 +1312 319100 0.4910 +1312 400668 0.4030 +1312 493869 0.5480 +1312 574537 0.8090 +1312 728378 0.4720 +1312 104909134 0.5100 +1314 1315 0.9990 +1314 1642 0.4690 +1314 1650 0.5860 +1314 2641 0.4260 +1314 2695 0.5810 +1314 3703 0.5270 +1314 3766 0.4260 +1314 3998 0.4020 +1314 4905 0.7040 +1314 4922 0.6080 +1314 4923 0.7030 +1314 5861 0.6370 +1314 6184 0.4120 +1314 6396 0.6570 +1314 6606 0.7950 +1314 6625 0.4150 +1314 6730 0.4080 +1314 6811 0.7000 +1314 6829 0.4040 +1314 6836 0.8130 +1314 8218 0.6610 +1314 8487 0.4950 +1314 8533 0.4390 +1314 8615 0.5800 +1314 8729 0.7890 +1314 8774 0.5040 +1314 8775 0.5570 +1314 8943 0.4780 +1314 9183 0.8650 +1314 9276 0.9990 +1314 9322 0.4410 +1314 9527 0.5740 +1314 9554 0.6220 +1314 9570 0.6480 +1314 9632 0.6270 +1314 10113 0.4080 +1314 10282 0.6180 +1314 10427 0.5940 +1314 10483 0.6880 +1314 10484 0.6880 +1314 10618 0.4350 +1314 10652 0.5860 +1314 10802 0.4380 +1314 10945 0.7020 +1314 10952 0.6330 +1314 10959 0.6400 +1314 10972 0.9100 +1314 11014 0.6700 +1314 11015 0.6460 +1314 11079 0.4840 +1314 11218 0.5210 +1314 11316 0.9990 +1314 22818 0.9990 +1314 22820 0.9980 +1314 22872 0.7040 +1314 23019 0.5380 +1314 23256 0.5230 +1314 23363 0.4120 +1314 23423 0.7250 +1314 23451 0.5990 +1314 23476 0.5130 +1314 23558 0.4100 +1314 23620 0.6800 +1314 25831 0.5540 +1314 25956 0.5520 +1314 26286 0.9030 +1314 26958 0.9960 +1314 27044 0.4330 +1314 29088 0.4560 +1314 29113 0.4110 +1314 29927 0.4120 +1314 51014 0.9040 +1314 51226 0.9920 +1314 51272 0.6660 +1314 51290 0.4840 +1314 51594 0.6630 +1314 53407 0.6980 +1314 54732 0.6570 +1314 55018 0.4720 +1314 55127 0.4420 +1314 55204 0.4780 +1314 55275 0.4490 +1314 55738 0.6790 +1314 55850 0.5550 +1314 56681 0.4510 +1314 57147 0.4670 +1314 57410 0.9550 +1314 60561 0.6820 +1314 63908 0.5170 +1314 64083 0.8490 +1314 64319 0.4260 +1314 79170 0.7200 +1314 80267 0.4930 +1314 81876 0.5930 +1314 83548 0.4460 +1314 84364 0.9060 +1314 84955 0.7450 +1314 90324 0.4780 +1314 91369 0.4770 +1314 114960 0.8280 +1314 130162 0.5150 +1314 201595 0.4110 +1314 205428 0.9000 +1314 338917 0.6430 +1315 1603 0.4160 +1315 1604 0.5080 +1315 1778 0.4080 +1315 1994 0.5130 +1315 2058 0.4630 +1315 2773 0.4550 +1315 2800 0.5500 +1315 2801 0.8000 +1315 2802 0.6900 +1315 2803 0.4560 +1315 2804 0.6940 +1315 2886 0.4590 +1315 3309 0.4340 +1315 3633 0.4260 +1315 3703 0.5790 +1315 3776 0.5090 +1315 3777 0.6430 +1315 3839 0.5020 +1315 3840 0.4670 +1315 3916 0.4710 +1315 3920 0.4440 +1315 3998 0.9200 +1315 4057 0.4890 +1315 4122 0.4640 +1315 4124 0.5320 +1315 4905 0.6550 +1315 4942 0.4560 +1315 4952 0.5460 +1315 5091 0.4390 +1315 5140 0.4120 +1315 5436 0.5310 +1315 5584 0.5150 +1315 5682 0.5360 +1315 5701 0.4430 +1315 5861 0.8110 +1315 5862 0.4940 +1315 5868 0.6190 +1315 5870 0.4820 +1315 5877 0.4450 +1315 6396 0.8250 +1315 6710 0.5440 +1315 6711 0.5120 +1315 6729 0.6810 +1315 6734 0.4440 +1315 6745 0.4660 +1315 6811 0.8430 +1315 6836 0.6130 +1315 7157 0.5460 +1315 7167 0.4090 +1315 7184 0.4380 +1315 7257 0.5120 +1315 8078 0.4850 +1315 8218 0.6420 +1315 8411 0.4940 +1315 8615 0.8690 +1315 8655 0.5250 +1315 8693 0.4540 +1315 8729 0.8410 +1315 8774 0.5700 +1315 8775 0.6410 +1315 9183 0.7630 +1315 9218 0.4480 +1315 9221 0.4540 +1315 9265 0.4830 +1315 9266 0.5050 +1315 9267 0.5430 +1315 9276 0.9990 +1315 9321 0.4170 +1315 9382 0.6720 +1315 9527 0.7970 +1315 9554 0.7810 +1315 9570 0.8530 +1315 9632 0.7140 +1315 9780 0.6080 +1315 9871 0.6590 +1315 9919 0.4590 +1315 9950 0.6360 +1315 10228 0.4300 +1315 10282 0.8290 +1315 10399 0.5020 +1315 10427 0.7630 +1315 10466 0.8010 +1315 10483 0.6380 +1315 10484 0.6070 +1315 10558 0.4380 +1315 10565 0.4300 +1315 10618 0.8060 +1315 10652 0.6250 +1315 10802 0.7240 +1315 10945 0.9610 +1315 10952 0.6980 +1315 10959 0.6810 +1315 10972 0.9090 +1315 11014 0.9210 +1315 11015 0.6730 +1315 11079 0.5280 +1315 11196 0.6530 +1315 11227 0.4240 +1315 11231 0.5260 +1315 11316 0.9990 +1315 22796 0.8330 +1315 22800 0.4890 +1315 22818 0.9990 +1315 22820 0.9990 +1315 22872 0.6780 +1315 22931 0.4190 +1315 23062 0.4510 +1315 23071 0.4810 +1315 23163 0.4110 +1315 23224 0.4250 +1315 23256 0.7290 +1315 23259 0.4810 +1315 23376 0.4580 +1315 23423 0.7570 +1315 23560 0.4200 +1315 25777 0.5100 +1315 25839 0.4530 +1315 25956 0.4550 +1315 26003 0.5920 +1315 26286 0.9610 +1315 26958 0.9980 +1315 26985 0.5600 +1315 27020 0.4480 +1315 27236 0.5850 +1315 27333 0.4850 +1315 29088 0.4920 +1315 29927 0.4990 +1315 29982 0.4200 +1315 51014 0.8630 +1315 51076 0.4030 +1315 51143 0.5190 +1315 51144 0.4690 +1315 51226 0.9770 +1315 51272 0.6530 +1315 51290 0.6180 +1315 51305 0.6490 +1315 51324 0.4360 +1315 51361 0.4380 +1315 51594 0.5960 +1315 53407 0.7410 +1315 54732 0.7330 +1315 55204 0.4050 +1315 55352 0.4320 +1315 55611 0.4310 +1315 55704 0.5390 +1315 55738 0.6970 +1315 55770 0.4080 +1315 55850 0.5620 +1315 56681 0.5150 +1315 57410 0.8990 +1315 57511 0.4040 +1315 60561 0.7370 +1315 63908 0.5300 +1315 64083 0.9220 +1315 64121 0.4520 +1315 64689 0.5930 +1315 79170 0.6760 +1315 80267 0.5270 +1315 81555 0.4430 +1315 81876 0.8760 +1315 83548 0.9270 +1315 84364 0.9610 +1315 84955 0.7100 +1315 85477 0.4120 +1315 91949 0.6790 +1315 92344 0.4030 +1315 94015 0.6460 +1315 114960 0.7590 +1315 120227 0.4540 +1315 130162 0.4520 +1315 133619 0.4150 +1315 201595 0.5510 +1315 205428 0.7590 +1315 283234 0.5230 +1315 375056 0.4230 +1315 400668 0.4810 +1315 440026 0.4610 +1315 440193 0.5130 +1316 1488 0.4390 +1316 1499 0.4430 +1316 1571 0.4930 +1316 1757 0.4150 +1316 1843 0.7720 +1316 1847 0.4760 +1316 1869 0.5160 +1316 1959 0.4210 +1316 1998 0.4800 +1316 2034 0.4010 +1316 2114 0.4750 +1316 2115 0.4210 +1316 2194 0.4080 +1316 2335 0.5070 +1316 2353 0.5680 +1316 2354 0.4640 +1316 2920 0.4140 +1316 3091 0.4570 +1316 3181 0.4080 +1316 3308 0.5070 +1316 3309 0.4410 +1316 3326 0.4600 +1316 3486 0.4610 +1316 3491 0.5730 +1316 3569 0.5600 +1316 3576 0.4590 +1316 3659 0.5500 +1316 3661 0.4860 +1316 3725 0.8220 +1316 3726 0.5010 +1316 3727 0.4780 +1316 4088 0.5820 +1316 4089 0.4830 +1316 4170 0.4070 +1316 4193 0.5280 +1316 4323 0.5490 +1316 4588 0.4560 +1316 4601 0.4290 +1316 4616 0.4140 +1316 4791 0.4970 +1316 4792 0.5680 +1316 4801 0.4270 +1316 5080 0.4600 +1316 5125 0.4060 +1316 5133 0.4120 +1316 5329 0.4520 +1316 5673 0.4440 +1316 5970 0.5330 +1316 5971 0.4320 +1316 6041 0.4390 +1316 6347 0.6570 +1316 6386 0.4090 +1316 6667 0.8370 +1316 6773 0.4650 +1316 6880 0.4040 +1316 6926 0.4490 +1316 7113 0.4310 +1316 7157 0.8570 +1316 7538 0.4980 +1316 7832 0.6800 +1316 8000 0.5740 +1316 8521 0.4210 +1316 8841 0.6370 +1316 8850 0.5030 +1316 8895 0.4160 +1316 9159 0.4270 +1316 9314 0.6900 +1316 9572 0.4090 +1316 10628 0.5060 +1316 11266 0.5660 +1316 22853 0.4280 +1316 23586 0.4320 +1316 23645 0.5330 +1316 25942 0.4360 +1316 27232 0.4520 +1316 51147 0.4050 +1316 54541 0.4650 +1316 55818 0.4220 +1316 57491 0.4470 +1316 60528 0.4710 +1316 64332 0.6150 +1316 64651 0.4060 +1316 84458 0.6600 +1316 85415 0.4420 +1316 284312 0.4430 +1317 1353 0.5550 +1317 1356 0.6120 +1317 1534 0.4330 +1317 2065 0.4050 +1317 2067 0.4300 +1317 4493 0.5590 +1317 4520 0.4530 +1317 4891 0.6820 +1317 6341 0.5100 +1317 6556 0.4360 +1317 6580 0.6330 +1317 6582 0.7060 +1317 6647 0.5120 +1317 7779 0.5940 +1317 9973 0.8010 +1317 9997 0.4110 +1317 10063 0.7830 +1317 23516 0.4170 +1317 26872 0.4690 +1317 27173 0.4720 +1317 30061 0.4030 +1317 55244 0.5210 +1317 64078 0.5050 +1317 79901 0.4730 +1317 150684 0.4210 +1317 201266 0.4200 +1318 1353 0.5810 +1318 1356 0.4920 +1318 2776 0.4370 +1318 4493 0.5070 +1318 4891 0.4970 +1318 6341 0.5230 +1318 6535 0.5130 +1318 6556 0.5250 +1318 6647 0.5040 +1318 7539 0.4930 +1318 7779 0.4420 +1318 9973 0.7140 +1318 9997 0.4810 +1318 10063 0.7700 +1318 11161 0.4910 +1318 29880 0.4480 +1318 51124 0.5000 +1318 54836 0.4180 +1318 56851 0.4240 +1318 57179 0.4710 +1318 57571 0.4140 +1318 60491 0.4150 +1318 145389 0.4480 +1318 286451 0.4050 +1325 1854 0.4520 +1325 2175 0.5400 +1325 2176 0.5400 +1325 2178 0.5460 +1325 2187 0.5400 +1325 2188 0.5400 +1325 2189 0.5400 +1325 2587 0.4990 +1325 2688 0.4330 +1325 2691 0.4600 +1325 2693 0.8670 +1325 2735 0.4400 +1325 2770 0.8060 +1325 2778 0.8090 +1325 2782 0.8000 +1325 2832 0.5870 +1325 2847 0.5210 +1325 2852 0.4990 +1325 2861 0.5430 +1325 3576 0.4990 +1325 3827 0.5180 +1325 4852 0.7600 +1325 4886 0.5190 +1325 4887 0.5240 +1325 4889 0.5220 +1325 4985 0.5160 +1325 4988 0.5410 +1325 5173 0.6290 +1325 5179 0.6040 +1325 5367 0.6160 +1325 5368 0.6810 +1325 5443 0.6700 +1325 5539 0.5710 +1325 5540 0.5070 +1325 5660 0.4990 +1325 5697 0.5720 +1325 5816 0.4330 +1325 6289 0.4220 +1325 6469 0.4310 +1325 6608 0.6700 +1325 6714 0.5080 +1325 6750 0.9890 +1325 6751 0.9880 +1325 6752 0.9700 +1325 6753 0.9430 +1325 6754 0.9640 +1325 6755 0.9680 +1325 7432 0.6810 +1325 8484 0.5040 +1325 8811 0.5420 +1325 8862 0.5360 +1325 9283 0.5570 +1325 10316 0.4990 +1325 10874 0.6320 +1325 10911 0.4620 +1325 22943 0.4130 +1325 25992 0.5810 +1325 26086 0.4100 +1325 51083 0.6400 +1325 51738 0.5700 +1325 54331 0.8030 +1325 55120 0.5490 +1325 56923 0.5270 +1325 57697 0.9420 +1325 63940 0.4760 +1325 80152 0.5670 +1325 80233 0.5400 +1325 84539 0.5210 +1325 91442 0.5750 +1325 117194 0.9960 +1325 129521 0.6190 +1325 199990 0.5400 +1325 201254 0.7250 +1325 256933 0.6670 +1325 257313 0.4320 +1325 259249 0.4160 +1325 283869 0.6860 +1325 378708 0.6110 +1325 387103 0.5650 +1325 100526739 0.8680 +1326 1832 0.4300 +1326 1847 0.4100 +1326 1956 0.4180 +1326 2099 0.4410 +1326 2353 0.4240 +1326 3312 0.4910 +1326 3320 0.6380 +1326 3326 0.6340 +1326 3551 0.9540 +1326 3553 0.6680 +1326 3569 0.7640 +1326 3576 0.5990 +1326 3579 0.4630 +1326 3654 0.5010 +1326 3725 0.4440 +1326 4088 0.4400 +1326 4790 0.9960 +1326 4791 0.8110 +1326 4792 0.5360 +1326 4893 0.4650 +1326 5159 0.4110 +1326 5170 0.5220 +1326 5604 0.9760 +1326 5605 0.9250 +1326 5609 0.9110 +1326 5743 0.4090 +1326 5966 0.6880 +1326 5970 0.8920 +1326 5971 0.4130 +1326 6233 0.5120 +1326 6347 0.5100 +1326 6372 0.4560 +1326 6416 0.9360 +1326 6500 0.5180 +1326 6885 0.4540 +1326 7097 0.4740 +1326 7099 0.6500 +1326 7124 0.5420 +1326 7128 0.5580 +1326 7186 0.5910 +1326 7189 0.5500 +1326 7311 0.4990 +1326 7314 0.5040 +1326 7316 0.5040 +1326 8454 0.5070 +1326 8517 0.9260 +1326 8737 0.4900 +1326 8945 0.5390 +1326 9020 0.9420 +1326 10000 0.9170 +1326 10252 0.4230 +1326 11235 0.5290 +1326 23118 0.5160 +1326 23291 0.5170 +1326 51719 0.4060 +1326 55301 0.4390 +1326 64332 0.5430 +1326 79155 0.9950 +1326 80149 0.4080 +1327 1329 0.9990 +1327 1337 0.9990 +1327 1339 0.9980 +1327 1340 0.9990 +1327 1345 0.9990 +1327 1346 0.9890 +1327 1347 0.9930 +1327 1349 0.9970 +1327 1350 0.9990 +1327 1351 0.9960 +1327 1352 0.8020 +1327 1353 0.5500 +1327 1355 0.8460 +1327 1371 0.5360 +1327 1375 0.4340 +1327 1431 0.7830 +1327 1537 0.9990 +1327 1628 0.4820 +1327 1629 0.6600 +1327 1649 0.5810 +1327 1678 0.4500 +1327 1716 0.4450 +1327 1737 0.4780 +1327 1743 0.7670 +1327 1892 0.7460 +1327 2021 0.5700 +1327 2101 0.4890 +1327 2108 0.5590 +1327 2109 0.5980 +1327 2197 0.7650 +1327 2271 0.4060 +1327 2597 0.7760 +1327 2744 0.4470 +1327 2879 0.7260 +1327 2882 0.4430 +1327 3030 0.5160 +1327 3032 0.4250 +1327 3052 0.5790 +1327 3091 0.4890 +1327 3094 0.5240 +1327 3131 0.4820 +1327 3162 0.5930 +1327 3309 0.4410 +1327 3313 0.6440 +1327 3320 0.4190 +1327 3326 0.4250 +1327 3329 0.8080 +1327 3336 0.5030 +1327 3396 0.4600 +1327 3417 0.4160 +1327 3418 0.5350 +1327 3419 0.4140 +1327 3460 0.6170 +1327 3630 0.4740 +1327 3916 0.4870 +1327 3921 0.6030 +1327 3954 0.5630 +1327 4001 0.4200 +1327 4170 0.5820 +1327 4191 0.6850 +1327 4508 0.5610 +1327 4512 0.9990 +1327 4513 0.9990 +1327 4514 0.9990 +1327 4519 0.9860 +1327 4535 0.9440 +1327 4536 0.9090 +1327 4537 0.8970 +1327 4538 0.9180 +1327 4539 0.8850 +1327 4540 0.9150 +1327 4541 0.9030 +1327 4637 0.4810 +1327 4666 0.4510 +1327 4694 0.9430 +1327 4695 0.9810 +1327 4696 0.9400 +1327 4697 0.9900 +1327 4698 0.9620 +1327 4700 0.9490 +1327 4701 0.9260 +1327 4702 0.9810 +1327 4704 0.9950 +1327 4705 0.9790 +1327 4706 0.9360 +1327 4707 0.9210 +1327 4708 0.8980 +1327 4709 0.9360 +1327 4710 0.9420 +1327 4711 0.9490 +1327 4712 0.9630 +1327 4713 0.9670 +1327 4714 0.9900 +1327 4715 0.9840 +1327 4716 0.9940 +1327 4717 0.8860 +1327 4718 0.9580 +1327 4720 0.9940 +1327 4722 0.9930 +1327 4723 0.9760 +1327 4724 0.9610 +1327 4725 0.9540 +1327 4726 0.9690 +1327 4728 0.9800 +1327 4729 0.9740 +1327 4731 0.9160 +1327 4783 0.4840 +1327 4899 0.6190 +1327 4946 0.4260 +1327 4976 0.5990 +1327 5018 0.4650 +1327 5071 0.5130 +1327 5162 0.4020 +1327 5163 0.5370 +1327 5166 0.4330 +1327 5245 0.6060 +1327 5250 0.5330 +1327 5428 0.4210 +1327 5465 0.4590 +1327 5468 0.4580 +1327 5478 0.5300 +1327 5742 0.5860 +1327 5879 0.4940 +1327 6122 0.4050 +1327 6124 0.4530 +1327 6128 0.4140 +1327 6129 0.4850 +1327 6132 0.6610 +1327 6138 0.4230 +1327 6141 0.8090 +1327 6142 0.5470 +1327 6143 0.5850 +1327 6144 0.4470 +1327 6152 0.4050 +1327 6154 0.4160 +1327 6155 0.5970 +1327 6156 0.4360 +1327 6165 0.4030 +1327 6175 0.4240 +1327 6181 0.5120 +1327 6187 0.6800 +1327 6188 0.6160 +1327 6189 0.4690 +1327 6193 0.5830 +1327 6194 0.4640 +1327 6198 0.4490 +1327 6202 0.5130 +1327 6203 0.4130 +1327 6204 0.5160 +1327 6205 0.5790 +1327 6207 0.4170 +1327 6208 0.5310 +1327 6209 0.8610 +1327 6217 0.5320 +1327 6222 0.7760 +1327 6223 0.4350 +1327 6232 0.4210 +1327 6234 0.4820 +1327 6235 0.4320 +1327 6341 0.5130 +1327 6389 0.8990 +1327 6390 0.9320 +1327 6391 0.7610 +1327 6392 0.7500 +1327 6517 0.4470 +1327 6647 0.4880 +1327 6648 0.6250 +1327 6727 0.4920 +1327 6834 0.6870 +1327 7008 0.4820 +1327 7019 0.8320 +1327 7084 0.4480 +1327 7157 0.5050 +1327 7284 0.7050 +1327 7350 0.5820 +1327 7351 0.4560 +1327 7352 0.6980 +1327 7381 0.9980 +1327 7384 0.9980 +1327 7385 0.9990 +1327 7386 0.9990 +1327 7388 0.9970 +1327 7416 0.8620 +1327 7417 0.6670 +1327 7419 0.7240 +1327 7837 0.6300 +1327 8192 0.6300 +1327 8562 0.4590 +1327 8604 0.5320 +1327 8678 0.4810 +1327 8802 0.4220 +1327 8878 0.4960 +1327 9167 0.9670 +1327 9361 0.6360 +1327 9377 0.9990 +1327 9474 0.4250 +1327 9512 0.9130 +1327 9551 0.7490 +1327 9804 0.8000 +1327 9868 0.6710 +1327 9927 0.7150 +1327 9997 0.7780 +1327 10018 0.4350 +1327 10059 0.6020 +1327 10063 0.6160 +1327 10105 0.5910 +1327 10128 0.4320 +1327 10134 0.5060 +1327 10165 0.6640 +1327 10328 0.9650 +1327 10399 0.4930 +1327 10452 0.7060 +1327 10456 0.4400 +1327 10469 0.4650 +1327 10476 0.9520 +1327 10533 0.4060 +1327 10632 0.7650 +1327 10651 0.4300 +1327 10730 0.5700 +1327 10845 0.5380 +1327 10891 0.7820 +1327 10935 0.4950 +1327 10939 0.6000 +1327 10975 0.9910 +1327 10989 0.5810 +1327 11224 0.4420 +1327 11315 0.5400 +1327 11331 0.5870 +1327 23203 0.7280 +1327 23410 0.5690 +1327 23411 0.5210 +1327 23558 0.6140 +1327 23645 0.5760 +1327 25813 0.6600 +1327 25824 0.4330 +1327 25828 0.4780 +1327 25915 0.4110 +1327 25994 0.8380 +1327 26517 0.5360 +1327 27089 0.9990 +1327 28958 0.8150 +1327 29090 0.5300 +1327 29796 0.9960 +1327 29928 0.4240 +1327 51024 0.7330 +1327 51079 0.9950 +1327 51142 0.7520 +1327 51227 0.4530 +1327 51234 0.4040 +1327 54205 0.9660 +1327 54539 0.9770 +1327 54543 0.4690 +1327 54902 0.4600 +1327 54927 0.5880 +1327 54940 0.6500 +1327 55028 0.4560 +1327 55037 0.4090 +1327 55143 0.4640 +1327 55486 0.4360 +1327 55669 0.6440 +1327 55967 0.9710 +1327 56901 0.7660 +1327 56947 0.4560 +1327 56993 0.5880 +1327 64111 0.5760 +1327 64969 0.4960 +1327 65018 0.6720 +1327 65260 0.5660 +1327 65993 0.4460 +1327 79002 0.8190 +1327 79728 0.4800 +1327 81341 0.5800 +1327 81631 0.6370 +1327 83858 0.4190 +1327 84061 0.4650 +1327 84284 0.4160 +1327 84419 0.6490 +1327 84557 0.4120 +1327 84701 0.9090 +1327 84886 0.9360 +1327 84939 0.4280 +1327 84987 0.5650 +1327 91300 0.5560 +1327 91689 0.4460 +1327 93974 0.9160 +1327 114294 0.4910 +1327 115209 0.4650 +1327 125965 0.9100 +1327 126328 0.9370 +1327 133522 0.5710 +1327 137902 0.6270 +1327 139221 0.4280 +1327 140823 0.4380 +1327 154791 0.4150 +1327 164684 0.6110 +1327 170712 0.9470 +1327 192111 0.4310 +1327 192286 0.5930 +1327 267020 0.6050 +1327 283459 0.8620 +1327 341947 0.7880 +1327 374291 0.9750 +1327 388753 0.9240 +1327 389203 0.5940 +1327 404550 0.4210 +1327 440567 0.9310 +1327 440574 0.5450 +1327 493856 0.4920 +1327 641371 0.4400 +1327 728317 0.4280 +1327 100287932 0.4760 +1327 100532726 0.6350 +1327 105372267 0.4820 +1329 1337 0.9990 +1329 1339 0.9990 +1329 1340 0.9990 +1329 1345 0.9990 +1329 1346 0.9960 +1329 1347 0.9970 +1329 1349 0.9990 +1329 1350 0.9990 +1329 1351 0.9990 +1329 1352 0.7790 +1329 1353 0.4410 +1329 1355 0.8040 +1329 1431 0.5540 +1329 1486 0.6540 +1329 1537 0.9990 +1329 1628 0.5360 +1329 1633 0.4060 +1329 1649 0.5440 +1329 1716 0.4300 +1329 1737 0.5290 +1329 1743 0.4640 +1329 2101 0.4910 +1329 2108 0.4630 +1329 2109 0.5230 +1329 2197 0.5630 +1329 2280 0.4200 +1329 2597 0.5090 +1329 2653 0.4950 +1329 2739 0.4530 +1329 2987 0.4420 +1329 3131 0.5320 +1329 3313 0.9250 +1329 3419 0.5120 +1329 3420 0.6310 +1329 3421 0.4970 +1329 3460 0.6000 +1329 4191 0.6270 +1329 4259 0.5720 +1329 4512 0.9990 +1329 4513 0.9990 +1329 4514 0.9990 +1329 4519 0.9920 +1329 4535 0.9180 +1329 4536 0.8850 +1329 4537 0.9000 +1329 4538 0.9040 +1329 4539 0.8940 +1329 4540 0.8860 +1329 4541 0.8820 +1329 4694 0.9630 +1329 4695 0.9940 +1329 4696 0.9610 +1329 4697 0.9950 +1329 4698 0.9860 +1329 4700 0.9840 +1329 4701 0.9820 +1329 4702 0.9920 +1329 4704 0.9870 +1329 4705 0.9840 +1329 4706 0.9440 +1329 4707 0.9510 +1329 4708 0.9690 +1329 4709 0.9770 +1329 4710 0.9840 +1329 4711 0.9910 +1329 4712 0.9770 +1329 4713 0.9950 +1329 4714 0.9910 +1329 4715 0.9900 +1329 4716 0.9800 +1329 4717 0.9330 +1329 4718 0.9720 +1329 4720 0.9850 +1329 4722 0.9850 +1329 4723 0.9810 +1329 4724 0.9750 +1329 4725 0.9620 +1329 4726 0.9950 +1329 4728 0.9960 +1329 4729 0.9870 +1329 4731 0.9160 +1329 4783 0.5390 +1329 4967 0.4770 +1329 5016 0.6540 +1329 5018 0.4480 +1329 5037 0.4330 +1329 5052 0.4390 +1329 5250 0.5640 +1329 5694 0.4300 +1329 5742 0.7630 +1329 6128 0.4090 +1329 6141 0.4590 +1329 6152 0.4490 +1329 6155 0.5650 +1329 6156 0.4550 +1329 6158 0.4760 +1329 6165 0.4090 +1329 6176 0.4210 +1329 6181 0.5400 +1329 6182 0.4340 +1329 6187 0.4300 +1329 6203 0.4260 +1329 6205 0.4940 +1329 6209 0.4120 +1329 6218 0.4540 +1329 6222 0.4250 +1329 6230 0.4210 +1329 6235 0.4620 +1329 6341 0.5460 +1329 6389 0.9250 +1329 6390 0.9720 +1329 6391 0.8860 +1329 6392 0.9490 +1329 6634 0.4310 +1329 6647 0.4510 +1329 6648 0.4020 +1329 6834 0.5480 +1329 7008 0.5320 +1329 7019 0.5220 +1329 7084 0.4040 +1329 7284 0.5790 +1329 7311 0.6740 +1329 7381 0.9990 +1329 7384 0.9990 +1329 7385 0.9990 +1329 7386 0.9990 +1329 7388 0.9980 +1329 7416 0.5120 +1329 7417 0.4400 +1329 7419 0.4400 +1329 8192 0.5800 +1329 8479 0.4630 +1329 8802 0.5730 +1329 9167 0.9720 +1329 9296 0.6190 +1329 9377 0.9990 +1329 9474 0.7230 +1329 9512 0.9710 +1329 9551 0.8790 +1329 9556 0.4550 +1329 9582 0.7380 +1329 9997 0.4810 +1329 10063 0.6540 +1329 10245 0.8880 +1329 10440 0.8810 +1329 10452 0.4100 +1329 10476 0.9790 +1329 10553 0.4530 +1329 10632 0.8730 +1329 10891 0.5620 +1329 10975 0.9990 +1329 23203 0.7750 +1329 23558 0.6090 +1329 23645 0.5290 +1329 25828 0.7170 +1329 25873 0.4620 +1329 25915 0.4360 +1329 25994 0.7210 +1329 26521 0.4530 +1329 27089 0.9990 +1329 27159 0.6540 +1329 27350 0.7370 +1329 28956 0.4040 +1329 28958 0.7180 +1329 29085 0.4410 +1329 29103 0.6440 +1329 29796 0.9990 +1329 51024 0.4240 +1329 51079 0.9950 +1329 51142 0.6530 +1329 51161 0.6130 +1329 51241 0.4140 +1329 51258 0.4040 +1329 51300 0.6950 +1329 51529 0.6710 +1329 51751 0.5680 +1329 54205 0.9930 +1329 54539 0.9880 +1329 54543 0.4690 +1329 54998 0.4060 +1329 55028 0.4800 +1329 55052 0.4680 +1329 55143 0.6860 +1329 55967 0.9890 +1329 56901 0.6590 +1329 56993 0.4050 +1329 57379 0.7360 +1329 57407 0.4560 +1329 57506 0.5630 +1329 59286 0.4790 +1329 60489 0.7380 +1329 64111 0.7280 +1329 64969 0.5480 +1329 79002 0.9680 +1329 79598 0.4040 +1329 79671 0.5080 +1329 79728 0.5040 +1329 80195 0.4440 +1329 80273 0.8710 +1329 81341 0.8510 +1329 81555 0.4340 +1329 81892 0.4180 +1329 83447 0.4190 +1329 84300 0.4070 +1329 84337 0.5110 +1329 84419 0.6770 +1329 84689 0.4580 +1329 84693 0.4150 +1329 84701 0.9940 +1329 84795 0.5040 +1329 84833 0.5460 +1329 84939 0.4020 +1329 84987 0.8680 +1329 91300 0.5290 +1329 91689 0.6190 +1329 92609 0.4450 +1329 93974 0.7070 +1329 116228 0.4020 +1329 123346 0.6930 +1329 125965 0.9830 +1329 125988 0.5160 +1329 126328 0.9930 +1329 131118 0.7000 +1329 134266 0.8850 +1329 139221 0.4020 +1329 140564 0.7360 +1329 140823 0.7080 +1329 164668 0.7360 +1329 164684 0.6050 +1329 170712 0.9590 +1329 192286 0.7940 +1329 200315 0.7360 +1329 200316 0.7380 +1329 259307 0.4700 +1329 267020 0.6600 +1329 283459 0.8980 +1329 285521 0.4490 +1329 341947 0.6410 +1329 374291 0.9870 +1329 388753 0.9470 +1329 440567 0.9810 +1329 440574 0.5850 +1329 613227 0.5680 +1329 728317 0.4020 +1329 100131801 0.5650 +1329 100287932 0.8980 +1329 100532726 0.6040 +1329 105372267 0.5320 +1337 1339 0.9360 +1337 1340 0.9990 +1337 1345 0.9990 +1337 1346 0.9790 +1337 1347 0.9980 +1337 1349 0.9960 +1337 1350 0.9990 +1337 1351 0.9980 +1337 1352 0.7550 +1337 1353 0.5010 +1337 1355 0.8010 +1337 1486 0.5160 +1337 1537 0.9850 +1337 1628 0.4650 +1337 1649 0.4700 +1337 1716 0.4040 +1337 2197 0.4490 +1337 2280 0.4010 +1337 2551 0.7740 +1337 2879 0.4330 +1337 3039 0.4140 +1337 3040 0.4100 +1337 3131 0.4650 +1337 3460 0.5120 +1337 4508 0.5050 +1337 4512 0.9990 +1337 4513 0.9990 +1337 4514 0.9990 +1337 4519 0.9240 +1337 4535 0.5530 +1337 4536 0.4770 +1337 4538 0.4690 +1337 4540 0.4630 +1337 4694 0.7420 +1337 4695 0.7820 +1337 4696 0.6100 +1337 4697 0.9980 +1337 4698 0.8480 +1337 4700 0.8270 +1337 4701 0.6980 +1337 4702 0.8300 +1337 4704 0.6380 +1337 4705 0.5960 +1337 4706 0.6900 +1337 4707 0.5200 +1337 4708 0.5520 +1337 4709 0.6970 +1337 4710 0.7610 +1337 4711 0.7470 +1337 4712 0.7630 +1337 4713 0.7450 +1337 4714 0.8890 +1337 4715 0.8560 +1337 4716 0.8080 +1337 4717 0.5380 +1337 4718 0.7430 +1337 4720 0.5910 +1337 4722 0.7570 +1337 4723 0.6120 +1337 4724 0.6600 +1337 4725 0.8950 +1337 4726 0.8390 +1337 4728 0.8310 +1337 4729 0.7570 +1337 4731 0.6430 +1337 4783 0.4650 +1337 5016 0.5160 +1337 5037 0.4450 +1337 5250 0.4160 +1337 5478 0.4580 +1337 5742 0.6210 +1337 6156 0.4120 +1337 6169 0.4190 +1337 6188 0.4500 +1337 6205 0.4230 +1337 6209 0.4060 +1337 6217 0.4220 +1337 6224 0.4020 +1337 6341 0.4560 +1337 6389 0.5270 +1337 6390 0.6440 +1337 6391 0.5740 +1337 6392 0.6070 +1337 6834 0.5830 +1337 7008 0.4650 +1337 7311 0.5370 +1337 7381 0.9970 +1337 7384 0.9890 +1337 7385 0.9800 +1337 7386 0.9860 +1337 7388 0.9670 +1337 7528 0.6000 +1337 9114 0.5230 +1337 9167 0.9810 +1337 9296 0.5490 +1337 9377 0.9990 +1337 9512 0.8880 +1337 9551 0.6430 +1337 9556 0.4130 +1337 9582 0.6660 +1337 9997 0.4310 +1337 10063 0.6130 +1337 10476 0.8950 +1337 10632 0.8070 +1337 10975 0.9710 +1337 11224 0.4770 +1337 23203 0.6850 +1337 23558 0.5190 +1337 23645 0.5420 +1337 25994 0.6950 +1337 27089 0.9960 +1337 27159 0.5160 +1337 27235 0.5370 +1337 27350 0.6620 +1337 28958 0.5430 +1337 29796 0.9950 +1337 51079 0.8370 +1337 51121 0.4200 +1337 51142 0.7380 +1337 51751 0.5590 +1337 54205 0.9130 +1337 54539 0.7170 +1337 55753 0.4290 +1337 55967 0.8640 +1337 56901 0.6900 +1337 57379 0.6610 +1337 58506 0.5480 +1337 59286 0.4240 +1337 60489 0.6640 +1337 64111 0.5740 +1337 65260 0.4860 +1337 79002 0.8800 +1337 79728 0.5230 +1337 81341 0.7900 +1337 84419 0.7000 +1337 84701 0.9960 +1337 84833 0.4610 +1337 84886 0.8970 +1337 84939 0.4170 +1337 84987 0.5280 +1337 91300 0.5420 +1337 116228 0.4570 +1337 123346 0.6710 +1337 125965 0.9520 +1337 126328 0.7370 +1337 139221 0.4170 +1337 140564 0.6610 +1337 140823 0.4640 +1337 164668 0.6610 +1337 164684 0.5130 +1337 170712 0.8270 +1337 192286 0.7630 +1337 200315 0.6610 +1337 200316 0.6640 +1337 267020 0.6360 +1337 285521 0.4350 +1337 341947 0.7340 +1337 374291 0.7590 +1337 388753 0.9180 +1337 400916 0.5290 +1337 440567 0.9460 +1337 493753 0.4190 +1337 493829 0.4010 +1337 613227 0.5590 +1337 728317 0.4170 +1337 100131801 0.4670 +1337 100532726 0.5170 +1337 105372267 0.4650 +1339 1340 0.9990 +1339 1345 0.9950 +1339 1346 0.9960 +1339 1347 0.8440 +1339 1349 0.9900 +1339 1350 0.9990 +1339 1351 0.9050 +1339 1352 0.7570 +1339 1353 0.4800 +1339 1355 0.8290 +1339 1486 0.5160 +1339 1537 0.9960 +1339 1628 0.4700 +1339 1649 0.4740 +1339 2027 0.4320 +1339 2837 0.6540 +1339 3131 0.4650 +1339 3270 0.4100 +1339 3460 0.5110 +1339 4151 0.5160 +1339 4508 0.5020 +1339 4512 0.9920 +1339 4513 0.9920 +1339 4514 0.9960 +1339 4519 0.9830 +1339 4535 0.8980 +1339 4536 0.8790 +1339 4537 0.8720 +1339 4538 0.8800 +1339 4539 0.8620 +1339 4540 0.8730 +1339 4541 0.8600 +1339 4618 0.4530 +1339 4624 0.4870 +1339 4625 0.5890 +1339 4632 0.4340 +1339 4633 0.6030 +1339 4634 0.5920 +1339 4694 0.9150 +1339 4695 0.9440 +1339 4696 0.9050 +1339 4697 0.9410 +1339 4698 0.9560 +1339 4700 0.9540 +1339 4701 0.9120 +1339 4702 0.9540 +1339 4704 0.9380 +1339 4705 0.9230 +1339 4706 0.9260 +1339 4707 0.8970 +1339 4708 0.8340 +1339 4709 0.9000 +1339 4710 0.9300 +1339 4711 0.9330 +1339 4712 0.9390 +1339 4713 0.9610 +1339 4714 0.9480 +1339 4715 0.9620 +1339 4716 0.9460 +1339 4717 0.8820 +1339 4718 0.9200 +1339 4720 0.9190 +1339 4722 0.9270 +1339 4723 0.9310 +1339 4724 0.9440 +1339 4725 0.9440 +1339 4726 0.9600 +1339 4728 0.9270 +1339 4729 0.9330 +1339 4731 0.8870 +1339 4783 0.4650 +1339 4892 0.5010 +1339 5016 0.5160 +1339 5224 0.4530 +1339 5595 0.4450 +1339 5742 0.6170 +1339 6188 0.4250 +1339 6341 0.4420 +1339 6389 0.4570 +1339 6390 0.5420 +1339 6391 0.5550 +1339 6392 0.5320 +1339 6834 0.4930 +1339 7008 0.4660 +1339 7135 0.4530 +1339 7139 0.4010 +1339 7381 0.9980 +1339 7384 0.9940 +1339 7385 0.9950 +1339 7386 0.9960 +1339 7388 0.9880 +1339 8048 0.4530 +1339 8484 0.5020 +1339 8557 0.5550 +1339 9167 0.8370 +1339 9377 0.9990 +1339 9512 0.9030 +1339 9551 0.5290 +1339 9582 0.6610 +1339 10063 0.5080 +1339 10476 0.8520 +1339 10632 0.7250 +1339 10975 0.9920 +1339 23203 0.6820 +1339 23558 0.5130 +1339 23645 0.5420 +1339 25994 0.6610 +1339 27089 0.9970 +1339 27159 0.5170 +1339 27350 0.6610 +1339 28958 0.5820 +1339 29796 0.9980 +1339 29937 0.4710 +1339 51079 0.9380 +1339 51751 0.5610 +1339 51778 0.4870 +1339 54205 0.7790 +1339 54539 0.9220 +1339 55967 0.9570 +1339 56901 0.6490 +1339 57379 0.6610 +1339 58529 0.4910 +1339 60489 0.6610 +1339 64111 0.5800 +1339 79002 0.8760 +1339 79728 0.5230 +1339 81341 0.7900 +1339 84419 0.5820 +1339 84701 0.9900 +1339 84886 0.8970 +1339 84939 0.4170 +1339 84987 0.4640 +1339 91300 0.5420 +1339 123346 0.6600 +1339 125965 0.9760 +1339 126328 0.9130 +1339 127294 0.5150 +1339 139221 0.4300 +1339 140564 0.6610 +1339 164668 0.6610 +1339 164684 0.5130 +1339 170712 0.8420 +1339 192286 0.7360 +1339 200315 0.6610 +1339 200316 0.6610 +1339 254910 0.5050 +1339 267020 0.6360 +1339 285521 0.4360 +1339 341947 0.7510 +1339 374291 0.9410 +1339 388753 0.9030 +1339 440567 0.9190 +1339 613227 0.5590 +1339 728317 0.4170 +1339 100532726 0.5170 +1339 105372267 0.4650 +1340 1345 0.9990 +1340 1346 0.9980 +1340 1347 0.9980 +1340 1349 0.9960 +1340 1350 0.9990 +1340 1351 0.9980 +1340 1352 0.9520 +1340 1353 0.5610 +1340 1355 0.9310 +1340 1486 0.5410 +1340 1537 0.9940 +1340 1628 0.4430 +1340 1649 0.4420 +1340 3131 0.4420 +1340 3460 0.5760 +1340 4191 0.5280 +1340 4508 0.4750 +1340 4512 0.9980 +1340 4513 0.9990 +1340 4514 0.9990 +1340 4519 0.9750 +1340 4535 0.8910 +1340 4536 0.9170 +1340 4537 0.8720 +1340 4538 0.9100 +1340 4539 0.8710 +1340 4540 0.8980 +1340 4541 0.8680 +1340 4694 0.9790 +1340 4695 0.9820 +1340 4696 0.9740 +1340 4697 0.9990 +1340 4698 0.9680 +1340 4700 0.9710 +1340 4701 0.9550 +1340 4702 0.9710 +1340 4704 0.9310 +1340 4705 0.9480 +1340 4706 0.9510 +1340 4707 0.9440 +1340 4708 0.8980 +1340 4709 0.9520 +1340 4710 0.9560 +1340 4711 0.9480 +1340 4712 0.9640 +1340 4713 0.9720 +1340 4714 0.9830 +1340 4715 0.9870 +1340 4716 0.9440 +1340 4717 0.9100 +1340 4718 0.9520 +1340 4720 0.9510 +1340 4722 0.9520 +1340 4723 0.9600 +1340 4724 0.9580 +1340 4725 0.9520 +1340 4726 0.9540 +1340 4728 0.9600 +1340 4729 0.9720 +1340 4731 0.9110 +1340 4738 0.4860 +1340 4783 0.4420 +1340 5016 0.5410 +1340 5694 0.4950 +1340 5742 0.6360 +1340 6155 0.4250 +1340 6159 0.4280 +1340 6161 0.4240 +1340 6165 0.4070 +1340 6341 0.9190 +1340 6389 0.5590 +1340 6390 0.7980 +1340 6391 0.5540 +1340 6392 0.6030 +1340 6633 0.4240 +1340 6834 0.8270 +1340 7008 0.4420 +1340 7381 0.9990 +1340 7384 0.9890 +1340 7385 0.9970 +1340 7386 0.9970 +1340 7388 0.9920 +1340 8721 0.4140 +1340 9131 0.5340 +1340 9167 0.9510 +1340 9296 0.4300 +1340 9377 0.9990 +1340 9512 0.7700 +1340 9551 0.8080 +1340 9556 0.4120 +1340 9582 0.5910 +1340 9997 0.8190 +1340 10063 0.7600 +1340 10128 0.7000 +1340 10165 0.4450 +1340 10169 0.4810 +1340 10367 0.4020 +1340 10476 0.8790 +1340 10632 0.7400 +1340 10975 0.9970 +1340 11331 0.4300 +1340 22868 0.7930 +1340 23203 0.6760 +1340 23558 0.6090 +1340 23645 0.5170 +1340 25873 0.5400 +1340 25994 0.5950 +1340 26521 0.4700 +1340 27089 0.9990 +1340 27159 0.5410 +1340 27350 0.5890 +1340 28958 0.5150 +1340 28976 0.4090 +1340 29796 0.9990 +1340 51024 0.5990 +1340 51079 0.9570 +1340 51142 0.4710 +1340 51204 0.7640 +1340 51241 0.4460 +1340 51287 0.4830 +1340 51300 0.7130 +1340 51371 0.4830 +1340 51751 0.4050 +1340 54205 0.9410 +1340 54539 0.9520 +1340 54543 0.4120 +1340 54968 0.4600 +1340 55028 0.4040 +1340 55052 0.6110 +1340 55967 0.9760 +1340 56901 0.6500 +1340 57379 0.5880 +1340 59286 0.4770 +1340 60489 0.5910 +1340 64111 0.5110 +1340 65260 0.6290 +1340 79145 0.4030 +1340 79728 0.4850 +1340 81341 0.6630 +1340 84419 0.6370 +1340 84701 0.9810 +1340 84886 0.8100 +1340 84987 0.6430 +1340 90639 0.5420 +1340 91300 0.5260 +1340 116228 0.4490 +1340 123346 0.5510 +1340 125965 0.9060 +1340 126328 0.9450 +1340 131474 0.6740 +1340 140564 0.5880 +1340 140823 0.6820 +1340 164668 0.5880 +1340 164684 0.6010 +1340 170712 0.9160 +1340 192286 0.6640 +1340 200315 0.5880 +1340 200316 0.5910 +1340 267020 0.5860 +1340 283459 0.7700 +1340 285521 0.5150 +1340 341947 0.7270 +1340 374291 0.9360 +1340 388335 0.6220 +1340 388753 0.7380 +1340 440567 0.9020 +1340 493753 0.5930 +1340 613227 0.4020 +1340 100128731 0.4030 +1340 100131801 0.5770 +1340 100303755 0.5420 +1340 100532726 0.5350 +1340 105372267 0.4420 +1345 1346 0.9520 +1345 1347 0.9970 +1345 1349 0.9990 +1345 1350 0.9990 +1345 1351 0.9980 +1345 1352 0.6340 +1345 1355 0.7390 +1345 1537 0.9620 +1345 1805 0.7180 +1345 2197 0.4040 +1345 2271 0.6610 +1345 3094 0.5510 +1345 3417 0.4100 +1345 4191 0.4480 +1345 4512 0.9980 +1345 4513 0.9990 +1345 4514 0.9950 +1345 4519 0.9410 +1345 4535 0.6650 +1345 4536 0.6620 +1345 4537 0.6230 +1345 4538 0.6300 +1345 4539 0.5970 +1345 4540 0.6360 +1345 4541 0.6820 +1345 4694 0.8850 +1345 4695 0.9550 +1345 4696 0.8940 +1345 4697 0.9990 +1345 4698 0.9380 +1345 4700 0.9370 +1345 4701 0.9030 +1345 4702 0.8420 +1345 4704 0.8020 +1345 4705 0.6940 +1345 4706 0.8130 +1345 4707 0.8300 +1345 4708 0.7740 +1345 4709 0.9680 +1345 4710 0.9850 +1345 4711 0.9820 +1345 4712 0.8900 +1345 4713 0.8330 +1345 4714 0.9270 +1345 4715 0.9850 +1345 4716 0.9390 +1345 4717 0.8800 +1345 4718 0.9130 +1345 4720 0.7420 +1345 4722 0.8460 +1345 4723 0.7130 +1345 4724 0.9240 +1345 4725 0.9590 +1345 4726 0.9070 +1345 4728 0.8170 +1345 4729 0.8220 +1345 4731 0.8350 +1345 5162 0.4300 +1345 5440 0.4860 +1345 5591 0.4240 +1345 5742 0.5110 +1345 5879 0.4230 +1345 5890 0.6960 +1345 6152 0.4230 +1345 6154 0.4110 +1345 6155 0.4010 +1345 6156 0.5140 +1345 6160 0.4540 +1345 6170 0.4010 +1345 6218 0.4230 +1345 6224 0.4860 +1345 6229 0.5050 +1345 6341 0.4410 +1345 6390 0.5890 +1345 6391 0.5450 +1345 6392 0.5870 +1345 6633 0.4240 +1345 6637 0.4580 +1345 6834 0.5920 +1345 6902 0.4200 +1345 6921 0.4330 +1345 7019 0.4010 +1345 7321 0.4060 +1345 7381 0.9910 +1345 7384 0.9650 +1345 7385 0.9670 +1345 7386 0.9780 +1345 7388 0.9850 +1345 7520 0.4400 +1345 8091 0.8580 +1345 9167 0.9510 +1345 9377 0.9990 +1345 9512 0.7290 +1345 9551 0.9200 +1345 9553 0.4250 +1345 9556 0.5880 +1345 9582 0.6040 +1345 10063 0.5630 +1345 10165 0.4350 +1345 10186 0.6390 +1345 10476 0.9750 +1345 10553 0.4800 +1345 10632 0.9200 +1345 10975 0.9940 +1345 11224 0.4370 +1345 23203 0.5700 +1345 23645 0.5070 +1345 27089 0.9980 +1345 27258 0.4160 +1345 27350 0.6020 +1345 28958 0.6200 +1345 28998 0.4940 +1345 29078 0.4390 +1345 29090 0.4170 +1345 29093 0.4090 +1345 29796 0.9970 +1345 51079 0.9250 +1345 51121 0.5200 +1345 51142 0.4350 +1345 51241 0.5940 +1345 51372 0.4760 +1345 54205 0.9260 +1345 54539 0.8840 +1345 54543 0.6600 +1345 55028 0.5750 +1345 55052 0.5530 +1345 55967 0.9690 +1345 56901 0.8560 +1345 57379 0.6020 +1345 57407 0.4740 +1345 59286 0.4010 +1345 60489 0.6050 +1345 64111 0.4700 +1345 79002 0.8730 +1345 79728 0.5970 +1345 80195 0.4720 +1345 81341 0.6810 +1345 81892 0.5140 +1345 84419 0.6310 +1345 84701 0.9820 +1345 84833 0.9150 +1345 84886 0.8020 +1345 84987 0.5650 +1345 91300 0.5070 +1345 116228 0.4410 +1345 125965 0.9600 +1345 126328 0.7850 +1345 140564 0.6020 +1345 140823 0.6310 +1345 164668 0.6020 +1345 170712 0.9510 +1345 200315 0.6020 +1345 200316 0.6050 +1345 267020 0.8040 +1345 283459 0.8450 +1345 285521 0.4110 +1345 341947 0.7190 +1345 374291 0.7870 +1345 388753 0.9310 +1345 389203 0.5560 +1345 440567 0.9680 +1345 440574 0.4050 +1345 493753 0.4730 +1345 100131801 0.5860 +1345 100303755 0.4080 +1345 100532726 0.7870 +1346 1347 0.9430 +1346 1349 0.9770 +1346 1350 0.9940 +1346 1351 0.7570 +1346 1352 0.7420 +1346 1355 0.5940 +1346 1375 0.5710 +1346 1537 0.9830 +1346 1734 0.6650 +1346 2167 0.5290 +1346 2170 0.4230 +1346 2671 0.4930 +1346 3316 0.5270 +1346 4512 0.9790 +1346 4513 0.9840 +1346 4514 0.9790 +1346 4519 0.9730 +1346 4535 0.8690 +1346 4536 0.8610 +1346 4537 0.8580 +1346 4538 0.8590 +1346 4539 0.8530 +1346 4540 0.9200 +1346 4541 0.8580 +1346 4694 0.9250 +1346 4695 0.9010 +1346 4696 0.8870 +1346 4697 0.8490 +1346 4698 0.9010 +1346 4700 0.8820 +1346 4701 0.8620 +1346 4702 0.8830 +1346 4704 0.9200 +1346 4705 0.8740 +1346 4706 0.8880 +1346 4707 0.8570 +1346 4708 0.8510 +1346 4709 0.9040 +1346 4710 0.9410 +1346 4711 0.8780 +1346 4712 0.9190 +1346 4713 0.8980 +1346 4714 0.9270 +1346 4715 0.8910 +1346 4716 0.8590 +1346 4717 0.8740 +1346 4718 0.8900 +1346 4720 0.8800 +1346 4722 0.8680 +1346 4723 0.8950 +1346 4724 0.8830 +1346 4725 0.8650 +1346 4726 0.8650 +1346 4728 0.8680 +1346 4729 0.8810 +1346 4731 0.9080 +1346 5465 0.4350 +1346 5468 0.4510 +1346 5742 0.5190 +1346 6150 0.5880 +1346 7019 0.4280 +1346 7350 0.7280 +1346 7381 0.9940 +1346 7384 0.9980 +1346 7385 0.9840 +1346 7386 0.9850 +1346 7388 0.9790 +1346 9166 0.4970 +1346 9167 0.9210 +1346 9370 0.4540 +1346 9377 0.9940 +1346 9512 0.8130 +1346 9582 0.4750 +1346 10891 0.6380 +1346 10975 0.9990 +1346 23203 0.5560 +1346 23645 0.5380 +1346 26118 0.5600 +1346 27089 0.9880 +1346 27129 0.4540 +1346 27350 0.4750 +1346 29796 0.9880 +1346 51079 0.8720 +1346 53827 0.7220 +1346 54205 0.6960 +1346 54539 0.8720 +1346 55967 0.8690 +1346 56901 0.4560 +1346 57379 0.4750 +1346 57680 0.5470 +1346 60489 0.4750 +1346 63976 0.6540 +1346 64111 0.4800 +1346 79002 0.5990 +1346 81341 0.7490 +1346 83401 0.6940 +1346 84701 0.9090 +1346 84886 0.5770 +1346 91300 0.5380 +1346 125965 0.8260 +1346 126129 0.5480 +1346 126328 0.8990 +1346 133060 0.5220 +1346 133522 0.4090 +1346 140564 0.4750 +1346 140690 0.6490 +1346 147912 0.4960 +1346 164668 0.4750 +1346 170712 0.7760 +1346 200315 0.4750 +1346 200316 0.4750 +1346 219348 0.4140 +1346 219623 0.5330 +1346 283459 0.6580 +1346 341947 0.6120 +1346 374291 0.8930 +1346 388753 0.7570 +1346 440567 0.8430 +1347 1349 0.9910 +1347 1350 0.9970 +1347 1351 0.9880 +1347 1352 0.7580 +1347 1353 0.4120 +1347 1355 0.7570 +1347 1537 0.7220 +1347 2197 0.4050 +1347 2653 0.4840 +1347 2987 0.4710 +1347 3094 0.7970 +1347 3336 0.4610 +1347 4512 0.9680 +1347 4513 0.9990 +1347 4514 0.9680 +1347 4519 0.6340 +1347 4637 0.4840 +1347 4694 0.8240 +1347 4695 0.9030 +1347 4696 0.6720 +1347 4697 0.9970 +1347 4698 0.7950 +1347 4700 0.8620 +1347 4701 0.6470 +1347 4702 0.7580 +1347 4704 0.5620 +1347 4705 0.6770 +1347 4706 0.8010 +1347 4707 0.6510 +1347 4708 0.7120 +1347 4709 0.7600 +1347 4710 0.6770 +1347 4711 0.8740 +1347 4712 0.8950 +1347 4713 0.6560 +1347 4714 0.8840 +1347 4715 0.9470 +1347 4716 0.5470 +1347 4717 0.7250 +1347 4718 0.8300 +1347 4720 0.5250 +1347 4722 0.6620 +1347 4723 0.5250 +1347 4724 0.7710 +1347 4725 0.7960 +1347 4726 0.7240 +1347 4728 0.6520 +1347 4729 0.7750 +1347 4731 0.5970 +1347 5464 0.4130 +1347 5478 0.4290 +1347 5683 0.4220 +1347 5684 0.4030 +1347 5687 0.5220 +1347 5689 0.4910 +1347 5694 0.4410 +1347 6133 0.4040 +1347 6155 0.4980 +1347 6165 0.4440 +1347 6166 0.5260 +1347 6170 0.4550 +1347 6218 0.4370 +1347 6227 0.4690 +1347 6235 0.4330 +1347 6389 0.4380 +1347 6390 0.5360 +1347 6391 0.4050 +1347 6392 0.5300 +1347 6633 0.6420 +1347 6634 0.4680 +1347 6637 0.4150 +1347 6727 0.6390 +1347 6834 0.4040 +1347 6902 0.4470 +1347 7295 0.4250 +1347 7381 0.8550 +1347 7384 0.8330 +1347 7385 0.8550 +1347 7386 0.8460 +1347 7388 0.9260 +1347 9167 0.9390 +1347 9296 0.6120 +1347 9377 0.9910 +1347 9512 0.5590 +1347 9550 0.4030 +1347 9551 0.8320 +1347 9553 0.5350 +1347 9556 0.4900 +1347 10063 0.6740 +1347 10128 0.4770 +1347 10165 0.4870 +1347 10169 0.5330 +1347 10284 0.5340 +1347 10476 0.9290 +1347 10632 0.9100 +1347 10923 0.4290 +1347 10952 0.4170 +1347 10975 0.9650 +1347 11315 0.4500 +1347 25994 0.5440 +1347 26521 0.5840 +1347 27089 0.9730 +1347 27109 0.5240 +1347 27258 0.4700 +1347 28958 0.4240 +1347 29796 0.8970 +1347 51023 0.4420 +1347 51079 0.7310 +1347 51142 0.4090 +1347 51241 0.5730 +1347 51258 0.5400 +1347 51371 0.6780 +1347 51372 0.7890 +1347 51504 0.4850 +1347 51529 0.5310 +1347 51642 0.5320 +1347 51650 0.4490 +1347 54205 0.4820 +1347 54460 0.5540 +1347 54539 0.5750 +1347 54543 0.4040 +1347 54891 0.4010 +1347 55052 0.4740 +1347 55967 0.8870 +1347 56901 0.7770 +1347 58506 0.4900 +1347 59286 0.7780 +1347 81892 0.6990 +1347 84300 0.4320 +1347 84311 0.4220 +1347 84337 0.5310 +1347 84419 0.6750 +1347 84701 0.8630 +1347 84833 0.7240 +1347 84987 0.4630 +1347 91942 0.4120 +1347 92259 0.4250 +1347 116540 0.4610 +1347 125965 0.7710 +1347 126328 0.7180 +1347 140823 0.5700 +1347 170712 0.9330 +1347 192286 0.4150 +1347 267020 0.7070 +1347 285521 0.4570 +1347 341947 0.8330 +1347 374291 0.4920 +1347 388753 0.6690 +1347 440567 0.8090 +1347 440574 0.5350 +1347 100131801 0.4750 +1347 100532726 0.6330 +1349 1350 0.9990 +1349 1351 0.9970 +1349 1352 0.7200 +1349 1353 0.4400 +1349 1355 0.8030 +1349 1537 0.9730 +1349 3052 0.5790 +1349 3094 0.4770 +1349 4512 0.9950 +1349 4513 0.9960 +1349 4514 0.9870 +1349 4519 0.9630 +1349 4535 0.8760 +1349 4536 0.8780 +1349 4537 0.8640 +1349 4538 0.8730 +1349 4539 0.8690 +1349 4540 0.8770 +1349 4541 0.8750 +1349 4694 0.9830 +1349 4695 0.9490 +1349 4696 0.9300 +1349 4697 0.9970 +1349 4698 0.9410 +1349 4700 0.9640 +1349 4701 0.9360 +1349 4702 0.9130 +1349 4704 0.8880 +1349 4705 0.9120 +1349 4706 0.9240 +1349 4707 0.9560 +1349 4708 0.9380 +1349 4709 0.9670 +1349 4710 0.9270 +1349 4711 0.9740 +1349 4712 0.9350 +1349 4713 0.9230 +1349 4714 0.9050 +1349 4715 0.9770 +1349 4716 0.9280 +1349 4717 0.9590 +1349 4718 0.9170 +1349 4720 0.9070 +1349 4722 0.9090 +1349 4723 0.9130 +1349 4724 0.9460 +1349 4725 0.9290 +1349 4726 0.9180 +1349 4728 0.8990 +1349 4729 0.9270 +1349 4731 0.9110 +1349 5742 0.4990 +1349 6170 0.4490 +1349 6341 0.4220 +1349 6389 0.4020 +1349 6390 0.6050 +1349 6392 0.4620 +1349 6834 0.4020 +1349 7381 0.9840 +1349 7384 0.9740 +1349 7385 0.9770 +1349 7386 0.9760 +1349 7388 0.9900 +1349 9167 0.9340 +1349 9377 0.9950 +1349 9512 0.5860 +1349 9551 0.8230 +1349 9556 0.4010 +1349 9978 0.4250 +1349 10063 0.5770 +1349 10165 0.4240 +1349 10476 0.7630 +1349 10632 0.7860 +1349 10975 0.9900 +1349 23645 0.4060 +1349 25994 0.4440 +1349 26521 0.6000 +1349 27089 0.9910 +1349 27258 0.4310 +1349 28958 0.4100 +1349 29796 0.9920 +1349 51079 0.9480 +1349 51241 0.5510 +1349 51263 0.4140 +1349 54205 0.8580 +1349 54539 0.9590 +1349 55967 0.9340 +1349 56901 0.6730 +1349 79002 0.4930 +1349 81341 0.4640 +1349 81892 0.4520 +1349 84419 0.5400 +1349 84701 0.9150 +1349 84833 0.4570 +1349 84886 0.5390 +1349 84987 0.6050 +1349 91300 0.4060 +1349 91942 0.5290 +1349 116228 0.4320 +1349 125965 0.8320 +1349 126328 0.9560 +1349 170712 0.9010 +1349 267020 0.4160 +1349 283459 0.4910 +1349 341947 0.6840 +1349 374291 0.9050 +1349 388753 0.8070 +1349 440567 0.8810 +1349 493753 0.4430 +1349 100131801 0.4420 +1350 1351 0.9970 +1350 1352 0.7320 +1350 1353 0.4820 +1350 1355 0.8920 +1350 1486 0.6080 +1350 1537 0.9970 +1350 1628 0.5450 +1350 1649 0.5460 +1350 2197 0.6650 +1350 3043 0.4160 +1350 3094 0.8670 +1350 3131 0.5450 +1350 3460 0.5470 +1350 4512 0.9990 +1350 4513 0.9990 +1350 4514 0.9990 +1350 4519 0.9820 +1350 4535 0.8790 +1350 4536 0.8660 +1350 4537 0.8710 +1350 4538 0.8600 +1350 4539 0.8520 +1350 4540 0.9540 +1350 4541 0.8510 +1350 4694 0.9900 +1350 4695 0.9920 +1350 4696 0.9610 +1350 4697 0.9990 +1350 4698 0.9890 +1350 4700 0.9880 +1350 4701 0.9790 +1350 4702 0.9470 +1350 4704 0.9460 +1350 4705 0.9060 +1350 4706 0.9280 +1350 4707 0.9530 +1350 4708 0.9440 +1350 4709 0.9800 +1350 4710 0.9840 +1350 4711 0.9750 +1350 4712 0.9740 +1350 4713 0.9770 +1350 4714 0.9770 +1350 4715 0.9850 +1350 4716 0.9670 +1350 4717 0.9700 +1350 4718 0.9620 +1350 4720 0.9430 +1350 4722 0.9480 +1350 4723 0.9270 +1350 4724 0.9930 +1350 4725 0.9800 +1350 4726 0.9890 +1350 4728 0.9450 +1350 4729 0.9670 +1350 4731 0.9460 +1350 4783 0.5450 +1350 5016 0.6080 +1350 5018 0.4160 +1350 5037 0.4990 +1350 5204 0.5420 +1350 5250 0.4440 +1350 5432 0.4160 +1350 5478 0.4830 +1350 5687 0.4210 +1350 5742 0.4930 +1350 6124 0.4770 +1350 6128 0.4580 +1350 6129 0.4260 +1350 6133 0.6400 +1350 6135 0.5320 +1350 6136 0.5270 +1350 6138 0.5350 +1350 6139 0.8000 +1350 6144 0.6020 +1350 6146 0.5590 +1350 6152 0.6900 +1350 6154 0.4700 +1350 6155 0.7940 +1350 6156 0.6420 +1350 6160 0.8350 +1350 6164 0.8100 +1350 6165 0.8090 +1350 6166 0.4100 +1350 6167 0.4620 +1350 6168 0.6560 +1350 6169 0.5080 +1350 6170 0.8180 +1350 6171 0.4220 +1350 6173 0.4160 +1350 6187 0.5600 +1350 6188 0.4390 +1350 6189 0.5620 +1350 6193 0.4210 +1350 6194 0.4840 +1350 6202 0.4990 +1350 6203 0.4570 +1350 6204 0.5150 +1350 6207 0.5140 +1350 6208 0.5090 +1350 6210 0.6700 +1350 6217 0.4040 +1350 6218 0.8140 +1350 6222 0.5830 +1350 6224 0.5170 +1350 6227 0.5740 +1350 6228 0.5820 +1350 6229 0.5900 +1350 6230 0.5110 +1350 6231 0.5180 +1350 6232 0.5190 +1350 6233 0.4880 +1350 6234 0.5270 +1350 6235 0.6210 +1350 6341 0.4340 +1350 6389 0.4670 +1350 6390 0.7040 +1350 6391 0.6700 +1350 6392 0.6190 +1350 6633 0.4660 +1350 6634 0.4450 +1350 6637 0.4920 +1350 6647 0.4210 +1350 6727 0.6540 +1350 6902 0.4840 +1350 7008 0.5450 +1350 7381 0.9990 +1350 7384 0.9940 +1350 7385 0.9990 +1350 7386 0.9990 +1350 7388 0.9970 +1350 7416 0.4170 +1350 7417 0.4580 +1350 8479 0.5210 +1350 9167 0.9770 +1350 9349 0.5090 +1350 9377 0.9990 +1350 9512 0.8980 +1350 9551 0.8330 +1350 9553 0.4050 +1350 9556 0.5550 +1350 9582 0.7880 +1350 10063 0.5870 +1350 10476 0.9620 +1350 10553 0.4350 +1350 10632 0.9660 +1350 10975 0.9950 +1350 11224 0.5950 +1350 11315 0.4780 +1350 23203 0.7230 +1350 23521 0.4710 +1350 23558 0.5510 +1350 23645 0.5680 +1350 23787 0.4080 +1350 25873 0.5690 +1350 27089 0.9990 +1350 27159 0.6080 +1350 27258 0.5030 +1350 27350 0.7860 +1350 28958 0.6870 +1350 29093 0.4500 +1350 29796 0.9990 +1350 51079 0.9610 +1350 51121 0.4510 +1350 51187 0.4420 +1350 51241 0.5560 +1350 51372 0.7870 +1350 51650 0.4840 +1350 54205 0.8490 +1350 54539 0.9650 +1350 54543 0.8590 +1350 55028 0.6590 +1350 55052 0.5000 +1350 55967 0.9770 +1350 56901 0.8410 +1350 57379 0.7860 +1350 57407 0.4280 +1350 59286 0.4650 +1350 60489 0.7880 +1350 64111 0.6020 +1350 79002 0.9730 +1350 80167 0.4570 +1350 80195 0.4270 +1350 81341 0.7770 +1350 81892 0.5440 +1350 84419 0.6940 +1350 84689 0.5170 +1350 84701 0.9910 +1350 84833 0.6160 +1350 84886 0.9940 +1350 84987 0.5260 +1350 91300 0.5680 +1350 93974 0.4550 +1350 112939 0.4330 +1350 116228 0.4440 +1350 125965 0.9860 +1350 126328 0.9540 +1350 140564 0.7860 +1350 140823 0.6890 +1350 164668 0.7860 +1350 164684 0.5500 +1350 170622 0.4350 +1350 170712 0.9060 +1350 200315 0.7860 +1350 200316 0.7880 +1350 259307 0.5250 +1350 267020 0.8830 +1350 283459 0.9630 +1350 285521 0.4620 +1350 341947 0.7290 +1350 374291 0.9220 +1350 388753 0.9850 +1350 440567 0.9720 +1350 440574 0.4290 +1350 100131801 0.5140 +1350 100303755 0.4620 +1350 100532726 0.6360 +1350 105372267 0.5450 +1351 1352 0.6750 +1351 1355 0.6930 +1351 1537 0.7570 +1351 1956 0.7550 +1351 2011 0.7670 +1351 2495 0.7970 +1351 3417 0.4070 +1351 3846 0.4870 +1351 4191 0.4480 +1351 4296 0.7690 +1351 4508 0.5200 +1351 4512 0.9900 +1351 4513 0.9820 +1351 4514 0.9780 +1351 4519 0.6460 +1351 4694 0.6600 +1351 4695 0.5820 +1351 4696 0.6450 +1351 4697 0.9890 +1351 4700 0.5810 +1351 4701 0.5280 +1351 4702 0.6120 +1351 4705 0.4450 +1351 4706 0.6610 +1351 4708 0.7000 +1351 4709 0.6410 +1351 4710 0.4280 +1351 4711 0.4660 +1351 4712 0.5110 +1351 4713 0.7570 +1351 4714 0.8250 +1351 4715 0.6070 +1351 4716 0.4880 +1351 4717 0.5110 +1351 4718 0.4650 +1351 4720 0.4100 +1351 4722 0.5160 +1351 4723 0.5190 +1351 4725 0.5260 +1351 4726 0.4820 +1351 4728 0.7410 +1351 5331 0.7690 +1351 5742 0.5270 +1351 5837 0.7750 +1351 5970 0.6820 +1351 6094 0.7700 +1351 6389 0.5020 +1351 6390 0.4510 +1351 6391 0.5050 +1351 6834 0.4350 +1351 7356 0.7650 +1351 7381 0.7120 +1351 7384 0.8160 +1351 7385 0.7840 +1351 7386 0.7790 +1351 7388 0.8410 +1351 7536 0.7690 +1351 8061 0.7660 +1351 9167 0.9120 +1351 9296 0.4200 +1351 9377 0.9960 +1351 9551 0.5130 +1351 9804 0.4840 +1351 10063 0.4480 +1351 10476 0.5450 +1351 10632 0.6540 +1351 10975 0.8370 +1351 25824 0.4020 +1351 27089 0.8240 +1351 27235 0.4120 +1351 28958 0.6050 +1351 29796 0.7960 +1351 51024 0.5120 +1351 51079 0.5740 +1351 51142 0.4370 +1351 51241 0.4390 +1351 54205 0.7200 +1351 54539 0.6060 +1351 55744 0.4280 +1351 55967 0.6360 +1351 56901 0.7170 +1351 65260 0.5600 +1351 79026 0.7680 +1351 84316 0.6260 +1351 84419 0.7050 +1351 84701 0.8850 +1351 84987 0.6640 +1351 125965 0.6600 +1351 126328 0.6820 +1351 140823 0.4870 +1351 170712 0.7280 +1351 341947 0.9590 +1351 374291 0.5580 +1351 388753 0.6070 +1351 440567 0.6730 +1351 643834 0.4400 +1351 643847 0.4680 +1351 100131801 0.6430 +1352 1353 0.9820 +1352 1355 0.9990 +1352 1371 0.4440 +1352 1537 0.8540 +1352 1716 0.4470 +1352 2232 0.4680 +1352 2235 0.9530 +1352 3052 0.9610 +1352 3145 0.4630 +1352 3162 0.9110 +1352 3163 0.9110 +1352 3417 0.5120 +1352 3418 0.5260 +1352 4285 0.4110 +1352 4358 0.4160 +1352 4508 0.7650 +1352 4512 0.9960 +1352 4513 0.9910 +1352 4514 0.9980 +1352 4519 0.8580 +1352 4535 0.5910 +1352 4536 0.7220 +1352 4537 0.7110 +1352 4538 0.6660 +1352 4540 0.7300 +1352 4541 0.5570 +1352 4695 0.5530 +1352 4697 0.8230 +1352 4704 0.5380 +1352 4705 0.5600 +1352 4706 0.4280 +1352 4714 0.4140 +1352 4715 0.4640 +1352 4718 0.4440 +1352 4720 0.6750 +1352 4722 0.8100 +1352 4723 0.7770 +1352 4724 0.7280 +1352 4725 0.4130 +1352 4726 0.4540 +1352 4728 0.8330 +1352 4729 0.6280 +1352 4967 0.4990 +1352 5018 0.5300 +1352 5428 0.5440 +1352 5498 0.4190 +1352 6341 0.9640 +1352 6389 0.8220 +1352 6390 0.6810 +1352 6391 0.6210 +1352 6392 0.6670 +1352 6648 0.4740 +1352 6834 0.9770 +1352 6891 0.4140 +1352 7019 0.5140 +1352 7284 0.5370 +1352 7372 0.4200 +1352 7381 0.7930 +1352 7384 0.7230 +1352 7385 0.7160 +1352 7386 0.8570 +1352 7388 0.6190 +1352 7389 0.4640 +1352 7390 0.4550 +1352 8458 0.4110 +1352 8803 0.5700 +1352 8846 0.5390 +1352 9167 0.4870 +1352 9377 0.8610 +1352 9563 0.4580 +1352 9927 0.4120 +1352 9997 0.9550 +1352 10063 0.7620 +1352 10128 0.8060 +1352 10352 0.5720 +1352 10469 0.4250 +1352 10939 0.4830 +1352 10975 0.6380 +1352 11019 0.4800 +1352 22868 0.6960 +1352 22934 0.4180 +1352 23155 0.6110 +1352 23456 0.7670 +1352 23457 0.4400 +1352 23479 0.7450 +1352 23590 0.6470 +1352 23645 0.4850 +1352 25813 0.4470 +1352 25994 0.4790 +1352 26061 0.6300 +1352 27089 0.6620 +1352 27235 0.4610 +1352 28958 0.6850 +1352 28976 0.5560 +1352 29796 0.7010 +1352 29914 0.5750 +1352 51004 0.4520 +1352 51067 0.4310 +1352 51103 0.4760 +1352 51204 0.8910 +1352 51241 0.4340 +1352 54205 0.6200 +1352 54802 0.4400 +1352 54968 0.4270 +1352 55153 0.4130 +1352 55157 0.5030 +1352 55526 0.5380 +1352 55572 0.5930 +1352 55744 0.4510 +1352 55753 0.4570 +1352 56901 0.6790 +1352 57001 0.4540 +1352 57107 0.5990 +1352 64111 0.4170 +1352 64518 0.4160 +1352 64756 0.4060 +1352 64968 0.4050 +1352 64976 0.4520 +1352 79133 0.6510 +1352 79145 0.4830 +1352 81341 0.5320 +1352 84274 0.4340 +1352 84419 0.5400 +1352 84701 0.8050 +1352 84705 0.4740 +1352 84939 0.5210 +1352 84987 0.6470 +1352 90639 0.5060 +1352 91300 0.4850 +1352 91647 0.4680 +1352 91942 0.5990 +1352 112812 0.4220 +1352 113510 0.4870 +1352 115209 0.4130 +1352 116228 0.5100 +1352 118490 0.5190 +1352 123879 0.4220 +1352 125965 0.5670 +1352 131474 0.5380 +1352 137682 0.6770 +1352 139221 0.5210 +1352 170712 0.5910 +1352 285521 0.6610 +1352 341947 0.6160 +1352 374286 0.8680 +1352 374291 0.8140 +1352 388753 0.7150 +1352 440567 0.5400 +1352 493753 0.6360 +1352 644096 0.4330 +1352 728317 0.5210 +1352 100131801 0.6690 +1352 100303755 0.7010 +1353 1355 0.9310 +1353 1537 0.6970 +1353 1678 0.4630 +1353 2395 0.4290 +1353 2671 0.4980 +1353 3799 0.5000 +1353 3800 0.5700 +1353 4046 0.7110 +1353 4214 0.5420 +1353 4508 0.5800 +1353 4512 0.9640 +1353 4513 0.9790 +1353 4514 0.9770 +1353 4519 0.5040 +1353 4535 0.4590 +1353 4537 0.4430 +1353 4538 0.4170 +1353 4540 0.4390 +1353 4697 0.4980 +1353 4702 0.5530 +1353 4706 0.4300 +1353 4711 0.4650 +1353 4713 0.5400 +1353 4715 0.4480 +1353 4716 0.4960 +1353 4722 0.5350 +1353 4724 0.4470 +1353 5018 0.6660 +1353 5188 0.4380 +1353 5250 0.5260 +1353 5432 0.4980 +1353 5687 0.4900 +1353 5890 0.5930 +1353 5903 0.4920 +1353 5983 0.9020 +1353 6154 0.8210 +1353 6161 0.5110 +1353 6341 0.9610 +1353 6390 0.4700 +1353 6647 0.5540 +1353 6834 0.9120 +1353 7329 0.4580 +1353 7384 0.6270 +1353 7385 0.6640 +1353 7386 0.7870 +1353 9377 0.6690 +1353 9497 0.7060 +1353 9512 0.5820 +1353 9973 0.6480 +1353 9997 0.9230 +1353 10040 0.4960 +1353 10063 0.9390 +1353 10352 0.5390 +1353 10367 0.4430 +1353 10440 0.4640 +1353 10469 0.4920 +1353 10884 0.5970 +1353 11222 0.4370 +1353 11331 0.4960 +1353 23014 0.4080 +1353 23155 0.8320 +1353 23203 0.5010 +1353 25818 0.4120 +1353 26504 0.8430 +1353 26505 0.4220 +1353 26507 0.7040 +1353 26517 0.4590 +1353 26519 0.4690 +1353 26610 0.5260 +1353 27324 0.7500 +1353 27429 0.4420 +1353 28958 0.6430 +1353 29090 0.6320 +1353 29928 0.4860 +1353 51076 0.4020 +1353 51079 0.4590 +1353 51121 0.8180 +1353 51204 0.4580 +1353 51241 0.5700 +1353 51287 0.6360 +1353 51805 0.4150 +1353 54205 0.7720 +1353 54902 0.4640 +1353 55245 0.4580 +1353 55486 0.4240 +1353 55744 0.5050 +1353 56942 0.5210 +1353 57001 0.4110 +1353 57017 0.4860 +1353 57096 0.4280 +1353 58488 0.4080 +1353 60558 0.4570 +1353 64745 0.4030 +1353 64756 0.5700 +1353 79145 0.7680 +1353 80219 0.4080 +1353 80704 0.4250 +1353 84274 0.5080 +1353 84284 0.4360 +1353 84311 0.4520 +1353 84701 0.5460 +1353 84987 0.6130 +1353 90624 0.4820 +1353 90639 0.9030 +1353 91419 0.5080 +1353 91647 0.4100 +1353 92609 0.5130 +1353 93953 0.4090 +1353 116228 0.4660 +1353 118490 0.5060 +1353 125965 0.4320 +1353 131474 0.6690 +1353 150684 0.4290 +1353 152100 0.4260 +1353 152110 0.7780 +1353 221154 0.4640 +1353 252983 0.6220 +1353 285521 0.7160 +1353 341676 0.5070 +1353 388753 0.8040 +1353 493753 0.7250 +1353 100131801 0.5510 +1353 100287932 0.4510 +1353 100303755 0.6930 +1355 1371 0.5540 +1355 1374 0.4500 +1355 1431 0.4650 +1355 1537 0.9610 +1355 2058 0.4350 +1355 2110 0.4950 +1355 2170 0.4040 +1355 2230 0.4860 +1355 2232 0.5450 +1355 2235 0.5880 +1355 3052 0.8890 +1355 3145 0.4030 +1355 4013 0.4020 +1355 4508 0.7250 +1355 4512 0.9920 +1355 4513 0.9910 +1355 4514 0.9940 +1355 4519 0.8960 +1355 4535 0.4080 +1355 4536 0.7070 +1355 4537 0.6830 +1355 4538 0.5520 +1355 4540 0.7260 +1355 4541 0.5480 +1355 4695 0.5770 +1355 4697 0.8500 +1355 4698 0.4640 +1355 4704 0.5230 +1355 4705 0.5030 +1355 4709 0.4350 +1355 4711 0.4210 +1355 4713 0.4120 +1355 4720 0.5910 +1355 4722 0.7500 +1355 4723 0.6530 +1355 4724 0.8820 +1355 4726 0.4750 +1355 4728 0.7840 +1355 5018 0.5840 +1355 5188 0.5010 +1355 5250 0.6100 +1355 5498 0.6200 +1355 5742 0.4850 +1355 6120 0.4580 +1355 6228 0.4640 +1355 6341 0.9800 +1355 6389 0.6980 +1355 6390 0.4330 +1355 6391 0.5200 +1355 6392 0.4060 +1355 6821 0.4650 +1355 6834 0.9920 +1355 7381 0.7390 +1355 7384 0.8420 +1355 7385 0.8880 +1355 7386 0.9780 +1355 7388 0.6670 +1355 7389 0.4970 +1355 7390 0.4900 +1355 7514 0.4490 +1355 8402 0.5780 +1355 9131 0.4550 +1355 9167 0.6140 +1355 9377 0.9410 +1355 9512 0.4900 +1355 9997 0.9760 +1355 10005 0.4210 +1355 10063 0.7210 +1355 10102 0.4040 +1355 10128 0.8390 +1355 10975 0.6600 +1355 10989 0.6450 +1355 11160 0.4520 +1355 11331 0.4070 +1355 22868 0.6910 +1355 23155 0.8210 +1355 23645 0.6730 +1355 27089 0.7450 +1355 28958 0.8570 +1355 29090 0.5550 +1355 29796 0.7150 +1355 29957 0.4400 +1355 51021 0.4270 +1355 51025 0.4080 +1355 51204 0.8970 +1355 51241 0.6370 +1355 51434 0.4560 +1355 54205 0.5660 +1355 54968 0.4120 +1355 55572 0.6250 +1355 55744 0.6110 +1355 55967 0.7110 +1355 56901 0.5620 +1355 56945 0.4070 +1355 57017 0.4520 +1355 60386 0.5520 +1355 64077 0.4560 +1355 64111 0.4010 +1355 64756 0.4270 +1355 64928 0.4500 +1355 65260 0.4300 +1355 79133 0.6150 +1355 79145 0.5810 +1355 81341 0.6730 +1355 84274 0.4450 +1355 84419 0.5400 +1355 84701 0.8500 +1355 84987 0.6940 +1355 90639 0.5820 +1355 91300 0.6730 +1355 91647 0.5360 +1355 91942 0.6770 +1355 92399 0.4510 +1355 92609 0.5440 +1355 94081 0.6560 +1355 112812 0.4830 +1355 116228 0.5180 +1355 118490 0.5760 +1355 119559 0.5310 +1355 122481 0.4480 +1355 124454 0.4220 +1355 125965 0.5860 +1355 126328 0.4200 +1355 130752 0.4110 +1355 137682 0.7320 +1355 157378 0.4260 +1355 170712 0.5880 +1355 285521 0.6860 +1355 341947 0.7990 +1355 374291 0.7200 +1355 388753 0.7830 +1355 440567 0.5400 +1355 493753 0.5940 +1355 644096 0.4760 +1355 100131801 0.7030 +1355 100303755 0.9140 +1356 1401 0.6920 +1356 1508 0.5020 +1356 1511 0.4830 +1356 1621 0.4670 +1356 2056 0.4370 +1356 2058 0.7810 +1356 2098 0.6340 +1356 2147 0.7030 +1356 2235 0.9340 +1356 2243 0.5590 +1356 2244 0.5920 +1356 2266 0.4630 +1356 2395 0.9450 +1356 2495 0.4500 +1356 2512 0.5170 +1356 2520 0.4470 +1356 2537 0.4100 +1356 2597 0.5860 +1356 2638 0.6800 +1356 2717 0.5070 +1356 2805 0.4060 +1356 2806 0.4560 +1356 2875 0.6320 +1356 2877 0.6540 +1356 2878 0.6500 +1356 2880 0.6400 +1356 2882 0.6500 +1356 2919 0.4580 +1356 2936 0.4550 +1356 3043 0.4150 +1356 3053 0.4140 +1356 3075 0.6160 +1356 3077 0.7270 +1356 3091 0.4810 +1356 3162 0.9420 +1356 3163 0.9170 +1356 3240 0.9470 +1356 3250 0.6320 +1356 3251 0.4370 +1356 3263 0.8800 +1356 3273 0.6620 +1356 3309 0.4320 +1356 3426 0.4430 +1356 3479 0.4510 +1356 3553 0.4180 +1356 3557 0.4380 +1356 3569 0.4930 +1356 3630 0.4540 +1356 3658 0.4710 +1356 3698 0.6690 +1356 3827 0.6620 +1356 3934 0.5230 +1356 3952 0.4980 +1356 4015 0.6320 +1356 4018 0.4220 +1356 4057 0.9710 +1356 4137 0.4100 +1356 4151 0.4350 +1356 4240 0.6790 +1356 4282 0.4740 +1356 4353 0.9650 +1356 4493 0.7800 +1356 4891 0.6980 +1356 4969 0.4660 +1356 5004 0.9230 +1356 5005 0.9080 +1356 5192 0.4550 +1356 5265 0.9440 +1356 5340 0.5760 +1356 5346 0.4130 +1356 5420 0.4490 +1356 5444 0.6540 +1356 5950 0.4840 +1356 6289 0.4120 +1356 6347 0.4300 +1356 6414 0.4070 +1356 6462 0.5130 +1356 6609 0.4400 +1356 6647 0.4890 +1356 6649 0.4310 +1356 6694 0.5450 +1356 6906 0.4270 +1356 7018 0.8350 +1356 7036 0.6880 +1356 7037 0.6890 +1356 7276 0.8270 +1356 7295 0.4010 +1356 7299 0.4620 +1356 7369 0.5390 +1356 7448 0.4190 +1356 7498 0.4040 +1356 7782 0.6490 +1356 8398 0.4420 +1356 8542 0.4670 +1356 9370 0.5620 +1356 9843 0.9040 +1356 9973 0.6720 +1356 10063 0.5860 +1356 10085 0.6370 +1356 10492 0.5770 +1356 10516 0.4320 +1356 23400 0.4010 +1356 23516 0.4270 +1356 23521 0.7460 +1356 25973 0.4730 +1356 27121 0.4340 +1356 28998 0.8660 +1356 30008 0.4570 +1356 30061 0.9820 +1356 51091 0.4150 +1356 54757 0.4160 +1356 55240 0.4340 +1356 56975 0.5010 +1356 57817 0.6530 +1356 64116 0.4050 +1356 79901 0.4610 +1356 80025 0.5430 +1356 80347 0.4080 +1356 84706 0.4710 +1356 85365 0.6220 +1356 116071 0.4420 +1356 116844 0.6050 +1356 132949 0.4430 +1356 150684 0.4700 +1356 257202 0.6400 +1356 284161 0.4260 +1356 493869 0.6530 +1357 1358 0.9380 +1357 1359 0.9220 +1357 1360 0.9690 +1357 1363 0.4390 +1357 1504 0.9730 +1357 1506 0.9460 +1357 1826 0.5070 +1357 1990 0.7440 +1357 2158 0.4180 +1357 2494 0.4420 +1357 2641 0.5010 +1357 2813 0.4990 +1357 3630 0.5520 +1357 3651 0.4830 +1357 3880 0.4810 +1357 4825 0.5580 +1357 5319 0.5890 +1357 5406 0.8990 +1357 5407 0.7770 +1357 5539 0.7690 +1357 5644 0.8550 +1357 5645 0.6920 +1357 5646 0.6250 +1357 6035 0.4470 +1357 6662 0.5450 +1357 6690 0.7240 +1357 6779 0.4460 +1357 7597 0.4500 +1357 9075 0.4510 +1357 10136 0.9890 +1357 11317 0.6260 +1357 11330 0.9330 +1357 23436 0.9730 +1357 50674 0.5930 +1357 51032 0.8170 +1357 56925 0.6690 +1357 57453 0.5670 +1357 63036 0.8960 +1357 64714 0.5100 +1357 84504 0.5050 +1357 133308 0.4640 +1357 136541 0.6660 +1357 150159 0.4930 +1357 222546 0.4150 +1357 256297 0.7430 +1357 342898 0.7500 +1357 440387 0.9390 +1357 723961 0.4230 +1358 1359 0.9180 +1358 1504 0.6190 +1358 1506 0.4620 +1358 1990 0.6600 +1358 4232 0.4030 +1358 5319 0.4680 +1358 5406 0.5890 +1358 5407 0.6870 +1358 5539 0.6600 +1358 5644 0.6270 +1358 5645 0.6390 +1358 5646 0.4210 +1358 6690 0.4150 +1358 10136 0.9400 +1358 11317 0.5480 +1358 11330 0.8250 +1358 23436 0.8220 +1358 51032 0.6980 +1358 56925 0.8090 +1358 57862 0.4210 +1358 63036 0.8370 +1358 64714 0.4050 +1358 83729 0.4560 +1358 114960 0.4240 +1358 133308 0.5930 +1358 136541 0.4380 +1358 150159 0.5840 +1358 256297 0.4180 +1358 342898 0.5180 +1358 440387 0.6120 +1359 1511 0.8120 +1359 1776 0.4370 +1359 2205 0.9210 +1359 2206 0.9380 +1359 2624 0.7520 +1359 3002 0.4380 +1359 3067 0.8830 +1359 3340 0.5660 +1359 3565 0.4270 +1359 3596 0.4030 +1359 3815 0.5650 +1359 4254 0.4620 +1359 5552 0.7380 +1359 6571 0.4420 +1359 7177 0.9450 +1359 8509 0.8970 +1359 10344 0.4480 +1359 10631 0.4160 +1359 23430 0.5630 +1359 25823 0.5540 +1359 27306 0.5810 +1359 54504 0.4570 +1359 57486 0.4600 +1359 64499 0.8750 +1359 65217 0.4970 +1359 85414 0.5270 +1359 90865 0.4040 +1359 117194 0.5120 +1359 202309 0.4130 +1360 1361 0.9420 +1360 1363 0.8480 +1360 1368 0.5260 +1360 1369 0.8350 +1360 1370 0.7220 +1360 1504 0.9320 +1360 1506 0.8850 +1360 1509 0.5080 +1360 1990 0.5020 +1360 2023 0.5870 +1360 2147 0.4420 +1360 2335 0.4270 +1360 2813 0.4200 +1360 3630 0.4230 +1360 3827 0.4670 +1360 4057 0.4700 +1360 5179 0.4870 +1360 5319 0.4590 +1360 5327 0.6520 +1360 5340 0.8840 +1360 5345 0.4660 +1360 5406 0.6140 +1360 5407 0.5810 +1360 5409 0.4220 +1360 5624 0.6100 +1360 5644 0.6700 +1360 5645 0.5850 +1360 5646 0.5140 +1360 6051 0.5510 +1360 6690 0.4180 +1360 7056 0.5770 +1360 8607 0.4490 +1360 9622 0.4490 +1360 10136 0.9170 +1360 11330 0.6090 +1360 23436 0.9090 +1360 23498 0.4280 +1360 26122 0.4360 +1360 50624 0.4410 +1360 51032 0.4990 +1360 55848 0.4080 +1360 63036 0.7340 +1360 64714 0.4170 +1360 89782 0.4490 +1360 136541 0.4990 +1360 146547 0.5440 +1360 342898 0.4940 +1360 440387 0.9290 +1361 1363 0.8460 +1361 1368 0.4930 +1361 1369 0.8110 +1361 1370 0.4440 +1361 1401 0.5050 +1361 1504 0.4650 +1361 1991 0.4240 +1361 2023 0.4810 +1361 2147 0.9920 +1361 2149 0.4370 +1361 2152 0.7190 +1361 2155 0.7630 +1361 2157 0.6030 +1361 2158 0.6440 +1361 2159 0.6770 +1361 2160 0.7630 +1361 2161 0.5350 +1361 2165 0.6070 +1361 2243 0.6840 +1361 2244 0.6160 +1361 2266 0.7850 +1361 2519 0.4390 +1361 2638 0.4330 +1361 3026 0.5080 +1361 3053 0.7640 +1361 3075 0.6680 +1361 3240 0.4070 +1361 3248 0.4370 +1361 3250 0.4500 +1361 3273 0.7320 +1361 3426 0.5260 +1361 3698 0.5230 +1361 3699 0.4800 +1361 3816 0.5800 +1361 3818 0.5300 +1361 3827 0.7910 +1361 4018 0.5910 +1361 4153 0.5370 +1361 4318 0.4180 +1361 5054 0.7740 +1361 5055 0.5000 +1361 5104 0.5070 +1361 5126 0.4120 +1361 5176 0.8190 +1361 5265 0.4340 +1361 5327 0.9200 +1361 5328 0.7350 +1361 5340 0.9840 +1361 5345 0.8950 +1361 5624 0.7530 +1361 5644 0.4250 +1361 5648 0.5880 +1361 5919 0.4030 +1361 6403 0.4160 +1361 6694 0.4840 +1361 6818 0.4470 +1361 6906 0.4080 +1361 7035 0.6880 +1361 7056 0.9580 +1361 7448 0.4360 +1361 7450 0.6170 +1361 8858 0.4550 +1361 9622 0.7330 +1361 10257 0.4180 +1361 10544 0.7240 +1361 10747 0.6680 +1361 11093 0.5370 +1361 51056 0.5710 +1361 51156 0.5070 +1361 51200 0.4440 +1361 54363 0.5150 +1361 440138 0.4010 +1361 440387 0.4540 +1361 445329 0.4330 +1362 2086 0.4810 +1362 2495 0.5170 +1362 2512 0.5000 +1362 2534 0.4290 +1362 2580 0.5750 +1362 2647 0.5010 +1362 3312 0.5010 +1362 3482 0.7380 +1362 4074 0.5700 +1362 4952 0.5040 +1362 5045 0.5260 +1362 5066 0.4430 +1362 5126 0.4330 +1362 5286 0.5750 +1362 5550 0.4350 +1362 5878 0.5190 +1362 6272 0.6750 +1362 6532 0.5190 +1362 6554 0.4050 +1362 6643 0.5770 +1362 6844 0.5500 +1362 6845 0.5100 +1362 7037 0.5770 +1362 7124 0.4920 +1362 7163 0.5010 +1362 7164 0.4990 +1362 7260 0.4790 +1362 8301 0.5510 +1362 8546 0.5240 +1362 8673 0.5000 +1362 8775 0.5000 +1362 8905 0.5240 +1362 8907 0.7330 +1362 9026 0.5040 +1362 9685 0.6170 +1362 9698 0.5390 +1362 9829 0.4990 +1362 10053 0.5800 +1362 10226 0.4540 +1362 10228 0.4080 +1362 10618 0.7610 +1362 10717 0.4990 +1362 23062 0.4060 +1362 23431 0.5240 +1362 23557 0.5030 +1362 25977 0.5130 +1362 26258 0.5040 +1362 27131 0.5070 +1362 27289 0.5630 +1362 30816 0.4850 +1362 51429 0.4990 +1362 54885 0.5040 +1362 55088 0.4560 +1362 55330 0.4990 +1362 55690 0.5840 +1362 55773 0.4530 +1362 64149 0.4660 +1362 79932 0.5380 +1362 81567 0.5000 +1362 84062 0.5250 +1362 130340 0.5020 +1362 146547 0.5410 +1362 157769 0.5740 +1362 286451 0.5580 +1362 375611 0.9160 +1362 388552 0.4990 +1362 405754 0.4810 +1363 1534 0.5910 +1363 1636 0.4460 +1363 1742 0.5300 +1363 1803 0.5220 +1363 2308 0.4920 +1363 2516 0.4100 +1363 2641 0.4320 +1363 2688 0.4090 +1363 3375 0.5780 +1363 3630 0.9430 +1363 3651 0.4200 +1363 3952 0.6250 +1363 4159 0.4430 +1363 4160 0.6400 +1363 4345 0.5560 +1363 4852 0.5020 +1363 5045 0.5100 +1363 5066 0.7190 +1363 5122 0.8940 +1363 5126 0.8480 +1363 5136 0.4110 +1363 5179 0.7230 +1363 5443 0.9650 +1363 5547 0.4910 +1363 5798 0.4750 +1363 5799 0.7070 +1363 6051 0.4740 +1363 6272 0.5740 +1363 6447 0.6100 +1363 6616 0.4570 +1363 6804 0.5390 +1363 6833 0.4640 +1363 7275 0.5980 +1363 7287 0.4240 +1363 7289 0.4910 +1363 7425 0.4190 +1363 7466 0.4480 +1363 7857 0.7960 +1363 8404 0.4100 +1363 8455 0.6850 +1363 9722 0.7060 +1363 11132 0.5040 +1363 27344 0.8960 +1363 29106 0.8030 +1363 57094 0.4590 +1363 89778 0.4610 +1364 1365 0.8590 +1364 1366 0.9530 +1364 1419 0.4400 +1364 1420 0.4270 +1364 1495 0.5180 +1364 1499 0.6660 +1364 1510 0.4420 +1364 1832 0.4320 +1364 1947 0.8010 +1364 1956 0.4180 +1364 1969 0.8450 +1364 1999 0.6290 +1364 2041 0.5290 +1364 2064 0.5960 +1364 2597 0.4570 +1364 2697 0.5520 +1364 2706 0.5100 +1364 2707 0.4420 +1364 3229 0.4030 +1364 3553 0.4440 +1364 3569 0.4320 +1364 3688 0.5100 +1364 3818 0.4430 +1364 3852 0.5220 +1364 3855 0.4950 +1364 3856 0.6220 +1364 3861 0.4170 +1364 3875 0.5170 +1364 3880 0.6130 +1364 3993 0.4860 +1364 4070 0.5550 +1364 4072 0.7850 +1364 4790 0.4710 +1364 5010 0.7210 +1364 5017 0.4120 +1364 5054 0.4600 +1364 5097 0.5260 +1364 5652 0.4690 +1364 6462 0.5530 +1364 6591 0.4370 +1364 6615 0.4810 +1364 6692 0.4570 +1364 7082 0.9980 +1364 7122 0.7870 +1364 7124 0.4120 +1364 7442 0.5140 +1364 7791 0.4440 +1364 8777 0.6420 +1364 8825 0.5150 +1364 9069 0.9730 +1364 9071 0.7190 +1364 9073 0.9080 +1364 9074 0.6700 +1364 9075 0.6900 +1364 9076 0.9440 +1364 9080 0.6720 +1364 9131 0.4210 +1364 9414 0.8990 +1364 9839 0.4160 +1364 10053 0.4710 +1364 10117 0.4040 +1364 10232 0.4340 +1364 10686 0.7340 +1364 11187 0.4960 +1364 23562 0.6700 +1364 23705 0.4440 +1364 24146 0.6990 +1364 26285 0.6800 +1364 27134 0.9320 +1364 49861 0.6750 +1364 50848 0.9240 +1364 51208 0.7080 +1364 53842 0.6720 +1364 54845 0.4820 +1364 55591 0.5260 +1364 56288 0.7260 +1364 57111 0.5510 +1364 57530 0.5230 +1364 65266 0.4570 +1364 79977 0.5090 +1364 84708 0.5300 +1364 90952 0.7000 +1364 91862 0.6920 +1364 114569 0.4520 +1364 127534 0.4040 +1364 137075 0.8220 +1364 149461 0.6710 +1364 153562 0.7950 +1364 644672 0.6830 +1364 100132463 0.6780 +1364 100288814 0.6670 +1364 100506658 0.9960 +1365 1366 0.8640 +1365 1499 0.5430 +1365 1586 0.4470 +1365 1999 0.4320 +1365 2064 0.4350 +1365 2169 0.5070 +1365 2597 0.4740 +1365 2706 0.4420 +1365 3553 0.4730 +1365 3569 0.4570 +1365 3818 0.4330 +1365 3852 0.4870 +1365 3856 0.6090 +1365 3875 0.5660 +1365 3880 0.5510 +1365 3993 0.4480 +1365 4072 0.7370 +1365 4842 0.4200 +1365 5010 0.8180 +1365 5567 0.4230 +1365 5568 0.4230 +1365 6591 0.4680 +1365 6615 0.4800 +1365 6927 0.4180 +1365 7082 0.9940 +1365 7122 0.9580 +1365 7124 0.4310 +1365 9069 0.9880 +1365 9071 0.7140 +1365 9073 0.7210 +1365 9074 0.6760 +1365 9075 0.8000 +1365 9076 0.8500 +1365 9080 0.7640 +1365 9368 0.4140 +1365 9414 0.8470 +1365 10551 0.4230 +1365 10686 0.8700 +1365 23562 0.7890 +1365 24146 0.7000 +1365 26285 0.6760 +1365 27134 0.9880 +1365 49861 0.6740 +1365 50511 0.4480 +1365 50848 0.7060 +1365 51208 0.7000 +1365 51599 0.4400 +1365 53842 0.6790 +1365 56288 0.7300 +1365 57111 0.4520 +1365 57530 0.5690 +1365 58494 0.4450 +1365 65266 0.4300 +1365 83700 0.4880 +1365 84708 0.4730 +1365 84952 0.5040 +1365 90952 0.7240 +1365 91862 0.8210 +1365 92359 0.4540 +1365 137075 0.7280 +1365 149461 0.8600 +1365 153562 0.9080 +1365 644672 0.6790 +1365 100132463 0.6790 +1365 100133941 0.4150 +1365 100288814 0.7110 +1365 100506658 0.9980 +1366 1420 0.4020 +1366 1499 0.7540 +1366 1500 0.4010 +1366 1828 0.4460 +1366 1829 0.4440 +1366 1832 0.4790 +1366 1947 0.7710 +1366 1950 0.4340 +1366 1956 0.4940 +1366 1999 0.5000 +1366 2041 0.5230 +1366 2064 0.4240 +1366 2312 0.5220 +1366 2335 0.4740 +1366 2597 0.6020 +1366 2705 0.6650 +1366 2706 0.6070 +1366 2867 0.4110 +1366 3240 0.4060 +1366 3265 0.4920 +1366 3383 0.4060 +1366 3458 0.5210 +1366 3553 0.6040 +1366 3569 0.6050 +1366 3576 0.4460 +1366 3586 0.6740 +1366 3605 0.4200 +1366 3673 0.8590 +1366 3688 0.8210 +1366 3818 0.4410 +1366 3852 0.4010 +1366 3855 0.4730 +1366 3856 0.5890 +1366 3875 0.5190 +1366 3880 0.6030 +1366 3993 0.5420 +1366 4014 0.4350 +1366 4070 0.9660 +1366 4072 0.9930 +1366 4233 0.4230 +1366 4301 0.4260 +1366 4318 0.4470 +1366 4323 0.6760 +1366 5010 0.6980 +1366 5595 0.4440 +1366 5652 0.5860 +1366 5912 0.4440 +1366 6271 0.4180 +1366 6382 0.5490 +1366 6591 0.5920 +1366 6615 0.6300 +1366 6657 0.4370 +1366 6692 0.6360 +1366 6768 0.5410 +1366 6774 0.4010 +1366 7033 0.4590 +1366 7040 0.4320 +1366 7082 0.9990 +1366 7097 0.4250 +1366 7099 0.5710 +1366 7103 0.9140 +1366 7122 0.8780 +1366 7124 0.6110 +1366 7291 0.4460 +1366 7431 0.5150 +1366 7837 0.4950 +1366 8614 0.4870 +1366 8777 0.6410 +1366 9069 0.9300 +1366 9071 0.6840 +1366 9073 0.8030 +1366 9074 0.7030 +1366 9075 0.8390 +1366 9076 0.6990 +1366 9080 0.7010 +1366 9172 0.5940 +1366 9414 0.9950 +1366 9839 0.4190 +1366 10053 0.6670 +1366 10207 0.9020 +1366 10551 0.4400 +1366 10653 0.4680 +1366 10686 0.8210 +1366 11187 0.4140 +1366 11188 0.5420 +1366 23562 0.6670 +1366 24146 0.6920 +1366 26285 0.6710 +1366 27134 0.9900 +1366 29881 0.4710 +1366 49861 0.6630 +1366 50848 0.9820 +1366 51208 0.6790 +1366 51599 0.5110 +1366 53842 0.6650 +1366 54845 0.5920 +1366 55114 0.4320 +1366 56288 0.7420 +1366 57111 0.6790 +1366 57530 0.6530 +1366 58494 0.6690 +1366 64398 0.4210 +1366 79977 0.4200 +1366 83700 0.5320 +1366 84708 0.5140 +1366 90952 0.8360 +1366 91862 0.7560 +1366 92359 0.5690 +1366 114569 0.4360 +1366 126695 0.4510 +1366 127534 0.4160 +1366 137075 0.7800 +1366 137902 0.4950 +1366 149461 0.6660 +1366 153562 0.9640 +1366 154796 0.4400 +1366 388698 0.5200 +1366 644672 0.6770 +1366 100132463 0.6650 +1366 100288814 0.6670 +1366 100506658 0.9990 +1368 1636 0.4470 +1368 1803 0.4190 +1368 3818 0.4180 +1368 3827 0.5890 +1368 4311 0.4380 +1368 5547 0.4270 +1368 5550 0.4800 +1368 6440 0.4180 +1368 7064 0.4020 +1368 7080 0.4060 +1368 7512 0.4740 +1368 8089 0.4870 +1368 9622 0.4750 +1368 10818 0.4300 +1368 64083 0.5710 +1368 728858 0.4720 +1369 1370 0.9930 +1369 1421 0.4970 +1369 1636 0.5900 +1369 2244 0.4220 +1369 3329 0.6210 +1369 3336 0.6810 +1369 3818 0.4960 +1369 3827 0.7040 +1369 4311 0.4690 +1369 6249 0.6550 +1369 6904 0.7640 +1369 6905 0.7690 +1369 7099 0.4400 +1369 9622 0.5830 +1369 23314 0.4220 +1369 55079 0.5060 +1369 57715 0.4100 +1369 64919 0.4460 +1370 3273 0.5150 +1370 5340 0.4860 +1370 22859 0.5140 +1370 23266 0.5140 +1370 23284 0.5140 +1370 55222 0.4230 +1370 55379 0.4770 +1370 114770 0.4010 +1370 122769 0.5900 +1370 123876 0.4690 +1370 220416 0.5110 +1370 348158 0.5260 +1370 474354 0.5140 +1371 1431 0.4060 +1371 1528 0.4030 +1371 1595 0.4370 +1371 1723 0.4810 +1371 1806 0.4740 +1371 1841 0.4030 +1371 2058 0.4790 +1371 2235 0.9760 +1371 2271 0.5140 +1371 2395 0.6460 +1371 2618 0.5170 +1371 3145 0.9480 +1371 3162 0.4920 +1371 3163 0.6860 +1371 3313 0.4790 +1371 4515 0.7050 +1371 4942 0.4100 +1371 5498 0.9980 +1371 5600 0.4260 +1371 5603 0.4890 +1371 5832 0.4270 +1371 6300 0.4690 +1371 6307 0.5380 +1371 6309 0.4730 +1371 6341 0.4300 +1371 6389 0.4110 +1371 6390 0.4550 +1371 6648 0.4750 +1371 6713 0.5520 +1371 6720 0.4480 +1371 6821 0.4180 +1371 7263 0.4160 +1371 7386 0.4200 +1371 7389 0.9990 +1371 7390 0.9300 +1371 8565 0.4980 +1371 8566 0.4450 +1371 9023 0.4810 +1371 9131 0.5470 +1371 9380 0.4300 +1371 9563 0.4360 +1371 10058 0.6410 +1371 10826 0.4810 +1371 10845 0.4330 +1371 11331 0.4070 +1371 22934 0.4130 +1371 23456 0.7130 +1371 23479 0.6170 +1371 26007 0.5230 +1371 28982 0.5870 +1371 29104 0.8500 +1371 51067 0.4030 +1371 51167 0.4220 +1371 51312 0.7190 +1371 51409 0.8500 +1371 51522 0.5540 +1371 51805 0.4120 +1371 54977 0.6490 +1371 55239 0.5680 +1371 55640 0.4220 +1371 56652 0.4050 +1371 79145 0.5920 +1371 79747 0.4200 +1371 80347 0.4160 +1371 81577 0.4010 +1371 81894 0.4100 +1371 94081 0.5110 +1371 119559 0.4010 +1371 124454 0.5430 +1371 284131 0.8880 +1373 1400 0.6360 +1373 1491 0.4050 +1373 1723 0.8600 +1373 1727 0.6130 +1373 1806 0.8170 +1373 1807 0.6770 +1373 1808 0.6310 +1373 1809 0.6340 +1373 2058 0.4490 +1373 2147 0.4510 +1373 2166 0.5590 +1373 2184 0.4090 +1373 2232 0.5390 +1373 2243 0.4010 +1373 2294 0.7560 +1373 2300 0.7290 +1373 2303 0.6590 +1373 2618 0.7850 +1373 2731 0.4280 +1373 2744 0.9140 +1373 2746 0.9690 +1373 2747 0.9680 +1373 2752 0.9720 +1373 2875 0.4460 +1373 3308 0.5480 +1373 3312 0.4630 +1373 3376 0.4030 +1373 3814 0.6430 +1373 4143 0.5190 +1373 4942 0.7340 +1373 4953 0.5670 +1373 5009 0.9980 +1373 5053 0.4960 +1373 5093 0.5280 +1373 5095 0.4170 +1373 5188 0.6050 +1373 5250 0.4910 +1373 5471 0.7760 +1373 5832 0.7630 +1373 5888 0.4070 +1373 6898 0.5550 +1373 7299 0.4310 +1373 7372 0.8480 +1373 8565 0.4390 +1373 8833 0.5920 +1373 9255 0.7600 +1373 9962 0.6540 +1373 9963 0.6570 +1373 10157 0.4340 +1373 10165 0.4410 +1373 10166 0.4570 +1373 10570 0.6580 +1373 10606 0.5210 +1373 10808 0.5080 +1373 10845 0.4100 +1373 23408 0.6660 +1373 23409 0.4450 +1373 23410 0.4140 +1373 23542 0.4120 +1373 27165 0.9230 +1373 29958 0.4890 +1373 51026 0.6480 +1373 51167 0.6810 +1373 51557 0.5730 +1373 51582 0.4670 +1373 51700 0.6130 +1373 51706 0.6140 +1373 55157 0.5700 +1373 55278 0.5590 +1373 55699 0.4010 +1373 56267 0.4660 +1373 56896 0.6360 +1373 79073 0.6180 +1373 79814 0.4860 +1373 84063 0.4200 +1373 84687 0.4390 +1373 84706 0.4830 +1373 92106 0.6130 +1373 113451 0.4890 +1373 122622 0.4710 +1373 127845 0.6440 +1373 139596 0.5000 +1373 158584 0.5590 +1373 162417 0.9170 +1373 283985 0.5360 +1373 285148 0.5790 +1373 606495 0.6130 +1374 1375 0.9110 +1374 1376 0.9630 +1374 1387 0.4450 +1374 1431 0.4380 +1374 1581 0.5500 +1374 1632 0.4380 +1374 1666 0.4370 +1374 1891 0.5620 +1374 1892 0.6490 +1374 1962 0.6300 +1374 2033 0.7940 +1374 2110 0.4220 +1374 2167 0.6050 +1374 2168 0.6760 +1374 2170 0.4920 +1374 2171 0.4900 +1374 2180 0.9750 +1374 2181 0.9550 +1374 2182 0.9540 +1374 2194 0.8090 +1374 2308 0.4770 +1374 2475 0.4030 +1374 2538 0.6540 +1374 2539 0.4210 +1374 2597 0.5110 +1374 2645 0.5270 +1374 2693 0.5470 +1374 2806 0.4790 +1374 2863 0.5570 +1374 2875 0.4480 +1374 3030 0.8120 +1374 3032 0.7430 +1374 3033 0.6390 +1374 3091 0.4310 +1374 3099 0.4380 +1374 3155 0.4470 +1374 3156 0.6000 +1374 3157 0.5170 +1374 3158 0.6790 +1374 3553 0.4370 +1374 3569 0.4180 +1374 3630 0.6510 +1374 3643 0.4260 +1374 3667 0.4330 +1374 3952 0.5150 +1374 3953 0.5400 +1374 3990 0.4720 +1374 3991 0.6610 +1374 4023 0.5790 +1374 4160 0.4890 +1374 4547 0.5720 +1374 4723 0.4050 +1374 4852 0.4930 +1374 5071 0.4610 +1374 5091 0.4760 +1374 5105 0.6850 +1374 5106 0.5210 +1374 5166 0.6510 +1374 5209 0.4230 +1374 5315 0.4070 +1374 5346 0.4800 +1374 5465 0.9200 +1374 5467 0.6160 +1374 5468 0.8060 +1374 5469 0.4440 +1374 5562 0.4450 +1374 5798 0.4240 +1374 5799 0.5490 +1374 6095 0.7670 +1374 6256 0.5940 +1374 6319 0.7010 +1374 6513 0.5630 +1374 6514 0.4600 +1374 6517 0.5570 +1374 6554 0.4350 +1374 6584 0.4530 +1374 6604 0.4230 +1374 6720 0.8130 +1374 6721 0.7620 +1374 6907 0.4580 +1374 7019 0.4250 +1374 7124 0.4010 +1374 7157 0.5150 +1374 7350 0.7450 +1374 7351 0.7500 +1374 7352 0.7230 +1374 8309 0.5160 +1374 8310 0.7040 +1374 8648 0.4730 +1374 8660 0.4520 +1374 8694 0.6560 +1374 9370 0.5320 +1374 9415 0.4020 +1374 9563 0.4280 +1374 9619 0.5900 +1374 9971 0.4370 +1374 10005 0.4070 +1374 10062 0.4530 +1374 10449 0.7840 +1374 10455 0.4930 +1374 10498 0.4290 +1374 10499 0.4470 +1374 10554 0.4940 +1374 10555 0.4230 +1374 10891 0.7210 +1374 10989 0.4480 +1374 10998 0.5190 +1374 10999 0.4970 +1374 11001 0.5990 +1374 11343 0.4200 +1374 23054 0.4080 +1374 23175 0.4940 +1374 23205 0.7250 +1374 23305 0.9460 +1374 23411 0.5190 +1374 23417 0.5650 +1374 26137 0.4440 +1374 26227 0.4680 +1374 26291 0.5800 +1374 28976 0.4150 +1374 51085 0.6120 +1374 51129 0.4470 +1374 51552 0.4490 +1374 51703 0.9550 +1374 51738 0.5920 +1374 55902 0.4310 +1374 57104 0.6850 +1374 57678 0.5510 +1374 57818 0.5420 +1374 60481 0.4960 +1374 63976 0.4010 +1374 79071 0.5350 +1374 79718 0.4030 +1374 80347 0.4160 +1374 81616 0.7420 +1374 81631 0.4770 +1374 84532 0.4100 +1374 84649 0.6330 +1374 84803 0.5040 +1374 85441 0.4220 +1374 92579 0.5430 +1374 126129 0.9060 +1374 132949 0.8730 +1374 133522 0.4880 +1374 137964 0.5260 +1374 376497 0.5930 +1374 619373 0.6270 +1375 1376 0.9420 +1375 1431 0.4820 +1375 1632 0.4420 +1375 1734 0.5450 +1375 1891 0.4490 +1375 1892 0.4020 +1375 1962 0.5350 +1375 2101 0.4580 +1375 2167 0.5340 +1375 2170 0.6390 +1375 2180 0.8370 +1375 2181 0.7870 +1375 2182 0.7540 +1375 2194 0.6270 +1375 2538 0.4030 +1375 3030 0.5840 +1375 3032 0.5220 +1375 3033 0.4870 +1375 3158 0.4450 +1375 3554 0.4070 +1375 3630 0.5190 +1375 3952 0.4470 +1375 3953 0.4420 +1375 3991 0.6230 +1375 4023 0.4750 +1375 4628 0.5950 +1375 5105 0.4460 +1375 5106 0.4110 +1375 5154 0.4260 +1375 5166 0.7250 +1375 5346 0.4360 +1375 5465 0.7240 +1375 5467 0.7590 +1375 5468 0.5970 +1375 6319 0.4630 +1375 6517 0.6320 +1375 6720 0.5760 +1375 7019 0.4840 +1375 7350 0.7450 +1375 7351 0.7410 +1375 7352 0.8560 +1375 8310 0.5290 +1375 8694 0.5320 +1375 9370 0.4600 +1375 10449 0.5550 +1375 10891 0.7290 +1375 23205 0.7120 +1375 23305 0.7460 +1375 23417 0.5110 +1375 26291 0.4330 +1375 51129 0.5950 +1375 51703 0.7780 +1375 57104 0.6200 +1375 63976 0.5730 +1375 81616 0.7280 +1375 83401 0.5770 +1375 84649 0.4620 +1375 126129 0.9060 +1375 132949 0.8270 +1375 133522 0.4910 +1375 165100 0.5750 +1375 376497 0.5990 +1375 387082 0.5620 +1375 440503 0.4190 +1376 1384 0.5500 +1376 1387 0.4320 +1376 1431 0.6650 +1376 1632 0.6020 +1376 1666 0.6240 +1376 1891 0.6550 +1376 1892 0.6890 +1376 1962 0.6790 +1376 2108 0.5220 +1376 2109 0.5170 +1376 2110 0.7580 +1376 2167 0.4610 +1376 2168 0.7260 +1376 2170 0.5190 +1376 2180 0.6790 +1376 2181 0.6280 +1376 2182 0.5830 +1376 2194 0.6590 +1376 2639 0.5400 +1376 2806 0.5380 +1376 3030 0.8410 +1376 3032 0.8080 +1376 3033 0.7030 +1376 3052 0.4210 +1376 3155 0.5680 +1376 3156 0.4040 +1376 3157 0.4410 +1376 3158 0.5980 +1376 3172 0.5320 +1376 3295 0.8900 +1376 3417 0.4830 +1376 3418 0.5090 +1376 3630 0.4800 +1376 3991 0.5330 +1376 4023 0.4860 +1376 4191 0.4650 +1376 4625 0.4480 +1376 4722 0.4700 +1376 4728 0.4080 +1376 4967 0.5430 +1376 5019 0.4480 +1376 5091 0.4930 +1376 5096 0.4800 +1376 5105 0.4400 +1376 5161 0.4050 +1376 5166 0.5440 +1376 5168 0.4120 +1376 5465 0.8590 +1376 5467 0.5110 +1376 5468 0.5480 +1376 5469 0.4160 +1376 5860 0.4410 +1376 6256 0.5740 +1376 6296 0.4570 +1376 6319 0.5580 +1376 6342 0.6320 +1376 6389 0.4550 +1376 6390 0.4490 +1376 6513 0.4380 +1376 6517 0.4850 +1376 6576 0.4850 +1376 6584 0.5900 +1376 6604 0.4270 +1376 6720 0.6070 +1376 6907 0.4530 +1376 7019 0.4020 +1376 7350 0.5160 +1376 7351 0.4790 +1376 7352 0.4830 +1376 8309 0.6890 +1376 8310 0.9610 +1376 8648 0.4090 +1376 8694 0.5200 +1376 8802 0.5150 +1376 10005 0.4080 +1376 10449 0.8220 +1376 10455 0.5180 +1376 10498 0.4390 +1376 10499 0.4110 +1376 10632 0.4090 +1376 10891 0.6190 +1376 10965 0.4930 +1376 10998 0.4920 +1376 10999 0.4830 +1376 11001 0.5600 +1376 23277 0.4970 +1376 23305 0.5100 +1376 23410 0.4800 +1376 23411 0.6090 +1376 23417 0.6920 +1376 26291 0.4400 +1376 27034 0.4930 +1376 28976 0.6870 +1376 51079 0.4320 +1376 51102 0.4020 +1376 51703 0.5750 +1376 54916 0.4060 +1376 54968 0.4830 +1376 54988 0.4330 +1376 55902 0.5310 +1376 56898 0.4340 +1376 56922 0.4270 +1376 57104 0.5650 +1376 63933 0.4110 +1376 79718 0.4180 +1376 80205 0.4190 +1376 80347 0.4860 +1376 81889 0.6450 +1376 84129 0.4210 +1376 84263 0.4150 +1376 84532 0.5620 +1376 84649 0.5140 +1376 85441 0.4050 +1376 126129 0.9420 +1376 132949 0.9210 +1376 133522 0.4380 +1376 376497 0.5870 +1376 641371 0.4550 +1376 109703458 0.6430 +1378 1380 0.4090 +1378 1536 0.5780 +1378 1604 0.6270 +1378 2204 0.5180 +1378 2208 0.6190 +1378 2209 0.5900 +1378 2212 0.7910 +1378 2213 0.7650 +1378 2219 0.7150 +1378 2220 0.8030 +1378 2358 0.4200 +1378 2526 0.4730 +1378 3383 0.4090 +1378 3426 0.9050 +1378 3576 0.5160 +1378 3577 0.5980 +1378 3579 0.6520 +1378 3683 0.6610 +1378 3684 0.7800 +1378 3687 0.7420 +1378 3689 0.6530 +1378 3815 0.4110 +1378 3903 0.4960 +1378 4153 0.9250 +1378 4179 0.8200 +1378 4311 0.5300 +1378 4353 0.6590 +1378 5175 0.5220 +1378 5199 0.6550 +1378 5225 0.4950 +1378 5265 0.4720 +1378 5433 0.4030 +1378 5436 0.4080 +1378 5648 0.7950 +1378 5788 0.7040 +1378 5868 0.5590 +1378 5937 0.4790 +1378 6006 0.4390 +1378 6007 0.4580 +1378 6382 0.4130 +1378 6402 0.6310 +1378 6624 0.4360 +1378 6693 0.5380 +1378 7037 0.4110 +1378 7060 0.4610 +1378 7099 0.6230 +1378 7124 0.4250 +1378 7448 0.4090 +1378 8174 0.4020 +1378 8547 0.7910 +1378 9332 0.5000 +1378 10209 0.6150 +1378 10563 0.5080 +1378 10630 0.4540 +1378 10747 0.5320 +1378 11326 0.5370 +1378 22918 0.5730 +1378 51311 0.4870 +1378 55748 0.5420 +1379 2208 0.4680 +1379 3075 0.4780 +1379 4137 0.4240 +1379 5664 0.4320 +1379 6653 0.4390 +1379 8301 0.6240 +1379 10347 0.6330 +1379 55363 0.4140 +1380 1493 0.4390 +1380 1773 0.4220 +1380 1791 0.4380 +1380 1803 0.4050 +1380 2086 0.6710 +1380 2208 0.9820 +1380 2212 0.5310 +1380 2213 0.7310 +1380 2335 0.4510 +1380 2526 0.5410 +1380 2833 0.4890 +1380 3001 0.4020 +1380 3002 0.4230 +1380 3192 0.4120 +1380 3383 0.4160 +1380 3396 0.4460 +1380 3439 0.9560 +1380 3440 0.6910 +1380 3441 0.6720 +1380 3442 0.6680 +1380 3443 0.6700 +1380 3444 0.6710 +1380 3445 0.6680 +1380 3446 0.6680 +1380 3447 0.6680 +1380 3448 0.6700 +1380 3449 0.6690 +1380 3451 0.6840 +1380 3452 0.6680 +1380 3458 0.5900 +1380 3543 0.4010 +1380 3558 0.6760 +1380 3563 0.4120 +1380 3565 0.5640 +1380 3569 0.5050 +1380 3574 0.4330 +1380 3575 0.5020 +1380 3586 0.5640 +1380 3596 0.5610 +1380 3605 0.4220 +1380 3662 0.5440 +1380 3673 0.4570 +1380 3676 0.4130 +1380 3683 0.4850 +1380 3684 0.6650 +1380 3687 0.7020 +1380 3689 0.6530 +1380 3700 0.8340 +1380 3732 0.5150 +1380 3815 0.5190 +1380 4067 0.4720 +1380 4283 0.5510 +1380 4301 0.4250 +1380 4311 0.7950 +1380 4353 0.4170 +1380 4609 0.4100 +1380 4684 0.6050 +1380 5079 0.7200 +1380 5175 0.6780 +1380 5336 0.4730 +1380 5450 0.7130 +1380 5788 0.8270 +1380 5896 0.4510 +1380 5937 0.7370 +1380 6363 0.4850 +1380 6366 0.4940 +1380 6382 0.7790 +1380 6402 0.6750 +1380 6418 0.4260 +1380 6504 0.4600 +1380 6614 0.4450 +1380 6689 0.4350 +1380 6693 0.8150 +1380 6850 0.5020 +1380 7037 0.4110 +1380 7072 0.4190 +1380 7097 0.5260 +1380 7099 0.5520 +1380 7124 0.5160 +1380 7852 0.4910 +1380 8115 0.4540 +1380 8125 0.4320 +1380 8174 0.4160 +1380 8519 0.9950 +1380 8639 0.5450 +1380 8741 0.4170 +1380 9034 0.5870 +1380 9260 0.4450 +1380 9332 0.5140 +1380 10563 0.6980 +1380 10630 0.4180 +1380 10673 0.7810 +1380 22918 0.6710 +1380 23495 0.7780 +1380 27087 0.4840 +1380 29109 0.4940 +1380 29760 0.4240 +1380 29851 0.6910 +1380 30009 0.5510 +1380 30816 0.7090 +1380 50489 0.4080 +1380 50615 0.4930 +1380 50943 0.5980 +1380 51284 0.4870 +1380 51311 0.4580 +1380 54106 0.6890 +1380 55024 0.4040 +1380 55843 0.4560 +1380 57379 0.6630 +1380 83416 0.6530 +1380 83417 0.7080 +1380 84636 0.4900 +1380 84684 0.6090 +1380 84824 0.5260 +1380 115650 0.7280 +1380 123803 0.5180 +1380 140885 0.4290 +1380 151888 0.5780 +1380 405754 0.6710 +1380 100133941 0.7290 +1380 100423062 0.4720 +1380 102723407 0.6660 +1381 1592 0.8080 +1381 1915 0.4430 +1381 2033 0.4610 +1381 2172 0.4590 +1381 2289 0.4380 +1381 2806 0.4440 +1381 3198 0.6750 +1381 3481 0.5980 +1381 3603 0.4240 +1381 3845 0.4090 +1381 4292 0.6060 +1381 4762 0.7400 +1381 4869 0.4100 +1381 4926 0.4340 +1381 5371 0.4300 +1381 5728 0.4220 +1381 5914 0.7920 +1381 5915 0.7680 +1381 5916 0.6190 +1381 5917 0.7200 +1381 5949 0.6740 +1381 5950 0.4080 +1381 6256 0.5950 +1381 6423 0.4230 +1381 6614 0.4100 +1381 6652 0.4310 +1381 7276 0.4150 +1381 7704 0.6290 +1381 7905 0.5700 +1381 8607 0.4450 +1381 8651 0.6200 +1381 8725 0.6000 +1381 8854 0.5220 +1381 8913 0.7650 +1381 9070 0.4680 +1381 9227 0.5250 +1381 9611 0.4680 +1381 10628 0.4270 +1381 10856 0.4470 +1381 11091 0.4690 +1381 23532 0.4190 +1381 23617 0.4380 +1381 50632 0.4900 +1381 55904 0.5480 +1381 56603 0.7500 +1381 64220 0.6360 +1381 81629 0.4540 +1381 83942 0.4530 +1381 83983 0.4370 +1381 84106 0.5050 +1381 84661 0.4710 +1381 121214 0.4160 +1381 157506 0.5390 +1381 283629 0.4680 +1381 340665 0.8150 +1382 1476 0.4460 +1382 1592 0.7210 +1382 1915 0.4050 +1382 1917 0.4240 +1382 1994 0.7410 +1382 2172 0.4280 +1382 2780 0.5680 +1382 2806 0.4720 +1382 3172 0.5020 +1382 3557 0.4190 +1382 3603 0.4950 +1382 3766 0.5530 +1382 4256 0.4340 +1382 4830 0.4440 +1382 5441 0.5100 +1382 5465 0.5310 +1382 5467 0.7300 +1382 5468 0.5810 +1382 5914 0.9020 +1382 5915 0.9670 +1382 5916 0.9410 +1382 5917 0.7420 +1382 5918 0.6200 +1382 5920 0.7530 +1382 5949 0.6490 +1382 5985 0.4150 +1382 6010 0.4010 +1382 6256 0.8210 +1382 6257 0.6540 +1382 6258 0.6520 +1382 6284 0.7540 +1382 6657 0.4720 +1382 8000 0.4030 +1382 8854 0.5860 +1382 9022 0.4460 +1382 9129 0.5400 +1382 9227 0.5180 +1382 9249 0.4160 +1382 10170 0.4580 +1382 10180 0.4340 +1382 11145 0.7480 +1382 11202 0.6550 +1382 11335 0.4040 +1382 51458 0.4780 +1382 54575 0.4200 +1382 55193 0.7440 +1382 55287 0.4330 +1382 56603 0.6190 +1382 57110 0.7170 +1382 64218 0.4990 +1382 64220 0.6190 +1382 84283 0.4330 +1382 90161 0.4740 +1382 124961 0.4470 +1382 125981 0.4380 +1382 135250 0.4110 +1382 149428 0.4610 +1382 157506 0.5730 +1382 255057 0.4180 +1382 340665 0.7260 +1382 374897 0.4480 +1384 1431 0.7590 +1384 1632 0.4370 +1384 1666 0.4390 +1384 1891 0.5870 +1384 1892 0.5220 +1384 1962 0.6660 +1384 2180 0.4760 +1384 3030 0.5050 +1384 3032 0.6100 +1384 3033 0.4580 +1384 3295 0.9400 +1384 3417 0.4640 +1384 3418 0.4870 +1384 5192 0.6340 +1384 5194 0.5590 +1384 5195 0.6300 +1384 5828 0.5700 +1384 5830 0.8230 +1384 6233 0.5020 +1384 6296 0.4130 +1384 6342 0.8160 +1384 6570 0.5350 +1384 6571 0.5460 +1384 6572 0.8760 +1384 6576 0.5120 +1384 6584 0.4590 +1384 7311 0.4990 +1384 7314 0.5040 +1384 7316 0.5010 +1384 7321 0.5160 +1384 7322 0.5160 +1384 7323 0.5160 +1384 8309 0.4950 +1384 8310 0.4890 +1384 9399 0.4570 +1384 9969 0.4350 +1384 10005 0.5130 +1384 10449 0.5580 +1384 10455 0.4940 +1384 23305 0.4280 +1384 23410 0.4010 +1384 23417 0.4150 +1384 26063 0.4240 +1384 51703 0.4960 +1384 54988 0.4700 +1384 55902 0.6650 +1384 79611 0.4490 +1384 84263 0.5060 +1384 84532 0.6160 +1384 134526 0.4810 +1384 140856 0.4490 +1384 219743 0.5060 +1384 341392 0.4030 +1384 348158 0.4290 +1384 109703458 0.6850 +1385 1386 0.9860 +1385 1387 0.9990 +1385 1388 0.9530 +1385 1390 0.9900 +1385 1392 0.8150 +1385 1394 0.6120 +1385 1395 0.5130 +1385 1407 0.5380 +1385 1408 0.4150 +1385 1432 0.7060 +1385 1453 0.4260 +1385 1457 0.5040 +1385 1488 0.4890 +1385 1499 0.9500 +1385 1520 0.9230 +1385 1588 0.4690 +1385 1616 0.4610 +1385 1638 0.5050 +1385 1641 0.4860 +1385 1649 0.4360 +1385 1742 0.6730 +1385 1785 0.5570 +1385 1786 0.4750 +1385 1788 0.6240 +1385 1789 0.6910 +1385 1812 0.4640 +1385 1813 0.5220 +1385 1843 0.5050 +1385 1869 0.6590 +1385 1874 0.5300 +1385 1906 0.4130 +1385 1938 0.5640 +1385 1950 0.5410 +1385 1956 0.5760 +1385 1958 0.9530 +1385 1959 0.7310 +1385 1960 0.7190 +1385 1965 0.5100 +1385 1977 0.4500 +1385 1979 0.4600 +1385 2005 0.5210 +1385 2033 0.9990 +1385 2034 0.6200 +1385 2065 0.5050 +1385 2077 0.4120 +1385 2081 0.4130 +1385 2099 0.7570 +1385 2100 0.7460 +1385 2101 0.7200 +1385 2113 0.8730 +1385 2114 0.4230 +1385 2130 0.7680 +1385 2146 0.4140 +1385 2185 0.4280 +1385 2247 0.5340 +1385 2274 0.6130 +1385 2308 0.9200 +1385 2309 0.6340 +1385 2332 0.4510 +1385 2335 0.6240 +1385 2353 0.9980 +1385 2354 0.9000 +1385 2355 0.6670 +1385 2475 0.6240 +1385 2494 0.4890 +1385 2495 0.5630 +1385 2516 0.4350 +1385 2534 0.4670 +1385 2538 0.5930 +1385 2550 0.4130 +1385 2551 0.6300 +1385 2571 0.4090 +1385 2596 0.4610 +1385 2597 0.6890 +1385 2623 0.6640 +1385 2624 0.4130 +1385 2625 0.7840 +1385 2641 0.6380 +1385 2668 0.7260 +1385 2670 0.5120 +1385 2736 0.4270 +1385 2740 0.4530 +1385 2771 0.4610 +1385 2775 0.5370 +1385 2776 0.7020 +1385 2852 0.5210 +1385 2864 0.5300 +1385 2877 0.4380 +1385 2878 0.4380 +1385 2880 0.4390 +1385 2882 0.4390 +1385 2885 0.4310 +1385 2890 0.6600 +1385 2891 0.4920 +1385 2902 0.6650 +1385 2903 0.7460 +1385 2904 0.8210 +1385 2905 0.5170 +1385 2906 0.5290 +1385 2908 0.9240 +1385 2915 0.4480 +1385 2931 0.6630 +1385 2932 0.9880 +1385 2959 0.7240 +1385 3002 0.5960 +1385 3021 0.7560 +1385 3050 0.8130 +1385 3064 0.9820 +1385 3065 0.8770 +1385 3066 0.7690 +1385 3091 0.8330 +1385 3159 0.5130 +1385 3162 0.5570 +1385 3164 0.5880 +1385 3169 0.4480 +1385 3170 0.6050 +1385 3172 0.6630 +1385 3175 0.4530 +1385 3308 0.6760 +1385 3309 0.6380 +1385 3315 0.5110 +1385 3316 0.4770 +1385 3320 0.4230 +1385 3326 0.4280 +1385 3350 0.6210 +1385 3351 0.5790 +1385 3356 0.4020 +1385 3383 0.4080 +1385 3397 0.5930 +1385 3399 0.5500 +1385 3456 0.4200 +1385 3458 0.5630 +1385 3479 0.5930 +1385 3480 0.5090 +1385 3516 0.8050 +1385 3551 0.4800 +1385 3552 0.4750 +1385 3553 0.6720 +1385 3554 0.5370 +1385 3558 0.4790 +1385 3565 0.4680 +1385 3567 0.4140 +1385 3569 0.9180 +1385 3576 0.4830 +1385 3586 0.8930 +1385 3606 0.4200 +1385 3630 0.7760 +1385 3659 0.6840 +1385 3661 0.6950 +1385 3662 0.6040 +1385 3667 0.4800 +1385 3708 0.6200 +1385 3709 0.5210 +1385 3710 0.4330 +1385 3717 0.6800 +1385 3725 0.9980 +1385 3726 0.7520 +1385 3727 0.9650 +1385 3845 0.4450 +1385 3952 0.6600 +1385 3960 0.4960 +1385 3984 0.4220 +1385 4066 0.5590 +1385 4087 0.4830 +1385 4088 0.8990 +1385 4089 0.5720 +1385 4094 0.8930 +1385 4128 0.4880 +1385 4129 0.4540 +1385 4133 0.4240 +1385 4137 0.4520 +1385 4150 0.4430 +1385 4155 0.4070 +1385 4157 0.5680 +1385 4160 0.5410 +1385 4170 0.4680 +1385 4193 0.6430 +1385 4204 0.9960 +1385 4205 0.4030 +1385 4209 0.7020 +1385 4211 0.8390 +1385 4214 0.4730 +1385 4217 0.4430 +1385 4261 0.9780 +1385 4286 0.6590 +1385 4287 0.4190 +1385 4297 0.9170 +1385 4303 0.5500 +1385 4313 0.4200 +1385 4318 0.5290 +1385 4343 0.5530 +1385 4602 0.7990 +1385 4609 0.7890 +1385 4613 0.4040 +1385 4654 0.6700 +1385 4664 0.5790 +1385 4665 0.5830 +1385 4723 0.4400 +1385 4763 0.5610 +1385 4772 0.7890 +1385 4773 0.9620 +1385 4775 0.4010 +1385 4780 0.5510 +1385 4782 0.4720 +1385 4783 0.7990 +1385 4784 0.5130 +1385 4790 0.7730 +1385 4792 0.5830 +1385 4800 0.7630 +1385 4801 0.5450 +1385 4803 0.6770 +1385 4804 0.4230 +1385 4841 0.5940 +1385 4842 0.4390 +1385 4846 0.4120 +1385 4851 0.5890 +1385 4852 0.5280 +1385 4853 0.7700 +1385 4854 0.5020 +1385 4862 0.4390 +1385 4893 0.4010 +1385 4899 0.4530 +1385 4908 0.4440 +1385 4909 0.4180 +1385 4914 0.5400 +1385 4915 0.7710 +1385 4929 0.5850 +1385 4988 0.4770 +1385 5020 0.4240 +1385 5021 0.5740 +1385 5054 0.4070 +1385 5071 0.5520 +1385 5087 0.5210 +1385 5089 0.4050 +1385 5105 0.6250 +1385 5141 0.6580 +1385 5142 0.4730 +1385 5144 0.5120 +1385 5173 0.5710 +1385 5187 0.7950 +1385 5241 0.4070 +1385 5290 0.4330 +1385 5295 0.5580 +1385 5296 0.5570 +1385 5335 0.4180 +1385 5434 0.4320 +1385 5443 0.6470 +1385 5451 0.5730 +1385 5460 0.4410 +1385 5465 0.5930 +1385 5467 0.5930 +1385 5468 0.6720 +1385 5499 0.8100 +1385 5500 0.7250 +1385 5501 0.7270 +1385 5566 0.9960 +1385 5567 0.9950 +1385 5568 0.9940 +1385 5573 0.4910 +1385 5577 0.4990 +1385 5578 0.8030 +1385 5579 0.7570 +1385 5582 0.7580 +1385 5587 0.7690 +1385 5592 0.8580 +1385 5593 0.7100 +1385 5594 0.9620 +1385 5595 0.9870 +1385 5598 0.6090 +1385 5599 0.7620 +1385 5600 0.5140 +1385 5601 0.4170 +1385 5603 0.6200 +1385 5604 0.6050 +1385 5606 0.6540 +1385 5608 0.4030 +1385 5613 0.6030 +1385 5663 0.5130 +1385 5728 0.7040 +1385 5734 0.5090 +1385 5741 0.4120 +1385 5743 0.6290 +1385 5747 0.6440 +1385 5816 0.4170 +1385 5894 0.4550 +1385 5908 0.5020 +1385 5914 0.5710 +1385 5915 0.5160 +1385 5916 0.4630 +1385 5921 0.4140 +1385 5934 0.4050 +1385 5935 0.4020 +1385 5965 0.4400 +1385 5966 0.8590 +1385 5970 0.9860 +1385 5978 0.7310 +1385 5989 0.9870 +1385 5993 0.8680 +1385 5994 0.9340 +1385 6003 0.4070 +1385 6195 0.9350 +1385 6196 0.8020 +1385 6197 0.8830 +1385 6198 0.5970 +1385 6239 0.4840 +1385 6256 0.4370 +1385 6300 0.4520 +1385 6304 0.4480 +1385 6347 0.4800 +1385 6391 0.5310 +1385 6421 0.4700 +1385 6446 0.8860 +1385 6457 0.5130 +1385 6464 0.4580 +1385 6506 0.4080 +1385 6515 0.8170 +1385 6517 0.4480 +1385 6531 0.4480 +1385 6532 0.4490 +1385 6547 0.4100 +1385 6597 0.8180 +1385 6615 0.4020 +1385 6622 0.5040 +1385 6654 0.4020 +1385 6657 0.4300 +1385 6660 0.5180 +1385 6662 0.4230 +1385 6663 0.4290 +1385 6667 0.7840 +1385 6670 0.4050 +1385 6688 0.6330 +1385 6714 0.6280 +1385 6720 0.6810 +1385 6721 0.4050 +1385 6722 0.8620 +1385 6750 0.8660 +1385 6770 0.4100 +1385 6772 0.7430 +1385 6774 0.9240 +1385 6776 0.6960 +1385 6777 0.7390 +1385 6778 0.6480 +1385 6786 0.5540 +1385 6794 0.4980 +1385 6853 0.6370 +1385 6854 0.4740 +1385 6855 0.5860 +1385 6863 0.4250 +1385 6874 0.9970 +1385 6875 0.8010 +1385 6883 0.4200 +1385 6908 0.7350 +1385 6927 0.4750 +1385 6928 0.4230 +1385 6929 0.5390 +1385 6934 0.7140 +1385 6938 0.8370 +1385 7019 0.5390 +1385 7040 0.5110 +1385 7046 0.4050 +1385 7054 0.5930 +1385 7067 0.4140 +1385 7070 0.4520 +1385 7097 0.4680 +1385 7099 0.7490 +1385 7124 0.6810 +1385 7157 0.9980 +1385 7166 0.5150 +1385 7187 0.6600 +1385 7189 0.4740 +1385 7249 0.4030 +1385 7291 0.5290 +1385 7299 0.5070 +1385 7306 0.5060 +1385 7350 0.5440 +1385 7391 0.7060 +1385 7408 0.6180 +1385 7425 0.6840 +1385 7432 0.4810 +1385 7442 0.4360 +1385 7443 0.6710 +1385 7494 0.4860 +1385 7528 0.8700 +1385 7837 0.6640 +1385 7852 0.4030 +1385 7867 0.4920 +1385 7874 0.4110 +1385 7936 0.4190 +1385 8013 0.4700 +1385 8061 0.8480 +1385 8091 0.4940 +1385 8115 0.4100 +1385 8202 0.6510 +1385 8204 0.5930 +1385 8224 0.4510 +1385 8290 0.7700 +1385 8312 0.5650 +1385 8356 0.7410 +1385 8361 0.5430 +1385 8431 0.5050 +1385 8467 0.4730 +1385 8473 0.4890 +1385 8536 0.8630 +1385 8538 0.4570 +1385 8553 0.5060 +1385 8554 0.4810 +1385 8600 0.6260 +1385 8625 0.9050 +1385 8648 0.4800 +1385 8654 0.4320 +1385 8660 0.4470 +1385 8678 0.4130 +1385 8682 0.4310 +1385 8720 0.4850 +1385 8850 0.8850 +1385 8856 0.5430 +1385 8864 0.5350 +1385 8900 0.4110 +1385 8930 0.4640 +1385 8970 0.5090 +1385 8986 0.8910 +1385 8988 0.4770 +1385 9201 0.4170 +1385 9252 0.9880 +1385 9261 0.9160 +1385 9271 0.5290 +1385 9314 0.4020 +1385 9370 0.4460 +1385 9451 0.7150 +1385 9456 0.4740 +1385 9457 0.4440 +1385 9474 0.5600 +1385 9572 0.5690 +1385 9575 0.5820 +1385 9586 0.9440 +1385 9607 0.6070 +1385 9611 0.6070 +1385 9612 0.5600 +1385 9743 0.4470 +1385 9759 0.5150 +1385 9794 0.6100 +1385 9817 0.4220 +1385 9971 0.4910 +1385 10000 0.7650 +1385 10013 0.4420 +1385 10014 0.6410 +1385 10018 0.4730 +1385 10046 0.5050 +1385 10105 0.4890 +1385 10411 0.6540 +1385 10413 0.7300 +1385 10488 0.9550 +1385 10498 0.6910 +1385 10499 0.4310 +1385 10524 0.5380 +1385 10645 0.5330 +1385 10657 0.4350 +1385 10664 0.4620 +1385 10724 0.5210 +1385 10725 0.6610 +1385 10746 0.4040 +1385 10763 0.4050 +1385 10765 0.4390 +1385 10797 0.4050 +1385 10846 0.4010 +1385 10891 0.9960 +1385 11016 0.7080 +1385 11069 0.6270 +1385 11244 0.4850 +1385 11335 0.4210 +1385 22809 0.4870 +1385 22823 0.4670 +1385 22926 0.7010 +1385 23028 0.5950 +1385 23054 0.4940 +1385 23112 0.5580 +1385 23235 0.7280 +1385 23237 0.7830 +1385 23373 0.9980 +1385 23381 0.4260 +1385 23405 0.6310 +1385 23410 0.7120 +1385 23411 0.7810 +1385 23440 0.4420 +1385 23476 0.6010 +1385 23528 0.4500 +1385 23594 0.4370 +1385 23621 0.5410 +1385 23683 0.7490 +1385 25865 0.7380 +1385 26211 0.4320 +1385 26523 0.5820 +1385 27161 0.6670 +1385 27327 0.5540 +1385 27330 0.5090 +1385 27429 0.4640 +1385 28964 0.4100 +1385 28996 0.5540 +1385 29102 0.4240 +1385 30818 0.6600 +1385 49854 0.4570 +1385 50940 0.5650 +1385 50943 0.4460 +1385 51176 0.4550 +1385 51586 0.7220 +1385 51806 0.8900 +1385 53940 0.5130 +1385 54205 0.5440 +1385 54900 0.5140 +1385 55178 0.4660 +1385 55366 0.6440 +1385 55534 0.6080 +1385 55553 0.4840 +1385 55869 0.5000 +1385 56954 0.4550 +1385 57118 0.8410 +1385 57172 0.7540 +1385 57498 0.4550 +1385 57576 0.4610 +1385 57761 0.5610 +1385 57818 0.4640 +1385 64506 0.4250 +1385 64764 0.9360 +1385 64784 0.9070 +1385 79068 0.4810 +1385 79800 0.4150 +1385 80011 0.4960 +1385 80818 0.4480 +1385 81669 0.6220 +1385 83983 0.4340 +1385 84152 0.5940 +1385 84166 0.5070 +1385 84254 0.4700 +1385 84441 0.7240 +1385 84515 0.4050 +1385 84699 0.9720 +1385 84808 0.5260 +1385 84876 0.4650 +1385 90993 0.9380 +1385 91860 0.8910 +1385 92579 0.4780 +1385 94033 0.5130 +1385 126393 0.4400 +1385 133522 0.6220 +1385 137902 0.6620 +1385 143689 0.5320 +1385 146691 0.4200 +1385 146713 0.5490 +1385 148327 0.9550 +1385 150094 0.7250 +1385 161742 0.5370 +1385 163688 0.8840 +1385 168374 0.5150 +1385 192669 0.5280 +1385 192670 0.5400 +1385 200186 0.9990 +1385 221476 0.4050 +1385 252969 0.4140 +1385 257202 0.4360 +1385 266743 0.5110 +1385 283629 0.8060 +1385 440093 0.7410 +1385 440686 0.7350 +1385 493869 0.4390 +1385 653604 0.7430 +1385 104909134 0.6080 +1386 1387 0.9920 +1386 1388 0.9190 +1386 1390 0.9520 +1386 1432 0.9980 +1386 1457 0.4220 +1386 1499 0.4520 +1386 1649 0.7760 +1386 1822 0.5070 +1386 1843 0.7390 +1386 1911 0.5040 +1386 1912 0.4990 +1386 1958 0.7440 +1386 1965 0.5620 +1386 1968 0.5250 +1386 2033 0.9760 +1386 2099 0.6140 +1386 2122 0.5260 +1386 2146 0.6900 +1386 2353 0.9900 +1386 2354 0.6800 +1386 2355 0.8240 +1386 2550 0.5470 +1386 2597 0.4240 +1386 2625 0.5960 +1386 3012 0.5060 +1386 3013 0.5110 +1386 3014 0.6720 +1386 3015 0.5080 +1386 3017 0.5220 +1386 3018 0.5190 +1386 3021 0.6370 +1386 3054 0.7200 +1386 3065 0.6370 +1386 3066 0.6120 +1386 3098 0.4160 +1386 3159 0.4400 +1386 3169 0.5270 +1386 3176 0.4460 +1386 3622 0.4020 +1386 3661 0.9780 +1386 3665 0.6060 +1386 3725 0.9990 +1386 3726 0.8860 +1386 3727 0.8950 +1386 4088 0.4610 +1386 4089 0.7550 +1386 4216 0.4090 +1386 4217 0.4160 +1386 4298 0.5510 +1386 4300 0.5520 +1386 4302 0.6030 +1386 4436 0.5460 +1386 4772 0.4220 +1386 4800 0.6270 +1386 4801 0.4350 +1386 4802 0.4390 +1386 5451 0.6760 +1386 5468 0.6670 +1386 5499 0.7110 +1386 5500 0.7000 +1386 5501 0.7050 +1386 5566 0.7770 +1386 5567 0.7820 +1386 5568 0.7760 +1386 5578 0.7080 +1386 5579 0.6700 +1386 5581 0.4610 +1386 5582 0.6700 +1386 5587 0.6870 +1386 5592 0.7070 +1386 5593 0.6820 +1386 5594 0.9730 +1386 5595 0.9030 +1386 5598 0.5410 +1386 5599 0.9980 +1386 5600 0.9930 +1386 5601 0.9720 +1386 5603 0.9790 +1386 5606 0.5310 +1386 5608 0.4630 +1386 5925 0.5580 +1386 5928 0.5300 +1386 5931 0.5250 +1386 5978 0.5420 +1386 6015 0.5070 +1386 6045 0.5310 +1386 6300 0.9580 +1386 6416 0.4970 +1386 6591 0.5620 +1386 6615 0.5790 +1386 6757 0.4830 +1386 6760 0.4670 +1386 6774 0.4290 +1386 6885 0.4870 +1386 6938 0.5740 +1386 6944 0.7200 +1386 7088 0.6780 +1386 7101 0.5280 +1386 7124 0.4020 +1386 7157 0.8050 +1386 7320 0.5290 +1386 7341 0.4480 +1386 7416 0.4520 +1386 7425 0.4990 +1386 7443 0.4520 +1386 7528 0.7790 +1386 7803 0.6010 +1386 8061 0.6640 +1386 8089 0.7280 +1386 8295 0.7370 +1386 8331 0.5060 +1386 8334 0.5220 +1386 8337 0.5270 +1386 8338 0.5270 +1386 8340 0.5190 +1386 8341 0.5200 +1386 8342 0.5160 +1386 8345 0.5190 +1386 8347 0.5190 +1386 8348 0.5190 +1386 8349 0.5670 +1386 8356 0.6370 +1386 8361 0.6870 +1386 8452 0.4640 +1386 8473 0.7280 +1386 8535 0.5110 +1386 8536 0.6690 +1386 8607 0.7410 +1386 8726 0.6350 +1386 8841 0.6270 +1386 8894 0.5420 +1386 8970 0.5270 +1386 8986 0.7080 +1386 9097 0.4300 +1386 9112 0.5720 +1386 9219 0.5120 +1386 9252 0.9560 +1386 9261 0.4470 +1386 9586 0.9890 +1386 9759 0.6770 +1386 10000 0.6930 +1386 10011 0.4460 +1386 10014 0.6120 +1386 10445 0.7290 +1386 10488 0.9500 +1386 10524 0.8410 +1386 10856 0.8780 +1386 10891 0.8540 +1386 10902 0.7400 +1386 10933 0.7310 +1386 10943 0.7310 +1386 11016 0.8250 +1386 11091 0.7750 +1386 22809 0.5770 +1386 22955 0.5040 +1386 23028 0.5450 +1386 23162 0.4160 +1386 23186 0.5040 +1386 23466 0.4990 +1386 23512 0.6640 +1386 23683 0.6900 +1386 25820 0.5010 +1386 25865 0.7580 +1386 26122 0.7390 +1386 29110 0.4370 +1386 51105 0.5520 +1386 51230 0.7240 +1386 51412 0.5780 +1386 51548 0.4930 +1386 51564 0.5610 +1386 53615 0.5120 +1386 54145 0.5260 +1386 54556 0.7650 +1386 54799 0.7500 +1386 54815 0.5170 +1386 54934 0.7330 +1386 55140 0.4260 +1386 55167 0.7520 +1386 55257 0.7220 +1386 55509 0.7900 +1386 55683 0.7280 +1386 55689 0.5540 +1386 55766 0.5060 +1386 55929 0.7220 +1386 56852 0.4310 +1386 57118 0.6690 +1386 57167 0.5200 +1386 57172 0.6690 +1386 57332 0.5050 +1386 57459 0.5320 +1386 57504 0.5290 +1386 57634 0.7340 +1386 60468 0.4110 +1386 64764 0.9060 +1386 64769 0.7370 +1386 80012 0.5220 +1386 80314 0.7350 +1386 84148 0.7420 +1386 84232 0.5060 +1386 84699 0.9070 +1386 84733 0.4990 +1386 85236 0.5280 +1386 90993 0.9030 +1386 94239 0.5090 +1386 122953 0.8100 +1386 128312 0.5190 +1386 147339 0.4100 +1386 148327 0.9130 +1386 151050 0.5680 +1386 200186 0.8220 +1386 225689 0.4180 +1386 255626 0.5190 +1386 284058 0.7380 +1386 339287 0.7380 +1386 345651 0.5570 +1386 440689 0.4230 +1386 474382 0.5060 +1386 653604 0.6380 +1387 1390 0.8450 +1387 1432 0.4930 +1387 1437 0.5820 +1387 1454 0.4810 +1387 1457 0.6230 +1387 1487 0.8200 +1387 1488 0.6470 +1387 1499 0.9990 +1387 1523 0.4850 +1387 1543 0.4810 +1387 1579 0.4150 +1387 1581 0.4580 +1387 1594 0.6530 +1387 1616 0.8420 +1387 1654 0.5630 +1387 1655 0.4470 +1387 1660 0.5800 +1387 1728 0.6070 +1387 1786 0.4820 +1387 1788 0.5250 +1387 1822 0.5330 +1387 1869 0.8820 +1387 1871 0.8020 +1387 1879 0.8340 +1387 1956 0.6530 +1387 1958 0.8340 +1387 1959 0.9200 +1387 1960 0.9190 +1387 1964 0.4130 +1387 1999 0.5770 +1387 2033 0.9990 +1387 2034 0.9860 +1387 2056 0.6110 +1387 2064 0.6250 +1387 2099 0.9930 +1387 2100 0.4920 +1387 2113 0.8950 +1387 2114 0.8170 +1387 2120 0.4720 +1387 2122 0.5100 +1387 2130 0.7280 +1387 2146 0.8180 +1387 2167 0.5580 +1387 2168 0.5120 +1387 2173 0.4400 +1387 2180 0.4820 +1387 2185 0.4570 +1387 2195 0.4230 +1387 2222 0.4770 +1387 2247 0.6300 +1387 2260 0.9230 +1387 2274 0.5830 +1387 2305 0.8340 +1387 2308 0.9930 +1387 2309 0.9950 +1387 2322 0.4050 +1387 2353 0.9430 +1387 2354 0.5300 +1387 2475 0.4120 +1387 2494 0.5610 +1387 2516 0.5790 +1387 2534 0.5250 +1387 2539 0.5380 +1387 2547 0.6180 +1387 2597 0.4640 +1387 2623 0.6160 +1387 2624 0.5550 +1387 2625 0.8010 +1387 2626 0.5570 +1387 2648 0.9640 +1387 2729 0.5770 +1387 2730 0.5670 +1387 2737 0.6900 +1387 2782 0.4600 +1387 2885 0.5250 +1387 2908 0.9430 +1387 2932 0.6030 +1387 2938 0.4990 +1387 2959 0.7690 +1387 2962 0.5200 +1387 3012 0.6360 +1387 3013 0.5070 +1387 3014 0.6010 +1387 3015 0.7740 +1387 3017 0.5810 +1387 3018 0.7780 +1387 3020 0.9210 +1387 3021 0.9850 +1387 3050 0.4320 +1387 3064 0.9970 +1387 3065 0.9600 +1387 3066 0.9340 +1387 3091 0.9990 +1387 3146 0.6350 +1387 3156 0.5050 +1387 3157 0.4910 +1387 3158 0.4600 +1387 3159 0.5780 +1387 3172 0.9600 +1387 3175 0.7150 +1387 3205 0.6700 +1387 3206 0.6450 +1387 3216 0.5420 +1387 3217 0.5450 +1387 3233 0.6460 +1387 3276 0.7780 +1387 3280 0.5670 +1387 3297 0.6310 +1387 3303 0.4670 +1387 3304 0.4770 +1387 3305 0.4220 +1387 3306 0.4140 +1387 3312 0.6170 +1387 3320 0.4150 +1387 3337 0.4950 +1387 3428 0.4600 +1387 3439 0.6290 +1387 3440 0.5550 +1387 3441 0.5400 +1387 3442 0.5320 +1387 3443 0.5290 +1387 3444 0.5320 +1387 3445 0.5300 +1387 3446 0.5270 +1387 3448 0.5340 +1387 3449 0.5300 +1387 3451 0.5490 +1387 3452 0.5290 +1387 3456 0.6850 +1387 3480 0.5790 +1387 3516 0.9390 +1387 3551 0.8010 +1387 3553 0.5890 +1387 3569 0.4160 +1387 3576 0.5330 +1387 3659 0.5870 +1387 3661 0.9990 +1387 3662 0.4630 +1387 3663 0.7180 +1387 3665 0.9760 +1387 3669 0.4310 +1387 3707 0.4750 +1387 3716 0.4720 +1387 3717 0.4510 +1387 3718 0.4190 +1387 3725 0.9940 +1387 3726 0.4380 +1387 3838 0.7600 +1387 3845 0.5020 +1387 3952 0.5770 +1387 4023 0.5340 +1387 4067 0.4490 +1387 4086 0.7820 +1387 4087 0.9860 +1387 4088 0.9950 +1387 4089 0.9170 +1387 4091 0.4930 +1387 4094 0.5980 +1387 4097 0.5860 +1387 4137 0.4220 +1387 4193 0.9090 +1387 4199 0.4350 +1387 4204 0.6540 +1387 4205 0.5620 +1387 4208 0.5000 +1387 4209 0.4230 +1387 4211 0.4870 +1387 4261 0.7530 +1387 4287 0.7780 +1387 4297 0.9950 +1387 4299 0.4130 +1387 4303 0.9840 +1387 4306 0.4190 +1387 4343 0.5650 +1387 4435 0.8090 +1387 4520 0.4080 +1387 4602 0.9990 +1387 4603 0.6400 +1387 4605 0.7680 +1387 4609 0.9450 +1387 4610 0.4150 +1387 4654 0.9230 +1387 4673 0.6240 +1387 4676 0.4610 +1387 4760 0.5030 +1387 4762 0.4870 +1387 4763 0.5470 +1387 4772 0.5490 +1387 4773 0.6580 +1387 4778 0.6640 +1387 4780 0.9420 +1387 4790 0.9130 +1387 4791 0.4670 +1387 4792 0.7410 +1387 4793 0.4700 +1387 4800 0.6900 +1387 4801 0.6470 +1387 4802 0.5310 +1387 4851 0.7830 +1387 4853 0.8180 +1387 4854 0.6700 +1387 4855 0.5950 +1387 4862 0.6660 +1387 4893 0.4540 +1387 4928 0.8150 +1387 5054 0.5010 +1387 5079 0.4640 +1387 5080 0.8550 +1387 5087 0.5390 +1387 5089 0.6780 +1387 5105 0.5860 +1387 5226 0.5690 +1387 5244 0.4400 +1387 5290 0.6970 +1387 5295 0.6040 +1387 5325 0.5950 +1387 5346 0.5060 +1387 5371 0.8290 +1387 5435 0.4030 +1387 5449 0.7800 +1387 5465 0.8380 +1387 5467 0.6550 +1387 5468 0.9980 +1387 5469 0.7400 +1387 5566 0.8350 +1387 5567 0.8350 +1387 5568 0.8350 +1387 5594 0.8030 +1387 5595 0.7010 +1387 5599 0.6940 +1387 5601 0.5290 +1387 5609 0.4600 +1387 5629 0.4560 +1387 5728 0.5520 +1387 5757 0.6140 +1387 5914 0.8890 +1387 5917 0.5180 +1387 5925 0.5450 +1387 5926 0.4690 +1387 5927 0.7010 +1387 5928 0.8110 +1387 5929 0.4280 +1387 5931 0.8120 +1387 5966 0.7530 +1387 5970 0.9990 +1387 6097 0.4080 +1387 6194 0.4180 +1387 6195 0.8470 +1387 6196 0.4660 +1387 6197 0.5110 +1387 6239 0.4170 +1387 6256 0.9770 +1387 6257 0.6950 +1387 6258 0.6920 +1387 6304 0.4020 +1387 6305 0.5470 +1387 6418 0.5280 +1387 6500 0.6140 +1387 6517 0.5620 +1387 6591 0.4430 +1387 6595 0.7400 +1387 6597 0.9440 +1387 6598 0.5170 +1387 6604 0.4940 +1387 6615 0.7590 +1387 6654 0.5510 +1387 6659 0.4170 +1387 6662 0.7540 +1387 6667 0.9920 +1387 6670 0.4500 +1387 6688 0.6440 +1387 6689 0.5100 +1387 6714 0.9400 +1387 6720 0.8450 +1387 6721 0.7600 +1387 6722 0.6840 +1387 6760 0.4610 +1387 6772 0.9990 +1387 6773 0.9970 +1387 6774 0.9350 +1387 6775 0.7020 +1387 6776 0.9750 +1387 6777 0.9340 +1387 6778 0.9570 +1387 6837 0.5200 +1387 6874 0.5850 +1387 6907 0.6070 +1387 6908 0.6160 +1387 6911 0.5100 +1387 6925 0.9160 +1387 6927 0.7510 +1387 6928 0.6220 +1387 6929 0.9170 +1387 6932 0.9200 +1387 6934 0.9660 +1387 6938 0.9370 +1387 6996 0.8960 +1387 7021 0.6470 +1387 7022 0.5430 +1387 7026 0.4610 +1387 7027 0.7750 +1387 7029 0.5370 +1387 7040 0.4990 +1387 7067 0.7060 +1387 7068 0.7090 +1387 7080 0.6830 +1387 7088 0.5980 +1387 7089 0.5440 +1387 7090 0.6870 +1387 7091 0.5650 +1387 7097 0.4330 +1387 7124 0.4310 +1387 7128 0.4460 +1387 7132 0.4940 +1387 7155 0.4660 +1387 7157 0.9990 +1387 7158 0.5450 +1387 7161 0.6500 +1387 7295 0.5940 +1387 7296 0.5320 +1387 7329 0.9080 +1387 7341 0.9980 +1387 7403 0.8110 +1387 7428 0.4140 +1387 7468 0.4380 +1387 7528 0.9510 +1387 7703 0.5520 +1387 7764 0.6000 +1387 7874 0.7510 +1387 7913 0.4290 +1387 7975 0.7350 +1387 7994 0.9390 +1387 8021 0.4570 +1387 8028 0.4030 +1387 8061 0.4730 +1387 8085 0.8700 +1387 8202 0.9990 +1387 8216 0.4360 +1387 8242 0.4650 +1387 8260 0.4080 +1387 8289 0.8490 +1387 8290 0.9860 +1387 8294 0.9030 +1387 8295 0.5390 +1387 8312 0.4610 +1387 8331 0.5070 +1387 8334 0.5280 +1387 8337 0.6970 +1387 8338 0.6950 +1387 8340 0.5630 +1387 8341 0.5660 +1387 8342 0.5650 +1387 8345 0.5640 +1387 8347 0.5780 +1387 8348 0.5690 +1387 8349 0.7760 +1387 8350 0.9890 +1387 8351 0.9070 +1387 8352 0.9140 +1387 8353 0.9130 +1387 8354 0.9070 +1387 8355 0.9070 +1387 8356 0.9840 +1387 8357 0.9070 +1387 8358 0.9160 +1387 8359 0.9030 +1387 8360 0.9030 +1387 8361 0.9950 +1387 8362 0.9030 +1387 8363 0.9030 +1387 8364 0.9030 +1387 8366 0.9050 +1387 8367 0.9030 +1387 8368 0.9030 +1387 8369 0.4360 +1387 8370 0.9030 +1387 8452 0.4670 +1387 8454 0.6910 +1387 8517 0.6950 +1387 8521 0.5930 +1387 8553 0.4110 +1387 8554 0.4680 +1387 8607 0.4380 +1387 8648 0.9990 +1387 8726 0.5740 +1387 8764 0.4720 +1387 8772 0.4860 +1387 8800 0.6610 +1387 8805 0.4820 +1387 8841 0.8730 +1387 8850 0.9990 +1387 8864 0.4810 +1387 8928 0.4890 +1387 8945 0.6200 +1387 8968 0.9070 +1387 8970 0.5720 +1387 9021 0.4740 +1387 9031 0.5200 +1387 9097 0.5670 +1387 9111 0.5970 +1387 9149 0.5440 +1387 9203 0.5220 +1387 9232 0.4010 +1387 9252 0.4670 +1387 9282 0.6190 +1387 9314 0.8670 +1387 9320 0.4080 +1387 9325 0.5800 +1387 9370 0.5590 +1387 9412 0.6450 +1387 9439 0.6210 +1387 9440 0.5880 +1387 9441 0.5460 +1387 9442 0.5510 +1387 9443 0.4990 +1387 9457 0.4970 +1387 9477 0.5230 +1387 9575 0.9760 +1387 9586 0.9250 +1387 9611 0.9470 +1387 9612 0.8720 +1387 9656 0.4180 +1387 9687 0.8260 +1387 9734 0.8240 +1387 9739 0.5570 +1387 9757 0.4800 +1387 9759 0.7450 +1387 9794 0.9030 +1387 9817 0.4470 +1387 9862 0.5680 +1387 9869 0.5820 +1387 9935 0.4200 +1387 9968 0.7380 +1387 9969 0.6310 +1387 9978 0.6260 +1387 10001 0.5040 +1387 10013 0.7420 +1387 10014 0.8120 +1387 10018 0.6430 +1387 10025 0.5340 +1387 10046 0.5430 +1387 10131 0.6830 +1387 10153 0.6650 +1387 10155 0.4650 +1387 10197 0.4340 +1387 10320 0.4700 +1387 10365 0.4860 +1387 10370 0.9950 +1387 10379 0.4550 +1387 10401 0.5630 +1387 10488 0.9170 +1387 10498 0.9810 +1387 10499 0.9970 +1387 10521 0.6420 +1387 10524 0.8170 +1387 10657 0.7760 +1387 10661 0.8080 +1387 10664 0.6530 +1387 10672 0.4330 +1387 10735 0.4310 +1387 10738 0.4110 +1387 10847 0.9440 +1387 10891 0.8600 +1387 10919 0.4410 +1387 11010 0.4060 +1387 11052 0.6080 +1387 11091 0.4860 +1387 11143 0.4250 +1387 11262 0.4320 +1387 11267 0.4290 +1387 11317 0.9260 +1387 22933 0.4430 +1387 22938 0.8430 +1387 22978 0.4490 +1387 22992 0.4140 +1387 23013 0.5630 +1387 23028 0.4460 +1387 23054 0.9620 +1387 23097 0.5450 +1387 23112 0.5920 +1387 23129 0.5000 +1387 23135 0.4490 +1387 23199 0.4260 +1387 23291 0.5410 +1387 23309 0.6470 +1387 23373 0.5960 +1387 23389 0.6770 +1387 23411 0.7540 +1387 23462 0.5640 +1387 23476 0.7100 +1387 23493 0.5280 +1387 23512 0.6710 +1387 23522 0.5820 +1387 23633 0.4310 +1387 23657 0.5310 +1387 23741 0.7050 +1387 25833 0.4100 +1387 25836 0.4070 +1387 25842 0.5760 +1387 25942 0.7900 +1387 26039 0.6190 +1387 26040 0.4080 +1387 26108 0.4800 +1387 26205 0.4570 +1387 26230 0.4050 +1387 26508 0.5140 +1387 26523 0.5640 +1387 27033 0.4200 +1387 27043 0.6080 +1387 27063 0.4100 +1387 27161 0.6020 +1387 27242 0.4340 +1387 27327 0.5600 +1387 28996 0.8050 +1387 29072 0.8050 +1387 29079 0.6450 +1387 29117 0.4220 +1387 29841 0.4190 +1387 29950 0.4870 +1387 29994 0.4730 +1387 50486 0.4200 +1387 51003 0.5050 +1387 51061 0.5920 +1387 51085 0.5090 +1387 51129 0.5510 +1387 51176 0.9610 +1387 51434 0.5300 +1387 51564 0.7120 +1387 51586 0.6130 +1387 51621 0.6410 +1387 51701 0.6760 +1387 51780 0.5580 +1387 53635 0.7000 +1387 54145 0.5630 +1387 54600 0.4110 +1387 54790 0.5320 +1387 54797 0.5380 +1387 54815 0.4550 +1387 55090 0.5380 +1387 55240 0.4990 +1387 55294 0.7280 +1387 55534 0.8510 +1387 55588 0.4990 +1387 55636 0.4050 +1387 55662 0.4170 +1387 55766 0.5210 +1387 55809 0.5990 +1387 55869 0.7210 +1387 55870 0.4780 +1387 56339 0.4350 +1387 57492 0.5850 +1387 57521 0.4670 +1387 57634 0.6530 +1387 57680 0.4950 +1387 57708 0.5870 +1387 57761 0.4360 +1387 57805 0.4120 +1387 58508 0.8220 +1387 63897 0.4800 +1387 64324 0.6160 +1387 64344 0.6510 +1387 64397 0.6530 +1387 64764 0.9210 +1387 64783 0.4010 +1387 79661 0.5240 +1387 79718 0.7060 +1387 79753 0.5530 +1387 79885 0.7610 +1387 79960 0.4370 +1387 80204 0.4990 +1387 80205 0.5400 +1387 80306 0.5060 +1387 81857 0.7320 +1387 83439 0.9210 +1387 83741 0.5280 +1387 83933 0.6730 +1387 84106 0.4020 +1387 84148 0.4740 +1387 84181 0.5710 +1387 84246 0.5050 +1387 84260 0.5640 +1387 84295 0.4840 +1387 84433 0.5560 +1387 84441 0.8880 +1387 84444 0.4200 +1387 84678 0.5160 +1387 84699 0.9100 +1387 85236 0.5800 +1387 85441 0.9420 +1387 90390 0.5530 +1387 90993 0.9230 +1387 92140 0.6070 +1387 92292 0.4100 +1387 92552 0.4020 +1387 94239 0.5910 +1387 96764 0.6000 +1387 112950 0.5260 +1387 116519 0.4030 +1387 121504 0.9050 +1387 126961 0.9070 +1387 128312 0.5710 +1387 133746 0.4110 +1387 135112 0.4130 +1387 148327 0.9170 +1387 163732 0.8410 +1387 171017 0.5780 +1387 171023 0.4870 +1387 192669 0.6820 +1387 192670 0.5450 +1387 196528 0.4360 +1387 200186 0.9840 +1387 201161 0.4850 +1387 253738 0.4060 +1387 255626 0.5680 +1387 284058 0.4270 +1387 333932 0.9070 +1387 339488 0.5020 +1387 343930 0.4990 +1387 375341 0.5850 +1387 387893 0.4140 +1387 388585 0.5640 +1387 400569 0.5230 +1387 440093 0.9590 +1387 440686 0.9590 +1387 440689 0.4860 +1387 474382 0.5320 +1387 493861 0.7140 +1387 554313 0.9030 +1387 653604 0.9790 +1387 728378 0.4270 +1387 100271849 0.6390 +1387 100288687 0.6210 +1387 102723407 0.4240 +1387 102800317 0.6060 +1388 1390 0.9060 +1388 1589 0.6550 +1388 1649 0.9500 +1388 1965 0.4690 +1388 2081 0.8070 +1388 2907 0.5020 +1388 3122 0.4700 +1388 3309 0.8240 +1388 4217 0.4330 +1388 4800 0.6890 +1388 4802 0.4580 +1388 5089 0.4060 +1388 5296 0.5120 +1388 5499 0.6510 +1388 5500 0.6890 +1388 5501 0.6850 +1388 5566 0.6580 +1388 5567 0.6580 +1388 5568 0.6500 +1388 5578 0.6500 +1388 5579 0.6500 +1388 5582 0.6500 +1388 5587 0.6500 +1388 5592 0.6550 +1388 5593 0.6580 +1388 5594 0.6700 +1388 5595 0.6730 +1388 5610 0.5210 +1388 5611 0.5200 +1388 6293 0.4640 +1388 7148 0.7100 +1388 7184 0.7610 +1388 7466 0.9340 +1388 7494 0.9040 +1388 7528 0.4610 +1388 7932 0.4120 +1388 8536 0.6730 +1388 8720 0.7860 +1388 8986 0.7000 +1388 9252 0.9100 +1388 9451 0.7490 +1388 9586 0.9090 +1388 9695 0.7820 +1388 10000 0.6640 +1388 10488 0.9260 +1388 10531 0.5630 +1388 10538 0.5040 +1388 10595 0.7450 +1388 22809 0.6790 +1388 22926 0.9610 +1388 22937 0.6230 +1388 23683 0.6520 +1388 25865 0.6500 +1388 27102 0.4130 +1388 27248 0.4480 +1388 30001 0.4190 +1388 51360 0.8250 +1388 56154 0.4440 +1388 56605 0.4050 +1388 57118 0.6730 +1388 57172 0.6730 +1388 58487 0.4860 +1388 63943 0.5370 +1388 64764 0.9320 +1388 84699 0.9310 +1388 90993 0.9310 +1388 116071 0.5960 +1388 148327 0.9290 +1388 168620 0.6620 +1388 440275 0.4640 +1389 2120 0.7680 +1389 2353 0.4160 +1389 2355 0.4750 +1389 2842 0.5280 +1389 9424 0.4080 +1389 23623 0.4850 +1389 54682 0.5100 +1389 57613 0.4070 +1389 80824 0.4180 +1389 118426 0.5540 +1389 153222 0.7200 +1390 1960 0.4360 +1390 2033 0.5650 +1390 2053 0.4460 +1390 2130 0.4700 +1390 2274 0.4040 +1390 2353 0.7800 +1390 2354 0.4120 +1390 2355 0.4350 +1390 2539 0.5270 +1390 2668 0.6290 +1390 2821 0.5150 +1390 3050 0.7570 +1390 3065 0.6900 +1390 3164 0.4700 +1390 3304 0.4480 +1390 3558 0.7920 +1390 3605 0.5250 +1390 3725 0.6580 +1390 3726 0.5450 +1390 3727 0.6060 +1390 4772 0.5180 +1390 4773 0.5390 +1390 4775 0.4720 +1390 4783 0.4420 +1390 4922 0.4760 +1390 4929 0.4520 +1390 5139 0.4320 +1390 5142 0.4070 +1390 5173 0.4930 +1390 5187 0.7720 +1390 5566 0.5430 +1390 5567 0.5440 +1390 5568 0.5430 +1390 5595 0.5710 +1390 5598 0.4300 +1390 5620 0.5050 +1390 6667 0.6140 +1390 6688 0.4090 +1390 6874 0.4090 +1390 6900 0.4830 +1390 6908 0.4810 +1390 7141 0.5310 +1390 7142 0.4830 +1390 7514 0.5350 +1390 7732 0.4590 +1390 8013 0.5050 +1390 8266 0.5110 +1390 8325 0.4110 +1390 8862 0.4460 +1390 9271 0.5580 +1390 9457 0.9470 +1390 9519 0.7180 +1390 9586 0.9150 +1390 10014 0.4120 +1390 10488 0.9230 +1390 23373 0.4610 +1390 23764 0.4040 +1390 30818 0.4190 +1390 57576 0.7910 +1390 64764 0.9160 +1390 84699 0.9110 +1390 90993 0.9050 +1390 112744 0.4280 +1390 148327 0.9330 +1390 150094 0.6060 +1390 219771 0.4590 +1392 1393 0.9990 +1392 1394 0.9990 +1392 1395 0.9990 +1392 1401 0.4180 +1392 1583 0.4520 +1392 1584 0.4650 +1392 1621 0.6740 +1392 1636 0.4600 +1392 1812 0.4480 +1392 1813 0.5200 +1392 1848 0.4140 +1392 1958 0.6070 +1392 1961 0.4360 +1392 2099 0.5030 +1392 2100 0.4910 +1392 2289 0.6680 +1392 2335 0.4230 +1392 2353 0.7920 +1392 2488 0.5750 +1392 2566 0.5210 +1392 2571 0.5830 +1392 2572 0.4990 +1392 2597 0.4100 +1392 2641 0.7600 +1392 2642 0.7000 +1392 2691 0.9450 +1392 2692 0.5090 +1392 2693 0.6720 +1392 2695 0.5690 +1392 2696 0.4360 +1392 2740 0.7310 +1392 2774 0.4730 +1392 2776 0.4910 +1392 2778 0.9760 +1392 2782 0.9410 +1392 2783 0.4390 +1392 2784 0.4770 +1392 2786 0.4290 +1392 2796 0.7120 +1392 2837 0.4120 +1392 2863 0.4180 +1392 2904 0.4420 +1392 2908 0.8720 +1392 2912 0.5060 +1392 2915 0.4260 +1392 2922 0.6460 +1392 3060 0.8660 +1392 3061 0.6500 +1392 3164 0.4080 +1392 3290 0.5350 +1392 3291 0.7840 +1392 3350 0.7410 +1392 3351 0.4300 +1392 3356 0.5270 +1392 3358 0.4790 +1392 3375 0.7090 +1392 3479 0.5060 +1392 3552 0.5410 +1392 3553 0.7380 +1392 3558 0.5800 +1392 3569 0.6100 +1392 3586 0.4370 +1392 3630 0.6660 +1392 3640 0.4550 +1392 3814 0.5880 +1392 3827 0.6280 +1392 3952 0.8650 +1392 3953 0.5490 +1392 3972 0.5440 +1392 4128 0.5710 +1392 4129 0.4840 +1392 4158 0.8420 +1392 4159 0.6420 +1392 4160 0.7500 +1392 4204 0.8450 +1392 4306 0.7070 +1392 4803 0.5090 +1392 4852 0.9510 +1392 4878 0.4060 +1392 4886 0.4510 +1392 4887 0.4770 +1392 4889 0.4150 +1392 4915 0.4800 +1392 4922 0.8330 +1392 4923 0.5680 +1392 4925 0.5900 +1392 4988 0.7370 +1392 5020 0.9200 +1392 5021 0.7240 +1392 5173 0.8400 +1392 5179 0.7070 +1392 5354 0.4240 +1392 5367 0.6750 +1392 5368 0.7860 +1392 5409 0.7200 +1392 5443 0.9920 +1392 5566 0.5720 +1392 5567 0.5720 +1392 5568 0.5720 +1392 5617 0.7190 +1392 5626 0.4580 +1392 5649 0.4890 +1392 5697 0.6640 +1392 5731 0.4900 +1392 5733 0.4900 +1392 5734 0.4230 +1392 5741 0.6300 +1392 5744 0.5280 +1392 5745 0.7700 +1392 5746 0.6640 +1392 5816 0.4530 +1392 5914 0.4230 +1392 5972 0.4800 +1392 6019 0.4520 +1392 6295 0.4930 +1392 6343 0.7850 +1392 6344 0.5180 +1392 6492 0.5270 +1392 6531 0.4680 +1392 6532 0.7630 +1392 6714 0.5840 +1392 6750 0.8730 +1392 6751 0.4780 +1392 6770 0.4540 +1392 6774 0.5310 +1392 6822 0.4350 +1392 6863 0.7330 +1392 6869 0.4650 +1392 7054 0.6460 +1392 7097 0.4710 +1392 7099 0.4170 +1392 7124 0.5580 +1392 7200 0.8840 +1392 7252 0.6820 +1392 7349 0.9990 +1392 7351 0.4360 +1392 7432 0.9220 +1392 7433 0.5490 +1392 7434 0.5640 +1392 8862 0.4280 +1392 9095 0.7150 +1392 9340 0.4030 +1392 9607 0.6920 +1392 10203 0.4840 +1392 10681 0.4480 +1392 10761 0.4280 +1392 10874 0.4590 +1392 10911 0.6670 +1392 23440 0.4620 +1392 25945 0.4450 +1392 26468 0.4940 +1392 51052 0.4780 +1392 51083 0.6990 +1392 51738 0.7240 +1392 54331 0.9420 +1392 56246 0.4820 +1392 57084 0.5420 +1392 57105 0.5050 +1392 57486 0.4260 +1392 59345 0.4390 +1392 64111 0.5210 +1392 79924 0.4860 +1392 90226 0.9950 +1392 113091 0.5920 +1392 114131 0.9970 +1392 117579 0.6580 +1392 121278 0.4400 +1392 122876 0.5130 +1392 140679 0.5930 +1392 151306 0.4580 +1392 170589 0.4680 +1392 347148 0.4690 +1392 594857 0.7400 +1392 619373 0.5480 +1392 104909134 0.9990 +1393 1394 0.9830 +1393 1395 0.9740 +1393 2289 0.6210 +1393 2908 0.5710 +1393 4158 0.4410 +1393 4306 0.4740 +1393 4496 0.4220 +1393 4852 0.4250 +1393 5020 0.4390 +1393 5179 0.4190 +1393 5443 0.7770 +1393 5566 0.4120 +1393 5567 0.4200 +1393 6532 0.4470 +1393 6750 0.4550 +1393 7349 0.9760 +1393 8878 0.4470 +1393 9133 0.4520 +1393 9320 0.4030 +1393 10318 0.4780 +1393 65260 0.5720 +1393 90226 0.7150 +1393 114131 0.8380 +1393 653583 0.4300 +1393 104909134 0.9780 +1394 1395 0.9120 +1394 1400 0.4080 +1394 1742 0.6520 +1394 1812 0.4570 +1394 1813 0.5950 +1394 1815 0.4610 +1394 1855 0.5700 +1394 2149 0.4160 +1394 2166 0.6190 +1394 2289 0.7240 +1394 2353 0.6070 +1394 2550 0.4380 +1394 2554 0.4840 +1394 2555 0.4940 +1394 2559 0.4020 +1394 2561 0.4350 +1394 2563 0.4540 +1394 2565 0.4070 +1394 2571 0.4200 +1394 2641 0.4230 +1394 2642 0.7110 +1394 2691 0.6590 +1394 2741 0.4620 +1394 2768 0.9340 +1394 2770 0.9520 +1394 2771 0.9510 +1394 2773 0.9370 +1394 2774 0.4870 +1394 2775 0.6190 +1394 2776 0.7630 +1394 2778 0.9970 +1394 2781 0.9350 +1394 2782 0.9670 +1394 2783 0.5010 +1394 2784 0.5180 +1394 2786 0.5170 +1394 2798 0.5870 +1394 2894 0.4760 +1394 2902 0.4570 +1394 2904 0.6490 +1394 2908 0.8430 +1394 2911 0.4890 +1394 2912 0.4190 +1394 2915 0.6610 +1394 2944 0.4520 +1394 3006 0.5770 +1394 3060 0.7680 +1394 3061 0.7090 +1394 3290 0.4400 +1394 3291 0.4260 +1394 3350 0.6370 +1394 3351 0.4610 +1394 3356 0.5520 +1394 3358 0.5250 +1394 3361 0.4290 +1394 3383 0.4070 +1394 3765 0.4370 +1394 3953 0.5080 +1394 4128 0.5410 +1394 4137 0.7550 +1394 4158 0.6590 +1394 4160 0.4090 +1394 4306 0.6580 +1394 4852 0.6360 +1394 4886 0.4830 +1394 4887 0.4810 +1394 4915 0.4920 +1394 4922 0.7010 +1394 4923 0.6100 +1394 4988 0.7330 +1394 5020 0.6230 +1394 5021 0.6150 +1394 5173 0.7900 +1394 5174 0.4410 +1394 5179 0.5810 +1394 5368 0.5500 +1394 5409 0.4930 +1394 5443 0.9280 +1394 5566 0.6650 +1394 5567 0.6700 +1394 5568 0.6740 +1394 5617 0.4130 +1394 5741 0.7030 +1394 5744 0.5570 +1394 5745 0.5120 +1394 5746 0.4600 +1394 5816 0.4430 +1394 6010 0.4700 +1394 6252 0.4370 +1394 6343 0.6820 +1394 6344 0.4850 +1394 6530 0.4090 +1394 6531 0.4300 +1394 6532 0.6990 +1394 6622 0.4330 +1394 6714 0.5570 +1394 6750 0.6420 +1394 6774 0.4660 +1394 6863 0.5520 +1394 6869 0.4440 +1394 7054 0.5050 +1394 7200 0.4300 +1394 7201 0.4300 +1394 7252 0.4060 +1394 7275 0.4060 +1394 7349 0.9990 +1394 7432 0.6740 +1394 7473 0.7040 +1394 7753 0.4060 +1394 9607 0.4500 +1394 9884 0.5120 +1394 10280 0.4470 +1394 10316 0.4220 +1394 10672 0.9280 +1394 10681 0.4670 +1394 11255 0.4020 +1394 23560 0.4680 +1394 51289 0.4500 +1394 51326 0.4160 +1394 51738 0.4260 +1394 54331 0.8260 +1394 55800 0.4280 +1394 57030 0.4180 +1394 57486 0.4950 +1394 59345 0.5010 +1394 63974 0.4010 +1394 84830 0.4060 +1394 90226 0.9970 +1394 113091 0.5130 +1394 113263 0.5220 +1394 114131 0.9980 +1394 117579 0.5750 +1394 121278 0.4130 +1394 133418 0.4100 +1394 140679 0.4520 +1394 146779 0.4080 +1394 147381 0.4760 +1394 162540 0.6280 +1394 246744 0.8480 +1394 284058 0.8570 +1394 374819 0.5070 +1394 387129 0.4850 +1394 474170 0.4470 +1394 594857 0.5930 +1395 2289 0.5420 +1395 2353 0.5280 +1395 2691 0.6100 +1395 2693 0.4040 +1395 2767 0.5130 +1395 2770 0.6130 +1395 2773 0.6170 +1395 2774 0.4560 +1395 2776 0.5820 +1395 2778 0.9480 +1395 2782 0.6020 +1395 2783 0.5010 +1395 2784 0.4780 +1395 2786 0.5380 +1395 2908 0.6150 +1395 3060 0.5310 +1395 3350 0.5190 +1395 3485 0.6460 +1395 3586 0.4900 +1395 3587 0.4240 +1395 3588 0.4680 +1395 3952 0.4200 +1395 3953 0.5070 +1395 4158 0.7010 +1395 4306 0.5660 +1395 4852 0.5440 +1395 4886 0.4410 +1395 4887 0.4490 +1395 4925 0.4360 +1395 4988 0.4010 +1395 5020 0.5790 +1395 5021 0.5150 +1395 5173 0.6830 +1395 5368 0.4180 +1395 5443 0.9000 +1395 5566 0.4030 +1395 5567 0.4020 +1395 5568 0.4120 +1395 5741 0.5000 +1395 5744 0.5280 +1395 5745 0.4590 +1395 5746 0.4750 +1395 6343 0.6000 +1395 6532 0.4860 +1395 6714 0.5370 +1395 6750 0.4190 +1395 6751 0.4410 +1395 7200 0.4190 +1395 7349 0.9990 +1395 7432 0.6150 +1395 8811 0.4720 +1395 9630 0.5130 +1395 10268 0.4700 +1395 10681 0.4430 +1395 23560 0.4570 +1395 51738 0.8500 +1395 53832 0.5430 +1395 54331 0.5080 +1395 55801 0.4680 +1395 56246 0.4040 +1395 56477 0.4180 +1395 58985 0.4710 +1395 59345 0.6020 +1395 90226 0.9990 +1395 113091 0.4950 +1395 114131 0.9990 +1395 163702 0.5070 +1395 282616 0.5020 +1395 282617 0.4320 +1396 1622 0.4600 +1396 4004 0.7740 +1396 4005 0.6170 +1396 4594 0.4400 +1396 4830 0.4410 +1396 6277 0.5270 +1396 6281 0.4760 +1396 6678 0.6030 +1396 9112 0.4720 +1396 23171 0.4080 +1396 27161 0.4720 +1396 84268 0.4050 +1396 140462 0.4610 +1396 221472 0.4820 +1397 6722 0.6640 +1397 27161 0.4420 +1397 63932 0.4500 +1397 122616 0.4300 +1398 1399 0.9790 +1398 1436 0.7240 +1398 1445 0.8380 +1398 1499 0.5910 +1398 1600 0.6120 +1398 1739 0.4970 +1398 1742 0.4630 +1398 1793 0.9990 +1398 1794 0.8930 +1398 1795 0.7790 +1398 1796 0.5950 +1398 1948 0.4030 +1398 1950 0.4740 +1398 1956 0.9970 +1398 1969 0.8600 +1398 2017 0.4660 +1398 2042 0.4910 +1398 2048 0.5100 +1398 2049 0.4360 +1398 2050 0.7300 +1398 2060 0.9160 +1398 2064 0.7590 +1398 2065 0.5330 +1398 2066 0.5650 +1398 2185 0.9690 +1398 2209 0.5110 +1398 2212 0.5640 +1398 2243 0.5000 +1398 2244 0.5160 +1398 2260 0.9180 +1398 2261 0.7190 +1398 2263 0.7330 +1398 2264 0.7280 +1398 2266 0.4990 +1398 2316 0.5570 +1398 2321 0.8050 +1398 2324 0.7720 +1398 2335 0.6980 +1398 2444 0.5840 +1398 2533 0.4600 +1398 2534 0.9380 +1398 2549 0.9720 +1398 2697 0.4220 +1398 2812 0.4370 +1398 2885 0.9800 +1398 2886 0.6470 +1398 2887 0.5010 +1398 2889 0.9990 +1398 2909 0.4050 +1398 2928 0.4470 +1398 3008 0.4380 +1398 3055 0.7960 +1398 3059 0.9450 +1398 3071 0.5870 +1398 3082 0.6460 +1398 3090 0.4540 +1398 3320 0.7470 +1398 3480 0.8820 +1398 3569 0.4930 +1398 3623 0.4350 +1398 3624 0.4080 +1398 3625 0.4460 +1398 3636 0.6640 +1398 3643 0.7540 +1398 3655 0.6990 +1398 3667 0.5440 +1398 3672 0.6900 +1398 3673 0.6940 +1398 3674 0.6700 +1398 3675 0.8180 +1398 3676 0.6810 +1398 3678 0.7280 +1398 3679 0.6770 +1398 3680 0.6700 +1398 3681 0.6690 +1398 3682 0.6670 +1398 3683 0.6750 +1398 3684 0.6800 +1398 3685 0.7230 +1398 3687 0.6640 +1398 3688 0.7460 +1398 3689 0.6930 +1398 3690 0.7250 +1398 3691 0.6780 +1398 3693 0.7000 +1398 3694 0.6690 +1398 3695 0.6660 +1398 3696 0.6800 +1398 3702 0.4730 +1398 3791 0.8650 +1398 3815 0.8870 +1398 3927 0.4650 +1398 3937 0.5730 +1398 4067 0.7160 +1398 4068 0.4610 +1398 4170 0.4950 +1398 4193 0.4650 +1398 4214 0.9100 +1398 4233 0.9100 +1398 4240 0.5680 +1398 4478 0.5120 +1398 4609 0.5620 +1398 4690 0.9580 +1398 4739 0.9010 +1398 4803 0.6320 +1398 4804 0.7450 +1398 4868 0.6050 +1398 4914 0.7660 +1398 5048 0.7820 +1398 5154 0.5620 +1398 5155 0.5700 +1398 5156 0.9700 +1398 5159 0.8200 +1398 5176 0.4490 +1398 5290 0.7620 +1398 5291 0.7670 +1398 5293 0.7370 +1398 5295 0.9790 +1398 5296 0.9230 +1398 5306 0.7980 +1398 5335 0.5510 +1398 5338 0.4410 +1398 5413 0.4550 +1398 5478 0.4870 +1398 5536 0.4560 +1398 5594 0.6010 +1398 5595 0.4390 +1398 5599 0.9840 +1398 5601 0.9230 +1398 5625 0.4980 +1398 5706 0.4970 +1398 5747 0.9970 +1398 5753 0.6390 +1398 5770 0.7160 +1398 5781 0.7250 +1398 5782 0.6640 +1398 5829 0.9990 +1398 5861 0.4990 +1398 5867 0.4730 +1398 5877 0.8540 +1398 5879 0.6830 +1398 5906 0.6640 +1398 5908 0.6260 +1398 5912 0.5280 +1398 5921 0.6040 +1398 5922 0.4030 +1398 5923 0.5660 +1398 5979 0.6790 +1398 6237 0.4170 +1398 6310 0.5870 +1398 6416 0.9350 +1398 6461 0.7530 +1398 6464 0.9660 +1398 6517 0.5300 +1398 6654 0.9520 +1398 6655 0.7900 +1398 6714 0.9990 +1398 6776 0.6780 +1398 6777 0.4890 +1398 6850 0.7870 +1398 6899 0.4540 +1398 7010 0.6970 +1398 7094 0.7410 +1398 7157 0.4040 +1398 7159 0.5280 +1398 7409 0.7660 +1398 7410 0.4430 +1398 7414 0.7640 +1398 7430 0.5560 +1398 7450 0.5260 +1398 7454 0.5020 +1398 7514 0.5070 +1398 7525 0.6300 +1398 7529 0.5870 +1398 7531 0.7940 +1398 7535 0.8280 +1398 7804 0.5790 +1398 7827 0.4020 +1398 7965 0.4330 +1398 8218 0.4420 +1398 8412 0.6890 +1398 8440 0.7640 +1398 8471 0.8660 +1398 8495 0.5940 +1398 8503 0.9260 +1398 8515 0.6760 +1398 8516 0.6700 +1398 8578 0.7810 +1398 8651 0.6630 +1398 8835 0.4860 +1398 8936 0.6890 +1398 8976 0.7630 +1398 9046 0.5560 +1398 9047 0.5070 +1398 9051 0.4280 +1398 9181 0.4620 +1398 9306 0.6600 +1398 9459 0.5670 +1398 9564 0.9990 +1398 9610 0.4590 +1398 9732 0.5100 +1398 9743 0.8250 +1398 9788 0.4060 +1398 9844 0.9980 +1398 9846 0.6880 +1398 10006 0.7260 +1398 10152 0.6270 +1398 10163 0.6530 +1398 10188 0.4100 +1398 10278 0.7120 +1398 10298 0.5240 +1398 10458 0.6270 +1398 10519 0.5780 +1398 10580 0.4970 +1398 10657 0.7860 +1398 10787 0.6230 +1398 10810 0.5200 +1398 10818 0.9970 +1398 10898 0.4800 +1398 11183 0.8950 +1398 11184 0.9010 +1398 11336 0.5030 +1398 22801 0.6870 +1398 22919 0.4560 +1398 23163 0.7650 +1398 23191 0.5550 +1398 23210 0.4410 +1398 23243 0.5010 +1398 23265 0.5090 +1398 23433 0.9810 +1398 23513 0.4490 +1398 23552 0.5060 +1398 23607 0.5830 +1398 23624 0.7390 +1398 23644 0.4340 +1398 25759 0.5670 +1398 26999 0.5210 +1398 29801 0.4150 +1398 29928 0.5660 +1398 30011 0.7280 +1398 30837 0.4730 +1398 50807 0.9240 +1398 51162 0.4450 +1398 51438 0.7290 +1398 51454 0.8390 +1398 53916 0.4300 +1398 54518 0.6420 +1398 54532 0.6140 +1398 54584 0.5180 +1398 55243 0.4750 +1398 55616 0.6450 +1398 55715 0.6580 +1398 55750 0.4160 +1398 55764 0.5070 +1398 55816 0.6390 +1398 55845 0.5760 +1398 57091 0.5000 +1398 57498 0.9170 +1398 57539 0.9260 +1398 60412 0.4930 +1398 63916 0.9950 +1398 64092 0.5630 +1398 79767 0.9660 +1398 79834 0.7460 +1398 79890 0.5960 +1398 79930 0.5070 +1398 80005 0.8850 +1398 83605 0.4160 +1398 83660 0.5030 +1398 84466 0.5730 +1398 84941 0.5170 +1398 84959 0.4290 +1398 85021 0.5330 +1398 85440 0.7530 +1398 116985 0.5770 +1398 139716 0.4210 +1398 157285 0.4070 +1398 285489 0.7360 +1398 286753 0.7160 +1398 374739 0.7120 +1398 374872 0.4840 +1398 390714 0.4990 +1398 727857 0.6460 +1399 1436 0.7080 +1399 1445 0.4100 +1399 1499 0.5410 +1399 1600 0.6850 +1399 1656 0.5040 +1399 1793 0.9950 +1399 1794 0.6870 +1399 1795 0.5210 +1399 1796 0.8080 +1399 1856 0.4110 +1399 1956 0.9930 +1399 1969 0.7490 +1399 2046 0.5610 +1399 2056 0.7280 +1399 2057 0.8410 +1399 2060 0.5930 +1399 2064 0.7290 +1399 2065 0.6180 +1399 2066 0.6940 +1399 2120 0.4200 +1399 2125 0.6720 +1399 2185 0.9380 +1399 2260 0.8960 +1399 2261 0.7320 +1399 2263 0.7420 +1399 2264 0.7560 +1399 2268 0.5520 +1399 2321 0.8000 +1399 2324 0.6890 +1399 2335 0.5430 +1399 2533 0.4870 +1399 2534 0.8220 +1399 2549 0.9920 +1399 2812 0.6600 +1399 2885 0.9210 +1399 2889 0.9990 +1399 2928 0.5290 +1399 2934 0.4400 +1399 3055 0.8340 +1399 3059 0.9330 +1399 3082 0.5980 +1399 3188 0.4910 +1399 3265 0.6180 +1399 3454 0.4820 +1399 3480 0.9310 +1399 3635 0.4130 +1399 3643 0.7450 +1399 3655 0.6800 +1399 3672 0.6640 +1399 3673 0.6890 +1399 3674 0.6800 +1399 3675 0.6850 +1399 3676 0.6760 +1399 3678 0.7090 +1399 3679 0.6700 +1399 3680 0.6700 +1399 3681 0.6640 +1399 3682 0.6640 +1399 3683 0.6820 +1399 3684 0.6910 +1399 3685 0.6950 +1399 3687 0.6640 +1399 3688 0.7850 +1399 3689 0.6930 +1399 3690 0.6940 +1399 3691 0.6630 +1399 3693 0.6750 +1399 3694 0.7690 +1399 3695 0.6660 +1399 3696 0.6600 +1399 3717 0.6660 +1399 3791 0.7230 +1399 3815 0.9520 +1399 3845 0.6610 +1399 3927 0.5130 +1399 3937 0.7590 +1399 4067 0.8400 +1399 4068 0.4250 +1399 4214 0.9100 +1399 4233 0.8120 +1399 4352 0.4420 +1399 4478 0.4780 +1399 4609 0.4220 +1399 4690 0.4150 +1399 4739 0.9280 +1399 4803 0.5650 +1399 4804 0.6620 +1399 4893 0.6560 +1399 4914 0.6090 +1399 5154 0.5110 +1399 5155 0.5320 +1399 5156 0.8870 +1399 5159 0.8360 +1399 5290 0.7690 +1399 5291 0.7870 +1399 5293 0.8300 +1399 5295 0.9510 +1399 5296 0.8830 +1399 5297 0.4430 +1399 5413 0.6490 +1399 5594 0.6850 +1399 5595 0.4030 +1399 5599 0.9390 +1399 5601 0.9210 +1399 5625 0.5040 +1399 5728 0.4390 +1399 5747 0.9730 +1399 5781 0.9250 +1399 5829 0.9700 +1399 5867 0.4170 +1399 5877 0.6610 +1399 5879 0.5970 +1399 5894 0.5240 +1399 5898 0.4590 +1399 5902 0.4160 +1399 5906 0.7970 +1399 5908 0.6490 +1399 5923 0.5120 +1399 5976 0.4230 +1399 6279 0.4880 +1399 6416 0.9230 +1399 6464 0.9360 +1399 6654 0.9520 +1399 6655 0.6580 +1399 6714 0.9570 +1399 6774 0.5940 +1399 6776 0.9870 +1399 6777 0.9830 +1399 6778 0.4610 +1399 6850 0.7640 +1399 6899 0.8120 +1399 6943 0.4280 +1399 7010 0.6820 +1399 7297 0.8110 +1399 7408 0.7040 +1399 7409 0.8230 +1399 7414 0.6060 +1399 7430 0.5020 +1399 7454 0.8750 +1399 7456 0.8610 +1399 7514 0.5160 +1399 7525 0.7340 +1399 7529 0.5550 +1399 7535 0.7170 +1399 7804 0.4240 +1399 8216 0.4100 +1399 8440 0.6210 +1399 8471 0.6630 +1399 8500 0.4540 +1399 8503 0.8130 +1399 8515 0.6640 +1399 8516 0.6760 +1399 8646 0.4990 +1399 8651 0.5940 +1399 8660 0.6020 +1399 8829 0.4450 +1399 8976 0.6170 +1399 9046 0.6700 +1399 9242 0.4220 +1399 9306 0.4700 +1399 9342 0.4850 +1399 9564 0.9990 +1399 9647 0.5030 +1399 9665 0.6550 +1399 9732 0.4530 +1399 9743 0.6560 +1399 9844 0.9610 +1399 9846 0.7960 +1399 9927 0.4900 +1399 10006 0.6530 +1399 10016 0.4270 +1399 10018 0.5420 +1399 10163 0.6180 +1399 10451 0.4900 +1399 10580 0.4230 +1399 10818 0.9700 +1399 10957 0.4990 +1399 11183 0.8200 +1399 11184 0.8840 +1399 22801 0.6640 +1399 22929 0.4350 +1399 23163 0.5090 +1399 23381 0.4780 +1399 23433 0.9110 +1399 23499 0.4400 +1399 25932 0.4750 +1399 27071 0.4320 +1399 29760 0.4520 +1399 29801 0.4770 +1399 30011 0.5730 +1399 30837 0.4650 +1399 50618 0.4360 +1399 50807 0.8260 +1399 51438 0.6970 +1399 53916 0.4240 +1399 54584 0.7280 +1399 55802 0.4560 +1399 57498 0.9550 +1399 63916 0.9560 +1399 64092 0.6360 +1399 79890 0.4430 +1399 80005 0.8350 +1399 80153 0.5200 +1399 80764 0.5800 +1399 84959 0.4860 +1399 85440 0.5170 +1399 116985 0.4380 +1399 123169 0.4860 +1399 131566 0.4540 +1399 139716 0.4580 +1399 150209 0.4060 +1399 167227 0.4420 +1399 285489 0.6190 +1399 285761 0.5000 +1400 1723 0.7680 +1400 1727 0.5620 +1400 1806 0.7680 +1400 1808 0.8530 +1400 1809 0.9470 +1400 2121 0.4650 +1400 2162 0.4370 +1400 2232 0.4370 +1400 2242 0.6160 +1400 2534 0.6250 +1400 2562 0.5410 +1400 2596 0.5050 +1400 2618 0.5490 +1400 2932 0.5730 +1400 3064 0.4770 +1400 3664 0.4360 +1400 3814 0.6050 +1400 4131 0.4560 +1400 4487 0.4670 +1400 4728 0.4140 +1400 4904 0.5080 +1400 4935 0.6230 +1400 5361 0.7960 +1400 5362 0.6140 +1400 6335 0.7130 +1400 6383 0.4090 +1400 6624 0.4690 +1400 7372 0.7530 +1400 7408 0.4870 +1400 7431 0.4080 +1400 7481 0.4290 +1400 7753 0.4950 +1400 8312 0.5650 +1400 8829 0.7480 +1400 8851 0.5760 +1400 8936 0.5380 +1400 9094 0.4330 +1400 9118 0.4230 +1400 9615 0.7440 +1400 9935 0.4260 +1400 9962 0.6320 +1400 9963 0.6320 +1400 10020 0.9070 +1400 10371 0.8390 +1400 10478 0.4230 +1400 10570 0.5850 +1400 10963 0.7270 +1400 23314 0.5060 +1400 26985 0.4470 +1400 27065 0.7390 +1400 27185 0.4750 +1400 27341 0.4710 +1400 29117 0.4790 +1400 50861 0.4640 +1400 51026 0.6050 +1400 51167 0.5710 +1400 51531 0.4890 +1400 51700 0.5660 +1400 51706 0.5620 +1400 51733 0.4330 +1400 53407 0.6890 +1400 55143 0.4320 +1400 55156 0.4300 +1400 55186 0.4230 +1400 55351 0.6330 +1400 55363 0.4360 +1400 55558 0.6090 +1400 55748 0.4160 +1400 55800 0.4570 +1400 55821 0.4880 +1400 56896 0.4820 +1400 84275 0.4230 +1400 84735 0.4160 +1400 84830 0.4980 +1400 89894 0.6230 +1400 90865 0.4390 +1400 91584 0.7550 +1400 92106 0.5620 +1400 127845 0.6050 +1400 132884 0.7400 +1400 148811 0.4160 +1400 283985 0.4370 +1400 284076 0.6100 +1400 347853 0.4710 +1400 392255 0.4260 +1400 606495 0.5620 +1400 100526760 0.4160 +1400 104909134 0.4180 +1401 1435 0.5810 +1401 1437 0.6410 +1401 1440 0.7120 +1401 1471 0.8770 +1401 1493 0.4740 +1401 1508 0.5760 +1401 1524 0.4930 +1401 1576 0.4730 +1401 1636 0.8780 +1401 1675 0.4130 +1401 1773 0.4240 +1401 1803 0.5840 +1401 1906 0.6910 +1401 1950 0.4160 +1401 1956 0.4160 +1401 1991 0.6020 +1401 2026 0.5410 +1401 2056 0.7500 +1401 2091 0.4780 +1401 2099 0.4010 +1401 2147 0.9060 +1401 2152 0.8810 +1401 2155 0.7040 +1401 2157 0.5520 +1401 2158 0.5600 +1401 2160 0.4060 +1401 2167 0.4430 +1401 2168 0.4340 +1401 2169 0.5340 +1401 2170 0.4520 +1401 2204 0.7590 +1401 2209 0.7560 +1401 2212 0.9920 +1401 2213 0.6170 +1401 2219 0.8660 +1401 2220 0.8250 +1401 2243 0.5760 +1401 2244 0.6980 +1401 2247 0.4180 +1401 2252 0.4220 +1401 2266 0.4620 +1401 2267 0.4340 +1401 2331 0.4200 +1401 2335 0.8940 +1401 2475 0.4180 +1401 2597 0.4500 +1401 2638 0.7400 +1401 2641 0.5930 +1401 2691 0.4560 +1401 2692 0.4040 +1401 2740 0.4550 +1401 2805 0.4420 +1401 2806 0.7420 +1401 2833 0.5910 +1401 2867 0.4330 +1401 2873 0.4750 +1401 2874 0.4470 +1401 2875 0.9190 +1401 2877 0.6100 +1401 2878 0.6120 +1401 2880 0.6140 +1401 2882 0.6050 +1401 2908 0.4760 +1401 2919 0.4650 +1401 3021 0.4930 +1401 3075 0.9960 +1401 3078 0.5310 +1401 3082 0.4480 +1401 3091 0.4160 +1401 3123 0.5070 +1401 3146 0.5260 +1401 3156 0.6010 +1401 3162 0.4740 +1401 3240 0.9020 +1401 3250 0.5200 +1401 3263 0.4990 +1401 3308 0.5140 +1401 3383 0.7890 +1401 3426 0.5410 +1401 3439 0.6420 +1401 3440 0.5920 +1401 3441 0.5710 +1401 3442 0.5740 +1401 3443 0.5750 +1401 3444 0.5730 +1401 3445 0.5760 +1401 3446 0.5740 +1401 3447 0.5710 +1401 3448 0.5720 +1401 3449 0.5740 +1401 3451 0.5710 +1401 3452 0.5740 +1401 3456 0.5140 +1401 3458 0.7980 +1401 3479 0.7600 +1401 3484 0.6330 +1401 3486 0.6230 +1401 3487 0.5530 +1401 3552 0.8220 +1401 3553 0.8860 +1401 3554 0.6280 +1401 3557 0.8680 +1401 3558 0.7780 +1401 3559 0.6890 +1401 3562 0.4190 +1401 3565 0.8220 +1401 3567 0.6290 +1401 3569 0.9680 +1401 3570 0.7250 +1401 3572 0.4330 +1401 3574 0.6250 +1401 3576 0.8740 +1401 3578 0.5030 +1401 3586 0.8780 +1401 3596 0.6230 +1401 3600 0.5450 +1401 3603 0.4180 +1401 3605 0.7510 +1401 3606 0.8350 +1401 3620 0.4940 +1401 3627 0.7650 +1401 3630 0.8910 +1401 3667 0.4310 +1401 3674 0.4180 +1401 3676 0.5150 +1401 3684 0.4700 +1401 3716 0.4740 +1401 3717 0.4800 +1401 3725 0.4510 +1401 3827 0.7430 +1401 3929 0.7760 +1401 3931 0.6450 +1401 3934 0.6820 +1401 3952 0.9140 +1401 3953 0.4200 +1401 3958 0.5770 +1401 3965 0.4560 +1401 4018 0.7070 +1401 4023 0.5070 +1401 4049 0.4800 +1401 4057 0.6270 +1401 4151 0.7640 +1401 4153 0.9060 +1401 4162 0.4910 +1401 4210 0.5760 +1401 4240 0.4630 +1401 4282 0.5300 +1401 4283 0.6670 +1401 4306 0.4470 +1401 4311 0.4710 +1401 4312 0.5160 +1401 4313 0.6640 +1401 4314 0.6310 +1401 4317 0.5140 +1401 4318 0.8060 +1401 4319 0.4390 +1401 4353 0.8170 +1401 4524 0.5060 +1401 4684 0.5120 +1401 4790 0.5960 +1401 4846 0.6150 +1401 4878 0.5410 +1401 4879 0.8710 +1401 4948 0.6290 +1401 4958 0.4420 +1401 4973 0.9650 +1401 5004 0.8870 +1401 5005 0.8750 +1401 5045 0.4210 +1401 5054 0.7930 +1401 5069 0.7190 +1401 5125 0.5540 +1401 5133 0.4370 +1401 5175 0.4340 +1401 5196 0.6800 +1401 5197 0.4070 +1401 5199 0.5590 +1401 5216 0.4180 +1401 5228 0.4460 +1401 5265 0.7310 +1401 5286 0.7750 +1401 5320 0.5100 +1401 5327 0.7230 +1401 5328 0.4110 +1401 5340 0.8070 +1401 5345 0.4960 +1401 5352 0.4100 +1401 5443 0.6050 +1401 5444 0.6710 +1401 5465 0.4790 +1401 5468 0.5780 +1401 5473 0.5600 +1401 5478 0.5110 +1401 5539 0.5030 +1401 5553 0.4970 +1401 5595 0.4190 +1401 5617 0.5670 +1401 5644 0.4870 +1401 5648 0.4370 +1401 5657 0.8190 +1401 5741 0.8190 +1401 5743 0.5960 +1401 5788 0.4750 +1401 5806 0.4650 +1401 5829 0.4260 +1401 5919 0.6840 +1401 5950 0.7970 +1401 5972 0.7740 +1401 6194 0.4100 +1401 6280 0.4120 +1401 6283 0.5810 +1401 6285 0.5070 +1401 6288 0.8540 +1401 6289 0.8110 +1401 6291 0.7520 +1401 6319 0.4830 +1401 6347 0.8160 +1401 6348 0.7590 +1401 6351 0.5820 +1401 6354 0.5650 +1401 6356 0.5230 +1401 6364 0.6350 +1401 6373 0.5910 +1401 6376 0.4320 +1401 6382 0.4180 +1401 6401 0.7880 +1401 6402 0.4370 +1401 6403 0.7380 +1401 6441 0.6770 +1401 6452 0.4930 +1401 6462 0.7320 +1401 6476 0.4200 +1401 6480 0.4240 +1401 6517 0.4380 +1401 6524 0.5160 +1401 6625 0.5700 +1401 6696 0.5300 +1401 6714 0.5610 +1401 6737 0.5250 +1401 6741 0.4330 +1401 6774 0.5740 +1401 6818 0.4010 +1401 7035 0.4260 +1401 7037 0.6400 +1401 7038 0.5940 +1401 7040 0.5730 +1401 7043 0.4650 +1401 7056 0.7530 +1401 7066 0.5630 +1401 7076 0.5710 +1401 7094 0.4340 +1401 7097 0.5710 +1401 7098 0.4270 +1401 7099 0.6740 +1401 7113 0.6080 +1401 7124 0.9380 +1401 7132 0.6970 +1401 7133 0.5990 +1401 7137 0.7910 +1401 7139 0.6670 +1401 7157 0.4350 +1401 7173 0.5700 +1401 7276 0.7920 +1401 7341 0.4040 +1401 7345 0.4510 +1401 7412 0.7740 +1401 7414 0.4630 +1401 7448 0.6460 +1401 7450 0.7720 +1401 7498 0.5070 +1401 7791 0.4140 +1401 7837 0.5510 +1401 7941 0.7150 +1401 8074 0.6120 +1401 8290 0.4930 +1401 8356 0.4930 +1401 8399 0.4620 +1401 8547 0.4490 +1401 8600 0.5300 +1401 8743 0.4460 +1401 8858 0.5620 +1401 8972 0.4190 +1401 9051 0.4570 +1401 9172 0.4800 +1401 9332 0.6040 +1401 9365 0.4180 +1401 9370 0.8820 +1401 9518 0.6450 +1401 10135 0.5830 +1401 10544 0.5620 +1401 10673 0.4300 +1401 10747 0.5190 +1401 10877 0.9850 +1401 10878 0.6000 +1401 10894 0.4520 +1401 11082 0.4570 +1401 11093 0.5710 +1401 23411 0.4240 +1401 26291 0.6530 +1401 27178 0.4580 +1401 29126 0.5060 +1401 50616 0.5680 +1401 50943 0.5380 +1401 51129 0.4760 +1401 51156 0.4010 +1401 51284 0.5400 +1401 51738 0.5930 +1401 54106 0.4020 +1401 54210 0.5700 +1401 55291 0.4160 +1401 55600 0.5400 +1401 56729 0.7710 +1401 57509 0.4350 +1401 57817 0.7890 +1401 58191 0.4610 +1401 59272 0.8760 +1401 64135 0.4140 +1401 64805 0.4340 +1401 79841 0.5970 +1401 80781 0.4290 +1401 81494 0.8730 +1401 83660 0.4140 +1401 84639 0.4070 +1401 84666 0.7640 +1401 84706 0.8750 +1401 84871 0.5250 +1401 90865 0.5100 +1401 112744 0.4210 +1401 114548 0.7070 +1401 114757 0.6960 +1401 116519 0.4230 +1401 116844 0.5060 +1401 126961 0.4260 +1401 133688 0.4860 +1401 137902 0.5510 +1401 145264 0.4510 +1401 167127 0.4680 +1401 169355 0.4560 +1401 252995 0.6080 +1401 255738 0.5790 +1401 257202 0.6080 +1401 387715 0.5490 +1401 390714 0.4110 +1401 440093 0.4930 +1401 440686 0.4930 +1401 493869 0.6050 +1401 653604 0.4930 +1401 100289462 0.4300 +1401 100528017 0.7500 +1404 1462 0.4460 +1404 1634 0.4440 +1404 1641 0.4010 +1404 2331 0.4500 +1404 2628 0.6080 +1404 3036 0.4170 +1404 3037 0.4820 +1404 3038 0.6250 +1404 3549 0.5850 +1404 4060 0.6380 +1404 4146 0.5290 +1404 4148 0.6050 +1404 5549 0.6060 +1404 5803 0.4350 +1404 6535 0.7270 +1404 6662 0.4660 +1404 8483 0.4770 +1404 9507 0.4010 +1404 10085 0.7120 +1404 10631 0.4680 +1404 11061 0.4010 +1404 11107 0.4380 +1404 54829 0.4030 +1404 63827 0.4600 +1404 148113 0.4180 +1404 284217 0.4770 +1404 388610 0.4070 +1406 1482 0.4300 +1406 1995 0.4510 +1406 2648 0.5990 +1406 2652 0.6230 +1406 2779 0.7030 +1406 2780 0.6500 +1406 2792 0.6820 +1406 2793 0.4290 +1406 2916 0.5020 +1406 2978 0.4590 +1406 2979 0.7470 +1406 3000 0.8820 +1406 3175 0.4180 +1406 3420 0.5250 +1406 3614 0.8260 +1406 3617 0.4580 +1406 3670 0.5350 +1406 3769 0.4470 +1406 4094 0.4920 +1406 4209 0.7850 +1406 4760 0.7620 +1406 4901 0.9900 +1406 4990 0.5600 +1406 5071 0.4600 +1406 5132 0.4440 +1406 5145 0.7840 +1406 5146 0.6000 +1406 5148 0.6430 +1406 5149 0.6580 +1406 5158 0.8480 +1406 5457 0.4950 +1406 5458 0.6550 +1406 5578 0.4340 +1406 5949 0.7940 +1406 5956 0.4900 +1406 5957 0.9140 +1406 5961 0.8130 +1406 6010 0.9370 +1406 6011 0.5390 +1406 6017 0.6410 +1406 6094 0.7380 +1406 6096 0.6300 +1406 6100 0.7290 +1406 6101 0.4740 +1406 6103 0.7560 +1406 6121 0.8750 +1406 6247 0.4670 +1406 6258 0.4850 +1406 6295 0.6060 +1406 6314 0.9220 +1406 6469 0.4360 +1406 6496 0.6390 +1406 6657 0.4540 +1406 6671 0.6180 +1406 7068 0.5560 +1406 7101 0.6670 +1406 7287 0.8630 +1406 7399 0.5240 +1406 7439 0.7900 +1406 8815 0.6900 +1406 8842 0.5800 +1406 8850 0.4670 +1406 9094 0.4490 +1406 9129 0.6810 +1406 9227 0.7750 +1406 9247 0.4430 +1406 9572 0.6200 +1406 9626 0.5390 +1406 9657 0.5550 +1406 9670 0.5990 +1406 10002 0.9720 +1406 10210 0.6650 +1406 10461 0.7110 +1406 10580 0.4060 +1406 10594 0.6830 +1406 11030 0.4390 +1406 22999 0.4660 +1406 23020 0.5830 +1406 23322 0.4520 +1406 23746 0.9280 +1406 25794 0.8040 +1406 26121 0.7270 +1406 50939 0.6630 +1406 54714 0.6380 +1406 55812 0.8180 +1406 55975 0.6030 +1406 57010 0.6070 +1406 57096 0.8590 +1406 58158 0.5470 +1406 58473 0.6490 +1406 63973 0.4230 +1406 64218 0.6960 +1406 64802 0.4510 +1406 80184 0.7730 +1406 83394 0.4660 +1406 84140 0.7970 +1406 84839 0.4990 +1406 84922 0.8640 +1406 92211 0.5210 +1406 93107 0.7800 +1406 94137 0.4910 +1406 94233 0.4630 +1406 115861 0.4170 +1406 121643 0.5290 +1406 127002 0.7910 +1406 130557 0.6350 +1406 130951 0.4200 +1406 131890 0.4730 +1406 145226 0.8560 +1406 157657 0.5060 +1406 167691 0.7730 +1406 169522 0.5460 +1406 220202 0.6790 +1406 222255 0.7880 +1406 256297 0.4010 +1406 338917 0.4530 +1406 339302 0.4560 +1406 343035 0.8090 +1406 344658 0.4060 +1406 346007 0.7190 +1406 375298 0.7320 +1406 388939 0.7050 +1406 401124 0.4070 +1406 647589 0.4040 +1406 768206 0.6410 +1407 1408 0.9990 +1407 1453 0.9930 +1407 1454 0.9990 +1407 1457 0.4940 +1407 1460 0.7220 +1407 1628 0.6930 +1407 1642 0.5400 +1407 1917 0.4210 +1407 2033 0.5670 +1407 2034 0.5240 +1407 2140 0.4230 +1407 2194 0.4190 +1407 2247 0.4010 +1407 2308 0.7780 +1407 2353 0.5500 +1407 2597 0.4120 +1407 2641 0.5370 +1407 2642 0.4590 +1407 2908 0.9140 +1407 2922 0.5150 +1407 2932 0.5170 +1407 2998 0.4420 +1407 3060 0.4720 +1407 3065 0.6120 +1407 3131 0.6290 +1407 3172 0.5430 +1407 3630 0.4470 +1407 3952 0.4030 +1407 4528 0.4370 +1407 4543 0.4320 +1407 4544 0.4610 +1407 4609 0.4030 +1407 4783 0.9450 +1407 4792 0.4760 +1407 4841 0.5290 +1407 4862 0.9990 +1407 5166 0.4570 +1407 5187 0.9980 +1407 5243 0.4060 +1407 5465 0.6730 +1407 5468 0.4060 +1407 5499 0.4480 +1407 5500 0.4950 +1407 5501 0.4700 +1407 5519 0.4170 +1407 5528 0.4550 +1407 5529 0.4070 +1407 5554 0.9400 +1407 5555 0.9350 +1407 5562 0.9230 +1407 5563 0.9230 +1407 5564 0.9200 +1407 5565 0.9230 +1407 5571 0.9130 +1407 5578 0.4560 +1407 6095 0.9350 +1407 6096 0.9220 +1407 6097 0.8710 +1407 6233 0.5220 +1407 6500 0.7000 +1407 6648 0.4060 +1407 6772 0.4060 +1407 6776 0.4360 +1407 6927 0.4570 +1407 7008 0.7220 +1407 7311 0.4990 +1407 7314 0.5220 +1407 7316 0.5360 +1407 7432 0.5050 +1407 7434 0.7430 +1407 7465 0.4820 +1407 7818 0.4290 +1407 7874 0.6350 +1407 8451 0.5650 +1407 8454 0.7450 +1407 8553 0.9690 +1407 8714 0.5880 +1407 8863 0.9990 +1407 8864 0.9990 +1407 8896 0.4200 +1407 8914 0.9970 +1407 8945 0.8710 +1407 9099 0.5300 +1407 9572 0.9760 +1407 9575 0.9990 +1407 9975 0.9670 +1407 10135 0.5490 +1407 10514 0.5090 +1407 10891 0.4460 +1407 11011 0.4690 +1407 23309 0.5400 +1407 23411 0.6970 +1407 23475 0.5800 +1407 25819 0.5450 +1407 26224 0.9990 +1407 29122 0.4420 +1407 51085 0.4110 +1407 51422 0.9080 +1407 51738 0.4080 +1407 51816 0.4250 +1407 53340 0.4320 +1407 53632 0.9180 +1407 54059 0.4290 +1407 54826 0.4180 +1407 54962 0.4300 +1407 55070 0.7430 +1407 55294 0.4840 +1407 55511 0.4470 +1407 56938 0.8640 +1407 60675 0.4180 +1407 79365 0.9780 +1407 80119 0.4710 +1407 90737 0.5410 +1407 94233 0.6970 +1407 139135 0.5310 +1407 148523 0.5850 +1407 150483 0.6580 +1407 221391 0.4230 +1407 222642 0.4760 +1407 344561 0.4300 +1407 729238 0.4470 +1407 102800317 0.9610 +1408 1453 0.9840 +1408 1454 0.9970 +1408 1457 0.4860 +1408 1460 0.4980 +1408 1487 0.5050 +1408 1628 0.6430 +1408 1642 0.5330 +1408 2033 0.5450 +1408 2034 0.4830 +1408 2146 0.6420 +1408 2353 0.5180 +1408 2597 0.4020 +1408 2641 0.5580 +1408 2908 0.8520 +1408 2922 0.4470 +1408 2932 0.4920 +1408 3060 0.4370 +1408 3064 0.4050 +1408 3131 0.6030 +1408 3320 0.5010 +1408 3326 0.4950 +1408 3630 0.4310 +1408 3836 0.4990 +1408 3839 0.5100 +1408 3952 0.4070 +1408 3960 0.4740 +1408 4255 0.4160 +1408 4528 0.4290 +1408 4544 0.6090 +1408 4609 0.4030 +1408 4783 0.8670 +1408 4807 0.4210 +1408 4862 0.9980 +1408 4952 0.4350 +1408 5152 0.4310 +1408 5166 0.4630 +1408 5187 0.9980 +1408 5243 0.4420 +1408 5367 0.4730 +1408 5465 0.4040 +1408 5499 0.4630 +1408 5500 0.4580 +1408 5501 0.4570 +1408 5519 0.4140 +1408 5536 0.5660 +1408 5554 0.8910 +1408 5555 0.8850 +1408 5562 0.9200 +1408 5563 0.9220 +1408 5564 0.9120 +1408 5565 0.9140 +1408 5571 0.9050 +1408 6095 0.8370 +1408 6096 0.8480 +1408 6097 0.7000 +1408 6233 0.5220 +1408 6500 0.7070 +1408 6648 0.4060 +1408 6927 0.4570 +1408 7008 0.7240 +1408 7124 0.5290 +1408 7311 0.5090 +1408 7314 0.5220 +1408 7316 0.5460 +1408 7432 0.4180 +1408 7434 0.4410 +1408 7465 0.4690 +1408 7818 0.4290 +1408 8454 0.5310 +1408 8553 0.8820 +1408 8863 0.9990 +1408 8864 0.9990 +1408 8914 0.9960 +1408 8945 0.8620 +1408 9572 0.9490 +1408 9575 0.9990 +1408 9975 0.9010 +1408 10135 0.6350 +1408 10519 0.9960 +1408 23411 0.5130 +1408 23475 0.4780 +1408 25819 0.5450 +1408 26224 0.9990 +1408 51422 0.9040 +1408 53632 0.9180 +1408 54059 0.4290 +1408 54962 0.4030 +1408 55070 0.7120 +1408 55294 0.5880 +1408 55343 0.5130 +1408 56938 0.8440 +1408 60675 0.4050 +1408 79365 0.9480 +1408 80119 0.4440 +1408 80312 0.5250 +1408 90737 0.4750 +1408 94233 0.6940 +1408 117286 0.4020 +1408 139135 0.5600 +1408 148523 0.7550 +1408 150483 0.6940 +1408 222235 0.4730 +1408 222642 0.4760 +1408 388125 0.4780 +1408 102800317 0.8700 +1409 1410 0.9960 +1409 1411 0.9870 +1409 1412 0.8170 +1409 1413 0.9090 +1409 1414 0.8600 +1409 1415 0.9840 +1409 1417 0.8860 +1409 1418 0.9380 +1409 1419 0.8110 +1409 1420 0.9190 +1409 1421 0.9160 +1409 1427 0.9600 +1409 1969 0.5180 +1409 2109 0.4260 +1409 2301 0.6120 +1409 2572 0.4040 +1409 2584 0.5190 +1409 2651 0.5770 +1409 2700 0.8130 +1409 2703 0.8280 +1409 3299 0.6960 +1409 3308 0.4050 +1409 3315 0.6840 +1409 3982 0.8640 +1409 4094 0.4700 +1409 4284 0.7570 +1409 4956 0.6100 +1409 5080 0.4940 +1409 5309 0.6510 +1409 7314 0.4900 +1409 7466 0.4440 +1409 8419 0.7430 +1409 9531 0.4480 +1409 10362 0.4310 +1409 23424 0.6330 +1409 26003 0.6090 +1409 27129 0.6760 +1409 51557 0.4800 +1409 58498 0.4240 +1409 79443 0.6430 +1409 80036 0.4470 +1409 94086 0.6980 +1409 128866 0.4750 +1409 149281 0.4790 +1409 155051 0.5830 +1409 283953 0.6780 +1409 387700 0.5050 +1409 402635 0.4120 +1409 728458 0.4530 +1409 101060233 0.5170 +1410 1411 0.9110 +1410 1412 0.7380 +1410 1413 0.8110 +1410 1414 0.8230 +1410 1415 0.9390 +1410 1417 0.8200 +1410 1418 0.5750 +1410 1419 0.6670 +1410 1420 0.7930 +1410 1421 0.9240 +1410 1427 0.9240 +1410 1431 0.7340 +1410 1499 0.6340 +1410 1674 0.4860 +1410 1756 0.4590 +1410 1969 0.4150 +1410 2301 0.4470 +1410 2318 0.7270 +1410 2651 0.4030 +1410 2670 0.7810 +1410 2700 0.6860 +1410 2703 0.6870 +1410 2934 0.4360 +1410 3065 0.4600 +1410 3281 0.4300 +1410 3297 0.6870 +1410 3299 0.5940 +1410 3301 0.4590 +1410 3303 0.6900 +1410 3304 0.6870 +1410 3305 0.6300 +1410 3308 0.6240 +1410 3309 0.5120 +1410 3310 0.4650 +1410 3312 0.6590 +1410 3313 0.4330 +1410 3315 0.9400 +1410 3316 0.9210 +1410 3320 0.7260 +1410 3326 0.7180 +1410 3337 0.7300 +1410 3736 0.4070 +1410 3747 0.4160 +1410 3982 0.5840 +1410 4000 0.6350 +1410 4069 0.4870 +1410 4191 0.5790 +1410 4284 0.6370 +1410 4607 0.4550 +1410 4625 0.5050 +1410 4633 0.4260 +1410 4634 0.5590 +1410 4714 0.4010 +1410 4741 0.6220 +1410 4747 0.4480 +1410 4956 0.4240 +1410 5309 0.6850 +1410 5339 0.6480 +1410 5522 0.4330 +1410 5621 0.4280 +1410 5803 0.4690 +1410 5813 0.4040 +1410 6331 0.4700 +1410 6423 0.4050 +1410 6444 0.4950 +1410 6506 0.6710 +1410 6613 0.4100 +1410 6622 0.8630 +1410 6641 0.4540 +1410 6647 0.6390 +1410 6657 0.4380 +1410 6900 0.4330 +1410 7137 0.4050 +1410 7139 0.4010 +1410 7157 0.7980 +1410 7159 0.4650 +1410 7168 0.4740 +1410 7273 0.7920 +1410 7314 0.6930 +1410 7416 0.5530 +1410 7431 0.6840 +1410 7534 0.4830 +1410 8048 0.5220 +1410 8402 0.4330 +1410 8404 0.4150 +1410 8419 0.6640 +1410 8557 0.4920 +1410 8604 0.4320 +1410 9499 0.8570 +1410 9531 0.9440 +1410 9656 0.4390 +1410 10049 0.5510 +1410 10165 0.4410 +1410 11080 0.4470 +1410 11155 0.7360 +1410 11170 0.4420 +1410 22883 0.4340 +1410 23424 0.4170 +1410 26353 0.7540 +1410 27063 0.4480 +1410 27129 0.4140 +1410 27166 0.4220 +1410 27295 0.4540 +1410 50651 0.4210 +1410 51778 0.5300 +1410 57152 0.4310 +1410 57158 0.4270 +1410 57190 0.5630 +1410 57523 0.4790 +1410 58529 0.5720 +1410 79026 0.4210 +1410 81570 0.4180 +1410 81606 0.5500 +1410 84309 0.4350 +1410 84665 0.6370 +1410 94086 0.5700 +1410 125972 0.4290 +1410 126393 0.5250 +1410 155051 0.4420 +1410 165257 0.4140 +1410 283953 0.4250 +1410 284119 0.5730 +1410 440829 0.4300 +1411 1412 0.6190 +1411 1413 0.4580 +1411 1414 0.8640 +1411 1415 0.6760 +1411 1417 0.7860 +1411 1419 0.4840 +1411 1427 0.4450 +1411 1428 0.5480 +1411 1440 0.5700 +1411 1453 0.4260 +1411 1969 0.4440 +1411 2064 0.4040 +1411 2301 0.5610 +1411 2584 0.7740 +1411 2651 0.4790 +1411 2700 0.8470 +1411 2703 0.8170 +1411 2779 0.4350 +1411 2780 0.5240 +1411 3299 0.6760 +1411 3982 0.7240 +1411 4094 0.4480 +1411 4284 0.6200 +1411 4353 0.4410 +1411 4763 0.4660 +1411 4804 0.4890 +1411 5146 0.4890 +1411 5149 0.4800 +1411 5309 0.6500 +1411 5372 0.4260 +1411 6094 0.4500 +1411 7067 0.6090 +1411 7083 0.5040 +1411 7439 0.4730 +1411 8419 0.7770 +1411 9187 0.4500 +1411 11249 0.4090 +1411 23424 0.4640 +1411 23746 0.4080 +1411 27129 0.4090 +1411 30010 0.4580 +1411 30833 0.4970 +1411 51557 0.5180 +1411 94086 0.4690 +1411 126393 0.4240 +1411 128866 0.6050 +1411 283953 0.5970 +1411 402635 0.4900 +1412 1414 0.4130 +1412 1415 0.5870 +1412 1417 0.4060 +1412 1419 0.4690 +1412 1427 0.4530 +1412 2301 0.4710 +1412 2566 0.4140 +1412 2641 0.4670 +1412 2700 0.6010 +1412 2703 0.5790 +1412 3927 0.5910 +1412 3982 0.5270 +1412 5309 0.4220 +1412 7311 0.4100 +1412 8419 0.5690 +1412 8941 0.4340 +1412 23059 0.4130 +1412 51557 0.5270 +1412 54738 0.5090 +1412 57795 0.4070 +1412 84549 0.4340 +1412 255101 0.6370 +1412 402635 0.5650 +1413 1414 0.6920 +1413 1643 0.4690 +1413 1969 0.4610 +1413 2301 0.5960 +1413 2651 0.5300 +1413 2700 0.7620 +1413 2703 0.7630 +1413 3299 0.6300 +1413 3982 0.7490 +1413 4094 0.4470 +1413 4284 0.5740 +1413 4771 0.4140 +1413 5080 0.4300 +1413 5149 0.4650 +1413 5309 0.6360 +1413 8419 0.7390 +1413 8451 0.4360 +1413 23424 0.4590 +1413 51557 0.5860 +1413 55891 0.4240 +1413 79443 0.4010 +1413 79959 0.5460 +1413 128866 0.6260 +1413 161436 0.4200 +1413 283953 0.6400 +1413 402635 0.6240 +1414 1428 0.6380 +1414 1453 0.4510 +1414 1969 0.5610 +1414 2301 0.5590 +1414 2584 0.5510 +1414 2651 0.5820 +1414 2700 0.9230 +1414 2703 0.9270 +1414 3163 0.4300 +1414 3299 0.7270 +1414 3982 0.7330 +1414 4094 0.4960 +1414 4284 0.6730 +1414 4627 0.4430 +1414 4653 0.6960 +1414 5080 0.4590 +1414 5309 0.7880 +1414 5372 0.4770 +1414 5373 0.4310 +1414 5830 0.5490 +1414 6453 0.5350 +1414 6751 0.4250 +1414 7466 0.4550 +1414 8419 0.9470 +1414 23094 0.4050 +1414 23424 0.5210 +1414 50618 0.5400 +1414 51557 0.5000 +1414 79443 0.6460 +1414 83889 0.4500 +1414 84881 0.4110 +1414 128866 0.6250 +1414 283953 0.7510 +1414 402635 0.5070 +1414 102800317 0.4390 +1415 1417 0.5170 +1415 1420 0.6270 +1415 1427 0.6190 +1415 1969 0.5270 +1415 2301 0.6030 +1415 2584 0.6160 +1415 2651 0.6880 +1415 2700 0.9290 +1415 2703 0.9360 +1415 3299 0.6970 +1415 3315 0.7670 +1415 3316 0.7250 +1415 3982 0.7050 +1415 4094 0.6680 +1415 4284 0.7730 +1415 5080 0.4320 +1415 5309 0.8250 +1415 6295 0.4120 +1415 7466 0.4690 +1415 8419 0.9190 +1415 8988 0.6290 +1415 23424 0.5510 +1415 51095 0.8030 +1415 51557 0.4020 +1415 79443 0.6240 +1415 79822 0.4040 +1415 80036 0.4240 +1415 128866 0.6350 +1415 283953 0.7490 +1415 387700 0.4860 +1415 402635 0.5230 +1417 1427 0.5490 +1417 1428 0.4250 +1417 1969 0.5700 +1417 2301 0.5950 +1417 2475 0.4570 +1417 2584 0.5250 +1417 2651 0.8170 +1417 2700 0.7740 +1417 2703 0.7930 +1417 2780 0.4560 +1417 3299 0.7060 +1417 3982 0.7790 +1417 4094 0.4540 +1417 4284 0.5260 +1417 4771 0.4200 +1417 5080 0.4120 +1417 5309 0.6340 +1417 6453 0.5350 +1417 7248 0.6880 +1417 7249 0.7050 +1417 8419 0.7730 +1417 11234 0.4170 +1417 23268 0.4460 +1417 23424 0.5960 +1417 50618 0.5400 +1417 51095 0.7550 +1417 51557 0.4840 +1417 64374 0.4150 +1417 79443 0.5070 +1417 83889 0.4500 +1417 85379 0.4350 +1417 90167 0.5000 +1417 94137 0.4300 +1417 128866 0.5920 +1417 283953 0.6640 +1417 402635 0.5560 +1418 2301 0.4530 +1418 2584 0.4550 +1418 2651 0.5050 +1418 2700 0.6320 +1418 2703 0.6680 +1418 3299 0.4440 +1418 3315 0.4760 +1418 3316 0.4670 +1418 3982 0.6640 +1418 4284 0.4940 +1418 4632 0.6740 +1418 5270 0.4370 +1418 5309 0.4760 +1418 8419 0.6150 +1418 8988 0.4070 +1418 9074 0.4150 +1418 23424 0.4110 +1418 51095 0.6500 +1418 51557 0.4030 +1418 58511 0.4340 +1418 283953 0.5720 +1418 389073 0.4270 +1418 402635 0.4890 +1419 1420 0.6960 +1419 2651 0.4240 +1419 2700 0.6500 +1419 2703 0.6410 +1419 3315 0.4650 +1419 3316 0.5220 +1419 3982 0.6770 +1419 5149 0.4670 +1419 8419 0.5870 +1419 8988 0.4420 +1419 9074 0.4920 +1419 11249 0.4170 +1419 51095 0.7620 +1419 57795 0.4030 +1419 283953 0.4640 +1419 402635 0.4580 +1420 1435 0.4460 +1420 1437 0.5880 +1420 1440 0.5120 +1420 1442 0.4020 +1420 1443 0.4060 +1420 1950 0.5070 +1420 2247 0.4440 +1420 2253 0.4800 +1420 2335 0.4470 +1420 2353 0.5250 +1420 2597 0.6000 +1420 2651 0.4020 +1420 2689 0.4020 +1420 2700 0.8000 +1420 2703 0.8080 +1420 2826 0.5290 +1420 2919 0.5730 +1420 2920 0.4740 +1420 3082 0.5390 +1420 3315 0.7200 +1420 3316 0.7560 +1420 3383 0.4310 +1420 3439 0.5080 +1420 3456 0.5070 +1420 3458 0.6400 +1420 3485 0.4160 +1420 3552 0.5070 +1420 3553 0.6230 +1420 3558 0.5530 +1420 3562 0.4030 +1420 3565 0.5960 +1420 3567 0.4980 +1420 3569 0.7330 +1420 3574 0.4160 +1420 3576 0.6000 +1420 3579 0.5300 +1420 3586 0.5990 +1420 3596 0.5450 +1420 3600 0.4180 +1420 3605 0.5090 +1420 3606 0.4470 +1420 3627 0.6090 +1420 3630 0.4910 +1420 3684 0.4680 +1420 3982 0.5630 +1420 4283 0.5070 +1420 4284 0.5600 +1420 4318 0.4320 +1420 4609 0.4180 +1420 5080 0.4550 +1420 5241 0.4140 +1420 5309 0.6480 +1420 5788 0.4460 +1420 5961 0.4020 +1420 6346 0.4500 +1420 6347 0.7610 +1420 6348 0.7540 +1420 6351 0.5970 +1420 6354 0.5400 +1420 6355 0.4560 +1420 6356 0.5490 +1420 6357 0.4460 +1420 6361 0.5080 +1420 6362 0.4340 +1420 6363 0.4340 +1420 6364 0.5450 +1420 6366 0.6390 +1420 6367 0.7290 +1420 6369 0.4490 +1420 6373 0.4480 +1420 6374 0.4480 +1420 6376 0.4030 +1420 6387 0.5070 +1420 6402 0.5940 +1420 6772 0.4180 +1420 6774 0.4180 +1420 7040 0.4730 +1420 7097 0.4060 +1420 7098 0.4050 +1420 7099 0.4830 +1420 7113 0.4030 +1420 7124 0.6450 +1420 7157 0.5460 +1420 7837 0.5780 +1420 7852 0.4180 +1420 8419 0.8000 +1420 8822 0.4250 +1420 8988 0.6210 +1420 9034 0.8380 +1420 9074 0.4240 +1420 10344 0.4720 +1420 10563 0.4120 +1420 10803 0.5210 +1420 23586 0.4160 +1420 51095 0.6390 +1420 51554 0.5550 +1420 56477 0.7250 +1420 59272 0.5070 +1420 137902 0.5780 +1420 140683 0.4090 +1420 283953 0.4250 +1420 389073 0.4100 +1421 1969 0.4600 +1421 2301 0.5410 +1421 2584 0.6670 +1421 2651 0.7480 +1421 2700 0.9310 +1421 2703 0.9380 +1421 3299 0.7160 +1421 3561 0.4310 +1421 3982 0.7740 +1421 4094 0.7090 +1421 4284 0.6520 +1421 5080 0.6310 +1421 5309 0.8480 +1421 7466 0.4810 +1421 8419 0.9370 +1421 9074 0.4230 +1421 9187 0.5140 +1421 9209 0.4180 +1421 23424 0.4870 +1421 51095 0.8320 +1421 51557 0.4890 +1421 51705 0.6100 +1421 79443 0.6160 +1421 91624 0.4830 +1421 128866 0.6160 +1421 283953 0.7440 +1421 387700 0.4440 +1421 389073 0.4510 +1421 402635 0.4490 +1427 1969 0.4490 +1427 2301 0.6420 +1427 2651 0.4730 +1427 2700 0.9210 +1427 2703 0.9220 +1427 2796 0.4780 +1427 3299 0.7050 +1427 3315 0.6350 +1427 3316 0.6440 +1427 3561 0.5330 +1427 3906 0.4790 +1427 3982 0.6940 +1427 4094 0.5070 +1427 4284 0.7950 +1427 5080 0.6560 +1427 5309 0.8020 +1427 8419 0.9250 +1427 8988 0.5840 +1427 23424 0.5790 +1427 51557 0.4710 +1427 58511 0.4840 +1427 65981 0.4390 +1427 79443 0.4630 +1427 80199 0.5140 +1427 91966 0.6100 +1427 128866 0.6050 +1427 283953 0.6390 +1427 387700 0.4110 +1427 402635 0.5320 +1428 1453 0.4950 +1428 1454 0.4240 +1428 1610 0.4450 +1428 2707 0.4710 +1428 3163 0.4710 +1428 4627 0.5270 +1428 4629 0.4010 +1428 4647 0.4040 +1428 4929 0.4110 +1428 4942 0.4280 +1428 5315 0.4340 +1428 5372 0.5070 +1428 5373 0.4400 +1428 5625 0.4430 +1428 5816 0.4310 +1428 6096 0.4080 +1428 6567 0.5550 +1428 6751 0.4410 +1428 6752 0.4340 +1428 6753 0.4060 +1428 6755 0.4200 +1428 7276 0.4790 +1428 8528 0.4030 +1428 8914 0.4510 +1428 9104 0.4300 +1428 9132 0.4140 +1428 9611 0.4030 +1428 9946 0.5380 +1428 51166 0.4080 +1428 51168 0.4250 +1428 51268 0.4970 +1428 51557 0.4360 +1428 53919 0.4260 +1428 55079 0.4190 +1428 55658 0.5130 +1428 57473 0.4090 +1428 57585 0.4420 +1428 58510 0.5110 +1428 64699 0.4310 +1428 79081 0.5570 +1428 79814 0.7860 +1428 80764 0.4180 +1428 85443 0.4520 +1428 112849 0.9400 +1428 117247 0.5100 +1428 117531 0.4700 +1428 132949 0.4070 +1428 246213 0.4580 +1428 259236 0.4300 +1428 389207 0.4490 +1428 646658 0.4070 +1428 730249 0.4030 +1428 102800317 0.4890 +1429 1543 0.5320 +1429 1544 0.4030 +1429 1545 0.4470 +1429 1571 0.4040 +1429 1645 0.4100 +1429 1660 0.6440 +1429 1723 0.6020 +1429 1728 0.9100 +1429 2018 0.4930 +1429 2052 0.4970 +1429 2194 0.5640 +1429 2488 0.4350 +1429 2597 0.4980 +1429 2729 0.7430 +1429 2730 0.7470 +1429 2877 0.6750 +1429 2878 0.6480 +1429 2880 0.6670 +1429 2882 0.6700 +1429 2936 0.6100 +1429 2938 0.4060 +1429 2944 0.4880 +1429 2950 0.4810 +1429 3162 0.8820 +1429 3553 0.4030 +1429 3651 0.4120 +1429 3725 0.4040 +1429 3859 0.5940 +1429 4094 0.5110 +1429 4778 0.4900 +1429 4780 0.8140 +1429 4835 0.6520 +1429 5052 0.4570 +1429 5078 0.4470 +1429 5080 0.4310 +1429 5539 0.4410 +1429 6342 0.4030 +1429 6389 0.4080 +1429 6390 0.4030 +1429 6647 0.4460 +1429 6648 0.4830 +1429 7157 0.6360 +1429 7295 0.5810 +1429 7296 0.6120 +1429 7915 0.4150 +1429 8452 0.6070 +1429 8659 0.4330 +1429 9360 0.4120 +1429 9563 0.4800 +1429 9581 0.4150 +1429 9817 0.7870 +1429 9946 0.4860 +1429 9978 0.4180 +1429 10720 0.4020 +1429 10994 0.4460 +1429 11315 0.4600 +1429 23411 0.4110 +1429 27306 0.5980 +1429 51031 0.4030 +1429 51071 0.4970 +1429 51181 0.4690 +1429 51557 0.4150 +1429 54205 0.5140 +1429 54576 0.4040 +1429 54578 0.4270 +1429 54658 0.4220 +1429 58472 0.6410 +1429 63973 0.4360 +1429 84260 0.4020 +1429 84263 0.5420 +1429 120526 0.4170 +1429 127253 0.5130 +1429 140809 0.4830 +1429 252969 0.4120 +1429 257202 0.6650 +1429 493869 0.6730 +1431 1457 0.5650 +1431 1459 0.5480 +1431 1460 0.4810 +1431 1487 0.4890 +1431 1488 0.4510 +1431 1503 0.5010 +1431 1537 0.8990 +1431 1629 0.8650 +1431 1632 0.4970 +1431 1642 0.7830 +1431 1678 0.5630 +1431 1737 0.9960 +1431 1738 0.9110 +1431 1743 0.9510 +1431 1819 0.6050 +1431 1892 0.8430 +1431 1937 0.4020 +1431 1938 0.4780 +1431 1962 0.7120 +1431 2023 0.6200 +1431 2026 0.5400 +1431 2027 0.5130 +1431 2054 0.4390 +1431 2101 0.4200 +1431 2108 0.4810 +1431 2109 0.5330 +1431 2110 0.4280 +1431 2180 0.4440 +1431 2181 0.4520 +1431 2182 0.5030 +1431 2184 0.4050 +1431 2194 0.9110 +1431 2203 0.6480 +1431 2232 0.4390 +1431 2271 0.9930 +1431 2395 0.7210 +1431 2538 0.4790 +1431 2539 0.7310 +1431 2597 0.8350 +1431 2618 0.4400 +1431 2632 0.4530 +1431 2645 0.5580 +1431 2653 0.4380 +1431 2710 0.7300 +1431 2712 0.7300 +1431 2731 0.5520 +1431 2744 0.4060 +1431 2745 0.4020 +1431 2746 0.9480 +1431 2747 0.9320 +1431 2752 0.6130 +1431 2766 0.5270 +1431 2805 0.9080 +1431 2806 0.9520 +1431 2820 0.5470 +1431 2821 0.7990 +1431 2875 0.5450 +1431 2877 0.5020 +1431 2878 0.5020 +1431 2880 0.5030 +1431 2882 0.5030 +1431 2896 0.8070 +1431 2926 0.4390 +1431 2936 0.8360 +1431 2997 0.4310 +1431 3030 0.6520 +1431 3032 0.9510 +1431 3033 0.8170 +1431 3098 0.5460 +1431 3099 0.5860 +1431 3101 0.4640 +1431 3155 0.9160 +1431 3157 0.8950 +1431 3158 0.8730 +1431 3295 0.5950 +1431 3308 0.4990 +1431 3313 0.7420 +1431 3315 0.6810 +1431 3320 0.6960 +1431 3326 0.5340 +1431 3329 0.8970 +1431 3336 0.6730 +1431 3337 0.4220 +1431 3417 0.9930 +1431 3418 0.9940 +1431 3419 0.9250 +1431 3420 0.8320 +1431 3421 0.8740 +1431 3614 0.5270 +1431 3615 0.5780 +1431 3630 0.5740 +1431 3658 0.9740 +1431 3735 0.4760 +1431 3948 0.9620 +1431 4141 0.4180 +1431 4151 0.4700 +1431 4191 0.9990 +1431 4199 0.9720 +1431 4200 0.9750 +1431 4508 0.6200 +1431 4512 0.7150 +1431 4513 0.6890 +1431 4519 0.5150 +1431 4522 0.4210 +1431 4528 0.4960 +1431 4535 0.5990 +1431 4536 0.4850 +1431 4540 0.5290 +1431 4594 0.8560 +1431 4698 0.4050 +1431 4700 0.4430 +1431 4704 0.6180 +1431 4705 0.5350 +1431 4706 0.5240 +1431 4714 0.8130 +1431 4720 0.7720 +1431 4722 0.7580 +1431 4723 0.7240 +1431 4724 0.4820 +1431 4728 0.6630 +1431 4729 0.6240 +1431 4733 0.8050 +1431 4860 0.6910 +1431 4899 0.5630 +1431 4942 0.6730 +1431 4953 0.4010 +1431 4967 0.9410 +1431 4968 0.4520 +1431 5009 0.7060 +1431 5019 0.6990 +1431 5034 0.5940 +1431 5037 0.5650 +1431 5052 0.4160 +1431 5091 0.9870 +1431 5095 0.4710 +1431 5096 0.6370 +1431 5105 0.9550 +1431 5106 0.9580 +1431 5161 0.6370 +1431 5162 0.9410 +1431 5163 0.5730 +1431 5164 0.4540 +1431 5165 0.4910 +1431 5166 0.6100 +1431 5188 0.5690 +1431 5209 0.4660 +1431 5211 0.6190 +1431 5213 0.6890 +1431 5214 0.5690 +1431 5223 0.5530 +1431 5224 0.5040 +1431 5226 0.7090 +1431 5230 0.6450 +1431 5232 0.6150 +1431 5236 0.4970 +1431 5239 0.4300 +1431 5250 0.5480 +1431 5256 0.4310 +1431 5313 0.5650 +1431 5315 0.6670 +1431 5427 0.8000 +1431 5428 0.5020 +1431 5431 0.4290 +1431 5432 0.4230 +1431 5464 0.4860 +1431 5465 0.4530 +1431 5467 0.4030 +1431 5468 0.4080 +1431 5571 0.7420 +1431 5625 0.6360 +1431 5631 0.5160 +1431 5634 0.5400 +1431 5635 0.4430 +1431 5636 0.4360 +1431 5700 0.4150 +1431 5701 0.4180 +1431 5705 0.4960 +1431 5723 0.4100 +1431 5832 0.7040 +1431 5834 0.6310 +1431 5836 0.6210 +1431 5837 0.6250 +1431 6120 0.6120 +1431 6132 0.5510 +1431 6183 0.4440 +1431 6241 0.6770 +1431 6296 0.6940 +1431 6341 0.4190 +1431 6342 0.5520 +1431 6389 0.9840 +1431 6390 0.9960 +1431 6391 0.8910 +1431 6392 0.5170 +1431 6470 0.6010 +1431 6472 0.6780 +1431 6506 0.4050 +1431 6510 0.5210 +1431 6513 0.5230 +1431 6514 0.4060 +1431 6515 0.4220 +1431 6517 0.6140 +1431 6523 0.4400 +1431 6524 0.4140 +1431 6576 0.9640 +1431 6647 0.4160 +1431 6648 0.7130 +1431 6652 0.4400 +1431 6742 0.4710 +1431 6804 0.4390 +1431 6809 0.4390 +1431 6810 0.4400 +1431 6888 0.6520 +1431 6901 0.5660 +1431 7019 0.7380 +1431 7086 0.6790 +1431 7167 0.7420 +1431 7263 0.5380 +1431 7284 0.5610 +1431 7295 0.6740 +1431 7296 0.7400 +1431 7317 0.5900 +1431 7350 0.4290 +1431 7351 0.4510 +1431 7352 0.5130 +1431 7358 0.4270 +1431 7372 0.4050 +1431 7381 0.4270 +1431 7384 0.7100 +1431 7385 0.7460 +1431 7386 0.6970 +1431 7407 0.4410 +1431 7416 0.8600 +1431 7417 0.6900 +1431 7419 0.8320 +1431 7915 0.9300 +1431 8034 0.8190 +1431 8050 0.9090 +1431 8192 0.6780 +1431 8266 0.4110 +1431 8277 0.6280 +1431 8310 0.4250 +1431 8458 0.7310 +1431 8604 0.6420 +1431 8659 0.5640 +1431 8676 0.4470 +1431 8789 0.5860 +1431 8801 0.9480 +1431 8802 0.9290 +1431 8803 0.9600 +1431 8854 0.4110 +1431 8884 0.4120 +1431 9104 0.4360 +1431 9122 0.4140 +1431 9125 0.7090 +1431 9343 0.4280 +1431 9349 0.4490 +1431 9361 0.4350 +1431 9377 0.7700 +1431 9380 0.4130 +1431 9399 0.5640 +1431 9512 0.5730 +1431 9533 0.4220 +1431 9551 0.4790 +1431 9563 0.7360 +1431 9588 0.4150 +1431 9607 0.5890 +1431 9669 0.4980 +1431 9804 0.8100 +1431 9862 0.5470 +1431 9868 0.6640 +1431 9924 0.5100 +1431 9927 0.5680 +1431 9942 0.4100 +1431 9997 0.5060 +1431 10059 0.4540 +1431 10063 0.5940 +1431 10102 0.5170 +1431 10105 0.5490 +1431 10130 0.8170 +1431 10131 0.6470 +1431 10165 0.5990 +1431 10206 0.6440 +1431 10244 0.4430 +1431 10245 0.5210 +1431 10352 0.4370 +1431 10440 0.5660 +1431 10449 0.9460 +1431 10452 0.6080 +1431 10455 0.5120 +1431 10469 0.6360 +1431 10476 0.5020 +1431 10574 0.4490 +1431 10587 0.7700 +1431 10606 0.4410 +1431 10797 0.5410 +1431 10840 0.4420 +1431 10845 0.4410 +1431 10873 0.9680 +1431 10891 0.7310 +1431 10935 0.4370 +1431 10989 0.4970 +1431 10993 0.4060 +1431 10994 0.8700 +1431 11019 0.4730 +1431 22934 0.5940 +1431 22982 0.5440 +1431 23008 0.4400 +1431 23020 0.4750 +1431 23181 0.5470 +1431 23203 0.4380 +1431 23305 0.4100 +1431 23408 0.4570 +1431 23410 0.6650 +1431 23411 0.5540 +1431 23417 0.4370 +1431 23450 0.4140 +1431 23530 0.4650 +1431 23588 0.4390 +1431 23729 0.4180 +1431 23787 0.4310 +1431 25796 0.5370 +1431 25824 0.4460 +1431 25828 0.4280 +1431 25874 0.4030 +1431 26061 0.8710 +1431 26227 0.5720 +1431 26275 0.6110 +1431 26330 0.4930 +1431 26517 0.5720 +1431 26519 0.5430 +1431 26520 0.6070 +1431 26521 0.5400 +1431 27068 0.5850 +1431 27235 0.6440 +1431 27247 0.4020 +1431 27349 0.4640 +1431 28976 0.4620 +1431 29028 0.4090 +1431 29090 0.5410 +1431 29880 0.4150 +1431 29928 0.5730 +1431 29968 0.5200 +1431 51004 0.4280 +1431 51024 0.5260 +1431 51025 0.5370 +1431 51069 0.4420 +1431 51084 0.5010 +1431 51106 0.4220 +1431 51142 0.5820 +1431 51287 0.5010 +1431 51292 0.5040 +1431 51422 0.7310 +1431 51444 0.8240 +1431 51497 0.5100 +1431 51703 0.4330 +1431 53632 0.7490 +1431 54205 0.7330 +1431 54431 0.4930 +1431 54455 0.4430 +1431 54511 0.8980 +1431 54543 0.4600 +1431 54596 0.5440 +1431 54704 0.4610 +1431 54870 0.5260 +1431 54927 0.6070 +1431 54941 0.8230 +1431 54988 0.6880 +1431 54995 0.5100 +1431 55066 0.4960 +1431 55143 0.5160 +1431 55152 0.5000 +1431 55268 0.4260 +1431 55276 0.4370 +1431 55293 0.8250 +1431 55301 0.5440 +1431 55526 0.8820 +1431 55554 0.5440 +1431 55669 0.4670 +1431 55699 0.7020 +1431 55753 0.8800 +1431 55862 0.4600 +1431 55902 0.9830 +1431 55967 0.4150 +1431 56474 0.4500 +1431 56910 0.6210 +1431 56922 0.4340 +1431 56942 0.5070 +1431 56954 0.8100 +1431 56993 0.7270 +1431 57103 0.4850 +1431 57176 0.5000 +1431 57469 0.4130 +1431 57494 0.8300 +1431 57609 0.5530 +1431 57818 0.4300 +1431 58510 0.5510 +1431 60558 0.4430 +1431 63932 0.7970 +1431 64064 0.5610 +1431 64080 0.4820 +1431 64087 0.6090 +1431 64577 0.4110 +1431 64978 0.5290 +1431 65220 0.4970 +1431 65985 0.7350 +1431 79145 0.4990 +1431 79611 0.7450 +1431 79728 0.4180 +1431 79896 0.4770 +1431 79944 0.9310 +1431 80201 0.4240 +1431 80221 0.7330 +1431 80273 0.7560 +1431 80324 0.4410 +1431 80347 0.6600 +1431 81570 0.5050 +1431 81889 0.4460 +1431 83447 0.5730 +1431 83473 0.5190 +1431 84076 0.6200 +1431 84263 0.5930 +1431 84269 0.4990 +1431 84532 0.9840 +1431 84701 0.6590 +1431 84706 0.4480 +1431 85476 0.5390 +1431 87178 0.4990 +1431 90639 0.5450 +1431 92483 0.9400 +1431 92579 0.4620 +1431 92609 0.5680 +1431 112755 0.4390 +1431 113675 0.4300 +1431 114112 0.7140 +1431 115209 0.4030 +1431 116285 0.6880 +1431 122773 0.4390 +1431 123207 0.7980 +1431 123228 0.6790 +1431 123876 0.6880 +1431 124454 0.4170 +1431 126133 0.4110 +1431 126823 0.4390 +1431 129831 0.4090 +1431 130589 0.4560 +1431 130752 0.8740 +1431 131118 0.5250 +1431 132949 0.4430 +1431 133522 0.4800 +1431 134266 0.6520 +1431 137362 0.9000 +1431 150274 0.5430 +1431 157310 0.5100 +1431 157869 0.5440 +1431 160287 0.9400 +1431 160428 0.4560 +1431 162417 0.4170 +1431 171425 0.5710 +1431 197257 0.6640 +1431 197322 0.5540 +1431 221823 0.5170 +1431 254042 0.4660 +1431 257202 0.5030 +1431 259307 0.8160 +1431 283106 0.5380 +1431 341392 0.6880 +1431 348158 0.6880 +1431 374291 0.5020 +1431 374659 0.6030 +1431 376497 0.6310 +1431 387712 0.4400 +1431 388753 0.5750 +1431 400916 0.6200 +1431 401505 0.4560 +1431 415117 0.4230 +1431 441024 0.4140 +1431 441531 0.4620 +1431 493869 0.5030 +1431 729020 0.5640 +1431 730249 0.4990 +1431 100188893 0.4260 +1431 100272147 0.4990 +1431 100287932 0.6000 +1431 109703458 0.5140 +1432 1437 0.4150 +1432 1457 0.6430 +1432 1459 0.4820 +1432 1460 0.4960 +1432 1495 0.5430 +1432 1496 0.5130 +1432 1499 0.8380 +1432 1535 0.7240 +1432 1536 0.7880 +1432 1636 0.5710 +1432 1647 0.6690 +1432 1649 0.9500 +1432 1739 0.9180 +1432 1826 0.4990 +1432 1843 0.9980 +1432 1844 0.8020 +1432 1845 0.9360 +1432 1846 0.9210 +1432 1847 0.8130 +1432 1848 0.6110 +1432 1849 0.9270 +1432 1850 0.8120 +1432 1852 0.9710 +1432 1911 0.5070 +1432 1912 0.6150 +1432 1938 0.5120 +1432 1950 0.4890 +1432 1956 0.7990 +1432 1958 0.6100 +1432 1978 0.4630 +1432 2002 0.9090 +1432 2005 0.9100 +1432 2033 0.7410 +1432 2064 0.4910 +1432 2099 0.9540 +1432 2100 0.9210 +1432 2113 0.4470 +1432 2149 0.4580 +1432 2197 0.4080 +1432 2247 0.4250 +1432 2268 0.7990 +1432 2308 0.9350 +1432 2309 0.9490 +1432 2322 0.4520 +1432 2335 0.4520 +1432 2353 0.9850 +1432 2354 0.7810 +1432 2355 0.7920 +1432 2475 0.5540 +1432 2534 0.7490 +1432 2597 0.5890 +1432 2625 0.4660 +1432 2767 0.5560 +1432 2769 0.5100 +1432 2770 0.7360 +1432 2771 0.7390 +1432 2773 0.7510 +1432 2776 0.6190 +1432 2782 0.7600 +1432 2783 0.7450 +1432 2784 0.7370 +1432 2785 0.6520 +1432 2786 0.6640 +1432 2787 0.6550 +1432 2788 0.6610 +1432 2790 0.6550 +1432 2791 0.6580 +1432 2792 0.6580 +1432 2793 0.6520 +1432 2872 0.8620 +1432 2885 0.6310 +1432 2908 0.5820 +1432 2932 0.6260 +1432 2950 0.6130 +1432 3012 0.5030 +1432 3013 0.5170 +1432 3014 0.5950 +1432 3015 0.5290 +1432 3017 0.5380 +1432 3018 0.5250 +1432 3021 0.6650 +1432 3065 0.4370 +1432 3091 0.6930 +1432 3162 0.4530 +1432 3164 0.4120 +1432 3178 0.4100 +1432 3206 0.4770 +1432 3216 0.4270 +1432 3265 0.6770 +1432 3304 0.4450 +1432 3308 0.4470 +1432 3309 0.4020 +1432 3315 0.9100 +1432 3316 0.9620 +1432 3320 0.5580 +1432 3326 0.6150 +1432 3357 0.4580 +1432 3383 0.4360 +1432 3456 0.4090 +1432 3458 0.7690 +1432 3479 0.6400 +1432 3480 0.4220 +1432 3551 0.6960 +1432 3552 0.6560 +1432 3553 0.7820 +1432 3554 0.5690 +1432 3557 0.4530 +1432 3558 0.4360 +1432 3565 0.5910 +1432 3569 0.8480 +1432 3576 0.6450 +1432 3586 0.6020 +1432 3596 0.5110 +1432 3605 0.5610 +1432 3606 0.5210 +1432 3630 0.7570 +1432 3654 0.6130 +1432 3718 0.5510 +1432 3725 0.9920 +1432 3726 0.7030 +1432 3727 0.7500 +1432 3783 0.4170 +1432 3791 0.6200 +1432 3835 0.4650 +1432 3845 0.8070 +1432 3984 0.4280 +1432 4087 0.5030 +1432 4088 0.4860 +1432 4089 0.6220 +1432 4092 0.6720 +1432 4137 0.4440 +1432 4149 0.9760 +1432 4155 0.8200 +1432 4170 0.5980 +1432 4205 0.9620 +1432 4208 0.8050 +1432 4209 0.8530 +1432 4214 0.6760 +1432 4215 0.5210 +1432 4216 0.5410 +1432 4217 0.9360 +1432 4294 0.4600 +1432 4303 0.9230 +1432 4318 0.5320 +1432 4343 0.5100 +1432 4609 0.7100 +1432 4616 0.4970 +1432 4617 0.6270 +1432 4618 0.6710 +1432 4654 0.7090 +1432 4656 0.6510 +1432 4688 0.7360 +1432 4689 0.7650 +1432 4690 0.5790 +1432 4741 0.9080 +1432 4744 0.9120 +1432 4747 0.9100 +1432 4775 0.6020 +1432 4776 0.5240 +1432 4780 0.4590 +1432 4790 0.8640 +1432 4792 0.8290 +1432 4803 0.4080 +1432 4843 0.4090 +1432 4851 0.5450 +1432 4878 0.5400 +1432 4939 0.4280 +1432 5028 0.5420 +1432 5052 0.4350 +1432 5054 0.5270 +1432 5058 0.7090 +1432 5062 0.7100 +1432 5155 0.4890 +1432 5159 0.4510 +1432 5241 0.9200 +1432 5290 0.5520 +1432 5291 0.5910 +1432 5321 0.8230 +1432 5468 0.4840 +1432 5469 0.9290 +1432 5494 0.5410 +1432 5496 0.4200 +1432 5530 0.5940 +1432 5532 0.5510 +1432 5533 0.5300 +1432 5534 0.4310 +1432 5578 0.5170 +1432 5580 0.4580 +1432 5585 0.8020 +1432 5592 0.9170 +1432 5593 0.9130 +1432 5594 0.9950 +1432 5595 0.9890 +1432 5599 0.9550 +1432 5600 0.6220 +1432 5601 0.9420 +1432 5603 0.5870 +1432 5604 0.9700 +1432 5605 0.9510 +1432 5606 0.9990 +1432 5607 0.5480 +1432 5608 0.9970 +1432 5609 0.9470 +1432 5728 0.5310 +1432 5742 0.5220 +1432 5743 0.7740 +1432 5747 0.9410 +1432 5770 0.6140 +1432 5777 0.4700 +1432 5778 0.9900 +1432 5781 0.4890 +1432 5788 0.5600 +1432 5801 0.9880 +1432 5836 0.4180 +1432 5879 0.6460 +1432 5880 0.4230 +1432 5898 0.5920 +1432 5899 0.7020 +1432 5925 0.8110 +1432 5970 0.7980 +1432 6015 0.5110 +1432 6045 0.4990 +1432 6194 0.4480 +1432 6197 0.6550 +1432 6217 0.4130 +1432 6285 0.4440 +1432 6300 0.5520 +1432 6347 0.6350 +1432 6401 0.5530 +1432 6414 0.4380 +1432 6416 0.9870 +1432 6446 0.5460 +1432 6464 0.4240 +1432 6604 0.4250 +1432 6608 0.4080 +1432 6647 0.5840 +1432 6654 0.5500 +1432 6655 0.4230 +1432 6667 0.9480 +1432 6714 0.8180 +1432 6732 0.5000 +1432 6772 0.7830 +1432 6774 0.7180 +1432 6777 0.5540 +1432 6794 0.4070 +1432 6865 0.4020 +1432 6868 0.8200 +1432 6885 0.9390 +1432 6925 0.5390 +1432 6929 0.5650 +1432 6938 0.5110 +1432 7001 0.5450 +1432 7040 0.6320 +1432 7046 0.7610 +1432 7048 0.5050 +1432 7097 0.6930 +1432 7099 0.7620 +1432 7124 0.8390 +1432 7132 0.4320 +1432 7157 0.9940 +1432 7189 0.6640 +1432 7248 0.6040 +1432 7297 0.5100 +1432 7409 0.4230 +1432 7528 0.5530 +1432 7531 0.6330 +1432 7534 0.4750 +1432 7535 0.9510 +1432 7804 0.5260 +1432 7837 0.5130 +1432 7867 0.9960 +1432 8061 0.8160 +1432 8202 0.9550 +1432 8331 0.5070 +1432 8334 0.5070 +1432 8337 0.5410 +1432 8338 0.5400 +1432 8340 0.5210 +1432 8341 0.5220 +1432 8342 0.5280 +1432 8345 0.5300 +1432 8347 0.5360 +1432 8348 0.5240 +1432 8349 0.5600 +1432 8356 0.6630 +1432 8361 0.5700 +1432 8440 0.5440 +1432 8493 0.5060 +1432 8518 0.4910 +1432 8535 0.5040 +1432 8550 0.9560 +1432 8569 0.9160 +1432 8570 0.8120 +1432 8638 0.4460 +1432 8737 0.4090 +1432 8767 0.8020 +1432 8772 0.4690 +1432 8826 0.5950 +1432 8841 0.4020 +1432 8850 0.4570 +1432 8878 0.6720 +1432 8915 0.9210 +1432 8945 0.7410 +1432 8970 0.5240 +1432 8976 0.4160 +1432 8986 0.9840 +1432 8988 0.5940 +1432 9043 0.7330 +1432 9252 0.9760 +1432 9261 0.9990 +1432 9401 0.4910 +1432 9516 0.4140 +1432 9586 0.4590 +1432 9630 0.5440 +1432 9636 0.4730 +1432 10000 0.9250 +1432 10018 0.5210 +1432 10392 0.6270 +1432 10399 0.4850 +1432 10411 0.9170 +1432 10454 0.9990 +1432 10467 0.4800 +1432 10498 0.9190 +1432 10645 0.7420 +1432 10681 0.7370 +1432 10746 0.4820 +1432 10891 0.9500 +1432 10892 0.9240 +1432 10912 0.5220 +1432 11016 0.4640 +1432 11069 0.9140 +1432 11072 0.5540 +1432 11221 0.9890 +1432 11266 0.7830 +1432 22926 0.5130 +1432 22955 0.5070 +1432 23112 0.5210 +1432 23118 0.7490 +1432 23363 0.6560 +1432 23405 0.4410 +1432 23411 0.4370 +1432 23466 0.4990 +1432 23508 0.4470 +1432 23542 0.7450 +1432 23621 0.5510 +1432 23759 0.4400 +1432 26523 0.5190 +1432 27327 0.5170 +1432 27347 0.6450 +1432 27429 0.5890 +1432 28996 0.4200 +1432 50937 0.5500 +1432 51094 0.4080 +1432 51135 0.4360 +1432 51311 0.4060 +1432 51764 0.6520 +1432 51776 0.6850 +1432 51806 0.4660 +1432 54145 0.5210 +1432 54205 0.4850 +1432 54331 0.6710 +1432 54472 0.4540 +1432 55536 0.4220 +1432 55578 0.8900 +1432 55766 0.4990 +1432 55914 0.4250 +1432 55970 0.6610 +1432 57332 0.5170 +1432 59345 0.7380 +1432 63904 0.4910 +1432 63976 0.4530 +1432 64127 0.6300 +1432 64170 0.9390 +1432 64285 0.4400 +1432 64581 0.4710 +1432 79602 0.4710 +1432 79817 0.4750 +1432 80012 0.5360 +1432 80824 0.9500 +1432 80895 0.5180 +1432 83605 0.4090 +1432 83987 0.6530 +1432 84656 0.4360 +1432 84733 0.4990 +1432 84867 0.9550 +1432 85236 0.5200 +1432 91653 0.5160 +1432 91748 0.4480 +1432 91807 0.5620 +1432 91860 0.4510 +1432 93649 0.4920 +1432 94235 0.6520 +1432 94239 0.5010 +1432 115727 0.4140 +1432 121340 0.4390 +1432 128312 0.5210 +1432 137902 0.4760 +1432 150290 0.5020 +1432 151742 0.5080 +1432 163688 0.4440 +1432 192669 0.5080 +1432 192670 0.5300 +1432 255626 0.5210 +1432 257397 0.6210 +1432 474382 0.4990 +1432 653361 0.8000 +1432 653604 0.6620 +1432 100271849 0.6790 +1434 1615 0.4070 +1434 1653 0.4380 +1434 1956 0.5170 +1434 2091 0.5360 +1434 2521 0.4450 +1434 2618 0.5200 +1434 3190 0.4450 +1434 3308 0.5530 +1434 3836 0.9960 +1434 3837 0.8680 +1434 3838 0.9610 +1434 3839 0.9800 +1434 3840 0.9900 +1434 3841 0.7570 +1434 3842 0.8240 +1434 3843 0.8140 +1434 4686 0.4620 +1434 4927 0.5600 +1434 5431 0.4260 +1434 5518 0.4890 +1434 5717 0.5160 +1434 5718 0.4820 +1434 5756 0.5590 +1434 5885 0.4590 +1434 5901 0.9560 +1434 5902 0.7860 +1434 5903 0.7800 +1434 5905 0.8780 +1434 5965 0.4580 +1434 6059 0.5850 +1434 6240 0.4820 +1434 6780 0.5890 +1434 6790 0.4230 +1434 6950 0.6510 +1434 7157 0.5440 +1434 7398 0.6440 +1434 7514 0.9760 +1434 8125 0.4600 +1434 8208 0.4130 +1434 8826 0.6600 +1434 8833 0.4540 +1434 9343 0.4340 +1434 9576 0.6020 +1434 9631 0.6360 +1434 9670 0.6790 +1434 9688 0.4890 +1434 9775 0.5890 +1434 9793 0.4480 +1434 9972 0.6110 +1434 9987 0.4550 +1434 10055 0.4220 +1434 10056 0.4060 +1434 10075 0.4230 +1434 10128 0.4520 +1434 10137 0.4230 +1434 10146 0.6500 +1434 10204 0.4950 +1434 10212 0.4030 +1434 10278 0.7730 +1434 10482 0.4470 +1434 10564 0.5500 +1434 10606 0.4030 +1434 10694 0.4600 +1434 10762 0.8710 +1434 11091 0.4680 +1434 11168 0.4610 +1434 11260 0.8860 +1434 22820 0.4340 +1434 22974 0.4530 +1434 23039 0.7650 +1434 23165 0.6610 +1434 23214 0.8070 +1434 23279 0.5900 +1434 23534 0.6400 +1434 23633 0.7190 +1434 25828 0.7640 +1434 26586 0.4560 +1434 26953 0.5860 +1434 30000 0.6070 +1434 51182 0.5050 +1434 51386 0.5890 +1434 51520 0.4800 +1434 51808 0.4270 +1434 54897 0.5220 +1434 55374 0.6020 +1434 55705 0.6300 +1434 55706 0.4450 +1434 55746 0.4420 +1434 55898 0.6260 +1434 55920 0.4570 +1434 57122 0.5150 +1434 57510 0.7660 +1434 64210 0.5840 +1434 64328 0.9080 +1434 64901 0.5520 +1434 79711 0.7660 +1434 79968 0.5230 +1434 80777 0.4730 +1434 81567 0.4620 +1434 120892 0.5250 +1434 197131 0.5330 +1434 283383 0.8380 +1434 285172 0.4910 +1434 348995 0.5890 +1434 402569 0.7370 +1434 100288687 0.5620 +1435 1436 0.9990 +1435 1437 0.9640 +1435 1439 0.5930 +1435 1440 0.9330 +1435 1441 0.6400 +1435 1493 0.5620 +1435 1499 0.4470 +1435 1513 0.7010 +1435 1520 0.4600 +1435 1524 0.6380 +1435 1536 0.5310 +1435 1839 0.4300 +1435 1950 0.9420 +1435 1951 0.4970 +1435 1956 0.9410 +1435 1969 0.7380 +1435 2015 0.4200 +1435 2056 0.4320 +1435 2064 0.7920 +1435 2065 0.7050 +1435 2066 0.7010 +1435 2200 0.4470 +1435 2208 0.4380 +1435 2209 0.6760 +1435 2212 0.5240 +1435 2213 0.5220 +1435 2247 0.5780 +1435 2248 0.4160 +1435 2249 0.4180 +1435 2250 0.4200 +1435 2251 0.4310 +1435 2252 0.4500 +1435 2254 0.4330 +1435 2255 0.4180 +1435 2258 0.4180 +1435 2260 0.7500 +1435 2261 0.7300 +1435 2263 0.7390 +1435 2264 0.7100 +1435 2321 0.8660 +1435 2322 0.9000 +1435 2323 0.6280 +1435 2324 0.7690 +1435 2335 0.5340 +1435 2353 0.6930 +1435 2534 0.6410 +1435 2597 0.7430 +1435 2621 0.6140 +1435 2668 0.5010 +1435 2670 0.4330 +1435 2833 0.4030 +1435 2885 0.7850 +1435 2919 0.7030 +1435 2920 0.7110 +1435 2921 0.4070 +1435 3002 0.4210 +1435 3055 0.6500 +1435 3082 0.5040 +1435 3091 0.5270 +1435 3240 0.5370 +1435 3315 0.4180 +1435 3316 0.4180 +1435 3383 0.8290 +1435 3394 0.5560 +1435 3439 0.5780 +1435 3440 0.6390 +1435 3454 0.4320 +1435 3456 0.5710 +1435 3458 0.7900 +1435 3479 0.5410 +1435 3480 0.7460 +1435 3552 0.8260 +1435 3553 0.8100 +1435 3554 0.8070 +1435 3557 0.4210 +1435 3558 0.6630 +1435 3559 0.4080 +1435 3562 0.9000 +1435 3565 0.7910 +1435 3566 0.4870 +1435 3567 0.6240 +1435 3569 0.8270 +1435 3570 0.5710 +1435 3574 0.6470 +1435 3576 0.7140 +1435 3578 0.5840 +1435 3579 0.6920 +1435 3586 0.8700 +1435 3589 0.5420 +1435 3596 0.7330 +1435 3600 0.6460 +1435 3603 0.4790 +1435 3605 0.6610 +1435 3606 0.6250 +1435 3620 0.5430 +1435 3627 0.7280 +1435 3630 0.4650 +1435 3635 0.5990 +1435 3636 0.5290 +1435 3643 0.6910 +1435 3659 0.4630 +1435 3661 0.4280 +1435 3662 0.6390 +1435 3663 0.4610 +1435 3665 0.4390 +1435 3682 0.4270 +1435 3683 0.5210 +1435 3684 0.7810 +1435 3687 0.6950 +1435 3689 0.4060 +1435 3690 0.5660 +1435 3716 0.4340 +1435 3717 0.4610 +1435 3725 0.4880 +1435 3791 0.8710 +1435 3815 0.9180 +1435 3845 0.6540 +1435 3902 0.4130 +1435 3958 0.4560 +1435 3976 0.4840 +1435 4049 0.5090 +1435 4067 0.6870 +1435 4233 0.7510 +1435 4254 0.7040 +1435 4282 0.6130 +1435 4283 0.6800 +1435 4286 0.5220 +1435 4312 0.4080 +1435 4313 0.4480 +1435 4314 0.4010 +1435 4317 0.4240 +1435 4318 0.6440 +1435 4321 0.4010 +1435 4360 0.7230 +1435 4481 0.5400 +1435 4609 0.5080 +1435 4772 0.6670 +1435 4790 0.5860 +1435 4791 0.4360 +1435 4792 0.5190 +1435 4803 0.6080 +1435 4804 0.7160 +1435 4843 0.4590 +1435 4851 0.4020 +1435 4907 0.4080 +1435 4914 0.9130 +1435 4915 0.6980 +1435 4982 0.4880 +1435 5008 0.4320 +1435 5054 0.6120 +1435 5069 0.4280 +1435 5133 0.5630 +1435 5155 0.4130 +1435 5156 0.8640 +1435 5159 0.9090 +1435 5175 0.4880 +1435 5228 0.4050 +1435 5243 0.4410 +1435 5290 0.5950 +1435 5291 0.5840 +1435 5294 0.6720 +1435 5295 0.5600 +1435 5328 0.4060 +1435 5335 0.4450 +1435 5336 0.6370 +1435 5468 0.6590 +1435 5595 0.4750 +1435 5741 0.4240 +1435 5743 0.5020 +1435 5744 0.4220 +1435 5781 0.6580 +1435 5788 0.6680 +1435 5970 0.4030 +1435 5971 0.6580 +1435 6233 0.5260 +1435 6288 0.4960 +1435 6289 0.4780 +1435 6320 0.7050 +1435 6346 0.5170 +1435 6347 0.8330 +1435 6348 0.7280 +1435 6351 0.6830 +1435 6354 0.6030 +1435 6355 0.5180 +1435 6356 0.6200 +1435 6361 0.5700 +1435 6362 0.5220 +1435 6363 0.4150 +1435 6364 0.5290 +1435 6367 0.6080 +1435 6369 0.4690 +1435 6373 0.5080 +1435 6374 0.6010 +1435 6376 0.6050 +1435 6387 0.7010 +1435 6402 0.4330 +1435 6452 0.5900 +1435 6464 0.7250 +1435 6504 0.4640 +1435 6541 0.4630 +1435 6614 0.5480 +1435 6654 0.5430 +1435 6688 0.7120 +1435 6696 0.5500 +1435 6714 0.9100 +1435 6772 0.7910 +1435 6774 0.8020 +1435 6776 0.4580 +1435 6777 0.4140 +1435 6778 0.5430 +1435 6850 0.4890 +1435 6886 0.4490 +1435 7010 0.8120 +1435 7039 0.4370 +1435 7040 0.7760 +1435 7042 0.4410 +1435 7057 0.4160 +1435 7066 0.4740 +1435 7070 0.4130 +1435 7076 0.6860 +1435 7077 0.4960 +1435 7096 0.4080 +1435 7097 0.6050 +1435 7098 0.5090 +1435 7099 0.6720 +1435 7124 0.8010 +1435 7132 0.5650 +1435 7133 0.6370 +1435 7157 0.4470 +1435 7189 0.4940 +1435 7305 0.5120 +1435 7311 0.4990 +1435 7314 0.5130 +1435 7316 0.5500 +1435 7412 0.5420 +1435 7424 0.4570 +1435 7525 0.5830 +1435 7837 0.5080 +1435 7850 0.5690 +1435 7852 0.7660 +1435 8482 0.4140 +1435 8530 0.4140 +1435 8563 0.7050 +1435 8600 0.9120 +1435 8651 0.4740 +1435 8792 0.6240 +1435 8817 0.4180 +1435 8822 0.4160 +1435 8823 0.4220 +1435 8988 0.4280 +1435 9021 0.4410 +1435 9289 0.4430 +1435 9308 0.4220 +1435 9332 0.7340 +1435 9370 0.5410 +1435 9402 0.5370 +1435 9846 0.5840 +1435 9935 0.4290 +1435 10232 0.5260 +1435 10457 0.4220 +1435 10461 0.4900 +1435 10563 0.4940 +1435 10631 0.4220 +1435 10663 0.5130 +1435 10673 0.4250 +1435 10850 0.4470 +1435 11082 0.4160 +1435 26281 0.4140 +1435 27006 0.4180 +1435 29126 0.6540 +1435 30835 0.4870 +1435 50615 0.4590 +1435 50616 0.4390 +1435 50943 0.5440 +1435 51284 0.5080 +1435 54106 0.4850 +1435 54209 0.6020 +1435 54210 0.4070 +1435 54757 0.4130 +1435 55509 0.4230 +1435 56975 0.5430 +1435 58191 0.4150 +1435 64581 0.4960 +1435 64805 0.4700 +1435 80380 0.5360 +1435 80381 0.4230 +1435 81501 0.6420 +1435 84666 0.4180 +1435 84868 0.4320 +1435 90865 0.4760 +1435 121340 0.4180 +1435 126014 0.6990 +1435 128506 0.4070 +1435 137902 0.5080 +1435 139716 0.7840 +1435 140885 0.7410 +1435 146433 0.9970 +1435 169355 0.4180 +1435 200942 0.4950 +1435 259197 0.5370 +1435 338773 0.5060 +1435 414062 0.4190 +1436 1437 0.9740 +1436 1439 0.6600 +1436 1440 0.8730 +1436 1441 0.8070 +1436 1493 0.6010 +1436 1499 0.4840 +1436 1508 0.4260 +1436 1513 0.6560 +1436 1520 0.7570 +1436 1524 0.8360 +1436 1536 0.7820 +1436 1836 0.5670 +1436 1839 0.4560 +1436 1942 0.6720 +1436 1943 0.6930 +1436 1944 0.6660 +1436 1945 0.6700 +1436 1946 0.6660 +1436 1950 0.8110 +1436 1956 0.6970 +1436 2015 0.6590 +1436 2022 0.4920 +1436 2057 0.4470 +1436 2069 0.6890 +1436 2162 0.5430 +1436 2205 0.4130 +1436 2206 0.5270 +1436 2207 0.8850 +1436 2209 0.7120 +1436 2212 0.6530 +1436 2213 0.6680 +1436 2219 0.5620 +1436 2246 0.8420 +1436 2247 0.8210 +1436 2248 0.8010 +1436 2249 0.8000 +1436 2250 0.7990 +1436 2251 0.8020 +1436 2252 0.8070 +1436 2253 0.7930 +1436 2254 0.8010 +1436 2255 0.8000 +1436 2258 0.4020 +1436 2260 0.4810 +1436 2263 0.4900 +1436 2268 0.4420 +1436 2277 0.8280 +1436 2321 0.5480 +1436 2322 0.5310 +1436 2323 0.9100 +1436 2335 0.4250 +1436 2350 0.4960 +1436 2353 0.7030 +1436 2357 0.4590 +1436 2359 0.4240 +1436 2526 0.4180 +1436 2533 0.5900 +1436 2534 0.6920 +1436 2597 0.4820 +1436 2670 0.4400 +1436 2767 0.5170 +1436 2776 0.4650 +1436 2778 0.4850 +1436 2829 0.4340 +1436 2833 0.4160 +1436 2857 0.5810 +1436 2885 0.9500 +1436 2919 0.6270 +1436 3001 0.4330 +1436 3002 0.5330 +1436 3055 0.8770 +1436 3071 0.4380 +1436 3082 0.7740 +1436 3091 0.4820 +1436 3108 0.4600 +1436 3109 0.5390 +1436 3113 0.6330 +1436 3115 0.4520 +1436 3119 0.4430 +1436 3122 0.6080 +1436 3123 0.4060 +1436 3265 0.5060 +1436 3383 0.6360 +1436 3394 0.7230 +1436 3417 0.4650 +1436 3418 0.4330 +1436 3439 0.4250 +1436 3458 0.6400 +1436 3479 0.8150 +1436 3481 0.7240 +1436 3552 0.5070 +1436 3553 0.6780 +1436 3554 0.5470 +1436 3558 0.6460 +1436 3562 0.8390 +1436 3563 0.4960 +1436 3565 0.6080 +1436 3566 0.6500 +1436 3567 0.5380 +1436 3569 0.7790 +1436 3570 0.5800 +1436 3574 0.4040 +1436 3575 0.5930 +1436 3576 0.6470 +1436 3577 0.4230 +1436 3579 0.5890 +1436 3586 0.6620 +1436 3587 0.7140 +1436 3596 0.5070 +1436 3600 0.4530 +1436 3605 0.4740 +1436 3620 0.5400 +1436 3627 0.5120 +1436 3630 0.7810 +1436 3635 0.6760 +1436 3636 0.5440 +1436 3659 0.5680 +1436 3662 0.4690 +1436 3663 0.5470 +1436 3665 0.4040 +1436 3667 0.6970 +1436 3674 0.6120 +1436 3682 0.5460 +1436 3683 0.4590 +1436 3684 0.8650 +1436 3685 0.4890 +1436 3687 0.8460 +1436 3689 0.8620 +1436 3690 0.5910 +1436 3725 0.4150 +1436 3791 0.5510 +1436 3815 0.4220 +1436 3845 0.7550 +1436 3902 0.4880 +1436 3936 0.4150 +1436 3937 0.6540 +1436 3958 0.4690 +1436 3965 0.4710 +1436 4065 0.4680 +1436 4067 0.7190 +1436 4069 0.4480 +1436 4089 0.4050 +1436 4209 0.5000 +1436 4254 0.9490 +1436 4283 0.5080 +1436 4286 0.4400 +1436 4318 0.6090 +1436 4332 0.4600 +1436 4353 0.4860 +1436 4360 0.7730 +1436 4481 0.5640 +1436 4542 0.4890 +1436 4602 0.4100 +1436 4609 0.4970 +1436 4688 0.4190 +1436 4772 0.5920 +1436 4774 0.6960 +1436 4781 0.4080 +1436 4790 0.4520 +1436 4803 0.7300 +1436 4843 0.4420 +1436 4851 0.5150 +1436 4869 0.5630 +1436 4893 0.5300 +1436 4908 0.6850 +1436 4909 0.6950 +1436 4914 0.5310 +1436 5079 0.5650 +1436 5133 0.5310 +1436 5154 0.7370 +1436 5155 0.8660 +1436 5159 0.5630 +1436 5175 0.7250 +1436 5228 0.8510 +1436 5290 0.8210 +1436 5291 0.6540 +1436 5293 0.4390 +1436 5294 0.7570 +1436 5295 0.9250 +1436 5296 0.4100 +1436 5330 0.7450 +1436 5331 0.6580 +1436 5332 0.6550 +1436 5335 0.5300 +1436 5336 0.7000 +1436 5341 0.4690 +1436 5468 0.4490 +1436 5728 0.5150 +1436 5743 0.4570 +1436 5764 0.4980 +1436 5777 0.6370 +1436 5781 0.8580 +1436 5788 0.8180 +1436 5921 0.4460 +1436 6039 0.4730 +1436 6129 0.4280 +1436 6208 0.6070 +1436 6233 0.5350 +1436 6299 0.4680 +1436 6320 0.5850 +1436 6347 0.8600 +1436 6348 0.7120 +1436 6351 0.7110 +1436 6361 0.4180 +1436 6362 0.5030 +1436 6363 0.4220 +1436 6367 0.4840 +1436 6376 0.7110 +1436 6382 0.6450 +1436 6387 0.8790 +1436 6402 0.5560 +1436 6404 0.4030 +1436 6464 0.8920 +1436 6504 0.4720 +1436 6598 0.5070 +1436 6614 0.5060 +1436 6654 0.6950 +1436 6688 0.9920 +1436 6689 0.6540 +1436 6696 0.4360 +1436 6714 0.8330 +1436 6772 0.7450 +1436 6774 0.7950 +1436 6776 0.4920 +1436 6777 0.4690 +1436 6778 0.4950 +1436 6949 0.5740 +1436 7037 0.4780 +1436 7039 0.7480 +1436 7040 0.5640 +1436 7045 0.4430 +1436 7048 0.6830 +1436 7057 0.5520 +1436 7070 0.4210 +1436 7075 0.5370 +1436 7094 0.4220 +1436 7096 0.4230 +1436 7097 0.7650 +1436 7098 0.4530 +1436 7099 0.8000 +1436 7100 0.4090 +1436 7122 0.4220 +1436 7124 0.6750 +1436 7133 0.4070 +1436 7157 0.5070 +1436 7189 0.4230 +1436 7293 0.4070 +1436 7299 0.4300 +1436 7305 0.9620 +1436 7311 0.5020 +1436 7314 0.5160 +1436 7316 0.5510 +1436 7412 0.6490 +1436 7423 0.7960 +1436 7424 0.7820 +1436 7450 0.5140 +1436 7525 0.6950 +1436 7805 0.5470 +1436 7852 0.6060 +1436 7940 0.4410 +1436 7994 0.5570 +1436 8074 0.7290 +1436 8530 0.4470 +1436 8563 0.7340 +1436 8600 0.9870 +1436 8639 0.5210 +1436 8651 0.5900 +1436 8685 0.5050 +1436 8792 0.4280 +1436 8817 0.8010 +1436 8822 0.7990 +1436 8823 0.8010 +1436 9021 0.6960 +1436 9034 0.5480 +1436 9308 0.4420 +1436 9332 0.9290 +1436 9402 0.8310 +1436 9450 0.7580 +1436 9846 0.7540 +1436 9935 0.6330 +1436 9965 0.7290 +1436 10225 0.5940 +1436 10261 0.4870 +1436 10288 0.8070 +1436 10320 0.5190 +1436 10437 0.5250 +1436 10457 0.4150 +1436 10462 0.6480 +1436 10499 0.4700 +1436 10673 0.4740 +1436 10870 0.5020 +1436 10875 0.5300 +1436 10894 0.5550 +1436 11006 0.4380 +1436 11314 0.5550 +1436 11326 0.8590 +1436 22797 0.4010 +1436 22918 0.5360 +1436 23166 0.5950 +1436 23236 0.6640 +1436 23765 0.5340 +1436 25759 0.7180 +1436 26281 0.8010 +1436 26291 0.7240 +1436 27006 0.7990 +1436 27036 0.4480 +1436 27128 0.4080 +1436 27181 0.4650 +1436 27287 0.7710 +1436 29126 0.6710 +1436 30835 0.4820 +1436 50489 0.4640 +1436 50615 0.4240 +1436 50856 0.4240 +1436 50943 0.5730 +1436 51225 0.4070 +1436 51284 0.5960 +1436 51311 0.6070 +1436 51338 0.6490 +1436 51378 0.7020 +1436 51744 0.4050 +1436 53358 0.7040 +1436 53829 0.5110 +1436 54106 0.4520 +1436 54209 0.8570 +1436 55294 0.4440 +1436 55303 0.4240 +1436 55509 0.5320 +1436 55620 0.8020 +1436 55803 0.5470 +1436 56034 0.7560 +1436 56833 0.4830 +1436 56944 0.4890 +1436 58475 0.7240 +1436 64115 0.4600 +1436 64231 0.5840 +1436 64407 0.4130 +1436 64581 0.5250 +1436 64805 0.7560 +1436 65258 0.4510 +1436 79718 0.4450 +1436 80310 0.7030 +1436 80380 0.5240 +1436 81501 0.6560 +1436 81608 0.4940 +1436 84868 0.6130 +1436 84922 0.5740 +1436 89790 0.4110 +1436 90952 0.4550 +1436 91937 0.4930 +1436 114548 0.4320 +1436 122618 0.4460 +1436 126014 0.6400 +1436 131450 0.4010 +1436 139716 0.7720 +1436 140685 0.5230 +1436 140885 0.7580 +1436 146433 0.9990 +1436 146722 0.4100 +1436 152404 0.5760 +1436 165530 0.4280 +1436 200942 0.4690 +1436 201633 0.4310 +1436 219972 0.6040 +1436 283420 0.4440 +1436 338773 0.7440 +1436 339390 0.4520 +1436 399694 0.6980 +1436 100049587 0.4800 +1436 100133941 0.4140 +1436 100526664 0.4250 +1437 1439 0.9990 +1437 1440 0.9990 +1437 1441 0.9730 +1437 1485 0.5700 +1437 1493 0.7500 +1437 1499 0.4390 +1437 1511 0.4200 +1437 1520 0.4180 +1437 1524 0.5750 +1437 1536 0.4380 +1437 1673 0.4370 +1437 1719 0.4020 +1437 1839 0.4950 +1437 1906 0.6410 +1437 1950 0.8910 +1437 1956 0.8420 +1437 1991 0.5170 +1437 1994 0.5560 +1437 2000 0.5550 +1437 2022 0.4330 +1437 2056 0.8760 +1437 2057 0.8610 +1437 2064 0.6730 +1437 2086 0.4320 +1437 2152 0.4690 +1437 2209 0.6180 +1437 2212 0.6080 +1437 2213 0.5960 +1437 2246 0.4040 +1437 2247 0.9650 +1437 2248 0.5890 +1437 2249 0.5920 +1437 2250 0.5950 +1437 2251 0.5920 +1437 2252 0.6320 +1437 2253 0.5840 +1437 2254 0.5930 +1437 2255 0.5990 +1437 2258 0.9540 +1437 2321 0.4370 +1437 2322 0.8130 +1437 2323 0.9570 +1437 2335 0.5860 +1437 2346 0.4140 +1437 2353 0.6780 +1437 2475 0.4200 +1437 2526 0.5700 +1437 2537 0.4160 +1437 2597 0.6250 +1437 2625 0.5690 +1437 2690 0.6790 +1437 2829 0.4180 +1437 2833 0.5820 +1437 2875 0.4340 +1437 2885 0.5570 +1437 2919 0.9310 +1437 2920 0.8230 +1437 2921 0.7300 +1437 2993 0.4210 +1437 3001 0.6270 +1437 3002 0.7750 +1437 3082 0.5840 +1437 3091 0.5270 +1437 3105 0.7300 +1437 3135 0.4190 +1437 3146 0.5230 +1437 3184 0.6560 +1437 3251 0.4320 +1437 3265 0.5390 +1437 3383 0.7420 +1437 3385 0.4240 +1437 3394 0.5710 +1437 3439 0.8510 +1437 3440 0.8680 +1437 3441 0.5080 +1437 3442 0.5090 +1437 3443 0.5080 +1437 3444 0.5110 +1437 3445 0.5060 +1437 3446 0.5120 +1437 3447 0.5070 +1437 3448 0.5090 +1437 3449 0.4880 +1437 3451 0.5430 +1437 3452 0.5110 +1437 3454 0.8190 +1437 3455 0.7620 +1437 3456 0.8300 +1437 3458 0.9840 +1437 3459 0.7830 +1437 3479 0.5410 +1437 3481 0.4820 +1437 3551 0.4180 +1437 3552 0.9970 +1437 3553 0.9980 +1437 3554 0.7740 +1437 3557 0.6090 +1437 3558 0.9970 +1437 3559 0.8690 +1437 3560 0.8400 +1437 3561 0.8080 +1437 3562 0.9980 +1437 3563 0.9490 +1437 3565 0.9630 +1437 3566 0.8430 +1437 3567 0.9930 +1437 3568 0.9770 +1437 3569 0.9740 +1437 3570 0.8370 +1437 3572 0.7530 +1437 3574 0.9110 +1437 3575 0.8510 +1437 3576 0.9720 +1437 3577 0.4760 +1437 3578 0.8410 +1437 3579 0.5880 +1437 3581 0.7170 +1437 3586 0.9590 +1437 3587 0.7970 +1437 3588 0.7520 +1437 3589 0.7180 +1437 3590 0.6940 +1437 3592 0.5660 +1437 3593 0.6530 +1437 3594 0.7890 +1437 3595 0.7820 +1437 3596 0.9340 +1437 3597 0.7530 +1437 3598 0.7710 +1437 3600 0.8490 +1437 3601 0.4680 +1437 3603 0.5910 +1437 3605 0.8880 +1437 3606 0.8970 +1437 3620 0.6810 +1437 3627 0.9110 +1437 3630 0.5780 +1437 3635 0.6050 +1437 3636 0.5260 +1437 3654 0.4160 +1437 3656 0.4070 +1437 3659 0.7310 +1437 3661 0.5350 +1437 3662 0.5530 +1437 3663 0.4200 +1437 3665 0.6460 +1437 3673 0.4140 +1437 3674 0.4020 +1437 3676 0.4420 +1437 3682 0.6510 +1437 3683 0.4860 +1437 3684 0.8110 +1437 3687 0.8500 +1437 3689 0.5410 +1437 3700 0.4180 +1437 3716 0.7370 +1437 3717 0.9560 +1437 3718 0.7790 +1437 3725 0.5650 +1437 3791 0.4470 +1437 3815 0.7690 +1437 3820 0.5590 +1437 3821 0.5070 +1437 3824 0.4790 +1437 3845 0.6560 +1437 3902 0.5530 +1437 3903 0.4440 +1437 3916 0.5260 +1437 3934 0.4510 +1437 3952 0.5930 +1437 3953 0.7120 +1437 3958 0.4180 +1437 3965 0.4010 +1437 3976 0.7800 +1437 3977 0.7140 +1437 4000 0.4720 +1437 4049 0.8220 +1437 4057 0.6610 +1437 4065 0.5870 +1437 4067 0.5550 +1437 4072 0.4160 +1437 4100 0.4490 +1437 4102 0.5230 +1437 4109 0.4800 +1437 4145 0.4120 +1437 4254 0.8520 +1437 4277 0.6210 +1437 4282 0.5100 +1437 4283 0.7360 +1437 4312 0.5080 +1437 4313 0.4950 +1437 4314 0.5750 +1437 4317 0.4180 +1437 4318 0.6580 +1437 4319 0.4350 +1437 4321 0.4810 +1437 4340 0.6090 +1437 4352 0.7870 +1437 4353 0.6010 +1437 4360 0.6580 +1437 4481 0.4050 +1437 4586 0.4170 +1437 4599 0.4160 +1437 4609 0.5070 +1437 4684 0.6280 +1437 4773 0.5510 +1437 4790 0.7300 +1437 4792 0.5890 +1437 4803 0.5460 +1437 4843 0.5640 +1437 4893 0.5890 +1437 4904 0.6230 +1437 4907 0.5220 +1437 4939 0.4490 +1437 4940 0.4570 +1437 5008 0.5110 +1437 5054 0.4900 +1437 5055 0.4880 +1437 5133 0.6170 +1437 5155 0.4780 +1437 5156 0.7500 +1437 5159 0.8240 +1437 5175 0.5250 +1437 5196 0.6880 +1437 5228 0.4780 +1437 5268 0.4230 +1437 5290 0.5130 +1437 5291 0.4910 +1437 5293 0.5660 +1437 5295 0.4780 +1437 5296 0.4410 +1437 5328 0.4460 +1437 5468 0.5040 +1437 5473 0.6270 +1437 5551 0.6650 +1437 5566 0.5440 +1437 5594 0.4650 +1437 5595 0.5210 +1437 5618 0.6820 +1437 5657 0.4320 +1437 5688 0.5060 +1437 5728 0.4180 +1437 5743 0.6480 +1437 5744 0.5150 +1437 5777 0.5820 +1437 5781 0.7110 +1437 5788 0.7650 +1437 5896 0.5080 +1437 5966 0.4470 +1437 5970 0.4470 +1437 5971 0.4500 +1437 6036 0.4790 +1437 6037 0.6720 +1437 6097 0.5330 +1437 6288 0.5860 +1437 6289 0.5640 +1437 6320 0.4460 +1437 6346 0.6830 +1437 6347 0.9310 +1437 6348 0.9350 +1437 6351 0.9240 +1437 6354 0.6880 +1437 6355 0.5660 +1437 6356 0.9960 +1437 6357 0.5330 +1437 6359 0.4470 +1437 6361 0.6980 +1437 6362 0.5130 +1437 6363 0.7430 +1437 6364 0.8690 +1437 6366 0.7980 +1437 6367 0.8000 +1437 6369 0.5960 +1437 6372 0.4810 +1437 6373 0.6190 +1437 6374 0.8210 +1437 6375 0.5120 +1437 6376 0.9530 +1437 6382 0.6080 +1437 6387 0.6960 +1437 6401 0.5430 +1437 6402 0.6590 +1437 6403 0.4920 +1437 6441 0.4040 +1437 6446 0.4700 +1437 6464 0.5370 +1437 6490 0.5980 +1437 6504 0.4670 +1437 6614 0.4480 +1437 6654 0.4840 +1437 6688 0.7330 +1437 6693 0.5720 +1437 6696 0.4780 +1437 6714 0.4810 +1437 6772 0.6730 +1437 6773 0.4310 +1437 6774 0.8510 +1437 6775 0.4750 +1437 6776 0.9370 +1437 6777 0.9350 +1437 6778 0.6060 +1437 6850 0.5070 +1437 7010 0.4180 +1437 7037 0.4470 +1437 7039 0.6010 +1437 7040 0.7010 +1437 7042 0.5190 +1437 7043 0.4730 +1437 7056 0.5080 +1437 7066 0.7140 +1437 7070 0.5240 +1437 7076 0.5440 +1437 7084 0.4790 +1437 7096 0.6800 +1437 7097 0.7980 +1437 7098 0.6700 +1437 7099 0.7810 +1437 7100 0.5130 +1437 7113 0.4160 +1437 7124 0.9700 +1437 7128 0.4300 +1437 7132 0.5420 +1437 7133 0.4360 +1437 7157 0.7180 +1437 7189 0.4550 +1437 7292 0.5510 +1437 7293 0.6230 +1437 7297 0.4800 +1437 7299 0.4460 +1437 7412 0.6260 +1437 7424 0.4070 +1437 7448 0.4860 +1437 7450 0.4220 +1437 7534 0.5500 +1437 7538 0.6350 +1437 7837 0.6190 +1437 7852 0.6120 +1437 8091 0.4610 +1437 8288 0.5260 +1437 8320 0.4160 +1437 8503 0.4160 +1437 8531 0.4280 +1437 8600 0.5840 +1437 8639 0.5450 +1437 8651 0.4910 +1437 8743 0.4800 +1437 8744 0.6050 +1437 8784 0.5100 +1437 8817 0.5910 +1437 8822 0.5910 +1437 8823 0.5930 +1437 8829 0.4190 +1437 8842 0.4160 +1437 9021 0.4960 +1437 9034 0.6140 +1437 9141 0.5880 +1437 9180 0.6960 +1437 9235 0.4320 +1437 9306 0.4340 +1437 9308 0.8000 +1437 9332 0.6470 +1437 9436 0.5080 +1437 9437 0.5720 +1437 9466 0.7460 +1437 9560 0.4650 +1437 9846 0.4580 +1437 10232 0.5250 +1437 10254 0.4740 +1437 10344 0.5900 +1437 10379 0.5360 +1437 10461 0.4140 +1437 10563 0.5720 +1437 10573 0.4890 +1437 10663 0.6080 +1437 10666 0.4340 +1437 10673 0.6670 +1437 10726 0.4220 +1437 10768 0.4100 +1437 10850 0.5230 +1437 10870 0.6090 +1437 11009 0.5380 +1437 11251 0.6380 +1437 22914 0.7400 +1437 23308 0.4480 +1437 23586 0.5190 +1437 23643 0.4310 +1437 23765 0.5450 +1437 25780 0.4050 +1437 26281 0.5960 +1437 27006 0.6000 +1437 27087 0.4200 +1437 27178 0.4510 +1437 27181 0.4040 +1437 27189 0.4110 +1437 27190 0.4020 +1437 29110 0.4150 +1437 29126 0.7480 +1437 29851 0.5220 +1437 29949 0.5010 +1437 29992 0.4080 +1437 30009 0.6280 +1437 30816 0.4760 +1437 30835 0.6630 +1437 50489 0.5590 +1437 50615 0.8400 +1437 50616 0.8020 +1437 50943 0.7430 +1437 51284 0.6630 +1437 51311 0.5120 +1437 51497 0.4450 +1437 51561 0.6520 +1437 53342 0.5300 +1437 53832 0.8130 +1437 53833 0.7110 +1437 54106 0.6720 +1437 54209 0.4120 +1437 54210 0.5330 +1437 55509 0.5290 +1437 55801 0.4880 +1437 56300 0.4870 +1437 56963 0.6440 +1437 57126 0.4680 +1437 57509 0.4470 +1437 58191 0.4790 +1437 58985 0.8390 +1437 59067 0.5310 +1437 59272 0.5750 +1437 64127 0.4820 +1437 64135 0.4500 +1437 64170 0.4160 +1437 64581 0.5950 +1437 64806 0.5110 +1437 65258 0.5070 +1437 79465 0.5230 +1437 80328 0.5540 +1437 80329 0.5760 +1437 80380 0.6040 +1437 80381 0.6880 +1437 84666 0.4180 +1437 84868 0.5760 +1437 85480 0.6850 +1437 90865 0.7030 +1437 93978 0.4450 +1437 112744 0.7070 +1437 114548 0.5170 +1437 115004 0.4270 +1437 116379 0.7070 +1437 137902 0.6190 +1437 140885 0.5750 +1437 146433 0.5610 +1437 149233 0.8400 +1437 163702 0.7110 +1437 168400 0.5710 +1437 169355 0.6030 +1437 170482 0.4470 +1437 201633 0.4190 +1437 259197 0.4920 +1437 282616 0.4480 +1437 282618 0.4450 +1437 283420 0.4480 +1437 386653 0.5170 +1437 405754 0.4310 +1437 414062 0.7290 +1437 728378 0.5430 +1437 100133941 0.4180 +1437 100423062 0.9080 +1437 100526664 0.5870 +1439 1440 0.8110 +1439 1441 0.7260 +1439 1442 0.6500 +1439 1443 0.6500 +1439 1489 0.6610 +1439 1536 0.4120 +1439 1950 0.6710 +1439 2056 0.8980 +1439 2057 0.9850 +1439 2124 0.4180 +1439 2207 0.4060 +1439 2213 0.4010 +1439 2268 0.4390 +1439 2521 0.4220 +1439 2687 0.4270 +1439 2688 0.6500 +1439 2689 0.6500 +1439 2885 0.4560 +1439 3055 0.4510 +1439 3265 0.9010 +1439 3394 0.4630 +1439 3428 0.4760 +1439 3439 0.7770 +1439 3440 0.6970 +1439 3441 0.6900 +1439 3442 0.7220 +1439 3443 0.7370 +1439 3444 0.6920 +1439 3445 0.7710 +1439 3446 0.6860 +1439 3447 0.7730 +1439 3448 0.7720 +1439 3449 0.6830 +1439 3451 0.7340 +1439 3452 0.7050 +1439 3456 0.7020 +1439 3458 0.7390 +1439 3467 0.7000 +1439 3558 0.8080 +1439 3559 0.7290 +1439 3560 0.5840 +1439 3561 0.6290 +1439 3562 0.9990 +1439 3563 0.9990 +1439 3565 0.8320 +1439 3567 0.9970 +1439 3568 0.9930 +1439 3569 0.7690 +1439 3570 0.6100 +1439 3574 0.7300 +1439 3575 0.6930 +1439 3578 0.7030 +1439 3586 0.8000 +1439 3587 0.7170 +1439 3588 0.4320 +1439 3589 0.7060 +1439 3592 0.6900 +1439 3593 0.6650 +1439 3596 0.7310 +1439 3600 0.7880 +1439 3635 0.5840 +1439 3636 0.4990 +1439 3663 0.5030 +1439 3684 0.7140 +1439 3687 0.4420 +1439 3689 0.4360 +1439 3716 0.9000 +1439 3717 0.9920 +1439 3718 0.7370 +1439 3820 0.5860 +1439 3824 0.4160 +1439 3845 0.9030 +1439 3937 0.5000 +1439 3952 0.6680 +1439 3976 0.6940 +1439 4067 0.4650 +1439 4332 0.4820 +1439 4689 0.7950 +1439 4818 0.5640 +1439 4893 0.9010 +1439 5008 0.7490 +1439 5154 0.6550 +1439 5155 0.6630 +1439 5290 0.5720 +1439 5291 0.4210 +1439 5293 0.4410 +1439 5295 0.5740 +1439 5341 0.4410 +1439 5566 0.4010 +1439 5579 0.6050 +1439 5617 0.6570 +1439 5777 0.8490 +1439 5781 0.8670 +1439 5788 0.6440 +1439 5880 0.4330 +1439 6402 0.4150 +1439 6440 0.6950 +1439 6441 0.5760 +1439 6464 0.8010 +1439 6654 0.4090 +1439 6688 0.6460 +1439 6772 0.5050 +1439 6774 0.6440 +1439 6776 0.8700 +1439 6777 0.6930 +1439 7066 0.6900 +1439 7189 0.4450 +1439 7297 0.7140 +1439 7534 0.6310 +1439 7805 0.4220 +1439 7850 0.4150 +1439 8503 0.4100 +1439 8651 0.5160 +1439 8764 0.4750 +1439 8807 0.5030 +1439 8843 0.4050 +1439 9450 0.4290 +1439 9846 0.4240 +1439 10663 0.4240 +1439 10772 0.5470 +1439 11009 0.6810 +1439 11314 0.4340 +1439 22797 0.4070 +1439 23533 0.4250 +1439 23765 0.4650 +1439 29126 0.5050 +1439 29949 0.6720 +1439 50604 0.6510 +1439 50616 0.6750 +1439 51311 0.4060 +1439 51561 0.6680 +1439 53342 0.6680 +1439 54440 0.4210 +1439 56832 0.6660 +1439 57705 0.4350 +1439 59067 0.6540 +1439 84519 0.4160 +1439 85480 0.6950 +1439 89790 0.5010 +1439 90865 0.4910 +1439 114132 0.4140 +1439 114785 0.4960 +1439 146722 0.4930 +1439 150372 0.4670 +1439 171024 0.4450 +1439 282616 0.6620 +1439 282617 0.6720 +1439 282618 0.6580 +1439 338376 0.6640 +1439 653509 0.5940 +1439 729238 0.5970 +1440 1441 0.9990 +1440 1442 0.9120 +1440 1443 0.9110 +1440 1493 0.4830 +1440 1511 0.5180 +1440 1636 0.4700 +1440 1803 0.4950 +1440 1839 0.4090 +1440 1847 0.4160 +1440 1906 0.5730 +1440 1950 0.9570 +1440 1956 0.8570 +1440 1991 0.8070 +1440 2022 0.6460 +1440 2056 0.9900 +1440 2057 0.8620 +1440 2064 0.6460 +1440 2147 0.4260 +1440 2152 0.4920 +1440 2209 0.5450 +1440 2212 0.4250 +1440 2213 0.4020 +1440 2246 0.5620 +1440 2247 0.9610 +1440 2248 0.5920 +1440 2249 0.5970 +1440 2250 0.5920 +1440 2251 0.6230 +1440 2252 0.7180 +1440 2253 0.5970 +1440 2254 0.5990 +1440 2255 0.6100 +1440 2258 0.9520 +1440 2321 0.6180 +1440 2322 0.7820 +1440 2323 0.9600 +1440 2335 0.5140 +1440 2353 0.4160 +1440 2526 0.5990 +1440 2537 0.4260 +1440 2538 0.5050 +1440 2542 0.7160 +1440 2584 0.4240 +1440 2597 0.5220 +1440 2672 0.6050 +1440 2688 0.9150 +1440 2689 0.9110 +1440 2690 0.6830 +1440 2710 0.4830 +1440 2712 0.4800 +1440 2713 0.4760 +1440 2826 0.4540 +1440 2833 0.4180 +1440 2875 0.5700 +1440 2885 0.5820 +1440 2919 0.9660 +1440 2920 0.8970 +1440 2921 0.6340 +1440 2993 0.4220 +1440 3002 0.4520 +1440 3055 0.5860 +1440 3082 0.6570 +1440 3091 0.4770 +1440 3105 0.4740 +1440 3146 0.4180 +1440 3383 0.7760 +1440 3439 0.6970 +1440 3440 0.8230 +1440 3441 0.5050 +1440 3442 0.5070 +1440 3443 0.5120 +1440 3444 0.5060 +1440 3445 0.5070 +1440 3446 0.5060 +1440 3447 0.5070 +1440 3448 0.5060 +1440 3449 0.5060 +1440 3451 0.5070 +1440 3452 0.5060 +1440 3454 0.7510 +1440 3455 0.7100 +1440 3456 0.7570 +1440 3458 0.9890 +1440 3459 0.7910 +1440 3479 0.5270 +1440 3552 0.9910 +1440 3553 0.9960 +1440 3554 0.6000 +1440 3557 0.5980 +1440 3558 0.9620 +1440 3559 0.8370 +1440 3560 0.7020 +1440 3561 0.7530 +1440 3562 0.9640 +1440 3563 0.8020 +1440 3565 0.8180 +1440 3566 0.8360 +1440 3567 0.8420 +1440 3568 0.7750 +1440 3569 0.9880 +1440 3570 0.8670 +1440 3572 0.8270 +1440 3574 0.8800 +1440 3575 0.7900 +1440 3576 0.9710 +1440 3577 0.4870 +1440 3578 0.8270 +1440 3579 0.6450 +1440 3581 0.6730 +1440 3586 0.9270 +1440 3587 0.7420 +1440 3588 0.7280 +1440 3589 0.7090 +1440 3590 0.6740 +1440 3592 0.4820 +1440 3593 0.6270 +1440 3594 0.7330 +1440 3595 0.7150 +1440 3596 0.8340 +1440 3597 0.7020 +1440 3598 0.7030 +1440 3600 0.7870 +1440 3601 0.4970 +1440 3603 0.5420 +1440 3605 0.9280 +1440 3606 0.7920 +1440 3620 0.5290 +1440 3627 0.9080 +1440 3630 0.7090 +1440 3665 0.5060 +1440 3674 0.4440 +1440 3684 0.7910 +1440 3687 0.5510 +1440 3689 0.4720 +1440 3716 0.8890 +1440 3717 0.9880 +1440 3718 0.7750 +1440 3725 0.4180 +1440 3791 0.5220 +1440 3815 0.6610 +1440 3845 0.6680 +1440 3934 0.4920 +1440 3952 0.9520 +1440 3953 0.7570 +1440 3976 0.7900 +1440 3977 0.8170 +1440 4049 0.6580 +1440 4057 0.4470 +1440 4067 0.6360 +1440 4145 0.5070 +1440 4254 0.8760 +1440 4282 0.4340 +1440 4283 0.7940 +1440 4311 0.4340 +1440 4312 0.4210 +1440 4313 0.6160 +1440 4314 0.6480 +1440 4317 0.6060 +1440 4318 0.6480 +1440 4321 0.5500 +1440 4352 0.8790 +1440 4353 0.7440 +1440 4609 0.4190 +1440 4684 0.5710 +1440 4790 0.5510 +1440 4792 0.4690 +1440 4803 0.5140 +1440 4804 0.5320 +1440 4818 0.6540 +1440 4832 0.4120 +1440 4843 0.4320 +1440 4869 0.4120 +1440 4907 0.4660 +1440 5008 0.6900 +1440 5032 0.4370 +1440 5054 0.4920 +1440 5155 0.4300 +1440 5156 0.7540 +1440 5159 0.7580 +1440 5175 0.5700 +1440 5196 0.4450 +1440 5228 0.6580 +1440 5265 0.5060 +1440 5327 0.4050 +1440 5473 0.4220 +1440 5551 0.4350 +1440 5595 0.4300 +1440 5601 0.4250 +1440 5617 0.9300 +1440 5618 0.6600 +1440 5657 0.4340 +1440 5682 0.7350 +1440 5683 0.6930 +1440 5684 0.7100 +1440 5685 0.8360 +1440 5686 0.7300 +1440 5687 0.6680 +1440 5688 0.8470 +1440 5689 0.7250 +1440 5690 0.9030 +1440 5691 0.6000 +1440 5692 0.7790 +1440 5693 0.4890 +1440 5694 0.7210 +1440 5695 0.4090 +1440 5696 0.5190 +1440 5698 0.7380 +1440 5699 0.4200 +1440 5700 0.9330 +1440 5701 0.9090 +1440 5702 0.9060 +1440 5704 0.8010 +1440 5705 0.6810 +1440 5706 0.7490 +1440 5707 0.9160 +1440 5708 0.9440 +1440 5710 0.9510 +1440 5713 0.7070 +1440 5714 0.9040 +1440 5717 0.9240 +1440 5718 0.9460 +1440 5719 0.9530 +1440 5743 0.5590 +1440 5781 0.6450 +1440 5788 0.6950 +1440 5886 0.4700 +1440 5887 0.4700 +1440 6233 0.7020 +1440 6288 0.5930 +1440 6289 0.5970 +1440 6320 0.5070 +1440 6346 0.5000 +1440 6347 0.9300 +1440 6348 0.9290 +1440 6351 0.9090 +1440 6354 0.6760 +1440 6355 0.4790 +1440 6356 0.9950 +1440 6359 0.4160 +1440 6361 0.5160 +1440 6363 0.6320 +1440 6364 0.7990 +1440 6366 0.6990 +1440 6367 0.7330 +1440 6369 0.4690 +1440 6372 0.4790 +1440 6373 0.5520 +1440 6374 0.8230 +1440 6376 0.9420 +1440 6387 0.7860 +1440 6401 0.7160 +1440 6402 0.5310 +1440 6403 0.6330 +1440 6404 0.5090 +1440 6464 0.5720 +1440 6504 0.4450 +1440 6688 0.6350 +1440 6696 0.5000 +1440 6714 0.4030 +1440 6772 0.7600 +1440 6774 0.9160 +1440 6776 0.7460 +1440 6777 0.7450 +1440 6778 0.4090 +1440 6850 0.6630 +1440 6921 0.5050 +1440 6923 0.5180 +1440 7010 0.4460 +1440 7037 0.4570 +1440 7039 0.5830 +1440 7040 0.5920 +1440 7042 0.4080 +1440 7043 0.4070 +1440 7048 0.4450 +1440 7056 0.4030 +1440 7066 0.9840 +1440 7067 0.4660 +1440 7070 0.5070 +1440 7076 0.5070 +1440 7096 0.5830 +1440 7097 0.5820 +1440 7098 0.5050 +1440 7099 0.7570 +1440 7100 0.4080 +1440 7113 0.5060 +1440 7124 0.9490 +1440 7132 0.4640 +1440 7133 0.5540 +1440 7157 0.5050 +1440 7297 0.6890 +1440 7311 0.6420 +1440 7314 0.6720 +1440 7316 0.6930 +1440 7321 0.5170 +1440 7322 0.5170 +1440 7323 0.5170 +1440 7412 0.6120 +1440 7450 0.4630 +1440 7837 0.4360 +1440 7852 0.8020 +1440 8065 0.5330 +1440 8600 0.4320 +1440 8638 0.4380 +1440 8651 0.6970 +1440 8665 0.5610 +1440 8807 0.5330 +1440 8809 0.4980 +1440 8817 0.5920 +1440 8822 0.5950 +1440 8823 0.6010 +1440 8842 0.5440 +1440 9021 0.8560 +1440 9034 0.4160 +1440 9097 0.7070 +1440 9180 0.7040 +1440 9332 0.4200 +1440 9466 0.7030 +1440 9616 0.5210 +1440 9625 0.5300 +1440 9636 0.4880 +1440 9846 0.5320 +1440 9861 0.9540 +1440 10213 0.6210 +1440 10456 0.4300 +1440 10468 0.4990 +1440 10563 0.6230 +1440 10617 0.5610 +1440 10673 0.4440 +1440 10850 0.6490 +1440 10980 0.5610 +1440 10987 0.5760 +1440 11009 0.6080 +1440 11047 0.9240 +1440 11093 0.4430 +1440 11104 0.4760 +1440 23392 0.6050 +1440 23729 0.4840 +1440 23765 0.7260 +1440 26281 0.6000 +1440 26525 0.4710 +1440 27006 0.6160 +1440 27189 0.4120 +1440 27190 0.4020 +1440 29028 0.4760 +1440 29126 0.6050 +1440 29949 0.4570 +1440 50615 0.7010 +1440 50616 0.6460 +1440 50943 0.5700 +1440 51284 0.4760 +1440 51311 0.4060 +1440 51554 0.4410 +1440 51561 0.5720 +1440 53832 0.6740 +1440 53833 0.7140 +1440 54106 0.4760 +1440 54210 0.4750 +1440 54454 0.4760 +1440 55277 0.4760 +1440 55801 0.5800 +1440 56061 0.7070 +1440 56300 0.5580 +1440 56342 0.4380 +1440 57126 0.5990 +1440 57559 0.5610 +1440 58985 0.7260 +1440 59272 0.6210 +1440 60675 0.5080 +1440 64170 0.4150 +1440 64332 0.5550 +1440 64581 0.4100 +1440 64806 0.4760 +1440 79184 0.6210 +1440 80381 0.4010 +1440 83473 0.6440 +1440 84056 0.4760 +1440 84432 0.4100 +1440 84818 0.6730 +1440 84954 0.6210 +1440 85480 0.4500 +1440 90865 0.5310 +1440 112744 0.7740 +1440 114548 0.4160 +1440 114803 0.6490 +1440 116379 0.6790 +1440 116844 0.6640 +1440 122706 0.4890 +1440 134510 0.7400 +1440 137902 0.4360 +1440 143471 0.5610 +1440 149233 0.7400 +1440 163702 0.6890 +1440 169355 0.4540 +1440 256356 0.4760 +1440 286187 0.5690 +1440 374569 0.6650 +1440 386653 0.4160 +1440 404281 0.4470 +1440 414062 0.6810 +1440 692312 0.4370 +1440 100652824 0.6930 +1441 1442 0.6500 +1441 1443 0.6500 +1441 1489 0.7460 +1441 1788 0.5280 +1441 1950 0.7020 +1441 1991 0.8040 +1441 2056 0.9070 +1441 2057 0.7450 +1441 2120 0.5340 +1441 2122 0.4670 +1441 2125 0.4030 +1441 2146 0.4830 +1441 2207 0.4710 +1441 2212 0.4790 +1441 2219 0.4870 +1441 2242 0.4160 +1441 2268 0.5150 +1441 2322 0.6350 +1441 2323 0.5650 +1441 2357 0.6290 +1441 2358 0.4690 +1441 2623 0.5000 +1441 2624 0.6030 +1441 2672 0.5320 +1441 2688 0.6500 +1441 2689 0.6500 +1441 2885 0.8450 +1441 2919 0.5470 +1441 3012 0.7080 +1441 3013 0.5560 +1441 3014 0.5530 +1441 3015 0.5760 +1441 3017 0.5640 +1441 3018 0.5630 +1441 3021 0.6270 +1441 3055 0.8200 +1441 3122 0.4260 +1441 3394 0.5200 +1441 3417 0.4790 +1441 3418 0.4800 +1441 3439 0.7640 +1441 3440 0.7400 +1441 3441 0.7320 +1441 3442 0.7330 +1441 3443 0.7340 +1441 3444 0.7330 +1441 3445 0.7340 +1441 3446 0.7330 +1441 3447 0.7370 +1441 3448 0.7340 +1441 3449 0.7330 +1441 3451 0.7400 +1441 3452 0.7330 +1441 3456 0.7210 +1441 3458 0.8500 +1441 3460 0.4130 +1441 3467 0.6800 +1441 3553 0.4930 +1441 3554 0.4500 +1441 3558 0.7350 +1441 3562 0.8460 +1441 3563 0.4110 +1441 3565 0.7410 +1441 3566 0.5210 +1441 3567 0.7280 +1441 3568 0.5590 +1441 3569 0.8990 +1441 3570 0.8400 +1441 3574 0.8220 +1441 3575 0.4870 +1441 3577 0.6430 +1441 3578 0.7120 +1441 3579 0.6680 +1441 3586 0.7730 +1441 3589 0.7710 +1441 3590 0.5790 +1441 3592 0.7340 +1441 3593 0.7590 +1441 3595 0.4510 +1441 3596 0.7140 +1441 3597 0.4710 +1441 3600 0.7390 +1441 3659 0.4270 +1441 3683 0.4520 +1441 3684 0.6840 +1441 3687 0.6440 +1441 3689 0.4750 +1441 3716 0.9610 +1441 3717 0.9830 +1441 3718 0.9480 +1441 3815 0.7530 +1441 3845 0.7120 +1441 3936 0.4480 +1441 3937 0.4040 +1441 3952 0.7010 +1441 3976 0.7370 +1441 3977 0.4620 +1441 4067 0.9160 +1441 4069 0.4740 +1441 4145 0.4220 +1441 4254 0.4180 +1441 4317 0.5580 +1441 4318 0.4750 +1441 4332 0.5800 +1441 4352 0.5900 +1441 4353 0.5330 +1441 4542 0.5160 +1441 4688 0.4170 +1441 4689 0.5250 +1441 4778 0.4290 +1441 4790 0.5090 +1441 4869 0.5160 +1441 4893 0.5310 +1441 5008 0.8110 +1441 5094 0.4980 +1441 5154 0.6550 +1441 5155 0.6780 +1441 5175 0.4720 +1441 5199 0.4450 +1441 5617 0.6810 +1441 5657 0.4570 +1441 5688 0.4210 +1441 5781 0.8730 +1441 5788 0.6260 +1441 6233 0.7050 +1441 6280 0.4480 +1441 6283 0.5820 +1441 6347 0.4870 +1441 6387 0.6310 +1441 6402 0.6290 +1441 6427 0.6080 +1441 6464 0.8450 +1441 6556 0.5160 +1441 6688 0.9180 +1441 6714 0.4020 +1441 6772 0.6830 +1441 6774 0.9070 +1441 6775 0.4730 +1441 6776 0.7390 +1441 6777 0.7520 +1441 6850 0.7740 +1441 6921 0.5750 +1441 6923 0.5440 +1441 7066 0.9030 +1441 7075 0.5050 +1441 7097 0.4520 +1441 7099 0.4620 +1441 7124 0.4460 +1441 7157 0.4760 +1441 7297 0.8960 +1441 7305 0.5350 +1441 7307 0.6200 +1441 7311 0.6400 +1441 7314 0.5650 +1441 7316 0.5810 +1441 7321 0.5290 +1441 7322 0.5220 +1441 7323 0.5260 +1441 7403 0.5170 +1441 7412 0.4040 +1441 7490 0.4920 +1441 7850 0.4530 +1441 7852 0.4900 +1441 7913 0.4590 +1441 7940 0.4820 +1441 8065 0.6100 +1441 8233 0.6220 +1441 8243 0.4160 +1441 8331 0.5530 +1441 8334 0.5560 +1441 8335 0.4580 +1441 8337 0.5610 +1441 8338 0.5530 +1441 8340 0.5630 +1441 8341 0.5630 +1441 8342 0.5630 +1441 8345 0.5630 +1441 8347 0.5720 +1441 8348 0.5630 +1441 8349 0.5810 +1441 8356 0.6270 +1441 8361 0.5920 +1441 8651 0.6740 +1441 8689 0.4270 +1441 8764 0.4540 +1441 8809 0.4030 +1441 8875 0.4220 +1441 8970 0.5630 +1441 9021 0.9540 +1441 9235 0.4210 +1441 9466 0.5600 +1441 9616 0.5490 +1441 9846 0.5700 +1441 10000 0.4350 +1441 10019 0.5170 +1441 10148 0.6620 +1441 10294 0.4900 +1441 10320 0.5180 +1441 10456 0.7720 +1441 10673 0.5030 +1441 10735 0.5280 +1441 10772 0.4620 +1441 10902 0.4170 +1441 11009 0.7020 +1441 11025 0.4890 +1441 23512 0.5040 +1441 23765 0.5270 +1441 26040 0.7270 +1441 29949 0.7280 +1441 50604 0.6580 +1441 50616 0.6960 +1441 51311 0.6230 +1441 51561 0.6500 +1441 53342 0.6610 +1441 53829 0.4390 +1441 54145 0.5630 +1441 54210 0.4680 +1441 54790 0.6160 +1441 55294 0.4680 +1441 55500 0.5760 +1441 55766 0.5530 +1441 56832 0.6800 +1441 59067 0.6630 +1441 60675 0.4310 +1441 63035 0.5630 +1441 64386 0.4590 +1441 64960 0.6470 +1441 84106 0.5930 +1441 84295 0.5730 +1441 84522 0.4790 +1441 85236 0.5630 +1441 85480 0.6680 +1441 94239 0.6980 +1441 115727 0.4120 +1441 128312 0.5630 +1441 171023 0.6780 +1441 219972 0.5890 +1441 222487 0.4530 +1441 255626 0.5630 +1441 282616 0.6600 +1441 282617 0.6560 +1441 282618 0.6600 +1441 338376 0.7170 +1441 340061 0.4190 +1441 474382 0.5910 +1441 653604 0.6230 +1442 1443 0.9980 +1442 1444 0.9040 +1442 1447 0.5430 +1442 1956 0.7110 +1442 2056 0.9570 +1442 2057 0.6790 +1442 2099 0.4060 +1442 2355 0.4640 +1442 2641 0.5130 +1442 2688 0.9900 +1442 2689 0.9440 +1442 2690 0.9920 +1442 2691 0.9090 +1442 2692 0.7850 +1442 2693 0.6650 +1442 3035 0.6440 +1442 3454 0.6560 +1442 3455 0.6610 +1442 3458 0.4080 +1442 3459 0.6500 +1442 3479 0.8690 +1442 3480 0.5090 +1442 3481 0.6530 +1442 3484 0.5710 +1442 3486 0.6980 +1442 3558 0.4890 +1442 3559 0.6500 +1442 3560 0.6500 +1442 3561 0.6500 +1442 3563 0.6500 +1442 3566 0.6500 +1442 3568 0.6500 +1442 3570 0.6550 +1442 3572 0.6500 +1442 3575 0.6500 +1442 3581 0.6650 +1442 3587 0.6500 +1442 3588 0.6500 +1442 3590 0.6500 +1442 3594 0.6550 +1442 3595 0.6500 +1442 3597 0.6500 +1442 3598 0.6500 +1442 3630 0.7310 +1442 3667 0.6970 +1442 3716 0.6800 +1442 3717 0.7690 +1442 3718 0.6560 +1442 3855 0.4140 +1442 3909 0.4410 +1442 3910 0.4220 +1442 3918 0.4260 +1442 3952 0.9530 +1442 3953 0.7380 +1442 3956 0.9010 +1442 3977 0.6720 +1442 4352 0.6740 +1442 4887 0.5470 +1442 5020 0.4800 +1442 5069 0.5920 +1442 5156 0.6500 +1442 5159 0.6530 +1442 5228 0.4180 +1442 5443 0.7810 +1442 5449 0.4380 +1442 5539 0.5360 +1442 5617 0.9650 +1442 5618 0.9650 +1442 5626 0.5220 +1442 5669 0.7740 +1442 5670 0.7390 +1442 5671 0.7880 +1442 5672 0.7720 +1442 5673 0.6710 +1442 5675 0.7880 +1442 5676 0.7690 +1442 5678 0.7680 +1442 5680 0.8040 +1442 5741 0.4570 +1442 5781 0.5290 +1442 5961 0.5390 +1442 6473 0.4180 +1442 6500 0.4990 +1442 6750 0.5070 +1442 6772 0.5600 +1442 6774 0.5870 +1442 6776 0.6850 +1442 6777 0.7020 +1442 7005 0.6010 +1442 7038 0.4990 +1442 7066 0.9100 +1442 7092 0.5000 +1442 7093 0.5540 +1442 7166 0.5080 +1442 7200 0.6220 +1442 8454 0.4990 +1442 8521 0.4640 +1442 8646 0.4020 +1442 8660 0.5930 +1442 8910 0.4220 +1442 8945 0.4990 +1442 9180 0.6520 +1442 9466 0.6500 +1442 9650 0.5160 +1442 9978 0.4990 +1442 10136 0.4120 +1442 23166 0.5430 +1442 23436 0.4180 +1442 23438 0.6490 +1442 25970 0.4990 +1442 26254 0.4050 +1442 29078 0.4910 +1442 30818 0.4260 +1442 50615 0.6500 +1442 51738 0.7900 +1442 53832 0.6500 +1442 53833 0.6500 +1442 58985 0.6500 +1442 79783 0.5480 +1442 93659 0.7310 +1442 116379 0.6500 +1442 136647 0.5480 +1442 140683 0.5470 +1442 149233 0.6500 +1442 163702 0.6500 +1442 440533 0.7670 +1443 1444 0.8930 +1443 1447 0.5490 +1443 1956 0.7350 +1443 2056 0.9580 +1443 2057 0.7000 +1443 2099 0.4070 +1443 2355 0.4320 +1443 2641 0.5140 +1443 2688 0.9890 +1443 2689 0.9660 +1443 2690 0.9910 +1443 2691 0.9030 +1443 2692 0.8030 +1443 2693 0.6590 +1443 3035 0.6140 +1443 3454 0.6590 +1443 3455 0.6600 +1443 3458 0.4100 +1443 3459 0.6500 +1443 3479 0.8670 +1443 3481 0.6480 +1443 3484 0.5690 +1443 3486 0.6950 +1443 3558 0.4870 +1443 3559 0.6500 +1443 3560 0.6500 +1443 3561 0.6540 +1443 3563 0.6500 +1443 3566 0.6500 +1443 3568 0.6500 +1443 3570 0.6530 +1443 3572 0.6500 +1443 3575 0.6500 +1443 3581 0.6640 +1443 3587 0.6500 +1443 3588 0.6500 +1443 3590 0.6500 +1443 3594 0.6550 +1443 3595 0.6500 +1443 3597 0.6500 +1443 3598 0.6500 +1443 3630 0.7110 +1443 3667 0.7740 +1443 3716 0.6850 +1443 3717 0.7700 +1443 3718 0.6600 +1443 3855 0.4120 +1443 3909 0.4300 +1443 3918 0.4240 +1443 3952 0.9530 +1443 3953 0.7370 +1443 3956 0.8930 +1443 3977 0.6720 +1443 4352 0.6740 +1443 4887 0.5470 +1443 5020 0.4630 +1443 5069 0.5900 +1443 5156 0.6580 +1443 5159 0.7960 +1443 5228 0.4090 +1443 5295 0.4350 +1443 5443 0.7800 +1443 5449 0.4710 +1443 5539 0.5620 +1443 5617 0.9650 +1443 5618 0.9640 +1443 5626 0.5170 +1443 5669 0.7740 +1443 5670 0.7340 +1443 5671 0.7830 +1443 5672 0.7710 +1443 5673 0.6650 +1443 5675 0.7840 +1443 5676 0.7660 +1443 5678 0.7660 +1443 5680 0.8040 +1443 5741 0.4430 +1443 5781 0.5070 +1443 5961 0.5390 +1443 6473 0.4090 +1443 6714 0.4320 +1443 6750 0.5070 +1443 6777 0.4180 +1443 7003 0.4700 +1443 7004 0.5600 +1443 7005 0.7850 +1443 7038 0.4890 +1443 7066 0.9090 +1443 7092 0.4790 +1443 7093 0.5490 +1443 7166 0.4950 +1443 7200 0.6170 +1443 8463 0.6660 +1443 8521 0.4610 +1443 8910 0.4120 +1443 9180 0.6520 +1443 9466 0.6500 +1443 9650 0.5160 +1443 10136 0.4340 +1443 10278 0.5220 +1443 23166 0.5390 +1443 23436 0.4130 +1443 23438 0.6200 +1443 26254 0.4270 +1443 29078 0.4890 +1443 30818 0.5890 +1443 50615 0.6500 +1443 50964 0.4080 +1443 51738 0.7880 +1443 53832 0.6500 +1443 53833 0.6500 +1443 57091 0.4620 +1443 58985 0.6500 +1443 79783 0.5460 +1443 93659 0.7310 +1443 116379 0.6500 +1443 136647 0.5470 +1443 140683 0.5450 +1443 149233 0.6500 +1443 163702 0.6500 +1443 440533 0.7640 +1444 1840 0.4890 +1444 2688 0.6730 +1444 2691 0.5760 +1444 4887 0.5290 +1444 5443 0.5390 +1444 5539 0.4400 +1444 5617 0.4210 +1444 5961 0.5390 +1444 7005 0.4290 +1444 7038 0.4400 +1444 9650 0.5160 +1444 9846 0.4750 +1444 10136 0.4080 +1444 23436 0.4180 +1444 26254 0.4210 +1444 79576 0.7650 +1444 140683 0.5540 +1445 1499 0.7310 +1445 1500 0.4240 +1445 1627 0.4120 +1445 1629 0.4150 +1445 1740 0.6950 +1445 1796 0.8990 +1445 1839 0.5600 +1445 1950 0.7070 +1445 1956 0.9290 +1445 2017 0.5650 +1445 2040 0.4200 +1445 2064 0.4890 +1445 2065 0.6780 +1445 2069 0.5150 +1445 2099 0.8100 +1445 2100 0.5690 +1445 2185 0.4420 +1445 2243 0.4400 +1445 2244 0.4070 +1445 2266 0.4100 +1445 2268 0.4570 +1445 2322 0.5600 +1445 2323 0.5250 +1445 2335 0.6040 +1445 2444 0.7620 +1445 2534 0.8850 +1445 2549 0.6210 +1445 2631 0.4280 +1445 2697 0.7340 +1445 2782 0.5180 +1445 2870 0.4900 +1445 2885 0.7910 +1445 3055 0.4890 +1445 3059 0.5990 +1445 3113 0.5130 +1445 3115 0.5440 +1445 3117 0.5320 +1445 3118 0.4990 +1445 3119 0.5480 +1445 3120 0.5390 +1445 3122 0.5040 +1445 3123 0.5940 +1445 3127 0.5350 +1445 3265 0.6380 +1445 3320 0.6670 +1445 3326 0.6660 +1445 3635 0.6270 +1445 3667 0.5720 +1445 3674 0.4500 +1445 3690 0.5950 +1445 3725 0.7310 +1445 3728 0.4430 +1445 3845 0.6160 +1445 3903 0.7450 +1445 3937 0.5420 +1445 4067 0.9480 +1445 4068 0.4890 +1445 4140 0.4430 +1445 4145 0.6000 +1445 4301 0.4820 +1445 4690 0.5840 +1445 4893 0.6080 +1445 5037 0.4130 +1445 5058 0.4580 +1445 5062 0.4580 +1445 5133 0.5760 +1445 5175 0.6360 +1445 5241 0.5460 +1445 5594 0.5940 +1445 5595 0.6400 +1445 5604 0.6350 +1445 5605 0.6290 +1445 5728 0.5920 +1445 5747 0.5720 +1445 5753 0.4010 +1445 5770 0.5440 +1445 5771 0.5460 +1445 5777 0.7430 +1445 5781 0.8150 +1445 5782 0.8080 +1445 5787 0.5810 +1445 5788 0.7970 +1445 5795 0.6920 +1445 5805 0.5480 +1445 5829 0.9920 +1445 5894 0.5940 +1445 5906 0.5540 +1445 5908 0.5270 +1445 5916 0.4640 +1445 5921 0.4930 +1445 5962 0.5690 +1445 6093 0.4410 +1445 6279 0.4100 +1445 6347 0.4220 +1445 6464 0.9330 +1445 6504 0.4620 +1445 6510 0.4250 +1445 6714 0.9980 +1445 6774 0.7240 +1445 6776 0.5820 +1445 6777 0.5260 +1445 6778 0.4280 +1445 6850 0.5250 +1445 7037 0.4590 +1445 7039 0.5560 +1445 7041 0.5640 +1445 7082 0.4470 +1445 7094 0.6570 +1445 7184 0.4010 +1445 7187 0.7040 +1445 7189 0.5830 +1445 7329 0.4010 +1445 7409 0.5550 +1445 7414 0.8260 +1445 7415 0.5490 +1445 7450 0.4650 +1445 7454 0.4810 +1445 7462 0.4170 +1445 7525 0.5140 +1445 7529 0.6580 +1445 7535 0.6960 +1445 7879 0.4160 +1445 8312 0.5620 +1445 8440 0.4180 +1445 8801 0.4500 +1445 8826 0.4910 +1445 8844 0.4760 +1445 9046 0.7520 +1445 9050 0.5050 +1445 9051 0.5870 +1445 9341 0.4090 +1445 9368 0.6600 +1445 9475 0.4400 +1445 9497 0.4040 +1445 9528 0.4390 +1445 9564 0.8090 +1445 10023 0.4810 +1445 10256 0.4330 +1445 10287 0.4260 +1445 10298 0.4610 +1445 10376 0.5180 +1445 10657 0.6320 +1445 10859 0.8500 +1445 11140 0.5260 +1445 22866 0.4330 +1445 23371 0.6540 +1445 23607 0.4390 +1445 26191 0.9990 +1445 26469 0.4650 +1445 27040 0.4080 +1445 29126 0.5620 +1445 29760 0.5040 +1445 51291 0.4460 +1445 51744 0.4190 +1445 54331 0.4910 +1445 54518 0.5590 +1445 54756 0.5150 +1445 54923 0.6050 +1445 55004 0.4260 +1445 55075 0.4350 +1445 55715 0.4900 +1445 55717 0.4130 +1445 55824 0.9990 +1445 55968 0.4050 +1445 56924 0.4430 +1445 57144 0.4430 +1445 57823 0.4390 +1445 64759 0.5150 +1445 79834 0.4280 +1445 79930 0.9280 +1445 80347 0.4200 +1445 80380 0.5440 +1445 80725 0.7600 +1445 81839 0.4010 +1445 83660 0.4410 +1445 84632 0.5750 +1445 84959 0.4840 +1445 114885 0.4080 +1445 140885 0.5270 +1445 151888 0.4830 +1445 157285 0.8540 +1445 157769 0.4030 +1445 253959 0.4060 +1445 255324 0.5080 +1445 388325 0.7570 +1446 1447 0.9990 +1446 1448 0.9980 +1446 1457 0.5100 +1446 1460 0.4210 +1446 2001 0.4950 +1446 3346 0.4530 +1446 3347 0.4790 +1446 3906 0.9870 +1446 4025 0.4910 +1446 4057 0.6680 +1446 4988 0.4100 +1446 5047 0.5330 +1446 5284 0.5100 +1446 5347 0.5240 +1446 5617 0.6570 +1446 5639 0.4080 +1446 6776 0.5720 +1446 6777 0.5180 +1446 6779 0.5440 +1446 7018 0.5130 +1446 8694 0.5200 +1446 10278 0.4930 +1446 10846 0.5520 +1446 51128 0.4090 +1446 54020 0.4150 +1446 55079 0.4800 +1446 57479 0.4180 +1446 85438 0.4630 +1446 137964 0.4640 +1447 1448 0.9980 +1447 1457 0.5590 +1447 1460 0.7170 +1447 1504 0.5190 +1447 1636 0.4960 +1447 1950 0.4470 +1447 2001 0.5400 +1447 2066 0.8200 +1447 2274 0.4380 +1447 2355 0.4360 +1447 2597 0.5640 +1447 2689 0.4780 +1447 2889 0.4260 +1447 3351 0.4380 +1447 3356 0.4120 +1447 3630 0.5700 +1447 3717 0.4830 +1447 3875 0.4450 +1447 3906 0.9840 +1447 4025 0.5320 +1447 4057 0.8830 +1447 4151 0.6900 +1447 4751 0.4040 +1447 5047 0.5160 +1447 5241 0.4590 +1447 5284 0.5190 +1447 5340 0.5840 +1447 5347 0.5520 +1447 5617 0.8850 +1447 5618 0.8020 +1447 5654 0.6650 +1447 6776 0.9190 +1447 6777 0.6530 +1447 7018 0.5860 +1447 7038 0.4610 +1447 7166 0.6220 +1447 7299 0.4060 +1447 10278 0.4280 +1447 10385 0.4080 +1447 10783 0.6360 +1447 23299 0.6730 +1447 27429 0.7890 +1447 54205 0.5940 +1447 55486 0.4050 +1447 56975 0.6140 +1447 91754 0.7420 +1447 114625 0.4070 +1447 140609 0.6220 +1447 140686 0.4040 +1447 440387 0.5210 +1448 1504 0.4090 +1448 1636 0.4260 +1448 2170 0.4360 +1448 3708 0.6300 +1448 3710 0.6320 +1448 3736 0.5380 +1448 3737 0.5690 +1448 3738 0.6420 +1448 3739 0.4440 +1448 3741 0.5020 +1448 3742 0.4040 +1448 3743 0.4070 +1448 3745 0.5340 +1448 3746 0.5320 +1448 3749 0.4320 +1448 3751 0.4510 +1448 3752 0.4080 +1448 3757 0.4340 +1448 3764 0.4350 +1448 3776 0.5090 +1448 3777 0.4180 +1448 3778 0.7200 +1448 3779 0.5270 +1448 3780 0.7180 +1448 3782 0.8320 +1448 3783 0.9120 +1448 3784 0.4240 +1448 3785 0.4010 +1448 3827 0.5380 +1448 3906 0.9880 +1448 4025 0.5870 +1448 4057 0.6900 +1448 4831 0.7230 +1448 4846 0.4420 +1448 5047 0.6440 +1448 5266 0.4360 +1448 5284 0.5330 +1448 5340 0.6890 +1448 5566 0.4100 +1448 5567 0.4090 +1448 5568 0.4100 +1448 5617 0.5330 +1448 5816 0.4300 +1448 6195 0.4120 +1448 6196 0.4300 +1448 6776 0.4260 +1448 6777 0.4050 +1448 6786 0.6200 +1448 7220 0.4810 +1448 7222 0.4790 +1448 7225 0.4250 +1448 7442 0.4160 +1448 8989 0.6180 +1448 22919 0.4070 +1448 50801 0.4200 +1448 50813 0.5570 +1448 51305 0.4030 +1448 51350 0.7350 +1448 51806 0.5610 +1448 54795 0.4060 +1448 57582 0.4330 +1448 59341 0.7130 +1448 63948 0.4410 +1448 84876 0.5960 +1448 91860 0.5620 +1448 157855 0.5060 +1448 163688 0.5610 +1448 343450 0.4550 +1448 440387 0.4190 +1452 1453 0.6950 +1452 1454 0.6890 +1452 1459 0.5540 +1452 1460 0.4570 +1452 1499 0.9990 +1452 1642 0.4520 +1452 1855 0.9340 +1452 1856 0.7230 +1452 1857 0.6760 +1452 1956 0.5480 +1452 1983 0.4010 +1452 2121 0.5710 +1452 2197 0.8070 +1452 2475 0.5080 +1452 2535 0.6640 +1452 2580 0.4340 +1452 2735 0.4170 +1452 2736 0.8420 +1452 2737 0.8790 +1452 2885 0.4180 +1452 2931 0.9910 +1452 2932 0.9990 +1452 2935 0.5810 +1452 3161 0.7980 +1452 3172 0.6690 +1452 3183 0.4250 +1452 3190 0.4010 +1452 3308 0.4560 +1452 3320 0.7600 +1452 3486 0.4070 +1452 3551 0.4670 +1452 3725 0.4140 +1452 3845 0.4370 +1452 3875 0.4620 +1452 3981 0.4790 +1452 4040 0.8960 +1452 4041 0.8780 +1452 4137 0.5610 +1452 4193 0.9610 +1452 4194 0.9710 +1452 4609 0.6070 +1452 4610 0.4150 +1452 4775 0.5160 +1452 4792 0.4060 +1452 5290 0.4810 +1452 5295 0.4070 +1452 5515 0.7800 +1452 5516 0.5770 +1452 5518 0.6260 +1452 5519 0.6100 +1452 5524 0.7030 +1452 5525 0.5650 +1452 5526 0.5250 +1452 5527 0.5900 +1452 5528 0.5710 +1452 5529 0.5870 +1452 5728 0.5160 +1452 6189 0.8020 +1452 6191 0.8030 +1452 6193 0.8030 +1452 6194 0.8170 +1452 6201 0.8070 +1452 6202 0.8040 +1452 6203 0.8030 +1452 6205 0.8010 +1452 6206 0.8010 +1452 6207 0.8010 +1452 6208 0.8770 +1452 6209 0.8020 +1452 6210 0.8210 +1452 6217 0.8040 +1452 6218 0.8000 +1452 6222 0.8010 +1452 6223 0.8080 +1452 6228 0.8020 +1452 6229 0.8140 +1452 6230 0.8030 +1452 6232 0.8070 +1452 6233 0.9270 +1452 6234 0.8200 +1452 6256 0.4390 +1452 6259 0.5370 +1452 6396 0.6950 +1452 6477 0.8000 +1452 6500 0.6830 +1452 6597 0.4250 +1452 6608 0.8840 +1452 6622 0.6480 +1452 6714 0.5640 +1452 7132 0.5830 +1452 7133 0.5100 +1452 7157 0.9260 +1452 7311 0.5040 +1452 7314 0.5650 +1452 7316 0.5670 +1452 7471 0.7150 +1452 7474 0.4560 +1452 7478 0.6300 +1452 7479 0.6000 +1452 7483 0.4520 +1452 7518 0.5170 +1452 7534 0.7720 +1452 8312 0.9990 +1452 8313 0.9970 +1452 8321 0.7110 +1452 8325 0.4040 +1452 8454 0.7640 +1452 8658 0.5260 +1452 8737 0.6130 +1452 8864 0.4320 +1452 8878 0.4140 +1452 8915 0.8900 +1452 8945 0.9260 +1452 9462 0.6980 +1452 9529 0.5870 +1452 9584 0.4110 +1452 9736 0.6660 +1452 9919 0.6160 +1452 9978 0.6890 +1452 10023 0.5220 +1452 10142 0.4570 +1452 10273 0.5060 +1452 10297 0.5590 +1452 10320 0.5930 +1452 10892 0.8220 +1452 11033 0.5260 +1452 11127 0.5930 +1452 22806 0.6060 +1452 22943 0.5060 +1452 22954 0.4010 +1452 23028 0.4040 +1452 23208 0.4920 +1452 23223 0.9000 +1452 23291 0.4140 +1452 23401 0.4280 +1452 23451 0.5870 +1452 23476 0.4690 +1452 26130 0.7940 +1452 26135 0.4320 +1452 26262 0.4910 +1452 27101 0.7470 +1452 28966 0.7840 +1452 51163 0.5250 +1452 51176 0.5210 +1452 51185 0.9970 +1452 51384 0.4550 +1452 51504 0.8020 +1452 51684 0.8470 +1452 54854 0.5190 +1452 54894 0.5560 +1452 55072 0.4590 +1452 55293 0.4030 +1452 55294 0.4240 +1452 55720 0.8010 +1452 55898 0.6680 +1452 56902 0.8020 +1452 56998 0.7820 +1452 57634 0.4340 +1452 57683 0.4800 +1452 58504 0.4960 +1452 64840 0.4130 +1452 80351 0.6360 +1452 80829 0.4720 +1452 81610 0.8790 +1452 84133 0.4140 +1452 84260 0.5130 +1452 84433 0.7940 +1452 84946 0.8020 +1452 84985 0.5990 +1452 85395 0.8010 +1452 89780 0.7780 +1452 94274 0.5240 +1452 113828 0.6760 +1452 114991 0.6290 +1452 122011 0.6940 +1452 128876 0.4290 +1452 132884 0.5670 +1452 139285 0.9600 +1452 140735 0.4480 +1452 222584 0.7910 +1452 283149 0.5330 +1452 284680 0.7260 +1452 286077 0.8980 +1452 388468 0.4610 +1452 644815 0.8810 +1453 1454 0.9890 +1453 1499 0.4360 +1453 1522 0.4140 +1453 1629 0.6190 +1453 1778 0.4770 +1453 1786 0.4880 +1453 1855 0.9040 +1453 1856 0.8750 +1453 1857 0.8930 +1453 1869 0.4050 +1453 2017 0.4960 +1453 2197 0.8020 +1453 2580 0.5270 +1453 2697 0.9390 +1453 2801 0.4270 +1453 2890 0.4270 +1453 2932 0.9550 +1453 3060 0.4300 +1453 3091 0.4400 +1453 3163 0.4700 +1453 3921 0.8430 +1453 3981 0.4080 +1453 3998 0.4180 +1453 4087 0.4250 +1453 4088 0.4970 +1453 4130 0.5110 +1453 4137 0.7970 +1453 4193 0.7080 +1453 4218 0.5380 +1453 4627 0.4430 +1453 4735 0.4190 +1453 4783 0.5080 +1453 4862 0.9680 +1453 5108 0.4170 +1453 5170 0.4340 +1453 5187 0.9840 +1453 5265 0.4010 +1453 5347 0.8480 +1453 5372 0.4980 +1453 5373 0.4430 +1453 5499 0.5090 +1453 5500 0.4760 +1453 5501 0.5120 +1453 5537 0.4730 +1453 5566 0.9240 +1453 5567 0.9180 +1453 5568 0.9160 +1453 5577 0.4020 +1453 5861 0.6650 +1453 6095 0.5160 +1453 6096 0.4570 +1453 6187 0.8280 +1453 6188 0.8600 +1453 6189 0.8170 +1453 6191 0.5040 +1453 6192 0.5000 +1453 6193 0.8170 +1453 6194 0.8190 +1453 6201 0.8130 +1453 6202 0.8260 +1453 6203 0.8180 +1453 6204 0.8220 +1453 6205 0.8110 +1453 6206 0.8150 +1453 6207 0.8130 +1453 6208 0.8280 +1453 6209 0.8320 +1453 6210 0.8150 +1453 6217 0.8010 +1453 6218 0.8100 +1453 6222 0.8130 +1453 6223 0.8440 +1453 6224 0.8350 +1453 6227 0.8060 +1453 6228 0.8020 +1453 6229 0.8100 +1453 6230 0.8030 +1453 6231 0.8060 +1453 6232 0.5490 +1453 6233 0.8010 +1453 6234 0.8030 +1453 6235 0.8090 +1453 6396 0.5630 +1453 6608 0.9140 +1453 6622 0.6460 +1453 6751 0.4360 +1453 6752 0.4220 +1453 6774 0.4770 +1453 6811 0.4210 +1453 6829 0.4240 +1453 7039 0.4090 +1453 7109 0.4080 +1453 7157 0.8260 +1453 7529 0.9120 +1453 7531 0.9140 +1453 7532 0.9080 +1453 7533 0.9160 +1453 7534 0.9370 +1453 8454 0.5360 +1453 8518 0.4930 +1453 8553 0.6820 +1453 8615 0.4430 +1453 8626 0.9000 +1453 8766 0.5270 +1453 8780 0.4520 +1453 8863 0.9880 +1453 8864 0.9960 +1453 8914 0.6030 +1453 8945 0.7970 +1453 9117 0.4090 +1453 9146 0.4060 +1453 9554 0.4040 +1453 9570 0.4440 +1453 9572 0.6670 +1453 9575 0.9700 +1453 9632 0.5110 +1453 9788 0.4040 +1453 9871 0.4610 +1453 9975 0.5370 +1453 9985 0.4570 +1453 10094 0.4140 +1453 10133 0.5550 +1453 10142 0.8050 +1453 10369 0.4200 +1453 10413 0.9190 +1453 10427 0.5550 +1453 10484 0.5040 +1453 10556 0.8110 +1453 10557 0.8170 +1453 10652 0.4050 +1453 10799 0.8130 +1453 10802 0.4890 +1453 10959 0.4050 +1453 10960 0.4230 +1453 10971 0.9120 +1453 10972 0.4150 +1453 11102 0.8010 +1453 11196 0.4190 +1453 22872 0.4740 +1453 23173 0.4570 +1453 23291 0.5560 +1453 23354 0.5360 +1453 23557 0.5030 +1453 23621 0.4710 +1453 25937 0.9100 +1453 26130 0.8470 +1453 26224 0.8130 +1453 26984 0.4080 +1453 27095 0.4050 +1453 28966 0.4990 +1453 28987 0.9040 +1453 51065 0.5450 +1453 51399 0.4030 +1453 51693 0.4160 +1453 54801 0.5210 +1453 54851 0.8000 +1453 54854 0.4130 +1453 54913 0.8100 +1453 54930 0.5090 +1453 55140 0.4800 +1453 55142 0.5110 +1453 55559 0.4990 +1453 55720 0.9120 +1453 55781 0.9280 +1453 55861 0.4040 +1453 56902 0.8460 +1453 56938 0.5870 +1453 58485 0.4030 +1453 58504 0.4350 +1453 63943 0.6350 +1453 64689 0.4160 +1453 79007 0.4970 +1453 79090 0.4250 +1453 79365 0.5890 +1453 79441 0.5170 +1453 79633 0.4440 +1453 79748 0.4030 +1453 79866 0.5300 +1453 79897 0.8000 +1453 81562 0.4120 +1453 81876 0.4970 +1453 83732 0.8360 +1453 84232 0.4340 +1453 84946 0.9780 +1453 85366 0.4020 +1453 90362 0.6830 +1453 90411 0.4010 +1453 93323 0.5030 +1453 114991 0.6750 +1453 115106 0.5270 +1453 117177 0.5420 +1453 122553 0.6680 +1453 126003 0.4080 +1453 136263 0.4200 +1453 139231 0.4590 +1453 140032 0.4990 +1453 222584 0.5190 +1453 286077 0.7140 +1453 728642 0.5860 +1454 1460 0.4780 +1454 1499 0.6470 +1454 1628 0.4100 +1454 1629 0.7590 +1454 1654 0.9450 +1454 1855 0.9570 +1454 1856 0.9670 +1454 1857 0.9400 +1454 2197 0.8020 +1454 2308 0.9120 +1454 2309 0.9120 +1454 2932 0.9890 +1454 3678 0.4190 +1454 3921 0.8120 +1454 4163 0.6260 +1454 4193 0.4050 +1454 4218 0.5200 +1454 4303 0.9050 +1454 4735 0.4180 +1454 4751 0.4900 +1454 4783 0.6780 +1454 4862 0.9890 +1454 5054 0.4140 +1454 5187 0.9960 +1454 5315 0.4080 +1454 5347 0.8580 +1454 5372 0.4400 +1454 5499 0.6360 +1454 5500 0.4760 +1454 5501 0.6610 +1454 5528 0.4270 +1454 5529 0.4140 +1454 5566 0.9250 +1454 5567 0.9140 +1454 5568 0.9140 +1454 6095 0.8730 +1454 6096 0.6530 +1454 6097 0.6100 +1454 6187 0.8300 +1454 6188 0.8570 +1454 6189 0.8150 +1454 6191 0.5380 +1454 6192 0.5030 +1454 6193 0.8180 +1454 6194 0.8200 +1454 6201 0.8120 +1454 6202 0.8270 +1454 6203 0.8200 +1454 6204 0.8120 +1454 6205 0.8070 +1454 6206 0.8130 +1454 6207 0.8120 +1454 6208 0.8100 +1454 6209 0.8320 +1454 6210 0.8210 +1454 6217 0.8010 +1454 6218 0.8130 +1454 6222 0.8170 +1454 6223 0.8130 +1454 6224 0.8310 +1454 6227 0.8580 +1454 6228 0.8000 +1454 6229 0.8060 +1454 6230 0.8080 +1454 6231 0.8040 +1454 6232 0.5440 +1454 6233 0.8010 +1454 6234 0.8080 +1454 6235 0.8000 +1454 6396 0.5480 +1454 6597 0.4160 +1454 6608 0.9110 +1454 6788 0.4180 +1454 7157 0.7350 +1454 7187 0.5220 +1454 7529 0.9080 +1454 7531 0.9090 +1454 7532 0.9080 +1454 7533 0.9320 +1454 7534 0.9090 +1454 8312 0.9930 +1454 8313 0.9210 +1454 8454 0.4350 +1454 8518 0.4150 +1454 8553 0.8650 +1454 8766 0.5110 +1454 8780 0.4480 +1454 8863 0.9940 +1454 8864 0.9990 +1454 8914 0.8440 +1454 8945 0.8030 +1454 9462 0.6270 +1454 9572 0.8280 +1454 9575 0.9940 +1454 9919 0.4570 +1454 9975 0.8170 +1454 10133 0.4990 +1454 10413 0.9090 +1454 10556 0.8060 +1454 10557 0.8120 +1454 10612 0.5970 +1454 10799 0.8100 +1454 10971 0.9080 +1454 11102 0.8010 +1454 22881 0.8910 +1454 23291 0.6280 +1454 23354 0.5110 +1454 25937 0.9040 +1454 26130 0.8490 +1454 26224 0.8760 +1454 28966 0.7300 +1454 28987 0.9130 +1454 51065 0.5410 +1454 51233 0.4560 +1454 54801 0.4990 +1454 54851 0.8120 +1454 54854 0.4110 +1454 54888 0.4860 +1454 54894 0.5690 +1454 54913 0.8020 +1454 54930 0.5060 +1454 54962 0.4790 +1454 55142 0.5110 +1454 55559 0.4990 +1454 55720 0.8900 +1454 55781 0.9230 +1454 55858 0.4800 +1454 56902 0.9190 +1454 56938 0.7660 +1454 60485 0.5250 +1454 63943 0.6270 +1454 79365 0.8780 +1454 79441 0.5130 +1454 79633 0.4590 +1454 79866 0.5660 +1454 79897 0.8010 +1454 81610 0.4790 +1454 83732 0.8360 +1454 84861 0.4370 +1454 84946 0.9690 +1454 84985 0.4520 +1454 90362 0.6280 +1454 93323 0.5040 +1454 94233 0.4300 +1454 114991 0.6780 +1454 115106 0.5270 +1454 117177 0.5110 +1454 139231 0.4890 +1454 140032 0.5980 +1454 222584 0.7390 +1454 286077 0.8270 +1454 642273 0.5900 +1454 644815 0.5070 +1454 728642 0.5780 +1454 100506658 0.6420 +1454 102800317 0.9000 +1455 1456 0.7130 +1455 1855 0.5240 +1455 1856 0.5320 +1455 1857 0.4700 +1455 2535 0.4590 +1455 2932 0.5600 +1455 4040 0.6660 +1455 4041 0.4850 +1455 4690 0.5070 +1455 5187 0.4200 +1455 5518 0.4170 +1455 5566 0.9080 +1455 5567 0.9080 +1455 5568 0.9080 +1455 6608 0.9090 +1455 6649 0.4210 +1455 6950 0.4480 +1455 7407 0.4410 +1455 7471 0.4020 +1455 7472 0.4050 +1455 7478 0.4010 +1455 7479 0.4010 +1455 7804 0.4320 +1455 8312 0.7120 +1455 8321 0.4360 +1455 9112 0.4290 +1455 9837 0.5960 +1455 9989 0.4490 +1455 10087 0.9600 +1455 11054 0.5380 +1455 23704 0.4120 +1455 51659 0.5730 +1455 53944 0.8950 +1455 54776 0.5670 +1455 55643 0.4480 +1455 55861 0.4130 +1455 57176 0.4140 +1455 64785 0.6020 +1455 81926 0.4950 +1455 84296 0.5480 +1455 89780 0.4150 +1456 1496 0.4620 +1456 5566 0.9070 +1456 5567 0.9110 +1456 5568 0.9080 +1456 6608 0.9130 +1456 6950 0.4220 +1456 7804 0.4300 +1456 8936 0.5170 +1456 10006 0.5700 +1456 10087 0.5050 +1456 10152 0.4800 +1456 10163 0.4560 +1456 10458 0.4440 +1456 10787 0.4980 +1456 23191 0.5330 +1456 53353 0.4090 +1456 53944 0.7820 +1456 55971 0.4720 +1456 57606 0.5100 +1456 57648 0.5420 +1456 79577 0.5360 +1456 79886 0.4220 +1456 81573 0.5380 +1456 149420 0.4080 +1457 1459 0.9930 +1457 1460 0.9990 +1457 1495 0.5460 +1457 1499 0.9360 +1457 1588 0.4450 +1457 1616 0.6620 +1457 1662 0.6150 +1457 1789 0.4340 +1457 1810 0.4060 +1457 1819 0.4770 +1457 1855 0.9680 +1457 1856 0.9430 +1457 1857 0.9490 +1457 1911 0.5890 +1457 1912 0.4990 +1457 1936 0.4010 +1457 1965 0.4280 +1457 1973 0.4880 +1457 2033 0.4700 +1457 2053 0.4670 +1457 2099 0.5040 +1457 2100 0.4470 +1457 2247 0.4250 +1457 2353 0.4570 +1457 2547 0.4210 +1457 2874 0.4270 +1457 2896 0.5170 +1457 2904 0.4080 +1457 2931 0.4460 +1457 2932 0.4960 +1457 2958 0.4390 +1457 2962 0.4520 +1457 3014 0.6820 +1457 3065 0.9610 +1457 3066 0.9720 +1457 3091 0.4140 +1457 3159 0.4250 +1457 3178 0.4600 +1457 3181 0.6320 +1457 3183 0.4260 +1457 3190 0.4860 +1457 3308 0.5500 +1457 3312 0.5470 +1457 3320 0.8800 +1457 3326 0.5590 +1457 3482 0.4160 +1457 3621 0.5600 +1457 3622 0.7240 +1457 3725 0.7010 +1457 3798 0.6720 +1457 3799 0.7190 +1457 3800 0.8000 +1457 3831 0.6900 +1457 3837 0.4740 +1457 3845 0.4900 +1457 3897 0.5340 +1457 4149 0.5140 +1457 4150 0.4060 +1457 4193 0.7280 +1457 4311 0.7130 +1457 4609 0.5750 +1457 4613 0.4060 +1457 4627 0.4080 +1457 4638 0.4470 +1457 4673 0.5620 +1457 4676 0.5810 +1457 4691 0.6290 +1457 4733 0.5710 +1457 4780 0.4850 +1457 4790 0.5650 +1457 4792 0.9290 +1457 4793 0.4140 +1457 4800 0.4740 +1457 4826 0.4930 +1457 4869 0.4220 +1457 4904 0.5710 +1457 4926 0.4440 +1457 5048 0.4460 +1457 5082 0.4490 +1457 5300 0.4680 +1457 5311 0.4390 +1457 5371 0.7530 +1457 5427 0.5170 +1457 5460 0.4510 +1457 5499 0.6050 +1457 5500 0.4020 +1457 5501 0.4300 +1457 5515 0.5650 +1457 5516 0.5410 +1457 5518 0.5090 +1457 5531 0.6770 +1457 5579 0.4160 +1457 5591 0.5030 +1457 5594 0.6490 +1457 5621 0.9390 +1457 5684 0.5390 +1457 5685 0.4070 +1457 5728 0.9710 +1457 5788 0.4720 +1457 5925 0.5890 +1457 5926 0.5520 +1457 5928 0.8600 +1457 5931 0.8260 +1457 5970 0.5890 +1457 6015 0.8190 +1457 6045 0.9110 +1457 6046 0.7880 +1457 6093 0.4230 +1457 6125 0.4610 +1457 6188 0.5670 +1457 6202 0.4160 +1457 6203 0.4450 +1457 6224 0.4140 +1457 6360 0.4260 +1457 6418 0.4170 +1457 6426 0.5510 +1457 6500 0.4570 +1457 6576 0.5170 +1457 6597 0.4690 +1457 6622 0.6760 +1457 6625 0.4140 +1457 6657 0.4450 +1457 6714 0.6230 +1457 6741 0.5070 +1457 6749 0.9360 +1457 6790 0.4290 +1457 6829 0.7010 +1457 6830 0.4880 +1457 6872 0.5730 +1457 6907 0.4070 +1457 6908 0.5980 +1457 6936 0.4050 +1457 6949 0.6760 +1457 6950 0.4770 +1457 7088 0.4740 +1457 7150 0.5000 +1457 7153 0.7110 +1457 7157 0.9590 +1457 7184 0.4120 +1457 7203 0.4520 +1457 7259 0.4780 +1457 7319 0.4290 +1457 7323 0.4180 +1457 7343 0.4420 +1457 7428 0.5470 +1457 7465 0.6430 +1457 7515 0.5160 +1457 7520 0.4530 +1457 7529 0.4620 +1457 7737 0.6070 +1457 7852 0.4170 +1457 7874 0.6390 +1457 7884 0.5510 +1457 7913 0.5070 +1457 8019 0.5090 +1457 8312 0.5760 +1457 8454 0.4200 +1457 8473 0.9820 +1457 8479 0.6980 +1457 8531 0.5570 +1457 8535 0.7000 +1457 8553 0.4200 +1457 8554 0.4190 +1457 8607 0.4920 +1457 8664 0.4300 +1457 8667 0.6410 +1457 8669 0.6210 +1457 8819 0.6110 +1457 8841 0.5870 +1457 8878 0.5940 +1457 8893 0.5070 +1457 8894 0.5510 +1457 8906 0.6540 +1457 8907 0.5600 +1457 8932 0.5500 +1457 8945 0.5810 +1457 9013 0.4850 +1457 9112 0.7700 +1457 9184 0.4210 +1457 9219 0.7750 +1457 9221 0.7460 +1457 9242 0.4270 +1457 9277 0.5830 +1457 9318 0.5420 +1457 9373 0.5370 +1457 9401 0.5110 +1457 9616 0.5580 +1457 9627 0.4050 +1457 9646 0.8710 +1457 9675 0.5840 +1457 9724 0.4920 +1457 9782 0.4210 +1457 9813 0.4560 +1457 9918 0.5420 +1457 9989 0.6100 +1457 10051 0.5110 +1457 10134 0.4320 +1457 10138 0.8930 +1457 10155 0.5940 +1457 10238 0.6070 +1457 10294 0.5530 +1457 10336 0.7830 +1457 10492 0.4840 +1457 10521 0.5300 +1457 10576 0.4490 +1457 10592 0.4510 +1457 10614 0.4860 +1457 10618 0.4460 +1457 10694 0.4130 +1457 10728 0.4150 +1457 10809 0.4490 +1457 10813 0.5830 +1457 10856 0.4270 +1457 10904 0.5500 +1457 10910 0.5740 +1457 10923 0.6960 +1457 10933 0.7320 +1457 10951 0.6380 +1457 10963 0.4140 +1457 10987 0.6440 +1457 11036 0.4400 +1457 11103 0.6280 +1457 11140 0.6870 +1457 11156 0.4580 +1457 11198 0.9270 +1457 11276 0.5630 +1457 22948 0.4960 +1457 22955 0.5000 +1457 23028 0.6490 +1457 23160 0.4300 +1457 23163 0.7720 +1457 23168 0.7670 +1457 23241 0.6660 +1457 23309 0.5830 +1457 23397 0.4250 +1457 23411 0.8350 +1457 23429 0.8990 +1457 23435 0.4220 +1457 23466 0.4990 +1457 23476 0.6360 +1457 23481 0.4950 +1457 23524 0.4250 +1457 23613 0.7060 +1457 25855 0.6930 +1457 25885 0.5330 +1457 25942 0.9500 +1457 25983 0.5870 +1457 26038 0.7400 +1457 26053 0.8520 +1457 26088 0.8250 +1457 27341 0.9550 +1457 29115 0.4620 +1457 29777 0.6010 +1457 30813 0.6050 +1457 30849 0.5510 +1457 51018 0.8400 +1457 51087 0.5480 +1457 51096 0.6970 +1457 51118 0.5990 +1457 51319 0.4650 +1457 51428 0.4550 +1457 51575 0.7200 +1457 51602 0.4820 +1457 51742 0.6310 +1457 51806 0.4330 +1457 53615 0.7770 +1457 54623 0.6590 +1457 54778 0.7340 +1457 54815 0.7840 +1457 54865 0.4730 +1457 54984 0.6150 +1457 55105 0.5070 +1457 55216 0.6150 +1457 55272 0.5990 +1457 55502 0.6630 +1457 55660 0.7160 +1457 55668 0.6070 +1457 55690 0.8070 +1457 55904 0.4180 +1457 57018 0.6080 +1457 57062 0.4570 +1457 57332 0.7740 +1457 57459 0.7180 +1457 57504 0.7400 +1457 57592 0.5100 +1457 57649 0.7220 +1457 57666 0.6290 +1457 58496 0.5880 +1457 58516 0.7320 +1457 63893 0.4040 +1457 63932 0.5210 +1457 64083 0.6100 +1457 64151 0.4490 +1457 64319 0.7930 +1457 64426 0.8230 +1457 64434 0.6030 +1457 64837 0.6760 +1457 65083 0.9100 +1457 65980 0.4250 +1457 79073 0.4220 +1457 79258 0.4360 +1457 79365 0.4490 +1457 79576 0.4260 +1457 79577 0.6290 +1457 79595 0.5740 +1457 79685 0.5400 +1457 79718 0.4300 +1457 79923 0.6080 +1457 80012 0.5110 +1457 80312 0.5470 +1457 81669 0.5770 +1457 83732 0.5820 +1457 83860 0.4300 +1457 84196 0.5310 +1457 84232 0.5050 +1457 84312 0.6520 +1457 84333 0.9220 +1457 84733 0.6490 +1457 84916 0.4040 +1457 84950 0.5900 +1457 85456 0.4250 +1457 88745 0.5210 +1457 89953 0.6750 +1457 91860 0.4330 +1457 123169 0.6980 +1457 123207 0.5190 +1457 124245 0.6210 +1457 139341 0.9090 +1457 147700 0.6750 +1457 163688 0.4420 +1457 168667 0.4050 +1457 283106 0.9000 +1457 728642 0.6410 +1459 1460 0.9990 +1459 1499 0.9450 +1459 1588 0.4470 +1459 1662 0.5980 +1459 1788 0.4500 +1459 1789 0.4320 +1459 1819 0.4480 +1459 1848 0.5130 +1459 1855 0.9300 +1459 1856 0.9180 +1459 1857 0.9270 +1459 1911 0.6510 +1459 1912 0.5040 +1459 2053 0.4670 +1459 2054 0.4060 +1459 2099 0.5320 +1459 2100 0.4510 +1459 2246 0.6270 +1459 2247 0.4530 +1459 2248 0.4300 +1459 2896 0.5250 +1459 2904 0.4060 +1459 2931 0.4420 +1459 2932 0.4730 +1459 3030 0.4550 +1459 3065 0.4460 +1459 3066 0.4290 +1459 3267 0.4060 +1459 3276 0.4370 +1459 3320 0.7640 +1459 3326 0.6610 +1459 3431 0.6540 +1459 3798 0.6650 +1459 3799 0.6820 +1459 3800 0.9460 +1459 3831 0.6780 +1459 3837 0.4800 +1459 3845 0.4900 +1459 3897 0.6840 +1459 4040 0.4430 +1459 4193 0.4600 +1459 4297 0.6480 +1459 4638 0.4140 +1459 4691 0.5290 +1459 4733 0.5260 +1459 4780 0.4820 +1459 4790 0.5790 +1459 4792 0.9270 +1459 4820 0.4510 +1459 4826 0.4260 +1459 5082 0.4400 +1459 5127 0.4020 +1459 5341 0.4350 +1459 5427 0.5130 +1459 5460 0.4610 +1459 5500 0.4030 +1459 5501 0.4020 +1459 5515 0.4310 +1459 5516 0.5020 +1459 5531 0.6220 +1459 5532 0.4310 +1459 5579 0.4300 +1459 5591 0.4290 +1459 5594 0.7860 +1459 5621 0.9150 +1459 5728 0.9540 +1459 5788 0.4860 +1459 5970 0.5050 +1459 6015 0.9090 +1459 6045 0.9200 +1459 6046 0.8700 +1459 6093 0.4470 +1459 6500 0.6170 +1459 6576 0.5220 +1459 6657 0.6040 +1459 6714 0.4850 +1459 6749 0.9040 +1459 6829 0.4700 +1459 6908 0.5800 +1459 6949 0.5660 +1459 7013 0.4420 +1459 7014 0.4130 +1459 7088 0.4610 +1459 7150 0.4070 +1459 7157 0.9390 +1459 7184 0.4350 +1459 7465 0.5850 +1459 7737 0.4150 +1459 7852 0.4140 +1459 7874 0.4750 +1459 7913 0.5970 +1459 8019 0.6650 +1459 8312 0.5880 +1459 8361 0.5050 +1459 8369 0.4950 +1459 8479 0.7200 +1459 8531 0.5730 +1459 8535 0.7000 +1459 8664 0.4020 +1459 8667 0.4210 +1459 8669 0.6930 +1459 8829 0.4100 +1459 8892 0.4040 +1459 8893 0.4910 +1459 8894 0.4200 +1459 8900 0.4580 +1459 8906 0.7530 +1459 8907 0.5730 +1459 8943 0.4330 +1459 9221 0.6730 +1459 9277 0.6330 +1459 9463 0.5630 +1459 9640 0.5220 +1459 9646 0.4430 +1459 9724 0.4900 +1459 9774 0.4640 +1459 9813 0.4640 +1459 9918 0.4610 +1459 9975 0.4550 +1459 9989 0.5380 +1459 10013 0.4250 +1459 10051 0.4870 +1459 10138 0.9150 +1459 10155 0.5850 +1459 10238 0.6590 +1459 10336 0.8430 +1459 10419 0.4770 +1459 10592 0.4580 +1459 10614 0.4620 +1459 10809 0.4160 +1459 10813 0.5080 +1459 10904 0.4950 +1459 10923 0.4520 +1459 10951 0.4430 +1459 10971 0.4870 +1459 10987 0.4710 +1459 11091 0.4600 +1459 11103 0.5980 +1459 11140 0.6300 +1459 11156 0.4500 +1459 11198 0.8910 +1459 11276 0.4980 +1459 22955 0.5030 +1459 23028 0.4350 +1459 23163 0.7670 +1459 23168 0.4590 +1459 23215 0.4430 +1459 23241 0.6010 +1459 23397 0.4220 +1459 23411 0.4890 +1459 23429 0.9210 +1459 23466 0.4990 +1459 23476 0.7790 +1459 23586 0.4600 +1459 23613 0.7420 +1459 25942 0.6910 +1459 25983 0.5800 +1459 26053 0.9270 +1459 26088 0.7640 +1459 26499 0.4320 +1459 27154 0.5930 +1459 27341 0.6790 +1459 29777 0.5720 +1459 30813 0.5370 +1459 51087 0.4910 +1459 51094 0.4310 +1459 51096 0.6240 +1459 51111 0.8500 +1459 51118 0.5940 +1459 51177 0.9810 +1459 51339 0.4640 +1459 51574 0.5370 +1459 51575 0.6480 +1459 54778 0.6240 +1459 54865 0.4780 +1459 54926 0.6030 +1459 54984 0.6180 +1459 55003 0.4340 +1459 55105 0.6410 +1459 55216 0.5050 +1459 55272 0.5960 +1459 55294 0.4200 +1459 55502 0.6000 +1459 55660 0.4660 +1459 55668 0.6200 +1459 55690 0.5930 +1459 56257 0.4400 +1459 57018 0.4760 +1459 57120 0.7160 +1459 57332 0.5820 +1459 57592 0.6550 +1459 57661 0.5840 +1459 57666 0.8250 +1459 58496 0.5880 +1459 63932 0.5260 +1459 64061 0.4080 +1459 64083 0.6270 +1459 64112 0.4230 +1459 64151 0.4240 +1459 64319 0.8610 +1459 64397 0.4040 +1459 64434 0.6010 +1459 64837 0.6790 +1459 65083 0.7660 +1459 79576 0.6950 +1459 79923 0.4720 +1459 80012 0.6560 +1459 80198 0.4170 +1459 81833 0.4140 +1459 83893 0.5830 +1459 84108 0.5360 +1459 84232 0.4730 +1459 84264 0.6010 +1459 84333 0.9230 +1459 84365 0.4500 +1459 84678 0.4190 +1459 84733 0.6300 +1459 84759 0.6180 +1459 84923 0.5230 +1459 88745 0.5080 +1459 89953 0.6770 +1459 90933 0.5470 +1459 93474 0.4910 +1459 123207 0.5210 +1459 124245 0.5630 +1459 133957 0.4910 +1459 139341 0.9350 +1459 147339 0.6980 +1459 147700 0.6760 +1459 283106 0.9010 +1459 283417 0.4290 +1459 338917 0.5160 +1459 728642 0.6310 +1460 1487 0.5000 +1460 1488 0.5090 +1460 1495 0.4290 +1460 1499 0.9550 +1460 1528 0.4200 +1460 1662 0.6470 +1460 1855 0.9170 +1460 1856 0.9400 +1460 1857 0.9170 +1460 1911 0.4990 +1460 1912 0.5520 +1460 2017 0.4220 +1460 2079 0.4660 +1460 2932 0.4810 +1460 3059 0.4210 +1460 3181 0.5260 +1460 3190 0.4090 +1460 3320 0.6080 +1460 3551 0.4800 +1460 3798 0.6590 +1460 3799 0.6690 +1460 3800 0.7490 +1460 3831 0.6780 +1460 3897 0.5000 +1460 4067 0.4920 +1460 4593 0.4290 +1460 4792 0.9640 +1460 5058 0.4130 +1460 5082 0.4490 +1460 5305 0.5310 +1460 5499 0.4930 +1460 5515 0.4880 +1460 5518 0.4130 +1460 5590 0.4510 +1460 5621 0.9090 +1460 5728 0.9100 +1460 5959 0.4240 +1460 6015 0.7200 +1460 6045 0.9020 +1460 6046 0.8430 +1460 6125 0.7920 +1460 6171 0.4470 +1460 6195 0.7520 +1460 6196 0.6040 +1460 6197 0.6880 +1460 6249 0.5880 +1460 6625 0.4020 +1460 6714 0.5770 +1460 6741 0.4500 +1460 6749 0.9430 +1460 6829 0.4560 +1460 7126 0.5270 +1460 7150 0.4050 +1460 7153 0.6210 +1460 7155 0.4450 +1460 7157 0.8430 +1460 7415 0.4590 +1460 7465 0.5820 +1460 7917 0.4280 +1460 7919 0.5490 +1460 7920 0.4010 +1460 7936 0.4790 +1460 8019 0.5030 +1460 8396 0.4550 +1460 8428 0.4810 +1460 8479 0.6210 +1460 8535 0.6990 +1460 8643 0.4120 +1460 8663 0.4250 +1460 8666 0.4050 +1460 8726 0.4080 +1460 8826 0.4770 +1460 8894 0.4050 +1460 8930 0.4230 +1460 8945 0.5480 +1460 9136 0.4570 +1460 9184 0.4840 +1460 9221 0.5240 +1460 9277 0.5990 +1460 9373 0.5390 +1460 9575 0.5990 +1460 9616 0.6960 +1460 9646 0.7000 +1460 9782 0.4170 +1460 9918 0.4190 +1460 10051 0.4420 +1460 10138 0.8500 +1460 10163 0.4020 +1460 10170 0.4240 +1460 10238 0.5300 +1460 10336 0.7710 +1460 10467 0.4870 +1460 10592 0.4300 +1460 10614 0.5380 +1460 10809 0.4080 +1460 11103 0.5900 +1460 11140 0.5080 +1460 11198 0.9260 +1460 22955 0.5030 +1460 23211 0.4360 +1460 23363 0.4220 +1460 23397 0.4090 +1460 23411 0.4520 +1460 23429 0.9640 +1460 23466 0.4990 +1460 23476 0.6130 +1460 23492 0.6380 +1460 23613 0.4930 +1460 26053 0.8540 +1460 27341 0.9440 +1460 30813 0.4780 +1460 51077 0.5720 +1460 51118 0.5900 +1460 51131 0.5040 +1460 51177 0.6840 +1460 51339 0.4820 +1460 51574 0.5420 +1460 51710 0.4410 +1460 51806 0.4160 +1460 54205 0.5000 +1460 55216 0.4500 +1460 55272 0.6110 +1460 55813 0.6610 +1460 56257 0.4490 +1460 57018 0.4470 +1460 57332 0.8130 +1460 57553 0.4250 +1460 57661 0.4270 +1460 57666 0.5180 +1460 57680 0.4730 +1460 58496 0.8770 +1460 64151 0.4050 +1460 64319 0.7010 +1460 64837 0.6780 +1460 65083 0.9350 +1460 79050 0.5790 +1460 79577 0.5080 +1460 79837 0.5030 +1460 80012 0.6870 +1460 80741 0.5410 +1460 80777 0.4610 +1460 84135 0.6410 +1460 84333 0.9610 +1460 84733 0.7400 +1460 84950 0.5330 +1460 84955 0.6220 +1460 85456 0.4430 +1460 88745 0.5880 +1460 89953 0.6770 +1460 91860 0.4060 +1460 92856 0.6050 +1460 139341 0.9060 +1460 147700 0.6750 +1460 163688 0.4060 +1460 283106 0.9670 +1460 728642 0.6260 +1462 1463 0.9670 +1462 1464 0.6050 +1462 1490 0.4070 +1462 1499 0.4090 +1462 1634 0.9810 +1462 1893 0.5520 +1462 1950 0.5700 +1462 2027 0.4500 +1462 2192 0.8330 +1462 2199 0.5730 +1462 2200 0.9100 +1462 2219 0.5220 +1462 2239 0.6270 +1462 2247 0.4040 +1462 2262 0.5670 +1462 2274 0.4140 +1462 2331 0.7670 +1462 2335 0.8660 +1462 2597 0.4010 +1462 2719 0.6460 +1462 2817 0.8080 +1462 2919 0.4960 +1462 3036 0.4800 +1462 3037 0.6150 +1462 3038 0.4020 +1462 3082 0.5250 +1462 3161 0.4220 +1462 3339 0.8050 +1462 3371 0.6140 +1462 3373 0.4030 +1462 3418 0.4090 +1462 3486 0.5200 +1462 3552 0.5370 +1462 3569 0.4970 +1462 3676 0.5610 +1462 3688 0.6670 +1462 4060 0.7100 +1462 4237 0.4270 +1462 4312 0.6290 +1462 4313 0.5050 +1462 4314 0.6290 +1462 4318 0.7830 +1462 4478 0.4350 +1462 4653 0.4350 +1462 4897 0.5770 +1462 4969 0.7290 +1462 5054 0.5530 +1462 5178 0.4050 +1462 5329 0.4880 +1462 5552 0.6450 +1462 5792 0.4740 +1462 5803 0.9550 +1462 5962 0.4210 +1462 6347 0.5170 +1462 6357 0.4350 +1462 6364 0.4330 +1462 6382 0.7930 +1462 6383 0.6900 +1462 6385 0.7110 +1462 6387 0.5290 +1462 6402 0.9220 +1462 6403 0.6390 +1462 6404 0.6430 +1462 6678 0.4690 +1462 6696 0.6310 +1462 6876 0.4010 +1462 7040 0.6450 +1462 7045 0.5120 +1462 7057 0.7780 +1462 7058 0.6360 +1462 7076 0.4960 +1462 7097 0.9230 +1462 7099 0.6050 +1462 7130 0.7990 +1462 7143 0.5470 +1462 7148 0.7570 +1462 7430 0.4550 +1462 8091 0.5020 +1462 8692 0.4240 +1462 9332 0.4340 +1462 9469 0.6050 +1462 9507 0.5700 +1462 9508 0.5190 +1462 9510 0.6730 +1462 9672 0.7620 +1462 10082 0.6110 +1462 10090 0.4790 +1462 10216 0.5420 +1462 10631 0.6070 +1462 10675 0.5640 +1462 10782 0.4340 +1462 10894 0.8190 +1462 11096 0.5270 +1462 11151 0.4340 +1462 11285 0.4780 +1462 22801 0.4160 +1462 22856 0.5510 +1462 23114 0.4300 +1462 23213 0.4220 +1462 26229 0.5440 +1462 27087 0.4460 +1462 29940 0.5250 +1462 50515 0.5320 +1462 51363 0.5480 +1462 54480 0.4670 +1462 54757 0.4250 +1462 54829 0.6480 +1462 55454 0.5120 +1462 55501 0.5310 +1462 55790 0.5660 +1462 56548 0.4770 +1462 56975 0.6580 +1462 56999 0.6130 +1462 57142 0.4280 +1462 57453 0.4400 +1462 57731 0.4910 +1462 60484 0.4350 +1462 63827 0.9760 +1462 63923 0.6130 +1462 64131 0.5350 +1462 64132 0.4780 +1462 64167 0.5050 +1462 64581 0.4050 +1462 65078 0.4650 +1462 78994 0.4070 +1462 79586 0.4950 +1462 79887 0.4370 +1462 92126 0.4450 +1462 113189 0.5000 +1462 115908 0.5490 +1462 126792 0.5000 +1462 135152 0.4390 +1462 166012 0.4750 +1462 221914 0.6020 +1462 337876 0.4420 +1462 349667 0.5110 +1462 375790 0.8060 +1463 1464 0.5480 +1463 1634 0.6450 +1463 2239 0.5800 +1463 2262 0.6250 +1463 2588 0.4080 +1463 2596 0.4450 +1463 2621 0.5630 +1463 2646 0.5410 +1463 2670 0.5310 +1463 2719 0.5620 +1463 2720 0.4370 +1463 2817 0.8140 +1463 3339 0.5890 +1463 3371 0.6820 +1463 3897 0.9650 +1463 4099 0.5350 +1463 4137 0.4850 +1463 4684 0.9690 +1463 4978 0.4090 +1463 5627 0.4970 +1463 5764 0.5890 +1463 5792 0.4380 +1463 5802 0.4720 +1463 5803 0.9760 +1463 5816 0.4310 +1463 6010 0.5420 +1463 6382 0.6070 +1463 6383 0.5930 +1463 6385 0.5810 +1463 6900 0.7740 +1463 7143 0.7460 +1463 7148 0.5530 +1463 7200 0.4020 +1463 7301 0.5930 +1463 8625 0.7550 +1463 9148 0.5270 +1463 9469 0.5710 +1463 9672 0.7740 +1463 9881 0.4350 +1463 10082 0.5930 +1463 10090 0.4850 +1463 10221 0.4690 +1463 10461 0.4910 +1463 10675 0.7470 +1463 11285 0.4410 +1463 22856 0.5100 +1463 23190 0.4290 +1463 26011 0.6170 +1463 26229 0.4400 +1463 27087 0.5060 +1463 27329 0.4310 +1463 29940 0.4380 +1463 50515 0.4730 +1463 51363 0.4800 +1463 53345 0.7460 +1463 54480 0.4380 +1463 54492 0.4470 +1463 55454 0.4390 +1463 55501 0.4740 +1463 55790 0.4760 +1463 56548 0.4710 +1463 63827 0.9550 +1463 63923 0.5680 +1463 64131 0.4560 +1463 64132 0.4410 +1463 79586 0.4950 +1463 79660 0.6620 +1463 80339 0.7500 +1463 80714 0.5430 +1463 81551 0.4420 +1463 91752 0.4030 +1463 92126 0.4400 +1463 113189 0.4570 +1463 126792 0.4650 +1463 127018 0.6960 +1463 135152 0.4510 +1463 148113 0.5810 +1463 166012 0.4740 +1463 221914 0.6580 +1463 326625 0.4350 +1463 375790 0.6880 +1463 404037 0.5980 +1463 100271849 0.7570 +1464 1499 0.5260 +1464 1634 0.7730 +1464 1909 0.4660 +1464 1950 0.5430 +1464 1956 0.6200 +1464 2239 0.5740 +1464 2246 0.4090 +1464 2247 0.8130 +1464 2248 0.4940 +1464 2249 0.4960 +1464 2250 0.4910 +1464 2251 0.4920 +1464 2252 0.5130 +1464 2253 0.4910 +1464 2254 0.4950 +1464 2255 0.4950 +1464 2261 0.4660 +1464 2262 0.5490 +1464 2335 0.6490 +1464 2535 0.4390 +1464 2572 0.4560 +1464 2670 0.5940 +1464 2719 0.6240 +1464 2817 0.7250 +1464 3339 0.7350 +1464 3958 0.8970 +1464 4072 0.4310 +1464 4155 0.5410 +1464 4162 0.5900 +1464 4240 0.4610 +1464 4325 0.5000 +1464 4340 0.4160 +1464 4629 0.4420 +1464 5156 0.7710 +1464 5159 0.7750 +1464 5175 0.4720 +1464 5327 0.4510 +1464 5340 0.4350 +1464 5354 0.6080 +1464 5649 0.4300 +1464 5788 0.5230 +1464 5803 0.4870 +1464 5817 0.5820 +1464 6347 0.4270 +1464 6382 0.6530 +1464 6383 0.6160 +1464 6385 0.6190 +1464 6403 0.4550 +1464 6476 0.4770 +1464 6490 0.4700 +1464 6663 0.5580 +1464 6876 0.4370 +1464 7057 0.4890 +1464 7299 0.4150 +1464 8321 0.5300 +1464 8777 0.7120 +1464 8795 0.4480 +1464 8817 0.4950 +1464 8822 0.4970 +1464 8823 0.4930 +1464 9469 0.5580 +1464 9672 0.6990 +1464 10082 0.5870 +1464 10090 0.4560 +1464 10215 0.8980 +1464 10216 0.6320 +1464 10631 0.4190 +1464 10675 0.5690 +1464 10763 0.5570 +1464 10840 0.4220 +1464 11285 0.4180 +1464 22856 0.5450 +1464 23314 0.4330 +1464 23426 0.7160 +1464 25945 0.6350 +1464 26229 0.4050 +1464 26281 0.4850 +1464 27006 0.4920 +1464 27087 0.4560 +1464 27319 0.4070 +1464 29126 0.5700 +1464 29940 0.4700 +1464 50515 0.5130 +1464 51363 0.4580 +1464 54480 0.5080 +1464 55454 0.5050 +1464 55501 0.4920 +1464 55790 0.4970 +1464 56548 0.5210 +1464 57030 0.4370 +1464 57060 0.4570 +1464 57124 0.4380 +1464 63827 0.7220 +1464 63973 0.4250 +1464 64131 0.4950 +1464 64132 0.4790 +1464 79586 0.5530 +1464 80321 0.5620 +1464 84168 0.4670 +1464 92126 0.4440 +1464 113189 0.4330 +1464 116448 0.8220 +1464 133121 0.4080 +1464 135152 0.4040 +1464 166012 0.5380 +1464 221914 0.6080 +1464 337876 0.4680 +1464 375790 0.6630 +1465 1808 0.4600 +1465 2023 0.4920 +1465 2052 0.4070 +1465 2316 0.5900 +1465 2597 0.4560 +1465 3670 0.5140 +1465 4004 0.7170 +1465 4005 0.5580 +1465 4520 0.7700 +1465 4656 0.6340 +1465 6277 0.4600 +1465 6678 0.6450 +1465 6876 0.5190 +1465 7791 0.6940 +1465 8021 0.4860 +1465 9282 0.7180 +1465 10226 0.4050 +1465 10398 0.5600 +1465 10627 0.4010 +1465 11332 0.4190 +1465 23171 0.4060 +1465 23411 0.4200 +1465 79026 0.4740 +1465 83442 0.4680 +1465 140462 0.4480 +1466 2316 0.4420 +1466 4004 0.5000 +1466 5617 0.4240 +1466 6154 0.4110 +1466 6678 0.5960 +1466 6722 0.5700 +1466 6876 0.5000 +1466 8554 0.6330 +1466 9025 0.4240 +1466 9282 0.4260 +1466 10398 0.4230 +1466 51065 0.4240 +1466 51588 0.4220 +1466 54461 0.4070 +1466 140628 0.4450 +1466 165918 0.4260 +1468 1537 0.4520 +1468 4188 0.5990 +1468 4723 0.4430 +1468 4726 0.4070 +1468 5245 0.5040 +1468 5250 0.5870 +1468 5827 0.4380 +1468 5833 0.4690 +1468 6182 0.5700 +1468 6576 0.4620 +1468 10648 0.4160 +1468 11272 0.4400 +1468 23787 0.8760 +1468 23788 0.8080 +1468 51629 0.4550 +1468 55210 0.4360 +1468 57142 0.4730 +1468 64077 0.4500 +1468 94031 0.4470 +1468 115286 0.4060 +1468 374291 0.4810 +1469 1470 0.9990 +1469 1472 0.9290 +1469 1475 0.6540 +1469 1476 0.5950 +1469 1514 0.5870 +1469 1520 0.4470 +1469 2959 0.4220 +1469 3933 0.4880 +1469 4057 0.4200 +1469 4733 0.4040 +1469 5304 0.7030 +1469 5641 0.4200 +1469 6280 0.5250 +1469 6779 0.5820 +1469 8706 0.4200 +1469 29107 0.4420 +1469 50862 0.4290 +1469 51297 0.4330 +1469 55313 0.9400 +1469 64412 0.4420 +1469 84569 0.4760 +1469 92181 0.5240 +1469 93107 0.5150 +1469 117159 0.4500 +1469 140683 0.4900 +1469 401137 0.4300 +1470 1472 0.7850 +1470 1475 0.6810 +1470 1476 0.7040 +1470 1508 0.4310 +1470 1520 0.5060 +1470 2959 0.4200 +1470 3933 0.4350 +1470 5641 0.5260 +1470 7351 0.4210 +1470 29094 0.4080 +1470 55313 0.9170 +1470 84886 0.4920 +1470 128822 0.4560 +1471 1475 0.6290 +1471 1476 0.8550 +1471 1508 0.9820 +1471 1509 0.6220 +1471 1512 0.5600 +1471 1513 0.6520 +1471 1514 0.8020 +1471 1515 0.4810 +1471 1520 0.9510 +1471 1522 0.4350 +1471 1524 0.4530 +1471 1636 0.6670 +1471 1675 0.4480 +1471 2147 0.4480 +1471 2167 0.4610 +1471 2168 0.7710 +1471 2243 0.5320 +1471 2247 0.4670 +1471 2638 0.4200 +1471 2806 0.5430 +1471 2875 0.6450 +1471 2896 0.4420 +1471 2934 0.7150 +1471 3078 0.4260 +1471 3240 0.4360 +1471 3339 0.5840 +1471 3375 0.5180 +1471 3383 0.5210 +1471 3485 0.4030 +1471 3490 0.6420 +1471 3552 0.4630 +1471 3553 0.4400 +1471 3569 0.6000 +1471 3606 0.6600 +1471 3630 0.7610 +1471 3934 0.9240 +1471 3952 0.6240 +1471 3958 0.5410 +1471 4036 0.4190 +1471 4057 0.6060 +1471 4069 0.6740 +1471 4151 0.4920 +1471 4240 0.4260 +1471 4313 0.5800 +1471 4318 0.4260 +1471 4353 0.4340 +1471 4854 0.5350 +1471 4868 0.4100 +1471 4878 0.6250 +1471 4879 0.6200 +1471 5054 0.6970 +1471 5144 0.4510 +1471 5216 0.4890 +1471 5265 0.4640 +1471 5345 0.5810 +1471 5617 0.5240 +1471 5621 0.6630 +1471 5641 0.6910 +1471 5660 0.4030 +1471 5730 0.7490 +1471 5741 0.5960 +1471 5905 0.5180 +1471 5919 0.4440 +1471 5950 0.4340 +1471 5972 0.6940 +1471 6283 0.4660 +1471 6288 0.5870 +1471 6291 0.5210 +1471 6347 0.4880 +1471 6356 0.4360 +1471 6406 0.4840 +1471 6524 0.4290 +1471 6622 0.5560 +1471 6647 0.5790 +1471 6696 0.7270 +1471 7033 0.5560 +1471 7040 0.4080 +1471 7045 0.5860 +1471 7048 0.4690 +1471 7076 0.6990 +1471 7077 0.6030 +1471 7124 0.5060 +1471 7137 0.4880 +1471 7139 0.4550 +1471 7276 0.8650 +1471 7305 0.4190 +1471 7369 0.6110 +1471 7450 0.5860 +1471 7531 0.4650 +1471 7534 0.4840 +1471 7941 0.4080 +1471 8074 0.5870 +1471 8542 0.4490 +1471 9365 0.4330 +1471 9370 0.6520 +1471 9445 0.8960 +1471 9518 0.7460 +1471 10516 0.5060 +1471 10631 0.4030 +1471 10724 0.7360 +1471 10878 0.4390 +1471 23037 0.4150 +1471 51806 0.4330 +1471 54205 0.4450 +1471 54959 0.4250 +1471 55313 0.7580 +1471 56975 0.6810 +1471 57537 0.4610 +1471 83872 0.5250 +1471 84839 0.4260 +1471 85477 0.4710 +1471 91860 0.4280 +1471 128817 0.4200 +1471 128822 0.5630 +1471 163688 0.4280 +1471 100528017 0.4830 +1472 1475 0.6980 +1472 1476 0.7310 +1472 1508 0.7830 +1472 1509 0.4320 +1472 1514 0.5280 +1472 1520 0.8810 +1472 3346 0.7380 +1472 3347 0.5430 +1472 3933 0.8910 +1472 4025 0.4300 +1472 4057 0.5970 +1472 4069 0.4270 +1472 4589 0.7320 +1472 5047 0.4650 +1472 5284 0.6170 +1472 5304 0.6910 +1472 5641 0.5850 +1472 5730 0.4030 +1472 6277 0.5450 +1472 6279 0.5070 +1472 6779 0.7760 +1472 7351 0.4140 +1472 8722 0.4110 +1472 9034 0.5940 +1472 9373 0.5160 +1472 9622 0.4090 +1472 10648 0.4080 +1472 11272 0.5710 +1472 51297 0.4510 +1472 55313 0.4630 +1472 84569 0.4810 +1472 90070 0.5070 +1472 92181 0.4200 +1472 93107 0.5700 +1472 117159 0.5460 +1472 124220 0.5180 +1472 128822 0.5140 +1472 140683 0.4410 +1472 727897 0.8430 +1473 1475 0.6000 +1473 1476 0.6440 +1473 1514 0.5920 +1473 1520 0.5400 +1473 4057 0.4520 +1473 5304 0.4180 +1473 5641 0.4580 +1473 6779 0.4230 +1473 8712 0.4090 +1473 26952 0.4250 +1473 55313 0.4190 +1473 117159 0.4050 +1473 128822 0.5380 +1473 140683 0.5040 +1473 644414 0.5200 +1474 1475 0.4200 +1474 1508 0.4820 +1474 1514 0.5610 +1474 1515 0.5800 +1474 1520 0.7600 +1474 2312 0.4460 +1474 4014 0.7900 +1474 5641 0.9970 +1474 5905 0.5180 +1474 7053 0.8670 +1474 11186 0.4320 +1474 25855 0.5090 +1474 26154 0.8130 +1474 26298 0.4010 +1474 84312 0.4790 +1474 128821 0.4130 +1474 128822 0.5360 +1474 388698 0.5070 +1475 1508 0.9980 +1475 1509 0.4180 +1475 1512 0.9640 +1475 1514 0.9920 +1475 1515 0.9600 +1475 1520 0.9210 +1475 1823 0.6170 +1475 1824 0.6020 +1475 1825 0.6040 +1475 1828 0.7290 +1475 1829 0.5430 +1475 1830 0.5880 +1475 1832 0.7850 +1475 1992 0.4450 +1475 2125 0.6900 +1475 2171 0.5620 +1475 2206 0.5030 +1475 2312 0.6520 +1475 3557 0.4350 +1475 3713 0.7770 +1475 3728 0.6800 +1475 3848 0.5460 +1475 4014 0.7800 +1475 4678 0.4620 +1475 4689 0.4800 +1475 5054 0.5950 +1475 5104 0.5720 +1475 5266 0.7760 +1475 5269 0.6970 +1475 5275 0.4460 +1475 5317 0.6580 +1475 5318 0.4990 +1475 5327 0.5510 +1475 5328 0.6120 +1475 5493 0.6670 +1475 5641 0.4710 +1475 5764 0.4470 +1475 5905 0.5180 +1475 6278 0.4630 +1475 6279 0.6410 +1475 6280 0.6690 +1475 6283 0.5590 +1475 6317 0.6640 +1475 6318 0.6150 +1475 6698 0.6900 +1475 6699 0.7000 +1475 6700 0.6230 +1475 6701 0.6540 +1475 6703 0.6290 +1475 6704 0.5790 +1475 6705 0.5960 +1475 6706 0.5460 +1475 6707 0.7020 +1475 6779 0.4060 +1475 7051 0.8880 +1475 7062 0.5710 +1475 7305 0.5740 +1475 7357 0.4320 +1475 7448 0.5510 +1475 7545 0.4170 +1475 8502 0.4990 +1475 8530 0.4990 +1475 9333 0.4830 +1475 9518 0.4050 +1475 9703 0.4060 +1475 10802 0.7130 +1475 11005 0.4230 +1475 11187 0.5280 +1475 11202 0.5510 +1475 23581 0.6660 +1475 26239 0.5040 +1475 64377 0.5290 +1475 84561 0.9580 +1475 84648 0.5130 +1475 89777 0.4060 +1475 117159 0.4540 +1475 126638 0.5720 +1475 147409 0.6150 +1475 149018 0.6070 +1475 199834 0.4990 +1475 254910 0.4990 +1475 352999 0.4350 +1475 353131 0.4990 +1475 353132 0.5020 +1475 353133 0.5040 +1475 353134 0.4990 +1475 353135 0.5030 +1475 353137 0.4990 +1475 353139 0.5030 +1475 353140 0.5060 +1475 353141 0.4990 +1475 353142 0.4990 +1475 353143 0.6060 +1475 353144 0.6060 +1475 353145 0.5090 +1475 388698 0.4300 +1475 448835 0.4990 +1476 1508 0.9480 +1476 1509 0.4930 +1476 1512 0.7610 +1476 1514 0.9540 +1476 1520 0.9040 +1476 1522 0.4660 +1476 2335 0.4760 +1476 2629 0.4770 +1476 3015 0.4990 +1476 3689 0.4310 +1476 3786 0.6750 +1476 4502 0.7420 +1476 4747 0.6350 +1476 5211 0.6640 +1476 5266 0.4700 +1476 5641 0.5150 +1476 5822 0.5650 +1476 5905 0.5190 +1476 6707 0.4890 +1476 7031 0.5240 +1476 7109 0.7930 +1476 7295 0.4430 +1476 7957 0.4270 +1476 8349 0.4760 +1476 8530 0.5010 +1476 8568 0.8110 +1476 8722 0.4240 +1476 10399 0.6560 +1476 23076 0.8800 +1476 51806 0.4150 +1476 54205 0.4600 +1476 128822 0.4290 +1476 144165 0.8070 +1476 154881 0.5330 +1476 378884 0.8250 +1477 1478 0.9990 +1477 1479 0.9990 +1477 4670 0.4450 +1477 4686 0.7040 +1477 5073 0.6000 +1477 5595 0.4770 +1477 5888 0.4150 +1477 5930 0.4440 +1477 6241 0.4690 +1477 6426 0.4380 +1477 6429 0.4320 +1477 6431 0.5580 +1477 6625 0.5990 +1477 6626 0.4860 +1477 6790 0.6000 +1477 7073 0.4130 +1477 7157 0.5860 +1477 7321 0.4370 +1477 7884 0.4670 +1477 8106 0.8860 +1477 8189 0.9390 +1477 8315 0.5260 +1477 8683 0.4220 +1477 9577 0.5250 +1477 9937 0.4890 +1477 10189 0.6470 +1477 10291 0.4400 +1477 10898 0.9740 +1477 10914 0.8890 +1477 10921 0.4080 +1477 10923 0.4200 +1477 10978 0.7250 +1477 11051 0.9000 +1477 11052 0.8650 +1477 22828 0.5510 +1477 22916 0.5490 +1477 22974 0.5410 +1477 23144 0.7740 +1477 23172 0.4430 +1477 23211 0.6620 +1477 23214 0.4490 +1477 23283 0.9960 +1477 23450 0.4100 +1477 23640 0.4830 +1477 25758 0.4950 +1477 25802 0.4910 +1477 25885 0.5840 +1477 26173 0.6570 +1477 26512 0.6360 +1477 29101 0.7730 +1477 29894 0.9660 +1477 51585 0.9400 +1477 51692 0.9820 +1477 51720 0.4290 +1477 53981 0.9980 +1477 54165 0.4360 +1477 54919 0.4410 +1477 54973 0.6470 +1477 55339 0.8560 +1477 55622 0.5310 +1477 55756 0.6440 +1477 55795 0.5500 +1477 56181 0.4610 +1477 56903 0.7800 +1477 57091 0.5690 +1477 57446 0.4860 +1477 64421 0.5830 +1477 64848 0.8760 +1477 64858 0.4930 +1477 64895 0.7860 +1477 65123 0.6840 +1477 79869 0.9080 +1477 81608 0.9410 +1477 84524 0.7260 +1477 91614 0.5310 +1477 91746 0.8820 +1477 134353 0.4510 +1477 136157 0.6080 +1477 143506 0.6080 +1477 154197 0.5620 +1477 196120 0.6080 +1477 202018 0.8080 +1477 376940 0.6610 +1477 390031 0.6080 +1477 390033 0.6080 +1477 441584 0.6080 +1477 642843 0.8590 +1478 1479 0.9990 +1478 1653 0.6200 +1478 1975 0.5210 +1478 1994 0.5130 +1478 2521 0.4030 +1478 2959 0.4030 +1478 3178 0.5820 +1478 3182 0.5100 +1478 3183 0.7150 +1478 3184 0.5310 +1478 3185 0.5380 +1478 3187 0.7290 +1478 3188 0.5930 +1478 3190 0.4570 +1478 4149 0.6010 +1478 4440 0.6640 +1478 4686 0.7930 +1478 4809 0.4010 +1478 4841 0.4570 +1478 4848 0.5140 +1478 5033 0.4350 +1478 5073 0.4670 +1478 5094 0.6330 +1478 5394 0.4660 +1478 5432 0.4590 +1478 5499 0.5680 +1478 5500 0.5450 +1478 5501 0.5070 +1478 5725 0.4320 +1478 5930 0.9290 +1478 6294 0.4060 +1478 6426 0.4170 +1478 6427 0.7250 +1478 6428 0.5520 +1478 6432 0.4530 +1478 6626 0.7680 +1478 6628 0.5560 +1478 6631 0.6140 +1478 6632 0.5900 +1478 6633 0.6320 +1478 6634 0.5340 +1478 6635 0.5890 +1478 6636 0.5070 +1478 6637 0.5370 +1478 6732 0.4760 +1478 6733 0.4510 +1478 6829 0.4250 +1478 7307 0.4020 +1478 7884 0.6380 +1478 7919 0.4040 +1478 8106 0.8550 +1478 8189 0.9990 +1478 8243 0.5280 +1478 8570 0.4810 +1478 8621 0.4330 +1478 8697 0.5510 +1478 9092 0.4020 +1478 9330 0.7610 +1478 9656 0.5100 +1478 9667 0.4220 +1478 9972 0.4100 +1478 9987 0.5460 +1478 9994 0.4930 +1478 10189 0.7540 +1478 10250 0.4420 +1478 10285 0.6030 +1478 10291 0.6050 +1478 10482 0.4290 +1478 10528 0.4870 +1478 10594 0.4320 +1478 10658 0.4130 +1478 10898 0.9970 +1478 10914 0.9670 +1478 10921 0.6570 +1478 10923 0.8090 +1478 10929 0.5230 +1478 10946 0.5510 +1478 10949 0.5130 +1478 10978 0.9770 +1478 10992 0.5810 +1478 11051 0.9830 +1478 11052 0.9920 +1478 11269 0.5250 +1478 11338 0.5070 +1478 22803 0.5960 +1478 22828 0.6940 +1478 22916 0.6610 +1478 22936 0.6370 +1478 23144 0.7230 +1478 23211 0.5540 +1478 23283 0.9890 +1478 23435 0.4330 +1478 23450 0.4490 +1478 23451 0.6350 +1478 23476 0.4350 +1478 23534 0.4410 +1478 23649 0.4760 +1478 25802 0.8910 +1478 25888 0.4130 +1478 25973 0.5270 +1478 26173 0.5710 +1478 26512 0.5960 +1478 26528 0.6270 +1478 26986 0.4260 +1478 27316 0.4430 +1478 29101 0.9450 +1478 29894 0.9980 +1478 51010 0.4770 +1478 51585 0.9910 +1478 51690 0.4590 +1478 51692 0.9990 +1478 51755 0.4450 +1478 53981 0.9990 +1478 54715 0.4480 +1478 54973 0.6150 +1478 55015 0.4600 +1478 55339 0.9900 +1478 55756 0.5910 +1478 55954 0.4200 +1478 56903 0.9410 +1478 57710 0.4990 +1478 58517 0.5530 +1478 64506 0.7270 +1478 64852 0.7090 +1478 64895 0.8920 +1478 65123 0.5550 +1478 79042 0.8070 +1478 79084 0.5550 +1478 79577 0.6330 +1478 79869 0.9860 +1478 79882 0.4040 +1478 80335 0.8840 +1478 80746 0.8120 +1478 81608 0.9900 +1478 84135 0.4280 +1478 84524 0.5660 +1478 84823 0.4640 +1478 84967 0.7150 +1478 90025 0.4460 +1478 116461 0.8140 +1478 117246 0.4450 +1478 124540 0.6410 +1478 134353 0.8280 +1478 136157 0.7740 +1478 139804 0.4420 +1478 143506 0.7740 +1478 144983 0.5130 +1478 196120 0.7740 +1478 220988 0.4460 +1478 221895 0.4950 +1478 283989 0.8010 +1478 376940 0.5180 +1478 390031 0.7740 +1478 390033 0.7740 +1478 441584 0.7740 +1478 642843 0.8720 +1478 643988 0.5300 +1478 100529063 0.6170 +1479 1653 0.4660 +1479 1662 0.5700 +1479 2023 0.9100 +1479 2026 0.9080 +1479 2027 0.9080 +1479 2193 0.4010 +1479 2203 0.4220 +1479 2271 0.4240 +1479 2539 0.4150 +1479 2597 0.6990 +1479 2618 0.5830 +1479 2819 0.4210 +1479 2821 0.5990 +1479 3191 0.4400 +1479 3426 0.4950 +1479 4143 0.4330 +1479 4144 0.4400 +1479 4440 0.4740 +1479 4670 0.6450 +1479 4686 0.7590 +1479 5096 0.4290 +1479 5207 0.5560 +1479 5208 0.5570 +1479 5209 0.5560 +1479 5210 0.5560 +1479 5211 0.4730 +1479 5213 0.4830 +1479 5214 0.4780 +1479 5230 0.9280 +1479 5232 0.9270 +1479 5313 0.5570 +1479 5315 0.5640 +1479 5394 0.5300 +1479 5431 0.5140 +1479 5636 0.4200 +1479 5702 0.6950 +1479 5704 0.6890 +1479 5706 0.6920 +1479 5723 0.4640 +1479 5832 0.4240 +1479 5930 0.8740 +1479 6120 0.6380 +1479 6426 0.6520 +1479 6429 0.5860 +1479 6430 0.5850 +1479 6431 0.5810 +1479 6619 0.5760 +1479 6625 0.7310 +1479 6626 0.6360 +1479 7072 0.6700 +1479 7073 0.6010 +1479 7083 0.4720 +1479 7158 0.5050 +1479 7167 0.9830 +1479 7298 0.4490 +1479 7514 0.4030 +1479 7884 0.6090 +1479 7915 0.4090 +1479 7919 0.5130 +1479 8050 0.5030 +1479 8106 0.8870 +1479 8189 0.9990 +1479 8659 0.4260 +1479 8683 0.5940 +1479 8697 0.4940 +1479 8789 0.4050 +1479 8802 0.4070 +1479 8854 0.4020 +1479 9295 0.4140 +1479 9343 0.4450 +1479 9416 0.4850 +1479 9563 0.4420 +1479 9937 0.4310 +1479 10102 0.4380 +1479 10189 0.6460 +1479 10212 0.4060 +1479 10478 0.4550 +1479 10480 0.8270 +1479 10856 0.4910 +1479 10898 0.9950 +1479 10914 0.9880 +1479 10923 0.4530 +1479 10946 0.4530 +1479 10978 0.9040 +1479 11051 0.9020 +1479 11052 0.8670 +1479 11066 0.5600 +1479 11338 0.4540 +1479 22803 0.5710 +1479 22828 0.4220 +1479 22894 0.4130 +1479 22916 0.7080 +1479 23064 0.4480 +1479 23144 0.6550 +1479 23171 0.4260 +1479 23211 0.6600 +1479 23283 0.9980 +1479 23435 0.4330 +1479 23534 0.4600 +1479 24149 0.5710 +1479 25758 0.9090 +1479 25802 0.4950 +1479 26173 0.6330 +1479 26330 0.6040 +1479 26512 0.6130 +1479 26528 0.4860 +1479 26986 0.5280 +1479 29101 0.6710 +1479 29789 0.6420 +1479 29889 0.4370 +1479 29894 0.9990 +1479 51095 0.4930 +1479 51585 0.9980 +1479 51691 0.4320 +1479 51692 0.9930 +1479 51741 0.4030 +1479 53347 0.5560 +1479 53981 0.9780 +1479 54973 0.5690 +1479 55015 0.4090 +1479 55174 0.4370 +1479 55197 0.4040 +1479 55339 0.9980 +1479 55346 0.5620 +1479 55756 0.5360 +1479 56903 0.9490 +1479 56965 0.5580 +1479 57469 0.6040 +1479 57710 0.4040 +1479 58478 0.7600 +1479 64087 0.4230 +1479 64421 0.4170 +1479 64577 0.4020 +1479 64848 0.8840 +1479 64858 0.4170 +1479 64895 0.8530 +1479 65123 0.6050 +1479 79084 0.4580 +1479 79577 0.5390 +1479 79668 0.5570 +1479 79869 0.9020 +1479 80335 0.5370 +1479 81608 0.9990 +1479 84172 0.4180 +1479 84524 0.6700 +1479 84879 0.6300 +1479 84928 0.4330 +1479 84950 0.5620 +1479 84959 0.5560 +1479 90025 0.4470 +1479 91614 0.9290 +1479 91746 0.8750 +1479 123169 0.4810 +1479 124540 0.4880 +1479 126133 0.4020 +1479 126321 0.6300 +1479 134353 0.4570 +1479 348995 0.4430 +1479 376940 0.6640 +1479 387712 0.9080 +1479 388931 0.6300 +1479 493860 0.4590 +1479 642843 0.7050 +1482 1499 0.5360 +1482 1760 0.4250 +1482 1762 0.4110 +1482 1837 0.4920 +1482 1843 0.5290 +1482 1906 0.4430 +1482 1958 0.4420 +1482 2005 0.4590 +1482 2022 0.4050 +1482 2033 0.5510 +1482 2113 0.4100 +1482 2116 0.4690 +1482 2247 0.5610 +1482 2248 0.4200 +1482 2249 0.4350 +1482 2250 0.4360 +1482 2251 0.4260 +1482 2252 0.4140 +1482 2253 0.5640 +1482 2254 0.4480 +1482 2255 0.5320 +1482 2294 0.5360 +1482 2296 0.4200 +1482 2303 0.4050 +1482 2304 0.6100 +1482 2597 0.5070 +1482 2623 0.5860 +1482 2624 0.4350 +1482 2626 0.9990 +1482 2627 0.8660 +1482 2697 0.8430 +1482 2702 0.8730 +1482 3021 0.4070 +1482 3065 0.4730 +1482 3169 0.4010 +1482 3170 0.5850 +1482 3398 0.8920 +1482 3630 0.4410 +1482 3670 0.8600 +1482 3720 0.6890 +1482 3725 0.4980 +1482 3728 0.4460 +1482 3757 0.4550 +1482 3759 0.5160 +1482 3784 0.4490 +1482 3791 0.6520 +1482 3815 0.5890 +1482 3840 0.5180 +1482 3976 0.4040 +1482 4005 0.5030 +1482 4089 0.7280 +1482 4154 0.5060 +1482 4205 0.9390 +1482 4208 0.9880 +1482 4209 0.5130 +1482 4211 0.4240 +1482 4607 0.5180 +1482 4617 0.4300 +1482 4624 0.8090 +1482 4625 0.6830 +1482 4629 0.4720 +1482 4633 0.8130 +1482 4634 0.4830 +1482 4635 0.4630 +1482 4654 0.6500 +1482 4656 0.6340 +1482 4772 0.5930 +1482 4776 0.5540 +1482 4838 0.4620 +1482 4851 0.5270 +1482 4878 0.9700 +1482 4879 0.5810 +1482 5156 0.5460 +1482 5175 0.5570 +1482 5460 0.6530 +1482 5788 0.4040 +1482 6261 0.4240 +1482 6262 0.6040 +1482 6299 0.6220 +1482 6331 0.6340 +1482 6469 0.4360 +1482 6597 0.9100 +1482 6604 0.9170 +1482 6656 0.4860 +1482 6657 0.6140 +1482 6722 0.9780 +1482 6736 0.5870 +1482 6876 0.4490 +1482 6886 0.5000 +1482 6899 0.7790 +1482 6909 0.8420 +1482 6910 0.9990 +1482 6911 0.6950 +1482 6926 0.8730 +1482 6943 0.5820 +1482 7010 0.4370 +1482 7026 0.5110 +1482 7040 0.4350 +1482 7070 0.4410 +1482 7135 0.4800 +1482 7137 0.8150 +1482 7139 0.9070 +1482 7157 0.5050 +1482 7253 0.4540 +1482 7273 0.4960 +1482 7403 0.8500 +1482 7404 0.4780 +1482 7450 0.4020 +1482 7468 0.9430 +1482 7471 0.4070 +1482 7481 0.5440 +1482 7490 0.5810 +1482 7528 0.4090 +1482 7547 0.4540 +1482 7593 0.5180 +1482 7849 0.4890 +1482 8290 0.4110 +1482 8320 0.4600 +1482 8356 0.4030 +1482 8815 0.5090 +1482 8817 0.4180 +1482 8822 0.4300 +1482 8823 0.4510 +1482 8854 0.4660 +1482 8928 0.8450 +1482 9096 0.7780 +1482 9314 0.5120 +1482 9421 0.7390 +1482 9464 0.9860 +1482 9496 0.6260 +1482 9839 0.4370 +1482 10021 0.8640 +1482 10052 0.6260 +1482 10265 0.5680 +1482 10637 0.5180 +1482 10763 0.4440 +1482 11266 0.6010 +1482 22943 0.4450 +1482 23125 0.6290 +1482 23414 0.7300 +1482 23462 0.4040 +1482 23493 0.7040 +1482 25937 0.4720 +1482 26260 0.4150 +1482 26281 0.4460 +1482 27006 0.4460 +1482 27063 0.4180 +1482 27302 0.6380 +1482 28996 0.5180 +1482 29072 0.5340 +1482 50805 0.8010 +1482 51303 0.6430 +1482 54751 0.4860 +1482 55278 0.5170 +1482 55897 0.7850 +1482 55997 0.4960 +1482 57057 0.9920 +1482 57167 0.7260 +1482 58498 0.8380 +1482 64321 0.6270 +1482 78987 0.5430 +1482 79190 0.4660 +1482 79191 0.4810 +1482 79192 0.5810 +1482 83881 0.5720 +1482 84525 0.7560 +1482 89780 0.4830 +1482 93649 0.8610 +1482 140628 0.8790 +1482 145873 0.5050 +1482 147912 0.4980 +1482 150572 0.4380 +1482 153443 0.6750 +1482 204851 0.5180 +1482 284312 0.5100 +1482 376132 0.4250 +1482 389434 0.4750 +1482 390992 0.4510 +1482 440093 0.4070 +1482 440686 0.4180 +1482 653604 0.4190 +1482 100271849 0.9480 +1485 1493 0.6680 +1485 1638 0.5570 +1485 1956 0.4320 +1485 1996 0.5360 +1485 2064 0.6070 +1485 2315 0.4740 +1485 2346 0.4470 +1485 2348 0.4480 +1485 2719 0.4790 +1485 2984 0.4120 +1485 3002 0.4180 +1485 3105 0.8570 +1485 3308 0.5290 +1485 3312 0.4390 +1485 3458 0.6090 +1485 3558 0.6090 +1485 3574 0.4180 +1485 3586 0.4100 +1485 3600 0.4470 +1485 3620 0.4770 +1485 3902 0.5290 +1485 4065 0.8530 +1485 4072 0.5360 +1485 4100 0.9100 +1485 4101 0.8280 +1485 4102 0.9740 +1485 4103 0.9460 +1485 4105 0.8640 +1485 4107 0.4330 +1485 4108 0.5410 +1485 4109 0.7850 +1485 4110 0.5010 +1485 4111 0.7670 +1485 4112 0.4520 +1485 4113 0.4710 +1485 4316 0.7210 +1485 5133 0.5710 +1485 5499 0.4220 +1485 5551 0.4100 +1485 6490 0.8570 +1485 6657 0.6660 +1485 6737 0.6670 +1485 6756 0.6670 +1485 6757 0.8140 +1485 6758 0.4240 +1485 6759 0.6590 +1485 7124 0.4340 +1485 7157 0.6880 +1485 7162 0.5050 +1485 7179 0.7560 +1485 7293 0.4790 +1485 7299 0.8610 +1485 7490 0.5950 +1485 9947 0.8420 +1485 10232 0.5820 +1485 10806 0.4480 +1485 23532 0.7520 +1485 23645 0.4240 +1485 29126 0.6220 +1485 29851 0.4200 +1485 30014 0.5300 +1485 30848 0.8680 +1485 50943 0.4790 +1485 51213 0.4480 +1485 51270 0.6790 +1485 51438 0.6810 +1485 55511 0.4200 +1485 55644 0.4100 +1485 56001 0.4090 +1485 64663 0.4280 +1485 80380 0.4470 +1485 80381 0.4470 +1485 81557 0.6980 +1485 84539 0.4240 +1485 84868 0.5170 +1485 139135 0.4940 +1485 140885 0.5950 +1485 158521 0.4190 +1485 168400 0.7110 +1485 203413 0.5790 +1485 246100 0.9990 +1485 266740 0.8190 +1485 280658 0.4910 +1485 285782 0.8400 +1485 389903 0.5420 +1485 493860 0.8290 +1485 541466 0.5620 +1485 548313 0.6210 +1485 645073 0.4280 +1485 653067 0.4610 +1485 653220 0.6760 +1485 727837 0.7720 +1485 728239 0.6950 +1485 728269 0.5530 +1485 728695 0.4210 +1485 728712 0.5260 +1485 100008586 0.5640 +1485 100526664 0.8530 +1485 100532731 0.4450 +1485 102723547 0.5250 +1486 1537 0.4590 +1486 2787 0.9700 +1486 3073 0.5200 +1486 3294 0.4200 +1486 3895 0.4410 +1486 4123 0.4730 +1486 4125 0.5060 +1486 4126 0.4210 +1486 4512 0.4070 +1486 4513 0.6630 +1486 4514 0.6650 +1486 4668 0.4500 +1486 7381 0.4560 +1486 7384 0.4280 +1486 7385 0.4470 +1486 9377 0.5880 +1486 9512 0.4370 +1486 10724 0.4800 +1486 29796 0.4440 +1486 79002 0.5410 +1486 84886 0.4580 +1486 125965 0.5410 +1486 201626 0.4820 +1486 644994 0.5360 +1487 1488 0.9990 +1487 1491 0.5320 +1487 1499 0.9650 +1487 1738 0.4230 +1487 1757 0.5090 +1487 1786 0.4200 +1487 1855 0.4230 +1487 1874 0.4190 +1487 1911 0.4310 +1487 1912 0.4110 +1487 2033 0.9550 +1487 2099 0.4420 +1487 2122 0.9940 +1487 2146 0.4330 +1487 2175 0.6170 +1487 2176 0.8830 +1487 2177 0.4850 +1487 2189 0.4080 +1487 2212 0.4070 +1487 2213 0.4070 +1487 2261 0.4490 +1487 2271 0.5480 +1487 2290 0.4150 +1487 2309 0.6840 +1487 2353 0.5150 +1487 2356 0.7700 +1487 2516 0.4590 +1487 2597 0.7290 +1487 2623 0.5200 +1487 2648 0.6400 +1487 2653 0.5050 +1487 2731 0.7480 +1487 2936 0.4200 +1487 2959 0.4240 +1487 3021 0.4570 +1487 3064 0.4510 +1487 3065 0.9990 +1487 3066 0.9990 +1487 3068 0.5110 +1487 3090 0.9790 +1487 3172 0.9360 +1487 3215 0.6240 +1487 3291 0.5330 +1487 3303 0.5140 +1487 3304 0.5070 +1487 3419 0.4490 +1487 3420 0.4470 +1487 3421 0.4460 +1487 3516 0.9690 +1487 3659 0.4460 +1487 3725 0.5920 +1487 4076 0.4520 +1487 4089 0.5570 +1487 4091 0.7440 +1487 4150 0.4670 +1487 4193 0.6680 +1487 4524 0.4040 +1487 4608 0.4970 +1487 4609 0.6290 +1487 4651 0.4700 +1487 4683 0.5040 +1487 4773 0.4220 +1487 5158 0.4440 +1487 5313 0.4290 +1487 5315 0.5080 +1487 5411 0.4350 +1487 5469 0.4780 +1487 5527 0.4200 +1487 5723 0.6080 +1487 5832 0.5630 +1487 5888 0.4030 +1487 5925 0.5020 +1487 5928 0.4290 +1487 5929 0.5990 +1487 5931 0.5330 +1487 5932 0.9980 +1487 5961 0.6190 +1487 5978 0.7260 +1487 6015 0.6900 +1487 6045 0.4880 +1487 6133 0.4220 +1487 6150 0.4480 +1487 6239 0.8530 +1487 6304 0.4310 +1487 6421 0.6640 +1487 6456 0.4530 +1487 6470 0.6420 +1487 6472 0.6440 +1487 6591 0.7770 +1487 6612 0.5890 +1487 6613 0.6020 +1487 6615 0.5490 +1487 6642 0.4070 +1487 6657 0.4660 +1487 6667 0.4340 +1487 6688 0.4160 +1487 6886 0.4060 +1487 6907 0.6630 +1487 6908 0.6690 +1487 6925 0.6100 +1487 6932 0.9650 +1487 6934 0.9770 +1487 7050 0.8830 +1487 7088 0.9020 +1487 7089 0.7390 +1487 7090 0.6910 +1487 7091 0.6310 +1487 7157 0.7590 +1487 7227 0.7480 +1487 7296 0.4140 +1487 7298 0.7070 +1487 7329 0.7950 +1487 7341 0.6340 +1487 7514 0.4560 +1487 7528 0.6110 +1487 7532 0.6990 +1487 7703 0.4710 +1487 7704 0.4600 +1487 7750 0.5170 +1487 7764 0.9970 +1487 7799 0.8420 +1487 8085 0.5410 +1487 8204 0.9680 +1487 8290 0.5930 +1487 8312 0.4460 +1487 8328 0.4190 +1487 8356 0.4460 +1487 8462 0.4780 +1487 8467 0.4900 +1487 8535 0.9580 +1487 8565 0.4200 +1487 8715 0.6850 +1487 8724 0.5680 +1487 8841 0.5450 +1487 8850 0.8590 +1487 8945 0.9060 +1487 9060 0.4060 +1487 9061 0.4070 +1487 9070 0.5460 +1487 9156 0.5570 +1487 9314 0.7790 +1487 9349 0.4370 +1487 9425 0.4870 +1487 9541 0.6820 +1487 9553 0.4380 +1487 9557 0.4150 +1487 9611 0.8180 +1487 9612 0.8700 +1487 9658 0.9670 +1487 9734 0.8110 +1487 9759 0.6620 +1487 9801 0.4370 +1487 9839 0.9510 +1487 9901 0.4420 +1487 10009 0.4670 +1487 10014 0.4440 +1487 10155 0.4680 +1487 10238 0.4160 +1487 10320 0.9270 +1487 10362 0.8450 +1487 10363 0.7030 +1487 10432 0.4040 +1487 10472 0.7890 +1487 10524 0.5700 +1487 10587 0.4240 +1487 10782 0.4960 +1487 10919 0.8700 +1487 11168 0.5590 +1487 11222 0.4440 +1487 11278 0.6180 +1487 11279 0.9680 +1487 11317 0.9280 +1487 22938 0.4190 +1487 22954 0.4080 +1487 22955 0.4930 +1487 23013 0.7220 +1487 23028 0.9980 +1487 23119 0.8640 +1487 23186 0.9990 +1487 23309 0.5780 +1487 23361 0.4230 +1487 23380 0.4710 +1487 23411 0.6500 +1487 23414 0.5950 +1487 23645 0.4370 +1487 25913 0.4070 +1487 25942 0.6980 +1487 26108 0.5210 +1487 26330 0.4990 +1487 26589 0.4370 +1487 27433 0.4220 +1487 28996 0.8010 +1487 28998 0.4690 +1487 29093 0.5070 +1487 29958 0.5090 +1487 29968 0.9500 +1487 50484 0.4110 +1487 51073 0.4630 +1487 51176 0.9610 +1487 51264 0.4800 +1487 51274 0.9900 +1487 51317 0.9180 +1487 51412 0.6520 +1487 51429 0.4760 +1487 51460 0.4120 +1487 51564 0.6900 +1487 51621 0.4930 +1487 51710 0.4230 +1487 54880 0.5390 +1487 54948 0.4970 +1487 55052 0.4340 +1487 55066 0.5160 +1487 55120 0.5140 +1487 55258 0.4850 +1487 55364 0.6870 +1487 55553 0.4470 +1487 55758 0.7530 +1487 55775 0.4220 +1487 56647 0.4670 +1487 56905 0.4660 +1487 56965 0.4380 +1487 57129 0.4440 +1487 57332 0.4690 +1487 57459 0.4490 +1487 57469 0.4990 +1487 57659 0.4990 +1487 57697 0.4260 +1487 60436 0.5500 +1487 63035 0.9010 +1487 63875 0.4610 +1487 63948 0.7090 +1487 63976 0.9710 +1487 64783 0.4960 +1487 64960 0.4610 +1487 64981 0.4400 +1487 65005 0.4370 +1487 79668 0.4290 +1487 79718 0.7590 +1487 79755 0.7050 +1487 79772 0.4070 +1487 79813 0.8490 +1487 79830 0.6310 +1487 79896 0.4850 +1487 80012 0.5090 +1487 80204 0.5290 +1487 80304 0.4350 +1487 80320 0.4540 +1487 80818 0.4270 +1487 83439 0.9700 +1487 83855 0.4310 +1487 84441 0.6430 +1487 84444 0.4590 +1487 84458 0.9800 +1487 84545 0.4330 +1487 84733 0.6310 +1487 90780 0.5840 +1487 91050 0.4590 +1487 91544 0.4020 +1487 93986 0.9340 +1487 112885 0.5540 +1487 114112 0.4060 +1487 115560 0.4230 +1487 129642 0.4850 +1487 136259 0.4770 +1487 140688 0.8210 +1487 144455 0.6010 +1487 148266 0.4210 +1487 151393 0.4300 +1487 154150 0.5160 +1487 161882 0.8100 +1487 167465 0.8390 +1487 219927 0.4900 +1487 221937 0.4120 +1487 253461 0.5240 +1487 254251 0.8600 +1487 255877 0.4140 +1487 283149 0.5420 +1487 283248 0.6270 +1487 284390 0.4230 +1487 390598 0.5320 +1487 440093 0.4480 +1487 440686 0.4480 +1487 653604 0.4530 +1487 100532731 0.5440 +1488 1491 0.4280 +1488 1499 0.6500 +1488 1738 0.4060 +1488 1742 0.7180 +1488 1757 0.6700 +1488 1856 0.5740 +1488 1956 0.4760 +1488 2033 0.9500 +1488 2122 0.9580 +1488 2146 0.5550 +1488 2271 0.5450 +1488 2275 0.5050 +1488 2356 0.7690 +1488 2534 0.4730 +1488 2597 0.6750 +1488 2648 0.4960 +1488 2653 0.5000 +1488 2731 0.7480 +1488 2735 0.6940 +1488 2885 0.4340 +1488 2891 0.6880 +1488 2916 0.4750 +1488 2936 0.6550 +1488 2979 0.5500 +1488 3065 0.9740 +1488 3066 0.9800 +1488 3068 0.4790 +1488 3090 0.9370 +1488 3172 0.5400 +1488 3419 0.4430 +1488 3420 0.4450 +1488 3421 0.4430 +1488 3516 0.9400 +1488 4091 0.6360 +1488 4193 0.8480 +1488 4289 0.4110 +1488 4477 0.5470 +1488 4608 0.4780 +1488 4609 0.4500 +1488 4646 0.5810 +1488 4647 0.7360 +1488 4683 0.4820 +1488 5158 0.5560 +1488 5241 0.4280 +1488 5313 0.4290 +1488 5315 0.4570 +1488 5459 0.4260 +1488 5469 0.4590 +1488 5578 0.6700 +1488 5723 0.6070 +1488 5832 0.5640 +1488 5864 0.5290 +1488 5888 0.4090 +1488 5931 0.4850 +1488 5932 0.9960 +1488 5957 0.4260 +1488 5961 0.5590 +1488 5978 0.5370 +1488 6010 0.5660 +1488 6133 0.4160 +1488 6139 0.4180 +1488 6150 0.4330 +1488 6239 0.4520 +1488 6470 0.6410 +1488 6472 0.6440 +1488 6615 0.4360 +1488 6616 0.5140 +1488 6657 0.5290 +1488 6660 0.4660 +1488 6767 0.4490 +1488 6804 0.4210 +1488 6844 0.5920 +1488 6853 0.6270 +1488 6855 0.6960 +1488 6857 0.5630 +1488 6907 0.5270 +1488 6925 0.4700 +1488 6932 0.9650 +1488 6934 0.9350 +1488 7040 0.5150 +1488 7050 0.7960 +1488 7088 0.6990 +1488 7089 0.6290 +1488 7090 0.6690 +1488 7091 0.6920 +1488 7157 0.5830 +1488 7158 0.5360 +1488 7227 0.5530 +1488 7296 0.4060 +1488 7298 0.7050 +1488 7301 0.4280 +1488 7306 0.4210 +1488 7532 0.4290 +1488 7764 0.9890 +1488 7799 0.5050 +1488 8204 0.8350 +1488 8290 0.5140 +1488 8349 0.4910 +1488 8462 0.4620 +1488 8481 0.4220 +1488 8565 0.4140 +1488 8715 0.4060 +1488 8850 0.7410 +1488 8895 0.4670 +1488 8927 0.9300 +1488 8945 0.4860 +1488 9060 0.4100 +1488 9061 0.4100 +1488 9112 0.4410 +1488 9149 0.6620 +1488 9219 0.6190 +1488 9349 0.4370 +1488 9381 0.9340 +1488 9401 0.4280 +1488 9541 0.6620 +1488 9553 0.4370 +1488 9580 0.4130 +1488 9611 0.7360 +1488 9612 0.7670 +1488 9656 0.5190 +1488 9658 0.8790 +1488 9734 0.5730 +1488 9801 0.4330 +1488 9839 0.8220 +1488 10155 0.4240 +1488 10238 0.5760 +1488 10320 0.5020 +1488 10472 0.8610 +1488 10481 0.4130 +1488 10521 0.5500 +1488 10587 0.4160 +1488 10755 0.4270 +1488 10919 0.6560 +1488 11127 0.5760 +1488 11168 0.5320 +1488 11222 0.4440 +1488 11279 0.9680 +1488 11317 0.9270 +1488 22853 0.5520 +1488 22999 0.6100 +1488 23013 0.4510 +1488 23028 0.8280 +1488 23119 0.7750 +1488 23186 0.9580 +1488 23301 0.5090 +1488 23414 0.8600 +1488 23512 0.5980 +1488 25913 0.4090 +1488 25942 0.4790 +1488 26040 0.4340 +1488 26330 0.4990 +1488 26589 0.4320 +1488 27232 0.4070 +1488 27445 0.8310 +1488 28996 0.6880 +1488 28998 0.4620 +1488 29093 0.5100 +1488 29958 0.5090 +1488 29968 0.9490 +1488 29994 0.4400 +1488 30818 0.4340 +1488 50943 0.4590 +1488 50944 0.4200 +1488 51073 0.4610 +1488 51176 0.9540 +1488 51222 0.5150 +1488 51264 0.4800 +1488 51274 0.9880 +1488 51317 0.4490 +1488 51412 0.5180 +1488 51621 0.4900 +1488 53615 0.4880 +1488 54948 0.5230 +1488 55052 0.4380 +1488 55066 0.5120 +1488 55258 0.4850 +1488 55364 0.7020 +1488 55553 0.7010 +1488 55758 0.4020 +1488 55775 0.4060 +1488 56647 0.4780 +1488 56751 0.4490 +1488 56965 0.4310 +1488 57010 0.7080 +1488 57030 0.4460 +1488 57129 0.4330 +1488 57459 0.7210 +1488 57469 0.4990 +1488 63875 0.4540 +1488 63948 0.4160 +1488 63976 0.9300 +1488 64960 0.4620 +1488 64981 0.4330 +1488 65005 0.4340 +1488 79668 0.4330 +1488 79718 0.5200 +1488 79813 0.5050 +1488 79850 0.4300 +1488 79896 0.4850 +1488 80320 0.4420 +1488 80331 0.5780 +1488 83439 0.9560 +1488 83855 0.4190 +1488 84458 0.8690 +1488 84545 0.4330 +1488 90665 0.4250 +1488 113146 0.4060 +1488 114112 0.4060 +1488 127833 0.7080 +1488 129642 0.4790 +1488 133584 0.6290 +1488 136259 0.4460 +1488 140688 0.4830 +1488 154150 0.4750 +1488 161882 0.7190 +1488 219927 0.4770 +1488 221895 0.4930 +1488 221937 0.4120 +1488 222546 0.4240 +1488 246213 0.7450 +1488 283248 0.4010 +1488 653604 0.4130 +1488 100128927 0.5310 +1489 1956 0.6920 +1489 2057 0.6800 +1489 2660 0.4060 +1489 2690 0.6580 +1489 2959 0.4320 +1489 3021 0.4470 +1489 3454 0.6500 +1489 3455 0.6500 +1489 3459 0.6670 +1489 3559 0.6540 +1489 3560 0.6500 +1489 3561 0.6800 +1489 3563 0.6500 +1489 3566 0.6780 +1489 3568 0.6760 +1489 3569 0.7320 +1489 3570 0.8810 +1489 3572 0.9800 +1489 3575 0.6580 +1489 3581 0.6610 +1489 3587 0.6800 +1489 3588 0.6890 +1489 3589 0.8460 +1489 3590 0.8890 +1489 3594 0.7110 +1489 3595 0.7570 +1489 3597 0.6770 +1489 3598 0.6500 +1489 3716 0.6880 +1489 3717 0.7000 +1489 3953 0.6890 +1489 3976 0.9240 +1489 3977 0.9980 +1489 4352 0.6810 +1489 4878 0.4190 +1489 5008 0.9300 +1489 5156 0.6820 +1489 5159 0.6790 +1489 5618 0.6500 +1489 6272 0.4420 +1489 6606 0.4800 +1489 6772 0.4170 +1489 6774 0.6110 +1489 7297 0.6670 +1489 8290 0.4490 +1489 8356 0.4470 +1489 8544 0.9100 +1489 8817 0.4550 +1489 8823 0.4580 +1489 9021 0.4170 +1489 9180 0.9500 +1489 9244 0.4510 +1489 9466 0.7930 +1489 9900 0.4360 +1489 10153 0.8050 +1489 10540 0.4220 +1489 23529 0.8420 +1489 26281 0.4540 +1489 27006 0.4540 +1489 27238 0.5020 +1489 50615 0.6780 +1489 53832 0.6730 +1489 53833 0.6580 +1489 58985 0.6740 +1489 83953 0.4320 +1489 116379 0.6590 +1489 149233 0.6920 +1489 163702 0.6580 +1489 386653 0.5820 +1489 440093 0.4470 +1489 440686 0.4470 +1489 653604 0.4470 +1490 1499 0.6350 +1490 1536 0.4630 +1490 1602 0.4060 +1490 1634 0.9390 +1490 1636 0.5340 +1490 1839 0.5250 +1490 1843 0.6400 +1490 1902 0.5010 +1490 1906 0.7870 +1490 1950 0.7550 +1490 1956 0.7990 +1490 1958 0.7130 +1490 2022 0.4330 +1490 2033 0.4620 +1490 2064 0.4010 +1490 2065 0.5160 +1490 2099 0.6900 +1490 2100 0.4630 +1490 2152 0.4260 +1490 2192 0.7210 +1490 2200 0.7970 +1490 2202 0.4110 +1490 2246 0.5010 +1490 2247 0.8000 +1490 2248 0.5870 +1490 2249 0.5850 +1490 2250 0.5910 +1490 2251 0.5880 +1490 2252 0.6190 +1490 2253 0.5840 +1490 2254 0.6060 +1490 2255 0.6050 +1490 2258 0.5190 +1490 2260 0.5200 +1490 2263 0.6380 +1490 2331 0.4810 +1490 2335 0.9630 +1490 2353 0.7200 +1490 2475 0.4560 +1490 2597 0.6840 +1490 2660 0.6580 +1490 2697 0.5160 +1490 2919 0.4380 +1490 2932 0.4460 +1490 3037 0.4060 +1490 3082 0.5930 +1490 3091 0.7480 +1490 3162 0.4310 +1490 3304 0.4050 +1490 3339 0.9090 +1490 3383 0.5530 +1490 3458 0.6550 +1490 3459 0.4460 +1490 3479 0.8300 +1490 3481 0.4680 +1490 3482 0.5170 +1490 3485 0.5140 +1490 3486 0.6780 +1490 3488 0.4840 +1490 3490 0.9210 +1490 3491 0.8160 +1490 3552 0.5200 +1490 3553 0.6550 +1490 3565 0.6250 +1490 3569 0.7710 +1490 3572 0.4180 +1490 3576 0.5350 +1490 3586 0.4780 +1490 3589 0.5200 +1490 3596 0.4500 +1490 3611 0.4210 +1490 3630 0.5620 +1490 3676 0.4940 +1490 3678 0.6040 +1490 3684 0.6140 +1490 3685 0.4230 +1490 3688 0.7940 +1490 3689 0.5960 +1490 3693 0.4010 +1490 3725 0.8280 +1490 3759 0.4080 +1490 3791 0.4600 +1490 3915 0.5670 +1490 3934 0.4170 +1490 3958 0.6530 +1490 3960 0.4970 +1490 4015 0.7630 +1490 4016 0.4170 +1490 4017 0.4970 +1490 4035 0.5300 +1490 4036 0.4550 +1490 4040 0.7230 +1490 4041 0.6540 +1490 4052 0.6490 +1490 4053 0.4170 +1490 4060 0.5250 +1490 4087 0.8450 +1490 4088 0.7510 +1490 4089 0.6180 +1490 4091 0.5210 +1490 4092 0.7660 +1490 4236 0.4970 +1490 4237 0.5230 +1490 4256 0.4300 +1490 4286 0.4670 +1490 4312 0.5700 +1490 4313 0.8390 +1490 4314 0.8340 +1490 4316 0.4480 +1490 4318 0.8090 +1490 4321 0.4070 +1490 4322 0.5400 +1490 4323 0.6580 +1490 4609 0.7420 +1490 4629 0.4460 +1490 4771 0.4950 +1490 4790 0.4570 +1490 4792 0.4110 +1490 4803 0.4230 +1490 4830 0.4480 +1490 4851 0.5980 +1490 4868 0.4560 +1490 4878 0.6140 +1490 4879 0.4930 +1490 4914 0.9450 +1490 5054 0.8190 +1490 5154 0.5200 +1490 5155 0.5350 +1490 5156 0.4310 +1490 5159 0.6710 +1490 5175 0.5470 +1490 5176 0.4740 +1490 5230 0.4650 +1490 5270 0.4020 +1490 5327 0.4960 +1490 5328 0.4800 +1490 5340 0.5110 +1490 5445 0.4550 +1490 5468 0.5750 +1490 5595 0.5720 +1490 5728 0.4550 +1490 5743 0.6910 +1490 5744 0.4580 +1490 5747 0.4420 +1490 5972 0.5930 +1490 6093 0.4480 +1490 6275 0.5290 +1490 6277 0.4030 +1490 6347 0.6780 +1490 6385 0.7970 +1490 6387 0.5760 +1490 6446 0.6140 +1490 6469 0.4090 +1490 6530 0.4130 +1490 6591 0.5250 +1490 6615 0.5810 +1490 6657 0.5310 +1490 6662 0.5160 +1490 6678 0.7640 +1490 6696 0.6050 +1490 6714 0.5270 +1490 6722 0.6730 +1490 6774 0.5350 +1490 6876 0.7560 +1490 7003 0.8430 +1490 7004 0.8080 +1490 7005 0.7300 +1490 7039 0.4520 +1490 7040 0.9690 +1490 7042 0.7250 +1490 7043 0.7720 +1490 7045 0.5110 +1490 7046 0.7750 +1490 7048 0.7480 +1490 7052 0.4070 +1490 7057 0.7490 +1490 7058 0.5510 +1490 7070 0.6460 +1490 7075 0.5350 +1490 7076 0.8160 +1490 7077 0.6940 +1490 7078 0.7350 +1490 7082 0.4240 +1490 7099 0.4530 +1490 7124 0.7400 +1490 7157 0.5550 +1490 7168 0.4150 +1490 7169 0.5040 +1490 7291 0.4520 +1490 7412 0.6850 +1490 7424 0.6590 +1490 7431 0.6530 +1490 7448 0.4050 +1490 7450 0.8840 +1490 7471 0.4470 +1490 7472 0.4210 +1490 7474 0.4210 +1490 7837 0.6750 +1490 7852 0.6690 +1490 7980 0.4070 +1490 8321 0.5080 +1490 8436 0.4520 +1490 8463 0.7590 +1490 8815 0.4240 +1490 8817 0.6010 +1490 8822 0.5880 +1490 8823 0.6030 +1490 9113 0.7400 +1490 9294 0.5300 +1490 9332 0.5430 +1490 9507 0.6070 +1490 9508 0.5990 +1490 9510 0.5200 +1490 9622 0.4830 +1490 9686 0.4490 +1490 10018 0.4450 +1490 10272 0.5080 +1490 10413 0.8990 +1490 10468 0.4420 +1490 10631 0.7160 +1490 11096 0.5890 +1490 11167 0.4890 +1490 11266 0.5150 +1490 22927 0.4040 +1490 22943 0.4730 +1490 23129 0.4420 +1490 23411 0.4250 +1490 23476 0.5100 +1490 23617 0.5160 +1490 23643 0.4340 +1490 25937 0.8160 +1490 26281 0.6020 +1490 26524 0.6390 +1490 27006 0.5970 +1490 27063 0.7700 +1490 50507 0.6080 +1490 51421 0.7120 +1490 51652 0.4240 +1490 54361 0.4840 +1490 54829 0.4990 +1490 57521 0.4300 +1490 59272 0.4180 +1490 60485 0.6070 +1490 64084 0.4490 +1490 64102 0.4440 +1490 80781 0.4190 +1490 81501 0.5180 +1490 83942 0.6420 +1490 89780 0.4110 +1490 93649 0.4540 +1490 115908 0.5630 +1490 137902 0.5870 +1490 154796 0.5040 +1490 154810 0.4380 +1490 100526767 0.4240 +1491 1610 0.7500 +1491 1633 0.4920 +1491 1716 0.8510 +1491 1723 0.4200 +1491 1738 0.4710 +1491 1757 0.5170 +1491 2053 0.4530 +1491 2058 0.5140 +1491 2108 0.4050 +1491 2235 0.4130 +1491 2356 0.4980 +1491 2597 0.5360 +1491 2673 0.4030 +1491 2729 0.9060 +1491 2730 0.8820 +1491 2746 0.4510 +1491 2752 0.4540 +1491 2805 0.9580 +1491 2806 0.9420 +1491 2875 0.5560 +1491 2877 0.4720 +1491 2878 0.4730 +1491 2880 0.4700 +1491 2882 0.4730 +1491 2936 0.5170 +1491 2937 0.5700 +1491 3081 0.4320 +1491 3162 0.4850 +1491 3163 0.4880 +1491 3242 0.4180 +1491 3417 0.4050 +1491 3948 0.8390 +1491 4060 0.4970 +1491 4141 0.9480 +1491 4143 0.7320 +1491 4144 0.6200 +1491 4357 0.9980 +1491 4482 0.6210 +1491 4522 0.6120 +1491 4524 0.9940 +1491 4548 0.9940 +1491 4552 0.7570 +1491 4598 0.9020 +1491 4780 0.4460 +1491 4842 0.7290 +1491 4843 0.6770 +1491 4846 0.7880 +1491 4942 0.5150 +1491 4953 0.5230 +1491 5009 0.4590 +1491 5226 0.4400 +1491 5447 0.6140 +1491 5471 0.7280 +1491 5571 0.5280 +1491 5723 0.6010 +1491 5832 0.4760 +1491 6470 0.6770 +1491 6472 0.6660 +1491 6611 0.5300 +1491 6648 0.4230 +1491 6652 0.4330 +1491 6723 0.5040 +1491 6821 0.7480 +1491 6898 0.5310 +1491 7076 0.4630 +1491 7084 0.6500 +1491 7263 0.9950 +1491 7295 0.5480 +1491 7296 0.9400 +1491 7357 0.4250 +1491 7407 0.4250 +1491 8989 0.4130 +1491 9054 0.5590 +1491 9060 0.6370 +1491 9061 0.5430 +1491 9380 0.4090 +1491 9563 0.5130 +1491 9709 0.4770 +1491 9817 0.4220 +1491 10587 0.9310 +1491 10768 0.9690 +1491 10797 0.4710 +1491 10993 0.9140 +1491 11212 0.4140 +1491 23382 0.9710 +1491 23474 0.6830 +1491 23657 0.6040 +1491 23743 0.9790 +1491 25902 0.4920 +1491 26227 0.5880 +1491 26330 0.4040 +1491 27158 0.5820 +1491 27232 0.6270 +1491 29106 0.4290 +1491 29958 0.5270 +1491 29968 0.6800 +1491 51021 0.4060 +1491 51056 0.8150 +1491 51380 0.5390 +1491 51422 0.5280 +1491 51477 0.4030 +1491 51540 0.6050 +1491 51805 0.4160 +1491 51806 0.5370 +1491 53632 0.5280 +1491 54205 0.6920 +1491 54925 0.4220 +1491 55034 0.8460 +1491 55236 0.4290 +1491 55256 0.5400 +1491 55258 0.4440 +1491 55349 0.4230 +1491 56267 0.9550 +1491 58472 0.7520 +1491 63826 0.5150 +1491 64111 0.5750 +1491 64902 0.9350 +1491 79017 0.8060 +1491 79094 0.4830 +1491 79587 0.6640 +1491 79717 0.8100 +1491 79814 0.4710 +1491 79896 0.4180 +1491 80308 0.5510 +1491 81034 0.4690 +1491 84245 0.4180 +1491 84680 0.4480 +1491 84706 0.5620 +1491 91860 0.5370 +1491 92483 0.8380 +1491 92935 0.9340 +1491 113451 0.4330 +1491 113675 0.8980 +1491 114112 0.9280 +1491 118738 0.4990 +1491 123688 0.4570 +1491 137362 0.9300 +1491 160287 0.8390 +1491 162417 0.4340 +1491 163688 0.5370 +1491 171558 0.4200 +1491 257202 0.4710 +1491 339896 0.4290 +1491 390110 0.4480 +1491 441024 0.4190 +1491 493869 0.4700 +1491 100130890 0.5150 +1491 100131187 0.5790 +1493 1499 0.5260 +1493 1524 0.4470 +1493 1786 0.4070 +1493 1803 0.4050 +1493 1861 0.4100 +1493 1901 0.4090 +1493 1943 0.4140 +1493 1950 0.4340 +1493 1956 0.6970 +1493 2064 0.6930 +1493 2086 0.6380 +1493 2099 0.4180 +1493 2146 0.4420 +1493 2208 0.4710 +1493 2209 0.7660 +1493 2212 0.5410 +1493 2213 0.5460 +1493 2217 0.5760 +1493 2267 0.6390 +1493 2308 0.4020 +1493 2321 0.4330 +1493 2322 0.4210 +1493 2323 0.4790 +1493 2335 0.6220 +1493 2346 0.5060 +1493 2359 0.4280 +1493 2475 0.5770 +1493 2526 0.4820 +1493 2534 0.9100 +1493 2597 0.4650 +1493 2615 0.4510 +1493 2625 0.7450 +1493 2638 0.4870 +1493 2833 0.7370 +1493 2875 0.4470 +1493 2885 0.5760 +1493 2911 0.4160 +1493 2919 0.4570 +1493 2920 0.4050 +1493 2936 0.4390 +1493 2956 0.4180 +1493 2999 0.5000 +1493 3001 0.7120 +1493 3002 0.8270 +1493 3003 0.6300 +1493 3082 0.4200 +1493 3091 0.5460 +1493 3105 0.6290 +1493 3106 0.5400 +1493 3107 0.5160 +1493 3113 0.4290 +1493 3117 0.7150 +1493 3118 0.4150 +1493 3119 0.4960 +1493 3122 0.4650 +1493 3123 0.7460 +1493 3133 0.5360 +1493 3135 0.5180 +1493 3146 0.5030 +1493 3383 0.8410 +1493 3394 0.4300 +1493 3417 0.4350 +1493 3439 0.6680 +1493 3440 0.5480 +1493 3441 0.4810 +1493 3442 0.4830 +1493 3443 0.5020 +1493 3444 0.5040 +1493 3445 0.4800 +1493 3446 0.5030 +1493 3447 0.4800 +1493 3448 0.4800 +1493 3449 0.5040 +1493 3451 0.5060 +1493 3452 0.5010 +1493 3454 0.4680 +1493 3456 0.5620 +1493 3458 0.9510 +1493 3459 0.5860 +1493 3552 0.5920 +1493 3553 0.6770 +1493 3558 0.9430 +1493 3559 0.8710 +1493 3560 0.6790 +1493 3561 0.5370 +1493 3562 0.4030 +1493 3563 0.4720 +1493 3565 0.8750 +1493 3566 0.4490 +1493 3567 0.6280 +1493 3569 0.8150 +1493 3570 0.4840 +1493 3574 0.6410 +1493 3575 0.7710 +1493 3576 0.5980 +1493 3578 0.6270 +1493 3579 0.4830 +1493 3586 0.9220 +1493 3587 0.7080 +1493 3594 0.4960 +1493 3595 0.4710 +1493 3596 0.6510 +1493 3598 0.4180 +1493 3600 0.6770 +1493 3601 0.4090 +1493 3605 0.8800 +1493 3606 0.6020 +1493 3620 0.9100 +1493 3627 0.6660 +1493 3628 0.5490 +1493 3630 0.7000 +1493 3635 0.5500 +1493 3659 0.4700 +1493 3662 0.6570 +1493 3663 0.4630 +1493 3676 0.4650 +1493 3682 0.7810 +1493 3683 0.4670 +1493 3684 0.6790 +1493 3687 0.8320 +1493 3689 0.4150 +1493 3702 0.7560 +1493 3716 0.5480 +1493 3717 0.6480 +1493 3718 0.7710 +1493 3725 0.4210 +1493 3791 0.5070 +1493 3802 0.5790 +1493 3815 0.6780 +1493 3820 0.5790 +1493 3821 0.7280 +1493 3822 0.4300 +1493 3824 0.7380 +1493 3845 0.6250 +1493 3902 0.9650 +1493 3903 0.4490 +1493 3916 0.5150 +1493 3934 0.9880 +1493 3937 0.4460 +1493 3952 0.5390 +1493 3958 0.8440 +1493 3965 0.9910 +1493 4049 0.4890 +1493 4065 0.4480 +1493 4067 0.7140 +1493 4068 0.5210 +1493 4072 0.4790 +1493 4088 0.5990 +1493 4094 0.4580 +1493 4102 0.5810 +1493 4233 0.4710 +1493 4261 0.6700 +1493 4277 0.4590 +1493 4283 0.7030 +1493 4292 0.4310 +1493 4313 0.5390 +1493 4318 0.6420 +1493 4340 0.4260 +1493 4345 0.5170 +1493 4360 0.4910 +1493 4436 0.4330 +1493 4609 0.5570 +1493 4684 0.6360 +1493 4763 0.4110 +1493 4772 0.4510 +1493 4773 0.4500 +1493 4790 0.5650 +1493 4818 0.5270 +1493 4820 0.4200 +1493 4851 0.5500 +1493 4893 0.5900 +1493 4907 0.6720 +1493 5133 0.9920 +1493 5175 0.4810 +1493 5230 0.4540 +1493 5290 0.4870 +1493 5293 0.4180 +1493 5294 0.4330 +1493 5295 0.8160 +1493 5426 0.4460 +1493 5515 0.5220 +1493 5516 0.4990 +1493 5518 0.5300 +1493 5519 0.5010 +1493 5525 0.6300 +1493 5526 0.4990 +1493 5527 0.5000 +1493 5528 0.4990 +1493 5529 0.4990 +1493 5551 0.8500 +1493 5588 0.5540 +1493 5728 0.6070 +1493 5743 0.4270 +1493 5771 0.5390 +1493 5777 0.9540 +1493 5781 0.9910 +1493 5788 0.7460 +1493 5805 0.4460 +1493 5817 0.9500 +1493 5819 0.9310 +1493 5896 0.5370 +1493 5970 0.4720 +1493 5979 0.4300 +1493 5996 0.4270 +1493 6097 0.4350 +1493 6098 0.4190 +1493 6347 0.6090 +1493 6348 0.5470 +1493 6351 0.6030 +1493 6361 0.4990 +1493 6362 0.5850 +1493 6363 0.4810 +1493 6364 0.4710 +1493 6366 0.5990 +1493 6367 0.7050 +1493 6373 0.5060 +1493 6374 0.4030 +1493 6375 0.4530 +1493 6387 0.5820 +1493 6402 0.7430 +1493 6490 0.7060 +1493 6504 0.5250 +1493 6517 0.4100 +1493 6654 0.4520 +1493 6655 0.5960 +1493 6693 0.5700 +1493 6696 0.5620 +1493 6714 0.7300 +1493 6772 0.7420 +1493 6774 0.6740 +1493 6775 0.6320 +1493 6776 0.7500 +1493 6777 0.7440 +1493 6778 0.4810 +1493 6794 0.4060 +1493 6932 0.5420 +1493 6999 0.4270 +1493 7015 0.4350 +1493 7037 0.4820 +1493 7038 0.6630 +1493 7040 0.6510 +1493 7042 0.6240 +1493 7048 0.6870 +1493 7051 0.4190 +1493 7070 0.4140 +1493 7076 0.4560 +1493 7097 0.5150 +1493 7098 0.5290 +1493 7099 0.5750 +1493 7124 0.8730 +1493 7128 0.4670 +1493 7132 0.5420 +1493 7133 0.5010 +1493 7157 0.6480 +1493 7173 0.6450 +1493 7185 0.4680 +1493 7253 0.7950 +1493 7292 0.8120 +1493 7293 0.9070 +1493 7299 0.4750 +1493 7305 0.5050 +1493 7409 0.6040 +1493 7412 0.6480 +1493 7448 0.4310 +1493 7525 0.5160 +1493 7535 0.7700 +1493 7837 0.4260 +1493 7850 0.4020 +1493 7852 0.6070 +1493 8034 0.5070 +1493 8320 0.6400 +1493 8431 0.5080 +1493 8600 0.4920 +1493 8639 0.5730 +1493 8651 0.4770 +1493 8718 0.5490 +1493 8740 0.4220 +1493 8743 0.4410 +1493 8744 0.6230 +1493 8764 0.8090 +1493 8784 0.9320 +1493 8797 0.4760 +1493 8809 0.4230 +1493 8829 0.5830 +1493 8832 0.8410 +1493 8915 0.5020 +1493 8995 0.7130 +1493 9034 0.6040 +1493 9308 0.5520 +1493 9332 0.6180 +1493 9402 0.5590 +1493 9437 0.5530 +1493 9466 0.5420 +1493 9518 0.4650 +1493 10000 0.7110 +1493 10004 0.4570 +1493 10018 0.4490 +1493 10219 0.6860 +1493 10225 0.7640 +1493 10232 0.5910 +1493 10288 0.4790 +1493 10320 0.4700 +1493 10392 0.5100 +1493 10538 0.5360 +1493 10563 0.6040 +1493 10578 0.5360 +1493 10663 0.7690 +1493 10666 0.6580 +1493 10673 0.5170 +1493 10803 0.4710 +1493 10859 0.4610 +1493 10875 0.4190 +1493 11006 0.4540 +1493 11126 0.7230 +1493 11148 0.7280 +1493 11251 0.4730 +1493 22806 0.4060 +1493 22807 0.5600 +1493 22861 0.5310 +1493 22914 0.6870 +1493 23274 0.4180 +1493 23308 0.9920 +1493 23476 0.4820 +1493 23495 0.4970 +1493 23569 0.4120 +1493 25824 0.4380 +1493 25945 0.5620 +1493 26191 0.8640 +1493 27074 0.4940 +1493 27087 0.5450 +1493 27180 0.4270 +1493 29126 0.9990 +1493 29851 0.9980 +1493 30009 0.8220 +1493 30816 0.6380 +1493 30835 0.4410 +1493 50489 0.4870 +1493 50615 0.6970 +1493 50616 0.5880 +1493 50943 0.9760 +1493 51176 0.4420 +1493 51284 0.5950 +1493 51311 0.4740 +1493 51744 0.6590 +1493 51752 0.5290 +1493 53347 0.4470 +1493 54106 0.5910 +1493 54210 0.5050 +1493 54908 0.4720 +1493 55423 0.5810 +1493 55509 0.4990 +1493 56244 0.5290 +1493 57007 0.4250 +1493 57509 0.9250 +1493 57817 0.4350 +1493 57823 0.4380 +1493 59067 0.4680 +1493 60468 0.4490 +1493 64115 0.6630 +1493 64127 0.4050 +1493 64135 0.4370 +1493 64375 0.5090 +1493 65258 0.4340 +1493 79037 0.4450 +1493 79679 0.9530 +1493 80321 0.5110 +1493 80380 0.9980 +1493 80381 0.9850 +1493 80736 0.5850 +1493 84162 0.4330 +1493 84433 0.6020 +1493 84868 0.9070 +1493 90865 0.4370 +1493 91937 0.4750 +1493 112744 0.4720 +1493 114836 0.4590 +1493 115004 0.4960 +1493 115352 0.5910 +1493 115650 0.4360 +1493 117289 0.4460 +1493 126259 0.7780 +1493 131450 0.4950 +1493 132612 0.4420 +1493 137902 0.4250 +1493 140885 0.7820 +1493 143903 0.4480 +1493 149233 0.4670 +1493 151888 0.8980 +1493 152404 0.5510 +1493 168400 0.6680 +1493 169355 0.8380 +1493 171558 0.4430 +1493 201633 0.9220 +1493 246778 0.4300 +1493 259197 0.6790 +1493 284194 0.9730 +1493 284266 0.5670 +1493 339390 0.5840 +1493 374383 0.6930 +1493 390243 0.4180 +1493 405754 0.6380 +1493 654346 0.9730 +1493 100526664 0.4320 +1493 102723407 0.9300 +1495 1496 0.9790 +1495 1499 0.9990 +1495 1500 0.9980 +1495 1501 0.7650 +1495 1739 0.4150 +1495 1756 0.5330 +1495 1829 0.4850 +1495 1837 0.4990 +1495 1956 0.8260 +1495 2017 0.5780 +1495 2195 0.4550 +1495 2319 0.4180 +1495 2697 0.5910 +1495 2885 0.4380 +1495 2931 0.6240 +1495 3059 0.4540 +1495 3607 0.4080 +1495 3691 0.5350 +1495 3728 0.9910 +1495 3791 0.4670 +1495 3801 0.4930 +1495 4205 0.5600 +1495 4208 0.5570 +1495 4209 0.5290 +1495 4255 0.4260 +1495 4301 0.9840 +1495 5058 0.5230 +1495 5062 0.5210 +1495 5063 0.5140 +1495 5097 0.5400 +1495 5318 0.7210 +1495 5595 0.4430 +1495 5600 0.5130 +1495 5781 0.4350 +1495 5819 0.4500 +1495 5829 0.4010 +1495 5879 0.6260 +1495 5885 0.4130 +1495 6300 0.5500 +1495 6709 0.4030 +1495 6929 0.5450 +1495 7082 0.9870 +1495 7094 0.7600 +1495 7122 0.5070 +1495 7157 0.5610 +1495 7402 0.5280 +1495 7408 0.4570 +1495 7409 0.5350 +1495 7410 0.5360 +1495 7414 0.9990 +1495 7529 0.9030 +1495 7531 0.9120 +1495 7532 0.9420 +1495 7533 0.9230 +1495 7534 0.9140 +1495 7791 0.6460 +1495 8312 0.7770 +1495 8502 0.6870 +1495 8642 0.7140 +1495 8766 0.4050 +1495 8777 0.5220 +1495 8825 0.4900 +1495 8826 0.8590 +1495 9043 0.5240 +1495 9064 0.4430 +1495 9414 0.5850 +1495 9782 0.4560 +1495 9922 0.6670 +1495 9963 0.4090 +1495 10009 0.4790 +1495 10155 0.4130 +1495 10211 0.4580 +1495 10297 0.9040 +1495 10399 0.4450 +1495 10413 0.4680 +1495 10451 0.5100 +1495 10580 0.5690 +1495 10788 0.4220 +1495 10971 0.9110 +1495 22874 0.4100 +1495 22919 0.4920 +1495 23007 0.4850 +1495 23513 0.5960 +1495 23603 0.4460 +1495 25852 0.5320 +1495 26045 0.7300 +1495 26136 0.4970 +1495 28316 0.5850 +1495 28513 0.6330 +1495 29119 0.9550 +1495 29127 0.4040 +1495 50649 0.4050 +1495 50937 0.5020 +1495 51176 0.6480 +1495 51474 0.7740 +1495 55591 0.6460 +1495 55914 0.5030 +1495 56288 0.6130 +1495 56998 0.6450 +1495 57584 0.6520 +1495 57659 0.4540 +1495 57662 0.5160 +1495 59274 0.4860 +1495 60437 0.6010 +1495 64072 0.6590 +1495 64374 0.5820 +1495 64403 0.6090 +1495 64405 0.6020 +1495 79026 0.4980 +1495 81892 0.4810 +1495 83660 0.7390 +1495 84708 0.4840 +1495 91653 0.5020 +1495 113146 0.4510 +1495 128239 0.4560 +1495 144100 0.8270 +1495 157638 0.7530 +1495 222256 0.5810 +1495 253461 0.4310 +1495 342184 0.5180 +1495 440193 0.5070 +1495 728378 0.5250 +1495 100271849 0.5120 +1496 1499 0.9980 +1496 1500 0.8290 +1496 1501 0.7260 +1496 1630 0.4540 +1496 1740 0.4860 +1496 2735 0.4030 +1496 2895 0.4580 +1496 3728 0.9210 +1496 4205 0.5120 +1496 4208 0.5540 +1496 4209 0.5140 +1496 4301 0.9670 +1496 4756 0.4280 +1496 5600 0.5130 +1496 5608 0.4050 +1496 5789 0.4040 +1496 5885 0.4030 +1496 6300 0.5310 +1496 6310 0.4110 +1496 6929 0.5070 +1496 7082 0.9500 +1496 7094 0.7120 +1496 7109 0.5170 +1496 7414 0.9690 +1496 7529 0.9030 +1496 7531 0.9150 +1496 7532 0.9070 +1496 7533 0.9200 +1496 7534 0.9080 +1496 8502 0.5600 +1496 8642 0.7160 +1496 9043 0.5370 +1496 9378 0.6460 +1496 9758 0.4130 +1496 10297 0.6150 +1496 10404 0.4420 +1496 10971 0.9020 +1496 23245 0.4430 +1496 26047 0.4510 +1496 28316 0.6840 +1496 28513 0.6790 +1496 29119 0.9430 +1496 50937 0.5170 +1496 51193 0.6810 +1496 53353 0.4850 +1496 56998 0.5520 +1496 59274 0.4860 +1496 60437 0.6320 +1496 64072 0.7110 +1496 64403 0.5860 +1496 64405 0.6520 +1496 65217 0.4450 +1496 79633 0.4640 +1496 80059 0.8370 +1496 83660 0.7010 +1496 91653 0.5020 +1496 222256 0.5810 +1496 347730 0.8970 +1496 347731 0.4780 +1496 401251 0.6200 +1496 100271849 0.5120 +1497 3425 0.5200 +1497 3916 0.4400 +1497 4036 0.4530 +1497 4125 0.4050 +1497 4669 0.4110 +1497 4952 0.4740 +1497 7137 0.6210 +1497 7139 0.5940 +1497 7442 0.7270 +1497 7942 0.4600 +1497 8029 0.4100 +1497 8460 0.4050 +1497 8531 0.4590 +1497 8989 0.4740 +1497 23729 0.9780 +1497 26503 0.5540 +1497 54868 0.4370 +1497 54896 0.8370 +1497 55238 0.4790 +1497 55277 0.7190 +1497 55300 0.4150 +1497 57192 0.4850 +1497 64121 0.5040 +1497 64342 0.7630 +1497 79054 0.4240 +1497 80148 0.4410 +1497 126321 0.4600 +1497 206358 0.4080 +1497 256471 0.4070 +1499 1500 0.9990 +1499 1501 0.7510 +1499 1513 0.4730 +1499 1523 0.6560 +1499 1540 0.5350 +1499 1543 0.4020 +1499 1571 0.4120 +1499 1585 0.4110 +1499 1588 0.5060 +1499 1595 0.5010 +1499 1616 0.6930 +1499 1634 0.4280 +1499 1638 0.4010 +1499 1641 0.4280 +1499 1642 0.5240 +1499 1653 0.4540 +1499 1654 0.8350 +1499 1655 0.8860 +1499 1660 0.7090 +1499 1739 0.7860 +1499 1742 0.5380 +1499 1749 0.6530 +1499 1761 0.4980 +1499 1786 0.8170 +1499 1788 0.5060 +1499 1789 0.4540 +1499 1791 0.4860 +1499 1806 0.5310 +1499 1810 0.4680 +1499 1813 0.5060 +1499 1824 0.5310 +1499 1825 0.6360 +1499 1828 0.4590 +1499 1829 0.7240 +1499 1830 0.6360 +1499 1832 0.8610 +1499 1839 0.4100 +1499 1843 0.5900 +1499 1855 0.9940 +1499 1856 0.9300 +1499 1857 0.8870 +1499 1869 0.6240 +1499 1871 0.4600 +1499 1876 0.4060 +1499 1890 0.6080 +1499 1894 0.4900 +1499 1896 0.4610 +1499 1906 0.5000 +1499 1946 0.4870 +1499 1947 0.5850 +1499 1948 0.4360 +1499 1950 0.8680 +1499 1956 0.9980 +1499 1958 0.8170 +1499 1959 0.4020 +1499 1968 0.4480 +1499 1969 0.7590 +1499 1977 0.7280 +1499 1994 0.8200 +1499 2005 0.4370 +1499 2010 0.9730 +1499 2017 0.6240 +1499 2022 0.4920 +1499 2023 0.4340 +1499 2026 0.4960 +1499 2033 0.9990 +1499 2034 0.7500 +1499 2035 0.5960 +1499 2041 0.4340 +1499 2042 0.4440 +1499 2045 0.5550 +1499 2048 0.6660 +1499 2049 0.6360 +1499 2050 0.5710 +1499 2064 0.9980 +1499 2065 0.7070 +1499 2066 0.6330 +1499 2067 0.6020 +1499 2099 0.9650 +1499 2100 0.5220 +1499 2101 0.5470 +1499 2113 0.5930 +1499 2117 0.4280 +1499 2130 0.4810 +1499 2146 0.9860 +1499 2167 0.4320 +1499 2175 0.7640 +1499 2176 0.5780 +1499 2177 0.5200 +1499 2178 0.5950 +1499 2185 0.4920 +1499 2195 0.9330 +1499 2203 0.4240 +1499 2241 0.9450 +1499 2246 0.4640 +1499 2247 0.7180 +1499 2248 0.6640 +1499 2249 0.6690 +1499 2250 0.6810 +1499 2251 0.6470 +1499 2252 0.6830 +1499 2253 0.7690 +1499 2254 0.6920 +1499 2255 0.6860 +1499 2258 0.5930 +1499 2260 0.9470 +1499 2261 0.6000 +1499 2263 0.6360 +1499 2264 0.6700 +1499 2272 0.8110 +1499 2274 0.9930 +1499 2290 0.7400 +1499 2295 0.5640 +1499 2296 0.4370 +1499 2300 0.5480 +1499 2303 0.6840 +1499 2305 0.9940 +1499 2308 0.9850 +1499 2309 0.9980 +1499 2314 0.5770 +1499 2316 0.4530 +1499 2319 0.4790 +1499 2321 0.7990 +1499 2322 0.5290 +1499 2324 0.4310 +1499 2332 0.5750 +1499 2335 0.8500 +1499 2348 0.5020 +1499 2350 0.4870 +1499 2353 0.6180 +1499 2475 0.6940 +1499 2487 0.8110 +1499 2494 0.9610 +1499 2512 0.4730 +1499 2516 0.8650 +1499 2520 0.4180 +1499 2521 0.5100 +1499 2534 0.9860 +1499 2535 0.9340 +1499 2547 0.6620 +1499 2597 0.8970 +1499 2618 0.4130 +1499 2624 0.4110 +1499 2625 0.5310 +1499 2626 0.6050 +1499 2627 0.5200 +1499 2641 0.8500 +1499 2648 0.8260 +1499 2658 0.4130 +1499 2668 0.4200 +1499 2670 0.5520 +1499 2697 0.8700 +1499 2705 0.8990 +1499 2719 0.5850 +1499 2735 0.8290 +1499 2736 0.6340 +1499 2737 0.6860 +1499 2752 0.6030 +1499 2767 0.5560 +1499 2776 0.5600 +1499 2778 0.6230 +1499 2806 0.4580 +1499 2810 0.5870 +1499 2817 0.4860 +1499 2875 0.4440 +1499 2877 0.4110 +1499 2878 0.4090 +1499 2885 0.5060 +1499 2891 0.6150 +1499 2898 0.4680 +1499 2904 0.7570 +1499 2908 0.7070 +1499 2919 0.4360 +1499 2931 0.9960 +1499 2932 0.9990 +1499 2956 0.5600 +1499 3005 0.6120 +1499 3006 0.4200 +1499 3012 0.4990 +1499 3013 0.5000 +1499 3014 0.6720 +1499 3015 0.6040 +1499 3017 0.6000 +1499 3018 0.6010 +1499 3021 0.8370 +1499 3050 0.4500 +1499 3059 0.6340 +1499 3064 0.6480 +1499 3065 0.9850 +1499 3066 0.5730 +1499 3068 0.5520 +1499 3082 0.6580 +1499 3084 0.4280 +1499 3090 0.7160 +1499 3091 0.9980 +1499 3094 0.6040 +1499 3099 0.4170 +1499 3105 0.5110 +1499 3146 0.5100 +1499 3161 0.5350 +1499 3162 0.4890 +1499 3164 0.6780 +1499 3169 0.6760 +1499 3170 0.5580 +1499 3172 0.9990 +1499 3176 0.4030 +1499 3178 0.8290 +1499 3181 0.7490 +1499 3183 0.4550 +1499 3190 0.8140 +1499 3205 0.4330 +1499 3206 0.5950 +1499 3214 0.5760 +1499 3217 0.4580 +1499 3251 0.4890 +1499 3265 0.8650 +1499 3275 0.5720 +1499 3304 0.5350 +1499 3308 0.6620 +1499 3309 0.7000 +1499 3312 0.5770 +1499 3315 0.4740 +1499 3316 0.4070 +1499 3320 0.6680 +1499 3326 0.7590 +1499 3381 0.5070 +1499 3383 0.5140 +1499 3397 0.4210 +1499 3398 0.4220 +1499 3417 0.6240 +1499 3418 0.5370 +1499 3439 0.4160 +1499 3456 0.4120 +1499 3458 0.7130 +1499 3479 0.6870 +1499 3480 0.9850 +1499 3481 0.5990 +1499 3486 0.4310 +1499 3491 0.4800 +1499 3516 0.9710 +1499 3549 0.6030 +1499 3551 0.8430 +1499 3552 0.5520 +1499 3553 0.7450 +1499 3558 0.5270 +1499 3559 0.4120 +1499 3565 0.4860 +1499 3569 0.8130 +1499 3576 0.7340 +1499 3586 0.5910 +1499 3589 0.4020 +1499 3596 0.4050 +1499 3600 0.5700 +1499 3605 0.5060 +1499 3608 0.5010 +1499 3611 0.7520 +1499 3620 0.6530 +1499 3630 0.7270 +1499 3655 0.5420 +1499 3661 0.8620 +1499 3664 0.5050 +1499 3667 0.6860 +1499 3670 0.4810 +1499 3672 0.4320 +1499 3678 0.4540 +1499 3684 0.4420 +1499 3685 0.4490 +1499 3688 0.6730 +1499 3690 0.4350 +1499 3691 0.4310 +1499 3714 0.5080 +1499 3716 0.5540 +1499 3717 0.6440 +1499 3718 0.4700 +1499 3725 0.8980 +1499 3728 0.9780 +1499 3732 0.7620 +1499 3741 0.4490 +1499 3753 0.4590 +1499 3784 0.6850 +1499 3791 0.9960 +1499 3814 0.4770 +1499 3815 0.6870 +1499 3818 0.4510 +1499 3836 0.4670 +1499 3837 0.4750 +1499 3838 0.5020 +1499 3839 0.4560 +1499 3845 0.8850 +1499 3852 0.5610 +1499 3855 0.6010 +1499 3856 0.5440 +1499 3861 0.5800 +1499 3866 0.4150 +1499 3875 0.7140 +1499 3880 0.6300 +1499 3887 0.4280 +1499 3897 0.4350 +1499 3916 0.4370 +1499 3921 0.6460 +1499 3952 0.6340 +1499 3958 0.8650 +1499 3960 0.4610 +1499 3976 0.4500 +1499 3984 0.4390 +1499 4000 0.6860 +1499 4001 0.8300 +1499 4007 0.4260 +1499 4015 0.5710 +1499 4040 0.9920 +1499 4041 0.9920 +1499 4067 0.4130 +1499 4072 0.6700 +1499 4084 0.4680 +1499 4086 0.4440 +1499 4087 0.9980 +1499 4088 0.9990 +1499 4089 0.9980 +1499 4090 0.7170 +1499 4091 0.4510 +1499 4092 0.9460 +1499 4093 0.4360 +1499 4137 0.6330 +1499 4149 0.5000 +1499 4162 0.4190 +1499 4170 0.7490 +1499 4176 0.4060 +1499 4193 0.8230 +1499 4205 0.7640 +1499 4208 0.9390 +1499 4209 0.6250 +1499 4214 0.4010 +1499 4217 0.4270 +1499 4233 0.9850 +1499 4254 0.4730 +1499 4255 0.4800 +1499 4286 0.8130 +1499 4288 0.6620 +1499 4292 0.6230 +1499 4297 0.6710 +1499 4301 0.7760 +1499 4302 0.4760 +1499 4303 0.9150 +1499 4311 0.5140 +1499 4312 0.4860 +1499 4313 0.8030 +1499 4314 0.5760 +1499 4316 0.8240 +1499 4318 0.7990 +1499 4322 0.5960 +1499 4323 0.5500 +1499 4363 0.6430 +1499 4435 0.5200 +1499 4436 0.5700 +1499 4440 0.4460 +1499 4478 0.7300 +1499 4486 0.7580 +1499 4487 0.4830 +1499 4488 0.5400 +1499 4521 0.4130 +1499 4585 0.4670 +1499 4586 0.5050 +1499 4588 0.4840 +1499 4591 0.4280 +1499 4594 0.6860 +1499 4602 0.4630 +1499 4609 0.9850 +1499 4613 0.7170 +1499 4617 0.4020 +1499 4627 0.4170 +1499 4642 0.4310 +1499 4647 0.4450 +1499 4654 0.6600 +1499 4656 0.4530 +1499 4670 0.6880 +1499 4684 0.5070 +1499 4693 0.7370 +1499 4750 0.5050 +1499 4751 0.7030 +1499 4760 0.4480 +1499 4762 0.4180 +1499 4763 0.5550 +1499 4771 0.8890 +1499 4772 0.5240 +1499 4775 0.4120 +1499 4780 0.5840 +1499 4782 0.5200 +1499 4790 0.9640 +1499 4792 0.5820 +1499 4803 0.4770 +1499 4830 0.4990 +1499 4841 0.6680 +1499 4846 0.5780 +1499 4851 0.9760 +1499 4853 0.6470 +1499 4854 0.6030 +1499 4855 0.4770 +1499 4857 0.4500 +1499 4868 0.5510 +1499 4869 0.5150 +1499 4893 0.7190 +1499 4904 0.7080 +1499 4907 0.5570 +1499 4914 0.7450 +1499 4915 0.4310 +1499 4920 0.5480 +1499 4921 0.4750 +1499 4969 0.5350 +1499 5015 0.4910 +1499 5045 0.4070 +1499 5054 0.4940 +1499 5058 0.6950 +1499 5062 0.6090 +1499 5063 0.5710 +1499 5071 0.4900 +1499 5076 0.4470 +1499 5077 0.5670 +1499 5080 0.6020 +1499 5081 0.4940 +1499 5133 0.4740 +1499 5155 0.4720 +1499 5156 0.7560 +1499 5159 0.5920 +1499 5163 0.4120 +1499 5174 0.4550 +1499 5175 0.9980 +1499 5209 0.5270 +1499 5230 0.4870 +1499 5241 0.5960 +1499 5243 0.5810 +1499 5286 0.4130 +1499 5290 0.9010 +1499 5295 0.8580 +1499 5300 0.5150 +1499 5308 0.9630 +1499 5310 0.7990 +1499 5315 0.9960 +1499 5317 0.4330 +1499 5318 0.7740 +1499 5324 0.7960 +1499 5326 0.4620 +1499 5327 0.4640 +1499 5328 0.5370 +1499 5329 0.4470 +1499 5339 0.6250 +1499 5347 0.7590 +1499 5371 0.7000 +1499 5395 0.4810 +1499 5426 0.5210 +1499 5460 0.9990 +1499 5465 0.4730 +1499 5467 0.5150 +1499 5468 0.9940 +1499 5478 0.4660 +1499 5494 0.4600 +1499 5515 0.7010 +1499 5516 0.6000 +1499 5518 0.7680 +1499 5519 0.6050 +1499 5520 0.6350 +1499 5525 0.6110 +1499 5526 0.5620 +1499 5527 0.5860 +1499 5528 0.5750 +1499 5529 0.5680 +1499 5566 0.9570 +1499 5567 0.9570 +1499 5568 0.9560 +1499 5573 0.4320 +1499 5578 0.7480 +1499 5580 0.6110 +1499 5582 0.4050 +1499 5590 0.6530 +1499 5591 0.4270 +1499 5594 0.7360 +1499 5595 0.8730 +1499 5597 0.4790 +1499 5598 0.4440 +1499 5599 0.7190 +1499 5600 0.6900 +1499 5601 0.6130 +1499 5604 0.6570 +1499 5605 0.7760 +1499 5606 0.4090 +1499 5608 0.5340 +1499 5626 0.8380 +1499 5646 0.4240 +1499 5663 0.9990 +1499 5684 0.4730 +1499 5688 0.5990 +1499 5702 0.4500 +1499 5704 0.4320 +1499 5706 0.4910 +1499 5713 0.4020 +1499 5727 0.7310 +1499 5728 0.9430 +1499 5734 0.4460 +1499 5741 0.5950 +1499 5743 0.7680 +1499 5744 0.4930 +1499 5745 0.5700 +1499 5747 0.8020 +1499 5754 0.6030 +1499 5764 0.5280 +1499 5770 0.9700 +1499 5781 0.9020 +1499 5783 0.4930 +1499 5784 0.8940 +1499 5787 0.9670 +1499 5788 0.7350 +1499 5792 0.9820 +1499 5793 0.5380 +1499 5795 0.7950 +1499 5796 0.7010 +1499 5797 0.9230 +1499 5801 0.4880 +1499 5802 0.5640 +1499 5803 0.5110 +1499 5818 0.8910 +1499 5819 0.5080 +1499 5829 0.9850 +1499 5832 0.4420 +1499 5868 0.4070 +1499 5877 0.4030 +1499 5879 0.7680 +1499 5880 0.4680 +1499 5894 0.6790 +1499 5900 0.4270 +1499 5913 0.7100 +1499 5914 0.8830 +1499 5915 0.4110 +1499 5917 0.4380 +1499 5921 0.6550 +1499 5925 0.4740 +1499 5928 0.5500 +1499 5929 0.9350 +1499 5962 0.6560 +1499 5966 0.4410 +1499 5970 0.9200 +1499 5971 0.4100 +1499 5972 0.4500 +1499 5979 0.7310 +1499 6047 0.5870 +1499 6091 0.4050 +1499 6093 0.9530 +1499 6098 0.4430 +1499 6120 0.4160 +1499 6181 0.4070 +1499 6194 0.4470 +1499 6195 0.4720 +1499 6197 0.4350 +1499 6198 0.5910 +1499 6217 0.4870 +1499 6232 0.5190 +1499 6233 0.7350 +1499 6240 0.5470 +1499 6249 0.5450 +1499 6256 0.7570 +1499 6259 0.6910 +1499 6275 0.5890 +1499 6277 0.5460 +1499 6279 0.4810 +1499 6299 0.5760 +1499 6300 0.6850 +1499 6304 0.6620 +1499 6347 0.5710 +1499 6382 0.4180 +1499 6386 0.5360 +1499 6387 0.6100 +1499 6390 0.4470 +1499 6391 0.5940 +1499 6416 0.4140 +1499 6422 0.8740 +1499 6423 0.8380 +1499 6424 0.7710 +1499 6425 0.7730 +1499 6426 0.5150 +1499 6464 0.6200 +1499 6469 0.8700 +1499 6477 0.9910 +1499 6495 0.4180 +1499 6500 0.9990 +1499 6502 0.4860 +1499 6513 0.5260 +1499 6531 0.4880 +1499 6550 0.4360 +1499 6581 0.4380 +1499 6585 0.5830 +1499 6586 0.6760 +1499 6591 0.8010 +1499 6597 0.9980 +1499 6598 0.5160 +1499 6599 0.5140 +1499 6601 0.5030 +1499 6608 0.6500 +1499 6615 0.9340 +1499 6624 0.8580 +1499 6648 0.4330 +1499 6656 0.5630 +1499 6657 0.9910 +1499 6658 0.6750 +1499 6659 0.8730 +1499 6660 0.8550 +1499 6662 0.9820 +1499 6663 0.5400 +1499 6665 0.6070 +1499 6667 0.8440 +1499 6678 0.5270 +1499 6696 0.6610 +1499 6709 0.5400 +1499 6714 0.9990 +1499 6720 0.4570 +1499 6721 0.5710 +1499 6722 0.4020 +1499 6732 0.5200 +1499 6736 0.7910 +1499 6737 0.4050 +1499 6757 0.5840 +1499 6772 0.7250 +1499 6774 0.8970 +1499 6776 0.7090 +1499 6777 0.7170 +1499 6778 0.4570 +1499 6790 0.7320 +1499 6794 0.6110 +1499 6839 0.5300 +1499 6850 0.5950 +1499 6855 0.5070 +1499 6862 0.6250 +1499 6868 0.4150 +1499 6885 0.4160 +1499 6907 0.9980 +1499 6908 0.7430 +1499 6910 0.9920 +1499 6911 0.6960 +1499 6913 0.4260 +1499 6917 0.4280 +1499 6925 0.9990 +1499 6926 0.4990 +1499 6927 0.5370 +1499 6928 0.4970 +1499 6929 0.9580 +1499 6932 0.9990 +1499 6934 0.9990 +1499 6950 0.4390 +1499 6997 0.4040 +1499 7003 0.4170 +1499 7004 0.5470 +1499 7010 0.4970 +1499 7015 0.9950 +1499 7031 0.4750 +1499 7039 0.5060 +1499 7040 0.7890 +1499 7042 0.5950 +1499 7043 0.5230 +1499 7046 0.8590 +1499 7048 0.8020 +1499 7050 0.4560 +1499 7054 0.5690 +1499 7057 0.5160 +1499 7070 0.5720 +1499 7074 0.6450 +1499 7076 0.4820 +1499 7077 0.4320 +1499 7078 0.4450 +1499 7080 0.4760 +1499 7082 0.9950 +1499 7083 0.4350 +1499 7086 0.4240 +1499 7088 0.9600 +1499 7089 0.7640 +1499 7090 0.9520 +1499 7091 0.9350 +1499 7094 0.6940 +1499 7097 0.4630 +1499 7099 0.6130 +1499 7112 0.4890 +1499 7114 0.5430 +1499 7122 0.6100 +1499 7124 0.7150 +1499 7128 0.4680 +1499 7132 0.4210 +1499 7153 0.7360 +1499 7157 0.9270 +1499 7159 0.6940 +1499 7184 0.4350 +1499 7189 0.6060 +1499 7223 0.4650 +1499 7249 0.5170 +1499 7291 0.8120 +1499 7295 0.4720 +1499 7297 0.5690 +1499 7298 0.4800 +1499 7299 0.4620 +1499 7311 0.5760 +1499 7314 0.7630 +1499 7316 0.6630 +1499 7317 0.4820 +1499 7320 0.6270 +1499 7321 0.4560 +1499 7322 0.4290 +1499 7329 0.4790 +1499 7334 0.5460 +1499 7335 0.4340 +1499 7337 0.9740 +1499 7343 0.4770 +1499 7345 0.6850 +1499 7375 0.7800 +1499 7391 0.7450 +1499 7402 0.5770 +1499 7403 0.4910 +1499 7408 0.7000 +1499 7409 0.6130 +1499 7410 0.6500 +1499 7412 0.5090 +1499 7414 0.9970 +1499 7424 0.4630 +1499 7428 0.5060 +1499 7430 0.8250 +1499 7431 0.7400 +1499 7447 0.4100 +1499 7448 0.4330 +1499 7465 0.4290 +1499 7468 0.6660 +1499 7471 0.9730 +1499 7472 0.8930 +1499 7473 0.9410 +1499 7474 0.8690 +1499 7475 0.6840 +1499 7476 0.7660 +1499 7477 0.7460 +1499 7478 0.8020 +1499 7479 0.7850 +1499 7480 0.7510 +1499 7481 0.7630 +1499 7482 0.7520 +1499 7483 0.7610 +1499 7484 0.6290 +1499 7490 0.6260 +1499 7514 0.8890 +1499 7525 0.6990 +1499 7528 0.4980 +1499 7531 0.4220 +1499 7532 0.5040 +1499 7534 0.9930 +1499 7545 0.7410 +1499 7546 0.6170 +1499 7547 0.4860 +1499 7597 0.4870 +1499 7791 0.5860 +1499 7837 0.7900 +1499 7846 0.6690 +1499 7849 0.4790 +1499 7852 0.6210 +1499 7855 0.7970 +1499 7869 0.4730 +1499 7874 0.8810 +1499 7976 0.7660 +1499 8028 0.7580 +1499 8061 0.5370 +1499 8074 0.4550 +1499 8085 0.9360 +1499 8091 0.7420 +1499 8216 0.5170 +1499 8239 0.8800 +1499 8242 0.5040 +1499 8277 0.4340 +1499 8289 0.6840 +1499 8290 0.8900 +1499 8295 0.9640 +1499 8312 0.9990 +1499 8313 0.9990 +1499 8314 0.4400 +1499 8320 0.8840 +1499 8321 0.9130 +1499 8322 0.8300 +1499 8323 0.6630 +1499 8324 0.8080 +1499 8325 0.7980 +1499 8326 0.7780 +1499 8328 0.5520 +1499 8331 0.4990 +1499 8334 0.5030 +1499 8337 0.6460 +1499 8338 0.6460 +1499 8340 0.5960 +1499 8341 0.5950 +1499 8342 0.5950 +1499 8345 0.5950 +1499 8347 0.5960 +1499 8348 0.5950 +1499 8349 0.7060 +1499 8356 0.8340 +1499 8361 0.6830 +1499 8405 0.4070 +1499 8434 0.5840 +1499 8450 0.4060 +1499 8451 0.5360 +1499 8452 0.6390 +1499 8454 0.9060 +1499 8467 0.7160 +1499 8468 0.4520 +1499 8473 0.5250 +1499 8502 0.8890 +1499 8503 0.5380 +1499 8549 0.7680 +1499 8600 0.6970 +1499 8607 0.9990 +1499 8621 0.5060 +1499 8626 0.4770 +1499 8642 0.7870 +1499 8646 0.5670 +1499 8648 0.6980 +1499 8650 0.7870 +1499 8651 0.4650 +1499 8658 0.7750 +1499 8663 0.4390 +1499 8678 0.5470 +1499 8727 0.6570 +1499 8766 0.6770 +1499 8772 0.4170 +1499 8777 0.4090 +1499 8788 0.4540 +1499 8795 0.4140 +1499 8815 0.7240 +1499 8817 0.6860 +1499 8822 0.6500 +1499 8823 0.6720 +1499 8825 0.7920 +1499 8826 0.9990 +1499 8835 0.5730 +1499 8837 0.4020 +1499 8839 0.4350 +1499 8840 0.5930 +1499 8841 0.5640 +1499 8842 0.8640 +1499 8850 0.7670 +1499 8851 0.7340 +1499 8854 0.4110 +1499 8861 0.9180 +1499 8877 0.4310 +1499 8882 0.4470 +1499 8883 0.4880 +1499 8900 0.6920 +1499 8924 0.5140 +1499 8928 0.8570 +1499 8945 0.9990 +1499 8970 0.5950 +1499 8988 0.4180 +1499 9021 0.4240 +1499 9025 0.4200 +1499 9043 0.5680 +1499 9055 0.4450 +1499 9070 0.9130 +1499 9075 0.4350 +1499 9076 0.7340 +1499 9096 0.5430 +1499 9099 0.5850 +1499 9113 0.5620 +1499 9148 0.4260 +1499 9201 0.4640 +1499 9208 0.9710 +1499 9212 0.5680 +1499 9223 0.9630 +1499 9231 0.7460 +1499 9241 0.7470 +1499 9253 0.7100 +1499 9314 0.9910 +1499 9351 0.5960 +1499 9353 0.4260 +1499 9365 0.4940 +1499 9368 0.9030 +1499 9370 0.4680 +1499 9371 0.4870 +1499 9414 0.7480 +1499 9429 0.5930 +1499 9451 0.5570 +1499 9474 0.4340 +1499 9475 0.9450 +1499 9493 0.4510 +1499 9495 0.4430 +1499 9519 0.6300 +1499 9563 0.4160 +1499 9564 0.7700 +1499 9575 0.5010 +1499 9580 0.6020 +1499 9590 0.4080 +1499 9611 0.4380 +1499 9618 0.4800 +1499 9636 0.4580 +1499 9693 0.6550 +1499 9696 0.5590 +1499 9732 0.4960 +1499 9739 0.9470 +1499 9743 0.5680 +1499 9754 0.4020 +1499 9759 0.6060 +1499 9768 0.7660 +1499 9771 0.4140 +1499 9793 0.4030 +1499 9794 0.7050 +1499 9817 0.4800 +1499 9821 0.4260 +1499 9839 0.6930 +1499 9863 0.9860 +1499 9958 0.7550 +1499 9965 0.6440 +1499 9968 0.8540 +1499 9969 0.6050 +1499 9971 0.6820 +1499 9975 0.4310 +1499 9978 0.7710 +1499 10000 0.5180 +1499 10009 0.7480 +1499 10013 0.7340 +1499 10018 0.5250 +1499 10023 0.8100 +1499 10046 0.5390 +1499 10075 0.7160 +1499 10076 0.8710 +1499 10112 0.4410 +1499 10140 0.4250 +1499 10159 0.5860 +1499 10174 0.6480 +1499 10197 0.4710 +1499 10207 0.4620 +1499 10211 0.5180 +1499 10215 0.4590 +1499 10273 0.6630 +1499 10297 0.9940 +1499 10298 0.4560 +1499 10365 0.5070 +1499 10371 0.4440 +1499 10397 0.5440 +1499 10399 0.6290 +1499 10413 0.9970 +1499 10451 0.5960 +1499 10468 0.4370 +1499 10498 0.7990 +1499 10499 0.5070 +1499 10521 0.6300 +1499 10524 0.8720 +1499 10533 0.4570 +1499 10562 0.4620 +1499 10564 0.5440 +1499 10580 0.6740 +1499 10589 0.4190 +1499 10631 0.4780 +1499 10637 0.5650 +1499 10640 0.8600 +1499 10642 0.7610 +1499 10643 0.5130 +1499 10664 0.4530 +1499 10725 0.4020 +1499 10736 0.4180 +1499 10746 0.4470 +1499 10763 0.6260 +1499 10765 0.4060 +1499 10788 0.5780 +1499 10804 0.4400 +1499 10856 0.9970 +1499 10891 0.6390 +1499 10902 0.4550 +1499 10913 0.6010 +1499 10919 0.4230 +1499 10923 0.4180 +1499 10962 0.4080 +1499 10979 0.7850 +1499 10987 0.6950 +1499 11091 0.4340 +1499 11096 0.4230 +1499 11122 0.5990 +1499 11124 0.6890 +1499 11127 0.6380 +1499 11164 0.4780 +1499 11186 0.6610 +1499 11187 0.4840 +1499 11190 0.4390 +1499 11197 0.7350 +1499 11200 0.4470 +1499 11211 0.7310 +1499 11218 0.4680 +1499 11322 0.6220 +1499 22829 0.4980 +1499 22871 0.5530 +1499 22874 0.5130 +1499 22881 0.5380 +1499 22919 0.6940 +1499 22933 0.9000 +1499 22934 0.5580 +1499 22938 0.5860 +1499 22943 0.9630 +1499 22954 0.4490 +1499 23002 0.4550 +1499 23007 0.4890 +1499 23028 0.8390 +1499 23030 0.6070 +1499 23043 0.8690 +1499 23135 0.6750 +1499 23189 0.5960 +1499 23212 0.6340 +1499 23224 0.5920 +1499 23291 0.9930 +1499 23327 0.4750 +1499 23336 0.4630 +1499 23345 0.5740 +1499 23385 0.5560 +1499 23394 0.4200 +1499 23401 0.7290 +1499 23405 0.5930 +1499 23411 0.9020 +1499 23462 0.4800 +1499 23476 0.5990 +1499 23499 0.4150 +1499 23512 0.4320 +1499 23513 0.8800 +1499 23528 0.5950 +1499 23554 0.4620 +1499 23558 0.6200 +1499 23583 0.4120 +1499 23592 0.5500 +1499 23603 0.5340 +1499 23621 0.5050 +1499 24148 0.4370 +1499 25793 0.4800 +1499 25852 0.6420 +1499 25937 0.8170 +1499 25945 0.4940 +1499 25960 0.8270 +1499 25962 0.4650 +1499 26018 0.4620 +1499 26108 0.9490 +1499 26135 0.4390 +1499 26160 0.4070 +1499 26190 0.4040 +1499 26227 0.5160 +1499 26281 0.6840 +1499 26330 0.4980 +1499 26524 0.6280 +1499 27006 0.6620 +1499 27101 0.9710 +1499 27120 0.5670 +1499 27121 0.7030 +1499 27122 0.6800 +1499 27123 0.7370 +1499 27130 0.6390 +1499 27134 0.4310 +1499 27161 0.5130 +1499 27243 0.4440 +1499 27250 0.4920 +1499 27287 0.5580 +1499 27316 0.6510 +1499 27328 0.6670 +1499 27338 0.4990 +1499 27343 0.4140 +1499 28234 0.4940 +1499 28316 0.7670 +1499 28513 0.7670 +1499 28514 0.7620 +1499 28996 0.4100 +1499 28999 0.5580 +1499 29102 0.5010 +1499 29119 0.9980 +1499 29126 0.6430 +1499 29964 0.4230 +1499 30812 0.4120 +1499 30851 0.9430 +1499 50649 0.5750 +1499 50846 0.4250 +1499 50848 0.6890 +1499 50937 0.6770 +1499 50943 0.6590 +1499 50964 0.8530 +1499 51060 0.5040 +1499 51176 0.9990 +1499 51185 0.4440 +1499 51191 0.6510 +1499 51194 0.4760 +1499 51339 0.7530 +1499 51366 0.7070 +1499 51377 0.4120 +1499 51384 0.7850 +1499 51474 0.9310 +1499 51564 0.7770 +1499 51592 0.7420 +1499 51684 0.8170 +1499 51701 0.8880 +1499 51741 0.5680 +1499 51755 0.4100 +1499 51765 0.4540 +1499 51806 0.6270 +1499 53841 0.7280 +1499 53944 0.4400 +1499 54145 0.5950 +1499 54205 0.5760 +1499 54361 0.8850 +1499 54413 0.5130 +1499 54443 0.5140 +1499 54474 0.5570 +1499 54541 0.5250 +1499 54567 0.7130 +1499 54585 0.4580 +1499 54798 0.5050 +1499 54806 0.5400 +1499 54825 0.5240 +1499 54848 0.4100 +1499 54875 0.4590 +1499 54894 0.6740 +1499 54922 0.4700 +1499 54926 0.6240 +1499 54971 0.7370 +1499 54994 0.5630 +1499 55182 0.6450 +1499 55294 0.9240 +1499 55327 0.4950 +1499 55366 0.6500 +1499 55534 0.6860 +1499 55553 0.9180 +1499 55591 0.7680 +1499 55611 0.5870 +1499 55693 0.5140 +1499 55766 0.5090 +1499 55914 0.7030 +1499 55966 0.7580 +1499 56259 0.5030 +1499 56288 0.8950 +1499 56339 0.4340 +1499 56924 0.5480 +1499 56955 0.4240 +1499 56998 0.9990 +1499 57120 0.4150 +1499 57154 0.5540 +1499 57167 0.7410 +1499 57216 0.5570 +1499 57447 0.4950 +1499 57469 0.4150 +1499 57492 0.4410 +1499 57493 0.5640 +1499 57502 0.5080 +1499 57509 0.4200 +1499 57521 0.4090 +1499 57555 0.4990 +1499 57584 0.7080 +1499 57634 0.5780 +1499 57680 0.9930 +1499 57761 0.7820 +1499 58480 0.5910 +1499 58508 0.4470 +1499 59341 0.5550 +1499 59352 0.5650 +1499 60437 0.6100 +1499 60485 0.4170 +1499 63922 0.4260 +1499 64072 0.7650 +1499 64207 0.4260 +1499 64321 0.9670 +1499 64359 0.4260 +1499 64398 0.4720 +1499 64403 0.7620 +1499 64405 0.8830 +1499 64651 0.4770 +1499 64750 0.8290 +1499 64800 0.4480 +1499 64840 0.6080 +1499 65217 0.4750 +1499 79184 0.4090 +1499 79365 0.4490 +1499 79412 0.6650 +1499 79577 0.9800 +1499 79633 0.7840 +1499 79658 0.9020 +1499 79718 0.9970 +1499 79727 0.5100 +1499 79872 0.5750 +1499 79923 0.9460 +1499 79960 0.4750 +1499 79971 0.5910 +1499 80019 0.4890 +1499 80155 0.4060 +1499 80312 0.4160 +1499 80319 0.5360 +1499 80326 0.6890 +1499 80333 0.4860 +1499 80351 0.7810 +1499 80380 0.4080 +1499 81029 0.6840 +1499 81631 0.6940 +1499 81669 0.5960 +1499 81839 0.4550 +1499 81892 0.4700 +1499 83439 0.9990 +1499 83595 0.7870 +1499 83660 0.6390 +1499 83737 0.4830 +1499 83881 0.6780 +1499 83999 0.7180 +1499 84076 0.4180 +1499 84133 0.6440 +1499 84138 0.4470 +1499 84162 0.5310 +1499 84260 0.8340 +1499 84312 0.5100 +1499 84441 0.6750 +1499 84444 0.7770 +1499 84445 0.6770 +1499 84464 0.4510 +1499 84662 0.4930 +1499 84668 0.4110 +1499 84823 0.5070 +1499 84868 0.4010 +1499 84870 0.7380 +1499 84951 0.5420 +1499 84955 0.6220 +1499 85236 0.5950 +1499 85407 0.7390 +1499 85409 0.6720 +1499 89780 0.9760 +1499 90665 0.9920 +1499 90780 0.9930 +1499 91653 0.6590 +1499 91754 0.4910 +1499 91860 0.6310 +1499 92140 0.5000 +1499 92211 0.4710 +1499 93649 0.5980 +1499 93986 0.5380 +1499 94025 0.7780 +1499 94234 0.5660 +1499 94239 0.5540 +1499 117581 0.5290 +1499 120114 0.5740 +1499 120892 0.8890 +1499 121340 0.8440 +1499 122011 0.9280 +1499 122953 0.5130 +1499 123169 0.6910 +1499 126119 0.5470 +1499 128239 0.5200 +1499 128312 0.5960 +1499 133482 0.4860 +1499 137902 0.7740 +1499 139285 0.9920 +1499 139596 0.6470 +1499 139628 0.4180 +1499 140825 0.5540 +1499 144100 0.6980 +1499 144165 0.5140 +1499 145258 0.6060 +1499 146713 0.4100 +1499 147111 0.4470 +1499 147495 0.6220 +1499 147906 0.6250 +1499 150274 0.7240 +1499 153562 0.5940 +1499 154796 0.7100 +1499 158038 0.4460 +1499 163688 0.6260 +1499 165904 0.4520 +1499 166336 0.4460 +1499 168002 0.7110 +1499 168400 0.4010 +1499 192111 0.4540 +1499 196528 0.5290 +1499 219670 0.5350 +1499 220074 0.4240 +1499 221833 0.4940 +1499 222256 0.6050 +1499 253260 0.4010 +1499 255626 0.5950 +1499 260425 0.9590 +1499 283106 0.9130 +1499 283149 0.9920 +1499 284086 0.5140 +1499 284252 0.4010 +1499 284654 0.8390 +1499 284695 0.4160 +1499 340419 0.6150 +1499 343637 0.6800 +1499 343930 0.5980 +1499 344022 0.4310 +1499 387332 0.8130 +1499 388585 0.5670 +1499 388697 0.4700 +1499 389421 0.6280 +1499 389549 0.4080 +1499 400566 0.4880 +1499 401251 0.6980 +1499 440093 0.6860 +1499 440686 0.6810 +1499 474382 0.4990 +1499 653604 0.8340 +1499 728378 0.4760 +1499 729020 0.5480 +1499 100133941 0.6510 +1499 100271849 0.6090 +1499 100288687 0.4480 +1499 100506658 0.9370 +1499 100532731 0.6570 +1499 100820829 0.4370 +1500 1742 0.5610 +1500 1828 0.4190 +1500 1829 0.4690 +1500 1832 0.8080 +1500 1855 0.5690 +1500 1856 0.5090 +1500 1857 0.5830 +1500 1950 0.4300 +1500 1956 0.9940 +1500 2017 0.8700 +1500 2064 0.9380 +1500 2241 0.9520 +1500 2263 0.5040 +1500 2335 0.4700 +1500 2534 0.9830 +1500 2597 0.4020 +1500 2697 0.6080 +1500 2801 0.4330 +1500 2810 0.4100 +1500 2909 0.9440 +1500 2932 0.8960 +1500 3059 0.7230 +1500 3172 0.4320 +1500 3383 0.6230 +1500 3630 0.4370 +1500 3672 0.4910 +1500 3688 0.5370 +1500 3728 0.9010 +1500 3845 0.4390 +1500 3852 0.6250 +1500 3861 0.6520 +1500 3866 0.4060 +1500 3880 0.4170 +1500 4041 0.5400 +1500 4233 0.9770 +1500 4255 0.4050 +1500 4301 0.9980 +1500 4609 0.5120 +1500 4739 0.4350 +1500 4771 0.5080 +1500 5058 0.5960 +1500 5062 0.5370 +1500 5063 0.6960 +1500 5175 0.6320 +1500 5216 0.4520 +1500 5318 0.5400 +1500 5375 0.6670 +1500 5578 0.5920 +1500 5594 0.4100 +1500 5595 0.4900 +1500 5663 0.6560 +1500 5747 0.6240 +1500 5770 0.5520 +1500 5777 0.9360 +1500 5787 0.4130 +1500 5792 0.5320 +1500 5795 0.9800 +1500 5797 0.9480 +1500 5818 0.8670 +1500 5819 0.4490 +1500 5829 0.7480 +1500 5879 0.6500 +1500 5880 0.9250 +1500 5881 0.9070 +1500 5913 0.4800 +1500 5921 0.5940 +1500 5978 0.4450 +1500 6093 0.6750 +1500 6279 0.5090 +1500 6347 0.4910 +1500 6363 0.5570 +1500 6364 0.5670 +1500 6591 0.4450 +1500 6615 0.4720 +1500 6657 0.4120 +1500 6714 0.8450 +1500 6774 0.5300 +1500 6939 0.4120 +1500 7058 0.4440 +1500 7074 0.6870 +1500 7082 0.9560 +1500 7122 0.5720 +1500 7124 0.4540 +1500 7345 0.4080 +1500 7373 0.6200 +1500 7409 0.5500 +1500 7410 0.9850 +1500 7412 0.5050 +1500 7414 0.9520 +1500 7430 0.5550 +1500 7448 0.5340 +1500 7525 0.9440 +1500 8312 0.5470 +1500 8324 0.4480 +1500 8473 0.5740 +1500 8502 0.4840 +1500 8516 0.4790 +1500 8642 0.7190 +1500 8650 0.6210 +1500 8826 0.5780 +1500 9181 0.5820 +1500 9201 0.4640 +1500 9253 0.6170 +1500 9414 0.5880 +1500 9564 0.4140 +1500 9611 0.4480 +1500 9863 0.5180 +1500 10009 0.9990 +1500 10146 0.5290 +1500 10297 0.9060 +1500 10411 0.4950 +1500 10413 0.4520 +1500 10451 0.5140 +1500 10657 0.4120 +1500 11007 0.5360 +1500 23122 0.7200 +1500 23186 0.4160 +1500 25945 0.5450 +1500 27134 0.5260 +1500 27328 0.4450 +1500 28316 0.6420 +1500 28513 0.6250 +1500 29119 0.8320 +1500 50848 0.6620 +1500 50855 0.4170 +1500 51339 0.7030 +1500 51474 0.8200 +1500 54845 0.8480 +1500 55740 0.7700 +1500 55914 0.7240 +1500 56288 0.4600 +1500 56339 0.4060 +1500 57216 0.4550 +1500 57530 0.4330 +1500 57554 0.4890 +1500 57659 0.5310 +1500 57662 0.8350 +1500 57669 0.5500 +1500 60437 0.6500 +1500 64072 0.7210 +1500 64283 0.5020 +1500 64398 0.4080 +1500 64403 0.7960 +1500 64405 0.6460 +1500 65217 0.4030 +1500 79633 0.4600 +1500 79872 0.5700 +1500 80004 0.8460 +1500 84662 0.6430 +1500 84952 0.4300 +1500 84978 0.6460 +1500 89780 0.5400 +1500 114790 0.4240 +1500 143162 0.5970 +1500 144100 0.9730 +1500 150274 0.5190 +1500 153562 0.5810 +1500 200845 0.4350 +1500 219537 0.4090 +1500 222256 0.6050 +1500 253461 0.5160 +1500 389813 0.4680 +1500 100506658 0.8740 +1501 1740 0.4320 +1501 1742 0.5250 +1501 1956 0.4350 +1501 2017 0.7610 +1501 2891 0.4330 +1501 2915 0.4830 +1501 2932 0.4820 +1501 3059 0.7470 +1501 3090 0.4370 +1501 3603 0.4410 +1501 4255 0.5050 +1501 5569 0.4120 +1501 5663 0.9910 +1501 5913 0.7990 +1501 6092 0.4250 +1501 6709 0.4150 +1501 6714 0.5630 +1501 6932 0.9040 +1501 6934 0.9120 +1501 7015 0.4080 +1501 7082 0.5550 +1501 7414 0.4160 +1501 7531 0.5810 +1501 8312 0.5280 +1501 8473 0.4210 +1501 8502 0.4260 +1501 8642 0.4010 +1501 8877 0.6240 +1501 9037 0.6770 +1501 9201 0.5150 +1501 9223 0.6930 +1501 9378 0.4510 +1501 9414 0.5690 +1501 9693 0.4350 +1501 9863 0.6750 +1501 10009 0.9450 +1501 10299 0.5050 +1501 10611 0.4760 +1501 10718 0.6000 +1501 23037 0.9250 +1501 23266 0.4280 +1501 23284 0.4140 +1501 23426 0.6260 +1501 25921 0.4810 +1501 29119 0.6830 +1501 51176 0.9190 +1501 54463 0.7900 +1501 55133 0.4060 +1501 55914 0.7870 +1501 56339 0.4060 +1501 56848 0.4370 +1501 57554 0.8270 +1501 57659 0.5840 +1501 64283 0.6000 +1501 65217 0.4540 +1501 78996 0.7600 +1501 80725 0.4270 +1501 83439 0.9150 +1501 118429 0.4790 +1501 143162 0.7090 +1501 145581 0.5540 +1501 146760 0.4380 +1501 152330 0.4130 +1501 253461 0.5780 +1501 401474 0.4240 +1503 1633 0.5730 +1503 1635 0.5890 +1503 1665 0.5030 +1503 1716 0.4290 +1503 1719 0.4300 +1503 1723 0.7670 +1503 1736 0.5740 +1503 1806 0.5610 +1503 1841 0.5880 +1503 1854 0.5010 +1503 1938 0.4810 +1503 1965 0.4640 +1503 1968 0.4640 +1503 2023 0.4300 +1503 2027 0.4560 +1503 2058 0.7980 +1503 2071 0.4120 +1503 2091 0.4900 +1503 2166 0.4200 +1503 2178 0.4730 +1503 2193 0.4140 +1503 2232 0.4920 +1503 2237 0.4670 +1503 2271 0.4020 +1503 2323 0.4750 +1503 2356 0.4740 +1503 2618 0.7340 +1503 2746 0.5940 +1503 2747 0.5570 +1503 2752 0.7580 +1503 2766 0.5690 +1503 2821 0.4510 +1503 3276 0.4230 +1503 3376 0.5900 +1503 3614 0.7880 +1503 3615 0.9270 +1503 3702 0.4810 +1503 3704 0.7970 +1503 3735 0.6470 +1503 3921 0.6240 +1503 4068 0.4940 +1503 4141 0.4320 +1503 4144 0.4490 +1503 4172 0.4530 +1503 4173 0.5600 +1503 4522 0.4360 +1503 4528 0.5450 +1503 4609 0.5040 +1503 4736 0.6770 +1503 4809 0.4680 +1503 4830 0.9510 +1503 4831 0.9510 +1503 4832 0.9390 +1503 4833 0.9400 +1503 4839 0.4740 +1503 4860 0.4370 +1503 4931 0.4080 +1503 4953 0.4130 +1503 5036 0.5050 +1503 5111 0.4800 +1503 5167 0.9090 +1503 5169 0.9070 +1503 5188 0.7360 +1503 5198 0.6740 +1503 5245 0.4230 +1503 5315 0.4250 +1503 5431 0.5680 +1503 5432 0.4900 +1503 5469 0.6260 +1503 5471 0.7920 +1503 5631 0.4340 +1503 5634 0.4390 +1503 5635 0.4600 +1503 5700 0.4870 +1503 5701 0.5430 +1503 5704 0.5140 +1503 5705 0.6020 +1503 5723 0.4410 +1503 5822 0.4340 +1503 5832 0.8500 +1503 5859 0.4670 +1503 5888 0.4230 +1503 5917 0.7390 +1503 5984 0.4440 +1503 6059 0.5640 +1503 6122 0.6420 +1503 6124 0.5230 +1503 6125 0.6760 +1503 6128 0.4250 +1503 6129 0.5980 +1503 6130 0.5440 +1503 6132 0.6150 +1503 6133 0.6990 +1503 6135 0.6880 +1503 6136 0.5070 +1503 6137 0.4010 +1503 6138 0.5390 +1503 6139 0.6060 +1503 6141 0.4080 +1503 6142 0.5100 +1503 6143 0.4790 +1503 6144 0.5220 +1503 6147 0.7160 +1503 6154 0.5300 +1503 6158 0.4300 +1503 6164 0.4320 +1503 6175 0.7090 +1503 6182 0.4260 +1503 6187 0.5020 +1503 6188 0.7020 +1503 6189 0.4680 +1503 6191 0.4820 +1503 6193 0.6790 +1503 6194 0.5560 +1503 6201 0.5820 +1503 6202 0.4230 +1503 6203 0.5960 +1503 6204 0.4880 +1503 6205 0.6700 +1503 6206 0.5520 +1503 6207 0.5700 +1503 6208 0.6300 +1503 6209 0.5110 +1503 6210 0.5510 +1503 6217 0.5290 +1503 6222 0.6760 +1503 6223 0.5080 +1503 6224 0.5700 +1503 6228 0.5540 +1503 6229 0.5080 +1503 6230 0.4640 +1503 6231 0.4520 +1503 6232 0.4680 +1503 6235 0.4400 +1503 6240 0.6550 +1503 6241 0.5160 +1503 6301 0.4150 +1503 6470 0.4370 +1503 6472 0.5050 +1503 6611 0.4010 +1503 6723 0.4820 +1503 6729 0.4770 +1503 6813 0.5720 +1503 6888 0.4200 +1503 6950 0.4930 +1503 7083 0.7000 +1503 7153 0.4440 +1503 7167 0.5200 +1503 7203 0.4220 +1503 7247 0.4350 +1503 7268 0.4250 +1503 7298 0.7380 +1503 7371 0.6540 +1503 7372 0.7840 +1503 7403 0.4490 +1503 7407 0.5820 +1503 8565 0.6180 +1503 8697 0.4230 +1503 8833 0.9600 +1503 8886 0.4060 +1503 9221 0.5090 +1503 9319 0.4910 +1503 9343 0.4780 +1503 9349 0.6710 +1503 9493 0.4230 +1503 9533 0.6050 +1503 9563 0.4090 +1503 9669 0.5760 +1503 9801 0.4980 +1503 9858 0.5140 +1503 10047 0.5580 +1503 10056 0.4310 +1503 10102 0.4590 +1503 10125 0.4870 +1503 10135 0.4250 +1503 10153 0.4530 +1503 10201 0.9470 +1503 10213 0.5320 +1503 10399 0.4580 +1503 10419 0.4400 +1503 10528 0.6500 +1503 10535 0.5300 +1503 10574 0.4420 +1503 10575 0.4060 +1503 10576 0.4630 +1503 10606 0.6820 +1503 10607 0.4050 +1503 10797 0.4560 +1503 10885 0.4240 +1503 10987 0.4410 +1503 11128 0.5820 +1503 11137 0.4660 +1503 11151 0.4820 +1503 11164 0.4180 +1503 11171 0.5240 +1503 11222 0.4420 +1503 11224 0.5630 +1503 22934 0.4480 +1503 22948 0.4870 +1503 22984 0.5480 +1503 23076 0.4550 +1503 23160 0.4210 +1503 23223 0.5000 +1503 23246 0.5010 +1503 23252 0.6370 +1503 23395 0.4770 +1503 23521 0.6860 +1503 23560 0.6440 +1503 23761 0.4040 +1503 25885 0.7750 +1503 25902 0.4080 +1503 25973 0.5650 +1503 26155 0.6090 +1503 26156 0.4200 +1503 26271 0.5000 +1503 26289 0.4070 +1503 26354 0.4900 +1503 27340 0.4190 +1503 28998 0.4990 +1503 29789 0.5560 +1503 29889 0.4040 +1503 29922 0.9400 +1503 29968 0.4170 +1503 50808 0.4340 +1503 51067 0.4050 +1503 51068 0.4160 +1503 51073 0.4430 +1503 51081 0.4500 +1503 51116 0.5330 +1503 51154 0.6870 +1503 51167 0.4270 +1503 51292 0.4060 +1503 51314 0.6720 +1503 51520 0.4840 +1503 51557 0.6400 +1503 51602 0.6360 +1503 51700 0.4030 +1503 51706 0.4050 +1503 51727 0.7060 +1503 54433 0.6080 +1503 54517 0.5260 +1503 54552 0.4390 +1503 54870 0.4080 +1503 54888 0.4160 +1503 54938 0.4130 +1503 54963 0.5650 +1503 55052 0.5690 +1503 55127 0.4500 +1503 55131 0.4560 +1503 55143 0.4650 +1503 55152 0.4310 +1503 55157 0.7290 +1503 55173 0.4780 +1503 55190 0.4010 +1503 55226 0.5430 +1503 55239 0.4130 +1503 55270 0.7080 +1503 55272 0.5020 +1503 55278 0.4260 +1503 55621 0.5270 +1503 55699 0.5160 +1503 55703 0.5910 +1503 55720 0.4280 +1503 56474 0.9830 +1503 57038 0.6960 +1503 57136 0.6740 +1503 57176 0.4560 +1503 57470 0.4180 +1503 57505 0.4180 +1503 60558 0.6450 +1503 64965 0.4640 +1503 65008 0.4570 +1503 65083 0.4280 +1503 65993 0.4130 +1503 79036 0.4020 +1503 79073 0.7030 +1503 79077 0.4020 +1503 79084 0.4070 +1503 79631 0.4120 +1503 79711 0.6160 +1503 79947 0.4420 +1503 80745 0.4180 +1503 81570 0.4310 +1503 83549 0.5520 +1503 83743 0.4200 +1503 84061 0.6060 +1503 84154 0.4350 +1503 84172 0.7750 +1503 84284 0.6690 +1503 84916 0.4600 +1503 85476 0.4510 +1503 87178 0.7200 +1503 91574 0.4380 +1503 92399 0.4820 +1503 116150 0.4410 +1503 122481 0.4070 +1503 122622 0.5130 +1503 124454 0.4040 +1503 126402 0.4310 +1503 139596 0.5420 +1503 146206 0.4760 +1503 158067 0.4070 +1503 158584 0.4200 +1503 201294 0.4470 +1503 220359 0.7880 +1503 221264 0.9380 +1503 221823 0.4160 +1503 283985 0.4890 +1503 345630 0.4110 +1503 347487 0.5150 +1503 377841 0.9300 +1503 606495 0.4150 +1503 654364 0.9380 +1503 100287482 0.5100 +1504 1506 0.8310 +1504 1508 0.6140 +1504 1509 0.5430 +1504 1511 0.7640 +1504 1514 0.7050 +1504 1520 0.5840 +1504 1636 0.6150 +1504 1719 0.4850 +1504 1803 0.4700 +1504 1991 0.4640 +1504 1992 0.6560 +1504 2152 0.4470 +1504 2335 0.4310 +1504 2629 0.7730 +1504 2641 0.5140 +1504 2717 0.4360 +1504 2806 0.4580 +1504 2813 0.4110 +1504 2908 0.4120 +1504 2990 0.4430 +1504 2993 0.4290 +1504 2994 0.4310 +1504 3053 0.4060 +1504 3263 0.5070 +1504 3630 0.8170 +1504 3817 0.5320 +1504 3818 0.5620 +1504 3827 0.4960 +1504 3906 0.5830 +1504 3931 0.5480 +1504 4015 0.4100 +1504 4025 0.4200 +1504 4035 0.4730 +1504 4057 0.4330 +1504 4151 0.7520 +1504 4314 0.5550 +1504 4318 0.6000 +1504 4319 0.4660 +1504 5037 0.4630 +1504 5045 0.4760 +1504 5054 0.5320 +1504 5104 0.5920 +1504 5176 0.5870 +1504 5265 0.9570 +1504 5267 0.5070 +1504 5270 0.6360 +1504 5319 0.4940 +1504 5340 0.5010 +1504 5345 0.6340 +1504 5406 0.9250 +1504 5407 0.6740 +1504 5539 0.4520 +1504 5550 0.5370 +1504 5641 0.4040 +1504 5644 0.8630 +1504 5645 0.7200 +1504 5646 0.7980 +1504 5654 0.5780 +1504 5696 0.4460 +1504 5699 0.6530 +1504 5858 0.7770 +1504 5972 0.4430 +1504 6035 0.5770 +1504 6343 0.6700 +1504 6406 0.4060 +1504 6476 0.4980 +1504 6590 0.7840 +1504 6690 0.8850 +1504 6692 0.6360 +1504 6728 0.4170 +1504 6774 0.4690 +1504 6779 0.4280 +1504 6898 0.7070 +1504 6947 0.5400 +1504 7035 0.6790 +1504 7124 0.4390 +1504 7432 0.4460 +1504 7837 0.4640 +1504 7980 0.4210 +1504 8513 0.4010 +1504 8519 0.4160 +1504 8972 0.5270 +1504 9332 0.5500 +1504 9372 0.5360 +1504 9509 0.4170 +1504 10136 0.7720 +1504 10687 0.5170 +1504 10724 0.4140 +1504 11012 0.4470 +1504 11202 0.4250 +1504 11330 0.4830 +1504 23436 0.7950 +1504 26085 0.4170 +1504 27335 0.4120 +1504 43847 0.4440 +1504 43849 0.4350 +1504 51032 0.6460 +1504 51156 0.6340 +1504 51806 0.4780 +1504 54205 0.6870 +1504 54829 0.7240 +1504 55554 0.4900 +1504 57094 0.5540 +1504 59272 0.4030 +1504 60482 0.6300 +1504 64215 0.7540 +1504 91653 0.4320 +1504 91860 0.4770 +1504 93979 0.4240 +1504 117166 0.5800 +1504 133482 0.4190 +1504 137902 0.4640 +1504 144568 0.7990 +1504 163688 0.4790 +1504 171017 0.4250 +1504 342898 0.6270 +1504 440387 0.9490 +1504 643834 0.4380 +1504 643847 0.4400 +1506 1508 0.4800 +1506 1509 0.4020 +1506 1511 0.4210 +1506 1514 0.5230 +1506 1520 0.4930 +1506 1636 0.4900 +1506 1950 0.4390 +1506 2335 0.4430 +1506 2597 0.6380 +1506 3267 0.4520 +1506 3308 0.4800 +1506 3309 0.4050 +1506 3320 0.4010 +1506 3339 0.4710 +1506 3456 0.4050 +1506 3458 0.5350 +1506 3553 0.4900 +1506 3569 0.5220 +1506 3586 0.4090 +1506 3630 0.5000 +1506 3931 0.4360 +1506 3960 0.4150 +1506 4133 0.5260 +1506 4318 0.4090 +1506 4609 0.4480 +1506 4790 0.4160 +1506 4792 0.5040 +1506 5045 0.5060 +1506 5265 0.6270 +1506 5499 0.7710 +1506 5621 0.4230 +1506 5644 0.5190 +1506 5645 0.5380 +1506 5646 0.5350 +1506 5688 0.4620 +1506 5690 0.4490 +1506 5693 0.8320 +1506 5694 0.7760 +1506 5695 0.4980 +1506 5696 0.9180 +1506 5698 0.8380 +1506 5699 0.8650 +1506 5704 0.4240 +1506 5709 0.4340 +1506 5710 0.5240 +1506 5717 0.4350 +1506 5720 0.7280 +1506 5721 0.7240 +1506 5729 0.4430 +1506 5788 0.4170 +1506 5885 0.4960 +1506 6035 0.4440 +1506 6318 0.7820 +1506 6406 0.5190 +1506 6407 0.4730 +1506 6590 0.5060 +1506 6615 0.5100 +1506 6690 0.6300 +1506 6855 0.4460 +1506 7068 0.4750 +1506 7124 0.5440 +1506 7157 0.5060 +1506 7837 0.5400 +1506 8675 0.4170 +1506 9097 0.4780 +1506 10044 0.4790 +1506 10045 0.5940 +1506 10136 0.8460 +1506 10197 0.4920 +1506 10213 0.5240 +1506 11012 0.4510 +1506 11047 0.4750 +1506 11202 0.4470 +1506 11330 0.5360 +1506 23198 0.5720 +1506 23436 0.8410 +1506 26085 0.4200 +1506 43847 0.4360 +1506 43849 0.4250 +1506 51032 0.4520 +1506 51200 0.4050 +1506 51371 0.4460 +1506 51377 0.4310 +1506 55554 0.4580 +1506 57094 0.4080 +1506 59272 0.6940 +1506 60482 0.5870 +1506 63036 0.4390 +1506 91369 0.4610 +1506 114907 0.4300 +1506 122706 0.5090 +1506 137902 0.5390 +1506 143471 0.4130 +1506 221302 0.4180 +1506 342898 0.4550 +1506 440387 0.8320 +1508 1509 0.9770 +1508 1510 0.6330 +1508 1511 0.6100 +1508 1512 0.5600 +1508 1513 0.7030 +1508 1514 0.9740 +1508 1515 0.6600 +1508 1520 0.9580 +1508 1522 0.5420 +1508 1636 0.4840 +1508 1803 0.5080 +1508 1889 0.4090 +1508 1950 0.4190 +1508 1956 0.6190 +1508 1991 0.6920 +1508 2064 0.4160 +1508 2160 0.4890 +1508 2207 0.4070 +1508 2222 0.6120 +1508 2335 0.5280 +1508 2475 0.4270 +1508 2521 0.5010 +1508 2553 0.9010 +1508 2597 0.5670 +1508 2629 0.4070 +1508 2670 0.5550 +1508 2813 0.6140 +1508 2877 0.4070 +1508 2896 0.6190 +1508 2908 0.4020 +1508 2932 0.4850 +1508 2990 0.6400 +1508 3074 0.4670 +1508 3091 0.4420 +1508 3113 0.4930 +1508 3115 0.4480 +1508 3117 0.4750 +1508 3118 0.4820 +1508 3119 0.5010 +1508 3120 0.4870 +1508 3122 0.5110 +1508 3123 0.5230 +1508 3127 0.4810 +1508 3240 0.6760 +1508 3308 0.6260 +1508 3309 0.6090 +1508 3312 0.4140 +1508 3320 0.4220 +1508 3326 0.4230 +1508 3416 0.6150 +1508 3458 0.5190 +1508 3480 0.4120 +1508 3482 0.6400 +1508 3552 0.5200 +1508 3553 0.6950 +1508 3569 0.6310 +1508 3576 0.4880 +1508 3586 0.4930 +1508 3606 0.5970 +1508 3630 0.4830 +1508 3725 0.6230 +1508 3916 0.8120 +1508 3920 0.7260 +1508 3949 0.4320 +1508 3958 0.5400 +1508 3988 0.4070 +1508 4035 0.5690 +1508 4036 0.6010 +1508 4052 0.4350 +1508 4060 0.4430 +1508 4074 0.4170 +1508 4125 0.4300 +1508 4130 0.4250 +1508 4210 0.5130 +1508 4311 0.5000 +1508 4312 0.4390 +1508 4313 0.5530 +1508 4314 0.6700 +1508 4316 0.6290 +1508 4318 0.8970 +1508 4321 0.6380 +1508 4322 0.6130 +1508 4323 0.6390 +1508 4345 0.4150 +1508 4353 0.6070 +1508 4360 0.4040 +1508 4600 0.4450 +1508 4609 0.4420 +1508 4689 0.4350 +1508 4790 0.4270 +1508 4864 0.6800 +1508 5004 0.5440 +1508 5005 0.5710 +1508 5027 0.6310 +1508 5045 0.6970 +1508 5054 0.7250 +1508 5104 0.5920 +1508 5251 0.5060 +1508 5265 0.5200 +1508 5269 0.6140 +1508 5289 0.4240 +1508 5327 0.7150 +1508 5328 0.8800 +1508 5329 0.4660 +1508 5340 0.7240 +1508 5467 0.4690 +1508 5468 0.4100 +1508 5476 0.7650 +1508 5530 0.4150 +1508 5550 0.4060 +1508 5551 0.5470 +1508 5595 0.4310 +1508 5621 0.4520 +1508 5641 0.9440 +1508 5644 0.6440 +1508 5648 0.4520 +1508 5660 0.6780 +1508 5663 0.4720 +1508 5742 0.4280 +1508 5868 0.4480 +1508 5972 0.5660 +1508 5997 0.4910 +1508 6271 0.6090 +1508 6279 0.4830 +1508 6281 0.7530 +1508 6288 0.4120 +1508 6347 0.4970 +1508 6351 0.4540 +1508 6441 0.4930 +1508 6609 0.4570 +1508 6610 0.4570 +1508 6622 0.4700 +1508 6646 0.4490 +1508 6690 0.7420 +1508 6774 0.4490 +1508 6868 0.4440 +1508 7040 0.4340 +1508 7045 0.5730 +1508 7076 0.4470 +1508 7077 0.4770 +1508 7097 0.4630 +1508 7098 0.6060 +1508 7099 0.5530 +1508 7113 0.7630 +1508 7124 0.6050 +1508 7153 0.4440 +1508 7157 0.4680 +1508 7276 0.5270 +1508 7295 0.4880 +1508 7305 0.4080 +1508 7306 0.7680 +1508 7341 0.4570 +1508 7448 0.7550 +1508 7837 0.5190 +1508 7852 0.5410 +1508 7942 0.6580 +1508 8029 0.5270 +1508 8411 0.4450 +1508 8530 0.4890 +1508 8678 0.6130 +1508 8722 0.5960 +1508 8754 0.5410 +1508 8829 0.4720 +1508 8877 0.4850 +1508 8878 0.7190 +1508 9114 0.5480 +1508 9140 0.5230 +1508 9313 0.4840 +1508 9447 0.4850 +1508 9474 0.6010 +1508 9507 0.5050 +1508 9567 0.4790 +1508 9622 0.4130 +1508 9718 0.4410 +1508 10105 0.5070 +1508 10332 0.4140 +1508 10410 0.4760 +1508 10437 0.5090 +1508 10457 0.4910 +1508 10533 0.5730 +1508 10577 0.5440 +1508 10724 0.4340 +1508 11202 0.5760 +1508 11330 0.4140 +1508 22861 0.4550 +1508 22900 0.4480 +1508 23385 0.5650 +1508 23621 0.7710 +1508 23710 0.4140 +1508 25797 0.4820 +1508 25825 0.4550 +1508 27286 0.5020 +1508 29108 0.4790 +1508 29915 0.4320 +1508 29952 0.4890 +1508 30835 0.4090 +1508 51056 0.4570 +1508 51107 0.5040 +1508 51284 0.5890 +1508 54106 0.6090 +1508 54205 0.5580 +1508 54209 0.4340 +1508 55655 0.4460 +1508 55851 0.5200 +1508 56649 0.4800 +1508 56955 0.4730 +1508 57192 0.5850 +1508 58484 0.4880 +1508 59272 0.6930 +1508 64422 0.4280 +1508 79258 0.5630 +1508 79660 0.4190 +1508 79792 0.4570 +1508 80781 0.5300 +1508 81631 0.5740 +1508 83648 0.4590 +1508 84557 0.4530 +1508 114548 0.9930 +1508 128817 0.4280 +1508 136541 0.4540 +1508 137902 0.5180 +1508 245972 0.4320 +1508 252995 0.4660 +1508 286046 0.4770 +1508 402778 0.5550 +1508 440387 0.6160 +1508 653145 0.5520 +1508 768239 0.4730 +1509 1511 0.7220 +1509 1512 0.8460 +1509 1513 0.7690 +1509 1514 0.8970 +1509 1515 0.5600 +1509 1519 0.4400 +1509 1520 0.9000 +1509 1521 0.4360 +1509 1522 0.7660 +1509 1636 0.6470 +1509 1777 0.4140 +1509 1828 0.5380 +1509 1956 0.4680 +1509 2023 0.4030 +1509 2033 0.5600 +1509 2055 0.7640 +1509 2064 0.5090 +1509 2099 0.7930 +1509 2100 0.4100 +1509 2222 0.4560 +1509 2335 0.6730 +1509 2475 0.4590 +1509 2548 0.4380 +1509 2580 0.5300 +1509 2597 0.5750 +1509 2629 0.7460 +1509 2717 0.4310 +1509 2896 0.8660 +1509 2934 0.5850 +1509 2990 0.5230 +1509 3064 0.4460 +1509 3066 0.4650 +1509 3098 0.5060 +1509 3113 0.4260 +1509 3115 0.4280 +1509 3117 0.4290 +1509 3118 0.4210 +1509 3119 0.4510 +1509 3120 0.4310 +1509 3122 0.4840 +1509 3123 0.4730 +1509 3127 0.4740 +1509 3308 0.4520 +1509 3309 0.5070 +1509 3312 0.4930 +1509 3315 0.6500 +1509 3316 0.5110 +1509 3320 0.4190 +1509 3326 0.6180 +1509 3416 0.8090 +1509 3481 0.5910 +1509 3482 0.8620 +1509 3485 0.5300 +1509 3486 0.5470 +1509 3553 0.4860 +1509 3569 0.4300 +1509 3630 0.8460 +1509 3827 0.5150 +1509 3916 0.9990 +1509 3920 0.8610 +1509 3958 0.5020 +1509 3959 0.4860 +1509 3988 0.4250 +1509 4074 0.5420 +1509 4125 0.4370 +1509 4130 0.5240 +1509 4131 0.4610 +1509 4137 0.5580 +1509 4155 0.4770 +1509 4313 0.4630 +1509 4316 0.4540 +1509 4318 0.5230 +1509 4609 0.6310 +1509 4668 0.4110 +1509 4864 0.5110 +1509 5045 0.4420 +1509 5054 0.4260 +1509 5241 0.5480 +1509 5265 0.4860 +1509 5268 0.4060 +1509 5289 0.5260 +1509 5317 0.6110 +1509 5328 0.7090 +1509 5340 0.4710 +1509 5469 0.5170 +1509 5476 0.8240 +1509 5538 0.8420 +1509 5617 0.4480 +1509 5641 0.6440 +1509 5653 0.4160 +1509 5660 0.7990 +1509 5663 0.4990 +1509 5868 0.6860 +1509 5914 0.4430 +1509 5972 0.4300 +1509 6272 0.8010 +1509 6462 0.5380 +1509 6609 0.6060 +1509 6622 0.7110 +1509 6653 0.6270 +1509 6667 0.5510 +1509 6696 0.6080 +1509 6845 0.5540 +1509 7001 0.5490 +1509 7030 0.4530 +1509 7031 0.4520 +1509 7037 0.4170 +1509 7057 0.5950 +1509 7077 0.5200 +1509 7124 0.4670 +1509 7157 0.4840 +1509 7184 0.4700 +1509 7227 0.4230 +1509 7276 0.4870 +1509 7305 0.4810 +1509 7391 0.5520 +1509 7392 0.5790 +1509 7534 0.5290 +1509 7837 0.5030 +1509 7879 0.5300 +1509 7942 0.7290 +1509 8202 0.5890 +1509 8294 0.4070 +1509 8359 0.4080 +1509 8360 0.4120 +1509 8361 0.4250 +1509 8362 0.4070 +1509 8363 0.4080 +1509 8364 0.4050 +1509 8366 0.4070 +1509 8367 0.4070 +1509 8368 0.4070 +1509 8370 0.4070 +1509 8408 0.4370 +1509 8411 0.6430 +1509 8417 0.5270 +1509 8530 0.4450 +1509 8648 0.5380 +1509 8678 0.6470 +1509 8722 0.7450 +1509 8737 0.5480 +1509 8766 0.4470 +1509 8775 0.4590 +1509 8801 0.4900 +1509 8878 0.6840 +1509 9114 0.4590 +1509 9140 0.5220 +1509 9446 0.4460 +1509 9474 0.6220 +1509 9476 0.6250 +1509 9482 0.5340 +1509 9554 0.5450 +1509 9559 0.4210 +1509 9622 0.4130 +1509 10159 0.8150 +1509 10437 0.4290 +1509 10457 0.5070 +1509 10499 0.5350 +1509 10525 0.4880 +1509 10533 0.5950 +1509 10562 0.4600 +1509 10577 0.5480 +1509 10618 0.4660 +1509 10724 0.5770 +1509 10858 0.4410 +1509 11085 0.6090 +1509 11345 0.4390 +1509 23400 0.5740 +1509 23673 0.5180 +1509 23710 0.5050 +1509 26276 0.5550 +1509 27141 0.4230 +1509 29952 0.4960 +1509 29979 0.4420 +1509 51606 0.4500 +1509 51699 0.4090 +1509 51806 0.5340 +1509 53407 0.4010 +1509 54205 0.5290 +1509 54209 0.4610 +1509 54664 0.5160 +1509 54982 0.7710 +1509 55201 0.5030 +1509 55435 0.5650 +1509 55737 0.6860 +1509 55850 0.4320 +1509 57053 0.5530 +1509 57192 0.5920 +1509 57506 0.4300 +1509 63894 0.4920 +1509 64422 0.4020 +1509 65018 0.4370 +1509 65082 0.6280 +1509 80331 0.7020 +1509 80781 0.5170 +1509 81631 0.6400 +1509 83547 0.4020 +1509 83985 0.6320 +1509 84557 0.5200 +1509 84572 0.6600 +1509 85315 0.6840 +1509 85477 0.5150 +1509 114327 0.5090 +1509 120892 0.4960 +1509 121504 0.4140 +1509 124976 0.6030 +1509 137902 0.5010 +1509 154881 0.5140 +1509 200734 0.5430 +1509 201931 0.6330 +1509 206358 0.4250 +1509 256471 0.7890 +1509 402778 0.4040 +1509 440387 0.5460 +1509 554313 0.4080 +1510 1511 0.4520 +1510 1512 0.5140 +1510 1513 0.5000 +1510 1514 0.5830 +1510 1515 0.4920 +1510 1520 0.7210 +1510 1521 0.4550 +1510 1522 0.5860 +1510 3113 0.4130 +1510 3115 0.4220 +1510 3117 0.4100 +1510 3118 0.4230 +1510 3119 0.4420 +1510 3120 0.4340 +1510 3122 0.4520 +1510 3123 0.4360 +1510 3127 0.4220 +1510 3916 0.6220 +1510 3920 0.6990 +1510 4318 0.4520 +1510 5339 0.4430 +1510 5476 0.5330 +1510 5663 0.4500 +1510 6252 0.4340 +1510 6253 0.4520 +1510 6493 0.4590 +1510 7031 0.4030 +1510 7032 0.4210 +1510 7993 0.4030 +1510 8722 0.5300 +1510 9107 0.5050 +1510 10313 0.4540 +1510 10551 0.4750 +1510 11199 0.5670 +1510 51208 0.4720 +1510 54826 0.4120 +1510 55016 0.4180 +1510 57142 0.4490 +1510 66036 0.4680 +1510 89796 0.4080 +1510 339403 0.4010 +1510 340547 0.5570 +1510 342979 0.4120 +1510 441282 0.4030 +1511 1513 0.4470 +1511 1514 0.5400 +1511 1520 0.6860 +1511 1522 0.5740 +1511 1536 0.4300 +1511 1636 0.4720 +1511 1667 0.5290 +1511 1668 0.5150 +1511 1669 0.9320 +1511 1839 0.4590 +1511 1991 0.9990 +1511 1992 0.8060 +1511 2028 0.5580 +1511 2058 0.5180 +1511 2149 0.7890 +1511 2150 0.7310 +1511 2151 0.6870 +1511 2152 0.5210 +1511 2219 0.4370 +1511 2243 0.4420 +1511 2266 0.4170 +1511 2335 0.4580 +1511 2357 0.4010 +1511 2624 0.4940 +1511 2896 0.4740 +1511 2919 0.4210 +1511 3021 0.5500 +1511 3053 0.5840 +1511 3067 0.4190 +1511 3146 0.6370 +1511 3383 0.4260 +1511 3458 0.4780 +1511 3479 0.5050 +1511 3481 0.4290 +1511 3483 0.4900 +1511 3486 0.4570 +1511 3552 0.5030 +1511 3553 0.6020 +1511 3565 0.4020 +1511 3569 0.5070 +1511 3576 0.5560 +1511 3579 0.4560 +1511 3586 0.4530 +1511 3605 0.6300 +1511 3606 0.4300 +1511 3684 0.4700 +1511 3689 0.4920 +1511 3817 0.5130 +1511 3818 0.5550 +1511 3827 0.6360 +1511 3934 0.6820 +1511 4000 0.4020 +1511 4057 0.9970 +1511 4069 0.8360 +1511 4125 0.4220 +1511 4312 0.6180 +1511 4313 0.4290 +1511 4317 0.6800 +1511 4318 0.9920 +1511 4321 0.4250 +1511 4353 0.9990 +1511 4680 0.4570 +1511 5054 0.5740 +1511 5104 0.5050 +1511 5176 0.5360 +1511 5196 0.4310 +1511 5199 0.6680 +1511 5265 0.8050 +1511 5266 0.4460 +1511 5269 0.9300 +1511 5270 0.4270 +1511 5272 0.9200 +1511 5273 0.9240 +1511 5275 0.9220 +1511 5328 0.5280 +1511 5340 0.5330 +1511 5345 0.5680 +1511 5371 0.6060 +1511 5476 0.4060 +1511 5553 0.4180 +1511 5641 0.4360 +1511 5644 0.4760 +1511 5645 0.4720 +1511 5648 0.4300 +1511 5657 0.9970 +1511 5806 0.5560 +1511 5914 0.5620 +1511 5972 0.4520 +1511 6036 0.6700 +1511 6037 0.9020 +1511 6280 0.4150 +1511 6283 0.4070 +1511 6317 0.9320 +1511 6318 0.9730 +1511 6347 0.4350 +1511 6367 0.4570 +1511 6382 0.6600 +1511 6387 0.4200 +1511 6402 0.6120 +1511 6403 0.5310 +1511 6404 0.4680 +1511 6590 0.8920 +1511 7035 0.6260 +1511 7097 0.4180 +1511 7099 0.4760 +1511 7124 0.5460 +1511 7177 0.6370 +1511 7412 0.4510 +1511 7450 0.4670 +1511 7837 0.5380 +1511 7852 0.4200 +1511 7980 0.4630 +1511 8290 0.5490 +1511 8337 0.5260 +1511 8338 0.5270 +1511 8349 0.5230 +1511 8356 0.5510 +1511 8635 0.4180 +1511 8808 0.4080 +1511 8809 0.4810 +1511 8858 0.5790 +1511 8993 0.7620 +1511 9002 0.7550 +1511 10562 0.4050 +1511 11240 0.5880 +1511 22980 0.6070 +1511 23569 0.7540 +1511 51156 0.6040 +1511 51200 0.7150 +1511 54829 0.4130 +1511 55904 0.4220 +1511 56288 0.6500 +1511 56729 0.5700 +1511 57126 0.5230 +1511 64805 0.5090 +1511 79792 0.4780 +1511 84106 0.4410 +1511 84569 0.8260 +1511 84824 0.4390 +1511 90865 0.4510 +1511 114928 0.6330 +1511 137902 0.5360 +1511 400668 0.5910 +1511 440093 0.5500 +1511 440387 0.6220 +1511 440686 0.5610 +1511 653604 0.5620 +1511 728358 0.4970 +1512 1514 0.7730 +1512 1522 0.5090 +1512 2065 0.4240 +1512 2572 0.4050 +1512 2896 0.4920 +1512 3108 0.4190 +1512 3113 0.6960 +1512 3115 0.5150 +1512 3117 0.7680 +1512 3118 0.6650 +1512 3119 0.7320 +1512 3120 0.4980 +1512 3122 0.5590 +1512 3123 0.5990 +1512 3127 0.5100 +1512 3312 0.4040 +1512 3710 0.4090 +1512 3827 0.5420 +1512 4043 0.4060 +1512 4627 0.4580 +1512 5032 0.4170 +1512 5222 0.5290 +1512 5476 0.5260 +1512 5588 0.5020 +1512 5641 0.8060 +1512 5660 0.4220 +1512 5771 0.5670 +1512 5798 0.4240 +1512 5923 0.5200 +1512 6272 0.4620 +1512 6440 0.5810 +1512 6753 0.4100 +1512 7103 0.4210 +1512 7157 0.4870 +1512 7167 0.4660 +1512 7292 0.4090 +1512 7837 0.4450 +1512 9476 0.6720 +1512 10019 0.5650 +1512 10437 0.4910 +1512 10577 0.4050 +1512 22915 0.4220 +1512 23274 0.6210 +1512 29949 0.4490 +1512 29952 0.4060 +1512 55214 0.5250 +1512 60468 0.6130 +1512 80018 0.5180 +1512 84146 0.4660 +1512 114904 0.6610 +1512 117289 0.5940 +1512 137902 0.4390 +1512 283375 0.5310 +1512 284293 0.5640 +1512 345611 0.4220 +1512 390616 0.4540 +1512 643834 0.5300 +1512 643847 0.5310 +1512 692312 0.4180 +1513 1514 0.9080 +1513 1515 0.6650 +1513 1520 0.4610 +1513 1522 0.4230 +1513 1634 0.5460 +1513 1729 0.4010 +1513 1758 0.4610 +1513 2099 0.4240 +1513 2191 0.4500 +1513 2280 0.4230 +1513 2331 0.4460 +1513 2335 0.4470 +1513 2353 0.7250 +1513 2355 0.5120 +1513 2357 0.4180 +1513 2597 0.6150 +1513 2813 0.4090 +1513 2896 0.4820 +1513 3113 0.4760 +1513 3115 0.5030 +1513 3117 0.4650 +1513 3118 0.4770 +1513 3119 0.4770 +1513 3120 0.5040 +1513 3122 0.4780 +1513 3123 0.4830 +1513 3127 0.4600 +1513 3381 0.6000 +1513 3394 0.4210 +1513 3479 0.4560 +1513 3552 0.4630 +1513 3553 0.6490 +1513 3569 0.6150 +1513 3605 0.4270 +1513 3684 0.4270 +1513 3685 0.5020 +1513 3690 0.6320 +1513 3725 0.5300 +1513 3727 0.4520 +1513 3916 0.4330 +1513 4015 0.4140 +1513 4041 0.4710 +1513 4060 0.5000 +1513 4286 0.7300 +1513 4312 0.4800 +1513 4313 0.5960 +1513 4314 0.7120 +1513 4316 0.6280 +1513 4317 0.4480 +1513 4318 0.8860 +1513 4321 0.6890 +1513 4322 0.7650 +1513 4323 0.4830 +1513 4481 0.4420 +1513 4772 0.9040 +1513 4790 0.4570 +1513 4792 0.5280 +1513 4935 0.4100 +1513 4982 0.6150 +1513 5118 0.4380 +1513 5176 0.4120 +1513 5251 0.4750 +1513 5275 0.9180 +1513 5335 0.4400 +1513 5468 0.4100 +1513 5476 0.4350 +1513 5530 0.4080 +1513 5595 0.4050 +1513 5641 0.6950 +1513 5741 0.6670 +1513 5742 0.4380 +1513 5744 0.5490 +1513 6039 0.4180 +1513 6317 0.4240 +1513 6347 0.4150 +1513 6387 0.5120 +1513 6678 0.5660 +1513 6688 0.5290 +1513 6696 0.7720 +1513 6714 0.5900 +1513 7030 0.8130 +1513 7040 0.4440 +1513 7058 0.4640 +1513 7076 0.4250 +1513 7077 0.4010 +1513 7099 0.8200 +1513 7124 0.6070 +1513 7189 0.6640 +1513 7305 0.5320 +1513 7837 0.4430 +1513 7942 0.7550 +1513 8600 0.8960 +1513 8722 0.5540 +1513 8792 0.5870 +1513 9066 0.5920 +1513 9313 0.4950 +1513 9480 0.5250 +1513 9842 0.4390 +1513 9935 0.4050 +1513 10123 0.5840 +1513 10312 0.6030 +1513 10457 0.5580 +1513 10631 0.5240 +1513 11096 0.4310 +1513 22797 0.7300 +1513 22943 0.5300 +1513 28962 0.5500 +1513 29760 0.4560 +1513 29887 0.4020 +1513 50964 0.7310 +1513 51284 0.5240 +1513 51311 0.4650 +1513 51742 0.4290 +1513 54106 0.6630 +1513 54209 0.4150 +1513 54829 0.4350 +1513 55914 0.4460 +1513 56955 0.4510 +1513 79058 0.4260 +1513 80781 0.4890 +1513 81501 0.8830 +1513 93978 0.4120 +1513 121340 0.6780 +1513 122953 0.6740 +1513 126014 0.7790 +1513 128506 0.7380 +1513 137902 0.4380 +1513 147339 0.4350 +1513 245972 0.7980 +1514 1515 0.8150 +1514 1520 0.9100 +1514 1521 0.5760 +1514 1522 0.4870 +1514 1523 0.4340 +1514 1636 0.4950 +1514 1785 0.6240 +1514 1803 0.5600 +1514 1991 0.4650 +1514 2308 0.5560 +1514 2335 0.4460 +1514 2597 0.4920 +1514 2813 0.4860 +1514 2896 0.5450 +1514 3067 0.4890 +1514 3113 0.4550 +1514 3115 0.4670 +1514 3117 0.4720 +1514 3118 0.4630 +1514 3119 0.5030 +1514 3120 0.4760 +1514 3122 0.4780 +1514 3123 0.5220 +1514 3127 0.4670 +1514 3206 0.6130 +1514 3312 0.5880 +1514 3339 0.6190 +1514 3458 0.4570 +1514 3482 0.5730 +1514 3553 0.5620 +1514 3569 0.5810 +1514 3576 0.4070 +1514 3586 0.4170 +1514 3627 0.4310 +1514 3691 0.4120 +1514 3827 0.6310 +1514 3916 0.6290 +1514 3920 0.5670 +1514 3949 0.6820 +1514 4057 0.5330 +1514 4179 0.4100 +1514 4313 0.4380 +1514 4314 0.6110 +1514 4316 0.5880 +1514 4318 0.6850 +1514 4321 0.6320 +1514 4322 0.5410 +1514 4864 0.5290 +1514 5027 0.4670 +1514 5045 0.8000 +1514 5275 0.8850 +1514 5328 0.4450 +1514 5476 0.5540 +1514 5499 0.5200 +1514 5594 0.5820 +1514 5641 0.9200 +1514 5660 0.7200 +1514 5972 0.5780 +1514 6317 0.6870 +1514 6347 0.5450 +1514 6348 0.5100 +1514 6576 0.5000 +1514 6868 0.5010 +1514 7045 0.5120 +1514 7092 0.4330 +1514 7093 0.4330 +1514 7099 0.4240 +1514 7113 0.8640 +1514 7124 0.5070 +1514 7306 0.6080 +1514 7942 0.4680 +1514 8218 0.5280 +1514 8530 0.9410 +1514 8678 0.4660 +1514 8722 0.6220 +1514 8829 0.5290 +1514 8878 0.4810 +1514 9140 0.4180 +1514 9308 0.4120 +1514 9313 0.4400 +1514 9407 0.6090 +1514 9474 0.4490 +1514 9480 0.5110 +1514 9510 0.5360 +1514 9560 0.4240 +1514 9567 0.5060 +1514 10045 0.4190 +1514 10279 0.5300 +1514 10332 0.4940 +1514 10410 0.4620 +1514 10437 0.4810 +1514 10533 0.4500 +1514 10577 0.4220 +1514 10855 0.4550 +1514 11346 0.4650 +1514 23710 0.4220 +1514 30835 0.4290 +1514 51056 0.4030 +1514 51284 0.7410 +1514 51552 0.4370 +1514 54106 0.5350 +1514 56649 0.6000 +1514 59272 0.8050 +1514 80781 0.6140 +1514 81631 0.4580 +1514 84000 0.4340 +1514 84676 0.5140 +1514 114907 0.5980 +1514 122706 0.4640 +1514 126961 0.5210 +1514 158431 0.4070 +1514 200576 0.5240 +1514 219931 0.5070 +1514 339967 0.5900 +1514 440387 0.7080 +1514 768239 0.4160 +1515 1520 0.4580 +1515 1521 0.4690 +1515 1522 0.4090 +1515 2886 0.5890 +1515 2944 0.4830 +1515 3113 0.4070 +1515 3115 0.5470 +1515 3117 0.4110 +1515 3118 0.4110 +1515 3119 0.4510 +1515 3120 0.4510 +1515 3122 0.4080 +1515 3123 0.4640 +1515 3127 0.4510 +1515 3827 0.5800 +1515 4267 0.5000 +1515 4312 0.4040 +1515 4314 0.4710 +1515 4316 0.6360 +1515 4318 0.6590 +1515 4320 0.5700 +1515 4322 0.4350 +1515 4605 0.6310 +1515 5275 0.7580 +1515 5641 0.6210 +1515 6790 0.4910 +1515 7076 0.7050 +1515 7078 0.6070 +1515 7317 0.4190 +1515 7592 0.5560 +1515 7712 0.6730 +1515 8722 0.4320 +1515 9313 0.4350 +1515 22915 0.4200 +1515 25818 0.4320 +1515 54106 0.4150 +1515 57758 0.7110 +1515 59272 0.4010 +1515 80781 0.4930 +1519 1520 0.4030 +1519 2896 0.6330 +1519 2983 0.4470 +1519 3113 0.4890 +1519 3115 0.4620 +1519 3117 0.4370 +1519 3118 0.4340 +1519 3119 0.4380 +1519 3120 0.5010 +1519 3122 0.4580 +1519 3123 0.4440 +1519 3127 0.4240 +1519 3827 0.4350 +1519 5641 0.4760 +1519 6999 0.5110 +1519 10434 0.5260 +1519 11275 0.4540 +1519 23090 0.5440 +1519 166863 0.4720 +1520 1521 0.4850 +1520 1522 0.5210 +1520 1524 0.5090 +1520 1536 0.6250 +1520 1636 0.4600 +1520 1803 0.4940 +1520 1950 0.6430 +1520 1991 0.8780 +1520 1994 0.4900 +1520 2015 0.5950 +1520 2124 0.5090 +1520 2207 0.5520 +1520 2212 0.4460 +1520 2213 0.4390 +1520 2222 0.4700 +1520 2335 0.5540 +1520 2353 0.5280 +1520 2533 0.4150 +1520 2597 0.5190 +1520 2813 0.5200 +1520 2896 0.5790 +1520 2919 0.4050 +1520 3002 0.4580 +1520 3055 0.4910 +1520 3059 0.4480 +1520 3074 0.4090 +1520 3108 0.8150 +1520 3109 0.4820 +1520 3113 0.7100 +1520 3115 0.6090 +1520 3117 0.5870 +1520 3118 0.5710 +1520 3119 0.5950 +1520 3120 0.5420 +1520 3122 0.7450 +1520 3123 0.6280 +1520 3127 0.5080 +1520 3308 0.4290 +1520 3312 0.4120 +1520 3339 0.8330 +1520 3383 0.6380 +1520 3394 0.4970 +1520 3458 0.5940 +1520 3482 0.6350 +1520 3552 0.4940 +1520 3553 0.7130 +1520 3565 0.5890 +1520 3569 0.6160 +1520 3576 0.5340 +1520 3586 0.5340 +1520 3587 0.9510 +1520 3588 0.9250 +1520 3606 0.5250 +1520 3627 0.4950 +1520 3630 0.4270 +1520 3659 0.4810 +1520 3660 0.5730 +1520 3684 0.5670 +1520 3687 0.5210 +1520 3689 0.7240 +1520 3725 0.6180 +1520 3827 0.6400 +1520 3916 0.7390 +1520 3920 0.6530 +1520 3949 0.4600 +1520 3958 0.4930 +1520 4015 0.4120 +1520 4036 0.4620 +1520 4057 0.6810 +1520 4064 0.4940 +1520 4065 0.4890 +1520 4067 0.4550 +1520 4069 0.5680 +1520 4125 0.4030 +1520 4170 0.4780 +1520 4261 0.4430 +1520 4283 0.4010 +1520 4312 0.4740 +1520 4313 0.5930 +1520 4314 0.7110 +1520 4316 0.6680 +1520 4317 0.5160 +1520 4318 0.8740 +1520 4321 0.7370 +1520 4322 0.6440 +1520 4323 0.4840 +1520 4332 0.4880 +1520 4353 0.9640 +1520 4360 0.4640 +1520 4502 0.5960 +1520 4609 0.5470 +1520 4688 0.5230 +1520 4689 0.4440 +1520 4758 0.6550 +1520 4790 0.4720 +1520 4864 0.6320 +1520 5045 0.7140 +1520 5175 0.4650 +1520 5265 0.5110 +1520 5328 0.5870 +1520 5340 0.6070 +1520 5341 0.4580 +1520 5476 0.7940 +1520 5551 0.7090 +1520 5552 0.6120 +1520 5641 0.9320 +1520 5657 0.6880 +1520 5660 0.7210 +1520 5663 0.4880 +1520 5696 0.4450 +1520 5698 0.4440 +1520 5724 0.4250 +1520 5743 0.4060 +1520 5788 0.7620 +1520 5868 0.4390 +1520 5880 0.4110 +1520 5972 0.5950 +1520 6039 0.4400 +1520 6272 0.6250 +1520 6280 0.5730 +1520 6317 0.6830 +1520 6318 0.5580 +1520 6347 0.5270 +1520 6348 0.4690 +1520 6351 0.4250 +1520 6376 0.4780 +1520 6387 0.4330 +1520 6609 0.4330 +1520 6678 0.4380 +1520 6688 0.4890 +1520 6696 0.4540 +1520 6714 0.4100 +1520 6768 0.4010 +1520 6772 0.4400 +1520 6774 0.4520 +1520 6850 0.4290 +1520 6868 0.4860 +1520 6892 0.4300 +1520 7040 0.6540 +1520 7076 0.7630 +1520 7077 0.4390 +1520 7078 0.5870 +1520 7096 0.5530 +1520 7097 0.5880 +1520 7098 0.4870 +1520 7099 0.6260 +1520 7113 0.7370 +1520 7124 0.6520 +1520 7132 0.4120 +1520 7157 0.4330 +1520 7295 0.4010 +1520 7305 0.7760 +1520 7306 0.6650 +1520 7412 0.4380 +1520 7712 0.4760 +1520 7805 0.6100 +1520 7837 0.4410 +1520 7852 0.4620 +1520 7942 0.5530 +1520 8029 0.4180 +1520 8411 0.4190 +1520 8530 0.5830 +1520 8600 0.4200 +1520 8678 0.5020 +1520 8722 0.4630 +1520 8743 0.4510 +1520 8829 0.4060 +1520 8878 0.4940 +1520 9140 0.4900 +1520 9313 0.5110 +1520 9332 0.4490 +1520 9407 0.5430 +1520 9447 0.4130 +1520 9450 0.7230 +1520 9474 0.5290 +1520 9480 0.4500 +1520 9567 0.5260 +1520 9622 0.4600 +1520 10261 0.5930 +1520 10288 0.4250 +1520 10410 0.4460 +1520 10437 0.6750 +1520 10533 0.5190 +1520 10577 0.5060 +1520 10578 0.5990 +1520 10673 0.5000 +1520 10875 0.4970 +1520 11035 0.4040 +1520 11345 0.4120 +1520 23586 0.4060 +1520 23621 0.5940 +1520 23643 0.4100 +1520 23710 0.4160 +1520 25825 0.4100 +1520 27286 0.4640 +1520 29108 0.4510 +1520 29952 0.4100 +1520 30835 0.4210 +1520 50856 0.4500 +1520 51284 0.7060 +1520 51311 0.6100 +1520 51552 0.4210 +1520 54106 0.6700 +1520 54205 0.5490 +1520 54209 0.4740 +1520 56649 0.5190 +1520 57192 0.4110 +1520 58191 0.5570 +1520 58484 0.4290 +1520 59272 0.7670 +1520 64231 0.4030 +1520 64422 0.4230 +1520 64581 0.5540 +1520 80781 0.6120 +1520 81622 0.4820 +1520 81631 0.4410 +1520 90865 0.5220 +1520 114548 0.4940 +1520 137902 0.4380 +1520 200576 0.4150 +1520 219972 0.4590 +1520 440387 0.5840 +1520 643834 0.4150 +1520 643847 0.4010 +1520 653361 0.4180 +1520 100506658 0.4150 +1521 1893 0.4180 +1521 2999 0.7650 +1521 3001 0.7100 +1521 3002 0.6430 +1521 3003 0.6110 +1521 3004 0.4870 +1521 3560 0.5570 +1521 3699 0.4070 +1521 3700 0.4090 +1521 3820 0.5000 +1521 3824 0.7050 +1521 3959 0.4100 +1521 4068 0.4160 +1521 4818 0.8990 +1521 5267 0.4220 +1521 5551 0.7620 +1521 5641 0.4910 +1521 5790 0.5850 +1521 6375 0.5230 +1521 6414 0.4010 +1521 6694 0.4080 +1521 6846 0.4750 +1521 7078 0.4250 +1521 7123 0.5010 +1521 8530 0.6970 +1521 8784 0.5000 +1521 10225 0.4510 +1521 10578 0.8060 +1521 10663 0.4290 +1521 11126 0.4360 +1521 22914 0.5440 +1521 51348 0.4480 +1521 54760 0.4210 +1521 55144 0.5120 +1521 83888 0.5000 +1521 257101 0.4770 +1522 1777 0.6340 +1522 1785 0.5570 +1522 1800 0.4060 +1522 2153 0.6170 +1522 2157 0.5880 +1522 2348 0.5360 +1522 2647 0.5170 +1522 2760 0.4310 +1522 2778 0.5900 +1522 2799 0.7120 +1522 2801 0.5190 +1522 2890 0.4990 +1522 2896 0.6450 +1522 3073 0.4030 +1522 3312 0.5930 +1522 3689 0.4460 +1522 3827 0.4720 +1522 3916 0.5780 +1522 3920 0.5990 +1522 3964 0.4330 +1522 3998 0.8180 +1522 4001 0.4670 +1522 4074 0.5780 +1522 4159 0.8500 +1522 4317 0.5330 +1522 4668 0.4200 +1522 4905 0.5280 +1522 5265 0.5380 +1522 5446 0.4120 +1522 5476 0.6410 +1522 5641 0.7670 +1522 5660 0.5110 +1522 6396 0.5440 +1522 6456 0.5070 +1522 6811 0.5200 +1522 6827 0.4170 +1522 6844 0.5010 +1522 6845 0.5290 +1522 7039 0.5170 +1522 7276 0.4050 +1522 7305 0.4930 +1522 8615 0.4990 +1522 8635 0.4360 +1522 8673 0.6160 +1522 8722 0.6470 +1522 8774 0.4990 +1522 8775 0.5050 +1522 8905 0.5270 +1522 8907 0.5020 +1522 9117 0.5580 +1522 9554 0.5920 +1522 9570 0.5010 +1522 9632 0.5560 +1522 9829 0.5230 +1522 9871 0.5150 +1522 9919 0.5090 +1522 10053 0.5010 +1522 10113 0.5280 +1522 10175 0.4990 +1522 10282 0.5090 +1522 10342 0.5210 +1522 10427 0.5190 +1522 10484 0.5480 +1522 10577 0.4190 +1522 10652 0.5510 +1522 10802 0.5100 +1522 10959 0.5650 +1522 10960 0.6630 +1522 10972 0.5580 +1522 11196 0.5000 +1522 22872 0.5720 +1522 23256 0.5000 +1522 25797 0.4660 +1522 26984 0.6130 +1522 51012 0.4450 +1522 51128 0.5200 +1522 51497 0.5210 +1522 55014 0.5370 +1522 63908 0.5050 +1522 64174 0.4060 +1522 64689 0.5800 +1522 64866 0.4080 +1522 79748 0.5470 +1522 81027 0.7490 +1522 81562 0.6640 +1522 81567 0.5710 +1522 89866 0.5200 +1522 90411 0.7150 +1522 130340 0.5470 +1522 149111 0.5000 +1522 203068 0.6100 +1522 254263 0.4990 +1523 1641 0.4420 +1523 1742 0.4170 +1523 1749 0.5030 +1523 1750 0.4670 +1523 1780 0.5490 +1523 1869 0.5020 +1523 2016 0.6140 +1523 2115 0.4450 +1523 2120 0.4610 +1523 2130 0.8340 +1523 2146 0.4460 +1523 2239 0.4110 +1523 2246 0.4210 +1523 2247 0.5270 +1523 2249 0.4720 +1523 2250 0.4700 +1523 2251 0.4670 +1523 2253 0.4960 +1523 2254 0.4710 +1523 2260 0.6370 +1523 2290 0.5810 +1523 2571 0.4470 +1523 2624 0.4410 +1523 2670 0.5070 +1523 2778 0.4760 +1523 2804 0.6220 +1523 3017 0.4280 +1523 3018 0.5780 +1523 3021 0.4090 +1523 3035 0.4220 +1523 3172 0.5680 +1523 3670 0.4580 +1523 4121 0.5310 +1523 4122 0.5180 +1523 4124 0.5040 +1523 4176 0.4120 +1523 4893 0.4220 +1523 4905 0.5440 +1523 5013 0.4190 +1523 5080 0.6590 +1523 5290 0.5650 +1523 5295 0.5500 +1523 5335 0.5180 +1523 5454 0.6080 +1523 5455 0.4220 +1523 5649 0.4380 +1523 5816 0.4230 +1523 5925 0.7390 +1523 5970 0.4610 +1523 6096 0.5180 +1523 6304 0.6390 +1523 6427 0.4570 +1523 6657 0.8040 +1523 6660 0.4840 +1523 6694 0.7720 +1523 6772 0.5620 +1523 6774 0.7580 +1523 6776 0.5500 +1523 6777 0.5540 +1523 6811 0.6490 +1523 6829 0.4220 +1523 7091 0.6400 +1523 7157 0.4440 +1523 7307 0.4880 +1523 7750 0.5450 +1523 7979 0.5410 +1523 8074 0.4240 +1523 8233 0.5220 +1523 8320 0.7840 +1523 8321 0.5700 +1523 8340 0.4290 +1523 8341 0.4350 +1523 8342 0.4300 +1523 8345 0.4360 +1523 8347 0.4290 +1523 8348 0.4390 +1523 8349 0.4120 +1523 8356 0.4290 +1523 8361 0.5590 +1523 8615 0.4400 +1523 8774 0.5000 +1523 8775 0.5080 +1523 8805 0.5210 +1523 8822 0.4770 +1523 8900 0.8250 +1523 8970 0.4360 +1523 9079 0.4020 +1523 9129 0.4310 +1523 9208 0.5180 +1523 9355 0.4780 +1523 9382 0.5540 +1523 9527 0.6970 +1523 9759 0.4200 +1523 9950 0.8850 +1523 10215 0.4390 +1523 10320 0.4070 +1523 10466 0.5300 +1523 10652 0.5310 +1523 10716 0.8510 +1523 10735 0.4610 +1523 10763 0.5260 +1523 10905 0.5460 +1523 10919 0.4100 +1523 10991 0.4050 +1523 11052 0.4550 +1523 11064 0.4920 +1523 11116 0.5980 +1523 11160 0.4270 +1523 22796 0.5400 +1523 23314 0.7550 +1523 25839 0.6210 +1523 26040 0.4810 +1523 26127 0.5790 +1523 26281 0.4680 +1523 27333 0.5240 +1523 51272 0.5160 +1523 54145 0.4360 +1523 54790 0.4660 +1523 54971 0.7410 +1523 55079 0.5710 +1523 57030 0.4390 +1523 57134 0.5310 +1523 57448 0.4350 +1523 57511 0.6000 +1523 58155 0.4560 +1523 63035 0.4340 +1523 63908 0.5040 +1523 63973 0.4450 +1523 64067 0.4060 +1523 64398 0.4070 +1523 64919 0.8210 +1523 83452 0.5260 +1523 83548 0.6500 +1523 84295 0.4900 +1523 84894 0.4120 +1523 85236 0.4290 +1523 91949 0.5480 +1523 93986 0.6560 +1523 128312 0.4360 +1523 146713 0.5760 +1523 158983 0.4350 +1523 171023 0.5130 +1523 219409 0.4250 +1523 255626 0.4290 +1523 256646 0.4260 +1523 286436 0.4360 +1523 399687 0.5480 +1523 440689 0.4400 +1523 653604 0.4090 +1523 114483833 0.4360 +1524 1536 0.4990 +1524 1839 0.4470 +1524 1901 0.4220 +1524 2015 0.4530 +1524 2209 0.7220 +1524 2212 0.5320 +1524 2213 0.5520 +1524 2322 0.4810 +1524 2323 0.4340 +1524 2357 0.4580 +1524 2358 0.4560 +1524 2532 0.5450 +1524 2597 0.4670 +1524 2670 0.6080 +1524 2770 0.9660 +1524 2771 0.6900 +1524 2773 0.6820 +1524 2776 0.9180 +1524 2782 0.9090 +1524 2826 0.5480 +1524 2829 0.4600 +1524 2833 0.5930 +1524 2868 0.6700 +1524 2869 0.6700 +1524 2870 0.6860 +1524 2908 0.5640 +1524 2919 0.9810 +1524 2920 0.8190 +1524 2921 0.7800 +1524 2999 0.4780 +1524 3001 0.5480 +1524 3002 0.6080 +1524 3003 0.4600 +1524 3078 0.4160 +1524 3091 0.4920 +1524 3164 0.4500 +1524 3383 0.7090 +1524 3384 0.5340 +1524 3394 0.5810 +1524 3439 0.4160 +1524 3456 0.6200 +1524 3458 0.6910 +1524 3479 0.4300 +1524 3490 0.4100 +1524 3552 0.5440 +1524 3553 0.7370 +1524 3554 0.4420 +1524 3558 0.5230 +1524 3560 0.4570 +1524 3563 0.4140 +1524 3565 0.6080 +1524 3567 0.4530 +1524 3569 0.6800 +1524 3575 0.5810 +1524 3576 0.9140 +1524 3577 0.7900 +1524 3579 0.7350 +1524 3586 0.7250 +1524 3587 0.4790 +1524 3594 0.5530 +1524 3596 0.5330 +1524 3600 0.5290 +1524 3605 0.5710 +1524 3606 0.6500 +1524 3620 0.4190 +1524 3627 0.9530 +1524 3662 0.4190 +1524 3672 0.4160 +1524 3676 0.5990 +1524 3682 0.7150 +1524 3683 0.5480 +1524 3684 0.8270 +1524 3687 0.7320 +1524 3689 0.5400 +1524 3690 0.4250 +1524 3700 0.4450 +1524 3717 0.8240 +1524 3718 0.7040 +1524 3804 0.4750 +1524 3811 0.4840 +1524 3815 0.4930 +1524 3821 0.4440 +1524 3824 0.5180 +1524 3902 0.4710 +1524 3958 0.4420 +1524 4133 0.4510 +1524 4282 0.5260 +1524 4283 0.8910 +1524 4318 0.4920 +1524 4340 0.4040 +1524 4345 0.9740 +1524 4353 0.5930 +1524 4360 0.6820 +1524 4481 0.4360 +1524 4684 0.5270 +1524 4790 0.4020 +1524 4818 0.4850 +1524 5025 0.6030 +1524 5031 0.4880 +1524 5133 0.4030 +1524 5175 0.5370 +1524 5196 0.7970 +1524 5197 0.7090 +1524 5473 0.7570 +1524 5551 0.6170 +1524 5595 0.5730 +1524 5788 0.7500 +1524 6011 0.6700 +1524 6299 0.5250 +1524 6346 0.8410 +1524 6347 0.9980 +1524 6348 0.9700 +1524 6351 0.8520 +1524 6354 0.9150 +1524 6355 0.7910 +1524 6356 0.8740 +1524 6357 0.8610 +1524 6358 0.6100 +1524 6359 0.7430 +1524 6360 0.7980 +1524 6361 0.7990 +1524 6362 0.7870 +1524 6363 0.9690 +1524 6364 0.9330 +1524 6366 0.9820 +1524 6367 0.8770 +1524 6369 0.8590 +1524 6370 0.9490 +1524 6372 0.7300 +1524 6373 0.8740 +1524 6374 0.7810 +1524 6375 0.8940 +1524 6376 0.9990 +1524 6387 0.9900 +1524 6401 0.4110 +1524 6402 0.6640 +1524 6403 0.4640 +1524 6404 0.4920 +1524 6614 0.5730 +1524 6688 0.6000 +1524 6693 0.4260 +1524 6714 0.7540 +1524 6772 0.4020 +1524 6774 0.4350 +1524 6776 0.5260 +1524 6846 0.7800 +1524 6868 0.4380 +1524 6932 0.4200 +1524 7010 0.5720 +1524 7040 0.4910 +1524 7070 0.4520 +1524 7097 0.7410 +1524 7098 0.4780 +1524 7099 0.6720 +1524 7100 0.4340 +1524 7124 0.6960 +1524 7305 0.7730 +1524 7412 0.7540 +1524 7852 0.7900 +1524 8320 0.5180 +1524 8530 0.5550 +1524 9034 0.4720 +1524 9289 0.4020 +1524 9332 0.7900 +1524 9398 0.4320 +1524 9437 0.5150 +1524 9450 0.4130 +1524 9547 0.7620 +1524 9560 0.8170 +1524 9935 0.4090 +1524 10219 0.6230 +1524 10344 0.9880 +1524 10461 0.6410 +1524 10462 0.4040 +1524 10516 0.4820 +1524 10563 0.8840 +1524 10578 0.4880 +1524 10663 0.6690 +1524 10803 0.7030 +1524 10840 0.4080 +1524 10850 0.7590 +1524 10874 0.4180 +1524 10878 0.4070 +1524 10894 0.4910 +1524 11126 0.4440 +1524 11314 0.4190 +1524 22914 0.4780 +1524 23041 0.4220 +1524 23166 0.5710 +1524 27087 0.4840 +1524 29126 0.4840 +1524 29851 0.4290 +1524 29899 0.4020 +1524 30009 0.5690 +1524 30834 0.4220 +1524 30835 0.4060 +1524 50489 0.4430 +1524 50616 0.4810 +1524 50943 0.5890 +1524 51284 0.5580 +1524 51311 0.4350 +1524 51348 0.4230 +1524 51744 0.4200 +1524 53637 0.5180 +1524 53829 0.6000 +1524 54106 0.4570 +1524 54209 0.7670 +1524 54210 0.4120 +1524 54331 0.8310 +1524 55509 0.4480 +1524 56477 0.6930 +1524 56944 0.4870 +1524 57007 0.5440 +1524 58191 0.9720 +1524 63940 0.4440 +1524 64127 0.4020 +1524 64581 0.5330 +1524 64805 0.6250 +1524 65258 0.4680 +1524 83872 0.5240 +1524 83888 0.5250 +1524 84839 0.4300 +1524 84868 0.4860 +1524 90865 0.4280 +1524 91937 0.5560 +1524 126006 0.4160 +1524 131450 0.8100 +1524 131890 0.6700 +1524 140685 0.4480 +1524 140885 0.8090 +1524 146433 0.7520 +1524 146713 0.5060 +1524 165530 0.4150 +1524 257101 0.4190 +1524 259197 0.4040 +1524 283420 0.4440 +1524 338773 0.7900 +1524 414062 0.8710 +1525 1555 0.7330 +1525 1576 0.6460 +1525 1604 0.8590 +1525 1742 0.5050 +1525 1829 0.7330 +1525 2534 0.4040 +1525 4179 0.8600 +1525 4684 0.4530 +1525 5551 0.4030 +1525 5728 0.4440 +1525 5818 0.5340 +1525 6093 0.4070 +1525 6504 0.6280 +1525 7037 0.4190 +1525 7082 0.8150 +1525 7594 0.4020 +1525 8648 0.4540 +1525 8856 0.5780 +1525 8907 0.4450 +1525 9223 0.5340 +1525 9970 0.6520 +1525 10399 0.4200 +1525 10447 0.5490 +1525 23035 0.4560 +1525 30817 0.5880 +1525 50848 0.5410 +1525 64083 0.4750 +1525 83700 0.4800 +1525 84632 0.4440 +1525 84708 0.9100 +1525 91543 0.4110 +1525 120425 0.9980 +1525 150084 0.5970 +1525 222484 0.5250 +1525 340351 0.6500 +1525 100131439 0.4060 +1525 100506658 0.8310 +1525 100996331 0.4780 +1527 2652 0.8990 +1527 5956 0.8990 +1527 5973 0.4020 +1527 8277 0.9220 +1527 10838 0.4050 +1527 23023 0.4840 +1527 55559 0.5140 +1527 56157 0.6160 +1527 57458 0.6980 +1527 139728 0.4050 +1527 728458 0.5070 +1527 100129520 0.4380 +1528 1537 0.4500 +1528 1543 0.6230 +1528 1544 0.8930 +1528 1545 0.6640 +1528 1548 0.7990 +1528 1551 0.4740 +1528 1553 0.6130 +1528 1555 0.8980 +1528 1557 0.5860 +1528 1558 0.5550 +1528 1559 0.6250 +1528 1562 0.4350 +1528 1565 0.6950 +1528 1571 0.9590 +1528 1576 0.9600 +1528 1577 0.8550 +1528 1579 0.6060 +1528 1580 0.5230 +1528 1582 0.4080 +1528 1583 0.5840 +1528 1584 0.5280 +1528 1585 0.4720 +1528 1586 0.9790 +1528 1588 0.4670 +1528 1589 0.6220 +1528 1595 0.7640 +1528 1727 0.9990 +1528 2010 0.5680 +1528 2052 0.4040 +1528 2230 0.7000 +1528 2232 0.6000 +1528 2235 0.4090 +1528 2539 0.4420 +1528 3039 0.6040 +1528 3040 0.6100 +1528 3043 0.5180 +1528 3156 0.4190 +1528 3162 0.6280 +1528 3241 0.5630 +1528 3283 0.5500 +1528 3284 0.6720 +1528 3293 0.5320 +1528 3295 0.5970 +1528 4047 0.4220 +1528 4051 0.6090 +1528 4151 0.9880 +1528 4519 0.6290 +1528 4820 0.4210 +1528 5447 0.9970 +1528 5481 0.4250 +1528 5832 0.4030 +1528 6307 0.5490 +1528 6309 0.4260 +1528 6319 0.9810 +1528 6342 0.4690 +1528 6449 0.6120 +1528 6713 0.5590 +1528 6716 0.4180 +1528 6734 0.4220 +1528 6770 0.4260 +1528 6804 0.5070 +1528 6811 0.5320 +1528 6821 0.4830 +1528 6822 0.5980 +1528 6844 0.5710 +1528 7388 0.4700 +1528 7485 0.7100 +1528 7915 0.4410 +1528 7917 0.5200 +1528 8266 0.6400 +1528 8529 0.4290 +1528 8644 0.4580 +1528 9218 0.5430 +1528 9360 0.8850 +1528 9380 0.4390 +1528 9381 0.4990 +1528 9420 0.4560 +1528 9563 0.5250 +1528 10134 0.5780 +1528 10424 0.6840 +1528 10857 0.8150 +1528 10858 0.4280 +1528 10952 0.7410 +1528 11161 0.5400 +1528 23467 0.4500 +1528 23480 0.5260 +1528 27161 0.4190 +1528 27230 0.6260 +1528 27346 0.4030 +1528 29927 0.4810 +1528 29937 0.9430 +1528 51167 0.9690 +1528 51182 0.4540 +1528 51477 0.4080 +1528 51608 0.6410 +1528 51700 0.9930 +1528 51706 0.9930 +1528 54205 0.9960 +1528 54852 0.4030 +1528 54905 0.4950 +1528 54996 0.4630 +1528 56603 0.4530 +1528 58157 0.6380 +1528 64757 0.4330 +1528 79152 0.5020 +1528 79154 0.4140 +1528 79957 0.4140 +1528 84263 0.4070 +1528 85315 0.4040 +1528 118424 0.4990 +1528 124936 0.7280 +1528 340665 0.4430 +1528 606495 0.9940 +1528 100861540 0.4570 +1534 1536 0.5440 +1534 1621 0.8460 +1534 4891 0.4730 +1534 5066 0.8700 +1534 11068 0.5480 +1534 55240 0.5280 +1534 91461 0.4190 +1534 261729 0.4280 +1534 391059 0.9560 +1535 1536 0.9990 +1535 1636 0.5100 +1535 1855 0.5210 +1535 1856 0.5100 +1535 1857 0.5100 +1535 1906 0.4320 +1535 2122 0.4240 +1535 2588 0.6100 +1535 2597 0.4680 +1535 2877 0.5670 +1535 2878 0.5780 +1535 2880 0.5370 +1535 2882 0.5650 +1535 3162 0.4820 +1535 3383 0.4620 +1535 3394 0.5870 +1535 3553 0.5820 +1535 3569 0.5220 +1535 3689 0.4700 +1535 3916 0.4760 +1535 3920 0.4260 +1535 4128 0.4800 +1535 4129 0.4650 +1535 4313 0.9490 +1535 4318 0.9410 +1535 4353 0.4950 +1535 4519 0.8700 +1535 4597 0.4090 +1535 4688 0.9990 +1535 4689 0.9990 +1535 4780 0.4180 +1535 4846 0.6090 +1535 5337 0.4460 +1535 5580 0.9170 +1535 5594 0.9090 +1535 5595 0.9370 +1535 5600 0.7030 +1535 5603 0.7050 +1535 5868 0.4500 +1535 5879 0.8650 +1535 5880 0.9990 +1535 5881 0.8230 +1535 5906 0.9470 +1535 5972 0.4970 +1535 6279 0.5110 +1535 6280 0.5430 +1535 6300 0.7030 +1535 6347 0.4360 +1535 6647 0.4260 +1535 6648 0.4250 +1535 6649 0.5110 +1535 6714 0.7070 +1535 7040 0.4860 +1535 7124 0.5300 +1535 7132 0.5150 +1535 7295 0.4550 +1535 7305 0.4750 +1535 7409 0.6160 +1535 7410 0.5950 +1535 7412 0.9380 +1535 7474 0.5130 +1535 7498 0.6300 +1535 7504 0.5050 +1535 7837 0.4470 +1535 8324 0.4990 +1535 8411 0.4800 +1535 8717 0.4190 +1535 8773 0.4700 +1535 9644 0.7350 +1535 9711 0.5510 +1535 10451 0.5230 +1535 10811 0.9990 +1535 23075 0.4380 +1535 23560 0.6950 +1535 25894 0.4180 +1535 26002 0.4150 +1535 26040 0.5410 +1535 26073 0.9940 +1535 26751 0.4760 +1535 27020 0.4700 +1535 27035 0.9990 +1535 50506 0.9450 +1535 50507 0.9990 +1535 50508 0.9990 +1535 53905 0.9800 +1535 55004 0.4080 +1535 55312 0.8900 +1535 55971 0.4330 +1535 58191 0.4670 +1535 63976 0.4410 +1535 79400 0.9930 +1535 79415 0.6000 +1535 90527 0.5750 +1535 124056 0.9990 +1535 137902 0.4460 +1535 257202 0.5590 +1535 405753 0.5850 +1535 493869 0.5550 +1535 653361 0.9990 +1536 1636 0.5080 +1536 1728 0.5330 +1536 1794 0.4230 +1536 1906 0.5820 +1536 1991 0.4710 +1536 2081 0.4350 +1536 2124 0.4370 +1536 2162 0.4320 +1536 2207 0.7410 +1536 2209 0.4720 +1536 2212 0.6060 +1536 2213 0.5050 +1536 2219 0.4830 +1536 2242 0.4040 +1536 2268 0.4870 +1536 2335 0.4590 +1536 2357 0.5420 +1536 2358 0.4460 +1536 2359 0.4160 +1536 2475 0.4400 +1536 2533 0.4810 +1536 2597 0.6100 +1536 2625 0.4650 +1536 2729 0.4020 +1536 2745 0.4920 +1536 2877 0.7530 +1536 2878 0.7390 +1536 2879 0.4460 +1536 2880 0.7360 +1536 2882 0.7430 +1536 2932 0.4100 +1536 2936 0.4920 +1536 3055 0.5750 +1536 3059 0.6230 +1536 3091 0.6000 +1536 3101 0.4310 +1536 3109 0.4330 +1536 3122 0.5680 +1536 3123 0.4920 +1536 3146 0.4560 +1536 3162 0.7120 +1536 3163 0.4260 +1536 3308 0.5680 +1536 3383 0.6270 +1536 3394 0.7820 +1536 3458 0.6160 +1536 3459 0.4730 +1536 3460 0.4850 +1536 3479 0.4270 +1536 3551 0.4130 +1536 3552 0.4570 +1536 3553 0.7460 +1536 3556 0.4060 +1536 3561 0.4190 +1536 3565 0.4750 +1536 3569 0.7080 +1536 3576 0.4810 +1536 3586 0.5850 +1536 3587 0.6940 +1536 3594 0.4640 +1536 3605 0.4540 +1536 3606 0.5330 +1536 3620 0.5760 +1536 3627 0.4380 +1536 3630 0.5450 +1536 3683 0.4680 +1536 3684 0.7780 +1536 3687 0.5330 +1536 3689 0.8160 +1536 3717 0.6040 +1536 3725 0.5310 +1536 3916 0.5670 +1536 3920 0.5400 +1536 3934 0.4040 +1536 3937 0.4780 +1536 3958 0.4150 +1536 4057 0.4420 +1536 4067 0.4290 +1536 4069 0.4260 +1536 4088 0.4330 +1536 4128 0.4670 +1536 4129 0.4710 +1536 4192 0.4340 +1536 4210 0.4390 +1536 4217 0.6690 +1536 4257 0.4300 +1536 4313 0.9570 +1536 4318 0.9630 +1536 4332 0.5170 +1536 4353 0.7670 +1536 4360 0.4950 +1536 4519 0.8680 +1536 4688 0.9990 +1536 4689 0.9990 +1536 4747 0.4070 +1536 4780 0.6200 +1536 4790 0.5680 +1536 4792 0.5040 +1536 4842 0.7000 +1536 4843 0.6070 +1536 4846 0.7020 +1536 4868 0.5690 +1536 4878 0.4250 +1536 4973 0.5050 +1536 5009 0.5070 +1536 5034 0.4530 +1536 5175 0.5020 +1536 5337 0.4390 +1536 5341 0.7200 +1536 5465 0.4200 +1536 5468 0.5440 +1536 5579 0.4080 +1536 5580 0.9300 +1536 5594 0.9260 +1536 5595 0.9550 +1536 5599 0.4050 +1536 5600 0.7510 +1536 5603 0.7500 +1536 5641 0.4140 +1536 5699 0.4350 +1536 5724 0.4490 +1536 5728 0.4510 +1536 5743 0.6980 +1536 5770 0.4070 +1536 5781 0.6910 +1536 5788 0.6450 +1536 5868 0.6130 +1536 5873 0.5690 +1536 5879 0.8880 +1536 5880 0.9990 +1536 5881 0.6060 +1536 5906 0.9710 +1536 5912 0.4480 +1536 5972 0.6070 +1536 6039 0.4950 +1536 6262 0.6430 +1536 6279 0.6590 +1536 6280 0.7920 +1536 6283 0.4120 +1536 6300 0.7520 +1536 6347 0.6390 +1536 6348 0.4530 +1536 6401 0.4520 +1536 6402 0.4400 +1536 6403 0.4930 +1536 6504 0.5590 +1536 6523 0.4790 +1536 6526 0.4650 +1536 6556 0.5950 +1536 6647 0.8760 +1536 6648 0.6430 +1536 6649 0.5900 +1536 6688 0.6550 +1536 6714 0.7210 +1536 6717 0.6540 +1536 6772 0.5620 +1536 6774 0.5270 +1536 6850 0.5660 +1536 7040 0.5970 +1536 7096 0.5330 +1536 7097 0.7860 +1536 7099 0.9020 +1536 7110 0.4230 +1536 7124 0.7210 +1536 7132 0.5300 +1536 7157 0.4600 +1536 7189 0.4230 +1536 7222 0.7450 +1536 7225 0.5990 +1536 7295 0.6130 +1536 7305 0.6520 +1536 7341 0.4280 +1536 7351 0.4110 +1536 7409 0.6900 +1536 7410 0.6300 +1536 7412 0.9590 +1536 7450 0.4270 +1536 7454 0.4220 +1536 7498 0.7820 +1536 7504 0.5690 +1536 7805 0.6970 +1536 7837 0.6210 +1536 7852 0.5900 +1536 8406 0.5110 +1536 8411 0.5390 +1536 8673 0.4770 +1536 8678 0.4570 +1536 8717 0.5140 +1536 8773 0.5810 +1536 8826 0.8790 +1536 9332 0.5650 +1536 9450 0.6090 +1536 9474 0.4630 +1536 9636 0.4190 +1536 9817 0.5520 +1536 10135 0.9230 +1536 10261 0.4380 +1536 10288 0.5860 +1536 10437 0.5000 +1536 10451 0.5480 +1536 10533 0.4280 +1536 10628 0.4560 +1536 10811 0.9940 +1536 10891 0.4680 +1536 11025 0.4150 +1536 11035 0.9340 +1536 11314 0.4080 +1536 11326 0.6130 +1536 22920 0.4240 +1536 23075 0.4190 +1536 23410 0.4330 +1536 23411 0.5460 +1536 23560 0.4890 +1536 23569 0.4480 +1536 25828 0.4580 +1536 26040 0.4060 +1536 26073 0.7440 +1536 27035 0.9980 +1536 50506 0.8790 +1536 50507 0.9980 +1536 50508 0.9910 +1536 50856 0.4270 +1536 51284 0.5930 +1536 51311 0.5870 +1536 51338 0.4720 +1536 51806 0.5730 +1536 53831 0.4360 +1536 53905 0.9860 +1536 54106 0.4230 +1536 54205 0.6250 +1536 54209 0.4340 +1536 55004 0.4050 +1536 55016 0.5360 +1536 55312 0.5620 +1536 57705 0.4180 +1536 58475 0.4950 +1536 58484 0.5290 +1536 59272 0.4110 +1536 64127 0.4840 +1536 64231 0.5530 +1536 64581 0.5760 +1536 79400 0.9910 +1536 79415 0.5610 +1536 79901 0.4050 +1536 81704 0.4160 +1536 84329 0.5220 +1536 84888 0.4050 +1536 90527 0.6920 +1536 91860 0.4990 +1536 114548 0.5740 +1536 124056 0.9950 +1536 137902 0.6170 +1536 140885 0.4750 +1536 163688 0.4980 +1536 169355 0.4820 +1536 219972 0.5250 +1536 257202 0.7360 +1536 375387 0.4900 +1536 405753 0.6930 +1536 493869 0.7430 +1536 653361 0.9990 +1537 1628 0.4170 +1537 1633 0.6010 +1537 1649 0.4160 +1537 1678 0.5760 +1537 1716 0.6330 +1537 1723 0.4250 +1537 1737 0.5640 +1537 1738 0.5420 +1537 1743 0.7920 +1537 1974 0.4020 +1537 2108 0.4850 +1537 2110 0.4070 +1537 2230 0.6350 +1537 2235 0.4030 +1537 2271 0.5200 +1537 2395 0.6570 +1537 2597 0.4100 +1537 2820 0.8870 +1537 3052 0.8070 +1537 3064 0.9330 +1537 3131 0.4160 +1537 3145 0.4730 +1537 3313 0.7530 +1537 3315 0.4020 +1537 3329 0.6590 +1537 3396 0.4760 +1537 3419 0.6470 +1537 3420 0.7690 +1537 3421 0.6920 +1537 3460 0.9330 +1537 3720 0.5810 +1537 3827 0.5330 +1537 3991 0.5210 +1537 4191 0.8850 +1537 4508 0.5170 +1537 4512 0.9990 +1537 4513 0.9980 +1537 4514 0.9990 +1537 4519 0.9990 +1537 4535 0.9950 +1537 4536 0.9890 +1537 4537 0.9950 +1537 4538 0.9960 +1537 4539 0.9690 +1537 4540 0.9900 +1537 4541 0.9180 +1537 4694 0.8730 +1537 4695 0.9940 +1537 4696 0.9010 +1537 4697 0.7890 +1537 4698 0.9970 +1537 4700 0.9960 +1537 4701 0.9360 +1537 4702 0.9980 +1537 4704 0.9980 +1537 4705 0.9800 +1537 4706 0.9850 +1537 4707 0.9030 +1537 4708 0.8140 +1537 4709 0.9300 +1537 4710 0.9280 +1537 4711 0.9390 +1537 4712 0.9730 +1537 4713 0.9960 +1537 4714 0.9940 +1537 4715 0.9970 +1537 4716 0.9950 +1537 4717 0.8640 +1537 4718 0.9430 +1537 4720 0.9990 +1537 4722 0.9990 +1537 4723 0.9990 +1537 4724 0.9990 +1537 4725 0.9330 +1537 4726 0.9980 +1537 4728 0.9990 +1537 4729 0.9990 +1537 4731 0.8780 +1537 4783 0.4200 +1537 4907 0.6230 +1537 4967 0.5650 +1537 5009 0.5180 +1537 5016 0.4590 +1537 5018 0.5510 +1537 5034 0.4190 +1537 5162 0.5410 +1537 5245 0.5250 +1537 5250 0.5300 +1537 5664 0.4230 +1537 5694 0.4350 +1537 5824 0.4120 +1537 5927 0.5810 +1537 6132 0.4010 +1537 6150 0.4370 +1537 6182 0.6530 +1537 6341 0.6730 +1537 6389 0.9660 +1537 6390 0.9750 +1537 6391 0.9230 +1537 6392 0.8780 +1537 6426 0.4550 +1537 6834 0.8680 +1537 6901 0.5790 +1537 7008 0.4160 +1537 7019 0.5220 +1537 7084 0.6000 +1537 7284 0.9060 +1537 7316 0.5340 +1537 7381 0.9990 +1537 7384 0.9990 +1537 7385 0.9990 +1537 7386 0.9990 +1537 7388 0.9990 +1537 7403 0.6090 +1537 7404 0.6090 +1537 7416 0.8610 +1537 7417 0.5190 +1537 7419 0.4610 +1537 8050 0.4040 +1537 8192 0.4360 +1537 8242 0.5820 +1537 8284 0.5820 +1537 8402 0.6460 +1537 8604 0.5840 +1537 8683 0.4680 +1537 8802 0.8270 +1537 8803 0.4440 +1537 9167 0.9110 +1537 9238 0.5140 +1537 9296 0.4040 +1537 9319 0.9120 +1537 9377 0.9990 +1537 9446 0.4620 +1537 9512 0.9950 +1537 9551 0.5970 +1537 9582 0.8050 +1537 9804 0.5330 +1537 9868 0.6260 +1537 9997 0.5650 +1537 10063 0.7220 +1537 10165 0.5440 +1537 10211 0.5440 +1537 10229 0.4130 +1537 10245 0.7030 +1537 10280 0.4610 +1537 10440 0.7820 +1537 10449 0.4730 +1537 10452 0.8920 +1537 10469 0.7940 +1537 10476 0.7700 +1537 10535 0.5510 +1537 10553 0.8480 +1537 10632 0.6440 +1537 10765 0.5810 +1537 10939 0.4670 +1537 10975 0.9990 +1537 10989 0.6450 +1537 11331 0.7530 +1537 11343 0.8240 +1537 22827 0.4030 +1537 23135 0.6190 +1537 23155 0.4280 +1537 23203 0.9850 +1537 23521 0.4200 +1537 23558 0.9410 +1537 23645 0.9750 +1537 25813 0.6080 +1537 25828 0.5250 +1537 25915 0.6690 +1537 25994 0.4590 +1537 26517 0.6760 +1537 26519 0.6550 +1537 26520 0.5640 +1537 26521 0.5580 +1537 26589 0.4260 +1537 27089 0.9990 +1537 27159 0.4590 +1537 27235 0.6230 +1537 27350 0.8030 +1537 28998 0.4410 +1537 29088 0.4360 +1537 29090 0.6760 +1537 29104 0.5080 +1537 29796 0.9990 +1537 29928 0.8130 +1537 29957 0.4220 +1537 30968 0.4510 +1537 51025 0.6420 +1537 51028 0.5140 +1537 51069 0.6100 +1537 51073 0.4940 +1537 51079 0.9940 +1537 51142 0.6330 +1537 51167 0.4370 +1537 51253 0.4540 +1537 51287 0.5890 +1537 51295 0.5650 +1537 51409 0.4290 +1537 51805 0.5310 +1537 54205 0.9990 +1537 54431 0.5970 +1537 54512 0.4050 +1537 54539 0.9610 +1537 54543 0.4780 +1537 54902 0.4530 +1537 54927 0.6730 +1537 54998 0.4890 +1537 55028 0.4420 +1537 55143 0.8730 +1537 55210 0.4730 +1537 55245 0.5670 +1537 55967 0.9980 +1537 56901 0.6250 +1537 56942 0.5160 +1537 56993 0.6890 +1537 57017 0.5010 +1537 57379 0.8010 +1537 57407 0.8490 +1537 57552 0.5400 +1537 58157 0.4110 +1537 58509 0.4830 +1537 60489 0.8040 +1537 64111 0.9670 +1537 65263 0.4070 +1537 65993 0.4170 +1537 79002 0.9180 +1537 79085 0.4080 +1537 79145 0.5980 +1537 79598 0.6000 +1537 79728 0.9060 +1537 80142 0.6430 +1537 80195 0.8460 +1537 80221 0.5270 +1537 80273 0.6420 +1537 81341 0.9850 +1537 81689 0.4120 +1537 83447 0.4470 +1537 83943 0.5330 +1537 84269 0.5500 +1537 84274 0.4360 +1537 84300 0.4320 +1537 84331 0.5830 +1537 84419 0.6290 +1537 84701 0.9930 +1537 84886 0.9800 +1537 84939 0.9450 +1537 90624 0.4670 +1537 90639 0.6120 +1537 91300 0.9750 +1537 92609 0.7820 +1537 112812 0.6410 +1537 119391 0.4420 +1537 123346 0.4300 +1537 125061 0.4970 +1537 125965 0.9440 +1537 126328 0.9600 +1537 126767 0.5330 +1537 130752 0.4080 +1537 131118 0.6140 +1537 134266 0.5900 +1537 139221 0.9450 +1537 140564 0.8040 +1537 150274 0.6400 +1537 164668 0.8010 +1537 164684 0.9390 +1537 170712 0.7850 +1537 171568 0.6230 +1537 192286 0.5140 +1537 197257 0.5270 +1537 200315 0.8010 +1537 200316 0.8030 +1537 219927 0.5880 +1537 267020 0.4430 +1537 283459 0.9360 +1537 285521 0.4040 +1537 341947 0.5400 +1537 343066 0.5330 +1537 344752 0.5330 +1537 374291 0.9980 +1537 388753 0.9490 +1537 400916 0.6390 +1537 401505 0.5500 +1537 440567 0.9870 +1537 493856 0.5140 +1537 728317 0.9450 +1537 790955 0.4430 +1537 100188893 0.4600 +1537 100272147 0.5040 +1537 100287932 0.7030 +1537 100532726 0.5510 +1537 105372267 0.4160 +1538 1539 0.6630 +1538 2334 0.5150 +1538 2491 0.4060 +1538 4115 0.4280 +1538 5456 0.4340 +1538 6451 0.4220 +1538 6677 0.4390 +1538 6990 0.4740 +1538 7552 0.4870 +1538 8995 0.4350 +1538 26494 0.4360 +1538 27328 0.5280 +1538 27330 0.5650 +1538 53336 0.6520 +1538 55905 0.4540 +1538 56062 0.4870 +1538 57018 0.5780 +1538 117154 0.5100 +1538 124842 0.5160 +1538 139081 0.4470 +1538 139212 0.4410 +1538 139322 0.5790 +1538 158787 0.4930 +1538 169966 0.5260 +1538 253769 0.4590 +1538 254065 0.5250 +1538 340562 0.5830 +1538 389852 0.5080 +1538 392509 0.4890 +1538 442444 0.4200 +1538 729201 0.4760 +1539 54558 0.5170 +1539 54877 0.4650 +1539 57828 0.5640 +1539 60625 0.4560 +1539 79645 0.5210 +1539 119772 0.4340 +1539 127069 0.5050 +1539 148254 0.4500 +1539 163059 0.4070 +1539 200523 0.4370 +1539 219681 0.4470 +1539 220082 0.5220 +1539 286234 0.5530 +1539 111064647 0.5740 +1540 1855 0.6580 +1540 1896 0.4290 +1540 1956 0.4900 +1540 2353 0.5680 +1540 2736 0.9880 +1540 3551 0.8680 +1540 3553 0.4580 +1540 3654 0.4740 +1540 3661 0.4800 +1540 3725 0.4240 +1540 4046 0.9420 +1540 4092 0.8220 +1540 4214 0.5260 +1540 4493 0.4740 +1540 4609 0.4060 +1540 4738 0.4440 +1540 4780 0.4210 +1540 4790 0.7250 +1540 4791 0.5140 +1540 4792 0.7430 +1540 5122 0.4340 +1540 5289 0.4040 +1540 5295 0.5620 +1540 5347 0.5940 +1540 5595 0.4260 +1540 5728 0.4920 +1540 5966 0.5320 +1540 5970 0.5360 +1540 5971 0.5910 +1540 6233 0.9750 +1540 6774 0.6560 +1540 6885 0.8890 +1540 7098 0.4940 +1540 7099 0.4400 +1540 7124 0.9850 +1540 7128 0.6740 +1540 7132 0.9990 +1540 7133 0.4110 +1540 7157 0.7170 +1540 7185 0.6760 +1540 7186 0.9920 +1540 7187 0.8500 +1540 7188 0.5710 +1540 7189 0.9990 +1540 7311 0.9660 +1540 7314 0.9710 +1540 7316 0.9950 +1540 7317 0.4060 +1540 7321 0.5700 +1540 7322 0.5940 +1540 7332 0.5370 +1540 7334 0.7210 +1540 7335 0.4670 +1540 7345 0.4400 +1540 7347 0.4680 +1540 7375 0.6670 +1540 7398 0.5460 +1540 7706 0.4660 +1540 7846 0.5480 +1540 7874 0.8130 +1540 7919 0.5920 +1540 8078 0.6300 +1540 8237 0.5440 +1540 8239 0.5500 +1540 8312 0.4550 +1540 8517 0.9990 +1540 8678 0.4390 +1540 8717 0.9950 +1540 8737 0.9990 +1540 8767 0.6610 +1540 8772 0.9310 +1540 8792 0.4030 +1540 8837 0.6180 +1540 8877 0.6020 +1540 8878 0.9790 +1540 8887 0.4770 +1540 8915 0.5950 +1540 8975 0.6570 +1540 9097 0.6780 +1540 9098 0.4320 +1540 9099 0.6060 +1540 9101 0.6670 +1540 9474 0.4490 +1540 9636 0.4060 +1540 9641 0.9940 +1540 9825 0.9970 +1540 9857 0.8250 +1540 9929 0.5150 +1540 9958 0.6410 +1540 9960 0.5920 +1540 9984 0.9620 +1540 10010 0.6550 +1540 10013 0.8480 +1540 10133 0.9380 +1540 10189 0.4910 +1540 10193 0.4170 +1540 10273 0.4860 +1540 10293 0.8700 +1540 10318 0.6460 +1540 10392 0.5760 +1540 10454 0.6540 +1540 10475 0.4060 +1540 10482 0.5110 +1540 10537 0.4410 +1540 10616 0.8770 +1540 10617 0.4680 +1540 10724 0.4950 +1540 10868 0.5320 +1540 10869 0.4900 +1540 10875 0.5180 +1540 10892 0.7240 +1540 10913 0.6920 +1540 10987 0.4860 +1540 11035 0.6740 +1540 11274 0.4800 +1540 22894 0.4490 +1540 22919 0.4110 +1540 23085 0.5120 +1540 23118 0.8280 +1540 23326 0.4090 +1540 23586 0.9890 +1540 25999 0.9200 +1540 26994 0.4840 +1540 27005 0.5170 +1540 27338 0.5240 +1540 29110 0.9690 +1540 29761 0.5450 +1540 50507 0.5720 +1540 51377 0.4790 +1540 51633 0.4270 +1540 54726 0.4330 +1540 54764 0.6970 +1540 54801 0.4020 +1540 54855 0.4950 +1540 54941 0.5410 +1540 55031 0.4890 +1540 55072 0.9930 +1540 55125 0.5980 +1540 55294 0.5150 +1540 55593 0.6500 +1540 55611 0.5770 +1540 56957 0.6680 +1540 57162 0.4370 +1540 57187 0.9920 +1540 57407 0.5070 +1540 57506 0.7090 +1540 57559 0.4140 +1540 57602 0.4500 +1540 57646 0.4800 +1540 57663 0.4170 +1540 57695 0.4010 +1540 60401 0.6710 +1540 64127 0.8880 +1540 64135 0.4610 +1540 64854 0.4090 +1540 78990 0.4560 +1540 79132 0.4030 +1540 79155 0.4860 +1540 79443 0.4080 +1540 80149 0.4610 +1540 81858 0.9360 +1540 83737 0.9120 +1540 84101 0.4300 +1540 84196 0.4620 +1540 84231 0.4390 +1540 84282 0.4880 +1540 84321 0.9890 +1540 84433 0.6780 +1540 84669 0.4700 +1540 84749 0.4120 +1540 85407 0.4480 +1540 90268 0.8320 +1540 91107 0.4550 +1540 114088 0.4380 +1540 114803 0.5060 +1540 115992 0.4160 +1540 124044 0.9550 +1540 124460 0.5790 +1540 126119 0.4830 +1540 128178 0.4620 +1540 142678 0.9410 +1540 197259 0.7530 +1540 219333 0.4090 +1540 220213 0.4420 +1540 221302 0.7210 +1540 257397 0.7560 +1540 340061 0.4080 +1540 373509 0.5350 +1540 377630 0.4830 +1540 728373 0.4670 +1543 1544 0.9500 +1543 1545 0.9370 +1543 1548 0.9580 +1543 1551 0.9560 +1543 1553 0.9340 +1543 1555 0.9590 +1543 1557 0.5830 +1543 1558 0.9550 +1543 1559 0.9640 +1543 1562 0.9590 +1543 1565 0.9360 +1543 1571 0.9390 +1543 1576 0.9870 +1543 1577 0.9710 +1543 1579 0.9530 +1543 1580 0.5400 +1543 1581 0.9680 +1543 1583 0.5100 +1543 1584 0.4560 +1543 1585 0.4560 +1543 1586 0.9250 +1543 1588 0.9530 +1543 1591 0.4060 +1543 1592 0.9450 +1543 1593 0.4080 +1543 1594 0.4450 +1543 1645 0.9390 +1543 1728 0.7460 +1543 1956 0.5920 +1543 1982 0.4350 +1543 2052 0.9850 +1543 2053 0.4840 +1543 2068 0.4610 +1543 2099 0.7850 +1543 2100 0.5680 +1543 2168 0.5810 +1543 2180 0.4730 +1543 2194 0.4420 +1543 2230 0.6660 +1543 2304 0.4070 +1543 2316 0.4260 +1543 2328 0.4530 +1543 2539 0.4050 +1543 2597 0.5580 +1543 2875 0.4110 +1543 2877 0.4970 +1543 2878 0.4730 +1543 2880 0.4620 +1543 2882 0.4540 +1543 2908 0.5890 +1543 2938 0.9610 +1543 2939 0.9480 +1543 2940 0.9330 +1543 2941 0.9360 +1543 2944 0.9910 +1543 2946 0.9470 +1543 2947 0.9500 +1543 2948 0.9200 +1543 2949 0.9200 +1543 2950 0.9740 +1543 3156 0.5750 +1543 3162 0.5450 +1543 3172 0.6160 +1543 3248 0.5320 +1543 3283 0.9500 +1543 3284 0.9680 +1543 3290 0.9310 +1543 3292 0.9550 +1543 3293 0.4090 +1543 3294 0.9620 +1543 3303 0.4460 +1543 3304 0.4640 +1543 3320 0.5570 +1543 3326 0.5570 +1543 3479 0.5140 +1543 3552 0.4980 +1543 3553 0.4800 +1543 3569 0.5280 +1543 3576 0.6240 +1543 3620 0.9440 +1543 3630 0.4090 +1543 3725 0.5940 +1543 4051 0.4970 +1543 4257 0.9230 +1543 4258 0.9120 +1543 4259 0.9130 +1543 4351 0.4430 +1543 4524 0.5130 +1543 4780 0.5240 +1543 4968 0.4560 +1543 5243 0.5870 +1543 5444 0.4420 +1543 5447 0.7500 +1543 5465 0.7190 +1543 5468 0.5520 +1543 5469 0.5070 +1543 5595 0.4100 +1543 5610 0.4590 +1543 5743 0.4940 +1543 5965 0.4410 +1543 6256 0.7140 +1543 6373 0.4290 +1543 6446 0.4340 +1543 6573 0.4260 +1543 6604 0.4580 +1543 6713 0.4080 +1543 6716 0.4070 +1543 6783 0.9480 +1543 6799 0.4810 +1543 6820 0.9260 +1543 6822 0.9440 +1543 6907 0.4740 +1543 6999 0.5400 +1543 7124 0.4650 +1543 7157 0.6970 +1543 7166 0.4840 +1543 7172 0.4490 +1543 7355 0.7700 +1543 7363 0.9560 +1543 7364 0.9620 +1543 7365 0.9530 +1543 7366 0.9560 +1543 7367 0.9540 +1543 7515 0.5070 +1543 7837 0.4320 +1543 7923 0.9260 +1543 8529 0.5040 +1543 8564 0.4020 +1543 8630 0.9170 +1543 8644 0.9350 +1543 8647 0.4290 +1543 8648 0.6950 +1543 8714 0.4290 +1543 8854 0.9250 +1543 8856 0.7420 +1543 9049 0.5850 +1543 9360 0.9340 +1543 9420 0.6520 +1543 9429 0.5680 +1543 9446 0.9250 +1543 9563 0.4360 +1543 9636 0.4440 +1543 9915 0.6240 +1543 9970 0.7890 +1543 9971 0.4560 +1543 10105 0.7760 +1543 10110 0.4690 +1543 10498 0.4700 +1543 10499 0.6850 +1543 10563 0.4160 +1543 10599 0.4840 +1543 10720 0.9530 +1543 10858 0.4250 +1543 10901 0.5420 +1543 11283 0.4430 +1543 22977 0.4130 +1543 23054 0.4350 +1543 25976 0.5940 +1543 27233 0.5320 +1543 27284 0.5580 +1543 27306 0.9680 +1543 28234 0.4200 +1543 29785 0.9350 +1543 50616 0.4180 +1543 51144 0.9210 +1543 51167 0.4220 +1543 51478 0.9320 +1543 51773 0.4060 +1543 54205 0.4530 +1543 54490 0.9530 +1543 54575 0.9850 +1543 54576 0.9850 +1543 54577 0.9850 +1543 54578 0.9860 +1543 54579 0.9600 +1543 54600 0.9660 +1543 54657 0.9850 +1543 54658 0.9850 +1543 54659 0.9650 +1543 55435 0.5070 +1543 56603 0.9430 +1543 57404 0.4840 +1543 57491 0.9340 +1543 57834 0.4650 +1543 64005 0.5060 +1543 64816 0.6830 +1543 66002 0.4770 +1543 79154 0.4540 +1543 79718 0.4080 +1543 79799 0.9530 +1543 80205 0.4150 +1543 80777 0.6230 +1543 84896 0.7740 +1543 85441 0.4090 +1543 114799 0.4560 +1543 119391 0.9210 +1543 121278 0.4100 +1543 126410 0.4210 +1543 132949 0.5030 +1543 133482 0.5790 +1543 135152 0.5920 +1543 137902 0.4320 +1543 157570 0.4560 +1543 169355 0.9370 +1543 199974 0.4410 +1543 220074 0.9570 +1543 221357 0.9280 +1543 257202 0.4610 +1543 260293 0.4530 +1543 284541 0.9440 +1543 285440 0.4210 +1543 340665 0.9280 +1543 373156 0.5920 +1543 374875 0.9210 +1543 442038 0.5260 +1543 493869 0.4720 +1543 574537 0.9550 +1543 653689 0.9540 +1543 100861540 0.9630 +1544 1545 0.9360 +1544 1548 0.9690 +1544 1549 0.5200 +1544 1551 0.9560 +1544 1553 0.9440 +1544 1555 0.9630 +1544 1557 0.9510 +1544 1558 0.9460 +1544 1559 0.9470 +1544 1562 0.9420 +1544 1565 0.4430 +1544 1571 0.9820 +1544 1573 0.9340 +1544 1576 0.9680 +1544 1577 0.9600 +1544 1579 0.9720 +1544 1580 0.5230 +1544 1581 0.9730 +1544 1582 0.4770 +1544 1583 0.4720 +1544 1584 0.4520 +1544 1585 0.4400 +1544 1586 0.9290 +1544 1588 0.5220 +1544 1592 0.9440 +1544 1594 0.4960 +1544 1644 0.5450 +1544 1728 0.5980 +1544 1814 0.5520 +1544 2052 0.9610 +1544 2099 0.4920 +1544 2147 0.4140 +1544 2194 0.4350 +1544 2230 0.4610 +1544 2235 0.6700 +1544 2326 0.4130 +1544 2328 0.7060 +1544 2539 0.5290 +1544 2597 0.9890 +1544 2806 0.5940 +1544 2875 0.5690 +1544 2938 0.9580 +1544 2939 0.9440 +1544 2940 0.9330 +1544 2941 0.9370 +1544 2944 0.9600 +1544 2946 0.9370 +1544 2947 0.9350 +1544 2948 0.9210 +1544 2949 0.9170 +1544 2950 0.9600 +1544 3091 0.4320 +1544 3162 0.4090 +1544 3172 0.6670 +1544 3176 0.4080 +1544 3283 0.9370 +1544 3284 0.9350 +1544 3290 0.5550 +1544 3292 0.4350 +1544 3320 0.4170 +1544 3326 0.4060 +1544 3356 0.4790 +1544 3358 0.4320 +1544 3569 0.4380 +1544 3620 0.9300 +1544 3630 0.5740 +1544 3725 0.5380 +1544 3757 0.5840 +1544 4051 0.4900 +1544 4128 0.5400 +1544 4129 0.5390 +1544 4233 0.5040 +1544 4257 0.9160 +1544 4258 0.9120 +1544 4259 0.9060 +1544 4351 0.5040 +1544 4524 0.4290 +1544 5004 0.4170 +1544 5005 0.4120 +1544 5053 0.4740 +1544 5243 0.6760 +1544 5319 0.6720 +1544 5320 0.6670 +1544 5321 0.6800 +1544 5322 0.6590 +1544 5444 0.4910 +1544 5447 0.8920 +1544 5465 0.4500 +1544 6446 0.4050 +1544 6532 0.6510 +1544 6554 0.5190 +1544 6579 0.4850 +1544 6580 0.5110 +1544 6582 0.4640 +1544 6783 0.5360 +1544 6799 0.5040 +1544 6820 0.9230 +1544 6822 0.5180 +1544 6898 0.4810 +1544 6927 0.4040 +1544 6999 0.4720 +1544 7054 0.4300 +1544 7157 0.5810 +1544 7166 0.4790 +1544 7172 0.5040 +1544 7295 0.5330 +1544 7355 0.7640 +1544 7363 0.9290 +1544 7364 0.9160 +1544 7365 0.8900 +1544 7366 0.8990 +1544 7367 0.8770 +1544 7389 0.6850 +1544 7498 0.9480 +1544 8398 0.6540 +1544 8399 0.6550 +1544 8529 0.7070 +1544 8605 0.6520 +1544 8644 0.9240 +1544 8647 0.5690 +1544 8681 0.6500 +1544 8714 0.4440 +1544 8854 0.9200 +1544 8856 0.8340 +1544 9049 0.4510 +1544 9360 0.9510 +1544 9376 0.5410 +1544 9420 0.5210 +1544 9429 0.6360 +1544 9446 0.9200 +1544 9563 0.5520 +1544 9970 0.7380 +1544 9971 0.4580 +1544 10105 0.4590 +1544 10110 0.4690 +1544 10257 0.4230 +1544 10499 0.4230 +1544 10599 0.8110 +1544 10720 0.8830 +1544 10857 0.8490 +1544 10864 0.4490 +1544 10998 0.4680 +1544 11145 0.6590 +1544 11283 0.4900 +1544 11309 0.4300 +1544 22977 0.4580 +1544 26279 0.6570 +1544 27233 0.5800 +1544 27284 0.5920 +1544 27306 0.9540 +1544 28234 0.6590 +1544 29785 0.9350 +1544 30814 0.6560 +1544 50487 0.6830 +1544 54205 0.4320 +1544 54490 0.8830 +1544 54575 0.9580 +1544 54576 0.9640 +1544 54577 0.9550 +1544 54578 0.9580 +1544 54579 0.8890 +1544 54600 0.9150 +1544 54657 0.9580 +1544 54658 0.9570 +1544 54659 0.9020 +1544 54905 0.4030 +1544 55244 0.4350 +1544 55435 0.5070 +1544 56603 0.9450 +1544 57491 0.5580 +1544 57834 0.4490 +1544 64600 0.6710 +1544 64805 0.4100 +1544 64816 0.6070 +1544 66002 0.4730 +1544 79001 0.5090 +1544 79799 0.8830 +1544 80777 0.8560 +1544 81579 0.6720 +1544 84647 0.6790 +1544 84896 0.4690 +1544 114799 0.5800 +1544 116519 0.4540 +1544 119391 0.9170 +1544 121278 0.4260 +1544 123745 0.6510 +1544 126206 0.4760 +1544 126410 0.4140 +1544 132949 0.5310 +1544 133688 0.5130 +1544 135152 0.8880 +1544 146802 0.4150 +1544 151056 0.6520 +1544 157570 0.5800 +1544 167127 0.4840 +1544 169355 0.9500 +1544 199974 0.4340 +1544 220074 0.5320 +1544 221357 0.9160 +1544 255189 0.6500 +1544 260293 0.4680 +1544 283748 0.6570 +1544 284541 0.9460 +1544 285440 0.4130 +1544 340665 0.9260 +1544 391013 0.6670 +1544 442038 0.5570 +1544 574537 0.8830 +1544 653247 0.4570 +1544 653689 0.9270 +1544 100137049 0.6500 +1544 100861540 0.9420 +1545 1548 0.5850 +1545 1551 0.5150 +1545 1555 0.9320 +1545 1557 0.5530 +1545 1558 0.5390 +1545 1559 0.6310 +1545 1562 0.5310 +1545 1576 0.7060 +1545 1577 0.5410 +1545 1579 0.4930 +1545 1580 0.5060 +1545 1581 0.5470 +1545 1583 0.4580 +1545 1586 0.5500 +1545 1588 0.7390 +1545 1591 0.5730 +1545 1592 0.4350 +1545 1594 0.5050 +1545 1645 0.4540 +1545 1728 0.7970 +1545 1903 0.4630 +1545 2052 0.9660 +1545 2053 0.4290 +1545 2099 0.6490 +1545 2100 0.5310 +1545 2230 0.4170 +1545 2295 0.6970 +1545 2296 0.8560 +1545 2301 0.4850 +1545 2303 0.4590 +1545 2597 0.4580 +1545 2627 0.5360 +1545 2745 0.4140 +1545 2762 0.5740 +1545 2938 0.9540 +1545 2939 0.9360 +1545 2940 0.9190 +1545 2941 0.9290 +1545 2944 0.9620 +1545 2946 0.9470 +1545 2947 0.9430 +1545 2948 0.9170 +1545 2949 0.9200 +1545 2950 0.9730 +1545 3162 0.4310 +1545 3283 0.5610 +1545 3284 0.4700 +1545 3292 0.9580 +1545 3293 0.4150 +1545 3294 0.9410 +1545 3320 0.4800 +1545 3326 0.4790 +1545 3569 0.4480 +1545 3620 0.9380 +1545 3973 0.4830 +1545 4010 0.6210 +1545 4051 0.4500 +1545 4053 0.8090 +1545 4054 0.5290 +1545 4060 0.4520 +1545 4257 0.9250 +1545 4258 0.9160 +1545 4259 0.9080 +1545 4544 0.4140 +1545 4653 0.9440 +1545 4780 0.4180 +1545 4800 0.4330 +1545 4909 0.4520 +1545 5080 0.4210 +1545 5243 0.4910 +1545 5308 0.8320 +1545 5447 0.4230 +1545 5743 0.4600 +1545 5830 0.4520 +1545 6230 0.4510 +1545 6496 0.4320 +1545 6713 0.4110 +1545 6783 0.4130 +1545 6820 0.4090 +1545 6822 0.9300 +1545 6939 0.4430 +1545 6999 0.5060 +1545 7048 0.4490 +1545 7157 0.6180 +1545 7166 0.4910 +1545 7299 0.5150 +1545 7355 0.4870 +1545 7363 0.9360 +1545 7364 0.9440 +1545 7365 0.9320 +1545 7366 0.9380 +1545 7367 0.9340 +1545 7373 0.4310 +1545 7923 0.9330 +1545 8529 0.4550 +1545 8564 0.4020 +1545 8630 0.9110 +1545 8644 0.9370 +1545 8856 0.5540 +1545 9020 0.4210 +1545 9049 0.5450 +1545 9360 0.9110 +1545 9420 0.6020 +1545 9429 0.4590 +1545 9446 0.9290 +1545 9636 0.4380 +1545 9970 0.4740 +1545 10133 0.6980 +1545 10720 0.9320 +1545 10736 0.4900 +1545 25976 0.5770 +1545 27233 0.4050 +1545 27284 0.4050 +1545 27306 0.9540 +1545 51144 0.9280 +1545 51302 0.5090 +1545 51478 0.9320 +1545 54490 0.9310 +1545 54575 0.9630 +1545 54576 0.9630 +1545 54577 0.9630 +1545 54578 0.9660 +1545 54579 0.9380 +1545 54600 0.9440 +1545 54657 0.9630 +1545 54658 0.9630 +1545 54659 0.9420 +1545 55897 0.4440 +1545 56603 0.6880 +1545 57491 0.7520 +1545 57834 0.4300 +1545 64816 0.4810 +1545 66002 0.4580 +1545 79154 0.5050 +1545 79799 0.9310 +1545 80777 0.6420 +1545 84896 0.5130 +1545 94234 0.7150 +1545 119391 0.9210 +1545 121278 0.4100 +1545 126410 0.4020 +1545 132949 0.5030 +1545 135152 0.4810 +1545 136371 0.7080 +1545 145173 0.4740 +1545 157506 0.4760 +1545 169355 0.9310 +1545 199974 0.4670 +1545 220074 0.9660 +1545 221357 0.9150 +1545 260293 0.4620 +1545 284541 0.4510 +1545 285440 0.4240 +1545 373156 0.5630 +1545 574537 0.9350 +1545 653689 0.9310 +1548 1549 0.9990 +1548 1551 0.9510 +1548 1553 0.9110 +1548 1555 0.9510 +1548 1557 0.5530 +1548 1558 0.6360 +1548 1559 0.9460 +1548 1562 0.4930 +1548 1565 0.9530 +1548 1571 0.9280 +1548 1576 0.9750 +1548 1577 0.9530 +1548 1579 0.9700 +1548 1580 0.5010 +1548 1581 0.6590 +1548 1588 0.6120 +1548 1592 0.9430 +1548 1594 0.4260 +1548 1645 0.9150 +1548 1646 0.9150 +1548 1806 0.9490 +1548 1813 0.4210 +1548 1890 0.9170 +1548 2052 0.9460 +1548 2158 0.5110 +1548 2230 0.4200 +1548 2328 0.7210 +1548 2539 0.4450 +1548 2821 0.4680 +1548 2908 0.4090 +1548 2938 0.9330 +1548 2939 0.9310 +1548 2940 0.9190 +1548 2941 0.9170 +1548 2944 0.9510 +1548 2946 0.9260 +1548 2947 0.9210 +1548 2948 0.9080 +1548 2949 0.9060 +1548 2950 0.9450 +1548 3172 0.5260 +1548 3290 0.9290 +1548 4051 0.4560 +1548 4128 0.6530 +1548 4129 0.4400 +1548 4257 0.9070 +1548 4258 0.9040 +1548 4259 0.9030 +1548 5184 0.4620 +1548 5243 0.5670 +1548 5447 0.7830 +1548 6261 0.4290 +1548 6554 0.4280 +1548 6580 0.5100 +1548 6898 0.4190 +1548 7172 0.5060 +1548 7355 0.6670 +1548 7363 0.9560 +1548 7364 0.9730 +1548 7365 0.9680 +1548 7366 0.9640 +1548 7367 0.9610 +1548 7372 0.9300 +1548 7378 0.9080 +1548 7498 0.9330 +1548 8529 0.5470 +1548 8647 0.4230 +1548 8854 0.9140 +1548 8856 0.7500 +1548 8973 0.7340 +1548 9360 0.9490 +1548 9420 0.5870 +1548 9429 0.4760 +1548 9446 0.9090 +1548 9563 0.4870 +1548 9970 0.6510 +1548 10144 0.4160 +1548 10599 0.6290 +1548 10720 0.9520 +1548 10961 0.5500 +1548 27306 0.9450 +1548 28234 0.4810 +1548 29785 0.9180 +1548 51302 0.5350 +1548 53916 0.4720 +1548 54490 0.9530 +1548 54575 0.9650 +1548 54576 0.9630 +1548 54577 0.9650 +1548 54578 0.9690 +1548 54579 0.9510 +1548 54600 0.9640 +1548 54657 0.9720 +1548 54658 0.9640 +1548 54659 0.9570 +1548 55435 0.4450 +1548 56603 0.9360 +1548 57834 0.4310 +1548 64816 0.4840 +1548 66002 0.4590 +1548 79001 0.6450 +1548 79799 0.9520 +1548 80777 0.7290 +1548 112398 0.4070 +1548 119391 0.9170 +1548 120227 0.4790 +1548 123688 0.4260 +1548 132949 0.5030 +1548 135152 0.7800 +1548 151531 0.9130 +1548 199974 0.4340 +1548 221357 0.9190 +1548 255239 0.4050 +1548 260293 0.4460 +1548 284541 0.9450 +1548 340665 0.9270 +1548 374875 0.9170 +1548 574537 0.9510 +1548 653689 0.9210 +1548 100861540 0.9400 +1549 1551 0.4880 +1549 1576 0.6160 +1549 1577 0.5070 +1549 1579 0.5200 +1549 1580 0.4650 +1549 1581 0.5880 +1549 1588 0.4070 +1549 1592 0.4380 +1549 2230 0.4280 +1549 2821 0.5550 +1549 4051 0.4660 +1549 5184 0.5320 +1549 5194 0.4410 +1549 6261 0.4590 +1549 7364 0.4080 +1549 7365 0.4280 +1549 7366 0.4290 +1549 8529 0.4420 +1549 8856 0.6620 +1549 9091 0.4360 +1549 9360 0.8770 +1549 9420 0.6110 +1549 9970 0.4870 +1549 51302 0.5470 +1549 54577 0.4030 +1549 54578 0.4440 +1549 54579 0.4250 +1549 54657 0.4200 +1549 54658 0.4260 +1549 57404 0.4040 +1549 57834 0.4650 +1549 64816 0.4960 +1549 66002 0.4520 +1549 79799 0.4080 +1549 132949 0.5380 +1549 149643 0.4040 +1549 199974 0.4590 +1549 260293 0.4200 +1549 284541 0.5020 +1551 1553 0.4850 +1551 1555 0.9670 +1551 1557 0.7100 +1551 1558 0.9690 +1551 1559 0.9710 +1551 1562 0.9670 +1551 1565 0.5520 +1551 1571 0.5400 +1551 1572 0.4750 +1551 1573 0.4710 +1551 1576 0.6320 +1551 1577 0.9680 +1551 1579 0.9480 +1551 1580 0.4720 +1551 1581 0.9380 +1551 1586 0.9410 +1551 1588 0.4620 +1551 1589 0.4450 +1551 1592 0.9410 +1551 2099 0.5050 +1551 2950 0.4280 +1551 3172 0.4790 +1551 3283 0.9410 +1551 3284 0.9390 +1551 3429 0.4530 +1551 4051 0.4580 +1551 4552 0.5720 +1551 5241 0.5550 +1551 5243 0.5350 +1551 5265 0.4270 +1551 5447 0.9450 +1551 6554 0.4010 +1551 6783 0.4150 +1551 6820 0.9340 +1551 6822 0.4760 +1551 7355 0.4850 +1551 7363 0.7880 +1551 7364 0.8420 +1551 7365 0.7680 +1551 7366 0.8220 +1551 7367 0.7970 +1551 7739 0.5180 +1551 8519 0.4180 +1551 8529 0.4720 +1551 8644 0.9260 +1551 8854 0.9230 +1551 8856 0.8760 +1551 9360 0.7700 +1551 9970 0.7940 +1551 10403 0.7630 +1551 10599 0.4820 +1551 10720 0.7680 +1551 11283 0.4130 +1551 27158 0.8380 +1551 27302 0.4270 +1551 29785 0.9410 +1551 54490 0.7700 +1551 54575 0.8520 +1551 54576 0.8500 +1551 54577 0.8430 +1551 54578 0.8640 +1551 54579 0.7540 +1551 54600 0.8020 +1551 54657 0.8610 +1551 54658 0.8440 +1551 54659 0.7770 +1551 54905 0.4410 +1551 56603 0.9360 +1551 57834 0.4110 +1551 66002 0.4550 +1551 79799 0.7590 +1551 80777 0.4620 +1551 113612 0.4430 +1551 120227 0.5320 +1551 126410 0.4090 +1551 132949 0.5090 +1551 260293 0.4040 +1551 284541 0.9410 +1551 340665 0.9330 +1551 574537 0.7700 +1551 100861540 0.9110 +1553 1565 0.9260 +1553 1571 0.9240 +1553 1576 0.9560 +1553 1577 0.9500 +1553 1579 0.4720 +1553 1580 0.5170 +1553 1581 0.6860 +1553 1588 0.4300 +1553 1592 0.4360 +1553 1594 0.4100 +1553 1645 0.9180 +1553 1646 0.9150 +1553 2052 0.9290 +1553 2821 0.5440 +1553 2938 0.9230 +1553 2939 0.9200 +1553 2940 0.9180 +1553 2941 0.9150 +1553 2944 0.9330 +1553 2946 0.9160 +1553 2947 0.9140 +1553 2948 0.9050 +1553 2949 0.9100 +1553 2950 0.9320 +1553 3290 0.9270 +1553 4051 0.4530 +1553 4257 0.9000 +1553 4258 0.9020 +1553 4259 0.9010 +1553 5184 0.5280 +1553 5194 0.4220 +1553 5447 0.4260 +1553 6205 0.4540 +1553 6261 0.4670 +1553 7363 0.9370 +1553 7364 0.9410 +1553 7365 0.9400 +1553 7366 0.9390 +1553 7367 0.9420 +1553 8529 0.4320 +1553 8647 0.4400 +1553 8856 0.6650 +1553 9091 0.4360 +1553 9360 0.8960 +1553 9420 0.6090 +1553 9446 0.9050 +1553 9970 0.4900 +1553 10720 0.9370 +1553 26515 0.6100 +1553 26519 0.4020 +1553 27306 0.9320 +1553 51310 0.4050 +1553 54490 0.9380 +1553 54575 0.9400 +1553 54576 0.9400 +1553 54577 0.9420 +1553 54578 0.9400 +1553 54579 0.9380 +1553 54600 0.9410 +1553 54657 0.9420 +1553 54658 0.9400 +1553 54659 0.9370 +1553 56603 0.4040 +1553 57834 0.4250 +1553 64816 0.4910 +1553 66002 0.4160 +1553 79799 0.9380 +1553 80777 0.6130 +1553 119391 0.9050 +1553 132949 0.5030 +1553 199974 0.4220 +1553 221357 0.9260 +1553 260293 0.4170 +1553 284541 0.4510 +1553 374875 0.9170 +1553 574537 0.9380 +1553 653689 0.9070 +1555 1557 0.9200 +1555 1558 0.9170 +1555 1559 0.9210 +1555 1562 0.4840 +1555 1571 0.9210 +1555 1573 0.9240 +1555 1576 0.9600 +1555 1577 0.9700 +1555 1579 0.9660 +1555 1580 0.5420 +1555 1581 0.7200 +1555 1583 0.5350 +1555 1584 0.5520 +1555 1585 0.5320 +1555 1588 0.6060 +1555 1592 0.9430 +1555 1594 0.4580 +1555 1636 0.4170 +1555 1806 0.5420 +1555 2052 0.9520 +1555 2053 0.9440 +1555 2099 0.4080 +1555 2194 0.4040 +1555 2230 0.8050 +1555 2232 0.5040 +1555 2328 0.6900 +1555 2539 0.4070 +1555 2875 0.4820 +1555 2878 0.5420 +1555 2938 0.8280 +1555 2939 0.7760 +1555 2940 0.7330 +1555 2941 0.7380 +1555 2944 0.8320 +1555 2946 0.7400 +1555 2947 0.7490 +1555 2948 0.8080 +1555 2949 0.7010 +1555 2950 0.8280 +1555 3034 0.6000 +1555 3045 0.5200 +1555 3106 0.4260 +1555 3158 0.5470 +1555 3169 0.4800 +1555 3172 0.4930 +1555 3283 0.4180 +1555 3479 0.4910 +1555 3642 0.4790 +1555 4051 0.9460 +1555 4128 0.4430 +1555 4129 0.4430 +1555 4257 0.7000 +1555 4258 0.7010 +1555 4259 0.6930 +1555 4363 0.6110 +1555 4988 0.4800 +1555 5243 0.7410 +1555 5264 0.4290 +1555 5319 0.6640 +1555 5320 0.6700 +1555 5321 0.6740 +1555 5322 0.6550 +1555 5444 0.4320 +1555 5447 0.9100 +1555 5465 0.4090 +1555 5742 0.9180 +1555 5743 0.9170 +1555 5798 0.4020 +1555 6554 0.4670 +1555 6579 0.5220 +1555 6580 0.5550 +1555 6582 0.5750 +1555 6664 0.4330 +1555 6783 0.5280 +1555 6822 0.9550 +1555 6898 0.5560 +1555 7172 0.6090 +1555 7184 0.4130 +1555 7355 0.7230 +1555 7363 0.8710 +1555 7364 0.9240 +1555 7365 0.8670 +1555 7366 0.8830 +1555 7367 0.8670 +1555 8398 0.6540 +1555 8399 0.6630 +1555 8431 0.5890 +1555 8529 0.9510 +1555 8605 0.6520 +1555 8647 0.5070 +1555 8681 0.6500 +1555 8714 0.4690 +1555 8854 0.9160 +1555 8856 0.8720 +1555 8973 0.6270 +1555 9091 0.4260 +1555 9360 0.9640 +1555 9376 0.5420 +1555 9415 0.4060 +1555 9420 0.6190 +1555 9429 0.6160 +1555 9446 0.7060 +1555 9563 0.4420 +1555 9970 0.8480 +1555 9971 0.4720 +1555 10105 0.4100 +1555 10257 0.4930 +1555 10599 0.7390 +1555 10720 0.8620 +1555 10858 0.4020 +1555 10864 0.4220 +1555 10901 0.4580 +1555 10961 0.6340 +1555 11145 0.6590 +1555 11283 0.9390 +1555 11309 0.4280 +1555 26279 0.6590 +1555 27233 0.5130 +1555 27284 0.4770 +1555 27306 0.8400 +1555 28234 0.6220 +1555 29785 0.9180 +1555 30814 0.6670 +1555 50487 0.6840 +1555 50814 0.5730 +1555 51081 0.4190 +1555 51302 0.5600 +1555 54205 0.4860 +1555 54490 0.8650 +1555 54575 0.9240 +1555 54576 0.9280 +1555 54577 0.9240 +1555 54578 0.9280 +1555 54579 0.8660 +1555 54600 0.9060 +1555 54657 0.9300 +1555 54658 0.9260 +1555 54659 0.8810 +1555 55244 0.4160 +1555 55435 0.5410 +1555 56603 0.9360 +1555 57834 0.4460 +1555 64600 0.6730 +1555 64805 0.5070 +1555 64816 0.6660 +1555 66002 0.4670 +1555 79001 0.5710 +1555 79799 0.8650 +1555 80777 0.9000 +1555 81579 0.6500 +1555 84647 0.6720 +1555 84896 0.4880 +1555 113612 0.9240 +1555 119391 0.7070 +1555 123745 0.6500 +1555 132949 0.5130 +1555 135152 0.6130 +1555 151056 0.6750 +1555 199974 0.4160 +1555 221357 0.7250 +1555 255189 0.6500 +1555 255743 0.4320 +1555 260293 0.6670 +1555 283748 0.6500 +1555 284541 0.9450 +1555 340665 0.9240 +1555 391013 0.6550 +1555 440275 0.4930 +1555 442038 0.4960 +1555 574537 0.8620 +1555 653689 0.6890 +1555 100137049 0.6500 +1555 100861540 0.9600 +1557 1558 0.9430 +1557 1559 0.9880 +1557 1562 0.7620 +1557 1565 0.9250 +1557 1571 0.9150 +1557 1573 0.9250 +1557 1576 0.9680 +1557 1577 0.9590 +1557 1579 0.9570 +1557 1580 0.4750 +1557 1581 0.6460 +1557 1588 0.5190 +1557 1592 0.4230 +1557 1594 0.4470 +1557 1595 0.5300 +1557 1636 0.4520 +1557 1791 0.4310 +1557 1806 0.6470 +1557 2052 0.9520 +1557 2053 0.6510 +1557 2230 0.4290 +1557 2328 0.6900 +1557 2539 0.4720 +1557 2626 0.4280 +1557 2677 0.4350 +1557 2875 0.4790 +1557 2938 0.7950 +1557 2939 0.7370 +1557 2940 0.6950 +1557 2941 0.7060 +1557 2944 0.8890 +1557 2946 0.8200 +1557 2947 0.8230 +1557 2948 0.6700 +1557 2949 0.7070 +1557 2950 0.8190 +1557 3106 0.5850 +1557 3156 0.4490 +1557 3350 0.4030 +1557 3356 0.5100 +1557 3358 0.4030 +1557 3363 0.6900 +1557 3416 0.4060 +1557 3620 0.4230 +1557 3690 0.4890 +1557 3757 0.5780 +1557 4051 0.9500 +1557 4128 0.9480 +1557 4129 0.9440 +1557 4257 0.6910 +1557 4258 0.6730 +1557 4259 0.6700 +1557 4363 0.4040 +1557 4524 0.4380 +1557 4907 0.4220 +1557 4988 0.4110 +1557 5004 0.6170 +1557 5005 0.6210 +1557 5028 0.5710 +1557 5243 0.8580 +1557 5319 0.6660 +1557 5320 0.6720 +1557 5321 0.6850 +1557 5322 0.6550 +1557 5444 0.6330 +1557 5447 0.8380 +1557 5742 0.9350 +1557 5743 0.9270 +1557 5950 0.6470 +1557 6532 0.5600 +1557 6554 0.4240 +1557 6579 0.4700 +1557 6580 0.5680 +1557 6582 0.5210 +1557 6822 0.4610 +1557 7172 0.7760 +1557 7355 0.7230 +1557 7363 0.6710 +1557 7364 0.8050 +1557 7365 0.6710 +1557 7366 0.7300 +1557 7367 0.6760 +1557 7408 0.5220 +1557 7716 0.6540 +1557 8398 0.6610 +1557 8399 0.6550 +1557 8529 0.9560 +1557 8605 0.6500 +1557 8647 0.5030 +1557 8681 0.6500 +1557 8714 0.4430 +1557 8856 0.7490 +1557 9360 0.9580 +1557 9376 0.5180 +1557 9429 0.6510 +1557 9446 0.6930 +1557 9563 0.5030 +1557 9585 0.6580 +1557 9970 0.6590 +1557 9971 0.4090 +1557 10105 0.4270 +1557 10257 0.4230 +1557 10599 0.8170 +1557 10720 0.6490 +1557 11145 0.6590 +1557 11283 0.4300 +1557 11309 0.4480 +1557 23426 0.4280 +1557 26279 0.6560 +1557 27233 0.4520 +1557 27284 0.4520 +1557 27306 0.8020 +1557 28234 0.6230 +1557 30814 0.6570 +1557 50487 0.7040 +1557 54490 0.6500 +1557 54575 0.8040 +1557 54576 0.8110 +1557 54577 0.7990 +1557 54578 0.8620 +1557 54579 0.6720 +1557 54600 0.7540 +1557 54657 0.8310 +1557 54658 0.8090 +1557 54659 0.7250 +1557 55244 0.4340 +1557 55270 0.5200 +1557 55435 0.5930 +1557 57834 0.4660 +1557 64600 0.6590 +1557 64805 0.9120 +1557 64816 0.5380 +1557 66002 0.4940 +1557 79001 0.9140 +1557 79799 0.6650 +1557 80777 0.5870 +1557 81579 0.6500 +1557 84647 0.6850 +1557 113612 0.9220 +1557 114799 0.4090 +1557 119391 0.6860 +1557 123745 0.6500 +1557 132949 0.5030 +1557 135152 0.8360 +1557 146802 0.4090 +1557 151056 0.6530 +1557 157570 0.4080 +1557 199974 0.4080 +1557 221357 0.7250 +1557 255189 0.6500 +1557 260293 0.4320 +1557 283748 0.6520 +1557 284541 0.9410 +1557 375033 0.4050 +1557 391013 0.6550 +1557 442038 0.4360 +1557 574537 0.6470 +1557 653689 0.7100 +1557 100137049 0.6500 +1557 100861540 0.6270 +1558 1559 0.9280 +1558 1571 0.9510 +1558 1573 0.9260 +1558 1576 0.9730 +1558 1577 0.9560 +1558 1579 0.9660 +1558 1580 0.4820 +1558 1588 0.4400 +1558 1592 0.9450 +1558 1594 0.4130 +1558 1595 0.5000 +1558 1806 0.4360 +1558 2052 0.9450 +1558 2053 0.9730 +1558 2182 0.4370 +1558 2230 0.4010 +1558 2328 0.6590 +1558 2329 0.4090 +1558 2539 0.4330 +1558 2877 0.9100 +1558 2878 0.9100 +1558 2880 0.9100 +1558 2882 0.9100 +1558 2938 0.7530 +1558 2939 0.7190 +1558 2940 0.6850 +1558 2941 0.6900 +1558 2944 0.7790 +1558 2946 0.7090 +1558 2947 0.7090 +1558 2948 0.6700 +1558 2949 0.6900 +1558 2950 0.7940 +1558 3156 0.4050 +1558 3662 0.4540 +1558 4051 0.9460 +1558 4093 0.4290 +1558 4257 0.6810 +1558 4258 0.6570 +1558 4259 0.6680 +1558 4363 0.4200 +1558 5243 0.7220 +1558 5319 0.6630 +1558 5320 0.6550 +1558 5321 0.6760 +1558 5322 0.6550 +1558 5447 0.4720 +1558 5742 0.9200 +1558 5743 0.9430 +1558 5860 0.4410 +1558 6257 0.4200 +1558 6554 0.4120 +1558 6579 0.6910 +1558 6580 0.6140 +1558 6582 0.4450 +1558 6822 0.4990 +1558 7172 0.5200 +1558 7355 0.7000 +1558 7363 0.8670 +1558 7364 0.9390 +1558 7365 0.8610 +1558 7366 0.8840 +1558 7367 0.8640 +1558 8398 0.6640 +1558 8399 0.6550 +1558 8529 0.9510 +1558 8605 0.6630 +1558 8647 0.4900 +1558 8681 0.6500 +1558 8714 0.4250 +1558 8854 0.9170 +1558 8856 0.6890 +1558 9360 0.9570 +1558 9376 0.5740 +1558 9429 0.6500 +1558 9446 0.6840 +1558 9563 0.4600 +1558 9970 0.6290 +1558 10257 0.4040 +1558 10599 0.9400 +1558 10720 0.8450 +1558 10857 0.4530 +1558 10864 0.4330 +1558 11145 0.6590 +1558 11283 0.9410 +1558 11309 0.4890 +1558 26279 0.6560 +1558 27306 0.7750 +1558 28234 0.6960 +1558 30814 0.6610 +1558 50487 0.6830 +1558 54490 0.8460 +1558 54575 0.9060 +1558 54576 0.9070 +1558 54577 0.9060 +1558 54578 0.9120 +1558 54579 0.8430 +1558 54600 0.8940 +1558 54657 0.9250 +1558 54658 0.9020 +1558 54659 0.8800 +1558 55244 0.4600 +1558 55435 0.6080 +1558 56603 0.9400 +1558 57834 0.4670 +1558 64600 0.6810 +1558 64805 0.6330 +1558 64816 0.4980 +1558 66002 0.4990 +1558 79001 0.8090 +1558 79799 0.8500 +1558 80777 0.5660 +1558 81579 0.6500 +1558 84647 0.6800 +1558 113612 0.9220 +1558 119391 0.6900 +1558 123745 0.6500 +1558 132949 0.5100 +1558 135152 0.5880 +1558 146802 0.4340 +1558 151056 0.6530 +1558 199974 0.4180 +1558 221357 0.7080 +1558 255189 0.6560 +1558 257202 0.9090 +1558 260293 0.4480 +1558 283748 0.6500 +1558 284541 0.9430 +1558 340665 0.9270 +1558 391013 0.6550 +1558 493869 0.9090 +1558 574537 0.8410 +1558 653689 0.6950 +1558 100137049 0.6710 +1558 100861540 0.9610 +1559 1562 0.8610 +1559 1565 0.7810 +1559 1571 0.9360 +1559 1573 0.9250 +1559 1576 0.9800 +1559 1577 0.9600 +1559 1579 0.9550 +1559 1580 0.5000 +1559 1581 0.4090 +1559 1585 0.4030 +1559 1588 0.4650 +1559 1592 0.9430 +1559 1594 0.4530 +1559 1636 0.4620 +1559 1791 0.4360 +1559 1806 0.6140 +1559 2052 0.9630 +1559 2053 0.9670 +1559 2147 0.5980 +1559 2155 0.6430 +1559 2158 0.5980 +1559 2230 0.4250 +1559 2326 0.9250 +1559 2327 0.9210 +1559 2328 0.9480 +1559 2329 0.9250 +1559 2330 0.9220 +1559 2539 0.5030 +1559 2677 0.9080 +1559 2875 0.4820 +1559 2938 0.9470 +1559 2939 0.9310 +1559 2940 0.9170 +1559 2941 0.9160 +1559 2944 0.9510 +1559 2946 0.9210 +1559 2947 0.9310 +1559 2948 0.9080 +1559 2949 0.9080 +1559 2950 0.9510 +1559 3106 0.5930 +1559 3156 0.5440 +1559 3172 0.4710 +1559 3195 0.6500 +1559 3320 0.4050 +1559 3363 0.6810 +1559 3416 0.4170 +1559 3630 0.4280 +1559 3725 0.4240 +1559 3757 0.5890 +1559 4051 0.9520 +1559 4128 0.4580 +1559 4129 0.4540 +1559 4257 0.9070 +1559 4258 0.9080 +1559 4259 0.9070 +1559 4363 0.4070 +1559 4524 0.4340 +1559 4791 0.5600 +1559 5004 0.4050 +1559 5005 0.4030 +1559 5076 0.5580 +1559 5243 0.7420 +1559 5319 0.6680 +1559 5320 0.6880 +1559 5321 0.7020 +1559 5322 0.6550 +1559 5444 0.4920 +1559 5447 0.8180 +1559 5465 0.4360 +1559 5627 0.5120 +1559 5742 0.9360 +1559 5743 0.9360 +1559 5770 0.4160 +1559 5950 0.6210 +1559 6532 0.6280 +1559 6554 0.4880 +1559 6579 0.5570 +1559 6580 0.6550 +1559 6582 0.5540 +1559 6822 0.5310 +1559 7157 0.4730 +1559 7172 0.7690 +1559 7276 0.4520 +1559 7355 0.7660 +1559 7363 0.9290 +1559 7364 0.9280 +1559 7365 0.8830 +1559 7366 0.9140 +1559 7367 0.8800 +1559 7498 0.4320 +1559 8398 0.6670 +1559 8399 0.6690 +1559 8529 0.9740 +1559 8605 0.6500 +1559 8647 0.5340 +1559 8681 0.6500 +1559 8714 0.4460 +1559 8854 0.9140 +1559 8856 0.8500 +1559 9360 0.9560 +1559 9376 0.5550 +1559 9429 0.6700 +1559 9446 0.9150 +1559 9563 0.5320 +1559 9585 0.6470 +1559 9970 0.7110 +1559 9971 0.5020 +1559 10105 0.4550 +1559 10257 0.4510 +1559 10599 0.9220 +1559 10720 0.8760 +1559 10864 0.4460 +1559 11145 0.6590 +1559 11283 0.9420 +1559 11309 0.5530 +1559 26279 0.6560 +1559 27233 0.5030 +1559 27284 0.5160 +1559 27306 0.9480 +1559 28234 0.6690 +1559 30814 0.6550 +1559 50487 0.6860 +1559 54490 0.8770 +1559 54575 0.9300 +1559 54576 0.9360 +1559 54577 0.9280 +1559 54578 0.9640 +1559 54579 0.8810 +1559 54600 0.9130 +1559 54657 0.9370 +1559 54658 0.9320 +1559 54659 0.8980 +1559 55244 0.4920 +1559 55270 0.4790 +1559 55435 0.6410 +1559 56603 0.9380 +1559 57834 0.4880 +1559 64600 0.6580 +1559 64805 0.5060 +1559 64816 0.5270 +1559 66002 0.5160 +1559 79001 0.9800 +1559 79799 0.8800 +1559 80777 0.6220 +1559 81579 0.6500 +1559 84647 0.6760 +1559 113612 0.9220 +1559 114799 0.4070 +1559 119391 0.9120 +1559 123745 0.6500 +1559 126410 0.4380 +1559 132949 0.5140 +1559 135152 0.6680 +1559 146802 0.4350 +1559 151056 0.6530 +1559 157570 0.4070 +1559 199974 0.4280 +1559 221357 0.9200 +1559 255189 0.6500 +1559 260293 0.4450 +1559 283748 0.6520 +1559 284541 0.9450 +1559 340665 0.9250 +1559 348158 0.4300 +1559 391013 0.6550 +1559 442038 0.5010 +1559 574537 0.8760 +1559 653689 0.9200 +1559 100137049 0.6500 +1559 100861540 0.9620 +1562 1571 0.4670 +1562 1576 0.8570 +1562 1577 0.9540 +1562 1579 0.9500 +1562 1580 0.5120 +1562 1581 0.6180 +1562 1588 0.4060 +1562 1592 0.9420 +1562 1594 0.4150 +1562 1595 0.4660 +1562 1791 0.4980 +1562 2052 0.9460 +1562 2053 0.7280 +1562 2677 0.4380 +1562 2938 0.8550 +1562 2939 0.7380 +1562 2940 0.7200 +1562 2941 0.7020 +1562 2944 0.7920 +1562 2946 0.6760 +1562 2947 0.7400 +1562 2948 0.6800 +1562 2949 0.6760 +1562 2950 0.7350 +1562 3363 0.7560 +1562 3416 0.5060 +1562 4051 0.5490 +1562 4257 0.6610 +1562 4258 0.6700 +1562 4259 0.6680 +1562 4907 0.4930 +1562 5243 0.4120 +1562 5950 0.7160 +1562 7355 0.4530 +1562 7363 0.8090 +1562 7364 0.8310 +1562 7365 0.7970 +1562 7366 0.8210 +1562 7367 0.8230 +1562 8529 0.5590 +1562 8854 0.9140 +1562 8856 0.6430 +1562 9360 0.8160 +1562 9446 0.6780 +1562 9585 0.7560 +1562 9970 0.5620 +1562 10720 0.7940 +1562 11283 0.4680 +1562 23426 0.4960 +1562 27306 0.7650 +1562 54490 0.7980 +1562 54575 0.8410 +1562 54576 0.8480 +1562 54577 0.8240 +1562 54578 0.8590 +1562 54579 0.8070 +1562 54600 0.8410 +1562 54657 0.8470 +1562 54658 0.8470 +1562 54659 0.8340 +1562 54916 0.4500 +1562 55435 0.9110 +1562 56603 0.9370 +1562 57404 0.4730 +1562 57834 0.5060 +1562 64805 0.4490 +1562 64816 0.5240 +1562 66002 0.5400 +1562 79001 0.5070 +1562 79799 0.8100 +1562 80777 0.4550 +1562 119391 0.6840 +1562 126410 0.4380 +1562 132949 0.5170 +1562 199974 0.4010 +1562 221357 0.7230 +1562 255022 0.4290 +1562 260293 0.4470 +1562 284541 0.9420 +1562 340665 0.9240 +1562 574537 0.7960 +1562 653689 0.6830 +1562 100861540 0.9600 +1565 1576 0.9610 +1565 1577 0.6120 +1565 1579 0.6010 +1565 1580 0.5090 +1565 1581 0.6150 +1565 1584 0.4030 +1565 1588 0.5250 +1565 1592 0.4150 +1565 1594 0.4560 +1565 1636 0.4620 +1565 1645 0.9120 +1565 1806 0.6720 +1565 1813 0.5780 +1565 1814 0.5030 +1565 2052 0.5050 +1565 2099 0.7120 +1565 2230 0.4990 +1565 2326 0.9350 +1565 2327 0.9270 +1565 2328 0.9650 +1565 2329 0.9280 +1565 2330 0.9250 +1565 2521 0.4080 +1565 2539 0.5920 +1565 2580 0.4710 +1565 2629 0.5590 +1565 2875 0.5470 +1565 2944 0.6880 +1565 2948 0.4360 +1565 2950 0.7340 +1565 3106 0.5850 +1565 3156 0.4370 +1565 3172 0.4070 +1565 3290 0.9270 +1565 3350 0.5800 +1565 3351 0.4020 +1565 3356 0.6620 +1565 3358 0.5710 +1565 3757 0.6700 +1565 4051 0.4610 +1565 4128 0.9630 +1565 4129 0.9610 +1565 4363 0.4260 +1565 4524 0.4820 +1565 4988 0.6600 +1565 5004 0.4280 +1565 5005 0.4480 +1565 5071 0.4190 +1565 5243 0.7790 +1565 5264 0.4710 +1565 5444 0.4310 +1565 5447 0.6540 +1565 5617 0.4230 +1565 6261 0.4830 +1565 6530 0.4920 +1565 6531 0.4620 +1565 6532 0.6230 +1565 6554 0.4140 +1565 6555 0.4470 +1565 6579 0.5190 +1565 6580 0.6500 +1565 6582 0.5500 +1565 6620 0.4450 +1565 6622 0.4610 +1565 6716 0.4210 +1565 6799 0.4890 +1565 6822 0.4460 +1565 6942 0.4050 +1565 7108 0.4690 +1565 7153 0.4100 +1565 7155 0.4070 +1565 7172 0.9170 +1565 7355 0.7230 +1565 7363 0.9630 +1565 7364 0.9790 +1565 7365 0.9630 +1565 7366 0.9700 +1565 7367 0.9630 +1565 7716 0.5730 +1565 8529 0.5390 +1565 8647 0.4800 +1565 8714 0.4090 +1565 8856 0.6660 +1565 9177 0.4030 +1565 9360 0.9620 +1565 9376 0.4880 +1565 9420 0.5800 +1565 9429 0.6380 +1565 9446 0.4450 +1565 9563 0.5900 +1565 9627 0.4330 +1565 9970 0.5950 +1565 10105 0.4410 +1565 10257 0.4240 +1565 10280 0.4710 +1565 10599 0.8620 +1565 10720 0.9610 +1565 10841 0.5360 +1565 10858 0.4050 +1565 11283 0.4180 +1565 11309 0.4720 +1565 27233 0.4420 +1565 27284 0.4180 +1565 27306 0.4630 +1565 28234 0.6230 +1565 51091 0.4660 +1565 51302 0.4640 +1565 54490 0.9610 +1565 54575 0.9790 +1565 54576 0.9790 +1565 54577 0.9790 +1565 54578 0.9840 +1565 54579 0.9610 +1565 54600 0.9690 +1565 54657 0.9810 +1565 54658 0.9790 +1565 54659 0.9730 +1565 55244 0.4610 +1565 55270 0.5100 +1565 55435 0.5070 +1565 57834 0.4510 +1565 64805 0.5630 +1565 64816 0.5060 +1565 66002 0.4670 +1565 79001 0.7790 +1565 79728 0.4110 +1565 79799 0.9610 +1565 80777 0.5870 +1565 83544 0.4330 +1565 114799 0.4880 +1565 119391 0.4330 +1565 120892 0.5000 +1565 132949 0.5030 +1565 135152 0.8130 +1565 146802 0.4320 +1565 157570 0.4880 +1565 220074 0.5060 +1565 260293 0.4700 +1565 284541 0.4630 +1565 374875 0.9170 +1565 442038 0.4270 +1565 574537 0.9610 +1565 100861540 0.4530 +1571 1573 0.9440 +1571 1576 0.9910 +1571 1577 0.8300 +1571 1579 0.9640 +1571 1580 0.5260 +1571 1581 0.9480 +1571 1583 0.4400 +1571 1586 0.9310 +1571 1588 0.5900 +1571 1592 0.4330 +1571 1593 0.4140 +1571 1594 0.4430 +1571 1645 0.9230 +1571 1728 0.5830 +1571 2052 0.9710 +1571 2053 0.4710 +1571 2176 0.4820 +1571 2189 0.9650 +1571 2194 0.5450 +1571 2230 0.4820 +1571 2328 0.5280 +1571 2538 0.6070 +1571 2539 0.4570 +1571 2597 0.5030 +1571 2729 0.4530 +1571 2752 0.4320 +1571 2875 0.7400 +1571 2877 0.5930 +1571 2878 0.5910 +1571 2880 0.5930 +1571 2882 0.5920 +1571 2936 0.4500 +1571 2938 0.9450 +1571 2939 0.9370 +1571 2940 0.9320 +1571 2941 0.9410 +1571 2944 0.9760 +1571 2946 0.9380 +1571 2947 0.9440 +1571 2948 0.9220 +1571 2949 0.9210 +1571 2950 0.9790 +1571 2954 0.4150 +1571 3162 0.5990 +1571 3172 0.4760 +1571 3283 0.9360 +1571 3284 0.9310 +1571 3290 0.9310 +1571 3308 0.5730 +1571 3553 0.5160 +1571 3569 0.5610 +1571 3586 0.5110 +1571 3630 0.5230 +1571 3725 0.4670 +1571 3952 0.6300 +1571 3990 0.5180 +1571 4051 0.9460 +1571 4129 0.4060 +1571 4257 0.9240 +1571 4258 0.9070 +1571 4259 0.9420 +1571 4353 0.4150 +1571 4519 0.5260 +1571 4524 0.4150 +1571 4588 0.5040 +1571 4595 0.4610 +1571 4780 0.5300 +1571 5053 0.5570 +1571 5105 0.4320 +1571 5243 0.6480 +1571 5265 0.5270 +1571 5319 0.7900 +1571 5320 0.8160 +1571 5321 0.7050 +1571 5322 0.6550 +1571 5447 0.9310 +1571 5465 0.6310 +1571 5468 0.4640 +1571 5595 0.4130 +1571 5740 0.4750 +1571 5742 0.9210 +1571 5743 0.9430 +1571 6256 0.4470 +1571 6319 0.4010 +1571 6554 0.7190 +1571 6555 0.5420 +1571 6573 0.4110 +1571 6579 0.6860 +1571 6580 0.4760 +1571 6648 0.4320 +1571 6716 0.4010 +1571 6720 0.5890 +1571 6820 0.9190 +1571 6822 0.4820 +1571 6927 0.6270 +1571 7099 0.4650 +1571 7124 0.7290 +1571 7157 0.4510 +1571 7172 0.4330 +1571 7351 0.5380 +1571 7355 0.6250 +1571 7363 0.9550 +1571 7364 0.9620 +1571 7365 0.9510 +1571 7366 0.9570 +1571 7367 0.9510 +1571 7498 0.5330 +1571 7515 0.4460 +1571 7837 0.4490 +1571 8000 0.6520 +1571 8310 0.4700 +1571 8398 0.7900 +1571 8399 0.8010 +1571 8431 0.5980 +1571 8529 0.9470 +1571 8605 0.6500 +1571 8644 0.9100 +1571 8647 0.5180 +1571 8681 0.6500 +1571 8714 0.4220 +1571 8856 0.6960 +1571 9360 0.9390 +1571 9370 0.5570 +1571 9376 0.4160 +1571 9429 0.4510 +1571 9446 0.9260 +1571 9563 0.4900 +1571 9817 0.4530 +1571 9970 0.6310 +1571 9971 0.6810 +1571 10105 0.4160 +1571 10452 0.4300 +1571 10469 0.4560 +1571 10599 0.5490 +1571 10720 0.9500 +1571 10858 0.4530 +1571 10864 0.4150 +1571 10998 0.4190 +1571 11145 0.8080 +1571 11283 0.4360 +1571 26279 0.7870 +1571 27233 0.4730 +1571 27284 0.4760 +1571 27306 0.9610 +1571 28234 0.4260 +1571 30814 0.8000 +1571 50487 0.7840 +1571 50507 0.4070 +1571 51115 0.4780 +1571 51167 0.4040 +1571 54205 0.4910 +1571 54490 0.9510 +1571 54575 0.9690 +1571 54576 0.9680 +1571 54577 0.9690 +1571 54578 0.9810 +1571 54579 0.9560 +1571 54600 0.9620 +1571 54657 0.9700 +1571 54658 0.9700 +1571 54659 0.9560 +1571 56603 0.4220 +1571 57834 0.4450 +1571 64600 0.7910 +1571 64805 0.5560 +1571 64816 0.6570 +1571 66002 0.4770 +1571 79799 0.9510 +1571 80339 0.4450 +1571 80777 0.8980 +1571 81579 0.8060 +1571 84647 0.7940 +1571 84706 0.5050 +1571 93426 0.4960 +1571 113612 0.9280 +1571 114799 0.4560 +1571 119391 0.9210 +1571 123745 0.6600 +1571 132949 0.5350 +1571 133482 0.4870 +1571 135152 0.8880 +1571 137902 0.4480 +1571 151056 0.6710 +1571 157570 0.4560 +1571 199974 0.4080 +1571 221357 0.9230 +1571 255189 0.6500 +1571 257202 0.5920 +1571 260293 0.4900 +1571 283748 0.6500 +1571 284541 0.9470 +1571 345275 0.4260 +1571 374875 0.9170 +1571 391013 0.8070 +1571 442038 0.4600 +1571 493869 0.5910 +1571 574537 0.9510 +1571 653689 0.9320 +1571 100137049 0.6500 +1571 100861540 0.6180 +1572 1576 0.4560 +1572 1577 0.4620 +1572 1579 0.5630 +1572 1580 0.5650 +1572 1581 0.5010 +1572 1582 0.4720 +1572 1583 0.4370 +1572 1592 0.4110 +1572 2052 0.9280 +1572 2938 0.7120 +1572 2939 0.6650 +1572 2940 0.7190 +1572 2941 0.6640 +1572 2944 0.7340 +1572 2946 0.6910 +1572 2947 0.6800 +1572 2948 0.6880 +1572 2949 0.6920 +1572 2950 0.7610 +1572 4051 0.5310 +1572 4257 0.7170 +1572 4258 0.6870 +1572 4259 0.6550 +1572 5184 0.4800 +1572 7356 0.4780 +1572 8529 0.4380 +1572 9091 0.5800 +1572 9360 0.8030 +1572 9420 0.4770 +1572 9446 0.6700 +1572 10753 0.4730 +1572 10858 0.4010 +1572 10961 0.7630 +1572 11283 0.4620 +1572 27306 0.7340 +1572 51091 0.4440 +1572 51302 0.5500 +1572 55743 0.4020 +1572 56603 0.5580 +1572 57404 0.4680 +1572 57834 0.6150 +1572 64420 0.4910 +1572 64816 0.4730 +1572 66002 0.4870 +1572 79575 0.4660 +1572 119391 0.6930 +1572 126410 0.5670 +1572 132949 0.5030 +1572 199974 0.4530 +1572 221357 0.7290 +1572 260293 0.4560 +1572 284541 0.5700 +1572 285440 0.4120 +1572 653689 0.7250 +1573 1576 0.9510 +1573 1577 0.5260 +1573 1579 0.9540 +1573 1580 0.5310 +1573 1581 0.5720 +1573 1583 0.4100 +1573 1585 0.4050 +1573 1588 0.4440 +1573 1593 0.4340 +1573 1594 0.4440 +1573 2053 0.9810 +1573 2230 0.4200 +1573 2877 0.9110 +1573 2878 0.9110 +1573 2880 0.9070 +1573 2882 0.9070 +1573 4051 0.9700 +1573 4701 0.4450 +1573 5243 0.4610 +1573 5319 0.6550 +1573 5320 0.7230 +1573 5321 0.6960 +1573 5322 0.6890 +1573 5447 0.4650 +1573 5468 0.5890 +1573 5742 0.9120 +1573 5743 0.9200 +1573 6579 0.5170 +1573 7364 0.4420 +1573 8398 0.6670 +1573 8399 0.6770 +1573 8529 0.9510 +1573 8605 0.6720 +1573 8681 0.6940 +1573 8856 0.4330 +1573 9360 0.9270 +1573 9429 0.4710 +1573 10858 0.4020 +1573 11145 0.7000 +1573 11283 0.9450 +1573 26279 0.6660 +1573 30814 0.6750 +1573 50487 0.6840 +1573 54578 0.4480 +1573 54629 0.4540 +1573 54657 0.4240 +1573 55967 0.4360 +1573 56603 0.4160 +1573 57834 0.4930 +1573 59341 0.7910 +1573 64600 0.7030 +1573 64816 0.4690 +1573 66002 0.5200 +1573 81579 0.6510 +1573 84647 0.7090 +1573 113612 0.9310 +1573 123745 0.6510 +1573 126410 0.4370 +1573 132949 0.5030 +1573 151056 0.6590 +1573 199974 0.4380 +1573 255189 0.6540 +1573 257202 0.9070 +1573 260293 0.5290 +1573 283748 0.6520 +1573 284541 0.9480 +1573 391013 0.6940 +1573 493869 0.9060 +1573 100137049 0.6760 +1576 1577 0.9500 +1576 1579 0.9580 +1576 1580 0.4640 +1576 1581 0.9470 +1576 1582 0.5130 +1576 1583 0.4170 +1576 1584 0.4220 +1576 1586 0.9480 +1576 1588 0.9500 +1576 1589 0.4540 +1576 1591 0.4640 +1576 1592 0.9440 +1576 1593 0.4500 +1576 1594 0.4570 +1576 1636 0.5350 +1576 1645 0.9260 +1576 1717 0.4640 +1576 1728 0.4160 +1576 1803 0.4600 +1576 1806 0.5190 +1576 1813 0.5930 +1576 1956 0.4770 +1576 2052 0.9560 +1576 2053 0.4310 +1576 2056 0.5600 +1576 2064 0.4140 +1576 2099 0.6810 +1576 2147 0.5720 +1576 2159 0.4460 +1576 2168 0.4580 +1576 2194 0.4680 +1576 2222 0.4520 +1576 2230 0.4540 +1576 2326 0.9370 +1576 2327 0.9240 +1576 2328 0.9720 +1576 2329 0.9250 +1576 2330 0.9290 +1576 2538 0.4870 +1576 2539 0.5550 +1576 2597 0.5160 +1576 2624 0.4570 +1576 2638 0.4230 +1576 2875 0.6880 +1576 2908 0.4740 +1576 2938 0.9560 +1576 2939 0.9420 +1576 2940 0.9290 +1576 2941 0.9260 +1576 2944 0.9580 +1576 2946 0.9480 +1576 2947 0.9230 +1576 2948 0.9180 +1576 2949 0.9170 +1576 2950 0.9760 +1576 3082 0.4020 +1576 3156 0.6870 +1576 3170 0.4130 +1576 3172 0.6290 +1576 3283 0.9470 +1576 3284 0.9450 +1576 3290 0.9410 +1576 3292 0.9390 +1576 3293 0.4140 +1576 3294 0.9320 +1576 3350 0.4470 +1576 3356 0.5060 +1576 3553 0.4320 +1576 3569 0.5070 +1576 3630 0.5540 +1576 3757 0.7300 +1576 3875 0.4240 +1576 3880 0.4230 +1576 4051 0.4820 +1576 4128 0.9530 +1576 4129 0.9530 +1576 4257 0.9150 +1576 4258 0.9130 +1576 4259 0.9120 +1576 4363 0.5620 +1576 4524 0.4100 +1576 4552 0.8670 +1576 4843 0.4160 +1576 4988 0.5280 +1576 5004 0.7450 +1576 5005 0.7530 +1576 5009 0.4690 +1576 5125 0.4040 +1576 5241 0.6270 +1576 5243 0.8860 +1576 5244 0.4740 +1576 5265 0.4750 +1576 5319 0.6680 +1576 5320 0.6710 +1576 5321 0.6820 +1576 5322 0.6610 +1576 5444 0.4870 +1576 5447 0.9920 +1576 5465 0.5490 +1576 5468 0.4590 +1576 5566 0.4340 +1576 5740 0.4280 +1576 5743 0.4060 +1576 5972 0.4680 +1576 6256 0.4620 +1576 6462 0.4320 +1576 6514 0.4100 +1576 6532 0.6170 +1576 6554 0.6510 +1576 6555 0.4670 +1576 6564 0.4700 +1576 6579 0.6780 +1576 6580 0.6440 +1576 6582 0.5580 +1576 6713 0.4120 +1576 6716 0.6890 +1576 6718 0.4180 +1576 6783 0.9470 +1576 6799 0.4220 +1576 6820 0.9230 +1576 6822 0.7370 +1576 6898 0.5370 +1576 6927 0.4640 +1576 7113 0.5340 +1576 7124 0.4340 +1576 7155 0.4620 +1576 7157 0.4370 +1576 7172 0.6290 +1576 7276 0.4500 +1576 7355 0.8140 +1576 7363 0.9780 +1576 7364 0.9980 +1576 7365 0.9740 +1576 7366 0.9800 +1576 7367 0.9750 +1576 7498 0.4530 +1576 7716 0.5020 +1576 7739 0.5680 +1576 7923 0.9210 +1576 8398 0.6530 +1576 8399 0.6530 +1576 8419 0.4130 +1576 8431 0.5310 +1576 8529 0.7170 +1576 8605 0.6540 +1576 8630 0.9130 +1576 8644 0.9350 +1576 8647 0.6560 +1576 8654 0.4460 +1576 8681 0.6500 +1576 8714 0.5790 +1576 8854 0.9230 +1576 8856 0.9620 +1576 9023 0.4180 +1576 9213 0.4450 +1576 9356 0.4320 +1576 9360 0.9730 +1576 9376 0.6280 +1576 9429 0.7930 +1576 9446 0.9140 +1576 9563 0.5820 +1576 9611 0.4730 +1576 9970 0.9190 +1576 9971 0.6800 +1576 10057 0.4150 +1576 10105 0.6720 +1576 10257 0.5420 +1576 10273 0.7870 +1576 10403 0.6940 +1576 10499 0.4230 +1576 10599 0.9320 +1576 10720 0.9740 +1576 10857 0.6920 +1576 10858 0.4660 +1576 10864 0.5250 +1576 10998 0.5090 +1576 11145 0.6590 +1576 11283 0.4130 +1576 11309 0.6250 +1576 23600 0.5210 +1576 26279 0.6500 +1576 27158 0.9030 +1576 27232 0.4220 +1576 27233 0.5890 +1576 27284 0.5970 +1576 27306 0.9590 +1576 28234 0.7490 +1576 29785 0.9450 +1576 29803 0.4440 +1576 30814 0.6500 +1576 50487 0.6900 +1576 51081 0.5090 +1576 51144 0.9250 +1576 51478 0.9210 +1576 54205 0.4110 +1576 54490 0.9740 +1576 54575 0.9920 +1576 54576 0.9920 +1576 54577 0.9920 +1576 54578 0.9940 +1576 54579 0.9750 +1576 54600 0.9810 +1576 54657 0.9920 +1576 54658 0.9940 +1576 54659 0.9790 +1576 54905 0.4510 +1576 55244 0.5870 +1576 55435 0.5760 +1576 56603 0.9390 +1576 57834 0.4440 +1576 59272 0.4440 +1576 64600 0.6500 +1576 64805 0.5970 +1576 66002 0.4950 +1576 79001 0.6080 +1576 79799 0.9750 +1576 80270 0.4350 +1576 80777 0.9230 +1576 81579 0.6500 +1576 84647 0.7190 +1576 84706 0.4940 +1576 113612 0.4490 +1576 114799 0.4080 +1576 119391 0.9100 +1576 120227 0.5560 +1576 123745 0.6610 +1576 132949 0.5300 +1576 133482 0.4120 +1576 135152 0.8340 +1576 146802 0.4950 +1576 151056 0.6610 +1576 157570 0.4090 +1576 200931 0.4290 +1576 220074 0.4640 +1576 221357 0.9230 +1576 255189 0.6640 +1576 260293 0.4370 +1576 283748 0.6610 +1576 284541 0.9420 +1576 285440 0.4120 +1576 340665 0.9330 +1576 374875 0.9220 +1576 391013 0.6500 +1576 442038 0.5620 +1576 574537 0.9740 +1576 653689 0.9180 +1576 100137049 0.6610 +1577 1579 0.9520 +1577 1580 0.4860 +1577 1581 0.9360 +1577 1586 0.9410 +1577 1588 0.9440 +1577 1589 0.4170 +1577 1592 0.9400 +1577 1806 0.6360 +1577 2052 0.9460 +1577 2328 0.5790 +1577 2784 0.6530 +1577 2868 0.4430 +1577 2875 0.4040 +1577 2938 0.8000 +1577 2939 0.7380 +1577 2940 0.7050 +1577 2941 0.7030 +1577 2944 0.8520 +1577 2946 0.7400 +1577 2947 0.7560 +1577 2948 0.6990 +1577 2949 0.7150 +1577 2950 0.8420 +1577 3106 0.4350 +1577 3156 0.4600 +1577 3283 0.9370 +1577 3284 0.9370 +1577 3292 0.9280 +1577 3294 0.9370 +1577 3429 0.4420 +1577 3779 0.4930 +1577 4051 0.4550 +1577 4257 0.6500 +1577 4258 0.6900 +1577 4259 0.6680 +1577 4363 0.5110 +1577 4524 0.4700 +1577 4548 0.4060 +1577 4552 0.6070 +1577 5004 0.4410 +1577 5005 0.4570 +1577 5243 0.9200 +1577 5319 0.4270 +1577 5447 0.9530 +1577 5740 0.5850 +1577 6579 0.4620 +1577 6580 0.5560 +1577 6783 0.9340 +1577 6820 0.9320 +1577 6822 0.4240 +1577 7172 0.7570 +1577 7355 0.6290 +1577 7363 0.9550 +1577 7364 0.9740 +1577 7365 0.9520 +1577 7366 0.9650 +1577 7367 0.9540 +1577 7739 0.4930 +1577 7923 0.9230 +1577 8529 0.5260 +1577 8630 0.9200 +1577 8644 0.9290 +1577 8648 0.4350 +1577 8714 0.4200 +1577 8854 0.9220 +1577 8856 0.8200 +1577 9360 0.9260 +1577 9429 0.6810 +1577 9446 0.6920 +1577 9970 0.6560 +1577 10599 0.7990 +1577 10720 0.9490 +1577 11132 0.4070 +1577 11283 0.4230 +1577 11309 0.4950 +1577 27158 0.8320 +1577 27284 0.5350 +1577 27306 0.8010 +1577 28234 0.6310 +1577 29785 0.9430 +1577 51144 0.9270 +1577 51320 0.4290 +1577 51478 0.9220 +1577 51752 0.4520 +1577 54490 0.9520 +1577 54575 0.9740 +1577 54576 0.9760 +1577 54577 0.9740 +1577 54578 0.9750 +1577 54579 0.9490 +1577 54600 0.9660 +1577 54657 0.9780 +1577 54658 0.9740 +1577 54659 0.9650 +1577 54905 0.4710 +1577 55270 0.5060 +1577 55722 0.4480 +1577 56603 0.9350 +1577 57834 0.4400 +1577 64805 0.7260 +1577 66002 0.4880 +1577 79001 0.7200 +1577 79799 0.9500 +1577 80777 0.6920 +1577 112724 0.5990 +1577 113612 0.4640 +1577 119391 0.7160 +1577 120227 0.4460 +1577 132949 0.5090 +1577 133688 0.4910 +1577 135152 0.5440 +1577 167127 0.4330 +1577 199974 0.4080 +1577 221357 0.7470 +1577 221785 0.4550 +1577 260293 0.4160 +1577 283652 0.4160 +1577 284541 0.9420 +1577 340665 0.9310 +1577 574537 0.9510 +1577 653689 0.7330 +1577 100861540 0.9140 +1579 1581 0.4050 +1579 1582 0.5310 +1579 1585 0.4350 +1579 1586 0.5540 +1579 1588 0.4070 +1579 1589 0.4250 +1579 1592 0.9310 +1579 1595 0.4160 +1579 1636 0.5330 +1579 1889 0.4220 +1579 1962 0.4180 +1579 2053 0.5960 +1579 2168 0.5910 +1579 2194 0.4870 +1579 2730 0.4490 +1579 2784 0.5840 +1579 3077 0.4080 +1579 3158 0.4590 +1579 3779 0.5070 +1579 4047 0.4950 +1579 4051 0.9170 +1579 4548 0.4460 +1579 5319 0.8240 +1579 5320 0.6750 +1579 5321 0.6740 +1579 5322 0.6900 +1579 5447 0.9340 +1579 5465 0.7490 +1579 5469 0.5200 +1579 5742 0.9150 +1579 5743 0.9180 +1579 5972 0.5070 +1579 6256 0.5000 +1579 6307 0.4150 +1579 6339 0.8180 +1579 6604 0.4590 +1579 6713 0.5300 +1579 6907 0.4480 +1579 7363 0.7640 +1579 7364 0.7690 +1579 7365 0.7300 +1579 7366 0.7580 +1579 7367 0.7530 +1579 7716 0.4300 +1579 8309 0.4480 +1579 8310 0.4310 +1579 8398 0.7090 +1579 8399 0.6780 +1579 8529 0.9190 +1579 8605 0.6770 +1579 8648 0.4140 +1579 8681 0.6500 +1579 8801 0.4100 +1579 8854 0.9190 +1579 8856 0.4030 +1579 9023 0.4150 +1579 9360 0.6610 +1579 9420 0.5390 +1579 10498 0.4550 +1579 10499 0.4040 +1579 10720 0.7170 +1579 10826 0.4680 +1579 10864 0.4270 +1579 10936 0.4710 +1579 11145 0.6640 +1579 11283 0.9160 +1579 23054 0.4050 +1579 26279 0.6930 +1579 27158 0.7830 +1579 29785 0.9420 +1579 29937 0.4930 +1579 30814 0.6730 +1579 50487 0.7290 +1579 51179 0.4730 +1579 51320 0.5480 +1579 51700 0.4080 +1579 51752 0.5510 +1579 54490 0.7230 +1579 54575 0.7580 +1579 54576 0.7680 +1579 54577 0.7580 +1579 54578 0.7660 +1579 54579 0.7190 +1579 54600 0.7650 +1579 54657 0.7830 +1579 54658 0.7570 +1579 54659 0.7410 +1579 54905 0.6170 +1579 56603 0.9260 +1579 64577 0.4570 +1579 64600 0.6720 +1579 64816 0.4790 +1579 79718 0.4080 +1579 79799 0.7320 +1579 80205 0.4150 +1579 80777 0.5080 +1579 81579 0.6790 +1579 84647 0.6850 +1579 85441 0.4210 +1579 96764 0.4030 +1579 113612 0.9460 +1579 123745 0.6610 +1579 123876 0.4120 +1579 132949 0.5480 +1579 135152 0.7260 +1579 151056 0.6530 +1579 255189 0.6760 +1579 283748 0.6690 +1579 284541 0.9610 +1579 340665 0.9390 +1579 348158 0.4900 +1579 391013 0.6870 +1579 574537 0.7210 +1579 100137049 0.6610 +1579 100861540 0.9390 +1580 1588 0.4080 +1580 1589 0.4310 +1580 2194 0.4190 +1580 4047 0.4950 +1580 5447 0.5020 +1580 5743 0.4570 +1580 6307 0.4150 +1580 6713 0.4950 +1580 6819 0.5300 +1580 7148 0.4110 +1580 9023 0.4660 +1580 9360 0.5120 +1580 9420 0.5840 +1580 10826 0.4750 +1580 29785 0.5370 +1580 54905 0.5490 +1580 57404 0.4980 +1580 64816 0.4450 +1580 80777 0.4780 +1580 113612 0.4810 +1580 117289 0.4010 +1580 120227 0.4130 +1580 132949 0.5260 +1580 283987 0.4930 +1580 399687 0.4150 +1581 1586 0.9670 +1581 1588 0.6810 +1581 1589 0.6110 +1581 1592 0.6440 +1581 1593 0.9960 +1581 1595 0.5940 +1581 1628 0.4030 +1581 1717 0.9420 +1581 1718 0.9070 +1581 1810 0.4050 +1581 2168 0.4050 +1581 2172 0.8350 +1581 2180 0.4230 +1581 2194 0.6810 +1581 2222 0.7570 +1581 2224 0.4340 +1581 2248 0.4550 +1581 2249 0.4860 +1581 2250 0.4550 +1581 2251 0.4550 +1581 2252 0.4540 +1581 2253 0.4540 +1581 2254 0.4550 +1581 2255 0.4550 +1581 2264 0.7790 +1581 2328 0.4510 +1581 2494 0.9460 +1581 2516 0.5030 +1581 2538 0.5470 +1581 2597 0.4720 +1581 2641 0.5250 +1581 2873 0.4120 +1581 2875 0.6030 +1581 2998 0.4100 +1581 3156 0.9250 +1581 3157 0.7470 +1581 3158 0.6590 +1581 3159 0.5050 +1581 3172 0.7480 +1581 3248 0.4740 +1581 3283 0.9590 +1581 3284 0.9720 +1581 3290 0.4080 +1581 3422 0.4180 +1581 3479 0.4890 +1581 3553 0.4180 +1581 3569 0.4250 +1581 3630 0.5900 +1581 3638 0.4390 +1581 3930 0.5320 +1581 3931 0.6750 +1581 3952 0.4180 +1581 3988 0.8740 +1581 3990 0.6370 +1581 4023 0.5070 +1581 4047 0.8330 +1581 4547 0.5530 +1581 4597 0.4400 +1581 4864 0.6370 +1581 5053 0.4060 +1581 5105 0.4700 +1581 5106 0.4140 +1581 5205 0.4820 +1581 5243 0.4390 +1581 5244 0.7610 +1581 5320 0.4130 +1581 5360 0.6870 +1581 5406 0.4120 +1581 5465 0.8400 +1581 5467 0.4090 +1581 5468 0.6160 +1581 5469 0.5300 +1581 5629 0.4050 +1581 5914 0.4490 +1581 5915 0.4790 +1581 5916 0.5320 +1581 6256 0.8080 +1581 6257 0.4640 +1581 6258 0.5610 +1581 6307 0.7770 +1581 6309 0.6460 +1581 6319 0.6160 +1581 6554 0.9090 +1581 6555 0.8760 +1581 6579 0.7520 +1581 6604 0.4580 +1581 6646 0.8740 +1581 6713 0.8270 +1581 6718 0.6430 +1581 6720 0.8260 +1581 6721 0.8380 +1581 6820 0.9540 +1581 6822 0.6660 +1581 6898 0.4780 +1581 6907 0.4670 +1581 6927 0.5170 +1581 6999 0.4370 +1581 7108 0.6350 +1581 7124 0.4010 +1581 7274 0.5360 +1581 7350 0.4390 +1581 7363 0.4940 +1581 7376 0.7140 +1581 8309 0.5150 +1581 8310 0.4670 +1581 8431 0.9740 +1581 8435 0.8970 +1581 8644 0.9120 +1581 8647 0.9340 +1581 8648 0.5270 +1581 8694 0.4320 +1581 8714 0.7780 +1581 8817 0.4550 +1581 8822 0.4550 +1581 8823 0.4550 +1581 8856 0.8490 +1581 9023 0.9800 +1581 9201 0.4170 +1581 9213 0.8840 +1581 9360 0.5870 +1581 9572 0.4740 +1581 9619 0.8270 +1581 9965 0.8710 +1581 9970 0.8160 +1581 9971 0.9860 +1581 10062 0.8790 +1581 10257 0.7310 +1581 10280 0.6510 +1581 10498 0.4750 +1581 10499 0.4860 +1581 10599 0.6750 +1581 10826 0.6920 +1581 10857 0.5780 +1581 10858 0.9790 +1581 10864 0.4400 +1581 10891 0.6670 +1581 10998 0.5650 +1581 11161 0.6520 +1581 22937 0.4320 +1581 23054 0.4750 +1581 26166 0.4760 +1581 26281 0.4550 +1581 26291 0.5230 +1581 27006 0.4550 +1581 27329 0.4440 +1581 27430 0.5210 +1581 28231 0.4570 +1581 28234 0.5310 +1581 29116 0.7160 +1581 29881 0.9400 +1581 50814 0.6070 +1581 51085 0.4780 +1581 51141 0.4740 +1581 51302 0.4700 +1581 51478 0.7070 +1581 53919 0.4800 +1581 54575 0.5360 +1581 54576 0.5180 +1581 54577 0.5150 +1581 54578 0.5430 +1581 54657 0.5360 +1581 54658 0.5440 +1581 54905 0.5230 +1581 57404 0.5870 +1581 57412 0.4760 +1581 57818 0.4390 +1581 64240 0.9100 +1581 64241 0.8840 +1581 64581 0.4300 +1581 79718 0.4080 +1581 80205 0.4150 +1581 80270 0.9780 +1581 84649 0.4300 +1581 84706 0.4060 +1581 85441 0.4050 +1581 92579 0.4400 +1581 93517 0.5360 +1581 96764 0.4110 +1581 116519 0.4940 +1581 120227 0.6210 +1581 123264 0.8410 +1581 132949 0.5930 +1581 151306 0.7750 +1581 152831 0.8530 +1581 200931 0.9030 +1581 255738 0.5990 +1581 284541 0.5480 +1581 286151 0.4760 +1581 340273 0.5510 +1581 340665 0.5430 +1581 340895 0.4100 +1581 346673 0.4280 +1581 376497 0.4430 +1581 100861540 0.9340 +1582 1583 0.4560 +1582 1591 0.4720 +1582 1593 0.9510 +1582 1717 0.6330 +1582 1718 0.4370 +1582 2172 0.6500 +1582 2194 0.5450 +1582 2222 0.6990 +1582 2264 0.6390 +1582 2328 0.4020 +1582 2494 0.8900 +1582 2516 0.4380 +1582 2538 0.5110 +1582 2873 0.5490 +1582 2874 0.5070 +1582 2875 0.4300 +1582 3156 0.6900 +1582 3157 0.6560 +1582 3158 0.5800 +1582 3172 0.7640 +1582 3283 0.5700 +1582 3284 0.5360 +1582 3422 0.4530 +1582 3930 0.5190 +1582 4047 0.8060 +1582 4597 0.4240 +1582 5244 0.6570 +1582 5465 0.5700 +1582 5914 0.4970 +1582 6256 0.5320 +1582 6307 0.7520 +1582 6309 0.6340 +1582 6319 0.4830 +1582 6554 0.8250 +1582 6555 0.7340 +1582 6579 0.5790 +1582 6713 0.8010 +1582 6718 0.9610 +1582 6720 0.5230 +1582 6721 0.5230 +1582 6822 0.6710 +1582 6907 0.4310 +1582 7108 0.5990 +1582 7363 0.4800 +1582 8309 0.5880 +1582 8431 0.9580 +1582 8647 0.8260 +1582 8714 0.6000 +1582 8856 0.6860 +1582 9023 0.7900 +1582 9213 0.4720 +1582 9360 0.5210 +1582 9619 0.6190 +1582 9965 0.6090 +1582 9970 0.6170 +1582 9971 0.8610 +1582 10062 0.6620 +1582 10257 0.5050 +1582 10280 0.6450 +1582 10599 0.5330 +1582 10826 0.7040 +1582 10858 0.5530 +1582 10864 0.4770 +1582 10998 0.6510 +1582 11161 0.6510 +1582 26166 0.4760 +1582 26291 0.5390 +1582 27430 0.5010 +1582 28231 0.4290 +1582 28234 0.4130 +1582 29881 0.4180 +1582 50814 0.5730 +1582 51478 0.6870 +1582 53919 0.4160 +1582 54575 0.4400 +1582 54576 0.4650 +1582 54577 0.4430 +1582 54578 0.4670 +1582 54657 0.4500 +1582 54658 0.4730 +1582 54905 0.5240 +1582 55075 0.4170 +1582 56603 0.4500 +1582 57412 0.4800 +1582 57834 0.4270 +1582 64240 0.7190 +1582 64241 0.6770 +1582 64816 0.4140 +1582 64902 0.4540 +1582 80270 0.9790 +1582 90665 0.4360 +1582 93517 0.5340 +1582 123264 0.7320 +1582 123876 0.4270 +1582 132949 0.5520 +1582 138639 0.4020 +1582 140290 0.4050 +1582 151306 0.6920 +1582 152831 0.8510 +1582 200931 0.7270 +1582 260293 0.4320 +1582 286151 0.4760 +1582 346673 0.6390 +1582 493860 0.4040 +1583 1586 0.9650 +1583 1588 0.6010 +1583 1589 0.9630 +1583 1595 0.5940 +1583 1646 0.4480 +1583 1717 0.9040 +1583 1718 0.8770 +1583 1761 0.5600 +1583 2099 0.5830 +1583 2100 0.6210 +1583 2194 0.4450 +1583 2230 0.9990 +1583 2232 0.9970 +1583 2488 0.5170 +1583 2492 0.8220 +1583 2494 0.6930 +1583 2516 0.9130 +1583 2597 0.4500 +1583 2626 0.4800 +1583 2661 0.5970 +1583 2796 0.5830 +1583 2798 0.4300 +1583 2908 0.4690 +1583 3034 0.5140 +1583 3156 0.4240 +1583 3157 0.4070 +1583 3283 0.9970 +1583 3284 0.9940 +1583 3290 0.6550 +1583 3291 0.8540 +1583 3292 0.8350 +1583 3293 0.8440 +1583 3294 0.5720 +1583 3295 0.4540 +1583 3479 0.4780 +1583 3623 0.4450 +1583 3624 0.4480 +1583 3625 0.4550 +1583 3630 0.4910 +1583 3640 0.7740 +1583 3814 0.4550 +1583 3973 0.8650 +1583 3988 0.8330 +1583 4047 0.4260 +1583 4158 0.8950 +1583 4214 0.4420 +1583 4629 0.4090 +1583 5052 0.4170 +1583 5175 0.4150 +1583 5241 0.5080 +1583 5443 0.8350 +1583 5566 0.4600 +1583 5567 0.4590 +1583 5568 0.4640 +1583 5595 0.4300 +1583 5617 0.4590 +1583 5740 0.4380 +1583 5972 0.5730 +1583 6307 0.4050 +1583 6342 0.6410 +1583 6462 0.4960 +1583 6646 0.8530 +1583 6662 0.4800 +1583 6713 0.4440 +1583 6715 0.7850 +1583 6716 0.6180 +1583 6736 0.4130 +1583 6770 0.9790 +1583 6783 0.4450 +1583 6820 0.9310 +1583 6822 0.8140 +1583 7141 0.4180 +1583 7342 0.6190 +1583 7416 0.5610 +1583 7490 0.4220 +1583 8431 0.4480 +1583 8435 0.8430 +1583 8630 0.5070 +1583 8644 0.5920 +1583 9210 0.5730 +1583 9360 0.5880 +1583 9420 0.9480 +1583 9563 0.4920 +1583 10170 0.5030 +1583 10468 0.4020 +1583 10857 0.6160 +1583 10858 0.5300 +1583 10948 0.5490 +1583 11132 0.4560 +1583 29841 0.6090 +1583 29842 0.7570 +1583 50511 0.4990 +1583 50814 0.4060 +1583 50846 0.6490 +1583 51144 0.4030 +1583 51167 0.4130 +1583 51478 0.5630 +1583 51706 0.4250 +1583 54361 0.6320 +1583 54514 0.4530 +1583 54905 0.4010 +1583 56603 0.5540 +1583 57404 0.5180 +1583 57706 0.4470 +1583 79154 0.7650 +1583 79644 0.4420 +1583 80270 0.5440 +1583 80777 0.7190 +1583 84467 0.5520 +1583 112812 0.7090 +1583 120227 0.4710 +1583 126206 0.5400 +1583 132949 0.5270 +1583 285440 0.5200 +1583 340665 0.6030 +1584 1585 0.9120 +1584 1586 0.9640 +1584 1588 0.9490 +1584 1589 0.9730 +1584 1594 0.4500 +1584 1645 0.9180 +1584 1717 0.4150 +1584 1761 0.5330 +1584 2230 0.8590 +1584 2232 0.7390 +1584 2492 0.5270 +1584 2494 0.6670 +1584 2516 0.8050 +1584 2908 0.4860 +1584 3045 0.5480 +1584 3283 0.9840 +1584 3284 0.9920 +1584 3290 0.9670 +1584 3291 0.9910 +1584 3292 0.6120 +1584 3293 0.9700 +1584 3294 0.9380 +1584 3640 0.4960 +1584 3762 0.7280 +1584 3973 0.5960 +1584 4047 0.4130 +1584 4158 0.9000 +1584 4306 0.6330 +1584 4782 0.4360 +1584 5443 0.8630 +1584 5447 0.4300 +1584 5573 0.4360 +1584 5740 0.4170 +1584 5972 0.8000 +1584 6340 0.4040 +1584 6559 0.5170 +1584 6715 0.9450 +1584 6716 0.9510 +1584 6718 0.9460 +1584 6770 0.8680 +1584 6822 0.5520 +1584 7923 0.9200 +1584 8431 0.4400 +1584 8630 0.9300 +1584 8644 0.9470 +1584 8859 0.4240 +1584 8912 0.4800 +1584 9360 0.5870 +1584 9420 0.4150 +1584 54205 0.4470 +1584 54905 0.4930 +1584 56603 0.4050 +1584 79154 0.5340 +1584 79644 0.9300 +1584 79798 0.5100 +1584 80270 0.5310 +1584 80777 0.4430 +1584 84869 0.4140 +1584 132949 0.5140 +1584 374875 0.9250 +1585 1586 0.9630 +1585 1588 0.9470 +1585 1589 0.9750 +1585 1636 0.8670 +1585 1645 0.9110 +1585 1761 0.5590 +1585 2230 0.8620 +1585 2232 0.6560 +1585 2488 0.5240 +1585 2492 0.4380 +1585 2516 0.8420 +1585 2784 0.6200 +1585 2868 0.5530 +1585 2908 0.4340 +1585 3045 0.4980 +1585 3283 0.9790 +1585 3284 0.9840 +1585 3290 0.9590 +1585 3291 0.9890 +1585 3292 0.5880 +1585 3293 0.9610 +1585 3294 0.9270 +1585 3762 0.8180 +1585 3972 0.4020 +1585 3973 0.5400 +1585 4158 0.8410 +1585 4306 0.7950 +1585 4878 0.4620 +1585 4929 0.5870 +1585 5293 0.5470 +1585 5443 0.8260 +1585 5573 0.4140 +1585 5587 0.5080 +1585 5740 0.4470 +1585 5972 0.9140 +1585 6338 0.4470 +1585 6340 0.4880 +1585 6559 0.5910 +1585 6715 0.9360 +1585 6716 0.9380 +1585 6718 0.9240 +1585 6770 0.9350 +1585 6822 0.4490 +1585 7923 0.9190 +1585 8536 0.6370 +1585 8630 0.9260 +1585 8644 0.9360 +1585 8912 0.5810 +1585 9360 0.5220 +1585 51305 0.4410 +1585 54905 0.4690 +1585 55809 0.4540 +1585 56993 0.6720 +1585 57118 0.6040 +1585 57172 0.4520 +1585 59272 0.5820 +1585 79154 0.4820 +1585 79644 0.9240 +1585 79798 0.5740 +1585 80270 0.4650 +1585 80777 0.4170 +1585 84869 0.4070 +1585 132949 0.5070 +1585 374875 0.9300 +1586 1588 0.9710 +1586 1589 0.9510 +1586 1591 0.6380 +1586 1592 0.4470 +1586 1593 0.4110 +1586 1594 0.4320 +1586 1595 0.4490 +1586 1645 0.9550 +1586 1646 0.6680 +1586 1717 0.4920 +1586 1761 0.6260 +1586 2099 0.6610 +1586 2100 0.6460 +1586 2194 0.4610 +1586 2230 0.7100 +1586 2232 0.5040 +1586 2488 0.5550 +1586 2492 0.8250 +1586 2494 0.6340 +1586 2516 0.8990 +1586 2597 0.4580 +1586 2626 0.4800 +1586 2661 0.5920 +1586 2796 0.6450 +1586 2798 0.4790 +1586 2950 0.6410 +1586 3156 0.4290 +1586 3164 0.4460 +1586 3265 0.4090 +1586 3283 0.9950 +1586 3284 0.9940 +1586 3290 0.7570 +1586 3291 0.8670 +1586 3292 0.8520 +1586 3293 0.9910 +1586 3294 0.9720 +1586 3295 0.4960 +1586 3479 0.4980 +1586 3623 0.4010 +1586 3630 0.5440 +1586 3640 0.8310 +1586 3762 0.4930 +1586 3973 0.8560 +1586 4051 0.4050 +1586 4158 0.8580 +1586 4306 0.4640 +1586 4521 0.4560 +1586 4524 0.4090 +1586 4782 0.4330 +1586 5010 0.5460 +1586 5241 0.6050 +1586 5443 0.8280 +1586 5447 0.9120 +1586 5566 0.4080 +1586 5567 0.4070 +1586 5568 0.4290 +1586 5595 0.4080 +1586 5972 0.4670 +1586 6217 0.4750 +1586 6296 0.4190 +1586 6462 0.6160 +1586 6662 0.4720 +1586 6713 0.4680 +1586 6715 0.9920 +1586 6716 0.9860 +1586 6718 0.9360 +1586 6736 0.4070 +1586 6770 0.9500 +1586 6783 0.4760 +1586 6820 0.9310 +1586 6822 0.7780 +1586 7082 0.4420 +1586 7113 0.4700 +1586 7366 0.4160 +1586 7367 0.4200 +1586 7923 0.9350 +1586 8431 0.5470 +1586 8529 0.4160 +1586 8630 0.9700 +1586 8644 0.9790 +1586 8648 0.4290 +1586 8856 0.4200 +1586 9210 0.5550 +1586 9360 0.7670 +1586 9420 0.9330 +1586 9563 0.4830 +1586 9923 0.6220 +1586 10085 0.4050 +1586 10170 0.4660 +1586 11132 0.4220 +1586 22978 0.4800 +1586 50846 0.6480 +1586 51094 0.4340 +1586 51144 0.4290 +1586 51478 0.5540 +1586 54361 0.6030 +1586 54805 0.5120 +1586 55719 0.5820 +1586 56603 0.6870 +1586 57412 0.4590 +1586 57706 0.4950 +1586 64816 0.4690 +1586 79154 0.8650 +1586 79644 0.9580 +1586 79728 0.4570 +1586 80270 0.4490 +1586 80777 0.9800 +1586 84467 0.5530 +1586 84896 0.4280 +1586 84952 0.4240 +1586 126206 0.4880 +1586 132949 0.5220 +1586 219621 0.4580 +1586 344018 0.4950 +1586 730051 0.4020 +1586 100861540 0.9280 +1588 1589 0.5170 +1588 1591 0.6170 +1588 1592 0.4200 +1588 1593 0.4120 +1588 1594 0.4210 +1588 1595 0.4230 +1588 1717 0.4500 +1588 1761 0.7190 +1588 1789 0.4570 +1588 1855 0.5410 +1588 1950 0.5280 +1588 1956 0.6260 +1588 2052 0.4770 +1588 2064 0.8090 +1588 2099 0.9270 +1588 2100 0.9250 +1588 2101 0.5600 +1588 2170 0.4170 +1588 2194 0.4900 +1588 2230 0.5830 +1588 2353 0.5210 +1588 2475 0.5070 +1588 2488 0.7050 +1588 2492 0.8310 +1588 2494 0.5540 +1588 2516 0.8350 +1588 2597 0.5180 +1588 2626 0.4940 +1588 2661 0.6950 +1588 2796 0.7790 +1588 2798 0.4820 +1588 2852 0.7120 +1588 2912 0.7320 +1588 3156 0.4720 +1588 3248 0.5200 +1588 3283 0.9880 +1588 3284 0.9790 +1588 3290 0.5310 +1588 3291 0.6550 +1588 3292 0.9840 +1588 3293 0.9720 +1588 3294 0.9660 +1588 3295 0.4420 +1588 3479 0.6450 +1588 3480 0.5560 +1588 3553 0.4340 +1588 3569 0.5070 +1588 3623 0.5080 +1588 3624 0.4590 +1588 3625 0.5030 +1588 3630 0.6580 +1588 3640 0.5100 +1588 3814 0.5070 +1588 3952 0.6210 +1588 3973 0.8100 +1588 4047 0.5000 +1588 4214 0.4010 +1588 4254 0.5380 +1588 4609 0.4350 +1588 4835 0.6400 +1588 5020 0.4760 +1588 5021 0.4080 +1588 5241 0.8830 +1588 5290 0.5170 +1588 5443 0.4530 +1588 5447 0.6720 +1588 5468 0.5180 +1588 5566 0.4450 +1588 5567 0.4440 +1588 5568 0.4490 +1588 5595 0.5250 +1588 5617 0.6280 +1588 5728 0.5090 +1588 5741 0.4160 +1588 5743 0.5970 +1588 6143 0.4030 +1588 6389 0.4520 +1588 6462 0.7690 +1588 6473 0.4240 +1588 6646 0.4100 +1588 6660 0.4160 +1588 6662 0.5590 +1588 6713 0.5670 +1588 6714 0.4780 +1588 6715 0.9720 +1588 6716 0.9610 +1588 6718 0.9220 +1588 6736 0.4910 +1588 6770 0.8780 +1588 6774 0.4350 +1588 6783 0.9590 +1588 6822 0.6370 +1588 6875 0.4910 +1588 7124 0.4790 +1588 7157 0.5740 +1588 7363 0.9290 +1588 7364 0.9350 +1588 7365 0.9250 +1588 7366 0.9360 +1588 7367 0.9370 +1588 7490 0.4570 +1588 7837 0.4510 +1588 7852 0.5040 +1588 7923 0.9320 +1588 8202 0.4820 +1588 8503 0.4080 +1588 8600 0.4390 +1588 8630 0.9360 +1588 8644 0.9560 +1588 9210 0.6940 +1588 9360 0.7570 +1588 9370 0.5090 +1588 9420 0.6740 +1588 9563 0.5430 +1588 9687 0.5720 +1588 10468 0.6370 +1588 10720 0.9250 +1588 10987 0.4280 +1588 11132 0.5300 +1588 29766 0.7380 +1588 29767 0.4340 +1588 29785 0.4880 +1588 51144 0.9560 +1588 51171 0.4500 +1588 51478 0.9610 +1588 54361 0.5990 +1588 54490 0.9250 +1588 54575 0.9390 +1588 54576 0.9410 +1588 54577 0.9450 +1588 54578 0.9390 +1588 54579 0.9260 +1588 54600 0.9260 +1588 54657 0.9410 +1588 54658 0.9400 +1588 54659 0.9260 +1588 54822 0.4770 +1588 54905 0.4090 +1588 64816 0.4120 +1588 79154 0.8750 +1588 79644 0.9280 +1588 79728 0.5130 +1588 79799 0.9230 +1588 80270 0.4210 +1588 80777 0.4280 +1588 84467 0.4980 +1588 84869 0.4440 +1588 84952 0.7740 +1588 113612 0.4070 +1588 132949 0.5260 +1588 137902 0.4510 +1588 220074 0.4540 +1588 284654 0.5470 +1588 344018 0.5350 +1588 346673 0.5080 +1588 574537 0.9260 +1588 100861540 0.4250 +1588 116033993 0.4190 +1589 1591 0.4310 +1589 1593 0.4020 +1589 1594 0.4120 +1589 1595 0.4390 +1589 1645 0.9170 +1589 1717 0.4800 +1589 2230 0.6760 +1589 2232 0.4820 +1589 2516 0.7660 +1589 3105 0.5590 +1589 3106 0.5920 +1589 3111 0.5150 +1589 3283 0.9790 +1589 3284 0.9850 +1589 3290 0.9560 +1589 3291 0.9850 +1589 3292 0.6770 +1589 3293 0.6910 +1589 3294 0.4090 +1589 3371 0.5410 +1589 3640 0.5230 +1589 3973 0.5560 +1589 4051 0.4070 +1589 4158 0.8880 +1589 4700 0.5690 +1589 4782 0.4050 +1589 5313 0.4690 +1589 5443 0.8610 +1589 5447 0.8450 +1589 5555 0.4310 +1589 5740 0.4790 +1589 5972 0.5230 +1589 6713 0.4390 +1589 6715 0.9570 +1589 6716 0.9560 +1589 6718 0.9190 +1589 6770 0.8380 +1589 6820 0.9150 +1589 6822 0.5220 +1589 7143 0.4970 +1589 7148 0.9490 +1589 7923 0.5640 +1589 8529 0.4170 +1589 8644 0.4660 +1589 8718 0.5210 +1589 8859 0.8440 +1589 9360 0.7130 +1589 9420 0.9280 +1589 10465 0.4140 +1589 10857 0.6280 +1589 10858 0.5420 +1589 51171 0.4140 +1589 51430 0.4440 +1589 55809 0.4650 +1589 66002 0.4010 +1589 79154 0.5040 +1589 79644 0.9180 +1589 80270 0.4600 +1589 80777 0.5550 +1589 84896 0.4500 +1589 85476 0.4480 +1589 85478 0.4950 +1589 132949 0.5030 +1589 260293 0.4250 +1589 284541 0.4360 +1589 374875 0.9200 +1591 1592 0.6850 +1591 1594 0.9470 +1591 1673 0.4770 +1591 1717 0.8260 +1591 1718 0.5090 +1591 2230 0.7670 +1591 2232 0.5220 +1591 2591 0.4130 +1591 2597 0.4270 +1591 2638 0.8980 +1591 4036 0.5740 +1591 5203 0.4120 +1591 5251 0.4850 +1591 5469 0.4610 +1591 5741 0.8490 +1591 6256 0.5190 +1591 6569 0.7400 +1591 6615 0.4050 +1591 6929 0.4180 +1591 7096 0.6720 +1591 7097 0.6070 +1591 7157 0.5100 +1591 7764 0.5440 +1591 8029 0.5370 +1591 8074 0.7960 +1591 8419 0.5540 +1591 8648 0.5600 +1591 8854 0.4930 +1591 8856 0.4520 +1591 9031 0.5850 +1591 9360 0.5850 +1591 9365 0.6600 +1591 9420 0.4030 +1591 10484 0.5420 +1591 10568 0.4570 +1591 11005 0.4310 +1591 11238 0.8750 +1591 22938 0.6520 +1591 23632 0.8500 +1591 25818 0.4450 +1591 51295 0.6290 +1591 54498 0.4360 +1591 55191 0.7230 +1591 55503 0.6630 +1591 56302 0.5730 +1591 57862 0.4360 +1591 80007 0.4180 +1591 80777 0.4220 +1591 120227 0.9550 +1591 132949 0.5070 +1591 142680 0.7670 +1591 144193 0.6860 +1591 377677 0.8540 +1592 1595 0.4140 +1592 2171 0.4320 +1592 2194 0.4420 +1592 2253 0.4800 +1592 2516 0.4080 +1592 3172 0.4290 +1592 3211 0.5330 +1592 3214 0.4080 +1592 4047 0.4950 +1592 4868 0.5740 +1592 5076 0.5070 +1592 5105 0.4310 +1592 5420 0.4950 +1592 5447 0.4230 +1592 5458 0.4930 +1592 5914 0.7290 +1592 5915 0.7390 +1592 5916 0.7320 +1592 5917 0.8530 +1592 5948 0.8130 +1592 5950 0.5050 +1592 5959 0.5460 +1592 5972 0.4340 +1592 6256 0.4540 +1592 6258 0.4080 +1592 6307 0.4570 +1592 6347 0.4080 +1592 6652 0.4710 +1592 6713 0.5610 +1592 6736 0.4180 +1592 6899 0.4370 +1592 6911 0.4170 +1592 7040 0.4040 +1592 7082 0.4950 +1592 7363 0.7120 +1592 7364 0.7370 +1592 7365 0.7050 +1592 7366 0.7150 +1592 7367 0.7090 +1592 7490 0.5280 +1592 8228 0.9060 +1592 8419 0.7420 +1592 8608 0.9450 +1592 8630 0.9190 +1592 8694 0.9270 +1592 8796 0.7000 +1592 8854 0.9910 +1592 9023 0.4260 +1592 9227 0.9720 +1592 9249 0.9720 +1592 9360 0.5970 +1592 9420 0.6420 +1592 10170 0.9430 +1592 10465 0.4020 +1592 10720 0.7050 +1592 10826 0.4150 +1592 10901 0.9380 +1592 11346 0.6500 +1592 23213 0.6470 +1592 25844 0.6490 +1592 29785 0.9440 +1592 50700 0.9410 +1592 51109 0.9520 +1592 51302 0.5590 +1592 53630 0.5600 +1592 54490 0.7010 +1592 54575 0.7090 +1592 54576 0.7090 +1592 54577 0.7090 +1592 54578 0.7210 +1592 54579 0.7040 +1592 54600 0.7030 +1592 54657 0.7130 +1592 54658 0.7150 +1592 54659 0.7040 +1592 54884 0.9330 +1592 54905 0.4130 +1592 56603 0.9190 +1592 56956 0.5160 +1592 57665 0.4220 +1592 64220 0.7390 +1592 64577 0.4350 +1592 64816 0.4070 +1592 79799 0.7000 +1592 83875 0.5280 +1592 112724 0.4640 +1592 113612 0.4070 +1592 120227 0.4090 +1592 121214 0.6030 +1592 132949 0.5240 +1592 145226 0.9430 +1592 157506 0.9780 +1592 158835 0.9090 +1592 195814 0.9440 +1592 284541 0.9280 +1592 339761 0.9300 +1592 340665 0.9300 +1592 346673 0.7960 +1592 574537 0.6970 +1592 642987 0.4530 +1592 100861540 0.9370 +1593 1717 0.9330 +1593 1718 0.8870 +1593 1880 0.4090 +1593 2053 0.5490 +1593 2099 0.4150 +1593 2172 0.5140 +1593 2194 0.7480 +1593 2222 0.4280 +1593 2230 0.9040 +1593 2232 0.8320 +1593 2264 0.4970 +1593 2305 0.4450 +1593 2494 0.7450 +1593 2597 0.4300 +1593 2638 0.6660 +1593 2875 0.4130 +1593 3030 0.4220 +1593 3156 0.7660 +1593 3157 0.5180 +1593 3172 0.4140 +1593 3283 0.4460 +1593 3284 0.4160 +1593 3290 0.4190 +1593 3295 0.4220 +1593 3299 0.6990 +1593 3630 0.4640 +1593 3988 0.8660 +1593 4047 0.5180 +1593 5091 0.5070 +1593 5244 0.5560 +1593 5321 0.4620 +1593 5465 0.4640 +1593 5468 0.4200 +1593 5730 0.5030 +1593 5740 0.5620 +1593 5741 0.7660 +1593 6256 0.4690 +1593 6307 0.4020 +1593 6309 0.4190 +1593 6554 0.6790 +1593 6555 0.6310 +1593 6579 0.4440 +1593 6646 0.8700 +1593 6667 0.4130 +1593 6713 0.5400 +1593 6718 0.5920 +1593 6720 0.6890 +1593 6721 0.5520 +1593 6770 0.4750 +1593 6822 0.5180 +1593 6927 0.4910 +1593 7108 0.4410 +1593 7203 0.4550 +1593 7376 0.4020 +1593 8074 0.4700 +1593 8309 0.5420 +1593 8431 0.8230 +1593 8435 0.8620 +1593 8600 0.4740 +1593 8647 0.7300 +1593 8714 0.4640 +1593 8856 0.5660 +1593 9023 0.9670 +1593 9213 0.5820 +1593 9360 0.6190 +1593 9420 0.9640 +1593 9619 0.6080 +1593 9923 0.4300 +1593 9965 0.4350 +1593 9970 0.4170 +1593 9971 0.8370 +1593 10062 0.6810 +1593 10223 0.7670 +1593 10599 0.4360 +1593 10693 0.5020 +1593 10858 0.9470 +1593 10998 0.9530 +1593 11343 0.4820 +1593 23498 0.4330 +1593 23584 0.7880 +1593 23600 0.4210 +1593 29881 0.6380 +1593 50814 0.4300 +1593 51302 0.5030 +1593 56949 0.6050 +1593 64240 0.6880 +1593 64241 0.6640 +1593 66002 0.4070 +1593 79575 0.4110 +1593 80270 0.7620 +1593 120227 0.7500 +1593 123264 0.5950 +1593 132949 0.5600 +1593 151306 0.5930 +1593 152831 0.4610 +1593 200931 0.6000 +1593 376497 0.4350 +1594 1673 0.4470 +1594 1717 0.7420 +1594 1786 0.4390 +1594 1789 0.4710 +1594 1958 0.4270 +1594 2012 0.6210 +1594 2033 0.6720 +1594 2194 0.4490 +1594 2230 0.5850 +1594 2232 0.5370 +1594 2353 0.4070 +1594 2591 0.5310 +1594 2597 0.4150 +1594 2638 0.8580 +1594 2908 0.4560 +1594 3172 0.4400 +1594 3183 0.4330 +1594 3291 0.4530 +1594 3458 0.4470 +1594 3553 0.4300 +1594 3569 0.4450 +1594 3586 0.4380 +1594 4036 0.6120 +1594 4088 0.5790 +1594 4193 0.4110 +1594 4234 0.7820 +1594 4609 0.6110 +1594 4790 0.4970 +1594 5167 0.4060 +1594 5251 0.8020 +1594 5467 0.4370 +1594 5468 0.4990 +1594 5469 0.9130 +1594 5501 0.5200 +1594 5594 0.4270 +1594 5595 0.5290 +1594 5741 0.9410 +1594 5955 0.4930 +1594 5972 0.4600 +1594 6256 0.9810 +1594 6258 0.8260 +1594 6569 0.8480 +1594 6575 0.4030 +1594 6611 0.4920 +1594 6647 0.4120 +1594 6714 0.8070 +1594 6772 0.4020 +1594 6929 0.5530 +1594 6996 0.4050 +1594 7040 0.4610 +1594 7096 0.6490 +1594 7097 0.6800 +1594 7124 0.4310 +1594 7157 0.5250 +1594 7704 0.5350 +1594 8029 0.5800 +1594 8074 0.9070 +1594 8202 0.8430 +1594 8554 0.6510 +1594 8600 0.4220 +1594 8648 0.9200 +1594 8854 0.4980 +1594 8856 0.4880 +1594 8878 0.5330 +1594 8930 0.6560 +1594 9031 0.5550 +1594 9282 0.6490 +1594 9360 0.7540 +1594 9365 0.7010 +1594 9439 0.5250 +1594 9611 0.8150 +1594 9612 0.5370 +1594 9862 0.6480 +1594 9968 0.6370 +1594 9969 0.5150 +1594 9970 0.4360 +1594 10001 0.5410 +1594 10025 0.5460 +1594 10105 0.7910 +1594 10499 0.8340 +1594 10568 0.4860 +1594 10945 0.4280 +1594 22938 0.8200 +1594 25895 0.4370 +1594 29079 0.4640 +1594 29785 0.4030 +1594 55191 0.5830 +1594 55503 0.6080 +1594 55806 0.5300 +1594 56302 0.5900 +1594 56949 0.4160 +1594 64816 0.4040 +1594 113612 0.4040 +1594 120227 0.9640 +1594 132949 0.5070 +1594 142680 0.7660 +1595 1717 0.9780 +1595 1718 0.9920 +1595 1723 0.4850 +1595 1727 0.7820 +1595 1938 0.4210 +1595 1959 0.7550 +1595 2181 0.4050 +1595 2194 0.6190 +1595 2222 0.9970 +1595 2224 0.8860 +1595 2230 0.5530 +1595 2263 0.4790 +1595 3156 0.9480 +1595 3157 0.9840 +1595 3158 0.9210 +1595 3265 0.4010 +1595 3283 0.8460 +1595 3284 0.8200 +1595 3320 0.4530 +1595 3326 0.4430 +1595 3422 0.9420 +1595 3638 0.8400 +1595 3930 0.9930 +1595 3949 0.4190 +1595 4047 0.9990 +1595 4363 0.4650 +1595 4519 0.5310 +1595 4597 0.8690 +1595 4598 0.7820 +1595 4706 0.4170 +1595 4800 0.5320 +1595 4801 0.5530 +1595 4802 0.5380 +1595 5447 0.9600 +1595 6307 0.9960 +1595 6309 0.9870 +1595 6319 0.5800 +1595 6646 0.4710 +1595 6667 0.5080 +1595 6713 0.9980 +1595 6720 0.7720 +1595 6721 0.9180 +1595 7108 0.9960 +1595 9023 0.9760 +1595 9360 0.8910 +1595 9453 0.6130 +1595 9607 0.4400 +1595 9619 0.4120 +1595 10280 0.9850 +1595 10465 0.4470 +1595 10654 0.6790 +1595 10682 0.7140 +1595 10826 0.9720 +1595 10857 0.8670 +1595 10858 0.4300 +1595 11161 0.9950 +1595 22937 0.5130 +1595 23395 0.4050 +1595 23623 0.4180 +1595 26166 0.4760 +1595 27346 0.4240 +1595 27430 0.5020 +1595 50814 0.9890 +1595 51109 0.4780 +1595 51141 0.6360 +1595 51144 0.5100 +1595 51167 0.5260 +1595 51478 0.9960 +1595 51520 0.4200 +1595 51700 0.5920 +1595 51706 0.5780 +1595 54205 0.4500 +1595 54905 0.4210 +1595 55902 0.5110 +1595 57412 0.4770 +1595 64240 0.4390 +1595 65985 0.4950 +1595 79071 0.4030 +1595 80270 0.8440 +1595 80777 0.7670 +1595 81033 0.4080 +1595 91445 0.4030 +1595 91734 0.8520 +1595 93517 0.7920 +1595 126410 0.4310 +1595 132949 0.5620 +1595 134429 0.4840 +1595 255738 0.5430 +1595 284541 0.4070 +1595 286151 0.4760 +1595 606495 0.5630 +1600 2534 0.6540 +1600 3748 0.4410 +1600 3949 0.5820 +1600 4035 0.5900 +1600 4036 0.5640 +1600 5048 0.5600 +1600 5290 0.9010 +1600 5291 0.9010 +1600 5293 0.9010 +1600 5295 0.9240 +1600 5296 0.9080 +1600 5521 0.4720 +1600 5582 0.5930 +1600 5649 0.9460 +1600 5981 0.5060 +1600 6314 0.5070 +1600 6453 0.4560 +1600 7436 0.9890 +1600 7804 0.9040 +1600 8440 0.5270 +1600 8503 0.9080 +1600 8651 0.4370 +1600 10528 0.4790 +1600 11129 0.4140 +1600 25814 0.6100 +1600 30011 0.9350 +1600 56910 0.4770 +1600 146227 0.4070 +1600 153090 0.4470 +1600 339453 0.4090 +1600 401474 0.5730 +1601 1759 0.5950 +1601 1785 0.7090 +1601 1839 0.5140 +1601 1855 0.6400 +1601 1856 0.7860 +1601 1857 0.9100 +1601 1948 0.5720 +1601 1950 0.6570 +1601 1956 0.6480 +1601 2017 0.4820 +1601 2060 0.8700 +1601 2069 0.5140 +1601 2335 0.4020 +1601 2533 0.4230 +1601 2534 0.5630 +1601 2549 0.4260 +1601 2626 0.4570 +1601 2627 0.5330 +1601 2697 0.7290 +1601 2885 0.9480 +1601 3267 0.7340 +1601 3268 0.4590 +1601 3394 0.5450 +1601 3482 0.5670 +1601 3575 0.5630 +1601 3690 0.6000 +1601 3693 0.4160 +1601 3725 0.4430 +1601 3949 0.9340 +1601 3987 0.4950 +1601 4035 0.4610 +1601 4036 0.9930 +1601 4040 0.6160 +1601 4057 0.5130 +1601 4074 0.5100 +1601 4087 0.7080 +1601 4088 0.6280 +1601 4591 0.4590 +1601 4624 0.6640 +1601 4627 0.6340 +1601 4646 0.9860 +1601 4690 0.4180 +1601 5093 0.4470 +1601 5156 0.4210 +1601 5831 0.4630 +1601 5867 0.5930 +1601 6233 0.5040 +1601 6453 0.7940 +1601 6455 0.5680 +1601 6456 0.6960 +1601 6457 0.5400 +1601 6572 0.5020 +1601 6688 0.5390 +1601 6714 0.7130 +1601 6844 0.7220 +1601 6845 0.5560 +1601 6857 0.7100 +1601 6869 0.4990 +1601 7018 0.5220 +1601 7037 0.8100 +1601 7039 0.5340 +1601 7046 0.8920 +1601 7048 0.7860 +1601 7094 0.5560 +1601 7311 0.4990 +1601 7314 0.5040 +1601 7316 0.5040 +1601 7456 0.4210 +1601 7474 0.6130 +1601 7804 0.5460 +1601 8027 0.5720 +1601 8029 0.8140 +1601 8218 0.7390 +1601 8301 0.8680 +1601 8312 0.8860 +1601 8322 0.5740 +1601 8673 0.5100 +1601 8674 0.5290 +1601 8737 0.4290 +1601 8867 0.4990 +1601 8976 0.6320 +1601 9026 0.8340 +1601 9146 0.6560 +1601 9185 0.5640 +1601 9341 0.5500 +1601 9462 0.4270 +1601 9856 0.5030 +1601 9892 0.8250 +1601 10043 0.5710 +1601 10097 0.4690 +1601 10241 0.4990 +1601 10254 0.5930 +1601 10287 0.4490 +1601 10447 0.4460 +1601 10618 0.6270 +1601 10750 0.5470 +1601 10755 0.6120 +1601 11037 0.5010 +1601 11129 0.7030 +1601 22848 0.6410 +1601 22853 0.6450 +1601 22905 0.8410 +1601 23149 0.8550 +1601 23208 0.5330 +1601 25977 0.6510 +1601 26119 0.8620 +1601 29924 0.7320 +1601 29978 0.5140 +1601 29988 0.5210 +1601 30011 0.7850 +1601 50618 0.7250 +1601 55040 0.6780 +1601 55707 0.6230 +1601 57542 0.4220 +1601 58513 0.7580 +1601 64321 0.4490 +1601 81693 0.7580 +1601 83595 0.4340 +1601 83660 0.5340 +1601 84174 0.4580 +1601 84251 0.7500 +1601 85021 0.7560 +1601 85439 0.7460 +1601 90019 0.5260 +1601 115548 0.9680 +1601 127833 0.5260 +1601 140459 0.4460 +1601 143425 0.5070 +1601 146691 0.5280 +1601 153090 0.9920 +1601 255324 0.4990 +1601 284427 0.6280 +1602 2070 0.6180 +1602 2099 0.5610 +1602 2138 0.9420 +1602 2139 0.7980 +1602 2140 0.7060 +1602 2308 0.4030 +1602 2668 0.4140 +1602 3043 0.4510 +1602 3065 0.6190 +1602 3725 0.7870 +1602 3960 0.4020 +1602 4088 0.5180 +1602 4089 0.9270 +1602 4617 0.7460 +1602 4654 0.5740 +1602 4656 0.6100 +1602 4990 0.8840 +1602 5073 0.4180 +1602 5076 0.5900 +1602 5077 0.7880 +1602 5080 0.6860 +1602 5104 0.4260 +1602 5914 0.4330 +1602 6495 0.9390 +1602 6496 0.5140 +1602 6657 0.4580 +1602 6659 0.6270 +1602 7157 0.6510 +1602 7329 0.4130 +1602 9586 0.4230 +1602 9604 0.4700 +1602 9611 0.6400 +1602 10056 0.4020 +1602 10482 0.4820 +1602 10736 0.6860 +1602 25942 0.4150 +1602 26086 0.5470 +1602 51768 0.4030 +1602 51804 0.7240 +1602 55577 0.5940 +1602 56956 0.4080 +1602 117154 0.8470 +1602 147912 0.4100 +1602 167410 0.4010 +1603 1650 0.9990 +1603 1798 0.5730 +1603 3309 0.4260 +1603 3703 0.9990 +1603 3782 0.5020 +1603 4170 0.8080 +1603 4217 0.7550 +1603 4245 0.4020 +1603 4738 0.5350 +1603 5279 0.4540 +1603 5447 0.4850 +1603 5694 0.4890 +1603 5714 0.5030 +1603 6169 0.4170 +1603 6184 0.9990 +1603 6185 0.9990 +1603 6230 0.5170 +1603 6297 0.4150 +1603 6660 0.4220 +1603 6726 0.4590 +1603 6727 0.4360 +1603 6745 0.8830 +1603 6746 0.9350 +1603 6747 0.8980 +1603 6748 0.9210 +1603 7009 0.5840 +1603 7072 0.5760 +1603 7112 0.4380 +1603 7841 0.9410 +1603 7991 0.9980 +1603 7994 0.4220 +1603 8813 0.5920 +1603 9451 0.6130 +1603 9616 0.4310 +1603 9761 0.9600 +1603 9789 0.6500 +1603 9887 0.4600 +1603 10286 0.6460 +1603 10945 0.4780 +1603 10952 0.9850 +1603 11014 0.4630 +1603 11015 0.4220 +1603 11040 0.4900 +1603 11231 0.5300 +1603 22818 0.5210 +1603 23478 0.4400 +1603 23480 0.8960 +1603 26515 0.4220 +1603 26520 0.4360 +1603 26534 0.4720 +1603 28972 0.7950 +1603 29880 0.5730 +1603 29927 0.9860 +1603 29929 0.4430 +1603 51027 0.4510 +1603 51060 0.4170 +1603 51234 0.4150 +1603 51398 0.6840 +1603 51399 0.4520 +1603 54344 0.6220 +1603 54460 0.7800 +1603 55176 0.8880 +1603 55500 0.4980 +1603 55505 0.4330 +1603 55839 0.4040 +1603 55967 0.4150 +1603 57171 0.9000 +1603 57448 0.5330 +1603 57713 0.4150 +1603 58477 0.4870 +1603 58485 0.4740 +1603 58505 0.9930 +1603 59286 0.4480 +1603 60559 0.5830 +1603 63874 0.4360 +1603 64105 0.4480 +1603 79033 0.4050 +1603 79053 0.4110 +1603 79087 0.5240 +1603 79172 0.4390 +1603 79188 0.5120 +1603 79682 0.4240 +1603 83443 0.4040 +1603 83460 0.4070 +1603 83930 0.4380 +1603 84061 0.9990 +1603 84920 0.9010 +1603 114569 0.4060 +1603 144245 0.9180 +1603 200185 0.9830 +1603 201595 0.9990 +1603 441381 0.4790 +1603 100128731 0.9990 +1604 1636 0.4720 +1604 1950 0.6650 +1604 1956 0.5500 +1604 2015 0.6340 +1604 2086 0.4060 +1604 2152 0.4580 +1604 2153 0.4760 +1604 2202 0.5290 +1604 2205 0.4660 +1604 2209 0.5920 +1604 2212 0.5150 +1604 2213 0.4780 +1604 2219 0.4760 +1604 2220 0.4770 +1604 2266 0.4590 +1604 2348 0.5350 +1604 2993 0.6320 +1604 2994 0.5420 +1604 2995 0.5370 +1604 3075 0.6200 +1604 3080 0.6080 +1604 3383 0.9160 +1604 3426 0.6980 +1604 3458 0.4650 +1604 3479 0.4450 +1604 3553 0.4630 +1604 3569 0.4670 +1604 3586 0.4020 +1604 3630 0.6570 +1604 3684 0.5950 +1604 3685 0.4840 +1604 3688 0.5310 +1604 3689 0.5080 +1604 3732 0.4030 +1604 3918 0.4110 +1604 4153 0.6050 +1604 4179 0.8340 +1604 4680 0.5400 +1604 4846 0.4170 +1604 4905 0.4990 +1604 5054 0.4880 +1604 5175 0.4390 +1604 5199 0.7080 +1604 5225 0.4040 +1604 5277 0.9300 +1604 5290 0.4370 +1604 5329 0.5760 +1604 5551 0.4930 +1604 5648 0.5540 +1604 5788 0.4460 +1604 5817 0.5350 +1604 5937 0.4320 +1604 5939 0.5760 +1604 6344 0.4340 +1604 6402 0.5390 +1604 6404 0.5210 +1604 6521 0.4120 +1604 6563 0.4420 +1604 6811 0.5030 +1604 7035 0.4530 +1604 7037 0.4240 +1604 7056 0.5960 +1604 7070 0.6410 +1604 7087 0.4380 +1604 7097 0.5460 +1604 7099 0.6420 +1604 7124 0.4740 +1604 7448 0.4840 +1604 7450 0.6100 +1604 7852 0.5080 +1604 8482 0.4990 +1604 8547 0.4510 +1604 8655 0.5190 +1604 8774 0.5040 +1604 8775 0.4990 +1604 9166 0.4200 +1604 9289 0.5120 +1604 9527 0.5030 +1604 9570 0.4990 +1604 10282 0.4180 +1604 10544 0.4450 +1604 10652 0.4990 +1604 10673 0.4030 +1604 10747 0.5530 +1604 10877 0.6590 +1604 10878 0.6210 +1604 10959 0.4050 +1604 10972 0.4390 +1604 11014 0.4050 +1604 11015 0.4680 +1604 11326 0.4760 +1604 22918 0.4040 +1604 23643 0.4640 +1604 27202 0.4800 +1604 30816 0.4180 +1604 30817 0.9980 +1604 51143 0.5010 +1604 51272 0.5130 +1604 51604 0.4510 +1604 55748 0.4540 +1604 63908 0.4990 +1604 80055 0.8170 +1604 80781 0.4250 +1604 83999 0.4270 +1604 84658 0.8210 +1604 90273 0.4610 +1604 114625 0.4220 +1604 146722 0.4150 +1604 340351 0.6920 +1604 405754 0.4050 +1606 1608 0.4030 +1606 1609 0.4810 +1606 2819 0.6240 +1606 2820 0.8220 +1606 3990 0.6890 +1606 4023 0.9010 +1606 4082 0.4040 +1606 5213 0.7310 +1606 5214 0.4770 +1606 5330 0.6830 +1606 5331 0.6960 +1606 5332 0.6830 +1606 5333 0.7020 +1606 5335 0.7930 +1606 5336 0.7300 +1606 5337 0.7460 +1606 5338 0.8050 +1606 5341 0.5230 +1606 5406 0.7070 +1606 5407 0.6500 +1606 5747 0.4160 +1606 5770 0.4320 +1606 5962 0.4010 +1606 6714 0.6830 +1606 7409 0.4450 +1606 7430 0.4250 +1606 8443 0.8460 +1606 8513 0.6860 +1606 8527 0.5810 +1606 8694 0.7530 +1606 8760 0.6990 +1606 8877 0.7130 +1606 9388 0.6920 +1606 10125 0.8710 +1606 10390 0.6940 +1606 10554 0.7290 +1606 10555 0.7580 +1606 23171 0.6090 +1606 23236 0.7120 +1606 23646 0.7260 +1606 25802 0.4230 +1606 25865 0.4180 +1606 26499 0.5230 +1606 51196 0.7280 +1606 55326 0.6890 +1606 56848 0.6010 +1606 56894 0.6800 +1606 56895 0.7130 +1606 56994 0.7130 +1606 57104 0.6910 +1606 59067 0.4080 +1606 64781 0.7790 +1606 80168 0.6760 +1606 80223 0.4280 +1606 80256 0.5150 +1606 80339 0.6870 +1606 84649 0.6960 +1606 84812 0.7110 +1606 85465 0.6810 +1606 89869 0.7000 +1606 113026 0.7370 +1606 116255 0.6980 +1606 119548 0.6530 +1606 122618 0.6720 +1606 129642 0.7930 +1606 154141 0.6770 +1606 160851 0.4940 +1606 253558 0.6900 +1606 346606 0.6540 +1607 2115 0.4200 +1607 2645 0.6300 +1607 2646 0.7430 +1607 2696 0.4810 +1607 2819 0.6090 +1607 2820 0.8160 +1607 3087 0.4040 +1607 3630 0.5380 +1607 3784 0.4410 +1607 3990 0.6870 +1607 4023 0.9000 +1607 4544 0.8840 +1607 5330 0.6910 +1607 5331 0.7300 +1607 5332 0.7300 +1607 5333 0.6740 +1607 5335 0.7080 +1607 5336 0.8040 +1607 5337 0.6770 +1607 5338 0.7320 +1607 5406 0.6570 +1607 5407 0.6500 +1607 5629 0.5150 +1607 6934 0.5160 +1607 8443 0.8450 +1607 8513 0.6550 +1607 8647 0.4540 +1607 8694 0.6920 +1607 8760 0.7310 +1607 8872 0.4770 +1607 9388 0.6680 +1607 10390 0.6840 +1607 10554 0.7240 +1607 10555 0.7270 +1607 10644 0.4140 +1607 23171 0.6200 +1607 23236 0.7330 +1607 23646 0.6810 +1607 51196 0.7520 +1607 54901 0.5460 +1607 55326 0.6950 +1607 56894 0.6720 +1607 56895 0.7180 +1607 56994 0.7070 +1607 57104 0.6690 +1607 57118 0.4590 +1607 57818 0.7570 +1607 60685 0.4070 +1607 80168 0.7020 +1607 80339 0.6630 +1607 84327 0.5230 +1607 84649 0.6760 +1607 84812 0.6740 +1607 85465 0.6810 +1607 89869 0.6880 +1607 113026 0.6740 +1607 116255 0.6740 +1607 116985 0.5070 +1607 119548 0.6530 +1607 122618 0.6720 +1607 129642 0.7490 +1607 136259 0.4460 +1607 145741 0.5070 +1607 154141 0.6770 +1607 160851 0.4850 +1607 169026 0.6050 +1607 169792 0.5810 +1607 221895 0.4400 +1607 253558 0.6720 +1607 346606 0.6540 +1607 388125 0.6690 +1607 392636 0.7320 +1608 2119 0.4550 +1608 2819 0.6090 +1608 2820 0.8230 +1608 3990 0.6660 +1608 4023 0.9000 +1608 5330 0.7110 +1608 5331 0.6930 +1608 5332 0.7300 +1608 5333 0.6740 +1608 5335 0.7230 +1608 5336 0.6910 +1608 5337 0.6940 +1608 5338 0.7530 +1608 5406 0.6670 +1608 5407 0.6500 +1608 5921 0.4370 +1608 8443 0.8440 +1608 8513 0.6830 +1608 8527 0.5460 +1608 8694 0.7120 +1608 8760 0.7080 +1608 8872 0.4200 +1608 9388 0.7080 +1608 10390 0.6640 +1608 10554 0.6950 +1608 10555 0.7040 +1608 23017 0.4230 +1608 23171 0.6090 +1608 23236 0.7200 +1608 23646 0.7000 +1608 23788 0.4320 +1608 51196 0.8090 +1608 54901 0.4210 +1608 55326 0.7010 +1608 55327 0.4020 +1608 56894 0.7010 +1608 56895 0.7090 +1608 56994 0.6980 +1608 57104 0.6720 +1608 79047 0.4320 +1608 80168 0.6920 +1608 80339 0.6500 +1608 84649 0.6910 +1608 84812 0.7030 +1608 85465 0.6970 +1608 89866 0.4320 +1608 89869 0.6980 +1608 113026 0.7100 +1608 116255 0.6800 +1608 119548 0.6530 +1608 122618 0.6720 +1608 129642 0.7250 +1608 132789 0.4850 +1608 139189 0.5060 +1608 154141 0.7290 +1608 253558 0.6990 +1608 257194 0.4280 +1608 346606 0.6540 +1609 1981 0.4190 +1609 2580 0.7380 +1609 2629 0.5900 +1609 2819 0.6420 +1609 2820 0.8150 +1609 3425 0.5130 +1609 3990 0.6550 +1609 4023 0.9000 +1609 5190 0.5440 +1609 5330 0.7430 +1609 5331 0.7360 +1609 5332 0.7190 +1609 5333 0.7200 +1609 5335 0.6910 +1609 5336 0.6900 +1609 5337 0.7660 +1609 5338 0.8250 +1609 5341 0.6340 +1609 5406 0.7130 +1609 5407 0.6540 +1609 5900 0.4880 +1609 6014 0.5110 +1609 8398 0.4960 +1609 8443 0.8280 +1609 8513 0.6590 +1609 8525 0.4200 +1609 8527 0.4020 +1609 8694 0.7600 +1609 8760 0.7040 +1609 8986 0.4490 +1609 9026 0.4100 +1609 9388 0.6730 +1609 9600 0.4610 +1609 10125 0.6040 +1609 10390 0.6640 +1609 10497 0.4580 +1609 10554 0.7180 +1609 10555 0.7610 +1609 10815 0.4240 +1609 10861 0.4350 +1609 10938 0.6320 +1609 23171 0.6460 +1609 23208 0.6030 +1609 23236 0.7570 +1609 23400 0.4080 +1609 23646 0.7070 +1609 25793 0.4090 +1609 26499 0.6370 +1609 27347 0.6280 +1609 30844 0.6180 +1609 51142 0.4370 +1609 51196 0.7940 +1609 55326 0.7000 +1609 55737 0.4190 +1609 56848 0.4170 +1609 56894 0.7230 +1609 56895 0.7060 +1609 56922 0.6350 +1609 56994 0.7010 +1609 57104 0.6880 +1609 57567 0.4180 +1609 57799 0.4820 +1609 64781 0.4230 +1609 80168 0.6900 +1609 80339 0.6730 +1609 80781 0.4010 +1609 84286 0.7310 +1609 84649 0.6970 +1609 84660 0.6010 +1609 84812 0.7260 +1609 85007 0.4330 +1609 85465 0.6720 +1609 89869 0.7130 +1609 90990 0.4460 +1609 91683 0.4810 +1609 113026 0.7390 +1609 116255 0.7170 +1609 119548 0.6520 +1609 120892 0.4610 +1609 122618 0.6930 +1609 129642 0.7970 +1609 130013 0.4920 +1609 139189 0.4630 +1609 154141 0.7570 +1609 160851 0.5160 +1609 253558 0.7360 +1609 346606 0.6640 +1610 1738 0.5010 +1610 1757 0.9660 +1610 1812 0.4880 +1610 1813 0.4390 +1610 1814 0.5220 +1610 1815 0.4570 +1610 2066 0.4400 +1610 2561 0.5790 +1610 2618 0.4120 +1610 2628 0.9080 +1610 2731 0.9670 +1610 2752 0.6290 +1610 2774 0.4240 +1610 2897 0.4390 +1610 2902 0.4190 +1610 2903 0.4770 +1610 2904 0.4910 +1610 2913 0.4430 +1610 2936 0.5190 +1610 3004 0.4030 +1610 3084 0.4120 +1610 3295 0.6120 +1610 3356 0.5570 +1610 4128 0.4470 +1610 4129 0.4890 +1610 4353 0.4300 +1610 4357 0.7420 +1610 4524 0.6330 +1610 4548 0.4930 +1610 5192 0.6090 +1610 5194 0.5950 +1610 5195 0.5600 +1610 5362 0.4440 +1610 5533 0.5870 +1610 5565 0.4900 +1610 5625 0.6910 +1610 5827 0.5720 +1610 5828 0.5270 +1610 5830 0.6500 +1610 5999 0.6300 +1610 6233 0.4990 +1610 6342 0.6130 +1610 6470 0.9620 +1610 6472 0.9600 +1610 6506 0.4100 +1610 6511 0.4720 +1610 6532 0.4710 +1610 6821 0.4390 +1610 6854 0.4380 +1610 7166 0.4470 +1610 7263 0.4470 +1610 7296 0.4710 +1610 7311 0.4990 +1610 7314 0.4990 +1610 7316 0.4990 +1610 7321 0.4990 +1610 7322 0.4990 +1610 7323 0.4990 +1610 7511 0.4010 +1610 7512 0.4100 +1610 8564 0.4070 +1610 8732 0.4500 +1610 9054 0.4920 +1610 9131 0.6210 +1610 9378 0.4090 +1610 9380 0.8930 +1610 9685 0.4240 +1610 9722 0.5330 +1610 10215 0.4200 +1610 10587 0.4530 +1610 10797 0.4690 +1610 10840 0.4120 +1610 11212 0.5680 +1610 23474 0.4400 +1610 23743 0.4720 +1610 26227 0.4030 +1610 27185 0.6820 +1610 27232 0.9100 +1610 29801 0.5270 +1610 29958 0.6910 +1610 51015 0.4510 +1610 51179 0.9030 +1610 51268 0.9520 +1610 51512 0.5260 +1610 51540 0.4920 +1610 51557 0.5580 +1610 54363 0.9100 +1610 54738 0.4010 +1610 55034 0.5930 +1610 55066 0.6340 +1610 55687 0.5260 +1610 57030 0.4920 +1610 58472 0.7620 +1610 58510 0.4760 +1610 63826 0.9030 +1610 64850 0.4320 +1610 64902 0.9520 +1610 79763 0.4520 +1610 79912 0.6210 +1610 84062 0.7790 +1610 84705 0.6710 +1610 84883 0.6210 +1610 91752 0.6090 +1610 112817 0.8830 +1610 112849 0.9430 +1610 114112 0.4350 +1610 137362 0.4830 +1610 150209 0.6520 +1610 154664 0.4450 +1610 196743 0.4810 +1610 219743 0.6120 +1610 259307 0.5060 +1610 267012 0.9870 +1610 319100 0.4720 +1610 441024 0.4690 +1611 1612 0.8700 +1611 1613 0.5800 +1611 1616 0.6080 +1611 3458 0.4480 +1611 7290 0.4290 +1611 7818 0.4290 +1611 9262 0.5810 +1611 9263 0.5710 +1611 9355 0.4480 +1611 23604 0.4800 +1611 26574 0.4750 +1611 51806 0.5410 +1611 91860 0.5420 +1611 163688 0.5420 +1612 1613 0.9360 +1612 1742 0.5870 +1612 1786 0.5460 +1612 1788 0.4410 +1612 1789 0.4500 +1612 2011 0.5140 +1612 2099 0.4260 +1612 2188 0.5120 +1612 2272 0.6560 +1612 2274 0.4250 +1612 2902 0.6350 +1612 2903 0.5120 +1612 2904 0.8920 +1612 2913 0.4320 +1612 2950 0.6700 +1612 3090 0.5830 +1612 3146 0.4200 +1612 3170 0.4480 +1612 3217 0.6980 +1612 3265 0.4070 +1612 3312 0.4850 +1612 3320 0.4720 +1612 3551 0.4380 +1612 3845 0.6340 +1612 3984 0.4890 +1612 4131 0.6780 +1612 4139 0.5240 +1612 4255 0.7830 +1612 4292 0.6640 +1612 4842 0.4730 +1612 4915 0.4300 +1612 4978 0.4210 +1612 5066 0.5740 +1612 5289 0.5630 +1612 5315 0.4210 +1612 5515 0.5960 +1612 5519 0.4090 +1612 5520 0.4670 +1612 5564 0.5450 +1612 5594 0.9560 +1612 5595 0.9800 +1612 5728 0.6840 +1612 5894 0.4620 +1612 5915 0.7240 +1612 6422 0.4520 +1612 7001 0.4650 +1612 7057 0.6280 +1612 7078 0.6820 +1612 7094 0.4610 +1612 7132 0.5060 +1612 7157 0.8660 +1612 7161 0.5230 +1612 7248 0.4590 +1612 7249 0.5770 +1612 7405 0.5070 +1612 8452 0.4780 +1612 8633 0.5000 +1612 8678 0.9870 +1612 8772 0.9160 +1612 8997 0.5640 +1612 9140 0.4850 +1612 9258 0.4990 +1612 9423 0.5440 +1612 9474 0.5340 +1612 9839 0.4220 +1612 9940 0.4710 +1612 9956 0.4560 +1612 10016 0.5990 +1612 10018 0.4330 +1612 10093 0.4180 +1612 10097 0.4760 +1612 10437 0.6110 +1612 10533 0.4790 +1612 10935 0.4440 +1612 11186 0.8110 +1612 11197 0.4360 +1612 11278 0.4110 +1612 22863 0.4350 +1612 23604 0.9030 +1612 23705 0.4490 +1612 27252 0.9490 +1612 29110 0.4300 +1612 30849 0.4290 +1612 51806 0.9200 +1612 55332 0.4830 +1612 55626 0.4980 +1612 55743 0.5400 +1612 57030 0.4890 +1612 57534 0.7670 +1612 57576 0.4330 +1612 64419 0.4320 +1612 64422 0.4060 +1612 79705 0.4540 +1612 83660 0.4650 +1612 90249 0.5190 +1612 91860 0.9010 +1612 103910 0.4490 +1612 115761 0.4280 +1612 120892 0.4230 +1612 140628 0.4650 +1612 140679 0.4400 +1612 152138 0.4340 +1612 160728 0.4440 +1612 163688 0.9010 +1612 219699 0.9230 +1612 222171 0.5670 +1612 441925 0.9190 +1613 1616 0.7490 +1613 1641 0.4930 +1613 2874 0.4310 +1613 2888 0.6170 +1613 2908 0.4750 +1613 4087 0.4260 +1613 4193 0.5530 +1613 4255 0.5070 +1613 4616 0.4590 +1613 4659 0.8280 +1613 5074 0.9380 +1613 5289 0.5320 +1613 5500 0.4880 +1613 5590 0.6170 +1613 5594 0.9220 +1613 5595 0.9290 +1613 6774 0.4730 +1613 7157 0.5990 +1613 7273 0.4770 +1613 7405 0.4020 +1613 7798 0.9940 +1613 8408 0.4490 +1613 8678 0.9720 +1613 8997 0.8730 +1613 9002 0.5040 +1613 9140 0.4210 +1613 9342 0.5240 +1613 9474 0.4610 +1613 9859 0.4170 +1613 10398 0.5780 +1613 10533 0.4010 +1613 11186 0.5170 +1613 23604 0.9030 +1613 26574 0.8530 +1613 27113 0.4540 +1613 27252 0.4060 +1613 29128 0.4100 +1613 29984 0.6810 +1613 51588 0.4940 +1613 51806 0.8960 +1613 55626 0.4770 +1613 55930 0.4570 +1613 57534 0.5220 +1613 79156 0.4280 +1613 81794 0.4170 +1613 81926 0.4420 +1613 91860 0.8390 +1613 94274 0.5710 +1613 103910 0.7220 +1613 115557 0.4820 +1613 140290 0.5520 +1613 163688 0.8390 +1613 219699 0.7800 +1613 283373 0.4380 +1613 441925 0.9110 +1615 1874 0.4050 +1615 1894 0.4120 +1615 1915 0.4800 +1615 1965 0.6810 +1615 2058 0.9990 +1615 2166 0.6320 +1615 2193 0.5890 +1615 2217 0.4410 +1615 2617 0.7720 +1615 2963 0.5050 +1615 3320 0.4190 +1615 3376 0.9960 +1615 3735 0.9960 +1615 4141 0.9990 +1615 4677 0.4470 +1615 5188 0.9870 +1615 5707 0.4740 +1615 5859 0.9990 +1615 5917 0.9960 +1615 6386 0.7840 +1615 7407 0.5370 +1615 7411 0.5840 +1615 7453 0.4840 +1615 7965 0.9990 +1615 8565 0.8590 +1615 9255 0.9940 +1615 9521 0.9990 +1615 10056 0.4920 +1615 10213 0.4720 +1615 10667 0.5820 +1615 11128 0.4150 +1615 11232 0.4280 +1615 22826 0.4130 +1615 23395 0.5360 +1615 25973 0.5860 +1615 29960 0.4510 +1615 51053 0.4450 +1615 51067 0.4790 +1615 51520 0.9960 +1615 51534 0.4220 +1615 54989 0.4550 +1615 55157 0.9600 +1615 55278 0.9380 +1615 55621 0.5690 +1615 55699 0.6210 +1615 55794 0.4770 +1615 57019 0.4950 +1615 57038 0.5210 +1615 57176 0.4560 +1615 57505 0.4050 +1615 57521 0.8670 +1615 57697 0.4520 +1615 79073 0.7300 +1615 83932 0.5230 +1615 90850 0.4860 +1615 91893 0.4340 +1615 92935 0.6560 +1615 124454 0.5250 +1615 158584 0.6320 +1615 285362 0.5390 +1615 101927367 0.4150 +1616 1736 0.4620 +1616 1786 0.9280 +1616 1788 0.5300 +1616 1869 0.5370 +1616 1973 0.4830 +1616 1974 0.4740 +1616 2000 0.4230 +1616 2113 0.8300 +1616 2146 0.6950 +1616 2175 0.4730 +1616 2623 0.4350 +1616 2874 0.4480 +1616 2908 0.9030 +1616 2987 0.4020 +1616 3012 0.6830 +1616 3013 0.5410 +1616 3014 0.6690 +1616 3015 0.7500 +1616 3017 0.5810 +1616 3018 0.7510 +1616 3020 0.9570 +1616 3021 0.9990 +1616 3065 0.9220 +1616 3066 0.9110 +1616 3297 0.5950 +1616 3315 0.9640 +1616 3316 0.8710 +1616 3417 0.4250 +1616 3661 0.6160 +1616 3663 0.4440 +1616 3669 0.4570 +1616 3725 0.7280 +1616 3842 0.4700 +1616 3845 0.4350 +1616 4087 0.5070 +1616 4089 0.9380 +1616 4193 0.9950 +1616 4194 0.7440 +1616 4217 0.9990 +1616 4599 0.7340 +1616 4609 0.6810 +1616 4613 0.4440 +1616 4691 0.4030 +1616 4763 0.4350 +1616 4796 0.5150 +1616 4839 0.4590 +1616 4842 0.5750 +1616 5077 0.7000 +1616 5079 0.4300 +1616 5238 0.4370 +1616 5290 0.4160 +1616 5371 0.9990 +1616 5599 0.9310 +1616 5601 0.9170 +1616 5728 0.7780 +1616 5783 0.4780 +1616 5903 0.5270 +1616 5914 0.4100 +1616 5925 0.5190 +1616 5928 0.6560 +1616 5931 0.6850 +1616 5970 0.8220 +1616 5971 0.7560 +1616 5987 0.4880 +1616 6046 0.7150 +1616 6047 0.7370 +1616 6233 0.7070 +1616 6426 0.4460 +1616 6517 0.8860 +1616 6595 0.5220 +1616 6597 0.5140 +1616 6612 0.5420 +1616 6613 0.9320 +1616 6647 0.6130 +1616 6667 0.4890 +1616 6672 0.9960 +1616 6737 0.4690 +1616 6749 0.5250 +1616 6773 0.5510 +1616 6774 0.4990 +1616 6801 0.4890 +1616 6839 0.6720 +1616 6885 0.4960 +1616 6892 0.4140 +1616 6907 0.4820 +1616 6934 0.5610 +1616 6996 0.4940 +1616 7013 0.7150 +1616 7014 0.6550 +1616 7015 0.7960 +1616 7040 0.5070 +1616 7046 0.9160 +1616 7048 0.9810 +1616 7132 0.9440 +1616 7133 0.9030 +1616 7157 0.9990 +1616 7161 0.5880 +1616 7186 0.5430 +1616 7189 0.5510 +1616 7249 0.4540 +1616 7290 0.6630 +1616 7311 0.5100 +1616 7314 0.5350 +1616 7316 0.5980 +1616 7329 0.9750 +1616 7341 0.9990 +1616 7874 0.9990 +1616 7913 0.8540 +1616 8019 0.5150 +1616 8161 0.4510 +1616 8290 0.9000 +1616 8294 0.9240 +1616 8312 0.6780 +1616 8329 0.5710 +1616 8331 0.5410 +1616 8334 0.5470 +1616 8337 0.7520 +1616 8338 0.7500 +1616 8340 0.6910 +1616 8341 0.5790 +1616 8342 0.5830 +1616 8345 0.5810 +1616 8347 0.5800 +1616 8348 0.5820 +1616 8349 0.7950 +1616 8350 0.5450 +1616 8352 0.8180 +1616 8353 0.7630 +1616 8356 0.9180 +1616 8359 0.9050 +1616 8360 0.9050 +1616 8361 0.9940 +1616 8362 0.9130 +1616 8363 0.9300 +1616 8364 0.9360 +1616 8366 0.9130 +1616 8367 0.9050 +1616 8368 0.9140 +1616 8369 0.6210 +1616 8370 0.9190 +1616 8405 0.9740 +1616 8452 0.7410 +1616 8554 0.7840 +1616 8626 0.5730 +1616 8717 0.5840 +1616 8726 0.5690 +1616 8737 0.4630 +1616 8772 0.8880 +1616 8805 0.5850 +1616 8837 0.4730 +1616 8841 0.6060 +1616 8878 0.4100 +1616 8970 0.6600 +1616 8988 0.8120 +1616 8996 0.5390 +1616 9063 0.4530 +1616 9097 0.4290 +1616 9278 0.5290 +1616 9611 0.5130 +1616 9612 0.4830 +1616 9817 0.5080 +1616 9869 0.7930 +1616 9968 0.4130 +1616 10036 0.6130 +1616 10054 0.5040 +1616 10055 0.5590 +1616 10155 0.8380 +1616 10210 0.6040 +1616 10273 0.4610 +1616 10399 0.4210 +1616 10401 0.4090 +1616 10445 0.8960 +1616 10454 0.4280 +1616 10524 0.6060 +1616 10951 0.6260 +1616 11124 0.5030 +1616 11186 0.9480 +1616 11198 0.4550 +1616 11200 0.4080 +1616 11262 0.4470 +1616 11315 0.9690 +1616 11335 0.7340 +1616 22927 0.5740 +1616 23394 0.4380 +1616 23468 0.6390 +1616 23476 0.6580 +1616 23512 0.6020 +1616 23515 0.4590 +1616 23523 0.6090 +1616 23534 0.4560 +1616 25842 0.6700 +1616 25855 0.4610 +1616 25913 0.6100 +1616 26135 0.8510 +1616 26277 0.7180 +1616 27250 0.4510 +1616 28996 0.8610 +1616 29072 0.4310 +1616 29843 0.5700 +1616 29855 0.6700 +1616 29966 0.4790 +1616 50485 0.4280 +1616 51127 0.4360 +1616 51588 0.4550 +1616 51592 0.5180 +1616 51652 0.4570 +1616 54145 0.5930 +1616 54386 0.5750 +1616 54994 0.4800 +1616 55355 0.5280 +1616 55651 0.6060 +1616 55723 0.5970 +1616 55766 0.5410 +1616 55929 0.7950 +1616 57162 0.4570 +1616 57337 0.4460 +1616 59343 0.5290 +1616 79718 0.4410 +1616 80169 0.4210 +1616 84084 0.5420 +1616 85235 0.5410 +1616 85236 0.5930 +1616 85363 0.4860 +1616 90135 0.4220 +1616 92815 0.5410 +1616 94239 0.6130 +1616 121504 0.9060 +1616 126961 0.9510 +1616 128312 0.5790 +1616 204851 0.8140 +1616 219681 0.4260 +1616 221613 0.5740 +1616 255626 0.5910 +1616 317772 0.5450 +1616 333932 0.9110 +1616 340096 0.4970 +1616 387082 0.4570 +1616 391769 0.5090 +1616 440093 0.5620 +1616 440686 0.5020 +1616 440689 0.6040 +1616 445372 0.4560 +1616 474382 0.6050 +1616 554313 0.9050 +1616 653604 0.9860 +1617 1618 0.6530 +1617 1761 0.4660 +1617 2197 0.4480 +1617 3161 0.4430 +1617 3182 0.5280 +1617 5620 0.5180 +1617 5940 0.4800 +1617 6192 0.5640 +1617 6736 0.6570 +1617 6847 0.4140 +1617 7141 0.4230 +1617 7258 0.8840 +1617 7404 0.8090 +1617 7544 0.6020 +1617 7704 0.4140 +1617 8284 0.5840 +1617 8287 0.8840 +1617 8653 0.8850 +1617 9081 0.8480 +1617 9083 0.9370 +1617 9084 0.7200 +1617 9085 0.9580 +1617 9086 0.5810 +1617 9087 0.5230 +1617 9271 0.4850 +1617 9425 0.5880 +1617 9666 0.7180 +1617 9698 0.6790 +1617 9802 0.9700 +1617 22873 0.9440 +1617 23369 0.9770 +1617 23424 0.4010 +1617 26528 0.9490 +1617 26986 0.5170 +1617 27288 0.5140 +1617 50511 0.5560 +1617 54514 0.7590 +1617 55124 0.4550 +1617 57055 0.9990 +1617 64374 0.4070 +1617 64506 0.4090 +1617 64591 0.4600 +1617 66037 0.6230 +1617 83259 0.4070 +1617 84206 0.4470 +1617 86614 0.7090 +1617 90655 0.4890 +1617 124359 0.6140 +1617 140032 0.5490 +1617 199221 0.6950 +1617 253175 0.8240 +1617 339345 0.5080 +1617 340719 0.5900 +1617 342977 0.6010 +1617 346673 0.5300 +1617 353513 0.7200 +1617 373863 0.5050 +1617 399664 0.5070 +1617 442862 0.8400 +1617 442867 0.9320 +1617 442868 0.9320 +1618 1761 0.6450 +1618 1965 0.5220 +1618 1981 0.4740 +1618 1995 0.6660 +1618 2197 0.4480 +1618 2247 0.4120 +1618 2492 0.5180 +1618 2526 0.5120 +1618 2597 0.4070 +1618 2626 0.4280 +1618 2661 0.6920 +1618 2668 0.4450 +1618 2674 0.6760 +1618 3161 0.5120 +1618 3815 0.5480 +1618 3976 0.4200 +1618 4254 0.4160 +1618 4686 0.5650 +1618 5460 0.7250 +1618 5619 0.4750 +1618 5620 0.5520 +1618 6638 0.4690 +1618 6657 0.5480 +1618 6658 0.4060 +1618 6736 0.4160 +1618 6847 0.8400 +1618 7015 0.4860 +1618 7022 0.5820 +1618 7072 0.4790 +1618 7141 0.5630 +1618 7142 0.4680 +1618 7704 0.7040 +1618 7783 0.6170 +1618 7784 0.6600 +1618 8433 0.5960 +1618 8468 0.4630 +1618 8653 0.4130 +1618 9083 0.4450 +1618 9085 0.5090 +1618 9210 0.6100 +1618 9271 0.6450 +1618 9425 0.4830 +1618 9573 0.4020 +1618 9698 0.7740 +1618 9802 0.9350 +1618 9985 0.6090 +1618 22873 0.8070 +1618 22917 0.5670 +1618 23180 0.6130 +1618 23369 0.9930 +1618 23424 0.5170 +1618 23626 0.5630 +1618 26528 0.8390 +1618 26986 0.5010 +1618 27127 0.4750 +1618 29118 0.4900 +1618 29947 0.4160 +1618 50511 0.8100 +1618 51087 0.5480 +1618 54456 0.5340 +1618 54457 0.5170 +1618 54514 0.9220 +1618 54937 0.6710 +1618 55124 0.7380 +1618 55211 0.4630 +1618 55521 0.4110 +1618 56154 0.4350 +1618 56155 0.4430 +1618 56158 0.4030 +1618 56159 0.4120 +1618 56163 0.6320 +1618 56164 0.4810 +1618 56165 0.5180 +1618 56603 0.5280 +1618 57167 0.5500 +1618 57829 0.5820 +1618 63948 0.4110 +1618 63978 0.8170 +1618 64061 0.4480 +1618 64321 0.4550 +1618 64506 0.5550 +1618 66037 0.4850 +1618 79727 0.5730 +1618 79923 0.6820 +1618 80312 0.6030 +1618 80336 0.4060 +1618 83659 0.4810 +1618 84072 0.5690 +1618 84944 0.6390 +1618 93426 0.8830 +1618 93953 0.5430 +1618 122402 0.5520 +1618 124359 0.4250 +1618 132625 0.4240 +1618 133482 0.4130 +1618 135935 0.6440 +1618 136991 0.4270 +1618 143689 0.5290 +1618 163589 0.4930 +1618 166647 0.5620 +1618 166863 0.4460 +1618 254528 0.4760 +1618 255877 0.4030 +1618 256126 0.8710 +1618 284071 0.4250 +1618 339345 0.7580 +1618 340719 0.6120 +1618 342977 0.8610 +1618 344018 0.6640 +1618 346673 0.8510 +1618 359787 0.7330 +1618 373863 0.7080 +1618 375316 0.4720 +1618 388553 0.4530 +1618 402381 0.6230 +1618 100526761 0.6460 +1620 2849 0.4780 +1620 5551 0.7300 +1620 5797 0.4410 +1620 6358 0.4350 +1620 6609 0.4100 +1620 7157 0.4180 +1620 10257 0.4910 +1620 10924 0.9750 +1620 23245 0.4790 +1620 23411 0.8440 +1620 51322 0.4220 +1620 116135 0.4100 +1620 121227 0.4100 +1620 255919 0.4480 +1620 389073 0.4980 +1620 729830 0.4560 +1621 1644 0.9840 +1621 1812 0.5470 +1621 1813 0.7480 +1621 1814 0.5810 +1621 1815 0.7840 +1621 1816 0.6360 +1621 1861 0.5260 +1621 2353 0.5330 +1621 2571 0.5050 +1621 2572 0.4250 +1621 2668 0.5550 +1621 3060 0.5510 +1621 3067 0.5780 +1621 3208 0.5540 +1621 3350 0.4300 +1621 3351 0.4840 +1621 3359 0.4270 +1621 3552 0.4240 +1621 3630 0.4170 +1621 4128 0.9870 +1621 4129 0.9840 +1621 4613 0.4360 +1621 4803 0.4650 +1621 4852 0.7780 +1621 4922 0.4120 +1621 5020 0.4680 +1621 5053 0.7200 +1621 5409 0.9910 +1621 5443 0.5970 +1621 5979 0.4480 +1621 6530 0.7230 +1621 6531 0.8150 +1621 6532 0.6110 +1621 6570 0.5480 +1621 6571 0.7020 +1621 6572 0.6540 +1621 6697 0.6440 +1621 6750 0.6090 +1621 6855 0.5860 +1621 6863 0.7990 +1621 7054 0.9730 +1621 7166 0.5050 +1621 7200 0.4380 +1621 7299 0.4740 +1621 7351 0.4120 +1621 7432 0.6890 +1621 7837 0.4570 +1621 8170 0.6310 +1621 8639 0.9020 +1621 8929 0.8340 +1621 9104 0.4130 +1621 9464 0.5150 +1621 51083 0.8210 +1621 57084 0.4530 +1621 60482 0.4790 +1621 85477 0.4300 +1621 121278 0.5680 +1621 137902 0.4580 +1621 220074 0.9650 +1621 255239 0.4790 +1622 1892 0.4450 +1622 2168 0.5470 +1622 2170 0.4490 +1622 2171 0.4520 +1622 2180 0.4790 +1622 2181 0.4820 +1622 2182 0.4120 +1622 2639 0.4370 +1622 2806 0.5740 +1622 3032 0.5980 +1622 3069 0.5570 +1622 3172 0.6120 +1622 3250 0.7350 +1622 3336 0.5100 +1622 3712 0.4260 +1622 3931 0.7450 +1622 3949 0.5580 +1622 3958 0.5290 +1622 3990 0.5730 +1622 4018 0.7260 +1622 4023 0.6520 +1622 4481 0.5400 +1622 4709 0.4320 +1622 4836 0.5830 +1622 5037 0.5240 +1622 5360 0.7280 +1622 5444 0.7290 +1622 5465 0.5920 +1622 5566 0.4920 +1622 5567 0.4930 +1622 5568 0.4900 +1622 6288 0.5580 +1622 6289 0.5540 +1622 6291 0.5540 +1622 6319 0.4470 +1622 6342 0.7940 +1622 6647 0.4150 +1622 6720 0.5600 +1622 6770 0.5170 +1622 7295 0.4040 +1622 7416 0.5530 +1622 7436 0.5780 +1622 7941 0.9000 +1622 8309 0.5200 +1622 8310 0.5820 +1622 8504 0.9260 +1622 8542 0.7290 +1622 9256 0.5880 +1622 9397 0.4430 +1622 9607 0.4770 +1622 10449 0.6260 +1622 10998 0.4080 +1622 10999 0.4780 +1622 11001 0.4330 +1622 23456 0.4980 +1622 23480 0.4180 +1622 27034 0.4280 +1622 27089 0.4350 +1622 28976 0.4890 +1622 51449 0.7500 +1622 51599 0.5540 +1622 51703 0.4460 +1622 55289 0.4630 +1622 55829 0.7270 +1622 55911 0.5400 +1622 55937 0.7230 +1622 64746 0.8900 +1622 79135 0.5460 +1622 116519 0.9180 +1622 130355 0.4200 +1622 132949 0.4350 +1622 284422 0.4360 +1622 376497 0.4180 +1622 100528017 0.5550 +1622 122405565 0.4360 +1627 1629 0.4080 +1627 1730 0.4650 +1627 1742 0.6440 +1627 1759 0.5750 +1627 1809 0.5050 +1627 1938 0.4400 +1627 1956 0.4430 +1627 2017 0.6330 +1627 2040 0.4160 +1627 2059 0.4180 +1627 2060 0.4400 +1627 2316 0.6120 +1627 2317 0.4090 +1627 2580 0.4910 +1627 2596 0.4070 +1627 2697 0.9060 +1627 2764 0.4010 +1627 2896 0.4450 +1627 2904 0.6100 +1627 2934 0.8130 +1627 3028 0.4260 +1627 3059 0.4430 +1627 3092 0.4690 +1627 3339 0.4330 +1627 3728 0.5410 +1627 3936 0.5010 +1627 4001 0.4680 +1627 4137 0.4040 +1627 4162 0.4390 +1627 4301 0.4470 +1627 4548 0.4070 +1627 4627 0.4050 +1627 4643 0.4900 +1627 4644 0.4790 +1627 4741 0.4170 +1627 5058 0.5520 +1627 5062 0.4690 +1627 5216 0.6840 +1627 5295 0.5260 +1627 5357 0.4540 +1627 5358 0.4950 +1627 5361 0.4470 +1627 5364 0.4860 +1627 5476 0.4980 +1627 5728 0.4330 +1627 5756 0.6060 +1627 6093 0.4390 +1627 6510 0.4050 +1627 6616 0.6350 +1627 6624 0.5420 +1627 6628 0.4270 +1627 6633 0.4220 +1627 6709 0.4720 +1627 6711 0.4550 +1627 6714 0.5520 +1627 6853 0.5050 +1627 6855 0.6190 +1627 6876 0.4340 +1627 7037 0.4030 +1627 7082 0.7160 +1627 7112 0.4420 +1627 7168 0.5190 +1627 7408 0.4160 +1627 7415 0.5650 +1627 7454 0.6000 +1627 7852 0.8470 +1627 7879 0.4150 +1627 8407 0.4560 +1627 8491 0.8190 +1627 8976 0.6020 +1627 9026 0.4600 +1627 9208 0.5840 +1627 9260 0.7010 +1627 9341 0.4140 +1627 9454 0.7150 +1627 9455 0.8110 +1627 9456 0.7380 +1627 9475 0.4300 +1627 9497 0.4160 +1627 9528 0.4100 +1627 9535 0.4220 +1627 9590 0.4260 +1627 9886 0.5720 +1627 9948 0.4940 +1627 10094 0.4250 +1627 10096 0.5700 +1627 10097 0.6840 +1627 10109 0.4720 +1627 10298 0.4600 +1627 10376 0.4480 +1627 10486 0.8470 +1627 10487 0.8010 +1627 11184 0.6710 +1627 11344 0.5710 +1627 11346 0.4690 +1627 22848 0.5330 +1627 22924 0.9840 +1627 23085 0.4130 +1627 23221 0.5600 +1627 23344 0.4170 +1627 23603 0.4310 +1627 23613 0.9550 +1627 29114 0.4200 +1627 29767 0.6540 +1627 29984 0.5780 +1627 51474 0.5150 +1627 54443 0.4900 +1627 55004 0.4210 +1627 55075 0.4110 +1627 55607 0.4640 +1627 55968 0.4550 +1627 56924 0.4500 +1627 57144 0.5360 +1627 57180 0.4040 +1627 79180 0.4270 +1627 79968 0.5100 +1627 80728 0.4340 +1627 81624 0.6790 +1627 81839 0.4110 +1627 84687 0.7790 +1627 85477 0.4140 +1627 91624 0.7080 +1627 144402 0.4080 +1627 147179 0.4400 +1627 345456 0.6950 +1627 345651 0.4540 +1627 375189 0.7580 +1628 1649 0.4640 +1628 3131 0.5920 +1628 3562 0.4450 +1628 4513 0.5920 +1628 4514 0.4750 +1628 4862 0.7970 +1628 5187 0.5070 +1628 6929 0.4690 +1628 7008 0.5670 +1628 7089 0.6000 +1628 7252 0.6800 +1628 7381 0.4840 +1628 7385 0.4360 +1628 8553 0.4280 +1628 8566 0.7140 +1628 8863 0.7060 +1628 8864 0.6880 +1628 9377 0.6130 +1628 9572 0.7590 +1628 9575 0.8700 +1628 9975 0.6480 +1628 10538 0.4070 +1628 25819 0.4110 +1628 27089 0.4340 +1628 27286 0.6400 +1628 29796 0.4650 +1628 55509 0.4320 +1628 56938 0.5270 +1628 79002 0.4510 +1628 79365 0.5520 +1628 79816 0.5910 +1628 84701 0.4820 +1628 84886 0.5320 +1628 116071 0.4160 +1628 125965 0.4440 +1628 283459 0.4700 +1628 388753 0.4420 +1628 653145 0.5880 +1629 1663 0.6090 +1629 1719 0.4660 +1629 1737 0.6750 +1629 1738 0.9990 +1629 1743 0.7800 +1629 1757 0.4680 +1629 1892 0.7110 +1629 1962 0.8370 +1629 2040 0.4210 +1629 2108 0.5110 +1629 2271 0.6900 +1629 2631 0.5470 +1629 2653 0.7770 +1629 2731 0.7370 +1629 2746 0.4590 +1629 2747 0.4050 +1629 2936 0.7720 +1629 3032 0.8430 +1629 3141 0.4060 +1629 3417 0.6440 +1629 3418 0.6570 +1629 3419 0.7800 +1629 3420 0.8520 +1629 3421 0.7660 +1629 3712 0.9750 +1629 3728 0.4560 +1629 4199 0.4060 +1629 4200 0.4260 +1629 4329 0.9560 +1629 4512 0.4010 +1629 4524 0.6690 +1629 4548 0.7020 +1629 4723 0.5510 +1629 4728 0.4430 +1629 4729 0.4760 +1629 4967 0.9610 +1629 5062 0.4110 +1629 5095 0.9610 +1629 5096 0.9720 +1629 5161 0.7380 +1629 5162 0.9570 +1629 5165 0.4330 +1629 5166 0.4030 +1629 5313 0.4700 +1629 5315 0.4400 +1629 5631 0.4710 +1629 5634 0.4700 +1629 5635 0.5150 +1629 5636 0.4720 +1629 5832 0.4210 +1629 6093 0.4190 +1629 6389 0.7140 +1629 6390 0.7640 +1629 6391 0.6090 +1629 6470 0.6200 +1629 6472 0.6180 +1629 6510 0.4450 +1629 6672 0.6450 +1629 6929 0.8060 +1629 7086 0.4750 +1629 7296 0.7680 +1629 7298 0.6610 +1629 7415 0.4770 +1629 7535 0.4140 +1629 7879 0.4280 +1629 8034 0.5530 +1629 8050 0.6930 +1629 8277 0.4620 +1629 8310 0.9340 +1629 8634 0.5810 +1629 8659 0.6720 +1629 8801 0.8900 +1629 8802 0.9560 +1629 8803 0.9010 +1629 8864 0.5670 +1629 9025 0.8030 +1629 9131 0.4600 +1629 9197 0.4640 +1629 9341 0.4030 +1629 9380 0.6790 +1629 9399 0.4070 +1629 9475 0.4350 +1629 9497 0.4050 +1629 9528 0.4670 +1629 9563 0.4210 +1629 9575 0.6740 +1629 10295 0.8180 +1629 10376 0.4370 +1629 10449 0.8650 +1629 10587 0.7720 +1629 10797 0.5260 +1629 10873 0.4060 +1629 10994 0.5490 +1629 11112 0.8800 +1629 22934 0.4030 +1629 23225 0.5470 +1629 23743 0.4140 +1629 23774 0.4300 +1629 25824 0.4320 +1629 26061 0.5540 +1629 27034 0.9440 +1629 27154 0.4290 +1629 27443 0.4450 +1629 28976 0.7870 +1629 29958 0.5460 +1629 51011 0.4370 +1629 51497 0.5520 +1629 51592 0.4610 +1629 51601 0.8390 +1629 51611 0.4760 +1629 54482 0.5510 +1629 54884 0.4050 +1629 55004 0.4030 +1629 55023 0.4300 +1629 55066 0.5140 +1629 55075 0.4250 +1629 55293 0.4940 +1629 55364 0.5660 +1629 55526 0.9280 +1629 55717 0.4600 +1629 55753 0.9350 +1629 55862 0.9230 +1629 55902 0.9280 +1629 55968 0.4450 +1629 56922 0.6510 +1629 56965 0.4380 +1629 57546 0.4140 +1629 64087 0.7550 +1629 64902 0.8240 +1629 79611 0.9290 +1629 79668 0.4380 +1629 79912 0.4240 +1629 79944 0.4430 +1629 80224 0.4130 +1629 81889 0.4190 +1629 84076 0.4680 +1629 84263 0.5670 +1629 84532 0.9290 +1629 84693 0.4820 +1629 85865 0.4470 +1629 87769 0.4310 +1629 90624 0.4180 +1629 92259 0.6420 +1629 92399 0.6190 +1629 114112 0.7670 +1629 114885 0.4200 +1629 127428 0.4550 +1629 134266 0.6630 +1629 145482 0.4020 +1629 152815 0.5070 +1629 152926 0.9290 +1629 157769 0.4110 +1629 200205 0.6130 +1629 200895 0.4640 +1629 201931 0.4530 +1629 221823 0.4680 +1629 253959 0.4110 +1629 256356 0.6940 +1629 441024 0.5300 +1630 1793 0.7830 +1630 1826 0.9690 +1630 2274 0.4480 +1630 2534 0.7870 +1630 2817 0.5380 +1630 2909 0.4410 +1630 2922 0.4440 +1630 3675 0.4130 +1630 3693 0.4200 +1630 4651 0.9880 +1630 4690 0.9260 +1630 4857 0.4970 +1630 4917 0.7170 +1630 5306 0.5690 +1630 5335 0.9040 +1630 5336 0.9000 +1630 5594 0.5870 +1630 5595 0.6980 +1630 5605 0.4240 +1630 5747 0.9910 +1630 5781 0.5230 +1630 5789 0.4110 +1630 5879 0.5810 +1630 5921 0.4830 +1630 6091 0.8480 +1630 6092 0.7190 +1630 6125 0.7330 +1630 6477 0.6860 +1630 6478 0.6260 +1630 6585 0.8290 +1630 6586 0.8770 +1630 6714 0.9430 +1630 7204 0.6030 +1630 7408 0.5510 +1630 7430 0.8310 +1630 8633 0.9200 +1630 8976 0.5600 +1630 8997 0.4110 +1630 9353 0.8580 +1630 9423 0.9990 +1630 9564 0.4260 +1630 10371 0.5750 +1630 10381 0.4560 +1630 10507 0.4090 +1630 10512 0.4690 +1630 10857 0.4860 +1630 22854 0.6270 +1630 22885 0.5640 +1630 26060 0.9380 +1630 51466 0.4900 +1630 55740 0.4190 +1630 57453 0.4330 +1630 57614 0.4140 +1630 59277 0.9400 +1630 64221 0.6070 +1630 84448 0.5850 +1630 84628 0.5460 +1630 90249 0.9250 +1630 114088 0.8930 +1630 126147 0.7140 +1630 137970 0.9380 +1630 140689 0.6460 +1630 219699 0.9610 +1630 374946 0.8640 +1630 440730 0.6030 +1632 1666 0.7360 +1632 1738 0.4100 +1632 1891 0.6500 +1632 1892 0.8550 +1632 1962 0.9490 +1632 2108 0.7200 +1632 2109 0.7390 +1632 2110 0.6570 +1632 2180 0.5280 +1632 2181 0.4480 +1632 2194 0.5440 +1632 2271 0.4920 +1632 2639 0.6010 +1632 3028 0.7290 +1632 3030 0.5060 +1632 3032 0.8790 +1632 3033 0.7970 +1632 3155 0.6120 +1632 3157 0.5190 +1632 3158 0.5920 +1632 3295 0.6980 +1632 3421 0.4260 +1632 3658 0.4060 +1632 3712 0.5750 +1632 4191 0.4200 +1632 4329 0.5210 +1632 4706 0.4900 +1632 4728 0.5140 +1632 4942 0.4020 +1632 5019 0.4630 +1632 5095 0.4410 +1632 5096 0.6100 +1632 5166 0.4180 +1632 5191 0.4250 +1632 6150 0.4130 +1632 6182 0.4630 +1632 6187 0.4930 +1632 6205 0.4630 +1632 6222 0.4310 +1632 6224 0.4610 +1632 6296 0.5590 +1632 6342 0.8370 +1632 6648 0.4660 +1632 7818 0.4970 +1632 8309 0.7100 +1632 8310 0.6930 +1632 8800 0.5120 +1632 8802 0.4560 +1632 9085 0.5420 +1632 9349 0.4270 +1632 9399 0.4440 +1632 9425 0.4440 +1632 9553 0.5490 +1632 9607 0.6360 +1632 9801 0.4620 +1632 10005 0.6290 +1632 10295 0.4060 +1632 10449 0.8590 +1632 10455 0.9990 +1632 10965 0.4540 +1632 11112 0.4360 +1632 23597 0.4500 +1632 23600 0.4660 +1632 25979 0.4400 +1632 26061 0.4850 +1632 26063 0.6570 +1632 26275 0.6950 +1632 26589 0.5660 +1632 27034 0.5440 +1632 27349 0.4340 +1632 28976 0.5840 +1632 51021 0.5090 +1632 51081 0.4150 +1632 51084 0.5510 +1632 51264 0.4750 +1632 51497 0.4140 +1632 51703 0.4630 +1632 54511 0.4720 +1632 54884 0.4500 +1632 54988 0.4370 +1632 54995 0.4400 +1632 55052 0.4130 +1632 55168 0.4040 +1632 55268 0.4180 +1632 55289 0.5540 +1632 55349 0.4240 +1632 55825 0.4010 +1632 55856 0.5290 +1632 55862 0.6830 +1632 55902 0.4700 +1632 56898 0.4790 +1632 56922 0.4210 +1632 57129 0.4860 +1632 57591 0.4360 +1632 60488 0.5400 +1632 63875 0.4800 +1632 64064 0.4390 +1632 64087 0.5450 +1632 64965 0.5080 +1632 64968 0.4630 +1632 64969 0.4440 +1632 64975 0.4940 +1632 64976 0.4350 +1632 64979 0.4850 +1632 64981 0.4900 +1632 64983 0.4210 +1632 65985 0.4400 +1632 79611 0.4080 +1632 80221 0.4620 +1632 80724 0.5800 +1632 84129 0.6120 +1632 84263 0.8150 +1632 84532 0.5120 +1632 84545 0.4910 +1632 84693 0.4310 +1632 116285 0.4380 +1632 122970 0.4380 +1632 123876 0.4750 +1632 124359 0.4960 +1632 126129 0.4330 +1632 132949 0.4180 +1632 134147 0.4030 +1632 134526 0.4300 +1632 140856 0.4160 +1632 219927 0.4150 +1632 253175 0.5420 +1632 254042 0.4030 +1632 284422 0.5080 +1632 348158 0.4980 +1632 376497 0.5360 +1632 109703458 0.4120 +1632 122405565 0.5080 +1633 1635 0.9850 +1633 1716 0.4820 +1633 1719 0.6550 +1633 1806 0.4450 +1633 1841 0.7660 +1633 1854 0.4390 +1633 1890 0.5530 +1633 1994 0.4250 +1633 2030 0.8790 +1633 2356 0.5180 +1633 2950 0.4210 +1633 3177 0.6430 +1633 3614 0.4090 +1633 4513 0.4630 +1633 4535 0.5120 +1633 4536 0.4450 +1633 4537 0.6110 +1633 4538 0.6230 +1633 4539 0.6930 +1633 4540 0.4410 +1633 4541 0.6180 +1633 4694 0.4610 +1633 4695 0.5670 +1633 4696 0.5690 +1633 4698 0.6580 +1633 4700 0.5930 +1633 4701 0.5040 +1633 4702 0.6390 +1633 4704 0.4990 +1633 4706 0.6710 +1633 4707 0.4090 +1633 4709 0.6080 +1633 4710 0.6520 +1633 4711 0.6890 +1633 4712 0.6910 +1633 4713 0.5990 +1633 4714 0.7020 +1633 4715 0.6470 +1633 4716 0.6660 +1633 4717 0.4400 +1633 4718 0.5790 +1633 4720 0.7010 +1633 4722 0.7140 +1633 4723 0.7550 +1633 4724 0.6650 +1633 4725 0.5400 +1633 4726 0.6650 +1633 4728 0.7030 +1633 4729 0.6070 +1633 4731 0.5660 +1633 4860 0.9510 +1633 4907 0.9210 +1633 5033 0.4960 +1633 5136 0.9060 +1633 5137 0.9060 +1633 5138 0.9090 +1633 5139 0.9010 +1633 5140 0.9060 +1633 5141 0.9040 +1633 5142 0.9090 +1633 5143 0.9030 +1633 5144 0.9320 +1633 5150 0.9050 +1633 5151 0.9130 +1633 5153 0.9070 +1633 5167 0.9130 +1633 5169 0.9060 +1633 5214 0.4430 +1633 6240 0.8220 +1633 6241 0.7690 +1633 7083 0.9310 +1633 7298 0.8740 +1633 7371 0.6190 +1633 7372 0.4930 +1633 7384 0.4420 +1633 7385 0.4420 +1633 7386 0.5210 +1633 8622 0.9000 +1633 8833 0.4640 +1633 8974 0.6550 +1633 9134 0.4580 +1633 9153 0.4830 +1633 9154 0.6720 +1633 9377 0.5730 +1633 9512 0.4510 +1633 9601 0.7810 +1633 10201 0.4470 +1633 10553 0.4970 +1633 10846 0.9020 +1633 11164 0.4130 +1633 22978 0.9670 +1633 23203 0.4500 +1633 23583 0.4100 +1633 25939 0.5610 +1633 26289 0.9210 +1633 27089 0.4410 +1633 27113 0.4080 +1633 27115 0.9020 +1633 29968 0.4060 +1633 30833 0.9480 +1633 50484 0.6300 +1633 50808 0.9290 +1633 50940 0.9020 +1633 51079 0.6170 +1633 51251 0.9470 +1633 51727 0.7450 +1633 51816 0.9040 +1633 54539 0.6310 +1633 54963 0.4630 +1633 55364 0.5090 +1633 55967 0.6110 +1633 56474 0.4330 +1633 56953 0.9440 +1633 57407 0.4970 +1633 60489 0.6430 +1633 64078 0.7040 +1633 79077 0.9340 +1633 79728 0.7100 +1633 80195 0.4930 +1633 80817 0.4410 +1633 81602 0.4570 +1633 83549 0.6190 +1633 84618 0.9470 +1633 84886 0.4040 +1633 84939 0.4950 +1633 85453 0.4430 +1633 91464 0.5910 +1633 93034 0.9330 +1633 115024 0.9210 +1633 122481 0.9180 +1633 126328 0.4550 +1633 129607 0.9560 +1633 139221 0.4950 +1633 139596 0.4740 +1633 158067 0.9210 +1633 200895 0.5160 +1633 221264 0.9300 +1633 374291 0.4950 +1633 377841 0.9060 +1633 728317 0.4950 +1633 100526794 0.9300 +1633 100532726 0.5780 +1633 102157402 0.9010 +1634 1805 0.8500 +1634 1832 0.4660 +1634 1833 0.4130 +1634 1834 0.5560 +1634 1842 0.6840 +1634 1950 0.9170 +1634 1956 0.9990 +1634 2022 0.5500 +1634 2064 0.9580 +1634 2065 0.9130 +1634 2066 0.9220 +1634 2086 0.5850 +1634 2191 0.4450 +1634 2192 0.8060 +1634 2199 0.5590 +1634 2200 0.9120 +1634 2201 0.6030 +1634 2202 0.4610 +1634 2239 0.6220 +1634 2246 0.5160 +1634 2247 0.8340 +1634 2248 0.9360 +1634 2249 0.9360 +1634 2250 0.9050 +1634 2251 0.9360 +1634 2252 0.9540 +1634 2253 0.9360 +1634 2254 0.9370 +1634 2255 0.9430 +1634 2258 0.6610 +1634 2262 0.5950 +1634 2316 0.4840 +1634 2331 0.9380 +1634 2335 0.9960 +1634 2597 0.6400 +1634 2660 0.8870 +1634 2719 0.6800 +1634 2817 0.7710 +1634 3034 0.6480 +1634 3037 0.6900 +1634 3082 0.8370 +1634 3339 0.9860 +1634 3381 0.7220 +1634 3398 0.4410 +1634 3479 0.9890 +1634 3480 0.6680 +1634 3481 0.6980 +1634 3486 0.4020 +1634 3488 0.4390 +1634 3490 0.4230 +1634 3553 0.6430 +1634 3558 0.4540 +1634 3569 0.5630 +1634 3630 0.6860 +1634 3671 0.4170 +1634 3673 0.5340 +1634 3688 0.4250 +1634 3693 0.4620 +1634 3791 0.9310 +1634 3856 0.5110 +1634 3875 0.5370 +1634 3908 0.5400 +1634 3910 0.4510 +1634 4015 0.6160 +1634 4016 0.4720 +1634 4023 0.4320 +1634 4034 0.4150 +1634 4035 0.8390 +1634 4052 0.6000 +1634 4053 0.4380 +1634 4054 0.4050 +1634 4060 0.9780 +1634 4087 0.4930 +1634 4088 0.4300 +1634 4146 0.6100 +1634 4147 0.4760 +1634 4148 0.4560 +1634 4233 0.9860 +1634 4237 0.9540 +1634 4239 0.5550 +1634 4256 0.5970 +1634 4312 0.5690 +1634 4313 0.8660 +1634 4314 0.7650 +1634 4316 0.7720 +1634 4317 0.4280 +1634 4318 0.7130 +1634 4321 0.4220 +1634 4322 0.6620 +1634 4323 0.8590 +1634 4653 0.5440 +1634 4811 0.7240 +1634 4854 0.5350 +1634 4904 0.9890 +1634 4919 0.5100 +1634 4921 0.4980 +1634 4958 0.5150 +1634 4969 0.7110 +1634 5053 0.4370 +1634 5054 0.6120 +1634 5118 0.5370 +1634 5156 0.8260 +1634 5159 0.5200 +1634 5175 0.4410 +1634 5176 0.5880 +1634 5178 0.4230 +1634 5327 0.5130 +1634 5339 0.4260 +1634 5340 0.6460 +1634 5510 0.4480 +1634 5549 0.5170 +1634 5552 0.4570 +1634 5654 0.4440 +1634 5764 0.4410 +1634 5788 0.4050 +1634 6251 0.4690 +1634 6347 0.4070 +1634 6382 0.9350 +1634 6383 0.7120 +1634 6385 0.7420 +1634 6387 0.6080 +1634 6441 0.7940 +1634 6449 0.4030 +1634 6662 0.4570 +1634 6678 0.9050 +1634 6696 0.7680 +1634 6876 0.4460 +1634 7040 0.9990 +1634 7042 0.8900 +1634 7043 0.9610 +1634 7045 0.7940 +1634 7046 0.4280 +1634 7048 0.4300 +1634 7049 0.4810 +1634 7057 0.8540 +1634 7058 0.7200 +1634 7060 0.5400 +1634 7062 0.4590 +1634 7070 0.4310 +1634 7076 0.5860 +1634 7077 0.5570 +1634 7078 0.6500 +1634 7097 0.9900 +1634 7099 0.9880 +1634 7123 0.4330 +1634 7124 0.9000 +1634 7148 0.4190 +1634 7373 0.9370 +1634 7448 0.9450 +1634 7450 0.6700 +1634 8076 0.4900 +1634 8200 0.4480 +1634 8404 0.4360 +1634 8408 0.4100 +1634 8483 0.5130 +1634 8531 0.9910 +1634 8785 0.4760 +1634 8817 0.9370 +1634 8822 0.9050 +1634 8823 0.9380 +1634 8840 0.7660 +1634 9469 0.5520 +1634 9507 0.5470 +1634 9508 0.5240 +1634 9509 0.4490 +1634 9672 0.6860 +1634 9917 0.6260 +1634 10082 0.6120 +1634 10090 0.4790 +1634 10216 0.5160 +1634 10220 0.5000 +1634 10272 0.4420 +1634 10468 0.6730 +1634 10487 0.5550 +1634 10516 0.5900 +1634 10536 0.9640 +1634 10631 0.7580 +1634 10675 0.4780 +1634 10894 0.4160 +1634 11081 0.6470 +1634 11096 0.5380 +1634 11117 0.5770 +1634 11167 0.4190 +1634 11285 0.6350 +1634 22795 0.4530 +1634 22856 0.7330 +1634 22859 0.5140 +1634 23213 0.4400 +1634 23266 0.5320 +1634 23284 0.5320 +1634 23507 0.5050 +1634 25987 0.4330 +1634 26229 0.5710 +1634 26281 0.9380 +1634 26291 0.4640 +1634 27006 0.9400 +1634 29940 0.6850 +1634 30816 0.5650 +1634 50515 0.5510 +1634 50848 0.4240 +1634 51363 0.5390 +1634 54480 0.4600 +1634 54829 0.4760 +1634 55222 0.4050 +1634 55379 0.4290 +1634 55454 0.5240 +1634 55501 0.5180 +1634 55790 0.5120 +1634 56262 0.5130 +1634 56548 0.4760 +1634 56729 0.8870 +1634 56944 0.4310 +1634 60506 0.4680 +1634 63827 0.7540 +1634 64102 0.7900 +1634 64131 0.6350 +1634 64132 0.5470 +1634 79442 0.5000 +1634 79586 0.5730 +1634 79987 0.4360 +1634 80131 0.5210 +1634 80781 0.6310 +1634 83468 0.4570 +1634 83539 0.4360 +1634 84230 0.4640 +1634 84467 0.4760 +1634 84666 0.8790 +1634 89780 0.5080 +1634 92126 0.5190 +1634 113189 0.6650 +1634 116064 0.4800 +1634 122769 0.6800 +1634 126792 0.5800 +1634 127435 0.4240 +1634 150356 0.4130 +1634 151449 0.4750 +1634 151887 0.4440 +1634 164656 0.7620 +1634 166012 0.4480 +1634 221914 0.5990 +1634 255252 0.4920 +1634 283078 0.6320 +1634 283298 0.4130 +1634 337876 0.4380 +1634 339291 0.4990 +1634 339451 0.5930 +1634 375790 0.8070 +1634 376132 0.5110 +1634 390205 0.5080 +1634 405754 0.5840 +1634 474354 0.5000 +1634 642658 0.4970 +1635 1716 0.5660 +1635 1719 0.6020 +1635 1841 0.9830 +1635 1854 0.9770 +1635 1890 0.8290 +1635 2030 0.5960 +1635 4705 0.4140 +1635 4907 0.9120 +1635 6240 0.6290 +1635 6241 0.5650 +1635 7083 0.8830 +1635 7084 0.9700 +1635 7298 0.9980 +1635 7371 0.6020 +1635 7372 0.5740 +1635 7378 0.6480 +1635 9154 0.5400 +1635 10980 0.4230 +1635 22978 0.9490 +1635 30833 0.9420 +1635 50484 0.4920 +1635 51251 0.9300 +1635 51727 0.5090 +1635 54963 0.6020 +1635 55270 0.7080 +1635 56474 0.5510 +1635 56953 0.9290 +1635 64078 0.4800 +1635 79077 0.9590 +1635 81602 0.5140 +1635 83549 0.6300 +1635 84618 0.9380 +1635 93034 0.9200 +1635 115024 0.9080 +1635 115416 0.5180 +1635 129607 0.9550 +1635 134637 0.4130 +1635 139596 0.5770 +1635 151531 0.6030 +1635 200895 0.5880 +1635 284439 0.4730 +1635 387103 0.4070 +1635 100526794 0.9040 +1636 1803 0.8740 +1636 1889 0.6720 +1636 1906 0.7790 +1636 1909 0.5300 +1636 1910 0.4560 +1636 1956 0.4190 +1636 1977 0.4420 +1636 2022 0.5200 +1636 2028 0.6390 +1636 2056 0.6660 +1636 2064 0.4010 +1636 2086 0.5510 +1636 2099 0.5070 +1636 2147 0.6400 +1636 2152 0.6410 +1636 2155 0.4060 +1636 2161 0.4580 +1636 2191 0.4390 +1636 2247 0.5450 +1636 2335 0.4840 +1636 2353 0.4500 +1636 2475 0.4360 +1636 2597 0.5390 +1636 2641 0.6660 +1636 2658 0.4650 +1636 2660 0.6600 +1636 2717 0.4550 +1636 2740 0.6230 +1636 2776 0.5020 +1636 2784 0.7790 +1636 2868 0.5660 +1636 2875 0.7200 +1636 2877 0.6560 +1636 2878 0.6580 +1636 2880 0.6570 +1636 2882 0.6570 +1636 2908 0.6310 +1636 3077 0.5230 +1636 3091 0.4930 +1636 3098 0.4270 +1636 3156 0.8060 +1636 3162 0.4470 +1636 3240 0.4440 +1636 3291 0.4470 +1636 3308 0.4970 +1636 3309 0.5460 +1636 3320 0.5090 +1636 3326 0.5040 +1636 3383 0.5810 +1636 3416 0.5370 +1636 3426 0.4930 +1636 3439 0.4590 +1636 3440 0.4060 +1636 3456 0.4320 +1636 3458 0.5830 +1636 3479 0.5110 +1636 3552 0.5700 +1636 3553 0.6920 +1636 3558 0.5050 +1636 3565 0.4470 +1636 3569 0.7760 +1636 3576 0.5440 +1636 3586 0.6040 +1636 3605 0.6390 +1636 3606 0.4760 +1636 3627 0.4460 +1636 3630 0.8490 +1636 3667 0.6140 +1636 3674 0.4200 +1636 3678 0.4500 +1636 3688 0.4170 +1636 3725 0.4690 +1636 3779 0.4230 +1636 3791 0.5210 +1636 3816 0.6740 +1636 3817 0.6220 +1636 3818 0.5290 +1636 3827 0.9950 +1636 3906 0.4150 +1636 3934 0.5070 +1636 3952 0.6110 +1636 3958 0.4360 +1636 4012 0.5620 +1636 4018 0.4170 +1636 4087 0.4070 +1636 4088 0.5620 +1636 4128 0.5030 +1636 4129 0.4720 +1636 4142 0.5630 +1636 4151 0.5020 +1636 4192 0.5070 +1636 4282 0.4080 +1636 4306 0.8910 +1636 4311 0.8820 +1636 4312 0.5980 +1636 4313 0.4830 +1636 4318 0.7330 +1636 4353 0.5620 +1636 4524 0.8180 +1636 4548 0.5390 +1636 4552 0.4100 +1636 4627 0.6590 +1636 4790 0.4760 +1636 4803 0.5480 +1636 4842 0.4430 +1636 4846 0.7310 +1636 4868 0.5840 +1636 4878 0.8360 +1636 4879 0.8100 +1636 4880 0.6060 +1636 4883 0.5610 +1636 4922 0.4480 +1636 5045 0.8030 +1636 5054 0.7100 +1636 5095 0.4530 +1636 5159 0.4650 +1636 5175 0.4630 +1636 5199 0.4320 +1636 5265 0.6060 +1636 5286 0.4790 +1636 5310 0.4570 +1636 5327 0.6760 +1636 5336 0.4570 +1636 5340 0.6140 +1636 5345 0.4620 +1636 5409 0.4370 +1636 5443 0.5710 +1636 5444 0.4800 +1636 5465 0.5390 +1636 5468 0.6740 +1636 5547 0.5400 +1636 5550 0.6420 +1636 5594 0.5350 +1636 5595 0.4470 +1636 5657 0.5950 +1636 5740 0.5500 +1636 5741 0.6660 +1636 5743 0.5760 +1636 5972 0.9870 +1636 6051 0.4090 +1636 6347 0.6250 +1636 6401 0.7740 +1636 6403 0.5060 +1636 6476 0.6790 +1636 6517 0.4370 +1636 6519 0.5660 +1636 6523 0.4210 +1636 6524 0.7800 +1636 6532 0.4070 +1636 6550 0.4470 +1636 6559 0.4560 +1636 6564 0.6540 +1636 6565 0.6420 +1636 6696 0.4360 +1636 6722 0.4220 +1636 6750 0.4060 +1636 6863 0.7830 +1636 6868 0.8230 +1636 7035 0.5110 +1636 7040 0.6740 +1636 7056 0.4530 +1636 7064 0.6110 +1636 7076 0.4620 +1636 7077 0.4240 +1636 7099 0.5280 +1636 7113 0.8620 +1636 7124 0.7200 +1636 7137 0.6560 +1636 7139 0.5280 +1636 7157 0.4260 +1636 7273 0.4040 +1636 7276 0.4950 +1636 7299 0.5440 +1636 7369 0.4050 +1636 7412 0.5800 +1636 7450 0.6230 +1636 7498 0.7240 +1636 7512 0.6440 +1636 7827 0.5290 +1636 7837 0.5400 +1636 8074 0.5100 +1636 8170 0.4300 +1636 8542 0.4820 +1636 8654 0.5710 +1636 8710 0.4680 +1636 8862 0.5430 +1636 8972 0.6750 +1636 9360 0.4700 +1636 9365 0.4790 +1636 9370 0.6260 +1636 9622 0.8420 +1636 9718 0.6890 +1636 9844 0.4610 +1636 10072 0.4150 +1636 10156 0.4350 +1636 10159 0.7220 +1636 10220 0.8150 +1636 10332 0.6910 +1636 10724 0.4460 +1636 10858 0.4590 +1636 10891 0.4040 +1636 22925 0.4040 +1636 23411 0.4890 +1636 23621 0.4300 +1636 30816 0.5860 +1636 50507 0.6400 +1636 51752 0.4680 +1636 51806 0.7560 +1636 53905 0.4050 +1636 54205 0.4200 +1636 54716 0.5020 +1636 56729 0.4090 +1636 57085 0.4070 +1636 57122 0.5610 +1636 57211 0.4400 +1636 57393 0.7980 +1636 57486 0.7300 +1636 59272 0.9560 +1636 64805 0.6410 +1636 65125 0.4980 +1636 79258 0.8890 +1636 79902 0.5390 +1636 81846 0.4220 +1636 81929 0.6950 +1636 84706 0.5120 +1636 91860 0.7630 +1636 114757 0.4350 +1636 116511 0.8110 +1636 116512 0.4780 +1636 130271 0.4050 +1636 137902 0.5400 +1636 163688 0.7550 +1636 167227 0.5600 +1636 255738 0.6510 +1636 257202 0.6570 +1636 283383 0.4280 +1636 284359 0.5150 +1636 340024 0.7150 +1636 340485 0.5280 +1636 405754 0.5510 +1636 440387 0.6150 +1636 493869 0.6570 +1636 653361 0.4300 +1636 110599583 0.4030 +1638 1652 0.6960 +1638 1908 0.5550 +1638 1910 0.5660 +1638 2315 0.9210 +1638 2597 0.4010 +1638 2911 0.6880 +1638 3308 0.7590 +1638 3458 0.4230 +1638 3815 0.4780 +1638 3916 0.4930 +1638 4157 0.7590 +1638 4254 0.5310 +1638 4286 0.9560 +1638 4644 0.5240 +1638 4935 0.6740 +1638 4948 0.6890 +1638 5077 0.7670 +1638 5081 0.4540 +1638 5354 0.4030 +1638 5443 0.7560 +1638 5566 0.4160 +1638 5567 0.4170 +1638 5568 0.4180 +1638 5593 0.4260 +1638 5873 0.6660 +1638 6490 0.8980 +1638 6591 0.5460 +1638 6663 0.8600 +1638 7030 0.4820 +1638 7299 0.9580 +1638 7306 0.7450 +1638 7942 0.4680 +1638 9032 0.4800 +1638 10457 0.4710 +1638 22797 0.5780 +1638 23532 0.4760 +1638 23682 0.4950 +1638 27022 0.6400 +1638 27069 0.4470 +1638 51061 0.4660 +1638 51151 0.7940 +1638 51176 0.4150 +1638 79083 0.4570 +1638 80070 0.4290 +1638 84539 0.5630 +1638 91584 0.4240 +1638 92211 0.4060 +1638 219931 0.4690 +1638 283652 0.6740 +1639 1778 0.9990 +1639 1780 0.9980 +1639 1781 0.9970 +1639 1783 0.9870 +1639 1915 0.6350 +1639 1937 0.5140 +1639 2035 0.4160 +1639 2288 0.4510 +1639 2318 0.4890 +1639 2335 0.5770 +1639 2521 0.7460 +1639 2589 0.5040 +1639 2590 0.5210 +1639 2801 0.6590 +1639 2804 0.7590 +1639 2885 0.6490 +1639 2896 0.4140 +1639 2908 0.4050 +1639 3064 0.8960 +1639 3092 0.5030 +1639 3161 0.4120 +1639 3178 0.6360 +1639 3187 0.4010 +1639 3320 0.8840 +1639 3326 0.5900 +1639 3508 0.4530 +1639 3667 0.5090 +1639 3725 0.5310 +1639 3796 0.8510 +1639 3797 0.5820 +1639 3798 0.8680 +1639 3799 0.8620 +1639 3800 0.6850 +1639 3831 0.8200 +1639 3832 0.9260 +1639 3835 0.5120 +1639 4008 0.5280 +1639 4134 0.4170 +1639 4137 0.8170 +1639 4218 0.7960 +1639 4330 0.5490 +1639 4478 0.7180 +1639 4692 0.4400 +1639 4735 0.4380 +1639 4744 0.7120 +1639 4750 0.5140 +1639 4869 0.5840 +1639 4926 0.7940 +1639 4957 0.8050 +1639 5048 0.9560 +1639 5062 0.4210 +1639 5108 0.7410 +1639 5116 0.6760 +1639 5216 0.6100 +1639 5290 0.5310 +1639 5295 0.5290 +1639 5335 0.6980 +1639 5347 0.9150 +1639 5495 0.5490 +1639 5518 0.4530 +1639 5573 0.5650 +1639 5868 0.4060 +1639 5870 0.8770 +1639 5903 0.6730 +1639 6238 0.6130 +1639 6249 0.9990 +1639 6311 0.5920 +1639 6464 0.5600 +1639 6642 0.5900 +1639 6647 0.8550 +1639 6683 0.4970 +1639 6774 0.5220 +1639 6801 0.6940 +1639 6804 0.4530 +1639 6811 0.5900 +1639 6944 0.4610 +1639 6993 0.8490 +1639 7124 0.4350 +1639 7170 0.6740 +1639 7171 0.6340 +1639 7175 0.5790 +1639 7277 0.6000 +1639 7414 0.5320 +1639 7415 0.8990 +1639 7430 0.4630 +1639 7431 0.5870 +1639 7461 0.4150 +1639 7494 0.7690 +1639 8496 0.6940 +1639 8655 0.9430 +1639 8671 0.6160 +1639 8729 0.6590 +1639 8766 0.6560 +1639 8831 0.4960 +1639 8878 0.7760 +1639 9001 0.9970 +1639 9043 0.7250 +1639 9055 0.4530 +1639 9183 0.7190 +1639 9217 0.7990 +1639 9218 0.4080 +1639 9371 0.6380 +1639 9382 0.5340 +1639 9451 0.5450 +1639 9493 0.5410 +1639 9527 0.5760 +1639 9531 0.6830 +1639 9570 0.5210 +1639 9609 0.5100 +1639 9648 0.6560 +1639 9782 0.6090 +1639 9793 0.4630 +1639 9810 0.4230 +1639 9811 0.7580 +1639 9859 0.8400 +1639 9871 0.4180 +1639 9896 0.7750 +1639 9928 0.4910 +1639 10013 0.7680 +1639 10048 0.5970 +1639 10112 0.6850 +1639 10120 0.9970 +1639 10121 0.9990 +1639 10133 0.8540 +1639 10155 0.5930 +1639 10213 0.4210 +1639 10280 0.4910 +1639 10342 0.5580 +1639 10403 0.4790 +1639 10466 0.5040 +1639 10540 0.9990 +1639 10575 0.7530 +1639 10671 0.9990 +1639 10726 0.6070 +1639 10728 0.4050 +1639 10817 0.4990 +1639 10818 0.4990 +1639 10908 0.4400 +1639 10940 0.4590 +1639 10982 0.5400 +1639 11004 0.8430 +1639 11064 0.7980 +1639 11070 0.5220 +1639 11076 0.9590 +1639 11127 0.8430 +1639 11129 0.6380 +1639 11258 0.9990 +1639 11275 0.6230 +1639 22796 0.5090 +1639 22872 0.6840 +1639 22906 0.6320 +1639 22919 0.9970 +1639 22920 0.8010 +1639 22924 0.9840 +1639 22930 0.5240 +1639 22931 0.5410 +1639 22981 0.9020 +1639 23025 0.4780 +1639 23064 0.7850 +1639 23095 0.5330 +1639 23122 0.7700 +1639 23162 0.9400 +1639 23299 0.9980 +1639 23332 0.7410 +1639 23354 0.5540 +1639 23386 0.4030 +1639 23400 0.5730 +1639 23435 0.7910 +1639 23557 0.4360 +1639 23650 0.4200 +1639 23710 0.5320 +1639 24137 0.6230 +1639 25782 0.5180 +1639 25793 0.4380 +1639 25839 0.5300 +1639 25978 0.6540 +1639 26153 0.5080 +1639 26234 0.6270 +1639 26286 0.5180 +1639 26353 0.4180 +1639 26580 0.4390 +1639 27019 0.4260 +1639 27131 0.9360 +1639 27185 0.6450 +1639 27436 0.7490 +1639 29110 0.4560 +1639 29115 0.5380 +1639 29127 0.5300 +1639 29763 0.4240 +1639 29765 0.5190 +1639 29888 0.6380 +1639 29978 0.6840 +1639 51143 0.9980 +1639 51164 0.9990 +1639 51199 0.9640 +1639 51272 0.5040 +1639 51361 0.5070 +1639 51560 0.5470 +1639 51626 0.4460 +1639 51699 0.4670 +1639 53335 0.5550 +1639 54801 0.5690 +1639 54820 0.7420 +1639 54930 0.5280 +1639 55055 0.6300 +1639 55140 0.6310 +1639 55142 0.4990 +1639 55277 0.6240 +1639 55559 0.5280 +1639 55686 0.5170 +1639 55700 0.4290 +1639 55704 0.5760 +1639 55737 0.4920 +1639 55738 0.5170 +1639 55749 0.4570 +1639 55765 0.5950 +1639 55860 0.9990 +1639 56922 0.5520 +1639 56992 0.5800 +1639 57180 0.8170 +1639 57448 0.6160 +1639 57511 0.5120 +1639 57679 0.7940 +1639 57835 0.7760 +1639 58533 0.9340 +1639 60412 0.5280 +1639 60626 0.6830 +1639 64446 0.6360 +1639 64689 0.6110 +1639 64837 0.7680 +1639 66000 0.6550 +1639 66008 0.6000 +1639 79441 0.4990 +1639 79659 0.4300 +1639 79803 0.6220 +1639 79866 0.5120 +1639 79902 0.4990 +1639 80124 0.4850 +1639 80184 0.5920 +1639 80208 0.5950 +1639 80304 0.5690 +1639 80310 0.7480 +1639 80323 0.7720 +1639 81565 0.7700 +1639 81930 0.5580 +1639 83547 0.7670 +1639 83548 0.5070 +1639 83658 0.9400 +1639 84343 0.4440 +1639 84364 0.5250 +1639 84376 0.7560 +1639 84516 0.9990 +1639 84517 0.5390 +1639 84643 0.5690 +1639 89927 0.6670 +1639 89953 0.7610 +1639 90060 0.8020 +1639 90417 0.5610 +1639 91582 0.6950 +1639 91949 0.5210 +1639 92558 0.8670 +1639 93323 0.5630 +1639 93661 0.5330 +1639 93664 0.5320 +1639 113457 0.4550 +1639 115106 0.5060 +1639 117177 0.7150 +1639 120892 0.5360 +1639 140735 0.7100 +1639 144165 0.4930 +1639 145508 0.7670 +1639 147700 0.7430 +1639 166336 0.4470 +1639 203228 0.6870 +1639 284697 0.4450 +1639 285643 0.5580 +1639 346288 0.4530 +1639 400916 0.6010 +1639 440193 0.5650 +1639 653857 0.8220 +1639 728642 0.5040 +1639 729440 0.7250 +1639 100652824 0.4330 +1641 1674 0.4360 +1641 1742 0.5230 +1641 1746 0.5470 +1641 1950 0.5770 +1641 1995 0.4750 +1641 1996 0.4740 +1641 2026 0.4060 +1641 2173 0.6110 +1641 2247 0.6110 +1641 2258 0.4550 +1641 2290 0.4110 +1641 2316 0.5090 +1641 2353 0.5270 +1641 2354 0.4010 +1641 2571 0.5340 +1641 2572 0.4670 +1641 2596 0.5180 +1641 2597 0.4370 +1641 2668 0.5060 +1641 2670 0.8640 +1641 2872 0.7100 +1641 2903 0.4040 +1641 2904 0.4360 +1641 3479 0.4110 +1641 4131 0.4890 +1641 4133 0.7570 +1641 4137 0.4820 +1641 4155 0.5560 +1641 4204 0.4150 +1641 4440 0.4950 +1641 4482 0.4220 +1641 4684 0.6750 +1641 4744 0.4870 +1641 4760 0.7130 +1641 4762 0.4250 +1641 4803 0.5310 +1641 4852 0.4190 +1641 4897 0.4680 +1641 4908 0.4070 +1641 4915 0.5320 +1641 5048 0.8660 +1641 5049 0.4220 +1641 5080 0.6610 +1641 5261 0.8100 +1641 5454 0.4110 +1641 5566 0.5230 +1641 5568 0.5620 +1641 5613 0.5680 +1641 5629 0.4370 +1641 5649 0.5430 +1641 5663 0.4010 +1641 5681 0.8500 +1641 5816 0.7150 +1641 6285 0.6420 +1641 6469 0.4530 +1641 6507 0.4470 +1641 6656 0.4690 +1641 6657 0.6860 +1641 6664 0.4240 +1641 6795 0.5510 +1641 6853 0.5820 +1641 6854 0.4400 +1641 6855 0.6130 +1641 7054 0.6890 +1641 7531 0.5050 +1641 7837 0.6130 +1641 7846 0.5940 +1641 7867 0.8260 +1641 8239 0.6280 +1641 8320 0.5960 +1641 8404 0.4030 +1641 8536 0.7860 +1641 8550 0.5380 +1641 8842 0.4070 +1641 8851 0.4460 +1641 9201 0.8860 +1641 9261 0.7750 +1641 9263 0.4050 +1641 9856 0.6450 +1641 9925 0.4230 +1641 10215 0.7060 +1641 10376 0.9320 +1641 10381 0.7050 +1641 10716 0.6320 +1641 10763 0.8760 +1641 11076 0.4700 +1641 11200 0.4410 +1641 22924 0.5710 +1641 23114 0.8850 +1641 23604 0.4300 +1641 25913 0.6350 +1641 26137 0.4140 +1641 51567 0.4350 +1641 51806 0.5500 +1641 51807 0.4200 +1641 54820 0.5150 +1641 55856 0.5550 +1641 57030 0.4880 +1641 57084 0.4480 +1641 57118 0.8890 +1641 57172 0.6830 +1641 63973 0.5720 +1641 64919 0.4430 +1641 65975 0.7850 +1641 81565 0.5510 +1641 84687 0.8970 +1641 85443 0.7270 +1641 85481 0.8990 +1641 91860 0.5490 +1641 116448 0.4490 +1641 137902 0.6130 +1641 139728 0.8850 +1641 146713 0.8880 +1641 163688 0.5490 +1641 170302 0.5620 +1641 340156 0.4530 +1641 341019 0.7700 +1641 347733 0.9500 +1641 349565 0.4330 +1641 388585 0.4030 +1642 1643 0.9990 +1642 1786 0.6380 +1642 1869 0.5080 +1642 1915 0.4790 +1642 2010 0.4630 +1642 2033 0.8910 +1642 2067 0.8930 +1642 2068 0.8620 +1642 2071 0.8750 +1642 2072 0.7590 +1642 2073 0.7940 +1642 2074 0.9880 +1642 2146 0.5540 +1642 2177 0.4570 +1642 2180 0.4100 +1642 2237 0.6250 +1642 2253 0.4620 +1642 2309 0.5270 +1642 2475 0.9950 +1642 2491 0.4050 +1642 2547 0.7030 +1642 2648 0.7580 +1642 2873 0.9490 +1642 2935 0.9200 +1642 2956 0.4020 +1642 2965 0.6800 +1642 2966 0.6440 +1642 2967 0.6340 +1642 2968 0.6470 +1642 3012 0.9450 +1642 3014 0.5170 +1642 3015 0.5330 +1642 3018 0.4730 +1642 3021 0.5160 +1642 3064 0.4380 +1642 3065 0.8880 +1642 3066 0.6790 +1642 3093 0.5610 +1642 3150 0.7290 +1642 3205 0.7060 +1642 3214 0.7530 +1642 3725 0.6310 +1642 3836 0.4310 +1642 3837 0.6130 +1642 3978 0.8060 +1642 3980 0.6160 +1642 4193 0.8310 +1642 4194 0.4860 +1642 4212 0.5450 +1642 4214 0.4510 +1642 4287 0.4960 +1642 4331 0.6420 +1642 4609 0.6670 +1642 4738 0.9690 +1642 4771 0.8660 +1642 4798 0.4080 +1642 4926 0.4880 +1642 4968 0.5270 +1642 5111 0.6400 +1642 5252 0.5990 +1642 5424 0.6460 +1642 5425 0.5770 +1642 5426 0.7890 +1642 5427 0.5680 +1642 5431 0.9320 +1642 5432 0.9070 +1642 5433 0.9120 +1642 5434 0.9120 +1642 5435 0.9050 +1642 5436 0.9120 +1642 5437 0.9100 +1642 5438 0.9070 +1642 5439 0.9220 +1642 5440 0.9020 +1642 5441 0.9070 +1642 5554 0.6550 +1642 5555 0.6540 +1642 5591 0.4070 +1642 5682 0.5630 +1642 5687 0.4770 +1642 5700 0.4230 +1642 5886 0.8680 +1642 5887 0.9370 +1642 5888 0.4190 +1642 5928 0.8580 +1642 5929 0.8010 +1642 5931 0.9520 +1642 5965 0.4410 +1642 5981 0.5260 +1642 5982 0.5950 +1642 5983 0.7340 +1642 5984 0.5660 +1642 5985 0.5870 +1642 5997 0.6630 +1642 6117 0.7390 +1642 6118 0.6820 +1642 6119 0.6690 +1642 6143 0.4330 +1642 6233 0.6090 +1642 6500 0.8740 +1642 6502 0.9150 +1642 6596 0.4100 +1642 6612 0.5870 +1642 6613 0.6520 +1642 6657 0.5550 +1642 6749 0.4550 +1642 6772 0.4130 +1642 6773 0.7790 +1642 6829 0.4030 +1642 6830 0.8240 +1642 6839 0.9020 +1642 6907 0.4160 +1642 6917 0.5550 +1642 6921 0.8220 +1642 6923 0.8130 +1642 7013 0.4060 +1642 7015 0.5650 +1642 7080 0.6070 +1642 7157 0.7110 +1642 7158 0.4560 +1642 7182 0.6560 +1642 7189 0.5340 +1642 7248 0.4900 +1642 7249 0.5300 +1642 7311 0.5410 +1642 7314 0.5940 +1642 7316 0.7090 +1642 7317 0.8170 +1642 7320 0.6540 +1642 7321 0.5390 +1642 7323 0.4360 +1642 7324 0.5150 +1642 7325 0.4680 +1642 7326 0.4190 +1642 7329 0.6630 +1642 7334 0.6860 +1642 7336 0.6700 +1642 7337 0.4790 +1642 7341 0.6770 +1642 7374 0.9610 +1642 7386 0.7960 +1642 7398 0.6470 +1642 7405 0.5830 +1642 7486 0.5030 +1642 7507 0.9150 +1642 7508 0.9200 +1642 7515 0.6720 +1642 7520 0.8140 +1642 7528 0.4880 +1642 7529 0.4140 +1642 7874 0.7390 +1642 7884 0.6000 +1642 8065 0.7480 +1642 8148 0.5340 +1642 8178 0.4170 +1642 8237 0.4150 +1642 8290 0.5110 +1642 8294 0.8200 +1642 8335 0.8010 +1642 8337 0.4410 +1642 8338 0.4350 +1642 8349 0.6640 +1642 8350 0.8700 +1642 8351 0.8240 +1642 8352 0.8460 +1642 8353 0.8470 +1642 8354 0.8240 +1642 8355 0.8240 +1642 8356 0.9000 +1642 8357 0.8240 +1642 8358 0.8240 +1642 8359 0.8200 +1642 8360 0.8190 +1642 8361 0.9310 +1642 8362 0.8200 +1642 8363 0.8200 +1642 8364 0.8180 +1642 8366 0.8210 +1642 8367 0.8190 +1642 8368 0.8200 +1642 8370 0.8190 +1642 8445 0.9110 +1642 8450 0.9990 +1642 8451 0.9990 +1642 8452 0.7230 +1642 8453 0.8120 +1642 8454 0.9680 +1642 8464 0.4970 +1642 8533 0.9320 +1642 8545 0.4730 +1642 8549 0.4200 +1642 8554 0.4790 +1642 8607 0.7030 +1642 8621 0.5980 +1642 8668 0.5410 +1642 8678 0.5850 +1642 8721 0.4590 +1642 8726 0.5290 +1642 8812 0.9240 +1642 8816 0.9980 +1642 8841 0.4690 +1642 8850 0.5880 +1642 8883 0.7390 +1642 8945 0.9800 +1642 8968 0.8240 +1642 8970 0.8510 +1642 9039 0.7070 +1642 9040 0.7960 +1642 9097 0.4720 +1642 9112 0.4210 +1642 9156 0.7730 +1642 9184 0.4130 +1642 9219 0.4450 +1642 9276 0.4940 +1642 9318 0.9440 +1642 9361 0.4750 +1642 9401 0.6700 +1642 9493 0.5980 +1642 9557 0.5960 +1642 9584 0.9770 +1642 9612 0.4720 +1642 9616 0.8890 +1642 9646 0.8380 +1642 9730 0.9990 +1642 9807 0.6750 +1642 9810 0.8820 +1642 9869 0.5320 +1642 9948 0.4650 +1642 9978 0.9990 +1642 10038 0.7530 +1642 10075 0.7240 +1642 10155 0.6450 +1642 10213 0.5510 +1642 10238 0.9950 +1642 10300 0.5100 +1642 10309 0.5010 +1642 10320 0.9450 +1642 10401 0.4310 +1642 10445 0.4270 +1642 10477 0.6140 +1642 10594 0.4340 +1642 10607 0.7080 +1642 10714 0.5450 +1642 10782 0.4990 +1642 10885 0.5970 +1642 10920 0.9340 +1642 10980 0.9350 +1642 10987 0.9630 +1642 11059 0.4220 +1642 11073 0.5290 +1642 11091 0.8510 +1642 11146 0.8330 +1642 11180 0.4760 +1642 11186 0.4010 +1642 11198 0.5670 +1642 11200 0.4730 +1642 11331 0.5550 +1642 22806 0.6280 +1642 22948 0.8410 +1642 23020 0.8260 +1642 23038 0.9960 +1642 23113 0.4480 +1642 23137 0.7270 +1642 23142 0.5000 +1642 23197 0.5010 +1642 23205 0.4100 +1642 23291 0.4370 +1642 23305 0.4210 +1642 23326 0.5000 +1642 23358 0.4530 +1642 23363 0.4160 +1642 23411 0.5260 +1642 23412 0.5110 +1642 23450 0.8810 +1642 23451 0.4260 +1642 23468 0.5890 +1642 23476 0.5740 +1642 23583 0.4150 +1642 25833 0.5380 +1642 25853 0.9990 +1642 25879 0.9700 +1642 25939 0.8040 +1642 26043 0.6420 +1642 26094 0.9990 +1642 26133 0.9970 +1642 26259 0.8170 +1642 26270 0.6180 +1642 26523 0.5290 +1642 27161 0.5210 +1642 27338 0.6020 +1642 27339 0.4050 +1642 28952 0.5230 +1642 28991 0.5070 +1642 29099 0.5520 +1642 50717 0.9990 +1642 50813 0.8740 +1642 51035 0.5280 +1642 51122 0.5080 +1642 51138 0.9400 +1642 51185 0.9990 +1642 51343 0.4830 +1642 51366 0.7940 +1642 51397 0.5210 +1642 51455 0.4820 +1642 51514 0.9990 +1642 51547 0.8720 +1642 51703 0.4100 +1642 51755 0.9740 +1642 54014 0.5540 +1642 54107 0.5540 +1642 54165 0.7290 +1642 54461 0.9990 +1642 54541 0.4290 +1642 54617 0.5900 +1642 54623 0.8090 +1642 54778 0.6080 +1642 54790 0.4490 +1642 54853 0.4870 +1642 54876 0.9700 +1642 54939 0.5070 +1642 54951 0.5620 +1642 55023 0.9100 +1642 55054 0.4060 +1642 55070 0.9990 +1642 55100 0.5350 +1642 55147 0.5720 +1642 55148 0.4320 +1642 55167 0.4200 +1642 55208 0.5120 +1642 55234 0.8070 +1642 55294 0.6170 +1642 55388 0.7190 +1642 55626 0.9940 +1642 55827 0.9980 +1642 55832 0.8760 +1642 55869 0.4190 +1642 56655 0.5840 +1642 56852 0.6550 +1642 56949 0.7470 +1642 57332 0.4290 +1642 57521 0.7270 +1642 57599 0.6260 +1642 57654 0.9400 +1642 57695 0.4930 +1642 57804 0.5040 +1642 60489 0.4060 +1642 64135 0.4380 +1642 64210 0.5100 +1642 64326 0.9950 +1642 64421 0.5000 +1642 64708 0.8670 +1642 64795 0.4790 +1642 79016 0.9990 +1642 79084 0.5170 +1642 79132 0.4060 +1642 79228 0.6140 +1642 79269 0.9730 +1642 79577 0.8260 +1642 79621 0.4030 +1642 79677 0.4450 +1642 79718 0.4590 +1642 79723 0.6240 +1642 79913 0.6810 +1642 79968 0.8740 +1642 80067 0.9580 +1642 80119 0.4860 +1642 80198 0.7150 +1642 80232 0.6180 +1642 80344 0.9990 +1642 80349 0.8960 +1642 80829 0.5240 +1642 81616 0.4100 +1642 81620 0.9760 +1642 83737 0.4380 +1642 83743 0.7470 +1642 83752 0.4360 +1642 84131 0.7490 +1642 84153 0.4040 +1642 84259 0.6410 +1642 84464 0.7440 +1642 84678 0.5630 +1642 85236 0.8510 +1642 85363 0.4420 +1642 90379 0.9990 +1642 93611 0.8650 +1642 93973 0.4030 +1642 120892 0.5170 +1642 121504 0.8250 +1642 123169 0.8510 +1642 125476 0.4420 +1642 126321 0.4480 +1642 138009 0.8530 +1642 139170 0.8460 +1642 139425 0.6460 +1642 146956 0.5270 +1642 149951 0.5080 +1642 150684 0.5330 +1642 170622 0.5170 +1642 203068 0.4040 +1642 221302 0.5300 +1642 253714 0.6430 +1642 254065 0.6240 +1642 283899 0.4330 +1642 285429 0.9740 +1642 286053 0.4160 +1642 340578 0.7070 +1642 347442 0.7910 +1642 387893 0.6530 +1642 404672 0.7650 +1642 440093 0.5110 +1642 440686 0.5110 +1642 448831 0.4240 +1642 554313 0.8200 +1642 653604 0.5150 +1642 100533467 0.6030 +1643 1647 0.6210 +1643 1869 0.5110 +1643 2010 0.7820 +1643 2033 0.8030 +1643 2067 0.8590 +1643 2068 0.9150 +1643 2071 0.8770 +1643 2072 0.8100 +1643 2073 0.8430 +1643 2074 0.6960 +1643 2146 0.4410 +1643 2178 0.4850 +1643 2188 0.4550 +1643 2232 0.7300 +1643 2237 0.6280 +1643 2547 0.7730 +1643 2648 0.5430 +1643 2873 0.9080 +1643 2956 0.6280 +1643 2965 0.7090 +1643 2966 0.6670 +1643 2967 0.7070 +1643 2968 0.7030 +1643 3012 0.9480 +1643 3014 0.4630 +1643 3018 0.4180 +1643 3065 0.6320 +1643 3150 0.5950 +1643 3978 0.5830 +1643 3980 0.4320 +1643 4193 0.5500 +1643 4331 0.6700 +1643 4436 0.4930 +1643 4437 0.4400 +1643 4683 0.4270 +1643 4738 0.7220 +1643 4798 0.4140 +1643 4913 0.4040 +1643 4968 0.6430 +1643 5204 0.5860 +1643 5594 0.4360 +1643 5886 0.8500 +1643 5887 0.9290 +1643 5888 0.6670 +1643 5889 0.4420 +1643 5890 0.4070 +1643 5892 0.4250 +1643 5893 0.4870 +1643 5929 0.5500 +1643 5931 0.6930 +1643 6117 0.8260 +1643 6118 0.7260 +1643 6119 0.6710 +1643 6233 0.5650 +1643 6502 0.4950 +1643 6597 0.8130 +1643 6612 0.6560 +1643 6613 0.5770 +1643 6839 0.5080 +1643 6917 0.4950 +1643 7157 0.9790 +1643 7158 0.4340 +1643 7311 0.5080 +1643 7314 0.5480 +1643 7316 0.5480 +1643 7329 0.5600 +1643 7334 0.6100 +1643 7336 0.5920 +1643 7341 0.6020 +1643 7415 0.5100 +1643 7507 0.9890 +1643 7508 0.9820 +1643 7515 0.5990 +1643 7517 0.5020 +1643 7518 0.5690 +1643 7520 0.7700 +1643 7528 0.4460 +1643 7874 0.5820 +1643 8294 0.8270 +1643 8335 0.8120 +1643 8337 0.4390 +1643 8338 0.5850 +1643 8342 0.4050 +1643 8349 0.4460 +1643 8350 0.9310 +1643 8351 0.9090 +1643 8352 0.9210 +1643 8353 0.9190 +1643 8354 0.9070 +1643 8355 0.9070 +1643 8356 0.9620 +1643 8357 0.9070 +1643 8358 0.9070 +1643 8359 0.8320 +1643 8360 0.8270 +1643 8361 0.9300 +1643 8362 0.8270 +1643 8363 0.8270 +1643 8364 0.8270 +1643 8366 0.8270 +1643 8367 0.8270 +1643 8368 0.8270 +1643 8370 0.8270 +1643 8450 0.9980 +1643 8451 0.9990 +1643 8454 0.4480 +1643 8464 0.5010 +1643 8493 0.4560 +1643 8533 0.9170 +1643 8554 0.4220 +1643 8607 0.4090 +1643 8815 0.6280 +1643 8816 0.9450 +1643 8850 0.5340 +1643 8883 0.6040 +1643 8945 0.4510 +1643 8968 0.9070 +1643 8970 0.8330 +1643 9025 0.5590 +1643 9039 0.5840 +1643 9040 0.6780 +1643 9156 0.5850 +1643 9318 0.9690 +1643 9540 0.4560 +1643 9555 0.4300 +1643 9557 0.6870 +1643 9616 0.4650 +1643 9656 0.5580 +1643 9730 0.9670 +1643 9978 0.9990 +1643 10038 0.6620 +1643 10238 0.9120 +1643 10379 0.4510 +1643 10401 0.4160 +1643 10445 0.4600 +1643 10920 0.9450 +1643 10980 0.9510 +1643 10987 0.9620 +1643 11073 0.4480 +1643 11091 0.6000 +1643 11143 0.4050 +1643 11146 0.7310 +1643 11200 0.4980 +1643 11284 0.4120 +1643 22974 0.4190 +1643 23038 0.7160 +1643 23142 0.5040 +1643 23358 0.9860 +1643 23412 0.5040 +1643 25853 0.9390 +1643 25879 0.9340 +1643 26094 0.9510 +1643 26133 0.9150 +1643 26523 0.7320 +1643 27113 0.4960 +1643 27244 0.5280 +1643 27301 0.4250 +1643 27343 0.4400 +1643 28952 0.5090 +1643 28989 0.6440 +1643 28991 0.5070 +1643 29099 0.5070 +1643 29844 0.4650 +1643 50484 0.5710 +1643 50717 0.9320 +1643 50813 0.9410 +1643 51065 0.4710 +1643 51122 0.5040 +1643 51138 0.9490 +1643 51185 0.9580 +1643 51397 0.5090 +1643 51514 0.9800 +1643 51588 0.4210 +1643 51720 0.5080 +1643 54165 0.5470 +1643 54461 0.9150 +1643 54617 0.4700 +1643 54778 0.6580 +1643 54876 0.9010 +1643 54891 0.4050 +1643 54939 0.5440 +1643 54951 0.5180 +1643 54969 0.4230 +1643 55070 0.9820 +1643 55208 0.4990 +1643 55367 0.4350 +1643 55626 0.9060 +1643 55795 0.5820 +1643 55827 0.9480 +1643 55832 0.6920 +1643 56949 0.7230 +1643 57103 0.4470 +1643 57654 0.6050 +1643 59348 0.4310 +1643 64326 0.9510 +1643 64393 0.5050 +1643 64421 0.4120 +1643 64708 0.9160 +1643 79016 0.9710 +1643 79184 0.5190 +1643 79269 0.9250 +1643 79661 0.6010 +1643 79913 0.4150 +1643 79991 0.4580 +1643 80067 0.9000 +1643 80344 0.9320 +1643 81620 0.7030 +1643 83444 0.4120 +1643 84142 0.4070 +1643 84259 0.5140 +1643 85236 0.8310 +1643 90379 0.9170 +1643 93650 0.4550 +1643 93973 0.4280 +1643 121504 0.8270 +1643 125476 0.5120 +1643 138009 0.6390 +1643 139170 0.6090 +1643 139425 0.5730 +1643 149951 0.5070 +1643 150678 0.4760 +1643 150684 0.5260 +1643 152559 0.4440 +1643 155368 0.4930 +1643 170622 0.5080 +1643 221302 0.4090 +1643 283899 0.4130 +1643 285429 0.6390 +1643 340578 0.6090 +1643 347442 0.5730 +1643 404672 0.7790 +1643 554313 0.8270 +1643 100533467 0.6800 +1644 1812 0.6760 +1644 1813 0.6060 +1644 1814 0.4350 +1644 1815 0.4280 +1644 1816 0.4860 +1644 2019 0.5250 +1644 2271 0.4400 +1644 2572 0.4090 +1644 2668 0.5920 +1644 2746 0.4380 +1644 2747 0.4090 +1644 2805 0.9310 +1644 2806 0.9260 +1644 3064 0.4080 +1644 3170 0.5190 +1644 3350 0.5370 +1644 3351 0.5070 +1644 3620 0.9300 +1644 3763 0.4440 +1644 3960 0.4820 +1644 4009 0.6250 +1644 4010 0.6000 +1644 4128 0.9860 +1644 4129 0.9870 +1644 4537 0.4150 +1644 4538 0.4500 +1644 4720 0.4200 +1644 4723 0.4140 +1644 4728 0.4510 +1644 4729 0.4300 +1644 4902 0.5970 +1644 4915 0.4490 +1644 4929 0.6750 +1644 5053 0.9830 +1644 5309 0.6340 +1644 5409 0.7320 +1644 5726 0.4280 +1644 5798 0.4760 +1644 5860 0.7230 +1644 6389 0.5400 +1644 6390 0.5070 +1644 6391 0.4460 +1644 6506 0.4610 +1644 6530 0.5260 +1644 6531 0.8620 +1644 6532 0.7560 +1644 6570 0.5410 +1644 6571 0.9670 +1644 6572 0.4560 +1644 6622 0.6650 +1644 6697 0.5860 +1644 6750 0.5250 +1644 6898 0.9310 +1644 6999 0.9370 +1644 7054 0.9950 +1644 7166 0.9810 +1644 7173 0.9180 +1644 7299 0.9620 +1644 8564 0.5990 +1644 8623 0.4050 +1644 8639 0.9040 +1644 8942 0.4200 +1644 8973 0.4320 +1644 9568 0.5710 +1644 11136 0.4370 +1644 11185 0.9420 +1644 11315 0.4100 +1644 23242 0.4160 +1644 26002 0.4100 +1644 55163 0.8950 +1644 56521 0.4620 +1644 57030 0.6330 +1644 57084 0.6980 +1644 64850 0.4300 +1644 64902 0.4600 +1644 85007 0.4200 +1644 114799 0.4070 +1644 120892 0.4310 +1644 121278 0.9730 +1644 125061 0.9280 +1644 126206 0.6590 +1644 137362 0.9160 +1644 169355 0.9300 +1644 220074 0.9760 +1644 259307 0.9140 +1645 1646 0.9980 +1645 1728 0.7050 +1645 2052 0.9410 +1645 2495 0.4110 +1645 2539 0.4140 +1645 2729 0.7430 +1645 2730 0.5960 +1645 2739 0.4230 +1645 2877 0.5320 +1645 2879 0.4490 +1645 3162 0.4400 +1645 3283 0.9490 +1645 3284 0.9570 +1645 3290 0.4430 +1645 3292 0.5480 +1645 3293 0.6870 +1645 3294 0.5150 +1645 4780 0.4670 +1645 5052 0.4170 +1645 5226 0.4270 +1645 5774 0.5380 +1645 5948 0.4130 +1645 6715 0.9750 +1645 6716 0.9490 +1645 6718 0.9830 +1645 6888 0.5070 +1645 7296 0.5810 +1645 7363 0.9200 +1645 7364 0.9220 +1645 7365 0.9210 +1645 7366 0.9440 +1645 7367 0.9310 +1645 7881 0.5080 +1645 8514 0.4920 +1645 8574 0.6770 +1645 8630 0.5390 +1645 8644 0.9950 +1645 9196 0.5420 +1645 9380 0.4130 +1645 9817 0.5200 +1645 10170 0.9170 +1645 10551 0.4930 +1645 10720 0.9170 +1645 10901 0.4190 +1645 22845 0.4420 +1645 22949 0.5870 +1645 22977 0.4760 +1645 27286 0.4100 +1645 27294 0.9910 +1645 54490 0.9200 +1645 54575 0.9230 +1645 54576 0.9260 +1645 54577 0.9230 +1645 54578 0.9410 +1645 54579 0.9110 +1645 54600 0.9230 +1645 54657 0.9230 +1645 54658 0.9310 +1645 54659 0.9220 +1645 57016 0.5590 +1645 79154 0.4970 +1645 79644 0.9510 +1645 79799 0.9180 +1645 90637 0.4160 +1645 140809 0.4940 +1645 574537 0.9130 +1646 1719 0.5850 +1646 1723 0.5190 +1646 1728 0.5530 +1646 2539 0.4200 +1646 2729 0.6330 +1646 2730 0.4450 +1646 2877 0.4350 +1646 3283 0.5450 +1646 3284 0.5790 +1646 3290 0.4740 +1646 3292 0.5590 +1646 3293 0.7580 +1646 3294 0.5170 +1646 5959 0.4260 +1646 6647 0.4280 +1646 6715 0.9770 +1646 6716 0.9640 +1646 6718 0.4050 +1646 6888 0.4290 +1646 7296 0.4190 +1646 7363 0.9180 +1646 7364 0.9240 +1646 7365 0.9190 +1646 7366 0.9480 +1646 7367 0.9310 +1646 7881 0.4800 +1646 8514 0.5070 +1646 8574 0.4920 +1646 8608 0.4150 +1646 8630 0.6300 +1646 8644 0.9970 +1646 9196 0.4920 +1646 9380 0.4130 +1646 9563 0.4140 +1646 10170 0.9330 +1646 10551 0.4140 +1646 10720 0.9140 +1646 10901 0.4170 +1646 22949 0.5250 +1646 22977 0.4640 +1646 27294 0.9120 +1646 28970 0.4830 +1646 51478 0.4700 +1646 54490 0.9200 +1646 54575 0.9210 +1646 54576 0.9220 +1646 54577 0.9200 +1646 54578 0.9350 +1646 54579 0.9090 +1646 54600 0.9280 +1646 54657 0.9200 +1646 54658 0.9290 +1646 54659 0.9240 +1646 55172 0.4090 +1646 79154 0.5370 +1646 79644 0.9600 +1646 79799 0.9150 +1646 84896 0.6220 +1646 162239 0.4730 +1646 200895 0.5270 +1646 574537 0.9110 +1647 1649 0.7830 +1647 1786 0.6340 +1647 1788 0.6370 +1647 1789 0.4230 +1647 1843 0.4420 +1647 1869 0.4470 +1647 1915 0.4200 +1647 1958 0.5150 +1647 1960 0.4690 +1647 2033 0.7650 +1647 2073 0.4300 +1647 2099 0.5330 +1647 2232 0.4890 +1647 2308 0.7050 +1647 2309 0.7520 +1647 2353 0.6610 +1647 2354 0.5450 +1647 2475 0.4480 +1647 2597 0.5320 +1647 2810 0.6150 +1647 2919 0.5090 +1647 2921 0.4890 +1647 2984 0.4060 +1647 3014 0.5760 +1647 3021 0.5410 +1647 3162 0.5740 +1647 3276 0.7610 +1647 3475 0.5070 +1647 3486 0.4310 +1647 3552 0.5660 +1647 3553 0.5760 +1647 3569 0.6360 +1647 3717 0.4260 +1647 3725 0.6260 +1647 4193 0.8500 +1647 4216 0.9990 +1647 4303 0.6970 +1647 4609 0.5600 +1647 4616 0.9650 +1647 4790 0.4080 +1647 4869 0.6550 +1647 5054 0.4310 +1647 5071 0.4480 +1647 5111 0.9870 +1647 5347 0.4050 +1647 5366 0.6330 +1647 5594 0.4070 +1647 5608 0.6700 +1647 5609 0.5810 +1647 5728 0.4220 +1647 5806 0.4400 +1647 5932 0.5230 +1647 5976 0.4390 +1647 6256 0.4150 +1647 6498 0.4080 +1647 6500 0.4630 +1647 6622 0.4890 +1647 6696 0.4640 +1647 6774 0.5300 +1647 6790 0.9610 +1647 6883 0.6440 +1647 6996 0.9870 +1647 7073 0.5780 +1647 7157 0.9910 +1647 7161 0.4050 +1647 7465 0.4020 +1647 7832 0.7140 +1647 8290 0.5340 +1647 8315 0.4650 +1647 8356 0.5340 +1647 8493 0.4510 +1647 8678 0.5160 +1647 8795 0.4930 +1647 8878 0.4850 +1647 8900 0.4250 +1647 8930 0.4750 +1647 9133 0.9390 +1647 9518 0.5310 +1647 9540 0.4920 +1647 9656 0.4830 +1647 10018 0.5800 +1647 10075 0.4540 +1647 10498 0.8490 +1647 10540 0.6040 +1647 10769 0.4200 +1647 10912 0.9590 +1647 10949 0.4430 +1647 11200 0.5070 +1647 11266 0.4020 +1647 23411 0.5750 +1647 23645 0.7430 +1647 27113 0.6080 +1647 27244 0.7000 +1647 29085 0.4770 +1647 29128 0.5600 +1647 50484 0.5700 +1647 51191 0.4230 +1647 51278 0.4060 +1647 54541 0.4280 +1647 54790 0.5830 +1647 56475 0.4310 +1647 57379 0.6710 +1647 57761 0.4330 +1647 59348 0.6490 +1647 63970 0.4310 +1647 64065 0.4180 +1647 64393 0.4320 +1647 80312 0.9470 +1647 81669 0.5090 +1647 83667 0.4800 +1647 84260 0.4480 +1647 85417 0.9070 +1647 90480 0.9850 +1647 256764 0.4120 +1647 440093 0.5340 +1647 440686 0.5340 +1647 653604 0.5350 +1649 1791 0.4870 +1649 1965 0.9510 +1649 1968 0.5520 +1649 2033 0.7840 +1649 2081 0.8870 +1649 2130 0.4600 +1649 2197 0.5520 +1649 2353 0.9050 +1649 2355 0.5720 +1649 2475 0.5450 +1649 2521 0.5140 +1649 2597 0.5690 +1649 2932 0.4100 +1649 3065 0.7420 +1649 3091 0.4440 +1649 3131 0.4200 +1649 3162 0.5450 +1649 3184 0.4350 +1649 3308 0.4730 +1649 3309 0.9210 +1649 3458 0.4590 +1649 3553 0.4980 +1649 3569 0.5200 +1649 3586 0.4020 +1649 3630 0.5540 +1649 3708 0.4650 +1649 3710 0.4630 +1649 3725 0.8890 +1649 3726 0.5040 +1649 3727 0.5140 +1649 3921 0.5050 +1649 4130 0.4350 +1649 4170 0.4500 +1649 4189 0.5940 +1649 4216 0.5660 +1649 4217 0.6220 +1649 4297 0.4020 +1649 4513 0.6120 +1649 4514 0.4830 +1649 4616 0.6440 +1649 4736 0.4990 +1649 4780 0.9680 +1649 4783 0.5130 +1649 4800 0.4670 +1649 4801 0.4050 +1649 5071 0.4530 +1649 5366 0.4640 +1649 5468 0.4650 +1649 5499 0.4810 +1649 5595 0.4400 +1649 5599 0.4850 +1649 5600 0.9280 +1649 5603 0.9250 +1649 5610 0.7920 +1649 5611 0.5840 +1649 5724 0.4780 +1649 5743 0.4350 +1649 6122 0.5060 +1649 6123 0.5060 +1649 6124 0.5090 +1649 6125 0.5130 +1649 6128 0.5110 +1649 6129 0.4990 +1649 6130 0.5090 +1649 6132 0.5060 +1649 6133 0.5180 +1649 6135 0.5330 +1649 6136 0.5170 +1649 6137 0.4990 +1649 6138 0.5080 +1649 6139 0.5040 +1649 6141 0.5000 +1649 6142 0.4990 +1649 6143 0.5280 +1649 6144 0.4990 +1649 6146 0.5080 +1649 6147 0.5110 +1649 6152 0.5000 +1649 6154 0.5000 +1649 6155 0.5170 +1649 6156 0.5100 +1649 6157 0.5120 +1649 6158 0.5010 +1649 6159 0.5520 +1649 6160 0.5100 +1649 6161 0.5210 +1649 6164 0.5070 +1649 6165 0.5110 +1649 6166 0.5350 +1649 6167 0.5050 +1649 6168 0.4990 +1649 6169 0.5170 +1649 6170 0.5370 +1649 6171 0.5520 +1649 6173 0.5340 +1649 6175 0.5480 +1649 6176 0.4990 +1649 6181 0.5150 +1649 6187 0.5090 +1649 6188 0.6610 +1649 6189 0.8570 +1649 6191 0.5050 +1649 6192 0.5050 +1649 6193 0.5000 +1649 6194 0.5900 +1649 6198 0.4020 +1649 6201 0.5130 +1649 6202 0.4990 +1649 6203 0.5260 +1649 6204 0.5060 +1649 6205 0.5070 +1649 6206 0.5190 +1649 6207 0.5220 +1649 6208 0.5050 +1649 6209 0.5080 +1649 6210 0.5140 +1649 6217 0.5070 +1649 6218 0.5090 +1649 6222 0.5120 +1649 6223 0.5130 +1649 6224 0.5080 +1649 6227 0.5030 +1649 6228 0.5030 +1649 6229 0.5010 +1649 6230 0.5050 +1649 6231 0.5080 +1649 6232 0.5130 +1649 6233 0.5350 +1649 6234 0.5070 +1649 6235 0.5460 +1649 6300 0.9240 +1649 6598 0.5810 +1649 6720 0.4950 +1649 6774 0.4740 +1649 7019 0.4070 +1649 7073 0.5590 +1649 7099 0.4150 +1649 7124 0.5180 +1649 7157 0.6900 +1649 7184 0.7260 +1649 7186 0.5250 +1649 7311 0.5380 +1649 7381 0.4840 +1649 7385 0.4750 +1649 7391 0.4430 +1649 7494 0.9880 +1649 7837 0.5370 +1649 8405 0.4010 +1649 8452 0.4140 +1649 8678 0.5430 +1649 8720 0.4860 +1649 8742 0.5020 +1649 8795 0.7270 +1649 8878 0.4400 +1649 8894 0.5860 +1649 9045 0.5220 +1649 9349 0.5010 +1649 9377 0.6130 +1649 9451 0.8840 +1649 9474 0.4760 +1649 9601 0.4460 +1649 9695 0.6010 +1649 9709 0.6020 +1649 9817 0.5500 +1649 10013 0.4650 +1649 10018 0.9560 +1649 10146 0.4140 +1649 10488 0.5030 +1649 10533 0.4280 +1649 10538 0.6770 +1649 10595 0.5210 +1649 10912 0.6290 +1649 10985 0.5190 +1649 11016 0.4260 +1649 11127 0.4220 +1649 11224 0.5140 +1649 11322 0.4400 +1649 22809 0.7710 +1649 22926 0.9890 +1649 23411 0.4350 +1649 23521 0.5230 +1649 23645 0.9490 +1649 25873 0.5180 +1649 26471 0.4210 +1649 27089 0.4390 +1649 27102 0.6950 +1649 27113 0.8760 +1649 27201 0.4770 +1649 29796 0.4650 +1649 30001 0.8000 +1649 50943 0.4130 +1649 51065 0.5140 +1649 51085 0.4680 +1649 51121 0.5040 +1649 51171 0.4340 +1649 51360 0.4790 +1649 54205 0.6280 +1649 55509 0.6740 +1649 57761 0.9310 +1649 64288 0.4170 +1649 79002 0.4420 +1649 79094 0.4660 +1649 81631 0.5540 +1649 83667 0.4510 +1649 83939 0.5860 +1649 84247 0.6570 +1649 84699 0.4060 +1649 84701 0.5390 +1649 84886 0.5320 +1649 90993 0.4190 +1649 116832 0.5370 +1649 122953 0.6510 +1649 125965 0.4420 +1649 137902 0.5370 +1649 140032 0.5050 +1649 140801 0.4990 +1649 168400 0.5630 +1649 200916 0.5100 +1649 283459 0.4650 +1649 283643 0.6140 +1649 388753 0.4440 +1649 440275 0.7770 +1650 1737 0.4300 +1650 2597 0.4750 +1650 2739 0.4240 +1650 2923 0.6780 +1650 3032 0.4210 +1650 3309 0.7210 +1650 3703 0.9990 +1650 3958 0.7720 +1650 3998 0.4820 +1650 4057 0.4120 +1650 4121 0.4880 +1650 4170 0.4930 +1650 4245 0.4220 +1650 4481 0.6280 +1650 4513 0.4800 +1650 5034 0.6440 +1650 5245 0.5180 +1650 5479 0.6540 +1650 5589 0.9480 +1650 5660 0.4030 +1650 5714 0.5060 +1650 6184 0.9990 +1650 6185 0.9990 +1650 6726 0.5300 +1650 6727 0.5170 +1650 6728 0.5040 +1650 6729 0.6040 +1650 6730 0.6230 +1650 6731 0.5440 +1650 6734 0.7410 +1650 6745 0.9720 +1650 6746 0.9640 +1650 6747 0.9860 +1650 6748 0.9900 +1650 6836 0.5060 +1650 7184 0.7230 +1650 7277 0.4360 +1650 7278 0.4430 +1650 7284 0.4470 +1650 7415 0.5510 +1650 7417 0.6690 +1650 7447 0.4210 +1650 7841 0.9740 +1650 7919 0.4750 +1650 7991 0.9980 +1650 8813 0.4680 +1650 9217 0.6550 +1650 9218 0.4800 +1650 9524 0.5270 +1650 9601 0.6730 +1650 9694 0.7130 +1650 9695 0.4110 +1650 9761 0.9840 +1650 9789 0.7860 +1650 10130 0.9020 +1650 10195 0.5130 +1650 10269 0.5190 +1650 10328 0.4020 +1650 10458 0.4120 +1650 10483 0.4250 +1650 10525 0.5650 +1650 10575 0.4450 +1650 10905 0.4110 +1650 10945 0.5350 +1650 10952 0.9950 +1650 10959 0.5080 +1650 10960 0.6000 +1650 10972 0.6460 +1650 10989 0.4600 +1650 11014 0.4140 +1650 11079 0.4030 +1650 11231 0.6630 +1650 11253 0.6290 +1650 11285 0.4180 +1650 11316 0.4950 +1650 23065 0.8180 +1650 23193 0.6920 +1650 23471 0.8600 +1650 23478 0.5820 +1650 23480 0.9960 +1650 23753 0.4740 +1650 26270 0.4370 +1650 28972 0.5200 +1650 29880 0.5500 +1650 29925 0.4370 +1650 29927 0.9980 +1650 29929 0.6270 +1650 51234 0.6410 +1650 51495 0.5000 +1650 51614 0.4690 +1650 51726 0.5650 +1650 51807 0.4180 +1650 54431 0.4400 +1650 54732 0.6810 +1650 55161 0.4120 +1650 55176 0.9790 +1650 55627 0.4040 +1650 55757 0.4660 +1650 55829 0.4870 +1650 55831 0.4310 +1650 55971 0.4120 +1650 56005 0.4310 +1650 56052 0.4010 +1650 56886 0.6060 +1650 56926 0.5060 +1650 57171 0.9060 +1650 58477 0.6930 +1650 58505 0.9940 +1650 58515 0.5220 +1650 60559 0.5980 +1650 64714 0.4090 +1650 79053 0.5740 +1650 79087 0.6430 +1650 79188 0.4620 +1650 79861 0.4270 +1650 80267 0.5410 +1650 81037 0.4590 +1650 81502 0.4780 +1650 81542 0.4030 +1650 81567 0.5020 +1650 84034 0.4140 +1650 84061 0.9990 +1650 84522 0.4890 +1650 84790 0.4870 +1650 84920 0.9040 +1650 84955 0.6210 +1650 90701 0.5150 +1650 93380 0.5540 +1650 112714 0.4200 +1650 113457 0.4450 +1650 144245 0.9460 +1650 200185 0.9660 +1650 201595 0.9990 +1650 440138 0.4180 +1650 100128731 0.9990 +1652 3579 0.5050 +1652 7852 0.5420 +1652 10987 0.4650 +1652 653689 0.4360 +1653 1654 0.6610 +1653 1655 0.6420 +1653 1659 0.4090 +1653 1660 0.8100 +1653 1663 0.4080 +1653 1665 0.8680 +1653 1736 0.4270 +1653 1915 0.5610 +1653 1965 0.5800 +1653 1975 0.6340 +1653 1977 0.4120 +1653 1981 0.4360 +1653 1982 0.4060 +1653 1984 0.5590 +1653 1994 0.6690 +1653 1996 0.5040 +1653 2058 0.5760 +1653 2079 0.4030 +1653 2287 0.4090 +1653 2521 0.7210 +1653 2547 0.4170 +1653 2735 0.4120 +1653 3178 0.7060 +1653 3181 0.6080 +1653 3183 0.4230 +1653 3184 0.4190 +1653 3187 0.4410 +1653 3190 0.7860 +1653 3192 0.6060 +1653 3329 0.4100 +1653 3428 0.4630 +1653 3608 0.5060 +1653 3661 0.4590 +1653 4076 0.4240 +1653 4174 0.4460 +1653 4176 0.4240 +1653 4236 0.4120 +1653 4343 0.4490 +1653 4361 0.6070 +1653 4528 0.4840 +1653 4609 0.5620 +1653 4613 0.7910 +1653 4670 0.7350 +1653 4686 0.5310 +1653 4691 0.4130 +1653 4733 0.5220 +1653 4799 0.4020 +1653 4869 0.4390 +1653 4904 0.5110 +1653 5036 0.4570 +1653 5093 0.4260 +1653 5245 0.4300 +1653 5431 0.4740 +1653 5499 0.4800 +1653 5501 0.5340 +1653 5511 0.5470 +1653 5610 0.4240 +1653 5700 0.6790 +1653 5701 0.5540 +1653 5705 0.6590 +1653 5707 0.5910 +1653 5713 0.4150 +1653 5901 0.4270 +1653 5917 0.4430 +1653 5976 0.4220 +1653 6059 0.5290 +1653 6122 0.5250 +1653 6123 0.4070 +1653 6154 0.4200 +1653 6157 0.4180 +1653 6188 0.4530 +1653 6217 0.4660 +1653 6311 0.7200 +1653 6421 0.6000 +1653 6426 0.5530 +1653 6499 0.4240 +1653 6625 0.6090 +1653 6628 0.4160 +1653 6632 0.4160 +1653 6634 0.4390 +1653 6651 0.4650 +1653 6780 0.4680 +1653 6950 0.4270 +1653 7187 0.4580 +1653 7514 0.6930 +1653 7520 0.4170 +1653 8087 0.4560 +1653 8089 0.4450 +1653 8449 0.4790 +1653 8454 0.4100 +1653 8533 0.6880 +1653 8570 0.6110 +1653 8634 0.4130 +1653 8661 0.4250 +1653 8662 0.4260 +1653 8665 0.4290 +1653 8722 0.5190 +1653 8805 0.4540 +1653 8886 0.4600 +1653 9100 0.4140 +1653 9188 0.9910 +1653 9208 0.5800 +1653 9255 0.4880 +1653 9343 0.4510 +1653 9349 0.4280 +1653 9401 0.4470 +1653 9447 0.4730 +1653 9513 0.4070 +1653 9573 0.7730 +1653 9698 0.4010 +1653 9775 0.4620 +1653 9782 0.6800 +1653 9790 0.4760 +1653 9861 0.4080 +1653 9939 0.4800 +1653 10056 0.4070 +1653 10111 0.4120 +1653 10146 0.6080 +1653 10153 0.5020 +1653 10189 0.4620 +1653 10190 0.7580 +1653 10199 0.5280 +1653 10213 0.5290 +1653 10236 0.4120 +1653 10412 0.4560 +1653 10521 0.4950 +1653 10574 0.4200 +1653 10576 0.5780 +1653 10594 0.4250 +1653 10614 0.4690 +1653 10657 0.5380 +1653 10694 0.4370 +1653 10856 0.4010 +1653 10969 0.4830 +1653 10987 0.4880 +1653 10988 0.4350 +1653 10989 0.4070 +1653 11137 0.4030 +1653 11222 0.5400 +1653 11224 0.4360 +1653 11321 0.4570 +1653 11338 0.5660 +1653 22803 0.4050 +1653 22907 0.4950 +1653 23020 0.6010 +1653 23064 0.5330 +1653 23173 0.4210 +1653 23246 0.4330 +1653 23369 0.6610 +1653 23405 0.5360 +1653 23435 0.4830 +1653 23450 0.4310 +1653 23451 0.4280 +1653 23481 0.4250 +1653 23517 0.4430 +1653 23521 0.4020 +1653 23560 0.5590 +1653 23586 0.5280 +1653 25926 0.4070 +1653 25940 0.9940 +1653 26065 0.6410 +1653 26156 0.4290 +1653 26986 0.4940 +1653 27257 0.4320 +1653 27339 0.4170 +1653 29102 0.7090 +1653 29110 0.4570 +1653 29789 0.6010 +1653 29889 0.4240 +1653 51092 0.4680 +1653 51121 0.4640 +1653 51202 0.4110 +1653 51493 0.9990 +1653 51602 0.5140 +1653 51637 0.9990 +1653 54505 0.6910 +1653 54529 0.4930 +1653 54606 0.9900 +1653 55153 0.4460 +1653 55183 0.4730 +1653 55299 0.4800 +1653 55601 0.6480 +1653 55746 0.4380 +1653 55759 0.4650 +1653 56916 0.4230 +1653 56919 0.7460 +1653 56945 0.4220 +1653 57062 0.5430 +1653 57136 0.4870 +1653 57187 0.4140 +1653 57506 0.4680 +1653 57532 0.4260 +1653 60488 0.4270 +1653 64135 0.5060 +1653 64318 0.4670 +1653 64965 0.4980 +1653 65008 0.4620 +1653 79009 0.5270 +1653 79074 0.9930 +1653 79132 0.4710 +1653 79816 0.4720 +1653 79968 0.5220 +1653 81553 0.4730 +1653 83752 0.4650 +1653 84154 0.4010 +1653 84365 0.4710 +1653 84844 0.6380 +1653 85437 0.4350 +1653 87178 0.5260 +1653 90957 0.4930 +1653 124801 0.4440 +1653 147965 0.7950 +1653 149041 0.5070 +1653 170506 0.9970 +1653 246243 0.4050 +1653 283742 0.9990 +1653 339487 0.9740 +1653 441161 0.4730 +1654 1655 0.8960 +1654 1656 0.8190 +1654 1660 0.8880 +1654 1665 0.6990 +1654 1915 0.5950 +1654 1936 0.4260 +1654 1938 0.5300 +1654 1964 0.6190 +1654 1965 0.9270 +1654 1968 0.6170 +1654 1973 0.8820 +1654 1974 0.8160 +1654 1975 0.6350 +1654 1977 0.9950 +1654 1981 0.9770 +1654 1982 0.7730 +1654 1983 0.7210 +1654 1984 0.6010 +1654 1994 0.6660 +1654 2033 0.5800 +1654 2058 0.4030 +1654 2107 0.4120 +1654 2130 0.5500 +1654 2194 0.4230 +1654 2316 0.4470 +1654 2319 0.4010 +1654 2332 0.6770 +1654 2521 0.7920 +1654 2597 0.4470 +1654 2733 0.5370 +1654 2926 0.5100 +1654 3066 0.4790 +1654 3172 0.4090 +1654 3178 0.8080 +1654 3181 0.7260 +1654 3183 0.7850 +1654 3185 0.5650 +1654 3187 0.7210 +1654 3188 0.4380 +1654 3190 0.7570 +1654 3191 0.4030 +1654 3192 0.5450 +1654 3308 0.5320 +1654 3312 0.5670 +1654 3320 0.6710 +1654 3326 0.6680 +1654 3337 0.5410 +1654 3428 0.4680 +1654 3456 0.4700 +1654 3608 0.5370 +1654 3614 0.6460 +1654 3646 0.6490 +1654 3661 0.6640 +1654 3665 0.6420 +1654 3692 0.6250 +1654 3845 0.4050 +1654 4076 0.7310 +1654 4116 0.7420 +1654 4210 0.6310 +1654 4343 0.4600 +1654 4547 0.4840 +1654 4609 0.5240 +1654 4670 0.6560 +1654 4671 0.5910 +1654 4686 0.7030 +1654 4736 0.4240 +1654 4799 0.4740 +1654 4841 0.6570 +1654 4849 0.4150 +1654 4851 0.4210 +1654 4869 0.5310 +1654 4904 0.7580 +1654 4923 0.4120 +1654 4927 0.7820 +1654 4928 0.4280 +1654 4948 0.4520 +1654 5036 0.4140 +1654 5093 0.5020 +1654 5094 0.5130 +1654 5245 0.4150 +1654 5478 0.4940 +1654 5501 0.6490 +1654 5610 0.4940 +1654 5613 0.5600 +1654 5725 0.4570 +1654 5896 0.4550 +1654 5901 0.4010 +1654 5970 0.5260 +1654 5976 0.6160 +1654 6045 0.4480 +1654 6122 0.5380 +1654 6123 0.4070 +1654 6124 0.4570 +1654 6136 0.4190 +1654 6137 0.4620 +1654 6138 0.6280 +1654 6143 0.4290 +1654 6147 0.5680 +1654 6154 0.6460 +1654 6175 0.4300 +1654 6182 0.4740 +1654 6187 0.4200 +1654 6188 0.6840 +1654 6191 0.6570 +1654 6194 0.7470 +1654 6205 0.5570 +1654 6209 0.4690 +1654 6217 0.5180 +1654 6224 0.5070 +1654 6311 0.4730 +1654 6421 0.6620 +1654 6426 0.5700 +1654 6428 0.5880 +1654 6430 0.5070 +1654 6597 0.4390 +1654 6613 0.5750 +1654 6651 0.4050 +1654 6657 0.4330 +1654 6667 0.6350 +1654 6780 0.5020 +1654 6907 0.5300 +1654 7040 0.4820 +1654 7072 0.6960 +1654 7073 0.7080 +1654 7098 0.5830 +1654 7150 0.5610 +1654 7157 0.7500 +1654 7178 0.4050 +1654 7187 0.5660 +1654 7284 0.5350 +1654 7323 0.4090 +1654 7403 0.8430 +1654 7404 0.8110 +1654 7415 0.4840 +1654 7443 0.4350 +1654 7458 0.6200 +1654 7514 0.9920 +1654 7520 0.4760 +1654 7528 0.6850 +1654 7543 0.6050 +1654 7544 0.4270 +1654 7555 0.4490 +1654 7706 0.5400 +1654 7756 0.4430 +1654 7812 0.6270 +1654 7919 0.6050 +1654 8028 0.4780 +1654 8085 0.5040 +1654 8087 0.4690 +1654 8106 0.4710 +1654 8204 0.4340 +1654 8228 0.4350 +1654 8237 0.4270 +1654 8239 0.8160 +1654 8242 0.7750 +1654 8243 0.4100 +1654 8284 0.8070 +1654 8287 0.6190 +1654 8449 0.5050 +1654 8653 0.5280 +1654 8661 0.6560 +1654 8662 0.8610 +1654 8663 0.6940 +1654 8664 0.6010 +1654 8665 0.6510 +1654 8666 0.7100 +1654 8667 0.5840 +1654 8668 0.6270 +1654 8669 0.5660 +1654 8672 0.4330 +1654 8683 0.4370 +1654 8761 0.4670 +1654 8795 0.4800 +1654 8880 0.4130 +1654 8886 0.4710 +1654 9086 0.4080 +1654 9087 0.5270 +1654 9094 0.5120 +1654 9131 0.4200 +1654 9188 0.5620 +1654 9203 0.5400 +1654 9282 0.4880 +1654 9320 0.4210 +1654 9343 0.7710 +1654 9349 0.4270 +1654 9447 0.7790 +1654 9470 0.5360 +1654 9513 0.4230 +1654 9584 0.6410 +1654 9641 0.9960 +1654 9669 0.4560 +1654 9698 0.5680 +1654 9732 0.4140 +1654 9755 0.4650 +1654 9774 0.5600 +1654 9775 0.7010 +1654 9782 0.6430 +1654 9908 0.6280 +1654 9939 0.5550 +1654 9958 0.4370 +1654 9968 0.4130 +1654 9987 0.7390 +1654 10048 0.4240 +1654 10146 0.9120 +1654 10189 0.8020 +1654 10209 0.4730 +1654 10236 0.6260 +1654 10286 0.5000 +1654 10399 0.4860 +1654 10432 0.6060 +1654 10476 0.5020 +1654 10482 0.7800 +1654 10492 0.7470 +1654 10521 0.8510 +1654 10594 0.5820 +1654 10642 0.7210 +1654 10644 0.5330 +1654 10657 0.6420 +1654 10664 0.4100 +1654 10735 0.4400 +1654 10813 0.4160 +1654 10949 0.4220 +1654 11222 0.4160 +1654 11325 0.5650 +1654 11338 0.5440 +1654 22829 0.4090 +1654 22861 0.7430 +1654 22866 0.4690 +1654 22900 0.7220 +1654 22907 0.5600 +1654 22916 0.4830 +1654 23019 0.6110 +1654 23049 0.4710 +1654 23076 0.4790 +1654 23215 0.4560 +1654 23246 0.4320 +1654 23367 0.5780 +1654 23369 0.5670 +1654 23397 0.4040 +1654 23435 0.6720 +1654 23450 0.4290 +1654 23451 0.4640 +1654 23476 0.4250 +1654 23481 0.5370 +1654 23515 0.4820 +1654 23521 0.4390 +1654 23522 0.4670 +1654 23560 0.5950 +1654 23586 0.8270 +1654 24148 0.7830 +1654 25804 0.4140 +1654 25885 0.4530 +1654 25929 0.4310 +1654 26065 0.6200 +1654 26121 0.4820 +1654 26156 0.4070 +1654 26574 0.5020 +1654 26986 0.9560 +1654 27161 0.8800 +1654 27257 0.7950 +1654 27316 0.6480 +1654 27327 0.7620 +1654 27328 0.4530 +1654 27335 0.4040 +1654 29072 0.4550 +1654 29108 0.7650 +1654 29110 0.9990 +1654 51320 0.4060 +1654 51441 0.4750 +1654 51493 0.6820 +1654 51574 0.4480 +1654 51602 0.4750 +1654 51637 0.4060 +1654 54464 0.6740 +1654 54505 0.7130 +1654 54542 0.5790 +1654 54606 0.5280 +1654 54790 0.5100 +1654 54890 0.7710 +1654 55143 0.5010 +1654 55269 0.5750 +1654 55294 0.5450 +1654 55601 0.6110 +1654 55760 0.4180 +1654 55787 0.5680 +1654 55794 0.5780 +1654 55802 0.4930 +1654 56339 0.5100 +1654 56474 0.5460 +1654 56919 0.8820 +1654 57062 0.4470 +1654 57136 0.4870 +1654 57187 0.4030 +1654 57502 0.4970 +1654 57506 0.9660 +1654 57610 0.4050 +1654 57696 0.4200 +1654 58484 0.7510 +1654 59341 0.4720 +1654 60489 0.5990 +1654 64135 0.8010 +1654 64318 0.4490 +1654 64324 0.4070 +1654 64434 0.5040 +1654 64848 0.4330 +1654 79009 0.4350 +1654 79132 0.7000 +1654 79792 0.8120 +1654 80153 0.4540 +1654 80176 0.4250 +1654 80816 0.4070 +1654 84833 0.4440 +1654 87178 0.5060 +1654 90665 0.4870 +1654 90957 0.5030 +1654 92369 0.4250 +1654 114548 0.8000 +1654 117178 0.4620 +1654 120892 0.5240 +1654 139081 0.4860 +1654 149041 0.6690 +1654 149986 0.5360 +1654 167227 0.4600 +1654 170082 0.4400 +1654 170506 0.7700 +1654 171389 0.7520 +1654 203228 0.4570 +1654 219988 0.7580 +1654 253943 0.4340 +1654 317781 0.4430 +1654 338321 0.7250 +1654 389421 0.5660 +1654 100526737 0.4130 +1654 102800317 0.4960 +1655 1659 0.5180 +1655 1660 0.9960 +1655 1662 0.6020 +1655 1665 0.8680 +1655 1736 0.6480 +1655 1869 0.4620 +1655 1915 0.6700 +1655 1937 0.4250 +1655 1938 0.5810 +1655 1977 0.4270 +1655 1981 0.4470 +1655 1982 0.5510 +1655 1994 0.7030 +1655 2033 0.9170 +1655 2058 0.4270 +1655 2091 0.8350 +1655 2099 0.9730 +1655 2100 0.4180 +1655 2118 0.5210 +1655 2130 0.8170 +1655 2146 0.8020 +1655 2166 0.4270 +1655 2305 0.4890 +1655 2332 0.6630 +1655 2353 0.5630 +1655 2521 0.8720 +1655 2547 0.4560 +1655 2597 0.4980 +1655 2625 0.5710 +1655 2926 0.4830 +1655 2957 0.5110 +1655 2958 0.5160 +1655 3021 0.4380 +1655 3065 0.9440 +1655 3066 0.7630 +1655 3068 0.7650 +1655 3169 0.5500 +1655 3178 0.9290 +1655 3181 0.8090 +1655 3183 0.9250 +1655 3184 0.4510 +1655 3185 0.8070 +1655 3187 0.9600 +1655 3188 0.8910 +1655 3189 0.6700 +1655 3190 0.9350 +1655 3191 0.6680 +1655 3192 0.7480 +1655 3276 0.7020 +1655 3308 0.4310 +1655 3312 0.6970 +1655 3315 0.4160 +1655 3316 0.4090 +1655 3320 0.6350 +1655 3326 0.6190 +1655 3550 0.8190 +1655 3608 0.7920 +1655 3692 0.4690 +1655 4086 0.6340 +1655 4087 0.7610 +1655 4088 0.9630 +1655 4089 0.6760 +1655 4090 0.8820 +1655 4091 0.4210 +1655 4092 0.5050 +1655 4116 0.4020 +1655 4154 0.7430 +1655 4205 0.4170 +1655 4208 0.4880 +1655 4236 0.8510 +1655 4343 0.4360 +1655 4435 0.5010 +1655 4609 0.4860 +1655 4654 0.8550 +1655 4666 0.4750 +1655 4670 0.8400 +1655 4686 0.5020 +1655 4691 0.6260 +1655 4736 0.5590 +1655 4799 0.5700 +1655 4830 0.4100 +1655 4831 0.4360 +1655 4839 0.4740 +1655 4841 0.6960 +1655 4851 0.4930 +1655 4904 0.6930 +1655 5036 0.5000 +1655 5093 0.5160 +1655 5245 0.4480 +1655 5297 0.4080 +1655 5394 0.5310 +1655 5494 0.4100 +1655 5511 0.8370 +1655 5578 0.4480 +1655 5684 0.4280 +1655 5702 0.4530 +1655 5931 0.4020 +1655 5935 0.5650 +1655 5936 0.6800 +1655 5976 0.5380 +1655 6045 0.6260 +1655 6097 0.4660 +1655 6122 0.5220 +1655 6123 0.4070 +1655 6124 0.5260 +1655 6129 0.4910 +1655 6138 0.6330 +1655 6143 0.5010 +1655 6147 0.4090 +1655 6154 0.4020 +1655 6156 0.4100 +1655 6188 0.4370 +1655 6199 0.4100 +1655 6217 0.5550 +1655 6311 0.4140 +1655 6421 0.7050 +1655 6426 0.7640 +1655 6427 0.7680 +1655 6428 0.6090 +1655 6430 0.8020 +1655 6431 0.5650 +1655 6432 0.4200 +1655 6434 0.4390 +1655 6498 0.4560 +1655 6597 0.7820 +1655 6606 0.4780 +1655 6613 0.6810 +1655 6615 0.4030 +1655 6625 0.4500 +1655 6626 0.4730 +1655 6627 0.4480 +1655 6631 0.6070 +1655 6632 0.4270 +1655 6633 0.4230 +1655 6636 0.4080 +1655 6651 0.7480 +1655 6657 0.4420 +1655 6714 0.4640 +1655 6727 0.4870 +1655 6732 0.4280 +1655 6749 0.4730 +1655 6780 0.6950 +1655 6908 0.7120 +1655 6909 0.4060 +1655 6936 0.5680 +1655 6938 0.6220 +1655 6950 0.4860 +1655 7031 0.5170 +1655 7072 0.4050 +1655 7073 0.4860 +1655 7112 0.4090 +1655 7124 0.4190 +1655 7150 0.5780 +1655 7157 0.9970 +1655 7307 0.4600 +1655 7314 0.4870 +1655 7316 0.5260 +1655 7329 0.4970 +1655 7341 0.5640 +1655 7514 0.6440 +1655 7528 0.6110 +1655 7534 0.5520 +1655 7536 0.9060 +1655 7555 0.4910 +1655 7706 0.4100 +1655 7737 0.8090 +1655 7812 0.5180 +1655 7852 0.4610 +1655 7919 0.9150 +1655 8021 0.5640 +1655 8061 0.5120 +1655 8087 0.7350 +1655 8161 0.5190 +1655 8175 0.6830 +1655 8202 0.5670 +1655 8241 0.6080 +1655 8449 0.9180 +1655 8525 0.6470 +1655 8554 0.7520 +1655 8570 0.6080 +1655 8602 0.4410 +1655 8648 0.5360 +1655 8665 0.4530 +1655 8666 0.4050 +1655 8683 0.5540 +1655 8726 0.5930 +1655 8761 0.5680 +1655 8833 0.5450 +1655 8841 0.5500 +1655 8850 0.5820 +1655 8852 0.7180 +1655 8880 0.4140 +1655 8886 0.7960 +1655 8899 0.8560 +1655 8988 0.4040 +1655 9092 0.5560 +1655 9188 0.5270 +1655 9212 0.4650 +1655 9314 0.4860 +1655 9343 0.5640 +1655 9397 0.4200 +1655 9493 0.4040 +1655 9513 0.6000 +1655 9584 0.9710 +1655 9589 0.4270 +1655 9611 0.4750 +1655 9646 0.7200 +1655 9698 0.4030 +1655 9716 0.5340 +1655 9775 0.9340 +1655 9782 0.8940 +1655 9785 0.8930 +1655 9790 0.4550 +1655 9904 0.4220 +1655 9933 0.4260 +1655 9939 0.5590 +1655 9967 0.4930 +1655 9987 0.8430 +1655 10009 0.4280 +1655 10011 0.7950 +1655 10048 0.7090 +1655 10081 0.4850 +1655 10084 0.8120 +1655 10146 0.5030 +1655 10153 0.4150 +1655 10155 0.7400 +1655 10179 0.8350 +1655 10181 0.8730 +1655 10189 0.9290 +1655 10199 0.4030 +1655 10209 0.4470 +1655 10236 0.8440 +1655 10250 0.8850 +1655 10270 0.4630 +1655 10283 0.8290 +1655 10291 0.5870 +1655 10320 0.4040 +1655 10399 0.5500 +1655 10412 0.5920 +1655 10413 0.4690 +1655 10432 0.5320 +1655 10482 0.6750 +1655 10492 0.7540 +1655 10498 0.6010 +1655 10499 0.6720 +1655 10514 0.5920 +1655 10521 0.9940 +1655 10524 0.5730 +1655 10528 0.5620 +1655 10569 0.8550 +1655 10594 0.4430 +1655 10614 0.4200 +1655 10643 0.6450 +1655 10644 0.4440 +1655 10657 0.7390 +1655 10658 0.6310 +1655 10664 0.8230 +1655 10765 0.4610 +1655 10813 0.4570 +1655 10907 0.8220 +1655 10915 0.8360 +1655 10929 0.4400 +1655 10949 0.7760 +1655 10969 0.5230 +1655 10980 0.4310 +1655 10992 0.4360 +1655 11052 0.5900 +1655 11056 0.5260 +1655 11060 0.5470 +1655 11103 0.4760 +1655 11130 0.7800 +1655 11137 0.4510 +1655 11140 0.4380 +1655 11193 0.8070 +1655 11198 0.4780 +1655 11214 0.4140 +1655 11222 0.4530 +1655 11322 0.5100 +1655 11338 0.6040 +1655 22803 0.5440 +1655 22826 0.8330 +1655 22907 0.4570 +1655 22916 0.7030 +1655 22938 0.7600 +1655 23029 0.4910 +1655 23064 0.6810 +1655 23076 0.5340 +1655 23122 0.4940 +1655 23160 0.4780 +1655 23212 0.4530 +1655 23223 0.4420 +1655 23246 0.6810 +1655 23378 0.4240 +1655 23405 0.6690 +1655 23429 0.4160 +1655 23435 0.7290 +1655 23450 0.5010 +1655 23451 0.9010 +1655 23476 0.4430 +1655 23481 0.7240 +1655 23512 0.6400 +1655 23515 0.4410 +1655 23517 0.9090 +1655 23521 0.4100 +1655 23524 0.9120 +1655 23543 0.6370 +1655 23560 0.7170 +1655 23759 0.8270 +1655 24144 0.5560 +1655 24148 0.8740 +1655 25804 0.4220 +1655 25852 0.5450 +1655 25855 0.4070 +1655 25885 0.4070 +1655 25942 0.4600 +1655 25949 0.8130 +1655 25983 0.4460 +1655 26065 0.4330 +1655 26155 0.5360 +1655 26156 0.5470 +1655 26354 0.4950 +1655 26471 0.6150 +1655 26523 0.6630 +1655 26574 0.4490 +1655 26986 0.7440 +1655 27161 0.9070 +1655 27238 0.8090 +1655 27250 0.7780 +1655 27316 0.7670 +1655 27336 0.8490 +1655 27339 0.4700 +1655 29102 0.9990 +1655 29889 0.5690 +1655 51154 0.5180 +1655 51187 0.5640 +1655 51194 0.5900 +1655 51202 0.5090 +1655 51362 0.8210 +1655 51388 0.4980 +1655 51428 0.4130 +1655 51574 0.5850 +1655 51575 0.4190 +1655 51593 0.8550 +1655 51602 0.6710 +1655 51605 0.5060 +1655 51637 0.5050 +1655 51645 0.8300 +1655 51663 0.5210 +1655 51729 0.9220 +1655 51747 0.8850 +1655 53938 0.8250 +1655 54433 0.5060 +1655 54487 0.9930 +1655 54505 0.4490 +1655 54552 0.5020 +1655 54555 0.4600 +1655 54606 0.6460 +1655 54663 0.5710 +1655 55012 0.4670 +1655 55082 0.4910 +1655 55110 0.4230 +1655 55127 0.4350 +1655 55131 0.4220 +1655 55153 0.4590 +1655 55226 0.4580 +1655 55234 0.8200 +1655 55299 0.5130 +1655 55651 0.4420 +1655 55660 0.8770 +1655 55720 0.4350 +1655 55749 0.8360 +1655 55759 0.5900 +1655 55760 0.5150 +1655 55794 0.6220 +1655 56257 0.4580 +1655 56339 0.7070 +1655 56902 0.4280 +1655 56919 0.4270 +1655 57050 0.4260 +1655 57062 0.7680 +1655 57136 0.4960 +1655 57418 0.4190 +1655 57510 0.4460 +1655 57680 0.4560 +1655 57696 0.5210 +1655 57703 0.8440 +1655 57721 0.4120 +1655 57761 0.4540 +1655 57794 0.8200 +1655 58517 0.8880 +1655 59286 0.8120 +1655 64318 0.5180 +1655 64794 0.5390 +1655 64795 0.4860 +1655 65083 0.4460 +1655 65109 0.9050 +1655 65110 0.6800 +1655 79039 0.5420 +1655 79727 0.4200 +1655 79923 0.9160 +1655 79954 0.4160 +1655 80135 0.4400 +1655 84154 0.5220 +1655 84365 0.5640 +1655 84549 0.4590 +1655 84844 0.5400 +1655 84950 0.8260 +1655 87178 0.5110 +1655 89796 0.4400 +1655 92856 0.4190 +1655 93649 0.6120 +1655 117246 0.6580 +1655 120892 0.5470 +1655 124245 0.4720 +1655 143884 0.5010 +1655 151903 0.8040 +1655 153527 0.8100 +1655 154150 0.4940 +1655 170506 0.6450 +1655 220988 0.6810 +1655 221078 0.4320 +1655 284695 0.4760 +1655 285855 0.4390 +1655 345630 0.4740 +1655 387129 0.4070 +1655 388112 0.9000 +1655 389421 0.5860 +1656 1660 0.9670 +1656 1665 0.5420 +1656 1778 0.4210 +1656 1915 0.6270 +1656 1938 0.4210 +1656 1965 0.5100 +1656 1973 0.6290 +1656 1974 0.6400 +1656 1975 0.6590 +1656 1977 0.9910 +1656 1981 0.8570 +1656 1982 0.4660 +1656 1983 0.4170 +1656 1994 0.5920 +1656 2332 0.8170 +1656 2521 0.5620 +1656 2597 0.4030 +1656 2801 0.4300 +1656 3069 0.5580 +1656 3145 0.5980 +1656 3178 0.5250 +1656 3181 0.4130 +1656 3183 0.4210 +1656 3184 0.4080 +1656 3185 0.4090 +1656 3187 0.4880 +1656 3190 0.7480 +1656 3192 0.4180 +1656 3320 0.5150 +1656 3326 0.5190 +1656 3608 0.5860 +1656 3646 0.4110 +1656 3692 0.4250 +1656 4076 0.7240 +1656 4137 0.5650 +1656 4297 0.5230 +1656 4299 0.4220 +1656 4343 0.7460 +1656 4609 0.4530 +1656 4686 0.6410 +1656 4691 0.5180 +1656 4736 0.4520 +1656 4848 0.8210 +1656 4849 0.9580 +1656 4850 0.9850 +1656 4863 0.4370 +1656 4904 0.9100 +1656 5042 0.5540 +1656 5093 0.7210 +1656 5094 0.5610 +1656 5292 0.8620 +1656 5728 0.4980 +1656 5976 0.9300 +1656 6059 0.6120 +1656 6122 0.5560 +1656 6123 0.4070 +1656 6124 0.4720 +1656 6125 0.4050 +1656 6128 0.4090 +1656 6130 0.4370 +1656 6137 0.4140 +1656 6141 0.4050 +1656 6143 0.4620 +1656 6147 0.5310 +1656 6156 0.6340 +1656 6164 0.4500 +1656 6169 0.4050 +1656 6175 0.4770 +1656 6187 0.4460 +1656 6188 0.4880 +1656 6194 0.4970 +1656 6206 0.4200 +1656 6217 0.4220 +1656 6234 0.5230 +1656 6311 0.9930 +1656 6396 0.4200 +1656 6421 0.5050 +1656 6499 0.6370 +1656 6628 0.6070 +1656 6632 0.5610 +1656 6636 0.5490 +1656 6733 0.4100 +1656 6780 0.5590 +1656 6872 0.4300 +1656 6895 0.9520 +1656 7072 0.6660 +1656 7073 0.8160 +1656 7251 0.5580 +1656 7514 0.6030 +1656 7538 0.6790 +1656 7706 0.5520 +1656 7812 0.4780 +1656 7884 0.4610 +1656 8087 0.7660 +1656 8106 0.5090 +1656 8189 0.4940 +1656 8449 0.5260 +1656 8531 0.5450 +1656 8570 0.4730 +1656 8575 0.6250 +1656 8653 0.5910 +1656 8662 0.7000 +1656 8664 0.4320 +1656 8666 0.4540 +1656 8668 0.4330 +1656 8672 0.5110 +1656 8761 0.8240 +1656 8886 0.4050 +1656 8994 0.9390 +1656 9125 0.7240 +1656 9188 0.5630 +1656 9271 0.4910 +1656 9337 0.9300 +1656 9343 0.4900 +1656 9349 0.4200 +1656 9470 0.5400 +1656 9513 0.7310 +1656 9530 0.4890 +1656 9584 0.4360 +1656 9669 0.4550 +1656 9698 0.6550 +1656 9704 0.4190 +1656 9887 0.4680 +1656 9898 0.4510 +1656 9908 0.8830 +1656 9924 0.4700 +1656 9931 0.5420 +1656 9939 0.5710 +1656 9987 0.4680 +1656 10146 0.9170 +1656 10155 0.6430 +1656 10189 0.4400 +1656 10209 0.4020 +1656 10298 0.6280 +1656 10399 0.4910 +1656 10412 0.4210 +1656 10427 0.4100 +1656 10460 0.4630 +1656 10492 0.4480 +1656 10521 0.5840 +1656 10605 0.4800 +1656 10614 0.4750 +1656 10642 0.5350 +1656 10658 0.5660 +1656 10914 0.4820 +1656 10949 0.4060 +1656 10957 0.6430 +1656 11157 0.6750 +1656 11181 0.4080 +1656 11222 0.4120 +1656 11224 0.4670 +1656 11273 0.9520 +1656 22794 0.6570 +1656 22803 0.4400 +1656 22849 0.7130 +1656 22907 0.6650 +1656 22954 0.7060 +1656 23019 0.9990 +1656 23049 0.5340 +1656 23112 0.6710 +1656 23187 0.4310 +1656 23196 0.5550 +1656 23215 0.4030 +1656 23246 0.4250 +1656 23318 0.4820 +1656 23367 0.6580 +1656 23369 0.7620 +1656 23381 0.4460 +1656 23398 0.5270 +1656 23405 0.9840 +1656 23435 0.5040 +1656 23451 0.4240 +1656 23481 0.4130 +1656 23505 0.4370 +1656 23517 0.4510 +1656 23521 0.4980 +1656 23534 0.4050 +1656 23560 0.4670 +1656 23644 0.9990 +1656 23658 0.5510 +1656 25804 0.9130 +1656 25819 0.7200 +1656 25820 0.4450 +1656 25873 0.4760 +1656 25888 0.4460 +1656 25904 0.6680 +1656 25940 0.4010 +1656 25983 0.7090 +1656 26019 0.5700 +1656 26043 0.4390 +1656 26058 0.9250 +1656 26065 0.9990 +1656 26135 0.4560 +1656 26512 0.5380 +1656 26517 0.4780 +1656 26521 0.4910 +1656 26523 0.9980 +1656 26986 0.9620 +1656 27044 0.5820 +1656 27161 0.9990 +1656 27257 0.9980 +1656 27258 0.7560 +1656 27327 0.9980 +1656 28960 0.5420 +1656 28998 0.4050 +1656 29035 0.4480 +1656 29102 0.4900 +1656 29775 0.4290 +1656 29883 0.9630 +1656 51087 0.5420 +1656 51121 0.4520 +1656 51441 0.4510 +1656 51481 0.5720 +1656 51574 0.6160 +1656 51602 0.4630 +1656 51690 0.9890 +1656 51807 0.4150 +1656 54464 0.9930 +1656 54505 0.5210 +1656 54514 0.6160 +1656 54542 0.4040 +1656 54663 0.4040 +1656 54851 0.4950 +1656 54915 0.5690 +1656 55110 0.4510 +1656 55114 0.4400 +1656 55571 0.5150 +1656 55601 0.4230 +1656 55657 0.4780 +1656 55759 0.5080 +1656 55760 0.4660 +1656 55802 0.9990 +1656 56165 0.4510 +1656 56257 0.4780 +1656 56478 0.9990 +1656 56829 0.6030 +1656 56919 0.4800 +1656 57136 0.4860 +1656 57472 0.8200 +1656 57506 0.4790 +1656 57510 0.9430 +1656 57532 0.8980 +1656 57551 0.4090 +1656 57568 0.4900 +1656 57634 0.4440 +1656 57696 0.4650 +1656 57819 0.8610 +1656 58517 0.4150 +1656 64318 0.4240 +1656 64506 0.9430 +1656 64599 0.9700 +1656 64848 0.5370 +1656 64895 0.4220 +1656 65061 0.4590 +1656 65109 0.4420 +1656 65110 0.4800 +1656 80012 0.4670 +1656 80153 0.9990 +1656 80313 0.7010 +1656 80315 0.7780 +1656 80336 0.7300 +1656 83892 0.4860 +1656 84331 0.7780 +1656 85313 0.4210 +1656 87178 0.5340 +1656 90850 0.5160 +1656 93974 0.5230 +1656 113251 0.5670 +1656 117178 0.4520 +1656 117246 0.4860 +1656 122402 0.4630 +1656 124801 0.9450 +1656 128240 0.4940 +1656 129563 0.4070 +1656 132430 0.5210 +1656 132864 0.7210 +1656 133396 0.5130 +1656 140886 0.4820 +1656 143689 0.4850 +1656 149041 0.6850 +1656 149986 0.9890 +1656 167153 0.4510 +1656 167227 0.9990 +1656 170506 0.6950 +1656 192669 0.9260 +1656 192670 0.8670 +1656 196513 0.9960 +1656 197135 0.9500 +1656 200316 0.5330 +1656 201626 0.7350 +1656 219988 0.9990 +1656 220988 0.4280 +1656 221400 0.4110 +1656 246175 0.8340 +1656 253314 0.7680 +1656 253943 0.4670 +1656 255967 0.4840 +1656 284325 0.4890 +1656 317649 0.4080 +1656 340529 0.4750 +1656 348262 0.4900 +1656 374887 0.4870 +1656 399664 0.4460 +1656 550643 0.5750 +1657 4820 0.4700 +1657 5864 0.4550 +1657 6197 0.5510 +1657 6500 0.6120 +1657 8567 0.6090 +1657 9296 0.5050 +1657 9550 0.8060 +1657 9857 0.4620 +1657 9980 0.4690 +1657 11215 0.5010 +1657 22847 0.4240 +1657 22878 0.4490 +1657 22930 0.7620 +1657 23074 0.4970 +1657 23312 0.5840 +1657 23325 0.5440 +1657 23335 0.8640 +1657 23347 0.4110 +1657 25782 0.7200 +1657 29993 0.4040 +1657 50617 0.4770 +1657 51606 0.5730 +1657 51735 0.4620 +1657 54454 0.4710 +1657 54828 0.4150 +1657 55023 0.4790 +1657 55074 0.4570 +1657 55102 0.4890 +1657 55814 0.6290 +1657 57480 0.4430 +1657 79641 0.9690 +1657 79684 0.4340 +1657 81609 0.5090 +1657 83440 0.4370 +1657 83887 0.5060 +1657 90423 0.4850 +1657 170712 0.4600 +1657 197131 0.4180 +1657 200576 0.4390 +1657 245973 0.8350 +1657 387509 0.4430 +1659 1662 0.6150 +1659 1663 0.6940 +1659 1665 0.9070 +1659 1793 0.9290 +1659 1794 0.6710 +1659 1795 0.5880 +1659 1973 0.5780 +1659 1974 0.5130 +1659 1977 0.4060 +1659 2932 0.4420 +1659 3183 0.4280 +1659 3550 0.4450 +1659 4116 0.9300 +1659 4163 0.4130 +1659 4168 0.6220 +1659 4236 0.7040 +1659 4686 0.6050 +1659 4839 0.4590 +1659 4923 0.4180 +1659 4928 0.4080 +1659 5341 0.4410 +1659 5356 0.9940 +1659 5394 0.6040 +1659 5411 0.5640 +1659 5515 0.4660 +1659 5822 0.5700 +1659 5877 0.6740 +1659 5976 0.4050 +1659 6426 0.4500 +1659 6427 0.4260 +1659 6453 0.4270 +1659 6499 0.6140 +1659 6625 0.4270 +1659 6626 0.6820 +1659 6627 0.9950 +1659 6628 0.9880 +1659 6629 0.9920 +1659 6631 0.6490 +1659 6632 0.9930 +1659 6633 0.9930 +1659 6634 0.9920 +1659 6635 0.9910 +1659 6636 0.9900 +1659 6637 0.9900 +1659 6638 0.5250 +1659 6732 0.6600 +1659 6733 0.6000 +1659 6760 0.4420 +1659 6830 0.4140 +1659 6936 0.5210 +1659 7307 0.6650 +1659 7375 0.4360 +1659 7536 0.4630 +1659 7737 0.5980 +1659 7919 0.9400 +1659 8175 0.5750 +1659 8220 0.5070 +1659 8241 0.4870 +1659 8449 0.6470 +1659 8559 0.9760 +1659 8602 0.6680 +1659 8634 0.4620 +1659 8886 0.8310 +1659 8896 0.9970 +1659 9092 0.5860 +1659 9100 0.4300 +1659 9129 0.9990 +1659 9136 0.6800 +1659 9188 0.8290 +1659 9277 0.5590 +1659 9343 0.9980 +1659 9410 0.9870 +1659 9416 0.7670 +1659 9584 0.5260 +1659 9716 0.9980 +1659 9724 0.6000 +1659 9732 0.8970 +1659 9733 0.4590 +1659 9775 0.9690 +1659 9785 0.9110 +1659 9790 0.5520 +1659 9844 0.6680 +1659 9869 0.4220 +1659 9879 0.6790 +1659 9904 0.4390 +1659 9939 0.8410 +1659 9984 0.6240 +1659 10171 0.5480 +1659 10179 0.6970 +1659 10180 0.4470 +1659 10181 0.5550 +1659 10189 0.8550 +1659 10199 0.6280 +1659 10212 0.6030 +1659 10250 0.8860 +1659 10262 0.4130 +1659 10283 0.6160 +1659 10286 0.9870 +1659 10291 0.6710 +1659 10436 0.7450 +1659 10450 0.9930 +1659 10482 0.4580 +1659 10521 0.4390 +1659 10523 0.8740 +1659 10528 0.4290 +1659 10569 0.9990 +1659 10594 0.9970 +1659 10607 0.5900 +1659 10713 0.4310 +1659 10772 0.4180 +1659 10813 0.6460 +1659 10885 0.5570 +1659 10946 0.7190 +1659 10973 0.4280 +1659 10992 0.5760 +1659 11056 0.6230 +1659 11103 0.6700 +1659 11128 0.4320 +1659 11137 0.4210 +1659 11196 0.4370 +1659 11218 0.4100 +1659 11231 0.4290 +1659 11325 0.6880 +1659 11338 0.7510 +1659 22794 0.8520 +1659 22803 0.6900 +1659 22828 0.4450 +1659 22880 0.6690 +1659 22894 0.4590 +1659 22907 0.4350 +1659 22916 0.5200 +1659 22938 0.9990 +1659 22984 0.6070 +1659 23019 0.5220 +1659 23020 0.9770 +1659 23091 0.4880 +1659 23131 0.4530 +1659 23160 0.7030 +1659 23168 0.4830 +1659 23223 0.5090 +1659 23348 0.9370 +1659 23433 0.5630 +1659 23450 0.6040 +1659 23451 0.7040 +1659 23517 0.7260 +1659 23524 0.9940 +1659 23620 0.4800 +1659 24144 0.9540 +1659 24148 0.5260 +1659 25885 0.4710 +1659 25949 0.9970 +1659 25962 0.4210 +1659 25983 0.6590 +1659 26017 0.8590 +1659 26121 0.5030 +1659 26156 0.4810 +1659 26499 0.4450 +1659 27042 0.8380 +1659 27292 0.4080 +1659 27339 0.9980 +1659 27340 0.4270 +1659 28987 0.5550 +1659 29102 0.4500 +1659 29115 0.7740 +1659 29777 0.6750 +1659 29889 0.6040 +1659 30836 0.4420 +1659 50618 0.5660 +1659 51077 0.4250 +1659 51096 0.7660 +1659 51163 0.4430 +1659 51202 0.7140 +1659 51340 0.9990 +1659 51362 0.9990 +1659 51388 0.4140 +1659 51428 0.5650 +1659 51479 0.5800 +1659 51503 0.9930 +1659 51575 0.7960 +1659 51602 0.4450 +1659 51634 0.8880 +1659 51645 0.9850 +1659 51759 0.5090 +1659 51816 0.4790 +1659 54439 0.4200 +1659 54555 0.9260 +1659 54606 0.8660 +1659 54819 0.5720 +1659 54826 0.5030 +1659 54853 0.5120 +1659 54865 0.5240 +1659 54870 0.4490 +1659 54883 0.9460 +1659 54984 0.5600 +1659 55094 0.6540 +1659 55100 0.7370 +1659 55105 0.6520 +1659 55110 0.8600 +1659 55127 0.4400 +1659 55131 0.4700 +1659 55153 0.5040 +1659 55216 0.5630 +1659 55226 0.5040 +1659 55272 0.7070 +1659 55280 0.4750 +1659 55308 0.4520 +1659 55341 0.4490 +1659 55421 0.4710 +1659 55619 0.8660 +1659 55660 0.7760 +1659 55668 0.5410 +1659 55696 0.9960 +1659 55702 0.9280 +1659 55760 0.5200 +1659 55813 0.8370 +1659 56902 0.4100 +1659 56949 0.9980 +1659 57050 0.7230 +1659 57062 0.4930 +1659 57109 0.4150 +1659 57187 0.4210 +1659 57381 0.6410 +1659 57461 0.8760 +1659 57572 0.6120 +1659 57647 0.6990 +1659 57696 0.4530 +1659 57703 0.9960 +1659 57794 0.4660 +1659 58509 0.9470 +1659 58517 0.4030 +1659 60625 0.5750 +1659 63892 0.4820 +1659 64318 0.4810 +1659 64426 0.4650 +1659 64434 0.6520 +1659 64895 0.4040 +1659 65083 0.7160 +1659 65109 0.8280 +1659 79009 0.6470 +1659 79039 0.8640 +1659 79050 0.5550 +1659 79446 0.5290 +1659 79576 0.9480 +1659 79577 0.4040 +1659 79706 0.8800 +1659 79727 0.5720 +1659 79753 0.7320 +1659 79954 0.4350 +1659 80005 0.5990 +1659 80011 0.8370 +1659 81704 0.6000 +1659 83479 0.4500 +1659 84081 0.6030 +1659 84128 0.4940 +1659 84135 0.4640 +1659 84172 0.4250 +1659 84516 0.4520 +1659 84811 0.6660 +1659 84844 0.5190 +1659 84916 0.5460 +1659 84946 0.5230 +1659 84950 0.7880 +1659 84955 0.5670 +1659 85440 0.6080 +1659 90362 0.4660 +1659 90957 0.5730 +1659 92105 0.4300 +1659 92856 0.6800 +1659 112840 0.4070 +1659 113510 0.4600 +1659 124245 0.5150 +1659 139818 0.8800 +1659 143884 0.6660 +1659 151903 0.6060 +1659 161424 0.4390 +1659 163859 0.8440 +1659 165545 0.5190 +1659 199746 0.5080 +1659 222183 0.4880 +1659 440519 0.4930 +1660 1662 0.4920 +1660 1663 0.4270 +1660 1665 0.7150 +1660 1915 0.5510 +1660 1917 0.4750 +1660 1938 0.4440 +1660 1956 0.6690 +1660 1973 0.6940 +1660 1974 0.5910 +1660 1975 0.4280 +1660 1977 0.9620 +1660 1981 0.5600 +1660 1982 0.4340 +1660 1994 0.9200 +1660 1996 0.4040 +1660 2033 0.6300 +1660 2079 0.6510 +1660 2081 0.7620 +1660 2091 0.5510 +1660 2130 0.9970 +1660 2313 0.5070 +1660 2314 0.7720 +1660 2332 0.6140 +1660 2521 0.8700 +1660 2547 0.8190 +1660 2597 0.4130 +1660 2733 0.4420 +1660 2926 0.5120 +1660 2959 0.4170 +1660 2969 0.5420 +1660 3014 0.6900 +1660 3018 0.5190 +1660 3028 0.7480 +1660 3065 0.4040 +1660 3069 0.7380 +1660 3091 0.4570 +1660 3178 0.9640 +1660 3181 0.9320 +1660 3182 0.7130 +1660 3183 0.9920 +1660 3184 0.5290 +1660 3185 0.8260 +1660 3187 0.8780 +1660 3188 0.5780 +1660 3189 0.5940 +1660 3190 0.9390 +1660 3191 0.9010 +1660 3192 0.9990 +1660 3276 0.6580 +1660 3312 0.7030 +1660 3326 0.4360 +1660 3428 0.6250 +1660 3456 0.4030 +1660 3481 0.4840 +1660 3550 0.8250 +1660 3608 0.9850 +1660 3661 0.4650 +1660 3725 0.4880 +1660 3727 0.4420 +1660 3921 0.4290 +1660 4076 0.7050 +1660 4116 0.4090 +1660 4154 0.8760 +1660 4193 0.7720 +1660 4204 0.5420 +1660 4236 0.8530 +1660 4343 0.7300 +1660 4361 0.4550 +1660 4609 0.5010 +1660 4670 0.9740 +1660 4686 0.8070 +1660 4691 0.7860 +1660 4736 0.9140 +1660 4790 0.5630 +1660 4791 0.5380 +1660 4841 0.7430 +1660 4869 0.5810 +1660 4893 0.5470 +1660 4904 0.9940 +1660 5036 0.5320 +1660 5093 0.6200 +1660 5094 0.5550 +1660 5252 0.6220 +1660 5356 0.5900 +1660 5394 0.4270 +1660 5431 0.5380 +1660 5511 0.8570 +1660 5546 0.4350 +1660 5591 0.7400 +1660 5610 0.8080 +1660 5719 0.4960 +1660 5725 0.8680 +1660 5888 0.4400 +1660 5903 0.5750 +1660 5926 0.4410 +1660 5928 0.5190 +1660 5931 0.5900 +1660 5932 0.6630 +1660 5936 0.6740 +1660 5970 0.7040 +1660 5976 0.6330 +1660 5984 0.5320 +1660 6041 0.5070 +1660 6059 0.4060 +1660 6117 0.4270 +1660 6122 0.5500 +1660 6124 0.4170 +1660 6125 0.6270 +1660 6128 0.9580 +1660 6129 0.5450 +1660 6130 0.7810 +1660 6132 0.9180 +1660 6135 0.9300 +1660 6141 0.9080 +1660 6142 0.9060 +1660 6143 0.9260 +1660 6152 0.9120 +1660 6156 0.9130 +1660 6160 0.9270 +1660 6161 0.9070 +1660 6169 0.9150 +1660 6170 0.9060 +1660 6171 0.9000 +1660 6173 0.9020 +1660 6194 0.4050 +1660 6199 0.4250 +1660 6203 0.5680 +1660 6205 0.4090 +1660 6208 0.4290 +1660 6227 0.9160 +1660 6228 0.9180 +1660 6231 0.9230 +1660 6234 0.9260 +1660 6235 0.9220 +1660 6294 0.4670 +1660 6421 0.8460 +1660 6426 0.8950 +1660 6427 0.4100 +1660 6428 0.8680 +1660 6431 0.5460 +1660 6432 0.7890 +1660 6434 0.7370 +1660 6499 0.5410 +1660 6606 0.4600 +1660 6625 0.6110 +1660 6626 0.5470 +1660 6627 0.5900 +1660 6628 0.4260 +1660 6629 0.4470 +1660 6631 0.6180 +1660 6632 0.6580 +1660 6633 0.7300 +1660 6634 0.6600 +1660 6635 0.6890 +1660 6636 0.7060 +1660 6637 0.6430 +1660 6651 0.4980 +1660 6657 0.4120 +1660 6732 0.7590 +1660 6741 0.6880 +1660 6749 0.9020 +1660 6778 0.4320 +1660 6780 0.8200 +1660 6895 0.9620 +1660 6908 0.4130 +1660 7072 0.5640 +1660 7073 0.4160 +1660 7112 0.5510 +1660 7150 0.7460 +1660 7153 0.5210 +1660 7157 0.5630 +1660 7158 0.5040 +1660 7175 0.4720 +1660 7247 0.6290 +1660 7257 0.5500 +1660 7307 0.6430 +1660 7329 0.4160 +1660 7341 0.4290 +1660 7458 0.4910 +1660 7486 0.8630 +1660 7514 0.7910 +1660 7520 0.9480 +1660 7536 0.8720 +1660 7737 0.5920 +1660 7812 0.9290 +1660 7919 0.9620 +1660 8106 0.8510 +1660 8148 0.6790 +1660 8175 0.7040 +1660 8361 0.6210 +1660 8449 0.5530 +1660 8454 0.4550 +1660 8467 0.5460 +1660 8487 0.4940 +1660 8531 0.5830 +1660 8539 0.4450 +1660 8570 0.4940 +1660 8575 0.8140 +1660 8607 0.6350 +1660 8662 0.5760 +1660 8667 0.6020 +1660 8826 0.4580 +1660 8880 0.4870 +1660 8886 0.4910 +1660 8896 0.6240 +1660 8899 0.8330 +1660 8940 0.4220 +1660 8994 0.9020 +1660 9025 0.4070 +1660 9092 0.4930 +1660 9100 0.5600 +1660 9128 0.4710 +1660 9129 0.4400 +1660 9136 0.6150 +1660 9188 0.9080 +1660 9208 0.6340 +1660 9221 0.4250 +1660 9271 0.4120 +1660 9295 0.4100 +1660 9343 0.6250 +1660 9401 0.4320 +1660 9412 0.4460 +1660 9416 0.6030 +1660 9444 0.5670 +1660 9447 0.4510 +1660 9577 0.4040 +1660 9584 0.9090 +1660 9641 0.5050 +1660 9646 0.7760 +1660 9692 0.7220 +1660 9698 0.4590 +1660 9716 0.5400 +1660 9724 0.4190 +1660 9733 0.4560 +1660 9774 0.5300 +1660 9775 0.7440 +1660 9782 0.8710 +1660 9790 0.4600 +1660 9879 0.5470 +1660 9908 0.4890 +1660 9939 0.6350 +1660 9967 0.4550 +1660 9987 0.7760 +1660 10084 0.8230 +1660 10146 0.4720 +1660 10150 0.4170 +1660 10155 0.4350 +1660 10179 0.8280 +1660 10181 0.8950 +1660 10189 0.9530 +1660 10209 0.4080 +1660 10212 0.5280 +1660 10236 0.9090 +1660 10248 0.7420 +1660 10250 0.8400 +1660 10270 0.6600 +1660 10283 0.4960 +1660 10284 0.4050 +1660 10286 0.5980 +1660 10291 0.4500 +1660 10399 0.4440 +1660 10432 0.7050 +1660 10450 0.5820 +1660 10482 0.8640 +1660 10492 0.9950 +1660 10521 0.8670 +1660 10528 0.6480 +1660 10556 0.7570 +1660 10557 0.7660 +1660 10569 0.4650 +1660 10576 0.4290 +1660 10594 0.7720 +1660 10614 0.6520 +1660 10642 0.9850 +1660 10643 0.4150 +1660 10644 0.8890 +1660 10657 0.9560 +1660 10664 0.5400 +1660 10735 0.4620 +1660 10772 0.4560 +1660 10775 0.7430 +1660 10799 0.7320 +1660 10813 0.6190 +1660 10856 0.5680 +1660 10907 0.8250 +1660 10915 0.8410 +1660 10921 0.4330 +1660 10923 0.4040 +1660 10933 0.4580 +1660 10940 0.7310 +1660 10943 0.6920 +1660 10946 0.4380 +1660 10949 0.6790 +1660 10978 0.7330 +1660 10992 0.4870 +1660 11051 0.5480 +1660 11052 0.6440 +1660 11060 0.5710 +1660 11083 0.4080 +1660 11100 0.4430 +1660 11102 0.7320 +1660 11193 0.8040 +1660 11198 0.6410 +1660 11200 0.4060 +1660 11218 0.5870 +1660 11322 0.4270 +1660 11325 0.4080 +1660 11338 0.7040 +1660 22803 0.4670 +1660 22820 0.4080 +1660 22826 0.8940 +1660 22907 0.5520 +1660 22913 0.5950 +1660 22916 0.4030 +1660 22938 0.6760 +1660 22974 0.4810 +1660 22984 0.4560 +1660 23016 0.4940 +1660 23019 0.4490 +1660 23020 0.7840 +1660 23028 0.4270 +1660 23054 0.5180 +1660 23064 0.7290 +1660 23091 0.4470 +1660 23112 0.4950 +1660 23160 0.4150 +1660 23185 0.9100 +1660 23196 0.4390 +1660 23367 0.6190 +1660 23369 0.5520 +1660 23404 0.5030 +1660 23405 0.9870 +1660 23435 0.8240 +1660 23450 0.7300 +1660 23451 0.5820 +1660 23476 0.6060 +1660 23517 0.9010 +1660 23524 0.9140 +1660 23586 0.5320 +1660 23759 0.4740 +1660 24144 0.4930 +1660 24148 0.8790 +1660 25836 0.4090 +1660 25873 0.9210 +1660 25920 0.5500 +1660 25962 0.4590 +1660 25983 0.4410 +1660 26065 0.5490 +1660 26097 0.4590 +1660 26135 0.5230 +1660 26523 0.9520 +1660 26986 0.7080 +1660 26993 0.9400 +1660 27044 0.6530 +1660 27161 0.9990 +1660 27238 0.4760 +1660 27316 0.7760 +1660 27327 0.9230 +1660 27336 0.8630 +1660 27339 0.8520 +1660 29102 0.8810 +1660 29110 0.5320 +1660 29896 0.4160 +1660 50618 0.5400 +1660 51096 0.4650 +1660 51202 0.4870 +1660 51320 0.5820 +1660 51340 0.6200 +1660 51362 0.8980 +1660 51367 0.7320 +1660 51388 0.4220 +1660 51428 0.7850 +1660 51493 0.6570 +1660 51503 0.5700 +1660 51574 0.7400 +1660 51593 0.9200 +1660 51602 0.4900 +1660 51631 0.5480 +1660 51645 0.4900 +1660 51663 0.4810 +1660 51720 0.4030 +1660 51729 0.8190 +1660 51742 0.4630 +1660 51747 0.8330 +1660 53938 0.6660 +1660 54487 0.8610 +1660 54551 0.4760 +1660 54555 0.4150 +1660 54596 0.5840 +1660 54606 0.7190 +1660 54883 0.4120 +1660 54913 0.7200 +1660 54931 0.5650 +1660 55122 0.4040 +1660 55127 0.4190 +1660 55167 0.6100 +1660 55226 0.5000 +1660 55234 0.8610 +1660 55323 0.6060 +1660 55601 0.6290 +1660 55660 0.9180 +1660 55696 0.5490 +1660 55749 0.8510 +1660 55794 0.5590 +1660 55796 0.4160 +1660 56257 0.6950 +1660 56259 0.6990 +1660 56341 0.6570 +1660 56916 0.4340 +1660 56949 0.6360 +1660 57050 0.4480 +1660 57062 0.6460 +1660 57187 0.6920 +1660 57461 0.5360 +1660 57506 0.8660 +1660 57510 0.9310 +1660 57532 0.8280 +1660 57703 0.6110 +1660 57721 0.4230 +1660 57794 0.8310 +1660 57819 0.5380 +1660 58517 0.8480 +1660 59286 0.8100 +1660 59348 0.4930 +1660 64135 0.4980 +1660 64393 0.6380 +1660 64848 0.4070 +1660 65083 0.4530 +1660 79009 0.5630 +1660 79039 0.4110 +1660 79132 0.4600 +1660 79184 0.4360 +1660 79727 0.7910 +1660 79828 0.4580 +1660 79897 0.7210 +1660 79968 0.5170 +1660 80119 0.4500 +1660 80746 0.5650 +1660 81030 0.4060 +1660 81887 0.4260 +1660 83443 0.4550 +1660 83743 0.4060 +1660 84132 0.4840 +1660 84844 0.4450 +1660 84950 0.8260 +1660 87178 0.5580 +1660 91603 0.4140 +1660 91607 0.4080 +1660 113510 0.4520 +1660 115004 0.4770 +1660 121340 0.4460 +1660 124245 0.5210 +1660 138716 0.5520 +1660 143689 0.4160 +1660 151903 0.4680 +1660 153527 0.8430 +1660 165918 0.5880 +1660 167227 0.9140 +1660 169792 0.7430 +1660 170506 0.8150 +1660 192669 0.7790 +1660 192670 0.7680 +1660 220988 0.8420 +1660 246243 0.6020 +1660 283989 0.5460 +1660 284695 0.4750 +1660 317781 0.4500 +1660 339287 0.6810 +1660 375748 0.4150 +1660 100529063 0.4420 +1660 100996928 0.5020 +1662 1665 0.8090 +1662 1736 0.7630 +1662 1977 0.4580 +1662 1981 0.5180 +1662 2091 0.7640 +1662 2794 0.4970 +1662 3204 0.5230 +1662 3205 0.6100 +1662 3229 0.6360 +1662 3237 0.5350 +1662 3239 0.6220 +1662 3428 0.5190 +1662 3692 0.4810 +1662 4234 0.5740 +1662 4437 0.4190 +1662 4691 0.6070 +1662 4809 0.4450 +1662 4839 0.7170 +1662 4928 0.8390 +1662 4931 0.6720 +1662 5028 0.5970 +1662 5032 0.5970 +1662 5036 0.8150 +1662 5396 0.6580 +1662 5822 0.8200 +1662 5910 0.7570 +1662 5927 0.4060 +1662 5981 0.4330 +1662 6122 0.5140 +1662 6123 0.4070 +1662 6129 0.5010 +1662 6141 0.5670 +1662 6147 0.4610 +1662 6156 0.4070 +1662 6175 0.4150 +1662 6188 0.4570 +1662 6838 0.6240 +1662 6894 0.4130 +1662 7150 0.6500 +1662 7514 0.4630 +1662 8021 0.5720 +1662 8189 0.4950 +1662 8241 0.5330 +1662 8449 0.5440 +1662 8568 0.5510 +1662 8602 0.9520 +1662 8634 0.5000 +1662 8672 0.4160 +1662 8761 0.4310 +1662 8886 0.9940 +1662 9136 0.6730 +1662 9188 0.6290 +1662 9277 0.8800 +1662 9669 0.4720 +1662 9704 0.4570 +1662 9724 0.9590 +1662 9775 0.7040 +1662 9790 0.9440 +1662 9875 0.4780 +1662 9904 0.9400 +1662 9933 0.9460 +1662 10153 0.9360 +1662 10171 0.7370 +1662 10180 0.5480 +1662 10181 0.5570 +1662 10199 0.9240 +1662 10412 0.6680 +1662 10436 0.4020 +1662 10514 0.6320 +1662 10521 0.6030 +1662 10528 0.8130 +1662 10557 0.4170 +1662 10605 0.4250 +1662 10607 0.7780 +1662 10714 0.4190 +1662 10813 0.9690 +1662 10885 0.7910 +1662 10914 0.4760 +1662 10969 0.9010 +1662 11056 0.9100 +1662 11103 0.8270 +1662 11137 0.8040 +1662 11168 0.7410 +1662 11222 0.4340 +1662 11224 0.4550 +1662 11269 0.4710 +1662 22984 0.9730 +1662 23029 0.8940 +1662 23054 0.6110 +1662 23076 0.6080 +1662 23131 0.5200 +1662 23160 0.9380 +1662 23212 0.5540 +1662 23223 0.9010 +1662 23246 0.9310 +1662 23363 0.4130 +1662 23378 0.6790 +1662 23405 0.4150 +1662 23476 0.5370 +1662 23481 0.8870 +1662 23517 0.8790 +1662 23521 0.4430 +1662 23560 0.8920 +1662 25873 0.4160 +1662 25879 0.4610 +1662 25885 0.7190 +1662 25983 0.9020 +1662 26040 0.6190 +1662 26065 0.4990 +1662 26135 0.4010 +1662 26155 0.9180 +1662 26156 0.7830 +1662 26354 0.7790 +1662 26574 0.9580 +1662 26986 0.4490 +1662 27037 0.4170 +1662 27042 0.6450 +1662 27257 0.4310 +1662 27292 0.6480 +1662 27340 0.7940 +1662 28987 0.7390 +1662 29102 0.4550 +1662 29777 0.9920 +1662 29889 0.8430 +1662 29997 0.7370 +1662 51018 0.4810 +1662 51068 0.6840 +1662 51077 0.4980 +1662 51096 0.9760 +1662 51118 0.5000 +1662 51154 0.5060 +1662 51187 0.8780 +1662 51202 0.7810 +1662 51388 0.5660 +1662 51575 0.9960 +1662 51602 0.9290 +1662 51605 0.7430 +1662 51692 0.5590 +1662 53981 0.5760 +1662 54505 0.4340 +1662 54517 0.4060 +1662 54552 0.7400 +1662 54555 0.6960 +1662 54606 0.9210 +1662 54663 0.8840 +1662 54680 0.6910 +1662 54865 0.4610 +1662 54881 0.6940 +1662 54888 0.5150 +1662 54904 0.6390 +1662 54984 0.6630 +1662 55006 0.6130 +1662 55035 0.8480 +1662 55105 0.8770 +1662 55109 0.5190 +1662 55127 0.8920 +1662 55131 0.7890 +1662 55153 0.9170 +1662 55226 0.8960 +1662 55299 0.8230 +1662 55339 0.5210 +1662 55341 0.6770 +1662 55622 0.5490 +1662 55646 0.6120 +1662 55668 0.8480 +1662 55718 0.4260 +1662 55720 0.9090 +1662 55759 0.9210 +1662 55760 0.6800 +1662 55781 0.7420 +1662 55794 0.7330 +1662 55813 0.7360 +1662 56157 0.4100 +1662 56342 0.6760 +1662 56852 0.4500 +1662 56902 0.6340 +1662 56903 0.4690 +1662 56919 0.5490 +1662 57050 0.9840 +1662 57062 0.8840 +1662 57109 0.4270 +1662 57122 0.4250 +1662 57136 0.4860 +1662 57418 0.7340 +1662 57647 0.6510 +1662 57696 0.7470 +1662 57710 0.4130 +1662 58496 0.5790 +1662 60487 0.4160 +1662 60625 0.4900 +1662 63899 0.4440 +1662 64216 0.5960 +1662 64318 0.9010 +1662 64324 0.7650 +1662 64425 0.4100 +1662 64434 0.9880 +1662 64794 0.8910 +1662 64895 0.4730 +1662 65083 0.9830 +1662 65095 0.5560 +1662 79009 0.5820 +1662 79039 0.9250 +1662 79084 0.4280 +1662 79142 0.6920 +1662 79159 0.4140 +1662 79571 0.5800 +1662 79665 0.5270 +1662 79954 0.9520 +1662 79979 0.4090 +1662 80135 0.7080 +1662 81608 0.4660 +1662 81627 0.4020 +1662 83479 0.5140 +1662 83732 0.6450 +1662 83743 0.6410 +1662 84128 0.7450 +1662 84135 0.5250 +1662 84154 0.8820 +1662 84172 0.8580 +1662 84294 0.7770 +1662 84365 0.8360 +1662 84549 0.7820 +1662 84916 0.6740 +1662 84946 0.8610 +1662 85441 0.5060 +1662 85476 0.4080 +1662 87178 0.5380 +1662 88745 0.9810 +1662 91752 0.5090 +1662 92856 0.6690 +1662 115708 0.6960 +1662 116966 0.4430 +1662 117246 0.8830 +1662 122402 0.4330 +1662 142940 0.5350 +1662 146212 0.8940 +1662 149986 0.4640 +1662 153443 0.8430 +1662 161424 0.7190 +1662 165545 0.5410 +1662 170506 0.4300 +1662 197135 0.4370 +1662 219578 0.5090 +1662 219988 0.4260 +1662 221078 0.7040 +1662 221830 0.4380 +1662 253314 0.4100 +1662 283106 0.5780 +1662 285855 0.5200 +1662 317781 0.5130 +1662 345630 0.6050 +1662 348995 0.4280 +1662 387129 0.4980 +1662 387338 0.4500 +1662 389761 0.5550 +1662 389763 0.5070 +1662 692312 0.5970 +1663 1763 0.6090 +1663 1786 0.4060 +1663 2071 0.7820 +1663 2146 0.4340 +1663 2175 0.6320 +1663 2177 0.5270 +1663 2237 0.8530 +1663 2252 0.4460 +1663 2958 0.4080 +1663 2959 0.5030 +1663 2960 0.6640 +1663 2961 0.5970 +1663 2962 0.4260 +1663 2963 0.4170 +1663 2965 0.6930 +1663 2966 0.6210 +1663 2967 0.6430 +1663 2968 0.6640 +1663 3978 0.4650 +1663 4085 0.6540 +1663 4172 0.5070 +1663 4174 0.5480 +1663 4176 0.5260 +1663 4331 0.6880 +1663 4913 0.4150 +1663 4998 0.4060 +1663 5111 0.5010 +1663 5289 0.6390 +1663 5424 0.4780 +1663 5426 0.5830 +1663 5433 0.4280 +1663 5434 0.4490 +1663 5435 0.4490 +1663 5436 0.4020 +1663 5437 0.4020 +1663 5440 0.4510 +1663 5441 0.4780 +1663 5558 0.4260 +1663 5884 0.5730 +1663 5885 0.7270 +1663 5888 0.4180 +1663 5965 0.5310 +1663 5981 0.4040 +1663 5982 0.5680 +1663 5983 0.4370 +1663 6157 0.6530 +1663 6426 0.4560 +1663 6502 0.4270 +1663 7015 0.4140 +1663 7486 0.6630 +1663 7494 0.7500 +1663 7508 0.4300 +1663 8189 0.9590 +1663 8243 0.5790 +1663 8318 0.5170 +1663 8697 0.4120 +1663 8914 0.9560 +1663 9126 0.6870 +1663 9156 0.4100 +1663 9282 0.4860 +1663 9400 0.5260 +1663 9401 0.5710 +1663 9412 0.4120 +1663 9443 0.4270 +1663 9700 0.6700 +1663 9780 0.4330 +1663 9985 0.4760 +1663 10001 0.6620 +1663 10274 0.4080 +1663 10535 0.5220 +1663 10635 0.4240 +1663 10644 0.4480 +1663 11073 0.4730 +1663 11169 0.9160 +1663 23063 0.5440 +1663 23244 0.5620 +1663 23383 0.4380 +1663 23476 0.7730 +1663 23552 0.4980 +1663 25836 0.7510 +1663 29101 0.5140 +1663 51003 0.4270 +1663 51202 0.4740 +1663 51647 0.4060 +1663 51750 0.4090 +1663 54386 0.4090 +1663 54606 0.4180 +1663 54921 0.8270 +1663 54962 0.6840 +1663 55215 0.5070 +1663 55297 0.4220 +1663 56853 0.7680 +1663 57062 0.5810 +1663 57542 0.4550 +1663 57696 0.5250 +1663 57697 0.5940 +1663 60625 0.4440 +1663 63895 0.4180 +1663 63922 0.9270 +1663 63967 0.4090 +1663 64210 0.6410 +1663 79075 0.8130 +1663 79915 0.6230 +1663 80119 0.6510 +1663 81037 0.4020 +1663 83990 0.4010 +1663 84246 0.4120 +1663 84515 0.4120 +1663 84893 0.5960 +1663 113130 0.4450 +1663 113510 0.4010 +1663 114799 0.7340 +1663 136157 0.5140 +1663 143506 0.5140 +1663 151648 0.5710 +1663 157570 0.7750 +1663 170506 0.5310 +1663 196120 0.5140 +1663 254394 0.5150 +1663 285231 0.4840 +1663 390031 0.5140 +1663 390033 0.5140 +1663 441584 0.5140 +1663 642636 0.5620 +1663 643988 0.5140 +1663 728340 0.6020 +1665 1736 0.9000 +1665 1973 0.6070 +1665 1974 0.6080 +1665 1977 0.5470 +1665 1981 0.5140 +1665 1982 0.5970 +1665 1994 0.7760 +1665 2058 0.4170 +1665 2079 0.4310 +1665 2091 0.9390 +1665 2107 0.5530 +1665 2130 0.4670 +1665 2521 0.6300 +1665 2547 0.5110 +1665 2593 0.4010 +1665 2794 0.4540 +1665 3065 0.4080 +1665 3178 0.6970 +1665 3181 0.6090 +1665 3183 0.7620 +1665 3184 0.4590 +1665 3185 0.6660 +1665 3187 0.7380 +1665 3188 0.4900 +1665 3189 0.4690 +1665 3190 0.7460 +1665 3191 0.6290 +1665 3192 0.7280 +1665 3276 0.4090 +1665 3308 0.4060 +1665 3312 0.4020 +1665 3608 0.7200 +1665 3843 0.4960 +1665 4017 0.6550 +1665 4076 0.4560 +1665 4116 0.7200 +1665 4163 0.5500 +1665 4236 0.4460 +1665 4436 0.4550 +1665 4670 0.6750 +1665 4686 0.7040 +1665 4733 0.4090 +1665 4809 0.6250 +1665 4839 0.8760 +1665 4841 0.4880 +1665 4869 0.5300 +1665 4904 0.7760 +1665 4923 0.7770 +1665 4928 0.4390 +1665 4931 0.5610 +1665 5028 0.4450 +1665 5032 0.4450 +1665 5036 0.7050 +1665 5093 0.4610 +1665 5250 0.6840 +1665 5356 0.9860 +1665 5394 0.7570 +1665 5431 0.6950 +1665 5434 0.4400 +1665 5435 0.4490 +1665 5501 0.4920 +1665 5706 0.4090 +1665 5725 0.5380 +1665 5822 0.8560 +1665 5888 0.4420 +1665 5903 0.5570 +1665 5931 0.4150 +1665 5976 0.4500 +1665 6047 0.4130 +1665 6059 0.7840 +1665 6122 0.4670 +1665 6128 0.4660 +1665 6129 0.4780 +1665 6188 0.4110 +1665 6193 0.4330 +1665 6205 0.4300 +1665 6208 0.6160 +1665 6240 0.4150 +1665 6311 0.6340 +1665 6421 0.5610 +1665 6426 0.7630 +1665 6427 0.9060 +1665 6428 0.7540 +1665 6430 0.4190 +1665 6431 0.4920 +1665 6432 0.6290 +1665 6434 0.5990 +1665 6499 0.6670 +1665 6625 0.5630 +1665 6626 0.7880 +1665 6627 0.9990 +1665 6628 0.9830 +1665 6629 0.9930 +1665 6631 0.5670 +1665 6632 0.9910 +1665 6633 0.9940 +1665 6634 0.9900 +1665 6635 0.9930 +1665 6636 0.9960 +1665 6637 0.9910 +1665 6638 0.9180 +1665 6726 0.4200 +1665 6733 0.5200 +1665 6741 0.4610 +1665 6780 0.4630 +1665 6832 0.4310 +1665 6838 0.6040 +1665 6894 0.6280 +1665 6936 0.9730 +1665 6950 0.4680 +1665 7098 0.4310 +1665 7112 0.5490 +1665 7150 0.5430 +1665 7286 0.6930 +1665 7307 0.6420 +1665 7458 0.4120 +1665 7514 0.5920 +1665 7520 0.5080 +1665 7536 0.8510 +1665 7737 0.5090 +1665 7884 0.4440 +1665 7913 0.5300 +1665 7919 0.8050 +1665 8148 0.4810 +1665 8175 0.9690 +1665 8233 0.7450 +1665 8237 0.4250 +1665 8241 0.9960 +1665 8467 0.4720 +1665 8539 0.7060 +1665 8559 0.7720 +1665 8568 0.6130 +1665 8570 0.6210 +1665 8602 0.7850 +1665 8607 0.5970 +1665 8634 0.5700 +1665 8661 0.6010 +1665 8663 0.4980 +1665 8668 0.7670 +1665 8683 0.4910 +1665 8731 0.4190 +1665 8732 0.4090 +1665 8833 0.6830 +1665 8880 0.5450 +1665 8886 0.9390 +1665 8890 0.4590 +1665 8896 0.9930 +1665 9092 0.9720 +1665 9097 0.4470 +1665 9128 0.5500 +1665 9129 0.5520 +1665 9136 0.7700 +1665 9188 0.8380 +1665 9218 0.4260 +1665 9221 0.8010 +1665 9277 0.7820 +1665 9320 0.4650 +1665 9343 0.9970 +1665 9401 0.4240 +1665 9410 0.8950 +1665 9416 0.8090 +1665 9533 0.7110 +1665 9584 0.5860 +1665 9669 0.5080 +1665 9698 0.4060 +1665 9704 0.7160 +1665 9716 0.9300 +1665 9724 0.7270 +1665 9732 0.6910 +1665 9733 0.4370 +1665 9775 0.9290 +1665 9782 0.5770 +1665 9785 0.5410 +1665 9790 0.9600 +1665 9875 0.6650 +1665 9879 0.9620 +1665 9904 0.6180 +1665 9908 0.4570 +1665 9933 0.8560 +1665 9987 0.7580 +1665 10054 0.4170 +1665 10081 0.7230 +1665 10153 0.9050 +1665 10171 0.8410 +1665 10179 0.5870 +1665 10181 0.9730 +1665 10189 0.4670 +1665 10196 0.4480 +1665 10199 0.8290 +1665 10212 0.6620 +1665 10236 0.7270 +1665 10250 0.4750 +1665 10262 0.9610 +1665 10283 0.5970 +1665 10285 0.8470 +1665 10286 0.8650 +1665 10291 0.9770 +1665 10399 0.5920 +1665 10412 0.4190 +1665 10436 0.7730 +1665 10450 0.8550 +1665 10482 0.4720 +1665 10492 0.8190 +1665 10514 0.5070 +1665 10521 0.8120 +1665 10523 0.9680 +1665 10528 0.9680 +1665 10556 0.4220 +1665 10569 0.8450 +1665 10576 0.5750 +1665 10594 0.9960 +1665 10607 0.8880 +1665 10657 0.7520 +1665 10772 0.5400 +1665 10785 0.4190 +1665 10813 0.8270 +1665 10849 0.4500 +1665 10856 0.5600 +1665 10885 0.9330 +1665 10914 0.4640 +1665 10915 0.5130 +1665 10921 0.4350 +1665 10946 0.9690 +1665 10949 0.4580 +1665 10969 0.9170 +1665 10973 0.4570 +1665 10985 0.4810 +1665 10992 0.9640 +1665 11044 0.4830 +1665 11051 0.7750 +1665 11052 0.7200 +1665 11056 0.8250 +1665 11066 0.7540 +1665 11103 0.7440 +1665 11128 0.5400 +1665 11137 0.8880 +1665 11193 0.4940 +1665 11198 0.4350 +1665 11218 0.5690 +1665 11222 0.4310 +1665 11260 0.4450 +1665 11325 0.9650 +1665 11338 0.7930 +1665 11340 0.4130 +1665 22803 0.7120 +1665 22827 0.8680 +1665 22894 0.4630 +1665 22907 0.5700 +1665 22916 0.7520 +1665 22938 0.9880 +1665 22984 0.9410 +1665 23019 0.5240 +1665 23020 0.9080 +1665 23029 0.4670 +1665 23054 0.5440 +1665 23070 0.8610 +1665 23076 0.7290 +1665 23091 0.4390 +1665 23160 0.8990 +1665 23173 0.4270 +1665 23212 0.6850 +1665 23223 0.9140 +1665 23244 0.6110 +1665 23246 0.8620 +1665 23279 0.5650 +1665 23350 0.9500 +1665 23367 0.6030 +1665 23404 0.4310 +1665 23405 0.4810 +1665 23435 0.6330 +1665 23450 0.9780 +1665 23451 0.9870 +1665 23476 0.5410 +1665 23481 0.7210 +1665 23517 0.9590 +1665 23524 0.5200 +1665 23560 0.8990 +1665 23586 0.4930 +1665 23620 0.9950 +1665 24144 0.9990 +1665 24148 0.4640 +1665 25879 0.7540 +1665 25885 0.8500 +1665 25940 0.6550 +1665 25949 0.9870 +1665 25980 0.4350 +1665 25983 0.7340 +1665 26121 0.5120 +1665 26135 0.5490 +1665 26155 0.8950 +1665 26156 0.9030 +1665 26168 0.5170 +1665 26354 0.8560 +1665 26523 0.4360 +1665 26574 0.6790 +1665 26986 0.5940 +1665 27042 0.7810 +1665 27161 0.4410 +1665 27288 0.6020 +1665 27292 0.7200 +1665 27316 0.5230 +1665 27339 0.9970 +1665 27340 0.7070 +1665 27341 0.4220 +1665 28973 0.6260 +1665 28987 0.8870 +1665 29102 0.4160 +1665 29777 0.9840 +1665 29889 0.8400 +1665 29896 0.8360 +1665 29997 0.5950 +1665 30836 0.6470 +1665 50618 0.5300 +1665 51013 0.4470 +1665 51018 0.4480 +1665 51042 0.4190 +1665 51068 0.7800 +1665 51082 0.5550 +1665 51096 0.8490 +1665 51118 0.5050 +1665 51154 0.8760 +1665 51163 0.5480 +1665 51187 0.8780 +1665 51202 0.8320 +1665 51340 0.9880 +1665 51362 0.9990 +1665 51388 0.9050 +1665 51428 0.5500 +1665 51503 0.9250 +1665 51504 0.5410 +1665 51538 0.4490 +1665 51574 0.6370 +1665 51575 0.8760 +1665 51593 0.5330 +1665 51602 0.9810 +1665 51637 0.5250 +1665 51639 0.9490 +1665 51645 0.9640 +1665 51663 0.4190 +1665 51690 0.6220 +1665 51747 0.5960 +1665 54433 0.4500 +1665 54475 0.6740 +1665 54512 0.4640 +1665 54517 0.5520 +1665 54552 0.8440 +1665 54555 0.8560 +1665 54606 0.8850 +1665 54663 0.5980 +1665 54700 0.4480 +1665 54865 0.6720 +1665 54883 0.8570 +1665 54888 0.5430 +1665 54984 0.9830 +1665 55003 0.7300 +1665 55105 0.9910 +1665 55127 0.8230 +1665 55131 0.7970 +1665 55132 0.5290 +1665 55153 0.8090 +1665 55170 0.4090 +1665 55226 0.9540 +1665 55239 0.4950 +1665 55272 0.4930 +1665 55285 0.6240 +1665 55299 0.8160 +1665 55308 0.4570 +1665 55319 0.4140 +1665 55341 0.8610 +1665 55510 0.4170 +1665 55599 0.7810 +1665 55601 0.5230 +1665 55622 0.6530 +1665 55651 0.5680 +1665 55660 0.5910 +1665 55668 0.8920 +1665 55696 0.9360 +1665 55702 0.9720 +1665 55703 0.7190 +1665 55720 0.9110 +1665 55746 0.4510 +1665 55759 0.7400 +1665 55781 0.7590 +1665 55794 0.4800 +1665 55813 0.8330 +1665 55854 0.4510 +1665 55922 0.9830 +1665 55954 0.7500 +1665 56259 0.6660 +1665 56342 0.5660 +1665 56474 0.4780 +1665 56647 0.7270 +1665 56902 0.7090 +1665 56919 0.7060 +1665 56949 0.9930 +1665 56987 0.6220 +1665 57050 0.9880 +1665 57062 0.7640 +1665 57122 0.4940 +1665 57187 0.5050 +1665 57418 0.4700 +1665 57506 0.8230 +1665 57532 0.4500 +1665 57647 0.7940 +1665 57696 0.6430 +1665 57703 0.6810 +1665 57794 0.9990 +1665 60487 0.6650 +1665 60625 0.7660 +1665 64118 0.5950 +1665 64216 0.4940 +1665 64318 0.7950 +1665 64425 0.7280 +1665 64434 0.5340 +1665 64794 0.6510 +1665 65083 0.9030 +1665 65095 0.4120 +1665 79009 0.6120 +1665 79039 0.7630 +1665 79048 0.4660 +1665 79050 0.8520 +1665 79446 0.6230 +1665 79571 0.5280 +1665 79576 0.5150 +1665 79660 0.6200 +1665 79665 0.5250 +1665 79711 0.6490 +1665 79753 0.5570 +1665 79954 0.8130 +1665 80135 0.7060 +1665 80331 0.5890 +1665 83443 0.9510 +1665 83475 0.4190 +1665 83479 0.4480 +1665 83666 0.4200 +1665 83732 0.6150 +1665 83743 0.8770 +1665 84128 0.8610 +1665 84135 0.6880 +1665 84154 0.9490 +1665 84171 0.6470 +1665 84172 0.8740 +1665 84294 0.4080 +1665 84365 0.7720 +1665 84549 0.6340 +1665 84619 0.6850 +1665 84811 0.5420 +1665 84844 0.9150 +1665 84916 0.8900 +1665 84946 0.8890 +1665 84950 0.5560 +1665 84955 0.7940 +1665 84991 0.9990 +1665 85437 0.7600 +1665 85479 0.5880 +1665 90121 0.5960 +1665 90324 0.4200 +1665 92856 0.7730 +1665 94104 0.4110 +1665 113510 0.5400 +1665 115708 0.4150 +1665 116966 0.6130 +1665 117246 0.6710 +1665 133015 0.4050 +1665 139804 0.6020 +1665 142940 0.4600 +1665 143884 0.9680 +1665 146212 0.4210 +1665 154007 0.7820 +1665 161424 0.7250 +1665 170506 0.4220 +1665 171389 0.8160 +1665 221078 0.8340 +1665 221830 0.8210 +1665 317781 0.5000 +1665 345630 0.7950 +1665 348995 0.7090 +1665 692312 0.4790 +1665 728689 0.4130 +1666 1891 0.6560 +1666 1892 0.6240 +1666 1962 0.6330 +1666 2023 0.5320 +1666 2108 0.4330 +1666 2109 0.5380 +1666 2110 0.5040 +1666 2180 0.5280 +1666 2194 0.5890 +1666 2230 0.4830 +1666 2356 0.6210 +1666 2597 0.7260 +1666 3030 0.6680 +1666 3032 0.7360 +1666 3033 0.6830 +1666 3155 0.4890 +1666 3295 0.7080 +1666 3712 0.4130 +1666 4683 0.5030 +1666 4705 0.5520 +1666 4706 0.4550 +1666 4720 0.4260 +1666 4722 0.4610 +1666 4728 0.4950 +1666 5096 0.4240 +1666 5290 0.4620 +1666 5479 0.4710 +1666 5860 0.4010 +1666 5970 0.4050 +1666 6275 0.4710 +1666 6342 0.5490 +1666 6652 0.4440 +1666 7360 0.5670 +1666 8309 0.5170 +1666 8310 0.4420 +1666 8801 0.4090 +1666 8802 0.4570 +1666 9232 0.8350 +1666 9282 0.4500 +1666 9380 0.4140 +1666 9563 0.4020 +1666 10082 0.4360 +1666 10449 0.6840 +1666 10455 0.6740 +1666 10965 0.4380 +1666 23600 0.4420 +1666 26227 0.5200 +1666 27034 0.5040 +1666 27349 0.4030 +1666 28976 0.5290 +1666 51084 0.4820 +1666 51102 0.4860 +1666 51166 0.4390 +1666 51179 0.4150 +1666 51703 0.4430 +1666 54704 0.7300 +1666 54714 0.6510 +1666 54995 0.4690 +1666 55268 0.5430 +1666 80221 0.4990 +1666 80724 0.4490 +1666 84129 0.5350 +1666 84693 0.4480 +1666 112812 0.4710 +1666 132949 0.4960 +1666 348158 0.4040 +1667 1668 0.9810 +1667 1669 0.8060 +1667 1672 0.8810 +1667 1673 0.8200 +1667 1991 0.7490 +1667 3934 0.4860 +1667 4057 0.5740 +1667 4316 0.4650 +1667 4317 0.5020 +1667 4353 0.5500 +1667 6036 0.4090 +1667 6037 0.4840 +1667 6283 0.4590 +1667 6364 0.4260 +1667 6441 0.5830 +1667 8993 0.6240 +1667 9034 0.4370 +1667 10407 0.4280 +1667 10562 0.4260 +1667 56729 0.5600 +1667 140596 0.6140 +1667 414325 0.6140 +1667 728358 0.9360 +1668 1669 0.9160 +1668 1670 0.5380 +1668 1671 0.5600 +1668 1672 0.9150 +1668 1673 0.8930 +1668 1991 0.5250 +1668 3700 0.6440 +1668 4057 0.5060 +1668 4316 0.4330 +1668 4317 0.4980 +1668 4353 0.4650 +1668 6037 0.4330 +1668 6283 0.4850 +1668 6348 0.4610 +1668 6351 0.4610 +1668 7852 0.4760 +1668 8993 0.4170 +1668 10733 0.4850 +1668 81623 0.5920 +1668 117285 0.5930 +1668 140596 0.7250 +1668 140850 0.6580 +1668 140881 0.6350 +1668 245908 0.6520 +1668 245909 0.4080 +1668 245910 0.7090 +1668 245911 0.6750 +1668 245913 0.5630 +1668 245927 0.6390 +1668 245928 0.6320 +1668 245929 0.5560 +1668 245930 0.6190 +1668 245932 0.5730 +1668 245934 0.4990 +1668 245936 0.4990 +1668 245937 0.5990 +1668 245938 0.6150 +1668 245939 0.6810 +1668 245940 0.5550 +1668 400830 0.5160 +1668 414325 0.7530 +1668 503614 0.4220 +1668 503841 0.6910 +1668 613209 0.5460 +1668 613210 0.4990 +1668 613211 0.5390 +1668 644414 0.6060 +1668 728358 0.9900 +1668 100133267 0.4990 +1668 102723971 0.4160 +1669 1670 0.5560 +1669 1671 0.5560 +1669 1672 0.9120 +1669 1673 0.8590 +1669 1991 0.9990 +1669 2352 0.5230 +1669 3934 0.7700 +1669 4057 0.7310 +1669 4316 0.6400 +1669 4317 0.8760 +1669 4353 0.8730 +1669 4680 0.7150 +1669 5657 0.7940 +1669 6036 0.6070 +1669 6037 0.8400 +1669 6283 0.4940 +1669 6348 0.4200 +1669 6351 0.4550 +1669 6947 0.5860 +1669 7621 0.4440 +1669 7852 0.4240 +1669 8277 0.4190 +1669 8993 0.8290 +1669 10321 0.5760 +1669 10562 0.7370 +1669 23038 0.4130 +1669 56729 0.6860 +1669 81623 0.6240 +1669 117285 0.5010 +1669 140596 0.6130 +1669 140850 0.5400 +1669 140881 0.5660 +1669 245908 0.6120 +1669 245910 0.6500 +1669 245911 0.6650 +1669 245913 0.5750 +1669 245927 0.5910 +1669 245928 0.5340 +1669 245929 0.5110 +1669 245930 0.6200 +1669 245932 0.5150 +1669 245934 0.4990 +1669 245936 0.5010 +1669 245937 0.4990 +1669 245938 0.5830 +1669 245939 0.5630 +1669 245940 0.5370 +1669 400830 0.5770 +1669 414325 0.6470 +1669 503841 0.5970 +1669 613209 0.5030 +1669 613210 0.4990 +1669 613211 0.4990 +1669 644414 0.4990 +1669 728358 0.9160 +1669 100133267 0.5170 +1670 1671 0.9990 +1670 1672 0.9270 +1670 1673 0.9070 +1670 2980 0.5010 +1670 3934 0.5290 +1670 4224 0.5420 +1670 4316 0.6700 +1670 4586 0.4230 +1670 5068 0.9160 +1670 5320 0.5950 +1670 5645 0.7740 +1670 5646 0.7640 +1670 5967 0.7380 +1670 5968 0.7840 +1670 6476 0.4100 +1670 10071 0.4330 +1670 10158 0.4330 +1670 10407 0.4500 +1670 10562 0.4060 +1670 27290 0.4230 +1670 54537 0.4200 +1670 56667 0.5010 +1670 59272 0.9590 +1670 64127 0.4470 +1670 81623 0.5030 +1670 117285 0.5110 +1670 130120 0.5280 +1670 140453 0.4820 +1670 140596 0.7560 +1670 140850 0.6110 +1670 140881 0.5640 +1670 245908 0.7630 +1670 245909 0.5160 +1670 245910 0.7490 +1670 245911 0.6890 +1670 245913 0.5170 +1670 245927 0.5470 +1670 245928 0.5890 +1670 245929 0.4990 +1670 245930 0.6640 +1670 245932 0.5000 +1670 245934 0.4990 +1670 245936 0.4990 +1670 245937 0.6030 +1670 245938 0.6160 +1670 245939 0.5310 +1670 245940 0.5200 +1670 400830 0.4990 +1670 414325 0.8270 +1670 503618 0.4810 +1670 503841 0.7530 +1670 613209 0.5460 +1670 613210 0.4990 +1670 613211 0.5390 +1670 644414 0.4990 +1670 727897 0.4200 +1670 728358 0.5390 +1670 100133267 0.4990 +1671 1672 0.8490 +1671 1673 0.7760 +1671 2980 0.4860 +1671 3934 0.4320 +1671 4316 0.5940 +1671 4586 0.4070 +1671 4680 0.4020 +1671 5068 0.9020 +1671 5320 0.6140 +1671 5858 0.4220 +1671 5967 0.7610 +1671 5968 0.8070 +1671 10071 0.5070 +1671 10158 0.4510 +1671 10407 0.4450 +1671 10562 0.5320 +1671 27290 0.5390 +1671 29979 0.4100 +1671 56667 0.5200 +1671 81623 0.4910 +1671 83998 0.4830 +1671 130120 0.5480 +1671 140453 0.5110 +1671 140596 0.4650 +1671 161882 0.6810 +1671 245909 0.4050 +1671 245910 0.4180 +1671 414325 0.4820 +1671 503841 0.4450 +1671 728358 0.5590 +1672 1673 0.9970 +1672 2248 0.4140 +1672 2623 0.5110 +1672 3021 0.6920 +1672 3045 0.6690 +1672 3240 0.4150 +1672 3347 0.5100 +1672 3458 0.5790 +1672 3553 0.5180 +1672 3569 0.4850 +1672 3576 0.5160 +1672 3586 0.4160 +1672 3587 0.4560 +1672 3588 0.4240 +1672 3820 0.4050 +1672 3934 0.4750 +1672 3958 0.4230 +1672 4057 0.7160 +1672 4157 0.4760 +1672 4320 0.4740 +1672 4585 0.5470 +1672 5068 0.4050 +1672 5266 0.4570 +1672 5347 0.4650 +1672 5788 0.4210 +1672 5970 0.5070 +1672 6046 0.8380 +1672 6278 0.8090 +1672 6348 0.4530 +1672 6351 0.4570 +1672 6364 0.4380 +1672 6590 0.6410 +1672 7097 0.4880 +1672 7099 0.6560 +1672 7100 0.5190 +1672 7124 0.4780 +1672 7852 0.4950 +1672 8019 0.7050 +1672 8290 0.6890 +1672 8356 0.6900 +1672 8361 0.8890 +1672 8369 0.8910 +1672 9034 0.9890 +1672 9512 0.5540 +1672 9972 0.4070 +1672 10407 0.5490 +1672 23476 0.9840 +1672 23765 0.4540 +1672 50616 0.6510 +1672 55801 0.4030 +1672 57673 0.4030 +1672 57817 0.5950 +1672 58985 0.5080 +1672 64127 0.4140 +1672 81623 0.7800 +1672 84659 0.6760 +1672 117159 0.4570 +1672 117285 0.7810 +1672 130120 0.5050 +1672 135293 0.4070 +1672 138474 0.4520 +1672 140596 0.9560 +1672 140850 0.7490 +1672 140881 0.7010 +1672 245908 0.9010 +1672 245909 0.4660 +1672 245910 0.8380 +1672 245911 0.8070 +1672 245913 0.7110 +1672 245927 0.6690 +1672 245928 0.7110 +1672 245929 0.5500 +1672 245930 0.5630 +1672 245932 0.7410 +1672 245934 0.5600 +1672 245936 0.6760 +1672 245937 0.5970 +1672 245938 0.5580 +1672 245939 0.5930 +1672 245940 0.5890 +1672 400830 0.7250 +1672 414325 0.9950 +1672 440093 0.6890 +1672 440686 0.6880 +1672 503618 0.8720 +1672 503841 0.9000 +1672 504180 0.7730 +1672 613209 0.5200 +1672 613210 0.5500 +1672 613211 0.4990 +1672 644414 0.5690 +1672 653604 0.6890 +1672 727897 0.4560 +1672 728358 0.9550 +1672 100133267 0.4990 +1672 100289462 0.6790 +1673 2312 0.5660 +1673 2358 0.5850 +1673 2623 0.4560 +1673 2919 0.6760 +1673 2921 0.5290 +1673 3021 0.5210 +1673 3045 0.7160 +1673 3347 0.5850 +1673 3458 0.5700 +1673 3552 0.5860 +1673 3553 0.6360 +1673 3565 0.4470 +1673 3569 0.6080 +1673 3576 0.6920 +1673 3586 0.5180 +1673 3587 0.4630 +1673 3588 0.5070 +1673 3596 0.4320 +1673 3605 0.6210 +1673 3627 0.4350 +1673 3700 0.4580 +1673 3713 0.4910 +1673 3738 0.6170 +1673 3820 0.4480 +1673 3868 0.4490 +1673 3934 0.5580 +1673 4014 0.4690 +1673 4035 0.4340 +1673 4057 0.7450 +1673 5266 0.6470 +1673 5970 0.5380 +1673 6046 0.6240 +1673 6278 0.9130 +1673 6283 0.4990 +1673 6318 0.5150 +1673 6347 0.4340 +1673 6364 0.6680 +1673 6374 0.5900 +1673 6441 0.5470 +1673 6590 0.6540 +1673 6701 0.4460 +1673 7009 0.4300 +1673 7096 0.4720 +1673 7097 0.7580 +1673 7098 0.4800 +1673 7099 0.9860 +1673 7100 0.4790 +1673 7124 0.6020 +1673 7852 0.6890 +1673 8019 0.6210 +1673 8290 0.5170 +1673 8356 0.5190 +1673 8361 0.5580 +1673 8369 0.5590 +1673 9034 0.9940 +1673 10392 0.4480 +1673 10407 0.7980 +1673 11005 0.5300 +1673 23476 0.6220 +1673 23765 0.4450 +1673 25818 0.5440 +1673 26525 0.4470 +1673 27189 0.4570 +1673 29949 0.4840 +1673 50616 0.7560 +1673 51185 0.5040 +1673 51284 0.4020 +1673 54106 0.4770 +1673 55801 0.5310 +1673 56300 0.5450 +1673 57817 0.4170 +1673 58985 0.6090 +1673 64127 0.5800 +1673 81623 0.6700 +1673 84648 0.4440 +1673 84659 0.7910 +1673 92283 0.4650 +1673 112744 0.4920 +1673 117159 0.5810 +1673 117285 0.5720 +1673 130120 0.4810 +1673 140596 0.9520 +1673 140850 0.5930 +1673 140881 0.5740 +1673 245908 0.8420 +1673 245910 0.7270 +1673 245911 0.7490 +1673 245913 0.6600 +1673 245927 0.6110 +1673 245928 0.7220 +1673 245929 0.5590 +1673 245930 0.5410 +1673 245932 0.5590 +1673 245934 0.5430 +1673 245936 0.6370 +1673 245937 0.6040 +1673 245938 0.5250 +1673 245939 0.6300 +1673 245940 0.6080 +1673 338324 0.6140 +1673 388698 0.5660 +1673 400830 0.5620 +1673 414325 0.9510 +1673 440093 0.5170 +1673 440686 0.5180 +1673 503618 0.8710 +1673 503841 0.8230 +1673 504180 0.6090 +1673 613209 0.5160 +1673 613210 0.5060 +1673 613211 0.4990 +1673 644414 0.6290 +1673 653604 0.5170 +1673 728358 0.9390 +1673 100133267 0.4990 +1673 100289462 0.9220 +1674 1756 0.6710 +1674 1832 0.7260 +1674 1837 0.8020 +1674 1838 0.5470 +1674 1950 0.4250 +1674 2026 0.4020 +1674 2173 0.4100 +1674 2247 0.4350 +1674 2318 0.5070 +1674 2335 0.4460 +1674 2597 0.4310 +1674 2670 0.8000 +1674 2752 0.4200 +1674 2810 0.5160 +1674 2902 0.4200 +1674 3094 0.7420 +1674 3112 0.4130 +1674 3115 0.4220 +1674 3119 0.4160 +1674 3120 0.4170 +1674 3127 0.4130 +1674 3316 0.4620 +1674 4133 0.4390 +1674 4621 0.5940 +1674 4624 0.6480 +1674 4626 0.5670 +1674 4629 0.6590 +1674 4632 0.6140 +1674 4633 0.6540 +1674 4634 0.6150 +1674 4635 0.5250 +1674 4741 0.7020 +1674 4747 0.7580 +1674 4922 0.4950 +1674 4927 0.4700 +1674 5080 0.5200 +1674 5130 0.4610 +1674 5175 0.4030 +1674 5339 0.8430 +1674 5595 0.4800 +1674 5630 0.4740 +1674 6285 0.5100 +1674 6442 0.4730 +1674 6507 0.4300 +1674 6591 0.5040 +1674 6615 0.4440 +1674 6657 0.4440 +1674 6709 0.4270 +1674 7040 0.4070 +1674 7094 0.4960 +1674 7273 0.8900 +1674 7414 0.4410 +1674 7415 0.4830 +1674 7431 0.9570 +1674 7837 0.4210 +1674 8556 0.5620 +1674 8557 0.8600 +1674 9212 0.6190 +1674 9584 0.4370 +1674 9794 0.8550 +1674 10190 0.6430 +1674 10763 0.5330 +1674 11155 0.4620 +1674 22933 0.5580 +1674 23336 0.7880 +1674 23411 0.5270 +1674 23650 0.7150 +1674 27129 0.4210 +1674 27295 0.4680 +1674 29109 0.6950 +1674 64127 0.4390 +1674 80206 0.7610 +1674 81493 0.9350 +1674 83660 0.5030 +1674 91010 0.5480 +1674 137902 0.4210 +1674 146713 0.4120 +1674 171024 0.4140 +1674 100423062 0.4990 +1675 2167 0.6560 +1675 3075 0.4990 +1675 3458 0.4830 +1675 3569 0.4790 +1675 3630 0.5850 +1675 3952 0.7690 +1675 3991 0.4510 +1675 4023 0.5830 +1675 4153 0.4570 +1675 4179 0.4110 +1675 5046 0.5770 +1675 5054 0.5560 +1675 5125 0.4930 +1675 5199 0.8450 +1675 5265 0.5290 +1675 5346 0.5530 +1675 5468 0.6550 +1675 5764 0.5440 +1675 5803 0.4970 +1675 5919 0.5160 +1675 5950 0.5080 +1675 6347 0.4370 +1675 6517 0.5000 +1675 6696 0.4060 +1675 7124 0.4880 +1675 7350 0.4790 +1675 9370 0.9880 +1675 10135 0.6020 +1675 28964 0.4260 +1675 54760 0.5980 +1675 55600 0.5010 +1675 56729 0.9050 +1675 63924 0.5850 +1675 84666 0.7200 +1675 145264 0.4810 +1676 1677 0.9990 +1676 1777 0.7990 +1676 2021 0.7730 +1676 3002 0.9660 +1676 3005 0.4310 +1676 3447 0.4360 +1676 3836 0.5040 +1676 3837 0.5170 +1676 4004 0.4220 +1676 4830 0.4760 +1676 5346 0.6450 +1676 5530 0.5060 +1676 7157 0.4260 +1676 7350 0.6280 +1676 8772 0.4580 +1676 8837 0.4260 +1676 23095 0.5480 +1676 23270 0.4830 +1676 23581 0.5710 +1676 27141 0.9530 +1676 51074 0.4140 +1676 54205 0.6030 +1676 55885 0.5580 +1676 60386 0.5600 +1676 63924 0.9160 +1676 79758 0.4040 +1676 120892 0.5150 +1676 140290 0.4090 +1676 145942 0.4020 +1676 200035 0.4010 +1676 338661 0.4600 +1677 1773 0.4390 +1677 1774 0.4750 +1677 1775 0.4280 +1677 1776 0.6030 +1677 1777 0.8390 +1677 2021 0.7080 +1677 3005 0.9280 +1677 3006 0.7030 +1677 3007 0.7810 +1677 3008 0.5340 +1677 3009 0.7810 +1677 3024 0.7850 +1677 3146 0.5650 +1677 3148 0.7270 +1677 3308 0.5100 +1677 3836 0.4990 +1677 3837 0.4990 +1677 4116 0.7530 +1677 5530 0.4540 +1677 7153 0.4030 +1677 7157 0.4320 +1677 8717 0.4100 +1677 8742 0.4060 +1677 8772 0.6160 +1677 8837 0.5240 +1677 9131 0.5390 +1677 9731 0.4040 +1677 22985 0.8750 +1677 23581 0.6530 +1677 27141 0.9290 +1677 27429 0.4070 +1677 54205 0.6230 +1677 60386 0.5690 +1677 63924 0.5780 +1677 64782 0.4850 +1677 114823 0.4120 +1677 148870 0.4190 +1678 2323 0.4170 +1678 2671 0.7960 +1678 3052 0.4640 +1678 3313 0.6980 +1678 3329 0.6120 +1678 3336 0.5630 +1678 3421 0.5680 +1678 4580 0.5100 +1678 4702 0.4920 +1678 4713 0.5560 +1678 4716 0.5500 +1678 4791 0.4250 +1678 5018 0.4410 +1678 5456 0.4280 +1678 5631 0.6010 +1678 6232 0.4330 +1678 6341 0.4250 +1678 6390 0.5500 +1678 6391 0.6560 +1678 6392 0.7810 +1678 7416 0.6960 +1678 8604 0.9410 +1678 9131 0.5130 +1678 9804 0.5570 +1678 9868 0.6870 +1678 9968 0.4150 +1678 10063 0.7540 +1678 10165 0.9350 +1678 10245 0.5220 +1678 10254 0.5540 +1678 10367 0.4620 +1678 10440 0.8140 +1678 10452 0.8390 +1678 10469 0.6350 +1678 10799 0.5360 +1678 11331 0.5810 +1678 23590 0.4070 +1678 23630 0.4310 +1678 23676 0.5590 +1678 25813 0.6590 +1678 26515 0.9800 +1678 26517 0.9990 +1678 26519 0.9990 +1678 26520 0.9980 +1678 26521 0.7610 +1678 27429 0.4440 +1678 29090 0.6880 +1678 29928 0.8660 +1678 29952 0.7630 +1678 51021 0.4750 +1678 51025 0.6020 +1678 51079 0.4450 +1678 51142 0.5610 +1678 51287 0.6050 +1678 51300 0.6460 +1678 54543 0.7730 +1678 54902 0.4180 +1678 54927 0.5120 +1678 55486 0.4230 +1678 56942 0.4350 +1678 56993 0.7990 +1678 65260 0.5600 +1678 79145 0.6300 +1678 80273 0.5710 +1678 84269 0.5470 +1678 90580 0.4570 +1678 90639 0.6500 +1678 91419 0.4830 +1678 91750 0.4530 +1678 92609 0.7840 +1678 114789 0.4470 +1678 131118 0.6480 +1678 131474 0.9770 +1678 132660 0.5630 +1678 140823 0.4560 +1678 221154 0.4880 +1678 221823 0.5470 +1678 388753 0.6640 +1678 400916 0.5470 +1678 401505 0.5330 +1678 493856 0.4570 +1678 100188893 0.4420 +1678 100272147 0.4730 +1678 100287932 0.9640 +1687 1991 0.4160 +1687 2070 0.4270 +1687 2099 0.4320 +1687 2706 0.4400 +1687 2879 0.4480 +1687 3001 0.4950 +1687 3002 0.8560 +1687 3146 0.8240 +1687 3553 0.5500 +1687 3606 0.6210 +1687 4210 0.5120 +1687 4893 0.4710 +1687 5172 0.4340 +1687 7157 0.8640 +1687 7466 0.4200 +1687 8626 0.7560 +1687 8737 0.5070 +1687 9132 0.5280 +1687 9169 0.5840 +1687 9447 0.6200 +1687 11035 0.5450 +1687 22861 0.5930 +1687 24145 0.4120 +1687 26031 0.4290 +1687 29108 0.5480 +1687 51168 0.4180 +1687 54205 0.8500 +1687 55655 0.4360 +1687 55876 0.8880 +1687 56169 0.9010 +1687 58484 0.5970 +1687 64072 0.4370 +1687 64699 0.4240 +1687 79792 0.5820 +1687 114548 0.6070 +1687 114880 0.4270 +1687 140609 0.4050 +1687 171389 0.4950 +1687 197259 0.5970 +1687 199713 0.4950 +1687 284110 0.9790 +1690 2197 0.8300 +1690 2335 0.4510 +1690 2706 0.4570 +1690 3776 0.6390 +1690 3777 0.5260 +1690 5212 0.6490 +1690 6229 0.4030 +1690 6234 0.4130 +1690 6975 0.9020 +1690 7007 0.7820 +1690 7399 0.4350 +1690 9132 0.4020 +1690 26254 0.4140 +1690 29091 0.8260 +1690 51310 0.8310 +1690 57153 0.8190 +1690 146183 0.5110 +1690 150677 0.4790 +1690 161497 0.4210 +1690 340990 0.4290 +1690 375611 0.4300 +1716 1763 0.4870 +1716 1841 0.7960 +1716 1890 0.8630 +1716 2030 0.4340 +1716 2110 0.4770 +1716 2891 0.5080 +1716 2987 0.9320 +1716 3704 0.9100 +1716 4358 0.9600 +1716 4512 0.4810 +1716 4513 0.5910 +1716 4514 0.4280 +1716 4519 0.4400 +1716 4535 0.6570 +1716 4536 0.5460 +1716 4537 0.6470 +1716 4538 0.7240 +1716 4539 0.6460 +1716 4540 0.5740 +1716 4541 0.7000 +1716 4694 0.5440 +1716 4695 0.6700 +1716 4696 0.5990 +1716 4698 0.6850 +1716 4700 0.6100 +1716 4701 0.5370 +1716 4702 0.6980 +1716 4704 0.5710 +1716 4706 0.7000 +1716 4707 0.4440 +1716 4709 0.6780 +1716 4710 0.6360 +1716 4711 0.6990 +1716 4712 0.7160 +1716 4713 0.6890 +1716 4714 0.7580 +1716 4715 0.6910 +1716 4716 0.7200 +1716 4717 0.4870 +1716 4718 0.6320 +1716 4720 0.7660 +1716 4722 0.7550 +1716 4723 0.8070 +1716 4724 0.7440 +1716 4725 0.5950 +1716 4726 0.6720 +1716 4728 0.7720 +1716 4729 0.6690 +1716 4731 0.5760 +1716 4832 0.5760 +1716 4833 0.8150 +1716 4860 0.9410 +1716 4907 0.9080 +1716 5428 0.9190 +1716 6240 0.4960 +1716 6341 0.5040 +1716 6616 0.4220 +1716 6687 0.4500 +1716 6834 0.5520 +1716 7019 0.6530 +1716 7083 0.8850 +1716 7298 0.7590 +1716 7378 0.5040 +1716 7381 0.4790 +1716 7384 0.4530 +1716 7385 0.5190 +1716 7386 0.6010 +1716 7388 0.5230 +1716 7447 0.4280 +1716 8382 0.4560 +1716 8802 0.8780 +1716 8803 0.9260 +1716 8974 0.5460 +1716 9201 0.4850 +1716 9377 0.5680 +1716 9512 0.4570 +1716 9601 0.7030 +1716 9997 0.4720 +1716 10201 0.4440 +1716 10553 0.5010 +1716 10989 0.4930 +1716 11232 0.7930 +1716 22978 0.9260 +1716 23203 0.4460 +1716 25939 0.5030 +1716 26235 0.6560 +1716 27089 0.4740 +1716 29922 0.4320 +1716 30833 0.9320 +1716 50484 0.9320 +1716 50808 0.7580 +1716 51079 0.6970 +1716 51102 0.4340 +1716 51106 0.4180 +1716 51251 0.9200 +1716 51727 0.7490 +1716 51805 0.4710 +1716 54539 0.6520 +1716 54968 0.4720 +1716 55364 0.5020 +1716 55687 0.6340 +1716 55750 0.5730 +1716 55967 0.6890 +1716 56474 0.4350 +1716 56652 0.8960 +1716 56953 0.9770 +1716 57038 0.5430 +1716 57407 0.4970 +1716 57468 0.6150 +1716 60489 0.4040 +1716 63933 0.4280 +1716 79728 0.6690 +1716 80195 0.4970 +1716 80347 0.4240 +1716 81602 0.4130 +1716 83988 0.4600 +1716 84618 0.9160 +1716 84886 0.4040 +1716 84939 0.4950 +1716 92667 0.7060 +1716 93034 0.9110 +1716 115024 0.9140 +1716 126328 0.5220 +1716 129607 0.7830 +1716 139221 0.4950 +1716 200424 0.4050 +1716 246243 0.4710 +1716 374291 0.6160 +1716 388753 0.4090 +1716 728317 0.4950 +1716 100526794 0.9120 +1716 100532726 0.5780 +1717 1718 0.9960 +1717 2168 0.4150 +1717 2194 0.7570 +1717 2205 0.6310 +1717 2222 0.9380 +1717 2224 0.8160 +1717 2534 0.4280 +1717 2638 0.7200 +1717 2736 0.4740 +1717 3156 0.9040 +1717 3157 0.9470 +1717 3158 0.8140 +1717 3283 0.6820 +1717 3284 0.6990 +1717 3293 0.4020 +1717 3422 0.8640 +1717 3638 0.7090 +1717 3988 0.9280 +1717 3992 0.4920 +1717 4047 0.9250 +1717 4067 0.4930 +1717 4133 0.4890 +1717 4493 0.4100 +1717 4597 0.8600 +1717 4598 0.8330 +1717 4653 0.4240 +1717 4800 0.5010 +1717 4801 0.4990 +1717 4802 0.5260 +1717 4864 0.4600 +1717 4946 0.4330 +1717 5313 0.4700 +1717 5447 0.5030 +1717 5740 0.5470 +1717 5932 0.4930 +1717 6168 0.4690 +1717 6307 0.9250 +1717 6309 0.9980 +1717 6319 0.6630 +1717 6469 0.5510 +1717 6496 0.5240 +1717 6646 0.9420 +1717 6667 0.5020 +1717 6713 0.9830 +1717 6716 0.4300 +1717 6720 0.8480 +1717 6721 0.9070 +1717 6820 0.8150 +1717 7069 0.5560 +1717 7108 0.4020 +1717 8435 0.9380 +1717 8481 0.4240 +1717 8564 0.4220 +1717 8614 0.4410 +1717 9023 0.9580 +1717 9415 0.5160 +1717 9420 0.6590 +1717 9453 0.5920 +1717 10280 0.8910 +1717 10484 0.4320 +1717 10654 0.6780 +1717 10682 0.9660 +1717 10826 0.6790 +1717 10858 0.9150 +1717 11065 0.4080 +1717 11161 0.9150 +1717 22937 0.4330 +1717 23623 0.4120 +1717 26166 0.4450 +1717 26873 0.4050 +1717 27346 0.4090 +1717 27430 0.4370 +1717 50814 0.9660 +1717 51141 0.4320 +1717 51302 0.6100 +1717 51478 0.9470 +1717 55191 0.8190 +1717 55824 0.7690 +1717 55902 0.4570 +1717 57412 0.4450 +1717 60481 0.4520 +1717 64240 0.4660 +1717 64241 0.4690 +1717 65985 0.4820 +1717 79071 0.4290 +1717 80007 0.4470 +1717 80270 0.7150 +1717 81033 0.4430 +1717 84650 0.4510 +1717 84823 0.5230 +1717 91734 0.6700 +1717 93517 0.5950 +1717 120227 0.9110 +1717 132949 0.4060 +1717 134429 0.4560 +1717 144193 0.5840 +1717 255738 0.4210 +1717 285440 0.4470 +1717 286151 0.4450 +1717 347475 0.5190 +1718 2108 0.6370 +1718 2109 0.6470 +1718 2121 0.8790 +1718 2180 0.5060 +1718 2194 0.6350 +1718 2222 0.8310 +1718 2224 0.7950 +1718 2517 0.6010 +1718 2597 0.4060 +1718 2739 0.4620 +1718 3156 0.8290 +1718 3157 0.8770 +1718 3158 0.5840 +1718 3283 0.4290 +1718 3284 0.4040 +1718 3293 0.5510 +1718 3422 0.7650 +1718 3638 0.8060 +1718 3930 0.9500 +1718 3988 0.9190 +1718 3990 0.4060 +1718 4047 0.9820 +1718 4158 0.4980 +1718 4193 0.5290 +1718 4512 0.5160 +1718 4513 0.5680 +1718 4514 0.6140 +1718 4597 0.6410 +1718 4598 0.7410 +1718 4738 0.4250 +1718 5226 0.6490 +1718 5236 0.4790 +1718 5313 0.4270 +1718 5315 0.4520 +1718 5684 0.5000 +1718 6006 0.8690 +1718 6007 0.8390 +1718 6135 0.4230 +1718 6307 0.9870 +1718 6309 0.9840 +1718 6319 0.6290 +1718 6389 0.5770 +1718 6390 0.6850 +1718 6646 0.9400 +1718 6713 0.8560 +1718 6720 0.5690 +1718 6721 0.7080 +1718 6820 0.8230 +1718 7108 0.9760 +1718 7157 0.7060 +1718 7436 0.5050 +1718 7798 0.4240 +1718 8310 0.4330 +1718 8435 0.9430 +1718 8694 0.4450 +1718 9023 0.9300 +1718 9213 0.5630 +1718 9388 0.4480 +1718 9420 0.5090 +1718 9453 0.4890 +1718 9563 0.4370 +1718 9619 0.5380 +1718 9793 0.5600 +1718 10555 0.4330 +1718 10654 0.5840 +1718 10682 0.9810 +1718 10826 0.5030 +1718 10858 0.9130 +1718 11161 0.5940 +1718 22949 0.5540 +1718 27085 0.5610 +1718 50814 0.8580 +1718 51031 0.4400 +1718 51141 0.4380 +1718 51144 0.5650 +1718 51179 0.5060 +1718 51302 0.4500 +1718 51478 0.9780 +1718 51703 0.4690 +1718 54363 0.5060 +1718 55304 0.4640 +1718 55577 0.4160 +1718 55748 0.4410 +1718 55750 0.4020 +1718 55937 0.4210 +1718 56965 0.4020 +1718 57678 0.5260 +1718 79071 0.4170 +1718 79668 0.4020 +1718 80270 0.5490 +1718 83693 0.4800 +1718 84649 0.4710 +1718 84650 0.5630 +1718 84693 0.4290 +1718 91734 0.5780 +1718 134429 0.4450 +1718 373156 0.5050 +1719 1723 0.8880 +1719 1725 0.7920 +1719 1737 0.4890 +1719 1738 0.5100 +1719 1743 0.4540 +1719 1757 0.7140 +1719 1806 0.5400 +1719 1841 0.8320 +1719 1854 0.6770 +1719 1869 0.7770 +1719 1870 0.4450 +1719 1890 0.5050 +1719 1915 0.4360 +1719 1956 0.4920 +1719 2232 0.4270 +1719 2237 0.4360 +1719 2280 0.6500 +1719 2348 0.6080 +1719 2350 0.5540 +1719 2352 0.4880 +1719 2356 0.9950 +1719 2539 0.4340 +1719 2597 0.5350 +1719 2618 0.9890 +1719 2653 0.6240 +1719 2731 0.9000 +1719 2752 0.4900 +1719 2821 0.4860 +1719 2877 0.4070 +1719 2908 0.5240 +1719 2936 0.5700 +1719 2959 0.4110 +1719 2969 0.4160 +1719 3141 0.4440 +1719 3145 0.6300 +1719 3156 0.4320 +1719 3308 0.5120 +1719 3320 0.4490 +1719 3329 0.7550 +1719 3336 0.5750 +1719 3558 0.4550 +1719 3614 0.4320 +1719 3615 0.5490 +1719 3704 0.5640 +1719 3832 0.4230 +1719 3845 0.4230 +1719 3856 0.4220 +1719 3860 0.4240 +1719 3866 0.4220 +1719 3883 0.4220 +1719 4085 0.4670 +1719 4141 0.4160 +1719 4143 0.4020 +1719 4144 0.4540 +1719 4173 0.6320 +1719 4193 0.5680 +1719 4254 0.4630 +1719 4363 0.4440 +1719 4437 0.6380 +1719 4482 0.4370 +1719 4493 0.4710 +1719 4519 0.6550 +1719 4522 0.9900 +1719 4524 0.8430 +1719 4548 0.9780 +1719 4552 0.6950 +1719 4594 0.4790 +1719 4601 0.4500 +1719 4609 0.5260 +1719 4846 0.4460 +1719 4953 0.4190 +1719 5018 0.4060 +1719 5053 0.9300 +1719 5092 0.4010 +1719 5111 0.4460 +1719 5243 0.4860 +1719 5422 0.5190 +1719 5471 0.4360 +1719 5557 0.5070 +1719 5591 0.5140 +1719 5669 0.5850 +1719 5723 0.4570 +1719 5742 0.4050 +1719 5743 0.4890 +1719 5805 0.4950 +1719 5832 0.5660 +1719 5860 0.9790 +1719 5888 0.4890 +1719 5984 0.4090 +1719 6240 0.6140 +1719 6241 0.6060 +1719 6470 0.9950 +1719 6472 0.9920 +1719 6520 0.4940 +1719 6573 0.7290 +1719 6631 0.4020 +1719 6648 0.4090 +1719 6697 0.9820 +1719 6948 0.7870 +1719 7027 0.5940 +1719 7029 0.5280 +1719 7054 0.9160 +1719 7057 0.5660 +1719 7083 0.8850 +1719 7084 0.8610 +1719 7153 0.6390 +1719 7155 0.4720 +1719 7157 0.7850 +1719 7166 0.9320 +1719 7167 0.5760 +1719 7172 0.4800 +1719 7264 0.4460 +1719 7296 0.5290 +1719 7298 0.9990 +1719 7372 0.6820 +1719 7374 0.4220 +1719 7386 0.6210 +1719 7464 0.4550 +1719 8050 0.4900 +1719 8565 0.4050 +1719 8833 0.5610 +1719 8836 0.9660 +1719 9131 0.4100 +1719 9156 0.4230 +1719 9429 0.4330 +1719 9450 0.5480 +1719 9563 0.5900 +1719 9837 0.4610 +1719 9868 0.4440 +1719 10051 0.4200 +1719 10262 0.4280 +1719 10391 0.4500 +1719 10440 0.4760 +1719 10452 0.6580 +1719 10469 0.6810 +1719 10587 0.4760 +1719 10588 0.5820 +1719 10592 0.4350 +1719 10606 0.5360 +1719 10797 0.7420 +1719 10840 0.9450 +1719 10841 0.9400 +1719 10923 0.4520 +1719 11151 0.4720 +1719 23475 0.4120 +1719 23603 0.4550 +1719 25902 0.9720 +1719 26227 0.5680 +1719 26519 0.4340 +1719 27232 0.4750 +1719 27349 0.4100 +1719 27430 0.4370 +1719 29090 0.4690 +1719 29958 0.6710 +1719 51056 0.5350 +1719 51514 0.4780 +1719 54205 0.6070 +1719 54995 0.4120 +1719 55066 0.5330 +1719 55215 0.4070 +1719 55364 0.7930 +1719 55388 0.4130 +1719 56992 0.4160 +1719 57016 0.9090 +1719 57175 0.4500 +1719 79139 0.4880 +1719 79906 0.4550 +1719 81620 0.4890 +1719 81846 0.4330 +1719 84693 0.6360 +1719 84883 0.4080 +1719 84896 0.5730 +1719 84940 0.4500 +1719 92609 0.4610 +1719 113235 0.6430 +1719 114112 0.4920 +1719 114798 0.5100 +1719 121278 0.9040 +1719 123263 0.9570 +1719 129607 0.7010 +1719 131474 0.5090 +1719 139596 0.7050 +1719 157570 0.5080 +1719 160428 0.9520 +1719 197131 0.4060 +1719 200205 0.8420 +1719 200895 0.9090 +1719 387103 0.4780 +1719 390081 0.4100 +1719 390243 0.4610 +1719 440387 0.5060 +1719 441024 0.6490 +1723 1727 0.9120 +1723 1807 0.8050 +1723 1808 0.7660 +1723 1809 0.7660 +1723 1841 0.6010 +1723 1854 0.4010 +1723 1890 0.8640 +1723 2058 0.4540 +1723 2110 0.6700 +1723 2232 0.8030 +1723 2271 0.4860 +1723 2356 0.4360 +1723 2597 0.4060 +1723 2618 0.7580 +1723 2632 0.4370 +1723 2766 0.4710 +1723 2879 0.4770 +1723 3614 0.6050 +1723 3615 0.7200 +1723 3814 0.8550 +1723 3948 0.4240 +1723 4141 0.4110 +1723 4507 0.4130 +1723 4519 0.5410 +1723 4522 0.4520 +1723 4621 0.4330 +1723 4728 0.4020 +1723 4860 0.5570 +1723 4907 0.8210 +1723 4935 0.8280 +1723 4942 0.4090 +1723 4967 0.4410 +1723 5471 0.7110 +1723 5625 0.5160 +1723 5723 0.4740 +1723 5832 0.4160 +1723 6389 0.6470 +1723 6391 0.7270 +1723 6392 0.5560 +1723 6470 0.4030 +1723 6949 0.6200 +1723 7086 0.4210 +1723 7167 0.5090 +1723 7284 0.4370 +1723 7298 0.6670 +1723 7371 0.5900 +1723 7372 0.9990 +1723 7378 0.7970 +1723 8192 0.4200 +1723 8565 0.4710 +1723 8833 0.9400 +1723 9054 0.4060 +1723 9343 0.4220 +1723 9563 0.4190 +1723 9615 0.4810 +1723 9962 0.7050 +1723 9963 0.7030 +1723 10229 0.4020 +1723 10570 0.7650 +1723 10606 0.6120 +1723 11128 0.4420 +1723 23408 0.4220 +1723 23590 0.6160 +1723 25885 0.5010 +1723 26873 0.7970 +1723 27235 0.5940 +1723 29925 0.5200 +1723 29968 0.4850 +1723 51004 0.5450 +1723 51026 0.8550 +1723 51117 0.5590 +1723 51167 0.9350 +1723 51292 0.4820 +1723 51700 0.9180 +1723 51706 0.9230 +1723 51727 0.5250 +1723 51733 0.4930 +1723 51805 0.4820 +1723 54205 0.5900 +1723 54606 0.4070 +1723 54870 0.4050 +1723 54963 0.4270 +1723 55152 0.4050 +1723 55210 0.4040 +1723 55270 0.7780 +1723 55349 0.5780 +1723 55748 0.5580 +1723 56474 0.7290 +1723 56896 0.7720 +1723 57107 0.6140 +1723 58472 0.5100 +1723 83549 0.4700 +1723 84274 0.5030 +1723 84735 0.5580 +1723 84881 0.4190 +1723 84883 0.6210 +1723 89894 0.8340 +1723 91875 0.5070 +1723 92106 0.8690 +1723 92483 0.4420 +1723 118980 0.4450 +1723 122622 0.5280 +1723 123263 0.4740 +1723 127845 0.8550 +1723 139596 0.6360 +1723 144193 0.4020 +1723 148811 0.5550 +1723 151531 0.7900 +1723 160287 0.4440 +1723 162417 0.4910 +1723 200895 0.9100 +1723 283377 0.6310 +1723 283985 0.7890 +1723 342372 0.4530 +1723 606495 0.9280 +1723 100526760 0.5550 +1725 1965 0.4570 +1725 1977 0.4320 +1725 1983 0.5340 +1725 1984 0.9990 +1725 2058 0.5280 +1725 2193 0.6540 +1725 2885 0.4080 +1725 4953 0.7450 +1725 5230 0.4360 +1725 5547 0.4510 +1725 5594 0.6200 +1725 5595 0.8410 +1725 5832 0.4380 +1725 5894 0.4160 +1725 5917 0.4490 +1725 6124 0.4370 +1725 6133 0.7220 +1725 6303 0.4950 +1725 6611 0.6940 +1725 6723 0.7280 +1725 7167 0.4540 +1725 7284 0.4030 +1725 8565 0.5370 +1725 8666 0.4170 +1725 9070 0.4850 +1725 9467 0.6360 +1725 22984 0.5220 +1725 23481 0.4010 +1725 23626 0.4790 +1725 25885 0.5590 +1725 27000 0.4410 +1725 29086 0.4960 +1725 51582 0.5790 +1725 51693 0.4850 +1725 54498 0.5260 +1725 55651 0.4430 +1725 56648 0.9930 +1725 56915 0.4090 +1725 57038 0.4560 +1725 60491 0.4570 +1725 64328 0.5320 +1725 79814 0.5820 +1725 79834 0.5060 +1725 83475 0.9990 +1725 84292 0.5900 +1725 84896 0.4820 +1725 113451 0.5680 +1725 114609 0.4290 +1725 133482 0.4400 +1725 143244 0.9240 +1725 196743 0.5260 +1725 200895 0.4640 +1727 1728 0.4480 +1727 1806 0.8780 +1727 1807 0.5620 +1727 1808 0.5760 +1727 1809 0.5720 +1727 2230 0.4860 +1727 2232 0.7040 +1727 2618 0.4480 +1727 2739 0.4110 +1727 2752 0.4760 +1727 3039 0.8900 +1727 3040 0.9230 +1727 3042 0.5570 +1727 3043 0.8470 +1727 3045 0.5440 +1727 3046 0.5610 +1727 3047 0.5940 +1727 3048 0.5600 +1727 3049 0.5760 +1727 3050 0.5960 +1727 3814 0.5360 +1727 4519 0.4400 +1727 4728 0.4130 +1727 4846 0.5730 +1727 4935 0.6130 +1727 5071 0.4660 +1727 5188 0.4730 +1727 5447 0.7360 +1727 6319 0.8150 +1727 6389 0.6990 +1727 6510 0.5660 +1727 6821 0.9510 +1727 7001 0.4310 +1727 7084 0.4680 +1727 7372 0.8570 +1727 7416 0.4970 +1727 7417 0.4850 +1727 8833 0.4910 +1727 9962 0.4860 +1727 9963 0.4860 +1727 10570 0.5620 +1727 11318 0.6520 +1727 25840 0.4340 +1727 25979 0.4240 +1727 27349 0.4710 +1727 50814 0.5130 +1727 51026 0.5370 +1727 51167 0.4750 +1727 51170 0.4190 +1727 51327 0.7850 +1727 51557 0.4720 +1727 54205 0.4800 +1727 54504 0.4030 +1727 54996 0.7000 +1727 55312 0.4820 +1727 56896 0.5630 +1727 57142 0.6260 +1727 64757 0.9370 +1727 80777 0.9990 +1727 89894 0.6130 +1727 91875 0.4280 +1727 127845 0.5360 +1727 199974 0.4230 +1727 283985 0.6080 +1727 389434 0.5690 +1727 100423062 0.4290 +1728 2033 0.6100 +1728 2052 0.7930 +1728 2295 0.4410 +1728 2353 0.5420 +1728 2395 0.4250 +1728 2495 0.5560 +1728 2512 0.4440 +1728 2539 0.5680 +1728 2597 0.6690 +1728 2627 0.4660 +1728 2677 0.9390 +1728 2729 0.9060 +1728 2730 0.9490 +1728 2745 0.5930 +1728 2875 0.6560 +1728 2877 0.8020 +1728 2878 0.7330 +1728 2879 0.5640 +1728 2880 0.7320 +1728 2882 0.7320 +1728 2932 0.5740 +1728 2936 0.8350 +1728 2938 0.7080 +1728 2939 0.6140 +1728 2940 0.5250 +1728 2941 0.5260 +1728 2944 0.7190 +1728 2946 0.5460 +1728 2947 0.4880 +1728 2950 0.7280 +1728 2990 0.4120 +1728 3091 0.8520 +1728 3161 0.4330 +1728 3162 0.9160 +1728 3176 0.4190 +1728 3303 0.5660 +1728 3304 0.5880 +1728 3308 0.5820 +1728 3309 0.4150 +1728 3320 0.4540 +1728 3326 0.4500 +1728 3553 0.6260 +1728 3569 0.6130 +1728 3586 0.4010 +1728 3630 0.4470 +1728 3725 0.5220 +1728 3790 0.4240 +1728 4001 0.5920 +1728 4094 0.6530 +1728 4097 0.5180 +1728 4199 0.5420 +1728 4246 0.4250 +1728 4316 0.4910 +1728 4318 0.4260 +1728 4353 0.6660 +1728 4489 0.5720 +1728 4490 0.5340 +1728 4493 0.5970 +1728 4494 0.6910 +1728 4496 0.5410 +1728 4501 0.6850 +1728 4502 0.5460 +1728 4524 0.4130 +1728 4609 0.4090 +1728 4778 0.6250 +1728 4780 0.9780 +1728 4790 0.4820 +1728 4792 0.4770 +1728 4830 0.5020 +1728 4953 0.9520 +1728 4968 0.4030 +1728 5052 0.6540 +1728 5055 0.4070 +1728 5071 0.4610 +1728 5226 0.4300 +1728 5447 0.4500 +1728 5468 0.4750 +1728 5595 0.4120 +1728 5743 0.5780 +1728 6303 0.5060 +1728 6347 0.4320 +1728 6573 0.4010 +1728 6647 0.6730 +1728 6648 0.6920 +1728 6657 0.4230 +1728 6774 0.4270 +1728 7040 0.4060 +1728 7099 0.4330 +1728 7124 0.7120 +1728 7157 0.9460 +1728 7161 0.5500 +1728 7295 0.8190 +1728 7296 0.8030 +1728 7355 0.4800 +1728 7358 0.4420 +1728 7498 0.4770 +1728 7515 0.4170 +1728 7837 0.6000 +1728 7941 0.4320 +1728 7975 0.7200 +1728 8452 0.7380 +1728 8544 0.5020 +1728 8574 0.5290 +1728 8644 0.5670 +1728 8681 0.5640 +1728 8714 0.4210 +1728 8856 0.4140 +1728 8878 0.5920 +1728 8939 0.4650 +1728 9360 0.5060 +1728 9446 0.4120 +1728 9451 0.4460 +1728 9563 0.5060 +1728 9603 0.4510 +1728 9817 0.9530 +1728 9821 0.4070 +1728 9978 0.5590 +1728 10257 0.4200 +1728 10273 0.5940 +1728 10891 0.6750 +1728 10935 0.4210 +1728 11243 0.4570 +1728 11315 0.6850 +1728 22949 0.5260 +1728 22977 0.5370 +1728 23411 0.5370 +1728 23657 0.6140 +1728 25828 0.5430 +1728 27035 0.6640 +1728 27306 0.6790 +1728 29948 0.6460 +1728 50507 0.5340 +1728 51081 0.4220 +1728 51167 0.4370 +1728 51548 0.4510 +1728 51700 0.4180 +1728 51706 0.4200 +1728 54205 0.5250 +1728 54575 0.6000 +1728 54576 0.6070 +1728 54577 0.5980 +1728 54578 0.6510 +1728 54579 0.4290 +1728 54600 0.4710 +1728 54657 0.5950 +1728 54658 0.6140 +1728 54659 0.4510 +1728 55002 0.5920 +1728 55312 0.4170 +1728 55922 0.5060 +1728 57016 0.6300 +1728 79001 0.9420 +1728 79661 0.4470 +1728 79728 0.4400 +1728 83439 0.4420 +1728 84706 0.5440 +1728 84823 0.5160 +1728 84883 0.4640 +1728 94234 0.4500 +1728 114548 0.4180 +1728 117156 0.4220 +1728 133482 0.6020 +1728 135152 0.5070 +1728 137902 0.5910 +1728 140809 0.8030 +1728 154807 0.9060 +1728 252969 0.5750 +1728 257202 0.7320 +1728 283871 0.4390 +1728 373156 0.4170 +1728 374291 0.6580 +1728 389434 0.5390 +1728 493869 0.7500 +1728 606495 0.4470 +1728 100527963 0.4550 +1729 1730 0.9060 +1729 1839 0.5070 +1729 1894 0.4750 +1729 1950 0.5790 +1729 1956 0.5730 +1729 1977 0.4100 +1729 2040 0.4090 +1729 2064 0.5320 +1729 2065 0.5190 +1729 2066 0.5350 +1729 2069 0.4990 +1729 2319 0.4110 +1729 2671 0.7470 +1729 3071 0.4470 +1729 3084 0.5130 +1729 3163 0.4110 +1729 3960 0.5200 +1729 3984 0.6830 +1729 4001 0.4540 +1729 4162 0.4190 +1729 4286 0.4910 +1729 4627 0.6790 +1729 4647 0.6160 +1729 4650 0.4940 +1729 4935 0.4220 +1729 5216 0.9700 +1729 5217 0.7240 +1729 5311 0.4960 +1729 5337 0.4050 +1729 5364 0.4950 +1729 5459 0.6740 +1729 5585 0.5220 +1729 5586 0.4540 +1729 5879 0.4800 +1729 5880 0.4020 +1729 5976 0.5550 +1729 6093 0.6620 +1729 6242 0.4700 +1729 6285 0.4660 +1729 6502 0.4240 +1729 6714 0.5710 +1729 6722 0.5960 +1729 6789 0.4770 +1729 6793 0.5060 +1729 7030 0.4200 +1729 7037 0.4290 +1729 7094 0.4230 +1729 7112 0.4310 +1729 7268 0.4900 +1729 7399 0.4350 +1729 7408 0.4390 +1729 7430 0.4040 +1729 7454 0.6380 +1729 7456 0.5190 +1729 7466 0.7300 +1729 7879 0.4110 +1729 7942 0.4240 +1729 8086 0.4050 +1729 8541 0.5020 +1729 8773 0.4050 +1729 8776 0.4480 +1729 8826 0.7310 +1729 8987 0.4010 +1729 9113 0.4370 +1729 9341 0.4080 +1729 9381 0.4090 +1729 9414 0.5490 +1729 9475 0.6140 +1729 9497 0.4080 +1729 9542 0.5130 +1729 9647 0.6520 +1729 9748 0.4340 +1729 9948 0.5810 +1729 10083 0.5480 +1729 10095 0.6180 +1729 10097 0.4400 +1729 10160 0.4280 +1729 10163 0.4020 +1729 10211 0.4110 +1729 10238 0.6140 +1729 10413 0.4790 +1729 10480 0.7700 +1729 10718 0.4990 +1729 11078 0.4740 +1729 11113 0.4520 +1729 11193 0.5970 +1729 22797 0.4290 +1729 22919 0.5250 +1729 23002 0.5750 +1729 23197 0.4230 +1729 23256 0.4240 +1729 23344 0.4420 +1729 23360 0.5790 +1729 23380 0.5760 +1729 23405 0.4230 +1729 25921 0.4400 +1729 26049 0.4430 +1729 26092 0.4110 +1729 29843 0.4110 +1729 29941 0.4640 +1729 29984 0.9550 +1729 51072 0.5220 +1729 51466 0.5900 +1729 54443 0.6330 +1729 54509 0.7980 +1729 55240 0.4010 +1729 55660 0.5860 +1729 55789 0.4300 +1729 55914 0.4520 +1729 55971 0.4360 +1729 56776 0.4770 +1729 56924 0.4410 +1729 57551 0.4850 +1729 57591 0.5530 +1729 60485 0.8630 +1729 65124 0.6680 +1729 79180 0.4610 +1729 80115 0.4350 +1729 80728 0.4170 +1729 81624 0.9300 +1729 81839 0.4600 +1729 83660 0.6450 +1729 84993 0.4960 +1729 85415 0.4080 +1729 91010 0.5800 +1729 91452 0.4050 +1729 114793 0.5730 +1729 114822 0.4700 +1729 120892 0.5240 +1729 128239 0.4690 +1729 145957 0.5060 +1729 255738 0.6670 +1729 284119 0.4010 +1729 286262 0.4760 +1729 345079 0.6050 +1729 345456 0.9650 +1729 375189 0.9710 +1729 399693 0.4020 +1729 445582 0.4540 +1730 1738 0.4090 +1730 1894 0.4360 +1730 2010 0.4100 +1730 2041 0.4040 +1730 2158 0.4330 +1730 2245 0.4720 +1730 2332 0.7440 +1730 2516 0.4020 +1730 3423 0.6630 +1730 3930 0.4060 +1730 4001 0.4230 +1730 4162 0.4190 +1730 4172 0.4790 +1730 4174 0.4490 +1730 4176 0.4380 +1730 4360 0.5310 +1730 5127 0.4170 +1730 5216 0.9590 +1730 5456 0.4320 +1730 5590 0.4360 +1730 6500 0.5060 +1730 6714 0.6100 +1730 7112 0.4240 +1730 7415 0.4060 +1730 7454 0.5090 +1730 7512 0.4170 +1730 7552 0.4780 +1730 7879 0.4140 +1730 8318 0.4050 +1730 8541 0.4910 +1730 8776 0.4810 +1730 8976 0.5370 +1730 9210 0.8000 +1730 9341 0.4050 +1730 9497 0.4180 +1730 10149 0.4230 +1730 10160 0.4010 +1730 10188 0.4890 +1730 10207 0.4240 +1730 11169 0.7680 +1730 11193 0.5790 +1730 23095 0.4100 +1730 23157 0.4480 +1730 23229 0.4400 +1730 23360 0.6140 +1730 23380 0.4360 +1730 23592 0.4200 +1730 25791 0.4690 +1730 26049 0.4430 +1730 26092 0.4090 +1730 29984 0.9790 +1730 51313 0.4140 +1730 51479 0.4250 +1730 54443 0.5340 +1730 54509 0.6980 +1730 55114 0.4800 +1730 55240 0.4010 +1730 55367 0.4200 +1730 55511 0.4030 +1730 55660 0.4870 +1730 55971 0.4360 +1730 56156 0.4820 +1730 56157 0.4610 +1730 56288 0.4130 +1730 64398 0.4230 +1730 65124 0.4270 +1730 79983 0.8840 +1730 80115 0.4350 +1730 80728 0.4170 +1730 81624 0.7200 +1730 81839 0.4100 +1730 117154 0.5680 +1730 122769 0.4130 +1730 135935 0.6940 +1730 154796 0.5220 +1730 158747 0.4600 +1730 159091 0.5340 +1730 221178 0.4510 +1730 344018 0.7150 +1730 345456 0.9450 +1730 375189 0.9540 +1730 445582 0.4540 +1731 1901 0.4150 +1731 4137 0.4800 +1731 4735 0.9280 +1731 4898 0.4220 +1731 5413 0.9640 +1731 5414 0.9860 +1731 5790 0.4520 +1731 6676 0.4750 +1731 7535 0.4760 +1731 9212 0.8440 +1731 9744 0.5390 +1731 10801 0.9630 +1731 11151 0.4190 +1731 23157 0.9750 +1731 23176 0.9620 +1731 27240 0.4630 +1731 54443 0.5080 +1731 55752 0.9800 +1731 55964 0.9620 +1731 79008 0.4180 +1731 90120 0.7120 +1731 124404 0.9570 +1731 140460 0.4360 +1731 147138 0.4540 +1731 148170 0.4470 +1731 151011 0.9770 +1731 346288 0.8250 +1731 374403 0.4030 +1731 374407 0.4660 +1731 399687 0.4360 +1733 1734 0.9340 +1733 2877 0.7380 +1733 2878 0.7380 +1733 2880 0.7390 +1733 2882 0.7310 +1733 6415 0.4890 +1733 6906 0.6620 +1733 7038 0.4730 +1733 7067 0.4260 +1733 7068 0.6050 +1733 7080 0.4760 +1733 7200 0.6460 +1733 7253 0.5640 +1733 7276 0.4920 +1733 7849 0.4700 +1733 9403 0.4750 +1733 9971 0.4870 +1733 10587 0.4170 +1733 22928 0.8620 +1733 22929 0.8210 +1733 51714 0.5140 +1733 51734 0.5140 +1733 58515 0.4890 +1733 83642 0.5310 +1733 85465 0.4360 +1733 114112 0.4190 +1733 140606 0.5110 +1733 151306 0.7150 +1733 257202 0.7400 +1733 280636 0.4440 +1733 493869 0.7270 +1734 1735 0.6390 +1734 2140 0.4860 +1734 2167 0.5210 +1734 2194 0.4220 +1734 2796 0.4030 +1734 2877 0.6320 +1734 2878 0.6700 +1734 2879 0.4500 +1734 2880 0.5650 +1734 2882 0.5900 +1734 3630 0.5060 +1734 3952 0.5070 +1734 3991 0.5510 +1734 4893 0.4400 +1734 4900 0.5050 +1734 5346 0.4190 +1734 5465 0.5480 +1734 5468 0.5930 +1734 5744 0.4950 +1734 6414 0.5420 +1734 6415 0.6090 +1734 6517 0.4440 +1734 6528 0.5660 +1734 6567 0.8970 +1734 6906 0.6680 +1734 7038 0.7470 +1734 7067 0.6330 +1734 7068 0.7790 +1734 7080 0.5520 +1734 7200 0.8450 +1734 7252 0.7860 +1734 7253 0.7800 +1734 7276 0.6620 +1734 7296 0.5180 +1734 7326 0.5410 +1734 7350 0.8490 +1734 7352 0.4950 +1734 7545 0.4050 +1734 7849 0.6450 +1734 9370 0.5130 +1734 9403 0.6270 +1734 9971 0.5840 +1734 10299 0.5860 +1734 10587 0.6900 +1734 10891 0.7390 +1734 22928 0.6360 +1734 23032 0.7140 +1734 23428 0.6550 +1734 25802 0.4560 +1734 26118 0.8560 +1734 26291 0.5730 +1734 51540 0.4820 +1734 51714 0.6460 +1734 51734 0.6490 +1734 53919 0.8040 +1734 55829 0.6080 +1734 57104 0.5090 +1734 57190 0.6370 +1734 58515 0.6500 +1734 60678 0.5870 +1734 63976 0.7770 +1734 64111 0.4150 +1734 64641 0.4440 +1734 79048 0.9160 +1734 83401 0.7220 +1734 83642 0.5870 +1734 85465 0.5110 +1734 114112 0.6140 +1734 117247 0.6540 +1734 126129 0.4800 +1734 133060 0.4130 +1734 133522 0.4350 +1734 140606 0.5960 +1734 151306 0.8340 +1734 219623 0.6430 +1734 221391 0.4750 +1734 257202 0.6150 +1734 280636 0.5820 +1734 348303 0.5700 +1734 389434 0.4520 +1734 493869 0.5380 +1735 2140 0.5310 +1735 2877 0.6760 +1735 2878 0.6730 +1735 2880 0.5890 +1735 2882 0.6340 +1735 3481 0.4550 +1735 4900 0.5320 +1735 6414 0.4460 +1735 6415 0.5070 +1735 6567 0.8360 +1735 6638 0.4810 +1735 6906 0.5900 +1735 7067 0.4940 +1735 7068 0.6450 +1735 7200 0.8300 +1735 7252 0.6210 +1735 7253 0.6160 +1735 7296 0.4180 +1735 8788 0.9240 +1735 9403 0.5070 +1735 10587 0.5810 +1735 22928 0.5670 +1735 23428 0.6650 +1735 51714 0.5750 +1735 51734 0.5700 +1735 53919 0.7040 +1735 55829 0.5050 +1735 57190 0.5080 +1735 58515 0.5070 +1735 83642 0.4850 +1735 85465 0.4760 +1735 91833 0.4760 +1735 114112 0.5280 +1735 117247 0.4750 +1735 140606 0.4650 +1735 151306 0.4680 +1735 221391 0.4310 +1735 257202 0.6300 +1735 280636 0.5800 +1735 348303 0.4460 +1735 388015 0.7910 +1735 493869 0.5810 +1736 1819 0.4600 +1736 1973 0.4770 +1736 1974 0.4250 +1736 1981 0.5030 +1736 1982 0.4050 +1736 2058 0.4760 +1736 2091 0.9990 +1736 2178 0.4630 +1736 2237 0.4310 +1736 2323 0.4820 +1736 2521 0.4650 +1736 2547 0.5280 +1736 2794 0.4140 +1736 3178 0.4400 +1736 3183 0.8500 +1736 3192 0.7560 +1736 3320 0.8480 +1736 3326 0.8570 +1736 3376 0.4100 +1736 3692 0.5280 +1736 3837 0.9690 +1736 3921 0.6430 +1736 4176 0.5060 +1736 4234 0.7720 +1736 4354 0.4740 +1736 4528 0.7660 +1736 4609 0.6850 +1736 4686 0.5990 +1736 4691 0.7780 +1736 4733 0.4440 +1736 4736 0.4660 +1736 4809 0.9960 +1736 4839 0.8570 +1736 4869 0.5960 +1736 4904 0.4060 +1736 4931 0.9340 +1736 5028 0.5970 +1736 5032 0.5970 +1736 5036 0.9110 +1736 5073 0.7450 +1736 5394 0.5890 +1736 5431 0.4210 +1736 5432 0.5150 +1736 5434 0.7140 +1736 5460 0.5440 +1736 5537 0.4110 +1736 5728 0.5010 +1736 5822 0.6880 +1736 5902 0.4740 +1736 6059 0.6050 +1736 6122 0.5320 +1736 6123 0.4040 +1736 6124 0.4850 +1736 6125 0.7070 +1736 6129 0.5180 +1736 6130 0.7150 +1736 6132 0.4630 +1736 6135 0.6990 +1736 6139 0.4230 +1736 6143 0.4110 +1736 6147 0.5280 +1736 6154 0.4870 +1736 6165 0.4020 +1736 6169 0.4310 +1736 6170 0.4700 +1736 6175 0.5910 +1736 6187 0.4090 +1736 6188 0.5680 +1736 6194 0.5730 +1736 6202 0.4940 +1736 6203 0.5190 +1736 6204 0.4720 +1736 6205 0.5080 +1736 6206 0.6490 +1736 6207 0.6300 +1736 6208 0.5860 +1736 6209 0.4680 +1736 6217 0.5250 +1736 6222 0.5060 +1736 6223 0.6420 +1736 6224 0.4210 +1736 6229 0.5200 +1736 6240 0.4100 +1736 6431 0.4410 +1736 6606 0.4640 +1736 6628 0.8490 +1736 6634 0.7730 +1736 6635 0.7550 +1736 6657 0.5170 +1736 6729 0.4360 +1736 6741 0.4390 +1736 6783 0.4520 +1736 6838 0.5940 +1736 6904 0.4960 +1736 6949 0.6120 +1736 7011 0.9590 +1736 7013 0.9400 +1736 7014 0.8360 +1736 7015 0.9990 +1736 7153 0.5500 +1736 7155 0.5520 +1736 7157 0.5160 +1736 7167 0.4250 +1736 7284 0.4310 +1736 7486 0.5160 +1736 7514 0.5060 +1736 7520 0.5220 +1736 7555 0.4960 +1736 7919 0.4230 +1736 8161 0.7740 +1736 8337 0.4110 +1736 8338 0.4070 +1736 8361 0.6830 +1736 8562 0.4040 +1736 8565 0.5080 +1736 8568 0.4100 +1736 8570 0.4670 +1736 8602 0.7450 +1736 8607 0.9940 +1736 8658 0.5840 +1736 8661 0.6160 +1736 8662 0.6940 +1736 8663 0.7080 +1736 8666 0.5450 +1736 8833 0.8660 +1736 8882 0.4250 +1736 8886 0.9890 +1736 8900 0.5630 +1736 9136 0.8900 +1736 9147 0.5320 +1736 9156 0.4850 +1736 9188 0.8870 +1736 9221 0.9970 +1736 9277 0.7370 +1736 9343 0.4610 +1736 9401 0.5710 +1736 9410 0.7930 +1736 9533 0.8100 +1736 9669 0.9060 +1736 9724 0.4780 +1736 9732 0.6220 +1736 9775 0.5190 +1736 9790 0.7100 +1736 9801 0.5440 +1736 9875 0.6590 +1736 9887 0.6080 +1736 9904 0.6450 +1736 9933 0.9280 +1736 10051 0.4440 +1736 10073 0.4370 +1736 10102 0.4060 +1736 10146 0.4850 +1736 10153 0.9200 +1736 10171 0.6170 +1736 10189 0.4800 +1736 10199 0.8790 +1736 10212 0.4530 +1736 10236 0.5400 +1736 10248 0.7370 +1736 10412 0.6920 +1736 10436 0.7040 +1736 10492 0.5990 +1736 10514 0.7230 +1736 10521 0.6400 +1736 10528 0.9990 +1736 10535 0.4100 +1736 10556 0.8020 +1736 10557 0.8520 +1736 10606 0.4490 +1736 10607 0.8570 +1736 10713 0.5110 +1736 10728 0.9610 +1736 10775 0.5780 +1736 10785 0.6460 +1736 10799 0.6090 +1736 10813 0.7860 +1736 10849 0.4320 +1736 10856 0.9950 +1736 10885 0.6700 +1736 10940 0.7290 +1736 10969 0.8880 +1736 10973 0.4320 +1736 10988 0.4300 +1736 11056 0.7650 +1736 11103 0.9670 +1736 11128 0.5640 +1736 11137 0.7950 +1736 11157 0.5710 +1736 11198 0.4170 +1736 11201 0.4290 +1736 11222 0.4410 +1736 11224 0.5540 +1736 22916 0.4210 +1736 22984 0.9360 +1736 23029 0.8830 +1736 23054 0.4190 +1736 23076 0.5350 +1736 23082 0.4100 +1736 23160 0.6770 +1736 23173 0.4190 +1736 23212 0.8040 +1736 23223 0.8040 +1736 23243 0.4090 +1736 23246 0.9550 +1736 23293 0.8240 +1736 23363 0.5590 +1736 23367 0.5650 +1736 23378 0.6700 +1736 23381 0.6230 +1736 23476 0.6480 +1736 23481 0.9590 +1736 23517 0.5770 +1736 23521 0.5850 +1736 23560 0.8820 +1736 24140 0.5900 +1736 25879 0.4720 +1736 25885 0.8900 +1736 25913 0.7550 +1736 25929 0.4670 +1736 25983 0.4700 +1736 26135 0.4500 +1736 26155 0.9390 +1736 26156 0.9250 +1736 26277 0.9700 +1736 26354 0.9090 +1736 26574 0.7780 +1736 26995 0.8640 +1736 27079 0.5900 +1736 27292 0.5080 +1736 27340 0.5950 +1736 27341 0.5830 +1736 28987 0.6210 +1736 28998 0.4950 +1736 29789 0.4470 +1736 29889 0.8520 +1736 29960 0.4390 +1736 29997 0.9060 +1736 51018 0.4160 +1736 51021 0.4340 +1736 51068 0.6570 +1736 51073 0.4010 +1736 51082 0.4820 +1736 51095 0.4230 +1736 51096 0.5210 +1736 51119 0.6090 +1736 51149 0.5490 +1736 51154 0.8790 +1736 51187 0.6640 +1736 51202 0.7390 +1736 51319 0.6950 +1736 51367 0.7340 +1736 51388 0.8450 +1736 51490 0.6380 +1736 51574 0.5340 +1736 51575 0.7010 +1736 51602 0.9990 +1736 51605 0.7200 +1736 51611 0.4040 +1736 51692 0.4980 +1736 51750 0.8940 +1736 51808 0.6810 +1736 54386 0.7150 +1736 54433 0.9990 +1736 54464 0.9660 +1736 54517 0.8320 +1736 54552 0.9630 +1736 54555 0.5850 +1736 54606 0.9050 +1736 54663 0.7470 +1736 54700 0.4670 +1736 54888 0.6630 +1736 54913 0.7330 +1736 55003 0.4080 +1736 55006 0.5160 +1736 55011 0.6390 +1736 55052 0.4190 +1736 55127 0.7560 +1736 55131 0.9550 +1736 55132 0.5130 +1736 55135 0.9990 +1736 55157 0.4320 +1736 55164 0.9990 +1736 55226 0.9920 +1736 55272 0.4170 +1736 55291 0.4260 +1736 55299 0.8700 +1736 55312 0.5070 +1736 55341 0.5410 +1736 55505 0.9990 +1736 55621 0.5030 +1736 55623 0.4580 +1736 55646 0.6260 +1736 55651 0.9990 +1736 55695 0.5260 +1736 55703 0.4140 +1736 55706 0.4030 +1736 55720 0.5730 +1736 55759 0.9470 +1736 55760 0.4520 +1736 55781 0.5400 +1736 55794 0.4370 +1736 55813 0.5320 +1736 56342 0.6840 +1736 56474 0.5180 +1736 56647 0.5210 +1736 56829 0.4730 +1736 56902 0.5010 +1736 57062 0.8350 +1736 57109 0.4150 +1736 57136 0.5440 +1736 57418 0.5490 +1736 57634 0.4780 +1736 57696 0.5660 +1736 63875 0.6560 +1736 63899 0.4650 +1736 64282 0.4920 +1736 64318 0.5090 +1736 64425 0.6770 +1736 64794 0.6820 +1736 64960 0.5580 +1736 64968 0.4340 +1736 64983 0.4390 +1736 65005 0.4690 +1736 65083 0.6680 +1736 65095 0.6810 +1736 79009 0.6060 +1736 79039 0.7730 +1736 79050 0.6270 +1736 79159 0.6050 +1736 79571 0.4180 +1736 79618 0.4130 +1736 79650 0.5710 +1736 79691 0.5070 +1736 79711 0.4320 +1736 79730 0.4420 +1736 79923 0.4200 +1736 79954 0.6140 +1736 80119 0.5310 +1736 80169 0.8150 +1736 80324 0.9630 +1736 80351 0.5220 +1736 81627 0.4650 +1736 81890 0.5890 +1736 83448 0.6310 +1736 83480 0.7530 +1736 83743 0.8480 +1736 84128 0.5980 +1736 84135 0.5660 +1736 84154 0.9430 +1736 84172 0.6360 +1736 84273 0.4220 +1736 84294 0.6760 +1736 84310 0.6380 +1736 84365 0.9590 +1736 84549 0.5670 +1736 84705 0.4010 +1736 84881 0.5750 +1736 84916 0.6910 +1736 84946 0.5760 +1736 85437 0.4940 +1736 87178 0.5790 +1736 90121 0.4810 +1736 90353 0.5650 +1736 92170 0.4100 +1736 92345 0.9990 +1736 92399 0.4130 +1736 92856 0.4220 +1736 113000 0.4930 +1736 115708 0.5640 +1736 117246 0.9100 +1736 126789 0.6670 +1736 134353 0.7460 +1736 138716 0.6280 +1736 142940 0.5820 +1736 146212 0.6010 +1736 150962 0.7300 +1736 154197 0.4090 +1736 161424 0.7460 +1736 165545 0.4510 +1736 170506 0.5570 +1736 221078 0.7870 +1736 221830 0.7570 +1736 285367 0.5760 +1736 285855 0.4130 +1736 317781 0.4100 +1736 345630 0.9920 +1736 387338 0.4610 +1736 692312 0.5970 +1736 728689 0.6560 +1736 729238 0.4800 +1737 1738 0.9990 +1737 1743 0.9420 +1737 1757 0.5280 +1737 2023 0.5910 +1737 2026 0.4090 +1737 2027 0.5180 +1737 2058 0.4300 +1737 2108 0.6250 +1737 2109 0.4340 +1737 2194 0.8690 +1737 2203 0.4450 +1737 2271 0.7420 +1737 2298 0.6860 +1737 2597 0.5480 +1737 2653 0.9450 +1737 2731 0.7650 +1737 2746 0.5730 +1737 2747 0.4070 +1737 2805 0.4440 +1737 2806 0.4800 +1737 2820 0.4280 +1737 2821 0.5650 +1737 2875 0.4200 +1737 2936 0.7900 +1737 3032 0.9060 +1737 3098 0.4140 +1737 3155 0.8400 +1737 3157 0.8480 +1737 3158 0.8450 +1737 3295 0.4790 +1737 3313 0.5940 +1737 3329 0.4760 +1737 3336 0.4490 +1737 3416 0.4750 +1737 3417 0.7700 +1737 3418 0.7750 +1737 3419 0.8230 +1737 3420 0.6870 +1737 3421 0.7310 +1737 3930 0.6050 +1737 3948 0.4680 +1737 4191 0.6980 +1737 4199 0.4770 +1737 4200 0.4710 +1737 4282 0.6300 +1737 4329 0.8550 +1737 4512 0.4330 +1737 4514 0.4030 +1737 4524 0.6600 +1737 4540 0.4250 +1737 4548 0.4300 +1737 4594 0.8240 +1737 4698 0.4400 +1737 4705 0.6420 +1737 4706 0.7050 +1737 4720 0.7130 +1737 4722 0.5050 +1737 4723 0.6680 +1737 4724 0.4470 +1737 4728 0.4940 +1737 4729 0.6000 +1737 4967 0.9890 +1737 5091 0.9030 +1737 5095 0.4910 +1737 5096 0.6250 +1737 5105 0.8720 +1737 5106 0.8940 +1737 5161 0.9990 +1737 5162 0.9990 +1737 5163 0.8470 +1737 5164 0.9790 +1737 5165 0.9970 +1737 5166 0.8170 +1737 5211 0.5440 +1737 5213 0.5430 +1737 5214 0.4580 +1737 5223 0.4560 +1737 5224 0.4650 +1737 5226 0.4690 +1737 5230 0.4750 +1737 5238 0.4160 +1737 5313 0.6050 +1737 5315 0.6190 +1737 5467 0.5570 +1737 5631 0.6000 +1737 5634 0.6110 +1737 5635 0.4780 +1737 5636 0.4780 +1737 5832 0.4630 +1737 6120 0.6050 +1737 6198 0.4180 +1737 6199 0.4020 +1737 6256 0.5330 +1737 6342 0.4330 +1737 6370 0.5470 +1737 6389 0.8520 +1737 6390 0.8560 +1737 6391 0.6190 +1737 6392 0.5860 +1737 6470 0.6450 +1737 6472 0.6610 +1737 6556 0.4360 +1737 6672 0.7150 +1737 6776 0.7710 +1737 6888 0.4940 +1737 7086 0.6140 +1737 7167 0.5840 +1737 7296 0.7810 +1737 7298 0.6720 +1737 7384 0.5870 +1737 7385 0.5910 +1737 7386 0.4240 +1737 7416 0.4210 +1737 7915 0.4470 +1737 8050 0.9980 +1737 8174 0.4290 +1737 8209 0.4370 +1737 8277 0.5920 +1737 8310 0.4130 +1737 8659 0.4330 +1737 8795 0.4060 +1737 8801 0.9670 +1737 8802 0.9900 +1737 8803 0.9820 +1737 8942 0.4230 +1737 9025 0.8000 +1737 9131 0.4900 +1737 9377 0.5020 +1737 9380 0.6460 +1737 9512 0.5460 +1737 9563 0.5180 +1737 9801 0.4040 +1737 9868 0.5280 +1737 10102 0.4190 +1737 10449 0.8920 +1737 10531 0.4270 +1737 10587 0.7760 +1737 10797 0.5500 +1737 10803 0.4910 +1737 10873 0.4910 +1737 10935 0.4930 +1737 10973 0.4060 +1737 10994 0.5570 +1737 11019 0.6150 +1737 22934 0.5790 +1737 23165 0.4150 +1737 23225 0.6010 +1737 23409 0.5780 +1737 23410 0.5010 +1737 23417 0.8540 +1737 23743 0.4310 +1737 25782 0.4030 +1737 25874 0.4360 +1737 26061 0.5690 +1737 26227 0.4020 +1737 26275 0.4180 +1737 26330 0.4160 +1737 27010 0.4530 +1737 27034 0.4210 +1737 27247 0.4120 +1737 28976 0.5910 +1737 29958 0.4680 +1737 51497 0.4090 +1737 51601 0.9700 +1737 51660 0.4580 +1737 54511 0.8340 +1737 54539 0.5040 +1737 54704 0.8900 +1737 54884 0.4070 +1737 54995 0.4370 +1737 55066 0.7740 +1737 55276 0.5030 +1737 55331 0.5270 +1737 55364 0.5670 +1737 55526 0.9340 +1737 55699 0.4720 +1737 55753 0.9130 +1737 55902 0.9430 +1737 56922 0.4300 +1737 56965 0.4510 +1737 57546 0.9330 +1737 60558 0.4120 +1737 64087 0.5790 +1737 65008 0.6180 +1737 79668 0.4510 +1737 79731 0.4010 +1737 83451 0.4370 +1737 84076 0.6030 +1737 84263 0.6030 +1737 84532 0.9420 +1737 85458 0.7910 +1737 85476 0.4800 +1737 87769 0.4290 +1737 90407 0.4650 +1737 92483 0.4470 +1737 114112 0.7670 +1737 116285 0.4050 +1737 126133 0.4300 +1737 130589 0.4360 +1737 130752 0.5520 +1737 134526 0.9010 +1737 160287 0.4480 +1737 200205 0.6680 +1737 200895 0.4610 +1737 221823 0.5840 +1737 347862 0.4330 +1737 387787 0.5770 +1737 441024 0.5510 +1737 441531 0.4160 +1737 729020 0.4360 +1738 1743 0.9990 +1738 1757 0.4860 +1738 1892 0.4910 +1738 1937 0.4550 +1738 2023 0.6340 +1738 2026 0.5280 +1738 2027 0.5860 +1738 2039 0.5050 +1738 2108 0.8330 +1738 2109 0.6630 +1738 2110 0.4630 +1738 2222 0.7950 +1738 2232 0.4310 +1738 2271 0.9570 +1738 2356 0.4920 +1738 2357 0.4140 +1738 2539 0.4280 +1738 2571 0.8490 +1738 2572 0.8390 +1738 2582 0.4330 +1738 2597 0.5460 +1738 2618 0.4260 +1738 2639 0.9560 +1738 2653 0.9920 +1738 2731 0.9950 +1738 2739 0.4280 +1738 2744 0.8270 +1738 2745 0.6150 +1738 2746 0.8860 +1738 2747 0.8630 +1738 2752 0.8710 +1738 2805 0.4290 +1738 2806 0.4710 +1738 2820 0.5190 +1738 2821 0.7360 +1738 2875 0.5340 +1738 2877 0.4280 +1738 2878 0.4280 +1738 2879 0.4450 +1738 2880 0.4280 +1738 2882 0.4350 +1738 2923 0.5600 +1738 2937 0.4210 +1738 3004 0.4930 +1738 3028 0.6070 +1738 3030 0.4630 +1738 3032 0.5740 +1738 3033 0.4400 +1738 3039 0.4170 +1738 3040 0.4150 +1738 3078 0.4200 +1738 3309 0.4680 +1738 3313 0.4480 +1738 3329 0.6130 +1738 3336 0.6540 +1738 3417 0.7770 +1738 3418 0.7700 +1738 3419 0.9050 +1738 3420 0.8900 +1738 3421 0.8890 +1738 3658 0.4260 +1738 3712 0.4970 +1738 3714 0.4840 +1738 3948 0.5910 +1738 4191 0.9440 +1738 4193 0.4490 +1738 4194 0.5320 +1738 4199 0.4730 +1738 4200 0.4290 +1738 4329 0.4130 +1738 4482 0.4270 +1738 4519 0.4090 +1738 4524 0.6790 +1738 4548 0.5130 +1738 4704 0.8200 +1738 4705 0.7680 +1738 4706 0.6690 +1738 4711 0.5820 +1738 4720 0.5440 +1738 4722 0.7840 +1738 4723 0.5300 +1738 4724 0.4050 +1738 4728 0.4790 +1738 4729 0.4430 +1738 4794 0.4570 +1738 4899 0.4320 +1738 4942 0.4740 +1738 4948 0.7520 +1738 4967 0.9990 +1738 4988 0.4470 +1738 5034 0.5560 +1738 5091 0.6050 +1738 5161 0.9980 +1738 5162 0.9990 +1738 5163 0.6630 +1738 5164 0.8660 +1738 5165 0.9400 +1738 5166 0.6800 +1738 5211 0.4450 +1738 5213 0.4210 +1738 5223 0.4850 +1738 5226 0.5240 +1738 5230 0.5350 +1738 5232 0.4900 +1738 5313 0.5760 +1738 5315 0.5920 +1738 5467 0.5020 +1738 5571 0.4060 +1738 5631 0.5160 +1738 5634 0.5310 +1738 5635 0.4080 +1738 5636 0.4100 +1738 5701 0.5240 +1738 5832 0.4710 +1738 6120 0.5590 +1738 6256 0.5020 +1738 6389 0.8150 +1738 6390 0.7450 +1738 6391 0.5730 +1738 6392 0.6410 +1738 6396 0.4650 +1738 6470 0.9660 +1738 6472 0.9680 +1738 6477 0.6980 +1738 6478 0.4560 +1738 6648 0.4360 +1738 6652 0.4140 +1738 6742 0.4300 +1738 6888 0.4440 +1738 6950 0.7690 +1738 7001 0.4320 +1738 7086 0.7060 +1738 7167 0.5980 +1738 7184 0.4110 +1738 7223 0.6560 +1738 7225 0.5240 +1738 7247 0.5270 +1738 7277 0.4730 +1738 7278 0.4200 +1738 7284 0.7130 +1738 7295 0.5060 +1738 7298 0.6330 +1738 7358 0.5310 +1738 7360 0.4300 +1738 7381 0.4470 +1738 7384 0.8310 +1738 7385 0.8360 +1738 7386 0.5140 +1738 7415 0.4060 +1738 7416 0.4380 +1738 7846 0.4230 +1738 7915 0.4940 +1738 8050 0.9990 +1738 8195 0.6040 +1738 8277 0.6830 +1738 8528 0.4280 +1738 8620 0.4890 +1738 8659 0.8870 +1738 8801 0.8620 +1738 8802 0.9470 +1738 8803 0.9860 +1738 9054 0.5470 +1738 9131 0.5910 +1738 9296 0.4200 +1738 9377 0.4240 +1738 9380 0.6730 +1738 9476 0.4330 +1738 9512 0.8430 +1738 9563 0.6060 +1738 9588 0.5300 +1738 9601 0.5180 +1738 9650 0.4130 +1738 9694 0.4240 +1738 9728 0.4830 +1738 9973 0.4850 +1738 10102 0.4800 +1738 10135 0.4050 +1738 10146 0.4540 +1738 10206 0.4630 +1738 10213 0.4260 +1738 10295 0.7730 +1738 10376 0.4310 +1738 10383 0.4140 +1738 10449 0.5630 +1738 10463 0.4360 +1738 10476 0.4030 +1738 10531 0.5710 +1738 10797 0.6100 +1738 10935 0.5660 +1738 10963 0.4060 +1738 10989 0.6100 +1738 10994 0.5380 +1738 11019 0.5200 +1738 11315 0.4160 +1738 11316 0.4080 +1738 22934 0.4950 +1738 23743 0.4860 +1738 25824 0.6670 +1738 25973 0.4830 +1738 26061 0.5690 +1738 26227 0.5720 +1738 26275 0.5490 +1738 26330 0.4120 +1738 27034 0.4310 +1738 27068 0.4950 +1738 27069 0.4140 +1738 27165 0.8370 +1738 27249 0.4080 +1738 28998 0.4020 +1738 29958 0.4370 +1738 51022 0.5880 +1738 51061 0.4790 +1738 51144 0.4130 +1738 51166 0.9090 +1738 51244 0.6780 +1738 51268 0.4920 +1738 51314 0.4340 +1738 51534 0.5480 +1738 51601 0.7340 +1738 51651 0.4010 +1738 51741 0.4770 +1738 51805 0.4490 +1738 51807 0.4310 +1738 54205 0.5850 +1738 54704 0.8630 +1738 54927 0.4180 +1738 55066 0.6980 +1738 55364 0.5690 +1738 55526 0.9920 +1738 55753 0.9980 +1738 55833 0.4480 +1738 56267 0.4040 +1738 56965 0.4790 +1738 57113 0.5910 +1738 57505 0.4020 +1738 57544 0.4790 +1738 57546 0.8370 +1738 60496 0.8450 +1738 63875 0.4640 +1738 64714 0.5060 +1738 65220 0.6170 +1738 79048 0.4830 +1738 79668 0.4790 +1738 79728 0.4750 +1738 79738 0.5580 +1738 79861 0.4300 +1738 79944 0.4510 +1738 80086 0.4170 +1738 80273 0.4090 +1738 81034 0.4290 +1738 81624 0.4050 +1738 84076 0.6840 +1738 84263 0.4940 +1738 84693 0.4920 +1738 84706 0.5200 +1738 84790 0.4620 +1738 84883 0.4240 +1738 85476 0.4080 +1738 87769 0.5020 +1738 92259 0.9200 +1738 92483 0.6100 +1738 112714 0.4200 +1738 113457 0.4200 +1738 128710 0.4200 +1738 130589 0.4920 +1738 130752 0.6250 +1738 137362 0.4290 +1738 137682 0.4590 +1738 140545 0.4910 +1738 152926 0.5850 +1738 154791 0.4320 +1738 160287 0.6120 +1738 192668 0.4610 +1738 197257 0.5330 +1738 200205 0.5890 +1738 200895 0.4850 +1738 221823 0.4900 +1738 257202 0.4340 +1738 340390 0.4540 +1738 387712 0.5610 +1738 441024 0.5480 +1738 493869 0.4340 +1738 729020 0.4770 +1738 730249 0.5030 +1739 1740 0.9620 +1739 1741 0.9740 +1739 1742 0.9560 +1739 1756 0.4250 +1739 1956 0.4590 +1739 2035 0.9220 +1739 2036 0.8150 +1739 2066 0.7970 +1739 2535 0.4160 +1739 2597 0.4440 +1739 2618 0.4570 +1739 2705 0.8460 +1739 2890 0.9990 +1739 2891 0.8090 +1739 2892 0.6970 +1739 2893 0.8280 +1739 2897 0.6280 +1739 2898 0.9240 +1739 2899 0.5750 +1739 2900 0.5590 +1739 2901 0.6170 +1739 2902 0.8780 +1739 2903 0.9790 +1739 2904 0.9920 +1739 2905 0.6810 +1739 2906 0.6040 +1739 2911 0.4600 +1739 2936 0.4650 +1739 3084 0.5090 +1739 3265 0.6620 +1739 3735 0.6080 +1739 3736 0.4460 +1739 3737 0.4660 +1739 3738 0.8140 +1739 3739 0.9290 +1739 3741 0.9550 +1739 3746 0.5220 +1739 3751 0.6630 +1739 3752 0.6320 +1739 3759 0.4150 +1739 3761 0.8600 +1739 3763 0.6190 +1739 3766 0.6920 +1739 3768 0.8720 +1739 3845 0.6580 +1739 3993 0.9160 +1739 3996 0.9750 +1739 4133 0.4660 +1739 4185 0.4430 +1739 4193 0.4960 +1739 4355 0.7270 +1739 4356 0.5840 +1739 4478 0.6270 +1739 4646 0.4870 +1739 4747 0.5460 +1739 4893 0.6520 +1739 4897 0.7520 +1739 5071 0.4230 +1739 5290 0.5690 +1739 5318 0.4380 +1739 5420 0.4490 +1739 5435 0.4820 +1739 5578 0.5080 +1739 5600 0.9200 +1739 5603 0.9190 +1739 5728 0.9960 +1739 5774 0.6720 +1739 5802 0.4580 +1739 5923 0.4680 +1739 5924 0.4710 +1739 5962 0.5850 +1739 6300 0.9820 +1739 6331 0.9050 +1739 6386 0.5860 +1739 6585 0.4810 +1739 6586 0.4710 +1739 6714 0.6550 +1739 6810 0.4310 +1739 6853 0.6620 +1739 6854 0.5240 +1739 6855 0.4240 +1739 6868 0.7470 +1739 6900 0.5600 +1739 7157 0.5330 +1739 7298 0.4270 +1739 7337 0.9740 +1739 7430 0.8720 +1739 7535 0.9540 +1739 7881 0.5260 +1739 8165 0.4050 +1739 8224 0.5200 +1739 8321 0.6150 +1739 8322 0.6080 +1739 8324 0.5830 +1739 8506 0.5290 +1739 8514 0.7970 +1739 8573 0.9800 +1739 8777 0.5020 +1739 8825 0.8770 +1739 8831 0.6600 +1739 8833 0.4350 +1739 8878 0.4470 +1739 9118 0.5930 +1739 9211 0.6370 +1739 9228 0.7140 +1739 9229 0.9520 +1739 9378 0.4720 +1739 9379 0.4570 +1739 9419 0.7780 +1739 9456 0.5530 +1739 9463 0.7660 +1739 9495 0.9610 +1739 9615 0.7230 +1739 9863 0.5790 +1739 10276 0.6180 +1739 10368 0.4610 +1739 10369 0.9410 +1739 10458 0.6090 +1739 10755 0.4200 +1739 11099 0.4360 +1739 22829 0.4020 +1739 22839 0.5770 +1739 22871 0.4830 +1739 22941 0.4160 +1739 23022 0.4130 +1739 23031 0.4160 +1739 23095 0.6950 +1739 23096 0.5820 +1739 23139 0.5310 +1739 23303 0.7830 +1739 23426 0.7070 +1739 23513 0.9170 +1739 25960 0.7900 +1739 26047 0.5200 +1739 26960 0.4810 +1739 27092 0.4680 +1739 27185 0.4100 +1739 29899 0.7570 +1739 50944 0.4460 +1739 51764 0.4070 +1739 51806 0.4560 +1739 53616 0.5540 +1739 54413 0.4360 +1739 55327 0.9560 +1739 57105 0.6080 +1739 57216 0.4430 +1739 57463 0.6150 +1739 57497 0.9350 +1739 57502 0.4140 +1739 57554 0.7350 +1739 57555 0.4400 +1739 57576 0.8020 +1739 57622 0.8020 +1739 59283 0.5840 +1739 59345 0.4530 +1739 60412 0.6700 +1739 64130 0.8840 +1739 65078 0.4740 +1739 65993 0.6020 +1739 78999 0.6530 +1739 81609 0.5620 +1739 81839 0.4170 +1739 83988 0.8160 +1739 84260 0.7630 +1739 85358 0.5870 +1739 85461 0.7150 +1739 91860 0.4570 +1739 143098 0.7820 +1739 163688 0.4570 +1739 166647 0.4390 +1739 260425 0.6070 +1739 389813 0.5230 +1740 1741 0.9840 +1740 1742 0.9690 +1740 1808 0.5280 +1740 1826 0.5590 +1740 2035 0.5140 +1740 2066 0.8920 +1740 2185 0.5380 +1740 2332 0.5260 +1740 2534 0.7660 +1740 2535 0.4460 +1740 2561 0.4380 +1740 2618 0.4460 +1740 2782 0.4720 +1740 2889 0.4150 +1740 2890 0.9080 +1740 2891 0.8150 +1740 2892 0.6550 +1740 2893 0.6980 +1740 2894 0.4060 +1740 2895 0.6980 +1740 2902 0.7610 +1740 2903 0.9970 +1740 2904 0.9960 +1740 2905 0.8180 +1740 2906 0.6340 +1740 2911 0.6400 +1740 2915 0.7020 +1740 3084 0.6800 +1740 3265 0.5710 +1740 3736 0.7310 +1740 3737 0.6030 +1740 3739 0.9230 +1740 3745 0.4170 +1740 3751 0.4060 +1740 3761 0.6950 +1740 3768 0.6720 +1740 3785 0.4690 +1740 3845 0.6100 +1740 3993 0.8440 +1740 3996 0.8400 +1740 4130 0.6640 +1740 4185 0.4920 +1740 4356 0.6500 +1740 4747 0.7440 +1740 4893 0.5590 +1740 4897 0.4330 +1740 4915 0.5330 +1740 5435 0.4820 +1740 5499 0.4020 +1740 5581 0.4330 +1740 5921 0.5520 +1740 5923 0.5620 +1740 5924 0.5160 +1740 6326 0.4160 +1740 6376 0.4490 +1740 6616 0.4440 +1740 6709 0.5550 +1740 6711 0.5860 +1740 6714 0.6120 +1740 6751 0.4270 +1740 6754 0.5160 +1740 6853 0.5650 +1740 6855 0.4680 +1740 6857 0.6710 +1740 6900 0.6800 +1740 7298 0.4260 +1740 7337 0.9130 +1740 8321 0.4330 +1740 8322 0.4360 +1740 8324 0.4270 +1740 8514 0.4150 +1740 8573 0.6860 +1740 8745 0.5490 +1740 8777 0.4600 +1740 8825 0.7290 +1740 8831 0.8840 +1740 8833 0.4240 +1740 8997 0.5960 +1740 9076 0.4140 +1740 9228 0.8110 +1740 9229 0.8900 +1740 9369 0.6820 +1740 9378 0.7780 +1740 9379 0.7410 +1740 9419 0.4420 +1740 9454 0.6450 +1740 9455 0.6100 +1740 9456 0.8210 +1740 9463 0.5180 +1740 9722 0.4750 +1740 10243 0.6070 +1740 10368 0.5550 +1740 10369 0.7830 +1740 10458 0.6050 +1740 10611 0.5270 +1740 10863 0.5040 +1740 22829 0.6960 +1740 22839 0.7850 +1740 22866 0.4180 +1740 22871 0.8680 +1740 22941 0.8110 +1740 23096 0.6180 +1740 23114 0.4790 +1740 23173 0.5850 +1740 23208 0.4130 +1740 23237 0.5100 +1740 23513 0.8560 +1740 26037 0.6160 +1740 26047 0.7560 +1740 26052 0.4980 +1740 26053 0.5060 +1740 28988 0.5210 +1740 29119 0.6340 +1740 29899 0.7450 +1740 50848 0.5540 +1740 50944 0.8780 +1740 51764 0.5500 +1740 53353 0.4130 +1740 53616 0.9120 +1740 54413 0.7760 +1740 55327 0.7710 +1740 55568 0.4270 +1740 56288 0.4700 +1740 56899 0.4280 +1740 56923 0.4440 +1740 57030 0.6130 +1740 57154 0.4050 +1740 57216 0.4020 +1740 57453 0.5520 +1740 57502 0.7130 +1740 57554 0.6120 +1740 57555 0.7840 +1740 57576 0.6030 +1740 57689 0.4460 +1740 57731 0.5190 +1740 58512 0.8470 +1740 64130 0.5970 +1740 79683 0.5320 +1740 81839 0.4020 +1740 84552 0.4990 +1740 84708 0.4450 +1740 85358 0.9190 +1740 93643 0.9780 +1740 114805 0.4170 +1740 117583 0.4690 +1740 133482 0.5120 +1740 145581 0.4260 +1740 152330 0.6500 +1740 163175 0.4800 +1740 203190 0.4550 +1741 1742 0.9970 +1741 2036 0.4710 +1741 2059 0.4330 +1741 2066 0.7580 +1741 2185 0.7710 +1741 2534 0.7050 +1741 2618 0.4470 +1741 2890 0.8150 +1741 2891 0.7890 +1741 2892 0.6440 +1741 2893 0.6460 +1741 2895 0.5070 +1741 2897 0.6560 +1741 2898 0.8840 +1741 2899 0.6030 +1741 2900 0.6320 +1741 2901 0.7260 +1741 2902 0.8790 +1741 2903 0.9980 +1741 2904 0.9980 +1741 2905 0.8720 +1741 2906 0.6590 +1741 2911 0.5980 +1741 2915 0.6420 +1741 2977 0.4130 +1741 3084 0.4730 +1741 3265 0.6140 +1741 3738 0.7130 +1741 3739 0.5170 +1741 3768 0.6610 +1741 3845 0.6290 +1741 3993 0.8870 +1741 3996 0.9390 +1741 4355 0.6190 +1741 4734 0.9460 +1741 4747 0.7650 +1741 4893 0.5560 +1741 4897 0.6270 +1741 4983 0.4700 +1741 5062 0.5700 +1741 5303 0.4250 +1741 5435 0.4820 +1741 5499 0.4230 +1741 5578 0.4750 +1741 5817 0.5190 +1741 5818 0.5220 +1741 5819 0.5090 +1741 5923 0.5620 +1741 5924 0.5050 +1741 6714 0.6230 +1741 6853 0.4230 +1741 6855 0.4140 +1741 6872 0.4750 +1741 7004 0.4690 +1741 7267 0.4040 +1741 7298 0.4260 +1741 7337 0.9130 +1741 7430 0.4950 +1741 7881 0.5850 +1741 8573 0.7280 +1741 8825 0.7710 +1741 8831 0.9460 +1741 8833 0.4260 +1741 8997 0.6390 +1741 9028 0.5880 +1741 9228 0.8720 +1741 9229 0.8870 +1741 9369 0.5930 +1741 9378 0.7170 +1741 9379 0.7130 +1741 9419 0.6270 +1741 9454 0.6330 +1741 9455 0.6130 +1741 9456 0.7070 +1741 9463 0.5210 +1741 9615 0.9010 +1741 9758 0.5480 +1741 10243 0.4720 +1741 10368 0.4700 +1741 10369 0.9000 +1741 10611 0.5280 +1741 11336 0.4060 +1741 22829 0.8480 +1741 22839 0.8570 +1741 22871 0.8920 +1741 22941 0.7440 +1741 23024 0.4240 +1741 23095 0.5440 +1741 23096 0.4350 +1741 23229 0.5340 +1741 23265 0.5650 +1741 23327 0.9220 +1741 23426 0.4630 +1741 23513 0.9080 +1741 23705 0.7870 +1741 25945 0.6010 +1741 26037 0.5810 +1741 26047 0.4840 +1741 26960 0.9630 +1741 27091 0.4670 +1741 27092 0.4300 +1741 28988 0.5350 +1741 29899 0.8580 +1741 50944 0.7780 +1741 51678 0.5840 +1741 53344 0.4920 +1741 54413 0.8850 +1741 55327 0.6460 +1741 57030 0.4390 +1741 57216 0.4570 +1741 57497 0.9440 +1741 57502 0.8630 +1741 57554 0.5770 +1741 57555 0.8830 +1741 57576 0.6760 +1741 57622 0.6790 +1741 57863 0.8020 +1741 58512 0.8350 +1741 59283 0.6490 +1741 59284 0.4670 +1741 60412 0.7240 +1741 64130 0.6140 +1741 78999 0.6390 +1741 79658 0.5770 +1741 80725 0.4140 +1741 81839 0.4270 +1741 83988 0.8180 +1741 84612 0.4320 +1741 85358 0.7590 +1741 93643 0.9110 +1741 116443 0.6800 +1741 116444 0.5980 +1741 139411 0.5870 +1741 149111 0.4180 +1741 199731 0.5230 +1741 200933 0.7160 +1741 254263 0.5520 +1741 388336 0.5100 +1741 729956 0.4800 +1741 729993 0.5130 +1742 1759 0.4640 +1742 1808 0.4620 +1742 1812 0.7350 +1742 1813 0.4780 +1742 1826 0.6010 +1742 1839 0.4540 +1742 1857 0.4990 +1742 1902 0.4890 +1742 1909 0.4440 +1742 1938 0.4360 +1742 1947 0.6130 +1742 1948 0.4220 +1742 1949 0.9260 +1742 1950 0.6110 +1742 1958 0.4110 +1742 2017 0.9240 +1742 2026 0.4940 +1742 2035 0.4900 +1742 2036 0.7930 +1742 2048 0.4380 +1742 2059 0.5380 +1742 2064 0.7710 +1742 2066 0.9980 +1742 2185 0.9190 +1742 2316 0.4060 +1742 2317 0.4430 +1742 2318 0.4040 +1742 2332 0.9380 +1742 2353 0.4880 +1742 2475 0.4920 +1742 2521 0.5380 +1742 2534 0.9960 +1742 2535 0.6180 +1742 2550 0.6540 +1742 2571 0.6490 +1742 2572 0.7300 +1742 2596 0.6480 +1742 2597 0.6950 +1742 2618 0.4460 +1742 2668 0.4200 +1742 2670 0.6990 +1742 2752 0.4210 +1742 2768 0.5310 +1742 2782 0.4130 +1742 2852 0.6970 +1742 2890 0.9940 +1742 2891 0.9680 +1742 2892 0.8730 +1742 2893 0.8290 +1742 2895 0.7290 +1742 2897 0.9430 +1742 2898 0.9980 +1742 2899 0.6850 +1742 2900 0.7170 +1742 2901 0.9490 +1742 2902 0.9980 +1742 2903 0.9990 +1742 2904 0.9990 +1742 2905 0.9900 +1742 2906 0.9760 +1742 2911 0.8620 +1742 2912 0.4730 +1742 2913 0.4050 +1742 2915 0.9020 +1742 2916 0.4020 +1742 2931 0.4090 +1742 2932 0.6000 +1742 2936 0.7210 +1742 2977 0.7080 +1742 2982 0.5570 +1742 2983 0.4780 +1742 2987 0.4510 +1742 3059 0.9250 +1742 3064 0.7090 +1742 3084 0.8780 +1742 3183 0.4560 +1742 3208 0.6660 +1742 3265 0.6600 +1742 3356 0.9150 +1742 3358 0.6550 +1742 3359 0.6100 +1742 3416 0.4310 +1742 3553 0.4750 +1742 3569 0.4040 +1742 3579 0.4570 +1742 3630 0.4030 +1742 3735 0.4730 +1742 3736 0.8980 +1742 3737 0.8530 +1742 3738 0.7370 +1742 3739 0.9970 +1742 3741 0.8570 +1742 3746 0.4580 +1742 3751 0.8770 +1742 3761 0.9350 +1742 3765 0.4610 +1742 3766 0.6780 +1742 3768 0.7370 +1742 3778 0.4990 +1742 3785 0.6510 +1742 3845 0.5960 +1742 3984 0.5200 +1742 3993 0.9820 +1742 3996 0.9830 +1742 4035 0.9460 +1742 4036 0.7540 +1742 4067 0.4240 +1742 4130 0.9790 +1742 4131 0.5450 +1742 4133 0.8270 +1742 4137 0.7530 +1742 4155 0.4680 +1742 4185 0.5570 +1742 4193 0.9360 +1742 4204 0.5210 +1742 4294 0.6210 +1742 4296 0.7470 +1742 4355 0.6940 +1742 4356 0.5480 +1742 4478 0.5050 +1742 4644 0.4410 +1742 4646 0.4850 +1742 4744 0.4330 +1742 4747 0.7950 +1742 4803 0.5190 +1742 4842 0.9960 +1742 4868 0.4510 +1742 4893 0.6400 +1742 4897 0.6980 +1742 4915 0.8600 +1742 5064 0.5800 +1742 5071 0.5030 +1742 5141 0.5280 +1742 5174 0.5210 +1742 5252 0.4670 +1742 5335 0.5290 +1742 5341 0.4810 +1742 5364 0.5510 +1742 5435 0.4820 +1742 5566 0.5500 +1742 5567 0.5380 +1742 5568 0.5260 +1742 5578 0.9570 +1742 5595 0.5250 +1742 5599 0.5240 +1742 5621 0.5070 +1742 5663 0.6840 +1742 5728 0.7450 +1742 5787 0.4460 +1742 5802 0.6430 +1742 5816 0.7890 +1742 5864 0.4700 +1742 5877 0.4680 +1742 5879 0.6500 +1742 5921 0.8280 +1742 5923 0.5610 +1742 5924 0.5310 +1742 5957 0.5750 +1742 5962 0.7020 +1742 5999 0.5850 +1742 6011 0.4160 +1742 6198 0.4150 +1742 6242 0.4610 +1742 6285 0.4530 +1742 6295 0.5090 +1742 6300 0.5660 +1742 6386 0.6570 +1742 6462 0.4770 +1742 6464 0.5820 +1742 6505 0.4990 +1742 6506 0.7220 +1742 6507 0.4860 +1742 6529 0.4240 +1742 6531 0.4400 +1742 6533 0.4720 +1742 6571 0.5350 +1742 6583 0.4140 +1742 6585 0.4360 +1742 6616 0.8530 +1742 6622 0.4980 +1742 6653 0.5100 +1742 6714 0.9790 +1742 6792 0.4190 +1742 6804 0.4980 +1742 6812 0.4540 +1742 6843 0.4850 +1742 6844 0.6180 +1742 6853 0.9580 +1742 6854 0.8650 +1742 6855 0.8980 +1742 6857 0.6670 +1742 6900 0.4650 +1742 7054 0.4890 +1742 7070 0.4160 +1742 7074 0.4240 +1742 7082 0.9880 +1742 7124 0.4110 +1742 7157 0.7340 +1742 7268 0.4420 +1742 7275 0.4340 +1742 7298 0.4260 +1742 7337 0.4470 +1742 7430 0.6980 +1742 7436 0.5570 +1742 7804 0.8560 +1742 7837 0.6030 +1742 8087 0.7540 +1742 8224 0.8520 +1742 8321 0.6130 +1742 8322 0.6700 +1742 8411 0.4090 +1742 8502 0.5290 +1742 8506 0.4680 +1742 8514 0.6320 +1742 8525 0.8180 +1742 8541 0.4980 +1742 8573 0.7890 +1742 8745 0.8110 +1742 8766 0.4090 +1742 8773 0.5890 +1742 8777 0.5190 +1742 8825 0.8560 +1742 8829 0.5260 +1742 8831 0.9960 +1742 8833 0.4240 +1742 8867 0.4400 +1742 8874 0.4060 +1742 8898 0.8480 +1742 8927 0.5500 +1742 8936 0.5010 +1742 8988 0.4620 +1742 8997 0.9560 +1742 9066 0.4760 +1742 9118 0.5910 +1742 9162 0.7340 +1742 9170 0.6740 +1742 9177 0.5400 +1742 9211 0.9650 +1742 9223 0.5120 +1742 9228 0.8910 +1742 9229 0.9990 +1742 9265 0.4050 +1742 9266 0.4360 +1742 9311 0.6160 +1742 9351 0.6410 +1742 9368 0.8300 +1742 9369 0.8580 +1742 9378 0.9910 +1742 9379 0.9870 +1742 9414 0.5160 +1742 9419 0.9960 +1742 9454 0.8680 +1742 9455 0.7790 +1742 9456 0.9880 +1742 9463 0.9620 +1742 9495 0.9250 +1742 9497 0.4320 +1742 9513 0.7680 +1742 9542 0.7110 +1742 9615 0.9380 +1742 9722 0.8670 +1742 9743 0.6000 +1742 9758 0.6460 +1742 9863 0.6160 +1742 9900 0.6390 +1742 9922 0.6450 +1742 10142 0.5550 +1742 10243 0.8840 +1742 10368 0.6630 +1742 10369 0.9990 +1742 10381 0.4580 +1742 10399 0.5150 +1742 10458 0.9660 +1742 10497 0.6560 +1742 10505 0.4310 +1742 10509 0.5430 +1742 10611 0.5600 +1742 10636 0.5590 +1742 10657 0.4290 +1742 10716 0.4600 +1742 10718 0.6760 +1742 10755 0.6730 +1742 10763 0.4760 +1742 10863 0.5950 +1742 11113 0.5490 +1742 11141 0.7350 +1742 11216 0.4520 +1742 11346 0.4370 +1742 22829 0.9860 +1742 22839 0.8640 +1742 22865 0.4190 +1742 22866 0.6020 +1742 22871 0.9990 +1742 22895 0.5640 +1742 22924 0.7380 +1742 22941 0.9930 +1742 22986 0.7800 +1742 22999 0.7470 +1742 23025 0.4170 +1742 23037 0.4740 +1742 23072 0.4080 +1742 23095 0.5980 +1742 23096 0.7970 +1742 23114 0.4190 +1742 23173 0.5660 +1742 23191 0.4710 +1742 23229 0.4340 +1742 23237 0.8050 +1742 23239 0.5490 +1742 23303 0.9750 +1742 23370 0.4160 +1742 23390 0.4490 +1742 23396 0.4910 +1742 23426 0.7370 +1742 23435 0.4230 +1742 23513 0.9210 +1742 23621 0.6180 +1742 23705 0.6310 +1742 25921 0.5900 +1742 26003 0.5040 +1742 26037 0.9050 +1742 26045 0.9020 +1742 26047 0.6730 +1742 26060 0.4050 +1742 26086 0.4380 +1742 26090 0.4430 +1742 26499 0.4820 +1742 27091 0.6550 +1742 27092 0.6060 +1742 27134 0.5140 +1742 27161 0.4590 +1742 27185 0.5450 +1742 28964 0.5660 +1742 28988 0.5590 +1742 29097 0.6350 +1742 29119 0.4160 +1742 29801 0.5410 +1742 29899 0.7650 +1742 50855 0.4030 +1742 50944 0.9920 +1742 51201 0.5490 +1742 51304 0.4790 +1742 51517 0.5800 +1742 51764 0.5140 +1742 51806 0.8910 +1742 53353 0.4160 +1742 53358 0.5380 +1742 53616 0.9970 +1742 54209 0.4050 +1742 54413 0.9950 +1742 54503 0.5640 +1742 54910 0.4130 +1742 55227 0.7710 +1742 55327 0.9600 +1742 55914 0.6980 +1742 56899 0.4320 +1742 57030 0.9780 +1742 57084 0.7760 +1742 57120 0.5690 +1742 57121 0.4800 +1742 57216 0.6990 +1742 57406 0.4470 +1742 57453 0.6600 +1742 57463 0.4880 +1742 57468 0.4850 +1742 57497 0.9590 +1742 57502 0.9950 +1742 57524 0.4100 +1742 57554 0.7300 +1742 57555 0.9980 +1742 57575 0.5280 +1742 57576 0.8120 +1742 57622 0.9030 +1742 57689 0.9060 +1742 57715 0.4960 +1742 58512 0.9930 +1742 59272 0.4140 +1742 59283 0.9010 +1742 59284 0.8650 +1742 60412 0.7600 +1742 63826 0.6400 +1742 64101 0.6990 +1742 64130 0.7520 +1742 64398 0.5470 +1742 64837 0.4150 +1742 64840 0.4300 +1742 64919 0.4080 +1742 78999 0.8570 +1742 79414 0.7540 +1742 80059 0.4020 +1742 80725 0.7230 +1742 80758 0.4460 +1742 81609 0.5200 +1742 81631 0.4930 +1742 81832 0.4890 +1742 81839 0.4610 +1742 81926 0.4440 +1742 83988 0.8270 +1742 84152 0.4720 +1742 84445 0.4840 +1742 84623 0.5720 +1742 84687 0.5460 +1742 84867 0.6690 +1742 85358 0.9960 +1742 85461 0.7180 +1742 91860 0.8920 +1742 93145 0.6020 +1742 94030 0.7140 +1742 116443 0.9660 +1742 116444 0.9420 +1742 116987 0.4290 +1742 118427 0.4440 +1742 126006 0.4140 +1742 127833 0.4580 +1742 132204 0.4140 +1742 133482 0.7560 +1742 137902 0.6030 +1742 140679 0.8530 +1742 145581 0.7600 +1742 145957 0.6850 +1742 146713 0.7230 +1742 149111 0.5960 +1742 158866 0.4240 +1742 160622 0.8260 +1742 163688 0.8910 +1742 166336 0.7120 +1742 170572 0.5400 +1742 200909 0.5400 +1742 254263 0.8560 +1742 259197 0.4250 +1742 260425 0.5340 +1742 284217 0.4630 +1742 285242 0.5400 +1742 347730 0.7180 +1742 375567 0.5540 +1742 388336 0.8010 +1742 389813 0.4280 +1742 402117 0.5600 +1742 440829 0.5600 +1742 729956 0.6790 +1742 729993 0.8580 +1743 1757 0.4680 +1743 2023 0.5550 +1743 2026 0.4630 +1743 2027 0.5250 +1743 2108 0.5480 +1743 2109 0.4020 +1743 2203 0.5190 +1743 2271 0.8200 +1743 2597 0.4450 +1743 2639 0.9590 +1743 2653 0.8090 +1743 2731 0.7520 +1743 2746 0.6130 +1743 2747 0.4810 +1743 2806 0.4760 +1743 2821 0.5240 +1743 2936 0.7780 +1743 3032 0.8720 +1743 3098 0.4740 +1743 3155 0.8380 +1743 3157 0.8170 +1743 3158 0.8330 +1743 3295 0.4250 +1743 3313 0.4140 +1743 3329 0.4210 +1743 3417 0.8150 +1743 3418 0.8230 +1743 3419 0.9290 +1743 3420 0.9020 +1743 3421 0.8920 +1743 4191 0.8610 +1743 4199 0.4300 +1743 4200 0.4290 +1743 4512 0.4300 +1743 4524 0.6690 +1743 4548 0.4250 +1743 4594 0.8220 +1743 4698 0.4740 +1743 4702 0.4400 +1743 4705 0.5030 +1743 4706 0.5380 +1743 4715 0.4020 +1743 4716 0.4280 +1743 4720 0.6630 +1743 4722 0.5070 +1743 4723 0.7520 +1743 4724 0.4610 +1743 4728 0.7240 +1743 4729 0.6260 +1743 4967 0.9990 +1743 5091 0.4250 +1743 5095 0.4460 +1743 5096 0.5580 +1743 5161 0.7380 +1743 5162 0.9740 +1743 5163 0.4220 +1743 5166 0.4320 +1743 5211 0.4840 +1743 5213 0.6110 +1743 5214 0.4930 +1743 5224 0.4130 +1743 5230 0.4400 +1743 5238 0.4140 +1743 5245 0.4400 +1743 5250 0.5100 +1743 5313 0.5400 +1743 5315 0.5720 +1743 5631 0.5460 +1743 5634 0.5600 +1743 5635 0.4720 +1743 5636 0.4730 +1743 6120 0.4500 +1743 6342 0.4080 +1743 6389 0.8410 +1743 6390 0.8830 +1743 6391 0.7330 +1743 6392 0.8110 +1743 6470 0.6070 +1743 6472 0.6160 +1743 6478 0.5960 +1743 6672 0.4260 +1743 6888 0.4570 +1743 7086 0.6110 +1743 7167 0.5830 +1743 7284 0.4550 +1743 7296 0.7690 +1743 7298 0.6610 +1743 7381 0.5060 +1743 7384 0.6840 +1743 7385 0.6080 +1743 7386 0.7130 +1743 8050 0.8840 +1743 8189 0.6610 +1743 8277 0.6070 +1743 8789 0.4030 +1743 8801 0.9810 +1743 8802 0.9950 +1743 8803 0.9890 +1743 9025 0.7930 +1743 9131 0.4110 +1743 9320 0.4010 +1743 9377 0.5040 +1743 9380 0.6460 +1743 9512 0.6460 +1743 9563 0.4970 +1743 10295 0.7150 +1743 10449 0.8670 +1743 10476 0.6430 +1743 10587 0.7770 +1743 10632 0.4490 +1743 10797 0.5320 +1743 10873 0.4060 +1743 10935 0.4070 +1743 10989 0.4950 +1743 10994 0.5640 +1743 11019 0.5010 +1743 11112 0.4830 +1743 22934 0.4570 +1743 23225 0.5330 +1743 23743 0.4140 +1743 26061 0.5520 +1743 26330 0.4150 +1743 27089 0.4920 +1743 29088 0.4890 +1743 29958 0.4680 +1743 30968 0.4100 +1743 51166 0.9080 +1743 51497 0.4120 +1743 51601 0.7300 +1743 54148 0.5930 +1743 54511 0.8340 +1743 54884 0.4730 +1743 54995 0.4690 +1743 55066 0.5990 +1743 55276 0.4440 +1743 55526 0.9990 +1743 55753 0.9990 +1743 55902 0.4310 +1743 56922 0.4090 +1743 56965 0.5050 +1743 58509 0.4370 +1743 64087 0.5630 +1743 79072 0.4300 +1743 79668 0.4950 +1743 84076 0.6150 +1743 84263 0.6160 +1743 84532 0.4330 +1743 84701 0.5640 +1743 87769 0.4320 +1743 92259 0.8980 +1743 114112 0.7670 +1743 126133 0.4030 +1743 130589 0.4080 +1743 130752 0.5710 +1743 144110 0.4460 +1743 200205 0.5990 +1743 200895 0.4540 +1743 221823 0.5430 +1743 374291 0.4130 +1743 441024 0.5260 +1743 729020 0.4100 +1745 1746 0.8770 +1745 1749 0.5860 +1745 2016 0.4800 +1745 2018 0.4410 +1745 2115 0.4020 +1745 2253 0.5890 +1745 2290 0.6480 +1745 2302 0.4870 +1745 2571 0.6390 +1745 2572 0.5260 +1745 3670 0.5660 +1745 4004 0.4330 +1745 4010 0.4630 +1745 4089 0.4090 +1745 4211 0.4280 +1745 4212 0.5550 +1745 4760 0.5140 +1745 4761 0.4740 +1745 4762 0.4500 +1745 4990 0.5350 +1745 5083 0.5500 +1745 5087 0.4140 +1745 5089 0.4110 +1745 5090 0.5020 +1745 5454 0.6390 +1745 5455 0.6000 +1745 5458 0.4200 +1745 5629 0.4060 +1745 5816 0.6780 +1745 6469 0.5340 +1745 6496 0.5070 +1745 6656 0.4090 +1745 6657 0.4900 +1745 6663 0.4090 +1745 6664 0.4330 +1745 6750 0.6020 +1745 7545 0.4380 +1745 8320 0.4930 +1745 8604 0.4950 +1745 9355 0.5180 +1745 9670 0.4970 +1745 10215 0.5310 +1745 10265 0.4210 +1745 10371 0.4660 +1745 10683 0.4660 +1745 10716 0.6180 +1745 11069 0.4800 +1745 22997 0.4290 +1745 23040 0.7590 +1745 23314 0.4370 +1745 23316 0.4020 +1745 26468 0.7550 +1745 26585 0.4270 +1745 28514 0.5150 +1745 55079 0.4380 +1745 55450 0.4150 +1745 55553 0.4140 +1745 56033 0.4100 +1745 56165 0.6780 +1745 56956 0.4590 +1745 63973 0.6010 +1745 63974 0.5010 +1745 64919 0.5150 +1745 79192 0.4170 +1745 79891 0.4520 +1745 84101 0.4060 +1745 84525 0.4430 +1745 116448 0.4480 +1745 137970 0.4320 +1745 140679 0.4490 +1745 153572 0.4500 +1745 221833 0.4880 +1745 266727 0.4290 +1745 388585 0.5560 +1745 392617 0.4410 +1745 431707 0.5980 +1745 100131390 0.5240 +1746 1749 0.4930 +1746 1956 0.5290 +1746 1958 0.4560 +1746 2173 0.4190 +1746 2247 0.4280 +1746 2248 0.4100 +1746 2253 0.6840 +1746 2290 0.6910 +1746 2296 0.5600 +1746 2302 0.5910 +1746 2307 0.4980 +1746 2571 0.6890 +1746 2572 0.5440 +1746 2658 0.4210 +1746 2670 0.5050 +1746 3199 0.5500 +1746 3221 0.4370 +1746 3381 0.5160 +1746 3670 0.5740 +1746 3725 0.4460 +1746 4005 0.4040 +1746 4007 0.5460 +1746 4009 0.4650 +1746 4089 0.4100 +1746 4212 0.8130 +1746 4487 0.6640 +1746 4488 0.6390 +1746 4692 0.4890 +1746 4760 0.5930 +1746 4761 0.4680 +1746 4762 0.5430 +1746 4990 0.4040 +1746 5079 0.4230 +1746 5080 0.8080 +1746 5083 0.4980 +1746 5156 0.4200 +1746 5454 0.6600 +1746 5455 0.5650 +1746 5456 0.4110 +1746 5457 0.4020 +1746 5629 0.4340 +1746 5816 0.5920 +1746 6469 0.6140 +1746 6496 0.6400 +1746 6656 0.6330 +1746 6657 0.5540 +1746 6659 0.5930 +1746 6660 0.4250 +1746 6662 0.5450 +1746 6663 0.5750 +1746 6664 0.4280 +1746 6750 0.5030 +1746 7026 0.4060 +1746 7101 0.4400 +1746 8320 0.5760 +1746 8604 0.4080 +1746 8928 0.4350 +1746 9355 0.5350 +1746 9464 0.4880 +1746 9670 0.4890 +1746 10215 0.6540 +1746 10265 0.4360 +1746 10538 0.4430 +1746 10683 0.4920 +1746 10716 0.7290 +1746 10763 0.5520 +1746 11069 0.4730 +1746 23040 0.7320 +1746 23314 0.4320 +1746 25981 0.4160 +1746 26468 0.7930 +1746 26585 0.4330 +1746 28514 0.5050 +1746 29995 0.6860 +1746 51176 0.5070 +1746 55079 0.4450 +1746 55553 0.5750 +1746 55617 0.4140 +1746 56956 0.4640 +1746 57030 0.4030 +1746 63973 0.7200 +1746 63974 0.4640 +1746 64211 0.4400 +1746 64321 0.4860 +1746 64919 0.5300 +1746 79191 0.4670 +1746 79192 0.5000 +1746 116448 0.5010 +1746 121340 0.4290 +1746 140679 0.4390 +1746 145282 0.4690 +1746 146713 0.4180 +1746 153572 0.4710 +1746 221833 0.6240 +1746 388585 0.5860 +1746 431707 0.7070 +1746 100131390 0.5640 +1747 1834 0.4090 +1747 2138 0.4380 +1747 2253 0.4500 +1747 2624 0.4510 +1747 2625 0.5080 +1747 3229 0.4740 +1747 3381 0.6270 +1747 3398 0.4710 +1747 3694 0.5300 +1747 3852 0.4120 +1747 3861 0.4260 +1747 3868 0.4570 +1747 3872 0.4340 +1747 3914 0.5430 +1747 4054 0.4010 +1747 4091 0.5740 +1747 4211 0.9550 +1747 4212 0.9220 +1747 4488 0.5050 +1747 5083 0.4180 +1747 5449 0.4340 +1747 5578 0.4520 +1747 6469 0.4210 +1747 6495 0.4490 +1747 6659 0.4540 +1747 6662 0.4810 +1747 6663 0.4480 +1747 6786 0.4130 +1747 7022 0.4120 +1747 7291 0.4680 +1747 7545 0.4310 +1747 8111 0.5240 +1747 8200 0.4120 +1747 8456 0.6200 +1747 8521 0.6760 +1747 8626 0.5250 +1747 9313 0.5680 +1747 9355 0.4530 +1747 9464 0.4070 +1747 9622 0.4880 +1747 10117 0.6820 +1747 23089 0.5150 +1747 25805 0.5310 +1747 27022 0.4080 +1747 51176 0.4590 +1747 54757 0.4450 +1747 57822 0.5810 +1747 66000 0.5470 +1747 81558 0.4070 +1747 84525 0.4500 +1747 117581 0.5150 +1747 121340 0.6730 +1747 123041 0.5480 +1747 152816 0.5250 +1747 256764 0.5140 +1747 286077 0.7070 +1747 401138 0.6230 +1748 2547 0.4440 +1748 5076 0.4070 +1748 5078 0.4060 +1748 5449 0.4080 +1748 7520 0.4590 +1748 7849 0.4270 +1748 56033 0.4980 +1748 84525 0.4270 +1749 1750 0.9390 +1749 1780 0.6250 +1749 1906 0.4640 +1749 1909 0.4500 +1749 2138 0.5040 +1749 2248 0.4100 +1749 2253 0.5200 +1749 2255 0.4170 +1749 2289 0.4200 +1749 2290 0.6570 +1749 2571 0.7290 +1749 2572 0.6270 +1749 3200 0.4540 +1749 3224 0.4220 +1749 3381 0.6480 +1749 3549 0.4160 +1749 3670 0.4620 +1749 4009 0.5040 +1749 4204 0.7520 +1749 4212 0.4550 +1749 4487 0.4770 +1749 4488 0.9000 +1749 4762 0.4080 +1749 5075 0.4140 +1749 5076 0.6220 +1749 5083 0.5180 +1749 5178 0.5020 +1749 5816 0.5740 +1749 6468 0.5410 +1749 6469 0.6550 +1749 6492 0.4550 +1749 6495 0.5650 +1749 6496 0.5010 +1749 6597 0.4610 +1749 6657 0.5170 +1749 6658 0.4250 +1749 6660 0.6220 +1749 6662 0.5800 +1749 6663 0.4390 +1749 6696 0.5590 +1749 6750 0.4750 +1749 6772 0.5340 +1749 6932 0.5850 +1749 7291 0.4070 +1749 7471 0.7150 +1749 7480 0.6320 +1749 7482 0.4070 +1749 7545 0.5800 +1749 7979 0.7250 +1749 8321 0.4680 +1749 8626 0.6560 +1749 8646 0.4020 +1749 9464 0.6460 +1749 9500 0.8710 +1749 9935 0.4770 +1749 10273 0.5410 +1749 10716 0.4790 +1749 11059 0.5250 +1749 22943 0.4260 +1749 23013 0.4740 +1749 23089 0.6050 +1749 23314 0.4620 +1749 26468 0.6980 +1749 50964 0.4430 +1749 51176 0.4290 +1749 51804 0.4860 +1749 55553 0.6350 +1749 55885 0.4270 +1749 59269 0.5680 +1749 60529 0.5570 +1749 64211 0.4020 +1749 64783 0.4550 +1749 66000 0.4270 +1749 89780 0.8230 +1749 117581 0.4850 +1749 121340 0.8740 +1749 140679 0.6860 +1749 221833 0.4120 +1749 399823 0.4140 +1749 431707 0.5670 +1749 727857 0.4180 +1750 1780 0.6640 +1750 1906 0.4330 +1750 1909 0.4150 +1750 2253 0.4190 +1750 2290 0.4080 +1750 2571 0.6340 +1750 2572 0.4160 +1750 4204 0.7410 +1750 4208 0.4830 +1750 4212 0.4140 +1750 4488 0.6150 +1750 5090 0.4030 +1750 5178 0.5040 +1750 6468 0.5520 +1750 6496 0.4850 +1750 6772 0.4990 +1750 7471 0.4760 +1750 7480 0.5010 +1750 7979 0.8220 +1750 8321 0.4790 +1750 8626 0.7250 +1750 8928 0.4040 +1750 9464 0.6730 +1750 10273 0.5190 +1750 10763 0.4340 +1750 11059 0.5060 +1750 23089 0.6350 +1750 26468 0.5260 +1750 59269 0.5060 +1750 89780 0.4860 +1750 140679 0.5260 +1750 431707 0.4630 +1750 727857 0.4240 +1755 2335 0.5720 +1755 3347 0.4310 +1755 3417 0.4940 +1755 3418 0.4950 +1755 3700 0.7110 +1755 3933 0.4520 +1755 3958 0.6930 +1755 4035 0.4420 +1755 4057 0.8260 +1755 4069 0.5780 +1755 4153 0.4490 +1755 4255 0.5720 +1755 4589 0.6380 +1755 5284 0.5250 +1755 5728 0.5190 +1755 5967 0.4500 +1755 5968 0.5410 +1755 6387 0.5290 +1755 6441 0.9900 +1755 6590 0.4270 +1755 6779 0.4970 +1755 7032 0.4910 +1755 7033 0.6040 +1755 7097 0.5150 +1755 7099 0.5200 +1755 8089 0.4240 +1755 8857 0.4030 +1755 9211 0.5110 +1755 9332 0.4340 +1755 10011 0.7670 +1755 10158 0.7630 +1755 11272 0.4050 +1755 29998 0.5010 +1755 30835 0.4740 +1755 51684 0.4860 +1755 55248 0.6320 +1755 58503 0.4190 +1755 79664 0.4200 +1755 84569 0.5910 +1755 90070 0.4310 +1755 140885 0.5300 +1755 162967 0.8250 +1755 390079 0.4750 +1755 653509 0.7390 +1755 727897 0.9020 +1755 729238 0.6400 +1756 1760 0.4830 +1756 1832 0.6090 +1756 1837 0.9880 +1756 1838 0.9560 +1756 1950 0.4540 +1756 2010 0.7680 +1756 2011 0.6760 +1756 2125 0.4310 +1756 2157 0.5170 +1756 2158 0.4510 +1756 2218 0.7480 +1756 2280 0.4280 +1756 2316 0.7710 +1756 2317 0.5690 +1756 2318 0.8560 +1756 2335 0.4070 +1756 2620 0.5260 +1756 2660 0.5870 +1756 2670 0.4780 +1756 2710 0.5720 +1756 2712 0.5520 +1756 2811 0.5410 +1756 2812 0.5410 +1756 2814 0.5480 +1756 2815 0.5410 +1756 3339 0.7890 +1756 3679 0.7070 +1756 3709 0.4020 +1756 3766 0.9120 +1756 3768 0.4170 +1756 3776 0.4460 +1756 3880 0.6330 +1756 3908 0.9780 +1756 3909 0.5640 +1756 3910 0.7020 +1756 3911 0.5710 +1756 3912 0.7740 +1756 3913 0.5660 +1756 3914 0.5250 +1756 3915 0.6870 +1756 3918 0.5960 +1756 3920 0.5780 +1756 4000 0.5780 +1756 4131 0.4420 +1756 4154 0.4540 +1756 4534 0.4280 +1756 4593 0.4470 +1756 4604 0.4780 +1756 4607 0.4730 +1756 4609 0.5100 +1756 4617 0.5510 +1756 4618 0.6560 +1756 4619 0.5540 +1756 4620 0.4800 +1756 4621 0.7180 +1756 4624 0.7830 +1756 4625 0.6770 +1756 4626 0.6480 +1756 4632 0.6340 +1756 4633 0.6650 +1756 4634 0.6370 +1756 4635 0.5670 +1756 4654 0.6620 +1756 4656 0.6390 +1756 4734 0.5760 +1756 4842 0.9290 +1756 4846 0.5100 +1756 5009 0.4750 +1756 5081 0.6590 +1756 5096 0.4220 +1756 5239 0.8360 +1756 5286 0.6530 +1756 5318 0.4030 +1756 5339 0.9020 +1756 5493 0.5100 +1756 5774 0.4740 +1756 5829 0.5180 +1756 5913 0.6760 +1756 5940 0.4020 +1756 6261 0.7580 +1756 6262 0.4110 +1756 6329 0.4750 +1756 6331 0.7170 +1756 6434 0.4870 +1756 6442 0.9950 +1756 6443 0.9920 +1756 6444 0.9960 +1756 6445 0.9840 +1756 6453 0.4750 +1756 6525 0.5040 +1756 6606 0.5840 +1756 6607 0.7050 +1756 6640 0.9980 +1756 6641 0.9960 +1756 6645 0.9850 +1756 6844 0.4200 +1756 6876 0.4210 +1756 6901 0.6550 +1756 7060 0.4550 +1756 7082 0.5620 +1756 7094 0.8360 +1756 7111 0.6260 +1756 7125 0.5880 +1756 7134 0.5650 +1756 7135 0.6430 +1756 7136 0.5910 +1756 7137 0.6850 +1756 7138 0.5940 +1756 7139 0.7010 +1756 7140 0.7450 +1756 7157 0.7300 +1756 7168 0.7810 +1756 7169 0.6320 +1756 7170 0.7210 +1756 7171 0.5480 +1756 7273 0.8570 +1756 7402 0.9920 +1756 7414 0.9400 +1756 7504 0.4860 +1756 8038 0.4480 +1756 8048 0.4270 +1756 8082 0.9980 +1756 8139 0.5660 +1756 8291 0.9590 +1756 8425 0.4080 +1756 8518 0.4480 +1756 8557 0.6750 +1756 8727 0.9230 +1756 8776 0.4470 +1756 8910 0.9810 +1756 9215 0.4020 +1756 9351 0.4640 +1756 9378 0.6620 +1756 9379 0.6150 +1756 9499 0.8300 +1756 9531 0.5740 +1756 9722 0.4180 +1756 10161 0.5460 +1756 10319 0.5220 +1756 10585 0.7020 +1756 11141 0.6420 +1756 11149 0.6980 +1756 11155 0.6490 +1756 22954 0.4750 +1756 23230 0.4280 +1756 23336 0.4740 +1756 26509 0.5110 +1756 27185 0.4200 +1756 27288 0.4550 +1756 27316 0.4610 +1756 29765 0.6170 +1756 29766 0.5990 +1756 29767 0.5880 +1756 29954 0.6490 +1756 50618 0.4520 +1756 51393 0.4720 +1756 51806 0.8350 +1756 54212 0.9920 +1756 54221 0.9900 +1756 55227 0.4220 +1756 55624 0.6710 +1756 55796 0.4050 +1756 57190 0.6340 +1756 57716 0.7240 +1756 59339 0.4770 +1756 64419 0.4070 +1756 79026 0.4160 +1756 79147 0.8040 +1756 81493 0.7920 +1756 83660 0.8410 +1756 84033 0.4330 +1756 84062 0.6780 +1756 84676 0.5430 +1756 91860 0.8310 +1756 114907 0.4750 +1756 115557 0.4590 +1756 133584 0.7050 +1756 137868 0.7080 +1756 163688 0.8310 +1756 202333 0.5450 +1756 203859 0.4490 +1756 256356 0.4300 +1756 284119 0.6440 +1756 284217 0.5690 +1756 375790 0.9360 +1757 2109 0.4240 +1757 2110 0.4910 +1757 2115 0.4480 +1757 2356 0.6480 +1757 2593 0.5470 +1757 2618 0.6710 +1757 2628 0.9260 +1757 2639 0.4730 +1757 2653 0.8570 +1757 2731 0.9940 +1757 2936 0.4820 +1757 3249 0.5150 +1757 3603 0.4380 +1757 3712 0.5920 +1757 4143 0.5810 +1757 4144 0.5090 +1757 4477 0.4010 +1757 4522 0.5910 +1757 4524 0.8250 +1757 4548 0.7060 +1757 4552 0.4930 +1757 4609 0.4290 +1757 4942 0.4050 +1757 4967 0.4120 +1757 5122 0.4330 +1757 5125 0.4700 +1757 5184 0.4090 +1757 5723 0.4200 +1757 6041 0.4710 +1757 6470 0.9860 +1757 6472 0.9830 +1757 6652 0.4090 +1757 6716 0.4560 +1757 6821 0.4680 +1757 7113 0.4740 +1757 7158 0.4390 +1757 7296 0.4370 +1757 7298 0.7680 +1757 7410 0.4570 +1757 7511 0.4110 +1757 7512 0.4170 +1757 8050 0.4680 +1757 8379 0.4260 +1757 8528 0.6390 +1757 8801 0.5350 +1757 8802 0.4170 +1757 8803 0.5640 +1757 8895 0.4290 +1757 8924 0.4280 +1757 9159 0.4750 +1757 9380 0.6570 +1757 9678 0.4160 +1757 10426 0.4190 +1757 10587 0.4490 +1757 10588 0.5080 +1757 10797 0.7640 +1757 10841 0.6550 +1757 11216 0.4080 +1757 22853 0.4330 +1757 23301 0.4650 +1757 23464 0.5470 +1757 23600 0.5700 +1757 23671 0.4820 +1757 23743 0.6820 +1757 25902 0.5920 +1757 25979 0.7190 +1757 26227 0.6170 +1757 27034 0.6240 +1757 27232 0.9910 +1757 27430 0.4280 +1757 28976 0.4360 +1757 29803 0.4270 +1757 29958 0.9530 +1757 29968 0.5000 +1757 51015 0.4670 +1757 51268 0.9840 +1757 55349 0.6470 +1757 55526 0.4310 +1757 55753 0.4250 +1757 56898 0.5570 +1757 57452 0.4320 +1757 60528 0.4370 +1757 63929 0.4090 +1757 64902 0.9350 +1757 79072 0.4090 +1757 79763 0.4750 +1757 81034 0.5160 +1757 85378 0.4210 +1757 85414 0.4590 +1757 114112 0.4370 +1757 120863 0.4120 +1757 123263 0.5610 +1757 200205 0.6790 +1757 200895 0.6710 +1757 221895 0.4240 +1757 441024 0.7760 +1757 642968 0.5120 +1757 730249 0.6340 +1758 1834 0.9820 +1758 2247 0.5740 +1758 2591 0.6080 +1758 2597 0.4490 +1758 3309 0.5040 +1758 3381 0.9690 +1758 3685 0.9120 +1758 3690 0.9090 +1758 4060 0.4680 +1758 4256 0.6040 +1758 4313 0.5830 +1758 4314 0.8750 +1758 4318 0.9820 +1758 4322 0.6010 +1758 4958 0.5350 +1758 4982 0.4090 +1758 5167 0.6250 +1758 5251 0.8710 +1758 5741 0.7850 +1758 6569 0.4490 +1758 6678 0.6250 +1758 6696 0.9220 +1758 7450 0.4880 +1758 8074 0.9010 +1758 8600 0.6010 +1758 9313 0.5910 +1758 9365 0.5700 +1758 9622 0.4500 +1758 10117 0.7940 +1758 22943 0.4150 +1758 50964 0.7900 +1758 54757 0.5570 +1758 54959 0.5050 +1758 56934 0.4120 +1758 56955 0.9830 +1758 56975 0.8350 +1758 79595 0.4140 +1758 120787 0.4450 +1758 121340 0.6820 +1758 142680 0.5910 +1758 401138 0.6270 +1758 752014 0.4620 +1759 1785 0.9830 +1759 1808 0.4540 +1759 1813 0.4360 +1759 1947 0.5640 +1759 1948 0.5520 +1759 1949 0.5840 +1759 2017 0.7350 +1759 2047 0.5590 +1759 2048 0.5880 +1759 2049 0.5220 +1759 2050 0.5340 +1759 2051 0.5630 +1759 2060 0.7310 +1759 2086 0.5250 +1759 2534 0.5160 +1759 2562 0.6290 +1759 2571 0.4420 +1759 2580 0.6880 +1759 2664 0.4930 +1759 2665 0.4400 +1759 2697 0.5270 +1759 2775 0.4790 +1759 2885 0.9530 +1759 2891 0.5710 +1759 2898 0.4280 +1759 2901 0.4670 +1759 2913 0.4620 +1759 2915 0.5200 +1759 3059 0.9710 +1759 3064 0.6980 +1759 3113 0.4990 +1759 3115 0.5060 +1759 3117 0.4990 +1759 3118 0.4990 +1759 3119 0.5060 +1759 3120 0.5060 +1759 3122 0.5040 +1759 3123 0.5060 +1759 3127 0.5060 +1759 3312 0.4430 +1759 3417 0.4590 +1759 3785 0.4570 +1759 3897 0.5190 +1759 4137 0.4390 +1759 4233 0.5220 +1759 4599 0.9060 +1759 4628 0.4750 +1759 4646 0.5820 +1759 4690 0.6030 +1759 4763 0.4150 +1759 4803 0.4950 +1759 4830 0.5420 +1759 4833 0.4020 +1759 4842 0.4570 +1759 4857 0.6160 +1759 4905 0.6840 +1759 4914 0.5160 +1759 4976 0.4350 +1759 5071 0.5080 +1759 5216 0.8380 +1759 5217 0.6110 +1759 5341 0.6980 +1759 5516 0.4250 +1759 5594 0.5160 +1759 5824 0.4330 +1759 5868 0.5360 +1759 5870 0.4390 +1759 6010 0.4760 +1759 6323 0.4200 +1759 6326 0.4550 +1759 6327 0.4110 +1759 6334 0.4190 +1759 6453 0.9790 +1759 6455 0.7690 +1759 6456 0.9500 +1759 6457 0.7310 +1759 6616 0.7160 +1759 6622 0.4290 +1759 6708 0.4300 +1759 6709 0.5370 +1759 6714 0.7420 +1759 6792 0.4010 +1759 6804 0.4880 +1759 6812 0.7660 +1759 6844 0.6100 +1759 6853 0.7790 +1759 6854 0.7250 +1759 6855 0.5430 +1759 6857 0.6900 +1759 7099 0.4740 +1759 7287 0.6500 +1759 7341 0.5710 +1759 7414 0.4250 +1759 7416 0.4220 +1759 8218 0.8530 +1759 8224 0.4570 +1759 8409 0.4300 +1759 8411 0.7110 +1759 8504 0.4980 +1759 8562 0.4770 +1759 8766 0.4390 +1759 8799 0.7060 +1759 8800 0.7830 +1759 8867 0.8740 +1759 8871 0.5980 +1759 8905 0.5860 +1759 8907 0.5730 +1759 8936 0.4130 +1759 8976 0.6920 +1759 9026 0.4110 +1759 9685 0.4320 +1759 9804 0.4050 +1759 9829 0.6410 +1759 9892 0.6420 +1759 9900 0.4470 +1759 9927 0.8340 +1759 10053 0.5300 +1759 10121 0.4950 +1759 10213 0.4250 +1759 10399 0.5870 +1759 10507 0.4110 +1759 10730 0.4370 +1759 10989 0.4130 +1759 11252 0.7250 +1759 11345 0.4360 +1759 22905 0.5330 +1759 23048 0.5950 +1759 23149 0.4830 +1759 23268 0.6700 +1759 23301 0.4820 +1759 23385 0.4510 +1759 23643 0.4160 +1759 23710 0.4360 +1759 24146 0.4210 +1759 25923 0.4330 +1759 25932 0.4990 +1759 26052 0.9990 +1759 26499 0.7030 +1759 28988 0.6070 +1759 29763 0.6370 +1759 29924 0.4690 +1759 29949 0.4480 +1759 29993 0.8890 +1759 30011 0.6600 +1759 30816 0.4190 +1759 50618 0.8090 +1759 51024 0.9970 +1759 51062 0.5080 +1759 51100 0.4230 +1759 51429 0.9510 +1759 53347 0.5450 +1759 54205 0.4480 +1759 54332 0.4880 +1759 54471 0.6440 +1759 55040 0.5030 +1759 55486 0.4550 +1759 55669 0.7690 +1759 55740 0.4710 +1759 56947 0.6760 +1759 57030 0.4230 +1759 57514 0.4750 +1759 57582 0.4460 +1759 58513 0.4200 +1759 64225 0.4050 +1759 64423 0.4210 +1759 64786 0.4050 +1759 65018 0.6030 +1759 78997 0.4410 +1759 79868 0.4740 +1759 84251 0.6110 +1759 112476 0.4200 +1759 112755 0.6280 +1759 115209 0.4070 +1759 120892 0.6590 +1759 125170 0.6790 +1759 130340 0.5250 +1759 130574 0.5400 +1759 139341 0.4550 +1759 147179 0.5850 +1759 257364 0.7240 +1759 345456 0.5750 +1759 375189 0.5700 +1759 405754 0.5240 +1760 1762 0.8110 +1760 1837 0.4360 +1760 2039 0.5740 +1760 2067 0.4080 +1760 2217 0.4780 +1760 2332 0.4570 +1760 2395 0.4190 +1760 2697 0.4800 +1760 2702 0.4410 +1760 3064 0.4140 +1760 3187 0.5260 +1760 3316 0.7410 +1760 3623 0.4700 +1760 3625 0.4640 +1760 3643 0.4180 +1760 4154 0.9390 +1760 4437 0.4420 +1760 4656 0.5830 +1760 4659 0.7050 +1760 5350 0.8350 +1760 6183 0.5890 +1760 6261 0.6130 +1760 6311 0.4060 +1760 6331 0.4780 +1760 6667 0.4420 +1760 6714 0.5070 +1760 7037 0.5920 +1760 7139 0.6520 +1760 7140 0.5510 +1760 7555 0.9160 +1760 8087 0.4310 +1760 8776 0.4980 +1760 10150 0.8500 +1760 10658 0.9250 +1760 10659 0.6630 +1760 10664 0.5050 +1760 11155 0.6520 +1760 11189 0.5850 +1760 25814 0.4350 +1760 55796 0.8450 +1760 58510 0.4080 +1760 64800 0.4670 +1760 79048 0.4840 +1760 79784 0.6150 +1760 147912 0.8390 +1760 197335 0.4620 +1760 285525 0.7280 +1760 389874 0.5840 +1761 2018 0.4200 +1761 2099 0.4080 +1761 2119 0.4120 +1761 2254 0.4520 +1761 2298 0.4500 +1761 2488 0.4200 +1761 2492 0.5590 +1761 2516 0.8440 +1761 2626 0.8910 +1761 2661 0.4700 +1761 2674 0.5110 +1761 3283 0.4960 +1761 3284 0.4580 +1761 3291 0.4120 +1761 3292 0.4020 +1761 3293 0.4870 +1761 3400 0.4220 +1761 3640 0.4270 +1761 3836 0.5450 +1761 3837 0.5130 +1761 3838 0.5190 +1761 3973 0.4910 +1761 3975 0.4840 +1761 4254 0.6850 +1761 4438 0.4850 +1761 4838 0.4790 +1761 5620 0.4030 +1761 6658 0.8880 +1761 6660 0.6320 +1761 6662 0.9590 +1761 6736 0.9550 +1761 6847 0.4630 +1761 6927 0.4180 +1761 7015 0.5300 +1761 7141 0.5840 +1761 7142 0.5030 +1761 7288 0.4100 +1761 7490 0.6080 +1761 7543 0.4080 +1761 7544 0.5620 +1761 7704 0.5990 +1761 9210 0.6060 +1761 9271 0.5050 +1761 9985 0.5070 +1761 11063 0.6320 +1761 23135 0.5330 +1761 23189 0.9160 +1761 23414 0.4570 +1761 23626 0.5390 +1761 30812 0.6140 +1761 50511 0.6130 +1761 50846 0.7810 +1761 51087 0.4600 +1761 54361 0.6440 +1761 54514 0.5210 +1761 54937 0.5980 +1761 55124 0.4190 +1761 55500 0.6010 +1761 55527 0.4480 +1761 55553 0.4820 +1761 55729 0.7760 +1761 56155 0.4750 +1761 56159 0.4170 +1761 56163 0.5390 +1761 56603 0.5090 +1761 56929 0.5060 +1761 56956 0.5870 +1761 57167 0.6010 +1761 63978 0.4060 +1761 81037 0.7170 +1761 81704 0.8460 +1761 81848 0.5340 +1761 83639 0.4700 +1761 83853 0.5080 +1761 83893 0.4520 +1761 84733 0.4490 +1761 89869 0.4420 +1761 161142 0.5140 +1761 164684 0.4590 +1761 255877 0.4460 +1761 284654 0.6570 +1761 339345 0.6580 +1761 342977 0.6740 +1761 344018 0.6410 +1761 346673 0.6890 +1761 373863 0.5300 +1761 402381 0.6190 +1761 100125288 0.4420 +1761 100526761 0.5950 +1761 116033993 0.5900 +1762 2580 0.5780 +1762 2697 0.4260 +1762 2702 0.4350 +1762 2827 0.5340 +1762 3396 0.4780 +1762 4085 0.4150 +1762 4154 0.6440 +1762 4656 0.4050 +1762 4914 0.4360 +1762 6208 0.5980 +1762 6261 0.5070 +1762 6295 0.4240 +1762 6667 0.4380 +1762 7398 0.4030 +1762 7555 0.4370 +1762 8189 0.5780 +1762 10014 0.4710 +1762 11165 0.4560 +1762 23194 0.5870 +1762 23197 0.4510 +1762 23239 0.4090 +1762 23513 0.4090 +1762 26270 0.4430 +1762 51520 0.6860 +1762 54726 0.4370 +1762 54976 0.6520 +1762 54978 0.5140 +1762 56893 0.4950 +1762 57599 0.7520 +1762 64854 0.9270 +1762 81492 0.8950 +1762 89941 0.4170 +1762 147912 0.8600 +1762 219333 0.8780 +1762 376940 0.4050 +1762 388553 0.4950 +1763 2033 0.4210 +1763 2067 0.7520 +1763 2068 0.6920 +1763 2071 0.4370 +1763 2072 0.7250 +1763 2073 0.6030 +1763 2074 0.5400 +1763 2175 0.6570 +1763 2176 0.5080 +1763 2177 0.8280 +1763 2178 0.4710 +1763 2188 0.4360 +1763 2189 0.4880 +1763 2237 0.9960 +1763 2547 0.8700 +1763 2956 0.6210 +1763 3014 0.4420 +1763 3070 0.4440 +1763 3364 0.7880 +1763 3832 0.4850 +1763 3978 0.8920 +1763 3980 0.8020 +1763 3981 0.7190 +1763 4001 0.4680 +1763 4172 0.5420 +1763 4173 0.6490 +1763 4174 0.6190 +1763 4175 0.6910 +1763 4176 0.4880 +1763 4292 0.5180 +1763 4361 0.8790 +1763 4436 0.5460 +1763 4437 0.5040 +1763 4535 0.5240 +1763 4536 0.5230 +1763 4537 0.5070 +1763 4538 0.8080 +1763 4540 0.8110 +1763 4683 0.7710 +1763 4695 0.5070 +1763 4698 0.5070 +1763 4700 0.5070 +1763 4702 0.5070 +1763 4704 0.4510 +1763 4706 0.4930 +1763 4709 0.5250 +1763 4713 0.5190 +1763 4714 0.5140 +1763 4715 0.7970 +1763 4716 0.7970 +1763 4720 0.5070 +1763 4722 0.5070 +1763 4723 0.5070 +1763 4724 0.5070 +1763 4726 0.5070 +1763 4728 0.5070 +1763 4729 0.5070 +1763 4811 0.4170 +1763 4913 0.4960 +1763 4968 0.4510 +1763 4998 0.5950 +1763 5001 0.4500 +1763 5111 0.6600 +1763 5422 0.8530 +1763 5424 0.9030 +1763 5425 0.8270 +1763 5426 0.8010 +1763 5427 0.8020 +1763 5428 0.6840 +1763 5429 0.5970 +1763 5557 0.7620 +1763 5558 0.8370 +1763 5591 0.6690 +1763 5810 0.6260 +1763 5883 0.8670 +1763 5884 0.8040 +1763 5887 0.4090 +1763 5888 0.9790 +1763 5889 0.8430 +1763 5890 0.7510 +1763 5892 0.7530 +1763 5893 0.9380 +1763 5932 0.9670 +1763 5965 0.8690 +1763 5980 0.6680 +1763 5981 0.6940 +1763 5982 0.8240 +1763 5983 0.7960 +1763 5984 0.8430 +1763 5985 0.7190 +1763 6059 0.4560 +1763 6117 0.9970 +1763 6118 0.8800 +1763 6119 0.7380 +1763 6233 0.5220 +1763 6491 0.4480 +1763 6595 0.4210 +1763 6596 0.6820 +1763 6742 0.7470 +1763 6832 0.5330 +1763 6996 0.4170 +1763 7013 0.7950 +1763 7014 0.7570 +1763 7019 0.4470 +1763 7150 0.6270 +1763 7153 0.5840 +1763 7155 0.4380 +1763 7156 0.9970 +1763 7157 0.5780 +1763 7158 0.8710 +1763 7272 0.5090 +1763 7311 0.4990 +1763 7314 0.5260 +1763 7316 0.5320 +1763 7334 0.4070 +1763 7486 0.9990 +1763 7515 0.4880 +1763 7516 0.6980 +1763 7517 0.8060 +1763 7518 0.5820 +1763 7520 0.8210 +1763 7979 0.6350 +1763 8317 0.5620 +1763 8318 0.7910 +1763 8337 0.4130 +1763 8338 0.4130 +1763 8356 0.4130 +1763 8438 0.5750 +1763 8914 0.7580 +1763 8940 0.4150 +1763 9025 0.4470 +1763 9156 0.9980 +1763 9319 0.4630 +1763 9391 0.7280 +1763 9400 0.8850 +1763 9401 0.9210 +1763 9656 0.7210 +1763 9735 0.4130 +1763 9824 0.4180 +1763 9837 0.4310 +1763 9928 0.4010 +1763 9937 0.4440 +1763 9941 0.6500 +1763 10111 0.7660 +1763 10117 0.4240 +1763 10198 0.4590 +1763 10293 0.4980 +1763 10403 0.5730 +1763 10459 0.6720 +1763 10524 0.5940 +1763 10535 0.5170 +1763 10592 0.4880 +1763 10606 0.4360 +1763 10615 0.4010 +1763 10635 0.7520 +1763 10714 0.7860 +1763 10721 0.6820 +1763 10926 0.5980 +1763 11073 0.8970 +1763 11144 0.5270 +1763 11169 0.9970 +1763 11200 0.7560 +1763 11232 0.6060 +1763 11284 0.4630 +1763 11343 0.5070 +1763 22976 0.6490 +1763 23137 0.6100 +1763 23172 0.5160 +1763 23514 0.5100 +1763 23583 0.4240 +1763 23626 0.7180 +1763 23649 0.7300 +1763 25788 0.7270 +1763 25913 0.6150 +1763 26277 0.6370 +1763 27343 0.5090 +1763 27434 0.4440 +1763 29935 0.5000 +1763 29980 0.4370 +1763 50484 0.5140 +1763 50485 0.7550 +1763 51079 0.5070 +1763 51426 0.5000 +1763 51455 0.4870 +1763 51514 0.4750 +1763 51548 0.4750 +1763 51647 0.8040 +1763 51750 0.8050 +1763 54107 0.5690 +1763 54386 0.5200 +1763 54465 0.4670 +1763 54537 0.5100 +1763 54821 0.5090 +1763 54841 0.5400 +1763 54932 0.5560 +1763 54962 0.5050 +1763 55086 0.6010 +1763 55215 0.6160 +1763 55218 0.5590 +1763 55247 0.5560 +1763 55355 0.4640 +1763 55388 0.8590 +1763 55536 0.4150 +1763 55775 0.6050 +1763 55967 0.5180 +1763 56652 0.8450 +1763 56655 0.5810 +1763 56852 0.5440 +1763 56897 0.6830 +1763 56916 0.6740 +1763 56992 0.4530 +1763 57082 0.4090 +1763 57697 0.8050 +1763 57804 0.5350 +1763 63922 0.5480 +1763 63967 0.6390 +1763 64175 0.4930 +1763 64210 0.9210 +1763 64428 0.4240 +1763 64858 0.4360 +1763 79621 0.4710 +1763 79677 0.4340 +1763 79728 0.8980 +1763 79840 0.6250 +1763 79915 0.8120 +1763 79991 0.7010 +1763 80010 0.9940 +1763 80119 0.9620 +1763 80198 0.9070 +1763 80820 0.4690 +1763 81620 0.6210 +1763 83695 0.5350 +1763 83990 0.8820 +1763 84083 0.7380 +1763 84126 0.8600 +1763 84153 0.4210 +1763 84191 0.4740 +1763 84250 0.5020 +1763 84296 0.6150 +1763 84464 0.7960 +1763 84515 0.5190 +1763 84893 0.7250 +1763 90381 0.5370 +1763 91442 0.4880 +1763 92667 0.8180 +1763 92797 0.8080 +1763 113510 0.4160 +1763 116028 0.8380 +1763 116447 0.5370 +1763 144715 0.6930 +1763 146956 0.8340 +1763 149840 0.4120 +1763 163786 0.5690 +1763 164045 0.7070 +1763 165918 0.4470 +1763 197342 0.7100 +1763 201973 0.6330 +1763 246243 0.6690 +1763 253714 0.4930 +1763 254528 0.7640 +1763 259282 0.6500 +1763 286053 0.4830 +1763 286077 0.4040 +1763 286257 0.4080 +1763 348654 0.9150 +1763 374291 0.5070 +1763 548593 0.8270 +1763 100533467 0.6020 +1767 1768 0.5360 +1767 1769 0.8290 +1767 1770 0.6950 +1767 1780 0.4040 +1767 1781 0.7150 +1767 2201 0.4650 +1767 2302 0.6540 +1767 2622 0.6990 +1767 4295 0.4290 +1767 4763 0.4210 +1767 5048 0.6060 +1767 5270 0.5120 +1767 6103 0.7750 +1767 6647 0.6500 +1767 6674 0.6590 +1767 6990 0.4130 +1767 6993 0.4630 +1767 7273 0.4770 +1767 7277 0.4350 +1767 7399 0.4830 +1767 7802 0.9770 +1767 8085 0.4650 +1767 8100 0.4370 +1767 8481 0.5260 +1767 8632 0.8570 +1767 8655 0.4970 +1767 8701 0.6130 +1767 9542 0.4350 +1767 9576 0.4220 +1767 10126 0.5780 +1767 10309 0.6620 +1767 23345 0.4990 +1767 23352 0.4300 +1767 23639 0.7830 +1767 25981 0.8000 +1767 27019 0.9950 +1767 27285 0.4500 +1767 27445 0.5790 +1767 51314 0.9760 +1767 51364 0.6950 +1767 53353 0.4860 +1767 54768 0.7590 +1767 54919 0.7270 +1767 54970 0.4470 +1767 55036 0.8260 +1767 55130 0.8580 +1767 55172 0.9160 +1767 55259 0.7610 +1767 55567 0.7810 +1767 55582 0.4010 +1767 55997 0.4240 +1767 56171 0.8360 +1767 56683 0.6240 +1767 64446 0.9970 +1767 64518 0.4760 +1767 79633 0.4540 +1767 79776 0.4830 +1767 79819 0.8580 +1767 79925 0.4720 +1767 81492 0.4170 +1767 81930 0.4410 +1767 83538 0.6190 +1767 83544 0.9680 +1767 83657 0.5890 +1767 83658 0.4330 +1767 83659 0.5790 +1767 84059 0.4540 +1767 85016 0.4970 +1767 85478 0.7770 +1767 89765 0.7590 +1767 92749 0.7890 +1767 93233 0.9650 +1767 94025 0.5800 +1767 114788 0.5780 +1767 115399 0.4240 +1767 115948 0.7250 +1767 118491 0.7650 +1767 120114 0.4440 +1767 120379 0.4640 +1767 123872 0.9640 +1767 126820 0.8730 +1767 127602 0.8950 +1767 132203 0.4920 +1767 139212 0.6420 +1767 140453 0.4330 +1767 140735 0.4150 +1767 144132 0.5750 +1767 146754 0.7620 +1767 160762 0.4490 +1767 161582 0.6670 +1767 164781 0.5130 +1767 200162 0.4520 +1767 201625 0.9470 +1767 219681 0.5500 +1767 220136 0.4370 +1767 221421 0.9350 +1767 286207 0.4580 +1767 339829 0.8300 +1767 345643 0.5830 +1767 345895 0.9640 +1767 352909 0.7450 +1767 388389 0.8460 +1767 100500938 0.4440 +1768 1769 0.4510 +1768 1770 0.5240 +1768 1781 0.4200 +1768 2302 0.4510 +1768 2622 0.4180 +1768 4115 0.4560 +1768 6647 0.6500 +1768 6993 0.4180 +1768 7802 0.6330 +1768 8632 0.4480 +1768 9662 0.5430 +1768 10126 0.4940 +1768 22873 0.4610 +1768 23639 0.5570 +1768 25981 0.5380 +1768 27019 0.8440 +1768 51314 0.6910 +1768 51364 0.4100 +1768 54768 0.4900 +1768 54919 0.4350 +1768 55036 0.4550 +1768 55130 0.5180 +1768 55259 0.4240 +1768 55567 0.5250 +1768 55582 0.4540 +1768 55779 0.5310 +1768 56154 0.4260 +1768 56155 0.4160 +1768 56171 0.5830 +1768 57728 0.5290 +1768 64446 0.7530 +1768 79819 0.7580 +1768 79846 0.5270 +1768 79925 0.5740 +1768 80086 0.4080 +1768 80217 0.6770 +1768 80705 0.4230 +1768 83449 0.4590 +1768 83450 0.4250 +1768 83544 0.5520 +1768 83657 0.5950 +1768 83659 0.4860 +1768 83894 0.6300 +1768 84071 0.5390 +1768 84074 0.5520 +1768 84225 0.4180 +1768 85452 0.4750 +1768 85478 0.5810 +1768 89876 0.5620 +1768 92749 0.5840 +1768 93233 0.6620 +1768 118491 0.7530 +1768 122481 0.6360 +1768 123872 0.5520 +1768 126820 0.6580 +1768 127602 0.6390 +1768 136332 0.4250 +1768 140732 0.4570 +1768 144406 0.5850 +1768 146754 0.4970 +1768 159686 0.4910 +1768 199223 0.6000 +1768 201134 0.4040 +1768 201625 0.9810 +1768 246176 0.4530 +1768 255101 0.4110 +1768 286464 0.4560 +1768 339829 0.4440 +1768 345895 0.4300 +1768 352909 0.4970 +1768 374407 0.5100 +1768 388389 0.4860 +1768 389177 0.4010 +1768 401024 0.5230 +1768 643008 0.4120 +1768 100287364 0.4180 +1769 1770 0.4960 +1769 1781 0.4560 +1769 2622 0.5630 +1769 3801 0.4430 +1769 5034 0.4060 +1769 5048 0.6220 +1769 5957 0.4440 +1769 6647 0.6500 +1769 6674 0.4540 +1769 7168 0.4090 +1769 7169 0.4060 +1769 7385 0.4140 +1769 7802 0.4990 +1769 8632 0.9510 +1769 8701 0.5350 +1769 10126 0.5070 +1769 10309 0.4660 +1769 23639 0.6590 +1769 25981 0.9210 +1769 27019 0.8740 +1769 27285 0.4300 +1769 51314 0.8300 +1769 51364 0.5600 +1769 54768 0.5020 +1769 54919 0.5410 +1769 55036 0.4690 +1769 55130 0.5370 +1769 55172 0.4790 +1769 55259 0.7560 +1769 55567 0.9180 +1769 55776 0.6480 +1769 55779 0.4920 +1769 56171 0.9160 +1769 56683 0.5240 +1769 64446 0.9120 +1769 64518 0.5410 +1769 79819 0.8420 +1769 79846 0.4500 +1769 79925 0.4940 +1769 80217 0.5100 +1769 81930 0.4600 +1769 83538 0.4130 +1769 83544 0.7700 +1769 83894 0.6140 +1769 84071 0.4700 +1769 84074 0.4330 +1769 85478 0.6880 +1769 89765 0.5450 +1769 92749 0.6640 +1769 93233 0.8790 +1769 114327 0.4980 +1769 114781 0.4340 +1769 115948 0.5590 +1769 118491 0.9370 +1769 120379 0.4590 +1769 123872 0.5230 +1769 126820 0.8660 +1769 127602 0.5300 +1769 139212 0.4130 +1769 140453 0.4020 +1769 144132 0.5730 +1769 144406 0.4410 +1769 146754 0.9150 +1769 159686 0.4280 +1769 161582 0.4510 +1769 199223 0.4730 +1769 200162 0.4490 +1769 201140 0.4970 +1769 201625 0.7940 +1769 219287 0.4070 +1769 221421 0.5330 +1769 286464 0.4410 +1769 338949 0.4080 +1769 339829 0.5300 +1769 345643 0.4140 +1769 345895 0.6190 +1769 348262 0.4720 +1769 352909 0.5060 +1769 374768 0.4570 +1769 388389 0.6890 +1769 401024 0.5140 +1769 643909 0.4470 +1769 728378 0.4530 +1769 728524 0.4440 +1769 100130705 0.4740 +1770 1781 0.6960 +1770 2302 0.5430 +1770 2622 0.6030 +1770 2917 0.4130 +1770 3801 0.4290 +1770 3832 0.4070 +1770 5048 0.5940 +1770 5990 0.4070 +1770 6647 0.6500 +1770 6990 0.4330 +1770 6993 0.4820 +1770 7399 0.4100 +1770 7802 0.7650 +1770 8100 0.4380 +1770 8655 0.5190 +1770 9576 0.6260 +1770 10126 0.6690 +1770 10233 0.4380 +1770 10309 0.4820 +1770 23639 0.6270 +1770 25981 0.4700 +1770 27019 0.9310 +1770 27148 0.4150 +1770 27285 0.4640 +1770 51314 0.8140 +1770 51364 0.5720 +1770 54768 0.6860 +1770 54919 0.5050 +1770 54970 0.4200 +1770 55036 0.6640 +1770 55130 0.5990 +1770 55172 0.5820 +1770 55259 0.4350 +1770 55567 0.5040 +1770 55815 0.4010 +1770 55901 0.4790 +1770 56171 0.5250 +1770 56683 0.4010 +1770 63917 0.4270 +1770 64446 0.9420 +1770 79819 0.7590 +1770 80122 0.4510 +1770 81930 0.4270 +1770 83450 0.5140 +1770 83538 0.4600 +1770 83544 0.6210 +1770 83657 0.5050 +1770 83658 0.4850 +1770 83659 0.5820 +1770 85016 0.5440 +1770 85478 0.7220 +1770 89765 0.6380 +1770 92749 0.6990 +1770 93233 0.8040 +1770 114327 0.5330 +1770 115399 0.4720 +1770 115948 0.5030 +1770 118491 0.4410 +1770 123872 0.7500 +1770 126820 0.6660 +1770 127602 0.5710 +1770 132203 0.4970 +1770 139212 0.6220 +1770 140735 0.4940 +1770 144132 0.4600 +1770 146754 0.4790 +1770 146845 0.5110 +1770 148741 0.4640 +1770 161582 0.5250 +1770 171558 0.4120 +1770 200373 0.4180 +1770 200403 0.4400 +1770 201625 0.7950 +1770 221421 0.6050 +1770 246176 0.5220 +1770 339829 0.6240 +1770 345643 0.4770 +1770 345895 0.7100 +1770 352909 0.6100 +1770 374407 0.4220 +1770 388389 0.7480 +1773 1777 0.8390 +1773 2212 0.4790 +1773 2213 0.4790 +1773 2597 0.4520 +1773 2934 0.5080 +1773 3663 0.4310 +1773 3684 0.4070 +1773 5216 0.4550 +1773 5319 0.4020 +1773 5539 0.4050 +1773 5788 0.4780 +1773 6035 0.6370 +1773 10131 0.6160 +1773 11261 0.4420 +1773 11278 0.5500 +1773 26191 0.4360 +1773 29086 0.4220 +1773 54899 0.4330 +1773 55024 0.4650 +1773 57661 0.4220 +1773 119504 0.4290 +1773 124936 0.4460 +1773 133418 0.4540 +1773 256356 0.4140 +1773 345456 0.4560 +1773 375189 0.4580 +1774 1777 0.5570 +1774 2086 0.5390 +1774 9789 0.6280 +1774 28972 0.6260 +1774 30816 0.5230 +1774 58511 0.5550 +1774 405754 0.5390 +1775 1777 0.6800 +1775 1797 0.8240 +1775 1800 0.4470 +1775 5319 0.4020 +1775 5539 0.4050 +1775 8456 0.4010 +1775 11219 0.4370 +1775 22803 0.8540 +1775 55924 0.6980 +1775 57057 0.7820 +1775 58511 0.4840 +1775 80071 0.4360 +1775 85354 0.4480 +1775 89874 0.8140 +1775 93643 0.7660 +1775 112479 0.7120 +1775 148479 0.8240 +1775 342574 0.4300 +1775 553158 0.4400 +1776 1777 0.6840 +1776 10535 0.4550 +1776 11277 0.5040 +1776 51200 0.4140 +1776 54899 0.5160 +1776 84153 0.4230 +1777 1785 0.5110 +1777 2647 0.5390 +1777 2799 0.6630 +1777 3312 0.5140 +1777 3439 0.5560 +1777 3447 0.5450 +1777 3454 0.5050 +1777 3456 0.5860 +1777 3458 0.4040 +1777 3954 0.4970 +1777 4074 0.5110 +1777 6240 0.6050 +1777 6456 0.4990 +1777 6499 0.4570 +1777 6844 0.4990 +1777 6845 0.5030 +1777 7621 0.4550 +1777 8635 0.4090 +1777 8673 0.5590 +1777 8905 0.5020 +1777 8907 0.5100 +1777 9829 0.4990 +1777 10053 0.5030 +1777 10535 0.4890 +1777 11277 0.4540 +1777 23038 0.4140 +1777 51726 0.5750 +1777 58511 0.9190 +1777 79621 0.5220 +1777 81567 0.5010 +1777 84153 0.5760 +1777 115004 0.5360 +1777 130340 0.5230 +1777 148022 0.4020 +1777 340061 0.4700 +1777 360200 0.4340 +1777 100130988 0.4540 +1778 1780 0.9990 +1778 1781 0.9990 +1778 1783 0.9990 +1778 1785 0.5590 +1778 2288 0.4290 +1778 2316 0.4190 +1778 2318 0.4040 +1778 2589 0.5090 +1778 2590 0.5210 +1778 2597 0.4480 +1778 2620 0.4300 +1778 2801 0.5810 +1778 2804 0.5860 +1778 2908 0.4440 +1778 3028 0.9020 +1778 3064 0.6370 +1778 3297 0.5060 +1778 3320 0.9090 +1778 3326 0.6530 +1778 3508 0.5770 +1778 3708 0.4240 +1778 3796 0.5460 +1778 3798 0.5170 +1778 3799 0.5170 +1778 3800 0.7450 +1778 3801 0.5620 +1778 3831 0.5630 +1778 3832 0.4870 +1778 3833 0.4320 +1778 4085 0.5390 +1778 4134 0.4630 +1778 4218 0.5730 +1778 4287 0.4030 +1778 4306 0.4260 +1778 4627 0.4060 +1778 4646 0.4310 +1778 4735 0.4470 +1778 4744 0.5390 +1778 4750 0.5260 +1778 4926 0.5970 +1778 5048 0.9940 +1778 5116 0.8610 +1778 5347 0.8290 +1778 5870 0.6280 +1778 6233 0.5120 +1778 6238 0.4150 +1778 6249 0.7850 +1778 6647 0.5000 +1778 6709 0.5620 +1778 6811 0.5630 +1778 6990 0.9610 +1778 6991 0.6790 +1778 6993 0.9870 +1778 7175 0.7530 +1778 7186 0.4040 +1778 7277 0.8050 +1778 7280 0.8390 +1778 7283 0.7830 +1778 7311 0.5170 +1778 7314 0.5380 +1778 7316 0.5210 +1778 7317 0.4130 +1778 7415 0.7650 +1778 7802 0.4870 +1778 7846 0.9850 +1778 7879 0.8860 +1778 8085 0.4550 +1778 8100 0.6470 +1778 8518 0.4660 +1778 8565 0.4820 +1778 8655 0.9950 +1778 8723 0.7300 +1778 8729 0.5520 +1778 8766 0.5930 +1778 8988 0.4130 +1778 9055 0.4070 +1778 9133 0.4640 +1778 9184 0.5920 +1778 9382 0.5100 +1778 9527 0.5040 +1778 9570 0.5450 +1778 9700 0.5950 +1778 9742 0.5480 +1778 9793 0.4340 +1778 9927 0.4140 +1778 10013 0.6790 +1778 10075 0.6020 +1778 10121 0.9950 +1778 10126 0.4530 +1778 10133 0.6030 +1778 10146 0.4200 +1778 10300 0.5980 +1778 10376 0.7940 +1778 10381 0.8330 +1778 10382 0.8230 +1778 10383 0.9060 +1778 10466 0.5030 +1778 10540 0.9980 +1778 10594 0.5100 +1778 10614 0.4580 +1778 10671 0.9910 +1778 10681 0.4400 +1778 10726 0.9370 +1778 10728 0.5990 +1778 11070 0.4990 +1778 11091 0.4490 +1778 11258 0.9660 +1778 11315 0.6270 +1778 22796 0.5530 +1778 22919 0.5430 +1778 22924 0.4580 +1778 22930 0.6300 +1778 22931 0.5850 +1778 22981 0.7320 +1778 23095 0.4630 +1778 23122 0.4310 +1778 23299 0.9990 +1778 23332 0.4320 +1778 23352 0.6480 +1778 23354 0.5440 +1778 23386 0.9430 +1778 25782 0.6230 +1778 25839 0.5060 +1778 26286 0.5280 +1778 26330 0.4240 +1778 26353 0.4460 +1778 27019 0.5040 +1778 27185 0.4260 +1778 27436 0.5250 +1778 51143 0.9990 +1778 51164 0.9740 +1778 51199 0.6620 +1778 51272 0.5020 +1778 51560 0.5350 +1778 51574 0.5170 +1778 51626 0.9620 +1778 51807 0.8310 +1778 54332 0.4740 +1778 54801 0.5040 +1778 54820 0.5600 +1778 54930 0.4990 +1778 55112 0.8700 +1778 55142 0.5000 +1778 55559 0.4990 +1778 55704 0.5600 +1778 55738 0.5130 +1778 55860 0.9500 +1778 56992 0.4490 +1778 57449 0.4180 +1778 57511 0.5040 +1778 64446 0.4940 +1778 64689 0.5580 +1778 64837 0.4060 +1778 66000 0.6900 +1778 79441 0.4990 +1778 79628 0.5060 +1778 79659 0.9270 +1778 79861 0.7570 +1778 79866 0.4990 +1778 79980 0.5410 +1778 81027 0.7530 +1778 81565 0.7980 +1778 81930 0.4740 +1778 83473 0.4240 +1778 83547 0.8130 +1778 83548 0.5250 +1778 83657 0.8820 +1778 83658 0.9980 +1778 83932 0.5140 +1778 84364 0.5120 +1778 84376 0.6970 +1778 84516 0.9910 +1778 84617 0.7860 +1778 84790 0.7940 +1778 89891 0.8760 +1778 90678 0.4570 +1778 90990 0.4150 +1778 91949 0.5420 +1778 92558 0.9340 +1778 93323 0.5300 +1778 93661 0.5320 +1778 94081 0.4050 +1778 112714 0.7550 +1778 113457 0.7630 +1778 115106 0.4990 +1778 117177 0.4990 +1778 120892 0.7350 +1778 121512 0.4010 +1778 122553 0.4720 +1778 134492 0.4050 +1778 140735 0.9830 +1778 158158 0.4610 +1778 200132 0.6260 +1778 200162 0.4890 +1778 200894 0.5690 +1778 201625 0.4720 +1778 203068 0.8960 +1778 255758 0.8270 +1778 284403 0.4860 +1778 338382 0.8150 +1778 343521 0.6390 +1778 347688 0.7530 +1778 347733 0.9840 +1778 440193 0.6400 +1778 619279 0.4430 +1778 728642 0.5370 +1780 1781 0.9830 +1780 1783 0.9950 +1780 2288 0.4940 +1780 2589 0.4990 +1780 2590 0.4990 +1780 2801 0.5230 +1780 2804 0.5050 +1780 2890 0.5030 +1780 2908 0.4330 +1780 3297 0.4990 +1780 3320 0.5450 +1780 3798 0.5510 +1780 3799 0.5300 +1780 3800 0.5550 +1780 3936 0.4890 +1780 4085 0.5020 +1780 4306 0.4090 +1780 5048 0.9090 +1780 5116 0.5320 +1780 5241 0.4050 +1780 5347 0.5140 +1780 5358 0.4310 +1780 5371 0.4220 +1780 5870 0.5380 +1780 5978 0.4140 +1780 6233 0.5050 +1780 6277 0.4190 +1780 6456 0.4510 +1780 6457 0.4990 +1780 6468 0.4040 +1780 6546 0.4010 +1780 6616 0.5490 +1780 6780 0.5470 +1780 6811 0.4990 +1780 6812 0.4340 +1780 6855 0.5030 +1780 6990 0.9820 +1780 6991 0.7310 +1780 6993 0.9810 +1780 7051 0.4410 +1780 7175 0.7200 +1780 7277 0.7450 +1780 7280 0.9190 +1780 7311 0.4990 +1780 7314 0.5050 +1780 7316 0.5050 +1780 7411 0.5130 +1780 7415 0.5070 +1780 7846 0.7510 +1780 7879 0.8050 +1780 7979 0.6820 +1780 8100 0.5310 +1780 8321 0.4980 +1780 8655 0.9970 +1780 8701 0.4120 +1780 8723 0.7230 +1780 8729 0.4990 +1780 9133 0.4330 +1780 9184 0.5570 +1780 9229 0.4880 +1780 9382 0.4990 +1780 9527 0.4990 +1780 9570 0.4990 +1780 9700 0.5150 +1780 9899 0.4770 +1780 10013 0.5120 +1780 10121 0.6610 +1780 10126 0.5980 +1780 10165 0.4380 +1780 10376 0.7450 +1780 10381 0.8110 +1780 10382 0.8610 +1780 10383 0.7640 +1780 10445 0.4360 +1780 10466 0.5150 +1780 10540 0.9980 +1780 10671 0.6180 +1780 10726 0.7450 +1780 11070 0.4990 +1780 11258 0.6060 +1780 11315 0.5060 +1780 22796 0.4990 +1780 22930 0.5030 +1780 22931 0.4990 +1780 23072 0.4650 +1780 23299 0.9970 +1780 23349 0.4780 +1780 23386 0.9320 +1780 23392 0.5230 +1780 25782 0.4990 +1780 25839 0.4990 +1780 26286 0.4990 +1780 27436 0.5110 +1780 28232 0.4030 +1780 51143 0.9990 +1780 51164 0.5660 +1780 51272 0.4990 +1780 51314 0.4750 +1780 51560 0.6140 +1780 51626 0.9420 +1780 51807 0.7550 +1780 54805 0.4320 +1780 54820 0.4290 +1780 55112 0.7600 +1780 55738 0.5180 +1780 55860 0.7000 +1780 55893 0.5470 +1780 56731 0.4690 +1780 56848 0.6060 +1780 57480 0.4230 +1780 57511 0.5610 +1780 57526 0.4580 +1780 64478 0.4080 +1780 64689 0.5220 +1780 79659 0.9610 +1780 79739 0.4870 +1780 79861 0.7450 +1780 80204 0.4220 +1780 81027 0.8070 +1780 81565 0.8230 +1780 83547 0.8000 +1780 83548 0.5040 +1780 83657 0.9520 +1780 83658 0.9900 +1780 84364 0.4990 +1780 84516 0.5380 +1780 84617 0.7520 +1780 84790 0.7450 +1780 85358 0.4180 +1780 89891 0.9010 +1780 91949 0.4990 +1780 93661 0.5500 +1780 112714 0.7450 +1780 113457 0.7450 +1780 140735 0.9890 +1780 147700 0.4020 +1780 200132 0.7780 +1780 200894 0.5290 +1780 203068 0.8430 +1780 255758 0.8800 +1780 286187 0.5120 +1780 338382 0.8000 +1780 343521 0.7760 +1780 347688 0.7380 +1780 347733 0.7470 +1781 1783 0.9990 +1781 1956 0.4860 +1781 2288 0.4900 +1781 2589 0.5170 +1781 2590 0.5000 +1781 2622 0.4190 +1781 2794 0.6230 +1781 2801 0.5720 +1781 2804 0.5690 +1781 2908 0.4430 +1781 3297 0.5010 +1781 3320 0.8340 +1781 3326 0.5450 +1781 3384 0.4170 +1781 3481 0.5030 +1781 3630 0.4450 +1781 3702 0.4060 +1781 3784 0.7430 +1781 3799 0.4410 +1781 4085 0.5060 +1781 4218 0.5650 +1781 4306 0.4650 +1781 4676 0.6060 +1781 4735 0.4530 +1781 5048 0.9720 +1781 5116 0.8240 +1781 5241 0.4370 +1781 5347 0.8030 +1781 5473 0.5230 +1781 5870 0.6000 +1781 5929 0.4010 +1781 6150 0.5100 +1781 6233 0.5230 +1781 6249 0.5400 +1781 6811 0.5150 +1781 6939 0.5890 +1781 6990 0.9830 +1781 6991 0.8650 +1781 6993 0.9890 +1781 7051 0.4700 +1781 7175 0.5550 +1781 7262 0.7000 +1781 7277 0.7570 +1781 7280 0.7490 +1781 7311 0.5320 +1781 7314 0.5380 +1781 7316 0.5170 +1781 7411 0.4710 +1781 7415 0.5700 +1781 7761 0.5430 +1781 7762 0.5430 +1781 7802 0.4130 +1781 7846 0.7670 +1781 7879 0.8100 +1781 8100 0.6190 +1781 8632 0.4450 +1781 8655 0.9980 +1781 8701 0.6860 +1781 8723 0.5720 +1781 8726 0.4320 +1781 8729 0.5080 +1781 8766 0.6150 +1781 8788 0.5010 +1781 9061 0.6000 +1781 9133 0.4330 +1781 9184 0.5540 +1781 9382 0.5040 +1781 9527 0.5590 +1781 9570 0.5200 +1781 9700 0.5150 +1781 10013 0.5260 +1781 10120 0.6090 +1781 10121 0.9820 +1781 10126 0.5530 +1781 10133 0.5000 +1781 10273 0.4470 +1781 10376 0.7720 +1781 10381 0.7590 +1781 10382 0.7790 +1781 10383 0.7880 +1781 10466 0.5200 +1781 10540 0.9960 +1781 10664 0.4810 +1781 10671 0.9480 +1781 10726 0.6330 +1781 10728 0.4280 +1781 10982 0.4930 +1781 11070 0.4990 +1781 11258 0.9810 +1781 11315 0.5590 +1781 22796 0.5060 +1781 22919 0.5770 +1781 22924 0.5320 +1781 22930 0.5390 +1781 22931 0.5090 +1781 22981 0.4720 +1781 23122 0.4680 +1781 23299 0.7120 +1781 23332 0.4350 +1781 23354 0.5130 +1781 23386 0.6760 +1781 25782 0.5180 +1781 25839 0.5030 +1781 25981 0.4020 +1781 26286 0.5090 +1781 27436 0.5150 +1781 28981 0.4280 +1781 29126 0.5430 +1781 51143 0.9960 +1781 51164 0.9640 +1781 51272 0.4990 +1781 51314 0.4610 +1781 51560 0.5140 +1781 51574 0.5340 +1781 51626 0.9530 +1781 51807 0.7640 +1781 54801 0.5450 +1781 54820 0.4430 +1781 54930 0.4990 +1781 55112 0.6020 +1781 55142 0.5020 +1781 55172 0.6030 +1781 55559 0.4990 +1781 55738 0.5220 +1781 55860 0.9700 +1781 56171 0.5280 +1781 56652 0.6870 +1781 56912 0.4550 +1781 57511 0.5640 +1781 64324 0.5030 +1781 64689 0.5360 +1781 79441 0.5110 +1781 79659 0.9590 +1781 79809 0.4470 +1781 79861 0.7520 +1781 79866 0.5030 +1781 81027 0.7340 +1781 83544 0.6680 +1781 83547 0.8000 +1781 83548 0.5080 +1781 83657 0.9230 +1781 83658 0.9990 +1781 84364 0.5030 +1781 84376 0.4110 +1781 84516 0.9140 +1781 84617 0.7390 +1781 84790 0.8010 +1781 85478 0.4480 +1781 89891 0.6160 +1781 91949 0.5040 +1781 92558 0.9210 +1781 93323 0.4990 +1781 93661 0.5500 +1781 112714 0.7450 +1781 113457 0.7530 +1781 115106 0.5230 +1781 115948 0.4050 +1781 116143 0.4680 +1781 117177 0.5070 +1781 140735 0.9950 +1781 146754 0.4640 +1781 160762 0.5240 +1781 164781 0.4470 +1781 196385 0.4010 +1781 200132 0.7270 +1781 200894 0.5740 +1781 201625 0.4320 +1781 203068 0.7470 +1781 255758 0.7820 +1781 338382 0.8000 +1781 343521 0.7110 +1781 347688 0.7460 +1781 347733 0.7350 +1781 352909 0.4540 +1781 728642 0.5030 +1783 2288 0.5120 +1783 2589 0.5080 +1783 2590 0.5100 +1783 2801 0.5650 +1783 2804 0.5440 +1783 2908 0.4040 +1783 3297 0.5010 +1783 3320 0.5180 +1783 3326 0.4060 +1783 4085 0.5040 +1783 4306 0.4030 +1783 5048 0.8360 +1783 5116 0.8140 +1783 5241 0.4030 +1783 5347 0.5400 +1783 5870 0.6210 +1783 6233 0.5000 +1783 6249 0.4950 +1783 6811 0.5040 +1783 6990 0.9540 +1783 6991 0.6810 +1783 6993 0.9760 +1783 7175 0.5760 +1783 7277 0.7090 +1783 7280 0.6590 +1783 7311 0.5010 +1783 7314 0.4990 +1783 7316 0.5040 +1783 7415 0.5950 +1783 7846 0.6720 +1783 7879 0.8710 +1783 8100 0.5750 +1783 8655 0.9890 +1783 8723 0.5660 +1783 8729 0.5090 +1783 9133 0.4310 +1783 9184 0.5220 +1783 9382 0.5170 +1783 9527 0.5940 +1783 9570 0.5130 +1783 9700 0.5290 +1783 9727 0.4890 +1783 10013 0.5190 +1783 10121 0.9700 +1783 10376 0.6740 +1783 10381 0.6590 +1783 10382 0.6770 +1783 10383 0.7210 +1783 10466 0.5000 +1783 10540 0.9760 +1783 10671 0.9740 +1783 10726 0.5900 +1783 10728 0.4050 +1783 11070 0.5040 +1783 11258 0.9290 +1783 11315 0.5090 +1783 22796 0.5090 +1783 22906 0.5770 +1783 22930 0.6490 +1783 22931 0.5510 +1783 22981 0.5350 +1783 23299 0.7870 +1783 23386 0.6860 +1783 25782 0.5790 +1783 25839 0.5090 +1783 25963 0.4460 +1783 25966 0.5280 +1783 26286 0.5040 +1783 27183 0.8270 +1783 27436 0.5040 +1783 29088 0.4240 +1783 29102 0.5970 +1783 51009 0.4890 +1783 51143 0.9950 +1783 51164 0.9350 +1783 51272 0.4990 +1783 51361 0.4070 +1783 51560 0.5210 +1783 51626 0.9670 +1783 51759 0.4410 +1783 51807 0.6790 +1783 55112 0.7190 +1783 55605 0.4440 +1783 55656 0.4340 +1783 55738 0.5610 +1783 55860 0.9170 +1783 57480 0.4380 +1783 57511 0.5210 +1783 64689 0.6800 +1783 79659 0.9480 +1783 79861 0.6850 +1783 81027 0.6590 +1783 83547 0.8680 +1783 83548 0.6420 +1783 83657 0.8160 +1783 83658 0.9930 +1783 84364 0.5070 +1783 84376 0.5190 +1783 84516 0.9160 +1783 84617 0.6590 +1783 84766 0.4410 +1783 84790 0.6790 +1783 89891 0.7060 +1783 91949 0.5660 +1783 92558 0.9420 +1783 93661 0.5380 +1783 112714 0.6840 +1783 113457 0.6820 +1783 140735 0.9730 +1783 146223 0.4890 +1783 158158 0.5480 +1783 200132 0.7510 +1783 200894 0.5080 +1783 203068 0.6590 +1783 255758 0.7290 +1783 283229 0.4410 +1783 283847 0.4830 +1783 338382 0.8020 +1783 338657 0.5090 +1783 343521 0.7620 +1783 347688 0.6610 +1783 347733 0.6590 +1783 401258 0.4410 +1785 1956 0.5570 +1785 1958 0.5360 +1785 1959 0.6160 +1785 1960 0.5050 +1785 2017 0.9930 +1785 2059 0.4750 +1785 2060 0.8670 +1785 2064 0.4220 +1785 2353 0.5760 +1785 2354 0.5460 +1785 2534 0.5560 +1785 2580 0.8790 +1785 2647 0.5290 +1785 2697 0.7400 +1785 2705 0.4150 +1785 2799 0.5080 +1785 2801 0.4380 +1785 2885 0.9370 +1785 3055 0.4170 +1785 3059 0.9980 +1785 3064 0.4670 +1785 3113 0.4990 +1785 3115 0.5060 +1785 3117 0.4990 +1785 3118 0.4990 +1785 3119 0.5060 +1785 3120 0.5060 +1785 3122 0.5310 +1785 3123 0.5060 +1785 3127 0.5060 +1785 3312 0.7130 +1785 3320 0.5250 +1785 3326 0.5110 +1785 3636 0.5650 +1785 3726 0.5110 +1785 3727 0.5040 +1785 3791 0.4020 +1785 3799 0.4120 +1785 3897 0.4790 +1785 3916 0.4800 +1785 3927 0.4660 +1785 4074 0.5810 +1785 4209 0.5210 +1785 4296 0.4100 +1785 4534 0.9250 +1785 4618 0.4550 +1785 4624 0.4050 +1785 4625 0.4900 +1785 4643 0.4420 +1785 4646 0.5860 +1785 4690 0.4380 +1785 4747 0.4400 +1785 4803 0.4580 +1785 4830 0.7250 +1785 4831 0.5420 +1785 4846 0.8280 +1785 4914 0.5240 +1785 5071 0.4490 +1785 5156 0.6680 +1785 5195 0.4040 +1785 5216 0.6280 +1785 5245 0.4280 +1785 5289 0.4370 +1785 5341 0.8010 +1785 5420 0.5760 +1785 5587 0.4550 +1785 5747 0.6650 +1785 5781 0.4510 +1785 5829 0.4160 +1785 5867 0.4370 +1785 5868 0.6760 +1785 5877 0.4150 +1785 5878 0.4220 +1785 6261 0.7410 +1785 6305 0.4160 +1785 6385 0.5110 +1785 6453 0.9470 +1785 6455 0.7490 +1785 6456 0.9730 +1785 6457 0.9620 +1785 6464 0.4610 +1785 6624 0.5950 +1785 6642 0.4220 +1785 6709 0.4530 +1785 6714 0.9090 +1785 6722 0.5600 +1785 6844 0.6820 +1785 6845 0.6530 +1785 7037 0.4720 +1785 7074 0.4060 +1785 7082 0.5180 +1785 7094 0.4670 +1785 7099 0.5000 +1785 7251 0.4440 +1785 7409 0.5650 +1785 7414 0.4370 +1785 7415 0.4520 +1785 7454 0.7430 +1785 7456 0.6450 +1785 7879 0.6230 +1785 8061 0.5480 +1785 8218 0.9070 +1785 8291 0.4580 +1785 8301 0.5100 +1785 8409 0.5090 +1785 8411 0.6020 +1785 8565 0.7520 +1785 8673 0.6640 +1785 8674 0.4120 +1785 8677 0.4600 +1785 8731 0.6280 +1785 8766 0.6150 +1785 8799 0.5770 +1785 8800 0.6330 +1785 8867 0.5440 +1785 8871 0.5740 +1785 8898 0.5620 +1785 8905 0.5530 +1785 8907 0.6630 +1785 8976 0.9790 +1785 9026 0.4660 +1785 9051 0.6200 +1785 9076 0.5350 +1785 9146 0.4590 +1785 9218 0.4630 +1785 9322 0.7310 +1785 9342 0.4150 +1785 9516 0.4210 +1785 9557 0.4890 +1785 9601 0.4230 +1785 9644 0.5700 +1785 9829 0.7450 +1785 9892 0.5110 +1785 9896 0.4380 +1785 9927 0.8350 +1785 10045 0.4680 +1785 10053 0.5590 +1785 10097 0.5260 +1785 10163 0.4790 +1785 10211 0.4540 +1785 10362 0.4400 +1785 10730 0.4520 +1785 10938 0.4350 +1785 11252 0.8850 +1785 22905 0.6670 +1785 22941 0.5520 +1785 23048 0.7720 +1785 23149 0.4950 +1785 23237 0.9780 +1785 23268 0.4240 +1785 23607 0.4630 +1785 23643 0.4270 +1785 23677 0.5520 +1785 24146 0.4340 +1785 26052 0.9840 +1785 26088 0.4900 +1785 26100 0.4070 +1785 26499 0.7990 +1785 27161 0.4110 +1785 28988 0.5970 +1785 29763 0.6690 +1785 29924 0.6530 +1785 29993 0.5220 +1785 30011 0.8220 +1785 30845 0.6340 +1785 30846 0.6480 +1785 50618 0.8660 +1785 50944 0.4080 +1785 51024 0.8630 +1785 51070 0.5480 +1785 51100 0.4130 +1785 51208 0.4760 +1785 51429 0.9370 +1785 54332 0.6270 +1785 54471 0.6240 +1785 54806 0.7200 +1785 54874 0.5310 +1785 55040 0.5090 +1785 55294 0.4410 +1785 55669 0.6950 +1785 55737 0.4050 +1785 55909 0.5380 +1785 56947 0.6200 +1785 57158 0.4450 +1785 57190 0.4230 +1785 58513 0.4700 +1785 64419 0.9060 +1785 64423 0.5460 +1785 65018 0.5140 +1785 79628 0.5180 +1785 79968 0.5250 +1785 81567 0.5220 +1785 81846 0.5160 +1785 84309 0.4470 +1785 89848 0.4840 +1785 90678 0.4160 +1785 112574 0.9170 +1785 115677 0.8050 +1785 120892 0.4180 +1785 121512 0.4540 +1785 124093 0.4640 +1785 125170 0.6300 +1785 130340 0.5250 +1785 130574 0.6660 +1785 257364 0.5880 +1785 285590 0.4930 +1785 345456 0.6090 +1785 375189 0.6260 +1785 653361 0.4900 +1785 100506658 0.5460 +1786 1787 0.6020 +1786 1788 0.9990 +1786 1789 0.9990 +1786 1869 0.9640 +1786 1874 0.8600 +1786 1875 0.4950 +1786 1876 0.6750 +1786 1950 0.4150 +1786 1956 0.5140 +1786 1958 0.6310 +1786 2033 0.6250 +1786 2064 0.4470 +1786 2099 0.6250 +1786 2100 0.6420 +1786 2113 0.5670 +1786 2145 0.5360 +1786 2146 0.9990 +1786 2203 0.4730 +1786 2237 0.4930 +1786 2305 0.4320 +1786 2309 0.4180 +1786 2353 0.4470 +1786 2354 0.5780 +1786 2475 0.4730 +1786 2521 0.5610 +1786 2571 0.5540 +1786 2597 0.6580 +1786 2626 0.4010 +1786 2648 0.4910 +1786 2908 0.6220 +1786 2932 0.5210 +1786 2950 0.5420 +1786 2956 0.7810 +1786 2962 0.4340 +1786 2969 0.4010 +1786 3005 0.6450 +1786 3006 0.5050 +1786 3007 0.5000 +1786 3012 0.5690 +1786 3013 0.5350 +1786 3014 0.8820 +1786 3015 0.7230 +1786 3017 0.6180 +1786 3018 0.7150 +1786 3021 0.9870 +1786 3065 0.9990 +1786 3066 0.9990 +1786 3070 0.7030 +1786 3090 0.7610 +1786 3091 0.5310 +1786 3141 0.5050 +1786 3169 0.5000 +1786 3172 0.5300 +1786 3176 0.7460 +1786 3184 0.9680 +1786 3190 0.5970 +1786 3205 0.4080 +1786 3276 0.4780 +1786 3308 0.5160 +1786 3309 0.4510 +1786 3320 0.6440 +1786 3326 0.6460 +1786 3417 0.5140 +1786 3418 0.4900 +1786 3440 0.4050 +1786 3456 0.4550 +1786 3458 0.4350 +1786 3480 0.4350 +1786 3481 0.5770 +1786 3482 0.4520 +1786 3553 0.4320 +1786 3569 0.5280 +1786 3586 0.4120 +1786 3621 0.4640 +1786 3630 0.4830 +1786 3717 0.4800 +1786 3720 0.7000 +1786 3725 0.5070 +1786 3784 0.4350 +1786 3845 0.5170 +1786 3927 0.4050 +1786 3930 0.4800 +1786 3978 0.6940 +1786 4088 0.6320 +1786 4143 0.9290 +1786 4144 0.9360 +1786 4171 0.4100 +1786 4172 0.7000 +1786 4173 0.4560 +1786 4174 0.4960 +1786 4175 0.5300 +1786 4176 0.6500 +1786 4193 0.6600 +1786 4204 0.9980 +1786 4211 0.4100 +1786 4255 0.5870 +1786 4292 0.6070 +1786 4318 0.4390 +1786 4436 0.7180 +1786 4524 0.5090 +1786 4528 0.4330 +1786 4535 0.4620 +1786 4548 0.4990 +1786 4605 0.4120 +1786 4609 0.8370 +1786 4613 0.5260 +1786 4616 0.4320 +1786 4790 0.5100 +1786 4792 0.4680 +1786 4839 0.4020 +1786 4851 0.4080 +1786 4968 0.4270 +1786 5080 0.7700 +1786 5087 0.4970 +1786 5096 0.5560 +1786 5111 0.9910 +1786 5252 0.6900 +1786 5424 0.5340 +1786 5460 0.6490 +1786 5468 0.4460 +1786 5500 0.5750 +1786 5591 0.4040 +1786 5595 0.4380 +1786 5649 0.6870 +1786 5728 0.6020 +1786 5777 0.5060 +1786 5885 0.4030 +1786 5888 0.4450 +1786 5914 0.7640 +1786 5915 0.5070 +1786 5925 0.7650 +1786 5927 0.4300 +1786 5928 0.8580 +1786 5931 0.7810 +1786 5934 0.8230 +1786 5966 0.5090 +1786 5970 0.6020 +1786 5971 0.4310 +1786 5984 0.4890 +1786 5989 0.7540 +1786 6045 0.6300 +1786 6046 0.5260 +1786 6047 0.4020 +1786 6205 0.5110 +1786 6233 0.9440 +1786 6419 0.4080 +1786 6422 0.4610 +1786 6594 0.4320 +1786 6595 0.6720 +1786 6597 0.7590 +1786 6613 0.4650 +1786 6615 0.9950 +1786 6638 0.4750 +1786 6648 0.5400 +1786 6657 0.6020 +1786 6667 0.7730 +1786 6670 0.4790 +1786 6714 0.4430 +1786 6772 0.5450 +1786 6774 0.9570 +1786 6790 0.4330 +1786 6792 0.7380 +1786 6839 0.9980 +1786 6901 0.4330 +1786 6929 0.7240 +1786 6996 0.7940 +1786 7004 0.4320 +1786 7015 0.5300 +1786 7040 0.4470 +1786 7077 0.4120 +1786 7078 0.4300 +1786 7124 0.4740 +1786 7153 0.4470 +1786 7157 0.9970 +1786 7182 0.8190 +1786 7270 0.5740 +1786 7298 0.4810 +1786 7311 0.9340 +1786 7314 0.9560 +1786 7316 0.9230 +1786 7329 0.5330 +1786 7337 0.4800 +1786 7341 0.7250 +1786 7345 0.4270 +1786 7403 0.8290 +1786 7431 0.5230 +1786 7468 0.4450 +1786 7490 0.7220 +1786 7515 0.4850 +1786 7528 0.6800 +1786 7818 0.5200 +1786 7837 0.4890 +1786 7874 0.9990 +1786 8019 0.4750 +1786 8091 0.6490 +1786 8242 0.4120 +1786 8243 0.4960 +1786 8289 0.4030 +1786 8290 0.9870 +1786 8331 0.5350 +1786 8334 0.5380 +1786 8337 0.8030 +1786 8338 0.8540 +1786 8340 0.6150 +1786 8341 0.6170 +1786 8342 0.6210 +1786 8345 0.6650 +1786 8347 0.6180 +1786 8348 0.6180 +1786 8349 0.7970 +1786 8350 0.9610 +1786 8351 0.9180 +1786 8352 0.9290 +1786 8353 0.9290 +1786 8354 0.9150 +1786 8355 0.9150 +1786 8356 0.9980 +1786 8357 0.9170 +1786 8358 0.9200 +1786 8361 0.8730 +1786 8369 0.6330 +1786 8437 0.6270 +1786 8450 0.6640 +1786 8451 0.5210 +1786 8467 0.8860 +1786 8520 0.4430 +1786 8726 0.9210 +1786 8788 0.4180 +1786 8819 0.7060 +1786 8833 0.5260 +1786 8841 0.5990 +1786 8846 0.4170 +1786 8850 0.6280 +1786 8900 0.4040 +1786 8930 0.9250 +1786 8932 0.9830 +1786 8968 0.9150 +1786 8970 0.6130 +1786 9031 0.4590 +1786 9112 0.7850 +1786 9203 0.4220 +1786 9212 0.6190 +1786 9219 0.7430 +1786 9271 0.6870 +1786 9294 0.4580 +1786 9314 0.5720 +1786 9363 0.4280 +1786 9425 0.4210 +1786 9611 0.8990 +1786 9612 0.4180 +1786 9628 0.6380 +1786 9669 0.4520 +1786 9682 0.4710 +1786 9734 0.5690 +1786 9735 0.4460 +1786 9738 0.4640 +1786 9739 0.4970 +1786 9759 0.7590 +1786 9768 0.4860 +1786 9869 0.9620 +1786 9918 0.4010 +1786 10009 0.5150 +1786 10013 0.5870 +1786 10014 0.5160 +1786 10051 0.4150 +1786 10127 0.5890 +1786 10155 0.9850 +1786 10215 0.4930 +1786 10284 0.6940 +1786 10365 0.4190 +1786 10419 0.6050 +1786 10426 0.4430 +1786 10498 0.4050 +1786 10524 0.8440 +1786 10664 0.7780 +1786 10714 0.4770 +1786 10765 0.4960 +1786 10768 0.9230 +1786 10919 0.9980 +1786 10951 0.9230 +1786 11091 0.5090 +1786 11176 0.8700 +1786 11177 0.5200 +1786 11186 0.6690 +1786 11197 0.4180 +1786 11222 0.4330 +1786 11315 0.4570 +1786 11322 0.6300 +1786 11335 0.8920 +1786 22823 0.5940 +1786 23028 0.9980 +1786 23030 0.6290 +1786 23135 0.6230 +1786 23186 0.7880 +1786 23309 0.6000 +1786 23382 0.9190 +1786 23405 0.5700 +1786 23411 0.9220 +1786 23466 0.4130 +1786 23468 0.9280 +1786 23476 0.7910 +1786 23492 0.6130 +1786 23512 0.9110 +1786 23583 0.4510 +1786 25942 0.9180 +1786 26147 0.6080 +1786 27161 0.6420 +1786 27232 0.4880 +1786 27339 0.5010 +1786 27430 0.9400 +1786 29072 0.5460 +1786 29102 0.6880 +1786 29103 0.4170 +1786 29104 0.4330 +1786 29115 0.5170 +1786 29117 0.4130 +1786 29126 0.6370 +1786 29128 0.9990 +1786 29947 0.9210 +1786 30827 0.6530 +1786 50943 0.6930 +1786 51082 0.4020 +1786 51103 0.4660 +1786 51105 0.4560 +1786 51111 0.8190 +1786 51341 0.4150 +1786 51548 0.4170 +1786 51564 0.6860 +1786 51742 0.5540 +1786 53335 0.8990 +1786 53615 0.5800 +1786 54145 0.6140 +1786 54432 0.4120 +1786 54496 0.5190 +1786 54715 0.4240 +1786 54790 0.8740 +1786 54888 0.4230 +1786 55170 0.5860 +1786 55294 0.4490 +1786 55553 0.5960 +1786 55729 0.4330 +1786 55766 0.5350 +1786 55790 0.4570 +1786 55814 0.4270 +1786 55818 0.4530 +1786 55869 0.5370 +1786 55870 0.4080 +1786 55929 0.9980 +1786 56339 0.5820 +1786 56950 0.5690 +1786 57045 0.4750 +1786 57343 0.7990 +1786 57379 0.4550 +1786 57659 0.4270 +1786 57661 0.8400 +1786 59272 0.4020 +1786 63899 0.6260 +1786 63978 0.4730 +1786 64087 0.5470 +1786 64324 0.4310 +1786 64426 0.5290 +1786 64745 0.4540 +1786 64754 0.4340 +1786 64969 0.5030 +1786 79595 0.5290 +1786 79685 0.4990 +1786 79697 0.5290 +1786 79723 0.7700 +1786 79727 0.4380 +1786 79730 0.6070 +1786 79813 0.8810 +1786 79885 0.5260 +1786 79923 0.6070 +1786 79980 0.4680 +1786 80312 0.9020 +1786 80319 0.4530 +1786 80854 0.9360 +1786 81545 0.4910 +1786 83933 0.4260 +1786 84106 0.6900 +1786 84260 0.4270 +1786 84444 0.5610 +1786 84456 0.6270 +1786 84787 0.8130 +1786 85236 0.6170 +1786 85378 0.4460 +1786 94239 0.5580 +1786 114791 0.4320 +1786 115426 0.9410 +1786 120892 0.4300 +1786 121536 0.6130 +1786 126295 0.5390 +1786 126961 0.9180 +1786 128312 0.6130 +1786 133482 0.5110 +1786 137902 0.4860 +1786 140690 0.4970 +1786 143689 0.6870 +1786 171023 0.4120 +1786 192670 0.4390 +1786 200424 0.8810 +1786 221656 0.5060 +1786 253461 0.4040 +1786 255626 0.6280 +1786 333932 0.9150 +1786 346171 0.6960 +1786 359787 0.4760 +1786 387893 0.4760 +1786 440093 0.9750 +1786 440686 0.9970 +1786 474382 0.5670 +1786 653604 0.9980 +1786 100532731 0.7830 +1787 1788 0.9260 +1787 1789 0.9330 +1787 2071 0.4620 +1787 2091 0.4210 +1787 2146 0.5500 +1787 2618 0.4060 +1787 2623 0.4360 +1787 2956 0.5820 +1787 3021 0.4150 +1787 3065 0.4290 +1787 3190 0.8300 +1787 4143 0.5180 +1787 4144 0.5630 +1787 4204 0.5150 +1787 4234 0.6200 +1787 4292 0.5450 +1787 4436 0.5800 +1787 4609 0.5410 +1787 4839 0.8430 +1787 4869 0.4400 +1787 4904 0.5250 +1787 4907 0.6020 +1787 5395 0.5290 +1787 5500 0.4290 +1787 6688 0.4540 +1787 6742 0.4790 +1787 6839 0.4040 +1787 6996 0.5790 +1787 7153 0.5210 +1787 8290 0.4160 +1787 8356 0.4160 +1787 8731 0.4630 +1787 8846 0.5110 +1787 8930 0.8060 +1787 8932 0.4690 +1787 9271 0.4190 +1787 9397 0.4050 +1787 9589 0.4590 +1787 10189 0.6940 +1787 10785 0.5570 +1787 10919 0.4140 +1787 23405 0.5760 +1787 24140 0.6500 +1787 29081 0.4750 +1787 29102 0.4190 +1787 29128 0.4570 +1787 29947 0.9070 +1787 51605 0.4740 +1787 54517 0.6200 +1787 54790 0.5460 +1787 54888 0.8830 +1787 54890 0.4740 +1787 54915 0.4080 +1787 54931 0.4820 +1787 55006 0.5200 +1787 55039 0.4300 +1787 55695 0.8200 +1787 56339 0.6040 +1787 57721 0.6210 +1787 63899 0.8940 +1787 64848 0.4190 +1787 79068 0.4370 +1787 79691 0.6440 +1787 79730 0.8200 +1787 79828 0.5150 +1787 80312 0.5470 +1787 80324 0.4390 +1787 81890 0.6780 +1787 83480 0.4070 +1787 83941 0.4050 +1787 84893 0.4270 +1787 91746 0.4430 +1787 91801 0.4550 +1787 93587 0.5650 +1787 113179 0.4110 +1787 113802 0.4380 +1787 115708 0.5200 +1787 117246 0.4480 +1787 131965 0.5150 +1787 143689 0.4250 +1787 158234 0.4290 +1787 200424 0.5200 +1787 221078 0.8430 +1787 221120 0.4390 +1787 387338 0.8100 +1787 440093 0.4180 +1787 440686 0.4170 +1787 653604 0.4170 +1788 1789 0.9980 +1788 1869 0.4070 +1788 1911 0.5160 +1788 1912 0.4280 +1788 1956 0.4360 +1788 2033 0.5830 +1788 2064 0.5970 +1788 2099 0.5100 +1788 2120 0.6270 +1788 2146 0.9990 +1788 2237 0.5450 +1788 2322 0.8510 +1788 2353 0.6120 +1788 2597 0.5740 +1788 2623 0.6430 +1788 2624 0.7310 +1788 2625 0.4010 +1788 2649 0.7650 +1788 2778 0.4790 +1788 2810 0.5450 +1788 2908 0.4570 +1788 2950 0.4460 +1788 3005 0.4080 +1788 3012 0.5330 +1788 3013 0.5070 +1788 3014 0.7220 +1788 3015 0.7840 +1788 3017 0.5730 +1788 3018 0.5670 +1788 3020 0.9310 +1788 3021 0.9990 +1788 3065 0.9970 +1788 3066 0.9700 +1788 3070 0.8080 +1788 3090 0.5110 +1788 3176 0.6640 +1788 3205 0.4510 +1788 3265 0.4320 +1788 3276 0.4190 +1788 3399 0.4140 +1788 3417 0.7970 +1788 3418 0.7930 +1788 3481 0.5800 +1788 3482 0.4440 +1788 3558 0.4880 +1788 3569 0.4350 +1788 3605 0.4240 +1788 3716 0.4020 +1788 3717 0.6950 +1788 3718 0.4390 +1788 3720 0.7150 +1788 3797 0.4190 +1788 3815 0.6340 +1788 3845 0.6640 +1788 4085 0.5880 +1788 4143 0.9240 +1788 4144 0.9310 +1788 4152 0.6100 +1788 4193 0.4070 +1788 4204 0.9490 +1788 4209 0.4760 +1788 4211 0.4310 +1788 4223 0.5230 +1788 4255 0.4800 +1788 4292 0.4960 +1788 4297 0.7460 +1788 4300 0.5320 +1788 4524 0.4100 +1788 4609 0.9910 +1788 4613 0.5380 +1788 4616 0.4140 +1788 4629 0.4650 +1788 4763 0.5300 +1788 4790 0.4210 +1788 4821 0.8650 +1788 4825 0.6440 +1788 4839 0.5640 +1788 4851 0.5420 +1788 4869 0.7940 +1788 4893 0.7320 +1788 4919 0.4210 +1788 4928 0.4160 +1788 5048 0.4020 +1788 5080 0.5440 +1788 5087 0.5260 +1788 5252 0.5770 +1788 5277 0.4640 +1788 5460 0.6290 +1788 5500 0.6520 +1788 5583 0.4110 +1788 5649 0.6090 +1788 5688 0.4980 +1788 5728 0.5920 +1788 5781 0.5850 +1788 5885 0.5510 +1788 5914 0.7150 +1788 5925 0.6510 +1788 5928 0.6540 +1788 5931 0.6330 +1788 6015 0.5680 +1788 6045 0.5920 +1788 6046 0.5800 +1788 6427 0.7760 +1788 6595 0.6970 +1788 6597 0.9570 +1788 6598 0.6460 +1788 6599 0.6090 +1788 6601 0.5760 +1788 6602 0.6070 +1788 6603 0.5680 +1788 6604 0.6000 +1788 6605 0.6000 +1788 6615 0.8050 +1788 6638 0.4810 +1788 6657 0.5330 +1788 6667 0.4130 +1788 6688 0.9390 +1788 6714 0.5580 +1788 6772 0.5710 +1788 6774 0.6680 +1788 6776 0.4040 +1788 6777 0.4370 +1788 6790 0.5310 +1788 6795 0.4830 +1788 6839 0.9960 +1788 6996 0.9330 +1788 7015 0.4750 +1788 7025 0.4490 +1788 7090 0.9140 +1788 7157 0.8350 +1788 7307 0.7760 +1788 7329 0.6350 +1788 7341 0.5300 +1788 7403 0.6120 +1788 7468 0.4380 +1788 7490 0.6760 +1788 7528 0.4370 +1788 7703 0.4930 +1788 7709 0.7380 +1788 7764 0.5510 +1788 7837 0.4120 +1788 7874 0.4560 +1788 7994 0.4290 +1788 8085 0.5420 +1788 8115 0.9520 +1788 8233 0.7200 +1788 8242 0.4110 +1788 8243 0.5520 +1788 8289 0.7200 +1788 8290 0.9980 +1788 8331 0.5070 +1788 8334 0.5060 +1788 8337 0.7760 +1788 8338 0.7750 +1788 8340 0.5650 +1788 8341 0.5680 +1788 8342 0.5630 +1788 8345 0.5770 +1788 8347 0.5890 +1788 8348 0.5720 +1788 8349 0.7470 +1788 8350 0.9640 +1788 8351 0.9120 +1788 8352 0.9220 +1788 8353 0.9230 +1788 8354 0.9100 +1788 8355 0.9100 +1788 8356 0.9990 +1788 8357 0.9090 +1788 8358 0.9140 +1788 8361 0.9740 +1788 8369 0.7500 +1788 8431 0.4020 +1788 8450 0.4120 +1788 8451 0.4480 +1788 8467 0.4020 +1788 8493 0.5210 +1788 8535 0.6750 +1788 8544 0.4830 +1788 8554 0.5840 +1788 8726 0.8040 +1788 8788 0.4410 +1788 8930 0.9010 +1788 8932 0.9200 +1788 8968 0.9090 +1788 8970 0.5650 +1788 9055 0.4540 +1788 9063 0.4020 +1788 9126 0.5350 +1788 9184 0.4650 +1788 9212 0.5260 +1788 9271 0.4800 +1788 9314 0.4940 +1788 9555 0.4030 +1788 9611 0.6410 +1788 9623 0.6260 +1788 9682 0.4510 +1788 9734 0.5100 +1788 9739 0.4390 +1788 9759 0.5410 +1788 9793 0.7340 +1788 9869 0.9960 +1788 9939 0.4620 +1788 10009 0.4480 +1788 10013 0.4350 +1788 10014 0.4530 +1788 10019 0.5440 +1788 10155 0.9420 +1788 10273 0.6290 +1788 10320 0.5150 +1788 10381 0.4250 +1788 10419 0.9240 +1788 10472 0.8630 +1788 10664 0.6040 +1788 10735 0.6440 +1788 10765 0.4310 +1788 10768 0.9150 +1788 10919 0.9930 +1788 10951 0.8980 +1788 10979 0.6930 +1788 11091 0.6140 +1788 11186 0.5810 +1788 11331 0.7840 +1788 11335 0.5280 +1788 22823 0.5720 +1788 22955 0.4260 +1788 23028 0.7510 +1788 23135 0.5280 +1788 23186 0.6150 +1788 23382 0.9130 +1788 23405 0.4850 +1788 23411 0.5150 +1788 23468 0.8750 +1788 23476 0.6630 +1788 23512 0.7980 +1788 23621 0.4870 +1788 25942 0.6620 +1788 26040 0.6730 +1788 26147 0.5920 +1788 26523 0.8460 +1788 27136 0.4520 +1788 27164 0.4780 +1788 27430 0.9320 +1788 29072 0.5990 +1788 29128 0.9670 +1788 29947 0.9990 +1788 51111 0.9150 +1788 51412 0.6170 +1788 51564 0.4310 +1788 54069 0.8160 +1788 54145 0.5660 +1788 54737 0.9930 +1788 54790 0.9460 +1788 55193 0.6390 +1788 55252 0.7350 +1788 55294 0.4100 +1788 55352 0.5700 +1788 55729 0.4840 +1788 55766 0.5090 +1788 55818 0.4300 +1788 55869 0.4190 +1788 56144 0.6030 +1788 56925 0.4130 +1788 57167 0.5900 +1788 57332 0.4800 +1788 57492 0.6800 +1788 57509 0.4530 +1788 57721 0.4570 +1788 58508 0.5630 +1788 63035 0.6090 +1788 63978 0.5850 +1788 64324 0.5870 +1788 79084 0.6240 +1788 79723 0.4590 +1788 79813 0.6020 +1788 79870 0.4020 +1788 79885 0.4320 +1788 79923 0.6190 +1788 80012 0.4190 +1788 80312 0.8860 +1788 80381 0.4830 +1788 80854 0.4520 +1788 84106 0.7300 +1788 84295 0.6750 +1788 84444 0.7100 +1788 84504 0.6400 +1788 84678 0.4390 +1788 84733 0.5330 +1788 84787 0.6770 +1788 85236 0.5730 +1788 90853 0.5060 +1788 94239 0.5500 +1788 115426 0.7690 +1788 121536 0.5930 +1788 122402 0.5120 +1788 123169 0.4250 +1788 126961 0.9100 +1788 128312 0.5650 +1788 133482 0.4830 +1788 137902 0.4060 +1788 140690 0.4210 +1788 143689 0.6760 +1788 153090 0.4040 +1788 171023 0.9390 +1788 192670 0.8750 +1788 196528 0.6730 +1788 200424 0.8020 +1788 221656 0.4460 +1788 255626 0.5890 +1788 256364 0.4190 +1788 333932 0.9100 +1788 346171 0.6360 +1788 359787 0.4740 +1788 440093 0.9980 +1788 440686 0.9980 +1788 474382 0.5190 +1788 493861 0.4570 +1788 653604 0.9990 +1788 100532731 0.4320 +1789 1812 0.4740 +1789 1869 0.4640 +1789 1876 0.7540 +1789 1958 0.7090 +1789 1994 0.5390 +1789 2033 0.4960 +1789 2099 0.7830 +1789 2100 0.5670 +1789 2103 0.4380 +1789 2145 0.6140 +1789 2146 0.9990 +1789 2305 0.5550 +1789 2353 0.5740 +1789 2354 0.5140 +1789 2597 0.5640 +1789 2626 0.4170 +1789 2627 0.4180 +1789 2648 0.4430 +1789 2649 0.7210 +1789 2950 0.4550 +1789 2956 0.4780 +1789 3005 0.6080 +1789 3007 0.5040 +1789 3012 0.6630 +1789 3013 0.6310 +1789 3014 0.8830 +1789 3015 0.7060 +1789 3017 0.8210 +1789 3018 0.6830 +1789 3021 0.9710 +1789 3065 0.9990 +1789 3066 0.9940 +1789 3070 0.9450 +1789 3090 0.5310 +1789 3176 0.4460 +1789 3183 0.4420 +1789 3213 0.5050 +1789 3276 0.4910 +1789 3399 0.4390 +1789 3417 0.4660 +1789 3418 0.4160 +1789 3481 0.5850 +1789 3569 0.4050 +1789 3630 0.4440 +1789 3695 0.4740 +1789 3720 0.6970 +1789 3725 0.5820 +1789 4097 0.9520 +1789 4143 0.9310 +1789 4144 0.9340 +1789 4152 0.4230 +1789 4204 0.8640 +1789 4208 0.4630 +1789 4232 0.4030 +1789 4255 0.5070 +1789 4292 0.5100 +1789 4436 0.4320 +1789 4524 0.4750 +1789 4609 0.8420 +1789 4629 0.5530 +1789 4738 0.6190 +1789 5015 0.4140 +1789 5080 0.5890 +1789 5252 0.5660 +1789 5460 0.8300 +1789 5500 0.6040 +1789 5583 0.5140 +1789 5649 0.5610 +1789 5728 0.4820 +1789 5915 0.4290 +1789 5928 0.7440 +1789 5931 0.7380 +1789 5970 0.4040 +1789 6422 0.4050 +1789 6595 0.4210 +1789 6597 0.5010 +1789 6615 0.6430 +1789 6638 0.4320 +1789 6657 0.7660 +1789 6688 0.6850 +1789 6774 0.6890 +1789 6790 0.4300 +1789 6827 0.4350 +1789 6839 0.9900 +1789 6926 0.4050 +1789 6929 0.5240 +1789 6996 0.9050 +1789 6997 0.5740 +1789 7015 0.4780 +1789 7157 0.5910 +1789 7270 0.6310 +1789 7291 0.6520 +1789 7329 0.6220 +1789 7341 0.6670 +1789 7403 0.6580 +1789 7468 0.5080 +1789 7494 0.4430 +1789 7716 0.5470 +1789 7799 0.5560 +1789 7852 0.5500 +1789 8115 0.7100 +1789 8290 0.9940 +1789 8331 0.6310 +1789 8334 0.6310 +1789 8337 0.8230 +1789 8338 0.8240 +1789 8340 0.6900 +1789 8341 0.7130 +1789 8342 0.6320 +1789 8345 0.8200 +1789 8347 0.7150 +1789 8348 0.9840 +1789 8349 0.9910 +1789 8350 0.9280 +1789 8351 0.9050 +1789 8352 0.9150 +1789 8353 0.9150 +1789 8354 0.9030 +1789 8355 0.9030 +1789 8356 0.9970 +1789 8357 0.9040 +1789 8358 0.9050 +1789 8361 0.7390 +1789 8369 0.4960 +1789 8433 0.4970 +1789 8467 0.9420 +1789 8554 0.6090 +1789 8678 0.5030 +1789 8726 0.9230 +1789 8788 0.5290 +1789 8819 0.5750 +1789 8850 0.4320 +1789 8930 0.9600 +1789 8932 0.7110 +1789 8968 0.9030 +1789 8970 0.7670 +1789 9112 0.4130 +1789 9212 0.4030 +1789 9219 0.4180 +1789 9256 0.4330 +1789 9271 0.4790 +1789 9314 0.5430 +1789 9355 0.4860 +1789 9371 0.4880 +1789 9555 0.5540 +1789 9573 0.5970 +1789 9734 0.4840 +1789 9739 0.5970 +1789 9759 0.7020 +1789 9841 0.7110 +1789 9869 0.9850 +1789 9987 0.4030 +1789 10009 0.4330 +1789 10013 0.4260 +1789 10014 0.4070 +1789 10155 0.8940 +1789 10284 0.5190 +1789 10413 0.4590 +1789 10498 0.4910 +1789 10637 0.4220 +1789 10664 0.5290 +1789 10765 0.4150 +1789 10768 0.9130 +1789 10919 0.9330 +1789 10951 0.6600 +1789 11091 0.5910 +1789 11176 0.9060 +1789 11186 0.6220 +1789 11244 0.7950 +1789 11278 0.4220 +1789 11335 0.7670 +1789 22823 0.5910 +1789 23028 0.6160 +1789 23135 0.5220 +1789 23186 0.5260 +1789 23309 0.5350 +1789 23347 0.5720 +1789 23382 0.9130 +1789 23405 0.4910 +1789 23411 0.9260 +1789 23468 0.9320 +1789 23512 0.8950 +1789 23621 0.4620 +1789 24137 0.4400 +1789 25942 0.8580 +1789 26147 0.6260 +1789 27430 0.9240 +1789 29072 0.7240 +1789 29102 0.4760 +1789 29115 0.4990 +1789 29128 0.9850 +1789 29947 0.9990 +1789 30827 0.4280 +1789 51111 0.6390 +1789 51564 0.6260 +1789 51742 0.5210 +1789 54069 0.7470 +1789 54145 0.9740 +1789 54596 0.5860 +1789 54737 0.5250 +1789 54790 0.8520 +1789 55170 0.4010 +1789 55211 0.5930 +1789 55252 0.5710 +1789 55729 0.4080 +1789 55766 0.6310 +1789 55791 0.4230 +1789 55818 0.4160 +1789 55869 0.4020 +1789 55870 0.5380 +1789 56144 0.4660 +1789 56925 0.4120 +1789 57167 0.6110 +1789 57659 0.4320 +1789 57680 0.8520 +1789 63978 0.7350 +1789 64151 0.4830 +1789 64321 0.4210 +1789 64324 0.4860 +1789 64426 0.5080 +1789 79595 0.5070 +1789 79685 0.4990 +1789 79723 0.4740 +1789 79727 0.7540 +1789 79813 0.4130 +1789 79885 0.4240 +1789 79923 0.8310 +1789 80312 0.8310 +1789 80381 0.5140 +1789 80854 0.4380 +1789 83879 0.5510 +1789 84444 0.6400 +1789 84678 0.4080 +1789 84787 0.6380 +1789 85236 0.9740 +1789 94239 0.5440 +1789 115426 0.7650 +1789 121536 0.5890 +1789 126961 0.9060 +1789 128312 0.7120 +1789 132625 0.4930 +1789 133482 0.4700 +1789 140690 0.4530 +1789 143689 0.4790 +1789 151871 0.4710 +1789 153090 0.4130 +1789 171023 0.6890 +1789 200424 0.7830 +1789 255626 0.7200 +1789 333932 0.9060 +1789 346171 0.5830 +1789 359787 0.5070 +1789 440093 0.9430 +1789 440686 0.9940 +1789 474382 0.6420 +1789 653604 0.9960 +1789 100288687 0.4600 +1789 100532731 0.4610 +1789 114483833 0.4400 +1791 1870 0.4660 +1791 1874 0.4040 +1791 1950 0.4370 +1791 1956 0.4250 +1791 2209 0.4340 +1791 2237 0.4830 +1791 2247 0.4640 +1791 2322 0.4130 +1791 2335 0.4030 +1791 2475 0.4290 +1791 2526 0.5720 +1791 2547 0.7720 +1791 2597 0.7160 +1791 2670 0.5240 +1791 2875 0.5800 +1791 2877 0.4220 +1791 2878 0.4180 +1791 2880 0.4310 +1791 2882 0.4310 +1791 2932 0.4070 +1791 3021 0.4630 +1791 3091 0.4520 +1791 3162 0.5090 +1791 3195 0.4370 +1791 3308 0.4240 +1791 3309 0.5040 +1791 3458 0.5010 +1791 3479 0.4040 +1791 3543 0.6860 +1791 3553 0.6150 +1791 3563 0.4800 +1791 3569 0.6040 +1791 3586 0.4510 +1791 3630 0.5560 +1791 3684 0.5050 +1791 3725 0.5290 +1791 3815 0.6390 +1791 3981 0.6300 +1791 4170 0.4040 +1791 4193 0.5280 +1791 4267 0.6620 +1791 4288 0.4020 +1791 4311 0.7760 +1791 4318 0.4580 +1791 4353 0.7080 +1791 4594 0.4470 +1791 4609 0.6180 +1791 4684 0.6080 +1791 4792 0.4180 +1791 4907 0.4750 +1791 5079 0.6620 +1791 5111 0.4550 +1791 5175 0.6180 +1791 5591 0.4110 +1791 5595 0.4920 +1791 5728 0.4650 +1791 5743 0.4190 +1791 5788 0.6610 +1791 5896 0.7510 +1791 6382 0.4180 +1791 6693 0.6190 +1791 6774 0.4510 +1791 6855 0.4460 +1791 7040 0.4640 +1791 7099 0.4120 +1791 7124 0.6110 +1791 7157 0.6940 +1791 7161 0.4530 +1791 7374 0.5570 +1791 7441 0.8750 +1791 7515 0.4450 +1791 7518 0.7020 +1791 7520 0.6390 +1791 7837 0.7860 +1791 8290 0.4640 +1791 8356 0.4630 +1791 8458 0.5210 +1791 8626 0.4140 +1791 8678 0.4840 +1791 9156 0.4990 +1791 9518 0.4280 +1791 10018 0.4180 +1791 10320 0.4560 +1791 10763 0.4020 +1791 10777 0.4670 +1791 11025 0.4260 +1791 11044 0.4260 +1791 11266 0.6210 +1791 27339 0.7640 +1791 27434 0.5300 +1791 29760 0.4930 +1791 30836 0.8400 +1791 51043 0.4020 +1791 53335 0.5350 +1791 54205 0.6780 +1791 64919 0.6110 +1791 79840 0.4670 +1791 81631 0.4250 +1791 116092 0.9630 +1791 120892 0.4210 +1791 137902 0.7860 +1791 146713 0.6240 +1791 171558 0.4720 +1791 257202 0.4310 +1791 374569 0.4160 +1791 440093 0.4630 +1791 440686 0.4630 +1791 493869 0.4210 +1791 653145 0.4220 +1791 653604 0.4630 +1791 100423062 0.4780 +1791 102723407 0.6090 +1793 1826 0.4830 +1793 2017 0.4160 +1793 2064 0.5690 +1793 2209 0.5290 +1793 2212 0.5220 +1793 2534 0.9110 +1793 2621 0.4130 +1793 2736 0.4100 +1793 2885 0.9030 +1793 2889 0.8300 +1793 2902 0.4500 +1793 2909 0.4720 +1793 3071 0.6280 +1793 3320 0.5240 +1793 3675 0.4050 +1793 3791 0.5860 +1793 3929 0.4510 +1793 4168 0.6270 +1793 4240 0.4720 +1793 4313 0.4070 +1793 4690 0.7960 +1793 4739 0.5800 +1793 4803 0.4730 +1793 4952 0.4070 +1793 5062 0.4740 +1793 5140 0.7310 +1793 5338 0.5830 +1793 5341 0.4910 +1793 5747 0.9790 +1793 5753 0.5140 +1793 5788 0.4090 +1793 5829 0.9770 +1793 5877 0.7970 +1793 5879 0.9750 +1793 5880 0.9930 +1793 5881 0.9380 +1793 5906 0.5200 +1793 5911 0.4950 +1793 6237 0.5460 +1793 6386 0.5220 +1793 6461 0.5220 +1793 6654 0.5970 +1793 6714 0.9840 +1793 6850 0.6170 +1793 7074 0.6060 +1793 7094 0.4460 +1793 7204 0.6220 +1793 7409 0.5370 +1793 7410 0.6190 +1793 7414 0.7240 +1793 7454 0.5630 +1793 8440 0.8490 +1793 8649 0.7200 +1793 8874 0.5870 +1793 8891 0.5510 +1793 8936 0.6170 +1793 8976 0.7730 +1793 8997 0.4480 +1793 9138 0.4120 +1793 9223 0.4460 +1793 9265 0.5940 +1793 9266 0.7530 +1793 9423 0.8080 +1793 9459 0.6280 +1793 9564 0.9990 +1793 9638 0.4450 +1793 9826 0.4310 +1793 9827 0.7200 +1793 9844 0.9990 +1793 9891 0.5270 +1793 9922 0.4050 +1793 10006 0.7230 +1793 10124 0.6240 +1793 10152 0.7120 +1793 10163 0.7630 +1793 10217 0.4250 +1793 10451 0.4440 +1793 10458 0.7430 +1793 10461 0.6440 +1793 10542 0.7200 +1793 10787 0.7390 +1793 10788 0.4610 +1793 10810 0.5570 +1793 22885 0.5290 +1793 22924 0.4740 +1793 23191 0.5220 +1793 23210 0.5100 +1793 23243 0.8150 +1793 23348 0.5690 +1793 23365 0.4460 +1793 23433 0.5100 +1793 23499 0.5300 +1793 23647 0.4090 +1793 25780 0.4310 +1793 25960 0.4620 +1793 26053 0.5140 +1793 26084 0.4120 +1793 26230 0.4020 +1793 26499 0.5020 +1793 26999 0.6980 +1793 27111 0.5620 +1793 28956 0.7290 +1793 28964 0.4120 +1793 29127 0.4870 +1793 51454 0.9270 +1793 51763 0.4400 +1793 54549 0.4930 +1793 55004 0.7200 +1793 55113 0.4090 +1793 55255 0.7220 +1793 55531 0.5130 +1793 55576 0.6820 +1793 55619 0.5500 +1793 55715 0.4330 +1793 55764 0.7590 +1793 55816 0.4440 +1793 55845 0.5510 +1793 57381 0.6600 +1793 57453 0.5030 +1793 57539 0.9910 +1793 57572 0.6630 +1793 57580 0.5510 +1793 57589 0.7200 +1793 57647 0.9420 +1793 58480 0.4720 +1793 58533 0.4980 +1793 63916 0.9990 +1793 64132 0.4160 +1793 65059 0.4460 +1793 79767 0.9990 +1793 80005 0.5690 +1793 81624 0.4210 +1793 81704 0.5120 +1793 83660 0.4790 +1793 84448 0.5100 +1793 84466 0.6060 +1793 85440 0.5250 +1793 85442 0.7200 +1793 91937 0.4960 +1793 118611 0.8380 +1793 139818 0.5310 +1793 140775 0.7200 +1793 160622 0.6630 +1793 171177 0.4480 +1793 203228 0.7200 +1793 285641 0.4010 +1793 389541 0.7200 +1793 389827 0.4180 +1793 390714 0.4990 +1794 2124 0.5060 +1794 2268 0.9360 +1794 2533 0.6530 +1794 3055 0.9330 +1794 3059 0.6120 +1794 3071 0.7340 +1794 3113 0.4980 +1794 3654 0.6590 +1794 3665 0.4160 +1794 3683 0.5730 +1794 3684 0.4140 +1794 3689 0.6680 +1794 3725 0.4260 +1794 3936 0.4690 +1794 3937 0.7990 +1794 4067 0.9270 +1794 4168 0.5060 +1794 4542 0.6230 +1794 5062 0.6230 +1794 5293 0.4890 +1794 5294 0.4950 +1794 5338 0.8300 +1794 5341 0.6000 +1794 5587 0.4180 +1794 5788 0.6820 +1794 5877 0.7130 +1794 5879 0.9400 +1794 5880 0.9940 +1794 5881 0.9930 +1794 6363 0.6140 +1794 6387 0.5310 +1794 6688 0.4040 +1794 6714 0.9290 +1794 6850 0.4080 +1794 7074 0.4070 +1794 7187 0.6460 +1794 7189 0.6610 +1794 7409 0.7480 +1794 7454 0.6520 +1794 7456 0.4680 +1794 7535 0.4720 +1794 7805 0.6230 +1794 7852 0.5470 +1794 8631 0.4730 +1794 8743 0.5090 +1794 9138 0.5110 +1794 9181 0.5170 +1794 9450 0.4490 +1794 9459 0.4890 +1794 9844 0.9990 +1794 10320 0.5450 +1794 10563 0.6020 +1794 10673 0.4700 +1794 10788 0.4730 +1794 11151 0.6140 +1794 22994 0.4090 +1794 23191 0.4710 +1794 23348 0.4370 +1794 23433 0.4550 +1794 23683 0.4230 +1794 25865 0.4220 +1794 27128 0.4600 +1794 51135 0.5020 +1794 54440 0.5030 +1794 54518 0.6170 +1794 55619 0.4980 +1794 55843 0.5350 +1794 57381 0.4390 +1794 57580 0.5200 +1794 57647 0.6000 +1794 57705 0.4800 +1794 58480 0.4650 +1794 63916 0.6390 +1794 64098 0.4560 +1794 79767 0.5450 +1794 81624 0.4210 +1794 81704 0.5390 +1794 83706 0.4120 +1794 139818 0.6930 +1794 171177 0.4540 +1794 257106 0.5010 +1794 285195 0.4140 +1795 2534 0.7620 +1795 4168 0.4840 +1795 4739 0.9400 +1795 4915 0.6000 +1795 5062 0.4690 +1795 5781 0.4500 +1795 5877 0.4500 +1795 5879 0.8070 +1795 5880 0.7810 +1795 6334 0.5190 +1795 6531 0.4740 +1795 6857 0.4960 +1795 7074 0.4200 +1795 8936 0.5370 +1795 9732 0.6450 +1795 9844 0.9440 +1795 9855 0.4670 +1795 9856 0.6840 +1795 10163 0.4770 +1795 10479 0.4740 +1795 10788 0.4500 +1795 23315 0.4900 +1795 23348 0.4110 +1795 23433 0.4200 +1795 26059 0.4640 +1795 27237 0.4110 +1795 57381 0.4060 +1795 57580 0.4140 +1795 57647 0.5270 +1795 58480 0.4560 +1795 58504 0.5550 +1795 63916 0.8400 +1795 79442 0.4100 +1795 79767 0.9090 +1795 80243 0.4290 +1795 81624 0.4810 +1795 84679 0.4740 +1795 146705 0.4130 +1795 171177 0.4480 +1795 205428 0.4910 +1795 221424 0.5260 +1795 266743 0.4830 +1795 285195 0.8910 +1795 338692 0.4390 +1796 1956 0.6660 +1796 2048 0.4650 +1796 2125 0.7490 +1796 2668 0.5200 +1796 2674 0.5110 +1796 2675 0.5010 +1796 2676 0.4990 +1796 2885 0.5840 +1796 3055 0.4040 +1796 3635 0.7340 +1796 3690 0.4410 +1796 3815 0.5900 +1796 4067 0.6550 +1796 4088 0.4290 +1796 4690 0.8910 +1796 4902 0.4990 +1796 5335 0.4120 +1796 5341 0.5980 +1796 5595 0.4220 +1796 5623 0.5110 +1796 5753 0.9070 +1796 5781 0.4930 +1796 5921 0.9970 +1796 5979 0.9310 +1796 6464 0.6770 +1796 6714 0.5870 +1796 6725 0.4150 +1796 7006 0.6980 +1796 7094 0.6120 +1796 8440 0.8460 +1796 9046 0.5020 +1796 9048 0.4990 +1796 9817 0.6270 +1796 26499 0.5840 +1796 64096 0.4990 +1796 79930 0.4330 +1796 83706 0.5100 +1797 2319 0.4210 +1797 5394 0.6890 +1797 5976 0.5280 +1797 6499 0.8800 +1797 7936 0.4570 +1797 8446 0.6910 +1797 8731 0.4990 +1797 8732 0.4440 +1797 8859 0.8360 +1797 9156 0.4010 +1797 9400 0.7880 +1797 11165 0.5410 +1797 22803 0.9990 +1797 23016 0.9940 +1797 23248 0.5960 +1797 24138 0.4570 +1797 54464 0.8090 +1797 54512 0.7490 +1797 55197 0.8970 +1797 55272 0.4150 +1797 55783 0.5270 +1797 57827 0.4900 +1797 58490 0.8430 +1797 63940 0.4540 +1797 79707 0.5310 +1797 79798 0.7630 +1797 79871 0.7490 +1797 80863 0.7130 +1797 80864 0.6200 +1797 81488 0.6700 +1797 85302 0.8430 +1797 93643 0.9050 +1797 112479 0.6850 +1797 131870 0.5430 +1797 167227 0.8760 +1797 203260 0.4770 +1797 285331 0.5850 +1798 2058 0.6050 +1798 2582 0.5630 +1798 2673 0.8070 +1798 2762 0.5210 +1798 3336 0.4020 +1798 3561 0.7270 +1798 3703 0.6590 +1798 4122 0.4220 +1798 4124 0.4410 +1798 4351 0.5740 +1798 4508 0.4270 +1798 4593 0.5130 +1798 4649 0.4210 +1798 5236 0.4020 +1798 5238 0.5300 +1798 5277 0.4800 +1798 5373 0.8960 +1798 5832 0.4330 +1798 5913 0.6150 +1798 5917 0.4100 +1798 5972 0.4470 +1798 6184 0.6160 +1798 6185 0.5720 +1798 6329 0.4350 +1798 6836 0.5460 +1798 7167 0.4340 +1798 7358 0.4950 +1798 7841 0.4880 +1798 8292 0.6330 +1798 8565 0.5230 +1798 8813 0.7670 +1798 8818 0.9510 +1798 9487 0.5040 +1798 9526 0.5320 +1798 9581 0.5830 +1798 9945 0.5070 +1798 10195 0.8160 +1798 10585 0.4060 +1798 22845 0.9710 +1798 22984 0.4030 +1798 23483 0.5770 +1798 25885 0.4510 +1798 25973 0.4240 +1798 26123 0.5050 +1798 26574 0.5300 +1798 29880 0.9750 +1798 29925 0.7570 +1798 29926 0.5150 +1798 29927 0.4310 +1798 29929 0.8040 +1798 29954 0.4390 +1798 54187 0.4200 +1798 54344 0.9450 +1798 56052 0.8490 +1798 57038 0.4430 +1798 57171 0.9510 +1798 79053 0.8120 +1798 79087 0.7850 +1798 79139 0.5060 +1798 79158 0.4170 +1798 79644 0.6710 +1798 79868 0.9990 +1798 79947 0.6780 +1798 83440 0.6560 +1798 84572 0.4650 +1798 85021 0.6910 +1798 85365 0.6650 +1798 92399 0.5740 +1798 116150 0.6190 +1798 196074 0.5390 +1798 199857 0.9990 +1798 201595 0.5790 +1798 284098 0.5390 +1798 285489 0.6860 +1798 440138 0.8050 +1798 644974 0.4410 +1798 100131755 0.7310 +1800 7512 0.4800 +1800 27299 0.4190 +1800 55748 0.5160 +1800 55753 0.4030 +1800 64174 0.5550 +1800 64180 0.5630 +1800 80325 0.4060 +1800 113455421 0.5090 +1801 1802 0.9990 +1801 1938 0.9840 +1801 3090 0.4360 +1801 3843 0.5750 +1801 4116 0.5960 +1801 5511 0.4150 +1801 7709 0.4440 +1801 8558 0.4990 +1801 9343 0.5820 +1801 9851 0.4220 +1801 9939 0.8800 +1801 9987 0.4120 +1801 10247 0.4590 +1801 10482 0.4130 +1801 10623 0.4750 +1801 10801 0.4860 +1801 11249 0.4910 +1801 23587 0.5960 +1801 25879 0.4160 +1801 26100 0.4610 +1801 26297 0.5390 +1801 27292 0.6930 +1801 51202 0.4110 +1801 51611 0.9960 +1801 54606 0.4840 +1801 54881 0.5320 +1801 55110 0.5960 +1801 55140 0.7070 +1801 55174 0.4690 +1801 55178 0.4980 +1801 55696 0.4270 +1801 55720 0.4160 +1801 56655 0.4130 +1801 57107 0.5980 +1801 79631 0.5940 +1801 79770 0.4340 +1801 79829 0.4530 +1801 80324 0.4250 +1801 81605 0.4070 +1801 85476 0.6670 +1801 89978 0.8090 +1801 92715 0.9270 +1801 120526 0.8710 +1801 124641 0.9640 +1801 285381 0.9930 +1802 1808 0.4760 +1802 1938 0.9850 +1802 2956 0.4190 +1802 4234 0.5470 +1802 4839 0.5210 +1802 7167 0.4460 +1802 7709 0.4270 +1802 8884 0.4710 +1802 9136 0.8260 +1802 9343 0.6180 +1802 9670 0.4250 +1802 9904 0.4420 +1802 10247 0.4590 +1802 10322 0.4720 +1802 10487 0.4300 +1802 10785 0.4410 +1802 11101 0.4500 +1802 23212 0.4190 +1802 23481 0.4060 +1802 23543 0.4200 +1802 23587 0.5990 +1802 25973 0.4160 +1802 26100 0.4740 +1802 26297 0.5530 +1802 27304 0.4700 +1802 51202 0.4380 +1802 51605 0.4800 +1802 51611 0.9980 +1802 54555 0.4680 +1802 54606 0.6240 +1802 54663 0.4400 +1802 55140 0.6530 +1802 55253 0.4300 +1802 57184 0.4460 +1802 57696 0.4930 +1802 60558 0.4130 +1802 64794 0.7540 +1802 79080 0.4950 +1802 79631 0.6050 +1802 80324 0.6180 +1802 81605 0.5450 +1802 84274 0.4620 +1802 85476 0.6290 +1802 89978 0.8150 +1802 90353 0.5040 +1802 92715 0.9020 +1802 112970 0.4140 +1802 115708 0.4240 +1802 117246 0.4210 +1802 120526 0.9230 +1802 124641 0.7050 +1802 285381 0.9940 +1802 493860 0.4060 +1803 2022 0.6100 +1803 2028 0.7900 +1803 2056 0.4010 +1803 2064 0.4750 +1803 2086 0.6890 +1803 2177 0.4790 +1803 2191 0.4110 +1803 2212 0.4780 +1803 2213 0.4760 +1803 2263 0.4280 +1803 2305 0.4370 +1803 2335 0.9830 +1803 2346 0.7580 +1803 2597 0.4250 +1803 2641 0.9870 +1803 2642 0.6240 +1803 2645 0.4310 +1803 2678 0.5770 +1803 2695 0.9800 +1803 2696 0.6360 +1803 2719 0.6780 +1803 2740 0.9650 +1803 2813 0.4590 +1803 2829 0.6310 +1803 2833 0.4320 +1803 2864 0.5060 +1803 2875 0.5980 +1803 2920 0.7540 +1803 3122 0.4070 +1803 3309 0.5970 +1803 3375 0.6530 +1803 3383 0.6310 +1803 3385 0.5520 +1803 3439 0.4050 +1803 3458 0.5750 +1803 3479 0.4340 +1803 3481 0.5370 +1803 3482 0.9450 +1803 3551 0.4490 +1803 3552 0.4300 +1803 3553 0.5810 +1803 3554 0.4980 +1803 3558 0.4830 +1803 3565 0.4110 +1803 3569 0.6940 +1803 3576 0.4560 +1803 3586 0.5390 +1803 3605 0.4420 +1803 3606 0.4190 +1803 3627 0.7770 +1803 3630 0.9060 +1803 3667 0.4640 +1803 3673 0.4210 +1803 3676 0.6070 +1803 3678 0.5780 +1803 3688 0.9670 +1803 3700 0.5540 +1803 3820 0.4750 +1803 3827 0.5110 +1803 3875 0.4060 +1803 3880 0.6240 +1803 3952 0.5890 +1803 3958 0.5760 +1803 4128 0.5220 +1803 4160 0.4710 +1803 4224 0.9260 +1803 4225 0.9250 +1803 4233 0.4570 +1803 4283 0.5290 +1803 4306 0.4830 +1803 4311 0.9620 +1803 4312 0.5360 +1803 4318 0.4680 +1803 4319 0.4650 +1803 4322 0.5160 +1803 4363 0.4810 +1803 4684 0.6500 +1803 4790 0.4020 +1803 4846 0.4350 +1803 4852 0.6250 +1803 4879 0.4020 +1803 4887 0.4940 +1803 4907 0.5140 +1803 5045 0.6590 +1803 5054 0.4510 +1803 5175 0.6460 +1803 5265 0.4530 +1803 5340 0.9040 +1803 5465 0.4780 +1803 5468 0.6230 +1803 5499 0.5070 +1803 5539 0.5000 +1803 5547 0.9670 +1803 5550 0.9410 +1803 5566 0.4230 +1803 5567 0.4190 +1803 5568 0.4230 +1803 5617 0.4680 +1803 5697 0.7520 +1803 5770 0.4720 +1803 5788 0.9900 +1803 5806 0.5040 +1803 5962 0.4450 +1803 5972 0.7050 +1803 6343 0.4040 +1803 6347 0.7140 +1803 6348 0.6080 +1803 6356 0.6730 +1803 6367 0.4620 +1803 6373 0.6890 +1803 6387 0.8320 +1803 6403 0.4870 +1803 6476 0.8870 +1803 6504 0.5250 +1803 6514 0.6820 +1803 6517 0.5180 +1803 6523 0.7620 +1803 6524 0.9090 +1803 6550 0.6400 +1803 6750 0.4730 +1803 6774 0.4190 +1803 6863 0.5260 +1803 6868 0.5320 +1803 6869 0.4540 +1803 6915 0.4860 +1803 7037 0.6990 +1803 7040 0.4750 +1803 7070 0.4710 +1803 7072 0.4420 +1803 7076 0.6050 +1803 7082 0.5120 +1803 7099 0.4450 +1803 7113 0.8800 +1803 7124 0.5890 +1803 7157 0.6560 +1803 7299 0.5230 +1803 7369 0.4340 +1803 7412 0.6690 +1803 7432 0.4060 +1803 7512 0.9460 +1803 7852 0.9850 +1803 8455 0.7110 +1803 8829 0.5920 +1803 8842 0.4470 +1803 8972 0.8850 +1803 9172 0.4140 +1803 9340 0.7900 +1803 9370 0.6080 +1803 9971 0.4160 +1803 10003 0.8100 +1803 10004 0.7760 +1803 10044 0.4040 +1803 10045 0.4450 +1803 10072 0.4980 +1803 10332 0.7030 +1803 10803 0.5310 +1803 11069 0.4180 +1803 11261 0.4430 +1803 23411 0.4130 +1803 23549 0.8450 +1803 26291 0.4050 +1803 27035 0.8760 +1803 27243 0.4100 +1803 29952 0.8710 +1803 30061 0.4370 +1803 30816 0.7300 +1803 30835 0.5330 +1803 50674 0.5190 +1803 50943 0.4160 +1803 51738 0.6250 +1803 54858 0.5210 +1803 54878 0.5470 +1803 55536 0.5750 +1803 55802 0.4330 +1803 56649 0.4150 +1803 56729 0.4030 +1803 57393 0.4260 +1803 59272 0.9990 +1803 79258 0.5100 +1803 80834 0.5800 +1803 83756 0.5870 +1803 84433 0.6690 +1803 84759 0.4400 +1803 91039 0.5490 +1803 132724 0.4070 +1803 139760 0.5910 +1803 140885 0.4260 +1803 145264 0.4050 +1803 149233 0.4040 +1803 151306 0.4550 +1803 338557 0.6250 +1803 339390 0.4910 +1803 339967 0.4180 +1803 346562 0.4870 +1803 405754 0.6930 +1803 414062 0.5600 +1803 440387 0.4550 +1803 100133941 0.4720 +1804 1813 0.4190 +1804 1996 0.4100 +1804 2335 0.4590 +1804 2550 0.5830 +1804 2572 0.7120 +1804 2823 0.5050 +1804 2895 0.4810 +1804 2898 0.4850 +1804 2901 0.4550 +1804 2902 0.4770 +1804 2911 0.6270 +1804 2915 0.7870 +1804 3633 0.4450 +1804 3709 0.6160 +1804 3736 0.4470 +1804 3737 0.4150 +1804 3739 0.6840 +1804 3746 0.8960 +1804 3749 0.4360 +1804 3750 0.6330 +1804 3751 0.9940 +1804 3752 0.9330 +1804 3764 0.4060 +1804 4340 0.5770 +1804 5101 0.5810 +1804 5550 0.4940 +1804 5621 0.6530 +1804 5928 0.4390 +1804 5957 0.6610 +1804 6311 0.4440 +1804 6331 0.9090 +1804 6656 0.6170 +1804 7273 0.4010 +1804 7881 0.4290 +1804 9211 0.8860 +1804 9228 0.4770 +1804 9369 0.5190 +1804 9378 0.4600 +1804 9992 0.4460 +1804 10687 0.7930 +1804 22920 0.4180 +1804 23025 0.5340 +1804 23092 0.4710 +1804 25817 0.4330 +1804 26047 0.8420 +1804 29952 0.5190 +1804 30818 0.5920 +1804 30819 0.8270 +1804 30820 0.9640 +1804 51264 0.4780 +1804 54878 0.4520 +1804 55172 0.4180 +1804 55277 0.6390 +1804 55800 0.4010 +1804 55957 0.6480 +1804 56853 0.4030 +1804 56896 0.7350 +1804 57628 0.5940 +1804 80333 0.7190 +1804 84107 0.7260 +1804 91039 0.4410 +1804 91750 0.5370 +1804 92737 0.7150 +1804 114805 0.4740 +1804 115207 0.4240 +1804 117248 0.4650 +1804 132660 0.5050 +1804 138255 0.4630 +1804 139411 0.5890 +1804 152330 0.4050 +1804 203228 0.4630 +1804 286826 0.6380 +1804 402665 0.8880 +1805 1842 0.5090 +1805 2192 0.4990 +1805 2200 0.4330 +1805 2271 0.6480 +1805 2331 0.6440 +1805 2335 0.5980 +1805 3671 0.4350 +1805 3908 0.4110 +1805 4015 0.7020 +1805 4060 0.8030 +1805 4239 0.6370 +1805 4958 0.4550 +1805 4969 0.6760 +1805 5549 0.7770 +1805 5890 0.5830 +1805 6696 0.5880 +1805 7043 0.6600 +1805 7058 0.5740 +1805 7123 0.5160 +1805 7373 0.4540 +1805 8076 0.4270 +1805 8091 0.5470 +1805 8483 0.5150 +1805 10516 0.6310 +1805 10631 0.7090 +1805 54829 0.5860 +1805 84503 0.4170 +1806 1807 0.9970 +1806 1808 0.7800 +1806 1809 0.8620 +1806 1841 0.4550 +1806 1854 0.4560 +1806 1890 0.9960 +1806 1956 0.4190 +1806 2030 0.4700 +1806 2058 0.4510 +1806 2067 0.5710 +1806 2068 0.4540 +1806 2072 0.4050 +1806 2232 0.8040 +1806 2356 0.5460 +1806 2597 0.4800 +1806 2618 0.7260 +1806 2731 0.4090 +1806 2950 0.4760 +1806 3106 0.4420 +1806 3614 0.4330 +1806 3615 0.4070 +1806 3700 0.4320 +1806 3704 0.4520 +1806 3814 0.8550 +1806 3845 0.4200 +1806 4292 0.4320 +1806 4507 0.4210 +1806 4524 0.7360 +1806 4723 0.7320 +1806 4860 0.9410 +1806 4907 0.8260 +1806 4935 0.8120 +1806 5243 0.5200 +1806 5471 0.6500 +1806 5723 0.4270 +1806 6120 0.4340 +1806 6389 0.4940 +1806 6506 0.4100 +1806 6507 0.4080 +1806 7024 0.8180 +1806 7084 0.6200 +1806 7157 0.5630 +1806 7167 0.4170 +1806 7172 0.7910 +1806 7298 0.9790 +1806 7342 0.5790 +1806 7355 0.4270 +1806 7363 0.4520 +1806 7364 0.4860 +1806 7365 0.4570 +1806 7366 0.5130 +1806 7367 0.4760 +1806 7371 0.5860 +1806 7372 0.9990 +1806 7378 0.9870 +1806 7407 0.4050 +1806 7444 0.4050 +1806 8379 0.4460 +1806 8529 0.5730 +1806 8565 0.4440 +1806 8833 0.9110 +1806 9360 0.4180 +1806 9429 0.4120 +1806 9615 0.4100 +1806 9962 0.7030 +1806 9963 0.7030 +1806 10570 0.7650 +1806 10599 0.6280 +1806 10606 0.4410 +1806 10720 0.4780 +1806 11128 0.4020 +1806 25885 0.4020 +1806 26873 0.7990 +1806 27235 0.4130 +1806 29968 0.4070 +1806 51026 0.8560 +1806 51167 0.9110 +1806 51176 0.4140 +1806 51647 0.4250 +1806 51700 0.8800 +1806 51706 0.8770 +1806 51733 0.9660 +1806 54490 0.4570 +1806 54575 0.7260 +1806 54576 0.7280 +1806 54577 0.7300 +1806 54578 0.7200 +1806 54579 0.4780 +1806 54600 0.4790 +1806 54657 0.7260 +1806 54658 0.7630 +1806 54659 0.4740 +1806 54963 0.6080 +1806 55163 0.4250 +1806 55270 0.9020 +1806 55556 0.5180 +1806 55748 0.5720 +1806 56474 0.5110 +1806 56896 0.7650 +1806 58155 0.4280 +1806 64428 0.4570 +1806 79001 0.6820 +1806 79799 0.4560 +1806 83549 0.6240 +1806 84735 0.5600 +1806 89894 0.8120 +1806 91752 0.4490 +1806 91875 0.4730 +1806 92106 0.8750 +1806 92140 0.8290 +1806 127845 0.8550 +1806 129607 0.4970 +1806 139596 0.9530 +1806 148811 0.5550 +1806 151531 0.9880 +1806 153396 0.4200 +1806 162417 0.4690 +1806 200895 0.4920 +1806 283985 0.7890 +1806 392636 0.4290 +1806 574537 0.4570 +1806 606495 0.8770 +1806 100526760 0.5550 +1807 1808 0.7960 +1807 1809 0.8020 +1807 2232 0.4630 +1807 2618 0.6210 +1807 2799 0.4010 +1807 3242 0.4510 +1807 3814 0.6050 +1807 4218 0.4890 +1807 4645 0.4300 +1807 4728 0.4140 +1807 4935 0.6230 +1807 7298 0.5690 +1807 7372 0.8890 +1807 7378 0.4990 +1807 8942 0.4150 +1807 9659 0.4460 +1807 9962 0.6320 +1807 9963 0.6380 +1807 10478 0.4230 +1807 10570 0.6470 +1807 27165 0.4320 +1807 51026 0.6050 +1807 51167 0.5710 +1807 51474 0.4260 +1807 51700 0.5620 +1807 51706 0.5620 +1807 51733 0.9890 +1807 55186 0.4230 +1807 55526 0.4290 +1807 55748 0.4160 +1807 55821 0.5070 +1807 56896 0.8040 +1807 56954 0.4260 +1807 64902 0.6060 +1807 79814 0.4990 +1807 84275 0.4230 +1807 84735 0.4250 +1807 89894 0.6230 +1807 92106 0.5620 +1807 127845 0.6050 +1807 148811 0.4600 +1807 151531 0.5100 +1807 283985 0.4370 +1807 392617 0.4280 +1807 606495 0.5620 +1807 100526760 0.4160 +1808 1809 0.9760 +1808 1946 0.5880 +1808 2023 0.4780 +1808 2026 0.4020 +1808 2060 0.5780 +1808 2232 0.4370 +1808 2242 0.9260 +1808 2534 0.7040 +1808 2596 0.4490 +1808 2597 0.5730 +1808 2618 0.5320 +1808 2739 0.4580 +1808 2847 0.4180 +1808 2903 0.7460 +1808 2904 0.7120 +1808 2931 0.5990 +1808 2932 0.9890 +1808 2997 0.4090 +1808 3064 0.4650 +1808 3312 0.4400 +1808 3814 0.6050 +1808 3831 0.7260 +1808 3897 0.5770 +1808 3925 0.5160 +1808 4082 0.5560 +1808 4131 0.7560 +1808 4133 0.4250 +1808 4137 0.6770 +1808 4355 0.4920 +1808 4728 0.4150 +1808 4741 0.4320 +1808 4747 0.4760 +1808 4803 0.5520 +1808 4908 0.6690 +1808 4915 0.5680 +1808 4923 0.4240 +1808 4935 0.6230 +1808 5037 0.6460 +1808 5162 0.5000 +1808 5165 0.4230 +1808 5223 0.4020 +1808 5315 0.4510 +1808 5361 0.8250 +1808 5362 0.8270 +1808 5413 0.5800 +1808 5649 0.4080 +1808 5873 0.8620 +1808 5874 0.7530 +1808 6335 0.7020 +1808 6616 0.4180 +1808 6620 0.4090 +1808 6804 0.5820 +1808 6812 0.4610 +1808 6853 0.4070 +1808 7001 0.5470 +1808 7295 0.7060 +1808 7329 0.6730 +1808 7345 0.4040 +1808 7372 0.7470 +1808 7408 0.4830 +1808 7846 0.4380 +1808 7957 0.4240 +1808 8050 0.4090 +1808 8209 0.4560 +1808 8650 0.9920 +1808 8829 0.6480 +1808 8851 0.5990 +1808 8936 0.6180 +1808 8997 0.4950 +1808 9013 0.4310 +1808 9118 0.4570 +1808 9253 0.9480 +1808 9455 0.4220 +1808 9615 0.7150 +1808 9962 0.6320 +1808 9963 0.6320 +1808 10371 0.8320 +1808 10434 0.5050 +1808 10478 0.4230 +1808 10487 0.5650 +1808 10570 0.7570 +1808 10963 0.4540 +1808 11075 0.4050 +1808 11332 0.4810 +1808 22948 0.4430 +1808 23043 0.4500 +1808 23162 0.4610 +1808 23327 0.5440 +1808 26052 0.4310 +1808 27185 0.8130 +1808 50944 0.5110 +1808 51026 0.6050 +1808 51160 0.4510 +1808 51167 0.5710 +1808 51700 0.5620 +1808 51706 0.5620 +1808 51733 0.4560 +1808 51806 0.5420 +1808 55186 0.4230 +1808 55558 0.7080 +1808 55748 0.4470 +1808 55821 0.4880 +1808 56896 0.9900 +1808 56954 0.4050 +1808 57142 0.4160 +1808 57154 0.4060 +1808 64780 0.4850 +1808 64837 0.6250 +1808 79026 0.4820 +1808 84275 0.4230 +1808 84735 0.4300 +1808 84958 0.4930 +1808 85377 0.4880 +1808 89894 0.6230 +1808 89953 0.6260 +1808 91584 0.7170 +1808 91860 0.5280 +1808 92106 0.5620 +1808 127845 0.6050 +1808 147700 0.6210 +1808 148811 0.4160 +1808 163688 0.5280 +1808 203068 0.4140 +1808 283985 0.4370 +1808 347862 0.4570 +1808 378884 0.4200 +1808 606495 0.5620 +1808 100526760 0.4160 +1809 1891 0.4320 +1809 2232 0.4370 +1809 2242 0.5490 +1809 2534 0.5950 +1809 2596 0.6210 +1809 2618 0.5320 +1809 2932 0.5690 +1809 3814 0.6050 +1809 4131 0.4610 +1809 4640 0.7200 +1809 4641 0.7200 +1809 4646 0.7250 +1809 4728 0.4140 +1809 4935 0.6230 +1809 5361 0.7860 +1809 5362 0.7920 +1809 5566 0.4080 +1809 5567 0.4080 +1809 5568 0.4060 +1809 5881 0.7350 +1809 6091 0.4880 +1809 6453 0.5030 +1809 6525 0.5470 +1809 7372 0.7520 +1809 7430 0.4420 +1809 8445 0.4340 +1809 8572 0.7480 +1809 8829 0.6020 +1809 8851 0.5240 +1809 9124 0.5900 +1809 9260 0.5600 +1809 9962 0.6320 +1809 9963 0.6320 +1809 10096 0.4350 +1809 10371 0.8500 +1809 10478 0.4230 +1809 10570 0.7880 +1809 10611 0.5410 +1809 10787 0.5720 +1809 11155 0.5550 +1809 23301 0.5550 +1809 23384 0.5400 +1809 23549 0.4070 +1809 23607 0.7200 +1809 27295 0.5760 +1809 27341 0.4200 +1809 29964 0.5470 +1809 51026 0.6060 +1809 51167 0.5710 +1809 51700 0.5640 +1809 51706 0.5620 +1809 51733 0.4410 +1809 53904 0.7290 +1809 54749 0.4700 +1809 54920 0.4430 +1809 55143 0.4230 +1809 55156 0.5030 +1809 55186 0.4230 +1809 55558 0.6450 +1809 55604 0.5400 +1809 55748 0.4160 +1809 55821 0.4880 +1809 55857 0.5540 +1809 56896 0.9070 +1809 56940 0.7210 +1809 56943 0.4010 +1809 56954 0.4080 +1809 57523 0.4420 +1809 57697 0.4330 +1809 64236 0.5400 +1809 83700 0.7470 +1809 83715 0.7380 +1809 84275 0.4230 +1809 84735 0.4160 +1809 89894 0.6230 +1809 91584 0.6700 +1809 92106 0.5620 +1809 92521 0.5400 +1809 127845 0.6050 +1809 148811 0.4160 +1809 202374 0.6720 +1809 219537 0.5400 +1809 254102 0.5530 +1809 283985 0.4370 +1809 284076 0.6010 +1809 284422 0.4650 +1809 342527 0.5400 +1809 606495 0.5620 +1809 100526760 0.4160 +1810 2309 0.5430 +1810 2648 0.9640 +1810 2959 0.8090 +1810 3093 0.4380 +1810 4015 0.4220 +1810 4084 0.5580 +1810 4093 0.5850 +1810 4149 0.5760 +1810 4338 0.5430 +1810 4609 0.6400 +1810 4783 0.6170 +1810 4802 0.7280 +1810 5465 0.4480 +1810 5468 0.6410 +1810 6314 0.6570 +1810 6871 0.9840 +1810 6872 0.5090 +1810 6873 0.8020 +1810 6874 0.7570 +1810 6877 0.8100 +1810 6878 0.7960 +1810 6879 0.7630 +1810 6880 0.8460 +1810 6881 0.8210 +1810 6883 0.7680 +1810 6885 0.8620 +1810 6908 0.9980 +1810 8290 0.4290 +1810 8295 0.8090 +1810 8337 0.5080 +1810 8338 0.5070 +1810 8349 0.6380 +1810 8356 0.5120 +1810 8361 0.4050 +1810 8464 0.8230 +1810 8718 0.5260 +1810 8795 0.4450 +1810 8797 0.4740 +1810 8850 0.9660 +1810 8928 0.4260 +1810 9013 0.4430 +1810 9044 0.9550 +1810 9096 0.5510 +1810 9519 0.8000 +1810 9913 0.8200 +1810 10474 0.9810 +1810 10589 0.9990 +1810 10629 0.7200 +1810 10762 0.4590 +1810 11091 0.9890 +1810 23326 0.7320 +1810 23450 0.5760 +1810 26009 0.9670 +1810 27097 0.7250 +1810 27242 0.4010 +1810 29105 0.7120 +1810 51222 0.4420 +1810 51562 0.9940 +1810 51616 0.7990 +1810 54107 0.9800 +1810 54108 0.5800 +1810 55578 0.8390 +1810 55689 0.9910 +1810 55717 0.4390 +1810 56655 0.8730 +1810 56943 0.7450 +1810 56970 0.7260 +1810 57325 0.9770 +1810 64431 0.4630 +1810 79595 0.5080 +1810 80781 0.9590 +1810 83443 0.6290 +1810 83860 0.5060 +1810 93624 0.8560 +1810 112869 0.9790 +1810 117143 0.8240 +1810 132660 0.5590 +1810 160622 0.5020 +1810 387103 0.8000 +1810 387332 0.8750 +1810 399949 0.7590 +1810 440093 0.4460 +1810 440686 0.4290 +1810 653604 0.6450 +1811 2980 0.6370 +1811 2981 0.5500 +1811 2984 0.6810 +1811 2986 0.4130 +1811 3105 0.6170 +1811 3108 0.5100 +1811 3113 0.6080 +1811 3115 0.6670 +1811 3117 0.7840 +1811 3118 0.4870 +1811 3119 0.4610 +1811 3122 0.6090 +1811 3123 0.7700 +1811 3127 0.4110 +1811 3912 0.4690 +1811 4072 0.5070 +1811 4155 0.8610 +1811 4361 0.4360 +1811 4538 0.5180 +1811 4645 0.6460 +1811 5174 0.9080 +1811 5577 0.4620 +1811 5796 0.4020 +1811 6508 0.4070 +1811 6521 0.4400 +1811 6522 0.5610 +1811 6523 0.5480 +1811 6548 0.5370 +1811 6549 0.7250 +1811 6550 0.9040 +1811 6557 0.4010 +1811 6558 0.5790 +1811 6561 0.8300 +1811 8671 0.6400 +1811 8797 0.4180 +1811 9058 0.7600 +1811 9351 0.8740 +1811 9368 0.9420 +1811 9497 0.5780 +1811 9498 0.4480 +1811 10158 0.4640 +1811 10424 0.4550 +1811 10653 0.5190 +1811 22802 0.5530 +1811 23315 0.5640 +1811 26266 0.7670 +1811 30061 0.4360 +1811 50674 0.4310 +1811 54474 0.4990 +1811 54860 0.5390 +1811 57128 0.4970 +1811 57282 0.4030 +1811 64849 0.6310 +1811 65010 0.6160 +1811 79849 0.6780 +1811 83697 0.5260 +1811 84451 0.4230 +1811 116369 0.5490 +1811 140453 0.4660 +1811 153020 0.4320 +1811 160728 0.4250 +1811 340419 0.4060 +1811 388364 0.4570 +1811 644844 0.4250 +1811 653808 0.4710 +1812 1813 0.6300 +1812 1814 0.8010 +1812 1816 0.8180 +1812 2100 0.4090 +1812 2353 0.5240 +1812 2488 0.9070 +1812 2554 0.5350 +1812 2555 0.5000 +1812 2556 0.4310 +1812 2557 0.4670 +1812 2558 0.4840 +1812 2559 0.4360 +1812 2561 0.6200 +1812 2565 0.4330 +1812 2566 0.5080 +1812 2567 0.4010 +1812 2571 0.5170 +1812 2572 0.4540 +1812 2641 0.9130 +1812 2695 0.9000 +1812 2774 0.9840 +1812 2776 0.9390 +1812 2778 0.9940 +1812 2782 0.9270 +1812 2784 0.4470 +1812 2788 0.5110 +1812 2868 0.4380 +1812 2890 0.7400 +1812 2891 0.6680 +1812 2897 0.5030 +1812 2902 0.6990 +1812 2903 0.7720 +1812 2904 0.6410 +1812 2911 0.4360 +1812 2912 0.4550 +1812 2913 0.4620 +1812 2915 0.6760 +1812 2932 0.5180 +1812 2996 0.5700 +1812 3060 0.5020 +1812 3350 0.5430 +1812 3359 0.4450 +1812 3363 0.4860 +1812 3479 0.4370 +1812 4128 0.6280 +1812 4129 0.5900 +1812 4852 0.4430 +1812 4878 0.9090 +1812 4900 0.4370 +1812 4915 0.4500 +1812 4922 0.4270 +1812 4988 0.5920 +1812 5173 0.6520 +1812 5179 0.5060 +1812 5362 0.4210 +1812 5443 0.9380 +1812 5566 0.6230 +1812 5567 0.5000 +1812 5568 0.4900 +1812 5617 0.4830 +1812 5816 0.4990 +1812 5921 0.4220 +1812 6258 0.4530 +1812 6529 0.4460 +1812 6530 0.5140 +1812 6531 0.9060 +1812 6532 0.7630 +1812 6571 0.5800 +1812 6616 0.4510 +1812 6714 0.5730 +1812 6750 0.4040 +1812 6853 0.4190 +1812 6854 0.6030 +1812 6863 0.6080 +1812 7054 0.6690 +1812 7166 0.4200 +1812 7252 0.9190 +1812 7432 0.9330 +1812 7447 0.4340 +1812 8224 0.4690 +1812 8831 0.4510 +1812 8973 0.4190 +1812 9177 0.4060 +1812 9456 0.4140 +1812 9568 0.5970 +1812 10280 0.5930 +1812 10777 0.5320 +1812 10846 0.4950 +1812 11255 0.7820 +1812 11266 0.5290 +1812 30819 0.4650 +1812 50632 0.9520 +1812 51643 0.4650 +1812 54331 0.8340 +1812 55188 0.4330 +1812 55737 0.4170 +1812 56934 0.4200 +1812 57018 0.4970 +1812 57030 0.6040 +1812 57084 0.6600 +1812 64844 0.4450 +1812 64919 0.4660 +1812 83857 0.9200 +1812 84152 0.8410 +1812 85406 0.7910 +1812 91752 0.4440 +1812 121278 0.4330 +1812 140679 0.4660 +1812 148281 0.4150 +1812 201299 0.7800 +1812 220074 0.5090 +1812 255239 0.5830 +1812 267012 0.4660 +1812 346653 0.4460 +1813 1814 0.4510 +1813 1815 0.8160 +1813 1816 0.5950 +1813 1857 0.4720 +1813 1861 0.6700 +1813 1906 0.7310 +1813 1907 0.6920 +1813 1908 0.7160 +1813 1956 0.5080 +1813 2036 0.4180 +1813 2099 0.5930 +1813 2170 0.5890 +1813 2173 0.5860 +1813 2289 0.4160 +1813 2316 0.5960 +1813 2353 0.5650 +1813 2354 0.5640 +1813 2488 0.4200 +1813 2550 0.4660 +1813 2554 0.4870 +1813 2555 0.6090 +1813 2559 0.4020 +1813 2561 0.4650 +1813 2565 0.4320 +1813 2566 0.4250 +1813 2567 0.4070 +1813 2571 0.6220 +1813 2572 0.4550 +1813 2597 0.4150 +1813 2691 0.5670 +1813 2693 0.5320 +1813 2770 0.9980 +1813 2771 0.9850 +1813 2773 0.9560 +1813 2774 0.5380 +1813 2775 0.9500 +1813 2776 0.5020 +1813 2778 0.6390 +1813 2782 0.9910 +1813 2783 0.7890 +1813 2784 0.8270 +1813 2785 0.7090 +1813 2786 0.8840 +1813 2787 0.6780 +1813 2788 0.7660 +1813 2790 0.6840 +1813 2791 0.6950 +1813 2792 0.6950 +1813 2793 0.7480 +1813 2830 0.5220 +1813 2847 0.4710 +1813 2890 0.6150 +1813 2891 0.4970 +1813 2898 0.4180 +1813 2899 0.4510 +1813 2901 0.4590 +1813 2902 0.5920 +1813 2903 0.6180 +1813 2904 0.6370 +1813 2908 0.4960 +1813 2911 0.4790 +1813 2912 0.6160 +1813 2913 0.5750 +1813 2915 0.6270 +1813 2917 0.4310 +1813 2932 0.4580 +1813 2996 0.5830 +1813 3060 0.5500 +1813 3064 0.4550 +1813 3067 0.4990 +1813 3269 0.4760 +1813 3350 0.5600 +1813 3351 0.5430 +1813 3352 0.5250 +1813 3356 0.7990 +1813 3358 0.5480 +1813 3359 0.6270 +1813 3363 0.4860 +1813 3630 0.4480 +1813 3690 0.4040 +1813 3751 0.4590 +1813 3760 0.6230 +1813 3762 0.4670 +1813 3763 0.8350 +1813 3952 0.4480 +1813 4128 0.7360 +1813 4129 0.6470 +1813 4160 0.5320 +1813 4336 0.5040 +1813 4482 0.4740 +1813 4524 0.4180 +1813 4684 0.6250 +1813 4741 0.4420 +1813 4852 0.8330 +1813 4887 0.6710 +1813 4889 0.4380 +1813 4914 0.4560 +1813 4915 0.4800 +1813 4922 0.5310 +1813 4923 0.4500 +1813 4929 0.6590 +1813 4948 0.4190 +1813 4988 0.5560 +1813 5020 0.8380 +1813 5021 0.8020 +1813 5074 0.7570 +1813 5100 0.4430 +1813 5159 0.4090 +1813 5173 0.6880 +1813 5179 0.5660 +1813 5305 0.5090 +1813 5309 0.4680 +1813 5368 0.4070 +1813 5443 0.6400 +1813 5515 0.9150 +1813 5516 0.9130 +1813 5518 0.9050 +1813 5519 0.9050 +1813 5520 0.9030 +1813 5521 0.9130 +1813 5522 0.9030 +1813 5523 0.9040 +1813 5525 0.9030 +1813 5526 0.9020 +1813 5527 0.9030 +1813 5528 0.9110 +1813 5529 0.9030 +1813 5539 0.4030 +1813 5566 0.5050 +1813 5567 0.5050 +1813 5568 0.5060 +1813 5579 0.4190 +1813 5617 0.7290 +1813 5726 0.5140 +1813 5781 0.4250 +1813 5816 0.5520 +1813 5915 0.5370 +1813 5916 0.5390 +1813 5997 0.5530 +1813 5999 0.5250 +1813 6000 0.5900 +1813 6257 0.4430 +1813 6258 0.5970 +1813 6285 0.5430 +1813 6295 0.8440 +1813 6334 0.4260 +1813 6506 0.4410 +1813 6530 0.6320 +1813 6531 0.9990 +1813 6532 0.9100 +1813 6571 0.8140 +1813 6608 0.4710 +1813 6616 0.5160 +1813 6622 0.6740 +1813 6750 0.9460 +1813 6752 0.8780 +1813 6753 0.4870 +1813 6755 0.7490 +1813 6774 0.5080 +1813 6857 0.5390 +1813 6863 0.6150 +1813 6874 0.5320 +1813 6908 0.4340 +1813 7054 0.8410 +1813 7166 0.4970 +1813 7170 0.5160 +1813 7444 0.4140 +1813 7474 0.4850 +1813 7707 0.4240 +1813 7850 0.4620 +1813 7852 0.5960 +1813 8484 0.4430 +1813 8618 0.5080 +1813 8671 0.4300 +1813 8777 0.4830 +1813 8787 0.6780 +1813 8811 0.4450 +1813 8851 0.4230 +1813 8910 0.7410 +1813 9177 0.5760 +1813 9306 0.4260 +1813 9378 0.4290 +1813 9568 0.5930 +1813 10280 0.7360 +1813 10316 0.4080 +1813 10681 0.9350 +1813 10755 0.5040 +1813 10846 0.5360 +1813 11255 0.7070 +1813 23191 0.4270 +1813 23413 0.9820 +1813 23621 0.4640 +1813 26047 0.4610 +1813 27185 0.9580 +1813 28227 0.9000 +1813 29119 0.4400 +1813 51151 0.4120 +1813 51738 0.9540 +1813 51764 0.7130 +1813 53826 0.5890 +1813 54331 0.9810 +1813 54550 0.4870 +1813 54970 0.6940 +1813 55012 0.9000 +1813 55145 0.6370 +1813 55188 0.4180 +1813 55844 0.9000 +1813 55970 0.6900 +1813 57030 0.5800 +1813 57084 0.6090 +1813 57628 0.4120 +1813 58157 0.4600 +1813 59345 0.8050 +1813 79068 0.4050 +1813 79158 0.4130 +1813 83698 0.4570 +1813 83857 0.5760 +1813 83943 0.4220 +1813 84062 0.6710 +1813 84152 0.7640 +1813 84572 0.4180 +1813 84687 0.7420 +1813 84708 0.4540 +1813 91752 0.6000 +1813 94235 0.6960 +1813 114798 0.6270 +1813 121278 0.4520 +1813 140679 0.4720 +1813 203062 0.4210 +1813 220074 0.6950 +1813 255239 0.9520 +1813 267012 0.4330 +1813 374291 0.4180 +1813 388531 0.4390 +1813 402665 0.5490 +1813 104909134 0.5550 +1814 1815 0.9430 +1814 1816 0.5690 +1814 2316 0.5860 +1814 2561 0.6080 +1814 2692 0.4420 +1814 2740 0.4520 +1814 2768 0.4950 +1814 2770 0.9830 +1814 2771 0.7570 +1814 2773 0.7310 +1814 2774 0.5910 +1814 2775 0.7190 +1814 2778 0.4240 +1814 2782 0.9840 +1814 2783 0.8480 +1814 2784 0.8640 +1814 2785 0.7080 +1814 2786 0.7140 +1814 2787 0.6780 +1814 2788 0.8050 +1814 2790 0.6780 +1814 2791 0.6950 +1814 2792 0.7030 +1814 2793 0.7240 +1814 2903 0.4900 +1814 2904 0.6540 +1814 2912 0.4260 +1814 3004 0.4340 +1814 3359 0.5180 +1814 4128 0.6400 +1814 4129 0.6910 +1814 4160 0.4790 +1814 4524 0.5090 +1814 4855 0.4080 +1814 4887 0.4070 +1814 4900 0.4630 +1814 4923 0.4720 +1814 5305 0.5510 +1814 5309 0.4440 +1814 5443 0.5810 +1814 5533 0.5110 +1814 5579 0.4250 +1814 5625 0.5250 +1814 5733 0.4330 +1814 5999 0.5500 +1814 6530 0.5210 +1814 6531 0.7840 +1814 6532 0.7870 +1814 6571 0.5480 +1814 6616 0.4190 +1814 6714 0.5350 +1814 6863 0.4520 +1814 7054 0.5410 +1814 7166 0.5890 +1814 7170 0.4300 +1814 7852 0.4370 +1814 8777 0.5720 +1814 8787 0.4500 +1814 9177 0.5430 +1814 9378 0.4480 +1814 9722 0.4950 +1814 10681 0.7450 +1814 10755 0.5860 +1814 23413 0.4240 +1814 26086 0.5150 +1814 27185 0.5920 +1814 28957 0.4070 +1814 29801 0.5530 +1814 51764 0.6860 +1814 54331 0.9410 +1814 55879 0.4150 +1814 55970 0.6900 +1814 59345 0.7410 +1814 64342 0.4470 +1814 84062 0.5930 +1814 84152 0.4830 +1814 84196 0.5210 +1814 84708 0.4670 +1814 84894 0.4960 +1814 91752 0.5630 +1814 94235 0.6780 +1814 146177 0.4140 +1814 154664 0.4200 +1814 220074 0.5860 +1814 255239 0.6680 +1814 267012 0.5730 +1815 1816 0.5770 +1815 2555 0.5620 +1815 2561 0.6080 +1815 2562 0.4170 +1815 2770 0.8140 +1815 2771 0.7300 +1815 2773 0.7240 +1815 2774 0.5940 +1815 2782 0.7410 +1815 2783 0.7480 +1815 2784 0.8370 +1815 2785 0.7050 +1815 2786 0.7190 +1815 2787 0.6840 +1815 2788 0.7010 +1815 2790 0.7010 +1815 2791 0.7320 +1815 2792 0.7530 +1815 2793 0.7940 +1815 2885 0.5970 +1815 2902 0.4830 +1815 2904 0.4820 +1815 2908 0.4340 +1815 3358 0.4480 +1815 3359 0.5090 +1815 3363 0.4410 +1815 3760 0.5670 +1815 3762 0.5100 +1815 3763 0.4330 +1815 3952 0.4570 +1815 4128 0.8920 +1815 4129 0.7850 +1815 4160 0.4470 +1815 4524 0.6290 +1815 4887 0.5530 +1815 4900 0.4490 +1815 5020 0.4510 +1815 5021 0.6800 +1815 5362 0.4550 +1815 5443 0.4190 +1815 5533 0.5320 +1815 5625 0.4230 +1815 5999 0.4800 +1815 6010 0.4250 +1815 6334 0.4660 +1815 6530 0.6450 +1815 6531 0.9600 +1815 6532 0.9780 +1815 6571 0.4750 +1815 6616 0.6580 +1815 6625 0.4310 +1815 6714 0.5590 +1815 6774 0.4270 +1815 6925 0.4500 +1815 7054 0.7080 +1815 7166 0.8050 +1815 7201 0.4860 +1815 8452 0.5730 +1815 8777 0.4460 +1815 9177 0.5100 +1815 9586 0.4470 +1815 9722 0.4060 +1815 9737 0.5680 +1815 9856 0.4830 +1815 10522 0.4090 +1815 10681 0.7600 +1815 23284 0.4690 +1815 23316 0.4290 +1815 23544 0.4090 +1815 26086 0.5440 +1815 29801 0.4600 +1815 51289 0.5160 +1815 51764 0.6910 +1815 54084 0.4240 +1815 54331 0.7550 +1815 54970 0.4480 +1815 55970 0.6890 +1815 59345 0.7410 +1815 59349 0.8280 +1815 84062 0.6000 +1815 84152 0.4440 +1815 84708 0.4460 +1815 91752 0.5540 +1815 94235 0.7000 +1815 121278 0.6800 +1815 144717 0.4360 +1815 154664 0.5020 +1815 161582 0.5800 +1815 220074 0.6980 +1815 255239 0.7830 +1815 267012 0.6490 +1815 347862 0.4080 +1816 2488 0.9040 +1816 2554 0.4830 +1816 2558 0.4660 +1816 2566 0.6480 +1816 2567 0.4530 +1816 2641 0.9060 +1816 2695 0.9010 +1816 2774 0.9490 +1816 2776 0.9190 +1816 2778 0.9580 +1816 2847 0.4470 +1816 2856 0.4190 +1816 2969 0.7610 +1816 3479 0.4300 +1816 4128 0.6100 +1816 4129 0.4910 +1816 4160 0.4170 +1816 4878 0.9030 +1816 4887 0.4330 +1816 4889 0.4430 +1816 4900 0.4120 +1816 5173 0.4810 +1816 5443 0.9180 +1816 6334 0.4520 +1816 6530 0.5060 +1816 6531 0.8400 +1816 6532 0.6430 +1816 6570 0.4150 +1816 6571 0.5160 +1816 6616 0.6380 +1816 6714 0.5030 +1816 6753 0.4250 +1816 7054 0.5080 +1816 7166 0.4200 +1816 7252 0.9210 +1816 7366 0.4060 +1816 7367 0.8120 +1816 7432 0.9080 +1816 7434 0.4420 +1816 7466 0.4540 +1816 8484 0.4090 +1816 8811 0.4070 +1816 8973 0.4070 +1816 9177 0.4650 +1816 9520 0.8100 +1816 9721 0.8360 +1816 9901 0.7770 +1816 10288 0.4320 +1816 10316 0.4180 +1816 23380 0.7720 +1816 54490 0.4360 +1816 54768 0.8330 +1816 55672 0.8130 +1816 83857 0.5550 +1816 84152 0.4450 +1816 85013 0.4750 +1816 121278 0.4100 +1816 132884 0.4110 +1816 133060 0.4670 +1816 220074 0.4380 +1816 255239 0.5070 +1819 1938 0.4090 +1819 1965 0.5120 +1819 1968 0.4050 +1819 1984 0.4530 +1819 2107 0.5280 +1819 2197 0.5890 +1819 2873 0.4720 +1819 2896 0.6030 +1819 3312 0.4910 +1819 3921 0.7150 +1819 4733 0.6770 +1819 4736 0.4320 +1819 5427 0.6150 +1819 5432 0.4120 +1819 5434 0.5680 +1819 5688 0.4100 +1819 5704 0.4390 +1819 5705 0.4610 +1819 5717 0.4320 +1819 5955 0.5040 +1819 6122 0.7030 +1819 6123 0.4790 +1819 6124 0.6240 +1819 6125 0.7600 +1819 6128 0.6630 +1819 6129 0.6570 +1819 6130 0.6780 +1819 6132 0.7690 +1819 6133 0.6860 +1819 6135 0.6410 +1819 6136 0.5200 +1819 6137 0.6530 +1819 6138 0.6830 +1819 6139 0.6340 +1819 6141 0.5840 +1819 6142 0.6720 +1819 6143 0.6620 +1819 6144 0.6870 +1819 6146 0.4840 +1819 6147 0.7200 +1819 6152 0.5310 +1819 6154 0.6000 +1819 6155 0.6600 +1819 6156 0.6620 +1819 6157 0.8400 +1819 6158 0.4260 +1819 6159 0.6210 +1819 6160 0.6420 +1819 6161 0.6000 +1819 6164 0.6780 +1819 6165 0.6230 +1819 6167 0.4940 +1819 6168 0.5340 +1819 6169 0.6100 +1819 6170 0.4720 +1819 6171 0.5070 +1819 6175 0.6430 +1819 6187 0.7900 +1819 6188 0.8190 +1819 6189 0.7250 +1819 6191 0.6390 +1819 6193 0.7330 +1819 6194 0.6970 +1819 6201 0.6610 +1819 6202 0.6610 +1819 6203 0.6920 +1819 6204 0.6380 +1819 6205 0.7050 +1819 6206 0.7420 +1819 6207 0.7340 +1819 6208 0.6310 +1819 6209 0.7320 +1819 6210 0.6030 +1819 6217 0.7110 +1819 6218 0.5080 +1819 6222 0.7150 +1819 6223 0.7350 +1819 6224 0.7720 +1819 6227 0.6260 +1819 6228 0.6130 +1819 6229 0.6920 +1819 6230 0.6660 +1819 6231 0.6670 +1819 6232 0.6310 +1819 6233 0.5510 +1819 6234 0.6210 +1819 6235 0.6090 +1819 6576 0.6360 +1819 8533 0.4740 +1819 8662 0.4320 +1819 8890 0.4360 +1819 8892 0.4330 +1819 9045 0.6300 +1819 9053 0.4750 +1819 9238 0.4140 +1819 9349 0.6860 +1819 9669 0.5160 +1819 9761 0.4050 +1819 9790 0.4260 +1819 10139 0.4510 +1819 10244 0.4430 +1819 10399 0.7100 +1819 10445 0.4550 +1819 10574 0.5060 +1819 10575 0.4390 +1819 10589 0.4220 +1819 10607 0.5430 +1819 10694 0.4100 +1819 10973 0.4230 +1819 10985 0.9640 +1819 11047 0.4030 +1819 11224 0.6430 +1819 23008 0.4020 +1819 23481 0.4480 +1819 23521 0.6200 +1819 23588 0.4060 +1819 23640 0.6290 +1819 25873 0.5660 +1819 27000 0.4180 +1819 28987 0.4200 +1819 29063 0.4410 +1819 51065 0.4310 +1819 51069 0.4030 +1819 51081 0.4790 +1819 51116 0.4540 +1819 51149 0.4830 +1819 51154 0.5150 +1819 51168 0.4330 +1819 51182 0.5610 +1819 51319 0.4570 +1819 51389 0.9990 +1819 51428 0.4020 +1819 54455 0.4430 +1819 54496 0.4700 +1819 54606 0.8280 +1819 54920 0.4710 +1819 55239 0.4130 +1819 55272 0.4200 +1819 55324 0.5750 +1819 55621 0.4830 +1819 55651 0.4020 +1819 55794 0.4680 +1819 55837 0.4760 +1819 55854 0.9680 +1819 57221 0.4490 +1819 57794 0.4570 +1819 58490 0.7080 +1819 63932 0.6080 +1819 64215 0.4120 +1819 64963 0.4660 +1819 64978 0.4720 +1819 79018 0.4350 +1819 80153 0.4020 +1819 80222 0.4220 +1819 83447 0.4240 +1819 83450 0.4370 +1819 83475 0.4130 +1819 83743 0.4530 +1819 83877 0.6710 +1819 84936 0.4690 +1819 91647 0.6220 +1819 114987 0.4330 +1819 115708 0.4010 +1819 116832 0.4720 +1819 117246 0.4150 +1819 122773 0.4020 +1819 123207 0.6250 +1819 126823 0.4020 +1819 140801 0.5740 +1819 201965 0.8980 +1819 256302 0.4140 +1819 283106 0.4390 +1819 347487 0.4840 +1819 474354 0.6040 +1819 100137047 0.5940 +1819 100529239 0.4350 +1819 114483834 0.4480 +1820 1869 0.6660 +1820 2300 0.4050 +1820 2305 0.4080 +1820 2624 0.5520 +1820 2969 0.6150 +1820 3397 0.4330 +1820 4097 0.4470 +1820 5460 0.4280 +1820 5934 0.6570 +1820 5966 0.4520 +1820 6598 0.5730 +1820 6599 0.4610 +1820 6601 0.4850 +1820 6602 0.4150 +1820 6603 0.5120 +1820 6604 0.4330 +1820 6657 0.5540 +1820 6672 0.6610 +1820 7004 0.5600 +1820 7022 0.4220 +1820 7157 0.9290 +1820 8554 0.4840 +1820 9314 0.5090 +1820 10620 0.8140 +1820 10865 0.5030 +1820 23081 0.5250 +1820 23301 0.4820 +1820 27022 0.4750 +1820 30832 0.4140 +1820 51450 0.5630 +1820 55193 0.5330 +1820 57418 0.5200 +1820 63036 0.4350 +1820 63920 0.4500 +1820 79923 0.6760 +1820 84260 0.4030 +1820 114803 0.4260 +1820 138715 0.7160 +1820 389421 0.5600 +1820 389812 0.4280 +1820 102723407 0.6440 +1821 1837 0.5240 +1821 1959 0.5790 +1821 3908 0.5620 +1821 3912 0.4990 +1821 3915 0.5680 +1821 6640 0.5140 +1821 6641 0.5370 +1821 6645 0.5620 +1821 6663 0.5150 +1821 7402 0.5750 +1821 8082 0.6290 +1821 8506 0.4190 +1821 9727 0.4520 +1821 57716 0.9970 +1821 84440 0.4460 +1821 342035 0.4630 +1822 1911 0.5410 +1822 1912 0.5160 +1822 1958 0.5100 +1822 2122 0.5060 +1822 2146 0.5130 +1822 2195 0.5760 +1822 2597 0.5130 +1822 3064 0.8150 +1822 3065 0.5520 +1822 3066 0.5320 +1822 3550 0.5810 +1822 3725 0.5740 +1822 3748 0.5100 +1822 4287 0.7840 +1822 4297 0.4040 +1822 5071 0.4140 +1822 5468 0.5420 +1822 5521 0.5800 +1822 5621 0.4190 +1822 5928 0.5500 +1822 5929 0.6590 +1822 5931 0.5500 +1822 5978 0.4530 +1822 6015 0.5180 +1822 6045 0.4990 +1822 6310 0.8590 +1822 6311 0.8310 +1822 6314 0.7690 +1822 6591 0.4990 +1822 6615 0.5010 +1822 6712 0.4570 +1822 6874 0.5920 +1822 6908 0.5840 +1822 7101 0.9530 +1822 7157 0.6100 +1822 7916 0.4450 +1822 8161 0.4290 +1822 8535 0.5200 +1822 8537 0.5000 +1822 8726 0.5020 +1822 8841 0.5110 +1822 9001 0.4290 +1822 9112 0.6160 +1822 9219 0.5920 +1822 9223 0.8610 +1822 9444 0.7220 +1822 9693 0.4540 +1822 9739 0.6150 +1822 9757 0.4110 +1822 9863 0.5080 +1822 10014 0.4730 +1822 10084 0.4930 +1822 10458 0.8080 +1822 11030 0.7650 +1822 11059 0.8150 +1822 11060 0.7880 +1822 11091 0.7960 +1822 22955 0.5240 +1822 23028 0.5150 +1822 23060 0.4350 +1822 23067 0.5090 +1822 23152 0.6210 +1822 23186 0.4740 +1822 23400 0.4020 +1822 23466 0.5240 +1822 23512 0.4990 +1822 23543 0.5440 +1822 23551 0.4350 +1822 25814 0.5830 +1822 25894 0.4850 +1822 25930 0.4150 +1822 29978 0.4720 +1822 51564 0.4930 +1822 53615 0.5300 +1822 54815 0.5380 +1822 56893 0.5090 +1822 57167 0.6220 +1822 57332 0.5400 +1822 57338 0.6040 +1822 57459 0.5500 +1822 57504 0.5540 +1822 57507 0.7820 +1822 80012 0.4990 +1822 83737 0.7310 +1822 84232 0.5110 +1822 84465 0.5010 +1822 84733 0.5040 +1822 84991 0.4100 +1822 92552 0.6290 +1822 127002 0.5870 +1822 222255 0.5700 +1822 284058 0.5610 +1822 343641 0.5410 +1822 401474 0.4900 +1823 1824 0.5410 +1823 1825 0.5700 +1823 1828 0.9980 +1823 1829 0.7420 +1823 1830 0.8060 +1823 1832 0.9590 +1823 2125 0.7860 +1823 2312 0.8140 +1823 3713 0.7520 +1823 3728 0.9130 +1823 3848 0.5810 +1823 3849 0.6640 +1823 3858 0.5520 +1823 4014 0.8320 +1823 5266 0.5750 +1823 5317 0.9050 +1823 5318 0.7720 +1823 5339 0.4270 +1823 5493 0.8190 +1823 5650 0.6880 +1823 5653 0.5080 +1823 6698 0.6580 +1823 6699 0.6240 +1823 6700 0.5760 +1823 6701 0.6080 +1823 6703 0.5040 +1823 6704 0.5110 +1823 6705 0.4990 +1823 6706 0.6100 +1823 6707 0.5500 +1823 7051 0.6750 +1823 7053 0.5210 +1823 7062 0.5670 +1823 8502 0.5620 +1823 8710 0.4230 +1823 11005 0.6230 +1823 11187 0.8040 +1823 22916 0.6030 +1823 23581 0.6170 +1823 25818 0.6490 +1823 43847 0.4970 +1823 64065 0.5410 +1823 89777 0.5730 +1823 126638 0.5790 +1823 140807 0.4280 +1823 144568 0.5330 +1823 147409 0.6130 +1823 319101 0.4690 +1823 388533 0.4020 +1823 388698 0.7830 +1823 448834 0.4320 +1823 100129271 0.4020 +1824 1825 0.5970 +1824 1828 0.7830 +1824 1829 0.9990 +1824 1830 0.9110 +1824 1832 0.9980 +1824 2125 0.6800 +1824 2312 0.6400 +1824 2318 0.4260 +1824 2697 0.7840 +1824 2702 0.5230 +1824 3569 0.4200 +1824 3693 0.4710 +1824 3713 0.5870 +1824 3728 0.9810 +1824 3753 0.4240 +1824 3757 0.4530 +1824 3759 0.4210 +1824 3784 0.4560 +1824 3852 0.4820 +1824 3853 0.4170 +1824 3854 0.4250 +1824 4000 0.7180 +1824 4014 0.6220 +1824 4087 0.4540 +1824 4607 0.5810 +1824 4625 0.5190 +1824 4633 0.4460 +1824 4634 0.5070 +1824 5266 0.5750 +1824 5317 0.8530 +1824 5318 0.9990 +1824 5493 0.7000 +1824 6046 0.6070 +1824 6262 0.7700 +1824 6331 0.6030 +1824 6657 0.4100 +1824 6698 0.6440 +1824 6699 0.6500 +1824 6700 0.5680 +1824 6701 0.6060 +1824 6703 0.5970 +1824 6704 0.5540 +1824 6705 0.5290 +1824 6706 0.5930 +1824 6707 0.6410 +1824 6872 0.4380 +1824 7043 0.7600 +1824 7051 0.6330 +1824 7062 0.6070 +1824 7137 0.4470 +1824 7139 0.4790 +1824 7168 0.4850 +1824 7273 0.5700 +1824 7276 0.4460 +1824 8048 0.4470 +1824 8502 0.7930 +1824 8557 0.4160 +1824 8805 0.4220 +1824 9306 0.7280 +1824 9992 0.4490 +1824 10161 0.6860 +1824 11155 0.4480 +1824 11187 0.9100 +1824 22846 0.4220 +1824 23357 0.4290 +1824 23476 0.5120 +1824 23768 0.4140 +1824 29119 0.6310 +1824 50848 0.4090 +1824 51422 0.4830 +1824 51474 0.4570 +1824 57626 0.6480 +1824 64065 0.6800 +1824 79188 0.9330 +1824 126638 0.5590 +1824 147409 0.6270 +1824 282996 0.5080 +1824 100506658 0.4900 +1825 1828 0.9330 +1825 1829 0.9610 +1825 1830 0.9340 +1825 1832 0.9460 +1825 2125 0.7230 +1825 2312 0.6690 +1825 2697 0.4120 +1825 2702 0.4910 +1825 3569 0.4200 +1825 3693 0.4660 +1825 3713 0.6290 +1825 3728 0.9740 +1825 3753 0.4070 +1825 3757 0.4250 +1825 3784 0.4360 +1825 3852 0.7060 +1825 3853 0.5220 +1825 3854 0.5350 +1825 3861 0.5650 +1825 3868 0.4990 +1825 3872 0.4310 +1825 4000 0.5060 +1825 4014 0.6690 +1825 4087 0.4420 +1825 4607 0.5300 +1825 4625 0.4890 +1825 4634 0.4480 +1825 5266 0.5550 +1825 5268 0.5440 +1825 5275 0.4390 +1825 5317 0.8940 +1825 5318 0.9770 +1825 5493 0.7450 +1825 6262 0.7310 +1825 6331 0.5740 +1825 6657 0.4150 +1825 6698 0.6790 +1825 6699 0.6990 +1825 6700 0.5840 +1825 6701 0.6310 +1825 6703 0.5940 +1825 6704 0.5670 +1825 6705 0.5320 +1825 6706 0.5990 +1825 6707 0.6420 +1825 6872 0.4720 +1825 7043 0.6220 +1825 7051 0.6550 +1825 7062 0.5900 +1825 7139 0.4450 +1825 7168 0.4540 +1825 7273 0.4760 +1825 7276 0.4440 +1825 8048 0.4160 +1825 8416 0.4120 +1825 8502 0.8200 +1825 8626 0.4600 +1825 9306 0.7250 +1825 9635 0.4080 +1825 9992 0.4370 +1825 9997 0.4350 +1825 10161 0.6850 +1825 11155 0.4360 +1825 11187 0.9290 +1825 22846 0.4220 +1825 23357 0.4280 +1825 25793 0.4750 +1825 29119 0.5560 +1825 51422 0.4970 +1825 57626 0.6670 +1825 64065 0.8150 +1825 79188 0.9070 +1825 93517 0.4060 +1825 126638 0.5560 +1825 144568 0.4300 +1825 147409 0.6540 +1825 282996 0.4500 +1826 1827 0.4730 +1826 2332 0.4200 +1826 2534 0.4760 +1826 3763 0.4180 +1826 3843 0.5110 +1826 3960 0.4760 +1826 4684 0.4880 +1826 4690 0.4230 +1826 4741 0.4730 +1826 4756 0.5140 +1826 4857 0.4920 +1826 4917 0.5280 +1826 5058 0.6080 +1826 5121 0.4070 +1826 5211 0.5900 +1826 5599 0.5720 +1826 5600 0.5000 +1826 5601 0.4020 +1826 5603 0.4990 +1826 5747 0.4720 +1826 5802 0.4900 +1826 5879 0.5220 +1826 5921 0.4420 +1826 6238 0.4050 +1826 6300 0.5010 +1826 6326 0.5040 +1826 6585 0.5090 +1826 6586 0.4570 +1826 6792 0.4630 +1826 6904 0.6410 +1826 8633 0.5450 +1826 8993 0.5070 +1826 9353 0.4910 +1826 9378 0.7220 +1826 9379 0.5090 +1826 9423 0.9990 +1826 9863 0.5440 +1826 10371 0.4170 +1826 22854 0.4690 +1826 22871 0.4840 +1826 23001 0.4880 +1826 23036 0.4040 +1826 23112 0.4120 +1826 23135 0.4050 +1826 26047 0.4930 +1826 27328 0.5630 +1826 51111 0.4880 +1826 51429 0.5340 +1826 54413 0.4460 +1826 54549 0.4780 +1826 57453 0.8420 +1826 57502 0.4250 +1826 57555 0.4410 +1826 57556 0.4680 +1826 57575 0.4790 +1826 57689 0.4620 +1826 59277 0.7930 +1826 64101 0.4390 +1826 80816 0.5050 +1826 83992 0.4300 +1826 84628 0.4110 +1826 90249 0.6580 +1826 91584 0.4860 +1826 92293 0.4540 +1826 94233 0.4210 +1826 114798 0.4190 +1826 126147 0.5760 +1826 129684 0.6070 +1826 137970 0.5210 +1826 166752 0.4130 +1826 219699 0.8150 +1826 260425 0.5310 +1826 341640 0.4530 +1826 374946 0.7360 +1826 768206 0.4180 +1827 2114 0.4460 +1827 2309 0.4400 +1827 2332 0.5400 +1827 2624 0.4420 +1827 2626 0.4310 +1827 2931 0.6900 +1827 2932 0.8420 +1827 3763 0.5350 +1827 4731 0.4120 +1827 4772 0.7900 +1827 4773 0.7290 +1827 4775 0.4840 +1827 4776 0.5720 +1827 4878 0.5270 +1827 4879 0.4260 +1827 5316 0.4780 +1827 5500 0.4070 +1827 5530 0.9970 +1827 5532 0.9190 +1827 5533 0.8850 +1827 5534 0.8620 +1827 5567 0.4450 +1827 5978 0.4820 +1827 6453 0.5250 +1827 6670 0.4040 +1827 6844 0.4410 +1827 8409 0.4300 +1827 8445 0.5210 +1827 8624 0.5880 +1827 8841 0.4180 +1827 8867 0.6700 +1827 9495 0.6100 +1827 10311 0.5640 +1827 23523 0.6530 +1827 25825 0.4560 +1827 51501 0.4200 +1827 51778 0.6040 +1827 51806 0.7490 +1827 54472 0.4140 +1827 55133 0.5850 +1827 58494 0.4380 +1827 59271 0.4400 +1827 78987 0.5450 +1827 80331 0.4330 +1827 91860 0.7350 +1827 116224 0.7940 +1827 163688 0.7350 +1828 1829 0.5860 +1828 1830 0.8320 +1828 1832 0.9980 +1828 1909 0.5870 +1828 1910 0.5820 +1828 2125 0.9150 +1828 2312 0.9410 +1828 3315 0.5010 +1828 3713 0.7990 +1828 3728 0.9810 +1828 3848 0.9150 +1828 3849 0.5860 +1828 3852 0.4940 +1828 3853 0.4550 +1828 3854 0.4990 +1828 3858 0.6470 +1828 3860 0.4150 +1828 3861 0.7170 +1828 3868 0.5070 +1828 3914 0.4130 +1828 3960 0.4120 +1828 4014 0.8410 +1828 5045 0.4150 +1828 5266 0.6020 +1828 5297 0.5510 +1828 5317 0.9940 +1828 5318 0.9590 +1828 5339 0.5290 +1828 5493 0.9210 +1828 5650 0.8450 +1828 5653 0.5530 +1828 5781 0.4260 +1828 6278 0.4260 +1828 6444 0.4650 +1828 6698 0.6510 +1828 6699 0.6860 +1828 6700 0.6440 +1828 6701 0.6890 +1828 6703 0.6110 +1828 6704 0.6360 +1828 6705 0.5760 +1828 6706 0.6720 +1828 6707 0.6770 +1828 6768 0.6050 +1828 6939 0.5940 +1828 7051 0.7800 +1828 7053 0.5980 +1828 7062 0.6130 +1828 7534 0.4930 +1828 8153 0.5080 +1828 8416 0.4480 +1828 8502 0.6760 +1828 8710 0.4300 +1828 8808 0.4030 +1828 9076 0.4930 +1828 9333 0.4430 +1828 9622 0.6140 +1828 10202 0.4170 +1828 10344 0.4740 +1828 11005 0.8720 +1828 11187 0.9350 +1828 23581 0.5920 +1828 25793 0.6340 +1828 25818 0.8090 +1828 26122 0.5050 +1828 29841 0.4230 +1828 43847 0.4830 +1828 49860 0.4980 +1828 51574 0.5170 +1828 51726 0.4080 +1828 55914 0.8770 +1828 64065 0.7670 +1828 79714 0.5210 +1828 79782 0.4180 +1828 83481 0.4300 +1828 84283 0.4190 +1828 84651 0.4970 +1828 85480 0.4890 +1828 89777 0.5820 +1828 117159 0.4310 +1828 126638 0.6280 +1828 137868 0.7760 +1828 144568 0.6080 +1828 147409 0.7240 +1828 286887 0.4160 +1828 374897 0.4840 +1828 388533 0.5840 +1828 388697 0.4730 +1828 388698 0.8850 +1828 440854 0.7000 +1828 448834 0.6080 +1828 100129271 0.5190 +1828 100506658 0.4170 +1829 1830 0.8120 +1829 1832 0.9980 +1829 1956 0.4650 +1829 1969 0.4740 +1829 2041 0.4290 +1829 2064 0.4030 +1829 2070 0.6020 +1829 2125 0.6270 +1829 2185 0.4100 +1829 2218 0.5510 +1829 2312 0.5660 +1829 2318 0.4580 +1829 2697 0.8380 +1829 3127 0.4470 +1829 3635 0.4340 +1829 3685 0.4020 +1829 3688 0.5080 +1829 3696 0.5100 +1829 3713 0.5870 +1829 3728 0.9970 +1829 3753 0.4480 +1829 3757 0.4790 +1829 3759 0.4400 +1829 3784 0.4640 +1829 3848 0.4400 +1829 3856 0.4420 +1829 3897 0.4750 +1829 3958 0.5020 +1829 4000 0.7280 +1829 4014 0.5970 +1829 4053 0.4090 +1829 4072 0.4210 +1829 4162 0.4280 +1829 4179 0.7710 +1829 4607 0.7620 +1829 4624 0.5960 +1829 4625 0.7210 +1829 4633 0.4470 +1829 4634 0.5070 +1829 4810 0.4160 +1829 5058 0.4100 +1829 5062 0.4110 +1829 5266 0.5160 +1829 5290 0.4080 +1829 5295 0.4030 +1829 5296 0.4030 +1829 5317 0.8950 +1829 5318 0.9990 +1829 5338 0.4110 +1829 5339 0.6730 +1829 5493 0.7390 +1829 5663 0.4820 +1829 5880 0.5580 +1829 5881 0.5510 +1829 6262 0.7640 +1829 6331 0.7680 +1829 6389 0.4410 +1829 6444 0.5920 +1829 6653 0.4930 +1829 6698 0.4990 +1829 6699 0.5000 +1829 6700 0.4990 +1829 6701 0.4990 +1829 6703 0.4990 +1829 6704 0.4990 +1829 6705 0.4990 +1829 6706 0.4990 +1829 6707 0.5000 +1829 6939 0.4020 +1829 7037 0.4520 +1829 7043 0.8060 +1829 7051 0.5870 +1829 7057 0.4590 +1829 7062 0.5160 +1829 7082 0.5000 +1829 7112 0.7750 +1829 7137 0.6750 +1829 7139 0.6670 +1829 7168 0.6460 +1829 7273 0.7080 +1829 7414 0.5820 +1829 7879 0.4190 +1829 8048 0.6680 +1829 8301 0.4470 +1829 8502 0.7650 +1829 8503 0.4020 +1829 8557 0.6470 +1829 8826 0.5220 +1829 9076 0.4090 +1829 9341 0.5830 +1829 9710 0.4120 +1829 9815 0.4050 +1829 9992 0.4320 +1829 10021 0.4160 +1829 10060 0.7130 +1829 10097 0.4400 +1829 10152 0.4050 +1829 10298 0.4210 +1829 10347 0.4940 +1829 10658 0.4810 +1829 10787 0.4420 +1829 10788 0.4150 +1829 10979 0.5440 +1829 11155 0.6630 +1829 11187 0.9260 +1829 23171 0.4450 +1829 23191 0.4090 +1829 23607 0.4980 +1829 29098 0.4170 +1829 29119 0.7140 +1829 50848 0.4480 +1829 51314 0.5920 +1829 51422 0.5060 +1829 51474 0.5200 +1829 55004 0.4230 +1829 55063 0.5990 +1829 55750 0.4100 +1829 55789 0.4430 +1829 55845 0.4010 +1829 55914 0.5210 +1829 55971 0.5440 +1829 57091 0.6130 +1829 64065 0.7170 +1829 64231 0.4180 +1829 79188 0.9240 +1829 79890 0.5070 +1829 81031 0.4190 +1829 81624 0.4380 +1829 81839 0.4520 +1829 91624 0.6240 +1829 123041 0.4740 +1829 126638 0.5180 +1829 143098 0.4190 +1829 147409 0.5710 +1829 200185 0.4730 +1829 282996 0.7570 +1829 643680 0.4220 +1829 100506658 0.5390 +1830 1832 0.9350 +1830 2125 0.9070 +1830 2312 0.7030 +1830 2709 0.5470 +1830 3123 0.6070 +1830 3713 0.7020 +1830 3728 0.8280 +1830 3848 0.7250 +1830 3852 0.6490 +1830 3853 0.6800 +1830 3854 0.7860 +1830 3857 0.4550 +1830 3858 0.4340 +1830 3860 0.4460 +1830 3861 0.7780 +1830 3866 0.4680 +1830 3868 0.5700 +1830 3872 0.4970 +1830 4014 0.7390 +1830 4593 0.4040 +1830 5266 0.5790 +1830 5268 0.5390 +1830 5275 0.5210 +1830 5317 0.9510 +1830 5318 0.8760 +1830 5339 0.7430 +1830 5493 0.9170 +1830 5650 0.4650 +1830 6698 0.7130 +1830 6699 0.7700 +1830 6700 0.5460 +1830 6701 0.6050 +1830 6703 0.5370 +1830 6704 0.5510 +1830 6705 0.4990 +1830 6706 0.5240 +1830 6707 0.7020 +1830 6714 0.5990 +1830 6939 0.5960 +1830 7051 0.6990 +1830 7062 0.5900 +1830 8416 0.4480 +1830 8502 0.6720 +1830 8626 0.4230 +1830 8689 0.4240 +1830 8797 0.5150 +1830 9635 0.4280 +1830 11187 0.9650 +1830 23650 0.6410 +1830 50489 0.4230 +1830 55584 0.7610 +1830 57053 0.4290 +1830 57402 0.4100 +1830 64065 0.7000 +1830 83481 0.5270 +1830 126638 0.5700 +1830 144568 0.6830 +1830 147409 0.7110 +1831 1843 0.7400 +1831 2288 0.5000 +1831 2289 0.7820 +1831 2309 0.5540 +1831 2353 0.7080 +1831 2908 0.7880 +1831 3066 0.4070 +1831 3291 0.4690 +1831 3394 0.5200 +1831 3484 0.4820 +1831 3569 0.4180 +1831 3725 0.5020 +1831 4087 0.4540 +1831 4306 0.5160 +1831 4790 0.6550 +1831 4792 0.4120 +1831 5187 0.4880 +1831 5241 0.4690 +1831 5894 0.9680 +1831 5970 0.4970 +1831 6233 0.4410 +1831 6337 0.6150 +1831 6338 0.6450 +1831 6339 0.4750 +1831 6340 0.5480 +1831 6446 0.9660 +1831 7040 0.4650 +1831 7124 0.4220 +1831 7157 0.6090 +1831 7316 0.4700 +1831 7538 0.4430 +1831 7704 0.5380 +1831 8022 0.5060 +1831 8648 0.4850 +1831 8848 0.8160 +1831 9819 0.8150 +1831 10110 0.5690 +1831 10488 0.4180 +1831 10499 0.5650 +1831 10628 0.4170 +1831 10629 0.4250 +1831 11059 0.5090 +1831 11266 0.5820 +1831 23093 0.7130 +1831 23327 0.8270 +1831 23678 0.5740 +1831 29959 0.8590 +1831 51440 0.4220 +1831 54541 0.5400 +1831 81628 0.7030 +1831 89884 0.5610 +1831 150864 0.5900 +1831 254173 0.7130 +1831 340371 0.7090 +1831 389941 0.5840 +1832 1894 0.4020 +1832 2023 0.4340 +1832 2125 0.9690 +1832 2312 0.7270 +1832 2318 0.5400 +1832 2335 0.5440 +1832 2525 0.4020 +1832 2620 0.5970 +1832 2670 0.6400 +1832 2697 0.8400 +1832 2706 0.5020 +1832 2707 0.5450 +1832 2810 0.4670 +1832 2908 0.4100 +1832 3309 0.5140 +1832 3691 0.4940 +1832 3713 0.8640 +1832 3728 0.9990 +1832 3848 0.8160 +1832 3852 0.5770 +1832 3853 0.5160 +1832 3856 0.8690 +1832 3858 0.4350 +1832 3861 0.5330 +1832 3868 0.5210 +1832 3872 0.4350 +1832 3875 0.9570 +1832 3880 0.8400 +1832 3958 0.4570 +1832 4000 0.7240 +1832 4014 0.8940 +1832 4072 0.4140 +1832 4137 0.4020 +1832 4478 0.5830 +1832 4607 0.4970 +1832 4609 0.4120 +1832 4629 0.4520 +1832 5175 0.4250 +1832 5266 0.7280 +1832 5317 0.9950 +1832 5318 0.9990 +1832 5339 0.5030 +1832 5411 0.6930 +1832 5493 0.9530 +1832 5578 0.4270 +1832 5592 0.5160 +1832 5652 0.4570 +1832 5962 0.4350 +1832 6262 0.6510 +1832 6331 0.5420 +1832 6591 0.4840 +1832 6615 0.4890 +1832 6657 0.4110 +1832 6692 0.4860 +1832 6698 0.5360 +1832 6699 0.5880 +1832 6700 0.5400 +1832 6701 0.5400 +1832 6703 0.5460 +1832 6704 0.5200 +1832 6705 0.4990 +1832 6706 0.5390 +1832 6707 0.5820 +1832 7043 0.5950 +1832 7051 0.6460 +1832 7053 0.4100 +1832 7062 0.7680 +1832 7082 0.8530 +1832 7139 0.4170 +1832 7157 0.5820 +1832 7273 0.5270 +1832 7414 0.6550 +1832 7431 0.6070 +1832 7448 0.4480 +1832 8502 0.9490 +1832 8533 0.5660 +1832 9076 0.4420 +1832 9992 0.4220 +1832 10146 0.5210 +1832 10653 0.4250 +1832 10848 0.5300 +1832 11187 0.9300 +1832 22919 0.4310 +1832 23271 0.5000 +1832 23326 0.4020 +1832 23581 0.4900 +1832 25793 0.6670 +1832 27134 0.5160 +1832 27289 0.6020 +1832 29119 0.5280 +1832 51199 0.4210 +1832 51574 0.5110 +1832 51806 0.5380 +1832 57402 0.4390 +1832 57662 0.4500 +1832 64065 0.8440 +1832 79188 0.6980 +1832 83481 0.5030 +1832 126638 0.6090 +1832 144100 0.4030 +1832 144568 0.6050 +1832 147409 0.7850 +1832 157922 0.4290 +1832 282996 0.4540 +1832 388698 0.5860 +1832 448834 0.4070 +1832 100506658 0.6210 +1832 100820829 0.4750 +1833 1842 0.4820 +1833 2331 0.5870 +1833 2335 0.4810 +1833 3339 0.5560 +1833 3486 0.4250 +1833 3703 0.4770 +1833 4012 0.5820 +1833 4060 0.6530 +1833 4148 0.4400 +1833 4322 0.4580 +1833 4958 0.4070 +1833 5336 0.5290 +1833 7045 0.4740 +1833 7060 0.5140 +1833 8785 0.5970 +1833 11061 0.4740 +1833 11081 0.5820 +1833 22859 0.5510 +1833 23141 0.4670 +1833 23266 0.5750 +1833 23284 0.5510 +1833 25949 0.4120 +1833 54829 0.5300 +1833 55083 0.4550 +1833 60506 0.5050 +1833 115908 0.4500 +1833 201595 0.5070 +1834 2182 0.6550 +1834 2192 0.4950 +1834 2247 0.5240 +1834 2597 0.4300 +1834 2737 0.4540 +1834 3381 0.9300 +1834 3685 0.9050 +1834 3688 0.9220 +1834 3694 0.9460 +1834 3960 0.5830 +1834 4086 0.5280 +1834 4087 0.5370 +1834 4089 0.5150 +1834 4162 0.4770 +1834 4314 0.4670 +1834 4782 0.4670 +1834 5251 0.4560 +1834 6678 0.5200 +1834 6696 0.8970 +1834 7286 0.7500 +1834 7450 0.4470 +1834 8646 0.6030 +1834 9313 0.6100 +1834 10117 0.8990 +1834 10413 0.4270 +1834 10763 0.4030 +1834 50511 0.4150 +1834 56955 0.9540 +1834 56975 0.5330 +1834 57045 0.5440 +1834 64386 0.4350 +1834 121340 0.5950 +1834 129804 0.7090 +1834 360203 0.5480 +1834 401138 0.4820 +1836 2261 0.5350 +1836 2752 0.4030 +1836 3294 0.4080 +1836 3340 0.5480 +1836 4148 0.9070 +1836 4361 0.4360 +1836 4538 0.5060 +1836 5566 0.4170 +1836 5567 0.4290 +1836 5568 0.4170 +1836 6208 0.4690 +1836 6521 0.5610 +1836 6561 0.9080 +1836 6574 0.4860 +1836 6949 0.6400 +1836 8459 0.4270 +1836 8671 0.4260 +1836 9058 0.8650 +1836 9060 0.9250 +1836 9061 0.9250 +1836 9321 0.8120 +1836 9356 0.5390 +1836 9497 0.4400 +1836 10082 0.4260 +1836 10380 0.4140 +1836 10491 0.4570 +1836 22993 0.5920 +1836 23169 0.4590 +1836 26266 0.8850 +1836 27284 0.4790 +1836 29127 0.4540 +1836 30815 0.4350 +1836 54928 0.4420 +1836 57128 0.4970 +1836 64175 0.4090 +1836 64849 0.8020 +1836 65010 0.4020 +1836 83697 0.4280 +1836 124583 0.8070 +1836 284129 0.4500 +1836 285362 0.4620 +1837 1936 0.5280 +1837 2218 0.4260 +1837 2670 0.5370 +1837 2697 0.4570 +1837 2702 0.4290 +1837 4154 0.4750 +1837 4593 0.5750 +1837 4607 0.5100 +1837 4625 0.5280 +1837 4842 0.6770 +1837 5339 0.8410 +1837 5913 0.6030 +1837 6261 0.5810 +1837 6331 0.4320 +1837 6442 0.9010 +1837 6443 0.7030 +1837 6444 0.8690 +1837 6445 0.7450 +1837 6616 0.4330 +1837 6640 0.9840 +1837 6641 0.9460 +1837 6645 0.9740 +1837 6901 0.7530 +1837 7082 0.4120 +1837 7137 0.4020 +1837 7139 0.6370 +1837 7168 0.4460 +1837 7273 0.4030 +1837 7307 0.4050 +1837 7402 0.9260 +1837 7414 0.5490 +1837 7984 0.5800 +1837 8048 0.4130 +1837 8082 0.9900 +1837 8291 0.4960 +1837 8506 0.5510 +1837 8727 0.8080 +1837 8776 0.4670 +1837 8910 0.4140 +1837 9722 0.4830 +1837 10060 0.4300 +1837 10363 0.4540 +1837 10529 0.4240 +1837 10916 0.4930 +1837 11155 0.6450 +1837 22954 0.4330 +1837 23092 0.5220 +1837 23336 0.8980 +1837 23345 0.4640 +1837 25914 0.4160 +1837 26258 0.4750 +1837 27063 0.4090 +1837 27295 0.4680 +1837 29119 0.4270 +1837 51438 0.5950 +1837 51778 0.4370 +1837 54212 0.8770 +1837 54221 0.9450 +1837 57474 0.4250 +1837 57692 0.7160 +1837 79147 0.5620 +1837 79443 0.6400 +1837 79772 0.4390 +1837 79839 0.4120 +1837 81493 0.9870 +1837 84062 0.8110 +1837 84654 0.5340 +1837 84908 0.7260 +1837 85366 0.4320 +1837 89872 0.4760 +1837 90141 0.4920 +1837 91133 0.4460 +1837 124152 0.4560 +1837 125972 0.4620 +1837 129285 0.8400 +1837 147912 0.4350 +1837 202333 0.6740 +1837 282996 0.4360 +1837 340784 0.5800 +1837 342898 0.4750 +1837 375790 0.5320 +1837 388552 0.4170 +1837 728239 0.4190 +1837 100509620 0.4760 +1838 3797 0.5620 +1838 3798 0.4610 +1838 3799 0.4380 +1838 3831 0.4700 +1838 4148 0.6000 +1838 4842 0.5690 +1838 5774 0.4840 +1838 6382 0.4240 +1838 6442 0.6660 +1838 6443 0.5340 +1838 6444 0.7190 +1838 6445 0.5450 +1838 6616 0.4730 +1838 6640 0.9150 +1838 6641 0.9220 +1838 6645 0.9370 +1838 6853 0.4730 +1838 7402 0.8600 +1838 8082 0.4970 +1838 8500 0.6640 +1838 8573 0.4170 +1838 8727 0.5510 +1838 8910 0.5660 +1838 9351 0.4800 +1838 10152 0.6200 +1838 10363 0.7000 +1838 22954 0.5320 +1838 23636 0.4300 +1838 26088 0.4760 +1838 26258 0.6090 +1838 54212 0.9510 +1838 54221 0.9800 +1838 55227 0.5400 +1838 59339 0.4630 +1838 79007 0.6000 +1838 79803 0.4050 +1838 81493 0.7430 +1838 84062 0.9190 +1838 84654 0.5210 +1838 89872 0.4760 +1838 93145 0.4010 +1838 117289 0.4790 +1838 129285 0.8410 +1838 200081 0.6310 +1838 340784 0.5800 +1838 375790 0.4920 +1838 388135 0.5010 +1838 100509620 0.4760 +1839 1846 0.4590 +1839 1903 0.7920 +1839 1906 0.5040 +1839 1938 0.5070 +1839 1950 0.9920 +1839 1956 0.9990 +1839 1958 0.5090 +1839 2060 0.5140 +1839 2064 0.9440 +1839 2065 0.9910 +1839 2066 0.9990 +1839 2069 0.9590 +1839 2099 0.6360 +1839 2246 0.6000 +1839 2247 0.8290 +1839 2248 0.6390 +1839 2249 0.6570 +1839 2250 0.6400 +1839 2251 0.6400 +1839 2252 0.7200 +1839 2253 0.6380 +1839 2254 0.6420 +1839 2255 0.6610 +1839 2258 0.5070 +1839 2261 0.4040 +1839 2321 0.5390 +1839 2335 0.4790 +1839 2353 0.6950 +1839 2354 0.4830 +1839 2534 0.4800 +1839 2549 0.4730 +1839 2554 0.4990 +1839 2560 0.4990 +1839 2561 0.4990 +1839 2562 0.4990 +1839 2566 0.4990 +1839 2567 0.4990 +1839 2597 0.4340 +1839 2668 0.7200 +1839 2817 0.9720 +1839 2885 0.5920 +1839 2919 0.4440 +1839 2920 0.4310 +1839 3082 0.7080 +1839 3084 0.7460 +1839 3091 0.6810 +1839 3164 0.4220 +1839 3265 0.5960 +1839 3267 0.5010 +1839 3320 0.5820 +1839 3339 0.5750 +1839 3383 0.5500 +1839 3458 0.4830 +1839 3479 0.5210 +1839 3480 0.6840 +1839 3491 0.4090 +1839 3552 0.5030 +1839 3553 0.6280 +1839 3558 0.5780 +1839 3565 0.4580 +1839 3569 0.6440 +1839 3570 0.4810 +1839 3576 0.5910 +1839 3586 0.4530 +1839 3630 0.4780 +1839 3682 0.4180 +1839 3684 0.5790 +1839 3687 0.6090 +1839 3725 0.5490 +1839 3727 0.4510 +1839 3791 0.5490 +1839 3845 0.6780 +1839 3910 0.4460 +1839 3934 0.6680 +1839 3949 0.5320 +1839 3976 0.4440 +1839 3977 0.4610 +1839 4035 0.4670 +1839 4036 0.5550 +1839 4145 0.5500 +1839 4233 0.4110 +1839 4313 0.9390 +1839 4314 0.8430 +1839 4316 0.7680 +1839 4318 0.9500 +1839 4323 0.9380 +1839 4324 0.9200 +1839 4325 0.9170 +1839 4326 0.9200 +1839 4609 0.6420 +1839 4852 0.4250 +1839 4889 0.4220 +1839 4893 0.5800 +1839 4898 0.9610 +1839 5008 0.4470 +1839 5034 0.6960 +1839 5054 0.5060 +1839 5155 0.5460 +1839 5159 0.6360 +1839 5175 0.4150 +1839 5201 0.6090 +1839 5228 0.6590 +1839 5290 0.5130 +1839 5295 0.4520 +1839 5321 0.4110 +1839 5328 0.6500 +1839 5329 0.4700 +1839 5335 0.5760 +1839 5578 0.5820 +1839 5580 0.4300 +1839 5595 0.5100 +1839 5743 0.8300 +1839 5747 0.5550 +1839 5753 0.5970 +1839 5774 0.4050 +1839 5781 0.5070 +1839 5782 0.5440 +1839 5788 0.5230 +1839 5796 0.4320 +1839 5829 0.5740 +1839 6233 0.5260 +1839 6319 0.4280 +1839 6347 0.6200 +1839 6367 0.5140 +1839 6387 0.4470 +1839 6455 0.4990 +1839 6456 0.5070 +1839 6457 0.4990 +1839 6461 0.5300 +1839 6464 0.6060 +1839 6590 0.6800 +1839 6654 0.4980 +1839 6714 0.8090 +1839 6774 0.4750 +1839 6844 0.4990 +1839 6845 0.4990 +1839 6868 0.9670 +1839 7010 0.5950 +1839 7039 0.9170 +1839 7040 0.5170 +1839 7042 0.4190 +1839 7057 0.4620 +1839 7076 0.4850 +1839 7099 0.4230 +1839 7124 0.5860 +1839 7132 0.5190 +1839 7311 0.4990 +1839 7314 0.4990 +1839 7316 0.5400 +1839 7424 0.4440 +1839 7525 0.4090 +1839 7704 0.7580 +1839 8027 0.5030 +1839 8038 0.6950 +1839 8301 0.6250 +1839 8673 0.4990 +1839 8743 0.6030 +1839 8751 0.4090 +1839 8754 0.5180 +1839 8817 0.6550 +1839 8822 0.6400 +1839 8823 0.6400 +1839 8870 0.5590 +1839 8874 0.5140 +1839 9146 0.5110 +1839 9185 0.4990 +1839 9341 0.5040 +1839 9370 0.7670 +1839 9510 0.5760 +1839 9518 0.4730 +1839 9542 0.7310 +1839 9892 0.5200 +1839 10221 0.5220 +1839 10252 0.5360 +1839 10253 0.6240 +1839 10254 0.4990 +1839 10457 0.7780 +1839 10468 0.5270 +1839 10675 0.4020 +1839 10718 0.6540 +1839 10893 0.9160 +1839 11140 0.5130 +1839 22905 0.4990 +1839 23213 0.5900 +1839 23566 0.4860 +1839 26018 0.5230 +1839 26119 0.4990 +1839 26281 0.6390 +1839 27006 0.6390 +1839 29924 0.4990 +1839 29978 0.4990 +1839 30011 0.5280 +1839 50489 0.4710 +1839 50507 0.4460 +1839 50943 0.5070 +1839 51072 0.5050 +1839 51330 0.5250 +1839 51738 0.4220 +1839 55824 0.4990 +1839 55879 0.4990 +1839 55914 0.5570 +1839 55959 0.5960 +1839 58513 0.4990 +1839 64285 0.4340 +1839 64386 0.9120 +1839 81027 0.4260 +1839 81849 0.7660 +1839 83697 0.4500 +1839 84168 0.4630 +1839 118429 0.4290 +1839 120892 0.5430 +1839 140685 0.4390 +1839 145957 0.7080 +1839 149111 0.4550 +1839 200576 0.4400 +1839 254263 0.4780 +1839 255324 0.9100 +1839 414325 0.6800 +1840 1879 0.4240 +1840 1959 0.4290 +1840 2033 0.4830 +1840 3516 0.8080 +1840 3714 0.5290 +1840 3955 0.4060 +1840 4242 0.4980 +1840 4609 0.4080 +1840 4851 0.9840 +1840 4853 0.9180 +1840 4854 0.8630 +1840 4855 0.8180 +1840 4924 0.4280 +1840 5663 0.6400 +1840 5664 0.4780 +1840 5991 0.4820 +1840 6233 0.6600 +1840 6932 0.4040 +1840 7311 0.4990 +1840 7314 0.5490 +1840 7316 0.5490 +1840 7321 0.4580 +1840 8650 0.4150 +1840 8812 0.5290 +1840 9253 0.4390 +1840 9794 0.7010 +1840 10683 0.4940 +1840 23013 0.4790 +1840 23220 0.6750 +1840 23385 0.6130 +1840 23462 0.6620 +1840 23509 0.4910 +1840 26039 0.5240 +1840 28514 0.6260 +1840 51107 0.5840 +1840 51341 0.4170 +1840 54567 0.5380 +1840 55534 0.5450 +1840 55851 0.5500 +1840 57801 0.5150 +1840 64919 0.4240 +1840 79576 0.6770 +1840 83464 0.4850 +1840 83666 0.5420 +1840 83737 0.8440 +1840 84441 0.5480 +1840 92737 0.8690 +1840 113878 0.5420 +1840 151636 0.8060 +1840 171558 0.6570 +1840 219287 0.4070 +1840 222546 0.5010 +1840 388585 0.5210 +1840 441478 0.7730 +1841 1854 0.9810 +1841 1890 0.5590 +1841 2237 0.6150 +1841 2618 0.8350 +1841 2987 0.6010 +1841 3145 0.5820 +1841 3396 0.4070 +1841 3615 0.4130 +1841 3704 0.5450 +1841 3978 0.5230 +1841 4171 0.4890 +1841 4172 0.4010 +1841 4173 0.4430 +1841 4174 0.5300 +1841 4522 0.4800 +1841 4705 0.5330 +1841 4759 0.6480 +1841 4830 0.9580 +1841 4831 0.9580 +1841 4832 0.9520 +1841 4833 0.9750 +1841 4907 0.9200 +1841 5111 0.4240 +1841 5471 0.4440 +1841 5832 0.5830 +1841 5884 0.5820 +1841 5888 0.4380 +1841 5982 0.6900 +1841 5983 0.6170 +1841 5984 0.6920 +1841 5985 0.6620 +1841 6240 0.9750 +1841 6241 0.9530 +1841 6470 0.4830 +1841 6472 0.5130 +1841 7083 0.9710 +1841 7084 0.9900 +1841 7153 0.4550 +1841 7167 0.4400 +1841 7298 0.9970 +1841 7371 0.6550 +1841 7372 0.7350 +1841 7374 0.5680 +1841 7378 0.5540 +1841 8317 0.6110 +1841 8382 0.4820 +1841 8833 0.5760 +1841 8883 0.4060 +1841 9202 0.4200 +1841 9768 0.4130 +1841 10201 0.9590 +1841 10302 0.4230 +1841 10494 0.4040 +1841 10535 0.6300 +1841 10606 0.5210 +1841 11130 0.4050 +1841 11333 0.4070 +1841 22978 0.9170 +1841 23583 0.5890 +1841 23594 0.4010 +1841 25902 0.4620 +1841 26289 0.5420 +1841 29922 0.9440 +1841 30833 0.9440 +1841 50484 0.9410 +1841 50808 0.6900 +1841 51021 0.4160 +1841 51078 0.4760 +1841 51154 0.4030 +1841 51251 0.9260 +1841 51281 0.4220 +1841 51314 0.4480 +1841 51727 0.9460 +1841 54963 0.5540 +1841 55364 0.8090 +1841 56953 0.9670 +1841 57092 0.4010 +1841 64090 0.8400 +1841 64146 0.4010 +1841 65993 0.5000 +1841 79019 0.4610 +1841 79077 0.4520 +1841 79598 0.5150 +1841 80324 0.5790 +1841 80817 0.6320 +1841 81602 0.5760 +1841 83549 0.5500 +1841 84618 0.9030 +1841 93034 0.9120 +1841 113179 0.5240 +1841 115024 0.9090 +1841 122481 0.4690 +1841 123263 0.4620 +1841 129607 0.8990 +1841 129807 0.8920 +1841 134637 0.5550 +1841 139596 0.5680 +1841 151531 0.5330 +1841 158067 0.4100 +1841 162417 0.4240 +1841 200895 0.7890 +1841 221264 0.9570 +1841 284273 0.4310 +1841 284439 0.5370 +1841 377841 0.9100 +1841 387103 0.4980 +1841 654364 0.9450 +1841 100526794 0.9010 +1842 1893 0.5440 +1842 4060 0.6080 +1842 4958 0.7030 +1842 4969 0.6870 +1842 5339 0.4120 +1842 5356 0.7280 +1842 5549 0.4140 +1842 5738 0.4220 +1842 7450 0.5920 +1842 8076 0.4210 +1842 8896 0.8200 +1842 9343 0.6420 +1842 9785 0.4260 +1842 10631 0.4550 +1842 11081 0.4060 +1842 22859 0.5140 +1842 22938 0.8410 +1842 23266 0.5210 +1842 23284 0.5180 +1842 23507 0.4580 +1842 25949 0.4580 +1842 30008 0.4120 +1842 51503 0.7410 +1842 54829 0.6760 +1842 54883 0.5700 +1842 55696 0.8130 +1842 55702 0.5630 +1842 56262 0.4210 +1842 56949 0.5160 +1842 57703 0.4770 +1842 79442 0.4110 +1842 83468 0.5300 +1842 123355 0.4180 +1842 255252 0.4270 +1842 283298 0.4730 +1842 341640 0.4320 +1842 376132 0.4450 +1842 390205 0.4430 +1842 474354 0.4250 +1843 1890 0.4270 +1843 1956 0.6680 +1843 1958 0.8000 +1843 1959 0.6560 +1843 1960 0.4620 +1843 1994 0.4650 +1843 2289 0.5300 +1843 2353 0.9610 +1843 2354 0.8640 +1843 2355 0.5270 +1843 2597 0.4960 +1843 2624 0.4340 +1843 2908 0.5820 +1843 2920 0.4980 +1843 3021 0.6160 +1843 3065 0.7110 +1843 3091 0.5750 +1843 3164 0.7940 +1843 3303 0.6070 +1843 3304 0.6060 +1843 3308 0.4830 +1843 3316 0.4280 +1843 3397 0.4340 +1843 3458 0.4430 +1843 3491 0.6090 +1843 3551 0.5160 +1843 3552 0.4380 +1843 3553 0.6150 +1843 3569 0.7450 +1843 3576 0.5310 +1843 3586 0.5030 +1843 3608 0.4900 +1843 3659 0.4010 +1843 3680 0.4380 +1843 3700 0.5300 +1843 3725 0.9110 +1843 3726 0.6980 +1843 3727 0.4670 +1843 4170 0.4560 +1843 4217 0.4730 +1843 4609 0.6460 +1843 4616 0.6690 +1843 4684 0.4180 +1843 4780 0.4580 +1843 4790 0.4610 +1843 4792 0.6520 +1843 4929 0.6770 +1843 4946 0.4360 +1843 5578 0.5220 +1843 5594 0.9960 +1843 5595 0.9960 +1843 5596 0.5340 +1843 5597 0.5750 +1843 5598 0.5220 +1843 5599 0.9920 +1843 5600 0.9730 +1843 5601 0.9680 +1843 5603 0.9550 +1843 5604 0.6990 +1843 5606 0.5380 +1843 5608 0.4250 +1843 5609 0.5130 +1843 5728 0.4360 +1843 5743 0.5580 +1843 5770 0.5170 +1843 5778 0.4420 +1843 5801 0.6350 +1843 5805 0.5340 +1843 5829 0.4580 +1843 5996 0.4430 +1843 5997 0.6000 +1843 6300 0.9720 +1843 6347 0.4530 +1843 6387 0.4080 +1843 6416 0.6180 +1843 6446 0.6110 +1843 6502 0.8080 +1843 6622 0.4310 +1843 6714 0.4530 +1843 6772 0.6460 +1843 6774 0.4500 +1843 7058 0.4760 +1843 7094 0.6690 +1843 7097 0.4610 +1843 7099 0.5000 +1843 7124 0.6010 +1843 7128 0.4660 +1843 7157 0.5160 +1843 7414 0.4470 +1843 7538 0.9340 +1843 7832 0.7390 +1843 8013 0.4270 +1843 8290 0.5840 +1843 8356 0.5830 +1843 8870 0.4400 +1843 9020 0.4890 +1843 9021 0.5200 +1843 9261 0.4420 +1843 9314 0.4480 +1843 9592 0.7490 +1843 10221 0.5710 +1843 10365 0.5270 +1843 10912 0.4410 +1843 11213 0.4740 +1843 11266 0.4590 +1843 23162 0.4610 +1843 23645 0.7460 +1843 26986 0.5520 +1843 51430 0.5290 +1843 51806 0.5500 +1843 54458 0.5480 +1843 54861 0.6470 +1843 54935 0.4780 +1843 64332 0.6380 +1843 64651 0.4710 +1843 79094 0.4720 +1843 83660 0.6720 +1843 91860 0.5510 +1843 114907 0.4230 +1843 150094 0.4200 +1843 163688 0.5510 +1843 225689 0.4080 +1843 440093 0.5820 +1843 440138 0.5220 +1843 440686 0.5820 +1843 653604 0.5820 +1843 100423062 0.4310 +1843 102723407 0.6210 +1844 1846 0.4800 +1844 1958 0.5730 +1844 1959 0.5400 +1844 1960 0.5320 +1844 1961 0.4880 +1844 2353 0.5770 +1844 2354 0.6090 +1844 3164 0.5960 +1844 3725 0.5280 +1844 3726 0.4590 +1844 4616 0.4540 +1844 4929 0.5750 +1844 5036 0.4090 +1844 5594 0.8410 +1844 5595 0.9080 +1844 5598 0.4290 +1844 5599 0.9420 +1844 5600 0.7850 +1844 5601 0.9360 +1844 5603 0.7590 +1844 5609 0.4140 +1844 5778 0.4950 +1844 5903 0.4120 +1844 5996 0.4660 +1844 6300 0.7680 +1844 6310 0.5220 +1844 6772 0.4050 +1844 6854 0.6140 +1844 7124 0.4370 +1844 7128 0.5270 +1844 7538 0.5250 +1844 8224 0.6100 +1844 9592 0.4400 +1844 11266 0.6060 +1844 23405 0.4690 +1844 51366 0.4120 +1844 54861 0.7620 +1844 56998 0.4660 +1845 1956 0.4330 +1845 4088 0.4170 +1845 4773 0.4670 +1845 5495 0.4780 +1845 5496 0.5070 +1845 5536 0.5190 +1845 5594 0.9790 +1845 5595 0.9730 +1845 5598 0.5980 +1845 5599 0.9350 +1845 5600 0.9280 +1845 5601 0.9290 +1845 5603 0.9270 +1845 5770 0.6990 +1845 5771 0.6050 +1845 5774 0.4280 +1845 5778 0.9640 +1845 5780 0.5200 +1845 5781 0.4900 +1845 5782 0.4070 +1845 5783 0.4460 +1845 5801 0.9340 +1845 5805 0.7110 +1845 6300 0.9300 +1845 6776 0.5000 +1845 6777 0.5030 +1845 7444 0.5610 +1845 7535 0.5990 +1845 7957 0.6470 +1845 8073 0.4010 +1845 8446 0.4630 +1845 8556 0.5150 +1845 10184 0.4500 +1845 10613 0.6560 +1845 11160 0.6330 +1845 22992 0.4680 +1845 23173 0.4460 +1845 51231 0.9790 +1845 54935 0.6740 +1845 79089 0.4760 +1845 81790 0.4320 +1845 83590 0.5080 +1845 84135 0.4020 +1845 84867 0.9230 +1845 113444 0.4220 +1845 114971 0.4460 +1845 115362 0.5440 +1845 151188 0.4360 +1846 1848 0.5740 +1846 1958 0.6660 +1846 2069 0.4200 +1846 2113 0.5760 +1846 2118 0.4640 +1846 2119 0.4750 +1846 2353 0.5340 +1846 2794 0.4890 +1846 3060 0.4290 +1846 3164 0.4140 +1846 3483 0.4200 +1846 3725 0.5450 +1846 3845 0.4510 +1846 4893 0.4100 +1846 5594 0.9310 +1846 5595 0.9640 +1846 5598 0.6310 +1846 5599 0.9810 +1846 5600 0.7840 +1846 5601 0.9780 +1846 5603 0.7840 +1846 5604 0.5130 +1846 5605 0.5980 +1846 5606 0.4120 +1846 5609 0.4350 +1846 5729 0.4930 +1846 5730 0.5700 +1846 5778 0.4120 +1846 5781 0.5550 +1846 6196 0.5100 +1846 6300 0.7980 +1846 6310 0.5590 +1846 8061 0.4030 +1846 8754 0.5010 +1846 10253 0.5670 +1846 11099 0.7060 +1846 11266 0.5590 +1846 22822 0.5360 +1846 27306 0.5840 +1846 81848 0.5720 +1847 1958 0.5500 +1847 1959 0.4210 +1847 1960 0.4470 +1847 2033 0.5040 +1847 2321 0.4120 +1847 2324 0.4670 +1847 2353 0.7860 +1847 2354 0.4390 +1847 2355 0.4600 +1847 3164 0.4840 +1847 3309 0.4320 +1847 3700 0.8990 +1847 3725 0.6090 +1847 3727 0.5880 +1847 3791 0.4370 +1847 4609 0.4010 +1847 4616 0.4910 +1847 4773 0.4380 +1847 5594 0.8880 +1847 5595 0.9420 +1847 5598 0.4970 +1847 5599 0.9690 +1847 5600 0.7990 +1847 5601 0.9590 +1847 5603 0.7990 +1847 5604 0.4950 +1847 5609 0.4450 +1847 5743 0.5240 +1847 5778 0.4200 +1847 5781 0.4300 +1847 5801 0.4210 +1847 5805 0.5130 +1847 6300 0.8040 +1847 6422 0.4130 +1847 6794 0.4310 +1847 7082 0.6220 +1847 7128 0.4150 +1847 7157 0.4430 +1847 7375 0.4050 +1847 7414 0.4640 +1847 7450 0.4770 +1847 7535 0.4460 +1847 7855 0.4080 +1847 8061 0.4400 +1847 8446 0.8960 +1847 8870 0.6150 +1847 9314 0.4500 +1847 9451 0.6020 +1847 9590 0.4300 +1847 9958 0.4070 +1847 10221 0.4360 +1847 10253 0.6500 +1847 22822 0.5550 +1847 23493 0.5660 +1847 26191 0.4570 +1847 51430 0.5090 +1847 51474 0.6220 +1847 51719 0.5530 +1847 54800 0.4070 +1847 54861 0.8390 +1847 54935 0.4320 +1847 64332 0.5260 +1847 64651 0.4300 +1847 81848 0.4700 +1847 84168 0.5710 +1847 92335 0.4290 +1847 161742 0.5250 +1847 200734 0.5610 +1847 390714 0.4300 +1847 100423062 0.4360 +1847 102723407 0.6690 +1848 1849 0.4320 +1848 1850 0.5240 +1848 1852 0.4710 +1848 1956 0.4980 +1848 1958 0.7290 +1848 1959 0.4580 +1848 1960 0.5720 +1848 2065 0.5450 +1848 2113 0.5550 +1848 2115 0.4090 +1848 2118 0.5970 +1848 2119 0.6060 +1848 2248 0.6110 +1848 2250 0.4020 +1848 2252 0.4030 +1848 2253 0.5730 +1848 2254 0.4170 +1848 2255 0.4150 +1848 2260 0.4760 +1848 2263 0.4050 +1848 2353 0.7430 +1848 2798 0.4930 +1848 2885 0.4570 +1848 3164 0.5080 +1848 3397 0.4830 +1848 3725 0.6760 +1848 3730 0.4010 +1848 3845 0.5010 +1848 3955 0.4910 +1848 4854 0.4060 +1848 4893 0.4640 +1848 5594 0.9960 +1848 5595 0.9850 +1848 5598 0.7090 +1848 5599 0.4430 +1848 5604 0.6120 +1848 5605 0.6040 +1848 5728 0.4020 +1848 5770 0.4150 +1848 5778 0.5710 +1848 5781 0.5070 +1848 5801 0.5210 +1848 5805 0.5050 +1848 5894 0.4810 +1848 6196 0.5520 +1848 6310 0.5540 +1848 6385 0.4230 +1848 6654 0.4110 +1848 6664 0.4190 +1848 7157 0.6180 +1848 8061 0.4580 +1848 8313 0.5270 +1848 8817 0.4780 +1848 8822 0.4680 +1848 8870 0.5840 +1848 9394 0.4180 +1848 9451 0.4180 +1848 10252 0.5060 +1848 10253 0.8290 +1848 10320 0.4040 +1848 10637 0.4610 +1848 11221 0.5090 +1848 22822 0.4630 +1848 22943 0.5100 +1848 23462 0.5200 +1848 23767 0.5410 +1848 26191 0.4470 +1848 51231 0.4540 +1848 54756 0.5020 +1848 55211 0.4180 +1848 55504 0.4680 +1848 63939 0.6110 +1848 81848 0.7520 +1848 85407 0.5910 +1848 136991 0.4940 +1848 144699 0.4940 +1848 145873 0.4510 +1848 151871 0.4180 +1848 161742 0.4500 +1848 200734 0.4870 +1848 388585 0.4460 +1848 441478 0.6440 +1848 768206 0.4680 +1849 1850 0.5620 +1849 1852 0.9000 +1849 3703 0.4680 +1849 5129 0.5480 +1849 5594 0.9160 +1849 5595 0.8300 +1849 5598 0.6290 +1849 5599 0.9270 +1849 5600 0.7510 +1849 5601 0.9200 +1849 5603 0.7490 +1849 5778 0.4320 +1849 6300 0.7530 +1849 6499 0.4600 +1849 8405 0.7080 +1849 9652 0.4590 +1849 11221 0.5180 +1849 23276 0.4190 +1849 55858 0.4830 +1849 56052 0.4670 +1849 56940 0.4330 +1849 64718 0.4370 +1849 80824 0.5560 +1849 94032 0.4360 +1849 166647 0.4110 +1849 221061 0.4140 +1849 389207 0.4060 +1850 1852 0.5520 +1850 1892 0.4570 +1850 2353 0.4130 +1850 2354 0.4600 +1850 3183 0.5230 +1850 3725 0.5210 +1850 5594 0.8080 +1850 5595 0.7930 +1850 5599 0.9820 +1850 5600 0.8660 +1850 5601 0.9680 +1850 5603 0.8590 +1850 5609 0.4930 +1850 6300 0.8610 +1850 7124 0.4460 +1850 10221 0.4010 +1850 11221 0.5550 +1850 56940 0.4280 +1850 80824 0.4540 +1850 94032 0.4470 +1850 115399 0.4680 +1850 102723407 0.5800 +1852 3087 0.4180 +1852 3183 0.4410 +1852 3667 0.5930 +1852 3784 0.4760 +1852 5475 0.5110 +1852 5594 0.9880 +1852 5595 0.9830 +1852 5598 0.5770 +1852 5599 0.9280 +1852 5600 0.8470 +1852 5601 0.9180 +1852 5603 0.7380 +1852 6300 0.7390 +1852 6513 0.4410 +1852 6517 0.4300 +1852 6934 0.4580 +1852 8872 0.4830 +1852 10363 0.4550 +1852 11221 0.5440 +1852 54469 0.4630 +1852 54901 0.5180 +1852 80320 0.4730 +1852 80824 0.5370 +1852 84033 0.4460 +1852 84327 0.5070 +1852 116985 0.4740 +1852 136259 0.5080 +1852 169026 0.4520 +1852 221895 0.4320 +1854 1890 0.5170 +1854 2237 0.5340 +1854 2618 0.6550 +1854 2968 0.4010 +1854 2987 0.4930 +1854 3015 0.5370 +1854 3145 0.4360 +1854 3619 0.4120 +1854 3704 0.9590 +1854 3925 0.4230 +1854 3978 0.4620 +1854 4085 0.6580 +1854 4171 0.6610 +1854 4172 0.7440 +1854 4173 0.7550 +1854 4174 0.7320 +1854 4175 0.7560 +1854 4176 0.8530 +1854 4436 0.4160 +1854 4678 0.4390 +1854 4830 0.9450 +1854 4831 0.9370 +1854 4832 0.9360 +1854 4833 0.9330 +1854 4907 0.9020 +1854 4913 0.6240 +1854 4968 0.4080 +1854 5111 0.8050 +1854 5184 0.4210 +1854 5202 0.4580 +1854 5422 0.4530 +1854 5424 0.4180 +1854 5465 0.7910 +1854 5471 0.4230 +1854 5557 0.4420 +1854 5558 0.4480 +1854 5888 0.5830 +1854 5983 0.8770 +1854 5984 0.6200 +1854 5985 0.4120 +1854 6182 0.4690 +1854 6240 0.8860 +1854 6241 0.7610 +1854 6633 0.4330 +1854 6742 0.4600 +1854 6996 0.5050 +1854 7083 0.7520 +1854 7084 0.9550 +1854 7097 0.4700 +1854 7298 0.9940 +1854 7371 0.4980 +1854 7372 0.6640 +1854 7374 0.8080 +1854 7378 0.4850 +1854 8318 0.4210 +1854 8833 0.4480 +1854 9156 0.4240 +1854 9172 0.7660 +1854 9319 0.4140 +1854 9493 0.4030 +1854 9837 0.4600 +1854 9918 0.5610 +1854 10051 0.5680 +1854 10135 0.4210 +1854 10201 0.9480 +1854 10403 0.4730 +1854 10535 0.5050 +1854 10592 0.4770 +1854 10744 0.4870 +1854 11151 0.4550 +1854 11164 0.5390 +1854 11270 0.4660 +1854 22978 0.9030 +1854 23386 0.4270 +1854 23397 0.4650 +1854 23583 0.5350 +1854 23603 0.4370 +1854 27301 0.4470 +1854 29922 0.9360 +1854 30833 0.9420 +1854 50484 0.6830 +1854 51053 0.6600 +1854 51251 0.9100 +1854 51659 0.4370 +1854 51661 0.4090 +1854 51727 0.5400 +1854 54963 0.4160 +1854 55270 0.4270 +1854 55342 0.4130 +1854 55364 0.5950 +1854 55723 0.4070 +1854 55930 0.4280 +1854 56061 0.4320 +1854 56953 0.9160 +1854 57175 0.4150 +1854 60490 0.4120 +1854 64151 0.5050 +1854 65993 0.4030 +1854 79077 0.5080 +1854 79717 0.4260 +1854 79873 0.6000 +1854 80152 0.5430 +1854 80817 0.4960 +1854 81602 0.4070 +1854 81620 0.4830 +1854 83549 0.4270 +1854 83858 0.4210 +1854 84296 0.4780 +1854 84618 0.9010 +1854 84940 0.5400 +1854 84955 0.6240 +1854 90639 0.4120 +1854 93034 0.9120 +1854 94239 0.4990 +1854 115024 0.9030 +1854 129607 0.4330 +1854 139596 0.4690 +1854 151531 0.4490 +1854 200895 0.5600 +1854 221264 0.9380 +1854 378708 0.4640 +1854 654364 0.9340 +1854 728621 0.4090 +1854 100526739 0.4520 +1854 100526794 0.9020 +1855 1856 0.9910 +1855 1857 0.9660 +1855 1947 0.5490 +1855 1950 0.4210 +1855 1951 0.5500 +1855 1952 0.5410 +1855 2302 0.4380 +1855 2326 0.4300 +1855 2487 0.6020 +1855 2535 0.9390 +1855 2776 0.9180 +1855 2931 0.5700 +1855 2932 0.9990 +1855 3065 0.4810 +1855 3172 0.8450 +1855 3308 0.7420 +1855 3312 0.6710 +1855 3725 0.7380 +1855 4007 0.9910 +1855 4040 0.9980 +1855 4041 0.9990 +1855 4086 0.5320 +1855 4087 0.5240 +1855 4088 0.7760 +1855 4089 0.5730 +1855 4092 0.5070 +1855 4162 0.4830 +1855 4593 0.9130 +1855 4609 0.5890 +1855 4693 0.4100 +1855 4734 0.4780 +1855 4851 0.9350 +1855 4853 0.9300 +1855 4854 0.9300 +1855 4855 0.9190 +1855 4919 0.4940 +1855 4920 0.5800 +1855 5216 0.5870 +1855 5515 0.5690 +1855 5516 0.5480 +1855 5518 0.5540 +1855 5519 0.5240 +1855 5525 0.5670 +1855 5526 0.5490 +1855 5527 0.5210 +1855 5528 0.5720 +1855 5529 0.6100 +1855 5580 0.6630 +1855 5590 0.6460 +1855 5599 0.7420 +1855 5601 0.4090 +1855 5609 0.4360 +1855 5682 0.4060 +1855 5683 0.4180 +1855 5684 0.4810 +1855 5685 0.4060 +1855 5686 0.4060 +1855 5687 0.4060 +1855 5688 0.4110 +1855 5689 0.4060 +1855 5690 0.4060 +1855 5691 0.4060 +1855 5693 0.4070 +1855 5695 0.4180 +1855 5696 0.4160 +1855 5699 0.4180 +1855 5700 0.4060 +1855 5701 0.4060 +1855 5702 0.4190 +1855 5704 0.4330 +1855 5705 0.4090 +1855 5706 0.4170 +1855 5708 0.4450 +1855 5709 0.4550 +1855 5710 0.4090 +1855 5713 0.4180 +1855 5716 0.4330 +1855 5719 0.4010 +1855 5728 0.4360 +1855 5745 0.5110 +1855 5754 0.8790 +1855 5783 0.4090 +1855 5879 0.6580 +1855 5880 0.5780 +1855 5881 0.5950 +1855 6093 0.5330 +1855 6095 0.4180 +1855 6233 0.5150 +1855 6259 0.9170 +1855 6422 0.8020 +1855 6423 0.5870 +1855 6424 0.5030 +1855 6425 0.5110 +1855 6469 0.4750 +1855 6608 0.5100 +1855 6720 0.5150 +1855 6748 0.5120 +1855 6774 0.4420 +1855 6794 0.4200 +1855 6857 0.4530 +1855 6932 0.4930 +1855 6934 0.6540 +1855 7295 0.4600 +1855 7311 0.4990 +1855 7314 0.5060 +1855 7316 0.5270 +1855 7375 0.4880 +1855 7471 0.9490 +1855 7472 0.8190 +1855 7473 0.7670 +1855 7474 0.9610 +1855 7475 0.5630 +1855 7476 0.8720 +1855 7477 0.7910 +1855 7478 0.7430 +1855 7479 0.7250 +1855 7480 0.5990 +1855 7481 0.9560 +1855 7482 0.5620 +1855 7483 0.5660 +1855 7484 0.5610 +1855 7804 0.4660 +1855 7855 0.9610 +1855 7874 0.4520 +1855 7976 0.9580 +1855 7982 0.4510 +1855 8061 0.4260 +1855 8239 0.4680 +1855 8312 0.9990 +1855 8313 0.9910 +1855 8321 0.9800 +1855 8322 0.9530 +1855 8323 0.9640 +1855 8324 0.9920 +1855 8325 0.8790 +1855 8326 0.8970 +1855 8395 0.5860 +1855 8405 0.4430 +1855 8434 0.4420 +1855 8452 0.6420 +1855 8549 0.4610 +1855 8658 0.5390 +1855 8826 0.7020 +1855 8878 0.5260 +1855 8945 0.8020 +1855 9113 0.4740 +1855 9182 0.5130 +1855 9208 0.4690 +1855 9209 0.7090 +1855 9253 0.4040 +1855 9620 0.8250 +1855 9826 0.5160 +1855 9908 0.6070 +1855 9978 0.5430 +1855 10013 0.4430 +1855 10023 0.9960 +1855 10075 0.4540 +1855 10076 0.7930 +1855 10213 0.4270 +1855 10297 0.9260 +1855 10413 0.5990 +1855 10498 0.4710 +1855 10699 0.5480 +1855 10811 0.5540 +1855 11060 0.4140 +1855 11197 0.5330 +1855 11211 0.8320 +1855 22881 0.9740 +1855 22897 0.5380 +1855 22943 0.6650 +1855 23002 0.9990 +1855 23072 0.9840 +1855 23401 0.9200 +1855 23411 0.4230 +1855 23500 0.9900 +1855 23513 0.8180 +1855 25805 0.9100 +1855 25937 0.4420 +1855 25960 0.5170 +1855 27031 0.5280 +1855 27035 0.5430 +1855 27121 0.5460 +1855 27122 0.4820 +1855 27123 0.7080 +1855 27130 0.9990 +1855 27152 0.4020 +1855 27252 0.4270 +1855 29964 0.9910 +1855 50855 0.5150 +1855 50964 0.5900 +1855 51176 0.7960 +1855 51259 0.5230 +1855 51339 0.9660 +1855 51384 0.5260 +1855 51523 0.9610 +1855 51701 0.5420 +1855 51741 0.7560 +1855 54361 0.8150 +1855 54894 0.7510 +1855 55361 0.4380 +1855 55366 0.5340 +1855 56998 0.4790 +1855 57216 0.9980 +1855 59343 0.9110 +1855 59349 0.9870 +1855 64223 0.4250 +1855 64359 0.9660 +1855 64750 0.4140 +1855 64840 0.5480 +1855 79971 0.4510 +1855 80199 0.5550 +1855 80319 0.9830 +1855 80326 0.5110 +1855 80351 0.5120 +1855 80772 0.4220 +1855 80834 0.5660 +1855 80835 0.6820 +1855 81029 0.7730 +1855 81839 0.9970 +1855 83439 0.4520 +1855 83737 0.4950 +1855 83756 0.6320 +1855 83999 0.4040 +1855 84133 0.7920 +1855 84168 0.4170 +1855 84260 0.4160 +1855 84870 0.5900 +1855 85407 0.9910 +1855 85409 0.9960 +1855 85445 0.4120 +1855 85458 0.7880 +1855 89780 0.9660 +1855 91147 0.4650 +1855 92162 0.8930 +1855 120892 0.8300 +1855 122706 0.4060 +1855 124056 0.5000 +1855 126549 0.6220 +1855 128272 0.6540 +1855 139285 0.7880 +1855 143471 0.4060 +1855 144165 0.9950 +1855 147906 0.4560 +1855 158046 0.9020 +1855 166336 0.9930 +1855 168002 0.5980 +1855 259266 0.4600 +1855 260425 0.4300 +1855 261734 0.5190 +1855 283106 0.9120 +1855 284654 0.5150 +1855 285489 0.5000 +1855 340419 0.5710 +1855 375790 0.5740 +1855 440193 0.9930 +1855 104909134 0.5710 +1856 1857 0.9900 +1856 1951 0.5180 +1856 1952 0.5150 +1856 2033 0.4820 +1856 2060 0.5790 +1856 2066 0.4560 +1856 2304 0.4930 +1856 2487 0.5850 +1856 2534 0.5290 +1856 2535 0.9560 +1856 2776 0.9110 +1856 2931 0.6210 +1856 2932 0.9760 +1856 3054 0.4420 +1856 3172 0.5930 +1856 3267 0.5410 +1856 3607 0.6250 +1856 3667 0.4340 +1856 3725 0.4170 +1856 3796 0.5420 +1856 3949 0.5730 +1856 4005 0.4240 +1856 4007 0.9700 +1856 4036 0.5760 +1856 4040 0.9930 +1856 4041 0.8800 +1856 4088 0.6030 +1856 4218 0.4110 +1856 4609 0.4790 +1856 4693 0.6470 +1856 4841 0.5650 +1856 4851 0.9310 +1856 4853 0.9260 +1856 4854 0.9300 +1856 4855 0.9140 +1856 4920 0.4140 +1856 5216 0.5280 +1856 5252 0.4420 +1856 5347 0.9140 +1856 5515 0.5750 +1856 5516 0.5470 +1856 5518 0.5540 +1856 5519 0.5070 +1856 5525 0.5840 +1856 5526 0.5270 +1856 5527 0.5460 +1856 5528 0.5880 +1856 5529 0.5970 +1856 5546 0.4880 +1856 5578 0.4940 +1856 5579 0.4460 +1856 5582 0.4460 +1856 5584 0.4640 +1856 5590 0.5680 +1856 5599 0.6800 +1856 5682 0.4810 +1856 5683 0.4180 +1856 5684 0.4060 +1856 5685 0.4060 +1856 5686 0.4060 +1856 5687 0.4060 +1856 5688 0.4810 +1856 5689 0.4470 +1856 5690 0.4060 +1856 5691 0.4060 +1856 5693 0.4100 +1856 5694 0.4090 +1856 5695 0.4180 +1856 5696 0.4060 +1856 5699 0.4180 +1856 5700 0.4060 +1856 5701 0.4060 +1856 5702 0.4190 +1856 5704 0.4320 +1856 5705 0.4100 +1856 5706 0.4900 +1856 5708 0.4350 +1856 5709 0.4960 +1856 5713 0.4180 +1856 5714 0.6180 +1856 5715 0.4140 +1856 5716 0.4160 +1856 5717 0.4800 +1856 5719 0.4050 +1856 5720 0.4010 +1856 5728 0.5940 +1856 5754 0.5820 +1856 5879 0.6180 +1856 5880 0.5590 +1856 5881 0.5610 +1856 6233 0.5050 +1856 6259 0.5320 +1856 6295 0.4230 +1856 6421 0.5470 +1856 6422 0.7060 +1856 6423 0.4860 +1856 6453 0.5250 +1856 6608 0.4090 +1856 6714 0.5770 +1856 6790 0.4960 +1856 6844 0.5080 +1856 6845 0.4990 +1856 6869 0.4160 +1856 7027 0.5500 +1856 7049 0.5430 +1856 7082 0.4730 +1856 7088 0.4940 +1856 7157 0.5620 +1856 7186 0.5500 +1856 7311 0.4990 +1856 7314 0.5060 +1856 7316 0.5060 +1856 7428 0.7570 +1856 7471 0.7840 +1856 7472 0.4520 +1856 7473 0.5260 +1856 7474 0.9780 +1856 7475 0.4630 +1856 7476 0.5140 +1856 7477 0.6780 +1856 7478 0.7010 +1856 7479 0.6620 +1856 7480 0.4770 +1856 7481 0.8800 +1856 7482 0.4450 +1856 7483 0.4940 +1856 7484 0.5180 +1856 7709 0.4080 +1856 7786 0.4810 +1856 7855 0.9640 +1856 7976 0.8820 +1856 8218 0.4990 +1856 8241 0.4620 +1856 8301 0.5260 +1856 8312 0.9990 +1856 8313 0.9690 +1856 8321 0.9280 +1856 8322 0.9850 +1856 8323 0.9330 +1856 8324 0.9640 +1856 8325 0.9370 +1856 8326 0.9270 +1856 8395 0.5180 +1856 8452 0.7320 +1856 8658 0.4080 +1856 8673 0.4990 +1856 8878 0.7790 +1856 8945 0.6480 +1856 9113 0.6490 +1856 9175 0.4260 +1856 9341 0.5050 +1856 9463 0.4190 +1856 9491 0.4830 +1856 9513 0.4210 +1856 9620 0.7840 +1856 9830 0.4420 +1856 9892 0.5260 +1856 9978 0.5150 +1856 10009 0.4830 +1856 10023 0.9210 +1856 10197 0.4040 +1856 10213 0.4080 +1856 10297 0.9080 +1856 10811 0.5220 +1856 11059 0.7420 +1856 11060 0.7650 +1856 11127 0.5200 +1856 11211 0.7970 +1856 11338 0.5580 +1856 11345 0.4560 +1856 22848 0.5200 +1856 22881 0.5250 +1856 22905 0.5520 +1856 22943 0.4530 +1856 23002 0.9780 +1856 23149 0.5160 +1856 23327 0.4490 +1856 23368 0.4470 +1856 23401 0.9040 +1856 23500 0.9360 +1856 23513 0.4730 +1856 23541 0.4390 +1856 23650 0.8560 +1856 23710 0.6420 +1856 25805 0.9340 +1856 25937 0.9420 +1856 25977 0.4990 +1856 26119 0.5060 +1856 26524 0.5960 +1856 27035 0.4990 +1856 27130 0.9420 +1856 29924 0.6790 +1856 29964 0.9690 +1856 29978 0.5050 +1856 50618 0.5110 +1856 50855 0.9580 +1856 51176 0.5420 +1856 51224 0.4220 +1856 51339 0.9920 +1856 51384 0.4080 +1856 51421 0.6770 +1856 51588 0.4400 +1856 51720 0.4390 +1856 51741 0.8980 +1856 53353 0.5180 +1856 54101 0.4860 +1856 54361 0.7470 +1856 54819 0.4120 +1856 54894 0.7960 +1856 55054 0.5520 +1856 55233 0.5300 +1856 55707 0.5270 +1856 57154 0.7370 +1856 57216 0.9940 +1856 57664 0.4580 +1856 59343 0.9060 +1856 59349 0.8210 +1856 63891 0.4010 +1856 64359 0.7620 +1856 64750 0.7620 +1856 64840 0.4150 +1856 79058 0.4600 +1856 80199 0.5390 +1856 80319 0.9150 +1856 80326 0.4700 +1856 80351 0.4160 +1856 80852 0.4930 +1856 81029 0.7460 +1856 81631 0.4890 +1856 81839 0.9940 +1856 83439 0.4770 +1856 83737 0.7620 +1856 84133 0.6820 +1856 84251 0.4990 +1856 84911 0.5350 +1856 85021 0.5040 +1856 85407 0.9620 +1856 85409 0.9570 +1856 89780 0.9160 +1856 90268 0.6650 +1856 91445 0.4270 +1856 92597 0.5260 +1856 115548 0.5080 +1856 120892 0.7390 +1856 122706 0.4060 +1856 124056 0.4990 +1856 139285 0.6040 +1856 143471 0.4060 +1856 144165 0.9790 +1856 147906 0.6520 +1856 154796 0.7080 +1856 154810 0.7000 +1856 166336 0.9710 +1856 221937 0.6700 +1856 283106 0.9060 +1856 378884 0.4390 +1856 440193 0.8140 +1857 1951 0.4590 +1857 1952 0.5030 +1857 2487 0.4610 +1857 2535 0.8580 +1857 2776 0.9080 +1857 2932 0.9560 +1857 3172 0.4910 +1857 4007 0.9590 +1857 4040 0.9150 +1857 4041 0.8520 +1857 4851 0.9260 +1857 4853 0.9210 +1857 4854 0.9280 +1857 4855 0.9130 +1857 4920 0.4090 +1857 5216 0.5070 +1857 5515 0.5150 +1857 5516 0.5450 +1857 5518 0.5200 +1857 5519 0.5470 +1857 5525 0.5320 +1857 5526 0.5310 +1857 5527 0.5560 +1857 5528 0.5540 +1857 5529 0.5480 +1857 5584 0.4540 +1857 5590 0.4290 +1857 5599 0.6510 +1857 5682 0.4060 +1857 5683 0.4180 +1857 5684 0.4060 +1857 5685 0.4060 +1857 5686 0.4060 +1857 5687 0.4060 +1857 5688 0.4060 +1857 5689 0.4060 +1857 5690 0.4250 +1857 5691 0.4060 +1857 5693 0.4140 +1857 5695 0.4180 +1857 5696 0.4060 +1857 5699 0.4180 +1857 5700 0.4060 +1857 5701 0.4110 +1857 5702 0.4270 +1857 5704 0.4680 +1857 5705 0.4140 +1857 5706 0.4170 +1857 5707 0.4310 +1857 5708 0.4950 +1857 5709 0.4480 +1857 5710 0.4250 +1857 5713 0.4180 +1857 5714 0.4050 +1857 5716 0.4150 +1857 5728 0.5500 +1857 5754 0.5180 +1857 5879 0.5930 +1857 5880 0.5590 +1857 5881 0.5460 +1857 5927 0.4190 +1857 6233 0.5050 +1857 6259 0.4920 +1857 6422 0.7020 +1857 6423 0.4300 +1857 6997 0.5000 +1857 7027 0.4330 +1857 7311 0.4990 +1857 7314 0.5060 +1857 7316 0.5060 +1857 7471 0.8480 +1857 7472 0.4090 +1857 7473 0.5360 +1857 7474 0.9130 +1857 7475 0.4250 +1857 7476 0.4940 +1857 7477 0.6870 +1857 7478 0.6480 +1857 7479 0.6530 +1857 7480 0.4250 +1857 7481 0.7720 +1857 7482 0.4700 +1857 7483 0.4130 +1857 7484 0.4630 +1857 7786 0.5150 +1857 7855 0.9050 +1857 7976 0.8580 +1857 8295 0.4160 +1857 8312 0.9900 +1857 8313 0.9670 +1857 8321 0.8590 +1857 8322 0.9460 +1857 8323 0.9230 +1857 8324 0.9620 +1857 8325 0.9260 +1857 8326 0.8590 +1857 8395 0.5850 +1857 8452 0.6170 +1857 8878 0.4780 +1857 9175 0.5080 +1857 9209 0.6460 +1857 9491 0.5460 +1857 9620 0.5960 +1857 9716 0.5780 +1857 9978 0.5220 +1857 10009 0.5210 +1857 10023 0.9180 +1857 10075 0.4130 +1857 10197 0.4340 +1857 10213 0.4080 +1857 10297 0.9120 +1857 10450 0.6080 +1857 10811 0.5170 +1857 11211 0.8070 +1857 22881 0.4830 +1857 22897 0.8050 +1857 22938 0.6800 +1857 22943 0.4240 +1857 23002 0.9480 +1857 23198 0.4160 +1857 23363 0.4580 +1857 23401 0.9240 +1857 23411 0.5990 +1857 23500 0.9350 +1857 23513 0.4130 +1857 25805 0.9010 +1857 25937 0.4020 +1857 25949 0.6890 +1857 27035 0.4990 +1857 27130 0.9340 +1857 29964 0.9580 +1857 50855 0.4930 +1857 51176 0.5160 +1857 51339 0.7580 +1857 51340 0.6280 +1857 51384 0.4080 +1857 54361 0.7050 +1857 56252 0.5120 +1857 56949 0.5960 +1857 57216 0.9930 +1857 57461 0.5910 +1857 57720 0.4520 +1857 59343 0.9120 +1857 59349 0.9100 +1857 60685 0.6160 +1857 64359 0.6730 +1857 80319 0.9210 +1857 81029 0.7260 +1857 81839 0.9900 +1857 83737 0.6020 +1857 84292 0.4490 +1857 85407 0.9770 +1857 85409 0.9580 +1857 85445 0.4050 +1857 89780 0.8880 +1857 120892 0.6680 +1857 122706 0.4060 +1857 124056 0.4990 +1857 139285 0.5470 +1857 143471 0.4060 +1857 144165 0.9770 +1857 151903 0.6130 +1857 166336 0.9620 +1857 196403 0.5910 +1857 283106 0.9060 +1857 440193 0.6040 +1861 2010 0.4650 +1861 2026 0.4760 +1861 2217 0.4220 +1861 2572 0.5810 +1861 2774 0.7200 +1861 2873 0.5170 +1861 3067 0.4380 +1861 3105 0.6010 +1861 3106 0.7150 +1861 3108 0.7330 +1861 3115 0.6690 +1861 3117 0.9350 +1861 3118 0.6030 +1861 3119 0.7700 +1861 3123 0.7630 +1861 3208 0.7630 +1861 3240 0.4790 +1861 3352 0.4340 +1861 3458 0.5200 +1861 3600 0.5030 +1861 3630 0.6400 +1861 3831 0.5550 +1861 4000 0.6740 +1861 4261 0.4080 +1861 4277 0.5730 +1861 4650 0.7170 +1861 4738 0.5090 +1861 4884 0.4690 +1861 5066 0.4950 +1861 5071 0.5060 +1861 5550 0.5990 +1861 5711 0.4430 +1861 5798 0.6410 +1861 5996 0.5020 +1861 6249 0.5630 +1861 6531 0.5260 +1861 6622 0.7980 +1861 6872 0.5070 +1861 6904 0.4710 +1861 6993 0.5290 +1861 7052 0.9270 +1861 7415 0.5010 +1861 7461 0.5770 +1861 8533 0.5260 +1861 8575 0.5800 +1861 8718 0.9990 +1861 8795 0.4300 +1861 8797 0.8780 +1861 8809 0.4550 +1861 8910 0.9390 +1861 9318 0.5340 +1861 9757 0.4220 +1861 9812 0.7230 +1861 10019 0.5650 +1861 10382 0.8950 +1861 10920 0.5290 +1861 10980 0.5270 +1861 10987 0.5520 +1861 11037 0.4990 +1861 23345 0.6820 +1861 23353 0.5140 +1861 23557 0.5080 +1861 25777 0.5420 +1861 25792 0.6580 +1861 25953 0.5150 +1861 25999 0.4750 +1861 26092 0.9590 +1861 26191 0.5420 +1861 27348 0.9170 +1861 27433 0.5560 +1861 29109 0.5220 +1861 50813 0.5260 +1861 51138 0.6780 +1861 51759 0.4310 +1861 55145 0.9690 +1861 55532 0.6240 +1861 55717 0.7850 +1861 57554 0.4990 +1861 57565 0.6630 +1861 63982 0.7060 +1861 64222 0.4010 +1861 64708 0.5060 +1861 80025 0.4290 +1861 81570 0.7210 +1861 83943 0.4260 +1861 84162 0.5910 +1861 84631 0.4910 +1861 85439 0.6930 +1861 112476 0.4580 +1861 114798 0.6420 +1861 117289 0.5820 +1861 121278 0.4220 +1861 132612 0.5440 +1861 161176 0.8470 +1861 163590 0.9990 +1861 169026 0.6080 +1861 170685 0.7740 +1861 199953 0.5630 +1861 343641 0.4760 +1869 1870 0.9930 +1869 1871 0.9790 +1869 1874 0.9620 +1869 1875 0.8490 +1869 1876 0.7120 +1869 1950 0.4570 +1869 1956 0.7340 +1869 1958 0.6900 +1869 1978 0.5980 +1869 1994 0.6130 +1869 2033 0.9730 +1869 2064 0.5850 +1869 2066 0.4740 +1869 2099 0.7130 +1869 2113 0.6430 +1869 2146 0.9160 +1869 2175 0.4040 +1869 2237 0.4820 +1869 2305 0.8220 +1869 2308 0.7090 +1869 2309 0.9940 +1869 2353 0.6990 +1869 2475 0.4830 +1869 2547 0.4260 +1869 2597 0.6430 +1869 2623 0.6440 +1869 2624 0.4780 +1869 2648 0.8880 +1869 2908 0.5210 +1869 2932 0.6070 +1869 2956 0.4530 +1869 2965 0.5920 +1869 3014 0.5450 +1869 3015 0.4030 +1869 3021 0.7060 +1869 3050 0.5430 +1869 3054 0.9630 +1869 3065 0.9990 +1869 3066 0.4690 +1869 3070 0.4120 +1869 3091 0.6000 +1869 3169 0.4670 +1869 3172 0.4370 +1869 3265 0.6050 +1869 3275 0.4160 +1869 3276 0.4040 +1869 3312 0.4650 +1869 3320 0.6170 +1869 3326 0.4230 +1869 3397 0.5850 +1869 3428 0.5960 +1869 3479 0.5120 +1869 3480 0.4470 +1869 3516 0.6070 +1869 3565 0.5240 +1869 3569 0.4180 +1869 3630 0.4210 +1869 3725 0.7430 +1869 3727 0.4710 +1869 3833 0.4340 +1869 3836 0.4250 +1869 3838 0.6930 +1869 3845 0.5910 +1869 4001 0.4160 +1869 4085 0.4380 +1869 4088 0.7280 +1869 4089 0.4010 +1869 4110 0.6360 +1869 4149 0.6190 +1869 4170 0.5270 +1869 4171 0.5030 +1869 4172 0.7710 +1869 4173 0.6270 +1869 4174 0.7280 +1869 4175 0.4830 +1869 4176 0.8170 +1869 4193 0.9920 +1869 4194 0.7500 +1869 4288 0.5140 +1869 4297 0.4330 +1869 4318 0.4510 +1869 4343 0.5450 +1869 4436 0.5420 +1869 4594 0.4270 +1869 4601 0.5240 +1869 4602 0.5260 +1869 4605 0.9370 +1869 4609 0.9950 +1869 4613 0.8950 +1869 4654 0.5930 +1869 4683 0.5870 +1869 4692 0.9690 +1869 4751 0.4330 +1869 4790 0.9320 +1869 4792 0.5880 +1869 4800 0.4670 +1869 4851 0.7130 +1869 4998 0.7090 +1869 5036 0.4800 +1869 5076 0.4260 +1869 5079 0.5340 +1869 5111 0.6970 +1869 5241 0.4120 +1869 5245 0.8470 +1869 5347 0.6150 +1869 5366 0.7370 +1869 5422 0.7350 +1869 5424 0.4120 +1869 5454 0.4980 +1869 5460 0.5050 +1869 5468 0.5980 +1869 5591 0.4250 +1869 5595 0.4520 +1869 5728 0.8390 +1869 5813 0.7560 +1869 5885 0.5060 +1869 5888 0.8200 +1869 5914 0.5340 +1869 5925 0.9990 +1869 5928 0.8710 +1869 5931 0.6370 +1869 5933 0.9940 +1869 5934 0.9910 +1869 5970 0.7460 +1869 5984 0.4060 +1869 6015 0.7210 +1869 6045 0.6120 +1869 6046 0.9500 +1869 6188 0.5460 +1869 6240 0.4030 +1869 6241 0.7980 +1869 6391 0.5290 +1869 6426 0.5460 +1869 6502 0.9530 +1869 6591 0.6090 +1869 6595 0.6750 +1869 6597 0.6660 +1869 6615 0.4680 +1869 6657 0.5210 +1869 6667 0.9830 +1869 6668 0.5980 +1869 6670 0.6990 +1869 6696 0.4310 +1869 6714 0.4650 +1869 6772 0.5280 +1869 6774 0.7970 +1869 6790 0.6000 +1869 6839 0.4290 +1869 6908 0.7860 +1869 6929 0.4350 +1869 6938 0.4260 +1869 7015 0.5380 +1869 7024 0.4070 +1869 7026 0.4530 +1869 7027 0.9990 +1869 7029 0.9970 +1869 7040 0.4190 +1869 7083 0.8360 +1869 7124 0.4200 +1869 7153 0.6460 +1869 7157 0.9860 +1869 7158 0.5780 +1869 7159 0.4770 +1869 7161 0.7290 +1869 7298 0.7480 +1869 7316 0.4020 +1869 7329 0.4790 +1869 7337 0.6810 +1869 7392 0.5910 +1869 7428 0.4260 +1869 7431 0.4100 +1869 7465 0.5130 +1869 7490 0.4100 +1869 7528 0.7470 +1869 7541 0.5620 +1869 7543 0.7250 +1869 7707 0.5110 +1869 7799 0.4290 +1869 7837 0.5180 +1869 7849 0.5580 +1869 7975 0.4720 +1869 8019 0.7140 +1869 8091 0.4860 +1869 8202 0.8850 +1869 8204 0.5850 +1869 8290 0.7070 +1869 8295 0.8920 +1869 8314 0.4050 +1869 8317 0.5910 +1869 8318 0.8130 +1869 8356 0.7130 +1869 8361 0.6020 +1869 8369 0.5740 +1869 8438 0.4600 +1869 8453 0.4700 +1869 8454 0.5500 +1869 8553 0.4620 +1869 8726 0.6350 +1869 8850 0.9630 +1869 8851 0.4870 +1869 8900 0.9990 +1869 8945 0.4710 +1869 8994 0.4510 +1869 9031 0.4310 +1869 9070 0.4010 +1869 9088 0.6990 +1869 9097 0.5000 +1869 9112 0.4560 +1869 9133 0.7850 +1869 9134 0.8830 +1869 9156 0.4550 +1869 9212 0.5770 +1869 9232 0.6680 +1869 9314 0.4990 +1869 9401 0.4570 +1869 9493 0.4030 +1869 9700 0.5260 +1869 9739 0.4720 +1869 9787 0.5570 +1869 9792 0.5600 +1869 9794 0.5500 +1869 9833 0.4180 +1869 9869 0.4970 +1869 9913 0.4240 +1869 10018 0.7070 +1869 10046 0.5050 +1869 10112 0.4280 +1869 10138 0.5570 +1869 10155 0.6770 +1869 10213 0.7110 +1869 10419 0.6440 +1869 10498 0.6030 +1869 10514 0.6380 +1869 10524 0.7830 +1869 10542 0.4300 +1869 10626 0.4180 +1869 10664 0.5170 +1869 10891 0.5890 +1869 10919 0.6480 +1869 10950 0.5530 +1869 10951 0.4320 +1869 10971 0.4080 +1869 10987 0.6400 +1869 11004 0.4890 +1869 11065 0.5340 +1869 11073 0.9910 +1869 11200 0.5940 +1869 11264 0.5630 +1869 11335 0.7420 +1869 22938 0.5370 +1869 22974 0.4540 +1869 22992 0.6250 +1869 23028 0.8320 +1869 23054 0.6250 +1869 23112 0.5300 +1869 23133 0.7030 +1869 23151 0.5530 +1869 23269 0.6100 +1869 23309 0.4230 +1869 23310 0.5540 +1869 23327 0.4300 +1869 23405 0.6290 +1869 23408 0.4910 +1869 23411 0.9240 +1869 23468 0.5110 +1869 23476 0.9180 +1869 23512 0.7350 +1869 23582 0.4990 +1869 26271 0.6750 +1869 26523 0.7930 +1869 26574 0.4770 +1869 27043 0.5110 +1869 27113 0.7860 +1869 27161 0.8880 +1869 27327 0.5600 +1869 28227 0.4070 +1869 29028 0.7520 +1869 29099 0.5320 +1869 29102 0.4190 +1869 29127 0.5730 +1869 29128 0.5380 +1869 29946 0.4220 +1869 29950 0.6140 +1869 50943 0.5460 +1869 51176 0.7320 +1869 51203 0.4480 +1869 51270 0.8480 +1869 51341 0.4670 +1869 51343 0.6860 +1869 51433 0.5530 +1869 51514 0.4760 +1869 54205 0.4750 +1869 54443 0.4730 +1869 54487 0.5170 +1869 54892 0.5580 +1869 54962 0.4860 +1869 55038 0.6030 +1869 55143 0.6230 +1869 55165 0.5460 +1869 55178 0.4900 +1869 55388 0.4580 +1869 55534 0.5330 +1869 55536 0.5410 +1869 55635 0.4860 +1869 55658 0.6890 +1869 55723 0.5890 +1869 55837 0.5440 +1869 55957 0.6420 +1869 56160 0.4190 +1869 56165 0.9020 +1869 57650 0.6540 +1869 63897 0.5830 +1869 63922 0.7370 +1869 63967 0.4040 +1869 63978 0.4300 +1869 64754 0.4960 +1869 65979 0.4970 +1869 79648 0.7250 +1869 79733 0.9280 +1869 79813 0.5450 +1869 79923 0.4880 +1869 80854 0.7530 +1869 81620 0.8330 +1869 81669 0.8080 +1869 83461 0.4890 +1869 83746 0.5810 +1869 83879 0.4120 +1869 83933 0.5150 +1869 84108 0.6280 +1869 84260 0.7300 +1869 84441 0.5260 +1869 84456 0.5660 +1869 84515 0.6700 +1869 84733 0.4840 +1869 89845 0.5290 +1869 91750 0.7250 +1869 113130 0.5030 +1869 115426 0.4170 +1869 120892 0.6050 +1869 132660 0.7210 +1869 137902 0.5180 +1869 137970 0.4120 +1869 144455 0.9390 +1869 166979 0.7030 +1869 192669 0.5450 +1869 192670 0.5530 +1869 200895 0.4240 +1869 254394 0.4970 +1869 286826 0.8220 +1869 440093 0.7070 +1869 440686 0.7070 +1869 653604 0.7060 +1869 100532731 0.4460 +1870 1871 0.9620 +1870 1874 0.8160 +1870 1875 0.7970 +1870 1876 0.4540 +1870 1889 0.4360 +1870 2033 0.4820 +1870 2146 0.7180 +1870 2305 0.5400 +1870 2309 0.5890 +1870 2353 0.4620 +1870 2597 0.4120 +1870 2623 0.4660 +1870 2928 0.4240 +1870 3065 0.6030 +1870 3066 0.5600 +1870 3399 0.4140 +1870 3838 0.4550 +1870 4172 0.5490 +1870 4173 0.5080 +1870 4174 0.4680 +1870 4175 0.4820 +1870 4176 0.4690 +1870 4343 0.5170 +1870 4605 0.6150 +1870 4609 0.8140 +1870 4613 0.7320 +1870 5347 0.4740 +1870 5728 0.4560 +1870 5902 0.4140 +1870 5925 0.9990 +1870 5928 0.8040 +1870 5931 0.5800 +1870 5933 0.9830 +1870 5934 0.9870 +1870 6046 0.8140 +1870 6241 0.4350 +1870 6502 0.6530 +1870 6667 0.6010 +1870 6924 0.4370 +1870 6925 0.4260 +1870 7027 0.9890 +1870 7029 0.9820 +1870 7157 0.7910 +1870 7161 0.5060 +1870 7465 0.4060 +1870 7494 0.4030 +1870 7528 0.4420 +1870 7709 0.4240 +1870 8019 0.4080 +1870 8318 0.4980 +1870 8626 0.4550 +1870 8726 0.5640 +1870 8841 0.5240 +1870 8900 0.9640 +1870 9088 0.4630 +1870 9133 0.5250 +1870 9134 0.8450 +1870 9212 0.4590 +1870 9232 0.4550 +1870 9518 0.4140 +1870 9700 0.4250 +1870 10138 0.4020 +1870 10661 0.4600 +1870 11073 0.5660 +1870 23112 0.5090 +1870 23411 0.5070 +1870 23429 0.7710 +1870 23476 0.4580 +1870 23512 0.6270 +1870 23594 0.4010 +1870 26523 0.5790 +1870 27327 0.5260 +1870 29028 0.6250 +1870 29127 0.4880 +1870 51270 0.8070 +1870 55038 0.6630 +1870 55388 0.5020 +1870 55635 0.4460 +1870 55837 0.6570 +1870 55869 0.4970 +1870 55957 0.4520 +1870 64072 0.4350 +1870 79733 0.4310 +1870 81620 0.5690 +1870 81669 0.5440 +1870 83667 0.4160 +1870 91750 0.7440 +1870 132660 0.5650 +1870 144455 0.4180 +1870 146909 0.4080 +1870 192669 0.5400 +1870 192670 0.5500 +1870 286826 0.5720 +1871 1874 0.7040 +1871 1875 0.7630 +1871 1876 0.4490 +1871 1956 0.4450 +1871 2033 0.6450 +1871 2064 0.4630 +1871 2113 0.4300 +1871 2130 0.4690 +1871 2146 0.7320 +1871 2261 0.5330 +1871 2305 0.4350 +1871 2314 0.4210 +1871 2597 0.4510 +1871 2648 0.6100 +1871 3014 0.4050 +1871 3054 0.4170 +1871 3065 0.5410 +1871 3070 0.4220 +1871 3091 0.4070 +1871 3516 0.5360 +1871 3725 0.4170 +1871 3845 0.4270 +1871 4172 0.4520 +1871 4173 0.5310 +1871 4174 0.4010 +1871 4176 0.4110 +1871 4193 0.5940 +1871 4343 0.4990 +1871 4436 0.5020 +1871 4594 0.4230 +1871 4605 0.7170 +1871 4609 0.7540 +1871 4613 0.7290 +1871 4790 0.4560 +1871 4851 0.6790 +1871 5111 0.4550 +1871 5347 0.4560 +1871 5468 0.4700 +1871 5728 0.5590 +1871 5747 0.4870 +1871 5885 0.4360 +1871 5925 0.9980 +1871 5928 0.6390 +1871 5931 0.5740 +1871 5933 0.9850 +1871 5934 0.9840 +1871 6046 0.5320 +1871 6502 0.4270 +1871 6659 0.4500 +1871 6667 0.6480 +1871 7027 0.9960 +1871 7029 0.9760 +1871 7030 0.8810 +1871 7157 0.7070 +1871 7391 0.4390 +1871 7465 0.4240 +1871 7528 0.6230 +1871 7913 0.6360 +1871 8019 0.4080 +1871 8726 0.5890 +1871 8850 0.6030 +1871 8900 0.9570 +1871 9133 0.4230 +1871 9134 0.8460 +1871 9448 0.4060 +1871 9698 0.5760 +1871 9794 0.5160 +1871 9928 0.4180 +1871 9978 0.4580 +1871 10046 0.5360 +1871 10459 0.4180 +1871 11004 0.4280 +1871 11073 0.5670 +1871 22938 0.5350 +1871 23112 0.5170 +1871 23405 0.6470 +1871 23411 0.6710 +1871 23429 0.7150 +1871 23476 0.4820 +1871 23512 0.6310 +1871 26523 0.6220 +1871 27161 0.8070 +1871 27327 0.5440 +1871 29102 0.4250 +1871 51270 0.8840 +1871 51343 0.4190 +1871 55038 0.6080 +1871 55165 0.4070 +1871 55534 0.4990 +1871 55837 0.6070 +1871 57680 0.4210 +1871 79733 0.4310 +1871 81669 0.4740 +1871 84441 0.4990 +1871 84456 0.4030 +1871 91750 0.4570 +1871 144455 0.4400 +1871 192669 0.5590 +1871 192670 0.5750 +1871 286826 0.4590 +1874 1875 0.9920 +1874 1876 0.5770 +1874 1958 0.4250 +1874 2033 0.8630 +1874 2099 0.4890 +1874 2232 0.4320 +1874 2305 0.7610 +1874 2353 0.6160 +1874 2623 0.4470 +1874 2624 0.4720 +1874 2648 0.5460 +1874 3054 0.5790 +1874 3065 0.9960 +1874 3398 0.6320 +1874 3399 0.4230 +1874 3725 0.6190 +1874 4087 0.9770 +1874 4088 0.9990 +1874 4089 0.9970 +1874 4150 0.5600 +1874 4172 0.4960 +1874 4174 0.4100 +1874 4601 0.5750 +1874 4605 0.9480 +1874 4609 0.9370 +1874 4613 0.7440 +1874 4692 0.6160 +1874 4790 0.5350 +1874 4800 0.4980 +1874 4801 0.4180 +1874 5111 0.5900 +1874 5347 0.4210 +1874 5494 0.4200 +1874 5566 0.4400 +1874 5567 0.4400 +1874 5568 0.4370 +1874 5888 0.5020 +1874 5925 0.9990 +1874 5927 0.5420 +1874 5928 0.9400 +1874 5933 0.9980 +1874 5934 0.9990 +1874 6500 0.5840 +1874 6502 0.6950 +1874 6597 0.5420 +1874 6772 0.4160 +1874 6839 0.9410 +1874 6872 0.4280 +1874 6908 0.6200 +1874 6934 0.4770 +1874 6938 0.4730 +1874 7027 0.9990 +1874 7029 0.9990 +1874 7153 0.6050 +1874 7157 0.8720 +1874 7158 0.4650 +1874 7161 0.4870 +1874 7391 0.4200 +1874 7514 0.4180 +1874 7528 0.5000 +1874 7543 0.6260 +1874 7704 0.4020 +1874 8289 0.5950 +1874 8295 0.4900 +1874 8454 0.6040 +1874 8841 0.4390 +1874 8900 0.8080 +1874 9133 0.4550 +1874 9134 0.7560 +1874 9633 0.4110 +1874 9869 0.4720 +1874 10127 0.4430 +1874 10155 0.4440 +1874 10309 0.4180 +1874 10664 0.5910 +1874 11073 0.5500 +1874 23309 0.6050 +1874 23352 0.4020 +1874 23411 0.4670 +1874 23429 0.4120 +1874 23468 0.5150 +1874 23476 0.4110 +1874 25792 0.4270 +1874 25942 0.9240 +1874 26013 0.6430 +1874 29028 0.4160 +1874 51053 0.4670 +1874 51176 0.4300 +1874 51270 0.9320 +1874 51429 0.4280 +1874 54989 0.4060 +1874 55038 0.5720 +1874 55837 0.6020 +1874 55957 0.9880 +1874 63978 0.4130 +1874 79733 0.7460 +1874 81669 0.5070 +1874 84960 0.4200 +1874 91750 0.8960 +1874 132660 0.9860 +1874 144455 0.4710 +1874 147912 0.4380 +1874 159989 0.4300 +1874 254394 0.6060 +1874 286826 0.9940 +1874 345643 0.9300 +1874 353144 0.4240 +1874 647309 0.7110 +1875 1876 0.6640 +1875 1938 0.4030 +1875 2033 0.4090 +1875 3065 0.8160 +1875 3678 0.4170 +1875 4087 0.9420 +1875 4088 0.9960 +1875 4089 0.9860 +1875 4435 0.4890 +1875 4605 0.8480 +1875 4609 0.8220 +1875 5111 0.6000 +1875 5925 0.9920 +1875 5928 0.8190 +1875 5933 0.9980 +1875 5934 0.9990 +1875 6500 0.5660 +1875 6502 0.6730 +1875 6839 0.4950 +1875 6929 0.4560 +1875 7027 0.9990 +1875 7029 0.9930 +1875 7153 0.5990 +1875 7157 0.4260 +1875 7161 0.4960 +1875 8289 0.4930 +1875 8454 0.5870 +1875 8462 0.4550 +1875 8900 0.7400 +1875 9134 0.8400 +1875 9530 0.6180 +1875 27250 0.4420 +1875 51270 0.9070 +1875 54487 0.4280 +1875 55957 0.9340 +1875 79733 0.4790 +1875 81669 0.6350 +1875 84260 0.5210 +1875 85444 0.4490 +1875 91750 0.8700 +1875 114793 0.6010 +1875 132660 0.8600 +1875 144455 0.4950 +1875 286826 0.8580 +1875 345643 0.8130 +1875 647309 0.8980 +1876 1911 0.7870 +1876 1938 0.5090 +1876 2145 0.4280 +1876 2146 0.9030 +1876 2624 0.5250 +1876 3021 0.5520 +1876 3054 0.9170 +1876 3065 0.7160 +1876 3066 0.6790 +1876 3225 0.4860 +1876 3720 0.5770 +1876 4149 0.9840 +1876 4297 0.9300 +1876 4601 0.6560 +1876 4605 0.4170 +1876 4609 0.7250 +1876 4613 0.4420 +1876 4800 0.4950 +1876 5885 0.4010 +1876 5888 0.6050 +1876 5925 0.7560 +1876 5928 0.6760 +1876 5929 0.9190 +1876 5931 0.6260 +1876 5932 0.5820 +1876 5933 0.5840 +1876 5934 0.8040 +1876 5978 0.4880 +1876 6015 0.9850 +1876 6045 0.9950 +1876 6241 0.6350 +1876 6597 0.4710 +1876 6599 0.4510 +1876 6772 0.4020 +1876 6872 0.9470 +1876 6874 0.9020 +1876 6878 0.9070 +1876 6879 0.9140 +1876 6880 0.9020 +1876 6938 0.4680 +1876 6996 0.4610 +1876 7027 0.9990 +1876 7029 0.9960 +1876 7391 0.6300 +1876 7528 0.6480 +1876 7543 0.4510 +1876 7703 0.9030 +1876 8242 0.5350 +1876 8290 0.5550 +1876 8295 0.4740 +1876 8317 0.6450 +1876 8356 0.5520 +1876 8361 0.4040 +1876 8409 0.5650 +1876 8535 0.6000 +1876 8553 0.5060 +1876 8607 0.9060 +1876 8726 0.7420 +1876 8900 0.4390 +1876 9070 0.5980 +1876 9134 0.4550 +1876 9757 0.5450 +1876 9869 0.4740 +1876 10009 0.5250 +1876 10127 0.4320 +1876 10138 0.9710 +1876 10336 0.4970 +1876 10445 0.9030 +1876 10644 0.4750 +1876 10664 0.4100 +1876 10856 0.9080 +1876 10919 0.8780 +1876 10951 0.4700 +1876 11091 0.9910 +1876 11335 0.9970 +1876 23269 0.9890 +1876 23429 0.9870 +1876 23468 0.6690 +1876 23512 0.6780 +1876 25855 0.4340 +1876 26013 0.4940 +1876 26053 0.4840 +1876 26121 0.9000 +1876 26168 0.9000 +1876 27043 0.9000 +1876 29117 0.5010 +1876 29915 0.5760 +1876 51171 0.4240 +1876 51230 0.9110 +1876 51270 0.8890 +1876 51567 0.7020 +1876 54531 0.7170 +1876 54799 0.5030 +1876 54881 0.9060 +1876 54939 0.7300 +1876 54951 0.5350 +1876 55775 0.7270 +1876 57332 0.5410 +1876 57680 0.9020 +1876 79733 0.7540 +1876 79813 0.8700 +1876 80012 0.8120 +1876 80314 0.8000 +1876 81887 0.9000 +1876 83746 0.9920 +1876 84108 0.9970 +1876 84148 0.9010 +1876 84312 0.4490 +1876 84333 0.4420 +1876 84456 0.4810 +1876 84661 0.6170 +1876 84678 0.7520 +1876 84733 0.5620 +1876 84759 0.5930 +1876 124944 0.9000 +1876 125476 0.9000 +1876 150684 0.5010 +1876 170622 0.7770 +1876 284058 0.9000 +1876 286826 0.4270 +1876 440093 0.5540 +1876 440686 0.5550 +1876 653604 0.5540 +1876 100529209 0.5400 +1876 100532731 0.8130 +1877 2145 0.5420 +1877 2274 0.6710 +1877 3065 0.6060 +1877 3104 0.4400 +1877 3222 0.4330 +1877 3276 0.4060 +1877 4089 0.4540 +1877 4193 0.4740 +1877 4832 0.4030 +1877 5442 0.5450 +1877 5925 0.6230 +1877 6118 0.4200 +1877 6154 0.4320 +1877 6597 0.4570 +1877 6621 0.4490 +1877 6720 0.4250 +1877 6928 0.4220 +1877 7157 0.9690 +1877 7161 0.4670 +1877 7329 0.4860 +1877 7709 0.5510 +1877 7818 0.4150 +1877 7874 0.5030 +1877 7988 0.4780 +1877 8091 0.6740 +1877 8125 0.7040 +1877 8312 0.4710 +1877 8379 0.4700 +1877 9013 0.6210 +1877 9684 0.7460 +1877 9894 0.7490 +1877 10075 0.4130 +1877 10240 0.4920 +1877 10370 0.4030 +1877 10413 0.4040 +1877 10607 0.5450 +1877 10629 0.4860 +1877 10948 0.5330 +1877 11186 0.8850 +1877 11194 0.4710 +1877 22994 0.4240 +1877 23644 0.4830 +1877 25898 0.4180 +1877 25946 0.4370 +1877 26173 0.5130 +1877 26205 0.4200 +1877 27113 0.4110 +1877 27158 0.4740 +1877 28996 0.4940 +1877 30827 0.4080 +1877 51116 0.5030 +1877 51649 0.4820 +1877 51650 0.4750 +1877 51741 0.4260 +1877 54555 0.5130 +1877 54985 0.4620 +1877 55738 0.4840 +1877 56945 0.4800 +1877 57130 0.4830 +1877 57410 0.4630 +1877 57805 0.5740 +1877 64112 0.5070 +1877 64763 0.6680 +1877 64852 0.5450 +1877 64963 0.5240 +1877 64969 0.5020 +1877 79797 0.5450 +1877 80198 0.5650 +1877 80233 0.7150 +1877 84219 0.7870 +1877 84619 0.7830 +1877 89941 0.4980 +1877 90324 0.4410 +1877 90678 0.4790 +1877 90864 0.4260 +1877 124401 0.6360 +1877 221927 0.7820 +1877 222484 0.4300 +1877 387893 0.4350 +1877 100532731 0.7170 +1879 1958 0.5970 +1879 2033 0.7910 +1879 2113 0.4990 +1879 2117 0.4010 +1879 2120 0.6590 +1879 2167 0.6250 +1879 2290 0.5100 +1879 2297 0.4540 +1879 2308 0.6910 +1879 2322 0.6510 +1879 2623 0.4990 +1879 2624 0.4440 +1879 2625 0.5020 +1879 2672 0.4010 +1879 3065 0.4740 +1879 3066 0.4780 +1879 3394 0.5190 +1879 3398 0.4480 +1879 3516 0.4300 +1879 3543 0.6530 +1879 3574 0.5100 +1879 3575 0.5770 +1879 3662 0.6090 +1879 3670 0.4650 +1879 3717 0.5790 +1879 3815 0.4070 +1879 3952 0.5890 +1879 4005 0.4110 +1879 4208 0.4570 +1879 4211 0.4300 +1879 4212 0.4210 +1879 4299 0.5480 +1879 4609 0.6340 +1879 4774 0.5060 +1879 4781 0.4230 +1879 4790 0.5830 +1879 4807 0.4390 +1879 4849 0.5600 +1879 4851 0.4250 +1879 4975 0.5390 +1879 5013 0.6100 +1879 5076 0.5260 +1879 5079 0.9850 +1879 5080 0.4100 +1879 5087 0.4910 +1879 5137 0.4180 +1879 5159 0.4330 +1879 5450 0.7140 +1879 5452 0.4760 +1879 5460 0.4740 +1879 5468 0.8230 +1879 5469 0.5080 +1879 5729 0.4140 +1879 5788 0.4220 +1879 5890 0.4260 +1879 5896 0.7160 +1879 6256 0.6100 +1879 6304 0.5410 +1879 6419 0.4450 +1879 6517 0.5590 +1879 6597 0.5560 +1879 6664 0.4410 +1879 6688 0.6970 +1879 6689 0.7150 +1879 6693 0.4450 +1879 6776 0.4470 +1879 6777 0.4460 +1879 6837 0.4990 +1879 6886 0.4320 +1879 6899 0.4370 +1879 6925 0.4790 +1879 6929 0.9480 +1879 6938 0.6600 +1879 7022 0.4010 +1879 7353 0.5440 +1879 7441 0.6800 +1879 7553 0.4830 +1879 7702 0.4180 +1879 8202 0.5030 +1879 8609 0.4520 +1879 8648 0.5160 +1879 8841 0.5170 +1879 8861 0.7670 +1879 9079 0.5920 +1879 9145 0.4160 +1879 9282 0.4990 +1879 9355 0.9380 +1879 9370 0.6100 +1879 9373 0.5180 +1879 9412 0.4990 +1879 9439 0.4990 +1879 9440 0.4990 +1879 9441 0.4990 +1879 9442 0.4990 +1879 9443 0.4990 +1879 9477 0.4990 +1879 9611 0.5940 +1879 9612 0.5700 +1879 9862 0.5060 +1879 9967 0.5010 +1879 9968 0.5190 +1879 9969 0.5050 +1879 10001 0.5250 +1879 10025 0.4990 +1879 10186 0.4580 +1879 10320 0.9310 +1879 10499 0.5560 +1879 10538 0.4050 +1879 10664 0.5230 +1879 10891 0.5670 +1879 11025 0.4240 +1879 22806 0.8850 +1879 23090 0.9780 +1879 23097 0.5320 +1879 23135 0.4800 +1879 23389 0.5140 +1879 25925 0.8120 +1879 29079 0.4990 +1879 29760 0.6660 +1879 29802 0.5100 +1879 30012 0.5160 +1879 51003 0.4990 +1879 51176 0.7550 +1879 51586 0.4990 +1879 53335 0.7440 +1879 54790 0.9760 +1879 54797 0.4990 +1879 55090 0.4990 +1879 55432 0.5140 +1879 55588 0.4990 +1879 55888 0.4700 +1879 57379 0.5790 +1879 59277 0.4530 +1879 60468 0.5350 +1879 63976 0.5820 +1879 64919 0.4970 +1879 79813 0.4700 +1879 80306 0.4990 +1879 81857 0.4990 +1879 83857 0.8520 +1879 84246 0.4990 +1879 84295 0.4930 +1879 84498 0.4990 +1879 85441 0.4990 +1879 90390 0.5000 +1879 91647 0.6360 +1879 112950 0.4990 +1879 115426 0.4470 +1879 171017 0.4040 +1879 286530 0.6780 +1879 347853 0.4620 +1879 400569 0.4990 +1879 100423062 0.4370 +1879 102723407 0.7120 +1880 1901 0.6040 +1880 1967 0.6030 +1880 2205 0.4420 +1880 2239 0.4630 +1880 2357 0.4240 +1880 2359 0.4040 +1880 2770 0.9070 +1880 2782 0.8000 +1880 2833 0.4800 +1880 2840 0.4120 +1880 2841 0.7030 +1880 2870 0.4210 +1880 3003 0.5090 +1880 3394 0.4740 +1880 3543 0.4440 +1880 3575 0.5160 +1880 3577 0.4460 +1880 3579 0.4570 +1880 3587 0.4340 +1880 3662 0.4380 +1880 3665 0.5510 +1880 3684 0.4050 +1880 3820 0.4470 +1880 4050 0.4180 +1880 4142 0.4070 +1880 4283 0.4840 +1880 4543 0.5380 +1880 4544 0.5310 +1880 4603 0.4920 +1880 4734 0.4370 +1880 5134 0.4970 +1880 5175 0.4450 +1880 5341 0.4630 +1880 5788 0.5430 +1880 5996 0.6380 +1880 6347 0.4840 +1880 6348 0.4050 +1880 6351 0.4370 +1880 6363 0.6290 +1880 6366 0.5880 +1880 6404 0.4190 +1880 6504 0.4020 +1880 6693 0.4140 +1880 6714 0.5180 +1880 7097 0.4320 +1880 8477 0.5060 +1880 8519 0.4740 +1880 8891 0.4200 +1880 8892 0.5070 +1880 9023 0.6970 +1880 9290 0.5570 +1880 9294 0.5160 +1880 9308 0.4740 +1880 9332 0.4380 +1880 9369 0.4120 +1880 9411 0.5150 +1880 9420 0.6100 +1880 9473 0.4060 +1880 9595 0.5290 +1880 10082 0.4650 +1880 10288 0.4280 +1880 10538 0.5380 +1880 10563 0.6970 +1880 10663 0.5050 +1880 10673 0.4210 +1880 11245 0.4470 +1880 23432 0.4160 +1880 27199 0.5470 +1880 29802 0.4920 +1880 29851 0.5630 +1880 54331 0.8110 +1880 56670 0.5480 +1880 57616 0.4420 +1880 59067 0.5180 +1880 63940 0.4870 +1880 64407 0.4120 +1880 80270 0.5710 +1880 117289 0.5610 +1880 150771 0.4560 +1880 338442 0.5350 +1880 100423062 0.6630 +1889 1906 0.9840 +1889 1907 0.8470 +1889 1908 0.9360 +1889 1909 0.9160 +1889 1910 0.9050 +1889 2674 0.5360 +1889 2784 0.4360 +1889 2796 0.5670 +1889 3416 0.8250 +1889 3827 0.6110 +1889 3958 0.5000 +1889 4843 0.4640 +1889 4846 0.4070 +1889 4878 0.4210 +1889 4902 0.4330 +1889 5045 0.4420 +1889 5304 0.5480 +1889 5327 0.4500 +1889 5581 0.5350 +1889 5663 0.4650 +1889 5740 0.5620 +1889 5796 0.4650 +1889 5972 0.5820 +1889 6663 0.4190 +1889 8929 0.5050 +1889 10282 0.4040 +1889 10344 0.4100 +1889 23560 0.4440 +1889 23621 0.4740 +1889 51752 0.4450 +1889 85476 0.4550 +1890 1967 0.7840 +1890 2064 0.4700 +1890 2067 0.5060 +1890 2232 0.7930 +1890 2246 0.4030 +1890 2247 0.5130 +1890 2597 0.5100 +1890 2618 0.4910 +1890 3251 0.4120 +1890 3320 0.4110 +1890 3430 0.4320 +1890 3481 0.4020 +1890 3558 0.6940 +1890 3576 0.4190 +1890 3665 0.5040 +1890 3728 0.5330 +1890 4318 0.4320 +1890 4358 0.7860 +1890 4507 0.4180 +1890 4513 0.4160 +1890 4538 0.4710 +1890 4860 0.9650 +1890 4907 0.9310 +1890 5155 0.4100 +1890 5175 0.4150 +1890 5196 0.5010 +1890 5197 0.4980 +1890 5228 0.4010 +1890 5238 0.7380 +1890 5313 0.4190 +1890 5315 0.4500 +1890 5372 0.7890 +1890 5373 0.7890 +1890 5428 0.8380 +1890 5471 0.4010 +1890 7039 0.5300 +1890 7057 0.5680 +1890 7058 0.5160 +1890 7083 0.9480 +1890 7084 0.9830 +1890 7122 0.4580 +1890 7157 0.4140 +1890 7167 0.4110 +1890 7298 0.9270 +1890 7371 0.7420 +1890 7372 0.9810 +1890 7378 0.9990 +1890 7453 0.4030 +1890 8732 0.5760 +1890 8802 0.5380 +1890 8803 0.8010 +1890 8817 0.5320 +1890 8823 0.5340 +1890 8833 0.4330 +1890 8890 0.7840 +1890 8892 0.7840 +1890 9153 0.5330 +1890 9154 0.6440 +1890 9615 0.4130 +1890 9961 0.4160 +1890 9962 0.4710 +1890 9963 0.4710 +1890 9997 0.7430 +1890 11232 0.4980 +1890 22934 0.4880 +1890 22978 0.9060 +1890 23583 0.7120 +1890 26281 0.5330 +1890 26284 0.7550 +1890 27006 0.5340 +1890 27231 0.5290 +1890 30833 0.9640 +1890 50484 0.7980 +1890 51071 0.9590 +1890 51251 0.9070 +1890 51733 0.5100 +1890 54458 0.5000 +1890 54739 0.4180 +1890 54963 0.7580 +1890 54981 0.5400 +1890 55270 0.5150 +1890 55276 0.7610 +1890 55719 0.4220 +1890 56652 0.7530 +1890 56953 0.9780 +1890 56965 0.4190 +1890 64078 0.5610 +1890 64080 0.6690 +1890 65220 0.4910 +1890 79668 0.4210 +1890 80817 0.7270 +1890 81602 0.7270 +1890 83549 0.7890 +1890 84245 0.6420 +1890 84618 0.9070 +1890 93034 0.9110 +1890 113179 0.6810 +1890 115024 0.9000 +1890 118881 0.5850 +1890 129607 0.4600 +1890 139596 0.9790 +1890 151531 0.9970 +1890 154141 0.6660 +1890 200895 0.4810 +1890 283209 0.7380 +1890 283985 0.7920 +1890 440836 0.4970 +1890 100526794 0.9020 +1891 1892 0.6370 +1891 1962 0.6140 +1891 2053 0.4070 +1891 2058 0.4130 +1891 2108 0.5360 +1891 2109 0.5960 +1891 2110 0.6180 +1891 2170 0.5090 +1891 2180 0.4830 +1891 2639 0.4640 +1891 3028 0.5150 +1891 3030 0.5950 +1891 3032 0.6690 +1891 3033 0.8920 +1891 3155 0.4170 +1891 3158 0.4910 +1891 3191 0.4140 +1891 3295 0.9540 +1891 3712 0.4110 +1891 4191 0.4290 +1891 4329 0.4140 +1891 4722 0.4060 +1891 4723 0.4280 +1891 5096 0.5020 +1891 5192 0.5720 +1891 5194 0.6310 +1891 5195 0.5850 +1891 5264 0.5410 +1891 5825 0.4010 +1891 5828 0.5370 +1891 5830 0.9010 +1891 6233 0.5040 +1891 6261 0.5940 +1891 6342 0.8180 +1891 6713 0.4070 +1891 7187 0.4400 +1891 7311 0.5070 +1891 7314 0.5260 +1891 7316 0.5210 +1891 7321 0.5250 +1891 7322 0.5120 +1891 7323 0.5120 +1891 7384 0.4060 +1891 8209 0.4530 +1891 8309 0.4590 +1891 8310 0.6280 +1891 8800 0.4390 +1891 8802 0.4960 +1891 8891 0.4240 +1891 9085 0.5400 +1891 9409 0.4360 +1891 9425 0.5100 +1891 9581 0.4290 +1891 10005 0.5870 +1891 10096 0.4020 +1891 10449 0.7440 +1891 10455 0.8750 +1891 10901 0.5420 +1891 10965 0.4720 +1891 11112 0.4370 +1891 23417 0.4640 +1891 23549 0.4260 +1891 26063 0.5360 +1891 26275 0.4270 +1891 27034 0.4040 +1891 28976 0.4220 +1891 51129 0.4960 +1891 54677 0.4970 +1891 54749 0.4080 +1891 54920 0.4460 +1891 55268 0.4690 +1891 55289 0.4010 +1891 55825 0.4440 +1891 55862 0.4790 +1891 55892 0.4050 +1891 56922 0.4630 +1891 57017 0.4470 +1891 64087 0.7730 +1891 80724 0.4130 +1891 84129 0.5220 +1891 84263 0.6310 +1891 84908 0.4150 +1891 91452 0.4200 +1891 117145 0.4020 +1891 124359 0.5310 +1891 219743 0.5200 +1891 253175 0.5400 +1891 641371 0.4110 +1892 1962 0.9800 +1892 2023 0.4820 +1892 2108 0.8510 +1892 2109 0.8550 +1892 2110 0.6640 +1892 2180 0.6610 +1892 2181 0.6450 +1892 2182 0.6450 +1892 2194 0.6960 +1892 2203 0.4010 +1892 2271 0.6090 +1892 2597 0.4740 +1892 2639 0.9710 +1892 2739 0.4310 +1892 2746 0.4060 +1892 2805 0.4550 +1892 2806 0.5890 +1892 3028 0.9960 +1892 3030 0.9770 +1892 3032 0.9940 +1892 3033 0.9990 +1892 3155 0.7650 +1892 3157 0.7010 +1892 3158 0.6760 +1892 3242 0.5060 +1892 3292 0.6450 +1892 3293 0.7170 +1892 3294 0.5530 +1892 3295 0.9230 +1892 3313 0.4270 +1892 3417 0.5410 +1892 3418 0.5130 +1892 3419 0.4220 +1892 3420 0.4650 +1892 3421 0.4330 +1892 3658 0.4280 +1892 3712 0.9730 +1892 3921 0.5180 +1892 4191 0.6890 +1892 4329 0.7230 +1892 4702 0.4130 +1892 4704 0.5300 +1892 4705 0.5000 +1892 4706 0.5180 +1892 4715 0.4040 +1892 4716 0.6000 +1892 4720 0.5370 +1892 4722 0.4410 +1892 4723 0.5470 +1892 4728 0.6470 +1892 4942 0.5030 +1892 5019 0.6760 +1892 5037 0.5000 +1892 5091 0.5200 +1892 5095 0.5960 +1892 5096 0.7310 +1892 5162 0.5270 +1892 5163 0.4170 +1892 5164 0.4560 +1892 5165 0.4070 +1892 5166 0.4950 +1892 5189 0.5110 +1892 5192 0.5930 +1892 5194 0.6130 +1892 5226 0.5170 +1892 5230 0.4050 +1892 5236 0.4280 +1892 5245 0.4460 +1892 5465 0.6780 +1892 5469 0.4150 +1892 5538 0.4480 +1892 5830 0.5850 +1892 6136 0.4170 +1892 6150 0.4040 +1892 6182 0.4540 +1892 6187 0.4900 +1892 6205 0.4570 +1892 6222 0.4520 +1892 6277 0.4130 +1892 6296 0.5270 +1892 6319 0.4030 +1892 6342 0.8980 +1892 6389 0.5370 +1892 6390 0.4390 +1892 6576 0.5360 +1892 6648 0.5000 +1892 6667 0.4090 +1892 6720 0.4020 +1892 6821 0.5120 +1892 6888 0.5060 +1892 7167 0.5630 +1892 7284 0.6460 +1892 7384 0.6250 +1892 7416 0.4580 +1892 7417 0.4540 +1892 7818 0.5150 +1892 7915 0.4680 +1892 7923 0.4770 +1892 8192 0.4190 +1892 8309 0.7880 +1892 8310 0.9900 +1892 8443 0.6420 +1892 8540 0.5060 +1892 8801 0.4520 +1892 8802 0.7190 +1892 8803 0.4700 +1892 8925 0.4370 +1892 9097 0.5590 +1892 9349 0.4380 +1892 9374 0.4400 +1892 9380 0.4870 +1892 9399 0.4410 +1892 9524 0.4240 +1892 9553 0.5450 +1892 9563 0.4980 +1892 9607 0.6990 +1892 9801 0.4750 +1892 9817 0.4500 +1892 9862 0.4100 +1892 10005 0.6150 +1892 10131 0.4080 +1892 10295 0.5090 +1892 10327 0.6180 +1892 10449 0.9750 +1892 10455 0.6420 +1892 10554 0.4270 +1892 10555 0.4760 +1892 10901 0.4130 +1892 10989 0.4780 +1892 11001 0.4170 +1892 11112 0.7330 +1892 11264 0.4050 +1892 11343 0.5040 +1892 23205 0.4050 +1892 23305 0.5910 +1892 23597 0.4960 +1892 23600 0.4970 +1892 25813 0.4370 +1892 26063 0.5350 +1892 26275 0.9840 +1892 26589 0.4940 +1892 27034 0.9620 +1892 27068 0.4020 +1892 27349 0.5150 +1892 28976 0.7230 +1892 51021 0.5510 +1892 51031 0.4910 +1892 51069 0.4170 +1892 51073 0.4270 +1892 51081 0.4500 +1892 51084 0.5260 +1892 51102 0.9650 +1892 51116 0.4370 +1892 51144 0.4970 +1892 51264 0.5250 +1892 51497 0.4460 +1892 51703 0.6120 +1892 54511 0.5920 +1892 54677 0.6020 +1892 54948 0.4370 +1892 54988 0.4580 +1892 54995 0.5220 +1892 55052 0.4450 +1892 55168 0.4260 +1892 55268 0.4010 +1892 55289 0.5850 +1892 55349 0.4160 +1892 55670 0.4980 +1892 55825 0.4390 +1892 55856 0.5020 +1892 55902 0.6000 +1892 56898 0.4870 +1892 56922 0.9520 +1892 56940 0.4130 +1892 57129 0.4770 +1892 57591 0.4360 +1892 60481 0.4460 +1892 60488 0.5600 +1892 63875 0.5230 +1892 64064 0.5010 +1892 64087 0.9590 +1892 64960 0.4410 +1892 64965 0.5480 +1892 64968 0.4690 +1892 64969 0.4430 +1892 64975 0.4660 +1892 64976 0.4700 +1892 64979 0.4910 +1892 64981 0.4390 +1892 64983 0.4210 +1892 65003 0.4070 +1892 65985 0.5320 +1892 79611 0.5070 +1892 79705 0.4220 +1892 79783 0.4200 +1892 80221 0.6370 +1892 80347 0.5650 +1892 80724 0.5080 +1892 81616 0.4450 +1892 84129 0.5770 +1892 84263 0.8000 +1892 84532 0.5820 +1892 84545 0.5890 +1892 84656 0.4480 +1892 84693 0.5140 +1892 91647 0.5760 +1892 116285 0.4460 +1892 120892 0.5590 +1892 126129 0.4170 +1892 132949 0.6500 +1892 134147 0.4400 +1892 134526 0.4190 +1892 137682 0.4550 +1892 137872 0.5180 +1892 140856 0.4120 +1892 197322 0.4320 +1892 219927 0.4410 +1892 254042 0.4030 +1892 284422 0.5340 +1892 341392 0.4880 +1892 347487 0.4200 +1892 348158 0.4010 +1892 376497 0.5230 +1892 503542 0.4830 +1892 109703458 0.4450 +1892 122405565 0.5340 +1893 2192 0.4450 +1893 2202 0.7580 +1893 2335 0.7120 +1893 2923 0.4180 +1893 3002 0.4020 +1893 3075 0.5170 +1893 3339 0.8090 +1893 3426 0.4740 +1893 3486 0.5490 +1893 3552 0.4260 +1893 3553 0.4690 +1893 3557 0.6940 +1893 3560 0.5670 +1893 3684 0.4120 +1893 3691 0.6650 +1893 3699 0.5440 +1893 3700 0.4440 +1893 3912 0.4100 +1893 3959 0.6150 +1893 4057 0.4780 +1893 4060 0.4300 +1893 4312 0.5200 +1893 4314 0.5240 +1893 4318 0.7600 +1893 4360 0.4270 +1893 4684 0.4970 +1893 5267 0.4750 +1893 5304 0.4630 +1893 5327 0.4090 +1893 5329 0.4560 +1893 5919 0.4050 +1893 6374 0.4610 +1893 6414 0.4490 +1893 6657 0.4280 +1893 6694 0.5070 +1893 7045 0.4120 +1893 7057 0.6300 +1893 7060 0.4730 +1893 7076 0.6100 +1893 7078 0.7300 +1893 7105 0.4120 +1893 7123 0.6240 +1893 7450 0.4810 +1893 10289 0.4530 +1893 10447 0.4710 +1893 22915 0.4410 +1893 23053 0.4070 +1893 26277 0.4620 +1893 54460 0.4050 +1893 54507 0.4280 +1893 83639 0.5130 +1893 374378 0.4220 +1894 2017 0.4670 +1894 2305 0.6600 +1894 2316 0.4070 +1894 2491 0.4590 +1894 2770 0.4380 +1894 2771 0.5220 +1894 2773 0.4260 +1894 2909 0.5180 +1894 2963 0.4410 +1894 3070 0.5740 +1894 3161 0.7890 +1894 3619 0.7430 +1894 3832 0.8910 +1894 3835 0.4990 +1894 3838 0.6900 +1894 4000 0.4230 +1894 4085 0.7790 +1894 4133 0.5680 +1894 4168 0.5740 +1894 4172 0.5860 +1894 4173 0.4240 +1894 4175 0.4600 +1894 4176 0.5580 +1894 4288 0.6760 +1894 4627 0.4120 +1894 4628 0.4090 +1894 4633 0.5810 +1894 4636 0.4720 +1894 4659 0.4760 +1894 4691 0.5230 +1894 4735 0.4280 +1894 4751 0.8200 +1894 4869 0.8300 +1894 5290 0.5050 +1894 5291 0.4120 +1894 5347 0.9370 +1894 5357 0.4180 +1894 5422 0.4240 +1894 5557 0.4720 +1894 5584 0.8040 +1894 5590 0.5100 +1894 5877 0.8090 +1894 5879 0.6790 +1894 5885 0.5470 +1894 5888 0.5110 +1894 5921 0.5910 +1894 5983 0.5530 +1894 5984 0.7670 +1894 5985 0.5380 +1894 6128 0.5210 +1894 6241 0.6050 +1894 6405 0.4070 +1894 6430 0.5340 +1894 6491 0.6440 +1894 6732 0.4060 +1894 6790 0.8310 +1894 7082 0.4510 +1894 7083 0.5550 +1894 7112 0.5410 +1894 7153 0.8450 +1894 7155 0.4470 +1894 7158 0.4920 +1894 7272 0.8640 +1894 7298 0.4180 +1894 7337 0.5530 +1894 7343 0.5320 +1894 7846 0.5250 +1894 8087 0.4820 +1894 8318 0.5110 +1894 8502 0.8310 +1894 8650 0.4310 +1894 8826 0.5660 +1894 8874 0.4910 +1894 8900 0.4050 +1894 9055 0.8500 +1894 9133 0.8240 +1894 9134 0.4900 +1894 9138 0.6860 +1894 9156 0.5880 +1894 9212 0.8780 +1894 9232 0.6230 +1894 9253 0.4270 +1894 9319 0.6870 +1894 9401 0.5120 +1894 9414 0.5280 +1894 9493 0.9990 +1894 9585 0.7130 +1894 9656 0.4830 +1894 9700 0.4920 +1894 9735 0.6170 +1894 9768 0.5250 +1894 9787 0.8580 +1894 9793 0.4850 +1894 9794 0.4290 +1894 9824 0.6130 +1894 9833 0.8890 +1894 9837 0.4150 +1894 9918 0.6250 +1894 9928 0.7610 +1894 9948 0.4350 +1894 10051 0.7750 +1894 10096 0.4350 +1894 10112 0.9220 +1894 10160 0.4400 +1894 10197 0.4470 +1894 10398 0.5010 +1894 10403 0.6850 +1894 10460 0.7090 +1894 10592 0.5400 +1894 10615 0.4720 +1894 10635 0.5510 +1894 10643 0.4140 +1894 10672 0.4730 +1894 10733 0.8830 +1894 10744 0.4370 +1894 11004 0.7170 +1894 11065 0.6760 +1894 11073 0.4070 +1894 11113 0.5520 +1894 11130 0.6750 +1894 11169 0.4360 +1894 11200 0.5070 +1894 11339 0.4590 +1894 22974 0.7500 +1894 23322 0.4670 +1894 23370 0.4380 +1894 23397 0.5820 +1894 23411 0.5410 +1894 24137 0.8200 +1894 25820 0.4890 +1894 26058 0.4100 +1894 26227 0.4400 +1894 26271 0.4340 +1894 26586 0.7130 +1894 27237 0.4030 +1894 27252 0.5180 +1894 27289 0.4660 +1894 29028 0.5660 +1894 29089 0.5400 +1894 29127 0.9990 +1894 29128 0.4940 +1894 29899 0.4200 +1894 50848 0.4990 +1894 50855 0.4610 +1894 51053 0.6070 +1894 51086 0.5450 +1894 51087 0.4810 +1894 51203 0.7840 +1894 51514 0.4710 +1894 51659 0.4650 +1894 54443 0.9940 +1894 54478 0.4770 +1894 54509 0.4920 +1894 54821 0.4640 +1894 54892 0.5280 +1894 54908 0.5440 +1894 55010 0.6600 +1894 55055 0.5640 +1894 55127 0.4060 +1894 55143 0.7960 +1894 55165 0.9130 +1894 55215 0.7410 +1894 55320 0.4450 +1894 55355 0.5880 +1894 55388 0.4510 +1894 55605 0.4080 +1894 55632 0.4990 +1894 55635 0.6490 +1894 55789 0.5560 +1894 55794 0.5870 +1894 55839 0.5100 +1894 56288 0.5130 +1894 56339 0.4170 +1894 56992 0.6240 +1894 57082 0.5950 +1894 57405 0.5000 +1894 57650 0.4220 +1894 63967 0.6560 +1894 64105 0.5910 +1894 64151 0.8650 +1894 64283 0.4520 +1894 64506 0.4240 +1894 79000 0.4320 +1894 79023 0.4330 +1894 79075 0.4520 +1894 79682 0.6650 +1894 79733 0.5640 +1894 79801 0.6350 +1894 79866 0.7370 +1894 81610 0.5870 +1894 81624 0.6930 +1894 81930 0.7380 +1894 83461 0.5560 +1894 83540 0.8180 +1894 84002 0.4040 +1894 84722 0.4200 +1894 84930 0.4120 +1894 89839 0.4090 +1894 90417 0.4310 +1894 103910 0.4760 +1894 113130 0.7220 +1894 113146 0.4690 +1894 116369 0.6840 +1894 128239 0.4420 +1894 144455 0.5000 +1894 146909 0.4220 +1894 150468 0.5200 +1894 151648 0.5380 +1894 157313 0.5200 +1894 157570 0.5580 +1894 166979 0.4210 +1894 220134 0.4250 +1894 221150 0.5020 +1894 259266 0.9240 +1894 283431 0.4510 +1894 285643 0.5920 +1894 326340 0.4020 +1894 440093 0.4430 +1896 2014 0.4220 +1896 2299 0.4930 +1896 2335 0.6210 +1896 4050 0.4240 +1896 4053 0.5670 +1896 4054 0.5820 +1896 4487 0.5980 +1896 5083 0.7800 +1896 5350 0.7260 +1896 7099 0.4030 +1896 7124 0.6980 +1896 7132 0.4830 +1896 7189 0.4830 +1896 8120 0.5090 +1896 8742 0.4990 +1896 9966 0.4910 +1896 10913 0.9990 +1896 10947 0.4290 +1896 25928 0.5910 +1896 27121 0.5230 +1896 51176 0.4480 +1896 51366 0.5250 +1896 55504 0.4690 +1896 57185 0.4350 +1896 60401 0.9960 +1896 80326 0.9220 +1896 128178 0.9590 +1901 1902 0.4280 +1901 1903 0.4330 +1901 2113 0.4280 +1901 2149 0.4930 +1901 2150 0.7860 +1901 2212 0.4960 +1901 2308 0.4680 +1901 2316 0.4930 +1901 2768 0.4660 +1901 2770 0.9930 +1901 2771 0.9220 +1901 2773 0.9630 +1901 2775 0.5240 +1901 2776 0.4440 +1901 2782 0.9200 +1901 2791 0.4980 +1901 2833 0.6600 +1901 3001 0.4060 +1901 3002 0.5210 +1901 3351 0.4130 +1901 3383 0.7380 +1901 3458 0.5260 +1901 3490 0.4250 +1901 3491 0.4200 +1901 3558 0.4460 +1901 3560 0.4200 +1901 3569 0.6380 +1901 3570 0.5550 +1901 3575 0.5540 +1901 3576 0.5300 +1901 3581 0.4460 +1901 3586 0.4260 +1901 3587 0.4160 +1901 3600 0.4690 +1901 3605 0.4400 +1901 3672 0.5320 +1901 3682 0.6290 +1901 3684 0.4280 +1901 3687 0.4050 +1901 3791 0.6560 +1901 3824 0.5170 +1901 3916 0.4390 +1901 5159 0.5560 +1901 5175 0.5160 +1901 5551 0.4190 +1901 5578 0.4450 +1901 5595 0.4190 +1901 5598 0.4620 +1901 5607 0.4010 +1901 5788 0.4980 +1901 5832 0.4620 +1901 5996 0.5890 +1901 5999 0.4430 +1901 6000 0.4560 +1901 6001 0.4780 +1901 6002 0.4630 +1901 6003 0.4880 +1901 6004 0.4610 +1901 6095 0.4080 +1901 6363 0.6390 +1901 6366 0.4610 +1901 6387 0.6240 +1901 6402 0.8300 +1901 6714 0.6090 +1901 6774 0.8180 +1901 6778 0.6120 +1901 6932 0.4280 +1901 7057 0.4060 +1901 7122 0.4100 +1901 7124 0.5110 +1901 7133 0.4980 +1901 7412 0.4270 +1901 7852 0.7190 +1901 8320 0.4830 +1901 8490 0.4890 +1901 8601 0.4600 +1901 8698 0.9480 +1901 8786 0.4610 +1901 8877 0.9180 +1901 9034 0.6290 +1901 9294 0.5310 +1901 9332 0.4690 +1901 9627 0.5020 +1901 9628 0.4660 +1901 10125 0.4470 +1901 10219 0.4870 +1901 10225 0.4710 +1901 10287 0.4760 +1901 10365 0.8560 +1901 10544 0.7150 +1901 10563 0.6040 +1901 10663 0.5540 +1901 10672 0.4430 +1901 10803 0.5750 +1901 10874 0.4730 +1901 11060 0.4720 +1901 23166 0.4500 +1901 23365 0.4160 +1901 26575 0.4570 +1901 27033 0.4730 +1901 29851 0.4190 +1901 30009 0.5610 +1901 50943 0.4780 +1901 53637 0.4600 +1901 54331 0.8420 +1901 55619 0.4790 +1901 55937 0.5560 +1901 56848 0.8700 +1901 57580 0.6170 +1901 60468 0.5520 +1901 64407 0.5300 +1901 79603 0.4590 +1901 84525 0.4440 +1901 85397 0.4610 +1901 124976 0.4770 +1901 125981 0.4730 +1901 149233 0.5640 +1901 196883 0.5000 +1901 257101 0.6150 +1901 340485 0.7170 +1901 431704 0.4680 +1902 1906 0.4930 +1902 1956 0.6140 +1902 2034 0.4540 +1902 2147 0.9050 +1902 2149 0.9450 +1902 2247 0.4330 +1902 2358 0.4910 +1902 2487 0.4480 +1902 2768 0.9950 +1902 2770 0.9970 +1902 2771 0.9280 +1902 2773 0.9200 +1902 2776 0.9970 +1902 2778 0.9400 +1902 2782 0.9370 +1902 2783 0.6770 +1902 2784 0.6710 +1902 2785 0.5770 +1902 2786 0.5630 +1902 2787 0.5410 +1902 2788 0.7470 +1902 2790 0.7240 +1902 2791 0.6110 +1902 2792 0.5920 +1902 2793 0.5840 +1902 2828 0.6910 +1902 2840 0.5770 +1902 2846 0.9940 +1902 2847 0.4550 +1902 2852 0.4450 +1902 2859 0.4620 +1902 2869 0.5300 +1902 3383 0.4820 +1902 3569 0.6200 +1902 3576 0.7430 +1902 3624 0.4360 +1902 3627 0.4810 +1902 3655 0.4400 +1902 3725 0.4540 +1902 4018 0.6700 +1902 4071 0.4350 +1902 4130 0.5810 +1902 4131 0.4510 +1902 4314 0.4570 +1902 4804 0.5130 +1902 4852 0.4220 +1902 4914 0.5240 +1902 5159 0.4490 +1902 5168 0.9170 +1902 5294 0.6780 +1902 5330 0.5740 +1902 5331 0.5740 +1902 5468 0.5880 +1902 5733 0.4490 +1902 5996 0.5550 +1902 5998 0.5230 +1902 5999 0.6050 +1902 6003 0.5690 +1902 6004 0.5590 +1902 6373 0.4030 +1902 6387 0.5880 +1902 6424 0.4190 +1902 6511 0.4920 +1902 6622 0.4380 +1902 6712 0.4290 +1902 6714 0.6430 +1902 6750 0.4820 +1902 6863 0.4280 +1902 7082 0.4810 +1902 7130 0.5420 +1902 7204 0.5140 +1902 7852 0.4140 +1902 8111 0.5670 +1902 8490 0.5950 +1902 8613 0.5370 +1902 8826 0.4710 +1902 8877 0.6260 +1902 8997 0.4990 +1902 9170 0.9530 +1902 9351 0.4180 +1902 9826 0.6500 +1902 10161 0.9920 +1902 10287 0.6080 +1902 10316 0.4180 +1902 10672 0.9620 +1902 10681 0.6850 +1902 10755 0.4110 +1902 10800 0.5190 +1902 10803 0.4420 +1902 23143 0.5490 +1902 23236 0.5970 +1902 23327 0.5340 +1902 23365 0.5900 +1902 23533 0.6500 +1902 23566 0.9380 +1902 26086 0.4160 +1902 26575 0.5660 +1902 27201 0.8100 +1902 27239 0.5060 +1902 27334 0.5820 +1902 29899 0.4040 +1902 29933 0.4020 +1902 30817 0.9690 +1902 51314 0.5380 +1902 51764 0.5410 +1902 53836 0.6590 +1902 54331 0.9440 +1902 54510 0.4540 +1902 55201 0.5040 +1902 55704 0.4220 +1902 55970 0.5610 +1902 56923 0.4760 +1902 57105 0.4800 +1902 57121 0.9870 +1902 59345 0.7040 +1902 63940 0.4170 +1902 64407 0.5580 +1902 64768 0.5060 +1902 79153 0.7490 +1902 80213 0.5490 +1902 84539 0.4120 +1902 94235 0.5410 +1902 115557 0.5460 +1902 146223 0.4760 +1902 146850 0.6500 +1902 153396 0.4230 +1902 284161 0.7850 +1902 431704 0.5730 +1902 594855 0.4780 +1903 2058 0.4520 +1903 2099 0.5800 +1903 2149 0.7810 +1903 2150 0.7320 +1903 2768 0.9930 +1903 2769 0.7300 +1903 2770 0.9900 +1903 2771 0.9200 +1903 2773 0.9120 +1903 2776 0.9990 +1903 2782 0.9090 +1903 2846 0.4460 +1903 2919 0.5100 +1903 3480 0.5360 +1903 4846 0.5310 +1903 5595 0.5990 +1903 5728 0.4100 +1903 5733 0.4420 +1903 5832 0.5680 +1903 6347 0.5800 +1903 6387 0.5460 +1903 6402 0.4550 +1903 6464 0.4990 +1903 6609 0.4120 +1903 6714 0.6080 +1903 7852 0.5740 +1903 8613 0.5650 +1903 8698 0.6900 +1903 8877 0.9650 +1903 8879 0.5840 +1903 9294 0.6360 +1903 9517 0.4820 +1903 9627 0.4640 +1903 10161 0.5630 +1903 10531 0.6690 +1903 10544 0.6630 +1903 10558 0.4530 +1903 10563 0.5230 +1903 10672 0.9890 +1903 23533 0.4060 +1903 26086 0.4010 +1903 53637 0.6540 +1903 54331 0.8280 +1903 55304 0.4730 +1903 55937 0.6140 +1903 56848 0.9420 +1903 57007 0.4290 +1903 64781 0.6400 +1903 81537 0.5860 +1903 124976 0.6690 +1903 130367 0.5090 +1903 388931 0.6580 +1906 1907 0.9500 +1906 1908 0.9710 +1906 1909 0.9990 +1906 1910 0.9990 +1906 1950 0.7950 +1906 1956 0.6480 +1906 2022 0.6810 +1906 2034 0.6610 +1906 2056 0.5420 +1906 2099 0.4410 +1906 2147 0.4470 +1906 2152 0.6820 +1906 2199 0.4450 +1906 2246 0.6300 +1906 2247 0.7620 +1906 2248 0.5110 +1906 2249 0.4990 +1906 2250 0.5110 +1906 2251 0.5110 +1906 2252 0.5180 +1906 2253 0.6330 +1906 2254 0.5200 +1906 2255 0.5130 +1906 2258 0.6360 +1906 2260 0.5160 +1906 2321 0.5520 +1906 2335 0.6050 +1906 2353 0.6800 +1906 2550 0.6620 +1906 2597 0.5330 +1906 2626 0.4540 +1906 2641 0.4160 +1906 2658 0.6120 +1906 2693 0.7660 +1906 2697 0.4630 +1906 2767 0.4890 +1906 2768 0.5650 +1906 2770 0.4160 +1906 2776 0.6910 +1906 2796 0.5570 +1906 2837 0.7700 +1906 2862 0.5470 +1906 2867 0.6710 +1906 2869 0.6170 +1906 2877 0.5020 +1906 2878 0.4770 +1906 2880 0.4750 +1906 2882 0.4750 +1906 2919 0.4460 +1906 2922 0.7280 +1906 2925 0.6290 +1906 2932 0.4120 +1906 3004 0.4610 +1906 3082 0.5280 +1906 3091 0.6300 +1906 3162 0.7350 +1906 3350 0.7370 +1906 3351 0.7690 +1906 3352 0.7300 +1906 3354 0.6980 +1906 3355 0.7030 +1906 3383 0.7990 +1906 3458 0.6970 +1906 3479 0.5900 +1906 3480 0.5930 +1906 3491 0.6310 +1906 3552 0.6370 +1906 3553 0.8030 +1906 3565 0.4730 +1906 3569 0.7650 +1906 3576 0.8030 +1906 3586 0.5550 +1906 3605 0.4180 +1906 3606 0.4510 +1906 3630 0.7970 +1906 3667 0.4600 +1906 3700 0.4770 +1906 3725 0.6300 +1906 3764 0.5570 +1906 3791 0.7160 +1906 3815 0.5970 +1906 3827 0.8270 +1906 3934 0.4040 +1906 3952 0.6440 +1906 4015 0.4250 +1906 4087 0.4560 +1906 4088 0.4650 +1906 4151 0.5050 +1906 4157 0.7550 +1906 4254 0.4890 +1906 4286 0.4030 +1906 4295 0.5540 +1906 4306 0.4880 +1906 4311 0.5930 +1906 4312 0.6290 +1906 4313 0.9580 +1906 4314 0.6100 +1906 4316 0.5660 +1906 4318 0.9630 +1906 4353 0.4580 +1906 4790 0.4860 +1906 4792 0.4310 +1906 4803 0.5330 +1906 4828 0.5500 +1906 4829 0.5990 +1906 4842 0.5280 +1906 4843 0.6640 +1906 4846 0.8840 +1906 4852 0.4490 +1906 4853 0.5040 +1906 4854 0.4210 +1906 4878 0.7970 +1906 4879 0.6420 +1906 4880 0.5440 +1906 4881 0.4050 +1906 4886 0.6990 +1906 4904 0.4100 +1906 4922 0.4060 +1906 4973 0.4510 +1906 5020 0.4590 +1906 5021 0.7830 +1906 5045 0.4090 +1906 5054 0.7550 +1906 5155 0.5230 +1906 5156 0.5580 +1906 5159 0.5680 +1906 5175 0.5770 +1906 5228 0.5420 +1906 5327 0.7390 +1906 5328 0.6500 +1906 5330 0.6580 +1906 5331 0.7210 +1906 5340 0.5530 +1906 5443 0.5280 +1906 5465 0.4540 +1906 5468 0.7240 +1906 5566 0.5260 +1906 5567 0.5250 +1906 5568 0.5260 +1906 5592 0.4350 +1906 5595 0.5810 +1906 5733 0.7570 +1906 5734 0.4090 +1906 5739 0.4720 +1906 5740 0.5100 +1906 5743 0.6630 +1906 5744 0.4340 +1906 5806 0.4300 +1906 5868 0.4110 +1906 5972 0.9140 +1906 6036 0.4180 +1906 6320 0.4990 +1906 6347 0.7910 +1906 6356 0.5220 +1906 6366 0.4860 +1906 6376 0.4040 +1906 6387 0.4850 +1906 6401 0.6720 +1906 6403 0.6000 +1906 6517 0.4040 +1906 6615 0.5320 +1906 6696 0.6930 +1906 6714 0.6780 +1906 6736 0.4200 +1906 6751 0.7000 +1906 6752 0.7150 +1906 6755 0.6970 +1906 6774 0.6560 +1906 6863 0.6000 +1906 6876 0.4110 +1906 6915 0.4260 +1906 7010 0.4890 +1906 7039 0.4510 +1906 7040 0.6910 +1906 7042 0.5150 +1906 7043 0.4070 +1906 7046 0.4140 +1906 7048 0.4180 +1906 7056 0.5470 +1906 7057 0.6410 +1906 7076 0.6960 +1906 7077 0.5460 +1906 7099 0.5300 +1906 7124 0.7320 +1906 7137 0.4470 +1906 7157 0.4510 +1906 7200 0.4730 +1906 7201 0.5450 +1906 7204 0.5090 +1906 7220 0.4530 +1906 7222 0.4480 +1906 7225 0.6370 +1906 7299 0.4080 +1906 7349 0.4700 +1906 7412 0.7220 +1906 7423 0.4260 +1906 7424 0.4850 +1906 7432 0.4010 +1906 7442 0.4470 +1906 7450 0.8980 +1906 7498 0.5570 +1906 7837 0.5130 +1906 7852 0.4840 +1906 8654 0.6360 +1906 8817 0.5310 +1906 8822 0.5110 +1906 8823 0.5180 +1906 8843 0.6840 +1906 8862 0.5180 +1906 8997 0.5040 +1906 9172 0.4090 +1906 9173 0.5330 +1906 9370 0.5670 +1906 9464 0.5940 +1906 9518 0.4020 +1906 9568 0.6610 +1906 9718 0.9770 +1906 10203 0.5020 +1906 10266 0.4300 +1906 10282 0.4450 +1906 10316 0.5560 +1906 10344 0.5150 +1906 10365 0.5290 +1906 10468 0.5580 +1906 10800 0.5990 +1906 10874 0.4740 +1906 10887 0.5450 +1906 10911 0.8520 +1906 22943 0.4030 +1906 23236 0.6950 +1906 23411 0.4320 +1906 26281 0.5180 +1906 27006 0.5130 +1906 27035 0.4890 +1906 27198 0.6920 +1906 50507 0.5960 +1906 51129 0.4080 +1906 51738 0.6050 +1906 51806 0.5320 +1906 53905 0.4190 +1906 56034 0.4680 +1906 56670 0.6910 +1906 56729 0.4730 +1906 56923 0.5860 +1906 57105 0.5790 +1906 58157 0.4070 +1906 59272 0.5330 +1906 59341 0.4010 +1906 60675 0.4380 +1906 64123 0.4130 +1906 64332 0.4090 +1906 66004 0.4240 +1906 79258 0.4870 +1906 84432 0.5450 +1906 84634 0.5520 +1906 84666 0.4480 +1906 91860 0.5350 +1906 93649 0.4080 +1906 115557 0.5710 +1906 128674 0.5450 +1906 137902 0.5040 +1906 163688 0.5190 +1906 221692 0.4180 +1906 257202 0.4750 +1906 257313 0.4280 +1906 338442 0.6980 +1906 339324 0.5260 +1906 387129 0.6410 +1906 493869 0.4770 +1906 653361 0.4630 +1906 100506658 0.4670 +1906 110599583 0.7580 +1907 1908 0.9270 +1907 1909 0.9990 +1907 1910 0.9990 +1907 2550 0.6500 +1907 2693 0.6500 +1907 2837 0.5180 +1907 2847 0.4970 +1907 2862 0.4990 +1907 2867 0.6500 +1907 2869 0.4990 +1907 2922 0.4430 +1907 2925 0.5130 +1907 3350 0.6750 +1907 3351 0.6750 +1907 3352 0.6750 +1907 3354 0.6750 +1907 3355 0.6750 +1907 3792 0.5600 +1907 3827 0.5430 +1907 3934 0.4790 +1907 4254 0.4430 +1907 4828 0.4410 +1907 4829 0.4990 +1907 4886 0.6500 +1907 5021 0.7090 +1907 5330 0.4990 +1907 5331 0.5100 +1907 5733 0.6760 +1907 6036 0.4300 +1907 6751 0.6500 +1907 6752 0.6800 +1907 6755 0.6570 +1907 7200 0.4250 +1907 7201 0.5110 +1907 7204 0.4990 +1907 7299 0.4320 +1907 7442 0.4500 +1907 8843 0.6500 +1907 8997 0.4990 +1907 9021 0.4010 +1907 9568 0.6500 +1907 9718 0.8210 +1907 10316 0.5010 +1907 10800 0.4990 +1907 10874 0.4360 +1907 10887 0.4990 +1907 10911 0.5620 +1907 23236 0.5090 +1907 27198 0.6500 +1907 51738 0.4290 +1907 55212 0.4140 +1907 56670 0.6500 +1907 56923 0.5170 +1907 57105 0.5050 +1907 60675 0.4380 +1907 84432 0.4150 +1907 115557 0.4990 +1907 128674 0.4990 +1907 129521 0.4210 +1907 161003 0.4970 +1907 257313 0.4180 +1907 338442 0.6500 +1907 387129 0.5840 +1907 110599583 0.7490 +1908 1909 0.9990 +1908 1910 0.9990 +1908 2066 0.4340 +1908 2550 0.6510 +1908 2668 0.8580 +1908 2674 0.7080 +1908 2675 0.5650 +1908 2693 0.6950 +1908 2796 0.5770 +1908 2837 0.5630 +1908 2861 0.4650 +1908 2862 0.5480 +1908 2867 0.6500 +1908 2869 0.5080 +1908 2922 0.6720 +1908 2925 0.5840 +1908 3084 0.4630 +1908 3350 0.7070 +1908 3351 0.6990 +1908 3352 0.7070 +1908 3354 0.7120 +1908 3355 0.7270 +1908 3792 0.9510 +1908 3815 0.4500 +1908 3827 0.6030 +1908 3956 0.4410 +1908 4157 0.5570 +1908 4254 0.6980 +1908 4286 0.6280 +1908 4295 0.4390 +1908 4311 0.5580 +1908 4828 0.4450 +1908 4829 0.5590 +1908 4878 0.4470 +1908 4886 0.6920 +1908 4902 0.5870 +1908 5021 0.7480 +1908 5077 0.7020 +1908 5304 0.5890 +1908 5330 0.4990 +1908 5331 0.5070 +1908 5623 0.5050 +1908 5733 0.7000 +1908 5979 0.8000 +1908 6036 0.5730 +1908 6591 0.4720 +1908 6660 0.4870 +1908 6663 0.8760 +1908 6736 0.4870 +1908 6751 0.6980 +1908 6752 0.6840 +1908 6755 0.6830 +1908 7200 0.4310 +1908 7201 0.5480 +1908 7204 0.4990 +1908 7299 0.5700 +1908 7306 0.5230 +1908 7504 0.7810 +1908 8843 0.6830 +1908 8929 0.7850 +1908 8997 0.5100 +1908 9568 0.6570 +1908 9718 0.8920 +1908 10316 0.5750 +1908 10800 0.5480 +1908 10874 0.4780 +1908 10887 0.6960 +1908 10911 0.5160 +1908 23236 0.4990 +1908 27198 0.6830 +1908 51012 0.4780 +1908 51738 0.4480 +1908 56670 0.6830 +1908 56923 0.5600 +1908 57105 0.5480 +1908 60675 0.4260 +1908 84432 0.5520 +1908 115557 0.5090 +1908 128674 0.6470 +1908 206338 0.4680 +1908 245910 0.4070 +1908 257313 0.4470 +1908 284654 0.4120 +1908 338442 0.6830 +1908 387129 0.6240 +1908 390321 0.4280 +1908 594857 0.4080 +1908 110599583 0.8260 +1909 1910 0.9940 +1909 1938 0.4260 +1909 2053 0.4340 +1909 2147 0.9070 +1909 2321 0.5000 +1909 2693 0.4290 +1909 2767 0.9600 +1909 2768 0.9800 +1909 2769 0.7360 +1909 2770 0.7030 +1909 2771 0.7200 +1909 2773 0.7370 +1909 2776 0.9800 +1909 2796 0.6120 +1909 2837 0.4570 +1909 2862 0.4100 +1909 2869 0.6040 +1909 2922 0.6120 +1909 2925 0.4210 +1909 3091 0.5490 +1909 3309 0.4400 +1909 3569 0.4210 +1909 3630 0.4080 +1909 3759 0.9110 +1909 3792 0.4540 +1909 3827 0.9420 +1909 4170 0.5220 +1909 4295 0.5480 +1909 4313 0.4440 +1909 4314 0.5360 +1909 4828 0.5660 +1909 4829 0.5550 +1909 4846 0.5990 +1909 4852 0.7160 +1909 4878 0.4670 +1909 5020 0.7050 +1909 5077 0.4220 +1909 5159 0.5990 +1909 5330 0.5160 +1909 5331 0.5820 +1909 5429 0.4970 +1909 5562 0.4320 +1909 5594 0.4340 +1909 5595 0.4380 +1909 5731 0.4880 +1909 5739 0.4410 +1909 5972 0.5740 +1909 6036 0.7870 +1909 6696 0.4760 +1909 6714 0.5080 +1909 6750 0.7040 +1909 7122 0.4250 +1909 7124 0.4760 +1909 7200 0.5370 +1909 7201 0.4220 +1909 7204 0.5100 +1909 7432 0.4540 +1909 8654 0.5830 +1909 8997 0.5090 +1909 9068 0.4670 +1909 9144 0.4140 +1909 9464 0.6040 +1909 9630 0.7470 +1909 9718 0.8700 +1909 10018 0.6090 +1909 10316 0.4030 +1909 10672 0.9420 +1909 10682 0.4220 +1909 10800 0.4400 +1909 10874 0.5230 +1909 10911 0.5850 +1909 23236 0.6150 +1909 26297 0.5110 +1909 51129 0.5330 +1909 51378 0.4480 +1909 51530 0.4260 +1909 51738 0.6850 +1909 55751 0.5460 +1909 56923 0.4100 +1909 57105 0.4490 +1909 60675 0.5370 +1909 64123 0.6350 +1909 84432 0.5320 +1909 115557 0.5700 +1909 129521 0.4990 +1909 160851 0.5820 +1909 168667 0.4090 +1909 221079 0.4070 +1909 257313 0.5010 +1909 285381 0.5770 +1909 338567 0.5570 +1909 387129 0.4770 +1909 594857 0.5180 +1909 110599583 0.7610 +1910 2043 0.4250 +1910 2053 0.6130 +1910 2147 0.9100 +1910 2167 0.4850 +1910 2173 0.5310 +1910 2252 0.6650 +1910 2315 0.4820 +1910 2524 0.6050 +1910 2668 0.9000 +1910 2674 0.8410 +1910 2676 0.4300 +1910 2693 0.4380 +1910 2767 0.9710 +1910 2768 0.9300 +1910 2769 0.7150 +1910 2770 0.9210 +1910 2771 0.9190 +1910 2773 0.9160 +1910 2776 0.9750 +1910 2796 0.5630 +1910 2837 0.4270 +1910 2862 0.4110 +1910 2869 0.5670 +1910 2922 0.6970 +1910 2925 0.4190 +1910 3164 0.4940 +1910 3196 0.4890 +1910 3351 0.4450 +1910 3358 0.4400 +1910 3791 0.4850 +1910 3815 0.7030 +1910 3827 0.9430 +1910 4008 0.6570 +1910 4157 0.5270 +1910 4254 0.8810 +1910 4286 0.6700 +1910 4295 0.5300 +1910 4684 0.4180 +1910 4828 0.5380 +1910 4829 0.4280 +1910 4838 0.4100 +1910 4842 0.4340 +1910 4846 0.7010 +1910 4878 0.4310 +1910 4902 0.4560 +1910 4922 0.5680 +1910 4948 0.4100 +1910 5077 0.6480 +1910 5175 0.4080 +1910 5330 0.5370 +1910 5331 0.5740 +1910 5443 0.7650 +1910 5468 0.4410 +1910 5530 0.4810 +1910 5764 0.4800 +1910 5972 0.5140 +1910 5979 0.8470 +1910 6490 0.4390 +1910 6505 0.4370 +1910 6591 0.4500 +1910 6663 0.9080 +1910 6736 0.4760 +1910 7200 0.5120 +1910 7201 0.4140 +1910 7204 0.4990 +1910 7299 0.6910 +1910 7306 0.5540 +1910 7345 0.4530 +1910 7347 0.5210 +1910 7432 0.4400 +1910 8654 0.4820 +1910 8929 0.7300 +1910 8997 0.5100 +1910 9048 0.4610 +1910 9068 0.4740 +1910 9542 0.4490 +1910 9630 0.7320 +1910 9718 0.7350 +1910 9839 0.4740 +1910 10316 0.4220 +1910 10672 0.9600 +1910 10733 0.4290 +1910 10800 0.4560 +1910 10874 0.5470 +1910 10887 0.4710 +1910 10911 0.5590 +1910 10987 0.4400 +1910 23236 0.5720 +1910 26040 0.6710 +1910 51129 0.4270 +1910 51151 0.4780 +1910 51378 0.4630 +1910 51738 0.5400 +1910 55823 0.4930 +1910 57085 0.4580 +1910 57105 0.4380 +1910 60675 0.5380 +1910 64123 0.6200 +1910 64925 0.4840 +1910 84432 0.5960 +1910 115557 0.5210 +1910 118429 0.4640 +1910 128674 0.4400 +1910 129521 0.5190 +1910 170622 0.5780 +1910 257313 0.5340 +1910 387129 0.4980 +1910 594857 0.5230 +1910 110599583 0.5910 +1911 1912 0.9960 +1911 1958 0.5260 +1911 2122 0.5260 +1911 2145 0.9500 +1911 2146 0.9820 +1911 3012 0.4990 +1911 3013 0.4990 +1911 3014 0.5270 +1911 3015 0.5820 +1911 3017 0.5050 +1911 3018 0.5050 +1911 3021 0.7820 +1911 3065 0.5670 +1911 3066 0.9350 +1911 3190 0.4380 +1911 3720 0.7070 +1911 3725 0.5110 +1911 4343 0.5080 +1911 5460 0.5450 +1911 5468 0.5150 +1911 5600 0.5070 +1911 5888 0.7260 +1911 5928 0.9420 +1911 5931 0.9370 +1911 5978 0.6110 +1911 6015 0.9990 +1911 6045 0.9990 +1911 6322 0.6310 +1911 6491 0.4870 +1911 6591 0.4990 +1911 6594 0.4960 +1911 6612 0.4250 +1911 6613 0.4260 +1911 6615 0.5110 +1911 6657 0.5380 +1911 7024 0.4820 +1911 7027 0.5350 +1911 7029 0.5580 +1911 7101 0.5160 +1911 7157 0.5870 +1911 7272 0.7180 +1911 7329 0.4830 +1911 7341 0.5560 +1911 7342 0.5390 +1911 7528 0.6520 +1911 7703 0.9990 +1911 7867 0.5790 +1911 8290 0.5870 +1911 8314 0.9050 +1911 8331 0.4990 +1911 8334 0.4990 +1911 8337 0.8040 +1911 8338 0.8040 +1911 8340 0.5050 +1911 8341 0.5080 +1911 8342 0.5050 +1911 8345 0.5050 +1911 8347 0.5230 +1911 8348 0.5050 +1911 8349 0.6280 +1911 8356 0.7820 +1911 8361 0.5580 +1911 8467 0.4670 +1911 8535 0.9980 +1911 8697 0.9000 +1911 8726 0.9890 +1911 8841 0.5220 +1911 8881 0.9030 +1911 8970 0.5060 +1911 9112 0.5250 +1911 9219 0.5150 +1911 9261 0.5400 +1911 9577 0.9010 +1911 9656 0.4510 +1911 9662 0.5220 +1911 9898 0.9000 +1911 9994 0.4220 +1911 10014 0.5310 +1911 10138 0.8790 +1911 10336 0.9790 +1911 10389 0.9140 +1911 10393 0.9060 +1911 10419 0.4280 +1911 10951 0.7850 +1911 11065 0.9010 +1911 22823 0.6090 +1911 22955 0.9850 +1911 22995 0.5430 +1911 23028 0.5850 +1911 23112 0.5040 +1911 23135 0.5580 +1911 23141 0.5350 +1911 23186 0.5640 +1911 23230 0.6070 +1911 23269 0.5140 +1911 23429 0.8710 +1911 23466 0.9890 +1911 23492 0.9940 +1911 23512 0.9850 +1911 25847 0.9030 +1911 25906 0.9000 +1911 26053 0.6640 +1911 26147 0.6120 +1911 26523 0.5320 +1911 27327 0.5230 +1911 27338 0.9020 +1911 29882 0.9000 +1911 29945 0.9000 +1911 51132 0.4760 +1911 51239 0.5500 +1911 51343 0.5460 +1911 51433 0.9100 +1911 51434 0.9010 +1911 51460 0.4250 +1911 51529 0.9000 +1911 51564 0.5220 +1911 53615 0.4990 +1911 54145 0.5050 +1911 54815 0.5300 +1911 54880 0.9560 +1911 55196 0.4230 +1911 55252 0.6540 +1911 55755 0.5100 +1911 55766 0.4990 +1911 55835 0.4880 +1911 57082 0.4910 +1911 57167 0.5960 +1911 57332 0.9960 +1911 57459 0.5200 +1911 57504 0.5420 +1911 57713 0.5280 +1911 63035 0.4350 +1911 63925 0.6390 +1911 64319 0.5310 +1911 64682 0.9020 +1911 79084 0.4420 +1911 79184 0.9010 +1911 79648 0.5070 +1911 79923 0.6910 +1911 80012 0.9960 +1911 80816 0.5790 +1911 83746 0.5910 +1911 84108 0.9860 +1911 84232 0.5030 +1911 84333 0.9740 +1911 84444 0.5580 +1911 84678 0.6300 +1911 84733 0.9990 +1911 84759 0.9880 +1911 85236 0.5060 +1911 94239 0.5290 +1911 119504 0.9000 +1911 121536 0.9570 +1911 128312 0.5050 +1911 132625 0.6070 +1911 140459 0.5530 +1911 163786 0.4450 +1911 166979 0.5460 +1911 171023 0.9100 +1911 192669 0.5160 +1911 192670 0.5220 +1911 221895 0.4810 +1911 246184 0.9000 +1911 255626 0.5050 +1911 259266 0.4420 +1911 284403 0.5420 +1911 404281 0.5680 +1911 440093 0.5870 +1911 440686 0.5870 +1911 474382 0.4990 +1911 653604 0.7840 +1911 100170841 0.6030 +1911 100532731 0.9980 +1912 1958 0.5020 +1912 2122 0.5010 +1912 2145 0.9310 +1912 2146 0.9550 +1912 3012 0.6300 +1912 3013 0.5000 +1912 3014 0.4990 +1912 3015 0.5190 +1912 3017 0.4990 +1912 3018 0.4990 +1912 3021 0.6090 +1912 3065 0.5220 +1912 3066 0.9270 +1912 3190 0.4230 +1912 3720 0.5080 +1912 3725 0.5220 +1912 4343 0.5000 +1912 5468 0.5020 +1912 5600 0.5240 +1912 5888 0.7370 +1912 5928 0.9210 +1912 5931 0.9180 +1912 5978 0.5010 +1912 6015 0.9980 +1912 6045 0.9970 +1912 6322 0.5240 +1912 6477 0.4260 +1912 6591 0.5030 +1912 6615 0.5000 +1912 7024 0.4960 +1912 7101 0.5020 +1912 7157 0.5260 +1912 7272 0.6210 +1912 7329 0.4420 +1912 7342 0.5770 +1912 7528 0.6050 +1912 7703 0.9980 +1912 7867 0.6460 +1912 8314 0.9050 +1912 8331 0.4990 +1912 8334 0.5000 +1912 8337 0.7730 +1912 8338 0.7730 +1912 8340 0.4990 +1912 8341 0.4990 +1912 8342 0.4990 +1912 8345 0.4990 +1912 8347 0.5170 +1912 8348 0.4990 +1912 8349 0.5890 +1912 8356 0.6060 +1912 8361 0.6390 +1912 8535 0.9940 +1912 8697 0.9000 +1912 8726 0.9610 +1912 8841 0.5120 +1912 8881 0.9000 +1912 8970 0.4990 +1912 9112 0.5040 +1912 9219 0.5040 +1912 9261 0.7470 +1912 9577 0.9020 +1912 9898 0.9020 +1912 10014 0.5350 +1912 10138 0.8070 +1912 10336 0.9680 +1912 10389 0.9510 +1912 10393 0.9000 +1912 11065 0.9040 +1912 22823 0.4810 +1912 22955 0.9460 +1912 23028 0.5040 +1912 23112 0.5040 +1912 23135 0.5610 +1912 23186 0.5040 +1912 23429 0.8150 +1912 23466 0.9930 +1912 23476 0.5250 +1912 23492 0.9960 +1912 23512 0.9570 +1912 25847 0.9000 +1912 25906 0.9000 +1912 26053 0.5500 +1912 26147 0.5400 +1912 26523 0.5060 +1912 27327 0.4990 +1912 27338 0.9060 +1912 29882 0.9030 +1912 29945 0.9040 +1912 51239 0.5400 +1912 51343 0.5630 +1912 51433 0.9000 +1912 51434 0.9000 +1912 51529 0.9000 +1912 51564 0.5890 +1912 53615 0.5040 +1912 54145 0.4990 +1912 54815 0.5090 +1912 54880 0.9280 +1912 55252 0.5940 +1912 55766 0.4990 +1912 57167 0.5080 +1912 57332 0.9990 +1912 57459 0.4990 +1912 57504 0.4990 +1912 64319 0.4300 +1912 64682 0.9000 +1912 79184 0.9030 +1912 80012 0.9730 +1912 80816 0.5710 +1912 84108 0.9740 +1912 84232 0.5040 +1912 84333 0.9750 +1912 84678 0.6950 +1912 84733 0.9990 +1912 84759 0.9770 +1912 85236 0.4990 +1912 94239 0.5070 +1912 119504 0.9000 +1912 121536 0.9220 +1912 128312 0.4990 +1912 132625 0.5830 +1912 140459 0.5430 +1912 166979 0.5530 +1912 171023 0.9020 +1912 192669 0.5020 +1912 192670 0.5120 +1912 246184 0.9000 +1912 255626 0.4990 +1912 404281 0.5830 +1912 474382 0.4990 +1912 653604 0.6050 +1912 100170841 0.5330 +1912 100532731 0.9780 +1915 1917 0.9940 +1915 1936 0.9970 +1915 1937 0.9990 +1915 1938 0.9820 +1915 1956 0.5380 +1915 1965 0.8570 +1915 1968 0.7640 +1915 1973 0.9350 +1915 1974 0.8800 +1915 1975 0.5880 +1915 1977 0.8280 +1915 1981 0.6790 +1915 1982 0.5700 +1915 1983 0.6720 +1915 1984 0.8840 +1915 2023 0.6720 +1915 2026 0.5180 +1915 2027 0.6500 +1915 2058 0.6030 +1915 2091 0.4540 +1915 2107 0.9590 +1915 2178 0.4990 +1915 2197 0.9630 +1915 2237 0.4170 +1915 2288 0.4730 +1915 2289 0.4230 +1915 2318 0.4940 +1915 2335 0.5220 +1915 2495 0.4480 +1915 2512 0.5170 +1915 2597 0.9720 +1915 2617 0.4440 +1915 2618 0.5790 +1915 2670 0.9560 +1915 2794 0.9690 +1915 2810 0.4620 +1915 2821 0.4680 +1915 2882 0.4400 +1915 2896 0.4430 +1915 2923 0.5770 +1915 2962 0.4740 +1915 2990 0.4040 +1915 3008 0.4570 +1915 3021 0.4850 +1915 3035 0.5730 +1915 3066 0.5230 +1915 3122 0.9070 +1915 3123 0.9140 +1915 3151 0.4860 +1915 3164 0.5390 +1915 3178 0.6620 +1915 3181 0.5660 +1915 3183 0.5340 +1915 3185 0.4650 +1915 3187 0.4340 +1915 3190 0.7410 +1915 3191 0.4470 +1915 3251 0.4340 +1915 3297 0.9550 +1915 3303 0.5840 +1915 3304 0.6700 +1915 3306 0.4530 +1915 3308 0.9160 +1915 3309 0.5880 +1915 3310 0.4790 +1915 3312 0.9410 +1915 3313 0.7230 +1915 3320 0.8910 +1915 3326 0.7850 +1915 3329 0.6310 +1915 3337 0.4170 +1915 3376 0.4820 +1915 3417 0.4720 +1915 3418 0.4410 +1915 3430 0.4230 +1915 3434 0.5270 +1915 3608 0.4360 +1915 3615 0.5540 +1915 3646 0.6490 +1915 3688 0.4830 +1915 3692 0.6160 +1915 3735 0.5310 +1915 3818 0.4370 +1915 3837 0.5650 +1915 3842 0.5400 +1915 3895 0.4600 +1915 3921 0.9930 +1915 3982 0.4120 +1915 4089 0.6640 +1915 4100 0.4050 +1915 4131 0.4860 +1915 4137 0.6080 +1915 4141 0.7970 +1915 4176 0.4420 +1915 4191 0.5780 +1915 4193 0.7950 +1915 4281 0.7290 +1915 4302 0.4620 +1915 4320 0.4410 +1915 4512 0.7740 +1915 4513 0.5230 +1915 4519 0.5790 +1915 4535 0.5020 +1915 4609 0.5060 +1915 4666 0.6890 +1915 4670 0.4750 +1915 4677 0.4130 +1915 4691 0.4550 +1915 4728 0.4150 +1915 4736 0.9840 +1915 4738 0.5120 +1915 4790 0.4120 +1915 4809 0.5000 +1915 4831 0.7490 +1915 4841 0.4870 +1915 4869 0.8420 +1915 4904 0.6800 +1915 5034 0.5580 +1915 5036 0.8960 +1915 5042 0.4800 +1915 5052 0.4100 +1915 5054 0.4520 +1915 5071 0.4270 +1915 5093 0.9730 +1915 5094 0.4900 +1915 5202 0.4710 +1915 5204 0.4690 +1915 5216 0.7470 +1915 5230 0.8190 +1915 5232 0.6130 +1915 5245 0.4630 +1915 5315 0.6890 +1915 5335 0.5760 +1915 5347 0.4310 +1915 5431 0.7690 +1915 5460 0.4590 +1915 5464 0.5580 +1915 5473 0.4520 +1915 5478 0.6790 +1915 5499 0.4730 +1915 5518 0.5370 +1915 5580 0.4190 +1915 5594 0.5090 +1915 5682 0.5250 +1915 5683 0.6930 +1915 5684 0.6780 +1915 5685 0.5420 +1915 5686 0.7090 +1915 5687 0.6100 +1915 5688 0.6480 +1915 5690 0.4570 +1915 5692 0.4570 +1915 5702 0.5770 +1915 5704 0.4880 +1915 5705 0.5130 +1915 5706 0.5020 +1915 5707 0.7480 +1915 5708 0.6810 +1915 5710 0.6890 +1915 5713 0.6310 +1915 5714 0.4540 +1915 5717 0.6710 +1915 5718 0.5600 +1915 5725 0.4420 +1915 5757 0.5400 +1915 5771 0.4080 +1915 5777 0.9030 +1915 5829 0.4250 +1915 5859 0.4270 +1915 5877 0.4100 +1915 5886 0.4260 +1915 5887 0.4270 +1915 5901 0.9730 +1915 5903 0.4530 +1915 5908 0.5100 +1915 5935 0.4470 +1915 5976 0.4450 +1915 6059 0.5490 +1915 6122 0.9950 +1915 6123 0.7710 +1915 6124 0.9970 +1915 6125 0.9950 +1915 6128 0.9940 +1915 6129 0.9950 +1915 6130 0.9900 +1915 6132 0.9860 +1915 6133 0.9920 +1915 6135 0.9870 +1915 6136 0.9850 +1915 6137 0.9910 +1915 6138 0.9900 +1915 6139 0.9800 +1915 6141 0.9890 +1915 6142 0.9960 +1915 6143 0.9830 +1915 6144 0.9790 +1915 6146 0.9680 +1915 6147 0.9770 +1915 6152 0.9690 +1915 6154 0.9640 +1915 6155 0.9890 +1915 6156 0.9880 +1915 6157 0.9880 +1915 6158 0.9670 +1915 6159 0.9540 +1915 6160 0.9890 +1915 6161 0.9850 +1915 6164 0.9670 +1915 6165 0.9820 +1915 6166 0.9310 +1915 6167 0.9580 +1915 6168 0.9690 +1915 6169 0.9470 +1915 6170 0.9560 +1915 6171 0.8230 +1915 6173 0.9370 +1915 6175 0.9950 +1915 6176 0.9590 +1915 6181 0.7920 +1915 6183 0.5030 +1915 6187 0.9980 +1915 6188 0.9970 +1915 6189 0.9970 +1915 6191 0.9930 +1915 6192 0.7040 +1915 6193 0.9830 +1915 6194 0.9950 +1915 6201 0.9770 +1915 6202 0.9950 +1915 6203 0.9890 +1915 6204 0.9600 +1915 6205 0.9920 +1915 6206 0.9780 +1915 6207 0.9780 +1915 6208 0.9760 +1915 6209 0.9800 +1915 6210 0.9800 +1915 6217 0.9920 +1915 6218 0.9640 +1915 6222 0.9860 +1915 6223 0.9810 +1915 6224 0.9950 +1915 6227 0.9460 +1915 6228 0.9910 +1915 6229 0.9700 +1915 6230 0.9680 +1915 6231 0.9650 +1915 6232 0.9790 +1915 6233 0.9840 +1915 6234 0.9730 +1915 6235 0.9470 +1915 6301 0.5150 +1915 6389 0.5320 +1915 6426 0.5690 +1915 6500 0.4180 +1915 6613 0.5560 +1915 6615 0.4870 +1915 6624 0.4650 +1915 6688 0.4060 +1915 6714 0.5110 +1915 6741 0.4380 +1915 6774 0.5400 +1915 6778 0.4010 +1915 6780 0.4110 +1915 6856 0.4150 +1915 6888 0.4390 +1915 6894 0.7980 +1915 6908 0.5610 +1915 6921 0.6150 +1915 6950 0.6090 +1915 7046 0.4850 +1915 7114 0.5340 +1915 7157 0.6250 +1915 7167 0.7000 +1915 7178 0.9500 +1915 7184 0.4690 +1915 7203 0.5360 +1915 7258 0.5710 +1915 7273 0.5510 +1915 7275 0.5810 +1915 7277 0.5650 +1915 7280 0.6120 +1915 7294 0.6510 +1915 7295 0.4530 +1915 7311 0.9600 +1915 7314 0.5390 +1915 7316 0.7950 +1915 7341 0.5750 +1915 7407 0.9530 +1915 7430 0.5220 +1915 7453 0.6760 +1915 7458 0.4940 +1915 7514 0.8090 +1915 7529 0.4670 +1915 7531 0.5020 +1915 7534 0.5910 +1915 7704 0.7520 +1915 7837 0.4270 +1915 7846 0.4770 +1915 8000 0.4210 +1915 8260 0.4500 +1915 8266 0.4420 +1915 8290 0.4610 +1915 8356 0.4710 +1915 8431 0.4650 +1915 8451 0.4880 +1915 8565 0.6560 +1915 8607 0.5800 +1915 8661 0.5130 +1915 8662 0.8170 +1915 8663 0.5370 +1915 8664 0.5370 +1915 8665 0.7250 +1915 8666 0.5180 +1915 8667 0.4680 +1915 8668 0.7940 +1915 8672 0.4070 +1915 8732 0.4190 +1915 8761 0.4350 +1915 8882 0.8740 +1915 8894 0.7360 +1915 9045 0.9860 +1915 9060 0.9140 +1915 9061 0.9210 +1915 9141 0.4100 +1915 9255 0.5710 +1915 9343 0.8430 +1915 9349 0.9620 +1915 9352 0.6180 +1915 9470 0.4300 +1915 9472 0.4320 +1915 9521 0.4720 +1915 9669 0.7390 +1915 9775 0.5590 +1915 9782 0.4620 +1915 9790 0.7590 +1915 9811 0.7500 +1915 9853 0.4700 +1915 9858 0.4130 +1915 9861 0.4290 +1915 9939 0.6620 +1915 9978 0.4540 +1915 9987 0.5040 +1915 10102 0.6960 +1915 10130 0.5190 +1915 10131 0.5090 +1915 10209 0.7040 +1915 10213 0.6300 +1915 10236 0.4330 +1915 10352 0.4960 +1915 10376 0.6970 +1915 10381 0.4550 +1915 10383 0.4690 +1915 10399 0.9930 +1915 10412 0.5150 +1915 10480 0.7170 +1915 10492 0.4990 +1915 10521 0.4840 +1915 10537 0.6720 +1915 10574 0.6210 +1915 10575 0.9040 +1915 10576 0.7200 +1915 10606 0.4330 +1915 10628 0.5650 +1915 10666 0.5080 +1915 10694 0.6930 +1915 10726 0.4340 +1915 10856 0.5320 +1915 10910 0.4050 +1915 10963 0.4020 +1915 10971 0.4760 +1915 10985 0.5820 +1915 10987 0.4260 +1915 11140 0.4020 +1915 11222 0.4870 +1915 11224 0.9690 +1915 11260 0.5100 +1915 22938 0.5200 +1915 22948 0.6330 +1915 23016 0.4360 +1915 23032 0.4110 +1915 23170 0.8080 +1915 23178 0.4290 +1915 23363 0.4800 +1915 23395 0.6410 +1915 23405 0.6200 +1915 23435 0.5490 +1915 23438 0.4380 +1915 23521 0.9890 +1915 23524 0.4160 +1915 23560 0.6050 +1915 23637 0.4040 +1915 25873 0.9470 +1915 25914 0.4390 +1915 26003 0.4050 +1915 26227 0.4760 +1915 26330 0.4960 +1915 26523 0.5460 +1915 26747 0.4250 +1915 26986 0.8840 +1915 27068 0.5290 +1915 27102 0.4290 +1915 27161 0.5010 +1915 27295 0.4160 +1915 27304 0.4970 +1915 27316 0.4620 +1915 27335 0.4290 +1915 27340 0.7570 +1915 27429 0.5720 +1915 29101 0.8020 +1915 29126 0.4310 +1915 29904 0.4090 +1915 51065 0.6650 +1915 51073 0.4810 +1915 51081 0.5890 +1915 51116 0.4550 +1915 51121 0.6110 +1915 51138 0.4870 +1915 51154 0.5770 +1915 51260 0.8230 +1915 51320 0.5140 +1915 51386 0.6740 +1915 51493 0.4190 +1915 51520 0.6920 +1915 51574 0.5590 +1915 51593 0.4330 +1915 51727 0.4990 +1915 51806 0.6770 +1915 51807 0.4530 +1915 53918 0.8710 +1915 54205 0.4880 +1915 54802 0.4350 +1915 54915 0.5310 +1915 54938 0.4330 +1915 55140 0.4210 +1915 55143 0.6910 +1915 55173 0.7500 +1915 55324 0.4520 +1915 55646 0.8220 +1915 55703 0.4660 +1915 56648 0.6960 +1915 57176 0.6830 +1915 57510 0.5520 +1915 60678 0.4670 +1915 64969 0.4790 +1915 65008 0.5470 +1915 79026 0.4060 +1915 79048 0.4110 +1915 79631 0.6720 +1915 79759 0.4520 +1915 79861 0.4740 +1915 80155 0.4510 +1915 80308 0.8050 +1915 80335 0.9300 +1915 80852 0.4250 +1915 81631 0.4730 +1915 83605 0.4380 +1915 84790 0.6030 +1915 85414 0.4170 +1915 85476 0.7210 +1915 91408 0.4430 +1915 91860 0.6570 +1915 92815 0.4010 +1915 92935 0.4020 +1915 112714 0.4610 +1915 113457 0.4660 +1915 114987 0.4120 +1915 116832 0.6160 +1915 121506 0.5630 +1915 124454 0.5310 +1915 126402 0.4910 +1915 127933 0.4950 +1915 132949 0.4540 +1915 137902 0.4210 +1915 140032 0.6980 +1915 140801 0.9560 +1915 143244 0.7240 +1915 163688 0.6570 +1915 192669 0.4280 +1915 192670 0.4450 +1915 200916 0.5750 +1915 203068 0.7750 +1915 221120 0.4140 +1915 221143 0.9660 +1915 255626 0.5200 +1915 261726 0.4390 +1915 285855 0.5570 +1915 345456 0.7220 +1915 347487 0.4420 +1915 375189 0.7210 +1915 387129 0.4870 +1915 399818 0.8870 +1915 440093 0.4400 +1915 440275 0.7570 +1915 440686 0.4400 +1915 553115 0.4160 +1915 653604 0.4460 +1915 728378 0.6120 +1915 100287482 0.4120 +1915 100505478 0.4550 +1917 1936 0.9600 +1917 1937 0.9790 +1917 1938 0.8540 +1917 1965 0.6390 +1917 1968 0.4350 +1917 1973 0.6510 +1917 1974 0.6530 +1917 1984 0.7280 +1917 2023 0.4890 +1917 2026 0.5040 +1917 2027 0.4300 +1917 2107 0.9310 +1917 2178 0.5030 +1917 2197 0.4950 +1917 2597 0.7310 +1917 2650 0.4740 +1917 2794 0.7190 +1917 2821 0.4420 +1917 3021 0.4030 +1917 3122 0.9000 +1917 3123 0.9080 +1917 3297 0.9120 +1917 3308 0.6970 +1917 3312 0.4670 +1917 3313 0.4290 +1917 3320 0.5790 +1917 3326 0.5760 +1917 3329 0.4190 +1917 3383 0.4430 +1917 3417 0.4020 +1917 3418 0.4200 +1917 3688 0.4610 +1917 3704 0.4090 +1917 3785 0.4240 +1917 3921 0.6730 +1917 3982 0.4120 +1917 4099 0.4570 +1917 4137 0.6180 +1917 4141 0.6230 +1917 4176 0.4120 +1917 4512 0.7420 +1917 4513 0.5000 +1917 4519 0.5570 +1917 4535 0.4850 +1917 4691 0.5200 +1917 4728 0.4170 +1917 4736 0.5430 +1917 4738 0.4500 +1917 4831 0.6510 +1917 5042 0.4100 +1917 5216 0.5630 +1917 5230 0.6290 +1917 5232 0.6200 +1917 5313 0.4800 +1917 5315 0.4730 +1917 5431 0.7250 +1917 5460 0.5390 +1917 5464 0.5140 +1917 5478 0.4330 +1917 5531 0.4360 +1917 5753 0.4430 +1917 5777 0.9030 +1917 5901 0.9420 +1917 6122 0.6040 +1917 6123 0.5490 +1917 6124 0.8170 +1917 6125 0.7390 +1917 6128 0.4370 +1917 6129 0.6870 +1917 6130 0.4810 +1917 6132 0.7370 +1917 6133 0.4420 +1917 6135 0.5500 +1917 6136 0.5220 +1917 6137 0.6840 +1917 6138 0.4180 +1917 6139 0.5190 +1917 6141 0.6280 +1917 6142 0.5040 +1917 6143 0.5350 +1917 6144 0.5770 +1917 6147 0.5000 +1917 6152 0.4390 +1917 6155 0.5740 +1917 6156 0.5590 +1917 6157 0.4450 +1917 6161 0.6540 +1917 6175 0.6170 +1917 6176 0.8660 +1917 6183 0.4940 +1917 6187 0.7930 +1917 6188 0.7700 +1917 6189 0.7600 +1917 6191 0.4260 +1917 6192 0.4240 +1917 6193 0.6370 +1917 6194 0.7220 +1917 6201 0.4590 +1917 6202 0.5350 +1917 6203 0.4490 +1917 6205 0.5000 +1917 6206 0.4450 +1917 6207 0.4030 +1917 6209 0.7360 +1917 6217 0.4630 +1917 6218 0.4060 +1917 6222 0.7220 +1917 6223 0.5370 +1917 6224 0.8060 +1917 6228 0.5530 +1917 6229 0.4040 +1917 6233 0.5620 +1917 6234 0.6160 +1917 6389 0.4560 +1917 6480 0.4270 +1917 6482 0.4860 +1917 6520 0.4250 +1917 6613 0.4540 +1917 6714 0.4240 +1917 6774 0.4580 +1917 6853 0.4030 +1917 6878 0.4050 +1917 6888 0.4200 +1917 6908 0.4840 +1917 7157 0.5170 +1917 7167 0.6180 +1917 7178 0.7370 +1917 7258 0.4370 +1917 7275 0.6030 +1917 7277 0.4680 +1917 7311 0.5200 +1917 7314 0.4120 +1917 7316 0.6690 +1917 7407 0.8160 +1917 7453 0.4510 +1917 7534 0.4030 +1917 7704 0.4450 +1917 7732 0.4210 +1917 7837 0.4160 +1917 7846 0.4080 +1917 8000 0.5220 +1917 8318 0.4620 +1917 8361 0.5710 +1917 8565 0.5060 +1917 9045 0.4560 +1917 9060 0.9150 +1917 9061 0.9190 +1917 9343 0.7400 +1917 9349 0.4440 +1917 9521 0.4090 +1917 9636 0.5690 +1917 9790 0.7580 +1917 9858 0.4390 +1917 10250 0.4010 +1917 10352 0.4440 +1917 10376 0.4230 +1917 10399 0.5670 +1917 10412 0.4030 +1917 10462 0.7050 +1917 10610 0.8910 +1917 10614 0.4380 +1917 10985 0.4670 +1917 11060 0.5670 +1917 11222 0.4640 +1917 23170 0.7240 +1917 23363 0.4010 +1917 23395 0.5680 +1917 23521 0.4450 +1917 23560 0.7050 +1917 25885 0.4110 +1917 26330 0.4490 +1917 26986 0.6600 +1917 27068 0.5250 +1917 27090 0.4390 +1917 27180 0.5480 +1917 27340 0.7540 +1917 29071 0.7210 +1917 51073 0.4710 +1917 51081 0.4950 +1917 51116 0.4330 +1917 51154 0.5480 +1917 51260 0.6330 +1917 51520 0.5650 +1917 51593 0.4020 +1917 51806 0.6590 +1917 51807 0.4640 +1917 53918 0.8600 +1917 54205 0.4390 +1917 54776 0.4130 +1917 55143 0.4470 +1917 55173 0.7330 +1917 55300 0.4640 +1917 55324 0.4410 +1917 55808 0.9440 +1917 56648 0.6630 +1917 56913 0.6690 +1917 57030 0.4070 +1917 64969 0.4700 +1917 65008 0.5110 +1917 79144 0.4590 +1917 79631 0.6570 +1917 79861 0.4620 +1917 80308 0.8030 +1917 80325 0.8490 +1917 80755 0.4230 +1917 84790 0.4560 +1917 85476 0.6630 +1917 91860 0.6380 +1917 94025 0.4390 +1917 112714 0.4570 +1917 113457 0.4630 +1917 114987 0.4120 +1917 120892 0.5310 +1917 121504 0.4980 +1917 126402 0.4910 +1917 132949 0.4630 +1917 137902 0.4090 +1917 140032 0.4240 +1917 140801 0.4380 +1917 143244 0.7170 +1917 163688 0.6390 +1917 192134 0.5200 +1917 203068 0.4270 +1917 221143 0.7090 +1917 261726 0.4670 +1917 284266 0.8890 +1917 285855 0.5590 +1917 345456 0.5610 +1917 347487 0.4420 +1917 375189 0.5580 +1917 387129 0.4870 +1917 440275 0.4610 +1917 553115 0.4210 +1917 644591 0.4120 +1917 728378 0.4390 +1917 100049587 0.4760 +1917 100287482 0.4320 +1917 100505478 0.4550 +1917 100885850 0.4530 +1936 1937 0.9990 +1936 1938 0.8420 +1936 1965 0.4410 +1936 1973 0.4880 +1936 1981 0.4420 +1936 1984 0.7570 +1936 2058 0.4520 +1936 2178 0.6180 +1936 2197 0.7420 +1936 2288 0.4800 +1936 2318 0.4220 +1936 2323 0.6220 +1936 2597 0.4470 +1936 2617 0.4650 +1936 2954 0.5360 +1936 3150 0.6560 +1936 3151 0.6580 +1936 3183 0.4920 +1936 3217 0.4080 +1936 3297 0.4020 +1936 3313 0.4030 +1936 3430 0.6120 +1936 3646 0.4800 +1936 3692 0.5590 +1936 3895 0.9690 +1936 3921 0.7730 +1936 4141 0.6740 +1936 4302 0.6200 +1936 4666 0.4620 +1936 4736 0.8550 +1936 4809 0.4580 +1936 4830 0.4440 +1936 4831 0.4300 +1936 4832 0.4280 +1936 4833 0.4580 +1936 4869 0.7360 +1936 5202 0.4260 +1936 5315 0.4690 +1936 5435 0.7220 +1936 5440 0.6700 +1936 5441 0.4820 +1936 5469 0.6460 +1936 5610 0.4210 +1936 5682 0.4920 +1936 5684 0.5350 +1936 5686 0.5020 +1936 5691 0.4210 +1936 5695 0.4610 +1936 5700 0.5330 +1936 5701 0.5090 +1936 5704 0.4910 +1936 5705 0.4650 +1936 5859 0.4200 +1936 5901 0.4130 +1936 5902 0.6100 +1936 6122 0.8430 +1936 6123 0.6220 +1936 6124 0.8110 +1936 6125 0.9360 +1936 6128 0.7900 +1936 6129 0.7180 +1936 6130 0.7910 +1936 6132 0.8990 +1936 6133 0.7700 +1936 6135 0.8650 +1936 6136 0.8160 +1936 6137 0.8770 +1936 6138 0.9250 +1936 6139 0.8290 +1936 6141 0.9050 +1936 6142 0.9280 +1936 6143 0.8960 +1936 6144 0.9300 +1936 6146 0.5490 +1936 6147 0.9220 +1936 6152 0.8800 +1936 6154 0.8060 +1936 6155 0.7560 +1936 6156 0.8840 +1936 6157 0.8110 +1936 6158 0.8890 +1936 6159 0.5930 +1936 6160 0.8980 +1936 6161 0.4890 +1936 6164 0.8900 +1936 6165 0.7410 +1936 6166 0.6800 +1936 6167 0.4470 +1936 6168 0.6770 +1936 6169 0.7870 +1936 6170 0.4500 +1936 6173 0.6230 +1936 6175 0.8490 +1936 6176 0.9180 +1936 6181 0.8530 +1936 6183 0.6810 +1936 6187 0.8310 +1936 6188 0.9310 +1936 6189 0.9280 +1936 6191 0.8150 +1936 6192 0.6400 +1936 6193 0.8320 +1936 6194 0.9230 +1936 6201 0.9070 +1936 6202 0.9000 +1936 6203 0.8080 +1936 6204 0.8720 +1936 6205 0.9510 +1936 6206 0.8030 +1936 6207 0.8190 +1936 6208 0.9150 +1936 6209 0.9200 +1936 6210 0.7280 +1936 6217 0.7110 +1936 6218 0.8640 +1936 6222 0.9450 +1936 6223 0.9520 +1936 6224 0.8360 +1936 6227 0.7520 +1936 6228 0.8480 +1936 6229 0.9440 +1936 6230 0.9190 +1936 6231 0.8140 +1936 6232 0.7160 +1936 6233 0.6530 +1936 6234 0.8240 +1936 6235 0.7770 +1936 6238 0.4890 +1936 6477 0.5030 +1936 6880 0.4740 +1936 7175 0.4590 +1936 7178 0.9500 +1936 7264 0.4050 +1936 7311 0.8900 +1936 7319 0.4070 +1936 7381 0.4420 +1936 7407 0.9780 +1936 7431 0.4890 +1936 7531 0.5490 +1936 8028 0.4570 +1936 8506 0.5060 +1936 8562 0.6010 +1936 8661 0.4070 +1936 8663 0.4650 +1936 8664 0.5570 +1936 8665 0.5090 +1936 8666 0.7110 +1936 8667 0.5550 +1936 8668 0.6650 +1936 8795 0.4360 +1936 9045 0.8120 +1936 9141 0.7050 +1936 9343 0.6370 +1936 9349 0.9500 +1936 9377 0.4320 +1936 9521 0.8070 +1936 9732 0.6370 +1936 9858 0.5670 +1936 10056 0.4740 +1936 10209 0.6020 +1936 10289 0.5970 +1936 10399 0.8370 +1936 10473 0.6570 +1936 10476 0.4480 +1936 10557 0.4520 +1936 10576 0.4580 +1936 10598 0.4230 +1936 10961 0.4720 +1936 11222 0.6230 +1936 11224 0.9450 +1936 23092 0.5330 +1936 23148 0.4470 +1936 23204 0.4190 +1936 23476 0.5170 +1936 23521 0.7970 +1936 23640 0.4780 +1936 25774 0.5320 +1936 25873 0.6720 +1936 26135 0.4770 +1936 26986 0.5260 +1936 27335 0.7740 +1936 28998 0.5630 +1936 29093 0.6610 +1936 51065 0.4550 +1936 51069 0.6040 +1936 51073 0.6370 +1936 51081 0.6620 +1936 51116 0.5790 +1936 51121 0.6320 +1936 51149 0.6640 +1936 51154 0.7070 +1936 51314 0.5260 +1936 51319 0.6220 +1936 51386 0.4490 +1936 54443 0.4380 +1936 54948 0.4840 +1936 55131 0.4910 +1936 55143 0.6550 +1936 55173 0.6450 +1936 55272 0.6820 +1936 55308 0.4180 +1936 55316 0.5490 +1936 55324 0.4070 +1936 55651 0.4770 +1936 56648 0.7130 +1936 57176 0.6210 +1936 63931 0.5480 +1936 64374 0.4780 +1936 64960 0.6570 +1936 64963 0.5790 +1936 64969 0.5880 +1936 65003 0.6650 +1936 65008 0.7050 +1936 65263 0.4270 +1936 65993 0.4030 +1936 79590 0.6320 +1936 79631 0.6000 +1936 80325 0.8460 +1936 81631 0.4320 +1936 85476 0.6090 +1936 114987 0.7450 +1936 120892 0.5140 +1936 121506 0.7050 +1936 122622 0.4550 +1936 126402 0.6590 +1936 140032 0.6400 +1936 140801 0.6760 +1936 143244 0.7030 +1936 283383 0.4250 +1936 285855 0.5020 +1936 342538 0.4500 +1936 347487 0.6440 +1936 387129 0.4940 +1936 641776 0.4140 +1936 643909 0.4140 +1936 645051 0.4200 +1936 645073 0.4200 +1936 653689 0.5320 +1936 728524 0.4140 +1936 729396 0.4200 +1936 729422 0.4200 +1936 729428 0.4200 +1936 729431 0.4200 +1936 729442 0.4200 +1936 729447 0.4200 +1936 100008586 0.4200 +1936 100132399 0.4200 +1936 100287482 0.5670 +1936 100505478 0.4920 +1936 100526842 0.6570 +1936 100529097 0.5860 +1936 100529239 0.6060 +1936 100996746 0.4140 +1936 102724473 0.4200 +1936 105180390 0.4140 +1936 105180391 0.4140 +1937 1938 0.9940 +1937 1964 0.5970 +1937 1965 0.6270 +1937 1968 0.6350 +1937 1973 0.8940 +1937 1974 0.8510 +1937 1975 0.5370 +1937 1983 0.5220 +1937 1984 0.7550 +1937 2023 0.6420 +1937 2026 0.4560 +1937 2027 0.4720 +1937 2058 0.8990 +1937 2091 0.5740 +1937 2107 0.6630 +1937 2178 0.6890 +1937 2184 0.4140 +1937 2193 0.4240 +1937 2194 0.4100 +1937 2197 0.9320 +1937 2222 0.4130 +1937 2287 0.4080 +1937 2323 0.7530 +1937 2335 0.5360 +1937 2491 0.4690 +1937 2512 0.4860 +1937 2597 0.8050 +1937 2618 0.4850 +1937 2794 0.4150 +1937 2806 0.4220 +1937 2821 0.7910 +1937 2885 0.6050 +1937 2923 0.4870 +1937 2935 0.4880 +1937 2954 0.4610 +1937 2960 0.4280 +1937 2961 0.4810 +1937 2990 0.4070 +1937 3035 0.5080 +1937 3069 0.6930 +1937 3081 0.6060 +1937 3092 0.4990 +1937 3145 0.4350 +1937 3151 0.4720 +1937 3178 0.5020 +1937 3301 0.4100 +1937 3306 0.4250 +1937 3308 0.5910 +1937 3309 0.5590 +1937 3310 0.4730 +1937 3312 0.6010 +1937 3313 0.5520 +1937 3320 0.7380 +1937 3326 0.7250 +1937 3376 0.4640 +1937 3430 0.6090 +1937 3608 0.6960 +1937 3614 0.4250 +1937 3615 0.6070 +1937 3636 0.4340 +1937 3646 0.7190 +1937 3667 0.5140 +1937 3692 0.5130 +1937 3735 0.8280 +1937 3799 0.5510 +1937 3831 0.5670 +1937 3837 0.4790 +1937 3843 0.4060 +1937 3872 0.4010 +1937 3895 0.8550 +1937 3921 0.9840 +1937 4008 0.5030 +1937 4137 0.4070 +1937 4141 0.6270 +1937 4302 0.5160 +1937 4478 0.5260 +1937 4528 0.4060 +1937 4666 0.9460 +1937 4673 0.4270 +1937 4675 0.4110 +1937 4676 0.4060 +1937 4677 0.4980 +1937 4736 0.9080 +1937 4809 0.5210 +1937 4830 0.4860 +1937 4831 0.6140 +1937 4869 0.8450 +1937 4904 0.5500 +1937 4946 0.7100 +1937 5034 0.4070 +1937 5036 0.4670 +1937 5052 0.4230 +1937 5161 0.6180 +1937 5202 0.6080 +1937 5204 0.5920 +1937 5226 0.4240 +1937 5230 0.4670 +1937 5232 0.4170 +1937 5245 0.4330 +1937 5250 0.4210 +1937 5295 0.5000 +1937 5335 0.5040 +1937 5431 0.5660 +1937 5432 0.8200 +1937 5435 0.5480 +1937 5436 0.6920 +1937 5464 0.7940 +1937 5469 0.8550 +1937 5478 0.4530 +1937 5479 0.4070 +1937 5481 0.5050 +1937 5495 0.5270 +1937 5520 0.4470 +1937 5521 0.4380 +1937 5573 0.6510 +1937 5682 0.6090 +1937 5683 0.5500 +1937 5684 0.7350 +1937 5685 0.5510 +1937 5686 0.7210 +1937 5687 0.5640 +1937 5688 0.5940 +1937 5701 0.4430 +1937 5705 0.4660 +1937 5707 0.6590 +1937 5708 0.6110 +1937 5710 0.6100 +1937 5713 0.4990 +1937 5714 0.5150 +1937 5717 0.5690 +1937 5718 0.5150 +1937 5859 0.7470 +1937 5901 0.5800 +1937 5903 0.6290 +1937 6122 0.9680 +1937 6123 0.7300 +1937 6124 0.9830 +1937 6125 0.9930 +1937 6128 0.9870 +1937 6129 0.9500 +1937 6130 0.9630 +1937 6132 0.9710 +1937 6133 0.9410 +1937 6135 0.9870 +1937 6136 0.8680 +1937 6137 0.9780 +1937 6138 0.9830 +1937 6139 0.8850 +1937 6141 0.9900 +1937 6142 0.9850 +1937 6143 0.9930 +1937 6144 0.9760 +1937 6146 0.6070 +1937 6147 0.9790 +1937 6152 0.9210 +1937 6154 0.8170 +1937 6155 0.8760 +1937 6156 0.9320 +1937 6157 0.8700 +1937 6158 0.8750 +1937 6159 0.8890 +1937 6160 0.8580 +1937 6161 0.7100 +1937 6164 0.5920 +1937 6165 0.8080 +1937 6166 0.6890 +1937 6168 0.4090 +1937 6169 0.6090 +1937 6170 0.7190 +1937 6173 0.6970 +1937 6175 0.9960 +1937 6176 0.9850 +1937 6181 0.9070 +1937 6183 0.4830 +1937 6187 0.9860 +1937 6188 0.9960 +1937 6189 0.9940 +1937 6191 0.9820 +1937 6192 0.9100 +1937 6193 0.9680 +1937 6194 0.9560 +1937 6201 0.9610 +1937 6202 0.9890 +1937 6203 0.9110 +1937 6204 0.9640 +1937 6205 0.9720 +1937 6206 0.8480 +1937 6207 0.9500 +1937 6208 0.6660 +1937 6209 0.9650 +1937 6210 0.5830 +1937 6217 0.9610 +1937 6218 0.7570 +1937 6222 0.9700 +1937 6223 0.9670 +1937 6224 0.9490 +1937 6227 0.4570 +1937 6228 0.8970 +1937 6229 0.9570 +1937 6230 0.8200 +1937 6231 0.9450 +1937 6232 0.7110 +1937 6233 0.7830 +1937 6234 0.6480 +1937 6235 0.5310 +1937 6238 0.7390 +1937 6301 0.4200 +1937 6389 0.5390 +1937 6464 0.5260 +1937 6613 0.6730 +1937 6634 0.4710 +1937 6746 0.4770 +1937 6774 0.5570 +1937 6801 0.5010 +1937 6873 0.5030 +1937 6950 0.6780 +1937 7001 0.4210 +1937 7086 0.5420 +1937 7167 0.4970 +1937 7170 0.5580 +1937 7171 0.5670 +1937 7175 0.5200 +1937 7178 0.9930 +1937 7184 0.4010 +1937 7203 0.7600 +1937 7277 0.5190 +1937 7278 0.4130 +1937 7280 0.6560 +1937 7284 0.5470 +1937 7295 0.5150 +1937 7296 0.4220 +1937 7311 0.8630 +1937 7316 0.4140 +1937 7386 0.5160 +1937 7407 0.9420 +1937 7414 0.5240 +1937 7458 0.4270 +1937 7529 0.4490 +1937 7531 0.4960 +1937 7532 0.4170 +1937 7846 0.5510 +1937 7919 0.4560 +1937 7965 0.4600 +1937 8195 0.7430 +1937 8277 0.5180 +1937 8496 0.5000 +1937 8565 0.5520 +1937 8661 0.5500 +1937 8662 0.8010 +1937 8663 0.6650 +1937 8664 0.6480 +1937 8665 0.7940 +1937 8666 0.5830 +1937 8667 0.6860 +1937 8668 0.8770 +1937 8733 0.4470 +1937 8833 0.4060 +1937 8878 0.5630 +1937 8894 0.5580 +1937 9045 0.9390 +1937 9086 0.5790 +1937 9255 0.4390 +1937 9276 0.7760 +1937 9343 0.8250 +1937 9349 0.9780 +1937 9360 0.4170 +1937 9377 0.4130 +1937 9446 0.4850 +1937 9451 0.5030 +1937 9521 0.6910 +1937 9533 0.6570 +1937 9563 0.4280 +1937 9588 0.4370 +1937 9601 0.4160 +1937 9648 0.5410 +1937 9669 0.5190 +1937 9732 0.9350 +1937 9775 0.5070 +1937 9858 0.7610 +1937 9861 0.6090 +1937 10056 0.5470 +1937 10060 0.5040 +1937 10061 0.6100 +1937 10102 0.4360 +1937 10130 0.4210 +1937 10131 0.4980 +1937 10213 0.6610 +1937 10342 0.5270 +1937 10361 0.4780 +1937 10376 0.5610 +1937 10381 0.5930 +1937 10382 0.6160 +1937 10383 0.6170 +1937 10397 0.4200 +1937 10399 0.9940 +1937 10476 0.4440 +1937 10480 0.6610 +1937 10525 0.4090 +1937 10528 0.5940 +1937 10557 0.4470 +1937 10574 0.6670 +1937 10575 0.7300 +1937 10576 0.8270 +1937 10594 0.4680 +1937 10598 0.5160 +1937 10694 0.5950 +1937 10726 0.5070 +1937 10768 0.4410 +1937 10817 0.4990 +1937 10818 0.4990 +1937 10963 0.6460 +1937 10985 0.6550 +1937 11128 0.5840 +1937 11222 0.7200 +1937 11224 0.9370 +1937 11315 0.4410 +1937 22872 0.5230 +1937 22927 0.5640 +1937 22948 0.6570 +1937 23148 0.8310 +1937 23276 0.5930 +1937 23476 0.5490 +1937 23521 0.9690 +1937 23640 0.4060 +1937 23708 0.4780 +1937 25804 0.4600 +1937 25813 0.4720 +1937 25828 0.4480 +1937 25873 0.6580 +1937 25885 0.6530 +1937 25973 0.8020 +1937 26135 0.5470 +1937 26330 0.4600 +1937 26986 0.5140 +1937 27068 0.7830 +1937 27306 0.7480 +1937 27335 0.7170 +1937 27436 0.5240 +1937 28998 0.8570 +1937 29088 0.4640 +1937 29789 0.6870 +1937 29904 0.4030 +1937 51011 0.4110 +1937 51065 0.4890 +1937 51069 0.4690 +1937 51073 0.7050 +1937 51081 0.8480 +1937 51116 0.7940 +1937 51121 0.7310 +1937 51149 0.7830 +1937 51154 0.9310 +1937 51175 0.4690 +1937 51314 0.5180 +1937 51319 0.5560 +1937 51386 0.7770 +1937 51520 0.4590 +1937 51807 0.4850 +1937 53335 0.5140 +1937 53940 0.4100 +1937 54205 0.4140 +1937 54431 0.5020 +1937 54802 0.4190 +1937 54948 0.4340 +1937 55143 0.6640 +1937 55173 0.6410 +1937 55272 0.6450 +1937 55324 0.6640 +1937 55651 0.4950 +1937 55703 0.5280 +1937 56648 0.5950 +1937 56945 0.4560 +1937 57176 0.6220 +1937 57448 0.5740 +1937 57469 0.4480 +1937 57470 0.5320 +1937 64374 0.4140 +1937 64852 0.4340 +1937 64949 0.4070 +1937 64960 0.6910 +1937 64965 0.4510 +1937 64969 0.8910 +1937 65008 0.7060 +1937 65080 0.4680 +1937 65121 0.4520 +1937 65122 0.4520 +1937 79590 0.5600 +1937 79631 0.7650 +1937 79711 0.4920 +1937 79727 0.5120 +1937 79861 0.5060 +1937 80086 0.4130 +1937 80304 0.4990 +1937 80349 0.4070 +1937 81027 0.5380 +1937 81889 0.4210 +1937 84076 0.5200 +1937 84172 0.7410 +1937 84203 0.4060 +1937 84617 0.6370 +1937 84790 0.5410 +1937 85476 0.7820 +1937 91408 0.6460 +1937 112714 0.4940 +1937 113457 0.4870 +1937 114803 0.4150 +1937 114987 0.9690 +1937 116832 0.5030 +1937 119391 0.4060 +1937 120892 0.5450 +1937 121506 0.7130 +1937 124454 0.4570 +1937 126402 0.8450 +1937 134492 0.5490 +1937 140032 0.9060 +1937 140801 0.7930 +1937 143244 0.7240 +1937 151313 0.4090 +1937 203068 0.6940 +1937 255220 0.4060 +1937 260334 0.4690 +1937 285855 0.8670 +1937 339416 0.4600 +1937 342538 0.8310 +1937 343068 0.4520 +1937 343070 0.4520 +1937 345630 0.4820 +1937 347487 0.9460 +1937 347688 0.5520 +1937 347733 0.5700 +1937 347736 0.4060 +1937 387129 0.8650 +1937 387712 0.4300 +1937 390999 0.4520 +1937 391002 0.4520 +1937 400735 0.4520 +1937 400736 0.4520 +1937 440560 0.4520 +1937 440561 0.4520 +1937 441873 0.4520 +1937 645051 0.4180 +1937 645073 0.4180 +1937 645359 0.4520 +1937 653619 0.4520 +1937 654364 0.4380 +1937 728689 0.5360 +1937 729396 0.4180 +1937 729422 0.4180 +1937 729428 0.4180 +1937 729431 0.4180 +1937 729442 0.4180 +1937 729447 0.4180 +1937 729528 0.4520 +1937 100008586 0.4180 +1937 100132399 0.4180 +1937 100287482 0.7610 +1937 100505478 0.8650 +1937 100526842 0.5380 +1937 100529097 0.6380 +1937 100529239 0.9240 +1937 101929983 0.4520 +1937 102724473 0.4180 +1937 114483834 0.6160 +1938 1939 0.4210 +1938 1950 0.5060 +1938 1964 0.7630 +1938 1965 0.8500 +1938 1968 0.7090 +1938 1973 0.9700 +1938 1974 0.9390 +1938 1975 0.8620 +1938 1977 0.8370 +1938 1978 0.6210 +1938 1979 0.5740 +1938 1981 0.7940 +1938 1982 0.4730 +1938 1983 0.8600 +1938 1984 0.9960 +1938 1994 0.5280 +1938 2023 0.8760 +1938 2026 0.5660 +1938 2027 0.5490 +1938 2029 0.5180 +1938 2033 0.4200 +1938 2058 0.7730 +1938 2079 0.5310 +1938 2091 0.5380 +1938 2099 0.5430 +1938 2107 0.7960 +1938 2178 0.9320 +1938 2193 0.5590 +1938 2197 0.9980 +1938 2220 0.4160 +1938 2316 0.5330 +1938 2317 0.5270 +1938 2323 0.9400 +1938 2332 0.4430 +1938 2335 0.5100 +1938 2475 0.6510 +1938 2539 0.4150 +1938 2597 0.8100 +1938 2618 0.5690 +1938 2628 0.4120 +1938 2664 0.4340 +1938 2821 0.5750 +1938 2877 0.4610 +1938 2890 0.4030 +1938 2900 0.4060 +1938 2923 0.5590 +1938 2932 0.4680 +1938 2935 0.6480 +1938 2936 0.4230 +1938 2978 0.5420 +1938 3028 0.7520 +1938 3035 0.4190 +1938 3068 0.4200 +1938 3145 0.4820 +1938 3150 0.8690 +1938 3151 0.8680 +1938 3178 0.7770 +1938 3181 0.7440 +1938 3183 0.4760 +1938 3184 0.4240 +1938 3185 0.5030 +1938 3187 0.7110 +1938 3190 0.5960 +1938 3191 0.5530 +1938 3303 0.4410 +1938 3304 0.5360 +1938 3306 0.4080 +1938 3308 0.6840 +1938 3309 0.8580 +1938 3310 0.5110 +1938 3312 0.8410 +1938 3313 0.6010 +1938 3316 0.4190 +1938 3320 0.8790 +1938 3326 0.8680 +1938 3329 0.6360 +1938 3376 0.5040 +1938 3396 0.4020 +1938 3417 0.4330 +1938 3418 0.5870 +1938 3430 0.9020 +1938 3615 0.4260 +1938 3630 0.4400 +1938 3646 0.6990 +1938 3692 0.7650 +1938 3703 0.4680 +1938 3720 0.4800 +1938 3735 0.7390 +1938 3748 0.4650 +1938 3752 0.4500 +1938 3815 0.4580 +1938 3837 0.6800 +1938 3843 0.4740 +1938 3921 0.9990 +1938 3982 0.4400 +1938 4141 0.7540 +1938 4144 0.4680 +1938 4191 0.4210 +1938 4236 0.5340 +1938 4508 0.5370 +1938 4512 0.4010 +1938 4528 0.7130 +1938 4591 0.4610 +1938 4609 0.5030 +1938 4666 0.4050 +1938 4670 0.4480 +1938 4677 0.4350 +1938 4691 0.5200 +1938 4722 0.4070 +1938 4723 0.4340 +1938 4728 0.4400 +1938 4736 0.9970 +1938 4738 0.5790 +1938 4739 0.4240 +1938 4809 0.7260 +1938 4830 0.5190 +1938 4831 0.6380 +1938 4836 0.4410 +1938 4869 0.5380 +1938 4904 0.4470 +1938 5018 0.4700 +1938 5034 0.5460 +1938 5036 0.9570 +1938 5045 0.4590 +1938 5052 0.4200 +1938 5093 0.6150 +1938 5094 0.5870 +1938 5161 0.4130 +1938 5162 0.4120 +1938 5166 0.6330 +1938 5202 0.4290 +1938 5204 0.4850 +1938 5216 0.5180 +1938 5226 0.5670 +1938 5230 0.8390 +1938 5232 0.5970 +1938 5245 0.5590 +1938 5313 0.4150 +1938 5315 0.5940 +1938 5339 0.5240 +1938 5340 0.4440 +1938 5356 0.6940 +1938 5431 0.8500 +1938 5432 0.7080 +1938 5435 0.4790 +1938 5441 0.5780 +1938 5464 0.4920 +1938 5469 0.9490 +1938 5476 0.4370 +1938 5478 0.6310 +1938 5515 0.4950 +1938 5518 0.6840 +1938 5595 0.4480 +1938 5603 0.4200 +1938 5604 0.4850 +1938 5631 0.4340 +1938 5634 0.4470 +1938 5635 0.4210 +1938 5636 0.4260 +1938 5682 0.6560 +1938 5683 0.5180 +1938 5684 0.7540 +1938 5685 0.5640 +1938 5686 0.6910 +1938 5687 0.5600 +1938 5688 0.5640 +1938 5689 0.4570 +1938 5690 0.4850 +1938 5691 0.4320 +1938 5694 0.4250 +1938 5695 0.4710 +1938 5707 0.5570 +1938 5708 0.5760 +1938 5710 0.5440 +1938 5725 0.5780 +1938 5859 0.7510 +1938 5877 0.4220 +1938 5885 0.4030 +1938 5886 0.5330 +1938 5901 0.5190 +1938 5903 0.4620 +1938 5925 0.4920 +1938 5927 0.4460 +1938 5936 0.4640 +1938 5957 0.4170 +1938 5976 0.7160 +1938 6009 0.4490 +1938 6059 0.8040 +1938 6122 0.9990 +1938 6123 0.9730 +1938 6124 0.9990 +1938 6125 0.9990 +1938 6128 0.9990 +1938 6129 0.9970 +1938 6130 0.9990 +1938 6132 0.9990 +1938 6133 0.9990 +1938 6135 0.9990 +1938 6136 0.9990 +1938 6137 0.9990 +1938 6138 0.9990 +1938 6139 0.9960 +1938 6141 0.9990 +1938 6142 0.9990 +1938 6143 0.9990 +1938 6144 0.9980 +1938 6146 0.9900 +1938 6147 0.9990 +1938 6152 0.9980 +1938 6154 0.9960 +1938 6155 0.9990 +1938 6156 0.9990 +1938 6157 0.9990 +1938 6158 0.9980 +1938 6159 0.9970 +1938 6160 0.9980 +1938 6161 0.9990 +1938 6164 0.9980 +1938 6165 0.9980 +1938 6166 0.9850 +1938 6167 0.9960 +1938 6168 0.9970 +1938 6169 0.9980 +1938 6170 0.9880 +1938 6171 0.7520 +1938 6173 0.9860 +1938 6175 0.9990 +1938 6176 0.9850 +1938 6181 0.9810 +1938 6182 0.9460 +1938 6183 0.8450 +1938 6187 0.9990 +1938 6188 0.9990 +1938 6189 0.9990 +1938 6191 0.9980 +1938 6192 0.9900 +1938 6193 0.9990 +1938 6194 0.9990 +1938 6195 0.4860 +1938 6198 0.7080 +1938 6199 0.5360 +1938 6201 0.9980 +1938 6202 0.9990 +1938 6203 0.9990 +1938 6204 0.9930 +1938 6205 0.9990 +1938 6206 0.9980 +1938 6207 0.9990 +1938 6208 0.9960 +1938 6209 0.9990 +1938 6210 0.9930 +1938 6217 0.9990 +1938 6218 0.9970 +1938 6222 0.9990 +1938 6223 0.9990 +1938 6224 0.9990 +1938 6227 0.9980 +1938 6228 0.9990 +1938 6229 0.9980 +1938 6230 0.9980 +1938 6231 0.9980 +1938 6232 0.9920 +1938 6233 0.9970 +1938 6234 0.9990 +1938 6235 0.9980 +1938 6240 0.4860 +1938 6389 0.6480 +1938 6390 0.4330 +1938 6426 0.5400 +1938 6434 0.4500 +1938 6470 0.4180 +1938 6472 0.4540 +1938 6613 0.5370 +1938 6615 0.4790 +1938 6625 0.4070 +1938 6626 0.4850 +1938 6628 0.4860 +1938 6629 0.4880 +1938 6632 0.6550 +1938 6633 0.7410 +1938 6634 0.7520 +1938 6635 0.7890 +1938 6636 0.6990 +1938 6637 0.7210 +1938 6638 0.4570 +1938 6657 0.5810 +1938 6711 0.4800 +1938 6729 0.5650 +1938 6734 0.4080 +1938 6742 0.4140 +1938 6888 0.7080 +1938 6897 0.5940 +1938 6950 0.6600 +1938 7015 0.4310 +1938 7027 0.4120 +1938 7073 0.4080 +1938 7086 0.6580 +1938 7124 0.5100 +1938 7137 0.4030 +1938 7153 0.6590 +1938 7155 0.4700 +1938 7157 0.8280 +1938 7167 0.7330 +1938 7178 0.7390 +1938 7184 0.5370 +1938 7203 0.6080 +1938 7248 0.5350 +1938 7249 0.5290 +1938 7277 0.4650 +1938 7280 0.4650 +1938 7284 0.9480 +1938 7295 0.4450 +1938 7311 0.9980 +1938 7314 0.4770 +1938 7316 0.5510 +1938 7336 0.4230 +1938 7341 0.4330 +1938 7384 0.4430 +1938 7403 0.5110 +1938 7404 0.5110 +1938 7407 0.7070 +1938 7411 0.4540 +1938 7415 0.6720 +1938 7430 0.5300 +1938 7458 0.7620 +1938 7514 0.4680 +1938 7520 0.4480 +1938 7531 0.4510 +1938 7534 0.5540 +1938 7706 0.5290 +1938 7846 0.5250 +1938 7919 0.6050 +1938 8087 0.4210 +1938 8242 0.4650 +1938 8260 0.4300 +1938 8266 0.5570 +1938 8277 0.6260 +1938 8284 0.4460 +1938 8290 0.5450 +1938 8562 0.5310 +1938 8565 0.5370 +1938 8607 0.5490 +1938 8661 0.4710 +1938 8662 0.9660 +1938 8663 0.7250 +1938 8664 0.8240 +1938 8665 0.7280 +1938 8666 0.6440 +1938 8667 0.6190 +1938 8668 0.7790 +1938 8669 0.4570 +1938 8672 0.4430 +1938 8761 0.4940 +1938 8833 0.4770 +1938 8891 0.4180 +1938 8892 0.5350 +1938 8893 0.4600 +1938 8894 0.6450 +1938 8896 0.7100 +1938 8940 0.4170 +1938 9045 0.9990 +1938 9086 0.7200 +1938 9092 0.5190 +1938 9128 0.4410 +1938 9129 0.4910 +1938 9141 0.6700 +1938 9188 0.4090 +1938 9343 0.5240 +1938 9349 0.9990 +1938 9410 0.5660 +1938 9470 0.4300 +1938 9513 0.4640 +1938 9521 0.5580 +1938 9533 0.7040 +1938 9553 0.8620 +1938 9563 0.4170 +1938 9588 0.4890 +1938 9601 0.6200 +1938 9636 0.4180 +1938 9669 0.8880 +1938 9716 0.5600 +1938 9732 0.9560 +1938 9775 0.5450 +1938 9782 0.4300 +1938 9801 0.9270 +1938 9858 0.7000 +1938 9985 0.4700 +1938 9987 0.4650 +1938 10084 0.4930 +1938 10102 0.7790 +1938 10131 0.4440 +1938 10146 0.4300 +1938 10189 0.4100 +1938 10209 0.7570 +1938 10236 0.5440 +1938 10286 0.6360 +1938 10289 0.4370 +1938 10291 0.4080 +1938 10376 0.5140 +1938 10381 0.5280 +1938 10383 0.4800 +1938 10399 0.9990 +1938 10432 0.4340 +1938 10471 0.4420 +1938 10473 0.8770 +1938 10480 0.6630 +1938 10492 0.5980 +1938 10521 0.4550 +1938 10528 0.4320 +1938 10551 0.5790 +1938 10557 0.6640 +1938 10574 0.6960 +1938 10575 0.7440 +1938 10576 0.8020 +1938 10594 0.8870 +1938 10643 0.4990 +1938 10658 0.4980 +1938 10667 0.5270 +1938 10694 0.7270 +1938 10726 0.4090 +1938 10735 0.4390 +1938 10765 0.4480 +1938 10767 0.5400 +1938 10768 0.5290 +1938 10776 0.4970 +1938 10856 0.4110 +1938 10891 0.6140 +1938 10907 0.4120 +1938 10915 0.4360 +1938 10939 0.4270 +1938 10949 0.5050 +1938 10963 0.4810 +1938 10971 0.4260 +1938 10973 0.5490 +1938 10985 0.7750 +1938 10988 0.6680 +1938 10992 0.5660 +1938 11016 0.4360 +1938 11060 0.5480 +1938 11128 0.7210 +1938 11140 0.4650 +1938 11222 0.8130 +1938 11224 0.9990 +1938 11315 0.4120 +1938 11331 0.4760 +1938 11338 0.4560 +1938 22820 0.4610 +1938 22919 0.4610 +1938 22927 0.8230 +1938 22938 0.7270 +1938 22948 0.6970 +1938 22984 0.8070 +1938 23020 0.6900 +1938 23082 0.5100 +1938 23097 0.4060 +1938 23135 0.5260 +1938 23173 0.6470 +1938 23204 0.8780 +1938 23212 0.4090 +1938 23236 0.4240 +1938 23237 0.4430 +1938 23367 0.4270 +1938 23382 0.5280 +1938 23395 0.6540 +1938 23405 0.5100 +1938 23413 0.4310 +1938 23435 0.5620 +1938 23450 0.5890 +1938 23451 0.5690 +1938 23476 0.6320 +1938 23521 0.9970 +1938 23524 0.5800 +1938 23560 0.4820 +1938 23640 0.7050 +1938 23708 0.4770 +1938 24144 0.5490 +1938 24148 0.7050 +1938 25774 0.5160 +1938 25804 0.4620 +1938 25813 0.5240 +1938 25873 0.9970 +1938 25885 0.7210 +1938 25914 0.4290 +1938 25929 0.4400 +1938 25949 0.6670 +1938 25980 0.5600 +1938 26121 0.5490 +1938 26135 0.9710 +1938 26268 0.4920 +1938 26289 0.5080 +1938 26297 0.6840 +1938 26330 0.5890 +1938 26986 0.7750 +1938 27068 0.4270 +1938 27102 0.4760 +1938 27258 0.4360 +1938 27316 0.4690 +1938 27335 0.5070 +1938 27339 0.7510 +1938 28998 0.8290 +1938 29088 0.5640 +1938 29093 0.8070 +1938 29789 0.5540 +1938 29904 0.9990 +1938 29927 0.7700 +1938 29978 0.4300 +1938 29979 0.4570 +1938 29997 0.5440 +1938 50808 0.4590 +1938 51021 0.9240 +1938 51065 0.9420 +1938 51068 0.6950 +1938 51069 0.8080 +1938 51073 0.8230 +1938 51081 0.9210 +1938 51116 0.7080 +1938 51119 0.6540 +1938 51121 0.9930 +1938 51149 0.9320 +1938 51154 0.8610 +1938 51164 0.4010 +1938 51236 0.5150 +1938 51264 0.9380 +1938 51270 0.5800 +1938 51314 0.4340 +1938 51319 0.9090 +1938 51340 0.7270 +1938 51362 0.5920 +1938 51386 0.7360 +1938 51503 0.6610 +1938 51520 0.6580 +1938 51574 0.4330 +1938 51611 0.9880 +1938 51691 0.5000 +1938 51727 0.5120 +1938 51806 0.7980 +1938 51807 0.4440 +1938 54148 0.4210 +1938 54205 0.4140 +1938 54454 0.4900 +1938 54505 0.4200 +1938 54822 0.5650 +1938 54915 0.9660 +1938 54948 0.6990 +1938 54965 0.4070 +1938 54995 0.4650 +1938 55052 0.9230 +1938 55143 0.5300 +1938 55173 0.8490 +1938 55176 0.6890 +1938 55272 0.8480 +1938 55285 0.4180 +1938 55316 0.9410 +1938 55324 0.4740 +1938 55591 0.5990 +1938 55599 0.4180 +1938 55651 0.6980 +1938 55696 0.5280 +1938 55699 0.4090 +1938 55703 0.6550 +1938 55770 0.4640 +1938 55844 0.4430 +1938 56339 0.4140 +1938 56474 0.4090 +1938 56648 0.8750 +1938 56949 0.7220 +1938 56965 0.4240 +1938 57136 0.6710 +1938 57176 0.4150 +1938 57461 0.5500 +1938 57469 0.4330 +1938 57521 0.4840 +1938 57703 0.6800 +1938 60558 0.5760 +1938 60678 0.4730 +1938 63875 0.9350 +1938 63931 0.8060 +1938 64374 0.7260 +1938 64960 0.7610 +1938 64963 0.8080 +1938 64965 0.9400 +1938 64968 0.9420 +1938 64969 0.8760 +1938 64979 0.9360 +1938 64983 0.9230 +1938 65003 0.6990 +1938 65005 0.9430 +1938 65008 0.8130 +1938 65121 0.5600 +1938 65122 0.5600 +1938 79009 0.4050 +1938 79048 0.4080 +1938 79446 0.5720 +1938 79590 0.7920 +1938 79711 0.4550 +1938 79861 0.4620 +1938 80222 0.4740 +1938 81576 0.4920 +1938 81631 0.4230 +1938 81669 0.5190 +1938 83443 0.4170 +1938 83475 0.4500 +1938 83707 0.4270 +1938 83743 0.4340 +1938 84076 0.6340 +1938 84140 0.4180 +1938 84168 0.4590 +1938 84172 0.6980 +1938 84316 0.4440 +1938 84340 0.4870 +1938 84790 0.5020 +1938 84930 0.5060 +1938 84967 0.5750 +1938 85476 0.6570 +1938 87178 0.6680 +1938 89978 0.8880 +1938 90850 0.5200 +1938 91860 0.7840 +1938 91875 0.4060 +1938 91893 0.4540 +1938 92196 0.8080 +1938 92399 0.9510 +1938 92715 0.9840 +1938 93974 0.4010 +1938 112714 0.4460 +1938 113457 0.4500 +1938 114987 0.9460 +1938 116832 0.9350 +1938 120526 0.9480 +1938 120892 0.5350 +1938 122481 0.4460 +1938 122622 0.5040 +1938 123283 0.4930 +1938 124454 0.5430 +1938 126259 0.4430 +1938 126402 0.9180 +1938 129831 0.5210 +1938 132864 0.8200 +1938 133482 0.4630 +1938 140032 0.9540 +1938 140801 0.9940 +1938 143244 0.8970 +1938 143884 0.4900 +1938 144577 0.5030 +1938 147650 0.4430 +1938 151246 0.4690 +1938 151648 0.4260 +1938 151903 0.4800 +1938 153527 0.4050 +1938 154007 0.5170 +1938 158067 0.4460 +1938 163688 0.7840 +1938 164045 0.5140 +1938 196483 0.9590 +1938 200916 0.9300 +1938 201595 0.4680 +1938 203068 0.5360 +1938 219927 0.9390 +1938 220988 0.5440 +1938 221264 0.5840 +1938 221823 0.4130 +1938 222183 0.5220 +1938 254268 0.8560 +1938 256536 0.4060 +1938 285381 0.9490 +1938 285855 0.9430 +1938 339416 0.5810 +1938 343068 0.5600 +1938 343070 0.5600 +1938 347487 0.9640 +1938 347688 0.4180 +1938 348093 0.5560 +1938 387129 0.9050 +1938 387712 0.5020 +1938 390999 0.5600 +1938 391002 0.5600 +1938 399818 0.5030 +1938 400735 0.5600 +1938 400736 0.5600 +1938 440275 0.6600 +1938 440560 0.5600 +1938 440561 0.5600 +1938 441873 0.5600 +1938 641776 0.7190 +1938 643909 0.7190 +1938 645051 0.6480 +1938 645073 0.6480 +1938 645359 0.5600 +1938 653619 0.5600 +1938 653689 0.5160 +1938 728378 0.5300 +1938 728524 0.7190 +1938 729396 0.6480 +1938 729422 0.6480 +1938 729428 0.6480 +1938 729431 0.6480 +1938 729442 0.6480 +1938 729447 0.6480 +1938 729528 0.5600 +1938 100008586 0.6480 +1938 100132399 0.6480 +1938 100287482 0.6890 +1938 100505478 0.7580 +1938 100526842 0.9870 +1938 100529097 0.8430 +1938 100529239 0.9780 +1938 100534599 0.5700 +1938 100996746 0.7190 +1938 101929983 0.5600 +1938 102724473 0.6480 +1938 105180390 0.7190 +1938 105180391 0.7190 +1938 114108587 0.4470 +1939 1965 0.4500 +1939 1973 0.5940 +1939 1974 0.5650 +1939 1975 0.5280 +1939 1981 0.4940 +1939 1983 0.7290 +1939 2197 0.8230 +1939 3035 0.6560 +1939 3921 0.8370 +1939 5094 0.4500 +1939 5688 0.4140 +1939 5702 0.4140 +1939 5747 0.4210 +1939 5832 0.8050 +1939 5859 0.4080 +1939 6059 0.7220 +1939 6187 0.8290 +1939 6188 0.8510 +1939 6189 0.8150 +1939 6191 0.8460 +1939 6193 0.8230 +1939 6194 0.8420 +1939 6201 0.8400 +1939 6202 0.8390 +1939 6203 0.8310 +1939 6204 0.8180 +1939 6205 0.8340 +1939 6206 0.8150 +1939 6207 0.8470 +1939 6208 0.8210 +1939 6209 0.8150 +1939 6210 0.8160 +1939 6217 0.8560 +1939 6218 0.8180 +1939 6222 0.8190 +1939 6223 0.8170 +1939 6224 0.8270 +1939 6227 0.8090 +1939 6228 0.8330 +1939 6229 0.8030 +1939 6230 0.8980 +1939 6231 0.8220 +1939 6232 0.8340 +1939 6233 0.8110 +1939 6234 0.8200 +1939 6235 0.8040 +1939 7458 0.4940 +1939 7919 0.4640 +1939 8562 0.9130 +1939 8662 0.4710 +1939 8664 0.5150 +1939 8665 0.4380 +1939 8666 0.5740 +1939 8669 0.5960 +1939 9400 0.5080 +1939 9669 0.8180 +1939 9793 0.4900 +1939 10209 0.9840 +1939 10289 0.5550 +1939 10399 0.8580 +1939 10767 0.4650 +1939 22944 0.4700 +1939 23173 0.4010 +1939 25875 0.7590 +1939 25929 0.4140 +1939 28985 0.5260 +1939 54505 0.4380 +1939 80222 0.4590 +1939 84273 0.4600 +1939 92399 0.5240 +1939 440275 0.4050 +1942 1943 0.6670 +1942 1944 0.6730 +1942 1945 0.5440 +1942 1946 0.5030 +1942 1947 0.6600 +1942 1948 0.7750 +1942 1949 0.7760 +1942 1956 0.7900 +1942 1969 0.9990 +1942 1975 0.8870 +1942 2041 0.9990 +1942 2042 0.9870 +1942 2043 0.9990 +1942 2044 0.9820 +1942 2045 0.9710 +1942 2046 0.9730 +1942 2047 0.9250 +1942 2048 0.9390 +1942 2049 0.8300 +1942 2050 0.8830 +1942 2051 0.9210 +1942 2056 0.5360 +1942 2064 0.7540 +1942 2065 0.7130 +1942 2066 0.6930 +1942 2260 0.7410 +1942 2261 0.7260 +1942 2263 0.7240 +1942 2264 0.7070 +1942 2321 0.7460 +1942 2322 0.6670 +1942 2324 0.7940 +1942 2534 0.9310 +1942 2737 0.4060 +1942 2885 0.4940 +1942 3480 0.7380 +1942 3636 0.4170 +1942 3643 0.7050 +1942 3791 0.7740 +1942 3815 0.7160 +1942 4088 0.4700 +1942 4233 0.7820 +1942 4319 0.6020 +1942 4804 0.8470 +1942 4914 0.8670 +1942 4915 0.9160 +1942 4923 0.4670 +1942 5156 0.7040 +1942 5159 0.7360 +1942 5781 0.4650 +1942 5921 0.9500 +1942 6347 0.4730 +1942 6586 0.5890 +1942 6654 0.4370 +1942 6714 0.4710 +1942 7010 0.7390 +1942 7058 0.4790 +1942 9353 0.5420 +1942 10371 0.6400 +1942 25791 0.7980 +1942 54437 0.4860 +1942 55974 0.5040 +1942 64093 0.4060 +1942 80781 0.4410 +1942 85358 0.4300 +1942 284656 0.9960 +1942 285220 0.8650 +1943 1944 0.4770 +1943 1945 0.4890 +1943 1946 0.6480 +1943 1947 0.6830 +1943 1948 0.7690 +1943 1949 0.7890 +1943 1956 0.8320 +1943 1969 0.9990 +1943 2041 0.9990 +1943 2042 0.9930 +1943 2043 0.9990 +1943 2044 0.9840 +1943 2045 0.9790 +1943 2046 0.9760 +1943 2047 0.8960 +1943 2048 0.9030 +1943 2049 0.8210 +1943 2050 0.8840 +1943 2051 0.8960 +1943 2056 0.4170 +1943 2064 0.7400 +1943 2065 0.6920 +1943 2066 0.6860 +1943 2208 0.4970 +1943 2260 0.7080 +1943 2261 0.6990 +1943 2263 0.6900 +1943 2264 0.6830 +1943 2321 0.6900 +1943 2322 0.6580 +1943 2324 0.7060 +1943 2534 0.9300 +1943 3479 0.4930 +1943 3480 0.8130 +1943 3598 0.6020 +1943 3643 0.6810 +1943 3791 0.7160 +1943 3815 0.7140 +1943 4233 0.7550 +1943 4804 0.8540 +1943 4914 0.8470 +1943 4915 0.8680 +1943 5156 0.6800 +1943 5159 0.7200 +1943 5361 0.4370 +1943 5764 0.4350 +1943 5921 0.9170 +1943 6714 0.4440 +1943 6868 0.4190 +1943 7010 0.7030 +1943 8600 0.5230 +1943 8754 0.4290 +1943 9423 0.4520 +1943 10371 0.5770 +1943 10507 0.5580 +1943 25791 0.7680 +1943 55009 0.4330 +1943 58191 0.4990 +1943 64843 0.4750 +1943 84063 0.4760 +1943 91828 0.4350 +1943 284656 0.9620 +1943 285220 0.9020 +1944 1945 0.5760 +1944 1946 0.6500 +1944 1947 0.7470 +1944 1948 0.6950 +1944 1949 0.8240 +1944 1956 0.7350 +1944 1969 0.9970 +1944 2041 0.9990 +1944 2042 0.9850 +1944 2043 0.9990 +1944 2044 0.9850 +1944 2045 0.9770 +1944 2046 0.9540 +1944 2047 0.8810 +1944 2048 0.9210 +1944 2049 0.8810 +1944 2050 0.8650 +1944 2051 0.9070 +1944 2056 0.4060 +1944 2064 0.7110 +1944 2065 0.6810 +1944 2066 0.6940 +1944 2260 0.7120 +1944 2261 0.7080 +1944 2263 0.6800 +1944 2264 0.6520 +1944 2321 0.7640 +1944 2322 0.6500 +1944 2324 0.6950 +1944 2335 0.6810 +1944 2534 0.9260 +1944 3091 0.4180 +1944 3480 0.7170 +1944 3643 0.6860 +1944 3791 0.7460 +1944 3815 0.7190 +1944 3911 0.4160 +1944 4233 0.7460 +1944 4319 0.4350 +1944 4804 0.8490 +1944 4914 0.8750 +1944 4915 0.8640 +1944 5156 0.6710 +1944 5159 0.7060 +1944 5770 0.4970 +1944 5921 0.9290 +1944 7010 0.7000 +1944 7412 0.4910 +1944 9423 0.4280 +1944 9994 0.4420 +1944 10371 0.4720 +1944 25791 0.7610 +1944 53834 0.4110 +1944 64843 0.4110 +1944 284656 0.9810 +1944 285220 0.8430 +1945 1946 0.4620 +1945 1947 0.7810 +1945 1948 0.7420 +1945 1949 0.8380 +1945 1956 0.7280 +1945 1969 0.9970 +1945 2041 0.9980 +1945 2042 0.9680 +1945 2043 0.9990 +1945 2044 0.9260 +1945 2045 0.9570 +1945 2046 0.9240 +1945 2047 0.9570 +1945 2048 0.9210 +1945 2049 0.8220 +1945 2050 0.8770 +1945 2051 0.9040 +1945 2056 0.4320 +1945 2064 0.7200 +1945 2065 0.6940 +1945 2066 0.6800 +1945 2260 0.7160 +1945 2261 0.7010 +1945 2263 0.7200 +1945 2264 0.6590 +1945 2321 0.6780 +1945 2322 0.6560 +1945 2324 0.7010 +1945 2534 0.9290 +1945 3480 0.7130 +1945 3643 0.6920 +1945 3791 0.7060 +1945 3815 0.7030 +1945 4233 0.7410 +1945 4319 0.4360 +1945 4804 0.8540 +1945 4914 0.8270 +1945 4915 0.8590 +1945 5156 0.6890 +1945 5159 0.7090 +1945 5921 0.9170 +1945 6320 0.4140 +1945 6714 0.4020 +1945 7010 0.6860 +1945 8440 0.4030 +1945 9423 0.4230 +1945 10371 0.4520 +1945 25791 0.7760 +1945 64843 0.4080 +1945 84063 0.5060 +1945 85358 0.4280 +1945 91828 0.4220 +1945 284613 0.4010 +1945 284656 0.9850 +1945 285220 0.8620 +1946 1947 0.6900 +1946 1948 0.7060 +1946 1949 0.7890 +1946 1956 0.7530 +1946 1969 0.9990 +1946 1997 0.6670 +1946 2019 0.4950 +1946 2041 0.9980 +1946 2042 0.9990 +1946 2043 0.9990 +1946 2044 0.9990 +1946 2045 0.9990 +1946 2046 0.9850 +1946 2047 0.9450 +1946 2048 0.9990 +1946 2049 0.9130 +1946 2050 0.9190 +1946 2051 0.9130 +1946 2056 0.4150 +1946 2064 0.7190 +1946 2065 0.6860 +1946 2066 0.7000 +1946 2208 0.4240 +1946 2253 0.4690 +1946 2260 0.7140 +1946 2261 0.6920 +1946 2263 0.7110 +1946 2264 0.6820 +1946 2321 0.6660 +1946 2322 0.6800 +1946 2324 0.6760 +1946 2335 0.7210 +1946 2475 0.5270 +1946 2534 0.9310 +1946 2596 0.4840 +1946 2637 0.5470 +1946 2897 0.4720 +1946 2898 0.5050 +1946 2901 0.5090 +1946 2919 0.4140 +1946 3479 0.5340 +1946 3480 0.8220 +1946 3643 0.6910 +1946 3655 0.4080 +1946 3791 0.7010 +1946 3815 0.7100 +1946 3964 0.4420 +1946 4010 0.4350 +1946 4233 0.7450 +1946 4653 0.5450 +1946 4804 0.8710 +1946 4914 0.9130 +1946 4915 0.9750 +1946 4923 0.4630 +1946 5015 0.5150 +1946 5076 0.4430 +1946 5079 0.4650 +1946 5156 0.6880 +1946 5159 0.6950 +1946 5361 0.4840 +1946 5362 0.4330 +1946 5764 0.4390 +1946 5877 0.4140 +1946 5896 0.6390 +1946 5921 0.9620 +1946 6009 0.6570 +1946 6198 0.4040 +1946 6396 0.4010 +1946 6405 0.5720 +1946 6453 0.4360 +1946 6585 0.4410 +1946 6586 0.6590 +1946 6664 0.4010 +1946 6714 0.5670 +1946 7010 0.6780 +1946 7057 0.4440 +1946 7074 0.5060 +1946 7249 0.4750 +1946 7942 0.4320 +1946 8649 0.4180 +1946 8712 0.5410 +1946 9353 0.6010 +1946 9423 0.5520 +1946 9467 0.4470 +1946 9542 0.4220 +1946 9681 0.5960 +1946 10133 0.4630 +1946 10325 0.7120 +1946 10371 0.6950 +1946 10542 0.6210 +1946 10641 0.7690 +1946 10670 0.6950 +1946 11133 0.6130 +1946 22871 0.4090 +1946 23334 0.4180 +1946 23395 0.6550 +1946 23426 0.4190 +1946 23677 0.7240 +1946 25791 0.7270 +1946 28956 0.4890 +1946 51256 0.4470 +1946 51520 0.6680 +1946 54437 0.5050 +1946 54468 0.4450 +1946 55004 0.6710 +1946 55558 0.4810 +1946 55846 0.4310 +1946 57521 0.9750 +1946 57600 0.5980 +1946 58191 0.4220 +1946 58528 0.8430 +1946 64121 0.7200 +1946 64223 0.4350 +1946 64798 0.6120 +1946 64843 0.4430 +1946 79726 0.4770 +1946 81929 0.4470 +1946 83667 0.6870 +1946 84063 0.6480 +1946 84219 0.5020 +1946 84335 0.5780 +1946 84623 0.4790 +1946 85358 0.4240 +1946 91584 0.4100 +1946 96459 0.6410 +1946 133482 0.4480 +1946 136371 0.5070 +1946 137970 0.4280 +1946 144577 0.4470 +1946 153129 0.7700 +1946 154743 0.4810 +1946 201163 0.7450 +1946 266727 0.4280 +1946 284656 0.9620 +1946 285220 0.9230 +1946 389541 0.7000 +1946 645073 0.7280 +1946 652968 0.6040 +1947 1948 0.9490 +1947 1949 0.9220 +1947 1956 0.4590 +1947 1969 0.9320 +1947 2041 0.9980 +1947 2042 0.8910 +1947 2043 0.9980 +1947 2044 0.8340 +1947 2045 0.8560 +1947 2046 0.9040 +1947 2047 0.9990 +1947 2048 0.9990 +1947 2049 0.9990 +1947 2050 0.9990 +1947 2051 0.9990 +1947 2056 0.4470 +1947 2064 0.4900 +1947 2260 0.4170 +1947 2261 0.4030 +1947 2263 0.4060 +1947 2534 0.6650 +1947 2885 0.5080 +1947 2891 0.5190 +1947 3172 0.5180 +1947 3479 0.4160 +1947 3554 0.4750 +1947 3630 0.4120 +1947 4313 0.6540 +1947 4318 0.5000 +1947 4488 0.4480 +1947 4684 0.4880 +1947 4690 0.6030 +1947 4756 0.5260 +1947 4914 0.6540 +1947 4915 0.5640 +1947 4983 0.7580 +1947 5058 0.5510 +1947 5062 0.5150 +1947 5063 0.5560 +1947 5245 0.4150 +1947 5361 0.6350 +1947 5747 0.4200 +1947 5783 0.8740 +1947 5879 0.6170 +1947 5998 0.9920 +1947 6259 0.6610 +1947 6386 0.8470 +1947 6405 0.4730 +1947 6714 0.8060 +1947 6774 0.5490 +1947 6934 0.5330 +1947 6938 0.4230 +1947 7048 0.5270 +1947 7074 0.5770 +1947 7082 0.5580 +1947 7205 0.4460 +1947 7291 0.4180 +1947 7436 0.5360 +1947 7473 0.5530 +1947 7477 0.4220 +1947 7850 0.4080 +1947 8218 0.5720 +1947 8312 0.5120 +1947 8326 0.4040 +1947 8440 0.9970 +1947 8828 0.4990 +1947 8829 0.5390 +1947 8844 0.4290 +1947 8874 0.5840 +1947 8997 0.4860 +1947 9037 0.4390 +1947 9076 0.8550 +1947 9201 0.4550 +1947 9378 0.6350 +1947 9379 0.6390 +1947 9423 0.6470 +1947 9463 0.5300 +1947 10256 0.6530 +1947 10371 0.4680 +1947 10507 0.5190 +1947 10512 0.5900 +1947 10627 0.5020 +1947 22829 0.5380 +1947 22871 0.5770 +1947 22882 0.7050 +1947 22899 0.6450 +1947 23426 0.6530 +1947 23705 0.5290 +1947 25791 0.6440 +1947 26035 0.4250 +1947 27289 0.4210 +1947 28964 0.8000 +1947 50855 0.4410 +1947 54361 0.4710 +1947 54413 0.5660 +1947 55079 0.4290 +1947 55558 0.5840 +1947 57142 0.4120 +1947 57154 0.4190 +1947 57222 0.4220 +1947 57502 0.5610 +1947 57555 0.5710 +1947 64219 0.7280 +1947 80852 0.5010 +1947 84552 0.4250 +1947 84612 0.4050 +1947 90249 0.5250 +1947 284656 0.9670 +1947 285220 0.8050 +1948 1949 0.9280 +1948 1956 0.4090 +1948 1969 0.9730 +1948 2041 0.9990 +1948 2042 0.9930 +1948 2043 0.9990 +1948 2044 0.9560 +1948 2045 0.9070 +1948 2046 0.8890 +1948 2047 0.9990 +1948 2048 0.9990 +1948 2049 0.9990 +1948 2050 0.9990 +1948 2051 0.9990 +1948 2056 0.7010 +1948 2086 0.4140 +1948 2247 0.6650 +1948 2254 0.4110 +1948 2277 0.5950 +1948 2296 0.6090 +1948 2297 0.5360 +1948 2303 0.7410 +1948 2321 0.7640 +1948 2324 0.8870 +1948 2335 0.6320 +1948 2534 0.7510 +1948 2697 0.6650 +1948 2701 0.5240 +1948 2702 0.4810 +1948 2891 0.5330 +1948 2902 0.5110 +1948 2903 0.5450 +1948 2904 0.5560 +1948 3516 0.4160 +1948 3680 0.4650 +1948 3685 0.4810 +1948 3714 0.4100 +1948 3791 0.7700 +1948 3955 0.4750 +1948 4254 0.5010 +1948 4313 0.5540 +1948 4318 0.5880 +1948 4352 0.4070 +1948 4684 0.5050 +1948 4756 0.5040 +1948 4772 0.4260 +1948 4851 0.6300 +1948 4854 0.4060 +1948 4855 0.6840 +1948 4914 0.6350 +1948 5058 0.5300 +1948 5062 0.5150 +1948 5063 0.5490 +1948 5155 0.5170 +1948 5156 0.5140 +1948 5159 0.4450 +1948 5175 0.5580 +1948 5296 0.4870 +1948 5361 0.6600 +1948 5364 0.5740 +1948 5629 0.4130 +1948 5783 0.7750 +1948 5792 0.5260 +1948 5879 0.5960 +1948 5998 0.9960 +1948 6091 0.4230 +1948 6386 0.7770 +1948 6387 0.6220 +1948 6405 0.4770 +1948 6469 0.4570 +1948 6585 0.5540 +1948 6586 0.4830 +1948 6662 0.4110 +1948 6714 0.7460 +1948 6774 0.5560 +1948 6939 0.5860 +1948 7010 0.7430 +1948 7026 0.6540 +1948 7046 0.4490 +1948 7057 0.8850 +1948 7066 0.4290 +1948 7074 0.7000 +1948 7075 0.6070 +1948 7082 0.4020 +1948 7424 0.7570 +1948 7436 0.5360 +1948 7450 0.4840 +1948 7472 0.4190 +1948 7477 0.4360 +1948 7546 0.6020 +1948 7804 0.5290 +1948 8218 0.5680 +1948 8312 0.4800 +1948 8326 0.4030 +1948 8440 0.9920 +1948 8600 0.4300 +1948 8828 0.6510 +1948 8829 0.8130 +1948 8874 0.6130 +1948 8997 0.4330 +1948 9201 0.4530 +1948 9353 0.4350 +1948 9378 0.5940 +1948 9379 0.6050 +1948 9423 0.5100 +1948 9463 0.5000 +1948 9564 0.4650 +1948 10256 0.4570 +1948 10371 0.6730 +1948 10507 0.4610 +1948 10512 0.5480 +1948 10627 0.4990 +1948 10755 0.6030 +1948 10894 0.6210 +1948 10982 0.5780 +1948 11082 0.4570 +1948 22829 0.5090 +1948 22871 0.5640 +1948 22882 0.4750 +1948 22899 0.6020 +1948 23129 0.4190 +1948 23239 0.4130 +1948 23426 0.8200 +1948 23462 0.5980 +1948 23493 0.7410 +1948 23705 0.5150 +1948 25791 0.6380 +1948 27302 0.4130 +1948 28514 0.6290 +1948 28964 0.7750 +1948 30816 0.5010 +1948 51705 0.4790 +1948 54345 0.4790 +1948 54413 0.5070 +1948 54538 0.4270 +1948 54567 0.8250 +1948 54933 0.7160 +1948 55897 0.5630 +1948 56920 0.5210 +1948 57142 0.4550 +1948 57502 0.5160 +1948 57555 0.5500 +1948 57609 0.4220 +1948 59272 0.4410 +1948 64321 0.4260 +1948 80031 0.4040 +1948 90249 0.5590 +1948 94234 0.4440 +1948 145873 0.5350 +1948 219699 0.4550 +1948 284656 0.9540 +1948 285220 0.8610 +1948 388585 0.5030 +1948 405754 0.4160 +1949 1951 0.4150 +1949 1969 0.9440 +1949 2041 0.9940 +1949 2042 0.9370 +1949 2043 0.9990 +1949 2044 0.8820 +1949 2045 0.8580 +1949 2046 0.9060 +1949 2047 0.9980 +1949 2048 0.9990 +1949 2049 0.9990 +1949 2050 0.9970 +1949 2051 0.9990 +1949 2056 0.4200 +1949 2064 0.4020 +1949 2534 0.6500 +1949 2697 0.5200 +1949 2891 0.5620 +1949 4099 0.4440 +1949 4313 0.4550 +1949 4318 0.4610 +1949 4684 0.5180 +1949 4756 0.5870 +1949 4914 0.7520 +1949 4915 0.4030 +1949 4974 0.5220 +1949 5058 0.5290 +1949 5062 0.5150 +1949 5063 0.5730 +1949 5364 0.6370 +1949 5589 0.4220 +1949 5595 0.5160 +1949 5649 0.4590 +1949 5783 0.7380 +1949 5879 0.5490 +1949 5998 0.9890 +1949 6091 0.4240 +1949 6092 0.4620 +1949 6386 0.6290 +1949 6405 0.4690 +1949 6453 0.4050 +1949 6585 0.4070 +1949 6586 0.4340 +1949 6714 0.7110 +1949 6774 0.5160 +1949 7048 0.4520 +1949 7057 0.4900 +1949 7082 0.5280 +1949 7436 0.6010 +1949 8218 0.5500 +1949 8312 0.4630 +1949 8440 0.9870 +1949 8801 0.4750 +1949 8874 0.5880 +1949 8997 0.5040 +1949 9201 0.4710 +1949 9353 0.4380 +1949 9378 0.7160 +1949 9379 0.7330 +1949 9423 0.5190 +1949 9463 0.4530 +1949 10256 0.4820 +1949 10371 0.5280 +1949 10500 0.4440 +1949 10507 0.6610 +1949 10627 0.4990 +1949 22829 0.5760 +1949 22871 0.6360 +1949 22882 0.4890 +1949 22899 0.6320 +1949 22924 0.4010 +1949 23426 0.6810 +1949 23654 0.5900 +1949 23705 0.5500 +1949 25771 0.4200 +1949 25791 0.6770 +1949 28964 0.7880 +1949 54413 0.5740 +1949 54933 0.8810 +1949 55135 0.5390 +1949 55753 0.4060 +1949 57142 0.4080 +1949 57502 0.6000 +1949 57555 0.6660 +1949 94030 0.4030 +1949 284656 0.9120 +1949 285220 0.7980 +1950 1951 0.5830 +1950 1952 0.5120 +1950 1954 0.5100 +1950 1955 0.6150 +1950 1956 0.9990 +1950 1958 0.6430 +1950 1969 0.8020 +1950 2017 0.5430 +1950 2022 0.7360 +1950 2026 0.4190 +1950 2033 0.4060 +1950 2034 0.4350 +1950 2056 0.5330 +1950 2057 0.7340 +1950 2060 0.8770 +1950 2064 0.9990 +1950 2065 0.9990 +1950 2066 0.9990 +1950 2069 0.9580 +1950 2086 0.6140 +1950 2099 0.8020 +1950 2100 0.5780 +1950 2103 0.5460 +1950 2146 0.4720 +1950 2147 0.4620 +1950 2152 0.4630 +1950 2155 0.7000 +1950 2158 0.6250 +1950 2159 0.4130 +1950 2173 0.4130 +1950 2185 0.4510 +1950 2195 0.5530 +1950 2196 0.5300 +1950 2200 0.6140 +1950 2202 0.4940 +1950 2246 0.8410 +1950 2247 0.9690 +1950 2248 0.9880 +1950 2249 0.9890 +1950 2250 0.9930 +1950 2251 0.9880 +1950 2252 0.9920 +1950 2253 0.9910 +1950 2254 0.9880 +1950 2255 0.9900 +1950 2256 0.4340 +1950 2257 0.4320 +1950 2258 0.9750 +1950 2259 0.4170 +1950 2260 0.9260 +1950 2261 0.9020 +1950 2263 0.9360 +1950 2264 0.7800 +1950 2277 0.5090 +1950 2308 0.6360 +1950 2309 0.4510 +1950 2321 0.9020 +1950 2322 0.8600 +1950 2323 0.8610 +1950 2324 0.9110 +1950 2335 0.9600 +1950 2353 0.7880 +1950 2475 0.6470 +1950 2487 0.6120 +1950 2520 0.7810 +1950 2526 0.4730 +1950 2534 0.7870 +1950 2549 0.8260 +1950 2597 0.7830 +1950 2621 0.4740 +1950 2625 0.4150 +1950 2626 0.4130 +1950 2641 0.5260 +1950 2658 0.5890 +1950 2661 0.5070 +1950 2668 0.7410 +1950 2670 0.7410 +1950 2690 0.7430 +1950 2693 0.4040 +1950 2697 0.6440 +1950 2735 0.6140 +1950 2742 0.4050 +1950 2776 0.5340 +1950 2796 0.4180 +1950 2817 0.6710 +1950 2852 0.5400 +1950 2885 0.9950 +1950 2886 0.5030 +1950 2887 0.6780 +1950 2919 0.7990 +1950 2922 0.6060 +1950 2931 0.4070 +1950 2932 0.6320 +1950 3014 0.5740 +1950 3021 0.5860 +1950 3037 0.4880 +1950 3055 0.5010 +1950 3059 0.5220 +1950 3064 0.5170 +1950 3082 0.8440 +1950 3084 0.9720 +1950 3091 0.7850 +1950 3169 0.4080 +1950 3170 0.4480 +1950 3172 0.5790 +1950 3240 0.5300 +1950 3251 0.4240 +1950 3265 0.8690 +1950 3267 0.5550 +1950 3308 0.4480 +1950 3320 0.7600 +1950 3326 0.5210 +1950 3339 0.8770 +1950 3371 0.5990 +1950 3383 0.5770 +1950 3417 0.4460 +1950 3439 0.6390 +1950 3440 0.6740 +1950 3454 0.7090 +1950 3455 0.7010 +1950 3456 0.4180 +1950 3458 0.7810 +1950 3459 0.7120 +1950 3479 0.9950 +1950 3480 0.9970 +1950 3481 0.6440 +1950 3484 0.4310 +1950 3485 0.4700 +1950 3486 0.6570 +1950 3488 0.5550 +1950 3491 0.4160 +1950 3516 0.5170 +1950 3551 0.4040 +1950 3552 0.8020 +1950 3553 0.7620 +1950 3558 0.8140 +1950 3559 0.7630 +1950 3560 0.6880 +1950 3561 0.7230 +1950 3562 0.6770 +1950 3563 0.6970 +1950 3565 0.6670 +1950 3566 0.7500 +1950 3567 0.5760 +1950 3568 0.6880 +1950 3569 0.8900 +1950 3570 0.8570 +1950 3572 0.7250 +1950 3574 0.5700 +1950 3575 0.7150 +1950 3576 0.7170 +1950 3578 0.4780 +1950 3579 0.4310 +1950 3581 0.6650 +1950 3586 0.7010 +1950 3587 0.7000 +1950 3588 0.6800 +1950 3589 0.4800 +1950 3590 0.6750 +1950 3594 0.6820 +1950 3595 0.6710 +1950 3596 0.6210 +1950 3597 0.7050 +1950 3598 0.7390 +1950 3600 0.6850 +1950 3605 0.5960 +1950 3606 0.4790 +1950 3611 0.5910 +1950 3620 0.4140 +1950 3627 0.6090 +1950 3630 0.9950 +1950 3643 0.9680 +1950 3645 0.6900 +1950 3655 0.5700 +1950 3665 0.4430 +1950 3667 0.4860 +1950 3684 0.5050 +1950 3685 0.5930 +1950 3688 0.6510 +1950 3689 0.6070 +1950 3690 0.4890 +1950 3691 0.4380 +1950 3714 0.7740 +1950 3716 0.5720 +1950 3717 0.5880 +1950 3725 0.8900 +1950 3791 0.9280 +1950 3815 0.9730 +1950 3827 0.6650 +1950 3845 0.8540 +1950 3852 0.5140 +1950 3855 0.4220 +1950 3856 0.5060 +1950 3861 0.6660 +1950 3875 0.5220 +1950 3880 0.5730 +1950 3909 0.5610 +1950 3910 0.5670 +1950 3914 0.5620 +1950 3915 0.5610 +1950 3916 0.4750 +1950 3918 0.5770 +1950 3921 0.4730 +1950 3934 0.5910 +1950 3949 0.5210 +1950 3952 0.5670 +1950 3953 0.8170 +1950 3955 0.4830 +1950 3956 0.4930 +1950 3958 0.7730 +1950 3960 0.4410 +1950 3976 0.6920 +1950 3977 0.7880 +1950 4000 0.6880 +1950 4001 0.5570 +1950 4015 0.6970 +1950 4018 0.4070 +1950 4036 0.7440 +1950 4037 0.4070 +1950 4049 0.5070 +1950 4057 0.6430 +1950 4072 0.6300 +1950 4087 0.6260 +1950 4088 0.5920 +1950 4089 0.5910 +1950 4092 0.4180 +1950 4133 0.5300 +1950 4145 0.5590 +1950 4155 0.4790 +1950 4170 0.4630 +1950 4192 0.4520 +1950 4193 0.5220 +1950 4233 0.9450 +1950 4240 0.8220 +1950 4242 0.5790 +1950 4249 0.4850 +1950 4254 0.7280 +1950 4255 0.4540 +1950 4257 0.4230 +1950 4283 0.4770 +1950 4288 0.4230 +1950 4312 0.7780 +1950 4313 0.6570 +1950 4314 0.5580 +1950 4316 0.5830 +1950 4318 0.7410 +1950 4319 0.4180 +1950 4322 0.4350 +1950 4323 0.5440 +1950 4352 0.7070 +1950 4440 0.4700 +1950 4478 0.4230 +1950 4585 0.4520 +1950 4586 0.5110 +1950 4594 0.4080 +1950 4608 0.4060 +1950 4609 0.8360 +1950 4613 0.4350 +1950 4684 0.4530 +1950 4734 0.5800 +1950 4760 0.4170 +1950 4763 0.4690 +1950 4790 0.5910 +1950 4792 0.4790 +1950 4803 0.8660 +1950 4804 0.8910 +1950 4811 0.4630 +1950 4838 0.4900 +1950 4846 0.4450 +1950 4854 0.7780 +1950 4893 0.7590 +1950 4904 0.5670 +1950 4907 0.5410 +1950 4908 0.5380 +1950 4909 0.4040 +1950 4914 0.9970 +1950 4915 0.8840 +1950 5008 0.5770 +1950 5034 0.9380 +1950 5036 0.4110 +1950 5045 0.6880 +1950 5054 0.5710 +1950 5067 0.4140 +1950 5080 0.6140 +1950 5154 0.9500 +1950 5155 0.9550 +1950 5156 0.9870 +1950 5159 0.9890 +1950 5175 0.6640 +1950 5196 0.6250 +1950 5197 0.5730 +1950 5228 0.5830 +1950 5241 0.7360 +1950 5243 0.4200 +1950 5287 0.5080 +1950 5290 0.7460 +1950 5291 0.4010 +1950 5295 0.9110 +1950 5296 0.5790 +1950 5304 0.4690 +1950 5315 0.4420 +1950 5319 0.4290 +1950 5327 0.7620 +1950 5328 0.8600 +1950 5329 0.6660 +1950 5335 0.7470 +1950 5340 0.6110 +1950 5341 0.5060 +1950 5460 0.6980 +1950 5468 0.6330 +1950 5515 0.5200 +1950 5516 0.4240 +1950 5518 0.4830 +1950 5519 0.4380 +1950 5525 0.4330 +1950 5526 0.4300 +1950 5527 0.4390 +1950 5528 0.4130 +1950 5529 0.4080 +1950 5566 0.5520 +1950 5567 0.5520 +1950 5568 0.5520 +1950 5573 0.4300 +1950 5578 0.4790 +1950 5594 0.7890 +1950 5595 0.8410 +1950 5598 0.4860 +1950 5599 0.7190 +1950 5604 0.6860 +1950 5617 0.7410 +1950 5618 0.7640 +1950 5624 0.4010 +1950 5648 0.6060 +1950 5651 0.4140 +1950 5727 0.4330 +1950 5728 0.7460 +1950 5743 0.6210 +1950 5747 0.7610 +1950 5753 0.7800 +1950 5770 0.6740 +1950 5774 0.4700 +1950 5777 0.5400 +1950 5781 0.8270 +1950 5782 0.8080 +1950 5788 0.7430 +1950 5796 0.5130 +1950 5805 0.4470 +1950 5829 0.7840 +1950 5868 0.6960 +1950 5877 0.4800 +1950 5894 0.6030 +1950 5898 0.6470 +1950 5900 0.4180 +1950 5921 0.6510 +1950 5962 0.4230 +1950 5970 0.4250 +1950 5972 0.4260 +1950 5979 0.6640 +1950 5986 0.5660 +1950 6093 0.4090 +1950 6195 0.5510 +1950 6196 0.4440 +1950 6197 0.5150 +1950 6198 0.5880 +1950 6199 0.4180 +1950 6233 0.5540 +1950 6275 0.8620 +1950 6285 0.6890 +1950 6343 0.5790 +1950 6344 0.4340 +1950 6347 0.6960 +1950 6348 0.5820 +1950 6351 0.5790 +1950 6354 0.4470 +1950 6355 0.5420 +1950 6356 0.9160 +1950 6357 0.5130 +1950 6364 0.4160 +1950 6367 0.5050 +1950 6374 0.6680 +1950 6376 0.9610 +1950 6382 0.6480 +1950 6385 0.6310 +1950 6387 0.7900 +1950 6391 0.5010 +1950 6401 0.4850 +1950 6403 0.6620 +1950 6404 0.5520 +1950 6455 0.5750 +1950 6456 0.7040 +1950 6457 0.7360 +1950 6461 0.5950 +1950 6462 0.6810 +1950 6464 0.9240 +1950 6469 0.7830 +1950 6507 0.4020 +1950 6513 0.4180 +1950 6554 0.4870 +1950 6557 0.5230 +1950 6590 0.5280 +1950 6591 0.7320 +1950 6608 0.5140 +1950 6615 0.7020 +1950 6642 0.5630 +1950 6643 0.5700 +1950 6654 0.8060 +1950 6655 0.6320 +1950 6656 0.4340 +1950 6657 0.7250 +1950 6662 0.5860 +1950 6663 0.4190 +1950 6667 0.4160 +1950 6678 0.5980 +1950 6696 0.7150 +1950 6714 0.9220 +1950 6720 0.5220 +1950 6736 0.4140 +1950 6750 0.4780 +1950 6772 0.5600 +1950 6774 0.9070 +1950 6776 0.5120 +1950 6777 0.5130 +1950 6844 0.5650 +1950 6845 0.5740 +1950 6855 0.5120 +1950 6857 0.4540 +1950 6863 0.7800 +1950 6868 0.7710 +1950 6908 0.4540 +1950 6997 0.9140 +1950 7010 0.8970 +1950 7015 0.7090 +1950 7037 0.5280 +1950 7039 0.9980 +1950 7040 0.9040 +1950 7042 0.5900 +1950 7043 0.5780 +1950 7046 0.5460 +1950 7048 0.5120 +1950 7054 0.4160 +1950 7057 0.5810 +1950 7058 0.4330 +1950 7070 0.7150 +1950 7075 0.6720 +1950 7076 0.7280 +1950 7077 0.4830 +1950 7078 0.4200 +1950 7082 0.5840 +1950 7094 0.4970 +1950 7097 0.4170 +1950 7099 0.5530 +1950 7124 0.7930 +1950 7130 0.4720 +1950 7132 0.4470 +1950 7157 0.7800 +1950 7189 0.5670 +1950 7249 0.4540 +1950 7251 0.4060 +1950 7291 0.5440 +1950 7305 0.4470 +1950 7311 0.5150 +1950 7314 0.5320 +1950 7316 0.6960 +1950 7329 0.4040 +1950 7355 0.4650 +1950 7412 0.5810 +1950 7414 0.6160 +1950 7423 0.6530 +1950 7424 0.7300 +1950 7430 0.4830 +1950 7431 0.5030 +1950 7432 0.5290 +1950 7436 0.4550 +1950 7448 0.8120 +1950 7450 0.7110 +1950 7471 0.5200 +1950 7472 0.4490 +1950 7473 0.4990 +1950 7474 0.5250 +1950 7475 0.5370 +1950 7525 0.5400 +1950 7764 0.4450 +1950 7809 0.4100 +1950 7832 0.4310 +1950 7837 0.8310 +1950 7852 0.8250 +1950 8027 0.6110 +1950 8038 0.6630 +1950 8061 0.4180 +1950 8074 0.4810 +1950 8076 0.5220 +1950 8218 0.4290 +1950 8239 0.4060 +1950 8290 0.5850 +1950 8301 0.5340 +1950 8312 0.5170 +1950 8313 0.4920 +1950 8349 0.4010 +1950 8356 0.5870 +1950 8411 0.6980 +1950 8434 0.4730 +1950 8440 0.5030 +1950 8506 0.4890 +1950 8549 0.6610 +1950 8577 0.5660 +1950 8578 0.5790 +1950 8600 0.4200 +1950 8673 0.5550 +1950 8723 0.5350 +1950 8724 0.4570 +1950 8754 0.6100 +1950 8766 0.4650 +1950 8788 0.5420 +1950 8814 0.4920 +1950 8817 0.9880 +1950 8822 0.9880 +1950 8823 0.9880 +1950 8829 0.7860 +1950 8835 0.5410 +1950 8842 0.7250 +1950 8862 0.4910 +1950 8874 0.6240 +1950 8877 0.4180 +1950 8900 0.4560 +1950 8976 0.4180 +1950 8988 0.4040 +1950 8999 0.5040 +1950 9026 0.4400 +1950 9048 0.4910 +1950 9076 0.4250 +1950 9146 0.6380 +1950 9166 0.4290 +1950 9173 0.4770 +1950 9180 0.8220 +1950 9185 0.7140 +1950 9210 0.4190 +1950 9241 0.8010 +1950 9252 0.7000 +1950 9314 0.5990 +1950 9341 0.5710 +1950 9358 0.6110 +1950 9369 0.4510 +1950 9378 0.6850 +1950 9379 0.6690 +1950 9429 0.5870 +1950 9451 0.5810 +1950 9466 0.6630 +1950 9542 0.8910 +1950 9564 0.4820 +1950 9622 0.5580 +1950 9672 0.5210 +1950 9712 0.4870 +1950 9765 0.4160 +1950 9794 0.4200 +1950 9817 0.5760 +1950 9839 0.5200 +1950 9892 0.7290 +1950 9965 0.7210 +1950 9982 0.6410 +1950 10000 0.4050 +1950 10006 0.4790 +1950 10013 0.4150 +1950 10018 0.4450 +1950 10085 0.5880 +1950 10178 0.5820 +1950 10215 0.5990 +1950 10232 0.4790 +1950 10252 0.6120 +1950 10253 0.7420 +1950 10254 0.6240 +1950 10381 0.4530 +1950 10413 0.4390 +1950 10468 0.6610 +1950 10516 0.4300 +1950 10578 0.5700 +1950 10631 0.4470 +1950 10675 0.4990 +1950 10683 0.7560 +1950 10686 0.5200 +1950 10718 0.8590 +1950 10747 0.7210 +1950 10763 0.7890 +1950 10818 0.5350 +1950 11140 0.5740 +1950 11173 0.4160 +1950 11197 0.5410 +1950 22905 0.8360 +1950 22943 0.5400 +1950 23184 0.5290 +1950 23275 0.5340 +1950 23462 0.4360 +1950 23499 0.4690 +1950 23509 0.5070 +1950 23671 0.5630 +1950 23765 0.4790 +1950 25759 0.4650 +1950 26011 0.6990 +1950 26018 0.7760 +1950 26047 0.5060 +1950 26060 0.7660 +1950 26095 0.5040 +1950 26119 0.6050 +1950 26281 0.9880 +1950 26291 0.4670 +1950 26469 0.5480 +1950 26499 0.6760 +1950 26872 0.4370 +1950 27006 0.9890 +1950 28514 0.4940 +1950 29126 0.5780 +1950 29924 0.6060 +1950 29978 0.5290 +1950 30008 0.4530 +1950 30011 0.8000 +1950 30816 0.7390 +1950 50615 0.6600 +1950 50616 0.4470 +1950 50674 0.4230 +1950 50943 0.4180 +1950 51072 0.5170 +1950 51162 0.6240 +1950 51176 0.4460 +1950 51593 0.7820 +1950 51806 0.5050 +1950 53358 0.4810 +1950 53832 0.6660 +1950 53833 0.6630 +1950 54205 0.5310 +1950 54206 0.5250 +1950 54361 0.6370 +1950 54567 0.5560 +1950 55040 0.6940 +1950 55118 0.5110 +1950 55534 0.4080 +1950 55714 0.5520 +1950 55764 0.5100 +1950 55824 0.5420 +1950 55914 0.5980 +1950 55971 0.4290 +1950 55997 0.4130 +1950 56034 0.9350 +1950 56302 0.4550 +1950 56983 0.4290 +1950 57451 0.5570 +1950 57509 0.5340 +1950 57555 0.5090 +1950 58513 0.6070 +1950 58533 0.4030 +1950 58985 0.6880 +1950 63827 0.5050 +1950 64132 0.4240 +1950 64285 0.6130 +1950 64321 0.4110 +1950 64759 0.5450 +1950 79070 0.4720 +1950 79651 0.4630 +1950 79727 0.4120 +1950 79923 0.6840 +1950 79937 0.4020 +1950 79987 0.5440 +1950 80310 0.9370 +1950 80781 0.6750 +1950 80864 0.6120 +1950 81669 0.5070 +1950 81792 0.4780 +1950 81848 0.4820 +1950 83660 0.4950 +1950 84260 0.4470 +1950 84313 0.4890 +1950 84441 0.4100 +1950 84465 0.6600 +1950 84466 0.7300 +1950 84632 0.4050 +1950 84658 0.5390 +1950 84896 0.5780 +1950 84951 0.4710 +1950 85476 0.7950 +1950 89780 0.8460 +1950 90865 0.4050 +1950 91179 0.5360 +1950 91860 0.5050 +1950 92737 0.5740 +1950 114990 0.4650 +1950 116379 0.6560 +1950 117285 0.4910 +1950 120114 0.5060 +1950 124056 0.4890 +1950 125981 0.4240 +1950 129684 0.4220 +1950 133482 0.6520 +1950 133584 0.4940 +1950 137902 0.8310 +1950 140803 0.7320 +1950 145957 0.8020 +1950 146713 0.5070 +1950 147372 0.4670 +1950 149233 0.6850 +1950 149461 0.4120 +1950 152137 0.6010 +1950 161198 0.4730 +1950 163688 0.5050 +1950 163702 0.6690 +1950 255324 0.9290 +1950 255738 0.8260 +1950 283464 0.5230 +1950 284217 0.5440 +1950 284654 0.8610 +1950 285203 0.4110 +1950 375033 0.5440 +1950 375790 0.6260 +1950 388585 0.4320 +1950 405754 0.6170 +1950 414325 0.4680 +1950 440093 0.5830 +1950 440686 0.5980 +1950 653145 0.4410 +1950 653604 0.5990 +1950 727936 0.5160 +1950 728378 0.4630 +1950 100133941 0.6310 +1950 100506658 0.5080 +1950 100526694 0.4930 +1950 100532731 0.5640 +1951 2016 0.5750 +1951 4007 0.6670 +1951 5669 0.5800 +1951 5678 0.6600 +1951 6259 0.5060 +1951 7976 0.9150 +1951 8323 0.7420 +1951 8326 0.8700 +1951 10042 0.4290 +1951 10076 0.4670 +1951 22881 0.4860 +1951 29964 0.6450 +1951 55558 0.4010 +1951 57216 0.7620 +1951 57719 0.4280 +1951 64881 0.5360 +1951 65010 0.5040 +1951 81839 0.7220 +1951 144165 0.6680 +1951 166336 0.6760 +1952 1953 0.4160 +1952 2535 0.4120 +1952 2590 0.5070 +1952 3156 0.6020 +1952 3990 0.4800 +1952 4007 0.5720 +1952 6259 0.5090 +1952 6272 0.9490 +1952 6653 0.5900 +1952 7474 0.4060 +1952 7976 0.7620 +1952 8323 0.5600 +1952 8324 0.4090 +1952 8325 0.6390 +1952 8326 0.6920 +1952 10076 0.4780 +1952 10221 0.4790 +1952 10452 0.5410 +1952 10500 0.4080 +1952 10501 0.4310 +1952 22881 0.4870 +1952 22986 0.6580 +1952 26267 0.4500 +1952 27329 0.4370 +1952 29964 0.5500 +1952 55558 0.4390 +1952 55759 0.4340 +1952 57216 0.7550 +1952 57537 0.6770 +1952 64241 0.5550 +1952 64968 0.4300 +1952 80714 0.4710 +1952 81839 0.7450 +1952 84722 0.9860 +1952 91584 0.4340 +1952 114815 0.6930 +1952 116519 0.5700 +1952 130574 0.4390 +1952 144165 0.6210 +1952 148113 0.5480 +1952 166336 0.6520 +1952 221692 0.4740 +1952 254827 0.4220 +1952 255738 0.7990 +1952 284612 0.4680 +1952 285605 0.4200 +1952 326625 0.4170 +1952 343263 0.7240 +1952 375056 0.4520 +1953 7108 0.4030 +1953 8076 0.7190 +1953 8727 0.4180 +1953 8804 0.4090 +1953 9923 0.7760 +1953 49856 0.8890 +1953 51232 0.4610 +1953 55764 0.5680 +1953 64753 0.6240 +1953 79906 0.4620 +1953 84934 0.4500 +1953 90987 0.4620 +1953 148870 0.4520 +1953 162239 0.4040 +1953 440295 0.4260 +1953 100287364 0.4490 +1953 100529097 0.4790 +1954 4115 0.4310 +1954 5669 0.6930 +1954 5671 0.6280 +1954 6604 0.7680 +1954 6608 0.9300 +1954 8328 0.7920 +1954 23295 0.9750 +1954 84270 0.4510 +1954 114804 0.7000 +1954 116115 0.4190 +1954 157567 0.5430 +1954 284338 0.4180 +1954 284339 0.6930 +1954 440533 0.6350 +1954 730094 0.6620 +1955 25975 0.4490 +1955 54619 0.5710 +1955 65989 0.4820 +1955 80864 0.4390 +1956 1958 0.6870 +1956 1959 0.5790 +1956 1969 0.9030 +1956 1977 0.5130 +1956 1978 0.5420 +1956 1994 0.4540 +1956 2009 0.4890 +1956 2010 0.4580 +1956 2017 0.8290 +1956 2023 0.9280 +1956 2026 0.6650 +1956 2033 0.5880 +1956 2034 0.8210 +1956 2048 0.4840 +1956 2049 0.4900 +1956 2050 0.6560 +1956 2056 0.7900 +1956 2057 0.5730 +1956 2059 0.9520 +1956 2060 0.9940 +1956 2064 0.9990 +1956 2065 0.9990 +1956 2066 0.9960 +1956 2067 0.6650 +1956 2069 0.9990 +1956 2072 0.5010 +1956 2086 0.6730 +1956 2099 0.9880 +1956 2100 0.7550 +1956 2101 0.5310 +1956 2103 0.8480 +1956 2113 0.5450 +1956 2115 0.4210 +1956 2118 0.4260 +1956 2130 0.4600 +1956 2146 0.7410 +1956 2152 0.4400 +1956 2177 0.4080 +1956 2185 0.8350 +1956 2192 0.5420 +1956 2194 0.4560 +1956 2195 0.5880 +1956 2202 0.8770 +1956 2209 0.6740 +1956 2212 0.6280 +1956 2217 0.4500 +1956 2241 0.6840 +1956 2242 0.5040 +1956 2246 0.8870 +1956 2247 0.9570 +1956 2248 0.9280 +1956 2249 0.9220 +1956 2250 0.9220 +1956 2251 0.9240 +1956 2252 0.9270 +1956 2253 0.9200 +1956 2254 0.9280 +1956 2255 0.9260 +1956 2257 0.4970 +1956 2258 0.8710 +1956 2260 0.4790 +1956 2261 0.4490 +1956 2263 0.6080 +1956 2268 0.7060 +1956 2272 0.4740 +1956 2274 0.9290 +1956 2277 0.8630 +1956 2289 0.4070 +1956 2296 0.4080 +1956 2305 0.5650 +1956 2308 0.7060 +1956 2309 0.6290 +1956 2321 0.6070 +1956 2322 0.5910 +1956 2323 0.7160 +1956 2335 0.9440 +1956 2346 0.7820 +1956 2348 0.7210 +1956 2350 0.6830 +1956 2352 0.6860 +1956 2353 0.9400 +1956 2357 0.5060 +1956 2444 0.6880 +1956 2475 0.8020 +1956 2534 0.8730 +1956 2547 0.5890 +1956 2549 0.9990 +1956 2597 0.9550 +1956 2621 0.6830 +1956 2625 0.5120 +1956 2627 0.4390 +1956 2631 0.5360 +1956 2670 0.5620 +1956 2688 0.6940 +1956 2689 0.6940 +1956 2690 0.4420 +1956 2697 0.4730 +1956 2705 0.4050 +1956 2719 0.6470 +1956 2729 0.5700 +1956 2735 0.5660 +1956 2736 0.4610 +1956 2767 0.5240 +1956 2773 0.5560 +1956 2776 0.5490 +1956 2778 0.7180 +1956 2796 0.4340 +1956 2810 0.8840 +1956 2813 0.5260 +1956 2817 0.8030 +1956 2824 0.4440 +1956 2852 0.8430 +1956 2861 0.4200 +1956 2875 0.4790 +1956 2885 0.9990 +1956 2886 0.9740 +1956 2887 0.9240 +1956 2888 0.7570 +1956 2889 0.7300 +1956 2896 0.5520 +1956 2904 0.5450 +1956 2908 0.8700 +1956 2919 0.4550 +1956 2922 0.6410 +1956 2923 0.5530 +1956 2925 0.5700 +1956 2932 0.5740 +1956 2934 0.4020 +1956 2950 0.7130 +1956 2956 0.5730 +1956 2995 0.6980 +1956 3002 0.6530 +1956 3014 0.5800 +1956 3020 0.6960 +1956 3021 0.7660 +1956 3037 0.4020 +1956 3038 0.5920 +1956 3054 0.5190 +1956 3055 0.7950 +1956 3059 0.4630 +1956 3064 0.6540 +1956 3065 0.7650 +1956 3066 0.5310 +1956 3068 0.5770 +1956 3082 0.9800 +1956 3084 0.9990 +1956 3091 0.9340 +1956 3092 0.5270 +1956 3099 0.4440 +1956 3105 0.4930 +1956 3106 0.4940 +1956 3123 0.4610 +1956 3146 0.4490 +1956 3161 0.5210 +1956 3162 0.4190 +1956 3169 0.5920 +1956 3172 0.5300 +1956 3181 0.4950 +1956 3187 0.6560 +1956 3190 0.6560 +1956 3191 0.4400 +1956 3204 0.5640 +1956 3226 0.5200 +1956 3249 0.4120 +1956 3265 0.9940 +1956 3267 0.6230 +1956 3292 0.4140 +1956 3301 0.4770 +1956 3303 0.4990 +1956 3304 0.9230 +1956 3308 0.9540 +1956 3309 0.8620 +1956 3312 0.9320 +1956 3313 0.6020 +1956 3315 0.7940 +1956 3316 0.4660 +1956 3320 0.9990 +1956 3326 0.9980 +1956 3339 0.4070 +1956 3383 0.8770 +1956 3397 0.4280 +1956 3417 0.7950 +1956 3418 0.7200 +1956 3439 0.8190 +1956 3440 0.7780 +1956 3441 0.7680 +1956 3442 0.7700 +1956 3443 0.7690 +1956 3444 0.7700 +1956 3445 0.7700 +1956 3446 0.7700 +1956 3447 0.7740 +1956 3448 0.7700 +1956 3449 0.7690 +1956 3451 0.7710 +1956 3452 0.7700 +1956 3456 0.8770 +1956 3458 0.8760 +1956 3459 0.5040 +1956 3467 0.6550 +1956 3479 0.9910 +1956 3480 0.9890 +1956 3481 0.8540 +1956 3482 0.6340 +1956 3485 0.7460 +1956 3486 0.9810 +1956 3491 0.4810 +1956 3549 0.4080 +1956 3551 0.5590 +1956 3552 0.7010 +1956 3553 0.8730 +1956 3554 0.5960 +1956 3558 0.8510 +1956 3562 0.7830 +1956 3565 0.8200 +1956 3567 0.7620 +1956 3569 0.9790 +1956 3570 0.6780 +1956 3574 0.7620 +1956 3576 0.7920 +1956 3577 0.6170 +1956 3578 0.7240 +1956 3579 0.4630 +1956 3586 0.8990 +1956 3589 0.8680 +1956 3592 0.6500 +1956 3593 0.6660 +1956 3596 0.8090 +1956 3598 0.7750 +1956 3600 0.7930 +1956 3605 0.4790 +1956 3620 0.5070 +1956 3627 0.4470 +1956 3630 0.9920 +1956 3636 0.8570 +1956 3642 0.5080 +1956 3643 0.7470 +1956 3654 0.4310 +1956 3655 0.5270 +1956 3662 0.5250 +1956 3667 0.9390 +1956 3671 0.5390 +1956 3673 0.5670 +1956 3675 0.6930 +1956 3676 0.5180 +1956 3678 0.7920 +1956 3684 0.4060 +1956 3685 0.6860 +1956 3688 0.9660 +1956 3689 0.7200 +1956 3690 0.6500 +1956 3691 0.7760 +1956 3693 0.6990 +1956 3700 0.5360 +1956 3702 0.7060 +1956 3714 0.6590 +1956 3716 0.9700 +1956 3717 0.9860 +1956 3718 0.9560 +1956 3725 0.8710 +1956 3728 0.8470 +1956 3732 0.7380 +1956 3752 0.4360 +1956 3753 0.4470 +1956 3760 0.4390 +1956 3791 0.8050 +1956 3799 0.5430 +1956 3815 0.4280 +1956 3836 0.4040 +1956 3837 0.5140 +1956 3838 0.4530 +1956 3845 0.9970 +1956 3848 0.4380 +1956 3852 0.8850 +1956 3853 0.4320 +1956 3855 0.6630 +1956 3856 0.7540 +1956 3861 0.6960 +1956 3872 0.7720 +1956 3875 0.8400 +1956 3880 0.6220 +1956 3897 0.9760 +1956 3902 0.5200 +1956 3903 0.4050 +1956 3909 0.4280 +1956 3914 0.4290 +1956 3916 0.7380 +1956 3918 0.7220 +1956 3921 0.4150 +1956 3925 0.5410 +1956 3934 0.7290 +1956 3937 0.6910 +1956 3949 0.6680 +1956 3952 0.8390 +1956 3953 0.5320 +1956 3956 0.5470 +1956 3958 0.9640 +1956 3959 0.5000 +1956 3960 0.4780 +1956 3976 0.7650 +1956 3977 0.6200 +1956 4000 0.6440 +1956 4015 0.7100 +1956 4035 0.8380 +1956 4036 0.6510 +1956 4040 0.4490 +1956 4041 0.4240 +1956 4054 0.4070 +1956 4058 0.4270 +1956 4067 0.8590 +1956 4068 0.4040 +1956 4070 0.6440 +1956 4072 0.9230 +1956 4087 0.7360 +1956 4088 0.5890 +1956 4089 0.7350 +1956 4092 0.4060 +1956 4102 0.4040 +1956 4137 0.8300 +1956 4142 0.5190 +1956 4145 0.6750 +1956 4151 0.4790 +1956 4170 0.6750 +1956 4171 0.6040 +1956 4192 0.4970 +1956 4193 0.8970 +1956 4194 0.5430 +1956 4215 0.6560 +1956 4233 0.9960 +1956 4240 0.5540 +1956 4254 0.9500 +1956 4255 0.8210 +1956 4282 0.5110 +1956 4286 0.4450 +1956 4288 0.5020 +1956 4292 0.6210 +1956 4301 0.6250 +1956 4312 0.6940 +1956 4313 0.6930 +1956 4314 0.7370 +1956 4316 0.5630 +1956 4318 0.8270 +1956 4321 0.5130 +1956 4323 0.7870 +1956 4350 0.4960 +1956 4363 0.4900 +1956 4430 0.5330 +1956 4436 0.5720 +1956 4478 0.7160 +1956 4485 0.5150 +1956 4486 0.7950 +1956 4501 0.4010 +1956 4513 0.4670 +1956 4585 0.8750 +1956 4586 0.5920 +1956 4588 0.4500 +1956 4593 0.5480 +1956 4594 0.6070 +1956 4605 0.4060 +1956 4609 0.8750 +1956 4610 0.4240 +1956 4613 0.5940 +1956 4627 0.4570 +1956 4629 0.4890 +1956 4684 0.6560 +1956 4690 0.9580 +1956 4691 0.9050 +1956 4734 0.9320 +1956 4759 0.4630 +1956 4763 0.8470 +1956 4771 0.8440 +1956 4775 0.4730 +1956 4776 0.4890 +1956 4780 0.6910 +1956 4790 0.8370 +1956 4792 0.6880 +1956 4803 0.8920 +1956 4804 0.6590 +1956 4837 0.8720 +1956 4851 0.8770 +1956 4853 0.7440 +1956 4854 0.7850 +1956 4855 0.4210 +1956 4869 0.5460 +1956 4893 0.9910 +1956 4904 0.9130 +1956 4907 0.6030 +1956 4908 0.7520 +1956 4909 0.7310 +1956 4914 0.6280 +1956 4915 0.8820 +1956 4919 0.7010 +1956 4921 0.5560 +1956 4968 0.4630 +1956 4969 0.5110 +1956 4988 0.4940 +1956 5008 0.7530 +1956 5021 0.4260 +1956 5034 0.6760 +1956 5045 0.5090 +1956 5052 0.6730 +1956 5054 0.6990 +1956 5055 0.4700 +1956 5058 0.7730 +1956 5071 0.6440 +1956 5080 0.5250 +1956 5133 0.7050 +1956 5154 0.9640 +1956 5155 0.9680 +1956 5156 0.9860 +1956 5159 0.9980 +1956 5163 0.4260 +1956 5175 0.5950 +1956 5214 0.5400 +1956 5228 0.7970 +1956 5241 0.8300 +1956 5243 0.6190 +1956 5266 0.5760 +1956 5268 0.4960 +1956 5286 0.4770 +1956 5287 0.9280 +1956 5289 0.4880 +1956 5290 0.9990 +1956 5291 0.9930 +1956 5292 0.6430 +1956 5293 0.9420 +1956 5294 0.7480 +1956 5295 0.9980 +1956 5296 0.9930 +1956 5311 0.5100 +1956 5315 0.6060 +1956 5320 0.6490 +1956 5328 0.5890 +1956 5329 0.8960 +1956 5330 0.6910 +1956 5331 0.7110 +1956 5332 0.7140 +1956 5335 0.9970 +1956 5336 0.9930 +1956 5338 0.5880 +1956 5339 0.5440 +1956 5340 0.4730 +1956 5341 0.4470 +1956 5366 0.4160 +1956 5371 0.4020 +1956 5395 0.5080 +1956 5426 0.5130 +1956 5460 0.5750 +1956 5465 0.4310 +1956 5467 0.6040 +1956 5468 0.8430 +1956 5494 0.4600 +1956 5507 0.4590 +1956 5515 0.5750 +1956 5516 0.5270 +1956 5518 0.6230 +1956 5519 0.5540 +1956 5525 0.4550 +1956 5526 0.4230 +1956 5527 0.5510 +1956 5528 0.4490 +1956 5529 0.5120 +1956 5534 0.5140 +1956 5551 0.4180 +1956 5566 0.7070 +1956 5567 0.4260 +1956 5568 0.4270 +1956 5573 0.4780 +1956 5578 0.9320 +1956 5579 0.5790 +1956 5580 0.4410 +1956 5581 0.7260 +1956 5590 0.7070 +1956 5591 0.9360 +1956 5594 0.6120 +1956 5595 0.5280 +1956 5597 0.4300 +1956 5599 0.8300 +1956 5601 0.6920 +1956 5604 0.5790 +1956 5605 0.5910 +1956 5609 0.4480 +1956 5617 0.9120 +1956 5649 0.4600 +1956 5727 0.6360 +1956 5728 0.9690 +1956 5734 0.4040 +1956 5738 0.4920 +1956 5742 0.4060 +1956 5743 0.8360 +1956 5747 0.9990 +1956 5753 0.9890 +1956 5764 0.4150 +1956 5770 0.9970 +1956 5771 0.7140 +1956 5774 0.6030 +1956 5777 0.9190 +1956 5781 0.9990 +1956 5782 0.9630 +1956 5783 0.4340 +1956 5787 0.6850 +1956 5788 0.7490 +1956 5789 0.5330 +1956 5792 0.5100 +1956 5793 0.7350 +1956 5794 0.4810 +1956 5795 0.6270 +1956 5796 0.8290 +1956 5803 0.4350 +1956 5805 0.5030 +1956 5816 0.4690 +1956 5818 0.6210 +1956 5829 0.8250 +1956 5837 0.4270 +1956 5867 0.4320 +1956 5868 0.8830 +1956 5873 0.5510 +1956 5877 0.6780 +1956 5879 0.6390 +1956 5880 0.4490 +1956 5888 0.4790 +1956 5894 0.8480 +1956 5898 0.5240 +1956 5899 0.4550 +1956 5900 0.4450 +1956 5913 0.4950 +1956 5914 0.4410 +1956 5915 0.4200 +1956 5921 0.9700 +1956 5925 0.5200 +1956 5962 0.6810 +1956 5966 0.4050 +1956 5970 0.7010 +1956 5971 0.4040 +1956 5979 0.8260 +1956 5997 0.4730 +1956 5999 0.7780 +1956 6009 0.4890 +1956 6046 0.4300 +1956 6093 0.4470 +1956 6098 0.4940 +1956 6194 0.4830 +1956 6233 0.7690 +1956 6237 0.4200 +1956 6240 0.4570 +1956 6272 0.5280 +1956 6275 0.8580 +1956 6277 0.5330 +1956 6278 0.4410 +1956 6281 0.8190 +1956 6282 0.5770 +1956 6283 0.6910 +1956 6295 0.5120 +1956 6320 0.4400 +1956 6347 0.7250 +1956 6356 0.5780 +1956 6382 0.6970 +1956 6383 0.5180 +1956 6385 0.8000 +1956 6386 0.8560 +1956 6387 0.8970 +1956 6391 0.4720 +1956 6422 0.4110 +1956 6426 0.5860 +1956 6441 0.5480 +1956 6446 0.4880 +1956 6449 0.4150 +1956 6451 0.8010 +1956 6455 0.7110 +1956 6456 0.9720 +1956 6457 0.8810 +1956 6461 0.4910 +1956 6464 0.9990 +1956 6469 0.7770 +1956 6500 0.5830 +1956 6502 0.6390 +1956 6503 0.7650 +1956 6510 0.6300 +1956 6513 0.7040 +1956 6520 0.5940 +1956 6523 0.9540 +1956 6548 0.5950 +1956 6554 0.8530 +1956 6586 0.5590 +1956 6590 0.6040 +1956 6591 0.6950 +1956 6597 0.5820 +1956 6598 0.5360 +1956 6608 0.5470 +1956 6615 0.7110 +1956 6616 0.5230 +1956 6622 0.7280 +1956 6624 0.6410 +1956 6633 0.6490 +1956 6640 0.4230 +1956 6642 0.8390 +1956 6643 0.4650 +1956 6648 0.6030 +1956 6649 0.5190 +1956 6654 0.9990 +1956 6655 0.9980 +1956 6657 0.7580 +1956 6659 0.4100 +1956 6662 0.5850 +1956 6663 0.6370 +1956 6667 0.4550 +1956 6678 0.5700 +1956 6690 0.7020 +1956 6696 0.8120 +1956 6714 0.9990 +1956 6736 0.4070 +1956 6737 0.9010 +1956 6772 0.9750 +1956 6773 0.7610 +1956 6774 0.9980 +1956 6776 0.9980 +1956 6777 0.9970 +1956 6778 0.5310 +1956 6790 0.4810 +1956 6844 0.5610 +1956 6845 0.5660 +1956 6850 0.4840 +1956 6855 0.7090 +1956 6868 0.6790 +1956 6876 0.4010 +1956 6932 0.4360 +1956 6997 0.5720 +1956 7003 0.5480 +1956 7010 0.4870 +1956 7015 0.6970 +1956 7022 0.8200 +1956 7037 0.8320 +1956 7039 0.9990 +1956 7040 0.9750 +1956 7042 0.7110 +1956 7043 0.4040 +1956 7046 0.6750 +1956 7048 0.6060 +1956 7049 0.5300 +1956 7057 0.7080 +1956 7066 0.7050 +1956 7067 0.4530 +1956 7076 0.5210 +1956 7077 0.6010 +1956 7078 0.4780 +1956 7079 0.7000 +1956 7080 0.6900 +1956 7082 0.7170 +1956 7084 0.4160 +1956 7094 0.4880 +1956 7097 0.9330 +1956 7098 0.7290 +1956 7099 0.7390 +1956 7113 0.4220 +1956 7124 0.8900 +1956 7132 0.8640 +1956 7145 0.6210 +1956 7150 0.4170 +1956 7153 0.6470 +1956 7157 0.9430 +1956 7167 0.5480 +1956 7168 0.6230 +1956 7169 0.4650 +1956 7170 0.6260 +1956 7178 0.4230 +1956 7184 0.7660 +1956 7186 0.8350 +1956 7187 0.4020 +1956 7189 0.8600 +1956 7203 0.5010 +1956 7220 0.4810 +1956 7225 0.5220 +1956 7248 0.4490 +1956 7249 0.6490 +1956 7251 0.7560 +1956 7273 0.4320 +1956 7276 0.6200 +1956 7277 0.4150 +1956 7280 0.4860 +1956 7291 0.5920 +1956 7293 0.4180 +1956 7295 0.7420 +1956 7297 0.8210 +1956 7298 0.5930 +1956 7299 0.4010 +1956 7311 0.5770 +1956 7314 0.6030 +1956 7316 0.8990 +1956 7345 0.8280 +1956 7369 0.5180 +1956 7402 0.4720 +1956 7405 0.5480 +1956 7408 0.5470 +1956 7409 0.8740 +1956 7410 0.9440 +1956 7412 0.5320 +1956 7414 0.5870 +1956 7415 0.5220 +1956 7416 0.4530 +1956 7423 0.8050 +1956 7424 0.8370 +1956 7425 0.4730 +1956 7430 0.8910 +1956 7431 0.6550 +1956 7442 0.4950 +1956 7448 0.6110 +1956 7450 0.4240 +1956 7454 0.4830 +1956 7465 0.4530 +1956 7471 0.4530 +1956 7472 0.7160 +1956 7474 0.5450 +1956 7476 0.5500 +1956 7477 0.4090 +1956 7490 0.5050 +1956 7514 0.5070 +1956 7520 0.5950 +1956 7525 0.9130 +1956 7529 0.6950 +1956 7534 0.9250 +1956 7535 0.8790 +1956 7545 0.4430 +1956 7791 0.5050 +1956 7837 0.7630 +1956 7846 0.8170 +1956 7852 0.6270 +1956 7879 0.5200 +1956 7984 0.4690 +1956 8000 0.5000 +1956 8019 0.4290 +1956 8027 0.7730 +1956 8030 0.5060 +1956 8034 0.4470 +1956 8038 0.4240 +1956 8061 0.4810 +1956 8074 0.8050 +1956 8085 0.4190 +1956 8091 0.4590 +1956 8202 0.6300 +1956 8218 0.4370 +1956 8241 0.6840 +1956 8289 0.5990 +1956 8290 0.5890 +1956 8301 0.6860 +1956 8312 0.6560 +1956 8313 0.4410 +1956 8337 0.4770 +1956 8356 0.6600 +1956 8411 0.6770 +1956 8412 0.5480 +1956 8440 0.8790 +1956 8452 0.4120 +1956 8471 0.4070 +1956 8503 0.9900 +1956 8517 0.7500 +1956 8549 0.7170 +1956 8600 0.7560 +1956 8626 0.5140 +1956 8648 0.4930 +1956 8650 0.6520 +1956 8651 0.7280 +1956 8660 0.7490 +1956 8661 0.5080 +1956 8662 0.4360 +1956 8673 0.5710 +1956 8678 0.8370 +1956 8737 0.6680 +1956 8743 0.4460 +1956 8754 0.4400 +1956 8766 0.6660 +1956 8772 0.4360 +1956 8795 0.5540 +1956 8797 0.4180 +1956 8801 0.5050 +1956 8802 0.4250 +1956 8817 0.9310 +1956 8822 0.9220 +1956 8823 0.9270 +1956 8826 0.8500 +1956 8828 0.5250 +1956 8829 0.4890 +1956 8835 0.6820 +1956 8837 0.4930 +1956 8842 0.8010 +1956 8874 0.8560 +1956 8879 0.5690 +1956 8880 0.4410 +1956 8882 0.9210 +1956 8891 0.6060 +1956 8900 0.5290 +1956 8945 0.4090 +1956 8976 0.7610 +1956 8988 0.4760 +1956 8992 0.6500 +1956 9021 0.8410 +1956 9028 0.5290 +1956 9032 0.7420 +1956 9047 0.4170 +1956 9076 0.6880 +1956 9093 0.6500 +1956 9099 0.4060 +1956 9101 0.9940 +1956 9113 0.4190 +1956 9114 0.6920 +1956 9134 0.4270 +1956 9135 0.5360 +1956 9140 0.5780 +1956 9146 0.9640 +1956 9180 0.6850 +1956 9185 0.5140 +1956 9208 0.4450 +1956 9218 0.6480 +1956 9235 0.5400 +1956 9238 0.4030 +1956 9253 0.5480 +1956 9306 0.8690 +1956 9314 0.4850 +1956 9332 0.4090 +1956 9341 0.5810 +1956 9353 0.5740 +1956 9368 0.8540 +1956 9400 0.4090 +1956 9402 0.9210 +1956 9429 0.6710 +1956 9437 0.4540 +1956 9448 0.4900 +1956 9459 0.4450 +1956 9474 0.4950 +1956 9475 0.4470 +1956 9476 0.5960 +1956 9479 0.7710 +1956 9518 0.6120 +1956 9524 0.4200 +1956 9542 0.9960 +1956 9550 0.6840 +1956 9564 0.8250 +1956 9590 0.8100 +1956 9610 0.7150 +1956 9618 0.5900 +1956 9655 0.6820 +1956 9688 0.4150 +1956 9711 0.6840 +1956 9712 0.5410 +1956 9732 0.6190 +1956 9774 0.5340 +1956 9817 0.7460 +1956 9839 0.5340 +1956 9846 0.9840 +1956 9860 0.5210 +1956 9892 0.5700 +1956 9922 0.7880 +1956 9965 0.7950 +1956 10006 0.6570 +1956 10013 0.9190 +1956 10015 0.9130 +1956 10018 0.6210 +1956 10019 0.4470 +1956 10040 0.4020 +1956 10044 0.7130 +1956 10045 0.7710 +1956 10053 0.4130 +1956 10075 0.6670 +1956 10076 0.4890 +1956 10188 0.8680 +1956 10193 0.7600 +1956 10211 0.5780 +1956 10215 0.5210 +1956 10223 0.5150 +1956 10232 0.7150 +1956 10252 0.7530 +1956 10253 0.8460 +1956 10254 0.8580 +1956 10273 0.9300 +1956 10294 0.4910 +1956 10312 0.6860 +1956 10319 0.4700 +1956 10381 0.4610 +1956 10399 0.5180 +1956 10413 0.8840 +1956 10451 0.8050 +1956 10454 0.8090 +1956 10457 0.9910 +1956 10458 0.8190 +1956 10460 0.5260 +1956 10533 0.4330 +1956 10551 0.4090 +1956 10563 0.5320 +1956 10568 0.4180 +1956 10576 0.4720 +1956 10578 0.4740 +1956 10617 0.5230 +1956 10618 0.4620 +1956 10628 0.4430 +1956 10630 0.4830 +1956 10631 0.4770 +1956 10644 0.7070 +1956 10683 0.4050 +1956 10718 0.8670 +1956 10750 0.4020 +1956 10763 0.5820 +1956 10810 0.6890 +1956 10818 0.6550 +1956 10825 0.5120 +1956 10857 0.7650 +1956 10891 0.4560 +1956 10938 0.5400 +1956 10952 0.6460 +1956 10963 0.4400 +1956 10970 0.4980 +1956 10971 0.8230 +1956 10980 0.5140 +1956 11009 0.7360 +1956 11031 0.6450 +1956 11034 0.5310 +1956 11059 0.8200 +1956 11122 0.4480 +1956 11140 0.9170 +1956 11184 0.7470 +1956 11186 0.4910 +1956 11197 0.4110 +1956 11252 0.4840 +1956 11260 0.4340 +1956 11266 0.6300 +1956 11336 0.4430 +1956 11345 0.5020 +1956 22866 0.4080 +1956 22905 0.8500 +1956 22914 0.4710 +1956 22943 0.5350 +1956 23062 0.7260 +1956 23077 0.5810 +1956 23118 0.4180 +1956 23129 0.4290 +1956 23152 0.6200 +1956 23163 0.5650 +1956 23236 0.7200 +1956 23239 0.4140 +1956 23265 0.5660 +1956 23294 0.7520 +1956 23327 0.8180 +1956 23365 0.4300 +1956 23371 0.4080 +1956 23405 0.4920 +1956 23411 0.4980 +1956 23476 0.5970 +1956 23480 0.4750 +1956 23513 0.5150 +1956 23542 0.7170 +1956 23545 0.6640 +1956 23558 0.4090 +1956 23624 0.9970 +1956 23657 0.6910 +1956 23678 0.5050 +1956 23705 0.4310 +1956 23765 0.5060 +1956 23770 0.4020 +1956 25759 0.9870 +1956 25814 0.5410 +1956 25930 0.6150 +1956 25962 0.4480 +1956 25970 0.7980 +1956 26018 0.9750 +1956 26038 0.4760 +1956 26060 0.6430 +1956 26119 0.5140 +1956 26130 0.4560 +1956 26191 0.7080 +1956 26227 0.4600 +1956 26260 0.4510 +1956 26270 0.4200 +1956 26279 0.4450 +1956 26281 0.9270 +1956 26291 0.7370 +1956 26292 0.4420 +1956 26469 0.8410 +1956 26471 0.4120 +1956 26499 0.6230 +1956 26872 0.5130 +1956 26986 0.4740 +1956 27006 0.9260 +1956 27032 0.4670 +1956 27040 0.6510 +1956 27043 0.5630 +1956 27113 0.6160 +1956 27159 0.4160 +1956 27161 0.9560 +1956 27246 0.4240 +1956 27250 0.4750 +1956 27286 0.4780 +1956 27306 0.5070 +1956 27346 0.5550 +1956 27436 0.9040 +1956 28514 0.4140 +1956 29072 0.4480 +1956 29102 0.4190 +1956 29119 0.4750 +1956 29126 0.8700 +1956 29760 0.4310 +1956 29881 0.5080 +1956 29924 0.9580 +1956 29927 0.6840 +1956 29949 0.6890 +1956 29978 0.5520 +1956 30011 0.9800 +1956 30816 0.6790 +1956 30849 0.5440 +1956 50507 0.4170 +1956 50604 0.6500 +1956 50616 0.7490 +1956 50617 0.6690 +1956 50618 0.7000 +1956 50943 0.5070 +1956 50964 0.4510 +1956 51072 0.5570 +1956 51162 0.5220 +1956 51176 0.4630 +1956 51280 0.4840 +1956 51360 0.4390 +1956 51378 0.6860 +1956 51379 0.4020 +1956 51382 0.6740 +1956 51429 0.7000 +1956 51474 0.5600 +1956 51510 0.4290 +1956 51534 0.5010 +1956 51561 0.6620 +1956 51564 0.7110 +1956 51571 0.4950 +1956 51606 0.7150 +1956 51659 0.4700 +1956 51806 0.8100 +1956 53342 0.6840 +1956 53347 0.7580 +1956 53353 0.5090 +1956 53358 0.9880 +1956 54106 0.4110 +1956 54205 0.6050 +1956 54206 0.9960 +1956 54443 0.4240 +1956 54474 0.5900 +1956 54567 0.6590 +1956 54575 0.4080 +1956 54576 0.4120 +1956 54577 0.4090 +1956 54578 0.4250 +1956 54583 0.5610 +1956 54657 0.4060 +1956 54658 0.4350 +1956 54795 0.4550 +1956 54862 0.4940 +1956 54894 0.4050 +1956 55040 0.8350 +1956 55107 0.6400 +1956 55193 0.4450 +1956 55269 0.4620 +1956 55294 0.6740 +1956 55353 0.9270 +1956 55601 0.4040 +1956 55620 0.7600 +1956 55658 0.4030 +1956 55704 0.5910 +1956 55750 0.5080 +1956 55770 0.6420 +1956 55821 0.4990 +1956 55824 0.6760 +1956 55914 0.8750 +1956 55915 0.6280 +1956 55970 0.4180 +1956 56034 0.9610 +1956 56244 0.5320 +1956 56339 0.4420 +1956 56667 0.5630 +1956 56832 0.6900 +1956 56886 0.4320 +1956 56893 0.4120 +1956 56901 0.4180 +1956 56904 0.6610 +1956 56957 0.4210 +1956 57007 0.7680 +1956 57152 0.4160 +1956 57154 0.8090 +1956 57509 0.7250 +1956 57510 0.4390 +1956 57521 0.6720 +1956 57650 0.5820 +1956 57761 0.4300 +1956 58508 0.4640 +1956 58513 0.9070 +1956 59067 0.6970 +1956 59272 0.5830 +1956 59341 0.4770 +1956 60412 0.4580 +1956 60485 0.4150 +1956 64129 0.4850 +1956 64132 0.4020 +1956 64285 0.4970 +1956 64321 0.5320 +1956 64328 0.4370 +1956 64400 0.5400 +1956 64750 0.8990 +1956 64759 0.9150 +1956 64805 0.4400 +1956 64855 0.4120 +1956 64866 0.8060 +1956 65059 0.4370 +1956 79026 0.5810 +1956 79651 0.5170 +1956 79661 0.4330 +1956 79705 0.6180 +1956 79923 0.5470 +1956 80310 0.9320 +1956 80321 0.6580 +1956 80380 0.5800 +1956 80381 0.4850 +1956 80781 0.6400 +1956 81552 0.6000 +1956 81631 0.4400 +1956 81669 0.5770 +1956 81849 0.5730 +1956 83442 0.5470 +1956 83540 0.4870 +1956 83732 0.6510 +1956 83737 0.8460 +1956 83872 0.5410 +1956 84174 0.7030 +1956 84236 0.4500 +1956 84260 0.5740 +1956 84335 0.4480 +1956 84445 0.4030 +1956 84868 0.5210 +1956 84894 0.6100 +1956 84951 0.5840 +1956 84959 0.9200 +1956 85476 0.6150 +1956 85480 0.7260 +1956 88455 0.6630 +1956 89780 0.5850 +1956 90423 0.6580 +1956 90865 0.5520 +1956 91860 0.8090 +1956 92335 0.4500 +1956 93185 0.4780 +1956 94025 0.6960 +1956 114788 0.4080 +1956 120892 0.5800 +1956 121227 0.7790 +1956 122809 0.6190 +1956 126969 0.4400 +1956 131566 0.6430 +1956 133482 0.4470 +1956 135228 0.4570 +1956 137902 0.7430 +1956 140453 0.5630 +1956 140803 0.4990 +1956 145957 0.9360 +1956 149371 0.4510 +1956 150353 0.4050 +1956 151056 0.6500 +1956 151306 0.5840 +1956 152189 0.4410 +1956 153090 0.4330 +1956 158038 0.4420 +1956 162514 0.6660 +1956 163688 0.8090 +1956 168400 0.5790 +1956 200576 0.5650 +1956 200895 0.4910 +1956 201633 0.4140 +1956 203068 0.5240 +1956 221150 0.4610 +1956 222584 0.4630 +1956 245972 0.6600 +1956 245973 0.6600 +1956 253260 0.7060 +1956 255324 0.9990 +1956 255738 0.7320 +1956 259197 0.5390 +1956 282616 0.6680 +1956 282617 0.6850 +1956 282618 0.6850 +1956 284058 0.4240 +1956 284119 0.8850 +1956 338376 0.6830 +1956 390243 0.6830 +1956 399694 0.9880 +1956 400566 0.5510 +1956 401994 0.4570 +1956 404203 0.6160 +1956 405754 0.6730 +1956 414325 0.5560 +1956 440093 0.6040 +1956 440686 0.6000 +1956 645073 0.4200 +1956 645191 0.4840 +1956 653145 0.6580 +1956 653604 0.6260 +1956 727897 0.4430 +1956 728378 0.4330 +1956 100133941 0.8060 +1956 100423062 0.9160 +1956 100506658 0.5830 +1956 100532731 0.5190 +1956 102723407 0.9220 +1958 1959 0.9800 +1958 1960 0.8760 +1958 1961 0.6870 +1958 1977 0.5070 +1958 1978 0.4050 +1958 2002 0.5300 +1958 2004 0.4160 +1958 2005 0.7750 +1958 2033 0.9520 +1958 2064 0.4270 +1958 2065 0.6080 +1958 2099 0.6790 +1958 2100 0.5230 +1958 2113 0.5340 +1958 2114 0.4780 +1958 2119 0.5570 +1958 2122 0.5330 +1958 2139 0.4020 +1958 2146 0.7980 +1958 2152 0.8610 +1958 2247 0.6310 +1958 2258 0.4030 +1958 2260 0.4810 +1958 2261 0.5670 +1958 2308 0.6480 +1958 2309 0.4210 +1958 2335 0.6720 +1958 2353 0.9950 +1958 2354 0.9870 +1958 2355 0.8280 +1958 2475 0.4500 +1958 2488 0.4240 +1958 2516 0.5700 +1958 2551 0.5040 +1958 2597 0.6020 +1958 2623 0.4680 +1958 2624 0.4940 +1958 2625 0.4250 +1958 2670 0.5690 +1958 2672 0.4970 +1958 2741 0.4070 +1958 2796 0.6360 +1958 2797 0.4680 +1958 2890 0.4240 +1958 2904 0.4400 +1958 2908 0.8050 +1958 2919 0.4360 +1958 2920 0.4760 +1958 2932 0.4230 +1958 3021 0.5060 +1958 3065 0.8590 +1958 3066 0.7000 +1958 3091 0.5520 +1958 3162 0.4250 +1958 3164 0.8730 +1958 3169 0.5860 +1958 3181 0.4320 +1958 3199 0.4320 +1958 3303 0.4200 +1958 3304 0.4280 +1958 3308 0.6210 +1958 3381 0.4490 +1958 3383 0.4250 +1958 3397 0.4150 +1958 3398 0.4180 +1958 3430 0.4330 +1958 3458 0.4310 +1958 3479 0.4490 +1958 3481 0.4460 +1958 3486 0.5660 +1958 3491 0.7740 +1958 3552 0.4250 +1958 3553 0.6650 +1958 3554 0.5370 +1958 3567 0.4170 +1958 3569 0.7780 +1958 3576 0.6760 +1958 3592 0.4470 +1958 3630 0.4940 +1958 3643 0.4110 +1958 3659 0.5200 +1958 3664 0.4770 +1958 3665 0.5660 +1958 3673 0.4940 +1958 3676 0.4590 +1958 3690 0.4410 +1958 3725 0.9900 +1958 3726 0.9700 +1958 3727 0.9620 +1958 3845 0.4050 +1958 4005 0.5100 +1958 4087 0.5080 +1958 4088 0.5570 +1958 4129 0.4750 +1958 4150 0.4540 +1958 4170 0.4140 +1958 4193 0.6840 +1958 4205 0.4330 +1958 4209 0.6200 +1958 4233 0.5370 +1958 4254 0.5260 +1958 4297 0.5170 +1958 4318 0.6420 +1958 4323 0.5250 +1958 4599 0.5070 +1958 4609 0.8730 +1958 4616 0.5780 +1958 4664 0.9930 +1958 4665 0.9920 +1958 4772 0.6780 +1958 4773 0.5120 +1958 4782 0.5650 +1958 4790 0.5530 +1958 4792 0.4970 +1958 4800 0.6260 +1958 4801 0.6210 +1958 4803 0.7270 +1958 4804 0.5220 +1958 4904 0.4710 +1958 4914 0.4730 +1958 4915 0.4350 +1958 4929 0.8080 +1958 4938 0.4100 +1958 4939 0.4430 +1958 5054 0.4640 +1958 5077 0.4840 +1958 5081 0.4560 +1958 5154 0.6220 +1958 5155 0.5640 +1958 5156 0.5400 +1958 5159 0.5830 +1958 5204 0.6180 +1958 5241 0.5800 +1958 5290 0.4350 +1958 5295 0.4750 +1958 5307 0.8560 +1958 5347 0.4460 +1958 5457 0.5760 +1958 5458 0.4040 +1958 5465 0.6050 +1958 5468 0.9340 +1958 5566 0.4560 +1958 5567 0.4560 +1958 5568 0.4540 +1958 5594 0.9460 +1958 5595 0.9630 +1958 5599 0.4140 +1958 5604 0.4810 +1958 5684 0.5990 +1958 5728 0.7890 +1958 5743 0.6430 +1958 5928 0.5980 +1958 5931 0.5680 +1958 5934 0.4440 +1958 5966 0.4410 +1958 5970 0.7330 +1958 5978 0.5600 +1958 5997 0.5850 +1958 6014 0.5220 +1958 6015 0.5780 +1958 6045 0.5410 +1958 6208 0.4040 +1958 6217 0.4390 +1958 6300 0.4730 +1958 6347 0.4930 +1958 6348 0.4590 +1958 6385 0.4480 +1958 6426 0.4640 +1958 6446 0.4630 +1958 6457 0.4990 +1958 6495 0.4820 +1958 6591 0.6290 +1958 6596 0.4810 +1958 6615 0.7150 +1958 6647 0.5260 +1958 6654 0.4260 +1958 6657 0.4090 +1958 6662 0.4450 +1958 6667 0.8060 +1958 6688 0.4810 +1958 6695 0.4920 +1958 6714 0.4650 +1958 6722 0.9040 +1958 6772 0.8370 +1958 6773 0.6390 +1958 6774 0.7610 +1958 6886 0.6140 +1958 6908 0.4150 +1958 6909 0.4670 +1958 6925 0.4290 +1958 6938 0.7760 +1958 7005 0.4240 +1958 7026 0.5400 +1958 7040 0.6920 +1958 7042 0.5750 +1958 7048 0.5400 +1958 7057 0.6230 +1958 7088 0.4410 +1958 7099 0.4360 +1958 7101 0.5860 +1958 7124 0.6210 +1958 7128 0.4110 +1958 7157 0.9690 +1958 7166 0.7620 +1958 7203 0.4040 +1958 7341 0.4530 +1958 7391 0.6280 +1958 7425 0.8360 +1958 7465 0.4580 +1958 7490 0.4050 +1958 7538 0.7980 +1958 7832 0.6770 +1958 7837 0.4640 +1958 7874 0.4400 +1958 7913 0.4470 +1958 8013 0.6210 +1958 8021 0.4540 +1958 8061 0.8620 +1958 8074 0.4300 +1958 8290 0.4950 +1958 8356 0.4910 +1958 8535 0.5240 +1958 8553 0.5040 +1958 8726 0.5710 +1958 8841 0.5880 +1958 8851 0.7960 +1958 8870 0.5900 +1958 8941 0.5480 +1958 9021 0.4850 +1958 9112 0.5530 +1958 9120 0.4430 +1958 9219 0.5230 +1958 9314 0.5310 +1958 9456 0.5760 +1958 9518 0.5020 +1958 9575 0.4200 +1958 9592 0.9080 +1958 9935 0.4090 +1958 10000 0.4130 +1958 10014 0.6200 +1958 10221 0.8880 +1958 10280 0.5440 +1958 10379 0.5930 +1958 10413 0.5440 +1958 10725 0.5500 +1958 10769 0.4030 +1958 10912 0.4020 +1958 11266 0.5940 +1958 22955 0.5260 +1958 23028 0.6380 +1958 23186 0.5980 +1958 23237 0.8510 +1958 23411 0.4060 +1958 23462 0.5160 +1958 23466 0.5260 +1958 23512 0.6500 +1958 23576 0.4520 +1958 23645 0.6430 +1958 23764 0.4250 +1958 25939 0.5320 +1958 27063 0.4670 +1958 51176 0.5270 +1958 51341 0.5310 +1958 51564 0.5770 +1958 51806 0.5800 +1958 53615 0.5260 +1958 54205 0.5630 +1958 54206 0.4910 +1958 54815 0.5190 +1958 55726 0.4750 +1958 57167 0.5660 +1958 57332 0.5790 +1958 57459 0.5350 +1958 57504 0.5470 +1958 64102 0.4910 +1958 64332 0.5320 +1958 64651 0.5420 +1958 79800 0.4040 +1958 80012 0.5120 +1958 80312 0.6710 +1958 81035 0.4370 +1958 84232 0.5180 +1958 84733 0.5180 +1958 90007 0.5070 +1958 91860 0.5770 +1958 114034 0.4270 +1958 131096 0.5070 +1958 131405 0.4840 +1958 137902 0.4620 +1958 150094 0.4560 +1958 163688 0.5740 +1958 266743 0.7550 +1958 283078 0.5350 +1958 375790 0.6520 +1958 440093 0.4910 +1958 440686 0.5010 +1958 653604 0.5010 +1959 1960 0.9870 +1959 1961 0.7610 +1959 2002 0.4600 +1959 2020 0.5520 +1959 2033 0.9230 +1959 2146 0.6520 +1959 2353 0.9630 +1959 2354 0.9480 +1959 2355 0.4590 +1959 2534 0.5120 +1959 2597 0.4360 +1959 2624 0.5060 +1959 2625 0.6000 +1959 2705 0.8700 +1959 2841 0.4130 +1959 2919 0.4100 +1959 3012 0.5280 +1959 3013 0.5280 +1959 3014 0.5390 +1959 3015 0.5830 +1959 3017 0.7100 +1959 3018 0.7030 +1959 3021 0.6620 +1959 3084 0.5590 +1959 3156 0.7950 +1959 3164 0.7890 +1959 3198 0.5550 +1959 3199 0.7970 +1959 3211 0.7890 +1959 3212 0.7830 +1959 3213 0.6680 +1959 3219 0.4140 +1959 3394 0.4650 +1959 3398 0.7580 +1959 3400 0.7170 +1959 3458 0.4630 +1959 3491 0.6070 +1959 3553 0.6090 +1959 3569 0.4420 +1959 3586 0.4160 +1959 3594 0.4180 +1959 3659 0.4150 +1959 3662 0.4870 +1959 3725 0.8880 +1959 3726 0.7800 +1959 3727 0.7300 +1959 3902 0.4100 +1959 4015 0.4850 +1959 4099 0.9150 +1959 4155 0.9100 +1959 4192 0.4240 +1959 4204 0.4350 +1959 4209 0.5620 +1959 4211 0.6000 +1959 4318 0.4480 +1959 4609 0.4460 +1959 4613 0.4980 +1959 4654 0.4200 +1959 4664 0.9780 +1959 4665 0.9940 +1959 4747 0.4630 +1959 4772 0.7400 +1959 4773 0.6260 +1959 4775 0.6760 +1959 4776 0.7520 +1959 4803 0.4090 +1959 4804 0.4370 +1959 4851 0.4150 +1959 4929 0.6420 +1959 5015 0.4900 +1959 5077 0.4170 +1959 5080 0.5220 +1959 5087 0.5820 +1959 5316 0.5510 +1959 5354 0.4080 +1959 5375 0.5700 +1959 5376 0.9160 +1959 5453 0.8760 +1959 5454 0.7750 +1959 5455 0.4720 +1959 5456 0.4900 +1959 5534 0.6490 +1959 5588 0.4500 +1959 5743 0.4510 +1959 5744 0.4120 +1959 5781 0.4860 +1959 5914 0.6020 +1959 5916 0.6000 +1959 5928 0.5570 +1959 5929 0.5140 +1959 5931 0.5500 +1959 5996 0.4360 +1959 6256 0.5980 +1959 6347 0.6240 +1959 6348 0.5630 +1959 6351 0.4060 +1959 6402 0.4240 +1959 6457 0.4990 +1959 6597 0.8430 +1959 6615 0.6730 +1959 6657 0.4370 +1959 6663 0.9860 +1959 6667 0.4740 +1959 6688 0.4660 +1959 6714 0.4310 +1959 6721 0.7540 +1959 6722 0.6880 +1959 6929 0.5300 +1959 6938 0.4330 +1959 7003 0.7730 +1959 7124 0.5430 +1959 7157 0.6390 +1959 7329 0.6590 +1959 7403 0.5780 +1959 7538 0.4610 +1959 7545 0.4320 +1959 7832 0.5390 +1959 8013 0.7010 +1959 8061 0.7050 +1959 8085 0.5200 +1959 8202 0.5490 +1959 8320 0.4890 +1959 8331 0.5280 +1959 8334 0.5280 +1959 8337 0.5750 +1959 8338 0.5750 +1959 8340 0.6970 +1959 8341 0.7030 +1959 8342 0.6980 +1959 8345 0.6970 +1959 8347 0.7050 +1959 8348 0.6970 +1959 8349 0.7380 +1959 8356 0.6590 +1959 8361 0.5670 +1959 8553 0.4200 +1959 8726 0.5890 +1959 8731 0.8380 +1959 8870 0.4030 +1959 8879 0.5780 +1959 8898 0.5070 +1959 8929 0.4120 +1959 8970 0.6990 +1959 9019 0.8270 +1959 9070 0.5030 +1959 9308 0.4450 +1959 9314 0.6120 +1959 9516 0.5630 +1959 9580 0.5140 +1959 9592 0.5820 +1959 9611 0.6180 +1959 9886 0.5240 +1959 9935 0.7290 +1959 10221 0.4230 +1959 10376 0.4180 +1959 10413 0.5780 +1959 10538 0.6590 +1959 10725 0.4730 +1959 10765 0.6510 +1959 11091 0.5660 +1959 11218 0.5400 +1959 11266 0.4490 +1959 22976 0.5290 +1959 23054 0.4990 +1959 23237 0.6970 +1959 23512 0.5970 +1959 23764 0.4320 +1959 25937 0.5780 +1959 26040 0.4740 +1959 30009 0.4970 +1959 50615 0.4680 +1959 50846 0.4420 +1959 50943 0.4550 +1959 51806 0.4350 +1959 54145 0.6970 +1959 54332 0.5820 +1959 55766 0.5280 +1959 57211 0.6450 +1959 57716 0.9630 +1959 58508 0.5210 +1959 60468 0.5000 +1959 63876 0.4460 +1959 64332 0.4050 +1959 64651 0.4230 +1959 79447 0.4990 +1959 79628 0.5800 +1959 79966 0.7840 +1959 80325 0.4380 +1959 81033 0.5210 +1959 81846 0.4820 +1959 85236 0.6980 +1959 85329 0.4190 +1959 91860 0.4310 +1959 93377 0.4200 +1959 94239 0.5420 +1959 114836 0.4210 +1959 121512 0.4170 +1959 128312 0.6970 +1959 158983 0.4200 +1959 163688 0.4280 +1959 255626 0.6990 +1959 266743 0.5640 +1959 286436 0.4200 +1959 440689 0.4200 +1959 474382 0.5380 +1959 653604 0.6590 +1959 114483833 0.4200 +1960 1961 0.5330 +1960 2033 0.9180 +1960 2353 0.9410 +1960 2354 0.9560 +1960 2355 0.4700 +1960 2557 0.7000 +1960 2566 0.4220 +1960 2705 0.4630 +1960 3084 0.4410 +1960 3164 0.8500 +1960 3558 0.5570 +1960 3725 0.5960 +1960 3726 0.7520 +1960 3727 0.6990 +1960 4088 0.5480 +1960 4155 0.4150 +1960 4209 0.5760 +1960 4664 0.9520 +1960 4665 0.9640 +1960 4775 0.5520 +1960 4776 0.5010 +1960 4929 0.6750 +1960 5173 0.4540 +1960 5534 0.5210 +1960 5743 0.4160 +1960 6385 0.4030 +1960 6457 0.4990 +1960 6663 0.5390 +1960 6722 0.6790 +1960 7158 0.4240 +1960 7471 0.4100 +1960 7832 0.6040 +1960 7976 0.4040 +1960 8013 0.7090 +1960 8061 0.7020 +1960 9456 0.4470 +1960 9592 0.5600 +1960 23237 0.7220 +1960 57716 0.6070 +1960 266743 0.4920 +1961 2002 0.4650 +1961 2116 0.4170 +1961 2274 0.4960 +1961 2353 0.5900 +1961 2354 0.6520 +1961 2355 0.4220 +1961 3164 0.6500 +1961 3663 0.4280 +1961 3725 0.4700 +1961 4664 0.8860 +1961 4665 0.8680 +1961 4772 0.4240 +1961 4773 0.4120 +1961 4803 0.5260 +1961 4929 0.4070 +1961 6722 0.5530 +1961 8013 0.5720 +1961 8061 0.5680 +1961 9456 0.4010 +1961 23237 0.6790 +1961 55565 0.4240 +1961 57468 0.4560 +1961 266743 0.7040 +1962 2108 0.6090 +1962 2109 0.6510 +1962 2110 0.5450 +1962 2168 0.4690 +1962 2170 0.4990 +1962 2180 0.6970 +1962 2181 0.5670 +1962 2182 0.5070 +1962 2194 0.6610 +1962 2203 0.4240 +1962 2639 0.9670 +1962 2806 0.4690 +1962 3028 0.9650 +1962 3030 0.9440 +1962 3032 0.9990 +1962 3033 0.6910 +1962 3155 0.6950 +1962 3157 0.9590 +1962 3158 0.9720 +1962 3172 0.4460 +1962 3242 0.4370 +1962 3293 0.5460 +1962 3294 0.4900 +1962 3295 0.9880 +1962 3658 0.4080 +1962 3712 0.9600 +1962 4329 0.9530 +1962 4594 0.5370 +1962 4706 0.4140 +1962 4728 0.4020 +1962 5019 0.9510 +1962 5091 0.4060 +1962 5095 0.8950 +1962 5096 0.9140 +1962 5105 0.5490 +1962 5106 0.4150 +1962 5165 0.4050 +1962 5166 0.5910 +1962 5189 0.5350 +1962 5191 0.5150 +1962 5192 0.8520 +1962 5194 0.8070 +1962 5195 0.5830 +1962 5465 0.7800 +1962 5468 0.4200 +1962 5825 0.5310 +1962 5828 0.5810 +1962 5830 0.9120 +1962 6187 0.4400 +1962 6205 0.4610 +1962 6222 0.4180 +1962 6233 0.5190 +1962 6296 0.7520 +1962 6319 0.5000 +1962 6342 0.9520 +1962 6648 0.4590 +1962 6652 0.4120 +1962 6718 0.4060 +1962 6720 0.4110 +1962 7311 0.4990 +1962 7314 0.5230 +1962 7316 0.5340 +1962 7321 0.5110 +1962 7322 0.5110 +1962 7323 0.5110 +1962 7818 0.4860 +1962 8309 0.9190 +1962 8310 0.9930 +1962 8443 0.6980 +1962 8540 0.5180 +1962 8659 0.4260 +1962 8694 0.4050 +1962 8799 0.4330 +1962 8800 0.6860 +1962 9349 0.4220 +1962 9399 0.4670 +1962 9553 0.5630 +1962 9563 0.4670 +1962 9607 0.6440 +1962 9801 0.4670 +1962 9862 0.4250 +1962 10005 0.6600 +1962 10202 0.4080 +1962 10449 0.9950 +1962 10455 0.9720 +1962 10891 0.4180 +1962 10901 0.7900 +1962 10965 0.5870 +1962 10998 0.4680 +1962 11001 0.5950 +1962 11112 0.9420 +1962 11332 0.4070 +1962 23205 0.4020 +1962 23305 0.4910 +1962 23417 0.4010 +1962 23597 0.4280 +1962 23600 0.6460 +1962 25820 0.4520 +1962 26027 0.4740 +1962 26063 0.6310 +1962 26275 0.9570 +1962 26589 0.4540 +1962 27034 0.9600 +1962 27349 0.4950 +1962 28976 0.7480 +1962 50814 0.4230 +1962 51021 0.4710 +1962 51071 0.4070 +1962 51084 0.5100 +1962 51144 0.4530 +1962 51264 0.4630 +1962 51268 0.4790 +1962 51497 0.4100 +1962 51703 0.5910 +1962 54511 0.5590 +1962 54677 0.5320 +1962 54884 0.5740 +1962 54988 0.4590 +1962 54995 0.4170 +1962 55289 0.5550 +1962 55349 0.4840 +1962 55670 0.4950 +1962 55825 0.6960 +1962 55856 0.4490 +1962 55862 0.9230 +1962 55902 0.9130 +1962 56898 0.4840 +1962 56922 0.9470 +1962 57129 0.4790 +1962 57591 0.4360 +1962 60481 0.4410 +1962 60488 0.4960 +1962 63875 0.4670 +1962 64064 0.9400 +1962 64087 0.9480 +1962 64577 0.4030 +1962 64850 0.4070 +1962 64902 0.9300 +1962 64965 0.5060 +1962 64968 0.4580 +1962 64969 0.4320 +1962 64975 0.4450 +1962 64976 0.4340 +1962 64979 0.4680 +1962 64981 0.4180 +1962 64983 0.4080 +1962 65985 0.9450 +1962 79071 0.4830 +1962 79611 0.8940 +1962 80221 0.5820 +1962 80270 0.4230 +1962 80724 0.5560 +1962 81616 0.4210 +1962 84129 0.6330 +1962 84263 0.8300 +1962 84532 0.9060 +1962 84545 0.4680 +1962 84649 0.4250 +1962 84693 0.4610 +1962 85007 0.4630 +1962 116285 0.4670 +1962 116519 0.4010 +1962 122970 0.6900 +1962 123876 0.4210 +1962 126129 0.5380 +1962 132949 0.5740 +1962 134147 0.4160 +1962 134526 0.5160 +1962 140856 0.4990 +1962 158833 0.4570 +1962 197322 0.5490 +1962 219743 0.5570 +1962 254042 0.4080 +1962 284422 0.5080 +1962 317749 0.4460 +1962 341392 0.4390 +1962 348158 0.4370 +1962 376497 0.6120 +1962 641371 0.6100 +1962 641372 0.4040 +1962 109703458 0.4120 +1962 122405565 0.5080 +1964 1965 0.9950 +1964 1968 0.9860 +1964 1973 0.9810 +1964 1974 0.8820 +1964 1975 0.7370 +1964 1977 0.4630 +1964 1981 0.9320 +1964 1983 0.9750 +1964 1984 0.7850 +1964 2058 0.5420 +1964 2107 0.4770 +1964 2178 0.6950 +1964 2197 0.9970 +1964 2287 0.4020 +1964 2323 0.6970 +1964 2767 0.7790 +1964 2776 0.7180 +1964 3150 0.6220 +1964 3151 0.6200 +1964 3265 0.5220 +1964 3336 0.4310 +1964 3646 0.9850 +1964 3692 0.5100 +1964 3735 0.4810 +1964 3845 0.4830 +1964 3921 0.9790 +1964 4141 0.4160 +1964 4508 0.5680 +1964 4528 0.8310 +1964 4736 0.8530 +1964 4763 0.4110 +1964 4809 0.6640 +1964 4893 0.6170 +1964 4904 0.4360 +1964 5036 0.5970 +1964 5290 0.6310 +1964 5295 0.4640 +1964 5332 0.6700 +1964 5431 0.6730 +1964 5432 0.7900 +1964 5434 0.5040 +1964 5435 0.5850 +1964 5464 0.4100 +1964 5469 0.7640 +1964 5728 0.4490 +1964 5887 0.4010 +1964 5901 0.9110 +1964 5979 0.5430 +1964 6059 0.9410 +1964 6122 0.8740 +1964 6123 0.8600 +1964 6124 0.9510 +1964 6125 0.9320 +1964 6128 0.6390 +1964 6129 0.8670 +1964 6130 0.8240 +1964 6132 0.8910 +1964 6133 0.8870 +1964 6135 0.9450 +1964 6136 0.8230 +1964 6137 0.6380 +1964 6138 0.5960 +1964 6139 0.8710 +1964 6141 0.5710 +1964 6142 0.6540 +1964 6143 0.6420 +1964 6144 0.6410 +1964 6146 0.5680 +1964 6147 0.9240 +1964 6152 0.6840 +1964 6154 0.8950 +1964 6155 0.6520 +1964 6156 0.6830 +1964 6157 0.7500 +1964 6158 0.6330 +1964 6159 0.6600 +1964 6160 0.6980 +1964 6161 0.6790 +1964 6164 0.6980 +1964 6165 0.6210 +1964 6166 0.6270 +1964 6167 0.5680 +1964 6168 0.6290 +1964 6169 0.6650 +1964 6170 0.6470 +1964 6171 0.7230 +1964 6173 0.6470 +1964 6175 0.8900 +1964 6176 0.6860 +1964 6181 0.6250 +1964 6182 0.8030 +1964 6183 0.9420 +1964 6187 0.9920 +1964 6188 0.9960 +1964 6189 0.9780 +1964 6191 0.9620 +1964 6192 0.7360 +1964 6193 0.9890 +1964 6194 0.9750 +1964 6201 0.9730 +1964 6202 0.9720 +1964 6203 0.9910 +1964 6204 0.9650 +1964 6205 0.9960 +1964 6206 0.9710 +1964 6207 0.9790 +1964 6208 0.9870 +1964 6209 0.9980 +1964 6210 0.9530 +1964 6217 0.9910 +1964 6218 0.9760 +1964 6222 0.9960 +1964 6223 0.9740 +1964 6224 0.9940 +1964 6227 0.9680 +1964 6228 0.9960 +1964 6229 0.9780 +1964 6230 0.9750 +1964 6231 0.9730 +1964 6232 0.9550 +1964 6233 0.9730 +1964 6234 0.9760 +1964 6235 0.9870 +1964 6414 0.7200 +1964 6427 0.4130 +1964 6742 0.7000 +1964 7015 0.6330 +1964 7157 0.5500 +1964 7253 0.5070 +1964 7284 0.8860 +1964 7311 0.5880 +1964 7403 0.5970 +1964 7404 0.4430 +1964 7407 0.4540 +1964 7458 0.4170 +1964 7543 0.4510 +1964 7849 0.4790 +1964 8192 0.4440 +1964 8225 0.4050 +1964 8227 0.4090 +1964 8239 0.5460 +1964 8242 0.6160 +1964 8284 0.4090 +1964 8314 0.6420 +1964 8493 0.4800 +1964 8562 0.7760 +1964 8565 0.5980 +1964 8623 0.6700 +1964 8653 0.4140 +1964 8661 0.9910 +1964 8662 0.9810 +1964 8663 0.9830 +1964 8664 0.9750 +1964 8665 0.9560 +1964 8666 0.9770 +1964 8667 0.9600 +1964 8668 0.9750 +1964 8669 0.9780 +1964 8780 0.7000 +1964 8894 0.9950 +1964 9045 0.6390 +1964 9086 0.9520 +1964 9343 0.7570 +1964 9349 0.9450 +1964 9533 0.7880 +1964 9553 0.5240 +1964 9669 0.9910 +1964 9670 0.9810 +1964 9732 0.6240 +1964 9801 0.6400 +1964 9858 0.7390 +1964 10056 0.4450 +1964 10209 0.9990 +1964 10289 0.9860 +1964 10399 0.9650 +1964 10412 0.4880 +1964 10473 0.6160 +1964 10480 0.9020 +1964 10492 0.4940 +1964 10528 0.4490 +1964 10557 0.6350 +1964 10969 0.4340 +1964 10988 0.5640 +1964 11103 0.4850 +1964 11128 0.6010 +1964 11222 0.7500 +1964 11224 0.9470 +1964 23173 0.5440 +1964 23204 0.7740 +1964 23451 0.6780 +1964 23521 0.8530 +1964 23532 0.4840 +1964 23640 0.6670 +1964 25873 0.6020 +1964 25885 0.6030 +1964 26289 0.5510 +1964 27335 0.9630 +1964 28998 0.7220 +1964 29088 0.4840 +1964 29093 0.7380 +1964 29789 0.4660 +1964 29927 0.7880 +1964 29978 0.4520 +1964 50808 0.5600 +1964 51021 0.8350 +1964 51065 0.8090 +1964 51069 0.7720 +1964 51073 0.9110 +1964 51081 0.8880 +1964 51116 0.7430 +1964 51121 0.8830 +1964 51149 0.8690 +1964 51154 0.7720 +1964 51248 0.5810 +1964 51264 0.6760 +1964 51319 0.8260 +1964 51386 0.8980 +1964 51727 0.6160 +1964 54059 0.4080 +1964 54433 0.4170 +1964 54505 0.8440 +1964 54948 0.6670 +1964 54960 0.5100 +1964 55052 0.7310 +1964 55173 0.9430 +1964 55176 0.7820 +1964 55272 0.9290 +1964 55316 0.9290 +1964 55591 0.5420 +1964 55651 0.7060 +1964 55703 0.6690 +1964 55781 0.4230 +1964 55787 0.5740 +1964 56648 0.6860 +1964 57105 0.6680 +1964 60678 0.6940 +1964 63875 0.8660 +1964 63931 0.8830 +1964 64374 0.6690 +1964 64960 0.7880 +1964 64963 0.8900 +1964 64965 0.8490 +1964 64968 0.8760 +1964 64969 0.9380 +1964 64979 0.8960 +1964 64983 0.8110 +1964 65003 0.6150 +1964 65008 0.7130 +1964 65121 0.4510 +1964 65122 0.4510 +1964 79590 0.7720 +1964 79631 0.7170 +1964 80273 0.4780 +1964 83732 0.7060 +1964 84172 0.6730 +1964 84285 0.5230 +1964 84365 0.4090 +1964 85377 0.4700 +1964 85476 0.7290 +1964 92399 0.4010 +1964 114987 0.7640 +1964 116832 0.5950 +1964 122481 0.5510 +1964 126402 0.8870 +1964 134266 0.4640 +1964 140032 0.6700 +1964 140801 0.8270 +1964 143244 0.7800 +1964 158067 0.5510 +1964 200916 0.5470 +1964 219927 0.8540 +1964 221264 0.5510 +1964 255308 0.7450 +1964 256714 0.4250 +1964 285855 0.7250 +1964 343068 0.4510 +1964 343070 0.4510 +1964 347487 0.8680 +1964 387129 0.7170 +1964 390999 0.4510 +1964 391002 0.4510 +1964 400735 0.4510 +1964 400736 0.4510 +1964 440560 0.4510 +1964 440561 0.4510 +1964 441873 0.4510 +1964 641776 0.7390 +1964 643909 0.7390 +1964 645359 0.4510 +1964 653567 0.4110 +1964 653619 0.4510 +1964 728524 0.7390 +1964 728689 0.8980 +1964 729528 0.4510 +1964 100287482 0.7390 +1964 100505478 0.7170 +1964 100526842 0.7340 +1964 100529239 0.9580 +1964 100996746 0.7390 +1964 101929983 0.4510 +1964 105180390 0.7390 +1964 105180391 0.7390 +1965 1967 0.9990 +1965 1968 0.9990 +1965 1973 0.9900 +1965 1974 0.8840 +1965 1975 0.9030 +1965 1977 0.9540 +1965 1978 0.6460 +1965 1981 0.9860 +1965 1982 0.7050 +1965 1983 0.9980 +1965 1984 0.6440 +1965 1994 0.5530 +1965 2058 0.4980 +1965 2081 0.8940 +1965 2091 0.4430 +1965 2107 0.8650 +1965 2197 0.9960 +1965 2475 0.8050 +1965 2597 0.6190 +1965 2618 0.4550 +1965 2887 0.4990 +1965 2923 0.6300 +1965 2935 0.4540 +1965 3035 0.8310 +1965 3091 0.4640 +1965 3178 0.5680 +1965 3181 0.5000 +1965 3183 0.4650 +1965 3190 0.4010 +1965 3276 0.4190 +1965 3308 0.7670 +1965 3309 0.9390 +1965 3310 0.4660 +1965 3312 0.5420 +1965 3313 0.4720 +1965 3320 0.7550 +1965 3326 0.6610 +1965 3329 0.4060 +1965 3376 0.4170 +1965 3417 0.4340 +1965 3418 0.4140 +1965 3608 0.6170 +1965 3630 0.4350 +1965 3646 0.9940 +1965 3692 0.6520 +1965 3725 0.6480 +1965 3735 0.6050 +1965 3837 0.5940 +1965 3842 0.4690 +1965 3921 0.9930 +1965 4076 0.4210 +1965 4137 0.4460 +1965 4141 0.6350 +1965 4170 0.4190 +1965 4217 0.5120 +1965 4528 0.4900 +1965 4609 0.4990 +1965 4677 0.4060 +1965 4691 0.4140 +1965 4733 0.5780 +1965 4736 0.8680 +1965 4738 0.4740 +1965 4780 0.4060 +1965 4799 0.6090 +1965 4809 0.6890 +1965 4831 0.5450 +1965 4869 0.5200 +1965 4899 0.7050 +1965 4904 0.5510 +1965 5034 0.4160 +1965 5036 0.6650 +1965 5093 0.4120 +1965 5094 0.4010 +1965 5245 0.5810 +1965 5366 0.4100 +1965 5432 0.4400 +1965 5434 0.5910 +1965 5441 0.4870 +1965 5469 0.4240 +1965 5499 0.9960 +1965 5500 0.9490 +1965 5501 0.9550 +1965 5531 0.4830 +1965 5557 0.4490 +1965 5558 0.4950 +1965 5578 0.5650 +1965 5595 0.4100 +1965 5599 0.4500 +1965 5610 0.9990 +1965 5611 0.7650 +1965 5682 0.5110 +1965 5683 0.5730 +1965 5684 0.7340 +1965 5685 0.6130 +1965 5686 0.8020 +1965 5687 0.5520 +1965 5688 0.5170 +1965 5690 0.4140 +1965 5695 0.4010 +1965 5700 0.6160 +1965 5701 0.7550 +1965 5702 0.5580 +1965 5704 0.6210 +1965 5705 0.6550 +1965 5706 0.6250 +1965 5707 0.5820 +1965 5708 0.6110 +1965 5710 0.4340 +1965 5713 0.4760 +1965 5717 0.6410 +1965 5718 0.7100 +1965 5859 0.4220 +1965 5877 0.8030 +1965 5886 0.4240 +1965 5887 0.4430 +1965 5901 0.5680 +1965 5917 0.6830 +1965 5976 0.6450 +1965 6041 0.4230 +1965 6059 0.9770 +1965 6122 0.8800 +1965 6123 0.6090 +1965 6124 0.9360 +1965 6125 0.8880 +1965 6128 0.8680 +1965 6129 0.9000 +1965 6130 0.9390 +1965 6132 0.8640 +1965 6133 0.8980 +1965 6135 0.8580 +1965 6136 0.8450 +1965 6137 0.8600 +1965 6138 0.9010 +1965 6139 0.8500 +1965 6141 0.7690 +1965 6142 0.8700 +1965 6143 0.9250 +1965 6144 0.9000 +1965 6146 0.8350 +1965 6147 0.9330 +1965 6152 0.6930 +1965 6154 0.8700 +1965 6155 0.8880 +1965 6156 0.7880 +1965 6157 0.9060 +1965 6158 0.8380 +1965 6159 0.7450 +1965 6160 0.8110 +1965 6161 0.6780 +1965 6164 0.8470 +1965 6165 0.7850 +1965 6166 0.8480 +1965 6167 0.5370 +1965 6168 0.6740 +1965 6169 0.7050 +1965 6170 0.5550 +1965 6171 0.7430 +1965 6173 0.8270 +1965 6175 0.9120 +1965 6176 0.7850 +1965 6181 0.7150 +1965 6183 0.8520 +1965 6187 0.9980 +1965 6188 0.9990 +1965 6189 0.9990 +1965 6191 0.9930 +1965 6192 0.8880 +1965 6193 0.9980 +1965 6194 0.9980 +1965 6198 0.6470 +1965 6199 0.4810 +1965 6201 0.9970 +1965 6202 0.9980 +1965 6203 0.9950 +1965 6204 0.9920 +1965 6205 0.9970 +1965 6206 0.9930 +1965 6207 0.9950 +1965 6208 0.9970 +1965 6209 0.9980 +1965 6210 0.9850 +1965 6217 0.9980 +1965 6218 0.9890 +1965 6222 0.9970 +1965 6223 0.9970 +1965 6224 0.9980 +1965 6227 0.9950 +1965 6228 0.9970 +1965 6229 0.9980 +1965 6230 0.9980 +1965 6231 0.9980 +1965 6232 0.9900 +1965 6233 0.9940 +1965 6234 0.9970 +1965 6235 0.9880 +1965 6311 0.5740 +1965 6414 0.8890 +1965 6500 0.5120 +1965 6635 0.4030 +1965 6726 0.4060 +1965 6741 0.5710 +1965 6801 0.4740 +1965 6950 0.8000 +1965 7048 0.6040 +1965 7072 0.7790 +1965 7073 0.6280 +1965 7157 0.4770 +1965 7184 0.7590 +1965 7203 0.7350 +1965 7295 0.4310 +1965 7311 0.5490 +1965 7316 0.4060 +1965 7334 0.4120 +1965 7336 0.4850 +1965 7411 0.5290 +1965 7415 0.5000 +1965 7453 0.4680 +1965 7458 0.8690 +1965 7494 0.8590 +1965 7514 0.4600 +1965 7837 0.4710 +1965 7919 0.4320 +1965 8087 0.4010 +1965 8106 0.6780 +1965 8243 0.4070 +1965 8260 0.4460 +1965 8533 0.4020 +1965 8562 0.8990 +1965 8565 0.6320 +1965 8607 0.4860 +1965 8638 0.4040 +1965 8661 0.9990 +1965 8662 0.9990 +1965 8663 0.9960 +1965 8664 0.9960 +1965 8665 0.9840 +1965 8666 0.9920 +1965 8667 0.9710 +1965 8668 0.9990 +1965 8669 0.9720 +1965 8672 0.5680 +1965 8678 0.5680 +1965 8720 0.4060 +1965 8795 0.4160 +1965 8872 0.5390 +1965 8878 0.4500 +1965 8886 0.4370 +1965 8890 0.9990 +1965 8891 0.9990 +1965 8892 0.9990 +1965 8893 0.9990 +1965 8894 0.9990 +1965 9045 0.8510 +1965 9086 0.9420 +1965 9097 0.6220 +1965 9140 0.6490 +1965 9255 0.5400 +1965 9296 0.4110 +1965 9343 0.4840 +1965 9349 0.8310 +1965 9451 0.9980 +1965 9470 0.4650 +1965 9474 0.5780 +1965 9521 0.4400 +1965 9636 0.4850 +1965 9669 0.8010 +1965 9695 0.4340 +1965 9732 0.5680 +1965 9759 0.4750 +1965 9775 0.5500 +1965 9858 0.5760 +1965 9861 0.4170 +1965 9908 0.5320 +1965 9933 0.7150 +1965 9939 0.4650 +1965 10018 0.4470 +1965 10056 0.7110 +1965 10146 0.7640 +1965 10153 0.5100 +1965 10190 0.5000 +1965 10209 0.9980 +1965 10213 0.9990 +1965 10236 0.5740 +1965 10289 0.9530 +1965 10399 0.9890 +1965 10419 0.4890 +1965 10480 0.9850 +1965 10488 0.4230 +1965 10492 0.7960 +1965 10525 0.4140 +1965 10528 0.5760 +1965 10533 0.4270 +1965 10557 0.6090 +1965 10558 0.4070 +1965 10574 0.7630 +1965 10575 0.7930 +1965 10576 0.9390 +1965 10595 0.4520 +1965 10605 0.4200 +1965 10606 0.5810 +1965 10658 0.8820 +1965 10694 0.8490 +1965 10726 0.4720 +1965 10885 0.4570 +1965 10940 0.4360 +1965 10946 0.4650 +1965 10969 0.5010 +1965 10985 0.8630 +1965 10988 0.6210 +1965 11047 0.4680 +1965 11103 0.8660 +1965 11140 0.6910 +1965 11198 0.5070 +1965 11224 0.7830 +1965 11345 0.4210 +1965 22809 0.7840 +1965 22926 0.9230 +1965 22948 0.8660 +1965 23049 0.4260 +1965 23160 0.4790 +1965 23173 0.7150 +1965 23204 0.5760 +1965 23435 0.5960 +1965 23438 0.8000 +1965 23476 0.5530 +1965 23517 0.4310 +1965 23521 0.8910 +1965 23560 0.6160 +1965 23645 0.9990 +1965 23710 0.4170 +1965 25873 0.7280 +1965 25879 0.4420 +1965 25885 0.4360 +1965 25914 0.4180 +1965 26354 0.4060 +1965 26986 0.8160 +1965 27000 0.7110 +1965 27102 0.9960 +1965 27335 0.9820 +1965 28998 0.5100 +1965 29088 0.4490 +1965 29789 0.4390 +1965 29925 0.5950 +1965 29926 0.5940 +1965 29978 0.4800 +1965 29979 0.5010 +1965 30001 0.7130 +1965 50613 0.4100 +1965 51018 0.4270 +1965 51065 0.9180 +1965 51073 0.6800 +1965 51081 0.8580 +1965 51116 0.6010 +1965 51121 0.6790 +1965 51149 0.8700 +1965 51154 0.4380 +1965 51187 0.5630 +1965 51319 0.8440 +1965 51386 0.9730 +1965 51388 0.4430 +1965 51493 0.6380 +1965 51520 0.4410 +1965 51602 0.7250 +1965 51605 0.4400 +1965 54205 0.5210 +1965 54464 0.4320 +1965 54496 0.8150 +1965 54505 0.6950 +1965 54552 0.4010 +1965 55054 0.5960 +1965 55173 0.9090 +1965 55226 0.4430 +1965 55239 0.4170 +1965 55272 0.8510 +1965 55299 0.7890 +1965 55316 0.8120 +1965 55324 0.4890 +1965 55505 0.9040 +1965 55601 0.5260 +1965 55644 0.4560 +1965 55651 0.7050 +1965 55759 0.6550 +1965 55781 0.5840 +1965 55854 0.4250 +1965 56605 0.4080 +1965 56648 0.6360 +1965 56893 0.4490 +1965 57038 0.5720 +1965 57470 0.4590 +1965 57761 0.4500 +1965 60678 0.8840 +1965 63931 0.7760 +1965 64172 0.4090 +1965 64374 0.4270 +1965 64422 0.5360 +1965 64425 0.4940 +1965 64960 0.8390 +1965 64963 0.8230 +1965 64969 0.9150 +1965 79094 0.4740 +1965 81631 0.6140 +1965 83732 0.4450 +1965 83939 0.9780 +1965 84135 0.5370 +1965 84154 0.7480 +1965 84365 0.6750 +1965 84447 0.4200 +1965 84549 0.5110 +1965 84919 0.8750 +1965 84993 0.4190 +1965 85377 0.5920 +1965 85476 0.4410 +1965 93550 0.4060 +1965 94241 0.4650 +1965 114987 0.7330 +1965 116832 0.5690 +1965 120892 0.4050 +1965 125972 0.5280 +1965 126402 0.8270 +1965 137902 0.4660 +1965 140032 0.8880 +1965 140801 0.6640 +1965 143244 0.5300 +1965 148327 0.4440 +1965 164832 0.4330 +1965 167227 0.4110 +1965 168400 0.5630 +1965 200916 0.5450 +1965 253314 0.4870 +1965 255308 0.9760 +1965 285855 0.4260 +1965 317649 0.5550 +1965 347487 0.8060 +1965 440275 0.9990 +1965 641776 0.5550 +1965 643909 0.5550 +1965 728524 0.5550 +1965 728689 0.9640 +1965 100287482 0.5760 +1965 100529097 0.6570 +1965 100529239 0.9650 +1965 100996746 0.5550 +1965 105180390 0.5550 +1965 105180391 0.5550 +1965 114483834 0.4790 +1967 1968 0.9990 +1967 1973 0.6190 +1967 1978 0.4340 +1967 1983 0.6870 +1967 2107 0.4130 +1967 2639 0.4230 +1967 2994 0.4220 +1967 3145 0.4350 +1967 3558 0.4440 +1967 3692 0.5300 +1967 5025 0.6230 +1967 5682 0.4130 +1967 5704 0.4510 +1967 5877 0.7610 +1967 6194 0.4830 +1967 6202 0.4940 +1967 6229 0.4340 +1967 6944 0.4510 +1967 7458 0.4660 +1967 7965 0.4220 +1967 8218 0.4220 +1967 8562 0.4130 +1967 8661 0.5320 +1967 8662 0.4340 +1967 8664 0.5100 +1967 8666 0.5460 +1967 8668 0.5580 +1967 8890 0.9990 +1967 8891 0.9990 +1967 8892 0.9990 +1967 8893 0.9990 +1967 8894 0.9990 +1967 9045 0.4700 +1967 9391 0.4310 +1967 9669 0.4420 +1967 9698 0.4570 +1967 9798 0.5270 +1967 9801 0.6760 +1967 10199 0.4080 +1967 10209 0.5900 +1967 10289 0.4840 +1967 10490 0.4710 +1967 10526 0.4420 +1967 10775 0.6630 +1967 10969 0.5260 +1967 10985 0.4560 +1967 10987 0.4100 +1967 22794 0.4080 +1967 23632 0.5020 +1967 23673 0.4260 +1967 27102 0.6990 +1967 28969 0.5020 +1967 29925 0.5560 +1967 29926 0.5540 +1967 51013 0.4910 +1967 51031 0.5740 +1967 51605 0.5290 +1967 54840 0.7730 +1967 54948 0.4400 +1967 55157 0.4300 +1967 55703 0.4760 +1967 57505 0.4940 +1967 57696 0.4360 +1967 60678 0.5750 +1967 64080 0.4750 +1967 79902 0.4330 +1967 80349 0.6510 +1967 81607 0.6970 +1967 93973 0.5310 +1967 154141 0.4440 +1967 255308 0.8820 +1967 343035 0.7280 +1967 440275 0.8040 +1968 1973 0.9770 +1968 1974 0.8000 +1968 1975 0.9010 +1968 1977 0.8220 +1968 1981 0.9520 +1968 1982 0.5730 +1968 1983 0.9950 +1968 1984 0.5720 +1968 2058 0.6200 +1968 2107 0.7790 +1968 2197 0.9970 +1968 2206 0.4080 +1968 2549 0.4510 +1968 2617 0.4360 +1968 2639 0.4500 +1968 2887 0.5050 +1968 2935 0.5350 +1968 3035 0.5060 +1968 3151 0.4320 +1968 3178 0.4800 +1968 3181 0.4250 +1968 3183 0.4480 +1968 3308 0.6810 +1968 3312 0.4490 +1968 3313 0.4680 +1968 3320 0.5830 +1968 3376 0.4130 +1968 3560 0.4040 +1968 3615 0.5510 +1968 3646 0.9920 +1968 3692 0.7600 +1968 3735 0.5230 +1968 3837 0.5210 +1968 3921 0.9900 +1968 4141 0.7080 +1968 4528 0.6080 +1968 4598 0.4140 +1968 4733 0.5030 +1968 4736 0.7430 +1968 4809 0.6230 +1968 4831 0.4710 +1968 4899 0.4330 +1968 5034 0.4080 +1968 5036 0.6830 +1968 5093 0.4180 +1968 5204 0.4290 +1968 5434 0.5560 +1968 5464 0.5020 +1968 5501 0.5540 +1968 5610 0.7630 +1968 5682 0.4650 +1968 5683 0.5200 +1968 5684 0.6570 +1968 5685 0.5200 +1968 5686 0.6620 +1968 5687 0.5560 +1968 5688 0.5910 +1968 5705 0.4090 +1968 5707 0.5340 +1968 5708 0.6670 +1968 5710 0.4890 +1968 5713 0.4520 +1968 5717 0.5270 +1968 5718 0.4290 +1968 5859 0.4100 +1968 5877 0.5570 +1968 5901 0.5110 +1968 6059 0.9640 +1968 6122 0.8980 +1968 6123 0.7430 +1968 6124 0.9320 +1968 6125 0.8610 +1968 6128 0.8300 +1968 6129 0.8640 +1968 6130 0.8740 +1968 6132 0.8790 +1968 6133 0.8590 +1968 6135 0.8590 +1968 6136 0.8270 +1968 6137 0.8010 +1968 6138 0.7820 +1968 6139 0.7990 +1968 6141 0.8000 +1968 6142 0.7800 +1968 6143 0.7310 +1968 6144 0.7600 +1968 6146 0.7040 +1968 6147 0.8200 +1968 6152 0.6830 +1968 6154 0.8200 +1968 6155 0.8900 +1968 6156 0.7820 +1968 6157 0.8420 +1968 6158 0.8160 +1968 6159 0.6370 +1968 6160 0.8130 +1968 6161 0.6770 +1968 6164 0.8000 +1968 6165 0.7430 +1968 6166 0.6280 +1968 6167 0.5380 +1968 6168 0.6220 +1968 6169 0.6400 +1968 6170 0.7610 +1968 6171 0.7100 +1968 6173 0.6670 +1968 6175 0.8350 +1968 6176 0.6790 +1968 6181 0.7510 +1968 6183 0.6610 +1968 6187 0.9950 +1968 6188 0.9950 +1968 6189 0.9920 +1968 6191 0.9930 +1968 6192 0.8790 +1968 6193 0.9790 +1968 6194 0.9920 +1968 6201 0.9880 +1968 6202 0.9940 +1968 6203 0.9860 +1968 6204 0.9650 +1968 6205 0.9900 +1968 6206 0.9840 +1968 6207 0.9850 +1968 6208 0.9760 +1968 6209 0.9850 +1968 6210 0.9680 +1968 6217 0.9920 +1968 6218 0.9810 +1968 6222 0.9860 +1968 6223 0.9890 +1968 6224 0.9950 +1968 6227 0.9860 +1968 6228 0.9920 +1968 6229 0.9910 +1968 6230 0.9870 +1968 6231 0.9910 +1968 6232 0.9690 +1968 6233 0.9830 +1968 6234 0.9900 +1968 6235 0.9680 +1968 6414 0.8110 +1968 6434 0.4110 +1968 6472 0.4790 +1968 6499 0.4190 +1968 6729 0.5100 +1968 6839 0.8520 +1968 6950 0.7560 +1968 7130 0.4220 +1968 7203 0.6150 +1968 7311 0.6030 +1968 7317 0.6950 +1968 7336 0.4620 +1968 7403 0.6770 +1968 7404 0.7280 +1968 7407 0.4560 +1968 7411 0.4840 +1968 7458 0.8750 +1968 7543 0.6940 +1968 8226 0.6360 +1968 8228 0.5260 +1968 8239 0.6770 +1968 8242 0.6680 +1968 8260 0.4450 +1968 8284 0.7610 +1968 8287 0.5380 +1968 8562 0.6510 +1968 8565 0.4770 +1968 8607 0.5050 +1968 8653 0.4770 +1968 8661 0.9950 +1968 8662 0.9980 +1968 8663 0.9940 +1968 8664 0.9890 +1968 8665 0.9780 +1968 8666 0.9970 +1968 8667 0.9690 +1968 8668 0.9950 +1968 8669 0.9710 +1968 8672 0.4490 +1968 8856 0.4180 +1968 8872 0.9610 +1968 8890 0.9980 +1968 8891 0.9990 +1968 8892 0.9990 +1968 8893 0.9990 +1968 8894 0.9990 +1968 9045 0.8350 +1968 9060 0.4640 +1968 9061 0.4640 +1968 9086 0.7870 +1968 9255 0.5850 +1968 9282 0.4700 +1968 9343 0.4160 +1968 9349 0.8030 +1968 9451 0.6690 +1968 9553 0.4100 +1968 9567 0.4330 +1968 9669 0.9190 +1968 9732 0.5190 +1968 9775 0.4690 +1968 9801 0.4180 +1968 9858 0.5370 +1968 10056 0.6890 +1968 10209 0.9910 +1968 10213 0.5620 +1968 10236 0.5750 +1968 10289 0.7190 +1968 10332 0.4290 +1968 10399 0.9750 +1968 10471 0.4250 +1968 10480 0.9850 +1968 10488 0.4670 +1968 10492 0.6100 +1968 10528 0.5290 +1968 10557 0.5260 +1968 10574 0.7300 +1968 10575 0.7450 +1968 10576 0.7120 +1968 10643 0.4370 +1968 10694 0.7830 +1968 10726 0.4430 +1968 10767 0.4010 +1968 10788 0.4790 +1968 10813 0.4560 +1968 10985 0.7200 +1968 10988 0.4490 +1968 11163 0.4540 +1968 11222 0.5170 +1968 11224 0.8090 +1968 22809 0.5570 +1968 22913 0.4830 +1968 22948 0.7320 +1968 23204 0.4600 +1968 23435 0.5110 +1968 23521 0.8230 +1968 23560 0.6850 +1968 23640 0.4120 +1968 23645 0.6230 +1968 23708 0.4480 +1968 25827 0.4970 +1968 25873 0.6840 +1968 25885 0.4520 +1968 25914 0.4260 +1968 25975 0.4020 +1968 26166 0.4790 +1968 26986 0.6960 +1968 27102 0.8060 +1968 27316 0.4530 +1968 27335 0.9720 +1968 29789 0.5020 +1968 29925 0.4070 +1968 29926 0.4070 +1968 51021 0.4430 +1968 51065 0.8260 +1968 51069 0.6190 +1968 51073 0.6200 +1968 51081 0.6230 +1968 51116 0.5650 +1968 51121 0.7960 +1968 51124 0.4180 +1968 51149 0.6880 +1968 51264 0.4420 +1968 51319 0.7000 +1968 51386 0.9780 +1968 54433 0.4610 +1968 54477 0.4300 +1968 54496 0.4800 +1968 54505 0.4410 +1968 54960 0.5020 +1968 55052 0.4930 +1968 55173 0.6650 +1968 55272 0.6240 +1968 55316 0.5890 +1968 55601 0.4520 +1968 55651 0.5510 +1968 55787 0.4080 +1968 55841 0.4270 +1968 55860 0.4270 +1968 56474 0.6000 +1968 57412 0.4790 +1968 57470 0.5340 +1968 63875 0.4670 +1968 63931 0.5270 +1968 64374 0.4030 +1968 64960 0.6150 +1968 64963 0.5540 +1968 64965 0.4150 +1968 64968 0.4150 +1968 64969 0.7040 +1968 64983 0.4170 +1968 65005 0.4580 +1968 79723 0.9050 +1968 80311 0.4110 +1968 80315 0.5330 +1968 83939 0.9400 +1968 84172 0.5380 +1968 84919 0.6290 +1968 84961 0.4970 +1968 85377 0.5230 +1968 92935 0.4650 +1968 93974 0.5840 +1968 94056 0.5010 +1968 114987 0.5610 +1968 116832 0.5890 +1968 126402 0.6150 +1968 140032 0.7900 +1968 140801 0.7320 +1968 143244 0.4290 +1968 148327 0.5110 +1968 159013 0.4870 +1968 170082 0.4470 +1968 200916 0.5390 +1968 219927 0.5450 +1968 253314 0.4340 +1968 255308 0.5450 +1968 257019 0.4690 +1968 285855 0.4010 +1968 286151 0.4790 +1968 347487 0.6740 +1968 347688 0.5100 +1968 440275 0.8530 +1968 641776 0.4340 +1968 643909 0.4340 +1968 728524 0.4340 +1968 728689 0.9470 +1968 100287482 0.5370 +1968 100529239 0.9190 +1968 100996746 0.4340 +1968 105180390 0.4340 +1968 105180391 0.4340 +1968 114483834 0.4070 +1969 2041 0.9760 +1969 2042 0.5460 +1969 2043 0.8080 +1969 2044 0.7130 +1969 2045 0.8230 +1969 2046 0.5120 +1969 2047 0.7120 +1969 2048 0.8510 +1969 2049 0.7100 +1969 2050 0.8080 +1969 2051 0.7250 +1969 2056 0.5890 +1969 2060 0.4150 +1969 2064 0.8340 +1969 2069 0.7130 +1969 2246 0.7040 +1969 2247 0.7730 +1969 2248 0.7200 +1969 2249 0.7270 +1969 2250 0.7210 +1969 2251 0.7180 +1969 2252 0.7330 +1969 2253 0.7190 +1969 2254 0.7310 +1969 2255 0.7300 +1969 2263 0.5590 +1969 2264 0.4110 +1969 2268 0.4130 +1969 2277 0.7080 +1969 2323 0.6730 +1969 2335 0.4810 +1969 2352 0.4230 +1969 2597 0.4090 +1969 2700 0.5280 +1969 2703 0.5750 +1969 2819 0.7670 +1969 2885 0.9170 +1969 2896 0.5880 +1969 3065 0.4910 +1969 3071 0.4320 +1969 3082 0.7980 +1969 3091 0.4950 +1969 3265 0.4880 +1969 3299 0.4630 +1969 3315 0.4910 +1969 3320 0.6330 +1969 3326 0.6090 +1969 3479 0.7310 +1969 3480 0.5430 +1969 3481 0.7040 +1969 3482 0.4530 +1969 3598 0.8010 +1969 3611 0.4490 +1969 3630 0.7340 +1969 3636 0.9980 +1969 3667 0.7260 +1969 3675 0.7030 +1969 3678 0.5300 +1969 3685 0.6410 +1969 3688 0.8190 +1969 3690 0.5440 +1969 3691 0.5540 +1969 3693 0.6720 +1969 3725 0.5550 +1969 3845 0.5880 +1969 3918 0.4590 +1969 3937 0.4200 +1969 3982 0.4290 +1969 4067 0.7750 +1969 4070 0.5070 +1969 4091 0.4570 +1969 4162 0.5300 +1969 4233 0.4290 +1969 4254 0.7080 +1969 4313 0.4080 +1969 4319 0.7020 +1969 4323 0.4290 +1969 4609 0.4880 +1969 4690 0.4800 +1969 4691 0.4640 +1969 4763 0.5180 +1969 4803 0.7140 +1969 4810 0.4810 +1969 4893 0.4980 +1969 4897 0.4180 +1969 4908 0.6750 +1969 4909 0.6710 +1969 4978 0.4300 +1969 5054 0.5700 +1969 5058 0.4410 +1969 5062 0.4400 +1969 5063 0.4280 +1969 5154 0.7100 +1969 5155 0.7100 +1969 5156 0.4460 +1969 5228 0.7040 +1969 5290 0.6260 +1969 5295 0.7330 +1969 5296 0.5780 +1969 5309 0.5800 +1969 5330 0.6540 +1969 5331 0.6930 +1969 5332 0.6500 +1969 5338 0.4250 +1969 5606 0.4800 +1969 5728 0.6480 +1969 5747 0.6910 +1969 5770 0.4870 +1969 5781 0.8770 +1969 5829 0.4210 +1969 5879 0.6520 +1969 5880 0.6350 +1969 5881 0.6220 +1969 5921 0.9270 +1969 6093 0.4830 +1969 6382 0.5180 +1969 6461 0.4240 +1969 6464 0.9070 +1969 6490 0.5540 +1969 6503 0.6680 +1969 6714 0.6600 +1969 6774 0.4990 +1969 6850 0.4020 +1969 6907 0.4270 +1969 7037 0.7240 +1969 7039 0.7300 +1969 7040 0.4090 +1969 7045 0.5560 +1969 7052 0.4470 +1969 7112 0.4360 +1969 7157 0.5390 +1969 7251 0.4400 +1969 7410 0.5650 +1969 7423 0.7360 +1969 7424 0.7550 +1969 7466 0.4330 +1969 7791 0.4530 +1969 7879 0.4420 +1969 8038 0.5260 +1969 8061 0.5050 +1969 8074 0.6580 +1969 8153 0.5920 +1969 8419 0.6000 +1969 8503 0.5510 +1969 8692 0.4610 +1969 8777 0.4370 +1969 8817 0.7200 +1969 8822 0.7190 +1969 8823 0.7270 +1969 8826 0.4320 +1969 8976 0.5180 +1969 9076 0.7040 +1969 9080 0.4480 +1969 9341 0.4240 +1969 9353 0.4010 +1969 9518 0.5370 +1969 9564 0.6690 +1969 9710 0.4210 +1969 9815 0.4030 +1969 9965 0.6690 +1969 10006 0.6490 +1969 10152 0.4760 +1969 10163 0.4520 +1969 10232 0.4110 +1969 10298 0.4910 +1969 10413 0.4180 +1969 10451 0.5650 +1969 10787 0.4580 +1969 10788 0.4060 +1969 11135 0.5050 +1969 11183 0.4140 +1969 23075 0.4160 +1969 23118 0.4320 +1969 23191 0.5540 +1969 23236 0.6650 +1969 23424 0.4290 +1969 23580 0.4200 +1969 23657 0.6430 +1969 25759 0.6810 +1969 25791 0.9370 +1969 25894 0.4410 +1969 26030 0.4010 +1969 26050 0.4410 +1969 26281 0.7280 +1969 26291 0.6540 +1969 27006 0.7250 +1969 27122 0.5140 +1969 27237 0.7930 +1969 27289 0.6370 +1969 28964 0.6240 +1969 29126 0.4100 +1969 29881 0.5600 +1969 51378 0.6920 +1969 53358 0.6800 +1969 55004 0.4230 +1969 55789 0.4130 +1969 55845 0.4010 +1969 55914 0.5660 +1969 55971 0.4830 +1969 56034 0.7430 +1969 56899 0.4890 +1969 58480 0.6110 +1969 64065 0.4640 +1969 64759 0.4730 +1969 64866 0.7050 +1969 79443 0.4540 +1969 80036 0.4130 +1969 80310 0.7050 +1969 80321 0.4040 +1969 81624 0.4790 +1969 81839 0.5470 +1969 84708 0.4020 +1969 116496 0.4180 +1969 143098 0.4440 +1969 171177 0.6330 +1969 283953 0.4630 +1969 284656 0.4540 +1969 285220 0.8520 +1969 390243 0.4440 +1969 399694 0.6800 +1969 100506658 0.4910 +1973 1974 0.9940 +1973 1975 0.9990 +1973 1977 0.9990 +1973 1978 0.9280 +1973 1979 0.5400 +1973 1981 0.9990 +1973 1982 0.9990 +1973 1983 0.9930 +1973 1984 0.7410 +1973 1994 0.7340 +1973 1996 0.6930 +1973 2023 0.5880 +1973 2034 0.4060 +1973 2058 0.5830 +1973 2091 0.5800 +1973 2107 0.7760 +1973 2178 0.4210 +1973 2197 0.8510 +1973 2280 0.4460 +1973 2316 0.4810 +1973 2323 0.4590 +1973 2332 0.7310 +1973 2475 0.6100 +1973 2521 0.6740 +1973 2597 0.6890 +1973 2618 0.4720 +1973 2733 0.8050 +1973 2737 0.6260 +1973 2935 0.4950 +1973 2963 0.4180 +1973 3014 0.4260 +1973 3093 0.4080 +1973 3178 0.8180 +1973 3181 0.6410 +1973 3182 0.5440 +1973 3183 0.5700 +1973 3184 0.6630 +1973 3187 0.5780 +1973 3190 0.6300 +1973 3191 0.4610 +1973 3192 0.5150 +1973 3276 0.6250 +1973 3308 0.5880 +1973 3309 0.4530 +1973 3310 0.4520 +1973 3312 0.8020 +1973 3313 0.7070 +1973 3315 0.5000 +1973 3316 0.4820 +1973 3320 0.6190 +1973 3326 0.6940 +1973 3608 0.5370 +1973 3615 0.4180 +1973 3646 0.9860 +1973 3692 0.8430 +1973 3725 0.4210 +1973 3837 0.6270 +1973 3921 0.9780 +1973 4076 0.7600 +1973 4116 0.9210 +1973 4141 0.6720 +1973 4144 0.4280 +1973 4609 0.6260 +1973 4666 0.4230 +1973 4686 0.8690 +1973 4691 0.7090 +1973 4736 0.7840 +1973 4801 0.5060 +1973 4831 0.5070 +1973 4848 0.6370 +1973 4849 0.6240 +1973 4850 0.6490 +1973 4869 0.6690 +1973 4904 0.7380 +1973 4953 0.4100 +1973 5036 0.5950 +1973 5042 0.7990 +1973 5073 0.5970 +1973 5093 0.5510 +1973 5094 0.6520 +1973 5203 0.4190 +1973 5216 0.5560 +1973 5245 0.4930 +1973 5250 0.5900 +1973 5317 0.8190 +1973 5464 0.4800 +1973 5478 0.5620 +1973 5515 0.4290 +1973 5518 0.6860 +1973 5521 0.4130 +1973 5610 0.4880 +1973 5684 0.4540 +1973 5686 0.4190 +1973 5688 0.4960 +1973 5695 0.4350 +1973 5704 0.4320 +1973 5708 0.4650 +1973 5725 0.5090 +1973 5813 0.4590 +1973 5877 0.4300 +1973 5888 0.4590 +1973 5901 0.5890 +1973 5936 0.7160 +1973 5976 0.8600 +1973 6009 0.4110 +1973 6059 0.6690 +1973 6122 0.7560 +1973 6123 0.5110 +1973 6124 0.8770 +1973 6125 0.8530 +1973 6128 0.8140 +1973 6129 0.8580 +1973 6130 0.7640 +1973 6132 0.7080 +1973 6133 0.8050 +1973 6135 0.7800 +1973 6136 0.6410 +1973 6137 0.7930 +1973 6138 0.7040 +1973 6139 0.6230 +1973 6141 0.7730 +1973 6142 0.6860 +1973 6143 0.8270 +1973 6144 0.6480 +1973 6146 0.4280 +1973 6147 0.6070 +1973 6154 0.7750 +1973 6155 0.6550 +1973 6156 0.6720 +1973 6157 0.6700 +1973 6158 0.6570 +1973 6159 0.4580 +1973 6160 0.6690 +1973 6161 0.5040 +1973 6164 0.5980 +1973 6165 0.6550 +1973 6166 0.4410 +1973 6169 0.4440 +1973 6173 0.4240 +1973 6175 0.8270 +1973 6176 0.7010 +1973 6181 0.6690 +1973 6187 0.9520 +1973 6188 0.9810 +1973 6189 0.9680 +1973 6191 0.9400 +1973 6193 0.9330 +1973 6194 0.9760 +1973 6198 0.8090 +1973 6199 0.5580 +1973 6201 0.9080 +1973 6202 0.9630 +1973 6203 0.9380 +1973 6204 0.9000 +1973 6205 0.9530 +1973 6206 0.9210 +1973 6207 0.9690 +1973 6208 0.9160 +1973 6209 0.9290 +1973 6210 0.9160 +1973 6217 0.9390 +1973 6218 0.8890 +1973 6222 0.9230 +1973 6223 0.9150 +1973 6224 0.9540 +1973 6227 0.8610 +1973 6228 0.9210 +1973 6229 0.9500 +1973 6230 0.9180 +1973 6231 0.9430 +1973 6232 0.8810 +1973 6233 0.8860 +1973 6234 0.9270 +1973 6235 0.8610 +1973 6311 0.6670 +1973 6426 0.6440 +1973 6428 0.5340 +1973 6499 0.4900 +1973 6613 0.4800 +1973 6637 0.4090 +1973 6657 0.5930 +1973 6726 0.5780 +1973 6741 0.4730 +1973 6780 0.4710 +1973 6897 0.5490 +1973 6950 0.5850 +1973 7072 0.8180 +1973 7073 0.8120 +1973 7124 0.5110 +1973 7178 0.8180 +1973 7203 0.5620 +1973 7248 0.4190 +1973 7249 0.4730 +1973 7347 0.4460 +1973 7415 0.4570 +1973 7430 0.4600 +1973 7458 0.9990 +1973 7514 0.4530 +1973 7520 0.4820 +1973 7538 0.5840 +1973 7812 0.4230 +1973 7916 0.5910 +1973 8087 0.7190 +1973 8106 0.4630 +1973 8260 0.4020 +1973 8270 0.5600 +1973 8449 0.5240 +1973 8531 0.4060 +1973 8569 0.9270 +1973 8637 0.9580 +1973 8653 0.4280 +1973 8661 0.9890 +1973 8662 0.9980 +1973 8663 0.9920 +1973 8664 0.9920 +1973 8665 0.9660 +1973 8666 0.9940 +1973 8667 0.9770 +1973 8668 0.9970 +1973 8669 0.9310 +1973 8672 0.9990 +1973 8761 0.8330 +1973 8805 0.4600 +1973 8890 0.4400 +1973 8891 0.4380 +1973 8893 0.4140 +1973 8894 0.9740 +1973 8945 0.5440 +1973 8988 0.4730 +1973 9040 0.4030 +1973 9045 0.7130 +1973 9052 0.5130 +1973 9086 0.6590 +1973 9125 0.6970 +1973 9221 0.4840 +1973 9337 0.5350 +1973 9343 0.4590 +1973 9349 0.6540 +1973 9470 0.9790 +1973 9513 0.7050 +1973 9526 0.4440 +1973 9669 0.9440 +1973 9732 0.4380 +1973 9775 0.9790 +1973 9782 0.4180 +1973 9785 0.4740 +1973 9908 0.6690 +1973 9924 0.5280 +1973 9939 0.8310 +1973 9987 0.4860 +1973 10131 0.4550 +1973 10146 0.9330 +1973 10155 0.4510 +1973 10189 0.7050 +1973 10197 0.4680 +1973 10209 0.9980 +1973 10236 0.4730 +1973 10289 0.4540 +1973 10376 0.5260 +1973 10399 0.9850 +1973 10412 0.4090 +1973 10419 0.4560 +1973 10480 0.9870 +1973 10482 0.4440 +1973 10492 0.7730 +1973 10521 0.5350 +1973 10528 0.4480 +1973 10574 0.5390 +1973 10575 0.5360 +1973 10576 0.6090 +1973 10594 0.4240 +1973 10605 0.9960 +1973 10642 0.4590 +1973 10657 0.4710 +1973 10659 0.4620 +1973 10694 0.5500 +1973 10914 0.4010 +1973 10949 0.4120 +1973 10969 0.4210 +1973 10985 0.4920 +1973 11060 0.5390 +1973 11171 0.5350 +1973 11222 0.4230 +1973 11224 0.5350 +1973 11338 0.4480 +1973 22794 0.6590 +1973 22916 0.6530 +1973 22919 0.5590 +1973 22948 0.5480 +1973 23019 0.6950 +1973 23020 0.4990 +1973 23076 0.4930 +1973 23189 0.9000 +1973 23246 0.4440 +1973 23318 0.4660 +1973 23367 0.5390 +1973 23405 0.4370 +1973 23435 0.7170 +1973 23450 0.4070 +1973 23451 0.4360 +1973 23476 0.5680 +1973 23481 0.4260 +1973 23521 0.8610 +1973 23560 0.5600 +1973 23586 0.4800 +1973 23644 0.4400 +1973 25804 0.4050 +1973 25873 0.5060 +1973 25904 0.4380 +1973 25914 0.4380 +1973 25983 0.6790 +1973 25998 0.7920 +1973 26019 0.8690 +1973 26065 0.5690 +1973 26155 0.4270 +1973 26156 0.5330 +1973 26523 0.6550 +1973 26986 0.9990 +1973 27102 0.5450 +1973 27161 0.4540 +1973 27250 0.9990 +1973 27257 0.6300 +1973 27327 0.4180 +1973 27335 0.9010 +1973 28998 0.4080 +1973 29789 0.4560 +1973 29883 0.6050 +1973 29904 0.5850 +1973 29927 0.4100 +1973 51008 0.4380 +1973 51068 0.5150 +1973 51121 0.5170 +1973 51247 0.4700 +1973 51386 0.9170 +1973 51388 0.4400 +1973 51602 0.5430 +1973 51690 0.4010 +1973 54464 0.7000 +1973 54505 0.9090 +1973 54514 0.4530 +1973 54517 0.4180 +1973 55110 0.9330 +1973 55324 0.4110 +1973 55355 0.4170 +1973 55571 0.4700 +1973 55759 0.4170 +1973 55802 0.4820 +1973 56478 0.6550 +1973 56648 0.6820 +1973 56829 0.7220 +1973 57136 0.4900 +1973 57409 0.5320 +1973 57472 0.5370 +1973 57521 0.6960 +1973 63967 0.4420 +1973 64223 0.4190 +1973 64318 0.4320 +1973 64434 0.6940 +1973 64506 0.4270 +1973 65018 0.5160 +1973 65109 0.7710 +1973 65110 0.6300 +1973 79084 0.4400 +1973 79670 0.4610 +1973 79727 0.5420 +1973 80153 0.5960 +1973 80336 0.7920 +1973 83939 0.4410 +1973 84271 0.5610 +1973 84790 0.4050 +1973 85456 0.5010 +1973 87178 0.6360 +1973 92935 0.4890 +1973 93974 0.4500 +1973 114987 0.5250 +1973 117157 0.7770 +1973 132430 0.7920 +1973 140801 0.4230 +1973 140886 0.7280 +1973 143244 0.6530 +1973 167227 0.6390 +1973 170506 0.5520 +1973 219988 0.5360 +1973 246175 0.5210 +1973 253314 0.7620 +1973 255967 0.4310 +1973 285855 0.7030 +1973 317649 0.9500 +1973 340529 0.7270 +1973 345630 0.4170 +1973 347487 0.4340 +1973 387129 0.4560 +1973 440275 0.6900 +1973 728689 0.5600 +1973 100526842 0.4660 +1974 1975 0.9990 +1974 1977 0.9990 +1974 1978 0.9330 +1974 1979 0.6380 +1974 1981 0.9990 +1974 1982 0.9990 +1974 1983 0.9880 +1974 1984 0.6240 +1974 1994 0.6340 +1974 1996 0.6930 +1974 2058 0.5690 +1974 2091 0.6760 +1974 2107 0.6090 +1974 2178 0.4160 +1974 2280 0.4650 +1974 2323 0.4590 +1974 2332 0.7420 +1974 2475 0.6100 +1974 2597 0.6080 +1974 2733 0.7250 +1974 2737 0.6280 +1974 3069 0.4880 +1974 3178 0.5600 +1974 3181 0.4220 +1974 3183 0.4740 +1974 3184 0.6410 +1974 3190 0.4670 +1974 3308 0.4640 +1974 3312 0.4970 +1974 3313 0.4260 +1974 3315 0.4640 +1974 3320 0.5070 +1974 3326 0.4710 +1974 3646 0.8860 +1974 3692 0.7720 +1974 3921 0.7570 +1974 4076 0.6870 +1974 4116 0.8800 +1974 4141 0.6230 +1974 4609 0.4820 +1974 4666 0.4210 +1974 4686 0.7700 +1974 4691 0.6290 +1974 4736 0.7100 +1974 4738 0.4870 +1974 4848 0.6590 +1974 4849 0.5650 +1974 4850 0.6640 +1974 4869 0.4060 +1974 4904 0.6290 +1974 5042 0.8000 +1974 5073 0.5810 +1974 5093 0.4590 +1974 5094 0.5310 +1974 5203 0.4190 +1974 5464 0.4410 +1974 5478 0.5310 +1974 5610 0.4400 +1974 5691 0.4250 +1974 5694 0.4450 +1974 5813 0.4180 +1974 5888 0.4350 +1974 5901 0.4340 +1974 5936 0.4290 +1974 5976 0.5920 +1974 6009 0.4140 +1974 6059 0.5480 +1974 6122 0.6030 +1974 6123 0.5200 +1974 6124 0.6040 +1974 6125 0.7490 +1974 6128 0.5000 +1974 6129 0.7560 +1974 6130 0.5950 +1974 6133 0.6870 +1974 6135 0.5390 +1974 6136 0.4280 +1974 6137 0.5690 +1974 6138 0.5520 +1974 6139 0.5150 +1974 6141 0.5940 +1974 6142 0.5190 +1974 6143 0.6690 +1974 6144 0.5430 +1974 6147 0.5200 +1974 6154 0.6140 +1974 6156 0.4440 +1974 6160 0.4060 +1974 6161 0.4050 +1974 6165 0.4480 +1974 6169 0.4260 +1974 6175 0.6910 +1974 6176 0.6450 +1974 6181 0.4570 +1974 6187 0.5660 +1974 6188 0.8490 +1974 6189 0.7670 +1974 6193 0.5790 +1974 6194 0.8500 +1974 6198 0.8100 +1974 6199 0.5540 +1974 6201 0.4290 +1974 6202 0.6710 +1974 6203 0.5410 +1974 6205 0.5170 +1974 6207 0.7650 +1974 6208 0.4560 +1974 6209 0.5770 +1974 6217 0.5340 +1974 6218 0.4320 +1974 6222 0.5220 +1974 6223 0.4260 +1974 6224 0.5860 +1974 6228 0.5200 +1974 6229 0.4140 +1974 6230 0.5070 +1974 6231 0.4920 +1974 6233 0.4120 +1974 6234 0.4750 +1974 6311 0.4800 +1974 6389 0.4170 +1974 6426 0.4750 +1974 6428 0.4670 +1974 6430 0.4120 +1974 6499 0.5140 +1974 6613 0.4690 +1974 6726 0.6010 +1974 7072 0.8040 +1974 7073 0.7470 +1974 7124 0.4970 +1974 7178 0.7340 +1974 7248 0.4190 +1974 7249 0.4590 +1974 7316 0.4110 +1974 7415 0.4200 +1974 7458 0.9970 +1974 7514 0.4370 +1974 7534 0.4150 +1974 7538 0.5850 +1974 7555 0.4850 +1974 7812 0.4390 +1974 8087 0.7450 +1974 8270 0.4930 +1974 8449 0.5210 +1974 8569 0.9280 +1974 8637 0.8880 +1974 8653 0.4300 +1974 8661 0.8560 +1974 8662 0.9590 +1974 8663 0.9280 +1974 8664 0.8120 +1974 8665 0.8380 +1974 8666 0.9290 +1974 8667 0.8050 +1974 8668 0.9310 +1974 8669 0.6610 +1974 8672 0.9990 +1974 8761 0.8200 +1974 8805 0.4390 +1974 8886 0.5400 +1974 8891 0.4230 +1974 8893 0.4370 +1974 8894 0.8420 +1974 8945 0.5700 +1974 9045 0.4920 +1974 9086 0.6660 +1974 9125 0.6890 +1974 9337 0.5580 +1974 9349 0.5550 +1974 9470 0.9410 +1974 9513 0.6740 +1974 9669 0.9370 +1974 9698 0.4190 +1974 9732 0.4380 +1974 9775 0.9590 +1974 9785 0.4820 +1974 9908 0.5020 +1974 9924 0.5330 +1974 9939 0.8340 +1974 9987 0.5590 +1974 10049 0.4500 +1974 10146 0.8380 +1974 10155 0.4030 +1974 10189 0.6310 +1974 10209 0.9870 +1974 10289 0.4220 +1974 10399 0.8350 +1974 10412 0.4150 +1974 10480 0.8190 +1974 10492 0.5860 +1974 10605 0.9950 +1974 10642 0.4420 +1974 10659 0.4610 +1974 10776 0.4050 +1974 10914 0.4230 +1974 10985 0.4530 +1974 11171 0.4110 +1974 11222 0.4220 +1974 22794 0.5790 +1974 22916 0.5510 +1974 23019 0.8330 +1974 23020 0.4480 +1974 23049 0.4340 +1974 23246 0.4260 +1974 23318 0.4910 +1974 23367 0.4990 +1974 23405 0.4530 +1974 23435 0.4220 +1974 23451 0.6060 +1974 23521 0.8200 +1974 23560 0.4890 +1974 23644 0.4160 +1974 25873 0.4250 +1974 25904 0.4080 +1974 25983 0.6750 +1974 26019 0.6830 +1974 26065 0.5940 +1974 26155 0.4130 +1974 26156 0.4180 +1974 26523 0.6650 +1974 26986 0.9990 +1974 27102 0.5420 +1974 27161 0.4550 +1974 27250 0.9990 +1974 27257 0.6170 +1974 27327 0.4460 +1974 27335 0.7420 +1974 28998 0.4030 +1974 29777 0.4080 +1974 29883 0.6020 +1974 29904 0.5860 +1974 51068 0.5230 +1974 51121 0.5330 +1974 51187 0.4580 +1974 51194 0.4740 +1974 51247 0.5060 +1974 51386 0.7620 +1974 51602 0.5480 +1974 54464 0.6960 +1974 54505 0.9110 +1974 54514 0.4550 +1974 54517 0.4170 +1974 54663 0.4060 +1974 55110 0.8910 +1974 55299 0.4050 +1974 55571 0.4620 +1974 55802 0.4700 +1974 56257 0.4800 +1974 56478 0.6970 +1974 56648 0.5760 +1974 56829 0.6070 +1974 57136 0.4910 +1974 57472 0.5630 +1974 57521 0.6990 +1974 63967 0.4220 +1974 64223 0.4150 +1974 64318 0.4360 +1974 64434 0.7290 +1974 64506 0.4270 +1974 65018 0.6270 +1974 79670 0.4590 +1974 79727 0.5360 +1974 80153 0.5770 +1974 80336 0.7930 +1974 83939 0.4340 +1974 84271 0.5460 +1974 85456 0.4710 +1974 87178 0.5650 +1974 92935 0.4870 +1974 93974 0.4690 +1974 114987 0.5250 +1974 117157 0.6620 +1974 120379 0.4300 +1974 132430 0.7920 +1974 140886 0.7270 +1974 143244 0.6330 +1974 167227 0.6510 +1974 170506 0.5670 +1974 219988 0.5160 +1974 246175 0.5140 +1974 253314 0.7630 +1974 255967 0.4410 +1974 285855 0.6990 +1974 317649 0.7610 +1974 340529 0.7270 +1974 345630 0.4160 +1974 347487 0.4340 +1974 387129 0.4560 +1974 440275 0.6900 +1974 728689 0.4860 +1974 100526842 0.4660 +1975 1977 0.9990 +1975 1978 0.7580 +1975 1979 0.6590 +1975 1981 0.9990 +1975 1982 0.9760 +1975 1983 0.9930 +1975 1984 0.4160 +1975 1994 0.5180 +1975 2091 0.4230 +1975 2107 0.4820 +1975 2197 0.5680 +1975 2280 0.4190 +1975 2475 0.7530 +1975 2597 0.4100 +1975 2810 0.7050 +1975 2935 0.6070 +1975 3178 0.4750 +1975 3187 0.4270 +1975 3615 0.5770 +1975 3646 0.8080 +1975 3692 0.6990 +1975 3921 0.5630 +1975 4076 0.4470 +1975 4141 0.4870 +1975 4609 0.4290 +1975 4686 0.8130 +1975 4848 0.4410 +1975 4849 0.4600 +1975 4850 0.4310 +1975 5042 0.4440 +1975 5071 0.6190 +1975 5073 0.4620 +1975 5093 0.4040 +1975 5094 0.5850 +1975 5563 0.4210 +1975 6009 0.6830 +1975 6059 0.4490 +1975 6122 0.5400 +1975 6124 0.6310 +1975 6125 0.5510 +1975 6128 0.4350 +1975 6132 0.4680 +1975 6138 0.5930 +1975 6156 0.5350 +1975 6175 0.4840 +1975 6187 0.6280 +1975 6188 0.7690 +1975 6189 0.5180 +1975 6191 0.6400 +1975 6193 0.7140 +1975 6194 0.9900 +1975 6195 0.6650 +1975 6196 0.4510 +1975 6197 0.4560 +1975 6198 0.9910 +1975 6199 0.9620 +1975 6201 0.5610 +1975 6202 0.7400 +1975 6203 0.6550 +1975 6204 0.5310 +1975 6205 0.6460 +1975 6206 0.5820 +1975 6207 0.6260 +1975 6208 0.5500 +1975 6209 0.6400 +1975 6210 0.4810 +1975 6217 0.6630 +1975 6222 0.5970 +1975 6223 0.5990 +1975 6224 0.6960 +1975 6227 0.5500 +1975 6228 0.6450 +1975 6229 0.5960 +1975 6230 0.7630 +1975 6231 0.6110 +1975 6232 0.4370 +1975 6233 0.5740 +1975 6234 0.6580 +1975 6235 0.5680 +1975 6637 0.4010 +1975 6726 0.5730 +1975 7072 0.4970 +1975 7073 0.6810 +1975 7248 0.5940 +1975 7249 0.5940 +1975 7458 0.9840 +1975 7538 0.5150 +1975 7706 0.4530 +1975 7812 0.5670 +1975 8087 0.4680 +1975 8237 0.8380 +1975 8569 0.4360 +1975 8637 0.8860 +1975 8661 0.8890 +1975 8662 0.9490 +1975 8663 0.8130 +1975 8664 0.6660 +1975 8665 0.8740 +1975 8666 0.8940 +1975 8667 0.8630 +1975 8668 0.7800 +1975 8669 0.6000 +1975 8672 0.8870 +1975 8761 0.5710 +1975 8886 0.5180 +1975 8890 0.5160 +1975 8893 0.5800 +1975 8894 0.8870 +1975 9125 0.4850 +1975 9337 0.4630 +1975 9343 0.4690 +1975 9470 0.6960 +1975 9513 0.4030 +1975 9533 0.4030 +1975 9669 0.8440 +1975 9775 0.8840 +1975 9785 0.4090 +1975 9908 0.5020 +1975 9924 0.4390 +1975 9972 0.4280 +1975 10146 0.7770 +1975 10209 0.9940 +1975 10325 0.6970 +1975 10399 0.7410 +1975 10480 0.8290 +1975 10594 0.4160 +1975 10598 0.4590 +1975 10605 0.9280 +1975 10670 0.5350 +1975 11040 0.4460 +1975 22984 0.4280 +1975 23019 0.5120 +1975 23318 0.4110 +1975 23367 0.6370 +1975 23369 0.4720 +1975 23371 0.4900 +1975 23521 0.8360 +1975 23560 0.4350 +1975 23770 0.5020 +1975 25904 0.4130 +1975 25929 0.6170 +1975 25983 0.5000 +1975 26135 0.6120 +1975 26986 0.9990 +1975 27161 0.4750 +1975 27250 0.7960 +1975 27335 0.6890 +1975 29883 0.5130 +1975 29904 0.7950 +1975 51015 0.4440 +1975 51065 0.4100 +1975 51247 0.4350 +1975 51386 0.8480 +1975 51602 0.4320 +1975 54433 0.4270 +1975 54464 0.4340 +1975 54505 0.8670 +1975 54541 0.5930 +1975 55132 0.4140 +1975 55571 0.4190 +1975 56648 0.4190 +1975 57472 0.4250 +1975 57521 0.8310 +1975 58528 0.6870 +1975 64121 0.5320 +1975 64223 0.6940 +1975 64798 0.4720 +1975 79109 0.4410 +1975 79670 0.4130 +1975 80336 0.4370 +1975 83939 0.4010 +1975 84271 0.7370 +1975 84335 0.5510 +1975 85456 0.4490 +1975 92935 0.5110 +1975 120103 0.4220 +1975 132430 0.4340 +1975 143244 0.4440 +1975 149041 0.5260 +1975 246175 0.4120 +1975 253260 0.6130 +1975 253314 0.7680 +1975 255308 0.6060 +1975 255967 0.4370 +1975 317649 0.7000 +1975 440275 0.4850 +1975 728642 0.5020 +1975 728689 0.6750 +1975 100529239 0.4160 +1977 1978 0.9990 +1977 1979 0.9990 +1977 1981 0.9990 +1977 1982 0.9990 +1977 1983 0.9870 +1977 1984 0.4020 +1977 1993 0.4820 +1977 1994 0.8070 +1977 2000 0.4680 +1977 2018 0.7260 +1977 2019 0.4410 +1977 2064 0.4180 +1977 2079 0.4210 +1977 2091 0.4280 +1977 2099 0.4700 +1977 2107 0.6480 +1977 2146 0.5070 +1977 2280 0.9390 +1977 2308 0.4620 +1977 2309 0.4810 +1977 2332 0.9740 +1977 2335 0.5200 +1977 2339 0.4610 +1977 2475 0.9620 +1977 2597 0.6390 +1977 2733 0.4140 +1977 2737 0.6000 +1977 2872 0.8030 +1977 2932 0.5130 +1977 2935 0.4520 +1977 3066 0.5160 +1977 3091 0.7560 +1977 3093 0.4880 +1977 3178 0.7010 +1977 3181 0.5210 +1977 3183 0.5950 +1977 3184 0.6900 +1977 3190 0.5150 +1977 3308 0.5430 +1977 3312 0.4420 +1977 3315 0.6040 +1977 3316 0.7000 +1977 3320 0.5570 +1977 3326 0.5240 +1977 3434 0.5390 +1977 3479 0.5180 +1977 3480 0.5140 +1977 3485 0.4930 +1977 3630 0.6030 +1977 3646 0.8010 +1977 3667 0.6820 +1977 3688 0.4630 +1977 3692 0.7550 +1977 3725 0.4620 +1977 3845 0.4500 +1977 4076 0.7950 +1977 4116 0.4090 +1977 4137 0.4090 +1977 4170 0.5520 +1977 4193 0.6310 +1977 4343 0.4640 +1977 4609 0.7810 +1977 4686 0.9970 +1977 4691 0.6110 +1977 4736 0.4320 +1977 4790 0.4110 +1977 4792 0.6200 +1977 4848 0.5810 +1977 4849 0.5540 +1977 4850 0.5390 +1977 4869 0.5930 +1977 4904 0.5580 +1977 4927 0.5120 +1977 4928 0.5620 +1977 4953 0.5280 +1977 5042 0.8360 +1977 5073 0.6900 +1977 5093 0.6050 +1977 5094 0.8010 +1977 5133 0.4330 +1977 5170 0.4350 +1977 5203 0.4790 +1977 5289 0.4230 +1977 5290 0.5910 +1977 5316 0.4220 +1977 5371 0.8540 +1977 5394 0.4090 +1977 5515 0.5240 +1977 5578 0.4190 +1977 5594 0.4190 +1977 5595 0.5330 +1977 5604 0.4550 +1977 5610 0.5440 +1977 5684 0.4370 +1977 5687 0.4620 +1977 5725 0.4280 +1977 5728 0.6670 +1977 5813 0.4810 +1977 5868 0.4360 +1977 5877 0.4730 +1977 5894 0.4160 +1977 5902 0.4690 +1977 5903 0.6110 +1977 5921 0.4910 +1977 5936 0.7770 +1977 5976 0.8790 +1977 6009 0.8920 +1977 6059 0.4710 +1977 6125 0.5110 +1977 6128 0.4080 +1977 6129 0.4180 +1977 6135 0.4140 +1977 6147 0.4500 +1977 6154 0.4030 +1977 6169 0.4010 +1977 6188 0.7660 +1977 6194 0.9740 +1977 6195 0.6040 +1977 6196 0.4780 +1977 6197 0.4680 +1977 6198 0.9850 +1977 6199 0.9050 +1977 6202 0.4350 +1977 6203 0.4200 +1977 6207 0.6520 +1977 6209 0.4320 +1977 6217 0.4680 +1977 6223 0.4200 +1977 6224 0.4670 +1977 6230 0.4990 +1977 6234 0.4520 +1977 6311 0.6920 +1977 6396 0.5550 +1977 6426 0.6570 +1977 6428 0.6510 +1977 6446 0.5490 +1977 6500 0.5920 +1977 6714 0.4460 +1977 6741 0.5140 +1977 6772 0.4210 +1977 6774 0.4180 +1977 6794 0.4580 +1977 6895 0.9390 +1977 6897 0.5470 +1977 7072 0.9380 +1977 7073 0.8560 +1977 7124 0.5740 +1977 7157 0.5750 +1977 7175 0.4700 +1977 7178 0.5320 +1977 7248 0.7510 +1977 7249 0.8620 +1977 7311 0.5020 +1977 7334 0.4170 +1977 7341 0.6030 +1977 7342 0.4570 +1977 7386 0.4480 +1977 7414 0.5340 +1977 7458 0.9870 +1977 7514 0.7440 +1977 7529 0.5120 +1977 7534 0.4090 +1977 7538 0.7090 +1977 7756 0.4120 +1977 7812 0.4150 +1977 7837 0.4940 +1977 7884 0.9360 +1977 7919 0.6320 +1977 8021 0.5250 +1977 8086 0.4130 +1977 8087 0.7610 +1977 8106 0.7860 +1977 8408 0.4380 +1977 8480 0.6000 +1977 8562 0.4790 +1977 8563 0.4830 +1977 8569 0.9650 +1977 8575 0.6060 +1977 8637 0.9990 +1977 8649 0.5130 +1977 8653 0.4350 +1977 8661 0.8080 +1977 8662 0.9870 +1977 8663 0.7050 +1977 8664 0.8450 +1977 8665 0.8080 +1977 8666 0.8300 +1977 8667 0.8090 +1977 8668 0.7530 +1977 8669 0.6840 +1977 8672 0.9990 +1977 8731 0.9430 +1977 8732 0.5140 +1977 8761 0.8310 +1977 8886 0.7050 +1977 8893 0.5280 +1977 8894 0.8590 +1977 8945 0.4240 +1977 8988 0.5910 +1977 8994 0.9430 +1977 9125 0.5650 +1977 9218 0.5170 +1977 9271 0.5520 +1977 9337 0.5550 +1977 9451 0.4730 +1977 9470 0.9320 +1977 9513 0.7550 +1977 9589 0.4390 +1977 9631 0.4190 +1977 9669 0.8900 +1977 9688 0.4130 +1977 9698 0.5180 +1977 9775 0.9930 +1977 9776 0.5020 +1977 9811 0.4390 +1977 9818 0.4190 +1977 9883 0.4160 +1977 9887 0.6320 +1977 9908 0.4900 +1977 9924 0.4520 +1977 9939 0.4420 +1977 9972 0.5090 +1977 9987 0.4770 +1977 10000 0.4280 +1977 10044 0.4050 +1977 10128 0.6930 +1977 10146 0.9140 +1977 10181 0.4690 +1977 10189 0.7250 +1977 10209 0.7920 +1977 10273 0.5840 +1977 10325 0.6200 +1977 10399 0.7510 +1977 10460 0.8530 +1977 10480 0.6490 +1977 10482 0.7950 +1977 10492 0.6130 +1977 10542 0.5190 +1977 10576 0.4140 +1977 10605 0.9780 +1977 10643 0.4140 +1977 10658 0.4630 +1977 10659 0.5190 +1977 10670 0.6440 +1977 10762 0.5320 +1977 10914 0.5540 +1977 10922 0.6160 +1977 11097 0.4490 +1977 11224 0.6110 +1977 22849 0.7320 +1977 22916 0.9910 +1977 23019 0.6950 +1977 23049 0.5130 +1977 23165 0.4080 +1977 23191 0.9970 +1977 23225 0.4220 +1977 23279 0.4120 +1977 23293 0.4270 +1977 23318 0.5090 +1977 23357 0.7320 +1977 23367 0.7830 +1977 23369 0.7750 +1977 23381 0.6390 +1977 23405 0.9480 +1977 23435 0.4630 +1977 23511 0.4050 +1977 23521 0.6700 +1977 23636 0.4910 +1977 23644 0.6860 +1977 23658 0.4330 +1977 23770 0.6320 +1977 25804 0.4620 +1977 25904 0.4610 +1977 25929 0.9520 +1977 25983 0.9980 +1977 26019 0.7020 +1977 26058 0.7410 +1977 26065 0.7410 +1977 26135 0.5150 +1977 26523 0.9830 +1977 26986 0.9990 +1977 26999 0.6530 +1977 27044 0.5140 +1977 27102 0.4970 +1977 27161 0.9910 +1977 27250 0.8020 +1977 27257 0.7150 +1977 27327 0.9450 +1977 27335 0.5620 +1977 28956 0.4980 +1977 28960 0.7160 +1977 29883 0.7460 +1977 29904 0.6410 +1977 51247 0.4770 +1977 51386 0.5570 +1977 51441 0.4550 +1977 51643 0.7550 +1977 53371 0.4830 +1977 53981 0.5230 +1977 54205 0.4290 +1977 54464 0.9690 +1977 54487 0.5220 +1977 54505 0.5830 +1977 54514 0.4370 +1977 54541 0.6210 +1977 54766 0.5250 +1977 54882 0.4350 +1977 54915 0.6510 +1977 54952 0.5780 +1977 55004 0.5150 +1977 55124 0.4830 +1977 55132 0.5090 +1977 55285 0.5100 +1977 55308 0.5390 +1977 55421 0.9280 +1977 55544 0.7330 +1977 55571 0.4690 +1977 55615 0.5050 +1977 55706 0.4160 +1977 55746 0.4210 +1977 55802 0.6470 +1977 56339 0.5300 +1977 56478 0.9990 +1977 56903 0.5400 +1977 56940 0.4420 +1977 57122 0.4350 +1977 57409 0.5500 +1977 57472 0.5810 +1977 57510 0.9290 +1977 57521 0.9490 +1977 57696 0.4210 +1977 57703 0.5040 +1977 58528 0.5920 +1977 60489 0.5020 +1977 64083 0.4020 +1977 64121 0.6510 +1977 64223 0.8670 +1977 64332 0.4170 +1977 64506 0.9460 +1977 64599 0.5600 +1977 64794 0.4170 +1977 64798 0.6710 +1977 64895 0.5350 +1977 65083 0.4620 +1977 65109 0.4370 +1977 65110 0.6360 +1977 79023 0.4410 +1977 79109 0.7230 +1977 79228 0.4280 +1977 79670 0.5020 +1977 79727 0.5510 +1977 79902 0.4050 +1977 80153 0.7390 +1977 80222 0.5110 +1977 80315 0.7370 +1977 80336 0.7930 +1977 81669 0.5740 +1977 81929 0.5600 +1977 83640 0.9160 +1977 83667 0.4350 +1977 83939 0.6350 +1977 84271 0.4410 +1977 84335 0.7810 +1977 84881 0.4550 +1977 85456 0.4510 +1977 90850 0.7170 +1977 91544 0.5490 +1977 93974 0.4510 +1977 113251 0.4870 +1977 114907 0.4040 +1977 120103 0.4080 +1977 120892 0.4790 +1977 123283 0.5040 +1977 129401 0.4300 +1977 132430 0.7800 +1977 132864 0.7300 +1977 133482 0.7140 +1977 137902 0.4900 +1977 140886 0.7750 +1977 143689 0.5510 +1977 149986 0.4260 +1977 153129 0.5650 +1977 167153 0.5160 +1977 167227 0.9800 +1977 192669 0.8500 +1977 192670 0.8520 +1977 219988 0.5130 +1977 246175 0.5430 +1977 253260 0.8150 +1977 253314 0.8900 +1977 255967 0.4640 +1977 317649 0.8040 +1977 340529 0.7710 +1977 347744 0.5740 +1977 348995 0.4620 +1977 353267 0.5870 +1977 389541 0.4950 +1977 392517 0.6930 +1977 404734 0.5460 +1977 440275 0.7070 +1977 645974 0.4040 +1977 100101267 0.4270 +1978 1979 0.9270 +1978 1981 0.9910 +1978 2064 0.5250 +1978 2260 0.5320 +1978 2280 0.9130 +1978 2308 0.5140 +1978 2309 0.5250 +1978 2475 0.9990 +1978 2597 0.6020 +1978 2931 0.4200 +1978 2932 0.5920 +1978 3091 0.5820 +1978 3326 0.5420 +1978 3479 0.5710 +1978 3480 0.5060 +1978 3630 0.7420 +1978 3636 0.4050 +1978 3665 0.4660 +1978 3667 0.5750 +1978 3845 0.4180 +1978 4043 0.4750 +1978 4170 0.5090 +1978 4609 0.6240 +1978 5289 0.4300 +1978 5290 0.5800 +1978 5292 0.5030 +1978 5294 0.5420 +1978 5310 0.4160 +1978 5578 0.6190 +1978 5591 0.4660 +1978 5594 0.9780 +1978 5595 0.9570 +1978 5604 0.4180 +1978 5728 0.6630 +1978 5921 0.5060 +1978 6009 0.9790 +1978 6194 0.9310 +1978 6195 0.7080 +1978 6197 0.4180 +1978 6198 0.9720 +1978 6199 0.8370 +1978 6446 0.5760 +1978 6472 0.4900 +1978 6510 0.4130 +1978 6513 0.4420 +1978 6714 0.6150 +1978 6774 0.4730 +1978 6794 0.5770 +1978 7027 0.6000 +1978 7157 0.5850 +1978 7248 0.7990 +1978 7249 0.8740 +1978 7529 0.4140 +1978 7837 0.5100 +1978 7942 0.4840 +1978 8408 0.5110 +1978 8550 0.4450 +1978 8569 0.5070 +1978 8600 0.5960 +1978 8637 0.9150 +1978 8649 0.4990 +1978 8661 0.5160 +1978 8662 0.4530 +1978 8664 0.4270 +1978 8665 0.4260 +1978 8672 0.5170 +1978 8678 0.5700 +1978 8878 0.5060 +1978 8900 0.5670 +1978 9024 0.4500 +1978 9451 0.5400 +1978 9470 0.9970 +1978 9474 0.4740 +1978 9776 0.4510 +1978 10000 0.5130 +1978 10018 0.4160 +1978 10325 0.7810 +1978 10533 0.4370 +1978 10542 0.5010 +1978 10670 0.7910 +1978 11040 0.5070 +1978 25983 0.6210 +1978 26088 0.4430 +1978 26523 0.6000 +1978 26986 0.4010 +1978 27161 0.8200 +1978 27335 0.4090 +1978 28956 0.5520 +1978 29904 0.5710 +1978 30001 0.4260 +1978 51256 0.4290 +1978 54541 0.5870 +1978 54882 0.4100 +1978 55004 0.6060 +1978 55615 0.5630 +1978 55654 0.4670 +1978 56478 0.4140 +1978 57521 0.9990 +1978 58528 0.7530 +1978 64121 0.7930 +1978 64223 0.9980 +1978 64798 0.6910 +1978 79109 0.7530 +1978 81631 0.5420 +1978 83667 0.4590 +1978 84335 0.9770 +1978 84676 0.5810 +1978 84803 0.5240 +1978 114907 0.5750 +1978 120103 0.5930 +1978 120892 0.8610 +1978 137902 0.5070 +1978 153129 0.6080 +1978 206358 0.5910 +1978 253260 0.8840 +1978 253314 0.9830 +1978 317649 0.7980 +1978 389541 0.5410 +1978 404734 0.4490 +1978 440275 0.4140 +1978 440738 0.4120 +1979 1981 0.7310 +1979 2332 0.4050 +1979 2475 0.9660 +1979 2872 0.4630 +1979 3665 0.5700 +1979 6009 0.5530 +1979 6194 0.4510 +1979 6198 0.7800 +1979 6199 0.5690 +1979 7248 0.4880 +1979 7249 0.4050 +1979 8569 0.5790 +1979 8637 0.9130 +1979 8672 0.6810 +1979 8879 0.6620 +1979 8893 0.4390 +1979 9470 0.4560 +1979 10325 0.4520 +1979 10670 0.4410 +1979 23357 0.4500 +1979 23770 0.4260 +1979 25983 0.5060 +1979 54541 0.4740 +1979 54882 0.5490 +1979 56478 0.4620 +1979 57521 0.9800 +1979 58528 0.4120 +1979 64121 0.4160 +1979 64223 0.5870 +1979 253260 0.5730 +1979 253314 0.4800 +1979 317649 0.6730 +1979 404734 0.5680 +1981 1982 0.9840 +1981 1983 0.9900 +1981 1994 0.7980 +1981 2058 0.6410 +1981 2091 0.6050 +1981 2107 0.5530 +1981 2197 0.8070 +1981 2280 0.4090 +1981 2332 0.8650 +1981 2353 0.4580 +1981 2355 0.4020 +1981 2475 0.7190 +1981 2521 0.4390 +1981 2580 0.6340 +1981 2597 0.5000 +1981 2629 0.5520 +1981 2733 0.5360 +1981 2737 0.4630 +1981 2872 0.8550 +1981 2935 0.6670 +1981 3069 0.4480 +1981 3178 0.5410 +1981 3181 0.4560 +1981 3183 0.4900 +1981 3184 0.9900 +1981 3190 0.6180 +1981 3303 0.8320 +1981 3306 0.4400 +1981 3308 0.9040 +1981 3309 0.4610 +1981 3312 0.9700 +1981 3315 0.9900 +1981 3316 0.9060 +1981 3326 0.4310 +1981 3329 0.4130 +1981 3337 0.4950 +1981 3646 0.9940 +1981 3667 0.4880 +1981 3692 0.7750 +1981 3921 0.8620 +1981 4076 0.7580 +1981 4116 0.4190 +1981 4137 0.5180 +1981 4609 0.6220 +1981 4686 0.9910 +1981 4691 0.6320 +1981 4733 0.5160 +1981 4736 0.6290 +1981 4848 0.7120 +1981 4849 0.5850 +1981 4850 0.6700 +1981 4869 0.4130 +1981 4904 0.5780 +1981 5042 0.8850 +1981 5071 0.6120 +1981 5073 0.6740 +1981 5093 0.5300 +1981 5094 0.7920 +1981 5203 0.5120 +1981 5298 0.5430 +1981 5420 0.4110 +1981 5515 0.6110 +1981 5518 0.6010 +1981 5520 0.5390 +1981 5521 0.4210 +1981 5610 0.6080 +1981 5696 0.5180 +1981 5708 0.5200 +1981 5725 0.5130 +1981 5728 0.4390 +1981 5859 0.4230 +1981 5877 0.4090 +1981 5936 0.5760 +1981 5976 0.9740 +1981 6009 0.4770 +1981 6047 0.5300 +1981 6059 0.5420 +1981 6123 0.4510 +1981 6125 0.5670 +1981 6143 0.5530 +1981 6147 0.4270 +1981 6154 0.4090 +1981 6161 0.4260 +1981 6187 0.8600 +1981 6188 0.9360 +1981 6189 0.8680 +1981 6191 0.8480 +1981 6193 0.8830 +1981 6194 0.9750 +1981 6195 0.4320 +1981 6198 0.9520 +1981 6199 0.6400 +1981 6201 0.8690 +1981 6202 0.8770 +1981 6203 0.8430 +1981 6204 0.8900 +1981 6205 0.8910 +1981 6206 0.8600 +1981 6207 0.9370 +1981 6208 0.8730 +1981 6209 0.8950 +1981 6210 0.8540 +1981 6217 0.9110 +1981 6218 0.8240 +1981 6222 0.8860 +1981 6223 0.8950 +1981 6224 0.8750 +1981 6227 0.8530 +1981 6228 0.8690 +1981 6229 0.8700 +1981 6230 0.9030 +1981 6231 0.8610 +1981 6232 0.8650 +1981 6233 0.9060 +1981 6234 0.8960 +1981 6235 0.8560 +1981 6240 0.8300 +1981 6241 0.8520 +1981 6311 0.7270 +1981 6428 0.7070 +1981 6613 0.4190 +1981 6622 0.4780 +1981 6730 0.4150 +1981 6741 0.4250 +1981 6780 0.5460 +1981 7072 0.9660 +1981 7073 0.9050 +1981 7153 0.4300 +1981 7157 0.4170 +1981 7186 0.6020 +1981 7249 0.5530 +1981 7311 0.5460 +1981 7314 0.5120 +1981 7316 0.5440 +1981 7345 0.4250 +1981 7415 0.5850 +1981 7458 0.9930 +1981 7514 0.4300 +1981 7538 0.5850 +1981 7812 0.5400 +1981 7884 0.8390 +1981 8061 0.4060 +1981 8087 0.8300 +1981 8106 0.7950 +1981 8361 0.4750 +1981 8398 0.6670 +1981 8569 0.9900 +1981 8637 0.9130 +1981 8661 0.9660 +1981 8662 0.9980 +1981 8663 0.9900 +1981 8664 0.9740 +1981 8665 0.9520 +1981 8666 0.9770 +1981 8667 0.9630 +1981 8668 0.9840 +1981 8669 0.9790 +1981 8672 0.9720 +1981 8761 0.9040 +1981 8867 0.5290 +1981 8886 0.5510 +1981 8890 0.4390 +1981 8892 0.4160 +1981 8893 0.5800 +1981 8894 0.9780 +1981 8934 0.4530 +1981 8943 0.4010 +1981 8988 0.9060 +1981 9040 0.4470 +1981 9100 0.7960 +1981 9125 0.7330 +1981 9188 0.4320 +1981 9221 0.4180 +1981 9337 0.5680 +1981 9451 0.4320 +1981 9470 0.9780 +1981 9513 0.6930 +1981 9530 0.4160 +1981 9669 0.8640 +1981 9698 0.4250 +1981 9775 0.9910 +1981 9782 0.4710 +1981 9829 0.6020 +1981 9887 0.8650 +1981 9898 0.5010 +1981 9908 0.7020 +1981 9924 0.4190 +1981 9933 0.5190 +1981 9939 0.4700 +1981 9987 0.4720 +1981 10044 0.9850 +1981 10146 0.9910 +1981 10189 0.4050 +1981 10200 0.4010 +1981 10209 0.9960 +1981 10273 0.4700 +1981 10399 0.9430 +1981 10480 0.9590 +1981 10482 0.4240 +1981 10492 0.7580 +1981 10521 0.4420 +1981 10528 0.4480 +1981 10605 0.9110 +1981 10657 0.4630 +1981 10659 0.4200 +1981 10914 0.5300 +1981 10921 0.4040 +1981 10946 0.4240 +1981 10982 0.4680 +1981 10985 0.4540 +1981 11218 0.4330 +1981 11224 0.6220 +1981 11273 0.4560 +1981 11315 0.5250 +1981 22916 0.9730 +1981 22984 0.4630 +1981 23019 0.8140 +1981 23049 0.4060 +1981 23191 0.4640 +1981 23254 0.4100 +1981 23264 0.5220 +1981 23293 0.8700 +1981 23317 0.6760 +1981 23318 0.5350 +1981 23357 0.4620 +1981 23367 0.7140 +1981 23369 0.4480 +1981 23381 0.8880 +1981 23400 0.6610 +1981 23404 0.5290 +1981 23405 0.5320 +1981 23435 0.6640 +1981 23450 0.5240 +1981 23476 0.7100 +1981 23521 0.9040 +1981 23560 0.4260 +1981 23586 0.4030 +1981 23644 0.4850 +1981 23708 0.4360 +1981 25793 0.7390 +1981 25904 0.4900 +1981 25929 0.4800 +1981 25983 0.7440 +1981 26019 0.8430 +1981 26058 0.7020 +1981 26065 0.5900 +1981 26155 0.4250 +1981 26523 0.6330 +1981 26986 0.9990 +1981 27102 0.5150 +1981 27161 0.4870 +1981 27250 0.9740 +1981 27257 0.6030 +1981 27327 0.5160 +1981 27335 0.9140 +1981 27429 0.6830 +1981 28998 0.6390 +1981 29058 0.4450 +1981 29883 0.6030 +1981 29904 0.5200 +1981 51142 0.6470 +1981 51247 0.7830 +1981 51366 0.5720 +1981 51386 0.9240 +1981 51441 0.5440 +1981 51593 0.4730 +1981 54464 0.8000 +1981 54505 0.8440 +1981 54514 0.4010 +1981 54517 0.5550 +1981 54606 0.4900 +1981 54832 0.5600 +1981 55124 0.6340 +1981 55132 0.5230 +1981 55226 0.5520 +1981 55544 0.5560 +1981 55571 0.4550 +1981 55629 0.6080 +1981 55737 0.8990 +1981 55802 0.8130 +1981 56478 0.7490 +1981 56829 0.4110 +1981 56903 0.5040 +1981 57409 0.8250 +1981 57472 0.6200 +1981 57521 0.6650 +1981 57696 0.4740 +1981 64221 0.5370 +1981 64223 0.5220 +1981 64434 0.6550 +1981 64506 0.7220 +1981 64746 0.4830 +1981 64794 0.4710 +1981 64798 0.4310 +1981 64895 0.4880 +1981 65018 0.7200 +1981 65109 0.8320 +1981 65110 0.8380 +1981 79608 0.5200 +1981 79670 0.5270 +1981 79711 0.4310 +1981 80153 0.6740 +1981 80208 0.4850 +1981 80336 0.8840 +1981 83743 0.4100 +1981 84271 0.5290 +1981 84335 0.5270 +1981 85456 0.6020 +1981 90850 0.5200 +1981 93974 0.4110 +1981 120892 0.5690 +1981 124801 0.5430 +1981 132430 0.8690 +1981 133482 0.7060 +1981 140886 0.8530 +1981 149041 0.6050 +1981 167153 0.4460 +1981 167227 0.6750 +1981 170506 0.4170 +1981 219988 0.4090 +1981 221078 0.4240 +1981 246175 0.5560 +1981 253260 0.5160 +1981 253314 0.9710 +1981 255967 0.4190 +1981 317649 0.9780 +1981 340529 0.8380 +1981 345630 0.4190 +1981 392517 0.4030 +1981 400961 0.5190 +1981 440275 0.6580 +1981 728689 0.4530 +1981 114483834 0.4750 +1982 1983 0.7650 +1982 1994 0.4310 +1982 2058 0.5750 +1982 2091 0.4670 +1982 2107 0.5020 +1982 2872 0.6320 +1982 2935 0.4770 +1982 3178 0.4220 +1982 3181 0.5480 +1982 3183 0.6250 +1982 3184 0.4750 +1982 3190 0.6320 +1982 3309 0.4560 +1982 3312 0.5220 +1982 3646 0.5060 +1982 3692 0.5110 +1982 3735 0.4720 +1982 3840 0.4970 +1982 3921 0.4330 +1982 4076 0.5440 +1982 4154 0.4110 +1982 4686 0.6490 +1982 4691 0.5460 +1982 4733 0.4650 +1982 4841 0.4080 +1982 5042 0.6040 +1982 5093 0.4630 +1982 5094 0.4570 +1982 5976 0.4040 +1982 6122 0.4300 +1982 6135 0.4120 +1982 6188 0.4240 +1982 6193 0.4030 +1982 6194 0.4950 +1982 6428 0.4180 +1982 6430 0.4110 +1982 6613 0.4160 +1982 7316 0.4830 +1982 7415 0.4880 +1982 7458 0.9320 +1982 7531 0.4040 +1982 7555 0.4420 +1982 7812 0.4520 +1982 8106 0.5240 +1982 8569 0.9120 +1982 8637 0.9300 +1982 8661 0.6100 +1982 8662 0.8050 +1982 8663 0.6920 +1982 8664 0.6300 +1982 8665 0.4840 +1982 8666 0.5620 +1982 8667 0.5930 +1982 8668 0.5300 +1982 8669 0.7070 +1982 8672 0.9680 +1982 8761 0.5880 +1982 8891 0.4180 +1982 8892 0.5470 +1982 8893 0.4150 +1982 8894 0.7330 +1982 9221 0.4160 +1982 9444 0.4560 +1982 9470 0.9490 +1982 9669 0.6540 +1982 9689 0.4570 +1982 9698 0.5250 +1982 9775 0.7810 +1982 9987 0.4550 +1982 9991 0.4320 +1982 10146 0.5510 +1982 10209 0.7640 +1982 10247 0.4210 +1982 10480 0.6720 +1982 10521 0.5490 +1982 10694 0.4400 +1982 10971 0.4520 +1982 22916 0.5430 +1982 23019 0.5710 +1982 23060 0.7010 +1982 23367 0.4830 +1982 23369 0.4930 +1982 23481 0.4090 +1982 23560 0.4270 +1982 26058 0.5600 +1982 26986 0.8830 +1982 51366 0.4830 +1982 51386 0.5280 +1982 51441 0.6700 +1982 51808 0.4110 +1982 54464 0.4060 +1982 54517 0.4090 +1982 54882 0.4860 +1982 54915 0.4720 +1982 54952 0.4210 +1982 55140 0.4450 +1982 56339 0.5600 +1982 57721 0.4210 +1982 64848 0.4100 +1982 79068 0.4570 +1982 80153 0.5080 +1982 80336 0.5510 +1982 91746 0.4750 +1982 132430 0.5490 +1982 140886 0.4600 +1982 253314 0.9700 +1982 253943 0.9960 +1982 317649 0.8640 +1982 340529 0.4260 +1982 345630 0.4280 +1982 392517 0.4030 +1982 728689 0.4150 +1983 1984 0.4690 +1983 2058 0.5670 +1983 2107 0.7750 +1983 2197 0.9850 +1983 2475 0.5120 +1983 2935 0.5340 +1983 2959 0.5300 +1983 3035 0.4170 +1983 3190 0.4910 +1983 3320 0.4790 +1983 3326 0.4140 +1983 3376 0.4530 +1983 3646 0.9920 +1983 3692 0.8260 +1983 3921 0.9370 +1983 4141 0.6440 +1983 4528 0.6010 +1983 4686 0.4080 +1983 4691 0.4410 +1983 4809 0.5260 +1983 4899 0.6900 +1983 5094 0.4050 +1983 5877 0.8860 +1983 5905 0.4340 +1983 5921 0.8170 +1983 5976 0.4480 +1983 6059 0.9860 +1983 6124 0.8110 +1983 6125 0.4040 +1983 6128 0.4110 +1983 6130 0.5990 +1983 6133 0.5070 +1983 6141 0.4310 +1983 6155 0.4060 +1983 6160 0.4530 +1983 6171 0.5360 +1983 6183 0.7980 +1983 6187 0.9690 +1983 6188 0.9880 +1983 6189 0.9790 +1983 6191 0.8670 +1983 6192 0.8200 +1983 6193 0.9510 +1983 6194 0.9820 +1983 6201 0.9650 +1983 6202 0.9530 +1983 6203 0.9430 +1983 6204 0.9040 +1983 6205 0.9580 +1983 6206 0.9090 +1983 6207 0.9230 +1983 6208 0.9430 +1983 6209 0.9800 +1983 6210 0.7830 +1983 6217 0.9680 +1983 6218 0.9270 +1983 6222 0.9450 +1983 6223 0.9660 +1983 6224 0.9760 +1983 6227 0.9470 +1983 6228 0.9650 +1983 6229 0.9660 +1983 6230 0.9680 +1983 6231 0.9640 +1983 6232 0.9260 +1983 6233 0.9280 +1983 6234 0.9580 +1983 6235 0.8950 +1983 6414 0.9080 +1983 6434 0.6770 +1983 6499 0.4360 +1983 6731 0.4510 +1983 6950 0.4100 +1983 7073 0.4150 +1983 7316 0.4530 +1983 7323 0.5200 +1983 7407 0.4090 +1983 7453 0.4600 +1983 7458 0.9020 +1983 7782 0.5910 +1983 8562 0.8950 +1983 8565 0.6080 +1983 8661 0.9980 +1983 8662 0.9990 +1983 8663 0.9980 +1983 8664 0.9970 +1983 8665 0.9730 +1983 8666 0.9990 +1983 8667 0.9700 +1983 8668 0.9990 +1983 8669 0.9980 +1983 8672 0.6790 +1983 8761 0.4820 +1983 8890 0.7290 +1983 8891 0.7530 +1983 8892 0.7620 +1983 8893 0.8210 +1983 8894 0.9990 +1983 9086 0.9210 +1983 9255 0.4710 +1983 9343 0.4190 +1983 9470 0.5530 +1983 9669 0.9920 +1983 9689 0.6450 +1983 9732 0.5280 +1983 9775 0.6090 +1983 9858 0.5680 +1983 9868 0.4050 +1983 9987 0.4490 +1983 10146 0.5320 +1983 10209 0.9990 +1983 10289 0.8970 +1983 10352 0.4170 +1983 10399 0.9120 +1983 10436 0.4200 +1983 10480 0.8800 +1983 10482 0.4940 +1983 10492 0.4970 +1983 10527 0.4180 +1983 10557 0.5040 +1983 10575 0.5090 +1983 10605 0.6160 +1983 10767 0.5230 +1983 10985 0.4810 +1983 10987 0.4710 +1983 11266 0.5540 +1983 22913 0.5550 +1983 23204 0.4930 +1983 23277 0.4400 +1983 23560 0.4420 +1983 23708 0.4200 +1983 25885 0.4280 +1983 26135 0.4370 +1983 26986 0.8350 +1983 27102 0.6310 +1983 27335 0.9160 +1983 28969 0.6100 +1983 29979 0.4470 +1983 51065 0.9260 +1983 51068 0.5510 +1983 51073 0.6800 +1983 51081 0.7970 +1983 51116 0.5820 +1983 51149 0.8200 +1983 51319 0.8070 +1983 51386 0.8890 +1983 54505 0.7050 +1983 55173 0.8100 +1983 55272 0.6780 +1983 55316 0.7700 +1983 55601 0.5020 +1983 55651 0.6280 +1983 56648 0.4520 +1983 60678 0.8900 +1983 63931 0.6190 +1983 64960 0.6720 +1983 64963 0.8010 +1983 64969 0.8040 +1983 83475 0.4790 +1983 85377 0.5030 +1983 92935 0.5930 +1983 93974 0.5450 +1983 114987 0.8330 +1983 126402 0.7990 +1983 140032 0.8200 +1983 143244 0.4720 +1983 253314 0.4410 +1983 255308 0.9170 +1983 317649 0.4740 +1983 347487 0.8060 +1983 440275 0.7440 +1983 641776 0.4470 +1983 643909 0.4470 +1983 728524 0.4470 +1983 728689 0.9930 +1983 100287482 0.5680 +1983 100529239 0.7720 +1983 100996746 0.4470 +1983 105180390 0.4470 +1983 105180391 0.4470 +1984 1994 0.4090 +1984 2023 0.4530 +1984 2058 0.7610 +1984 2079 0.4380 +1984 2178 0.8040 +1984 2193 0.4310 +1984 2197 0.9970 +1984 2323 0.8320 +1984 2597 0.5570 +1984 3150 0.6610 +1984 3151 0.6550 +1984 3178 0.5020 +1984 3181 0.4870 +1984 3187 0.4290 +1984 3190 0.5150 +1984 3191 0.4790 +1984 3308 0.4650 +1984 3312 0.4570 +1984 3320 0.4530 +1984 3326 0.4610 +1984 3329 0.4400 +1984 3336 0.4790 +1984 3376 0.4090 +1984 3396 0.4690 +1984 3430 0.6710 +1984 3692 0.7690 +1984 3735 0.6020 +1984 3736 0.4260 +1984 3737 0.4260 +1984 3738 0.4270 +1984 3739 0.4260 +1984 3741 0.4260 +1984 3742 0.4260 +1984 3743 0.4260 +1984 3744 0.4260 +1984 3745 0.4260 +1984 3746 0.4260 +1984 3747 0.4260 +1984 3748 0.4260 +1984 3749 0.4260 +1984 3750 0.4260 +1984 3751 0.4260 +1984 3752 0.4270 +1984 3754 0.4260 +1984 3755 0.4260 +1984 3784 0.4260 +1984 3785 0.4260 +1984 3786 0.4260 +1984 3787 0.4260 +1984 3788 0.4260 +1984 3790 0.4260 +1984 3837 0.5610 +1984 3921 0.9870 +1984 4141 0.5390 +1984 4508 0.4110 +1984 4666 0.4400 +1984 4733 0.4280 +1984 4736 0.9740 +1984 4809 0.6620 +1984 4830 0.5680 +1984 4831 0.5910 +1984 4832 0.4090 +1984 4833 0.4310 +1984 4869 0.5000 +1984 4946 0.5310 +1984 4953 0.6120 +1984 5036 0.7370 +1984 5093 0.4520 +1984 5161 0.4150 +1984 5198 0.4750 +1984 5216 0.4180 +1984 5245 0.6040 +1984 5315 0.4180 +1984 5432 0.5060 +1984 5435 0.5440 +1984 5464 0.6970 +1984 5469 0.8370 +1984 5478 0.4150 +1984 5631 0.4350 +1984 5634 0.4270 +1984 5635 0.4160 +1984 5636 0.4240 +1984 5694 0.4200 +1984 5704 0.4380 +1984 5757 0.4570 +1984 5832 0.5250 +1984 5859 0.6160 +1984 5901 0.7740 +1984 5917 0.4280 +1984 6122 0.9720 +1984 6123 0.8270 +1984 6124 0.9860 +1984 6125 0.9950 +1984 6128 0.9800 +1984 6129 0.9700 +1984 6130 0.9760 +1984 6132 0.9770 +1984 6133 0.9880 +1984 6135 0.9910 +1984 6136 0.8100 +1984 6137 0.9910 +1984 6138 0.9880 +1984 6139 0.9690 +1984 6141 0.9850 +1984 6142 0.9880 +1984 6143 0.9870 +1984 6144 0.9900 +1984 6146 0.9200 +1984 6147 0.9940 +1984 6152 0.9840 +1984 6154 0.9530 +1984 6155 0.9770 +1984 6156 0.9910 +1984 6157 0.9810 +1984 6158 0.9290 +1984 6159 0.9710 +1984 6160 0.9870 +1984 6161 0.9690 +1984 6164 0.9760 +1984 6165 0.9450 +1984 6166 0.9420 +1984 6167 0.9610 +1984 6168 0.9670 +1984 6169 0.9640 +1984 6170 0.9500 +1984 6173 0.9420 +1984 6175 0.9540 +1984 6176 0.7760 +1984 6181 0.6710 +1984 6182 0.5800 +1984 6183 0.8830 +1984 6187 0.9870 +1984 6188 0.9940 +1984 6189 0.9900 +1984 6191 0.9640 +1984 6192 0.7580 +1984 6193 0.9850 +1984 6194 0.9920 +1984 6201 0.9610 +1984 6202 0.9840 +1984 6203 0.9820 +1984 6204 0.9270 +1984 6205 0.9940 +1984 6206 0.8000 +1984 6207 0.9850 +1984 6208 0.9610 +1984 6209 0.9920 +1984 6210 0.9400 +1984 6217 0.9810 +1984 6218 0.9140 +1984 6222 0.9930 +1984 6223 0.9820 +1984 6224 0.9860 +1984 6227 0.9800 +1984 6228 0.9810 +1984 6229 0.9860 +1984 6230 0.9600 +1984 6231 0.9660 +1984 6232 0.9560 +1984 6233 0.7780 +1984 6234 0.9790 +1984 6235 0.9560 +1984 6240 0.4370 +1984 6303 0.4060 +1984 6421 0.4060 +1984 6426 0.4580 +1984 6611 0.6110 +1984 6613 0.4520 +1984 6635 0.7210 +1984 6723 0.6860 +1984 6950 0.4060 +1984 7001 0.5020 +1984 7083 0.5790 +1984 7167 0.5660 +1984 7178 0.7970 +1984 7203 0.4030 +1984 7284 0.5220 +1984 7311 0.9840 +1984 7407 0.4740 +1984 7458 0.5230 +1984 7514 0.6980 +1984 7706 0.7850 +1984 7919 0.4540 +1984 8382 0.4090 +1984 8562 0.4150 +1984 8565 0.6030 +1984 8607 0.4950 +1984 8662 0.6270 +1984 8665 0.4610 +1984 8666 0.4600 +1984 8668 0.6730 +1984 8802 0.4100 +1984 8833 0.4300 +1984 8894 0.5870 +1984 9040 0.4750 +1984 9045 0.9850 +1984 9086 0.7800 +1984 9132 0.4260 +1984 9141 0.5850 +1984 9312 0.4260 +1984 9343 0.7490 +1984 9349 0.9930 +1984 9533 0.4960 +1984 9553 0.9020 +1984 9588 0.4040 +1984 9669 0.4630 +1984 9670 0.6150 +1984 9732 0.7010 +1984 9775 0.4470 +1984 9801 0.8800 +1984 9858 0.7550 +1984 10102 0.5290 +1984 10201 0.4140 +1984 10204 0.4230 +1984 10209 0.5860 +1984 10236 0.4050 +1984 10280 0.4030 +1984 10289 0.4210 +1984 10399 0.9910 +1984 10412 0.6320 +1984 10473 0.6480 +1984 10557 0.6190 +1984 10574 0.4540 +1984 10575 0.4240 +1984 10576 0.6560 +1984 10606 0.4080 +1984 10614 0.4590 +1984 10667 0.4080 +1984 10985 0.5240 +1984 10988 0.5680 +1984 11034 0.4010 +1984 11222 0.8190 +1984 11224 0.9930 +1984 11260 0.4730 +1984 11315 0.5090 +1984 11338 0.5450 +1984 22927 0.5500 +1984 22948 0.4480 +1984 22984 0.5510 +1984 23148 0.4300 +1984 23173 0.5600 +1984 23204 0.6740 +1984 23521 0.9710 +1984 23636 0.4960 +1984 23640 0.6780 +1984 25873 0.9670 +1984 26135 0.9110 +1984 26251 0.4260 +1984 27012 0.4260 +1984 27068 0.6760 +1984 28998 0.8320 +1984 29088 0.5250 +1984 29093 0.8120 +1984 29789 0.6270 +1984 29922 0.4090 +1984 29978 0.4170 +1984 51021 0.8920 +1984 51065 0.7680 +1984 51069 0.7290 +1984 51073 0.7950 +1984 51081 0.8370 +1984 51116 0.7720 +1984 51121 0.7180 +1984 51149 0.8100 +1984 51154 0.6370 +1984 51264 0.9100 +1984 51314 0.4520 +1984 51319 0.6140 +1984 54498 0.4050 +1984 54948 0.6650 +1984 55052 0.8640 +1984 55157 0.4480 +1984 55173 0.8830 +1984 55272 0.8930 +1984 55316 0.6650 +1984 55324 0.4510 +1984 55591 0.5480 +1984 55651 0.6340 +1984 55854 0.4240 +1984 56479 0.4260 +1984 56648 0.9020 +1984 57038 0.4250 +1984 60678 0.4190 +1984 63875 0.8370 +1984 63931 0.6680 +1984 64328 0.8960 +1984 64374 0.6620 +1984 64960 0.8150 +1984 64963 0.7670 +1984 64965 0.9430 +1984 64968 0.8830 +1984 64969 0.8050 +1984 64979 0.8420 +1984 64983 0.9400 +1984 65003 0.6510 +1984 65005 0.8830 +1984 65008 0.8040 +1984 65121 0.5100 +1984 65122 0.5100 +1984 65993 0.4510 +1984 79590 0.7120 +1984 79631 0.7090 +1984 79814 0.4510 +1984 79834 0.7260 +1984 83475 0.9990 +1984 84340 0.4310 +1984 85476 0.7050 +1984 91893 0.4030 +1984 92196 0.5180 +1984 92399 0.4790 +1984 93107 0.4260 +1984 113451 0.4470 +1984 114987 0.8210 +1984 116832 0.7460 +1984 124454 0.6060 +1984 126402 0.8340 +1984 129831 0.4300 +1984 138428 0.4160 +1984 140032 0.7570 +1984 140801 0.7100 +1984 169522 0.4260 +1984 170850 0.4260 +1984 200916 0.6070 +1984 219927 0.9360 +1984 221823 0.4150 +1984 254268 0.6010 +1984 283383 0.6570 +1984 283518 0.4260 +1984 285855 0.8050 +1984 342538 0.4300 +1984 343068 0.5100 +1984 343070 0.5100 +1984 347487 0.7810 +1984 387129 0.6810 +1984 390999 0.5100 +1984 391002 0.5100 +1984 400735 0.5100 +1984 400736 0.5100 +1984 440560 0.5100 +1984 440561 0.5100 +1984 441873 0.5100 +1984 641776 0.6260 +1984 643909 0.6260 +1984 645051 0.4920 +1984 645073 0.4920 +1984 645359 0.5100 +1984 653619 0.5100 +1984 654364 0.4450 +1984 728524 0.6260 +1984 729396 0.4920 +1984 729422 0.4920 +1984 729428 0.4920 +1984 729431 0.4920 +1984 729442 0.4920 +1984 729447 0.4920 +1984 729528 0.5100 +1984 100008586 0.4920 +1984 100132399 0.4920 +1984 100287482 0.7550 +1984 100505478 0.6780 +1984 100526842 0.8130 +1984 100529097 0.7160 +1984 100529239 0.6160 +1984 100996746 0.6260 +1984 101929983 0.5100 +1984 102724473 0.4920 +1984 105180390 0.6260 +1984 105180391 0.6260 +1990 1992 0.5190 +1990 2028 0.4010 +1990 2737 0.5340 +1990 3381 0.5010 +1990 3630 0.4050 +1990 5265 0.9710 +1990 5266 0.5280 +1990 5406 0.5510 +1990 5407 0.4240 +1990 5539 0.4110 +1990 6343 0.6330 +1990 6690 0.5560 +1990 7013 0.4740 +1990 8452 0.8050 +1990 9978 0.6810 +1990 10136 0.4150 +1990 23436 0.4150 +1990 51200 0.4340 +1990 57094 0.5270 +1990 93979 0.6210 +1990 256297 0.5480 +1990 342898 0.4840 +1991 1992 0.9730 +1991 2028 0.4430 +1991 2058 0.4340 +1991 2099 0.4480 +1991 2147 0.8550 +1991 2152 0.5710 +1991 2209 0.4040 +1991 2247 0.5500 +1991 2323 0.4990 +1991 2335 0.7050 +1991 2526 0.4320 +1991 2532 0.4920 +1991 2597 0.4480 +1991 2638 0.5150 +1991 2672 0.7810 +1991 2896 0.6650 +1991 2919 0.5340 +1991 2920 0.4080 +1991 3002 0.6750 +1991 3021 0.7280 +1991 3146 0.8690 +1991 3240 0.6230 +1991 3250 0.4240 +1991 3383 0.5410 +1991 3456 0.5950 +1991 3458 0.5450 +1991 3552 0.5400 +1991 3553 0.6980 +1991 3565 0.4470 +1991 3567 0.4200 +1991 3569 0.6660 +1991 3576 0.8240 +1991 3577 0.4810 +1991 3579 0.6020 +1991 3586 0.5830 +1991 3596 0.4470 +1991 3605 0.6660 +1991 3606 0.4790 +1991 3627 0.4070 +1991 3667 0.5920 +1991 3684 0.7360 +1991 3689 0.6770 +1991 3698 0.4850 +1991 3817 0.5320 +1991 3818 0.5570 +1991 3821 0.5020 +1991 3822 0.4320 +1991 3827 0.5990 +1991 3934 0.7740 +1991 4057 0.9970 +1991 4069 0.7240 +1991 4312 0.6570 +1991 4313 0.5230 +1991 4314 0.4520 +1991 4316 0.6500 +1991 4317 0.8750 +1991 4318 0.9730 +1991 4321 0.7440 +1991 4353 0.9990 +1991 4586 0.6010 +1991 4680 0.4950 +1991 4790 0.4150 +1991 4811 0.4960 +1991 5004 0.5070 +1991 5045 0.4290 +1991 5054 0.6330 +1991 5104 0.6580 +1991 5175 0.4330 +1991 5176 0.5910 +1991 5196 0.4550 +1991 5199 0.4690 +1991 5265 0.9990 +1991 5266 0.6230 +1991 5270 0.4460 +1991 5274 0.6130 +1991 5294 0.4160 +1991 5340 0.5000 +1991 5345 0.8260 +1991 5371 0.4790 +1991 5473 0.4410 +1991 5553 0.5870 +1991 5644 0.5300 +1991 5645 0.5230 +1991 5657 0.9970 +1991 5788 0.4530 +1991 5914 0.4420 +1991 6036 0.6250 +1991 6037 0.9000 +1991 6280 0.6510 +1991 6283 0.6370 +1991 6347 0.5210 +1991 6348 0.4470 +1991 6374 0.4400 +1991 6387 0.4220 +1991 6401 0.4240 +1991 6402 0.4420 +1991 6403 0.6910 +1991 6404 0.4380 +1991 6441 0.4190 +1991 6590 0.9980 +1991 6688 0.4040 +1991 7035 0.7600 +1991 7040 0.4250 +1991 7056 0.5140 +1991 7057 0.8950 +1991 7076 0.5070 +1991 7097 0.4980 +1991 7099 0.7320 +1991 7124 0.6810 +1991 7132 0.5520 +1991 7177 0.5870 +1991 7412 0.4910 +1991 7450 0.5010 +1991 7837 0.6140 +1991 7852 0.4650 +1991 8288 0.4200 +1991 8290 0.7280 +1991 8337 0.5780 +1991 8338 0.5780 +1991 8349 0.5700 +1991 8356 0.7280 +1991 8460 0.5520 +1991 8546 0.6020 +1991 8858 0.5160 +1991 8993 0.5180 +1991 9235 0.4270 +1991 10294 0.4330 +1991 10423 0.4870 +1991 10456 0.8570 +1991 10562 0.5010 +1991 11240 0.4470 +1991 23569 0.8770 +1991 25932 0.4340 +1991 29943 0.4320 +1991 51119 0.6190 +1991 51156 0.6110 +1991 51279 0.4500 +1991 51297 0.5840 +1991 51643 0.5600 +1991 51702 0.4690 +1991 54106 0.4150 +1991 55876 0.4100 +1991 56169 0.4440 +1991 56729 0.5100 +1991 57126 0.4440 +1991 58484 0.4040 +1991 59272 0.4410 +1991 79792 0.8820 +1991 81027 0.6270 +1991 84106 0.4420 +1991 84522 0.5390 +1991 84569 0.6620 +1991 84823 0.4690 +1991 92579 0.6360 +1991 114548 0.4420 +1991 137902 0.6140 +1991 284110 0.4180 +1991 353238 0.4570 +1991 388677 0.5950 +1991 400668 0.6060 +1991 440093 0.7280 +1991 440387 0.4610 +1991 440686 0.7280 +1991 494513 0.4630 +1991 653604 0.7280 +1991 727897 0.4350 +1991 728358 0.5250 +1991 100996763 0.4700 +1992 2162 0.6130 +1992 2243 0.4390 +1992 2244 0.4170 +1992 2266 0.4480 +1992 2959 0.4380 +1992 3553 0.4010 +1992 3818 0.4550 +1992 4015 0.4730 +1992 4016 0.7900 +1992 4057 0.4540 +1992 4353 0.6980 +1992 5266 0.5260 +1992 5657 0.7230 +1992 6590 0.5570 +1992 6657 0.4450 +1992 10516 0.6140 +1992 23277 0.4130 +1992 26136 0.6370 +1992 440387 0.6560 +1993 1995 0.7200 +1993 1996 0.5550 +1993 2332 0.4540 +1993 2596 0.4670 +1993 2903 0.4280 +1993 3182 0.4270 +1993 3183 0.7690 +1993 3190 0.7250 +1993 3191 0.6570 +1993 3441 0.4450 +1993 3442 0.4380 +1993 3443 0.4300 +1993 3444 0.4530 +1993 3445 0.4600 +1993 3446 0.4350 +1993 3448 0.4440 +1993 3449 0.4400 +1993 3452 0.4540 +1993 3608 0.5040 +1993 4137 0.5010 +1993 4613 0.5310 +1993 4857 0.6480 +1993 4858 0.4750 +1993 5093 0.5440 +1993 5725 0.4220 +1993 5728 0.4640 +1993 5935 0.4660 +1993 5976 0.6670 +1993 6000 0.4320 +1993 6240 0.4170 +1993 6262 0.4130 +1993 6426 0.6060 +1993 6434 0.7160 +1993 6469 0.4490 +1993 6538 0.4010 +1993 7072 0.4220 +1993 7538 0.4520 +1993 8570 0.4840 +1993 8761 0.4620 +1993 9129 0.5130 +1993 9582 0.4510 +1993 9584 0.4150 +1993 9698 0.4910 +1993 9782 0.4040 +1993 10146 0.4040 +1993 10369 0.4190 +1993 10605 0.5370 +1993 10642 0.4470 +1993 10643 0.6910 +1993 10644 0.6940 +1993 10929 0.6140 +1993 22794 0.4070 +1993 22913 0.4650 +1993 23246 0.4070 +1993 23369 0.6520 +1993 23543 0.6240 +1993 23609 0.4280 +1993 23708 0.5890 +1993 25940 0.5330 +1993 25949 0.5500 +1993 26047 0.4220 +1993 26048 0.4250 +1993 26986 0.7370 +1993 27067 0.4570 +1993 27161 0.5090 +1993 27316 0.4380 +1993 29803 0.4100 +1993 29896 0.7120 +1993 54715 0.6910 +1993 55342 0.4360 +1993 58155 0.4170 +1993 60680 0.4640 +1993 85364 0.4520 +1993 91746 0.5650 +1993 114805 0.4150 +1993 132430 0.5070 +1993 139804 0.5080 +1993 140564 0.4200 +1993 146713 0.6450 +1993 161436 0.4100 +1993 170506 0.5660 +1993 200316 0.5320 +1993 221092 0.7030 +1993 284695 0.4920 +1993 390748 0.4070 +1993 400961 0.4470 +1993 494115 0.5140 +1994 2079 0.6680 +1994 2091 0.4400 +1994 2107 0.4110 +1994 2130 0.7290 +1994 2146 0.4230 +1994 2194 0.4190 +1994 2294 0.4180 +1994 2305 0.7330 +1994 2308 0.4600 +1994 2309 0.4040 +1994 2332 0.8340 +1994 2353 0.7530 +1994 2521 0.8530 +1994 2526 0.4380 +1994 2597 0.5690 +1994 2733 0.5630 +1994 2885 0.4670 +1994 2886 0.5640 +1994 2908 0.4020 +1994 2926 0.6590 +1994 3014 0.4170 +1994 3021 0.4030 +1994 3065 0.6540 +1994 3091 0.7690 +1994 3161 0.4390 +1994 3178 0.9650 +1994 3181 0.9340 +1994 3182 0.7920 +1994 3183 0.9760 +1994 3184 0.9700 +1994 3185 0.8800 +1994 3187 0.9330 +1994 3188 0.6380 +1994 3189 0.7650 +1994 3190 0.9550 +1994 3191 0.9010 +1994 3192 0.9400 +1994 3207 0.4160 +1994 3276 0.4240 +1994 3308 0.6430 +1994 3312 0.6150 +1994 3320 0.4960 +1994 3326 0.4750 +1994 3486 0.4670 +1994 3569 0.6110 +1994 3576 0.5690 +1994 3608 0.8430 +1994 3688 0.4790 +1994 3725 0.7350 +1994 3838 0.4280 +1994 3842 0.4950 +1994 3845 0.5780 +1994 3921 0.5570 +1994 4076 0.6990 +1994 4085 0.4010 +1994 4089 0.5220 +1994 4116 0.5750 +1994 4143 0.4800 +1994 4144 0.6550 +1994 4154 0.8120 +1994 4170 0.7260 +1994 4193 0.6850 +1994 4208 0.4880 +1994 4313 0.5670 +1994 4318 0.6130 +1994 4343 0.6860 +1994 4440 0.5690 +1994 4609 0.6500 +1994 4670 0.8980 +1994 4686 0.4390 +1994 4691 0.7420 +1994 4790 0.4400 +1994 4841 0.6270 +1994 4869 0.6020 +1994 4904 0.8870 +1994 5036 0.5120 +1994 5073 0.6730 +1994 5093 0.8680 +1994 5094 0.9110 +1994 5202 0.4020 +1994 5204 0.4460 +1994 5308 0.4240 +1994 5562 0.9150 +1994 5563 0.9160 +1994 5564 0.9090 +1994 5565 0.9050 +1994 5571 0.9040 +1994 5578 0.9020 +1994 5580 0.9440 +1994 5604 0.5040 +1994 5682 0.4160 +1994 5683 0.4180 +1994 5684 0.7070 +1994 5688 0.5840 +1994 5725 0.9740 +1994 5728 0.6430 +1994 5743 0.6210 +1994 5757 0.4550 +1994 5764 0.5710 +1994 5898 0.4540 +1994 5935 0.8100 +1994 5940 0.6780 +1994 5976 0.7720 +1994 6124 0.5630 +1994 6128 0.4380 +1994 6136 0.4420 +1994 6154 0.4340 +1994 6155 0.4280 +1994 6157 0.4300 +1994 6165 0.4290 +1994 6181 0.5050 +1994 6188 0.4430 +1994 6189 0.4460 +1994 6202 0.4450 +1994 6217 0.5190 +1994 6224 0.6350 +1994 6234 0.5230 +1994 6240 0.5790 +1994 6241 0.5310 +1994 6294 0.5910 +1994 6311 0.5760 +1994 6347 0.4480 +1994 6418 0.8040 +1994 6421 0.7810 +1994 6426 0.9170 +1994 6427 0.6180 +1994 6428 0.8540 +1994 6430 0.4440 +1994 6431 0.6540 +1994 6432 0.7530 +1994 6434 0.8700 +1994 6541 0.6450 +1994 6606 0.4880 +1994 6615 0.5700 +1994 6625 0.7830 +1994 6626 0.7710 +1994 6627 0.4310 +1994 6628 0.6200 +1994 6629 0.4240 +1994 6631 0.6470 +1994 6632 0.6540 +1994 6633 0.6940 +1994 6634 0.6990 +1994 6635 0.7130 +1994 6636 0.7280 +1994 6637 0.7050 +1994 6657 0.5990 +1994 6737 0.5630 +1994 6741 0.8800 +1994 6772 0.5020 +1994 6774 0.6280 +1994 6780 0.8540 +1994 6874 0.4280 +1994 6921 0.4570 +1994 7057 0.4650 +1994 7072 0.9750 +1994 7073 0.9740 +1994 7099 0.5500 +1994 7124 0.7470 +1994 7150 0.5210 +1994 7157 0.8390 +1994 7188 0.7150 +1994 7277 0.4350 +1994 7307 0.7240 +1994 7319 0.4020 +1994 7341 0.5120 +1994 7428 0.7690 +1994 7458 0.5070 +1994 7514 0.9250 +1994 7520 0.4960 +1994 7536 0.4850 +1994 7538 0.8360 +1994 7555 0.7190 +1994 7916 0.4580 +1994 7919 0.7420 +1994 8021 0.5840 +1994 8078 0.5880 +1994 8087 0.7810 +1994 8106 0.9910 +1994 8125 0.9710 +1994 8148 0.8140 +1994 8175 0.6850 +1994 8241 0.4090 +1994 8260 0.5050 +1994 8427 0.7420 +1994 8539 0.4370 +1994 8550 0.4260 +1994 8570 0.9120 +1994 8607 0.6080 +1994 8661 0.4520 +1994 8662 0.7100 +1994 8665 0.5400 +1994 8666 0.6480 +1994 8668 0.4750 +1994 8672 0.5160 +1994 8678 0.6770 +1994 8683 0.5770 +1994 8741 0.4990 +1994 8761 0.4650 +1994 8826 0.4840 +1994 8837 0.4900 +1994 8846 0.4010 +1994 8878 0.4630 +1994 8880 0.7400 +1994 8894 0.5200 +1994 8900 0.9600 +1994 8939 0.4920 +1994 8945 0.7580 +1994 9136 0.4440 +1994 9261 0.4020 +1994 9271 0.5920 +1994 9343 0.5000 +1994 9444 0.6450 +1994 9456 0.4650 +1994 9470 0.5920 +1994 9513 0.5440 +1994 9584 0.6300 +1994 9589 0.6450 +1994 9698 0.5210 +1994 9774 0.5180 +1994 9775 0.7810 +1994 9782 0.8560 +1994 9908 0.4810 +1994 9987 0.8030 +1994 9991 0.5880 +1994 10013 0.5240 +1994 10128 0.4910 +1994 10146 0.9420 +1994 10150 0.4830 +1994 10181 0.6290 +1994 10189 0.8520 +1994 10197 0.5740 +1994 10236 0.7350 +1994 10284 0.5500 +1994 10395 0.4170 +1994 10399 0.7630 +1994 10432 0.7730 +1994 10471 0.4320 +1994 10480 0.4420 +1994 10482 0.4580 +1994 10492 0.7950 +1994 10498 0.7370 +1994 10521 0.5400 +1994 10533 0.4330 +1994 10541 0.7200 +1994 10574 0.4690 +1994 10575 0.6650 +1994 10576 0.4780 +1994 10642 0.9780 +1994 10643 0.9030 +1994 10644 0.7520 +1994 10656 0.4470 +1994 10657 0.8990 +1994 10658 0.6630 +1994 10659 0.5720 +1994 10694 0.5340 +1994 10726 0.4460 +1994 10772 0.6210 +1994 10856 0.4240 +1994 10915 0.5580 +1994 10921 0.4080 +1994 10929 0.5150 +1994 10949 0.8600 +1994 10963 0.4300 +1994 10971 0.6230 +1994 11030 0.5310 +1994 11051 0.8660 +1994 11052 0.8210 +1994 11065 0.4110 +1994 11200 0.5780 +1994 11322 0.5300 +1994 11338 0.8370 +1994 22803 0.4240 +1994 22827 0.4120 +1994 22871 0.4460 +1994 22913 0.7380 +1994 22948 0.4400 +1994 23016 0.6450 +1994 23019 0.4840 +1994 23028 0.4200 +1994 23029 0.4760 +1994 23034 0.6480 +1994 23091 0.5840 +1994 23160 0.4330 +1994 23197 0.6650 +1994 23254 0.4260 +1994 23291 0.4280 +1994 23367 0.5140 +1994 23369 0.5740 +1994 23404 0.4910 +1994 23405 0.5520 +1994 23411 0.7190 +1994 23435 0.8720 +1994 23450 0.4730 +1994 23476 0.4250 +1994 23543 0.8390 +1994 23608 0.5420 +1994 23644 0.5430 +1994 23765 0.4610 +1994 25804 0.4160 +1994 25914 0.4360 +1994 25940 0.6340 +1994 25946 0.5240 +1994 25962 0.6080 +1994 26019 0.5020 +1994 26058 0.4950 +1994 26097 0.6840 +1994 26135 0.5620 +1994 26523 0.5940 +1994 26986 0.8890 +1994 27067 0.4260 +1994 27161 0.9970 +1994 27250 0.5900 +1994 27258 0.5240 +1994 27316 0.8570 +1994 27327 0.6290 +1994 27339 0.7130 +1994 28514 0.4140 +1994 29102 0.5000 +1994 29890 0.5810 +1994 29894 0.6370 +1994 29896 0.7030 +1994 30000 0.4450 +1994 51247 0.7720 +1994 51422 0.9010 +1994 51441 0.7320 +1994 51493 0.4950 +1994 51506 0.9870 +1994 51574 0.4040 +1994 51593 0.6590 +1994 51637 0.5650 +1994 51639 0.4740 +1994 51655 0.4260 +1994 51663 0.4190 +1994 53632 0.9010 +1994 53981 0.5470 +1994 54464 0.5180 +1994 54487 0.4510 +1994 54502 0.5050 +1994 54542 0.4370 +1994 54715 0.5810 +1994 54845 0.4040 +1994 54890 0.6270 +1994 54915 0.6000 +1994 55054 0.5920 +1994 55110 0.5060 +1994 55234 0.4930 +1994 55269 0.4300 +1994 55421 0.4150 +1994 55544 0.8180 +1994 55657 0.5800 +1994 55796 0.4720 +1994 55802 0.6210 +1994 56259 0.6630 +1994 56339 0.6240 +1994 56829 0.4850 +1994 56915 0.4110 +1994 57187 0.5070 +1994 57721 0.6070 +1994 58155 0.8150 +1994 64506 0.5120 +1994 64783 0.5330 +1994 64848 0.5440 +1994 79066 0.4710 +1994 79068 0.5800 +1994 79727 0.4230 +1994 79830 0.5780 +1994 79869 0.4180 +1994 79872 0.5390 +1994 79960 0.4320 +1994 80004 0.4190 +1994 80218 0.5350 +1994 80315 0.4620 +1994 81669 0.6310 +1994 81892 0.4100 +1994 83443 0.4340 +1994 83641 0.4440 +1994 84324 0.4510 +1994 84844 0.4500 +1994 84991 0.5840 +1994 85437 0.5230 +1994 91582 0.5210 +1994 91746 0.7490 +1994 115908 0.4220 +1994 139804 0.5500 +1994 140890 0.4140 +1994 143689 0.5900 +1994 146713 0.5090 +1994 149041 0.5320 +1994 159163 0.5570 +1994 167227 0.4250 +1994 220988 0.8160 +1994 221662 0.4030 +1994 253943 0.7450 +1994 284695 0.5410 +1994 373863 0.5190 +1994 378948 0.5340 +1994 378949 0.5500 +1994 378950 0.5450 +1994 378951 0.5330 +1994 387882 0.4680 +1994 390748 0.4250 +1995 1996 0.6500 +1995 2130 0.5980 +1995 2173 0.6600 +1995 2571 0.4190 +1995 2596 0.6430 +1995 2597 0.4470 +1995 2670 0.6880 +1995 2823 0.4450 +1995 3181 0.4080 +1995 3670 0.5620 +1995 3960 0.6020 +1995 4133 0.4420 +1995 4741 0.4030 +1995 4760 0.5940 +1995 4762 0.6270 +1995 4842 0.4430 +1995 4857 0.4910 +1995 4858 0.4480 +1995 5015 0.4320 +1995 5080 0.5700 +1995 5457 0.4630 +1995 5458 0.4650 +1995 5459 0.4320 +1995 5940 0.5220 +1995 5957 0.4700 +1995 6240 0.5250 +1995 6285 0.5570 +1995 6616 0.4060 +1995 6656 0.4460 +1995 6657 0.5430 +1995 6663 0.6130 +1995 6853 0.4150 +1995 6855 0.4720 +1995 6900 0.4720 +1995 7054 0.4540 +1995 7072 0.4140 +1995 7345 0.4820 +1995 7432 0.4290 +1995 7538 0.5520 +1995 8349 0.4340 +1995 8882 0.4870 +1995 8929 0.4820 +1995 9118 0.4360 +1995 9129 0.5140 +1995 9584 0.4100 +1995 9900 0.4490 +1995 10215 0.5890 +1995 10381 0.4470 +1995 10763 0.4070 +1995 10929 0.4690 +1995 11075 0.4920 +1995 11189 0.4910 +1995 23543 0.5010 +1995 25940 0.5690 +1995 27000 0.5110 +1995 27022 0.4340 +1995 29896 0.5890 +1995 51412 0.4430 +1995 54715 0.6460 +1995 55544 0.6020 +1995 56853 0.4480 +1995 57084 0.5490 +1995 60680 0.4050 +1995 63973 0.6420 +1995 81551 0.4280 +1995 139804 0.5130 +1995 140679 0.4460 +1995 146713 0.7540 +1995 159163 0.5230 +1995 170506 0.5440 +1995 220202 0.5280 +1995 221092 0.4970 +1995 221662 0.5630 +1995 338917 0.4520 +1995 378948 0.5220 +1995 378949 0.5240 +1995 378950 0.5240 +1995 378951 0.5230 +1995 388585 0.5650 +1995 390748 0.4060 +1996 2332 0.6580 +1996 2353 0.5230 +1996 2521 0.4220 +1996 2560 0.4600 +1996 2572 0.5530 +1996 2596 0.6590 +1996 2670 0.4200 +1996 2891 0.4920 +1996 3105 0.4180 +1996 3181 0.5340 +1996 3183 0.4190 +1996 3736 0.4280 +1996 4103 0.4320 +1996 4131 0.6230 +1996 4137 0.6130 +1996 4609 0.4100 +1996 4613 0.6540 +1996 4736 0.6220 +1996 4741 0.4660 +1996 4760 0.5050 +1996 4857 0.7220 +1996 4858 0.4840 +1996 5080 0.4320 +1996 5940 0.5430 +1996 6161 0.4270 +1996 6240 0.4970 +1996 6241 0.4130 +1996 6606 0.6080 +1996 6616 0.4830 +1996 6626 0.5690 +1996 6656 0.4590 +1996 6657 0.5730 +1996 6855 0.4070 +1996 6860 0.4610 +1996 6900 0.4010 +1996 7072 0.4070 +1996 7345 0.4260 +1996 8087 0.4440 +1996 8570 0.6970 +1996 8891 0.5090 +1996 8929 0.4310 +1996 9129 0.4780 +1996 9211 0.4360 +1996 9378 0.4310 +1996 9456 0.4980 +1996 9513 0.4380 +1996 9987 0.5900 +1996 10146 0.5710 +1996 10236 0.4170 +1996 10482 0.7430 +1996 10492 0.5110 +1996 10498 0.4160 +1996 10642 0.7640 +1996 10658 0.4650 +1996 10687 0.5380 +1996 10929 0.4770 +1996 11075 0.5420 +1996 11189 0.4770 +1996 22871 0.5560 +1996 23040 0.4340 +1996 23139 0.4330 +1996 23358 0.7900 +1996 23543 0.5040 +1996 23621 0.6150 +1996 25940 0.5680 +1996 26047 0.4070 +1996 30010 0.4700 +1996 51299 0.5430 +1996 51493 0.4630 +1996 54715 0.6920 +1996 56896 0.5500 +1996 57084 0.5070 +1996 59269 0.7300 +1996 63974 0.4010 +1996 84107 0.4620 +1996 137970 0.4490 +1996 139804 0.5080 +1996 146713 0.6680 +1996 159163 0.5210 +1996 170506 0.6750 +1996 200008 0.7630 +1996 221092 0.4940 +1996 266743 0.4380 +1996 283742 0.4550 +1996 378948 0.5210 +1996 378949 0.5230 +1996 378950 0.5230 +1996 378951 0.5210 +1996 390748 0.4980 +1997 1998 0.5810 +1997 2113 0.4170 +1997 2551 0.6960 +1997 3562 0.4990 +1997 4790 0.5940 +1997 5079 0.5950 +1997 5579 0.4100 +1997 6135 0.4160 +1997 6667 0.4840 +1997 9440 0.4180 +1997 10291 0.4150 +1997 50943 0.4880 +1997 55565 0.4950 +1997 57466 0.4150 +1997 90390 0.4220 +1997 196528 0.4250 +1998 2050 0.4060 +1998 2116 0.4780 +1998 4609 0.5400 +1998 5079 0.5210 +1998 6774 0.4840 +1998 9975 0.4220 +1998 11279 0.4460 +1998 23060 0.4590 +1998 23640 0.4200 +1998 25833 0.4220 +1998 55075 0.4150 +1998 55565 0.6580 +1998 57684 0.5040 +1998 80314 0.4310 +1998 80790 0.4290 +1998 196528 0.4220 +1998 283337 0.4380 +1999 2000 0.9790 +1999 2033 0.7290 +1999 2064 0.5810 +1999 2065 0.4720 +1999 2648 0.5010 +1999 3169 0.4230 +1999 3516 0.5270 +1999 3845 0.4450 +1999 3855 0.5630 +1999 3880 0.4960 +1999 4072 0.4570 +1999 4343 0.5010 +1999 4609 0.4910 +1999 4780 0.4700 +1999 4790 0.6090 +1999 4851 0.5710 +1999 4854 0.6790 +1999 5017 0.4080 +1999 5158 0.4180 +1999 5266 0.4690 +1999 5452 0.4470 +1999 5584 0.8460 +1999 5970 0.5880 +1999 6364 0.6770 +1999 6662 0.5290 +1999 6700 0.8180 +1999 6701 0.8170 +1999 6711 0.5870 +1999 6908 0.7190 +1999 7080 0.4300 +1999 7104 0.4360 +1999 7113 0.4040 +1999 8850 0.5010 +1999 9439 0.9230 +1999 9794 0.4990 +1999 10046 0.5170 +1999 10551 0.4580 +1999 10562 0.4390 +1999 11074 0.5210 +1999 11279 0.5140 +1999 22938 0.5010 +1999 23112 0.5050 +1999 25833 0.7360 +1999 26298 0.5240 +1999 26523 0.5120 +1999 27161 0.5220 +1999 27327 0.4990 +1999 55534 0.4990 +1999 57111 0.4420 +1999 79977 0.4900 +1999 80712 0.7710 +1999 80758 0.4180 +1999 80818 0.4010 +1999 84441 0.5020 +1999 90480 0.4440 +1999 149708 0.4360 +1999 162387 0.4300 +1999 192669 0.5120 +1999 192670 0.5120 +1999 284371 0.4420 +1999 387893 0.4780 +1999 574414 0.5110 +2000 2001 0.4220 +2000 2117 0.4200 +2000 3133 0.4090 +2000 3560 0.4780 +2000 3562 0.6180 +2000 4193 0.4120 +2000 4684 0.4440 +2000 5371 0.6630 +2000 5993 0.5390 +2000 6402 0.5530 +2000 7157 0.5150 +2000 9314 0.6000 +2000 9666 0.4110 +2000 10365 0.6730 +2000 10661 0.4120 +2000 29110 0.5590 +2000 55615 0.4030 +2000 57506 0.4330 +2000 80758 0.6320 +2000 120425 0.4120 +2000 339291 0.4590 +2000 340061 0.5320 +2000 574414 0.6420 +2001 2099 0.4580 +2001 2103 0.5350 +2001 2113 0.4600 +2001 2625 0.7560 +2001 2627 0.4870 +2001 3169 0.5260 +2001 3690 0.6690 +2001 3852 0.4060 +2001 3855 0.4130 +2001 3856 0.4680 +2001 3861 0.4690 +2001 3875 0.4370 +2001 4088 0.5010 +2001 5241 0.4180 +2001 5460 0.4970 +2001 5617 0.4960 +2001 5618 0.5330 +2001 6210 0.4200 +2001 6427 0.4610 +2001 6591 0.4330 +2001 6657 0.4230 +2001 6776 0.4430 +2001 7004 0.7340 +2001 7022 0.6200 +2001 8050 0.4600 +2001 8320 0.7470 +2001 8521 0.6040 +2001 9071 0.4600 +2001 27316 0.4720 +2001 51074 0.4940 +2001 51442 0.4180 +2001 51548 0.5990 +2001 58495 0.4220 +2001 79923 0.4630 +2001 79977 0.4810 +2001 85406 0.4030 +2001 149708 0.8260 +2002 2005 0.8290 +2002 2353 0.8260 +2002 2957 0.4130 +2002 3172 0.4430 +2002 4943 0.7820 +2002 5578 0.9120 +2002 5579 0.9020 +2002 5582 0.9020 +2002 5594 0.9940 +2002 5595 0.9880 +2002 5599 0.9760 +2002 5600 0.9160 +2002 5601 0.9670 +2002 5603 0.9080 +2002 6300 0.9090 +2002 6722 0.9850 +2002 7329 0.6630 +2002 7341 0.7350 +2002 9439 0.8710 +2002 10459 0.5200 +2002 23416 0.7830 +2002 26260 0.5650 +2002 93649 0.6190 +2004 2005 0.4160 +2004 5295 0.5310 +2004 131096 0.8700 +2005 2048 0.4300 +2005 2551 0.4100 +2005 3172 0.4710 +2005 4194 0.5260 +2005 4314 0.4420 +2005 4609 0.5310 +2005 4801 0.4320 +2005 5594 0.9370 +2005 5595 0.9360 +2005 5600 0.9060 +2005 5603 0.9070 +2005 5717 0.4050 +2005 6300 0.9100 +2005 6722 0.9980 +2005 6910 0.4410 +2005 7015 0.4210 +2005 7113 0.6100 +2005 51547 0.7940 +2005 55715 0.5010 +2005 85414 0.8410 +2005 121268 0.4160 +2005 131096 0.9660 +2005 221895 0.5710 +2009 2120 0.4040 +2009 3796 0.5090 +2009 3798 0.4280 +2009 4085 0.4240 +2009 7280 0.8270 +2009 7846 0.4890 +2009 8021 0.5450 +2009 9578 0.4340 +2009 9742 0.4280 +2009 9764 0.4490 +2009 10381 0.7290 +2009 24139 0.6240 +2009 27436 0.8270 +2009 51317 0.4210 +2009 55780 0.4650 +2009 81875 0.6170 +2009 84866 0.4440 +2009 92241 0.4470 +2009 119678 0.4500 +2009 124930 0.4490 +2009 203068 0.5890 +2009 347733 0.7310 +2009 641649 0.4520 +2010 2054 0.5800 +2010 2273 0.7090 +2010 2316 0.5140 +2010 2317 0.4890 +2010 2318 0.4960 +2010 2353 0.5030 +2010 2979 0.4100 +2010 2980 0.9670 +2010 2981 0.9680 +2010 2984 0.9890 +2010 3021 0.4250 +2010 3065 0.5670 +2010 3066 0.5300 +2010 3162 0.5060 +2010 3831 0.4900 +2010 3895 0.4740 +2010 3908 0.6220 +2010 3930 0.9670 +2010 4000 0.9990 +2010 4001 0.9940 +2010 4008 0.9920 +2010 4204 0.5050 +2010 4593 0.4440 +2010 4654 0.5840 +2010 4883 0.7730 +2010 4928 0.4270 +2010 5009 0.4320 +2010 5225 0.4180 +2010 5245 0.5310 +2010 5339 0.5920 +2010 5515 0.5070 +2010 5518 0.5150 +2010 5520 0.5000 +2010 5566 0.5240 +2010 5578 0.5670 +2010 5579 0.5010 +2010 5593 0.6330 +2010 5879 0.5570 +2010 5880 0.5690 +2010 5881 0.5930 +2010 5903 0.4280 +2010 5925 0.4480 +2010 6442 0.6840 +2010 6443 0.4750 +2010 6444 0.6400 +2010 6449 0.5130 +2010 6641 0.4500 +2010 6671 0.4530 +2010 6676 0.4500 +2010 6708 0.4080 +2010 6709 0.7290 +2010 6714 0.4720 +2010 6804 0.7380 +2010 6811 0.5710 +2010 6839 0.5380 +2010 6844 0.5440 +2010 6901 0.6260 +2010 7112 0.8810 +2010 7167 0.4420 +2010 7179 0.4140 +2010 7257 0.4320 +2010 7273 0.6380 +2010 7402 0.6020 +2010 7443 0.7110 +2010 7444 0.5710 +2010 7485 0.6140 +2010 7486 0.4710 +2010 7917 0.5130 +2010 8082 0.4720 +2010 8187 0.4200 +2010 8266 0.5680 +2010 8291 0.5820 +2010 8361 0.4050 +2010 8451 0.6290 +2010 8815 0.9990 +2010 8841 0.9250 +2010 9217 0.7850 +2010 9218 0.6480 +2010 9381 0.4990 +2010 9472 0.5290 +2010 9499 0.4080 +2010 9611 0.5060 +2010 9774 0.9710 +2010 9927 0.4110 +2010 9972 0.7390 +2010 10049 0.4080 +2010 10269 0.7820 +2010 10424 0.4620 +2010 10652 0.4650 +2010 10952 0.6410 +2010 10963 0.4100 +2010 11160 0.4380 +2010 11168 0.4440 +2010 11270 0.6310 +2010 23141 0.8070 +2010 23197 0.6320 +2010 23224 0.9950 +2010 23225 0.4100 +2010 23344 0.4680 +2010 23345 0.9970 +2010 23353 0.9980 +2010 23480 0.5070 +2010 23592 0.9890 +2010 23636 0.4620 +2010 25777 0.9930 +2010 25909 0.5620 +2010 26092 0.7550 +2010 26993 0.8240 +2010 27230 0.5160 +2010 29984 0.5640 +2010 51231 0.4550 +2010 51547 0.4520 +2010 51608 0.5090 +2010 51643 0.5100 +2010 51726 0.4320 +2010 54788 0.5310 +2010 54894 0.6610 +2010 55746 0.4530 +2010 57122 0.4670 +2010 57591 0.6270 +2010 63891 0.4450 +2010 64837 0.4710 +2010 65992 0.4500 +2010 78994 0.4300 +2010 79041 0.4820 +2010 79147 0.4170 +2010 79188 0.8910 +2010 79789 0.4660 +2010 80143 0.7310 +2010 83480 0.4660 +2010 84814 0.5770 +2010 84823 0.8760 +2010 89885 0.8510 +2010 89953 0.4670 +2010 91746 0.8670 +2010 91782 0.5400 +2010 118424 0.5280 +2010 120892 0.5100 +2010 126549 0.5280 +2010 129401 0.5400 +2010 140836 0.9960 +2010 147700 0.4620 +2010 147872 0.6040 +2010 158747 0.5320 +2010 161176 0.5900 +2010 163183 0.6430 +2010 163590 0.4490 +2010 163747 0.4470 +2010 199953 0.8830 +2010 203547 0.7760 +2010 221496 0.9000 +2010 246744 0.4750 +2010 256979 0.5670 +2010 337867 0.6240 +2011 2495 0.7760 +2011 2517 0.6690 +2011 2534 0.4410 +2011 2782 0.4410 +2011 2885 0.5560 +2011 2931 0.4760 +2011 3021 0.4530 +2011 3265 0.4760 +2011 3725 0.5160 +2011 3799 0.4300 +2011 3845 0.6800 +2011 4089 0.5290 +2011 4134 0.4190 +2011 4137 0.8650 +2011 4139 0.7430 +2011 4140 0.8040 +2011 4170 0.4290 +2011 4296 0.4490 +2011 4893 0.4220 +2011 5331 0.7810 +2011 5529 0.4530 +2011 5567 0.4570 +2011 5568 0.4770 +2011 5584 0.7960 +2011 5599 0.4230 +2011 5610 0.4390 +2011 5789 0.4090 +2011 5795 0.4260 +2011 5837 0.7790 +2011 5970 0.7210 +2011 5976 0.6220 +2011 5979 0.4110 +2011 6094 0.7630 +2011 6279 0.6430 +2011 6794 0.7070 +2011 7157 0.4570 +2011 7159 0.5260 +2011 7356 0.7620 +2011 7402 0.7630 +2011 7529 0.8450 +2011 7531 0.7570 +2011 7532 0.7870 +2011 7533 0.8320 +2011 7534 0.8340 +2011 7536 0.7890 +2011 8061 0.7750 +2011 8239 0.4620 +2011 8290 0.4370 +2011 8356 0.4420 +2011 8737 0.4510 +2011 9181 0.7580 +2011 9231 0.5810 +2011 10193 0.7660 +2011 10458 0.4710 +2011 10750 0.4220 +2011 10971 0.8010 +2011 11129 0.4530 +2011 22841 0.4870 +2011 23122 0.7940 +2011 23255 0.8880 +2011 23299 0.4150 +2011 23303 0.5780 +2011 23336 0.4020 +2011 23513 0.4310 +2011 25793 0.4630 +2011 27005 0.6160 +2011 29855 0.4960 +2011 50855 0.4720 +2011 54861 0.4380 +2011 54899 0.5610 +2011 56288 0.7060 +2011 56904 0.4410 +2011 56924 0.4500 +2011 57144 0.4630 +2011 57551 0.6980 +2011 60673 0.4340 +2011 63940 0.4370 +2011 65018 0.6390 +2011 79026 0.7670 +2011 80774 0.4560 +2011 117583 0.4010 +2011 127829 0.5070 +2011 140710 0.6820 +2011 146330 0.4180 +2011 152789 0.4460 +2011 440093 0.4370 +2011 440686 0.4370 +2011 653604 0.4480 +2012 2056 0.5100 +2012 2057 0.6100 +2012 3383 0.5320 +2012 3982 0.6040 +2012 4000 0.4300 +2012 4071 0.4560 +2012 4256 0.5530 +2012 4640 0.6330 +2012 5175 0.4480 +2012 5251 0.6850 +2012 5376 0.4030 +2012 5741 0.8400 +2012 6281 0.5280 +2012 6401 0.4800 +2012 6569 0.6670 +2012 7412 0.6120 +2012 8074 0.7700 +2012 9368 0.5110 +2012 9518 0.4300 +2012 26151 0.5490 +2012 56265 0.4340 +2012 57523 0.4220 +2012 81850 0.6410 +2012 114799 0.4240 +2012 135228 0.4430 +2012 142680 0.6440 +2012 157570 0.4240 +2012 284422 0.4630 +2012 345274 0.4250 +2012 347902 0.4970 +2013 3982 0.7030 +2013 6453 0.4680 +2013 9516 0.7630 +2013 23552 0.4070 +2013 25959 0.4460 +2013 50618 0.4240 +2013 51004 0.4070 +2013 51196 0.4060 +2013 79934 0.4450 +2013 163782 0.4390 +2013 339302 0.4760 +2014 3821 0.4940 +2014 3956 0.7480 +2014 3982 0.7210 +2014 5355 0.4060 +2014 6275 0.4090 +2014 7076 0.4660 +2014 7431 0.5660 +2014 51330 0.4410 +2014 53827 0.5770 +2014 54854 0.4320 +2014 56105 0.5410 +2014 199964 0.4100 +2015 2209 0.5360 +2015 3458 0.4440 +2015 3553 0.5000 +2015 3569 0.4240 +2015 3586 0.4480 +2015 3684 0.4820 +2015 3687 0.4770 +2015 3958 0.4020 +2015 4360 0.6050 +2015 5175 0.4640 +2015 5788 0.5780 +2015 6343 0.7070 +2015 6347 0.5220 +2015 7019 0.4160 +2015 7052 0.4350 +2015 7099 0.4110 +2015 7124 0.5540 +2015 7305 0.4300 +2015 9450 0.5950 +2015 10261 0.4820 +2015 27181 0.4310 +2015 54209 0.5420 +2015 79772 0.4460 +2016 2046 0.4170 +2016 2115 0.4140 +2016 2188 0.6190 +2016 2253 0.6340 +2016 2290 0.8020 +2016 2302 0.5350 +2016 2571 0.5340 +2016 2572 0.4780 +2016 2670 0.5240 +2016 2737 0.5720 +2016 3083 0.5230 +2016 3670 0.4140 +2016 4015 0.4510 +2016 4760 0.4640 +2016 4761 0.4930 +2016 4762 0.4930 +2016 5013 0.4090 +2016 5015 0.4180 +2016 5080 0.4940 +2016 5454 0.4440 +2016 5816 0.6310 +2016 5957 0.4300 +2016 6045 0.4480 +2016 6096 0.4180 +2016 6469 0.6700 +2016 6496 0.4290 +2016 6657 0.4010 +2016 6663 0.4160 +2016 6750 0.4340 +2016 6853 0.4140 +2016 7025 0.4630 +2016 8100 0.4550 +2016 8320 0.6270 +2016 10215 0.6050 +2016 10716 0.8160 +2016 10763 0.6260 +2016 23314 0.6370 +2016 23316 0.5860 +2016 26468 0.5040 +2016 54776 0.4830 +2016 55079 0.6350 +2016 55361 0.4240 +2016 57030 0.5480 +2016 57084 0.4470 +2016 63950 0.4170 +2016 63973 0.6310 +2016 63974 0.7490 +2016 64211 0.4890 +2016 64919 0.6380 +2016 89780 0.5380 +2016 93986 0.4350 +2016 116448 0.4780 +2016 140679 0.5220 +2016 146713 0.4980 +2016 170825 0.4200 +2016 221833 0.5010 +2017 2033 0.4110 +2017 2043 0.4940 +2017 2059 0.4390 +2017 2064 0.4360 +2017 2099 0.5220 +2017 2185 0.9250 +2017 2241 0.4920 +2017 2245 0.7800 +2017 2264 0.4880 +2017 2316 0.6670 +2017 2317 0.6160 +2017 2318 0.5370 +2017 2335 0.5370 +2017 2534 0.7820 +2017 2596 0.5080 +2017 2597 0.4820 +2017 2697 0.5710 +2017 2767 0.4140 +2017 2768 0.4830 +2017 2801 0.4350 +2017 2817 0.4100 +2017 2885 0.8540 +2017 2909 0.7990 +2017 2915 0.4860 +2017 2932 0.4030 +2017 2934 0.9870 +2017 3055 0.4170 +2017 3065 0.4060 +2017 3267 0.4020 +2017 3309 0.4880 +2017 3320 0.5240 +2017 3326 0.5240 +2017 3383 0.5780 +2017 3674 0.5470 +2017 3688 0.4070 +2017 3690 0.4500 +2017 3693 0.4670 +2017 3737 0.9820 +2017 3739 0.5420 +2017 3741 0.5370 +2017 3897 0.5340 +2017 3936 0.4550 +2017 3937 0.4900 +2017 3984 0.5540 +2017 4067 0.4340 +2017 4069 0.4120 +2017 4233 0.5730 +2017 4313 0.5620 +2017 4318 0.6500 +2017 4323 0.7920 +2017 4478 0.5310 +2017 4593 0.5850 +2017 4609 0.4930 +2017 4638 0.7080 +2017 4644 0.4810 +2017 4690 0.9570 +2017 4739 0.5120 +2017 4841 0.4330 +2017 4868 0.5470 +2017 5058 0.7680 +2017 5062 0.6810 +2017 5063 0.5850 +2017 5216 0.7230 +2017 5286 0.5330 +2017 5329 0.4440 +2017 5338 0.6580 +2017 5468 0.4180 +2017 5587 0.8570 +2017 5594 0.4670 +2017 5595 0.4570 +2017 5747 0.9190 +2017 5753 0.4130 +2017 5756 0.4890 +2017 5770 0.7020 +2017 5781 0.4380 +2017 5829 0.9970 +2017 5868 0.4420 +2017 5879 0.8240 +2017 5880 0.4190 +2017 5962 0.6520 +2017 6093 0.6010 +2017 6249 0.5770 +2017 6347 0.4310 +2017 6385 0.5520 +2017 6386 0.4620 +2017 6453 0.7440 +2017 6464 0.4520 +2017 6548 0.6480 +2017 6624 0.7710 +2017 6657 0.4200 +2017 6709 0.5950 +2017 6714 0.9980 +2017 6774 0.5960 +2017 6811 0.5910 +2017 6840 0.7050 +2017 6844 0.4950 +2017 6845 0.4470 +2017 6850 0.7630 +2017 6907 0.4310 +2017 7041 0.4100 +2017 7074 0.6110 +2017 7082 0.9920 +2017 7094 0.9370 +2017 7124 0.4790 +2017 7157 0.4160 +2017 7170 0.4660 +2017 7220 0.4100 +2017 7402 0.4290 +2017 7408 0.9360 +2017 7409 0.4230 +2017 7410 0.7850 +2017 7414 0.9700 +2017 7430 0.7470 +2017 7454 0.9960 +2017 7456 0.9780 +2017 7525 0.5570 +2017 7533 0.4760 +2017 7791 0.4700 +2017 7837 0.4350 +2017 7871 0.4890 +2017 8027 0.4780 +2017 8500 0.5670 +2017 8514 0.4480 +2017 8615 0.6380 +2017 8766 0.4920 +2017 8772 0.4420 +2017 8826 0.6850 +2017 8874 0.4290 +2017 8936 0.7280 +2017 8945 0.5320 +2017 8976 0.9990 +2017 9026 0.9210 +2017 9033 0.4850 +2017 9229 0.8340 +2017 9322 0.4130 +2017 9404 0.5370 +2017 9414 0.7270 +2017 9454 0.4950 +2017 9455 0.5130 +2017 9456 0.7910 +2017 9478 0.5610 +2017 9527 0.5720 +2017 9564 0.7960 +2017 9644 0.9780 +2017 9672 0.9090 +2017 9709 0.4700 +2017 9788 0.8690 +2017 9793 0.4160 +2017 10006 0.6770 +2017 10013 0.9960 +2017 10014 0.4760 +2017 10015 0.4520 +2017 10092 0.6160 +2017 10093 0.4160 +2017 10094 0.8060 +2017 10095 0.5560 +2017 10096 0.9250 +2017 10097 0.9730 +2017 10109 0.7870 +2017 10163 0.9470 +2017 10254 0.4860 +2017 10262 0.4060 +2017 10403 0.4010 +2017 10426 0.4040 +2017 10456 0.9000 +2017 10458 0.6850 +2017 10524 0.4710 +2017 10552 0.4870 +2017 10614 0.4220 +2017 10672 0.8660 +2017 10755 0.4530 +2017 10787 0.4340 +2017 10818 0.6200 +2017 10971 0.4920 +2017 11140 0.4880 +2017 11151 0.4350 +2017 11346 0.5500 +2017 22919 0.6120 +2017 22924 0.7650 +2017 22941 0.9690 +2017 23002 0.4770 +2017 23048 0.6170 +2017 23149 0.5740 +2017 23157 0.5080 +2017 23365 0.4930 +2017 23380 0.4520 +2017 23411 0.5310 +2017 23433 0.5260 +2017 23500 0.4200 +2017 23603 0.5220 +2017 23607 0.9510 +2017 23683 0.6180 +2017 23779 0.6860 +2017 25865 0.4180 +2017 26052 0.6030 +2017 26579 0.7930 +2017 27255 0.4240 +2017 27429 0.4090 +2017 29109 0.4690 +2017 29119 0.4250 +2017 30011 0.6270 +2017 50618 0.7500 +2017 50807 0.9640 +2017 50944 0.8480 +2017 51421 0.4170 +2017 51517 0.4560 +2017 51806 0.4760 +2017 54434 0.6330 +2017 54443 0.4750 +2017 54874 0.4090 +2017 54949 0.5220 +2017 55107 0.4060 +2017 55486 0.5210 +2017 55742 0.5490 +2017 55825 0.4610 +2017 55832 0.4070 +2017 55869 0.6350 +2017 55914 0.5190 +2017 55920 0.5780 +2017 55930 0.4330 +2017 57151 0.4120 +2017 57175 0.7630 +2017 57180 0.5300 +2017 57698 0.6410 +2017 60312 0.5390 +2017 64423 0.4450 +2017 64431 0.4170 +2017 79869 0.4220 +2017 79872 0.4380 +2017 79969 0.4240 +2017 80143 0.4730 +2017 80155 0.4500 +2017 80725 0.9160 +2017 81624 0.4730 +2017 83660 0.9390 +2017 83933 0.4320 +2017 83992 0.9780 +2017 84898 0.7650 +2017 85358 0.9010 +2017 85462 0.4390 +2017 85477 0.9850 +2017 91010 0.4590 +2017 91624 0.8340 +2017 91860 0.4180 +2017 115548 0.5240 +2017 118429 0.4480 +2017 123720 0.5300 +2017 124912 0.4120 +2017 126393 0.4440 +2017 129446 0.4180 +2017 133746 0.4080 +2017 134265 0.5600 +2017 137902 0.4050 +2017 139741 0.5150 +2017 154796 0.4290 +2017 163688 0.4190 +2017 220064 0.6040 +2017 284119 0.4620 +2017 285590 0.9400 +2017 345456 0.7260 +2017 375189 0.7220 +2017 375790 0.7370 +2017 392862 0.4410 +2017 653145 0.4160 +2017 653361 0.9220 +2017 100287171 0.4160 +2017 100529144 0.5110 +2018 2138 0.4560 +2018 2253 0.6980 +2018 2263 0.5310 +2018 2290 0.7370 +2018 2302 0.4880 +2018 2516 0.4070 +2018 2547 0.6320 +2018 2626 0.4160 +2018 2674 0.6350 +2018 2737 0.4620 +2018 3195 0.4420 +2018 3205 0.5420 +2018 3206 0.5900 +2018 3207 0.6470 +2018 3209 0.5850 +2018 3239 0.6010 +2018 3859 0.4890 +2018 3975 0.6250 +2018 3980 0.4340 +2018 4211 0.4350 +2018 4286 0.4290 +2018 4760 0.4830 +2018 4761 0.4140 +2018 4762 0.4740 +2018 4807 0.4760 +2018 4929 0.4690 +2018 5015 0.6060 +2018 5076 0.7930 +2018 5080 0.4880 +2018 5087 0.6230 +2018 5089 0.5230 +2018 5423 0.5840 +2018 5454 0.4150 +2018 6096 0.4180 +2018 6469 0.6460 +2018 6492 0.5330 +2018 6495 0.4780 +2018 6496 0.5480 +2018 6657 0.6050 +2018 6662 0.4260 +2018 7025 0.6450 +2018 7091 0.4290 +2018 7101 0.4160 +2018 7479 0.4340 +2018 7484 0.4480 +2018 7490 0.5520 +2018 7849 0.4700 +2018 8320 0.5010 +2018 8822 0.5430 +2018 10215 0.4110 +2018 10716 0.6590 +2018 10736 0.4490 +2018 11284 0.4630 +2018 23314 0.4560 +2018 26468 0.4250 +2018 51804 0.4730 +2018 54361 0.5170 +2018 55079 0.5810 +2018 58524 0.5110 +2018 63950 0.5400 +2018 63973 0.7080 +2018 64211 0.5240 +2018 64919 0.4180 +2018 79191 0.4150 +2018 84733 0.4470 +2018 221833 0.7380 +2018 389549 0.4070 +2019 2253 0.7650 +2019 2290 0.5680 +2019 2637 0.4110 +2019 3169 0.4180 +2019 3170 0.7410 +2019 3251 0.5370 +2019 3670 0.5440 +2019 3763 0.5930 +2019 4009 0.4400 +2019 4010 0.4170 +2019 4211 0.4630 +2019 4212 0.4270 +2019 4781 0.4140 +2019 4929 0.6970 +2019 5015 0.4560 +2019 5076 0.8410 +2019 5079 0.4220 +2019 5080 0.7260 +2019 5087 0.4250 +2019 5454 0.4460 +2019 6469 0.6550 +2019 6492 0.5130 +2019 6496 0.4430 +2019 6531 0.4700 +2019 6571 0.5620 +2019 6656 0.4920 +2019 6657 0.4140 +2019 7054 0.5640 +2019 7088 0.8530 +2019 7089 0.4660 +2019 7090 0.5790 +2019 7091 0.6590 +2019 7471 0.7680 +2019 7476 0.4080 +2019 7545 0.4170 +2019 7767 0.5850 +2019 8701 0.4220 +2019 10215 0.4680 +2019 10699 0.5830 +2019 10763 0.4510 +2019 22943 0.4280 +2019 23476 0.4540 +2019 25914 0.5480 +2019 27319 0.4070 +2019 63973 0.5190 +2019 64843 0.4150 +2019 79190 0.4990 +2019 79191 0.4950 +2019 81606 0.6680 +2019 167410 0.4100 +2019 256297 0.4100 +2019 285888 0.4930 +2019 652991 0.4300 +2020 2253 0.5890 +2020 2290 0.4910 +2020 3170 0.5600 +2020 3251 0.4740 +2020 3549 0.4190 +2020 4192 0.5420 +2020 4318 0.4020 +2020 4929 0.4470 +2020 5076 0.6250 +2020 5079 0.4780 +2020 5860 0.4910 +2020 6091 0.4470 +2020 6469 0.5560 +2020 6496 0.4540 +2020 7088 0.4500 +2020 7091 0.4230 +2020 7471 0.5840 +2020 7545 0.6500 +2020 7781 0.6690 +2020 9355 0.4530 +2020 23322 0.4240 +2020 26047 0.6230 +2020 50846 0.5940 +2020 56952 0.4240 +2020 63973 0.5660 +2020 63974 0.4010 +2020 64327 0.5010 +2020 79191 0.4130 +2020 85358 0.4580 +2020 167410 0.4090 +2020 285888 0.6090 +2021 2237 0.7910 +2021 3017 0.5520 +2021 3018 0.5490 +2021 3301 0.7850 +2021 3306 0.5680 +2021 3308 0.6570 +2021 4170 0.5100 +2021 4713 0.4620 +2021 4723 0.7140 +2021 5366 0.4480 +2021 7019 0.4310 +2021 7153 0.5050 +2021 7157 0.5060 +2021 7168 0.4200 +2021 7416 0.4960 +2021 7419 0.4370 +2021 7532 0.4410 +2021 8192 0.5260 +2021 8340 0.5500 +2021 8341 0.5480 +2021 8342 0.5500 +2021 8345 0.5510 +2021 8347 0.5510 +2021 8348 0.5500 +2021 8349 0.5410 +2021 8772 0.4840 +2021 8970 0.5480 +2021 9131 0.9460 +2021 9361 0.4010 +2021 9770 0.4430 +2021 9927 0.4310 +2021 10018 0.4760 +2021 10105 0.5740 +2021 10273 0.4450 +2021 10294 0.5550 +2021 10440 0.4300 +2021 10730 0.4980 +2021 11186 0.5100 +2021 11331 0.6080 +2021 27429 0.8160 +2021 51024 0.4530 +2021 51079 0.4380 +2021 51490 0.8860 +2021 54145 0.5500 +2021 54205 0.9390 +2021 54662 0.8620 +2021 55466 0.6100 +2021 55520 0.5340 +2021 55600 0.6810 +2021 55669 0.4110 +2021 60528 0.8530 +2021 64112 0.6170 +2021 65018 0.4650 +2021 79680 0.4490 +2021 80142 0.4030 +2021 84883 0.4270 +2021 85236 0.5480 +2021 128312 0.5540 +2021 142683 0.8030 +2021 158983 0.5500 +2021 166824 0.6980 +2021 255626 0.5520 +2021 286436 0.5500 +2021 440689 0.5510 +2021 114483833 0.5500 +2022 2034 0.4580 +2022 2086 0.4180 +2022 2152 0.6720 +2022 2167 0.4980 +2022 2246 0.6040 +2022 2247 0.8310 +2022 2248 0.5270 +2022 2249 0.5430 +2022 2250 0.5350 +2022 2251 0.5340 +2022 2252 0.5870 +2022 2253 0.5240 +2022 2254 0.5440 +2022 2255 0.5330 +2022 2258 0.6800 +2022 2277 0.4160 +2022 2321 0.7370 +2022 2324 0.4810 +2022 2335 0.6260 +2022 2526 0.4800 +2022 2597 0.6020 +2022 2626 0.4540 +2022 2658 0.9960 +2022 2670 0.4110 +2022 2697 0.4090 +2022 2993 0.5160 +2022 3082 0.6390 +2022 3091 0.5180 +2022 3135 0.4480 +2022 3164 0.4110 +2022 3320 0.4020 +2022 3326 0.4080 +2022 3381 0.4720 +2022 3383 0.7670 +2022 3384 0.6300 +2022 3458 0.5410 +2022 3459 0.4550 +2022 3479 0.5430 +2022 3480 0.5090 +2022 3490 0.4310 +2022 3552 0.4330 +2022 3553 0.5880 +2022 3554 0.4640 +2022 3569 0.6250 +2022 3572 0.4870 +2022 3576 0.5260 +2022 3586 0.5700 +2022 3620 0.5700 +2022 3630 0.6000 +2022 3655 0.6670 +2022 3672 0.5390 +2022 3673 0.6420 +2022 3674 0.5420 +2022 3676 0.7050 +2022 3678 0.8010 +2022 3684 0.7950 +2022 3685 0.6240 +2022 3687 0.4120 +2022 3688 0.9200 +2022 3690 0.4450 +2022 3791 0.8560 +2022 3815 0.8200 +2022 3875 0.6040 +2022 3880 0.4050 +2022 3952 0.4160 +2022 3958 0.7090 +2022 4072 0.5060 +2022 4087 0.5710 +2022 4088 0.4600 +2022 4089 0.7410 +2022 4090 0.7670 +2022 4093 0.7750 +2022 4162 0.8340 +2022 4254 0.4770 +2022 4311 0.5490 +2022 4313 0.4750 +2022 4318 0.5180 +2022 4321 0.5170 +2022 4323 0.5430 +2022 4345 0.4760 +2022 4609 0.4300 +2022 4638 0.4630 +2022 4684 0.5410 +2022 4803 0.4190 +2022 4804 0.6930 +2022 4846 0.5040 +2022 4851 0.4240 +2022 4878 0.4030 +2022 4905 0.4260 +2022 4907 0.9280 +2022 5054 0.5140 +2022 5069 0.4310 +2022 5074 0.4390 +2022 5155 0.6220 +2022 5156 0.7430 +2022 5159 0.6770 +2022 5175 0.9230 +2022 5228 0.8860 +2022 5460 0.7070 +2022 5468 0.5170 +2022 5617 0.4890 +2022 5743 0.5510 +2022 5784 0.4180 +2022 5788 0.9100 +2022 6347 0.5400 +2022 6387 0.6360 +2022 6401 0.6870 +2022 6403 0.4560 +2022 6504 0.5060 +2022 6513 0.4100 +2022 6572 0.4950 +2022 6657 0.6550 +2022 6662 0.5890 +2022 6678 0.4780 +2022 6696 0.5930 +2022 6876 0.4060 +2022 6925 0.4010 +2022 6993 0.4560 +2022 7010 0.8310 +2022 7037 0.7620 +2022 7040 0.9980 +2022 7042 0.7100 +2022 7043 0.9950 +2022 7046 0.9690 +2022 7048 0.9970 +2022 7057 0.6500 +2022 7070 0.9410 +2022 7075 0.5340 +2022 7076 0.4310 +2022 7099 0.4530 +2022 7123 0.4920 +2022 7124 0.5800 +2022 7130 0.4960 +2022 7132 0.4750 +2022 7157 0.4390 +2022 7205 0.6180 +2022 7251 0.4320 +2022 7412 0.7370 +2022 7423 0.5520 +2022 7424 0.4750 +2022 7450 0.7180 +2022 7633 0.5870 +2022 7791 0.6140 +2022 7837 0.5210 +2022 7852 0.6090 +2022 8200 0.5610 +2022 8630 0.4710 +2022 8817 0.5320 +2022 8822 0.5290 +2022 8823 0.5410 +2022 8829 0.4220 +2022 8842 0.7200 +2022 8862 0.4370 +2022 9270 0.4200 +2022 9314 0.4960 +2022 9429 0.4100 +2022 9518 0.4720 +2022 10287 0.4120 +2022 10468 0.5570 +2022 10630 0.4220 +2022 10755 0.9020 +2022 10763 0.6690 +2022 10894 0.4570 +2022 11235 0.5500 +2022 26281 0.5400 +2022 27006 0.5320 +2022 27302 0.9770 +2022 29124 0.5070 +2022 29126 0.4160 +2022 30816 0.4180 +2022 50848 0.4300 +2022 51162 0.5000 +2022 51705 0.4680 +2022 54538 0.4400 +2022 54567 0.4170 +2022 56034 0.4750 +2022 57124 0.4390 +2022 59272 0.4370 +2022 64093 0.4400 +2022 79923 0.7060 +2022 80310 0.4200 +2022 80781 0.4710 +2022 83483 0.4230 +2022 83605 0.5420 +2022 90952 0.4950 +2022 116844 0.9310 +2022 121340 0.5210 +2022 137902 0.5100 +2022 144125 0.7750 +2022 169355 0.4800 +2022 340595 0.4180 +2022 343521 0.7320 +2022 405754 0.6270 +2022 440275 0.5060 +2022 728378 0.5040 +2022 100133941 0.7020 +2023 2026 0.9540 +2023 2027 0.9250 +2023 2058 0.5080 +2023 2109 0.4150 +2023 2171 0.4520 +2023 2178 0.4420 +2023 2194 0.4580 +2023 2203 0.6460 +2023 2224 0.4530 +2023 2271 0.7100 +2023 2273 0.5070 +2023 2280 0.5020 +2023 2312 0.6490 +2023 2316 0.5750 +2023 2317 0.4920 +2023 2323 0.4670 +2023 2335 0.7910 +2023 2353 0.4230 +2023 2517 0.6250 +2023 2534 0.5830 +2023 2539 0.9030 +2023 2547 0.6220 +2023 2597 0.9980 +2023 2618 0.5800 +2023 2632 0.5000 +2023 2645 0.4450 +2023 2665 0.4170 +2023 2670 0.5290 +2023 2739 0.6110 +2023 2745 0.5100 +2023 2746 0.5690 +2023 2752 0.5050 +2023 2782 0.4520 +2023 2805 0.4040 +2023 2806 0.7070 +2023 2810 0.4560 +2023 2820 0.4130 +2023 2821 0.9940 +2023 2879 0.5740 +2023 2896 0.4660 +2023 2923 0.6860 +2023 2934 0.5830 +2023 2936 0.4380 +2023 2947 0.4180 +2023 2950 0.5170 +2023 2987 0.4690 +2023 2997 0.4490 +2023 3014 0.5610 +2023 3017 0.6120 +2023 3018 0.6080 +2023 3028 0.4610 +2023 3032 0.6030 +2023 3064 0.4170 +2023 3065 0.4500 +2023 3091 0.5860 +2023 3098 0.6640 +2023 3099 0.7240 +2023 3101 0.4100 +2023 3122 0.9060 +2023 3123 0.9420 +2023 3151 0.4660 +2023 3178 0.4830 +2023 3181 0.4340 +2023 3190 0.4470 +2023 3303 0.4520 +2023 3304 0.4940 +2023 3305 0.5450 +2023 3308 0.7600 +2023 3309 0.7260 +2023 3310 0.4070 +2023 3312 0.8760 +2023 3313 0.7120 +2023 3315 0.4620 +2023 3316 0.5000 +2023 3320 0.7710 +2023 3326 0.8040 +2023 3329 0.5970 +2023 3336 0.7100 +2023 3417 0.7650 +2023 3418 0.7850 +2023 3419 0.5250 +2023 3421 0.4240 +2023 3615 0.5500 +2023 3704 0.4010 +2023 3725 0.5960 +2023 3735 0.4360 +2023 3921 0.6360 +2023 3925 0.4800 +2023 3948 0.6410 +2023 4057 0.5570 +2023 4060 0.5510 +2023 4072 0.4480 +2023 4137 0.4850 +2023 4141 0.4230 +2023 4151 0.5050 +2023 4170 0.4400 +2023 4191 0.7590 +2023 4282 0.5150 +2023 4478 0.6360 +2023 4609 0.5920 +2023 4627 0.4060 +2023 4706 0.4670 +2023 4722 0.4100 +2023 4728 0.5680 +2023 4736 0.4590 +2023 4790 0.4020 +2023 4830 0.5320 +2023 4831 0.5670 +2023 4860 0.4370 +2023 4869 0.6110 +2023 4967 0.5590 +2023 5019 0.4910 +2023 5033 0.5740 +2023 5034 0.6590 +2023 5037 0.4680 +2023 5052 0.7240 +2023 5091 0.5910 +2023 5105 0.9620 +2023 5106 0.9630 +2023 5111 0.5420 +2023 5161 0.4350 +2023 5162 0.6380 +2023 5163 0.5690 +2023 5165 0.4220 +2023 5176 0.4680 +2023 5207 0.5300 +2023 5208 0.5570 +2023 5209 0.6820 +2023 5210 0.6240 +2023 5211 0.8880 +2023 5213 0.8810 +2023 5214 0.8920 +2023 5216 0.7380 +2023 5223 0.9960 +2023 5224 0.9800 +2023 5225 0.4660 +2023 5226 0.9030 +2023 5230 0.9960 +2023 5232 0.9370 +2023 5236 0.9270 +2023 5238 0.5970 +2023 5239 0.5110 +2023 5245 0.6180 +2023 5250 0.4150 +2023 5313 0.9830 +2023 5315 0.9970 +2023 5327 0.4980 +2023 5339 0.5280 +2023 5340 0.9970 +2023 5345 0.4620 +2023 5375 0.4870 +2023 5432 0.6300 +2023 5435 0.6030 +2023 5441 0.5130 +2023 5464 0.5010 +2023 5469 0.5300 +2023 5478 0.8700 +2023 5479 0.4260 +2023 5518 0.5370 +2023 5631 0.4080 +2023 5657 0.6850 +2023 5684 0.4330 +2023 5702 0.5530 +2023 5704 0.4410 +2023 5706 0.4250 +2023 5708 0.4080 +2023 5803 0.4150 +2023 5814 0.4310 +2023 5832 0.4090 +2023 5834 0.6740 +2023 5836 0.6760 +2023 5837 0.7840 +2023 5957 0.6750 +2023 6006 0.5050 +2023 6010 0.4160 +2023 6120 0.4790 +2023 6122 0.4360 +2023 6124 0.8040 +2023 6125 0.6020 +2023 6129 0.5380 +2023 6132 0.5140 +2023 6133 0.5870 +2023 6135 0.4620 +2023 6139 0.4230 +2023 6141 0.5260 +2023 6143 0.4410 +2023 6147 0.6520 +2023 6157 0.4120 +2023 6175 0.6710 +2023 6182 0.4040 +2023 6183 0.4090 +2023 6187 0.6420 +2023 6188 0.7630 +2023 6189 0.5390 +2023 6191 0.4380 +2023 6193 0.4950 +2023 6203 0.7470 +2023 6207 0.4990 +2023 6208 0.5720 +2023 6209 0.6760 +2023 6210 0.4170 +2023 6217 0.6920 +2023 6222 0.5250 +2023 6224 0.5160 +2023 6228 0.4340 +2023 6229 0.4220 +2023 6235 0.4540 +2023 6280 0.4390 +2023 6281 0.6080 +2023 6282 0.4440 +2023 6295 0.5450 +2023 6389 0.5880 +2023 6390 0.5580 +2023 6391 0.4250 +2023 6431 0.4150 +2023 6462 0.4130 +2023 6470 0.4510 +2023 6472 0.5380 +2023 6513 0.6950 +2023 6515 0.5670 +2023 6518 0.7450 +2023 6647 0.7830 +2023 6648 0.5430 +2023 6652 0.4450 +2023 6657 0.4130 +2023 6714 0.8150 +2023 6767 0.4460 +2023 6876 0.4020 +2023 6888 0.9680 +2023 6950 0.6530 +2023 7001 0.7600 +2023 7038 0.4110 +2023 7083 0.4290 +2023 7086 0.9670 +2023 7097 0.7090 +2023 7099 0.6730 +2023 7123 0.7620 +2023 7145 0.4030 +2023 7155 0.5840 +2023 7157 0.4300 +2023 7167 0.9980 +2023 7168 0.5880 +2023 7173 0.5630 +2023 7184 0.6490 +2023 7203 0.6660 +2023 7277 0.7020 +2023 7280 0.5220 +2023 7284 0.5850 +2023 7287 0.4280 +2023 7295 0.7130 +2023 7296 0.4190 +2023 7298 0.4430 +2023 7345 0.5570 +2023 7347 0.4360 +2023 7360 0.6790 +2023 7371 0.4820 +2023 7384 0.6210 +2023 7385 0.4380 +2023 7407 0.4670 +2023 7415 0.6840 +2023 7416 0.7470 +2023 7417 0.4550 +2023 7430 0.4460 +2023 7431 0.4890 +2023 7448 0.5100 +2023 7529 0.5430 +2023 7531 0.7020 +2023 7532 0.4990 +2023 7534 0.7940 +2023 7846 0.7690 +2023 8050 0.4370 +2023 8073 0.4450 +2023 8218 0.4460 +2023 8277 0.9480 +2023 8340 0.6150 +2023 8341 0.6030 +2023 8342 0.6140 +2023 8345 0.6050 +2023 8347 0.6120 +2023 8348 0.6150 +2023 8349 0.6110 +2023 8361 0.4710 +2023 8369 0.4390 +2023 8407 0.5310 +2023 8565 0.4670 +2023 8570 0.4410 +2023 8607 0.5380 +2023 8668 0.4260 +2023 8761 0.4700 +2023 8789 0.4700 +2023 8802 0.5850 +2023 8803 0.5040 +2023 8842 0.4160 +2023 8970 0.6070 +2023 8974 0.4480 +2023 8991 0.7510 +2023 9122 0.4340 +2023 9123 0.5080 +2023 9343 0.6010 +2023 9349 0.5910 +2023 9361 0.4430 +2023 9380 0.6630 +2023 9401 0.5550 +2023 9512 0.4570 +2023 9531 0.4020 +2023 9533 0.6230 +2023 9562 0.9000 +2023 9563 0.9480 +2023 9588 0.7370 +2023 9601 0.5790 +2023 9636 0.5750 +2023 9669 0.4080 +2023 9858 0.4690 +2023 9948 0.4540 +2023 10015 0.6260 +2023 10082 0.4390 +2023 10102 0.4640 +2023 10130 0.4230 +2023 10213 0.4550 +2023 10376 0.5690 +2023 10381 0.4060 +2023 10383 0.7010 +2023 10399 0.4470 +2023 10449 0.6430 +2023 10525 0.4210 +2023 10549 0.5640 +2023 10551 0.5740 +2023 10574 0.5620 +2023 10575 0.5070 +2023 10576 0.5730 +2023 10606 0.4780 +2023 10625 0.6280 +2023 10694 0.5490 +2023 10935 0.5600 +2023 10961 0.5060 +2023 10963 0.4490 +2023 10971 0.6500 +2023 11240 0.4780 +2023 11315 0.5760 +2023 11332 0.6270 +2023 22934 0.5770 +2023 22948 0.6560 +2023 22984 0.5530 +2023 23324 0.4040 +2023 23521 0.5350 +2023 23558 0.4140 +2023 23569 0.6420 +2023 25796 0.4310 +2023 25824 0.4520 +2023 26191 0.5690 +2023 26227 0.6640 +2023 26292 0.6450 +2023 26330 0.7540 +2023 27068 0.5590 +2023 28998 0.4860 +2023 29093 0.4150 +2023 29889 0.5020 +2023 29927 0.4630 +2023 29968 0.4940 +2023 50808 0.5700 +2023 51031 0.4580 +2023 51069 0.4230 +2023 51071 0.8530 +2023 51073 0.6600 +2023 51074 0.4650 +2023 51095 0.4190 +2023 51116 0.4930 +2023 51149 0.4320 +2023 51154 0.5600 +2023 51574 0.5190 +2023 51727 0.7590 +2023 54145 0.6040 +2023 54205 0.4440 +2023 54596 0.4160 +2023 55173 0.4660 +2023 55236 0.4840 +2023 55256 0.4400 +2023 55272 0.7170 +2023 55276 0.7560 +2023 55294 0.6790 +2023 55556 0.4060 +2023 55848 0.6400 +2023 56954 0.4290 +2023 56965 0.6740 +2023 57103 0.6830 +2023 57136 0.5410 +2023 57469 0.6630 +2023 57591 0.4480 +2023 57623 0.4830 +2023 63931 0.4090 +2023 64064 0.4320 +2023 64960 0.4680 +2023 64963 0.5430 +2023 64969 0.5190 +2023 65008 0.4420 +2023 79026 0.5340 +2023 79631 0.5140 +2023 79668 0.6740 +2023 79837 0.4880 +2023 79841 0.5290 +2023 80201 0.4050 +2023 80381 0.4260 +2023 81027 0.4290 +2023 81570 0.4150 +2023 83440 0.4730 +2023 84076 0.9500 +2023 84263 0.4280 +2023 84617 0.5230 +2023 84790 0.5740 +2023 85236 0.6070 +2023 85476 0.5760 +2023 85477 0.5600 +2023 87178 0.7160 +2023 92399 0.4020 +2023 92483 0.6160 +2023 122622 0.4170 +2023 128178 0.4750 +2023 128312 0.6040 +2023 130589 0.4850 +2023 130752 0.5320 +2023 132158 0.9450 +2023 136332 0.6570 +2023 158983 0.6040 +2023 160287 0.6180 +2023 203068 0.6170 +2023 221833 0.4320 +2023 246243 0.6100 +2023 255626 0.6090 +2023 260425 0.4230 +2023 285855 0.5090 +2023 286436 0.6040 +2023 347487 0.4620 +2023 387129 0.4390 +2023 387712 0.6970 +2023 388698 0.6640 +2023 440689 0.6070 +2023 441531 0.9920 +2023 654364 0.4780 +2023 728378 0.5600 +2023 100287482 0.4610 +2023 100505478 0.4350 +2023 100526842 0.4030 +2023 114483833 0.6050 +2026 2027 0.9560 +2026 2058 0.4310 +2026 2064 0.4030 +2026 2130 0.5950 +2026 2171 0.4700 +2026 2178 0.4340 +2026 2203 0.5270 +2026 2247 0.4260 +2026 2271 0.5190 +2026 2280 0.4760 +2026 2281 0.5040 +2026 2323 0.4820 +2026 2520 0.6420 +2026 2539 0.8630 +2026 2571 0.4230 +2026 2596 0.4950 +2026 2597 0.8710 +2026 2618 0.5410 +2026 2632 0.4290 +2026 2641 0.4770 +2026 2670 0.7610 +2026 2746 0.4370 +2026 2752 0.4650 +2026 2805 0.4060 +2026 2806 0.5800 +2026 2821 0.9760 +2026 2875 0.5510 +2026 2922 0.8040 +2026 2936 0.4800 +2026 2987 0.5380 +2026 3028 0.4060 +2026 3098 0.5350 +2026 3099 0.5120 +2026 3303 0.6060 +2026 3304 0.6250 +2026 3308 0.4740 +2026 3309 0.5390 +2026 3312 0.4430 +2026 3336 0.4410 +2026 3417 0.7070 +2026 3418 0.5050 +2026 3553 0.4100 +2026 3569 0.5110 +2026 3630 0.4790 +2026 3735 0.5340 +2026 3785 0.4350 +2026 3815 0.5840 +2026 3852 0.5720 +2026 3855 0.7460 +2026 3856 0.5490 +2026 3861 0.4210 +2026 3875 0.5200 +2026 3880 0.7910 +2026 3921 0.4680 +2026 3934 0.5140 +2026 3948 0.5110 +2026 4133 0.7160 +2026 4137 0.6110 +2026 4151 0.6190 +2026 4155 0.6980 +2026 4191 0.7000 +2026 4267 0.8130 +2026 4311 0.6130 +2026 4613 0.5910 +2026 4656 0.5170 +2026 4684 0.7940 +2026 4706 0.4620 +2026 4728 0.5170 +2026 4736 0.4430 +2026 4741 0.5580 +2026 4744 0.6310 +2026 4747 0.7270 +2026 4803 0.5070 +2026 4852 0.4340 +2026 4904 0.4740 +2026 4922 0.4530 +2026 5033 0.4390 +2026 5052 0.4270 +2026 5091 0.4260 +2026 5105 0.9560 +2026 5106 0.9580 +2026 5162 0.5480 +2026 5175 0.4680 +2026 5207 0.4410 +2026 5208 0.4480 +2026 5209 0.7120 +2026 5210 0.6160 +2026 5211 0.8260 +2026 5213 0.8160 +2026 5214 0.8510 +2026 5223 0.9890 +2026 5224 0.9750 +2026 5226 0.5650 +2026 5230 0.9620 +2026 5232 0.9300 +2026 5236 0.6950 +2026 5239 0.5210 +2026 5241 0.4030 +2026 5265 0.5160 +2026 5313 0.9780 +2026 5315 0.9890 +2026 5358 0.4390 +2026 5432 0.6460 +2026 5435 0.5780 +2026 5441 0.4960 +2026 5443 0.5750 +2026 5464 0.4050 +2026 5469 0.5290 +2026 5516 0.5000 +2026 5539 0.7010 +2026 5621 0.4640 +2026 5702 0.4030 +2026 5788 0.5430 +2026 5816 0.4440 +2026 5834 0.5780 +2026 5836 0.5900 +2026 5837 0.5570 +2026 5885 0.4530 +2026 5978 0.4030 +2026 6124 0.7470 +2026 6125 0.4880 +2026 6129 0.4360 +2026 6132 0.4250 +2026 6133 0.5290 +2026 6139 0.4030 +2026 6141 0.4180 +2026 6147 0.6160 +2026 6175 0.5440 +2026 6183 0.4020 +2026 6187 0.5000 +2026 6188 0.7000 +2026 6189 0.5010 +2026 6193 0.4290 +2026 6203 0.7100 +2026 6207 0.4410 +2026 6208 0.5370 +2026 6209 0.6490 +2026 6217 0.6450 +2026 6222 0.4590 +2026 6224 0.4520 +2026 6285 0.8870 +2026 6327 0.4130 +2026 6389 0.5080 +2026 6390 0.5160 +2026 6513 0.5190 +2026 6515 0.4280 +2026 6616 0.4380 +2026 6622 0.4070 +2026 6647 0.4840 +2026 6657 0.4030 +2026 6709 0.4400 +2026 6750 0.6760 +2026 6853 0.5030 +2026 6855 0.9100 +2026 6863 0.5470 +2026 6876 0.4260 +2026 6888 0.9070 +2026 7001 0.4610 +2026 7038 0.5090 +2026 7054 0.5970 +2026 7070 0.6100 +2026 7080 0.6210 +2026 7083 0.4120 +2026 7086 0.9110 +2026 7124 0.4340 +2026 7157 0.5780 +2026 7167 0.9590 +2026 7276 0.5750 +2026 7284 0.4780 +2026 7295 0.4210 +2026 7314 0.4330 +2026 7345 0.8180 +2026 7384 0.4610 +2026 7407 0.4260 +2026 7417 0.5020 +2026 7430 0.4760 +2026 7431 0.4840 +2026 7432 0.6050 +2026 7447 0.4010 +2026 7490 0.5190 +2026 7534 0.6400 +2026 7545 0.4490 +2026 7837 0.5140 +2026 8224 0.5100 +2026 8277 0.8990 +2026 8789 0.4310 +2026 8802 0.5420 +2026 8833 0.4310 +2026 9241 0.4550 +2026 9343 0.5090 +2026 9349 0.5640 +2026 9380 0.6150 +2026 9476 0.4480 +2026 9512 0.4050 +2026 9533 0.6180 +2026 9562 0.9070 +2026 9563 0.8880 +2026 9588 0.4300 +2026 9812 0.6660 +2026 9858 0.4660 +2026 10102 0.4530 +2026 10213 0.4130 +2026 10215 0.4510 +2026 10381 0.6060 +2026 10449 0.4790 +2026 10549 0.4310 +2026 10587 0.4060 +2026 10758 0.4510 +2026 10763 0.6740 +2026 10935 0.4070 +2026 10971 0.4140 +2026 11315 0.5600 +2026 22934 0.4480 +2026 22984 0.5370 +2026 23212 0.4380 +2026 23467 0.4570 +2026 23521 0.4910 +2026 26254 0.4400 +2026 26292 0.4840 +2026 26330 0.7180 +2026 27087 0.5850 +2026 28998 0.4680 +2026 29093 0.4030 +2026 29889 0.4860 +2026 50808 0.5510 +2026 51069 0.4160 +2026 51071 0.8290 +2026 51073 0.6450 +2026 51116 0.4740 +2026 51149 0.4360 +2026 51154 0.5150 +2026 54474 0.7510 +2026 55173 0.4560 +2026 55253 0.4230 +2026 55272 0.7070 +2026 55276 0.6470 +2026 55316 0.4120 +2026 56160 0.6230 +2026 56965 0.6790 +2026 57103 0.6050 +2026 57136 0.5460 +2026 57469 0.6780 +2026 57591 0.4630 +2026 58157 0.4550 +2026 63931 0.4020 +2026 64960 0.4330 +2026 64963 0.5390 +2026 64969 0.4900 +2026 65008 0.4280 +2026 79631 0.5050 +2026 79668 0.6740 +2026 79677 0.6800 +2026 81570 0.5140 +2026 84076 0.8960 +2026 84530 0.4150 +2026 84706 0.4490 +2026 85476 0.5040 +2026 87178 0.6950 +2026 92483 0.5220 +2026 122622 0.4260 +2026 130752 0.5140 +2026 132158 0.9410 +2026 135228 0.4390 +2026 136332 0.6470 +2026 137902 0.5070 +2026 146713 0.6120 +2026 160287 0.5220 +2026 246243 0.5940 +2026 260425 0.4230 +2026 285855 0.4430 +2026 345651 0.4900 +2026 347487 0.4620 +2026 387129 0.4390 +2026 387712 0.6860 +2026 400566 0.7040 +2026 441282 0.5570 +2026 441531 0.9850 +2026 100287482 0.4610 +2026 100505478 0.4350 +2026 100526842 0.4030 +2027 2058 0.4170 +2027 2109 0.4230 +2027 2171 0.5540 +2027 2178 0.4350 +2027 2203 0.5520 +2027 2271 0.5300 +2027 2280 0.5240 +2027 2281 0.5680 +2027 2323 0.4670 +2027 2539 0.8510 +2027 2597 0.8490 +2027 2618 0.5440 +2027 2632 0.5350 +2027 2806 0.5660 +2027 2819 0.4280 +2027 2821 0.9820 +2027 2879 0.4160 +2027 2987 0.4280 +2027 2997 0.5030 +2027 2998 0.4910 +2027 3028 0.4260 +2027 3032 0.5410 +2027 3098 0.4130 +2027 3099 0.4040 +2027 3312 0.4150 +2027 3336 0.4310 +2027 3417 0.4740 +2027 3418 0.5150 +2027 3419 0.4810 +2027 3921 0.5430 +2027 3948 0.5980 +2027 4151 0.5540 +2027 4191 0.6630 +2027 4604 0.4090 +2027 4606 0.4030 +2027 4618 0.4100 +2027 4619 0.7300 +2027 4620 0.5730 +2027 4621 0.5140 +2027 4622 0.4580 +2027 4624 0.4320 +2027 4625 0.6910 +2027 4632 0.6780 +2027 4633 0.5400 +2027 4634 0.5780 +2027 4722 0.4030 +2027 4728 0.5030 +2027 4736 0.4480 +2027 4831 0.4830 +2027 4967 0.4680 +2027 5033 0.4360 +2027 5052 0.4270 +2027 5091 0.4080 +2027 5105 0.9580 +2027 5106 0.9600 +2027 5162 0.5720 +2027 5207 0.4960 +2027 5208 0.4350 +2027 5209 0.4680 +2027 5210 0.4930 +2027 5211 0.8290 +2027 5213 0.8610 +2027 5214 0.8320 +2027 5223 0.9890 +2027 5224 0.9890 +2027 5226 0.5500 +2027 5230 0.9390 +2027 5232 0.9300 +2027 5236 0.8670 +2027 5239 0.5510 +2027 5313 0.9830 +2027 5315 0.9890 +2027 5340 0.5800 +2027 5432 0.6150 +2027 5435 0.5780 +2027 5441 0.4960 +2027 5464 0.4040 +2027 5469 0.5290 +2027 5816 0.4490 +2027 5834 0.7110 +2027 5836 0.7270 +2027 5837 0.8060 +2027 6124 0.7510 +2027 6125 0.4880 +2027 6129 0.4590 +2027 6132 0.4120 +2027 6133 0.5290 +2027 6139 0.4030 +2027 6141 0.4190 +2027 6147 0.6160 +2027 6175 0.5190 +2027 6187 0.5000 +2027 6188 0.6890 +2027 6189 0.5000 +2027 6203 0.7100 +2027 6207 0.4590 +2027 6208 0.5370 +2027 6209 0.6480 +2027 6217 0.6470 +2027 6222 0.4590 +2027 6224 0.4520 +2027 6389 0.5230 +2027 6390 0.4760 +2027 6648 0.4520 +2027 6876 0.4830 +2027 6888 0.9160 +2027 7001 0.4640 +2027 7086 0.9120 +2027 7125 0.5690 +2027 7136 0.5790 +2027 7138 0.4640 +2027 7140 0.6100 +2027 7167 0.9630 +2027 7169 0.4090 +2027 7273 0.5650 +2027 7284 0.5310 +2027 7360 0.4980 +2027 7384 0.5480 +2027 7407 0.4350 +2027 8277 0.9000 +2027 8557 0.4410 +2027 8736 0.4240 +2027 8789 0.5900 +2027 8802 0.5560 +2027 8803 0.4660 +2027 9343 0.5090 +2027 9349 0.5640 +2027 9380 0.5910 +2027 9512 0.4050 +2027 9533 0.6150 +2027 9562 0.9040 +2027 9563 0.8820 +2027 9588 0.4100 +2027 9657 0.4110 +2027 9858 0.4660 +2027 10102 0.4600 +2027 10449 0.5140 +2027 10935 0.6500 +2027 22934 0.4750 +2027 22984 0.5370 +2027 23521 0.4790 +2027 23676 0.4100 +2027 26292 0.4660 +2027 26330 0.7310 +2027 28998 0.4670 +2027 29093 0.4030 +2027 29114 0.4660 +2027 29889 0.4880 +2027 29895 0.6170 +2027 29968 0.4030 +2027 50808 0.4670 +2027 51069 0.4140 +2027 51071 0.8340 +2027 51073 0.6450 +2027 51116 0.4660 +2027 51149 0.4350 +2027 51154 0.5190 +2027 55173 0.4520 +2027 55272 0.7080 +2027 55276 0.4560 +2027 55316 0.4020 +2027 56474 0.4220 +2027 56965 0.6790 +2027 57103 0.6100 +2027 57136 0.5380 +2027 57469 0.6630 +2027 57591 0.4480 +2027 58529 0.4840 +2027 64960 0.4370 +2027 64963 0.5370 +2027 64969 0.4890 +2027 65008 0.4260 +2027 65018 0.4300 +2027 79631 0.5010 +2027 79668 0.6740 +2027 84076 0.8990 +2027 84676 0.6400 +2027 84959 0.4110 +2027 85476 0.5010 +2027 87178 0.7040 +2027 91977 0.4880 +2027 92483 0.6130 +2027 122622 0.6310 +2027 129831 0.4010 +2027 130589 0.4290 +2027 130752 0.5300 +2027 132158 0.9420 +2027 136332 0.6470 +2027 160287 0.5990 +2027 246243 0.5940 +2027 260425 0.4230 +2027 285855 0.4750 +2027 347487 0.4620 +2027 387129 0.4390 +2027 387712 0.7090 +2027 441531 0.9860 +2027 100287482 0.4610 +2027 100505478 0.4350 +2027 100526842 0.4030 +2028 2065 0.4410 +2028 2335 0.4250 +2028 2697 0.4420 +2028 2896 0.5620 +2028 3426 0.6830 +2028 3458 0.4180 +2028 3558 0.4100 +2028 3586 0.5410 +2028 3671 0.4180 +2028 3684 0.4450 +2028 3700 0.8840 +2028 3827 0.4120 +2028 4015 0.4240 +2028 4311 0.5580 +2028 4811 0.4230 +2028 5008 0.4500 +2028 5045 0.6430 +2028 5159 0.4270 +2028 5214 0.4230 +2028 5265 0.5110 +2028 5340 0.5450 +2028 5371 0.4370 +2028 5547 0.4260 +2028 5550 0.5540 +2028 5607 0.4800 +2028 5743 0.4060 +2028 5972 0.6520 +2028 6051 0.4950 +2028 6348 0.5050 +2028 6382 0.4410 +2028 6476 0.4640 +2028 6590 0.5160 +2028 7064 0.5310 +2028 7075 0.4040 +2028 7099 0.4480 +2028 7174 0.4340 +2028 7448 0.5550 +2028 7511 0.4850 +2028 7512 0.4310 +2028 7852 0.9010 +2028 8029 0.4230 +2028 8972 0.4540 +2028 10096 0.4380 +2028 10159 0.4790 +2028 23436 0.4810 +2028 23549 0.7110 +2028 25884 0.6770 +2028 27294 0.5730 +2028 30835 0.8410 +2028 51056 0.5490 +2028 51284 0.4020 +2028 51806 0.7820 +2028 54858 0.4190 +2028 55170 0.4420 +2028 55210 0.4030 +2028 57486 0.4380 +2028 59272 0.7680 +2028 63929 0.4590 +2028 65124 0.4170 +2028 79258 0.5120 +2028 79966 0.5750 +2028 91860 0.7820 +2028 116512 0.4230 +2028 163688 0.7820 +2028 728378 0.4440 +2029 3767 0.4420 +2029 5501 0.4140 +2029 5515 0.8620 +2029 5516 0.6830 +2029 5518 0.8900 +2029 5519 0.6360 +2029 5520 0.8540 +2029 5521 0.6130 +2029 5525 0.4130 +2029 5527 0.4230 +2029 5528 0.4420 +2029 5537 0.4550 +2029 5885 0.4620 +2029 6391 0.4650 +2029 6622 0.6000 +2029 6801 0.5090 +2029 6833 0.8220 +2029 7137 0.4240 +2029 7465 0.5830 +2029 8125 0.4050 +2029 9150 0.4660 +2029 9232 0.5170 +2029 9605 0.4450 +2029 9700 0.5260 +2029 9985 0.5600 +2029 10735 0.4740 +2029 10776 0.5650 +2029 10777 0.6700 +2029 23031 0.4960 +2029 25912 0.4070 +2029 50488 0.8980 +2029 55844 0.9880 +2029 57650 0.5170 +2029 79760 0.4170 +2029 84152 0.6340 +2029 84930 0.9950 +2029 90381 0.4280 +2029 91272 0.5130 +2029 150677 0.4440 +2029 151246 0.5580 +2029 151648 0.5510 +2029 388849 0.5140 +2030 2067 0.4140 +2030 2597 0.5020 +2030 3177 0.9130 +2030 3251 0.4350 +2030 3352 0.4290 +2030 3704 0.4120 +2030 3845 0.4540 +2030 4363 0.4200 +2030 4891 0.4970 +2030 4907 0.5350 +2030 5243 0.4700 +2030 6007 0.4310 +2030 6240 0.7030 +2030 6241 0.6080 +2030 6506 0.4050 +2030 6564 0.4020 +2030 6565 0.4070 +2030 6571 0.5380 +2030 6573 0.4590 +2030 6579 0.4280 +2030 6580 0.4380 +2030 6582 0.4400 +2030 6583 0.5640 +2030 6584 0.5630 +2030 7083 0.6280 +2030 7084 0.4400 +2030 7157 0.4110 +2030 7298 0.5600 +2030 7433 0.4910 +2030 8714 0.4110 +2030 8859 0.4200 +2030 9153 0.8850 +2030 9154 0.8950 +2030 9290 0.4360 +2030 9376 0.4060 +2030 9429 0.5240 +2030 10057 0.5630 +2030 10227 0.4330 +2030 10257 0.5340 +2030 10599 0.4270 +2030 10864 0.5390 +2030 11309 0.4900 +2030 22978 0.5800 +2030 28231 0.4580 +2030 28232 0.4210 +2030 29015 0.4930 +2030 30833 0.4040 +2030 51727 0.5150 +2030 51806 0.6440 +2030 55244 0.4210 +2030 55315 0.9190 +2030 64078 0.8940 +2030 64805 0.5710 +2030 84174 0.6360 +2030 84804 0.4100 +2030 85413 0.4560 +2030 91860 0.6440 +2030 114571 0.4820 +2030 163688 0.6440 +2030 219623 0.4210 +2030 222962 0.6050 +2033 2034 0.9980 +2033 2056 0.6990 +2033 2064 0.6520 +2033 2073 0.8690 +2033 2074 0.8600 +2033 2078 0.4280 +2033 2099 0.9970 +2033 2100 0.8110 +2033 2103 0.5070 +2033 2104 0.4650 +2033 2113 0.9540 +2033 2114 0.7950 +2033 2115 0.6380 +2033 2118 0.5750 +2033 2130 0.8020 +2033 2145 0.5760 +2033 2146 0.9630 +2033 2167 0.5790 +2033 2173 0.4500 +2033 2186 0.5170 +2033 2195 0.4390 +2033 2237 0.8790 +2033 2263 0.4730 +2033 2288 0.5740 +2033 2296 0.4840 +2033 2305 0.9570 +2033 2308 0.9840 +2033 2309 0.9910 +2033 2314 0.6460 +2033 2335 0.4470 +2033 2353 0.9640 +2033 2354 0.7350 +2033 2355 0.5420 +2033 2475 0.6380 +2033 2487 0.4540 +2033 2494 0.5750 +2033 2521 0.7630 +2033 2534 0.5230 +2033 2539 0.5660 +2033 2547 0.6100 +2033 2551 0.7430 +2033 2597 0.7870 +2033 2623 0.9840 +2033 2624 0.7660 +2033 2625 0.9590 +2033 2626 0.9730 +2033 2627 0.5240 +2033 2648 0.9940 +2033 2668 0.4650 +2033 2729 0.5520 +2033 2730 0.5650 +2033 2735 0.4020 +2033 2736 0.6360 +2033 2737 0.5780 +2033 2811 0.4030 +2033 2874 0.8400 +2033 2885 0.6010 +2033 2908 0.9140 +2033 2932 0.5460 +2033 2938 0.5130 +2033 2957 0.5080 +2033 2958 0.5010 +2033 2959 0.9660 +2033 2975 0.5080 +2033 2976 0.4530 +2033 3002 0.5770 +2033 3005 0.4700 +2033 3007 0.5500 +2033 3010 0.4090 +2033 3012 0.9830 +2033 3013 0.5070 +2033 3014 0.7130 +2033 3015 0.7530 +2033 3017 0.6140 +2033 3018 0.9330 +2033 3021 0.9620 +2033 3024 0.5510 +2033 3050 0.8600 +2033 3054 0.7490 +2033 3064 0.6430 +2033 3065 0.9990 +2033 3066 0.9440 +2033 3090 0.5370 +2033 3091 0.9990 +2033 3146 0.4560 +2033 3150 0.9470 +2033 3151 0.4200 +2033 3164 0.9840 +2033 3169 0.9330 +2033 3172 0.9780 +2033 3176 0.4480 +2033 3181 0.4390 +2033 3191 0.4720 +2033 3192 0.8210 +2033 3198 0.5460 +2033 3201 0.5350 +2033 3205 0.5780 +2033 3211 0.5720 +2033 3213 0.5610 +2033 3214 0.5550 +2033 3233 0.6570 +2033 3265 0.5950 +2033 3276 0.9940 +2033 3280 0.5850 +2033 3297 0.6640 +2033 3303 0.5830 +2033 3304 0.6040 +2033 3305 0.4220 +2033 3306 0.4130 +2033 3309 0.6220 +2033 3312 0.6910 +2033 3320 0.8090 +2033 3326 0.7390 +2033 3337 0.4860 +2033 3394 0.4260 +2033 3397 0.6410 +2033 3399 0.6280 +2033 3428 0.4240 +2033 3439 0.6600 +2033 3440 0.5690 +2033 3441 0.5500 +2033 3442 0.5390 +2033 3443 0.5400 +2033 3444 0.5350 +2033 3445 0.5380 +2033 3446 0.5340 +2033 3448 0.5370 +2033 3449 0.5390 +2033 3451 0.5650 +2033 3452 0.5390 +2033 3454 0.4040 +2033 3455 0.4100 +2033 3456 0.6830 +2033 3458 0.4510 +2033 3480 0.4230 +2033 3516 0.9800 +2033 3551 0.4740 +2033 3552 0.4890 +2033 3553 0.7100 +2033 3569 0.4800 +2033 3576 0.5530 +2033 3608 0.6240 +2033 3621 0.4800 +2033 3622 0.9290 +2033 3630 0.4350 +2033 3659 0.9840 +2033 3660 0.5700 +2033 3661 0.9990 +2033 3662 0.7150 +2033 3663 0.5050 +2033 3665 0.9790 +2033 3674 0.5170 +2033 3685 0.5790 +2033 3707 0.4770 +2033 3716 0.4560 +2033 3717 0.4560 +2033 3720 0.4150 +2033 3725 0.9990 +2033 3726 0.8550 +2033 3727 0.9330 +2033 3728 0.4080 +2033 3838 0.4410 +2033 3845 0.7570 +2033 3952 0.5950 +2033 3960 0.4790 +2033 3978 0.4940 +2033 3980 0.4990 +2033 4005 0.6910 +2033 4023 0.5510 +2033 4066 0.8710 +2033 4086 0.8350 +2033 4087 0.9870 +2033 4088 0.9990 +2033 4089 0.9940 +2033 4090 0.6360 +2033 4091 0.5030 +2033 4092 0.8420 +2033 4094 0.7290 +2033 4097 0.6010 +2033 4110 0.7090 +2033 4137 0.7140 +2033 4149 0.7120 +2033 4170 0.6750 +2033 4171 0.4070 +2033 4172 0.4780 +2033 4173 0.4160 +2033 4174 0.4580 +2033 4193 0.9990 +2033 4194 0.5620 +2033 4204 0.5170 +2033 4205 0.9890 +2033 4208 0.8060 +2033 4209 0.9230 +2033 4211 0.7750 +2033 4255 0.4590 +2033 4261 0.5440 +2033 4286 0.8770 +2033 4287 0.6240 +2033 4297 0.8310 +2033 4299 0.4380 +2033 4300 0.4080 +2033 4303 0.9830 +2033 4306 0.4170 +2033 4343 0.5700 +2033 4435 0.9750 +2033 4520 0.4280 +2033 4602 0.9960 +2033 4605 0.5380 +2033 4609 0.9990 +2033 4613 0.5750 +2033 4641 0.5030 +2033 4654 0.9910 +2033 4656 0.5170 +2033 4673 0.7740 +2033 4691 0.4960 +2033 4734 0.4440 +2033 4760 0.8450 +2033 4762 0.5980 +2033 4763 0.5010 +2033 4772 0.7120 +2033 4773 0.6050 +2033 4776 0.4560 +2033 4780 0.9330 +2033 4783 0.4980 +2033 4790 0.9980 +2033 4792 0.7340 +2033 4793 0.4850 +2033 4800 0.9390 +2033 4801 0.9040 +2033 4802 0.6070 +2033 4841 0.4460 +2033 4851 0.9400 +2033 4853 0.8140 +2033 4854 0.6560 +2033 4855 0.7420 +2033 4862 0.9480 +2033 4869 0.7880 +2033 4893 0.5960 +2033 4904 0.8980 +2033 4928 0.7090 +2033 5079 0.6940 +2033 5080 0.8880 +2033 5087 0.6800 +2033 5105 0.7100 +2033 5111 0.9000 +2033 5142 0.4290 +2033 5159 0.5240 +2033 5170 0.4010 +2033 5226 0.5880 +2033 5241 0.7760 +2033 5290 0.5260 +2033 5291 0.4170 +2033 5295 0.6530 +2033 5296 0.4680 +2033 5300 0.4100 +2033 5315 0.7250 +2033 5316 0.5760 +2033 5325 0.5980 +2033 5346 0.5230 +2033 5347 0.6540 +2033 5371 0.8520 +2033 5423 0.4350 +2033 5434 0.5180 +2033 5435 0.6020 +2033 5437 0.5220 +2033 5440 0.5130 +2033 5441 0.5230 +2033 5451 0.9170 +2033 5454 0.4100 +2033 5460 0.5240 +2033 5465 0.8290 +2033 5467 0.6420 +2033 5468 0.9970 +2033 5469 0.9180 +2033 5515 0.4170 +2033 5527 0.4060 +2033 5562 0.4060 +2033 5566 0.8510 +2033 5567 0.8500 +2033 5568 0.8490 +2033 5578 0.6490 +2033 5579 0.6510 +2033 5580 0.4400 +2033 5591 0.5980 +2033 5594 0.8180 +2033 5595 0.6550 +2033 5599 0.7000 +2033 5604 0.5220 +2033 5629 0.7030 +2033 5728 0.5960 +2033 5743 0.6920 +2033 5757 0.7750 +2033 5829 0.4200 +2033 5885 0.7540 +2033 5888 0.5330 +2033 5914 0.8830 +2033 5915 0.5050 +2033 5917 0.4970 +2033 5925 0.8080 +2033 5927 0.5990 +2033 5928 0.6920 +2033 5929 0.7680 +2033 5931 0.6760 +2033 5934 0.6330 +2033 5955 0.4680 +2033 5966 0.9030 +2033 5970 0.9990 +2033 5971 0.6540 +2033 5978 0.7660 +2033 5987 0.4310 +2033 6046 0.6450 +2033 6095 0.9600 +2033 6096 0.4180 +2033 6097 0.6040 +2033 6117 0.4660 +2033 6193 0.4350 +2033 6195 0.5230 +2033 6198 0.4830 +2033 6199 0.4150 +2033 6231 0.5690 +2033 6233 0.6880 +2033 6237 0.4150 +2033 6256 0.9340 +2033 6257 0.6860 +2033 6258 0.7100 +2033 6304 0.6900 +2033 6314 0.4160 +2033 6391 0.4330 +2033 6401 0.4470 +2033 6426 0.5500 +2033 6464 0.4780 +2033 6478 0.4390 +2033 6500 0.7320 +2033 6502 0.9420 +2033 6513 0.4180 +2033 6517 0.5930 +2033 6594 0.5630 +2033 6595 0.6160 +2033 6597 0.9690 +2033 6598 0.6720 +2033 6599 0.7020 +2033 6601 0.5080 +2033 6612 0.4480 +2033 6613 0.5610 +2033 6615 0.8470 +2033 6654 0.5270 +2033 6657 0.7050 +2033 6659 0.4550 +2033 6660 0.4970 +2033 6662 0.9400 +2033 6667 0.9990 +2033 6670 0.7350 +2033 6688 0.9460 +2033 6689 0.4560 +2033 6714 0.9590 +2033 6720 0.9630 +2033 6721 0.4360 +2033 6722 0.4080 +2033 6736 0.4680 +2033 6760 0.4300 +2033 6772 0.9980 +2033 6773 0.9370 +2033 6774 0.9990 +2033 6775 0.7240 +2033 6776 0.9460 +2033 6777 0.9070 +2033 6778 0.9450 +2033 6790 0.6520 +2033 6794 0.4110 +2033 6837 0.5180 +2033 6839 0.7340 +2033 6871 0.4160 +2033 6872 0.6160 +2033 6874 0.6720 +2033 6886 0.8890 +2033 6900 0.5070 +2033 6907 0.6290 +2033 6908 0.9460 +2033 6911 0.5090 +2033 6917 0.9110 +2033 6921 0.5190 +2033 6923 0.5260 +2033 6925 0.6600 +2033 6927 0.8240 +2033 6928 0.5110 +2033 6929 0.9410 +2033 6932 0.9280 +2033 6934 0.9750 +2033 6938 0.9120 +2033 6996 0.8900 +2033 7003 0.5370 +2033 7004 0.8520 +2033 7005 0.4540 +2033 7013 0.4010 +2033 7014 0.4180 +2033 7015 0.4010 +2033 7021 0.5210 +2033 7022 0.6370 +2033 7026 0.8470 +2033 7027 0.5850 +2033 7029 0.5340 +2033 7031 0.6670 +2033 7033 0.5280 +2033 7039 0.5700 +2033 7040 0.7930 +2033 7046 0.7120 +2033 7048 0.6110 +2033 7057 0.7060 +2033 7067 0.7850 +2033 7068 0.7310 +2033 7088 0.6350 +2033 7089 0.5660 +2033 7090 0.8550 +2033 7091 0.6050 +2033 7124 0.6380 +2033 7132 0.5300 +2033 7155 0.4100 +2033 7157 0.9990 +2033 7158 0.4540 +2033 7159 0.4130 +2033 7161 0.9270 +2033 7187 0.4050 +2033 7189 0.4290 +2033 7251 0.6530 +2033 7291 0.8860 +2033 7295 0.8190 +2033 7296 0.5590 +2033 7311 0.5190 +2033 7314 0.5330 +2033 7316 0.7910 +2033 7321 0.5950 +2033 7329 0.8090 +2033 7337 0.6310 +2033 7341 0.8280 +2033 7343 0.4220 +2033 7350 0.4120 +2033 7376 0.6040 +2033 7391 0.9120 +2033 7392 0.8900 +2033 7403 0.9020 +2033 7425 0.5310 +2033 7428 0.8810 +2033 7468 0.6680 +2033 7507 0.9280 +2033 7514 0.6460 +2033 7515 0.5550 +2033 7520 0.7160 +2033 7528 0.9990 +2033 7534 0.5250 +2033 7703 0.6120 +2033 7704 0.8440 +2033 7707 0.7840 +2033 7709 0.8180 +2033 7755 0.4290 +2033 7764 0.6340 +2033 7799 0.7130 +2033 7849 0.6380 +2033 7855 0.4460 +2033 7862 0.6160 +2033 7874 0.6230 +2033 7913 0.7040 +2033 7917 0.4170 +2033 7975 0.7920 +2033 7994 0.9560 +2033 8019 0.5910 +2033 8021 0.4940 +2033 8061 0.8030 +2033 8085 0.8960 +2033 8115 0.6350 +2033 8148 0.4490 +2033 8178 0.8030 +2033 8202 0.9990 +2033 8204 0.8800 +2033 8242 0.5040 +2033 8243 0.7860 +2033 8289 0.8550 +2033 8290 0.9660 +2033 8294 0.9280 +2033 8295 0.7580 +2033 8312 0.4160 +2033 8329 0.5680 +2033 8331 0.5070 +2033 8334 0.5360 +2033 8335 0.8030 +2033 8337 0.7850 +2033 8338 0.9520 +2033 8340 0.6110 +2033 8341 0.6010 +2033 8342 0.6060 +2033 8345 0.6020 +2033 8347 0.6160 +2033 8348 0.6040 +2033 8349 0.9600 +2033 8350 0.9980 +2033 8351 0.8140 +2033 8352 0.8470 +2033 8353 0.8490 +2033 8354 0.8140 +2033 8355 0.8140 +2033 8356 0.9840 +2033 8357 0.8140 +2033 8358 0.8270 +2033 8359 0.9050 +2033 8360 0.9030 +2033 8361 0.9990 +2033 8362 0.9030 +2033 8363 0.9050 +2033 8364 0.9030 +2033 8366 0.9060 +2033 8367 0.9030 +2033 8368 0.9040 +2033 8369 0.7410 +2033 8370 0.9290 +2033 8451 0.5300 +2033 8452 0.4660 +2033 8453 0.5620 +2033 8454 0.6990 +2033 8462 0.4340 +2033 8463 0.4880 +2033 8467 0.7940 +2033 8520 0.5520 +2033 8553 0.5250 +2033 8554 0.5730 +2033 8607 0.5570 +2033 8626 0.8500 +2033 8648 0.9990 +2033 8651 0.5760 +2033 8678 0.6020 +2033 8726 0.6320 +2033 8772 0.5210 +2033 8815 0.5750 +2033 8841 0.9580 +2033 8850 0.9990 +2033 8856 0.4280 +2033 8861 0.6530 +2033 8863 0.4560 +2033 8864 0.5590 +2033 8877 0.6150 +2033 8928 0.5280 +2033 8945 0.7410 +2033 8968 0.8140 +2033 8970 0.9680 +2033 8988 0.4520 +2033 9013 0.5230 +2033 9014 0.6320 +2033 9015 0.5170 +2033 9031 0.7720 +2033 9070 0.7510 +2033 9079 0.5960 +2033 9111 0.4010 +2033 9112 0.5260 +2033 9126 0.7480 +2033 9149 0.7080 +2033 9188 0.5950 +2033 9208 0.5390 +2033 9212 0.4390 +2033 9219 0.6160 +2033 9252 0.7110 +2033 9282 0.5850 +2033 9314 0.9450 +2033 9320 0.4020 +2033 9370 0.5780 +2033 9401 0.6090 +2033 9412 0.5110 +2033 9439 0.6480 +2033 9440 0.5850 +2033 9441 0.5940 +2033 9442 0.5500 +2033 9443 0.5340 +2033 9464 0.5760 +2033 9475 0.6060 +2033 9477 0.5260 +2033 9533 0.5830 +2033 9572 0.7660 +2033 9575 0.9940 +2033 9586 0.9240 +2033 9611 0.9590 +2033 9612 0.8770 +2033 9623 0.4930 +2033 9669 0.4350 +2033 9682 0.6160 +2033 9687 0.8820 +2033 9734 0.9640 +2033 9739 0.8540 +2033 9757 0.7550 +2033 9759 0.8870 +2033 9794 0.9970 +2033 9817 0.5470 +2033 9839 0.5240 +2033 9862 0.5150 +2033 9869 0.5290 +2033 9915 0.7930 +2033 9939 0.4020 +2033 9968 0.8050 +2033 9969 0.6660 +2033 9971 0.5250 +2033 9975 0.4980 +2033 9978 0.6600 +2033 10001 0.7030 +2033 10009 0.4980 +2033 10013 0.9900 +2033 10014 0.8210 +2033 10018 0.6800 +2033 10025 0.5520 +2033 10036 0.5100 +2033 10046 0.5230 +2033 10062 0.7230 +2033 10075 0.5120 +2033 10155 0.6540 +2033 10273 0.4190 +2033 10274 0.5290 +2033 10320 0.4370 +2033 10365 0.7800 +2033 10370 0.9990 +2033 10379 0.5890 +2033 10399 0.4630 +2033 10401 0.8110 +2033 10413 0.6920 +2033 10419 0.7800 +2033 10432 0.4190 +2033 10474 0.7910 +2033 10488 0.9490 +2033 10498 0.9990 +2033 10499 0.9980 +2033 10514 0.6890 +2033 10521 0.8700 +2033 10524 0.9660 +2033 10533 0.5090 +2033 10538 0.4080 +2033 10628 0.5360 +2033 10661 0.7580 +2033 10664 0.9590 +2033 10724 0.7120 +2033 10725 0.5860 +2033 10728 0.5290 +2033 10735 0.7940 +2033 10765 0.4360 +2033 10847 0.9110 +2033 10848 0.5680 +2033 10849 0.5030 +2033 10856 0.6820 +2033 10891 0.9900 +2033 10919 0.7640 +2033 10923 0.6970 +2033 10933 0.4100 +2033 11073 0.5450 +2033 11091 0.8960 +2033 11143 0.8220 +2033 11171 0.4570 +2033 11176 0.5130 +2033 11177 0.4520 +2033 11201 0.4580 +2033 11279 0.6530 +2033 11317 0.9250 +2033 22809 0.4530 +2033 22890 0.4250 +2033 22909 0.4090 +2033 22933 0.9070 +2033 22938 0.8230 +2033 22976 0.7340 +2033 22992 0.7710 +2033 23013 0.6160 +2033 23028 0.8990 +2033 23054 0.9110 +2033 23067 0.7340 +2033 23097 0.5590 +2033 23112 0.6290 +2033 23129 0.5000 +2033 23131 0.4080 +2033 23135 0.7540 +2033 23186 0.4850 +2033 23309 0.6440 +2033 23314 0.4170 +2033 23358 0.4030 +2033 23373 0.4600 +2033 23389 0.7290 +2033 23394 0.4270 +2033 23405 0.4720 +2033 23408 0.4700 +2033 23409 0.4380 +2033 23410 0.5110 +2033 23411 0.9720 +2033 23414 0.4200 +2033 23426 0.7100 +2033 23450 0.4290 +2033 23451 0.6070 +2033 23462 0.7300 +2033 23476 0.9880 +2033 23493 0.5740 +2033 23512 0.7450 +2033 23522 0.7290 +2033 23523 0.4920 +2033 23524 0.5090 +2033 23657 0.5430 +2033 23683 0.4030 +2033 23741 0.8780 +2033 23774 0.6100 +2033 25836 0.4710 +2033 25842 0.6370 +2033 25855 0.4070 +2033 25885 0.5260 +2033 25937 0.4890 +2033 25942 0.8160 +2033 26039 0.4300 +2033 26053 0.6960 +2033 26108 0.5090 +2033 26168 0.6470 +2033 26227 0.4890 +2033 26273 0.5590 +2033 26471 0.7810 +2033 26508 0.5330 +2033 26523 0.5640 +2033 26524 0.4410 +2033 27033 0.4150 +2033 27043 0.6680 +2033 27125 0.4020 +2033 27154 0.5870 +2033 27161 0.6330 +2033 27327 0.6110 +2033 28996 0.8860 +2033 28999 0.7160 +2033 29072 0.7610 +2033 29079 0.7470 +2033 29117 0.9250 +2033 29950 0.5050 +2033 30009 0.6740 +2033 30827 0.4240 +2033 30834 0.4990 +2033 50943 0.8910 +2033 51003 0.5050 +2033 51008 0.5040 +2033 51043 0.4440 +2033 51082 0.4990 +2033 51085 0.8150 +2033 51129 0.5700 +2033 51147 0.8790 +2033 51176 0.9810 +2033 51341 0.4770 +2033 51430 0.6870 +2033 51433 0.7540 +2033 51434 0.4990 +2033 51547 0.5170 +2033 51548 0.5530 +2033 51564 0.9400 +2033 51586 0.7710 +2033 51621 0.6690 +2033 51773 0.5100 +2033 51780 0.4340 +2033 53335 0.5800 +2033 53615 0.4560 +2033 54145 0.6030 +2033 54541 0.4700 +2033 54556 0.5670 +2033 54583 0.6520 +2033 54784 0.5350 +2033 54790 0.5550 +2033 54797 0.5220 +2033 54815 0.5610 +2033 54881 0.5390 +2033 55090 0.5550 +2033 55128 0.5620 +2033 55140 0.4920 +2033 55170 0.6600 +2033 55193 0.5910 +2033 55209 0.4960 +2033 55294 0.7550 +2033 55534 0.9340 +2033 55553 0.4630 +2033 55588 0.5120 +2033 55636 0.4420 +2033 55659 0.4610 +2033 55662 0.6300 +2033 55766 0.5070 +2033 55809 0.6010 +2033 55818 0.7430 +2033 55869 0.7730 +2033 55870 0.4940 +2033 55902 0.5970 +2033 55904 0.7490 +2033 56949 0.6410 +2033 56980 0.4690 +2033 57332 0.4720 +2033 57448 0.4170 +2033 57459 0.6330 +2033 57492 0.6000 +2033 57521 0.4920 +2033 57591 0.7100 +2033 57593 0.4440 +2033 57634 0.8590 +2033 57658 0.5700 +2033 57680 0.5970 +2033 57696 0.4300 +2033 58508 0.8840 +2033 59348 0.4500 +2033 63970 0.4700 +2033 64324 0.6490 +2033 64344 0.7260 +2033 64425 0.5350 +2033 64641 0.4500 +2033 64764 0.9220 +2033 64769 0.5900 +2033 64919 0.6680 +2033 65056 0.4520 +2033 79035 0.5450 +2033 79101 0.5110 +2033 79365 0.4640 +2033 79443 0.5170 +2033 79447 0.5400 +2033 79718 0.6700 +2033 79753 0.7810 +2033 79813 0.4550 +2033 79885 0.8510 +2033 79923 0.5900 +2033 80204 0.5290 +2033 80306 0.5110 +2033 80312 0.5230 +2033 80854 0.5530 +2033 81620 0.4070 +2033 81857 0.5920 +2033 83439 0.9480 +2033 83741 0.5620 +2033 83855 0.4260 +2033 83933 0.7260 +2033 84148 0.6530 +2033 84172 0.5260 +2033 84181 0.6330 +2033 84246 0.4990 +2033 84260 0.4920 +2033 84289 0.9340 +2033 84333 0.4790 +2033 84433 0.4190 +2033 84441 0.9500 +2033 84444 0.6760 +2033 84532 0.5270 +2033 84661 0.6190 +2033 84678 0.4900 +2033 84699 0.9120 +2033 84962 0.5550 +2033 85235 0.5070 +2033 85236 0.9590 +2033 90390 0.5280 +2033 90993 0.9170 +2033 91875 0.9900 +2033 92140 0.4470 +2033 92292 0.6350 +2033 92552 0.4740 +2033 92815 0.5070 +2033 93166 0.6070 +2033 93624 0.5400 +2033 93649 0.8030 +2033 94239 0.5940 +2033 96764 0.7940 +2033 112398 0.4530 +2033 112399 0.6480 +2033 112950 0.5520 +2033 114799 0.4320 +2033 114803 0.8390 +2033 116931 0.4700 +2033 121504 0.9030 +2033 122953 0.5350 +2033 128312 0.6030 +2033 133482 0.4750 +2033 133746 0.9950 +2033 134637 0.7200 +2033 135112 0.4420 +2033 140690 0.4610 +2033 148327 0.9160 +2033 157570 0.4210 +2033 161882 0.6250 +2033 163126 0.4430 +2033 163732 0.9550 +2033 171017 0.6700 +2033 171023 0.4040 +2033 192669 0.5400 +2033 192670 0.5490 +2033 196528 0.4400 +2033 200186 0.9610 +2033 221613 0.5070 +2033 221830 0.5040 +2033 221937 0.4060 +2033 252969 0.4420 +2033 253260 0.5660 +2033 253738 0.4250 +2033 255626 0.6110 +2033 256646 0.8760 +2033 284058 0.4060 +2033 317772 0.7480 +2033 339488 0.5180 +2033 343930 0.4990 +2033 375341 0.6200 +2033 387032 0.5320 +2033 387893 0.4070 +2033 388585 0.5740 +2033 400569 0.5230 +2033 440093 0.8490 +2033 440686 0.8490 +2033 440689 0.5270 +2033 474382 0.5470 +2033 493861 0.4860 +2033 554313 0.9030 +2033 653604 0.9220 +2033 100132074 0.4130 +2033 100271849 0.5590 +2033 100288687 0.6890 +2033 100532731 0.4170 +2034 2056 0.9390 +2034 2057 0.6470 +2034 2064 0.4350 +2034 2099 0.7240 +2034 2100 0.5690 +2034 2113 0.5790 +2034 2118 0.4320 +2034 2203 0.4280 +2034 2247 0.4990 +2034 2252 0.4020 +2034 2271 0.7990 +2034 2308 0.4690 +2034 2309 0.4870 +2034 2321 0.6320 +2034 2324 0.4040 +2034 2335 0.6690 +2034 2475 0.7280 +2034 2487 0.5560 +2034 2547 0.4200 +2034 2597 0.5320 +2034 2908 0.7180 +2034 3046 0.4050 +2034 3065 0.5000 +2034 3066 0.4430 +2034 3091 0.9980 +2034 3099 0.4270 +2034 3162 0.6160 +2034 3172 0.6670 +2034 3265 0.4100 +2034 3308 0.6750 +2034 3320 0.8450 +2034 3326 0.7910 +2034 3383 0.5540 +2034 3417 0.4890 +2034 3418 0.4170 +2034 3479 0.6410 +2034 3480 0.4320 +2034 3551 0.5200 +2034 3553 0.5130 +2034 3569 0.5680 +2034 3576 0.4500 +2034 3630 0.6340 +2034 3646 0.6540 +2034 3658 0.5200 +2034 3663 0.4910 +2034 3672 0.4720 +2034 3692 0.4100 +2034 3717 0.4060 +2034 3725 0.7160 +2034 3791 0.6370 +2034 3815 0.4270 +2034 3838 0.4420 +2034 3845 0.4200 +2034 4015 0.6640 +2034 4077 0.7860 +2034 4087 0.7870 +2034 4088 0.8010 +2034 4089 0.6550 +2034 4149 0.7040 +2034 4151 0.5110 +2034 4191 0.4770 +2034 4233 0.4620 +2034 4286 0.4650 +2034 4313 0.4960 +2034 4314 0.4670 +2034 4318 0.5080 +2034 4322 0.5420 +2034 4609 0.9320 +2034 4613 0.4260 +2034 4738 0.6000 +2034 4763 0.5060 +2034 4780 0.4400 +2034 4790 0.4650 +2034 4846 0.4080 +2034 4851 0.6530 +2034 4891 0.5790 +2034 4948 0.4050 +2034 5033 0.6120 +2034 5054 0.6700 +2034 5087 0.7190 +2034 5155 0.4240 +2034 5159 0.4750 +2034 5163 0.6640 +2034 5175 0.4920 +2034 5209 0.4350 +2034 5228 0.4200 +2034 5230 0.5600 +2034 5290 0.4590 +2034 5315 0.6160 +2034 5336 0.4070 +2034 5460 0.9550 +2034 5465 0.5260 +2034 5468 0.5340 +2034 5562 0.4720 +2034 5595 0.4500 +2034 5682 0.4070 +2034 5684 0.4070 +2034 5685 0.4360 +2034 5686 0.4070 +2034 5687 0.4380 +2034 5688 0.4590 +2034 5689 0.4950 +2034 5690 0.4070 +2034 5691 0.4070 +2034 5693 0.4130 +2034 5694 0.4020 +2034 5695 0.4110 +2034 5696 0.4400 +2034 5698 0.4090 +2034 5699 0.4110 +2034 5701 0.4180 +2034 5702 0.7060 +2034 5704 0.4280 +2034 5706 0.4200 +2034 5707 0.6070 +2034 5708 0.4360 +2034 5713 0.4260 +2034 5716 0.4380 +2034 5717 0.4230 +2034 5718 0.4080 +2034 5720 0.4250 +2034 5721 0.4320 +2034 5728 0.5530 +2034 5743 0.4320 +2034 5753 0.8280 +2034 5868 0.5000 +2034 5936 0.9910 +2034 5979 0.5160 +2034 6198 0.4410 +2034 6233 0.5200 +2034 6256 0.5130 +2034 6347 0.4140 +2034 6387 0.5210 +2034 6389 0.5210 +2034 6390 0.5840 +2034 6391 0.5590 +2034 6392 0.5980 +2034 6478 0.4810 +2034 6513 0.8880 +2034 6515 0.5100 +2034 6591 0.4860 +2034 6615 0.5300 +2034 6648 0.4140 +2034 6657 0.8740 +2034 6662 0.4930 +2034 6663 0.6050 +2034 6667 0.8920 +2034 6696 0.4010 +2034 6714 0.4170 +2034 6720 0.4100 +2034 6772 0.5780 +2034 6773 0.4420 +2034 6774 0.5970 +2034 6776 0.4130 +2034 6913 0.4140 +2034 6921 0.9950 +2034 6923 0.9950 +2034 7010 0.6010 +2034 7036 0.4110 +2034 7037 0.5180 +2034 7039 0.4980 +2034 7040 0.4590 +2034 7046 0.5620 +2034 7048 0.4120 +2034 7068 0.4870 +2034 7078 0.4080 +2034 7124 0.4610 +2034 7130 0.4700 +2034 7157 0.7360 +2034 7291 0.6390 +2034 7311 0.4990 +2034 7314 0.5230 +2034 7316 0.6100 +2034 7321 0.5280 +2034 7322 0.5430 +2034 7323 0.5420 +2034 7341 0.6010 +2034 7391 0.5100 +2034 7392 0.4740 +2034 7424 0.4710 +2034 7428 0.9990 +2034 7450 0.5310 +2034 7812 0.4200 +2034 7837 0.5080 +2034 7852 0.5060 +2034 8453 0.9670 +2034 8517 0.8530 +2034 8553 0.4130 +2034 8648 0.5840 +2034 8829 0.4040 +2034 8842 0.5320 +2034 8878 0.4730 +2034 8974 0.6280 +2034 8994 0.5750 +2034 9021 0.4750 +2034 9040 0.5110 +2034 9092 0.4480 +2034 9122 0.4400 +2034 9123 0.4470 +2034 9135 0.5770 +2034 9314 0.7040 +2034 9429 0.4040 +2034 9470 0.9550 +2034 9507 0.5540 +2034 9508 0.5800 +2034 9575 0.4040 +2034 9669 0.9460 +2034 9861 0.4460 +2034 9915 0.9980 +2034 9978 0.9390 +2034 10116 0.5060 +2034 10197 0.4440 +2034 10213 0.4610 +2034 10273 0.4890 +2034 10370 0.7900 +2034 10397 0.4340 +2034 10499 0.5850 +2034 10538 0.4350 +2034 10891 0.4400 +2034 11096 0.4500 +2034 23081 0.4430 +2034 23142 0.5000 +2034 23143 0.4330 +2034 23411 0.6900 +2034 23412 0.4990 +2034 25994 0.5630 +2034 26043 0.4990 +2034 26146 0.4240 +2034 27043 0.8160 +2034 27252 0.6310 +2034 28952 0.4990 +2034 28991 0.4990 +2034 29099 0.4990 +2034 29102 0.4180 +2034 29126 0.4440 +2034 29843 0.4900 +2034 29923 0.5140 +2034 30061 0.4700 +2034 51122 0.4990 +2034 51129 0.4590 +2034 51147 0.4530 +2034 51314 0.4370 +2034 51397 0.4990 +2034 51430 0.6630 +2034 51547 0.8920 +2034 51564 0.5070 +2034 54165 0.5140 +2034 54541 0.4370 +2034 54567 0.4090 +2034 54583 0.9990 +2034 54796 0.4470 +2034 54939 0.5120 +2034 54949 0.5910 +2034 54951 0.4990 +2034 54954 0.5290 +2034 55193 0.4440 +2034 55208 0.4990 +2034 55527 0.5060 +2034 55654 0.6720 +2034 55662 0.9370 +2034 56929 0.5160 +2034 56938 0.6480 +2034 56957 0.4440 +2034 57167 0.5660 +2034 57817 0.5840 +2034 63978 0.5200 +2034 64344 0.9970 +2034 79365 0.6310 +2034 79727 0.5770 +2034 79901 0.6040 +2034 79923 0.8710 +2034 80213 0.4260 +2034 80312 0.4550 +2034 83667 0.6480 +2034 84259 0.4990 +2034 84260 0.6030 +2034 84557 0.4420 +2034 84891 0.5070 +2034 84925 0.7810 +2034 84962 0.5350 +2034 90423 0.4370 +2034 112398 0.9980 +2034 112399 0.9990 +2034 122706 0.4110 +2034 122769 0.5010 +2034 126374 0.5340 +2034 137902 0.4970 +2034 139135 0.4050 +2034 143471 0.4070 +2034 149951 0.4990 +2034 150684 0.5620 +2034 170622 0.4990 +2034 283652 0.4830 +2034 391104 0.5100 +2034 440275 0.4270 +2035 2036 0.7570 +2035 2037 0.6940 +2035 2038 0.7810 +2035 2039 0.9910 +2035 2040 0.4350 +2035 2235 0.6170 +2035 2597 0.5490 +2035 2623 0.6070 +2035 2890 0.5220 +2035 2987 0.5710 +2035 2993 0.7970 +2035 2994 0.5460 +2035 2995 0.9970 +2035 3043 0.4130 +2035 3182 0.5470 +2035 3611 0.4360 +2035 3717 0.6100 +2035 3897 0.4710 +2035 4005 0.4020 +2035 4354 0.8860 +2035 4355 0.5240 +2035 4478 0.5910 +2035 4647 0.6120 +2035 4651 0.4310 +2035 4926 0.6440 +2035 4975 0.4220 +2035 5341 0.6300 +2035 5829 0.4030 +2035 5962 0.8940 +2035 6005 0.6750 +2035 6059 0.5200 +2035 6513 0.6170 +2035 6521 0.9310 +2035 6548 0.5330 +2035 6637 0.4010 +2035 6693 0.4170 +2035 6708 0.8840 +2035 6709 0.8550 +2035 6710 0.9840 +2035 6711 0.8490 +2035 6712 0.6960 +2035 6714 0.4880 +2035 6853 0.4760 +2035 6886 0.4540 +2035 7029 0.6180 +2035 7082 0.7890 +2035 7111 0.8660 +2035 7170 0.6310 +2035 7414 0.5770 +2035 7430 0.9400 +2035 8506 0.8660 +2035 8573 0.9140 +2035 8666 0.4060 +2035 8825 0.5950 +2035 8826 0.5250 +2035 9076 0.4890 +2035 9368 0.5170 +2035 9369 0.5110 +2035 9378 0.7570 +2035 9379 0.6680 +2035 9414 0.6780 +2035 9463 0.4850 +2035 9780 0.5940 +2035 10207 0.5930 +2035 10211 0.5230 +2035 10291 0.4690 +2035 10661 0.6280 +2035 10885 0.4140 +2035 10946 0.4310 +2035 11030 0.4700 +2035 11322 0.4030 +2035 22829 0.5710 +2035 22871 0.6030 +2035 23136 0.8290 +2035 23418 0.6580 +2035 23543 0.7480 +2035 23705 0.9170 +2035 23762 0.4070 +2035 25861 0.6700 +2035 26047 0.6830 +2035 26499 0.5120 +2035 26526 0.5990 +2035 29765 0.8250 +2035 29766 0.8260 +2035 29767 0.8220 +2035 29904 0.6390 +2035 50848 0.5140 +2035 51168 0.6360 +2035 51307 0.4070 +2035 51332 0.8540 +2035 51447 0.4400 +2035 51678 0.6510 +2035 51699 0.4530 +2035 51806 0.8090 +2035 54413 0.5820 +2035 54715 0.5780 +2035 54875 0.5110 +2035 55544 0.4060 +2035 55835 0.7150 +2035 57502 0.5920 +2035 57555 0.6140 +2035 57669 0.8080 +2035 57689 0.4290 +2035 57731 0.7800 +2035 63971 0.4240 +2035 64359 0.4180 +2035 64398 0.8050 +2035 79937 0.6930 +2035 84059 0.4050 +2035 85445 0.6940 +2035 91860 0.8080 +2035 92359 0.6420 +2035 124590 0.4320 +2035 125113 0.4590 +2035 129684 0.4300 +2035 134864 0.4930 +2035 163688 0.8080 +2035 166752 0.4150 +2035 199731 0.6280 +2035 253559 0.7000 +2035 286204 0.7120 +2035 728378 0.4240 +2035 100506658 0.5610 +2036 2037 0.8080 +2036 2059 0.5210 +2036 2890 0.9970 +2036 2891 0.4850 +2036 2892 0.6600 +2036 2893 0.8070 +2036 2898 0.6560 +2036 2915 0.5470 +2036 2934 0.5100 +2036 2995 0.4460 +2036 3708 0.4900 +2036 4193 0.4210 +2036 4354 0.5690 +2036 4478 0.8270 +2036 4627 0.8160 +2036 4641 0.8030 +2036 4646 0.4870 +2036 4647 0.8000 +2036 4926 0.5040 +2036 5335 0.4720 +2036 5357 0.8240 +2036 5499 0.4900 +2036 5582 0.4320 +2036 5641 0.6480 +2036 5756 0.8000 +2036 5877 0.4020 +2036 5879 0.4610 +2036 5962 0.8290 +2036 6237 0.5000 +2036 6709 0.6480 +2036 6711 0.7940 +2036 6754 0.5970 +2036 7430 0.8990 +2036 8573 0.6170 +2036 8766 0.4590 +2036 8874 0.5020 +2036 9369 0.5280 +2036 9378 0.5920 +2036 9379 0.5990 +2036 9456 0.7470 +2036 9463 0.6770 +2036 9495 0.5430 +2036 9750 0.8020 +2036 10368 0.4440 +2036 10369 0.6700 +2036 10768 0.4670 +2036 11078 0.5200 +2036 11344 0.4990 +2036 22829 0.5470 +2036 22871 0.6390 +2036 23077 0.4750 +2036 23136 0.7690 +2036 23426 0.4940 +2036 23564 0.6130 +2036 25794 0.8020 +2036 25861 0.6180 +2036 27092 0.4350 +2036 51168 0.5550 +2036 51304 0.4340 +2036 51571 0.4500 +2036 53405 0.8000 +2036 53904 0.4990 +2036 54413 0.5430 +2036 56850 0.4700 +2036 57468 0.4720 +2036 57502 0.5780 +2036 57555 0.6240 +2036 57669 0.5520 +2036 59283 0.4600 +2036 64787 0.5200 +2036 81831 0.5360 +2036 83715 0.4990 +2036 116986 0.8020 +2036 129446 0.8010 +2036 140469 0.4990 +2036 140679 0.5860 +2036 140894 0.5280 +2036 286262 0.8050 +2036 339768 0.4990 +2036 389207 0.8000 +2036 494513 0.4990 +2036 643226 0.8000 +2037 2209 0.5890 +2037 2890 0.7520 +2037 2893 0.5440 +2037 2995 0.6750 +2037 3845 0.4190 +2037 4354 0.6130 +2037 4926 0.9000 +2037 6708 0.7400 +2037 6709 0.7920 +2037 6710 0.7610 +2037 6711 0.8320 +2037 6712 0.7610 +2037 8506 0.4550 +2037 8573 0.6310 +2037 8825 0.4160 +2037 9369 0.5370 +2037 9378 0.5240 +2037 9379 0.5140 +2037 9465 0.4400 +2037 22829 0.5130 +2037 22871 0.5130 +2037 23136 0.8480 +2037 23524 0.4140 +2037 23564 0.7420 +2037 23705 0.6030 +2037 51332 0.7630 +2037 51447 0.4240 +2037 51678 0.5910 +2037 54413 0.5130 +2037 57502 0.5140 +2037 57555 0.5280 +2037 57669 0.5450 +2037 57731 0.8320 +2037 57863 0.5080 +2037 79009 0.4240 +2037 79968 0.5160 +2037 199731 0.7270 +2038 2039 0.9180 +2038 2235 0.8510 +2038 2623 0.7830 +2038 2624 0.5240 +2038 2766 0.4850 +2038 2993 0.9580 +2038 2994 0.9740 +2038 2995 0.4220 +2038 2996 0.5760 +2038 3039 0.4530 +2038 3042 0.8430 +2038 3043 0.5060 +2038 3045 0.8590 +2038 3047 0.7320 +2038 3048 0.7200 +2038 3049 0.8690 +2038 3792 0.6450 +2038 3848 0.4400 +2038 4066 0.5470 +2038 4635 0.7230 +2038 5313 0.4250 +2038 6005 0.9650 +2038 6006 0.8670 +2038 6007 0.4810 +2038 6521 0.9990 +2038 6622 0.7070 +2038 6624 0.4240 +2038 6708 0.8780 +2038 6710 0.5190 +2038 6886 0.7250 +2038 6887 0.5490 +2038 7111 0.7110 +2038 7145 0.4780 +2038 7251 0.6300 +2038 8328 0.5840 +2038 8991 0.8480 +2038 9780 0.4460 +2038 9911 0.4190 +2038 10098 0.4970 +2038 10107 0.6540 +2038 10362 0.4310 +2038 10483 0.4210 +2038 10661 0.8940 +2038 10826 0.4620 +2038 23028 0.4310 +2038 23762 0.7470 +2038 25853 0.6510 +2038 25893 0.7110 +2038 26258 0.5600 +2038 51218 0.4760 +2038 51251 0.5310 +2038 51312 0.7110 +2038 51317 0.4180 +2038 51327 0.9990 +2038 51629 0.5780 +2038 55363 0.8040 +2038 55437 0.7920 +2038 80017 0.4670 +2038 80700 0.4510 +2038 84529 0.4140 +2038 84651 0.5730 +2038 116151 0.5150 +2038 146059 0.7410 +2038 728378 0.4200 +2039 2235 0.5600 +2039 2623 0.5660 +2039 2810 0.4970 +2039 2993 0.4940 +2039 2994 0.5350 +2039 2995 0.8860 +2039 3029 0.4350 +2039 3042 0.4880 +2039 3049 0.5550 +2039 3623 0.4300 +2039 3625 0.4270 +2039 4154 0.5480 +2039 4354 0.6440 +2039 4832 0.5470 +2039 4988 0.6920 +2039 5368 0.4790 +2039 6005 0.4330 +2039 6513 0.5440 +2039 6521 0.8040 +2039 6622 0.6700 +2039 6624 0.7710 +2039 6695 0.4170 +2039 6708 0.4150 +2039 6710 0.4890 +2039 7111 0.9330 +2039 7140 0.4220 +2039 7145 0.4830 +2039 7504 0.4560 +2039 7531 0.7740 +2039 7534 0.4430 +2039 8991 0.4490 +2039 9911 0.5800 +2039 10098 0.4060 +2039 10653 0.5760 +2039 10658 0.5590 +2039 10661 0.5990 +2039 10900 0.4610 +2039 11155 0.5410 +2039 23762 0.7680 +2039 23770 0.6460 +2039 25893 0.4990 +2039 29765 0.8820 +2039 29766 0.8940 +2039 29767 0.8940 +2039 51094 0.4380 +2039 51327 0.6480 +2039 51629 0.5670 +2039 55437 0.4910 +2039 57495 0.4440 +2039 80700 0.4770 +2039 116151 0.6100 +2039 147912 0.4350 +2039 165215 0.4080 +2040 2086 0.6190 +2040 2319 0.8680 +2040 2697 0.4740 +2040 2934 0.4960 +2040 2993 0.4760 +2040 2995 0.5260 +2040 3163 0.4230 +2040 3181 0.4420 +2040 3191 0.4670 +2040 3728 0.4360 +2040 3916 0.4860 +2040 4067 0.5110 +2040 4162 0.4050 +2040 4548 0.4190 +2040 4868 0.4710 +2040 5058 0.4110 +2040 5245 0.9480 +2040 5337 0.4300 +2040 5706 0.4040 +2040 5873 0.4480 +2040 6005 0.5650 +2040 6093 0.4340 +2040 6510 0.5030 +2040 6513 0.8800 +2040 6515 0.6250 +2040 6517 0.5670 +2040 6521 0.6710 +2040 6528 0.4490 +2040 6687 0.6010 +2040 6717 0.4990 +2040 6793 0.4180 +2040 6836 0.4650 +2040 7001 0.5800 +2040 7037 0.5850 +2040 7070 0.4680 +2040 7112 0.4610 +2040 7173 0.4680 +2040 7253 0.4200 +2040 7384 0.4500 +2040 7385 0.4260 +2040 7415 0.5210 +2040 7416 0.4950 +2040 7454 0.4190 +2040 7535 0.4090 +2040 7579 0.4280 +2040 7879 0.4730 +2040 8225 0.4160 +2040 8476 0.4240 +2040 8773 0.4940 +2040 8826 0.4840 +2040 8976 0.4160 +2040 8987 0.4070 +2040 9172 0.4200 +2040 9311 0.8530 +2040 9322 0.4050 +2040 9341 0.4480 +2040 9399 0.5730 +2040 9414 0.4130 +2040 9475 0.4260 +2040 9497 0.4100 +2040 9528 0.4660 +2040 9578 0.4230 +2040 9588 0.5000 +2040 9748 0.4150 +2040 9780 0.4760 +2040 9815 0.4050 +2040 10211 0.9150 +2040 10314 0.8030 +2040 10376 0.4870 +2040 10476 0.4070 +2040 10613 0.6300 +2040 10730 0.7270 +2040 10939 0.5870 +2040 10989 0.4190 +2040 11160 0.6800 +2040 11331 0.7210 +2040 22918 0.4060 +2040 23048 0.4040 +2040 23203 0.4710 +2040 23433 0.5940 +2040 23513 0.4240 +2040 23607 0.6010 +2040 23649 0.4580 +2040 25921 0.4260 +2040 26157 0.4710 +2040 29991 0.4240 +2040 30816 0.5400 +2040 30968 0.4870 +2040 50862 0.4220 +2040 51802 0.6060 +2040 54443 0.5860 +2040 54854 0.4040 +2040 54918 0.4410 +2040 55004 0.4560 +2040 55075 0.4030 +2040 55240 0.4190 +2040 55486 0.4300 +2040 55717 0.4050 +2040 55914 0.4570 +2040 55968 0.4090 +2040 57381 0.5870 +2040 57582 0.4060 +2040 63895 0.4020 +2040 65124 0.4020 +2040 91010 0.4410 +2040 93185 0.4760 +2040 115209 0.4650 +2040 128239 0.4110 +2040 143098 0.4130 +2040 144402 0.4160 +2040 149076 0.4100 +2040 157769 0.4040 +2040 158135 0.4150 +2040 200894 0.4460 +2040 253959 0.4070 +2040 284119 0.4950 +2040 347735 0.4320 +2040 392399 0.4180 +2040 405754 0.6190 +2041 2042 0.6540 +2041 2043 0.6910 +2041 2044 0.6440 +2041 2045 0.6480 +2041 2046 0.4810 +2041 2047 0.7140 +2041 2048 0.5660 +2041 2049 0.5650 +2041 2050 0.5940 +2041 2051 0.5960 +2041 2056 0.6090 +2041 2064 0.6950 +2041 2268 0.4310 +2041 2335 0.7480 +2041 2534 0.5600 +2041 3127 0.5630 +2041 3479 0.5290 +2041 3569 0.5220 +2041 3635 0.5620 +2041 3636 0.5240 +2041 3848 0.4080 +2041 3858 0.4280 +2041 3937 0.5610 +2041 4168 0.4660 +2041 4208 0.4770 +2041 4301 0.4720 +2041 4854 0.4910 +2041 4914 0.4730 +2041 4915 0.5900 +2041 5361 0.4400 +2041 5364 0.4020 +2041 5460 0.5990 +2041 5663 0.5000 +2041 5664 0.5260 +2041 5753 0.4320 +2041 5783 0.5450 +2041 5829 0.5370 +2041 5921 0.9270 +2041 6091 0.4400 +2041 6092 0.4180 +2041 6320 0.5490 +2041 6405 0.4570 +2041 6453 0.4830 +2041 6585 0.4070 +2041 6586 0.4710 +2041 6653 0.6890 +2041 6657 0.6150 +2041 7409 0.5860 +2041 7410 0.6220 +2041 7412 0.5080 +2041 7490 0.4110 +2041 8038 0.5540 +2041 8301 0.8460 +2041 8440 0.6890 +2041 9076 0.5720 +2041 9378 0.5250 +2041 9379 0.5250 +2041 9423 0.4410 +2041 10207 0.4340 +2041 10347 0.7800 +2041 10371 0.4890 +2041 10580 0.4330 +2041 10658 0.5490 +2041 10818 0.4680 +2041 10979 0.5890 +2041 23049 0.4090 +2041 23426 0.5410 +2041 23607 0.7670 +2041 23646 0.4160 +2041 25759 0.4410 +2041 25791 0.9870 +2041 27328 0.5890 +2041 28514 0.5240 +2041 50855 0.4170 +2041 51314 0.6770 +2041 51338 0.6250 +2041 54209 0.5430 +2041 54892 0.4200 +2041 55063 0.6660 +2041 56288 0.4240 +2041 56899 0.5720 +2041 57091 0.6780 +2041 64231 0.7130 +2041 79890 0.5910 +2041 79923 0.5900 +2041 83661 0.6010 +2041 123041 0.5900 +2041 154796 0.4390 +2041 221178 0.4310 +2041 245802 0.6690 +2041 253260 0.4380 +2041 284656 0.4820 +2041 285220 0.6510 +2041 374946 0.4200 +2041 643680 0.6720 +2042 2043 0.8350 +2042 2044 0.8840 +2042 2045 0.9240 +2042 2046 0.6240 +2042 2047 0.5300 +2042 2048 0.7720 +2042 2049 0.5290 +2042 2050 0.7060 +2042 2051 0.5400 +2042 2064 0.6670 +2042 2208 0.4270 +2042 2268 0.4150 +2042 3320 0.4280 +2042 3671 0.4170 +2042 3688 0.4280 +2042 3791 0.5920 +2042 3845 0.4530 +2042 4292 0.4160 +2042 4635 0.4760 +2042 4684 0.4210 +2042 4893 0.4430 +2042 4914 0.4520 +2042 5224 0.4070 +2042 5290 0.5590 +2042 5335 0.4340 +2042 5728 0.4110 +2042 5796 0.4720 +2042 5921 0.9140 +2042 6091 0.5530 +2042 6092 0.4360 +2042 6320 0.5450 +2042 6347 0.4260 +2042 6586 0.4460 +2042 6774 0.5710 +2042 7157 0.5130 +2042 7410 0.4480 +2042 7424 0.4220 +2042 7869 0.4390 +2042 8728 0.4400 +2042 11197 0.4190 +2042 23284 0.4480 +2042 25791 0.9300 +2042 27253 0.4210 +2042 30819 0.4650 +2042 51050 0.4320 +2042 53353 0.5590 +2042 55680 0.8840 +2042 57611 0.4330 +2042 58191 0.4220 +2042 58498 0.4510 +2042 64221 0.4130 +2042 64843 0.4280 +2042 80230 0.8400 +2042 84076 0.4010 +2042 84125 0.6380 +2042 149420 0.4040 +2042 221914 0.4160 +2042 284656 0.4310 +2042 285220 0.6810 +2042 340419 0.4390 +2043 2044 0.7590 +2043 2045 0.7260 +2043 2046 0.6240 +2043 2047 0.7540 +2043 2048 0.9150 +2043 2049 0.5340 +2043 2050 0.6380 +2043 2051 0.5560 +2043 2053 0.6500 +2043 2056 0.4280 +2043 2064 0.6610 +2043 2260 0.8470 +2043 2261 0.6240 +2043 2263 0.4190 +2043 2264 0.6010 +2043 2268 0.4230 +2043 2524 0.6100 +2043 2534 0.4700 +2043 2903 0.5500 +2043 3059 0.4930 +2043 3549 0.5440 +2043 3684 0.5120 +2043 3702 0.4130 +2043 3717 0.4410 +2043 3759 0.4300 +2043 3898 0.8110 +2043 4099 0.5600 +2043 4168 0.4230 +2043 4214 0.5570 +2043 4690 0.5810 +2043 4756 0.4110 +2043 4974 0.5910 +2043 5077 0.4200 +2043 5530 0.4210 +2043 5608 0.4400 +2043 5764 0.4730 +2043 5783 0.6360 +2043 5880 0.4720 +2043 5921 0.9500 +2043 6091 0.4610 +2043 6092 0.4630 +2043 6405 0.4030 +2043 6453 0.4280 +2043 6585 0.4550 +2043 6586 0.4840 +2043 6616 0.4730 +2043 6782 0.4230 +2043 6850 0.4310 +2043 7070 0.8970 +2043 7409 0.5030 +2043 7475 0.4310 +2043 8440 0.7780 +2043 8728 0.5280 +2043 8997 0.4170 +2043 9217 0.7320 +2043 9423 0.4600 +2043 9564 0.5220 +2043 10371 0.4810 +2043 10818 0.7010 +2043 11035 0.4280 +2043 22854 0.5160 +2043 22899 0.8440 +2043 23129 0.4870 +2043 25791 0.9840 +2043 26037 0.4510 +2043 26040 0.6880 +2043 56963 0.5120 +2043 57030 0.4560 +2043 57142 0.5000 +2043 80205 0.4120 +2043 85477 0.4840 +2043 219699 0.4090 +2043 284656 0.4520 +2043 285220 0.6370 +2043 347733 0.4090 +2043 389432 0.5230 +2044 2045 0.6880 +2044 2046 0.6200 +2044 2047 0.6970 +2044 2048 0.7040 +2044 2049 0.6950 +2044 2050 0.7590 +2044 2051 0.5390 +2044 2064 0.6550 +2044 2261 0.4620 +2044 2263 0.4470 +2044 2903 0.4800 +2044 3630 0.4340 +2044 3937 0.4090 +2044 5747 0.4420 +2044 5921 0.9110 +2044 6092 0.4300 +2044 6586 0.4220 +2044 6774 0.4400 +2044 6850 0.4140 +2044 7976 0.4210 +2044 8326 0.4020 +2044 10099 0.6110 +2044 10987 0.4080 +2044 22854 0.4400 +2044 25791 0.9300 +2044 53353 0.4020 +2044 64072 0.4220 +2044 64093 0.4530 +2044 79694 0.4100 +2044 84063 0.5590 +2044 84623 0.5100 +2044 121512 0.4960 +2044 149175 0.4360 +2044 284656 0.4510 +2044 285220 0.6630 +2044 389432 0.5110 +2045 2046 0.6170 +2045 2047 0.5330 +2045 2048 0.6170 +2045 2049 0.5320 +2045 2050 0.6220 +2045 2051 0.5440 +2045 2185 0.4610 +2045 2268 0.4420 +2045 2305 0.4230 +2045 2891 0.4400 +2045 3675 0.4050 +2045 3688 0.4280 +2045 3725 0.4630 +2045 4301 0.7160 +2045 4854 0.5340 +2045 4915 0.5300 +2045 5921 0.9130 +2045 6586 0.4500 +2045 6657 0.4860 +2045 6850 0.4200 +2045 9217 0.4560 +2045 9353 0.4820 +2045 9463 0.5170 +2045 10369 0.4410 +2045 10505 0.4040 +2045 11097 0.4090 +2045 22854 0.4430 +2045 23426 0.4870 +2045 25791 0.9280 +2045 27253 0.4370 +2045 64221 0.4010 +2045 79694 0.4140 +2045 84708 0.4100 +2045 222484 0.4360 +2045 284656 0.8570 +2045 285220 0.5950 +2046 2047 0.5600 +2046 2048 0.5630 +2046 2049 0.5620 +2046 2050 0.7160 +2046 2051 0.5580 +2046 2077 0.4530 +2046 3055 0.4500 +2046 3645 0.4170 +2046 3937 0.4380 +2046 4067 0.4080 +2046 4212 0.4560 +2046 4690 0.4970 +2046 5087 0.4090 +2046 5294 0.4150 +2046 5921 0.9090 +2046 6597 0.4530 +2046 7074 0.4670 +2046 9217 0.5140 +2046 9463 0.6090 +2046 9650 0.4200 +2046 23294 0.6030 +2046 25791 0.9290 +2046 27071 0.4970 +2046 56899 0.4410 +2046 79694 0.4280 +2046 79705 0.4570 +2046 84708 0.4180 +2046 126432 0.5360 +2046 149175 0.4050 +2046 284656 0.5340 +2046 285220 0.6630 +2046 389432 0.4860 +2047 2048 0.6270 +2047 2049 0.4250 +2047 2050 0.6750 +2047 2051 0.8630 +2047 2056 0.4160 +2047 2064 0.6590 +2047 2066 0.4810 +2047 2297 0.5930 +2047 2534 0.5630 +2047 2736 0.4850 +2047 2885 0.6810 +2047 2886 0.7300 +2047 2887 0.6250 +2047 3084 0.5860 +2047 3670 0.5370 +2047 3897 0.4020 +2047 4313 0.4460 +2047 4318 0.4800 +2047 4690 0.7390 +2047 4897 0.4920 +2047 5058 0.5420 +2047 5062 0.5230 +2047 5063 0.5440 +2047 5361 0.4060 +2047 5663 0.4460 +2047 5664 0.4240 +2047 5728 0.4860 +2047 5783 0.5760 +2047 5879 0.5780 +2047 5921 0.9170 +2047 6320 0.4060 +2047 6386 0.7290 +2047 6464 0.7360 +2047 6585 0.4730 +2047 6586 0.4740 +2047 6714 0.7090 +2047 6850 0.4100 +2047 7546 0.8390 +2047 8218 0.5070 +2047 8440 0.8140 +2047 8874 0.5140 +2047 9076 0.4400 +2047 9314 0.4150 +2047 10098 0.4120 +2047 10481 0.4120 +2047 10627 0.5320 +2047 11140 0.4270 +2047 23218 0.4610 +2047 23385 0.4380 +2047 23426 0.5510 +2047 25791 0.9360 +2047 28964 0.5590 +2047 50855 0.4880 +2047 55614 0.4260 +2047 64843 0.7420 +2047 79694 0.4050 +2047 80031 0.4040 +2047 84107 0.4510 +2047 116135 0.4100 +2047 126520 0.4050 +2047 284656 0.6690 +2047 285220 0.7230 +2047 343472 0.4260 +2047 389432 0.5260 +2048 2049 0.6760 +2048 2050 0.8120 +2048 2051 0.6710 +2048 2064 0.6680 +2048 2213 0.4450 +2048 2268 0.4060 +2048 2300 0.4300 +2048 2534 0.7010 +2048 2902 0.4670 +2048 2903 0.5930 +2048 2904 0.4130 +2048 2915 0.5530 +2048 2917 0.4070 +2048 2932 0.4970 +2048 2956 0.4040 +2048 3084 0.4540 +2048 3172 0.5210 +2048 3688 0.4030 +2048 3845 0.4020 +2048 3897 0.9450 +2048 4301 0.5530 +2048 4313 0.5320 +2048 4318 0.5540 +2048 4437 0.4010 +2048 4684 0.5130 +2048 4914 0.4700 +2048 5058 0.5350 +2048 5062 0.5230 +2048 5063 0.5560 +2048 5320 0.4520 +2048 5361 0.5300 +2048 5621 0.4410 +2048 5650 0.4220 +2048 5663 0.5390 +2048 5664 0.4790 +2048 5783 0.5480 +2048 5877 0.6860 +2048 5879 0.5880 +2048 5921 0.9770 +2048 6237 0.4360 +2048 6259 0.4990 +2048 6383 0.4930 +2048 6386 0.7420 +2048 6405 0.5910 +2048 6453 0.9390 +2048 6585 0.4010 +2048 6586 0.4300 +2048 6662 0.4430 +2048 6714 0.8710 +2048 6850 0.4220 +2048 6934 0.5650 +2048 7074 0.9320 +2048 8218 0.5230 +2048 8313 0.4810 +2048 8419 0.7290 +2048 8440 0.7030 +2048 8492 0.4260 +2048 8549 0.6150 +2048 8573 0.4440 +2048 8633 0.5710 +2048 8874 0.5630 +2048 8976 0.5610 +2048 8997 0.5100 +2048 9423 0.6260 +2048 9463 0.7460 +2048 10044 0.4100 +2048 10211 0.4440 +2048 10371 0.6380 +2048 10562 0.4770 +2048 10627 0.5320 +2048 10755 0.4520 +2048 22871 0.5810 +2048 22899 0.4340 +2048 23348 0.5310 +2048 23385 0.5150 +2048 23426 0.6280 +2048 25791 0.9580 +2048 26018 0.4280 +2048 28964 0.5660 +2048 50618 0.8110 +2048 50649 0.4040 +2048 51107 0.4770 +2048 54809 0.5240 +2048 55558 0.4540 +2048 55851 0.4780 +2048 56288 0.4260 +2048 84727 0.6170 +2048 85464 0.5020 +2048 90678 0.4200 +2048 92369 0.4440 +2048 115548 0.4200 +2048 168667 0.4170 +2048 219285 0.5250 +2048 284656 0.5370 +2048 285220 0.6640 +2048 644150 0.4200 +2049 2050 0.6690 +2049 2051 0.4540 +2049 2064 0.6860 +2049 2300 0.4960 +2049 2534 0.7910 +2049 3172 0.5650 +2049 3815 0.4850 +2049 4067 0.4360 +2049 4301 0.7560 +2049 4313 0.6110 +2049 4318 0.4610 +2049 4921 0.4650 +2049 5058 0.5230 +2049 5062 0.5230 +2049 5063 0.5230 +2049 5159 0.4760 +2049 5663 0.4240 +2049 5664 0.4240 +2049 5879 0.5650 +2049 5921 0.9340 +2049 6259 0.5150 +2049 6386 0.5270 +2049 6662 0.4160 +2049 6714 0.5480 +2049 6850 0.4050 +2049 6932 0.4210 +2049 6934 0.6350 +2049 7074 0.5050 +2049 7294 0.4160 +2049 8218 0.5070 +2049 8313 0.4330 +2049 8440 0.6190 +2049 8549 0.5070 +2049 8874 0.5140 +2049 9402 0.4690 +2049 10399 0.4820 +2049 10451 0.4470 +2049 10507 0.6290 +2049 10627 0.5320 +2049 23385 0.4220 +2049 23654 0.5680 +2049 25791 0.9200 +2049 26035 0.4920 +2049 28964 0.5170 +2049 51107 0.4090 +2049 51384 0.4030 +2049 83464 0.4060 +2049 221188 0.4180 +2049 284656 0.5410 +2049 285220 0.5240 +2050 2051 0.8140 +2050 2056 0.8260 +2050 2247 0.4100 +2050 2303 0.4600 +2050 2335 0.4010 +2050 2534 0.6740 +2050 2658 0.4240 +2050 2697 0.5170 +2050 2701 0.4230 +2050 2702 0.4050 +2050 3065 0.4620 +2050 3675 0.4870 +2050 3678 0.4950 +2050 3685 0.5050 +2050 3688 0.4950 +2050 3693 0.4480 +2050 4313 0.5600 +2050 4318 0.5730 +2050 4690 0.4190 +2050 4851 0.5260 +2050 4855 0.5740 +2050 5058 0.5230 +2050 5062 0.5230 +2050 5063 0.5230 +2050 5175 0.5290 +2050 5364 0.4460 +2050 5663 0.4530 +2050 5664 0.4360 +2050 5747 0.5860 +2050 5783 0.6230 +2050 5784 0.5090 +2050 5829 0.5140 +2050 5879 0.6030 +2050 5921 0.9630 +2050 6386 0.5470 +2050 6405 0.5220 +2050 6464 0.4300 +2050 6714 0.6880 +2050 6868 0.4130 +2050 7026 0.6350 +2050 7423 0.4930 +2050 7424 0.7790 +2050 7450 0.4140 +2050 8218 0.5090 +2050 8440 0.6690 +2050 8600 0.4570 +2050 8829 0.4420 +2050 8874 0.5140 +2050 9076 0.4620 +2050 9564 0.7130 +2050 10371 0.5960 +2050 10507 0.5350 +2050 10627 0.5320 +2050 10894 0.5450 +2050 23385 0.4740 +2050 23462 0.4700 +2050 23493 0.7620 +2050 25791 0.9260 +2050 28964 0.5500 +2050 50855 0.5630 +2050 51107 0.4290 +2050 51705 0.4720 +2050 54345 0.4710 +2050 54567 0.6590 +2050 55851 0.4310 +2050 80781 0.5200 +2050 284656 0.5480 +2050 285220 0.6190 +2051 2056 0.4330 +2051 2064 0.6640 +2051 2065 0.4690 +2051 2318 0.4050 +2051 2534 0.5280 +2051 2571 0.4070 +2051 3706 0.4330 +2051 3787 0.4150 +2051 4313 0.4280 +2051 4318 0.4420 +2051 4900 0.4410 +2051 5058 0.5250 +2051 5062 0.5230 +2051 5063 0.5240 +2051 5364 0.4140 +2051 5663 0.4240 +2051 5664 0.4240 +2051 5754 0.4870 +2051 5879 0.5620 +2051 5921 0.9100 +2051 6386 0.5270 +2051 6543 0.4240 +2051 6714 0.5370 +2051 8218 0.5040 +2051 8440 0.6310 +2051 8874 0.5130 +2051 9899 0.4010 +2051 9985 0.4350 +2051 10371 0.4060 +2051 10458 0.4070 +2051 10512 0.4610 +2051 10627 0.5320 +2051 10777 0.4030 +2051 23385 0.4220 +2051 23416 0.4380 +2051 25791 0.9190 +2051 28964 0.5240 +2051 57030 0.4250 +2051 79834 0.4380 +2051 84894 0.4130 +2051 136541 0.4790 +2051 284656 0.7100 +2051 285220 0.5390 +2051 388324 0.4220 +2052 2053 0.7310 +2052 2068 0.4470 +2052 2153 0.5510 +2052 2194 0.4670 +2052 2326 0.4600 +2052 2328 0.4860 +2052 2330 0.4940 +2052 2677 0.8270 +2052 2729 0.5040 +2052 2730 0.4800 +2052 2936 0.4500 +2052 2938 0.9670 +2052 2939 0.9460 +2052 2940 0.9360 +2052 2941 0.9460 +2052 2944 0.9850 +2052 2946 0.9510 +2052 2947 0.9590 +2052 2948 0.9400 +2052 2949 0.9300 +2052 2950 0.9890 +2052 3052 0.4910 +2052 3162 0.4020 +2052 3172 0.4560 +2052 4256 0.4270 +2052 4257 0.9440 +2052 4258 0.9360 +2052 4259 0.9380 +2052 4524 0.6230 +2052 4616 0.4160 +2052 4706 0.4990 +2052 5002 0.4480 +2052 5243 0.4230 +2052 5270 0.5840 +2052 5447 0.4860 +2052 6256 0.4180 +2052 6554 0.6880 +2052 6649 0.4170 +2052 6822 0.5140 +2052 7040 0.5190 +2052 7172 0.4090 +2052 7296 0.4890 +2052 7355 0.4560 +2052 7364 0.4520 +2052 7515 0.4500 +2052 8309 0.4080 +2052 8529 0.6470 +2052 8574 0.5480 +2052 8714 0.4150 +2052 9360 0.6100 +2052 9414 0.5450 +2052 9429 0.4500 +2052 9446 0.9380 +2052 22977 0.5160 +2052 23095 0.4290 +2052 27294 0.9340 +2052 27306 0.9590 +2052 29785 0.9270 +2052 54575 0.4440 +2052 54576 0.6440 +2052 54577 0.4580 +2052 54578 0.5440 +2052 54657 0.4570 +2052 54658 0.4460 +2052 55349 0.5000 +2052 64087 0.4570 +2052 79001 0.7690 +2052 79728 0.4950 +2052 79852 0.6870 +2052 80142 0.7750 +2052 119391 0.9280 +2052 132949 0.4170 +2052 140462 0.4160 +2052 140809 0.4210 +2052 219736 0.5940 +2052 221357 0.9330 +2052 253152 0.5960 +2052 653689 0.9440 +2053 2099 0.5010 +2053 2100 0.4700 +2053 2166 0.5660 +2053 2194 0.4700 +2053 2326 0.4280 +2053 2330 0.4250 +2053 2524 0.7900 +2053 2582 0.4630 +2053 2597 0.4490 +2053 2618 0.5160 +2053 2628 0.4610 +2053 2639 0.4750 +2053 2690 0.4030 +2053 2739 0.4330 +2053 2766 0.8590 +2053 2820 0.4820 +2053 2936 0.4070 +2053 2987 0.4290 +2053 3155 0.5080 +2053 3156 0.4930 +2053 3248 0.4130 +2053 3293 0.4160 +2053 3295 0.6230 +2053 3613 0.4130 +2053 3614 0.8590 +2053 3615 0.8840 +2053 3712 0.4490 +2053 3772 0.4220 +2053 3827 0.4920 +2053 3990 0.4020 +2053 4015 0.6180 +2053 4047 0.4390 +2053 4048 0.4630 +2053 4051 0.6260 +2053 4482 0.5170 +2053 4507 0.8770 +2053 4524 0.4060 +2053 4706 0.6630 +2053 4860 0.9270 +2053 4907 0.7950 +2053 4968 0.5240 +2053 5019 0.4510 +2053 5167 0.4130 +2053 5168 0.4220 +2053 5192 0.5010 +2053 5194 0.5610 +2053 5195 0.5330 +2053 5315 0.4930 +2053 5321 0.6430 +2053 5338 0.4500 +2053 5372 0.4170 +2053 5373 0.4510 +2053 5465 0.5240 +2053 5468 0.5310 +2053 5506 0.4390 +2053 5530 0.6210 +2053 5571 0.8430 +2053 5583 0.4480 +2053 5723 0.4320 +2053 5730 0.5710 +2053 5743 0.4450 +2053 5828 0.5210 +2053 5830 0.6360 +2053 5832 0.5480 +2053 6120 0.4300 +2053 6233 0.5250 +2053 6296 0.4140 +2053 6342 0.6040 +2053 6389 0.4550 +2053 6470 0.6970 +2053 6472 0.5710 +2053 6514 0.4460 +2053 6713 0.4410 +2053 6901 0.4100 +2053 7167 0.4790 +2053 7296 0.4370 +2053 7311 0.4990 +2053 7314 0.5260 +2053 7316 0.5260 +2053 7321 0.5520 +2053 7322 0.5510 +2053 7323 0.5510 +2053 7464 0.4460 +2053 7915 0.8180 +2053 8030 0.4680 +2053 8061 0.4320 +2053 8226 0.5560 +2053 8309 0.5120 +2053 8310 0.5410 +2053 8529 0.5140 +2053 8564 0.4280 +2053 8611 0.7460 +2053 8613 0.6420 +2053 8659 0.7930 +2053 8854 0.8010 +2053 8877 0.4120 +2053 9360 0.7320 +2053 9399 0.4190 +2053 9517 0.4490 +2053 9615 0.4290 +2053 9890 0.7510 +2053 10020 0.5640 +2053 10247 0.4220 +2053 10391 0.4410 +2053 10423 0.4940 +2053 10455 0.4780 +2053 10558 0.4410 +2053 10587 0.4330 +2053 10733 0.4160 +2053 10840 0.7990 +2053 10842 0.5870 +2053 11132 0.4470 +2053 11151 0.4420 +2053 11343 0.6980 +2053 23603 0.4420 +2053 25961 0.8420 +2053 26040 0.7950 +2053 26119 0.4110 +2053 27034 0.4540 +2053 27329 0.4150 +2053 28976 0.4420 +2053 29968 0.7790 +2053 51004 0.4370 +2053 51015 0.5170 +2053 51022 0.4670 +2053 51031 0.4260 +2053 51167 0.4380 +2053 51179 0.4130 +2053 51268 0.4120 +2053 51292 0.8600 +2053 51422 0.8520 +2053 51734 0.5350 +2053 51805 0.5670 +2053 51816 0.8440 +2053 53632 0.8430 +2053 54363 0.5420 +2053 54675 0.5390 +2053 54870 0.8590 +2053 55152 0.8590 +2053 55172 0.4050 +2053 55191 0.4910 +2053 55270 0.4840 +2053 55289 0.4750 +2053 55304 0.4530 +2053 55312 0.5580 +2053 55349 0.4230 +2053 55825 0.4390 +2053 55856 0.4720 +2053 56729 0.4120 +2053 56912 0.4220 +2053 57175 0.4500 +2053 57190 0.4780 +2053 58515 0.5140 +2053 64064 0.4320 +2053 64240 0.4250 +2053 64241 0.4240 +2053 64577 0.8190 +2053 79153 0.4200 +2053 79728 0.6620 +2053 79763 0.5120 +2053 80724 0.4250 +2053 83594 0.8650 +2053 83642 0.6120 +2053 84129 0.4180 +2053 84263 0.4250 +2053 84940 0.4410 +2053 113612 0.4170 +2053 126133 0.8070 +2053 126669 0.4340 +2053 129642 0.4470 +2053 132949 0.5820 +2053 134147 0.4340 +2053 144193 0.4340 +2053 160428 0.7930 +2053 161823 0.8440 +2053 163404 0.4260 +2053 219743 0.6170 +2053 222236 0.4140 +2053 255738 0.4720 +2053 260293 0.4730 +2053 284161 0.4320 +2053 284273 0.4150 +2053 284422 0.4520 +2053 376497 0.4180 +2053 389434 0.4970 +2053 403313 0.8140 +2053 729020 0.4300 +2053 122405565 0.4520 +2054 2768 0.5060 +2054 2896 0.4410 +2054 3075 0.7400 +2054 3385 0.4720 +2054 3658 0.4310 +2054 4191 0.8560 +2054 4733 0.4390 +2054 4905 0.7400 +2054 5100 0.5060 +2054 5345 0.4310 +2054 5427 0.4390 +2054 5813 0.4290 +2054 5861 0.4940 +2054 5888 0.4800 +2054 6288 0.6690 +2054 6289 0.6730 +2054 6576 0.4680 +2054 6616 0.9250 +2054 6642 0.4640 +2054 6709 0.6720 +2054 6804 0.6280 +2054 6809 0.6170 +2054 6810 0.8580 +2054 6811 0.8140 +2054 6812 0.9950 +2054 6813 0.9190 +2054 6814 0.8910 +2054 6843 0.9860 +2054 6844 0.9990 +2054 6845 0.9050 +2054 6854 0.4670 +2054 6857 0.6100 +2054 7099 0.4890 +2054 7732 0.6720 +2054 8128 0.9600 +2054 8417 0.6840 +2054 8673 0.9940 +2054 8674 0.9730 +2054 8675 0.8060 +2054 8676 0.5800 +2054 8677 0.7760 +2054 8723 0.5870 +2054 8773 0.9990 +2054 8774 0.9080 +2054 8775 0.9500 +2054 8915 0.4070 +2054 9218 0.4430 +2054 9341 0.9970 +2054 9342 0.8410 +2054 9482 0.7760 +2054 9515 0.7740 +2054 9527 0.6850 +2054 9545 0.4280 +2054 9554 0.7700 +2054 9570 0.6590 +2054 9700 0.4260 +2054 10228 0.8910 +2054 10282 0.6510 +2054 10490 0.7970 +2054 10497 0.4610 +2054 10652 0.7710 +2054 10791 0.5070 +2054 10814 0.6670 +2054 10815 0.6700 +2054 11093 0.4160 +2054 23673 0.7030 +2054 26984 0.4050 +2054 27333 0.4040 +2054 51272 0.6410 +2054 53407 0.7230 +2054 53947 0.6060 +2054 55014 0.6830 +2054 55054 0.5090 +2054 55763 0.5820 +2054 55850 0.6870 +2054 56979 0.5130 +2054 63908 0.8180 +2054 63932 0.4390 +2054 64744 0.7490 +2054 79158 0.4840 +2054 90019 0.5650 +2054 94121 0.6840 +2054 112755 0.7650 +2054 114987 0.4500 +2054 116841 0.7940 +2054 123207 0.4390 +2054 127833 0.4280 +2054 134957 0.8220 +2054 143187 0.6860 +2054 203062 0.6170 +2054 246744 0.4330 +2054 339302 0.5490 +2054 415117 0.5920 +2054 594855 0.5630 +2055 2353 0.4220 +2055 2657 0.6890 +2055 2760 0.4780 +2055 5538 0.9690 +2055 6448 0.4570 +2055 8545 0.4540 +2055 8722 0.6330 +2055 9228 0.5120 +2055 9374 0.4860 +2055 9639 0.6480 +2055 22901 0.5190 +2055 23400 0.6890 +2055 23471 0.4060 +2055 28978 0.4060 +2055 29956 0.4310 +2055 54982 0.9870 +2055 55140 0.4150 +2055 55759 0.4260 +2055 80331 0.8470 +2055 136332 0.5210 +2055 154881 0.7910 +2055 253782 0.4460 +2055 256471 0.9630 +2055 552889 0.4130 +2056 2057 0.9990 +2056 2147 0.5620 +2056 2152 0.4300 +2056 2155 0.4010 +2056 2158 0.4420 +2056 2209 0.4540 +2056 2217 0.4190 +2056 2247 0.5820 +2056 2248 0.4650 +2056 2249 0.4920 +2056 2250 0.4530 +2056 2251 0.4840 +2056 2252 0.4920 +2056 2253 0.4720 +2056 2254 0.4900 +2056 2255 0.4720 +2056 2321 0.4360 +2056 2322 0.4980 +2056 2323 0.5810 +2056 2335 0.4330 +2056 2395 0.4600 +2056 2475 0.4470 +2056 2549 0.5490 +2056 2597 0.4770 +2056 2623 0.7790 +2056 2624 0.5120 +2056 2641 0.4430 +2056 2668 0.6620 +2056 2670 0.4290 +2056 2688 0.9590 +2056 2689 0.9560 +2056 2690 0.8140 +2056 2833 0.4440 +2056 2875 0.4890 +2056 2877 0.6140 +2056 2878 0.6070 +2056 2880 0.6280 +2056 2882 0.6210 +2056 2885 0.7760 +2056 2889 0.5490 +2056 2932 0.4110 +2056 2993 0.6630 +2056 3043 0.4630 +2056 3046 0.5420 +2056 3077 0.5280 +2056 3082 0.5210 +2056 3091 0.9670 +2056 3162 0.5970 +2056 3240 0.5460 +2056 3265 0.5840 +2056 3439 0.5160 +2056 3440 0.4800 +2056 3441 0.4770 +2056 3442 0.4790 +2056 3443 0.4860 +2056 3444 0.4800 +2056 3445 0.4800 +2056 3446 0.4800 +2056 3447 0.4790 +2056 3448 0.4800 +2056 3449 0.4800 +2056 3451 0.4740 +2056 3452 0.4800 +2056 3454 0.7070 +2056 3455 0.6810 +2056 3456 0.6380 +2056 3458 0.7260 +2056 3459 0.6910 +2056 3479 0.6220 +2056 3552 0.5590 +2056 3553 0.6140 +2056 3558 0.5490 +2056 3559 0.7080 +2056 3560 0.6720 +2056 3561 0.7370 +2056 3562 0.9560 +2056 3563 0.8180 +2056 3565 0.6540 +2056 3566 0.7000 +2056 3567 0.4710 +2056 3568 0.7040 +2056 3569 0.7270 +2056 3570 0.7340 +2056 3572 0.6840 +2056 3574 0.4490 +2056 3575 0.7980 +2056 3576 0.6180 +2056 3581 0.6590 +2056 3586 0.7000 +2056 3587 0.6680 +2056 3588 0.6560 +2056 3589 0.5750 +2056 3590 0.6760 +2056 3594 0.6940 +2056 3595 0.6630 +2056 3597 0.6810 +2056 3598 0.7160 +2056 3606 0.4110 +2056 3630 0.7930 +2056 3674 0.5140 +2056 3684 0.4060 +2056 3716 0.8950 +2056 3717 0.9900 +2056 3718 0.8870 +2056 3791 0.6920 +2056 3815 0.7360 +2056 3845 0.6090 +2056 3952 0.9470 +2056 3953 0.7280 +2056 3976 0.4380 +2056 3977 0.6990 +2056 4057 0.6010 +2056 4067 0.6360 +2056 4145 0.4310 +2056 4151 0.5640 +2056 4254 0.8180 +2056 4318 0.4460 +2056 4352 0.9410 +2056 4353 0.4040 +2056 4609 0.4160 +2056 4803 0.4780 +2056 4846 0.5310 +2056 4878 0.4280 +2056 4891 0.6860 +2056 4893 0.5990 +2056 4907 0.4130 +2056 5033 0.4260 +2056 5054 0.5820 +2056 5156 0.7440 +2056 5159 0.7740 +2056 5175 0.4860 +2056 5228 0.4640 +2056 5230 0.4690 +2056 5288 0.6480 +2056 5290 0.5600 +2056 5291 0.5180 +2056 5293 0.5380 +2056 5294 0.5650 +2056 5295 0.5600 +2056 5327 0.5130 +2056 5335 0.5790 +2056 5336 0.5200 +2056 5340 0.4610 +2056 5595 0.4480 +2056 5617 0.9490 +2056 5618 0.9020 +2056 5688 0.4740 +2056 5741 0.7210 +2056 5788 0.5170 +2056 5972 0.7130 +2056 6347 0.4460 +2056 6356 0.5210 +2056 6366 0.5720 +2056 6376 0.6140 +2056 6387 0.5420 +2056 6464 0.7630 +2056 6513 0.5360 +2056 6524 0.5440 +2056 6654 0.5730 +2056 6714 0.4550 +2056 6774 0.5940 +2056 6776 0.8890 +2056 6777 0.8960 +2056 6855 0.4970 +2056 7010 0.4180 +2056 7036 0.5530 +2056 7037 0.8580 +2056 7040 0.6010 +2056 7066 0.9920 +2056 7099 0.4190 +2056 7124 0.6210 +2056 7157 0.4790 +2056 7276 0.4010 +2056 7297 0.7040 +2056 7409 0.5930 +2056 7412 0.4200 +2056 7428 0.5970 +2056 7450 0.4480 +2056 7837 0.4520 +2056 7852 0.6640 +2056 8074 0.6130 +2056 8651 0.5340 +2056 8660 0.7340 +2056 8817 0.4560 +2056 8822 0.4890 +2056 8823 0.4910 +2056 8835 0.5700 +2056 8842 0.4310 +2056 8974 0.4360 +2056 9021 0.5870 +2056 9180 0.6680 +2056 9331 0.4530 +2056 9365 0.5620 +2056 9466 0.6500 +2056 9518 0.6850 +2056 9669 0.6240 +2056 9817 0.4500 +2056 10212 0.4360 +2056 10661 0.5820 +2056 11273 0.4100 +2056 23533 0.4990 +2056 26281 0.4670 +2056 27006 0.4800 +2056 27020 0.4320 +2056 30061 0.6100 +2056 50615 0.6650 +2056 51379 0.5130 +2056 53832 0.6500 +2056 53833 0.6660 +2056 54205 0.4180 +2056 54583 0.8510 +2056 55662 0.4160 +2056 57045 0.4290 +2056 57817 0.9070 +2056 58157 0.4030 +2056 58985 0.6500 +2056 64344 0.8580 +2056 79901 0.4830 +2056 84699 0.4250 +2056 92906 0.4220 +2056 112398 0.7620 +2056 112399 0.7560 +2056 114757 0.7210 +2056 116379 0.6500 +2056 137902 0.4520 +2056 148738 0.5840 +2056 149233 0.6600 +2056 151176 0.6590 +2056 163702 0.6560 +2056 164656 0.7270 +2056 257202 0.6280 +2056 343641 0.4470 +2056 493869 0.6210 +2057 2120 0.4470 +2057 2322 0.6360 +2057 2549 0.5630 +2057 2623 0.8770 +2057 2624 0.5320 +2057 2688 0.6660 +2057 2689 0.6740 +2057 2690 0.5760 +2057 2885 0.9780 +2057 2889 0.5640 +2057 2993 0.5840 +2057 3043 0.4760 +2057 3046 0.4440 +2057 3091 0.5110 +2057 3265 0.5400 +2057 3439 0.7200 +2057 3440 0.6990 +2057 3441 0.6870 +2057 3442 0.6820 +2057 3443 0.6820 +2057 3444 0.6820 +2057 3445 0.6850 +2057 3446 0.6820 +2057 3447 0.6850 +2057 3448 0.6840 +2057 3449 0.6850 +2057 3451 0.6850 +2057 3452 0.6820 +2057 3456 0.6830 +2057 3458 0.7380 +2057 3467 0.6500 +2057 3558 0.8460 +2057 3559 0.6650 +2057 3560 0.4830 +2057 3561 0.4610 +2057 3562 0.9100 +2057 3565 0.7170 +2057 3566 0.5140 +2057 3567 0.8330 +2057 3568 0.4810 +2057 3569 0.7870 +2057 3570 0.5410 +2057 3574 0.7870 +2057 3578 0.7020 +2057 3586 0.7260 +2057 3589 0.7230 +2057 3590 0.4910 +2057 3592 0.6500 +2057 3593 0.6500 +2057 3596 0.6900 +2057 3600 0.6980 +2057 3635 0.7160 +2057 3674 0.4140 +2057 3716 0.9680 +2057 3717 0.9990 +2057 3718 0.9330 +2057 3815 0.7990 +2057 3845 0.5790 +2057 3952 0.8070 +2057 3976 0.7040 +2057 4067 0.9040 +2057 4151 0.4630 +2057 4254 0.5500 +2057 4486 0.5750 +2057 4893 0.6130 +2057 5008 0.8230 +2057 5154 0.6600 +2057 5155 0.7020 +2057 5159 0.4320 +2057 5175 0.6410 +2057 5290 0.5700 +2057 5291 0.5340 +2057 5293 0.5200 +2057 5294 0.6390 +2057 5295 0.9090 +2057 5333 0.4380 +2057 5335 0.6850 +2057 5336 0.6430 +2057 5595 0.4170 +2057 5617 0.8060 +2057 5770 0.4210 +2057 5777 0.9230 +2057 5781 0.8750 +2057 5788 0.4300 +2057 6464 0.9080 +2057 6654 0.6210 +2057 6655 0.4280 +2057 6688 0.4380 +2057 6714 0.5880 +2057 6772 0.5920 +2057 6774 0.7000 +2057 6776 0.9890 +2057 6777 0.9720 +2057 6850 0.5260 +2057 6886 0.5380 +2057 6921 0.4450 +2057 6923 0.6490 +2057 7036 0.9460 +2057 7037 0.6220 +2057 7066 0.9700 +2057 7297 0.8990 +2057 7409 0.8210 +2057 7428 0.4580 +2057 8328 0.4300 +2057 8396 0.4260 +2057 8453 0.4310 +2057 8660 0.9190 +2057 8835 0.9430 +2057 8945 0.4180 +2057 9021 0.9060 +2057 9846 0.4840 +2057 10019 0.5770 +2057 10320 0.4470 +2057 10603 0.4280 +2057 10661 0.7660 +2057 10750 0.5750 +2057 11009 0.6610 +2057 11273 0.6460 +2057 23533 0.5280 +2057 27020 0.9900 +2057 29949 0.6690 +2057 30816 0.6040 +2057 50604 0.6500 +2057 50616 0.6690 +2057 51379 0.5420 +2057 51561 0.6500 +2057 53342 0.6500 +2057 54583 0.7100 +2057 55312 0.4200 +2057 56832 0.6500 +2057 57817 0.5450 +2057 58157 0.4870 +2057 59067 0.6540 +2057 59272 0.7310 +2057 64344 0.6100 +2057 85480 0.7390 +2057 112399 0.5030 +2057 114757 0.5410 +2057 148738 0.4650 +2057 149233 0.4240 +2057 151176 0.4180 +2057 161882 0.5100 +2057 282616 0.6500 +2057 282617 0.6500 +2057 282618 0.6500 +2057 286530 0.6280 +2057 338376 0.6500 +2057 100423062 0.4230 +2057 102723407 0.9450 +2058 2091 0.8680 +2058 2107 0.7940 +2058 2108 0.6300 +2058 2149 0.8890 +2058 2150 0.5700 +2058 2151 0.8320 +2058 2152 0.6920 +2058 2155 0.4800 +2058 2159 0.9400 +2058 2166 0.9500 +2058 2178 0.8510 +2058 2193 0.8950 +2058 2197 0.9910 +2058 2235 0.4660 +2058 2323 0.8590 +2058 2356 0.5500 +2058 2571 0.8320 +2058 2572 0.8290 +2058 2597 0.9990 +2058 2617 0.9730 +2058 2618 0.7520 +2058 2744 0.8090 +2058 2746 0.8490 +2058 2747 0.8450 +2058 2752 0.8550 +2058 2768 0.6430 +2058 2776 0.6380 +2058 2794 0.4210 +2058 2811 0.4350 +2058 2819 0.4660 +2058 2821 0.5080 +2058 2935 0.7840 +2058 2944 0.4020 +2058 2961 0.5620 +2058 3033 0.4050 +2058 3035 0.8370 +2058 3069 0.4620 +2058 3141 0.4260 +2058 3145 0.5220 +2058 3150 0.7210 +2058 3151 0.7140 +2058 3303 0.4040 +2058 3304 0.4040 +2058 3305 0.4040 +2058 3306 0.4040 +2058 3308 0.5660 +2058 3309 0.4410 +2058 3310 0.4120 +2058 3312 0.5560 +2058 3313 0.5730 +2058 3320 0.7010 +2058 3326 0.5880 +2058 3329 0.6260 +2058 3376 0.9990 +2058 3396 0.6520 +2058 3419 0.4080 +2058 3430 0.6330 +2058 3551 0.4380 +2058 3553 0.4030 +2058 3569 0.4460 +2058 3576 0.4450 +2058 3612 0.4090 +2058 3615 0.4190 +2058 3692 0.7380 +2058 3703 0.4610 +2058 3704 0.4360 +2058 3720 0.4100 +2058 3735 0.9990 +2058 3755 0.4360 +2058 3785 0.4320 +2058 3799 0.4640 +2058 3827 0.4050 +2058 3843 0.4250 +2058 3921 0.8700 +2058 4140 0.5770 +2058 4141 0.9990 +2058 4143 0.5860 +2058 4144 0.6010 +2058 4217 0.5820 +2058 4234 0.5600 +2058 4267 0.4830 +2058 4312 0.5520 +2058 4528 0.8190 +2058 4677 0.9980 +2058 4706 0.4070 +2058 4720 0.4430 +2058 4722 0.5120 +2058 4728 0.5470 +2058 4733 0.4590 +2058 4736 0.8580 +2058 4738 0.4160 +2058 4799 0.4490 +2058 4809 0.6900 +2058 4935 0.4720 +2058 4942 0.4530 +2058 5018 0.4250 +2058 5028 0.4160 +2058 5036 0.7600 +2058 5111 0.4680 +2058 5161 0.6690 +2058 5162 0.4040 +2058 5188 0.9790 +2058 5214 0.4240 +2058 5238 0.4890 +2058 5245 0.4070 +2058 5270 0.4150 +2058 5303 0.7840 +2058 5315 0.4320 +2058 5395 0.4930 +2058 5428 0.5950 +2058 5431 0.6260 +2058 5432 0.4770 +2058 5435 0.4230 +2058 5464 0.5580 +2058 5469 0.8320 +2058 5480 0.5240 +2058 5498 0.4740 +2058 5554 0.5650 +2058 5555 0.5630 +2058 5595 0.4530 +2058 5631 0.6780 +2058 5634 0.6800 +2058 5635 0.6790 +2058 5636 0.6760 +2058 5644 0.4300 +2058 5646 0.5070 +2058 5657 0.7210 +2058 5706 0.5040 +2058 5707 0.9150 +2058 5708 0.5340 +2058 5713 0.5280 +2058 5715 0.4420 +2058 5718 0.5480 +2058 5781 0.4150 +2058 5831 0.4210 +2058 5832 0.7230 +2058 5859 0.9990 +2058 5886 0.4460 +2058 5887 0.4390 +2058 5888 0.5020 +2058 5896 0.4250 +2058 5917 0.9990 +2058 5920 0.4040 +2058 5927 0.4190 +2058 6059 0.7910 +2058 6120 0.5210 +2058 6122 0.8550 +2058 6123 0.8340 +2058 6124 0.7690 +2058 6125 0.9190 +2058 6128 0.7110 +2058 6129 0.7560 +2058 6130 0.6900 +2058 6132 0.8420 +2058 6133 0.8320 +2058 6135 0.8930 +2058 6136 0.7320 +2058 6137 0.8640 +2058 6138 0.9020 +2058 6139 0.8160 +2058 6141 0.7760 +2058 6142 0.7930 +2058 6143 0.8650 +2058 6144 0.9370 +2058 6146 0.6830 +2058 6147 0.9660 +2058 6152 0.8770 +2058 6154 0.8980 +2058 6155 0.6410 +2058 6156 0.9120 +2058 6157 0.6650 +2058 6158 0.7940 +2058 6159 0.8780 +2058 6160 0.9320 +2058 6161 0.5450 +2058 6164 0.8610 +2058 6165 0.8400 +2058 6166 0.7040 +2058 6168 0.8620 +2058 6169 0.9010 +2058 6170 0.5680 +2058 6173 0.7030 +2058 6175 0.7910 +2058 6176 0.8590 +2058 6181 0.8380 +2058 6183 0.8240 +2058 6187 0.7910 +2058 6188 0.9750 +2058 6189 0.9650 +2058 6191 0.7620 +2058 6192 0.7550 +2058 6193 0.8500 +2058 6194 0.9110 +2058 6201 0.8960 +2058 6202 0.9680 +2058 6203 0.9170 +2058 6204 0.7680 +2058 6205 0.9330 +2058 6206 0.6990 +2058 6207 0.8200 +2058 6208 0.8440 +2058 6209 0.9620 +2058 6210 0.7030 +2058 6217 0.7920 +2058 6218 0.8940 +2058 6222 0.9490 +2058 6223 0.9390 +2058 6224 0.9100 +2058 6227 0.8690 +2058 6228 0.8280 +2058 6229 0.9260 +2058 6230 0.8630 +2058 6231 0.8640 +2058 6232 0.7730 +2058 6233 0.4080 +2058 6234 0.8090 +2058 6235 0.7960 +2058 6240 0.6460 +2058 6301 0.8600 +2058 6386 0.7990 +2058 6403 0.5050 +2058 6414 0.7040 +2058 6470 0.6140 +2058 6472 0.6570 +2058 6611 0.4630 +2058 6612 0.4580 +2058 6613 0.6080 +2058 6687 0.4720 +2058 6723 0.4550 +2058 6729 0.6940 +2058 6731 0.5560 +2058 6734 0.6610 +2058 6742 0.4670 +2058 6768 0.4460 +2058 6782 0.4240 +2058 6888 0.4360 +2058 6894 0.4210 +2058 6897 0.9280 +2058 6904 0.4020 +2058 6950 0.7880 +2058 7035 0.5150 +2058 7056 0.6470 +2058 7083 0.5240 +2058 7086 0.6910 +2058 7097 0.5100 +2058 7099 0.6150 +2058 7124 0.4040 +2058 7153 0.4850 +2058 7155 0.4880 +2058 7167 0.4620 +2058 7184 0.5600 +2058 7203 0.6050 +2058 7284 0.6190 +2058 7298 0.5100 +2058 7311 0.7570 +2058 7316 0.4100 +2058 7317 0.4680 +2058 7372 0.4610 +2058 7386 0.4100 +2058 7389 0.5040 +2058 7390 0.4210 +2058 7403 0.5990 +2058 7404 0.6200 +2058 7407 0.9700 +2058 7409 0.4640 +2058 7450 0.4970 +2058 7453 0.7150 +2058 7514 0.4820 +2058 7965 0.9990 +2058 8050 0.4560 +2058 8192 0.4380 +2058 8195 0.7160 +2058 8242 0.4810 +2058 8243 0.4270 +2058 8277 0.6860 +2058 8284 0.4990 +2058 8361 0.5510 +2058 8505 0.4330 +2058 8565 0.9990 +2058 8566 0.4020 +2058 8615 0.4540 +2058 8653 0.4360 +2058 8658 0.4620 +2058 8659 0.8690 +2058 8661 0.7370 +2058 8662 0.7090 +2058 8663 0.7550 +2058 8666 0.4530 +2058 8672 0.4870 +2058 8697 0.7990 +2058 8721 0.6410 +2058 8833 0.9120 +2058 8856 0.8820 +2058 8894 0.7360 +2058 9002 0.4480 +2058 9045 0.6510 +2058 9086 0.5290 +2058 9255 0.9990 +2058 9276 0.9670 +2058 9320 0.4020 +2058 9343 0.7440 +2058 9349 0.9230 +2058 9361 0.5100 +2058 9380 0.5650 +2058 9521 0.9990 +2058 9528 0.4080 +2058 9533 0.5850 +2058 9553 0.5860 +2058 9563 0.4660 +2058 9584 0.4630 +2058 9617 0.6840 +2058 9622 0.4800 +2058 9636 0.4060 +2058 9652 0.4300 +2058 9669 0.9300 +2058 9698 0.5240 +2058 9732 0.6880 +2058 9782 0.4440 +2058 9801 0.5830 +2058 9858 0.8470 +2058 9862 0.4330 +2058 10056 0.9250 +2058 10102 0.8790 +2058 10128 0.6060 +2058 10135 0.6790 +2058 10213 0.4320 +2058 10352 0.8410 +2058 10380 0.6940 +2058 10399 0.8060 +2058 10412 0.5600 +2058 10473 0.7150 +2058 10492 0.9990 +2058 10526 0.5410 +2058 10527 0.5720 +2058 10528 0.7390 +2058 10531 0.5080 +2058 10544 0.5810 +2058 10557 0.6920 +2058 10574 0.5460 +2058 10575 0.4200 +2058 10576 0.7350 +2058 10594 0.4950 +2058 10598 0.4490 +2058 10605 0.4980 +2058 10666 0.4250 +2058 10667 0.8130 +2058 10672 0.6130 +2058 10694 0.6090 +2058 10730 0.4990 +2058 10765 0.4630 +2058 10768 0.4140 +2058 10797 0.5870 +2058 10808 0.4630 +2058 10899 0.4900 +2058 10939 0.4740 +2058 10952 0.6800 +2058 10969 0.5760 +2058 10985 0.6220 +2058 10988 0.6460 +2058 10989 0.6680 +2058 11100 0.4470 +2058 11128 0.7470 +2058 11145 0.4040 +2058 11222 0.7890 +2058 11224 0.8470 +2058 11232 0.8940 +2058 11325 0.4450 +2058 22824 0.4580 +2058 22927 0.6020 +2058 22934 0.5320 +2058 22948 0.5900 +2058 22984 0.7500 +2058 23020 0.4350 +2058 23135 0.5560 +2058 23165 0.5310 +2058 23171 0.4690 +2058 23173 0.6340 +2058 23181 0.4100 +2058 23190 0.4920 +2058 23204 0.7010 +2058 23212 0.4040 +2058 23246 0.6650 +2058 23252 0.4580 +2058 23369 0.4510 +2058 23395 0.9920 +2058 23438 0.8220 +2058 23479 0.4060 +2058 23480 0.6090 +2058 23481 0.6080 +2058 23521 0.9990 +2058 23534 0.7840 +2058 23549 0.4480 +2058 23560 0.8760 +2058 23583 0.4980 +2058 23626 0.4360 +2058 23640 0.5610 +2058 23708 0.7790 +2058 24140 0.4710 +2058 24148 0.4330 +2058 25789 0.4040 +2058 25821 0.4980 +2058 25873 0.8520 +2058 25885 0.7880 +2058 25973 0.9990 +2058 26135 0.6400 +2058 26155 0.6350 +2058 26156 0.5960 +2058 26271 0.6780 +2058 26284 0.5220 +2058 26330 0.5330 +2058 26354 0.5320 +2058 26523 0.4400 +2058 26986 0.4230 +2058 26995 0.4850 +2058 27068 0.5360 +2058 27102 0.5870 +2058 27161 0.4440 +2058 27165 0.8050 +2058 27292 0.4650 +2058 28998 0.9930 +2058 29088 0.5660 +2058 29093 0.8160 +2058 29789 0.6410 +2058 29889 0.4880 +2058 29920 0.4210 +2058 29927 0.6890 +2058 29960 0.4290 +2058 29968 0.4920 +2058 29978 0.4630 +2058 29979 0.4050 +2058 29997 0.4810 +2058 43847 0.4470 +2058 50487 0.4250 +2058 51021 0.5300 +2058 51065 0.7730 +2058 51067 0.9300 +2058 51068 0.5830 +2058 51069 0.8280 +2058 51073 0.7540 +2058 51081 0.8530 +2058 51095 0.6230 +2058 51106 0.4570 +2058 51116 0.8480 +2058 51121 0.8940 +2058 51149 0.8160 +2058 51154 0.7800 +2058 51182 0.4230 +2058 51187 0.6360 +2058 51206 0.5260 +2058 51264 0.4680 +2058 51290 0.4580 +2058 51314 0.5070 +2058 51319 0.7010 +2058 51360 0.6140 +2058 51433 0.4670 +2058 51493 0.5700 +2058 51512 0.4620 +2058 51520 0.9990 +2058 51574 0.5860 +2058 51602 0.7150 +2058 51614 0.4440 +2058 51654 0.5020 +2058 51720 0.4290 +2058 51728 0.4190 +2058 51805 0.5170 +2058 54148 0.5850 +2058 54431 0.5180 +2058 54433 0.6340 +2058 54516 0.6870 +2058 54552 0.5020 +2058 54596 0.4410 +2058 54802 0.4700 +2058 54901 0.5040 +2058 54920 0.9920 +2058 54938 0.8490 +2058 54948 0.5720 +2058 54965 0.5780 +2058 54979 0.4040 +2058 55127 0.4540 +2058 55143 0.4430 +2058 55157 0.9710 +2058 55173 0.9080 +2058 55176 0.6440 +2058 55226 0.4270 +2058 55272 0.9140 +2058 55276 0.4760 +2058 55278 0.9620 +2058 55299 0.4460 +2058 55301 0.4330 +2058 55312 0.4100 +2058 55316 0.7900 +2058 55341 0.4290 +2058 55379 0.4910 +2058 55591 0.6230 +2058 55621 0.5250 +2058 55644 0.5900 +2058 55651 0.6920 +2058 55687 0.4940 +2058 55699 0.9990 +2058 55703 0.6750 +2058 55780 0.4780 +2058 55854 0.4080 +2058 55893 0.4260 +2058 56474 0.7790 +2058 56648 0.7560 +2058 56731 0.4250 +2058 56829 0.4940 +2058 56893 0.4050 +2058 56926 0.5320 +2058 56943 0.5220 +2058 57019 0.4090 +2058 57038 0.9990 +2058 57110 0.4040 +2058 57136 0.5300 +2058 57176 0.9280 +2058 57222 0.4330 +2058 57448 0.4260 +2058 57469 0.4850 +2058 57470 0.9150 +2058 57505 0.8980 +2058 57609 0.4010 +2058 60558 0.4790 +2058 60678 0.5240 +2058 63931 0.7930 +2058 64146 0.4010 +2058 64172 0.5490 +2058 64216 0.4960 +2058 64374 0.5670 +2058 64746 0.8470 +2058 64761 0.4070 +2058 64805 0.5060 +2058 64960 0.8200 +2058 64963 0.8480 +2058 64965 0.5800 +2058 64968 0.4460 +2058 64969 0.7850 +2058 64983 0.5420 +2058 65003 0.7180 +2058 65005 0.4520 +2058 65008 0.8520 +2058 65121 0.5370 +2058 65122 0.5370 +2058 65263 0.4270 +2058 79073 0.6560 +2058 79587 0.8480 +2058 79590 0.9030 +2058 79612 0.5700 +2058 79631 0.7180 +2058 79691 0.4130 +2058 79693 0.5420 +2058 79711 0.4030 +2058 79728 0.4010 +2058 79731 0.9410 +2058 79738 0.7100 +2058 79947 0.7110 +2058 80155 0.5980 +2058 80222 0.9050 +2058 80273 0.5290 +2058 80331 0.5530 +2058 80347 0.4010 +2058 80745 0.4990 +2058 81570 0.5280 +2058 81890 0.4990 +2058 83475 0.4020 +2058 83743 0.5750 +2058 83752 0.4640 +2058 84076 0.6860 +2058 84135 0.4010 +2058 84154 0.6560 +2058 84172 0.7030 +2058 84273 0.4330 +2058 84340 0.5090 +2058 84365 0.5290 +2058 84464 0.9830 +2058 84705 0.5260 +2058 84993 0.4010 +2058 85441 0.4600 +2058 85476 0.7950 +2058 87178 0.5600 +2058 89894 0.4410 +2058 90353 0.5680 +2058 91574 0.6910 +2058 91875 0.7790 +2058 91893 0.6530 +2058 92170 0.4200 +2058 92196 0.4590 +2058 92399 0.8020 +2058 92935 0.9930 +2058 93974 0.4580 +2058 113179 0.5030 +2058 114987 0.7810 +2058 115752 0.4030 +2058 116150 0.7170 +2058 116832 0.5730 +2058 116835 0.4040 +2058 117246 0.5370 +2058 118461 0.4040 +2058 120892 0.5830 +2058 122622 0.4550 +2058 123263 0.5720 +2058 123283 0.9240 +2058 124454 0.9680 +2058 126402 0.8460 +2058 134266 0.4820 +2058 134637 0.5210 +2058 139596 0.4450 +2058 140032 0.7280 +2058 140801 0.6180 +2058 142940 0.4490 +2058 143244 0.7560 +2058 147011 0.4250 +2058 150160 0.5670 +2058 150274 0.7130 +2058 153443 0.4570 +2058 154288 0.4250 +2058 157869 0.4330 +2058 158584 0.9490 +2058 165631 0.4080 +2058 197322 0.4420 +2058 200172 0.4870 +2058 200916 0.6750 +2058 201595 0.4160 +2058 207063 0.4290 +2058 221823 0.6690 +2058 255308 0.5660 +2058 259217 0.4040 +2058 260434 0.4750 +2058 283209 0.4640 +2058 283459 0.5230 +2058 284131 0.4140 +2058 285521 0.4130 +2058 285855 0.7500 +2058 326625 0.4360 +2058 343068 0.5370 +2058 343070 0.5370 +2058 345630 0.8500 +2058 347487 0.8470 +2058 374395 0.6160 +2058 374659 0.4980 +2058 376497 0.4900 +2058 387129 0.7420 +2058 387712 0.4090 +2058 388633 0.4040 +2058 390999 0.5370 +2058 391002 0.5370 +2058 400735 0.5370 +2058 400736 0.5370 +2058 440275 0.8240 +2058 440560 0.5370 +2058 440561 0.5370 +2058 441024 0.5380 +2058 441873 0.5370 +2058 619279 0.4250 +2058 641776 0.6930 +2058 642987 0.4250 +2058 643909 0.6930 +2058 645051 0.5380 +2058 645073 0.5380 +2058 645359 0.5370 +2058 653619 0.5370 +2058 728524 0.6930 +2058 728689 0.7400 +2058 729020 0.4920 +2058 729396 0.5380 +2058 729422 0.5380 +2058 729428 0.5380 +2058 729431 0.5380 +2058 729442 0.5380 +2058 729447 0.5380 +2058 729528 0.5370 +2058 100008586 0.5380 +2058 100132399 0.5380 +2058 100287482 0.8470 +2058 100505478 0.7420 +2058 100526842 0.8120 +2058 100529097 0.6940 +2058 100529239 0.7530 +2058 100996746 0.6930 +2058 101927367 0.6500 +2058 101929983 0.5370 +2058 102724473 0.5380 +2058 105180390 0.6930 +2058 105180391 0.6930 +2059 2263 0.4080 +2059 2268 0.4730 +2059 2309 0.4300 +2059 2773 0.5880 +2059 2885 0.4050 +2059 2890 0.4610 +2059 2891 0.4160 +2059 2892 0.5140 +2059 2893 0.4350 +2059 2902 0.4370 +2059 2903 0.4740 +2059 2904 0.4610 +2059 2905 0.4350 +2059 2934 0.8830 +2059 3059 0.4280 +2059 4354 0.8570 +2059 4478 0.6400 +2059 4627 0.4990 +2059 4641 0.5490 +2059 4647 0.7290 +2059 5104 0.4600 +2059 5287 0.6980 +2059 5357 0.6670 +2059 5358 0.4460 +2059 5756 0.7180 +2059 5868 0.7120 +2059 5877 0.6460 +2059 5879 0.4960 +2059 5921 0.7610 +2059 5962 0.6720 +2059 6128 0.5550 +2059 6461 0.6060 +2059 6464 0.4540 +2059 6624 0.4770 +2059 6654 0.9990 +2059 6655 0.5540 +2059 6709 0.5350 +2059 6711 0.5180 +2059 6714 0.7150 +2059 7157 0.4410 +2059 7408 0.5670 +2059 7430 0.7110 +2059 7454 0.6710 +2059 8038 0.4110 +2059 8321 0.4050 +2059 8573 0.9650 +2059 8825 0.5910 +2059 8976 0.7490 +2059 9712 0.9520 +2059 9750 0.5820 +2059 10006 0.9990 +2059 10083 0.4140 +2059 10095 0.4380 +2059 10096 0.7270 +2059 10152 0.6150 +2059 10163 0.7760 +2059 10314 0.8480 +2059 10458 0.9960 +2059 10787 0.4280 +2059 11078 0.6180 +2059 11344 0.9210 +2059 22879 0.4230 +2059 22927 0.4220 +2059 22989 0.5960 +2059 23022 0.7990 +2059 23136 0.5170 +2059 25794 0.6130 +2059 25861 0.9870 +2059 25945 0.4560 +2059 26060 0.4570 +2059 26130 0.4480 +2059 29765 0.5180 +2059 29899 0.7620 +2059 50618 0.4950 +2059 51168 0.9910 +2059 51225 0.6790 +2059 51347 0.4540 +2059 51454 0.4020 +2059 51622 0.4240 +2059 53405 0.5820 +2059 53904 0.9210 +2059 54461 0.4250 +2059 55740 0.6010 +2059 55915 0.7060 +2059 55971 0.7800 +2059 57180 0.4350 +2059 57216 0.4120 +2059 58513 0.4400 +2059 64787 0.8820 +2059 80115 0.4650 +2059 83715 0.9590 +2059 83892 0.5110 +2059 84315 0.4220 +2059 85477 0.4510 +2059 117531 0.4490 +2059 124590 0.4110 +2059 129446 0.5600 +2059 140469 0.8750 +2059 221960 0.4240 +2059 286262 0.6390 +2059 339768 0.8850 +2059 342184 0.5380 +2059 345456 0.4270 +2059 375189 0.4580 +2059 389207 0.6260 +2059 494513 0.4990 +2059 643226 0.7070 +2059 653857 0.4560 +2060 2064 0.4530 +2060 2069 0.5260 +2060 2261 0.6910 +2060 2263 0.7020 +2060 2264 0.6970 +2060 2580 0.6960 +2060 2697 0.8280 +2060 2885 0.8700 +2060 3082 0.7150 +2060 3092 0.4980 +2060 3267 0.9250 +2060 3268 0.7160 +2060 3312 0.4280 +2060 3480 0.7030 +2060 3482 0.4770 +2060 3611 0.4780 +2060 3636 0.5030 +2060 3949 0.5120 +2060 3987 0.4260 +2060 4036 0.5540 +2060 4074 0.4090 +2060 4193 0.4980 +2060 4218 0.4360 +2060 4233 0.5840 +2060 4287 0.5140 +2060 4299 0.5820 +2060 4300 0.5260 +2060 4302 0.4030 +2060 4734 0.7060 +2060 4952 0.4140 +2060 5071 0.7410 +2060 5129 0.4690 +2060 5156 0.6970 +2060 5412 0.5460 +2060 5504 0.4810 +2060 5530 0.4380 +2060 5532 0.5250 +2060 5770 0.6130 +2060 5774 0.7390 +2060 5862 0.5110 +2060 5867 0.6600 +2060 5868 0.6340 +2060 6233 0.7670 +2060 6453 0.9970 +2060 6455 0.7820 +2060 6456 0.8740 +2060 6457 0.8420 +2060 6503 0.5940 +2060 6531 0.5540 +2060 6572 0.5560 +2060 6642 0.5130 +2060 6683 0.4120 +2060 6714 0.4850 +2060 6774 0.5040 +2060 6790 0.4380 +2060 6844 0.7590 +2060 6845 0.6250 +2060 6855 0.4290 +2060 6857 0.5910 +2060 6869 0.5110 +2060 7037 0.7090 +2060 7039 0.5610 +2060 7040 0.5460 +2060 7251 0.4590 +2060 7311 0.6840 +2060 7314 0.7510 +2060 7316 0.9510 +2060 7321 0.4010 +2060 7325 0.4410 +2060 7408 0.4700 +2060 7454 0.7840 +2060 7474 0.4990 +2060 7531 0.4590 +2060 7535 0.5510 +2060 7965 0.4490 +2060 8027 0.9030 +2060 8028 0.4380 +2060 8178 0.4070 +2060 8218 0.9390 +2060 8301 0.9460 +2060 8322 0.4990 +2060 8411 0.5920 +2060 8522 0.4060 +2060 8546 0.4460 +2060 8650 0.9900 +2060 8673 0.5840 +2060 8766 0.6550 +2060 8867 0.9430 +2060 8871 0.8180 +2060 8878 0.5400 +2060 8905 0.5880 +2060 8906 0.6410 +2060 8907 0.6890 +2060 8976 0.6470 +2060 9026 0.8200 +2060 9101 0.5490 +2060 9135 0.4500 +2060 9146 0.9890 +2060 9179 0.5340 +2060 9185 0.7760 +2060 9253 0.9870 +2060 9322 0.7390 +2060 9341 0.5900 +2060 9522 0.4350 +2060 9685 0.8710 +2060 9829 0.5830 +2060 9873 0.5440 +2060 9892 0.9550 +2060 10015 0.4290 +2060 10053 0.6360 +2060 10059 0.5660 +2060 10097 0.4860 +2060 10133 0.5310 +2060 10252 0.4990 +2060 10253 0.5110 +2060 10254 0.9310 +2060 10537 0.5370 +2060 10617 0.5600 +2060 10717 0.5310 +2060 10900 0.6230 +2060 10928 0.5860 +2060 10938 0.4490 +2060 10947 0.4120 +2060 11252 0.6130 +2060 11276 0.7070 +2060 11337 0.4870 +2060 11345 0.5020 +2060 22841 0.6690 +2060 22848 0.9600 +2060 22905 0.9990 +2060 23048 0.4750 +2060 23111 0.9550 +2060 23149 0.9990 +2060 23163 0.4050 +2060 23208 0.4580 +2060 23301 0.6580 +2060 23327 0.6810 +2060 23677 0.9040 +2060 23710 0.4970 +2060 25977 0.8540 +2060 26003 0.4330 +2060 26018 0.5260 +2060 26052 0.4110 +2060 26060 0.4020 +2060 26119 0.6450 +2060 26509 0.6110 +2060 26985 0.4630 +2060 26994 0.8770 +2060 28988 0.4570 +2060 29924 0.9980 +2060 29978 0.9080 +2060 29979 0.9300 +2060 30011 0.7080 +2060 30844 0.4560 +2060 30845 0.4490 +2060 30846 0.4150 +2060 50613 0.5770 +2060 50618 0.9970 +2060 51028 0.4280 +2060 51429 0.4560 +2060 54497 0.4050 +2060 55040 0.9990 +2060 55655 0.4090 +2060 55707 0.8840 +2060 55737 0.4330 +2060 55738 0.4510 +2060 56479 0.5400 +2060 56893 0.6160 +2060 58513 0.9900 +2060 64083 0.4150 +2060 64145 0.5750 +2060 64750 0.5120 +2060 79102 0.4860 +2060 79585 0.8480 +2060 80115 0.5600 +2060 80335 0.4160 +2060 83737 0.4960 +2060 83988 0.5620 +2060 84168 0.4840 +2060 84251 0.9930 +2060 84268 0.5250 +2060 85021 0.8630 +2060 85377 0.6730 +2060 85439 0.9990 +2060 90342 0.4030 +2060 92552 0.5130 +2060 112399 0.4400 +2060 115548 0.9960 +2060 118429 0.4750 +2060 122616 0.5400 +2060 124540 0.4010 +2060 127833 0.4240 +2060 130340 0.5470 +2060 132320 0.4940 +2060 150350 0.7280 +2060 255324 0.5140 +2060 284119 0.4760 +2060 285527 0.5090 +2060 339745 0.5600 +2060 346389 0.6320 +2060 100529144 0.8090 +2063 3665 0.4320 +2063 4094 0.4520 +2063 4640 0.4260 +2063 4650 0.7700 +2063 5469 0.5680 +2063 5972 0.4930 +2063 7026 0.6510 +2063 8648 0.4760 +2063 8929 0.5610 +2063 9611 0.6110 +2063 9612 0.6080 +2063 10524 0.5350 +2063 10565 0.4220 +2063 51655 0.4130 +2063 64324 0.4790 +2064 2065 0.9990 +2064 2066 0.9990 +2064 2067 0.5070 +2064 2068 0.4050 +2064 2069 0.8600 +2064 2086 0.5060 +2064 2099 0.9760 +2064 2100 0.7170 +2064 2103 0.5920 +2064 2113 0.4440 +2064 2115 0.4100 +2064 2118 0.4890 +2064 2120 0.4030 +2064 2146 0.5710 +2064 2185 0.6820 +2064 2194 0.6800 +2064 2195 0.4430 +2064 2204 0.5270 +2064 2209 0.8790 +2064 2212 0.5910 +2064 2217 0.6570 +2064 2241 0.4450 +2064 2246 0.7870 +2064 2247 0.8570 +2064 2248 0.8320 +2064 2249 0.8280 +2064 2250 0.8160 +2064 2251 0.8220 +2064 2252 0.8240 +2064 2253 0.8070 +2064 2254 0.8290 +2064 2255 0.8260 +2064 2258 0.4560 +2064 2260 0.7370 +2064 2261 0.7650 +2064 2263 0.7440 +2064 2264 0.8290 +2064 2268 0.5060 +2064 2272 0.4470 +2064 2277 0.7690 +2064 2296 0.4020 +2064 2305 0.5470 +2064 2308 0.4870 +2064 2309 0.5450 +2064 2321 0.5900 +2064 2322 0.7350 +2064 2323 0.7150 +2064 2324 0.7220 +2064 2335 0.7240 +2064 2346 0.8250 +2064 2348 0.6350 +2064 2350 0.5490 +2064 2352 0.5740 +2064 2353 0.5300 +2064 2475 0.7250 +2064 2525 0.4670 +2064 2532 0.4220 +2064 2534 0.8070 +2064 2549 0.9480 +2064 2584 0.4140 +2064 2597 0.8060 +2064 2621 0.4020 +2064 2625 0.6620 +2064 2719 0.4700 +2064 2729 0.4520 +2064 2735 0.4480 +2064 2736 0.5960 +2064 2767 0.5420 +2064 2776 0.4700 +2064 2778 0.5450 +2064 2796 0.4740 +2064 2813 0.4150 +2064 2817 0.6960 +2064 2821 0.5670 +2064 2852 0.4320 +2064 2875 0.4470 +2064 2877 0.5030 +2064 2878 0.5220 +2064 2880 0.4960 +2064 2882 0.4930 +2064 2885 0.9990 +2064 2886 0.9990 +2064 2887 0.7180 +2064 2888 0.6110 +2064 2909 0.5610 +2064 2932 0.5750 +2064 2956 0.5790 +2064 3002 0.4790 +2064 3021 0.5290 +2064 3065 0.4390 +2064 3082 0.9180 +2064 3084 0.9990 +2064 3091 0.6900 +2064 3105 0.7240 +2064 3169 0.6400 +2064 3172 0.4120 +2064 3212 0.4160 +2064 3265 0.9070 +2064 3304 0.4730 +2064 3308 0.9510 +2064 3309 0.7210 +2064 3312 0.5200 +2064 3315 0.4420 +2064 3316 0.4480 +2064 3320 0.9990 +2064 3326 0.9930 +2064 3357 0.4130 +2064 3383 0.4460 +2064 3417 0.6340 +2064 3418 0.5600 +2064 3439 0.4440 +2064 3458 0.6470 +2064 3479 0.9920 +2064 3480 0.9930 +2064 3481 0.8190 +2064 3485 0.6000 +2064 3486 0.4430 +2064 3552 0.4180 +2064 3553 0.5070 +2064 3558 0.6090 +2064 3559 0.5140 +2064 3565 0.4700 +2064 3569 0.7520 +2064 3572 0.4420 +2064 3576 0.6620 +2064 3577 0.6020 +2064 3586 0.5070 +2064 3596 0.5810 +2064 3598 0.8510 +2064 3600 0.4470 +2064 3620 0.6790 +2064 3630 0.9650 +2064 3643 0.8530 +2064 3645 0.6740 +2064 3654 0.5210 +2064 3655 0.6800 +2064 3656 0.4290 +2064 3659 0.4600 +2064 3667 0.9090 +2064 3675 0.5420 +2064 3683 0.4560 +2064 3685 0.4690 +2064 3688 0.8210 +2064 3690 0.4200 +2064 3691 0.9440 +2064 3702 0.4730 +2064 3716 0.9590 +2064 3717 0.9660 +2064 3718 0.9510 +2064 3725 0.7590 +2064 3728 0.7170 +2064 3732 0.4910 +2064 3791 0.6400 +2064 3799 0.4160 +2064 3837 0.6640 +2064 3845 0.9660 +2064 3852 0.7960 +2064 3855 0.6920 +2064 3856 0.6330 +2064 3861 0.6540 +2064 3872 0.5550 +2064 3875 0.6070 +2064 3880 0.6650 +2064 3897 0.7770 +2064 3902 0.5210 +2064 3916 0.6110 +2064 3920 0.5610 +2064 3925 0.4360 +2064 3952 0.4630 +2064 4015 0.4740 +2064 4070 0.7320 +2064 4072 0.9270 +2064 4087 0.5120 +2064 4088 0.4880 +2064 4089 0.7080 +2064 4100 0.6180 +2064 4102 0.5270 +2064 4103 0.4690 +2064 4145 0.8980 +2064 4170 0.7130 +2064 4193 0.6650 +2064 4194 0.4330 +2064 4233 0.8470 +2064 4250 0.6760 +2064 4254 0.8180 +2064 4255 0.5070 +2064 4288 0.6230 +2064 4292 0.6240 +2064 4311 0.4230 +2064 4312 0.4260 +2064 4313 0.7380 +2064 4316 0.4750 +2064 4318 0.6550 +2064 4320 0.4490 +2064 4323 0.6940 +2064 4325 0.4220 +2064 4353 0.5280 +2064 4363 0.4360 +2064 4436 0.7280 +2064 4478 0.4800 +2064 4486 0.7130 +2064 4585 0.9960 +2064 4586 0.4290 +2064 4588 0.4300 +2064 4594 0.4310 +2064 4595 0.4790 +2064 4605 0.4480 +2064 4609 0.8860 +2064 4613 0.5230 +2064 4653 0.4810 +2064 4684 0.5080 +2064 4690 0.6080 +2064 4691 0.6260 +2064 4763 0.7710 +2064 4771 0.7340 +2064 4780 0.4180 +2064 4790 0.7330 +2064 4792 0.4130 +2064 4803 0.8490 +2064 4804 0.5730 +2064 4830 0.4730 +2064 4842 0.4160 +2064 4851 0.7960 +2064 4853 0.5050 +2064 4854 0.5390 +2064 4855 0.4500 +2064 4869 0.4710 +2064 4893 0.9040 +2064 4904 0.6440 +2064 4908 0.7250 +2064 4909 0.7000 +2064 4914 0.7510 +2064 4915 0.7040 +2064 4920 0.6490 +2064 4978 0.4250 +2064 5045 0.4060 +2064 5054 0.4470 +2064 5071 0.4640 +2064 5076 0.5610 +2064 5133 0.6460 +2064 5154 0.7460 +2064 5155 0.7710 +2064 5156 0.7680 +2064 5159 0.8740 +2064 5175 0.5550 +2064 5228 0.7700 +2064 5241 0.9800 +2064 5243 0.5940 +2064 5245 0.4730 +2064 5266 0.6080 +2064 5268 0.4160 +2064 5286 0.4540 +2064 5287 0.4670 +2064 5290 0.9920 +2064 5291 0.9720 +2064 5293 0.9410 +2064 5294 0.7040 +2064 5295 0.9950 +2064 5296 0.9850 +2064 5304 0.6730 +2064 5315 0.4570 +2064 5328 0.5700 +2064 5329 0.5280 +2064 5335 0.9810 +2064 5336 0.9790 +2064 5364 0.9940 +2064 5378 0.5170 +2064 5395 0.5480 +2064 5426 0.5070 +2064 5460 0.5060 +2064 5468 0.4950 +2064 5518 0.4610 +2064 5551 0.4750 +2064 5578 0.4830 +2064 5580 0.4420 +2064 5591 0.6300 +2064 5599 0.4390 +2064 5604 0.4100 +2064 5617 0.4450 +2064 5618 0.5920 +2064 5709 0.5440 +2064 5727 0.4970 +2064 5728 0.8680 +2064 5743 0.8280 +2064 5747 0.9900 +2064 5753 0.8380 +2064 5754 0.7160 +2064 5770 0.6220 +2064 5777 0.5220 +2064 5781 0.9710 +2064 5782 0.9350 +2064 5783 0.4170 +2064 5788 0.6560 +2064 5795 0.6110 +2064 5796 0.4160 +2064 5805 0.4040 +2064 5818 0.6150 +2064 5829 0.7210 +2064 5888 0.4560 +2064 5889 0.4550 +2064 5892 0.4090 +2064 5894 0.4550 +2064 5898 0.4370 +2064 5903 0.6680 +2064 5914 0.4910 +2064 5921 0.8150 +2064 5925 0.4610 +2064 5962 0.5050 +2064 5970 0.4190 +2064 5979 0.7450 +2064 5987 0.4260 +2064 6091 0.4540 +2064 6093 0.6720 +2064 6098 0.4410 +2064 6233 0.7430 +2064 6241 0.4450 +2064 6275 0.4070 +2064 6347 0.4480 +2064 6356 0.4720 +2064 6382 0.8110 +2064 6385 0.7370 +2064 6387 0.6770 +2064 6464 0.9990 +2064 6469 0.6350 +2064 6490 0.5440 +2064 6502 0.4470 +2064 6513 0.4320 +2064 6591 0.6190 +2064 6597 0.6570 +2064 6598 0.5010 +2064 6605 0.4730 +2064 6608 0.4780 +2064 6615 0.6620 +2064 6648 0.5470 +2064 6653 0.4140 +2064 6654 0.8040 +2064 6655 0.6490 +2064 6657 0.5720 +2064 6662 0.4400 +2064 6663 0.4260 +2064 6670 0.4070 +2064 6695 0.4070 +2064 6696 0.5180 +2064 6714 0.9990 +2064 6720 0.5670 +2064 6737 0.9450 +2064 6772 0.8210 +2064 6774 0.9480 +2064 6776 0.6910 +2064 6777 0.5160 +2064 6794 0.4630 +2064 6850 0.4650 +2064 6855 0.4650 +2064 6868 0.4880 +2064 6876 0.4560 +2064 6932 0.5020 +2064 7010 0.4540 +2064 7015 0.5900 +2064 7021 0.5600 +2064 7022 0.6670 +2064 7031 0.4600 +2064 7037 0.6630 +2064 7039 0.9980 +2064 7040 0.6350 +2064 7046 0.4770 +2064 7048 0.4950 +2064 7057 0.4610 +2064 7067 0.5660 +2064 7076 0.4690 +2064 7080 0.4790 +2064 7082 0.4240 +2064 7083 0.5710 +2064 7094 0.4140 +2064 7098 0.5770 +2064 7099 0.4290 +2064 7124 0.6210 +2064 7150 0.4870 +2064 7153 0.6210 +2064 7157 0.9350 +2064 7184 0.7810 +2064 7249 0.5250 +2064 7291 0.5710 +2064 7293 0.4800 +2064 7294 0.4500 +2064 7297 0.4910 +2064 7298 0.5090 +2064 7299 0.4290 +2064 7301 0.6760 +2064 7311 0.4990 +2064 7314 0.5610 +2064 7316 0.5980 +2064 7409 0.5820 +2064 7410 0.6170 +2064 7412 0.4170 +2064 7414 0.4440 +2064 7415 0.4190 +2064 7423 0.7770 +2064 7424 0.8080 +2064 7430 0.8690 +2064 7431 0.4890 +2064 7471 0.5060 +2064 7472 0.5450 +2064 7474 0.4090 +2064 7490 0.5110 +2064 7514 0.5430 +2064 7520 0.5230 +2064 7525 0.6870 +2064 7528 0.6430 +2064 7534 0.8080 +2064 7764 0.5100 +2064 7837 0.7020 +2064 7849 0.4120 +2064 7852 0.7290 +2064 7874 0.4090 +2064 7917 0.5380 +2064 8000 0.5190 +2064 8034 0.4460 +2064 8065 0.6390 +2064 8074 0.6960 +2064 8085 0.4150 +2064 8202 0.7690 +2064 8289 0.6670 +2064 8290 0.5040 +2064 8312 0.4560 +2064 8356 0.5280 +2064 8411 0.8360 +2064 8434 0.4830 +2064 8440 0.4700 +2064 8503 0.9750 +2064 8531 0.4880 +2064 8549 0.4570 +2064 8557 0.4870 +2064 8626 0.4530 +2064 8648 0.5670 +2064 8651 0.5570 +2064 8661 0.8320 +2064 8678 0.8880 +2064 8743 0.4010 +2064 8764 0.5320 +2064 8767 0.4530 +2064 8771 0.4040 +2064 8795 0.4790 +2064 8817 0.8360 +2064 8821 0.5070 +2064 8822 0.8150 +2064 8823 0.8290 +2064 8826 0.7960 +2064 8842 0.7700 +2064 8895 0.4500 +2064 8900 0.4890 +2064 8945 0.5030 +2064 8988 0.4420 +2064 9021 0.4420 +2064 9034 0.4320 +2064 9047 0.4250 +2064 9061 0.4140 +2064 9093 0.5130 +2064 9101 0.5720 +2064 9134 0.4480 +2064 9180 0.8740 +2064 9212 0.4320 +2064 9402 0.7740 +2064 9429 0.7400 +2064 9459 0.4700 +2064 9463 0.6050 +2064 9475 0.6360 +2064 9476 0.4310 +2064 9479 0.4390 +2064 9542 0.9940 +2064 9564 0.8450 +2064 9610 0.5760 +2064 9618 0.5160 +2064 9687 0.4380 +2064 9817 0.4490 +2064 9826 0.5850 +2064 9839 0.5180 +2064 9965 0.7680 +2064 10013 0.4850 +2064 10018 0.5410 +2064 10019 0.4100 +2064 10038 0.5980 +2064 10140 0.8540 +2064 10188 0.5050 +2064 10193 0.6390 +2064 10213 0.4400 +2064 10232 0.6680 +2064 10273 0.9820 +2064 10413 0.5380 +2064 10451 0.5700 +2064 10456 0.5500 +2064 10460 0.4580 +2064 10461 0.6790 +2064 10507 0.6560 +2064 10630 0.5140 +2064 10718 0.8720 +2064 10765 0.6720 +2064 10766 0.5510 +2064 10855 0.4160 +2064 10891 0.4060 +2064 10894 0.4140 +2064 10948 0.7390 +2064 11140 0.8910 +2064 11186 0.5410 +2064 11200 0.4230 +2064 11201 0.5420 +2064 22794 0.4620 +2064 22914 0.7820 +2064 23152 0.4290 +2064 23365 0.5680 +2064 23405 0.4290 +2064 23476 0.4220 +2064 23499 0.5050 +2064 23566 0.4530 +2064 23624 0.6420 +2064 23671 0.4850 +2064 23705 0.7000 +2064 25759 0.9600 +2064 25885 0.6360 +2064 26018 0.8280 +2064 26281 0.8280 +2064 26291 0.6930 +2064 26469 0.7990 +2064 27006 0.8240 +2064 27250 0.4090 +2064 27255 0.4920 +2064 27289 0.6270 +2064 27436 0.6690 +2064 29126 0.7980 +2064 29760 0.4970 +2064 29904 0.4560 +2064 30816 0.5070 +2064 50943 0.5710 +2064 51070 0.4010 +2064 51072 0.7970 +2064 51208 0.4500 +2064 51284 0.4910 +2064 51378 0.6570 +2064 51430 0.4180 +2064 51755 0.5950 +2064 53353 0.4400 +2064 53358 0.9610 +2064 53942 0.4470 +2064 54205 0.5020 +2064 54206 0.8120 +2064 54453 0.5420 +2064 54474 0.6650 +2064 54894 0.4110 +2064 55107 0.5460 +2064 55193 0.4180 +2064 55294 0.7160 +2064 55359 0.6480 +2064 55636 0.4450 +2064 55824 0.4240 +2064 55914 0.9990 +2064 56034 0.7330 +2064 57126 0.4310 +2064 57509 0.5820 +2064 57689 0.4510 +2064 57758 0.4820 +2064 58508 0.5210 +2064 63897 0.6050 +2064 64083 0.5540 +2064 64101 0.4510 +2064 64759 0.6970 +2064 64798 0.4140 +2064 79727 0.5980 +2064 79728 0.5830 +2064 79890 0.4200 +2064 79923 0.4780 +2064 80139 0.4340 +2064 80223 0.4490 +2064 80310 0.7260 +2064 80321 0.6430 +2064 80380 0.5140 +2064 80381 0.5010 +2064 81557 0.4340 +2064 81607 0.4470 +2064 81669 0.5730 +2064 83442 0.6160 +2064 84172 0.4370 +2064 84174 0.4040 +2064 84260 0.5150 +2064 84299 0.8090 +2064 84335 0.4110 +2064 84708 0.5590 +2064 84868 0.5570 +2064 84951 0.5190 +2064 93210 0.7640 +2064 94025 0.5070 +2064 94030 0.4290 +2064 94235 0.4080 +2064 121227 0.6840 +2064 124626 0.4090 +2064 137902 0.6910 +2064 145957 0.8740 +2064 168400 0.4760 +2064 169355 0.5910 +2064 222484 0.4690 +2064 223117 0.4360 +2064 253260 0.4400 +2064 254827 0.4420 +2064 255324 0.5060 +2064 255738 0.6540 +2064 257202 0.4960 +2064 285605 0.4200 +2064 285782 0.4330 +2064 338324 0.4330 +2064 340273 0.4700 +2064 375790 0.5360 +2064 390243 0.6400 +2064 399694 0.9460 +2064 400566 0.6180 +2064 405754 0.5050 +2064 440093 0.5040 +2064 440686 0.5040 +2064 493869 0.5110 +2064 653604 0.5040 +2064 728239 0.4340 +2064 728378 0.6450 +2064 100133941 0.6950 +2064 100506658 0.4390 +2064 100532731 0.4310 +2065 2066 0.9990 +2065 2069 0.9820 +2065 2099 0.6520 +2065 2100 0.5320 +2065 2103 0.5580 +2065 2113 0.5450 +2065 2185 0.4150 +2065 2241 0.6440 +2065 2246 0.7460 +2065 2247 0.8840 +2065 2248 0.7640 +2065 2249 0.8480 +2065 2250 0.7570 +2065 2251 0.7620 +2065 2252 0.7710 +2065 2253 0.7570 +2065 2254 0.7770 +2065 2255 0.7750 +2065 2258 0.5580 +2065 2260 0.4530 +2065 2263 0.6300 +2065 2277 0.7180 +2065 2309 0.4190 +2065 2323 0.6500 +2065 2335 0.4070 +2065 2475 0.5230 +2065 2534 0.6780 +2065 2549 0.9320 +2065 2597 0.4870 +2065 2627 0.4950 +2065 2733 0.5930 +2065 2885 0.9990 +2065 2886 0.9640 +2065 2934 0.4090 +2065 3002 0.4610 +2065 3055 0.4620 +2065 3082 0.9520 +2065 3084 0.9990 +2065 3091 0.4330 +2065 3105 0.5550 +2065 3113 0.4170 +2065 3169 0.6160 +2065 3265 0.7980 +2065 3308 0.5350 +2065 3309 0.5590 +2065 3320 0.9160 +2065 3326 0.8390 +2065 3417 0.4130 +2065 3479 0.8100 +2065 3480 0.9330 +2065 3481 0.7700 +2065 3487 0.4630 +2065 3551 0.4510 +2065 3630 0.8640 +2065 3667 0.8700 +2065 3702 0.4320 +2065 3716 0.9470 +2065 3717 0.9550 +2065 3725 0.4930 +2065 3791 0.5820 +2065 3815 0.5570 +2065 3845 0.9190 +2065 3897 0.7040 +2065 3958 0.4460 +2065 3984 0.4360 +2065 3993 0.5280 +2065 4072 0.5100 +2065 4089 0.5190 +2065 4145 0.6210 +2065 4170 0.4220 +2065 4193 0.5910 +2065 4214 0.4540 +2065 4233 0.9870 +2065 4254 0.7120 +2065 4585 0.9140 +2065 4588 0.4630 +2065 4609 0.7310 +2065 4690 0.4620 +2065 4734 0.7700 +2065 4739 0.4080 +2065 4763 0.5590 +2065 4771 0.6560 +2065 4803 0.7480 +2065 4851 0.4460 +2065 4893 0.8330 +2065 4908 0.7210 +2065 4909 0.6740 +2065 4914 0.5870 +2065 4921 0.4430 +2065 5036 0.9960 +2065 5154 0.7260 +2065 5155 0.7250 +2065 5156 0.4600 +2065 5228 0.7170 +2065 5241 0.6080 +2065 5266 0.5580 +2065 5290 0.9930 +2065 5291 0.9660 +2065 5293 0.9510 +2065 5294 0.6590 +2065 5295 0.9980 +2065 5296 0.9900 +2065 5335 0.9590 +2065 5336 0.9330 +2065 5460 0.4790 +2065 5495 0.5050 +2065 5580 0.4210 +2065 5604 0.5590 +2065 5728 0.8260 +2065 5753 0.8210 +2065 5754 0.4820 +2065 5764 0.4170 +2065 5777 0.6260 +2065 5781 0.8280 +2065 5782 0.6540 +2065 5789 0.4720 +2065 5816 0.4790 +2065 5818 0.5190 +2065 5829 0.5570 +2065 5894 0.5380 +2065 5921 0.6040 +2065 5979 0.5960 +2065 6233 0.5780 +2065 6275 0.5220 +2065 6464 0.9990 +2065 6591 0.4010 +2065 6597 0.5280 +2065 6615 0.4270 +2065 6651 0.4510 +2065 6653 0.4080 +2065 6654 0.6840 +2065 6655 0.4490 +2065 6657 0.4090 +2065 6663 0.5400 +2065 6714 0.9680 +2065 6774 0.9050 +2065 6776 0.4040 +2065 6794 0.4970 +2065 6850 0.6600 +2065 6868 0.4530 +2065 6934 0.4720 +2065 7039 0.9980 +2065 7042 0.4510 +2065 7057 0.4940 +2065 7077 0.4220 +2065 7132 0.4670 +2065 7157 0.6950 +2065 7249 0.4090 +2065 7294 0.4030 +2065 7297 0.4290 +2065 7311 0.4990 +2065 7314 0.5360 +2065 7316 0.5490 +2065 7409 0.5040 +2065 7410 0.5240 +2065 7423 0.7540 +2065 7424 0.7350 +2065 7430 0.4180 +2065 7473 0.4050 +2065 7474 0.4520 +2065 7525 0.5720 +2065 7837 0.4840 +2065 8074 0.6840 +2065 8289 0.5070 +2065 8412 0.4620 +2065 8503 0.9600 +2065 8661 0.5350 +2065 8817 0.7830 +2065 8822 0.7550 +2065 8823 0.7730 +2065 8837 0.4380 +2065 9047 0.4910 +2065 9077 0.4350 +2065 9101 0.5330 +2065 9368 0.6600 +2065 9402 0.4850 +2065 9518 0.5060 +2065 9542 0.9990 +2065 9965 0.7260 +2065 9982 0.4520 +2065 10000 0.4800 +2065 10019 0.5460 +2065 10193 0.9950 +2065 10397 0.4580 +2065 10413 0.6230 +2065 10451 0.5180 +2065 10551 0.5630 +2065 10675 0.6390 +2065 10718 0.9580 +2065 11097 0.4230 +2065 11140 0.6640 +2065 11315 0.4310 +2065 23274 0.5640 +2065 23327 0.4040 +2065 23371 0.4460 +2065 23396 0.5940 +2065 23414 0.4200 +2065 23512 0.4460 +2065 23624 0.5970 +2065 23671 0.5690 +2065 23705 0.5220 +2065 25759 0.9590 +2065 26018 0.5380 +2065 26191 0.4230 +2065 26281 0.7730 +2065 26291 0.6760 +2065 26872 0.4360 +2065 27006 0.7670 +2065 27022 0.4110 +2065 27250 0.4770 +2065 27436 0.4220 +2065 29126 0.5070 +2065 30816 0.6740 +2065 51072 0.5140 +2065 51378 0.6520 +2065 53353 0.5050 +2065 53358 0.9580 +2065 55294 0.4500 +2065 55914 0.8040 +2065 56034 0.7040 +2065 60468 0.4380 +2065 64149 0.4090 +2065 65078 0.5020 +2065 79923 0.4430 +2065 80018 0.4260 +2065 80129 0.4440 +2065 80310 0.7030 +2065 83737 0.4170 +2065 85477 0.4330 +2065 114904 0.4340 +2065 137902 0.4840 +2065 145957 0.9820 +2065 169792 0.4670 +2065 255324 0.6230 +2065 255738 0.4070 +2065 284656 0.4760 +2065 349667 0.6480 +2065 399694 0.9440 +2065 100423062 0.9020 +2066 2069 0.9990 +2066 2099 0.9610 +2066 2100 0.6060 +2066 2146 0.4120 +2066 2246 0.7730 +2066 2247 0.8710 +2066 2248 0.7650 +2066 2249 0.7550 +2066 2250 0.7470 +2066 2251 0.7540 +2066 2252 0.7670 +2066 2253 0.7520 +2066 2254 0.7810 +2066 2255 0.7760 +2066 2277 0.8180 +2066 2323 0.6500 +2066 2475 0.4300 +2066 2534 0.6340 +2066 2549 0.5260 +2066 2554 0.5970 +2066 2560 0.5900 +2066 2561 0.6270 +2066 2562 0.5600 +2066 2566 0.5960 +2066 2567 0.5450 +2066 2571 0.5080 +2066 2597 0.6010 +2066 2670 0.6580 +2066 2767 0.5940 +2066 2776 0.5270 +2066 2778 0.5720 +2066 2885 0.9990 +2066 2886 0.8270 +2066 2902 0.6720 +2066 2903 0.7680 +2066 2904 0.7530 +2066 2905 0.6510 +2066 2906 0.4580 +2066 2913 0.4440 +2066 3002 0.5490 +2066 3068 0.4290 +2066 3082 0.7810 +2066 3084 0.9990 +2066 3265 0.8270 +2066 3320 0.8090 +2066 3326 0.4480 +2066 3417 0.5190 +2066 3418 0.4900 +2066 3479 0.7890 +2066 3481 0.7410 +2066 3630 0.7740 +2066 3654 0.4520 +2066 3667 0.7340 +2066 3716 0.4950 +2066 3718 0.5520 +2066 3725 0.4360 +2066 3791 0.5960 +2066 3845 0.8620 +2066 3925 0.7740 +2066 3977 0.4460 +2066 4067 0.5340 +2066 4088 0.5400 +2066 4089 0.6300 +2066 4145 0.6230 +2066 4193 0.5400 +2066 4254 0.7160 +2066 4292 0.4740 +2066 4316 0.5890 +2066 4355 0.5110 +2066 4585 0.5020 +2066 4609 0.4630 +2066 4684 0.5470 +2066 4690 0.6700 +2066 4734 0.8410 +2066 4747 0.4910 +2066 4763 0.5290 +2066 4771 0.4300 +2066 4803 0.7470 +2066 4804 0.5080 +2066 4842 0.4180 +2066 4851 0.6020 +2066 4853 0.4230 +2066 4854 0.4010 +2066 4869 0.4690 +2066 4893 0.8450 +2066 4904 0.4590 +2066 4908 0.7100 +2066 4909 0.6920 +2066 4914 0.5530 +2066 4915 0.7370 +2066 5154 0.7090 +2066 5155 0.7170 +2066 5159 0.5600 +2066 5228 0.7250 +2066 5241 0.8810 +2066 5266 0.4790 +2066 5290 0.9700 +2066 5291 0.9470 +2066 5293 0.9250 +2066 5294 0.5240 +2066 5295 0.9480 +2066 5296 0.9770 +2066 5335 0.9680 +2066 5336 0.9380 +2066 5368 0.4610 +2066 5533 0.4890 +2066 5591 0.4630 +2066 5639 0.4860 +2066 5663 0.7130 +2066 5664 0.5540 +2066 5728 0.7930 +2066 5734 0.4080 +2066 5753 0.6390 +2066 5777 0.6460 +2066 5781 0.9270 +2066 5782 0.6260 +2066 5789 0.5640 +2066 5803 0.4230 +2066 5816 0.7560 +2066 5921 0.5790 +2066 6233 0.6430 +2066 6275 0.4840 +2066 6285 0.6740 +2066 6387 0.8110 +2066 6461 0.4120 +2066 6464 0.9990 +2066 6517 0.4180 +2066 6529 0.5620 +2066 6598 0.5460 +2066 6615 0.4580 +2066 6654 0.6380 +2066 6678 0.7770 +2066 6714 0.9160 +2066 6774 0.5120 +2066 6776 0.9950 +2066 6777 0.9930 +2066 6794 0.5940 +2066 6850 0.4140 +2066 6868 0.6900 +2066 7003 0.6040 +2066 7022 0.6490 +2066 7026 0.4070 +2066 7039 0.9890 +2066 7057 0.4030 +2066 7157 0.7260 +2066 7216 0.6280 +2066 7311 0.4990 +2066 7314 0.5360 +2066 7316 0.5700 +2066 7337 0.5050 +2066 7423 0.7530 +2066 7424 0.7250 +2066 7514 0.4330 +2066 7525 0.7190 +2066 7837 0.4410 +2066 8074 0.6850 +2066 8437 0.4060 +2066 8440 0.6660 +2066 8503 0.9420 +2066 8817 0.7800 +2066 8822 0.7670 +2066 8823 0.7680 +2066 8874 0.4280 +2066 8997 0.5380 +2066 9101 0.4240 +2066 9402 0.4900 +2066 9542 0.9990 +2066 9611 0.8770 +2066 9863 0.6140 +2066 9965 0.7080 +2066 9980 0.4430 +2066 10155 0.5710 +2066 10193 0.7960 +2066 10215 0.7540 +2066 10397 0.4430 +2066 10413 0.9940 +2066 10451 0.4260 +2066 10608 0.7660 +2066 10718 0.9990 +2066 10777 0.4320 +2066 11033 0.7670 +2066 11059 0.9290 +2066 11060 0.4470 +2066 11099 0.4090 +2066 11122 0.4410 +2066 11140 0.5560 +2066 11197 0.4850 +2066 11221 0.4440 +2066 23118 0.9070 +2066 23152 0.4840 +2066 23385 0.6160 +2066 23566 0.4130 +2066 23624 0.5280 +2066 23671 0.8390 +2066 23705 0.5300 +2066 23767 0.4080 +2066 25759 0.9580 +2066 26018 0.7450 +2066 26281 0.7650 +2066 26291 0.6760 +2066 27006 0.7580 +2066 27185 0.7250 +2066 29801 0.4320 +2066 51072 0.5160 +2066 51107 0.6180 +2066 51378 0.6520 +2066 51741 0.9930 +2066 53353 0.4790 +2066 53358 0.9470 +2066 54733 0.4730 +2066 55294 0.5900 +2066 55851 0.6100 +2066 55879 0.5040 +2066 55914 0.6560 +2066 56034 0.6900 +2066 56904 0.4240 +2066 57030 0.5030 +2066 57554 0.5850 +2066 57556 0.4780 +2066 65078 0.5330 +2066 80309 0.4470 +2066 80310 0.7000 +2066 81839 0.4280 +2066 83464 0.5320 +2066 83737 0.9240 +2066 84171 0.4140 +2066 84894 0.4880 +2066 91752 0.4940 +2066 94030 0.5490 +2066 121227 0.4200 +2066 137902 0.4410 +2066 145957 0.9990 +2066 146760 0.4910 +2066 154796 0.4640 +2066 254263 0.4040 +2066 255324 0.7460 +2066 267012 0.4720 +2066 349667 0.4790 +2066 375790 0.5490 +2066 399694 0.9420 +2067 2068 0.9960 +2067 2071 0.9940 +2067 2072 0.9990 +2067 2073 0.9970 +2067 2074 0.9260 +2067 2175 0.8420 +2067 2176 0.8860 +2067 2177 0.9510 +2067 2178 0.7100 +2067 2187 0.7150 +2067 2188 0.8030 +2067 2189 0.8660 +2067 2237 0.9460 +2067 2354 0.4620 +2067 2547 0.9720 +2067 2944 0.4810 +2067 2950 0.6030 +2067 2956 0.9740 +2067 2965 0.8940 +2067 2966 0.8640 +2067 2967 0.7890 +2067 2968 0.7280 +2067 3014 0.4410 +2067 3265 0.4930 +2067 3364 0.6880 +2067 3845 0.5300 +2067 3978 0.8910 +2067 3980 0.6230 +2067 3981 0.9660 +2067 4087 0.4100 +2067 4233 0.5540 +2067 4255 0.6310 +2067 4292 0.8730 +2067 4343 0.4010 +2067 4350 0.4150 +2067 4361 0.7520 +2067 4363 0.4210 +2067 4436 0.9920 +2067 4437 0.9500 +2067 4438 0.5830 +2067 4439 0.4850 +2067 4524 0.5070 +2067 4595 0.4270 +2067 4683 0.7000 +2067 4913 0.6140 +2067 4968 0.7810 +2067 5184 0.5310 +2067 5243 0.5150 +2067 5347 0.4090 +2067 5378 0.8090 +2067 5395 0.8380 +2067 5423 0.4980 +2067 5424 0.9530 +2067 5425 0.4490 +2067 5426 0.4670 +2067 5429 0.4200 +2067 5591 0.9580 +2067 5728 0.4450 +2067 5810 0.6220 +2067 5883 0.6900 +2067 5884 0.7310 +2067 5886 0.7740 +2067 5887 0.9980 +2067 5888 0.9080 +2067 5889 0.6070 +2067 5890 0.4990 +2067 5892 0.5130 +2067 5893 0.9740 +2067 5932 0.7220 +2067 5980 0.7120 +2067 5982 0.6260 +2067 5983 0.5960 +2067 5984 0.5970 +2067 5985 0.6060 +2067 6117 0.8980 +2067 6118 0.8170 +2067 6119 0.7830 +2067 6233 0.5390 +2067 6240 0.7820 +2067 6253 0.4550 +2067 6615 0.5880 +2067 6709 0.4100 +2067 6827 0.5060 +2067 6908 0.4050 +2067 6996 0.5240 +2067 7014 0.4590 +2067 7015 0.4130 +2067 7150 0.6480 +2067 7153 0.4750 +2067 7156 0.6550 +2067 7157 0.6960 +2067 7158 0.8350 +2067 7298 0.7200 +2067 7311 0.5140 +2067 7314 0.5490 +2067 7316 0.5400 +2067 7372 0.4500 +2067 7374 0.4260 +2067 7398 0.7140 +2067 7486 0.8550 +2067 7507 0.9990 +2067 7508 0.9940 +2067 7515 0.9670 +2067 7516 0.6510 +2067 7517 0.8600 +2067 7518 0.9620 +2067 7520 0.9820 +2067 8243 0.4670 +2067 8317 0.5270 +2067 8438 0.4870 +2067 8450 0.6200 +2067 8451 0.6930 +2067 9025 0.5130 +2067 9126 0.4940 +2067 9156 0.8480 +2067 9201 0.4260 +2067 9400 0.4200 +2067 9401 0.5110 +2067 9429 0.4460 +2067 9557 0.5880 +2067 9656 0.6820 +2067 9730 0.5960 +2067 9937 0.8120 +2067 9978 0.6210 +2067 10038 0.7210 +2067 10111 0.6390 +2067 10381 0.5950 +2067 10459 0.5070 +2067 10524 0.5340 +2067 10535 0.4320 +2067 10721 0.4620 +2067 10849 0.8270 +2067 10973 0.6050 +2067 11073 0.7370 +2067 11200 0.7390 +2067 11284 0.5960 +2067 11321 0.5200 +2067 22909 0.7780 +2067 23028 0.9070 +2067 23186 0.9010 +2067 23583 0.4040 +2067 25788 0.4700 +2067 27030 0.7840 +2067 27301 0.5670 +2067 27343 0.5450 +2067 27434 0.4450 +2067 29089 0.7020 +2067 29128 0.4030 +2067 51008 0.5550 +2067 51317 0.9380 +2067 51455 0.6380 +2067 51548 0.4460 +2067 51750 0.4800 +2067 54386 0.5100 +2067 54577 0.4180 +2067 54658 0.4180 +2067 54840 0.5860 +2067 54841 0.4830 +2067 55004 0.4330 +2067 55120 0.8580 +2067 55215 0.9070 +2067 55247 0.4940 +2067 55775 0.6800 +2067 56852 0.6700 +2067 56949 0.4990 +2067 57599 0.5980 +2067 57654 0.6390 +2067 57697 0.9330 +2067 64210 0.5870 +2067 64421 0.9430 +2067 64858 0.7840 +2067 79008 0.7100 +2067 79621 0.4410 +2067 79661 0.5280 +2067 79720 0.4850 +2067 79728 0.7570 +2067 79840 0.9430 +2067 79991 0.4240 +2067 80010 0.6570 +2067 80198 0.9980 +2067 80233 0.6980 +2067 83695 0.4820 +2067 83990 0.7160 +2067 84126 0.6350 +2067 84153 0.4100 +2067 84164 0.5410 +2067 84245 0.4620 +2067 84464 0.9990 +2067 84993 0.7790 +2067 85015 0.7800 +2067 91419 0.9120 +2067 91442 0.8260 +2067 116028 0.5770 +2067 116447 0.4590 +2067 125150 0.9000 +2067 126074 0.9000 +2067 128710 0.8420 +2067 144715 0.5350 +2067 146956 0.9310 +2067 197342 0.6510 +2067 197370 0.4050 +2067 199990 0.6400 +2067 201254 0.6320 +2067 286257 0.9260 +2067 348654 0.5740 +2067 353497 0.6210 +2067 378708 0.6220 +2067 404672 0.8330 +2067 548593 0.9940 +2067 728340 0.6920 +2067 100533467 0.9550 +2067 105375355 0.5400 +2068 2071 0.9990 +2068 2072 0.9880 +2068 2073 0.9990 +2068 2074 0.9730 +2068 2175 0.5720 +2068 2176 0.6490 +2068 2177 0.7950 +2068 2178 0.4540 +2068 2188 0.4070 +2068 2189 0.6940 +2068 2237 0.7950 +2068 2261 0.4180 +2068 2353 0.4450 +2068 2547 0.6470 +2068 2873 0.5220 +2068 2944 0.6470 +2068 2950 0.6220 +2068 2956 0.7090 +2068 2957 0.9910 +2068 2958 0.9930 +2068 2959 0.9980 +2068 2960 0.9990 +2068 2961 0.9990 +2068 2962 0.9960 +2068 2963 0.9760 +2068 2965 0.9990 +2068 2966 0.9990 +2068 2967 0.9990 +2068 2968 0.9990 +2068 3014 0.4490 +2068 3015 0.8070 +2068 3150 0.5000 +2068 3480 0.4550 +2068 3845 0.4170 +2068 3925 0.4710 +2068 3978 0.9080 +2068 3980 0.8030 +2068 3981 0.6060 +2068 4085 0.5510 +2068 4255 0.6980 +2068 4292 0.6810 +2068 4331 0.9990 +2068 4361 0.6190 +2068 4436 0.6740 +2068 4437 0.5970 +2068 4524 0.5990 +2068 4595 0.6060 +2068 4609 0.6320 +2068 4682 0.6880 +2068 4686 0.5010 +2068 4913 0.6750 +2068 4968 0.8650 +2068 5184 0.6290 +2068 5378 0.4810 +2068 5395 0.6030 +2068 5423 0.5460 +2068 5424 0.8160 +2068 5426 0.5740 +2068 5431 0.9770 +2068 5432 0.9820 +2068 5433 0.9850 +2068 5434 0.9830 +2068 5435 0.9720 +2068 5436 0.9720 +2068 5437 0.9700 +2068 5438 0.9730 +2068 5439 0.9620 +2068 5440 0.9720 +2068 5441 0.9710 +2068 5469 0.8050 +2068 5471 0.4080 +2068 5591 0.4890 +2068 5704 0.5010 +2068 5705 0.4150 +2068 5883 0.4440 +2068 5884 0.4710 +2068 5886 0.7610 +2068 5887 0.9750 +2068 5888 0.8790 +2068 5889 0.5210 +2068 5890 0.5400 +2068 5892 0.7640 +2068 5893 0.8200 +2068 5965 0.4890 +2068 5980 0.4900 +2068 6059 0.4230 +2068 6117 0.6910 +2068 6118 0.6460 +2068 6119 0.6740 +2068 6233 0.5180 +2068 6414 0.4590 +2068 6426 0.5040 +2068 6596 0.4130 +2068 6612 0.5160 +2068 6613 0.5170 +2068 6742 0.4040 +2068 6749 0.5380 +2068 6827 0.5560 +2068 6829 0.5800 +2068 6837 0.8250 +2068 6872 0.9810 +2068 6873 0.9790 +2068 6874 0.9440 +2068 6875 0.7230 +2068 6877 0.9800 +2068 6878 0.9830 +2068 6879 0.9800 +2068 6880 0.9800 +2068 6881 0.9810 +2068 6882 0.9790 +2068 6883 0.9500 +2068 6884 0.9790 +2068 6908 0.9940 +2068 6917 0.9880 +2068 6919 0.8140 +2068 6920 0.8050 +2068 6921 0.5080 +2068 6923 0.5070 +2068 6924 0.5330 +2068 7015 0.6380 +2068 7157 0.8040 +2068 7158 0.4860 +2068 7270 0.5110 +2068 7298 0.4820 +2068 7311 0.5010 +2068 7314 0.5170 +2068 7316 0.5170 +2068 7329 0.5340 +2068 7334 0.6890 +2068 7336 0.6400 +2068 7341 0.5280 +2068 7343 0.5260 +2068 7374 0.4140 +2068 7469 0.5090 +2068 7486 0.7320 +2068 7507 0.9990 +2068 7508 0.9260 +2068 7515 0.9850 +2068 7516 0.6460 +2068 7517 0.8970 +2068 7518 0.5730 +2068 7520 0.6830 +2068 7936 0.5230 +2068 8148 0.5050 +2068 8178 0.5460 +2068 8189 0.5340 +2068 8294 0.8360 +2068 8317 0.6390 +2068 8359 0.8360 +2068 8360 0.8360 +2068 8361 0.8430 +2068 8362 0.8360 +2068 8363 0.8360 +2068 8364 0.8360 +2068 8366 0.8360 +2068 8367 0.8360 +2068 8368 0.8360 +2068 8370 0.8360 +2068 8438 0.5360 +2068 8450 0.6140 +2068 8451 0.6940 +2068 8533 0.5040 +2068 8554 0.4310 +2068 8607 0.4430 +2068 8621 0.5820 +2068 8731 0.5070 +2068 8732 0.5200 +2068 8771 0.4300 +2068 8812 0.5910 +2068 8880 0.6710 +2068 8914 0.4180 +2068 8970 0.8040 +2068 9013 0.5090 +2068 9014 0.4990 +2068 9015 0.5130 +2068 9044 0.4790 +2068 9150 0.5240 +2068 9156 0.5660 +2068 9282 0.9430 +2068 9318 0.5060 +2068 9391 0.9860 +2068 9400 0.5120 +2068 9401 0.5520 +2068 9412 0.9260 +2068 9439 0.8280 +2068 9440 0.9180 +2068 9441 0.8660 +2068 9442 0.8130 +2068 9443 0.9560 +2068 9477 0.8250 +2068 9533 0.6700 +2068 9557 0.6210 +2068 9656 0.6740 +2068 9862 0.8300 +2068 9869 0.4180 +2068 9978 0.6240 +2068 10001 0.9330 +2068 10025 0.8420 +2068 10038 0.6800 +2068 10101 0.6250 +2068 10401 0.4490 +2068 10535 0.5050 +2068 10629 0.4480 +2068 10735 0.4420 +2068 10848 0.5840 +2068 10849 0.8310 +2068 10920 0.5040 +2068 10980 0.5160 +2068 10987 0.5120 +2068 10989 0.8510 +2068 11036 0.5030 +2068 11073 0.4830 +2068 11169 0.4270 +2068 11198 0.5210 +2068 11200 0.6370 +2068 11201 0.4090 +2068 11284 0.4810 +2068 22827 0.7990 +2068 22916 0.5030 +2068 23552 0.6710 +2068 23583 0.4240 +2068 25885 0.5970 +2068 25920 0.5700 +2068 27030 0.4980 +2068 27158 0.6830 +2068 27343 0.5230 +2068 29079 0.8140 +2068 30834 0.5950 +2068 50813 0.5010 +2068 51003 0.9290 +2068 51082 0.5470 +2068 51138 0.5410 +2068 51224 0.5220 +2068 51455 0.4820 +2068 51497 0.5000 +2068 51586 0.8170 +2068 51616 0.9030 +2068 51647 0.9890 +2068 51750 0.6900 +2068 51755 0.6670 +2068 54457 0.5400 +2068 54700 0.5400 +2068 54778 0.4750 +2068 54797 0.8300 +2068 54921 0.4220 +2068 55090 0.8070 +2068 55107 0.4970 +2068 55215 0.7140 +2068 55247 0.4210 +2068 55588 0.8140 +2068 55729 0.5420 +2068 55775 0.4080 +2068 56852 0.5720 +2068 56897 0.4350 +2068 56949 0.7260 +2068 57019 0.7190 +2068 57654 0.8300 +2068 57697 0.6620 +2068 63922 0.5500 +2068 64210 0.9990 +2068 64425 0.5090 +2068 64428 0.6900 +2068 64708 0.5110 +2068 79101 0.4990 +2068 79661 0.4060 +2068 79728 0.5310 +2068 80063 0.4260 +2068 80119 0.6530 +2068 80198 0.4480 +2068 80306 0.8130 +2068 81693 0.4510 +2068 81857 0.8170 +2068 83860 0.9790 +2068 83990 0.6740 +2068 84172 0.6540 +2068 84191 0.5120 +2068 84246 0.9250 +2068 84464 0.4190 +2068 84823 0.4990 +2068 84893 0.4840 +2068 90390 0.8140 +2068 91442 0.4470 +2068 112950 0.8330 +2068 113510 0.4270 +2068 114799 0.4060 +2068 121504 0.8360 +2068 126961 0.8330 +2068 129685 0.9790 +2068 136647 0.5180 +2068 138474 0.5400 +2068 150274 0.4230 +2068 157570 0.4040 +2068 221830 0.5270 +2068 246721 0.5010 +2068 284119 0.5110 +2068 285231 0.6710 +2068 333932 0.8330 +2068 348654 0.4270 +2068 387332 0.5440 +2068 391742 0.5400 +2068 391746 0.5400 +2068 391747 0.5400 +2068 400569 0.8240 +2068 404672 0.9990 +2068 548644 0.5010 +2068 554313 0.8360 +2068 646066 0.5400 +2068 646103 0.5400 +2068 653604 0.8620 +2068 653689 0.4030 +2068 728340 0.9740 +2068 100533467 0.9650 +2068 102723526 0.5400 +2068 112488736 0.5400 +2068 112488737 0.5400 +2068 112488738 0.5400 +2068 112488739 0.5400 +2068 112488740 0.5400 +2068 112488745 0.5400 +2068 112488746 0.5400 +2068 112488747 0.5400 +2069 2100 0.4870 +2069 2149 0.4180 +2069 2260 0.7060 +2069 2261 0.7010 +2069 2263 0.7000 +2069 2264 0.6990 +2069 2321 0.7260 +2069 2322 0.6740 +2069 2324 0.7000 +2069 2353 0.5790 +2069 2492 0.5590 +2069 2534 0.4700 +2069 2549 0.4720 +2069 2554 0.4990 +2069 2560 0.4990 +2069 2561 0.5070 +2069 2562 0.4990 +2069 2566 0.4990 +2069 2567 0.4990 +2069 2885 0.5810 +2069 2919 0.4610 +2069 2920 0.4540 +2069 2921 0.4670 +2069 3037 0.5210 +2069 3084 0.8450 +2069 3172 0.4810 +2069 3265 0.5870 +2069 3267 0.5070 +2069 3320 0.5540 +2069 3480 0.7590 +2069 3553 0.4080 +2069 3569 0.4660 +2069 3576 0.4370 +2069 3586 0.4130 +2069 3643 0.6760 +2069 3791 0.7350 +2069 3815 0.7080 +2069 3845 0.7560 +2069 3949 0.5090 +2069 3956 0.5870 +2069 3973 0.7670 +2069 4036 0.4990 +2069 4088 0.4650 +2069 4145 0.5050 +2069 4233 0.7760 +2069 4312 0.6940 +2069 4313 0.6100 +2069 4317 0.4050 +2069 4504 0.5450 +2069 4608 0.4510 +2069 4804 0.6720 +2069 4893 0.6740 +2069 4914 0.8330 +2069 4915 0.6770 +2069 5156 0.7090 +2069 5159 0.7220 +2069 5290 0.6050 +2069 5295 0.4550 +2069 5335 0.5640 +2069 5595 0.4090 +2069 5732 0.4270 +2069 5734 0.4430 +2069 5739 0.4590 +2069 5743 0.6200 +2069 5744 0.4970 +2069 5747 0.4880 +2069 5753 0.5490 +2069 5781 0.4750 +2069 5782 0.5430 +2069 5796 0.4160 +2069 5806 0.5350 +2069 5829 0.5180 +2069 5867 0.5510 +2069 6233 0.4990 +2069 6364 0.4050 +2069 6423 0.4760 +2069 6446 0.4080 +2069 6455 0.4990 +2069 6456 0.4990 +2069 6457 0.5160 +2069 6464 0.5670 +2069 6591 0.4960 +2069 6624 0.5850 +2069 6654 0.5070 +2069 6714 0.6110 +2069 6770 0.4490 +2069 6844 0.4990 +2069 6845 0.4990 +2069 6868 0.7460 +2069 7010 0.7020 +2069 7039 0.9200 +2069 7077 0.4590 +2069 7079 0.4560 +2069 7130 0.5940 +2069 7132 0.4910 +2069 7291 0.4930 +2069 7311 0.4990 +2069 7314 0.5110 +2069 7316 0.5140 +2069 7424 0.4210 +2069 7525 0.4130 +2069 8027 0.5000 +2069 8091 0.4470 +2069 8301 0.4990 +2069 8313 0.4730 +2069 8673 0.5000 +2069 8874 0.4990 +2069 9146 0.4990 +2069 9185 0.4990 +2069 9341 0.4990 +2069 9542 0.7680 +2069 9839 0.4760 +2069 9892 0.4990 +2069 10252 0.5060 +2069 10253 0.5850 +2069 10254 0.4990 +2069 10718 0.7300 +2069 11140 0.4990 +2069 22905 0.4990 +2069 23671 0.4080 +2069 26018 0.5020 +2069 26119 0.4990 +2069 29924 0.5150 +2069 29978 0.5060 +2069 30011 0.4990 +2069 51072 0.5060 +2069 51129 0.7640 +2069 55824 0.5000 +2069 55879 0.4990 +2069 55914 0.5780 +2069 56255 0.5350 +2069 58513 0.4990 +2069 81849 0.5780 +2069 93659 0.4820 +2069 114335 0.5480 +2069 134147 0.5480 +2069 145957 0.7400 +2069 255324 0.8050 +2070 2138 0.5930 +2070 2139 0.5500 +2070 2140 0.5380 +2070 2218 0.6220 +2070 2706 0.4610 +2070 2707 0.5020 +2070 3014 0.5650 +2070 3017 0.4990 +2070 3018 0.4990 +2070 4361 0.5070 +2070 4607 0.6040 +2070 4624 0.4970 +2070 4625 0.5390 +2070 4646 0.4850 +2070 4647 0.4180 +2070 4683 0.4990 +2070 4990 0.5210 +2070 5077 0.5500 +2070 5172 0.4010 +2070 5456 0.4290 +2070 5459 0.5080 +2070 5664 0.4140 +2070 6331 0.5500 +2070 6389 0.5060 +2070 6444 0.6080 +2070 6446 0.5850 +2070 6495 0.8950 +2070 6496 0.5380 +2070 6586 0.4930 +2070 6943 0.8050 +2070 7007 0.4470 +2070 7112 0.6900 +2070 7137 0.5580 +2070 7139 0.5380 +2070 7168 0.5190 +2070 7273 0.5600 +2070 7466 0.4070 +2070 8048 0.6120 +2070 8290 0.5100 +2070 8340 0.4990 +2070 8341 0.5000 +2070 8342 0.4990 +2070 8345 0.4990 +2070 8347 0.4990 +2070 8348 0.4990 +2070 8349 0.4990 +2070 8361 0.6300 +2070 8557 0.5890 +2070 8970 0.4990 +2070 9132 0.6460 +2070 9353 0.5400 +2070 9381 0.4450 +2070 9656 0.5690 +2070 10060 0.7150 +2070 10111 0.5000 +2070 10524 0.5080 +2070 10736 0.7950 +2070 11078 0.4630 +2070 11155 0.5960 +2070 51168 0.4450 +2070 51804 0.8030 +2070 53904 0.4330 +2070 54145 0.4990 +2070 57506 0.4870 +2070 64072 0.4820 +2070 64699 0.4750 +2070 79671 0.7880 +2070 79977 0.4350 +2070 80204 0.4580 +2070 85236 0.4990 +2070 91624 0.6550 +2070 117154 0.5070 +2070 117531 0.4180 +2070 128312 0.4990 +2070 146183 0.5260 +2070 147912 0.6790 +2070 152137 0.4770 +2070 161497 0.4860 +2070 255626 0.4990 +2070 259236 0.4340 +2070 282996 0.7410 +2070 286676 0.4320 +2070 340061 0.5670 +2070 647589 0.4130 +2071 2072 0.9870 +2071 2073 0.9990 +2071 2074 0.9760 +2071 2099 0.6210 +2071 2146 0.4290 +2071 2175 0.4880 +2071 2176 0.4320 +2071 2177 0.7220 +2071 2237 0.8710 +2071 2353 0.4600 +2071 2547 0.7650 +2071 2873 0.5140 +2071 2956 0.8410 +2071 2957 0.9970 +2071 2958 0.9930 +2071 2959 0.9990 +2071 2960 0.9990 +2071 2961 0.9990 +2071 2962 0.9970 +2071 2963 0.9930 +2071 2965 0.9990 +2071 2966 0.9990 +2071 2967 0.9990 +2071 2968 0.9990 +2071 2972 0.6000 +2071 3015 0.8150 +2071 3021 0.4240 +2071 3150 0.5640 +2071 3308 0.4710 +2071 3320 0.5090 +2071 3326 0.5220 +2071 3978 0.8720 +2071 3980 0.7170 +2071 3981 0.7440 +2071 4292 0.8270 +2071 4331 0.9990 +2071 4361 0.5530 +2071 4436 0.8290 +2071 4437 0.8000 +2071 4439 0.4210 +2071 4595 0.6420 +2071 4609 0.9420 +2071 4686 0.5600 +2071 4758 0.8250 +2071 4869 0.4810 +2071 4913 0.6190 +2071 4968 0.6070 +2071 5378 0.7930 +2071 5395 0.8230 +2071 5424 0.7220 +2071 5426 0.4240 +2071 5431 0.9770 +2071 5432 0.9800 +2071 5433 0.9840 +2071 5434 0.9960 +2071 5435 0.9850 +2071 5436 0.9710 +2071 5437 0.9670 +2071 5438 0.9720 +2071 5439 0.9560 +2071 5440 0.9620 +2071 5441 0.9610 +2071 5469 0.9390 +2071 5591 0.7380 +2071 5594 0.5080 +2071 5705 0.5500 +2071 5884 0.6280 +2071 5886 0.7710 +2071 5887 0.9680 +2071 5888 0.6180 +2071 5889 0.5270 +2071 5890 0.4500 +2071 5892 0.7480 +2071 5893 0.5940 +2071 5965 0.4520 +2071 6047 0.4830 +2071 6117 0.7230 +2071 6118 0.6650 +2071 6119 0.6900 +2071 6233 0.5400 +2071 6294 0.5240 +2071 6414 0.4220 +2071 6426 0.4120 +2071 6500 0.4300 +2071 6612 0.5230 +2071 6613 0.5590 +2071 6742 0.4900 +2071 6749 0.6140 +2071 6827 0.6100 +2071 6829 0.6470 +2071 6837 0.8360 +2071 6839 0.4230 +2071 6872 0.9820 +2071 6873 0.9840 +2071 6874 0.9480 +2071 6875 0.7240 +2071 6877 0.9810 +2071 6878 0.9830 +2071 6879 0.9820 +2071 6880 0.9800 +2071 6881 0.9800 +2071 6882 0.9800 +2071 6883 0.9470 +2071 6884 0.9790 +2071 6908 0.9980 +2071 6917 0.9820 +2071 6919 0.7660 +2071 6920 0.7570 +2071 6921 0.5100 +2071 6923 0.5080 +2071 6924 0.5890 +2071 7155 0.4150 +2071 7157 0.9080 +2071 7158 0.7530 +2071 7270 0.5280 +2071 7311 0.5240 +2071 7314 0.5800 +2071 7316 0.5340 +2071 7329 0.5730 +2071 7334 0.5640 +2071 7336 0.5420 +2071 7341 0.5750 +2071 7343 0.5750 +2071 7374 0.4760 +2071 7415 0.4260 +2071 7469 0.5090 +2071 7486 0.6560 +2071 7494 0.4060 +2071 7507 0.9990 +2071 7508 0.9720 +2071 7515 0.8460 +2071 7516 0.5940 +2071 7517 0.5440 +2071 7518 0.7390 +2071 7520 0.7940 +2071 7702 0.4040 +2071 7936 0.5930 +2071 8148 0.5250 +2071 8178 0.5340 +2071 8290 0.4130 +2071 8294 0.8340 +2071 8317 0.5800 +2071 8356 0.4260 +2071 8359 0.8340 +2071 8360 0.8340 +2071 8361 0.8470 +2071 8362 0.8340 +2071 8363 0.8340 +2071 8364 0.8340 +2071 8366 0.8340 +2071 8367 0.8340 +2071 8368 0.8340 +2071 8370 0.8340 +2071 8438 0.4780 +2071 8450 0.5880 +2071 8451 0.7610 +2071 8533 0.5130 +2071 8554 0.5360 +2071 8621 0.6030 +2071 8731 0.5610 +2071 8732 0.5310 +2071 8812 0.5870 +2071 8841 0.4030 +2071 8880 0.7010 +2071 8890 0.4100 +2071 8970 0.8130 +2071 9013 0.5710 +2071 9014 0.5040 +2071 9015 0.5180 +2071 9150 0.5230 +2071 9156 0.5560 +2071 9282 0.9630 +2071 9318 0.6440 +2071 9321 0.4600 +2071 9400 0.4750 +2071 9401 0.5700 +2071 9412 0.9250 +2071 9439 0.9310 +2071 9440 0.9210 +2071 9441 0.9470 +2071 9442 0.9330 +2071 9443 0.9660 +2071 9477 0.8280 +2071 9519 0.5340 +2071 9533 0.8310 +2071 9557 0.6740 +2071 9656 0.6590 +2071 9862 0.9180 +2071 9869 0.4370 +2071 9978 0.6610 +2071 10001 0.9400 +2071 10025 0.8210 +2071 10038 0.7140 +2071 10401 0.5070 +2071 10664 0.5320 +2071 10849 0.5640 +2071 10920 0.5110 +2071 10973 0.6380 +2071 10980 0.5630 +2071 10987 0.5620 +2071 10989 0.8450 +2071 11036 0.5070 +2071 11198 0.6210 +2071 11200 0.4760 +2071 11201 0.4370 +2071 11321 0.5630 +2071 22827 0.9530 +2071 22916 0.5090 +2071 23028 0.5920 +2071 23186 0.5460 +2071 23476 0.4030 +2071 23552 0.4440 +2071 23583 0.4030 +2071 25885 0.6470 +2071 25920 0.5600 +2071 26043 0.6020 +2071 27030 0.7830 +2071 27343 0.4620 +2071 29079 0.8230 +2071 30834 0.6820 +2071 50813 0.5100 +2071 51003 0.9280 +2071 51008 0.5590 +2071 51082 0.6110 +2071 51138 0.5240 +2071 51224 0.5740 +2071 51317 0.6120 +2071 51497 0.5800 +2071 51586 0.8370 +2071 51616 0.9030 +2071 51654 0.5560 +2071 51750 0.7830 +2071 51755 0.7890 +2071 54457 0.5470 +2071 54700 0.5670 +2071 54778 0.5350 +2071 54797 0.8350 +2071 54840 0.4100 +2071 55090 0.8150 +2071 55215 0.7000 +2071 55290 0.5550 +2071 55588 0.8180 +2071 55703 0.6690 +2071 55729 0.5570 +2071 55735 0.4110 +2071 56339 0.8590 +2071 56949 0.7590 +2071 56981 0.4700 +2071 57654 0.8690 +2071 57697 0.6720 +2071 57721 0.8540 +2071 64210 0.9930 +2071 64421 0.6350 +2071 64425 0.5130 +2071 64708 0.5170 +2071 79089 0.4540 +2071 79101 0.5030 +2071 79723 0.4270 +2071 79728 0.7460 +2071 79840 0.6750 +2071 79913 0.4120 +2071 80063 0.4420 +2071 80119 0.4970 +2071 80198 0.5540 +2071 80306 0.8120 +2071 81857 0.8190 +2071 83860 0.9800 +2071 83990 0.8660 +2071 84164 0.5520 +2071 84172 0.7960 +2071 84246 0.9270 +2071 84461 0.5500 +2071 84893 0.5150 +2071 90390 0.8310 +2071 91419 0.5760 +2071 91442 0.4320 +2071 112950 0.8270 +2071 121504 0.8340 +2071 125150 0.5400 +2071 126074 0.5400 +2071 126961 0.8440 +2071 129685 0.9820 +2071 130612 0.8560 +2071 136647 0.5770 +2071 138474 0.5490 +2071 146956 0.4790 +2071 221830 0.5130 +2071 246721 0.5690 +2071 252969 0.4540 +2071 284119 0.5210 +2071 285231 0.4440 +2071 286257 0.5710 +2071 286749 0.4790 +2071 333932 0.8440 +2071 348654 0.4830 +2071 387332 0.6030 +2071 391742 0.5400 +2071 391746 0.5400 +2071 391747 0.5400 +2071 399949 0.5280 +2071 400569 0.8230 +2071 404672 0.9990 +2071 440093 0.4130 +2071 440686 0.4130 +2071 548593 0.4020 +2071 548644 0.5690 +2071 554313 0.8340 +2071 646066 0.5400 +2071 646103 0.5400 +2071 653604 0.8790 +2071 728340 0.9960 +2071 100134938 0.4750 +2071 100533467 0.9580 +2071 102723526 0.5400 +2071 105375355 0.5400 +2071 107983993 0.4750 +2071 112488736 0.5400 +2071 112488737 0.5400 +2071 112488738 0.5400 +2071 112488739 0.5400 +2071 112488740 0.5400 +2071 112488745 0.5400 +2071 112488746 0.5400 +2071 112488747 0.5400 +2072 2073 0.9980 +2072 2074 0.9340 +2072 2175 0.9120 +2072 2176 0.8530 +2072 2177 0.9570 +2072 2178 0.8250 +2072 2187 0.8280 +2072 2188 0.8500 +2072 2189 0.8790 +2072 2237 0.8130 +2072 2547 0.9720 +2072 2956 0.9660 +2072 2965 0.7840 +2072 2966 0.6300 +2072 2967 0.6940 +2072 2968 0.7590 +2072 3364 0.8370 +2072 3978 0.4620 +2072 3980 0.5320 +2072 3981 0.9650 +2072 4255 0.4330 +2072 4292 0.8480 +2072 4331 0.4020 +2072 4361 0.8080 +2072 4436 0.9890 +2072 4437 0.9360 +2072 4438 0.4690 +2072 4595 0.4470 +2072 4677 0.5210 +2072 4683 0.6520 +2072 4913 0.6380 +2072 4968 0.6340 +2072 5347 0.7690 +2072 5378 0.7460 +2072 5395 0.7990 +2072 5424 0.9620 +2072 5426 0.6000 +2072 5429 0.4290 +2072 5591 0.9350 +2072 5810 0.7020 +2072 5883 0.8490 +2072 5884 0.7270 +2072 5886 0.4900 +2072 5887 0.9900 +2072 5888 0.9270 +2072 5889 0.8160 +2072 5890 0.6360 +2072 5892 0.7080 +2072 5893 0.9620 +2072 5932 0.6330 +2072 5980 0.7440 +2072 5981 0.5450 +2072 5982 0.6360 +2072 5983 0.6590 +2072 5984 0.6360 +2072 5985 0.7590 +2072 6117 0.9170 +2072 6118 0.7440 +2072 6119 0.7020 +2072 6233 0.5460 +2072 6596 0.4470 +2072 6613 0.6000 +2072 6709 0.5100 +2072 6996 0.4810 +2072 7014 0.5450 +2072 7150 0.5290 +2072 7156 0.7940 +2072 7157 0.4220 +2072 7158 0.8160 +2072 7272 0.6240 +2072 7311 0.4990 +2072 7314 0.5460 +2072 7316 0.5460 +2072 7320 0.4300 +2072 7398 0.6680 +2072 7486 0.8630 +2072 7507 0.9990 +2072 7508 0.9830 +2072 7515 0.8860 +2072 7516 0.6630 +2072 7517 0.7880 +2072 7518 0.9450 +2072 7520 0.9760 +2072 8317 0.5230 +2072 8379 0.4260 +2072 8438 0.5690 +2072 8450 0.5940 +2072 8451 0.6380 +2072 8454 0.4810 +2072 8914 0.4080 +2072 8940 0.5430 +2072 9063 0.4220 +2072 9156 0.8300 +2072 9400 0.6390 +2072 9401 0.7670 +2072 9557 0.6170 +2072 9656 0.7170 +2072 9730 0.6330 +2072 9894 0.4570 +2072 9937 0.7330 +2072 9978 0.6650 +2072 10038 0.6260 +2072 10111 0.5410 +2072 10166 0.5390 +2072 10459 0.5800 +2072 10524 0.4470 +2072 10535 0.4830 +2072 10714 0.4400 +2072 10973 0.6270 +2072 11073 0.6960 +2072 11200 0.7600 +2072 11284 0.4370 +2072 11321 0.4620 +2072 22909 0.7640 +2072 22976 0.4940 +2072 23028 0.9070 +2072 23137 0.4150 +2072 23186 0.9020 +2072 23626 0.5520 +2072 25788 0.5080 +2072 27030 0.7420 +2072 27301 0.7540 +2072 29089 0.8320 +2072 50485 0.4390 +2072 51008 0.5490 +2072 51056 0.4260 +2072 51317 0.9150 +2072 51455 0.4170 +2072 51750 0.5870 +2072 54386 0.6520 +2072 54469 0.4200 +2072 54841 0.5520 +2072 55120 0.8420 +2072 55159 0.6490 +2072 55215 0.8790 +2072 55775 0.7790 +2072 56852 0.7600 +2072 56949 0.5990 +2072 57599 0.4820 +2072 57654 0.4330 +2072 57697 0.8950 +2072 63929 0.5780 +2072 64135 0.4130 +2072 64210 0.5440 +2072 64421 0.9370 +2072 64858 0.7210 +2072 79008 0.6330 +2072 79621 0.4930 +2072 79728 0.8180 +2072 79840 0.9230 +2072 79915 0.4100 +2072 80010 0.8200 +2072 80198 0.9940 +2072 80233 0.7380 +2072 83695 0.4370 +2072 83932 0.4280 +2072 83990 0.8200 +2072 84126 0.5750 +2072 84164 0.5470 +2072 84464 0.9990 +2072 84893 0.5290 +2072 85015 0.4360 +2072 91419 0.9090 +2072 91442 0.9810 +2072 116028 0.5990 +2072 116447 0.4230 +2072 125150 0.9000 +2072 126074 0.9030 +2072 128710 0.8060 +2072 144715 0.5650 +2072 146956 0.9600 +2072 197342 0.9050 +2072 199990 0.6760 +2072 201254 0.7130 +2072 254528 0.4950 +2072 286257 0.9060 +2072 348654 0.6430 +2072 353497 0.6830 +2072 378708 0.7350 +2072 404672 0.7500 +2072 548593 0.9980 +2072 100533467 0.9750 +2072 105375355 0.5400 +2073 2074 0.9990 +2073 2175 0.4700 +2073 2177 0.7730 +2073 2188 0.4080 +2073 2189 0.4200 +2073 2237 0.4930 +2073 2547 0.9630 +2073 2956 0.9630 +2073 2965 0.9990 +2073 2966 0.9980 +2073 2967 0.8840 +2073 2968 0.9200 +2073 3014 0.4370 +2073 3150 0.8320 +2073 3978 0.5280 +2073 3980 0.5440 +2073 3981 0.9620 +2073 4174 0.4170 +2073 4255 0.5490 +2073 4292 0.8230 +2073 4331 0.7870 +2073 4361 0.7650 +2073 4436 0.9620 +2073 4437 0.8930 +2073 4438 0.4370 +2073 4595 0.5520 +2073 4683 0.4230 +2073 4913 0.7680 +2073 4968 0.6940 +2073 4998 0.4500 +2073 5111 0.7700 +2073 5378 0.7670 +2073 5394 0.4590 +2073 5395 0.8010 +2073 5422 0.4760 +2073 5424 0.9660 +2073 5425 0.6260 +2073 5426 0.6340 +2073 5558 0.4340 +2073 5591 0.9400 +2073 5886 0.7470 +2073 5887 0.9810 +2073 5888 0.7330 +2073 5889 0.5650 +2073 5890 0.5430 +2073 5892 0.5470 +2073 5893 0.6870 +2073 5911 0.4420 +2073 5980 0.6260 +2073 5981 0.4260 +2073 5982 0.4040 +2073 6117 0.7120 +2073 6118 0.6300 +2073 6119 0.7360 +2073 6233 0.5330 +2073 6240 0.4310 +2073 6414 0.4190 +2073 6599 0.4210 +2073 6601 0.4380 +2073 6612 0.6000 +2073 6613 0.5940 +2073 6917 0.8330 +2073 6996 0.4730 +2073 7157 0.4380 +2073 7158 0.7050 +2073 7298 0.4110 +2073 7311 0.5070 +2073 7314 0.5400 +2073 7316 0.5400 +2073 7334 0.5620 +2073 7336 0.5610 +2073 7341 0.5820 +2073 7486 0.7530 +2073 7507 0.9920 +2073 7508 0.9710 +2073 7515 0.8810 +2073 7516 0.5570 +2073 7517 0.7290 +2073 7518 0.9460 +2073 7520 0.9660 +2073 7531 0.4490 +2073 8317 0.5550 +2073 8438 0.4270 +2073 8450 0.6270 +2073 8451 0.6770 +2073 8565 0.4670 +2073 9156 0.5310 +2073 9400 0.5000 +2073 9401 0.6680 +2073 9557 0.8450 +2073 9978 0.5750 +2073 10038 0.6250 +2073 10111 0.4530 +2073 10535 0.4530 +2073 10973 0.5790 +2073 11200 0.5570 +2073 11234 0.4270 +2073 11284 0.4520 +2073 23028 0.9000 +2073 23064 0.4110 +2073 23186 0.9010 +2073 23476 0.4190 +2073 23583 0.4020 +2073 25788 0.4100 +2073 27030 0.7810 +2073 27343 0.4550 +2073 51008 0.5470 +2073 51317 0.9140 +2073 51455 0.4430 +2073 54841 0.9280 +2073 54954 0.6680 +2073 55215 0.7130 +2073 55247 0.6240 +2073 56852 0.4570 +2073 56949 0.5180 +2073 57654 0.4860 +2073 57697 0.7150 +2073 64210 0.5210 +2073 64421 0.9440 +2073 79677 0.4280 +2073 79728 0.8130 +2073 79840 0.9290 +2073 80198 0.7340 +2073 84164 0.5500 +2073 84464 0.5160 +2073 84498 0.7110 +2073 84893 0.4810 +2073 85365 0.4040 +2073 91419 0.9120 +2073 91442 0.4670 +2073 125150 0.9000 +2073 126074 0.9000 +2073 259232 0.4110 +2073 286257 0.9070 +2073 404672 0.7990 +2073 728340 0.4640 +2073 100533467 0.9790 +2073 105375355 0.5400 +2074 2237 0.7580 +2074 2547 0.4840 +2074 2648 0.6410 +2074 2873 0.5190 +2074 2932 0.4410 +2074 2956 0.6030 +2074 2965 0.7580 +2074 2966 0.7850 +2074 2967 0.7150 +2074 2968 0.6760 +2074 3012 0.6850 +2074 3013 0.5530 +2074 3014 0.6380 +2074 3015 0.6580 +2074 3017 0.5900 +2074 3018 0.6980 +2074 3021 0.6500 +2074 3065 0.6330 +2074 3066 0.5970 +2074 3070 0.4730 +2074 3075 0.6380 +2074 3078 0.5090 +2074 3150 0.9610 +2074 3364 0.6220 +2074 3899 0.5810 +2074 3978 0.6180 +2074 3980 0.6280 +2074 3981 0.5630 +2074 4193 0.4220 +2074 4255 0.4870 +2074 4292 0.4490 +2074 4298 0.9120 +2074 4299 0.9100 +2074 4300 0.9130 +2074 4331 0.6950 +2074 4361 0.5930 +2074 4436 0.4890 +2074 4437 0.5850 +2074 4641 0.7200 +2074 4683 0.4670 +2074 4913 0.5940 +2074 4968 0.7140 +2074 5111 0.4590 +2074 5395 0.5010 +2074 5424 0.7190 +2074 5425 0.4730 +2074 5426 0.4590 +2074 5431 0.9970 +2074 5432 0.9800 +2074 5433 0.9790 +2074 5434 0.9540 +2074 5435 0.9580 +2074 5436 0.9670 +2074 5437 0.9530 +2074 5438 0.9950 +2074 5439 0.9380 +2074 5440 0.9520 +2074 5441 0.9520 +2074 5828 0.9000 +2074 5883 0.5070 +2074 5884 0.6090 +2074 5886 0.5980 +2074 5887 0.8340 +2074 5888 0.5710 +2074 5889 0.4320 +2074 5890 0.4590 +2074 5893 0.5680 +2074 5928 0.6310 +2074 5931 0.5770 +2074 5932 0.4710 +2074 5965 0.4410 +2074 5980 0.5010 +2074 6233 0.9520 +2074 6595 0.4480 +2074 6597 0.4170 +2074 6749 0.6280 +2074 6827 0.9770 +2074 6829 0.9480 +2074 6830 0.9280 +2074 6908 0.6290 +2074 6917 0.9330 +2074 6919 0.9510 +2074 6920 0.5270 +2074 6921 0.9430 +2074 6923 0.9020 +2074 6924 0.9530 +2074 7019 0.4250 +2074 7035 0.4700 +2074 7156 0.5240 +2074 7157 0.7520 +2074 7158 0.4440 +2074 7270 0.6060 +2074 7311 0.9510 +2074 7314 0.9520 +2074 7316 0.9640 +2074 7343 0.4800 +2074 7415 0.6710 +2074 7469 0.9000 +2074 7486 0.6490 +2074 7507 0.9900 +2074 7508 0.7580 +2074 7515 0.8600 +2074 7516 0.4020 +2074 7517 0.5400 +2074 7518 0.4560 +2074 7520 0.5800 +2074 7776 0.6610 +2074 7874 0.8470 +2074 7913 0.8520 +2074 7936 0.9040 +2074 8178 0.9050 +2074 8331 0.5530 +2074 8334 0.5530 +2074 8337 0.6490 +2074 8338 0.7410 +2074 8340 0.5910 +2074 8341 0.5900 +2074 8342 0.5910 +2074 8345 0.5910 +2074 8347 0.5910 +2074 8348 0.5910 +2074 8349 0.6460 +2074 8350 0.4080 +2074 8356 0.6530 +2074 8361 0.7190 +2074 8450 0.7340 +2074 8451 0.9540 +2074 8458 0.8130 +2074 8467 0.8130 +2074 8533 0.6300 +2074 8621 0.6080 +2074 8812 0.5420 +2074 8850 0.7350 +2074 8970 0.5900 +2074 9013 0.5070 +2074 9014 0.5040 +2074 9015 0.5250 +2074 9031 0.9210 +2074 9044 0.4730 +2074 9112 0.5680 +2074 9156 0.5140 +2074 9188 0.8610 +2074 9219 0.5870 +2074 9318 0.5110 +2074 9401 0.5890 +2074 9533 0.6450 +2074 9646 0.9840 +2074 9779 0.4090 +2074 9978 0.9270 +2074 10111 0.5010 +2074 10459 0.4020 +2074 10514 0.8530 +2074 10516 0.4430 +2074 10849 0.5740 +2074 10878 0.5330 +2074 10919 0.6190 +2074 10920 0.5070 +2074 10980 0.6530 +2074 10987 0.5380 +2074 11128 0.4750 +2074 11177 0.4240 +2074 11198 0.6720 +2074 11200 0.4580 +2074 11335 0.5920 +2074 22936 0.9010 +2074 23168 0.9190 +2074 23379 0.9080 +2074 23451 0.7370 +2074 25885 0.8500 +2074 25920 0.9000 +2074 26235 0.4060 +2074 26610 0.9020 +2074 26747 0.7480 +2074 27030 0.4020 +2074 27125 0.9090 +2074 30834 0.5800 +2074 50813 0.4990 +2074 51082 0.5150 +2074 51138 0.6390 +2074 51224 0.5950 +2074 51455 0.4710 +2074 51497 0.9030 +2074 51755 0.6340 +2074 53615 0.5440 +2074 54145 0.5920 +2074 54606 0.5160 +2074 54623 0.9810 +2074 54737 0.4110 +2074 54815 0.5810 +2074 54821 0.4020 +2074 54840 0.4820 +2074 54932 0.4680 +2074 55183 0.4920 +2074 55209 0.4110 +2074 55250 0.7440 +2074 55703 0.4130 +2074 55766 0.5530 +2074 55775 0.4750 +2074 55840 0.9000 +2074 56852 0.4250 +2074 56949 0.8960 +2074 57459 0.5560 +2074 57504 0.5560 +2074 57654 0.9860 +2074 57697 0.7160 +2074 64210 0.4680 +2074 64425 0.5220 +2074 64708 0.4990 +2074 79101 0.5010 +2074 79577 0.9830 +2074 79661 0.4460 +2074 79664 0.9000 +2074 79827 0.5930 +2074 79913 0.5700 +2074 80198 0.4690 +2074 80237 0.9000 +2074 80349 0.9830 +2074 83872 0.4850 +2074 84172 0.6360 +2074 84337 0.6640 +2074 84515 0.4110 +2074 84524 0.9030 +2074 84547 0.4060 +2074 84678 0.4050 +2074 84839 0.4010 +2074 85236 0.5900 +2074 85403 0.9000 +2074 91442 0.4120 +2074 94239 0.6370 +2074 123169 0.9850 +2074 128312 0.5910 +2074 161779 0.4840 +2074 221830 0.4990 +2074 246721 0.4240 +2074 254394 0.5010 +2074 255626 0.5900 +2074 267002 0.5270 +2074 404672 0.7650 +2074 474382 0.5530 +2074 548644 0.4240 +2074 644168 0.5950 +2074 653604 0.6510 +2074 100533467 0.9410 +2077 2114 0.8070 +2077 2623 0.4770 +2077 5045 0.5490 +2077 5594 0.8580 +2077 5595 0.8760 +2077 8427 0.5000 +2077 10044 0.4050 +2077 10045 0.4820 +2077 10471 0.4470 +2077 27153 0.4760 +2077 54776 0.4460 +2077 57455 0.7680 +2077 58506 0.9990 +2077 64925 0.4730 +2077 112939 0.4820 +2077 400668 0.5070 +2077 100507290 0.5140 +2078 2114 0.4050 +2078 2130 0.7540 +2078 2146 0.5610 +2078 2521 0.6800 +2078 3312 0.5280 +2078 3725 0.4880 +2078 3757 0.4960 +2078 3791 0.4150 +2078 4005 0.5450 +2078 4824 0.4040 +2078 5728 0.4370 +2078 6427 0.5460 +2078 7113 0.9330 +2078 7122 0.4130 +2078 8239 0.5710 +2078 8405 0.7030 +2078 9869 0.8410 +2078 10772 0.7600 +2078 23476 0.4240 +2078 79870 0.4460 +2078 81033 0.7270 +2078 85414 0.4600 +2079 2130 0.5170 +2079 2733 0.4780 +2079 3178 0.7350 +2079 3181 0.7030 +2079 3182 0.4790 +2079 3183 0.7920 +2079 3185 0.6840 +2079 3187 0.8020 +2079 3189 0.6580 +2079 3190 0.7380 +2079 3191 0.6940 +2079 3192 0.6820 +2079 3276 0.9680 +2079 3301 0.4040 +2079 3608 0.7690 +2079 3921 0.4930 +2079 4116 0.8880 +2079 4154 0.5520 +2079 4670 0.7070 +2079 4686 0.4340 +2079 4809 0.4280 +2079 4841 0.4690 +2079 5036 0.4610 +2079 5093 0.7090 +2079 5094 0.5150 +2079 5201 0.4350 +2079 5202 0.4240 +2079 5204 0.4730 +2079 5303 0.4240 +2079 5682 0.5230 +2079 5683 0.5130 +2079 5684 0.4730 +2079 5685 0.4490 +2079 5687 0.5380 +2079 5690 0.4030 +2079 5725 0.7000 +2079 5901 0.4180 +2079 5903 0.4240 +2079 6136 0.4290 +2079 6143 0.5060 +2079 6155 0.4790 +2079 6165 0.4240 +2079 6181 0.5260 +2079 6188 0.7320 +2079 6217 0.4120 +2079 6224 0.5840 +2079 6227 0.4050 +2079 6294 0.7870 +2079 6418 0.4450 +2079 6421 0.6670 +2079 6426 0.7420 +2079 6428 0.7360 +2079 6431 0.4060 +2079 6432 0.7130 +2079 6434 0.7650 +2079 6625 0.7060 +2079 6626 0.5690 +2079 6628 0.9360 +2079 6629 0.5850 +2079 6631 0.4740 +2079 6632 0.9820 +2079 6633 0.9800 +2079 6634 0.9820 +2079 6635 0.9810 +2079 6636 0.9830 +2079 6637 0.9790 +2079 6741 0.7520 +2079 6829 0.4160 +2079 6874 0.4100 +2079 7073 0.4240 +2079 7307 0.6680 +2079 7336 0.4320 +2079 7341 0.5260 +2079 7411 0.4040 +2079 7520 0.4360 +2079 7752 0.4350 +2079 7919 0.8770 +2079 8106 0.5650 +2079 8148 0.6700 +2079 8260 0.4800 +2079 8361 0.5340 +2079 8570 0.5230 +2079 8607 0.5640 +2079 8666 0.4370 +2079 8668 0.4640 +2079 8880 0.4420 +2079 9093 0.4180 +2079 9136 0.4100 +2079 9141 0.4610 +2079 9150 0.5410 +2079 9343 0.5120 +2079 9410 0.4450 +2079 9584 0.5350 +2079 9774 0.6940 +2079 9775 0.8170 +2079 9782 0.7160 +2079 9928 0.4300 +2079 9967 0.7950 +2079 10189 0.8870 +2079 10197 0.5180 +2079 10236 0.7120 +2079 10284 0.6550 +2079 10419 0.9360 +2079 10432 0.6920 +2079 10465 0.4150 +2079 10471 0.4930 +2079 10492 0.6660 +2079 10574 0.4240 +2079 10576 0.4680 +2079 10657 0.6480 +2079 10694 0.5040 +2079 10726 0.4970 +2079 10772 0.4290 +2079 10856 0.4240 +2079 10949 0.7490 +2079 11017 0.4520 +2079 11051 0.7040 +2079 11052 0.7410 +2079 11113 0.4280 +2079 11338 0.7050 +2079 22826 0.4790 +2079 22913 0.4400 +2079 22948 0.4360 +2079 23016 0.5340 +2079 23160 0.4180 +2079 23404 0.4460 +2079 23435 0.6650 +2079 23476 0.5170 +2079 25792 0.7360 +2079 26097 0.9430 +2079 27101 0.4110 +2079 27258 0.6560 +2079 27316 0.7110 +2079 27339 0.6650 +2079 29894 0.5150 +2079 51060 0.4090 +2079 51241 0.4260 +2079 51493 0.4390 +2079 51593 0.6630 +2079 51637 0.5140 +2079 51639 0.5820 +2079 51691 0.4470 +2079 54737 0.5570 +2079 54906 0.7770 +2079 55110 0.5550 +2079 55234 0.4300 +2079 55334 0.4570 +2079 55339 0.4830 +2079 55421 0.5540 +2079 56259 0.7420 +2079 57187 0.4680 +2079 79084 0.9200 +2079 80218 0.4750 +2079 80273 0.4040 +2079 81608 0.4740 +2079 81892 0.4240 +2079 83443 0.4910 +2079 84271 0.8090 +2079 84324 0.5840 +2079 84844 0.5370 +2079 146434 0.4440 +2079 220988 0.6340 +2079 284695 0.5160 +2079 348995 0.5530 +2081 2308 0.4400 +2081 2316 0.7770 +2081 2475 0.5820 +2081 2597 0.5940 +2081 2647 0.4340 +2081 2923 0.5580 +2081 3028 0.7280 +2081 3091 0.6310 +2081 3162 0.4330 +2081 3304 0.7970 +2081 3308 0.7830 +2081 3309 0.9990 +2081 3320 0.8640 +2081 3326 0.8170 +2081 3337 0.4330 +2081 3551 0.5090 +2081 3553 0.5360 +2081 3569 0.5500 +2081 3630 0.6080 +2081 3667 0.5100 +2081 3708 0.7400 +2081 3710 0.7430 +2081 3725 0.6930 +2081 3791 0.5370 +2081 4077 0.5900 +2081 4123 0.4490 +2081 4130 0.4520 +2081 4170 0.4710 +2081 4189 0.7380 +2081 4217 0.9990 +2081 4609 0.4920 +2081 4780 0.4830 +2081 4790 0.4580 +2081 4792 0.4110 +2081 5034 0.6780 +2081 5296 0.4600 +2081 5366 0.4510 +2081 5465 0.4310 +2081 5468 0.4290 +2081 5610 0.4410 +2081 5611 0.7150 +2081 5663 0.9580 +2081 5664 0.9140 +2081 6233 0.5400 +2081 6400 0.7970 +2081 6720 0.5060 +2081 6774 0.4590 +2081 6895 0.7220 +2081 7009 0.8500 +2081 7019 0.5370 +2081 7040 0.4070 +2081 7095 0.4180 +2081 7099 0.4760 +2081 7124 0.9010 +2081 7132 0.6270 +2081 7157 0.6250 +2081 7178 0.5010 +2081 7184 0.7630 +2081 7186 0.9990 +2081 7189 0.5300 +2081 7247 0.5400 +2081 7257 0.5440 +2081 7295 0.4770 +2081 7327 0.4200 +2081 7372 0.7220 +2081 7416 0.6000 +2081 7417 0.4960 +2081 7466 0.6000 +2081 7494 0.9970 +2081 7837 0.5410 +2081 8575 0.7220 +2081 8678 0.6190 +2081 8720 0.6110 +2081 8737 0.4160 +2081 8767 0.4240 +2081 8795 0.5470 +2081 8878 0.7120 +2081 9097 0.8090 +2081 9111 0.4290 +2081 9140 0.4810 +2081 9451 0.5410 +2081 9474 0.6010 +2081 9601 0.5810 +2081 9692 0.7260 +2081 9695 0.8600 +2081 9709 0.5470 +2081 9871 0.4270 +2081 9927 0.6520 +2081 10010 0.4330 +2081 10018 0.7990 +2081 10130 0.7990 +2081 10133 0.5400 +2081 10134 0.4030 +2081 10248 0.7200 +2081 10273 0.4840 +2081 10280 0.6670 +2081 10399 0.9050 +2081 10427 0.4440 +2081 10525 0.6200 +2081 10533 0.5710 +2081 10537 0.4960 +2081 10556 0.7230 +2081 10557 0.7250 +2081 10595 0.5790 +2081 10612 0.4860 +2081 10628 0.5900 +2081 10775 0.7220 +2081 10799 0.7280 +2081 10891 0.4340 +2081 10940 0.7200 +2081 10952 0.6780 +2081 10954 0.4100 +2081 10956 0.5980 +2081 10978 0.7210 +2081 10987 0.7250 +2081 11102 0.7220 +2081 11231 0.6080 +2081 11342 0.4310 +2081 22926 0.9760 +2081 23071 0.4410 +2081 23405 0.7730 +2081 23411 0.4190 +2081 23645 0.6620 +2081 26523 0.7460 +2081 27161 0.7590 +2081 27201 0.6860 +2081 27248 0.4110 +2081 29102 0.7490 +2081 29927 0.6750 +2081 30001 0.7450 +2081 50507 0.4470 +2081 51009 0.4050 +2081 51360 0.6480 +2081 51367 0.7200 +2081 51493 0.5550 +2081 51643 0.6120 +2081 51726 0.4700 +2081 54205 0.7170 +2081 54431 0.4420 +2081 54487 0.7250 +2081 54708 0.4440 +2081 54913 0.7220 +2081 54931 0.5480 +2081 54956 0.4010 +2081 55054 0.4230 +2081 56605 0.5620 +2081 57761 0.5440 +2081 64764 0.4110 +2081 65992 0.5930 +2081 79139 0.5820 +2081 79876 0.4190 +2081 79897 0.7200 +2081 80746 0.5400 +2081 81555 0.7190 +2081 81631 0.5930 +2081 83939 0.5530 +2081 84447 0.8960 +2081 84699 0.5270 +2081 91319 0.7540 +2081 114548 0.4480 +2081 137902 0.5420 +2081 138716 0.5440 +2081 148066 0.6210 +2081 153090 0.4800 +2081 168620 0.5230 +2081 192669 0.7380 +2081 192670 0.7410 +2081 283989 0.5430 +2081 102723407 0.4890 +2086 2248 0.5050 +2086 2249 0.5130 +2086 2250 0.5140 +2086 2251 0.5070 +2086 2252 0.5210 +2086 2253 0.5030 +2086 2254 0.5050 +2086 2255 0.5190 +2086 2264 0.4500 +2086 2335 0.9540 +2086 2515 0.5140 +2086 2532 0.4720 +2086 2597 0.6850 +2086 2811 0.4400 +2086 2993 0.7180 +2086 2994 0.4220 +2086 2995 0.5080 +2086 3075 0.9380 +2086 3082 0.5210 +2086 3123 0.4560 +2086 3240 0.4140 +2086 3321 0.5670 +2086 3329 0.4550 +2086 3383 0.6710 +2086 3385 0.5020 +2086 3439 0.4500 +2086 3456 0.4090 +2086 3458 0.6290 +2086 3552 0.4100 +2086 3553 0.5360 +2086 3558 0.5260 +2086 3565 0.5050 +2086 3569 0.5940 +2086 3576 0.4470 +2086 3586 0.5560 +2086 3605 0.4440 +2086 3630 0.6230 +2086 3684 0.6590 +2086 3687 0.4310 +2086 3850 0.4020 +2086 3858 0.5020 +2086 3875 0.5080 +2086 4057 0.7190 +2086 4072 0.4800 +2086 4077 0.4510 +2086 4179 0.5610 +2086 4233 0.5800 +2086 4240 0.5530 +2086 4254 0.4800 +2086 4481 0.5110 +2086 4493 0.4310 +2086 4680 0.4360 +2086 4907 0.4180 +2086 5045 0.4840 +2086 5092 0.4220 +2086 5175 0.4660 +2086 5188 0.5300 +2086 5230 0.4890 +2086 5232 0.5040 +2086 5284 0.5980 +2086 5340 0.9770 +2086 5347 0.4670 +2086 5478 0.4790 +2086 5530 0.4470 +2086 5551 0.4960 +2086 5552 0.4110 +2086 5648 0.4510 +2086 5788 0.5830 +2086 5818 0.4300 +2086 6317 0.4780 +2086 6363 0.4700 +2086 6402 0.5620 +2086 6440 0.4310 +2086 6521 0.4690 +2086 6522 0.5490 +2086 6554 0.7920 +2086 6678 0.4140 +2086 6693 0.5500 +2086 7037 0.4700 +2086 7070 0.4750 +2086 7076 0.6730 +2086 7097 0.6860 +2086 7098 0.5390 +2086 7099 0.7500 +2086 7113 0.4160 +2086 7124 0.5900 +2086 7132 0.5280 +2086 7167 0.4960 +2086 7251 0.6120 +2086 7414 0.4950 +2086 7433 0.6440 +2086 7448 0.6310 +2086 7450 0.6540 +2086 7472 0.4480 +2086 7837 0.5080 +2086 7852 0.6250 +2086 8411 0.5590 +2086 8577 0.4350 +2086 8745 0.5190 +2086 8748 0.4890 +2086 8817 0.5050 +2086 8822 0.5140 +2086 8823 0.5090 +2086 9043 0.4430 +2086 9172 0.5910 +2086 9308 0.5070 +2086 9437 0.5170 +2086 9474 0.4960 +2086 9900 0.4230 +2086 10133 0.4460 +2086 10468 0.4820 +2086 10551 0.5080 +2086 10673 0.4750 +2086 22871 0.5260 +2086 23586 0.4250 +2086 23767 0.4690 +2086 23768 0.4980 +2086 23769 0.4980 +2086 26281 0.5060 +2086 27006 0.5110 +2086 27128 0.4240 +2086 27161 0.5050 +2086 29126 0.6800 +2086 30816 0.4680 +2086 51284 0.5280 +2086 51351 0.6890 +2086 53616 0.4500 +2086 54106 0.4060 +2086 54908 0.4540 +2086 55248 0.4180 +2086 57697 0.5320 +2086 59272 0.9920 +2086 64083 0.4030 +2086 80321 0.4970 +2086 80380 0.5930 +2086 83697 0.4430 +2086 84000 0.6420 +2086 84896 0.7970 +2086 89782 0.6050 +2086 90273 0.4590 +2086 92703 0.4890 +2086 115004 0.4920 +2086 137902 0.5080 +2086 140628 0.4390 +2086 200081 0.4460 +2086 201633 0.4630 +2086 375611 0.5070 +2086 405754 0.5140 +2086 653509 0.5710 +2086 729238 0.6960 +2086 100133941 0.4050 +2091 2130 0.5490 +2091 2146 0.5370 +2091 2147 0.6840 +2091 2152 0.6200 +2091 2197 0.8600 +2091 2323 0.7880 +2091 2335 0.5600 +2091 2597 0.5570 +2091 2875 0.5250 +2091 2975 0.5060 +2091 2976 0.4480 +2091 3018 0.4590 +2091 3021 0.6650 +2091 3035 0.4350 +2091 3069 0.4440 +2091 3151 0.4110 +2091 3178 0.6070 +2091 3181 0.5220 +2091 3183 0.7390 +2091 3192 0.6540 +2091 3275 0.4460 +2091 3276 0.9350 +2091 3303 0.4240 +2091 3304 0.4240 +2091 3308 0.4070 +2091 3430 0.7960 +2091 3608 0.7460 +2091 3614 0.4540 +2091 3615 0.6910 +2091 3684 0.4430 +2091 3687 0.4310 +2091 3692 0.8110 +2091 3837 0.4070 +2091 3843 0.5640 +2091 3921 0.6500 +2091 3958 0.4970 +2091 4001 0.5040 +2091 4163 0.6740 +2091 4234 0.5100 +2091 4288 0.5410 +2091 4605 0.4180 +2091 4609 0.6180 +2091 4670 0.4570 +2091 4674 0.5050 +2091 4675 0.4180 +2091 4691 0.9970 +2091 4733 0.4080 +2091 4736 0.7350 +2091 4738 0.5050 +2091 4781 0.4220 +2091 4809 0.9990 +2091 4839 0.9680 +2091 4841 0.5900 +2091 4869 0.9210 +2091 4904 0.6520 +2091 4931 0.4210 +2091 5028 0.4160 +2091 5032 0.4040 +2091 5036 0.7380 +2091 5196 0.4140 +2091 5368 0.4430 +2091 5393 0.7520 +2091 5394 0.9870 +2091 5431 0.4830 +2091 5432 0.4300 +2091 5434 0.5700 +2091 5435 0.4660 +2091 5437 0.4010 +2091 5478 0.4340 +2091 5479 0.6870 +2091 5480 0.6790 +2091 5501 0.4740 +2091 5530 0.6040 +2091 5591 0.5970 +2091 5691 0.5010 +2091 5694 0.4990 +2091 5725 0.5930 +2091 5822 0.9960 +2091 5859 0.4620 +2091 5880 0.4350 +2091 5901 0.4290 +2091 5902 0.5870 +2091 5903 0.5520 +2091 6047 0.5230 +2091 6059 0.6250 +2091 6122 0.9740 +2091 6123 0.8350 +2091 6124 0.8490 +2091 6125 0.8490 +2091 6128 0.7660 +2091 6129 0.7520 +2091 6130 0.7890 +2091 6132 0.6030 +2091 6133 0.4610 +2091 6135 0.8580 +2091 6136 0.7240 +2091 6137 0.5510 +2091 6138 0.5420 +2091 6139 0.6180 +2091 6141 0.6640 +2091 6142 0.7760 +2091 6143 0.5950 +2091 6144 0.4340 +2091 6146 0.4370 +2091 6147 0.5580 +2091 6154 0.5200 +2091 6155 0.9120 +2091 6165 0.4040 +2091 6170 0.4910 +2091 6175 0.6620 +2091 6183 0.7690 +2091 6187 0.8780 +2091 6188 0.8120 +2091 6189 0.9860 +2091 6191 0.9490 +2091 6192 0.6120 +2091 6193 0.9940 +2091 6194 0.9940 +2091 6201 0.9920 +2091 6202 0.9880 +2091 6203 0.9900 +2091 6204 0.4980 +2091 6205 0.9900 +2091 6206 0.9410 +2091 6207 0.9900 +2091 6208 0.9880 +2091 6209 0.5740 +2091 6210 0.9640 +2091 6217 0.9900 +2091 6218 0.8970 +2091 6222 0.9820 +2091 6223 0.9860 +2091 6224 0.5770 +2091 6228 0.9900 +2091 6229 0.9860 +2091 6230 0.4950 +2091 6231 0.5280 +2091 6232 0.9560 +2091 6233 0.9300 +2091 6234 0.9780 +2091 6421 0.6030 +2091 6426 0.5360 +2091 6427 0.5460 +2091 6428 0.4030 +2091 6434 0.4080 +2091 6606 0.9460 +2091 6607 0.7760 +2091 6625 0.6890 +2091 6626 0.5160 +2091 6628 0.7010 +2091 6631 0.5720 +2091 6632 0.6390 +2091 6633 0.6840 +2091 6634 0.5000 +2091 6636 0.4170 +2091 6657 0.4400 +2091 6723 0.4190 +2091 6737 0.4340 +2091 6738 0.4410 +2091 6741 0.6270 +2091 6742 0.4460 +2091 6749 0.6000 +2091 6838 0.8160 +2091 6880 0.4810 +2091 6949 0.6070 +2091 7015 0.5320 +2091 7150 0.7170 +2091 7153 0.4560 +2091 7155 0.4150 +2091 7157 0.5590 +2091 7307 0.4500 +2091 7343 0.9150 +2091 7514 0.6810 +2091 7520 0.6590 +2091 7919 0.4960 +2091 8106 0.4110 +2091 8161 0.9470 +2091 8290 0.4560 +2091 8294 0.4410 +2091 8338 0.5200 +2091 8349 0.4060 +2091 8356 0.4800 +2091 8359 0.4410 +2091 8360 0.4410 +2091 8361 0.8000 +2091 8362 0.4410 +2091 8363 0.4430 +2091 8364 0.4810 +2091 8366 0.4540 +2091 8367 0.4410 +2091 8368 0.4500 +2091 8369 0.5480 +2091 8370 0.4410 +2091 8487 0.6930 +2091 8554 0.4860 +2091 8556 0.4430 +2091 8565 0.6660 +2091 8568 0.9520 +2091 8570 0.6770 +2091 8602 0.9750 +2091 8607 0.8680 +2091 8634 0.7080 +2091 8661 0.4200 +2091 8662 0.4950 +2091 8664 0.4620 +2091 8666 0.6160 +2091 8667 0.4210 +2091 8668 0.4690 +2091 8672 0.4260 +2091 8761 0.5790 +2091 8833 0.7310 +2091 8878 0.4360 +2091 8882 0.4430 +2091 8886 0.8540 +2091 8940 0.4520 +2091 9045 0.6770 +2091 9136 0.9990 +2091 9188 0.8740 +2091 9212 0.4490 +2091 9221 0.9970 +2091 9277 0.9960 +2091 9326 0.5480 +2091 9328 0.6140 +2091 9330 0.4390 +2091 9343 0.5320 +2091 9349 0.5220 +2091 9401 0.5160 +2091 9410 0.6780 +2091 9533 0.8160 +2091 9669 0.6200 +2091 9724 0.9000 +2091 9732 0.6330 +2091 9775 0.7190 +2091 9782 0.4170 +2091 9790 0.9910 +2091 9875 0.4710 +2091 9904 0.6590 +2091 9933 0.5680 +2091 9987 0.6260 +2091 10055 0.4600 +2091 10061 0.4100 +2091 10073 0.4380 +2091 10146 0.5090 +2091 10153 0.7720 +2091 10155 0.4920 +2091 10171 0.9860 +2091 10189 0.6510 +2091 10196 0.6840 +2091 10199 0.9980 +2091 10200 0.4210 +2091 10212 0.4500 +2091 10236 0.7740 +2091 10248 0.6400 +2091 10262 0.4660 +2091 10283 0.4420 +2091 10399 0.5700 +2091 10412 0.4310 +2091 10419 0.7870 +2091 10436 0.9950 +2091 10438 0.7270 +2091 10445 0.5380 +2091 10450 0.4200 +2091 10465 0.4460 +2091 10492 0.6820 +2091 10498 0.5580 +2091 10514 0.6720 +2091 10521 0.6170 +2091 10526 0.4190 +2091 10527 0.5220 +2091 10528 0.9990 +2091 10556 0.6140 +2091 10557 0.8950 +2091 10565 0.6680 +2091 10574 0.7380 +2091 10576 0.5300 +2091 10605 0.4230 +2091 10606 0.4370 +2091 10607 0.9960 +2091 10657 0.4280 +2091 10664 0.6240 +2091 10775 0.8010 +2091 10785 0.4900 +2091 10799 0.6460 +2091 10813 0.9850 +2091 10849 0.6530 +2091 10856 0.7940 +2091 10885 0.9950 +2091 10902 0.4480 +2091 10915 0.4070 +2091 10921 0.4230 +2091 10940 0.6330 +2091 10969 0.9350 +2091 10985 0.4300 +2091 11056 0.4970 +2091 11103 0.9940 +2091 11128 0.5030 +2091 11137 0.7410 +2091 11157 0.5980 +2091 11176 0.4810 +2091 11201 0.7620 +2091 11218 0.6010 +2091 11222 0.6380 +2091 11224 0.5310 +2091 11338 0.7500 +2091 11340 0.7470 +2091 22803 0.6240 +2091 22894 0.4730 +2091 22913 0.4400 +2091 22916 0.4080 +2091 22948 0.6060 +2091 22984 0.9890 +2091 23016 0.7560 +2091 23054 0.6490 +2091 23076 0.6940 +2091 23160 0.9970 +2091 23204 0.5780 +2091 23212 0.8360 +2091 23223 0.7210 +2091 23246 0.9630 +2091 23367 0.5270 +2091 23378 0.5450 +2091 23404 0.7160 +2091 23405 0.4200 +2091 23435 0.5560 +2091 23438 0.4020 +2091 23476 0.5570 +2091 23481 0.8740 +2091 23517 0.8560 +2091 23521 0.9340 +2091 23560 0.7990 +2091 23636 0.6210 +2091 23774 0.4250 +2091 24140 0.6460 +2091 25873 0.5800 +2091 25879 0.9950 +2091 25885 0.9410 +2091 25926 0.9660 +2091 25929 0.4790 +2091 25983 0.9880 +2091 26065 0.7140 +2091 26121 0.4340 +2091 26135 0.5360 +2091 26155 0.8810 +2091 26156 0.9480 +2091 26168 0.6410 +2091 26227 0.4250 +2091 26354 0.8830 +2091 26574 0.9810 +2091 26747 0.4430 +2091 26953 0.5140 +2091 26986 0.5020 +2091 26995 0.8280 +2091 27000 0.4240 +2091 27042 0.7730 +2091 27043 0.7090 +2091 27154 0.4200 +2091 27161 0.6680 +2091 27292 0.9520 +2091 27316 0.4290 +2091 27340 0.9950 +2091 27341 0.9930 +2091 28987 0.8050 +2091 28998 0.6280 +2091 29081 0.4560 +2091 29102 0.5180 +2091 29889 0.6060 +2091 29890 0.4340 +2091 29960 0.5030 +2091 29997 0.7030 +2091 30834 0.4230 +2091 30836 0.9840 +2091 50628 0.4640 +2091 51010 0.7580 +2091 51013 0.7390 +2091 51018 0.4490 +2091 51065 0.7420 +2091 51068 0.6230 +2091 51073 0.6040 +2091 51077 0.9870 +2091 51081 0.6520 +2091 51096 0.9940 +2091 51106 0.4460 +2091 51118 0.9920 +2091 51149 0.6650 +2091 51154 0.8980 +2091 51187 0.6620 +2091 51202 0.6520 +2091 51319 0.6330 +2091 51367 0.6510 +2091 51388 0.8930 +2091 51406 0.8750 +2091 51491 0.7760 +2091 51493 0.4580 +2091 51504 0.5720 +2091 51547 0.7490 +2091 51574 0.7050 +2091 51575 0.4860 +2091 51602 0.9990 +2091 51808 0.8080 +2091 53354 0.4930 +2091 54433 0.9940 +2091 54443 0.4320 +2091 54464 0.4170 +2091 54475 0.5260 +2091 54496 0.7300 +2091 54512 0.7530 +2091 54514 0.5270 +2091 54517 0.5140 +2091 54552 0.6520 +2091 54555 0.4410 +2091 54606 0.9340 +2091 54663 0.6310 +2091 54680 0.4170 +2091 54700 0.7910 +2091 54865 0.8370 +2091 54870 0.4010 +2091 54881 0.7350 +2091 54888 0.8530 +2091 54913 0.6390 +2091 54952 0.5480 +2091 54984 0.9250 +2091 55011 0.8510 +2091 55035 0.5710 +2091 55127 0.9960 +2091 55131 0.7700 +2091 55135 0.6620 +2091 55152 0.4050 +2091 55153 0.5970 +2091 55164 0.6260 +2091 55170 0.6630 +2091 55226 0.9930 +2091 55249 0.4330 +2091 55272 0.9880 +2091 55299 0.8400 +2091 55341 0.4780 +2091 55363 0.5100 +2091 55505 0.9740 +2091 55621 0.4730 +2091 55646 0.5990 +2091 55651 0.9980 +2091 55695 0.7590 +2091 55703 0.6040 +2091 55720 0.6020 +2091 55759 0.8500 +2091 55760 0.5080 +2091 55781 0.4750 +2091 55813 0.9910 +2091 56341 0.8630 +2091 56342 0.4830 +2091 56474 0.4030 +2091 56902 0.9680 +2091 56915 0.7890 +2091 56937 0.4390 +2091 57050 0.9970 +2091 57062 0.5060 +2091 57109 0.4350 +2091 57418 0.8090 +2091 57602 0.6120 +2091 57647 0.8960 +2091 57696 0.4570 +2091 63899 0.4330 +2091 64216 0.4570 +2091 64318 0.4440 +2091 64425 0.7100 +2091 64434 0.5490 +2091 64783 0.4510 +2091 64794 0.4590 +2091 64848 0.5590 +2091 64960 0.6260 +2091 64963 0.5630 +2091 64969 0.4740 +2091 65003 0.4460 +2091 65083 0.9980 +2091 79009 0.6210 +2091 79039 0.5950 +2091 79050 0.9920 +2091 79084 0.4680 +2091 79159 0.6350 +2091 79571 0.6510 +2091 79631 0.4520 +2091 79646 0.4970 +2091 79707 0.6830 +2091 79711 0.6810 +2091 79730 0.5790 +2091 79760 0.4460 +2091 79828 0.4300 +2091 79954 0.9880 +2091 79968 0.5190 +2091 80025 0.4700 +2091 80135 0.4830 +2091 80264 0.4060 +2091 80324 0.5260 +2091 81887 0.7000 +2091 81931 0.5390 +2091 83479 0.4100 +2091 83732 0.4190 +2091 83743 0.7630 +2091 84128 0.9950 +2091 84135 0.9960 +2091 84154 0.7890 +2091 84172 0.8490 +2091 84271 0.4400 +2091 84294 0.6960 +2091 84365 0.9140 +2091 84823 0.4370 +2091 84838 0.4280 +2091 84916 0.9960 +2091 84946 0.6740 +2091 88745 0.7660 +2091 90381 0.6900 +2091 90826 0.4260 +2091 91582 0.8460 +2091 92345 0.7620 +2091 92856 0.9930 +2091 93587 0.5070 +2091 96764 0.7680 +2091 116447 0.6140 +2091 117246 0.9280 +2091 118460 0.6680 +2091 121504 0.4410 +2091 126402 0.6010 +2091 128061 0.8030 +2091 136991 0.6920 +2091 138716 0.5490 +2091 140032 0.6060 +2091 142940 0.8690 +2091 146212 0.5540 +2091 149041 0.5930 +2091 153443 0.6590 +2091 165545 0.5080 +2091 221078 0.7510 +2091 221830 0.7500 +2091 285855 0.4070 +2091 317781 0.4880 +2091 345630 0.9050 +2091 347744 0.5590 +2091 387129 0.4140 +2091 387338 0.4530 +2091 440093 0.4550 +2091 440686 0.4550 +2091 554313 0.4410 +2091 641776 0.4440 +2091 643909 0.4440 +2091 653604 0.4630 +2091 692312 0.4160 +2091 728378 0.4550 +2091 728524 0.4440 +2091 729857 0.4010 +2091 100131017 0.4020 +2091 100996746 0.4440 +2091 105180390 0.4440 +2091 105180391 0.4440 +2091 114483834 0.4180 +2098 2597 0.5200 +2098 2638 0.4330 +2098 2739 0.9040 +2098 2821 0.4830 +2098 3029 0.8010 +2098 3240 0.4470 +2098 3336 0.5030 +2098 3356 0.5880 +2098 3357 0.4790 +2098 4018 0.6380 +2098 4706 0.7500 +2098 5223 0.4170 +2098 5226 0.7280 +2098 5236 0.8010 +2098 5925 0.4920 +2098 6609 0.4930 +2098 6647 0.4950 +2098 6652 0.8890 +2098 7035 0.5970 +2098 7086 0.4330 +2098 7167 0.5980 +2098 7360 0.4640 +2098 7782 0.7160 +2098 9380 0.4660 +2098 9563 0.4100 +2098 10434 0.4600 +2098 11019 0.5930 +2098 23491 0.8620 +2098 23760 0.5420 +2098 26007 0.5810 +2098 51031 0.7200 +2098 51699 0.5920 +2098 54978 0.4540 +2098 55276 0.6060 +2098 55748 0.4790 +2098 55811 0.5720 +2098 84076 0.4310 +2098 84693 0.7110 +2098 91373 0.4720 +2098 123722 0.6880 +2098 221223 0.9250 +2098 254042 0.4210 +2098 285527 0.4290 +2098 343521 0.4670 +2098 441024 0.4040 +2099 2100 0.9980 +2099 2101 0.8880 +2099 2103 0.4190 +2099 2104 0.5160 +2099 2113 0.4030 +2099 2114 0.5590 +2099 2118 0.5790 +2099 2146 0.9150 +2099 2194 0.7920 +2099 2209 0.8200 +2099 2246 0.5540 +2099 2247 0.5220 +2099 2248 0.4890 +2099 2249 0.4570 +2099 2250 0.4800 +2099 2251 0.4760 +2099 2252 0.5060 +2099 2253 0.4800 +2099 2254 0.4840 +2099 2255 0.5110 +2099 2258 0.4290 +2099 2260 0.5550 +2099 2261 0.6140 +2099 2263 0.7740 +2099 2264 0.5750 +2099 2273 0.5440 +2099 2288 0.8930 +2099 2289 0.8830 +2099 2296 0.6390 +2099 2305 0.7900 +2099 2308 0.9190 +2099 2309 0.8980 +2099 2314 0.7430 +2099 2316 0.5230 +2099 2319 0.5260 +2099 2321 0.4350 +2099 2335 0.9690 +2099 2353 0.9990 +2099 2354 0.6530 +2099 2355 0.5070 +2099 2475 0.7450 +2099 2488 0.5480 +2099 2492 0.7170 +2099 2494 0.6200 +2099 2547 0.7090 +2099 2597 0.8000 +2099 2623 0.6480 +2099 2624 0.4160 +2099 2625 0.9820 +2099 2626 0.6150 +2099 2627 0.5440 +2099 2641 0.4310 +2099 2647 0.5480 +2099 2648 0.5600 +2099 2661 0.5160 +2099 2690 0.4220 +2099 2729 0.4690 +2099 2735 0.4220 +2099 2770 0.6470 +2099 2771 0.6720 +2099 2773 0.6390 +2099 2776 0.6020 +2099 2782 0.5830 +2099 2783 0.5830 +2099 2784 0.5460 +2099 2785 0.4990 +2099 2786 0.4990 +2099 2787 0.4990 +2099 2788 0.4990 +2099 2790 0.5130 +2099 2791 0.5260 +2099 2792 0.5000 +2099 2793 0.5050 +2099 2796 0.7260 +2099 2798 0.5820 +2099 2801 0.4090 +2099 2810 0.9840 +2099 2852 0.9530 +2099 2875 0.4400 +2099 2877 0.4110 +2099 2878 0.4270 +2099 2880 0.4120 +2099 2882 0.4090 +2099 2885 0.8190 +2099 2886 0.5080 +2099 2908 0.8960 +2099 2911 0.8870 +2099 2915 0.5080 +2099 2919 0.4120 +2099 2932 0.6290 +2099 2947 0.4060 +2099 2950 0.5360 +2099 2956 0.5770 +2099 2957 0.7250 +2099 2958 0.5050 +2099 2959 0.9070 +2099 2960 0.7330 +2099 2962 0.5190 +2099 2963 0.7210 +2099 2967 0.7310 +2099 2972 0.5420 +2099 2990 0.6220 +2099 3012 0.4990 +2099 3013 0.4990 +2099 3014 0.6810 +2099 3015 0.6450 +2099 3017 0.6330 +2099 3018 0.5930 +2099 3021 0.8160 +2099 3028 0.5300 +2099 3032 0.5140 +2099 3059 0.5100 +2099 3064 0.4580 +2099 3065 0.9980 +2099 3066 0.9030 +2099 3082 0.4110 +2099 3084 0.4520 +2099 3091 0.9480 +2099 3146 0.5570 +2099 3156 0.4410 +2099 3162 0.4090 +2099 3169 0.9980 +2099 3170 0.6570 +2099 3172 0.6280 +2099 3206 0.4830 +2099 3251 0.4010 +2099 3265 0.7150 +2099 3275 0.6370 +2099 3276 0.8780 +2099 3283 0.5850 +2099 3284 0.4150 +2099 3292 0.6110 +2099 3293 0.4560 +2099 3294 0.5140 +2099 3304 0.4540 +2099 3308 0.9310 +2099 3309 0.6680 +2099 3312 0.9190 +2099 3313 0.5310 +2099 3315 0.7370 +2099 3316 0.6230 +2099 3320 0.9990 +2099 3326 0.9930 +2099 3329 0.4400 +2099 3383 0.4210 +2099 3397 0.4720 +2099 3418 0.5750 +2099 3458 0.5520 +2099 3479 0.9640 +2099 3480 0.9990 +2099 3481 0.7340 +2099 3484 0.4760 +2099 3485 0.6040 +2099 3486 0.5060 +2099 3488 0.4180 +2099 3491 0.5990 +2099 3551 0.4130 +2099 3552 0.4760 +2099 3553 0.8200 +2099 3558 0.4330 +2099 3565 0.4390 +2099 3569 0.7920 +2099 3576 0.5070 +2099 3586 0.5300 +2099 3605 0.4030 +2099 3607 0.4190 +2099 3621 0.4270 +2099 3630 0.8410 +2099 3643 0.6200 +2099 3655 0.4540 +2099 3667 0.9030 +2099 3670 0.6320 +2099 3688 0.4110 +2099 3717 0.5380 +2099 3725 0.9990 +2099 3727 0.6680 +2099 3791 0.6880 +2099 3814 0.6930 +2099 3815 0.5920 +2099 3816 0.4460 +2099 3838 0.5960 +2099 3845 0.7640 +2099 3848 0.4110 +2099 3852 0.7370 +2099 3855 0.6810 +2099 3856 0.6460 +2099 3861 0.6090 +2099 3872 0.4570 +2099 3875 0.6140 +2099 3880 0.5900 +2099 3952 0.8060 +2099 3953 0.4520 +2099 3960 0.5310 +2099 3973 0.7310 +2099 4015 0.5140 +2099 4041 0.4490 +2099 4057 0.4060 +2099 4072 0.5440 +2099 4087 0.8300 +2099 4088 0.8400 +2099 4089 0.8330 +2099 4101 0.4830 +2099 4128 0.4010 +2099 4137 0.4180 +2099 4144 0.4190 +2099 4170 0.6530 +2099 4176 0.4980 +2099 4192 0.5100 +2099 4193 0.9460 +2099 4204 0.4190 +2099 4208 0.5610 +2099 4214 0.6430 +2099 4233 0.6800 +2099 4255 0.6250 +2099 4256 0.4050 +2099 4288 0.6430 +2099 4292 0.5070 +2099 4303 0.4590 +2099 4306 0.4990 +2099 4311 0.5490 +2099 4312 0.4100 +2099 4313 0.5800 +2099 4314 0.4090 +2099 4316 0.4300 +2099 4318 0.7720 +2099 4331 0.7330 +2099 4343 0.5210 +2099 4353 0.5000 +2099 4435 0.7020 +2099 4436 0.6640 +2099 4437 0.4110 +2099 4543 0.4200 +2099 4602 0.6800 +2099 4605 0.4480 +2099 4609 0.9820 +2099 4613 0.4330 +2099 4616 0.5100 +2099 4619 0.4320 +2099 4624 0.4520 +2099 4641 0.4200 +2099 4654 0.5730 +2099 4756 0.4290 +2099 4763 0.6870 +2099 4776 0.5030 +2099 4780 0.4490 +2099 4781 0.4860 +2099 4790 0.9570 +2099 4791 0.5400 +2099 4792 0.4710 +2099 4803 0.6280 +2099 4804 0.5420 +2099 4831 0.4180 +2099 4846 0.7730 +2099 4849 0.4370 +2099 4851 0.6420 +2099 4852 0.4970 +2099 4853 0.5940 +2099 4854 0.4250 +2099 4855 0.4020 +2099 4862 0.5780 +2099 4869 0.7490 +2099 4893 0.4660 +2099 4904 0.6280 +2099 4908 0.4660 +2099 4914 0.7200 +2099 4915 0.5550 +2099 4929 0.4290 +2099 4968 0.5600 +2099 4982 0.6020 +2099 4988 0.6180 +2099 5015 0.4660 +2099 5020 0.7480 +2099 5021 0.7510 +2099 5033 0.4700 +2099 5054 0.4730 +2099 5058 0.6520 +2099 5076 0.5700 +2099 5087 0.4730 +2099 5156 0.4670 +2099 5159 0.4510 +2099 5173 0.4180 +2099 5174 0.5490 +2099 5175 0.4920 +2099 5225 0.4220 +2099 5241 0.9740 +2099 5243 0.5280 +2099 5245 0.5170 +2099 5268 0.4060 +2099 5290 0.9410 +2099 5295 0.9940 +2099 5296 0.6370 +2099 5304 0.6720 +2099 5327 0.5280 +2099 5328 0.4760 +2099 5347 0.4200 +2099 5349 0.4870 +2099 5378 0.4120 +2099 5431 0.5400 +2099 5432 0.5510 +2099 5433 0.5080 +2099 5434 0.5350 +2099 5435 0.5650 +2099 5436 0.5420 +2099 5437 0.5470 +2099 5438 0.5200 +2099 5439 0.5150 +2099 5440 0.5310 +2099 5441 0.5080 +2099 5443 0.6920 +2099 5451 0.8150 +2099 5457 0.6010 +2099 5458 0.6790 +2099 5460 0.6780 +2099 5465 0.6180 +2099 5468 0.7940 +2099 5469 0.9980 +2099 5478 0.4750 +2099 5481 0.9330 +2099 5506 0.5670 +2099 5515 0.4310 +2099 5518 0.4780 +2099 5536 0.6600 +2099 5566 0.9560 +2099 5567 0.9560 +2099 5568 0.9560 +2099 5578 0.4330 +2099 5590 0.4460 +2099 5591 0.7170 +2099 5594 0.9870 +2099 5595 0.9810 +2099 5599 0.9640 +2099 5600 0.9250 +2099 5601 0.9270 +2099 5603 0.9220 +2099 5604 0.5210 +2099 5605 0.5300 +2099 5617 0.8280 +2099 5618 0.6810 +2099 5673 0.5030 +2099 5705 0.6250 +2099 5728 0.8070 +2099 5741 0.6260 +2099 5742 0.4530 +2099 5743 0.6740 +2099 5744 0.4290 +2099 5747 0.8360 +2099 5757 0.4110 +2099 5764 0.4850 +2099 5770 0.6520 +2099 5781 0.5740 +2099 5788 0.4940 +2099 5885 0.6420 +2099 5888 0.5680 +2099 5894 0.6420 +2099 5914 0.6990 +2099 5917 0.6560 +2099 5925 0.5830 +2099 5927 0.4930 +2099 5928 0.4530 +2099 5929 0.5960 +2099 5931 0.4810 +2099 5932 0.5730 +2099 5966 0.7400 +2099 5970 0.9780 +2099 5971 0.5310 +2099 5972 0.4340 +2099 5979 0.6700 +2099 6035 0.5060 +2099 6095 0.4590 +2099 6098 0.4010 +2099 6175 0.5610 +2099 6195 0.5630 +2099 6197 0.7000 +2099 6198 0.9550 +2099 6199 0.9350 +2099 6233 0.5090 +2099 6256 0.6510 +2099 6277 0.4500 +2099 6294 0.9270 +2099 6300 0.9230 +2099 6311 0.4300 +2099 6331 0.4100 +2099 6347 0.6560 +2099 6351 0.4140 +2099 6382 0.4630 +2099 6387 0.8790 +2099 6391 0.5070 +2099 6422 0.4330 +2099 6424 0.5250 +2099 6446 0.4420 +2099 6462 0.7290 +2099 6464 0.9900 +2099 6469 0.6520 +2099 6500 0.4660 +2099 6502 0.5540 +2099 6513 0.4100 +2099 6517 0.4680 +2099 6532 0.4040 +2099 6541 0.6280 +2099 6591 0.5930 +2099 6595 0.6420 +2099 6597 0.8590 +2099 6602 0.4080 +2099 6604 0.6330 +2099 6605 0.8720 +2099 6613 0.6860 +2099 6615 0.6040 +2099 6622 0.4420 +2099 6647 0.4010 +2099 6655 0.4320 +2099 6657 0.5390 +2099 6662 0.5170 +2099 6667 0.9990 +2099 6670 0.8400 +2099 6696 0.5100 +2099 6714 0.9990 +2099 6716 0.4510 +2099 6720 0.4510 +2099 6736 0.4660 +2099 6767 0.5320 +2099 6770 0.5410 +2099 6772 0.9150 +2099 6774 0.9300 +2099 6776 0.7680 +2099 6777 0.5120 +2099 6783 0.5800 +2099 6790 0.7690 +2099 6794 0.4890 +2099 6801 0.9470 +2099 6839 0.7340 +2099 6855 0.5090 +2099 6867 0.6000 +2099 6873 0.4230 +2099 6876 0.4010 +2099 6881 0.7510 +2099 6885 0.4840 +2099 6900 0.5960 +2099 6908 0.9490 +2099 6926 0.6070 +2099 6934 0.4400 +2099 6996 0.8160 +2099 7015 0.5530 +2099 7022 0.9380 +2099 7025 0.7290 +2099 7031 0.9780 +2099 7033 0.6800 +2099 7039 0.6910 +2099 7040 0.6140 +2099 7041 0.4950 +2099 7046 0.5830 +2099 7048 0.6340 +2099 7054 0.5060 +2099 7067 0.5980 +2099 7068 0.5450 +2099 7078 0.4490 +2099 7080 0.5070 +2099 7090 0.7310 +2099 7099 0.4410 +2099 7113 0.4570 +2099 7124 0.6520 +2099 7153 0.4980 +2099 7155 0.6590 +2099 7157 0.9920 +2099 7158 0.5360 +2099 7161 0.4950 +2099 7181 0.4270 +2099 7182 0.6210 +2099 7184 0.4530 +2099 7186 0.5010 +2099 7187 0.6000 +2099 7189 0.4960 +2099 7205 0.4420 +2099 7227 0.6090 +2099 7248 0.5220 +2099 7249 0.8180 +2099 7291 0.8110 +2099 7295 0.4360 +2099 7296 0.6630 +2099 7329 0.7560 +2099 7337 0.9230 +2099 7341 0.5900 +2099 7350 0.4090 +2099 7366 0.5030 +2099 7376 0.4420 +2099 7391 0.7960 +2099 7392 0.6190 +2099 7403 0.5870 +2099 7409 0.4070 +2099 7412 0.4770 +2099 7416 0.6780 +2099 7431 0.5120 +2099 7468 0.4740 +2099 7471 0.4600 +2099 7472 0.4230 +2099 7474 0.4160 +2099 7490 0.7360 +2099 7494 0.7600 +2099 7498 0.4690 +2099 7507 0.4080 +2099 7514 0.5100 +2099 7520 0.6350 +2099 7528 0.7040 +2099 7529 0.9520 +2099 7532 0.4120 +2099 7533 0.4800 +2099 7534 0.6330 +2099 7535 0.4860 +2099 7704 0.4520 +2099 7706 0.4980 +2099 7709 0.5530 +2099 7764 0.7140 +2099 7799 0.7240 +2099 7818 0.4310 +2099 7837 0.7080 +2099 7849 0.5720 +2099 7852 0.7020 +2099 7874 0.4940 +2099 7994 0.4640 +2099 8031 0.6840 +2099 8061 0.4090 +2099 8085 0.8220 +2099 8091 0.4050 +2099 8202 0.9990 +2099 8204 0.9990 +2099 8220 0.8150 +2099 8243 0.6000 +2099 8289 0.6280 +2099 8290 0.6140 +2099 8295 0.4300 +2099 8312 0.8310 +2099 8313 0.5030 +2099 8331 0.4990 +2099 8334 0.5110 +2099 8337 0.6730 +2099 8338 0.7010 +2099 8340 0.5870 +2099 8341 0.5870 +2099 8342 0.5870 +2099 8345 0.5860 +2099 8347 0.6310 +2099 8348 0.5870 +2099 8349 0.6870 +2099 8356 0.7990 +2099 8361 0.6860 +2099 8405 0.8390 +2099 8412 0.5730 +2099 8431 0.8520 +2099 8450 0.5830 +2099 8452 0.4970 +2099 8454 0.5410 +2099 8503 0.5130 +2099 8517 0.4410 +2099 8549 0.4500 +2099 8554 0.7440 +2099 8600 0.6510 +2099 8614 0.5210 +2099 8644 0.4240 +2099 8648 0.9990 +2099 8654 0.5420 +2099 8655 0.5340 +2099 8660 0.5230 +2099 8661 0.4130 +2099 8665 0.4220 +2099 8678 0.4220 +2099 8805 0.9600 +2099 8817 0.4780 +2099 8822 0.4720 +2099 8823 0.4710 +2099 8826 0.7130 +2099 8841 0.5770 +2099 8842 0.4400 +2099 8850 0.8040 +2099 8861 0.6220 +2099 8864 0.6650 +2099 8878 0.6970 +2099 8900 0.5230 +2099 8945 0.5300 +2099 8970 0.5950 +2099 8974 0.4740 +2099 8988 0.6250 +2099 9021 0.4860 +2099 9049 0.4290 +2099 9070 0.6110 +2099 9112 0.9610 +2099 9113 0.4600 +2099 9124 0.7120 +2099 9126 0.6250 +2099 9134 0.4020 +2099 9166 0.9690 +2099 9167 0.4100 +2099 9210 0.5180 +2099 9213 0.5060 +2099 9219 0.6530 +2099 9282 0.8540 +2099 9314 0.4890 +2099 9325 0.6290 +2099 9360 0.5420 +2099 9370 0.5510 +2099 9429 0.5520 +2099 9439 0.4600 +2099 9440 0.5330 +2099 9451 0.4530 +2099 9475 0.5350 +2099 9476 0.4540 +2099 9564 0.9410 +2099 9575 0.4310 +2099 9584 0.6640 +2099 9611 0.9990 +2099 9612 0.9930 +2099 9641 0.4280 +2099 9656 0.5670 +2099 9667 0.8720 +2099 9687 0.9830 +2099 9734 0.5050 +2099 9759 0.6830 +2099 9833 0.4290 +2099 9839 0.4370 +2099 9862 0.5600 +2099 9923 0.4960 +2099 9961 0.6670 +2099 9965 0.4310 +2099 9968 0.6420 +2099 9969 0.4520 +2099 9971 0.7440 +2099 9978 0.4130 +2099 10000 0.4290 +2099 10011 0.6830 +2099 10013 0.5740 +2099 10014 0.6360 +2099 10018 0.4700 +2099 10025 0.4180 +2099 10190 0.7570 +2099 10197 0.5150 +2099 10273 0.9360 +2099 10274 0.5380 +2099 10286 0.4110 +2099 10370 0.5020 +2099 10376 0.5370 +2099 10401 0.6420 +2099 10403 0.7210 +2099 10432 0.5990 +2099 10451 0.5070 +2099 10474 0.6900 +2099 10481 0.4280 +2099 10498 0.9720 +2099 10499 0.9990 +2099 10521 0.9920 +2099 10524 0.8680 +2099 10551 0.7720 +2099 10576 0.5210 +2099 10587 0.5810 +2099 10612 0.5370 +2099 10614 0.4340 +2099 10616 0.6900 +2099 10626 0.4470 +2099 10653 0.4070 +2099 10656 0.4380 +2099 10664 0.7170 +2099 10672 0.9850 +2099 10681 0.5210 +2099 10728 0.9350 +2099 10735 0.5790 +2099 10765 0.7140 +2099 10857 0.4480 +2099 10891 0.9800 +2099 10912 0.6120 +2099 10919 0.5710 +2099 10957 0.5080 +2099 10971 0.4140 +2099 10987 0.6530 +2099 10988 0.5150 +2099 11059 0.6070 +2099 11091 0.6380 +2099 11156 0.4620 +2099 11186 0.5700 +2099 11200 0.5380 +2099 11214 0.6520 +2099 11240 0.5190 +2099 11309 0.4630 +2099 11314 0.4400 +2099 11331 0.9850 +2099 22926 0.5650 +2099 22943 0.4160 +2099 22992 0.4110 +2099 23019 0.4650 +2099 23028 0.9620 +2099 23030 0.9220 +2099 23054 0.9130 +2099 23112 0.5540 +2099 23118 0.7740 +2099 23135 0.7520 +2099 23158 0.5250 +2099 23186 0.5870 +2099 23205 0.5060 +2099 23210 0.4510 +2099 23405 0.6920 +2099 23411 0.7330 +2099 23426 0.7030 +2099 23471 0.4800 +2099 23476 0.5000 +2099 23512 0.5450 +2099 23543 0.7590 +2099 23558 0.4680 +2099 23598 0.4020 +2099 23613 0.6600 +2099 23678 0.4920 +2099 23705 0.4480 +2099 25792 0.4200 +2099 25800 0.4420 +2099 25831 0.5100 +2099 25920 0.7920 +2099 25942 0.5780 +2099 26060 0.4820 +2099 26227 0.4510 +2099 26281 0.4700 +2099 26291 0.4340 +2099 26292 0.4060 +2099 26523 0.5850 +2099 26986 0.4800 +2099 27006 0.4770 +2099 27043 0.9500 +2099 27076 0.5100 +2099 27159 0.4440 +2099 27161 0.6700 +2099 27185 0.4350 +2099 27324 0.5180 +2099 27327 0.5660 +2099 28992 0.8180 +2099 29028 0.9770 +2099 29102 0.8950 +2099 29110 0.4250 +2099 29126 0.5840 +2099 29841 0.4730 +2099 29947 0.4460 +2099 29966 0.4360 +2099 29979 0.4020 +2099 30836 0.5850 +2099 50809 0.4380 +2099 50940 0.4200 +2099 50943 0.4610 +2099 50964 0.6750 +2099 51094 0.5530 +2099 51176 0.5330 +2099 51230 0.4830 +2099 51302 0.4760 +2099 51327 0.4790 +2099 51460 0.4180 +2099 51491 0.4120 +2099 51523 0.7860 +2099 51564 0.7070 +2099 51720 0.7300 +2099 51738 0.6100 +2099 51764 0.5010 +2099 51806 0.9790 +2099 53358 0.4030 +2099 54145 0.5870 +2099 54205 0.5410 +2099 54331 0.5070 +2099 54361 0.5100 +2099 54474 0.6260 +2099 54487 0.5970 +2099 54575 0.4100 +2099 54576 0.4260 +2099 54577 0.4040 +2099 54578 0.4100 +2099 54657 0.4260 +2099 54658 0.4100 +2099 54810 0.4090 +2099 54828 0.6390 +2099 54829 0.4100 +2099 55062 0.5140 +2099 55072 0.4660 +2099 55147 0.4020 +2099 55290 0.5400 +2099 55294 0.4130 +2099 55325 0.4610 +2099 55328 0.4360 +2099 55611 0.6850 +2099 55625 0.6510 +2099 55629 0.4110 +2099 55749 0.4930 +2099 55766 0.5150 +2099 55818 0.5500 +2099 55859 0.4100 +2099 55970 0.4990 +2099 56924 0.4260 +2099 56950 0.5230 +2099 56955 0.4920 +2099 57104 0.4980 +2099 57109 0.5540 +2099 57154 0.6020 +2099 57326 0.6500 +2099 57472 0.4570 +2099 57491 0.6350 +2099 57504 0.5930 +2099 57521 0.7010 +2099 57541 0.5070 +2099 57621 0.4090 +2099 57658 0.4710 +2099 57678 0.4710 +2099 57708 0.7960 +2099 57727 0.6840 +2099 57758 0.4930 +2099 58508 0.4560 +2099 59269 0.5450 +2099 59272 0.6190 +2099 59345 0.5820 +2099 59350 0.4760 +2099 63897 0.7980 +2099 63943 0.7450 +2099 63973 0.4240 +2099 63978 0.4530 +2099 64111 0.4700 +2099 64754 0.8720 +2099 78990 0.5580 +2099 79004 0.7560 +2099 79039 0.5770 +2099 79154 0.7380 +2099 79447 0.6170 +2099 79624 0.4130 +2099 79633 0.4290 +2099 79718 0.5680 +2099 79727 0.5720 +2099 79728 0.5060 +2099 79923 0.5160 +2099 79977 0.5570 +2099 80129 0.7850 +2099 80205 0.7620 +2099 80324 0.4530 +2099 80854 0.8170 +2099 81669 0.7450 +2099 81844 0.4700 +2099 81857 0.4840 +2099 84260 0.6700 +2099 84458 0.8660 +2099 84498 0.5820 +2099 84634 0.5600 +2099 84660 0.4820 +2099 84707 0.4060 +2099 84735 0.4290 +2099 85004 0.6000 +2099 85236 0.5870 +2099 85366 0.4500 +2099 89790 0.4350 +2099 91860 0.9790 +2099 94235 0.4990 +2099 94239 0.5350 +2099 114882 0.4060 +2099 121340 0.5880 +2099 122042 0.5040 +2099 128312 0.5860 +2099 133482 0.6450 +2099 133522 0.8950 +2099 135112 0.8420 +2099 135228 0.4160 +2099 137902 0.7080 +2099 155465 0.6240 +2099 161582 0.6100 +2099 161835 0.4830 +2099 163688 0.9790 +2099 167465 0.4870 +2099 192669 0.5460 +2099 192670 0.5440 +2099 200845 0.5180 +2099 220074 0.4720 +2099 254251 0.4380 +2099 255626 0.5930 +2099 257202 0.4070 +2099 266740 0.4890 +2099 284217 0.4260 +2099 339745 0.4580 +2099 340481 0.7860 +2099 346562 0.5230 +2099 399665 0.5430 +2099 400566 0.6110 +2099 440093 0.6130 +2099 440686 0.6300 +2099 474382 0.5070 +2099 493869 0.4090 +2099 653604 0.8070 +2099 728378 0.6720 +2099 100133941 0.6140 +2099 100532731 0.4180 +2099 100861540 0.4350 +2100 2103 0.4230 +2100 2104 0.4120 +2100 2200 0.4270 +2100 2248 0.4020 +2100 2252 0.5550 +2100 2253 0.5520 +2100 2255 0.4110 +2100 2261 0.5050 +2100 2263 0.5360 +2100 2264 0.4470 +2100 2288 0.5960 +2100 2289 0.6200 +2100 2294 0.4210 +2100 2309 0.7070 +2100 2335 0.5610 +2100 2353 0.9610 +2100 2488 0.4790 +2100 2492 0.6630 +2100 2597 0.5710 +2100 2641 0.4150 +2100 2661 0.5320 +2100 2690 0.4670 +2100 2737 0.4200 +2100 2770 0.5260 +2100 2771 0.5420 +2100 2773 0.5260 +2100 2782 0.5240 +2100 2783 0.5070 +2100 2784 0.5400 +2100 2785 0.5000 +2100 2786 0.4990 +2100 2787 0.4990 +2100 2788 0.5070 +2100 2790 0.5050 +2100 2791 0.4990 +2100 2792 0.4990 +2100 2793 0.5000 +2100 2796 0.7850 +2100 2798 0.5220 +2100 2834 0.4490 +2100 2852 0.9430 +2100 2872 0.4600 +2100 2911 0.5520 +2100 2912 0.5520 +2100 2913 0.4460 +2100 2932 0.6480 +2100 2990 0.5520 +2100 3028 0.4890 +2100 3084 0.6970 +2100 3091 0.6760 +2100 3169 0.6320 +2100 3276 0.8070 +2100 3283 0.5940 +2100 3284 0.4210 +2100 3292 0.6130 +2100 3293 0.4460 +2100 3294 0.5740 +2100 3308 0.6610 +2100 3315 0.5350 +2100 3316 0.5350 +2100 3320 0.8840 +2100 3326 0.8320 +2100 3339 0.4600 +2100 3397 0.4050 +2100 3479 0.7310 +2100 3480 0.8130 +2100 3481 0.4010 +2100 3553 0.5110 +2100 3569 0.5540 +2100 3586 0.4020 +2100 3630 0.6140 +2100 3725 0.9670 +2100 3791 0.5730 +2100 3814 0.6010 +2100 3856 0.5340 +2100 3875 0.5320 +2100 3952 0.5950 +2100 3973 0.7270 +2100 4088 0.5530 +2100 4089 0.6660 +2100 4133 0.4320 +2100 4193 0.5060 +2100 4288 0.5640 +2100 4318 0.5120 +2100 4437 0.4130 +2100 4544 0.4730 +2100 4609 0.5180 +2100 4790 0.4420 +2100 4793 0.4290 +2100 4831 0.5020 +2100 4846 0.6890 +2100 4852 0.4140 +2100 4982 0.4430 +2100 5020 0.7910 +2100 5021 0.8000 +2100 5174 0.4660 +2100 5241 0.4710 +2100 5290 0.5750 +2100 5295 0.5300 +2100 5296 0.4350 +2100 5307 0.4010 +2100 5327 0.4180 +2100 5359 0.6230 +2100 5443 0.5820 +2100 5465 0.4350 +2100 5468 0.5420 +2100 5469 0.9880 +2100 5481 0.5430 +2100 5506 0.4790 +2100 5532 0.4800 +2100 5536 0.6630 +2100 5566 0.9430 +2100 5567 0.9430 +2100 5568 0.9430 +2100 5594 0.9480 +2100 5595 0.9550 +2100 5599 0.9230 +2100 5600 0.9120 +2100 5601 0.9150 +2100 5603 0.9080 +2100 5617 0.6100 +2100 5618 0.6090 +2100 5649 0.4240 +2100 5673 0.4170 +2100 5728 0.5040 +2100 5743 0.5300 +2100 5747 0.5880 +2100 5925 0.4860 +2100 5934 0.4300 +2100 5966 0.5060 +2100 5970 0.5830 +2100 5971 0.4880 +2100 6188 0.4920 +2100 6198 0.9280 +2100 6199 0.9100 +2100 6277 0.4460 +2100 6300 0.9070 +2100 6363 0.4080 +2100 6427 0.4320 +2100 6462 0.7590 +2100 6464 0.6130 +2100 6513 0.4450 +2100 6517 0.4140 +2100 6530 0.4400 +2100 6541 0.4070 +2100 6662 0.5890 +2100 6667 0.9880 +2100 6714 0.9950 +2100 6716 0.4670 +2100 6750 0.4260 +2100 6770 0.5430 +2100 6774 0.4750 +2100 6776 0.5070 +2100 6783 0.4470 +2100 6794 0.5540 +2100 6801 0.9030 +2100 6908 0.5120 +2100 7031 0.4290 +2100 7040 0.4420 +2100 7054 0.4290 +2100 7124 0.5260 +2100 7157 0.7830 +2100 7166 0.5100 +2100 7295 0.5210 +2100 7337 0.8430 +2100 7531 0.4020 +2100 7533 0.4480 +2100 7837 0.5530 +2100 7852 0.5150 +2100 8165 0.4350 +2100 8202 0.9970 +2100 8204 0.7740 +2100 8431 0.5490 +2100 8450 0.4210 +2100 8503 0.4360 +2100 8600 0.4410 +2100 8626 0.4390 +2100 8648 0.9990 +2100 8805 0.4190 +2100 8911 0.9110 +2100 8912 0.9140 +2100 8913 0.9220 +2100 8988 0.5350 +2100 9210 0.5740 +2100 9213 0.5760 +2100 9282 0.4050 +2100 9370 0.4450 +2100 9584 0.4350 +2100 9611 0.9700 +2100 9612 0.9080 +2100 9687 0.4940 +2100 9771 0.5090 +2100 9968 0.4370 +2100 10006 0.4060 +2100 10011 0.4190 +2100 10134 0.7330 +2100 10273 0.6760 +2100 10286 0.5690 +2100 10498 0.9220 +2100 10499 0.9930 +2100 10533 0.4950 +2100 10587 0.5200 +2100 10681 0.5070 +2100 10728 0.8170 +2100 10857 0.4090 +2100 10865 0.5450 +2100 10891 0.7030 +2100 11030 0.5350 +2100 11124 0.4260 +2100 11156 0.4040 +2100 23001 0.5190 +2100 23054 0.7500 +2100 23143 0.4080 +2100 23205 0.4190 +2100 23411 0.4790 +2100 23543 0.5760 +2100 23582 0.4560 +2100 25828 0.4530 +2100 26471 0.4180 +2100 26747 0.4230 +2100 27006 0.4020 +2100 27043 0.6870 +2100 30836 0.6410 +2100 51024 0.4240 +2100 51077 0.4980 +2100 51094 0.4010 +2100 51764 0.4990 +2100 51806 0.5540 +2100 54205 0.4310 +2100 54331 0.5000 +2100 54796 0.4590 +2100 55625 0.5130 +2100 55653 0.4110 +2100 55809 0.4080 +2100 55970 0.4990 +2100 57708 0.4790 +2100 57727 0.9240 +2100 59345 0.5070 +2100 64745 0.4860 +2100 79039 0.6540 +2100 79154 0.5480 +2100 80129 0.4890 +2100 84634 0.4700 +2100 84660 0.7060 +2100 91860 0.5540 +2100 94235 0.4990 +2100 135112 0.7850 +2100 137902 0.5540 +2100 161582 0.5970 +2100 163688 0.5540 +2100 340481 0.4980 +2100 346562 0.5270 +2101 2103 0.8240 +2101 2104 0.9270 +2101 2171 0.5740 +2101 2308 0.4530 +2101 2353 0.5140 +2101 2551 0.6860 +2101 2553 0.6610 +2101 2597 0.4100 +2101 2834 0.4290 +2101 2852 0.5110 +2101 2908 0.5440 +2101 2959 0.4430 +2101 3091 0.6620 +2101 3172 0.5270 +2101 3280 0.4400 +2101 3320 0.5640 +2101 3326 0.4760 +2101 3419 0.4110 +2101 3434 0.4540 +2101 3630 0.4540 +2101 4286 0.5290 +2101 4609 0.4410 +2101 4899 0.8490 +2101 5071 0.4330 +2101 5166 0.6980 +2101 5241 0.4240 +2101 5442 0.4580 +2101 5465 0.6410 +2101 5467 0.5160 +2101 5468 0.8980 +2101 5469 0.5900 +2101 5566 0.5360 +2101 5567 0.5240 +2101 5568 0.5250 +2101 6141 0.4160 +2101 6256 0.6060 +2101 6541 0.8470 +2101 6648 0.4550 +2101 6667 0.4730 +2101 6714 0.5450 +2101 6720 0.4380 +2101 6772 0.5770 +2101 7019 0.7300 +2101 7031 0.4270 +2101 7136 0.6220 +2101 7291 0.5680 +2101 7350 0.5310 +2101 7351 0.4300 +2101 7352 0.4370 +2101 7376 0.4380 +2101 7423 0.4290 +2101 7528 0.6800 +2101 8202 0.8050 +2101 8204 0.8640 +2101 8431 0.5280 +2101 8553 0.4870 +2101 8648 0.6830 +2101 8767 0.4290 +2101 8850 0.4740 +2101 9314 0.7050 +2101 9611 0.8510 +2101 9612 0.7050 +2101 9927 0.5640 +2101 9971 0.5390 +2101 10014 0.4170 +2101 10059 0.4200 +2101 10273 0.7090 +2101 10499 0.7410 +2101 10891 0.9990 +2101 11059 0.5110 +2101 23082 0.4990 +2101 23381 0.4380 +2101 23410 0.6040 +2101 23411 0.7980 +2101 25858 0.4050 +2101 27043 0.5130 +2101 51024 0.4370 +2101 51106 0.4830 +2101 54205 0.8610 +2101 55629 0.6050 +2101 55669 0.4450 +2101 55869 0.4990 +2101 59269 0.5230 +2101 63976 0.5340 +2101 64216 0.5110 +2101 83463 0.4730 +2101 84808 0.8460 +2101 114907 0.4370 +2101 116444 0.4320 +2101 126129 0.4250 +2101 133522 0.9970 +2101 225689 0.5550 +2103 2104 0.7480 +2103 2114 0.5910 +2103 2146 0.5800 +2103 2249 0.5650 +2103 2250 0.5190 +2103 2260 0.5370 +2103 2526 0.4320 +2103 2597 0.4840 +2103 2626 0.5330 +2103 2627 0.5670 +2103 2637 0.5280 +2103 2834 0.4410 +2103 3091 0.4890 +2103 3170 0.4630 +2103 3266 0.4140 +2103 3320 0.5480 +2103 3326 0.5550 +2103 3720 0.6320 +2103 3976 0.5820 +2103 4609 0.5780 +2103 4613 0.6540 +2103 4780 0.4110 +2103 5015 0.6200 +2103 5046 0.7000 +2103 5080 0.4170 +2103 5241 0.4220 +2103 5453 0.4380 +2103 5460 0.9050 +2103 5465 0.4390 +2103 5467 0.4360 +2103 5468 0.5080 +2103 5469 0.5390 +2103 5928 0.5250 +2103 6299 0.5540 +2103 6541 0.8420 +2103 6602 0.5020 +2103 6656 0.4830 +2103 6657 0.8600 +2103 6658 0.4060 +2103 6774 0.5300 +2103 6908 0.5800 +2103 6926 0.8270 +2103 6997 0.4180 +2103 7004 0.4580 +2103 7019 0.4070 +2103 7022 0.5040 +2103 7044 0.4090 +2103 7376 0.4170 +2103 7399 0.5500 +2103 7543 0.6380 +2103 7547 0.5350 +2103 8115 0.6270 +2103 8202 0.7650 +2103 8204 0.7450 +2103 8320 0.7460 +2103 8433 0.6900 +2103 8521 0.5870 +2103 8563 0.4950 +2103 8648 0.5400 +2103 8726 0.4160 +2103 9314 0.7980 +2103 9464 0.4020 +2103 9542 0.4030 +2103 9573 0.4410 +2103 9611 0.7250 +2103 9612 0.7570 +2103 9623 0.6200 +2103 10365 0.6680 +2103 10499 0.5360 +2103 10637 0.5160 +2103 10664 0.5250 +2103 10891 0.5260 +2103 22823 0.5630 +2103 23512 0.6350 +2103 29842 0.8150 +2103 29947 0.4460 +2103 54790 0.4050 +2103 55211 0.5890 +2103 55629 0.4290 +2103 55827 0.4630 +2103 57167 0.9230 +2103 63978 0.7400 +2103 64321 0.7130 +2103 79727 0.5950 +2103 79923 0.9320 +2103 80312 0.5200 +2103 83881 0.4440 +2103 84891 0.4670 +2103 93649 0.4030 +2103 128209 0.4340 +2103 132625 0.7430 +2103 133522 0.4020 +2103 148979 0.4280 +2103 151871 0.5840 +2103 201456 0.5980 +2103 201516 0.4410 +2103 286676 0.4100 +2103 340168 0.4920 +2103 359787 0.6210 +2104 2551 0.4120 +2104 2834 0.4550 +2104 2852 0.6550 +2104 3054 0.5260 +2104 3091 0.5390 +2104 3142 0.4600 +2104 3283 0.4030 +2104 3320 0.5070 +2104 3376 0.4500 +2104 3658 0.4280 +2104 4208 0.4190 +2104 4861 0.5340 +2104 5087 0.4280 +2104 5166 0.4880 +2104 5449 0.6780 +2104 5465 0.5320 +2104 5467 0.4770 +2104 5469 0.5700 +2104 5530 0.4630 +2104 5629 0.4070 +2104 5698 0.4130 +2104 6541 0.9310 +2104 6667 0.4240 +2104 6720 0.5180 +2104 6910 0.4690 +2104 7019 0.4400 +2104 7088 0.8490 +2104 7399 0.5800 +2104 8204 0.8980 +2104 8431 0.8930 +2104 8521 0.4250 +2104 8648 0.9230 +2104 8850 0.4480 +2104 9464 0.4030 +2104 9611 0.7460 +2104 9612 0.9080 +2104 10190 0.5580 +2104 10891 0.9670 +2104 23414 0.4630 +2104 23426 0.4460 +2104 55122 0.4040 +2104 55629 0.9120 +2104 84808 0.4110 +2104 93649 0.5290 +2104 116444 0.4800 +2104 133522 0.9550 +2104 149951 0.4950 +2104 386617 0.4090 +2107 2197 0.9590 +2107 2935 0.9990 +2107 3190 0.4740 +2107 3308 0.6590 +2107 3312 0.5450 +2107 3313 0.5220 +2107 3320 0.5490 +2107 3326 0.4380 +2107 3646 0.4450 +2107 3692 0.5360 +2107 3735 0.4800 +2107 3837 0.5190 +2107 3840 0.4230 +2107 3921 0.9710 +2107 4116 0.5040 +2107 4141 0.5450 +2107 4677 0.4470 +2107 4686 0.5650 +2107 4733 0.5300 +2107 4736 0.9230 +2107 4831 0.5740 +2107 5036 0.9360 +2107 5093 0.4180 +2107 5094 0.4480 +2107 5201 0.4410 +2107 5204 0.4570 +2107 5289 0.4420 +2107 5431 0.4680 +2107 5515 0.6350 +2107 5518 0.4770 +2107 5584 0.6540 +2107 5682 0.5790 +2107 5683 0.5260 +2107 5684 0.6440 +2107 5685 0.5290 +2107 5686 0.6610 +2107 5687 0.5020 +2107 5688 0.5310 +2107 5707 0.4500 +2107 5708 0.5240 +2107 5710 0.4900 +2107 5717 0.4410 +2107 5718 0.4650 +2107 5868 0.5580 +2107 5901 0.4510 +2107 5911 0.5090 +2107 5976 0.9910 +2107 6059 0.9990 +2107 6122 0.9520 +2107 6123 0.6020 +2107 6124 0.9440 +2107 6125 0.9380 +2107 6128 0.9490 +2107 6129 0.9530 +2107 6130 0.9430 +2107 6132 0.9630 +2107 6133 0.9450 +2107 6135 0.9370 +2107 6136 0.9810 +2107 6137 0.9480 +2107 6138 0.9460 +2107 6139 0.9210 +2107 6141 0.9350 +2107 6142 0.9310 +2107 6143 0.9250 +2107 6144 0.9290 +2107 6146 0.9090 +2107 6147 0.9230 +2107 6152 0.9080 +2107 6154 0.9400 +2107 6155 0.9520 +2107 6156 0.9390 +2107 6157 0.9640 +2107 6158 0.9430 +2107 6159 0.9170 +2107 6160 0.9520 +2107 6161 0.9160 +2107 6164 0.9380 +2107 6165 0.9450 +2107 6166 0.9430 +2107 6167 0.9010 +2107 6168 0.9170 +2107 6169 0.9040 +2107 6170 0.9160 +2107 6171 0.6550 +2107 6173 0.9400 +2107 6175 0.9530 +2107 6176 0.5860 +2107 6181 0.7060 +2107 6187 0.9640 +2107 6188 0.9590 +2107 6189 0.9450 +2107 6191 0.9450 +2107 6192 0.9080 +2107 6193 0.9300 +2107 6194 0.9400 +2107 6201 0.9460 +2107 6202 0.9560 +2107 6203 0.9430 +2107 6204 0.9240 +2107 6205 0.9240 +2107 6206 0.9450 +2107 6207 0.9590 +2107 6208 0.9230 +2107 6209 0.9230 +2107 6210 0.9270 +2107 6217 0.9420 +2107 6218 0.9080 +2107 6222 0.9380 +2107 6223 0.9310 +2107 6224 0.9650 +2107 6227 0.9190 +2107 6228 0.9720 +2107 6229 0.9290 +2107 6230 0.9190 +2107 6231 0.9470 +2107 6232 0.9130 +2107 6233 0.9620 +2107 6234 0.9340 +2107 6235 0.9150 +2107 6414 0.4820 +2107 6424 0.4120 +2107 6499 0.4110 +2107 6950 0.5630 +2107 7203 0.4590 +2107 7311 0.8980 +2107 7336 0.4980 +2107 7411 0.4350 +2107 7458 0.6040 +2107 8260 0.5060 +2107 8293 0.4310 +2107 8562 0.4710 +2107 8607 0.5110 +2107 8661 0.7380 +2107 8662 0.8010 +2107 8663 0.5040 +2107 8665 0.5060 +2107 8666 0.6590 +2107 8668 0.8390 +2107 8669 0.7500 +2107 8678 0.5600 +2107 8721 0.4070 +2107 8833 0.4600 +2107 8891 0.5030 +2107 8892 0.4160 +2107 8894 0.7310 +2107 9045 0.9450 +2107 9063 0.4070 +2107 9097 0.4080 +2107 9147 0.4410 +2107 9188 0.4470 +2107 9255 0.4360 +2107 9343 0.5610 +2107 9349 0.9220 +2107 9604 0.4310 +2107 9669 0.6710 +2107 9689 0.5140 +2107 9704 0.4040 +2107 9775 0.6280 +2107 9782 0.4160 +2107 9790 0.4510 +2107 9817 0.7810 +2107 9887 0.5330 +2107 9939 0.6190 +2107 10061 0.4200 +2107 10146 0.5410 +2107 10189 0.4260 +2107 10209 0.6490 +2107 10213 0.5290 +2107 10236 0.4560 +2107 10399 0.9190 +2107 10480 0.5280 +2107 10492 0.6710 +2107 10525 0.5480 +2107 10528 0.4490 +2107 10574 0.5760 +2107 10575 0.6640 +2107 10576 0.6970 +2107 10605 0.4680 +2107 10694 0.7540 +2107 10726 0.5630 +2107 10767 0.9140 +2107 10785 0.4260 +2107 10856 0.4850 +2107 10952 0.8420 +2107 10987 0.4510 +2107 11224 0.9060 +2107 22916 0.4820 +2107 22948 0.6630 +2107 23049 0.9990 +2107 23160 0.4820 +2107 23293 0.5800 +2107 23381 0.5790 +2107 23432 0.4440 +2107 23517 0.4500 +2107 23521 0.9300 +2107 23560 0.8420 +2107 23567 0.6950 +2107 23603 0.5180 +2107 23708 0.9970 +2107 25873 0.9100 +2107 25885 0.6390 +2107 25914 0.4270 +2107 26019 0.8640 +2107 26046 0.4620 +2107 26354 0.4030 +2107 26986 0.7350 +2107 29104 0.8380 +2107 29789 0.4470 +2107 51065 0.5330 +2107 51121 0.9130 +2107 51128 0.4850 +2107 51154 0.4030 +2107 51388 0.5900 +2107 51409 0.6240 +2107 51493 0.6940 +2107 51504 0.8220 +2107 51520 0.5250 +2107 51602 0.4910 +2107 51605 0.4780 +2107 53918 0.5440 +2107 54464 0.5170 +2107 54552 0.4010 +2107 54931 0.4180 +2107 55110 0.4210 +2107 55181 0.9730 +2107 55239 0.5810 +2107 55299 0.4520 +2107 55345 0.5390 +2107 55629 0.5980 +2107 55651 0.4310 +2107 55703 0.4450 +2107 55802 0.6130 +2107 55854 0.6710 +2107 56006 0.9580 +2107 60487 0.5450 +2107 60678 0.6090 +2107 64221 0.5040 +2107 64374 0.5500 +2107 64425 0.4110 +2107 65109 0.6710 +2107 65110 0.8350 +2107 79711 0.4040 +2107 80218 0.6080 +2107 83743 0.4010 +2107 84154 0.6560 +2107 84172 0.5190 +2107 84549 0.6460 +2107 84916 0.4130 +2107 85476 0.5960 +2107 92399 0.6620 +2107 115098 0.8070 +2107 116832 0.6160 +2107 123591 0.4390 +2107 132243 0.4930 +2107 140032 0.5600 +2107 140801 0.9020 +2107 167227 0.4270 +2107 200916 0.5110 +2107 255308 0.4750 +2107 285855 0.4460 +2107 339487 0.7540 +2107 345630 0.4310 +2107 728689 0.4520 +2107 100526842 0.8050 +2107 100529239 0.8240 +2107 114483834 0.4270 +2108 2109 0.9990 +2108 2110 0.9990 +2108 2180 0.5150 +2108 2181 0.4600 +2108 2182 0.4620 +2108 2194 0.4380 +2108 2207 0.4680 +2108 2232 0.6520 +2108 2271 0.7340 +2108 2323 0.5120 +2108 2550 0.5430 +2108 2583 0.8710 +2108 2597 0.4710 +2108 2639 0.8650 +2108 2760 0.9310 +2108 2805 0.4270 +2108 2806 0.4090 +2108 2934 0.5080 +2108 2936 0.4590 +2108 3028 0.6430 +2108 3030 0.8190 +2108 3032 0.8290 +2108 3033 0.7910 +2108 3155 0.4020 +2108 3295 0.5450 +2108 3313 0.5200 +2108 3329 0.5330 +2108 3336 0.5590 +2108 3417 0.4580 +2108 3418 0.4840 +2108 3419 0.5990 +2108 3712 0.8720 +2108 4191 0.8470 +2108 4193 0.4350 +2108 4194 0.4390 +2108 4513 0.4690 +2108 4524 0.4250 +2108 4535 0.4210 +2108 4537 0.4530 +2108 4697 0.4260 +2108 4704 0.4770 +2108 4705 0.5320 +2108 4706 0.9160 +2108 4711 0.5840 +2108 4716 0.4240 +2108 4720 0.4080 +2108 4722 0.7430 +2108 4723 0.6140 +2108 4728 0.5970 +2108 4729 0.6670 +2108 4864 0.7860 +2108 4942 0.5030 +2108 5019 0.5190 +2108 5095 0.4520 +2108 5096 0.7220 +2108 5162 0.7280 +2108 5464 0.4300 +2108 5730 0.4240 +2108 5870 0.4770 +2108 6341 0.4260 +2108 6342 0.5520 +2108 6389 0.7060 +2108 6390 0.7510 +2108 6391 0.6410 +2108 6392 0.4970 +2108 6470 0.4380 +2108 6648 0.4120 +2108 6888 0.5120 +2108 7167 0.4470 +2108 7284 0.7340 +2108 7296 0.4200 +2108 7352 0.5520 +2108 7357 0.4730 +2108 7384 0.5690 +2108 7385 0.7570 +2108 7386 0.5820 +2108 7416 0.5550 +2108 8050 0.6380 +2108 8192 0.4830 +2108 8309 0.7830 +2108 8310 0.8380 +2108 8540 0.6410 +2108 8705 0.5050 +2108 8801 0.6370 +2108 8802 0.9560 +2108 8803 0.6990 +2108 8856 0.4700 +2108 9085 0.5140 +2108 9131 0.4890 +2108 9377 0.7440 +2108 9380 0.4720 +2108 9399 0.5480 +2108 9425 0.5230 +2108 9563 0.4270 +2108 9568 0.5710 +2108 9607 0.6930 +2108 9862 0.5230 +2108 9978 0.4180 +2108 10102 0.6180 +2108 10449 0.8580 +2108 10455 0.6770 +2108 10476 0.5850 +2108 10480 0.4270 +2108 10577 0.5160 +2108 10587 0.4090 +2108 10935 0.4540 +2108 10960 0.4070 +2108 11112 0.4820 +2108 11222 0.8950 +2108 11331 0.5220 +2108 11332 0.6430 +2108 22982 0.5230 +2108 23181 0.5230 +2108 23205 0.4330 +2108 23225 0.4130 +2108 23305 0.4650 +2108 23474 0.4150 +2108 23479 0.4640 +2108 23521 0.5240 +2108 23597 0.6740 +2108 25902 0.4200 +2108 25915 0.4880 +2108 26027 0.6720 +2108 26275 0.6500 +2108 27034 0.9020 +2108 27068 0.4330 +2108 27089 0.4180 +2108 28976 0.8650 +2108 28998 0.5400 +2108 29093 0.7180 +2108 29958 0.4130 +2108 51084 0.6000 +2108 51560 0.4490 +2108 51703 0.4930 +2108 54205 0.6790 +2108 54596 0.5340 +2108 54995 0.5390 +2108 55065 0.4740 +2108 55268 0.6120 +2108 55289 0.7510 +2108 55301 0.5230 +2108 55703 0.4080 +2108 55862 0.6220 +2108 56945 0.4180 +2108 57609 0.5270 +2108 64064 0.4090 +2108 64087 0.5800 +2108 64965 0.6070 +2108 79072 0.5040 +2108 79080 0.4750 +2108 79728 0.5180 +2108 79893 0.6250 +2108 80221 0.6070 +2108 80308 0.6270 +2108 81034 0.5030 +2108 81616 0.4320 +2108 83732 0.4320 +2108 84263 0.6960 +2108 85477 0.4910 +2108 112812 0.4390 +2108 114112 0.4050 +2108 123591 0.4270 +2108 124359 0.5140 +2108 130752 0.5170 +2108 132949 0.4200 +2108 134526 0.6260 +2108 140856 0.4440 +2108 144363 0.9410 +2108 150274 0.7680 +2108 157869 0.5230 +2108 197257 0.6440 +2108 197322 0.5310 +2108 253175 0.5140 +2108 254042 0.7320 +2108 283985 0.6080 +2108 284422 0.7510 +2108 376497 0.5460 +2108 414919 0.7770 +2108 109703458 0.4530 +2108 122405565 0.7510 +2109 2110 0.9990 +2109 2230 0.4020 +2109 2232 0.8440 +2109 2639 0.9000 +2109 3028 0.8600 +2109 3030 0.7900 +2109 3032 0.6960 +2109 3033 0.7870 +2109 3155 0.5430 +2109 3295 0.4280 +2109 3329 0.4900 +2109 3336 0.5740 +2109 3419 0.4720 +2109 3421 0.4070 +2109 3712 0.8790 +2109 3982 0.6560 +2109 4191 0.7540 +2109 4524 0.4220 +2109 4695 0.4560 +2109 4704 0.4220 +2109 4706 0.8070 +2109 4713 0.5570 +2109 4722 0.5860 +2109 4723 0.6690 +2109 4726 0.4320 +2109 4728 0.8660 +2109 4729 0.5180 +2109 5019 0.5070 +2109 5096 0.6210 +2109 5162 0.4720 +2109 5464 0.4250 +2109 5567 0.4190 +2109 5575 0.5440 +2109 6342 0.4680 +2109 6389 0.5370 +2109 6390 0.6360 +2109 6888 0.5900 +2109 7167 0.4640 +2109 7284 0.6940 +2109 7384 0.4570 +2109 7385 0.4140 +2109 7915 0.4860 +2109 8050 0.4020 +2109 8192 0.6030 +2109 8309 0.7400 +2109 8310 0.7480 +2109 8540 0.6370 +2109 8801 0.5060 +2109 8802 0.8980 +2109 8803 0.4950 +2109 9085 0.5590 +2109 9377 0.6120 +2109 9380 0.5610 +2109 9399 0.4680 +2109 9425 0.5590 +2109 9607 0.4380 +2109 10295 0.4730 +2109 10449 0.7380 +2109 10452 0.4980 +2109 10455 0.6160 +2109 10476 0.4170 +2109 10592 0.4110 +2109 10975 0.4320 +2109 10998 0.4070 +2109 11215 0.4710 +2109 11283 0.4030 +2109 11331 0.5360 +2109 11332 0.5540 +2109 23597 0.5310 +2109 26027 0.6030 +2109 26275 0.5810 +2109 27034 0.8180 +2109 27068 0.4280 +2109 27089 0.5040 +2109 27158 0.5840 +2109 28976 0.8460 +2109 51004 0.4010 +2109 51084 0.6690 +2109 54205 0.6660 +2109 54995 0.5390 +2109 55065 0.5160 +2109 55268 0.5710 +2109 55289 0.7380 +2109 55728 0.4130 +2109 55856 0.5490 +2109 55862 0.5990 +2109 57082 0.4330 +2109 64064 0.4220 +2109 64087 0.5120 +2109 79072 0.4740 +2109 79091 0.4490 +2109 79581 0.4160 +2109 79893 0.6340 +2109 80308 0.7420 +2109 81034 0.5060 +2109 81570 0.4170 +2109 84263 0.6420 +2109 90324 0.4380 +2109 92715 0.4090 +2109 112812 0.4090 +2109 113278 0.4470 +2109 124359 0.5590 +2109 134526 0.5270 +2109 137872 0.4430 +2109 144363 0.8300 +2109 150274 0.4130 +2109 151194 0.4750 +2109 163081 0.4720 +2109 197257 0.6370 +2109 253175 0.5590 +2109 254013 0.8460 +2109 254042 0.8880 +2109 283985 0.8140 +2109 284422 0.7380 +2109 414919 0.6490 +2109 122405565 0.7380 +2110 2180 0.4120 +2110 2271 0.4580 +2110 2639 0.7830 +2110 2820 0.4440 +2110 2936 0.5360 +2110 3030 0.7520 +2110 3032 0.9240 +2110 3033 0.6450 +2110 3155 0.6040 +2110 3295 0.4200 +2110 3712 0.7320 +2110 4508 0.4680 +2110 4512 0.4080 +2110 4514 0.4460 +2110 4519 0.4450 +2110 4524 0.4500 +2110 4698 0.4360 +2110 4704 0.4300 +2110 4715 0.4040 +2110 4720 0.6680 +2110 4723 0.4690 +2110 4728 0.5640 +2110 4729 0.7030 +2110 4967 0.5400 +2110 5019 0.4440 +2110 5095 0.4930 +2110 5096 0.5500 +2110 5498 0.5210 +2110 5625 0.5140 +2110 5664 0.6500 +2110 6342 0.4380 +2110 6389 0.6010 +2110 6390 0.6690 +2110 6391 0.4980 +2110 6392 0.4670 +2110 6584 0.5240 +2110 6821 0.4580 +2110 6834 0.4120 +2110 7352 0.4850 +2110 7384 0.4300 +2110 7385 0.4840 +2110 7386 0.6530 +2110 7915 0.4400 +2110 8309 0.4380 +2110 8310 0.4900 +2110 8802 0.6130 +2110 8803 0.5740 +2110 9054 0.4220 +2110 10229 0.5450 +2110 10449 0.8100 +2110 10455 0.5270 +2110 11019 0.5270 +2110 11343 0.4230 +2110 23240 0.4530 +2110 23474 0.4420 +2110 23479 0.4950 +2110 23590 0.7300 +2110 25974 0.4260 +2110 26275 0.4050 +2110 27034 0.6490 +2110 27235 0.6930 +2110 27236 0.4120 +2110 28976 0.7340 +2110 29958 0.5220 +2110 51004 0.6950 +2110 51084 0.4360 +2110 51103 0.4120 +2110 51117 0.6530 +2110 51805 0.6160 +2110 54511 0.4410 +2110 54840 0.5770 +2110 54902 0.4410 +2110 54927 0.4750 +2110 54951 0.4300 +2110 55065 0.6220 +2110 55163 0.4160 +2110 55289 0.4330 +2110 55349 0.4220 +2110 55526 0.4350 +2110 55753 0.4550 +2110 56922 0.4780 +2110 57017 0.8010 +2110 57107 0.7370 +2110 57484 0.4110 +2110 58472 0.4920 +2110 58510 0.4280 +2110 64087 0.4480 +2110 79581 0.5260 +2110 79934 0.4850 +2110 79944 0.5010 +2110 80224 0.4410 +2110 80308 0.7750 +2110 81034 0.6590 +2110 84263 0.7010 +2110 84274 0.6240 +2110 84693 0.4810 +2110 84869 0.4900 +2110 113278 0.5590 +2110 132299 0.4100 +2110 144363 0.6310 +2110 201798 0.4520 +2110 201895 0.4410 +2110 728294 0.4040 +2113 2114 0.9580 +2113 2130 0.6430 +2113 2158 0.4140 +2113 2247 0.4450 +2113 2263 0.4190 +2113 2308 0.9780 +2113 2313 0.6500 +2113 2321 0.4410 +2113 2353 0.7370 +2113 2551 0.5210 +2113 2597 0.4920 +2113 2623 0.8330 +2113 2624 0.7290 +2113 2625 0.9070 +2113 2626 0.4070 +2113 2672 0.5270 +2113 2975 0.4810 +2113 3065 0.4080 +2113 3091 0.5440 +2113 3145 0.4870 +2113 3169 0.4340 +2113 3195 0.4590 +2113 3202 0.5760 +2113 3315 0.4080 +2113 3344 0.7270 +2113 3386 0.4440 +2113 3394 0.4560 +2113 3397 0.7830 +2113 3398 0.4580 +2113 3458 0.4290 +2113 3553 0.4200 +2113 3569 0.4160 +2113 3575 0.5470 +2113 3659 0.4930 +2113 3662 0.5400 +2113 3675 0.4590 +2113 3702 0.4120 +2113 3725 0.8730 +2113 3726 0.4160 +2113 3727 0.4890 +2113 3791 0.4450 +2113 3815 0.4190 +2113 3845 0.4200 +2113 4005 0.6890 +2113 4087 0.6490 +2113 4088 0.8160 +2113 4089 0.6290 +2113 4094 0.5290 +2113 4208 0.4530 +2113 4211 0.5320 +2113 4286 0.5100 +2113 4288 0.4680 +2113 4312 0.4950 +2113 4313 0.4110 +2113 4314 0.7280 +2113 4318 0.5070 +2113 4343 0.4990 +2113 4602 0.5180 +2113 4609 0.6130 +2113 4684 0.4510 +2113 4763 0.5010 +2113 4773 0.6030 +2113 4780 0.4780 +2113 4783 0.4580 +2113 4790 0.7410 +2113 4791 0.9450 +2113 4798 0.5820 +2113 4851 0.4060 +2113 5054 0.5410 +2113 5076 0.4250 +2113 5077 0.6170 +2113 5079 0.9960 +2113 5295 0.5080 +2113 5328 0.4310 +2113 5339 0.4020 +2113 5449 0.6510 +2113 5594 0.9920 +2113 5595 0.9450 +2113 5598 0.4600 +2113 5605 0.4980 +2113 5728 0.4550 +2113 5788 0.4310 +2113 5813 0.5570 +2113 5966 0.6230 +2113 5971 0.4440 +2113 6095 0.5050 +2113 6097 0.5110 +2113 6196 0.4760 +2113 6391 0.4360 +2113 6469 0.5280 +2113 6591 0.5030 +2113 6595 0.4550 +2113 6615 0.5220 +2113 6662 0.4280 +2113 6663 0.4630 +2113 6667 0.5820 +2113 6670 0.5470 +2113 6672 0.4120 +2113 6688 0.4920 +2113 6714 0.5880 +2113 6721 0.4590 +2113 6722 0.9190 +2113 6734 0.4310 +2113 6772 0.6650 +2113 6773 0.4860 +2113 6774 0.6910 +2113 6775 0.4950 +2113 6776 0.6820 +2113 6777 0.8390 +2113 6778 0.5830 +2113 6886 0.7890 +2113 6908 0.5250 +2113 6909 0.4340 +2113 6925 0.4730 +2113 6929 0.4730 +2113 6932 0.4660 +2113 7019 0.4210 +2113 7040 0.4230 +2113 7048 0.4260 +2113 7070 0.6830 +2113 7076 0.5410 +2113 7124 0.4380 +2113 7128 0.4220 +2113 7157 0.9720 +2113 7291 0.4160 +2113 7391 0.5100 +2113 7528 0.5110 +2113 7593 0.4570 +2113 7852 0.4060 +2113 8085 0.4210 +2113 8092 0.5550 +2113 8202 0.6530 +2113 8320 0.4600 +2113 8328 0.4470 +2113 8648 0.4200 +2113 8815 0.4810 +2113 8850 0.4470 +2113 8861 0.5980 +2113 8878 0.4080 +2113 9079 0.5900 +2113 9314 0.4390 +2113 9592 0.4590 +2113 9611 0.6300 +2113 9839 0.5030 +2113 9935 0.8700 +2113 10320 0.7410 +2113 10365 0.4240 +2113 10428 0.7180 +2113 10538 0.4500 +2113 10664 0.4730 +2113 11278 0.5960 +2113 22806 0.4480 +2113 23112 0.5260 +2113 23476 0.6630 +2113 25988 0.4280 +2113 26523 0.5370 +2113 27022 0.4640 +2113 27327 0.5200 +2113 29844 0.4250 +2113 30009 0.8760 +2113 30012 0.4400 +2113 50943 0.4510 +2113 51176 0.7500 +2113 51278 0.4950 +2113 51341 0.4430 +2113 51430 0.4290 +2113 51567 0.5840 +2113 51588 0.5730 +2113 54997 0.5330 +2113 57178 0.4620 +2113 60468 0.6340 +2113 64326 0.4020 +2113 64919 0.4600 +2113 79718 0.4150 +2113 81033 0.5600 +2113 84515 0.6480 +2113 122953 0.4400 +2113 144455 0.4210 +2113 192669 0.4990 +2113 192670 0.4990 +2113 266740 0.4100 +2113 284312 0.4380 +2113 389136 0.4490 +2114 2118 0.4140 +2114 2305 0.4530 +2114 2353 0.8670 +2114 2355 0.6060 +2114 2623 0.7620 +2114 2624 0.4470 +2114 2625 0.7010 +2114 2908 0.4410 +2114 3091 0.4180 +2114 3150 0.5810 +2114 3169 0.5520 +2114 3397 0.9580 +2114 3659 0.4100 +2114 3725 0.7100 +2114 3726 0.4280 +2114 3727 0.5860 +2114 3763 0.4200 +2114 4170 0.5340 +2114 4318 0.4040 +2114 4343 0.4990 +2114 4609 0.4960 +2114 4763 0.4110 +2114 4776 0.4600 +2114 4790 0.5720 +2114 4791 0.4240 +2114 5046 0.4450 +2114 5079 0.4190 +2114 5121 0.6970 +2114 5296 0.4330 +2114 5316 0.4740 +2114 5460 0.5100 +2114 5594 0.9450 +2114 5595 0.9290 +2114 5728 0.4180 +2114 5894 0.4920 +2114 5966 0.5460 +2114 6304 0.4760 +2114 6597 0.6290 +2114 6598 0.4680 +2114 6688 0.6520 +2114 6714 0.6350 +2114 6722 0.8470 +2114 6910 0.4030 +2114 7015 0.5920 +2114 7022 0.4750 +2114 7074 0.4900 +2114 7157 0.9700 +2114 7161 0.4020 +2114 7291 0.4910 +2114 7490 0.4030 +2114 7584 0.4670 +2114 7593 0.4550 +2114 7753 0.4060 +2114 7994 0.5760 +2114 8202 0.6650 +2114 8320 0.5790 +2114 8558 0.9510 +2114 8648 0.4630 +2114 9314 0.4080 +2114 9611 0.6220 +2114 9935 0.4540 +2114 10771 0.5870 +2114 22809 0.4160 +2114 23112 0.5080 +2114 25803 0.4620 +2114 26523 0.5230 +2114 27327 0.4990 +2114 51222 0.4060 +2114 51567 0.5530 +2114 54997 0.5500 +2114 55070 0.6440 +2114 58494 0.4070 +2114 64326 0.6750 +2114 81033 0.5360 +2114 92002 0.5000 +2114 117581 0.4010 +2114 122953 0.4580 +2114 131096 0.4010 +2114 192669 0.5010 +2114 192670 0.5050 +2115 2130 0.8840 +2115 2314 0.4790 +2115 2521 0.7520 +2115 2805 0.6100 +2115 3169 0.5760 +2115 3181 0.5880 +2115 3249 0.4490 +2115 3670 0.4530 +2115 3725 0.5180 +2115 3780 0.5200 +2115 3782 0.5220 +2115 3783 0.4250 +2115 3815 0.7730 +2115 3817 0.5670 +2115 4211 0.4420 +2115 4212 0.4240 +2115 4267 0.6220 +2115 4312 0.4960 +2115 4477 0.4320 +2115 4609 0.4010 +2115 4656 0.4170 +2115 4760 0.5570 +2115 4824 0.4990 +2115 5080 0.5250 +2115 5156 0.4290 +2115 5453 0.4010 +2115 5595 0.4600 +2115 5728 0.4600 +2115 5816 0.4150 +2115 5924 0.4400 +2115 6096 0.5690 +2115 6662 0.5890 +2115 6670 0.4420 +2115 6690 0.4790 +2115 6716 0.4160 +2115 6886 0.4880 +2115 7015 0.4120 +2115 7025 0.4140 +2115 7113 0.9420 +2115 7157 0.6780 +2115 7482 0.4430 +2115 8013 0.4330 +2115 8148 0.5060 +2115 8202 0.6480 +2115 8405 0.6040 +2115 9252 0.4200 +2115 10499 0.4920 +2115 10716 0.4840 +2115 10772 0.4480 +2115 23314 0.4350 +2115 23316 0.5370 +2115 23598 0.6230 +2115 23600 0.5640 +2115 26468 0.4270 +2115 27232 0.4490 +2115 55070 0.8630 +2115 55079 0.4370 +2115 55959 0.4350 +2115 63973 0.4080 +2115 64326 0.9010 +2115 64641 0.4320 +2115 64919 0.4340 +2115 81848 0.4720 +2115 83931 0.8370 +2115 85414 0.8920 +2115 93986 0.4700 +2115 120237 0.4580 +2115 124583 0.4180 +2115 145282 0.5280 +2115 170825 0.4760 +2115 221833 0.4760 +2115 221895 0.5080 +2115 342371 0.4010 +2115 100288687 0.7890 +2116 2303 0.5490 +2116 2623 0.4180 +2116 2624 0.7340 +2116 3791 0.5940 +2116 4005 0.6090 +2116 4312 0.6000 +2116 5175 0.5120 +2116 6886 0.6330 +2116 7010 0.4810 +2116 9464 0.4370 +2116 25833 0.4100 +2116 54345 0.4600 +2116 55818 0.5480 +2116 57684 0.4370 +2116 58498 0.4600 +2116 64321 0.4960 +2116 83595 0.5250 +2116 161198 0.5020 +2117 2119 0.5380 +2117 2120 0.4380 +2117 2297 0.4120 +2117 2309 0.5730 +2117 2516 0.4530 +2117 3096 0.4080 +2117 3394 0.5060 +2117 4084 0.4720 +2117 4609 0.6810 +2117 8487 0.5440 +2117 10499 0.5580 +2117 10562 0.4200 +2117 10589 0.4530 +2117 11218 0.8180 +2117 22904 0.5120 +2117 50628 0.4970 +2118 2130 0.8210 +2118 2248 0.4470 +2118 2249 0.4310 +2118 2252 0.4110 +2118 2253 0.5090 +2118 2254 0.4080 +2118 2255 0.5110 +2118 2260 0.4670 +2118 2263 0.4570 +2118 2314 0.4720 +2118 2353 0.4080 +2118 2355 0.4730 +2118 2521 0.6000 +2118 2668 0.7190 +2118 3065 0.4650 +2118 3091 0.6810 +2118 3169 0.5230 +2118 3673 0.4240 +2118 3725 0.5800 +2118 3817 0.5240 +2118 4087 0.4070 +2118 4250 0.6910 +2118 4267 0.7340 +2118 4316 0.4010 +2118 4323 0.6140 +2118 4609 0.4340 +2118 4613 0.5160 +2118 4790 0.5460 +2118 4824 0.4010 +2118 4830 0.4340 +2118 5076 0.4310 +2118 5453 0.4490 +2118 5597 0.5580 +2118 5739 0.4240 +2118 6469 0.4250 +2118 6631 0.4010 +2118 6670 0.4670 +2118 6690 0.4090 +2118 6772 0.4710 +2118 6794 0.5650 +2118 7077 0.4800 +2118 7079 0.4510 +2118 7113 0.7820 +2118 7157 0.4370 +2118 7391 0.5620 +2118 7476 0.5670 +2118 7494 0.4220 +2118 7852 0.4430 +2118 8013 0.4640 +2118 8148 0.5080 +2118 8202 0.9630 +2118 8405 0.5420 +2118 8648 0.6000 +2118 8988 0.4550 +2118 9682 0.4710 +2118 10252 0.4910 +2118 10253 0.5630 +2118 23152 0.4630 +2118 23598 0.6230 +2118 55070 0.4160 +2118 55818 0.4480 +2118 57119 0.7140 +2118 63897 0.5290 +2118 64326 0.8520 +2118 81848 0.6380 +2118 81849 0.4260 +2118 84525 0.4730 +2118 85414 0.7560 +2118 124583 0.6260 +2118 221833 0.4820 +2118 342371 0.4550 +2118 100288687 0.5870 +2119 2247 0.4120 +2119 2252 0.4090 +2119 2253 0.4520 +2119 2255 0.4900 +2119 2260 0.4220 +2119 2263 0.4400 +2119 2355 0.4200 +2119 2668 0.7840 +2119 2674 0.6310 +2119 3164 0.4640 +2119 3169 0.5780 +2119 3400 0.5130 +2119 3725 0.5930 +2119 3975 0.5890 +2119 4160 0.4800 +2119 4323 0.6620 +2119 4601 0.4140 +2119 4772 0.4220 +2119 4929 0.4420 +2119 5076 0.4450 +2119 5453 0.4300 +2119 5460 0.4060 +2119 5781 0.4900 +2119 5979 0.4470 +2119 6662 0.4500 +2119 7021 0.4450 +2119 7113 0.7270 +2119 7704 0.6670 +2119 7849 0.4620 +2119 7852 0.5950 +2119 9682 0.4440 +2119 10252 0.5430 +2119 10253 0.5990 +2119 10477 0.5360 +2119 10736 0.4050 +2119 23017 0.5700 +2119 23152 0.5730 +2119 23788 0.5900 +2119 25970 0.5760 +2119 50674 0.4020 +2119 54345 0.4290 +2119 54937 0.4430 +2119 55070 0.9060 +2119 55818 0.4510 +2119 64326 0.9060 +2119 79047 0.6590 +2119 79068 0.4750 +2119 81848 0.6380 +2119 83931 0.8340 +2119 85414 0.8110 +2119 89866 0.6520 +2119 129787 0.6240 +2119 132789 0.6630 +2119 221833 0.4160 +2119 255877 0.7130 +2119 257194 0.6010 +2119 339345 0.5540 +2119 342371 0.6300 +2119 342977 0.4350 +2119 346673 0.4890 +2119 402381 0.5540 +2119 100288687 0.8610 +2119 100526761 0.4230 +2120 2122 0.6850 +2120 2130 0.5480 +2120 2146 0.6130 +2120 2260 0.4470 +2120 2296 0.5840 +2120 2309 0.4380 +2120 2313 0.4190 +2120 2322 0.7980 +2120 2623 0.5450 +2120 2624 0.6870 +2120 2625 0.4870 +2120 2803 0.5780 +2120 2804 0.5230 +2120 2842 0.7360 +2120 2885 0.6830 +2120 3195 0.5110 +2120 3205 0.5720 +2120 3265 0.7140 +2120 3394 0.6550 +2120 3417 0.7090 +2120 3418 0.6000 +2120 3575 0.4380 +2120 3659 0.5360 +2120 3660 0.4740 +2120 3716 0.4770 +2120 3717 0.8110 +2120 3718 0.5140 +2120 3727 0.4920 +2120 3791 0.5860 +2120 3815 0.5850 +2120 3845 0.8030 +2120 4000 0.4270 +2120 4005 0.5580 +2120 4040 0.5150 +2120 4041 0.4030 +2120 4066 0.4410 +2120 4067 0.4060 +2120 4209 0.6440 +2120 4297 0.7320 +2120 4298 0.5120 +2120 4299 0.7150 +2120 4300 0.5290 +2120 4311 0.4790 +2120 4330 0.6150 +2120 4609 0.5310 +2120 4629 0.4820 +2120 4763 0.5770 +2120 4781 0.4980 +2120 4851 0.5310 +2120 4869 0.7510 +2120 4893 0.8380 +2120 4914 0.6040 +2120 4915 0.4820 +2120 4928 0.6690 +2120 5079 0.7200 +2120 5087 0.7960 +2120 5155 0.4590 +2120 5156 0.6780 +2120 5159 0.8930 +2120 5187 0.4290 +2120 5264 0.4280 +2120 5290 0.7070 +2120 5295 0.7350 +2120 5324 0.4110 +2120 5396 0.4300 +2120 5728 0.4530 +2120 5781 0.5770 +2120 5885 0.4770 +2120 5896 0.4480 +2120 5914 0.5360 +2120 5966 0.4850 +2120 5979 0.5280 +2120 6098 0.5020 +2120 6427 0.6710 +2120 6654 0.6040 +2120 6711 0.5530 +2120 6731 0.5070 +2120 6776 0.7060 +2120 6777 0.7090 +2120 6886 0.5780 +2120 6929 0.5830 +2120 7080 0.4320 +2120 7157 0.5970 +2120 7170 0.5290 +2120 7187 0.4980 +2120 7307 0.6820 +2120 7329 0.5160 +2120 7341 0.5570 +2120 7403 0.4450 +2120 7441 0.4120 +2120 7490 0.6120 +2120 7750 0.6900 +2120 7994 0.5610 +2120 8021 0.6370 +2120 8028 0.5260 +2120 8030 0.6030 +2120 8233 0.6990 +2120 8243 0.4810 +2120 8328 0.4860 +2120 8563 0.7160 +2120 8651 0.5160 +2120 9126 0.4540 +2120 9321 0.7760 +2120 9404 0.4420 +2120 9475 0.4080 +2120 9611 0.7570 +2120 9612 0.4850 +2120 9656 0.4420 +2120 9846 0.6910 +2120 10019 0.5800 +2120 10320 0.8380 +2120 10735 0.6120 +2120 10782 0.5020 +2120 22795 0.4300 +2120 22852 0.6930 +2120 22978 0.4080 +2120 23085 0.4730 +2120 23189 0.5460 +2120 23305 0.7060 +2120 23373 0.4470 +2120 23476 0.5010 +2120 23512 0.4020 +2120 25836 0.4450 +2120 26040 0.6780 +2120 26233 0.4080 +2120 26511 0.8530 +2120 27436 0.6320 +2120 29072 0.4310 +2120 30012 0.4820 +2120 51428 0.5730 +2120 51513 0.9710 +2120 51621 0.4530 +2120 51703 0.4550 +2120 54790 0.7940 +2120 55107 0.4230 +2120 55294 0.4350 +2120 55500 0.4430 +2120 63035 0.5720 +2120 79718 0.5250 +2120 81608 0.5610 +2120 81669 0.4060 +2120 84159 0.4680 +2120 84295 0.7040 +2120 138151 0.4880 +2120 140688 0.4330 +2120 171017 0.6450 +2120 171023 0.8330 +2120 219285 0.4120 +2120 256646 0.4660 +2120 286530 0.6510 +2120 359948 0.5330 +2120 374569 0.5110 +2120 399687 0.7440 +2120 440193 0.4670 +2120 100288687 0.5760 +2120 102723407 0.5810 +2121 2735 0.6790 +2121 2736 0.6790 +2121 2737 0.6950 +2121 3549 0.4840 +2121 5727 0.4180 +2121 5744 0.4400 +2121 6608 0.9830 +2121 7289 0.5060 +2121 8100 0.4160 +2121 8481 0.4410 +2121 9231 0.4100 +2121 9742 0.4230 +2121 9786 0.5310 +2121 10786 0.4240 +2121 11127 0.5140 +2121 23288 0.7360 +2121 23322 0.5100 +2121 23432 0.4160 +2121 26160 0.4430 +2121 27065 0.6390 +2121 27152 0.4700 +2121 51626 0.4800 +2121 51684 0.7980 +2121 53407 0.4460 +2121 55764 0.5460 +2121 57539 0.5730 +2121 57560 0.5480 +2121 57728 0.5260 +2121 79659 0.8000 +2121 79809 0.4890 +2121 80724 0.4310 +2121 84455 0.7540 +2121 89891 0.4980 +2121 132884 0.9990 +2121 200894 0.4150 +2121 283450 0.4730 +2121 374654 0.5490 +2122 2146 0.6750 +2122 2321 0.4450 +2122 2322 0.4530 +2122 2353 0.4310 +2122 2623 0.6590 +2122 2624 0.6950 +2122 3065 0.9680 +2122 3066 0.9290 +2122 3148 0.4520 +2122 3205 0.4560 +2122 3562 0.4630 +2122 3674 0.4430 +2122 3725 0.7340 +2122 4005 0.5890 +2122 4087 0.4410 +2122 4088 0.8580 +2122 4089 0.4330 +2122 4154 0.4070 +2122 4211 0.6000 +2122 4297 0.5580 +2122 4298 0.4110 +2122 4300 0.5250 +2122 4617 0.4500 +2122 4629 0.6220 +2122 4763 0.4060 +2122 4869 0.4780 +2122 4928 0.4490 +2122 5087 0.4560 +2122 5468 0.5930 +2122 5469 0.4180 +2122 5599 0.9050 +2122 5601 0.9010 +2122 5914 0.4480 +2122 5928 0.8760 +2122 5931 0.7630 +2122 5978 0.4990 +2122 6015 0.7140 +2122 6045 0.5060 +2122 6146 0.8010 +2122 6184 0.6460 +2122 6498 0.5730 +2122 6591 0.5390 +2122 6615 0.5330 +2122 6657 0.4600 +2122 6839 0.7020 +2122 6886 0.5800 +2122 7101 0.5550 +2122 7157 0.6870 +2122 7248 0.4080 +2122 7849 0.5720 +2122 7913 0.4920 +2122 8021 0.4480 +2122 8028 0.4180 +2122 8356 0.5610 +2122 8467 0.4740 +2122 8535 0.5060 +2122 8726 0.5640 +2122 8841 0.5280 +2122 8850 0.8610 +2122 9020 0.4130 +2122 9112 0.6970 +2122 9219 0.5620 +2122 9555 0.4240 +2122 9759 0.4280 +2122 10014 0.5450 +2122 10398 0.4710 +2122 10919 0.5320 +2122 11167 0.4880 +2122 22955 0.5260 +2122 23028 0.5890 +2122 23186 0.5210 +2122 23414 0.6410 +2122 23466 0.5060 +2122 23512 0.7720 +2122 25803 0.5010 +2122 26040 0.6970 +2122 51297 0.6370 +2122 51441 0.4420 +2122 51564 0.5650 +2122 53615 0.6610 +2122 54567 0.5030 +2122 54815 0.5560 +2122 55294 0.4040 +2122 55504 0.5720 +2122 56978 0.4600 +2122 56981 0.4650 +2122 57167 0.5250 +2122 57332 0.5060 +2122 57459 0.5880 +2122 57504 0.4990 +2122 57592 0.4950 +2122 64324 0.4060 +2122 80012 0.5220 +2122 80204 0.4020 +2122 84232 0.5020 +2122 84733 0.5070 +2122 170712 0.6490 +2122 171023 0.4730 +2122 653604 0.5580 +2123 2124 0.9950 +2123 4763 0.8180 +2123 4974 0.8780 +2123 5048 0.4610 +2123 5552 0.5150 +2123 7531 0.4240 +2123 7805 0.4390 +2123 8477 0.4010 +2123 9595 0.4680 +2123 23512 0.5370 +2123 23643 0.5360 +2123 50808 0.6020 +2123 51379 0.6350 +2123 55352 0.5790 +2123 55803 0.7690 +2123 55813 0.5960 +2123 57105 0.4210 +2123 57120 0.4220 +2123 57413 0.4380 +2123 64092 0.4530 +2123 79736 0.6090 +2123 79915 0.5620 +2123 84282 0.8090 +2123 84440 0.5790 +2123 85462 0.6390 +2123 85464 0.5910 +2123 114659 0.5800 +2123 387264 0.4470 +2123 388559 0.4350 +2124 2207 0.4190 +2124 2533 0.5410 +2124 3059 0.5350 +2124 3071 0.5190 +2124 3559 0.4120 +2124 3561 0.4120 +2124 3587 0.5120 +2124 3683 0.4490 +2124 3689 0.5000 +2124 3937 0.6490 +2124 4033 0.4640 +2124 4332 0.5500 +2124 4689 0.4070 +2124 4763 0.7940 +2124 4974 0.8600 +2124 5341 0.4580 +2124 5552 0.4810 +2124 5788 0.6740 +2124 5880 0.4220 +2124 6039 0.4360 +2124 6503 0.4630 +2124 7305 0.4600 +2124 7805 0.7630 +2124 8477 0.4820 +2124 9473 0.4780 +2124 9535 0.5150 +2124 9595 0.7620 +2124 9938 0.5550 +2124 23052 0.4380 +2124 23512 0.5080 +2124 26191 0.4630 +2124 27128 0.4190 +2124 50808 0.6470 +2124 51379 0.6390 +2124 54440 0.5850 +2124 54518 0.4510 +2124 55352 0.6180 +2124 55803 0.7550 +2124 55813 0.5680 +2124 55843 0.5710 +2124 64092 0.5170 +2124 79736 0.5790 +2124 79915 0.6190 +2124 80342 0.4700 +2124 84282 0.8090 +2124 84440 0.5550 +2124 85462 0.6500 +2124 85464 0.6520 +2124 114659 0.5070 +2124 257106 0.4380 +2124 283897 0.4450 +2124 375316 0.4890 +2124 387264 0.4320 +2125 2312 0.7150 +2125 2620 0.6640 +2125 2803 0.7750 +2125 3190 0.4170 +2125 3562 0.4740 +2125 3691 0.4080 +2125 3713 0.8820 +2125 3728 0.8030 +2125 3815 0.6140 +2125 3848 0.4850 +2125 3856 0.5260 +2125 3858 0.5150 +2125 3861 0.4330 +2125 4014 0.8710 +2125 4117 0.7620 +2125 4810 0.4970 +2125 4904 0.4350 +2125 5094 0.4830 +2125 5266 0.7790 +2125 5296 0.4210 +2125 5317 0.8900 +2125 5318 0.6280 +2125 5339 0.6330 +2125 5341 0.4240 +2125 5411 0.5070 +2125 5493 0.9990 +2125 5880 0.4200 +2125 6098 0.4460 +2125 6698 0.6900 +2125 6699 0.8000 +2125 6700 0.5370 +2125 6701 0.5990 +2125 6703 0.5870 +2125 6704 0.5210 +2125 6705 0.5580 +2125 6706 0.5840 +2125 6707 0.6360 +2125 6776 0.4180 +2125 7051 0.8400 +2125 7062 0.6080 +2125 7409 0.4790 +2125 8502 0.5910 +2125 8661 0.7640 +2125 8796 0.4940 +2125 9046 0.5190 +2125 9333 0.5810 +2125 9610 0.4220 +2125 9883 0.6640 +2125 10000 0.4360 +2125 10320 0.5220 +2125 11187 0.7940 +2125 23254 0.4230 +2125 23581 0.5340 +2125 26239 0.5340 +2125 26499 0.4600 +2125 84518 0.4300 +2125 84648 0.5280 +2125 126638 0.6760 +2125 144568 0.7090 +2125 147409 0.6120 +2125 149018 0.6120 +2125 196374 0.4180 +2125 199834 0.4990 +2125 203328 0.4200 +2125 254910 0.5450 +2125 353131 0.5320 +2125 353132 0.5780 +2125 353133 0.5400 +2125 353134 0.5700 +2125 353135 0.5550 +2125 353137 0.5430 +2125 353139 0.5040 +2125 353140 0.5600 +2125 353141 0.5400 +2125 353142 0.5560 +2125 353143 0.5070 +2125 353144 0.5640 +2125 353145 0.5430 +2125 388698 0.4300 +2125 448835 0.5550 +2128 2624 0.4210 +2128 2902 0.5480 +2128 3170 0.4770 +2128 3200 0.4390 +2128 3209 0.4520 +2128 3239 0.4280 +2128 3670 0.7590 +2128 3975 0.7570 +2128 4326 0.4240 +2128 5076 0.4920 +2128 5862 0.5640 +2128 6469 0.4200 +2128 6911 0.4320 +2128 7733 0.5420 +2128 8022 0.5190 +2128 8405 0.6850 +2128 8646 0.4180 +2128 10215 0.4330 +2128 11112 0.4150 +2128 27023 0.4840 +2128 60506 0.4340 +2128 64843 0.6440 +2128 79927 0.4020 +2128 116443 0.4240 +2128 116444 0.4130 +2128 120237 0.4550 +2130 2140 0.4580 +2130 2146 0.5450 +2130 2185 0.6010 +2130 2308 0.5320 +2130 2313 0.9120 +2130 2314 0.8970 +2130 2521 0.9530 +2130 2547 0.5050 +2130 2597 0.5470 +2130 2733 0.4130 +2130 2735 0.4020 +2130 2948 0.4290 +2130 3065 0.4350 +2130 3066 0.6540 +2130 3164 0.4500 +2130 3178 0.9510 +2130 3181 0.8620 +2130 3182 0.4960 +2130 3183 0.8360 +2130 3184 0.6770 +2130 3185 0.6470 +2130 3187 0.8160 +2130 3189 0.4960 +2130 3190 0.7980 +2130 3191 0.6840 +2130 3192 0.6560 +2130 3276 0.6820 +2130 3479 0.4180 +2130 3480 0.5460 +2130 3486 0.6490 +2130 3608 0.6660 +2130 3725 0.5660 +2130 3815 0.4990 +2130 3842 0.7520 +2130 3845 0.4010 +2130 3855 0.4020 +2130 4063 0.4180 +2130 4089 0.4140 +2130 4137 0.6030 +2130 4145 0.4290 +2130 4150 0.8670 +2130 4154 0.5730 +2130 4193 0.5070 +2130 4267 0.9430 +2130 4286 0.6080 +2130 4297 0.4230 +2130 4343 0.4010 +2130 4585 0.4180 +2130 4598 0.4730 +2130 4609 0.5940 +2130 4613 0.5050 +2130 4654 0.4300 +2130 4656 0.5300 +2130 4670 0.9010 +2130 4684 0.4180 +2130 4744 0.4570 +2130 4773 0.4800 +2130 4790 0.5350 +2130 4821 0.6020 +2130 4841 0.7950 +2130 4869 0.5140 +2130 4904 0.9430 +2130 4914 0.5600 +2130 4928 0.4060 +2130 4929 0.4760 +2130 5077 0.5950 +2130 5081 0.6400 +2130 5087 0.6350 +2130 5090 0.5040 +2130 5093 0.5170 +2130 5094 0.4080 +2130 5324 0.5230 +2130 5432 0.4920 +2130 5434 0.5300 +2130 5436 0.6580 +2130 5460 0.7550 +2130 5725 0.6080 +2130 5914 0.4040 +2130 6294 0.5300 +2130 6311 0.5860 +2130 6421 0.8830 +2130 6426 0.7990 +2130 6427 0.8250 +2130 6428 0.7280 +2130 6430 0.6100 +2130 6431 0.4230 +2130 6432 0.6060 +2130 6434 0.6320 +2130 6597 0.7280 +2130 6598 0.6510 +2130 6599 0.5620 +2130 6601 0.5190 +2130 6606 0.5710 +2130 6625 0.6550 +2130 6626 0.5730 +2130 6628 0.4150 +2130 6631 0.9660 +2130 6632 0.5110 +2130 6633 0.6480 +2130 6634 0.6090 +2130 6635 0.5720 +2130 6636 0.5780 +2130 6637 0.5780 +2130 6647 0.4690 +2130 6657 0.5240 +2130 6663 0.4640 +2130 6667 0.4660 +2130 6670 0.5810 +2130 6741 0.5640 +2130 6756 0.6080 +2130 6757 0.6690 +2130 6760 0.5450 +2130 6855 0.6080 +2130 6908 0.7870 +2130 6938 0.7150 +2130 7030 0.5710 +2130 7048 0.5130 +2130 7072 0.6510 +2130 7073 0.5490 +2130 7088 0.4470 +2130 7113 0.6700 +2130 7157 0.8100 +2130 7158 0.4790 +2130 7187 0.4430 +2130 7307 0.6740 +2130 7415 0.6500 +2130 7458 0.6510 +2130 7490 0.8880 +2130 7514 0.5480 +2130 7520 0.5280 +2130 7536 0.7560 +2130 7756 0.4670 +2130 7919 0.6130 +2130 7994 0.4110 +2130 8013 0.9000 +2130 8087 0.6070 +2130 8106 0.4490 +2130 8148 0.7490 +2130 8209 0.5220 +2130 8241 0.4130 +2130 8289 0.6060 +2130 8570 0.7070 +2130 8607 0.4510 +2130 8683 0.4950 +2130 8815 0.5660 +2130 8832 0.4370 +2130 8880 0.4920 +2130 9040 0.4330 +2130 9129 0.5190 +2130 9295 0.4280 +2130 9343 0.4530 +2130 9444 0.5430 +2130 9513 0.6570 +2130 9584 0.4400 +2130 9656 0.5070 +2130 9774 0.4590 +2130 9775 0.5070 +2130 9782 0.7670 +2130 9939 0.4440 +2130 9967 0.5490 +2130 9985 0.4450 +2130 9987 0.7770 +2130 10146 0.4320 +2130 10189 0.6160 +2130 10236 0.7860 +2130 10250 0.4100 +2130 10270 0.4390 +2130 10342 0.5750 +2130 10428 0.5380 +2130 10432 0.6380 +2130 10492 0.5820 +2130 10521 0.8240 +2130 10524 0.4050 +2130 10633 0.7530 +2130 10634 0.6840 +2130 10657 0.7370 +2130 10658 0.4880 +2130 10735 0.5080 +2130 10772 0.7520 +2130 10869 0.4350 +2130 10949 0.4920 +2130 10992 0.6550 +2130 11051 0.5030 +2130 11052 0.5980 +2130 11060 0.4330 +2130 11100 0.7080 +2130 11171 0.5660 +2130 11338 0.6230 +2130 23020 0.5070 +2130 23028 0.8270 +2130 23064 0.4230 +2130 23152 0.4040 +2130 23264 0.4540 +2130 23369 0.4700 +2130 23373 0.5050 +2130 23405 0.5190 +2130 23435 0.9200 +2130 23450 0.4530 +2130 23451 0.5260 +2130 23476 0.4060 +2130 23598 0.8800 +2130 25940 0.5660 +2130 26003 0.4160 +2130 26039 0.4130 +2130 26097 0.5390 +2130 26135 0.4350 +2130 27316 0.6020 +2130 27336 0.5450 +2130 27436 0.5330 +2130 29102 0.8660 +2130 29115 0.4260 +2130 29117 0.4090 +2130 29896 0.4500 +2130 29978 0.4490 +2130 30827 0.5810 +2130 51574 0.4190 +2130 51593 0.5510 +2130 51710 0.5080 +2130 51755 0.4600 +2130 51806 0.4350 +2130 54487 0.5410 +2130 55107 0.4410 +2130 55311 0.7830 +2130 56259 0.5100 +2130 56341 0.7050 +2130 57167 0.4600 +2130 57178 0.4040 +2130 64764 0.4800 +2130 64784 0.4170 +2130 79058 0.4510 +2130 84324 0.4180 +2130 84844 0.4140 +2130 84955 0.6240 +2130 85414 0.4320 +2130 85417 0.6430 +2130 90993 0.5410 +2130 91860 0.4260 +2130 117157 0.6900 +2130 163688 0.4260 +2130 170506 0.6180 +2130 171017 0.4610 +2130 203228 0.5390 +2130 220988 0.7600 +2130 221092 0.5460 +2130 256646 0.5300 +2130 284695 0.4510 +2130 415116 0.5100 +2130 727837 0.4480 +2130 100288687 0.6650 +2131 2132 0.9990 +2131 2135 0.6640 +2131 2137 0.5140 +2131 2239 0.6480 +2131 2255 0.4060 +2131 2262 0.6250 +2131 2650 0.4870 +2131 2683 0.4060 +2131 2719 0.6360 +2131 2817 0.7640 +2131 3037 0.4140 +2131 3339 0.7560 +2131 3340 0.8860 +2131 3549 0.7580 +2131 4745 0.5450 +2131 5727 0.4210 +2131 5744 0.5970 +2131 5885 0.4820 +2131 5979 0.4800 +2131 6382 0.7110 +2131 6383 0.7150 +2131 6385 0.6990 +2131 6484 0.4430 +2131 7227 0.9310 +2131 7869 0.4340 +2131 8509 0.7570 +2131 8667 0.4640 +2131 9348 0.5850 +2131 9394 0.6770 +2131 9469 0.4170 +2131 9653 0.8130 +2131 9672 0.6750 +2131 9917 0.5400 +2131 9951 0.4030 +2131 9953 0.4280 +2131 9955 0.4390 +2131 9956 0.4880 +2131 9957 0.6620 +2131 10082 0.6520 +2131 10090 0.5910 +2131 10131 0.7820 +2131 10855 0.4480 +2131 11285 0.6640 +2131 22856 0.5600 +2131 22925 0.5830 +2131 23213 0.5940 +2131 26035 0.7030 +2131 26229 0.6520 +2131 51363 0.4030 +2131 54480 0.4660 +2131 55454 0.4880 +2131 55624 0.4700 +2131 55790 0.5270 +2131 55959 0.5690 +2131 64131 0.5740 +2131 64132 0.5680 +2131 64579 0.5750 +2131 64711 0.5130 +2131 79586 0.5540 +2131 79695 0.4810 +2131 80146 0.4870 +2131 84294 0.4820 +2131 90161 0.5810 +2131 90390 0.5120 +2131 114788 0.7100 +2131 126792 0.5760 +2131 221914 0.6100 +2131 221981 0.7160 +2131 222537 0.5210 +2131 266722 0.4140 +2131 347734 0.5600 +2131 375790 0.6640 +2131 401474 0.4160 +2132 2137 0.4210 +2132 2239 0.6160 +2132 2262 0.6020 +2132 2650 0.4700 +2132 2719 0.6270 +2132 2817 0.7020 +2132 3087 0.7830 +2132 3339 0.6800 +2132 3340 0.9460 +2132 3549 0.5220 +2132 3832 0.6570 +2132 4745 0.5510 +2132 5979 0.4100 +2132 6382 0.6430 +2132 6383 0.6330 +2132 6385 0.6160 +2132 6484 0.4090 +2132 6934 0.6150 +2132 7080 0.4700 +2132 7227 0.4910 +2132 7358 0.4190 +2132 8509 0.7570 +2132 9348 0.5810 +2132 9394 0.6180 +2132 9653 0.7830 +2132 9672 0.5990 +2132 9917 0.5540 +2132 9956 0.4580 +2132 9957 0.6140 +2132 10082 0.5940 +2132 10090 0.5580 +2132 10131 0.7600 +2132 10855 0.4350 +2132 11227 0.4900 +2132 11285 0.6820 +2132 22856 0.5180 +2132 22925 0.5800 +2132 23213 0.5430 +2132 26035 0.6380 +2132 26229 0.6590 +2132 27130 0.4100 +2132 50515 0.4020 +2132 51447 0.6000 +2132 54480 0.4990 +2132 54901 0.4790 +2132 55454 0.5080 +2132 55624 0.4490 +2132 55790 0.4770 +2132 55959 0.5770 +2132 60312 0.4030 +2132 60529 0.9120 +2132 64131 0.5930 +2132 64132 0.5980 +2132 64579 0.5800 +2132 64711 0.4570 +2132 79188 0.4440 +2132 79586 0.5060 +2132 79695 0.4090 +2132 80146 0.6060 +2132 80824 0.6770 +2132 83548 0.4780 +2132 84680 0.8730 +2132 90161 0.4890 +2132 92370 0.4830 +2132 126792 0.5880 +2132 133688 0.7200 +2132 167127 0.5400 +2132 169026 0.7690 +2132 199857 0.5400 +2132 221830 0.7480 +2132 221914 0.5990 +2132 221981 0.6100 +2132 222537 0.4420 +2132 266722 0.4440 +2132 347734 0.7430 +2132 375790 0.5470 +2132 390110 0.8180 +2134 2135 0.4750 +2134 2137 0.9430 +2134 2583 0.4030 +2134 3340 0.6130 +2134 7494 0.7740 +2134 8509 0.6240 +2134 8534 0.4500 +2134 9348 0.6560 +2134 9394 0.5660 +2134 9653 0.6100 +2134 9917 0.4780 +2134 9953 0.4470 +2134 9955 0.4040 +2134 9957 0.5280 +2134 10090 0.4100 +2134 10131 0.7220 +2134 11285 0.5650 +2134 22856 0.5600 +2134 26035 0.6390 +2134 26229 0.5260 +2134 54480 0.5190 +2134 55454 0.4140 +2134 55790 0.5530 +2134 64131 0.5430 +2134 64132 0.4620 +2134 64579 0.5590 +2134 64711 0.4670 +2134 79586 0.5130 +2134 126792 0.4580 +2134 222537 0.4400 +2134 266722 0.5150 +2135 2137 0.9300 +2135 3340 0.5890 +2135 7494 0.7500 +2135 8509 0.5970 +2135 9348 0.5660 +2135 9394 0.4800 +2135 9653 0.6440 +2135 9917 0.7020 +2135 9953 0.4570 +2135 9956 0.4400 +2135 9957 0.4750 +2135 10052 0.6310 +2135 10090 0.4310 +2135 11285 0.6210 +2135 22856 0.5430 +2135 26035 0.5880 +2135 26229 0.5920 +2135 29940 0.4170 +2135 51363 0.4610 +2135 54480 0.4180 +2135 55454 0.6610 +2135 55501 0.4450 +2135 55790 0.5970 +2135 56548 0.4650 +2135 64131 0.6680 +2135 64132 0.6530 +2135 64579 0.5640 +2135 64711 0.5000 +2135 79586 0.5150 +2135 92370 0.5840 +2135 113189 0.4770 +2135 126792 0.5960 +2135 138050 0.5140 +2135 166012 0.4120 +2135 347734 0.4150 +2135 388849 0.5780 +2137 2817 0.4290 +2137 3340 0.8730 +2137 4245 0.4100 +2137 4247 0.5630 +2137 5068 0.6530 +2137 5967 0.6390 +2137 7358 0.5010 +2137 7494 0.7500 +2137 8509 0.6140 +2137 9348 0.5900 +2137 9394 0.5920 +2137 9469 0.4230 +2137 9653 0.6980 +2137 9898 0.4410 +2137 9917 0.6110 +2137 9953 0.4170 +2137 9956 0.4070 +2137 9957 0.5790 +2137 10090 0.4860 +2137 10131 0.7200 +2137 11285 0.6880 +2137 22856 0.6190 +2137 23037 0.4070 +2137 23213 0.4220 +2137 23276 0.4660 +2137 26035 0.6220 +2137 26229 0.7740 +2137 51146 0.4530 +2137 51363 0.4020 +2137 54480 0.5190 +2137 55454 0.5750 +2137 55790 0.5900 +2137 55959 0.4220 +2137 56342 0.4250 +2137 64131 0.6490 +2137 64132 0.7210 +2137 64579 0.5650 +2137 64711 0.5010 +2137 79586 0.5670 +2137 80146 0.5920 +2137 80149 0.4990 +2137 83998 0.4840 +2137 90161 0.4870 +2137 92370 0.4420 +2137 113189 0.4250 +2137 126792 0.6260 +2137 138050 0.4170 +2137 153090 0.4170 +2137 166012 0.4170 +2137 222537 0.5030 +2137 266722 0.4860 +2137 347734 0.7040 +2138 2139 0.5380 +2138 2140 0.5430 +2138 2146 0.5270 +2138 2248 0.4020 +2138 2253 0.5060 +2138 2268 0.4080 +2138 2296 0.4090 +2138 2297 0.5540 +2138 2299 0.5100 +2138 2301 0.4920 +2138 2625 0.6300 +2138 2668 0.5450 +2138 2706 0.4380 +2138 2932 0.4040 +2138 3014 0.8050 +2138 3017 0.5080 +2138 3018 0.4990 +2138 3195 0.9480 +2138 3200 0.5230 +2138 3207 0.6710 +2138 3227 0.5570 +2138 3237 0.4980 +2138 3670 0.4540 +2138 3975 0.5500 +2138 4211 0.7150 +2138 4222 0.5030 +2138 4361 0.5070 +2138 4435 0.6340 +2138 4487 0.4240 +2138 4609 0.7750 +2138 4613 0.5560 +2138 4617 0.6980 +2138 4647 0.4790 +2138 4654 0.6280 +2138 4656 0.6630 +2138 4683 0.4990 +2138 4715 0.7630 +2138 4760 0.4870 +2138 4762 0.5730 +2138 4928 0.5020 +2138 4990 0.7190 +2138 5075 0.7690 +2138 5076 0.8720 +2138 5077 0.8600 +2138 5080 0.5470 +2138 5081 0.4440 +2138 5083 0.5030 +2138 5087 0.6140 +2138 5172 0.4510 +2138 5308 0.4130 +2138 5309 0.4630 +2138 5456 0.4520 +2138 5459 0.5350 +2138 5780 0.6020 +2138 5927 0.5550 +2138 6092 0.4050 +2138 6261 0.4070 +2138 6299 0.8390 +2138 6469 0.4800 +2138 6495 0.9970 +2138 6496 0.6410 +2138 6657 0.5310 +2138 6658 0.4440 +2138 6662 0.4060 +2138 6663 0.4110 +2138 6949 0.4950 +2138 7140 0.4270 +2138 7341 0.4850 +2138 7484 0.5190 +2138 7490 0.5350 +2138 7849 0.6530 +2138 8290 0.5930 +2138 8340 0.4990 +2138 8341 0.5020 +2138 8342 0.4990 +2138 8345 0.4990 +2138 8347 0.4990 +2138 8348 0.4990 +2138 8349 0.5640 +2138 8361 0.5090 +2138 8456 0.4520 +2138 8970 0.5010 +2138 9247 0.4150 +2138 9381 0.4030 +2138 9656 0.6300 +2138 10087 0.5500 +2138 10111 0.4990 +2138 10482 0.4240 +2138 10524 0.5270 +2138 10736 0.9720 +2138 23499 0.4220 +2138 29895 0.4640 +2138 50488 0.4020 +2138 51804 0.8820 +2138 54145 0.4990 +2138 54361 0.4820 +2138 55294 0.5750 +2138 79142 0.5730 +2138 80144 0.4450 +2138 85236 0.4990 +2138 117154 0.5860 +2138 128312 0.5000 +2138 147912 0.9420 +2138 255626 0.4990 +2138 647589 0.4130 +2139 2140 0.5630 +2139 2268 0.5070 +2139 3014 0.5940 +2139 3017 0.4990 +2139 3018 0.4990 +2139 4222 0.7510 +2139 4223 0.5650 +2139 4361 0.5070 +2139 4654 0.6850 +2139 4656 0.7610 +2139 4683 0.5020 +2139 4990 0.7250 +2139 5076 0.4110 +2139 5077 0.8770 +2139 5080 0.4820 +2139 5081 0.6650 +2139 5308 0.4200 +2139 6299 0.5120 +2139 6495 0.9960 +2139 6496 0.5950 +2139 6591 0.4560 +2139 6663 0.5270 +2139 6714 0.4310 +2139 8200 0.4050 +2139 8290 0.5530 +2139 8340 0.4990 +2139 8341 0.4990 +2139 8342 0.4990 +2139 8345 0.4990 +2139 8347 0.4990 +2139 8348 0.4990 +2139 8349 0.4990 +2139 8361 0.4990 +2139 8970 0.4990 +2139 9656 0.5640 +2139 9904 0.4210 +2139 10111 0.4990 +2139 10524 0.5080 +2139 10736 0.9400 +2139 51804 0.9460 +2139 54145 0.4990 +2139 64102 0.4120 +2139 85236 0.4990 +2139 117154 0.8000 +2139 128312 0.4990 +2139 147912 0.6960 +2139 255626 0.4990 +2139 344167 0.4150 +2139 414301 0.4220 +2139 647589 0.4130 +2140 2268 0.5650 +2140 3014 0.8080 +2140 3017 0.4990 +2140 3018 0.5010 +2140 4361 0.5300 +2140 4656 0.4700 +2140 4683 0.5380 +2140 4990 0.6620 +2140 5077 0.5530 +2140 5080 0.5200 +2140 5520 0.5860 +2140 6495 0.9060 +2140 6496 0.5240 +2140 7008 0.4850 +2140 7252 0.6920 +2140 7253 0.4640 +2140 8290 0.5260 +2140 8318 0.4070 +2140 8340 0.5030 +2140 8341 0.5000 +2140 8342 0.5090 +2140 8345 0.4990 +2140 8347 0.4990 +2140 8348 0.5040 +2140 8349 0.5140 +2140 8361 0.5500 +2140 8970 0.4990 +2140 9031 0.4610 +2140 9338 0.4610 +2140 9656 0.6620 +2140 10111 0.5030 +2140 10194 0.4510 +2140 10524 0.5060 +2140 10736 0.8810 +2140 10750 0.4750 +2140 29843 0.4330 +2140 51804 0.7540 +2140 54145 0.4990 +2140 54793 0.4340 +2140 80774 0.4830 +2140 85236 0.4990 +2140 117154 0.5300 +2140 128312 0.4990 +2140 147912 0.8330 +2140 221391 0.4020 +2140 255626 0.4990 +2140 392509 0.4250 +2140 647589 0.4130 +2145 2146 0.9990 +2145 2626 0.4750 +2145 3021 0.7180 +2145 3065 0.5310 +2145 3066 0.9430 +2145 3213 0.6180 +2145 3619 0.4060 +2145 3720 0.9980 +2145 5252 0.9400 +2145 5351 0.6620 +2145 5352 0.6620 +2145 5927 0.4160 +2145 5928 0.9990 +2145 5929 0.6710 +2145 5931 0.9990 +2145 6015 0.9780 +2145 6045 0.9740 +2145 6233 0.4430 +2145 6594 0.4790 +2145 6597 0.6480 +2145 7161 0.5560 +2145 7311 0.4340 +2145 7403 0.7800 +2145 7404 0.4730 +2145 7528 0.7600 +2145 7629 0.5580 +2145 7702 0.5010 +2145 7703 0.9550 +2145 8242 0.4500 +2145 8290 0.7190 +2145 8314 0.9070 +2145 8337 0.4450 +2145 8338 0.4450 +2145 8351 0.4220 +2145 8352 0.4070 +2145 8353 0.4120 +2145 8356 0.7200 +2145 8467 0.4620 +2145 8535 0.9630 +2145 8726 0.9990 +2145 8900 0.4250 +2145 8985 0.6620 +2145 9070 0.6550 +2145 9113 0.5190 +2145 9252 0.4700 +2145 9682 0.6200 +2145 9869 0.5160 +2145 9898 0.9060 +2145 10138 0.5290 +2145 10336 0.9400 +2145 10389 0.9300 +2145 10413 0.5890 +2145 10419 0.4860 +2145 10765 0.4740 +2145 10951 0.5020 +2145 11083 0.4220 +2145 11091 0.6070 +2145 11186 0.5480 +2145 11329 0.4590 +2145 22823 0.9650 +2145 22955 0.5320 +2145 22974 0.4650 +2145 22992 0.4420 +2145 23012 0.4360 +2145 23028 0.4510 +2145 23135 0.7100 +2145 23429 0.5270 +2145 23466 0.9450 +2145 23492 0.9520 +2145 23512 0.9990 +2145 26147 0.9710 +2145 26578 0.4010 +2145 27113 0.4270 +2145 29947 0.4900 +2145 30827 0.4090 +2145 51111 0.5210 +2145 54799 0.4180 +2145 55252 0.6510 +2145 56950 0.4330 +2145 57332 0.9590 +2145 64112 0.6480 +2145 79823 0.7680 +2145 80012 0.9190 +2145 80816 0.5920 +2145 80854 0.4300 +2145 83593 0.4240 +2145 83746 0.4880 +2145 84108 0.9420 +2145 84271 0.5130 +2145 84333 0.9430 +2145 84444 0.5370 +2145 84458 0.8390 +2145 84661 0.6260 +2145 84678 0.5830 +2145 84733 0.9510 +2145 84759 0.9530 +2145 84787 0.4820 +2145 84942 0.5070 +2145 121536 0.9990 +2145 132625 0.6590 +2145 171023 0.9240 +2145 196528 0.4760 +2145 340602 0.4650 +2145 387640 0.4150 +2145 404281 0.6630 +2145 440093 0.7180 +2145 440686 0.7180 +2145 653604 0.7180 +2145 100170841 0.9140 +2145 100532731 0.7030 +2146 2175 0.4040 +2146 2186 0.4300 +2146 2203 0.4270 +2146 2237 0.4430 +2146 2260 0.4800 +2146 2261 0.4730 +2146 2263 0.4530 +2146 2289 0.4420 +2146 2294 0.5300 +2146 2296 0.4230 +2146 2305 0.7780 +2146 2308 0.5080 +2146 2309 0.4500 +2146 2322 0.6310 +2146 2335 0.4100 +2146 2353 0.5670 +2146 2475 0.4940 +2146 2597 0.6550 +2146 2623 0.5070 +2146 2624 0.6080 +2146 2625 0.6720 +2146 2626 0.7480 +2146 2627 0.4460 +2146 2648 0.5050 +2146 2672 0.6470 +2146 2735 0.4490 +2146 2767 0.4850 +2146 2776 0.4080 +2146 2778 0.5060 +2146 2874 0.4750 +2146 2932 0.4850 +2146 2956 0.4440 +2146 2975 0.4770 +2146 3005 0.5610 +2146 3012 0.9560 +2146 3013 0.5610 +2146 3014 0.8280 +2146 3015 0.7840 +2146 3017 0.6560 +2146 3018 0.6480 +2146 3020 0.5930 +2146 3021 0.9900 +2146 3065 0.9990 +2146 3066 0.9990 +2146 3070 0.5810 +2146 3090 0.5400 +2146 3091 0.7150 +2146 3142 0.5510 +2146 3159 0.5630 +2146 3161 0.4930 +2146 3169 0.4920 +2146 3172 0.5550 +2146 3176 0.6470 +2146 3190 0.7970 +2146 3198 0.5170 +2146 3202 0.4230 +2146 3205 0.5660 +2146 3206 0.5640 +2146 3207 0.5680 +2146 3211 0.6270 +2146 3213 0.7110 +2146 3217 0.4010 +2146 3219 0.5070 +2146 3233 0.4340 +2146 3236 0.4110 +2146 3265 0.5360 +2146 3276 0.7810 +2146 3320 0.7140 +2146 3326 0.6070 +2146 3417 0.7210 +2146 3418 0.7080 +2146 3458 0.5230 +2146 3480 0.5050 +2146 3481 0.4500 +2146 3516 0.4320 +2146 3552 0.4320 +2146 3553 0.5230 +2146 3569 0.6660 +2146 3574 0.5500 +2146 3608 0.5540 +2146 3630 0.4130 +2146 3662 0.5030 +2146 3716 0.4860 +2146 3717 0.7680 +2146 3718 0.5480 +2146 3720 0.9990 +2146 3725 0.8520 +2146 3784 0.4330 +2146 3791 0.4150 +2146 3815 0.5900 +2146 3832 0.5800 +2146 3838 0.4110 +2146 3845 0.6730 +2146 3925 0.4380 +2146 4001 0.5040 +2146 4072 0.4270 +2146 4085 0.4740 +2146 4087 0.5660 +2146 4088 0.6310 +2146 4089 0.6210 +2146 4149 0.4020 +2146 4150 0.5160 +2146 4170 0.4880 +2146 4171 0.4730 +2146 4172 0.4500 +2146 4174 0.4400 +2146 4175 0.4510 +2146 4176 0.6600 +2146 4193 0.9450 +2146 4194 0.5230 +2146 4204 0.7320 +2146 4211 0.7030 +2146 4233 0.4720 +2146 4255 0.4160 +2146 4288 0.6190 +2146 4292 0.5140 +2146 4297 0.4380 +2146 4299 0.4390 +2146 4300 0.5430 +2146 4313 0.4430 +2146 4318 0.6730 +2146 4343 0.5550 +2146 4436 0.4090 +2146 4591 0.4370 +2146 4594 0.4930 +2146 4605 0.5680 +2146 4609 0.9840 +2146 4613 0.9520 +2146 4654 0.5950 +2146 4656 0.4580 +2146 4751 0.5960 +2146 4763 0.5820 +2146 4783 0.4470 +2146 4790 0.6950 +2146 4824 0.4220 +2146 4841 0.4330 +2146 4851 0.6550 +2146 4853 0.4680 +2146 4869 0.6610 +2146 4893 0.8110 +2146 4904 0.5570 +2146 4928 0.4170 +2146 4968 0.4230 +2146 5077 0.4460 +2146 5079 0.4940 +2146 5080 0.6900 +2146 5081 0.4460 +2146 5087 0.6400 +2146 5111 0.4190 +2146 5156 0.5170 +2146 5167 0.4340 +2146 5241 0.4320 +2146 5252 0.9980 +2146 5290 0.5230 +2146 5316 0.5410 +2146 5347 0.5080 +2146 5351 0.6730 +2146 5352 0.6810 +2146 5371 0.7410 +2146 5426 0.4050 +2146 5431 0.5860 +2146 5432 0.6130 +2146 5433 0.5780 +2146 5434 0.5620 +2146 5435 0.5850 +2146 5436 0.5750 +2146 5437 0.5530 +2146 5438 0.5490 +2146 5439 0.5370 +2146 5440 0.5460 +2146 5441 0.5290 +2146 5454 0.4090 +2146 5455 0.8600 +2146 5460 0.7360 +2146 5468 0.7780 +2146 5511 0.6580 +2146 5595 0.4660 +2146 5604 0.4110 +2146 5684 0.4390 +2146 5728 0.7600 +2146 5729 0.8170 +2146 5781 0.5800 +2146 5788 0.4190 +2146 5885 0.5850 +2146 5888 0.5660 +2146 5914 0.8660 +2146 5915 0.6480 +2146 5916 0.5850 +2146 5925 0.8610 +2146 5927 0.8290 +2146 5928 0.9990 +2146 5929 0.8760 +2146 5931 0.9990 +2146 5934 0.5690 +2146 5970 0.9150 +2146 5971 0.8010 +2146 5978 0.7210 +2146 5979 0.4180 +2146 5984 0.5070 +2146 6015 0.9890 +2146 6045 0.9980 +2146 6046 0.4790 +2146 6095 0.4150 +2146 6217 0.4410 +2146 6233 0.5620 +2146 6241 0.6500 +2146 6256 0.6450 +2146 6391 0.4320 +2146 6421 0.5660 +2146 6427 0.7380 +2146 6469 0.4530 +2146 6496 0.4460 +2146 6502 0.4150 +2146 6591 0.8430 +2146 6594 0.6530 +2146 6595 0.6960 +2146 6597 0.9090 +2146 6598 0.7790 +2146 6599 0.6410 +2146 6601 0.5770 +2146 6615 0.9980 +2146 6622 0.4630 +2146 6657 0.7700 +2146 6659 0.8740 +2146 6662 0.4350 +2146 6667 0.4450 +2146 6714 0.4690 +2146 6732 0.5440 +2146 6757 0.5190 +2146 6760 0.4390 +2146 6772 0.4150 +2146 6774 0.9730 +2146 6776 0.8960 +2146 6777 0.9010 +2146 6790 0.7610 +2146 6794 0.4910 +2146 6829 0.5940 +2146 6839 0.9570 +2146 6907 0.5540 +2146 6908 0.4010 +2146 6996 0.4470 +2146 7004 0.5190 +2146 7015 0.5550 +2146 7027 0.6480 +2146 7029 0.5680 +2146 7040 0.4510 +2146 7077 0.4340 +2146 7078 0.4400 +2146 7088 0.4470 +2146 7101 0.6020 +2146 7113 0.5740 +2146 7124 0.4890 +2146 7128 0.5760 +2146 7153 0.6260 +2146 7157 0.8990 +2146 7158 0.4100 +2146 7189 0.4680 +2146 7272 0.4810 +2146 7291 0.7730 +2146 7298 0.5320 +2146 7307 0.7250 +2146 7311 0.5310 +2146 7316 0.5580 +2146 7337 0.7010 +2146 7398 0.4880 +2146 7403 0.9650 +2146 7404 0.5470 +2146 7409 0.9780 +2146 7414 0.4890 +2146 7468 0.4730 +2146 7490 0.8240 +2146 7514 0.5340 +2146 7528 0.9980 +2146 7532 0.4330 +2146 7593 0.5160 +2146 7629 0.4280 +2146 7702 0.5360 +2146 7703 0.9710 +2146 7704 0.8520 +2146 7764 0.6540 +2146 7799 0.4160 +2146 7837 0.4870 +2146 7846 0.4660 +2146 7852 0.4140 +2146 7874 0.8980 +2146 7994 0.4890 +2146 8019 0.4060 +2146 8085 0.6650 +2146 8091 0.5510 +2146 8202 0.6450 +2146 8233 0.6950 +2146 8242 0.5420 +2146 8243 0.4860 +2146 8289 0.8770 +2146 8290 0.9890 +2146 8294 0.8390 +2146 8314 0.9370 +2146 8317 0.4330 +2146 8318 0.4920 +2146 8329 0.9380 +2146 8330 0.8230 +2146 8331 0.5740 +2146 8332 0.8230 +2146 8334 0.9080 +2146 8335 0.8230 +2146 8336 0.8420 +2146 8337 0.8730 +2146 8338 0.8720 +2146 8340 0.6520 +2146 8341 0.6540 +2146 8342 0.6490 +2146 8345 0.6580 +2146 8347 0.6550 +2146 8348 0.6560 +2146 8349 0.8860 +2146 8350 0.8870 +2146 8351 0.5200 +2146 8352 0.5570 +2146 8353 0.5510 +2146 8354 0.5020 +2146 8355 0.5090 +2146 8356 0.9850 +2146 8357 0.5260 +2146 8358 0.5280 +2146 8359 0.8370 +2146 8360 0.8400 +2146 8361 0.9770 +2146 8362 0.8340 +2146 8363 0.8360 +2146 8364 0.8400 +2146 8366 0.8430 +2146 8367 0.8390 +2146 8368 0.8410 +2146 8369 0.5910 +2146 8370 0.8400 +2146 8405 0.4220 +2146 8438 0.4690 +2146 8450 0.5330 +2146 8454 0.4640 +2146 8467 0.8560 +2146 8473 0.5560 +2146 8520 0.5580 +2146 8535 0.9690 +2146 8544 0.4820 +2146 8553 0.4610 +2146 8648 0.4270 +2146 8651 0.4270 +2146 8726 0.9990 +2146 8815 0.4960 +2146 8819 0.6020 +2146 8841 0.9890 +2146 8842 0.4890 +2146 8850 0.6570 +2146 8882 0.4960 +2146 8932 0.4480 +2146 8945 0.6490 +2146 8968 0.5010 +2146 8969 0.8270 +2146 8970 0.9290 +2146 8985 0.6780 +2146 9055 0.5630 +2146 9070 0.8570 +2146 9088 0.5410 +2146 9112 0.6880 +2146 9126 0.5480 +2146 9133 0.5290 +2146 9134 0.4800 +2146 9156 0.4720 +2146 9208 0.4470 +2146 9212 0.6890 +2146 9219 0.8160 +2146 9232 0.6570 +2146 9252 0.5660 +2146 9271 0.4410 +2146 9314 0.7150 +2146 9320 0.4440 +2146 9425 0.9000 +2146 9429 0.4330 +2146 9493 0.4680 +2146 9555 0.7000 +2146 9575 0.7100 +2146 9611 0.8120 +2146 9612 0.6440 +2146 9682 0.7360 +2146 9734 0.7060 +2146 9735 0.4280 +2146 9759 0.7390 +2146 9768 0.5250 +2146 9787 0.4550 +2146 9833 0.7380 +2146 9837 0.4010 +2146 9839 0.5520 +2146 9869 0.6670 +2146 9898 0.9060 +2146 9935 0.6000 +2146 9978 0.5020 +2146 10013 0.5270 +2146 10014 0.6920 +2146 10018 0.4410 +2146 10019 0.7460 +2146 10036 0.4070 +2146 10039 0.4920 +2146 10051 0.5190 +2146 10112 0.4390 +2146 10127 0.4300 +2146 10138 0.4530 +2146 10155 0.8870 +2146 10190 0.4210 +2146 10196 0.6330 +2146 10273 0.6410 +2146 10320 0.5520 +2146 10336 0.9370 +2146 10365 0.5820 +2146 10389 0.9580 +2146 10397 0.4260 +2146 10403 0.4210 +2146 10413 0.4460 +2146 10419 0.8700 +2146 10438 0.4840 +2146 10481 0.4040 +2146 10498 0.7750 +2146 10509 0.4130 +2146 10524 0.4940 +2146 10615 0.4760 +2146 10635 0.4040 +2146 10644 0.5960 +2146 10664 0.9160 +2146 10733 0.4070 +2146 10735 0.6220 +2146 10765 0.8450 +2146 10771 0.4040 +2146 10797 0.5200 +2146 10919 0.9530 +2146 10933 0.4120 +2146 10951 0.8470 +2146 11004 0.4490 +2146 11065 0.5500 +2146 11091 0.9040 +2146 11130 0.5170 +2146 11169 0.4840 +2146 11176 0.6900 +2146 11177 0.4360 +2146 11186 0.4740 +2146 11198 0.4960 +2146 11200 0.4500 +2146 11315 0.4200 +2146 11322 0.8500 +2146 11329 0.4270 +2146 11331 0.6120 +2146 11335 0.8180 +2146 11339 0.4640 +2146 22806 0.6160 +2146 22823 0.9980 +2146 22893 0.6030 +2146 22933 0.5850 +2146 22943 0.4030 +2146 22955 0.7240 +2146 22974 0.4900 +2146 22976 0.7580 +2146 22992 0.5270 +2146 23012 0.4410 +2146 23028 0.9970 +2146 23030 0.5290 +2146 23054 0.5790 +2146 23081 0.5270 +2146 23112 0.5410 +2146 23133 0.4880 +2146 23135 0.9420 +2146 23186 0.9090 +2146 23309 0.4100 +2146 23326 0.4690 +2146 23378 0.4080 +2146 23397 0.5970 +2146 23405 0.5630 +2146 23411 0.9420 +2146 23429 0.5520 +2146 23466 0.9480 +2146 23468 0.7460 +2146 23476 0.8500 +2146 23492 0.9960 +2146 23512 0.9990 +2146 23532 0.6070 +2146 23594 0.5240 +2146 24137 0.4260 +2146 25836 0.4410 +2146 25942 0.8470 +2146 26009 0.4060 +2146 26013 0.6140 +2146 26040 0.6730 +2146 26122 0.8360 +2146 26147 0.9890 +2146 26523 0.9210 +2146 26524 0.6320 +2146 27161 0.7790 +2146 27250 0.4180 +2146 27327 0.5610 +2146 29028 0.5820 +2146 29102 0.5380 +2146 29126 0.5520 +2146 29127 0.4820 +2146 29128 0.8100 +2146 29947 0.8920 +2146 30009 0.5700 +2146 30827 0.4870 +2146 50943 0.9310 +2146 51111 0.5640 +2146 51176 0.4190 +2146 51203 0.5850 +2146 51366 0.5230 +2146 51506 0.5360 +2146 51514 0.4750 +2146 51548 0.4130 +2146 51564 0.7130 +2146 51742 0.5290 +2146 51744 0.8790 +2146 53335 0.6450 +2146 53615 0.6380 +2146 54145 0.6480 +2146 54737 0.4710 +2146 54764 0.5400 +2146 54790 0.8750 +2146 54799 0.4660 +2146 54815 0.6640 +2146 54880 0.5210 +2146 54892 0.4510 +2146 54962 0.4250 +2146 55143 0.5370 +2146 55165 0.4630 +2146 55170 0.4040 +2146 55193 0.6430 +2146 55215 0.4270 +2146 55252 0.8570 +2146 55294 0.6910 +2146 55506 0.4620 +2146 55693 0.4060 +2146 55766 0.5670 +2146 55818 0.5470 +2146 55869 0.8360 +2146 55904 0.5100 +2146 56950 0.5620 +2146 56992 0.4580 +2146 57082 0.4680 +2146 57167 0.6880 +2146 57332 0.9680 +2146 57459 0.6430 +2146 57492 0.4570 +2146 57504 0.6760 +2146 57634 0.4060 +2146 57708 0.4030 +2146 58508 0.7920 +2146 60312 0.4990 +2146 63035 0.5110 +2146 63978 0.6660 +2146 64151 0.5050 +2146 64219 0.6670 +2146 64321 0.5060 +2146 64324 0.4110 +2146 64750 0.6220 +2146 64754 0.5940 +2146 64919 0.4040 +2146 65980 0.5640 +2146 79084 0.5500 +2146 79447 0.5270 +2146 79718 0.6260 +2146 79723 0.6640 +2146 79727 0.4360 +2146 79733 0.4380 +2146 79823 0.8240 +2146 79885 0.4600 +2146 79923 0.6390 +2146 80012 0.9180 +2146 80198 0.5480 +2146 80312 0.7640 +2146 80314 0.8170 +2146 80816 0.8100 +2146 80853 0.4770 +2146 80854 0.5880 +2146 81620 0.4110 +2146 83540 0.4810 +2146 83746 0.5170 +2146 83852 0.4440 +2146 83879 0.4540 +2146 84101 0.6080 +2146 84108 0.9410 +2146 84148 0.4330 +2146 84152 0.4590 +2146 84193 0.4030 +2146 84232 0.4990 +2146 84271 0.4430 +2146 84295 0.6280 +2146 84333 0.9360 +2146 84433 0.4760 +2146 84444 0.8670 +2146 84458 0.9000 +2146 84661 0.6720 +2146 84678 0.8630 +2146 84733 0.9800 +2146 84759 0.9850 +2146 84787 0.5580 +2146 84823 0.5880 +2146 84942 0.4940 +2146 84962 0.5530 +2146 85235 0.5580 +2146 85236 0.9280 +2146 85460 0.4690 +2146 92815 0.5590 +2146 94239 0.6870 +2146 121504 0.8450 +2146 121536 0.9990 +2146 126961 0.9400 +2146 128312 0.6510 +2146 132625 0.6930 +2146 133482 0.5430 +2146 137902 0.4840 +2146 140690 0.7060 +2146 143689 0.4540 +2146 144455 0.4650 +2146 147906 0.4970 +2146 153090 0.7490 +2146 171023 0.9980 +2146 192669 0.5870 +2146 192670 0.5820 +2146 196528 0.6750 +2146 200424 0.5000 +2146 221476 0.5040 +2146 221613 0.5580 +2146 221656 0.4430 +2146 221895 0.5070 +2146 255626 0.6580 +2146 257000 0.5850 +2146 259266 0.4380 +2146 283248 0.4140 +2146 317772 0.5590 +2146 333932 0.9320 +2146 340602 0.8250 +2146 387640 0.7000 +2146 387893 0.5190 +2146 389421 0.4150 +2146 404281 0.6870 +2146 440093 0.9720 +2146 440686 0.9720 +2146 440689 0.6460 +2146 474382 0.5940 +2146 503835 0.4120 +2146 554313 0.8340 +2146 653604 0.9980 +2146 100170841 0.9470 +2146 100271849 0.5290 +2146 100532731 0.9850 +2146 102723407 0.4490 +2147 2149 0.9980 +2147 2150 0.7150 +2147 2151 0.9880 +2147 2152 0.9960 +2147 2153 0.9990 +2147 2155 0.9260 +2147 2157 0.9850 +2147 2158 0.9320 +2147 2159 0.9990 +2147 2160 0.7670 +2147 2161 0.8800 +2147 2162 0.9540 +2147 2165 0.9500 +2147 2168 0.5130 +2147 2219 0.6080 +2147 2220 0.6210 +2147 2243 0.9990 +2147 2244 0.9990 +2147 2266 0.9990 +2147 2267 0.5730 +2147 2290 0.4190 +2147 2335 0.7920 +2147 2638 0.7920 +2147 2641 0.4700 +2147 2677 0.9610 +2147 2693 0.5110 +2147 2719 0.5920 +2147 2805 0.5450 +2147 2806 0.4670 +2147 2811 0.9920 +2147 2812 0.5950 +2147 2814 0.5920 +2147 2815 0.6380 +2147 2837 0.5050 +2147 2846 0.9010 +2147 2862 0.5050 +2147 2869 0.5060 +2147 2875 0.9180 +2147 2911 0.6780 +2147 2912 0.6780 +2147 2913 0.6780 +2147 2914 0.6790 +2147 2915 0.6780 +2147 2916 0.6790 +2147 2917 0.6780 +2147 2918 0.6780 +2147 2922 0.4800 +2147 2925 0.5050 +2147 2934 0.4700 +2147 3004 0.4030 +2147 3026 0.5630 +2147 3046 0.4200 +2147 3053 0.9990 +2147 3075 0.7030 +2147 3083 0.4420 +2147 3240 0.4370 +2147 3242 0.4340 +2147 3263 0.7160 +2147 3273 0.8370 +2147 3383 0.4330 +2147 3426 0.7730 +2147 3458 0.4680 +2147 3479 0.5670 +2147 3481 0.5230 +2147 3483 0.6500 +2147 3484 0.5220 +2147 3486 0.5090 +2147 3553 0.5450 +2147 3558 0.4420 +2147 3569 0.7030 +2147 3576 0.5050 +2147 3577 0.6800 +2147 3579 0.6870 +2147 3586 0.5000 +2147 3630 0.5780 +2147 3674 0.7360 +2147 3685 0.4900 +2147 3690 0.5020 +2147 3697 0.4390 +2147 3698 0.8520 +2147 3699 0.6010 +2147 3700 0.6080 +2147 3717 0.5970 +2147 3818 0.7100 +2147 3827 0.8910 +2147 3959 0.4340 +2147 3990 0.4090 +2147 4018 0.7810 +2147 4049 0.4100 +2147 4143 0.4680 +2147 4151 0.6140 +2147 4153 0.8160 +2147 4256 0.7520 +2147 4295 0.4550 +2147 4353 0.5220 +2147 4524 0.9350 +2147 4829 0.5050 +2147 4879 0.6180 +2147 4922 0.4560 +2147 5004 0.6040 +2147 5005 0.5870 +2147 5045 0.8160 +2147 5053 0.5640 +2147 5054 0.8390 +2147 5104 0.9960 +2147 5175 0.4020 +2147 5176 0.8040 +2147 5196 0.6660 +2147 5197 0.6210 +2147 5265 0.7900 +2147 5267 0.4660 +2147 5270 0.9830 +2147 5286 0.6570 +2147 5327 0.6990 +2147 5328 0.6640 +2147 5329 0.6140 +2147 5330 0.5060 +2147 5331 0.5160 +2147 5340 0.8260 +2147 5345 0.9280 +2147 5473 0.5820 +2147 5583 0.4260 +2147 5624 0.9870 +2147 5627 0.4090 +2147 5648 0.6680 +2147 5737 0.6550 +2147 5950 0.5200 +2147 5972 0.5400 +2147 5979 0.4230 +2147 6291 0.4140 +2147 6347 0.4330 +2147 6401 0.4690 +2147 6403 0.6920 +2147 6696 0.6560 +2147 6818 0.4440 +2147 6906 0.7530 +2147 7018 0.7250 +2147 7035 0.9400 +2147 7056 0.9990 +2147 7057 0.4970 +2147 7066 0.4520 +2147 7124 0.7600 +2147 7137 0.6070 +2147 7200 0.4240 +2147 7201 0.5050 +2147 7204 0.5330 +2147 7276 0.7240 +2147 7365 0.5090 +2147 7412 0.4470 +2147 7448 0.6880 +2147 7450 0.9660 +2147 7852 0.9180 +2147 8529 0.4250 +2147 8547 0.6270 +2147 8997 0.4990 +2147 9002 0.9910 +2147 9170 0.9020 +2147 9360 0.4320 +2147 9370 0.5330 +2147 9971 0.4670 +2147 10161 0.9010 +2147 10246 0.4440 +2147 10316 0.5050 +2147 10544 0.8190 +2147 10584 0.6320 +2147 10747 0.6880 +2147 10800 0.5090 +2147 10841 0.4630 +2147 10874 0.4560 +2147 10875 0.4400 +2147 10887 0.5050 +2147 10911 0.5530 +2147 10998 0.4330 +2147 11093 0.6970 +2147 23236 0.5130 +2147 23566 0.9010 +2147 27429 0.5510 +2147 51091 0.4680 +2147 51156 0.6050 +2147 51206 0.5950 +2147 51280 0.4760 +2147 51738 0.4580 +2147 55937 0.7780 +2147 56288 0.6500 +2147 56923 0.5050 +2147 56938 0.5220 +2147 57105 0.5050 +2147 57121 0.9000 +2147 57649 0.5960 +2147 59272 0.6560 +2147 64805 0.5760 +2147 78989 0.6220 +2147 79001 0.8360 +2147 84432 0.4030 +2147 84706 0.8500 +2147 85477 0.4800 +2147 114757 0.6520 +2147 115557 0.5060 +2147 116519 0.5690 +2147 128674 0.5050 +2147 256394 0.4520 +2147 374569 0.5080 +2147 387129 0.5330 +2147 445329 0.4260 +2149 2150 0.4960 +2149 2151 0.6690 +2149 2152 0.8170 +2149 2155 0.4800 +2149 2157 0.4230 +2149 2159 0.6610 +2149 2207 0.5250 +2149 2212 0.5230 +2149 2335 0.4790 +2149 2693 0.4510 +2149 2767 0.7060 +2149 2768 0.9860 +2149 2769 0.7810 +2149 2776 0.9910 +2149 2778 0.9010 +2149 2811 0.6840 +2149 2815 0.5090 +2149 2837 0.4210 +2149 2846 0.9050 +2149 2869 0.5870 +2149 2922 0.5770 +2149 2925 0.5280 +2149 3001 0.8280 +2149 3320 0.4310 +2149 3383 0.4330 +2149 3553 0.4360 +2149 3569 0.6420 +2149 3576 0.7950 +2149 3673 0.5010 +2149 3674 0.7020 +2149 3690 0.5210 +2149 3827 0.7120 +2149 4140 0.7820 +2149 4295 0.4990 +2149 4312 0.8970 +2149 4313 0.4150 +2149 4317 0.5570 +2149 4318 0.4410 +2149 4828 0.5090 +2149 4829 0.4050 +2149 4846 0.5190 +2149 5023 0.4280 +2149 5054 0.5400 +2149 5175 0.4170 +2149 5196 0.5170 +2149 5197 0.4450 +2149 5245 0.4690 +2149 5294 0.7150 +2149 5303 0.4720 +2149 5327 0.6020 +2149 5328 0.4180 +2149 5330 0.5960 +2149 5331 0.6050 +2149 5340 0.8490 +2149 5468 0.4870 +2149 5594 0.5840 +2149 5595 0.6960 +2149 5600 0.4940 +2149 5617 0.4370 +2149 5624 0.9600 +2149 5627 0.4980 +2149 5644 0.8260 +2149 5646 0.7510 +2149 5648 0.5140 +2149 5742 0.4640 +2149 6347 0.6980 +2149 6403 0.7770 +2149 6404 0.4020 +2149 6624 0.4360 +2149 6642 0.6440 +2149 6714 0.7000 +2149 6915 0.4520 +2149 7035 0.7380 +2149 7056 0.9660 +2149 7124 0.4320 +2149 7200 0.5150 +2149 7201 0.4070 +2149 7204 0.5310 +2149 7408 0.4710 +2149 7412 0.4070 +2149 7450 0.6690 +2149 8856 0.4200 +2149 8989 0.6160 +2149 8997 0.5090 +2149 9002 0.9160 +2149 9170 0.9230 +2149 9294 0.5410 +2149 9630 0.6850 +2149 10015 0.7830 +2149 10161 0.9040 +2149 10231 0.4990 +2149 10531 0.8710 +2149 10544 0.9940 +2149 10672 0.9780 +2149 10800 0.4350 +2149 10874 0.5310 +2149 10887 0.4170 +2149 10911 0.5040 +2149 11080 0.4150 +2149 11123 0.4890 +2149 11331 0.4610 +2149 23236 0.5690 +2149 23533 0.6530 +2149 23566 0.9150 +2149 27006 0.4760 +2149 29126 0.4260 +2149 51129 0.5340 +2149 51206 0.6670 +2149 51738 0.5800 +2149 57105 0.4150 +2149 57121 0.9070 +2149 57561 0.6580 +2149 60675 0.5340 +2149 84432 0.5200 +2149 84817 0.4630 +2149 115557 0.5500 +2149 129521 0.4990 +2149 146850 0.6500 +2149 257313 0.5050 +2149 260434 0.6670 +2149 377841 0.4520 +2149 387129 0.4240 +2149 594857 0.4990 +2150 2151 0.4640 +2150 2152 0.7160 +2150 2693 0.4080 +2150 2768 0.4950 +2150 2776 0.9670 +2150 2837 0.4170 +2150 2869 0.5120 +2150 2922 0.5430 +2150 2925 0.4370 +2150 3001 0.6810 +2150 3240 0.5290 +2150 3827 0.6290 +2150 4295 0.4990 +2150 4312 0.4610 +2150 4828 0.5130 +2150 5330 0.4990 +2150 5331 0.5290 +2150 5340 0.7020 +2150 5644 0.7580 +2150 5646 0.7770 +2150 6347 0.4430 +2150 6768 0.5050 +2150 6863 0.4190 +2150 7088 0.4630 +2150 7090 0.4370 +2150 7099 0.5010 +2150 7200 0.4990 +2150 7204 0.5310 +2150 7442 0.5600 +2150 7871 0.4100 +2150 8877 0.7330 +2150 8989 0.7910 +2150 8997 0.4990 +2150 9002 0.4540 +2150 9868 0.4080 +2150 10531 0.7240 +2150 10544 0.6600 +2150 10800 0.4210 +2150 10874 0.5290 +2150 10887 0.4060 +2150 10911 0.5050 +2150 10959 0.5430 +2150 23236 0.4990 +2150 51738 0.4990 +2150 56848 0.7200 +2150 57105 0.4020 +2150 59341 0.4140 +2150 60675 0.5040 +2150 84432 0.4990 +2150 115557 0.4990 +2150 128674 0.4060 +2150 129521 0.4990 +2150 257313 0.5050 +2150 387129 0.4050 +2150 594857 0.4990 +2151 2767 0.4990 +2151 2768 0.5430 +2151 2769 0.5320 +2151 2776 0.5170 +2151 2782 0.4990 +2151 2783 0.4990 +2151 2784 0.4990 +2151 2785 0.5370 +2151 2786 0.5270 +2151 2787 0.5400 +2151 2788 0.5650 +2151 2790 0.4990 +2151 2791 0.5100 +2151 2792 0.4990 +2151 2793 0.5260 +2151 2869 0.5000 +2151 2922 0.5150 +2151 2925 0.4080 +2151 3001 0.6810 +2151 3576 0.4070 +2151 3827 0.5690 +2151 4295 0.4990 +2151 4828 0.4990 +2151 5330 0.5110 +2151 5331 0.4990 +2151 5340 0.6810 +2151 5644 0.6810 +2151 5646 0.6810 +2151 7200 0.4990 +2151 7201 0.4060 +2151 7204 0.5310 +2151 8997 0.5140 +2151 9002 0.9110 +2151 9630 0.5340 +2151 10316 0.4200 +2151 10672 0.5050 +2151 10681 0.4990 +2151 10874 0.4990 +2151 10911 0.5150 +2151 23236 0.5260 +2151 51738 0.4990 +2151 51764 0.4990 +2151 54331 0.5220 +2151 55970 0.5020 +2151 56923 0.4160 +2151 59345 0.4990 +2151 60675 0.4990 +2151 84432 0.5070 +2151 94235 0.4990 +2151 115557 0.5000 +2151 129521 0.4990 +2151 221303 0.4030 +2151 257313 0.5050 +2151 260434 0.8360 +2151 387129 0.4070 +2151 594857 0.4990 +2151 100288072 0.4420 +2152 2153 0.7990 +2152 2155 0.9990 +2152 2157 0.9420 +2152 2158 0.9940 +2152 2159 0.9990 +2152 2160 0.9230 +2152 2161 0.9370 +2152 2219 0.6290 +2152 2220 0.6370 +2152 2243 0.6670 +2152 2244 0.4060 +2152 2247 0.4560 +2152 2316 0.4310 +2152 2321 0.4090 +2152 2335 0.7110 +2152 2690 0.4150 +2152 2811 0.6260 +2152 2813 0.4010 +2152 2815 0.4440 +2152 2875 0.8800 +2152 2919 0.4260 +2152 3053 0.8020 +2152 3075 0.6760 +2152 3091 0.4030 +2152 3146 0.6810 +2152 3240 0.5770 +2152 3249 0.4750 +2152 3273 0.6720 +2152 3356 0.4240 +2152 3383 0.7260 +2152 3425 0.4220 +2152 3426 0.6090 +2152 3455 0.4220 +2152 3458 0.5750 +2152 3486 0.5000 +2152 3552 0.6310 +2152 3553 0.7190 +2152 3558 0.4780 +2152 3565 0.4180 +2152 3569 0.8190 +2152 3576 0.7400 +2152 3586 0.5860 +2152 3605 0.4160 +2152 3606 0.4490 +2152 3627 0.4190 +2152 3630 0.5700 +2152 3674 0.7180 +2152 3684 0.6210 +2152 3690 0.5070 +2152 3725 0.4070 +2152 3791 0.4050 +2152 3818 0.9140 +2152 3827 0.8120 +2152 4151 0.5070 +2152 4153 0.7100 +2152 4179 0.4180 +2152 4254 0.4840 +2152 4318 0.6320 +2152 4353 0.7600 +2152 4493 0.4080 +2152 4524 0.6360 +2152 4790 0.4430 +2152 4846 0.5260 +2152 4879 0.5800 +2152 4973 0.4090 +2152 5028 0.4340 +2152 5054 0.9020 +2152 5055 0.4860 +2152 5104 0.6060 +2152 5175 0.6880 +2152 5176 0.6620 +2152 5196 0.7200 +2152 5197 0.6640 +2152 5265 0.4510 +2152 5286 0.5830 +2152 5327 0.9320 +2152 5328 0.8290 +2152 5329 0.7420 +2152 5340 0.9390 +2152 5345 0.7640 +2152 5473 0.5150 +2152 5547 0.4790 +2152 5624 0.9050 +2152 5627 0.6090 +2152 5648 0.6740 +2152 5657 0.5710 +2152 5742 0.4140 +2152 5743 0.5580 +2152 5806 0.4780 +2152 5972 0.5790 +2152 6281 0.4950 +2152 6347 0.6640 +2152 6348 0.4470 +2152 6401 0.7230 +2152 6402 0.5130 +2152 6403 0.9050 +2152 6404 0.9190 +2152 6818 0.4470 +2152 7035 0.9990 +2152 7040 0.4220 +2152 7056 0.9820 +2152 7057 0.6310 +2152 7066 0.4750 +2152 7097 0.6390 +2152 7099 0.7170 +2152 7113 0.4760 +2152 7124 0.7200 +2152 7137 0.5070 +2152 7412 0.8030 +2152 7448 0.4180 +2152 7450 0.9800 +2152 7639 0.6060 +2152 7837 0.4090 +2152 7980 0.9010 +2152 8547 0.6210 +2152 8829 0.4350 +2152 8856 0.4800 +2152 9255 0.5500 +2152 9622 0.6580 +2152 9777 0.5920 +2152 10544 0.7040 +2152 10584 0.5560 +2152 10747 0.7200 +2152 11093 0.7200 +2152 23545 0.4430 +2152 27429 0.5400 +2152 51206 0.7350 +2152 51266 0.6110 +2152 59272 0.6970 +2152 64805 0.7420 +2152 78989 0.5920 +2152 79087 0.6500 +2152 80781 0.5670 +2152 84706 0.7200 +2152 85476 0.8010 +2152 114757 0.5940 +2152 196527 0.4870 +2152 440387 0.4470 +2152 445329 0.5880 +2153 2155 0.7970 +2153 2157 0.8460 +2153 2158 0.7690 +2153 2159 0.9950 +2153 2160 0.7250 +2153 2161 0.7350 +2153 2162 0.6200 +2153 2165 0.6720 +2153 2219 0.6080 +2153 2220 0.6180 +2153 2243 0.6520 +2153 2244 0.6900 +2153 2266 0.6580 +2153 2335 0.5270 +2153 2348 0.5180 +2153 2621 0.5190 +2153 2801 0.5060 +2153 2890 0.4990 +2153 2950 0.5130 +2153 3053 0.6810 +2153 3075 0.7360 +2153 3273 0.4510 +2153 3426 0.6300 +2153 3818 0.6550 +2153 3827 0.7570 +2153 3998 0.7890 +2153 4153 0.6350 +2153 4524 0.8210 +2153 4905 0.5050 +2153 4973 0.4710 +2153 5054 0.4480 +2153 5104 0.6080 +2153 5192 0.4550 +2153 5196 0.4440 +2153 5222 0.5370 +2153 5265 0.7730 +2153 5270 0.7860 +2153 5328 0.5930 +2153 5329 0.5430 +2153 5340 0.4530 +2153 5345 0.4420 +2153 5624 0.9400 +2153 5627 0.9720 +2153 5648 0.6550 +2153 5768 0.4360 +2153 6396 0.5050 +2153 6401 0.6260 +2153 6402 0.6480 +2153 6403 0.6380 +2153 6811 0.4990 +2153 7035 0.6520 +2153 7039 0.5010 +2153 7056 0.7110 +2153 7076 0.4420 +2153 7450 0.4480 +2153 8547 0.6180 +2153 8615 0.4990 +2153 8774 0.4990 +2153 8775 0.4990 +2153 9117 0.4990 +2153 9554 0.4990 +2153 9570 0.4990 +2153 9632 0.5140 +2153 9784 0.4220 +2153 9871 0.5070 +2153 9919 0.4990 +2153 10113 0.4990 +2153 10175 0.4990 +2153 10282 0.4990 +2153 10342 0.5420 +2153 10427 0.4990 +2153 10484 0.5070 +2153 10584 0.5550 +2153 10652 0.5050 +2153 10747 0.6760 +2153 10802 0.4990 +2153 10959 0.4990 +2153 10960 0.5540 +2153 10972 0.4990 +2153 11196 0.4990 +2153 22872 0.4990 +2153 22915 0.8220 +2153 23256 0.5620 +2153 26984 0.4990 +2153 27429 0.5750 +2153 51128 0.5600 +2153 54757 0.5010 +2153 55014 0.4990 +2153 56975 0.6720 +2153 63908 0.4990 +2153 64422 0.4710 +2153 64689 0.4990 +2153 78989 0.5550 +2153 79748 0.5090 +2153 81562 0.5500 +2153 89866 0.4990 +2153 90411 0.8250 +2153 132949 0.4340 +2153 149111 0.4990 +2153 219736 0.6720 +2153 254263 0.4990 +2153 643834 0.6190 +2153 643847 0.6230 +2155 2157 0.9690 +2155 2158 0.9840 +2155 2159 0.9880 +2155 2160 0.7360 +2155 2161 0.7350 +2155 2219 0.5690 +2155 2220 0.6030 +2155 2243 0.6610 +2155 2244 0.4460 +2155 2266 0.4720 +2155 2335 0.6000 +2155 2677 0.9580 +2155 2806 0.4960 +2155 3026 0.5190 +2155 3053 0.7570 +2155 3075 0.5940 +2155 3172 0.4250 +2155 3426 0.6590 +2155 3569 0.4790 +2155 3586 0.4670 +2155 3630 0.6400 +2155 3674 0.4800 +2155 3818 0.6900 +2155 3827 0.5330 +2155 4153 0.6650 +2155 4256 0.4240 +2155 4862 0.5140 +2155 5009 0.4120 +2155 5045 0.7970 +2155 5054 0.7740 +2155 5104 0.5180 +2155 5176 0.5820 +2155 5196 0.4470 +2155 5197 0.4070 +2155 5265 0.4250 +2155 5327 0.4700 +2155 5328 0.6780 +2155 5329 0.6370 +2155 5340 0.4230 +2155 5345 0.6820 +2155 5473 0.4210 +2155 5624 0.7150 +2155 5648 0.6000 +2155 6403 0.5740 +2155 7035 0.9950 +2155 7056 0.9420 +2155 7057 0.4550 +2155 7066 0.4120 +2155 7124 0.4200 +2155 7412 0.4270 +2155 7450 0.9110 +2155 7980 0.5050 +2155 8029 0.4110 +2155 8529 0.6720 +2155 8547 0.6080 +2155 9575 0.5210 +2155 9622 0.5280 +2155 9914 0.8170 +2155 10544 0.9150 +2155 10584 0.5810 +2155 10747 0.6830 +2155 11093 0.5180 +2155 23509 0.8240 +2155 23545 0.4380 +2155 27032 0.8950 +2155 27429 0.5510 +2155 56886 0.5460 +2155 56983 0.9160 +2155 78989 0.5560 +2155 79001 0.7910 +2155 85476 0.6530 +2155 90411 0.6140 +2155 283464 0.7890 +2155 727936 0.7780 +2157 2158 0.9970 +2157 2159 0.9970 +2157 2160 0.9660 +2157 2161 0.7570 +2157 2219 0.5760 +2157 2220 0.5810 +2157 2243 0.5000 +2157 2316 0.5020 +2157 2335 0.9750 +2157 2348 0.5030 +2157 2539 0.5600 +2157 2556 0.4810 +2157 2564 0.5110 +2157 2801 0.5200 +2157 2811 0.8860 +2157 2812 0.7430 +2157 2814 0.7480 +2157 2815 0.7860 +2157 2890 0.4990 +2157 3053 0.6560 +2157 3075 0.6610 +2157 3251 0.6080 +2157 3426 0.5740 +2157 3674 0.4980 +2157 3818 0.6690 +2157 3827 0.4580 +2157 3897 0.6680 +2157 3998 0.9390 +2157 4035 0.5140 +2157 4057 0.4360 +2157 4153 0.7340 +2157 4354 0.5250 +2157 4534 0.5290 +2157 4905 0.5050 +2157 5054 0.6110 +2157 5104 0.5900 +2157 5175 0.5350 +2157 5176 0.5230 +2157 5192 0.4550 +2157 5196 0.4160 +2157 5265 0.6210 +2157 5270 0.6010 +2157 5286 0.4070 +2157 5327 0.6600 +2157 5328 0.6630 +2157 5329 0.5860 +2157 5340 0.6590 +2157 5345 0.6120 +2157 5624 0.9600 +2157 5627 0.9010 +2157 5648 0.5850 +2157 5805 0.4790 +2157 6396 0.5050 +2157 6403 0.6560 +2157 6768 0.8750 +2157 6811 0.4990 +2157 7035 0.7020 +2157 7039 0.5090 +2157 7056 0.8720 +2157 7436 0.4480 +2157 7450 0.9990 +2157 8263 0.8860 +2157 8266 0.5440 +2157 8459 0.7690 +2157 8460 0.7730 +2157 8547 0.5680 +2157 8615 0.5080 +2157 8774 0.4990 +2157 8775 0.5000 +2157 9117 0.4990 +2157 9427 0.4420 +2157 9554 0.4990 +2157 9563 0.4720 +2157 9570 0.4990 +2157 9622 0.4200 +2157 9632 0.4990 +2157 9871 0.4990 +2157 9919 0.4990 +2157 10113 0.4990 +2157 10175 0.4990 +2157 10282 0.5000 +2157 10342 0.5150 +2157 10427 0.5030 +2157 10484 0.5100 +2157 10544 0.5070 +2157 10584 0.5550 +2157 10652 0.5050 +2157 10747 0.6190 +2157 10802 0.4990 +2157 10959 0.4990 +2157 10960 0.5270 +2157 10972 0.4990 +2157 11093 0.9500 +2157 11196 0.4990 +2157 22872 0.4990 +2157 23256 0.5620 +2157 26984 0.4990 +2157 27429 0.5750 +2157 50814 0.4710 +2157 51128 0.5600 +2157 55014 0.5000 +2157 63908 0.4990 +2157 64689 0.4990 +2157 78989 0.5570 +2157 79184 0.4940 +2157 79596 0.4790 +2157 79748 0.5340 +2157 81562 0.5360 +2157 89866 0.5090 +2157 90411 0.9700 +2157 132949 0.4340 +2157 149111 0.4990 +2157 167555 0.4200 +2157 254263 0.4990 +2158 2159 0.9530 +2158 2160 0.9670 +2158 2161 0.7370 +2158 2165 0.6030 +2158 2217 0.4350 +2158 2219 0.5750 +2158 2220 0.6820 +2158 2243 0.6110 +2158 2266 0.4640 +2158 2332 0.4310 +2158 2334 0.4380 +2158 2677 0.9720 +2158 2717 0.4170 +2158 2811 0.6530 +2158 2812 0.5310 +2158 2814 0.5210 +2158 2815 0.5450 +2158 3026 0.4010 +2158 3053 0.5480 +2158 3075 0.6320 +2158 3080 0.4490 +2158 3251 0.4910 +2158 3263 0.5590 +2158 3273 0.5970 +2158 3292 0.4430 +2158 3293 0.4920 +2158 3294 0.4720 +2158 3295 0.4300 +2158 3305 0.4420 +2158 3423 0.6630 +2158 3426 0.6730 +2158 3698 0.4850 +2158 3818 0.7060 +2158 3827 0.7830 +2158 4153 0.7490 +2158 5009 0.5670 +2158 5045 0.8320 +2158 5053 0.4210 +2158 5054 0.4380 +2158 5199 0.5210 +2158 5265 0.6300 +2158 5328 0.6520 +2158 5329 0.5920 +2158 5340 0.5140 +2158 5345 0.5470 +2158 5624 0.7200 +2158 5627 0.6540 +2158 5648 0.6050 +2158 6121 0.4210 +2158 6480 0.4550 +2158 6906 0.5400 +2158 7035 0.7440 +2158 7056 0.8510 +2158 7276 0.4840 +2158 7448 0.4950 +2158 7450 0.9150 +2158 8529 0.6090 +2158 8547 0.6550 +2158 9248 0.5680 +2158 9622 0.5250 +2158 10544 0.5770 +2158 10584 0.6090 +2158 10747 0.6930 +2158 11093 0.4290 +2158 23509 0.4650 +2158 26998 0.4960 +2158 27429 0.5510 +2158 51156 0.4620 +2158 54221 0.4970 +2158 54363 0.4990 +2158 54776 0.4040 +2158 56983 0.4070 +2158 78989 0.6000 +2158 79001 0.7480 +2158 79154 0.4190 +2158 81494 0.8100 +2158 84930 0.4220 +2158 85476 0.5710 +2158 152002 0.8230 +2158 286410 0.6950 +2158 100423062 0.9670 +2159 2160 0.7560 +2159 2161 0.7410 +2159 2162 0.5950 +2159 2165 0.7040 +2159 2219 0.6170 +2159 2220 0.6560 +2159 2243 0.7520 +2159 2244 0.6640 +2159 2266 0.6550 +2159 2335 0.5340 +2159 2677 0.8080 +2159 2811 0.4310 +2159 2994 0.5500 +2159 3053 0.8230 +2159 3075 0.6110 +2159 3273 0.7750 +2159 3426 0.6900 +2159 3553 0.5800 +2159 3569 0.4180 +2159 3674 0.4800 +2159 3689 0.4690 +2159 3818 0.7250 +2159 3827 0.7170 +2159 4153 0.6870 +2159 4240 0.4390 +2159 4481 0.4580 +2159 4638 0.5750 +2159 5045 0.8150 +2159 5054 0.5350 +2159 5104 0.7130 +2159 5176 0.4230 +2159 5196 0.4800 +2159 5197 0.4470 +2159 5265 0.6830 +2159 5270 0.6270 +2159 5327 0.5600 +2159 5328 0.6790 +2159 5329 0.6160 +2159 5340 0.7200 +2159 5345 0.5730 +2159 5624 0.7070 +2159 5627 0.5730 +2159 5648 0.6540 +2159 5657 0.5450 +2159 6005 0.7920 +2159 6403 0.5510 +2159 7035 0.9990 +2159 7056 0.8400 +2159 7057 0.5520 +2159 7372 0.7610 +2159 7448 0.5450 +2159 7450 0.9780 +2159 7639 0.6250 +2159 8547 0.6250 +2159 8856 0.8300 +2159 10544 0.9580 +2159 10584 0.5820 +2159 10747 0.6900 +2159 11093 0.4820 +2159 27230 0.5090 +2159 27429 0.5510 +2159 51156 0.8160 +2159 51206 0.4690 +2159 51806 0.4330 +2159 64805 0.4750 +2159 78989 0.6080 +2159 85476 0.4800 +2159 91807 0.4260 +2159 91860 0.4330 +2159 163688 0.4330 +2159 221938 0.4910 +2160 2161 0.9540 +2160 2165 0.5010 +2160 2219 0.5500 +2160 2220 0.6130 +2160 2243 0.6040 +2160 2244 0.4800 +2160 2266 0.5730 +2160 2811 0.8730 +2160 2812 0.5930 +2160 2814 0.5910 +2160 2815 0.5950 +2160 3053 0.7280 +2160 3075 0.6130 +2160 3273 0.6440 +2160 3426 0.6660 +2160 3818 0.7920 +2160 3827 0.9980 +2160 3848 0.4850 +2160 4153 0.6870 +2160 4345 0.4290 +2160 5054 0.4540 +2160 5104 0.6910 +2160 5176 0.4790 +2160 5265 0.4400 +2160 5270 0.5080 +2160 5328 0.6490 +2160 5329 0.6270 +2160 5340 0.4610 +2160 5345 0.6410 +2160 5546 0.6290 +2160 5547 0.4380 +2160 5624 0.7170 +2160 5648 0.6570 +2160 6403 0.4230 +2160 6610 0.4260 +2160 7035 0.7480 +2160 7056 0.7870 +2160 7450 0.7050 +2160 7804 0.5840 +2160 8547 0.6530 +2160 9622 0.5950 +2160 10584 0.5940 +2160 10747 0.6680 +2160 10891 0.4480 +2160 11093 0.4980 +2160 23411 0.4430 +2160 27429 0.5510 +2160 51156 0.5720 +2160 51206 0.4700 +2160 78989 0.6010 +2160 79173 0.6100 +2160 89953 0.4030 +2160 285440 0.4300 +2161 2162 0.7070 +2161 2165 0.6020 +2161 2219 0.5730 +2161 2220 0.6260 +2161 2243 0.4440 +2161 2244 0.4030 +2161 2335 0.4480 +2161 2739 0.5010 +2161 2811 0.8410 +2161 2812 0.5720 +2161 2814 0.5630 +2161 2815 0.5350 +2161 3053 0.5130 +2161 3075 0.6330 +2161 3273 0.7140 +2161 3426 0.6830 +2161 3697 0.5870 +2161 3818 0.9720 +2161 3827 0.9980 +2161 4018 0.4010 +2161 4153 0.7160 +2161 4486 0.4080 +2161 5199 0.4960 +2161 5238 0.5110 +2161 5328 0.6290 +2161 5329 0.6510 +2161 5340 0.9650 +2161 5345 0.7360 +2161 5624 0.7730 +2161 5644 0.4540 +2161 5645 0.4600 +2161 5646 0.4760 +2161 5648 0.6330 +2161 5754 0.7690 +2161 6041 0.5120 +2161 7035 0.4040 +2161 7056 0.6760 +2161 7450 0.6300 +2161 8547 0.6180 +2161 8858 0.4950 +2161 9622 0.7300 +2161 10584 0.5990 +2161 10747 0.7160 +2161 10998 0.4600 +2161 11076 0.7110 +2161 26103 0.4660 +2161 27429 0.5680 +2161 29105 0.4280 +2161 51206 0.4330 +2161 54101 0.5520 +2161 66005 0.4180 +2161 78989 0.5990 +2161 80258 0.4340 +2161 84250 0.4540 +2161 93166 0.5480 +2161 114327 0.4340 +2161 116519 0.4070 +2161 133015 0.4480 +2161 135138 0.4480 +2161 151651 0.4890 +2161 197335 0.8690 +2161 200844 0.4280 +2161 219670 0.4140 +2161 345193 0.4660 +2162 2165 0.9970 +2162 2207 0.4020 +2162 2243 0.9100 +2162 2244 0.8120 +2162 2266 0.8120 +2162 2335 0.7830 +2162 2350 0.4900 +2162 2597 0.4690 +2162 2739 0.6680 +2162 3053 0.6160 +2162 3315 0.6440 +2162 3565 0.5050 +2162 3596 0.4740 +2162 3664 0.4190 +2162 3674 0.4750 +2162 3684 0.4780 +2162 3688 0.5220 +2162 3690 0.4190 +2162 3697 0.4810 +2162 3700 0.4240 +2162 3791 0.5250 +2162 3818 0.5480 +2162 3827 0.5110 +2162 3909 0.4300 +2162 3910 0.4500 +2162 3911 0.4330 +2162 4200 0.6730 +2162 4332 0.5040 +2162 4360 0.5020 +2162 4524 0.4950 +2162 5104 0.5840 +2162 5196 0.5390 +2162 5197 0.6440 +2162 5270 0.5690 +2162 5341 0.5120 +2162 5345 0.6750 +2162 5473 0.6650 +2162 5624 0.6980 +2162 6367 0.5290 +2162 6403 0.4410 +2162 7057 0.4510 +2162 7305 0.4690 +2162 7414 0.5050 +2162 7450 0.7130 +2162 7481 0.4290 +2162 7753 0.4300 +2162 8862 0.6400 +2162 9332 0.6880 +2162 9450 0.4510 +2162 9935 0.5540 +2162 10462 0.4520 +2162 10875 0.4670 +2162 10894 0.5420 +2162 11326 0.4790 +2162 23166 0.5520 +2162 23314 0.4240 +2162 51531 0.4260 +2162 53407 0.4430 +2162 55351 0.4290 +2162 55363 0.4590 +2162 55800 0.4490 +2162 64072 0.4030 +2162 64175 0.5640 +2162 64231 0.4740 +2162 64805 0.4090 +2162 84830 0.4280 +2162 132884 0.4240 +2162 202500 0.5280 +2162 347853 0.4260 +2165 2243 0.9600 +2165 2244 0.9050 +2165 2266 0.9350 +2165 2638 0.4510 +2165 3026 0.4960 +2165 3053 0.8160 +2165 3080 0.4330 +2165 3081 0.8370 +2165 3240 0.4980 +2165 3273 0.8190 +2165 3698 0.5040 +2165 3818 0.4570 +2165 3827 0.5720 +2165 4153 0.4100 +2165 5004 0.4950 +2165 5053 0.4740 +2165 5104 0.6580 +2165 5132 0.6230 +2165 5225 0.6990 +2165 5236 0.5370 +2165 5270 0.5220 +2165 5340 0.6710 +2165 5345 0.7800 +2165 5444 0.6090 +2165 5624 0.8720 +2165 6004 0.4360 +2165 6514 0.4470 +2165 6694 0.4190 +2165 7018 0.5110 +2165 7450 0.6090 +2165 8858 0.6060 +2165 10599 0.4210 +2165 10841 0.4080 +2165 10877 0.4550 +2165 26998 0.4010 +2165 27329 0.4370 +2165 51156 0.5510 +2165 55748 0.7130 +2165 55937 0.4010 +2165 58510 0.4090 +2165 64902 0.7180 +2165 81494 0.5560 +2165 220001 0.4360 +2165 285148 0.4330 +2165 387715 0.4180 +2165 401665 0.4450 +2166 2170 0.8260 +2166 2171 0.8910 +2166 2173 0.8390 +2166 2232 0.4920 +2166 2618 0.4510 +2166 2673 0.5400 +2166 2746 0.5180 +2166 2747 0.5180 +2166 2752 0.6070 +2166 2806 0.4270 +2166 2841 0.7360 +2166 2990 0.4960 +2166 3350 0.5200 +2166 3396 0.6960 +2166 3516 0.4340 +2166 3735 0.4600 +2166 3814 0.4040 +2166 4015 0.4140 +2166 4126 0.4610 +2166 4128 0.5970 +2166 4129 0.6090 +2166 4677 0.6380 +2166 4854 0.4430 +2166 4915 0.4710 +2166 4935 0.5650 +2166 4988 0.6700 +2166 5091 0.7240 +2166 5095 0.5290 +2166 5096 0.5180 +2166 5188 0.9920 +2166 5321 0.4160 +2166 5465 0.6580 +2166 5468 0.5140 +2166 5471 0.6940 +2166 5573 0.5820 +2166 5743 0.5940 +2166 5816 0.4240 +2166 5832 0.7770 +2166 5859 0.6780 +2166 6170 0.6760 +2166 6187 0.4510 +2166 6188 0.4730 +2166 6205 0.4550 +2166 6208 0.4230 +2166 6209 0.4310 +2166 6217 0.5270 +2166 7372 0.4440 +2166 7442 0.8550 +2166 7920 0.4100 +2166 8192 0.4870 +2166 8565 0.4450 +2166 8833 0.7740 +2166 8989 0.6120 +2166 9290 0.8480 +2166 9945 0.5400 +2166 10908 0.5090 +2166 11343 0.9740 +2166 22999 0.5100 +2166 23028 0.4410 +2166 25973 0.4240 +2166 26090 0.8310 +2166 27163 0.8500 +2166 27165 0.4670 +2166 51104 0.4120 +2166 51167 0.4250 +2166 51360 0.4200 +2166 51393 0.5230 +2166 51497 0.5360 +2166 51557 0.5810 +2166 51573 0.6910 +2166 51733 0.4100 +2166 54205 0.4780 +2166 54529 0.5240 +2166 55157 0.9000 +2166 55278 0.4100 +2166 56474 0.4210 +2166 56922 0.5360 +2166 57406 0.8810 +2166 57494 0.4710 +2166 57552 0.5360 +2166 59341 0.4370 +2166 63874 0.7200 +2166 64087 0.5060 +2166 79054 0.5050 +2166 79073 0.7830 +2166 79731 0.6320 +2166 79814 0.4520 +2166 83451 0.4570 +2166 84464 0.6320 +2166 84893 0.4210 +2166 89894 0.5590 +2166 91875 0.4200 +2166 93100 0.5510 +2166 116832 0.6760 +2166 122970 0.4540 +2166 123263 0.4530 +2166 124454 0.6770 +2166 125061 0.4690 +2166 135293 0.4620 +2166 138428 0.6780 +2166 139760 0.6820 +2166 158584 0.4450 +2166 221656 0.4310 +2166 221955 0.8480 +2166 222236 0.9310 +2166 266977 0.4220 +2166 283985 0.4920 +2166 284716 0.4710 +2166 285148 0.7520 +2166 642475 0.5540 +2166 104909134 0.6090 +2167 2168 0.9040 +2167 2169 0.6210 +2167 2170 0.6830 +2167 2171 0.7560 +2167 2172 0.8210 +2167 2173 0.7040 +2167 2180 0.5740 +2167 2194 0.7430 +2167 2195 0.4520 +2167 2308 0.4140 +2167 2597 0.6050 +2167 2806 0.9040 +2167 2819 0.4390 +2167 3030 0.4830 +2167 3032 0.5720 +2167 3075 0.4140 +2167 3156 0.4550 +2167 3158 0.4100 +2167 3240 0.5000 +2167 3479 0.4550 +2167 3553 0.4840 +2167 3569 0.5840 +2167 3576 0.5630 +2167 3577 0.4050 +2167 3630 0.7390 +2167 3638 0.6080 +2167 3667 0.4750 +2167 3717 0.5230 +2167 3934 0.4050 +2167 3952 0.8040 +2167 3953 0.4270 +2167 3991 0.9990 +2167 4023 0.9650 +2167 4617 0.4550 +2167 4633 0.4810 +2167 4656 0.4030 +2167 4907 0.4500 +2167 4973 0.4960 +2167 5054 0.4300 +2167 5105 0.8050 +2167 5106 0.5540 +2167 5156 0.4180 +2167 5166 0.5300 +2167 5175 0.5260 +2167 5216 0.4160 +2167 5346 0.9270 +2167 5465 0.7950 +2167 5467 0.7530 +2167 5468 0.9930 +2167 5469 0.5790 +2167 5728 0.5550 +2167 5729 0.4410 +2167 5788 0.4500 +2167 5914 0.5210 +2167 5919 0.5170 +2167 5950 0.6040 +2167 6256 0.7890 +2167 6258 0.4740 +2167 6319 0.6700 +2167 6347 0.6950 +2167 6517 0.6970 +2167 6652 0.4360 +2167 6662 0.4290 +2167 6696 0.4900 +2167 6720 0.7990 +2167 6837 0.4990 +2167 7057 0.5220 +2167 7069 0.4500 +2167 7070 0.4730 +2167 7124 0.5170 +2167 7350 0.7530 +2167 7351 0.5510 +2167 7352 0.4670 +2167 7480 0.5130 +2167 7534 0.4690 +2167 7837 0.4390 +2167 8200 0.4030 +2167 8202 0.5440 +2167 8309 0.4040 +2167 8310 0.4840 +2167 8648 0.5690 +2167 8694 0.6000 +2167 8788 0.6570 +2167 8841 0.5490 +2167 9282 0.5260 +2167 9370 0.9420 +2167 9412 0.5090 +2167 9439 0.4990 +2167 9440 0.4990 +2167 9441 0.4990 +2167 9442 0.5120 +2167 9443 0.4990 +2167 9477 0.5140 +2167 9611 0.6000 +2167 9612 0.5600 +2167 9862 0.5020 +2167 9967 0.5110 +2167 9968 0.4990 +2167 9969 0.4990 +2167 10001 0.4990 +2167 10025 0.4990 +2167 10062 0.4790 +2167 10135 0.4350 +2167 10499 0.5510 +2167 10555 0.4280 +2167 10891 0.8180 +2167 10999 0.5240 +2167 11001 0.4240 +2167 11343 0.4890 +2167 23054 0.4490 +2167 23090 0.6740 +2167 23097 0.4990 +2167 23175 0.4610 +2167 23389 0.5080 +2167 23411 0.4180 +2167 26291 0.5500 +2167 29079 0.4990 +2167 51003 0.4990 +2167 51085 0.6400 +2167 51094 0.4050 +2167 51099 0.6450 +2167 51129 0.7370 +2167 51141 0.5790 +2167 51586 0.5040 +2167 51806 0.4590 +2167 54797 0.4990 +2167 54898 0.6720 +2167 55022 0.5020 +2167 55090 0.4990 +2167 55588 0.4990 +2167 55600 0.4570 +2167 56729 0.6460 +2167 57104 0.7140 +2167 57678 0.4880 +2167 60481 0.5240 +2167 63924 0.6780 +2167 63976 0.6450 +2167 64641 0.4260 +2167 64834 0.4870 +2167 64900 0.4130 +2167 79071 0.4780 +2167 79602 0.4020 +2167 80306 0.4990 +2167 81857 0.4990 +2167 83401 0.6950 +2167 84230 0.6390 +2167 84246 0.5020 +2167 84498 0.5230 +2167 84649 0.7860 +2167 84666 0.6060 +2167 84868 0.4100 +2167 85441 0.5390 +2167 90390 0.5310 +2167 91860 0.4520 +2167 112950 0.4990 +2167 121340 0.4800 +2167 126129 0.4970 +2167 132949 0.4090 +2167 137902 0.4410 +2167 145264 0.4270 +2167 158833 0.7440 +2167 163688 0.4520 +2167 219623 0.4670 +2167 283869 0.4020 +2167 376497 0.5410 +2167 400569 0.4990 +2167 646480 0.5170 +2167 646486 0.5250 +2167 729359 0.4960 +2168 2169 0.9650 +2168 2170 0.9290 +2168 2171 0.5230 +2168 2173 0.4700 +2168 2180 0.7260 +2168 2194 0.4870 +2168 2222 0.5200 +2168 2243 0.5320 +2168 2244 0.6420 +2168 2266 0.6330 +2168 2274 0.5080 +2168 2316 0.6270 +2168 2538 0.4080 +2168 2638 0.6900 +2168 2752 0.4180 +2168 2806 0.9600 +2168 2875 0.4680 +2168 2938 0.7170 +2168 3156 0.6980 +2168 3157 0.6690 +2168 3158 0.7520 +2168 3172 0.6900 +2168 3240 0.5320 +2168 3273 0.6320 +2168 3490 0.6440 +2168 3606 0.6220 +2168 3630 0.4710 +2168 3827 0.4240 +2168 3934 0.8160 +2168 3950 0.4510 +2168 3990 0.4490 +2168 3991 0.6650 +2168 3992 0.6010 +2168 4018 0.4300 +2168 4023 0.4170 +2168 4199 0.5930 +2168 4547 0.7190 +2168 5009 0.5070 +2168 5105 0.6170 +2168 5244 0.6100 +2168 5265 0.4970 +2168 5340 0.4970 +2168 5375 0.4150 +2168 5465 0.9640 +2168 5467 0.4390 +2168 5468 0.6060 +2168 5469 0.5500 +2168 5743 0.4690 +2168 5948 0.4750 +2168 5950 0.4180 +2168 5972 0.4770 +2168 6256 0.5990 +2168 6319 0.4390 +2168 6342 0.6140 +2168 6396 0.5050 +2168 6514 0.5390 +2168 6604 0.4990 +2168 6714 0.5150 +2168 6720 0.5490 +2168 6822 0.6260 +2168 6906 0.4810 +2168 6907 0.5210 +2168 6927 0.5310 +2168 7077 0.5770 +2168 7276 0.5940 +2168 7296 0.5260 +2168 7351 0.4060 +2168 7429 0.4250 +2168 7498 0.5010 +2168 8310 0.5780 +2168 8431 0.4490 +2168 8581 0.4050 +2168 8648 0.5460 +2168 8694 0.4760 +2168 8800 0.5570 +2168 8841 0.5030 +2168 8856 0.4090 +2168 9032 0.6550 +2168 9611 0.5220 +2168 9612 0.5050 +2168 9971 0.6230 +2168 10498 0.5040 +2168 10499 0.4990 +2168 10724 0.6760 +2168 10998 0.5770 +2168 10999 0.5790 +2168 11001 0.5410 +2168 11010 0.5050 +2168 22888 0.4170 +2168 23054 0.4990 +2168 23179 0.4990 +2168 23309 0.4990 +2168 25942 0.4990 +2168 26230 0.4990 +2168 27063 0.5120 +2168 27242 0.5000 +2168 29841 0.4990 +2168 29974 0.4780 +2168 50486 0.6380 +2168 51085 0.5580 +2168 51703 0.4140 +2168 54600 0.5470 +2168 57761 0.5360 +2168 64240 0.4900 +2168 64241 0.5360 +2168 64841 0.4610 +2168 79071 0.4030 +2168 79574 0.4070 +2168 79718 0.5040 +2168 79799 0.4850 +2168 80168 0.4810 +2168 80205 0.5100 +2168 84647 0.4760 +2168 84649 0.4650 +2168 84699 0.4130 +2168 85441 0.4990 +2168 96764 0.4990 +2168 116519 0.7210 +2168 150572 0.4180 +2168 195828 0.4080 +2168 258010 0.4540 +2168 376497 0.7040 +2168 646480 0.4770 +2169 2170 0.5190 +2169 2171 0.4700 +2169 2172 0.8080 +2169 2173 0.4590 +2169 2627 0.6250 +2169 2806 0.9570 +2169 3155 0.4470 +2169 3156 0.5690 +2169 3158 0.4880 +2169 3240 0.6080 +2169 3553 0.4090 +2169 3569 0.5130 +2169 3630 0.4930 +2169 3638 0.5980 +2169 3929 0.6710 +2169 3991 0.7020 +2169 4023 0.4110 +2169 4125 0.5050 +2169 4126 0.7610 +2169 4547 0.5820 +2169 5009 0.5640 +2169 5068 0.4230 +2169 5105 0.5670 +2169 5465 0.5800 +2169 5468 0.6290 +2169 5948 0.4730 +2169 6006 0.4180 +2169 6007 0.4080 +2169 6285 0.4350 +2169 6414 0.4100 +2169 6476 0.4110 +2169 6514 0.4430 +2169 6523 0.4620 +2169 6564 0.5250 +2169 7033 0.4610 +2169 7124 0.4550 +2169 8310 0.5180 +2169 8694 0.5930 +2169 8788 0.4410 +2169 9332 0.4420 +2169 10551 0.6460 +2169 10999 0.5420 +2169 29881 0.4070 +2169 51085 0.6510 +2169 51141 0.7250 +2169 54898 0.4790 +2169 56894 0.4050 +2169 60481 0.5420 +2169 64240 0.4340 +2169 80168 0.5380 +2169 84649 0.4130 +2169 116519 0.4160 +2169 137964 0.4100 +2169 140628 0.6710 +2169 376497 0.4490 +2169 100506658 0.4330 +2170 2172 0.6690 +2170 2173 0.4120 +2170 2180 0.6340 +2170 2181 0.4270 +2170 2194 0.6490 +2170 2280 0.5510 +2170 2634 0.4010 +2170 2660 0.4410 +2170 2806 0.9490 +2170 3030 0.4120 +2170 3094 0.4480 +2170 3248 0.4080 +2170 3516 0.4260 +2170 3630 0.4800 +2170 3638 0.4030 +2170 3672 0.4110 +2170 3673 0.4420 +2170 3934 0.4550 +2170 3991 0.7570 +2170 4023 0.5450 +2170 4151 0.7030 +2170 4321 0.4200 +2170 4633 0.5210 +2170 4634 0.5840 +2170 4637 0.4160 +2170 4747 0.4480 +2170 4854 0.4820 +2170 4879 0.4800 +2170 5166 0.4550 +2170 5224 0.4100 +2170 5295 0.4370 +2170 5346 0.4460 +2170 5465 0.6140 +2170 5467 0.5250 +2170 5468 0.6240 +2170 5617 0.4280 +2170 5834 0.4790 +2170 6319 0.5930 +2170 6517 0.4200 +2170 6720 0.5450 +2170 6776 0.4490 +2170 6876 0.5070 +2170 7136 0.4090 +2170 7137 0.7080 +2170 7139 0.6120 +2170 7350 0.5060 +2170 7352 0.4960 +2170 7436 0.4550 +2170 7447 0.4060 +2170 8309 0.4370 +2170 8310 0.4390 +2170 8694 0.5600 +2170 9370 0.5270 +2170 9518 0.4530 +2170 10449 0.6730 +2170 10519 0.4140 +2170 10891 0.4990 +2170 10999 0.5260 +2170 11001 0.5200 +2170 11188 0.4710 +2170 23175 0.5130 +2170 28965 0.6880 +2170 51703 0.4410 +2170 55902 0.6220 +2170 57104 0.4180 +2170 57678 0.5000 +2170 57698 0.4550 +2170 60481 0.4030 +2170 79071 0.4310 +2170 79611 0.4150 +2170 81616 0.4290 +2170 83401 0.5120 +2170 84532 0.4830 +2170 84649 0.4750 +2170 126129 0.5930 +2170 137964 0.5040 +2170 140628 0.4080 +2170 161247 0.4110 +2170 257240 0.4300 +2170 376497 0.5960 +2170 440503 0.4190 +2171 2172 0.6020 +2171 2173 0.4800 +2171 2180 0.4950 +2171 2194 0.6020 +2171 2280 0.5240 +2171 2281 0.5270 +2171 2335 0.5320 +2171 2806 0.8960 +2171 3516 0.5210 +2171 3576 0.4710 +2171 3630 0.4140 +2171 3868 0.4190 +2171 3991 0.7370 +2171 4023 0.4480 +2171 4851 0.4060 +2171 4854 0.7090 +2171 4869 0.4600 +2171 5223 0.4920 +2171 5346 0.4220 +2171 5465 0.7080 +2171 5467 0.9880 +2171 5468 0.8280 +2171 5914 0.6860 +2171 5917 0.5210 +2171 5948 0.4140 +2171 6256 0.6560 +2171 6278 0.8830 +2171 6319 0.4770 +2171 6699 0.4430 +2171 6720 0.4650 +2171 6876 0.5740 +2171 9370 0.5200 +2171 10113 0.4360 +2171 10537 0.4220 +2171 10999 0.5330 +2171 11001 0.4730 +2171 25920 0.4230 +2171 28965 0.4150 +2171 29114 0.5220 +2171 54209 0.4130 +2171 54541 0.4220 +2171 55752 0.4630 +2171 60481 0.4480 +2171 63924 0.4960 +2171 79071 0.4030 +2171 83401 0.4620 +2171 83953 0.4070 +2171 338324 0.4570 +2171 376497 0.4920 +2171 641371 0.4750 +2171 729359 0.4060 +2172 2173 0.5710 +2172 2264 0.5090 +2172 2494 0.7330 +2172 2806 0.8210 +2172 3938 0.4110 +2172 3991 0.5910 +2172 5205 0.5850 +2172 5244 0.4460 +2172 5375 0.6280 +2172 5465 0.6070 +2172 5469 0.4240 +2172 5948 0.4710 +2172 6256 0.6230 +2172 6257 0.5370 +2172 6523 0.4560 +2172 6554 0.8670 +2172 6555 0.9270 +2172 6579 0.4290 +2172 6822 0.4010 +2172 7376 0.5520 +2172 8431 0.8530 +2172 8647 0.8860 +2172 8648 0.5330 +2172 8856 0.7000 +2172 9213 0.6690 +2172 9420 0.4950 +2172 9965 0.5120 +2172 9971 0.9350 +2172 10062 0.7630 +2172 10257 0.7330 +2172 10499 0.5130 +2172 29881 0.4250 +2172 51302 0.4090 +2172 53630 0.4160 +2172 64240 0.5100 +2172 64241 0.4520 +2172 123264 0.7790 +2172 147710 0.4180 +2172 151306 0.5490 +2172 152831 0.5500 +2172 200931 0.8140 +2172 646480 0.6720 +2172 646486 0.6300 +2173 2194 0.4650 +2173 2247 0.4180 +2173 2290 0.4360 +2173 2596 0.4330 +2173 2670 0.7360 +2173 2806 0.6900 +2173 3030 0.4700 +2173 3032 0.4790 +2173 3083 0.5280 +2173 3516 0.7700 +2173 3991 0.6400 +2173 4440 0.4620 +2173 4684 0.4150 +2173 4760 0.5440 +2173 4762 0.4220 +2173 4851 0.6140 +2173 4854 0.7500 +2173 5080 0.7010 +2173 5354 0.4590 +2173 5454 0.4830 +2173 5465 0.4150 +2173 5595 0.5290 +2173 5764 0.5540 +2173 5803 0.5760 +2173 6281 0.5080 +2173 6285 0.7110 +2173 6335 0.4630 +2173 6469 0.4470 +2173 6506 0.4460 +2173 6507 0.7380 +2173 6656 0.5290 +2173 6657 0.6460 +2173 6663 0.5700 +2173 7431 0.4300 +2173 7545 0.4330 +2173 8320 0.5390 +2173 8842 0.6430 +2173 9289 0.4260 +2173 9415 0.4210 +2173 9794 0.5580 +2173 10046 0.5300 +2173 10215 0.6360 +2173 10381 0.4670 +2173 10716 0.5400 +2173 10763 0.7230 +2173 10818 0.4240 +2173 10840 0.4910 +2173 22809 0.4970 +2173 22938 0.4030 +2173 23657 0.5690 +2173 28514 0.4370 +2173 53938 0.4880 +2173 55534 0.5420 +2173 57348 0.4020 +2173 60481 0.4060 +2173 63973 0.6800 +2173 64764 0.5130 +2173 64919 0.4230 +2173 83401 0.4010 +2173 84076 0.5250 +2173 84441 0.5370 +2173 84525 0.5840 +2173 116448 0.4650 +2173 146713 0.6240 +2173 259266 0.4250 +2173 388585 0.6890 +2175 2176 0.9990 +2175 2177 0.9990 +2175 2178 0.9990 +2175 2187 0.9990 +2175 2188 0.9990 +2175 2189 0.9990 +2175 2237 0.5410 +2175 2305 0.4080 +2175 2547 0.6620 +2175 2588 0.4280 +2175 2956 0.6150 +2175 3014 0.5660 +2175 3280 0.9990 +2175 3320 0.7390 +2175 3326 0.7110 +2175 3551 0.4130 +2175 3845 0.5880 +2175 3978 0.4030 +2175 3981 0.4050 +2175 4174 0.5040 +2175 4176 0.4220 +2175 4292 0.5190 +2175 4361 0.5740 +2175 4436 0.7160 +2175 4437 0.6710 +2175 4595 0.4540 +2175 4609 0.5610 +2175 4683 0.4400 +2175 4751 0.4530 +2175 4809 0.4030 +2175 4851 0.6150 +2175 4869 0.4220 +2175 5111 0.4240 +2175 5290 0.4260 +2175 5395 0.5520 +2175 5424 0.5640 +2175 5426 0.5670 +2175 5591 0.6470 +2175 5610 0.5080 +2175 5688 0.4080 +2175 5690 0.5700 +2175 5728 0.4250 +2175 5884 0.5660 +2175 5888 0.9360 +2175 5889 0.8190 +2175 5890 0.6290 +2175 5892 0.7040 +2175 5893 0.5450 +2175 5901 0.6040 +2175 5932 0.4860 +2175 5980 0.4470 +2175 5982 0.7090 +2175 5984 0.5490 +2175 6047 0.5070 +2175 6117 0.9970 +2175 6118 0.6230 +2175 6119 0.6760 +2175 6233 0.5880 +2175 6597 0.9250 +2175 6687 0.5320 +2175 6709 0.8030 +2175 6772 0.4750 +2175 6790 0.4880 +2175 6905 0.4180 +2175 7015 0.4090 +2175 7124 0.4420 +2175 7156 0.9980 +2175 7157 0.5800 +2175 7158 0.4800 +2175 7184 0.5760 +2175 7272 0.5890 +2175 7311 0.5230 +2175 7314 0.5370 +2175 7316 0.5370 +2175 7398 0.7970 +2175 7486 0.8310 +2175 7507 0.5820 +2175 7514 0.4230 +2175 7515 0.4590 +2175 7516 0.6070 +2175 7517 0.7990 +2175 7518 0.4030 +2175 7520 0.4620 +2175 8318 0.5390 +2175 8438 0.7490 +2175 8558 0.5790 +2175 8914 0.4110 +2175 9150 0.4040 +2175 9156 0.6670 +2175 9400 0.4700 +2175 9401 0.6620 +2175 9656 0.4070 +2175 9735 0.4480 +2175 9918 0.4600 +2175 9937 0.7820 +2175 9997 0.4020 +2175 10293 0.4280 +2175 10459 0.6000 +2175 10721 0.5050 +2175 11073 0.4600 +2175 11200 0.6970 +2175 22909 0.7260 +2175 22980 0.4710 +2175 23649 0.4500 +2175 25788 0.4180 +2175 26054 0.4840 +2175 27030 0.4040 +2175 27131 0.8400 +2175 27343 0.4450 +2175 29089 0.9980 +2175 29098 0.4460 +2175 50485 0.4010 +2175 51119 0.4860 +2175 51455 0.5070 +2175 51750 0.5380 +2175 51755 0.6080 +2175 55120 0.9990 +2175 55159 0.7010 +2175 55215 0.9990 +2175 55247 0.4490 +2175 55388 0.4150 +2175 56852 0.5840 +2175 57599 0.7140 +2175 57697 0.9990 +2175 64421 0.5260 +2175 64858 0.6970 +2175 79007 0.5090 +2175 79648 0.4440 +2175 79728 0.9000 +2175 80010 0.9960 +2175 80198 0.7780 +2175 80233 0.9990 +2175 81620 0.4150 +2175 83990 0.9070 +2175 84126 0.9550 +2175 84142 0.4470 +2175 84464 0.9350 +2175 84501 0.4310 +2175 91442 0.9990 +2175 92822 0.7670 +2175 116028 0.9960 +2175 146956 0.7680 +2175 197342 0.6270 +2175 199990 0.9990 +2175 201254 0.9990 +2175 246243 0.4310 +2175 283383 0.5950 +2175 353497 0.7580 +2175 378708 0.9990 +2175 548593 0.7390 +2175 100533467 0.4680 +2176 2177 0.9990 +2176 2178 0.9990 +2176 2187 0.9990 +2176 2188 0.9990 +2176 2189 0.9990 +2176 2547 0.6920 +2176 2950 0.8640 +2176 2956 0.5560 +2176 3014 0.4690 +2176 3280 0.9980 +2176 3308 0.8470 +2176 3981 0.4450 +2176 4072 0.4370 +2176 4089 0.4130 +2176 4292 0.5480 +2176 4361 0.5760 +2176 4436 0.5490 +2176 4437 0.4220 +2176 4595 0.5500 +2176 4851 0.5350 +2176 4869 0.5210 +2176 5071 0.6370 +2176 5378 0.4130 +2176 5395 0.7090 +2176 5424 0.4320 +2176 5426 0.4520 +2176 5447 0.9350 +2176 5591 0.4830 +2176 5610 0.8750 +2176 5888 0.8820 +2176 5889 0.8040 +2176 5890 0.5420 +2176 5892 0.6570 +2176 5893 0.4090 +2176 5932 0.4010 +2176 5965 0.4710 +2176 5980 0.5170 +2176 5982 0.4170 +2176 5984 0.4030 +2176 6117 0.7090 +2176 6118 0.5750 +2176 6119 0.5970 +2176 6233 0.5140 +2176 6709 0.6630 +2176 6772 0.7390 +2176 6776 0.5010 +2176 6777 0.5020 +2176 6794 0.4500 +2176 7156 0.8270 +2176 7157 0.8710 +2176 7184 0.7190 +2176 7311 0.4990 +2176 7314 0.5110 +2176 7316 0.4990 +2176 7398 0.7480 +2176 7486 0.7880 +2176 7507 0.4870 +2176 7516 0.6540 +2176 7517 0.7330 +2176 7520 0.5880 +2176 7979 0.5740 +2176 8239 0.4560 +2176 8438 0.5630 +2176 9400 0.5350 +2176 9401 0.4230 +2176 9577 0.4770 +2176 9937 0.7160 +2176 10459 0.5810 +2176 10741 0.4040 +2176 11075 0.4500 +2176 11200 0.7550 +2176 22909 0.6990 +2176 27033 0.7630 +2176 27131 0.4750 +2176 29089 0.9930 +2176 51455 0.4800 +2176 51720 0.4460 +2176 51750 0.4590 +2176 55096 0.6310 +2176 55107 0.4080 +2176 55120 0.9990 +2176 55159 0.5850 +2176 55215 0.9990 +2176 56852 0.5460 +2176 57599 0.6840 +2176 57697 0.9990 +2176 64858 0.6640 +2176 79728 0.9080 +2176 80010 0.6100 +2176 80198 0.7350 +2176 80233 0.9990 +2176 83990 0.9130 +2176 84126 0.6570 +2176 84142 0.6420 +2176 84464 0.8870 +2176 90249 0.4360 +2176 91442 0.9980 +2176 116028 0.5130 +2176 146956 0.6950 +2176 169841 0.6240 +2176 197342 0.5730 +2176 199990 0.9990 +2176 201254 0.9990 +2176 340900 0.4130 +2176 353497 0.6580 +2176 378708 0.9990 +2176 548593 0.6870 +2177 2178 0.9990 +2177 2187 0.9990 +2177 2188 0.9990 +2177 2189 0.9990 +2177 2237 0.6580 +2177 2309 0.9000 +2177 2547 0.9130 +2177 2956 0.8740 +2177 2962 0.5110 +2177 2963 0.5080 +2177 2965 0.5350 +2177 2966 0.5330 +2177 2967 0.5410 +2177 2968 0.5590 +2177 3014 0.8870 +2177 3021 0.6480 +2177 3070 0.4730 +2177 3192 0.4390 +2177 3280 0.9330 +2177 3364 0.5150 +2177 3832 0.5410 +2177 3978 0.5540 +2177 3980 0.5050 +2177 3981 0.8380 +2177 4171 0.6180 +2177 4172 0.7170 +2177 4173 0.7400 +2177 4174 0.5640 +2177 4175 0.5510 +2177 4176 0.7480 +2177 4193 0.4140 +2177 4292 0.9710 +2177 4331 0.5280 +2177 4361 0.7340 +2177 4436 0.9570 +2177 4437 0.7800 +2177 4609 0.5510 +2177 4683 0.8580 +2177 4751 0.4220 +2177 4851 0.4980 +2177 4998 0.4160 +2177 5111 0.6060 +2177 5347 0.5380 +2177 5378 0.7090 +2177 5395 0.8320 +2177 5422 0.5950 +2177 5424 0.7900 +2177 5426 0.6750 +2177 5429 0.5920 +2177 5431 0.5070 +2177 5432 0.5140 +2177 5433 0.5250 +2177 5434 0.5010 +2177 5435 0.5150 +2177 5436 0.5080 +2177 5437 0.5240 +2177 5438 0.5070 +2177 5439 0.5150 +2177 5440 0.5080 +2177 5441 0.5040 +2177 5558 0.6670 +2177 5591 0.9130 +2177 5610 0.4130 +2177 5883 0.5690 +2177 5884 0.6210 +2177 5887 0.8110 +2177 5888 0.9980 +2177 5889 0.9340 +2177 5890 0.6160 +2177 5892 0.8310 +2177 5893 0.6740 +2177 5932 0.9690 +2177 5965 0.5270 +2177 5980 0.7280 +2177 5982 0.6080 +2177 5983 0.5260 +2177 5984 0.6230 +2177 5985 0.4360 +2177 6047 0.4870 +2177 6117 0.8420 +2177 6118 0.7500 +2177 6119 0.6620 +2177 6135 0.5210 +2177 6233 0.9620 +2177 6241 0.4020 +2177 6596 0.5520 +2177 6597 0.6050 +2177 6749 0.5400 +2177 6790 0.4400 +2177 6827 0.5070 +2177 6829 0.5130 +2177 6917 0.5350 +2177 6921 0.5000 +2177 6923 0.5000 +2177 6924 0.5040 +2177 7013 0.6630 +2177 7150 0.4430 +2177 7153 0.5510 +2177 7156 0.8550 +2177 7157 0.6320 +2177 7158 0.8060 +2177 7179 0.4250 +2177 7182 0.5370 +2177 7272 0.7000 +2177 7311 0.9480 +2177 7314 0.9610 +2177 7316 0.9860 +2177 7329 0.5300 +2177 7334 0.4080 +2177 7374 0.4480 +2177 7398 0.9980 +2177 7469 0.5570 +2177 7486 0.8710 +2177 7507 0.8600 +2177 7508 0.7120 +2177 7515 0.6630 +2177 7516 0.7990 +2177 7517 0.9260 +2177 7518 0.7650 +2177 7520 0.9180 +2177 7874 0.5580 +2177 7936 0.5090 +2177 7979 0.5950 +2177 8178 0.4990 +2177 8290 0.6350 +2177 8317 0.5940 +2177 8318 0.6830 +2177 8337 0.5880 +2177 8338 0.5880 +2177 8356 0.7430 +2177 8361 0.4380 +2177 8438 0.6670 +2177 8452 0.5230 +2177 8480 0.4410 +2177 8554 0.4960 +2177 8658 0.4050 +2177 8812 0.6760 +2177 8900 0.4920 +2177 8914 0.7460 +2177 9025 0.5780 +2177 9099 0.4490 +2177 9150 0.5910 +2177 9156 0.8060 +2177 9212 0.4360 +2177 9320 0.4090 +2177 9400 0.6930 +2177 9401 0.7470 +2177 9415 0.4220 +2177 9493 0.4150 +2177 9577 0.5160 +2177 9656 0.9360 +2177 9694 0.4480 +2177 9700 0.5030 +2177 9735 0.8100 +2177 9787 0.4700 +2177 9837 0.4090 +2177 9894 0.6070 +2177 9918 0.5060 +2177 9928 0.5060 +2177 9937 0.8600 +2177 10038 0.6900 +2177 10051 0.5420 +2177 10055 0.4160 +2177 10111 0.4200 +2177 10112 0.4320 +2177 10293 0.7530 +2177 10403 0.4570 +2177 10419 0.4040 +2177 10459 0.7130 +2177 10524 0.4950 +2177 10592 0.4960 +2177 10635 0.4800 +2177 10714 0.5150 +2177 10721 0.7150 +2177 10973 0.5400 +2177 11065 0.4440 +2177 11073 0.7650 +2177 11169 0.4270 +2177 11198 0.5470 +2177 11200 0.8650 +2177 22909 0.9990 +2177 22974 0.5520 +2177 22976 0.4880 +2177 23028 0.6010 +2177 23064 0.6480 +2177 23137 0.4860 +2177 23186 0.5460 +2177 23397 0.4940 +2177 23476 0.4200 +2177 23649 0.4390 +2177 25788 0.5750 +2177 25920 0.5520 +2177 27030 0.6970 +2177 27343 0.5050 +2177 29089 0.9990 +2177 29128 0.7660 +2177 50485 0.6170 +2177 51008 0.5690 +2177 51065 0.5100 +2177 51202 0.7610 +2177 51203 0.4090 +2177 51224 0.4990 +2177 51317 0.5660 +2177 51455 0.8350 +2177 51497 0.5080 +2177 51514 0.4250 +2177 51588 0.4820 +2177 51659 0.4730 +2177 51720 0.4890 +2177 51750 0.5550 +2177 51755 0.7860 +2177 51773 0.4140 +2177 54443 0.4180 +2177 54465 0.5470 +2177 54821 0.5850 +2177 54892 0.5350 +2177 54962 0.5780 +2177 55055 0.6470 +2177 55086 0.5060 +2177 55107 0.4820 +2177 55120 0.9990 +2177 55143 0.4450 +2177 55159 0.7020 +2177 55215 0.9990 +2177 55247 0.6390 +2177 55284 0.4150 +2177 55388 0.4940 +2177 56154 0.4390 +2177 56852 0.9390 +2177 56897 0.4640 +2177 56992 0.5630 +2177 57082 0.4410 +2177 57599 0.9780 +2177 57697 0.9970 +2177 63922 0.4850 +2177 63967 0.7220 +2177 64151 0.5120 +2177 64421 0.7290 +2177 64854 0.4340 +2177 64858 0.8490 +2177 79648 0.4410 +2177 79711 0.4130 +2177 79728 0.9910 +2177 79840 0.7860 +2177 79915 0.7870 +2177 79991 0.4880 +2177 80010 0.7260 +2177 80119 0.4630 +2177 80198 0.9370 +2177 80233 0.9970 +2177 81620 0.4650 +2177 83540 0.4520 +2177 83932 0.5870 +2177 83990 0.9970 +2177 84083 0.6130 +2177 84126 0.8540 +2177 84164 0.5430 +2177 84250 0.4870 +2177 84260 0.5090 +2177 84296 0.5190 +2177 84464 0.9920 +2177 84515 0.5260 +2177 84893 0.4560 +2177 90381 0.5140 +2177 91419 0.5440 +2177 91442 0.9920 +2177 113510 0.6980 +2177 115426 0.6300 +2177 116028 0.6190 +2177 125150 0.5400 +2177 126074 0.6170 +2177 128710 0.4310 +2177 146956 0.8620 +2177 147841 0.4240 +2177 151648 0.4460 +2177 157570 0.5200 +2177 165918 0.5510 +2177 197342 0.6600 +2177 199990 0.8700 +2177 201254 0.9600 +2177 201973 0.4690 +2177 219333 0.4280 +2177 221150 0.4280 +2177 221302 0.4470 +2177 246243 0.5560 +2177 253714 0.5810 +2177 254394 0.4010 +2177 257218 0.4040 +2177 259266 0.5310 +2177 259282 0.4870 +2177 286257 0.6190 +2177 348654 0.6460 +2177 353497 0.9180 +2177 378708 0.9600 +2177 404672 0.5740 +2177 440093 0.6350 +2177 440686 0.6350 +2177 548593 0.9160 +2177 653604 0.6380 +2177 100533467 0.5130 +2177 105375355 0.5400 +2178 2187 0.9990 +2178 2188 0.9990 +2178 2189 0.9990 +2178 2197 0.9920 +2178 2323 0.9320 +2178 2956 0.5910 +2178 3150 0.7980 +2178 3151 0.8000 +2178 3280 0.9980 +2178 3396 0.6780 +2178 3430 0.9110 +2178 3475 0.5170 +2178 3692 0.7830 +2178 3720 0.4730 +2178 3735 0.6250 +2178 3736 0.4690 +2178 3737 0.4690 +2178 3738 0.4690 +2178 3739 0.4690 +2178 3741 0.4690 +2178 3742 0.4690 +2178 3743 0.4690 +2178 3744 0.4690 +2178 3745 0.4690 +2178 3746 0.4690 +2178 3747 0.4690 +2178 3748 0.4690 +2178 3749 0.4690 +2178 3750 0.4690 +2178 3751 0.4690 +2178 3752 0.4690 +2178 3754 0.4690 +2178 3755 0.4710 +2178 3784 0.4690 +2178 3785 0.4690 +2178 3786 0.4690 +2178 3787 0.4690 +2178 3788 0.4690 +2178 3790 0.4700 +2178 3921 0.9770 +2178 4292 0.4410 +2178 4361 0.4190 +2178 4436 0.4050 +2178 4528 0.8260 +2178 4666 0.5210 +2178 4736 0.4750 +2178 4738 0.4090 +2178 4809 0.6870 +2178 4839 0.4860 +2178 5036 0.6890 +2178 5111 0.4410 +2178 5188 0.4050 +2178 5313 0.5420 +2178 5315 0.5490 +2178 5378 0.4490 +2178 5395 0.4950 +2178 5424 0.4770 +2178 5426 0.4130 +2178 5431 0.6930 +2178 5432 0.7830 +2178 5435 0.6200 +2178 5441 0.5390 +2178 5469 0.9320 +2178 5610 0.4240 +2178 5859 0.6610 +2178 5886 0.4970 +2178 5887 0.5020 +2178 5888 0.8210 +2178 5889 0.8110 +2178 5890 0.5060 +2178 5892 0.5420 +2178 5917 0.4010 +2178 5927 0.4490 +2178 5980 0.4620 +2178 5982 0.5160 +2178 5984 0.5290 +2178 6117 0.6050 +2178 6118 0.5430 +2178 6119 0.6300 +2178 6122 0.9290 +2178 6123 0.9290 +2178 6124 0.9810 +2178 6125 0.9830 +2178 6128 0.9750 +2178 6129 0.9300 +2178 6130 0.9750 +2178 6132 0.9780 +2178 6133 0.9780 +2178 6135 0.9820 +2178 6136 0.9540 +2178 6137 0.9780 +2178 6138 0.9760 +2178 6139 0.9390 +2178 6141 0.9770 +2178 6142 0.9800 +2178 6143 0.9750 +2178 6144 0.9760 +2178 6146 0.8700 +2178 6147 0.9800 +2178 6152 0.9780 +2178 6154 0.9440 +2178 6155 0.9760 +2178 6156 0.9790 +2178 6157 0.9750 +2178 6158 0.9540 +2178 6159 0.9580 +2178 6160 0.9810 +2178 6161 0.9750 +2178 6164 0.9700 +2178 6165 0.9730 +2178 6166 0.8260 +2178 6167 0.9630 +2178 6168 0.9570 +2178 6169 0.9540 +2178 6170 0.9070 +2178 6173 0.8260 +2178 6175 0.9790 +2178 6176 0.9700 +2178 6181 0.9380 +2178 6182 0.9530 +2178 6183 0.8890 +2178 6187 0.9780 +2178 6188 0.9810 +2178 6189 0.9750 +2178 6191 0.8630 +2178 6192 0.8630 +2178 6193 0.9810 +2178 6194 0.9760 +2178 6201 0.9760 +2178 6202 0.9760 +2178 6203 0.9800 +2178 6204 0.9270 +2178 6205 0.9820 +2178 6206 0.9750 +2178 6207 0.9770 +2178 6208 0.9310 +2178 6209 0.9830 +2178 6210 0.8540 +2178 6217 0.9760 +2178 6218 0.9760 +2178 6222 0.9810 +2178 6223 0.9760 +2178 6224 0.9800 +2178 6227 0.9740 +2178 6228 0.9780 +2178 6229 0.9820 +2178 6230 0.9790 +2178 6231 0.9750 +2178 6232 0.9200 +2178 6233 0.9760 +2178 6234 0.9690 +2178 6235 0.9700 +2178 6597 0.4130 +2178 6742 0.5310 +2178 6882 0.4050 +2178 6897 0.4170 +2178 6954 0.5650 +2178 7156 0.8530 +2178 7178 0.7100 +2178 7284 0.9710 +2178 7311 0.9790 +2178 7314 0.7360 +2178 7316 0.7360 +2178 7384 0.4680 +2178 7398 0.7170 +2178 7403 0.4980 +2178 7404 0.4890 +2178 7407 0.5700 +2178 7486 0.7520 +2178 7516 0.6650 +2178 7517 0.7890 +2178 7866 0.5270 +2178 7979 0.4570 +2178 8225 0.4830 +2178 8242 0.4490 +2178 8266 0.5050 +2178 8284 0.4490 +2178 8438 0.4940 +2178 8565 0.4590 +2178 8624 0.4480 +2178 8638 0.4940 +2178 8721 0.4470 +2178 8833 0.5770 +2178 8886 0.5710 +2178 9045 0.9740 +2178 9069 0.4580 +2178 9086 0.6950 +2178 9132 0.4690 +2178 9141 0.6650 +2178 9156 0.5620 +2178 9312 0.4690 +2178 9343 0.8120 +2178 9349 0.9810 +2178 9533 0.7690 +2178 9553 0.9550 +2178 9577 0.4750 +2178 9617 0.5380 +2178 9636 0.4940 +2178 9648 0.4170 +2178 9669 0.8680 +2178 9732 0.8990 +2178 9801 0.9710 +2178 9858 0.7680 +2178 9937 0.6700 +2178 10056 0.4920 +2178 10061 0.5280 +2178 10102 0.7350 +2178 10135 0.5360 +2178 10399 0.9740 +2178 10412 0.6880 +2178 10459 0.5830 +2178 10473 0.8050 +2178 10537 0.4940 +2178 10557 0.6870 +2178 10765 0.4490 +2178 10952 0.4920 +2178 10969 0.4140 +2178 10988 0.4700 +2178 11128 0.7460 +2178 11200 0.7120 +2178 11222 0.8370 +2178 11224 0.9780 +2178 22909 0.7120 +2178 22984 0.9260 +2178 23135 0.4890 +2178 23148 0.5170 +2178 23173 0.4700 +2178 23204 0.8540 +2178 23246 0.4050 +2178 23252 0.7200 +2178 23294 0.5850 +2178 23395 0.4830 +2178 23480 0.4980 +2178 23481 0.5870 +2178 23521 0.9320 +2178 23560 0.4060 +2178 23640 0.7730 +2178 25788 0.4010 +2178 25873 0.9750 +2178 25885 0.7460 +2178 26135 0.5490 +2178 26164 0.4630 +2178 26251 0.4690 +2178 26271 0.5650 +2178 26289 0.4440 +2178 27012 0.4690 +2178 27131 0.4470 +2178 28991 0.4760 +2178 28998 0.8290 +2178 29088 0.5880 +2178 29089 0.9930 +2178 29093 0.8370 +2178 29927 0.8700 +2178 29997 0.7530 +2178 50808 0.4440 +2178 51021 0.9690 +2178 51023 0.4240 +2178 51050 0.4090 +2178 51065 0.9160 +2178 51069 0.8400 +2178 51073 0.8380 +2178 51081 0.8570 +2178 51116 0.7720 +2178 51119 0.6440 +2178 51121 0.9400 +2178 51149 0.9210 +2178 51154 0.8900 +2178 51187 0.8640 +2178 51264 0.9670 +2178 51319 0.8870 +2178 51388 0.4020 +2178 51455 0.4090 +2178 51520 0.4540 +2178 51720 0.5730 +2178 51727 0.4440 +2178 54148 0.4130 +2178 54516 0.5360 +2178 54948 0.7780 +2178 54965 0.4050 +2178 55052 0.9690 +2178 55120 0.9990 +2178 55143 0.4980 +2178 55157 0.5050 +2178 55159 0.6030 +2178 55168 0.4360 +2178 55173 0.8890 +2178 55176 0.8700 +2178 55215 0.9990 +2178 55272 0.8870 +2178 55299 0.4060 +2178 55316 0.9160 +2178 55324 0.5230 +2178 55591 0.4660 +2178 55651 0.7410 +2178 55703 0.6910 +2178 55759 0.4090 +2178 56474 0.4490 +2178 56479 0.4690 +2178 56648 0.8020 +2178 56852 0.4300 +2178 56893 0.4050 +2178 56965 0.5420 +2178 57136 0.6270 +2178 57176 0.4220 +2178 57470 0.4970 +2178 57599 0.6820 +2178 57696 0.5100 +2178 57697 0.9990 +2178 60558 0.7170 +2178 63875 0.9710 +2178 63931 0.8370 +2178 64374 0.7730 +2178 64858 0.6670 +2178 64960 0.8380 +2178 64963 0.8340 +2178 64965 0.9700 +2178 64968 0.9700 +2178 64969 0.8900 +2178 64979 0.9700 +2178 64983 0.9670 +2178 65003 0.7770 +2178 65005 0.9700 +2178 65121 0.5800 +2178 65122 0.5800 +2178 79159 0.4600 +2178 79184 0.4080 +2178 79590 0.8360 +2178 79631 0.8060 +2178 79668 0.5420 +2178 79728 0.8840 +2178 80010 0.6130 +2178 80198 0.6610 +2178 80222 0.4100 +2178 80233 0.9990 +2178 83990 0.8950 +2178 84126 0.7460 +2178 84142 0.5050 +2178 84172 0.6930 +2178 84365 0.5370 +2178 84464 0.8800 +2178 84705 0.6160 +2178 85476 0.8060 +2178 85865 0.4590 +2178 87178 0.6290 +2178 91442 0.9950 +2178 91574 0.5470 +2178 91875 0.4490 +2178 92399 0.9060 +2178 93107 0.4690 +2178 93550 0.4940 +2178 114987 0.8610 +2178 116028 0.5970 +2178 116832 0.9080 +2178 122481 0.4440 +2178 122622 0.4110 +2178 123096 0.4790 +2178 123283 0.4040 +2178 124454 0.6610 +2178 126402 0.8550 +2178 140032 0.8630 +2178 140801 0.9320 +2178 143244 0.8020 +2178 146956 0.7360 +2178 158067 0.4440 +2178 164153 0.4940 +2178 169522 0.4690 +2178 170850 0.4690 +2178 197342 0.6140 +2178 199990 0.9990 +2178 200916 0.8730 +2178 201254 0.9990 +2178 219927 0.9710 +2178 221078 0.4740 +2178 221264 0.4440 +2178 222663 0.4290 +2178 254268 0.9070 +2178 283212 0.4450 +2178 283518 0.4690 +2178 285855 0.9350 +2178 342538 0.5170 +2178 343068 0.5800 +2178 343070 0.5800 +2178 347487 0.9180 +2178 353497 0.6460 +2178 378708 0.9990 +2178 387129 0.8370 +2178 387712 0.4260 +2178 389558 0.4480 +2178 390999 0.5800 +2178 391002 0.5800 +2178 400735 0.5800 +2178 400736 0.5800 +2178 440560 0.5800 +2178 440561 0.5800 +2178 441873 0.5800 +2178 548593 0.6760 +2178 641776 0.6880 +2178 643909 0.6880 +2178 645051 0.6450 +2178 645073 0.6450 +2178 645359 0.5800 +2178 653619 0.5800 +2178 728524 0.6880 +2178 729396 0.6450 +2178 729422 0.6450 +2178 729428 0.6450 +2178 729431 0.6450 +2178 729442 0.6450 +2178 729447 0.6450 +2178 729528 0.5800 +2178 100008586 0.6450 +2178 100132399 0.6450 +2178 100287482 0.7660 +2178 100505478 0.8050 +2178 100526842 0.9380 +2178 100529097 0.8250 +2178 100529239 0.9160 +2178 100996746 0.6880 +2178 101929983 0.5800 +2178 102724473 0.6450 +2178 105180390 0.6880 +2178 105180391 0.6880 +2178 114483834 0.5280 +2180 2181 0.8590 +2180 2182 0.7700 +2180 2194 0.9810 +2180 2309 0.4390 +2180 2597 0.6100 +2180 2639 0.5020 +2180 2806 0.5660 +2180 2819 0.4580 +2180 3030 0.7640 +2180 3032 0.6950 +2180 3033 0.5530 +2180 3034 0.4320 +2180 3156 0.4880 +2180 3157 0.4430 +2180 3158 0.4980 +2180 3295 0.6580 +2180 3418 0.5660 +2180 3630 0.4730 +2180 3638 0.4960 +2180 3818 0.4780 +2180 3952 0.5820 +2180 3990 0.7020 +2180 3991 0.5590 +2180 4023 0.9280 +2180 4780 0.5010 +2180 4783 0.4110 +2180 4837 0.4260 +2180 5071 0.4350 +2180 5105 0.4730 +2180 5166 0.6300 +2180 5230 0.5180 +2180 5346 0.5590 +2180 5406 0.6900 +2180 5407 0.6230 +2180 5465 0.8200 +2180 5467 0.4160 +2180 5468 0.7450 +2180 5469 0.4330 +2180 5534 0.4290 +2180 5538 0.8570 +2180 5825 0.6820 +2180 6256 0.6200 +2180 6319 0.6900 +2180 6342 0.6680 +2180 6517 0.4170 +2180 6604 0.4130 +2180 6720 0.6430 +2180 6721 0.6540 +2180 6907 0.4640 +2180 7167 0.5310 +2180 8309 0.7270 +2180 8310 0.6840 +2180 8513 0.7030 +2180 8612 0.4170 +2180 8613 0.4110 +2180 8648 0.5010 +2180 8674 0.4560 +2180 8694 0.8540 +2180 8773 0.4910 +2180 8800 0.4090 +2180 9370 0.4010 +2180 9374 0.8510 +2180 9388 0.7000 +2180 9415 0.4430 +2180 9588 0.4440 +2180 10005 0.4290 +2180 10134 0.4070 +2180 10135 0.4340 +2180 10157 0.4120 +2180 10162 0.4320 +2180 10226 0.5310 +2180 10449 0.7880 +2180 10455 0.5990 +2180 10498 0.4230 +2180 10499 0.4460 +2180 10554 0.5870 +2180 10555 0.5530 +2180 10628 0.4310 +2180 10891 0.5100 +2180 10965 0.4380 +2180 10998 0.7660 +2180 10999 0.8050 +2180 11000 0.7580 +2180 11001 0.8940 +2180 11343 0.8830 +2180 23054 0.4410 +2180 23175 0.5830 +2180 23205 0.7400 +2180 23305 0.6390 +2180 23417 0.4480 +2180 26063 0.4160 +2180 27034 0.4240 +2180 27349 0.5410 +2180 28965 0.8660 +2180 28976 0.4320 +2180 51099 0.5600 +2180 51144 0.4670 +2180 51703 0.6650 +2180 55289 0.4740 +2180 55554 0.4500 +2180 55825 0.4900 +2180 55902 0.6710 +2180 56894 0.4560 +2180 57104 0.8300 +2180 57678 0.5840 +2180 60481 0.5890 +2180 60496 0.4740 +2180 79071 0.5800 +2180 79575 0.4080 +2180 79718 0.4110 +2180 79888 0.4620 +2180 79966 0.5000 +2180 80205 0.4200 +2180 80339 0.7320 +2180 80347 0.7120 +2180 80724 0.5110 +2180 81616 0.7250 +2180 84129 0.5020 +2180 84263 0.6280 +2180 84532 0.5840 +2180 84649 0.7480 +2180 84803 0.5390 +2180 85441 0.4310 +2180 96764 0.4130 +2180 118788 0.4530 +2180 119548 0.6290 +2180 126129 0.8290 +2180 129642 0.5140 +2180 132949 0.9410 +2180 137964 0.6180 +2180 158833 0.4480 +2180 376497 0.8470 +2180 401494 0.4010 +2180 440503 0.4810 +2180 641371 0.4170 +2180 729359 0.4400 +2180 109703458 0.4770 +2181 2182 0.7720 +2181 2194 0.9640 +2181 2222 0.4140 +2181 2639 0.4690 +2181 2780 0.5500 +2181 2879 0.4210 +2181 3030 0.4890 +2181 3032 0.6250 +2181 3033 0.4670 +2181 3156 0.6560 +2181 3157 0.4990 +2181 3158 0.6510 +2181 3295 0.5820 +2181 3417 0.4140 +2181 3422 0.4180 +2181 3990 0.6540 +2181 3991 0.4240 +2181 4023 0.9140 +2181 4363 0.5040 +2181 4891 0.5560 +2181 4893 0.4210 +2181 5166 0.5550 +2181 5230 0.4140 +2181 5346 0.4600 +2181 5365 0.4240 +2181 5406 0.6620 +2181 5407 0.6240 +2181 5465 0.4350 +2181 5538 0.8410 +2181 5825 0.7480 +2181 5826 0.4740 +2181 6319 0.6730 +2181 6342 0.6090 +2181 6510 0.5380 +2181 6576 0.4490 +2181 6713 0.4370 +2181 6720 0.4890 +2181 7112 0.4570 +2181 7923 0.4080 +2181 8309 0.7060 +2181 8310 0.6390 +2181 8513 0.6820 +2181 8694 0.8670 +2181 8773 0.4970 +2181 9374 0.8480 +2181 9388 0.6800 +2181 9415 0.4370 +2181 9429 0.4010 +2181 9742 0.4220 +2181 10134 0.4910 +2181 10162 0.6110 +2181 10226 0.4650 +2181 10397 0.4060 +2181 10449 0.5490 +2181 10455 0.5310 +2181 10554 0.5420 +2181 10555 0.5410 +2181 10558 0.5350 +2181 10998 0.4130 +2181 10999 0.5540 +2181 11000 0.4180 +2181 11001 0.7010 +2181 11343 0.8660 +2181 22931 0.4050 +2181 23111 0.4300 +2181 23175 0.4930 +2181 23197 0.4270 +2181 23205 0.7620 +2181 23305 0.7290 +2181 23417 0.4440 +2181 26580 0.5910 +2181 27034 0.4120 +2181 27349 0.5700 +2181 28965 0.4500 +2181 28976 0.5110 +2181 51099 0.5150 +2181 51129 0.5190 +2181 51144 0.4580 +2181 51170 0.4430 +2181 51703 0.7360 +2181 54443 0.4340 +2181 54677 0.4030 +2181 54947 0.4950 +2181 54995 0.4130 +2181 55289 0.5370 +2181 55326 0.4040 +2181 55902 0.4920 +2181 56676 0.5960 +2181 56890 0.5700 +2181 56894 0.5330 +2181 56895 0.4890 +2181 57104 0.7720 +2181 57231 0.5430 +2181 57678 0.4770 +2181 60481 0.4890 +2181 60496 0.4750 +2181 79071 0.5220 +2181 79888 0.5320 +2181 79966 0.5160 +2181 80339 0.7300 +2181 80347 0.6370 +2181 80724 0.4580 +2181 81616 0.7310 +2181 84129 0.4740 +2181 84263 0.5240 +2181 84649 0.5900 +2181 84803 0.5330 +2181 116255 0.4800 +2181 119548 0.6410 +2181 126129 0.7960 +2181 129642 0.6300 +2181 132949 0.9080 +2181 137964 0.6310 +2181 158833 0.4380 +2181 254531 0.4100 +2181 284422 0.4040 +2181 376497 0.5860 +2181 729359 0.4010 +2181 109703458 0.4240 +2181 122405565 0.4040 +2182 2194 0.9690 +2182 2222 0.4780 +2182 2495 0.6200 +2182 2512 0.5000 +2182 2597 0.4180 +2182 2639 0.5160 +2182 2780 0.4310 +2182 2879 0.8340 +2182 2908 0.4440 +2182 2986 0.6260 +2182 3030 0.4550 +2182 3032 0.5720 +2182 3156 0.5100 +2182 3157 0.4030 +2182 3158 0.4780 +2182 3162 0.4180 +2182 3295 0.5440 +2182 3309 0.4010 +2182 3313 0.4820 +2182 3658 0.6110 +2182 3990 0.6420 +2182 4015 0.5010 +2182 4023 0.9050 +2182 4363 0.4740 +2182 4495 0.4460 +2182 4780 0.6450 +2182 4836 0.4120 +2182 4891 0.5590 +2182 5037 0.5180 +2182 5071 0.4720 +2182 5192 0.4060 +2182 5406 0.6540 +2182 5407 0.6240 +2182 5447 0.4200 +2182 5465 0.5850 +2182 5467 0.4210 +2182 5468 0.5880 +2182 5538 0.8450 +2182 5743 0.5400 +2182 5825 0.7020 +2182 6303 0.4110 +2182 6319 0.6350 +2182 6342 0.6110 +2182 6510 0.4910 +2182 6520 0.6280 +2182 6646 0.4290 +2182 6713 0.4460 +2182 6720 0.4380 +2182 7037 0.6570 +2182 7157 0.5500 +2182 7416 0.4370 +2182 7417 0.4480 +2182 8031 0.6230 +2182 8309 0.7110 +2182 8310 0.6300 +2182 8443 0.4350 +2182 8513 0.6820 +2182 8540 0.5110 +2182 8694 0.8190 +2182 9054 0.4370 +2182 9317 0.4110 +2182 9374 0.8510 +2182 9388 0.6600 +2182 9415 0.4410 +2182 9694 0.4420 +2182 9791 0.4210 +2182 9817 0.4110 +2182 9927 0.6040 +2182 9949 0.9360 +2182 10134 0.6910 +2182 10162 0.8230 +2182 10400 0.4180 +2182 10449 0.4950 +2182 10455 0.5500 +2182 10553 0.6710 +2182 10554 0.4810 +2182 10555 0.4530 +2182 10998 0.4100 +2182 10999 0.5290 +2182 11000 0.4960 +2182 11001 0.8390 +2182 11035 0.4290 +2182 11343 0.8680 +2182 23175 0.4050 +2182 23205 0.7540 +2182 23241 0.5930 +2182 23305 0.7310 +2182 23630 0.7850 +2182 23657 0.6840 +2182 25771 0.4490 +2182 27035 0.4110 +2182 27165 0.5210 +2182 28965 0.4260 +2182 28976 0.4340 +2182 30061 0.4720 +2182 51099 0.4230 +2182 51100 0.6430 +2182 51144 0.4040 +2182 51703 0.7390 +2182 54947 0.4070 +2182 54995 0.4540 +2182 55105 0.4740 +2182 55177 0.4450 +2182 55240 0.5330 +2182 55289 0.4980 +2182 55847 0.5710 +2182 55902 0.4640 +2182 55916 0.6320 +2182 56894 0.5580 +2182 57104 0.7460 +2182 60481 0.4180 +2182 79071 0.4230 +2182 79094 0.4460 +2182 79587 0.4160 +2182 79888 0.4450 +2182 79966 0.5060 +2182 80221 0.4210 +2182 80339 0.7120 +2182 80347 0.7200 +2182 80724 0.4480 +2182 81616 0.7280 +2182 84129 0.4590 +2182 84188 0.5050 +2182 84263 0.5240 +2182 84532 0.4300 +2182 84649 0.6360 +2182 84803 0.4230 +2182 84883 0.7000 +2182 119548 0.6410 +2182 121549 0.7260 +2182 126129 0.7820 +2182 129642 0.5500 +2182 132949 0.7960 +2182 137964 0.5020 +2182 150696 0.4020 +2182 158833 0.4150 +2182 197259 0.4240 +2182 254531 0.4350 +2182 284422 0.4040 +2182 376497 0.5470 +2182 493861 0.4200 +2182 109703458 0.4240 +2182 122405565 0.4040 +2184 2271 0.8710 +2184 2538 0.6820 +2184 2597 0.4040 +2184 2805 0.4070 +2184 2806 0.5880 +2184 2875 0.4830 +2184 2954 0.9970 +2184 3033 0.4290 +2184 3081 0.9450 +2184 3155 0.5010 +2184 3171 0.4250 +2184 3172 0.4110 +2184 3242 0.9930 +2184 3561 0.5450 +2184 3712 0.4700 +2184 4141 0.4490 +2184 5008 0.5220 +2184 5009 0.4760 +2184 5053 0.6000 +2184 5236 0.5370 +2184 5265 0.4050 +2184 5328 0.6610 +2184 5591 0.4030 +2184 5728 0.4560 +2184 5896 0.5310 +2184 6389 0.8540 +2184 6390 0.8300 +2184 6391 0.8230 +2184 6392 0.8050 +2184 6652 0.6220 +2184 6898 0.9350 +2184 7276 0.4800 +2184 7407 0.5360 +2184 7915 0.4630 +2184 8564 0.5840 +2184 8659 0.5240 +2184 8942 0.5070 +2184 9241 0.5740 +2184 9521 0.4180 +2184 10840 0.4220 +2184 25774 0.4070 +2184 51011 0.4310 +2184 51122 0.5180 +2184 51318 0.4190 +2184 54205 0.4240 +2184 54511 0.5100 +2184 55179 0.5020 +2184 81889 0.9740 +2184 84842 0.6670 +2184 143941 0.5770 +2184 151313 0.4510 +2184 653689 0.4070 +2185 2242 0.4810 +2185 2268 0.9490 +2185 2335 0.4850 +2185 2534 0.9190 +2185 2597 0.4260 +2185 2768 0.9520 +2185 2885 0.9510 +2185 2890 0.6400 +2185 2891 0.6390 +2185 2892 0.5990 +2185 2893 0.5660 +2185 2895 0.5500 +2185 2898 0.5710 +2185 2899 0.5790 +2185 2900 0.5590 +2185 2901 0.4140 +2185 2902 0.6620 +2185 2903 0.8460 +2185 2904 0.7440 +2185 2905 0.5810 +2185 2906 0.5610 +2185 2932 0.5070 +2185 2934 0.6520 +2185 3055 0.9300 +2185 3059 0.7610 +2185 3127 0.5070 +2185 3320 0.6540 +2185 3359 0.5440 +2185 3383 0.4160 +2185 3479 0.5840 +2185 3575 0.4210 +2185 3611 0.6940 +2185 3630 0.6070 +2185 3635 0.5960 +2185 3676 0.9170 +2185 3678 0.9170 +2185 3683 0.9220 +2185 3685 0.5990 +2185 3688 0.9530 +2185 3689 0.9600 +2185 3690 0.8720 +2185 3693 0.5380 +2185 3716 0.6650 +2185 3717 0.6500 +2185 3718 0.9420 +2185 3725 0.4740 +2185 3791 0.5970 +2185 3827 0.4520 +2185 3937 0.6180 +2185 4067 0.9900 +2185 4077 0.4880 +2185 4118 0.4120 +2185 4131 0.4140 +2185 4137 0.5100 +2185 4145 0.7620 +2185 4162 0.4940 +2185 4205 0.4970 +2185 4208 0.7040 +2185 4209 0.4390 +2185 4214 0.4380 +2185 4318 0.4270 +2185 4478 0.4070 +2185 4734 0.6240 +2185 4739 0.7560 +2185 4772 0.4110 +2185 4867 0.7890 +2185 5058 0.4780 +2185 5062 0.4360 +2185 5063 0.4270 +2185 5170 0.5290 +2185 5256 0.4810 +2185 5265 0.5320 +2185 5290 0.5820 +2185 5295 0.4280 +2185 5335 0.4650 +2185 5336 0.6100 +2185 5338 0.5660 +2185 5339 0.4110 +2185 5341 0.5110 +2185 5362 0.4400 +2185 5578 0.4790 +2185 5580 0.6770 +2185 5594 0.5080 +2185 5599 0.4100 +2185 5728 0.4690 +2185 5747 0.9840 +2185 5770 0.5320 +2185 5777 0.6730 +2185 5781 0.5910 +2185 5782 0.8840 +2185 5829 0.9990 +2185 5880 0.9360 +2185 5881 0.9120 +2185 5921 0.6580 +2185 5962 0.4120 +2185 6093 0.6120 +2185 6195 0.5310 +2185 6391 0.4550 +2185 6461 0.5190 +2185 6464 0.7870 +2185 6513 0.5970 +2185 6550 0.6660 +2185 6653 0.6510 +2185 6654 0.5460 +2185 6714 0.9990 +2185 6721 0.4250 +2185 6774 0.6420 +2185 6850 0.6920 +2185 7041 0.9870 +2185 7074 0.5560 +2185 7084 0.4180 +2185 7094 0.8390 +2185 7124 0.4120 +2185 7157 0.4400 +2185 7226 0.6390 +2185 7409 0.7570 +2185 7414 0.9280 +2185 7430 0.4070 +2185 7454 0.6810 +2185 7535 0.4940 +2185 7837 0.4150 +2185 7852 0.4040 +2185 8301 0.6170 +2185 8412 0.4180 +2185 8440 0.4110 +2185 8470 0.4180 +2185 8826 0.5020 +2185 8853 0.8430 +2185 8932 0.5990 +2185 8935 0.5470 +2185 9021 0.5850 +2185 9138 0.9370 +2185 9177 0.5440 +2185 9404 0.9940 +2185 9448 0.4890 +2185 9475 0.6130 +2185 9564 0.9980 +2185 9600 0.9440 +2185 9618 0.5920 +2185 9815 0.4470 +2185 9821 0.9770 +2185 10015 0.5240 +2185 10109 0.4120 +2185 10154 0.4160 +2185 10207 0.5350 +2185 10347 0.6380 +2185 10368 0.5650 +2185 10369 0.5780 +2185 10519 0.4160 +2185 10634 0.5140 +2185 10658 0.5950 +2185 10672 0.4170 +2185 10979 0.6370 +2185 23365 0.9250 +2185 23499 0.4720 +2185 23607 0.5830 +2185 23646 0.4150 +2185 26499 0.4740 +2185 27091 0.5520 +2185 27092 0.5400 +2185 27130 0.5360 +2185 28964 0.6540 +2185 29760 0.5590 +2185 29941 0.4340 +2185 50807 0.7690 +2185 50855 0.5240 +2185 51185 0.4030 +2185 51206 0.4230 +2185 51314 0.6970 +2185 51338 0.4010 +2185 51806 0.6850 +2185 53343 0.6030 +2185 54209 0.4610 +2185 54518 0.5510 +2185 55063 0.6600 +2185 55742 0.5700 +2185 56288 0.4700 +2185 56903 0.6820 +2185 57091 0.7600 +2185 57403 0.4730 +2185 57605 0.8760 +2185 58480 0.7160 +2185 58512 0.6320 +2185 59283 0.5540 +2185 59284 0.5520 +2185 64231 0.5940 +2185 64283 0.9250 +2185 64398 0.5470 +2185 79658 0.5790 +2185 79890 0.6160 +2185 80005 0.6850 +2185 81619 0.5430 +2185 81704 0.6600 +2185 83394 0.8800 +2185 83660 0.7890 +2185 84867 0.5260 +2185 85477 0.5350 +2185 91860 0.6850 +2185 93145 0.5400 +2185 116443 0.5840 +2185 116444 0.5860 +2185 123041 0.5850 +2185 137902 0.4100 +2185 140885 0.7880 +2185 149111 0.5400 +2185 163688 0.6850 +2185 170572 0.5420 +2185 200576 0.5240 +2185 200909 0.5420 +2185 245802 0.4030 +2185 253260 0.5120 +2185 254263 0.5400 +2185 261734 0.9040 +2185 285242 0.5420 +2185 375567 0.5400 +2185 388336 0.5400 +2185 402117 0.5400 +2185 440829 0.5690 +2185 643680 0.4710 +2185 653361 0.4940 +2185 729956 0.5490 +2185 729993 0.5400 +2186 3014 0.4010 +2186 3015 0.8440 +2186 3020 0.9090 +2186 3021 0.9980 +2186 3065 0.4950 +2186 3070 0.4330 +2186 3159 0.4610 +2186 3205 0.4300 +2186 3224 0.6210 +2186 3622 0.7770 +2186 3720 0.5070 +2186 4087 0.4020 +2186 4137 0.4010 +2186 4150 0.7660 +2186 4297 0.5430 +2186 5460 0.4160 +2186 5464 0.5240 +2186 5725 0.4130 +2186 5927 0.4990 +2186 5928 0.9960 +2186 5929 0.4530 +2186 5931 0.9680 +2186 6594 0.9990 +2186 6595 0.6660 +2186 6597 0.7770 +2186 6599 0.4390 +2186 6601 0.4280 +2186 6603 0.4690 +2186 6651 0.4030 +2186 6730 0.4020 +2186 6880 0.4160 +2186 7023 0.7440 +2186 7391 0.5880 +2186 7403 0.5090 +2186 7994 0.4510 +2186 8019 0.4450 +2186 8289 0.4960 +2186 8290 0.9970 +2186 8294 0.5070 +2186 8349 0.4650 +2186 8350 0.9590 +2186 8351 0.9070 +2186 8352 0.9490 +2186 8353 0.9500 +2186 8354 0.9070 +2186 8355 0.9070 +2186 8356 0.9960 +2186 8357 0.9070 +2186 8358 0.9070 +2186 8361 0.9040 +2186 8369 0.7560 +2186 8467 0.9990 +2186 8968 0.9070 +2186 9031 0.8820 +2186 9070 0.4040 +2186 9169 0.5030 +2186 9557 0.4910 +2186 9611 0.7100 +2186 9682 0.6190 +2186 9736 0.6150 +2186 9739 0.6110 +2186 9817 0.5660 +2186 10042 0.9700 +2186 10513 0.4190 +2186 10524 0.4110 +2186 10664 0.4570 +2186 10847 0.4720 +2186 10919 0.5250 +2186 10933 0.6720 +2186 10943 0.4020 +2186 10951 0.5090 +2186 11091 0.7660 +2186 11143 0.4370 +2186 11177 0.9350 +2186 11335 0.5140 +2186 23049 0.4670 +2186 23081 0.4960 +2186 23091 0.4010 +2186 23195 0.4820 +2186 23215 0.8220 +2186 23394 0.7410 +2186 23469 0.6800 +2186 23476 0.6830 +2186 23522 0.5640 +2186 25836 0.8060 +2186 25942 0.4900 +2186 25962 0.5290 +2186 27068 0.5200 +2186 27332 0.4460 +2186 27443 0.9250 +2186 29072 0.7680 +2186 29947 0.5930 +2186 51147 0.4160 +2186 51317 0.4420 +2186 51366 0.4530 +2186 51523 0.4100 +2186 51548 0.4210 +2186 51742 0.5600 +2186 51773 0.9180 +2186 54107 0.6390 +2186 54108 0.6590 +2186 54556 0.7500 +2186 54583 0.4270 +2186 54904 0.5040 +2186 55023 0.4800 +2186 55170 0.5550 +2186 55193 0.5000 +2186 55677 0.4380 +2186 55870 0.6880 +2186 55904 0.4330 +2186 55914 0.4360 +2186 57448 0.4330 +2186 57554 0.4120 +2186 57634 0.4520 +2186 57680 0.5840 +2186 58508 0.4340 +2186 63893 0.4040 +2186 64324 0.4720 +2186 64919 0.5310 +2186 79142 0.4690 +2186 79813 0.4390 +2186 80205 0.4050 +2186 83860 0.5240 +2186 84181 0.4170 +2186 84444 0.5260 +2186 84661 0.7690 +2186 84942 0.5170 +2186 84955 0.6220 +2186 90853 0.5330 +2186 112869 0.6170 +2186 124944 0.9900 +2186 126961 0.9110 +2186 138474 0.5660 +2186 153527 0.4400 +2186 196528 0.4370 +2186 221656 0.4570 +2186 257218 0.4550 +2186 259282 0.4940 +2186 284018 0.5170 +2186 333932 0.9070 +2186 440093 0.9950 +2186 440686 0.9950 +2186 653604 0.9970 +2186 100529209 0.6170 +2187 2188 0.9990 +2187 2189 0.9990 +2187 2197 0.4110 +2187 3280 0.8000 +2187 3958 0.4200 +2187 5004 0.4230 +2187 5005 0.4810 +2187 5888 0.6060 +2187 5889 0.8400 +2187 6117 0.5500 +2187 6118 0.5930 +2187 6119 0.5970 +2187 6233 0.5460 +2187 7156 0.4200 +2187 7311 0.5130 +2187 7314 0.5380 +2187 7316 0.5380 +2187 7398 0.6810 +2187 7516 0.5200 +2187 8239 0.5030 +2187 8905 0.4170 +2187 9156 0.4540 +2187 9937 0.6490 +2187 10459 0.5610 +2187 11200 0.5720 +2187 22866 0.5020 +2187 22909 0.6920 +2187 29089 0.9960 +2187 55120 0.9990 +2187 55159 0.6380 +2187 55215 0.9990 +2187 55247 0.4190 +2187 56852 0.4880 +2187 57599 0.6680 +2187 57697 0.9990 +2187 63967 0.4770 +2187 64858 0.6690 +2187 79728 0.8660 +2187 80198 0.7100 +2187 80233 0.9990 +2187 83990 0.9210 +2187 84126 0.6630 +2187 84464 0.9010 +2187 91442 0.9990 +2187 140462 0.4160 +2187 146956 0.6830 +2187 158747 0.5260 +2187 197342 0.5820 +2187 199990 0.9990 +2187 201254 0.9650 +2187 353497 0.6350 +2187 378708 0.9990 +2187 548593 0.6500 +2188 2189 0.9990 +2188 2547 0.5390 +2188 2956 0.5420 +2188 3014 0.4790 +2188 3280 0.9990 +2188 3845 0.4960 +2188 4292 0.5070 +2188 4361 0.4780 +2188 4436 0.4440 +2188 4851 0.5700 +2188 5395 0.4060 +2188 5610 0.4270 +2188 5728 0.5400 +2188 5888 0.7830 +2188 5889 0.8230 +2188 5890 0.4430 +2188 5892 0.5330 +2188 6045 0.5010 +2188 6117 0.5540 +2188 6118 0.5420 +2188 6119 0.6140 +2188 6233 0.5080 +2188 7156 0.8320 +2188 7311 0.4990 +2188 7314 0.4990 +2188 7316 0.4990 +2188 7398 0.7300 +2188 7486 0.7970 +2188 7507 0.4050 +2188 7516 0.5210 +2188 7517 0.6250 +2188 9156 0.4710 +2188 9937 0.6800 +2188 10459 0.5450 +2188 11200 0.6410 +2188 22909 0.6950 +2188 27030 0.4060 +2188 27131 0.4400 +2188 29089 0.9930 +2188 51455 0.4160 +2188 55120 0.9990 +2188 55159 0.5790 +2188 55215 0.9980 +2188 57599 0.6770 +2188 57697 0.9990 +2188 64858 0.6380 +2188 79184 0.4050 +2188 79728 0.8350 +2188 80010 0.9980 +2188 80198 0.6950 +2188 80233 0.9990 +2188 83990 0.8820 +2188 84126 0.6260 +2188 84142 0.4980 +2188 84464 0.8840 +2188 91442 0.9970 +2188 116028 0.5860 +2188 146956 0.6330 +2188 197342 0.5800 +2188 199990 0.9990 +2188 201254 0.9990 +2188 353497 0.6320 +2188 378708 0.9990 +2188 548593 0.6470 +2189 2237 0.5210 +2189 2547 0.5750 +2189 2956 0.5000 +2189 3014 0.5480 +2189 3280 0.9990 +2189 3895 0.4130 +2189 3978 0.4890 +2189 3981 0.4160 +2189 4171 0.5370 +2189 4292 0.5160 +2189 4361 0.4010 +2189 4436 0.5260 +2189 4437 0.4170 +2189 4595 0.4730 +2189 4851 0.5810 +2189 5395 0.4970 +2189 5424 0.5670 +2189 5591 0.4050 +2189 5610 0.5230 +2189 5888 0.8620 +2189 5889 0.9150 +2189 5890 0.6460 +2189 5892 0.6710 +2189 5980 0.4250 +2189 5984 0.5090 +2189 5987 0.4970 +2189 6117 0.9970 +2189 6118 0.5720 +2189 6119 0.6610 +2189 6233 0.5610 +2189 6709 0.5920 +2189 7156 0.9980 +2189 7157 0.4110 +2189 7265 0.4530 +2189 7311 0.5030 +2189 7314 0.5890 +2189 7316 0.5030 +2189 7321 0.4150 +2189 7398 0.7130 +2189 7415 0.4210 +2189 7486 0.7510 +2189 7507 0.4400 +2189 7515 0.6140 +2189 7516 0.8350 +2189 7517 0.9840 +2189 7837 0.4470 +2189 7979 0.4490 +2189 8239 0.4530 +2189 8318 0.4490 +2189 8438 0.5210 +2189 9088 0.5330 +2189 9156 0.4920 +2189 9401 0.5030 +2189 9577 0.5280 +2189 9937 0.6470 +2189 10459 0.6000 +2189 10844 0.4190 +2189 10935 0.9170 +2189 11200 0.4710 +2189 22909 0.7870 +2189 25788 0.4020 +2189 26277 0.4300 +2189 27131 0.4650 +2189 29089 0.9960 +2189 51455 0.4690 +2189 51720 0.4410 +2189 55120 0.9990 +2189 55159 0.6320 +2189 55215 0.9990 +2189 56852 0.5260 +2189 57599 0.6700 +2189 57697 0.9990 +2189 64858 0.6380 +2189 79728 0.8650 +2189 80198 0.7280 +2189 80233 0.9990 +2189 83878 0.4630 +2189 83990 0.8850 +2189 84057 0.4840 +2189 84126 0.9450 +2189 84142 0.4950 +2189 84464 0.9000 +2189 84720 0.5350 +2189 91442 0.9990 +2189 137902 0.4440 +2189 146956 0.7340 +2189 197342 0.5890 +2189 199990 0.9990 +2189 201254 0.9990 +2189 353497 0.7410 +2189 378708 0.9990 +2189 548593 0.6720 +2189 100533467 0.4150 +2191 2335 0.7050 +2191 2641 0.7470 +2191 2695 0.5140 +2191 2740 0.6190 +2191 3482 0.4300 +2191 3558 0.5040 +2191 3569 0.5130 +2191 3630 0.6820 +2191 3688 0.5220 +2191 3952 0.4050 +2191 4015 0.4740 +2191 4060 0.5050 +2191 4313 0.5230 +2191 5156 0.4230 +2191 5159 0.5220 +2191 5328 0.6010 +2191 5329 0.4630 +2191 5550 0.6630 +2191 5697 0.5890 +2191 5788 0.5930 +2191 6275 0.4840 +2191 6387 0.5400 +2191 6476 0.4790 +2191 6696 0.5340 +2191 7058 0.4840 +2191 7070 0.6410 +2191 8076 0.5240 +2191 8795 0.4240 +2191 8972 0.4800 +2191 10072 0.4090 +2191 10630 0.4760 +2191 10631 0.6520 +2191 23213 0.4950 +2191 29952 0.6790 +2191 51738 0.4800 +2191 54878 0.4780 +2191 91039 0.4550 +2191 131578 0.4770 +2192 2199 0.9480 +2192 2200 0.6330 +2192 2202 0.7540 +2192 2244 0.4020 +2192 2331 0.5950 +2192 2335 0.9920 +2192 3075 0.5260 +2192 3239 0.6630 +2192 3339 0.9040 +2192 3419 0.4360 +2192 3671 0.4160 +2192 3688 0.5350 +2192 3908 0.4580 +2192 3910 0.4240 +2192 3912 0.4090 +2192 3913 0.4140 +2192 3915 0.6290 +2192 4015 0.5620 +2192 4016 0.5340 +2192 4060 0.6200 +2192 4089 0.5140 +2192 4237 0.8390 +2192 4238 0.5650 +2192 4239 0.8340 +2192 4313 0.5100 +2192 4653 0.4010 +2192 4811 0.8350 +2192 4856 0.6470 +2192 4969 0.5240 +2192 5118 0.4970 +2192 5156 0.4040 +2192 5199 0.6770 +2192 5549 0.5030 +2192 5654 0.4090 +2192 5671 0.4750 +2192 5955 0.4750 +2192 6347 0.4750 +2192 6422 0.4670 +2192 6586 0.4020 +2192 6678 0.4800 +2192 6876 0.4530 +2192 7040 0.5620 +2192 7042 0.5590 +2192 7057 0.6780 +2192 7078 0.4530 +2192 7373 0.5960 +2192 7448 0.6860 +2192 8076 0.7970 +2192 8483 0.4120 +2192 9507 0.6700 +2192 9508 0.6830 +2192 9510 0.6740 +2192 10398 0.5450 +2192 10516 0.6750 +2192 10631 0.5440 +2192 11096 0.6480 +2192 11117 0.4280 +2192 11228 0.9280 +2192 23014 0.4520 +2192 26040 0.4240 +2192 30008 0.6590 +2192 54829 0.6040 +2192 56243 0.5150 +2192 57088 0.4960 +2192 63827 0.4170 +2192 80781 0.4780 +2192 84955 0.6380 +2192 85476 0.4310 +2192 136853 0.5050 +2192 151887 0.4500 +2192 375790 0.5420 +2192 653689 0.7730 +2193 2617 0.5340 +2193 3035 0.5900 +2193 3376 0.7360 +2193 3735 0.6760 +2193 4141 0.6750 +2193 4285 0.4460 +2193 4677 0.7080 +2193 4736 0.4190 +2193 5036 0.5420 +2193 5188 0.4350 +2193 5245 0.5190 +2193 5432 0.5850 +2193 5434 0.4380 +2193 5469 0.4430 +2193 5631 0.4030 +2193 5702 0.4270 +2193 5832 0.4270 +2193 5859 0.7010 +2193 5905 0.6190 +2193 5917 0.6240 +2193 6122 0.4110 +2193 6124 0.4050 +2193 6125 0.5340 +2193 6132 0.4530 +2193 6133 0.5090 +2193 6135 0.6130 +2193 6147 0.4580 +2193 6175 0.4120 +2193 6182 0.4590 +2193 6187 0.4590 +2193 6188 0.5270 +2193 6193 0.5080 +2193 6203 0.4700 +2193 6205 0.4460 +2193 6208 0.4150 +2193 6209 0.5330 +2193 6217 0.4150 +2193 6222 0.5270 +2193 6224 0.4220 +2193 6301 0.5350 +2193 6472 0.4260 +2193 6657 0.5120 +2193 6897 0.6620 +2193 7284 0.6760 +2193 7298 0.4070 +2193 7407 0.8730 +2193 7453 0.6690 +2193 7965 0.5470 +2193 8237 0.4520 +2193 8473 0.4760 +2193 8565 0.8540 +2193 8661 0.5020 +2193 8833 0.4350 +2193 9136 0.5650 +2193 9238 0.5590 +2193 9255 0.5900 +2193 9343 0.5740 +2193 9349 0.4280 +2193 9533 0.5430 +2193 9669 0.4680 +2193 9801 0.4520 +2193 10056 0.9990 +2193 10102 0.4070 +2193 10155 0.4180 +2193 10195 0.4480 +2193 10352 0.6290 +2193 10419 0.5230 +2193 10452 0.5600 +2193 10514 0.6510 +2193 10535 0.5330 +2193 10560 0.4360 +2193 10574 0.4810 +2193 10576 0.4320 +2193 10607 0.4430 +2193 10623 0.4040 +2193 10667 0.9580 +2193 10845 0.4080 +2193 10856 0.5300 +2193 10963 0.5050 +2193 11013 0.4530 +2193 22984 0.4840 +2193 23135 0.4890 +2193 23395 0.5680 +2193 23438 0.5550 +2193 23521 0.4070 +2193 23640 0.4210 +2193 24140 0.4700 +2193 25813 0.4420 +2193 25973 0.6320 +2193 26995 0.4310 +2193 29789 0.5730 +2193 29927 0.4170 +2193 51021 0.4810 +2193 51067 0.5950 +2193 51069 0.4500 +2193 51073 0.5610 +2193 51081 0.5550 +2193 51116 0.5020 +2193 51154 0.4460 +2193 51295 0.4100 +2193 51428 0.5180 +2193 51520 0.6240 +2193 51741 0.5260 +2193 54606 0.6930 +2193 54938 0.5060 +2193 55037 0.4350 +2193 55052 0.4380 +2193 55157 0.6670 +2193 55173 0.4120 +2193 55272 0.4900 +2193 55621 0.4690 +2193 55651 0.4340 +2193 55687 0.4090 +2193 55699 0.5450 +2193 55860 0.4640 +2193 56342 0.4760 +2193 56648 0.4030 +2193 56915 0.4990 +2193 57038 0.5760 +2193 57136 0.5490 +2193 57176 0.6310 +2193 57470 0.9690 +2193 57505 0.4620 +2193 64965 0.4510 +2193 64968 0.4060 +2193 64969 0.4540 +2193 64979 0.4210 +2193 64983 0.4940 +2193 65005 0.4250 +2193 79039 0.4440 +2193 79050 0.5430 +2193 79587 0.5960 +2193 79631 0.4440 +2193 79711 0.5600 +2193 79731 0.5080 +2193 80222 0.5150 +2193 83743 0.4590 +2193 84245 0.5430 +2193 84464 0.5430 +2193 85476 0.4630 +2193 87178 0.5520 +2193 92399 0.4200 +2193 92935 0.6050 +2193 120892 0.5100 +2193 123263 0.4150 +2193 123283 0.4680 +2193 124454 0.4130 +2193 126402 0.4720 +2193 143244 0.4030 +2193 146712 0.4400 +2193 256126 0.5590 +2193 392465 0.4770 +2193 497189 0.4270 +2193 114483834 0.4510 +2194 2203 0.5090 +2194 2222 0.5890 +2194 2224 0.5910 +2194 2271 0.4070 +2194 2299 0.4260 +2194 2308 0.5040 +2194 2316 0.5000 +2194 2319 0.4230 +2194 2475 0.5510 +2194 2538 0.6380 +2194 2539 0.5160 +2194 2597 0.7160 +2194 2639 0.4960 +2194 2645 0.6190 +2194 2673 0.4410 +2194 2744 0.4170 +2194 2806 0.5660 +2194 2819 0.4190 +2194 2821 0.4010 +2194 2875 0.5630 +2194 2932 0.4400 +2194 2997 0.4020 +2194 2998 0.4540 +2194 3030 0.7020 +2194 3032 0.5750 +2194 3033 0.6120 +2194 3091 0.6450 +2194 3098 0.4770 +2194 3099 0.6300 +2194 3156 0.8200 +2194 3157 0.8400 +2194 3158 0.7160 +2194 3178 0.4150 +2194 3248 0.4450 +2194 3283 0.5000 +2194 3284 0.4290 +2194 3290 0.4920 +2194 3292 0.4180 +2194 3293 0.6470 +2194 3295 0.4400 +2194 3303 0.5830 +2194 3304 0.5980 +2194 3309 0.4580 +2194 3320 0.5290 +2194 3326 0.6100 +2194 3417 0.4970 +2194 3418 0.4470 +2194 3422 0.5180 +2194 3553 0.4450 +2194 3569 0.4880 +2194 3576 0.4910 +2194 3630 0.7140 +2194 3638 0.7800 +2194 3643 0.4200 +2194 3667 0.6820 +2194 3712 0.4330 +2194 3725 0.4230 +2194 3728 0.4550 +2194 3795 0.4130 +2194 3849 0.4040 +2194 3875 0.4270 +2194 3952 0.7240 +2194 3988 0.4900 +2194 3991 0.7840 +2194 3992 0.6240 +2194 3995 0.4320 +2194 4023 0.6760 +2194 4047 0.6210 +2194 4051 0.4010 +2194 4174 0.4060 +2194 4199 0.5810 +2194 4200 0.4680 +2194 4232 0.4340 +2194 4547 0.6730 +2194 4597 0.6900 +2194 4598 0.6960 +2194 4609 0.5080 +2194 4706 0.8770 +2194 4800 0.5340 +2194 4801 0.5070 +2194 4802 0.5580 +2194 4852 0.4570 +2194 4942 0.4260 +2194 5076 0.4220 +2194 5091 0.6300 +2194 5096 0.5020 +2194 5105 0.7140 +2194 5106 0.6070 +2194 5139 0.4150 +2194 5140 0.5040 +2194 5163 0.5090 +2194 5164 0.4350 +2194 5166 0.6260 +2194 5209 0.4420 +2194 5211 0.5070 +2194 5213 0.5610 +2194 5214 0.4820 +2194 5226 0.5520 +2194 5264 0.4330 +2194 5313 0.6350 +2194 5315 0.6490 +2194 5346 0.7600 +2194 5360 0.5090 +2194 5406 0.4250 +2194 5465 0.7840 +2194 5467 0.5270 +2194 5468 0.8600 +2194 5562 0.4060 +2194 5575 0.5150 +2194 5577 0.5210 +2194 5595 0.5820 +2194 5728 0.5160 +2194 5834 0.4020 +2194 5836 0.4210 +2194 6195 0.4900 +2194 6198 0.6500 +2194 6203 0.4190 +2194 6248 0.4220 +2194 6256 0.6820 +2194 6257 0.5540 +2194 6272 0.4160 +2194 6307 0.5770 +2194 6309 0.5170 +2194 6319 0.9600 +2194 6347 0.4100 +2194 6389 0.5110 +2194 6464 0.5240 +2194 6470 0.4210 +2194 6472 0.4400 +2194 6510 0.4380 +2194 6513 0.5740 +2194 6514 0.4880 +2194 6517 0.6680 +2194 6518 0.4050 +2194 6576 0.6530 +2194 6646 0.4610 +2194 6652 0.4690 +2194 6667 0.5990 +2194 6697 0.4280 +2194 6713 0.7300 +2194 6720 0.9830 +2194 6721 0.8330 +2194 6737 0.6000 +2194 6774 0.4450 +2194 6794 0.4550 +2194 7069 0.8520 +2194 7082 0.4240 +2194 7086 0.5560 +2194 7124 0.4810 +2194 7155 0.4820 +2194 7157 0.5330 +2194 7167 0.6470 +2194 7249 0.4520 +2194 7264 0.4130 +2194 7350 0.6800 +2194 7351 0.5490 +2194 7352 0.4770 +2194 7358 0.4720 +2194 7376 0.7730 +2194 7391 0.7520 +2194 7392 0.6920 +2194 7436 0.4570 +2194 7545 0.4450 +2194 7704 0.4330 +2194 7780 0.6950 +2194 7832 0.4180 +2194 7837 0.4720 +2194 7923 0.9490 +2194 8192 0.4380 +2194 8202 0.5320 +2194 8204 0.5940 +2194 8277 0.4490 +2194 8309 0.6040 +2194 8310 0.6460 +2194 8513 0.4320 +2194 8529 0.4040 +2194 8612 0.4320 +2194 8647 0.4110 +2194 8660 0.4520 +2194 8661 0.6150 +2194 8694 0.7680 +2194 8720 0.4160 +2194 8801 0.4330 +2194 8803 0.4790 +2194 9085 0.5270 +2194 9099 0.7460 +2194 9112 0.4010 +2194 9122 0.4090 +2194 9123 0.4210 +2194 9213 0.5610 +2194 9249 0.4190 +2194 9370 0.7090 +2194 9415 0.7120 +2194 9420 0.5100 +2194 9425 0.5290 +2194 9454 0.4120 +2194 9517 0.4210 +2194 9540 0.5570 +2194 9563 0.4890 +2194 9588 0.4360 +2194 9611 0.4830 +2194 9619 0.5220 +2194 9663 0.4310 +2194 9862 0.6060 +2194 9898 0.4220 +2194 9946 0.5570 +2194 9971 0.4970 +2194 10015 0.4830 +2194 10044 0.4880 +2194 10062 0.8270 +2194 10155 0.6010 +2194 10202 0.5000 +2194 10226 0.4540 +2194 10295 0.4260 +2194 10397 0.4100 +2194 10449 0.5750 +2194 10455 0.5990 +2194 10493 0.5640 +2194 10551 0.5370 +2194 10554 0.5270 +2194 10555 0.5330 +2194 10558 0.4630 +2194 10598 0.4810 +2194 10858 0.4260 +2194 10873 0.4170 +2194 10891 0.6850 +2194 10901 0.5050 +2194 10998 0.4690 +2194 10999 0.4660 +2194 11001 0.5990 +2194 11007 0.4150 +2194 11339 0.4130 +2194 11343 0.5770 +2194 22931 0.5480 +2194 22937 0.6200 +2194 22982 0.5270 +2194 23001 0.4280 +2194 23175 0.6800 +2194 23181 0.5270 +2194 23205 0.9320 +2194 23207 0.4410 +2194 23235 0.4340 +2194 23305 0.9480 +2194 23411 0.6370 +2194 23417 0.8990 +2194 23476 0.5600 +2194 23600 0.4430 +2194 26063 0.5280 +2194 26137 0.4420 +2194 26227 0.4330 +2194 26275 0.4980 +2194 26291 0.5540 +2194 27034 0.4380 +2194 27043 0.5150 +2194 27159 0.4690 +2194 27235 0.4260 +2194 27349 0.9820 +2194 27430 0.4210 +2194 28965 0.5590 +2194 28976 0.5070 +2194 29886 0.4220 +2194 50814 0.7140 +2194 51004 0.4280 +2194 51085 0.8130 +2194 51099 0.5820 +2194 51102 0.9590 +2194 51109 0.5200 +2194 51141 0.6600 +2194 51144 0.7930 +2194 51170 0.4210 +2194 51171 0.4560 +2194 51302 0.4140 +2194 51341 0.4200 +2194 51400 0.4420 +2194 51601 0.8050 +2194 51703 0.9540 +2194 51741 0.4240 +2194 54596 0.5330 +2194 54677 0.4720 +2194 54819 0.5570 +2194 54851 0.4350 +2194 54898 0.5470 +2194 54995 0.9520 +2194 55268 0.4570 +2194 55289 0.5610 +2194 55301 0.9000 +2194 55304 0.5350 +2194 55347 0.4230 +2194 55711 0.7100 +2194 55825 0.5730 +2194 55833 0.4170 +2194 55862 0.5400 +2194 55902 0.7700 +2194 55937 0.4280 +2194 56603 0.4520 +2194 56894 0.4150 +2194 56898 0.5100 +2194 57104 0.7600 +2194 57406 0.4750 +2194 57552 0.4580 +2194 57609 0.5310 +2194 57678 0.7460 +2194 57687 0.5570 +2194 57818 0.4890 +2194 60481 0.6950 +2194 60496 0.9870 +2194 63924 0.7030 +2194 63976 0.4600 +2194 64087 0.4360 +2194 64118 0.5460 +2194 64240 0.5360 +2194 64241 0.4770 +2194 64834 0.5660 +2194 65985 0.6550 +2194 78999 0.4120 +2194 79071 0.9180 +2194 79154 0.4540 +2194 79442 0.6140 +2194 79611 0.4960 +2194 79728 0.8680 +2194 79888 0.4830 +2194 79966 0.7590 +2194 79993 0.5130 +2194 80146 0.4010 +2194 80221 0.5820 +2194 80270 0.4620 +2194 80339 0.6560 +2194 81616 0.9360 +2194 83401 0.6460 +2194 83451 0.4220 +2194 83693 0.6140 +2194 84076 0.4320 +2194 84188 0.7180 +2194 84263 0.5960 +2194 84529 0.5520 +2194 84532 0.6400 +2194 84649 0.8310 +2194 84706 0.4300 +2194 84803 0.5160 +2194 84816 0.5570 +2194 84869 0.9380 +2194 92579 0.5250 +2194 93517 0.4190 +2194 115817 0.4120 +2194 116255 0.5290 +2194 123263 0.4740 +2194 124359 0.5270 +2194 126129 0.6370 +2194 126410 0.4100 +2194 129831 0.4800 +2194 132949 0.9780 +2194 133522 0.4470 +2194 137902 0.4670 +2194 137964 0.6270 +2194 142680 0.4040 +2194 142910 0.4150 +2194 144811 0.6100 +2194 145482 0.6870 +2194 147015 0.4050 +2194 157506 0.4250 +2194 157869 0.5330 +2194 158833 0.4720 +2194 159963 0.4070 +2194 195814 0.4080 +2194 197322 0.9690 +2194 203068 0.4040 +2194 253175 0.5270 +2194 284001 0.6420 +2194 284273 0.5570 +2194 284422 0.4110 +2194 284541 0.4210 +2194 285440 0.4250 +2194 285555 0.5570 +2194 317749 0.4960 +2194 345275 0.4660 +2194 376497 0.7910 +2194 387787 0.8150 +2194 414301 0.4220 +2194 553115 0.4470 +2194 728378 0.5800 +2194 109703458 0.9230 +2194 122405565 0.4110 +2195 2196 0.4380 +2195 2260 0.4060 +2195 2483 0.4350 +2195 3172 0.4360 +2195 3265 0.5080 +2195 3845 0.6680 +2195 3915 0.7990 +2195 4060 0.4400 +2195 4543 0.8710 +2195 4544 0.7200 +2195 4628 0.4010 +2195 4763 0.4370 +2195 4771 0.4370 +2195 4776 0.4030 +2195 4780 0.4230 +2195 4868 0.9320 +2195 4893 0.4590 +2195 4904 0.4100 +2195 5290 0.6530 +2195 5728 0.4850 +2195 5789 0.4040 +2195 6092 0.5040 +2195 6319 0.5590 +2195 7003 0.4460 +2195 7082 0.6180 +2195 7157 0.6980 +2195 7225 0.5610 +2195 7408 0.9510 +2195 7827 0.9300 +2195 8085 0.6520 +2195 8289 0.5420 +2195 8312 0.4930 +2195 8470 0.4190 +2195 8626 0.4510 +2195 9113 0.4940 +2195 9454 0.4300 +2195 9456 0.4190 +2195 10413 0.6820 +2195 10537 0.4250 +2195 23109 0.4080 +2195 23224 0.4560 +2195 23513 0.9080 +2195 23607 0.6760 +2195 24147 0.8440 +2195 25854 0.4010 +2195 25937 0.4510 +2195 26524 0.4200 +2195 27445 0.4090 +2195 51059 0.4480 +2195 51176 0.4160 +2195 55243 0.9210 +2195 55294 0.5410 +2195 55740 0.4060 +2195 56126 0.4460 +2195 58508 0.5870 +2195 64084 0.4070 +2195 64324 0.5420 +2195 79633 0.6900 +2195 79755 0.5730 +2195 84063 0.4710 +2195 84623 0.4970 +2195 114788 0.4480 +2195 338557 0.4110 +2195 448831 0.4160 +2196 2559 0.5860 +2196 2675 0.4290 +2196 2709 0.4790 +2196 2903 0.4430 +2196 2914 0.4970 +2196 3852 0.4880 +2196 3915 0.6030 +2196 4745 0.4130 +2196 4868 0.5250 +2196 5275 0.4080 +2196 5317 0.5610 +2196 8085 0.4270 +2196 8626 0.4610 +2196 22999 0.4130 +2196 23109 0.4860 +2196 23513 0.5250 +2196 24147 0.7570 +2196 26050 0.4040 +2196 27328 0.4950 +2196 51059 0.4380 +2196 55243 0.4690 +2196 56122 0.4380 +2196 79633 0.6350 +2196 79675 0.4200 +2196 79755 0.5770 +2196 84623 0.4800 +2196 127845 0.4150 +2196 206358 0.4400 +2196 643866 0.5100 +2196 729665 0.4830 +2197 2323 0.9970 +2197 2782 0.7660 +2197 2783 0.7660 +2197 2784 0.7640 +2197 2935 0.9170 +2197 3039 0.9050 +2197 3040 0.9030 +2197 3094 0.6930 +2197 3150 0.9880 +2197 3151 0.9880 +2197 3178 0.4710 +2197 3181 0.4530 +2197 3182 0.4600 +2197 3183 0.4870 +2197 3184 0.4530 +2197 3241 0.4010 +2197 3283 0.9480 +2197 3284 0.9480 +2197 3312 0.5780 +2197 3430 0.9950 +2197 3475 0.9670 +2197 3646 0.9950 +2197 3736 0.9110 +2197 3737 0.9110 +2197 3738 0.9110 +2197 3739 0.9110 +2197 3741 0.9110 +2197 3742 0.9110 +2197 3743 0.9110 +2197 3744 0.9110 +2197 3745 0.9110 +2197 3746 0.9110 +2197 3747 0.9110 +2197 3748 0.9110 +2197 3749 0.9110 +2197 3750 0.9110 +2197 3751 0.9110 +2197 3752 0.9110 +2197 3754 0.9110 +2197 3755 0.9110 +2197 3784 0.9110 +2197 3785 0.9110 +2197 3786 0.9110 +2197 3787 0.9110 +2197 3788 0.9110 +2197 3790 0.9110 +2197 3921 0.9990 +2197 4077 0.5240 +2197 4163 0.6260 +2197 4193 0.4750 +2197 4240 0.8060 +2197 4528 0.9690 +2197 4637 0.4460 +2197 4666 0.7980 +2197 4693 0.8060 +2197 4725 0.5140 +2197 4733 0.6800 +2197 4736 0.9990 +2197 4738 0.8340 +2197 4799 0.6510 +2197 4809 0.9910 +2197 4849 0.7600 +2197 4869 0.4300 +2197 5036 0.8960 +2197 5071 0.4110 +2197 5204 0.6220 +2197 5212 0.8160 +2197 5340 0.4160 +2197 5440 0.4440 +2197 5469 0.9970 +2197 5594 0.4080 +2197 5595 0.4400 +2197 5596 0.4080 +2197 5597 0.4080 +2197 5598 0.4080 +2197 5600 0.4080 +2197 5603 0.4080 +2197 5685 0.4320 +2197 5689 0.4590 +2197 5690 0.4750 +2197 5691 0.4020 +2197 5692 0.4530 +2197 5707 0.5400 +2197 5708 0.4700 +2197 5709 0.4160 +2197 5710 0.6170 +2197 5713 0.8220 +2197 5714 0.4740 +2197 5717 0.4810 +2197 5719 0.5100 +2197 5822 0.7600 +2197 5859 0.9910 +2197 5886 0.6160 +2197 5887 0.5490 +2197 5896 0.7960 +2197 5929 0.4030 +2197 5935 0.4870 +2197 5936 0.4870 +2197 5940 0.4480 +2197 6046 0.4520 +2197 6059 0.9930 +2197 6122 0.9970 +2197 6123 0.9780 +2197 6124 0.9990 +2197 6125 0.9990 +2197 6128 0.9990 +2197 6129 0.9990 +2197 6130 0.9990 +2197 6132 0.9990 +2197 6133 0.9990 +2197 6135 0.9990 +2197 6136 0.9990 +2197 6137 0.9990 +2197 6138 0.9990 +2197 6139 0.9990 +2197 6141 0.9990 +2197 6142 0.9990 +2197 6143 0.9990 +2197 6144 0.9990 +2197 6146 0.9980 +2197 6147 0.9990 +2197 6152 0.9990 +2197 6154 0.9990 +2197 6155 0.9990 +2197 6156 0.9990 +2197 6157 0.9990 +2197 6158 0.9990 +2197 6159 0.9990 +2197 6160 0.9990 +2197 6161 0.9990 +2197 6164 0.9990 +2197 6165 0.9990 +2197 6166 0.9990 +2197 6167 0.9990 +2197 6168 0.9990 +2197 6169 0.9990 +2197 6170 0.9990 +2197 6171 0.9430 +2197 6173 0.9990 +2197 6175 0.9990 +2197 6176 0.9990 +2197 6181 0.9990 +2197 6183 0.9970 +2197 6187 0.9990 +2197 6188 0.9990 +2197 6189 0.9990 +2197 6191 0.9990 +2197 6192 0.9990 +2197 6193 0.9990 +2197 6194 0.9990 +2197 6201 0.9990 +2197 6202 0.9990 +2197 6203 0.9990 +2197 6204 0.9990 +2197 6205 0.9990 +2197 6206 0.9990 +2197 6207 0.9990 +2197 6208 0.9990 +2197 6209 0.9990 +2197 6210 0.9990 +2197 6217 0.9990 +2197 6218 0.9990 +2197 6222 0.9990 +2197 6223 0.9990 +2197 6224 0.9990 +2197 6227 0.9990 +2197 6228 0.9990 +2197 6229 0.9990 +2197 6230 0.9990 +2197 6231 0.9990 +2197 6232 0.9990 +2197 6233 0.9990 +2197 6234 0.9990 +2197 6235 0.9990 +2197 6300 0.4080 +2197 6414 0.9690 +2197 6434 0.4720 +2197 6499 0.9310 +2197 6500 0.4940 +2197 6613 0.5570 +2197 6633 0.7070 +2197 6636 0.4570 +2197 6637 0.6390 +2197 6726 0.8670 +2197 6727 0.8760 +2197 6728 0.8530 +2197 6729 0.8560 +2197 6730 0.8720 +2197 6881 0.4010 +2197 6883 0.4290 +2197 7007 0.8670 +2197 7011 0.7810 +2197 7178 0.9530 +2197 7264 0.9490 +2197 7311 0.9990 +2197 7314 0.5860 +2197 7316 0.5810 +2197 7317 0.4400 +2197 7318 0.4060 +2197 7329 0.4370 +2197 7341 0.5490 +2197 7347 0.4190 +2197 7353 0.4970 +2197 7450 0.8060 +2197 7455 0.8060 +2197 7458 0.5150 +2197 7494 0.8040 +2197 7866 0.9680 +2197 7936 0.4720 +2197 8019 0.4280 +2197 8034 0.8210 +2197 8266 0.5590 +2197 8361 0.4460 +2197 8562 0.9940 +2197 8634 0.6260 +2197 8638 0.5280 +2197 8661 0.9950 +2197 8662 0.9940 +2197 8663 0.9930 +2197 8664 0.9950 +2197 8665 0.9650 +2197 8666 0.9830 +2197 8667 0.9460 +2197 8668 0.9950 +2197 8669 0.9930 +2197 8721 0.9970 +2197 8857 0.8060 +2197 8883 0.4570 +2197 8894 0.9970 +2197 9045 0.9990 +2197 9086 0.9720 +2197 9132 0.9110 +2197 9136 0.8430 +2197 9140 0.4720 +2197 9312 0.9110 +2197 9320 0.4720 +2197 9343 0.9760 +2197 9349 0.9990 +2197 9354 0.4530 +2197 9491 0.4340 +2197 9576 0.4080 +2197 9636 0.8780 +2197 9652 0.8360 +2197 9669 0.9930 +2197 9732 0.9950 +2197 9739 0.4680 +2197 9750 0.8060 +2197 9789 0.4400 +2197 9790 0.8520 +2197 9858 0.9900 +2197 9861 0.4040 +2197 9987 0.4680 +2197 10061 0.4300 +2197 10085 0.8060 +2197 10171 0.6260 +2197 10199 0.8370 +2197 10209 0.9940 +2197 10213 0.7950 +2197 10236 0.6060 +2197 10277 0.4290 +2197 10289 0.9720 +2197 10399 0.9990 +2197 10436 0.8580 +2197 10473 0.9870 +2197 10476 0.4660 +2197 10480 0.9230 +2197 10492 0.5980 +2197 10526 0.9310 +2197 10527 0.9310 +2197 10528 0.8700 +2197 10537 0.7930 +2197 10557 0.9880 +2197 10607 0.8350 +2197 10617 0.7830 +2197 10632 0.4730 +2197 10666 0.7960 +2197 10681 0.7770 +2197 10742 0.8060 +2197 10767 0.9700 +2197 10772 0.4590 +2197 10813 0.8000 +2197 10840 0.4980 +2197 10885 0.8530 +2197 10949 0.4570 +2197 10952 0.9390 +2197 10980 0.7740 +2197 10985 0.9130 +2197 10987 0.8160 +2197 10988 0.5360 +2197 11047 0.4520 +2197 11059 0.4080 +2197 11097 0.8070 +2197 11103 0.8620 +2197 11222 0.9790 +2197 11224 0.9990 +2197 11345 0.5330 +2197 22913 0.4630 +2197 22927 0.9700 +2197 22984 0.8840 +2197 22992 0.5790 +2197 23029 0.4530 +2197 23054 0.6490 +2197 23067 0.4530 +2197 23148 0.6290 +2197 23173 0.4380 +2197 23204 0.9880 +2197 23223 0.8240 +2197 23288 0.8060 +2197 23435 0.4530 +2197 23478 0.5010 +2197 23480 0.8990 +2197 23506 0.8060 +2197 23517 0.9310 +2197 23521 0.9990 +2197 23523 0.8060 +2197 23640 0.9830 +2197 23708 0.5330 +2197 23710 0.4720 +2197 25873 0.9990 +2197 26135 0.9950 +2197 26156 0.7850 +2197 26251 0.9110 +2197 26517 0.4260 +2197 27012 0.9110 +2197 27020 0.8060 +2197 27089 0.4540 +2197 27239 0.4480 +2197 27288 0.4480 +2197 27292 0.8600 +2197 27316 0.4670 +2197 27335 0.9950 +2197 27341 0.8400 +2197 27430 0.9480 +2197 28972 0.4630 +2197 28985 0.8180 +2197 28987 0.9780 +2197 28991 0.9670 +2197 28998 0.9970 +2197 29088 0.9620 +2197 29093 0.9940 +2197 29896 0.4590 +2197 29927 0.8890 +2197 29974 0.5980 +2197 29978 0.5770 +2197 29979 0.6040 +2197 29997 0.5680 +2197 29998 0.8060 +2197 50487 0.7960 +2197 50613 0.5450 +2197 50804 0.4490 +2197 50814 0.9500 +2197 51065 0.9990 +2197 51069 0.9920 +2197 51073 0.9920 +2197 51077 0.8440 +2197 51081 0.9960 +2197 51096 0.8440 +2197 51116 0.9910 +2197 51121 0.9990 +2197 51149 0.9950 +2197 51154 0.9960 +2197 51187 0.6920 +2197 51232 0.8060 +2197 51319 0.9880 +2197 51372 0.4790 +2197 51386 0.9950 +2197 51504 0.8840 +2197 51569 0.6760 +2197 51574 0.5940 +2197 51593 0.7210 +2197 51602 0.8570 +2197 51690 0.4590 +2197 51720 0.8110 +2197 53918 0.9890 +2197 54033 0.6510 +2197 54464 0.9370 +2197 54502 0.5980 +2197 54505 0.7470 +2197 54543 0.7480 +2197 54948 0.9830 +2197 54952 0.4530 +2197 55127 0.8520 +2197 55173 0.9970 +2197 55176 0.4360 +2197 55225 0.5980 +2197 55272 0.9960 +2197 55316 0.9970 +2197 55324 0.4360 +2197 55505 0.7030 +2197 55591 0.4490 +2197 55601 0.9310 +2197 55629 0.5150 +2197 55646 0.8120 +2197 55651 0.9900 +2197 55720 0.9950 +2197 55781 0.9930 +2197 55802 0.5010 +2197 55854 0.8840 +2197 55893 0.8050 +2197 56479 0.9110 +2197 56648 0.9850 +2197 56731 0.7980 +2197 56893 0.5530 +2197 56902 0.9420 +2197 56943 0.5170 +2197 57054 0.4480 +2197 57055 0.4480 +2197 57135 0.4480 +2197 57470 0.8340 +2197 57559 0.7800 +2197 57606 0.8060 +2197 59286 0.6350 +2197 59345 0.7640 +2197 60386 0.8210 +2197 60559 0.4240 +2197 60678 0.9970 +2197 63931 0.9970 +2197 64167 0.4060 +2197 64221 0.5520 +2197 64374 0.9820 +2197 64427 0.4480 +2197 64960 0.9950 +2197 64963 0.9980 +2197 64969 0.9950 +2197 65003 0.9900 +2197 65008 0.9910 +2197 65083 0.8390 +2197 65121 0.9610 +2197 65122 0.9610 +2197 66037 0.4480 +2197 79048 0.8310 +2197 79184 0.7830 +2197 79370 0.8870 +2197 79567 0.8060 +2197 79571 0.6490 +2197 79590 0.9970 +2197 79631 0.9720 +2197 79811 0.4490 +2197 79871 0.5200 +2197 80146 0.9470 +2197 80270 0.9480 +2197 81605 0.7160 +2197 81892 0.5710 +2197 83473 0.4680 +2197 83732 0.9210 +2197 83939 0.5950 +2197 84085 0.8060 +2197 84231 0.5790 +2197 84285 0.9200 +2197 84678 0.5760 +2197 84946 0.9580 +2197 84954 0.7850 +2197 84993 0.5550 +2197 85377 0.9670 +2197 85395 0.8320 +2197 85437 0.5220 +2197 85476 0.9720 +2197 90701 0.4130 +2197 91408 0.6040 +2197 92196 0.9670 +2197 92856 0.8480 +2197 93107 0.9110 +2197 93517 0.9480 +2197 93550 0.5980 +2197 114784 0.4180 +2197 114803 0.7930 +2197 114987 0.9950 +2197 115098 0.9520 +2197 116832 0.9920 +2197 122060 0.8060 +2197 124454 0.9900 +2197 126402 0.9960 +2197 135295 0.4480 +2197 138046 0.4480 +2197 139804 0.4480 +2197 140032 0.9990 +2197 140801 0.9980 +2197 140876 0.8060 +2197 142678 0.5390 +2197 143244 0.9850 +2197 143630 0.5450 +2197 144983 0.4510 +2197 146713 0.4480 +2197 147011 0.7960 +2197 149041 0.6370 +2197 151887 0.8060 +2197 152518 0.6510 +2197 154288 0.7960 +2197 159163 0.4480 +2197 164153 0.5280 +2197 166863 0.5980 +2197 168667 0.8060 +2197 169522 0.9110 +2197 170850 0.9110 +2197 200916 0.9910 +2197 203427 0.8210 +2197 220001 0.8060 +2197 220988 0.4540 +2197 221302 0.4270 +2197 225689 0.4080 +2197 254268 0.9930 +2197 255308 0.9710 +2197 283310 0.8060 +2197 283518 0.9110 +2197 283600 0.8210 +2197 284254 0.8060 +2197 285220 0.4020 +2197 285855 0.9960 +2197 286187 0.7680 +2197 340990 0.8060 +2197 341640 0.8060 +2197 342538 0.6290 +2197 343068 0.9610 +2197 343069 0.4480 +2197 343070 0.9610 +2197 345630 0.7820 +2197 347487 0.9960 +2197 347744 0.4480 +2197 348093 0.4480 +2197 373863 0.5980 +2197 378948 0.4480 +2197 378949 0.4480 +2197 378950 0.4480 +2197 378951 0.4480 +2197 387082 0.4560 +2197 387129 0.9950 +2197 387509 0.4480 +2197 390748 0.4480 +2197 390999 0.9610 +2197 391002 0.9610 +2197 400735 0.9610 +2197 400736 0.9610 +2197 440560 0.9610 +2197 440561 0.9610 +2197 440563 0.4480 +2197 441873 0.9610 +2197 494115 0.4480 +2197 619279 0.7960 +2197 641776 0.9870 +2197 642489 0.4040 +2197 642659 0.4480 +2197 642987 0.7960 +2197 643909 0.9870 +2197 645051 0.9910 +2197 645073 0.9910 +2197 645359 0.9610 +2197 649330 0.4480 +2197 653619 0.9610 +2197 727897 0.8060 +2197 728524 0.9870 +2197 728689 0.9690 +2197 729396 0.9910 +2197 729422 0.9910 +2197 729428 0.9910 +2197 729431 0.9910 +2197 729442 0.9910 +2197 729447 0.9910 +2197 729528 0.9610 +2197 100008586 0.9910 +2197 100132399 0.9910 +2197 100287482 0.9900 +2197 100505478 0.9950 +2197 100507003 0.8060 +2197 100526842 0.9980 +2197 100529097 0.9980 +2197 100529239 0.9950 +2197 100996746 0.9870 +2197 101060301 0.4480 +2197 101929983 0.9610 +2197 102724473 0.9910 +2197 105180390 0.9870 +2197 105180391 0.9870 +2197 114483834 0.4300 +2199 2200 0.9710 +2199 2201 0.5920 +2199 2202 0.7690 +2199 2331 0.4560 +2199 2335 0.9890 +2199 2550 0.4320 +2199 3339 0.9930 +2199 3419 0.4190 +2199 3487 0.4170 +2199 3911 0.5110 +2199 3915 0.6250 +2199 4015 0.4890 +2199 4016 0.5770 +2199 4052 0.5760 +2199 4053 0.4500 +2199 4054 0.4230 +2199 4060 0.5240 +2199 4237 0.8160 +2199 4238 0.5380 +2199 4239 0.7300 +2199 4313 0.4050 +2199 4316 0.4780 +2199 4653 0.4180 +2199 4811 0.9040 +2199 4904 0.4180 +2199 5549 0.5660 +2199 6462 0.5040 +2199 6678 0.4250 +2199 6876 0.4040 +2199 7048 0.5400 +2199 7058 0.4210 +2199 7076 0.5540 +2199 7373 0.4380 +2199 7448 0.8470 +2199 7554 0.4510 +2199 8076 0.7770 +2199 8839 0.4200 +2199 9507 0.5470 +2199 9508 0.5950 +2199 9510 0.5380 +2199 10516 0.7860 +2199 10631 0.8020 +2199 10675 0.7900 +2199 11096 0.5890 +2199 11117 0.4320 +2199 22795 0.8070 +2199 30008 0.6300 +2199 56243 0.4470 +2199 57124 0.5130 +2199 63827 0.5600 +2199 64093 0.4540 +2199 80781 0.6630 +2199 81792 0.5920 +2199 81794 0.4580 +2199 85476 0.4040 +2199 90070 0.7850 +2199 114757 0.4310 +2199 136371 0.4310 +2199 140578 0.4120 +2199 151887 0.4140 +2199 284217 0.7490 +2200 2201 0.9090 +2200 2202 0.5410 +2200 2301 0.4060 +2200 2316 0.5120 +2200 2331 0.6240 +2200 2335 0.9820 +2200 2660 0.5680 +2200 2719 0.4510 +2200 2817 0.4740 +2200 3339 0.8490 +2200 3630 0.4120 +2200 3678 0.7750 +2200 3685 0.6670 +2200 3688 0.7160 +2200 3690 0.6390 +2200 3694 0.7290 +2200 3908 0.5000 +2200 3910 0.5360 +2200 3912 0.5390 +2200 3913 0.4340 +2200 3915 0.7200 +2200 4015 0.8980 +2200 4016 0.8880 +2200 4017 0.5160 +2200 4052 0.9890 +2200 4053 0.8870 +2200 4054 0.7190 +2200 4060 0.9720 +2200 4087 0.6790 +2200 4088 0.6160 +2200 4089 0.5620 +2200 4091 0.4540 +2200 4208 0.4480 +2200 4236 0.8880 +2200 4237 0.9970 +2200 4238 0.5860 +2200 4239 0.9090 +2200 4256 0.4120 +2200 4312 0.6830 +2200 4313 0.8170 +2200 4314 0.6830 +2200 4316 0.5430 +2200 4318 0.7460 +2200 4321 0.6270 +2200 4323 0.4530 +2200 4324 0.4720 +2200 4481 0.4220 +2200 4607 0.4130 +2200 4629 0.6790 +2200 4638 0.6490 +2200 4653 0.9090 +2200 4772 0.4160 +2200 4811 0.6130 +2200 4958 0.4680 +2200 4969 0.5250 +2200 4982 0.4110 +2200 5045 0.6610 +2200 5054 0.4310 +2200 5118 0.4440 +2200 5159 0.5460 +2200 5307 0.4090 +2200 5351 0.5350 +2200 5396 0.5250 +2200 5480 0.4600 +2200 5549 0.4240 +2200 5592 0.4930 +2200 5728 0.5570 +2200 5740 0.4580 +2200 6382 0.5240 +2200 6557 0.4690 +2200 6591 0.6120 +2200 6622 0.4310 +2200 6678 0.5910 +2200 6876 0.4810 +2200 7040 0.8820 +2200 7041 0.5110 +2200 7042 0.7700 +2200 7043 0.6180 +2200 7045 0.4320 +2200 7046 0.9310 +2200 7048 0.9160 +2200 7057 0.8010 +2200 7058 0.4940 +2200 7076 0.5190 +2200 7077 0.4610 +2200 7078 0.6100 +2200 7079 0.4280 +2200 7148 0.4670 +2200 7373 0.5220 +2200 7448 0.8060 +2200 7837 0.4260 +2200 8038 0.4450 +2200 8076 0.9760 +2200 8200 0.6840 +2200 8425 0.6650 +2200 9068 0.4170 +2200 9241 0.4070 +2200 9358 0.5170 +2200 9507 0.6310 +2200 9509 0.7360 +2200 9510 0.4100 +2200 9719 0.7880 +2200 10000 0.5160 +2200 10516 0.9220 +2200 10631 0.7850 +2200 11096 0.4440 +2200 11117 0.4950 +2200 11167 0.5060 +2200 11174 0.6290 +2200 22795 0.4650 +2200 22801 0.6040 +2200 22995 0.4420 +2200 23111 0.4910 +2200 23213 0.4080 +2200 23545 0.5310 +2200 23617 0.6630 +2200 25792 0.4030 +2200 27302 0.5410 +2200 30008 0.8730 +2200 50509 0.4300 +2200 51226 0.4510 +2200 51378 0.4060 +2200 54507 0.9400 +2200 54757 0.4540 +2200 54796 0.5410 +2200 54829 0.6800 +2200 56975 0.5850 +2200 56999 0.4570 +2200 60681 0.5470 +2200 79875 0.5000 +2200 80712 0.4610 +2200 81031 0.6900 +2200 81794 0.9950 +2200 83942 0.7470 +2200 84168 0.4390 +2200 84467 0.6960 +2200 84706 0.5710 +2200 84897 0.5860 +2200 89780 0.4920 +2200 89932 0.5910 +2200 92949 0.4210 +2200 134359 0.4480 +2200 151887 0.5960 +2200 170691 0.8600 +2200 339366 0.7710 +2200 375790 0.5970 +2200 389136 0.4600 +2200 441670 0.4600 +2200 642658 0.4140 +2201 2316 0.4040 +2201 2335 0.8760 +2201 2658 0.4370 +2201 3082 0.4550 +2201 3206 0.4270 +2201 3339 0.4660 +2201 3678 0.5870 +2201 3685 0.5820 +2201 3688 0.5970 +2201 3690 0.5820 +2201 3694 0.5340 +2201 3984 0.4570 +2201 4000 0.4420 +2201 4015 0.6490 +2201 4016 0.5150 +2201 4052 0.6770 +2201 4053 0.4030 +2201 4060 0.7010 +2201 4236 0.6950 +2201 4237 0.9760 +2201 4238 0.7160 +2201 4239 0.5080 +2201 4292 0.4010 +2201 4312 0.5030 +2201 4314 0.5360 +2201 4621 0.7530 +2201 4629 0.4990 +2201 4638 0.5030 +2201 4760 0.4020 +2201 4969 0.4160 +2201 4982 0.4440 +2201 5045 0.6550 +2201 5075 0.4260 +2201 5252 0.4480 +2201 5307 0.4420 +2201 5351 0.4440 +2201 6262 0.4470 +2201 6558 0.5680 +2201 7042 0.4590 +2201 7043 0.4890 +2201 7046 0.7410 +2201 7048 0.7440 +2201 7057 0.5170 +2201 7448 0.5640 +2201 7546 0.4040 +2201 8076 0.9480 +2201 8200 0.5470 +2201 9509 0.4620 +2201 9719 0.5530 +2201 10516 0.4360 +2201 10631 0.4100 +2201 11174 0.6590 +2201 23774 0.4390 +2201 27063 0.4770 +2201 27302 0.4270 +2201 51592 0.4450 +2201 54507 0.4980 +2201 54796 0.5040 +2201 54805 0.6360 +2201 81031 0.6370 +2201 81794 0.7620 +2201 84059 0.4130 +2201 84467 0.7280 +2201 84706 0.6400 +2201 84955 0.6190 +2201 90627 0.4280 +2201 92949 0.4510 +2201 134359 0.4630 +2201 170691 0.9040 +2201 219699 0.4640 +2201 339366 0.8200 +2201 653404 0.4140 +2202 2318 0.5000 +2202 2335 0.6250 +2202 2923 0.4070 +2202 3075 0.7860 +2202 3309 0.5110 +2202 3479 0.4360 +2202 3671 0.4990 +2202 3778 0.4610 +2202 3880 0.5240 +2202 3913 0.4050 +2202 4016 0.6820 +2202 4060 0.6900 +2202 4237 0.6080 +2202 4238 0.4990 +2202 4239 0.7840 +2202 4256 0.4470 +2202 4259 0.4390 +2202 4316 0.6340 +2202 4599 0.4160 +2202 4647 0.4080 +2202 4969 0.4130 +2202 5034 0.4810 +2202 5359 0.4110 +2202 5654 0.5220 +2202 5954 0.4550 +2202 6449 0.6430 +2202 6590 0.4390 +2202 6696 0.4330 +2202 6785 0.4470 +2202 7039 0.4140 +2202 7042 0.4710 +2202 7046 0.4890 +2202 7057 0.4170 +2202 7058 0.4700 +2202 7076 0.6080 +2202 7078 0.9580 +2202 7169 0.5370 +2202 7439 0.4470 +2202 7448 0.6250 +2202 7917 0.4760 +2202 8076 0.6440 +2202 8404 0.4330 +2202 8483 0.4560 +2202 9201 0.5260 +2202 10232 0.6130 +2202 10516 0.6180 +2202 10631 0.5080 +2202 11167 0.4280 +2202 11200 0.4510 +2202 26025 0.6120 +2202 29941 0.4490 +2202 30008 0.5580 +2202 59338 0.6250 +2202 60626 0.6150 +2202 60681 0.4670 +2202 80781 0.5300 +2202 83987 0.5020 +2202 84839 0.5170 +2202 89887 0.4530 +2202 91107 0.4010 +2202 151887 0.4640 +2202 387715 0.5560 +2202 389136 0.4420 +2202 390714 0.4500 +2203 2271 0.6030 +2203 2359 0.4500 +2203 2538 0.8380 +2203 2539 0.6320 +2203 2597 0.6710 +2203 2632 0.5870 +2203 2641 0.5080 +2203 2645 0.7470 +2203 2731 0.4010 +2203 2746 0.5310 +2203 2747 0.4160 +2203 2752 0.4270 +2203 2805 0.4990 +2203 2806 0.4970 +2203 2820 0.5000 +2203 2821 0.9920 +2203 2997 0.5480 +2203 2998 0.5580 +2203 3091 0.7130 +2203 3098 0.9500 +2203 3099 0.9590 +2203 3101 0.9460 +2203 3185 0.6720 +2203 3290 0.5030 +2203 3417 0.6910 +2203 3418 0.6870 +2203 3948 0.5070 +2203 4069 0.4550 +2203 4191 0.7280 +2203 4199 0.4170 +2203 4332 0.4020 +2203 4351 0.9280 +2203 4967 0.5230 +2203 5009 0.4110 +2203 5073 0.4390 +2203 5091 0.7190 +2203 5105 0.8190 +2203 5106 0.8140 +2203 5162 0.7860 +2203 5163 0.4630 +2203 5166 0.4550 +2203 5207 0.9660 +2203 5208 0.9640 +2203 5209 0.9670 +2203 5210 0.9650 +2203 5211 0.9790 +2203 5213 0.9830 +2203 5214 0.9800 +2203 5223 0.4950 +2203 5224 0.4400 +2203 5226 0.6040 +2203 5230 0.6220 +2203 5232 0.5280 +2203 5236 0.5020 +2203 5238 0.6110 +2203 5313 0.6950 +2203 5315 0.7000 +2203 5372 0.4680 +2203 5373 0.4480 +2203 5834 0.5170 +2203 5836 0.5750 +2203 5837 0.5340 +2203 6120 0.6120 +2203 6389 0.4820 +2203 6390 0.4820 +2203 6500 0.7500 +2203 6513 0.5550 +2203 6514 0.4870 +2203 6515 0.4380 +2203 6576 0.4960 +2203 6652 0.4870 +2203 6888 0.9920 +2203 7086 0.9810 +2203 7167 0.7130 +2203 7360 0.4310 +2203 7874 0.4080 +2203 8277 0.9790 +2203 8570 0.7820 +2203 8789 0.9830 +2203 8802 0.4320 +2203 8880 0.8820 +2203 8939 0.8890 +2203 9278 0.8120 +2203 9380 0.4180 +2203 9563 0.6550 +2203 10048 0.5400 +2203 10155 0.7100 +2203 10449 0.4450 +2203 10455 0.4150 +2203 10499 0.4420 +2203 10873 0.4480 +2203 10965 0.9030 +2203 22934 0.6390 +2203 25852 0.6720 +2203 26007 0.4410 +2203 26330 0.5010 +2203 27072 0.4620 +2203 27232 0.4080 +2203 51074 0.5410 +2203 51179 0.5360 +2203 53347 0.4790 +2203 54994 0.7040 +2203 55276 0.6460 +2203 55294 0.4120 +2203 55902 0.4910 +2203 57103 0.9450 +2203 57469 0.4410 +2203 57610 0.5740 +2203 57818 0.6490 +2203 63940 0.4390 +2203 64080 0.4300 +2203 64430 0.4200 +2203 79018 0.7590 +2203 80201 0.9370 +2203 80323 0.4460 +2203 81849 0.5970 +2203 83440 0.4210 +2203 84076 0.9790 +2203 84532 0.4480 +2203 84868 0.4400 +2203 84959 0.4650 +2203 92483 0.5190 +2203 92579 0.6560 +2203 122970 0.9130 +2203 130589 0.4770 +2203 130752 0.5830 +2203 137362 0.4400 +2203 160287 0.5290 +2203 283209 0.5920 +2203 387712 0.4710 +2203 441531 0.4520 +2203 641371 0.9040 +2203 729020 0.6460 +2204 2205 0.7440 +2204 2207 0.9840 +2204 2208 0.5140 +2204 2209 0.9210 +2204 2212 0.8560 +2204 2213 0.5830 +2204 2217 0.7380 +2204 2358 0.4280 +2204 3563 0.4610 +2204 3569 0.4050 +2204 3586 0.4300 +2204 3684 0.6220 +2204 3689 0.5970 +2204 3903 0.4860 +2204 3904 0.4080 +2204 4067 0.6730 +2204 5016 0.4540 +2204 5277 0.4010 +2204 5284 0.9050 +2204 6036 0.4580 +2204 6203 0.4170 +2204 6850 0.4790 +2204 7037 0.7600 +2204 7056 0.4450 +2204 7097 0.4150 +2204 7099 0.4070 +2204 7124 0.4270 +2204 7305 0.8340 +2204 9437 0.4110 +2204 10673 0.4450 +2204 10871 0.7430 +2204 11025 0.5380 +2204 22979 0.6190 +2204 30835 0.4210 +2204 54210 0.4470 +2204 79165 0.4540 +2204 83417 0.6660 +2204 83953 0.8440 +2204 114823 0.5300 +2204 135250 0.4610 +2204 199713 0.4200 +2204 374986 0.4490 +2204 100431172 0.4170 +2204 102723407 0.9140 +2205 2206 0.9960 +2205 2207 0.9970 +2205 2208 0.5330 +2205 2209 0.5300 +2205 2533 0.4240 +2205 2534 0.9470 +2205 2624 0.4150 +2205 2625 0.4110 +2205 2822 0.5180 +2205 2829 0.5130 +2205 2999 0.4400 +2205 3001 0.4430 +2205 3002 0.4430 +2205 3003 0.4460 +2205 3067 0.6450 +2205 3394 0.4310 +2205 3428 0.5110 +2205 3458 0.5160 +2205 3552 0.4130 +2205 3553 0.5910 +2205 3557 0.4470 +2205 3562 0.5010 +2205 3563 0.5290 +2205 3565 0.5710 +2205 3566 0.4090 +2205 3567 0.4790 +2205 3568 0.4220 +2205 3575 0.5520 +2205 3578 0.4550 +2205 3586 0.5060 +2205 3596 0.5440 +2205 3684 0.6000 +2205 3687 0.5950 +2205 3815 0.7140 +2205 3820 0.5740 +2205 3824 0.4100 +2205 3937 0.5140 +2205 3958 0.5320 +2205 4067 0.8600 +2205 4069 0.4810 +2205 4332 0.6720 +2205 4353 0.5010 +2205 4792 0.4320 +2205 4818 0.5380 +2205 5169 0.5200 +2205 5284 0.4260 +2205 5473 0.4360 +2205 5788 0.5940 +2205 6036 0.5500 +2205 6039 0.4690 +2205 6275 0.4550 +2205 6283 0.4280 +2205 6708 0.4430 +2205 6850 0.9690 +2205 7177 0.6310 +2205 7305 0.5800 +2205 8288 0.4740 +2205 9173 0.4260 +2205 9332 0.4530 +2205 9436 0.4470 +2205 10367 0.4910 +2205 10462 0.7060 +2205 10578 0.4930 +2205 10724 0.4990 +2205 11251 0.4930 +2205 22918 0.5560 +2205 23547 0.7110 +2205 26476 0.4980 +2205 27181 0.4120 +2205 29760 0.4300 +2205 30009 0.4080 +2205 50489 0.4780 +2205 50943 0.4110 +2205 51200 0.6590 +2205 54210 0.4340 +2205 55824 0.7270 +2205 65258 0.4230 +2205 80332 0.5130 +2205 83953 0.5580 +2205 85414 0.4650 +2205 85480 0.4070 +2205 90865 0.4660 +2205 114836 0.4400 +2205 170482 0.7010 +2205 283420 0.5650 +2205 390714 0.5440 +2205 102723407 0.9170 +2206 2207 0.9850 +2206 2213 0.5870 +2206 2217 0.4990 +2206 2534 0.9100 +2206 2624 0.7230 +2206 3001 0.4600 +2206 3003 0.4130 +2206 3067 0.8190 +2206 3123 0.5300 +2206 3459 0.4440 +2206 3557 0.4480 +2206 3559 0.4600 +2206 3560 0.4560 +2206 3562 0.4380 +2206 3565 0.5910 +2206 3567 0.4880 +2206 3574 0.4090 +2206 3575 0.4310 +2206 3578 0.4250 +2206 3596 0.4080 +2206 3635 0.4230 +2206 3660 0.4450 +2206 3820 0.4160 +2206 4067 0.9580 +2206 4069 0.5770 +2206 4288 0.4180 +2206 4353 0.4560 +2206 4818 0.6270 +2206 5007 0.4680 +2206 6036 0.4140 +2206 6356 0.4270 +2206 6369 0.5030 +2206 6571 0.4830 +2206 6850 0.9570 +2206 6947 0.6900 +2206 7130 0.4280 +2206 7177 0.8500 +2206 7293 0.4740 +2206 7356 0.4730 +2206 8115 0.4280 +2206 8288 0.4260 +2206 8718 0.5530 +2206 9092 0.6460 +2206 9332 0.4550 +2206 10344 0.4970 +2206 10392 0.4130 +2206 10578 0.5580 +2206 11005 0.6350 +2206 23547 0.7390 +2206 27306 0.4500 +2206 29802 0.4510 +2206 50615 0.5040 +2206 51131 0.6700 +2206 51200 0.5780 +2206 51237 0.6060 +2206 51348 0.4510 +2206 55024 0.6350 +2206 64232 0.8590 +2206 64499 0.6670 +2206 80332 0.4510 +2206 83416 0.5370 +2206 84767 0.5870 +2206 84824 0.6200 +2206 85414 0.7180 +2206 115352 0.4390 +2206 199786 0.5590 +2206 257019 0.4790 +2206 346689 0.4250 +2206 390714 0.5370 +2206 643680 0.4180 +2206 102723407 0.9280 +2207 2209 0.9850 +2207 2212 0.9070 +2207 2213 0.8440 +2207 2217 0.6980 +2207 2219 0.5540 +2207 2268 0.6750 +2207 2357 0.5790 +2207 2358 0.4070 +2207 2359 0.5450 +2207 2533 0.4930 +2207 2534 0.9810 +2207 2811 0.4430 +2207 2885 0.6170 +2207 3001 0.4250 +2207 3002 0.4660 +2207 3055 0.8240 +2207 3059 0.5920 +2207 3101 0.4580 +2207 3113 0.4750 +2207 3122 0.6680 +2207 3123 0.4720 +2207 3133 0.5050 +2207 3394 0.4170 +2207 3458 0.5510 +2207 3459 0.4440 +2207 3553 0.5140 +2207 3557 0.4730 +2207 3558 0.4720 +2207 3561 0.4050 +2207 3562 0.5210 +2207 3567 0.5310 +2207 3569 0.4670 +2207 3578 0.4460 +2207 3586 0.4800 +2207 3587 0.5050 +2207 3600 0.4760 +2207 3627 0.5570 +2207 3635 0.4420 +2207 3673 0.8550 +2207 3683 0.4510 +2207 3684 0.7820 +2207 3687 0.7510 +2207 3688 0.4180 +2207 3689 0.8410 +2207 3805 0.8630 +2207 3820 0.6550 +2207 3821 0.6570 +2207 3822 0.7750 +2207 3824 0.7480 +2207 3903 0.7430 +2207 3937 0.8570 +2207 4067 0.9880 +2207 4069 0.5320 +2207 4318 0.4110 +2207 4332 0.6920 +2207 4542 0.6350 +2207 4684 0.4210 +2207 4688 0.5980 +2207 4689 0.4550 +2207 4772 0.5090 +2207 4818 0.5320 +2207 5175 0.4800 +2207 5199 0.4040 +2207 5290 0.9080 +2207 5291 0.9210 +2207 5293 0.9260 +2207 5294 0.6840 +2207 5295 0.9060 +2207 5296 0.9050 +2207 5336 0.9310 +2207 5341 0.6000 +2207 5551 0.4900 +2207 5580 0.5830 +2207 5724 0.5210 +2207 5728 0.4620 +2207 5747 0.4260 +2207 5777 0.7880 +2207 5781 0.7370 +2207 5788 0.7240 +2207 5880 0.4370 +2207 6039 0.6020 +2207 6347 0.6090 +2207 6348 0.4830 +2207 6351 0.4490 +2207 6402 0.6910 +2207 6403 0.5670 +2207 6404 0.4150 +2207 6688 0.6500 +2207 6714 0.7170 +2207 6850 0.9990 +2207 7096 0.4010 +2207 7097 0.7150 +2207 7099 0.5420 +2207 7124 0.5490 +2207 7132 0.4350 +2207 7293 0.6060 +2207 7305 0.9990 +2207 7409 0.8550 +2207 7410 0.5940 +2207 7450 0.4410 +2207 7462 0.4300 +2207 7535 0.9760 +2207 7805 0.6200 +2207 7940 0.5180 +2207 7941 0.5310 +2207 8288 0.4040 +2207 8482 0.4120 +2207 8503 0.9040 +2207 8600 0.6070 +2207 8718 0.4150 +2207 8832 0.4020 +2207 8915 0.5350 +2207 9332 0.5940 +2207 9436 0.8770 +2207 9437 0.9990 +2207 9450 0.6370 +2207 9473 0.4150 +2207 9846 0.5820 +2207 9902 0.4130 +2207 10261 0.6170 +2207 10288 0.6400 +2207 10326 0.7710 +2207 10437 0.5930 +2207 10451 0.6910 +2207 10521 0.4260 +2207 10630 0.5840 +2207 10666 0.6210 +2207 10673 0.5010 +2207 10859 0.5650 +2207 10870 0.9320 +2207 10871 0.8350 +2207 10875 0.4500 +2207 10892 0.4800 +2207 11006 0.4540 +2207 11024 0.7150 +2207 11025 0.5210 +2207 11027 0.9210 +2207 11314 0.5740 +2207 11326 0.6740 +2207 22914 0.7670 +2207 22918 0.4050 +2207 23533 0.5890 +2207 23547 0.9940 +2207 23586 0.4370 +2207 23601 0.8220 +2207 26253 0.9990 +2207 27036 0.5650 +2207 27040 0.8170 +2207 27087 0.4340 +2207 27180 0.4100 +2207 29108 0.4040 +2207 29760 0.4090 +2207 29992 0.5070 +2207 30835 0.4570 +2207 50856 0.6930 +2207 51206 0.9990 +2207 51266 0.6500 +2207 51284 0.4880 +2207 51311 0.5240 +2207 51338 0.5530 +2207 51744 0.4320 +2207 53829 0.4590 +2207 54106 0.4080 +2207 54209 0.9910 +2207 54210 0.6700 +2207 55303 0.4030 +2207 56833 0.5260 +2207 58475 0.4570 +2207 64092 0.4480 +2207 64170 0.8120 +2207 64231 0.6380 +2207 64407 0.4520 +2207 64581 0.8300 +2207 79168 0.4350 +2207 80739 0.6800 +2207 83706 0.4470 +2207 83953 0.5790 +2207 84868 0.4640 +2207 93978 0.9990 +2207 117157 0.5280 +2207 124599 0.7840 +2207 126014 0.9940 +2207 127943 0.5320 +2207 128346 0.6350 +2207 140885 0.4750 +2207 146722 0.6950 +2207 146850 0.5520 +2207 160364 0.4140 +2207 170482 0.9130 +2207 219972 0.4200 +2207 259197 0.9980 +2207 283420 0.4090 +2207 284266 0.6050 +2207 338339 0.9860 +2207 340205 0.6260 +2207 342510 0.8330 +2207 346689 0.4290 +2207 390714 0.5170 +2207 653361 0.4410 +2207 100131439 0.7110 +2207 102723407 0.9190 +2208 2209 0.6820 +2208 2212 0.4870 +2208 2213 0.5420 +2208 2217 0.4530 +2208 2534 0.4530 +2208 3112 0.4530 +2208 3122 0.4040 +2208 3383 0.5230 +2208 3458 0.4390 +2208 3516 0.5770 +2208 3554 0.4540 +2208 3565 0.5990 +2208 3566 0.6410 +2208 3567 0.4230 +2208 3586 0.6070 +2208 3596 0.6460 +2208 3684 0.5900 +2208 3687 0.6060 +2208 3688 0.4270 +2208 3689 0.6050 +2208 4853 0.7540 +2208 4985 0.4020 +2208 5079 0.6800 +2208 5082 0.5420 +2208 5132 0.4670 +2208 5788 0.4180 +2208 5937 0.6390 +2208 6376 0.4260 +2208 6772 0.5390 +2208 6774 0.5420 +2208 6778 0.7480 +2208 6868 0.4180 +2208 7412 0.4770 +2208 7850 0.5110 +2208 8115 0.5040 +2208 8754 0.4350 +2208 9214 0.4450 +2208 9365 0.4390 +2208 9794 0.4990 +2208 10046 0.5310 +2208 28514 0.4250 +2208 29802 0.5290 +2208 55534 0.5140 +2208 58191 0.5490 +2208 83953 0.4120 +2208 84441 0.4990 +2208 84824 0.6280 +2208 113263 0.5390 +2208 115650 0.4270 +2209 2212 0.9230 +2209 2213 0.8380 +2209 2217 0.8970 +2209 2268 0.6100 +2209 2322 0.5640 +2209 2335 0.5030 +2209 2350 0.4270 +2209 2357 0.6480 +2209 2526 0.6720 +2209 2534 0.5410 +2209 2633 0.4330 +2209 2829 0.5810 +2209 2833 0.4070 +2209 2919 0.4370 +2209 3001 0.5300 +2209 3002 0.4820 +2209 3004 0.4600 +2209 3055 0.9600 +2209 3071 0.4520 +2209 3122 0.4600 +2209 3383 0.5240 +2209 3394 0.5020 +2209 3439 0.4450 +2209 3456 0.4110 +2209 3458 0.7160 +2209 3479 0.9870 +2209 3480 0.5570 +2209 3481 0.9430 +2209 3552 0.6620 +2209 3553 0.6510 +2209 3557 0.4180 +2209 3558 0.5450 +2209 3562 0.4160 +2209 3563 0.7760 +2209 3565 0.6090 +2209 3567 0.4320 +2209 3569 0.7230 +2209 3575 0.4130 +2209 3576 0.5310 +2209 3577 0.5680 +2209 3579 0.4210 +2209 3586 0.6310 +2209 3587 0.4270 +2209 3589 0.4260 +2209 3596 0.5090 +2209 3600 0.4130 +2209 3605 0.5040 +2209 3606 0.4010 +2209 3627 0.6130 +2209 3630 0.7770 +2209 3636 0.4460 +2209 3674 0.4520 +2209 3676 0.4140 +2209 3682 0.6970 +2209 3683 0.5530 +2209 3684 0.8510 +2209 3687 0.8160 +2209 3689 0.6590 +2209 3700 0.5190 +2209 3717 0.4440 +2209 3815 0.7260 +2209 3903 0.4110 +2209 3937 0.4890 +2209 4064 0.5190 +2209 4065 0.4060 +2209 4067 0.9390 +2209 4072 0.4180 +2209 4210 0.4470 +2209 4283 0.4560 +2209 4311 0.7460 +2209 4318 0.4230 +2209 4332 0.4180 +2209 4340 0.4010 +2209 4353 0.6230 +2209 4360 0.8350 +2209 4481 0.5710 +2209 4599 0.5680 +2209 4600 0.4930 +2209 4620 0.4420 +2209 4627 0.4420 +2209 4641 0.4150 +2209 4650 0.4030 +2209 4680 0.4660 +2209 4684 0.8220 +2209 4851 0.5300 +2209 5054 0.4520 +2209 5154 0.4980 +2209 5175 0.5550 +2209 5284 0.8300 +2209 5290 0.5940 +2209 5291 0.5390 +2209 5294 0.4900 +2209 5295 0.5520 +2209 5296 0.5140 +2209 5335 0.5600 +2209 5336 0.5860 +2209 5493 0.6040 +2209 5551 0.4210 +2209 5604 0.4690 +2209 5777 0.5790 +2209 5788 0.8050 +2209 5879 0.5270 +2209 6036 0.4070 +2209 6283 0.6380 +2209 6347 0.5880 +2209 6348 0.5160 +2209 6351 0.4740 +2209 6361 0.4070 +2209 6364 0.5110 +2209 6382 0.6170 +2209 6402 0.6130 +2209 6464 0.6130 +2209 6614 0.6730 +2209 6688 0.9490 +2209 6693 0.4250 +2209 6714 0.7720 +2209 6772 0.8800 +2209 6774 0.4170 +2209 6850 0.9860 +2209 7037 0.4790 +2209 7048 0.5220 +2209 7056 0.4630 +2209 7096 0.4590 +2209 7097 0.6320 +2209 7098 0.4200 +2209 7099 0.6430 +2209 7100 0.4670 +2209 7124 0.6480 +2209 7132 0.5830 +2209 7305 0.7060 +2209 7409 0.6520 +2209 7410 0.5500 +2209 7525 0.4500 +2209 7535 0.5700 +2209 7852 0.4290 +2209 8370 0.5240 +2209 8503 0.4420 +2209 8600 0.5270 +2209 8639 0.5420 +2209 8744 0.4750 +2209 9034 0.4420 +2209 9308 0.6750 +2209 9332 0.7920 +2209 9437 0.7110 +2209 9450 0.4060 +2209 9844 0.5230 +2209 9902 0.4510 +2209 10092 0.4040 +2209 10093 0.4020 +2209 10094 0.4090 +2209 10095 0.4110 +2209 10096 0.4140 +2209 10097 0.4140 +2209 10109 0.4530 +2209 10288 0.6390 +2209 10451 0.5620 +2209 10461 0.7010 +2209 10462 0.4730 +2209 10673 0.4720 +2209 10859 0.5650 +2209 10894 0.4030 +2209 11006 0.5660 +2209 11326 0.4150 +2209 22918 0.4320 +2209 23135 0.4020 +2209 23586 0.5940 +2209 23601 0.4680 +2209 25939 0.4130 +2209 27253 0.7350 +2209 29126 0.7120 +2209 29933 0.4420 +2209 30835 0.5840 +2209 50489 0.6520 +2209 50856 0.4060 +2209 50943 0.5450 +2209 51206 0.4460 +2209 51284 0.5610 +2209 51294 0.6820 +2209 51311 0.5670 +2209 54106 0.4680 +2209 54209 0.7110 +2209 54210 0.6990 +2209 55509 0.4700 +2209 63916 0.5020 +2209 64135 0.5000 +2209 64581 0.6360 +2209 65258 0.5440 +2209 80380 0.4960 +2209 80381 0.4510 +2209 83953 0.6460 +2209 84868 0.4130 +2209 91937 0.5340 +2209 115350 0.8070 +2209 115362 0.4890 +2209 116071 0.4200 +2209 118932 0.4770 +2209 126014 0.4130 +2209 126961 0.5880 +2209 131450 0.4690 +2209 140685 0.5200 +2209 140885 0.6430 +2209 146722 0.4300 +2209 160364 0.4500 +2209 259197 0.6000 +2209 283420 0.4840 +2209 340205 0.4620 +2209 342510 0.5050 +2209 374383 0.5680 +2209 390714 0.5010 +2209 653361 0.4100 +2209 100133941 0.5760 +2209 102723407 0.9220 +2212 2213 0.8920 +2212 2217 0.8710 +2212 2268 0.7450 +2212 2322 0.4390 +2212 2335 0.6150 +2212 2357 0.7080 +2212 2358 0.5080 +2212 2534 0.6050 +2212 2597 0.4940 +2212 2811 0.6590 +2212 2833 0.4540 +2212 2919 0.4310 +2212 2920 0.5560 +2212 3002 0.5170 +2212 3055 0.9520 +2212 3123 0.4340 +2212 3310 0.4830 +2212 3383 0.5400 +2212 3385 0.4370 +2212 3439 0.5210 +2212 3454 0.4230 +2212 3456 0.4520 +2212 3458 0.7410 +2212 3479 0.7780 +2212 3481 0.8860 +2212 3482 0.4930 +2212 3552 0.5050 +2212 3553 0.6790 +2212 3554 0.4090 +2212 3557 0.4320 +2212 3558 0.6200 +2212 3560 0.4090 +2212 3562 0.4320 +2212 3563 0.4880 +2212 3565 0.6520 +2212 3566 0.4170 +2212 3567 0.4930 +2212 3569 0.6560 +2212 3570 0.4040 +2212 3574 0.4070 +2212 3575 0.6090 +2212 3576 0.6760 +2212 3577 0.6320 +2212 3579 0.4950 +2212 3586 0.6910 +2212 3587 0.4600 +2212 3596 0.5440 +2212 3600 0.4430 +2212 3605 0.6170 +2212 3606 0.6230 +2212 3627 0.6100 +2212 3630 0.4650 +2212 3663 0.4660 +2212 3673 0.4880 +2212 3674 0.7060 +2212 3676 0.4490 +2212 3682 0.5780 +2212 3683 0.5350 +2212 3684 0.8820 +2212 3687 0.8750 +2212 3689 0.8130 +2212 3690 0.6090 +2212 3700 0.6000 +2212 3732 0.4660 +2212 3791 0.5830 +2212 3815 0.5880 +2212 3916 0.4840 +2212 3937 0.5140 +2212 3958 0.6600 +2212 4065 0.4210 +2212 4067 0.9620 +2212 4072 0.4430 +2212 4102 0.4770 +2212 4153 0.5410 +2212 4283 0.4480 +2212 4301 0.4920 +2212 4332 0.5090 +2212 4353 0.4620 +2212 4360 0.7170 +2212 4481 0.5060 +2212 4627 0.4200 +2212 4644 0.4090 +2212 4650 0.4210 +2212 4684 0.4830 +2212 4688 0.4420 +2212 4689 0.5530 +2212 5133 0.4280 +2212 5175 0.6840 +2212 5196 0.8950 +2212 5197 0.7040 +2212 5284 0.6590 +2212 5290 0.5440 +2212 5291 0.5400 +2212 5295 0.7530 +2212 5296 0.4990 +2212 5335 0.6150 +2212 5336 0.7280 +2212 5341 0.4450 +2212 5551 0.4490 +2212 5657 0.6230 +2212 5781 0.5120 +2212 5788 0.8860 +2212 5879 0.5460 +2212 5896 0.4080 +2212 5972 0.4330 +2212 6347 0.6820 +2212 6348 0.4960 +2212 6351 0.4610 +2212 6382 0.6750 +2212 6402 0.7300 +2212 6403 0.5470 +2212 6404 0.4550 +2212 6464 0.4650 +2212 6504 0.4620 +2212 6556 0.4580 +2212 6688 0.4670 +2212 6693 0.5200 +2212 6714 0.9630 +2212 6737 0.4980 +2212 6772 0.4250 +2212 6774 0.4160 +2212 6786 0.4120 +2212 6850 0.9950 +2212 7040 0.4160 +2212 7048 0.5430 +2212 7070 0.4690 +2212 7096 0.5730 +2212 7097 0.7850 +2212 7098 0.4320 +2212 7099 0.8180 +2212 7100 0.5980 +2212 7124 0.7190 +2212 7132 0.6750 +2212 7133 0.4080 +2212 7305 0.7610 +2212 7409 0.6980 +2212 7410 0.5490 +2212 7450 0.7430 +2212 7525 0.4280 +2212 7805 0.5750 +2212 7837 0.4700 +2212 7852 0.5240 +2212 8407 0.6050 +2212 8411 0.4110 +2212 8639 0.7250 +2212 9034 0.4530 +2212 9308 0.4900 +2212 9332 0.7040 +2212 9437 0.5100 +2212 9844 0.5100 +2212 10092 0.4520 +2212 10093 0.4200 +2212 10094 0.5120 +2212 10095 0.4370 +2212 10096 0.4130 +2212 10097 0.4350 +2212 10109 0.4270 +2212 10219 0.4810 +2212 10288 0.4890 +2212 10326 0.4260 +2212 10451 0.5730 +2212 10630 0.4020 +2212 10673 0.5240 +2212 11025 0.5640 +2212 11314 0.4720 +2212 11326 0.4070 +2212 22918 0.4700 +2212 23095 0.4240 +2212 23166 0.4910 +2212 23547 0.6300 +2212 23643 0.4050 +2212 26191 0.4280 +2212 27040 0.4050 +2212 29114 0.5430 +2212 29126 0.5490 +2212 29851 0.4420 +2212 29992 0.4170 +2212 30009 0.4750 +2212 30835 0.7080 +2212 50856 0.4880 +2212 50943 0.7200 +2212 51206 0.7700 +2212 51266 0.6780 +2212 51284 0.5640 +2212 51311 0.5800 +2212 54106 0.7560 +2212 54209 0.4230 +2212 54210 0.4600 +2212 54899 0.5040 +2212 55024 0.5160 +2212 57661 0.4470 +2212 63916 0.5030 +2212 64127 0.5790 +2212 64581 0.6000 +2212 64781 0.4470 +2212 64805 0.4190 +2212 79168 0.4540 +2212 79368 0.6280 +2212 80271 0.5740 +2212 80380 0.4530 +2212 80381 0.4380 +2212 83953 0.5070 +2212 84868 0.4800 +2212 91050 0.4160 +2212 112744 0.4070 +2212 114836 0.4770 +2212 137902 0.4700 +2212 140885 0.6400 +2212 151393 0.4330 +2212 160364 0.4470 +2212 390714 0.5060 +2212 414062 0.5410 +2212 100133941 0.4520 +2212 100526664 0.4040 +2212 102723407 0.9290 +2213 2217 0.8710 +2213 2268 0.4550 +2213 2322 0.4360 +2213 2335 0.5840 +2213 2357 0.5400 +2213 2597 0.4960 +2213 2625 0.4080 +2213 2822 0.4340 +2213 2833 0.4830 +2213 2885 0.5710 +2213 2919 0.4200 +2213 2931 0.4910 +2213 2993 0.5220 +2213 2995 0.4030 +2213 2996 0.4200 +2213 3002 0.5380 +2213 3055 0.4830 +2213 3123 0.5430 +2213 3205 0.5700 +2213 3310 0.4850 +2213 3383 0.5230 +2213 3385 0.4180 +2213 3394 0.4790 +2213 3439 0.4900 +2213 3456 0.4360 +2213 3458 0.7490 +2213 3479 0.7850 +2213 3481 0.8480 +2213 3552 0.4830 +2213 3553 0.6600 +2213 3558 0.6200 +2213 3560 0.4240 +2213 3562 0.4420 +2213 3563 0.4790 +2213 3565 0.6830 +2213 3566 0.4360 +2213 3567 0.5200 +2213 3569 0.6530 +2213 3574 0.4220 +2213 3575 0.6070 +2213 3576 0.4190 +2213 3577 0.5820 +2213 3579 0.4280 +2213 3586 0.6990 +2213 3587 0.5140 +2213 3596 0.5650 +2213 3600 0.4380 +2213 3605 0.6220 +2213 3606 0.6280 +2213 3627 0.4830 +2213 3635 0.9960 +2213 3636 0.9700 +2213 3663 0.4200 +2213 3673 0.4600 +2213 3674 0.4100 +2213 3676 0.4480 +2213 3682 0.5880 +2213 3683 0.5430 +2213 3684 0.9160 +2213 3687 0.8380 +2213 3689 0.7770 +2213 3700 0.5630 +2213 3791 0.5910 +2213 3815 0.6120 +2213 3902 0.4220 +2213 3903 0.4020 +2213 3916 0.4700 +2213 3958 0.9920 +2213 4064 0.4410 +2213 4065 0.4710 +2213 4067 0.9380 +2213 4072 0.4420 +2213 4211 0.6570 +2213 4283 0.6490 +2213 4301 0.5180 +2213 4332 0.4840 +2213 4360 0.7560 +2213 4481 0.4640 +2213 4684 0.6100 +2213 4689 0.4610 +2213 4928 0.5610 +2213 5133 0.4650 +2213 5175 0.6770 +2213 5196 0.4740 +2213 5335 0.4080 +2213 5336 0.4110 +2213 5341 0.4650 +2213 5551 0.4470 +2213 5594 0.4070 +2213 5777 0.8420 +2213 5781 0.7440 +2213 5788 0.9180 +2213 5896 0.4270 +2213 5972 0.4270 +2213 6039 0.4220 +2213 6347 0.6930 +2213 6348 0.5260 +2213 6351 0.5290 +2213 6382 0.7060 +2213 6402 0.7840 +2213 6464 0.6110 +2213 6504 0.5470 +2213 6688 0.4860 +2213 6693 0.5610 +2213 6714 0.4610 +2213 6772 0.4200 +2213 6850 0.9740 +2213 7040 0.4120 +2213 7070 0.4790 +2213 7096 0.4590 +2213 7097 0.7270 +2213 7098 0.4210 +2213 7099 0.6450 +2213 7100 0.4680 +2213 7124 0.7230 +2213 7132 0.4900 +2213 7293 0.5680 +2213 7305 0.5920 +2213 7409 0.4310 +2213 7837 0.4730 +2213 7852 0.5030 +2213 8407 0.6510 +2213 8431 0.6250 +2213 8639 0.7360 +2213 8764 0.5050 +2213 8832 0.4400 +2213 9034 0.4590 +2213 9308 0.5120 +2213 9332 0.7520 +2213 9437 0.5300 +2213 9450 0.4670 +2213 10219 0.5080 +2213 10261 0.5100 +2213 10288 0.5310 +2213 10318 0.4330 +2213 10462 0.4540 +2213 10507 0.6360 +2213 10673 0.5720 +2213 10690 0.4220 +2213 10750 0.4780 +2213 10859 0.4300 +2213 10875 0.8960 +2213 10894 0.5010 +2213 11025 0.4190 +2213 11213 0.4790 +2213 11314 0.4960 +2213 22918 0.4960 +2213 23166 0.4410 +2213 29114 0.5590 +2213 29126 0.7110 +2213 29760 0.4430 +2213 29851 0.4770 +2213 30009 0.5360 +2213 30835 0.6490 +2213 50856 0.4410 +2213 50943 0.7370 +2213 51284 0.5970 +2213 51311 0.5290 +2213 51744 0.4080 +2213 54106 0.5410 +2213 54209 0.4760 +2213 55024 0.5660 +2213 55423 0.4330 +2213 55576 0.4140 +2213 64581 0.9910 +2213 79368 0.6420 +2213 80380 0.4650 +2213 80381 0.4550 +2213 83416 0.5470 +2213 84824 0.4720 +2213 84868 0.6380 +2213 90865 0.4540 +2213 91050 0.4250 +2213 91937 0.5920 +2213 92935 0.4970 +2213 115350 0.6270 +2213 131450 0.4410 +2213 133418 0.4550 +2213 137902 0.4730 +2213 140885 0.6130 +2213 146722 0.4340 +2213 149233 0.4020 +2213 151393 0.4340 +2213 151888 0.5430 +2213 160364 0.4700 +2213 390714 0.5150 +2213 653361 0.4100 +2213 100133941 0.4840 +2213 100423062 0.9280 +2213 100526664 0.4360 +2213 102723407 0.9340 +2217 2247 0.4100 +2217 2688 0.8030 +2217 3082 0.4470 +2217 3133 0.5370 +2217 3458 0.4600 +2217 3459 0.4490 +2217 3557 0.4110 +2217 3558 0.4060 +2217 3559 0.4570 +2217 3561 0.4750 +2217 3566 0.4810 +2217 3570 0.5540 +2217 3630 0.5650 +2217 3700 0.4450 +2217 3903 0.4180 +2217 3916 0.4930 +2217 4036 0.5090 +2217 4072 0.4710 +2217 4283 0.4030 +2217 4645 0.4050 +2217 5008 0.4130 +2217 5045 0.4140 +2217 5284 0.6830 +2217 6364 0.4160 +2217 6737 0.6900 +2217 7037 0.5120 +2217 7124 0.6530 +2217 7132 0.5810 +2217 7133 0.4900 +2217 7293 0.6020 +2217 7305 0.4260 +2217 8029 0.5380 +2217 8718 0.5440 +2217 8744 0.5140 +2217 8766 0.4220 +2217 8910 0.4470 +2217 9172 0.4510 +2217 30835 0.4010 +2217 51430 0.7350 +2217 54106 0.4830 +2217 79865 0.4120 +2217 80321 0.5060 +2217 80328 0.4400 +2217 83416 0.4340 +2217 83953 0.4360 +2217 84824 0.4610 +2217 127943 0.4470 +2217 140885 0.5130 +2217 147912 0.4690 +2217 283659 0.4650 +2217 346689 0.5600 +2217 100423062 0.9190 +2218 3113 0.4240 +2218 3141 0.4490 +2218 3339 0.6160 +2218 3908 0.8010 +2218 3911 0.4910 +2218 4000 0.5270 +2218 4053 0.4110 +2218 4607 0.5830 +2218 4618 0.4100 +2218 4620 0.4500 +2218 4624 0.4360 +2218 4625 0.6100 +2218 4811 0.4050 +2218 5339 0.5390 +2218 6331 0.5010 +2218 6389 0.4310 +2218 6442 0.7340 +2218 6443 0.7750 +2218 6444 0.7590 +2218 6445 0.7070 +2218 6872 0.4290 +2218 6887 0.4580 +2218 7112 0.6320 +2218 7137 0.4920 +2218 7139 0.4940 +2218 7273 0.6770 +2218 7402 0.5300 +2218 7555 0.4350 +2218 8048 0.5670 +2218 8291 0.7340 +2218 8557 0.8160 +2218 8813 0.7150 +2218 8818 0.7180 +2218 9215 0.9280 +2218 9378 0.7020 +2218 9379 0.7430 +2218 9499 0.5120 +2218 9855 0.4520 +2218 10060 0.6310 +2218 10329 0.9360 +2218 10585 0.9860 +2218 11041 0.8100 +2218 11155 0.6080 +2218 22845 0.7330 +2218 22954 0.6820 +2218 29925 0.7960 +2218 29954 0.9860 +2218 54344 0.7490 +2218 55288 0.4240 +2218 55624 0.9900 +2218 55750 0.4360 +2218 57190 0.5680 +2218 57798 0.4260 +2218 60684 0.4850 +2218 79147 0.9980 +2218 81031 0.4150 +2218 83856 0.4950 +2218 84197 0.9840 +2218 84665 0.4330 +2218 84892 0.8600 +2218 91624 0.5770 +2218 120071 0.7680 +2218 125972 0.4230 +2218 133584 0.5910 +2218 146664 0.4380 +2218 148789 0.8460 +2218 203859 0.7540 +2218 282996 0.6770 +2218 286148 0.5360 +2218 375790 0.8300 +2218 729920 0.9780 +2219 2220 0.9450 +2219 2268 0.5190 +2219 2335 0.5620 +2219 2357 0.5920 +2219 2867 0.4370 +2219 3055 0.5160 +2219 3075 0.7250 +2219 3101 0.4930 +2219 3122 0.5380 +2219 3426 0.6170 +2219 3553 0.4530 +2219 3684 0.4550 +2219 3687 0.4290 +2219 3689 0.5810 +2219 3811 0.8090 +2219 3818 0.6040 +2219 4057 0.4580 +2219 4069 0.6290 +2219 4153 0.9370 +2219 4179 0.4810 +2219 4318 0.5410 +2219 4332 0.6150 +2219 4353 0.4740 +2219 4360 0.4080 +2219 4542 0.4670 +2219 4818 0.5550 +2219 5199 0.8090 +2219 5328 0.5760 +2219 5329 0.6130 +2219 5340 0.5130 +2219 5420 0.4390 +2219 5624 0.5600 +2219 5644 0.5310 +2219 5645 0.6120 +2219 5648 0.9990 +2219 5806 0.9820 +2219 6279 0.4730 +2219 6280 0.6280 +2219 6283 0.6560 +2219 6403 0.5340 +2219 6556 0.4340 +2219 7040 0.6020 +2219 7056 0.6330 +2219 7097 0.4140 +2219 7099 0.5280 +2219 7305 0.6590 +2219 7940 0.4480 +2219 8547 0.9040 +2219 8875 0.4260 +2219 9332 0.4500 +2219 10261 0.4110 +2219 10288 0.6490 +2219 10462 0.5000 +2219 10578 0.4470 +2219 10584 0.8090 +2219 10747 0.9920 +2219 10870 0.4660 +2219 11025 0.4240 +2219 11027 0.4300 +2219 11326 0.4810 +2219 22918 0.4390 +2219 26032 0.4220 +2219 26253 0.4410 +2219 26470 0.4220 +2219 27202 0.4210 +2219 27429 0.5400 +2219 50856 0.5090 +2219 51311 0.5110 +2219 54210 0.4360 +2219 54504 0.4890 +2219 57670 0.4200 +2219 64231 0.5190 +2219 64581 0.4550 +2219 78989 0.8810 +2219 81494 0.4630 +2219 84106 0.4230 +2219 126364 0.4300 +2219 160364 0.6510 +2219 342510 0.5750 +2219 390667 0.4250 +2219 390714 0.4310 +2219 653509 0.4270 +2219 729238 0.4240 +2220 2335 0.5630 +2220 3075 0.7340 +2220 3078 0.4650 +2220 3426 0.6630 +2220 3811 0.8020 +2220 3818 0.6260 +2220 4035 0.5020 +2220 4153 0.9980 +2220 4179 0.4800 +2220 5108 0.4140 +2220 5199 0.6980 +2220 5328 0.5760 +2220 5329 0.5600 +2220 5340 0.5570 +2220 5624 0.5800 +2220 5645 0.6260 +2220 5648 0.9990 +2220 5806 0.9540 +2220 6288 0.4960 +2220 6289 0.4690 +2220 6441 0.5460 +2220 7040 0.4650 +2220 7056 0.6310 +2220 7448 0.5570 +2220 8547 0.9700 +2220 10332 0.4780 +2220 10584 0.9500 +2220 10747 0.9990 +2220 10878 0.4530 +2220 27429 0.5400 +2220 51311 0.4440 +2220 54106 0.4570 +2220 64127 0.4550 +2220 78989 0.8740 +2220 81494 0.5420 +2220 84570 0.4160 +2220 131873 0.4560 +2220 147372 0.4720 +2220 160364 0.4930 +2220 170392 0.4710 +2220 338761 0.4390 +2220 339390 0.4300 +2220 390714 0.4310 +2222 2224 0.9950 +2222 2339 0.9020 +2222 2342 0.8470 +2222 2597 0.8590 +2222 2731 0.4330 +2222 2879 0.4990 +2222 2936 0.5080 +2222 3156 0.9540 +2222 3157 0.9880 +2222 3158 0.9620 +2222 3159 0.7220 +2222 3283 0.8580 +2222 3284 0.7890 +2222 3309 0.4840 +2222 3422 0.9400 +2222 3638 0.7740 +2222 3930 0.5560 +2222 3992 0.4750 +2222 4047 0.9890 +2222 4128 0.6270 +2222 4129 0.6130 +2222 4597 0.8730 +2222 4598 0.8950 +2222 4800 0.5090 +2222 4801 0.4990 +2222 4802 0.5420 +2222 5162 0.4580 +2222 5447 0.4620 +2222 5465 0.6470 +2222 5469 0.4050 +2222 5740 0.6340 +2222 5876 0.4890 +2222 6132 0.4280 +2222 6256 0.4680 +2222 6307 0.9910 +2222 6309 0.9960 +2222 6319 0.6090 +2222 6554 0.5020 +2222 6646 0.4280 +2222 6667 0.5320 +2222 6713 0.9990 +2222 6720 0.7820 +2222 6721 0.8880 +2222 6888 0.4030 +2222 6907 0.4830 +2222 6908 0.6930 +2222 7086 0.4990 +2222 7108 0.7660 +2222 7264 0.4660 +2222 7296 0.4970 +2222 7846 0.4120 +2222 8277 0.4650 +2222 8564 0.6280 +2222 8648 0.4820 +2222 8813 0.4500 +2222 9023 0.9020 +2222 9134 0.6860 +2222 9415 0.4650 +2222 9420 0.6900 +2222 9453 0.9860 +2222 9519 0.6950 +2222 9619 0.4270 +2222 9692 0.7150 +2222 9694 0.5130 +2222 9853 0.7110 +2222 9985 0.6370 +2222 10162 0.5510 +2222 10280 0.4750 +2222 10449 0.5420 +2222 10455 0.5170 +2222 10498 0.5140 +2222 10499 0.4560 +2222 10558 0.4090 +2222 10587 0.4540 +2222 10614 0.6050 +2222 10654 0.7690 +2222 10682 0.7830 +2222 10826 0.8850 +2222 10857 0.6270 +2222 10858 0.5300 +2222 11161 0.9840 +2222 11316 0.6740 +2222 22937 0.5130 +2222 22984 0.6000 +2222 23028 0.6220 +2222 23590 0.9520 +2222 23623 0.7250 +2222 26166 0.6390 +2222 26330 0.8050 +2222 27235 0.6370 +2222 27430 0.7220 +2222 29880 0.4470 +2222 50814 0.9610 +2222 51004 0.6020 +2222 51084 0.4340 +2222 51234 0.4380 +2222 51302 0.7020 +2222 51478 0.9930 +2222 51703 0.4580 +2222 51725 0.7250 +2222 51741 0.4080 +2222 51805 0.4080 +2222 53345 0.5890 +2222 54802 0.4460 +2222 54884 0.8650 +2222 55244 0.7140 +2222 55824 0.4240 +2222 55902 0.5690 +2222 57107 0.9330 +2222 57412 0.6390 +2222 57469 0.5840 +2222 58477 0.6110 +2222 64240 0.4320 +2222 65220 0.7230 +2222 65985 0.4490 +2222 79947 0.8760 +2222 80146 0.4300 +2222 80270 0.8220 +2222 80339 0.6320 +2222 80347 0.4150 +2222 81622 0.5100 +2222 83594 0.4470 +2222 84076 0.4630 +2222 84795 0.8570 +2222 84883 0.4050 +2222 85441 0.4150 +2222 91734 0.7960 +2222 93517 0.7810 +2222 114112 0.4540 +2222 116150 0.8530 +2222 132949 0.4900 +2222 134429 0.4050 +2222 146802 0.7130 +2222 221656 0.6130 +2222 282974 0.4200 +2222 286151 0.6480 +2222 347475 0.6250 +2222 387332 0.6690 +2222 399949 0.6690 +2222 728378 0.4020 +2222 729920 0.4620 +2224 2339 0.9540 +2224 2342 0.9530 +2224 2539 0.4130 +2224 2597 0.4270 +2224 2645 0.4690 +2224 2731 0.4020 +2224 3145 0.4380 +2224 3156 0.9670 +2224 3157 0.9970 +2224 3158 0.9820 +2224 3159 0.7750 +2224 3417 0.4840 +2224 3422 0.9940 +2224 3638 0.7420 +2224 3930 0.4010 +2224 3949 0.4020 +2224 3992 0.4060 +2224 4047 0.8940 +2224 4597 0.9950 +2224 4598 0.9110 +2224 4800 0.5860 +2224 4801 0.5620 +2224 4802 0.5860 +2224 4830 0.4750 +2224 5105 0.4700 +2224 5229 0.4070 +2224 5315 0.4270 +2224 5464 0.5760 +2224 5723 0.5230 +2224 5875 0.4700 +2224 5876 0.4350 +2224 5906 0.5480 +2224 6059 0.6020 +2224 6307 0.7870 +2224 6309 0.7700 +2224 6319 0.5590 +2224 6652 0.4330 +2224 6713 0.9420 +2224 6720 0.7760 +2224 6721 0.8960 +2224 6888 0.4100 +2224 7069 0.4530 +2224 7108 0.6870 +2224 8600 0.4470 +2224 8660 0.4110 +2224 8790 0.4300 +2224 9023 0.4430 +2224 9453 0.9960 +2224 10269 0.5510 +2224 10384 0.4190 +2224 10449 0.6180 +2224 10654 0.9010 +2224 10682 0.6750 +2224 11118 0.4320 +2224 11119 0.5780 +2224 11120 0.4320 +2224 11161 0.4510 +2224 11315 0.4460 +2224 22937 0.4580 +2224 23590 0.9750 +2224 23623 0.5490 +2224 27068 0.5590 +2224 27235 0.7160 +2224 29914 0.6650 +2224 50814 0.8320 +2224 51179 0.4850 +2224 51449 0.4820 +2224 51478 0.8130 +2224 51805 0.4070 +2224 54363 0.4680 +2224 55902 0.5200 +2224 56954 0.4070 +2224 57107 0.9650 +2224 65985 0.5880 +2224 79071 0.4100 +2224 79947 0.9660 +2224 80347 0.5920 +2224 84274 0.4250 +2224 91543 0.9950 +2224 91734 0.9880 +2224 116150 0.9520 +2224 134429 0.5030 +2224 137682 0.5620 +2224 153579 0.4160 +2224 255738 0.4040 +2224 340390 0.5610 +2224 654364 0.4340 +2230 2232 0.9990 +2230 2235 0.5080 +2230 2395 0.9120 +2230 2539 0.4130 +2230 2739 0.5330 +2230 2745 0.4810 +2230 2746 0.6620 +2230 2747 0.6480 +2230 2752 0.6720 +2230 3028 0.4100 +2230 3162 0.6130 +2230 3163 0.4110 +2230 3248 0.4780 +2230 3283 0.6500 +2230 3284 0.6490 +2230 3290 0.6210 +2230 3292 0.5610 +2230 3293 0.4090 +2230 3309 0.5460 +2230 3313 0.5520 +2230 3336 0.4210 +2230 3658 0.4250 +2230 3992 0.5670 +2230 3995 0.5670 +2230 4337 0.4020 +2230 4519 0.4610 +2230 4535 0.8820 +2230 4536 0.7800 +2230 4537 0.9020 +2230 4538 0.8880 +2230 4539 0.8180 +2230 4540 0.7800 +2230 4552 0.5480 +2230 4682 0.4160 +2230 4695 0.6730 +2230 4698 0.6180 +2230 4700 0.6800 +2230 4702 0.6630 +2230 4704 0.5880 +2230 4706 0.7050 +2230 4713 0.6570 +2230 4715 0.6900 +2230 4716 0.6040 +2230 4720 0.9000 +2230 4722 0.8800 +2230 4723 0.7850 +2230 4724 0.6920 +2230 4726 0.7040 +2230 4728 0.9140 +2230 4729 0.7890 +2230 4842 0.5350 +2230 4843 0.5350 +2230 4846 0.5350 +2230 5443 0.6260 +2230 5447 0.7480 +2230 5740 0.4430 +2230 5860 0.4710 +2230 5861 0.4440 +2230 6342 0.9140 +2230 6389 0.8720 +2230 6426 0.5300 +2230 6569 0.4640 +2230 6697 0.4640 +2230 6713 0.5950 +2230 6770 0.9460 +2230 7167 0.4030 +2230 7172 0.4920 +2230 7381 0.5020 +2230 7384 0.4200 +2230 7386 0.7480 +2230 7923 0.4980 +2230 8564 0.5680 +2230 8566 0.8090 +2230 8653 0.6330 +2230 8683 0.5300 +2230 9054 0.9490 +2230 9131 0.6140 +2230 9249 0.4650 +2230 9360 0.7940 +2230 9363 0.4250 +2230 9415 0.5670 +2230 9446 0.5090 +2230 9512 0.4660 +2230 9524 0.4900 +2230 9563 0.4550 +2230 9898 0.4720 +2230 10202 0.4900 +2230 10424 0.4130 +2230 10443 0.4180 +2230 10539 0.6290 +2230 10553 0.4120 +2230 10568 0.4630 +2230 10857 0.4110 +2230 10858 0.4850 +2230 10901 0.5330 +2230 10935 0.5500 +2230 11019 0.5360 +2230 11259 0.4250 +2230 22934 0.4630 +2230 23203 0.4940 +2230 23479 0.9700 +2230 23645 0.4140 +2230 25979 0.5280 +2230 26063 0.4640 +2230 26502 0.6040 +2230 27158 0.6420 +2230 27247 0.7810 +2230 29785 0.4240 +2230 29796 0.5130 +2230 29928 0.4900 +2230 29957 0.4100 +2230 50700 0.4630 +2230 50814 0.4060 +2230 51004 0.6210 +2230 51022 0.4500 +2230 51027 0.5590 +2230 51031 0.5980 +2230 51079 0.6430 +2230 51109 0.4690 +2230 51167 0.6710 +2230 51170 0.6030 +2230 51171 0.4630 +2230 51218 0.5780 +2230 51540 0.6280 +2230 51557 0.6620 +2230 51635 0.4740 +2230 51700 0.4650 +2230 51706 0.5110 +2230 51741 0.4630 +2230 51805 0.4910 +2230 54205 0.9810 +2230 54905 0.4010 +2230 55312 0.8150 +2230 55349 0.6560 +2230 55684 0.4250 +2230 55728 0.4180 +2230 55825 0.4990 +2230 55833 0.4640 +2230 55967 0.6900 +2230 56898 0.5140 +2230 56912 0.6350 +2230 57019 0.4550 +2230 57128 0.8790 +2230 57404 0.4180 +2230 57407 0.4010 +2230 57665 0.5170 +2230 58472 0.6540 +2230 58509 0.4800 +2230 64428 0.6950 +2230 79085 0.4070 +2230 79154 0.5610 +2230 79605 0.4630 +2230 79728 0.6240 +2230 79758 0.4640 +2230 79912 0.6230 +2230 80146 0.4030 +2230 80224 0.4550 +2230 80273 0.4680 +2230 80777 0.6880 +2230 81341 0.4140 +2230 81689 0.8020 +2230 81876 0.4280 +2230 83452 0.4280 +2230 84263 0.6490 +2230 84693 0.5470 +2230 84869 0.4670 +2230 84883 0.6330 +2230 84939 0.5910 +2230 84952 0.4250 +2230 90634 0.4180 +2230 91300 0.4140 +2230 112724 0.4670 +2230 112812 0.8560 +2230 113612 0.4240 +2230 114789 0.4070 +2230 115817 0.4640 +2230 119391 0.4980 +2230 120227 0.6880 +2230 122961 0.7570 +2230 139221 0.5910 +2230 142680 0.4630 +2230 145226 0.5120 +2230 147015 0.4630 +2230 150209 0.6060 +2230 150274 0.8040 +2230 157506 0.4700 +2230 161779 0.4630 +2230 195814 0.4630 +2230 200205 0.6370 +2230 201140 0.4630 +2230 207063 0.4740 +2230 254042 0.7190 +2230 260293 0.4100 +2230 283985 0.8680 +2230 284106 0.5550 +2230 284427 0.4060 +2230 284541 0.4080 +2230 317749 0.4720 +2230 339122 0.4250 +2230 339761 0.7930 +2230 345275 0.4950 +2230 374291 0.6340 +2230 374875 0.4630 +2230 388962 0.5920 +2230 388963 0.4630 +2230 389434 0.8460 +2230 401409 0.4250 +2230 493856 0.5790 +2230 552900 0.4450 +2230 606495 0.4910 +2230 654483 0.4450 +2230 728317 0.5910 +2232 2235 0.6020 +2232 2272 0.8770 +2232 2395 0.6930 +2232 2539 0.4810 +2232 2744 0.6300 +2232 2746 0.7940 +2232 2747 0.7910 +2232 2752 0.7380 +2232 2936 0.4910 +2232 3033 0.4910 +2232 3284 0.4510 +2232 3293 0.4370 +2232 3309 0.4620 +2232 3313 0.4720 +2232 3336 0.5130 +2232 3417 0.6700 +2232 3418 0.6660 +2232 3421 0.4170 +2232 3658 0.4960 +2232 4193 0.5050 +2232 4524 0.5320 +2232 4682 0.4970 +2232 4720 0.4190 +2232 4722 0.4160 +2232 4723 0.4410 +2232 4728 0.5280 +2232 4729 0.4690 +2232 4935 0.5400 +2232 5091 0.8050 +2232 5096 0.5350 +2232 5188 0.8150 +2232 5443 0.4950 +2232 5447 0.5800 +2232 5471 0.6120 +2232 5664 0.4700 +2232 5832 0.8870 +2232 6342 0.7960 +2232 6470 0.5400 +2232 6472 0.5400 +2232 6648 0.4360 +2232 6770 0.8860 +2232 7157 0.6400 +2232 7298 0.5320 +2232 7378 0.6130 +2232 7386 0.4370 +2232 7416 0.5460 +2232 8833 0.8070 +2232 9054 0.7850 +2232 9060 0.4110 +2232 9360 0.4480 +2232 9391 0.4750 +2232 9518 0.4110 +2232 9540 0.6210 +2232 9563 0.5280 +2232 9997 0.4660 +2232 10229 0.4580 +2232 10539 0.4370 +2232 10570 0.4390 +2232 10797 0.5360 +2232 10908 0.4100 +2232 10948 0.4010 +2232 11019 0.4920 +2232 23479 0.7260 +2232 23590 0.4980 +2232 23612 0.4710 +2232 26873 0.5740 +2232 27113 0.5540 +2232 27158 0.5280 +2232 27165 0.7420 +2232 27235 0.5410 +2232 27244 0.5450 +2232 27247 0.6440 +2232 29085 0.5050 +2232 51004 0.6830 +2232 51065 0.4400 +2232 51084 0.4920 +2232 51117 0.5150 +2232 51167 0.7660 +2232 51218 0.6770 +2232 51557 0.7380 +2232 51700 0.7020 +2232 51706 0.7260 +2232 51805 0.6420 +2232 54205 0.5060 +2232 54529 0.5830 +2232 54868 0.4920 +2232 55157 0.7080 +2232 55278 0.4920 +2232 55312 0.7470 +2232 55744 0.4060 +2232 56474 0.4920 +2232 56896 0.4370 +2232 57017 0.4490 +2232 57019 0.5040 +2232 57128 0.7680 +2232 64087 0.5470 +2232 64393 0.4850 +2232 64428 0.4580 +2232 79073 0.8200 +2232 79912 0.4810 +2232 79934 0.4700 +2232 80224 0.4520 +2232 80308 0.5170 +2232 80777 0.6620 +2232 81689 0.6640 +2232 84274 0.5300 +2232 84320 0.4310 +2232 89894 0.5360 +2232 91875 0.4930 +2232 92106 0.6440 +2232 112812 0.9880 +2232 120227 0.5960 +2232 122961 0.6440 +2232 132671 0.4120 +2232 150274 0.6510 +2232 151531 0.6130 +2232 158219 0.4200 +2232 158584 0.4920 +2232 200205 0.6860 +2232 220001 0.4940 +2232 285148 0.7970 +2232 388962 0.4140 +2232 389434 0.4630 +2232 441024 0.4910 +2232 493753 0.4410 +2232 606495 0.7010 +2235 2271 0.4550 +2235 2395 0.9960 +2235 2495 0.5370 +2235 2512 0.5010 +2235 2539 0.4580 +2235 2623 0.8160 +2235 2729 0.4570 +2235 2745 0.4040 +2235 2877 0.5310 +2235 2878 0.5160 +2235 2880 0.5270 +2235 2882 0.5270 +2235 2993 0.6060 +2235 2994 0.8560 +2235 3029 0.5110 +2235 3045 0.4660 +2235 3046 0.6070 +2235 3049 0.5020 +2235 3052 0.9300 +2235 3145 0.9750 +2235 3162 0.9630 +2235 3163 0.9710 +2235 3248 0.4260 +2235 3263 0.4310 +2235 3313 0.6260 +2235 3329 0.5790 +2235 3336 0.4080 +2235 3658 0.6820 +2235 4094 0.4160 +2235 4097 0.6150 +2235 4151 0.4880 +2235 4285 0.6880 +2235 4515 0.5550 +2235 4677 0.4520 +2235 4682 0.4590 +2235 4723 0.4280 +2235 4729 0.4430 +2235 4778 0.6680 +2235 4779 0.5230 +2235 4780 0.5390 +2235 4891 0.7180 +2235 5094 0.4040 +2235 5226 0.4020 +2235 5305 0.4810 +2235 5498 0.9990 +2235 5515 0.6720 +2235 5516 0.6740 +2235 5518 0.6260 +2235 5832 0.5040 +2235 6007 0.4360 +2235 6059 0.5020 +2235 6125 0.4100 +2235 6156 0.5770 +2235 6389 0.6310 +2235 6390 0.6510 +2235 6521 0.6950 +2235 6556 0.5600 +2235 6564 0.4460 +2235 6574 0.6200 +2235 6620 0.4680 +2235 6622 0.5350 +2235 6648 0.5870 +2235 6708 0.4400 +2235 6717 0.5940 +2235 7037 0.5670 +2235 7077 0.4610 +2235 7111 0.4970 +2235 7167 0.4620 +2235 7263 0.4330 +2235 7298 0.4040 +2235 7316 0.4910 +2235 7386 0.4250 +2235 7389 0.9800 +2235 7390 0.9120 +2235 7504 0.5090 +2235 7936 0.6170 +2235 7975 0.5160 +2235 8031 0.5650 +2235 8192 0.5830 +2235 8566 0.4490 +2235 8803 0.4510 +2235 8991 0.5300 +2235 9054 0.7410 +2235 9429 0.5430 +2235 9563 0.4470 +2235 9843 0.9430 +2235 9911 0.5100 +2235 9921 0.4680 +2235 10058 0.7610 +2235 10424 0.6210 +2235 10539 0.5110 +2235 10606 0.4650 +2235 10632 0.5190 +2235 10661 0.6580 +2235 10826 0.4190 +2235 10845 0.5670 +2235 10857 0.9590 +2235 10939 0.6220 +2235 11019 0.6300 +2235 11194 0.4560 +2235 22934 0.5390 +2235 23210 0.4260 +2235 23335 0.4370 +2235 23456 0.9940 +2235 23479 0.8490 +2235 23608 0.5340 +2235 23762 0.5150 +2235 23764 0.4970 +2235 25801 0.4640 +2235 25853 0.5540 +2235 25920 0.5960 +2235 26234 0.4970 +2235 27102 0.5410 +2235 27235 0.4850 +2235 27247 0.5820 +2235 28982 0.6140 +2235 29086 0.4830 +2235 29104 0.8440 +2235 30061 0.5650 +2235 50865 0.4830 +2235 51218 0.8100 +2235 51312 0.9870 +2235 51327 0.6680 +2235 51409 0.8430 +2235 51497 0.5800 +2235 51522 0.7070 +2235 51621 0.5710 +2235 51629 0.6270 +2235 51759 0.5500 +2235 51805 0.4050 +2235 54977 0.6840 +2235 55157 0.4300 +2235 55210 0.4390 +2235 55240 0.6300 +2235 55328 0.4500 +2235 55363 0.4640 +2235 55437 0.6040 +2235 55652 0.5330 +2235 56948 0.4830 +2235 57019 0.5050 +2235 57128 0.7180 +2235 57817 0.4460 +2235 66008 0.4060 +2235 79145 0.4560 +2235 79572 0.4260 +2235 79747 0.4110 +2235 79901 0.4260 +2235 80127 0.4640 +2235 80224 0.4370 +2235 80347 0.4350 +2235 81689 0.7960 +2235 81894 0.8060 +2235 84932 0.4490 +2235 84955 0.6240 +2235 92399 0.4190 +2235 94033 0.6410 +2235 112812 0.4830 +2235 116151 0.6280 +2235 119559 0.4320 +2235 122961 0.6240 +2235 124454 0.4340 +2235 150274 0.5410 +2235 200205 0.5480 +2235 222642 0.4300 +2235 257202 0.5270 +2235 284131 0.8640 +2235 493856 0.6190 +2235 493869 0.5270 +2237 2305 0.5330 +2237 2547 0.8790 +2237 2597 0.4570 +2237 2956 0.9500 +2237 2961 0.4440 +2237 2965 0.7820 +2237 3014 0.5820 +2237 3015 0.4350 +2237 3021 0.4330 +2237 3070 0.5390 +2237 3093 0.6260 +2237 3145 0.4650 +2237 3146 0.6710 +2237 3149 0.5650 +2237 3150 0.4970 +2237 3161 0.6210 +2237 3178 0.7970 +2237 3182 0.4530 +2237 3308 0.5090 +2237 3313 0.4270 +2237 3364 0.9340 +2237 3619 0.4910 +2237 3735 0.4240 +2237 3832 0.5890 +2237 3833 0.4870 +2237 3835 0.4170 +2237 3836 0.4460 +2237 3838 0.8580 +2237 3839 0.4360 +2237 3840 0.4340 +2237 3841 0.4310 +2237 3978 0.9990 +2237 3980 0.9140 +2237 3981 0.7010 +2237 4001 0.4820 +2237 4085 0.6820 +2237 4171 0.9120 +2237 4172 0.9610 +2237 4173 0.9410 +2237 4174 0.9420 +2237 4175 0.9070 +2237 4176 0.9030 +2237 4255 0.4990 +2237 4288 0.4740 +2237 4292 0.7300 +2237 4350 0.5290 +2237 4361 0.9840 +2237 4363 0.4330 +2237 4436 0.9480 +2237 4437 0.8340 +2237 4438 0.4410 +2237 4439 0.4240 +2237 4521 0.4060 +2237 4595 0.6940 +2237 4605 0.4290 +2237 4609 0.6590 +2237 4678 0.5020 +2237 4683 0.7550 +2237 4751 0.4360 +2237 4913 0.7920 +2237 4968 0.8320 +2237 4998 0.7030 +2237 5001 0.4720 +2237 5111 0.9990 +2237 5347 0.5320 +2237 5378 0.6010 +2237 5395 0.6500 +2237 5422 0.8760 +2237 5423 0.9870 +2237 5424 0.9970 +2237 5425 0.9950 +2237 5426 0.9060 +2237 5427 0.8830 +2237 5428 0.4790 +2237 5429 0.4480 +2237 5442 0.5000 +2237 5531 0.5210 +2237 5557 0.8660 +2237 5558 0.7750 +2237 5591 0.7350 +2237 5713 0.8830 +2237 5810 0.8750 +2237 5866 0.4480 +2237 5883 0.9160 +2237 5884 0.7600 +2237 5885 0.5050 +2237 5886 0.4440 +2237 5887 0.7000 +2237 5888 0.9590 +2237 5889 0.8230 +2237 5890 0.6990 +2237 5892 0.7040 +2237 5893 0.9330 +2237 5901 0.4480 +2237 5902 0.4040 +2237 5932 0.8230 +2237 5965 0.8980 +2237 5980 0.7740 +2237 5981 0.8430 +2237 5982 0.9390 +2237 5983 0.9470 +2237 5984 0.9600 +2237 5985 0.8680 +2237 6117 0.8450 +2237 6118 0.7870 +2237 6119 0.7800 +2237 6240 0.7660 +2237 6241 0.7350 +2237 6596 0.5510 +2237 6722 0.4340 +2237 6742 0.5730 +2237 6749 0.5960 +2237 6790 0.7480 +2237 6917 0.5750 +2237 6939 0.4120 +2237 6996 0.7690 +2237 7013 0.7250 +2237 7014 0.8400 +2237 7015 0.5140 +2237 7083 0.5740 +2237 7112 0.4160 +2237 7150 0.7640 +2237 7153 0.7850 +2237 7155 0.4290 +2237 7156 0.7990 +2237 7157 0.5340 +2237 7158 0.7290 +2237 7272 0.6150 +2237 7298 0.7940 +2237 7334 0.5060 +2237 7374 0.8320 +2237 7415 0.5710 +2237 7443 0.4380 +2237 7465 0.4020 +2237 7486 0.9980 +2237 7507 0.8390 +2237 7508 0.9110 +2237 7515 0.9460 +2237 7516 0.4880 +2237 7517 0.8270 +2237 7518 0.7530 +2237 7520 0.8800 +2237 7884 0.5610 +2237 7979 0.4210 +2237 8208 0.5980 +2237 8290 0.4080 +2237 8317 0.5560 +2237 8318 0.8640 +2237 8349 0.4140 +2237 8356 0.4470 +2237 8438 0.7370 +2237 8467 0.4820 +2237 8505 0.7840 +2237 8565 0.5030 +2237 8607 0.4380 +2237 8714 0.4010 +2237 8833 0.4840 +2237 8900 0.4120 +2237 8914 0.7670 +2237 8930 0.4710 +2237 9055 0.5440 +2237 9088 0.5220 +2237 9126 0.7000 +2237 9133 0.6190 +2237 9134 0.5380 +2237 9156 0.9010 +2237 9184 0.4330 +2237 9212 0.6370 +2237 9232 0.5310 +2237 9319 0.6760 +2237 9400 0.8820 +2237 9401 0.9810 +2237 9493 0.4490 +2237 9576 0.4080 +2237 9656 0.6610 +2237 9700 0.5830 +2237 9735 0.4560 +2237 9768 0.6780 +2237 9780 0.4250 +2237 9787 0.5410 +2237 9833 0.5900 +2237 9837 0.4120 +2237 9918 0.4640 +2237 9928 0.4700 +2237 9937 0.6070 +2237 9941 0.7410 +2237 10036 0.6060 +2237 10038 0.8480 +2237 10039 0.4990 +2237 10051 0.6470 +2237 10055 0.4770 +2237 10057 0.4080 +2237 10111 0.8440 +2237 10112 0.5580 +2237 10155 0.4450 +2237 10198 0.4260 +2237 10274 0.4450 +2237 10293 0.5790 +2237 10403 0.4920 +2237 10419 0.4570 +2237 10459 0.5320 +2237 10528 0.4710 +2237 10535 0.9020 +2237 10592 0.5350 +2237 10606 0.4560 +2237 10615 0.4350 +2237 10635 0.5840 +2237 10664 0.4220 +2237 10714 0.9830 +2237 10721 0.8250 +2237 10733 0.5540 +2237 10734 0.4660 +2237 10735 0.4840 +2237 10785 0.5290 +2237 11004 0.6990 +2237 11044 0.4320 +2237 11065 0.6090 +2237 11073 0.5490 +2237 11130 0.6990 +2237 11144 0.5030 +2237 11169 0.8890 +2237 11198 0.4410 +2237 11200 0.6990 +2237 11201 0.5070 +2237 11284 0.6950 +2237 11331 0.4330 +2237 11339 0.5110 +2237 22933 0.4900 +2237 22974 0.7090 +2237 22976 0.5870 +2237 23064 0.4860 +2237 23137 0.5130 +2237 23234 0.4810 +2237 23304 0.5730 +2237 23310 0.4090 +2237 23397 0.5170 +2237 23583 0.6550 +2237 23594 0.5470 +2237 23626 0.4860 +2237 23633 0.4390 +2237 23649 0.8020 +2237 24137 0.4560 +2237 25788 0.7190 +2237 25913 0.5530 +2237 26271 0.5140 +2237 26277 0.5930 +2237 27030 0.6880 +2237 27301 0.7580 +2237 27343 0.7770 +2237 27434 0.6610 +2237 29028 0.5840 +2237 29089 0.6570 +2237 29127 0.5070 +2237 29128 0.5430 +2237 50485 0.4310 +2237 51053 0.5660 +2237 51203 0.6090 +2237 51455 0.5730 +2237 51512 0.4560 +2237 51514 0.7310 +2237 51548 0.4680 +2237 51567 0.6550 +2237 51659 0.7410 +2237 51750 0.5720 +2237 54107 0.7800 +2237 54386 0.5180 +2237 54431 0.4630 +2237 54478 0.4140 +2237 54704 0.4560 +2237 54821 0.5190 +2237 54840 0.7340 +2237 54892 0.6300 +2237 54921 0.4370 +2237 54932 0.4450 +2237 54962 0.7650 +2237 55055 0.4300 +2237 55143 0.5740 +2237 55165 0.4890 +2237 55215 0.5820 +2237 55247 0.8230 +2237 55294 0.4900 +2237 55355 0.4590 +2237 55374 0.4080 +2237 55388 0.8960 +2237 55536 0.4560 +2237 55635 0.4360 +2237 55723 0.6010 +2237 55775 0.7860 +2237 55839 0.5640 +2237 56254 0.5460 +2237 56652 0.6570 +2237 56655 0.6630 +2237 56852 0.7300 +2237 56897 0.4150 +2237 56915 0.4230 +2237 56949 0.6150 +2237 56992 0.4760 +2237 57082 0.5580 +2237 57405 0.4690 +2237 57697 0.7370 +2237 57804 0.9340 +2237 63895 0.4230 +2237 63922 0.8340 +2237 63967 0.6110 +2237 64151 0.6330 +2237 64421 0.4810 +2237 64785 0.5850 +2237 64834 0.5800 +2237 64858 0.5270 +2237 79019 0.4990 +2237 79075 0.6220 +2237 79621 0.7600 +2237 79661 0.9610 +2237 79677 0.4600 +2237 79728 0.4400 +2237 79733 0.4370 +2237 79801 0.4450 +2237 79840 0.6410 +2237 79915 0.9020 +2237 79947 0.4540 +2237 79968 0.6580 +2237 79991 0.5010 +2237 80010 0.5930 +2237 80119 0.7680 +2237 80198 0.8890 +2237 81620 0.8040 +2237 83461 0.4840 +2237 83540 0.5260 +2237 83879 0.4200 +2237 83990 0.6060 +2237 84057 0.4990 +2237 84083 0.4520 +2237 84126 0.4270 +2237 84153 0.6210 +2237 84296 0.4230 +2237 84464 0.5560 +2237 84515 0.5020 +2237 84893 0.7980 +2237 90381 0.4150 +2237 91442 0.5220 +2237 92667 0.5920 +2237 94234 0.4390 +2237 113130 0.7080 +2237 113510 0.4830 +2237 114799 0.6300 +2237 116028 0.6140 +2237 116447 0.5570 +2237 116519 0.4190 +2237 135458 0.4390 +2237 142679 0.5600 +2237 144715 0.4420 +2237 146909 0.4220 +2237 146956 0.7860 +2237 157313 0.4030 +2237 157570 0.4370 +2237 197131 0.4640 +2237 197342 0.5970 +2237 200895 0.4790 +2237 201973 0.5020 +2237 203068 0.4220 +2237 246243 0.7050 +2237 252969 0.7520 +2237 254394 0.4740 +2237 259266 0.4320 +2237 284131 0.4360 +2237 353497 0.4410 +2237 402569 0.5930 +2237 440093 0.4070 +2237 440686 0.4080 +2237 548593 0.6450 +2237 653604 0.4210 +2237 100533467 0.4050 +2239 2247 0.6910 +2239 2258 0.5870 +2239 2262 0.6020 +2239 2263 0.4410 +2239 2535 0.9290 +2239 2719 0.7900 +2239 2817 0.4680 +2239 2822 0.4100 +2239 3339 0.6830 +2239 3340 0.6710 +2239 4035 0.4440 +2239 4036 0.4140 +2239 4040 0.5200 +2239 4691 0.4280 +2239 4884 0.4040 +2239 4909 0.4510 +2239 5460 0.4280 +2239 5789 0.4870 +2239 5792 0.4500 +2239 5802 0.7510 +2239 6095 0.4400 +2239 6382 0.6930 +2239 6383 0.8070 +2239 6385 0.6960 +2239 6657 0.6260 +2239 6792 0.4330 +2239 6913 0.4240 +2239 7058 0.4190 +2239 7448 0.4870 +2239 7474 0.6340 +2239 7804 0.4790 +2239 7855 0.9150 +2239 7976 0.9190 +2239 8321 0.9110 +2239 8322 0.9080 +2239 8323 0.9100 +2239 8324 0.9300 +2239 8325 0.9170 +2239 8326 0.9140 +2239 8404 0.5660 +2239 8509 0.6740 +2239 9348 0.6710 +2239 9394 0.6400 +2239 9653 0.6680 +2239 9672 0.7280 +2239 9951 0.5040 +2239 9953 0.5010 +2239 9955 0.4960 +2239 9956 0.5280 +2239 9957 0.6020 +2239 10082 0.8980 +2239 10330 0.4300 +2239 10675 0.5480 +2239 10855 0.5180 +2239 11211 0.9040 +2239 11285 0.5180 +2239 23213 0.4140 +2239 26020 0.4130 +2239 26035 0.6750 +2239 26045 0.5340 +2239 26229 0.5150 +2239 27087 0.4320 +2239 29967 0.4140 +2239 57216 0.4340 +2239 57512 0.6560 +2239 58155 0.4500 +2239 60495 0.5400 +2239 63827 0.6150 +2239 64131 0.5040 +2239 64132 0.4980 +2239 64579 0.6310 +2239 64711 0.5970 +2239 64850 0.4250 +2239 79923 0.4430 +2239 80059 0.9550 +2239 80781 0.8510 +2239 84466 0.4620 +2239 84870 0.4450 +2239 89780 0.7660 +2239 90161 0.6440 +2239 126792 0.4980 +2239 135152 0.4540 +2239 147111 0.4990 +2239 221914 0.6740 +2239 222537 0.6080 +2239 266722 0.5610 +2239 347731 0.5710 +2239 375790 0.6530 +2241 2323 0.7380 +2241 3084 0.4580 +2241 3559 0.5590 +2241 3815 0.6350 +2241 4254 0.6750 +2241 4908 0.4080 +2241 5295 0.4260 +2241 5339 0.4410 +2241 7110 0.4030 +2241 7525 0.9140 +2241 11140 0.4240 +2241 23237 0.4720 +2241 440193 0.4560 +2242 2268 0.4160 +2242 2534 0.6170 +2242 3055 0.4030 +2242 3059 0.4580 +2242 3265 0.4450 +2242 3297 0.4420 +2242 3320 0.8480 +2242 3326 0.7840 +2242 3815 0.6630 +2242 3984 0.5290 +2242 4254 0.5430 +2242 4602 0.4270 +2242 4671 0.4440 +2242 4689 0.4010 +2242 4741 0.4610 +2242 4744 0.4240 +2242 5058 0.5300 +2242 5062 0.5410 +2242 5063 0.5230 +2242 5361 0.9560 +2242 5362 0.9220 +2242 5481 0.4460 +2242 5879 0.5930 +2242 6237 0.6160 +2242 6688 0.5680 +2242 6774 0.4820 +2242 7430 0.7940 +2242 7454 0.5770 +2242 8829 0.5510 +2242 9050 0.4700 +2242 9051 0.6060 +2242 9322 0.9180 +2242 9371 0.4540 +2242 9855 0.7670 +2242 9901 0.4420 +2242 9973 0.4820 +2242 10371 0.6640 +2242 10458 0.4050 +2242 10570 0.5190 +2242 10587 0.4080 +2242 11252 0.6090 +2242 23048 0.5130 +2242 23149 0.4300 +2242 23380 0.4060 +2242 25897 0.4370 +2242 27289 0.6650 +2242 29763 0.5580 +2242 29993 0.5350 +2242 55079 0.4370 +2242 55558 0.9300 +2242 56896 0.9180 +2242 57522 0.4070 +2242 64132 0.4530 +2242 91584 0.9140 +2242 389549 0.4910 +2243 2244 0.9990 +2243 2266 0.9990 +2243 2267 0.9220 +2243 2335 0.9320 +2243 2621 0.4460 +2243 2638 0.7790 +2243 2885 0.5380 +2243 2934 0.6130 +2243 2993 0.4610 +2243 2994 0.4980 +2243 2996 0.5120 +2243 3026 0.8480 +2243 3053 0.9600 +2243 3075 0.4120 +2243 3081 0.4870 +2243 3146 0.5130 +2243 3240 0.5310 +2243 3263 0.7910 +2243 3265 0.5260 +2243 3273 0.9360 +2243 3339 0.5580 +2243 3375 0.4280 +2243 3426 0.5960 +2243 3484 0.7060 +2243 3630 0.5660 +2243 3674 0.9280 +2243 3676 0.4520 +2243 3681 0.5120 +2243 3685 0.4630 +2243 3687 0.5260 +2243 3688 0.4660 +2243 3689 0.5630 +2243 3690 0.9780 +2243 3697 0.4790 +2243 3698 0.8110 +2243 3699 0.6390 +2243 3700 0.4870 +2243 3818 0.4730 +2243 3827 0.9080 +2243 3845 0.5680 +2243 3880 0.5080 +2243 3931 0.5510 +2243 4018 0.8600 +2243 4057 0.7500 +2243 4069 0.8610 +2243 4140 0.4120 +2243 4143 0.5360 +2243 4153 0.4430 +2243 4240 0.4380 +2243 4241 0.5340 +2243 4811 0.4050 +2243 4878 0.4100 +2243 4893 0.5270 +2243 5004 0.7470 +2243 5005 0.7510 +2243 5037 0.4350 +2243 5053 0.4750 +2243 5054 0.5540 +2243 5104 0.7380 +2243 5176 0.5610 +2243 5196 0.7450 +2243 5197 0.6210 +2243 5265 0.8310 +2243 5267 0.5600 +2243 5270 0.4040 +2243 5327 0.8800 +2243 5328 0.6000 +2243 5340 0.9650 +2243 5345 0.9670 +2243 5356 0.4630 +2243 5443 0.4440 +2243 5444 0.4220 +2243 5473 0.7270 +2243 5594 0.5310 +2243 5595 0.5390 +2243 5604 0.5450 +2243 5605 0.5390 +2243 5617 0.5300 +2243 5624 0.8510 +2243 5627 0.7640 +2243 5747 0.5520 +2243 5768 0.5180 +2243 5770 0.4070 +2243 5858 0.5320 +2243 5894 0.5060 +2243 5906 0.4500 +2243 5908 0.4400 +2243 5950 0.4780 +2243 6271 0.5230 +2243 6279 0.5670 +2243 6280 0.5870 +2243 6288 0.6460 +2243 6289 0.4320 +2243 6291 0.5220 +2243 6441 0.5040 +2243 6521 0.4440 +2243 6622 0.4420 +2243 6654 0.5280 +2243 6657 0.4150 +2243 6694 0.6820 +2243 6714 0.4990 +2243 6850 0.6310 +2243 6906 0.8270 +2243 7018 0.5980 +2243 7035 0.4560 +2243 7037 0.4830 +2243 7045 0.5010 +2243 7056 0.6690 +2243 7057 0.9030 +2243 7076 0.6590 +2243 7094 0.6680 +2243 7096 0.5010 +2243 7097 0.5290 +2243 7099 0.5570 +2243 7104 0.4230 +2243 7276 0.7730 +2243 7365 0.4980 +2243 7414 0.4660 +2243 7425 0.4180 +2243 7448 0.7200 +2243 7450 0.8660 +2243 7529 0.5130 +2243 7916 0.4310 +2243 8542 0.4950 +2243 8844 0.4030 +2243 8858 0.4130 +2243 8942 0.4080 +2243 9445 0.4070 +2243 9564 0.5180 +2243 9622 0.4160 +2243 9971 0.4360 +2243 10246 0.4470 +2243 10451 0.4240 +2243 10841 0.7410 +2243 10875 0.7810 +2243 23643 0.4990 +2243 26998 0.4240 +2243 51156 0.7770 +2243 51257 0.4700 +2243 51592 0.5010 +2243 54518 0.4050 +2243 54756 0.5020 +2243 54757 0.4100 +2243 54959 0.4230 +2243 55937 0.5360 +2243 56975 0.7460 +2243 79003 0.7800 +2243 80341 0.4830 +2243 81494 0.6910 +2243 84647 0.4130 +2243 84932 0.6390 +2243 85236 0.4530 +2243 87769 0.7680 +2243 116519 0.7110 +2243 256394 0.4840 +2243 339105 0.6550 +2244 2266 0.9990 +2244 2267 0.8850 +2244 2321 0.4500 +2244 2335 0.9220 +2244 2638 0.9310 +2244 2885 0.5340 +2244 2993 0.4930 +2244 2994 0.5080 +2244 2996 0.5500 +2244 3026 0.8770 +2244 3046 0.4190 +2244 3053 0.9510 +2244 3081 0.4340 +2244 3112 0.4690 +2244 3115 0.4690 +2244 3119 0.5190 +2244 3120 0.5330 +2244 3122 0.8030 +2244 3123 0.4860 +2244 3127 0.7990 +2244 3146 0.4990 +2244 3157 0.4140 +2244 3175 0.4180 +2244 3240 0.7510 +2244 3263 0.7120 +2244 3265 0.5080 +2244 3273 0.8510 +2244 3426 0.4800 +2244 3484 0.4710 +2244 3674 0.9250 +2244 3681 0.5060 +2244 3687 0.5060 +2244 3689 0.5260 +2244 3690 0.9520 +2244 3698 0.7040 +2244 3699 0.5700 +2244 3700 0.5420 +2244 3791 0.4690 +2244 3818 0.4050 +2244 3827 0.8640 +2244 3845 0.5190 +2244 3929 0.4190 +2244 3931 0.5030 +2244 3950 0.4040 +2244 4018 0.8980 +2244 4057 0.5030 +2244 4069 0.4910 +2244 4140 0.4190 +2244 4153 0.4640 +2244 4519 0.4020 +2244 4524 0.5990 +2244 4635 0.4030 +2244 4811 0.4140 +2244 4893 0.5070 +2244 5004 0.8180 +2244 5005 0.5660 +2244 5037 0.4150 +2244 5053 0.4450 +2244 5054 0.7510 +2244 5104 0.7160 +2244 5265 0.8100 +2244 5267 0.5310 +2244 5327 0.4140 +2244 5340 0.9480 +2244 5345 0.9140 +2244 5443 0.5220 +2244 5444 0.4670 +2244 5594 0.5270 +2244 5595 0.5310 +2244 5604 0.6350 +2244 5605 0.5390 +2244 5624 0.7300 +2244 5627 0.6530 +2244 5747 0.5420 +2244 5770 0.4210 +2244 5894 0.5190 +2244 5906 0.4470 +2244 5908 0.4380 +2244 5950 0.4380 +2244 6271 0.5150 +2244 6279 0.5770 +2244 6280 0.5710 +2244 6291 0.4050 +2244 6426 0.4350 +2244 6654 0.5390 +2244 6714 0.4430 +2244 6850 0.4990 +2244 6906 0.5840 +2244 7018 0.6120 +2244 7037 0.4450 +2244 7056 0.5500 +2244 7057 0.8010 +2244 7094 0.5930 +2244 7096 0.5010 +2244 7097 0.5250 +2244 7099 0.5580 +2244 7276 0.5740 +2244 7365 0.4270 +2244 7414 0.4480 +2244 7448 0.5610 +2244 7450 0.8780 +2244 7529 0.5480 +2244 8581 0.4050 +2244 8826 0.4110 +2244 9564 0.4990 +2244 9971 0.4110 +2244 10599 0.4560 +2244 10875 0.7880 +2244 22795 0.4040 +2244 23643 0.5060 +2244 28234 0.4180 +2244 51008 0.4120 +2244 51156 0.6000 +2244 54518 0.4040 +2244 54756 0.5020 +2244 55902 0.4140 +2244 55937 0.4370 +2244 65062 0.4230 +2244 79003 0.7800 +2244 80341 0.4300 +2244 81494 0.4550 +2244 116519 0.5340 +2244 256394 0.4150 +2245 3059 0.6430 +2245 4086 0.4420 +2245 4158 0.6400 +2245 4983 0.6920 +2245 5341 0.6610 +2245 5877 0.5340 +2245 5879 0.4320 +2245 6453 0.4290 +2245 7454 0.5210 +2245 7456 0.4440 +2245 8976 0.5730 +2245 9138 0.5460 +2245 9644 0.5040 +2245 9647 0.4040 +2245 10188 0.4970 +2245 10207 0.4170 +2245 10672 0.4080 +2245 23109 0.5290 +2245 23229 0.5480 +2245 26499 0.6610 +2245 28988 0.7110 +2245 50650 0.6310 +2245 55114 0.5020 +2245 55320 0.4160 +2245 55970 0.9010 +2245 56246 0.6090 +2245 65267 0.5680 +2245 65268 0.5740 +2245 79921 0.4700 +2245 89846 0.9310 +2245 89887 0.4930 +2245 91734 0.4340 +2245 154796 0.4980 +2245 347733 0.6930 +2246 2247 0.9620 +2246 2248 0.7100 +2246 2249 0.7770 +2246 2250 0.7120 +2246 2251 0.7410 +2246 2252 0.7260 +2246 2253 0.7040 +2246 2254 0.6300 +2246 2255 0.7410 +2246 2257 0.5250 +2246 2258 0.9270 +2246 2260 0.9990 +2246 2261 0.9990 +2246 2263 0.9990 +2246 2264 0.9990 +2246 2277 0.7530 +2246 2302 0.4650 +2246 2321 0.9440 +2246 2322 0.7590 +2246 2324 0.8070 +2246 2335 0.6910 +2246 2549 0.4930 +2246 2597 0.4450 +2246 2658 0.5700 +2246 2668 0.6470 +2246 2670 0.4460 +2246 2817 0.5860 +2246 2885 0.6230 +2246 2962 0.4990 +2246 2963 0.4990 +2246 3068 0.6420 +2246 3082 0.8020 +2246 3084 0.4080 +2246 3091 0.6490 +2246 3265 0.5960 +2246 3313 0.7500 +2246 3320 0.5550 +2246 3326 0.5540 +2246 3339 0.9010 +2246 3479 0.8270 +2246 3480 0.7720 +2246 3481 0.6940 +2246 3485 0.5710 +2246 3552 0.6330 +2246 3553 0.6650 +2246 3558 0.5180 +2246 3565 0.5460 +2246 3567 0.4840 +2246 3569 0.7210 +2246 3576 0.6010 +2246 3592 0.4120 +2246 3611 0.4380 +2246 3630 0.6050 +2246 3643 0.6810 +2246 3645 0.6730 +2246 3685 0.5490 +2246 3730 0.5990 +2246 3791 0.9190 +2246 3815 0.8110 +2246 3845 0.6260 +2246 3976 0.4160 +2246 4023 0.4620 +2246 4091 0.4270 +2246 4192 0.5740 +2246 4233 0.7610 +2246 4254 0.4320 +2246 4318 0.5060 +2246 4487 0.4590 +2246 4684 0.5240 +2246 4686 0.4990 +2246 4803 0.8140 +2246 4804 0.8430 +2246 4893 0.5920 +2246 4908 0.6510 +2246 4914 0.8540 +2246 4915 0.7700 +2246 5015 0.4950 +2246 5154 0.5410 +2246 5155 0.5090 +2246 5156 0.8190 +2246 5159 0.8420 +2246 5175 0.5190 +2246 5196 0.5430 +2246 5197 0.4730 +2246 5228 0.5370 +2246 5289 0.4990 +2246 5290 0.4940 +2246 5291 0.4450 +2246 5295 0.4600 +2246 5296 0.4170 +2246 5335 0.6250 +2246 5431 0.5060 +2246 5432 0.5310 +2246 5433 0.4990 +2246 5434 0.5230 +2246 5435 0.5070 +2246 5436 0.4990 +2246 5437 0.5080 +2246 5438 0.5070 +2246 5439 0.4990 +2246 5440 0.5070 +2246 5441 0.5070 +2246 5566 0.4800 +2246 5567 0.4970 +2246 5568 0.4810 +2246 5594 0.5340 +2246 5595 0.6660 +2246 5728 0.5110 +2246 5764 0.4270 +2246 5781 0.5450 +2246 5806 0.4330 +2246 5979 0.5600 +2246 5990 0.4870 +2246 6195 0.4930 +2246 6233 0.5090 +2246 6284 0.9950 +2246 6347 0.4620 +2246 6382 0.6200 +2246 6383 0.4490 +2246 6385 0.5500 +2246 6387 0.6600 +2246 6464 0.5310 +2246 6469 0.5000 +2246 6491 0.4570 +2246 6513 0.5160 +2246 6654 0.5410 +2246 6662 0.4040 +2246 6696 0.4410 +2246 6772 0.4970 +2246 6774 0.4150 +2246 6857 0.9780 +2246 6900 0.4790 +2246 7003 0.4630 +2246 7004 0.4370 +2246 7010 0.8250 +2246 7039 0.5540 +2246 7040 0.8130 +2246 7042 0.4860 +2246 7043 0.4740 +2246 7049 0.5210 +2246 7057 0.4280 +2246 7066 0.5820 +2246 7075 0.6180 +2246 7076 0.6190 +2246 7077 0.5950 +2246 7124 0.4470 +2246 7311 0.5170 +2246 7314 0.5070 +2246 7316 0.5070 +2246 7423 0.7470 +2246 7424 0.6530 +2246 7448 0.5440 +2246 7450 0.4790 +2246 7750 0.4710 +2246 7837 0.4230 +2246 7852 0.6060 +2246 8013 0.4290 +2246 8074 0.7690 +2246 8100 0.4050 +2246 8742 0.4550 +2246 8805 0.4110 +2246 8817 0.7290 +2246 8822 0.9530 +2246 8823 0.6780 +2246 9071 0.4710 +2246 9158 0.9510 +2246 9241 0.5360 +2246 9365 0.6850 +2246 9392 0.4170 +2246 9530 0.4160 +2246 9702 0.6310 +2246 9965 0.5910 +2246 9982 0.9960 +2246 10363 0.5390 +2246 10468 0.5840 +2246 10631 0.4960 +2246 10718 0.4500 +2246 10736 0.4260 +2246 10817 0.5390 +2246 10818 0.7420 +2246 11052 0.4010 +2246 11116 0.4670 +2246 11122 0.4270 +2246 11160 0.4130 +2246 22916 0.5070 +2246 23199 0.6280 +2246 23767 0.5410 +2246 23768 0.5280 +2246 23769 0.5440 +2246 24145 0.4670 +2246 26127 0.4670 +2246 26281 0.6710 +2246 27006 0.7460 +2246 27329 0.5010 +2246 27349 0.4910 +2246 30849 0.4990 +2246 51270 0.5130 +2246 51330 0.4790 +2246 53834 0.7880 +2246 54106 0.5270 +2246 54805 0.4650 +2246 55379 0.5630 +2246 80781 0.4530 +2246 83697 0.4300 +2246 83888 0.5470 +2246 133482 0.4570 +2246 133584 0.5460 +2246 137902 0.4230 +2246 143282 0.5720 +2246 152831 0.6890 +2246 253935 0.5550 +2246 399687 0.4020 +2247 2248 0.5520 +2247 2249 0.5470 +2247 2250 0.5810 +2247 2251 0.5740 +2247 2252 0.8120 +2247 2253 0.6300 +2247 2254 0.5780 +2247 2255 0.6290 +2247 2257 0.4510 +2247 2260 0.9990 +2247 2261 0.9990 +2247 2263 0.9990 +2247 2264 0.9990 +2247 2267 0.4170 +2247 2277 0.6620 +2247 2290 0.4770 +2247 2294 0.5660 +2247 2308 0.4120 +2247 2321 0.9930 +2247 2322 0.8810 +2247 2323 0.9180 +2247 2324 0.9420 +2247 2335 0.9650 +2247 2353 0.6810 +2247 2475 0.5180 +2247 2526 0.5850 +2247 2549 0.5030 +2247 2581 0.5150 +2247 2596 0.4430 +2247 2597 0.7460 +2247 2626 0.6010 +2247 2627 0.4880 +2247 2658 0.6430 +2247 2660 0.4400 +2247 2668 0.8640 +2247 2670 0.7590 +2247 2674 0.4980 +2247 2697 0.6010 +2247 2719 0.7060 +2247 2734 0.7340 +2247 2735 0.4580 +2247 2752 0.4120 +2247 2817 0.9870 +2247 2885 0.6630 +2247 2919 0.9180 +2247 2920 0.4220 +2247 2932 0.6010 +2247 2962 0.4990 +2247 2963 0.5010 +2247 3021 0.6000 +2247 3037 0.4370 +2247 3068 0.7670 +2247 3082 0.9550 +2247 3084 0.5930 +2247 3091 0.7270 +2247 3146 0.4070 +2247 3162 0.4640 +2247 3170 0.5960 +2247 3171 0.4060 +2247 3172 0.4900 +2247 3251 0.4010 +2247 3265 0.6860 +2247 3308 0.4050 +2247 3320 0.6380 +2247 3326 0.6380 +2247 3339 0.9980 +2247 3381 0.4790 +2247 3383 0.7520 +2247 3439 0.4540 +2247 3440 0.8630 +2247 3458 0.6760 +2247 3479 0.8820 +2247 3480 0.9000 +2247 3481 0.6560 +2247 3485 0.5710 +2247 3486 0.6590 +2247 3491 0.4570 +2247 3516 0.5340 +2247 3549 0.8080 +2247 3551 0.4380 +2247 3552 0.7180 +2247 3553 0.8960 +2247 3557 0.4470 +2247 3558 0.7400 +2247 3561 0.5000 +2247 3562 0.6020 +2247 3565 0.6660 +2247 3567 0.6160 +2247 3569 0.8820 +2247 3574 0.7670 +2247 3575 0.5910 +2247 3576 0.8570 +2247 3578 0.7170 +2247 3579 0.4170 +2247 3586 0.8220 +2247 3589 0.5260 +2247 3596 0.7170 +2247 3600 0.6080 +2247 3605 0.7470 +2247 3606 0.4760 +2247 3611 0.6850 +2247 3620 0.4520 +2247 3627 0.6260 +2247 3630 0.8420 +2247 3643 0.7160 +2247 3645 0.6650 +2247 3655 0.5020 +2247 3670 0.5360 +2247 3678 0.4090 +2247 3684 0.5510 +2247 3685 0.4330 +2247 3688 0.6510 +2247 3690 0.6560 +2247 3691 0.5230 +2247 3716 0.5980 +2247 3717 0.6700 +2247 3718 0.5110 +2247 3725 0.5890 +2247 3730 0.7810 +2247 3752 0.4100 +2247 3791 0.9980 +2247 3815 0.8850 +2247 3845 0.8200 +2247 3880 0.4230 +2247 3929 0.4110 +2247 3934 0.5700 +2247 3952 0.6440 +2247 3958 0.6130 +2247 3976 0.9000 +2247 3977 0.4690 +2247 3987 0.4390 +2247 4015 0.5190 +2247 4049 0.5250 +2247 4053 0.5350 +2247 4054 0.5230 +2247 4060 0.4210 +2247 4072 0.5310 +2247 4087 0.6040 +2247 4088 0.5330 +2247 4089 0.4950 +2247 4092 0.4240 +2247 4133 0.6150 +2247 4155 0.5790 +2247 4162 0.5030 +2247 4192 0.6360 +2247 4208 0.4050 +2247 4233 0.9050 +2247 4254 0.7100 +2247 4283 0.6830 +2247 4312 0.7370 +2247 4313 0.8020 +2247 4314 0.7430 +2247 4316 0.4590 +2247 4318 0.9190 +2247 4322 0.5400 +2247 4323 0.6890 +2247 4440 0.4470 +2247 4487 0.4520 +2247 4488 0.4110 +2247 4609 0.7080 +2247 4617 0.4780 +2247 4624 0.4340 +2247 4633 0.4250 +2247 4654 0.5900 +2247 4656 0.5450 +2247 4684 0.5440 +2247 4686 0.4990 +2247 4760 0.5090 +2247 4762 0.4140 +2247 4790 0.5060 +2247 4803 0.8690 +2247 4804 0.8440 +2247 4811 0.6500 +2247 4821 0.4340 +2247 4838 0.4170 +2247 4846 0.5570 +2247 4851 0.5600 +2247 4854 0.4060 +2247 4893 0.6610 +2247 4907 0.6920 +2247 4908 0.6820 +2247 4909 0.5090 +2247 4914 0.9590 +2247 4915 0.9080 +2247 4929 0.4010 +2247 5008 0.7420 +2247 5015 0.5590 +2247 5045 0.4870 +2247 5054 0.7410 +2247 5055 0.5190 +2247 5076 0.4450 +2247 5077 0.4960 +2247 5080 0.7080 +2247 5081 0.6090 +2247 5154 0.8860 +2247 5155 0.9530 +2247 5156 0.9820 +2247 5159 0.9530 +2247 5175 0.8010 +2247 5176 0.6250 +2247 5196 0.5270 +2247 5197 0.4630 +2247 5228 0.7340 +2247 5241 0.4100 +2247 5289 0.5510 +2247 5290 0.7140 +2247 5291 0.4940 +2247 5295 0.5300 +2247 5296 0.6430 +2247 5327 0.5220 +2247 5328 0.5810 +2247 5329 0.4440 +2247 5335 0.6590 +2247 5340 0.6390 +2247 5345 0.4860 +2247 5431 0.5060 +2247 5432 0.5270 +2247 5433 0.4990 +2247 5434 0.5230 +2247 5435 0.5130 +2247 5436 0.4990 +2247 5437 0.5080 +2247 5438 0.5070 +2247 5439 0.4990 +2247 5440 0.5070 +2247 5441 0.5060 +2247 5443 0.8180 +2247 5454 0.4130 +2247 5460 0.9310 +2247 5468 0.6840 +2247 5566 0.5800 +2247 5567 0.4330 +2247 5568 0.4320 +2247 5578 0.4030 +2247 5594 0.7800 +2247 5595 0.8880 +2247 5604 0.5230 +2247 5617 0.4200 +2247 5727 0.4550 +2247 5728 0.5930 +2247 5733 0.5030 +2247 5741 0.4530 +2247 5743 0.7900 +2247 5744 0.7840 +2247 5747 0.4910 +2247 5764 0.7220 +2247 5781 0.6360 +2247 5788 0.6820 +2247 5803 0.6340 +2247 5806 0.9820 +2247 5829 0.4020 +2247 5915 0.5060 +2247 5979 0.5970 +2247 6128 0.4350 +2247 6195 0.5710 +2247 6198 0.4200 +2247 6233 0.5560 +2247 6275 0.8690 +2247 6285 0.9860 +2247 6288 0.5120 +2247 6347 0.7320 +2247 6348 0.6280 +2247 6351 0.6080 +2247 6354 0.4800 +2247 6356 0.9680 +2247 6367 0.6490 +2247 6373 0.4180 +2247 6374 0.4550 +2247 6376 0.9710 +2247 6382 0.9970 +2247 6383 0.8840 +2247 6385 0.9930 +2247 6387 0.8960 +2247 6401 0.5190 +2247 6403 0.4370 +2247 6422 0.4140 +2247 6423 0.4030 +2247 6464 0.6120 +2247 6469 0.7490 +2247 6507 0.4660 +2247 6513 0.6130 +2247 6591 0.5600 +2247 6608 0.5230 +2247 6615 0.6050 +2247 6654 0.5650 +2247 6656 0.6040 +2247 6657 0.9330 +2247 6662 0.6570 +2247 6663 0.5460 +2247 6678 0.5740 +2247 6696 0.6360 +2247 6714 0.6060 +2247 6736 0.4750 +2247 6772 0.4130 +2247 6774 0.8350 +2247 6778 0.6240 +2247 6844 0.4240 +2247 6853 0.5270 +2247 6854 0.4350 +2247 6855 0.4080 +2247 6876 0.4610 +2247 6910 0.4150 +2247 6925 0.4340 +2247 7010 0.9410 +2247 7015 0.4760 +2247 7039 0.8240 +2247 7040 0.9820 +2247 7042 0.7890 +2247 7043 0.6870 +2247 7046 0.5420 +2247 7048 0.6570 +2247 7049 0.6200 +2247 7054 0.5740 +2247 7057 0.8410 +2247 7058 0.4890 +2247 7066 0.4630 +2247 7070 0.7260 +2247 7075 0.7010 +2247 7076 0.7700 +2247 7077 0.6020 +2247 7078 0.4950 +2247 7082 0.5430 +2247 7097 0.5130 +2247 7099 0.6550 +2247 7114 0.5930 +2247 7122 0.4410 +2247 7124 0.7320 +2247 7130 0.7710 +2247 7139 0.4600 +2247 7157 0.7540 +2247 7220 0.5720 +2247 7276 0.6770 +2247 7291 0.4890 +2247 7311 0.5170 +2247 7314 0.5260 +2247 7316 0.7470 +2247 7412 0.6130 +2247 7414 0.4550 +2247 7423 0.5760 +2247 7424 0.8280 +2247 7431 0.6580 +2247 7436 0.4400 +2247 7448 0.8520 +2247 7450 0.6690 +2247 7471 0.4800 +2247 7472 0.4290 +2247 7473 0.4130 +2247 7474 0.5330 +2247 7476 0.4070 +2247 7490 0.4400 +2247 7750 0.4430 +2247 7837 0.7070 +2247 7852 0.7950 +2247 8074 0.5720 +2247 8200 0.5260 +2247 8224 0.4330 +2247 8290 0.4820 +2247 8313 0.6110 +2247 8320 0.4420 +2247 8356 0.4820 +2247 8456 0.5040 +2247 8539 0.9550 +2247 8549 0.4740 +2247 8577 0.5110 +2247 8600 0.4790 +2247 8646 0.4130 +2247 8805 0.4350 +2247 8817 0.7040 +2247 8822 0.9530 +2247 8823 0.5750 +2247 8828 0.6040 +2247 8829 0.9350 +2247 8842 0.7200 +2247 8862 0.5380 +2247 9232 0.4530 +2247 9241 0.8700 +2247 9314 0.7430 +2247 9365 0.6470 +2247 9370 0.4310 +2247 9429 0.5460 +2247 9451 0.4600 +2247 9530 0.4140 +2247 9542 0.4680 +2247 9672 0.8670 +2247 9702 0.5170 +2247 9965 0.5620 +2247 9982 0.9950 +2247 10000 0.5710 +2247 10135 0.5150 +2247 10215 0.6590 +2247 10365 0.4310 +2247 10371 0.4080 +2247 10381 0.5510 +2247 10468 0.6700 +2247 10630 0.4340 +2247 10631 0.4730 +2247 10673 0.4470 +2247 10716 0.4140 +2247 10718 0.4160 +2247 10738 0.4220 +2247 10739 0.4220 +2247 10763 0.8360 +2247 10817 0.4720 +2247 10818 0.8110 +2247 10894 0.6490 +2247 11052 0.4010 +2247 11061 0.5170 +2247 11064 0.4310 +2247 11096 0.4150 +2247 11116 0.4060 +2247 11160 0.4280 +2247 11162 0.6760 +2247 22846 0.5810 +2247 22916 0.5070 +2247 22943 0.6070 +2247 23213 0.6300 +2247 23411 0.4110 +2247 23462 0.4030 +2247 23683 0.4220 +2247 23767 0.5470 +2247 23768 0.5240 +2247 23769 0.5200 +2247 26127 0.4150 +2247 26281 0.5740 +2247 26291 0.4390 +2247 26585 0.4430 +2247 27006 0.6290 +2247 27022 0.5610 +2247 27180 0.4380 +2247 28984 0.4270 +2247 29126 0.4570 +2247 30849 0.5080 +2247 50674 0.4060 +2247 51176 0.4160 +2247 51270 0.5070 +2247 51561 0.4190 +2247 51705 0.5480 +2247 53834 0.8750 +2247 54106 0.5960 +2247 54205 0.4370 +2247 54361 0.5710 +2247 54567 0.6420 +2247 55959 0.6850 +2247 56034 0.5200 +2247 57509 0.5120 +2247 63973 0.5100 +2247 63978 0.5900 +2247 64321 0.6140 +2247 79727 0.6070 +2247 79805 0.5930 +2247 79923 0.9240 +2247 80781 0.6680 +2247 81575 0.4520 +2247 83881 0.4800 +2247 83888 0.5530 +2247 84317 0.4950 +2247 84504 0.4220 +2247 89780 0.7800 +2247 90865 0.4150 +2247 112744 0.5130 +2247 116448 0.4560 +2247 121340 0.4530 +2247 137902 0.6950 +2247 143282 0.5390 +2247 146713 0.6160 +2247 151449 0.4470 +2247 152831 0.5900 +2247 171177 0.4050 +2247 284654 0.6610 +2247 286133 0.4920 +2247 388585 0.4410 +2247 390992 0.4310 +2247 399687 0.4020 +2247 440093 0.4820 +2247 440686 0.4890 +2247 653604 0.4890 +2247 728378 0.4290 +2247 752014 0.5490 +2247 100133941 0.5700 +2247 100506658 0.4440 +2247 100532731 0.5070 +2248 2249 0.6070 +2248 2250 0.6460 +2248 2251 0.5050 +2248 2252 0.6430 +2248 2253 0.7270 +2248 2254 0.6630 +2248 2255 0.6690 +2248 2260 0.9990 +2248 2261 0.9780 +2248 2263 0.9990 +2248 2264 0.9940 +2248 2277 0.6710 +2248 2290 0.4220 +2248 2299 0.4250 +2248 2321 0.8710 +2248 2322 0.7960 +2248 2324 0.9100 +2248 2335 0.7970 +2248 2348 0.6920 +2248 2350 0.5930 +2248 2353 0.4260 +2248 2475 0.4910 +2248 2532 0.4640 +2248 2549 0.4990 +2248 2597 0.5660 +2248 2621 0.4200 +2248 2626 0.4660 +2248 2637 0.4120 +2248 2668 0.7240 +2248 2670 0.5260 +2248 2697 0.4100 +2248 2734 0.5650 +2248 2735 0.5310 +2248 2737 0.5650 +2248 2817 0.7550 +2248 2885 0.7450 +2248 2904 0.4290 +2248 2919 0.4190 +2248 2932 0.4550 +2248 2950 0.4580 +2248 3068 0.6950 +2248 3082 0.8700 +2248 3084 0.4310 +2248 3091 0.5820 +2248 3172 0.4380 +2248 3265 0.6490 +2248 3339 0.9460 +2248 3340 0.4240 +2248 3383 0.4730 +2248 3458 0.5790 +2248 3479 0.7630 +2248 3480 0.8490 +2248 3481 0.6310 +2248 3549 0.5660 +2248 3552 0.5880 +2248 3553 0.6550 +2248 3558 0.4950 +2248 3565 0.6370 +2248 3567 0.4650 +2248 3569 0.6980 +2248 3574 0.4740 +2248 3576 0.7510 +2248 3578 0.4610 +2248 3586 0.5800 +2248 3589 0.4100 +2248 3596 0.5200 +2248 3600 0.4490 +2248 3603 0.4430 +2248 3605 0.5060 +2248 3627 0.5130 +2248 3630 0.8250 +2248 3643 0.8110 +2248 3645 0.6550 +2248 3667 0.5280 +2248 3670 0.4510 +2248 3688 0.4350 +2248 3725 0.4800 +2248 3791 0.9270 +2248 3815 0.8530 +2248 3845 0.7030 +2248 3952 0.4360 +2248 3955 0.4410 +2248 3976 0.6110 +2248 4087 0.5160 +2248 4088 0.4590 +2248 4089 0.4470 +2248 4212 0.4080 +2248 4233 0.8650 +2248 4254 0.5150 +2248 4312 0.4030 +2248 4313 0.5110 +2248 4314 0.4350 +2248 4318 0.5960 +2248 4487 0.5150 +2248 4488 0.4300 +2248 4609 0.5430 +2248 4654 0.4370 +2248 4684 0.5820 +2248 4760 0.4240 +2248 4762 0.4830 +2248 4790 0.4180 +2248 4803 0.6770 +2248 4804 0.7620 +2248 4811 0.5460 +2248 4846 0.4540 +2248 4851 0.4940 +2248 4893 0.6360 +2248 4907 0.4920 +2248 4908 0.5080 +2248 4914 0.8870 +2248 4915 0.7780 +2248 5008 0.4160 +2248 5013 0.5490 +2248 5015 0.4060 +2248 5054 0.4860 +2248 5076 0.4610 +2248 5080 0.5210 +2248 5081 0.4090 +2248 5154 0.6310 +2248 5155 0.6530 +2248 5156 0.8560 +2248 5159 0.8910 +2248 5167 0.4440 +2248 5175 0.7280 +2248 5196 0.5890 +2248 5228 0.6070 +2248 5289 0.5340 +2248 5290 0.6240 +2248 5291 0.4780 +2248 5295 0.5180 +2248 5296 0.4780 +2248 5327 0.4950 +2248 5335 0.6090 +2248 5340 0.5120 +2248 5460 0.6890 +2248 5468 0.4290 +2248 5594 0.5670 +2248 5595 0.7180 +2248 5727 0.4160 +2248 5728 0.4760 +2248 5741 0.5950 +2248 5743 0.4420 +2248 5744 0.4270 +2248 5781 0.6180 +2248 5788 0.4740 +2248 5803 0.4990 +2248 5806 0.5500 +2248 5979 0.5210 +2248 6233 0.5090 +2248 6284 0.4940 +2248 6347 0.6020 +2248 6348 0.4790 +2248 6351 0.4470 +2248 6356 0.4740 +2248 6382 0.7610 +2248 6387 0.6130 +2248 6464 0.5610 +2248 6469 0.8480 +2248 6513 0.5620 +2248 6591 0.4570 +2248 6608 0.4380 +2248 6615 0.5150 +2248 6654 0.5460 +2248 6656 0.4120 +2248 6657 0.6100 +2248 6662 0.5440 +2248 6678 0.4410 +2248 6696 0.5250 +2248 6714 0.5270 +2248 6774 0.5490 +2248 6926 0.5620 +2248 7004 0.4030 +2248 7010 0.8480 +2248 7015 0.5970 +2248 7039 0.5830 +2248 7040 0.8170 +2248 7042 0.4970 +2248 7043 0.6680 +2248 7046 0.4180 +2248 7057 0.4540 +2248 7070 0.5190 +2248 7075 0.4270 +2248 7076 0.4960 +2248 7114 0.5390 +2248 7124 0.6520 +2248 7157 0.5730 +2248 7291 0.4160 +2248 7311 0.5170 +2248 7314 0.5070 +2248 7316 0.5410 +2248 7412 0.4750 +2248 7423 0.4310 +2248 7424 0.7080 +2248 7425 0.4570 +2248 7448 0.4790 +2248 7450 0.4630 +2248 7471 0.6670 +2248 7472 0.4330 +2248 7473 0.4210 +2248 7474 0.4610 +2248 7480 0.5800 +2248 7783 0.6170 +2248 7837 0.5290 +2248 7852 0.5150 +2248 8074 0.7290 +2248 8312 0.4300 +2248 8313 0.4590 +2248 8600 0.4480 +2248 8646 0.5280 +2248 8742 0.7850 +2248 8772 0.5880 +2248 8817 0.5870 +2248 8822 0.7160 +2248 8823 0.4560 +2248 8826 0.4220 +2248 8829 0.8240 +2248 8842 0.5070 +2248 9241 0.5390 +2248 9314 0.4410 +2248 9365 0.9910 +2248 9370 0.5970 +2248 9965 0.6500 +2248 9971 0.5260 +2248 9982 0.9680 +2248 10215 0.4210 +2248 10251 0.4860 +2248 10252 0.5660 +2248 10253 0.6720 +2248 10468 0.6560 +2248 10763 0.5820 +2248 10817 0.5940 +2248 10818 0.8570 +2248 22943 0.5280 +2248 23462 0.5020 +2248 23767 0.5770 +2248 23768 0.5420 +2248 23769 0.5600 +2248 26281 0.5110 +2248 26585 0.5150 +2248 27006 0.7120 +2248 27020 0.4040 +2248 29126 0.4280 +2248 30816 0.5160 +2248 30849 0.4990 +2248 51176 0.4280 +2248 51330 0.7130 +2248 51806 0.5930 +2248 53834 0.8270 +2248 54106 0.5730 +2248 54756 0.5860 +2248 55107 0.6100 +2248 55504 0.4060 +2248 64321 0.6190 +2248 79923 0.5370 +2248 80781 0.6820 +2248 81848 0.6130 +2248 83595 0.5530 +2248 83888 0.5610 +2248 85407 0.4390 +2248 89780 0.5580 +2248 91860 0.5920 +2248 121340 0.4010 +2248 137902 0.5290 +2248 139728 0.5190 +2248 143282 0.5340 +2248 152831 0.9030 +2248 163688 0.5930 +2248 220064 0.7680 +2248 284654 0.4110 +2248 285888 0.4620 +2248 388585 0.4750 +2248 405754 0.5070 +2248 441478 0.4260 +2249 2250 0.5330 +2249 2251 0.4800 +2249 2252 0.5330 +2249 2253 0.6810 +2249 2254 0.5620 +2249 2255 0.5730 +2249 2260 0.9990 +2249 2261 0.9690 +2249 2263 0.9990 +2249 2264 0.9970 +2249 2277 0.5200 +2249 2321 0.8740 +2249 2322 0.8030 +2249 2324 0.9100 +2249 2335 0.7990 +2249 2353 0.4260 +2249 2475 0.4900 +2249 2532 0.4380 +2249 2549 0.4980 +2249 2597 0.5960 +2249 2626 0.6430 +2249 2627 0.5910 +2249 2637 0.4110 +2249 2668 0.6150 +2249 2670 0.4860 +2249 2719 0.4380 +2249 2734 0.5630 +2249 2735 0.5210 +2249 2737 0.5940 +2249 2817 0.7800 +2249 2885 0.7550 +2249 2919 0.4310 +2249 2932 0.4950 +2249 3021 0.4010 +2249 3068 0.7840 +2249 3082 0.8830 +2249 3091 0.5830 +2249 3170 0.5370 +2249 3172 0.4800 +2249 3239 0.4090 +2249 3265 0.6560 +2249 3339 0.9530 +2249 3340 0.5410 +2249 3383 0.4760 +2249 3458 0.5800 +2249 3479 0.7880 +2249 3480 0.8530 +2249 3481 0.6540 +2249 3487 0.5080 +2249 3549 0.5370 +2249 3552 0.5880 +2249 3553 0.6600 +2249 3558 0.4970 +2249 3562 0.4170 +2249 3565 0.6910 +2249 3567 0.6530 +2249 3569 0.7010 +2249 3574 0.4740 +2249 3576 0.7500 +2249 3578 0.4610 +2249 3586 0.5840 +2249 3589 0.4150 +2249 3596 0.5200 +2249 3600 0.4510 +2249 3605 0.5060 +2249 3611 0.5230 +2249 3627 0.5130 +2249 3630 0.8210 +2249 3643 0.8100 +2249 3645 0.6520 +2249 3651 0.4620 +2249 3667 0.5260 +2249 3670 0.4470 +2249 3688 0.4550 +2249 3725 0.5050 +2249 3730 0.6060 +2249 3791 0.9320 +2249 3815 0.8580 +2249 3845 0.7070 +2249 3875 0.4200 +2249 3952 0.6550 +2249 3976 0.6610 +2249 4040 0.4270 +2249 4041 0.4100 +2249 4087 0.5210 +2249 4088 0.4620 +2249 4089 0.4560 +2249 4162 0.5520 +2249 4233 0.8640 +2249 4254 0.5150 +2249 4283 0.4010 +2249 4312 0.4430 +2249 4313 0.5450 +2249 4314 0.4630 +2249 4318 0.5990 +2249 4322 0.4240 +2249 4487 0.5130 +2249 4488 0.4840 +2249 4609 0.5910 +2249 4654 0.4570 +2249 4790 0.4180 +2249 4803 0.6770 +2249 4804 0.7620 +2249 4811 0.5550 +2249 4838 0.4850 +2249 4846 0.4340 +2249 4851 0.4950 +2249 4893 0.6440 +2249 4907 0.5210 +2249 4908 0.4850 +2249 4914 0.8870 +2249 4915 0.7540 +2249 5008 0.5760 +2249 5015 0.4930 +2249 5054 0.4400 +2249 5080 0.5520 +2249 5081 0.4070 +2249 5154 0.4440 +2249 5155 0.6540 +2249 5156 0.8770 +2249 5159 0.8930 +2249 5167 0.4580 +2249 5175 0.7340 +2249 5196 0.6040 +2249 5228 0.6110 +2249 5289 0.5330 +2249 5290 0.6050 +2249 5291 0.4680 +2249 5295 0.5030 +2249 5296 0.4830 +2249 5327 0.4960 +2249 5328 0.4020 +2249 5335 0.6050 +2249 5340 0.5700 +2249 5460 0.7450 +2249 5468 0.4450 +2249 5594 0.5730 +2249 5595 0.7340 +2249 5604 0.4150 +2249 5727 0.4550 +2249 5728 0.4790 +2249 5741 0.5910 +2249 5743 0.4410 +2249 5744 0.4240 +2249 5781 0.6180 +2249 5788 0.4980 +2249 5803 0.4960 +2249 5806 0.5560 +2249 5979 0.5120 +2249 6233 0.5140 +2249 6284 0.4940 +2249 6347 0.6030 +2249 6348 0.4790 +2249 6351 0.4480 +2249 6356 0.4750 +2249 6382 0.7860 +2249 6387 0.6250 +2249 6464 0.5650 +2249 6469 0.9280 +2249 6591 0.4830 +2249 6608 0.4760 +2249 6615 0.5300 +2249 6654 0.5530 +2249 6656 0.4460 +2249 6657 0.8650 +2249 6662 0.5920 +2249 6678 0.4460 +2249 6696 0.5640 +2249 6714 0.5260 +2249 6736 0.4110 +2249 6774 0.5910 +2249 6910 0.4010 +2249 6926 0.6390 +2249 6997 0.5140 +2249 7004 0.5390 +2249 7010 0.8500 +2249 7015 0.4180 +2249 7039 0.5880 +2249 7040 0.8240 +2249 7042 0.5240 +2249 7043 0.6860 +2249 7044 0.4800 +2249 7046 0.4310 +2249 7057 0.4800 +2249 7070 0.5280 +2249 7075 0.4280 +2249 7076 0.5220 +2249 7124 0.7680 +2249 7157 0.5720 +2249 7291 0.4210 +2249 7311 0.5170 +2249 7314 0.5070 +2249 7316 0.5390 +2249 7412 0.4790 +2249 7423 0.4330 +2249 7424 0.5740 +2249 7425 0.4440 +2249 7448 0.5040 +2249 7450 0.4780 +2249 7471 0.4980 +2249 7472 0.4480 +2249 7473 0.4550 +2249 7474 0.4790 +2249 7475 0.5180 +2249 7476 0.4270 +2249 7482 0.4370 +2249 7750 0.4840 +2249 7783 0.6930 +2249 7837 0.5510 +2249 7852 0.5330 +2249 8074 0.7700 +2249 8115 0.4150 +2249 8312 0.4300 +2249 8313 0.4570 +2249 8320 0.4960 +2249 8433 0.5830 +2249 8521 0.4280 +2249 8549 0.4040 +2249 8600 0.4550 +2249 8646 0.5000 +2249 8742 0.7810 +2249 8772 0.4460 +2249 8805 0.4430 +2249 8817 0.4820 +2249 8822 0.5430 +2249 8823 0.5620 +2249 8826 0.4180 +2249 8829 0.8230 +2249 8842 0.5170 +2249 9048 0.4810 +2249 9241 0.5960 +2249 9314 0.5960 +2249 9365 0.9910 +2249 9370 0.5960 +2249 9464 0.4460 +2249 9530 0.4130 +2249 9573 0.5890 +2249 9965 0.8480 +2249 9971 0.5350 +2249 9982 0.9380 +2249 10215 0.4100 +2249 10251 0.4910 +2249 10253 0.4250 +2249 10468 0.6680 +2249 10637 0.4750 +2249 10763 0.6190 +2249 10817 0.5930 +2249 10818 0.8570 +2249 11052 0.4010 +2249 11064 0.4410 +2249 11160 0.4030 +2249 22943 0.5440 +2249 23767 0.5860 +2249 23768 0.5420 +2249 23769 0.5400 +2249 26127 0.4110 +2249 26281 0.5180 +2249 26585 0.7810 +2249 27006 0.5110 +2249 27022 0.5720 +2249 29126 0.4200 +2249 30816 0.5230 +2249 30849 0.4990 +2249 51176 0.4630 +2249 51330 0.6980 +2249 51806 0.5920 +2249 53834 0.8250 +2249 54106 0.5740 +2249 54361 0.4540 +2249 55107 0.4610 +2249 55211 0.4270 +2249 57167 0.5950 +2249 60529 0.4770 +2249 64321 0.6150 +2249 64388 0.5210 +2249 79727 0.4920 +2249 79923 0.7080 +2249 80781 0.7220 +2249 81848 0.4020 +2249 83595 0.4090 +2249 89780 0.6210 +2249 91860 0.5920 +2249 121340 0.4160 +2249 128209 0.4630 +2249 132625 0.5280 +2249 137902 0.5510 +2249 152831 0.9510 +2249 163688 0.5990 +2249 201456 0.4320 +2249 220064 0.7670 +2249 284654 0.4620 +2249 285888 0.4550 +2249 342184 0.5050 +2249 399687 0.4020 +2249 405754 0.5160 +2250 2251 0.6330 +2250 2252 0.6300 +2250 2253 0.6080 +2250 2254 0.4230 +2250 2255 0.4630 +2250 2260 0.9990 +2250 2261 0.9710 +2250 2263 0.9980 +2250 2264 0.9970 +2250 2277 0.6820 +2250 2321 0.8710 +2250 2322 0.7890 +2250 2324 0.9080 +2250 2335 0.7990 +2250 2353 0.4260 +2250 2475 0.4890 +2250 2532 0.4420 +2250 2549 0.4990 +2250 2597 0.5950 +2250 2621 0.4670 +2250 2626 0.6050 +2250 2627 0.5750 +2250 2637 0.4710 +2250 2660 0.4720 +2250 2668 0.7550 +2250 2670 0.4860 +2250 2734 0.5610 +2250 2735 0.4580 +2250 2817 0.7550 +2250 2885 0.7450 +2250 2919 0.4200 +2250 2932 0.4840 +2250 2986 0.4140 +2250 3068 0.5820 +2250 3082 0.8760 +2250 3084 0.4560 +2250 3091 0.5830 +2250 3170 0.5440 +2250 3172 0.4480 +2250 3222 0.4210 +2250 3265 0.6270 +2250 3339 0.9460 +2250 3340 0.4300 +2250 3383 0.4840 +2250 3458 0.5790 +2250 3479 0.7880 +2250 3480 0.8500 +2250 3481 0.6290 +2250 3549 0.5260 +2250 3552 0.5900 +2250 3553 0.6590 +2250 3558 0.6610 +2250 3565 0.6330 +2250 3567 0.6460 +2250 3569 0.7020 +2250 3574 0.4730 +2250 3576 0.7530 +2250 3578 0.4610 +2250 3586 0.5840 +2250 3589 0.4470 +2250 3596 0.5200 +2250 3600 0.4500 +2250 3603 0.4060 +2250 3605 0.5090 +2250 3627 0.5130 +2250 3630 0.8210 +2250 3643 0.8110 +2250 3645 0.6520 +2250 3651 0.4780 +2250 3667 0.5260 +2250 3670 0.4370 +2250 3688 0.4410 +2250 3725 0.5050 +2250 3730 0.6020 +2250 3791 0.9270 +2250 3815 0.8500 +2250 3845 0.6820 +2250 3952 0.4450 +2250 3976 0.6630 +2250 4015 0.4140 +2250 4087 0.5200 +2250 4088 0.4610 +2250 4089 0.4430 +2250 4212 0.4200 +2250 4233 0.8650 +2250 4254 0.5190 +2250 4283 0.4020 +2250 4312 0.4140 +2250 4313 0.5130 +2250 4314 0.4290 +2250 4318 0.5980 +2250 4487 0.4430 +2250 4488 0.4040 +2250 4609 0.5560 +2250 4616 0.4140 +2250 4654 0.4380 +2250 4684 0.5660 +2250 4790 0.4180 +2250 4803 0.7080 +2250 4804 0.7620 +2250 4811 0.5460 +2250 4838 0.4160 +2250 4846 0.4480 +2250 4851 0.4630 +2250 4893 0.6110 +2250 4907 0.5040 +2250 4908 0.4920 +2250 4914 0.8870 +2250 4915 0.7540 +2250 5008 0.4190 +2250 5015 0.6870 +2250 5054 0.5090 +2250 5077 0.4350 +2250 5080 0.5980 +2250 5081 0.4220 +2250 5154 0.6430 +2250 5155 0.6530 +2250 5156 0.9040 +2250 5159 0.8910 +2250 5167 0.4500 +2250 5175 0.7330 +2250 5196 0.5890 +2250 5228 0.6080 +2250 5289 0.5300 +2250 5290 0.5530 +2250 5291 0.4550 +2250 5295 0.5000 +2250 5296 0.4780 +2250 5327 0.4940 +2250 5328 0.4020 +2250 5335 0.6020 +2250 5340 0.5110 +2250 5460 0.7330 +2250 5468 0.4330 +2250 5594 0.7220 +2250 5595 0.7340 +2250 5727 0.4240 +2250 5728 0.4510 +2250 5741 0.5950 +2250 5743 0.4420 +2250 5744 0.4360 +2250 5781 0.6110 +2250 5788 0.4930 +2250 5796 0.4660 +2250 5803 0.4800 +2250 5806 0.6720 +2250 5979 0.5150 +2250 6233 0.5160 +2250 6284 0.4920 +2250 6347 0.6090 +2250 6348 0.4790 +2250 6351 0.4470 +2250 6356 0.4770 +2250 6382 0.7600 +2250 6387 0.6150 +2250 6464 0.5610 +2250 6469 0.7990 +2250 6591 0.5010 +2250 6608 0.4700 +2250 6615 0.5240 +2250 6654 0.5500 +2250 6656 0.5070 +2250 6657 0.6430 +2250 6662 0.5430 +2250 6678 0.4450 +2250 6696 0.5330 +2250 6714 0.5180 +2250 6774 0.5830 +2250 6926 0.6520 +2250 7004 0.4650 +2250 7010 0.8480 +2250 7039 0.5880 +2250 7040 0.8210 +2250 7042 0.5020 +2250 7043 0.6680 +2250 7046 0.4180 +2250 7057 0.4560 +2250 7070 0.5120 +2250 7075 0.4210 +2250 7076 0.5200 +2250 7124 0.6530 +2250 7157 0.5400 +2250 7291 0.4460 +2250 7311 0.5170 +2250 7314 0.5190 +2250 7316 0.5560 +2250 7350 0.4920 +2250 7412 0.4770 +2250 7423 0.4310 +2250 7424 0.7170 +2250 7425 0.4540 +2250 7448 0.4820 +2250 7450 0.4610 +2250 7471 0.4710 +2250 7473 0.4070 +2250 7474 0.4490 +2250 7750 0.4670 +2250 7783 0.5100 +2250 7837 0.5300 +2250 7852 0.5190 +2250 8036 0.4270 +2250 8074 0.7260 +2250 8111 0.4080 +2250 8313 0.4190 +2250 8320 0.4040 +2250 8600 0.4480 +2250 8646 0.5080 +2250 8742 0.7860 +2250 8805 0.4080 +2250 8817 0.5960 +2250 8822 0.5820 +2250 8823 0.6090 +2250 8826 0.4260 +2250 8829 0.8240 +2250 8842 0.5070 +2250 9241 0.5550 +2250 9314 0.5890 +2250 9365 0.9910 +2250 9370 0.5970 +2250 9759 0.4480 +2250 9965 0.5220 +2250 9971 0.5300 +2250 9982 0.9450 +2250 10215 0.4130 +2250 10251 0.5140 +2250 10253 0.5860 +2250 10365 0.4180 +2250 10468 0.6570 +2250 10631 0.4090 +2250 10718 0.4300 +2250 10763 0.6260 +2250 10817 0.5920 +2250 10818 0.8560 +2250 11052 0.4010 +2250 11064 0.4410 +2250 11160 0.4030 +2250 22943 0.5270 +2250 23767 0.5720 +2250 23768 0.5960 +2250 23769 0.5370 +2250 26281 0.4130 +2250 27006 0.4470 +2250 29126 0.4200 +2250 29842 0.4040 +2250 30816 0.5170 +2250 30849 0.4990 +2250 51176 0.4460 +2250 51330 0.7130 +2250 51806 0.5920 +2250 53834 0.8220 +2250 54106 0.5740 +2250 63978 0.4220 +2250 64321 0.5710 +2250 79923 0.7590 +2250 80781 0.6820 +2250 83881 0.4820 +2250 84451 0.4660 +2250 85027 0.4260 +2250 89780 0.6960 +2250 91860 0.5920 +2250 92344 0.4590 +2250 112802 0.8820 +2250 132625 0.4830 +2250 137902 0.5290 +2250 147183 0.4240 +2250 149420 0.4750 +2250 152831 0.9030 +2250 163688 0.5920 +2250 285888 0.4430 +2250 340419 0.7150 +2250 399687 0.4020 +2250 405754 0.5160 +2251 2252 0.4970 +2251 2253 0.5050 +2251 2254 0.5150 +2251 2255 0.5280 +2251 2260 0.9990 +2251 2261 0.9610 +2251 2263 0.9970 +2251 2264 0.9970 +2251 2277 0.5150 +2251 2321 0.8750 +2251 2322 0.8050 +2251 2324 0.9120 +2251 2335 0.7990 +2251 2353 0.4250 +2251 2475 0.4910 +2251 2532 0.4430 +2251 2549 0.5010 +2251 2597 0.5710 +2251 2621 0.4400 +2251 2626 0.4450 +2251 2641 0.4220 +2251 2658 0.4290 +2251 2660 0.4020 +2251 2668 0.7460 +2251 2670 0.4830 +2251 2734 0.5630 +2251 2735 0.4530 +2251 2817 0.7580 +2251 2885 0.7450 +2251 2919 0.4330 +2251 2932 0.4530 +2251 3068 0.7290 +2251 3082 0.8760 +2251 3084 0.4310 +2251 3091 0.5830 +2251 3172 0.4580 +2251 3265 0.6340 +2251 3339 0.9480 +2251 3340 0.4260 +2251 3383 0.4740 +2251 3458 0.6080 +2251 3479 0.7940 +2251 3480 0.8500 +2251 3481 0.6270 +2251 3549 0.5120 +2251 3552 0.5890 +2251 3553 0.6650 +2251 3558 0.6800 +2251 3562 0.4380 +2251 3565 0.6390 +2251 3567 0.6270 +2251 3569 0.7020 +2251 3574 0.4780 +2251 3576 0.7550 +2251 3578 0.4620 +2251 3586 0.5860 +2251 3589 0.4100 +2251 3596 0.5340 +2251 3600 0.4600 +2251 3605 0.5320 +2251 3611 0.5210 +2251 3627 0.5140 +2251 3630 0.8230 +2251 3643 0.8110 +2251 3645 0.6930 +2251 3667 0.5260 +2251 3670 0.4520 +2251 3688 0.4320 +2251 3725 0.4810 +2251 3730 0.6060 +2251 3791 0.9290 +2251 3815 0.8480 +2251 3845 0.6880 +2251 3952 0.4470 +2251 3976 0.6200 +2251 4087 0.5180 +2251 4088 0.4610 +2251 4089 0.4320 +2251 4212 0.4030 +2251 4233 0.8650 +2251 4254 0.5140 +2251 4283 0.4050 +2251 4312 0.4110 +2251 4313 0.5190 +2251 4314 0.4340 +2251 4318 0.6120 +2251 4487 0.4150 +2251 4609 0.5310 +2251 4616 0.4040 +2251 4617 0.4360 +2251 4654 0.5190 +2251 4790 0.4180 +2251 4803 0.7030 +2251 4804 0.7580 +2251 4811 0.5460 +2251 4846 0.4470 +2251 4851 0.4800 +2251 4893 0.6120 +2251 4907 0.4920 +2251 4908 0.5190 +2251 4914 0.8870 +2251 4915 0.7550 +2251 5008 0.4300 +2251 5054 0.4860 +2251 5080 0.5020 +2251 5081 0.4230 +2251 5154 0.4320 +2251 5155 0.6610 +2251 5156 0.8630 +2251 5159 0.8940 +2251 5167 0.4430 +2251 5175 0.7280 +2251 5196 0.5920 +2251 5228 0.6120 +2251 5289 0.5290 +2251 5290 0.5560 +2251 5291 0.4520 +2251 5295 0.4970 +2251 5296 0.4750 +2251 5327 0.4950 +2251 5335 0.6040 +2251 5340 0.5110 +2251 5460 0.6850 +2251 5468 0.4330 +2251 5594 0.5630 +2251 5595 0.7170 +2251 5727 0.4170 +2251 5728 0.4510 +2251 5741 0.5980 +2251 5743 0.4430 +2251 5744 0.4220 +2251 5781 0.6110 +2251 5788 0.4920 +2251 5803 0.4800 +2251 5806 0.8090 +2251 5979 0.5060 +2251 6233 0.5150 +2251 6284 0.4950 +2251 6347 0.6100 +2251 6348 0.5020 +2251 6351 0.4720 +2251 6356 0.4790 +2251 6382 0.7610 +2251 6387 0.6230 +2251 6464 0.5600 +2251 6469 0.7970 +2251 6591 0.4560 +2251 6608 0.4450 +2251 6615 0.5150 +2251 6654 0.5420 +2251 6657 0.5930 +2251 6662 0.5330 +2251 6678 0.6260 +2251 6696 0.5440 +2251 6714 0.5170 +2251 6774 0.5510 +2251 6926 0.5520 +2251 7004 0.4410 +2251 7010 0.8480 +2251 7039 0.5860 +2251 7040 0.8250 +2251 7042 0.5220 +2251 7043 0.6840 +2251 7046 0.4240 +2251 7057 0.4740 +2251 7070 0.5090 +2251 7075 0.4230 +2251 7076 0.5210 +2251 7124 0.6550 +2251 7157 0.5260 +2251 7291 0.4380 +2251 7311 0.5170 +2251 7314 0.5070 +2251 7316 0.5400 +2251 7412 0.4750 +2251 7423 0.4180 +2251 7424 0.5540 +2251 7425 0.4500 +2251 7448 0.4810 +2251 7450 0.4630 +2251 7471 0.4720 +2251 7472 0.4150 +2251 7474 0.4320 +2251 7750 0.4520 +2251 7783 0.5280 +2251 7837 0.5300 +2251 7852 0.5150 +2251 8074 0.7700 +2251 8313 0.4010 +2251 8600 0.4670 +2251 8646 0.4730 +2251 8742 0.7870 +2251 8805 0.4070 +2251 8817 0.5340 +2251 8822 0.4890 +2251 8823 0.5370 +2251 8826 0.4170 +2251 8829 0.8230 +2251 8842 0.5070 +2251 9208 0.4160 +2251 9241 0.5220 +2251 9314 0.4530 +2251 9365 0.9910 +2251 9370 0.5980 +2251 9759 0.4340 +2251 9965 0.6280 +2251 9971 0.5330 +2251 9982 0.9420 +2251 10251 0.6260 +2251 10252 0.6220 +2251 10253 0.6430 +2251 10468 0.6410 +2251 10763 0.5750 +2251 10817 0.5970 +2251 10818 0.8980 +2251 11052 0.4010 +2251 11064 0.4370 +2251 11160 0.4030 +2251 22943 0.4890 +2251 23767 0.5740 +2251 23768 0.5460 +2251 23769 0.5430 +2251 26127 0.4210 +2251 26281 0.5100 +2251 27006 0.5260 +2251 27020 0.4010 +2251 29126 0.4070 +2251 30816 0.5160 +2251 30849 0.4990 +2251 51176 0.4050 +2251 51330 0.7160 +2251 51806 0.5930 +2251 53834 0.6520 +2251 54106 0.5730 +2251 79923 0.5410 +2251 80781 0.6850 +2251 85027 0.4240 +2251 89780 0.5310 +2251 91860 0.5940 +2251 137902 0.5290 +2251 152831 0.9030 +2251 163688 0.6020 +2251 220064 0.4490 +2251 285888 0.4460 +2251 399687 0.4020 +2251 405754 0.5120 +2252 2253 0.5020 +2252 2254 0.5290 +2252 2255 0.6380 +2252 2260 0.9990 +2252 2261 0.9760 +2252 2263 0.9990 +2252 2264 0.9950 +2252 2277 0.5430 +2252 2321 0.9180 +2252 2322 0.7980 +2252 2324 0.9090 +2252 2335 0.8020 +2252 2353 0.4620 +2252 2475 0.4910 +2252 2487 0.4610 +2252 2532 0.4770 +2252 2549 0.5060 +2252 2597 0.5990 +2252 2621 0.4540 +2252 2626 0.4600 +2252 2641 0.4470 +2252 2660 0.4050 +2252 2668 0.7510 +2252 2670 0.4660 +2252 2697 0.4140 +2252 2734 0.5900 +2252 2735 0.4740 +2252 2736 0.4060 +2252 2817 0.7720 +2252 2885 0.7650 +2252 2919 0.4880 +2252 2932 0.4970 +2252 3068 0.6080 +2252 3082 0.8940 +2252 3084 0.4770 +2252 3091 0.5980 +2252 3170 0.4690 +2252 3172 0.4550 +2252 3265 0.6320 +2252 3339 0.9900 +2252 3340 0.4570 +2252 3383 0.5080 +2252 3458 0.6160 +2252 3479 0.8270 +2252 3480 0.8570 +2252 3481 0.7000 +2252 3486 0.4200 +2252 3549 0.5270 +2252 3552 0.6560 +2252 3553 0.7080 +2252 3557 0.4250 +2252 3558 0.6920 +2252 3562 0.4300 +2252 3565 0.6070 +2252 3567 0.5090 +2252 3569 0.7400 +2252 3574 0.5760 +2252 3576 0.8810 +2252 3578 0.4620 +2252 3586 0.6340 +2252 3589 0.4940 +2252 3596 0.5820 +2252 3600 0.5080 +2252 3605 0.5730 +2252 3606 0.4040 +2252 3620 0.4170 +2252 3627 0.5380 +2252 3630 0.7640 +2252 3643 0.8210 +2252 3645 0.6590 +2252 3651 0.4920 +2252 3667 0.5300 +2252 3670 0.4360 +2252 3684 0.4130 +2252 3688 0.4960 +2252 3725 0.5100 +2252 3791 0.9450 +2252 3815 0.9110 +2252 3845 0.6950 +2252 3852 0.4240 +2252 3861 0.4250 +2252 3952 0.4850 +2252 3976 0.6340 +2252 4015 0.4810 +2252 4060 0.4110 +2252 4087 0.5320 +2252 4088 0.4980 +2252 4089 0.4770 +2252 4192 0.5990 +2252 4212 0.4140 +2252 4233 0.9020 +2252 4236 0.4220 +2252 4254 0.7350 +2252 4283 0.4480 +2252 4312 0.4920 +2252 4313 0.5850 +2252 4314 0.5060 +2252 4316 0.4130 +2252 4318 0.6560 +2252 4322 0.4220 +2252 4487 0.4650 +2252 4488 0.4370 +2252 4609 0.5450 +2252 4616 0.4160 +2252 4654 0.4300 +2252 4790 0.4430 +2252 4803 0.7060 +2252 4804 0.7720 +2252 4811 0.5580 +2252 4825 0.4200 +2252 4846 0.4520 +2252 4851 0.4770 +2252 4893 0.6130 +2252 4907 0.5400 +2252 4908 0.5020 +2252 4914 0.8920 +2252 4915 0.7710 +2252 5008 0.6040 +2252 5054 0.5460 +2252 5080 0.5360 +2252 5081 0.4040 +2252 5154 0.5030 +2252 5155 0.6910 +2252 5156 0.8860 +2252 5159 0.9040 +2252 5167 0.4620 +2252 5175 0.7570 +2252 5196 0.6080 +2252 5228 0.6210 +2252 5289 0.5280 +2252 5290 0.5610 +2252 5291 0.4650 +2252 5295 0.5060 +2252 5296 0.4750 +2252 5327 0.4950 +2252 5328 0.4480 +2252 5335 0.6270 +2252 5340 0.5480 +2252 5460 0.6980 +2252 5468 0.4710 +2252 5594 0.5980 +2252 5595 0.7480 +2252 5727 0.4360 +2252 5728 0.4970 +2252 5741 0.5960 +2252 5743 0.5760 +2252 5744 0.4410 +2252 5764 0.5610 +2252 5781 0.6310 +2252 5788 0.5480 +2252 5803 0.4740 +2252 5806 0.6860 +2252 5979 0.6050 +2252 6233 0.5210 +2252 6284 0.4930 +2252 6347 0.6390 +2252 6348 0.5270 +2252 6351 0.4860 +2252 6356 0.5280 +2252 6373 0.5840 +2252 6376 0.4020 +2252 6382 0.7690 +2252 6387 0.6930 +2252 6401 0.4040 +2252 6424 0.5560 +2252 6440 0.5170 +2252 6464 0.5830 +2252 6469 0.8170 +2252 6586 0.4170 +2252 6591 0.5410 +2252 6608 0.4540 +2252 6615 0.5570 +2252 6654 0.5770 +2252 6657 0.5990 +2252 6662 0.5960 +2252 6678 0.4650 +2252 6696 0.7290 +2252 6714 0.5530 +2252 6774 0.5790 +2252 6926 0.5770 +2252 7004 0.4560 +2252 7010 0.8570 +2252 7039 0.6760 +2252 7040 0.8460 +2252 7042 0.7400 +2252 7043 0.7440 +2252 7046 0.4540 +2252 7048 0.6330 +2252 7057 0.5520 +2252 7058 0.4420 +2252 7070 0.5930 +2252 7075 0.4200 +2252 7076 0.5840 +2252 7077 0.4660 +2252 7080 0.4500 +2252 7082 0.4240 +2252 7099 0.4280 +2252 7114 0.5330 +2252 7124 0.6950 +2252 7130 0.4580 +2252 7157 0.5720 +2252 7291 0.4610 +2252 7311 0.5170 +2252 7314 0.5180 +2252 7316 0.5430 +2252 7412 0.5230 +2252 7423 0.4340 +2252 7424 0.5880 +2252 7425 0.4510 +2252 7448 0.5120 +2252 7450 0.5230 +2252 7471 0.4580 +2252 7472 0.4670 +2252 7474 0.7050 +2252 7783 0.5970 +2252 7837 0.5530 +2252 7852 0.5540 +2252 8074 0.7650 +2252 8313 0.4420 +2252 8549 0.4110 +2252 8600 0.4770 +2252 8646 0.4810 +2252 8742 0.7880 +2252 8817 0.5350 +2252 8822 0.4480 +2252 8823 0.5020 +2252 8826 0.4250 +2252 8829 0.8930 +2252 8842 0.5070 +2252 9241 0.6180 +2252 9314 0.4650 +2252 9365 0.9900 +2252 9370 0.6390 +2252 9759 0.4320 +2252 9965 0.5480 +2252 9971 0.5160 +2252 9982 0.9900 +2252 10251 0.4950 +2252 10252 0.4230 +2252 10253 0.5970 +2252 10468 0.6790 +2252 10626 0.5780 +2252 10631 0.5010 +2252 10763 0.5690 +2252 10817 0.5960 +2252 10818 0.8620 +2252 22943 0.5360 +2252 26281 0.4950 +2252 27006 0.4620 +2252 27020 0.4120 +2252 29126 0.4270 +2252 30816 0.5260 +2252 30849 0.4990 +2252 50674 0.4060 +2252 51176 0.4730 +2252 51330 0.6970 +2252 51806 0.5980 +2252 53834 0.7310 +2252 54106 0.5860 +2252 54361 0.4300 +2252 56955 0.4510 +2252 56986 0.6510 +2252 64321 0.4650 +2252 79888 0.7390 +2252 79923 0.5470 +2252 80781 0.6930 +2252 83888 0.5740 +2252 83942 0.4360 +2252 85027 0.4240 +2252 89780 0.6080 +2252 90865 0.4390 +2252 91860 0.5940 +2252 121340 0.4020 +2252 137902 0.5540 +2252 143282 0.5430 +2252 152831 0.9030 +2252 163688 0.5940 +2252 284654 0.5370 +2252 285888 0.4410 +2252 405754 0.5210 +2252 100506658 0.4010 +2253 2254 0.5590 +2253 2255 0.6350 +2253 2257 0.6840 +2253 2259 0.6270 +2253 2260 0.9990 +2253 2261 0.9990 +2253 2263 0.9990 +2253 2264 0.9970 +2253 2277 0.4880 +2253 2290 0.5900 +2253 2302 0.5160 +2253 2321 0.8710 +2253 2322 0.7890 +2253 2324 0.9120 +2253 2335 0.7990 +2253 2353 0.4260 +2253 2475 0.4860 +2253 2532 0.4380 +2253 2549 0.4950 +2253 2597 0.5900 +2253 2626 0.5340 +2253 2627 0.4150 +2253 2637 0.8570 +2253 2668 0.6740 +2253 2670 0.5170 +2253 2734 0.5590 +2253 2735 0.5810 +2253 2736 0.5410 +2253 2737 0.6790 +2253 2796 0.6690 +2253 2798 0.6850 +2253 2817 0.7600 +2253 2885 0.7450 +2253 2932 0.4960 +2253 3021 0.4050 +2253 3068 0.7170 +2253 3082 0.8660 +2253 3084 0.4160 +2253 3091 0.5770 +2253 3170 0.6990 +2253 3172 0.4930 +2253 3199 0.6160 +2253 3209 0.4320 +2253 3211 0.4770 +2253 3213 0.4310 +2253 3214 0.5090 +2253 3233 0.4730 +2253 3238 0.4030 +2253 3239 0.5430 +2253 3265 0.6260 +2253 3339 0.9460 +2253 3340 0.4530 +2253 3383 0.4660 +2253 3458 0.5750 +2253 3479 0.7620 +2253 3480 0.8480 +2253 3481 0.6250 +2253 3549 0.7520 +2253 3552 0.5870 +2253 3553 0.6470 +2253 3558 0.4950 +2253 3562 0.4050 +2253 3565 0.6580 +2253 3567 0.4810 +2253 3569 0.6770 +2253 3574 0.4470 +2253 3576 0.7460 +2253 3578 0.4540 +2253 3586 0.5760 +2253 3596 0.5220 +2253 3600 0.4380 +2253 3605 0.5010 +2253 3611 0.5190 +2253 3627 0.4870 +2253 3630 0.8200 +2253 3643 0.8090 +2253 3645 0.6560 +2253 3667 0.5200 +2253 3670 0.6190 +2253 3688 0.4380 +2253 3725 0.4790 +2253 3730 0.9110 +2253 3791 0.9260 +2253 3815 0.8480 +2253 3845 0.6820 +2253 3952 0.4470 +2253 3975 0.4710 +2253 3976 0.6210 +2253 4009 0.6210 +2253 4010 0.5720 +2253 4015 0.4040 +2253 4038 0.4830 +2253 4040 0.4160 +2253 4041 0.4360 +2253 4087 0.5200 +2253 4088 0.4610 +2253 4089 0.4580 +2253 4233 0.8640 +2253 4254 0.5130 +2253 4313 0.5090 +2253 4314 0.4240 +2253 4318 0.5920 +2253 4487 0.7710 +2253 4488 0.6210 +2253 4609 0.5250 +2253 4617 0.4140 +2253 4654 0.4930 +2253 4684 0.4050 +2253 4760 0.4170 +2253 4762 0.4750 +2253 4790 0.4140 +2253 4803 0.6840 +2253 4804 0.7640 +2253 4811 0.5460 +2253 4821 0.4160 +2253 4838 0.4400 +2253 4846 0.4430 +2253 4851 0.4680 +2253 4893 0.6100 +2253 4907 0.4910 +2253 4908 0.5250 +2253 4914 0.9010 +2253 4915 0.7620 +2253 4929 0.5070 +2253 5008 0.4190 +2253 5013 0.5700 +2253 5015 0.8080 +2253 5054 0.4280 +2253 5075 0.4060 +2253 5076 0.7330 +2253 5077 0.5520 +2253 5080 0.6800 +2253 5081 0.4950 +2253 5083 0.6890 +2253 5154 0.4410 +2253 5155 0.7520 +2253 5156 0.8570 +2253 5159 0.8880 +2253 5167 0.4410 +2253 5175 0.7280 +2253 5196 0.5890 +2253 5228 0.5970 +2253 5289 0.5280 +2253 5290 0.5470 +2253 5291 0.4530 +2253 5295 0.4950 +2253 5296 0.4770 +2253 5307 0.4290 +2253 5308 0.5490 +2253 5309 0.5530 +2253 5327 0.4780 +2253 5335 0.6120 +2253 5340 0.5060 +2253 5396 0.5500 +2253 5460 0.7350 +2253 5468 0.4280 +2253 5594 0.5730 +2253 5595 0.7340 +2253 5727 0.5540 +2253 5728 0.4510 +2253 5741 0.5920 +2253 5743 0.4410 +2253 5744 0.4250 +2253 5781 0.6180 +2253 5788 0.4590 +2253 5803 0.4820 +2253 5806 0.7830 +2253 5970 0.4440 +2253 5979 0.6150 +2253 5990 0.4330 +2253 6233 0.5180 +2253 6284 0.4910 +2253 6347 0.5820 +2253 6348 0.4770 +2253 6351 0.4460 +2253 6356 0.4480 +2253 6382 0.7590 +2253 6387 0.6140 +2253 6464 0.5630 +2253 6468 0.5580 +2253 6469 0.9540 +2253 6495 0.4190 +2253 6496 0.5410 +2253 6591 0.4850 +2253 6608 0.5560 +2253 6615 0.5490 +2253 6654 0.5460 +2253 6656 0.5060 +2253 6657 0.6500 +2253 6658 0.4540 +2253 6662 0.6010 +2253 6663 0.6570 +2253 6678 0.6250 +2253 6696 0.5160 +2253 6714 0.5070 +2253 6736 0.4230 +2253 6774 0.5440 +2253 6862 0.4770 +2253 6870 0.6030 +2253 6899 0.4320 +2253 6910 0.5390 +2253 6911 0.7380 +2253 6926 0.6060 +2253 7010 0.8480 +2253 7039 0.5820 +2253 7040 0.8160 +2253 7042 0.4980 +2253 7043 0.7060 +2253 7046 0.4530 +2253 7054 0.5510 +2253 7057 0.4510 +2253 7070 0.5060 +2253 7075 0.4280 +2253 7076 0.4950 +2253 7080 0.4760 +2253 7124 0.6530 +2253 7157 0.5430 +2253 7291 0.6100 +2253 7301 0.4260 +2253 7311 0.5170 +2253 7314 0.5070 +2253 7316 0.5410 +2253 7412 0.4480 +2253 7423 0.4180 +2253 7424 0.5330 +2253 7425 0.4560 +2253 7448 0.4770 +2253 7450 0.4490 +2253 7471 0.8020 +2253 7473 0.5580 +2253 7474 0.5570 +2253 7476 0.4580 +2253 7477 0.4060 +2253 7478 0.5020 +2253 7479 0.4980 +2253 7481 0.4620 +2253 7484 0.4820 +2253 7490 0.4210 +2253 7750 0.4490 +2253 7783 0.7460 +2253 7837 0.5510 +2253 7849 0.4220 +2253 7852 0.5130 +2253 8022 0.4070 +2253 8074 0.9350 +2253 8100 0.6000 +2253 8200 0.4280 +2253 8290 0.4130 +2253 8312 0.4180 +2253 8313 0.4900 +2253 8356 0.4030 +2253 8600 0.4800 +2253 8646 0.6430 +2253 8742 0.7790 +2253 8805 0.4170 +2253 8817 0.4790 +2253 8820 0.4520 +2253 8822 0.4970 +2253 8823 0.5010 +2253 8826 0.4260 +2253 8829 0.8250 +2253 8842 0.5060 +2253 8854 0.5380 +2253 8928 0.4040 +2253 9241 0.7680 +2253 9314 0.4930 +2253 9355 0.4270 +2253 9365 0.9930 +2253 9370 0.5940 +2253 9394 0.5210 +2253 9464 0.5920 +2253 9496 0.4430 +2253 9530 0.4130 +2253 9965 0.8510 +2253 9971 0.5160 +2253 9982 0.9120 +2253 10215 0.4780 +2253 10251 0.6480 +2253 10252 0.7000 +2253 10253 0.7210 +2253 10360 0.7380 +2253 10371 0.4400 +2253 10468 0.6760 +2253 10637 0.6400 +2253 10736 0.4200 +2253 10763 0.6210 +2253 10817 0.5970 +2253 10818 0.8570 +2253 11052 0.4010 +2253 11064 0.4320 +2253 11160 0.4030 +2253 22943 0.5880 +2253 23767 0.7070 +2253 23768 0.5570 +2253 23769 0.5430 +2253 25987 0.4700 +2253 26012 0.6260 +2253 26127 0.4100 +2253 26281 0.5150 +2253 26291 0.5980 +2253 26585 0.6490 +2253 27006 0.6220 +2253 27020 0.4010 +2253 28514 0.4280 +2253 30816 0.5150 +2253 30849 0.4990 +2253 51176 0.6200 +2253 51185 0.6320 +2253 51330 0.6970 +2253 51450 0.4680 +2253 51806 0.5950 +2253 53834 0.8990 +2253 54106 0.5720 +2253 54361 0.5290 +2253 54756 0.6690 +2253 55636 0.6890 +2253 56033 0.7140 +2253 56751 0.5080 +2253 60675 0.7270 +2253 63973 0.5390 +2253 64321 0.4790 +2253 79923 0.5970 +2253 80712 0.4020 +2253 80781 0.6780 +2253 81606 0.4910 +2253 81848 0.7130 +2253 83881 0.5210 +2253 84634 0.6190 +2253 89780 0.7840 +2253 91860 0.5940 +2253 121340 0.4240 +2253 128674 0.6290 +2253 137902 0.5510 +2253 145873 0.4490 +2253 152831 0.9030 +2253 163688 0.5940 +2253 221833 0.4460 +2253 284654 0.4140 +2253 285888 0.7300 +2253 399687 0.4020 +2253 405754 0.5050 +2253 440093 0.4030 +2253 440686 0.4030 +2253 653604 0.4030 +2254 2255 0.5280 +2254 2260 0.9990 +2254 2261 0.9990 +2254 2263 0.9990 +2254 2264 0.9970 +2254 2277 0.6490 +2254 2321 0.8740 +2254 2322 0.8000 +2254 2324 0.9090 +2254 2335 0.7980 +2254 2353 0.4450 +2254 2475 0.4900 +2254 2516 0.6710 +2254 2532 0.4430 +2254 2549 0.5000 +2254 2597 0.5810 +2254 2621 0.4290 +2254 2626 0.7480 +2254 2668 0.6220 +2254 2670 0.4820 +2254 2697 0.4340 +2254 2734 0.5690 +2254 2735 0.5210 +2254 2737 0.5660 +2254 2817 0.7720 +2254 2885 0.7710 +2254 2919 0.4490 +2254 2932 0.5030 +2254 3068 0.7100 +2254 3082 0.8650 +2254 3084 0.4270 +2254 3091 0.6030 +2254 3170 0.4260 +2254 3172 0.4700 +2254 3265 0.6370 +2254 3339 0.9490 +2254 3340 0.4690 +2254 3383 0.4710 +2254 3458 0.5850 +2254 3479 0.7720 +2254 3480 0.8590 +2254 3481 0.6450 +2254 3549 0.5720 +2254 3552 0.5970 +2254 3553 0.6720 +2254 3558 0.5050 +2254 3562 0.4120 +2254 3565 0.5450 +2254 3567 0.4640 +2254 3569 0.7030 +2254 3574 0.4790 +2254 3576 0.7530 +2254 3578 0.4620 +2254 3586 0.5830 +2254 3589 0.4340 +2254 3596 0.5210 +2254 3600 0.4670 +2254 3605 0.5070 +2254 3611 0.5180 +2254 3627 0.5140 +2254 3630 0.8140 +2254 3643 0.8260 +2254 3645 0.6900 +2254 3667 0.5370 +2254 3670 0.4600 +2254 3688 0.4390 +2254 3725 0.5100 +2254 3730 0.6340 +2254 3791 0.9280 +2254 3815 0.8550 +2254 3845 0.7000 +2254 3952 0.4470 +2254 3976 0.6080 +2254 4015 0.4170 +2254 4087 0.5390 +2254 4088 0.4820 +2254 4089 0.4840 +2254 4212 0.4040 +2254 4233 0.8650 +2254 4254 0.5120 +2254 4283 0.4100 +2254 4312 0.4050 +2254 4313 0.5180 +2254 4314 0.4440 +2254 4318 0.6010 +2254 4322 0.4060 +2254 4487 0.4830 +2254 4488 0.4460 +2254 4609 0.5220 +2254 4654 0.4400 +2254 4790 0.4180 +2254 4803 0.6910 +2254 4804 0.7660 +2254 4811 0.5500 +2254 4846 0.4470 +2254 4851 0.4370 +2254 4893 0.6270 +2254 4907 0.4720 +2254 4908 0.5200 +2254 4914 0.8870 +2254 4915 0.7730 +2254 5008 0.4350 +2254 5015 0.4280 +2254 5054 0.4770 +2254 5076 0.4840 +2254 5080 0.5140 +2254 5081 0.4080 +2254 5154 0.4480 +2254 5155 0.6710 +2254 5156 0.8650 +2254 5159 0.8930 +2254 5167 0.4440 +2254 5175 0.7420 +2254 5196 0.5900 +2254 5228 0.6090 +2254 5289 0.5290 +2254 5290 0.5710 +2254 5291 0.4720 +2254 5295 0.5140 +2254 5296 0.4780 +2254 5327 0.4950 +2254 5335 0.6370 +2254 5340 0.5070 +2254 5460 0.6950 +2254 5468 0.4550 +2254 5594 0.5850 +2254 5595 0.7410 +2254 5727 0.4890 +2254 5728 0.4770 +2254 5741 0.5930 +2254 5743 0.4570 +2254 5744 0.4320 +2254 5781 0.6360 +2254 5788 0.5020 +2254 5803 0.4810 +2254 5806 0.5480 +2254 5979 0.6710 +2254 6233 0.5250 +2254 6284 0.4940 +2254 6347 0.6110 +2254 6348 0.4890 +2254 6351 0.4740 +2254 6356 0.4910 +2254 6382 0.7610 +2254 6387 0.6210 +2254 6464 0.5870 +2254 6469 0.8820 +2254 6491 0.4570 +2254 6591 0.4930 +2254 6608 0.4920 +2254 6615 0.5460 +2254 6654 0.5780 +2254 6657 0.6070 +2254 6662 0.9070 +2254 6663 0.4080 +2254 6678 0.4560 +2254 6696 0.5330 +2254 6714 0.5280 +2254 6736 0.8300 +2254 6774 0.5670 +2254 6926 0.5710 +2254 7004 0.4220 +2254 7010 0.8490 +2254 7039 0.5920 +2254 7040 0.8280 +2254 7042 0.5340 +2254 7043 0.6940 +2254 7046 0.4630 +2254 7057 0.5010 +2254 7070 0.5070 +2254 7075 0.4280 +2254 7076 0.5220 +2254 7077 0.4160 +2254 7124 0.6470 +2254 7157 0.5420 +2254 7291 0.4520 +2254 7311 0.5170 +2254 7314 0.5070 +2254 7316 0.5410 +2254 7412 0.4780 +2254 7423 0.6300 +2254 7424 0.6960 +2254 7425 0.4560 +2254 7448 0.4640 +2254 7450 0.4640 +2254 7471 0.4640 +2254 7473 0.6030 +2254 7474 0.4900 +2254 7476 0.4210 +2254 7477 0.5400 +2254 7481 0.4130 +2254 7490 0.5000 +2254 7750 0.4560 +2254 7783 0.5790 +2254 7837 0.5340 +2254 7852 0.5070 +2254 8074 0.9180 +2254 8200 0.4130 +2254 8312 0.4270 +2254 8313 0.4760 +2254 8600 0.4720 +2254 8646 0.5080 +2254 8742 0.7860 +2254 8805 0.4100 +2254 8817 0.5890 +2254 8822 0.5380 +2254 8823 0.4150 +2254 8826 0.4260 +2254 8829 0.8310 +2254 8842 0.5140 +2254 9208 0.4160 +2254 9241 0.7460 +2254 9314 0.4540 +2254 9365 0.9910 +2254 9370 0.6020 +2254 9429 0.5180 +2254 9464 0.4160 +2254 9530 0.4180 +2254 9965 0.7480 +2254 9971 0.5210 +2254 9982 0.9410 +2254 10215 0.4080 +2254 10251 0.5060 +2254 10252 0.4030 +2254 10253 0.6630 +2254 10468 0.6610 +2254 10631 0.4060 +2254 10736 0.4340 +2254 10763 0.5800 +2254 10817 0.5990 +2254 10818 0.8900 +2254 11052 0.4010 +2254 11064 0.4330 +2254 11116 0.4070 +2254 11160 0.4130 +2254 22943 0.5070 +2254 23767 0.5800 +2254 23768 0.5600 +2254 23769 0.5450 +2254 26127 0.4220 +2254 26281 0.7940 +2254 26585 0.5830 +2254 27006 0.4790 +2254 27020 0.4100 +2254 29126 0.4060 +2254 30816 0.5170 +2254 30849 0.4990 +2254 50846 0.7140 +2254 50863 0.4520 +2254 51176 0.4580 +2254 51330 0.7120 +2254 51806 0.5970 +2254 53834 0.7740 +2254 54106 0.5750 +2254 54361 0.6100 +2254 60529 0.4610 +2254 64067 0.4150 +2254 64321 0.4060 +2254 79923 0.5300 +2254 80781 0.6780 +2254 81848 0.4050 +2254 85027 0.4220 +2254 89780 0.5510 +2254 91860 0.5920 +2254 121340 0.4050 +2254 137902 0.5340 +2254 152831 0.9050 +2254 163688 0.5920 +2254 221154 0.7630 +2254 284654 0.5620 +2254 285888 0.4550 +2254 286097 0.7750 +2254 399687 0.4020 +2254 405754 0.5070 +2255 2258 0.4480 +2255 2260 0.9990 +2255 2261 0.9810 +2255 2263 0.9990 +2255 2264 0.9950 +2255 2277 0.5230 +2255 2290 0.4090 +2255 2321 0.8770 +2255 2322 0.8060 +2255 2324 0.9120 +2255 2335 0.7990 +2255 2353 0.4590 +2255 2475 0.4900 +2255 2487 0.4030 +2255 2520 0.5650 +2255 2532 0.4680 +2255 2549 0.5000 +2255 2597 0.5850 +2255 2621 0.4370 +2255 2626 0.5300 +2255 2627 0.4090 +2255 2641 0.4310 +2255 2668 0.7310 +2255 2670 0.4810 +2255 2697 0.4060 +2255 2734 0.5650 +2255 2735 0.5310 +2255 2736 0.4540 +2255 2737 0.6390 +2255 2817 0.7670 +2255 2885 0.7590 +2255 2919 0.4350 +2255 2932 0.4980 +2255 3068 0.5810 +2255 3082 0.8870 +2255 3084 0.4450 +2255 3091 0.5910 +2255 3170 0.5040 +2255 3172 0.4850 +2255 3265 0.6350 +2255 3339 0.9310 +2255 3340 0.4830 +2255 3383 0.4870 +2255 3458 0.5960 +2255 3479 0.7890 +2255 3480 0.8740 +2255 3481 0.6430 +2255 3549 0.5560 +2255 3552 0.6020 +2255 3553 0.6820 +2255 3558 0.6550 +2255 3565 0.5630 +2255 3567 0.6410 +2255 3569 0.7110 +2255 3574 0.4750 +2255 3576 0.7700 +2255 3578 0.4700 +2255 3586 0.5820 +2255 3589 0.4230 +2255 3596 0.5300 +2255 3600 0.4660 +2255 3605 0.5060 +2255 3627 0.5120 +2255 3630 0.8200 +2255 3643 0.8140 +2255 3645 0.6590 +2255 3651 0.8800 +2255 3655 0.5840 +2255 3667 0.5260 +2255 3670 0.5810 +2255 3684 0.4060 +2255 3688 0.4320 +2255 3698 0.4340 +2255 3725 0.4860 +2255 3791 0.9330 +2255 3815 0.8580 +2255 3818 0.4310 +2255 3845 0.7070 +2255 3952 0.4510 +2255 3976 0.6390 +2255 4015 0.4780 +2255 4023 0.5210 +2255 4072 0.4250 +2255 4087 0.5290 +2255 4088 0.4730 +2255 4089 0.4880 +2255 4212 0.4450 +2255 4233 0.8810 +2255 4254 0.5110 +2255 4283 0.4030 +2255 4312 0.4010 +2255 4313 0.5270 +2255 4314 0.4380 +2255 4318 0.5980 +2255 4477 0.4300 +2255 4487 0.5600 +2255 4488 0.4620 +2255 4609 0.5420 +2255 4654 0.4480 +2255 4760 0.4310 +2255 4790 0.4180 +2255 4803 0.6790 +2255 4804 0.7720 +2255 4811 0.5590 +2255 4824 0.5560 +2255 4825 0.4230 +2255 4846 0.4560 +2255 4851 0.4870 +2255 4893 0.6140 +2255 4907 0.4880 +2255 4908 0.4840 +2255 4914 0.8890 +2255 4915 0.7660 +2255 5008 0.6320 +2255 5015 0.4530 +2255 5054 0.4860 +2255 5076 0.4480 +2255 5077 0.4370 +2255 5080 0.5470 +2255 5081 0.4180 +2255 5083 0.4660 +2255 5154 0.4540 +2255 5155 0.6800 +2255 5156 0.8800 +2255 5159 0.9040 +2255 5167 0.4450 +2255 5175 0.7530 +2255 5196 0.5890 +2255 5228 0.6120 +2255 5241 0.4220 +2255 5289 0.5280 +2255 5290 0.5730 +2255 5291 0.4730 +2255 5295 0.5050 +2255 5296 0.4760 +2255 5308 0.4570 +2255 5327 0.4950 +2255 5335 0.6260 +2255 5340 0.5100 +2255 5345 0.4330 +2255 5460 0.7110 +2255 5468 0.4800 +2255 5594 0.5760 +2255 5595 0.7390 +2255 5727 0.5080 +2255 5728 0.4740 +2255 5741 0.5860 +2255 5743 0.4660 +2255 5744 0.4510 +2255 5781 0.6380 +2255 5788 0.5030 +2255 5803 0.4800 +2255 5806 0.8200 +2255 5979 0.6200 +2255 6233 0.5180 +2255 6284 0.4910 +2255 6347 0.6220 +2255 6348 0.4880 +2255 6351 0.4470 +2255 6356 0.5060 +2255 6373 0.5760 +2255 6382 0.7610 +2255 6387 0.6340 +2255 6440 0.5460 +2255 6464 0.5750 +2255 6469 0.9240 +2255 6495 0.4060 +2255 6513 0.4470 +2255 6591 0.5030 +2255 6608 0.4940 +2255 6615 0.5410 +2255 6654 0.5640 +2255 6657 0.6240 +2255 6662 0.6280 +2255 6678 0.4610 +2255 6696 0.5250 +2255 6714 0.5590 +2255 6774 0.5800 +2255 6899 0.5650 +2255 6910 0.7480 +2255 6926 0.7070 +2255 6943 0.5220 +2255 7004 0.4400 +2255 7010 0.8550 +2255 7015 0.5720 +2255 7039 0.6090 +2255 7040 0.8250 +2255 7042 0.5420 +2255 7043 0.7020 +2255 7046 0.4560 +2255 7048 0.4160 +2255 7057 0.5070 +2255 7070 0.5270 +2255 7075 0.4280 +2255 7076 0.4960 +2255 7080 0.5210 +2255 7082 0.4060 +2255 7099 0.4060 +2255 7124 0.6500 +2255 7157 0.6060 +2255 7291 0.4560 +2255 7311 0.5170 +2255 7314 0.5070 +2255 7316 0.5500 +2255 7412 0.4880 +2255 7423 0.4180 +2255 7424 0.5560 +2255 7425 0.4520 +2255 7448 0.4990 +2255 7450 0.5010 +2255 7471 0.5090 +2255 7472 0.5320 +2255 7473 0.4320 +2255 7474 0.5620 +2255 7476 0.4350 +2255 7477 0.4680 +2255 7481 0.4670 +2255 7482 0.4640 +2255 7783 0.6480 +2255 7837 0.5520 +2255 7852 0.5210 +2255 8074 0.7310 +2255 8312 0.4080 +2255 8313 0.4830 +2255 8549 0.4730 +2255 8600 0.4470 +2255 8646 0.4950 +2255 8742 0.7850 +2255 8817 0.5510 +2255 8822 0.5270 +2255 8823 0.6450 +2255 8826 0.4230 +2255 8829 0.8220 +2255 8842 0.5160 +2255 8854 0.4470 +2255 9241 0.7510 +2255 9314 0.5940 +2255 9365 0.9910 +2255 9370 0.6060 +2255 9429 0.5270 +2255 9464 0.5120 +2255 9496 0.7370 +2255 9542 0.4280 +2255 9965 0.5840 +2255 9971 0.5160 +2255 9982 0.9870 +2255 10251 0.5340 +2255 10252 0.4750 +2255 10253 0.7050 +2255 10457 0.4450 +2255 10468 0.6660 +2255 10626 0.5220 +2255 10631 0.4460 +2255 10718 0.4390 +2255 10763 0.6030 +2255 10817 0.5920 +2255 10818 0.9020 +2255 22943 0.5450 +2255 23411 0.5950 +2255 23767 0.5850 +2255 23768 0.5590 +2255 23769 0.5460 +2255 26281 0.5000 +2255 26511 0.4100 +2255 26585 0.5040 +2255 27006 0.4270 +2255 27020 0.4130 +2255 29126 0.4080 +2255 30816 0.5220 +2255 30849 0.4990 +2255 50674 0.4460 +2255 51176 0.4990 +2255 51330 0.6990 +2255 51806 0.5950 +2255 53834 0.8650 +2255 54106 0.5750 +2255 54361 0.4390 +2255 60529 0.4930 +2255 64067 0.4180 +2255 64220 0.5620 +2255 64321 0.5110 +2255 79923 0.5560 +2255 80781 0.6780 +2255 81848 0.4290 +2255 83888 0.5600 +2255 85027 0.4220 +2255 89780 0.6760 +2255 91860 0.5910 +2255 121340 0.4090 +2255 137902 0.5540 +2255 143282 0.5840 +2255 152831 0.9030 +2255 163688 0.5920 +2255 220064 0.4570 +2255 221833 0.5750 +2255 256297 0.8310 +2255 284654 0.8040 +2255 285672 0.4390 +2255 285888 0.4430 +2255 405754 0.5210 +2256 2259 0.4580 +2256 2260 0.7220 +2256 2261 0.6780 +2256 2263 0.6840 +2256 2264 0.7250 +2256 3091 0.4580 +2256 3479 0.4030 +2256 3791 0.4180 +2256 5911 0.4430 +2256 5979 0.4120 +2256 6146 0.5490 +2256 6469 0.4270 +2256 7040 0.4360 +2256 8074 0.6200 +2256 8817 0.4170 +2256 8822 0.7020 +2256 9365 0.5740 +2256 9965 0.5280 +2256 10818 0.4330 +2256 23542 0.5090 +2256 26291 0.5190 +2256 53834 0.5520 +2256 152831 0.5060 +2257 2258 0.5120 +2257 2260 0.7710 +2257 2261 0.6640 +2257 2263 0.7010 +2257 2264 0.5370 +2257 3480 0.4410 +2257 3481 0.4350 +2257 3751 0.4040 +2257 3752 0.4810 +2257 3764 0.4410 +2257 3815 0.4590 +2257 5318 0.4330 +2257 5911 0.4970 +2257 6323 0.6470 +2257 6324 0.4950 +2257 6326 0.4920 +2257 6327 0.5170 +2257 6331 0.9880 +2257 6334 0.4800 +2257 6336 0.4670 +2257 6469 0.4080 +2257 7481 0.4320 +2257 7871 0.5710 +2257 8817 0.4960 +2257 8822 0.5450 +2257 9365 0.4140 +2257 10008 0.4750 +2257 10021 0.4310 +2257 10060 0.4360 +2257 10686 0.6630 +2257 11280 0.5200 +2257 23171 0.5070 +2257 23542 0.9260 +2257 23630 0.5060 +2257 26291 0.4190 +2257 29098 0.5740 +2257 53834 0.6810 +2257 55800 0.5240 +2257 151871 0.4580 +2257 152137 0.5850 +2257 376132 0.4210 +2258 2260 0.9980 +2258 2261 0.9970 +2258 2263 0.9960 +2258 2264 0.9900 +2258 2277 0.5090 +2258 2290 0.4130 +2258 2321 0.8790 +2258 2322 0.6260 +2258 2323 0.9080 +2258 2324 0.6880 +2258 2335 0.7700 +2258 2353 0.6100 +2258 2597 0.5830 +2258 2626 0.4410 +2258 2658 0.5800 +2258 2668 0.7640 +2258 2670 0.5960 +2258 2674 0.4130 +2258 2697 0.4010 +2258 2817 0.6750 +2258 2885 0.5450 +2258 2919 0.8960 +2258 2932 0.4180 +2258 3068 0.6620 +2258 3082 0.7630 +2258 3091 0.5580 +2258 3170 0.4490 +2258 3320 0.5610 +2258 3326 0.5580 +2258 3339 0.9660 +2258 3383 0.5320 +2258 3440 0.8480 +2258 3458 0.6810 +2258 3479 0.7440 +2258 3480 0.4470 +2258 3481 0.5060 +2258 3485 0.5030 +2258 3516 0.4970 +2258 3549 0.7870 +2258 3552 0.6280 +2258 3553 0.7490 +2258 3558 0.6260 +2258 3562 0.4740 +2258 3565 0.4650 +2258 3567 0.6200 +2258 3569 0.6380 +2258 3574 0.6660 +2258 3575 0.4960 +2258 3576 0.7300 +2258 3578 0.4860 +2258 3586 0.5170 +2258 3596 0.4610 +2258 3600 0.4660 +2258 3605 0.4460 +2258 3611 0.5240 +2258 3627 0.5130 +2258 3630 0.7750 +2258 3688 0.4330 +2258 3691 0.4620 +2258 3717 0.4800 +2258 3725 0.4430 +2258 3791 0.9570 +2258 3815 0.5440 +2258 3934 0.4610 +2258 3958 0.5210 +2258 3976 0.5710 +2258 3987 0.4200 +2258 4049 0.4470 +2258 4053 0.4860 +2258 4054 0.4870 +2258 4087 0.5190 +2258 4088 0.4120 +2258 4192 0.5400 +2258 4233 0.6010 +2258 4254 0.4470 +2258 4283 0.5900 +2258 4312 0.4420 +2258 4313 0.4850 +2258 4314 0.4240 +2258 4317 0.5430 +2258 4318 0.7080 +2258 4322 0.4110 +2258 4488 0.5430 +2258 4609 0.5440 +2258 4684 0.4010 +2258 4760 0.4240 +2258 4803 0.6030 +2258 4811 0.4590 +2258 4907 0.4720 +2258 4908 0.4330 +2258 4914 0.6220 +2258 5015 0.4650 +2258 5045 0.4100 +2258 5080 0.6090 +2258 5081 0.4360 +2258 5154 0.5720 +2258 5155 0.8350 +2258 5156 0.8050 +2258 5159 0.6200 +2258 5175 0.5940 +2258 5228 0.5560 +2258 5290 0.4810 +2258 5296 0.4070 +2258 5335 0.4440 +2258 5443 0.4950 +2258 5460 0.6110 +2258 5468 0.5920 +2258 5594 0.5880 +2258 5595 0.7170 +2258 5604 0.4170 +2258 5728 0.4120 +2258 5733 0.4310 +2258 5743 0.6060 +2258 5744 0.7580 +2258 5764 0.6210 +2258 5788 0.4810 +2258 5803 0.5410 +2258 5806 0.9030 +2258 5979 0.4080 +2258 6323 0.7270 +2258 6326 0.5610 +2258 6328 0.8080 +2258 6331 0.9920 +2258 6332 0.4650 +2258 6334 0.4630 +2258 6335 0.7370 +2258 6347 0.5790 +2258 6348 0.5050 +2258 6351 0.4790 +2258 6354 0.4330 +2258 6356 0.9600 +2258 6367 0.5860 +2258 6376 0.9680 +2258 6382 0.7410 +2258 6385 0.8200 +2258 6387 0.7420 +2258 6469 0.6390 +2258 6513 0.5410 +2258 6615 0.4200 +2258 6656 0.4680 +2258 6657 0.7670 +2258 6662 0.5470 +2258 6696 0.4860 +2258 6714 0.4490 +2258 6774 0.5130 +2258 7010 0.7160 +2258 7039 0.5830 +2258 7040 0.8190 +2258 7042 0.5850 +2258 7043 0.5570 +2258 7046 0.4180 +2258 7048 0.6030 +2258 7049 0.4810 +2258 7057 0.5840 +2258 7070 0.4780 +2258 7076 0.4630 +2258 7124 0.5840 +2258 7157 0.5050 +2258 7316 0.4450 +2258 7423 0.4450 +2258 7424 0.6580 +2258 7431 0.5970 +2258 7448 0.4590 +2258 7450 0.4270 +2258 7471 0.4140 +2258 7474 0.4590 +2258 7481 0.4120 +2258 7837 0.5210 +2258 7852 0.6650 +2258 8313 0.5430 +2258 8456 0.5090 +2258 8503 0.4160 +2258 8539 0.5650 +2258 8822 0.8930 +2258 8829 0.7070 +2258 8842 0.4410 +2258 8862 0.5020 +2258 9241 0.7140 +2258 9314 0.5440 +2258 9365 0.4870 +2258 9542 0.4650 +2258 9672 0.6240 +2258 9982 0.9520 +2258 10000 0.5070 +2258 10135 0.4450 +2258 10215 0.5170 +2258 10468 0.5930 +2258 10718 0.4420 +2258 10763 0.6280 +2258 10818 0.7040 +2258 11061 0.4440 +2258 11162 0.6300 +2258 22846 0.5280 +2258 22943 0.4460 +2258 23166 0.4680 +2258 23213 0.6370 +2258 23542 0.5630 +2258 26585 0.4200 +2258 28984 0.5040 +2258 51806 0.5950 +2258 53834 0.7020 +2258 54205 0.4170 +2258 54361 0.5620 +2258 55959 0.6950 +2258 56034 0.4350 +2258 57509 0.4800 +2258 63973 0.4150 +2258 64321 0.4890 +2258 79805 0.6050 +2258 79923 0.7400 +2258 80781 0.4320 +2258 81029 0.5030 +2258 81575 0.5130 +2258 83881 0.4170 +2258 84317 0.5470 +2258 89780 0.7300 +2258 91860 0.5440 +2258 137902 0.5210 +2258 146713 0.4660 +2258 163688 0.5440 +2258 284654 0.5990 +2258 100130733 0.4010 +2259 2260 0.6280 +2259 2261 0.4950 +2259 2263 0.6990 +2259 2264 0.5780 +2259 2321 0.5380 +2259 2885 0.4230 +2259 3479 0.4060 +2259 3708 0.4340 +2259 3736 0.4940 +2259 3748 0.6330 +2259 3752 0.5690 +2259 3785 0.4980 +2259 4684 0.4180 +2259 5173 0.4210 +2259 5521 0.5360 +2259 5582 0.5710 +2259 5911 0.6500 +2259 6314 0.4790 +2259 6323 0.5650 +2259 6324 0.5270 +2259 6326 0.7710 +2259 6331 0.4960 +2259 6334 0.9620 +2259 6712 0.6240 +2259 6750 0.4420 +2259 8356 0.4770 +2259 8817 0.6810 +2259 8822 0.7130 +2259 9365 0.4820 +2259 10939 0.5400 +2259 23542 0.7730 +2259 25814 0.5700 +2259 25894 0.4910 +2259 57731 0.4710 +2259 146057 0.5810 +2259 259232 0.4650 +2259 339453 0.5030 +2260 2261 0.8540 +2260 2263 0.8530 +2260 2264 0.9670 +2260 2277 0.8870 +2260 2287 0.4710 +2260 2302 0.4710 +2260 2308 0.5350 +2260 2321 0.5550 +2260 2323 0.6780 +2260 2324 0.5290 +2260 2335 0.6710 +2260 2475 0.4500 +2260 2549 0.5880 +2260 2587 0.4570 +2260 2591 0.5820 +2260 2597 0.4920 +2260 2668 0.4140 +2260 2674 0.5660 +2260 2675 0.4240 +2260 2735 0.4350 +2260 2736 0.4320 +2260 2737 0.4040 +2260 2767 0.5630 +2260 2770 0.4250 +2260 2776 0.4930 +2260 2778 0.5790 +2260 2796 0.7280 +2260 2798 0.7580 +2260 2885 0.9610 +2260 2888 0.9460 +2260 3020 0.4790 +2260 3021 0.5340 +2260 3082 0.8140 +2260 3091 0.4580 +2260 3265 0.9620 +2260 3320 0.7400 +2260 3326 0.6480 +2260 3339 0.6200 +2260 3350 0.9510 +2260 3357 0.4020 +2260 3383 0.4320 +2260 3417 0.6110 +2260 3418 0.5620 +2260 3459 0.5610 +2260 3479 0.8200 +2260 3480 0.6270 +2260 3481 0.7850 +2260 3482 0.4600 +2260 3549 0.6630 +2260 3570 0.4570 +2260 3630 0.9650 +2260 3667 0.8340 +2260 3690 0.6500 +2260 3717 0.4720 +2260 3725 0.4140 +2260 3730 0.9980 +2260 3791 0.6810 +2260 3814 0.5770 +2260 3845 0.9810 +2260 3875 0.4690 +2260 3897 0.8980 +2260 3899 0.4470 +2260 3958 0.5010 +2260 3977 0.5300 +2260 4087 0.4120 +2260 4089 0.5880 +2260 4188 0.4200 +2260 4193 0.5110 +2260 4254 0.7660 +2260 4288 0.4780 +2260 4292 0.4480 +2260 4313 0.6160 +2260 4318 0.6310 +2260 4345 0.4480 +2260 4487 0.5390 +2260 4488 0.6810 +2260 4599 0.4460 +2260 4603 0.4380 +2260 4609 0.5900 +2260 4613 0.4400 +2260 4684 0.9960 +2260 4734 0.7800 +2260 4763 0.6180 +2260 4803 0.7720 +2260 4851 0.7370 +2260 4853 0.4260 +2260 4854 0.6260 +2260 4869 0.5430 +2260 4893 0.9660 +2260 4897 0.4560 +2260 4908 0.7120 +2260 4909 0.7020 +2260 4914 0.5300 +2260 4915 0.4940 +2260 4929 0.5400 +2260 4978 0.4340 +2260 5075 0.4130 +2260 5080 0.5250 +2260 5154 0.8680 +2260 5155 0.7900 +2260 5156 0.7150 +2260 5159 0.6490 +2260 5163 0.4070 +2260 5175 0.4160 +2260 5228 0.8190 +2260 5241 0.6150 +2260 5251 0.4530 +2260 5289 0.5430 +2260 5290 0.9770 +2260 5291 0.9330 +2260 5293 0.9240 +2260 5295 0.9920 +2260 5296 0.9480 +2260 5315 0.9320 +2260 5330 0.6620 +2260 5331 0.6620 +2260 5332 0.6640 +2260 5335 0.9990 +2260 5336 0.9200 +2260 5447 0.4410 +2260 5578 0.4660 +2260 5594 0.4960 +2260 5595 0.5430 +2260 5727 0.4350 +2260 5728 0.6820 +2260 5741 0.4630 +2260 5742 0.4480 +2260 5747 0.5440 +2260 5754 0.5450 +2260 5770 0.6130 +2260 5781 0.7940 +2260 5818 0.4280 +2260 5903 0.4240 +2260 5914 0.5170 +2260 5921 0.4920 +2260 5979 0.5300 +2260 5990 0.4490 +2260 6195 0.8740 +2260 6196 0.6850 +2260 6197 0.8590 +2260 6233 0.5110 +2260 6256 0.4220 +2260 6285 0.4370 +2260 6382 0.6950 +2260 6385 0.8870 +2260 6387 0.4220 +2260 6461 0.4340 +2260 6464 0.9740 +2260 6469 0.6820 +2260 6569 0.4640 +2260 6598 0.5070 +2260 6615 0.8460 +2260 6654 0.9870 +2260 6655 0.9370 +2260 6657 0.5870 +2260 6662 0.4400 +2260 6714 0.6800 +2260 6774 0.6570 +2260 6867 0.8730 +2260 6870 0.6770 +2260 6911 0.8040 +2260 7010 0.5870 +2260 7015 0.5070 +2260 7039 0.7710 +2260 7040 0.5080 +2260 7042 0.5880 +2260 7043 0.5920 +2260 7048 0.4100 +2260 7049 0.4530 +2260 7080 0.4040 +2260 7132 0.4740 +2260 7157 0.6690 +2260 7220 0.4840 +2260 7249 0.4220 +2260 7291 0.8530 +2260 7301 0.4480 +2260 7311 0.4990 +2260 7314 0.5050 +2260 7316 0.6510 +2260 7423 0.8740 +2260 7424 0.8960 +2260 7441 0.4980 +2260 7474 0.4170 +2260 7750 0.9570 +2260 8038 0.4240 +2260 8074 0.9990 +2260 8100 0.4400 +2260 8289 0.4840 +2260 8503 0.9230 +2260 8795 0.6510 +2260 8805 0.6280 +2260 8817 0.9990 +2260 8820 0.4080 +2260 8822 0.9990 +2260 8823 0.9990 +2260 8826 0.4910 +2260 8829 0.8260 +2260 8976 0.4660 +2260 9202 0.4710 +2260 9208 0.6210 +2260 9241 0.4100 +2260 9244 0.4160 +2260 9365 0.9990 +2260 9394 0.5730 +2260 9402 0.4690 +2260 9454 0.4400 +2260 9455 0.4130 +2260 9456 0.4200 +2260 9530 0.6000 +2260 9646 0.4420 +2260 9857 0.4310 +2260 9965 0.9910 +2260 10252 0.4140 +2260 10253 0.4910 +2260 10321 0.4230 +2260 10371 0.5470 +2260 10460 0.7390 +2260 10533 0.5130 +2260 10579 0.6600 +2260 10630 0.5250 +2260 10664 0.4860 +2260 10763 0.4400 +2260 10768 0.4720 +2260 10817 0.8880 +2260 10818 0.9990 +2260 11052 0.6050 +2260 11064 0.8390 +2260 11116 0.8670 +2260 11160 0.5550 +2260 23236 0.6640 +2260 23767 0.7030 +2260 23768 0.6120 +2260 23769 0.7100 +2260 25759 0.9160 +2260 25970 0.4560 +2260 26012 0.8040 +2260 26127 0.8860 +2260 26281 0.9990 +2260 26291 0.9980 +2260 27006 0.9990 +2260 27122 0.4870 +2260 27255 0.4140 +2260 27436 0.4820 +2260 29126 0.4810 +2260 30849 0.4990 +2260 50945 0.4560 +2260 51330 0.4300 +2260 51378 0.7180 +2260 51806 0.4860 +2260 53358 0.9200 +2260 53834 0.5040 +2260 54106 0.7010 +2260 54510 0.4240 +2260 54756 0.7500 +2260 54904 0.5010 +2260 55294 0.5760 +2260 55636 0.7190 +2260 55959 0.4710 +2260 56034 0.7560 +2260 56302 0.4630 +2260 57670 0.5900 +2260 60675 0.7880 +2260 80114 0.6050 +2260 80139 0.6840 +2260 80310 0.8330 +2260 81608 0.5980 +2260 81848 0.6750 +2260 84376 0.5270 +2260 84513 0.4150 +2260 84629 0.4010 +2260 84634 0.7560 +2260 85414 0.4890 +2260 89780 0.6300 +2260 91860 0.4940 +2260 128674 0.8170 +2260 142680 0.5190 +2260 152831 0.9990 +2260 163688 0.4880 +2260 197021 0.5560 +2260 253012 0.6160 +2260 285888 0.6950 +2260 399687 0.7300 +2260 399694 0.9100 +2260 401647 0.4480 +2261 2263 0.9870 +2261 2264 0.7900 +2261 2277 0.7140 +2261 2323 0.6540 +2261 2549 0.9190 +2261 2597 0.4270 +2261 2719 0.4530 +2261 2767 0.6100 +2261 2776 0.5300 +2261 2778 0.6010 +2261 2885 0.9840 +2261 3082 0.7640 +2261 3169 0.4080 +2261 3265 0.9820 +2261 3320 0.5650 +2261 3326 0.5600 +2261 3417 0.5990 +2261 3418 0.5630 +2261 3425 0.4410 +2261 3479 0.7970 +2261 3481 0.7630 +2261 3549 0.7630 +2261 3630 0.9330 +2261 3667 0.7030 +2261 3716 0.9150 +2261 3717 0.9210 +2261 3730 0.4430 +2261 3845 0.9710 +2261 3852 0.4280 +2261 3977 0.4070 +2261 4089 0.5820 +2261 4094 0.5940 +2261 4193 0.7990 +2261 4254 0.7240 +2261 4292 0.5060 +2261 4487 0.5340 +2261 4488 0.7370 +2261 4609 0.5200 +2261 4734 0.7610 +2261 4763 0.5300 +2261 4803 0.8100 +2261 4804 0.4340 +2261 4851 0.5880 +2261 4869 0.5630 +2261 4880 0.7690 +2261 4893 0.9810 +2261 4908 0.6800 +2261 4909 0.6660 +2261 4914 0.5140 +2261 4915 0.4790 +2261 4926 0.4110 +2261 4978 0.4730 +2261 5154 0.7490 +2261 5155 0.7190 +2261 5228 0.6890 +2261 5289 0.5140 +2261 5290 0.9650 +2261 5291 0.7450 +2261 5293 0.7150 +2261 5295 0.8240 +2261 5296 0.8440 +2261 5330 0.6500 +2261 5331 0.6500 +2261 5332 0.6500 +2261 5335 0.9520 +2261 5336 0.9160 +2261 5594 0.4730 +2261 5595 0.5140 +2261 5727 0.4230 +2261 5728 0.6430 +2261 5729 0.5020 +2261 5744 0.6610 +2261 5745 0.4120 +2261 5781 0.7900 +2261 5818 0.4020 +2261 6196 0.4240 +2261 6233 0.5030 +2261 6382 0.4570 +2261 6455 0.6620 +2261 6456 0.6760 +2261 6457 0.6750 +2261 6464 0.9290 +2261 6469 0.6330 +2261 6473 0.6320 +2261 6513 0.4420 +2261 6598 0.5510 +2261 6654 0.9370 +2261 6655 0.9370 +2261 6657 0.4420 +2261 6662 0.5360 +2261 6714 0.9230 +2261 6772 0.5390 +2261 6774 0.6140 +2261 6867 0.8070 +2261 7015 0.6080 +2261 7026 0.4790 +2261 7039 0.7330 +2261 7157 0.7180 +2261 7189 0.6670 +2261 7249 0.4220 +2261 7291 0.8820 +2261 7311 0.4990 +2261 7314 0.5050 +2261 7316 0.5050 +2261 7379 0.4530 +2261 7403 0.5290 +2261 7423 0.7600 +2261 7424 0.8280 +2261 7468 0.8430 +2261 7978 0.5330 +2261 8030 0.4540 +2261 8074 0.9800 +2261 8085 0.4770 +2261 8111 0.4020 +2261 8289 0.5710 +2261 8503 0.8170 +2261 8651 0.4980 +2261 8817 0.9980 +2261 8822 0.9860 +2261 8823 0.9630 +2261 9208 0.4160 +2261 9241 0.4990 +2261 9365 0.9660 +2261 9935 0.5410 +2261 9965 0.9330 +2261 10142 0.4240 +2261 10193 0.6530 +2261 10460 0.9400 +2261 10491 0.4120 +2261 10579 0.6380 +2261 10735 0.4740 +2261 10763 0.5450 +2261 10817 0.6790 +2261 10818 0.8520 +2261 11059 0.6540 +2261 11140 0.6550 +2261 22894 0.4160 +2261 22905 0.6610 +2261 23236 0.6500 +2261 23327 0.6650 +2261 23624 0.6740 +2261 25759 0.9160 +2261 26127 0.4800 +2261 26281 0.9710 +2261 26291 0.9410 +2261 27006 0.9660 +2261 27436 0.4800 +2261 29126 0.4820 +2261 29916 0.4200 +2261 30011 0.6650 +2261 30849 0.4990 +2261 50511 0.4290 +2261 51378 0.6950 +2261 53358 0.9190 +2261 54106 0.5170 +2261 54474 0.4450 +2261 54855 0.4470 +2261 54926 0.4010 +2261 55040 0.6700 +2261 55294 0.6070 +2261 55553 0.6000 +2261 55636 0.4680 +2261 55971 0.5110 +2261 56034 0.7080 +2261 56904 0.6590 +2261 57154 0.6760 +2261 57827 0.4200 +2261 58508 0.4310 +2261 58513 0.6850 +2261 63940 0.4200 +2261 64175 0.4180 +2261 64750 0.6610 +2261 80114 0.4450 +2261 80298 0.5330 +2261 80310 0.7880 +2261 81570 0.4910 +2261 83639 0.4120 +2261 83737 0.6640 +2261 84525 0.4340 +2261 84629 0.6100 +2261 92305 0.4550 +2261 152831 0.9050 +2261 399694 0.9230 +2261 102723407 0.8960 +2262 2719 0.4650 +2262 2817 0.6040 +2262 3115 0.4380 +2262 3127 0.4330 +2262 3339 0.6830 +2262 3340 0.6460 +2262 3394 0.4160 +2262 3549 0.6180 +2262 4036 0.4090 +2262 4234 0.4670 +2262 5727 0.5960 +2262 6382 0.6770 +2262 6383 0.6870 +2262 6385 0.6120 +2262 6469 0.7830 +2262 6554 0.6690 +2262 7726 0.4670 +2262 8227 0.4280 +2262 8509 0.6120 +2262 8633 0.5890 +2262 9348 0.6420 +2262 9394 0.5890 +2262 9653 0.5900 +2262 9672 0.6910 +2262 9951 0.5230 +2262 9953 0.4630 +2262 9955 0.4870 +2262 9956 0.5230 +2262 9957 0.5380 +2262 10082 0.7470 +2262 10107 0.4970 +2262 10426 0.4190 +2262 10631 0.4490 +2262 10675 0.5950 +2262 10855 0.5130 +2262 11215 0.6080 +2262 11285 0.5330 +2262 23274 0.5760 +2262 26035 0.5850 +2262 26229 0.4940 +2262 27087 0.4290 +2262 50805 0.6010 +2262 50846 0.6240 +2262 55959 0.4230 +2262 60495 0.5510 +2262 63827 0.6330 +2262 64131 0.5130 +2262 64132 0.5120 +2262 64579 0.6560 +2262 64711 0.5900 +2262 79191 0.5510 +2262 79192 0.5100 +2262 89780 0.6910 +2262 89870 0.5170 +2262 90161 0.5650 +2262 90249 0.4980 +2262 126792 0.5170 +2262 135152 0.4360 +2262 137970 0.7830 +2262 147111 0.6090 +2262 153572 0.5570 +2262 221914 0.6300 +2262 222537 0.5920 +2262 266722 0.6550 +2262 375790 0.5700 +2263 2264 0.6320 +2263 2277 0.7370 +2263 2302 0.4240 +2263 2304 0.5760 +2263 2321 0.4310 +2263 2323 0.6590 +2263 2324 0.4910 +2263 2335 0.5810 +2263 2492 0.4240 +2263 2534 0.4250 +2263 2549 0.9180 +2263 2597 0.4590 +2263 2627 0.4420 +2263 2735 0.4880 +2263 2737 0.4070 +2263 2767 0.5960 +2263 2776 0.5260 +2263 2778 0.6020 +2263 2885 0.9930 +2263 2911 0.4100 +2263 2962 0.5070 +2263 2963 0.4990 +2263 3043 0.4220 +2263 3082 0.9060 +2263 3265 0.9610 +2263 3339 0.4410 +2263 3417 0.7620 +2263 3418 0.5890 +2263 3479 0.8660 +2263 3480 0.5320 +2263 3481 0.7630 +2263 3482 0.4340 +2263 3549 0.8650 +2263 3576 0.5230 +2263 3627 0.4310 +2263 3630 0.9360 +2263 3664 0.4150 +2263 3667 0.8170 +2263 3678 0.6030 +2263 3685 0.4100 +2263 3716 0.9130 +2263 3717 0.9210 +2263 3730 0.5250 +2263 3791 0.5110 +2263 3815 0.5290 +2263 3845 0.9730 +2263 3958 0.4760 +2263 3977 0.4680 +2263 4046 0.5940 +2263 4089 0.6050 +2263 4102 0.5460 +2263 4193 0.8670 +2263 4214 0.4390 +2263 4233 0.5190 +2263 4254 0.7480 +2263 4292 0.5100 +2263 4314 0.4640 +2263 4323 0.4490 +2263 4487 0.5140 +2263 4488 0.7360 +2263 4595 0.5940 +2263 4609 0.5070 +2263 4613 0.5970 +2263 4684 0.5100 +2263 4686 0.4990 +2263 4734 0.6720 +2263 4762 0.4430 +2263 4763 0.4940 +2263 4771 0.5330 +2263 4790 0.4960 +2263 4803 0.7360 +2263 4804 0.4650 +2263 4851 0.7240 +2263 4854 0.5740 +2263 4869 0.5410 +2263 4886 0.4120 +2263 4893 0.9770 +2263 4908 0.6900 +2263 4909 0.6940 +2263 5015 0.4710 +2263 5154 0.7790 +2263 5155 0.7690 +2263 5156 0.5290 +2263 5159 0.5050 +2263 5228 0.8010 +2263 5241 0.8540 +2263 5289 0.5290 +2263 5290 0.9080 +2263 5291 0.7540 +2263 5293 0.7270 +2263 5295 0.9240 +2263 5296 0.8190 +2263 5315 0.5380 +2263 5330 0.6580 +2263 5331 0.6520 +2263 5332 0.6810 +2263 5335 0.9980 +2263 5336 0.9110 +2263 5354 0.4470 +2263 5426 0.4030 +2263 5431 0.5080 +2263 5432 0.4990 +2263 5433 0.4990 +2263 5434 0.4990 +2263 5435 0.4990 +2263 5436 0.4990 +2263 5437 0.5100 +2263 5438 0.4990 +2263 5439 0.4990 +2263 5440 0.4990 +2263 5441 0.4990 +2263 5447 0.6070 +2263 5449 0.4200 +2263 5594 0.4860 +2263 5595 0.5200 +2263 5725 0.6250 +2263 5727 0.4480 +2263 5728 0.6650 +2263 5777 0.4600 +2263 5781 0.8020 +2263 5818 0.4410 +2263 5833 0.5580 +2263 5979 0.4710 +2263 6197 0.7030 +2263 6233 0.5120 +2263 6240 0.4810 +2263 6374 0.4160 +2263 6455 0.6550 +2263 6456 0.6700 +2263 6457 0.6710 +2263 6464 0.9670 +2263 6469 0.7170 +2263 6513 0.4220 +2263 6598 0.5400 +2263 6654 0.9370 +2263 6655 0.9330 +2263 6657 0.5120 +2263 6662 0.5280 +2263 6714 0.9580 +2263 6774 0.8470 +2263 6776 0.7850 +2263 6777 0.7870 +2263 6867 0.6190 +2263 6927 0.4610 +2263 7015 0.4980 +2263 7039 0.7710 +2263 7040 0.6310 +2263 7042 0.5820 +2263 7046 0.4910 +2263 7049 0.4370 +2263 7076 0.7730 +2263 7077 0.4430 +2263 7157 0.6620 +2263 7168 0.4800 +2263 7169 0.5200 +2263 7189 0.6810 +2263 7291 0.8800 +2263 7311 0.4990 +2263 7314 0.5050 +2263 7316 0.5050 +2263 7423 0.8590 +2263 7424 0.8350 +2263 7474 0.4200 +2263 7490 0.4300 +2263 7534 0.4100 +2263 8030 0.4530 +2263 8074 0.9860 +2263 8289 0.5920 +2263 8313 0.4490 +2263 8503 0.7350 +2263 8629 0.4240 +2263 8754 0.5050 +2263 8817 0.9990 +2263 8822 0.9990 +2263 8823 0.9970 +2263 8989 0.6150 +2263 9241 0.5500 +2263 9365 0.8060 +2263 9659 0.4540 +2263 9965 0.9690 +2263 9982 0.6140 +2263 10142 0.4470 +2263 10193 0.6550 +2263 10252 0.4020 +2263 10253 0.4900 +2263 10460 0.6010 +2263 10579 0.7440 +2263 10724 0.4100 +2263 10768 0.4040 +2263 10817 0.8210 +2263 10818 0.9870 +2263 10933 0.6680 +2263 11059 0.6690 +2263 22801 0.4610 +2263 22905 0.6690 +2263 22916 0.4990 +2263 23013 0.4730 +2263 23190 0.6040 +2263 23213 0.4610 +2263 23236 0.6620 +2263 23327 0.6580 +2263 23543 0.4170 +2263 23624 0.6730 +2263 23767 0.5400 +2263 23768 0.6660 +2263 25759 0.9130 +2263 26127 0.4190 +2263 26281 0.9970 +2263 26291 0.9770 +2263 27006 0.9990 +2263 27324 0.8260 +2263 27436 0.4190 +2263 28514 0.4070 +2263 29072 0.4390 +2263 29126 0.4510 +2263 30011 0.6600 +2263 30849 0.5000 +2263 51176 0.5890 +2263 51378 0.7080 +2263 51535 0.5860 +2263 53358 0.9250 +2263 54106 0.7040 +2263 54361 0.4170 +2263 54756 0.6530 +2263 54845 0.7750 +2263 54926 0.4010 +2263 55040 0.6620 +2263 55193 0.4300 +2263 55294 0.6060 +2263 55553 0.5140 +2263 55636 0.4750 +2263 55740 0.6340 +2263 56034 0.7560 +2263 56904 0.6500 +2263 56999 0.5120 +2263 57154 0.6770 +2263 57698 0.4370 +2263 58155 0.4460 +2263 58513 0.6850 +2263 64220 0.5360 +2263 64750 0.6540 +2263 79705 0.4450 +2263 79856 0.6210 +2263 80004 0.7560 +2263 80114 0.6800 +2263 80310 0.7190 +2263 81848 0.5880 +2263 83737 0.6750 +2263 83888 0.5330 +2263 89780 0.5250 +2263 117581 0.5570 +2263 143282 0.6090 +2263 152831 0.9380 +2263 203076 0.5200 +2263 221914 0.4080 +2263 399694 0.9150 +2264 2277 0.7110 +2264 2308 0.4070 +2264 2321 0.4760 +2264 2323 0.6550 +2264 2335 0.4140 +2264 2475 0.5590 +2264 2494 0.4600 +2264 2549 0.5550 +2264 2596 0.4240 +2264 2885 0.9500 +2264 3059 0.4800 +2264 3082 0.7960 +2264 3172 0.4220 +2264 3265 0.9430 +2264 3479 0.7520 +2264 3480 0.4990 +2264 3481 0.7580 +2264 3549 0.5380 +2264 3630 0.9460 +2264 3667 0.8150 +2264 3845 0.9480 +2264 4089 0.5320 +2264 4193 0.7470 +2264 4254 0.7180 +2264 4296 0.4070 +2264 4436 0.4180 +2264 4609 0.4340 +2264 4656 0.4060 +2264 4684 0.6670 +2264 4734 0.6580 +2264 4763 0.4350 +2264 4771 0.6040 +2264 4803 0.7030 +2264 4893 0.9450 +2264 4908 0.7080 +2264 4909 0.6570 +2264 5077 0.5270 +2264 5081 0.4550 +2264 5154 0.7390 +2264 5155 0.7230 +2264 5228 0.6900 +2264 5289 0.5400 +2264 5290 0.8370 +2264 5291 0.7240 +2264 5293 0.6940 +2264 5295 0.7980 +2264 5296 0.7360 +2264 5328 0.4240 +2264 5330 0.6640 +2264 5331 0.6590 +2264 5332 0.6670 +2264 5335 0.7960 +2264 5465 0.5480 +2264 5594 0.5060 +2264 5595 0.7130 +2264 5599 0.5300 +2264 5605 0.5000 +2264 5606 0.4620 +2264 5728 0.4030 +2264 5781 0.6770 +2264 5782 0.4560 +2264 6098 0.4160 +2264 6233 0.5030 +2264 6455 0.6600 +2264 6456 0.6550 +2264 6457 0.6550 +2264 6464 0.7720 +2264 6513 0.5590 +2264 6554 0.5350 +2264 6555 0.6140 +2264 6569 0.4330 +2264 6654 0.9270 +2264 6655 0.9220 +2264 6660 0.4120 +2264 6714 0.6310 +2264 6774 0.6810 +2264 7015 0.4490 +2264 7039 0.7170 +2264 7157 0.5320 +2264 7189 0.6530 +2264 7311 0.4990 +2264 7314 0.5050 +2264 7316 0.5130 +2264 7423 0.7470 +2264 7424 0.7140 +2264 8074 0.9950 +2264 8431 0.6890 +2264 8503 0.7350 +2264 8647 0.5970 +2264 8817 0.9960 +2264 8822 0.9960 +2264 8823 0.9940 +2264 8856 0.4260 +2264 9365 0.9920 +2264 9368 0.4650 +2264 9420 0.4450 +2264 9965 0.9990 +2264 9971 0.8370 +2264 10193 0.6500 +2264 10460 0.4520 +2264 10817 0.7030 +2264 10818 0.9840 +2264 11059 0.6540 +2264 22905 0.6990 +2264 23236 0.7600 +2264 23327 0.6580 +2264 23624 0.7260 +2264 25759 0.6890 +2264 26281 0.9930 +2264 26291 0.9920 +2264 27006 0.9920 +2264 30011 0.6600 +2264 30816 0.4500 +2264 30849 0.4990 +2264 51378 0.7130 +2264 53358 0.7260 +2264 54106 0.7090 +2264 54756 0.4620 +2264 55040 0.6590 +2264 56034 0.7190 +2264 56904 0.6580 +2264 57154 0.6540 +2264 58513 0.6850 +2264 64324 0.5260 +2264 64750 0.6540 +2264 80310 0.6910 +2264 83737 0.6540 +2264 84629 0.4040 +2264 123264 0.5370 +2264 142680 0.4910 +2264 151306 0.6000 +2264 152831 0.9990 +2264 200931 0.6070 +2264 399694 0.6940 +2264 405754 0.4500 +2264 100423062 0.9040 +2266 2267 0.9430 +2266 2321 0.4250 +2266 2335 0.9630 +2266 2621 0.4390 +2266 2638 0.8680 +2266 2885 0.5310 +2266 2993 0.4540 +2266 2994 0.4810 +2266 2996 0.5150 +2266 3026 0.8580 +2266 3053 0.9600 +2266 3075 0.5960 +2266 3096 0.4440 +2266 3146 0.4990 +2266 3240 0.8580 +2266 3250 0.5940 +2266 3263 0.7100 +2266 3265 0.5120 +2266 3273 0.8740 +2266 3383 0.4820 +2266 3426 0.5150 +2266 3484 0.6920 +2266 3569 0.5160 +2266 3674 0.9170 +2266 3681 0.5520 +2266 3687 0.5420 +2266 3689 0.5650 +2266 3690 0.9800 +2266 3697 0.4080 +2266 3698 0.6890 +2266 3699 0.6290 +2266 3700 0.7380 +2266 3791 0.4380 +2266 3818 0.4790 +2266 3827 0.9170 +2266 3845 0.5330 +2266 3929 0.4560 +2266 4018 0.6700 +2266 4069 0.4190 +2266 4140 0.4100 +2266 4143 0.4690 +2266 4153 0.4330 +2266 4241 0.4270 +2266 4524 0.4460 +2266 4893 0.5230 +2266 5004 0.7910 +2266 5005 0.7210 +2266 5037 0.4400 +2266 5054 0.5530 +2266 5104 0.7100 +2266 5265 0.8860 +2266 5267 0.4560 +2266 5284 0.4380 +2266 5340 0.8780 +2266 5345 0.9160 +2266 5356 0.4600 +2266 5594 0.5340 +2266 5595 0.5220 +2266 5604 0.5160 +2266 5605 0.4990 +2266 5624 0.7540 +2266 5627 0.6660 +2266 5747 0.5200 +2266 5768 0.4460 +2266 5770 0.4070 +2266 5858 0.5510 +2266 5894 0.4990 +2266 5906 0.4090 +2266 5908 0.4610 +2266 5950 0.5120 +2266 6271 0.5220 +2266 6279 0.5830 +2266 6280 0.6170 +2266 6288 0.5030 +2266 6289 0.4970 +2266 6291 0.4440 +2266 6441 0.4340 +2266 6521 0.4040 +2266 6654 0.5050 +2266 6657 0.4690 +2266 6694 0.5220 +2266 6714 0.4330 +2266 6850 0.5140 +2266 6906 0.6320 +2266 7018 0.6580 +2266 7056 0.5510 +2266 7057 0.7950 +2266 7076 0.4960 +2266 7094 0.4880 +2266 7096 0.5010 +2266 7097 0.5190 +2266 7099 0.6340 +2266 7276 0.6550 +2266 7365 0.4290 +2266 7414 0.4050 +2266 7448 0.7210 +2266 7450 0.8630 +2266 7529 0.5630 +2266 8542 0.4850 +2266 8858 0.5060 +2266 9564 0.5080 +2266 10841 0.4530 +2266 10875 0.7870 +2266 23345 0.4050 +2266 23555 0.4920 +2266 23558 0.4910 +2266 23643 0.5120 +2266 51008 0.4210 +2266 51156 0.6650 +2266 54518 0.4040 +2266 54756 0.5020 +2266 54757 0.4110 +2266 55937 0.4090 +2266 56975 0.5070 +2266 57153 0.4320 +2266 80341 0.4630 +2266 81494 0.4690 +2266 116519 0.4990 +2266 256394 0.5060 +2267 2335 0.7520 +2267 2719 0.5450 +2267 3053 0.4060 +2267 3484 0.4460 +2267 3698 0.5190 +2267 3699 0.5710 +2267 3902 0.9910 +2267 3950 0.5340 +2267 3958 0.4890 +2267 3965 0.5220 +2267 4685 0.4490 +2267 5005 0.4650 +2267 5133 0.4050 +2267 5267 0.4690 +2267 5345 0.8020 +2267 6906 0.4430 +2267 7057 0.7680 +2267 8784 0.5400 +2267 8995 0.4050 +2267 9836 0.4220 +2267 10875 0.7640 +2267 11148 0.4480 +2267 23474 0.4990 +2267 25930 0.4290 +2267 26010 0.4200 +2267 29126 0.4470 +2267 51174 0.4330 +2267 51175 0.6120 +2267 54888 0.4270 +2267 55239 0.4830 +2267 60560 0.4650 +2267 80178 0.5460 +2267 80380 0.4160 +2267 81545 0.4780 +2267 83607 0.4270 +2267 83874 0.4280 +2267 84868 0.6290 +2267 116519 0.4410 +2267 126259 0.4470 +2267 201633 0.6060 +2267 256394 0.5040 +2267 284194 0.4870 +2267 284266 0.4750 +2267 339390 0.6900 +2267 654346 0.4860 +2268 2322 0.4600 +2268 2357 0.4950 +2268 2517 0.6010 +2268 2533 0.4570 +2268 2534 0.4130 +2268 2770 0.9100 +2268 2771 0.9140 +2268 2773 0.9090 +2268 2885 0.5050 +2268 2887 0.4790 +2268 2919 0.4850 +2268 3002 0.5840 +2268 3055 0.6660 +2268 3059 0.6990 +2268 3101 0.5610 +2268 3320 0.7370 +2268 3326 0.6280 +2268 3383 0.5160 +2268 3394 0.4440 +2268 3553 0.4100 +2268 3577 0.5800 +2268 3587 0.4570 +2268 3635 0.4070 +2268 3659 0.5650 +2268 3674 0.4600 +2268 3683 0.4630 +2268 3684 0.6360 +2268 3687 0.5770 +2268 3689 0.6620 +2268 3702 0.9180 +2268 3815 0.5220 +2268 3937 0.7800 +2268 4067 0.7430 +2268 4145 0.4170 +2268 4332 0.7950 +2268 4542 0.5280 +2268 4610 0.4830 +2268 4688 0.5080 +2268 4689 0.5520 +2268 4818 0.4200 +2268 5218 0.4750 +2268 5290 0.7160 +2268 5291 0.7020 +2268 5293 0.7550 +2268 5294 0.9310 +2268 5295 0.7410 +2268 5296 0.7040 +2268 5321 0.5460 +2268 5336 0.5870 +2268 5341 0.6140 +2268 5747 0.9440 +2268 5777 0.5170 +2268 5788 0.5280 +2268 5829 0.4450 +2268 5880 0.4550 +2268 5908 0.4800 +2268 5921 0.4290 +2268 6280 0.4330 +2268 6283 0.4570 +2268 6402 0.4690 +2268 6404 0.4780 +2268 6464 0.9540 +2268 6503 0.4260 +2268 6504 0.6760 +2268 6556 0.4490 +2268 6654 0.4920 +2268 6655 0.5040 +2268 6688 0.5820 +2268 6708 0.4350 +2268 6714 0.4490 +2268 6774 0.6130 +2268 6776 0.4320 +2268 6850 0.8070 +2268 7097 0.4760 +2268 7099 0.4410 +2268 7124 0.4040 +2268 7133 0.4180 +2268 7175 0.4330 +2268 7305 0.7390 +2268 7409 0.4070 +2268 7454 0.8640 +2268 7525 0.7390 +2268 7804 0.5310 +2268 7805 0.4560 +2268 7940 0.4310 +2268 8440 0.4560 +2268 8503 0.6880 +2268 8517 0.4920 +2268 8698 0.5440 +2268 8875 0.4190 +2268 9034 0.4600 +2268 9046 0.4180 +2268 9051 0.4360 +2268 9343 0.4340 +2268 9450 0.4570 +2268 9473 0.5200 +2268 9844 0.9070 +2268 9938 0.4010 +2268 10235 0.4380 +2268 10261 0.4670 +2268 10288 0.5680 +2268 10312 0.5830 +2268 10870 0.4940 +2268 11024 0.4480 +2268 11025 0.4850 +2268 11314 0.5020 +2268 23371 0.4560 +2268 23533 0.9410 +2268 25759 0.9120 +2268 27036 0.4270 +2268 27180 0.4150 +2268 29121 0.4160 +2268 29760 0.5540 +2268 29992 0.4020 +2268 51311 0.5470 +2268 53358 0.9170 +2268 54210 0.4460 +2268 54440 0.4500 +2268 54518 0.4110 +2268 57705 0.4640 +2268 64407 0.4380 +2268 114971 0.4190 +2268 117289 0.4530 +2268 118788 0.4100 +2268 124599 0.4220 +2268 146722 0.4420 +2268 146850 0.9240 +2268 155038 0.4850 +2268 219972 0.4040 +2268 285220 0.4090 +2268 390714 0.4480 +2268 399694 0.9070 +2268 653361 0.5820 +2271 2539 0.6700 +2271 2571 0.4380 +2271 2572 0.4200 +2271 2597 0.6200 +2271 2618 0.4810 +2271 2632 0.4700 +2271 2731 0.4410 +2271 2739 0.6450 +2271 2744 0.4150 +2271 2746 0.7090 +2271 2747 0.5340 +2271 2752 0.5710 +2271 2766 0.5950 +2271 2805 0.9780 +2271 2806 0.9790 +2271 2819 0.4330 +2271 2820 0.4640 +2271 2821 0.7660 +2271 2875 0.9170 +2271 2936 0.5990 +2271 2987 0.5680 +2271 3015 0.7850 +2271 3021 0.4900 +2271 3030 0.4610 +2271 3032 0.5080 +2271 3033 0.6020 +2271 3061 0.4350 +2271 3067 0.4200 +2271 3091 0.7310 +2271 3098 0.4460 +2271 3099 0.5020 +2271 3320 0.4230 +2271 3326 0.4200 +2271 3329 0.5470 +2271 3336 0.5030 +2271 3417 0.9570 +2271 3418 0.9340 +2271 3419 0.8640 +2271 3420 0.8040 +2271 3421 0.8010 +2271 3614 0.6130 +2271 3615 0.6420 +2271 3658 0.6570 +2271 3735 0.4120 +2271 3948 0.7350 +2271 4141 0.4270 +2271 4149 0.4740 +2271 4191 0.9980 +2271 4199 0.9890 +2271 4200 0.9890 +2271 4351 0.4850 +2271 4522 0.4630 +2271 4528 0.4310 +2271 4609 0.4300 +2271 4704 0.4900 +2271 4705 0.4210 +2271 4706 0.6780 +2271 4711 0.4560 +2271 4720 0.5660 +2271 4722 0.6210 +2271 4723 0.6620 +2271 4728 0.5030 +2271 4729 0.5940 +2271 4942 0.8590 +2271 4953 0.4050 +2271 4967 0.8790 +2271 5009 0.4390 +2271 5019 0.4880 +2271 5091 0.7630 +2271 5096 0.5170 +2271 5105 0.5030 +2271 5106 0.5470 +2271 5111 0.4410 +2271 5161 0.4010 +2271 5162 0.6650 +2271 5163 0.5380 +2271 5209 0.4660 +2271 5210 0.4220 +2271 5211 0.5180 +2271 5213 0.6110 +2271 5214 0.4850 +2271 5223 0.5340 +2271 5224 0.4240 +2271 5226 0.7370 +2271 5230 0.7040 +2271 5232 0.6100 +2271 5236 0.5580 +2271 5313 0.5070 +2271 5315 0.7370 +2271 5464 0.4570 +2271 5471 0.5080 +2271 5498 0.8050 +2271 5571 0.7240 +2271 5631 0.4030 +2271 5832 0.4280 +2271 5834 0.5220 +2271 5836 0.5200 +2271 5837 0.4680 +2271 5890 0.5710 +2271 6120 0.6580 +2271 6182 0.4550 +2271 6389 0.9990 +2271 6390 0.9990 +2271 6391 0.9970 +2271 6392 0.9940 +2271 6470 0.5670 +2271 6472 0.6260 +2271 6478 0.4870 +2271 6510 0.4430 +2271 6513 0.4850 +2271 6576 0.4080 +2271 6648 0.6690 +2271 6713 0.6160 +2271 6888 0.6930 +2271 6898 0.5280 +2271 6921 0.5830 +2271 7030 0.4630 +2271 7086 0.7310 +2271 7153 0.4660 +2271 7157 0.4360 +2271 7167 0.6910 +2271 7284 0.5750 +2271 7296 0.4990 +2271 7384 0.4740 +2271 7385 0.9060 +2271 7386 0.6470 +2271 7407 0.5370 +2271 7416 0.4640 +2271 7428 0.6470 +2271 7915 0.6670 +2271 8050 0.5900 +2271 8091 0.6020 +2271 8192 0.4610 +2271 8277 0.6830 +2271 8402 0.4970 +2271 8458 0.7370 +2271 8564 0.6170 +2271 8565 0.4190 +2271 8659 0.5390 +2271 8789 0.5610 +2271 8801 0.7960 +2271 8802 0.9260 +2271 8803 0.8680 +2271 8833 0.4190 +2271 8854 0.4240 +2271 8879 0.4240 +2271 9054 0.5480 +2271 9380 0.4900 +2271 9512 0.4260 +2271 9563 0.7260 +2271 9669 0.7560 +2271 9817 0.4810 +2271 9942 0.4440 +2271 9968 0.4790 +2271 10007 0.4590 +2271 10213 0.4060 +2271 10295 0.4970 +2271 10381 0.4400 +2271 10399 0.4900 +2271 10449 0.5720 +2271 10587 0.4760 +2271 10797 0.4720 +2271 10840 0.4180 +2271 10873 0.9860 +2271 10935 0.4410 +2271 10989 0.4610 +2271 10994 0.4160 +2271 22933 0.5690 +2271 22934 0.6310 +2271 23395 0.4190 +2271 23479 0.6030 +2271 23481 0.5840 +2271 23530 0.4690 +2271 23600 0.4080 +2271 25796 0.5250 +2271 26227 0.7220 +2271 26289 0.4060 +2271 26330 0.4600 +2271 27068 0.4990 +2271 29968 0.5970 +2271 50808 0.4150 +2271 51004 0.5900 +2271 51011 0.4050 +2271 51022 0.4290 +2271 51031 0.4800 +2271 51091 0.4240 +2271 51147 0.4260 +2271 51166 0.8100 +2271 51292 0.5770 +2271 51380 0.4440 +2271 51422 0.7160 +2271 51430 0.4250 +2271 51444 0.6680 +2271 51520 0.4030 +2271 51727 0.5150 +2271 53632 0.7160 +2271 54187 0.4250 +2271 54205 0.4960 +2271 54529 0.7110 +2271 54583 0.6770 +2271 54870 0.5680 +2271 54884 0.7600 +2271 54927 0.6700 +2271 54941 0.6670 +2271 54949 0.6430 +2271 54995 0.4300 +2271 55152 0.5730 +2271 55163 0.4370 +2271 55276 0.4640 +2271 55293 0.6790 +2271 55526 0.5880 +2271 55554 0.5440 +2271 55617 0.6710 +2271 55654 0.5700 +2271 55699 0.4550 +2271 55753 0.7930 +2271 55902 0.5760 +2271 56267 0.5070 +2271 57103 0.5160 +2271 57128 0.5040 +2271 60490 0.5470 +2271 64577 0.4220 +2271 64850 0.6870 +2271 64902 0.6900 +2271 79073 0.8150 +2271 79590 0.4190 +2271 79728 0.4570 +2271 79814 0.7180 +2271 79944 0.9290 +2271 80150 0.6770 +2271 80273 0.4970 +2271 81570 0.4250 +2271 81889 0.8690 +2271 83475 0.8130 +2271 83659 0.4030 +2271 84076 0.6640 +2271 84532 0.5520 +2271 84680 0.4950 +2271 84706 0.9140 +2271 85007 0.6850 +2271 85476 0.5390 +2271 91942 0.4040 +2271 92259 0.4040 +2271 92483 0.7260 +2271 112398 0.6360 +2271 112399 0.5690 +2271 114112 0.4480 +2271 122481 0.4060 +2271 122622 0.4490 +2271 123688 0.4970 +2271 125061 0.8130 +2271 126133 0.4390 +2271 130752 0.8070 +2271 132789 0.4190 +2271 132949 0.4370 +2271 137362 0.9580 +2271 158067 0.4060 +2271 158584 0.4020 +2271 160287 0.7290 +2271 160428 0.4490 +2271 171425 0.4610 +2271 201163 0.4800 +2271 221264 0.4060 +2271 254042 0.4750 +2271 339896 0.4200 +2271 387712 0.5000 +2271 390110 0.4950 +2271 441531 0.4220 +2271 729020 0.5390 +2272 2334 0.5450 +2272 2592 0.4230 +2272 2776 0.5120 +2272 2895 0.5520 +2272 2914 0.4120 +2272 2917 0.4590 +2272 2918 0.4360 +2272 2950 0.5060 +2272 3090 0.4520 +2272 3094 0.7380 +2272 3248 0.4020 +2272 3590 0.4050 +2272 3709 0.4330 +2272 3845 0.4840 +2272 4089 0.4100 +2272 4193 0.7030 +2272 4255 0.6220 +2272 4292 0.5720 +2272 4436 0.4200 +2272 4609 0.4840 +2272 4781 0.5490 +2272 4817 0.8950 +2272 4978 0.5510 +2272 5071 0.5790 +2272 5167 0.4520 +2272 5294 0.4240 +2272 5584 0.5110 +2272 5728 0.4780 +2272 5789 0.4940 +2272 5793 0.7200 +2272 5915 0.6640 +2272 7078 0.4480 +2272 7086 0.6190 +2272 7157 0.6670 +2272 7161 0.4480 +2272 7251 0.4680 +2272 7329 0.6970 +2272 7539 0.6650 +2272 8091 0.6660 +2272 8277 0.5320 +2272 10856 0.4350 +2272 10923 0.4940 +2272 11186 0.7200 +2272 11236 0.6490 +2272 22844 0.4050 +2272 22875 0.9030 +2272 26018 0.4790 +2272 26050 0.4110 +2272 28960 0.5050 +2272 51084 0.4250 +2272 51741 0.9380 +2272 53353 0.5410 +2272 54715 0.4350 +2272 54840 0.6520 +2272 55215 0.4530 +2272 55268 0.4490 +2272 55743 0.4180 +2272 55784 0.4040 +2272 56954 0.7180 +2272 57045 0.4750 +2272 64067 0.4070 +2272 64084 0.4360 +2272 64478 0.4180 +2272 80728 0.4880 +2272 83593 0.5430 +2272 83943 0.4970 +2272 140733 0.5830 +2272 200933 0.4450 +2273 2274 0.6380 +2273 2318 0.4050 +2273 2906 0.4330 +2273 3488 0.6780 +2273 3516 0.9860 +2273 3632 0.7770 +2273 3741 0.5860 +2273 4604 0.5360 +2273 4606 0.6080 +2273 4607 0.6950 +2273 4632 0.4090 +2273 4654 0.4950 +2273 5604 0.4350 +2273 5829 0.4480 +2273 6015 0.4150 +2273 6722 0.4410 +2273 6772 0.9000 +2273 6773 0.9000 +2273 6774 0.9000 +2273 6775 0.9000 +2273 6776 0.9000 +2273 6777 0.9020 +2273 6778 0.9000 +2273 7273 0.7570 +2273 9124 0.4430 +2273 9499 0.4870 +2273 9590 0.5480 +2273 9656 0.4620 +2273 10979 0.4450 +2273 11317 0.4490 +2273 64857 0.6560 +2273 79188 0.4210 +2273 84259 0.4610 +2273 84962 0.4880 +2274 2275 0.5340 +2274 2308 0.6650 +2274 2309 0.4440 +2274 2353 0.5000 +2274 3065 0.4760 +2274 3091 0.7260 +2274 3172 0.5520 +2274 3479 0.4480 +2274 3481 0.4320 +2274 3486 0.4760 +2274 3488 0.8190 +2274 3632 0.5260 +2274 3679 0.5540 +2274 3688 0.4200 +2274 3725 0.5600 +2274 3728 0.5410 +2274 3753 0.5740 +2274 3911 0.4140 +2274 4072 0.6080 +2274 4077 0.4330 +2274 4087 0.6400 +2274 4088 0.7640 +2274 4089 0.6830 +2274 4176 0.6790 +2274 4209 0.4030 +2274 4607 0.4730 +2274 4609 0.4780 +2274 4837 0.7380 +2274 4848 0.5650 +2274 5054 0.4430 +2274 5143 0.4490 +2274 5465 0.6770 +2274 5469 0.4010 +2274 5551 0.5090 +2274 5594 0.6790 +2274 5604 0.5040 +2274 5664 0.8420 +2274 5727 0.6520 +2274 5873 0.5610 +2274 5991 0.6190 +2274 6241 0.4350 +2274 6256 0.4250 +2274 6281 0.6630 +2274 6304 0.4160 +2274 6604 0.4100 +2274 6615 0.5590 +2274 6667 0.4680 +2274 6668 0.4390 +2274 6722 0.5990 +2274 6813 0.8850 +2274 6876 0.7000 +2274 6907 0.4900 +2274 7040 0.5530 +2274 7082 0.4570 +2274 7168 0.5190 +2274 7186 0.9140 +2274 7189 0.9620 +2274 7273 0.9690 +2274 7448 0.4150 +2274 7690 0.6190 +2274 7704 0.4080 +2274 8061 0.6310 +2274 8557 0.4970 +2274 8607 0.4530 +2274 8648 0.4670 +2274 8676 0.8810 +2274 8877 0.6680 +2274 9124 0.4600 +2274 9125 0.4010 +2274 9263 0.4280 +2274 9590 0.6350 +2274 10140 0.4320 +2274 10158 0.4380 +2274 10498 0.4850 +2274 10499 0.4810 +2274 10578 0.4240 +2274 10644 0.4490 +2274 10971 0.4450 +2274 11149 0.4010 +2274 11328 0.4130 +2274 22827 0.5210 +2274 22861 0.4450 +2274 22900 0.9370 +2274 23019 0.6540 +2274 26287 0.4040 +2274 27063 0.6960 +2274 27295 0.4400 +2274 27332 0.4300 +2274 51119 0.4980 +2274 51176 0.9880 +2274 51285 0.5620 +2274 51701 0.4620 +2274 54898 0.6650 +2274 55571 0.4990 +2274 55734 0.5240 +2274 55970 0.6360 +2274 57152 0.4300 +2274 57159 0.4350 +2274 60481 0.6030 +2274 79718 0.4580 +2274 79839 0.4460 +2274 80205 0.4060 +2274 80320 0.5810 +2274 80774 0.4260 +2274 84033 0.6700 +2274 84676 0.5330 +2274 85456 0.5050 +2274 118461 0.5250 +2274 128178 0.4440 +2274 136259 0.6040 +2274 201294 0.8380 +2274 284119 0.7970 +2274 286827 0.5430 +2274 415117 0.5120 +2275 2932 0.4760 +2275 3516 0.5870 +2275 3632 0.7870 +2275 5885 0.5130 +2275 7791 0.5170 +2275 7965 0.6200 +2275 9247 0.6230 +2275 23242 0.4160 +2275 23774 0.4200 +2275 28971 0.5100 +2275 49854 0.4100 +2275 51274 0.8230 +2275 51592 0.4570 +2275 55749 0.6030 +2275 57473 0.5260 +2275 57496 0.4680 +2275 57509 0.4100 +2275 81847 0.4120 +2275 84955 0.6190 +2275 93643 0.4210 +2275 153478 0.4370 +2275 159090 0.4340 +2275 204851 0.6430 +2275 256714 0.4200 +2277 2321 0.9990 +2277 2322 0.8390 +2277 2324 0.9990 +2277 2658 0.4500 +2277 3082 0.5830 +2277 3091 0.5180 +2277 3383 0.4050 +2277 3458 0.4160 +2277 3479 0.5010 +2277 3480 0.8490 +2277 3516 0.4120 +2277 3552 0.5990 +2277 3553 0.4840 +2277 3558 0.4110 +2277 3569 0.5200 +2277 3574 0.4180 +2277 3576 0.5140 +2277 3586 0.4180 +2277 3600 0.4120 +2277 3627 0.4050 +2277 3643 0.6870 +2277 3791 0.9990 +2277 3815 0.7750 +2277 4049 0.4330 +2277 4233 0.7720 +2277 4313 0.4440 +2277 4318 0.4880 +2277 4609 0.5360 +2277 4804 0.7280 +2277 4914 0.8680 +2277 4915 0.7020 +2277 5154 0.6390 +2277 5155 0.4460 +2277 5156 0.8610 +2277 5159 0.8090 +2277 5175 0.5340 +2277 5176 0.4940 +2277 5228 0.7900 +2277 5629 0.8430 +2277 6347 0.4460 +2277 6356 0.4180 +2277 6366 0.4560 +2277 6387 0.5170 +2277 7010 0.8650 +2277 7040 0.4180 +2277 7057 0.4120 +2277 7075 0.4620 +2277 7124 0.4460 +2277 7148 0.4090 +2277 7249 0.4090 +2277 7412 0.4130 +2277 7423 0.9870 +2277 7424 0.9710 +2277 7597 0.5530 +2277 8544 0.4590 +2277 8817 0.5110 +2277 8822 0.5140 +2277 8823 0.5150 +2277 8828 0.9360 +2277 8829 0.8490 +2277 10630 0.6080 +2277 10894 0.9370 +2277 23352 0.6260 +2277 26281 0.4890 +2277 27006 0.5190 +2277 54345 0.4310 +2277 54567 0.5990 +2277 56034 0.6210 +2277 56888 0.6700 +2277 80310 0.4070 +2277 80781 0.4840 +2277 114827 0.4130 +2277 140462 0.4230 +2277 147372 0.6160 +2280 2281 0.6360 +2280 2288 0.4730 +2280 2308 0.5170 +2280 2314 0.4540 +2280 2323 0.4190 +2280 2339 0.4500 +2280 2475 0.9990 +2280 2879 0.4030 +2280 3064 0.4100 +2280 3094 0.5650 +2280 3306 0.7640 +2280 3320 0.6470 +2280 3326 0.5340 +2280 3336 0.4090 +2280 3558 0.4990 +2280 3586 0.4570 +2280 3630 0.4410 +2280 3667 0.4080 +2280 3679 0.4360 +2280 3700 0.4320 +2280 3708 0.7430 +2280 3710 0.5290 +2280 3725 0.4080 +2280 3921 0.4440 +2280 4043 0.5180 +2280 4091 0.4690 +2280 4092 0.5110 +2280 4193 0.4910 +2280 4254 0.6460 +2280 4772 0.6280 +2280 4773 0.6940 +2280 4775 0.5810 +2280 4799 0.5260 +2280 4893 0.4960 +2280 5037 0.5180 +2280 5142 0.5500 +2280 5144 0.6030 +2280 5170 0.4880 +2280 5216 0.4170 +2280 5264 0.6050 +2280 5300 0.6300 +2280 5303 0.8390 +2280 5409 0.4140 +2280 5478 0.7060 +2280 5479 0.5690 +2280 5530 0.9370 +2280 5532 0.8500 +2280 5533 0.5770 +2280 5534 0.9960 +2280 5566 0.4160 +2280 5578 0.5380 +2280 5590 0.5380 +2280 5591 0.5830 +2280 5604 0.4370 +2280 5683 0.4480 +2280 5708 0.4870 +2280 5728 0.6580 +2280 5829 0.4220 +2280 6009 0.8650 +2280 6125 0.5780 +2280 6128 0.4290 +2280 6132 0.4180 +2280 6135 0.4710 +2280 6137 0.4820 +2280 6141 0.4120 +2280 6142 0.5310 +2280 6144 0.4860 +2280 6147 0.4230 +2280 6156 0.4590 +2280 6187 0.4170 +2280 6188 0.4680 +2280 6194 0.7800 +2280 6195 0.4070 +2280 6198 0.9560 +2280 6199 0.7330 +2280 6202 0.4350 +2280 6203 0.4240 +2280 6206 0.4830 +2280 6208 0.4060 +2280 6209 0.5880 +2280 6222 0.4210 +2280 6223 0.4410 +2280 6224 0.4020 +2280 6227 0.4180 +2280 6228 0.4150 +2280 6233 0.4440 +2280 6234 0.4420 +2280 6261 0.9990 +2280 6262 0.9820 +2280 6263 0.9110 +2280 6444 0.4120 +2280 6446 0.5160 +2280 6622 0.5560 +2280 6714 0.5770 +2280 6786 0.6560 +2280 6876 0.5720 +2280 7040 0.8730 +2280 7046 0.9990 +2280 7048 0.6430 +2280 7157 0.4020 +2280 7178 0.5470 +2280 7220 0.5300 +2280 7222 0.8060 +2280 7223 0.4190 +2280 7225 0.7850 +2280 7248 0.7410 +2280 7249 0.7500 +2280 7295 0.4320 +2280 7402 0.4440 +2280 7528 0.5990 +2280 8038 0.4350 +2280 8295 0.4380 +2280 8407 0.4150 +2280 8408 0.4180 +2280 8637 0.5000 +2280 8912 0.7280 +2280 8913 0.5400 +2280 9045 0.4390 +2280 9049 0.5340 +2280 9248 0.4260 +2280 9254 0.5520 +2280 9392 0.4530 +2280 10045 0.8680 +2280 10105 0.6500 +2280 10252 0.4280 +2280 10345 0.9340 +2280 10368 0.7280 +2280 10369 0.7230 +2280 10399 0.6810 +2280 10465 0.4920 +2280 10519 0.5060 +2280 10641 0.4040 +2280 10988 0.4310 +2280 11035 0.5790 +2280 11140 0.4450 +2280 11146 0.9010 +2280 11190 0.9110 +2280 11237 0.4750 +2280 11261 0.4720 +2280 23049 0.4670 +2280 23370 0.5140 +2280 23476 0.5360 +2280 23521 0.5240 +2280 23770 0.6080 +2280 25858 0.7200 +2280 25873 0.4560 +2280 27092 0.7230 +2280 29114 0.4990 +2280 50848 0.5270 +2280 50855 0.4990 +2280 51185 0.6710 +2280 51806 0.9920 +2280 54033 0.4530 +2280 54541 0.5630 +2280 54876 0.6840 +2280 54997 0.4440 +2280 55615 0.5730 +2280 55799 0.5400 +2280 56288 0.5390 +2280 57154 0.5380 +2280 57521 0.9990 +2280 57530 0.5100 +2280 57620 0.5870 +2280 57685 0.5400 +2280 57828 0.7230 +2280 59283 0.7330 +2280 59284 0.7330 +2280 59285 0.7210 +2280 63928 0.4440 +2280 64121 0.4100 +2280 64223 0.9960 +2280 64798 0.7640 +2280 79109 0.7110 +2280 79820 0.7200 +2280 80228 0.5680 +2280 84335 0.7790 +2280 84876 0.6060 +2280 84901 0.5100 +2280 91860 0.9880 +2280 93129 0.5480 +2280 93589 0.7200 +2280 114987 0.4620 +2280 116143 0.5630 +2280 117144 0.7200 +2280 117155 0.7200 +2280 119391 0.4690 +2280 124989 0.4880 +2280 130106 0.4440 +2280 130399 0.5190 +2280 133482 0.5690 +2280 146779 0.4880 +2280 149840 0.5910 +2280 152518 0.5000 +2280 163688 0.9880 +2280 197259 0.4450 +2280 200895 0.4970 +2280 246329 0.8750 +2280 253260 0.9230 +2280 257044 0.7410 +2280 257062 0.7410 +2280 285588 0.7930 +2280 340393 0.7200 +2280 347732 0.7200 +2280 378807 0.7200 +2280 100130348 0.7200 +2281 2475 0.5620 +2281 3094 0.4730 +2281 3708 0.4310 +2281 3710 0.4020 +2281 3753 0.5790 +2281 3757 0.5490 +2281 3784 0.5580 +2281 3921 0.4100 +2281 4799 0.5000 +2281 4831 0.5280 +2281 5300 0.5700 +2281 5478 0.4610 +2281 5479 0.4100 +2281 5499 0.5960 +2281 5530 0.6020 +2281 5532 0.6210 +2281 5533 0.5620 +2281 5534 0.8660 +2281 5566 0.8450 +2281 5567 0.8460 +2281 5568 0.8450 +2281 6132 0.4050 +2281 6135 0.4510 +2281 6137 0.4780 +2281 6141 0.4070 +2281 6142 0.5270 +2281 6144 0.4860 +2281 6147 0.4230 +2281 6156 0.4570 +2281 6187 0.4130 +2281 6188 0.4640 +2281 6194 0.4050 +2281 6202 0.4060 +2281 6206 0.4820 +2281 6208 0.4060 +2281 6209 0.5820 +2281 6222 0.4200 +2281 6223 0.4400 +2281 6227 0.4040 +2281 6233 0.4310 +2281 6234 0.4420 +2281 6261 0.9940 +2281 6262 0.9990 +2281 6263 0.9610 +2281 6331 0.5850 +2281 6717 0.6260 +2281 6876 0.5490 +2281 7046 0.5860 +2281 9045 0.4390 +2281 9314 0.4250 +2281 9472 0.9290 +2281 9992 0.5310 +2281 10045 0.8660 +2281 10105 0.4080 +2281 10251 0.4010 +2281 10252 0.6320 +2281 10253 0.5330 +2281 10345 0.9810 +2281 10399 0.5520 +2281 10465 0.5390 +2281 10519 0.4440 +2281 11146 0.5490 +2281 11190 0.4190 +2281 11261 0.4460 +2281 25873 0.4510 +2281 29114 0.5680 +2281 51806 0.9620 +2281 54033 0.4620 +2281 54997 0.4650 +2281 57158 0.4440 +2281 63928 0.4440 +2281 79827 0.5290 +2281 91860 0.9470 +2281 114987 0.4620 +2281 116143 0.5420 +2281 124989 0.4880 +2281 130106 0.4980 +2281 146779 0.4880 +2281 152518 0.5000 +2281 163688 0.9470 +2281 654364 0.5270 +2287 2288 0.4280 +2287 2475 0.9510 +2287 3065 0.9280 +2287 3066 0.8990 +2287 3308 0.4090 +2287 3320 0.5410 +2287 3326 0.4930 +2287 3608 0.4490 +2287 3692 0.4030 +2287 3921 0.5170 +2287 3925 0.4380 +2287 4188 0.4670 +2287 4193 0.7600 +2287 4599 0.4520 +2287 4666 0.4600 +2287 4691 0.4040 +2287 4706 0.4060 +2287 4799 0.5000 +2287 4831 0.4740 +2287 5023 0.4240 +2287 5037 0.6050 +2287 5202 0.4130 +2287 5223 0.4280 +2287 5264 0.4430 +2287 5303 0.5900 +2287 5478 0.5330 +2287 5479 0.5500 +2287 5481 0.5320 +2287 5530 0.5460 +2287 5532 0.5490 +2287 5533 0.5450 +2287 5534 0.7890 +2287 5683 0.4380 +2287 5684 0.5270 +2287 5685 0.5040 +2287 5695 0.4140 +2287 6122 0.5050 +2287 6124 0.4460 +2287 6125 0.4340 +2287 6128 0.5140 +2287 6129 0.4170 +2287 6130 0.5180 +2287 6132 0.4550 +2287 6133 0.4590 +2287 6135 0.5130 +2287 6137 0.5960 +2287 6138 0.4460 +2287 6139 0.4150 +2287 6141 0.4680 +2287 6142 0.5710 +2287 6143 0.4370 +2287 6144 0.5150 +2287 6147 0.4920 +2287 6154 0.4210 +2287 6155 0.4880 +2287 6156 0.5400 +2287 6157 0.5150 +2287 6159 0.4210 +2287 6160 0.4270 +2287 6161 0.4270 +2287 6164 0.4150 +2287 6165 0.4760 +2287 6187 0.5330 +2287 6188 0.5310 +2287 6189 0.4920 +2287 6193 0.4210 +2287 6194 0.4530 +2287 6201 0.4010 +2287 6202 0.5130 +2287 6203 0.4680 +2287 6204 0.4140 +2287 6205 0.4190 +2287 6206 0.5690 +2287 6207 0.4330 +2287 6208 0.4430 +2287 6209 0.5910 +2287 6217 0.4980 +2287 6222 0.4460 +2287 6223 0.4220 +2287 6224 0.5180 +2287 6227 0.4410 +2287 6228 0.5030 +2287 6229 0.4070 +2287 6230 0.4070 +2287 6231 0.4460 +2287 6233 0.5170 +2287 6234 0.4810 +2287 6235 0.4100 +2287 6261 0.5640 +2287 6262 0.6770 +2287 6263 0.5200 +2287 6613 0.5080 +2287 6635 0.4040 +2287 6636 0.4080 +2287 6902 0.4190 +2287 7157 0.4410 +2287 7336 0.5070 +2287 7411 0.4090 +2287 7528 0.7300 +2287 9045 0.5100 +2287 9349 0.4350 +2287 9454 0.4630 +2287 9455 0.4630 +2287 9456 0.4700 +2287 9867 0.4310 +2287 10105 0.4080 +2287 10213 0.4270 +2287 10283 0.4290 +2287 10286 0.4870 +2287 10399 0.6170 +2287 10519 0.4440 +2287 11146 0.4440 +2287 11171 0.4770 +2287 11261 0.4460 +2287 11315 0.4330 +2287 23212 0.4250 +2287 23521 0.4310 +2287 23770 0.5150 +2287 25873 0.4980 +2287 51303 0.4220 +2287 51319 0.4070 +2287 51637 0.6000 +2287 51806 0.7260 +2287 53938 0.4730 +2287 54033 0.4540 +2287 54997 0.4440 +2287 55015 0.5420 +2287 55320 0.4390 +2287 55323 0.4640 +2287 57484 0.4160 +2287 63928 0.4440 +2287 63943 0.4250 +2287 84154 0.4130 +2287 88745 0.4300 +2287 91860 0.6280 +2287 114987 0.4620 +2287 116143 0.4570 +2287 124989 0.4790 +2287 130106 0.4440 +2287 146779 0.4790 +2287 152518 0.5020 +2287 163688 0.6280 +2288 2289 0.9720 +2288 2475 0.9610 +2288 2625 0.5190 +2288 2908 0.9960 +2288 3046 0.4530 +2288 3169 0.5600 +2288 3291 0.4050 +2288 3297 0.7830 +2288 3301 0.4280 +2288 3303 0.7710 +2288 3304 0.8060 +2288 3305 0.6060 +2288 3306 0.7480 +2288 3308 0.9980 +2288 3312 0.9420 +2288 3315 0.5720 +2288 3320 0.9990 +2288 3326 0.9990 +2288 3337 0.9570 +2288 3661 0.4740 +2288 3662 0.6380 +2288 3665 0.4220 +2288 3757 0.4170 +2288 3837 0.4760 +2288 4137 0.6990 +2288 4214 0.4370 +2288 4306 0.9450 +2288 4790 0.5890 +2288 5055 0.7120 +2288 5241 0.9770 +2288 5264 0.7830 +2288 5303 0.4060 +2288 5478 0.6530 +2288 5479 0.5540 +2288 5480 0.4970 +2288 5481 0.9370 +2288 5536 0.6080 +2288 5594 0.4570 +2288 5595 0.4880 +2288 5728 0.5230 +2288 5966 0.4850 +2288 5970 0.5310 +2288 5971 0.6890 +2288 6223 0.4520 +2288 6261 0.4020 +2288 6271 0.7420 +2288 6277 0.4890 +2288 6714 0.5430 +2288 6717 0.4120 +2288 6767 0.4710 +2288 6885 0.5170 +2288 7001 0.5100 +2288 7090 0.5040 +2288 7157 0.6660 +2288 7174 0.4120 +2288 7184 0.4630 +2288 7187 0.4350 +2288 7189 0.4760 +2288 7220 0.6390 +2288 7223 0.6430 +2288 7224 0.6240 +2288 7265 0.4910 +2288 7266 0.5410 +2288 7531 0.5340 +2288 8204 0.4990 +2288 8655 0.4420 +2288 8678 0.5360 +2288 8991 0.4210 +2288 9641 0.4930 +2288 9868 0.6490 +2288 10105 0.6800 +2288 10121 0.4910 +2288 10131 0.4690 +2288 10273 0.6850 +2288 10294 0.4020 +2288 10399 0.4220 +2288 10465 0.5810 +2288 10469 0.4050 +2288 10540 0.7610 +2288 10598 0.9730 +2288 10631 0.6910 +2288 10671 0.4240 +2288 10728 0.9900 +2288 10808 0.5250 +2288 10869 0.4900 +2288 10910 0.4360 +2288 10963 0.9790 +2288 11140 0.8590 +2288 11146 0.9830 +2288 11258 0.4050 +2288 23239 0.9930 +2288 23544 0.4060 +2288 23636 0.5070 +2288 23640 0.4920 +2288 23770 0.5900 +2288 25862 0.4450 +2288 26973 0.5130 +2288 27101 0.4530 +2288 27161 0.5250 +2288 51143 0.4250 +2288 51164 0.4110 +2288 51447 0.6950 +2288 51806 0.6230 +2288 55664 0.7340 +2288 55860 0.4230 +2288 60681 0.4400 +2288 79596 0.4820 +2288 84516 0.4130 +2288 91860 0.6230 +2288 93661 0.4210 +2288 140735 0.4460 +2288 146862 0.5110 +2288 163688 0.6230 +2288 256933 0.4200 +2288 644591 0.4740 +2288 645142 0.4710 +2288 653505 0.4900 +2288 653598 0.4710 +2288 728378 0.4380 +2288 728945 0.4720 +2288 730262 0.4720 +2288 105371242 0.4710 +2289 2353 0.6200 +2289 2475 0.9610 +2289 2571 0.5500 +2289 2572 0.4430 +2289 2597 0.4810 +2289 2729 0.4070 +2289 2908 0.9990 +2289 2932 0.5660 +2289 3290 0.4700 +2289 3291 0.5890 +2289 3303 0.6800 +2289 3304 0.6900 +2289 3305 0.7010 +2289 3306 0.6080 +2289 3308 0.9920 +2289 3312 0.8710 +2289 3320 0.9990 +2289 3326 0.9990 +2289 3337 0.9360 +2289 3351 0.4770 +2289 3352 0.4410 +2289 3356 0.6060 +2289 3358 0.4490 +2289 3551 0.7840 +2289 3553 0.5710 +2289 3569 0.5880 +2289 3596 0.4310 +2289 3661 0.4760 +2289 3665 0.4660 +2289 3693 0.4350 +2289 3817 0.6050 +2289 3818 0.5810 +2289 4128 0.5420 +2289 4137 0.8960 +2289 4173 0.6120 +2289 4204 0.8920 +2289 4214 0.5420 +2289 4254 0.4220 +2289 4306 0.8300 +2289 4342 0.4950 +2289 4792 0.4060 +2289 4824 0.6210 +2289 4852 0.4010 +2289 5021 0.6870 +2289 5052 0.4210 +2289 5055 0.7490 +2289 5166 0.4270 +2289 5241 0.9770 +2289 5443 0.5730 +2289 5479 0.4720 +2289 5480 0.4520 +2289 5481 0.7760 +2289 5536 0.6310 +2289 5562 0.5060 +2289 5566 0.4170 +2289 5594 0.4890 +2289 5595 0.5790 +2289 5728 0.8030 +2289 5834 0.4300 +2289 6446 0.9040 +2289 6532 0.7870 +2289 6714 0.5420 +2289 6794 0.7040 +2289 6795 0.4200 +2289 6885 0.5950 +2289 6950 0.5060 +2289 7113 0.6460 +2289 7166 0.4970 +2289 7182 0.6270 +2289 7187 0.4360 +2289 7189 0.4820 +2289 7266 0.4590 +2289 7704 0.8120 +2289 8517 0.4440 +2289 8678 0.5360 +2289 8814 0.6050 +2289 8876 0.4140 +2289 9064 0.4420 +2289 9611 0.4420 +2289 9641 0.7060 +2289 10105 0.4100 +2289 10110 0.4110 +2289 10131 0.5530 +2289 10397 0.4080 +2289 10465 0.4250 +2289 10598 0.6540 +2289 10628 0.7020 +2289 10631 0.7320 +2289 10728 0.9930 +2289 10786 0.4550 +2289 10910 0.4400 +2289 10963 0.9300 +2289 11065 0.4680 +2289 11140 0.7850 +2289 11146 0.8110 +2289 11266 0.4670 +2289 22984 0.4030 +2289 23035 0.4600 +2289 23175 0.4220 +2289 23239 0.9960 +2289 23386 0.5430 +2289 23405 0.4330 +2289 23476 0.4050 +2289 25862 0.7470 +2289 25989 0.4420 +2289 26523 0.6670 +2289 27161 0.5730 +2289 28964 0.5010 +2289 51196 0.4300 +2289 51268 0.4430 +2289 51495 0.4160 +2289 51512 0.4100 +2289 54491 0.4250 +2289 54541 0.5000 +2289 55735 0.4730 +2289 56937 0.4600 +2289 65061 0.6360 +2289 79596 0.5130 +2289 79892 0.5560 +2289 84154 0.4750 +2289 85414 0.4390 +2289 85481 0.4610 +2289 121278 0.5210 +2289 140679 0.5480 +2289 148811 0.4080 +2289 192669 0.5200 +2289 220074 0.4180 +2289 344387 0.5500 +2289 348235 0.6040 +2289 728642 0.5730 +2289 104909134 0.7230 +2290 2308 0.7620 +2290 2309 0.7480 +2290 2571 0.5250 +2290 2572 0.4140 +2290 2596 0.5250 +2290 2597 0.4080 +2290 2625 0.4480 +2290 2637 0.6190 +2290 2670 0.5820 +2290 2737 0.4230 +2290 2904 0.4030 +2290 3021 0.4160 +2290 3065 0.4680 +2290 3066 0.5310 +2290 3199 0.4460 +2290 3212 0.4340 +2290 3214 0.5720 +2290 3233 0.4590 +2290 3670 0.5280 +2290 3785 0.4450 +2290 3975 0.4540 +2290 4005 0.4570 +2290 4009 0.5840 +2290 4087 0.6150 +2290 4088 0.8160 +2290 4089 0.6090 +2290 4204 0.9470 +2290 4208 0.6090 +2290 4212 0.4740 +2290 4303 0.5840 +2290 4487 0.4080 +2290 4747 0.4970 +2290 4760 0.6310 +2290 4761 0.5420 +2290 4762 0.5980 +2290 4821 0.5450 +2290 4857 0.6540 +2290 4990 0.4710 +2290 5013 0.6200 +2290 5015 0.7810 +2290 5076 0.5680 +2290 5077 0.5080 +2290 5080 0.8650 +2290 5081 0.4820 +2290 5083 0.6040 +2290 5454 0.6630 +2290 5455 0.4210 +2290 5460 0.4990 +2290 5468 0.4260 +2290 5649 0.4360 +2290 5728 0.5900 +2290 5816 0.4390 +2290 6096 0.4100 +2290 6238 0.4850 +2290 6304 0.4120 +2290 6323 0.4480 +2290 6326 0.4450 +2290 6469 0.7570 +2290 6492 0.4010 +2290 6495 0.4340 +2290 6496 0.6440 +2290 6594 0.4190 +2290 6656 0.6810 +2290 6657 0.7490 +2290 6658 0.4470 +2290 6660 0.4020 +2290 6662 0.4490 +2290 6663 0.4710 +2290 6664 0.4410 +2290 6722 0.9910 +2290 6792 0.8660 +2290 6812 0.5220 +2290 6853 0.4390 +2290 6934 0.5210 +2290 7025 0.5730 +2290 7080 0.6970 +2290 7088 0.9030 +2290 7101 0.6710 +2290 7157 0.4480 +2290 7249 0.4450 +2290 7350 0.4160 +2290 7479 0.4770 +2290 7545 0.5010 +2290 7799 0.6350 +2290 8320 0.6370 +2290 8356 0.4030 +2290 8841 0.4560 +2290 8928 0.5370 +2290 9314 0.4210 +2290 9355 0.7310 +2290 10215 0.6100 +2290 10381 0.4400 +2290 10716 0.8360 +2290 10763 0.7300 +2290 10765 0.8840 +2290 10891 0.6520 +2290 10926 0.7170 +2290 11023 0.4020 +2290 22854 0.4970 +2290 22933 0.6070 +2290 23040 0.4070 +2290 23314 0.7350 +2290 23316 0.4210 +2290 23411 0.4900 +2290 23440 0.4570 +2290 26468 0.7310 +2290 29102 0.4630 +2290 55079 0.7570 +2290 55869 0.4520 +2290 56956 0.4500 +2290 57030 0.5550 +2290 57084 0.4140 +2290 57335 0.4170 +2290 57526 0.4630 +2290 57554 0.4120 +2290 57680 0.4030 +2290 63973 0.6710 +2290 63974 0.7260 +2290 63976 0.7150 +2290 64211 0.4970 +2290 64919 0.6700 +2290 79190 0.4020 +2290 79191 0.4340 +2290 79816 0.5560 +2290 79923 0.4310 +2290 84504 0.4580 +2290 84628 0.4690 +2290 89780 0.4020 +2290 116448 0.4220 +2290 120237 0.4280 +2290 140679 0.4660 +2290 146713 0.4780 +2290 170825 0.6800 +2290 338917 0.4100 +2290 388585 0.4490 +2290 399823 0.4240 +2290 431707 0.5070 +2290 440686 0.4020 +2290 653604 0.4020 +2294 2295 0.7080 +2294 2321 0.4390 +2294 2353 0.5000 +2294 2626 0.8710 +2294 2627 0.5640 +2294 2735 0.7070 +2294 2736 0.7380 +2294 2737 0.8350 +2294 3170 0.5360 +2294 3213 0.5320 +2294 3215 0.4210 +2294 3216 0.4660 +2294 3239 0.4490 +2294 3549 0.8200 +2294 3651 0.5120 +2294 3791 0.4300 +2294 3910 0.5770 +2294 4222 0.4260 +2294 4782 0.4160 +2294 4821 0.5260 +2294 5075 0.5470 +2294 5156 0.4150 +2294 5175 0.5430 +2294 5308 0.4770 +2294 5449 0.5160 +2294 5970 0.5750 +2294 6469 0.9150 +2294 6657 0.4320 +2294 6662 0.4520 +2294 6720 0.4050 +2294 6722 0.6120 +2294 6862 0.4790 +2294 6909 0.4440 +2294 6910 0.4140 +2294 6911 0.4150 +2294 6926 0.4240 +2294 6943 0.5530 +2294 7080 0.4250 +2294 7356 0.5530 +2294 7547 0.6450 +2294 9212 0.4010 +2294 9255 0.4950 +2294 9464 0.4940 +2294 9496 0.5270 +2294 9635 0.4010 +2294 10488 0.4530 +2294 23132 0.4620 +2294 23512 0.5020 +2294 56033 0.6120 +2294 57697 0.4070 +2294 64321 0.4990 +2294 64779 0.5560 +2294 83881 0.4700 +2294 93649 0.6670 +2294 148327 0.4470 +2294 253461 0.4080 +2295 2627 0.6020 +2295 2735 0.5420 +2295 2736 0.5660 +2295 2737 0.5550 +2295 2762 0.7810 +2295 2959 0.5670 +2295 5308 0.6520 +2295 6660 0.4680 +2295 6908 0.5450 +2295 7291 0.4270 +2295 7356 0.5180 +2295 11076 0.6470 +2295 23174 0.4450 +2295 51450 0.4120 +2295 94234 0.6300 +2296 2303 0.4360 +2296 2316 0.4340 +2296 2353 0.4130 +2296 2624 0.5980 +2296 2625 0.6160 +2296 2736 0.7170 +2296 2762 0.8860 +2296 3169 0.4090 +2296 3206 0.4660 +2296 3229 0.4100 +2296 3310 0.5040 +2296 3725 0.4800 +2296 3955 0.5020 +2296 4010 0.4940 +2296 4053 0.5360 +2296 4054 0.4420 +2296 4211 0.4370 +2296 4488 0.4110 +2296 4653 0.6190 +2296 4772 0.4490 +2296 4782 0.4680 +2296 4990 0.4260 +2296 5076 0.4230 +2296 5077 0.4180 +2296 5080 0.7670 +2296 5087 0.8280 +2296 5307 0.4820 +2296 5308 0.9910 +2296 5309 0.4610 +2296 5451 0.4630 +2296 5460 0.5760 +2296 5518 0.4540 +2296 5520 0.7430 +2296 5914 0.4120 +2296 5965 0.4220 +2296 6239 0.4660 +2296 6299 0.4310 +2296 6426 0.4630 +2296 6469 0.4040 +2296 6495 0.6550 +2296 6591 0.4740 +2296 6615 0.4570 +2296 6657 0.7690 +2296 6662 0.4900 +2296 6774 0.5040 +2296 6939 0.6440 +2296 7024 0.4250 +2296 7026 0.4690 +2296 7090 0.4140 +2296 7157 0.4380 +2296 7291 0.5140 +2296 7299 0.4550 +2296 7528 0.5880 +2296 7545 0.4060 +2296 8361 0.4080 +2296 8467 0.4720 +2296 8522 0.4380 +2296 9839 0.4260 +2296 10413 0.4390 +2296 11076 0.4910 +2296 25988 0.5590 +2296 28514 0.5500 +2296 54345 0.4090 +2296 54499 0.4830 +2296 55844 0.4880 +2296 55897 0.6430 +2296 56033 0.4790 +2296 57459 0.6170 +2296 57711 0.4080 +2296 60312 0.4160 +2296 79923 0.5340 +2296 116039 0.5900 +2296 117581 0.4070 +2296 131965 0.4710 +2296 134553 0.4200 +2296 136371 0.4200 +2296 145173 0.4760 +2296 145282 0.4930 +2296 145873 0.5760 +2296 388585 0.4670 +2297 2303 0.5260 +2297 2627 0.5080 +2297 3169 0.4810 +2297 3170 0.4800 +2297 3217 0.5530 +2297 3221 0.4850 +2297 3237 0.4770 +2297 3975 0.5780 +2297 4435 0.6000 +2297 4897 0.4690 +2297 5076 0.5960 +2297 5080 0.4040 +2297 5159 0.4270 +2297 5396 0.4380 +2297 5455 0.4320 +2297 6299 0.4880 +2297 6469 0.6050 +2297 6495 0.4340 +2297 6657 0.4010 +2297 6659 0.5410 +2297 6662 0.4180 +2297 6926 0.4170 +2297 7080 0.5150 +2297 7157 0.4380 +2297 7481 0.4010 +2297 7484 0.5530 +2297 7490 0.7700 +2297 7546 0.4420 +2297 10736 0.7500 +2297 54361 0.4870 +2297 56956 0.5370 +2297 93986 0.4920 +2298 2306 0.4300 +2298 5162 0.6660 +2298 5164 0.6200 +2298 5165 0.6310 +2298 5520 0.5440 +2298 8050 0.6220 +2298 10655 0.4090 +2298 23189 0.4570 +2298 55871 0.6000 +2298 58524 0.5290 +2298 81704 0.4470 +2298 81789 0.4080 +2298 200350 0.8590 +2299 2637 0.4500 +2299 2706 0.7430 +2299 3766 0.8480 +2299 4050 0.4360 +2299 5045 0.4110 +2299 5076 0.4250 +2299 5172 0.9460 +2299 5459 0.4860 +2299 6495 0.4500 +2299 6521 0.5390 +2299 6658 0.4330 +2299 7038 0.4570 +2299 7356 0.4330 +2299 7849 0.4820 +2299 25928 0.5890 +2299 25988 0.4770 +2299 26270 0.6660 +2299 27121 0.5590 +2299 50617 0.6820 +2299 55627 0.4270 +2299 56676 0.4920 +2299 83697 0.4590 +2299 245973 0.4290 +2299 256764 0.4380 +2299 283152 0.5180 +2299 727897 0.4190 +2300 2303 0.5630 +2300 2735 0.7420 +2300 2736 0.6960 +2300 2737 0.6730 +2300 4609 0.4830 +2300 4782 0.5240 +2300 6469 0.5890 +2300 6523 0.5780 +2300 6662 0.4350 +2300 6663 0.4190 +2300 6688 0.4070 +2300 7474 0.4210 +2300 7482 0.5230 +2300 7490 0.4290 +2300 7528 0.4490 +2300 7593 0.4420 +2300 8549 0.5030 +2300 9255 0.5430 +2300 9923 0.5350 +2300 27022 0.4830 +2300 30832 0.4080 +2300 55810 0.4560 +2300 56917 0.4080 +2300 63950 0.5090 +2300 64779 0.6370 +2300 79971 0.4010 +2300 84870 0.4900 +2300 284312 0.4130 +2300 284654 0.4320 +2301 2651 0.4020 +2301 2700 0.6110 +2301 2703 0.6270 +2301 3982 0.4910 +2301 4010 0.4010 +2301 4053 0.4270 +2301 4054 0.4050 +2301 4081 0.5520 +2301 4094 0.5800 +2301 4144 0.4500 +2301 4284 0.4540 +2301 4638 0.4080 +2301 5015 0.4820 +2301 5080 0.7220 +2301 5308 0.6190 +2301 5309 0.9430 +2301 5629 0.4010 +2301 6496 0.5480 +2301 6656 0.4530 +2301 6657 0.4760 +2301 8076 0.5090 +2301 8419 0.5830 +2301 10586 0.4320 +2301 23424 0.5550 +2301 23432 0.9570 +2301 30008 0.4280 +2301 58511 0.4420 +2301 64220 0.4530 +2301 81031 0.4490 +2301 145173 0.6160 +2301 338917 0.5170 +2301 387700 0.4050 +2301 392255 0.4100 +2302 3199 0.4520 +2302 3852 0.6580 +2302 3861 0.4040 +2302 4072 0.4100 +2302 4586 0.6950 +2302 5307 0.5020 +2302 5308 0.6860 +2302 5309 0.4810 +2302 5351 0.4240 +2302 5454 0.4100 +2302 5989 0.7700 +2302 5990 0.9620 +2302 5991 0.9240 +2302 5992 0.4680 +2302 6440 0.7710 +2302 6469 0.6240 +2302 6657 0.5330 +2302 6662 0.5140 +2302 7080 0.5990 +2302 7356 0.7930 +2302 7490 0.4680 +2302 7546 0.4670 +2302 7802 0.6120 +2302 7849 0.4390 +2302 8100 0.7720 +2302 8626 0.4460 +2302 8701 0.4540 +2302 9576 0.5520 +2302 9738 0.4170 +2302 10233 0.4180 +2302 10309 0.6910 +2302 10381 0.4210 +2302 10630 0.4610 +2302 23440 0.4410 +2302 23552 0.5010 +2302 23639 0.4270 +2302 25803 0.5270 +2302 27019 0.6650 +2302 27285 0.4260 +2302 51176 0.5800 +2302 51297 0.4930 +2302 51364 0.5130 +2302 55036 0.4520 +2302 55130 0.4870 +2302 56171 0.4130 +2302 59272 0.4410 +2302 60529 0.4110 +2302 64446 0.5950 +2302 80204 0.4860 +2302 80217 0.5210 +2302 83538 0.4210 +2302 83657 0.4140 +2302 83659 0.7330 +2302 84525 0.5380 +2302 89765 0.5730 +2302 92304 0.4270 +2302 115948 0.4030 +2302 117156 0.7630 +2302 123872 0.4780 +2302 128344 0.5270 +2302 132203 0.5490 +2302 146845 0.4910 +2302 159989 0.5740 +2302 166979 0.5220 +2302 168090 0.6350 +2302 200894 0.4980 +2302 219681 0.5640 +2302 221322 0.5160 +2302 221421 0.5110 +2302 222256 0.4180 +2302 257177 0.5110 +2302 286207 0.4290 +2302 339829 0.5110 +2302 345643 0.8020 +2302 345895 0.5520 +2302 647309 0.6860 +2302 653509 0.4780 +2302 727897 0.6390 +2303 2306 0.4650 +2303 2324 0.8280 +2303 2335 0.5570 +2303 2624 0.6490 +2303 2701 0.5140 +2303 3172 0.5480 +2303 3516 0.6890 +2303 3680 0.7070 +2303 3791 0.4180 +2303 3955 0.5350 +2303 3975 0.4250 +2303 3991 0.4940 +2303 4222 0.4580 +2303 4313 0.4020 +2303 4318 0.4170 +2303 4772 0.6850 +2303 4851 0.5710 +2303 5077 0.4300 +2303 5175 0.4330 +2303 5308 0.5410 +2303 5396 0.5160 +2303 5520 0.7200 +2303 5629 0.5810 +2303 6469 0.4360 +2303 6495 0.4950 +2303 6591 0.7260 +2303 6615 0.8180 +2303 6648 0.6290 +2303 6657 0.4270 +2303 6662 0.4420 +2303 6939 0.7440 +2303 7010 0.4450 +2303 7026 0.5010 +2303 7040 0.4140 +2303 7291 0.7120 +2303 7350 0.4540 +2303 7424 0.7560 +2303 7431 0.5010 +2303 7474 0.4480 +2303 9255 0.4290 +2303 9780 0.4100 +2303 9839 0.6290 +2303 10628 0.4070 +2303 10630 0.4640 +2303 10891 0.4100 +2303 10894 0.6940 +2303 11279 0.5430 +2303 23493 0.4160 +2303 27022 0.5370 +2303 27023 0.5550 +2303 28514 0.5660 +2303 54345 0.8470 +2303 54567 0.4700 +2303 55897 0.6700 +2303 56945 0.5470 +2303 57165 0.7810 +2303 63976 0.5070 +2303 64779 0.4550 +2303 117581 0.6340 +2303 134553 0.4200 +2303 145258 0.4270 +2303 145873 0.6160 +2303 147372 0.6170 +2303 388585 0.4800 +2304 2736 0.6270 +2304 2778 0.4930 +2304 3026 0.4890 +2304 3087 0.6420 +2304 3664 0.6350 +2304 3705 0.4840 +2304 4487 0.6250 +2304 5081 0.4060 +2304 5083 0.4310 +2304 5172 0.7320 +2304 6528 0.8390 +2304 6656 0.4670 +2304 6657 0.5530 +2304 6658 0.4600 +2304 6660 0.4050 +2304 7015 0.6700 +2304 7038 0.8580 +2304 7067 0.4120 +2304 7068 0.4270 +2304 7080 0.9510 +2304 7173 0.7860 +2304 7200 0.4830 +2304 7252 0.4200 +2304 7253 0.8880 +2304 7392 0.4120 +2304 7753 0.4150 +2304 7849 0.9400 +2304 8622 0.5140 +2304 9411 0.4310 +2304 9935 0.5630 +2304 11023 0.5700 +2304 23314 0.6090 +2304 23345 0.4170 +2304 50506 0.5920 +2304 50945 0.4500 +2304 51531 0.7530 +2304 51562 0.4760 +2304 55351 0.4460 +2304 55363 0.6170 +2304 56999 0.4390 +2304 57522 0.5180 +2304 57822 0.4460 +2304 83716 0.4660 +2304 90527 0.4070 +2304 115111 0.4080 +2304 116039 0.5450 +2304 169792 0.6000 +2304 347853 0.6660 +2304 389434 0.7080 +2304 405753 0.6260 +2305 2309 0.4980 +2305 2321 0.4890 +2305 2353 0.4120 +2305 2491 0.5090 +2305 2494 0.4850 +2305 2597 0.5700 +2305 2625 0.4500 +2305 2735 0.5970 +2305 2736 0.4150 +2305 2931 0.4090 +2305 2932 0.5630 +2305 2956 0.4240 +2305 3021 0.5120 +2305 3068 0.4360 +2305 3070 0.5180 +2305 3091 0.6610 +2305 3156 0.4580 +2305 3161 0.8050 +2305 3169 0.4230 +2305 3170 0.5660 +2305 3172 0.5740 +2305 3174 0.5580 +2305 3175 0.7170 +2305 3195 0.4150 +2305 3480 0.4370 +2305 3619 0.5230 +2305 3630 0.4860 +2305 3643 0.6510 +2305 3685 0.4240 +2305 3725 0.6790 +2305 3832 0.9340 +2305 3833 0.7500 +2305 3835 0.4320 +2305 3838 0.6320 +2305 3845 0.4310 +2305 3875 0.5220 +2305 3910 0.4450 +2305 3925 0.4090 +2305 3980 0.4100 +2305 4001 0.4290 +2305 4085 0.7100 +2305 4088 0.9110 +2305 4092 0.4880 +2305 4171 0.6410 +2305 4172 0.5190 +2305 4173 0.6030 +2305 4174 0.7900 +2305 4175 0.4500 +2305 4176 0.4870 +2305 4193 0.4180 +2305 4208 0.6050 +2305 4233 0.4220 +2305 4288 0.9100 +2305 4313 0.4260 +2305 4318 0.4690 +2305 4594 0.4350 +2305 4605 0.9980 +2305 4609 0.7610 +2305 4613 0.4400 +2305 4751 0.8030 +2305 4760 0.5410 +2305 4782 0.5300 +2305 4790 0.5990 +2305 4851 0.4350 +2305 4869 0.5640 +2305 4982 0.4260 +2305 4998 0.4450 +2305 5076 0.5370 +2305 5207 0.5340 +2305 5290 0.4290 +2305 5347 0.9950 +2305 5396 0.5100 +2305 5426 0.4470 +2305 5427 0.4880 +2305 5460 0.4770 +2305 5515 0.5450 +2305 5516 0.5310 +2305 5518 0.5620 +2305 5519 0.5260 +2305 5520 0.6020 +2305 5530 0.4230 +2305 5728 0.5470 +2305 5888 0.6080 +2305 5915 0.4480 +2305 5925 0.6670 +2305 5928 0.7020 +2305 5970 0.5800 +2305 5978 0.4660 +2305 5984 0.4560 +2305 5989 0.5470 +2305 6241 0.8350 +2305 6279 0.4510 +2305 6391 0.4280 +2305 6469 0.4080 +2305 6491 0.5390 +2305 6502 0.5920 +2305 6514 0.5240 +2305 6554 0.6110 +2305 6591 0.5900 +2305 6597 0.7500 +2305 6606 0.4010 +2305 6615 0.7970 +2305 6657 0.5330 +2305 6659 0.4090 +2305 6663 0.5080 +2305 6667 0.5250 +2305 6774 0.8930 +2305 6790 0.7930 +2305 6872 0.4140 +2305 6927 0.4720 +2305 6934 0.4910 +2305 6941 0.4440 +2305 7003 0.5670 +2305 7004 0.6310 +2305 7015 0.4520 +2305 7026 0.5340 +2305 7083 0.8110 +2305 7153 0.9270 +2305 7157 0.7900 +2305 7272 0.7660 +2305 7276 0.5580 +2305 7291 0.4270 +2305 7298 0.5760 +2305 7329 0.6410 +2305 7341 0.4380 +2305 7392 0.4100 +2305 7465 0.4810 +2305 7468 0.4050 +2305 7837 0.4190 +2305 8078 0.6430 +2305 8290 0.5120 +2305 8312 0.4780 +2305 8313 0.4750 +2305 8318 0.6690 +2305 8356 0.5120 +2305 8431 0.5860 +2305 8438 0.6420 +2305 8487 0.4110 +2305 8743 0.4610 +2305 8805 0.4090 +2305 8900 0.7780 +2305 8945 0.4780 +2305 9055 0.8700 +2305 9088 0.5900 +2305 9097 0.6480 +2305 9133 0.8950 +2305 9134 0.6810 +2305 9156 0.7530 +2305 9212 0.8890 +2305 9232 0.7450 +2305 9314 0.4490 +2305 9319 0.8000 +2305 9401 0.4670 +2305 9493 0.7890 +2305 9585 0.6390 +2305 9700 0.9230 +2305 9735 0.5400 +2305 9768 0.6240 +2305 9779 0.4480 +2305 9787 0.8720 +2305 9788 0.4810 +2305 9824 0.5960 +2305 9833 0.9730 +2305 9837 0.6710 +2305 9839 0.4090 +2305 9918 0.5520 +2305 9928 0.7510 +2305 10024 0.8280 +2305 10051 0.4520 +2305 10112 0.9440 +2305 10403 0.6980 +2305 10413 0.4200 +2305 10460 0.5600 +2305 10499 0.4810 +2305 10514 0.6180 +2305 10521 0.4390 +2305 10592 0.5140 +2305 10615 0.9000 +2305 10635 0.7270 +2305 10642 0.4050 +2305 10721 0.4240 +2305 10733 0.6340 +2305 10856 0.4540 +2305 10987 0.4440 +2305 11004 0.8880 +2305 11065 0.8940 +2305 11130 0.6160 +2305 11200 0.6370 +2305 11339 0.6150 +2305 22906 0.4180 +2305 22974 0.9320 +2305 23397 0.6450 +2305 23411 0.5750 +2305 23594 0.4070 +2305 24137 0.8970 +2305 25827 0.6810 +2305 25942 0.5360 +2305 26227 0.6670 +2305 26271 0.4410 +2305 26586 0.4040 +2305 28234 0.4200 +2305 28951 0.4050 +2305 29028 0.4950 +2305 29089 0.5880 +2305 29127 0.6270 +2305 29128 0.7130 +2305 29841 0.4060 +2305 50674 0.5700 +2305 51154 0.4070 +2305 51176 0.5530 +2305 51203 0.7820 +2305 51330 0.4340 +2305 51343 0.7630 +2305 51434 0.4050 +2305 51441 0.4240 +2305 51512 0.6260 +2305 51514 0.5660 +2305 51659 0.4140 +2305 54443 0.5360 +2305 54478 0.5070 +2305 54742 0.4980 +2305 54821 0.5550 +2305 54890 0.8930 +2305 54892 0.7180 +2305 54915 0.4270 +2305 55143 0.9300 +2305 55165 0.8600 +2305 55215 0.5750 +2305 55247 0.4140 +2305 55294 0.5110 +2305 55355 0.9180 +2305 55388 0.8440 +2305 55611 0.7470 +2305 55635 0.8450 +2305 55723 0.8010 +2305 55789 0.5080 +2305 55811 0.4190 +2305 55839 0.6400 +2305 55957 0.8600 +2305 56339 0.5180 +2305 56992 0.8000 +2305 57082 0.4140 +2305 57405 0.5860 +2305 57504 0.4740 +2305 57559 0.6970 +2305 57721 0.4930 +2305 57818 0.4340 +2305 63967 0.4010 +2305 64151 0.8600 +2305 64682 0.4040 +2305 79019 0.6540 +2305 79068 0.4850 +2305 79172 0.4160 +2305 79733 0.7700 +2305 79801 0.5990 +2305 79923 0.5280 +2305 81610 0.6680 +2305 81620 0.6150 +2305 81669 0.7720 +2305 81930 0.5760 +2305 83461 0.8850 +2305 83540 0.6890 +2305 83879 0.4260 +2305 83881 0.5670 +2305 83903 0.4210 +2305 84193 0.4140 +2305 84662 0.4350 +2305 84823 0.4430 +2305 89839 0.4100 +2305 90381 0.4920 +2305 91746 0.5370 +2305 91750 0.8150 +2305 93649 0.4890 +2305 113130 0.6500 +2305 128239 0.5580 +2305 132660 0.8760 +2305 137902 0.4070 +2305 144455 0.6520 +2305 146909 0.8130 +2305 150468 0.4980 +2305 151648 0.5370 +2305 157313 0.5850 +2305 165918 0.6620 +2305 166979 0.5940 +2305 195828 0.4070 +2305 220134 0.6380 +2305 221150 0.6830 +2305 221302 0.5180 +2305 221937 0.4640 +2305 259266 0.8480 +2305 286826 0.8940 +2305 389692 0.5710 +2305 440093 0.5120 +2305 440686 0.5120 +2305 653604 0.5120 +2305 100532731 0.4040 +2305 102723796 0.4180 +2306 6839 0.4730 +2306 9869 0.5000 +2306 10668 0.4390 +2306 79723 0.4740 +2306 83852 0.4760 +2306 147912 0.4880 +2306 344022 0.4010 +2306 653404 0.4890 +2307 3725 0.4520 +2307 4285 0.4510 +2307 5515 0.5730 +2307 5519 0.6140 +2307 5520 0.4630 +2307 6659 0.4710 +2307 10538 0.4990 +2307 55844 0.6210 +2307 64321 0.4190 +2307 84886 0.4810 +2307 85366 0.5720 +2307 128853 0.4200 +2307 140706 0.4460 +2308 2309 0.9550 +2308 2353 0.8090 +2308 2355 0.4040 +2308 2475 0.7580 +2308 2492 0.4780 +2308 2538 0.8910 +2308 2597 0.6500 +2308 2625 0.5000 +2308 2626 0.5930 +2308 2641 0.7700 +2308 2645 0.7650 +2308 2660 0.7720 +2308 2672 0.6140 +2308 2696 0.5560 +2308 2740 0.6440 +2308 2810 0.9840 +2308 2877 0.4230 +2308 2878 0.4680 +2308 2880 0.4290 +2308 2882 0.4390 +2308 2887 0.5160 +2308 2908 0.8900 +2308 2931 0.5480 +2308 2932 0.8140 +2308 2998 0.5610 +2308 3021 0.5530 +2308 3065 0.7280 +2308 3066 0.6870 +2308 3091 0.8590 +2308 3156 0.4190 +2308 3162 0.4650 +2308 3164 0.5900 +2308 3172 0.9730 +2308 3202 0.4300 +2308 3206 0.6330 +2308 3207 0.8530 +2308 3224 0.5010 +2308 3276 0.9390 +2308 3309 0.4050 +2308 3310 0.4150 +2308 3320 0.6480 +2308 3326 0.4690 +2308 3397 0.4380 +2308 3399 0.4550 +2308 3458 0.5140 +2308 3479 0.9100 +2308 3480 0.7830 +2308 3481 0.5700 +2308 3482 0.4620 +2308 3484 0.7880 +2308 3516 0.5910 +2308 3551 0.9440 +2308 3553 0.7230 +2308 3558 0.4760 +2308 3565 0.4350 +2308 3569 0.7360 +2308 3574 0.4310 +2308 3575 0.6750 +2308 3576 0.4050 +2308 3586 0.5010 +2308 3605 0.4050 +2308 3630 0.9440 +2308 3643 0.7430 +2308 3651 0.8860 +2308 3661 0.7490 +2308 3662 0.6510 +2308 3667 0.8540 +2308 3717 0.4780 +2308 3725 0.7920 +2308 3726 0.5830 +2308 3727 0.5610 +2308 3845 0.4220 +2308 3931 0.4030 +2308 3952 0.7490 +2308 3953 0.4350 +2308 3982 0.4240 +2308 3991 0.4810 +2308 4023 0.4110 +2308 4087 0.9750 +2308 4088 0.9900 +2308 4089 0.8880 +2308 4091 0.5480 +2308 4160 0.4830 +2308 4170 0.6430 +2308 4193 0.7740 +2308 4208 0.6350 +2308 4217 0.4640 +2308 4287 0.5470 +2308 4303 0.9320 +2308 4313 0.5900 +2308 4318 0.4420 +2308 4485 0.4040 +2308 4609 0.7740 +2308 4613 0.4430 +2308 4617 0.4390 +2308 4618 0.4220 +2308 4654 0.6090 +2308 4656 0.6180 +2308 4760 0.4460 +2308 4772 0.4680 +2308 4780 0.5180 +2308 4783 0.5460 +2308 4790 0.7100 +2308 4792 0.4420 +2308 4800 0.5410 +2308 4801 0.7090 +2308 4802 0.5450 +2308 4825 0.4610 +2308 4846 0.6630 +2308 4851 0.4780 +2308 4852 0.8480 +2308 4899 0.4060 +2308 5071 0.4010 +2308 5077 0.9380 +2308 5079 0.7790 +2308 5081 0.9250 +2308 5087 0.4810 +2308 5105 0.8120 +2308 5106 0.6220 +2308 5156 0.5300 +2308 5159 0.5830 +2308 5164 0.4130 +2308 5166 0.6170 +2308 5170 0.7020 +2308 5241 0.6270 +2308 5289 0.4660 +2308 5290 0.7260 +2308 5291 0.8230 +2308 5292 0.4510 +2308 5293 0.5970 +2308 5294 0.5310 +2308 5295 0.5500 +2308 5307 0.4070 +2308 5341 0.4320 +2308 5346 0.4110 +2308 5347 0.5320 +2308 5371 0.7800 +2308 5443 0.8980 +2308 5451 0.5390 +2308 5460 0.7180 +2308 5465 0.6750 +2308 5467 0.4960 +2308 5468 0.8560 +2308 5515 0.4410 +2308 5562 0.9540 +2308 5563 0.9310 +2308 5564 0.9160 +2308 5565 0.9430 +2308 5566 0.9740 +2308 5567 0.9680 +2308 5568 0.9650 +2308 5571 0.9060 +2308 5578 0.4210 +2308 5594 0.9410 +2308 5595 0.9590 +2308 5599 0.9510 +2308 5600 0.9290 +2308 5601 0.9360 +2308 5603 0.9260 +2308 5617 0.4160 +2308 5728 0.9030 +2308 5770 0.4840 +2308 5788 0.4180 +2308 5896 0.8480 +2308 5914 0.4870 +2308 5934 0.6240 +2308 5935 0.4390 +2308 5966 0.4200 +2308 5970 0.5840 +2308 6007 0.5890 +2308 6009 0.5560 +2308 6095 0.6310 +2308 6097 0.5760 +2308 6194 0.4610 +2308 6198 0.7340 +2308 6199 0.6030 +2308 6300 0.9290 +2308 6304 0.6330 +2308 6319 0.5990 +2308 6347 0.4160 +2308 6391 0.5060 +2308 6402 0.4730 +2308 6418 0.5610 +2308 6446 0.9670 +2308 6495 0.4330 +2308 6498 0.5120 +2308 6502 0.9400 +2308 6513 0.4260 +2308 6514 0.5530 +2308 6517 0.6140 +2308 6591 0.6270 +2308 6647 0.4130 +2308 6648 0.9030 +2308 6657 0.6410 +2308 6667 0.6300 +2308 6688 0.6300 +2308 6714 0.5070 +2308 6720 0.9240 +2308 6721 0.5050 +2308 6722 0.8070 +2308 6757 0.4060 +2308 6772 0.4590 +2308 6774 0.9640 +2308 6776 0.7000 +2308 6777 0.7010 +2308 6778 0.6980 +2308 6789 0.9520 +2308 6794 0.9550 +2308 6833 0.5110 +2308 6927 0.5110 +2308 6929 0.6660 +2308 6932 0.5060 +2308 6934 0.5890 +2308 7015 0.4990 +2308 7019 0.5030 +2308 7030 0.4200 +2308 7040 0.4910 +2308 7048 0.4420 +2308 7088 0.4220 +2308 7099 0.4670 +2308 7124 0.7210 +2308 7128 0.5210 +2308 7157 0.8860 +2308 7187 0.4190 +2308 7248 0.4690 +2308 7249 0.8400 +2308 7291 0.6020 +2308 7295 0.4040 +2308 7320 0.4420 +2308 7337 0.5850 +2308 7350 0.4850 +2308 7351 0.6490 +2308 7405 0.4630 +2308 7431 0.4740 +2308 7465 0.5380 +2308 7494 0.8900 +2308 7528 0.4410 +2308 7529 0.9170 +2308 7531 0.6600 +2308 7532 0.9260 +2308 7533 0.5610 +2308 7534 0.9250 +2308 7704 0.4490 +2308 7707 0.5010 +2308 7837 0.5750 +2308 7852 0.4470 +2308 7874 0.9390 +2308 7942 0.7290 +2308 8019 0.4140 +2308 8202 0.5440 +2308 8290 0.5490 +2308 8312 0.4130 +2308 8317 0.4740 +2308 8320 0.4910 +2308 8356 0.5490 +2308 8408 0.4640 +2308 8431 0.7730 +2308 8473 0.9480 +2308 8503 0.4770 +2308 8517 0.4790 +2308 8550 0.7790 +2308 8600 0.5740 +2308 8648 0.6670 +2308 8660 0.8250 +2308 8678 0.6000 +2308 8826 0.4680 +2308 8850 0.5950 +2308 8856 0.7790 +2308 8878 0.4100 +2308 8900 0.5290 +2308 8928 0.4930 +2308 9021 0.4200 +2308 9079 0.4020 +2308 9140 0.5050 +2308 9314 0.8610 +2308 9370 0.6920 +2308 9414 0.4270 +2308 9420 0.4770 +2308 9451 0.4440 +2308 9474 0.5930 +2308 9611 0.6350 +2308 9734 0.4350 +2308 9759 0.6500 +2308 9882 0.4920 +2308 9971 0.6680 +2308 10000 0.9660 +2308 10018 0.8740 +2308 10110 0.9320 +2308 10128 0.5740 +2308 10135 0.4830 +2308 10253 0.4430 +2308 10273 0.5030 +2308 10320 0.4440 +2308 10365 0.7330 +2308 10370 0.8160 +2308 10413 0.6260 +2308 10499 0.5920 +2308 10525 0.4610 +2308 10533 0.9980 +2308 10538 0.6660 +2308 10628 0.4600 +2308 10891 0.9990 +2308 10919 0.4670 +2308 10926 0.5130 +2308 10971 0.8420 +2308 11345 0.4260 +2308 22863 0.4030 +2308 22926 0.4260 +2308 22933 0.9610 +2308 23405 0.4300 +2308 23408 0.4810 +2308 23409 0.5420 +2308 23410 0.7620 +2308 23411 0.9990 +2308 23460 0.7890 +2308 23476 0.5800 +2308 23678 0.9300 +2308 23710 0.5200 +2308 25942 0.6560 +2308 26291 0.4370 +2308 26499 0.4200 +2308 27113 0.8010 +2308 27244 0.4450 +2308 28999 0.5000 +2308 29950 0.4380 +2308 30009 0.6370 +2308 50507 0.4120 +2308 50674 0.4880 +2308 51085 0.5870 +2308 51094 0.4090 +2308 51176 0.4690 +2308 51422 0.9130 +2308 51547 0.6840 +2308 51548 0.6460 +2308 51684 0.4360 +2308 51701 0.9640 +2308 53632 0.9100 +2308 54205 0.5390 +2308 54432 0.5290 +2308 54541 0.4230 +2308 56729 0.8250 +2308 57060 0.5080 +2308 57104 0.5450 +2308 57511 0.4730 +2308 57521 0.6340 +2308 57818 0.7010 +2308 60468 0.5090 +2308 64223 0.4810 +2308 64240 0.5500 +2308 64241 0.5360 +2308 64375 0.4490 +2308 64784 0.4740 +2308 65018 0.8540 +2308 79068 0.4620 +2308 79109 0.6490 +2308 79923 0.7690 +2308 80854 0.9330 +2308 81631 0.4660 +2308 81669 0.4180 +2308 84335 0.5450 +2308 84504 0.4150 +2308 84627 0.4400 +2308 84676 0.9040 +2308 92579 0.7020 +2308 93986 0.4110 +2308 114907 0.9170 +2308 115209 0.4070 +2308 133522 0.4870 +2308 137902 0.5650 +2308 143686 0.5060 +2308 143872 0.4250 +2308 200186 0.7940 +2308 200576 0.4300 +2308 253260 0.8990 +2308 257202 0.4300 +2308 440093 0.5490 +2308 440686 0.5490 +2308 493869 0.4480 +2308 653145 0.4730 +2308 653604 0.5490 +2308 100132074 0.6070 +2309 2335 0.5800 +2309 2353 0.6820 +2309 2475 0.7470 +2309 2538 0.7140 +2309 2547 0.4140 +2309 2597 0.6350 +2309 2623 0.4080 +2309 2625 0.5780 +2309 2660 0.7320 +2309 2661 0.4110 +2309 2810 0.7880 +2309 2877 0.4580 +2309 2878 0.4790 +2309 2880 0.4660 +2309 2882 0.4860 +2309 2908 0.6860 +2309 2931 0.4860 +2309 2932 0.7620 +2309 3014 0.4910 +2309 3021 0.5560 +2309 3054 0.4140 +2309 3065 0.4790 +2309 3066 0.6660 +2309 3091 0.9970 +2309 3162 0.5040 +2309 3172 0.4460 +2309 3276 0.9280 +2309 3308 0.4020 +2309 3320 0.4920 +2309 3326 0.4920 +2309 3397 0.9890 +2309 3458 0.4410 +2309 3479 0.8030 +2309 3480 0.6740 +2309 3481 0.4450 +2309 3484 0.6810 +2309 3491 0.5100 +2309 3551 0.9890 +2309 3553 0.5260 +2309 3569 0.5810 +2309 3576 0.4060 +2309 3586 0.4550 +2309 3630 0.8790 +2309 3643 0.5060 +2309 3662 0.4730 +2309 3667 0.6290 +2309 3717 0.4520 +2309 3725 0.7730 +2309 3726 0.5650 +2309 3815 0.4070 +2309 3845 0.4440 +2309 3934 0.4780 +2309 4001 0.4050 +2309 4084 0.5980 +2309 4087 0.9920 +2309 4088 0.9950 +2309 4089 0.9790 +2309 4130 0.4440 +2309 4149 0.6270 +2309 4153 0.4130 +2309 4154 0.5450 +2309 4170 0.7050 +2309 4193 0.9950 +2309 4209 0.5550 +2309 4217 0.6880 +2309 4254 0.6270 +2309 4286 0.5890 +2309 4287 0.5430 +2309 4303 0.9200 +2309 4318 0.4540 +2309 4436 0.4010 +2309 4601 0.7570 +2309 4609 0.8740 +2309 4654 0.6580 +2309 4656 0.5140 +2309 4779 0.5850 +2309 4780 0.5740 +2309 4790 0.7110 +2309 4792 0.4460 +2309 4800 0.5520 +2309 4801 0.5210 +2309 4802 0.5280 +2309 4846 0.4130 +2309 4851 0.4660 +2309 4854 0.5920 +2309 4855 0.4500 +2309 4899 0.9330 +2309 5071 0.4880 +2309 5077 0.6770 +2309 5080 0.5020 +2309 5081 0.4310 +2309 5087 0.6970 +2309 5105 0.6580 +2309 5166 0.4350 +2309 5170 0.5640 +2309 5289 0.5670 +2309 5290 0.6170 +2309 5291 0.7010 +2309 5292 0.6350 +2309 5293 0.5230 +2309 5294 0.6560 +2309 5295 0.5100 +2309 5315 0.4020 +2309 5347 0.7270 +2309 5366 0.5090 +2309 5451 0.5000 +2309 5465 0.5270 +2309 5468 0.5820 +2309 5515 0.4240 +2309 5516 0.5620 +2309 5518 0.5420 +2309 5524 0.5510 +2309 5562 0.9420 +2309 5563 0.9370 +2309 5564 0.9260 +2309 5565 0.9180 +2309 5566 0.9380 +2309 5567 0.9390 +2309 5568 0.9380 +2309 5571 0.9210 +2309 5594 0.9630 +2309 5595 0.9610 +2309 5596 0.5450 +2309 5597 0.6120 +2309 5599 0.9540 +2309 5600 0.9290 +2309 5601 0.9410 +2309 5603 0.9260 +2309 5604 0.4170 +2309 5606 0.4720 +2309 5663 0.5240 +2309 5725 0.4430 +2309 5728 0.8530 +2309 5734 0.4960 +2309 5747 0.9920 +2309 5925 0.4970 +2309 5933 0.4320 +2309 5934 0.6370 +2309 5966 0.4170 +2309 5970 0.6770 +2309 6009 0.5560 +2309 6095 0.5700 +2309 6097 0.5270 +2309 6194 0.4630 +2309 6198 0.7310 +2309 6199 0.5750 +2309 6300 0.9290 +2309 6391 0.4830 +2309 6422 0.4760 +2309 6446 0.9790 +2309 6464 0.5220 +2309 6502 0.8040 +2309 6517 0.4240 +2309 6546 0.4020 +2309 6615 0.4220 +2309 6622 0.4030 +2309 6647 0.4330 +2309 6648 0.9740 +2309 6657 0.6400 +2309 6714 0.4850 +2309 6720 0.5080 +2309 6721 0.4180 +2309 6772 0.4330 +2309 6774 0.9780 +2309 6776 0.4700 +2309 6777 0.5160 +2309 6778 0.6070 +2309 6789 0.9660 +2309 6794 0.9600 +2309 6938 0.4520 +2309 7015 0.6160 +2309 7019 0.4970 +2309 7030 0.4110 +2309 7040 0.6230 +2309 7099 0.4030 +2309 7124 0.5900 +2309 7157 0.9980 +2309 7248 0.4870 +2309 7249 0.6560 +2309 7291 0.6100 +2309 7295 0.4740 +2309 7351 0.4050 +2309 7405 0.4440 +2309 7428 0.5260 +2309 7471 0.5330 +2309 7494 0.4230 +2309 7514 0.4320 +2309 7528 0.4090 +2309 7529 0.9690 +2309 7531 0.9780 +2309 7532 0.9540 +2309 7533 0.9510 +2309 7534 0.9940 +2309 7837 0.5550 +2309 7874 0.9710 +2309 7942 0.6400 +2309 8239 0.7980 +2309 8290 0.5490 +2309 8312 0.4140 +2309 8356 0.5490 +2309 8408 0.6200 +2309 8434 0.4740 +2309 8517 0.5170 +2309 8550 0.8020 +2309 8660 0.6810 +2309 8678 0.6910 +2309 8743 0.5200 +2309 8841 0.8330 +2309 8850 0.8320 +2309 8851 0.7630 +2309 8874 0.6130 +2309 8878 0.5160 +2309 8900 0.5440 +2309 8945 0.4740 +2309 9096 0.5450 +2309 9140 0.6130 +2309 9314 0.8600 +2309 9451 0.4530 +2309 9474 0.6640 +2309 9641 0.5540 +2309 9706 0.4580 +2309 9759 0.4630 +2309 9776 0.4760 +2309 9817 0.4660 +2309 9821 0.4600 +2309 9927 0.4820 +2309 9997 0.4480 +2309 10000 0.9660 +2309 10018 0.9840 +2309 10059 0.4020 +2309 10110 0.9300 +2309 10135 0.4560 +2309 10150 0.5310 +2309 10190 0.5800 +2309 10215 0.4900 +2309 10253 0.4550 +2309 10365 0.4500 +2309 10370 0.9330 +2309 10381 0.5070 +2309 10498 0.6030 +2309 10524 0.8290 +2309 10527 0.4860 +2309 10533 0.7900 +2309 10538 0.5370 +2309 10589 0.5450 +2309 10628 0.5450 +2309 10645 0.4580 +2309 10891 0.9870 +2309 10935 0.5840 +2309 10971 0.9690 +2309 11200 0.6250 +2309 11218 0.4180 +2309 11221 0.4160 +2309 11337 0.4450 +2309 11345 0.5190 +2309 22863 0.4680 +2309 22926 0.4110 +2309 22933 0.6420 +2309 23060 0.4100 +2309 23112 0.4350 +2309 23192 0.4460 +2309 23291 0.4260 +2309 23405 0.4510 +2309 23408 0.5540 +2309 23409 0.6030 +2309 23410 0.9870 +2309 23411 0.9990 +2309 23460 0.7640 +2309 23476 0.9600 +2309 23678 0.9320 +2309 23710 0.6070 +2309 26523 0.5030 +2309 26952 0.4100 +2309 27113 0.8920 +2309 27161 0.6710 +2309 27244 0.4460 +2309 27250 0.4030 +2309 27327 0.4650 +2309 29110 0.5470 +2309 50507 0.4110 +2309 50943 0.4590 +2309 51024 0.4070 +2309 51422 0.9190 +2309 51547 0.6290 +2309 51548 0.8510 +2309 51701 0.9370 +2309 53632 0.9170 +2309 54205 0.6240 +2309 54361 0.5100 +2309 54432 0.5830 +2309 54541 0.4160 +2309 55294 0.4270 +2309 55669 0.4130 +2309 55796 0.5570 +2309 56998 0.4350 +2309 57060 0.5080 +2309 57521 0.6340 +2309 60673 0.8290 +2309 64223 0.4630 +2309 64422 0.4760 +2309 65018 0.9230 +2309 79068 0.4510 +2309 79109 0.6140 +2309 79365 0.4070 +2309 79680 0.4750 +2309 79923 0.6020 +2309 80854 0.9310 +2309 81620 0.6210 +2309 81631 0.6330 +2309 81669 0.4030 +2309 83667 0.4110 +2309 83737 0.6050 +2309 84260 0.4140 +2309 84335 0.5510 +2309 84557 0.4430 +2309 84676 0.8340 +2309 92140 0.5660 +2309 93649 0.4710 +2309 114907 0.9320 +2309 132660 0.5440 +2309 135935 0.4160 +2309 137902 0.5540 +2309 143686 0.4820 +2309 192669 0.4510 +2309 192670 0.4730 +2309 200186 0.5730 +2309 253260 0.8300 +2309 257202 0.4670 +2309 440093 0.5490 +2309 440686 0.5490 +2309 493869 0.4840 +2309 653604 0.5490 +2309 100132074 0.5490 +2309 100532731 0.4020 +2310 10000 0.4010 +2312 2597 0.4260 +2312 3037 0.4520 +2312 3458 0.4600 +2312 3552 0.4650 +2312 3553 0.4840 +2312 3565 0.6060 +2312 3566 0.4510 +2312 3567 0.5410 +2312 3569 0.4550 +2312 3576 0.4170 +2312 3586 0.4020 +2312 3596 0.6640 +2312 3605 0.5200 +2312 3713 0.9970 +2312 3728 0.5950 +2312 3848 0.9530 +2312 3849 0.6290 +2312 3851 0.4550 +2312 3852 0.7380 +2312 3853 0.4540 +2312 3854 0.4850 +2312 3857 0.4010 +2312 3858 0.9320 +2312 3860 0.4670 +2312 3861 0.7180 +2312 3866 0.4600 +2312 3868 0.6820 +2312 3872 0.4400 +2312 4014 0.9980 +2312 5017 0.5080 +2312 5045 0.4730 +2312 5046 0.4610 +2312 5266 0.6630 +2312 5317 0.7280 +2312 5318 0.5410 +2312 5493 0.7880 +2312 5650 0.8110 +2312 5652 0.5140 +2312 5653 0.4930 +2312 5657 0.6960 +2312 6277 0.5630 +2312 6278 0.5950 +2312 6281 0.6390 +2312 6361 0.5290 +2312 6698 0.8620 +2312 6699 0.8200 +2312 6700 0.6850 +2312 6701 0.7400 +2312 6703 0.6470 +2312 6704 0.5940 +2312 6705 0.5290 +2312 6706 0.6630 +2312 6707 0.7440 +2312 6768 0.8450 +2312 6778 0.4270 +2312 6785 0.4060 +2312 7051 0.9070 +2312 7053 0.7570 +2312 7062 0.8310 +2312 7124 0.4840 +2312 7351 0.4030 +2312 7477 0.4040 +2312 8502 0.5070 +2312 8796 0.4040 +2312 8993 0.4080 +2312 9076 0.5730 +2312 9448 0.4060 +2312 9622 0.6580 +2312 10344 0.5310 +2312 10631 0.4160 +2312 11005 0.9280 +2312 11187 0.6210 +2312 11240 0.5070 +2312 23569 0.5050 +2312 23581 0.9460 +2312 25818 0.9410 +2312 26154 0.6430 +2312 26239 0.6220 +2312 29943 0.5810 +2312 49860 0.5910 +2312 50616 0.5450 +2312 51371 0.5940 +2312 51702 0.8390 +2312 54544 0.4230 +2312 56946 0.4480 +2312 63036 0.4500 +2312 79841 0.5960 +2312 81631 0.4120 +2312 84283 0.6690 +2312 84648 0.4600 +2312 84659 0.4100 +2312 85480 0.7200 +2312 90865 0.5770 +2312 94103 0.4120 +2312 126637 0.4710 +2312 126638 0.7990 +2312 147409 0.6160 +2312 163778 0.4620 +2312 196374 0.4220 +2312 196394 0.4060 +2312 204219 0.4120 +2312 340351 0.4580 +2312 353132 0.4810 +2312 353142 0.4210 +2312 353143 0.5280 +2312 353144 0.6070 +2312 374454 0.4140 +2312 374897 0.4020 +2312 386653 0.6640 +2312 388533 0.4720 +2312 388697 0.6030 +2312 388698 0.8320 +2312 414325 0.4790 +2312 440854 0.6170 +2312 448834 0.5410 +2312 100289462 0.4150 +2312 100506658 0.4360 +2313 2521 0.4360 +2313 2623 0.7650 +2313 2624 0.9280 +2313 2672 0.5320 +2313 3012 0.4990 +2313 3013 0.5000 +2313 3014 0.5220 +2313 3015 0.5090 +2313 3017 0.5110 +2313 3018 0.5100 +2313 3021 0.5520 +2313 3087 0.6080 +2313 3674 0.5220 +2313 4005 0.4330 +2313 4068 0.4520 +2313 4267 0.4940 +2313 4602 0.8440 +2313 5538 0.8410 +2313 5580 0.4020 +2313 5594 0.4140 +2313 5710 0.4200 +2313 5713 0.4430 +2313 6257 0.4620 +2313 6500 0.6060 +2313 6688 0.8480 +2313 6722 0.4800 +2313 6760 0.4250 +2313 6886 0.9110 +2313 6921 0.4630 +2313 6923 0.5130 +2313 7048 0.4680 +2313 7456 0.4290 +2313 8331 0.4990 +2313 8334 0.4990 +2313 8337 0.5350 +2313 8338 0.5360 +2313 8340 0.5110 +2313 8341 0.5090 +2313 8342 0.5110 +2313 8345 0.5120 +2313 8347 0.5140 +2313 8348 0.5110 +2313 8349 0.5300 +2313 8356 0.5540 +2313 8361 0.5080 +2313 8451 0.4650 +2313 8453 0.5050 +2313 8454 0.5200 +2313 8556 0.5880 +2313 8850 0.5350 +2313 8970 0.5140 +2313 9978 0.5680 +2313 10213 0.5900 +2313 10661 0.4020 +2313 26227 0.5080 +2313 51176 0.5420 +2313 51529 0.7090 +2313 54145 0.5110 +2313 55294 0.9950 +2313 55766 0.4990 +2313 81669 0.7100 +2313 83890 0.4130 +2313 84188 0.4470 +2313 85236 0.5090 +2313 94239 0.5000 +2313 128312 0.5110 +2313 170575 0.4460 +2313 255626 0.5090 +2313 474382 0.4990 +2313 653604 0.5540 +2314 2355 0.4370 +2314 2624 0.4880 +2314 2948 0.4530 +2314 3276 0.4010 +2314 3486 0.5770 +2314 3996 0.8380 +2314 4267 0.5220 +2314 4609 0.4270 +2314 4627 0.7010 +2314 4821 0.4390 +2314 5074 0.5190 +2314 5081 0.4510 +2314 5436 0.4920 +2314 6631 0.5880 +2314 6737 0.4540 +2314 6840 0.4230 +2314 6936 0.7630 +2314 7042 0.4140 +2314 7046 0.4730 +2314 7074 0.4690 +2314 7094 0.5790 +2314 7099 0.4350 +2314 7111 0.6830 +2314 7124 0.4350 +2314 8837 0.4840 +2314 9208 0.9980 +2314 9209 0.9890 +2314 9578 0.4340 +2314 9939 0.5660 +2314 9948 0.4430 +2314 10498 0.4730 +2314 10499 0.4370 +2314 10989 0.5270 +2314 22859 0.5280 +2314 23266 0.5280 +2314 23284 0.5280 +2314 23476 0.6000 +2314 29765 0.5290 +2314 54443 0.4420 +2314 55075 0.6040 +2314 79147 0.6960 +2314 79180 0.4910 +2314 79918 0.4220 +2314 83660 0.5280 +2314 114548 0.4390 +2314 160065 0.4020 +2314 161882 0.4440 +2315 3122 0.9080 +2315 3123 0.9060 +2315 4102 0.5220 +2315 4157 0.5010 +2315 4162 0.5270 +2315 4286 0.7410 +2315 4734 0.5100 +2315 4935 0.9320 +2315 4948 0.6260 +2315 5077 0.6340 +2315 5873 0.5940 +2315 6490 0.9900 +2315 6622 0.4230 +2315 6663 0.7450 +2315 6790 0.4270 +2315 7299 0.9850 +2315 7306 0.9020 +2315 10457 0.4640 +2315 23532 0.4150 +2315 23682 0.4760 +2315 51151 0.8090 +2315 55733 0.7680 +2315 83737 0.5100 +2315 144501 0.4090 +2315 283652 0.6330 +2315 340273 0.4780 +2316 2317 0.9790 +2316 2318 0.9070 +2316 2319 0.5210 +2316 2335 0.8090 +2316 2346 0.5140 +2316 2534 0.4590 +2316 2597 0.4740 +2316 2811 0.9990 +2316 2812 0.8310 +2316 2814 0.5990 +2316 2815 0.7100 +2316 2817 0.4260 +2316 2885 0.5800 +2316 2891 0.4730 +2316 2909 0.6250 +2316 2934 0.8310 +2316 2950 0.4130 +2316 3059 0.5620 +2316 3091 0.6940 +2316 3192 0.4490 +2316 3303 0.5090 +2316 3304 0.5000 +2316 3308 0.6530 +2316 3312 0.5160 +2316 3320 0.5660 +2316 3326 0.8420 +2316 3339 0.4040 +2316 3421 0.5180 +2316 3551 0.4470 +2316 3611 0.8320 +2316 3636 0.5860 +2316 3655 0.7390 +2316 3672 0.7180 +2316 3673 0.7330 +2316 3674 0.9850 +2316 3675 0.7330 +2316 3676 0.7920 +2316 3678 0.7890 +2316 3679 0.7060 +2316 3680 0.6900 +2316 3685 0.7290 +2316 3688 0.9930 +2316 3689 0.9380 +2316 3690 0.9940 +2316 3691 0.9090 +2316 3693 0.8410 +2316 3694 0.8570 +2316 3695 0.9750 +2316 3696 0.7990 +2316 3700 0.5430 +2316 3728 0.5380 +2316 3751 0.7910 +2316 3845 0.5220 +2316 3875 0.4540 +2316 3897 0.6120 +2316 3984 0.4300 +2316 3987 0.4130 +2316 4000 0.5500 +2316 4035 0.4270 +2316 4087 0.5830 +2316 4088 0.6450 +2316 4110 0.4260 +2316 4176 0.4230 +2316 4215 0.4800 +2316 4318 0.5710 +2316 4478 0.8340 +2316 4543 0.5150 +2316 4597 0.4120 +2316 4605 0.6120 +2316 4609 0.7010 +2316 4627 0.8610 +2316 4628 0.4430 +2316 4629 0.5640 +2316 4637 0.4270 +2316 4638 0.4920 +2316 4641 0.4030 +2316 4646 0.4720 +2316 4790 0.5330 +2316 4791 0.4750 +2316 4851 0.5870 +2316 4867 0.4200 +2316 4938 0.5000 +2316 4939 0.5000 +2316 4940 0.5150 +2316 4988 0.6380 +2316 5029 0.6720 +2316 5034 0.4930 +2316 5058 0.9500 +2316 5062 0.5850 +2316 5063 0.5380 +2316 5074 0.4290 +2316 5202 0.4510 +2316 5203 0.4700 +2316 5204 0.4780 +2316 5216 0.7760 +2316 5230 0.5270 +2316 5239 0.5490 +2316 5339 0.8120 +2316 5341 0.6240 +2316 5500 0.4970 +2316 5567 0.4940 +2316 5581 0.4650 +2316 5594 0.6060 +2316 5595 0.4250 +2316 5613 0.5040 +2316 5631 0.4200 +2316 5663 0.5750 +2316 5664 0.4020 +2316 5747 0.4230 +2316 5756 0.4230 +2316 5782 0.5790 +2316 5829 0.9890 +2316 5877 0.4100 +2316 5879 0.6220 +2316 5888 0.5360 +2316 5898 0.9300 +2316 5899 0.6280 +2316 5921 0.5990 +2316 5962 0.4750 +2316 6041 0.9470 +2316 6059 0.8150 +2316 6251 0.5470 +2316 6385 0.4380 +2316 6416 0.9640 +2316 6442 0.5840 +2316 6443 0.5750 +2316 6444 0.6320 +2316 6445 0.7280 +2316 6525 0.6730 +2316 6535 0.5020 +2316 6624 0.8870 +2316 6640 0.5680 +2316 6641 0.5500 +2316 6645 0.5600 +2316 6647 0.4700 +2316 6709 0.5360 +2316 6714 0.8090 +2316 6774 0.5280 +2316 6790 0.4140 +2316 6804 0.4130 +2316 6813 0.4220 +2316 6840 0.5780 +2316 6850 0.6330 +2316 6876 0.5730 +2316 6901 0.4750 +2316 7040 0.4470 +2316 7041 0.4830 +2316 7082 0.6570 +2316 7086 0.4810 +2316 7094 0.9980 +2316 7099 0.6950 +2316 7111 0.6170 +2316 7157 0.4470 +2316 7168 0.6160 +2316 7169 0.4450 +2316 7170 0.4300 +2316 7171 0.5720 +2316 7184 0.5600 +2316 7186 0.8360 +2316 7273 0.7530 +2316 7277 0.5360 +2316 7402 0.4870 +2316 7408 0.7720 +2316 7410 0.5550 +2316 7411 0.5320 +2316 7414 0.9980 +2316 7415 0.4600 +2316 7428 0.6890 +2316 7430 0.7610 +2316 7431 0.6460 +2316 7448 0.5970 +2316 7450 0.8020 +2316 7454 0.4920 +2316 7514 0.4140 +2316 7534 0.5380 +2316 7791 0.7790 +2316 7798 0.6490 +2316 7846 0.4690 +2316 7852 0.8920 +2316 7881 0.4340 +2316 7940 0.5860 +2316 7965 0.4150 +2316 8082 0.5640 +2316 8407 0.6990 +2316 8436 0.4770 +2316 8470 0.4550 +2316 8515 0.6580 +2316 8516 0.6870 +2316 8518 0.4060 +2316 8557 0.5350 +2316 8642 0.5070 +2316 8815 0.4130 +2316 8826 0.9520 +2316 8829 0.4850 +2316 8874 0.5110 +2316 8877 0.5260 +2316 8878 0.4360 +2316 8910 0.5760 +2316 8976 0.4420 +2316 9260 0.4850 +2316 9270 0.6060 +2316 9368 0.4510 +2316 9402 0.5080 +2316 9499 0.6420 +2316 9531 0.4280 +2316 9564 0.7100 +2316 9584 0.4660 +2316 9780 0.4420 +2316 9793 0.4800 +2316 9863 0.4890 +2316 9914 0.4070 +2316 9948 0.8740 +2316 9968 0.7040 +2316 9992 0.5750 +2316 10014 0.6300 +2316 10015 0.4150 +2316 10019 0.5680 +2316 10059 0.6880 +2316 10095 0.4890 +2316 10096 0.4670 +2316 10097 0.4650 +2316 10123 0.5230 +2316 10226 0.4640 +2316 10398 0.6020 +2316 10519 0.5510 +2316 10564 0.8850 +2316 10598 0.4360 +2316 10627 0.4050 +2316 10628 0.4200 +2316 10645 0.4120 +2316 10728 0.4100 +2316 10801 0.7070 +2316 10904 0.4620 +2316 10979 0.8520 +2316 11188 0.4980 +2316 11214 0.4860 +2316 11252 0.6080 +2316 22801 0.6910 +2316 22900 0.4200 +2316 22927 0.4080 +2316 23022 0.5380 +2316 23052 0.4260 +2316 23336 0.5490 +2316 23363 0.4080 +2316 23534 0.4070 +2316 23603 0.6310 +2316 26136 0.4270 +2316 26999 0.4300 +2316 27129 0.9810 +2316 27145 0.9800 +2316 27154 0.4110 +2316 29765 0.6330 +2316 29766 0.6470 +2316 29767 0.5520 +2316 29780 0.6180 +2316 30008 0.4380 +2316 51474 0.6440 +2316 51481 0.4410 +2316 51555 0.5220 +2316 51582 0.4580 +2316 51676 0.8360 +2316 51806 0.7240 +2316 54212 0.5400 +2316 54221 0.5400 +2316 54443 0.5550 +2316 54518 0.5580 +2316 54751 0.9990 +2316 55138 0.4430 +2316 55217 0.5840 +2316 55612 0.4360 +2316 55742 0.4240 +2316 55770 0.5400 +2316 55780 0.4510 +2316 55957 0.5550 +2316 56891 0.4630 +2316 56893 0.4550 +2316 57175 0.4050 +2316 57544 0.6160 +2316 58504 0.5990 +2316 58529 0.6140 +2316 64093 0.4410 +2316 64236 0.6130 +2316 79026 0.4340 +2316 79070 0.8170 +2316 80020 0.6160 +2316 80790 0.9070 +2316 81031 0.4470 +2316 83478 0.9920 +2316 83605 0.4030 +2316 83660 0.9960 +2316 83706 0.7270 +2316 84687 0.4410 +2316 85358 0.4150 +2316 85477 0.7920 +2316 90102 0.7160 +2316 90627 0.5040 +2316 91039 0.4110 +2316 91147 0.6790 +2316 91624 0.6160 +2316 91860 0.7190 +2316 92002 0.5880 +2316 92521 0.4380 +2316 103910 0.4100 +2316 133482 0.5380 +2316 134492 0.4070 +2316 137868 0.5530 +2316 144347 0.7580 +2316 149371 0.5360 +2316 160622 0.6800 +2316 163688 0.7180 +2316 171024 0.7910 +2316 201626 0.7680 +2316 221823 0.4040 +2316 284119 0.5960 +2316 285590 0.4890 +2316 286262 0.4030 +2316 345456 0.7130 +2316 375189 0.7240 +2316 445815 0.4200 +2316 641700 0.4540 +2316 728378 0.5390 +2316 100529144 0.6010 +2317 2318 0.9210 +2317 2335 0.6680 +2317 2811 0.9320 +2317 2909 0.6010 +2317 2934 0.7450 +2317 3059 0.5240 +2317 3320 0.4610 +2317 3326 0.4730 +2317 3383 0.5340 +2317 3418 0.4330 +2317 3421 0.5480 +2317 3611 0.6440 +2317 3636 0.8130 +2317 3655 0.7800 +2317 3672 0.6970 +2317 3673 0.7360 +2317 3674 0.7160 +2317 3675 0.7360 +2317 3676 0.6940 +2317 3678 0.7370 +2317 3679 0.6870 +2317 3680 0.6920 +2317 3685 0.7240 +2317 3688 0.9390 +2317 3689 0.6270 +2317 3690 0.9110 +2317 3691 0.7900 +2317 3693 0.8240 +2317 3694 0.8590 +2317 3695 0.8430 +2317 3696 0.7980 +2317 3751 0.7320 +2317 3908 0.4220 +2317 3911 0.5440 +2317 4087 0.5380 +2317 4088 0.5710 +2317 4134 0.4530 +2317 4175 0.4920 +2317 4214 0.4160 +2317 4478 0.6460 +2317 4604 0.4210 +2317 4627 0.5750 +2317 4628 0.6190 +2317 4638 0.4850 +2317 4659 0.4530 +2317 4690 0.5850 +2317 4880 0.4350 +2317 4883 0.5460 +2317 5045 0.4240 +2317 5058 0.9210 +2317 5216 0.6970 +2317 5230 0.4850 +2317 5311 0.5250 +2317 5339 0.6380 +2317 5500 0.4750 +2317 5594 0.5690 +2317 5599 0.6020 +2317 5663 0.6090 +2317 5829 0.9820 +2317 5879 0.4080 +2317 5898 0.8150 +2317 5899 0.6130 +2317 5962 0.4260 +2317 6251 0.6280 +2317 6385 0.4500 +2317 6416 0.9700 +2317 6445 0.4750 +2317 6525 0.5510 +2317 6624 0.7880 +2317 6709 0.4150 +2317 6714 0.7390 +2317 6876 0.4800 +2317 6901 0.5420 +2317 7094 0.9950 +2317 7111 0.5620 +2317 7168 0.5270 +2317 7169 0.5470 +2317 7170 0.4730 +2317 7171 0.4100 +2317 7253 0.4950 +2317 7273 0.5070 +2317 7408 0.7000 +2317 7410 0.5340 +2317 7414 0.9950 +2317 7415 0.5910 +2317 7430 0.6340 +2317 7431 0.4820 +2317 7448 0.5670 +2317 7450 0.5000 +2317 7454 0.4250 +2317 7706 0.5120 +2317 7791 0.6880 +2317 7852 0.4760 +2317 7881 0.6520 +2317 7940 0.6150 +2317 8407 0.5220 +2317 8436 0.4260 +2317 8515 0.6720 +2317 8516 0.7270 +2317 8557 0.5250 +2317 8826 0.4810 +2317 9246 0.5380 +2317 9270 0.6100 +2317 9368 0.4250 +2317 9493 0.5670 +2317 9499 0.6410 +2317 9531 0.4500 +2317 9564 0.6330 +2317 9636 0.9410 +2317 10146 0.4470 +2317 10472 0.5380 +2317 10519 0.5370 +2317 10564 0.4890 +2317 10904 0.4070 +2317 10979 0.7570 +2317 10981 0.5170 +2317 11004 0.4060 +2317 11188 0.4440 +2317 22801 0.6850 +2317 23336 0.5430 +2317 23363 0.4080 +2317 23367 0.5800 +2317 23761 0.4170 +2317 25820 0.4280 +2317 26999 0.4270 +2317 27129 0.5780 +2317 27145 0.4780 +2317 29114 0.5070 +2317 29127 0.4450 +2317 29765 0.6390 +2317 29766 0.5850 +2317 29767 0.5550 +2317 29780 0.6030 +2317 51191 0.4550 +2317 51429 0.4340 +2317 51474 0.6510 +2317 51582 0.4500 +2317 51676 0.5800 +2317 51806 0.5940 +2317 54443 0.5600 +2317 54751 0.9960 +2317 55612 0.4400 +2317 55742 0.4340 +2317 55770 0.5710 +2317 57211 0.5930 +2317 58529 0.5900 +2317 65059 0.7150 +2317 79026 0.4580 +2317 79661 0.4050 +2317 80790 0.5460 +2317 81846 0.5900 +2317 83548 0.5240 +2317 83660 0.9950 +2317 83706 0.7790 +2317 85477 0.7440 +2317 90102 0.5440 +2317 91860 0.5850 +2317 134492 0.4170 +2317 144347 0.5940 +2317 149371 0.5240 +2317 163688 0.5910 +2317 171024 0.6240 +2317 261734 0.5320 +2317 283383 0.6030 +2317 284119 0.5590 +2317 345456 0.6990 +2317 375189 0.7110 +2317 375790 0.4660 +2317 389421 0.5530 +2317 399687 0.4250 +2317 100529144 0.6050 +2318 2335 0.5530 +2318 2811 0.8370 +2318 2909 0.5710 +2318 2934 0.7490 +2318 2950 0.4170 +2318 3059 0.4990 +2318 3308 0.5720 +2318 3316 0.4890 +2318 3320 0.4640 +2318 3326 0.4690 +2318 3421 0.4980 +2318 3611 0.7140 +2318 3636 0.7660 +2318 3655 0.7050 +2318 3672 0.7250 +2318 3673 0.7220 +2318 3674 0.7090 +2318 3675 0.7360 +2318 3676 0.6880 +2318 3678 0.7470 +2318 3679 0.7370 +2318 3680 0.6860 +2318 3685 0.7100 +2318 3688 0.9280 +2318 3689 0.5980 +2318 3690 0.8860 +2318 3691 0.8020 +2318 3693 0.8130 +2318 3694 0.8110 +2318 3695 0.8440 +2318 3696 0.7980 +2318 3728 0.4440 +2318 3751 0.7990 +2318 3778 0.4530 +2318 3880 0.4620 +2318 4000 0.6230 +2318 4060 0.4260 +2318 4087 0.5210 +2318 4088 0.5230 +2318 4478 0.6420 +2318 4604 0.8370 +2318 4606 0.4490 +2318 4607 0.6830 +2318 4620 0.4110 +2318 4624 0.4340 +2318 4625 0.6450 +2318 4633 0.5080 +2318 4634 0.5140 +2318 4636 0.4110 +2318 4892 0.4850 +2318 5045 0.5700 +2318 5058 0.9200 +2318 5216 0.6860 +2318 5239 0.5970 +2318 5311 0.5220 +2318 5318 0.5090 +2318 5339 0.6170 +2318 5594 0.5720 +2318 5663 0.4880 +2318 5829 0.9820 +2318 5898 0.7890 +2318 5899 0.6140 +2318 5921 0.5240 +2318 5962 0.4180 +2318 6251 0.5180 +2318 6331 0.5110 +2318 6385 0.4390 +2318 6416 0.9680 +2318 6442 0.6300 +2318 6443 0.5450 +2318 6444 0.9730 +2318 6445 0.9470 +2318 6525 0.6020 +2318 6624 0.7940 +2318 6641 0.5050 +2318 6714 0.7270 +2318 6876 0.4330 +2318 6901 0.4930 +2318 7057 0.4560 +2318 7086 0.4570 +2318 7094 0.9960 +2318 7111 0.6000 +2318 7126 0.6340 +2318 7137 0.4610 +2318 7139 0.5510 +2318 7168 0.5500 +2318 7169 0.7420 +2318 7170 0.5100 +2318 7273 0.8370 +2318 7408 0.6970 +2318 7410 0.5000 +2318 7414 0.9940 +2318 7430 0.5930 +2318 7450 0.5250 +2318 7454 0.4100 +2318 7791 0.6790 +2318 7852 0.4680 +2318 7881 0.4460 +2318 7940 0.6070 +2318 8048 0.5790 +2318 8082 0.4340 +2318 8291 0.5880 +2318 8407 0.5210 +2318 8515 0.6650 +2318 8516 0.6790 +2318 8557 0.8800 +2318 8683 0.4640 +2318 8736 0.4770 +2318 9201 0.4250 +2318 9270 0.5870 +2318 9368 0.4290 +2318 9499 0.9980 +2318 9531 0.9170 +2318 9564 0.6190 +2318 9770 0.4750 +2318 9914 0.4270 +2318 10020 0.5080 +2318 10049 0.5330 +2318 10324 0.4260 +2318 10398 0.4280 +2318 10519 0.5260 +2318 10529 0.5810 +2318 10611 0.5330 +2318 10979 0.7470 +2318 11129 0.5460 +2318 11155 0.9260 +2318 11188 0.4100 +2318 11200 0.4260 +2318 11259 0.4810 +2318 11346 0.4980 +2318 22801 0.7080 +2318 23022 0.4450 +2318 23336 0.7050 +2318 23363 0.5240 +2318 23543 0.5040 +2318 23761 0.4040 +2318 26353 0.7070 +2318 27063 0.4240 +2318 27129 0.8890 +2318 27145 0.5240 +2318 27295 0.6820 +2318 29114 0.5030 +2318 29115 0.5680 +2318 29119 0.4480 +2318 29765 0.6860 +2318 29766 0.5940 +2318 29767 0.5900 +2318 29780 0.6180 +2318 51474 0.5510 +2318 51778 0.8890 +2318 51806 0.6130 +2318 54443 0.4300 +2318 54751 0.9990 +2318 55612 0.4210 +2318 55742 0.4840 +2318 55746 0.4500 +2318 55770 0.5420 +2318 57110 0.4590 +2318 57158 0.4560 +2318 57159 0.6900 +2318 57190 0.6400 +2318 57538 0.4380 +2318 57600 0.4950 +2318 58529 0.9800 +2318 64753 0.4110 +2318 65059 0.5330 +2318 79188 0.7200 +2318 79933 0.4080 +2318 80790 0.5400 +2318 81493 0.5630 +2318 83660 0.9960 +2318 83706 0.7650 +2318 83987 0.4570 +2318 84033 0.4970 +2318 84665 0.6290 +2318 84675 0.4050 +2318 84676 0.4810 +2318 85477 0.7300 +2318 90102 0.8630 +2318 91156 0.6820 +2318 91624 0.6860 +2318 91860 0.6040 +2318 91977 0.8330 +2318 126393 0.4170 +2318 129446 0.6140 +2318 144347 0.5230 +2318 149371 0.5160 +2318 163688 0.6040 +2318 165904 0.8430 +2318 171024 0.8360 +2318 220965 0.4920 +2318 253980 0.7000 +2318 282996 0.6040 +2318 283807 0.5010 +2318 284119 0.4350 +2318 339855 0.7270 +2318 345456 0.6880 +2318 375189 0.6990 +2318 390594 0.4750 +2319 2534 0.5900 +2319 2776 0.4150 +2319 3303 0.4050 +2319 3304 0.4150 +2319 3326 0.5440 +2319 3728 0.6220 +2319 3916 0.4380 +2319 4162 0.4250 +2319 4609 0.4270 +2319 4627 0.4350 +2319 4650 0.4350 +2319 4763 0.4400 +2319 5245 0.5260 +2319 5348 0.5180 +2319 5585 0.4330 +2319 5586 0.4070 +2319 5862 0.4110 +2319 5914 0.4030 +2319 6093 0.4460 +2319 6386 0.4150 +2319 6521 0.4110 +2319 6531 0.9030 +2319 6714 0.5170 +2319 6793 0.4150 +2319 7037 0.6200 +2319 7251 0.5740 +2319 7357 0.4280 +2319 7879 0.4050 +2319 8411 0.4070 +2319 8723 0.5120 +2319 8766 0.6210 +2319 8773 0.5460 +2319 8826 0.4460 +2319 9146 0.4800 +2319 9341 0.5170 +2319 9414 0.4350 +2319 9475 0.6430 +2319 10211 0.9930 +2319 10580 0.9010 +2319 11021 0.4170 +2319 11113 0.5570 +2319 11160 0.6830 +2319 11315 0.5430 +2319 11331 0.4400 +2319 23002 0.4210 +2319 23385 0.4060 +2319 23603 0.7450 +2319 23621 0.4350 +2319 25874 0.5010 +2319 25921 0.6740 +2319 27289 0.5680 +2319 29941 0.4070 +2319 53635 0.7810 +2319 54443 0.7450 +2319 55914 0.4090 +2319 55970 0.4180 +2319 56650 0.4740 +2319 65124 0.4180 +2319 79414 0.7060 +2319 81624 0.4060 +2319 84283 0.5350 +2319 91010 0.4300 +2319 93380 0.5390 +2319 128866 0.5120 +2319 147015 0.4760 +2319 196264 0.7290 +2319 284119 0.6870 +2321 2322 0.5190 +2321 2323 0.7190 +2321 2324 0.9200 +2321 2335 0.5880 +2321 2353 0.5740 +2321 2475 0.4800 +2321 2534 0.6050 +2321 2597 0.5200 +2321 2833 0.4910 +2321 2885 0.9130 +2321 3055 0.6180 +2321 3082 0.9080 +2321 3091 0.7350 +2321 3308 0.5700 +2321 3320 0.5810 +2321 3326 0.5730 +2321 3339 0.4060 +2321 3383 0.5830 +2321 3399 0.4660 +2321 3441 0.5010 +2321 3442 0.5220 +2321 3443 0.5120 +2321 3444 0.5220 +2321 3445 0.5220 +2321 3446 0.5110 +2321 3448 0.5210 +2321 3449 0.5240 +2321 3452 0.5250 +2321 3458 0.4660 +2321 3479 0.8990 +2321 3480 0.4190 +2321 3481 0.8500 +2321 3486 0.4810 +2321 3552 0.4490 +2321 3553 0.5360 +2321 3558 0.5980 +2321 3565 0.4020 +2321 3569 0.6040 +2321 3570 0.5820 +2321 3574 0.5190 +2321 3576 0.8510 +2321 3577 0.5890 +2321 3579 0.6210 +2321 3586 0.4830 +2321 3630 0.8040 +2321 3667 0.7190 +2321 3684 0.6630 +2321 3688 0.7220 +2321 3725 0.4150 +2321 3757 0.8490 +2321 3759 0.4620 +2321 3791 0.9940 +2321 3827 0.4870 +2321 3845 0.5190 +2321 3910 0.4450 +2321 4015 0.6020 +2321 4067 0.4750 +2321 4162 0.4280 +2321 4254 0.8770 +2321 4283 0.5110 +2321 4312 0.4090 +2321 4313 0.7310 +2321 4318 0.7790 +2321 4323 0.6220 +2321 4609 0.4180 +2321 4684 0.4640 +2321 4690 0.6910 +2321 4773 0.4080 +2321 4803 0.7580 +2321 4804 0.5340 +2321 4811 0.4440 +2321 4846 0.6030 +2321 4851 0.4810 +2321 4853 0.4930 +2321 4855 0.4490 +2321 4908 0.7070 +2321 4909 0.6890 +2321 5045 0.5000 +2321 5054 0.4570 +2321 5069 0.5120 +2321 5154 0.8760 +2321 5155 0.9110 +2321 5156 0.4560 +2321 5159 0.5500 +2321 5175 0.8240 +2321 5228 0.9990 +2321 5281 0.5060 +2321 5290 0.8870 +2321 5291 0.9080 +2321 5293 0.7370 +2321 5295 0.9090 +2321 5296 0.7480 +2321 5328 0.4760 +2321 5330 0.6580 +2321 5331 0.6820 +2321 5332 0.6500 +2321 5335 0.7240 +2321 5340 0.5010 +2321 5361 0.5930 +2321 5468 0.6070 +2321 5594 0.4620 +2321 5663 0.4850 +2321 5728 0.5010 +2321 5743 0.4690 +2321 5747 0.9480 +2321 5754 0.4710 +2321 5781 0.7750 +2321 5787 0.6730 +2321 5788 0.5060 +2321 5795 0.5990 +2321 5894 0.5050 +2321 5970 0.4800 +2321 6280 0.4280 +2321 6347 0.7910 +2321 6348 0.4470 +2321 6387 0.8000 +2321 6401 0.5040 +2321 6464 0.8280 +2321 6513 0.4090 +2321 6615 0.4230 +2321 6678 0.6240 +2321 6696 0.4560 +2321 6714 0.5340 +2321 6732 0.4180 +2321 6774 0.7340 +2321 6850 0.4450 +2321 7010 0.4960 +2321 7039 0.8030 +2321 7040 0.7270 +2321 7043 0.5530 +2321 7057 0.5440 +2321 7070 0.4310 +2321 7075 0.4490 +2321 7076 0.4450 +2321 7078 0.5400 +2321 7098 0.5310 +2321 7122 0.4900 +2321 7124 0.6100 +2321 7133 0.5530 +2321 7137 0.4450 +2321 7157 0.6960 +2321 7248 0.4140 +2321 7294 0.4330 +2321 7423 0.9990 +2321 7424 0.9990 +2321 7425 0.4060 +2321 7450 0.6950 +2321 7852 0.7020 +2321 8074 0.7660 +2321 8503 0.7380 +2321 8600 0.5450 +2321 8817 0.8710 +2321 8822 0.8710 +2321 8823 0.8740 +2321 8828 0.9710 +2321 8829 0.9930 +2321 8842 0.5050 +2321 9068 0.4670 +2321 9077 0.4210 +2321 9235 0.4100 +2321 9402 0.4520 +2321 9723 0.5240 +2321 9965 0.8290 +2321 10112 0.4770 +2321 10371 0.6570 +2321 10398 0.4700 +2321 10451 0.4380 +2321 10630 0.4130 +2321 10643 0.4460 +2321 10763 0.4200 +2321 10894 0.5630 +2321 11082 0.4260 +2321 23236 0.6580 +2321 25759 0.8440 +2321 26281 0.8730 +2321 26291 0.7560 +2321 26524 0.4160 +2321 27006 0.8770 +2321 29124 0.4980 +2321 29126 0.5180 +2321 51129 0.6260 +2321 51162 0.4110 +2321 51378 0.7890 +2321 51705 0.5210 +2321 53358 0.7290 +2321 54431 0.4040 +2321 54538 0.5210 +2321 54567 0.7930 +2321 54583 0.4140 +2321 54742 0.5010 +2321 55635 0.4890 +2321 56034 0.9890 +2321 64344 0.4050 +2321 64754 0.5790 +2321 64805 0.4420 +2321 80310 0.8840 +2321 80781 0.7410 +2321 84168 0.5360 +2321 91584 0.6310 +2321 140885 0.4720 +2321 147798 0.4040 +2321 154796 0.5110 +2321 399694 0.7050 +2321 405754 0.4680 +2322 2323 0.9990 +2322 2335 0.5500 +2322 2475 0.4790 +2322 2526 0.5220 +2322 2534 0.5700 +2322 2597 0.4710 +2322 2623 0.6010 +2322 2624 0.6540 +2322 2625 0.4460 +2322 2672 0.4810 +2322 2767 0.5230 +2322 2776 0.4550 +2322 2778 0.5310 +2322 2829 0.4890 +2322 2885 0.9720 +2322 2887 0.6840 +2322 2908 0.5010 +2322 2919 0.5070 +2322 3002 0.5400 +2322 3055 0.7160 +2322 3082 0.7710 +2322 3091 0.4470 +2322 3105 0.5820 +2322 3107 0.5170 +2322 3122 0.4190 +2322 3205 0.6210 +2322 3265 0.7810 +2322 3320 0.6030 +2322 3326 0.4520 +2322 3394 0.6190 +2322 3398 0.4710 +2322 3417 0.8140 +2322 3418 0.7970 +2322 3439 0.4800 +2322 3458 0.6970 +2322 3479 0.7510 +2322 3480 0.5020 +2322 3481 0.7190 +2322 3553 0.4290 +2322 3558 0.6380 +2322 3561 0.6120 +2322 3562 0.8670 +2322 3563 0.6610 +2322 3565 0.4410 +2322 3569 0.5830 +2322 3574 0.7540 +2322 3575 0.8260 +2322 3586 0.4400 +2322 3600 0.4490 +2322 3630 0.7630 +2322 3662 0.4300 +2322 3667 0.6820 +2322 3674 0.5890 +2322 3682 0.5240 +2322 3684 0.7270 +2322 3687 0.6420 +2322 3717 0.4260 +2322 3845 0.8650 +2322 4005 0.4880 +2322 4065 0.4220 +2322 4067 0.4390 +2322 4089 0.4230 +2322 4170 0.6060 +2322 4193 0.4490 +2322 4211 0.5830 +2322 4233 0.5060 +2322 4254 0.9830 +2322 4292 0.4180 +2322 4297 0.6630 +2322 4298 0.5410 +2322 4299 0.5550 +2322 4300 0.6900 +2322 4301 0.4310 +2322 4311 0.4420 +2322 4318 0.5630 +2322 4330 0.5060 +2322 4352 0.5460 +2322 4353 0.5670 +2322 4356 0.5390 +2322 4609 0.5750 +2322 4629 0.6610 +2322 4684 0.5230 +2322 4763 0.5780 +2322 4803 0.7100 +2322 4851 0.6000 +2322 4869 0.9430 +2322 4893 0.9000 +2322 4908 0.6680 +2322 4909 0.6640 +2322 4914 0.5470 +2322 4928 0.5920 +2322 5079 0.7310 +2322 5087 0.4490 +2322 5154 0.7230 +2322 5155 0.7480 +2322 5156 0.4540 +2322 5175 0.4420 +2322 5228 0.7450 +2322 5289 0.5560 +2322 5290 0.9580 +2322 5291 0.9300 +2322 5293 0.9400 +2322 5294 0.4080 +2322 5295 0.9560 +2322 5296 0.9220 +2322 5335 0.4440 +2322 5599 0.4590 +2322 5688 0.6650 +2322 5725 0.6050 +2322 5728 0.6040 +2322 5781 0.8890 +2322 5787 0.4330 +2322 5788 0.7420 +2322 5795 0.9050 +2322 5885 0.5080 +2322 5896 0.4680 +2322 5914 0.7280 +2322 6233 0.5410 +2322 6356 0.5200 +2322 6376 0.5190 +2322 6387 0.4960 +2322 6402 0.4180 +2322 6427 0.6700 +2322 6464 0.7860 +2322 6503 0.7960 +2322 6504 0.8390 +2322 6598 0.4880 +2322 6654 0.5320 +2322 6688 0.9650 +2322 6693 0.5180 +2322 6714 0.6490 +2322 6772 0.4030 +2322 6774 0.9710 +2322 6776 0.9700 +2322 6777 0.9700 +2322 6790 0.4680 +2322 6850 0.7870 +2322 6886 0.4730 +2322 6929 0.5090 +2322 7037 0.4850 +2322 7039 0.7330 +2322 7066 0.6840 +2322 7070 0.5000 +2322 7124 0.4700 +2322 7157 0.7220 +2322 7292 0.5010 +2322 7307 0.6960 +2322 7311 0.4990 +2322 7314 0.5040 +2322 7316 0.6640 +2322 7403 0.4110 +2322 7409 0.4120 +2322 7423 0.7720 +2322 7424 0.8420 +2322 7490 0.7660 +2322 7704 0.4210 +2322 7852 0.5270 +2322 7913 0.4960 +2322 8021 0.4970 +2322 8028 0.4790 +2322 8074 0.7580 +2322 8233 0.6600 +2322 8243 0.5550 +2322 8503 0.9200 +2322 8639 0.5750 +2322 8651 0.6190 +2322 8817 0.7930 +2322 8822 0.7910 +2322 8823 0.8010 +2322 8835 0.8740 +2322 8842 0.6100 +2322 9126 0.5050 +2322 9212 0.6060 +2322 9306 0.6720 +2322 9402 0.5750 +2322 9846 0.7230 +2322 9965 0.7500 +2322 10018 0.4350 +2322 10019 0.7770 +2322 10311 0.4140 +2322 10320 0.6520 +2322 10584 0.4530 +2322 10735 0.6090 +2322 11025 0.4150 +2322 11040 0.4570 +2322 22806 0.5290 +2322 25759 0.6930 +2322 26040 0.6210 +2322 26281 0.8010 +2322 26291 0.7120 +2322 27006 0.8040 +2322 29126 0.4840 +2322 30012 0.5180 +2322 30849 0.5080 +2322 51284 0.5720 +2322 51378 0.6990 +2322 51744 0.4480 +2322 53358 0.7080 +2322 54106 0.6850 +2322 54790 0.8520 +2322 55252 0.4350 +2322 55294 0.5800 +2322 55509 0.5560 +2322 56034 0.7230 +2322 57591 0.4460 +2322 63035 0.5070 +2322 64324 0.4470 +2322 64783 0.5250 +2322 65258 0.5060 +2322 79870 0.6730 +2322 80310 0.7090 +2322 81608 0.4840 +2322 84174 0.5720 +2322 84295 0.7800 +2322 84444 0.4470 +2322 84922 0.7950 +2322 85480 0.6530 +2322 114548 0.4610 +2322 140685 0.6120 +2322 140885 0.5400 +2322 160364 0.5690 +2322 161882 0.4290 +2322 171023 0.8610 +2322 222484 0.4240 +2322 283420 0.4790 +2322 286530 0.5260 +2322 399694 0.6880 +2322 100133941 0.4630 +2322 100526664 0.4120 +2322 100532731 0.5160 +2322 102723407 0.4470 +2323 2324 0.6840 +2323 2475 0.4590 +2323 2534 0.5030 +2323 2597 0.5760 +2323 2623 0.4010 +2323 2672 0.4060 +2323 2794 0.4550 +2323 2829 0.5290 +2323 2885 0.5020 +2323 2887 0.5130 +2323 2919 0.8270 +2323 2993 0.5050 +2323 3055 0.5580 +2323 3150 0.8270 +2323 3151 0.8270 +2323 3214 0.4300 +2323 3265 0.5710 +2323 3283 0.4380 +2323 3284 0.4380 +2323 3394 0.6030 +2323 3396 0.7540 +2323 3398 0.4490 +2323 3430 0.9180 +2323 3439 0.5710 +2323 3440 0.7960 +2323 3456 0.6080 +2323 3458 0.8010 +2323 3475 0.5170 +2323 3480 0.6800 +2323 3552 0.5050 +2323 3553 0.5140 +2323 3558 0.6310 +2323 3561 0.4380 +2323 3562 0.9680 +2323 3563 0.5080 +2323 3565 0.7460 +2323 3567 0.7210 +2323 3569 0.8410 +2323 3574 0.8510 +2323 3575 0.7460 +2323 3576 0.4760 +2323 3578 0.6820 +2323 3586 0.5800 +2323 3589 0.7260 +2323 3596 0.6790 +2323 3600 0.6900 +2323 3605 0.5070 +2323 3606 0.4200 +2323 3620 0.4210 +2323 3627 0.5590 +2323 3643 0.6600 +2323 3658 0.4450 +2323 3662 0.4700 +2323 3674 0.4910 +2323 3682 0.7800 +2323 3684 0.7110 +2323 3687 0.7410 +2323 3692 0.8600 +2323 3700 0.4600 +2323 3703 0.6140 +2323 3735 0.5320 +2323 3736 0.4570 +2323 3737 0.4570 +2323 3738 0.4820 +2323 3739 0.4570 +2323 3741 0.4580 +2323 3742 0.4570 +2323 3743 0.4670 +2323 3744 0.4590 +2323 3745 0.4570 +2323 3746 0.4570 +2323 3747 0.4570 +2323 3748 0.4680 +2323 3749 0.4620 +2323 3750 0.4610 +2323 3751 0.4570 +2323 3752 0.4570 +2323 3754 0.4570 +2323 3755 0.4580 +2323 3784 0.4600 +2323 3785 0.4570 +2323 3786 0.4590 +2323 3787 0.4570 +2323 3788 0.4570 +2323 3790 0.4570 +2323 3791 0.7510 +2323 3815 0.9500 +2323 3820 0.5750 +2323 3845 0.6220 +2323 3921 0.9770 +2323 4049 0.7300 +2323 4065 0.5120 +2323 4141 0.5350 +2323 4145 0.6240 +2323 4233 0.6860 +2323 4254 0.9820 +2323 4283 0.4530 +2323 4300 0.4190 +2323 4508 0.5820 +2323 4528 0.7720 +2323 4602 0.4460 +2323 4666 0.6040 +2323 4684 0.4770 +2323 4706 0.6870 +2323 4733 0.4580 +2323 4736 0.9330 +2323 4738 0.4480 +2323 4804 0.7060 +2323 4809 0.6740 +2323 4830 0.4540 +2323 4831 0.4540 +2323 4832 0.4710 +2323 4833 0.4580 +2323 4839 0.5500 +2323 4893 0.6520 +2323 4914 0.9120 +2323 4915 0.6600 +2323 5036 0.8730 +2323 5037 0.5130 +2323 5156 0.7180 +2323 5159 0.7220 +2323 5289 0.4990 +2323 5290 0.4310 +2323 5295 0.4280 +2323 5313 0.5940 +2323 5315 0.5930 +2323 5431 0.7480 +2323 5432 0.8170 +2323 5435 0.7760 +2323 5441 0.6570 +2323 5464 0.6120 +2323 5469 0.9360 +2323 5551 0.4290 +2323 5595 0.4810 +2323 5599 0.5090 +2323 5601 0.4910 +2323 5688 0.6550 +2323 5728 0.4690 +2323 5781 0.5820 +2323 5788 0.7470 +2323 5795 0.7870 +2323 5859 0.7120 +2323 5886 0.4520 +2323 5887 0.4480 +2323 5896 0.7230 +2323 5917 0.5670 +2323 5920 0.4210 +2323 6122 0.9400 +2323 6123 0.9400 +2323 6124 0.9790 +2323 6125 0.9810 +2323 6128 0.9810 +2323 6129 0.9330 +2323 6130 0.9770 +2323 6132 0.9810 +2323 6133 0.9790 +2323 6135 0.9810 +2323 6136 0.9770 +2323 6137 0.9780 +2323 6138 0.9780 +2323 6139 0.9350 +2323 6141 0.9810 +2323 6142 0.9770 +2323 6143 0.9780 +2323 6144 0.9750 +2323 6146 0.8970 +2323 6147 0.9810 +2323 6150 0.7120 +2323 6152 0.9760 +2323 6154 0.9360 +2323 6155 0.9770 +2323 6156 0.9780 +2323 6157 0.9740 +2323 6158 0.9770 +2323 6159 0.9690 +2323 6160 0.9790 +2323 6161 0.9780 +2323 6164 0.9800 +2323 6165 0.9740 +2323 6166 0.8500 +2323 6167 0.9740 +2323 6168 0.9770 +2323 6169 0.9760 +2323 6170 0.9300 +2323 6173 0.8500 +2323 6175 0.9780 +2323 6176 0.9660 +2323 6181 0.9620 +2323 6182 0.9690 +2323 6183 0.8880 +2323 6184 0.4290 +2323 6187 0.9810 +2323 6188 0.9820 +2323 6189 0.9780 +2323 6191 0.8540 +2323 6192 0.8540 +2323 6193 0.9780 +2323 6194 0.9770 +2323 6201 0.9730 +2323 6202 0.9750 +2323 6203 0.9790 +2323 6204 0.9350 +2323 6205 0.9810 +2323 6206 0.9750 +2323 6207 0.9800 +2323 6208 0.9390 +2323 6209 0.9810 +2323 6210 0.8470 +2323 6217 0.9770 +2323 6218 0.9740 +2323 6222 0.9820 +2323 6223 0.9810 +2323 6224 0.9790 +2323 6227 0.9790 +2323 6228 0.9790 +2323 6229 0.9790 +2323 6230 0.9800 +2323 6231 0.9790 +2323 6232 0.9340 +2323 6233 0.9860 +2323 6234 0.9810 +2323 6235 0.9770 +2323 6283 0.4090 +2323 6347 0.4820 +2323 6348 0.5640 +2323 6351 0.5430 +2323 6354 0.5070 +2323 6356 0.9060 +2323 6364 0.4240 +2323 6367 0.6160 +2323 6372 0.4550 +2323 6375 0.4970 +2323 6376 0.8890 +2323 6387 0.4800 +2323 6391 0.4070 +2323 6402 0.4590 +2323 6499 0.4260 +2323 6503 0.5330 +2323 6504 0.5500 +2323 6648 0.6570 +2323 6654 0.4280 +2323 6687 0.5390 +2323 6688 0.5180 +2323 6689 0.5900 +2323 6693 0.5660 +2323 6726 0.4070 +2323 6728 0.4340 +2323 6729 0.8640 +2323 6730 0.4480 +2323 6734 0.6140 +2323 6742 0.5150 +2323 6774 0.7950 +2323 6776 0.7250 +2323 6777 0.7100 +2323 6850 0.6400 +2323 6894 0.5010 +2323 6924 0.4540 +2323 6925 0.4370 +2323 7010 0.7290 +2323 7039 0.4800 +2323 7040 0.4080 +2323 7056 0.4900 +2323 7066 0.9680 +2323 7070 0.4470 +2323 7098 0.4880 +2323 7099 0.4550 +2323 7124 0.6140 +2323 7178 0.7030 +2323 7264 0.4380 +2323 7284 0.9630 +2323 7311 0.9880 +2323 7314 0.7670 +2323 7316 0.7900 +2323 7386 0.4900 +2323 7407 0.6060 +2323 7818 0.8000 +2323 7852 0.4900 +2323 7866 0.5170 +2323 8225 0.7080 +2323 8266 0.5390 +2323 8382 0.4540 +2323 8565 0.5960 +2323 8568 0.5230 +2323 8624 0.6170 +2323 8638 0.5510 +2323 8639 0.5500 +2323 8721 0.8030 +2323 8833 0.4350 +2323 8835 0.5910 +2323 8842 0.4160 +2323 8886 0.7910 +2323 9045 0.9810 +2323 9086 0.6970 +2323 9132 0.4620 +2323 9147 0.4740 +2323 9306 0.5290 +2323 9308 0.4650 +2323 9312 0.4570 +2323 9343 0.8050 +2323 9349 0.9810 +2323 9402 0.5420 +2323 9465 0.4630 +2323 9533 0.8170 +2323 9553 0.9690 +2323 9617 0.5300 +2323 9636 0.5780 +2323 9669 0.9070 +2323 9732 0.9320 +2323 9801 0.9710 +2323 9846 0.4860 +2323 9858 0.7740 +2323 10019 0.5650 +2323 10056 0.4650 +2323 10061 0.5330 +2323 10102 0.7470 +2323 10135 0.5300 +2323 10201 0.4580 +2323 10212 0.6960 +2323 10320 0.4990 +2323 10399 0.9730 +2323 10412 0.8170 +2323 10473 0.8290 +2323 10537 0.5470 +2323 10538 0.5130 +2323 10557 0.6740 +2323 10666 0.6290 +2323 10730 0.5390 +2323 10939 0.5390 +2323 10952 0.5250 +2323 10964 0.4420 +2323 10969 0.7700 +2323 10985 0.7820 +2323 10988 0.6560 +2323 11128 0.4830 +2323 11222 0.8350 +2323 11224 0.9810 +2323 22927 0.7730 +2323 22982 0.4120 +2323 22984 0.9340 +2323 23076 0.5260 +2323 23148 0.6040 +2323 23173 0.6730 +2323 23181 0.4170 +2323 23204 0.8470 +2323 23246 0.7340 +2323 23252 0.7200 +2323 23405 0.6360 +2323 23480 0.4200 +2323 23481 0.7770 +2323 23517 0.4410 +2323 23560 0.8100 +2323 23640 0.7740 +2323 23732 0.5710 +2323 23770 0.4250 +2323 24140 0.4140 +2323 25873 0.9780 +2323 25885 0.4830 +2323 26135 0.8510 +2323 26155 0.7680 +2323 26156 0.7950 +2323 26251 0.4590 +2323 26271 0.5300 +2323 26354 0.6090 +2323 26589 0.8210 +2323 26995 0.4660 +2323 27012 0.4570 +2323 27068 0.6100 +2323 27079 0.4960 +2323 27430 0.4380 +2323 28514 0.5060 +2323 28991 0.4760 +2323 29083 0.6380 +2323 29088 0.5800 +2323 29093 0.8350 +2323 29102 0.6240 +2323 29126 0.4600 +2323 29789 0.5200 +2323 29889 0.5010 +2323 29922 0.4540 +2323 29927 0.8590 +2323 29960 0.4120 +2323 29978 0.4490 +2323 29979 0.4480 +2323 29997 0.7750 +2323 30849 0.4990 +2323 50487 0.4970 +2323 50489 0.4360 +2323 50613 0.4480 +2323 50814 0.4380 +2323 50943 0.4790 +2323 51008 0.4630 +2323 51018 0.4220 +2323 51021 0.9710 +2323 51023 0.6170 +2323 51042 0.5110 +2323 51065 0.9340 +2323 51068 0.5360 +2323 51069 0.8370 +2323 51073 0.8380 +2323 51081 0.8660 +2323 51116 0.7770 +2323 51119 0.4880 +2323 51121 0.9360 +2323 51149 0.9370 +2323 51154 0.9310 +2323 51187 0.8610 +2323 51224 0.4540 +2323 51263 0.6160 +2323 51264 0.9710 +2323 51284 0.5610 +2323 51314 0.4670 +2323 51319 0.9250 +2323 51388 0.7450 +2323 51398 0.4480 +2323 51720 0.4970 +2323 54059 0.5800 +2323 54106 0.7520 +2323 54464 0.4300 +2323 54516 0.5300 +2323 54517 0.5150 +2323 54552 0.6090 +2323 54663 0.7580 +2323 54948 0.7730 +2323 55052 0.9700 +2323 55157 0.4540 +2323 55168 0.6170 +2323 55173 0.8880 +2323 55176 0.8550 +2323 55178 0.5030 +2323 55272 0.8910 +2323 55278 0.4660 +2323 55299 0.7390 +2323 55316 0.9180 +2323 55324 0.5340 +2323 55341 0.5160 +2323 55509 0.6590 +2323 55591 0.6560 +2323 55651 0.6760 +2323 55703 0.7480 +2323 55759 0.7760 +2323 55854 0.4380 +2323 55893 0.4980 +2323 56474 0.4750 +2323 56479 0.4570 +2323 56648 0.8310 +2323 56731 0.5080 +2323 56893 0.4480 +2323 56965 0.5930 +2323 57038 0.5600 +2323 57129 0.8080 +2323 57418 0.4420 +2323 57470 0.4650 +2323 57471 0.4860 +2323 57609 0.4120 +2323 57696 0.5020 +2323 58505 0.4290 +2323 59067 0.4190 +2323 60488 0.8130 +2323 60558 0.7200 +2323 63875 0.9710 +2323 63931 0.8360 +2323 64146 0.7780 +2323 64318 0.7580 +2323 64374 0.7730 +2323 64432 0.6040 +2323 64960 0.8350 +2323 64963 0.8360 +2323 64965 0.9710 +2323 64968 0.9690 +2323 64969 0.8880 +2323 64975 0.8300 +2323 64976 0.8230 +2323 64978 0.5240 +2323 64979 0.9700 +2323 64981 0.8300 +2323 64983 0.9680 +2323 65003 0.7700 +2323 65005 0.9690 +2323 65008 0.8280 +2323 65080 0.6160 +2323 65121 0.5800 +2323 65122 0.5800 +2323 65258 0.6240 +2323 65993 0.4540 +2323 79036 0.4290 +2323 79159 0.4420 +2323 79590 0.8350 +2323 79631 0.8050 +2323 79668 0.5940 +2323 79728 0.6870 +2323 79922 0.5010 +2323 80135 0.7870 +2323 80146 0.4380 +2323 80270 0.4500 +2323 83448 0.5150 +2323 84154 0.5560 +2323 84172 0.7480 +2323 84174 0.5570 +2323 84273 0.4400 +2323 84324 0.4220 +2323 84340 0.4750 +2323 84365 0.7280 +2323 84545 0.8250 +2323 84549 0.7180 +2323 84705 0.6720 +2323 84851 0.4460 +2323 84881 0.4860 +2323 84993 0.4510 +2323 85476 0.8050 +2323 90313 0.5300 +2323 90624 0.4310 +2323 91574 0.5450 +2323 91875 0.5030 +2323 92170 0.4390 +2323 92196 0.6180 +2323 92399 0.9350 +2323 93107 0.4570 +2323 93517 0.4430 +2323 93550 0.5390 +2323 113000 0.4990 +2323 114781 0.4290 +2323 114987 0.8830 +2323 115416 0.7960 +2323 116541 0.5420 +2323 116832 0.9300 +2323 117246 0.7710 +2323 124454 0.7100 +2323 124995 0.5810 +2323 126402 0.8660 +2323 140032 0.8540 +2323 140685 0.5490 +2323 140801 0.9300 +2323 140885 0.5290 +2323 142940 0.4690 +2323 143244 0.8310 +2323 143630 0.4520 +2323 146212 0.5670 +2323 147011 0.4970 +2323 149478 0.4210 +2323 154288 0.4970 +2323 157310 0.5120 +2323 164153 0.5390 +2323 168400 0.4950 +2323 169522 0.4570 +2323 170482 0.4810 +2323 170850 0.4570 +2323 200916 0.8960 +2323 201595 0.6140 +2323 219927 0.9710 +2323 221078 0.5500 +2323 254268 0.8610 +2323 283420 0.5280 +2323 283518 0.4570 +2323 285367 0.4870 +2323 285855 0.9330 +2323 342538 0.6050 +2323 343068 0.5800 +2323 343070 0.5800 +2323 345051 0.5710 +2323 345630 0.7840 +2323 347487 0.9340 +2323 374659 0.8190 +2323 387129 0.8710 +2323 387712 0.4670 +2323 390999 0.5800 +2323 391002 0.5800 +2323 400735 0.5800 +2323 400736 0.5800 +2323 440560 0.5800 +2323 440561 0.5800 +2323 441873 0.5800 +2323 619279 0.4970 +2323 641776 0.6880 +2323 642987 0.4970 +2323 643909 0.6880 +2323 645051 0.6560 +2323 645073 0.6560 +2323 645359 0.5800 +2323 653619 0.5800 +2323 654364 0.4540 +2323 728524 0.6880 +2323 729396 0.6560 +2323 729422 0.6560 +2323 729428 0.6560 +2323 729431 0.6560 +2323 729442 0.6560 +2323 729447 0.6560 +2323 729528 0.5800 +2323 100008586 0.6560 +2323 100128731 0.4320 +2323 100130890 0.4910 +2323 100131187 0.4910 +2323 100132399 0.6560 +2323 100133941 0.4450 +2323 100287482 0.7740 +2323 100505478 0.8050 +2323 100526664 0.5110 +2323 100526842 0.9350 +2323 100529097 0.8500 +2323 100529239 0.9350 +2323 100996746 0.6880 +2323 101929983 0.5800 +2323 102724473 0.6560 +2323 105180390 0.6880 +2323 105180391 0.6880 +2323 114483834 0.5330 +2324 2335 0.4800 +2324 2475 0.4210 +2324 2534 0.4310 +2324 2597 0.4080 +2324 2701 0.4320 +2324 2885 0.9790 +2324 3082 0.8860 +2324 3091 0.5990 +2324 3320 0.5940 +2324 3326 0.5940 +2324 3397 0.4900 +2324 3441 0.4890 +2324 3442 0.5000 +2324 3443 0.4990 +2324 3444 0.4990 +2324 3445 0.4990 +2324 3446 0.5020 +2324 3448 0.4990 +2324 3449 0.5040 +2324 3452 0.4990 +2324 3479 0.7780 +2324 3480 0.5480 +2324 3481 0.7420 +2324 3516 0.7750 +2324 3569 0.4410 +2324 3630 0.7570 +2324 3667 0.6940 +2324 3678 0.5910 +2324 3680 0.6670 +2324 3688 0.6680 +2324 3791 0.9940 +2324 3845 0.4420 +2324 4005 0.4540 +2324 4193 0.4420 +2324 4233 0.4720 +2324 4254 0.8460 +2324 4318 0.4710 +2324 4803 0.7180 +2324 4846 0.4350 +2324 4851 0.4320 +2324 4855 0.6980 +2324 4881 0.4730 +2324 4908 0.6950 +2324 4909 0.6990 +2324 5154 0.8520 +2324 5155 0.8770 +2324 5175 0.9400 +2324 5228 0.9980 +2324 5290 0.8100 +2324 5291 0.7350 +2324 5293 0.7260 +2324 5295 0.8530 +2324 5296 0.7410 +2324 5330 0.6870 +2324 5331 0.6660 +2324 5332 0.6540 +2324 5629 0.7780 +2324 5728 0.4270 +2324 5747 0.9210 +2324 5784 0.7060 +2324 5787 0.4810 +2324 5788 0.6120 +2324 6355 0.4660 +2324 6357 0.4410 +2324 6366 0.5260 +2324 6385 0.5010 +2324 6387 0.6760 +2324 6464 0.9740 +2324 6714 0.7080 +2324 6774 0.4390 +2324 7026 0.5210 +2324 7039 0.7760 +2324 7040 0.4230 +2324 7078 0.4810 +2324 7094 0.4610 +2324 7122 0.4170 +2324 7124 0.4760 +2324 7157 0.4430 +2324 7412 0.4020 +2324 7423 0.9990 +2324 7424 0.9990 +2324 7450 0.5540 +2324 7472 0.5460 +2324 7474 0.4140 +2324 7852 0.4380 +2324 8074 0.7550 +2324 8503 0.7200 +2324 8817 0.9090 +2324 8822 0.9100 +2324 8823 0.9120 +2324 8828 0.9920 +2324 8829 0.7890 +2324 9172 0.4970 +2324 9509 0.4070 +2324 9564 0.4410 +2324 9794 0.5630 +2324 9965 0.7720 +2324 10046 0.4990 +2324 10232 0.4930 +2324 10252 0.4050 +2324 10630 0.7730 +2324 10894 0.9400 +2324 11082 0.4920 +2324 11317 0.4740 +2324 23236 0.6590 +2324 23462 0.4230 +2324 23493 0.5780 +2324 25759 0.7080 +2324 26281 0.9100 +2324 26291 0.7590 +2324 27006 0.9150 +2324 29126 0.4020 +2324 51129 0.5290 +2324 51378 0.7940 +2324 51705 0.5430 +2324 53358 0.7080 +2324 54345 0.8090 +2324 54567 0.8220 +2324 55534 0.5390 +2324 56034 0.9910 +2324 57165 0.6600 +2324 79652 0.6180 +2324 79705 0.4420 +2324 80310 0.7350 +2324 80781 0.7760 +2324 83483 0.4230 +2324 84168 0.4570 +2324 84364 0.4100 +2324 84441 0.5430 +2324 120939 0.4140 +2324 128209 0.4380 +2324 147372 0.6630 +2324 161198 0.6110 +2324 168667 0.4160 +2324 399694 0.8180 +2326 2329 0.4450 +2326 4046 0.4330 +2326 8702 0.4570 +2326 10362 0.4300 +2326 51362 0.4670 +2327 2328 0.4050 +2327 55143 0.4110 +2327 142910 0.4230 +2327 340654 0.4050 +2328 2692 0.4080 +2328 3290 0.5670 +2328 5243 0.4950 +2328 7363 0.4670 +2328 7364 0.4430 +2328 7365 0.5380 +2328 7366 0.4280 +2328 7367 0.4330 +2328 8856 0.5480 +2328 9038 0.5300 +2328 9360 0.4800 +2328 9971 0.4960 +2328 10720 0.4360 +2328 51076 0.6320 +2328 54490 0.4010 +2328 54575 0.5710 +2328 54576 0.5670 +2328 54577 0.5640 +2328 54578 0.5870 +2328 54579 0.5570 +2328 54600 0.5690 +2328 54657 0.6220 +2328 54658 0.5800 +2328 54659 0.5690 +2328 79799 0.5550 +2328 133688 0.4070 +2328 145264 0.4840 +2328 148523 0.4020 +2328 167127 0.4350 +2329 29785 0.4110 +2329 142910 0.4230 +2329 340654 0.4050 +2330 2702 0.7240 +2330 2703 0.5480 +2330 2946 0.4180 +2330 3067 0.4920 +2330 4881 0.6520 +2330 5241 0.5610 +2330 5565 0.6050 +2330 5925 0.6920 +2330 8554 0.4280 +2330 8856 0.4110 +2330 9557 0.6790 +2330 9612 0.4240 +2330 51205 0.7040 +2330 51463 0.6720 +2330 54361 0.4390 +2330 79154 0.5080 +2330 113612 0.4110 +2330 145258 0.4370 +2330 200030 0.6540 +2330 653519 0.5770 +2331 2335 0.9070 +2331 2615 0.4500 +2331 2683 0.4140 +2331 3075 0.5660 +2331 3339 0.8100 +2331 3381 0.4020 +2331 3479 0.6630 +2331 3488 0.4360 +2331 3586 0.4240 +2331 3672 0.4440 +2331 4015 0.7080 +2331 4016 0.4570 +2331 4034 0.4450 +2331 4053 0.4340 +2331 4060 0.8860 +2331 4148 0.4110 +2331 4166 0.4660 +2331 4237 0.4610 +2331 4239 0.4570 +2331 4256 0.5750 +2331 4312 0.4290 +2331 4313 0.4210 +2331 4314 0.5130 +2331 4322 0.5360 +2331 4327 0.4220 +2331 4790 0.4770 +2331 4958 0.7880 +2331 4969 0.8180 +2331 4974 0.5090 +2331 5008 0.4830 +2331 5118 0.4880 +2331 5176 0.5310 +2331 5510 0.5240 +2331 5549 0.8110 +2331 5654 0.4260 +2331 5764 0.4310 +2331 6484 0.4280 +2331 6487 0.4310 +2331 6649 0.4140 +2331 6662 0.4430 +2331 6678 0.6460 +2331 7040 0.9760 +2331 7042 0.6790 +2331 7043 0.9520 +2331 7057 0.4860 +2331 7058 0.4950 +2331 7060 0.5960 +2331 7076 0.4140 +2331 7373 0.6050 +2331 7450 0.4180 +2331 8200 0.4430 +2331 8483 0.6030 +2331 8534 0.4470 +2331 8702 0.4860 +2331 8704 0.4100 +2331 8722 0.4060 +2331 9124 0.4010 +2331 9435 0.4750 +2331 9507 0.5380 +2331 9508 0.5350 +2331 10216 0.5130 +2331 10516 0.5090 +2331 10631 0.6280 +2331 10678 0.4250 +2331 11081 0.5760 +2331 11096 0.5050 +2331 22859 0.5140 +2331 23266 0.5190 +2331 23284 0.5430 +2331 23563 0.4440 +2331 27286 0.4450 +2331 54829 0.5190 +2331 55222 0.4060 +2331 55379 0.4490 +2331 63827 0.6510 +2331 64094 0.5220 +2331 64102 0.7690 +2331 79442 0.5080 +2331 93010 0.4460 +2331 116064 0.5000 +2331 122769 0.6550 +2331 123355 0.4710 +2331 127435 0.4410 +2331 221044 0.4510 +2331 283078 0.6390 +2331 339291 0.5170 +2331 375387 0.5170 +2331 376132 0.5160 +2331 474354 0.5010 +2331 642658 0.5300 +2332 2334 0.9500 +2332 2395 0.5760 +2332 2475 0.5080 +2332 2492 0.5630 +2332 2521 0.8240 +2332 2550 0.4310 +2332 2556 0.5890 +2332 2562 0.5200 +2332 2571 0.4120 +2332 2597 0.4660 +2332 2628 0.4180 +2332 2664 0.4900 +2332 2890 0.7460 +2332 2891 0.5070 +2332 2903 0.5560 +2332 2904 0.5550 +2332 2908 0.5600 +2332 2911 0.5780 +2332 2915 0.8740 +2332 2918 0.4090 +2332 3021 0.6130 +2332 3064 0.6870 +2332 3178 0.7020 +2332 3181 0.8900 +2332 3182 0.6130 +2332 3183 0.7700 +2332 3184 0.4220 +2332 3188 0.6570 +2332 3190 0.7400 +2332 3192 0.6360 +2332 3276 0.4400 +2332 3423 0.4980 +2332 3433 0.4010 +2332 3485 0.6060 +2332 3746 0.6120 +2332 3751 0.5980 +2332 3754 0.5970 +2332 3755 0.8760 +2332 3778 0.5790 +2332 3797 0.7190 +2332 3798 0.5330 +2332 3799 0.5330 +2332 3856 0.4220 +2332 3897 0.4670 +2332 3960 0.4160 +2332 3980 0.4190 +2332 3984 0.4520 +2332 4000 0.4660 +2332 4076 0.9440 +2332 4116 0.6860 +2332 4131 0.9570 +2332 4137 0.5930 +2332 4154 0.7470 +2332 4204 0.9190 +2332 4287 0.4010 +2332 4343 0.8920 +2332 4609 0.4960 +2332 4644 0.8280 +2332 4659 0.4220 +2332 4686 0.7980 +2332 4690 0.5500 +2332 4691 0.7440 +2332 4763 0.4730 +2332 4857 0.5980 +2332 4858 0.6020 +2332 4899 0.4380 +2332 4904 0.8400 +2332 4915 0.4260 +2332 4983 0.5420 +2332 5020 0.4160 +2332 5062 0.4480 +2332 5093 0.6900 +2332 5094 0.6010 +2332 5158 0.5020 +2332 5216 0.4330 +2332 5317 0.7270 +2332 5454 0.5740 +2332 5515 0.5500 +2332 5613 0.4350 +2332 5725 0.4090 +2332 5728 0.5450 +2332 5813 0.9860 +2332 5816 0.5170 +2332 5879 0.4090 +2332 5914 0.4910 +2332 5976 0.6360 +2332 6125 0.6290 +2332 6175 0.4630 +2332 6198 0.4250 +2332 6310 0.4240 +2332 6311 0.9010 +2332 6314 0.4970 +2332 6323 0.6200 +2332 6326 0.4470 +2332 6405 0.6600 +2332 6426 0.5730 +2332 6427 0.4750 +2332 6500 0.4220 +2332 6535 0.5350 +2332 6538 0.4520 +2332 6595 0.4080 +2332 6606 0.4970 +2332 6607 0.4850 +2332 6622 0.4750 +2332 6638 0.4180 +2332 6647 0.5540 +2332 6667 0.4120 +2332 6741 0.4730 +2332 6768 0.5610 +2332 6780 0.9660 +2332 6792 0.6420 +2332 6853 0.4750 +2332 6854 0.4120 +2332 6908 0.5490 +2332 7072 0.8050 +2332 7073 0.9040 +2332 7247 0.5420 +2332 7248 0.4870 +2332 7249 0.6190 +2332 7329 0.4040 +2332 7337 0.8070 +2332 7391 0.5220 +2332 7514 0.6610 +2332 7532 0.4600 +2332 7538 0.5180 +2332 7555 0.4800 +2332 7586 0.4990 +2332 7812 0.5570 +2332 7884 0.4430 +2332 7916 0.6760 +2332 8087 0.9920 +2332 8106 0.4050 +2332 8139 0.4280 +2332 8218 0.4290 +2332 8224 0.4120 +2332 8241 0.4610 +2332 8290 0.6100 +2332 8356 0.6090 +2332 8361 0.4100 +2332 8450 0.5370 +2332 8545 0.8860 +2332 8570 0.4360 +2332 8573 0.4230 +2332 8575 0.6710 +2332 8662 0.6980 +2332 8663 0.4740 +2332 8731 0.7320 +2332 8831 0.6860 +2332 8936 0.4080 +2332 8940 0.6900 +2332 9146 0.4460 +2332 9210 0.7770 +2332 9229 0.4230 +2332 9271 0.6740 +2332 9275 0.4630 +2332 9378 0.6770 +2332 9379 0.5380 +2332 9444 0.4350 +2332 9456 0.6070 +2332 9470 0.7360 +2332 9513 0.9950 +2332 9589 0.6230 +2332 9625 0.4420 +2332 9698 0.4220 +2332 9755 0.4220 +2332 9774 0.6510 +2332 9775 0.8430 +2332 9898 0.5150 +2332 9908 0.8430 +2332 9939 0.4160 +2332 9971 0.5150 +2332 9972 0.4530 +2332 9987 0.6870 +2332 10006 0.4600 +2332 10048 0.5970 +2332 10084 0.4290 +2332 10128 0.6230 +2332 10146 0.9340 +2332 10150 0.4680 +2332 10204 0.5050 +2332 10236 0.6830 +2332 10241 0.4390 +2332 10243 0.4520 +2332 10273 0.4220 +2332 10419 0.4980 +2332 10479 0.4180 +2332 10482 0.6430 +2332 10492 0.5090 +2332 10642 0.8090 +2332 10643 0.5420 +2332 10644 0.6810 +2332 10657 0.7030 +2332 10658 0.7060 +2332 10664 0.4160 +2332 10989 0.4230 +2332 11060 0.5460 +2332 11100 0.4360 +2332 11127 0.4690 +2332 11187 0.7220 +2332 11218 0.7380 +2332 11273 0.4530 +2332 11338 0.5100 +2332 22794 0.4020 +2332 22829 0.4710 +2332 22849 0.8810 +2332 22871 0.7080 +2332 22916 0.7840 +2332 22927 0.8050 +2332 22941 0.6490 +2332 23034 0.4910 +2332 23049 0.4200 +2332 23091 0.6540 +2332 23191 0.9990 +2332 23215 0.4650 +2332 23237 0.7430 +2332 23245 0.4440 +2332 23264 0.4630 +2332 23367 0.5100 +2332 23369 0.8510 +2332 23394 0.4150 +2332 23405 0.9910 +2332 23435 0.9530 +2332 23476 0.4210 +2332 23636 0.4090 +2332 25814 0.5090 +2332 25948 0.5370 +2332 25962 0.6340 +2332 25983 0.4530 +2332 26047 0.6260 +2332 26065 0.8260 +2332 26135 0.8460 +2332 26523 0.9830 +2332 26747 0.9700 +2332 26986 0.7510 +2332 26999 0.9990 +2332 27044 0.9630 +2332 27067 0.7390 +2332 27161 0.9980 +2332 27185 0.5070 +2332 27316 0.7430 +2332 27327 0.8330 +2332 28985 0.4650 +2332 29102 0.6020 +2332 29107 0.4390 +2332 29110 0.5310 +2332 29890 0.6280 +2332 30000 0.4010 +2332 50618 0.4400 +2332 50944 0.5930 +2332 51362 0.4630 +2332 51441 0.8840 +2332 51592 0.4720 +2332 51725 0.4340 +2332 54209 0.4140 +2332 54413 0.8170 +2332 54464 0.6300 +2332 54487 0.8310 +2332 54715 0.5010 +2332 54890 0.6150 +2332 54915 0.8290 +2332 55120 0.4040 +2332 55294 0.6490 +2332 55421 0.7830 +2332 55646 0.4040 +2332 55653 0.4040 +2332 55749 0.7480 +2332 55796 0.5950 +2332 55802 0.4240 +2332 55833 0.5260 +2332 55845 0.6190 +2332 55916 0.4830 +2332 56000 0.5010 +2332 56001 0.8280 +2332 56339 0.7590 +2332 56478 0.4860 +2332 56950 0.4200 +2332 57502 0.7810 +2332 57532 0.9930 +2332 57555 0.5600 +2332 57575 0.4490 +2332 57582 0.6250 +2332 57609 0.4490 +2332 57680 0.6220 +2332 57721 0.6340 +2332 58512 0.5480 +2332 64282 0.4200 +2332 64326 0.4210 +2332 64506 0.9590 +2332 64783 0.6080 +2332 64848 0.6610 +2332 79048 0.4320 +2332 79066 0.5980 +2332 79068 0.5800 +2332 79727 0.6100 +2332 79868 0.4150 +2332 79872 0.5840 +2332 79882 0.4510 +2332 79983 0.7350 +2332 80315 0.8890 +2332 80336 0.4340 +2332 81614 0.5090 +2332 83640 0.7200 +2332 83641 0.5820 +2332 84548 0.8970 +2332 84631 0.5650 +2332 84867 0.4200 +2332 85358 0.8560 +2332 90850 0.4220 +2332 90957 0.4100 +2332 91746 0.6780 +2332 92140 0.7740 +2332 113251 0.6250 +2332 114791 0.4800 +2332 120892 0.4740 +2332 123606 0.5060 +2332 132430 0.4130 +2332 132864 0.9230 +2332 133482 0.5060 +2332 134957 0.4440 +2332 135935 0.7370 +2332 139189 0.5420 +2332 139411 0.4090 +2332 140886 0.4250 +2332 143689 0.6740 +2332 152330 0.4990 +2332 158521 0.5290 +2332 164684 0.6230 +2332 167153 0.5830 +2332 170506 0.5410 +2332 192669 0.5670 +2332 192670 0.6190 +2332 203228 0.6270 +2332 220988 0.7230 +2332 253314 0.7530 +2332 253943 0.6870 +2332 255738 0.4610 +2332 266743 0.5530 +2332 317649 0.7490 +2332 344018 0.7210 +2332 353267 0.5400 +2332 375189 0.4250 +2332 388677 0.4250 +2332 392517 0.5610 +2332 404734 0.4130 +2332 440093 0.6120 +2332 440686 0.6100 +2332 653604 0.6100 +2332 728343 0.8270 +2332 100996717 0.5720 +2334 2664 0.5120 +2334 2913 0.4400 +2334 2914 0.5450 +2334 2917 0.4880 +2334 2918 0.4380 +2334 3423 0.5800 +2334 3899 0.5700 +2334 3960 0.4200 +2334 4204 0.4590 +2334 4297 0.5640 +2334 4298 0.6790 +2334 4299 0.4560 +2334 4300 0.6710 +2334 4345 0.4740 +2334 4983 0.5050 +2334 6427 0.4080 +2334 7102 0.4270 +2334 7913 0.4210 +2334 8178 0.6790 +2334 8450 0.4130 +2334 8852 0.4390 +2334 9210 0.5000 +2334 9459 0.4450 +2334 9468 0.4860 +2334 10084 0.4040 +2334 10178 0.5380 +2334 11141 0.5680 +2334 22936 0.4190 +2334 23245 0.4480 +2334 27125 0.4770 +2334 27328 0.4270 +2334 51132 0.4380 +2334 51741 0.4470 +2334 54413 0.4390 +2334 56157 0.4600 +2334 79983 0.4930 +2334 80237 0.4190 +2334 84548 0.9500 +2334 84631 0.5700 +2334 118924 0.5050 +2334 139422 0.4950 +2334 158521 0.6130 +2335 2353 0.7820 +2335 2357 0.5100 +2335 2475 0.5090 +2335 2534 0.6780 +2335 2547 0.4680 +2335 2596 0.7390 +2335 2597 0.9450 +2335 2621 0.7300 +2335 2626 0.4380 +2335 2638 0.5570 +2335 2660 0.5570 +2335 2668 0.5110 +2335 2670 0.5700 +2335 2697 0.7390 +2335 2734 0.5140 +2335 2735 0.4180 +2335 2752 0.6550 +2335 2811 0.8410 +2335 2812 0.4820 +2335 2817 0.6540 +2335 2821 0.4040 +2335 2869 0.4240 +2335 2885 0.7440 +2335 2889 0.4560 +2335 2909 0.6300 +2335 2919 0.5280 +2335 2921 0.4770 +2335 2932 0.5730 +2335 2934 0.8090 +2335 2993 0.5450 +2335 3001 0.5190 +2335 3002 0.6560 +2335 3021 0.4560 +2335 3026 0.5370 +2335 3037 0.4940 +2335 3053 0.5560 +2335 3059 0.5070 +2335 3066 0.5760 +2335 3075 0.5870 +2335 3082 0.9670 +2335 3091 0.6980 +2335 3092 0.4030 +2335 3093 0.6230 +2335 3146 0.5020 +2335 3161 0.6180 +2335 3162 0.4790 +2335 3164 0.5100 +2335 3172 0.4880 +2335 3239 0.4350 +2335 3240 0.6460 +2335 3263 0.5730 +2335 3265 0.8010 +2335 3273 0.5980 +2335 3308 0.7180 +2335 3309 0.4410 +2335 3320 0.4600 +2335 3326 0.5770 +2335 3329 0.5830 +2335 3336 0.4730 +2335 3339 0.9960 +2335 3371 0.8140 +2335 3381 0.7780 +2335 3383 0.9040 +2335 3384 0.4410 +2335 3418 0.4770 +2335 3439 0.4340 +2335 3458 0.6410 +2335 3476 0.6090 +2335 3479 0.9070 +2335 3480 0.8750 +2335 3481 0.6940 +2335 3484 0.7560 +2335 3486 0.9670 +2335 3488 0.8120 +2335 3490 0.4320 +2335 3491 0.6910 +2335 3552 0.7730 +2335 3553 0.8690 +2335 3558 0.8040 +2335 3562 0.4790 +2335 3565 0.8370 +2335 3567 0.4310 +2335 3568 0.4750 +2335 3569 0.9000 +2335 3574 0.7810 +2335 3576 0.8460 +2335 3579 0.4180 +2335 3586 0.7520 +2335 3589 0.4480 +2335 3596 0.7350 +2335 3605 0.5340 +2335 3606 0.4610 +2335 3611 0.8400 +2335 3627 0.6860 +2335 3630 0.7010 +2335 3655 0.9280 +2335 3667 0.7770 +2335 3672 0.9480 +2335 3673 0.9860 +2335 3674 0.9990 +2335 3675 0.9990 +2335 3676 0.9990 +2335 3678 0.9990 +2335 3679 0.8920 +2335 3680 0.9450 +2335 3681 0.8210 +2335 3682 0.8240 +2335 3683 0.7980 +2335 3684 0.8530 +2335 3685 0.9990 +2335 3687 0.8650 +2335 3688 0.9990 +2335 3689 0.9760 +2335 3690 0.9990 +2335 3691 0.7640 +2335 3693 0.9950 +2335 3694 0.9860 +2335 3695 0.9850 +2335 3696 0.9300 +2335 3698 0.5640 +2335 3700 0.8680 +2335 3717 0.8240 +2335 3718 0.4720 +2335 3725 0.6250 +2335 3730 0.4890 +2335 3791 0.7930 +2335 3799 0.5650 +2335 3815 0.7760 +2335 3827 0.8190 +2335 3831 0.5450 +2335 3837 0.4070 +2335 3845 0.7280 +2335 3852 0.6280 +2335 3856 0.5180 +2335 3861 0.4770 +2335 3872 0.5030 +2335 3875 0.5400 +2335 3880 0.5300 +2335 3898 0.4210 +2335 3903 0.5280 +2335 3908 0.4710 +2335 3909 0.4490 +2335 3910 0.8140 +2335 3911 0.7900 +2335 3912 0.5740 +2335 3914 0.4430 +2335 3915 0.7000 +2335 3916 0.6350 +2335 3918 0.4090 +2335 3934 0.9640 +2335 3952 0.4460 +2335 3956 0.8780 +2335 3958 0.9850 +2335 3959 0.9530 +2335 3964 0.4660 +2335 3976 0.5000 +2335 3987 0.4020 +2335 4000 0.5270 +2335 4005 0.4630 +2335 4008 0.5680 +2335 4015 0.9310 +2335 4016 0.5270 +2335 4017 0.8190 +2335 4018 0.7640 +2335 4023 0.4730 +2335 4035 0.4940 +2335 4036 0.5730 +2335 4041 0.4060 +2335 4052 0.9490 +2335 4053 0.6700 +2335 4054 0.6160 +2335 4057 0.6130 +2335 4060 0.9620 +2335 4067 0.4010 +2335 4072 0.5810 +2335 4082 0.5140 +2335 4087 0.7650 +2335 4088 0.7300 +2335 4089 0.6460 +2335 4091 0.4020 +2335 4092 0.5880 +2335 4099 0.7520 +2335 4137 0.4240 +2335 4140 0.4450 +2335 4153 0.6310 +2335 4162 0.5130 +2335 4204 0.5010 +2335 4233 0.7450 +2335 4237 0.6650 +2335 4254 0.5890 +2335 4256 0.6520 +2335 4261 0.4120 +2335 4282 0.4060 +2335 4312 0.7920 +2335 4313 0.7560 +2335 4314 0.9360 +2335 4316 0.7780 +2335 4317 0.5760 +2335 4318 0.8500 +2335 4319 0.8460 +2335 4320 0.5900 +2335 4321 0.7070 +2335 4322 0.7440 +2335 4323 0.8180 +2335 4324 0.4610 +2335 4325 0.4570 +2335 4353 0.6420 +2335 4478 0.7390 +2335 4502 0.4570 +2335 4604 0.4090 +2335 4607 0.5390 +2335 4609 0.7750 +2335 4627 0.5580 +2335 4629 0.4080 +2335 4633 0.4460 +2335 4653 0.7770 +2335 4680 0.7070 +2335 4684 0.7480 +2335 4771 0.4260 +2335 4790 0.7290 +2335 4792 0.4740 +2335 4803 0.5740 +2335 4804 0.4310 +2335 4811 0.9970 +2335 4846 0.5190 +2335 4851 0.5070 +2335 4854 0.4130 +2335 4855 0.5370 +2335 4856 0.5450 +2335 4868 0.5110 +2335 4869 0.6930 +2335 4878 0.4450 +2335 4893 0.6450 +2335 4907 0.7370 +2335 4914 0.5990 +2335 4921 0.5100 +2335 4948 0.4310 +2335 5004 0.5720 +2335 5005 0.5500 +2335 5008 0.6210 +2335 5020 0.4800 +2335 5033 0.5010 +2335 5034 0.5480 +2335 5037 0.5170 +2335 5045 0.6730 +2335 5054 0.7900 +2335 5055 0.4520 +2335 5080 0.4040 +2335 5104 0.5250 +2335 5118 0.6400 +2335 5133 0.5500 +2335 5154 0.7250 +2335 5155 0.4780 +2335 5156 0.5700 +2335 5159 0.7650 +2335 5175 0.7480 +2335 5176 0.8460 +2335 5196 0.7700 +2335 5197 0.7700 +2335 5226 0.4040 +2335 5228 0.9430 +2335 5230 0.4830 +2335 5241 0.4240 +2335 5243 0.4030 +2335 5264 0.5310 +2335 5265 0.8250 +2335 5266 0.5910 +2335 5268 0.4300 +2335 5270 0.5300 +2335 5284 0.4950 +2335 5290 0.6650 +2335 5295 0.6180 +2335 5310 0.6290 +2335 5315 0.5650 +2335 5319 0.4260 +2335 5327 0.8670 +2335 5328 0.8380 +2335 5329 0.6970 +2335 5335 0.6510 +2335 5339 0.5910 +2335 5340 0.9970 +2335 5345 0.9530 +2335 5352 0.4600 +2335 5420 0.4040 +2335 5460 0.6000 +2335 5467 0.4990 +2335 5468 0.5520 +2335 5473 0.5940 +2335 5530 0.6230 +2335 5532 0.4510 +2335 5549 0.5040 +2335 5551 0.6240 +2335 5566 0.4320 +2335 5567 0.4340 +2335 5568 0.4310 +2335 5573 0.4520 +2335 5578 0.4610 +2335 5594 0.7160 +2335 5595 0.8290 +2335 5599 0.4500 +2335 5604 0.7270 +2335 5605 0.5740 +2335 5627 0.5330 +2335 5654 0.4550 +2335 5657 0.6050 +2335 5727 0.5590 +2335 5728 0.5820 +2335 5733 0.4660 +2335 5743 0.5440 +2335 5744 0.4040 +2335 5747 0.9370 +2335 5764 0.5170 +2335 5768 0.5240 +2335 5770 0.5600 +2335 5781 0.6940 +2335 5788 0.8420 +2335 5795 0.5370 +2335 5797 0.5740 +2335 5800 0.6070 +2335 5803 0.4040 +2335 5805 0.5350 +2335 5829 0.9810 +2335 5858 0.5130 +2335 5894 0.6540 +2335 5903 0.5620 +2335 5906 0.5570 +2335 5908 0.5720 +2335 5950 0.4380 +2335 5962 0.4870 +2335 5970 0.4370 +2335 5972 0.5250 +2335 6007 0.4710 +2335 6050 0.4520 +2335 6093 0.4900 +2335 6198 0.4320 +2335 6238 0.7660 +2335 6275 0.6570 +2335 6279 0.5440 +2335 6347 0.7230 +2335 6348 0.6210 +2335 6351 0.4330 +2335 6366 0.4200 +2335 6367 0.5770 +2335 6373 0.6040 +2335 6374 0.4010 +2335 6376 0.5620 +2335 6382 0.9990 +2335 6383 0.9590 +2335 6385 0.9990 +2335 6387 0.8840 +2335 6401 0.7260 +2335 6402 0.4450 +2335 6403 0.7780 +2335 6404 0.6040 +2335 6406 0.6300 +2335 6407 0.5960 +2335 6426 0.5640 +2335 6428 0.5160 +2335 6430 0.4730 +2335 6440 0.5560 +2335 6462 0.4990 +2335 6464 0.7430 +2335 6469 0.7160 +2335 6510 0.4540 +2335 6517 0.4460 +2335 6585 0.5320 +2335 6586 0.6200 +2335 6591 0.8000 +2335 6615 0.8150 +2335 6624 0.4440 +2335 6647 0.7730 +2335 6648 0.5830 +2335 6654 0.6270 +2335 6657 0.6220 +2335 6662 0.5450 +2335 6678 0.9690 +2335 6693 0.5510 +2335 6696 0.9960 +2335 6714 0.9450 +2335 6772 0.6030 +2335 6774 0.9880 +2335 6776 0.4620 +2335 6779 0.4720 +2335 6790 0.9450 +2335 6801 0.4380 +2335 6850 0.7090 +2335 6863 0.5930 +2335 6868 0.4860 +2335 6876 0.6100 +2335 6900 0.6190 +2335 6908 0.5810 +2335 6927 0.5080 +2335 7004 0.4770 +2335 7010 0.4680 +2335 7015 0.4300 +2335 7037 0.6470 +2335 7039 0.5290 +2335 7040 0.9690 +2335 7041 0.4020 +2335 7042 0.8290 +2335 7043 0.6220 +2335 7045 0.9950 +2335 7046 0.6300 +2335 7048 0.7220 +2335 7052 0.9970 +2335 7056 0.4010 +2335 7057 0.9990 +2335 7058 0.8540 +2335 7060 0.6050 +2335 7066 0.4400 +2335 7070 0.6380 +2335 7075 0.4070 +2335 7076 0.9540 +2335 7077 0.7130 +2335 7078 0.7510 +2335 7079 0.5010 +2335 7082 0.7170 +2335 7094 0.9920 +2335 7097 0.9170 +2335 7098 0.4180 +2335 7099 0.9950 +2335 7100 0.5550 +2335 7101 0.5810 +2335 7122 0.4750 +2335 7123 0.5220 +2335 7124 0.9700 +2335 7130 0.8300 +2335 7134 0.4510 +2335 7145 0.7560 +2335 7153 0.4530 +2335 7157 0.6650 +2335 7170 0.6250 +2335 7171 0.6250 +2335 7175 0.5440 +2335 7251 0.6250 +2335 7253 0.6240 +2335 7276 0.6270 +2335 7291 0.6970 +2335 7299 0.4330 +2335 7301 0.4030 +2335 7356 0.5540 +2335 7373 0.7400 +2335 7402 0.5450 +2335 7408 0.6080 +2335 7412 0.9830 +2335 7414 0.9920 +2335 7423 0.5980 +2335 7424 0.5890 +2335 7425 0.4380 +2335 7428 0.9270 +2335 7430 0.6890 +2335 7431 0.8090 +2335 7448 0.9990 +2335 7450 0.9980 +2335 7454 0.4180 +2335 7471 0.4130 +2335 7474 0.5470 +2335 7476 0.6870 +2335 7514 0.4980 +2335 7525 0.9190 +2335 7529 0.5770 +2335 7531 0.4710 +2335 7534 0.5760 +2335 7555 0.4430 +2335 7791 0.7300 +2335 7837 0.8530 +2335 7852 0.8570 +2335 8038 0.6650 +2335 8091 0.4030 +2335 8128 0.4630 +2335 8174 0.6630 +2335 8190 0.7520 +2335 8290 0.4550 +2335 8324 0.6070 +2335 8337 0.4850 +2335 8338 0.4850 +2335 8349 0.5860 +2335 8356 0.4550 +2335 8483 0.5040 +2335 8496 0.5840 +2335 8515 0.8350 +2335 8516 0.9760 +2335 8531 0.4390 +2335 8542 0.4700 +2335 8547 0.6100 +2335 8549 0.4210 +2335 8600 0.4570 +2335 8639 0.4920 +2335 8756 0.5590 +2335 8763 0.4510 +2335 8788 0.5700 +2335 8817 0.8000 +2335 8822 0.7980 +2335 8823 0.7990 +2335 8826 0.7420 +2335 8829 0.6520 +2335 8840 0.4270 +2335 8842 0.7120 +2335 8844 0.4800 +2335 8874 0.5210 +2335 8878 0.6830 +2335 8974 0.4980 +2335 9068 0.4510 +2335 9076 0.4930 +2335 9138 0.5230 +2335 9172 0.9580 +2335 9200 0.4470 +2335 9241 0.4180 +2335 9244 0.5210 +2335 9254 0.4020 +2335 9255 0.4820 +2335 9256 0.4260 +2335 9289 0.5930 +2335 9314 0.5070 +2335 9332 0.6010 +2335 9350 0.4870 +2335 9370 0.6270 +2335 9378 0.5270 +2335 9379 0.5190 +2335 9423 0.5620 +2335 9429 0.4090 +2335 9437 0.4740 +2335 9451 0.6400 +2335 9459 0.5760 +2335 9475 0.4250 +2335 9507 0.8000 +2335 9508 0.7230 +2335 9509 0.5900 +2335 9510 0.4980 +2335 9543 0.4420 +2335 9564 0.8030 +2335 9611 0.4140 +2335 9622 0.4570 +2335 9648 0.5200 +2335 9672 0.7130 +2335 9839 0.6470 +2335 9865 0.4670 +2335 9900 0.4140 +2335 9902 0.4050 +2335 10024 0.4030 +2335 10076 0.5180 +2335 10143 0.4370 +2335 10146 0.7140 +2335 10158 0.4970 +2335 10216 0.6420 +2335 10232 0.5860 +2335 10256 0.4230 +2335 10291 0.4910 +2335 10342 0.5200 +2335 10371 0.4340 +2335 10381 0.4880 +2335 10398 0.4120 +2335 10413 0.5040 +2335 10468 0.4270 +2335 10516 0.8650 +2335 10536 0.6330 +2335 10553 0.4800 +2335 10578 0.5130 +2335 10630 0.5290 +2335 10631 0.9960 +2335 10763 0.6300 +2335 10817 0.4990 +2335 10818 0.5770 +2335 10875 0.7560 +2335 10894 0.4450 +2335 10979 0.4420 +2335 11096 0.4420 +2335 11117 0.5330 +2335 11167 0.4730 +2335 11226 0.5720 +2335 22795 0.7150 +2335 22801 0.8660 +2335 22859 0.5030 +2335 22872 0.5850 +2335 22883 0.4740 +2335 22915 0.4310 +2335 22943 0.6860 +2335 23166 0.4470 +2335 23266 0.4490 +2335 23345 0.5400 +2335 23363 0.6730 +2335 23365 0.5310 +2335 23371 0.4740 +2335 23411 0.4340 +2335 23468 0.4650 +2335 23539 0.4100 +2335 23543 0.5230 +2335 23705 0.6580 +2335 23767 0.6440 +2335 23768 0.8090 +2335 23769 0.7670 +2335 26254 0.8450 +2335 26281 0.7970 +2335 26471 0.4120 +2335 26585 0.5250 +2335 27006 0.7990 +2335 27231 0.4500 +2335 27286 0.5740 +2335 27436 0.4900 +2335 29126 0.6500 +2335 29780 0.5840 +2335 30008 0.6440 +2335 30816 0.9630 +2335 50507 0.5400 +2335 50509 0.5640 +2335 50937 0.5510 +2335 50943 0.4440 +2335 51129 0.6290 +2335 51151 0.5800 +2335 51176 0.4430 +2335 51206 0.9320 +2335 51378 0.4510 +2335 51651 0.4830 +2335 51738 0.4520 +2335 51806 0.6420 +2335 53335 0.4480 +2335 54205 0.4350 +2335 54518 0.5680 +2335 54538 0.6240 +2335 54715 0.4100 +2335 54756 0.6110 +2335 54757 0.4710 +2335 54829 0.4200 +2335 55201 0.4650 +2335 55742 0.4780 +2335 56920 0.4710 +2335 56935 0.4350 +2335 56955 0.4380 +2335 56975 0.6950 +2335 57124 0.9680 +2335 57448 0.4300 +2335 57463 0.5720 +2335 57497 0.6050 +2335 57549 0.4820 +2335 57622 0.5890 +2335 58480 0.4780 +2335 59272 0.4920 +2335 63827 0.6730 +2335 64175 0.4840 +2335 64321 0.4020 +2335 64386 0.5110 +2335 64838 0.6590 +2335 64856 0.4790 +2335 64866 0.4300 +2335 65078 0.5830 +2335 78999 0.6010 +2335 79187 0.4970 +2335 79365 0.4610 +2335 79414 0.4780 +2335 79923 0.5830 +2335 80208 0.4240 +2335 80304 0.5140 +2335 80381 0.6170 +2335 80781 0.8380 +2335 83660 0.9840 +2335 83700 0.4900 +2335 83856 0.5240 +2335 84033 0.5630 +2335 84467 0.6060 +2335 84695 0.5380 +2335 84879 0.4350 +2335 85301 0.4650 +2335 85376 0.5660 +2335 85477 0.7170 +2335 89780 0.6460 +2335 89782 0.7960 +2335 90070 0.5760 +2335 90249 0.4440 +2335 91860 0.6420 +2335 91937 0.4510 +2335 92565 0.4570 +2335 93649 0.4290 +2335 94025 0.4630 +2335 94030 0.4810 +2335 114990 0.5070 +2335 115908 0.5270 +2335 116379 0.4150 +2335 117581 0.5340 +2335 118429 0.4720 +2335 126364 0.4570 +2335 126374 0.4300 +2335 129804 0.5130 +2335 133396 0.4380 +2335 133418 0.7190 +2335 133482 0.4440 +2335 137902 0.7320 +2335 145581 0.5170 +2335 150221 0.5420 +2335 150353 0.5350 +2335 163688 0.6420 +2335 171425 0.6020 +2335 200958 0.4160 +2335 219699 0.5590 +2335 252995 0.7170 +2335 266727 0.7160 +2335 283208 0.4850 +2335 284217 0.4490 +2335 284656 0.4550 +2335 375790 0.9830 +2335 388697 0.4510 +2335 400668 0.4350 +2335 405754 0.9550 +2335 440093 0.4550 +2335 440387 0.4310 +2335 440686 0.4550 +2335 440804 0.5420 +2335 653604 0.4570 +2335 728378 0.6360 +2335 100133941 0.5200 +2335 100506658 0.7440 +2339 2342 0.9990 +2339 2475 0.4430 +2339 2792 0.7500 +2339 3156 0.4380 +2339 3265 0.6330 +2339 3845 0.6240 +2339 4598 0.7860 +2339 4673 0.8070 +2339 4893 0.5630 +2339 5229 0.9990 +2339 5875 0.5850 +2339 5876 0.8220 +2339 5911 0.5200 +2339 6009 0.5160 +2339 6194 0.4350 +2339 6199 0.6360 +2339 6954 0.5080 +2339 7178 0.6480 +2339 7248 0.4310 +2339 7249 0.4170 +2339 9453 0.9620 +2339 9915 0.5340 +2339 9986 0.9550 +2339 10269 0.9530 +2339 10730 0.4310 +2339 23032 0.4360 +2339 23463 0.6260 +2339 23514 0.4300 +2339 23590 0.9410 +2339 23770 0.4980 +2339 26508 0.6190 +2339 27296 0.4200 +2339 51125 0.4410 +2339 57107 0.9270 +2339 57471 0.4130 +2339 79947 0.9430 +2339 80821 0.4510 +2339 83607 0.4610 +2339 84197 0.5130 +2339 84376 0.5370 +2339 91612 0.9020 +2339 116150 0.9310 +2339 118461 0.6310 +2339 138050 0.5080 +2339 168417 0.4240 +2339 375743 0.4880 +2339 390081 0.4930 +2339 100529261 0.9900 +2342 2792 0.7510 +2342 3156 0.4690 +2342 3265 0.7830 +2342 3845 0.7590 +2342 4673 0.4580 +2342 4893 0.6070 +2342 5229 0.5530 +2342 5875 0.6400 +2342 7803 0.4830 +2342 8467 0.4040 +2342 9453 0.9580 +2342 9986 0.9660 +2342 10269 0.9630 +2342 23426 0.4200 +2342 23463 0.6590 +2342 23590 0.9430 +2342 51307 0.6090 +2342 51449 0.4880 +2342 54662 0.4520 +2342 57107 0.9210 +2342 79947 0.9500 +2342 84823 0.4520 +2342 91612 0.8530 +2342 91734 0.4200 +2342 116150 0.9170 +2342 118461 0.6440 +2342 388743 0.4370 +2346 2348 0.8170 +2346 2350 0.7830 +2346 2352 0.7970 +2346 2591 0.4790 +2346 2719 0.4350 +2346 2912 0.5150 +2346 2913 0.5200 +2346 2915 0.4240 +2346 2922 0.7790 +2346 2925 0.8190 +2346 3077 0.4190 +2346 3249 0.6580 +2346 3458 0.4090 +2346 3558 0.4650 +2346 3569 0.5790 +2346 3598 0.4270 +2346 3732 0.4240 +2346 3791 0.5080 +2346 3817 0.5940 +2346 4072 0.6650 +2346 4522 0.4170 +2346 4524 0.5460 +2346 4548 0.4940 +2346 4552 0.5080 +2346 4629 0.4070 +2346 4691 0.5540 +2346 4824 0.5440 +2346 5347 0.6170 +2346 5354 0.5140 +2346 5682 0.6140 +2346 5754 0.6350 +2346 6470 0.4240 +2346 6528 0.4380 +2346 6573 0.4850 +2346 6647 0.4060 +2346 6750 0.5460 +2346 6752 0.5070 +2346 6948 0.4180 +2346 7084 0.4050 +2346 7113 0.4960 +2346 7162 0.4670 +2346 7226 0.5480 +2346 7293 0.4450 +2346 7442 0.5110 +2346 8000 0.9100 +2346 8624 0.4100 +2346 8842 0.6200 +2346 8988 0.4190 +2346 9255 0.5880 +2346 10003 0.8360 +2346 10223 0.4020 +2346 10232 0.7550 +2346 10399 0.4260 +2346 23600 0.5860 +2346 26872 0.6990 +2346 29126 0.5200 +2346 57494 0.9340 +2346 79054 0.7190 +2346 80321 0.7320 +2346 80328 0.4470 +2346 80381 0.4060 +2346 81034 0.4330 +2346 85414 0.5750 +2346 94025 0.5800 +2346 113235 0.5250 +2346 283116 0.4510 +2346 284716 0.9320 +2346 339983 0.9260 +2346 390243 0.7900 +2346 100423062 0.4510 +2348 2356 0.4770 +2348 2618 0.6860 +2348 2719 0.4520 +2348 2801 0.4990 +2348 2890 0.5040 +2348 3630 0.5340 +2348 3816 0.5300 +2348 3897 0.4160 +2348 3998 0.5260 +2348 4070 0.5100 +2348 4072 0.6900 +2348 4522 0.4280 +2348 4524 0.5750 +2348 4548 0.4770 +2348 4552 0.4810 +2348 4691 0.4290 +2348 4905 0.4990 +2348 5093 0.7590 +2348 5098 0.4550 +2348 5265 0.5360 +2348 5618 0.4240 +2348 6396 0.5000 +2348 6573 0.6880 +2348 6811 0.4990 +2348 6948 0.4160 +2348 7037 0.6880 +2348 7039 0.5570 +2348 7276 0.4610 +2348 7298 0.7290 +2348 8000 0.4420 +2348 8615 0.4990 +2348 8774 0.5160 +2348 8775 0.5030 +2348 9117 0.4990 +2348 9527 0.5080 +2348 9554 0.4990 +2348 9570 0.5210 +2348 9632 0.5190 +2348 9871 0.5450 +2348 9919 0.4990 +2348 10113 0.5180 +2348 10175 0.4990 +2348 10232 0.7060 +2348 10342 0.5040 +2348 10427 0.5350 +2348 10484 0.4990 +2348 10551 0.4450 +2348 10568 0.5720 +2348 10652 0.5070 +2348 10802 0.5040 +2348 10960 0.4990 +2348 10972 0.4800 +2348 11015 0.4100 +2348 11196 0.5030 +2348 22872 0.4990 +2348 23256 0.4990 +2348 23491 0.4080 +2348 26984 0.4990 +2348 29126 0.4140 +2348 29941 0.4270 +2348 51128 0.4990 +2348 51272 0.4990 +2348 55014 0.4990 +2348 63908 0.5030 +2348 64689 0.4990 +2348 79748 0.4990 +2348 81562 0.4990 +2348 81607 0.4080 +2348 84661 0.4250 +2348 89866 0.4990 +2348 90411 0.5040 +2348 94025 0.6060 +2348 113235 0.8150 +2348 149111 0.4990 +2348 200895 0.5840 +2348 254263 0.4990 +2348 284359 0.6090 +2348 100133941 0.4550 +2350 2352 0.4240 +2350 2356 0.4730 +2350 2618 0.4330 +2350 2822 0.4160 +2350 3055 0.5000 +2350 3684 0.4070 +2350 3816 0.5120 +2350 4070 0.4500 +2350 4072 0.5770 +2350 4360 0.6170 +2350 4481 0.4140 +2350 4522 0.4600 +2350 4524 0.5120 +2350 4548 0.4450 +2350 4552 0.4780 +2350 4691 0.4140 +2350 5093 0.7470 +2350 6573 0.6980 +2350 6614 0.5500 +2350 6948 0.4490 +2350 7037 0.6590 +2350 7298 0.5150 +2350 7305 0.4890 +2350 7512 0.4330 +2350 9332 0.6540 +2350 10232 0.5810 +2350 10462 0.5000 +2350 10551 0.4040 +2350 10894 0.5280 +2350 10990 0.4790 +2350 11326 0.8370 +2350 23166 0.5190 +2350 23491 0.4080 +2350 30835 0.4490 +2350 51338 0.5370 +2350 54209 0.4850 +2350 64231 0.4580 +2350 83716 0.4140 +2350 84661 0.4240 +2350 113235 0.7770 +2350 160364 0.4120 +2350 200895 0.4890 +2350 284359 0.5860 +2352 2618 0.4800 +2352 4072 0.5600 +2352 4317 0.4250 +2352 4524 0.5180 +2352 4691 0.4340 +2352 5551 0.4460 +2352 6573 0.5370 +2352 6688 0.4340 +2352 6947 0.5350 +2352 7037 0.6870 +2352 8993 0.4570 +2352 10232 0.5080 +2352 25790 0.4060 +2352 29941 0.4050 +2352 81034 0.5140 +2352 113235 0.6660 +2352 200895 0.4440 +2352 284359 0.5730 +2353 2354 0.9990 +2353 2355 0.9980 +2353 2359 0.4260 +2353 2475 0.5010 +2353 2534 0.6340 +2353 2571 0.6230 +2353 2572 0.4950 +2353 2597 0.7220 +2353 2623 0.4720 +2353 2624 0.6830 +2353 2625 0.8680 +2353 2626 0.4170 +2353 2641 0.5650 +2353 2642 0.4870 +2353 2668 0.9340 +2353 2670 0.5630 +2353 2691 0.4890 +2353 2693 0.4640 +2353 2697 0.5230 +2353 2740 0.4710 +2353 2796 0.5930 +2353 2798 0.4090 +2353 2852 0.5160 +2353 2877 0.4350 +2353 2878 0.4660 +2353 2880 0.4460 +2353 2882 0.4190 +2353 2885 0.5140 +2353 2890 0.5830 +2353 2891 0.4240 +2353 2902 0.4250 +2353 2903 0.5120 +2353 2904 0.5980 +2353 2908 0.9610 +2353 2912 0.4080 +2353 2915 0.4210 +2353 2919 0.4570 +2353 2920 0.4800 +2353 2922 0.5750 +2353 2931 0.4710 +2353 2932 0.5430 +2353 2939 0.4200 +2353 2950 0.4590 +2353 2961 0.6070 +2353 2962 0.6160 +2353 2963 0.5770 +2353 2965 0.4470 +2353 2966 0.4260 +2353 2969 0.5260 +2353 3012 0.5190 +2353 3013 0.5180 +2353 3014 0.6180 +2353 3015 0.6060 +2353 3017 0.5990 +2353 3018 0.5690 +2353 3021 0.8130 +2353 3060 0.7940 +2353 3061 0.5760 +2353 3065 0.8230 +2353 3066 0.7840 +2353 3091 0.8050 +2353 3146 0.4470 +2353 3162 0.5310 +2353 3164 0.9330 +2353 3169 0.8020 +2353 3170 0.5630 +2353 3172 0.4900 +2353 3184 0.7590 +2353 3207 0.4120 +2353 3213 0.4430 +2353 3251 0.4070 +2353 3265 0.7630 +2353 3280 0.4540 +2353 3301 0.4480 +2353 3303 0.4710 +2353 3304 0.5320 +2353 3308 0.5590 +2353 3309 0.4970 +2353 3312 0.5840 +2353 3320 0.6040 +2353 3326 0.4460 +2353 3337 0.4270 +2353 3350 0.5510 +2353 3351 0.4280 +2353 3356 0.5060 +2353 3358 0.4250 +2353 3383 0.5050 +2353 3394 0.7520 +2353 3397 0.5280 +2353 3422 0.4260 +2353 3434 0.5690 +2353 3437 0.4970 +2353 3456 0.4720 +2353 3458 0.7510 +2353 3459 0.5580 +2353 3479 0.5850 +2353 3480 0.4900 +2353 3481 0.4410 +2353 3490 0.7930 +2353 3491 0.7530 +2353 3551 0.6450 +2353 3552 0.8990 +2353 3553 0.8940 +2353 3554 0.4170 +2353 3558 0.8280 +2353 3562 0.4570 +2353 3565 0.7000 +2353 3567 0.5940 +2353 3569 0.8910 +2353 3572 0.5310 +2353 3576 0.7650 +2353 3586 0.7360 +2353 3589 0.4980 +2353 3594 0.4890 +2353 3596 0.6100 +2353 3603 0.4700 +2353 3605 0.5110 +2353 3606 0.4280 +2353 3627 0.4060 +2353 3630 0.6740 +2353 3651 0.4340 +2353 3654 0.4310 +2353 3659 0.7260 +2353 3660 0.5790 +2353 3661 0.4350 +2353 3662 0.4560 +2353 3665 0.6400 +2353 3667 0.4180 +2353 3684 0.4600 +2353 3716 0.4580 +2353 3717 0.7150 +2353 3718 0.5900 +2353 3725 0.9990 +2353 3726 0.9990 +2353 3727 0.9990 +2353 3791 0.4020 +2353 3814 0.5790 +2353 3827 0.6000 +2353 3845 0.5500 +2353 3855 0.4210 +2353 3880 0.5250 +2353 3952 0.6950 +2353 3953 0.4040 +2353 3960 0.4470 +2353 3972 0.5660 +2353 3973 0.4700 +2353 3976 0.5680 +2353 3977 0.4850 +2353 4000 0.6680 +2353 4001 0.5500 +2353 4008 0.5980 +2353 4015 0.6330 +2353 4087 0.6970 +2353 4088 0.9760 +2353 4089 0.8220 +2353 4092 0.4320 +2353 4094 0.9980 +2353 4097 0.7940 +2353 4131 0.4850 +2353 4150 0.6860 +2353 4160 0.6290 +2353 4170 0.6650 +2353 4193 0.7220 +2353 4194 0.4780 +2353 4204 0.4510 +2353 4205 0.4380 +2353 4208 0.6320 +2353 4209 0.6570 +2353 4214 0.4350 +2353 4217 0.4490 +2353 4233 0.4250 +2353 4286 0.9200 +2353 4306 0.4150 +2353 4312 0.6870 +2353 4313 0.6810 +2353 4314 0.4880 +2353 4316 0.5540 +2353 4318 0.6940 +2353 4322 0.4550 +2353 4323 0.4750 +2353 4353 0.5720 +2353 4436 0.5640 +2353 4440 0.4420 +2353 4502 0.5770 +2353 4599 0.5360 +2353 4602 0.5790 +2353 4609 0.9650 +2353 4613 0.4820 +2353 4616 0.6270 +2353 4656 0.4930 +2353 4734 0.4500 +2353 4763 0.6290 +2353 4772 0.9420 +2353 4773 0.9980 +2353 4774 0.4570 +2353 4776 0.6230 +2353 4778 0.6510 +2353 4779 0.4610 +2353 4780 0.7280 +2353 4781 0.4060 +2353 4782 0.4500 +2353 4783 0.4800 +2353 4790 0.8080 +2353 4791 0.4810 +2353 4792 0.8080 +2353 4793 0.5670 +2353 4800 0.4190 +2353 4801 0.5930 +2353 4803 0.6690 +2353 4821 0.4880 +2353 4842 0.5290 +2353 4843 0.4180 +2353 4846 0.4320 +2353 4851 0.6320 +2353 4852 0.7270 +2353 4854 0.5070 +2353 4878 0.4550 +2353 4893 0.4810 +2353 4901 0.5540 +2353 4914 0.4840 +2353 4915 0.6060 +2353 4922 0.6150 +2353 4925 0.4660 +2353 4929 0.7830 +2353 4938 0.5170 +2353 4939 0.5050 +2353 4953 0.4770 +2353 4988 0.5640 +2353 5020 0.7620 +2353 5021 0.5940 +2353 5054 0.4800 +2353 5155 0.5290 +2353 5156 0.5320 +2353 5159 0.5830 +2353 5173 0.6970 +2353 5175 0.4090 +2353 5179 0.5860 +2353 5187 0.4090 +2353 5209 0.5120 +2353 5241 0.6590 +2353 5290 0.6250 +2353 5291 0.5250 +2353 5292 0.5060 +2353 5293 0.5120 +2353 5295 0.6440 +2353 5300 0.4070 +2353 5321 0.4670 +2353 5328 0.4570 +2353 5329 0.4050 +2353 5367 0.6100 +2353 5368 0.4190 +2353 5371 0.4400 +2353 5443 0.8400 +2353 5449 0.4790 +2353 5451 0.6070 +2353 5453 0.4530 +2353 5454 0.4710 +2353 5465 0.4810 +2353 5468 0.6120 +2353 5469 0.9140 +2353 5566 0.9590 +2353 5567 0.9590 +2353 5568 0.9590 +2353 5578 0.9460 +2353 5579 0.9300 +2353 5582 0.9380 +2353 5594 0.9920 +2353 5595 0.9940 +2353 5597 0.4530 +2353 5598 0.7200 +2353 5599 0.9860 +2353 5600 0.9600 +2353 5601 0.9770 +2353 5603 0.9580 +2353 5604 0.6520 +2353 5606 0.4970 +2353 5607 0.4230 +2353 5608 0.4140 +2353 5609 0.4140 +2353 5617 0.5320 +2353 5660 0.7780 +2353 5697 0.5650 +2353 5699 0.4040 +2353 5705 0.7070 +2353 5728 0.7150 +2353 5730 0.4790 +2353 5741 0.4720 +2353 5743 0.8190 +2353 5747 0.6060 +2353 5788 0.4340 +2353 5816 0.6490 +2353 5836 0.4650 +2353 5894 0.5170 +2353 5896 0.5410 +2353 5914 0.8680 +2353 5916 0.5850 +2353 5925 0.5140 +2353 5966 0.7540 +2353 5970 0.9170 +2353 5971 0.4990 +2353 5996 0.4070 +2353 5997 0.5560 +2353 6095 0.7210 +2353 6097 0.5180 +2353 6121 0.4050 +2353 6189 0.4330 +2353 6195 0.7290 +2353 6196 0.7560 +2353 6197 0.5260 +2353 6198 0.9460 +2353 6199 0.9330 +2353 6258 0.4990 +2353 6300 0.9570 +2353 6343 0.5090 +2353 6344 0.4050 +2353 6347 0.7560 +2353 6348 0.6570 +2353 6351 0.4020 +2353 6374 0.4530 +2353 6387 0.4260 +2353 6391 0.4770 +2353 6416 0.4760 +2353 6446 0.5550 +2353 6457 0.5200 +2353 6464 0.5130 +2353 6531 0.5300 +2353 6532 0.5190 +2353 6597 0.4210 +2353 6598 0.4570 +2353 6599 0.5020 +2353 6602 0.6180 +2353 6612 0.6950 +2353 6613 0.7310 +2353 6615 0.5850 +2353 6657 0.6590 +2353 6662 0.4560 +2353 6667 0.9440 +2353 6688 0.9750 +2353 6696 0.4790 +2353 6714 0.9860 +2353 6720 0.4220 +2353 6722 0.9500 +2353 6750 0.6770 +2353 6772 0.8980 +2353 6773 0.4460 +2353 6774 0.9950 +2353 6776 0.5240 +2353 6777 0.5200 +2353 6778 0.6960 +2353 6786 0.4690 +2353 6790 0.5610 +2353 6850 0.6090 +2353 6853 0.5080 +2353 6854 0.4100 +2353 6855 0.6140 +2353 6863 0.6690 +2353 6869 0.5700 +2353 6870 0.4090 +2353 6872 0.6740 +2353 6881 0.4330 +2353 6885 0.4130 +2353 6886 0.5440 +2353 6908 0.8070 +2353 6923 0.4100 +2353 6927 0.8160 +2353 6929 0.4110 +2353 6932 0.4150 +2353 6934 0.6140 +2353 6942 0.4610 +2353 6990 0.4750 +2353 7022 0.5360 +2353 7025 0.4180 +2353 7031 0.4130 +2353 7039 0.6700 +2353 7040 0.7190 +2353 7048 0.4160 +2353 7054 0.7410 +2353 7057 0.5690 +2353 7067 0.5910 +2353 7071 0.4690 +2353 7076 0.4620 +2353 7082 0.6100 +2353 7088 0.5530 +2353 7096 0.5590 +2353 7097 0.6890 +2353 7098 0.4270 +2353 7099 0.5990 +2353 7124 0.7280 +2353 7128 0.4500 +2353 7132 0.4680 +2353 7157 0.9520 +2353 7158 0.4560 +2353 7184 0.4050 +2353 7187 0.4030 +2353 7189 0.6530 +2353 7200 0.4910 +2353 7291 0.6990 +2353 7295 0.4050 +2353 7321 0.5380 +2353 7329 0.7060 +2353 7332 0.4030 +2353 7349 0.4100 +2353 7391 0.5650 +2353 7392 0.5190 +2353 7407 0.4860 +2353 7412 0.4070 +2353 7431 0.5990 +2353 7432 0.5210 +2353 7436 0.5750 +2353 7442 0.5990 +2353 7465 0.5360 +2353 7494 0.6340 +2353 7528 0.9330 +2353 7538 0.8780 +2353 7546 0.4640 +2353 7593 0.4290 +2353 7704 0.4970 +2353 7798 0.4300 +2353 7812 0.4850 +2353 7832 0.6960 +2353 7837 0.7390 +2353 7852 0.4780 +2353 7975 0.8120 +2353 8013 0.6170 +2353 8061 0.9980 +2353 8115 0.4010 +2353 8187 0.4380 +2353 8202 0.9700 +2353 8224 0.4060 +2353 8290 0.6270 +2353 8331 0.5180 +2353 8334 0.5470 +2353 8337 0.6580 +2353 8338 0.6430 +2353 8340 0.5700 +2353 8341 0.5650 +2353 8342 0.5700 +2353 8345 0.5720 +2353 8347 0.5880 +2353 8348 0.5690 +2353 8349 0.6960 +2353 8356 0.8050 +2353 8361 0.8350 +2353 8553 0.4620 +2353 8600 0.8560 +2353 8648 0.9490 +2353 8651 0.6290 +2353 8721 0.4370 +2353 8815 0.6340 +2353 8817 0.4260 +2353 8822 0.4270 +2353 8823 0.4380 +2353 8850 0.5970 +2353 8863 0.4290 +2353 8864 0.6560 +2353 8870 0.4780 +2353 8900 0.5090 +2353 8970 0.5830 +2353 8986 0.6350 +2353 8989 0.4180 +2353 9021 0.6410 +2353 9032 0.4360 +2353 9075 0.4110 +2353 9111 0.6450 +2353 9133 0.5270 +2353 9212 0.4610 +2353 9252 0.4610 +2353 9308 0.4910 +2353 9314 0.7050 +2353 9338 0.4210 +2353 9340 0.4290 +2353 9414 0.9260 +2353 9451 0.6210 +2353 9456 0.5710 +2353 9586 0.8860 +2353 9592 0.7960 +2353 9603 0.7700 +2353 9607 0.5070 +2353 9611 0.6120 +2353 9612 0.6750 +2353 9636 0.5470 +2353 9669 0.4920 +2353 9687 0.4270 +2353 9759 0.4370 +2353 9794 0.4960 +2353 9839 0.4030 +2353 9915 0.6210 +2353 9935 0.9830 +2353 10014 0.4180 +2353 10018 0.4280 +2353 10062 0.5040 +2353 10221 0.7460 +2353 10252 0.4520 +2353 10365 0.6940 +2353 10397 0.4860 +2353 10413 0.7560 +2353 10468 0.4440 +2353 10488 0.4210 +2353 10492 0.5290 +2353 10498 0.9410 +2353 10499 0.5170 +2353 10521 0.4700 +2353 10538 0.9150 +2353 10605 0.7330 +2353 10658 0.6500 +2353 10663 0.4500 +2353 10664 0.6650 +2353 10725 0.8160 +2353 10763 0.4850 +2353 10912 0.4280 +2353 10987 0.4700 +2353 11016 0.9830 +2353 11030 0.4670 +2353 11065 0.4760 +2353 11221 0.4800 +2353 11266 0.7910 +2353 22926 0.5730 +2353 23054 0.4450 +2353 23090 0.4080 +2353 23135 0.8240 +2353 23186 0.4550 +2353 23237 0.8350 +2353 23411 0.7130 +2353 23462 0.4880 +2353 23604 0.4020 +2353 23645 0.7150 +2353 23764 0.8470 +2353 25819 0.4470 +2353 25920 0.4070 +2353 26227 0.5080 +2353 26281 0.4440 +2353 26986 0.5390 +2353 27006 0.4510 +2353 27161 0.4970 +2353 28999 0.5040 +2353 29947 0.4140 +2353 50964 0.4620 +2353 51052 0.4350 +2353 51083 0.6000 +2353 51176 0.5430 +2353 51655 0.4150 +2353 51738 0.6320 +2353 51806 0.6540 +2353 54145 0.5750 +2353 54205 0.4850 +2353 54541 0.4640 +2353 54583 0.4120 +2353 54739 0.4020 +2353 55070 0.6580 +2353 55074 0.4720 +2353 55188 0.6210 +2353 55509 0.5300 +2353 55766 0.5330 +2353 55821 0.5690 +2353 55922 0.5370 +2353 56848 0.5240 +2353 57030 0.4760 +2353 57084 0.6390 +2353 60468 0.6150 +2353 60675 0.4850 +2353 63978 0.4180 +2353 64111 0.4280 +2353 64326 0.7740 +2353 64332 0.5210 +2353 64581 0.5630 +2353 64651 0.5150 +2353 79094 0.4790 +2353 79692 0.4850 +2353 79923 0.5920 +2353 80824 0.4050 +2353 81501 0.6910 +2353 81669 0.5100 +2353 83931 0.8160 +2353 84152 0.5120 +2353 84634 0.4440 +2353 84649 0.4090 +2353 84896 0.4210 +2353 84911 0.4380 +2353 85236 0.5740 +2353 91860 0.5890 +2353 92211 0.4890 +2353 93649 0.4070 +2353 94233 0.7100 +2353 94239 0.5260 +2353 117289 0.4740 +2353 121340 0.4410 +2353 122953 0.7230 +2353 126014 0.5740 +2353 128312 0.5690 +2353 128506 0.4780 +2353 133482 0.4060 +2353 137902 0.7390 +2353 140679 0.5660 +2353 146713 0.7690 +2353 150094 0.4830 +2353 163688 0.5890 +2353 225689 0.4420 +2353 245972 0.5520 +2353 246213 0.4220 +2353 255324 0.4710 +2353 255626 0.5700 +2353 255877 0.4470 +2353 257202 0.4380 +2353 266743 0.8480 +2353 389692 0.4780 +2353 404281 0.4460 +2353 440093 0.6260 +2353 440686 0.6260 +2353 474382 0.5190 +2353 493869 0.4200 +2353 594857 0.4150 +2353 653604 0.8050 +2353 728378 0.4330 +2353 104909134 0.6060 +2354 2355 0.9980 +2354 2597 0.4320 +2354 2668 0.5200 +2354 2672 0.4190 +2354 2920 0.4690 +2354 2932 0.4600 +2354 3012 0.5080 +2354 3013 0.5070 +2354 3014 0.5410 +2354 3015 0.6500 +2354 3017 0.5430 +2354 3018 0.5160 +2354 3021 0.7100 +2354 3065 0.9570 +2354 3066 0.9300 +2354 3164 0.9070 +2354 3310 0.5610 +2354 3383 0.5090 +2354 3434 0.5540 +2354 3479 0.4330 +2354 3491 0.6780 +2354 3553 0.4460 +2354 3569 0.5220 +2354 3576 0.4310 +2354 3725 0.9990 +2354 3726 0.9990 +2354 3727 0.9990 +2354 4094 0.8120 +2354 4097 0.7020 +2354 4209 0.7740 +2354 4609 0.7120 +2354 4616 0.5820 +2354 4775 0.4650 +2354 4780 0.7010 +2354 4790 0.4070 +2354 4792 0.4230 +2354 4901 0.4760 +2354 4929 0.9030 +2354 5173 0.5710 +2354 5594 0.4530 +2354 5595 0.5300 +2354 5598 0.4190 +2354 5599 0.9450 +2354 5600 0.7740 +2354 5601 0.9380 +2354 5603 0.7760 +2354 5743 0.5480 +2354 5885 0.5280 +2354 5966 0.4430 +2354 5996 0.6140 +2354 5997 0.6110 +2354 5999 0.5050 +2354 6239 0.4430 +2354 6300 0.7760 +2354 6457 0.5200 +2354 6581 0.4250 +2354 6722 0.6950 +2354 7071 0.4150 +2354 7124 0.4490 +2354 7128 0.4120 +2354 7538 0.8900 +2354 7752 0.4440 +2354 7832 0.5790 +2354 7975 0.4320 +2354 8013 0.7360 +2354 8061 0.9980 +2354 8202 0.5560 +2354 8243 0.5090 +2354 8290 0.4200 +2354 8331 0.5060 +2354 8334 0.5060 +2354 8337 0.5840 +2354 8338 0.5750 +2354 8340 0.5160 +2354 8341 0.5160 +2354 8342 0.5160 +2354 8345 0.5160 +2354 8347 0.5370 +2354 8348 0.5160 +2354 8349 0.5920 +2354 8352 0.4100 +2354 8353 0.4200 +2354 8356 0.6970 +2354 8361 0.6070 +2354 8553 0.4160 +2354 8851 0.5700 +2354 8970 0.5160 +2354 9126 0.5210 +2354 9314 0.6230 +2354 9586 0.7740 +2354 9592 0.7970 +2354 9935 0.4890 +2354 10221 0.8020 +2354 10274 0.4990 +2354 10365 0.4980 +2354 10437 0.4320 +2354 10524 0.4360 +2354 10725 0.4910 +2354 10735 0.4990 +2354 10919 0.6720 +2354 11016 0.7250 +2354 11266 0.7280 +2354 11335 0.4350 +2354 22809 0.4920 +2354 23237 0.7250 +2354 23261 0.4180 +2354 23405 0.4120 +2354 23411 0.9200 +2354 23462 0.4180 +2354 23530 0.6110 +2354 23645 0.6240 +2354 23764 0.5750 +2354 24138 0.4170 +2354 27161 0.4330 +2354 29947 0.5540 +2354 54145 0.5160 +2354 54206 0.4440 +2354 55766 0.5070 +2354 55922 0.4210 +2354 64332 0.5090 +2354 64651 0.6780 +2354 83851 0.6380 +2354 83931 0.5200 +2354 84152 0.5120 +2354 85236 0.5160 +2354 94239 0.4990 +2354 122953 0.5400 +2354 128312 0.5160 +2354 150094 0.5220 +2354 255626 0.5160 +2354 266743 0.6620 +2354 440093 0.4190 +2354 440686 0.4190 +2354 474382 0.5410 +2354 653604 0.6970 +2354 728378 0.5040 +2355 2689 0.4650 +2355 3091 0.6280 +2355 3164 0.6840 +2355 3569 0.4300 +2355 3630 0.4210 +2355 3660 0.5110 +2355 3662 0.4270 +2355 3725 0.9990 +2355 3726 0.9990 +2355 3727 0.9990 +2355 3976 0.6300 +2355 3977 0.6810 +2355 4088 0.5880 +2355 4094 0.7960 +2355 4097 0.5340 +2355 4170 0.5750 +2355 4430 0.4330 +2355 4488 0.4460 +2355 4609 0.4700 +2355 4780 0.5050 +2355 4783 0.5090 +2355 4790 0.7930 +2355 4791 0.4330 +2355 4901 0.5990 +2355 4929 0.6080 +2355 5008 0.4660 +2355 5241 0.4910 +2355 5594 0.4700 +2355 5595 0.4890 +2355 5598 0.4530 +2355 5599 0.9460 +2355 5600 0.7780 +2355 5601 0.9360 +2355 5603 0.7850 +2355 5610 0.4580 +2355 5617 0.4670 +2355 5966 0.4900 +2355 5970 0.4490 +2355 5971 0.4510 +2355 6095 0.4670 +2355 6097 0.4140 +2355 6300 0.7860 +2355 6659 0.5070 +2355 6774 0.4940 +2355 6776 0.4890 +2355 6777 0.4640 +2355 6926 0.4370 +2355 7026 0.4690 +2355 7045 0.5110 +2355 7392 0.4380 +2355 7407 0.4290 +2355 7975 0.7150 +2355 8013 0.5500 +2355 8061 0.9980 +2355 8553 0.5050 +2355 8600 0.5100 +2355 8668 0.4220 +2355 8669 0.5100 +2355 8841 0.4180 +2355 9021 0.4870 +2355 9265 0.4290 +2355 9266 0.4340 +2355 9586 0.8360 +2355 9935 0.6920 +2355 10123 0.6280 +2355 10221 0.8070 +2355 10539 0.8030 +2355 11016 0.9180 +2355 11266 0.4260 +2355 23603 0.4540 +2355 23764 0.5590 +2355 25803 0.4120 +2355 26145 0.6120 +2355 26960 0.4200 +2355 28988 0.4380 +2355 54583 0.6740 +2355 55070 0.6050 +2355 57658 0.4010 +2355 60468 0.6510 +2355 64207 0.6200 +2355 64326 0.6090 +2355 83931 0.8120 +2355 122953 0.6570 +2355 225689 0.4010 +2355 359948 0.4210 +2356 2597 0.4080 +2356 2618 0.7680 +2356 2653 0.4330 +2356 2731 0.4830 +2356 2821 0.4330 +2356 3145 0.4220 +2356 3155 0.5130 +2356 3704 0.6040 +2356 4363 0.4280 +2356 4522 0.9580 +2356 4524 0.7860 +2356 4548 0.8630 +2356 4552 0.6000 +2356 4682 0.5140 +2356 4720 0.4080 +2356 4817 0.4280 +2356 5243 0.4190 +2356 5471 0.6430 +2356 5479 0.4240 +2356 5723 0.4620 +2356 5805 0.4020 +2356 5832 0.5410 +2356 5860 0.4370 +2356 5981 0.4220 +2356 6470 0.9490 +2356 6472 0.9390 +2356 6573 0.7280 +2356 7083 0.5450 +2356 7086 0.4230 +2356 7167 0.4400 +2356 7172 0.4100 +2356 7298 0.9920 +2356 7372 0.6210 +2356 7407 0.6160 +2356 7464 0.5230 +2356 8277 0.4100 +2356 8623 0.5530 +2356 8833 0.5010 +2356 8836 0.9760 +2356 9380 0.8300 +2356 10101 0.5220 +2356 10391 0.5230 +2356 10444 0.4300 +2356 10588 0.6620 +2356 10797 0.9250 +2356 10841 0.4770 +2356 11151 0.5380 +2356 22984 0.4260 +2356 23382 0.4070 +2356 23603 0.5230 +2356 23743 0.7700 +2356 25902 0.9420 +2356 25973 0.4100 +2356 26227 0.8010 +2356 29958 0.6360 +2356 54995 0.4370 +2356 55066 0.5710 +2356 55270 0.8930 +2356 55312 0.4310 +2356 56474 0.4430 +2356 57175 0.5540 +2356 57176 0.5660 +2356 57571 0.5170 +2356 64779 0.4680 +2356 79947 0.4140 +2356 80224 0.5100 +2356 80324 0.4130 +2356 80347 0.4350 +2356 81034 0.4800 +2356 84076 0.4040 +2356 84940 0.5230 +2356 90353 0.4280 +2356 92399 0.4090 +2356 113235 0.5960 +2356 116150 0.4100 +2356 123263 0.5470 +2356 200895 0.9950 +2356 342979 0.4260 +2356 441024 0.9170 +2356 445815 0.4050 +2357 2358 0.9840 +2357 2359 0.9440 +2357 2769 0.4280 +2357 2770 0.9130 +2357 2771 0.7010 +2357 2776 0.9290 +2357 2778 0.9110 +2357 2782 0.8330 +2357 2867 0.4890 +2357 2919 0.4240 +2357 2920 0.5610 +2357 3055 0.6560 +2357 3113 0.4480 +2357 3459 0.5610 +2357 3553 0.7140 +2357 3557 0.7500 +2357 3569 0.5920 +2357 3575 0.4020 +2357 3576 0.6620 +2357 3577 0.8420 +2357 3579 0.8360 +2357 3586 0.6050 +2357 3684 0.5660 +2357 3685 0.4550 +2357 3687 0.5570 +2357 3689 0.5520 +2357 3791 0.4870 +2357 3802 0.5140 +2357 3814 0.4100 +2357 4057 0.5690 +2357 4283 0.5040 +2357 4318 0.4080 +2357 4332 0.7390 +2357 4353 0.4020 +2357 4688 0.5800 +2357 4689 0.4810 +2357 4914 0.4650 +2357 4940 0.4250 +2357 5199 0.4030 +2357 5294 0.4360 +2357 5329 0.4200 +2357 5341 0.4210 +2357 5595 0.5060 +2357 5660 0.5200 +2357 5724 0.6640 +2357 5733 0.4780 +2357 5742 0.4570 +2357 5880 0.4060 +2357 5919 0.4770 +2357 6279 0.4450 +2357 6280 0.5020 +2357 6283 0.6280 +2357 6288 0.7970 +2357 6289 0.5900 +2357 6295 0.7840 +2357 6347 0.6130 +2357 6363 0.5050 +2357 6366 0.4680 +2357 6368 0.5720 +2357 6387 0.5720 +2357 6402 0.4560 +2357 6556 0.5090 +2357 6714 0.6240 +2357 6774 0.6330 +2357 7042 0.4230 +2357 7096 0.4040 +2357 7097 0.6660 +2357 7099 0.7650 +2357 7124 0.6450 +2357 7133 0.5970 +2357 7305 0.5850 +2357 7850 0.4540 +2357 7940 0.4710 +2357 8685 0.6070 +2357 8698 0.5580 +2357 8875 0.5490 +2357 9332 0.5560 +2357 9370 0.4030 +2357 9934 0.4270 +2357 10288 0.7570 +2357 10663 0.4480 +2357 11025 0.5570 +2357 11027 0.5620 +2357 23560 0.4830 +2357 26253 0.5990 +2357 29108 0.4170 +2357 29899 0.4280 +2357 50624 0.4490 +2357 50856 0.4080 +2357 50865 0.5190 +2357 51311 0.8200 +2357 53829 0.5400 +2357 54106 0.7240 +2357 54209 0.6150 +2357 54210 0.8690 +2357 54331 0.8400 +2357 57121 0.4320 +2357 58484 0.5450 +2357 63940 0.5400 +2357 64581 0.4680 +2357 114548 0.4440 +2357 126006 0.4050 +2357 131177 0.5700 +2357 151647 0.5640 +2357 199675 0.4790 +2357 338339 0.4210 +2357 340205 0.4500 +2357 353514 0.5400 +2357 653361 0.5500 +2358 2359 0.9430 +2358 2597 0.5240 +2358 2770 0.9170 +2358 2771 0.9140 +2358 2782 0.9550 +2358 2783 0.5630 +2358 2784 0.5580 +2358 2785 0.5410 +2358 2786 0.5410 +2358 2787 0.5410 +2358 2788 0.5850 +2358 2790 0.5940 +2358 2791 0.5910 +2358 2792 0.5800 +2358 2793 0.5910 +2358 2840 0.4150 +2358 2841 0.5570 +2358 2847 0.4140 +2358 2854 0.4580 +2358 2861 0.4180 +2358 2867 0.6120 +2358 2869 0.5310 +2358 2919 0.6270 +2358 3055 0.4670 +2358 3299 0.5490 +2358 3383 0.4030 +2358 3458 0.4160 +2358 3486 0.4610 +2358 3553 0.6630 +2358 3557 0.4450 +2358 3569 0.5400 +2358 3576 0.5370 +2358 3577 0.5210 +2358 3579 0.6690 +2358 3586 0.4970 +2358 3684 0.7140 +2358 3689 0.4130 +2358 4210 0.4090 +2358 4318 0.4250 +2358 4332 0.5020 +2358 4353 0.4540 +2358 4481 0.4930 +2358 4688 0.4060 +2358 4940 0.5220 +2358 5027 0.5180 +2358 5133 0.5270 +2358 5196 0.5100 +2358 5328 0.5810 +2358 5329 0.8180 +2358 5330 0.5440 +2358 5331 0.5020 +2358 5368 0.4980 +2358 5473 0.6030 +2358 5621 0.6770 +2358 5657 0.5600 +2358 5724 0.7480 +2358 5743 0.4970 +2358 5831 0.5060 +2358 5919 0.6210 +2358 5996 0.5520 +2358 5998 0.5140 +2358 5999 0.5080 +2358 6003 0.5140 +2358 6004 0.5000 +2358 6283 0.5370 +2358 6288 0.8340 +2358 6289 0.4470 +2358 6347 0.6010 +2358 6361 0.4150 +2358 6364 0.5160 +2358 6366 0.4730 +2358 6367 0.4780 +2358 6368 0.7680 +2358 6369 0.4340 +2358 6556 0.4240 +2358 6714 0.6150 +2358 7096 0.4160 +2358 7097 0.6910 +2358 7099 0.7240 +2358 7124 0.5440 +2358 7204 0.4990 +2358 8490 0.5130 +2358 8651 0.4540 +2358 8835 0.5340 +2358 8875 0.5040 +2358 8997 0.4990 +2358 9170 0.4510 +2358 9194 0.4160 +2358 9332 0.4570 +2358 9466 0.6000 +2358 10287 0.5290 +2358 10288 0.4680 +2358 10316 0.4300 +2358 10681 0.5580 +2358 10800 0.6270 +2358 11005 0.4360 +2358 11027 0.4270 +2358 11251 0.4150 +2358 23204 0.4030 +2358 23236 0.5020 +2358 23566 0.4350 +2358 25817 0.4390 +2358 25818 0.4960 +2358 26253 0.5660 +2358 26575 0.5070 +2358 27180 0.4380 +2358 29899 0.4280 +2358 50624 0.4710 +2358 50865 0.7050 +2358 51311 0.7260 +2358 51764 0.5410 +2358 53829 0.4290 +2358 54210 0.6780 +2358 54331 0.9130 +2358 55970 0.5520 +2358 56923 0.4110 +2358 57105 0.4680 +2358 57121 0.4270 +2358 58484 0.4100 +2358 59345 0.5740 +2358 63940 0.4540 +2358 64386 0.4160 +2358 64407 0.6490 +2358 64581 0.4070 +2358 79156 0.6540 +2358 81559 0.6830 +2358 84539 0.4010 +2358 84658 0.4900 +2358 84941 0.8550 +2358 94235 0.5410 +2358 114548 0.4150 +2358 115557 0.4990 +2358 126364 0.4080 +2358 131177 0.5730 +2358 158747 0.4140 +2358 160364 0.4680 +2358 199675 0.5150 +2358 222487 0.4870 +2358 338339 0.5670 +2358 340205 0.4510 +2358 353514 0.4970 +2358 414325 0.4180 +2358 431704 0.5140 +2358 653145 0.6780 +2358 653361 0.4800 +2359 2861 0.4570 +2359 2920 0.4760 +2359 3557 0.4740 +2359 3576 0.4760 +2359 3577 0.4250 +2359 3579 0.4640 +2359 4069 0.5030 +2359 4283 0.5550 +2359 4332 0.4700 +2359 4481 0.6340 +2359 4940 0.4750 +2359 5473 0.4310 +2359 5621 0.4930 +2359 6288 0.5880 +2359 6355 0.4010 +2359 6357 0.4710 +2359 6362 0.4150 +2359 6363 0.4880 +2359 6366 0.4460 +2359 6368 0.5770 +2359 6372 0.4330 +2359 6614 0.4860 +2359 6714 0.5370 +2359 7941 0.6300 +2359 9332 0.5400 +2359 9547 0.4380 +2359 10663 0.5050 +2359 11309 0.4400 +2359 11326 0.4960 +2359 29899 0.4520 +2359 50624 0.4240 +2359 50865 0.9830 +2359 51338 0.4630 +2359 56833 0.6660 +2359 63940 0.6490 +2359 81559 0.4140 +2359 84868 0.5430 +2359 125958 0.4050 +2359 128434 0.4890 +2395 2495 0.5440 +2395 2512 0.6030 +2395 2572 0.4050 +2395 2671 0.5220 +2395 2745 0.4160 +2395 2877 0.6160 +2395 2878 0.6020 +2395 2879 0.4040 +2395 2880 0.6160 +2395 2882 0.6160 +2395 3064 0.5370 +2395 3162 0.9390 +2395 3163 0.9240 +2395 3308 0.4210 +2395 3313 0.9540 +2395 3329 0.7360 +2395 3421 0.6460 +2395 3658 0.8210 +2395 4285 0.8010 +2395 4287 0.4220 +2395 4437 0.4400 +2395 4515 0.5470 +2395 4682 0.6290 +2395 4698 0.4160 +2395 4706 0.7200 +2395 4714 0.6050 +2395 4722 0.4610 +2395 4724 0.4160 +2395 4891 0.6370 +2395 4913 0.4960 +2395 5071 0.4910 +2395 5428 0.4460 +2395 5498 0.5440 +2395 5521 0.7510 +2395 5538 0.4320 +2395 5893 0.4120 +2395 5981 0.5340 +2395 6182 0.5450 +2395 6310 0.4480 +2395 6314 0.7720 +2395 6389 0.8000 +2395 6390 0.7930 +2395 6391 0.5150 +2395 6556 0.4190 +2395 6647 0.4230 +2395 6648 0.6960 +2395 6687 0.5610 +2395 6720 0.4290 +2395 7036 0.4350 +2395 7037 0.5470 +2395 7263 0.5830 +2395 7274 0.7360 +2395 7295 0.4650 +2395 7386 0.5920 +2395 7389 0.4390 +2395 7390 0.4590 +2395 7818 0.5110 +2395 8031 0.4330 +2395 8395 0.8640 +2395 8733 0.7220 +2395 9054 0.9990 +2395 9374 0.4290 +2395 9391 0.6050 +2395 9512 0.9010 +2395 9553 0.5110 +2395 9843 0.9370 +2395 9868 0.4800 +2395 9927 0.5250 +2395 10058 0.4910 +2395 10101 0.4130 +2395 10162 0.4480 +2395 10245 0.5760 +2395 10440 0.6350 +2395 10452 0.6160 +2395 10469 0.5840 +2395 10531 0.5020 +2395 10539 0.8180 +2395 10632 0.5700 +2395 10891 0.5520 +2395 10939 0.6830 +2395 10944 0.4180 +2395 11019 0.6620 +2395 11194 0.5040 +2395 11222 0.5470 +2395 22921 0.4240 +2395 23064 0.8630 +2395 23203 0.7620 +2395 23345 0.5590 +2395 23409 0.4030 +2395 23410 0.4360 +2395 23456 0.4530 +2395 23479 0.9990 +2395 25814 0.5310 +2395 25824 0.4020 +2395 26234 0.4530 +2395 27158 0.5170 +2395 27235 0.5030 +2395 27247 0.8860 +2395 28998 0.5420 +2395 29090 0.5690 +2395 29928 0.5810 +2395 30061 0.4970 +2395 51021 0.5650 +2395 51025 0.5430 +2395 51027 0.7810 +2395 51073 0.5550 +2395 51167 0.4150 +2395 51218 0.8860 +2395 51264 0.5150 +2395 51312 0.8280 +2395 51540 0.9680 +2395 51647 0.4150 +2395 51734 0.4240 +2395 54205 0.5270 +2395 54840 0.8410 +2395 55034 0.8240 +2395 55052 0.5110 +2395 55210 0.4750 +2395 55240 0.4390 +2395 55640 0.4590 +2395 55658 0.6100 +2395 55669 0.4460 +2395 55750 0.4040 +2395 55847 0.4840 +2395 57001 0.4050 +2395 57019 0.6090 +2395 57128 0.9990 +2395 57129 0.5140 +2395 57817 0.4760 +2395 63875 0.5130 +2395 64210 0.5820 +2395 64428 0.6070 +2395 64960 0.5490 +2395 64965 0.5490 +2395 64969 0.5640 +2395 64979 0.5110 +2395 65003 0.5290 +2395 65018 0.5170 +2395 79145 0.5300 +2395 80025 0.4540 +2395 80224 0.6110 +2395 80273 0.7250 +2395 80777 0.4030 +2395 81689 0.7440 +2395 81894 0.8160 +2395 84545 0.5110 +2395 91419 0.4190 +2395 92609 0.5510 +2395 94033 0.8580 +2395 112812 0.8780 +2395 119559 0.4380 +2395 122961 0.8280 +2395 131118 0.7050 +2395 133015 0.4330 +2395 134266 0.6600 +2395 135138 0.4290 +2395 150274 0.8140 +2395 200205 0.7460 +2395 219927 0.5150 +2395 253827 0.4970 +2395 257202 0.6130 +2395 284106 0.5520 +2395 374291 0.4210 +2395 388962 0.7750 +2395 493869 0.6140 +2395 552900 0.7070 +2395 644096 0.4950 +2395 654483 0.7050 +2395 100287932 0.5270 +2444 2534 0.5750 +2444 2782 0.4750 +2444 2821 0.4260 +2444 2889 0.6920 +2444 4067 0.4300 +2444 4803 0.4180 +2444 5093 0.6130 +2444 5728 0.9470 +2444 5890 0.4370 +2444 6198 0.4260 +2444 6774 0.4360 +2444 7083 0.5620 +2444 7360 0.5660 +2444 9564 0.4040 +2444 11259 0.4640 +2444 23245 0.9990 +2444 23539 0.4660 +2444 26258 0.5210 +2444 27152 0.4570 +2444 51057 0.4780 +2444 55561 0.4070 +2444 57188 0.7920 +2444 57536 0.8790 +2444 79871 0.6890 +2444 83872 0.4470 +2444 121053 0.5570 +2444 126868 0.4260 +2444 145282 0.9990 +2444 375190 0.4830 +2444 389177 0.4160 +2475 2538 0.4040 +2475 2547 0.4330 +2475 2597 0.7010 +2475 2623 0.4640 +2475 2625 0.4450 +2475 2626 0.5230 +2475 2627 0.4630 +2475 2641 0.5520 +2475 2660 0.6010 +2475 2735 0.4010 +2475 2744 0.4050 +2475 2752 0.4360 +2475 2804 0.4280 +2475 2829 0.4230 +2475 2867 0.4600 +2475 2875 0.4760 +2475 2877 0.4510 +2475 2878 0.4510 +2475 2880 0.4510 +2475 2882 0.4520 +2475 2885 0.5120 +2475 2890 0.4870 +2475 2904 0.4130 +2475 2923 0.4440 +2475 2931 0.6320 +2475 2932 0.7840 +2475 2975 0.6570 +2475 2976 0.4310 +2475 3021 0.5080 +2475 3050 0.4440 +2475 3064 0.8180 +2475 3065 0.4670 +2475 3066 0.4050 +2475 3082 0.5240 +2475 3091 0.7890 +2475 3099 0.5720 +2475 3146 0.4760 +2475 3156 0.4920 +2475 3162 0.5270 +2475 3183 0.6470 +2475 3265 0.6690 +2475 3297 0.5450 +2475 3308 0.7480 +2475 3309 0.5200 +2475 3312 0.4300 +2475 3320 0.9980 +2475 3326 0.9980 +2475 3383 0.4130 +2475 3417 0.4920 +2475 3418 0.4480 +2475 3439 0.5700 +2475 3440 0.4730 +2475 3441 0.4790 +2475 3442 0.4790 +2475 3443 0.4800 +2475 3444 0.4800 +2475 3445 0.4800 +2475 3446 0.4800 +2475 3447 0.4790 +2475 3448 0.4800 +2475 3449 0.4800 +2475 3451 0.4790 +2475 3452 0.4800 +2475 3454 0.5400 +2475 3458 0.6100 +2475 3476 0.9530 +2475 3479 0.7810 +2475 3480 0.8720 +2475 3481 0.7050 +2475 3551 0.7690 +2475 3552 0.5070 +2475 3553 0.6670 +2475 3558 0.6120 +2475 3559 0.4630 +2475 3565 0.7440 +2475 3569 0.7720 +2475 3576 0.5070 +2475 3586 0.7400 +2475 3600 0.4160 +2475 3605 0.5060 +2475 3606 0.4890 +2475 3611 0.6140 +2475 3620 0.4750 +2475 3630 0.8820 +2475 3643 0.5320 +2475 3667 0.9920 +2475 3682 0.4530 +2475 3716 0.6670 +2475 3717 0.7420 +2475 3718 0.6020 +2475 3725 0.7150 +2475 3791 0.5830 +2475 3815 0.5740 +2475 3845 0.8260 +2475 3916 0.9970 +2475 3920 0.7580 +2475 3952 0.7310 +2475 3953 0.4040 +2475 3964 0.5090 +2475 3980 0.4080 +2475 4015 0.6210 +2475 4043 0.5260 +2475 4072 0.5160 +2475 4077 0.4990 +2475 4087 0.6630 +2475 4088 0.6700 +2475 4089 0.5400 +2475 4130 0.7280 +2475 4131 0.6960 +2475 4170 0.5830 +2475 4193 0.5980 +2475 4194 0.4760 +2475 4215 0.4700 +2475 4217 0.4060 +2475 4233 0.6200 +2475 4286 0.4500 +2475 4303 0.5140 +2475 4313 0.5120 +2475 4318 0.5880 +2475 4603 0.4220 +2475 4609 0.7300 +2475 4654 0.4510 +2475 4656 0.4490 +2475 4683 0.4310 +2475 4686 0.4890 +2475 4690 0.4570 +2475 4763 0.6160 +2475 4771 0.4460 +2475 4780 0.6370 +2475 4790 0.7600 +2475 4792 0.6470 +2475 4803 0.4250 +2475 4846 0.6770 +2475 4851 0.5850 +2475 4852 0.4250 +2475 4893 0.7050 +2475 4907 0.5030 +2475 4914 0.5390 +2475 4915 0.5130 +2475 4922 0.4790 +2475 5071 0.7810 +2475 5133 0.5070 +2475 5156 0.5580 +2475 5159 0.5310 +2475 5163 0.7630 +2475 5164 0.6880 +2475 5166 0.4080 +2475 5170 0.8480 +2475 5175 0.4270 +2475 5208 0.4030 +2475 5209 0.5390 +2475 5213 0.4520 +2475 5216 0.4720 +2475 5230 0.4500 +2475 5241 0.4880 +2475 5243 0.4760 +2475 5245 0.4380 +2475 5266 0.4480 +2475 5289 0.5610 +2475 5290 0.9630 +2475 5291 0.9430 +2475 5293 0.9420 +2475 5294 0.8570 +2475 5295 0.9560 +2475 5296 0.9440 +2475 5310 0.6210 +2475 5315 0.5450 +2475 5337 0.5000 +2475 5338 0.6400 +2475 5341 0.6040 +2475 5371 0.4380 +2475 5394 0.5380 +2475 5443 0.4900 +2475 5465 0.6800 +2475 5467 0.4180 +2475 5468 0.9640 +2475 5478 0.5280 +2475 5515 0.4280 +2475 5520 0.4830 +2475 5537 0.4200 +2475 5562 0.9720 +2475 5563 0.9730 +2475 5564 0.9670 +2475 5565 0.9350 +2475 5566 0.6740 +2475 5567 0.6710 +2475 5568 0.6710 +2475 5571 0.9640 +2475 5573 0.4750 +2475 5578 0.9690 +2475 5579 0.9370 +2475 5580 0.6080 +2475 5582 0.9210 +2475 5587 0.6090 +2475 5588 0.4270 +2475 5590 0.4150 +2475 5591 0.5820 +2475 5594 0.6780 +2475 5595 0.7620 +2475 5598 0.4780 +2475 5599 0.7020 +2475 5600 0.4690 +2475 5603 0.4620 +2475 5604 0.6740 +2475 5610 0.4760 +2475 5705 0.9940 +2475 5706 0.9940 +2475 5728 0.9420 +2475 5743 0.5750 +2475 5747 0.4510 +2475 5781 0.4990 +2475 5788 0.4220 +2475 5861 0.5110 +2475 5868 0.4280 +2475 5877 0.4760 +2475 5879 0.5000 +2475 5880 0.5310 +2475 5894 0.5780 +2475 5898 0.4380 +2475 5899 0.6020 +2475 5906 0.4700 +2475 5911 0.4710 +2475 5912 0.4280 +2475 5921 0.6770 +2475 5970 0.4080 +2475 5972 0.4660 +2475 5976 0.4130 +2475 5979 0.4830 +2475 6009 0.9990 +2475 6093 0.4130 +2475 6147 0.5830 +2475 6154 0.6470 +2475 6194 0.9610 +2475 6195 0.7330 +2475 6196 0.5700 +2475 6197 0.6000 +2475 6198 0.9990 +2475 6199 0.9950 +2475 6217 0.4100 +2475 6249 0.9460 +2475 6300 0.6400 +2475 6319 0.4310 +2475 6347 0.5110 +2475 6385 0.4430 +2475 6387 0.4390 +2475 6396 0.6550 +2475 6426 0.5620 +2475 6446 0.9920 +2475 6464 0.4580 +2475 6469 0.4110 +2475 6502 0.5490 +2475 6510 0.6340 +2475 6513 0.6340 +2475 6515 0.4520 +2475 6517 0.6230 +2475 6520 0.4830 +2475 6615 0.4790 +2475 6622 0.4830 +2475 6647 0.4400 +2475 6648 0.4930 +2475 6654 0.5060 +2475 6655 0.4800 +2475 6657 0.4190 +2475 6667 0.4470 +2475 6714 0.7930 +2475 6720 0.6560 +2475 6721 0.4830 +2475 6723 0.4050 +2475 6750 0.5070 +2475 6772 0.8270 +2475 6774 0.9260 +2475 6776 0.4970 +2475 6777 0.5090 +2475 6778 0.4170 +2475 6794 0.7910 +2475 6850 0.4570 +2475 6885 0.4680 +2475 7015 0.7380 +2475 7019 0.5030 +2475 7030 0.5790 +2475 7039 0.4310 +2475 7040 0.5820 +2475 7097 0.4440 +2475 7099 0.5900 +2475 7124 0.6710 +2475 7128 0.5830 +2475 7157 0.8740 +2475 7178 0.4250 +2475 7184 0.4250 +2475 7186 0.5860 +2475 7189 0.6080 +2475 7248 0.9740 +2475 7249 0.9900 +2475 7295 0.4680 +2475 7316 0.9960 +2475 7337 0.5880 +2475 7351 0.4040 +2475 7405 0.7080 +2475 7415 0.4560 +2475 7416 0.4030 +2475 7428 0.5920 +2475 7465 0.4210 +2475 7486 0.4780 +2475 7494 0.5510 +2475 7528 0.6260 +2475 7529 0.6770 +2475 7534 0.6530 +2475 7837 0.6740 +2475 7852 0.5010 +2475 7942 0.9830 +2475 8140 0.6010 +2475 8239 0.4760 +2475 8242 0.6300 +2475 8290 0.4850 +2475 8295 0.7740 +2475 8312 0.4020 +2475 8356 0.4850 +2475 8408 0.9990 +2475 8471 0.9180 +2475 8503 0.9370 +2475 8517 0.4910 +2475 8607 0.7710 +2475 8637 0.4510 +2475 8649 0.9300 +2475 8650 0.4260 +2475 8660 0.9660 +2475 8662 0.7310 +2475 8663 0.4630 +2475 8665 0.8050 +2475 8678 0.8910 +2475 8737 0.4060 +2475 8801 0.4650 +2475 8817 0.4910 +2475 8822 0.4900 +2475 8823 0.4910 +2475 8826 0.5230 +2475 8835 0.4170 +2475 8841 0.5930 +2475 8842 0.4180 +2475 8864 0.5600 +2475 8874 0.5220 +2475 8878 0.9530 +2475 8897 0.4400 +2475 8900 0.4190 +2475 8945 0.4680 +2475 8992 0.5120 +2475 9021 0.4570 +2475 9024 0.5200 +2475 9114 0.5960 +2475 9140 0.7610 +2475 9296 0.5040 +2475 9342 0.4120 +2475 9349 0.4510 +2475 9370 0.5520 +2475 9451 0.5810 +2475 9456 0.5220 +2475 9474 0.8300 +2475 9550 0.5220 +2475 9663 0.9150 +2475 9675 0.9990 +2475 9681 0.7560 +2475 9706 0.9860 +2475 9711 0.5780 +2475 9759 0.4010 +2475 9776 0.9170 +2475 9817 0.5310 +2475 9821 0.9820 +2475 9882 0.4510 +2475 9894 0.9990 +2475 9898 0.9940 +2475 9927 0.4920 +2475 9965 0.5250 +2475 9987 0.6430 +2475 10000 0.9600 +2475 10013 0.4590 +2475 10018 0.5450 +2475 10045 0.5300 +2475 10059 0.4830 +2475 10110 0.6390 +2475 10131 0.4280 +2475 10135 0.4120 +2475 10155 0.4360 +2475 10213 0.9940 +2475 10241 0.4500 +2475 10243 0.9030 +2475 10295 0.4530 +2475 10312 0.5680 +2475 10325 0.9990 +2475 10376 0.9940 +2475 10382 0.9940 +2475 10399 0.5370 +2475 10533 0.7720 +2475 10542 0.9520 +2475 10558 0.4650 +2475 10641 0.7920 +2475 10644 0.4870 +2475 10645 0.7710 +2475 10670 0.9990 +2475 10856 0.6960 +2475 10857 0.4370 +2475 10871 0.4380 +2475 10891 0.7030 +2475 10971 0.4240 +2475 10985 0.5150 +2475 10987 0.4930 +2475 11133 0.5260 +2475 11200 0.4640 +2475 11329 0.6090 +2475 11331 0.6310 +2475 11337 0.6100 +2475 11340 0.5110 +2475 11345 0.7060 +2475 22863 0.6830 +2475 22877 0.4040 +2475 22916 0.4120 +2475 22926 0.5230 +2475 22933 0.4380 +2475 22937 0.4080 +2475 23012 0.4260 +2475 23035 0.4110 +2475 23049 0.6410 +2475 23175 0.9440 +2475 23192 0.5440 +2475 23239 0.5610 +2475 23334 0.5510 +2475 23339 0.4670 +2475 23367 0.6570 +2475 23395 0.5170 +2475 23405 0.5260 +2475 23409 0.4210 +2475 23410 0.5640 +2475 23411 0.9370 +2475 23678 0.5560 +2475 23683 0.5360 +2475 23710 0.7150 +2475 23770 0.9520 +2475 25865 0.5410 +2475 25983 0.6020 +2475 25989 0.5100 +2475 26100 0.6900 +2475 26269 0.4380 +2475 26281 0.4910 +2475 26291 0.4690 +2475 26499 0.6060 +2475 27006 0.4910 +2475 27043 0.4480 +2475 27102 0.4520 +2475 27244 0.7110 +2475 27250 0.4410 +2475 28956 0.9720 +2475 28964 0.5460 +2475 29072 0.5200 +2475 29102 0.4690 +2475 29110 0.7220 +2475 29126 0.7110 +2475 29904 0.5850 +2475 29979 0.6170 +2475 30009 0.4340 +2475 30849 0.7770 +2475 50507 0.4510 +2475 50943 0.5770 +2475 51085 0.5470 +2475 51094 0.4080 +2475 51256 0.5800 +2475 51366 0.4420 +2475 51382 0.5350 +2475 51422 0.9220 +2475 51520 0.6270 +2475 51548 0.4630 +2475 51606 0.5820 +2475 51738 0.4400 +2475 51744 0.4310 +2475 51806 0.7060 +2475 53349 0.4800 +2475 53373 0.4750 +2475 53632 0.9240 +2475 54205 0.6430 +2475 54209 0.5080 +2475 54407 0.4850 +2475 54432 0.5140 +2475 54468 0.6040 +2475 54541 0.8000 +2475 55004 0.9630 +2475 55014 0.4140 +2475 55054 0.6240 +2475 55062 0.5970 +2475 55147 0.4420 +2475 55193 0.4790 +2475 55201 0.7140 +2475 55294 0.9210 +2475 55332 0.4310 +2475 55615 0.9990 +2475 55626 0.7570 +2475 55735 0.4380 +2475 55846 0.5490 +2475 57192 0.4190 +2475 57509 0.4270 +2475 57521 0.9990 +2475 57580 0.4880 +2475 57600 0.6020 +2475 57761 0.4530 +2475 58528 0.9910 +2475 60673 0.9770 +2475 64121 0.9990 +2475 64223 0.9990 +2475 64422 0.6850 +2475 64798 0.9990 +2475 64837 0.5220 +2475 64900 0.9100 +2475 65018 0.5840 +2475 79065 0.4560 +2475 79109 0.9990 +2475 79657 0.5470 +2475 79709 0.4170 +2475 79726 0.6220 +2475 79899 0.9940 +2475 80243 0.4410 +2475 81631 0.7600 +2475 81669 0.5090 +2475 81671 0.5000 +2475 81929 0.5030 +2475 83667 0.7680 +2475 83734 0.5510 +2475 84126 0.4080 +2475 84219 0.6440 +2475 84232 0.7170 +2475 84260 0.5520 +2475 84335 0.9990 +2475 84557 0.6540 +2475 84676 0.5220 +2475 84803 0.4720 +2475 84938 0.4190 +2475 84971 0.4140 +2475 85379 0.4600 +2475 85441 0.4090 +2475 89953 0.5490 +2475 90423 0.5020 +2475 91860 0.7070 +2475 92335 0.4570 +2475 96459 0.8080 +2475 114548 0.4720 +2475 114907 0.6480 +2475 120103 0.6140 +2475 120892 0.5120 +2475 121268 0.7120 +2475 127124 0.4990 +2475 129563 0.4100 +2475 137902 0.6710 +2475 140901 0.4080 +2475 143686 0.6350 +2475 144577 0.5350 +2475 153129 0.8520 +2475 154743 0.6290 +2475 155051 0.4570 +2475 155066 0.5040 +2475 163688 0.7070 +2475 200576 0.4990 +2475 201163 0.8360 +2475 203068 0.9950 +2475 206358 0.6270 +2475 219931 0.6560 +2475 221302 0.4180 +2475 245972 0.5990 +2475 245973 0.5390 +2475 253260 0.9990 +2475 257202 0.4510 +2475 285973 0.4080 +2475 345456 0.4240 +2475 375189 0.4260 +2475 389541 0.9530 +2475 440093 0.4850 +2475 440275 0.7680 +2475 440686 0.4850 +2475 440738 0.4200 +2475 441925 0.5300 +2475 493869 0.4510 +2475 642489 0.5150 +2475 645545 0.5060 +2475 652968 0.6350 +2475 653604 0.4850 +2475 729438 0.4860 +2475 100132074 0.4050 +2483 3818 0.5760 +2483 4000 0.4310 +2483 4116 0.8110 +2483 4654 0.5030 +2483 4691 0.6410 +2483 5307 0.4320 +2483 5356 0.8080 +2483 6627 0.8280 +2483 6628 0.8090 +2483 6629 0.8100 +2483 6632 0.8370 +2483 6633 0.8100 +2483 6634 0.8110 +2483 6635 0.8180 +2483 6636 0.9020 +2483 6637 0.8080 +2483 7140 0.7630 +2483 7528 0.6190 +2483 8087 0.4710 +2483 8470 0.4290 +2483 8729 0.4740 +2483 8776 0.7810 +2483 8896 0.8140 +2483 8899 0.4620 +2483 9343 0.8290 +2483 9410 0.8060 +2483 9541 0.9010 +2483 9622 0.4240 +2483 9716 0.8020 +2483 9775 0.8060 +2483 9785 0.8020 +2483 9939 0.8150 +2483 10286 0.8420 +2483 10450 0.8070 +2483 10594 0.9060 +2483 10664 0.4370 +2483 11157 0.5730 +2483 22938 0.8360 +2483 23020 0.8040 +2483 23347 0.4950 +2483 23398 0.8700 +2483 23524 0.8050 +2483 25854 0.5810 +2483 25949 0.8290 +2483 27339 0.8200 +2483 51340 0.8030 +2483 51362 0.8190 +2483 51503 0.8330 +2483 51645 0.8060 +2483 51691 0.4890 +2483 54883 0.8090 +2483 55100 0.8430 +2483 55192 0.4800 +2483 55696 0.8020 +2483 55702 0.8090 +2483 56949 0.8230 +2483 57703 0.9980 +2483 79346 0.4010 +2483 83667 0.4140 +2483 153745 0.4180 +2483 205860 0.5120 +2483 339976 0.5460 +2483 448831 0.9870 +2483 494115 0.5670 +2483 100131827 0.4010 +2483 100288687 0.9270 +2483 100534599 0.8200 +2487 2811 0.4820 +2487 2932 0.6970 +2487 3082 0.4960 +2487 3172 0.5230 +2487 3549 0.4520 +2487 3655 0.5640 +2487 4040 0.5580 +2487 4041 0.7930 +2487 4148 0.9530 +2487 4920 0.4030 +2487 4928 0.5070 +2487 4969 0.4040 +2487 5746 0.4360 +2487 6259 0.5120 +2487 6422 0.4660 +2487 6423 0.4290 +2487 6425 0.4140 +2487 6469 0.4380 +2487 6662 0.4420 +2487 7057 0.4900 +2487 7130 0.7220 +2487 7471 0.7850 +2487 7472 0.6410 +2487 7473 0.5880 +2487 7474 0.7740 +2487 7475 0.6860 +2487 7476 0.6070 +2487 7477 0.5710 +2487 7478 0.5330 +2487 7479 0.4740 +2487 7480 0.5390 +2487 7481 0.6480 +2487 7482 0.5740 +2487 7483 0.6070 +2487 7484 0.4410 +2487 8200 0.7640 +2487 8312 0.6250 +2487 8313 0.6100 +2487 8325 0.5670 +2487 8600 0.5980 +2487 8646 0.5340 +2487 8840 0.5060 +2487 10106 0.8860 +2487 11197 0.8980 +2487 22943 0.8690 +2487 23143 0.5490 +2487 23379 0.6450 +2487 27121 0.8220 +2487 27122 0.6570 +2487 27123 0.8320 +2487 50964 0.5930 +2487 51176 0.5300 +2487 51314 0.4780 +2487 51384 0.6070 +2487 54361 0.6260 +2487 54829 0.9020 +2487 56955 0.4160 +2487 57216 0.6520 +2487 64094 0.4280 +2487 64344 0.5190 +2487 80213 0.4950 +2487 80326 0.5290 +2487 81029 0.5950 +2487 83439 0.5090 +2487 83999 0.5670 +2487 84870 0.4150 +2487 89780 0.6690 +2487 338699 0.6540 +2488 2492 0.9990 +2488 2516 0.7460 +2488 2641 0.4370 +2488 2661 0.6440 +2488 2688 0.4790 +2488 2689 0.4280 +2488 2691 0.6070 +2488 2692 0.7510 +2488 2696 0.9030 +2488 2740 0.9160 +2488 2771 0.4390 +2488 2778 0.5520 +2488 2796 0.9030 +2488 2797 0.7040 +2488 2798 0.9250 +2488 3067 0.4460 +2488 3283 0.4520 +2488 3362 0.9040 +2488 3375 0.4280 +2488 3623 0.6030 +2488 3624 0.6420 +2488 3625 0.6510 +2488 3626 0.4430 +2488 3640 0.5480 +2488 3739 0.5040 +2488 3743 0.4380 +2488 3814 0.7980 +2488 3859 0.5900 +2488 3972 0.6760 +2488 3973 0.9900 +2488 4088 0.5230 +2488 4158 0.9130 +2488 4318 0.4110 +2488 4881 0.9010 +2488 5080 0.6010 +2488 5241 0.4580 +2488 5307 0.7270 +2488 5309 0.4660 +2488 5443 0.8250 +2488 5449 0.6390 +2488 5617 0.7560 +2488 5626 0.6160 +2488 5732 0.9000 +2488 5741 0.4780 +2488 5744 0.4690 +2488 6019 0.4170 +2488 6343 0.4550 +2488 6462 0.4370 +2488 6498 0.4960 +2488 6714 0.5260 +2488 6770 0.6200 +2488 6821 0.5310 +2488 6870 0.4660 +2488 7252 0.7100 +2488 7253 0.9500 +2488 7432 0.4490 +2488 7434 0.9160 +2488 7490 0.5170 +2488 8022 0.5620 +2488 8820 0.4740 +2488 9095 0.5860 +2488 9210 0.5440 +2488 9394 0.5070 +2488 10316 0.5110 +2488 10367 0.4240 +2488 10468 0.6540 +2488 10874 0.5580 +2488 11103 0.5400 +2488 26610 0.4830 +2488 27324 0.4320 +2488 54756 0.6210 +2488 57105 0.5060 +2488 57706 0.5420 +2488 64106 0.5710 +2488 64111 0.5460 +2488 79625 0.5920 +2488 79924 0.4410 +2488 80712 0.4180 +2488 83729 0.4190 +2488 84467 0.4160 +2488 84634 0.7670 +2488 84909 0.4040 +2488 89884 0.4630 +2488 93659 0.7470 +2488 94115 0.6070 +2488 117579 0.5890 +2488 120526 0.4510 +2488 120534 0.4740 +2488 122876 0.5730 +2488 128674 0.6410 +2488 139760 0.9000 +2488 170589 0.7570 +2488 196294 0.4520 +2488 252969 0.4490 +2488 341019 0.5260 +2491 3021 0.5220 +2491 3161 0.4460 +2491 3309 0.4570 +2491 3619 0.5820 +2491 3763 0.4460 +2491 3832 0.8090 +2491 3833 0.5390 +2491 3835 0.4700 +2491 4085 0.9000 +2491 4174 0.5530 +2491 4288 0.4460 +2491 4751 0.5990 +2491 4796 0.4850 +2491 4869 0.6210 +2491 5347 0.7850 +2491 5422 0.4400 +2491 5527 0.4710 +2491 5885 0.6320 +2491 5888 0.4860 +2491 5928 0.6750 +2491 5931 0.7480 +2491 5983 0.4160 +2491 6047 0.5540 +2491 6491 0.6840 +2491 6660 0.4250 +2491 6790 0.6680 +2491 6902 0.4520 +2491 6950 0.4320 +2491 7153 0.4080 +2491 7272 0.6580 +2491 7277 0.5070 +2491 7278 0.5070 +2491 7358 0.4270 +2491 7846 0.5070 +2491 8290 0.5110 +2491 8294 0.8180 +2491 8318 0.5160 +2491 8334 0.8010 +2491 8339 0.8110 +2491 8343 0.8100 +2491 8344 0.8100 +2491 8346 0.8110 +2491 8347 0.8100 +2491 8356 0.5350 +2491 8359 0.8160 +2491 8360 0.8170 +2491 8361 0.9210 +2491 8362 0.8160 +2491 8363 0.8160 +2491 8364 0.8170 +2491 8366 0.8180 +2491 8367 0.8170 +2491 8368 0.8220 +2491 8370 0.8160 +2491 8438 0.4600 +2491 8607 0.5610 +2491 9055 0.5630 +2491 9133 0.7950 +2491 9156 0.5920 +2491 9183 0.5590 +2491 9184 0.7430 +2491 9201 0.5110 +2491 9212 0.8040 +2491 9319 0.5090 +2491 9493 0.7270 +2491 9585 0.4240 +2491 9587 0.4900 +2491 9700 0.7910 +2491 9735 0.5760 +2491 9787 0.6110 +2491 9793 0.7850 +2491 9824 0.4340 +2491 9833 0.6910 +2491 9928 0.6050 +2491 10051 0.4540 +2491 10112 0.5770 +2491 10219 0.4680 +2491 10376 0.5070 +2491 10403 0.8070 +2491 10592 0.5520 +2491 10615 0.5120 +2491 10635 0.4270 +2491 10721 0.6430 +2491 10726 0.5440 +2491 10733 0.5150 +2491 11004 0.6250 +2491 11065 0.5810 +2491 11130 0.7100 +2491 11339 0.7600 +2491 22974 0.5350 +2491 23029 0.4360 +2491 23354 0.4230 +2491 23397 0.4660 +2491 23421 0.9980 +2491 24137 0.6550 +2491 25788 0.4010 +2491 25936 0.4630 +2491 26054 0.5400 +2491 27436 0.5500 +2491 29127 0.4660 +2491 51143 0.4720 +2491 51185 0.4300 +2491 51203 0.4760 +2491 51314 0.4610 +2491 51512 0.5290 +2491 51659 0.4480 +2491 51807 0.5070 +2491 54069 0.8540 +2491 54443 0.4620 +2491 54821 0.9370 +2491 54892 0.5020 +2491 55010 0.7100 +2491 55055 0.7130 +2491 55143 0.8250 +2491 55165 0.6470 +2491 55166 0.9990 +2491 55247 0.4860 +2491 55320 0.9090 +2491 55355 0.8650 +2491 55388 0.5670 +2491 55553 0.4110 +2491 55635 0.4690 +2491 55789 0.5280 +2491 55839 0.9990 +2491 56992 0.5620 +2491 57082 0.8980 +2491 57405 0.4330 +2491 57650 0.4020 +2491 58491 0.4210 +2491 63967 0.4220 +2491 64105 0.9990 +2491 64151 0.6840 +2491 64946 0.9990 +2491 79003 0.8030 +2491 79019 0.9990 +2491 79172 0.9990 +2491 79682 0.9990 +2491 79733 0.4760 +2491 79801 0.6560 +2491 79861 0.5070 +2491 79980 0.8430 +2491 80086 0.5070 +2491 80152 0.9990 +2491 81624 0.4130 +2491 81930 0.8080 +2491 83461 0.4540 +2491 83540 0.8830 +2491 83990 0.4400 +2491 84365 0.4950 +2491 84790 0.5290 +2491 90381 0.4570 +2491 90417 0.4790 +2491 91687 0.9990 +2491 112714 0.5070 +2491 113130 0.6630 +2491 113457 0.5070 +2491 114569 0.5770 +2491 121504 0.8160 +2491 136332 0.4590 +2491 144455 0.4100 +2491 146909 0.6040 +2491 147841 0.7810 +2491 150468 0.5490 +2491 151246 0.6070 +2491 151648 0.8560 +2491 157313 0.4880 +2491 157570 0.5040 +2491 197335 0.6270 +2491 201254 0.9960 +2491 220134 0.8050 +2491 221150 0.6070 +2491 259266 0.4580 +2491 348235 0.5270 +2491 378708 0.9940 +2491 387103 0.9960 +2491 401541 0.9990 +2491 440093 0.5110 +2491 440686 0.5210 +2491 554313 0.8160 +2491 653604 0.5110 +2492 2516 0.6070 +2492 2597 0.4450 +2492 2626 0.4730 +2492 2641 0.9150 +2492 2661 0.9120 +2492 2690 0.5330 +2492 2695 0.9010 +2492 2696 0.4280 +2492 2697 0.4160 +2492 2771 0.6310 +2492 2778 0.9420 +2492 2796 0.7790 +2492 2797 0.4500 +2492 2798 0.7120 +2492 2852 0.4060 +2492 3283 0.7340 +2492 3284 0.5810 +2492 3292 0.5950 +2492 3293 0.6370 +2492 3479 0.4980 +2492 3482 0.4320 +2492 3623 0.6220 +2492 3624 0.5570 +2492 3625 0.6660 +2492 3630 0.6270 +2492 3640 0.6460 +2492 3643 0.4820 +2492 3684 0.4450 +2492 3814 0.5480 +2492 3972 0.6950 +2492 3973 0.6980 +2492 4158 0.4330 +2492 4254 0.4360 +2492 4439 0.4250 +2492 4878 0.9100 +2492 5010 0.4530 +2492 5241 0.5230 +2492 5443 0.9300 +2492 5566 0.4140 +2492 5567 0.4100 +2492 5568 0.4150 +2492 5617 0.6950 +2492 5618 0.5700 +2492 5734 0.4630 +2492 5745 0.4560 +2492 5789 0.4440 +2492 5826 0.4240 +2492 5869 0.4990 +2492 5998 0.4020 +2492 6462 0.4920 +2492 6662 0.5020 +2492 6714 0.5700 +2492 6736 0.5510 +2492 6770 0.7400 +2492 6821 0.4700 +2492 7201 0.4840 +2492 7252 0.9760 +2492 7253 0.6450 +2492 7432 0.9090 +2492 7704 0.6110 +2492 7784 0.4180 +2492 9210 0.9320 +2492 10190 0.4140 +2492 10335 0.4330 +2492 10468 0.4650 +2492 10734 0.4700 +2492 10857 0.4460 +2492 10971 0.4800 +2492 11055 0.4520 +2492 11103 0.4450 +2492 23105 0.4700 +2492 23551 0.4620 +2492 26060 0.7990 +2492 27302 0.4190 +2492 27324 0.5240 +2492 50846 0.4150 +2492 54361 0.4340 +2492 55366 0.4600 +2492 57105 0.4490 +2492 57706 0.6730 +2492 79154 0.4150 +2492 84467 0.4210 +2492 84634 0.4390 +2492 84909 0.5430 +2492 93659 0.7170 +2492 114335 0.6760 +2492 122042 0.4080 +2492 122769 0.4490 +2492 122876 0.8870 +2492 135935 0.6280 +2492 170589 0.8200 +2492 342977 0.4410 +2492 344018 0.6290 +2492 346673 0.4450 +2492 431707 0.4240 +2492 653519 0.6020 +2494 2626 0.4660 +2494 2627 0.4770 +2494 3012 0.4990 +2494 3013 0.4990 +2494 3014 0.4990 +2494 3015 0.5260 +2494 3017 0.4990 +2494 3018 0.5070 +2494 3021 0.5940 +2494 3170 0.5250 +2494 3171 0.4090 +2494 3172 0.6190 +2494 3175 0.6770 +2494 3217 0.5990 +2494 3283 0.4050 +2494 3284 0.7000 +2494 3290 0.4610 +2494 3651 0.8310 +2494 3728 0.4630 +2494 3838 0.4990 +2494 3973 0.6020 +2494 4343 0.5630 +2494 4609 0.4070 +2494 4825 0.4370 +2494 5205 0.4100 +2494 5265 0.4580 +2494 5460 0.5730 +2494 5469 0.6900 +2494 5629 0.8190 +2494 6554 0.4470 +2494 6555 0.4430 +2494 6657 0.7150 +2494 6662 0.4250 +2494 6714 0.4510 +2494 6720 0.5570 +2494 6721 0.5180 +2494 6770 0.4980 +2494 6926 0.5180 +2494 6927 0.5290 +2494 7329 0.7310 +2494 7341 0.5510 +2494 7764 0.8060 +2494 8202 0.8970 +2494 8331 0.4990 +2494 8334 0.4990 +2494 8337 0.5090 +2494 8338 0.5090 +2494 8340 0.4990 +2494 8341 0.4990 +2494 8342 0.4990 +2494 8345 0.4990 +2494 8347 0.4990 +2494 8348 0.4990 +2494 8349 0.5320 +2494 8356 0.5930 +2494 8361 0.5130 +2494 8431 0.9990 +2494 8433 0.4500 +2494 8554 0.4130 +2494 8647 0.5330 +2494 8648 0.7760 +2494 8721 0.8010 +2494 8832 0.4360 +2494 8856 0.4950 +2494 8970 0.4990 +2494 9063 0.4250 +2494 9213 0.6620 +2494 9314 0.7040 +2494 9420 0.6670 +2494 9611 0.6160 +2494 9612 0.7240 +2494 9687 0.5660 +2494 9970 0.4060 +2494 9971 0.7050 +2494 10062 0.6460 +2494 10257 0.4200 +2494 10365 0.4140 +2494 10499 0.9640 +2494 10891 0.9830 +2494 11317 0.5220 +2494 23030 0.4990 +2494 23112 0.5050 +2494 23132 0.7920 +2494 23213 0.4060 +2494 26523 0.4990 +2494 27161 0.5060 +2494 27327 0.4990 +2494 29842 0.4540 +2494 51588 0.4830 +2494 54145 0.4990 +2494 55766 0.4990 +2494 57167 0.4390 +2494 63978 0.4820 +2494 64240 0.4280 +2494 64321 0.4110 +2494 79727 0.4200 +2494 79923 0.7280 +2494 81037 0.7230 +2494 85236 0.4990 +2494 94239 0.5260 +2494 115950 0.7640 +2494 123264 0.5030 +2494 128312 0.4990 +2494 132625 0.4220 +2494 148979 0.4170 +2494 168620 0.4930 +2494 192669 0.5040 +2494 192670 0.4990 +2494 200931 0.5390 +2494 255626 0.5110 +2494 256297 0.7280 +2494 346673 0.5890 +2494 474382 0.4990 +2494 653604 0.5940 +2495 2512 0.9990 +2495 2580 0.5270 +2495 2597 0.5690 +2495 2665 0.4350 +2495 2729 0.5080 +2495 2730 0.5550 +2495 2783 0.4090 +2495 2877 0.4030 +2495 2879 0.7740 +2495 3077 0.6150 +2495 3091 0.4150 +2495 3162 0.6970 +2495 3312 0.6460 +2495 3315 0.5420 +2495 3383 0.4600 +2495 3482 0.5310 +2495 3615 0.4240 +2495 3658 0.7550 +2495 3827 0.4700 +2495 3846 0.4370 +2495 4057 0.4290 +2495 4134 0.4370 +2495 4151 0.5640 +2495 4296 0.7970 +2495 4495 0.4070 +2495 4780 0.5430 +2495 4891 0.8590 +2495 4952 0.5080 +2495 5052 0.6290 +2495 5093 0.7060 +2495 5094 0.5620 +2495 5286 0.4990 +2495 5331 0.7670 +2495 5479 0.4190 +2495 5743 0.4010 +2495 5834 0.4330 +2495 5836 0.4490 +2495 5837 0.7830 +2495 5878 0.5340 +2495 5970 0.6980 +2495 6035 0.4730 +2495 6094 0.7750 +2495 6187 0.4570 +2495 6233 0.4010 +2495 6234 0.4670 +2495 6272 0.4990 +2495 6303 0.4730 +2495 6520 0.6160 +2495 6556 0.4510 +2495 6624 0.4140 +2495 6643 0.5100 +2495 6647 0.4300 +2495 6648 0.5010 +2495 6748 0.4020 +2495 6844 0.5210 +2495 6845 0.5100 +2495 7001 0.5100 +2495 7036 0.5740 +2495 7037 0.9950 +2495 7038 0.7070 +2495 7157 0.4640 +2495 7163 0.5220 +2495 7164 0.4990 +2495 7178 0.4980 +2495 7248 0.4750 +2495 7295 0.4830 +2495 7296 0.5010 +2495 7356 0.7640 +2495 7417 0.4310 +2495 7536 0.7690 +2495 8031 0.9990 +2495 8061 0.7840 +2495 8086 0.5700 +2495 8301 0.5280 +2495 8546 0.4990 +2495 8673 0.5350 +2495 8878 0.5380 +2495 8905 0.5930 +2495 8907 0.6300 +2495 9026 0.5070 +2495 9054 0.4680 +2495 9212 0.4250 +2495 9530 0.4870 +2495 9588 0.5010 +2495 9659 0.4130 +2495 9685 0.5230 +2495 9698 0.5070 +2495 9817 0.4890 +2495 9829 0.5260 +2495 9843 0.5060 +2495 9861 0.4450 +2495 10053 0.5040 +2495 10058 0.4030 +2495 10162 0.4440 +2495 10211 0.5170 +2495 10549 0.4840 +2495 10574 0.4960 +2495 10618 0.5560 +2495 10628 0.4040 +2495 10658 0.4290 +2495 10717 0.5070 +2495 10935 0.4920 +2495 10956 0.4050 +2495 11238 0.5140 +2495 23431 0.4990 +2495 23516 0.4710 +2495 23557 0.5000 +2495 23632 0.5100 +2495 23657 0.6140 +2495 25977 0.5000 +2495 26234 0.5930 +2495 27131 0.4990 +2495 28982 0.4040 +2495 30061 0.8920 +2495 51312 0.5420 +2495 51429 0.5000 +2495 54205 0.6420 +2495 54885 0.4990 +2495 55240 0.5930 +2495 55640 0.4250 +2495 55652 0.4910 +2495 55847 0.4890 +2495 57817 0.6690 +2495 79026 0.7830 +2495 79901 0.5100 +2495 81631 0.4080 +2495 81894 0.5170 +2495 84883 0.5370 +2495 130340 0.5120 +2495 140809 0.4050 +2495 148738 0.5050 +2495 286133 0.8500 +2495 286451 0.5480 +2495 377677 0.5070 +2495 643834 0.4720 +2495 643847 0.4730 +2512 2580 0.5270 +2512 2597 0.5580 +2512 2729 0.4680 +2512 2730 0.5010 +2512 2879 0.7440 +2512 3077 0.7590 +2512 3162 0.7770 +2512 3263 0.4980 +2512 3312 0.6610 +2512 3482 0.5370 +2512 3658 0.8520 +2512 3700 0.4460 +2512 3982 0.6030 +2512 4637 0.4340 +2512 4780 0.4510 +2512 4891 0.8880 +2512 4946 0.5240 +2512 4952 0.5080 +2512 5052 0.6480 +2512 5093 0.6730 +2512 5286 0.5000 +2512 5688 0.4210 +2512 5878 0.5410 +2512 5950 0.4200 +2512 6132 0.4150 +2512 6142 0.4160 +2512 6205 0.4260 +2512 6217 0.4970 +2512 6232 0.4310 +2512 6272 0.4990 +2512 6303 0.5470 +2512 6520 0.4290 +2512 6643 0.5100 +2512 6648 0.4030 +2512 6741 0.5700 +2512 6844 0.4990 +2512 6845 0.5090 +2512 7001 0.4550 +2512 7036 0.5950 +2512 7037 0.9210 +2512 7114 0.5730 +2512 7163 0.5190 +2512 7164 0.5020 +2512 7178 0.4060 +2512 7295 0.4720 +2512 7296 0.4720 +2512 7316 0.5380 +2512 8031 0.9910 +2512 8301 0.5030 +2512 8398 0.9060 +2512 8546 0.5030 +2512 8622 0.4930 +2512 8673 0.5150 +2512 8804 0.4800 +2512 8878 0.5300 +2512 8905 0.5360 +2512 8907 0.5350 +2512 8924 0.4420 +2512 9026 0.4990 +2512 9168 0.4330 +2512 9588 0.5020 +2512 9685 0.5270 +2512 9698 0.5030 +2512 9829 0.5730 +2512 9843 0.6060 +2512 10053 0.5020 +2512 10169 0.4220 +2512 10410 0.4740 +2512 10549 0.5870 +2512 10577 0.4220 +2512 10618 0.5360 +2512 10717 0.5300 +2512 10935 0.4630 +2512 11152 0.5020 +2512 23400 0.4540 +2512 23431 0.4990 +2512 23456 0.4490 +2512 23516 0.4950 +2512 23557 0.5000 +2512 23657 0.5330 +2512 23770 0.4060 +2512 25977 0.4990 +2512 26234 0.6040 +2512 27131 0.5040 +2512 30061 0.9290 +2512 51312 0.4470 +2512 51429 0.5010 +2512 51631 0.4390 +2512 53354 0.7430 +2512 53940 0.4620 +2512 54885 0.4990 +2512 55240 0.5830 +2512 55640 0.4580 +2512 55652 0.5130 +2512 55847 0.4520 +2512 55851 0.6940 +2512 57817 0.7850 +2512 79152 0.5110 +2512 79901 0.5070 +2512 80025 0.9070 +2512 80067 0.5810 +2512 80347 0.4470 +2512 81894 0.4930 +2512 84883 0.4830 +2512 94033 0.5270 +2512 122786 0.4130 +2512 130340 0.5400 +2512 148738 0.5180 +2512 164656 0.5170 +2512 286133 0.9220 +2512 286451 0.5510 +2512 375611 0.4780 +2515 2683 0.5480 +2515 3305 0.4140 +2515 3680 0.4550 +2515 5016 0.5350 +2515 5620 0.5940 +2515 6677 0.7960 +2515 7180 0.4600 +2515 7455 0.5930 +2515 7783 0.6430 +2515 7784 0.6960 +2515 8459 0.4790 +2515 8747 0.8670 +2515 8748 0.8680 +2515 9043 0.5720 +2515 9509 0.4910 +2515 9947 0.5230 +2515 10531 0.4860 +2515 11085 0.8590 +2515 22917 0.6500 +2515 29122 0.6520 +2515 30816 0.4450 +2515 51438 0.5200 +2515 53340 0.6090 +2515 54760 0.4480 +2515 55511 0.6980 +2515 57829 0.6320 +2515 83639 0.4680 +2515 84519 0.6170 +2515 84692 0.4780 +2515 89869 0.4310 +2515 90737 0.6100 +2515 113177 0.5430 +2515 117144 0.4110 +2515 124912 0.4280 +2515 125972 0.6070 +2515 126123 0.5280 +2515 136242 0.6190 +2515 203074 0.4290 +2515 204474 0.5880 +2515 246777 0.4280 +2515 284359 0.6190 +2515 285782 0.6700 +2515 338879 0.4890 +2515 405754 0.5120 +2515 100128569 0.4050 +2515 100129669 0.5410 +2516 2624 0.4340 +2516 2626 0.9600 +2516 2627 0.6010 +2516 2641 0.4110 +2516 2648 0.4570 +2516 2661 0.4510 +2516 2710 0.4100 +2516 2712 0.4110 +2516 2796 0.5440 +2516 2798 0.6550 +2516 2908 0.4920 +2516 3060 0.4210 +2516 3217 0.5990 +2516 3283 0.7170 +2516 3284 0.7560 +2516 3290 0.4300 +2516 3292 0.4960 +2516 3293 0.6910 +2516 3623 0.5000 +2516 3630 0.4640 +2516 3640 0.7750 +2516 3659 0.4740 +2516 3725 0.4740 +2516 3728 0.4630 +2516 3952 0.4860 +2516 3972 0.5110 +2516 3973 0.6820 +2516 4158 0.7470 +2516 4214 0.6160 +2516 4841 0.5990 +2516 4852 0.4710 +2516 4929 0.4360 +2516 5307 0.7760 +2516 5340 0.4430 +2516 5443 0.7350 +2516 5449 0.5560 +2516 5469 0.5070 +2516 5500 0.4160 +2516 5501 0.4240 +2516 5566 0.9340 +2516 5567 0.9340 +2516 5568 0.9370 +2516 5580 0.4670 +2516 5594 0.4120 +2516 5617 0.4570 +2516 5664 0.6420 +2516 6421 0.6990 +2516 6613 0.4730 +2516 6658 0.6440 +2516 6662 0.9870 +2516 6667 0.6770 +2516 6716 0.5910 +2516 6736 0.9860 +2516 6770 0.9620 +2516 6927 0.4680 +2516 6943 0.4990 +2516 7080 0.6290 +2516 7252 0.4430 +2516 7329 0.7870 +2516 7341 0.5620 +2516 7490 0.9690 +2516 7799 0.4070 +2516 8022 0.4060 +2516 8204 0.7480 +2516 8431 0.9320 +2516 8554 0.4510 +2516 8648 0.6510 +2516 8721 0.6850 +2516 8850 0.4650 +2516 9095 0.6720 +2516 9210 0.6900 +2516 9391 0.5450 +2516 9611 0.6190 +2516 9612 0.5920 +2516 9775 0.5060 +2516 10046 0.5430 +2516 10062 0.5480 +2516 10370 0.5510 +2516 10401 0.4130 +2516 10468 0.4120 +2516 10499 0.9510 +2516 10891 0.9340 +2516 11218 0.7450 +2516 23132 0.4180 +2516 23137 0.4070 +2516 23213 0.4420 +2516 23414 0.7640 +2516 30812 0.4510 +2516 30827 0.4500 +2516 50846 0.7950 +2516 51170 0.6080 +2516 54361 0.7270 +2516 55250 0.5840 +2516 55809 0.7690 +2516 56159 0.4310 +2516 56956 0.7980 +2516 57187 0.5080 +2516 79154 0.5240 +2516 79983 0.5840 +2516 84733 0.5010 +2516 115950 0.7030 +2516 122042 0.6040 +2516 135935 0.6940 +2516 284654 0.6760 +2516 344018 0.7100 +2516 346673 0.5510 +2516 402381 0.4180 +2516 493861 0.4790 +2517 2519 0.9280 +2517 2525 0.4210 +2517 2530 0.5670 +2517 2588 0.4580 +2517 2717 0.6020 +2517 2720 0.7760 +2517 2760 0.4200 +2517 2762 0.4020 +2517 2990 0.5620 +2517 3073 0.5480 +2517 3074 0.5000 +2517 3155 0.4180 +2517 4121 0.4740 +2517 4123 0.4780 +2517 4125 0.5930 +2517 4126 0.6490 +2517 4610 0.4470 +2517 4668 0.6210 +2517 4669 0.5510 +2517 4758 0.4020 +2517 5225 0.5940 +2517 5226 0.7680 +2517 5236 0.8300 +2517 5238 0.5760 +2517 5641 0.4210 +2517 6006 0.6750 +2517 6007 0.6610 +2517 7157 0.4910 +2517 9749 0.4370 +2517 10577 0.4070 +2517 10724 0.4470 +2517 23275 0.4480 +2517 27005 0.6220 +2517 51280 0.4260 +2517 51727 0.6910 +2517 55276 0.7260 +2517 56913 0.4030 +2517 79411 0.4830 +2517 80347 0.4010 +2517 84269 0.4200 +2517 84572 0.4690 +2517 90135 0.4170 +2517 138050 0.4330 +2517 145173 0.4160 +2517 170384 0.4280 +2517 197258 0.4770 +2517 261726 0.4240 +2517 282969 0.5230 +2517 285362 0.5290 +2519 2717 0.5940 +2519 2719 0.4560 +2519 2720 0.7520 +2519 2990 0.4630 +2519 3073 0.4250 +2519 4018 0.6930 +2519 4123 0.4800 +2519 4125 0.4360 +2519 4126 0.5630 +2519 4223 0.4480 +2519 5236 0.4070 +2519 5340 0.6620 +2519 10724 0.5060 +2519 23275 0.4760 +2519 51280 0.4880 +2519 54757 0.4110 +2519 56913 0.4110 +2519 56975 0.5160 +2519 79158 0.5980 +2519 84572 0.6680 +2519 197258 0.4440 +2520 2641 0.9590 +2520 2691 0.6570 +2520 2693 0.5710 +2520 2694 0.5770 +2520 2695 0.8050 +2520 2740 0.4160 +2520 2767 0.4520 +2520 2770 0.4290 +2520 2771 0.9400 +2520 2773 0.9400 +2520 2776 0.9500 +2520 2782 0.9400 +2520 2783 0.4020 +2520 2849 0.7090 +2520 2862 0.4420 +2520 2863 0.5290 +2520 2869 0.4990 +2520 2922 0.9670 +2520 2925 0.6960 +2520 3030 0.5140 +2520 3060 0.7440 +2520 3067 0.7300 +2520 3274 0.7650 +2520 3361 0.6840 +2520 3375 0.4680 +2520 3479 0.4160 +2520 3553 0.4060 +2520 3630 0.8700 +2520 3814 0.4190 +2520 3827 0.5660 +2520 3952 0.4470 +2520 4295 0.9340 +2520 4586 0.5260 +2520 4588 0.5820 +2520 4760 0.4790 +2520 4803 0.5280 +2520 4828 0.4950 +2520 4829 0.4110 +2520 4852 0.5830 +2520 4878 0.5270 +2520 4922 0.8710 +2520 4953 0.5410 +2520 5020 0.6690 +2520 5225 0.5600 +2520 5330 0.5550 +2520 5331 0.5440 +2520 5367 0.4830 +2520 5443 0.7670 +2520 5539 0.9510 +2520 5617 0.5810 +2520 5697 0.7610 +2520 5741 0.8200 +2520 5754 0.5150 +2520 5979 0.4200 +2520 6279 0.5980 +2520 6343 0.9520 +2520 6571 0.6520 +2520 6750 0.9900 +2520 6751 0.4730 +2520 6752 0.7290 +2520 6753 0.4580 +2520 6755 0.4750 +2520 6855 0.6460 +2520 6863 0.8230 +2520 7018 0.4050 +2520 7032 0.7520 +2520 7039 0.4420 +2520 7200 0.4470 +2520 7204 0.4990 +2520 7432 0.8470 +2520 7486 0.4660 +2520 7707 0.5490 +2520 7857 0.4700 +2520 8412 0.6570 +2520 8460 0.9090 +2520 8513 0.4040 +2520 8549 0.4980 +2520 8620 0.6710 +2520 8862 0.4310 +2520 8997 0.4990 +2520 9241 0.7360 +2520 9630 0.4510 +2520 10800 0.5480 +2520 10825 0.5490 +2520 10874 0.5210 +2520 23236 0.4990 +2520 50674 0.7340 +2520 51083 0.5070 +2520 51512 0.6200 +2520 51738 0.8150 +2520 56477 0.9230 +2520 57105 0.5530 +2520 57192 0.7230 +2520 57717 0.5910 +2520 59345 0.4340 +2520 84109 0.5510 +2520 89780 0.6180 +2520 115557 0.4990 +2520 129521 0.4530 +2520 136541 0.4260 +2520 170626 0.6310 +2520 256933 0.4150 +2520 284654 0.7620 +2520 319100 0.4380 +2520 346562 0.4140 +2520 347148 0.6790 +2520 594857 0.5080 +2520 619373 0.5740 +2521 2597 0.5480 +2521 2668 0.4160 +2521 2670 0.4270 +2521 2733 0.4450 +2521 2896 0.7000 +2521 3021 0.4040 +2521 3064 0.7820 +2521 3065 0.6990 +2521 3164 0.4600 +2521 3178 0.9750 +2521 3181 0.9900 +2521 3182 0.6800 +2521 3183 0.9760 +2521 3184 0.9380 +2521 3185 0.7940 +2521 3187 0.9410 +2521 3188 0.8000 +2521 3189 0.4280 +2521 3190 0.9270 +2521 3191 0.9270 +2521 3192 0.9500 +2521 3276 0.9610 +2521 3308 0.4370 +2521 3312 0.4730 +2521 3313 0.6130 +2521 3320 0.4040 +2521 3329 0.4160 +2521 3608 0.8650 +2521 3798 0.4890 +2521 3799 0.4220 +2521 3842 0.9940 +2521 4076 0.7100 +2521 4088 0.4720 +2521 4089 0.4870 +2521 4137 0.9180 +2521 4154 0.5910 +2521 4193 0.5850 +2521 4236 0.5730 +2521 4267 0.6260 +2521 4287 0.4180 +2521 4320 0.4370 +2521 4343 0.6410 +2521 4585 0.4340 +2521 4609 0.6840 +2521 4644 0.5100 +2521 4646 0.4820 +2521 4670 0.9470 +2521 4686 0.4800 +2521 4691 0.7740 +2521 4741 0.5440 +2521 4744 0.7980 +2521 4747 0.6700 +2521 4750 0.5800 +2521 4790 0.5500 +2521 4841 0.9560 +2521 4869 0.5950 +2521 4904 0.9430 +2521 4914 0.5220 +2521 4929 0.5580 +2521 5034 0.5180 +2521 5036 0.4870 +2521 5071 0.5240 +2521 5093 0.6150 +2521 5094 0.6730 +2521 5216 0.6680 +2521 5245 0.4160 +2521 5356 0.4140 +2521 5394 0.5710 +2521 5411 0.4560 +2521 5431 0.4660 +2521 5442 0.4040 +2521 5460 0.5620 +2521 5514 0.4040 +2521 5599 0.4410 +2521 5621 0.5720 +2521 5663 0.5550 +2521 5664 0.5070 +2521 5725 0.8520 +2521 5813 0.4400 +2521 5885 0.4630 +2521 5914 0.4640 +2521 5928 0.4360 +2521 5970 0.5960 +2521 5976 0.5650 +2521 6047 0.4040 +2521 6124 0.4480 +2521 6125 0.4520 +2521 6135 0.4140 +2521 6141 0.4060 +2521 6175 0.4030 +2521 6188 0.4420 +2521 6194 0.4610 +2521 6208 0.4340 +2521 6224 0.4850 +2521 6231 0.4940 +2521 6240 0.5050 +2521 6241 0.4570 +2521 6256 0.4180 +2521 6294 0.7700 +2521 6311 0.9240 +2521 6421 0.9850 +2521 6426 0.8680 +2521 6427 0.9500 +2521 6428 0.8270 +2521 6429 0.5460 +2521 6430 0.6910 +2521 6431 0.6870 +2521 6432 0.6860 +2521 6434 0.7790 +2521 6506 0.4460 +2521 6597 0.8730 +2521 6598 0.7080 +2521 6599 0.4550 +2521 6601 0.4970 +2521 6606 0.9210 +2521 6607 0.8200 +2521 6622 0.6980 +2521 6625 0.8840 +2521 6626 0.5930 +2521 6628 0.6240 +2521 6631 0.8160 +2521 6632 0.6730 +2521 6633 0.5750 +2521 6634 0.5770 +2521 6635 0.5610 +2521 6647 0.9920 +2521 6657 0.4960 +2521 6688 0.6310 +2521 6757 0.4340 +2521 6760 0.4950 +2521 6780 0.6200 +2521 6936 0.5070 +2521 6938 0.6710 +2521 7072 0.8480 +2521 7073 0.7790 +2521 7113 0.4420 +2521 7124 0.5100 +2521 7157 0.5360 +2521 7158 0.5120 +2521 7266 0.6850 +2521 7277 0.5130 +2521 7307 0.5140 +2521 7329 0.5500 +2521 7345 0.4630 +2521 7415 0.8320 +2521 7458 0.4260 +2521 7514 0.5440 +2521 7534 0.4530 +2521 7536 0.6540 +2521 7750 0.5950 +2521 7919 0.5250 +2521 8013 0.7790 +2521 8087 0.6490 +2521 8106 0.6260 +2521 8148 0.8180 +2521 8175 0.6400 +2521 8241 0.6250 +2521 8289 0.7030 +2521 8301 0.4540 +2521 8337 0.4780 +2521 8338 0.4760 +2521 8361 0.6650 +2521 8453 0.4980 +2521 8487 0.4360 +2521 8554 0.4540 +2521 8570 0.5480 +2521 8683 0.7570 +2521 8761 0.5380 +2521 8878 0.7950 +2521 8880 0.4900 +2521 8886 0.5210 +2521 9045 0.4070 +2521 9094 0.5320 +2521 9188 0.5710 +2521 9217 0.8470 +2521 9295 0.6350 +2521 9343 0.5540 +2521 9444 0.7580 +2521 9513 0.5160 +2521 9584 0.6150 +2521 9646 0.6030 +2521 9656 0.5150 +2521 9667 0.6120 +2521 9774 0.5190 +2521 9775 0.9020 +2521 9782 0.9580 +2521 9896 0.7370 +2521 9898 0.4710 +2521 9908 0.5930 +2521 9967 0.6990 +2521 9987 0.9180 +2521 10013 0.4660 +2521 10133 0.9480 +2521 10146 0.8500 +2521 10150 0.4890 +2521 10180 0.5340 +2521 10189 0.4530 +2521 10212 0.7870 +2521 10236 0.8690 +2521 10250 0.5520 +2521 10270 0.4350 +2521 10280 0.5420 +2521 10291 0.5690 +2521 10432 0.8140 +2521 10482 0.4930 +2521 10492 0.6830 +2521 10521 0.8730 +2521 10524 0.6540 +2521 10594 0.5650 +2521 10614 0.4900 +2521 10642 0.5940 +2521 10643 0.7090 +2521 10657 0.8090 +2521 10658 0.5430 +2521 10664 0.6750 +2521 10772 0.9850 +2521 10929 0.4950 +2521 10946 0.5620 +2521 10949 0.5690 +2521 10953 0.4920 +2521 10971 0.4720 +2521 10992 0.5820 +2521 11016 0.4880 +2521 11051 0.4400 +2521 11052 0.4860 +2521 11100 0.6540 +2521 11171 0.4910 +2521 11198 0.4390 +2521 11218 0.5030 +2521 11273 0.4790 +2521 11315 0.5970 +2521 11325 0.5480 +2521 11338 0.5650 +2521 22803 0.5930 +2521 22907 0.5610 +2521 22913 0.7120 +2521 22985 0.5630 +2521 23020 0.8140 +2521 23025 0.5050 +2521 23034 0.4930 +2521 23060 0.4920 +2521 23064 0.8870 +2521 23210 0.4210 +2521 23217 0.4340 +2521 23350 0.7180 +2521 23361 0.4840 +2521 23367 0.6350 +2521 23369 0.4440 +2521 23405 0.8480 +2521 23411 0.5160 +2521 23435 0.9990 +2521 23450 0.5860 +2521 23451 0.6370 +2521 23476 0.4640 +2521 23517 0.5280 +2521 23598 0.6140 +2521 23704 0.4370 +2521 24142 0.4180 +2521 24144 0.5310 +2521 24148 0.4580 +2521 25804 0.5100 +2521 25929 0.4920 +2521 25940 0.4870 +2521 25978 0.7800 +2521 26227 0.5370 +2521 26471 0.6180 +2521 26986 0.8600 +2521 27161 0.6350 +2521 27288 0.4810 +2521 27316 0.9000 +2521 27336 0.7560 +2521 29102 0.9920 +2521 29107 0.4010 +2521 29110 0.6180 +2521 29115 0.4180 +2521 29894 0.6140 +2521 29896 0.6540 +2521 29978 0.9520 +2521 50628 0.4510 +2521 50944 0.4700 +2521 51493 0.5900 +2521 51574 0.5560 +2521 51593 0.5690 +2521 51637 0.4320 +2521 51692 0.5840 +2521 51710 0.4780 +2521 54209 0.4180 +2521 54464 0.5370 +2521 54487 0.6900 +2521 54514 0.5760 +2521 54606 0.4550 +2521 54664 0.4480 +2521 55070 0.4320 +2521 55082 0.4110 +2521 55177 0.4790 +2521 55269 0.8630 +2521 55311 0.4390 +2521 55421 0.4320 +2521 55596 0.4920 +2521 55749 0.4570 +2521 55796 0.4880 +2521 56257 0.4520 +2521 56339 0.4080 +2521 56341 0.5030 +2521 57107 0.5090 +2521 57187 0.4020 +2521 57492 0.4270 +2521 57679 0.8220 +2521 58155 0.4730 +2521 58517 0.4430 +2521 64283 0.5210 +2521 64332 0.4570 +2521 64764 0.8880 +2521 65018 0.4680 +2521 65109 0.5350 +2521 79074 0.4990 +2521 79084 0.4190 +2521 79689 0.5960 +2521 79727 0.5840 +2521 79833 0.4040 +2521 80208 0.6030 +2521 80218 0.4880 +2521 80335 0.4590 +2521 80818 0.4740 +2521 83443 0.4350 +2521 83641 0.4050 +2521 84324 0.7440 +2521 84787 0.4230 +2521 84991 0.4070 +2521 85409 0.4250 +2521 85417 0.4160 +2521 90993 0.7080 +2521 115560 0.4730 +2521 120892 0.4780 +2521 124245 0.6120 +2521 128209 0.4630 +2521 129831 0.5530 +2521 135295 0.7980 +2521 143884 0.5110 +2521 146713 0.4180 +2521 148266 0.4530 +2521 149041 0.5130 +2521 170506 0.6760 +2521 196528 0.4930 +2521 203228 0.9290 +2521 220988 0.9310 +2521 284390 0.4750 +2521 284695 0.6530 +2521 343069 0.5580 +2521 400916 0.6680 +2521 100288687 0.5910 +2521 100526737 0.7090 +2524 2525 0.9970 +2524 2526 0.9860 +2524 2527 0.9860 +2524 2528 0.9880 +2524 2529 0.5880 +2524 2530 0.6600 +2524 2651 0.9330 +2524 2683 0.9330 +2524 2762 0.5770 +2524 3047 0.7250 +2524 3172 0.4530 +2524 3792 0.5550 +2524 4059 0.4950 +2524 4218 0.4300 +2524 5530 0.5110 +2524 5877 0.6690 +2524 6401 0.5880 +2524 6431 0.4140 +2524 6480 0.4250 +2524 6482 0.9400 +2524 6483 0.9310 +2524 6484 0.9430 +2524 6487 0.4260 +2524 6521 0.4030 +2524 6563 0.4420 +2524 6947 0.4840 +2524 6948 0.4220 +2524 7084 0.4260 +2524 7579 0.4010 +2524 7846 0.4290 +2524 8029 0.4120 +2524 8128 0.4400 +2524 8302 0.4310 +2524 8518 0.6300 +2524 8567 0.4130 +2524 8702 0.9200 +2524 8703 0.9140 +2524 8704 0.9210 +2524 8706 0.5000 +2524 8707 0.9270 +2524 8708 0.9350 +2524 8879 0.5190 +2524 9245 0.4830 +2524 10317 0.9580 +2524 10331 0.9500 +2524 10402 0.9290 +2524 10678 0.9300 +2524 10690 0.9600 +2524 10855 0.4500 +2524 11336 0.4200 +2524 23275 0.4690 +2524 26040 0.7780 +2524 50616 0.4330 +2524 54536 0.9590 +2524 54854 0.4300 +2524 55140 0.5640 +2524 55343 0.5690 +2524 55763 0.7000 +2524 56913 0.4880 +2524 57595 0.5050 +2524 58985 0.4230 +2524 64127 0.5090 +2524 79369 0.9210 +2524 83642 0.4800 +2524 114625 0.4130 +2524 117177 0.5430 +2524 127550 0.4300 +2524 130120 0.4480 +2524 146722 0.4370 +2524 170384 0.5700 +2525 2526 0.9140 +2525 2527 0.9140 +2525 2528 0.9240 +2525 2530 0.7060 +2525 2650 0.4740 +2525 2651 0.9400 +2525 2683 0.9510 +2525 3047 0.6460 +2525 4025 0.4020 +2525 4249 0.5070 +2525 5004 0.5010 +2525 5005 0.5240 +2525 5265 0.4070 +2525 5803 0.4970 +2525 6401 0.6470 +2525 6403 0.5730 +2525 6450 0.4040 +2525 6480 0.5010 +2525 6482 0.4930 +2525 6483 0.4300 +2525 6484 0.9520 +2525 6487 0.6390 +2525 6489 0.9190 +2525 6693 0.4520 +2525 8702 0.9220 +2525 8703 0.9160 +2525 8704 0.9150 +2525 8707 0.9150 +2525 8708 0.9270 +2525 9245 0.4990 +2525 9514 0.5560 +2525 10317 0.9530 +2525 10331 0.9580 +2525 10402 0.9510 +2525 10678 0.9280 +2525 10690 0.9110 +2525 23275 0.4420 +2525 23509 0.6030 +2525 54097 0.6930 +2525 55808 0.4620 +2525 56913 0.5010 +2525 64090 0.6680 +2525 79369 0.9200 +2525 84002 0.4240 +2525 89792 0.7910 +2525 192134 0.4250 +2526 2527 0.9140 +2526 2528 0.9140 +2526 2529 0.9110 +2526 2530 0.5720 +2526 2597 0.4520 +2526 2626 0.4180 +2526 2650 0.4270 +2526 2651 0.9200 +2526 2670 0.4770 +2526 2683 0.9270 +2526 2734 0.4890 +2526 2762 0.5660 +2526 2838 0.4180 +2526 2993 0.6690 +2526 3002 0.4190 +2526 3113 0.4830 +2526 3383 0.4340 +2526 3458 0.5370 +2526 3476 0.4220 +2526 3553 0.4570 +2526 3558 0.4260 +2526 3562 0.4460 +2526 3563 0.6670 +2526 3565 0.4120 +2526 3566 0.4360 +2526 3569 0.5130 +2526 3575 0.4060 +2526 3576 0.4460 +2526 3579 0.4710 +2526 3586 0.4800 +2526 3620 0.4210 +2526 3655 0.5060 +2526 3674 0.5410 +2526 3676 0.4200 +2526 3683 0.4090 +2526 3684 0.7940 +2526 3687 0.6060 +2526 3688 0.4800 +2526 3689 0.4780 +2526 3690 0.5070 +2526 3791 0.4270 +2526 3815 0.7210 +2526 3852 0.4190 +2526 3855 0.4640 +2526 3897 0.4550 +2526 3976 0.5450 +2526 3996 0.4470 +2526 4072 0.5070 +2526 4254 0.4940 +2526 4267 0.4470 +2526 4311 0.8240 +2526 4353 0.6790 +2526 4440 0.4180 +2526 4609 0.5800 +2526 4684 0.7880 +2526 4869 0.4180 +2526 4907 0.4790 +2526 4973 0.6530 +2526 5079 0.6970 +2526 5080 0.4190 +2526 5156 0.4120 +2526 5175 0.5710 +2526 5450 0.5050 +2526 5460 0.7760 +2526 5788 0.7820 +2526 5914 0.4320 +2526 6347 0.5380 +2526 6382 0.5120 +2526 6401 0.9790 +2526 6402 0.7190 +2526 6403 0.7350 +2526 6484 0.4590 +2526 6487 0.4500 +2526 6489 0.9030 +2526 6657 0.7270 +2526 6693 0.6000 +2526 6774 0.4750 +2526 7037 0.5490 +2526 7070 0.5820 +2526 7072 0.4540 +2526 7124 0.4970 +2526 7157 0.4470 +2526 7490 0.4400 +2526 7852 0.5100 +2526 8433 0.4390 +2526 8702 0.9250 +2526 8703 0.9100 +2526 8704 0.9160 +2526 8842 0.7120 +2526 9260 0.4160 +2526 9314 0.6530 +2526 9332 0.5260 +2526 9573 0.4110 +2526 10215 0.4460 +2526 10331 0.9270 +2526 10332 0.4850 +2526 10402 0.9340 +2526 10678 0.9250 +2526 10690 0.9130 +2526 10763 0.6530 +2526 27087 0.5450 +2526 29126 0.5440 +2526 30835 0.7510 +2526 50943 0.5070 +2526 54514 0.4150 +2526 55343 0.6660 +2526 57167 0.4060 +2526 63978 0.4590 +2526 64321 0.4360 +2526 79369 0.9090 +2526 79727 0.4790 +2526 79923 0.7740 +2526 132625 0.4220 +2526 143689 0.4750 +2526 359787 0.4180 +2526 100133941 0.5760 +2526 102723407 0.4690 +2527 2528 0.9050 +2527 2530 0.6500 +2527 2651 0.9140 +2527 2683 0.9700 +2527 4249 0.4030 +2527 4298 0.4940 +2527 5004 0.5420 +2527 5005 0.5450 +2527 5265 0.4340 +2527 5989 0.4920 +2527 5990 0.4970 +2527 5991 0.6450 +2527 6156 0.6600 +2527 6401 0.4530 +2527 6480 0.4690 +2527 6484 0.5330 +2527 6487 0.5680 +2527 6489 0.9190 +2527 8702 0.9280 +2527 8703 0.9080 +2527 8704 0.9150 +2527 10331 0.9230 +2527 10402 0.9230 +2527 10678 0.9410 +2527 10690 0.9100 +2527 23275 0.4190 +2527 23509 0.5490 +2527 79369 0.9070 +2528 2530 0.7630 +2528 2650 0.5140 +2528 2651 0.9200 +2528 2683 0.9850 +2528 3906 0.4360 +2528 4249 0.5680 +2528 5004 0.5440 +2528 5005 0.5470 +2528 5265 0.4720 +2528 6401 0.7090 +2528 6403 0.6440 +2528 6404 0.4190 +2528 6480 0.5630 +2528 6482 0.5290 +2528 6484 0.6000 +2528 6487 0.6120 +2528 6489 0.9190 +2528 6947 0.4050 +2528 6948 0.4230 +2528 8702 0.9210 +2528 8703 0.9160 +2528 8704 0.9270 +2528 8708 0.5120 +2528 9245 0.4360 +2528 10331 0.9460 +2528 10402 0.9450 +2528 10678 0.9280 +2528 10690 0.9100 +2528 11226 0.4310 +2528 23275 0.4160 +2528 23509 0.4900 +2528 54097 0.4080 +2528 56913 0.4490 +2528 79369 0.9100 +2528 81491 0.4180 +2528 114792 0.4500 +2528 124872 0.6520 +2529 2530 0.6880 +2529 2625 0.5390 +2529 2650 0.7180 +2529 2734 0.4750 +2529 3702 0.4980 +2529 4249 0.4380 +2529 6401 0.8670 +2529 6402 0.7000 +2529 6403 0.8910 +2529 6404 0.8120 +2529 6480 0.5010 +2529 6482 0.5990 +2529 6483 0.4040 +2529 6484 0.6960 +2529 6487 0.5920 +2529 6489 0.9220 +2529 6775 0.4480 +2529 7124 0.5760 +2529 7294 0.5100 +2529 7431 0.4190 +2529 8174 0.4240 +2529 8702 0.4330 +2529 8841 0.5550 +2529 9435 0.4480 +2529 10014 0.5670 +2529 10164 0.6810 +2529 10331 0.4760 +2529 10402 0.9600 +2529 23275 0.5160 +2529 23509 0.5040 +2529 27033 0.7380 +2529 27090 0.4440 +2529 30009 0.6110 +2529 51696 0.8220 +2529 55343 0.4880 +2529 56913 0.4420 +2529 123803 0.5500 +2529 124460 0.6990 +2530 2589 0.4250 +2530 2650 0.4530 +2530 2651 0.4440 +2530 2683 0.9680 +2530 2762 0.6930 +2530 4121 0.5450 +2530 4122 0.9740 +2530 4124 0.9750 +2530 4245 0.7670 +2530 4247 0.9680 +2530 4248 0.9700 +2530 4249 0.7720 +2530 4321 0.5280 +2530 4322 0.5700 +2530 6184 0.5070 +2530 6480 0.7360 +2530 6482 0.5470 +2530 6483 0.4200 +2530 6484 0.6590 +2530 6487 0.5450 +2530 7040 0.5130 +2530 7048 0.5990 +2530 7264 0.6190 +2530 8631 0.4140 +2530 8702 0.4900 +2530 8703 0.9460 +2530 8704 0.9590 +2530 8706 0.4470 +2530 9245 0.4030 +2530 9334 0.4510 +2530 10317 0.4490 +2530 10331 0.4190 +2530 10402 0.4510 +2530 10678 0.5190 +2530 10690 0.7230 +2530 10905 0.4580 +2530 11226 0.4260 +2530 11253 0.4740 +2530 11282 0.9640 +2530 11320 0.9590 +2530 23275 0.7040 +2530 23433 0.4210 +2530 23509 0.7300 +2530 29071 0.4220 +2530 51006 0.4210 +2530 55343 0.7120 +2530 55692 0.4630 +2530 56913 0.5980 +2530 57134 0.4330 +2530 64772 0.4560 +2530 83483 0.4200 +2530 84620 0.4350 +2530 84750 0.4380 +2530 146664 0.5640 +2530 152586 0.9180 +2530 170384 0.7290 +2530 197258 0.5090 +2530 201514 0.4790 +2530 283358 0.9320 +2530 338707 0.9120 +2531 2657 0.6550 +2531 2707 0.4810 +2531 6185 0.4790 +2531 6609 0.5470 +2531 6610 0.5190 +2531 6785 0.4180 +2531 7357 0.6810 +2531 7923 0.4270 +2531 8560 0.9740 +2531 8611 0.4660 +2531 8612 0.9290 +2531 8613 0.9170 +2531 8877 0.9630 +2531 8879 0.5670 +2531 8915 0.4910 +2531 9334 0.4250 +2531 9517 0.9900 +2531 10026 0.4050 +2531 10087 0.4770 +2531 10558 0.9960 +2531 10892 0.5750 +2531 23464 0.4970 +2531 29956 0.9740 +2531 51763 0.4910 +2531 55304 0.9890 +2531 55331 0.9450 +2531 56624 0.9540 +2531 56848 0.9630 +2531 57704 0.4520 +2531 64781 0.7460 +2531 79152 0.4520 +2531 79603 0.9650 +2531 81537 0.9420 +2531 83723 0.5530 +2531 85007 0.4610 +2531 91012 0.9670 +2531 112724 0.7240 +2531 123099 0.9670 +2531 125981 0.5400 +2531 130367 0.9300 +2531 140862 0.6640 +2531 142891 0.4370 +2531 145501 0.6610 +2531 166929 0.5540 +2531 171546 0.5640 +2531 204219 0.9690 +2531 253782 0.9750 +2531 259230 0.6340 +2531 340485 0.5290 +2531 375298 0.4040 +2532 2533 0.8100 +2532 2623 0.6440 +2532 2919 0.9930 +2532 2920 0.5050 +2532 2921 0.6260 +2532 2993 0.6720 +2532 2994 0.7350 +2532 2995 0.8770 +2532 2996 0.6530 +2532 3043 0.6170 +2532 3046 0.4330 +2532 3053 0.4510 +2532 3458 0.4480 +2532 3569 0.6150 +2532 3576 0.9990 +2532 3577 0.7140 +2532 3579 0.5160 +2532 3589 0.4100 +2532 3732 0.9730 +2532 3792 0.5020 +2532 4049 0.4200 +2532 4050 0.5630 +2532 4055 0.5770 +2532 4254 0.4200 +2532 4948 0.4010 +2532 5126 0.4520 +2532 5196 0.6200 +2532 5473 0.8360 +2532 5818 0.9940 +2532 5819 0.9860 +2532 6006 0.4180 +2532 6347 0.9940 +2532 6348 0.5930 +2532 6354 0.5570 +2532 6355 0.5420 +2532 6356 0.7530 +2532 6357 0.5880 +2532 6358 0.6670 +2532 6359 0.4640 +2532 6363 0.5830 +2532 6366 0.5990 +2532 6373 0.5130 +2532 6374 0.8970 +2532 6387 0.4760 +2532 6403 0.5010 +2532 6521 0.5250 +2532 6563 0.4060 +2532 6708 0.4410 +2532 6909 0.5030 +2532 7122 0.4250 +2532 7124 0.4720 +2532 7133 0.4140 +2532 7189 0.4690 +2532 7450 0.5010 +2532 7852 0.6910 +2532 7936 0.4270 +2532 8740 0.8840 +2532 8742 0.4830 +2532 8764 0.9980 +2532 8771 0.4610 +2532 8817 0.4460 +2532 8822 0.4670 +2532 8823 0.4420 +2532 9034 0.4550 +2532 9956 0.4840 +2532 9966 0.5520 +2532 10369 0.4370 +2532 10673 0.4730 +2532 10690 0.4400 +2532 10969 0.5240 +2532 11126 0.6960 +2532 26281 0.4520 +2532 27006 0.4430 +2532 30816 0.5910 +2532 30834 0.4530 +2532 51554 0.7470 +2532 55503 0.4130 +2532 57007 0.6210 +2532 57863 0.5990 +2532 58191 0.5150 +2532 83483 0.6030 +2532 84868 0.4340 +2532 90865 0.5120 +2532 91937 0.4780 +2532 151888 0.7880 +2532 222537 0.7900 +2532 283652 0.6040 +2532 399697 0.4610 +2532 414062 0.5510 +2532 414325 0.4160 +2533 2534 0.9770 +2533 2623 0.5990 +2533 2648 0.4020 +2533 2885 0.8410 +2533 3055 0.4450 +2533 3383 0.5120 +2533 3384 0.4770 +2533 3575 0.5760 +2533 3635 0.4370 +2533 3683 0.4970 +2533 3689 0.6170 +2533 3702 0.7760 +2533 3792 0.5130 +2533 3936 0.4560 +2533 3937 0.9990 +2533 4067 0.4780 +2533 4068 0.5240 +2533 4332 0.4590 +2533 4542 0.4140 +2533 4690 0.8720 +2533 5196 0.4780 +2533 5295 0.4130 +2533 5335 0.7700 +2533 5336 0.6020 +2533 5341 0.5740 +2533 5588 0.4780 +2533 5747 0.6620 +2533 5777 0.4490 +2533 5788 0.6790 +2533 5829 0.6480 +2533 5880 0.4020 +2533 5921 0.6090 +2533 6006 0.4840 +2533 6007 0.5450 +2533 6039 0.4130 +2533 6402 0.4320 +2533 6404 0.4750 +2533 6464 0.4320 +2533 6503 0.4420 +2533 6688 0.4130 +2533 6714 0.5860 +2533 6850 0.5040 +2533 7094 0.6430 +2533 7096 0.4180 +2533 7305 0.4990 +2533 7329 0.5710 +2533 7408 0.8590 +2533 7409 0.9530 +2533 7410 0.5040 +2533 7454 0.6400 +2533 7456 0.4040 +2533 7535 0.6280 +2533 7791 0.4250 +2533 7805 0.4780 +2533 8440 0.5430 +2533 8517 0.4110 +2533 8631 0.9980 +2533 8831 0.4040 +2533 8850 0.4170 +2533 8915 0.8030 +2533 8935 0.9810 +2533 9019 0.4310 +2533 9402 0.9800 +2533 9450 0.5840 +2533 9564 0.6670 +2533 9595 0.4100 +2533 10261 0.5130 +2533 10320 0.4730 +2533 10451 0.5500 +2533 10673 0.4130 +2533 10750 0.7720 +2533 10892 0.6170 +2533 11033 0.4310 +2533 11184 0.6150 +2533 11314 0.5580 +2533 23765 0.4450 +2533 26191 0.5730 +2533 27040 0.8110 +2533 27071 0.4470 +2533 28988 0.5200 +2533 50852 0.4010 +2533 51311 0.4230 +2533 51466 0.7070 +2533 54440 0.4350 +2533 54518 0.9260 +2533 55303 0.4730 +2533 55740 0.5450 +2533 55803 0.4370 +2533 64407 0.4550 +2533 80342 0.5530 +2533 81704 0.5140 +2533 83593 0.7540 +2533 83660 0.6120 +2533 83706 0.7500 +2533 84106 0.5510 +2533 84433 0.8820 +2533 121355 0.4110 +2533 140885 0.8340 +2533 168537 0.4210 +2533 170575 0.4250 +2533 342618 0.4050 +2534 2597 0.4930 +2534 2625 0.5410 +2534 2775 0.5060 +2534 2782 0.4160 +2534 2885 0.9800 +2534 2887 0.6520 +2534 2889 0.6590 +2534 2890 0.4510 +2534 2902 0.7430 +2534 2903 0.9810 +2534 2904 0.9930 +2534 2908 0.4680 +2534 2909 0.5020 +2534 2911 0.4500 +2534 2915 0.4710 +2534 2931 0.5110 +2534 2932 0.7230 +2534 2934 0.5170 +2534 3055 0.8100 +2534 3059 0.7960 +2534 3084 0.7090 +2534 3093 0.4800 +2534 3122 0.4680 +2534 3133 0.5790 +2534 3190 0.5710 +2534 3191 0.4120 +2534 3265 0.8550 +2534 3299 0.4010 +2534 3303 0.4480 +2534 3304 0.5620 +2534 3320 0.8960 +2534 3326 0.8210 +2534 3329 0.6270 +2534 3362 0.6690 +2534 3383 0.5900 +2534 3398 0.4280 +2534 3417 0.4570 +2534 3458 0.4580 +2534 3553 0.5860 +2534 3557 0.4060 +2534 3558 0.6610 +2534 3559 0.5030 +2534 3560 0.4080 +2534 3561 0.5390 +2534 3569 0.4260 +2534 3575 0.7240 +2534 3600 0.5450 +2534 3603 0.4560 +2534 3605 0.4240 +2534 3630 0.6370 +2534 3635 0.6980 +2534 3636 0.8320 +2534 3643 0.4180 +2534 3667 0.9230 +2534 3672 0.4510 +2534 3688 0.9230 +2534 3694 0.4910 +2534 3702 0.7750 +2534 3708 0.5920 +2534 3710 0.5680 +2534 3716 0.5880 +2534 3717 0.7770 +2534 3725 0.5580 +2534 3738 0.6130 +2534 3741 0.7340 +2534 3745 0.4850 +2534 3791 0.8070 +2534 3815 0.7710 +2534 3822 0.5880 +2534 3824 0.6660 +2534 3845 0.6850 +2534 3852 0.4160 +2534 3861 0.4320 +2534 3937 0.9930 +2534 3984 0.6320 +2534 3996 0.4060 +2534 4035 0.5180 +2534 4041 0.5070 +2534 4063 0.4150 +2534 4067 0.9960 +2534 4068 0.9990 +2534 4087 0.6050 +2534 4099 0.7240 +2534 4131 0.5450 +2534 4133 0.6340 +2534 4137 0.9940 +2534 4155 0.4620 +2534 4162 0.6270 +2534 4254 0.5600 +2534 4355 0.4520 +2534 4478 0.4990 +2534 4609 0.4310 +2534 4684 0.9080 +2534 4690 0.9600 +2534 4739 0.6680 +2534 4756 0.4550 +2534 4790 0.6360 +2534 4792 0.5540 +2534 4836 0.4060 +2534 4868 0.9740 +2534 4893 0.6690 +2534 4897 0.6060 +2534 4915 0.8840 +2534 5058 0.5730 +2534 5062 0.6660 +2534 5063 0.5600 +2534 5144 0.5730 +2534 5156 0.4480 +2534 5159 0.8910 +2534 5170 0.7410 +2534 5175 0.8700 +2534 5290 0.9510 +2534 5291 0.9510 +2534 5293 0.9360 +2534 5294 0.7500 +2534 5295 0.9880 +2534 5296 0.9550 +2534 5335 0.9040 +2534 5336 0.9360 +2534 5341 0.4280 +2534 5348 0.4230 +2534 5361 0.9220 +2534 5362 0.9250 +2534 5443 0.4310 +2534 5515 0.6270 +2534 5516 0.7260 +2534 5518 0.5310 +2534 5519 0.5170 +2534 5525 0.5490 +2534 5526 0.5320 +2534 5527 0.5530 +2534 5528 0.5330 +2534 5529 0.5540 +2534 5551 0.4140 +2534 5566 0.5480 +2534 5567 0.6140 +2534 5568 0.5480 +2534 5578 0.5140 +2534 5580 0.8740 +2534 5582 0.4310 +2534 5588 0.8280 +2534 5594 0.5260 +2534 5599 0.6560 +2534 5600 0.5940 +2534 5601 0.5150 +2534 5603 0.5960 +2534 5621 0.9900 +2534 5649 0.5020 +2534 5663 0.4570 +2534 5728 0.6570 +2534 5747 0.9980 +2534 5770 0.4420 +2534 5771 0.5530 +2534 5774 0.4880 +2534 5777 0.8100 +2534 5781 0.9880 +2534 5782 0.4280 +2534 5788 0.9880 +2534 5791 0.4710 +2534 5792 0.4720 +2534 5795 0.7200 +2534 5803 0.5300 +2534 5805 0.4590 +2534 5817 0.4710 +2534 5819 0.4610 +2534 5829 0.9030 +2534 5877 0.4740 +2534 5879 0.6260 +2534 5880 0.9560 +2534 5881 0.9200 +2534 5894 0.6750 +2534 5962 0.5220 +2534 5970 0.5380 +2534 6091 0.4980 +2534 6195 0.4440 +2534 6197 0.5660 +2534 6198 0.4640 +2534 6233 0.5390 +2534 6237 0.6720 +2534 6300 0.5970 +2534 6331 0.5290 +2534 6334 0.5380 +2534 6452 0.6480 +2534 6464 0.9950 +2534 6504 0.9480 +2534 6591 0.4920 +2534 6622 0.8360 +2534 6654 0.8500 +2534 6655 0.4820 +2534 6708 0.4160 +2534 6709 0.4620 +2534 6710 0.4140 +2534 6711 0.4630 +2534 6712 0.4140 +2534 6714 0.9990 +2534 6772 0.7040 +2534 6774 0.8910 +2534 6776 0.8250 +2534 6777 0.7340 +2534 6794 0.7780 +2534 6850 0.9830 +2534 6865 0.4100 +2534 6900 0.5460 +2534 6993 0.5130 +2534 7040 0.4290 +2534 7041 0.4320 +2534 7070 0.6450 +2534 7072 0.4440 +2534 7074 0.7580 +2534 7082 0.4900 +2534 7094 0.7230 +2534 7124 0.6160 +2534 7132 0.5080 +2534 7157 0.6570 +2534 7186 0.9130 +2534 7189 0.9480 +2534 7204 0.5480 +2534 7222 0.5110 +2534 7225 0.6850 +2534 7287 0.4080 +2534 7294 0.5140 +2534 7297 0.5380 +2534 7301 0.4120 +2534 7305 0.9330 +2534 7311 0.5240 +2534 7314 0.5320 +2534 7316 0.5460 +2534 7408 0.6660 +2534 7409 0.9590 +2534 7410 0.6790 +2534 7414 0.4440 +2534 7415 0.4930 +2534 7436 0.6520 +2534 7454 0.9790 +2534 7456 0.4620 +2534 7462 0.6550 +2534 7474 0.5460 +2534 7525 0.9940 +2534 7529 0.4730 +2534 7534 0.4800 +2534 7535 0.9930 +2534 7704 0.4380 +2534 7804 0.4950 +2534 7827 0.5720 +2534 7837 0.4210 +2534 7852 0.4010 +2534 7867 0.5170 +2534 7917 0.7550 +2534 8027 0.4210 +2534 8440 0.6140 +2534 8470 0.4630 +2534 8503 0.9370 +2534 8506 0.5620 +2534 8517 0.4340 +2534 8563 0.8000 +2534 8626 0.4070 +2534 8631 0.9720 +2534 8651 0.5740 +2534 8655 0.4720 +2534 8751 0.5410 +2534 8829 0.8320 +2534 8831 0.5040 +2534 8832 0.5450 +2534 8851 0.5680 +2534 8874 0.6600 +2534 8877 0.6480 +2534 8915 0.5840 +2534 8935 0.8960 +2534 8976 0.8540 +2534 8997 0.4680 +2534 9046 0.7400 +2534 9094 0.5990 +2534 9145 0.4260 +2534 9261 0.5310 +2534 9322 0.4040 +2534 9402 0.9330 +2534 9423 0.8100 +2534 9436 0.4360 +2534 9437 0.6460 +2534 9542 0.4550 +2534 9564 0.9740 +2534 9672 0.4670 +2534 9817 0.4310 +2534 9846 0.9750 +2534 9855 0.5880 +2534 10000 0.6420 +2534 10015 0.6150 +2534 10040 0.6560 +2534 10097 0.5520 +2534 10125 0.4310 +2534 10154 0.4280 +2534 10163 0.5480 +2534 10190 0.5110 +2534 10211 0.5270 +2534 10254 0.4420 +2534 10273 0.5150 +2534 10278 0.8300 +2534 10371 0.6720 +2534 10399 0.8050 +2534 10410 0.4160 +2534 10421 0.4740 +2534 10451 0.7410 +2534 10519 0.4070 +2534 10570 0.5500 +2534 10603 0.5680 +2534 10627 0.5630 +2534 10657 0.9580 +2534 10666 0.5260 +2534 10718 0.4170 +2534 10787 0.4410 +2534 10949 0.4550 +2534 10971 0.6350 +2534 10987 0.4920 +2534 11140 0.4930 +2534 22885 0.4990 +2534 22914 0.6800 +2534 23396 0.5400 +2534 23533 0.5640 +2534 23543 0.5020 +2534 23552 0.4060 +2534 23607 0.7270 +2534 23621 0.4380 +2534 23624 0.9540 +2534 25759 0.9130 +2534 25791 0.5910 +2534 25825 0.9190 +2534 26002 0.4090 +2534 26191 0.4430 +2534 26253 0.4050 +2534 26499 0.6210 +2534 27040 0.8440 +2534 27071 0.4660 +2534 27240 0.5300 +2534 27289 0.6250 +2534 27328 0.6050 +2534 28964 0.5950 +2534 29760 0.8070 +2534 30011 0.7190 +2534 50507 0.5540 +2534 50852 0.4060 +2534 51206 0.9960 +2534 51332 0.4140 +2534 51517 0.8640 +2534 51744 0.9790 +2534 51806 0.6810 +2534 53358 0.9210 +2534 54205 0.5880 +2534 54206 0.4370 +2534 54209 0.5870 +2534 54443 0.4100 +2534 54923 0.5300 +2534 55243 0.7270 +2534 55558 0.9190 +2534 55715 0.6180 +2534 55816 0.5640 +2534 55824 0.9480 +2534 56144 0.6580 +2534 56262 0.4230 +2534 56650 0.4460 +2534 56848 0.6400 +2534 56896 0.5360 +2534 57731 0.4600 +2534 57823 0.5110 +2534 59277 0.4420 +2534 59341 0.5960 +2534 60312 0.4770 +2534 64145 0.4030 +2534 64781 0.4190 +2534 64866 0.4270 +2534 80306 0.4530 +2534 80739 0.5550 +2534 81669 0.4150 +2534 83660 0.4610 +2534 83874 0.4190 +2534 84433 0.6470 +2534 84448 0.4990 +2534 84867 0.7360 +2534 84868 0.8390 +2534 85477 0.5100 +2534 91584 0.9210 +2534 91860 0.6790 +2534 93978 0.4390 +2534 114836 0.5410 +2534 117157 0.6410 +2534 118788 0.4760 +2534 124599 0.4300 +2534 133482 0.5400 +2534 136991 0.4110 +2534 137902 0.4200 +2534 139716 0.7520 +2534 145957 0.4110 +2534 146433 0.5440 +2534 146722 0.5390 +2534 146850 0.5000 +2534 158471 0.5340 +2534 163688 0.6800 +2534 196403 0.6100 +2534 201161 0.5550 +2534 219699 0.6570 +2534 390714 0.4610 +2534 399694 0.9100 +2534 445815 0.4460 +2534 728378 0.5020 +2535 2775 0.6240 +2535 2776 0.9130 +2535 2780 0.7770 +2535 2782 0.5340 +2535 2783 0.5430 +2535 2784 0.5330 +2535 2785 0.4990 +2535 2786 0.5030 +2535 2787 0.5120 +2535 2788 0.5070 +2535 2790 0.4990 +2535 2791 0.5130 +2535 2792 0.5300 +2535 2793 0.5060 +2535 2932 0.7550 +2535 3172 0.4790 +2535 3673 0.6560 +2535 4007 0.4520 +2535 4040 0.9500 +2535 4041 0.9590 +2535 4088 0.4340 +2535 4693 0.6790 +2535 4919 0.7960 +2535 4920 0.8470 +2535 5145 0.4990 +2535 5148 0.5010 +2535 5158 0.5010 +2535 5330 0.5490 +2535 5331 0.5260 +2535 5515 0.5480 +2535 5516 0.5320 +2535 5518 0.5120 +2535 5519 0.4990 +2535 5525 0.5330 +2535 5526 0.5280 +2535 5527 0.5170 +2535 5528 0.5590 +2535 5529 0.5330 +2535 5754 0.6750 +2535 6095 0.8860 +2535 6259 0.9630 +2535 6422 0.9380 +2535 6423 0.7720 +2535 6424 0.7480 +2535 6425 0.6960 +2535 6774 0.4920 +2535 6909 0.4860 +2535 7471 0.9820 +2535 7472 0.9630 +2535 7473 0.8700 +2535 7474 0.9990 +2535 7475 0.9600 +2535 7476 0.9420 +2535 7477 0.9600 +2535 7478 0.8470 +2535 7479 0.9160 +2535 7480 0.8690 +2535 7481 0.9850 +2535 7482 0.8820 +2535 7483 0.8560 +2535 7484 0.8400 +2535 7855 0.7050 +2535 7976 0.6930 +2535 8312 0.8710 +2535 8313 0.7240 +2535 8321 0.7140 +2535 8322 0.5520 +2535 8323 0.5420 +2535 8324 0.7870 +2535 8325 0.7040 +2535 8777 0.4050 +2535 9620 0.4610 +2535 10082 0.5790 +2535 10140 0.6680 +2535 10681 0.5240 +2535 11197 0.6850 +2535 22943 0.7650 +2535 23236 0.5250 +2535 23426 0.4140 +2535 25805 0.9140 +2535 27121 0.6500 +2535 27122 0.4860 +2535 27123 0.6690 +2535 29964 0.4390 +2535 50855 0.5370 +2535 50964 0.5280 +2535 51176 0.5480 +2535 51384 0.9030 +2535 51764 0.4990 +2535 54331 0.5000 +2535 54361 0.9740 +2535 54894 0.9320 +2535 55970 0.5100 +2535 57154 0.5350 +2535 57216 0.7650 +2535 59345 0.5490 +2535 64750 0.5610 +2535 64840 0.4730 +2535 79412 0.4980 +2535 79971 0.4030 +2535 80326 0.8630 +2535 81029 0.9660 +2535 81839 0.5430 +2535 83999 0.5540 +2535 84133 0.9300 +2535 84708 0.4050 +2535 89780 0.9970 +2535 94235 0.4990 +2535 113146 0.4140 +2535 139285 0.5590 +2535 144165 0.4980 +2535 147111 0.4010 +2535 166336 0.4530 +2537 2633 0.6820 +2537 2634 0.4030 +2537 2921 0.4160 +2537 3122 0.4520 +2537 3135 0.5030 +2537 3383 0.4210 +2537 3428 0.5710 +2537 3429 0.8820 +2537 3430 0.9200 +2537 3431 0.4410 +2537 3433 0.8690 +2537 3434 0.9320 +2537 3437 0.9570 +2537 3439 0.7440 +2537 3440 0.6270 +2537 3441 0.5600 +2537 3442 0.5710 +2537 3443 0.5530 +2537 3444 0.5610 +2537 3445 0.5650 +2537 3446 0.5570 +2537 3447 0.5090 +2537 3448 0.5750 +2537 3449 0.5610 +2537 3452 0.5740 +2537 3454 0.4330 +2537 3455 0.4100 +2537 3456 0.4940 +2537 3569 0.5610 +2537 3627 0.5700 +2537 3659 0.6610 +2537 3660 0.4070 +2537 3661 0.4230 +2537 3665 0.9140 +2537 3669 0.6990 +2537 3959 0.4540 +2537 4061 0.8320 +2537 4599 0.9600 +2537 4600 0.8490 +2537 4938 0.9590 +2537 4939 0.9510 +2537 4940 0.9460 +2537 5265 0.4630 +2537 5359 0.6110 +2537 5610 0.8110 +2537 5698 0.4060 +2537 6041 0.4050 +2537 6288 0.4440 +2537 6289 0.4560 +2537 6373 0.4500 +2537 6374 0.4260 +2537 6614 0.4520 +2537 6772 0.9340 +2537 6773 0.8990 +2537 7098 0.6110 +2537 8519 0.8910 +2537 8638 0.9240 +2537 8743 0.6120 +2537 9246 0.6970 +2537 9636 0.9590 +2537 10346 0.5860 +2537 10379 0.9610 +2537 10410 0.8620 +2537 10437 0.4950 +2537 10561 0.9590 +2537 10581 0.6740 +2537 10964 0.9680 +2537 11274 0.8940 +2537 23586 0.7470 +2537 24138 0.7660 +2537 25939 0.7560 +2537 26010 0.4350 +2537 51191 0.8470 +2537 51428 0.4080 +2537 54625 0.4960 +2537 54739 0.9370 +2537 54809 0.5420 +2537 55008 0.7990 +2537 55337 0.6070 +2537 55601 0.8210 +2537 64108 0.6840 +2537 64135 0.8450 +2537 64761 0.6000 +2537 79132 0.5970 +2537 83666 0.6790 +2537 85441 0.5530 +2537 85450 0.4220 +2537 91543 0.9260 +2537 94240 0.7500 +2537 129607 0.7330 +2537 219285 0.5500 +2537 439996 0.4590 +2538 2539 0.9420 +2538 2542 0.9730 +2538 2584 0.4170 +2538 2597 0.5220 +2538 2632 0.4660 +2538 2641 0.8590 +2538 2642 0.5420 +2538 2645 0.9860 +2538 2646 0.4970 +2538 2710 0.4250 +2538 2712 0.4130 +2538 2720 0.9030 +2538 2821 0.9390 +2538 2875 0.5750 +2538 2877 0.4580 +2538 2878 0.4450 +2538 2880 0.4430 +2538 2882 0.4400 +2538 2908 0.4420 +2538 2932 0.5390 +2538 2997 0.5200 +2538 2998 0.6940 +2538 3098 0.9410 +2538 3099 0.9470 +2538 3101 0.9490 +2538 3156 0.5110 +2538 3157 0.4070 +2538 3158 0.4870 +2538 3170 0.4350 +2538 3172 0.6740 +2538 3242 0.4040 +2538 3290 0.4310 +2538 3375 0.4970 +2538 3484 0.5880 +2538 3553 0.4720 +2538 3569 0.4880 +2538 3630 0.9120 +2538 3643 0.4920 +2538 3667 0.6940 +2538 3795 0.5360 +2538 3938 0.9120 +2538 3952 0.6070 +2538 3953 0.4350 +2538 3990 0.5700 +2538 3991 0.4960 +2538 4023 0.4790 +2538 4303 0.7060 +2538 4547 0.5300 +2538 5053 0.5520 +2538 5091 0.7560 +2538 5105 0.9410 +2538 5106 0.9290 +2538 5164 0.4320 +2538 5166 0.5920 +2538 5207 0.4070 +2538 5209 0.4240 +2538 5211 0.4480 +2538 5213 0.7810 +2538 5226 0.4110 +2538 5265 0.6060 +2538 5313 0.6850 +2538 5315 0.4600 +2538 5443 0.4110 +2538 5465 0.7120 +2538 5468 0.7470 +2538 5507 0.5100 +2538 5562 0.4890 +2538 5566 0.4160 +2538 5567 0.4150 +2538 5568 0.4250 +2538 5770 0.4150 +2538 5834 0.7850 +2538 5836 0.7910 +2538 5837 0.7880 +2538 6198 0.4350 +2538 6319 0.7140 +2538 6446 0.5270 +2538 6476 0.5860 +2538 6513 0.5300 +2538 6514 0.8350 +2538 6515 0.4290 +2538 6517 0.7430 +2538 6518 0.5510 +2538 6523 0.4940 +2538 6524 0.4160 +2538 6554 0.6410 +2538 6555 0.5230 +2538 6579 0.5120 +2538 6720 0.7340 +2538 6721 0.4710 +2538 6794 0.4400 +2538 6888 0.8360 +2538 6898 0.6670 +2538 6927 0.6780 +2538 7086 0.8520 +2538 7124 0.4430 +2538 7350 0.5270 +2538 7351 0.4840 +2538 8277 0.8480 +2538 8310 0.4360 +2538 8431 0.6910 +2538 8647 0.6690 +2538 8648 0.4470 +2538 8660 0.6400 +2538 8694 0.4210 +2538 8789 0.5960 +2538 8856 0.4660 +2538 8972 0.5920 +2538 9213 0.4310 +2538 9370 0.6070 +2538 9563 0.9450 +2538 9572 0.6070 +2538 9970 0.4550 +2538 9971 0.7260 +2538 10786 0.6300 +2538 10891 0.8840 +2538 23235 0.4190 +2538 23411 0.5650 +2538 26291 0.5890 +2538 51071 0.8000 +2538 51085 0.7020 +2538 55276 0.9170 +2538 56606 0.4080 +2538 56729 0.6710 +2538 57016 0.8230 +2538 57104 0.4780 +2538 57678 0.6590 +2538 57697 0.5320 +2538 57818 0.9070 +2538 64240 0.4290 +2538 79071 0.4160 +2538 79660 0.4690 +2538 79966 0.6000 +2538 80201 0.9460 +2538 83440 0.9050 +2538 84076 0.8470 +2538 84649 0.4890 +2538 84666 0.6650 +2538 84699 0.5000 +2538 92579 0.9170 +2538 130589 0.9130 +2538 132158 0.8340 +2538 133522 0.5770 +2538 200186 0.6790 +2538 257202 0.4440 +2538 493869 0.4400 +2538 100132074 0.7040 +2539 2597 0.9700 +2539 2618 0.4190 +2539 2632 0.5270 +2539 2645 0.9670 +2539 2673 0.4710 +2539 2710 0.4480 +2539 2712 0.4430 +2539 2729 0.5260 +2539 2730 0.5990 +2539 2739 0.4430 +2539 2745 0.5290 +2539 2746 0.6160 +2539 2747 0.4770 +2539 2752 0.4980 +2539 2762 0.4180 +2539 2805 0.4540 +2539 2806 0.4720 +2539 2819 0.4360 +2539 2820 0.4570 +2539 2821 0.9990 +2539 2875 0.6120 +2539 2877 0.8090 +2539 2878 0.8100 +2539 2879 0.4420 +2539 2880 0.8140 +2539 2882 0.8080 +2539 2936 0.9320 +2539 2997 0.4140 +2539 3035 0.4410 +2539 3043 0.5450 +2539 3046 0.4400 +2539 3091 0.4760 +2539 3098 0.9370 +2539 3099 0.9450 +2539 3101 0.9390 +2539 3156 0.4290 +2539 3162 0.5270 +2539 3240 0.4620 +2539 3251 0.6870 +2539 3290 0.6300 +2539 3291 0.5570 +2539 3308 0.4320 +2539 3315 0.8180 +2539 3316 0.6820 +2539 3417 0.7810 +2539 3418 0.8160 +2539 3419 0.5480 +2539 3421 0.4910 +2539 3558 0.4020 +2539 3569 0.4220 +2539 3630 0.6460 +2539 3684 0.4610 +2539 3843 0.4320 +2539 3948 0.9110 +2539 4097 0.6020 +2539 4191 0.6800 +2539 4199 0.7940 +2539 4200 0.5000 +2539 4351 0.8020 +2539 4354 0.5730 +2539 4513 0.4270 +2539 4522 0.5270 +2539 4609 0.5060 +2539 4780 0.7470 +2539 4860 0.4170 +2539 4952 0.4840 +2539 4967 0.4820 +2539 5009 0.4560 +2539 5052 0.4280 +2539 5091 0.7950 +2539 5105 0.5300 +2539 5106 0.5730 +2539 5161 0.8720 +2539 5162 0.8780 +2539 5163 0.5130 +2539 5164 0.4650 +2539 5207 0.4490 +2539 5208 0.4420 +2539 5209 0.5940 +2539 5210 0.5010 +2539 5211 0.5750 +2539 5213 0.6800 +2539 5214 0.5390 +2539 5223 0.9140 +2539 5224 0.8660 +2539 5226 0.9990 +2539 5230 0.7590 +2539 5232 0.6440 +2539 5236 0.6350 +2539 5238 0.4600 +2539 5239 0.4810 +2539 5277 0.6260 +2539 5313 0.9270 +2539 5315 0.9410 +2539 5347 0.4760 +2539 5447 0.4840 +2539 5464 0.4530 +2539 5465 0.4150 +2539 5468 0.4360 +2539 5471 0.6510 +2539 5631 0.4750 +2539 5634 0.4360 +2539 5832 0.4360 +2539 5834 0.6940 +2539 5836 0.6890 +2539 5837 0.6800 +2539 6120 0.7930 +2539 6240 0.4220 +2539 6389 0.5300 +2539 6390 0.4790 +2539 6391 0.4030 +2539 6470 0.4600 +2539 6472 0.5190 +2539 6513 0.6120 +2539 6514 0.4190 +2539 6515 0.5100 +2539 6517 0.5200 +2539 6536 0.4070 +2539 6603 0.6620 +2539 6647 0.4130 +2539 6648 0.5050 +2539 6652 0.5870 +2539 6720 0.5170 +2539 6888 0.9220 +2539 6898 0.4090 +2539 7038 0.4100 +2539 7086 0.9100 +2539 7124 0.6060 +2539 7157 0.9860 +2539 7167 0.9420 +2539 7172 0.4130 +2539 7295 0.6760 +2539 7296 0.6250 +2539 7358 0.4590 +2539 7360 0.4690 +2539 7498 0.4740 +2539 7837 0.4480 +2539 8266 0.7910 +2539 8277 0.8930 +2539 8309 0.5060 +2539 8789 0.6090 +2539 8802 0.4400 +2539 8833 0.4640 +2539 8877 0.4250 +2539 8972 0.4060 +2539 8988 0.6830 +2539 9104 0.5310 +2539 9123 0.4210 +2539 9360 0.5900 +2539 9370 0.4740 +2539 9380 0.4050 +2539 9562 0.8000 +2539 9563 0.9850 +2539 9817 0.5290 +2539 9942 0.5560 +2539 9945 0.4430 +2539 10000 0.4090 +2539 10007 0.7670 +2539 10020 0.8750 +2539 10298 0.5950 +2539 10587 0.4160 +2539 10797 0.5310 +2539 10873 0.7420 +2539 11181 0.4610 +2539 22933 0.5490 +2539 22934 0.7630 +2539 23411 0.4390 +2539 23530 0.4020 +2539 23657 0.4180 +2539 25796 0.9930 +2539 25828 0.4170 +2539 26227 0.4560 +2539 26330 0.9070 +2539 27068 0.4340 +2539 29968 0.5150 +2539 51071 0.4900 +2539 51167 0.4380 +2539 51608 0.4170 +2539 54205 0.4580 +2539 54575 0.4250 +2539 54576 0.4210 +2539 54577 0.4240 +2539 54578 0.4290 +2539 54657 0.4190 +2539 54658 0.4670 +2539 54995 0.4370 +2539 55276 0.9050 +2539 55902 0.4320 +2539 56729 0.4020 +2539 57016 0.4580 +2539 57103 0.6540 +2539 57469 0.4860 +2539 57818 0.9420 +2539 64080 0.4670 +2539 64434 0.7120 +2539 65220 0.9170 +2539 80201 0.9270 +2539 80347 0.4070 +2539 80777 0.4590 +2539 81570 0.5430 +2539 83440 0.8300 +2539 84076 0.8900 +2539 84532 0.4310 +2539 84706 0.4690 +2539 92483 0.9150 +2539 92579 0.9430 +2539 118881 0.4330 +2539 129831 0.8880 +2539 130589 0.4340 +2539 132789 0.7240 +2539 137902 0.4470 +2539 140809 0.4980 +2539 160287 0.9160 +2539 200895 0.4050 +2539 220074 0.4780 +2539 221823 0.4300 +2539 257202 0.8140 +2539 283209 0.4090 +2539 387712 0.8520 +2539 414328 0.6060 +2539 441531 0.8730 +2539 493869 0.8070 +2539 606495 0.4180 +2539 729020 0.7280 +2539 120356740 0.4150 +2542 2632 0.5720 +2542 2641 0.5300 +2542 2992 0.4300 +2542 2997 0.4600 +2542 2998 0.6490 +2542 3587 0.4890 +2542 4297 0.4470 +2542 5213 0.4100 +2542 5224 0.4900 +2542 5236 0.4150 +2542 5255 0.4480 +2542 5256 0.5240 +2542 5257 0.5760 +2542 5261 0.5130 +2542 5265 0.4810 +2542 5836 0.5060 +2542 6230 0.4420 +2542 6514 0.4350 +2542 6524 0.4240 +2542 6574 0.5260 +2542 7379 0.4210 +2542 10456 0.4480 +2542 10786 0.8020 +2542 28956 0.4430 +2542 51119 0.4470 +2542 57818 0.8360 +2542 79102 0.4730 +2542 84522 0.5740 +2542 92579 0.9000 +2542 157680 0.4730 +2547 2597 0.6100 +2547 2648 0.7270 +2547 2874 0.4320 +2547 2956 0.9920 +2547 3001 0.4360 +2547 3005 0.7060 +2547 3012 0.5470 +2547 3014 0.9880 +2547 3015 0.7520 +2547 3017 0.6730 +2547 3018 0.7640 +2547 3021 0.6100 +2547 3064 0.7740 +2547 3065 0.5820 +2547 3066 0.4460 +2547 3070 0.4970 +2547 3091 0.6940 +2547 3146 0.4040 +2547 3178 0.7410 +2547 3181 0.4510 +2547 3183 0.7020 +2547 3184 0.4560 +2547 3190 0.7380 +2547 3192 0.5660 +2547 3217 0.9710 +2547 3221 0.7230 +2547 3226 0.4470 +2547 3312 0.6250 +2547 3320 0.5330 +2547 3326 0.5740 +2547 3364 0.6400 +2547 3428 0.5610 +2547 3608 0.8280 +2547 3661 0.7300 +2547 3837 0.4950 +2547 3838 0.4820 +2547 3908 0.5180 +2547 3978 0.7440 +2547 3980 0.9940 +2547 3981 0.9990 +2547 4089 0.4290 +2547 4175 0.4090 +2547 4176 0.5880 +2547 4193 0.7150 +2547 4255 0.5470 +2547 4287 0.4530 +2547 4292 0.8340 +2547 4303 0.4290 +2547 4343 0.4460 +2547 4361 0.9870 +2547 4436 0.9790 +2547 4437 0.9290 +2547 4488 0.5760 +2547 4609 0.8360 +2547 4670 0.5520 +2547 4683 0.8990 +2547 4689 0.5570 +2547 4691 0.8750 +2547 4750 0.4010 +2547 4792 0.5620 +2547 4841 0.7190 +2547 4854 0.4300 +2547 4869 0.5240 +2547 4899 0.5110 +2547 4904 0.5990 +2547 4913 0.4670 +2547 4926 0.4840 +2547 4968 0.7140 +2547 4998 0.5970 +2547 4999 0.5040 +2547 5093 0.4700 +2547 5111 0.8190 +2547 5241 0.4120 +2547 5252 0.6650 +2547 5378 0.7290 +2547 5395 0.7570 +2547 5423 0.8100 +2547 5424 0.9620 +2547 5425 0.4910 +2547 5426 0.4600 +2547 5451 0.8410 +2547 5468 0.4520 +2547 5496 0.5590 +2547 5591 0.9990 +2547 5719 0.4960 +2547 5813 0.5250 +2547 5883 0.6630 +2547 5884 0.6940 +2547 5887 0.9460 +2547 5888 0.9300 +2547 5889 0.6750 +2547 5890 0.7500 +2547 5892 0.6470 +2547 5893 0.9690 +2547 5896 0.6300 +2547 5906 0.4410 +2547 5932 0.8620 +2547 5965 0.8980 +2547 5976 0.4690 +2547 5980 0.6910 +2547 5981 0.4250 +2547 5982 0.6770 +2547 5983 0.6730 +2547 5984 0.4550 +2547 5985 0.4100 +2547 6041 0.4300 +2547 6117 0.9340 +2547 6118 0.9240 +2547 6119 0.7900 +2547 6125 0.4690 +2547 6129 0.4270 +2547 6418 0.5830 +2547 6421 0.4410 +2547 6426 0.4870 +2547 6427 0.4290 +2547 6502 0.6140 +2547 6597 0.4310 +2547 6613 0.5670 +2547 6628 0.4310 +2547 6657 0.4160 +2547 6709 0.4240 +2547 6712 0.5230 +2547 6732 0.4020 +2547 6742 0.5180 +2547 6749 0.7470 +2547 6787 0.5600 +2547 6934 0.4610 +2547 6950 0.5780 +2547 7013 0.9220 +2547 7014 0.9730 +2547 7015 0.9640 +2547 7150 0.8430 +2547 7153 0.6860 +2547 7155 0.5260 +2547 7156 0.7310 +2547 7157 0.9550 +2547 7158 0.9840 +2547 7178 0.5840 +2547 7184 0.5140 +2547 7203 0.4720 +2547 7307 0.4340 +2547 7316 0.4130 +2547 7334 0.7130 +2547 7336 0.6150 +2547 7341 0.5090 +2547 7372 0.4180 +2547 7374 0.5200 +2547 7391 0.6560 +2547 7415 0.4150 +2547 7465 0.4740 +2547 7468 0.6340 +2547 7486 0.9980 +2547 7507 0.8690 +2547 7508 0.9790 +2547 7515 0.9850 +2547 7516 0.6360 +2547 7517 0.7570 +2547 7518 0.9990 +2547 7520 0.9990 +2547 7528 0.6550 +2547 7913 0.4840 +2547 8091 0.6430 +2547 8161 0.7990 +2547 8237 0.6090 +2547 8243 0.5960 +2547 8290 0.7900 +2547 8295 0.4720 +2547 8318 0.4440 +2547 8329 0.4070 +2547 8337 0.6860 +2547 8338 0.6650 +2547 8340 0.6800 +2547 8341 0.6750 +2547 8342 0.6770 +2547 8345 0.6770 +2547 8347 0.6740 +2547 8348 0.6960 +2547 8349 0.7800 +2547 8350 0.6830 +2547 8356 0.7620 +2547 8358 0.5440 +2547 8361 0.8840 +2547 8369 0.5560 +2547 8438 0.5270 +2547 8454 0.4060 +2547 8467 0.6940 +2547 8505 0.6100 +2547 8517 0.4300 +2547 8570 0.4490 +2547 8607 0.5170 +2547 8826 0.4080 +2547 8837 0.7140 +2547 8850 0.7300 +2547 8900 0.6710 +2547 8924 0.5150 +2547 8970 0.6770 +2547 9025 0.7940 +2547 9097 0.6230 +2547 9126 0.4170 +2547 9156 0.9510 +2547 9184 0.4310 +2547 9212 0.4620 +2547 9232 0.6410 +2547 9343 0.5400 +2547 9400 0.8180 +2547 9401 0.9310 +2547 9493 0.4910 +2547 9555 0.7690 +2547 9557 0.9010 +2547 9577 0.6080 +2547 9584 0.4290 +2547 9612 0.4450 +2547 9656 0.9450 +2547 9782 0.6030 +2547 9887 0.4510 +2547 9937 0.5490 +2547 10013 0.8130 +2547 10036 0.4090 +2547 10038 0.9290 +2547 10039 0.7690 +2547 10111 0.9090 +2547 10155 0.5380 +2547 10432 0.5650 +2547 10459 0.6250 +2547 10524 0.7510 +2547 10574 0.4230 +2547 10576 0.4220 +2547 10592 0.4590 +2547 10594 0.6140 +2547 10606 0.5090 +2547 10614 0.4270 +2547 10657 0.4630 +2547 10721 0.6400 +2547 10744 0.4830 +2547 10856 0.5050 +2547 10923 0.4340 +2547 10951 0.6280 +2547 10971 0.4720 +2547 10973 0.5780 +2547 11052 0.4510 +2547 11073 0.5350 +2547 11177 0.7820 +2547 11198 0.8000 +2547 11200 0.8120 +2547 11284 0.8470 +2547 11335 0.8600 +2547 11338 0.4810 +2547 22933 0.7080 +2547 22976 0.7330 +2547 23028 0.9230 +2547 23049 0.5170 +2547 23054 0.5830 +2547 23122 0.5580 +2547 23137 0.5980 +2547 23186 0.9140 +2547 23293 0.4920 +2547 23332 0.4690 +2547 23381 0.4510 +2547 23383 0.4050 +2547 23408 0.5400 +2547 23409 0.5080 +2547 23410 0.7990 +2547 23411 0.9160 +2547 23435 0.5440 +2547 23451 0.4240 +2547 23468 0.7690 +2547 23476 0.5980 +2547 23626 0.5950 +2547 25788 0.5920 +2547 25900 0.5520 +2547 25913 0.9200 +2547 26277 0.9130 +2547 27030 0.7100 +2547 27161 0.4110 +2547 27316 0.4070 +2547 27338 0.7570 +2547 27343 0.9050 +2547 27434 0.8490 +2547 28992 0.4740 +2547 29086 0.6450 +2547 29110 0.5620 +2547 29945 0.4240 +2547 51008 0.5470 +2547 51317 0.9100 +2547 51341 0.5300 +2547 51428 0.4850 +2547 51455 0.4480 +2547 51547 0.6540 +2547 51548 0.7990 +2547 51567 0.6600 +2547 51588 0.7630 +2547 51593 0.4180 +2547 51654 0.4310 +2547 51720 0.7020 +2547 51750 0.4600 +2547 54145 0.6810 +2547 54386 0.9540 +2547 54537 0.5370 +2547 54840 0.7140 +2547 54841 0.4780 +2547 54908 0.5600 +2547 54932 0.4690 +2547 55183 0.6390 +2547 55215 0.8090 +2547 55218 0.4830 +2547 55247 0.4650 +2547 55269 0.5010 +2547 55658 0.5060 +2547 55775 0.8020 +2547 56259 0.4410 +2547 56852 0.6000 +2547 56916 0.5060 +2547 57379 0.4090 +2547 57471 0.4320 +2547 57536 0.4560 +2547 57661 0.4050 +2547 57697 0.6360 +2547 64421 0.9970 +2547 64802 0.4020 +2547 64858 0.5480 +2547 78996 0.9050 +2547 79184 0.6080 +2547 79661 0.5280 +2547 79677 0.5370 +2547 79728 0.7750 +2547 79782 0.6200 +2547 79840 0.9990 +2547 79968 0.7160 +2547 79991 0.9340 +2547 80010 0.5100 +2547 80119 0.7600 +2547 80155 0.5990 +2547 80169 0.8110 +2547 80198 0.6720 +2547 81611 0.4410 +2547 81847 0.4920 +2547 83879 0.4540 +2547 83990 0.4280 +2547 84126 0.6180 +2547 84142 0.5730 +2547 84164 0.5430 +2547 84464 0.4230 +2547 85236 0.6780 +2547 91419 0.9410 +2547 91442 0.5010 +2547 91582 0.4740 +2547 92797 0.5740 +2547 113251 0.4260 +2547 115004 0.4190 +2547 115426 0.5230 +2547 116028 0.4800 +2547 116447 0.4740 +2547 125150 0.9000 +2547 126074 0.9020 +2547 126823 0.4180 +2547 128312 0.6800 +2547 134492 0.4160 +2547 139212 0.4370 +2547 147011 0.4070 +2547 149041 0.5100 +2547 165918 0.8030 +2547 170506 0.4340 +2547 200558 0.9920 +2547 220988 0.5450 +2547 221443 0.4510 +2547 254528 0.5590 +2547 255626 0.6740 +2547 286257 0.9980 +2547 340061 0.4970 +2547 348654 0.6200 +2547 440093 0.5980 +2547 440686 0.5980 +2547 440689 0.4030 +2547 548593 0.4370 +2547 653604 0.6050 +2547 100134934 0.7330 +2547 100526737 0.4630 +2547 100533467 0.6450 +2547 102723407 0.4180 +2547 105375355 0.5400 +2548 2629 0.4810 +2548 2632 0.5100 +2548 2717 0.9430 +2548 2992 0.8570 +2548 3098 0.9120 +2548 3099 0.9130 +2548 3101 0.9150 +2548 3280 0.5800 +2548 3920 0.4930 +2548 4125 0.5400 +2548 5589 0.5670 +2548 5834 0.6110 +2548 5836 0.6260 +2548 5837 0.6160 +2548 6476 0.9430 +2548 7841 0.4190 +2548 8972 0.9420 +2548 10020 0.4630 +2548 23193 0.4290 +2548 27151 0.4580 +2548 80201 0.9110 +2548 84572 0.5520 +2548 93432 0.9060 +2548 93974 0.4870 +2549 2668 0.5380 +2549 2674 0.5070 +2549 2675 0.4990 +2549 2676 0.4990 +2549 2885 0.9990 +2549 2889 0.6450 +2549 3082 0.8580 +2549 3084 0.5330 +2549 3320 0.5400 +2549 3480 0.9350 +2549 3570 0.9060 +2549 3643 0.9430 +2549 3667 0.5530 +2549 3717 0.6080 +2549 3791 0.9200 +2549 3815 0.9140 +2549 4067 0.6520 +2549 4215 0.5500 +2549 4233 0.9900 +2549 4486 0.5710 +2549 4690 0.4740 +2549 4902 0.5150 +2549 4908 0.4750 +2549 4909 0.5130 +2549 4914 0.6440 +2549 4915 0.6600 +2549 5156 0.9110 +2549 5159 0.9250 +2549 5266 0.4480 +2549 5289 0.5180 +2549 5290 0.9200 +2549 5291 0.9220 +2549 5293 0.9250 +2549 5294 0.6810 +2549 5295 0.9910 +2549 5296 0.9260 +2549 5335 0.8170 +2549 5598 0.4850 +2549 5623 0.5240 +2549 5781 0.9990 +2549 5783 0.4710 +2549 5795 0.5530 +2549 5829 0.7140 +2549 5867 0.4230 +2549 5877 0.5770 +2549 5879 0.5200 +2549 5906 0.5280 +2549 5908 0.5280 +2549 5921 0.7120 +2549 5979 0.7110 +2549 6093 0.9500 +2549 6464 0.9950 +2549 6654 0.9910 +2549 6655 0.9780 +2549 6714 0.8900 +2549 6774 0.5870 +2549 7039 0.5200 +2549 8074 0.4110 +2549 8503 0.9240 +2549 8660 0.4960 +2549 8817 0.4990 +2549 8822 0.4990 +2549 8823 0.5040 +2549 8891 0.4240 +2549 8976 0.4040 +2549 9048 0.4990 +2549 9365 0.4430 +2549 9402 0.7520 +2549 9475 0.9090 +2549 9530 0.4990 +2549 9542 0.4220 +2549 9846 0.9530 +2549 9965 0.4930 +2549 10332 0.4330 +2549 10488 0.4240 +2549 10718 0.4010 +2549 10750 0.5270 +2549 10818 0.9590 +2549 11140 0.4990 +2549 11160 0.5360 +2549 23163 0.5630 +2549 23533 0.4990 +2549 25759 0.9100 +2549 25827 0.4910 +2549 26281 0.5000 +2549 27006 0.4990 +2549 30849 0.4990 +2549 51603 0.4570 +2549 53358 0.9320 +2549 53916 0.4230 +2549 54106 0.5020 +2549 55824 0.5680 +2549 55914 0.5070 +2549 56288 0.4330 +2549 64096 0.4990 +2549 84961 0.4930 +2549 85440 0.5140 +2549 145957 0.4210 +2549 148327 0.4700 +2549 152831 0.4510 +2549 197335 0.4260 +2549 255324 0.4620 +2549 399694 0.9050 +2550 2554 0.8730 +2550 2555 0.7720 +2550 2556 0.7540 +2550 2557 0.7370 +2550 2558 0.8480 +2550 2559 0.7000 +2550 2560 0.8710 +2550 2561 0.7020 +2550 2562 0.7330 +2550 2563 0.8660 +2550 2564 0.6870 +2550 2565 0.7440 +2550 2566 0.8790 +2550 2567 0.7060 +2550 2568 0.6820 +2550 2569 0.6320 +2550 2570 0.6090 +2550 2571 0.6520 +2550 2572 0.6650 +2550 2770 0.9800 +2550 2771 0.9040 +2550 2773 0.9090 +2550 2775 0.5760 +2550 2782 0.9520 +2550 2783 0.6590 +2550 2784 0.6590 +2550 2785 0.6810 +2550 2786 0.6670 +2550 2787 0.6600 +2550 2788 0.6700 +2550 2790 0.6900 +2550 2791 0.6530 +2550 2792 0.6530 +2550 2793 0.6530 +2550 2890 0.6060 +2550 2891 0.5140 +2550 2893 0.4020 +2550 2902 0.4950 +2550 2903 0.4420 +2550 2904 0.4810 +2550 2906 0.4590 +2550 2911 0.9050 +2550 2912 0.6840 +2550 2913 0.6620 +2550 2914 0.6540 +2550 2915 0.4860 +2550 2916 0.6030 +2550 2917 0.6270 +2550 2918 0.6210 +2550 2995 0.4860 +2550 3350 0.4690 +2550 3708 0.4860 +2550 3759 0.5120 +2550 3760 0.9530 +2550 3761 0.5930 +2550 3762 0.9100 +2550 3763 0.9600 +2550 3765 0.9400 +2550 3766 0.6040 +2550 3767 0.9120 +2550 3768 0.5250 +2550 3772 0.5040 +2550 4852 0.7850 +2550 4905 0.4210 +2550 4915 0.5350 +2550 5020 0.7430 +2550 5295 0.4410 +2550 5726 0.4990 +2550 5816 0.5280 +2550 5999 0.4650 +2550 6288 0.4470 +2550 6289 0.4480 +2550 6529 0.5780 +2550 6540 0.4230 +2550 6714 0.5810 +2550 6750 0.7870 +2550 7097 0.4510 +2550 7320 0.5480 +2550 7732 0.4250 +2550 7803 0.6490 +2550 8777 0.7420 +2550 8912 0.4740 +2550 8913 0.7140 +2550 9001 0.4670 +2550 9211 0.7360 +2550 9568 0.9990 +2550 9746 0.5090 +2550 10203 0.7610 +2550 10243 0.5920 +2550 10266 0.7470 +2550 10267 0.7380 +2550 10268 0.7530 +2550 10681 0.7970 +2550 10687 0.5760 +2550 11016 0.6670 +2550 11230 0.4160 +2550 22809 0.7710 +2550 23349 0.4780 +2550 23560 0.4950 +2550 26047 0.6290 +2550 26086 0.4940 +2550 29899 0.4370 +2550 50831 0.4990 +2550 50832 0.5010 +2550 50833 0.4990 +2550 50834 0.4990 +2550 50835 0.4990 +2550 50836 0.4990 +2550 50837 0.4990 +2550 50838 0.4990 +2550 50839 0.5010 +2550 50840 0.5000 +2550 51304 0.4240 +2550 51738 0.7030 +2550 51764 0.6670 +2550 54331 0.9500 +2550 54429 0.4990 +2550 54806 0.5520 +2550 55879 0.6550 +2550 55970 0.6580 +2550 56896 0.4590 +2550 57030 0.4180 +2550 57084 0.4120 +2550 57468 0.4470 +2550 57528 0.5160 +2550 57628 0.6040 +2550 59345 0.6500 +2550 63940 0.4250 +2550 66008 0.4480 +2550 80834 0.6670 +2550 80835 0.6210 +2550 83742 0.5170 +2550 83756 0.6160 +2550 84708 0.4420 +2550 94235 0.6530 +2550 115207 0.6340 +2550 126006 0.4370 +2550 133482 0.5750 +2550 140679 0.5980 +2550 152789 0.4450 +2550 165829 0.9340 +2550 259285 0.5250 +2550 259286 0.4990 +2550 259287 0.4990 +2550 259289 0.4990 +2550 259290 0.4990 +2550 259292 0.4990 +2550 259293 0.4990 +2550 259294 0.4990 +2550 259295 0.4990 +2550 259296 0.4990 +2550 338398 0.5000 +2550 353164 0.4990 +2550 386617 0.5430 +2550 402665 0.5900 +2551 2553 0.9990 +2551 2672 0.4090 +2551 2820 0.5000 +2551 2962 0.5050 +2551 3054 0.7150 +2551 3065 0.4960 +2551 3169 0.4370 +2551 3725 0.5220 +2551 3727 0.4360 +2551 4097 0.4830 +2551 4205 0.4410 +2551 4317 0.4250 +2551 4601 0.4930 +2551 4609 0.6240 +2551 4798 0.4060 +2551 4800 0.4210 +2551 4899 0.8870 +2551 5091 0.5400 +2551 5121 0.4150 +2551 5442 0.8000 +2551 5653 0.5350 +2551 6095 0.4050 +2551 6667 0.4770 +2551 6670 0.4860 +2551 6742 0.7800 +2551 6872 0.4120 +2551 6927 0.4500 +2551 7015 0.5080 +2551 7019 0.9370 +2551 7165 0.6750 +2551 7182 0.4340 +2551 7391 0.4360 +2551 7392 0.4310 +2551 7528 0.8620 +2551 7543 0.4380 +2551 7702 0.6050 +2551 7978 0.7930 +2551 8732 0.4090 +2551 8841 0.4370 +2551 9817 0.7180 +2551 10009 0.4670 +2551 10138 0.6580 +2551 10413 0.4220 +2551 10664 0.7820 +2551 10765 0.4580 +2551 10891 0.9020 +2551 11232 0.7800 +2551 22828 0.4490 +2551 23082 0.6830 +2551 25942 0.6400 +2551 51106 0.7130 +2551 51684 0.4230 +2551 54439 0.4060 +2551 56652 0.7830 +2551 64216 0.7070 +2551 84124 0.4120 +2551 124512 0.7890 +2551 126626 0.8820 +2551 133522 0.6740 +2551 151987 0.4320 +2551 494115 0.4370 +2553 3054 0.6550 +2553 3344 0.4330 +2553 3796 0.8100 +2553 3799 0.8130 +2553 4899 0.8490 +2553 5442 0.9050 +2553 5653 0.5800 +2553 6015 0.4530 +2553 6742 0.8120 +2553 6867 0.4220 +2553 6927 0.4800 +2553 7015 0.4080 +2553 7019 0.9650 +2553 7165 0.8220 +2553 7280 0.9110 +2553 7528 0.8680 +2553 7846 0.9110 +2553 7978 0.7820 +2553 8626 0.9000 +2553 9611 0.4230 +2553 10138 0.8950 +2553 10376 0.8220 +2553 10381 0.9110 +2553 10891 0.9260 +2553 11232 0.7560 +2553 23082 0.5980 +2553 23411 0.4230 +2553 23424 0.8310 +2553 23429 0.8750 +2553 25824 0.4420 +2553 51106 0.9240 +2553 55835 0.8120 +2553 56652 0.7920 +2553 64216 0.8500 +2553 80204 0.4890 +2553 83478 0.4020 +2553 84733 0.5830 +2553 89882 0.6100 +2553 133522 0.4330 +2553 347733 0.9110 +2553 554226 0.4610 +2553 653319 0.4390 +2554 2555 0.8540 +2554 2556 0.6100 +2554 2557 0.6590 +2554 2558 0.7490 +2554 2559 0.8180 +2554 2560 0.9700 +2554 2561 0.9960 +2554 2562 0.9930 +2554 2563 0.7920 +2554 2564 0.7600 +2554 2565 0.8110 +2554 2566 0.9980 +2554 2567 0.8320 +2554 2568 0.7100 +2554 2569 0.7010 +2554 2570 0.7010 +2554 2571 0.7740 +2554 2572 0.6330 +2554 2597 0.5350 +2554 2617 0.4620 +2554 2670 0.4380 +2554 2890 0.6340 +2554 2891 0.6410 +2554 2892 0.5770 +2554 2893 0.5620 +2554 2894 0.5370 +2554 2897 0.6740 +2554 2898 0.4540 +2554 2899 0.4720 +2554 2901 0.4780 +2554 2902 0.5280 +2554 2903 0.7340 +2554 2904 0.6190 +2554 2905 0.5190 +2554 2911 0.5110 +2554 2913 0.4820 +2554 2914 0.4700 +2554 2915 0.5760 +2554 2917 0.4840 +2554 2918 0.4140 +2554 3084 0.5190 +2554 3350 0.4830 +2554 3351 0.4170 +2554 3356 0.5600 +2554 3358 0.4470 +2554 3361 0.4620 +2554 3736 0.5370 +2554 3737 0.5400 +2554 3746 0.6230 +2554 3747 0.5270 +2554 3748 0.4290 +2554 3765 0.5240 +2554 3785 0.6560 +2554 3786 0.5980 +2554 4129 0.5160 +2554 4336 0.4070 +2554 4747 0.5750 +2554 4887 0.4520 +2554 4905 0.9180 +2554 5334 0.9130 +2554 5454 0.4080 +2554 5582 0.4520 +2554 5743 0.4300 +2554 5816 0.4800 +2554 5864 0.4680 +2554 6323 0.8170 +2554 6324 0.7650 +2554 6326 0.6920 +2554 6334 0.6000 +2554 6513 0.4500 +2554 6529 0.6570 +2554 6531 0.5140 +2554 6532 0.4010 +2554 6538 0.4230 +2554 6558 0.5400 +2554 6616 0.5240 +2554 6620 0.4130 +2554 6709 0.4620 +2554 6792 0.5740 +2554 6812 0.6430 +2554 6853 0.4160 +2554 6857 0.6390 +2554 6860 0.4480 +2554 8120 0.4750 +2554 8912 0.7070 +2554 9001 0.9350 +2554 9211 0.4570 +2554 9362 0.4170 +2554 9378 0.5090 +2554 9542 0.5550 +2554 9568 0.9010 +2554 9681 0.4070 +2554 10243 0.6870 +2554 10368 0.5030 +2554 10718 0.5570 +2554 11332 0.5480 +2554 11337 0.8520 +2554 11345 0.7410 +2554 23229 0.6350 +2554 23710 0.8380 +2554 27020 0.5340 +2554 54715 0.4410 +2554 54806 0.4220 +2554 55163 0.4180 +2554 55879 0.8670 +2554 57030 0.5260 +2554 57084 0.4300 +2554 57468 0.8580 +2554 57526 0.6510 +2554 57575 0.6080 +2554 57582 0.5540 +2554 64854 0.7200 +2554 65267 0.4240 +2554 66008 0.9540 +2554 79868 0.4180 +2554 112476 0.5210 +2554 112755 0.4280 +2554 114327 0.8120 +2554 116443 0.5150 +2554 140679 0.6640 +2554 145957 0.5120 +2555 2556 0.6220 +2555 2557 0.7820 +2555 2558 0.6550 +2555 2559 0.7240 +2555 2560 0.9170 +2555 2561 0.8120 +2555 2562 0.8290 +2555 2563 0.7200 +2555 2564 0.7760 +2555 2565 0.8090 +2555 2566 0.7930 +2555 2567 0.6930 +2555 2568 0.6850 +2555 2569 0.7080 +2555 2570 0.7030 +2555 2571 0.5330 +2555 2572 0.5370 +2555 2752 0.4170 +2555 2890 0.4880 +2555 2891 0.5550 +2555 2892 0.5510 +2555 2893 0.5200 +2555 2897 0.4590 +2555 2898 0.4150 +2555 2901 0.4350 +2555 2903 0.5080 +2555 2904 0.4900 +2555 2915 0.4140 +2555 2918 0.4270 +2555 3351 0.4060 +2555 3356 0.5120 +2555 4128 0.4300 +2555 4985 0.4350 +2555 4988 0.5950 +2555 5236 0.5480 +2555 5998 0.4030 +2555 6323 0.4790 +2555 6326 0.4020 +2555 6334 0.4090 +2555 6529 0.5150 +2555 6532 0.5950 +2555 7054 0.4020 +2555 7690 0.4090 +2555 9378 0.4400 +2555 9568 0.8900 +2555 10243 0.5090 +2555 10804 0.4060 +2555 11197 0.4020 +2555 11337 0.4390 +2555 23229 0.9400 +2555 27020 0.5390 +2555 27333 0.4100 +2555 50833 0.4040 +2555 54970 0.4250 +2555 55879 0.7190 +2555 57468 0.4020 +2555 140679 0.5470 +2555 255239 0.5730 +2555 284099 0.5960 +2555 386617 0.4100 +2555 104909134 0.4190 +2556 2557 0.5980 +2556 2558 0.8510 +2556 2559 0.6000 +2556 2560 0.7670 +2556 2561 0.7700 +2556 2562 0.8550 +2556 2563 0.6950 +2556 2564 0.6260 +2556 2565 0.7520 +2556 2566 0.7620 +2556 2567 0.7350 +2556 2568 0.6820 +2556 2569 0.6920 +2556 2570 0.6970 +2556 2572 0.4330 +2556 2890 0.5840 +2556 2891 0.6220 +2556 2892 0.6730 +2556 2893 0.5360 +2556 2897 0.4020 +2556 2898 0.5200 +2556 2901 0.4960 +2556 2904 0.4330 +2556 3358 0.5470 +2556 3423 0.4220 +2556 3736 0.4990 +2556 3897 0.6350 +2556 4204 0.5180 +2556 4534 0.5180 +2556 4905 0.9070 +2556 5334 0.9050 +2556 6529 0.4190 +2556 6638 0.4180 +2556 6658 0.4500 +2556 6792 0.5850 +2556 6855 0.4400 +2556 7337 0.4340 +2556 8266 0.6230 +2556 8618 0.5210 +2556 8776 0.4510 +2556 9001 0.9060 +2556 9568 0.8040 +2556 10149 0.4050 +2556 10243 0.4360 +2556 10682 0.4980 +2556 11337 0.7730 +2556 11345 0.7410 +2556 23229 0.4700 +2556 23710 0.7490 +2556 26999 0.5160 +2556 27020 0.4990 +2556 28972 0.4030 +2556 51582 0.4890 +2556 55879 0.7710 +2556 66008 0.9130 +2556 83548 0.4250 +2556 140679 0.6100 +2556 159091 0.4160 +2557 2558 0.6530 +2557 2559 0.6200 +2557 2560 0.9300 +2557 2561 0.7560 +2557 2562 0.9690 +2557 2563 0.9730 +2557 2564 0.5970 +2557 2565 0.7940 +2557 2566 0.9290 +2557 2567 0.6090 +2557 2568 0.6740 +2557 2569 0.6990 +2557 2570 0.6820 +2557 2571 0.4560 +2557 2572 0.4870 +2557 2890 0.4770 +2557 2891 0.5320 +2557 2892 0.4730 +2557 2893 0.4680 +2557 2901 0.4010 +2557 2903 0.4820 +2557 2904 0.4630 +2557 2917 0.4380 +2557 2918 0.4910 +2557 3356 0.4460 +2557 3361 0.4260 +2557 3476 0.6240 +2557 3777 0.5680 +2557 4905 0.9130 +2557 5334 0.9090 +2557 6529 0.6160 +2557 6532 0.5340 +2557 6857 0.4850 +2557 9001 0.9010 +2557 9228 0.4920 +2557 9378 0.6630 +2557 9568 0.8120 +2557 10243 0.4270 +2557 11337 0.8000 +2557 11345 0.7660 +2557 22941 0.5100 +2557 23229 0.5170 +2557 23710 0.7820 +2557 26053 0.5410 +2557 27020 0.5270 +2557 54212 0.4350 +2557 54413 0.5170 +2557 55879 0.6880 +2557 57468 0.4050 +2557 57502 0.4670 +2557 66008 0.9000 +2557 84696 0.4250 +2557 85358 0.6450 +2557 85452 0.4900 +2557 139411 0.4080 +2557 140679 0.4510 +2557 152330 0.4960 +2558 2559 0.6590 +2558 2560 0.8340 +2558 2561 0.7880 +2558 2562 0.8080 +2558 2563 0.7470 +2558 2564 0.5920 +2558 2565 0.7660 +2558 2566 0.7760 +2558 2567 0.7660 +2558 2568 0.6850 +2558 2569 0.7070 +2558 2570 0.7040 +2558 2571 0.5850 +2558 2572 0.5400 +2558 2736 0.4160 +2558 2742 0.4140 +2558 2890 0.5520 +2558 2891 0.4980 +2558 2892 0.5740 +2558 2893 0.5300 +2558 2898 0.4080 +2558 2903 0.5120 +2558 2904 0.4900 +2558 2905 0.4010 +2558 2911 0.4790 +2558 2913 0.5010 +2558 2914 0.4310 +2558 2915 0.4920 +2558 2917 0.4290 +2558 2918 0.4210 +2558 3093 0.4610 +2558 3356 0.4540 +2558 3358 0.4980 +2558 3736 0.4520 +2558 3754 0.4540 +2558 4204 0.5600 +2558 4661 0.4070 +2558 4692 0.5530 +2558 4905 0.9060 +2558 4915 0.5260 +2558 4948 0.4970 +2558 4978 0.5460 +2558 5334 0.9100 +2558 5530 0.4740 +2558 5816 0.4360 +2558 6323 0.5530 +2558 6326 0.4150 +2558 6529 0.8800 +2558 6538 0.7520 +2558 6539 0.5160 +2558 6540 0.8160 +2558 6638 0.5910 +2558 6854 0.4870 +2558 7337 0.7350 +2558 7681 0.5740 +2558 9001 0.9000 +2558 9145 0.4080 +2558 9196 0.4180 +2558 9378 0.4420 +2558 9568 0.8350 +2558 10243 0.4280 +2558 10586 0.4680 +2558 11337 0.7950 +2558 11345 0.7410 +2558 23191 0.4700 +2558 23229 0.5440 +2558 23416 0.4600 +2558 23710 0.7830 +2558 23742 0.4200 +2558 27020 0.5110 +2558 27338 0.4240 +2558 50863 0.4350 +2558 54332 0.4450 +2558 54551 0.5860 +2558 55879 0.6890 +2558 57194 0.6090 +2558 57468 0.4230 +2558 66008 0.9170 +2558 81614 0.5090 +2558 85452 0.5450 +2558 89832 0.4700 +2558 114791 0.4800 +2558 114798 0.5200 +2558 123606 0.5160 +2558 137970 0.4030 +2558 140679 0.5010 +2558 285175 0.4550 +2559 2560 0.7250 +2559 2561 0.7930 +2559 2562 0.8090 +2559 2563 0.8010 +2559 2564 0.5910 +2559 2565 0.7100 +2559 2566 0.6860 +2559 2567 0.5870 +2559 2568 0.7070 +2559 2569 0.6990 +2559 2570 0.6940 +2559 2572 0.4150 +2559 2891 0.4320 +2559 2902 0.4130 +2559 2905 0.4870 +2559 2914 0.4340 +2559 2915 0.4140 +2559 3351 0.4170 +2559 3356 0.4310 +2559 3361 0.4660 +2559 3777 0.4490 +2559 3787 0.4220 +2559 4763 0.4620 +2559 4905 0.9070 +2559 4985 0.5070 +2559 5334 0.9090 +2559 5726 0.4350 +2559 6323 0.5860 +2559 6324 0.5750 +2559 6326 0.4210 +2559 6529 0.7490 +2559 6531 0.4810 +2559 6532 0.5980 +2559 6534 0.4160 +2559 6538 0.4510 +2559 9001 0.9020 +2559 9369 0.5830 +2559 9568 0.7700 +2559 9685 0.4540 +2559 10368 0.4060 +2559 11337 0.7850 +2559 11345 0.7620 +2559 22999 0.5310 +2559 23229 0.5660 +2559 23710 0.7660 +2559 27020 0.5160 +2559 50833 0.5590 +2559 51755 0.5060 +2559 55879 0.6870 +2559 66008 0.9000 +2559 85452 0.4260 +2559 93377 0.4240 +2559 114788 0.5930 +2559 120114 0.5940 +2559 126006 0.6800 +2559 132204 0.4020 +2559 140679 0.4320 +2559 146325 0.4320 +2559 255239 0.5700 +2559 643866 0.7560 +2560 2561 0.9500 +2560 2562 0.9500 +2560 2563 0.7200 +2560 2564 0.8170 +2560 2565 0.9000 +2560 2566 0.8700 +2560 2567 0.7720 +2560 2568 0.6140 +2560 2569 0.6190 +2560 2570 0.6170 +2560 2571 0.5140 +2560 2572 0.5240 +2560 2890 0.4380 +2560 2891 0.5210 +2560 2892 0.4430 +2560 2898 0.4400 +2560 2901 0.4250 +2560 2903 0.4820 +2560 2904 0.4800 +2560 2913 0.5370 +2560 2915 0.6380 +2560 3084 0.5020 +2560 3756 0.4040 +2560 4886 0.4030 +2560 4905 0.9160 +2560 4915 0.6430 +2560 5236 0.5110 +2560 5334 0.9080 +2560 6002 0.4580 +2560 6323 0.4270 +2560 6326 0.4150 +2560 6529 0.5310 +2560 8831 0.4270 +2560 9001 0.9380 +2560 9542 0.5160 +2560 9568 0.8840 +2560 10636 0.4080 +2560 10718 0.5520 +2560 11337 0.8180 +2560 11345 0.6580 +2560 22871 0.4080 +2560 23229 0.6120 +2560 23240 0.4390 +2560 23621 0.4090 +2560 23710 0.8000 +2560 27020 0.5160 +2560 30010 0.4800 +2560 54806 0.4930 +2560 54951 0.5930 +2560 55879 0.5990 +2560 57484 0.4230 +2560 66008 0.9120 +2560 132299 0.4060 +2560 140679 0.5010 +2560 145957 0.5020 +2560 201798 0.4480 +2560 201895 0.4260 +2561 2562 0.9690 +2561 2563 0.6880 +2561 2564 0.6950 +2561 2565 0.8200 +2561 2566 0.9890 +2561 2567 0.7630 +2561 2568 0.6350 +2561 2569 0.6180 +2561 2570 0.6180 +2561 2571 0.7050 +2561 2572 0.5640 +2561 2596 0.4690 +2561 2774 0.4650 +2561 2890 0.4780 +2561 2891 0.5680 +2561 2892 0.4720 +2561 2893 0.4340 +2561 2899 0.5360 +2561 2901 0.4040 +2561 2902 0.4680 +2561 2903 0.5500 +2561 2904 0.5890 +2561 2913 0.5530 +2561 2914 0.4050 +2561 2915 0.5440 +2561 2917 0.4030 +2561 3084 0.5670 +2561 3350 0.4340 +2561 3356 0.6550 +2561 3361 0.5330 +2561 3476 0.4070 +2561 3736 0.4220 +2561 3751 0.4020 +2561 3765 0.4200 +2561 3777 0.4430 +2561 4129 0.4370 +2561 4139 0.4040 +2561 4661 0.4270 +2561 4905 0.9030 +2561 4988 0.4440 +2561 5334 0.9090 +2561 5362 0.5030 +2561 5533 0.5910 +2561 5625 0.4880 +2561 5999 0.5300 +2561 6323 0.6150 +2561 6324 0.5710 +2561 6326 0.5500 +2561 6529 0.5770 +2561 6531 0.5140 +2561 6616 0.4410 +2561 6752 0.4590 +2561 6854 0.4860 +2561 6857 0.4750 +2561 6863 0.4210 +2561 7166 0.4430 +2561 7915 0.8250 +2561 9001 0.9350 +2561 9378 0.6330 +2561 9542 0.5360 +2561 9568 0.8170 +2561 9685 0.5590 +2561 9722 0.4880 +2561 10215 0.4460 +2561 10243 0.4160 +2561 10718 0.5740 +2561 11337 0.8010 +2561 11345 0.6630 +2561 23229 0.6180 +2561 23710 0.6760 +2561 27020 0.5400 +2561 27185 0.5110 +2561 29801 0.4840 +2561 30012 0.4260 +2561 55879 0.5850 +2561 56121 0.4090 +2561 56126 0.4090 +2561 56130 0.4120 +2561 57468 0.4210 +2561 66008 0.9680 +2561 84062 0.5860 +2561 91752 0.5230 +2561 115557 0.5550 +2561 140679 0.5510 +2561 145957 0.5020 +2561 267012 0.6080 +2561 319100 0.4810 +2562 2563 0.9590 +2562 2564 0.8140 +2562 2565 0.7770 +2562 2566 0.9900 +2562 2567 0.7740 +2562 2568 0.6160 +2562 2569 0.6070 +2562 2570 0.6150 +2562 2571 0.8090 +2562 2572 0.6750 +2562 2890 0.5620 +2562 2891 0.6850 +2562 2892 0.4520 +2562 2893 0.4620 +2562 2897 0.4230 +2562 2898 0.6530 +2562 2901 0.6390 +2562 2903 0.5400 +2562 2904 0.5790 +2562 2913 0.6220 +2562 2915 0.4100 +2562 3084 0.5030 +2562 3350 0.5320 +2562 3356 0.4120 +2562 3745 0.4380 +2562 3785 0.6200 +2562 3786 0.4330 +2562 4204 0.7790 +2562 4524 0.4060 +2562 4675 0.4500 +2562 4692 0.7150 +2562 4905 0.9130 +2562 4948 0.6370 +2562 5334 0.9040 +2562 5454 0.5920 +2562 5460 0.4720 +2562 5649 0.4920 +2562 5816 0.5280 +2562 6000 0.4390 +2562 6323 0.6540 +2562 6324 0.4760 +2562 6326 0.6240 +2562 6334 0.5740 +2562 6529 0.5300 +2562 6532 0.4550 +2562 6638 0.8510 +2562 6792 0.7240 +2562 6812 0.5480 +2562 6997 0.4850 +2562 7337 0.8670 +2562 7681 0.7570 +2562 7753 0.4130 +2562 8831 0.4050 +2562 8912 0.6710 +2562 9001 0.9080 +2562 9378 0.6300 +2562 9542 0.5030 +2562 9568 0.9250 +2562 10243 0.4360 +2562 10716 0.4040 +2562 10718 0.5410 +2562 11337 0.8120 +2562 11345 0.6740 +2562 11346 0.4010 +2562 22871 0.4480 +2562 22941 0.4870 +2562 23040 0.4590 +2562 23191 0.4800 +2562 23195 0.4160 +2562 23229 0.7840 +2562 23314 0.4530 +2562 23710 0.7800 +2562 26047 0.5810 +2562 26053 0.5480 +2562 27020 0.5340 +2562 54413 0.5790 +2562 54551 0.6040 +2562 55283 0.4380 +2562 55800 0.4760 +2562 55859 0.4450 +2562 55879 0.6060 +2562 57194 0.8260 +2562 57468 0.4950 +2562 57502 0.5720 +2562 57526 0.5220 +2562 57555 0.4390 +2562 57575 0.4490 +2562 57582 0.4950 +2562 66008 0.9050 +2562 79868 0.5300 +2562 81614 0.4880 +2562 85358 0.7510 +2562 112755 0.4300 +2562 114791 0.5580 +2562 114805 0.4060 +2562 123606 0.5140 +2562 140679 0.5120 +2562 145957 0.5030 +2562 146330 0.4340 +2562 222537 0.4130 +2562 347853 0.5270 +2562 104909134 0.4330 +2563 2564 0.6870 +2563 2565 0.7690 +2563 2566 0.7680 +2563 2567 0.6950 +2563 2568 0.5770 +2563 2569 0.5890 +2563 2570 0.5900 +2563 2571 0.5370 +2563 2572 0.4680 +2563 2782 0.5440 +2563 2890 0.4340 +2563 2891 0.5230 +2563 2892 0.4890 +2563 2902 0.5540 +2563 2903 0.4530 +2563 2904 0.4010 +2563 2905 0.5020 +2563 2913 0.4110 +2563 2914 0.4620 +2563 2915 0.4760 +2563 3361 0.4330 +2563 3476 0.4300 +2563 3708 0.4590 +2563 3736 0.4940 +2563 3746 0.4900 +2563 3751 0.4040 +2563 3761 0.4480 +2563 3765 0.5640 +2563 3777 0.7190 +2563 3785 0.5290 +2563 3786 0.4560 +2563 4099 0.4600 +2563 4905 0.9050 +2563 4915 0.4750 +2563 5334 0.9160 +2563 5470 0.4390 +2563 5582 0.4350 +2563 5590 0.5850 +2563 5816 0.4460 +2563 6323 0.7290 +2563 6324 0.7860 +2563 6326 0.5440 +2563 6335 0.6530 +2563 6529 0.9320 +2563 6538 0.7570 +2563 6539 0.5430 +2563 6540 0.8180 +2563 6620 0.4760 +2563 7259 0.4440 +2563 8514 0.4990 +2563 8629 0.4540 +2563 8912 0.5850 +2563 9001 0.9390 +2563 9568 0.8150 +2563 9796 0.4290 +2563 10368 0.4660 +2563 10815 0.4620 +2563 11255 0.4760 +2563 11337 0.6940 +2563 11345 0.6500 +2563 22858 0.4560 +2563 23270 0.4730 +2563 23620 0.5220 +2563 23710 0.6690 +2563 54806 0.5060 +2563 55879 0.6080 +2563 57030 0.4310 +2563 57468 0.5770 +2563 58157 0.4390 +2563 66008 0.9170 +2563 83482 0.4150 +2563 84258 0.4060 +2563 85452 0.8240 +2563 93377 0.4580 +2563 114327 0.8190 +2563 132204 0.4010 +2563 140679 0.5600 +2563 642968 0.4030 +2564 2565 0.5850 +2564 2566 0.5800 +2564 2567 0.5690 +2564 2568 0.7050 +2564 2569 0.7010 +2564 2570 0.7020 +2564 2571 0.5220 +2564 2824 0.4260 +2564 2925 0.4280 +2564 3054 0.4310 +2564 3145 0.5800 +2564 3897 0.4540 +2564 4905 0.9050 +2564 5334 0.9100 +2564 8266 0.6100 +2564 8323 0.4350 +2564 9001 0.9200 +2564 9568 0.8520 +2564 9583 0.4480 +2564 11337 0.7360 +2564 11345 0.7310 +2564 23710 0.7220 +2564 55879 0.7470 +2564 56479 0.4570 +2564 66008 0.9070 +2564 114801 0.4190 +2565 2566 0.8680 +2565 2567 0.5920 +2565 2568 0.6710 +2565 2569 0.6930 +2565 2570 0.7000 +2565 2571 0.4910 +2565 2572 0.4840 +2565 2670 0.4260 +2565 2890 0.4300 +2565 2891 0.4970 +2565 2893 0.4100 +2565 2897 0.4580 +2565 2902 0.4180 +2565 2903 0.4560 +2565 2905 0.4360 +2565 2913 0.4460 +2565 2915 0.4400 +2565 3350 0.4090 +2565 3361 0.4150 +2565 3765 0.4950 +2565 4099 0.4850 +2565 4887 0.4140 +2565 4905 0.9070 +2565 4985 0.4110 +2565 4988 0.4040 +2565 5236 0.4220 +2565 5334 0.9180 +2565 6529 0.5860 +2565 9001 0.9010 +2565 9362 0.4540 +2565 9378 0.4190 +2565 9568 0.7860 +2565 10316 0.4100 +2565 11337 0.8310 +2565 11345 0.7800 +2565 23620 0.4550 +2565 23710 0.8180 +2565 54970 0.4120 +2565 55879 0.7200 +2565 56479 0.4070 +2565 56934 0.4050 +2565 66008 0.9050 +2565 85445 0.4120 +2565 93377 0.4600 +2565 132204 0.4360 +2565 140679 0.5290 +2565 221074 0.4610 +2565 221938 0.4040 +2565 386617 0.4820 +2566 2567 0.7320 +2566 2568 0.6810 +2566 2569 0.7110 +2566 2570 0.7830 +2566 2571 0.6840 +2566 2572 0.5880 +2566 2617 0.5800 +2566 2670 0.4280 +2566 2785 0.4170 +2566 2890 0.5210 +2566 2891 0.6230 +2566 2892 0.4910 +2566 2893 0.4860 +2566 2897 0.4560 +2566 2899 0.4310 +2566 2901 0.4340 +2566 2902 0.5870 +2566 2903 0.5860 +2566 2904 0.5670 +2566 2911 0.4090 +2566 2913 0.4680 +2566 2915 0.4910 +2566 2917 0.4590 +2566 3084 0.5170 +2566 3350 0.4300 +2566 3356 0.5030 +2566 3361 0.4820 +2566 3736 0.4980 +2566 3737 0.4760 +2566 3746 0.4560 +2566 3747 0.4420 +2566 3765 0.5180 +2566 3785 0.7090 +2566 3786 0.6630 +2566 4661 0.4430 +2566 4857 0.7270 +2566 4858 0.5890 +2566 5454 0.4210 +2566 5816 0.4210 +2566 6014 0.4160 +2566 6323 0.9520 +2566 6324 0.9470 +2566 6326 0.7740 +2566 6327 0.6270 +2566 6334 0.7260 +2566 6335 0.8640 +2566 6513 0.5200 +2566 6529 0.7240 +2566 6616 0.6980 +2566 6620 0.4330 +2566 6750 0.5520 +2566 6792 0.5730 +2566 6812 0.6370 +2566 6857 0.4480 +2566 6860 0.5370 +2566 7259 0.4230 +2566 8912 0.7360 +2566 9152 0.4210 +2566 9177 0.4700 +2566 9211 0.5230 +2566 9378 0.5560 +2566 9542 0.5460 +2566 9568 0.8300 +2566 9681 0.4820 +2566 10243 0.7550 +2566 10368 0.4890 +2566 10718 0.5980 +2566 11337 0.8940 +2566 11345 0.4070 +2566 22871 0.4190 +2566 23229 0.7330 +2566 23270 0.4810 +2566 23710 0.6470 +2566 27020 0.5110 +2566 54715 0.5650 +2566 54806 0.4280 +2566 55163 0.4150 +2566 55800 0.4030 +2566 55879 0.7890 +2566 56126 0.4150 +2566 57030 0.5050 +2566 57084 0.4020 +2566 57468 0.5390 +2566 57526 0.6910 +2566 57575 0.6440 +2566 57582 0.5460 +2566 83641 0.4200 +2566 84059 0.5770 +2566 112476 0.5320 +2566 112755 0.5360 +2566 114327 0.4800 +2566 114798 0.4210 +2566 118427 0.4410 +2566 132204 0.4200 +2566 140679 0.5940 +2566 140767 0.4120 +2566 145957 0.5060 +2567 2568 0.6730 +2567 2569 0.6960 +2567 2570 0.7080 +2567 2571 0.4560 +2567 2572 0.4430 +2567 2895 0.4100 +2567 2899 0.4390 +2567 2903 0.4590 +2567 2917 0.4160 +2567 3084 0.5150 +2567 3093 0.4990 +2567 3356 0.4010 +2567 4204 0.5470 +2567 4692 0.5460 +2567 4905 0.9040 +2567 4948 0.5220 +2567 5334 0.9050 +2567 6529 0.4490 +2567 6638 0.5870 +2567 7337 0.7570 +2567 7681 0.5870 +2567 9001 0.9050 +2567 9378 0.4330 +2567 9542 0.5130 +2567 9568 0.7740 +2567 10243 0.4300 +2567 10718 0.5870 +2567 11337 0.8450 +2567 11345 0.7800 +2567 23191 0.4980 +2567 23229 0.6040 +2567 23710 0.8190 +2567 23742 0.4830 +2567 27020 0.4990 +2567 27338 0.4680 +2567 50833 0.4150 +2567 54551 0.5830 +2567 55879 0.7760 +2567 56126 0.4230 +2567 57194 0.6470 +2567 66008 0.9050 +2567 81614 0.5740 +2567 114791 0.5140 +2567 123606 0.5800 +2567 145957 0.5110 +2568 2569 0.6170 +2568 2570 0.6210 +2568 2908 0.4140 +2568 3783 0.6180 +2568 4905 0.9000 +2568 5334 0.9010 +2568 6531 0.5680 +2568 9001 0.9000 +2568 9568 0.7190 +2568 9685 0.6390 +2568 11337 0.6540 +2568 11345 0.6510 +2568 23710 0.6510 +2568 55879 0.6040 +2568 66008 0.9000 +2568 79679 0.5930 +2568 117156 0.6310 +2568 155465 0.4340 +2568 643904 0.4130 +2569 2570 0.9280 +2569 2784 0.5080 +2569 2915 0.5240 +2569 6000 0.4130 +2569 9568 0.7380 +2569 9992 0.4490 +2569 10846 0.4090 +2569 55879 0.6270 +2569 85379 0.4220 +2569 346007 0.5710 +2569 347744 0.4100 +2570 9568 0.7380 +2570 55879 0.7450 +2570 135293 0.4290 +2570 346007 0.5500 +2571 2572 0.9680 +2571 2583 0.5010 +2571 2596 0.4290 +2571 2597 0.4950 +2571 2628 0.8180 +2571 2653 0.8210 +2571 2668 0.4020 +2571 2670 0.7230 +2571 2686 0.9160 +2571 2687 0.9110 +2571 2729 0.8180 +2571 2730 0.8350 +2571 2731 0.8270 +2571 2744 0.9480 +2571 2746 0.9530 +2571 2747 0.9540 +2571 2752 0.9530 +2571 2805 0.8450 +2571 2806 0.8370 +2571 2890 0.6330 +2571 2891 0.7300 +2571 2892 0.4070 +2571 2893 0.4610 +2571 2897 0.5450 +2571 2898 0.6220 +2571 2899 0.4640 +2571 2901 0.6110 +2571 2902 0.6030 +2571 2903 0.6480 +2571 2904 0.6500 +2571 2905 0.4900 +2571 2906 0.4150 +2571 2911 0.5040 +2571 2912 0.5360 +2571 2913 0.6810 +2571 2915 0.5600 +2571 3060 0.4850 +2571 3064 0.5460 +2571 3083 0.4010 +2571 3084 0.4710 +2571 3312 0.5350 +2571 3350 0.4800 +2571 3356 0.4600 +2571 3358 0.4260 +2571 3359 0.6920 +2571 3670 0.4720 +2571 3706 0.4580 +2571 3746 0.5150 +2571 3960 0.4330 +2571 3975 0.4660 +2571 4010 0.4370 +2571 4128 0.4560 +2571 4133 0.5470 +2571 4204 0.9580 +2571 4316 0.4690 +2571 4336 0.4280 +2571 4535 0.4220 +2571 4537 0.4150 +2571 4538 0.4480 +2571 4684 0.4020 +2571 4720 0.4190 +2571 4723 0.4300 +2571 4728 0.4320 +2571 4729 0.4480 +2571 4747 0.4510 +2571 4760 0.6180 +2571 4761 0.4570 +2571 4762 0.4090 +2571 4852 0.7050 +2571 4915 0.5860 +2571 4922 0.4410 +2571 4942 0.5120 +2571 5015 0.4340 +2571 5020 0.4280 +2571 5076 0.4250 +2571 5080 0.6180 +2571 5100 0.5030 +2571 5173 0.5840 +2571 5179 0.5430 +2571 5354 0.4150 +2571 5443 0.4670 +2571 5454 0.4120 +2571 5457 0.4080 +2571 5468 0.4120 +2571 5566 0.4680 +2571 5582 0.4180 +2571 5649 0.6470 +2571 5788 0.4390 +2571 5789 0.4090 +2571 5798 0.5350 +2571 5816 0.9680 +2571 5832 0.8740 +2571 5864 0.6960 +2571 5999 0.4600 +2571 6096 0.4450 +2571 6285 0.4380 +2571 6323 0.4330 +2571 6389 0.5150 +2571 6390 0.4700 +2571 6391 0.4390 +2571 6446 0.4390 +2571 6469 0.4140 +2571 6492 0.4750 +2571 6505 0.4770 +2571 6506 0.5970 +2571 6507 0.5430 +2571 6529 0.8290 +2571 6531 0.5430 +2571 6532 0.5170 +2571 6536 0.4210 +2571 6538 0.5990 +2571 6539 0.5350 +2571 6540 0.6150 +2571 6543 0.4590 +2571 6558 0.5100 +2571 6571 0.5260 +2571 6572 0.6550 +2571 6616 0.7730 +2571 6657 0.4480 +2571 6750 0.8730 +2571 6804 0.6640 +2571 6812 0.6370 +2571 6844 0.6290 +2571 6853 0.6560 +2571 6854 0.5410 +2571 6855 0.6270 +2571 6857 0.7480 +2571 6863 0.6890 +2571 6886 0.4260 +2571 7054 0.7460 +2571 7080 0.5650 +2571 7166 0.4710 +2571 7432 0.5340 +2571 7837 0.4620 +2571 7915 0.7250 +2571 8224 0.5150 +2571 8320 0.4100 +2571 8659 0.9360 +2571 9148 0.4240 +2571 9152 0.7460 +2571 9179 0.5120 +2571 9196 0.4240 +2571 9378 0.4760 +2571 9379 0.4420 +2571 9402 0.5810 +2571 9568 0.6080 +2571 9607 0.4630 +2571 9895 0.4630 +2571 9899 0.5090 +2571 10157 0.4140 +2571 10215 0.6060 +2571 10243 0.6600 +2571 10381 0.4310 +2571 10458 0.4170 +2571 10716 0.7050 +2571 10763 0.5110 +2571 10777 0.4390 +2571 10815 0.6250 +2571 10840 0.5410 +2571 10841 0.8240 +2571 11075 0.4110 +2571 22997 0.4490 +2571 22999 0.6120 +2571 23158 0.4370 +2571 23189 0.6540 +2571 23314 0.5170 +2571 23316 0.4250 +2571 23416 0.4300 +2571 23498 0.8000 +2571 24141 0.4040 +2571 25953 0.5910 +2571 26047 0.4400 +2571 26468 0.6970 +2571 26873 0.8170 +2571 27165 0.9500 +2571 27185 0.5430 +2571 30010 0.4250 +2571 51083 0.4720 +2571 51094 0.5870 +2571 51380 0.9040 +2571 51733 0.9090 +2571 51806 0.5900 +2571 54413 0.4020 +2571 54550 0.4760 +2571 54984 0.4130 +2571 55188 0.5210 +2571 55748 0.9180 +2571 57030 0.8520 +2571 57084 0.8840 +2571 57468 0.6740 +2571 57555 0.4310 +2571 57571 0.9100 +2571 57818 0.4160 +2571 63973 0.5500 +2571 63974 0.5180 +2571 64850 0.4460 +2571 64854 0.6830 +2571 64902 0.8510 +2571 64919 0.5260 +2571 79602 0.6760 +2571 79944 0.8170 +2571 80150 0.8290 +2571 80208 0.4290 +2571 80312 0.4520 +2571 80331 0.7130 +2571 80821 0.4100 +2571 83482 0.4620 +2571 84062 0.4440 +2571 84152 0.5250 +2571 84735 0.9200 +2571 84890 0.9090 +2571 84894 0.4460 +2571 85007 0.4200 +2571 85358 0.4100 +2571 91574 0.4670 +2571 91860 0.5920 +2571 93986 0.4640 +2571 113612 0.4060 +2571 116173 0.4800 +2571 116448 0.4930 +2571 121278 0.4760 +2571 122622 0.8040 +2571 124454 0.8170 +2571 124975 0.9150 +2571 127833 0.5010 +2571 132204 0.4110 +2571 137362 0.8190 +2571 137902 0.4620 +2571 140679 0.9770 +2571 146713 0.7900 +2571 163688 0.5910 +2571 170825 0.4810 +2571 221833 0.4080 +2571 246213 0.6280 +2571 256297 0.4450 +2571 259307 0.8130 +2571 266743 0.4270 +2571 338917 0.4390 +2571 339896 0.9040 +2571 339983 0.8480 +2571 392617 0.4640 +2571 431707 0.4200 +2572 2596 0.6160 +2572 2597 0.4250 +2572 2628 0.8170 +2572 2641 0.4590 +2572 2653 0.8100 +2572 2670 0.6560 +2572 2686 0.9100 +2572 2687 0.9090 +2572 2729 0.8000 +2572 2730 0.8160 +2572 2731 0.8160 +2572 2741 0.6410 +2572 2743 0.5390 +2572 2744 0.9420 +2572 2746 0.9470 +2572 2747 0.9470 +2572 2752 0.9480 +2572 2805 0.8370 +2572 2806 0.8310 +2572 2890 0.6450 +2572 2891 0.6230 +2572 2892 0.4080 +2572 2893 0.4780 +2572 2895 0.4210 +2572 2897 0.4910 +2572 2898 0.4410 +2572 2899 0.4170 +2572 2901 0.4380 +2572 2902 0.5840 +2572 2903 0.5840 +2572 2904 0.6050 +2572 2911 0.6040 +2572 2912 0.4350 +2572 2913 0.4220 +2572 2915 0.7500 +2572 3060 0.4590 +2572 3117 0.7690 +2572 3119 0.6730 +2572 3123 0.6590 +2572 3309 0.4760 +2572 3312 0.5690 +2572 3359 0.4590 +2572 3375 0.4050 +2572 3382 0.4200 +2572 3439 0.4020 +2572 3458 0.4440 +2572 3596 0.4220 +2572 3630 0.8880 +2572 3670 0.4430 +2572 3736 0.4720 +2572 3746 0.4950 +2572 3975 0.4440 +2572 4133 0.4990 +2572 4155 0.4480 +2572 4204 0.8930 +2572 4336 0.4250 +2572 4340 0.5590 +2572 4535 0.4240 +2572 4537 0.4280 +2572 4538 0.4280 +2572 4720 0.4290 +2572 4728 0.4320 +2572 4729 0.4170 +2572 4760 0.4620 +2572 4761 0.4080 +2572 4842 0.4170 +2572 4852 0.6480 +2572 4915 0.6960 +2572 4922 0.4260 +2572 4942 0.4660 +2572 4988 0.4300 +2572 5053 0.4920 +2572 5064 0.5090 +2572 5080 0.5510 +2572 5100 0.4790 +2572 5167 0.4480 +2572 5173 0.4810 +2572 5179 0.4770 +2572 5443 0.4530 +2572 5457 0.4330 +2572 5538 0.5350 +2572 5566 0.4320 +2572 5581 0.4030 +2572 5582 0.4210 +2572 5649 0.4640 +2572 5788 0.4250 +2572 5798 0.9710 +2572 5799 0.6280 +2572 5816 0.8350 +2572 5832 0.8660 +2572 5864 0.6600 +2572 5957 0.7890 +2572 5997 0.4320 +2572 6095 0.4530 +2572 6389 0.4960 +2572 6390 0.4670 +2572 6391 0.4180 +2572 6492 0.4290 +2572 6506 0.5530 +2572 6507 0.4950 +2572 6514 0.5000 +2572 6529 0.8650 +2572 6531 0.4500 +2572 6532 0.4150 +2572 6538 0.5780 +2572 6539 0.5350 +2572 6540 0.6220 +2572 6558 0.5090 +2572 6571 0.4680 +2572 6572 0.6050 +2572 6616 0.8950 +2572 6656 0.6580 +2572 6750 0.7490 +2572 6804 0.7460 +2572 6812 0.6360 +2572 6833 0.4620 +2572 6844 0.7990 +2572 6853 0.6990 +2572 6854 0.5480 +2572 6855 0.6310 +2572 6857 0.8720 +2572 6860 0.4370 +2572 6863 0.4650 +2572 6900 0.4070 +2572 7038 0.4790 +2572 7054 0.6930 +2572 7070 0.4450 +2572 7074 0.4220 +2572 7080 0.4780 +2572 7166 0.4350 +2572 7173 0.5120 +2572 7273 0.4750 +2572 7376 0.4090 +2572 7432 0.5010 +2572 7837 0.4160 +2572 7915 0.6470 +2572 8224 0.4800 +2572 8659 0.9300 +2572 8718 0.7350 +2572 8797 0.8050 +2572 9066 0.4900 +2572 9152 0.6680 +2572 9211 0.8070 +2572 9374 0.5510 +2572 9378 0.5170 +2572 9379 0.4220 +2572 9402 0.6000 +2572 9568 0.5470 +2572 9607 0.4190 +2572 10215 0.4870 +2572 10243 0.7160 +2572 10687 0.7550 +2572 10716 0.6000 +2572 10763 0.4050 +2572 10815 0.6400 +2572 10840 0.4890 +2572 10841 0.8200 +2572 10891 0.4270 +2572 11075 0.4270 +2572 22871 0.4130 +2572 22999 0.6040 +2572 23229 0.4170 +2572 23314 0.4080 +2572 23316 0.4430 +2572 23390 0.5220 +2572 24141 0.4140 +2572 26047 0.8250 +2572 26191 0.4010 +2572 26468 0.5630 +2572 26873 0.8150 +2572 27165 0.9460 +2572 30010 0.5310 +2572 30012 0.4950 +2572 51380 0.9140 +2572 51733 0.9110 +2572 51806 0.5850 +2572 54503 0.4870 +2572 54550 0.4610 +2572 54982 0.4550 +2572 55188 0.5140 +2572 55532 0.8780 +2572 55748 0.9180 +2572 56896 0.7580 +2572 57030 0.8830 +2572 57084 0.8440 +2572 57468 0.7040 +2572 57555 0.4540 +2572 57571 0.9120 +2572 57628 0.7010 +2572 57818 0.5590 +2572 63973 0.4350 +2572 63974 0.4920 +2572 64211 0.4390 +2572 64850 0.4610 +2572 64902 0.8780 +2572 64919 0.4110 +2572 79944 0.8150 +2572 80150 0.8310 +2572 80331 0.5930 +2572 83482 0.4720 +2572 84107 0.7510 +2572 84152 0.4870 +2572 84684 0.6700 +2572 84735 0.9240 +2572 84890 0.9100 +2572 85007 0.4200 +2572 91860 0.5860 +2572 92737 0.6680 +2572 93986 0.4120 +2572 115827 0.4160 +2572 116448 0.4250 +2572 121278 0.4120 +2572 122622 0.8040 +2572 124454 0.8170 +2572 124975 0.9090 +2572 126206 0.5250 +2572 127833 0.4910 +2572 132204 0.5380 +2572 137362 0.8190 +2572 137902 0.4160 +2572 140679 0.9870 +2572 146713 0.6890 +2572 163688 0.5850 +2572 169026 0.8890 +2572 246213 0.6100 +2572 259307 0.8130 +2572 338917 0.4260 +2572 339896 0.9140 +2572 339983 0.8230 +2572 402665 0.6510 +2580 2629 0.7840 +2580 2647 0.5500 +2580 3005 0.4070 +2580 3092 0.6600 +2580 3118 0.4030 +2580 3122 0.4870 +2580 3127 0.6530 +2580 3308 0.6840 +2580 3312 0.9450 +2580 3338 0.4360 +2580 3482 0.7750 +2580 3569 0.4710 +2580 3654 0.5070 +2580 4034 0.4300 +2580 4129 0.4880 +2580 4137 0.5990 +2580 4208 0.4250 +2580 4296 0.4660 +2580 4361 0.4890 +2580 4599 0.6250 +2580 4600 0.6240 +2580 4929 0.4730 +2580 4952 0.6320 +2580 4976 0.4710 +2580 5007 0.4050 +2580 5071 0.6090 +2580 5286 0.6190 +2580 5878 0.6340 +2580 5883 0.5000 +2580 6014 0.5900 +2580 6272 0.5070 +2580 6311 0.4160 +2580 6396 0.4860 +2580 6453 0.4660 +2580 6455 0.4180 +2580 6456 0.4490 +2580 6622 0.5790 +2580 6643 0.5670 +2580 6653 0.4380 +2580 6844 0.5540 +2580 6845 0.5400 +2580 7037 0.5700 +2580 7163 0.5010 +2580 7164 0.4990 +2580 8218 0.9960 +2580 8301 0.8420 +2580 8398 0.5570 +2580 8522 0.4540 +2580 8546 0.5810 +2580 8615 0.4380 +2580 8650 0.7340 +2580 8673 0.5180 +2580 8675 0.4070 +2580 8711 0.4250 +2580 8775 0.5340 +2580 8867 0.6380 +2580 8871 0.5410 +2580 8905 0.5600 +2580 8906 0.5730 +2580 8907 0.7570 +2580 8934 0.9790 +2580 8943 0.5890 +2580 9026 0.9400 +2580 9037 0.4970 +2580 9179 0.4010 +2580 9253 0.6740 +2580 9446 0.5900 +2580 9529 0.9360 +2580 9567 0.4460 +2580 9627 0.4280 +2580 9632 0.5380 +2580 9662 0.4250 +2580 9685 0.6750 +2580 9698 0.5890 +2580 9732 0.4320 +2580 9829 0.6780 +2580 9892 0.6010 +2580 9927 0.4930 +2580 10053 0.6550 +2580 10059 0.6380 +2580 10188 0.4380 +2580 10239 0.4670 +2580 10294 0.4220 +2580 10336 0.5710 +2580 10617 0.4720 +2580 10618 0.6120 +2580 10717 0.5960 +2580 10808 0.4350 +2580 10815 0.6870 +2580 11060 0.4120 +2580 11273 0.4250 +2580 11276 0.4390 +2580 11315 0.4580 +2580 22824 0.4270 +2580 22848 0.7850 +2580 22905 0.7730 +2580 23140 0.4070 +2580 23149 0.5950 +2580 23208 0.5930 +2580 23230 0.4010 +2580 23274 0.4790 +2580 23295 0.4780 +2580 23317 0.6860 +2580 23400 0.7660 +2580 23406 0.4370 +2580 23431 0.7890 +2580 23557 0.5370 +2580 25793 0.5180 +2580 25977 0.6980 +2580 26052 0.6870 +2580 26058 0.5400 +2580 26258 0.4990 +2580 27000 0.4370 +2580 27131 0.5070 +2580 27429 0.4690 +2580 28988 0.4910 +2580 29924 0.7580 +2580 50618 0.4750 +2580 51068 0.4150 +2580 51142 0.4670 +2580 51429 0.6560 +2580 51699 0.4260 +2580 54431 0.4150 +2580 54832 0.5550 +2580 54853 0.4660 +2580 54872 0.5290 +2580 54885 0.5370 +2580 55040 0.7660 +2580 55330 0.4990 +2580 55610 0.4340 +2580 55635 0.4300 +2580 55651 0.4130 +2580 55669 0.4710 +2580 55737 0.8410 +2580 55835 0.4250 +2580 56521 0.4150 +2580 56922 0.6920 +2580 57130 0.4570 +2580 57559 0.6450 +2580 57664 0.4160 +2580 57704 0.5920 +2580 58513 0.5960 +2580 59272 0.4180 +2580 64215 0.4670 +2580 64744 0.4030 +2580 65018 0.6070 +2580 65125 0.4970 +2580 79705 0.5630 +2580 80208 0.4270 +2580 80331 0.5260 +2580 80347 0.4010 +2580 80705 0.4250 +2580 81567 0.5280 +2580 83932 0.6020 +2580 84062 0.4990 +2580 84179 0.4880 +2580 84251 0.4500 +2580 84286 0.7430 +2580 84660 0.7000 +2580 85439 0.4890 +2580 85479 0.4990 +2580 91683 0.6090 +2580 112755 0.4050 +2580 114881 0.4090 +2580 115548 0.5110 +2580 116442 0.4200 +2580 119391 0.5880 +2580 120892 0.9810 +2580 125988 0.4400 +2580 130013 0.6190 +2580 130162 0.9790 +2580 130340 0.5560 +2580 134218 0.4310 +2580 140290 0.4250 +2580 150350 0.6520 +2580 202052 0.4420 +2580 286451 0.5700 +2580 348110 0.4050 +2580 388552 0.5000 +2580 400451 0.4570 +2580 100287284 0.4360 +2580 100526783 0.4050 +2581 2629 0.9780 +2581 2670 0.7020 +2581 2717 0.9760 +2581 2720 0.8240 +2581 3423 0.4510 +2581 3425 0.6090 +2581 3700 0.5040 +2581 4099 0.5930 +2581 4133 0.4810 +2581 4155 0.8140 +2581 4340 0.6090 +2581 4668 0.4120 +2581 4669 0.4730 +2581 4758 0.9140 +2581 4759 0.9180 +2581 4821 0.4180 +2581 4864 0.4010 +2581 4942 0.4450 +2581 5156 0.6130 +2581 5354 0.5810 +2581 5476 0.5070 +2581 5660 0.9380 +2581 6285 0.4220 +2581 6448 0.4020 +2581 6609 0.9710 +2581 6610 0.9300 +2581 6657 0.5360 +2581 6663 0.4400 +2581 7167 0.4340 +2581 7357 0.9500 +2581 7368 0.9680 +2581 7852 0.4860 +2581 8078 0.4360 +2581 8560 0.9210 +2581 8612 0.9130 +2581 8613 0.9060 +2581 9331 0.4560 +2581 9514 0.9370 +2581 10215 0.6500 +2581 10381 0.4300 +2581 10578 0.4910 +2581 10763 0.6200 +2581 10825 0.9000 +2581 27020 0.4950 +2581 27233 0.4240 +2581 27284 0.4500 +2581 29956 0.9370 +2581 51324 0.4610 +2581 51633 0.4540 +2581 55092 0.4200 +2581 55512 0.9260 +2581 55627 0.9300 +2581 56624 0.9340 +2581 57704 0.9500 +2581 57727 0.4300 +2581 64781 0.9420 +2581 79603 0.9320 +2581 79753 0.5480 +2581 81537 0.9350 +2581 91012 0.9250 +2581 116448 0.6150 +2581 123099 0.9150 +2581 125981 0.9290 +2581 129807 0.9080 +2581 130367 0.9060 +2581 146713 0.4340 +2581 166929 0.9290 +2581 196483 0.6180 +2581 204219 0.9360 +2581 253782 0.9310 +2581 259230 0.9380 +2581 339221 0.9120 +2581 340485 0.9310 +2581 442038 0.4240 +2581 728340 0.4470 +2581 768239 0.6450 +2582 2584 0.9970 +2582 2585 0.9910 +2582 2592 0.9990 +2582 2597 0.4210 +2582 2618 0.5670 +2582 2673 0.6200 +2582 2683 0.9350 +2582 2762 0.7310 +2582 2820 0.4270 +2582 2821 0.7200 +2582 2990 0.4450 +2582 2997 0.5330 +2582 2998 0.5290 +2582 3155 0.4350 +2582 3283 0.5720 +2582 3284 0.5310 +2582 3590 0.9610 +2582 3906 0.9290 +2582 4126 0.4820 +2582 4191 0.4470 +2582 4351 0.7160 +2582 5188 0.5430 +2582 5213 0.5100 +2582 5226 0.5190 +2582 5232 0.4160 +2582 5236 0.4840 +2582 5238 0.7020 +2582 5277 0.6460 +2582 5300 0.7150 +2582 5303 0.4340 +2582 5372 0.4080 +2582 5373 0.5520 +2582 5464 0.4520 +2582 5498 0.8480 +2582 5654 0.5550 +2582 5829 0.4050 +2582 5832 0.5520 +2582 5888 0.4980 +2582 6117 0.4850 +2582 6120 0.5470 +2582 6652 0.5040 +2582 6888 0.5480 +2582 7086 0.4450 +2582 7167 0.5590 +2582 7264 0.7910 +2582 7355 0.4040 +2582 7358 0.9840 +2582 7360 0.9940 +2582 8192 0.5980 +2582 8226 0.4850 +2582 8704 0.9150 +2582 8760 0.4220 +2582 8813 0.4140 +2582 8891 0.4110 +2582 8893 0.4170 +2582 9563 0.5140 +2582 9942 0.5050 +2582 9945 0.5390 +2582 10007 0.5560 +2582 10020 0.7620 +2582 10845 0.5280 +2582 11144 0.4820 +2582 11181 0.5110 +2582 11284 0.4160 +2582 22934 0.5710 +2582 23483 0.6860 +2582 25796 0.4550 +2582 27068 0.4590 +2582 27294 0.4410 +2582 27430 0.5800 +2582 28960 0.4080 +2582 29880 0.4410 +2582 29925 0.6720 +2582 29926 0.5590 +2582 50814 0.5390 +2582 51005 0.4670 +2582 51071 0.5340 +2582 51477 0.4580 +2582 51626 0.4040 +2582 54187 0.6040 +2582 54884 0.7980 +2582 55276 0.5250 +2582 55312 0.4130 +2582 55577 0.5320 +2582 56052 0.5490 +2582 60678 0.4050 +2582 64080 0.5880 +2582 64841 0.7020 +2582 64979 0.5170 +2582 80146 0.6480 +2582 80270 0.5030 +2582 81493 0.4020 +2582 81570 0.5560 +2582 84076 0.4050 +2582 84795 0.7940 +2582 85365 0.5470 +2582 85569 0.4140 +2582 91373 0.8040 +2582 93517 0.4950 +2582 130589 0.9880 +2582 132789 0.4310 +2582 283209 0.5350 +2582 283677 0.4010 +2582 284098 0.6340 +2582 440138 0.5610 +2582 644974 0.5290 +2582 729020 0.4800 +2583 2589 0.8550 +2583 2590 0.8150 +2583 2591 0.8130 +2583 2720 0.9100 +2583 3073 0.9330 +2583 3074 0.9250 +2583 3798 0.8510 +2583 4099 0.4400 +2583 4102 0.4440 +2583 4584 0.4970 +2583 4759 0.4160 +2583 4864 0.6740 +2583 6253 0.4350 +2583 6482 0.4160 +2583 6483 0.5950 +2583 6489 0.9850 +2583 7056 0.4220 +2583 7705 0.4370 +2583 8398 0.4370 +2583 8693 0.8310 +2583 8705 0.9700 +2583 8856 0.4240 +2583 8869 0.9570 +2583 9197 0.9420 +2583 9331 0.8800 +2583 9445 0.4200 +2583 9895 0.6400 +2583 9907 0.6600 +2583 10717 0.4470 +2583 10908 0.4180 +2583 11154 0.4780 +2583 11226 0.8470 +2583 11285 0.5080 +2583 22856 0.8350 +2583 23259 0.4750 +2583 23431 0.4320 +2583 23503 0.4160 +2583 26229 0.4160 +2583 26290 0.8520 +2583 29906 0.4030 +2583 51308 0.4940 +2583 51324 0.4770 +2583 54480 0.6740 +2583 55454 0.4670 +2583 55790 0.4680 +2583 56913 0.4850 +2583 57704 0.5400 +2583 65055 0.4590 +2583 79152 0.4380 +2583 79586 0.8770 +2583 79695 0.6160 +2583 80199 0.4430 +2583 80208 0.4470 +2583 80821 0.4480 +2583 84002 0.4440 +2583 91574 0.6380 +2583 113612 0.6210 +2583 114805 0.8250 +2583 126129 0.4680 +2583 137492 0.4330 +2583 340075 0.4130 +2584 2592 0.9990 +2584 2651 0.4060 +2584 2689 0.4220 +2584 2700 0.4720 +2584 2703 0.5570 +2584 2717 0.6080 +2584 2821 0.6280 +2584 2990 0.4800 +2584 3028 0.4270 +2584 3201 0.4930 +2584 3203 0.5550 +2584 3207 0.4220 +2584 3299 0.4320 +2584 3590 0.8850 +2584 3795 0.4700 +2584 3982 0.4700 +2584 4094 0.4120 +2584 4123 0.4840 +2584 4126 0.4320 +2584 4351 0.5880 +2584 4353 0.4230 +2584 4595 0.4390 +2584 4598 0.8290 +2584 4619 0.4590 +2584 4620 0.5760 +2584 4621 0.4290 +2584 4622 0.4950 +2584 4626 0.4320 +2584 4668 0.4780 +2584 4804 0.4890 +2584 5009 0.4230 +2584 5188 0.4390 +2584 5211 0.4510 +2584 5213 0.5350 +2584 5236 0.5390 +2584 5238 0.4020 +2584 5239 0.4340 +2584 5372 0.4760 +2584 5833 0.4750 +2584 5834 0.4020 +2584 5836 0.4020 +2584 5888 0.4890 +2584 6120 0.4830 +2584 6652 0.5230 +2584 6888 0.5030 +2584 7067 0.5760 +2584 7083 0.8760 +2584 7084 0.8450 +2584 7086 0.4700 +2584 7167 0.5110 +2584 7264 0.4010 +2584 7298 0.4090 +2584 7358 0.5770 +2584 7360 0.8220 +2584 9563 0.5140 +2584 9942 0.6770 +2584 10007 0.4640 +2584 10020 0.5100 +2584 11181 0.4570 +2584 22934 0.4630 +2584 23483 0.6300 +2584 25796 0.4240 +2584 26227 0.4160 +2584 27294 0.8300 +2584 30833 0.7470 +2584 51005 0.4590 +2584 51095 0.5650 +2584 54187 0.4590 +2584 54438 0.4910 +2584 55276 0.4140 +2584 55294 0.5240 +2584 55811 0.4220 +2584 56922 0.7210 +2584 56953 0.4940 +2584 57818 0.4090 +2584 64080 0.5490 +2584 81577 0.4930 +2584 83440 0.7800 +2584 91373 0.5030 +2584 92579 0.4590 +2584 130589 0.9990 +2584 136541 0.4120 +2584 283209 0.4200 +2584 387700 0.5060 +2585 2592 0.9640 +2585 2717 0.4010 +2585 2821 0.4570 +2585 2990 0.4360 +2585 3590 0.9090 +2585 4048 0.4660 +2585 4123 0.4080 +2585 4126 0.4360 +2585 4351 0.4610 +2585 4598 0.5080 +2585 4668 0.4060 +2585 5009 0.4450 +2585 5042 0.4400 +2585 5236 0.5440 +2585 5238 0.5350 +2585 5239 0.4410 +2585 6888 0.4540 +2585 7083 0.5820 +2585 7084 0.4030 +2585 7167 0.4280 +2585 7360 0.6700 +2585 7372 0.4350 +2585 8890 0.4060 +2585 9563 0.4220 +2585 9942 0.4180 +2585 10020 0.5100 +2585 11180 0.4080 +2585 23483 0.5930 +2585 26235 0.5100 +2585 27294 0.8290 +2585 51074 0.4100 +2585 54438 0.4910 +2585 55577 0.4180 +2585 55610 0.4410 +2585 81577 0.5050 +2585 81889 0.4240 +2585 91373 0.4940 +2585 93436 0.4390 +2585 130589 0.9630 +2585 256714 0.4010 +2585 284273 0.5120 +2587 2770 0.9120 +2587 2782 0.9090 +2587 2796 0.4240 +2587 2832 0.5090 +2587 2847 0.5420 +2587 2852 0.5030 +2587 2861 0.5000 +2587 2864 0.8190 +2587 3060 0.4340 +2587 3350 0.9110 +2587 3363 0.4240 +2587 3827 0.6830 +2587 3957 0.5060 +2587 4155 0.5000 +2587 4852 0.6200 +2587 4922 0.4170 +2587 4985 0.7170 +2587 4988 0.8480 +2587 5173 0.6240 +2587 5179 0.5870 +2587 5367 0.5770 +2587 5368 0.6150 +2587 5443 0.6940 +2587 5539 0.4160 +2587 5618 0.4060 +2587 5660 0.5010 +2587 6318 0.5130 +2587 6714 0.5060 +2587 6750 0.6810 +2587 6751 0.5750 +2587 6752 0.5760 +2587 6753 0.5510 +2587 6754 0.5870 +2587 6755 0.5450 +2587 6863 0.4230 +2587 7432 0.4790 +2587 7433 0.4540 +2587 7776 0.4600 +2587 8170 0.6300 +2587 8484 0.9130 +2587 8811 0.9800 +2587 8862 0.5590 +2587 9283 0.4990 +2587 9658 0.4770 +2587 10316 0.5390 +2587 10874 0.5710 +2587 23742 0.4650 +2587 27012 0.4850 +2587 30012 0.4560 +2587 51083 0.9990 +2587 54331 0.8210 +2587 56923 0.5210 +2587 64106 0.4570 +2587 80763 0.6530 +2587 84539 0.5500 +2587 85569 0.9680 +2587 117532 0.4650 +2587 118987 0.5020 +2587 129521 0.5300 +2587 256933 0.5080 +2587 283869 0.5050 +2587 347148 0.5050 +2587 387804 0.4570 +2587 442184 0.4020 +2588 2629 0.4440 +2588 2720 0.9970 +2588 2760 0.5730 +2588 2799 0.6120 +2588 2990 0.6870 +2588 3373 0.4830 +2588 3423 0.6890 +2588 3425 0.7830 +2588 3916 0.4070 +2588 4125 0.4820 +2588 4126 0.4600 +2588 4668 0.4770 +2588 4669 0.7420 +2588 4758 0.8300 +2588 5009 0.4190 +2588 5476 0.7620 +2588 5547 0.4290 +2588 6448 0.5920 +2588 6609 0.4150 +2588 6677 0.4170 +2588 6687 0.6680 +2588 8558 0.7410 +2588 9282 0.5100 +2588 9412 0.4880 +2588 9440 0.4380 +2588 9443 0.4910 +2588 10001 0.5010 +2588 23213 0.4280 +2588 51003 0.4810 +2588 51363 0.4030 +2588 51693 0.4870 +2588 55959 0.4330 +2588 64174 0.4410 +2588 79087 0.4010 +2588 79158 0.4630 +2588 84246 0.4550 +2588 84572 0.4480 +2588 92822 0.7910 +2588 138050 0.6590 +2588 153642 0.5260 +2588 285362 0.9610 +2589 2590 0.5620 +2589 2650 0.9460 +2589 2683 0.4120 +2589 2762 0.4140 +2589 4124 0.4270 +2589 4249 0.4250 +2589 4584 0.7710 +2589 4585 0.4900 +2589 4586 0.4920 +2589 4588 0.4470 +2589 4589 0.5650 +2589 5048 0.5180 +2589 5870 0.5060 +2589 6480 0.4370 +2589 6482 0.4940 +2589 6694 0.4270 +2589 8655 0.5060 +2589 8703 0.4420 +2589 8704 0.4100 +2589 9245 0.4070 +2589 9334 0.4100 +2589 9672 0.6480 +2589 10071 0.4530 +2589 10121 0.5150 +2589 10540 0.5190 +2589 10671 0.5090 +2589 11253 0.4240 +2589 11258 0.5070 +2589 22856 0.5060 +2589 22930 0.5090 +2589 22931 0.6080 +2589 23299 0.5250 +2589 25782 0.5090 +2589 29071 0.8390 +2589 29956 0.4810 +2589 51143 0.5210 +2589 51164 0.5080 +2589 51560 0.4990 +2589 55197 0.4530 +2589 55808 0.9380 +2589 55860 0.5100 +2589 56667 0.4800 +2589 56913 0.8610 +2589 83608 0.5190 +2589 84516 0.5080 +2589 84904 0.5500 +2589 93661 0.4990 +2589 94025 0.4550 +2589 118430 0.4150 +2589 129642 0.4090 +2589 140453 0.4360 +2589 140735 0.5060 +2589 143662 0.4460 +2589 192134 0.9250 +2589 200958 0.4460 +2589 394263 0.4440 +2589 727897 0.4250 +2589 728819 0.6810 +2590 2650 0.9430 +2590 2683 0.4640 +2590 2802 0.4360 +2590 3931 0.4330 +2590 3990 0.5980 +2590 4124 0.4870 +2590 4245 0.5170 +2590 4585 0.4400 +2590 4586 0.7050 +2590 4588 0.4050 +2590 4589 0.7000 +2590 4598 0.4880 +2590 5048 0.5040 +2590 5360 0.5330 +2590 5870 0.5530 +2590 6272 0.5100 +2590 6480 0.4270 +2590 6482 0.4800 +2590 6811 0.4460 +2590 7542 0.4090 +2590 8655 0.5180 +2590 8703 0.4190 +2590 9245 0.4550 +2590 9334 0.4580 +2590 9388 0.6050 +2590 10071 0.4150 +2590 10121 0.5110 +2590 10221 0.6200 +2590 10540 0.5090 +2590 10618 0.6110 +2590 10671 0.5000 +2590 10678 0.4580 +2590 11154 0.4160 +2590 11258 0.5000 +2590 22930 0.5130 +2590 22931 0.5010 +2590 23065 0.4010 +2590 23193 0.4750 +2590 23299 0.5040 +2590 23509 0.4490 +2590 25782 0.5090 +2590 26003 0.4690 +2590 26608 0.5340 +2590 27329 0.6230 +2590 29071 0.8450 +2590 51085 0.4470 +2590 51143 0.5050 +2590 51164 0.5170 +2590 51560 0.4990 +2590 54826 0.4120 +2590 55204 0.5540 +2590 55343 0.4360 +2590 55741 0.4130 +2590 55808 0.9390 +2590 55860 0.5040 +2590 56667 0.6040 +2590 56913 0.9070 +2590 56926 0.4110 +2590 79586 0.6670 +2590 79605 0.4660 +2590 79660 0.4470 +2590 80714 0.5070 +2590 84288 0.4280 +2590 84516 0.5090 +2590 84722 0.4870 +2590 85449 0.4130 +2590 93661 0.4990 +2590 94025 0.4210 +2590 116519 0.5980 +2590 118430 0.4840 +2590 140453 0.4080 +2590 140735 0.5070 +2590 144348 0.4660 +2590 148113 0.5860 +2590 158219 0.5830 +2590 192134 0.9370 +2590 200958 0.4200 +2590 326625 0.6430 +2590 347734 0.4160 +2590 727897 0.4560 +2590 728819 0.6750 +2591 2650 0.9430 +2591 3249 0.5280 +2591 4311 0.4120 +2591 4584 0.4310 +2591 4585 0.4910 +2591 4586 0.6980 +2591 4588 0.4210 +2591 4589 0.4730 +2591 5045 0.5700 +2591 5167 0.4730 +2591 5251 0.8310 +2591 5741 0.7770 +2591 6328 0.4350 +2591 6482 0.4550 +2591 6483 0.4350 +2591 6569 0.5540 +2591 6575 0.4620 +2591 7837 0.4190 +2591 8074 0.9870 +2591 9245 0.5360 +2591 9365 0.8190 +2591 9510 0.4050 +2591 9965 0.4200 +2591 10071 0.4730 +2591 10331 0.5390 +2591 10753 0.4510 +2591 26291 0.4470 +2591 29071 0.8290 +2591 54809 0.7160 +2591 55624 0.4400 +2591 55808 0.9350 +2591 56603 0.4110 +2591 56667 0.5250 +2591 56913 0.8500 +2591 56955 0.5210 +2591 56975 0.6190 +2591 57709 0.4530 +2591 79974 0.4420 +2591 94025 0.4770 +2591 118430 0.4170 +2591 140453 0.4350 +2591 142680 0.6710 +2591 143662 0.4810 +2591 192134 0.9350 +2591 200958 0.4800 +2591 337876 0.7620 +2591 727897 0.4550 +2591 728819 0.6670 +2592 2683 0.9180 +2592 3094 0.4300 +2592 3284 0.4140 +2592 3570 0.4980 +2592 3572 0.4310 +2592 3589 0.5920 +2592 3590 0.9300 +2592 3906 0.9130 +2592 4351 0.4480 +2592 5167 0.9030 +2592 5169 0.9000 +2592 5236 0.6590 +2592 5238 0.6230 +2592 5239 0.5630 +2592 7264 0.4930 +2592 7358 0.8780 +2592 7360 0.9860 +2592 8226 0.6680 +2592 8704 0.9110 +2592 9276 0.5100 +2592 9563 0.4230 +2592 9942 0.4370 +2592 10020 0.4160 +2592 10094 0.4220 +2592 10188 0.5190 +2592 23483 0.7800 +2592 27294 0.4110 +2592 29925 0.4590 +2592 29926 0.5060 +2592 29982 0.4310 +2592 55276 0.5750 +2592 55811 0.7680 +2592 60314 0.5990 +2592 80146 0.5410 +2592 91373 0.5830 +2592 92181 0.6130 +2592 130589 0.9370 +2592 135114 0.5310 +2592 197258 0.7460 +2592 283209 0.5910 +2592 388677 0.5560 +2593 2628 0.9970 +2593 3150 0.4190 +2593 3151 0.4190 +2593 3276 0.4030 +2593 4143 0.6000 +2593 4144 0.5310 +2593 4204 0.8360 +2593 4234 0.4290 +2593 4548 0.4100 +2593 4839 0.4060 +2593 4931 0.4050 +2593 5009 0.4180 +2593 5036 0.6140 +2593 5348 0.5560 +2593 5434 0.4760 +2593 5822 0.5400 +2593 6136 0.5800 +2593 6535 0.9450 +2593 6821 0.4110 +2593 8602 0.4260 +2593 8886 0.6010 +2593 9790 0.6370 +2593 10153 0.5580 +2593 10376 0.4260 +2593 10400 0.7280 +2593 10473 0.4190 +2593 10528 0.5440 +2593 10607 0.5970 +2593 10667 0.5260 +2593 10885 0.5530 +2593 11103 0.5150 +2593 11137 0.5710 +2593 23160 0.4980 +2593 23171 0.4720 +2593 23212 0.5430 +2593 23223 0.5970 +2593 23246 0.6280 +2593 23378 0.4670 +2593 23560 0.7650 +2593 25885 0.4190 +2593 26155 0.6240 +2593 26156 0.4020 +2593 26354 0.6140 +2593 27232 0.6230 +2593 27292 0.5960 +2593 28987 0.4030 +2593 28989 0.4900 +2593 29889 0.4330 +2593 51068 0.5990 +2593 51154 0.6510 +2593 51187 0.6140 +2593 51388 0.6160 +2593 51575 0.6160 +2593 51605 0.4020 +2593 54475 0.4060 +2593 54517 0.4020 +2593 54552 0.6140 +2593 54606 0.5200 +2593 54715 0.4040 +2593 55006 0.4120 +2593 55131 0.5650 +2593 55153 0.6040 +2593 55163 0.4450 +2593 55226 0.5930 +2593 55299 0.7870 +2593 55651 0.5230 +2593 55720 0.6060 +2593 55759 0.4010 +2593 57109 0.5150 +2593 57412 0.4390 +2593 57418 0.4880 +2593 60487 0.5350 +2593 64216 0.4910 +2593 64318 0.4020 +2593 64425 0.5840 +2593 65003 0.5520 +2593 79446 0.4450 +2593 79918 0.4140 +2593 79954 0.4530 +2593 83743 0.6120 +2593 84128 0.5420 +2593 84154 0.7700 +2593 84365 0.6180 +2593 84916 0.4020 +2593 84946 0.4020 +2593 92170 0.5450 +2593 92856 0.4090 +2593 114787 0.5660 +2593 115708 0.5420 +2593 117246 0.4590 +2593 140462 0.4390 +2593 149281 0.4850 +2593 221078 0.4030 +2593 221830 0.5260 +2593 548596 0.6010 +2595 2717 0.9020 +2595 3098 0.9000 +2595 3099 0.9000 +2595 3101 0.9000 +2595 6476 0.9200 +2595 8972 0.9250 +2595 80201 0.9000 +2595 93432 0.9180 +2596 2597 0.5940 +2596 2662 0.4050 +2596 2668 0.5650 +2596 2670 0.7160 +2596 2775 0.4150 +2596 2785 0.5280 +2596 2890 0.4290 +2596 2891 0.4010 +2596 2904 0.5360 +2596 3059 0.5010 +2596 3309 0.4710 +2596 3400 0.4320 +2596 3479 0.4020 +2596 3725 0.4430 +2596 3800 0.4050 +2596 3897 0.4370 +2596 3925 0.4110 +2596 4045 0.4230 +2596 4082 0.7260 +2596 4099 0.6950 +2596 4131 0.5040 +2596 4133 0.8210 +2596 4137 0.7720 +2596 4155 0.7180 +2596 4684 0.8310 +2596 4741 0.6270 +2596 4744 0.6810 +2596 4747 0.6950 +2596 4760 0.4920 +2596 4762 0.4740 +2596 4803 0.9040 +2596 4804 0.4680 +2596 4852 0.4900 +2596 4897 0.5630 +2596 4900 0.8400 +2596 4908 0.5140 +2596 4914 0.7370 +2596 4915 0.5910 +2596 4974 0.4240 +2596 4975 0.7690 +2596 5029 0.5160 +2596 5080 0.4790 +2596 5121 0.4560 +2596 5321 0.4310 +2596 5333 0.4070 +2596 5345 0.5030 +2596 5354 0.5910 +2596 5458 0.4210 +2596 5459 0.5450 +2596 5538 0.5830 +2596 5576 0.4320 +2596 5663 0.4610 +2596 5764 0.4170 +2596 5816 0.5130 +2596 5864 0.4230 +2596 6285 0.5640 +2596 6496 0.4120 +2596 6616 0.8190 +2596 6620 0.4580 +2596 6622 0.4620 +2596 6623 0.4360 +2596 6657 0.4980 +2596 6663 0.4500 +2596 6664 0.4520 +2596 6714 0.5650 +2596 6750 0.4250 +2596 6804 0.5630 +2596 6844 0.6940 +2596 6853 0.9050 +2596 6854 0.7410 +2596 6855 0.8740 +2596 6857 0.7350 +2596 6860 0.5480 +2596 6863 0.5040 +2596 6900 0.6360 +2596 7054 0.6860 +2596 7070 0.5240 +2596 7257 0.5570 +2596 7345 0.6150 +2596 7483 0.4100 +2596 7837 0.4610 +2596 8224 0.6990 +2596 9374 0.6090 +2596 9378 0.4140 +2596 9423 0.4050 +2596 9892 0.4020 +2596 9900 0.4730 +2596 10215 0.4340 +2596 10371 0.4510 +2596 10381 0.5420 +2596 10409 0.8950 +2596 10763 0.5690 +2596 10814 0.4250 +2596 10818 0.5360 +2596 11057 0.4220 +2596 11075 0.7240 +2596 11313 0.8180 +2596 23114 0.4390 +2596 23154 0.5520 +2596 23621 0.6080 +2596 25830 0.4130 +2596 29114 0.4430 +2596 29970 0.5800 +2596 50861 0.4620 +2596 51083 0.4280 +2596 51299 0.5960 +2596 51806 0.9870 +2596 53340 0.4940 +2596 54982 0.4290 +2596 55079 0.4290 +2596 57030 0.4560 +2596 57084 0.4820 +2596 57142 0.4780 +2596 65078 0.5190 +2596 65108 0.5470 +2596 79012 0.5520 +2596 81551 0.4220 +2596 83857 0.4340 +2596 84894 0.4810 +2596 91860 0.9870 +2596 116448 0.5560 +2596 137902 0.4610 +2596 146713 0.5980 +2596 163688 0.9870 +2596 220202 0.5450 +2596 338917 0.4570 +2596 654502 0.5900 +2596 100505385 0.5490 +2597 2617 0.4120 +2597 2618 0.4950 +2597 2623 0.4960 +2597 2624 0.4480 +2597 2625 0.5750 +2597 2626 0.6090 +2597 2627 0.4960 +2597 2629 0.4460 +2597 2632 0.4490 +2597 2634 0.5650 +2597 2641 0.5010 +2597 2645 0.5180 +2597 2660 0.5110 +2597 2668 0.5480 +2597 2670 0.7490 +2597 2673 0.4970 +2597 2697 0.6100 +2597 2710 0.5920 +2597 2712 0.5910 +2597 2729 0.5980 +2597 2730 0.5400 +2597 2735 0.5970 +2597 2736 0.4810 +2597 2737 0.4190 +2597 2739 0.4580 +2597 2745 0.5380 +2597 2746 0.5070 +2597 2747 0.6070 +2597 2752 0.6880 +2597 2801 0.4990 +2597 2805 0.5690 +2597 2806 0.7540 +2597 2810 0.4940 +2597 2819 0.5810 +2597 2820 0.5460 +2597 2821 0.9950 +2597 2833 0.4230 +2597 2872 0.4110 +2597 2873 0.4640 +2597 2875 0.6990 +2597 2877 0.6530 +2597 2878 0.6480 +2597 2879 0.6480 +2597 2880 0.6190 +2597 2882 0.6660 +2597 2885 0.5300 +2597 2890 0.4820 +2597 2891 0.7290 +2597 2896 0.4400 +2597 2903 0.4470 +2597 2904 0.5060 +2597 2908 0.5390 +2597 2919 0.6000 +2597 2920 0.4480 +2597 2923 0.8480 +2597 2931 0.5720 +2597 2932 0.8170 +2597 2936 0.6820 +2597 2950 0.6710 +2597 2987 0.4230 +2597 2990 0.7660 +2597 2997 0.4250 +2597 3002 0.4690 +2597 3005 0.5130 +2597 3008 0.5320 +2597 3010 0.4790 +2597 3014 0.6220 +2597 3015 0.4790 +2597 3017 0.4600 +2597 3018 0.4520 +2597 3021 0.8170 +2597 3030 0.4480 +2597 3032 0.4600 +2597 3036 0.4270 +2597 3037 0.5580 +2597 3038 0.4090 +2597 3043 0.4720 +2597 3059 0.4830 +2597 3064 0.9930 +2597 3065 0.7620 +2597 3066 0.6020 +2597 3082 0.5940 +2597 3084 0.4400 +2597 3091 0.7510 +2597 3098 0.7080 +2597 3099 0.6630 +2597 3145 0.7840 +2597 3146 0.7400 +2597 3156 0.6700 +2597 3157 0.4210 +2597 3162 0.7590 +2597 3164 0.4180 +2597 3169 0.4410 +2597 3170 0.4960 +2597 3172 0.6050 +2597 3178 0.6700 +2597 3181 0.5850 +2597 3183 0.5610 +2597 3184 0.4930 +2597 3190 0.6430 +2597 3191 0.4030 +2597 3226 0.5010 +2597 3227 0.4580 +2597 3248 0.6880 +2597 3251 0.8940 +2597 3265 0.5310 +2597 3276 0.4570 +2597 3283 0.4730 +2597 3290 0.5600 +2597 3291 0.4760 +2597 3297 0.5230 +2597 3303 0.5260 +2597 3304 0.7190 +2597 3305 0.4150 +2597 3308 0.9010 +2597 3309 0.8060 +2597 3310 0.5170 +2597 3312 0.9860 +2597 3313 0.7870 +2597 3315 0.6710 +2597 3316 0.6720 +2597 3320 0.9220 +2597 3326 0.8720 +2597 3329 0.7920 +2597 3336 0.7020 +2597 3337 0.4950 +2597 3381 0.5710 +2597 3383 0.6630 +2597 3394 0.4030 +2597 3397 0.4150 +2597 3417 0.7040 +2597 3418 0.7860 +2597 3419 0.4500 +2597 3433 0.4870 +2597 3434 0.6060 +2597 3437 0.4660 +2597 3439 0.7130 +2597 3440 0.4480 +2597 3454 0.5010 +2597 3456 0.6970 +2597 3458 0.7940 +2597 3479 0.6830 +2597 3480 0.6000 +2597 3481 0.5600 +2597 3484 0.4020 +2597 3486 0.4710 +2597 3491 0.5240 +2597 3516 0.5070 +2597 3549 0.4310 +2597 3551 0.6220 +2597 3552 0.6750 +2597 3553 0.8720 +2597 3554 0.4470 +2597 3557 0.4010 +2597 3558 0.8130 +2597 3562 0.5320 +2597 3565 0.7130 +2597 3567 0.5320 +2597 3569 0.8790 +2597 3570 0.4640 +2597 3574 0.4460 +2597 3575 0.4180 +2597 3576 0.6990 +2597 3579 0.4340 +2597 3586 0.7820 +2597 3589 0.5020 +2597 3596 0.6110 +2597 3600 0.4440 +2597 3605 0.6790 +2597 3606 0.6220 +2597 3611 0.4930 +2597 3615 0.4850 +2597 3620 0.5110 +2597 3627 0.6300 +2597 3630 0.8160 +2597 3643 0.4230 +2597 3654 0.4800 +2597 3655 0.4880 +2597 3658 0.4710 +2597 3659 0.5380 +2597 3661 0.7510 +2597 3662 0.4310 +2597 3663 0.4030 +2597 3665 0.5480 +2597 3667 0.6010 +2597 3670 0.4570 +2597 3673 0.6400 +2597 3678 0.5150 +2597 3684 0.7140 +2597 3685 0.4720 +2597 3687 0.6000 +2597 3688 0.7700 +2597 3690 0.5350 +2597 3692 0.4940 +2597 3704 0.4020 +2597 3708 0.4210 +2597 3710 0.4200 +2597 3714 0.5040 +2597 3716 0.5420 +2597 3717 0.6310 +2597 3725 0.7810 +2597 3727 0.4350 +2597 3728 0.5920 +2597 3732 0.4220 +2597 3735 0.4700 +2597 3764 0.5110 +2597 3791 0.6300 +2597 3814 0.4130 +2597 3815 0.6230 +2597 3838 0.5640 +2597 3845 0.6820 +2597 3848 0.6270 +2597 3852 0.4960 +2597 3855 0.4340 +2597 3856 0.5500 +2597 3857 0.5080 +2597 3858 0.4790 +2597 3861 0.5480 +2597 3875 0.7260 +2597 3880 0.5630 +2597 3906 0.5110 +2597 3916 0.6690 +2597 3920 0.5800 +2597 3921 0.5660 +2597 3925 0.4520 +2597 3934 0.5170 +2597 3936 0.4670 +2597 3948 0.8590 +2597 3952 0.6120 +2597 3953 0.4220 +2597 3956 0.4080 +2597 3958 0.5170 +2597 3960 0.5440 +2597 3973 0.4020 +2597 3976 0.5480 +2597 3984 0.4140 +2597 3991 0.4620 +2597 4000 0.7480 +2597 4001 0.7910 +2597 4015 0.6010 +2597 4023 0.6380 +2597 4040 0.4800 +2597 4041 0.4670 +2597 4057 0.6480 +2597 4060 0.5240 +2597 4067 0.4060 +2597 4072 0.5910 +2597 4087 0.7280 +2597 4088 0.7940 +2597 4089 0.6330 +2597 4090 0.4500 +2597 4092 0.5710 +2597 4094 0.4570 +2597 4128 0.4790 +2597 4129 0.4900 +2597 4130 0.5560 +2597 4131 0.6920 +2597 4133 0.5410 +2597 4137 0.7650 +2597 4141 0.5340 +2597 4143 0.4110 +2597 4144 0.4550 +2597 4151 0.4530 +2597 4155 0.5490 +2597 4170 0.7410 +2597 4176 0.4240 +2597 4179 0.4270 +2597 4191 0.8620 +2597 4193 0.7410 +2597 4199 0.4530 +2597 4204 0.4700 +2597 4208 0.4770 +2597 4210 0.4170 +2597 4217 0.5890 +2597 4233 0.5680 +2597 4254 0.5230 +2597 4255 0.4980 +2597 4282 0.5750 +2597 4283 0.4910 +2597 4286 0.4930 +2597 4288 0.4510 +2597 4303 0.4190 +2597 4311 0.4740 +2597 4312 0.5750 +2597 4313 0.7180 +2597 4314 0.7570 +2597 4316 0.5700 +2597 4317 0.5860 +2597 4318 0.8140 +2597 4319 0.4010 +2597 4321 0.4250 +2597 4322 0.6610 +2597 4323 0.5100 +2597 4353 0.5410 +2597 4357 0.4070 +2597 4360 0.6280 +2597 4363 0.5080 +2597 4478 0.6250 +2597 4482 0.4230 +2597 4493 0.4340 +2597 4508 0.5030 +2597 4512 0.6760 +2597 4513 0.6080 +2597 4514 0.4280 +2597 4519 0.5890 +2597 4522 0.4300 +2597 4524 0.4370 +2597 4535 0.5300 +2597 4536 0.4700 +2597 4537 0.4120 +2597 4538 0.5070 +2597 4540 0.4540 +2597 4548 0.4220 +2597 4586 0.4870 +2597 4591 0.4100 +2597 4594 0.8270 +2597 4599 0.5970 +2597 4609 0.8500 +2597 4613 0.6180 +2597 4617 0.5200 +2597 4618 0.4170 +2597 4624 0.6120 +2597 4625 0.4550 +2597 4627 0.5780 +2597 4629 0.4390 +2597 4632 0.4310 +2597 4633 0.5770 +2597 4637 0.4070 +2597 4653 0.6740 +2597 4654 0.6330 +2597 4656 0.6590 +2597 4659 0.4050 +2597 4666 0.4680 +2597 4684 0.4860 +2597 4686 0.4530 +2597 4688 0.4050 +2597 4690 0.4110 +2597 4691 0.5680 +2597 4704 0.4700 +2597 4706 0.4050 +2597 4714 0.4960 +2597 4720 0.4830 +2597 4722 0.6010 +2597 4728 0.5670 +2597 4734 0.4190 +2597 4736 0.5020 +2597 4738 0.4640 +2597 4739 0.4610 +2597 4744 0.4160 +2597 4747 0.4350 +2597 4751 0.5020 +2597 4760 0.4500 +2597 4763 0.4040 +2597 4771 0.4120 +2597 4772 0.6120 +2597 4780 0.6410 +2597 4790 0.7830 +2597 4791 0.6210 +2597 4792 0.7890 +2597 4803 0.6020 +2597 4804 0.4470 +2597 4811 0.5510 +2597 4830 0.7000 +2597 4831 0.5250 +2597 4841 0.4450 +2597 4842 0.4940 +2597 4843 0.6920 +2597 4846 0.6320 +2597 4851 0.6430 +2597 4852 0.4220 +2597 4853 0.5230 +2597 4854 0.4980 +2597 4855 0.4170 +2597 4860 0.5180 +2597 4863 0.7510 +2597 4868 0.4330 +2597 4869 0.8020 +2597 4878 0.6230 +2597 4879 0.4550 +2597 4891 0.4040 +2597 4893 0.5020 +2597 4899 0.4100 +2597 4904 0.6020 +2597 4907 0.6350 +2597 4908 0.4080 +2597 4913 0.4200 +2597 4914 0.5290 +2597 4915 0.5210 +2597 4924 0.4450 +2597 4938 0.4780 +2597 4940 0.4260 +2597 4946 0.5550 +2597 4953 0.5000 +2597 4967 0.4990 +2597 4973 0.4020 +2597 4976 0.4030 +2597 4982 0.4130 +2597 5009 0.4220 +2597 5015 0.4020 +2597 5033 0.5270 +2597 5034 0.6590 +2597 5036 0.4170 +2597 5037 0.4960 +2597 5045 0.4390 +2597 5052 0.8120 +2597 5054 0.7450 +2597 5071 0.7730 +2597 5077 0.4690 +2597 5080 0.6090 +2597 5081 0.5450 +2597 5091 0.5860 +2597 5093 0.4190 +2597 5104 0.4700 +2597 5105 0.5660 +2597 5106 0.5740 +2597 5111 0.5630 +2597 5116 0.4650 +2597 5122 0.4490 +2597 5154 0.4030 +2597 5155 0.4520 +2597 5156 0.5500 +2597 5159 0.5630 +2597 5162 0.8150 +2597 5163 0.5730 +2597 5164 0.4830 +2597 5165 0.4770 +2597 5166 0.6030 +2597 5175 0.7400 +2597 5207 0.5400 +2597 5208 0.5350 +2597 5209 0.6560 +2597 5210 0.5970 +2597 5211 0.7260 +2597 5213 0.7600 +2597 5214 0.7350 +2597 5216 0.5470 +2597 5223 0.9280 +2597 5224 0.7620 +2597 5225 0.4040 +2597 5226 0.7510 +2597 5230 0.9990 +2597 5232 0.9990 +2597 5236 0.5280 +2597 5241 0.6240 +2597 5243 0.6350 +2597 5245 0.4980 +2597 5250 0.6460 +2597 5265 0.4380 +2597 5289 0.4490 +2597 5290 0.6770 +2597 5295 0.6190 +2597 5307 0.4530 +2597 5313 0.8050 +2597 5315 0.9560 +2597 5327 0.4270 +2597 5328 0.4930 +2597 5329 0.8090 +2597 5338 0.4930 +2597 5340 0.9900 +2597 5341 0.4280 +2597 5346 0.5110 +2597 5347 0.5660 +2597 5354 0.4410 +2597 5355 0.4540 +2597 5366 0.5210 +2597 5371 0.5270 +2597 5431 0.5530 +2597 5432 0.4400 +2597 5443 0.4910 +2597 5451 0.6520 +2597 5460 0.8180 +2597 5464 0.5080 +2597 5465 0.6340 +2597 5467 0.4820 +2597 5468 0.7420 +2597 5476 0.4050 +2597 5478 0.8460 +2597 5479 0.6810 +2597 5481 0.4120 +2597 5499 0.4630 +2597 5515 0.5740 +2597 5518 0.5070 +2597 5534 0.4360 +2597 5550 0.6450 +2597 5551 0.4280 +2597 5566 0.6270 +2597 5567 0.5830 +2597 5568 0.5820 +2597 5578 0.4990 +2597 5584 0.6520 +2597 5591 0.4790 +2597 5592 0.4920 +2597 5594 0.7010 +2597 5595 0.8320 +2597 5598 0.6380 +2597 5599 0.6250 +2597 5600 0.4940 +2597 5601 0.4510 +2597 5603 0.5400 +2597 5604 0.6550 +2597 5610 0.5870 +2597 5617 0.4330 +2597 5621 0.4140 +2597 5663 0.6590 +2597 5673 0.4660 +2597 5682 0.4760 +2597 5683 0.4100 +2597 5684 0.4990 +2597 5685 0.4080 +2597 5686 0.4620 +2597 5687 0.4340 +2597 5688 0.5950 +2597 5689 0.4640 +2597 5690 0.4780 +2597 5693 0.4620 +2597 5696 0.4430 +2597 5702 0.4090 +2597 5704 0.4370 +2597 5708 0.4250 +2597 5710 0.4120 +2597 5723 0.7790 +2597 5725 0.4690 +2597 5727 0.5230 +2597 5728 0.7520 +2597 5729 0.4790 +2597 5734 0.4060 +2597 5741 0.4070 +2597 5742 0.4410 +2597 5743 0.8200 +2597 5747 0.6930 +2597 5770 0.4220 +2597 5781 0.4250 +2597 5788 0.7280 +2597 5816 0.5890 +2597 5829 0.5640 +2597 5832 0.5860 +2597 5834 0.6270 +2597 5836 0.6220 +2597 5837 0.6960 +2597 5862 0.7540 +2597 5868 0.4870 +2597 5877 0.4090 +2597 5879 0.4050 +2597 5880 0.4250 +2597 5888 0.5450 +2597 5894 0.5250 +2597 5896 0.4530 +2597 5901 0.5420 +2597 5914 0.4690 +2597 5915 0.4030 +2597 5917 0.4120 +2597 5921 0.4100 +2597 5925 0.5070 +2597 5935 0.5220 +2597 5966 0.6340 +2597 5970 0.6240 +2597 5971 0.5450 +2597 5972 0.5500 +2597 5976 0.5350 +2597 6009 0.9470 +2597 6010 0.4320 +2597 6035 0.4450 +2597 6041 0.4130 +2597 6050 0.4160 +2597 6093 0.5530 +2597 6118 0.6130 +2597 6120 0.5300 +2597 6121 0.4230 +2597 6122 0.7250 +2597 6124 0.7630 +2597 6125 0.6200 +2597 6128 0.4710 +2597 6129 0.5500 +2597 6130 0.4920 +2597 6132 0.6530 +2597 6133 0.4410 +2597 6135 0.5880 +2597 6136 0.4310 +2597 6137 0.7580 +2597 6138 0.4350 +2597 6141 0.6180 +2597 6143 0.7660 +2597 6154 0.4800 +2597 6155 0.5890 +2597 6156 0.5350 +2597 6159 0.6430 +2597 6161 0.6780 +2597 6168 0.4040 +2597 6175 0.8740 +2597 6176 0.4400 +2597 6181 0.4870 +2597 6182 0.5010 +2597 6187 0.7410 +2597 6188 0.6860 +2597 6189 0.4150 +2597 6193 0.6490 +2597 6194 0.8580 +2597 6195 0.4330 +2597 6198 0.7130 +2597 6199 0.4680 +2597 6201 0.4810 +2597 6202 0.4570 +2597 6203 0.6800 +2597 6205 0.5270 +2597 6206 0.6210 +2597 6207 0.5780 +2597 6208 0.5390 +2597 6209 0.5730 +2597 6217 0.5050 +2597 6222 0.8070 +2597 6223 0.4440 +2597 6224 0.5500 +2597 6228 0.5400 +2597 6229 0.4360 +2597 6233 0.6370 +2597 6235 0.4940 +2597 6240 0.5120 +2597 6241 0.5000 +2597 6262 0.4510 +2597 6275 0.7020 +2597 6277 0.8430 +2597 6279 0.7230 +2597 6280 0.5200 +2597 6281 0.6110 +2597 6282 0.4070 +2597 6285 0.4790 +2597 6300 0.4730 +2597 6310 0.6570 +2597 6319 0.5660 +2597 6347 0.7290 +2597 6348 0.5700 +2597 6351 0.5070 +2597 6364 0.5000 +2597 6373 0.4470 +2597 6374 0.4430 +2597 6376 0.4180 +2597 6382 0.5010 +2597 6387 0.6020 +2597 6389 0.7890 +2597 6390 0.7860 +2597 6391 0.8470 +2597 6401 0.4690 +2597 6402 0.4910 +2597 6418 0.6780 +2597 6422 0.4110 +2597 6426 0.6170 +2597 6427 0.4170 +2597 6446 0.4900 +2597 6462 0.4930 +2597 6464 0.4030 +2597 6469 0.5860 +2597 6470 0.8860 +2597 6472 0.9200 +2597 6477 0.9970 +2597 6478 0.5030 +2597 6500 0.4810 +2597 6502 0.4970 +2597 6506 0.6410 +2597 6507 0.6390 +2597 6510 0.4120 +2597 6513 0.7370 +2597 6514 0.6190 +2597 6515 0.6380 +2597 6517 0.8190 +2597 6518 0.4940 +2597 6520 0.4280 +2597 6521 0.6760 +2597 6522 0.4300 +2597 6538 0.4790 +2597 6540 0.4770 +2597 6548 0.4160 +2597 6566 0.4010 +2597 6591 0.7120 +2597 6597 0.4750 +2597 6608 0.5090 +2597 6613 0.4750 +2597 6615 0.7620 +2597 6616 0.5810 +2597 6622 0.7690 +2597 6624 0.4020 +2597 6625 0.4090 +2597 6626 0.4110 +2597 6633 0.4150 +2597 6647 0.8620 +2597 6648 0.7400 +2597 6652 0.5620 +2597 6656 0.4850 +2597 6657 0.7520 +2597 6659 0.4670 +2597 6662 0.6920 +2597 6663 0.4740 +2597 6667 0.7240 +2597 6670 0.4360 +2597 6678 0.4940 +2597 6687 0.5280 +2597 6688 0.4530 +2597 6693 0.4140 +2597 6696 0.7160 +2597 6714 0.7020 +2597 6720 0.6310 +2597 6721 0.5000 +2597 6722 0.4630 +2597 6723 0.4060 +2597 6734 0.5740 +2597 6736 0.5540 +2597 6742 0.4140 +2597 6750 0.4080 +2597 6772 0.6900 +2597 6773 0.4900 +2597 6774 0.8070 +2597 6776 0.6000 +2597 6777 0.5860 +2597 6778 0.5210 +2597 6780 0.4790 +2597 6786 0.4410 +2597 6790 0.5140 +2597 6794 0.4790 +2597 6833 0.5600 +2597 6836 0.5090 +2597 6839 0.4040 +2597 6850 0.4520 +2597 6853 0.7000 +2597 6855 0.5770 +2597 6868 0.4440 +2597 6876 0.5710 +2597 6888 0.9860 +2597 6907 0.5330 +2597 6908 0.8870 +2597 6925 0.4580 +2597 6929 0.4030 +2597 6950 0.5010 +2597 7001 0.7650 +2597 7004 0.4080 +2597 7010 0.4770 +2597 7013 0.4900 +2597 7015 0.6320 +2597 7018 0.5440 +2597 7019 0.6040 +2597 7025 0.5450 +2597 7037 0.7530 +2597 7039 0.4340 +2597 7040 0.8110 +2597 7042 0.5970 +2597 7043 0.5670 +2597 7045 0.4010 +2597 7046 0.5910 +2597 7048 0.5560 +2597 7054 0.6020 +2597 7057 0.5190 +2597 7070 0.6580 +2597 7076 0.6430 +2597 7077 0.5850 +2597 7078 0.4750 +2597 7080 0.5180 +2597 7082 0.6970 +2597 7083 0.5340 +2597 7084 0.4110 +2597 7086 0.9780 +2597 7094 0.4420 +2597 7096 0.4960 +2597 7097 0.6720 +2597 7098 0.6180 +2597 7099 0.7610 +2597 7100 0.4630 +2597 7113 0.4810 +2597 7122 0.5490 +2597 7124 0.8490 +2597 7125 0.4240 +2597 7132 0.5130 +2597 7133 0.4030 +2597 7137 0.4760 +2597 7139 0.5580 +2597 7150 0.4200 +2597 7153 0.5640 +2597 7155 0.4760 +2597 7156 0.4010 +2597 7157 0.8860 +2597 7158 0.4830 +2597 7161 0.5480 +2597 7166 0.4320 +2597 7167 0.9990 +2597 7168 0.4170 +2597 7178 0.7950 +2597 7182 0.4480 +2597 7184 0.6820 +2597 7185 0.4280 +2597 7186 0.9230 +2597 7187 0.4080 +2597 7189 0.5990 +2597 7203 0.6670 +2597 7248 0.4940 +2597 7249 0.4840 +2597 7251 0.7810 +2597 7273 0.4360 +2597 7275 0.6010 +2597 7276 0.4770 +2597 7277 0.5310 +2597 7280 0.7090 +2597 7284 0.6700 +2597 7291 0.6030 +2597 7295 0.8240 +2597 7296 0.5880 +2597 7298 0.5780 +2597 7299 0.5180 +2597 7301 0.4940 +2597 7306 0.5370 +2597 7311 0.4060 +2597 7314 0.8690 +2597 7316 0.7350 +2597 7317 0.4910 +2597 7329 0.4350 +2597 7341 0.4950 +2597 7345 0.4680 +2597 7350 0.5600 +2597 7351 0.4710 +2597 7352 0.4170 +2597 7357 0.4090 +2597 7360 0.6010 +2597 7371 0.5380 +2597 7372 0.4970 +2597 7374 0.7000 +2597 7384 0.5780 +2597 7385 0.5700 +2597 7386 0.5850 +2597 7403 0.4910 +2597 7407 0.4920 +2597 7408 0.4260 +2597 7412 0.6020 +2597 7414 0.7310 +2597 7415 0.7420 +2597 7416 0.9150 +2597 7417 0.5260 +2597 7419 0.5560 +2597 7424 0.4960 +2597 7430 0.4730 +2597 7431 0.7690 +2597 7442 0.5000 +2597 7448 0.6420 +2597 7450 0.5680 +2597 7458 0.4160 +2597 7465 0.4180 +2597 7471 0.5170 +2597 7473 0.4250 +2597 7474 0.5810 +2597 7481 0.4010 +2597 7490 0.5140 +2597 7494 0.6340 +2597 7498 0.4640 +2597 7514 0.6530 +2597 7520 0.4750 +2597 7528 0.4710 +2597 7529 0.6540 +2597 7531 0.7330 +2597 7532 0.5360 +2597 7533 0.5220 +2597 7534 0.7730 +2597 7538 0.4050 +2597 7545 0.4250 +2597 7827 0.4300 +2597 7837 0.9240 +2597 7846 0.6330 +2597 7852 0.6350 +2597 7915 0.5020 +2597 7919 0.4380 +2597 7942 0.5070 +2597 8034 0.5000 +2597 8050 0.4860 +2597 8061 0.4920 +2597 8091 0.5250 +2597 8106 0.5370 +2597 8192 0.5110 +2597 8218 0.5790 +2597 8220 0.4330 +2597 8237 0.4360 +2597 8277 0.9750 +2597 8290 0.8130 +2597 8309 0.4430 +2597 8312 0.4920 +2597 8313 0.6030 +2597 8320 0.4150 +2597 8337 0.4800 +2597 8338 0.4670 +2597 8340 0.4400 +2597 8341 0.4410 +2597 8342 0.4470 +2597 8345 0.4420 +2597 8347 0.4550 +2597 8348 0.4440 +2597 8349 0.6160 +2597 8356 0.8150 +2597 8361 0.6940 +2597 8369 0.5680 +2597 8402 0.4700 +2597 8404 0.5180 +2597 8407 0.4640 +2597 8411 0.5460 +2597 8431 0.4340 +2597 8451 0.4020 +2597 8452 0.4550 +2597 8454 0.4400 +2597 8462 0.5020 +2597 8517 0.4400 +2597 8549 0.6350 +2597 8562 0.4090 +2597 8565 0.5320 +2597 8572 0.4210 +2597 8600 0.6440 +2597 8638 0.4490 +2597 8639 0.5010 +2597 8647 0.4170 +2597 8651 0.5100 +2597 8660 0.4360 +2597 8662 0.4190 +2597 8668 0.5250 +2597 8678 0.7570 +2597 8694 0.4650 +2597 8717 0.9330 +2597 8737 0.9460 +2597 8766 0.6200 +2597 8767 0.4010 +2597 8772 0.6290 +2597 8788 0.4300 +2597 8789 0.5700 +2597 8795 0.4810 +2597 8797 0.4450 +2597 8801 0.4570 +2597 8802 0.4880 +2597 8803 0.4140 +2597 8815 0.4740 +2597 8817 0.5730 +2597 8822 0.5710 +2597 8823 0.5520 +2597 8829 0.4120 +2597 8833 0.4940 +2597 8837 0.5110 +2597 8842 0.6210 +2597 8850 0.4210 +2597 8854 0.4110 +2597 8856 0.4380 +2597 8864 0.4460 +2597 8877 0.4710 +2597 8878 0.6990 +2597 8900 0.6230 +2597 8970 0.4560 +2597 8974 0.5060 +2597 8988 0.5920 +2597 8989 0.4100 +2597 9001 0.4070 +2597 9021 0.5840 +2597 9040 0.4650 +2597 9045 0.4010 +2597 9075 0.4360 +2597 9076 0.6100 +2597 9097 0.5130 +2597 9113 0.5160 +2597 9122 0.4300 +2597 9123 0.4950 +2597 9133 0.5690 +2597 9134 0.6730 +2597 9140 0.6850 +2597 9143 0.4470 +2597 9156 0.4320 +2597 9212 0.5160 +2597 9217 0.4610 +2597 9241 0.5110 +2597 9314 0.6380 +2597 9332 0.5210 +2597 9343 0.5730 +2597 9358 0.4430 +2597 9360 0.5450 +2597 9365 0.4420 +2597 9370 0.5940 +2597 9377 0.4170 +2597 9380 0.8230 +2597 9401 0.4290 +2597 9429 0.6220 +2597 9444 0.5200 +2597 9451 0.7320 +2597 9474 0.7950 +2597 9475 0.4430 +2597 9493 0.4720 +2597 9496 0.4290 +2597 9507 0.4700 +2597 9508 0.4600 +2597 9518 0.4250 +2597 9519 0.5600 +2597 9524 0.4480 +2597 9531 0.4540 +2597 9533 0.4660 +2597 9536 0.4090 +2597 9563 0.9780 +2597 9564 0.5210 +2597 9588 0.6960 +2597 9589 0.4100 +2597 9601 0.4520 +2597 9612 0.5700 +2597 9619 0.4540 +2597 9636 0.7480 +2597 9641 0.4030 +2597 9669 0.5630 +2597 9692 0.5790 +2597 9698 0.4420 +2597 9734 0.4100 +2597 9739 0.4040 +2597 9759 0.5300 +2597 9775 0.5090 +2597 9804 0.6670 +2597 9817 0.7210 +2597 9839 0.5510 +2597 9927 0.6050 +2597 9928 0.4460 +2597 9942 0.4370 +2597 9945 0.4610 +2597 9971 0.5200 +2597 9987 0.4670 +2597 10000 0.4900 +2597 10013 0.5610 +2597 10018 0.5990 +2597 10020 0.4450 +2597 10059 0.5290 +2597 10075 0.4810 +2597 10082 0.4930 +2597 10083 0.4480 +2597 10096 0.4610 +2597 10097 0.6350 +2597 10101 0.6320 +2597 10105 0.5470 +2597 10130 0.4030 +2597 10131 0.6930 +2597 10135 0.5070 +2597 10146 0.4940 +2597 10155 0.4100 +2597 10202 0.4740 +2597 10211 0.6850 +2597 10213 0.4070 +2597 10215 0.5220 +2597 10226 0.4160 +2597 10273 0.6230 +2597 10278 0.5350 +2597 10295 0.4480 +2597 10327 0.4300 +2597 10365 0.4670 +2597 10376 0.6260 +2597 10379 0.4020 +2597 10381 0.6100 +2597 10382 0.4860 +2597 10383 0.5180 +2597 10398 0.4300 +2597 10399 0.6290 +2597 10410 0.4240 +2597 10413 0.5660 +2597 10419 0.4730 +2597 10449 0.4380 +2597 10492 0.9990 +2597 10519 0.5650 +2597 10521 0.4020 +2597 10525 0.4090 +2597 10526 0.4300 +2597 10533 0.7110 +2597 10549 0.5040 +2597 10551 0.6130 +2597 10574 0.5540 +2597 10575 0.6600 +2597 10576 0.5350 +2597 10587 0.4230 +2597 10606 0.4510 +2597 10614 0.4470 +2597 10618 0.4460 +2597 10628 0.5640 +2597 10631 0.5030 +2597 10656 0.4380 +2597 10664 0.4950 +2597 10694 0.5540 +2597 10726 0.4130 +2597 10763 0.6780 +2597 10768 0.5650 +2597 10797 0.4230 +2597 10891 0.6780 +2597 10919 0.4030 +2597 10935 0.5130 +2597 10963 0.5670 +2597 10971 0.4960 +2597 10987 0.4260 +2597 11005 0.4120 +2597 11030 0.4250 +2597 11035 0.4510 +2597 11065 0.4120 +2597 11074 0.4310 +2597 11096 0.5350 +2597 11187 0.4070 +2597 11198 0.4460 +2597 11200 0.5530 +2597 11201 0.4240 +2597 11224 0.4260 +2597 11266 0.4030 +2597 11315 0.6980 +2597 11322 0.4810 +2597 11331 0.4860 +2597 11332 0.7150 +2597 11337 0.4820 +2597 11343 0.4050 +2597 11345 0.5200 +2597 22916 0.6640 +2597 22926 0.6300 +2597 22933 0.6510 +2597 22934 0.5500 +2597 22943 0.5600 +2597 22948 0.6170 +2597 22974 0.5340 +2597 22984 0.6520 +2597 23028 0.5630 +2597 23049 0.4980 +2597 23135 0.5120 +2597 23171 0.5080 +2597 23395 0.5560 +2597 23405 0.6570 +2597 23408 0.4590 +2597 23410 0.5790 +2597 23411 0.8920 +2597 23435 0.6270 +2597 23462 0.4920 +2597 23475 0.4360 +2597 23476 0.6250 +2597 23498 0.4280 +2597 23512 0.4820 +2597 23521 0.9990 +2597 23586 0.5750 +2597 23621 0.5160 +2597 23643 0.4400 +2597 23645 0.4430 +2597 23657 0.4670 +2597 23710 0.4900 +2597 25818 0.4620 +2597 25824 0.6050 +2597 25828 0.5600 +2597 25962 0.5410 +2597 25973 0.4650 +2597 26227 0.8910 +2597 26277 0.4770 +2597 26281 0.5520 +2597 26291 0.4670 +2597 26330 0.9360 +2597 26499 0.4200 +2597 26523 0.4660 +2597 26524 0.4470 +2597 26986 0.4890 +2597 27006 0.5540 +2597 27032 0.4940 +2597 27035 0.4930 +2597 27063 0.4290 +2597 27068 0.4100 +2597 27113 0.4180 +2597 27161 0.7860 +2597 27231 0.4530 +2597 27250 0.4530 +2597 27430 0.4560 +2597 28514 0.4440 +2597 28998 0.9580 +2597 29102 0.5720 +2597 29110 0.7420 +2597 29126 0.5830 +2597 29789 0.4540 +2597 29927 0.4910 +2597 29944 0.6750 +2597 29968 0.5400 +2597 29978 0.4250 +2597 29979 0.4730 +2597 30009 0.5150 +2597 30816 0.6940 +2597 50507 0.6000 +2597 50616 0.5220 +2597 50943 0.6300 +2597 50964 0.4450 +2597 51024 0.5360 +2597 51031 0.4040 +2597 51071 0.8670 +2597 51074 0.4820 +2597 51081 0.5180 +2597 51094 0.4420 +2597 51129 0.4100 +2597 51147 0.4560 +2597 51154 0.4540 +2597 51176 0.5470 +2597 51284 0.5570 +2597 51311 0.4400 +2597 51314 0.4720 +2597 51339 0.5710 +2597 51400 0.4790 +2597 51412 0.4830 +2597 51441 0.4060 +2597 51444 0.5050 +2597 51512 0.4100 +2597 51547 0.4480 +2597 51548 0.4660 +2597 51557 0.4210 +2597 51806 0.6700 +2597 51807 0.4510 +2597 53347 0.4020 +2597 53373 0.4670 +2597 53905 0.4120 +2597 54106 0.5510 +2597 54145 0.4400 +2597 54148 0.4160 +2597 54205 0.8800 +2597 54361 0.4260 +2597 54443 0.4680 +2597 54567 0.4600 +2597 54596 0.4600 +2597 54776 0.4040 +2597 54790 0.5660 +2597 54890 0.6380 +2597 54915 0.4060 +2597 54941 0.5220 +2597 54949 0.4570 +2597 54963 0.4500 +2597 54981 0.4820 +2597 54995 0.4420 +2597 55031 0.4500 +2597 55054 0.4110 +2597 55081 0.4570 +2597 55122 0.5020 +2597 55143 0.4670 +2597 55191 0.4040 +2597 55201 0.5130 +2597 55244 0.6200 +2597 55247 0.4080 +2597 55293 0.5790 +2597 55294 0.4290 +2597 55328 0.4280 +2597 55349 0.4060 +2597 55611 0.4940 +2597 55660 0.4720 +2597 55669 0.5080 +2597 55811 0.5400 +2597 55893 0.4790 +2597 55902 0.4550 +2597 56339 0.6250 +2597 56606 0.4150 +2597 56648 0.4890 +2597 56731 0.4050 +2597 56947 0.4270 +2597 56952 0.4460 +2597 56965 0.5350 +2597 56980 0.4290 +2597 57030 0.6470 +2597 57082 0.4190 +2597 57103 0.6380 +2597 57104 0.5000 +2597 57167 0.4130 +2597 57379 0.4470 +2597 57506 0.5100 +2597 57521 0.4820 +2597 57591 0.5480 +2597 57721 0.6070 +2597 57805 0.4100 +2597 57818 0.4120 +2597 59272 0.5300 +2597 60489 0.4910 +2597 63976 0.4280 +2597 64083 0.4530 +2597 64102 0.4180 +2597 64127 0.4220 +2597 64135 0.5180 +2597 64170 0.4660 +2597 64321 0.5190 +2597 64400 0.4100 +2597 64422 0.5250 +2597 64714 0.4850 +2597 64855 0.4610 +2597 64895 0.4020 +2597 65018 0.5640 +2597 79058 0.4620 +2597 79068 0.4310 +2597 79154 0.4640 +2597 79258 0.4120 +2597 79577 0.5580 +2597 79602 0.4330 +2597 79631 0.5570 +2597 79647 0.4580 +2597 79668 0.5390 +2597 79727 0.7080 +2597 79792 0.5240 +2597 79861 0.4630 +2597 79923 0.7600 +2597 79991 0.4060 +2597 80012 0.4100 +2597 80162 0.4080 +2597 80273 0.5030 +2597 80308 0.4190 +2597 80312 0.4110 +2597 80347 0.4200 +2597 80380 0.4010 +2597 80381 0.4220 +2597 81501 0.4500 +2597 81570 0.4210 +2597 81631 0.8270 +2597 81669 0.6020 +2597 83549 0.4600 +2597 83660 0.4070 +2597 83933 0.4400 +2597 84076 0.9740 +2597 84172 0.4370 +2597 84260 0.5050 +2597 84293 0.5180 +2597 84532 0.4270 +2597 84557 0.6740 +2597 84617 0.4780 +2597 84649 0.4550 +2597 84666 0.4310 +2597 84676 0.4230 +2597 84701 0.5670 +2597 84706 0.5620 +2597 84790 0.6700 +2597 84823 0.7330 +2597 84879 0.5130 +2597 84959 0.4290 +2597 85236 0.4460 +2597 85476 0.5610 +2597 85480 0.4040 +2597 89780 0.6260 +2597 90865 0.4700 +2597 91543 0.4450 +2597 91860 0.6480 +2597 92140 0.4200 +2597 92421 0.4140 +2597 92483 0.8590 +2597 92579 0.4360 +2597 93649 0.4090 +2597 93974 0.4630 +2597 103910 0.4750 +2597 112714 0.4480 +2597 112744 0.4020 +2597 113457 0.4570 +2597 114112 0.5540 +2597 114548 0.6130 +2597 114907 0.5970 +2597 115004 0.4560 +2597 117159 0.4460 +2597 120892 0.4960 +2597 121278 0.4390 +2597 121340 0.6320 +2597 126321 0.4590 +2597 126393 0.4400 +2597 128312 0.4350 +2597 129831 0.4560 +2597 130589 0.4540 +2597 130752 0.5840 +2597 132158 0.8260 +2597 132949 0.4560 +2597 133482 0.6620 +2597 135293 0.4520 +2597 137362 0.4620 +2597 137682 0.5840 +2597 137872 0.5050 +2597 137902 0.9240 +2597 143244 0.4370 +2597 146713 0.7080 +2597 146802 0.5900 +2597 150353 0.4460 +2597 158983 0.4360 +2597 160287 0.8540 +2597 163688 0.6480 +2597 168400 0.4700 +2597 171425 0.5430 +2597 197259 0.5160 +2597 200895 0.4490 +2597 203068 0.7450 +2597 220972 0.4040 +2597 220988 0.4310 +2597 221302 0.5320 +2597 245972 0.4160 +2597 246243 0.8100 +2597 253260 0.4470 +2597 255626 0.4600 +2597 255738 0.5190 +2597 257202 0.6190 +2597 260434 0.4150 +2597 282618 0.4190 +2597 283871 0.5340 +2597 284654 0.4280 +2597 286436 0.4360 +2597 338917 0.4610 +2597 340390 0.5840 +2597 375189 0.4030 +2597 387332 0.5750 +2597 387712 0.7430 +2597 388585 0.4470 +2597 388698 0.4150 +2597 388931 0.4830 +2597 389421 0.4580 +2597 399949 0.5010 +2597 405754 0.6850 +2597 440093 0.8130 +2597 440275 0.4600 +2597 440686 0.8130 +2597 440689 0.4410 +2597 441531 0.8370 +2597 441925 0.4010 +2597 493869 0.6460 +2597 653145 0.7280 +2597 653361 0.5260 +2597 653604 0.8150 +2597 728378 0.8870 +2597 729020 0.5380 +2597 100133941 0.5320 +2597 100288687 0.6440 +2597 100506658 0.7010 +2597 100532731 0.5730 +2597 102723407 0.4050 +2597 114483833 0.4350 +2615 3559 0.4120 +2615 3586 0.4040 +2615 3682 0.4040 +2615 3696 0.4190 +2615 5961 0.4400 +2615 6251 0.4180 +2615 7040 0.9950 +2615 7042 0.7830 +2615 7043 0.8190 +2615 7057 0.4920 +2615 7293 0.4300 +2615 8784 0.4500 +2615 8829 0.5970 +2615 9173 0.4210 +2615 22807 0.4750 +2615 22859 0.5140 +2615 23266 0.5150 +2615 23284 0.5140 +2615 23507 0.4560 +2615 50943 0.5940 +2615 55144 0.4730 +2615 55289 0.4050 +2615 55379 0.4180 +2615 55876 0.4020 +2615 56262 0.4460 +2615 56946 0.7240 +2615 64375 0.5290 +2615 79442 0.4550 +2615 79782 0.4330 +2615 81542 0.4460 +2615 94103 0.4160 +2615 116064 0.4380 +2615 122769 0.4050 +2615 123355 0.4130 +2615 151887 0.4750 +2615 163486 0.4250 +2615 255252 0.4480 +2615 339291 0.4370 +2615 376132 0.4840 +2615 390205 0.4840 +2615 440854 0.5270 +2615 474354 0.4180 +2617 2741 0.7270 +2617 2742 0.6840 +2617 2743 0.6630 +2617 3035 0.9800 +2617 3313 0.4430 +2617 3320 0.4300 +2617 3326 0.4410 +2617 3359 0.4770 +2617 3376 0.9700 +2617 3508 0.5950 +2617 3615 0.4230 +2617 3735 0.9150 +2617 4141 0.9270 +2617 4330 0.6850 +2617 4677 0.9390 +2617 4738 0.4820 +2617 5188 0.5050 +2617 5428 0.7290 +2617 5464 0.6330 +2617 5702 0.5620 +2617 5707 0.4310 +2617 5708 0.4670 +2617 5717 0.4920 +2617 5859 0.9250 +2617 5917 0.8920 +2617 6187 0.4920 +2617 6188 0.4440 +2617 6301 0.9750 +2617 6470 0.4340 +2617 6472 0.5790 +2617 6897 0.9090 +2617 7167 0.5120 +2617 7317 0.7190 +2617 7407 0.8600 +2617 7411 0.5820 +2617 7453 0.8480 +2617 7805 0.6390 +2617 7965 0.5610 +2617 8001 0.7210 +2617 8565 0.9890 +2617 8731 0.5970 +2617 8829 0.5970 +2617 8833 0.4020 +2617 8883 0.6860 +2617 9040 0.6330 +2617 9045 0.4930 +2617 9097 0.4530 +2617 9152 0.7130 +2617 9255 0.6440 +2617 9521 0.4330 +2617 10013 0.7050 +2617 10056 0.5640 +2617 10102 0.5080 +2617 10131 0.4370 +2617 10213 0.4200 +2617 10243 0.9620 +2617 10352 0.8370 +2617 10574 0.5440 +2617 10667 0.7230 +2617 10963 0.4060 +2617 11232 0.8790 +2617 22948 0.4170 +2617 23229 0.5430 +2617 23395 0.8580 +2617 23438 0.9690 +2617 23515 0.4310 +2617 23640 0.4490 +2617 25973 0.7680 +2617 26580 0.7680 +2617 27068 0.6000 +2617 29968 0.4560 +2617 51067 0.8970 +2617 51520 0.8950 +2617 54938 0.8520 +2617 55157 0.5930 +2617 55699 0.8630 +2617 56776 0.4070 +2617 57038 0.8200 +2617 57176 0.8480 +2617 57468 0.5220 +2617 57470 0.4140 +2617 57505 0.8770 +2617 57555 0.4060 +2617 63906 0.4120 +2617 79587 0.8070 +2617 79645 0.4200 +2617 79731 0.8370 +2617 80222 0.8420 +2617 84034 0.4130 +2617 84464 0.4320 +2617 85403 0.4070 +2617 89970 0.4700 +2617 90381 0.4190 +2617 92935 0.8240 +2617 123283 0.9130 +2617 124454 0.7820 +2617 140679 0.4740 +2617 222166 0.4010 +2617 374395 0.5250 +2618 2653 0.7620 +2618 2673 0.8970 +2618 2731 0.9680 +2618 2747 0.4030 +2618 2752 0.4230 +2618 2766 0.6400 +2618 2821 0.4910 +2618 2987 0.5680 +2618 3141 0.5920 +2618 3145 0.4370 +2618 3155 0.4060 +2618 3156 0.4390 +2618 3251 0.6970 +2618 3308 0.4730 +2618 3312 0.4630 +2618 3313 0.4190 +2618 3320 0.5100 +2618 3326 0.4940 +2618 3336 0.4010 +2618 3376 0.6690 +2618 3419 0.4580 +2618 3420 0.4380 +2618 3421 0.4350 +2618 3454 0.7620 +2618 3558 0.4920 +2618 3588 0.7540 +2618 3614 0.7730 +2618 3615 0.8110 +2618 3658 0.4280 +2618 3704 0.6900 +2618 3735 0.5830 +2618 3814 0.5670 +2618 3921 0.5990 +2618 3948 0.4710 +2618 3980 0.4190 +2618 4141 0.6300 +2618 4143 0.5560 +2618 4144 0.6320 +2618 4191 0.5340 +2618 4199 0.4750 +2618 4200 0.5090 +2618 4292 0.4010 +2618 4351 0.4360 +2618 4354 0.4470 +2618 4355 0.4460 +2618 4356 0.4460 +2618 4436 0.4290 +2618 4507 0.5120 +2618 4522 0.9990 +2618 4524 0.7370 +2618 4528 0.5370 +2618 4548 0.9610 +2618 4599 0.5410 +2618 4673 0.4070 +2618 4676 0.4260 +2618 4686 0.4030 +2618 4706 0.6420 +2618 4736 0.7590 +2618 4751 0.5280 +2618 4763 0.4780 +2618 4830 0.4720 +2618 4831 0.6200 +2618 4832 0.4310 +2618 4833 0.4320 +2618 4860 0.6070 +2618 4904 0.4790 +2618 4905 0.5840 +2618 4907 0.4160 +2618 4913 0.5160 +2618 4935 0.7740 +2618 4942 0.4100 +2618 4953 0.4430 +2618 5009 0.6040 +2618 5161 0.5190 +2618 5198 0.9990 +2618 5204 0.4240 +2618 5211 0.4850 +2618 5213 0.4410 +2618 5214 0.4390 +2618 5223 0.4090 +2618 5230 0.4280 +2618 5245 0.5520 +2618 5313 0.5360 +2618 5315 0.5850 +2618 5378 0.4020 +2618 5427 0.4170 +2618 5431 0.4900 +2618 5432 0.4380 +2618 5464 0.4050 +2618 5471 0.9990 +2618 5539 0.4460 +2618 5571 0.5630 +2618 5631 0.7210 +2618 5634 0.7050 +2618 5635 0.5270 +2618 5636 0.5320 +2618 5651 0.4330 +2618 5700 0.4230 +2618 5705 0.4270 +2618 5707 0.5230 +2618 5708 0.5240 +2618 5713 0.4470 +2618 5717 0.4210 +2618 5718 0.4670 +2618 5723 0.7280 +2618 5805 0.4670 +2618 5832 0.6100 +2618 5888 0.5000 +2618 6059 0.5310 +2618 6122 0.8050 +2618 6124 0.5710 +2618 6125 0.6770 +2618 6128 0.6440 +2618 6129 0.6690 +2618 6130 0.6960 +2618 6132 0.6720 +2618 6133 0.5810 +2618 6135 0.4610 +2618 6136 0.5320 +2618 6137 0.6510 +2618 6138 0.5610 +2618 6139 0.6320 +2618 6141 0.4690 +2618 6142 0.6770 +2618 6143 0.5420 +2618 6144 0.6470 +2618 6147 0.5660 +2618 6152 0.4410 +2618 6154 0.7040 +2618 6155 0.5760 +2618 6156 0.5630 +2618 6157 0.5420 +2618 6158 0.7480 +2618 6159 0.4180 +2618 6160 0.5590 +2618 6164 0.5760 +2618 6165 0.4610 +2618 6175 0.7100 +2618 6182 0.4230 +2618 6187 0.5380 +2618 6188 0.6190 +2618 6189 0.6670 +2618 6191 0.6770 +2618 6193 0.6820 +2618 6194 0.6600 +2618 6201 0.6200 +2618 6202 0.6340 +2618 6203 0.5890 +2618 6204 0.5560 +2618 6205 0.7290 +2618 6206 0.6910 +2618 6207 0.7660 +2618 6208 0.6100 +2618 6210 0.5810 +2618 6217 0.4640 +2618 6222 0.6400 +2618 6223 0.8020 +2618 6224 0.5440 +2618 6227 0.5800 +2618 6228 0.6120 +2618 6229 0.6860 +2618 6230 0.6360 +2618 6231 0.5360 +2618 6232 0.5290 +2618 6234 0.6910 +2618 6235 0.5140 +2618 6238 0.5110 +2618 6240 0.6870 +2618 6301 0.5010 +2618 6389 0.4310 +2618 6453 0.4080 +2618 6470 0.9990 +2618 6472 0.9990 +2618 6490 0.5750 +2618 6573 0.5430 +2618 6647 0.6340 +2618 6651 0.4900 +2618 6742 0.4940 +2618 6778 0.4450 +2618 6888 0.4840 +2618 6897 0.4160 +2618 6950 0.4790 +2618 7011 0.4100 +2618 7083 0.4940 +2618 7167 0.4860 +2618 7180 0.8310 +2618 7203 0.5950 +2618 7283 0.5090 +2618 7284 0.4110 +2618 7296 0.4230 +2618 7298 0.8950 +2618 7357 0.5470 +2618 7358 0.4270 +2618 7371 0.4730 +2618 7372 0.9560 +2618 7378 0.4370 +2618 7389 0.4630 +2618 7390 0.5020 +2618 7407 0.6180 +2618 7453 0.5840 +2618 7485 0.4170 +2618 7846 0.4300 +2618 8382 0.4540 +2618 8458 0.6260 +2618 8528 0.4120 +2618 8565 0.5360 +2618 8573 0.4510 +2618 8624 0.4060 +2618 8662 0.4050 +2618 8665 0.4090 +2618 8668 0.4880 +2618 8731 0.4020 +2618 8801 0.5060 +2618 8803 0.4880 +2618 8833 0.9370 +2618 8836 0.5690 +2618 8881 0.4140 +2618 8893 0.4150 +2618 9045 0.4970 +2618 9060 0.4050 +2618 9061 0.4180 +2618 9136 0.4840 +2618 9231 0.4460 +2618 9343 0.5120 +2618 9349 0.5300 +2618 9380 0.5130 +2618 9401 0.5520 +2618 9493 0.4070 +2618 9533 0.4230 +2618 9563 0.4940 +2618 9615 0.5290 +2618 9659 0.4550 +2618 9669 0.6090 +2618 9670 0.4200 +2618 9861 0.4050 +2618 9933 0.5670 +2618 9945 0.8940 +2618 9946 0.4260 +2618 9962 0.8330 +2618 9963 0.8330 +2618 10056 0.4230 +2618 10061 0.4200 +2618 10131 0.4100 +2618 10201 0.5070 +2618 10215 0.4010 +2618 10237 0.4100 +2618 10269 0.4030 +2618 10321 0.8310 +2618 10352 0.4470 +2618 10399 0.6150 +2618 10423 0.5490 +2618 10492 0.4290 +2618 10514 0.9710 +2618 10528 0.6490 +2618 10535 0.4290 +2618 10570 0.5320 +2618 10574 0.5560 +2618 10575 0.5390 +2618 10576 0.5490 +2618 10588 0.9610 +2618 10606 0.9990 +2618 10694 0.5310 +2618 10797 0.9990 +2618 10840 0.9830 +2618 10841 0.9910 +2618 10856 0.4230 +2618 10873 0.4610 +2618 10993 0.5340 +2618 11010 0.8310 +2618 11062 0.4300 +2618 11128 0.5000 +2618 11224 0.5120 +2618 11260 0.4410 +2618 11343 0.4370 +2618 22929 0.5750 +2618 22934 0.4570 +2618 22948 0.5630 +2618 22984 0.6670 +2618 23057 0.5680 +2618 23135 0.4380 +2618 23395 0.4960 +2618 23463 0.4860 +2618 23475 0.4880 +2618 23481 0.9100 +2618 23521 0.6720 +2618 23743 0.4430 +2618 25873 0.4160 +2618 25885 0.6020 +2618 25902 0.9990 +2618 25973 0.4270 +2618 26227 0.4570 +2618 26289 0.4110 +2618 26873 0.4130 +2618 26986 0.4650 +2618 27292 0.4270 +2618 29104 0.5290 +2618 29127 0.4610 +2618 29775 0.4460 +2618 29922 0.4400 +2618 29958 0.7200 +2618 29968 0.5690 +2618 29980 0.9510 +2618 30968 0.4290 +2618 50618 0.4250 +2618 50808 0.4520 +2618 51026 0.5730 +2618 51050 0.8310 +2618 51081 0.4170 +2618 51106 0.4890 +2618 51154 0.5180 +2618 51167 0.4810 +2618 51268 0.4130 +2618 51292 0.6220 +2618 51314 0.5230 +2618 51422 0.5500 +2618 51444 0.4770 +2618 51520 0.5940 +2618 51530 0.4020 +2618 51678 0.4910 +2618 51700 0.4480 +2618 51706 0.4480 +2618 51727 0.5000 +2618 51741 0.4330 +2618 51763 0.6040 +2618 51805 0.5900 +2618 53632 0.5500 +2618 54059 0.4010 +2618 54069 0.5750 +2618 54148 0.4100 +2618 54187 0.4140 +2618 54431 0.4750 +2618 54511 0.4060 +2618 54663 0.5330 +2618 54675 0.5610 +2618 54802 0.5310 +2618 54870 0.6240 +2618 54938 0.4910 +2618 54941 0.4710 +2618 54963 0.4190 +2618 55066 0.5470 +2618 55152 0.6150 +2618 55157 0.5080 +2618 55270 0.4840 +2618 55276 0.4570 +2618 55278 0.4590 +2618 55293 0.4780 +2618 55324 0.4240 +2618 55635 0.4050 +2618 55644 0.4260 +2618 55699 0.4580 +2618 55703 0.4690 +2618 55739 0.5960 +2618 55780 0.4140 +2618 55969 0.4110 +2618 56474 0.5500 +2618 56896 0.5350 +2618 56952 0.6570 +2618 56965 0.5190 +2618 57176 0.5750 +2618 58477 0.4090 +2618 58538 0.4480 +2618 63826 0.5380 +2618 64078 0.4850 +2618 64080 0.4630 +2618 64216 0.4270 +2618 64398 0.4460 +2618 64802 0.5730 +2618 64902 0.4180 +2618 64968 0.5970 +2618 65005 0.4510 +2618 65062 0.4540 +2618 65993 0.4640 +2618 79050 0.5390 +2618 79092 0.4460 +2618 79587 0.4060 +2618 79668 0.5190 +2618 79693 0.4550 +2618 79694 0.4580 +2618 79728 0.6470 +2618 79877 0.5200 +2618 79944 0.4060 +2618 80153 0.4930 +2618 80273 0.5610 +2618 80347 0.5210 +2618 81034 0.5070 +2618 81570 0.5550 +2618 83549 0.4380 +2618 83690 0.8310 +2618 83716 0.8310 +2618 83743 0.4360 +2618 83940 0.4280 +2618 84172 0.6560 +2618 84433 0.4500 +2618 85007 0.4210 +2618 87178 0.4280 +2618 89894 0.7740 +2618 91875 0.4450 +2618 92106 0.4550 +2618 92399 0.4360 +2618 92483 0.4800 +2618 113235 0.7460 +2618 113675 0.5340 +2618 116448 0.4130 +2618 117246 0.4080 +2618 122622 0.9690 +2618 123263 0.9650 +2618 126133 0.4110 +2618 127845 0.5670 +2618 128240 0.4790 +2618 129607 0.7840 +2618 130752 0.4710 +2618 132949 0.8800 +2618 134266 0.5420 +2618 136332 0.4600 +2618 139596 0.5970 +2618 140902 0.8310 +2618 143098 0.4460 +2618 144193 0.4130 +2618 144321 0.8310 +2618 149175 0.4580 +2618 151531 0.4180 +2618 152007 0.8310 +2618 153443 0.4210 +2618 154141 0.4800 +2618 158584 0.4510 +2618 160287 0.4810 +2618 160428 0.9400 +2618 163859 0.4720 +2618 200895 0.9890 +2618 221476 0.8310 +2618 221823 0.6970 +2618 246243 0.4050 +2618 256710 0.8310 +2618 260425 0.4480 +2618 283971 0.8310 +2618 284131 0.4420 +2618 284439 0.6110 +2618 341405 0.4460 +2618 349565 0.5680 +2618 374395 0.4380 +2618 374887 0.4970 +2618 387103 0.6290 +2618 387712 0.5320 +2618 389434 0.4160 +2618 441024 0.9990 +2618 497190 0.8310 +2618 606495 0.4480 +2618 651746 0.4460 +2618 654364 0.4450 +2618 730249 0.4130 +2618 100527943 0.4070 +2618 100528021 0.9000 +2618 114483834 0.4300 +2619 2620 0.9290 +2619 2668 0.5520 +2619 2675 0.5110 +2619 2676 0.4960 +2619 2719 0.4610 +2619 2735 0.5860 +2619 2736 0.6070 +2619 2737 0.6330 +2619 3236 0.4220 +2619 3237 0.4140 +2619 3549 0.9690 +2619 4036 0.9350 +2619 4756 0.5710 +2619 4908 0.4780 +2619 4909 0.4130 +2619 4917 0.4880 +2619 4953 0.4520 +2619 5265 0.4140 +2619 5376 0.5140 +2619 5727 0.9980 +2619 5979 0.5230 +2619 6272 0.4490 +2619 6469 0.9990 +2619 6496 0.6210 +2619 6608 0.7580 +2619 7079 0.4050 +2619 7138 0.4420 +2619 7546 0.7270 +2619 7709 0.4120 +2619 7783 0.4650 +2619 8643 0.9550 +2619 9429 0.4570 +2619 10558 0.4750 +2619 10988 0.4220 +2619 50846 0.9710 +2619 50937 0.9950 +2619 51684 0.5520 +2619 51715 0.6150 +2619 55733 0.4320 +2619 57758 0.4080 +2619 64327 0.4730 +2619 64399 0.7360 +2619 79680 0.4180 +2619 84976 0.6940 +2619 91653 0.9820 +2619 374654 0.4650 +2620 3320 0.4040 +2620 4478 0.5060 +2620 5339 0.6790 +2620 5376 0.5940 +2620 5493 0.7120 +2620 5962 0.5150 +2620 7430 0.4350 +2620 8785 0.4210 +2620 10633 0.7880 +2620 53340 0.6770 +2620 66000 0.5210 +2620 89797 0.4240 +2620 338645 0.9110 +2621 2677 0.8970 +2621 3082 0.4250 +2621 3454 0.5870 +2621 3480 0.6350 +2621 3481 0.4800 +2621 3491 0.5410 +2621 3552 0.5090 +2621 3553 0.5920 +2621 3569 0.6440 +2621 3685 0.7140 +2621 3827 0.4420 +2621 3916 0.4860 +2621 3956 0.4030 +2621 3958 0.7730 +2621 3965 0.4700 +2621 4233 0.4540 +2621 4240 0.9330 +2621 4256 0.6100 +2621 4360 0.4030 +2621 4804 0.4360 +2621 4914 0.8980 +2621 5045 0.7960 +2621 5265 0.4550 +2621 5414 0.4620 +2621 5627 0.8290 +2621 5768 0.4290 +2621 6387 0.4190 +2621 6714 0.6340 +2621 6772 0.5210 +2621 6774 0.6020 +2621 7027 0.4340 +2621 7057 0.6080 +2621 7076 0.5010 +2621 7098 0.4530 +2621 7124 0.4070 +2621 7275 0.4240 +2621 7287 0.8280 +2621 7301 0.9990 +2621 7448 0.4950 +2621 8404 0.5020 +2621 8651 0.7940 +2621 8817 0.4540 +2621 8822 0.4360 +2621 8823 0.4590 +2621 8853 0.4070 +2621 9021 0.6320 +2621 10272 0.4160 +2621 10461 0.9990 +2621 10631 0.4710 +2621 26281 0.4530 +2621 27006 0.4550 +2621 54209 0.4930 +2621 54587 0.4920 +2621 54757 0.4740 +2621 55113 0.4180 +2621 56975 0.5760 +2621 57104 0.4010 +2621 83546 0.4240 +2621 84141 0.4250 +2621 84466 0.4510 +2621 91937 0.8170 +2621 140885 0.4890 +2621 160364 0.4530 +2621 221044 0.5760 +2622 5156 0.4020 +2622 5270 0.8110 +2622 6608 0.7920 +2622 6674 0.5900 +2622 6801 0.4610 +2622 7802 0.8740 +2622 8701 0.6150 +2622 9576 0.6820 +2622 10309 0.5820 +2622 23639 0.4960 +2622 25981 0.4340 +2622 27019 0.6840 +2622 27148 0.4320 +2622 29966 0.4750 +2622 51314 0.4010 +2622 51364 0.5210 +2622 53354 0.4990 +2622 54768 0.6000 +2622 54798 0.4170 +2622 54849 0.4720 +2622 54919 0.5640 +2622 55036 0.7390 +2622 55130 0.6900 +2622 55172 0.5280 +2622 55329 0.5460 +2622 55567 0.4080 +2622 56683 0.5060 +2622 56912 0.4870 +2622 64446 0.7870 +2622 64779 0.4030 +2622 79007 0.4530 +2622 79646 0.7000 +2622 79781 0.5260 +2622 79925 0.4750 +2622 80025 0.5270 +2622 80173 0.4380 +2622 81492 0.4850 +2622 83450 0.7370 +2622 83538 0.4960 +2622 84223 0.5240 +2622 84229 0.8490 +2622 84288 0.4970 +2622 85478 0.9330 +2622 89765 0.7620 +2622 92749 0.8960 +2622 93233 0.6030 +2622 114327 0.5660 +2622 114928 0.5020 +2622 115811 0.4900 +2622 115948 0.6050 +2622 123872 0.5480 +2622 128344 0.4600 +2622 135138 0.5560 +2622 139212 0.4790 +2622 146754 0.4540 +2622 154865 0.4480 +2622 161582 0.5220 +2622 164781 0.4750 +2622 202500 0.7830 +2622 221421 0.6890 +2622 222235 0.6100 +2622 255220 0.4530 +2622 339829 0.7510 +2622 345643 0.5070 +2622 345895 0.7470 +2622 352909 0.5780 +2622 388389 0.6010 +2623 2624 0.9760 +2623 2625 0.7950 +2623 2672 0.8630 +2623 2811 0.7410 +2623 2815 0.5600 +2623 2908 0.5900 +2623 2993 0.7770 +2623 2994 0.8180 +2623 2996 0.6180 +2623 3021 0.6730 +2623 3039 0.5610 +2623 3040 0.5250 +2623 3042 0.5100 +2623 3043 0.7190 +2623 3045 0.6170 +2623 3046 0.8160 +2623 3047 0.7290 +2623 3048 0.7440 +2623 3049 0.6560 +2623 3050 0.6270 +2623 3065 0.8880 +2623 3066 0.6300 +2623 3087 0.4400 +2623 3145 0.6690 +2623 3169 0.7060 +2623 3170 0.6010 +2623 3171 0.5260 +2623 3190 0.8780 +2623 3195 0.4300 +2623 3205 0.6510 +2623 3207 0.4460 +2623 3212 0.4540 +2623 3214 0.4620 +2623 3276 0.7530 +2623 3304 0.4030 +2623 3306 0.4620 +2623 3308 0.5490 +2623 3315 0.6780 +2623 3316 0.5480 +2623 3394 0.4880 +2623 3562 0.5910 +2623 3565 0.4080 +2623 3568 0.5030 +2623 3662 0.4230 +2623 3674 0.9170 +2623 3690 0.5030 +2623 3717 0.5990 +2623 3718 0.4120 +2623 3725 0.5680 +2623 3727 0.6180 +2623 3791 0.4940 +2623 3792 0.7500 +2623 3815 0.6190 +2623 3936 0.4610 +2623 4004 0.8540 +2623 4005 0.9990 +2623 4066 0.7930 +2623 4087 0.5760 +2623 4097 0.5450 +2623 4145 0.5370 +2623 4150 0.5640 +2623 4205 0.4280 +2623 4211 0.5500 +2623 4254 0.6080 +2623 4297 0.6950 +2623 4331 0.4060 +2623 4343 0.4150 +2623 4352 0.6510 +2623 4353 0.6080 +2623 4602 0.9100 +2623 4605 0.4580 +2623 4609 0.5970 +2623 4635 0.5590 +2623 4654 0.4820 +2623 4763 0.4920 +2623 4778 0.9440 +2623 4779 0.5150 +2623 4800 0.4910 +2623 4801 0.6060 +2623 4802 0.4490 +2623 4851 0.4480 +2623 4869 0.4400 +2623 4893 0.4240 +2623 4943 0.4970 +2623 5009 0.4310 +2623 5075 0.4290 +2623 5079 0.5450 +2623 5087 0.4600 +2623 5196 0.6550 +2623 5460 0.5150 +2623 5469 0.8500 +2623 5595 0.4440 +2623 5688 0.5760 +2623 5788 0.4920 +2623 5885 0.4560 +2623 5896 0.4850 +2623 5914 0.4070 +2623 5929 0.5520 +2623 5989 0.5370 +2623 6005 0.7290 +2623 6006 0.6310 +2623 6007 0.7190 +2623 6015 0.4440 +2623 6036 0.4020 +2623 6046 0.6910 +2623 6125 0.4440 +2623 6135 0.4720 +2623 6165 0.4060 +2623 6223 0.5540 +2623 6229 0.4510 +2623 6231 0.4450 +2623 6233 0.4020 +2623 6304 0.4220 +2623 6391 0.4160 +2623 6491 0.4750 +2623 6504 0.4310 +2623 6521 0.6960 +2623 6563 0.6270 +2623 6597 0.5930 +2623 6598 0.4570 +2623 6599 0.4610 +2623 6601 0.5480 +2623 6657 0.4680 +2623 6660 0.4400 +2623 6667 0.7350 +2623 6670 0.4780 +2623 6688 0.9960 +2623 6689 0.5160 +2623 6708 0.6880 +2623 6732 0.4110 +2623 6736 0.4100 +2623 6772 0.6700 +2623 6773 0.5430 +2623 6774 0.4700 +2623 6776 0.5890 +2623 6777 0.5260 +2623 6881 0.4800 +2623 6886 0.9990 +2623 6887 0.6150 +2623 6908 0.4830 +2623 6911 0.4400 +2623 6929 0.9950 +2623 6938 0.6710 +2623 7004 0.4710 +2623 7023 0.4370 +2623 7024 0.4580 +2623 7030 0.5080 +2623 7036 0.4120 +2623 7037 0.6000 +2623 7057 0.5230 +2623 7066 0.6310 +2623 7157 0.5790 +2623 7182 0.5970 +2623 7205 0.6110 +2623 7390 0.7170 +2623 7391 0.5120 +2623 7403 0.4310 +2623 7490 0.5010 +2623 7528 0.7190 +2623 7593 0.5310 +2623 7702 0.6040 +2623 7704 0.5190 +2623 7707 0.6350 +2623 7975 0.6760 +2623 8019 0.9860 +2623 8085 0.5960 +2623 8233 0.4130 +2623 8243 0.4970 +2623 8288 0.4880 +2623 8290 0.6730 +2623 8328 0.9500 +2623 8356 0.6730 +2623 8444 0.5590 +2623 8554 0.4520 +2623 8841 0.4590 +2623 8850 0.6480 +2623 8861 0.9980 +2623 8928 0.4450 +2623 8988 0.5530 +2623 9070 0.5760 +2623 9079 0.9950 +2623 9126 0.4650 +2623 9139 0.5920 +2623 9278 0.4070 +2623 9314 0.6540 +2623 9603 0.5600 +2623 9739 0.6080 +2623 9757 0.5550 +2623 9759 0.5100 +2623 9782 0.4760 +2623 9962 0.4260 +2623 9963 0.4300 +2623 10013 0.5220 +2623 10014 0.4990 +2623 10047 0.5710 +2623 10107 0.5690 +2623 10320 0.9390 +2623 10661 0.9970 +2623 10664 0.6190 +2623 10735 0.4080 +2623 10767 0.6030 +2623 11091 0.7550 +2623 22807 0.4200 +2623 23028 0.4200 +2623 23067 0.5720 +2623 23112 0.4440 +2623 23218 0.4740 +2623 23309 0.6010 +2623 23414 0.9260 +2623 23462 0.5820 +2623 23476 0.8230 +2623 23512 0.5900 +2623 23635 0.4680 +2623 23762 0.4670 +2623 25893 0.4090 +2623 25925 0.5720 +2623 25942 0.8040 +2623 26040 0.4470 +2623 26286 0.5230 +2623 26523 0.4330 +2623 28996 0.4510 +2623 29843 0.6270 +2623 50943 0.6790 +2623 51176 0.4280 +2623 51274 0.6160 +2623 51312 0.4910 +2623 51327 0.8770 +2623 51341 0.4860 +2623 51592 0.6770 +2623 51621 0.5470 +2623 51629 0.5480 +2623 53335 0.8840 +2623 54432 0.4080 +2623 54790 0.4940 +2623 54997 0.5030 +2623 55170 0.5860 +2623 55278 0.6320 +2623 55363 0.6920 +2623 55553 0.9230 +2623 55810 0.4050 +2623 55904 0.5680 +2623 57119 0.5480 +2623 57492 0.4510 +2623 57591 0.5270 +2623 58508 0.6140 +2623 59340 0.5130 +2623 63035 0.4010 +2623 63899 0.4190 +2623 64743 0.6480 +2623 64783 0.5390 +2623 79828 0.4750 +2623 79923 0.4370 +2623 80854 0.5570 +2623 83881 0.5970 +2623 83897 0.4390 +2623 84295 0.4480 +2623 84529 0.4230 +2623 84661 0.5180 +2623 89872 0.4410 +2623 90121 0.5110 +2623 124790 0.4570 +2623 146059 0.4320 +2623 148534 0.4650 +2623 161882 0.9990 +2623 170506 0.5210 +2623 171017 0.4670 +2623 171023 0.5090 +2623 192669 0.4330 +2623 192670 0.4330 +2623 222642 0.4710 +2623 284312 0.5130 +2623 387778 0.4070 +2623 440093 0.6730 +2623 440686 0.6730 +2623 653604 0.6730 +2624 2625 0.8440 +2624 2648 0.6310 +2624 2668 0.4530 +2624 2672 0.9240 +2624 2909 0.6010 +2624 2969 0.6130 +2624 2993 0.4830 +2624 3002 0.4740 +2624 3012 0.5090 +2624 3013 0.5090 +2624 3014 0.5370 +2624 3015 0.5930 +2624 3017 0.5310 +2624 3018 0.5310 +2624 3021 0.7020 +2624 3043 0.4150 +2624 3065 0.5730 +2624 3066 0.4020 +2624 3067 0.7340 +2624 3087 0.5050 +2624 3091 0.5840 +2624 3169 0.6210 +2624 3170 0.5270 +2624 3202 0.6260 +2624 3205 0.5420 +2624 3214 0.5770 +2624 3248 0.4340 +2624 3265 0.4210 +2624 3276 0.4700 +2624 3394 0.5440 +2624 3417 0.5700 +2624 3418 0.5710 +2624 3458 0.4190 +2624 3562 0.5110 +2624 3565 0.4090 +2624 3670 0.5060 +2624 3674 0.5490 +2624 3680 0.4120 +2624 3702 0.4880 +2624 3717 0.5510 +2624 3718 0.4110 +2624 3725 0.8540 +2624 3726 0.5780 +2624 3727 0.6040 +2624 3791 0.7130 +2624 3815 0.6590 +2624 3845 0.6640 +2624 4004 0.7980 +2624 4005 0.9970 +2624 4010 0.4420 +2624 4066 0.8940 +2624 4087 0.5470 +2624 4089 0.7130 +2624 4145 0.5300 +2624 4150 0.5500 +2624 4208 0.6090 +2624 4211 0.6160 +2624 4254 0.5240 +2624 4297 0.7260 +2624 4300 0.4300 +2624 4331 0.4060 +2624 4352 0.5050 +2624 4353 0.5670 +2624 4487 0.4150 +2624 4488 0.4080 +2624 4602 0.9450 +2624 4609 0.5690 +2624 4613 0.5150 +2624 4629 0.4420 +2624 4763 0.4890 +2624 4772 0.5970 +2624 4774 0.4740 +2624 4778 0.6310 +2624 4781 0.4860 +2624 4782 0.5750 +2624 4800 0.5680 +2624 4801 0.6650 +2624 4802 0.5610 +2624 4821 0.4490 +2624 4851 0.5290 +2624 4869 0.5960 +2624 4893 0.6180 +2624 5015 0.4230 +2624 5023 0.4130 +2624 5079 0.5130 +2624 5080 0.4400 +2624 5087 0.4390 +2624 5090 0.4600 +2624 5156 0.4260 +2624 5175 0.4520 +2624 5308 0.4040 +2624 5449 0.6840 +2624 5450 0.5130 +2624 5460 0.5400 +2624 5468 0.4550 +2624 5469 0.4530 +2624 5688 0.5760 +2624 5781 0.5200 +2624 5788 0.4850 +2624 5885 0.5330 +2624 5914 0.6350 +2624 5928 0.4970 +2624 5989 0.4960 +2624 6427 0.5800 +2624 6469 0.4180 +2624 6504 0.4290 +2624 6532 0.4690 +2624 6547 0.4310 +2624 6595 0.4840 +2624 6605 0.4140 +2624 6622 0.4430 +2624 6657 0.6810 +2624 6688 0.9930 +2624 6731 0.4750 +2624 6772 0.4510 +2624 6774 0.4630 +2624 6776 0.4750 +2624 6777 0.4460 +2624 6783 0.4350 +2624 6872 0.4940 +2624 6886 0.9990 +2624 6887 0.6110 +2624 6908 0.4180 +2624 6925 0.4560 +2624 6926 0.4540 +2624 6929 0.8610 +2624 6932 0.4700 +2624 6934 0.5120 +2624 6938 0.7400 +2624 7004 0.5030 +2624 7010 0.4210 +2624 7015 0.4560 +2624 7022 0.4330 +2624 7024 0.4340 +2624 7026 0.6270 +2624 7037 0.4480 +2624 7048 0.4970 +2624 7066 0.4620 +2624 7157 0.6260 +2624 7177 0.4010 +2624 7182 0.4720 +2624 7252 0.4180 +2624 7307 0.6020 +2624 7368 0.4060 +2624 7391 0.5770 +2624 7403 0.4720 +2624 7490 0.6240 +2624 7528 0.5680 +2624 7593 0.4740 +2624 7704 0.6870 +2624 7852 0.4080 +2624 8022 0.6470 +2624 8233 0.6120 +2624 8243 0.5400 +2624 8290 0.4220 +2624 8320 0.4160 +2624 8328 0.8210 +2624 8331 0.5090 +2624 8334 0.5100 +2624 8337 0.5700 +2624 8338 0.5700 +2624 8340 0.5300 +2624 8341 0.5250 +2624 8342 0.5250 +2624 8345 0.5310 +2624 8347 0.5260 +2624 8348 0.5340 +2624 8349 0.6010 +2624 8356 0.7030 +2624 8361 0.7010 +2624 8521 0.4410 +2624 8554 0.4630 +2624 8841 0.7500 +2624 8850 0.5110 +2624 8861 0.9940 +2624 8929 0.5670 +2624 8970 0.5280 +2624 9079 0.9830 +2624 9095 0.5090 +2624 9126 0.5220 +2624 9139 0.4950 +2624 9173 0.4940 +2624 9203 0.4620 +2624 9314 0.5550 +2624 9464 0.5000 +2624 9869 0.4820 +2624 10014 0.4900 +2624 10019 0.4620 +2624 10231 0.4390 +2624 10257 0.4290 +2624 10320 0.6200 +2624 10365 0.4950 +2624 10539 0.5870 +2624 10661 0.7120 +2624 10664 0.5450 +2624 10735 0.5830 +2624 10782 0.6920 +2624 10804 0.4560 +2624 11123 0.4350 +2624 11322 0.4710 +2624 22807 0.4290 +2624 22852 0.5920 +2624 23023 0.4910 +2624 23028 0.5900 +2624 23129 0.4910 +2624 23414 0.6950 +2624 23462 0.4050 +2624 23635 0.4870 +2624 25942 0.6170 +2624 26040 0.6310 +2624 27033 0.5350 +2624 28999 0.6340 +2624 50512 0.5150 +2624 51176 0.6690 +2624 51200 0.5870 +2624 51428 0.5300 +2624 51450 0.5420 +2624 51588 0.4460 +2624 53335 0.6830 +2624 54145 0.5250 +2624 54345 0.5250 +2624 54567 0.4450 +2624 54790 0.6620 +2624 54809 0.4550 +2624 55278 0.7850 +2624 55294 0.5170 +2624 55766 0.5090 +2624 63035 0.5190 +2624 64321 0.5990 +2624 65975 0.4470 +2624 79923 0.4980 +2624 81704 0.4290 +2624 83595 0.4540 +2624 84295 0.6110 +2624 84767 0.5730 +2624 85236 0.5250 +2624 85414 0.5860 +2624 91807 0.4610 +2624 93986 0.4810 +2624 94239 0.5570 +2624 128312 0.5300 +2624 132625 0.4010 +2624 161882 0.9960 +2624 171023 0.6940 +2624 201191 0.5090 +2624 219285 0.4590 +2624 255626 0.5330 +2624 284312 0.4570 +2624 348807 0.5200 +2624 386682 0.4240 +2624 388931 0.4440 +2624 440093 0.4220 +2624 440686 0.4220 +2624 474382 0.5090 +2624 653604 0.6980 +2625 2626 0.5530 +2625 2672 0.6390 +2625 2833 0.5860 +2625 2957 0.5050 +2625 2958 0.5070 +2625 3001 0.4620 +2625 3002 0.6090 +2625 3012 0.5130 +2625 3013 0.5090 +2625 3014 0.5390 +2625 3015 0.6120 +2625 3017 0.5370 +2625 3018 0.5250 +2625 3021 0.7270 +2625 3065 0.9110 +2625 3066 0.8440 +2625 3091 0.7140 +2625 3142 0.4060 +2625 3169 0.9970 +2625 3170 0.6070 +2625 3202 0.5770 +2625 3276 0.5700 +2625 3312 0.4380 +2625 3320 0.6590 +2625 3326 0.6230 +2625 3394 0.4270 +2625 3397 0.5830 +2625 3398 0.6520 +2625 3399 0.4110 +2625 3458 0.8900 +2625 3516 0.5160 +2625 3552 0.4470 +2625 3553 0.5960 +2625 3554 0.4040 +2625 3558 0.7160 +2625 3559 0.6130 +2625 3560 0.6690 +2625 3561 0.4390 +2625 3562 0.4390 +2625 3565 0.9110 +2625 3566 0.7550 +2625 3567 0.8760 +2625 3569 0.6740 +2625 3574 0.6110 +2625 3575 0.7020 +2625 3576 0.6240 +2625 3578 0.6690 +2625 3586 0.7590 +2625 3594 0.5100 +2625 3595 0.5870 +2625 3596 0.8820 +2625 3600 0.5260 +2625 3605 0.7930 +2625 3606 0.5280 +2625 3627 0.4050 +2625 3655 0.4110 +2625 3659 0.4620 +2625 3662 0.8530 +2625 3670 0.6920 +2625 3682 0.5410 +2625 3684 0.5940 +2625 3687 0.6000 +2625 3702 0.6990 +2625 3716 0.4980 +2625 3717 0.5740 +2625 3718 0.4830 +2625 3725 0.8970 +2625 3726 0.4490 +2625 3727 0.6520 +2625 3815 0.5830 +2625 3820 0.5320 +2625 3821 0.4740 +2625 3824 0.4270 +2625 3845 0.4890 +2625 3852 0.6750 +2625 3855 0.7430 +2625 3856 0.5410 +2625 3861 0.5530 +2625 3872 0.4190 +2625 3875 0.5220 +2625 3880 0.4720 +2625 3902 0.6790 +2625 3975 0.4400 +2625 4004 0.8590 +2625 4005 0.8710 +2625 4066 0.4480 +2625 4087 0.4200 +2625 4088 0.7820 +2625 4089 0.4220 +2625 4094 0.6570 +2625 4150 0.4970 +2625 4193 0.5020 +2625 4211 0.6300 +2625 4214 0.6160 +2625 4311 0.4660 +2625 4331 0.4060 +2625 4435 0.6200 +2625 4586 0.4140 +2625 4602 0.8070 +2625 4609 0.6980 +2625 4613 0.6380 +2625 4684 0.5280 +2625 4763 0.4700 +2625 4772 0.6230 +2625 4773 0.6470 +2625 4774 0.4430 +2625 4776 0.4070 +2625 4781 0.4990 +2625 4782 0.4690 +2625 4783 0.6380 +2625 4790 0.7480 +2625 4800 0.4890 +2625 4801 0.6240 +2625 4802 0.5560 +2625 4821 0.5480 +2625 4824 0.4450 +2625 4851 0.6060 +2625 4853 0.4420 +2625 5076 0.5730 +2625 5079 0.7230 +2625 5080 0.5470 +2625 5087 0.7340 +2625 5133 0.5130 +2625 5175 0.4190 +2625 5190 0.4190 +2625 5241 0.8100 +2625 5290 0.5830 +2625 5295 0.4850 +2625 5304 0.6600 +2625 5305 0.4030 +2625 5324 0.4510 +2625 5325 0.4120 +2625 5451 0.6310 +2625 5455 0.4260 +2625 5460 0.5530 +2625 5468 0.5060 +2625 5469 0.4060 +2625 5551 0.5860 +2625 5588 0.6180 +2625 5595 0.4300 +2625 5728 0.5260 +2625 5781 0.4590 +2625 5788 0.6340 +2625 5896 0.6000 +2625 5914 0.7860 +2625 5915 0.5970 +2625 5916 0.6150 +2625 5927 0.5170 +2625 5966 0.4150 +2625 5970 0.5850 +2625 5989 0.4930 +2625 6095 0.7470 +2625 6097 0.7900 +2625 6256 0.4950 +2625 6304 0.6970 +2625 6347 0.4330 +2625 6356 0.4300 +2625 6361 0.4520 +2625 6402 0.5980 +2625 6416 0.4100 +2625 6495 0.4420 +2625 6504 0.4150 +2625 6591 0.4080 +2625 6597 0.6170 +2625 6657 0.5470 +2625 6659 0.7500 +2625 6662 0.4190 +2625 6663 0.5150 +2625 6667 0.4550 +2625 6688 0.8280 +2625 6714 0.5110 +2625 6772 0.8310 +2625 6774 0.8830 +2625 6775 0.8090 +2625 6776 0.7770 +2625 6777 0.7630 +2625 6778 0.9710 +2625 6855 0.4540 +2625 6886 0.9930 +2625 6908 0.6930 +2625 6909 0.5160 +2625 6926 0.6850 +2625 6929 0.8850 +2625 6932 0.6380 +2625 6934 0.6950 +2625 6938 0.7780 +2625 7004 0.7240 +2625 7022 0.8580 +2625 7031 0.7730 +2625 7033 0.6380 +2625 7040 0.5560 +2625 7070 0.5080 +2625 7080 0.4880 +2625 7088 0.5530 +2625 7090 0.8270 +2625 7097 0.4120 +2625 7099 0.4320 +2625 7124 0.6330 +2625 7157 0.7240 +2625 7268 0.6230 +2625 7292 0.5040 +2625 7293 0.4800 +2625 7294 0.6470 +2625 7379 0.5720 +2625 7380 0.4470 +2625 7403 0.6630 +2625 7490 0.5450 +2625 7494 0.4620 +2625 7528 0.8770 +2625 7535 0.5260 +2625 7704 0.7420 +2625 7764 0.4220 +2625 7849 0.7070 +2625 7852 0.4300 +2625 7917 0.4350 +2625 8022 0.4210 +2625 8202 0.7480 +2625 8204 0.8890 +2625 8242 0.5120 +2625 8289 0.4480 +2625 8290 0.4760 +2625 8320 0.8360 +2625 8328 0.6420 +2625 8331 0.5090 +2625 8334 0.5090 +2625 8337 0.5840 +2625 8338 0.5820 +2625 8340 0.5340 +2625 8341 0.5430 +2625 8342 0.5270 +2625 8345 0.5260 +2625 8347 0.5360 +2625 8348 0.5380 +2625 8349 0.6330 +2625 8356 0.7270 +2625 8361 0.5870 +2625 8456 0.4730 +2625 8521 0.5710 +2625 8549 0.6220 +2625 8554 0.5360 +2625 8600 0.5320 +2625 8626 0.4450 +2625 8639 0.5470 +2625 8648 0.5890 +2625 8651 0.4190 +2625 8784 0.4850 +2625 8809 0.6620 +2625 8821 0.5130 +2625 8841 0.7730 +2625 8850 0.5830 +2625 8861 0.9320 +2625 8929 0.7380 +2625 8932 0.5020 +2625 8970 0.5350 +2625 8988 0.4160 +2625 9021 0.4110 +2625 9034 0.6020 +2625 9079 0.6660 +2625 9173 0.6210 +2625 9247 0.4400 +2625 9314 0.5090 +2625 9436 0.4470 +2625 9437 0.6020 +2625 9464 0.6940 +2625 9476 0.5320 +2625 9611 0.4130 +2625 9612 0.5560 +2625 9687 0.5630 +2625 9759 0.4680 +2625 9760 0.4010 +2625 9839 0.4540 +2625 9935 0.6090 +2625 10014 0.7600 +2625 10219 0.6830 +2625 10320 0.7590 +2625 10365 0.4700 +2625 10498 0.5970 +2625 10524 0.5690 +2625 10538 0.6460 +2625 10539 0.5870 +2625 10663 0.5180 +2625 10664 0.6510 +2625 10725 0.4510 +2625 10728 0.5200 +2625 10803 0.5150 +2625 10856 0.4240 +2625 10919 0.4760 +2625 11251 0.6230 +2625 22806 0.4560 +2625 22807 0.5470 +2625 22974 0.4700 +2625 23028 0.6700 +2625 23040 0.4070 +2625 23186 0.4050 +2625 23308 0.4350 +2625 23410 0.4270 +2625 23414 0.6930 +2625 23493 0.5440 +2625 23598 0.5380 +2625 25942 0.5550 +2625 25962 0.5490 +2625 27005 0.9240 +2625 27033 0.8180 +2625 28514 0.4140 +2625 29126 0.5270 +2625 29851 0.6970 +2625 30009 0.9970 +2625 50615 0.4740 +2625 50616 0.7210 +2625 50943 0.8980 +2625 51043 0.6150 +2625 51176 0.6810 +2625 51341 0.4170 +2625 51561 0.4100 +2625 53335 0.4190 +2625 54145 0.5250 +2625 54474 0.7250 +2625 54567 0.4090 +2625 55278 0.5890 +2625 55294 0.5220 +2625 55540 0.5910 +2625 55766 0.5130 +2625 55876 0.4930 +2625 57167 0.4300 +2625 57504 0.8220 +2625 57758 0.6210 +2625 58508 0.5230 +2625 60468 0.5560 +2625 64321 0.4700 +2625 64375 0.6420 +2625 64919 0.6740 +2625 66004 0.4220 +2625 79142 0.5150 +2625 79923 0.5130 +2625 79977 0.6160 +2625 80381 0.4180 +2625 81671 0.4370 +2625 81839 0.4170 +2625 83482 0.4160 +2625 84159 0.5050 +2625 84868 0.4980 +2625 85236 0.5250 +2625 85480 0.6690 +2625 90865 0.8160 +2625 94239 0.5570 +2625 112744 0.6130 +2625 128312 0.5310 +2625 140885 0.4090 +2625 149233 0.5450 +2625 161882 0.8020 +2625 201633 0.4340 +2625 255626 0.5370 +2625 360203 0.6180 +2625 400566 0.6900 +2625 440093 0.4770 +2625 440686 0.4760 +2625 474382 0.5340 +2625 653604 0.7270 +2625 100133941 0.5120 +2625 100532731 0.8510 +2626 2627 0.5900 +2626 2695 0.7900 +2626 2697 0.6560 +2626 2702 0.5790 +2626 2932 0.5090 +2626 3021 0.5300 +2626 3065 0.4560 +2626 3066 0.7520 +2626 3082 0.4270 +2626 3087 0.5660 +2626 3110 0.4910 +2626 3169 0.8710 +2626 3170 0.8680 +2626 3171 0.7850 +2626 3172 0.6120 +2626 3175 0.5580 +2626 3218 0.4830 +2626 3283 0.4930 +2626 3284 0.4120 +2626 3384 0.4650 +2626 3397 0.4630 +2626 3398 0.7730 +2626 3479 0.4470 +2626 3630 0.5030 +2626 3651 0.6150 +2626 3670 0.7590 +2626 3720 0.8110 +2626 3725 0.6910 +2626 3759 0.4220 +2626 3791 0.5890 +2626 3815 0.5940 +2626 3875 0.4650 +2626 3880 0.4040 +2626 3915 0.4760 +2626 3973 0.4860 +2626 3975 0.5120 +2626 3976 0.5260 +2626 4087 0.4550 +2626 4088 0.6240 +2626 4089 0.4700 +2626 4205 0.6220 +2626 4208 0.9690 +2626 4209 0.4210 +2626 4211 0.4240 +2626 4487 0.4640 +2626 4609 0.5890 +2626 4624 0.8300 +2626 4625 0.6100 +2626 4629 0.4320 +2626 4633 0.6860 +2626 4654 0.5820 +2626 4760 0.4840 +2626 4772 0.9570 +2626 4773 0.9260 +2626 4775 0.9400 +2626 4776 0.9840 +2626 4782 0.4320 +2626 4784 0.4150 +2626 4801 0.5780 +2626 4821 0.4760 +2626 4825 0.4750 +2626 4838 0.5300 +2626 4851 0.4990 +2626 4878 0.9390 +2626 4879 0.5520 +2626 5015 0.5920 +2626 5076 0.4120 +2626 5077 0.4330 +2626 5078 0.4670 +2626 5080 0.6500 +2626 5087 0.5720 +2626 5156 0.5270 +2626 5175 0.5350 +2626 5308 0.6320 +2626 5460 0.7970 +2626 5594 0.5100 +2626 5595 0.4830 +2626 5725 0.4870 +2626 5788 0.4240 +2626 5978 0.5910 +2626 6045 0.4990 +2626 6262 0.5060 +2626 6331 0.4870 +2626 6422 0.4120 +2626 6423 0.4070 +2626 6425 0.4130 +2626 6469 0.4500 +2626 6474 0.4100 +2626 6597 0.8530 +2626 6604 0.9750 +2626 6615 0.4600 +2626 6656 0.6300 +2626 6657 0.8670 +2626 6658 0.4180 +2626 6662 0.9770 +2626 6667 0.6590 +2626 6670 0.4620 +2626 6722 0.9910 +2626 6736 0.7590 +2626 6770 0.4190 +2626 6772 0.5370 +2626 6774 0.4830 +2626 6862 0.4040 +2626 6886 0.5360 +2626 6899 0.5320 +2626 6909 0.5640 +2626 6910 0.9980 +2626 6911 0.5270 +2626 6926 0.7730 +2626 6927 0.6030 +2626 6928 0.5020 +2626 6943 0.5680 +2626 6997 0.4520 +2626 7003 0.6180 +2626 7004 0.4530 +2626 7015 0.4080 +2626 7022 0.4180 +2626 7026 0.4880 +2626 7040 0.4550 +2626 7044 0.4410 +2626 7070 0.5070 +2626 7080 0.4090 +2626 7092 0.4780 +2626 7137 0.6610 +2626 7139 0.7850 +2626 7157 0.5190 +2626 7273 0.4280 +2626 7403 0.8210 +2626 7473 0.4280 +2626 7474 0.4270 +2626 7481 0.4460 +2626 7490 0.9350 +2626 7528 0.6270 +2626 7547 0.4630 +2626 7704 0.4030 +2626 7852 0.4420 +2626 8048 0.5660 +2626 8290 0.5320 +2626 8320 0.7550 +2626 8356 0.5300 +2626 8433 0.4050 +2626 8445 0.4660 +2626 8549 0.4010 +2626 8815 0.6800 +2626 8817 0.4400 +2626 8822 0.4790 +2626 8823 0.4760 +2626 8854 0.4790 +2626 8878 0.9490 +2626 8928 0.4470 +2626 9096 0.6260 +2626 9314 0.6520 +2626 9421 0.5990 +2626 9464 0.9900 +2626 9573 0.4300 +2626 9759 0.4150 +2626 9839 0.4460 +2626 10021 0.5360 +2626 10365 0.4190 +2626 10512 0.4700 +2626 10529 0.5230 +2626 10631 0.4920 +2626 10637 0.6170 +2626 10725 0.4460 +2626 10763 0.6070 +2626 11149 0.4720 +2626 11162 0.5540 +2626 22943 0.4050 +2626 23022 0.4080 +2626 23414 0.9990 +2626 23462 0.6130 +2626 23476 0.4520 +2626 23493 0.7940 +2626 23512 0.5610 +2626 23528 0.6590 +2626 25937 0.5060 +2626 26281 0.4640 +2626 27006 0.4580 +2626 27022 0.4290 +2626 27302 0.4410 +2626 28996 0.5740 +2626 28999 0.6290 +2626 29842 0.4150 +2626 30812 0.4010 +2626 50507 0.5650 +2626 50674 0.5570 +2626 50805 0.5520 +2626 50846 0.4010 +2626 51086 0.5530 +2626 51621 0.6610 +2626 51741 0.5450 +2626 54361 0.4780 +2626 55278 0.6520 +2626 55897 0.7580 +2626 55997 0.4400 +2626 56956 0.5010 +2626 57057 0.9910 +2626 57167 0.5160 +2626 57530 0.9110 +2626 58498 0.6690 +2626 59272 0.4010 +2626 63978 0.5010 +2626 64321 0.8800 +2626 78987 0.4860 +2626 79191 0.4240 +2626 79192 0.4080 +2626 79727 0.4890 +2626 79923 0.8480 +2626 81027 0.4550 +2626 83595 0.8150 +2626 83881 0.6530 +2626 84504 0.4280 +2626 84525 0.4850 +2626 89780 0.5120 +2626 93649 0.8160 +2626 132625 0.4880 +2626 137814 0.4290 +2626 145873 0.4350 +2626 153572 0.5000 +2626 161882 0.9040 +2626 197320 0.4300 +2626 203068 0.4570 +2626 204851 0.5870 +2626 222546 0.4770 +2626 256297 0.5490 +2626 284654 0.4350 +2626 339324 0.6070 +2626 344018 0.4340 +2626 440093 0.5310 +2626 440686 0.5310 +2626 653604 0.5310 +2627 2637 0.4330 +2627 2735 0.5970 +2627 3021 0.4400 +2627 3087 0.5690 +2627 3110 0.5540 +2627 3169 0.8810 +2627 3170 0.8580 +2627 3171 0.5930 +2627 3172 0.7850 +2627 3175 0.6390 +2627 3283 0.4260 +2627 3309 0.4230 +2627 3384 0.5840 +2627 3479 0.5370 +2627 3630 0.4140 +2627 3659 0.5100 +2627 3670 0.5740 +2627 3725 0.4290 +2627 3791 0.4280 +2627 3845 0.5340 +2627 3875 0.4210 +2627 3915 0.4980 +2627 3938 0.5770 +2627 3975 0.4590 +2627 3976 0.4850 +2627 4004 0.5170 +2627 4005 0.5740 +2627 4017 0.9150 +2627 4087 0.6400 +2627 4089 0.6970 +2627 4175 0.5060 +2627 4208 0.5650 +2627 4609 0.5560 +2627 4624 0.6010 +2627 4625 0.5350 +2627 4760 0.5160 +2627 4781 0.4280 +2627 4782 0.4460 +2627 4784 0.4320 +2627 4801 0.5320 +2627 4821 0.6970 +2627 4825 0.4190 +2627 4838 0.4690 +2627 4851 0.4130 +2627 4878 0.6050 +2627 5013 0.4130 +2627 5015 0.5810 +2627 5078 0.4450 +2627 5080 0.6400 +2627 5156 0.5050 +2627 5295 0.4330 +2627 5308 0.4510 +2627 5460 0.8140 +2627 6469 0.4100 +2627 6604 0.6510 +2627 6615 0.4280 +2627 6656 0.6060 +2627 6657 0.7150 +2627 6662 0.5910 +2627 6667 0.6350 +2627 6722 0.6810 +2627 6774 0.4510 +2627 6822 0.4340 +2627 6833 0.4470 +2627 6886 0.4020 +2627 6909 0.4410 +2627 6910 0.7660 +2627 6911 0.4360 +2627 6926 0.6570 +2627 6927 0.7700 +2627 6928 0.6350 +2627 6943 0.4380 +2627 6997 0.4760 +2627 7004 0.5050 +2627 7022 0.4440 +2627 7026 0.4090 +2627 7044 0.4230 +2627 7080 0.8730 +2627 7139 0.4310 +2627 7157 0.4840 +2627 7403 0.4040 +2627 7474 0.4130 +2627 7490 0.4370 +2627 7528 0.5180 +2627 7534 0.4450 +2627 7547 0.4020 +2627 8048 0.4910 +2627 8085 0.4120 +2627 8289 0.4040 +2627 8290 0.4430 +2627 8320 0.6370 +2627 8356 0.4430 +2627 8361 0.4090 +2627 8433 0.4640 +2627 8543 0.5000 +2627 8549 0.4400 +2627 8554 0.4970 +2627 8815 0.4740 +2627 8861 0.8110 +2627 9079 0.5510 +2627 9096 0.4340 +2627 9314 0.6350 +2627 9464 0.7840 +2627 9573 0.4360 +2627 10009 0.4180 +2627 10365 0.5710 +2627 10512 0.8310 +2627 10560 0.4250 +2627 10637 0.4990 +2627 10763 0.5390 +2627 10765 0.4340 +2627 22943 0.4420 +2627 23414 0.9400 +2627 23512 0.5720 +2627 27022 0.4340 +2627 29842 0.4600 +2627 29995 0.9630 +2627 50674 0.5320 +2627 51124 0.4450 +2627 54345 0.4150 +2627 55278 0.6290 +2627 55897 0.4140 +2627 57057 0.8170 +2627 57167 0.5250 +2627 63973 0.4750 +2627 63978 0.5210 +2627 64321 0.8540 +2627 79727 0.4270 +2627 79923 0.8480 +2627 83595 0.7700 +2627 83881 0.6210 +2627 84525 0.4080 +2627 84695 0.4970 +2627 84891 0.4100 +2627 89780 0.4280 +2627 93649 0.5850 +2627 94234 0.5390 +2627 121599 0.4010 +2627 128209 0.4060 +2627 132625 0.5510 +2627 140628 0.5430 +2627 145873 0.4280 +2627 161882 0.8270 +2627 169792 0.4810 +2627 222546 0.5940 +2627 256297 0.7510 +2627 359787 0.4310 +2627 440093 0.4420 +2627 440686 0.4430 +2627 653509 0.5910 +2627 653604 0.4420 +2627 729238 0.5390 +2627 100125288 0.8260 +2628 2731 0.9290 +2628 2744 0.8110 +2628 2746 0.8040 +2628 2747 0.8040 +2628 2752 0.8550 +2628 2897 0.6200 +2628 4143 0.4760 +2628 4144 0.4350 +2628 4842 0.9250 +2628 4843 0.9160 +2628 4846 0.9220 +2628 4942 0.5070 +2628 4953 0.4220 +2628 5009 0.4270 +2628 5315 0.4650 +2628 5832 0.5450 +2628 6161 0.4200 +2628 6193 0.4080 +2628 6470 0.9600 +2628 6472 0.9310 +2628 6535 0.9330 +2628 6569 0.7920 +2628 6647 0.4480 +2628 7369 0.4120 +2628 7782 0.7750 +2628 7915 0.4320 +2628 8477 0.4040 +2628 8622 0.4290 +2628 8659 0.8710 +2628 8788 0.4630 +2628 9153 0.7730 +2628 23154 0.5500 +2628 23576 0.4050 +2628 25802 0.4120 +2628 27165 0.8350 +2628 27232 0.9300 +2628 50506 0.7100 +2628 51268 0.9090 +2628 53905 0.7510 +2628 55748 0.9060 +2628 57571 0.9030 +2628 57619 0.4310 +2628 64902 0.9460 +2628 79029 0.5980 +2628 79814 0.5030 +2628 84735 0.9100 +2628 92170 0.4320 +2628 113451 0.9640 +2628 162239 0.4730 +2628 391723 0.4110 +2628 548596 0.6400 +2629 2717 0.8230 +2629 2720 0.9760 +2629 2760 0.4210 +2629 2896 0.5480 +2629 2922 0.6130 +2629 2925 0.4360 +2629 2990 0.5210 +2629 3308 0.4510 +2629 3320 0.4200 +2629 3423 0.4960 +2629 3425 0.5530 +2629 3608 0.4290 +2629 3630 0.4450 +2629 3801 0.4080 +2629 3817 0.7220 +2629 3818 0.7400 +2629 3916 0.6130 +2629 3920 0.5130 +2629 3972 0.4910 +2629 4009 0.4290 +2629 4069 0.5300 +2629 4125 0.5000 +2629 4126 0.4780 +2629 4137 0.6710 +2629 4363 0.4060 +2629 4477 0.6360 +2629 4580 0.8580 +2629 4668 0.4530 +2629 4669 0.4710 +2629 4803 0.4370 +2629 4864 0.5720 +2629 4929 0.4970 +2629 5071 0.9110 +2629 5232 0.4560 +2629 5298 0.4320 +2629 5313 0.7430 +2629 5376 0.4020 +2629 5420 0.4150 +2629 5476 0.4570 +2629 5660 0.9910 +2629 5663 0.4420 +2629 5874 0.4610 +2629 6014 0.4460 +2629 6311 0.4960 +2629 6331 0.4260 +2629 6362 0.4240 +2629 6448 0.4670 +2629 6476 0.5270 +2629 6499 0.4390 +2629 6531 0.4840 +2629 6609 0.9800 +2629 6610 0.9360 +2629 6620 0.6210 +2629 6622 0.9630 +2629 6774 0.4630 +2629 6950 0.7600 +2629 7047 0.6800 +2629 7059 0.7520 +2629 7157 0.5330 +2629 7203 0.6060 +2629 7345 0.7100 +2629 7357 0.9920 +2629 7368 0.9310 +2629 7942 0.4750 +2629 8398 0.7510 +2629 8560 0.9280 +2629 8612 0.9130 +2629 8613 0.9060 +2629 8714 0.4270 +2629 8841 0.4380 +2629 8867 0.5900 +2629 8878 0.4050 +2629 8934 0.4620 +2629 8972 0.5360 +2629 9066 0.4650 +2629 9134 0.4050 +2629 9331 0.9360 +2629 9429 0.4230 +2629 9517 0.5160 +2629 9627 0.6130 +2629 9829 0.6400 +2629 10067 0.4320 +2629 10238 0.4080 +2629 10517 0.4450 +2629 10558 0.4940 +2629 10574 0.5150 +2629 10575 0.5840 +2629 10576 0.5790 +2629 10577 0.5020 +2629 10693 0.5140 +2629 10694 0.5640 +2629 11315 0.7450 +2629 11328 0.4770 +2629 22803 0.4030 +2629 22948 0.5470 +2629 23208 0.5060 +2629 23317 0.6550 +2629 23324 0.4060 +2629 23400 0.8710 +2629 23435 0.4240 +2629 25793 0.7860 +2629 26058 0.6860 +2629 26190 0.4460 +2629 26224 0.4010 +2629 26270 0.4500 +2629 26330 0.4620 +2629 26985 0.4070 +2629 27347 0.5270 +2629 27429 0.6630 +2629 29058 0.4410 +2629 29956 0.9370 +2629 50636 0.5910 +2629 51142 0.6190 +2629 54461 0.4050 +2629 54829 0.7840 +2629 54832 0.6510 +2629 55135 0.4090 +2629 55294 0.4560 +2629 55304 0.4770 +2629 55512 0.9210 +2629 55627 0.9210 +2629 55737 0.7570 +2629 56624 0.9280 +2629 56922 0.4480 +2629 56924 0.4010 +2629 57471 0.4370 +2629 57704 0.9900 +2629 64781 0.9340 +2629 65018 0.7600 +2629 79603 0.9290 +2629 79608 0.4650 +2629 79689 0.4940 +2629 80128 0.7460 +2629 80208 0.5370 +2629 81537 0.9230 +2629 84261 0.4540 +2629 84286 0.6080 +2629 84660 0.4750 +2629 85414 0.6170 +2629 91012 0.9330 +2629 91683 0.4790 +2629 112770 0.4580 +2629 116442 0.4810 +2629 120892 0.9220 +2629 123099 0.9180 +2629 125981 0.9290 +2629 130367 0.9100 +2629 166929 0.9320 +2629 203228 0.4340 +2629 204219 0.9420 +2629 253782 0.9330 +2629 259230 0.9280 +2629 261729 0.4970 +2629 339221 0.9090 +2629 340485 0.9260 +2629 440387 0.7740 +2631 3251 0.4070 +2631 3326 0.4230 +2631 3329 0.5320 +2631 3728 0.4150 +2631 4077 0.7410 +2631 4548 0.4560 +2631 4809 0.5920 +2631 5058 0.4440 +2631 5062 0.4440 +2631 5063 0.4430 +2631 5260 0.4620 +2631 5590 0.5420 +2631 5707 0.5870 +2631 5723 0.4410 +2631 6093 0.4070 +2631 6500 0.4120 +2631 6517 0.4130 +2631 7037 0.4320 +2631 7112 0.4080 +2631 7398 0.4530 +2631 7415 0.6230 +2631 7535 0.4020 +2631 7879 0.4680 +2631 8243 0.4340 +2631 8476 0.4040 +2631 8508 0.7080 +2631 8773 0.4380 +2631 8874 0.4030 +2631 8878 0.8270 +2631 8887 0.6810 +2631 8976 0.4090 +2631 9341 0.4620 +2631 9475 0.4030 +2631 9497 0.4010 +2631 9528 0.4470 +2631 9578 0.4030 +2631 9776 0.4370 +2631 9815 0.4080 +2631 9817 0.6070 +2631 10241 0.6700 +2631 10298 0.5320 +2631 10376 0.4440 +2631 10528 0.5730 +2631 10651 0.4060 +2631 11180 0.5850 +2631 11331 0.5030 +2631 11337 0.7440 +2631 11345 0.7960 +2631 23048 0.4100 +2631 23710 0.7760 +2631 23770 0.4720 +2631 23786 0.4670 +2631 25842 0.4230 +2631 25870 0.5910 +2631 27127 0.4350 +2631 51142 0.4730 +2631 51373 0.4940 +2631 54874 0.4110 +2631 55004 0.5180 +2631 55075 0.4140 +2631 55699 0.4040 +2631 55717 0.4360 +2631 55723 0.4080 +2631 55968 0.4040 +2631 56924 0.5200 +2631 57144 0.5210 +2631 57381 0.5720 +2631 64779 0.6790 +2631 65018 0.5500 +2631 80227 0.4710 +2631 81624 0.4390 +2631 84135 0.5870 +2631 84557 0.4820 +2631 84955 0.6430 +2631 113444 0.6310 +2631 114884 0.6350 +2631 114885 0.4300 +2631 126133 0.5750 +2631 139341 0.6090 +2631 143098 0.4030 +2631 157769 0.4050 +2631 200894 0.4020 +2631 253959 0.4090 +2631 266743 0.5720 +2631 346288 0.4070 +2631 349075 0.5730 +2632 2645 0.4060 +2632 2673 0.4480 +2632 2820 0.4300 +2632 2821 0.7290 +2632 2992 0.9950 +2632 2997 0.9990 +2632 2998 0.9960 +2632 3032 0.4020 +2632 3099 0.4250 +2632 3151 0.4920 +2632 3355 0.4690 +2632 3417 0.4290 +2632 3418 0.4180 +2632 3990 0.5470 +2632 4043 0.5360 +2632 4967 0.4030 +2632 5009 0.9840 +2632 5211 0.4460 +2632 5213 0.6130 +2632 5214 0.4910 +2632 5224 0.4710 +2632 5226 0.5130 +2632 5230 0.5510 +2632 5232 0.4600 +2632 5236 0.9420 +2632 5238 0.6840 +2632 5239 0.8840 +2632 5255 0.5730 +2632 5256 0.5260 +2632 5257 0.6010 +2632 5260 0.4240 +2632 5261 0.5320 +2632 5277 0.6620 +2632 5313 0.4950 +2632 5315 0.4650 +2632 5465 0.4350 +2632 5507 0.5880 +2632 5547 0.6310 +2632 5770 0.4070 +2632 5832 0.5450 +2632 5834 0.9970 +2632 5836 0.9980 +2632 5837 0.9980 +2632 6120 0.4580 +2632 6390 0.4520 +2632 6401 0.4260 +2632 6476 0.4620 +2632 6519 0.6850 +2632 6520 0.6870 +2632 6652 0.6080 +2632 6742 0.4080 +2632 6888 0.5820 +2632 7086 0.5270 +2632 7167 0.5490 +2632 7358 0.4530 +2632 7360 0.8710 +2632 7407 0.4030 +2632 7957 0.5960 +2632 8226 0.4470 +2632 8277 0.5010 +2632 8789 0.4280 +2632 8879 0.4160 +2632 8908 0.9750 +2632 8972 0.9490 +2632 8987 0.8510 +2632 9025 0.6410 +2632 9420 0.4510 +2632 9563 0.7120 +2632 9764 0.6900 +2632 9942 0.4560 +2632 10020 0.5040 +2632 11181 0.6470 +2632 11321 0.6520 +2632 22934 0.4220 +2632 25796 0.4110 +2632 29925 0.4300 +2632 51102 0.5340 +2632 51294 0.4380 +2632 51422 0.5610 +2632 54512 0.4660 +2632 55276 0.7140 +2632 55526 0.4140 +2632 55753 0.4430 +2632 56052 0.6690 +2632 56978 0.4010 +2632 58157 0.6080 +2632 64080 0.4370 +2632 79611 0.4340 +2632 79747 0.5290 +2632 80162 0.4670 +2632 80201 0.4210 +2632 81616 0.4070 +2632 84076 0.5060 +2632 84255 0.4350 +2632 85365 0.6580 +2632 89978 0.4620 +2632 91373 0.5070 +2632 93432 0.9420 +2632 114757 0.4830 +2632 121642 0.6850 +2632 129831 0.4410 +2632 130589 0.4540 +2632 137872 0.4440 +2632 283209 0.5960 +2632 284098 0.6590 +2632 286451 0.5780 +2632 378884 0.6090 +2632 414328 0.4630 +2632 440138 0.6720 +2632 644974 0.6570 +2633 2634 0.9670 +2633 2635 0.9360 +2633 3001 0.4130 +2633 3106 0.7350 +2633 3107 0.5470 +2633 3119 0.4770 +2633 3122 0.6110 +2633 3123 0.5200 +2633 3134 0.4200 +2633 3428 0.6510 +2633 3429 0.6450 +2633 3430 0.7380 +2633 3431 0.5160 +2633 3433 0.8490 +2633 3434 0.8260 +2633 3437 0.8960 +2633 3439 0.5140 +2633 3456 0.5180 +2633 3458 0.7770 +2633 3553 0.6900 +2633 3569 0.4360 +2633 3588 0.5650 +2633 3600 0.4640 +2633 3606 0.4090 +2633 3620 0.6610 +2633 3627 0.8870 +2633 3659 0.8300 +2633 3660 0.4290 +2633 3663 0.5410 +2633 3665 0.7880 +2633 3669 0.7840 +2633 3717 0.6350 +2633 3958 0.5850 +2633 4061 0.4430 +2633 4283 0.7930 +2633 4599 0.8650 +2633 4600 0.6200 +2633 4938 0.7500 +2633 4939 0.8320 +2633 4940 0.7640 +2633 5359 0.6400 +2633 5464 0.4060 +2633 5610 0.6010 +2633 5696 0.6410 +2633 5698 0.7450 +2633 5699 0.6530 +2633 5720 0.4520 +2633 5721 0.5710 +2633 5920 0.4670 +2633 6347 0.4530 +2633 6355 0.4040 +2633 6373 0.6680 +2633 6672 0.4260 +2633 6683 0.5510 +2633 6737 0.5860 +2633 6772 0.9690 +2633 6773 0.5840 +2633 6890 0.7860 +2633 6891 0.4650 +2633 6892 0.4550 +2633 7005 0.4310 +2633 7098 0.4310 +2633 7124 0.6180 +2633 7453 0.5940 +2633 8519 0.6400 +2633 8554 0.5630 +2633 8638 0.7270 +2633 8651 0.4450 +2633 8743 0.5110 +2633 8878 0.7240 +2633 9111 0.5310 +2633 9246 0.7060 +2633 9447 0.6850 +2633 9636 0.7540 +2633 9830 0.5160 +2633 10346 0.6760 +2633 10379 0.6700 +2633 10410 0.6240 +2633 10437 0.4500 +2633 10537 0.4130 +2633 10561 0.8650 +2633 10563 0.5190 +2633 10581 0.4140 +2633 10673 0.4140 +2633 10783 0.4640 +2633 10906 0.4050 +2633 10964 0.7710 +2633 11274 0.5900 +2633 23586 0.7160 +2633 23780 0.4100 +2633 24138 0.6780 +2633 27122 0.4080 +2633 29126 0.5450 +2633 51056 0.6250 +2633 51062 0.6390 +2633 51191 0.5830 +2633 51513 0.5640 +2633 54625 0.6220 +2633 54739 0.7020 +2633 54809 0.5810 +2633 55008 0.4900 +2633 55601 0.6910 +2633 56267 0.4390 +2633 56829 0.4330 +2633 64108 0.8110 +2633 64135 0.8700 +2633 79132 0.5520 +2633 80830 0.5590 +2633 80833 0.5160 +2633 83666 0.8140 +2633 84166 0.4860 +2633 91543 0.7910 +2633 94240 0.7800 +2633 115361 0.9050 +2633 115362 0.9080 +2633 116071 0.6620 +2633 129607 0.5380 +2633 151636 0.4740 +2633 158399 0.4080 +2633 219285 0.7730 +2633 345611 0.4640 +2633 439996 0.4300 +2633 441168 0.4630 +2634 2635 0.9360 +2634 3106 0.4270 +2634 3133 0.4440 +2634 3134 0.4190 +2634 3394 0.4420 +2634 3428 0.4410 +2634 3430 0.5810 +2634 3433 0.7790 +2634 3434 0.5970 +2634 3437 0.6370 +2634 3439 0.4220 +2634 3454 0.4030 +2634 3456 0.4500 +2634 3458 0.7210 +2634 3553 0.6710 +2634 3606 0.4100 +2634 3620 0.4040 +2634 3627 0.6280 +2634 3659 0.8190 +2634 3665 0.6060 +2634 3669 0.5750 +2634 3958 0.6820 +2634 3964 0.4650 +2634 4283 0.5470 +2634 4599 0.6130 +2634 4600 0.5620 +2634 4938 0.5540 +2634 4939 0.7170 +2634 4940 0.4940 +2634 5552 0.4610 +2634 5581 0.4110 +2634 5696 0.6440 +2634 5698 0.5990 +2634 5699 0.4960 +2634 5720 0.4270 +2634 5920 0.4540 +2634 6373 0.4590 +2634 6737 0.4440 +2634 6772 0.8810 +2634 6773 0.7530 +2634 6890 0.5780 +2634 7097 0.4250 +2634 7124 0.6270 +2634 7305 0.4610 +2634 8519 0.5300 +2634 8638 0.5610 +2634 8743 0.4740 +2634 8878 0.6050 +2634 9246 0.4560 +2634 9447 0.6510 +2634 9636 0.5820 +2634 10189 0.4920 +2634 10346 0.4510 +2634 10379 0.7810 +2634 10410 0.5090 +2634 10482 0.5940 +2634 10507 0.4290 +2634 10561 0.5720 +2634 10964 0.4060 +2634 11274 0.4600 +2634 23586 0.4950 +2634 24138 0.4010 +2634 25780 0.4400 +2634 25939 0.6170 +2634 27122 0.4100 +2634 29108 0.5610 +2634 51062 0.6710 +2634 54625 0.4980 +2634 54739 0.5100 +2634 55601 0.5470 +2634 56267 0.4600 +2634 64108 0.4590 +2634 64135 0.7250 +2634 79132 0.4360 +2634 83666 0.5110 +2634 84166 0.6220 +2634 84321 0.5040 +2634 91543 0.5630 +2634 94240 0.4300 +2634 115361 0.8530 +2634 115362 0.9650 +2634 116071 0.4380 +2634 129607 0.4030 +2634 219285 0.7000 +2634 345611 0.5330 +2634 388646 0.4190 +2634 439996 0.4630 +2635 3430 0.4250 +2635 3433 0.4930 +2635 3434 0.5260 +2635 3437 0.5670 +2635 3458 0.6000 +2635 3553 0.5880 +2635 3627 0.4230 +2635 3659 0.5690 +2635 3665 0.4870 +2635 4599 0.4700 +2635 4938 0.4290 +2635 4939 0.5180 +2635 4940 0.4410 +2635 5696 0.4750 +2635 6741 0.4020 +2635 6772 0.7530 +2635 7098 0.4070 +2635 7124 0.5230 +2635 8638 0.4160 +2635 9448 0.6400 +2635 9636 0.6430 +2635 10379 0.6190 +2635 10561 0.6510 +2635 11274 0.5120 +2635 23586 0.4430 +2635 54739 0.4600 +2635 54809 0.4800 +2635 55008 0.4750 +2635 55601 0.6000 +2635 64108 0.6740 +2635 64135 0.5230 +2635 79132 0.4810 +2635 83666 0.5400 +2635 84166 0.4240 +2635 91543 0.4660 +2635 115362 0.5470 +2635 116071 0.4300 +2635 129607 0.5550 +2635 149628 0.4920 +2635 151636 0.4070 +2635 219285 0.4680 +2635 345611 0.6080 +2635 388646 0.4260 +2636 26468 0.4950 +2636 64211 0.4640 +2636 345462 0.4020 +2636 392843 0.5540 +2636 402381 0.8270 +2636 431707 0.9040 +2637 3170 0.4590 +2637 3670 0.4780 +2637 3955 0.4780 +2637 3975 0.4580 +2637 4009 0.5730 +2637 4010 0.5840 +2637 4760 0.5340 +2637 4762 0.6330 +2637 5015 0.7250 +2637 5076 0.8260 +2637 5081 0.4500 +2637 5457 0.5020 +2637 5460 0.5050 +2637 6469 0.7010 +2637 6495 0.4550 +2637 6496 0.5590 +2637 6656 0.5220 +2637 6657 0.5570 +2637 6663 0.4130 +2637 6887 0.4060 +2637 6926 0.4600 +2637 7091 0.5570 +2637 7471 0.8890 +2637 7479 0.4130 +2637 7545 0.5820 +2637 7547 0.4640 +2637 8403 0.4660 +2637 8822 0.5050 +2637 9314 0.4510 +2637 9355 0.5170 +2637 10215 0.4750 +2637 10716 0.4560 +2637 10763 0.4290 +2637 22943 0.5310 +2637 26468 0.4430 +2637 27022 0.4810 +2637 29842 0.5730 +2637 55079 0.4050 +2637 56956 0.4520 +2637 57167 0.4150 +2637 63973 0.5260 +2637 63978 0.4030 +2637 64211 0.4550 +2637 64321 0.4680 +2637 79190 0.5460 +2637 79191 0.5950 +2637 79192 0.4060 +2637 89780 0.6400 +2637 114781 0.4240 +2637 116987 0.6170 +2637 132625 0.4830 +2637 167826 0.5830 +2637 374654 0.4110 +2637 431707 0.4660 +2638 2694 0.5350 +2638 2934 0.8260 +2638 2936 0.7020 +2638 3043 0.4310 +2638 3240 0.9060 +2638 3250 0.4840 +2638 3263 0.8270 +2638 3273 0.7060 +2638 3426 0.4070 +2638 3569 0.4020 +2638 3576 0.5500 +2638 3630 0.4710 +2638 3685 0.4070 +2638 3697 0.4290 +2638 3698 0.4920 +2638 3699 0.5940 +2638 3700 0.4450 +2638 3827 0.6470 +2638 3990 0.6390 +2638 4018 0.4920 +2638 4035 0.4160 +2638 4036 0.9940 +2638 4057 0.6500 +2638 4151 0.4210 +2638 4524 0.4390 +2638 5004 0.7850 +2638 5005 0.7260 +2638 5053 0.6000 +2638 5265 0.8760 +2638 5340 0.7190 +2638 5345 0.4740 +2638 5414 0.4520 +2638 5473 0.4120 +2638 5624 0.5870 +2638 5641 0.7580 +2638 5741 0.7980 +2638 5950 0.7490 +2638 5972 0.4600 +2638 6347 0.5740 +2638 6462 0.6380 +2638 6694 0.4480 +2638 6906 0.6310 +2638 7018 0.8110 +2638 7038 0.4550 +2638 7099 0.5050 +2638 7104 0.4930 +2638 7166 0.4190 +2638 7253 0.4370 +2638 7276 0.8990 +2638 7448 0.5320 +2638 7827 0.4400 +2638 8029 0.9970 +2638 8074 0.6450 +2638 8671 0.4200 +2638 9971 0.4090 +2638 10755 0.4890 +2638 26119 0.7390 +2638 27329 0.5010 +2638 55191 0.6690 +2638 55808 0.7460 +2638 81693 0.5710 +2638 83733 0.9070 +2638 84668 0.5930 +2638 85477 0.8780 +2638 120227 0.8980 +2638 121278 0.4540 +2638 221692 0.4240 +2638 345651 0.4250 +2638 653269 0.4170 +2638 728378 0.4360 +2639 2978 0.5630 +2639 2980 0.5930 +2639 2981 0.6460 +2639 2984 0.4010 +2639 2986 0.7000 +2639 3000 0.7530 +2639 3030 0.9660 +2639 3032 0.6310 +2639 3033 0.8250 +2639 3155 0.5510 +2639 3242 0.4490 +2639 3295 0.5180 +2639 3712 0.4850 +2639 4191 0.4120 +2639 4329 0.4900 +2639 4706 0.4210 +2639 4728 0.4780 +2639 4881 0.6800 +2639 4882 0.7400 +2639 4975 0.5180 +2639 5019 0.4970 +2639 5091 0.4220 +2639 5095 0.5640 +2639 5096 0.6810 +2639 5162 0.4290 +2639 5860 0.4190 +2639 6296 0.4450 +2639 6342 0.5940 +2639 6672 0.4240 +2639 6821 0.4100 +2639 6872 0.4500 +2639 7321 0.8570 +2639 7322 0.8610 +2639 7323 0.8590 +2639 7324 0.7100 +2639 7325 0.6600 +2639 7915 0.4310 +2639 8050 0.4090 +2639 8192 0.4990 +2639 8310 0.9270 +2639 8659 0.4430 +2639 8802 0.5110 +2639 8891 0.4430 +2639 8892 0.4060 +2639 8893 0.4370 +2639 9085 0.4840 +2639 9399 0.4950 +2639 9425 0.5900 +2639 9559 0.4930 +2639 9563 0.4110 +2639 9607 0.5350 +2639 9866 0.4220 +2639 10209 0.5040 +2639 10295 0.5150 +2639 10449 0.7030 +2639 10455 0.8890 +2639 10477 0.9060 +2639 10902 0.4270 +2639 23305 0.4390 +2639 23464 0.4950 +2639 23600 0.4540 +2639 23774 0.4440 +2639 25974 0.4760 +2639 26275 0.6490 +2639 27034 0.5050 +2639 28962 0.4040 +2639 28976 0.4340 +2639 29958 0.4530 +2639 51011 0.5050 +2639 51084 0.6400 +2639 51166 0.4120 +2639 51295 0.7000 +2639 51497 0.4100 +2639 51592 0.4300 +2639 51619 0.8610 +2639 51699 0.5010 +2639 51703 0.5050 +2639 54511 0.4340 +2639 55023 0.4310 +2639 55093 0.4360 +2639 55268 0.5130 +2639 55526 0.9510 +2639 55737 0.6670 +2639 55862 0.6170 +2639 55902 0.4990 +2639 56922 0.5700 +2639 64064 0.4130 +2639 64087 0.6630 +2639 65985 0.4100 +2639 79611 0.4650 +2639 79777 0.5740 +2639 79783 0.8810 +2639 80305 0.4020 +2639 80724 0.4610 +2639 81890 0.5320 +2639 83693 0.4080 +2639 84129 0.4120 +2639 84263 0.8240 +2639 84320 0.4680 +2639 84532 0.4590 +2639 84693 0.5150 +2639 89858 0.4770 +2639 90480 0.4160 +2639 91452 0.4410 +2639 92935 0.4710 +2639 116285 0.4090 +2639 123876 0.4010 +2639 124359 0.4990 +2639 130013 0.4210 +2639 132949 0.6230 +2639 137872 0.5310 +2639 140856 0.4130 +2639 220032 0.4440 +2639 253175 0.4840 +2639 348158 0.4390 +2639 414149 0.4360 +2639 440275 0.4490 +2639 728294 0.5140 +2639 109703458 0.4130 +2641 2642 0.9990 +2641 2645 0.8260 +2641 2646 0.5340 +2641 2688 0.7300 +2641 2689 0.4430 +2641 2691 0.9420 +2641 2692 0.6310 +2641 2693 0.5880 +2641 2695 0.9820 +2641 2696 0.9990 +2641 2740 0.9990 +2641 2744 0.4740 +2641 2746 0.4310 +2641 2770 0.8080 +2641 2776 0.6290 +2641 2778 0.9390 +2641 2782 0.8980 +2641 2783 0.5130 +2641 2784 0.5380 +2641 2785 0.4990 +2641 2786 0.5040 +2641 2787 0.4990 +2641 2788 0.5010 +2641 2790 0.4990 +2641 2791 0.5010 +2641 2792 0.5010 +2641 2793 0.5170 +2641 2829 0.4220 +2641 2863 0.5340 +2641 2864 0.9580 +2641 2865 0.8340 +2641 2867 0.8530 +2641 2869 0.5380 +2641 2875 0.6490 +2641 2877 0.4090 +2641 2878 0.4160 +2641 2880 0.4530 +2641 2908 0.4180 +2641 2911 0.4070 +2641 2922 0.9590 +2641 2932 0.4830 +2641 2980 0.4070 +2641 2981 0.4250 +2641 2984 0.6660 +2641 3060 0.7400 +2641 3110 0.5960 +2641 3156 0.4900 +2641 3170 0.6000 +2641 3171 0.4700 +2641 3172 0.5080 +2641 3309 0.4030 +2641 3362 0.9060 +2641 3375 0.9610 +2641 3416 0.9770 +2641 3458 0.6640 +2641 3479 0.7200 +2641 3480 0.5900 +2641 3481 0.4750 +2641 3484 0.4440 +2641 3486 0.4320 +2641 3552 0.4180 +2641 3553 0.6060 +2641 3569 0.7260 +2641 3586 0.5190 +2641 3630 0.9980 +2641 3640 0.4280 +2641 3642 0.4100 +2641 3643 0.4260 +2641 3651 0.8100 +2641 3667 0.6610 +2641 3670 0.5940 +2641 3725 0.4330 +2641 3767 0.7830 +2641 3814 0.6080 +2641 3827 0.7840 +2641 3880 0.4960 +2641 3952 0.9760 +2641 3953 0.7330 +2641 3972 0.4130 +2641 3973 0.9160 +2641 3991 0.5900 +2641 4023 0.5800 +2641 4158 0.9240 +2641 4159 0.4070 +2641 4160 0.5830 +2641 4295 0.8300 +2641 4306 0.4090 +2641 4311 0.4400 +2641 4353 0.5110 +2641 4760 0.7970 +2641 4817 0.4220 +2641 4821 0.7440 +2641 4825 0.8330 +2641 4846 0.4800 +2641 4852 0.7870 +2641 4878 0.5270 +2641 4881 0.9200 +2641 4887 0.6750 +2641 4922 0.8810 +2641 4925 0.4480 +2641 5020 0.7700 +2641 5032 0.4240 +2641 5054 0.5030 +2641 5068 0.4900 +2641 5078 0.8160 +2641 5080 0.8940 +2641 5091 0.5790 +2641 5105 0.6300 +2641 5106 0.5940 +2641 5122 0.9090 +2641 5126 0.7600 +2641 5321 0.4160 +2641 5330 0.6470 +2641 5331 0.5140 +2641 5346 0.4060 +2641 5367 0.7140 +2641 5406 0.6130 +2641 5443 0.9220 +2641 5465 0.6800 +2641 5467 0.4590 +2641 5468 0.6870 +2641 5539 0.9760 +2641 5566 0.7010 +2641 5567 0.7010 +2641 5568 0.7010 +2641 5595 0.4650 +2641 5617 0.7260 +2641 5697 0.9560 +2641 5732 0.9060 +2641 5741 0.9310 +2641 5744 0.5630 +2641 5754 0.4580 +2641 5770 0.4250 +2641 5798 0.4850 +2641 5832 0.5100 +2641 5834 0.6130 +2641 5836 0.6190 +2641 5837 0.6080 +2641 5972 0.6600 +2641 6019 0.4460 +2641 6198 0.4400 +2641 6343 0.9810 +2641 6344 0.8480 +2641 6347 0.4860 +2641 6476 0.8860 +2641 6513 0.4510 +2641 6514 0.8760 +2641 6517 0.6970 +2641 6518 0.4150 +2641 6523 0.8540 +2641 6524 0.8830 +2641 6555 0.4560 +2641 6564 0.4110 +2641 6576 0.4120 +2641 6662 0.4760 +2641 6714 0.6570 +2641 6720 0.5990 +2641 6750 0.9860 +2641 6751 0.5210 +2641 6752 0.5990 +2641 6755 0.5550 +2641 6774 0.4400 +2641 6781 0.5970 +2641 6794 0.4250 +2641 6833 0.8220 +2641 6855 0.5880 +2641 6863 0.8240 +2641 6898 0.5550 +2641 6927 0.4760 +2641 6934 0.8880 +2641 7054 0.4450 +2641 7099 0.5040 +2641 7124 0.6190 +2641 7157 0.4190 +2641 7166 0.5120 +2641 7170 0.4950 +2641 7200 0.5420 +2641 7204 0.5020 +2641 7252 0.5820 +2641 7253 0.9180 +2641 7276 0.4450 +2641 7295 0.4470 +2641 7349 0.5490 +2641 7350 0.5840 +2641 7351 0.5060 +2641 7432 0.6880 +2641 7433 0.7690 +2641 7434 0.9600 +2641 7837 0.5340 +2641 8431 0.4280 +2641 8620 0.6230 +2641 8660 0.6270 +2641 8801 0.4390 +2641 8856 0.4340 +2641 8972 0.7900 +2641 8997 0.4990 +2641 9217 0.4350 +2641 9340 0.9970 +2641 9370 0.7670 +2641 9607 0.6010 +2641 9789 0.4360 +2641 9935 0.5720 +2641 9965 0.5350 +2641 9971 0.7350 +2641 10022 0.6010 +2641 10135 0.4780 +2641 10249 0.5730 +2641 10411 0.5110 +2641 10544 0.4200 +2641 10628 0.4220 +2641 10681 0.5130 +2641 10800 0.5410 +2641 10874 0.6080 +2641 10891 0.7580 +2641 10993 0.4340 +2641 11069 0.6040 +2641 11132 0.4620 +2641 23236 0.5210 +2641 23411 0.6810 +2641 23436 0.4010 +2641 23478 0.4360 +2641 23560 0.4370 +2641 26291 0.6680 +2641 50674 0.8850 +2641 51083 0.5290 +2641 51085 0.5710 +2641 51094 0.4910 +2641 51129 0.4040 +2641 51646 0.4400 +2641 51738 0.9790 +2641 51764 0.5050 +2641 51806 0.6350 +2641 54331 0.8960 +2641 54407 0.5080 +2641 54878 0.5620 +2641 54994 0.4330 +2641 55532 0.5080 +2641 55970 0.5080 +2641 56477 0.6300 +2641 56729 0.6230 +2641 57104 0.4470 +2641 57105 0.5180 +2641 57818 0.8390 +2641 59272 0.4710 +2641 59345 0.5130 +2641 59350 0.4340 +2641 64321 0.4500 +2641 64777 0.4200 +2641 64795 0.4610 +2641 79258 0.4230 +2641 79924 0.5270 +2641 80834 0.8500 +2641 80835 0.7490 +2641 81539 0.4470 +2641 83756 0.8630 +2641 84504 0.7280 +2641 84666 0.6680 +2641 84706 0.4360 +2641 90701 0.4360 +2641 91039 0.5350 +2641 91860 0.6360 +2641 92579 0.8080 +2641 94235 0.4990 +2641 113091 0.4630 +2641 114131 0.6280 +2641 115557 0.5080 +2641 117579 0.4590 +2641 122042 0.4360 +2641 122876 0.4160 +2641 129521 0.4680 +2641 130399 0.4320 +2641 137902 0.5340 +2641 139760 0.9800 +2641 139818 0.5110 +2641 151306 0.7720 +2641 152831 0.4310 +2641 163688 0.6350 +2641 169026 0.6180 +2641 170302 0.5250 +2641 170589 0.4230 +2641 196883 0.5820 +2641 200186 0.7570 +2641 222545 0.4740 +2641 222546 0.5660 +2641 256297 0.7340 +2641 257202 0.4050 +2641 284111 0.4650 +2641 338442 0.4810 +2641 338557 0.8850 +2641 346562 0.8460 +2641 347148 0.6250 +2641 387129 0.4160 +2641 389692 0.5380 +2641 440387 0.5010 +2641 594857 0.4870 +2641 619373 0.5230 +2641 100506658 0.4640 +2642 2645 0.4430 +2642 2691 0.6620 +2642 2692 0.4540 +2642 2695 0.7920 +2642 2696 0.6280 +2642 2740 0.6930 +2642 2770 0.9150 +2642 2774 0.4320 +2642 2776 0.9690 +2642 2778 0.9950 +2642 2782 0.9610 +2642 2783 0.7510 +2642 2784 0.6120 +2642 2785 0.5710 +2642 2786 0.5650 +2642 2787 0.5580 +2642 2788 0.5640 +2642 2790 0.5580 +2642 2791 0.5580 +2642 2792 0.5670 +2642 2793 0.5580 +2642 2863 0.4870 +2642 2864 0.5920 +2642 2869 0.5350 +2642 2908 0.4750 +2642 3375 0.6210 +2642 3630 0.7950 +2642 3725 0.4600 +2642 3952 0.6100 +2642 3965 0.4790 +2642 4790 0.4560 +2642 4929 0.4140 +2642 5028 0.5260 +2642 5032 0.4030 +2642 5126 0.5240 +2642 5330 0.5080 +2642 5331 0.4990 +2642 5345 0.4500 +2642 5539 0.5790 +2642 5566 0.4210 +2642 5567 0.4160 +2642 5568 0.4280 +2642 5741 0.5690 +2642 6275 0.4420 +2642 6295 0.4900 +2642 6343 0.7560 +2642 6344 0.4680 +2642 6514 0.4990 +2642 6714 0.5470 +2642 6750 0.5190 +2642 7040 0.4030 +2642 7124 0.4550 +2642 7170 0.4180 +2642 7204 0.4990 +2642 7349 0.4320 +2642 7432 0.7870 +2642 7433 0.4430 +2642 7434 0.6650 +2642 7755 0.4730 +2642 8997 0.4990 +2642 9340 0.4650 +2642 10266 0.4410 +2642 10267 0.4830 +2642 10681 0.6120 +2642 10800 0.5000 +2642 23236 0.4990 +2642 23385 0.4230 +2642 26151 0.4210 +2642 26291 0.5010 +2642 51107 0.4550 +2642 51764 0.5730 +2642 54331 0.9070 +2642 55089 0.4240 +2642 55970 0.5580 +2642 57105 0.5000 +2642 57818 0.4760 +2642 59345 0.6320 +2642 59350 0.4150 +2642 92579 0.4580 +2642 94235 0.5620 +2642 115557 0.4990 +2642 139760 0.4580 +2642 196883 0.5430 +2642 200186 0.4070 +2642 284194 0.4770 +2642 387129 0.4460 +2642 594857 0.4750 +2642 654346 0.4880 +2642 104909134 0.4300 +2644 5053 0.5160 +2644 5092 0.6530 +2644 5805 0.7120 +2644 5860 0.6890 +2644 6691 0.4240 +2644 6697 0.7070 +2644 56521 0.5580 +2645 2646 0.9990 +2645 2673 0.5460 +2645 2695 0.4320 +2645 2710 0.4570 +2645 2712 0.4480 +2645 2720 0.9000 +2645 2740 0.5620 +2645 2746 0.4540 +2645 2821 0.9900 +2645 2864 0.4460 +2645 2875 0.4590 +2645 2932 0.5680 +2645 2997 0.4970 +2645 2998 0.6160 +2645 3033 0.5030 +2645 3065 0.5570 +2645 3066 0.5420 +2645 3098 0.9170 +2645 3099 0.9150 +2645 3101 0.9160 +2645 3156 0.6230 +2645 3170 0.4240 +2645 3172 0.7390 +2645 3175 0.5430 +2645 3375 0.6310 +2645 3479 0.7140 +2645 3480 0.5430 +2645 3630 0.9450 +2645 3643 0.7020 +2645 3651 0.9650 +2645 3667 0.7350 +2645 3767 0.8990 +2645 3795 0.8480 +2645 3938 0.9030 +2645 3952 0.5950 +2645 3953 0.4510 +2645 4023 0.4450 +2645 4191 0.4740 +2645 4351 0.4650 +2645 4544 0.8690 +2645 4760 0.9300 +2645 4821 0.4620 +2645 4825 0.6390 +2645 4852 0.4410 +2645 5078 0.6430 +2645 5091 0.6770 +2645 5105 0.7270 +2645 5106 0.6310 +2645 5122 0.4570 +2645 5126 0.4450 +2645 5166 0.4580 +2645 5207 0.8300 +2645 5208 0.8630 +2645 5209 0.8910 +2645 5210 0.7380 +2645 5211 0.6180 +2645 5213 0.6430 +2645 5214 0.4960 +2645 5223 0.4010 +2645 5224 0.4410 +2645 5226 0.5320 +2645 5230 0.5420 +2645 5232 0.5220 +2645 5236 0.5010 +2645 5238 0.5220 +2645 5313 0.7270 +2645 5315 0.5680 +2645 5325 0.5320 +2645 5373 0.4390 +2645 5443 0.4910 +2645 5465 0.5780 +2645 5468 0.5820 +2645 5539 0.6920 +2645 5566 0.6390 +2645 5567 0.6380 +2645 5568 0.6410 +2645 5798 0.4130 +2645 5834 0.8050 +2645 5836 0.8050 +2645 5837 0.8070 +2645 5903 0.4890 +2645 6319 0.4640 +2645 6396 0.4400 +2645 6476 0.5120 +2645 6513 0.5530 +2645 6514 0.9610 +2645 6515 0.4490 +2645 6517 0.6690 +2645 6518 0.4630 +2645 6523 0.4760 +2645 6566 0.7060 +2645 6652 0.4050 +2645 6720 0.6660 +2645 6750 0.5750 +2645 6833 0.9490 +2645 6888 0.8820 +2645 6927 0.9010 +2645 6928 0.7590 +2645 6934 0.4470 +2645 7086 0.8810 +2645 7167 0.5690 +2645 7350 0.4330 +2645 7351 0.5900 +2645 7360 0.6260 +2645 7392 0.4210 +2645 7416 0.6120 +2645 8086 0.4010 +2645 8277 0.8740 +2645 8462 0.6610 +2645 8576 0.4910 +2645 8660 0.7620 +2645 8789 0.5440 +2645 8936 0.7290 +2645 8972 0.5120 +2645 9370 0.4760 +2645 9563 0.9740 +2645 9942 0.4090 +2645 9945 0.4010 +2645 9972 0.4050 +2645 10891 0.5050 +2645 11097 0.4200 +2645 11181 0.5900 +2645 22934 0.4270 +2645 23411 0.5940 +2645 25942 0.5700 +2645 26291 0.4070 +2645 50674 0.5860 +2645 51071 0.8000 +2645 51085 0.6540 +2645 51738 0.4920 +2645 53345 0.4710 +2645 54901 0.4050 +2645 55276 0.9340 +2645 55746 0.4180 +2645 57016 0.8270 +2645 57521 0.5230 +2645 57818 0.9890 +2645 79023 0.4150 +2645 79902 0.4150 +2645 80201 0.9150 +2645 80339 0.4360 +2645 83440 0.9820 +2645 84076 0.8700 +2645 84504 0.6010 +2645 92579 0.9830 +2645 114131 0.4170 +2645 130589 0.9230 +2645 132158 0.8220 +2645 133688 0.4020 +2645 169026 0.5230 +2645 169792 0.4100 +2645 222546 0.7370 +2645 256297 0.6270 +2645 389692 0.6470 +2645 414328 0.7600 +2645 102723796 0.5480 +2646 2673 0.4390 +2646 2696 0.4030 +2646 2998 0.5100 +2646 3087 0.5120 +2646 3098 0.5700 +2646 3099 0.5550 +2646 3101 0.5190 +2646 3630 0.6740 +2646 3767 0.4480 +2646 3784 0.4470 +2646 3795 0.8430 +2646 3832 0.4260 +2646 3990 0.4510 +2646 4544 0.7490 +2646 5009 0.4420 +2646 5209 0.4740 +2646 5836 0.4040 +2646 6462 0.4140 +2646 6514 0.4990 +2646 6568 0.4970 +2646 6928 0.4500 +2646 6934 0.5170 +2646 7103 0.4750 +2646 8942 0.4050 +2646 9448 0.5490 +2646 9563 0.5650 +2646 9631 0.4010 +2646 9945 0.4220 +2646 10644 0.5260 +2646 22933 0.4250 +2646 51005 0.8700 +2646 51085 0.5230 +2646 53345 0.7010 +2646 54901 0.6160 +2646 55867 0.4260 +2646 56606 0.4420 +2646 57818 0.7090 +2646 64838 0.4260 +2646 79068 0.5610 +2646 79143 0.5960 +2646 79660 0.5970 +2646 80201 0.5100 +2646 80339 0.7010 +2646 84450 0.5400 +2646 92579 0.4160 +2646 116085 0.4230 +2646 116519 0.5680 +2646 127018 0.6650 +2646 144132 0.4250 +2646 169026 0.5890 +2646 220963 0.4460 +2646 345275 0.4910 +2647 2648 0.6460 +2647 2799 0.5060 +2647 3257 0.8090 +2647 3312 0.5220 +2647 3482 0.5140 +2647 4074 0.5090 +2647 4704 0.4640 +2647 4952 0.5210 +2647 4956 0.4370 +2647 5089 0.4210 +2647 5286 0.5070 +2647 5878 0.5660 +2647 6272 0.4990 +2647 6456 0.4990 +2647 6616 0.5040 +2647 6643 0.6400 +2647 6844 0.7430 +2647 6845 0.6100 +2647 6923 0.5570 +2647 7037 0.5360 +2647 7163 0.5040 +2647 7164 0.4990 +2647 7494 0.5080 +2647 8301 0.5040 +2647 8546 0.6330 +2647 8673 0.5660 +2647 8775 0.8040 +2647 8850 0.6170 +2647 8905 0.5020 +2647 8907 0.5040 +2647 9026 0.5000 +2647 9112 0.5710 +2647 9829 0.5460 +2647 10053 0.5010 +2647 10540 0.5780 +2647 10542 0.4930 +2647 10618 0.5670 +2647 10717 0.4990 +2647 11234 0.8430 +2647 23408 0.4100 +2647 23410 0.5600 +2647 23431 0.5150 +2647 23557 0.9990 +2647 25977 0.4990 +2647 26258 0.9990 +2647 27131 0.5200 +2647 28956 0.5970 +2647 51019 0.4880 +2647 51024 0.4690 +2647 51079 0.4270 +2647 51429 0.5000 +2647 51435 0.5030 +2647 51614 0.5130 +2647 54785 0.9990 +2647 54885 0.4990 +2647 55004 0.7080 +2647 55330 0.9980 +2647 55653 0.9100 +2647 63915 0.9970 +2647 79036 0.9990 +2647 79803 0.8970 +2647 81567 0.8020 +2647 84062 0.9990 +2647 84066 0.7760 +2647 84343 0.8680 +2647 89781 0.7850 +2647 118426 0.9990 +2647 119032 0.9980 +2647 127829 0.4790 +2647 130340 0.4990 +2647 138050 0.4960 +2647 221079 0.4900 +2647 282991 0.9990 +2647 286451 0.4990 +2647 339344 0.6100 +2647 388552 0.9990 +2647 389541 0.7710 +2647 448834 0.4170 +2647 729991 0.9980 +2648 2668 0.4020 +2648 2874 0.5840 +2648 2959 0.6660 +2648 3005 0.4520 +2648 3012 0.6780 +2648 3013 0.5620 +2648 3014 0.7420 +2648 3015 0.8450 +2648 3017 0.6990 +2648 3018 0.7780 +2648 3021 0.9870 +2648 3054 0.6240 +2648 3065 0.9740 +2648 3066 0.9480 +2648 3090 0.4750 +2648 3276 0.4450 +2648 3280 0.5390 +2648 3516 0.9880 +2648 3670 0.4750 +2648 3725 0.6520 +2648 3960 0.6460 +2648 4087 0.5150 +2648 4088 0.4250 +2648 4109 0.6200 +2648 4149 0.6360 +2648 4298 0.5350 +2648 4300 0.5390 +2648 4343 0.5340 +2648 4436 0.5050 +2648 4602 0.6280 +2648 4609 0.9960 +2648 4641 0.5040 +2648 4654 0.5380 +2648 4850 0.5780 +2648 4851 0.7670 +2648 4853 0.5590 +2648 4854 0.5490 +2648 4855 0.5510 +2648 5001 0.7720 +2648 5432 0.4170 +2648 5434 0.5380 +2648 5435 0.5660 +2648 5437 0.5650 +2648 5440 0.4990 +2648 5441 0.5060 +2648 5469 0.8010 +2648 5591 0.5130 +2648 5893 0.5810 +2648 5970 0.8470 +2648 6046 0.5990 +2648 6233 0.6320 +2648 6256 0.6910 +2648 6257 0.6740 +2648 6258 0.6600 +2648 6301 0.7850 +2648 6314 0.9970 +2648 6421 0.4460 +2648 6500 0.5860 +2648 6594 0.6250 +2648 6595 0.8260 +2648 6597 0.9470 +2648 6598 0.5080 +2648 6599 0.6800 +2648 6605 0.4740 +2648 6648 0.9860 +2648 6720 0.4430 +2648 6773 0.5240 +2648 6774 0.4730 +2648 6829 0.5610 +2648 6830 0.4610 +2648 6839 0.5460 +2648 6871 0.9990 +2648 6872 0.4750 +2648 6873 0.9690 +2648 6874 0.9870 +2648 6877 0.9900 +2648 6878 0.9930 +2648 6879 0.9360 +2648 6880 0.9990 +2648 6881 0.9990 +2648 6883 0.9980 +2648 6884 0.5710 +2648 6885 0.8070 +2648 6907 0.6980 +2648 6908 0.9590 +2648 6911 0.4990 +2648 6917 0.5650 +2648 6919 0.5800 +2648 6920 0.5600 +2648 6929 0.6110 +2648 7011 0.8050 +2648 7027 0.5470 +2648 7029 0.5300 +2648 7067 0.6740 +2648 7068 0.6660 +2648 7088 0.5280 +2648 7089 0.5120 +2648 7090 0.5120 +2648 7091 0.5030 +2648 7157 0.9090 +2648 7158 0.6010 +2648 7306 0.4420 +2648 7311 0.6330 +2648 7314 0.5350 +2648 7316 0.5340 +2648 7403 0.4340 +2648 7520 0.5620 +2648 7528 0.4240 +2648 7862 0.4340 +2648 7913 0.5340 +2648 7994 0.8300 +2648 8089 0.7810 +2648 8091 0.4590 +2648 8202 0.8930 +2648 8216 0.4180 +2648 8260 0.4900 +2648 8290 0.9770 +2648 8295 0.9990 +2648 8320 0.4540 +2648 8329 0.5770 +2648 8331 0.5550 +2648 8334 0.5680 +2648 8337 0.8240 +2648 8338 0.9100 +2648 8340 0.6990 +2648 8341 0.7010 +2648 8342 0.7000 +2648 8345 0.6990 +2648 8347 0.6980 +2648 8348 0.6990 +2648 8349 0.9210 +2648 8350 0.8560 +2648 8352 0.6040 +2648 8353 0.4600 +2648 8356 0.9730 +2648 8361 0.9860 +2648 8369 0.9070 +2648 8370 0.5530 +2648 8451 0.4540 +2648 8453 0.9600 +2648 8454 0.5830 +2648 8464 0.9990 +2648 8467 0.8030 +2648 8520 0.7000 +2648 8535 0.4730 +2648 8607 0.5780 +2648 8648 0.8720 +2648 8651 0.5470 +2648 8841 0.8560 +2648 8850 0.9690 +2648 8970 0.6980 +2648 9013 0.6280 +2648 9014 0.5170 +2648 9015 0.5270 +2648 9027 0.7260 +2648 9031 0.6310 +2648 9044 0.4850 +2648 9070 0.4190 +2648 9188 0.5390 +2648 9282 0.5900 +2648 9440 0.7840 +2648 9519 0.5140 +2648 9533 0.5940 +2648 9611 0.8430 +2648 9612 0.8280 +2648 9682 0.4270 +2648 9734 0.7760 +2648 9739 0.6930 +2648 9759 0.7950 +2648 9794 0.9370 +2648 9869 0.5030 +2648 9913 0.9950 +2648 9960 0.6810 +2648 9968 0.5480 +2648 9978 0.5620 +2648 10013 0.7980 +2648 10014 0.7290 +2648 10025 0.7560 +2648 10046 0.5200 +2648 10155 0.6060 +2648 10370 0.5290 +2648 10419 0.4500 +2648 10460 0.7580 +2648 10474 0.9990 +2648 10498 0.4570 +2648 10499 0.8720 +2648 10514 0.5820 +2648 10524 0.9870 +2648 10579 0.5690 +2648 10612 0.4770 +2648 10629 0.9940 +2648 10728 0.4130 +2648 10849 0.5160 +2648 10856 0.8750 +2648 10891 0.7890 +2648 10919 0.5590 +2648 10933 0.6270 +2648 11091 0.9990 +2648 11143 0.7710 +2648 11169 0.6350 +2648 11198 0.5830 +2648 11317 0.9100 +2648 22884 0.4970 +2648 22900 0.4310 +2648 22933 0.7480 +2648 22938 0.6410 +2648 23028 0.5050 +2648 23067 0.5120 +2648 23112 0.5110 +2648 23129 0.5180 +2648 23135 0.4340 +2648 23326 0.9980 +2648 23408 0.5520 +2648 23409 0.4830 +2648 23410 0.5590 +2648 23411 0.9430 +2648 23415 0.4780 +2648 23450 0.9420 +2648 23451 0.5690 +2648 23462 0.5520 +2648 23468 0.4570 +2648 23476 0.4970 +2648 23493 0.5430 +2648 23522 0.7560 +2648 23774 0.5580 +2648 25842 0.6010 +2648 25862 0.4540 +2648 25885 0.5460 +2648 25942 0.4650 +2648 26009 0.9700 +2648 26508 0.5390 +2648 26523 0.5360 +2648 27097 0.9950 +2648 27161 0.5410 +2648 27327 0.5030 +2648 29028 0.4040 +2648 29072 0.6370 +2648 29803 0.5160 +2648 30834 0.5650 +2648 51082 0.4990 +2648 51126 0.4080 +2648 51176 0.5500 +2648 51343 0.4510 +2648 51477 0.6620 +2648 51514 0.4190 +2648 51547 0.5900 +2648 51548 0.6660 +2648 51562 0.9740 +2648 51564 0.7610 +2648 51616 0.9910 +2648 53335 0.4680 +2648 54107 0.8690 +2648 54145 0.6400 +2648 54583 0.4580 +2648 55140 0.8430 +2648 55193 0.4430 +2648 55226 0.6450 +2648 55257 0.6530 +2648 55294 0.6010 +2648 55534 0.8310 +2648 55578 0.9940 +2648 55636 0.4780 +2648 55689 0.9740 +2648 55723 0.5900 +2648 55766 0.4660 +2648 55777 0.4520 +2648 55869 0.8620 +2648 55870 0.4330 +2648 55902 0.4980 +2648 56254 0.5170 +2648 56655 0.9110 +2648 56943 0.9970 +2648 56970 0.9940 +2648 57325 0.9900 +2648 57634 0.6980 +2648 60495 0.4460 +2648 64376 0.6240 +2648 64425 0.5810 +2648 64769 0.4680 +2648 65980 0.4460 +2648 79084 0.4220 +2648 79101 0.5250 +2648 79132 0.4780 +2648 79142 0.4230 +2648 79595 0.8050 +2648 79718 0.6660 +2648 79885 0.8200 +2648 79903 0.5890 +2648 79969 0.5250 +2648 80155 0.4610 +2648 80218 0.5480 +2648 80314 0.4620 +2648 80854 0.4850 +2648 83443 0.7700 +2648 83860 0.6580 +2648 83933 0.8550 +2648 84101 0.4700 +2648 84148 0.7860 +2648 84172 0.5480 +2648 84441 0.8310 +2648 84444 0.6110 +2648 84514 0.4010 +2648 84532 0.4510 +2648 84749 0.4610 +2648 85235 0.5700 +2648 85236 0.6990 +2648 90780 0.6820 +2648 92292 0.9170 +2648 92815 0.5550 +2648 93624 0.9960 +2648 94239 0.7090 +2648 112398 0.4120 +2648 112869 0.9990 +2648 114799 0.7640 +2648 117143 0.9960 +2648 126961 0.5610 +2648 127002 0.8640 +2648 128312 0.7100 +2648 129685 0.6520 +2648 150094 0.4150 +2648 150684 0.9860 +2648 157570 0.7610 +2648 158880 0.6720 +2648 158983 0.4250 +2648 192669 0.5080 +2648 192670 0.5150 +2648 221302 0.6760 +2648 221613 0.5550 +2648 221830 0.4990 +2648 222255 0.8550 +2648 254065 0.4140 +2648 255626 0.7000 +2648 256364 0.4790 +2648 256646 0.4790 +2648 286436 0.4250 +2648 317772 0.5550 +2648 343930 0.5090 +2648 374395 0.5510 +2648 387332 0.5720 +2648 387893 0.4400 +2648 388585 0.5310 +2648 389856 0.6650 +2648 399949 0.4920 +2648 440093 0.9560 +2648 440686 0.9560 +2648 440689 0.7020 +2648 474382 0.4920 +2648 653604 0.9720 +2648 100287513 0.4500 +2648 114483833 0.4250 +2649 4157 0.4200 +2649 5324 0.5210 +2649 5325 0.4010 +2649 5460 0.5510 +2649 5469 0.5290 +2649 5917 0.4010 +2649 6657 0.4100 +2649 6997 0.8480 +2649 7322 0.7190 +2649 9611 0.7050 +2649 9612 0.6540 +2649 23545 0.8870 +2649 51720 0.5990 +2649 55237 0.6460 +2649 79594 0.9540 +2649 79727 0.4020 +2649 79923 0.5090 +2649 254251 0.4960 +2650 2683 0.5400 +2650 4245 0.4190 +2650 4247 0.4320 +2650 4249 0.6060 +2650 4584 0.4090 +2650 4585 0.5060 +2650 4586 0.5500 +2650 4588 0.5000 +2650 4589 0.5420 +2650 6401 0.5660 +2650 6403 0.4480 +2650 6404 0.5400 +2650 6480 0.6060 +2650 6482 0.9710 +2650 6483 0.9410 +2650 6484 0.7270 +2650 6487 0.5810 +2650 6693 0.4470 +2650 7903 0.4220 +2650 8534 0.4910 +2650 8693 0.9500 +2650 8702 0.4260 +2650 8704 0.4030 +2650 9245 0.9080 +2650 9334 0.9580 +2650 9435 0.4670 +2650 10071 0.4430 +2650 10164 0.5860 +2650 10317 0.4280 +2650 10331 0.5740 +2650 10402 0.5860 +2650 10610 0.5910 +2650 10678 0.5080 +2650 10690 0.4370 +2650 11226 0.9520 +2650 11227 0.9280 +2650 11282 0.4170 +2650 26290 0.9280 +2650 27090 0.5000 +2650 29071 0.9650 +2650 50614 0.9380 +2650 51146 0.5060 +2650 51301 0.9100 +2650 51696 0.4800 +2650 51809 0.9250 +2650 55568 0.9320 +2650 55624 0.6060 +2650 55808 0.9650 +2650 56667 0.5020 +2650 56913 0.9740 +2650 57452 0.9340 +2650 63917 0.9260 +2650 64083 0.4310 +2650 64409 0.9210 +2650 79695 0.9640 +2650 94025 0.4660 +2650 117248 0.9230 +2650 140453 0.4560 +2650 143662 0.4860 +2650 192134 0.9670 +2650 200958 0.5280 +2650 374378 0.9200 +2650 394263 0.4250 +2650 442117 0.9220 +2650 727897 0.5090 +2650 728819 0.9070 +2651 2683 0.9380 +2651 2700 0.4870 +2651 2703 0.5830 +2651 2995 0.8430 +2651 3299 0.6360 +2651 3982 0.5820 +2651 4245 0.5840 +2651 4247 0.6460 +2651 4248 0.5520 +2651 4249 0.6860 +2651 4810 0.7680 +2651 5309 0.4020 +2651 6480 0.4630 +2651 6482 0.4580 +2651 8419 0.5710 +2651 8473 0.4460 +2651 8702 0.9270 +2651 8703 0.9100 +2651 8708 0.4170 +2651 10331 0.9510 +2651 10402 0.9460 +2651 10447 0.4290 +2651 10678 0.9880 +2651 10690 0.9170 +2651 10742 0.5530 +2651 11282 0.6060 +2651 11320 0.6150 +2651 23266 0.6140 +2651 23424 0.4580 +2651 51095 0.7790 +2651 51108 0.4200 +2651 53947 0.4100 +2651 55624 0.5400 +2651 55760 0.4340 +2651 56913 0.5250 +2651 79443 0.4460 +2651 84283 0.4970 +2651 92565 0.4250 +2651 128866 0.4200 +2651 139231 0.5080 +2651 146664 0.6680 +2651 152687 0.4290 +2651 283953 0.5510 +2651 100131827 0.4100 +2652 2779 0.8020 +2652 2780 0.8600 +2652 2782 0.5930 +2652 2783 0.5730 +2652 2784 0.6880 +2652 2785 0.5470 +2652 2786 0.5540 +2652 2787 0.5550 +2652 2788 0.5590 +2652 2790 0.5570 +2652 2791 0.5970 +2652 2792 0.7280 +2652 2793 0.6910 +2652 2916 0.4610 +2652 4901 0.4010 +2652 4935 0.6940 +2652 5015 0.4020 +2652 5145 0.4660 +2652 5146 0.5670 +2652 5149 0.6210 +2652 5158 0.5110 +2652 5956 0.5930 +2652 5957 0.5340 +2652 5995 0.6260 +2652 6010 0.7010 +2652 6011 0.4150 +2652 6017 0.4890 +2652 6103 0.4760 +2652 6121 0.4350 +2652 6295 0.4030 +2652 6658 0.5940 +2652 8277 0.5210 +2652 9016 0.6510 +2652 9626 0.4540 +2652 10002 0.5790 +2652 10681 0.5700 +2652 10692 0.6590 +2652 23596 0.5780 +2652 51764 0.5560 +2652 54331 0.5650 +2652 54714 0.4580 +2652 55970 0.5520 +2652 59345 0.5730 +2652 60506 0.7890 +2652 84100 0.7230 +2652 90167 0.7890 +2652 94235 0.5410 +2652 221391 0.5710 +2652 338917 0.4720 +2652 388531 0.4140 +2653 2731 0.9990 +2653 2744 0.8030 +2653 2746 0.8120 +2653 2747 0.8150 +2653 2752 0.8610 +2653 2936 0.4700 +2653 2987 0.5160 +2653 3293 0.4090 +2653 3712 0.4130 +2653 4337 0.4250 +2653 4522 0.6630 +2653 4524 0.8420 +2653 4548 0.6070 +2653 4608 0.9570 +2653 4706 0.8580 +2653 4725 0.4240 +2653 4948 0.9440 +2653 4967 0.7270 +2653 5096 0.4200 +2653 5161 0.5390 +2653 5162 0.6480 +2653 5723 0.5090 +2653 5832 0.4210 +2653 5860 0.4550 +2653 6392 0.4370 +2653 6470 0.9850 +2653 6472 0.9840 +2653 6821 0.4070 +2653 7167 0.4160 +2653 7296 0.4700 +2653 7298 0.8140 +2653 8050 0.8250 +2653 8659 0.8540 +2653 8836 0.5110 +2653 9296 0.4650 +2653 9380 0.7880 +2653 10247 0.4030 +2653 10587 0.4330 +2653 10588 0.5480 +2653 10606 0.4610 +2653 10797 0.7920 +2653 10841 0.5310 +2653 11019 0.9260 +2653 23259 0.4040 +2653 23464 0.5540 +2653 23743 0.5800 +2653 25902 0.5830 +2653 26227 0.6380 +2653 27165 0.8380 +2653 29958 0.8620 +2653 29968 0.6140 +2653 51144 0.4230 +2653 51258 0.5210 +2653 51529 0.4020 +2653 51601 0.9820 +2653 51642 0.4810 +2653 55066 0.8430 +2653 55163 0.4810 +2653 55364 0.6180 +2653 55526 0.6710 +2653 55811 0.5670 +2653 56267 0.6120 +2653 57128 0.4260 +2653 83693 0.5170 +2653 84263 0.4120 +2653 84337 0.5380 +2653 114112 0.4280 +2653 123263 0.4260 +2653 123775 0.5390 +2653 152926 0.4060 +2653 200205 0.8060 +2653 200895 0.5660 +2653 387787 0.9230 +2653 388962 0.5230 +2653 440574 0.4890 +2653 441024 0.7500 +2653 727764 0.4160 +2653 128966690 0.4160 +2657 2719 0.4420 +2657 2735 0.4490 +2657 3549 0.5840 +2657 3887 0.4290 +2657 4087 0.7050 +2657 4088 0.6560 +2657 4089 0.6590 +2657 4838 0.9250 +2657 5308 0.5620 +2657 5727 0.5520 +2657 6469 0.5120 +2657 6608 0.4430 +2657 6609 0.5960 +2657 6610 0.5720 +2657 6899 0.6340 +2657 6997 0.9320 +2657 7044 0.8060 +2657 7357 0.6090 +2657 7547 0.4710 +2657 8560 0.6720 +2657 8646 0.4450 +2657 8877 0.5810 +2657 8928 0.4990 +2657 9350 0.5770 +2657 9517 0.7200 +2657 10087 0.5430 +2657 10558 0.7200 +2657 10637 0.7630 +2657 10643 0.4100 +2657 23389 0.7390 +2657 23414 0.5330 +2657 29956 0.9380 +2657 55304 0.7200 +2657 55331 0.5060 +2657 55512 0.4470 +2657 55627 0.4250 +2657 55997 0.9290 +2657 56624 0.5830 +2657 56848 0.5730 +2657 64399 0.4980 +2657 64781 0.6200 +2657 78987 0.4220 +2657 79603 0.8930 +2657 83723 0.6580 +2657 91012 0.8080 +2657 123099 0.5690 +2657 125981 0.5290 +2657 130399 0.9880 +2657 137814 0.6920 +2657 166929 0.4720 +2657 199699 0.7030 +2657 204219 0.7990 +2657 253782 0.8830 +2657 259230 0.4800 +2657 339983 0.4870 +2657 340485 0.5070 +2657 374654 0.4080 +2657 100271849 0.4230 +2658 3283 0.4220 +2658 3397 0.5860 +2658 3777 0.5740 +2658 3791 0.4040 +2658 4087 0.6150 +2658 4088 0.4880 +2658 4089 0.7940 +2658 4090 0.7570 +2658 4091 0.5880 +2658 4092 0.4910 +2658 4093 0.8130 +2658 5047 0.7870 +2658 5074 0.5730 +2658 5629 0.4670 +2658 5949 0.4700 +2658 6572 0.6750 +2658 6696 0.5140 +2658 7040 0.5760 +2658 7043 0.4890 +2658 7046 0.9060 +2658 7048 0.5250 +2658 8200 0.5570 +2658 8646 0.5650 +2658 8823 0.4070 +2658 9241 0.7110 +2658 9423 0.4300 +2658 9496 0.5680 +2658 9577 0.4590 +2658 10468 0.7480 +2658 23462 0.4520 +2658 26585 0.5560 +2658 27302 0.8570 +2658 54361 0.4830 +2658 54567 0.4130 +2658 55273 0.4300 +2658 56033 0.4010 +2658 57817 0.4050 +2658 63976 0.4620 +2658 79572 0.6920 +2658 89780 0.4160 +2658 121340 0.5090 +2658 130399 0.7770 +2658 144125 0.5920 +2658 148738 0.4300 +2658 165530 0.4340 +2658 168667 0.5460 +2658 440275 0.5480 +2660 2932 0.4300 +2660 3339 0.8490 +2660 3479 0.7780 +2660 3480 0.7110 +2660 3481 0.5420 +2660 3487 0.4400 +2660 3488 0.4020 +2660 3553 0.4400 +2660 3569 0.6020 +2660 3600 0.4830 +2660 3624 0.4990 +2660 3630 0.6460 +2660 3667 0.4480 +2660 3679 0.4180 +2660 3952 0.7230 +2660 4053 0.8550 +2660 4054 0.8600 +2660 4087 0.9150 +2660 4088 0.8630 +2660 4089 0.7850 +2660 4090 0.4470 +2660 4091 0.4140 +2660 4092 0.5080 +2660 4093 0.4100 +2660 4151 0.4040 +2660 4160 0.4090 +2660 4205 0.4190 +2660 4208 0.5900 +2660 4293 0.4090 +2660 4313 0.4850 +2660 4617 0.8770 +2660 4618 0.7450 +2660 4619 0.5220 +2660 4620 0.5300 +2660 4621 0.6350 +2660 4622 0.5340 +2660 4624 0.5980 +2660 4625 0.4300 +2660 4626 0.5750 +2660 4632 0.5110 +2660 4634 0.4340 +2660 4654 0.8410 +2660 4656 0.8380 +2660 4842 0.4570 +2660 5045 0.7030 +2660 5047 0.5070 +2660 5077 0.5250 +2660 5081 0.7160 +2660 5166 0.4300 +2660 5468 0.4640 +2660 6194 0.4140 +2660 6198 0.5860 +2660 6442 0.4180 +2660 6444 0.4180 +2660 6517 0.4550 +2660 6606 0.5530 +2660 6714 0.4730 +2660 7040 0.6560 +2660 7046 0.9990 +2660 7048 0.8470 +2660 7092 0.4500 +2660 7093 0.5150 +2660 7124 0.5260 +2660 7136 0.4230 +2660 7148 0.4550 +2660 7170 0.4520 +2660 7273 0.4140 +2660 7350 0.4760 +2660 7352 0.4030 +2660 7402 0.5570 +2660 7424 0.4300 +2660 8200 0.4730 +2660 8202 0.4370 +2660 8291 0.4030 +2660 8425 0.5610 +2660 8557 0.6150 +2660 8646 0.4580 +2660 9370 0.5080 +2660 10220 0.4800 +2660 10272 0.9990 +2660 10468 0.9990 +2660 10891 0.6470 +2660 11167 0.4490 +2660 26291 0.5840 +2660 27302 0.5260 +2660 50964 0.4810 +2660 51738 0.5130 +2660 54432 0.6660 +2660 57159 0.4050 +2660 58524 0.4140 +2660 64102 0.6470 +2660 79006 0.4520 +2660 84676 0.7730 +2660 114907 0.8740 +2660 117166 0.7960 +2660 124857 0.9240 +2660 130399 0.7340 +2660 220202 0.4360 +2660 252995 0.7800 +2660 254251 0.4590 +2660 284207 0.4390 +2660 642658 0.5880 +2660 100423062 0.9000 +2661 2697 0.4150 +2661 2701 0.5370 +2661 2796 0.4410 +2661 3037 0.5980 +2661 3283 0.5030 +2661 3479 0.7760 +2661 3480 0.5190 +2661 3615 0.4070 +2661 3623 0.6070 +2661 3815 0.4320 +2661 3973 0.7900 +2661 4087 0.5300 +2661 4088 0.6280 +2661 4089 0.4210 +2661 4090 0.4140 +2661 4254 0.7500 +2661 4342 0.5230 +2661 5047 0.4470 +2661 5460 0.6970 +2661 5617 0.4630 +2661 5806 0.4300 +2661 5987 0.4260 +2661 5988 0.6380 +2661 6770 0.5910 +2661 6847 0.4710 +2661 7040 0.6870 +2661 7046 0.8300 +2661 7130 0.5060 +2661 7783 0.8050 +2661 7784 0.7940 +2661 8817 0.4050 +2661 9210 0.9750 +2661 9985 0.4180 +2661 10468 0.8200 +2661 10734 0.5300 +2661 22917 0.8180 +2661 23105 0.4560 +2661 50511 0.5630 +2661 51087 0.4770 +2661 51319 0.4130 +2661 54361 0.4250 +2661 54514 0.6070 +2661 54766 0.4660 +2661 54937 0.5650 +2661 57829 0.8060 +2661 64388 0.8100 +2661 66037 0.4920 +2661 83659 0.4450 +2661 117166 0.4350 +2661 126206 0.7790 +2661 130399 0.6450 +2661 132243 0.6050 +2661 135935 0.9310 +2661 164045 0.4040 +2661 220202 0.5920 +2661 255649 0.5400 +2661 284654 0.5010 +2661 326340 0.9650 +2661 342931 0.8840 +2661 342977 0.4930 +2661 344018 0.8290 +2661 346673 0.5450 +2661 359787 0.5060 +2661 402381 0.6340 +2661 431707 0.6330 +2661 441161 0.4240 +2661 494551 0.4160 +2661 100526761 0.5420 +2662 2719 0.4550 +2662 4087 0.6250 +2662 4147 0.4370 +2662 8646 0.4660 +2662 9423 0.5070 +2662 54361 0.4850 +2662 143162 0.4430 +2664 2665 0.9240 +2664 2742 0.5930 +2664 2747 0.6750 +2664 2771 0.4160 +2664 2824 0.6910 +2664 2925 0.5520 +2664 3052 0.5450 +2664 3054 0.4380 +2664 3267 0.8580 +2664 3312 0.4110 +2664 4204 0.7810 +2664 4218 0.9820 +2664 4905 0.6550 +2664 4983 0.5440 +2664 5226 0.4610 +2664 5861 0.9960 +2664 5862 0.6280 +2664 5864 0.9420 +2664 5865 0.4460 +2664 5866 0.5090 +2664 5867 0.8280 +2664 5868 0.9270 +2664 5869 0.9040 +2664 5870 0.9550 +2664 5872 0.9160 +2664 5873 0.6040 +2664 5874 0.5800 +2664 5875 0.4040 +2664 5876 0.6090 +2664 5877 0.4960 +2664 5878 0.9290 +2664 6305 0.4560 +2664 6399 0.5230 +2664 6535 0.4620 +2664 6764 0.4140 +2664 6792 0.5930 +2664 6812 0.4130 +2664 6814 0.4270 +2664 6853 0.4710 +2664 7102 0.4590 +2664 7109 0.4640 +2664 7531 0.6470 +2664 7879 0.9190 +2664 8517 0.4510 +2664 8567 0.4560 +2664 8615 0.4320 +2664 8766 0.8740 +2664 8775 0.4910 +2664 9230 0.9320 +2664 9363 0.5690 +2664 9367 0.9270 +2664 9459 0.4220 +2664 9609 0.4130 +2664 9827 0.4050 +2664 9909 0.4520 +2664 10095 0.4200 +2664 10552 0.4410 +2664 10567 0.4880 +2664 10890 0.9640 +2664 10981 0.6540 +2664 11021 0.8370 +2664 11031 0.9050 +2664 11141 0.4750 +2664 11158 0.5110 +2664 11159 0.5180 +2664 11259 0.4480 +2664 22854 0.6390 +2664 22878 0.4450 +2664 22879 0.5100 +2664 22898 0.5040 +2664 22930 0.5900 +2664 22931 0.8290 +2664 23011 0.7680 +2664 23258 0.4350 +2664 23339 0.4090 +2664 23560 0.5580 +2664 23682 0.5900 +2664 25782 0.5610 +2664 26130 0.4820 +2664 27095 0.5610 +2664 27147 0.4140 +2664 51112 0.4610 +2664 51209 0.7820 +2664 51399 0.5480 +2664 51552 0.8750 +2664 51560 0.8550 +2664 51622 0.6270 +2664 51693 0.4120 +2664 51762 0.9130 +2664 53916 0.7010 +2664 53917 0.7630 +2664 54734 0.5890 +2664 55667 0.4620 +2664 55684 0.4480 +2664 57111 0.5390 +2664 57403 0.8610 +2664 57589 0.5100 +2664 57679 0.4410 +2664 57706 0.5190 +2664 58485 0.5440 +2664 60684 0.4560 +2664 64284 0.4520 +2664 64762 0.5060 +2664 79090 0.5310 +2664 79890 0.4350 +2664 79958 0.4260 +2664 79961 0.4140 +2664 80331 0.4460 +2664 81876 0.9820 +2664 83452 0.5580 +2664 83871 0.6150 +2664 84079 0.5140 +2664 84084 0.6650 +2664 84315 0.5550 +2664 84628 0.6540 +2664 84932 0.6130 +2664 84952 0.4480 +2664 89781 0.4190 +2664 116442 0.9520 +2664 117177 0.6550 +2664 120892 0.4120 +2664 122553 0.5010 +2664 126003 0.4850 +2664 150946 0.5060 +2664 158158 0.5480 +2664 163259 0.4140 +2664 163486 0.5150 +2664 201627 0.4110 +2664 221895 0.4540 +2664 221960 0.6230 +2664 259173 0.4060 +2664 282808 0.4560 +2664 338382 0.7550 +2664 339122 0.5550 +2664 347517 0.5170 +2664 376267 0.5210 +2664 401409 0.4480 +2664 414918 0.4180 +2665 2746 0.4150 +2665 3267 0.9010 +2665 3312 0.4940 +2665 3326 0.4080 +2665 4218 0.9660 +2665 4771 0.4890 +2665 4905 0.6300 +2665 5518 0.4750 +2665 5861 0.9970 +2665 5862 0.7070 +2665 5864 0.9240 +2665 5866 0.4930 +2665 5867 0.8280 +2665 5868 0.9610 +2665 5869 0.7610 +2665 5870 0.9270 +2665 5872 0.8180 +2665 5873 0.6260 +2665 5874 0.6200 +2665 5875 0.4430 +2665 5876 0.6150 +2665 5877 0.4640 +2665 5878 0.9400 +2665 5880 0.5910 +2665 6305 0.4130 +2665 6311 0.4880 +2665 6399 0.4220 +2665 6764 0.4140 +2665 6814 0.4300 +2665 6950 0.4360 +2665 7109 0.4130 +2665 7415 0.4480 +2665 7529 0.4770 +2665 7531 0.7160 +2665 7532 0.6300 +2665 7879 0.9180 +2665 8567 0.4380 +2665 8615 0.6610 +2665 8766 0.8930 +2665 9217 0.4270 +2665 9230 0.9010 +2665 9363 0.5860 +2665 9367 0.9150 +2665 9609 0.4650 +2665 9610 0.4480 +2665 9909 0.4240 +2665 10015 0.4010 +2665 10095 0.4040 +2665 10096 0.5110 +2665 10211 0.4250 +2665 10260 0.4050 +2665 10490 0.4510 +2665 10552 0.4390 +2665 10567 0.4880 +2665 10694 0.4550 +2665 10890 0.9580 +2665 10981 0.6520 +2665 10989 0.4120 +2665 11021 0.7370 +2665 11031 0.9080 +2665 11158 0.5090 +2665 11159 0.5120 +2665 11259 0.4480 +2665 11273 0.4110 +2665 22878 0.4360 +2665 22879 0.6090 +2665 22898 0.5000 +2665 22930 0.4800 +2665 22931 0.6800 +2665 23011 0.7210 +2665 23256 0.5670 +2665 23258 0.4100 +2665 23560 0.4480 +2665 23682 0.5760 +2665 25782 0.5890 +2665 26130 0.5180 +2665 26276 0.5540 +2665 27095 0.4670 +2665 27147 0.4140 +2665 30968 0.5360 +2665 51031 0.4240 +2665 51112 0.4050 +2665 51209 0.7560 +2665 51324 0.4720 +2665 51399 0.4720 +2665 51552 0.7950 +2665 51560 0.8740 +2665 51622 0.6260 +2665 51693 0.4080 +2665 51762 0.9160 +2665 53917 0.7650 +2665 54453 0.4340 +2665 54734 0.5950 +2665 55667 0.4050 +2665 55684 0.4870 +2665 57111 0.5340 +2665 57403 0.5770 +2665 57589 0.5200 +2665 57679 0.4980 +2665 57706 0.5150 +2665 58485 0.4900 +2665 60684 0.4610 +2665 64284 0.4250 +2665 64762 0.5060 +2665 79090 0.4310 +2665 79958 0.4250 +2665 79961 0.4150 +2665 80006 0.4050 +2665 80007 0.5530 +2665 81876 0.9850 +2665 83452 0.4910 +2665 83871 0.4600 +2665 84079 0.5290 +2665 84084 0.5190 +2665 84315 0.6070 +2665 84932 0.4770 +2665 84952 0.4490 +2665 89781 0.4190 +2665 116442 0.6850 +2665 117177 0.6340 +2665 122553 0.4410 +2665 126003 0.4240 +2665 126432 0.4180 +2665 150786 0.7140 +2665 150946 0.5060 +2665 163259 0.4140 +2665 163486 0.5150 +2665 201627 0.4140 +2665 221895 0.4580 +2665 221960 0.6190 +2665 259173 0.4060 +2665 338382 0.7750 +2665 339122 0.5230 +2665 347517 0.5170 +2665 376267 0.5080 +2665 401409 0.4480 +2665 414918 0.4050 +2668 2670 0.6650 +2668 2674 0.9990 +2668 2675 0.9990 +2668 2676 0.9970 +2668 2885 0.5300 +2668 2886 0.5110 +2668 2887 0.5260 +2668 2932 0.4180 +2668 3064 0.4180 +2668 3082 0.5710 +2668 3084 0.5350 +2668 3170 0.4420 +2668 3265 0.4850 +2668 3339 0.5620 +2668 3458 0.4370 +2668 3479 0.7750 +2668 3553 0.5820 +2668 3569 0.5890 +2668 3586 0.5200 +2668 3606 0.5070 +2668 3630 0.5960 +2668 3670 0.4800 +2668 3725 0.9750 +2668 3727 0.4810 +2668 3746 0.4130 +2668 3750 0.4480 +2668 3751 0.4270 +2668 3791 0.6160 +2668 3815 0.4880 +2668 3845 0.4830 +2668 3975 0.4870 +2668 3976 0.6020 +2668 4009 0.5070 +2668 4129 0.5060 +2668 4133 0.5710 +2668 4155 0.4940 +2668 4254 0.5390 +2668 4316 0.4030 +2668 4323 0.4100 +2668 4684 0.9360 +2668 4747 0.5380 +2668 4763 0.4290 +2668 4803 0.9260 +2668 4804 0.8260 +2668 4842 0.5410 +2668 4854 0.4400 +2668 4893 0.4410 +2668 4902 0.8250 +2668 4908 0.9370 +2668 4909 0.8970 +2668 4914 0.9910 +2668 4915 0.9940 +2668 4922 0.6460 +2668 4929 0.5830 +2668 5020 0.4780 +2668 5023 0.4420 +2668 5024 0.4780 +2668 5076 0.6020 +2668 5080 0.5190 +2668 5290 0.5370 +2668 5291 0.5210 +2668 5293 0.5050 +2668 5295 0.5320 +2668 5296 0.5190 +2668 5309 0.5410 +2668 5335 0.5640 +2668 5460 0.5430 +2668 5566 0.6080 +2668 5567 0.6050 +2668 5568 0.6050 +2668 5578 0.5820 +2668 5595 0.4750 +2668 5598 0.5930 +2668 5623 0.8410 +2668 5663 0.4170 +2668 5764 0.6660 +2668 5781 0.5800 +2668 5816 0.4320 +2668 5909 0.5140 +2668 5979 0.9990 +2668 6092 0.7130 +2668 6272 0.5360 +2668 6275 0.4550 +2668 6285 0.5810 +2668 6299 0.4590 +2668 6347 0.4470 +2668 6363 0.4730 +2668 6387 0.5060 +2668 6390 0.4400 +2668 6392 0.4290 +2668 6464 0.5650 +2668 6469 0.7160 +2668 6495 0.4230 +2668 6506 0.4800 +2668 6507 0.4780 +2668 6531 0.6020 +2668 6571 0.5050 +2668 6586 0.6270 +2668 6608 0.4640 +2668 6622 0.6120 +2668 6647 0.5410 +2668 6653 0.5400 +2668 6654 0.4510 +2668 6656 0.4340 +2668 6657 0.7190 +2668 6658 0.5220 +2668 6663 0.8020 +2668 6714 0.6850 +2668 6853 0.5310 +2668 6854 0.4030 +2668 6855 0.5310 +2668 6863 0.5400 +2668 7010 0.4520 +2668 7040 0.6630 +2668 7043 0.6000 +2668 7054 0.8470 +2668 7070 0.5110 +2668 7088 0.4530 +2668 7124 0.5290 +2668 7345 0.4780 +2668 7442 0.6840 +2668 7447 0.4320 +2668 7474 0.4100 +2668 7481 0.6380 +2668 7484 0.4640 +2668 7490 0.4470 +2668 7704 0.5430 +2668 7837 0.4460 +2668 7852 0.4180 +2668 8031 0.4480 +2668 8074 0.4230 +2668 8224 0.4260 +2668 8503 0.5110 +2668 8660 0.4380 +2668 8817 0.6040 +2668 8822 0.6020 +2668 8823 0.7450 +2668 8850 0.4140 +2668 8929 0.7490 +2668 8989 0.4220 +2668 9046 0.4990 +2668 9048 0.8350 +2668 9241 0.5990 +2668 9260 0.5010 +2668 9314 0.4340 +2668 9353 0.6140 +2668 9423 0.5660 +2668 9518 0.5700 +2668 9672 0.8920 +2668 9846 0.5110 +2668 10048 0.4410 +2668 10215 0.4790 +2668 10252 0.5360 +2668 10296 0.6110 +2668 10371 0.6060 +2668 10381 0.4370 +2668 10413 0.5060 +2668 10736 0.5930 +2668 10763 0.6450 +2668 10818 0.6960 +2668 11016 0.5980 +2668 11315 0.4180 +2668 23413 0.4260 +2668 25852 0.6650 +2668 26153 0.6010 +2668 26281 0.6130 +2668 27006 0.6090 +2668 27255 0.4490 +2668 51646 0.4120 +2668 53358 0.4610 +2668 54361 0.4270 +2668 55654 0.4520 +2668 55715 0.5740 +2668 55816 0.7090 +2668 57030 0.4310 +2668 57085 0.5390 +2668 57610 0.5940 +2668 63973 0.5510 +2668 64096 0.9860 +2668 64795 0.5640 +2668 79018 0.6210 +2668 79923 0.4760 +2668 85358 0.5470 +2668 137902 0.4460 +2668 146713 0.5950 +2668 151887 0.4420 +2668 192683 0.4370 +2668 203228 0.4170 +2668 220164 0.7690 +2668 255877 0.5420 +2668 285148 0.4200 +2668 339345 0.5900 +2668 342977 0.4580 +2668 346673 0.4930 +2668 375790 0.6350 +2668 389400 0.9200 +2668 441549 0.8550 +2669 3778 0.4480 +2669 3802 0.5620 +2669 6453 0.5350 +2669 7529 0.4160 +2669 8925 0.4350 +2669 9915 0.5270 +2669 50618 0.5410 +2669 51806 0.5080 +2669 91860 0.5200 +2669 163688 0.5090 +2669 266743 0.5780 +2670 2697 0.5950 +2670 2735 0.4140 +2670 2752 0.7300 +2670 2778 0.4280 +2670 2824 0.5410 +2670 2852 0.4730 +2670 2890 0.5850 +2670 2891 0.6780 +2670 2902 0.6930 +2670 2903 0.5270 +2670 2904 0.5790 +2670 2913 0.4100 +2670 2915 0.5100 +2670 2932 0.4560 +2670 2962 0.4320 +2670 3021 0.5160 +2670 3043 0.5780 +2670 3064 0.6380 +2670 3066 0.5280 +2670 3083 0.6790 +2670 3084 0.4220 +2670 3094 0.4890 +2670 3146 0.5690 +2670 3162 0.4510 +2670 3251 0.4100 +2670 3308 0.4140 +2670 3309 0.4180 +2670 3312 0.8040 +2670 3315 0.6690 +2670 3316 0.6670 +2670 3320 0.7900 +2670 3326 0.8120 +2670 3383 0.4930 +2670 3416 0.4450 +2670 3417 0.5710 +2670 3458 0.5660 +2670 3479 0.6110 +2670 3552 0.6080 +2670 3553 0.8200 +2670 3565 0.4230 +2670 3569 0.7820 +2670 3570 0.4410 +2670 3586 0.5890 +2670 3627 0.4690 +2670 3630 0.5780 +2670 3655 0.4940 +2670 3670 0.4350 +2670 3684 0.7150 +2670 3688 0.4130 +2670 3725 0.4590 +2670 3736 0.4330 +2670 3766 0.6380 +2670 3791 0.4200 +2670 3815 0.4340 +2670 3860 0.4220 +2670 3897 0.4450 +2670 3916 0.5170 +2670 3920 0.6930 +2670 3925 0.5200 +2670 3934 0.4600 +2670 3958 0.4990 +2670 3976 0.4970 +2670 4015 0.4370 +2670 4099 0.6820 +2670 4129 0.4840 +2670 4131 0.6150 +2670 4133 0.8420 +2670 4137 0.7430 +2670 4155 0.8760 +2670 4204 0.4710 +2670 4255 0.4460 +2670 4267 0.5230 +2670 4318 0.4960 +2670 4336 0.6130 +2670 4340 0.7220 +2670 4353 0.4150 +2670 4360 0.4390 +2670 4440 0.5760 +2670 4504 0.5270 +2670 4609 0.5030 +2670 4613 0.4330 +2670 4650 0.4260 +2670 4684 0.6960 +2670 4695 0.4200 +2670 4697 0.4240 +2670 4705 0.4180 +2670 4741 0.7060 +2670 4747 0.7260 +2670 4760 0.6840 +2670 4761 0.4780 +2670 4762 0.4810 +2670 4763 0.4700 +2670 4774 0.4740 +2670 4790 0.4270 +2670 4803 0.6530 +2670 4804 0.5440 +2670 4821 0.5460 +2670 4842 0.4470 +2670 4851 0.4700 +2670 4852 0.5470 +2670 4908 0.5490 +2670 4914 0.4780 +2670 4915 0.6690 +2670 4929 0.4010 +2670 4974 0.5230 +2670 4976 0.4230 +2670 4978 0.5050 +2670 5010 0.4840 +2670 5015 0.4900 +2670 5076 0.4400 +2670 5080 0.7740 +2670 5116 0.5590 +2670 5122 0.5000 +2670 5156 0.7270 +2670 5159 0.5610 +2670 5175 0.6840 +2670 5252 0.4900 +2670 5339 0.8490 +2670 5354 0.7370 +2670 5375 0.4410 +2670 5443 0.4350 +2670 5454 0.4790 +2670 5457 0.5390 +2670 5460 0.6380 +2670 5468 0.4040 +2670 5549 0.4120 +2670 5578 0.4740 +2670 5582 0.5600 +2670 5595 0.5220 +2670 5621 0.4920 +2670 5649 0.4910 +2670 5663 0.7010 +2670 5664 0.4900 +2670 5728 0.5020 +2670 5743 0.4530 +2670 5771 0.4120 +2670 5788 0.6190 +2670 5803 0.6350 +2670 5816 0.7710 +2670 5957 0.4620 +2670 6010 0.5920 +2670 6017 0.5380 +2670 6035 0.5600 +2670 6121 0.4480 +2670 6233 0.5430 +2670 6285 0.9250 +2670 6347 0.5840 +2670 6348 0.4020 +2670 6364 0.4270 +2670 6376 0.5210 +2670 6387 0.4940 +2670 6404 0.4050 +2670 6469 0.6090 +2670 6506 0.8850 +2670 6507 0.7870 +2670 6529 0.5660 +2670 6531 0.4700 +2670 6538 0.4240 +2670 6598 0.4890 +2670 6616 0.7620 +2670 6620 0.4290 +2670 6622 0.6730 +2670 6623 0.4010 +2670 6647 0.7180 +2670 6656 0.6500 +2670 6657 0.8050 +2670 6662 0.5800 +2670 6663 0.7330 +2670 6736 0.4290 +2670 6750 0.6010 +2670 6772 0.4270 +2670 6774 0.5900 +2670 6844 0.4310 +2670 6853 0.7410 +2670 6854 0.6530 +2670 6855 0.8600 +2670 6856 0.4440 +2670 6857 0.5440 +2670 6863 0.4560 +2670 6900 0.4830 +2670 7040 0.5030 +2670 7054 0.7860 +2670 7070 0.6190 +2670 7082 0.5700 +2670 7094 0.4570 +2670 7097 0.4040 +2670 7099 0.6320 +2670 7101 0.6350 +2670 7122 0.6330 +2670 7124 0.7050 +2670 7157 0.6380 +2670 7311 0.5000 +2670 7314 0.7330 +2670 7316 0.6120 +2670 7337 0.4780 +2670 7341 0.4700 +2670 7345 0.5900 +2670 7412 0.4160 +2670 7414 0.4040 +2670 7431 0.8550 +2670 7442 0.4100 +2670 7450 0.5870 +2670 7534 0.5020 +2670 7545 0.4410 +2670 7837 0.8080 +2670 7852 0.5060 +2670 8100 0.5700 +2670 8139 0.5810 +2670 8224 0.5750 +2670 8290 0.4870 +2670 8320 0.5900 +2670 8356 0.5130 +2670 8404 0.4590 +2670 8506 0.4310 +2670 8537 0.4050 +2670 8572 0.4090 +2670 8678 0.4440 +2670 8817 0.4840 +2670 8822 0.5120 +2670 8823 0.4680 +2670 8842 0.6520 +2670 8890 0.5040 +2670 8891 0.4360 +2670 8892 0.4510 +2670 8893 0.5300 +2670 8988 0.6200 +2670 9095 0.4520 +2670 9118 0.7640 +2670 9124 0.6510 +2670 9211 0.5470 +2670 9212 0.4230 +2670 9241 0.4920 +2670 9314 0.4450 +2670 9332 0.4560 +2670 9362 0.5180 +2670 9378 0.4140 +2670 9456 0.5380 +2670 9472 0.4960 +2670 9611 0.5580 +2670 9729 0.4270 +2670 9853 0.4680 +2670 9900 0.5130 +2670 9991 0.4170 +2670 10013 0.5890 +2670 10101 0.4410 +2670 10190 0.4470 +2670 10195 0.4290 +2670 10215 0.9190 +2670 10226 0.5240 +2670 10381 0.6950 +2670 10716 0.7560 +2670 10763 0.8860 +2670 10804 0.5620 +2670 10815 0.5300 +2670 10840 0.7670 +2670 11030 0.4250 +2670 11075 0.6500 +2670 11170 0.4130 +2670 11315 0.6450 +2670 23118 0.5140 +2670 23314 0.5640 +2670 23336 0.6640 +2670 23435 0.6160 +2670 23620 0.4020 +2670 23621 0.5660 +2670 23650 0.4280 +2670 25900 0.4280 +2670 26007 0.4100 +2670 26150 0.4010 +2670 26281 0.4910 +2670 26586 0.4620 +2670 27000 0.4220 +2670 27006 0.4830 +2670 27035 0.4420 +2670 29109 0.4390 +2670 29944 0.4130 +2670 50515 0.4100 +2670 53822 0.5880 +2670 54209 0.6000 +2670 55188 0.4440 +2670 56479 0.4490 +2670 57030 0.8170 +2670 57084 0.6330 +2670 57142 0.4090 +2670 57165 0.4080 +2670 57447 0.4130 +2670 57468 0.4840 +2670 57471 0.5240 +2670 63827 0.5490 +2670 63973 0.5250 +2670 63974 0.5160 +2670 64127 0.4320 +2670 64805 0.5220 +2670 64919 0.5790 +2670 79012 0.4320 +2670 79759 0.4690 +2670 79923 0.5980 +2670 80012 0.4320 +2670 80206 0.4950 +2670 80310 0.4010 +2670 80852 0.4870 +2670 81493 0.6270 +2670 81631 0.4350 +2670 83660 0.4690 +2670 84152 0.5320 +2670 84504 0.4770 +2670 84894 0.4980 +2670 93377 0.5580 +2670 114548 0.4840 +2670 116448 0.7700 +2670 124540 0.4270 +2670 131034 0.4230 +2670 132204 0.5520 +2670 137902 0.8090 +2670 140679 0.6430 +2670 146713 0.9310 +2670 200894 0.6240 +2670 338773 0.5930 +2670 338917 0.4800 +2670 388585 0.5800 +2670 402665 0.4920 +2670 440093 0.4870 +2670 440686 0.4890 +2670 653604 0.5050 +2670 728378 0.4360 +2670 100506658 0.5040 +2671 2739 0.4140 +2671 2841 0.5900 +2671 2854 0.6750 +2671 2873 0.4220 +2671 4609 0.5570 +2671 4682 0.4300 +2671 4713 0.4230 +2671 4771 0.6800 +2671 5018 0.5130 +2671 5460 0.7470 +2671 5768 0.8690 +2671 5919 0.5900 +2671 6150 0.4650 +2671 6341 0.4100 +2671 6657 0.6490 +2671 6788 0.4160 +2671 6789 0.4800 +2671 6801 0.5010 +2671 7003 0.5070 +2671 7295 0.6930 +2671 7528 0.5790 +2671 8225 0.4480 +2671 8428 0.5940 +2671 9054 0.4600 +2671 9113 0.6960 +2671 9131 0.4740 +2671 9143 0.4040 +2671 9314 0.4350 +2671 9344 0.4940 +2671 9380 0.4800 +2671 9407 0.5110 +2671 9686 0.4040 +2671 9868 0.4830 +2671 9949 0.4220 +2671 9973 0.4450 +2671 10063 0.8440 +2671 10413 0.5940 +2671 10440 0.5990 +2671 10452 0.6050 +2671 10469 0.5720 +2671 10664 0.6050 +2671 10987 0.7420 +2671 10989 0.4340 +2671 11060 0.4270 +2671 23203 0.4250 +2671 23286 0.7470 +2671 23479 0.4720 +2671 23513 0.4090 +2671 25813 0.5660 +2671 25937 0.5060 +2671 26118 0.4110 +2671 26515 0.4890 +2671 26517 0.8520 +2671 26519 0.8150 +2671 26520 0.7490 +2671 26521 0.6110 +2671 26524 0.5710 +2671 27158 0.4490 +2671 27247 0.4490 +2671 29090 0.5390 +2671 29113 0.4070 +2671 30001 0.4220 +2671 51025 0.4150 +2671 51078 0.4690 +2671 51116 0.4710 +2671 51142 0.6220 +2671 51287 0.6360 +2671 51300 0.4140 +2671 51645 0.4230 +2671 53827 0.4240 +2671 54205 0.7810 +2671 54858 0.4250 +2671 54927 0.5870 +2671 54985 0.4170 +2671 55233 0.7650 +2671 56942 0.4960 +2671 56993 0.4580 +2671 57019 0.5930 +2671 57128 0.4590 +2671 57551 0.4790 +2671 60485 0.9900 +2671 63978 0.5060 +2671 64428 0.4060 +2671 79145 0.6020 +2671 79727 0.4690 +2671 79923 0.7330 +2671 80273 0.4550 +2671 84269 0.5420 +2671 84971 0.4560 +2671 85395 0.5480 +2671 90639 0.7550 +2671 91419 0.6460 +2671 92597 0.7260 +2671 92609 0.6890 +2671 112812 0.4590 +2671 131118 0.4850 +2671 131474 0.9990 +2671 140690 0.5140 +2671 147912 0.4110 +2671 149428 0.8100 +2671 150274 0.4780 +2671 154796 0.4340 +2671 169714 0.8940 +2671 200205 0.4080 +2671 201456 0.4930 +2671 285521 0.4120 +2671 388753 0.5750 +2671 400916 0.6640 +2671 493753 0.6910 +2671 728489 0.4260 +2671 100272147 0.5100 +2672 3065 0.9570 +2672 3066 0.8770 +2672 3204 0.4440 +2672 3205 0.5270 +2672 3206 0.5550 +2672 3207 0.4690 +2672 3214 0.4450 +2672 3276 0.4020 +2672 3394 0.5900 +2672 3398 0.5170 +2672 3458 0.4270 +2672 3516 0.5420 +2672 3562 0.4040 +2672 3574 0.4560 +2672 3575 0.4550 +2672 3662 0.5040 +2672 3815 0.4700 +2672 4005 0.5800 +2672 4066 0.4980 +2672 4145 0.4740 +2672 4211 0.5310 +2672 4602 0.7420 +2672 4609 0.6030 +2672 4613 0.4050 +2672 4647 0.4820 +2672 4665 0.4090 +2672 4763 0.4320 +2672 4783 0.4090 +2672 4851 0.4340 +2672 4951 0.7710 +2672 5079 0.4090 +2672 5080 0.4200 +2672 5087 0.5740 +2672 5457 0.5260 +2672 5458 0.4820 +2672 5459 0.9070 +2672 5688 0.4420 +2672 5788 0.4910 +2672 5896 0.4440 +2672 5931 0.4930 +2672 5970 0.4360 +2672 6310 0.8470 +2672 6504 0.4410 +2672 6591 0.4540 +2672 6613 0.4220 +2672 6660 0.4150 +2672 6688 0.8960 +2672 6776 0.4190 +2672 6886 0.8310 +2672 6929 0.4720 +2672 6932 0.4930 +2672 7157 0.5760 +2672 7494 0.5200 +2672 7709 0.7120 +2672 7750 0.5210 +2672 7813 0.5150 +2672 8125 0.4550 +2672 8320 0.4690 +2672 8328 0.4420 +2672 8861 0.4460 +2672 9002 0.5110 +2672 9079 0.4240 +2672 9203 0.5140 +2672 9600 0.6180 +2672 9612 0.4660 +2672 10084 0.4300 +2672 10320 0.5770 +2672 10362 0.5360 +2672 10401 0.4410 +2672 10456 0.7280 +2672 10919 0.9090 +2672 11338 0.4710 +2672 23028 0.9860 +2672 23186 0.8930 +2672 25803 0.4940 +2672 30009 0.4970 +2672 50674 0.4390 +2672 51176 0.6970 +2672 51317 0.4860 +2672 55294 0.4110 +2672 56751 0.4540 +2672 56950 0.4380 +2672 57491 0.4750 +2672 64005 0.6370 +2672 64321 0.4020 +2672 79365 0.4320 +2672 84522 0.4470 +2672 92579 0.7110 +2672 199746 0.6400 +2672 342371 0.4830 +2672 375611 0.6690 +2672 654231 0.7340 +2672 728378 0.4200 +2673 2744 0.9370 +2673 2746 0.4820 +2673 2752 0.9650 +2673 2762 0.5800 +2673 2821 0.9910 +2673 2889 0.4390 +2673 3037 0.4880 +2673 3098 0.9360 +2673 3099 0.9390 +2673 3101 0.9200 +2673 3336 0.4080 +2673 3376 0.4660 +2673 3630 0.6500 +2673 4035 0.4020 +2673 4141 0.4290 +2673 4351 0.9450 +2673 4593 0.5320 +2673 4942 0.4700 +2673 5188 0.8110 +2673 5211 0.4330 +2673 5213 0.5390 +2673 5214 0.4530 +2673 5236 0.4450 +2673 5238 0.9310 +2673 5315 0.4340 +2673 5373 0.4590 +2673 5471 0.9410 +2673 5634 0.4130 +2673 5832 0.5150 +2673 5913 0.6230 +2673 6222 0.4370 +2673 6303 0.4870 +2673 6329 0.4500 +2673 6389 0.4350 +2673 6470 0.4590 +2673 6472 0.4780 +2673 6513 0.4170 +2673 6566 0.4170 +2673 6734 0.4210 +2673 6888 0.8570 +2673 7167 0.4670 +2673 7358 0.5440 +2673 7360 0.4280 +2673 7494 0.8620 +2673 8225 0.5090 +2673 8226 0.7060 +2673 8292 0.6780 +2673 8473 0.7120 +2673 8528 0.4020 +2673 8565 0.4850 +2673 8813 0.4740 +2673 8833 0.5840 +2673 8891 0.5170 +2673 8893 0.5200 +2673 9563 0.6650 +2673 9581 0.4770 +2673 9945 0.9730 +2673 10007 0.9690 +2673 10020 0.6440 +2673 10724 0.7580 +2673 10797 0.4130 +2673 11224 0.4060 +2673 22934 0.5950 +2673 25796 0.4270 +2673 26751 0.4060 +2673 27165 0.9290 +2673 27247 0.6390 +2673 27349 0.4370 +2673 29880 0.4170 +2673 29925 0.7880 +2673 29926 0.6330 +2673 29968 0.5320 +2673 51005 0.8060 +2673 51548 0.6670 +2673 51557 0.5300 +2673 54187 0.4600 +2673 55191 0.4290 +2673 55276 0.7160 +2673 55278 0.5430 +2673 55577 0.7120 +2673 55622 0.4240 +2673 55748 0.4560 +2673 64841 0.9940 +2673 79073 0.8330 +2673 80201 0.9250 +2673 84168 0.4080 +2673 84735 0.4510 +2673 85365 0.4230 +2673 91373 0.5170 +2673 112483 0.4830 +2673 132789 0.9620 +2673 158584 0.5430 +2673 199857 0.7060 +2673 283209 0.6000 +2673 285489 0.7190 +2673 286451 0.4310 +2673 340562 0.4830 +2673 375790 0.4110 +2674 2675 0.6600 +2674 2676 0.7740 +2674 2885 0.4880 +2674 2886 0.4990 +2674 2887 0.5080 +2674 3265 0.4570 +2674 3400 0.6270 +2674 3655 0.5220 +2674 3815 0.5820 +2674 3845 0.4320 +2674 3975 0.5230 +2674 3976 0.5910 +2674 4103 0.4160 +2674 4254 0.4110 +2674 4684 0.9620 +2674 4803 0.9500 +2674 4804 0.6280 +2674 4893 0.4210 +2674 4902 0.9990 +2674 4908 0.6620 +2674 4909 0.6490 +2674 4914 0.8870 +2674 4915 0.6000 +2674 5076 0.4070 +2674 5290 0.5080 +2674 5291 0.4990 +2674 5293 0.4990 +2674 5295 0.5090 +2674 5296 0.4990 +2674 5335 0.5390 +2674 5443 0.4310 +2674 5460 0.5590 +2674 5566 0.4400 +2674 5567 0.4400 +2674 5568 0.4400 +2674 5578 0.5630 +2674 5598 0.5490 +2674 5623 0.9980 +2674 5781 0.5320 +2674 5909 0.5690 +2674 5979 0.9990 +2674 6347 0.4490 +2674 6387 0.5870 +2674 6464 0.5350 +2674 6653 0.6680 +2674 6654 0.4110 +2674 6663 0.8300 +2674 6714 0.6600 +2674 7054 0.4420 +2674 7070 0.5550 +2674 7345 0.5870 +2674 7545 0.4390 +2674 7704 0.7300 +2674 8433 0.5710 +2674 8503 0.4990 +2674 8929 0.5120 +2674 9046 0.4990 +2674 9048 0.9980 +2674 9260 0.4990 +2674 9518 0.5230 +2674 9672 0.5000 +2674 9846 0.4990 +2674 10818 0.6640 +2674 50511 0.5930 +2674 50674 0.6110 +2674 53358 0.4670 +2674 54514 0.5590 +2674 54937 0.6020 +2674 55715 0.5560 +2674 55816 0.5490 +2674 57167 0.5310 +2674 64096 0.7010 +2674 79727 0.4640 +2674 85358 0.5130 +2674 166647 0.6720 +2674 220164 0.5890 +2674 255877 0.6360 +2674 339345 0.7300 +2674 342977 0.6140 +2674 346673 0.6870 +2674 402381 0.6420 +2674 100526761 0.5770 +2675 2676 0.6950 +2675 2885 0.4410 +2675 2886 0.4990 +2675 2887 0.4990 +2675 3265 0.4040 +2675 3578 0.4440 +2675 3736 0.4510 +2675 3845 0.4040 +2675 4684 0.7380 +2675 4803 0.6510 +2675 4804 0.5290 +2675 4893 0.4040 +2675 4902 0.9990 +2675 4908 0.6680 +2675 4909 0.6510 +2675 4914 0.8410 +2675 4915 0.5400 +2675 5290 0.4990 +2675 5291 0.4990 +2675 5293 0.5010 +2675 5295 0.5100 +2675 5296 0.5140 +2675 5335 0.4990 +2675 5567 0.4130 +2675 5568 0.4020 +2675 5578 0.5490 +2675 5598 0.4990 +2675 5623 0.9960 +2675 5781 0.4990 +2675 5909 0.5400 +2675 5979 0.9990 +2675 6092 0.4490 +2675 6272 0.5160 +2675 6464 0.4690 +2675 6654 0.4040 +2675 6714 0.5930 +2675 6863 0.6550 +2675 7423 0.4030 +2675 7442 0.4050 +2675 7579 0.4110 +2675 8503 0.4990 +2675 9046 0.6470 +2675 9048 0.9960 +2675 9260 0.4990 +2675 9423 0.5060 +2675 9672 0.4200 +2675 9846 0.5280 +2675 10505 0.4880 +2675 10818 0.4710 +2675 29949 0.4350 +2675 53358 0.4610 +2675 53827 0.4260 +2675 55715 0.5060 +2675 55816 0.5280 +2675 57863 0.4110 +2675 64096 0.6930 +2675 85329 0.4520 +2675 85358 0.5110 +2675 114815 0.4120 +2675 116512 0.4450 +2675 220164 0.5650 +2676 2885 0.4280 +2676 2886 0.5100 +2676 2887 0.4990 +2676 3265 0.4040 +2676 3578 0.4450 +2676 3845 0.4040 +2676 4803 0.6780 +2676 4893 0.4040 +2676 4902 0.9980 +2676 4908 0.6840 +2676 4909 0.6130 +2676 4914 0.7280 +2676 4915 0.6120 +2676 5228 0.4110 +2676 5290 0.4990 +2676 5291 0.4990 +2676 5293 0.5040 +2676 5295 0.4990 +2676 5296 0.4990 +2676 5335 0.4990 +2676 5566 0.4020 +2676 5578 0.5210 +2676 5598 0.4990 +2676 5623 0.9980 +2676 5781 0.4990 +2676 5909 0.5360 +2676 5979 0.9990 +2676 6272 0.4400 +2676 6464 0.4490 +2676 6663 0.5140 +2676 6714 0.5750 +2676 7442 0.5700 +2676 8503 0.5070 +2676 8989 0.4470 +2676 9046 0.5010 +2676 9048 0.9990 +2676 9076 0.4740 +2676 9260 0.4990 +2676 9672 0.4650 +2676 9846 0.5000 +2676 10818 0.6610 +2676 29949 0.4420 +2676 53358 0.4080 +2676 55715 0.4990 +2676 55816 0.5040 +2676 64096 0.7250 +2676 79054 0.4500 +2676 85358 0.5070 +2676 220164 0.4990 +2677 3172 0.4120 +2677 3755 0.7070 +2677 4256 0.9510 +2677 5167 0.5490 +2677 5624 0.8390 +2677 5627 0.9910 +2677 5638 0.9400 +2677 5639 0.8730 +2677 7045 0.4740 +2677 8529 0.9170 +2677 8856 0.4380 +2677 8858 0.8270 +2677 9172 0.4050 +2677 10269 0.4060 +2677 10631 0.5940 +2677 10791 0.5910 +2677 11234 0.4590 +2677 23065 0.4620 +2677 27235 0.4060 +2677 29914 0.6530 +2677 51255 0.4050 +2677 57685 0.4070 +2677 79001 0.9980 +2677 79056 0.5080 +2677 79057 0.5280 +2677 79572 0.4120 +2677 90167 0.4250 +2677 91304 0.4110 +2677 94137 0.4400 +2677 132884 0.4260 +2677 153443 0.4030 +2677 154807 0.9540 +2677 221044 0.6840 +2678 2729 0.4550 +2678 2747 0.4200 +2678 2805 0.6240 +2678 2806 0.4540 +2678 2875 0.6360 +2678 2878 0.4970 +2678 2937 0.6020 +2678 2950 0.4070 +2678 2984 0.4450 +2678 3948 0.4900 +2678 5205 0.4590 +2678 5244 0.7650 +2678 6524 0.4130 +2678 6647 0.4110 +2678 6888 0.7770 +2678 8647 0.6520 +2678 9370 0.4480 +2678 9520 0.5950 +2678 9986 0.4070 +2678 10249 0.4810 +2678 22882 0.6810 +2678 26137 0.7170 +2678 79017 0.6630 +2678 79850 0.4970 +2678 84706 0.4400 +2678 91828 0.4180 +2678 92483 0.5240 +2678 124975 0.5010 +2678 137362 0.6290 +2678 139818 0.4410 +2678 160287 0.5230 +2678 100423062 0.4240 +2683 2720 0.9290 +2683 3906 0.9990 +2683 3938 0.9000 +2683 3955 0.4060 +2683 4060 0.4340 +2683 4122 0.8210 +2683 4123 0.5300 +2683 4124 0.8490 +2683 4245 0.5480 +2683 4247 0.5370 +2683 4248 0.4470 +2683 4249 0.6010 +2683 4507 0.4680 +2683 4851 0.4480 +2683 4853 0.4630 +2683 4958 0.4180 +2683 5016 0.4990 +2683 5277 0.4230 +2683 5284 0.4530 +2683 5549 0.4480 +2683 5986 0.4270 +2683 6480 0.9900 +2683 6482 0.6820 +2683 6484 0.5970 +2683 6487 0.6120 +2683 6677 0.5610 +2683 7124 0.4240 +2683 7355 0.6560 +2683 7783 0.5420 +2683 7784 0.7730 +2683 8398 0.4700 +2683 8702 0.9120 +2683 8703 0.9220 +2683 8704 0.9070 +2683 8705 0.4540 +2683 8706 0.9250 +2683 8707 0.9750 +2683 8708 0.9840 +2683 8747 0.5060 +2683 8748 0.5060 +2683 9331 0.5940 +2683 9334 0.5980 +2683 10317 0.9510 +2683 10331 0.9450 +2683 10402 0.9450 +2683 10559 0.4820 +2683 10678 0.9660 +2683 10690 0.9400 +2683 11046 0.6870 +2683 11081 0.4170 +2683 11085 0.5060 +2683 11253 0.5000 +2683 11282 0.5790 +2683 22917 0.5340 +2683 23169 0.7060 +2683 23275 0.4300 +2683 23509 0.4460 +2683 25839 0.6060 +2683 27087 0.9220 +2683 29071 0.4160 +2683 50614 0.4040 +2683 53947 0.9470 +2683 55343 0.7830 +2683 55624 0.9460 +2683 55858 0.4360 +2683 56052 0.4230 +2683 56913 0.5670 +2683 57829 0.5380 +2683 79087 0.4330 +2683 79369 0.9290 +2683 84002 0.9500 +2683 84620 0.9500 +2683 85365 0.5730 +2683 91949 0.5330 +2683 93010 0.4550 +2683 124872 0.9240 +2683 135152 0.9240 +2683 146664 0.9400 +2683 148789 0.4090 +2683 283358 0.9210 +2683 285203 0.4040 +2683 338707 0.9100 +2686 2687 0.9400 +2686 2729 0.9250 +2686 2730 0.9150 +2686 2744 0.8240 +2686 2746 0.8680 +2686 2747 0.8940 +2686 2752 0.8500 +2686 2805 0.6550 +2686 2806 0.5100 +2686 2875 0.5290 +2686 2877 0.7640 +2686 2878 0.7370 +2686 2879 0.9180 +2686 2880 0.7370 +2686 2882 0.7460 +2686 2936 0.9250 +2686 2937 0.9590 +2686 2938 0.6880 +2686 2939 0.6880 +2686 2940 0.6880 +2686 2941 0.6890 +2686 2944 0.7160 +2686 2946 0.7230 +2686 2947 0.7080 +2686 2948 0.7090 +2686 2949 0.7130 +2686 2950 0.7420 +2686 3948 0.6110 +2686 4257 0.7240 +2686 4258 0.6650 +2686 4259 0.7470 +2686 5335 0.4140 +2686 6185 0.4590 +2686 6520 0.6860 +2686 8659 0.8210 +2686 9446 0.7330 +2686 9520 0.6790 +2686 9588 0.9090 +2686 23051 0.4330 +2686 23054 0.4100 +2686 26873 0.9350 +2686 27165 0.8360 +2686 27306 0.7440 +2686 51056 0.9300 +2686 51060 0.9110 +2686 51380 0.9080 +2686 55245 0.4900 +2686 55969 0.4650 +2686 60625 0.4450 +2686 79017 0.9390 +2686 79094 0.9060 +2686 79654 0.4340 +2686 79850 0.9270 +2686 84706 0.4090 +2686 84985 0.4080 +2686 91227 0.4210 +2686 92086 0.4140 +2686 92483 0.6300 +2686 93594 0.4560 +2686 119391 0.7460 +2686 124975 0.9460 +2686 128876 0.5090 +2686 137362 0.7090 +2686 160287 0.6280 +2686 221357 0.6880 +2686 222662 0.7890 +2686 257202 0.7360 +2686 493869 0.7370 +2686 494143 0.9070 +2686 548596 0.4510 +2686 653689 0.7180 +2686 728226 0.4150 +2686 100527943 0.4500 +2687 2729 0.9230 +2687 2730 0.9180 +2687 2744 0.8330 +2687 2746 0.8590 +2687 2747 0.8810 +2687 2752 0.8450 +2687 2775 0.5590 +2687 2776 0.4500 +2687 2805 0.5930 +2687 2806 0.4570 +2687 2875 0.4490 +2687 2877 0.7250 +2687 2878 0.8220 +2687 2879 0.9190 +2687 2880 0.7220 +2687 2882 0.7360 +2687 2936 0.9220 +2687 2937 0.9550 +2687 2938 0.8230 +2687 2939 0.7520 +2687 2940 0.7210 +2687 2941 0.7060 +2687 2944 0.8180 +2687 2946 0.7220 +2687 2947 0.6930 +2687 2948 0.7120 +2687 2949 0.7260 +2687 2950 0.7390 +2687 3948 0.5550 +2687 4056 0.9300 +2687 4257 0.6920 +2687 4258 0.6670 +2687 4259 0.7130 +2687 5330 0.4750 +2687 5341 0.6350 +2687 5999 0.4090 +2687 6000 0.8620 +2687 6002 0.4230 +2687 7380 0.4350 +2687 8659 0.8150 +2687 8786 0.8610 +2687 8787 0.7130 +2687 8801 0.8110 +2687 9446 0.7330 +2687 9520 0.6250 +2687 9588 0.9090 +2687 9628 0.9170 +2687 9875 0.4090 +2687 9883 0.4520 +2687 10681 0.9670 +2687 11075 0.4390 +2687 11274 0.4230 +2687 23236 0.5100 +2687 26499 0.6650 +2687 26873 0.9480 +2687 27165 0.8260 +2687 27306 0.7380 +2687 28978 0.5000 +2687 51056 0.9320 +2687 51060 0.9080 +2687 51380 0.9080 +2687 54331 0.4240 +2687 55785 0.4370 +2687 79017 0.9380 +2687 79094 0.9150 +2687 92292 0.5420 +2687 92483 0.5570 +2687 116449 0.4350 +2687 119391 0.7510 +2687 124975 0.9610 +2687 137362 0.6500 +2687 147699 0.4710 +2687 160287 0.5540 +2687 221357 0.7030 +2687 257144 0.4560 +2687 257202 0.7240 +2687 260429 0.4820 +2687 388531 0.8140 +2687 401190 0.6640 +2687 493869 0.7270 +2687 494143 0.9070 +2687 653689 0.7650 +2688 2689 0.9250 +2688 2690 0.9990 +2688 2691 0.9640 +2688 2692 0.9180 +2688 2693 0.8760 +2688 2796 0.6270 +2688 3454 0.6500 +2688 3455 0.6560 +2688 3458 0.4060 +2688 3459 0.6500 +2688 3479 0.9100 +2688 3480 0.4160 +2688 3481 0.5120 +2688 3485 0.4160 +2688 3486 0.7640 +2688 3558 0.5010 +2688 3559 0.6510 +2688 3560 0.6500 +2688 3561 0.6620 +2688 3563 0.6500 +2688 3566 0.6500 +2688 3568 0.6500 +2688 3570 0.6590 +2688 3572 0.6500 +2688 3575 0.6540 +2688 3581 0.6570 +2688 3587 0.6500 +2688 3588 0.6500 +2688 3590 0.6500 +2688 3594 0.6550 +2688 3595 0.6500 +2688 3597 0.6500 +2688 3598 0.6500 +2688 3630 0.8130 +2688 3667 0.6930 +2688 3716 0.6820 +2688 3717 0.7520 +2688 3718 0.6610 +2688 3952 0.9490 +2688 3953 0.7420 +2688 3977 0.6770 +2688 4067 0.4990 +2688 4352 0.6500 +2688 4493 0.4500 +2688 4852 0.4630 +2688 4887 0.5680 +2688 5156 0.6500 +2688 5159 0.6500 +2688 5443 0.8950 +2688 5449 0.7260 +2688 5539 0.5860 +2688 5594 0.5110 +2688 5595 0.6020 +2688 5617 0.9440 +2688 5618 0.9930 +2688 5626 0.7160 +2688 5741 0.4540 +2688 5770 0.5080 +2688 5777 0.4990 +2688 5781 0.5430 +2688 5961 0.5390 +2688 6473 0.4380 +2688 6500 0.4990 +2688 6750 0.8700 +2688 6751 0.4250 +2688 6752 0.4500 +2688 6755 0.4360 +2688 6772 0.5490 +2688 6774 0.5840 +2688 6776 0.6390 +2688 6777 0.6720 +2688 7038 0.5510 +2688 7066 0.9100 +2688 7200 0.5540 +2688 7252 0.4470 +2688 8454 0.4990 +2688 8651 0.5440 +2688 8660 0.5820 +2688 8820 0.5160 +2688 8835 0.6590 +2688 8945 0.4990 +2688 9021 0.5800 +2688 9180 0.6520 +2688 9466 0.6580 +2688 9650 0.5160 +2688 9978 0.4990 +2688 10136 0.4100 +2688 23436 0.4080 +2688 25970 0.4990 +2688 26254 0.4110 +2688 50615 0.6500 +2688 51738 0.9560 +2688 53832 0.6500 +2688 53833 0.6500 +2688 55599 0.5070 +2688 58985 0.6500 +2688 116379 0.6500 +2688 140683 0.5440 +2688 149233 0.6500 +2688 163702 0.6500 +2688 246744 0.6960 +2688 390714 0.4350 +2688 102723407 0.4800 +2689 2690 0.9910 +2689 2691 0.9080 +2689 2692 0.8180 +2689 2693 0.7040 +2689 3454 0.6550 +2689 3455 0.6600 +2689 3459 0.6500 +2689 3479 0.8710 +2689 3480 0.5300 +2689 3481 0.6290 +2689 3484 0.5620 +2689 3486 0.7190 +2689 3558 0.4760 +2689 3559 0.6500 +2689 3560 0.6500 +2689 3561 0.6610 +2689 3563 0.6500 +2689 3566 0.6500 +2689 3568 0.6500 +2689 3570 0.6550 +2689 3572 0.6500 +2689 3575 0.6500 +2689 3581 0.6610 +2689 3587 0.6500 +2689 3588 0.6500 +2689 3590 0.6500 +2689 3594 0.6550 +2689 3595 0.6500 +2689 3597 0.6500 +2689 3598 0.6500 +2689 3630 0.6100 +2689 3667 0.5810 +2689 3716 0.6800 +2689 3717 0.7410 +2689 3718 0.6580 +2689 3952 0.9400 +2689 3953 0.7210 +2689 3956 0.7470 +2689 3977 0.6680 +2689 4067 0.4990 +2689 4352 0.6500 +2689 4887 0.5490 +2689 5156 0.6560 +2689 5159 0.6500 +2689 5443 0.7660 +2689 5449 0.5030 +2689 5539 0.5250 +2689 5594 0.4990 +2689 5595 0.5560 +2689 5617 0.9890 +2689 5618 0.8610 +2689 5626 0.5710 +2689 5770 0.5080 +2689 5777 0.5050 +2689 5781 0.5320 +2689 5961 0.5390 +2689 6002 0.4320 +2689 6329 0.4010 +2689 6473 0.4540 +2689 6500 0.4990 +2689 6750 0.5410 +2689 6772 0.5440 +2689 6774 0.5740 +2689 6776 0.6190 +2689 6777 0.6620 +2689 7038 0.4770 +2689 7066 0.9100 +2689 7200 0.6170 +2689 7252 0.4250 +2689 8454 0.4990 +2689 8651 0.5530 +2689 8660 0.5500 +2689 8835 0.6630 +2689 8836 0.4070 +2689 8910 0.4240 +2689 8945 0.4990 +2689 9021 0.5770 +2689 9180 0.6520 +2689 9365 0.4030 +2689 9466 0.6500 +2689 9650 0.5160 +2689 9978 0.4990 +2689 10136 0.4130 +2689 23173 0.5650 +2689 23436 0.4070 +2689 25970 0.5070 +2689 26254 0.4190 +2689 29078 0.4950 +2689 50615 0.6500 +2689 51738 0.8050 +2689 53832 0.6500 +2689 53833 0.6500 +2689 57521 0.4540 +2689 58985 0.6500 +2689 79783 0.5490 +2689 81689 0.4570 +2689 83733 0.4850 +2689 84329 0.4470 +2689 93659 0.4630 +2689 116379 0.6500 +2689 126326 0.4440 +2689 136647 0.5490 +2689 140683 0.5450 +2689 149233 0.6500 +2689 163702 0.6500 +2690 2691 0.8400 +2690 2692 0.8430 +2690 2693 0.7120 +2690 2885 0.5470 +2690 2908 0.5050 +2690 3439 0.6720 +2690 3440 0.6590 +2690 3441 0.6500 +2690 3442 0.6500 +2690 3443 0.6500 +2690 3444 0.6500 +2690 3445 0.6500 +2690 3446 0.6500 +2690 3447 0.6500 +2690 3448 0.6500 +2690 3449 0.6500 +2690 3451 0.6580 +2690 3452 0.6500 +2690 3456 0.6590 +2690 3458 0.6950 +2690 3467 0.6500 +2690 3479 0.9560 +2690 3480 0.8500 +2690 3481 0.6630 +2690 3483 0.6400 +2690 3484 0.6700 +2690 3485 0.6000 +2690 3486 0.8990 +2690 3487 0.4070 +2690 3488 0.4990 +2690 3558 0.7980 +2690 3559 0.4080 +2690 3561 0.4120 +2690 3562 0.6990 +2690 3565 0.6730 +2690 3566 0.4440 +2690 3567 0.7720 +2690 3568 0.5170 +2690 3569 0.7490 +2690 3574 0.7730 +2690 3578 0.6500 +2690 3586 0.6800 +2690 3589 0.6660 +2690 3592 0.6500 +2690 3593 0.6500 +2690 3596 0.6560 +2690 3600 0.6740 +2690 3630 0.6920 +2690 3667 0.7120 +2690 3716 0.8800 +2690 3717 0.9990 +2690 3718 0.8260 +2690 3952 0.8850 +2690 3953 0.5690 +2690 3976 0.6830 +2690 3977 0.5030 +2690 4067 0.5360 +2690 4519 0.4250 +2690 4690 0.4620 +2690 5008 0.6770 +2690 5069 0.4110 +2690 5154 0.6660 +2690 5155 0.6820 +2690 5295 0.5280 +2690 5443 0.4460 +2690 5449 0.6280 +2690 5594 0.5450 +2690 5595 0.6260 +2690 5617 0.9700 +2690 5618 0.7910 +2690 5626 0.7560 +2690 5770 0.6920 +2690 5777 0.5210 +2690 5781 0.8160 +2690 6198 0.4180 +2690 6462 0.5290 +2690 6464 0.7200 +2690 6473 0.6410 +2690 6750 0.7250 +2690 6772 0.7810 +2690 6774 0.7660 +2690 6776 0.9260 +2690 6777 0.9770 +2690 6868 0.7880 +2690 7005 0.4920 +2690 7066 0.6910 +2690 7297 0.8550 +2690 7450 0.4160 +2690 8622 0.4300 +2690 8651 0.8180 +2690 8660 0.6710 +2690 8694 0.5380 +2690 8835 0.9930 +2690 8945 0.6780 +2690 9021 0.8500 +2690 9370 0.4040 +2690 10842 0.5100 +2690 11009 0.6550 +2690 23054 0.5140 +2690 23484 0.4520 +2690 25970 0.5650 +2690 29949 0.6540 +2690 50604 0.6500 +2690 50616 0.6600 +2690 51561 0.6500 +2690 51738 0.7410 +2690 53342 0.6570 +2690 54741 0.6720 +2690 56172 0.6660 +2690 56832 0.6500 +2690 59067 0.6500 +2690 85480 0.6540 +2690 153769 0.4360 +2690 202018 0.4370 +2690 282616 0.6500 +2690 282617 0.6500 +2690 282618 0.6500 +2690 338376 0.6500 +2691 2692 0.9990 +2691 2693 0.9730 +2691 2695 0.7900 +2691 2696 0.6580 +2691 2740 0.7400 +2691 2778 0.9630 +2691 2782 0.9080 +2691 2783 0.5610 +2691 2784 0.5610 +2691 2785 0.5040 +2691 2786 0.5020 +2691 2787 0.5340 +2691 2788 0.5020 +2691 2790 0.5020 +2691 2791 0.5190 +2691 2792 0.5200 +2691 2793 0.5020 +2691 2796 0.8570 +2691 2863 0.5590 +2691 2922 0.6720 +2691 2925 0.5200 +2691 2932 0.4510 +2691 3060 0.5590 +2691 3091 0.4700 +2691 3167 0.5530 +2691 3375 0.5280 +2691 3458 0.4010 +2691 3479 0.9160 +2691 3480 0.4230 +2691 3481 0.7060 +2691 3483 0.4710 +2691 3484 0.4740 +2691 3486 0.7700 +2691 3576 0.4280 +2691 3630 0.8260 +2691 3640 0.4190 +2691 3791 0.4380 +2691 3814 0.4500 +2691 3952 0.6720 +2691 3972 0.4660 +2691 4295 0.6160 +2691 4852 0.8090 +2691 4887 0.5290 +2691 4922 0.5380 +2691 5020 0.7100 +2691 5173 0.6050 +2691 5295 0.5300 +2691 5367 0.4820 +2691 5443 0.9260 +2691 5449 0.7430 +2691 5495 0.6150 +2691 5539 0.5910 +2691 5578 0.4300 +2691 5617 0.8870 +2691 5626 0.8200 +2691 5697 0.4260 +2691 5741 0.8530 +2691 5744 0.5980 +2691 5745 0.8100 +2691 5746 0.4510 +2691 5961 0.8250 +2691 6343 0.9240 +2691 6344 0.6970 +2691 6714 0.5630 +2691 6750 0.9640 +2691 6751 0.4310 +2691 6752 0.5180 +2691 6753 0.4300 +2691 6755 0.5480 +2691 6863 0.5750 +2691 7005 0.4900 +2691 7022 0.4220 +2691 7038 0.4730 +2691 7054 0.4800 +2691 7088 0.5580 +2691 7200 0.8760 +2691 7252 0.7010 +2691 7432 0.9580 +2691 7433 0.7700 +2691 7434 0.7870 +2691 8675 0.7440 +2691 8820 0.4470 +2691 9340 0.6290 +2691 9607 0.4320 +2691 9650 0.6010 +2691 10266 0.4460 +2691 10681 0.5600 +2691 51052 0.4130 +2691 51083 0.8120 +2691 51738 0.9490 +2691 51764 0.5260 +2691 54331 0.8960 +2691 55970 0.5020 +2691 57105 0.5110 +2691 59345 0.5610 +2691 64111 0.4220 +2691 79924 0.5010 +2691 83550 0.5190 +2691 89884 0.4340 +2691 94235 0.5030 +2691 113091 0.5510 +2691 114801 0.4010 +2691 116534 0.4680 +2691 117579 0.4260 +2691 122876 0.4290 +2691 140683 0.8290 +2691 147699 0.6150 +2691 170589 0.4420 +2691 340784 0.5480 +2691 347148 0.4230 +2691 594857 0.4660 +2691 619373 0.6590 +2691 104909134 0.6350 +2692 2693 0.8920 +2692 2695 0.5320 +2692 2696 0.4720 +2692 2740 0.4410 +2692 2771 0.4300 +2692 2778 0.9950 +2692 2782 0.9590 +2692 2783 0.6120 +2692 2784 0.6350 +2692 2785 0.5710 +2692 2786 0.5650 +2692 2787 0.5580 +2692 2788 0.5690 +2692 2790 0.5580 +2692 2791 0.5580 +2692 2792 0.5580 +2692 2793 0.5800 +2692 2796 0.6930 +2692 2797 0.4820 +2692 2798 0.7990 +2692 2922 0.4390 +2692 2925 0.4730 +2692 3479 0.8210 +2692 3480 0.5520 +2692 3481 0.6130 +2692 3483 0.4480 +2692 3484 0.5420 +2692 3485 0.4310 +2692 3486 0.6930 +2692 3630 0.4200 +2692 3643 0.4880 +2692 3645 0.4670 +2692 3814 0.5190 +2692 4158 0.5250 +2692 5443 0.6660 +2692 5449 0.8840 +2692 5617 0.8510 +2692 5626 0.9270 +2692 5744 0.5660 +2692 6343 0.7800 +2692 6344 0.4570 +2692 6658 0.4080 +2692 6714 0.5120 +2692 6750 0.7370 +2692 6752 0.4720 +2692 6754 0.4080 +2692 6755 0.4760 +2692 6870 0.5760 +2692 7005 0.4970 +2692 7201 0.4450 +2692 7252 0.6610 +2692 7349 0.4310 +2692 7432 0.8080 +2692 7433 0.4320 +2692 7434 0.4330 +2692 8022 0.6380 +2692 8820 0.6210 +2692 9095 0.4250 +2692 9340 0.4930 +2692 10681 0.6180 +2692 30818 0.4180 +2692 51738 0.7980 +2692 51764 0.5700 +2692 54331 0.9070 +2692 55599 0.6110 +2692 55636 0.4680 +2692 55970 0.5690 +2692 57105 0.4100 +2692 59345 0.6120 +2692 60675 0.5190 +2692 79446 0.4210 +2692 80712 0.5880 +2692 84634 0.6860 +2692 89884 0.6630 +2692 94235 0.5580 +2693 2740 0.6260 +2693 2767 0.9430 +2693 2770 0.9670 +2693 2771 0.6930 +2693 2773 0.6840 +2693 2776 0.9630 +2693 2782 0.9110 +2693 2796 0.6220 +2693 2837 0.4370 +2693 2847 0.5160 +2693 2862 0.4500 +2693 2863 0.5460 +2693 2864 0.4020 +2693 2869 0.5290 +2693 2922 0.6050 +2693 2925 0.4610 +2693 3060 0.7600 +2693 3061 0.4830 +2693 3062 0.4500 +2693 3358 0.6470 +2693 3479 0.7570 +2693 3480 0.5080 +2693 3481 0.4750 +2693 3482 0.4010 +2693 3486 0.5640 +2693 3630 0.6370 +2693 3814 0.6870 +2693 3827 0.5740 +2693 3952 0.7670 +2693 3953 0.6730 +2693 4159 0.8550 +2693 4295 0.9310 +2693 4361 0.4430 +2693 4828 0.5960 +2693 4829 0.4910 +2693 4852 0.9030 +2693 4922 0.7410 +2693 4923 0.7370 +2693 5020 0.7630 +2693 5021 0.4610 +2693 5069 0.4100 +2693 5173 0.5230 +2693 5330 0.5570 +2693 5331 0.5190 +2693 5367 0.6700 +2693 5443 0.8030 +2693 5539 0.4010 +2693 5617 0.4650 +2693 5626 0.6640 +2693 5697 0.5940 +2693 5746 0.4360 +2693 5799 0.5210 +2693 6473 0.5630 +2693 6714 0.4110 +2693 6750 0.9580 +2693 7200 0.7520 +2693 7201 0.4440 +2693 7204 0.4990 +2693 7350 0.5240 +2693 7351 0.5490 +2693 7352 0.5080 +2693 8997 0.5010 +2693 9002 0.4210 +2693 9607 0.5140 +2693 10047 0.4110 +2693 10316 0.5040 +2693 10874 0.8740 +2693 10887 0.4440 +2693 10911 0.5160 +2693 11315 0.4270 +2693 23236 0.5350 +2693 23620 0.4490 +2693 50833 0.4360 +2693 51052 0.5300 +2693 51738 0.9990 +2693 54331 0.8160 +2693 56923 0.5050 +2693 57105 0.4050 +2693 60675 0.5640 +2693 84432 0.5590 +2693 84539 0.4230 +2693 84634 0.4740 +2693 112609 0.6010 +2693 115557 0.4990 +2693 116842 0.7830 +2693 128674 0.4480 +2693 129521 0.5950 +2693 257313 0.5340 +2693 387129 0.4730 +2693 594857 0.5650 +2693 619373 0.9500 +2694 4036 0.7930 +2694 4057 0.5310 +2694 4586 0.4320 +2694 4588 0.5700 +2694 5045 0.4090 +2694 5225 0.6090 +2694 5971 0.4210 +2694 6947 0.7650 +2694 6948 0.4120 +2694 7032 0.7020 +2694 7423 0.4660 +2694 8029 0.9990 +2694 8513 0.7460 +2694 11227 0.6180 +2694 26119 0.6390 +2694 51293 0.5610 +2694 55788 0.4220 +2694 56287 0.6540 +2694 81693 0.9470 +2694 168620 0.5150 +2694 200504 0.5280 +2694 204474 0.5930 +2694 643834 0.4420 +2694 643847 0.4540 +2695 2696 0.9990 +2695 2740 0.9990 +2695 2778 0.9090 +2695 2782 0.8950 +2695 2783 0.4990 +2695 2784 0.5080 +2695 2785 0.5130 +2695 2786 0.5130 +2695 2787 0.4990 +2695 2788 0.4990 +2695 2790 0.4990 +2695 2791 0.4990 +2695 2792 0.4990 +2695 2793 0.5030 +2695 2864 0.9260 +2695 2865 0.4180 +2695 2867 0.4470 +2695 2922 0.4790 +2695 3219 0.4260 +2695 3360 0.5710 +2695 3362 0.9000 +2695 3375 0.8260 +2695 3630 0.9310 +2695 3670 0.7820 +2695 3952 0.6700 +2695 3973 0.9310 +2695 4158 0.9210 +2695 4295 0.7740 +2695 4852 0.5060 +2695 4881 0.9000 +2695 4922 0.6610 +2695 5080 0.7840 +2695 5122 0.8140 +2695 5443 0.6700 +2695 5468 0.4020 +2695 5539 0.7900 +2695 5568 0.4090 +2695 5697 0.8560 +2695 5732 0.9010 +2695 5741 0.7370 +2695 5744 0.4410 +2695 5754 0.5660 +2695 6343 0.9470 +2695 6344 0.7790 +2695 6476 0.6700 +2695 6514 0.4680 +2695 6523 0.5720 +2695 6524 0.5940 +2695 6714 0.5480 +2695 6750 0.6790 +2695 6781 0.4490 +2695 6863 0.4440 +2695 6934 0.5790 +2695 7252 0.4160 +2695 7253 0.9000 +2695 7432 0.9130 +2695 7433 0.5670 +2695 7434 0.9430 +2695 8972 0.6480 +2695 9340 0.7040 +2695 9370 0.5410 +2695 10681 0.4990 +2695 11069 0.4260 +2695 11318 0.4280 +2695 51738 0.7770 +2695 51764 0.5090 +2695 54331 0.8980 +2695 54878 0.4860 +2695 55970 0.4990 +2695 56729 0.5430 +2695 57105 0.4990 +2695 59345 0.4990 +2695 80834 0.4220 +2695 83756 0.4240 +2695 84666 0.5290 +2695 91039 0.4540 +2695 94235 0.4990 +2695 113091 0.4900 +2695 117579 0.4280 +2695 139760 0.9720 +2695 151306 0.4740 +2695 170589 0.4370 +2695 338557 0.4470 +2695 389692 0.4040 +2695 594857 0.6040 +2696 2740 0.7430 +2696 2774 0.4110 +2696 2778 0.9940 +2696 2782 0.9610 +2696 2783 0.6270 +2696 2784 0.6210 +2696 2785 0.5580 +2696 2786 0.5580 +2696 2787 0.5580 +2696 2788 0.5620 +2696 2790 0.5580 +2696 2791 0.5580 +2696 2792 0.5580 +2696 2793 0.5610 +2696 2864 0.4570 +2696 3360 0.6420 +2696 3375 0.6020 +2696 3630 0.6220 +2696 3651 0.4720 +2696 3767 0.4460 +2696 3952 0.4240 +2696 3973 0.5370 +2696 4160 0.5760 +2696 4544 0.5140 +2696 4878 0.9030 +2696 5122 0.4010 +2696 5443 0.9420 +2696 5617 0.4110 +2696 5697 0.5900 +2696 5744 0.5760 +2696 5745 0.4320 +2696 5831 0.4580 +2696 6343 0.8360 +2696 6344 0.4720 +2696 6514 0.4660 +2696 6714 0.5120 +2696 6750 0.4420 +2696 6751 0.4190 +2696 6752 0.4480 +2696 6934 0.8020 +2696 7252 0.9020 +2696 7432 0.9650 +2696 7433 0.4710 +2696 7434 0.4610 +2696 9340 0.6360 +2696 9518 0.4390 +2696 10681 0.6120 +2696 11069 0.4160 +2696 25970 0.4800 +2696 26035 0.4240 +2696 51086 0.4340 +2696 51277 0.5040 +2696 51764 0.5790 +2696 54331 0.9070 +2696 54814 0.7520 +2696 54901 0.5290 +2696 54958 0.4360 +2696 55970 0.5580 +2696 57507 0.4160 +2696 59345 0.6460 +2696 79068 0.5050 +2696 79798 0.4180 +2696 89866 0.5260 +2696 94235 0.5580 +2696 129787 0.4720 +2696 132789 0.4490 +2696 134359 0.4470 +2696 139760 0.5830 +2696 169026 0.4500 +2696 219402 0.4300 +2696 257194 0.4300 +2696 388125 0.5070 +2696 100526835 0.4160 +2697 2700 0.9680 +2697 2701 0.9350 +2697 2702 0.9960 +2697 2703 0.9070 +2697 2705 0.9680 +2697 2706 0.9630 +2697 2707 0.6640 +2697 2709 0.4140 +2697 2752 0.4860 +2697 2932 0.4320 +2697 3059 0.5430 +2697 3091 0.4970 +2697 3479 0.4860 +2697 3553 0.5330 +2697 3569 0.5240 +2697 3630 0.5010 +2697 3670 0.4530 +2697 3678 0.5810 +2697 3688 0.4380 +2697 3708 0.7020 +2697 3710 0.5630 +2697 3725 0.4200 +2697 3728 0.7610 +2697 3741 0.4760 +2697 3751 0.5260 +2697 3752 0.5630 +2697 3753 0.4530 +2697 3757 0.5280 +2697 3759 0.7600 +2697 3760 0.4060 +2697 3764 0.4710 +2697 3766 0.6880 +2697 3784 0.4860 +2697 3791 0.4870 +2697 3815 0.4960 +2697 3850 0.5220 +2697 3859 0.4480 +2697 4000 0.7120 +2697 4015 0.6120 +2697 4060 0.4170 +2697 4154 0.4730 +2697 4155 0.4820 +2697 4208 0.5180 +2697 4257 0.4320 +2697 4313 0.4980 +2697 4318 0.4890 +2697 4624 0.7360 +2697 4625 0.4470 +2697 4633 0.6070 +2697 4635 0.4240 +2697 4646 0.5830 +2697 4654 0.5080 +2697 4656 0.5410 +2697 4734 0.9370 +2697 4803 0.4460 +2697 4846 0.4430 +2697 4856 0.5920 +2697 4878 0.6100 +2697 4907 0.5470 +2697 5010 0.5010 +2697 5020 0.4120 +2697 5021 0.7040 +2697 5058 0.4520 +2697 5097 0.4910 +2697 5156 0.4790 +2697 5175 0.5060 +2697 5214 0.4310 +2697 5295 0.4800 +2697 5308 0.5480 +2697 5318 0.9730 +2697 5327 0.5040 +2697 5460 0.4510 +2697 5566 0.4940 +2697 5567 0.4940 +2697 5568 0.4950 +2697 5578 0.5250 +2697 5581 0.5120 +2697 5594 0.9430 +2697 5595 0.9470 +2697 5598 0.9410 +2697 5621 0.6700 +2697 5627 0.4110 +2697 5743 0.4700 +2697 5764 0.5080 +2697 5829 0.5850 +2697 6238 0.5870 +2697 6261 0.4820 +2697 6262 0.6310 +2697 6285 0.4740 +2697 6328 0.5080 +2697 6331 0.8730 +2697 6347 0.4280 +2697 6387 0.4870 +2697 6506 0.5500 +2697 6507 0.5300 +2697 6510 0.4850 +2697 6591 0.4270 +2697 6657 0.6120 +2697 6662 0.4270 +2697 6667 0.4500 +2697 6671 0.5730 +2697 6678 0.5190 +2697 6696 0.4220 +2697 6709 0.5450 +2697 6714 0.9980 +2697 6876 0.4410 +2697 6910 0.6130 +2697 6926 0.4710 +2697 7037 0.5310 +2697 7040 0.5200 +2697 7044 0.7170 +2697 7070 0.5230 +2697 7076 0.5820 +2697 7082 0.9990 +2697 7094 0.5610 +2697 7112 0.4660 +2697 7122 0.8290 +2697 7124 0.5140 +2697 7137 0.7730 +2697 7139 0.7840 +2697 7157 0.4180 +2697 7275 0.4620 +2697 7277 0.9300 +2697 7280 0.9450 +2697 7412 0.4130 +2697 7414 0.7950 +2697 7430 0.6280 +2697 7431 0.6050 +2697 7450 0.6530 +2697 7454 0.4430 +2697 7531 0.4500 +2697 7532 0.4330 +2697 7534 0.6390 +2697 7547 0.7650 +2697 7837 0.5900 +2697 7846 0.9150 +2697 8218 0.5490 +2697 8443 0.6220 +2697 8476 0.4720 +2697 8506 0.5700 +2697 8600 0.4050 +2697 8678 0.7900 +2697 8773 0.4440 +2697 8777 0.5640 +2697 8823 0.4310 +2697 8825 0.4390 +2697 8826 0.4430 +2697 8878 0.5960 +2697 8976 0.4940 +2697 9076 0.4090 +2697 9096 0.4720 +2697 9140 0.4540 +2697 9210 0.4260 +2697 9341 0.4790 +2697 9414 0.9180 +2697 9429 0.4170 +2697 9464 0.6100 +2697 9474 0.4010 +2697 9497 0.4500 +2697 9578 0.4640 +2697 10021 0.6930 +2697 10052 0.9930 +2697 10211 0.5740 +2697 10270 0.5380 +2697 10298 0.4490 +2697 10376 0.9080 +2697 10381 0.9450 +2697 10382 0.9400 +2697 10383 0.9380 +2697 10631 0.6450 +2697 10637 0.4460 +2697 10658 0.4180 +2697 10763 0.5080 +2697 10804 0.9810 +2697 10840 0.4240 +2697 11060 0.4810 +2697 11135 0.4190 +2697 11337 0.5940 +2697 22943 0.4070 +2697 23327 0.4660 +2697 23433 0.5720 +2697 23513 0.4930 +2697 24145 0.8220 +2697 26281 0.4400 +2697 27352 0.6360 +2697 50964 0.5230 +2697 51806 0.8610 +2697 51807 0.9040 +2697 54874 0.4280 +2697 55004 0.4200 +2697 55054 0.6260 +2697 55211 0.4780 +2697 55240 0.4980 +2697 55591 0.4160 +2697 55789 0.4270 +2697 56262 0.5730 +2697 56666 0.4820 +2697 56893 0.9000 +2697 57165 0.7880 +2697 57369 0.9450 +2697 57381 0.5580 +2697 57589 0.6920 +2697 58498 0.4620 +2697 59341 0.6250 +2697 64065 0.4570 +2697 78987 0.5460 +2697 79861 0.9020 +2697 79923 0.4080 +2697 81027 0.9340 +2697 81624 0.4160 +2697 81631 0.4270 +2697 81839 0.4410 +2697 83660 0.5830 +2697 84617 0.9430 +2697 84708 0.4430 +2697 84790 0.9030 +2697 90952 0.5070 +2697 91851 0.4770 +2697 91860 0.8610 +2697 112714 0.9040 +2697 113457 0.9070 +2697 116337 0.5120 +2697 117581 0.4120 +2697 125111 0.7530 +2697 127534 0.7480 +2697 137902 0.5450 +2697 143098 0.5060 +2697 144402 0.4240 +2697 147912 0.4290 +2697 157378 0.5090 +2697 163688 0.8610 +2697 163882 0.6920 +2697 200894 0.4230 +2697 203068 0.9430 +2697 219770 0.4080 +2697 220296 0.5920 +2697 284654 0.4150 +2697 347688 0.9350 +2697 347733 0.9410 +2697 349149 0.4560 +2697 377841 0.4270 +2697 400668 0.4010 +2697 100126572 0.5660 +2697 100506658 0.7830 +2700 2701 0.6030 +2700 2702 0.7410 +2700 2703 0.9950 +2700 2705 0.9100 +2700 2706 0.9570 +2700 2707 0.5400 +2700 2709 0.4270 +2700 3299 0.6700 +2700 3982 0.7940 +2700 4094 0.4400 +2700 4284 0.8340 +2700 4747 0.4240 +2700 5080 0.5640 +2700 5309 0.8510 +2700 7082 0.4530 +2700 7466 0.5070 +2700 7976 0.6470 +2700 8326 0.5580 +2700 8419 0.9390 +2700 10052 0.6760 +2700 10804 0.4200 +2700 23094 0.4260 +2700 23424 0.5120 +2700 24145 0.4450 +2700 51806 0.5140 +2700 57165 0.4440 +2700 57369 0.4160 +2700 79443 0.6260 +2700 80036 0.4040 +2700 84694 0.4070 +2700 91860 0.5140 +2700 125111 0.9070 +2700 127534 0.7440 +2700 128866 0.6130 +2700 163688 0.5140 +2700 219770 0.4500 +2700 283953 0.7290 +2700 349149 0.4230 +2700 387700 0.4610 +2700 100126572 0.4870 +2701 2702 0.9730 +2701 2705 0.6610 +2701 2706 0.6450 +2701 2707 0.6620 +2701 2709 0.4640 +2701 2852 0.4030 +2701 3680 0.5350 +2701 3764 0.4420 +2701 3791 0.4860 +2701 4314 0.5010 +2701 4846 0.4830 +2701 4855 0.5570 +2701 5054 0.5640 +2701 5159 0.4550 +2701 5175 0.4870 +2701 5318 0.4980 +2701 6403 0.5380 +2701 7010 0.5040 +2701 7044 0.4340 +2701 7075 0.4590 +2701 7082 0.4330 +2701 7122 0.6140 +2701 7424 0.4140 +2701 7450 0.5750 +2701 7547 0.4350 +2701 7784 0.4030 +2701 8547 0.4200 +2701 9210 0.5220 +2701 10052 0.8960 +2701 10268 0.4780 +2701 10804 0.4690 +2701 10894 0.5140 +2701 24145 0.5690 +2701 51294 0.4280 +2701 51705 0.6370 +2701 51751 0.6340 +2701 54345 0.4910 +2701 54567 0.5090 +2701 54922 0.4200 +2701 56666 0.4770 +2701 57165 0.4630 +2701 57369 0.4560 +2701 57589 0.5490 +2701 64321 0.5360 +2701 83483 0.5060 +2701 84701 0.5010 +2701 90952 0.4710 +2701 116337 0.4700 +2701 125111 0.4350 +2701 127534 0.4640 +2701 161198 0.4760 +2701 219770 0.4270 +2701 338328 0.4330 +2701 349149 0.4580 +2701 375519 0.4020 +2701 100126572 0.6300 +2702 2703 0.8360 +2702 2705 0.9480 +2702 2706 0.9680 +2702 2707 0.4340 +2702 2709 0.4200 +2702 3226 0.4220 +2702 3398 0.4650 +2702 3670 0.4340 +2702 3741 0.6030 +2702 3751 0.4100 +2702 3752 0.5680 +2702 3753 0.5540 +2702 3757 0.5750 +2702 3759 0.6820 +2702 3760 0.5100 +2702 3762 0.4850 +2702 3764 0.4260 +2702 3768 0.4430 +2702 3782 0.6560 +2702 3784 0.6040 +2702 3791 0.4230 +2702 4000 0.7120 +2702 4154 0.4610 +2702 4624 0.6490 +2702 4633 0.5410 +2702 4635 0.4450 +2702 4792 0.8470 +2702 4878 0.7770 +2702 4881 0.5300 +2702 5175 0.4130 +2702 5308 0.6600 +2702 5318 0.5800 +2702 5362 0.4340 +2702 5565 0.6070 +2702 5972 0.4940 +2702 6261 0.4200 +2702 6262 0.5880 +2702 6324 0.4780 +2702 6327 0.4160 +2702 6330 0.4010 +2702 6331 0.8790 +2702 6474 0.5630 +2702 6588 0.4660 +2702 6671 0.7200 +2702 6714 0.5010 +2702 6900 0.4060 +2702 6909 0.7210 +2702 6910 0.8080 +2702 6911 0.4750 +2702 6926 0.7290 +2702 7026 0.5050 +2702 7042 0.4710 +2702 7082 0.6570 +2702 7122 0.7290 +2702 7139 0.6390 +2702 7168 0.4110 +2702 7414 0.4290 +2702 8913 0.4510 +2702 9096 0.5960 +2702 9464 0.4070 +2702 9496 0.4530 +2702 9557 0.6410 +2702 9631 0.5450 +2702 9992 0.6540 +2702 10021 0.8700 +2702 10052 0.9910 +2702 10060 0.4080 +2702 10804 0.6140 +2702 11155 0.4340 +2702 23493 0.5270 +2702 23630 0.4560 +2702 24145 0.5010 +2702 27302 0.5700 +2702 50805 0.4920 +2702 51205 0.5130 +2702 51463 0.4770 +2702 54567 0.4320 +2702 54768 0.4630 +2702 56666 0.4300 +2702 57057 0.5660 +2702 57158 0.4020 +2702 57165 0.4330 +2702 57167 0.5170 +2702 57369 0.6570 +2702 57589 0.4290 +2702 58498 0.4460 +2702 64321 0.4070 +2702 79190 0.4390 +2702 79191 0.4080 +2702 84525 0.4300 +2702 125111 0.7520 +2702 127534 0.7460 +2702 147912 0.4680 +2702 200030 0.4460 +2702 219770 0.4420 +2702 349149 0.6620 +2702 375519 0.4050 +2702 100126572 0.5860 +2703 2705 0.8730 +2703 2706 0.9560 +2703 2707 0.4380 +2703 2709 0.4230 +2703 3299 0.7260 +2703 3982 0.8630 +2703 4094 0.4490 +2703 4284 0.9590 +2703 4712 0.4220 +2703 5080 0.6120 +2703 5309 0.8630 +2703 5565 0.6000 +2703 6502 0.6150 +2703 7082 0.8460 +2703 7439 0.4750 +2703 7466 0.4380 +2703 8419 0.9460 +2703 9557 0.6510 +2703 10052 0.6300 +2703 23094 0.4040 +2703 23424 0.5150 +2703 24145 0.4200 +2703 51205 0.5840 +2703 51463 0.5830 +2703 51806 0.5120 +2703 54768 0.6240 +2703 57165 0.4580 +2703 57369 0.6680 +2703 79443 0.5530 +2703 80036 0.4510 +2703 81025 0.4010 +2703 84694 0.4170 +2703 91860 0.5120 +2703 125111 0.9060 +2703 127534 0.7520 +2703 128866 0.6120 +2703 163688 0.5120 +2703 200030 0.5740 +2703 219770 0.4820 +2703 283953 0.6220 +2703 339403 0.4170 +2703 346007 0.4040 +2703 349149 0.4620 +2703 387700 0.5470 +2703 653519 0.4760 +2703 100126572 0.7380 +2705 2706 0.9980 +2705 2707 0.6410 +2705 2709 0.4020 +2705 3508 0.4740 +2705 3737 0.6030 +2705 3766 0.4590 +2705 3908 0.4010 +2705 4099 0.5530 +2705 4141 0.4300 +2705 4155 0.4750 +2705 4747 0.7020 +2705 4776 0.5050 +2705 5318 0.4310 +2705 5354 0.4930 +2705 5375 0.6430 +2705 5376 0.9420 +2705 5771 0.4870 +2705 6622 0.4900 +2705 6663 0.7860 +2705 6714 0.9040 +2705 7082 0.4730 +2705 7547 0.4170 +2705 8506 0.4180 +2705 8565 0.4490 +2705 8731 0.9460 +2705 8898 0.7490 +2705 8988 0.4710 +2705 9019 0.8640 +2705 9076 0.5730 +2705 9414 0.5980 +2705 9516 0.6040 +2705 9639 0.5930 +2705 9896 0.4910 +2705 9927 0.6440 +2705 10052 0.7540 +2705 10397 0.4660 +2705 10804 0.9320 +2705 23062 0.4220 +2705 24145 0.7020 +2705 26353 0.4340 +2705 26580 0.4700 +2705 51206 0.4350 +2705 51234 0.4080 +2705 51806 0.9350 +2705 53637 0.4040 +2705 54332 0.7200 +2705 55526 0.4220 +2705 56666 0.5070 +2705 56893 0.4120 +2705 57165 0.7490 +2705 57369 0.6550 +2705 57589 0.4930 +2705 57716 0.8930 +2705 59341 0.4530 +2705 79152 0.5130 +2705 79628 0.8330 +2705 81846 0.5890 +2705 84694 0.4010 +2705 90678 0.4460 +2705 91860 0.9330 +2705 92935 0.4050 +2705 94081 0.6870 +2705 116337 0.4920 +2705 121512 0.5140 +2705 125111 0.7570 +2705 127534 0.7410 +2705 149461 0.5490 +2705 163688 0.9330 +2705 163882 0.7550 +2705 219770 0.4040 +2705 349149 0.5300 +2705 100126572 0.4760 +2705 100506658 0.9520 +2706 2707 0.8750 +2706 2709 0.4310 +2706 3753 0.4950 +2706 3766 0.7380 +2706 3784 0.4930 +2706 4014 0.6940 +2706 4646 0.6060 +2706 4647 0.8420 +2706 5172 0.9610 +2706 5317 0.5820 +2706 5318 0.5060 +2706 5456 0.6230 +2706 5459 0.5070 +2706 6183 0.5820 +2706 6700 0.5650 +2706 6701 0.5690 +2706 7007 0.6430 +2706 7082 0.6520 +2706 7349 0.4700 +2706 7399 0.5870 +2706 7401 0.4230 +2706 7466 0.7450 +2706 7809 0.4410 +2706 9074 0.4470 +2706 9076 0.6040 +2706 9080 0.5270 +2706 9132 0.6730 +2706 9232 0.4520 +2706 9314 0.4480 +2706 9381 0.8760 +2706 9414 0.4110 +2706 10052 0.8270 +2706 10083 0.7320 +2706 10318 0.4530 +2706 10518 0.4760 +2706 10804 0.9900 +2706 11078 0.5740 +2706 23062 0.4220 +2706 23562 0.6460 +2706 23677 0.4680 +2706 24145 0.7500 +2706 25861 0.5840 +2706 26232 0.4440 +2706 51168 0.9120 +2706 51752 0.4510 +2706 53904 0.5070 +2706 55636 0.4310 +2706 56649 0.6650 +2706 56666 0.4860 +2706 57165 0.7920 +2706 57369 0.7880 +2706 57589 0.4890 +2706 64072 0.7700 +2706 64699 0.7220 +2706 65217 0.6210 +2706 79784 0.7050 +2706 79923 0.9140 +2706 80207 0.5310 +2706 83715 0.7880 +2706 84059 0.5060 +2706 116337 0.4510 +2706 117531 0.7870 +2706 124590 0.5070 +2706 125111 0.9060 +2706 125336 0.6080 +2706 125893 0.5610 +2706 126326 0.4780 +2706 127534 0.7500 +2706 146183 0.6200 +2706 149461 0.4350 +2706 153562 0.4730 +2706 161497 0.7200 +2706 163882 0.7780 +2706 219770 0.4040 +2706 222662 0.5800 +2706 246213 0.4490 +2706 259236 0.8960 +2706 284654 0.4110 +2706 286262 0.5050 +2706 286676 0.4550 +2706 340990 0.5790 +2706 349149 0.4510 +2706 375611 0.5450 +2706 388551 0.4200 +2706 389207 0.4340 +2706 494513 0.6130 +2706 100126572 0.4760 +2706 100506658 0.7260 +2707 2709 0.6910 +2707 2810 0.4420 +2707 3786 0.5820 +2707 3853 0.6230 +2707 3918 0.4100 +2707 4014 0.5590 +2707 4640 0.4120 +2707 4646 0.4500 +2707 4647 0.5060 +2707 5172 0.8100 +2707 5317 0.6990 +2707 5339 0.4080 +2707 5456 0.4750 +2707 7466 0.5460 +2707 9073 0.4060 +2707 9132 0.9310 +2707 9381 0.5840 +2707 9982 0.5380 +2707 10052 0.4740 +2707 10083 0.4290 +2707 10331 0.5760 +2707 10804 0.7770 +2707 11078 0.4450 +2707 23562 0.4450 +2707 23650 0.4980 +2707 23676 0.4560 +2707 27319 0.4290 +2707 51168 0.5930 +2707 51294 0.4020 +2707 53904 0.4740 +2707 56649 0.4820 +2707 57165 0.4400 +2707 57369 0.4560 +2707 64072 0.5180 +2707 64699 0.5130 +2707 65217 0.4470 +2707 81025 0.4150 +2707 84694 0.4120 +2707 117531 0.5730 +2707 125111 0.4540 +2707 125336 0.4340 +2707 127534 0.7440 +2707 146183 0.4750 +2707 161497 0.4740 +2707 219770 0.4560 +2707 222662 0.5300 +2707 259236 0.5410 +2707 286262 0.4470 +2707 286676 0.4390 +2707 349149 0.4970 +2707 375611 0.4800 +2707 388551 0.4040 +2707 389207 0.4310 +2707 494513 0.4760 +2707 100126572 0.6460 +2709 3852 0.5060 +2709 5275 0.4040 +2709 5317 0.5440 +2709 9635 0.4170 +2709 10052 0.4600 +2709 10804 0.4300 +2709 23650 0.4230 +2709 57165 0.4470 +2709 57369 0.4440 +2709 81025 0.4110 +2709 84694 0.4010 +2709 125111 0.4380 +2709 127534 0.6460 +2709 127845 0.4320 +2709 219770 0.4250 +2709 340547 0.4330 +2709 349149 0.4860 +2709 100126572 0.6380 +2710 2712 0.9580 +2710 2713 0.4630 +2710 2819 0.6580 +2710 2820 0.8770 +2710 2821 0.4370 +2710 2987 0.6840 +2710 3417 0.4070 +2710 3418 0.4070 +2710 3630 0.4740 +2710 3991 0.4810 +2710 4023 0.7860 +2710 4284 0.5100 +2710 5091 0.6300 +2710 5105 0.4410 +2710 5230 0.4300 +2710 5232 0.4460 +2710 5465 0.5990 +2710 5467 0.4950 +2710 5683 0.4120 +2710 5692 0.5190 +2710 5694 0.4440 +2710 5698 0.4310 +2710 5707 0.5610 +2710 5708 0.5630 +2710 5709 0.4770 +2710 5710 0.6040 +2710 5714 0.5550 +2710 5717 0.5600 +2710 5718 0.5660 +2710 5719 0.5480 +2710 6256 0.5180 +2710 6652 0.4420 +2710 6770 0.5930 +2710 6888 0.4140 +2710 7086 0.5530 +2710 7167 0.7010 +2710 7416 0.9680 +2710 7417 0.8950 +2710 7419 0.9720 +2710 7837 0.6540 +2710 8277 0.5530 +2710 8694 0.4770 +2710 8760 0.4320 +2710 9563 0.5670 +2710 9861 0.5980 +2710 9942 0.4710 +2710 10300 0.4080 +2710 10327 0.9270 +2710 11047 0.4370 +2710 11181 0.4030 +2710 11343 0.9370 +2710 23171 0.4040 +2710 23464 0.4060 +2710 26007 0.5880 +2710 56061 0.4070 +2710 57016 0.9240 +2710 57104 0.4440 +2710 57678 0.9310 +2710 64080 0.4460 +2710 79944 0.4660 +2710 80347 0.4260 +2710 84076 0.5410 +2710 84803 0.9410 +2710 89872 0.6030 +2710 92483 0.4070 +2710 114803 0.4430 +2710 132949 0.4560 +2710 134510 0.4090 +2710 137902 0.6540 +2710 137964 0.9160 +2710 150763 0.9230 +2710 160287 0.4060 +2710 283871 0.4520 +2710 100509620 0.4600 +2710 100652824 0.4110 +2712 2713 0.6490 +2712 2819 0.6080 +2712 2820 0.8820 +2712 2821 0.4380 +2712 2987 0.6830 +2712 3418 0.4130 +2712 3630 0.4360 +2712 3991 0.4640 +2712 4023 0.7700 +2712 4284 0.5150 +2712 5091 0.6290 +2712 5105 0.4410 +2712 5230 0.4050 +2712 5232 0.4740 +2712 5465 0.5950 +2712 5467 0.4970 +2712 5683 0.4110 +2712 5692 0.5180 +2712 5694 0.4430 +2712 5698 0.4260 +2712 5707 0.5580 +2712 5708 0.5620 +2712 5709 0.4760 +2712 5710 0.6030 +2712 5714 0.5540 +2712 5717 0.5600 +2712 5718 0.5650 +2712 5719 0.5480 +2712 6256 0.4630 +2712 6504 0.5410 +2712 6652 0.4320 +2712 6770 0.5960 +2712 6888 0.4090 +2712 7086 0.5520 +2712 7167 0.7160 +2712 7350 0.4110 +2712 7352 0.4140 +2712 7360 0.4450 +2712 7416 0.9610 +2712 7417 0.8980 +2712 7419 0.9740 +2712 7837 0.6270 +2712 8277 0.5380 +2712 8694 0.4520 +2712 8760 0.4290 +2712 9563 0.5660 +2712 9861 0.5980 +2712 9942 0.4530 +2712 10300 0.4080 +2712 10327 0.9260 +2712 11047 0.4360 +2712 11181 0.4020 +2712 11331 0.4110 +2712 11343 0.9350 +2712 23171 0.4030 +2712 26007 0.5760 +2712 57016 0.9240 +2712 57678 0.9300 +2712 64080 0.4110 +2712 79944 0.4660 +2712 80347 0.4270 +2712 84076 0.5520 +2712 84803 0.9390 +2712 89872 0.6040 +2712 92483 0.4180 +2712 114803 0.4430 +2712 132949 0.4520 +2712 134510 0.4080 +2712 137902 0.6260 +2712 137964 0.9200 +2712 150763 0.9230 +2712 283871 0.4570 +2712 100509620 0.4600 +2712 100652824 0.4110 +2713 2819 0.4420 +2713 2820 0.8280 +2713 4284 0.4500 +2713 5683 0.4110 +2713 5692 0.5180 +2713 5694 0.4260 +2713 5698 0.4260 +2713 5707 0.5580 +2713 5708 0.5620 +2713 5709 0.4760 +2713 5710 0.6030 +2713 5714 0.5540 +2713 5717 0.5600 +2713 5718 0.5650 +2713 5719 0.5480 +2713 7419 0.4900 +2713 9861 0.5980 +2713 10300 0.4080 +2713 11047 0.4360 +2713 23171 0.4310 +2713 26007 0.4070 +2713 79944 0.4660 +2713 89872 0.4590 +2713 114803 0.4430 +2713 134510 0.4080 +2713 100509620 0.4730 +2713 100652824 0.4110 +2717 2720 0.9840 +2717 2897 0.4520 +2717 2898 0.4380 +2717 2990 0.6850 +2717 3073 0.9390 +2717 3074 0.9410 +2717 3251 0.6480 +2717 3320 0.4070 +2717 3326 0.4050 +2717 3423 0.6080 +2717 3425 0.6770 +2717 3482 0.4500 +2717 3757 0.4240 +2717 3920 0.5270 +2717 3938 0.9180 +2717 3960 0.5200 +2717 4036 0.7280 +2717 4123 0.5810 +2717 4125 0.4760 +2717 4126 0.7050 +2717 4607 0.4500 +2717 4669 0.4800 +2717 4758 0.9310 +2717 4759 0.9050 +2717 4846 0.6000 +2717 4864 0.4590 +2717 5122 0.4150 +2717 5230 0.6080 +2717 5660 0.7760 +2717 6117 0.5020 +2717 6272 0.6830 +2717 6476 0.9720 +2717 6500 0.6730 +2717 6579 0.5260 +2717 6609 0.7030 +2717 7167 0.4330 +2717 7357 0.6180 +2717 7368 0.9240 +2717 8706 0.9110 +2717 8972 0.9730 +2717 9095 0.4170 +2717 9331 0.8520 +2717 9514 0.9140 +2717 9681 0.6100 +2717 10577 0.4930 +2717 10606 0.4330 +2717 10653 0.4930 +2717 10724 0.5780 +2717 10825 0.9010 +2717 51422 0.4910 +2717 53947 0.9490 +2717 54883 0.4270 +2717 54955 0.5340 +2717 55276 0.5570 +2717 55636 0.4030 +2717 57016 0.9050 +2717 63976 0.5480 +2717 93432 0.9340 +2717 127550 0.4130 +2717 129807 0.9070 +2717 130589 0.9240 +2717 340542 0.4040 +2717 440387 0.4380 +2719 2735 0.5600 +2719 2752 0.6080 +2719 2817 0.7610 +2719 2887 0.4410 +2719 2908 0.4020 +2719 2914 0.4310 +2719 2917 0.4290 +2719 3082 0.6230 +2719 3105 0.4850 +2719 3169 0.4620 +2719 3171 0.4390 +2719 3308 0.4210 +2719 3339 0.6600 +2719 3340 0.6700 +2719 3480 0.7980 +2719 3481 0.9930 +2719 3484 0.5610 +2719 3549 0.9640 +2719 3569 0.5450 +2719 3725 0.4680 +2719 3815 0.4400 +2719 3855 0.6640 +2719 3856 0.4310 +2719 3875 0.4050 +2719 3880 0.7850 +2719 4035 0.6990 +2719 4036 0.4550 +2719 4072 0.7470 +2719 4100 0.4510 +2719 4192 0.4640 +2719 4311 0.4340 +2719 4496 0.4470 +2719 5054 0.4400 +2719 5460 0.4550 +2719 5727 0.7380 +2719 6348 0.6470 +2719 6382 0.7330 +2719 6383 0.8020 +2719 6385 0.6590 +2719 6469 0.9590 +2719 6490 0.4030 +2719 6517 0.6600 +2719 6696 0.4710 +2719 6855 0.4060 +2719 7015 0.4240 +2719 7035 0.7100 +2719 7157 0.6420 +2719 7471 0.9220 +2719 7472 0.9270 +2719 7473 0.9210 +2719 7474 0.9600 +2719 7475 0.9190 +2719 7476 0.9180 +2719 7477 0.9190 +2719 7478 0.9140 +2719 7479 0.9120 +2719 7480 0.9120 +2719 7481 0.9200 +2719 7482 0.9190 +2719 7483 0.9160 +2719 7484 0.9150 +2719 7490 0.6120 +2719 7804 0.4480 +2719 8000 0.4070 +2719 8406 0.4910 +2719 8509 0.6360 +2719 8633 0.5250 +2719 8788 0.5150 +2719 8842 0.6320 +2719 9241 0.5050 +2719 9348 0.6360 +2719 9394 0.6070 +2719 9429 0.4620 +2719 9451 0.4110 +2719 9547 0.4420 +2719 9653 0.6420 +2719 9672 0.7170 +2719 9951 0.4930 +2719 9953 0.5620 +2719 9955 0.5120 +2719 9956 0.5260 +2719 9957 0.5810 +2719 10082 0.6390 +2719 10232 0.5720 +2719 10643 0.5160 +2719 10664 0.4500 +2719 10675 0.5270 +2719 10761 0.4680 +2719 10855 0.5410 +2719 10960 0.4220 +2719 11200 0.4130 +2719 11281 0.4910 +2719 11285 0.5090 +2719 11315 0.4080 +2719 22943 0.4240 +2719 23213 0.4890 +2719 26035 0.6360 +2719 26045 0.4560 +2719 26229 0.5180 +2719 27087 0.4650 +2719 27302 0.4070 +2719 29126 0.4490 +2719 51280 0.7360 +2719 51384 0.9180 +2719 54361 0.9260 +2719 54474 0.5770 +2719 54757 0.4650 +2719 54760 0.4390 +2719 55959 0.7570 +2719 56975 0.5050 +2719 57167 0.7290 +2719 60495 0.5690 +2719 63827 0.5910 +2719 64083 0.5060 +2719 64131 0.4900 +2719 64132 0.5400 +2719 64399 0.5880 +2719 64579 0.6390 +2719 64711 0.5160 +2719 80059 0.6300 +2719 80326 0.9110 +2719 81029 0.9200 +2719 84870 0.4530 +2719 89780 0.9860 +2719 90161 0.7520 +2719 90249 0.4870 +2719 126792 0.5060 +2719 135152 0.4450 +2719 137970 0.8580 +2719 139285 0.5610 +2719 147111 0.7180 +2719 221914 0.8350 +2719 222537 0.5160 +2719 266722 0.5190 +2719 375790 0.6130 +2719 400566 0.5750 +2720 2760 0.4720 +2720 2799 0.9570 +2720 2896 0.4690 +2720 2990 0.6190 +2720 3073 0.9590 +2720 3074 0.9620 +2720 3098 0.9010 +2720 3099 0.9010 +2720 3101 0.9000 +2720 3337 0.6110 +2720 3425 0.5470 +2720 3553 0.4460 +2720 3906 0.9150 +2720 3938 0.9900 +2720 3958 0.4970 +2720 4057 0.5060 +2720 4123 0.4050 +2720 4125 0.5070 +2720 4126 0.5600 +2720 4175 0.4250 +2720 4668 0.6620 +2720 4669 0.6270 +2720 4758 0.9990 +2720 4759 0.4540 +2720 5476 0.9990 +2720 5660 0.6990 +2720 5833 0.5010 +2720 6399 0.4470 +2720 6448 0.5870 +2720 6476 0.7900 +2720 6482 0.9190 +2720 6483 0.9270 +2720 6609 0.5650 +2720 7357 0.9340 +2720 8704 0.9190 +2720 8705 0.9050 +2720 8869 0.8580 +2720 8972 0.5760 +2720 9331 0.9330 +2720 10516 0.4430 +2720 10577 0.6390 +2720 10825 0.4300 +2720 23324 0.4340 +2720 23761 0.7750 +2720 27095 0.5500 +2720 29952 0.5390 +2720 51693 0.4220 +2720 53947 0.8240 +2720 55262 0.5010 +2720 56257 0.4290 +2720 57016 0.9020 +2720 57704 0.9320 +2720 57818 0.9020 +2720 58485 0.6390 +2720 79753 0.6530 +2720 80201 0.9000 +2720 84002 0.8000 +2720 92579 0.9040 +2720 93432 0.4800 +2720 112616 0.4190 +2720 122553 0.4580 +2720 126003 0.4240 +2720 127550 0.8040 +2720 129807 0.8810 +2720 130589 0.9300 +2720 138050 0.5300 +2720 201931 0.4180 +2720 285362 0.6350 +2729 2730 0.9990 +2729 2744 0.8520 +2729 2745 0.5650 +2729 2746 0.8470 +2729 2747 0.8090 +2729 2752 0.8530 +2729 2805 0.8300 +2729 2806 0.8380 +2729 2875 0.4130 +2729 2877 0.7580 +2729 2878 0.7050 +2729 2879 0.8090 +2729 2880 0.6850 +2729 2882 0.7130 +2729 2936 0.8740 +2729 2937 0.9950 +2729 2938 0.6670 +2729 2939 0.6370 +2729 2940 0.5310 +2729 2941 0.6150 +2729 2944 0.6110 +2729 2946 0.4670 +2729 2947 0.4910 +2729 2948 0.5080 +2729 2950 0.6990 +2729 3162 0.9030 +2729 3553 0.4610 +2729 3569 0.4560 +2729 3725 0.4190 +2729 3845 0.4940 +2729 4001 0.4800 +2729 4094 0.5640 +2729 4097 0.5740 +2729 4143 0.4860 +2729 4144 0.4340 +2729 4199 0.4600 +2729 4257 0.4130 +2729 4363 0.4330 +2729 4493 0.4550 +2729 4778 0.7140 +2729 4779 0.6850 +2729 4780 0.9660 +2729 4792 0.5560 +2729 4835 0.4620 +2729 5052 0.6660 +2729 5226 0.5400 +2729 5743 0.4050 +2729 5832 0.4690 +2729 6175 0.5310 +2729 6303 0.5190 +2729 6510 0.4260 +2729 6520 0.4340 +2729 6536 0.4060 +2729 6647 0.7330 +2729 6648 0.7060 +2729 6649 0.5460 +2729 6718 0.4040 +2729 7039 0.4610 +2729 7124 0.4250 +2729 7157 0.6370 +2729 7295 0.7440 +2729 7296 0.8060 +2729 7358 0.4650 +2729 7837 0.4490 +2729 7975 0.4480 +2729 8452 0.6980 +2729 8644 0.5930 +2729 8659 0.8270 +2729 8678 0.4330 +2729 8878 0.4380 +2729 9429 0.5470 +2729 9446 0.5310 +2729 9563 0.5180 +2729 9588 0.4760 +2729 9603 0.5180 +2729 9817 0.9050 +2729 9971 0.4710 +2729 10257 0.4070 +2729 10327 0.4090 +2729 10587 0.5380 +2729 10935 0.4570 +2729 23411 0.4640 +2729 23657 0.6740 +2729 23764 0.4230 +2729 25824 0.5180 +2729 25828 0.5620 +2729 26873 0.9590 +2729 27035 0.5120 +2729 27165 0.8670 +2729 27306 0.6650 +2729 50507 0.4480 +2729 51022 0.4450 +2729 51056 0.9000 +2729 54205 0.4600 +2729 54578 0.4440 +2729 54658 0.4230 +2729 56267 0.8200 +2729 57016 0.6050 +2729 64902 0.9060 +2729 79017 0.9220 +2729 79799 0.4140 +2729 84823 0.4100 +2729 114112 0.4160 +2729 119391 0.4200 +2729 124975 0.9420 +2729 133482 0.4490 +2729 137362 0.8050 +2729 137902 0.4480 +2729 140809 0.7560 +2729 221357 0.4230 +2729 252969 0.4470 +2729 257202 0.6850 +2729 441282 0.4260 +2729 493869 0.7110 +2729 653689 0.4050 +2730 2744 0.8530 +2730 2745 0.5510 +2730 2746 0.8490 +2730 2747 0.8270 +2730 2752 0.8530 +2730 2805 0.8430 +2730 2806 0.8460 +2730 2877 0.7110 +2730 2878 0.6540 +2730 2879 0.7710 +2730 2880 0.6370 +2730 2882 0.6570 +2730 2936 0.7990 +2730 2937 0.9890 +2730 2938 0.5960 +2730 2939 0.5400 +2730 2940 0.4860 +2730 2941 0.5610 +2730 2944 0.5390 +2730 2946 0.4710 +2730 2950 0.6280 +2730 3162 0.9100 +2730 3553 0.4060 +2730 4001 0.4040 +2730 4094 0.5140 +2730 4097 0.5730 +2730 4199 0.5380 +2730 4493 0.4070 +2730 4778 0.5020 +2730 4779 0.6130 +2730 4780 0.9510 +2730 4835 0.4110 +2730 5052 0.6400 +2730 5226 0.5090 +2730 6303 0.6920 +2730 6520 0.4370 +2730 6536 0.4070 +2730 6647 0.6610 +2730 6648 0.5810 +2730 6649 0.4340 +2730 6652 0.4300 +2730 6821 0.4130 +2730 6888 0.5650 +2730 7086 0.4250 +2730 7157 0.6080 +2730 7295 0.6700 +2730 7296 0.7950 +2730 7363 0.4250 +2730 7364 0.4180 +2730 7390 0.4790 +2730 8452 0.6400 +2730 8574 0.4690 +2730 8644 0.4180 +2730 8659 0.8460 +2730 8837 0.4760 +2730 8878 0.5030 +2730 9446 0.4440 +2730 9563 0.5750 +2730 9817 0.9320 +2730 9978 0.4020 +2730 10587 0.4270 +2730 10935 0.4660 +2730 11243 0.6490 +2730 11315 0.6690 +2730 22949 0.5050 +2730 22977 0.4130 +2730 23657 0.6890 +2730 23764 0.4050 +2730 25828 0.5180 +2730 26873 0.9350 +2730 27165 0.8650 +2730 27306 0.5620 +2730 29948 0.5500 +2730 51022 0.4260 +2730 51056 0.9030 +2730 54578 0.4070 +2730 54677 0.4040 +2730 56267 0.8480 +2730 57016 0.4660 +2730 64902 0.9050 +2730 79017 0.9210 +2730 79799 0.4400 +2730 124975 0.9190 +2730 133482 0.4020 +2730 137362 0.8220 +2730 140809 0.8020 +2730 252969 0.4480 +2730 257202 0.6360 +2730 493869 0.6510 +2730 100527963 0.6490 +2731 2744 0.8410 +2731 2746 0.8770 +2731 2747 0.8650 +2731 2752 0.8980 +2731 2936 0.6810 +2731 3034 0.5930 +2731 3141 0.4410 +2731 3329 0.4610 +2731 3417 0.7110 +2731 3418 0.7050 +2731 3434 0.4870 +2731 3484 0.4050 +2731 3658 0.4210 +2731 3948 0.4760 +2731 4143 0.4940 +2731 4144 0.4090 +2731 4191 0.5880 +2731 4522 0.9080 +2731 4524 0.9300 +2731 4548 0.8460 +2731 4608 0.9940 +2731 4706 0.4350 +2731 4720 0.4080 +2731 4729 0.6460 +2731 4942 0.5220 +2731 4948 0.9000 +2731 4967 0.5120 +2731 5096 0.5120 +2731 5471 0.7160 +2731 5723 0.7040 +2731 5832 0.4170 +2731 5860 0.4390 +2731 6389 0.6740 +2731 6390 0.6610 +2731 6470 0.9980 +2731 6472 0.9980 +2731 6888 0.4020 +2731 7086 0.5110 +2731 7167 0.4660 +2731 7296 0.6860 +2731 7298 0.9190 +2731 7403 0.4020 +2731 7404 0.4020 +2731 8050 0.7690 +2731 8277 0.4950 +2731 8528 0.6670 +2731 8659 0.8620 +2731 8801 0.4130 +2731 8802 0.5350 +2731 8803 0.4650 +2731 8833 0.4580 +2731 9054 0.4400 +2731 9131 0.5650 +2731 9179 0.4130 +2731 9380 0.8970 +2731 9563 0.4500 +2731 9615 0.6030 +2731 10008 0.4010 +2731 10157 0.4870 +2731 10238 0.4310 +2731 10455 0.4110 +2731 10587 0.6630 +2731 10606 0.7050 +2731 10723 0.4310 +2731 10797 0.9720 +2731 10841 0.5160 +2731 10993 0.4660 +2731 11019 0.5340 +2731 11168 0.4680 +2731 23135 0.4030 +2731 23464 0.5940 +2731 23743 0.8100 +2731 25796 0.4140 +2731 25902 0.9190 +2731 26227 0.8690 +2731 27165 0.8660 +2731 27232 0.9290 +2731 29958 0.9490 +2731 29968 0.7350 +2731 51071 0.4240 +2731 51084 0.4030 +2731 51268 0.9680 +2731 51444 0.4730 +2731 51601 0.4120 +2731 51761 0.4190 +2731 54059 0.4080 +2731 54941 0.4730 +2731 55066 0.9120 +2731 55157 0.4440 +2731 55163 0.5050 +2731 55270 0.8280 +2731 55293 0.4730 +2731 55526 0.5740 +2731 55703 0.4020 +2731 55753 0.4740 +2731 55825 0.4220 +2731 56267 0.4350 +2731 58472 0.5580 +2731 64759 0.4460 +2731 64850 0.4140 +2731 64902 0.9550 +2731 79814 0.4580 +2731 79912 0.5580 +2731 81034 0.5950 +2731 83693 0.6720 +2731 83695 0.4170 +2731 84076 0.4960 +2731 84263 0.4610 +2731 84706 0.4380 +2731 84883 0.5610 +2731 85007 0.4780 +2731 90407 0.5360 +2731 92483 0.4730 +2731 113675 0.4860 +2731 114112 0.6620 +2731 114827 0.4180 +2731 130752 0.5290 +2731 150209 0.5600 +2731 160287 0.4730 +2731 160428 0.5620 +2731 162417 0.4250 +2731 169200 0.5370 +2731 200205 0.8610 +2731 200879 0.5330 +2731 200895 0.8840 +2731 340481 0.5040 +2731 387787 0.5330 +2731 440026 0.5330 +2731 441024 0.9700 +2731 730249 0.6670 +2733 2806 0.5460 +2733 3178 0.6810 +2733 3181 0.6340 +2733 3183 0.5480 +2733 3187 0.5320 +2733 3190 0.5490 +2733 3191 0.5060 +2733 3837 0.6140 +2733 3842 0.4600 +2733 4116 0.7170 +2733 4665 0.4750 +2733 4670 0.4510 +2733 4686 0.7660 +2733 4927 0.9450 +2733 4928 0.9160 +2733 5305 0.7770 +2733 5725 0.4780 +2733 5901 0.4850 +2733 5902 0.5470 +2733 5903 0.9030 +2733 5905 0.7900 +2733 5976 0.4360 +2733 6311 0.4350 +2733 6396 0.7620 +2733 6426 0.5780 +2733 6428 0.4970 +2733 6432 0.4710 +2733 6434 0.4330 +2733 6633 0.4780 +2733 6634 0.4340 +2733 6635 0.4300 +2733 6636 0.4280 +2733 6637 0.4290 +2733 6651 0.9320 +2733 6708 0.5090 +2733 6709 0.5310 +2733 7072 0.4230 +2733 7175 0.7890 +2733 7514 0.7560 +2733 7919 0.7800 +2733 8021 0.9980 +2733 8086 0.8440 +2733 8106 0.4980 +2733 8148 0.5280 +2733 8480 0.9920 +2733 8563 0.5440 +2733 8662 0.4280 +2733 8665 0.6110 +2733 8888 0.6070 +2733 9416 0.6050 +2733 9631 0.9880 +2733 9688 0.8720 +2733 9775 0.7120 +2733 9782 0.6870 +2733 9818 0.8520 +2733 9883 0.7520 +2733 9939 0.5040 +2733 9972 0.9240 +2733 10189 0.8420 +2733 10204 0.5690 +2733 10212 0.4390 +2733 10236 0.4340 +2733 10250 0.4310 +2733 10432 0.5020 +2733 10482 0.9330 +2733 10531 0.4440 +2733 10762 0.7460 +2733 10921 0.5190 +2733 10949 0.4070 +2733 11097 0.9980 +2733 11260 0.5420 +2733 11269 0.9500 +2733 11338 0.4760 +2733 22794 0.5170 +2733 22916 0.7050 +2733 23064 0.4590 +2733 23165 0.8830 +2733 23212 0.5030 +2733 23225 0.7240 +2733 23279 0.8190 +2733 23396 0.8370 +2733 23404 0.4920 +2733 23435 0.6670 +2733 23511 0.7490 +2733 23609 0.4970 +2733 23636 0.9250 +2733 25909 0.4530 +2733 26039 0.4170 +2733 26097 0.5790 +2733 26986 0.5390 +2733 27316 0.4220 +2733 27339 0.4290 +2733 29107 0.8340 +2733 29118 0.8490 +2733 51010 0.4400 +2733 51068 0.4550 +2733 53371 0.9240 +2733 54830 0.5670 +2733 55110 0.6980 +2733 55308 0.8890 +2733 55706 0.5780 +2733 55746 0.9330 +2733 56000 0.4100 +2733 56943 0.4750 +2733 57122 0.9420 +2733 57187 0.6220 +2733 57409 0.4830 +2733 57703 0.4810 +2733 57727 0.5920 +2733 59349 0.4980 +2733 64768 0.6780 +2733 65109 0.5100 +2733 79023 0.7250 +2733 79882 0.6650 +2733 79902 0.8950 +2733 81929 0.9120 +2733 84248 0.4630 +2733 84271 0.5770 +2733 84324 0.4070 +2733 129401 0.8620 +2733 203228 0.6070 +2733 253430 0.4180 +2733 283987 0.6090 +2733 348995 0.7330 +2733 400916 0.4160 +2733 728343 0.6400 +2733 729857 0.7180 +2733 100101267 0.8370 +2734 3689 0.5680 +2734 5303 0.4290 +2734 5660 0.4510 +2734 5970 0.6140 +2734 6401 0.9990 +2734 6402 0.6930 +2734 6403 0.9830 +2734 6404 0.8860 +2734 6483 0.4480 +2734 6693 0.6180 +2734 6696 0.4360 +2734 7280 0.4010 +2734 7412 0.7000 +2734 8518 0.4240 +2734 8635 0.4490 +2734 8817 0.5740 +2734 8822 0.5620 +2734 8823 0.5730 +2734 9375 0.4320 +2734 26281 0.5720 +2734 27006 0.5690 +2734 27076 0.4240 +2734 50848 0.7970 +2734 55094 0.4210 +2734 55159 0.5540 +2734 55704 0.5970 +2734 57613 0.4320 +2734 64149 0.4450 +2734 79726 0.4100 +2734 114882 0.6190 +2734 118460 0.4160 +2734 157769 0.4240 +2734 160065 0.4430 +2734 196463 0.4140 +2735 2736 0.9580 +2735 2737 0.9230 +2735 2932 0.5700 +2735 3021 0.4360 +2735 3065 0.6910 +2735 3066 0.4560 +2735 3091 0.4530 +2735 3092 0.4730 +2735 3170 0.5110 +2735 3172 0.5090 +2735 3239 0.4540 +2735 3276 0.4270 +2735 3320 0.4610 +2735 3326 0.4610 +2735 3479 0.4020 +2735 3480 0.4070 +2735 3481 0.4010 +2735 3516 0.4310 +2735 3549 0.9650 +2735 3551 0.4440 +2735 3569 0.4060 +2735 3630 0.4250 +2735 3670 0.4400 +2735 3714 0.4730 +2735 3725 0.4740 +2735 3791 0.4090 +2735 3815 0.5360 +2735 3840 0.4980 +2735 3842 0.4660 +2735 3845 0.5440 +2735 3856 0.4850 +2735 3861 0.4510 +2735 3872 0.5230 +2735 4041 0.4170 +2735 4067 0.4270 +2735 4087 0.6000 +2735 4088 0.4430 +2735 4089 0.7450 +2735 4092 0.5770 +2735 4193 0.4350 +2735 4254 0.4640 +2735 4303 0.5250 +2735 4318 0.4450 +2735 4487 0.5390 +2735 4488 0.4540 +2735 4609 0.8310 +2735 4613 0.7590 +2735 4762 0.5390 +2735 4807 0.4300 +2735 4821 0.5910 +2735 4851 0.5780 +2735 4853 0.5140 +2735 4854 0.4710 +2735 4935 0.4130 +2735 5015 0.4680 +2735 5077 0.4260 +2735 5079 0.4250 +2735 5080 0.5900 +2735 5081 0.4040 +2735 5156 0.7110 +2735 5159 0.5040 +2735 5175 0.4110 +2735 5460 0.6070 +2735 5562 0.5520 +2735 5566 0.9660 +2735 5567 0.9540 +2735 5568 0.9540 +2735 5573 0.5800 +2735 5575 0.5460 +2735 5576 0.5620 +2735 5577 0.5720 +2735 5584 0.6650 +2735 5595 0.4720 +2735 5682 0.4100 +2735 5683 0.4020 +2735 5684 0.4100 +2735 5685 0.4100 +2735 5686 0.4150 +2735 5687 0.4100 +2735 5688 0.4580 +2735 5689 0.4170 +2735 5690 0.4130 +2735 5691 0.4100 +2735 5692 0.4180 +2735 5693 0.4100 +2735 5695 0.4100 +2735 5696 0.4100 +2735 5698 0.4050 +2735 5699 0.4100 +2735 5700 0.4110 +2735 5701 0.4110 +2735 5705 0.4140 +2735 5706 0.4020 +2735 5708 0.4270 +2735 5709 0.4180 +2735 5710 0.4180 +2735 5713 0.4150 +2735 5714 0.4010 +2735 5715 0.4070 +2735 5716 0.4310 +2735 5717 0.4150 +2735 5719 0.4030 +2735 5727 0.9780 +2735 5728 0.4930 +2735 5744 0.6680 +2735 6198 0.5850 +2735 6199 0.5900 +2735 6233 0.5560 +2735 6310 0.4020 +2735 6387 0.6100 +2735 6422 0.6910 +2735 6469 0.9790 +2735 6500 0.5270 +2735 6597 0.4250 +2735 6598 0.6680 +2735 6608 0.9880 +2735 6657 0.7720 +2735 6662 0.6180 +2735 6663 0.5760 +2735 6696 0.4390 +2735 6774 0.8590 +2735 6880 0.6770 +2735 7040 0.4530 +2735 7080 0.4510 +2735 7124 0.4840 +2735 7157 0.6470 +2735 7289 0.4110 +2735 7291 0.5080 +2735 7311 0.5410 +2735 7314 0.5290 +2735 7316 0.5470 +2735 7471 0.5030 +2735 7472 0.4540 +2735 7474 0.5090 +2735 7480 0.4120 +2735 7482 0.4500 +2735 7531 0.4290 +2735 7545 0.7810 +2735 7547 0.6420 +2735 7783 0.4370 +2735 7837 0.4330 +2735 7852 0.4090 +2735 7874 0.4560 +2735 8100 0.7750 +2735 8216 0.4310 +2735 8290 0.4330 +2735 8312 0.5120 +2735 8313 0.6260 +2735 8356 0.4350 +2735 8361 0.4100 +2735 8405 0.9900 +2735 8452 0.9450 +2735 8454 0.9340 +2735 8481 0.6270 +2735 8549 0.5430 +2735 8643 0.8420 +2735 8650 0.7800 +2735 8817 0.5390 +2735 8822 0.4260 +2735 8823 0.5080 +2735 8842 0.5820 +2735 8850 0.9320 +2735 8945 0.9830 +2735 9241 0.4480 +2735 9253 0.4470 +2735 9429 0.6380 +2735 9464 0.4710 +2735 9786 0.4040 +2735 9788 0.7670 +2735 9794 0.5480 +2735 9861 0.4020 +2735 9978 0.5690 +2735 10013 0.5230 +2735 10116 0.6910 +2735 10213 0.4150 +2735 10215 0.5400 +2735 10284 0.4640 +2735 10381 0.4410 +2735 10413 0.5880 +2735 10419 0.4300 +2735 10642 0.7670 +2735 10763 0.5870 +2735 10891 0.4280 +2735 11096 0.5210 +2735 11127 0.7590 +2735 11334 0.4100 +2735 22943 0.4390 +2735 23135 0.5710 +2735 23198 0.4170 +2735 23288 0.4670 +2735 23291 0.9570 +2735 23322 0.5780 +2735 23345 0.4700 +2735 23411 0.4750 +2735 23432 0.7160 +2735 23462 0.4030 +2735 25925 0.5770 +2735 25989 0.8400 +2735 26018 0.4650 +2735 26160 0.6860 +2735 26281 0.5060 +2735 27006 0.4390 +2735 27148 0.9660 +2735 27152 0.5160 +2735 28514 0.4330 +2735 50846 0.8510 +2735 50937 0.5520 +2735 51098 0.5570 +2735 51176 0.5530 +2735 51384 0.4410 +2735 51684 0.9990 +2735 51715 0.4390 +2735 51741 0.4770 +2735 54361 0.4240 +2735 54567 0.4120 +2735 54903 0.5060 +2735 55081 0.5350 +2735 55534 0.4420 +2735 55582 0.8060 +2735 55733 0.4470 +2735 55764 0.6360 +2735 56034 0.4160 +2735 57695 0.6460 +2735 57758 0.4020 +2735 59352 0.4270 +2735 60529 0.4910 +2735 64327 0.5440 +2735 64399 0.8980 +2735 64839 0.4220 +2735 79577 0.9200 +2735 79659 0.6150 +2735 79661 0.4180 +2735 79809 0.6730 +2735 79923 0.7790 +2735 80199 0.4360 +2735 83737 0.8100 +2735 84196 0.6230 +2735 84441 0.4420 +2735 84504 0.4340 +2735 84976 0.4130 +2735 89780 0.4760 +2735 91653 0.4810 +2735 117581 0.4190 +2735 122706 0.4100 +2735 128553 0.4930 +2735 132884 0.6680 +2735 137902 0.4330 +2735 143471 0.4100 +2735 147040 0.6680 +2735 163786 0.4010 +2735 200894 0.6460 +2735 338785 0.5880 +2735 339745 0.9520 +2735 374654 0.9970 +2735 440093 0.4330 +2735 440686 0.4330 +2735 653604 0.4330 +2735 100133941 0.4800 +2735 100532731 0.8210 +2736 2737 0.9410 +2736 2932 0.9110 +2736 3065 0.5080 +2736 3170 0.4790 +2736 3172 0.4010 +2736 3549 0.8520 +2736 3714 0.4290 +2736 3817 0.4010 +2736 3845 0.4040 +2736 4087 0.5520 +2736 4088 0.7310 +2736 4089 0.5390 +2736 4092 0.5680 +2736 4487 0.5080 +2736 4488 0.5630 +2736 4609 0.5090 +2736 4613 0.6210 +2736 4790 0.5280 +2736 4821 0.5280 +2736 4851 0.4810 +2736 4853 0.4310 +2736 4854 0.4560 +2736 5015 0.5550 +2736 5080 0.5350 +2736 5156 0.4630 +2736 5449 0.4840 +2736 5460 0.5150 +2736 5566 0.9660 +2736 5567 0.9660 +2736 5568 0.9670 +2736 5573 0.5640 +2736 5575 0.5680 +2736 5576 0.5570 +2736 5577 0.5700 +2736 5626 0.5320 +2736 5682 0.4100 +2736 5683 0.4020 +2736 5684 0.4860 +2736 5685 0.4100 +2736 5686 0.4150 +2736 5687 0.4100 +2736 5688 0.4100 +2736 5689 0.4170 +2736 5690 0.4130 +2736 5691 0.4100 +2736 5692 0.4180 +2736 5693 0.4100 +2736 5695 0.4100 +2736 5696 0.4100 +2736 5699 0.4100 +2736 5700 0.4110 +2736 5701 0.4870 +2736 5702 0.4240 +2736 5705 0.4140 +2736 5706 0.4020 +2736 5707 0.4240 +2736 5708 0.4100 +2736 5709 0.4180 +2736 5710 0.4180 +2736 5713 0.4150 +2736 5714 0.4010 +2736 5715 0.4070 +2736 5716 0.4310 +2736 5717 0.4150 +2736 5719 0.4030 +2736 5727 0.9720 +2736 5728 0.4060 +2736 5744 0.5260 +2736 6091 0.5030 +2736 6233 0.5320 +2736 6422 0.4680 +2736 6469 0.9750 +2736 6496 0.7740 +2736 6500 0.5210 +2736 6586 0.5150 +2736 6608 0.9800 +2736 6657 0.6940 +2736 6658 0.4970 +2736 6662 0.5540 +2736 6880 0.7370 +2736 6910 0.4630 +2736 7080 0.4110 +2736 7157 0.6900 +2736 7289 0.6490 +2736 7291 0.4160 +2736 7311 0.5410 +2736 7314 0.5290 +2736 7316 0.5290 +2736 7471 0.4160 +2736 7474 0.4730 +2736 7481 0.5000 +2736 7531 0.5330 +2736 7534 0.6400 +2736 7546 0.4950 +2736 7547 0.4900 +2736 7874 0.4240 +2736 7919 0.6020 +2736 7979 0.4600 +2736 8022 0.5100 +2736 8100 0.8520 +2736 8312 0.4050 +2736 8313 0.4760 +2736 8405 0.9910 +2736 8452 0.9570 +2736 8454 0.9340 +2736 8481 0.6700 +2736 8549 0.4030 +2736 8643 0.8310 +2736 8650 0.6480 +2736 8820 0.5460 +2736 8842 0.4490 +2736 8854 0.4700 +2736 8945 0.9840 +2736 9314 0.4830 +2736 9353 0.4770 +2736 9371 0.4500 +2736 9464 0.4050 +2736 9734 0.4890 +2736 9786 0.4380 +2736 9788 0.6360 +2736 9794 0.5260 +2736 9861 0.4020 +2736 9978 0.5530 +2736 9984 0.9600 +2736 10013 0.5050 +2736 10189 0.5110 +2736 10213 0.4150 +2736 10215 0.4160 +2736 10413 0.4880 +2736 10481 0.4380 +2736 10482 0.5230 +2736 10630 0.4380 +2736 10763 0.4700 +2736 10765 0.4640 +2736 11127 0.8520 +2736 11334 0.4280 +2736 22873 0.5070 +2736 23135 0.5440 +2736 23198 0.4170 +2736 23291 0.9360 +2736 23314 0.4950 +2736 23322 0.5780 +2736 23432 0.6240 +2736 23512 0.5310 +2736 25925 0.6030 +2736 25989 0.8400 +2736 26160 0.7700 +2736 27148 0.8650 +2736 27152 0.5010 +2736 28981 0.5040 +2736 50846 0.8270 +2736 50937 0.6230 +2736 51098 0.5490 +2736 51176 0.4410 +2736 51531 0.4220 +2736 51684 0.9990 +2736 51715 0.8550 +2736 54903 0.4800 +2736 55081 0.5300 +2736 55351 0.4310 +2736 55582 0.8020 +2736 55636 0.4910 +2736 55764 0.6760 +2736 56943 0.5250 +2736 57187 0.9920 +2736 57216 0.4740 +2736 60529 0.5400 +2736 64399 0.8210 +2736 78990 0.6190 +2736 79577 0.5830 +2736 79659 0.6400 +2736 79753 0.4330 +2736 79809 0.8180 +2736 79923 0.5020 +2736 80199 0.4780 +2736 80210 0.4110 +2736 80712 0.5020 +2736 83737 0.5850 +2736 84321 0.9860 +2736 84976 0.5340 +2736 89780 0.5580 +2736 89884 0.5600 +2736 91653 0.4950 +2736 122706 0.4100 +2736 132884 0.7490 +2736 143471 0.4100 +2736 200894 0.6290 +2736 256646 0.4260 +2736 285175 0.4040 +2736 339745 0.9490 +2736 347853 0.5200 +2736 374654 0.9970 +2736 100532731 0.4500 +2737 2932 0.9530 +2737 3065 0.4570 +2737 3170 0.4390 +2737 3209 0.4280 +2737 3237 0.6530 +2737 3238 0.4910 +2737 3239 0.6370 +2737 3549 0.8370 +2737 3845 0.4360 +2737 4086 0.4250 +2737 4092 0.5080 +2737 4487 0.5430 +2737 4488 0.4460 +2737 4609 0.4020 +2737 4613 0.4570 +2737 4762 0.4570 +2737 4781 0.4050 +2737 4821 0.4720 +2737 5015 0.4440 +2737 5077 0.6400 +2737 5080 0.6000 +2737 5083 0.4680 +2737 5156 0.4190 +2737 5460 0.4030 +2737 5566 0.9630 +2737 5567 0.9630 +2737 5568 0.9630 +2737 5573 0.5720 +2737 5575 0.5400 +2737 5576 0.5470 +2737 5577 0.5490 +2737 5682 0.4200 +2737 5683 0.4220 +2737 5684 0.4180 +2737 5685 0.4100 +2737 5686 0.4580 +2737 5687 0.4100 +2737 5688 0.4280 +2737 5689 0.4270 +2737 5690 0.4250 +2737 5691 0.4100 +2737 5692 0.4180 +2737 5693 0.4170 +2737 5694 0.4100 +2737 5695 0.4260 +2737 5696 0.4100 +2737 5699 0.4170 +2737 5700 0.4110 +2737 5701 0.4110 +2737 5705 0.4140 +2737 5706 0.4020 +2737 5708 0.4640 +2737 5709 0.4560 +2737 5710 0.4350 +2737 5713 0.4150 +2737 5714 0.4010 +2737 5715 0.4060 +2737 5716 0.4310 +2737 5717 0.4150 +2737 5719 0.4030 +2737 5727 0.9890 +2737 5979 0.4400 +2737 6233 0.5320 +2737 6422 0.4330 +2737 6469 0.9660 +2737 6498 0.5240 +2737 6500 0.5230 +2737 6608 0.9750 +2737 6615 0.4910 +2737 6657 0.7470 +2737 6662 0.5430 +2737 6663 0.5580 +2737 6720 0.4430 +2737 6872 0.4600 +2737 6880 0.4140 +2737 6909 0.4300 +2737 6926 0.4430 +2737 7080 0.4120 +2737 7289 0.7210 +2737 7291 0.4560 +2737 7311 0.5410 +2737 7314 0.5290 +2737 7316 0.5290 +2737 7471 0.4030 +2737 7472 0.4050 +2737 7474 0.4300 +2737 7531 0.5940 +2737 7546 0.6250 +2737 7547 0.8190 +2737 7783 0.7470 +2737 8100 0.7850 +2737 8312 0.4200 +2737 8313 0.4300 +2737 8405 0.9940 +2737 8452 0.9410 +2737 8454 0.9350 +2737 8481 0.6830 +2737 8626 0.4120 +2737 8643 0.7860 +2737 8650 0.6030 +2737 8751 0.4380 +2737 8817 0.4130 +2737 8822 0.5610 +2737 8945 0.9910 +2737 9037 0.4420 +2737 9093 0.4130 +2737 9464 0.6390 +2737 9575 0.4220 +2737 9742 0.4060 +2737 9786 0.4980 +2737 9861 0.4020 +2737 9968 0.7840 +2737 9969 0.4850 +2737 9978 0.5600 +2737 10013 0.4870 +2737 10083 0.4010 +2737 10213 0.4150 +2737 10215 0.4470 +2737 10284 0.4270 +2737 10763 0.4480 +2737 11127 0.7710 +2737 11334 0.4280 +2737 22873 0.5490 +2737 23198 0.4170 +2737 23288 0.4370 +2737 23291 0.9600 +2737 23322 0.6420 +2737 23432 0.6430 +2737 23512 0.4930 +2737 23770 0.4240 +2737 25989 0.8080 +2737 26160 0.6740 +2737 26585 0.4710 +2737 27148 0.9270 +2737 27152 0.5570 +2737 27324 0.4290 +2737 29894 0.4390 +2737 50846 0.8200 +2737 50937 0.5260 +2737 51098 0.5720 +2737 51176 0.4380 +2737 51684 0.9990 +2737 51715 0.8840 +2737 54432 0.4850 +2737 54903 0.5300 +2737 55023 0.4520 +2737 55081 0.5210 +2737 55582 0.8450 +2737 55636 0.5370 +2737 55764 0.6760 +2737 57822 0.4110 +2737 60529 0.7880 +2737 64093 0.4150 +2737 64327 0.5270 +2737 64399 0.7890 +2737 79577 0.5410 +2737 79659 0.6620 +2737 79809 0.8420 +2737 80114 0.4010 +2737 80199 0.5010 +2737 81575 0.4020 +2737 83737 0.5730 +2737 91653 0.5440 +2737 122706 0.4100 +2737 132884 0.6600 +2737 143471 0.4180 +2737 200894 0.7210 +2737 339745 0.9510 +2737 340419 0.4170 +2737 374654 0.9950 +2738 4249 0.4030 +2738 4610 0.4960 +2738 4613 0.4570 +2738 4893 0.4120 +2738 9684 0.5180 +2738 10233 0.4270 +2738 22838 0.4020 +2738 27148 0.4340 +2738 57661 0.4470 +2738 79169 0.4300 +2738 80772 0.4610 +2738 127703 0.4830 +2738 256364 0.4740 +2738 339451 0.4770 +2738 340390 0.4860 +2738 441381 0.5760 +2739 2745 0.4260 +2739 2746 0.4740 +2739 2806 0.4650 +2739 2821 0.4410 +2739 2877 0.5040 +2739 2878 0.5060 +2739 2880 0.5060 +2739 2882 0.5110 +2739 2936 0.7790 +2739 3029 0.9990 +2739 3081 0.5120 +2739 3094 0.4350 +2739 3105 0.6560 +2739 3106 0.5030 +2739 3242 0.5980 +2739 3336 0.4030 +2739 3417 0.4940 +2739 3419 0.4100 +2739 3712 0.4410 +2739 4128 0.8440 +2739 4129 0.8330 +2739 4191 0.4370 +2739 4482 0.4230 +2739 4594 0.6230 +2739 4695 0.6600 +2739 4698 0.4210 +2739 4700 0.8350 +2739 4704 0.4420 +2739 4706 0.5790 +2739 4714 0.6410 +2739 4720 0.7430 +2739 4726 0.6590 +2739 4728 0.8730 +2739 5052 0.4690 +2739 5095 0.5420 +2739 5096 0.7710 +2739 5222 0.7480 +2739 5223 0.5360 +2739 5225 0.4890 +2739 5226 0.5800 +2739 5230 0.4980 +2739 5232 0.4110 +2739 5236 0.7290 +2739 5238 0.8640 +2739 5464 0.5490 +2739 5860 0.5020 +2739 6224 0.4010 +2739 6293 0.4870 +2739 6389 0.7540 +2739 6390 0.4930 +2739 6391 0.7780 +2739 6392 0.8140 +2739 6647 0.4710 +2739 6648 0.4750 +2739 6652 0.5500 +2739 6697 0.4770 +2739 6713 0.4980 +2739 6905 0.4340 +2739 6948 0.4580 +2739 6950 0.4820 +2739 7001 0.4670 +2739 7086 0.4070 +2739 7167 0.6170 +2739 7295 0.4460 +2739 7386 0.6300 +2739 7407 0.4560 +2739 8540 0.4530 +2739 8564 0.4340 +2739 8639 0.8130 +2739 8833 0.4040 +2739 9296 0.4680 +2739 9380 0.9460 +2739 9446 0.4150 +2739 9453 0.4130 +2739 9563 0.5360 +2739 9588 0.5350 +2739 9669 0.4780 +2739 9856 0.4280 +2739 10094 0.4900 +2739 10286 0.5050 +2739 10327 0.4270 +2739 10541 0.4580 +2739 10549 0.4310 +2739 10935 0.4810 +2739 10993 0.8240 +2739 11315 0.6980 +2739 22948 0.4110 +2739 23474 0.5480 +2739 23583 0.4930 +2739 25953 0.4210 +2739 27089 0.4030 +2739 51004 0.4370 +2739 51031 0.6010 +2739 51110 0.4590 +2739 51167 0.4660 +2739 51171 0.4140 +2739 51179 0.5430 +2739 51473 0.5030 +2739 51497 0.5700 +2739 51567 0.5000 +2739 51645 0.5810 +2739 54363 0.5670 +2739 55270 0.4260 +2739 55276 0.5900 +2739 55662 0.4170 +2739 55856 0.6230 +2739 55967 0.6560 +2739 56922 0.5510 +2739 57016 0.4070 +2739 64087 0.6320 +2739 64122 0.4110 +2739 79893 0.4360 +2739 80777 0.5240 +2739 81631 0.4190 +2739 84263 0.4740 +2739 84264 0.6410 +2739 84842 0.6210 +2739 85478 0.5050 +2739 112812 0.5330 +2739 113179 0.4650 +2739 113675 0.8280 +2739 114781 0.5620 +2739 126393 0.4770 +2739 134637 0.4770 +2739 137872 0.4760 +2739 153364 0.4110 +2739 197257 0.4640 +2739 202500 0.4740 +2739 257202 0.5060 +2739 283871 0.5270 +2739 389434 0.6470 +2739 441282 0.4160 +2739 493869 0.5060 +2739 606495 0.4030 +2739 100130890 0.5140 +2739 100131187 0.5100 +2740 2774 0.4470 +2740 2775 0.7340 +2740 2776 0.9010 +2740 2778 0.9950 +2740 2782 0.9750 +2740 2783 0.6260 +2740 2784 0.7510 +2740 2785 0.5580 +2740 2786 0.5720 +2740 2787 0.5580 +2740 2788 0.5580 +2740 2790 0.5580 +2740 2791 0.5580 +2740 2792 0.5580 +2740 2793 0.5580 +2740 2834 0.4800 +2740 2864 0.7130 +2740 2865 0.6170 +2740 2867 0.6240 +2740 2875 0.5280 +2740 3060 0.4240 +2740 3359 0.4380 +2740 3375 0.7960 +2740 3479 0.6050 +2740 3553 0.4750 +2740 3569 0.4810 +2740 3630 0.9030 +2740 3643 0.5080 +2740 3651 0.5610 +2740 3667 0.4750 +2740 3767 0.4740 +2740 3952 0.6590 +2740 3953 0.5640 +2740 4159 0.4120 +2740 4160 0.6740 +2740 4306 0.4360 +2740 4760 0.4120 +2740 4825 0.5250 +2740 4846 0.4340 +2740 4852 0.6130 +2740 4878 0.9430 +2740 4886 0.4580 +2740 4887 0.7110 +2740 4922 0.4060 +2740 5020 0.4030 +2740 5028 0.4260 +2740 5122 0.6400 +2740 5126 0.4940 +2740 5443 0.9720 +2740 5465 0.5170 +2740 5468 0.5800 +2740 5539 0.5730 +2740 5566 0.6160 +2740 5567 0.6150 +2740 5568 0.6330 +2740 5595 0.4010 +2740 5617 0.5870 +2740 5697 0.8280 +2740 5741 0.6030 +2740 5972 0.6070 +2740 6343 0.9140 +2740 6344 0.4890 +2740 6476 0.7900 +2740 6514 0.6450 +2740 6517 0.5200 +2740 6523 0.7510 +2740 6524 0.9090 +2740 6550 0.4620 +2740 6714 0.5890 +2740 6720 0.4250 +2740 6750 0.6330 +2740 6752 0.4620 +2740 6755 0.4470 +2740 6833 0.6820 +2740 6934 0.7520 +2740 7054 0.4270 +2740 7124 0.4680 +2740 7252 0.9040 +2740 7349 0.4540 +2740 7350 0.4180 +2740 7432 0.9880 +2740 7433 0.5780 +2740 7434 0.4670 +2740 8383 0.4240 +2740 8477 0.4740 +2740 8660 0.4740 +2740 8972 0.7850 +2740 9143 0.5430 +2740 9340 0.9160 +2740 9370 0.5810 +2740 9607 0.4740 +2740 9971 0.5350 +2740 10410 0.4750 +2740 10411 0.5210 +2740 10578 0.4060 +2740 10681 0.6120 +2740 10857 0.4210 +2740 10891 0.4320 +2740 11069 0.6310 +2740 23411 0.4260 +2740 23566 0.4140 +2740 26035 0.4200 +2740 26291 0.6840 +2740 27035 0.5250 +2740 27230 0.4050 +2740 50674 0.6830 +2740 51094 0.4380 +2740 51738 0.8250 +2740 51764 0.5580 +2740 54209 0.4240 +2740 54331 0.9090 +2740 55970 0.5580 +2740 56477 0.4470 +2740 57105 0.4160 +2740 57510 0.4290 +2740 57818 0.4250 +2740 59345 0.6260 +2740 59350 0.4910 +2740 80834 0.6860 +2740 83756 0.6940 +2740 84504 0.4490 +2740 94235 0.5580 +2740 114131 0.5860 +2740 122786 0.5070 +2740 139760 0.6150 +2740 151306 0.5710 +2740 169026 0.4570 +2740 338557 0.6860 +2740 346562 0.5630 +2741 2743 0.8120 +2741 2894 0.4720 +2741 2897 0.4680 +2741 3357 0.4180 +2741 3592 0.6370 +2741 3593 0.5290 +2741 5583 0.4200 +2741 6386 0.6050 +2741 6530 0.4470 +2741 9152 0.9540 +2741 10243 0.9050 +2741 11281 0.4330 +2741 22906 0.5040 +2741 23229 0.8120 +2741 26960 0.5280 +2741 56896 0.7910 +2741 57468 0.4220 +2741 57563 0.4510 +2741 80333 0.4050 +2741 89832 0.4280 +2741 116443 0.5060 +2741 140679 0.4700 +2741 170679 0.4060 +2741 338661 0.4320 +2741 104909134 0.4540 +2742 2743 0.6950 +2742 2747 0.5500 +2742 2824 0.6920 +2742 2893 0.4160 +2742 2912 0.4040 +2742 2925 0.7120 +2742 3052 0.5800 +2742 3251 0.4470 +2742 4204 0.4360 +2742 4857 0.8500 +2742 4858 0.6100 +2742 5251 0.5410 +2742 5354 0.4260 +2742 6792 0.5830 +2742 6853 0.4380 +2742 8074 0.4640 +2742 9152 0.4290 +2742 10243 0.5020 +2742 10299 0.4300 +2742 10447 0.4200 +2742 11248 0.4370 +2742 22854 0.6840 +2742 26507 0.4670 +2742 26960 0.6100 +2742 83641 0.5570 +2742 84628 0.6860 +2742 124274 0.4610 +2742 129401 0.4140 +2742 140679 0.4610 +2742 147687 0.4480 +2742 158747 0.4170 +2742 283160 0.5170 +2742 339302 0.4010 +2743 2891 0.6190 +2743 2892 0.5320 +2743 4889 0.6120 +2743 6530 0.6290 +2743 8001 0.9530 +2743 9143 0.4140 +2743 9152 0.9210 +2743 10243 0.9970 +2743 22906 0.5550 +2743 23229 0.9040 +2743 26960 0.7770 +2743 55314 0.4140 +2743 57502 0.4870 +2743 140679 0.5330 +2743 151651 0.4480 +2744 2746 0.9880 +2744 2747 0.9760 +2744 2752 0.9870 +2744 2805 0.5600 +2744 2806 0.5780 +2744 2908 0.4330 +2744 3091 0.4510 +2744 3099 0.5140 +2744 3309 0.5160 +2744 3417 0.6940 +2744 3418 0.4450 +2744 3553 0.4530 +2744 4609 0.6080 +2744 5009 0.5050 +2744 5091 0.4470 +2744 5163 0.4400 +2744 5188 0.7950 +2744 5209 0.4710 +2744 5213 0.4710 +2744 5315 0.5360 +2744 5471 0.9370 +2744 5832 0.9730 +2744 6283 0.4070 +2744 6507 0.4150 +2744 6510 0.8050 +2744 6513 0.5080 +2744 7124 0.4590 +2744 7157 0.4180 +2744 8140 0.5680 +2744 8659 0.9270 +2744 8833 0.4840 +2744 8842 0.4020 +2744 9122 0.4800 +2744 9123 0.4790 +2744 9188 0.4070 +2744 9945 0.9340 +2744 10131 0.5390 +2744 10157 0.4250 +2744 10249 0.5740 +2744 10841 0.8290 +2744 23400 0.4490 +2744 23657 0.5670 +2744 26873 0.8330 +2744 27165 0.9160 +2744 29968 0.4130 +2744 51557 0.7070 +2744 54407 0.4560 +2744 55006 0.4200 +2744 55278 0.5240 +2744 55748 0.8100 +2744 57571 0.8000 +2744 63974 0.4490 +2744 79017 0.7010 +2744 79073 0.5120 +2744 79922 0.4570 +2744 79944 0.8290 +2744 80017 0.9000 +2744 81539 0.5300 +2744 84735 0.8100 +2744 92745 0.4490 +2744 124454 0.8050 +2744 124975 0.8310 +2744 150274 0.4050 +2744 283985 0.6290 +2744 728226 0.4230 +2745 2820 0.4300 +2745 2877 0.8690 +2745 2878 0.8680 +2745 2879 0.6340 +2745 2880 0.8610 +2745 2882 0.8630 +2745 2936 0.9800 +2745 2937 0.4560 +2745 2950 0.4600 +2745 2954 0.5890 +2745 3014 0.4120 +2745 3161 0.4050 +2745 3162 0.6410 +2745 3251 0.4240 +2745 3308 0.6620 +2745 3313 0.5560 +2745 3336 0.4280 +2745 3417 0.4390 +2745 3418 0.4390 +2745 3630 0.4340 +2745 3704 0.7410 +2745 4141 0.4340 +2745 4170 0.4060 +2745 4217 0.8110 +2745 4321 0.4160 +2745 4482 0.8960 +2745 4493 0.5450 +2745 4780 0.4700 +2745 5034 0.4270 +2745 5052 0.6560 +2745 5770 0.4450 +2745 5834 0.4570 +2745 6240 0.9760 +2745 6241 0.8000 +2745 6261 0.4690 +2745 6647 0.6530 +2745 6648 0.6320 +2745 6649 0.4830 +2745 6821 0.4090 +2745 7001 0.6190 +2745 7086 0.4480 +2745 7295 0.9660 +2745 7296 0.9230 +2745 7389 0.4230 +2745 7498 0.4320 +2745 7541 0.4240 +2745 7704 0.4240 +2745 7837 0.4450 +2745 7846 0.4830 +2745 8875 0.4530 +2745 9054 0.4500 +2745 9446 0.8560 +2745 9563 0.5760 +2745 9588 0.6220 +2745 9817 0.4670 +2745 9973 0.4720 +2745 10539 0.8880 +2745 10549 0.6450 +2745 10587 0.7990 +2745 10628 0.4080 +2745 10935 0.6420 +2745 10955 0.5510 +2745 11315 0.4660 +2745 22921 0.5730 +2745 23394 0.7130 +2745 23479 0.6330 +2745 23530 0.4300 +2745 25824 0.6670 +2745 25828 0.7650 +2745 27035 0.4450 +2745 27247 0.6390 +2745 27306 0.8560 +2745 50484 0.8580 +2745 50507 0.4670 +2745 51027 0.6290 +2745 51097 0.4850 +2745 51164 0.4350 +2745 51218 0.9200 +2745 51314 0.5580 +2745 51734 0.5340 +2745 53905 0.4210 +2745 54205 0.4870 +2745 54431 0.4280 +2745 56683 0.4600 +2745 57019 0.4720 +2745 80142 0.8240 +2745 81570 0.5520 +2745 81689 0.7170 +2745 84076 0.4700 +2745 84203 0.4590 +2745 84817 0.4690 +2745 112812 0.4380 +2745 114112 0.6000 +2745 119391 0.7450 +2745 122961 0.6810 +2745 131474 0.4650 +2745 133482 0.6810 +2745 137902 0.4300 +2745 140809 0.6880 +2745 150684 0.4930 +2745 200205 0.4360 +2745 255220 0.5120 +2745 257202 0.8610 +2745 388962 0.5420 +2745 389207 0.8380 +2745 493869 0.8630 +2745 552900 0.5460 +2745 653361 0.5830 +2745 654483 0.5350 +2746 2747 0.9840 +2746 2752 0.9910 +2746 2805 0.9780 +2746 2806 0.9790 +2746 2820 0.5470 +2746 2821 0.6500 +2746 2875 0.9580 +2746 2900 0.4270 +2746 2915 0.4610 +2746 2936 0.5240 +2746 3032 0.4420 +2746 3033 0.5630 +2746 3067 0.4590 +2746 3098 0.4960 +2746 3099 0.5060 +2746 3329 0.5100 +2746 3417 0.9730 +2746 3418 0.9720 +2746 3419 0.9100 +2746 3420 0.9000 +2746 3421 0.8970 +2746 3948 0.4480 +2746 4128 0.4010 +2746 4129 0.4300 +2746 4144 0.4220 +2746 4191 0.9290 +2746 4199 0.5270 +2746 4200 0.4470 +2746 4351 0.4080 +2746 4522 0.5080 +2746 4722 0.4460 +2746 4935 0.5290 +2746 4942 0.9320 +2746 4967 0.9370 +2746 5009 0.5330 +2746 5091 0.9900 +2746 5095 0.4100 +2746 5096 0.6890 +2746 5105 0.8750 +2746 5106 0.8750 +2746 5161 0.7730 +2746 5162 0.6730 +2746 5163 0.4180 +2746 5188 0.8100 +2746 5213 0.4800 +2746 5223 0.4090 +2746 5226 0.6170 +2746 5230 0.6900 +2746 5232 0.7080 +2746 5236 0.4800 +2746 5245 0.5340 +2746 5313 0.4170 +2746 5315 0.5950 +2746 5471 0.6000 +2746 5625 0.4630 +2746 5723 0.4710 +2746 5831 0.4310 +2746 5832 0.9820 +2746 5834 0.5990 +2746 5836 0.6040 +2746 5837 0.5740 +2746 6035 0.6390 +2746 6389 0.6310 +2746 6390 0.5200 +2746 6470 0.4990 +2746 6472 0.5700 +2746 6506 0.4360 +2746 6510 0.6480 +2746 6513 0.4100 +2746 6566 0.4460 +2746 6648 0.6260 +2746 6652 0.4400 +2746 6821 0.4840 +2746 6833 0.4200 +2746 6888 0.4850 +2746 7086 0.5070 +2746 7167 0.6550 +2746 7295 0.4010 +2746 7296 0.4040 +2746 7416 0.4890 +2746 7915 0.6500 +2746 8050 0.4230 +2746 8140 0.4340 +2746 8277 0.4970 +2746 8659 0.9620 +2746 8789 0.5120 +2746 8801 0.4390 +2746 8802 0.4170 +2746 8803 0.5070 +2746 8833 0.8420 +2746 8879 0.4830 +2746 9131 0.4210 +2746 9378 0.8520 +2746 9379 0.8620 +2746 9380 0.4670 +2746 9563 0.6580 +2746 9945 0.4660 +2746 10049 0.4010 +2746 10157 0.4080 +2746 10449 0.4310 +2746 10587 0.4400 +2746 10797 0.4690 +2746 10841 0.8130 +2746 10935 0.4660 +2746 11035 0.9730 +2746 22933 0.5400 +2746 23395 0.4080 +2746 23408 0.6220 +2746 23409 0.9420 +2746 23410 0.7280 +2746 23530 0.4590 +2746 23657 0.4550 +2746 26061 0.4010 +2746 26227 0.4300 +2746 26873 0.8700 +2746 27165 0.9840 +2746 29968 0.6220 +2746 51091 0.4090 +2746 51167 0.4840 +2746 51380 0.4270 +2746 51520 0.4470 +2746 51557 0.7270 +2746 54529 0.5630 +2746 55278 0.5260 +2746 55526 0.4740 +2746 55748 0.8130 +2746 55753 0.8980 +2746 55847 0.5430 +2746 55902 0.6390 +2746 56474 0.5190 +2746 56954 0.9490 +2746 57515 0.4020 +2746 57571 0.8060 +2746 64087 0.7180 +2746 64850 0.5500 +2746 64902 0.5880 +2746 79073 0.6280 +2746 79648 0.5880 +2746 79944 0.8860 +2746 84076 0.4860 +2746 84532 0.4260 +2746 84706 0.9650 +2746 84735 0.8100 +2746 84861 0.6300 +2746 85007 0.5490 +2746 89894 0.5290 +2746 91875 0.5180 +2746 92483 0.4620 +2746 112812 0.6350 +2746 124454 0.8320 +2746 124975 0.8690 +2746 137362 0.9610 +2746 140689 0.5140 +2746 146057 0.4010 +2746 158584 0.5180 +2746 160287 0.4630 +2746 160428 0.4030 +2746 162417 0.9530 +2746 259266 0.6500 +2746 283985 0.7910 +2746 285148 0.8100 +2746 339896 0.4240 +2746 441024 0.4460 +2747 2752 0.9850 +2747 2805 0.9700 +2747 2806 0.9670 +2747 2820 0.4030 +2747 2821 0.4910 +2747 2824 0.6490 +2747 2875 0.9480 +2747 2925 0.5520 +2747 3052 0.5610 +2747 3067 0.4090 +2747 3101 0.4010 +2747 3417 0.9630 +2747 3418 0.9590 +2747 3419 0.8960 +2747 3420 0.8990 +2747 3421 0.9040 +2747 3948 0.4820 +2747 4191 0.9000 +2747 4935 0.5290 +2747 4942 0.9090 +2747 4967 0.8980 +2747 5009 0.4910 +2747 5091 0.9760 +2747 5096 0.6920 +2747 5105 0.8620 +2747 5106 0.8640 +2747 5161 0.7430 +2747 5162 0.5540 +2747 5188 0.8090 +2747 5230 0.5640 +2747 5232 0.6510 +2747 5471 0.4980 +2747 5832 0.9780 +2747 6035 0.5880 +2747 6389 0.4710 +2747 6390 0.4470 +2747 6470 0.7170 +2747 6472 0.7760 +2747 6648 0.5560 +2747 6792 0.4890 +2747 6821 0.4600 +2747 7167 0.4580 +2747 7915 0.6110 +2747 8050 0.4100 +2747 8659 0.9500 +2747 8789 0.4790 +2747 8803 0.4010 +2747 8833 0.7970 +2747 8879 0.4830 +2747 9380 0.4450 +2747 9563 0.5040 +2747 10841 0.8110 +2747 11035 0.9000 +2747 22854 0.6520 +2747 23409 0.8450 +2747 23410 0.5670 +2747 23552 0.4060 +2747 26330 0.6510 +2747 26873 0.8540 +2747 27165 0.9750 +2747 51091 0.4120 +2747 51167 0.4450 +2747 51380 0.4080 +2747 51557 0.7270 +2747 54529 0.5580 +2747 55278 0.5220 +2747 55526 0.5420 +2747 55748 0.8100 +2747 55753 0.9040 +2747 55902 0.5220 +2747 56474 0.5270 +2747 56954 0.9450 +2747 57571 0.8060 +2747 64087 0.6880 +2747 64850 0.5490 +2747 64902 0.5610 +2747 79073 0.6110 +2747 79648 0.5490 +2747 79944 0.8600 +2747 84628 0.6480 +2747 84706 0.9500 +2747 84735 0.8100 +2747 84861 0.5030 +2747 85007 0.5490 +2747 89894 0.5290 +2747 91875 0.5180 +2747 92483 0.5000 +2747 112812 0.6350 +2747 124454 0.8310 +2747 124975 0.8920 +2747 137362 0.9700 +2747 158584 0.5180 +2747 160287 0.5050 +2747 162417 0.9510 +2747 259266 0.6400 +2747 283985 0.7910 +2747 285148 0.8070 +2747 339896 0.4190 +2752 2760 0.4150 +2752 2805 0.6120 +2752 2806 0.6970 +2752 2821 0.5620 +2752 2875 0.5790 +2752 2877 0.4340 +2752 2878 0.4650 +2752 2880 0.4340 +2752 2882 0.4790 +2752 2908 0.5240 +2752 2914 0.4130 +2752 2936 0.5030 +2752 2990 0.4270 +2752 3033 0.5140 +2752 3034 0.5190 +2752 3145 0.4210 +2752 3156 0.4480 +2752 3187 0.4350 +2752 3242 0.4480 +2752 3308 0.4770 +2752 3329 0.8880 +2752 3336 0.4010 +2752 3417 0.6030 +2752 3418 0.5890 +2752 3553 0.4060 +2752 3630 0.4170 +2752 3735 0.4310 +2752 3766 0.6190 +2752 3880 0.4280 +2752 4129 0.4110 +2752 4155 0.4030 +2752 4191 0.4260 +2752 4199 0.4100 +2752 4522 0.4070 +2752 4723 0.7200 +2752 4728 0.7940 +2752 4935 0.5590 +2752 4942 0.7100 +2752 4953 0.5460 +2752 4967 0.5000 +2752 5009 0.5960 +2752 5052 0.6470 +2752 5080 0.4920 +2752 5091 0.9410 +2752 5095 0.4010 +2752 5096 0.6740 +2752 5105 0.4010 +2752 5162 0.4150 +2752 5166 0.4160 +2752 5188 0.8210 +2752 5213 0.4750 +2752 5226 0.4580 +2752 5230 0.5640 +2752 5232 0.5470 +2752 5315 0.5080 +2752 5340 0.7080 +2752 5354 0.4180 +2752 5457 0.4350 +2752 5467 0.4840 +2752 5471 0.9730 +2752 5577 0.4090 +2752 5578 0.5170 +2752 5592 0.4150 +2752 5625 0.5230 +2752 5816 0.4070 +2752 5831 0.4960 +2752 5832 0.9270 +2752 5834 0.5410 +2752 5836 0.5680 +2752 5837 0.5390 +2752 5861 0.5280 +2752 5957 0.5470 +2752 6010 0.6690 +2752 6017 0.6430 +2752 6121 0.4030 +2752 6235 0.6150 +2752 6285 0.6080 +2752 6389 0.4630 +2752 6470 0.5680 +2752 6472 0.5610 +2752 6505 0.6260 +2752 6506 0.8210 +2752 6507 0.8200 +2752 6510 0.6350 +2752 6511 0.4940 +2752 6512 0.4820 +2752 6513 0.4230 +2752 6520 0.4290 +2752 6529 0.4610 +2752 6538 0.4450 +2752 6540 0.4380 +2752 6607 0.4240 +2752 6648 0.4700 +2752 6657 0.4150 +2752 6662 0.5700 +2752 6663 0.4140 +2752 6729 0.4030 +2752 6774 0.4020 +2752 6812 0.4230 +2752 6821 0.4410 +2752 6888 0.5250 +2752 6898 0.6590 +2752 7037 0.4870 +2752 7086 0.5090 +2752 7167 0.5400 +2752 7284 0.4060 +2752 7298 0.4170 +2752 7307 0.5400 +2752 7372 0.4020 +2752 7415 0.4860 +2752 7431 0.4230 +2752 7439 0.6110 +2752 7837 0.4010 +2752 7915 0.5780 +2752 8140 0.4540 +2752 8161 0.4960 +2752 8277 0.5030 +2752 8293 0.4260 +2752 8313 0.4190 +2752 8458 0.4060 +2752 8528 0.5810 +2752 8659 0.9520 +2752 8789 0.4310 +2752 8802 0.4010 +2752 8833 0.9060 +2752 8882 0.4370 +2752 9563 0.6040 +2752 9568 0.4770 +2752 9945 0.9630 +2752 9958 0.6380 +2752 10002 0.4110 +2752 10215 0.4690 +2752 10549 0.8040 +2752 10606 0.4530 +2752 10763 0.4760 +2752 10797 0.4090 +2752 10804 0.4570 +2752 10840 0.6290 +2752 10841 0.8170 +2752 10908 0.4160 +2752 10935 0.5760 +2752 10991 0.4910 +2752 10993 0.4820 +2752 11035 0.9740 +2752 22934 0.4740 +2752 23395 0.4990 +2752 23657 0.4780 +2752 26155 0.5710 +2752 26227 0.4820 +2752 26330 0.4270 +2752 26873 0.8160 +2752 27165 0.9870 +2752 29920 0.4060 +2752 29922 0.4190 +2752 29968 0.6200 +2752 51167 0.5940 +2752 51185 0.8120 +2752 51268 0.5570 +2752 51497 0.4010 +2752 51520 0.4930 +2752 51557 0.9400 +2752 51700 0.4720 +2752 51706 0.4840 +2752 54407 0.4940 +2752 54529 0.5970 +2752 54831 0.8150 +2752 54995 0.4200 +2752 55191 0.4830 +2752 55278 0.5810 +2752 55316 0.4180 +2752 55748 0.8340 +2752 56474 0.6830 +2752 56954 0.4660 +2752 57030 0.4560 +2752 57127 0.5010 +2752 57571 0.8550 +2752 63826 0.4350 +2752 64087 0.6410 +2752 65263 0.4130 +2752 79058 0.5390 +2752 79073 0.8590 +2752 79814 0.5480 +2752 79873 0.4340 +2752 79944 0.8500 +2752 81539 0.4930 +2752 84076 0.4910 +2752 84260 0.4840 +2752 84706 0.4920 +2752 84735 0.8370 +2752 84937 0.6130 +2752 89894 0.5520 +2752 91875 0.6080 +2752 92106 0.4720 +2752 92745 0.4480 +2752 112812 0.6620 +2752 113451 0.4650 +2752 124454 0.8580 +2752 124975 0.8520 +2752 130617 0.4180 +2752 132949 0.4050 +2752 137362 0.4390 +2752 140679 0.4060 +2752 144453 0.4890 +2752 146713 0.4920 +2752 150209 0.4830 +2752 158584 0.5810 +2752 162417 0.5620 +2752 200895 0.4710 +2752 257202 0.4330 +2752 266675 0.4890 +2752 283985 0.7550 +2752 285148 0.8180 +2752 338917 0.5650 +2752 374569 0.4900 +2752 375775 0.4080 +2752 493869 0.4800 +2752 606495 0.4720 +2752 730249 0.6060 +2760 3073 0.9000 +2760 3074 0.9540 +2760 3149 0.6500 +2760 3251 0.4400 +2760 4125 0.6010 +2760 4225 0.4150 +2760 4668 0.4380 +2760 4669 0.4530 +2760 5537 0.4700 +2760 5660 0.6710 +2760 6272 0.5390 +2760 6609 0.4140 +2760 8293 0.4370 +2760 8507 0.4910 +2760 8635 0.4610 +2760 10558 0.4190 +2760 10577 0.8080 +2760 10724 0.8570 +2760 51520 0.4130 +2760 114882 0.4430 +2762 2821 0.4650 +2762 3283 0.6410 +2762 3284 0.6410 +2762 3310 0.4320 +2762 3689 0.4090 +2762 4125 0.4770 +2762 4245 0.4120 +2762 4249 0.4100 +2762 4351 0.6170 +2762 4653 0.4060 +2762 4660 0.6000 +2762 4990 0.5840 +2762 5238 0.5610 +2762 5308 0.4830 +2762 5372 0.4030 +2762 6311 0.4380 +2762 6402 0.4240 +2762 6403 0.4510 +2762 6495 0.4520 +2762 7049 0.4020 +2762 7264 0.9990 +2762 7358 0.6830 +2762 8522 0.6210 +2762 8658 0.8970 +2762 8790 0.7350 +2762 8818 0.8440 +2762 8891 0.6890 +2762 8893 0.6980 +2762 9557 0.4850 +2762 9563 0.5310 +2762 9945 0.4350 +2762 10020 0.4260 +2762 10587 0.4560 +2762 11284 0.4040 +2762 22934 0.4480 +2762 23275 0.4620 +2762 23365 0.4820 +2762 23483 0.5750 +2762 23509 0.5470 +2762 25796 0.4540 +2762 27430 0.7170 +2762 29925 0.8920 +2762 29926 0.9780 +2762 50814 0.6470 +2762 51006 0.5180 +2762 51805 0.4460 +2762 53947 0.4060 +2762 54187 0.4580 +2762 54344 0.8010 +2762 54499 0.6120 +2762 55270 0.5160 +2762 55276 0.4640 +2762 55343 0.8120 +2762 55662 0.6210 +2762 55770 0.4400 +2762 56052 0.8720 +2762 60312 0.6600 +2762 64778 0.5310 +2762 64841 0.4770 +2762 80146 0.6670 +2762 80270 0.6410 +2762 80351 0.8450 +2762 84950 0.5470 +2762 91373 0.4200 +2762 93517 0.6410 +2762 94234 0.7700 +2762 135458 0.4040 +2762 147912 0.4170 +2762 170384 0.4170 +2762 197258 0.7840 +2762 253559 0.4070 +2762 283209 0.4520 +2764 5603 0.4170 +2764 5756 0.4570 +2764 6300 0.4050 +2764 8487 0.6580 +2764 10097 0.5710 +2764 10175 0.4830 +2764 10668 0.5110 +2764 11344 0.4640 +2764 28988 0.4120 +2765 7157 0.4950 +2765 10695 0.4810 +2765 11270 0.4070 +2765 55631 0.6090 +2765 57469 0.4370 +2765 58496 0.4160 +2765 121227 0.5480 +2765 147719 0.4960 +2765 160065 0.4350 +2765 245812 0.5730 +2765 284348 0.4450 +2765 390940 0.4790 +2765 399967 0.4560 +2765 399968 0.4450 +2765 100169851 0.5220 +2765 101928108 0.5710 +2766 2987 0.9260 +2766 3251 0.9430 +2766 3614 0.9300 +2766 3615 0.9300 +2766 3704 0.9340 +2766 4259 0.4340 +2766 4507 0.5360 +2766 4599 0.4630 +2766 4860 0.5730 +2766 4907 0.9570 +2766 5096 0.4390 +2766 5136 0.9150 +2766 5137 0.9040 +2766 5138 0.9080 +2766 5139 0.9070 +2766 5140 0.9100 +2766 5145 0.9080 +2766 5146 0.9080 +2766 5147 0.9160 +2766 5148 0.9000 +2766 5149 0.9000 +2766 5152 0.9070 +2766 5153 0.9040 +2766 5158 0.9080 +2766 5167 0.9040 +2766 5169 0.9030 +2766 5431 0.4530 +2766 5471 0.5980 +2766 6472 0.4070 +2766 7086 0.4450 +2766 7372 0.4300 +2766 7407 0.4410 +2766 8277 0.4280 +2766 8565 0.4740 +2766 8654 0.9100 +2766 8833 0.9920 +2766 8991 0.5600 +2766 9583 0.9000 +2766 9615 0.5700 +2766 10007 0.4490 +2766 10606 0.4190 +2766 10846 0.9110 +2766 22978 0.9280 +2766 25853 0.4790 +2766 29095 0.4200 +2766 29116 0.4310 +2766 30833 0.9320 +2766 50940 0.9080 +2766 51020 0.4580 +2766 51251 0.9200 +2766 51292 0.9000 +2766 55703 0.4530 +2766 56474 0.4470 +2766 56953 0.9370 +2766 57863 0.4200 +2766 84076 0.4280 +2766 84172 0.4530 +2766 84618 0.9110 +2766 93034 0.9110 +2766 115024 0.9010 +2766 122416 0.4620 +2766 122622 0.9610 +2766 124583 0.9000 +2766 131870 0.9050 +2766 284697 0.4170 +2766 377841 0.9030 +2766 100526794 0.9110 +2767 2768 0.7240 +2767 2769 0.7190 +2767 2770 0.5930 +2767 2771 0.6020 +2767 2773 0.5990 +2767 2774 0.6120 +2767 2775 0.5970 +2767 2776 0.9730 +2767 2778 0.7020 +2767 2779 0.5910 +2767 2780 0.5840 +2767 2781 0.6750 +2767 2782 0.9940 +2767 2783 0.8940 +2767 2784 0.8130 +2767 2785 0.8230 +2767 2786 0.7690 +2767 2787 0.7600 +2767 2788 0.7270 +2767 2790 0.7730 +2767 2791 0.7000 +2767 2792 0.7680 +2767 2793 0.7370 +2767 2798 0.9220 +2767 2864 0.9130 +2767 2869 0.5870 +2767 2911 0.9210 +2767 2915 0.9070 +2767 2925 0.8000 +2767 3059 0.4400 +2767 3265 0.8460 +2767 3269 0.7220 +2767 3356 0.9200 +2767 3357 0.9250 +2767 3358 0.9150 +2767 3417 0.5820 +2767 3418 0.5790 +2767 3708 0.6220 +2767 3709 0.5990 +2767 3710 0.6340 +2767 3717 0.4790 +2767 3718 0.5770 +2767 3791 0.4960 +2767 3815 0.8060 +2767 3845 0.6740 +2767 3973 0.6830 +2767 4089 0.5240 +2767 4286 0.4630 +2767 4292 0.5340 +2767 4763 0.5850 +2767 4851 0.5200 +2767 4869 0.5220 +2767 4893 0.7930 +2767 4921 0.4880 +2767 4923 0.6920 +2767 4988 0.5990 +2767 5021 0.7140 +2767 5028 0.5910 +2767 5029 0.4610 +2767 5082 0.5150 +2767 5156 0.5920 +2767 5173 0.4990 +2767 5290 0.7970 +2767 5295 0.7660 +2767 5296 0.6170 +2767 5319 0.6520 +2767 5320 0.6550 +2767 5321 0.6500 +2767 5322 0.6520 +2767 5330 0.9440 +2767 5331 0.9520 +2767 5332 0.9730 +2767 5333 0.4460 +2767 5335 0.9360 +2767 5336 0.9060 +2767 5443 0.5640 +2767 5578 0.6320 +2767 5604 0.5210 +2767 5605 0.4720 +2767 5724 0.6970 +2767 5728 0.5540 +2767 5731 0.6840 +2767 5733 0.6780 +2767 5737 0.6930 +2767 5739 0.4480 +2767 5741 0.4540 +2767 5745 0.9360 +2767 5781 0.5360 +2767 5979 0.6480 +2767 5996 0.7810 +2767 5997 0.8460 +2767 5998 0.8790 +2767 5999 0.6920 +2767 6000 0.4210 +2767 6003 0.7530 +2767 6004 0.6530 +2767 6098 0.4680 +2767 6376 0.8070 +2767 6566 0.4810 +2767 6598 0.6080 +2767 6654 0.5900 +2767 6714 0.7130 +2767 6794 0.6250 +2767 6865 0.6640 +2767 6869 0.6640 +2767 6870 0.6640 +2767 6915 0.8620 +2767 7015 0.4470 +2767 7157 0.4790 +2767 7201 0.6960 +2767 7204 0.6240 +2767 7253 0.5300 +2767 7289 0.4500 +2767 7299 0.4840 +2767 7349 0.4290 +2767 7852 0.9210 +2767 8314 0.8020 +2767 8398 0.6610 +2767 8399 0.6540 +2767 8490 0.6530 +2767 8503 0.5270 +2767 8605 0.6500 +2767 8681 0.6500 +2767 8698 0.7390 +2767 8775 0.4390 +2767 8786 0.4280 +2767 8801 0.6780 +2767 8802 0.7330 +2767 8997 0.6340 +2767 9002 0.4990 +2767 9247 0.6620 +2767 9444 0.4400 +2767 9628 0.4180 +2767 9630 0.7030 +2767 10287 0.8040 +2767 10672 0.6150 +2767 10681 0.8330 +2767 10800 0.7110 +2767 10887 0.6800 +2767 23236 0.9730 +2767 23365 0.8020 +2767 23451 0.4870 +2767 26166 0.4780 +2767 26279 0.6520 +2767 26575 0.6540 +2767 30814 0.6640 +2767 50487 0.6500 +2767 51764 0.7430 +2767 54331 0.9480 +2767 55188 0.4680 +2767 55294 0.5780 +2767 55970 0.7190 +2767 56413 0.6840 +2767 57105 0.8880 +2767 59345 0.8800 +2767 60626 0.6800 +2767 64407 0.6400 +2767 64600 0.6540 +2767 79577 0.5170 +2767 80790 0.4240 +2767 81579 0.6530 +2767 84634 0.9130 +2767 84647 0.6530 +2767 85397 0.5690 +2767 94235 0.7330 +2767 115557 0.7180 +2767 123745 0.6590 +2767 196528 0.4200 +2767 255189 0.6500 +2767 283748 0.6500 +2767 346562 0.5800 +2767 391013 0.6520 +2767 431704 0.6740 +2767 100137049 0.6500 +2767 105372280 0.6770 +2768 2769 0.6140 +2768 2770 0.6150 +2768 2771 0.6280 +2768 2773 0.6160 +2768 2774 0.6660 +2768 2775 0.6150 +2768 2776 0.8100 +2768 2778 0.8810 +2768 2779 0.5980 +2768 2780 0.5960 +2768 2781 0.5770 +2768 2782 0.8420 +2768 2783 0.7910 +2768 2784 0.8230 +2768 2785 0.7020 +2768 2786 0.7430 +2768 2787 0.7130 +2768 2788 0.7250 +2768 2790 0.6910 +2768 2791 0.7310 +2768 2792 0.8850 +2768 2793 0.7320 +2768 2846 0.9740 +2768 2911 0.9160 +2768 2912 0.6890 +2768 2913 0.6860 +2768 2914 0.6870 +2768 2915 0.6970 +2768 2916 0.6790 +2768 2917 0.6760 +2768 2918 0.6890 +2768 3059 0.5280 +2768 3265 0.6530 +2768 3320 0.5610 +2768 3326 0.4070 +2768 3358 0.4450 +2768 3480 0.9170 +2768 3577 0.7280 +2768 3579 0.8240 +2768 3708 0.4200 +2768 4168 0.4530 +2768 4217 0.4270 +2768 4609 0.4850 +2768 5029 0.4910 +2768 5148 0.4980 +2768 5168 0.4600 +2768 5321 0.6910 +2768 5330 0.4150 +2768 5331 0.4500 +2768 5364 0.6020 +2768 5518 0.6550 +2768 5523 0.4200 +2768 5536 0.4120 +2768 5566 0.5250 +2768 5567 0.5170 +2768 5568 0.5330 +2768 5580 0.6230 +2768 5595 0.5150 +2768 5604 0.4050 +2768 5662 0.4770 +2768 5733 0.6610 +2768 5737 0.7260 +2768 5745 0.9250 +2768 5872 0.4610 +2768 5877 0.6870 +2768 5911 0.4050 +2768 5922 0.9170 +2768 5962 0.5770 +2768 5996 0.7960 +2768 5997 0.5880 +2768 5998 0.5110 +2768 5999 0.6790 +2768 6000 0.7080 +2768 6001 0.6620 +2768 6002 0.6800 +2768 6003 0.8350 +2768 6004 0.6640 +2768 6010 0.7520 +2768 6295 0.5000 +2768 6608 0.7250 +2768 6654 0.6140 +2768 6714 0.7970 +2768 6722 0.4420 +2768 6810 0.4010 +2768 6915 0.7830 +2768 7082 0.8840 +2768 7253 0.5270 +2768 7289 0.4360 +2768 7852 0.9720 +2768 8312 0.4230 +2768 8490 0.6790 +2768 8601 0.6590 +2768 8605 0.6610 +2768 8681 0.6500 +2768 8698 0.9890 +2768 8774 0.6410 +2768 8775 0.7040 +2768 8786 0.7010 +2768 8801 0.6250 +2768 8802 0.7170 +2768 9002 0.6260 +2768 9113 0.4330 +2768 9138 0.9990 +2768 9170 0.9850 +2768 9181 0.4110 +2768 9289 0.9650 +2768 9290 0.9830 +2768 9294 0.9920 +2768 9414 0.5100 +2768 9628 0.7330 +2768 9630 0.6080 +2768 9826 0.9990 +2768 10149 0.6640 +2768 10161 0.9820 +2768 10287 0.6570 +2768 10456 0.4440 +2768 10636 0.4550 +2768 10672 0.9920 +2768 10681 0.8260 +2768 11214 0.9730 +2768 22859 0.7900 +2768 23236 0.4250 +2768 23266 0.7760 +2768 23284 0.7730 +2768 23365 0.9990 +2768 23566 0.8480 +2768 26086 0.4250 +2768 26166 0.4930 +2768 26575 0.6570 +2768 29899 0.5620 +2768 30817 0.8000 +2768 51196 0.4990 +2768 51764 0.6760 +2768 51806 0.4080 +2768 53637 0.9900 +2768 54331 0.8650 +2768 55188 0.5760 +2768 55628 0.4310 +2768 55704 0.6250 +2768 55970 0.9450 +2768 57121 0.9800 +2768 57211 0.4170 +2768 59345 0.7610 +2768 59352 0.4530 +2768 60626 0.8390 +2768 64283 0.6280 +2768 64407 0.6580 +2768 83550 0.4780 +2768 85397 0.6790 +2768 94235 0.6790 +2768 115557 0.5810 +2768 123745 0.6550 +2768 126006 0.4490 +2768 168507 0.6420 +2768 221188 0.4620 +2768 222487 0.4330 +2768 255189 0.6640 +2768 283748 0.6550 +2768 346562 0.5920 +2768 353299 0.5480 +2768 431704 0.7210 +2768 440193 0.4090 +2768 100137049 0.6550 +2768 105372280 0.6670 +2769 2770 0.6050 +2769 2771 0.6210 +2769 2773 0.6040 +2769 2774 0.6630 +2769 2775 0.6070 +2769 2776 0.7290 +2769 2778 0.6190 +2769 2779 0.6830 +2769 2780 0.5870 +2769 2781 0.5920 +2769 2782 0.8200 +2769 2783 0.8120 +2769 2784 0.7980 +2769 2785 0.7560 +2769 2786 0.7610 +2769 2787 0.7150 +2769 2788 0.7610 +2769 2790 0.7470 +2769 2791 0.7270 +2769 2792 0.7420 +2769 2793 0.7780 +2769 2864 0.5550 +2769 2869 0.5610 +2769 2911 0.7340 +2769 2914 0.4580 +2769 2915 0.7100 +2769 2925 0.7000 +2769 3265 0.5720 +2769 3269 0.7110 +2769 3356 0.7320 +2769 3357 0.7260 +2769 3358 0.7160 +2769 3576 0.4890 +2769 3579 0.5550 +2769 3708 0.6090 +2769 3709 0.5780 +2769 3710 0.6230 +2769 3973 0.6560 +2769 4286 0.5040 +2769 4923 0.7020 +2769 4988 0.6420 +2769 5021 0.6950 +2769 5028 0.5700 +2769 5082 0.5000 +2769 5173 0.5470 +2769 5290 0.5460 +2769 5295 0.5080 +2769 5296 0.5080 +2769 5321 0.5170 +2769 5330 0.9760 +2769 5331 0.9480 +2769 5332 0.9400 +2769 5443 0.5460 +2769 5578 0.5690 +2769 5724 0.7070 +2769 5731 0.7190 +2769 5733 0.7180 +2769 5737 0.6870 +2769 5996 0.6500 +2769 5997 0.7400 +2769 5998 0.6090 +2769 5999 0.6820 +2769 6003 0.6360 +2769 6004 0.6510 +2769 6010 0.5180 +2769 6654 0.5440 +2769 6714 0.5890 +2769 6865 0.6780 +2769 6869 0.6920 +2769 6870 0.6610 +2769 6915 0.7390 +2769 7201 0.6780 +2769 7204 0.5590 +2769 7265 0.5360 +2769 7434 0.4070 +2769 7852 0.7370 +2769 7942 0.4850 +2769 8490 0.6460 +2769 8503 0.5100 +2769 8620 0.7050 +2769 8698 0.8920 +2769 8801 0.5070 +2769 8802 0.5320 +2769 8997 0.5540 +2769 9002 0.5000 +2769 9170 0.7380 +2769 9630 0.8320 +2769 10287 0.6780 +2769 10672 0.6010 +2769 10681 0.8390 +2769 10800 0.7330 +2769 10886 0.8150 +2769 23236 0.9470 +2769 23365 0.4100 +2769 26575 0.6420 +2769 27042 0.4020 +2769 51764 0.6770 +2769 54331 0.7740 +2769 55188 0.4970 +2769 55970 0.7050 +2769 56413 0.7030 +2769 57105 0.7600 +2769 59345 0.8040 +2769 60626 0.5700 +2769 64106 0.5920 +2769 64407 0.6600 +2769 80834 0.5280 +2769 83756 0.5080 +2769 83857 0.4470 +2769 94235 0.7140 +2769 115557 0.7260 +2769 339403 0.9270 +2769 346562 0.5980 +2769 431704 0.6470 +2769 100128927 0.4150 +2769 105372280 0.6770 +2770 2771 0.9750 +2770 2773 0.9840 +2770 2774 0.7480 +2770 2775 0.9080 +2770 2776 0.7440 +2770 2778 0.7280 +2770 2779 0.5560 +2770 2780 0.5510 +2770 2781 0.5610 +2770 2782 0.9990 +2770 2783 0.9790 +2770 2784 0.8570 +2770 2785 0.9380 +2770 2786 0.9720 +2770 2787 0.9260 +2770 2788 0.9730 +2770 2790 0.9120 +2770 2791 0.8480 +2770 2792 0.9840 +2770 2793 0.8180 +2770 2826 0.6810 +2770 2829 0.6890 +2770 2833 0.6860 +2770 2840 0.9090 +2770 2852 0.4030 +2770 2867 0.6500 +2770 2911 0.9070 +2770 2912 0.9900 +2770 2913 0.9200 +2770 3055 0.9070 +2770 3062 0.9200 +2770 3265 0.9230 +2770 3350 0.9700 +2770 3351 0.7280 +2770 3352 0.9670 +2770 3354 0.9670 +2770 3355 0.9680 +2770 3356 0.4950 +2770 3360 0.9100 +2770 3361 0.9760 +2770 3480 0.9370 +2770 3576 0.8150 +2770 3577 0.6870 +2770 3579 0.9690 +2770 3630 0.4510 +2770 3708 0.4770 +2770 3709 0.4870 +2770 3735 0.4540 +2770 3760 0.9020 +2770 3762 0.9040 +2770 3763 0.9030 +2770 3765 0.9180 +2770 3845 0.9260 +2770 4067 0.9090 +2770 4323 0.9040 +2770 4324 0.9030 +2770 4325 0.9060 +2770 4326 0.9030 +2770 4543 0.9760 +2770 4544 0.9750 +2770 4846 0.9060 +2770 4852 0.8630 +2770 4886 0.9920 +2770 4887 0.9200 +2770 4893 0.9180 +2770 4923 0.9140 +2770 4926 0.6440 +2770 4985 0.9910 +2770 4988 0.9920 +2770 5021 0.9090 +2770 5148 0.5370 +2770 5290 0.9140 +2770 5291 0.9420 +2770 5293 0.9030 +2770 5294 0.9130 +2770 5295 0.9120 +2770 5296 0.9020 +2770 5321 0.6780 +2770 5330 0.9260 +2770 5331 0.9300 +2770 5332 0.9360 +2770 5368 0.9500 +2770 5443 0.8160 +2770 5539 0.8060 +2770 5566 0.7390 +2770 5567 0.7570 +2770 5568 0.7430 +2770 5578 0.7320 +2770 5579 0.7190 +2770 5581 0.6820 +2770 5582 0.7300 +2770 5594 0.9310 +2770 5595 0.9530 +2770 5597 0.4460 +2770 5599 0.6670 +2770 5600 0.7330 +2770 5601 0.6500 +2770 5603 0.7280 +2770 5635 0.4230 +2770 5729 0.4020 +2770 5731 0.9090 +2770 5732 0.9090 +2770 5733 0.9940 +2770 5734 0.9110 +2770 5745 0.9380 +2770 5877 0.4230 +2770 5908 0.4830 +2770 5996 0.9780 +2770 5997 0.4660 +2770 5998 0.9360 +2770 5999 0.9320 +2770 6000 0.8360 +2770 6001 0.7610 +2770 6002 0.9610 +2770 6003 0.6880 +2770 6004 0.9770 +2770 6010 0.9460 +2770 6300 0.7280 +2770 6323 0.6650 +2770 6347 0.8050 +2770 6359 0.8000 +2770 6376 0.8000 +2770 6387 0.4420 +2770 6608 0.9690 +2770 6616 0.4990 +2770 6654 0.5790 +2770 6714 0.9160 +2770 6750 0.8770 +2770 6751 0.9230 +2770 6752 0.9910 +2770 6753 0.9170 +2770 6754 0.9130 +2770 6755 0.9170 +2770 6801 0.5290 +2770 6804 0.4180 +2770 6812 0.4390 +2770 6844 0.4340 +2770 6861 0.4160 +2770 7253 0.4570 +2770 7345 0.4150 +2770 7349 0.4290 +2770 7781 0.4060 +2770 7852 0.9440 +2770 8490 0.7370 +2770 8503 0.9150 +2770 8601 0.7890 +2770 8605 0.6550 +2770 8681 0.6500 +2770 8698 0.9090 +2770 8786 0.6840 +2770 8787 0.9350 +2770 8802 0.8090 +2770 8843 0.6840 +2770 9170 0.6980 +2770 9254 0.5350 +2770 9294 0.9110 +2770 9568 0.9920 +2770 9628 0.6850 +2770 9630 0.5880 +2770 9715 0.5560 +2770 10287 0.8240 +2770 10411 0.9070 +2770 10636 0.9960 +2770 10663 0.6810 +2770 10672 0.6600 +2770 10681 0.9080 +2770 10803 0.6910 +2770 10893 0.9030 +2770 11069 0.9080 +2770 11182 0.4050 +2770 11251 0.5480 +2770 22859 0.7570 +2770 23236 0.9280 +2770 23266 0.7660 +2770 23284 0.7560 +2770 23533 0.9250 +2770 23608 0.4360 +2770 26086 0.9890 +2770 26166 0.4020 +2770 26575 0.7080 +2770 27198 0.6930 +2770 27202 0.6130 +2770 29899 0.8870 +2770 51083 0.8000 +2770 51289 0.9180 +2770 51655 0.9410 +2770 51764 0.8220 +2770 53637 0.9900 +2770 54112 0.9160 +2770 54331 0.9980 +2770 54795 0.4060 +2770 55188 0.4940 +2770 55251 0.4330 +2770 55704 0.4230 +2770 55811 0.6700 +2770 55819 0.5350 +2770 55970 0.8830 +2770 56670 0.6910 +2770 57007 0.4180 +2770 57670 0.4180 +2770 59336 0.4050 +2770 59345 0.9900 +2770 59350 0.9120 +2770 60626 0.9520 +2770 63940 0.7690 +2770 64386 0.9030 +2770 64407 0.7610 +2770 64805 0.9150 +2770 64857 0.5580 +2770 85397 0.6650 +2770 94235 0.8060 +2770 116512 0.9120 +2770 117194 0.9030 +2770 123745 0.6550 +2770 124274 0.9090 +2770 126006 0.6730 +2770 146850 0.9000 +2770 147991 0.4350 +2770 168507 0.5860 +2770 196883 0.7490 +2770 222545 0.5620 +2770 255189 0.6550 +2770 266977 0.9120 +2770 283748 0.6550 +2770 338442 0.6810 +2770 339403 0.9150 +2770 346562 0.7300 +2770 353299 0.4160 +2770 431704 0.6850 +2770 648791 0.4170 +2770 100137049 0.6550 +2770 100506013 0.4290 +2770 100526739 0.8060 +2770 100996758 0.9140 +2770 105372280 0.6600 +2771 2773 0.9920 +2771 2774 0.7460 +2771 2775 0.8900 +2771 2776 0.7450 +2771 2778 0.6260 +2771 2779 0.5720 +2771 2780 0.5550 +2771 2781 0.5600 +2771 2782 0.9990 +2771 2783 0.9820 +2771 2784 0.9470 +2771 2785 0.9170 +2771 2786 0.9500 +2771 2787 0.9280 +2771 2788 0.9470 +2771 2790 0.9400 +2771 2791 0.8220 +2771 2792 0.8120 +2771 2793 0.7940 +2771 2826 0.6810 +2771 2829 0.6940 +2771 2833 0.6990 +2771 2867 0.6530 +2771 2911 0.9120 +2771 2912 0.9100 +2771 2913 0.9030 +2771 3055 0.9160 +2771 3265 0.9220 +2771 3326 0.5750 +2771 3350 0.7040 +2771 3351 0.7040 +2771 3352 0.6860 +2771 3354 0.6840 +2771 3355 0.6910 +2771 3361 0.6810 +2771 3373 0.4630 +2771 3480 0.9160 +2771 3577 0.8450 +2771 3579 0.8110 +2771 3630 0.4490 +2771 3684 0.4050 +2771 3708 0.4510 +2771 3709 0.4320 +2771 3760 0.9030 +2771 3762 0.9070 +2771 3763 0.9030 +2771 3765 0.9200 +2771 3845 0.9380 +2771 4067 0.9190 +2771 4215 0.4040 +2771 4323 0.9060 +2771 4324 0.9030 +2771 4325 0.9030 +2771 4326 0.9030 +2771 4543 0.8370 +2771 4544 0.7930 +2771 4846 0.9060 +2771 4886 0.9140 +2771 4893 0.9270 +2771 4924 0.4550 +2771 4985 0.9160 +2771 4988 0.9170 +2771 5021 0.9090 +2771 5143 0.5240 +2771 5148 0.5410 +2771 5290 0.9150 +2771 5291 0.9110 +2771 5293 0.9100 +2771 5294 0.9130 +2771 5295 0.9150 +2771 5296 0.9020 +2771 5321 0.6630 +2771 5330 0.9340 +2771 5331 0.9260 +2771 5332 0.9240 +2771 5368 0.4100 +2771 5534 0.4050 +2771 5566 0.7440 +2771 5567 0.7380 +2771 5568 0.7290 +2771 5578 0.7260 +2771 5579 0.7300 +2771 5581 0.6770 +2771 5582 0.6830 +2771 5594 0.9340 +2771 5595 0.9370 +2771 5599 0.6710 +2771 5600 0.7390 +2771 5601 0.6620 +2771 5603 0.7280 +2771 5731 0.9090 +2771 5732 0.9100 +2771 5733 0.9140 +2771 5734 0.9110 +2771 5745 0.9100 +2771 5781 0.4160 +2771 5788 0.4660 +2771 5880 0.4220 +2771 5996 0.8060 +2771 5997 0.6680 +2771 5998 0.9530 +2771 5999 0.8080 +2771 6000 0.7450 +2771 6001 0.6920 +2771 6002 0.7550 +2771 6003 0.8090 +2771 6004 0.8110 +2771 6010 0.4260 +2771 6262 0.4220 +2771 6300 0.7280 +2771 6323 0.6580 +2771 6405 0.5570 +2771 6616 0.5070 +2771 6654 0.5880 +2771 6714 0.9200 +2771 6751 0.9130 +2771 6752 0.9370 +2771 6753 0.9130 +2771 6755 0.9150 +2771 6801 0.5590 +2771 6804 0.4180 +2771 6812 0.4670 +2771 6844 0.4970 +2771 6861 0.4160 +2771 7094 0.4180 +2771 7205 0.4530 +2771 7253 0.4280 +2771 7852 0.9230 +2771 7869 0.4760 +2771 8490 0.8370 +2771 8503 0.9020 +2771 8601 0.8200 +2771 8605 0.6560 +2771 8622 0.4910 +2771 8633 0.4930 +2771 8681 0.6500 +2771 8698 0.9120 +2771 8786 0.7250 +2771 8787 0.9420 +2771 8802 0.5750 +2771 8843 0.6840 +2771 9254 0.5350 +2771 9260 0.4010 +2771 9294 0.9170 +2771 9568 0.9290 +2771 9628 0.7490 +2771 9630 0.5910 +2771 10287 0.8930 +2771 10399 0.5730 +2771 10411 0.9120 +2771 10509 0.5970 +2771 10636 0.7280 +2771 10663 0.6880 +2771 10672 0.6270 +2771 10681 0.9110 +2771 10803 0.7050 +2771 10893 0.9030 +2771 11069 0.9060 +2771 11186 0.4030 +2771 22859 0.7520 +2771 23035 0.4010 +2771 23236 0.9260 +2771 23266 0.7550 +2771 23284 0.7520 +2771 23533 0.9230 +2771 26086 0.9690 +2771 26166 0.4020 +2771 26575 0.6980 +2771 27198 0.6860 +2771 29899 0.9560 +2771 51289 0.9090 +2771 51393 0.4090 +2771 51655 0.9180 +2771 51764 0.7620 +2771 53637 0.9100 +2771 54331 0.9740 +2771 54795 0.4170 +2771 55188 0.5550 +2771 55704 0.4430 +2771 55811 0.6720 +2771 55970 0.8770 +2771 56670 0.6810 +2771 59345 0.9770 +2771 59350 0.9110 +2771 60626 0.9480 +2771 63940 0.6060 +2771 64386 0.9050 +2771 64407 0.7840 +2771 64805 0.9460 +2771 83442 0.5180 +2771 85397 0.6960 +2771 90249 0.5580 +2771 90993 0.4150 +2771 91749 0.4390 +2771 94235 0.7790 +2771 120892 0.5830 +2771 123745 0.6550 +2771 126006 0.7080 +2771 146850 0.9010 +2771 168507 0.6240 +2771 196883 0.7550 +2771 219699 0.4890 +2771 255189 0.6850 +2771 283748 0.6550 +2771 338442 0.6830 +2771 339403 0.9090 +2771 346562 0.5480 +2771 353299 0.4160 +2771 431704 0.7210 +2771 100137049 0.6790 +2771 100506013 0.4070 +2771 105372280 0.6600 +2773 2774 0.7610 +2773 2775 0.9040 +2773 2776 0.7450 +2773 2778 0.6230 +2773 2779 0.5610 +2773 2780 0.7270 +2773 2781 0.5600 +2773 2782 0.9990 +2773 2783 0.9830 +2773 2784 0.8900 +2773 2785 0.9470 +2773 2786 0.9650 +2773 2787 0.9460 +2773 2788 0.9520 +2773 2790 0.9460 +2773 2791 0.8850 +2773 2792 0.8060 +2773 2793 0.7830 +2773 2826 0.6810 +2773 2829 0.6890 +2773 2833 0.6810 +2773 2867 0.6510 +2773 2911 0.9030 +2773 2912 0.9030 +2773 2913 0.9030 +2773 2914 0.9040 +2773 3055 0.9100 +2773 3091 0.4420 +2773 3265 0.9240 +2773 3326 0.4980 +2773 3350 0.7210 +2773 3351 0.7000 +2773 3352 0.6860 +2773 3354 0.6840 +2773 3355 0.6840 +2773 3361 0.6810 +2773 3480 0.9100 +2773 3577 0.6820 +2773 3579 0.6960 +2773 3708 0.4430 +2773 3709 0.4370 +2773 3759 0.4210 +2773 3760 0.9120 +2773 3762 0.9020 +2773 3763 0.9030 +2773 3765 0.9190 +2773 3845 0.9360 +2773 4067 0.9130 +2773 4323 0.9030 +2773 4324 0.9030 +2773 4325 0.9030 +2773 4326 0.9030 +2773 4543 0.8310 +2773 4544 0.7530 +2773 4609 0.4870 +2773 4846 0.9060 +2773 4886 0.9170 +2773 4893 0.9270 +2773 4985 0.9110 +2773 4988 0.9110 +2773 5021 0.9100 +2773 5148 0.5370 +2773 5290 0.9230 +2773 5291 0.9150 +2773 5293 0.9030 +2773 5294 0.9130 +2773 5295 0.9100 +2773 5296 0.9000 +2773 5321 0.6660 +2773 5330 0.9250 +2773 5331 0.9350 +2773 5332 0.9530 +2773 5368 0.4580 +2773 5566 0.7210 +2773 5567 0.7330 +2773 5568 0.7180 +2773 5577 0.4040 +2773 5578 0.6920 +2773 5579 0.6930 +2773 5581 0.6860 +2773 5582 0.6600 +2773 5594 0.9340 +2773 5595 0.9290 +2773 5599 0.6890 +2773 5600 0.7280 +2773 5601 0.6770 +2773 5603 0.7330 +2773 5686 0.7700 +2773 5731 0.9090 +2773 5732 0.9090 +2773 5733 0.9150 +2773 5734 0.9140 +2773 5745 0.9100 +2773 5877 0.4900 +2773 5909 0.5390 +2773 5996 0.8120 +2773 5997 0.9760 +2773 5998 0.9560 +2773 5999 0.7600 +2773 6000 0.7730 +2773 6001 0.9750 +2773 6002 0.9580 +2773 6003 0.6920 +2773 6004 0.8630 +2773 6010 0.4040 +2773 6300 0.7320 +2773 6323 0.6580 +2773 6654 0.6090 +2773 6714 0.9110 +2773 6750 0.8000 +2773 6751 0.9130 +2773 6752 0.9910 +2773 6753 0.9130 +2773 6755 0.9130 +2773 6801 0.5350 +2773 6845 0.4520 +2773 7253 0.4470 +2773 7347 0.4110 +2773 7349 0.4290 +2773 7852 0.9150 +2773 8490 0.8230 +2773 8503 0.9150 +2773 8601 0.6860 +2773 8605 0.6550 +2773 8681 0.6500 +2773 8698 0.9090 +2773 8766 0.4980 +2773 8786 0.6950 +2773 8787 0.9350 +2773 8802 0.5580 +2773 8843 0.6880 +2773 9294 0.9090 +2773 9568 0.9360 +2773 9628 0.7070 +2773 9630 0.5870 +2773 10287 0.9470 +2773 10411 0.9070 +2773 10636 0.9470 +2773 10663 0.6810 +2773 10672 0.6660 +2773 10681 0.8550 +2773 10803 0.6870 +2773 10893 0.9030 +2773 11069 0.9050 +2773 22859 0.7520 +2773 23236 0.9290 +2773 23266 0.7520 +2773 23284 0.7520 +2773 23533 0.9160 +2773 25861 0.6050 +2773 26086 0.9890 +2773 26166 0.4020 +2773 26575 0.7240 +2773 27198 0.6900 +2773 29899 0.9360 +2773 51289 0.9090 +2773 51361 0.5600 +2773 51655 0.9270 +2773 51764 0.7880 +2773 53637 0.9100 +2773 54331 0.9670 +2773 55188 0.8080 +2773 55704 0.9180 +2773 55811 0.6670 +2773 55970 0.8140 +2773 56670 0.6810 +2773 59345 0.9890 +2773 59350 0.9120 +2773 60626 0.9750 +2773 63940 0.7860 +2773 64386 0.9030 +2773 64407 0.8340 +2773 64805 0.9050 +2773 80219 0.4320 +2773 83857 0.4400 +2773 84065 0.4310 +2773 85397 0.9660 +2773 85461 0.4240 +2773 94235 0.7480 +2773 120892 0.4080 +2773 123745 0.6550 +2773 124930 0.5450 +2773 126006 0.7940 +2773 146850 0.9000 +2773 196883 0.7340 +2773 255189 0.6550 +2773 283234 0.6730 +2773 283748 0.6550 +2773 338442 0.6810 +2773 339403 0.9170 +2773 346562 0.5480 +2773 353299 0.4160 +2773 431704 0.6950 +2773 440193 0.8850 +2773 100137049 0.6550 +2773 100506013 0.4290 +2773 104909134 0.4020 +2773 105372280 0.6600 +2774 2775 0.6250 +2774 2776 0.6130 +2774 2778 0.9750 +2774 2779 0.6130 +2774 2780 0.6650 +2774 2781 0.6660 +2774 2782 0.9780 +2774 2783 0.8740 +2774 2784 0.8220 +2774 2785 0.7990 +2774 2786 0.7870 +2774 2787 0.7980 +2774 2788 0.9590 +2774 2790 0.7930 +2774 2791 0.7980 +2774 2792 0.8160 +2774 2793 0.8280 +2774 3208 0.4560 +2774 3265 0.5400 +2774 3274 0.7990 +2774 3356 0.4930 +2774 3358 0.6610 +2774 3360 0.6150 +2774 3361 0.7190 +2774 3362 0.7160 +2774 3363 0.7660 +2774 3612 0.4390 +2774 3613 0.8450 +2774 4160 0.7710 +2774 4975 0.5200 +2774 4988 0.5020 +2774 4991 0.8230 +2774 4992 0.7060 +2774 4993 0.7470 +2774 4994 0.6860 +2774 5119 0.4220 +2774 5443 0.4620 +2774 5533 0.4790 +2774 5732 0.6990 +2774 5733 0.4880 +2774 5734 0.7020 +2774 5901 0.5120 +2774 5999 0.4310 +2774 6531 0.4830 +2774 6654 0.5700 +2774 6872 0.4470 +2774 7434 0.4040 +2774 7441 0.4190 +2774 7932 0.6560 +2774 8383 0.7160 +2774 8386 0.7770 +2774 8387 0.6990 +2774 8388 0.6990 +2774 8390 0.7680 +2774 8575 0.5070 +2774 8590 0.7010 +2774 8910 0.6240 +2774 9038 0.4600 +2774 9289 0.4100 +2774 9630 0.6210 +2774 9657 0.5070 +2774 9722 0.4220 +2774 9738 0.4350 +2774 9757 0.4310 +2774 9825 0.6190 +2774 10109 0.5600 +2774 10149 0.7640 +2774 10382 0.6260 +2774 10672 0.6640 +2774 10681 0.8520 +2774 10798 0.6880 +2774 10846 0.4630 +2774 10916 0.7480 +2774 10941 0.4620 +2774 23538 0.6880 +2774 23566 0.5440 +2774 25792 0.7200 +2774 25953 0.4360 +2774 26086 0.4290 +2774 26188 0.6900 +2774 26189 0.6780 +2774 26211 0.6890 +2774 26212 0.7010 +2774 26219 0.6860 +2774 26245 0.6860 +2774 26246 0.6860 +2774 26248 0.7130 +2774 26333 0.6860 +2774 26338 0.6860 +2774 26339 0.6860 +2774 26341 0.6860 +2774 26476 0.7060 +2774 26493 0.6860 +2774 26494 0.7560 +2774 26496 0.6880 +2774 26497 0.6860 +2774 26529 0.6860 +2774 26531 0.7530 +2774 26532 0.6860 +2774 26533 0.7820 +2774 26534 0.7030 +2774 26538 0.6880 +2774 26539 0.7460 +2774 26595 0.6890 +2774 26648 0.7560 +2774 26658 0.6870 +2774 26659 0.7300 +2774 26664 0.7430 +2774 26686 0.6910 +2774 26687 0.7050 +2774 26689 0.6910 +2774 26692 0.6850 +2774 26693 0.7130 +2774 26707 0.6500 +2774 26716 0.8270 +2774 26735 0.6900 +2774 26737 0.6860 +2774 26740 0.6860 +2774 27159 0.4540 +2774 29801 0.4240 +2774 51764 0.9800 +2774 54331 0.8080 +2774 55145 0.8060 +2774 55188 0.8020 +2774 55970 0.7950 +2774 56656 0.6950 +2774 57101 0.4820 +2774 57132 0.5110 +2774 57211 0.4880 +2774 59345 0.8640 +2774 60626 0.6850 +2774 63982 0.8010 +2774 64641 0.4110 +2774 65258 0.8340 +2774 79290 0.7580 +2774 79295 0.6860 +2774 79310 0.6860 +2774 79317 0.6500 +2774 79324 0.7030 +2774 79339 0.7470 +2774 79345 0.7030 +2774 79346 0.6950 +2774 79473 0.6900 +2774 79490 0.7030 +2774 79541 0.7810 +2774 79544 0.6550 +2774 79549 0.6860 +2774 79734 0.4180 +2774 79870 0.4370 +2774 81050 0.6860 +2774 81099 0.6910 +2774 81127 0.6910 +2774 81168 0.6500 +2774 81282 0.7030 +2774 81285 0.8450 +2774 81300 0.6910 +2774 81309 0.6590 +2774 81318 0.7000 +2774 81327 0.7000 +2774 81341 0.6500 +2774 81392 0.7570 +2774 81399 0.6940 +2774 81442 0.6950 +2774 81448 0.7550 +2774 81466 0.6860 +2774 81469 0.6860 +2774 81470 0.6860 +2774 81696 0.6900 +2774 81697 0.7010 +2774 81797 0.6990 +2774 83857 0.8730 +2774 84873 0.4660 +2774 90507 0.5190 +2774 91752 0.4240 +2774 94235 0.8270 +2774 112476 0.4800 +2774 119559 0.4180 +2774 119678 0.6990 +2774 119679 0.6990 +2774 119682 0.7420 +2774 119687 0.7030 +2774 119692 0.7030 +2774 119694 0.7030 +2774 119695 0.7020 +2774 119749 0.7430 +2774 119764 0.7980 +2774 119765 0.7920 +2774 119772 0.6950 +2774 119774 0.6950 +2774 120065 0.7000 +2774 120066 0.7740 +2774 120586 0.6900 +2774 120775 0.7140 +2774 120776 0.6950 +2774 120787 0.7260 +2774 120793 0.7440 +2774 121129 0.7580 +2774 121130 0.6880 +2774 121275 0.7120 +2774 121364 0.7150 +2774 122740 0.6500 +2774 122742 0.6500 +2774 122748 0.6950 +2774 122786 0.5360 +2774 124538 0.6910 +2774 125958 0.7460 +2774 125962 0.6860 +2774 125963 0.6990 +2774 126370 0.6860 +2774 126541 0.7110 +2774 127059 0.6860 +2774 127062 0.6860 +2774 127064 0.6500 +2774 127066 0.6860 +2774 127068 0.6900 +2774 127069 0.6900 +2774 127077 0.6860 +2774 127385 0.8080 +2774 127608 0.6860 +2774 127623 0.6860 +2774 128360 0.6860 +2774 128366 0.6900 +2774 128367 0.6860 +2774 128368 0.6860 +2774 128372 0.6950 +2774 130075 0.7580 +2774 134083 0.7000 +2774 134864 0.4150 +2774 135924 0.6860 +2774 135941 0.7260 +2774 135946 0.6860 +2774 135948 0.6890 +2774 138799 0.6950 +2774 138802 0.6950 +2774 138804 0.6950 +2774 138805 0.6950 +2774 138881 0.6900 +2774 138883 0.6860 +2774 139378 0.4660 +2774 139760 0.6890 +2774 143496 0.6970 +2774 143503 0.8110 +2774 144124 0.7460 +2774 144125 0.6940 +2774 150681 0.6510 +2774 151306 0.7890 +2774 158131 0.6900 +2774 162998 0.6990 +2774 196335 0.6620 +2774 196883 0.9580 +2774 219417 0.6860 +2774 219428 0.6790 +2774 219429 0.6600 +2774 219431 0.6910 +2774 219436 0.6960 +2774 219437 0.7330 +2774 219438 0.7300 +2774 219447 0.6880 +2774 219453 0.6950 +2774 219469 0.6900 +2774 219473 0.7060 +2774 219477 0.6500 +2774 219479 0.6860 +2774 219482 0.6500 +2774 219484 0.6680 +2774 219487 0.6890 +2774 219493 0.6990 +2774 219858 0.6860 +2774 219869 0.6960 +2774 219870 0.7140 +2774 219874 0.6860 +2774 219875 0.6910 +2774 219952 0.6860 +2774 219954 0.6860 +2774 219956 0.6860 +2774 219957 0.6950 +2774 219960 0.6500 +2774 219965 0.7090 +2774 219968 0.7090 +2774 219981 0.7510 +2774 219982 0.7540 +2774 219983 0.6910 +2774 219986 0.6910 +2774 221188 0.4450 +2774 222487 0.4260 +2774 254786 0.6860 +2774 254879 0.6860 +2774 254973 0.6900 +2774 255725 0.7120 +2774 256148 0.7370 +2774 267012 0.4240 +2774 282763 0.7350 +2774 282770 0.6880 +2774 282775 0.6900 +2774 283092 0.6860 +2774 283093 0.6950 +2774 283159 0.6920 +2774 283160 0.6920 +2774 283162 0.7530 +2774 283297 0.7380 +2774 283365 0.6860 +2774 283383 0.6380 +2774 283694 0.6910 +2774 284383 0.6900 +2774 284433 0.6880 +2774 284521 0.6860 +2774 284532 0.6860 +2774 285659 0.6860 +2774 286362 0.6950 +2774 319100 0.5350 +2774 338662 0.6920 +2774 338674 0.6900 +2774 338675 0.6960 +2774 338751 0.7020 +2774 338755 0.7160 +2774 340980 0.6970 +2774 341152 0.7000 +2774 341276 0.7060 +2774 341416 0.7030 +2774 341418 0.6920 +2774 341799 0.6860 +2774 343169 0.6980 +2774 343170 0.6860 +2774 343171 0.6950 +2774 343172 0.6500 +2774 343173 0.6900 +2774 343563 0.6900 +2774 346517 0.6860 +2774 346525 0.7110 +2774 346562 0.6070 +2774 347168 0.6900 +2774 347169 0.6990 +2774 347468 0.6950 +2774 387748 0.6670 +2774 388761 0.6860 +2774 390036 0.7070 +2774 390037 0.7290 +2774 390038 0.6910 +2774 390054 0.7470 +2774 390058 0.7030 +2774 390059 0.7030 +2774 390061 0.7060 +2774 390063 0.7810 +2774 390064 0.7030 +2774 390066 0.7600 +2774 390067 0.6970 +2774 390072 0.6900 +2774 390075 0.6900 +2774 390077 0.6900 +2774 390078 0.7380 +2774 390079 0.7130 +2774 390081 0.7550 +2774 390082 0.6990 +2774 390083 0.6550 +2774 390084 0.6720 +2774 390093 0.7790 +2774 390113 0.7380 +2774 390142 0.6960 +2774 390144 0.7110 +2774 390148 0.6860 +2774 390151 0.6900 +2774 390152 0.6900 +2774 390155 0.6860 +2774 390157 0.6950 +2774 390162 0.6500 +2774 390168 0.7470 +2774 390174 0.7470 +2774 390181 0.7090 +2774 390190 0.7090 +2774 390191 0.7090 +2774 390195 0.7640 +2774 390197 0.6910 +2774 390199 0.6910 +2774 390201 0.6870 +2774 390260 0.7900 +2774 390261 0.6860 +2774 390264 0.7120 +2774 390265 0.7350 +2774 390271 0.6890 +2774 390275 0.6920 +2774 390313 0.4300 +2774 390321 0.7710 +2774 390323 0.7080 +2774 390326 0.6910 +2774 390327 0.6860 +2774 390429 0.6910 +2774 390431 0.6500 +2774 390433 0.6500 +2774 390437 0.6910 +2774 390445 0.7780 +2774 390538 0.6910 +2774 390648 0.6940 +2774 390649 0.6940 +2774 390714 0.4190 +2774 390883 0.6860 +2774 390892 0.6870 +2774 391107 0.7060 +2774 391109 0.6960 +2774 391112 0.7010 +2774 391114 0.6500 +2774 391189 0.7080 +2774 391190 0.7490 +2774 391192 0.7140 +2774 391194 0.6860 +2774 391195 0.6500 +2774 391196 0.7260 +2774 391211 0.6860 +2774 392138 0.7110 +2774 392309 0.7620 +2774 392376 0.6950 +2774 392390 0.6900 +2774 392391 0.7140 +2774 392392 0.6900 +2774 393046 0.7880 +2774 401427 0.7110 +2774 401665 0.6860 +2774 401666 0.7030 +2774 401667 0.7030 +2774 401992 0.6860 +2774 401993 0.6900 +2774 401994 0.6860 +2774 402135 0.7570 +2774 402317 0.7590 +2774 403239 0.6860 +2774 403244 0.6860 +2774 403253 0.7400 +2774 403273 0.6860 +2774 403274 0.6860 +2774 403277 0.6860 +2774 403278 0.6950 +2774 403282 0.6910 +2774 403284 0.6880 +2774 440153 0.6860 +2774 441308 0.6940 +2774 441608 0.7090 +2774 441670 0.7010 +2774 441933 0.7090 +2774 442184 0.7010 +2774 442185 0.6500 +2774 442186 0.6720 +2774 442191 0.6860 +2774 442194 0.6900 +2774 442361 0.7110 +2774 574537 0.4010 +2774 646019 0.4370 +2774 102723407 0.4190 +2774 102723532 0.6910 +2774 104909134 0.4750 +2774 105369274 0.6910 +2774 105372280 0.7370 +2775 2776 0.8310 +2775 2778 0.6320 +2775 2779 0.5590 +2775 2780 0.7600 +2775 2781 0.6010 +2775 2782 0.9960 +2775 2783 0.8690 +2775 2784 0.9200 +2775 2785 0.9250 +2775 2786 0.8810 +2775 2787 0.7350 +2775 2788 0.7830 +2775 2790 0.7670 +2775 2791 0.7300 +2775 2792 0.8670 +2775 2793 0.8800 +2775 2893 0.4230 +2775 2898 0.5200 +2775 2906 0.4710 +2775 2912 0.4530 +2775 2914 0.4400 +2775 2916 0.6100 +2775 2917 0.4250 +2775 2918 0.5690 +2775 3064 0.4280 +2775 3265 0.6460 +2775 3350 0.4100 +2775 3351 0.8600 +2775 3357 0.5640 +2775 3708 0.4860 +2775 3709 0.4750 +2775 3763 0.5190 +2775 3765 0.4300 +2775 3785 0.4950 +2775 4836 0.6010 +2775 4975 0.5750 +2775 4978 0.5140 +2775 4985 0.4250 +2775 4988 0.5990 +2775 5145 0.6320 +2775 5148 0.7640 +2775 5152 0.4970 +2775 5158 0.6260 +2775 5330 0.8640 +2775 5331 0.6750 +2775 5368 0.4750 +2775 5540 0.4260 +2775 5566 0.4720 +2775 5567 0.4870 +2775 5568 0.4700 +2775 5595 0.4200 +2775 5733 0.5010 +2775 5789 0.4100 +2775 5832 0.5110 +2775 5909 0.4010 +2775 5996 0.6610 +2775 5997 0.6580 +2775 5998 0.5550 +2775 5999 0.9890 +2775 6000 0.9810 +2775 6001 0.7910 +2775 6002 0.7560 +2775 6003 0.6610 +2775 6004 0.9930 +2775 6010 0.7660 +2775 6295 0.4600 +2775 6323 0.4380 +2775 6326 0.4820 +2775 6334 0.4270 +2775 6416 0.5100 +2775 6566 0.4720 +2775 6616 0.4550 +2775 6654 0.5900 +2775 6714 0.4660 +2775 6792 0.4280 +2775 6812 0.5750 +2775 6844 0.5400 +2775 6853 0.4070 +2775 6855 0.5720 +2775 6857 0.4030 +2775 6863 0.4310 +2775 7070 0.4450 +2775 7082 0.4870 +2775 7253 0.4790 +2775 7345 0.4700 +2775 7474 0.5740 +2775 7481 0.5560 +2775 7855 0.6140 +2775 7976 0.5580 +2775 8312 0.7580 +2775 8321 0.4410 +2775 8322 0.6080 +2775 8323 0.5680 +2775 8490 0.8060 +2775 8601 0.7620 +2775 8698 0.5150 +2775 8786 0.7560 +2775 8787 0.6520 +2775 8801 0.6690 +2775 8802 0.7370 +2775 9397 0.5890 +2775 9568 0.5790 +2775 9628 0.8220 +2775 9630 0.5950 +2775 9721 0.5790 +2775 10287 0.8300 +2775 10316 0.4850 +2775 10472 0.4470 +2775 10636 0.7900 +2775 10672 0.7490 +2775 10681 0.9350 +2775 10746 0.4880 +2775 10846 0.4550 +2775 10886 0.6270 +2775 10887 0.4420 +2775 22859 0.7860 +2775 23035 0.4040 +2775 23236 0.8000 +2775 23266 0.7790 +2775 23284 0.8800 +2775 26086 0.7180 +2775 26095 0.4340 +2775 26575 0.6900 +2775 29899 0.6700 +2775 29951 0.4630 +2775 51289 0.4640 +2775 51764 0.8790 +2775 54329 0.4710 +2775 54331 0.9800 +2775 54557 0.4720 +2775 55188 0.7060 +2775 55970 0.7000 +2775 56892 0.4060 +2775 56940 0.4560 +2775 57007 0.4630 +2775 57582 0.4600 +2775 57822 0.4140 +2775 58157 0.4170 +2775 59345 0.9470 +2775 60506 0.4070 +2775 60626 0.9460 +2775 64407 0.6310 +2775 79054 0.4160 +2775 83857 0.5120 +2775 85397 0.8970 +2775 90993 0.4050 +2775 94235 0.7760 +2775 114787 0.6350 +2775 126006 0.5950 +2775 126306 0.4660 +2775 128674 0.4190 +2775 164832 0.4890 +2775 222487 0.7490 +2775 285513 0.5970 +2775 338442 0.5040 +2775 346562 0.5540 +2775 388531 0.4620 +2775 401190 0.5860 +2775 431704 0.6790 +2775 100996758 0.4260 +2775 105372280 0.6600 +2776 2778 0.7170 +2776 2779 0.5900 +2776 2780 0.5810 +2776 2781 0.5850 +2776 2782 0.9970 +2776 2783 0.8820 +2776 2784 0.8610 +2776 2785 0.8140 +2776 2786 0.7870 +2776 2787 0.7560 +2776 2788 0.7210 +2776 2790 0.8120 +2776 2791 0.7050 +2776 2792 0.7620 +2776 2793 0.7720 +2776 2796 0.5800 +2776 2797 0.4180 +2776 2798 0.9830 +2776 2826 0.9140 +2776 2829 0.9160 +2776 2833 0.9190 +2776 2846 0.9650 +2776 2847 0.7110 +2776 2852 0.5880 +2776 2862 0.4720 +2776 2863 0.4640 +2776 2864 0.9890 +2776 2865 0.5890 +2776 2867 0.6640 +2776 2869 0.7110 +2776 2870 0.4080 +2776 2911 0.9980 +2776 2912 0.4220 +2776 2915 0.9990 +2776 2916 0.5600 +2776 2917 0.4790 +2776 2922 0.5060 +2776 2925 0.8730 +2776 3032 0.4460 +2776 3060 0.5510 +2776 3265 0.9670 +2776 3269 0.9990 +2776 3274 0.5980 +2776 3320 0.4740 +2776 3326 0.4730 +2776 3350 0.4060 +2776 3356 0.9900 +2776 3357 0.9950 +2776 3358 0.9950 +2776 3417 0.5280 +2776 3418 0.4800 +2776 3558 0.4850 +2776 3570 0.4910 +2776 3577 0.9250 +2776 3579 0.9530 +2776 3630 0.4660 +2776 3708 0.8800 +2776 3709 0.7960 +2776 3710 0.8960 +2776 3717 0.4640 +2776 3718 0.4800 +2776 3759 0.9080 +2776 3761 0.9080 +2776 3768 0.9090 +2776 3770 0.9080 +2776 3791 0.4580 +2776 3814 0.5250 +2776 3815 0.7890 +2776 3816 0.4070 +2776 3827 0.8620 +2776 3845 0.9600 +2776 3973 0.8640 +2776 4089 0.4680 +2776 4168 0.6260 +2776 4286 0.4630 +2776 4292 0.4480 +2776 4544 0.9170 +2776 4763 0.5280 +2776 4829 0.4440 +2776 4851 0.4890 +2776 4869 0.4440 +2776 4893 0.9740 +2776 4922 0.5850 +2776 4923 0.7660 +2776 4935 0.4480 +2776 4988 0.8230 +2776 5020 0.6350 +2776 5021 0.9950 +2776 5028 0.9550 +2776 5029 0.9850 +2776 5030 0.6830 +2776 5031 0.6860 +2776 5032 0.5650 +2776 5082 0.5800 +2776 5132 0.4710 +2776 5156 0.5270 +2776 5173 0.6110 +2776 5175 0.6940 +2776 5179 0.4220 +2776 5290 0.9010 +2776 5295 0.8540 +2776 5296 0.5880 +2776 5319 0.6600 +2776 5320 0.6750 +2776 5321 0.9190 +2776 5322 0.6520 +2776 5330 0.9940 +2776 5331 0.9990 +2776 5332 0.9730 +2776 5333 0.6710 +2776 5335 0.9330 +2776 5336 0.9270 +2776 5341 0.6400 +2776 5367 0.4330 +2776 5443 0.6740 +2776 5562 0.6850 +2776 5563 0.6960 +2776 5564 0.6620 +2776 5565 0.6660 +2776 5566 0.6380 +2776 5567 0.6380 +2776 5568 0.6300 +2776 5571 0.6570 +2776 5578 0.7360 +2776 5587 0.4070 +2776 5595 0.6190 +2776 5601 0.4360 +2776 5604 0.5730 +2776 5605 0.4110 +2776 5607 0.4850 +2776 5724 0.8560 +2776 5728 0.5670 +2776 5731 0.9680 +2776 5733 0.9190 +2776 5734 0.6180 +2776 5737 0.7480 +2776 5739 0.4870 +2776 5745 0.9460 +2776 5781 0.4860 +2776 5877 0.7600 +2776 5894 0.4180 +2776 5914 0.7770 +2776 5921 0.4520 +2776 5979 0.6000 +2776 5996 0.9350 +2776 5997 0.9880 +2776 5998 0.8360 +2776 5999 0.9920 +2776 6000 0.8620 +2776 6001 0.7980 +2776 6002 0.7840 +2776 6003 0.9020 +2776 6004 0.9470 +2776 6010 0.8040 +2776 6237 0.6970 +2776 6295 0.6180 +2776 6570 0.4660 +2776 6598 0.5220 +2776 6654 0.6250 +2776 6714 0.8600 +2776 6786 0.5800 +2776 6794 0.5030 +2776 6863 0.6150 +2776 6865 0.7080 +2776 6869 0.8440 +2776 6870 0.7010 +2776 6915 0.9950 +2776 6934 0.4020 +2776 7157 0.4790 +2776 7170 0.4060 +2776 7201 0.8250 +2776 7204 0.6170 +2776 7220 0.6230 +2776 7222 0.4860 +2776 7223 0.6420 +2776 7224 0.7170 +2776 7225 0.4650 +2776 7253 0.9640 +2776 7257 0.5190 +2776 7275 0.4040 +2776 7289 0.6970 +2776 7299 0.4800 +2776 7349 0.4380 +2776 7432 0.5420 +2776 7433 0.7330 +2776 7434 0.4520 +2776 7442 0.4430 +2776 7852 0.9630 +2776 7855 0.9150 +2776 7976 0.9150 +2776 8111 0.6020 +2776 8314 0.7340 +2776 8321 0.9400 +2776 8322 0.9170 +2776 8323 0.9470 +2776 8324 0.9120 +2776 8325 0.9130 +2776 8326 0.9170 +2776 8398 0.9080 +2776 8399 0.6630 +2776 8490 0.9230 +2776 8503 0.5710 +2776 8517 0.4170 +2776 8601 0.8030 +2776 8605 0.9000 +2776 8681 0.9000 +2776 8698 0.6250 +2776 8786 0.7990 +2776 8801 0.9780 +2776 8802 0.8480 +2776 8856 0.5200 +2776 8997 0.8110 +2776 9002 0.9130 +2776 9138 0.9640 +2776 9170 0.9940 +2776 9289 0.7430 +2776 9290 0.8990 +2776 9294 0.9980 +2776 9368 0.5780 +2776 9444 0.4440 +2776 9568 0.5060 +2776 9575 0.4680 +2776 9628 0.8440 +2776 9630 0.7190 +2776 9651 0.5890 +2776 9826 0.6110 +2776 9922 0.7240 +2776 10149 0.5430 +2776 10161 0.7900 +2776 10197 0.4130 +2776 10203 0.4140 +2776 10287 0.9370 +2776 10316 0.5570 +2776 10411 0.4790 +2776 10663 0.9120 +2776 10672 0.8930 +2776 10681 0.9170 +2776 10800 0.8400 +2776 10803 0.9120 +2776 10887 0.5340 +2776 10911 0.4910 +2776 11069 0.4800 +2776 11211 0.9120 +2776 11214 0.6790 +2776 11318 0.4720 +2776 22800 0.6930 +2776 22808 0.6800 +2776 22859 0.5500 +2776 23043 0.4250 +2776 23236 0.9990 +2776 23266 0.5100 +2776 23365 0.9930 +2776 23432 0.4980 +2776 23451 0.4270 +2776 23566 0.9780 +2776 26086 0.4200 +2776 26279 0.6520 +2776 26499 0.6300 +2776 26575 0.8970 +2776 29968 0.4050 +2776 30814 0.6640 +2776 50487 0.6500 +2776 51422 0.6770 +2776 51738 0.4180 +2776 51764 0.7090 +2776 51806 0.5810 +2776 53632 0.6530 +2776 53637 0.6370 +2776 54331 0.9720 +2776 54790 0.5290 +2776 54822 0.4960 +2776 55188 0.8550 +2776 55294 0.5170 +2776 55704 0.4870 +2776 55970 0.7760 +2776 56413 0.8080 +2776 57105 0.8720 +2776 57121 0.9910 +2776 57512 0.5340 +2776 59272 0.4060 +2776 59341 0.4890 +2776 59345 0.8670 +2776 60626 0.9750 +2776 64106 0.5570 +2776 64283 0.9190 +2776 64407 0.9320 +2776 64582 0.5480 +2776 64600 0.6540 +2776 64805 0.7040 +2776 79054 0.6390 +2776 81579 0.6540 +2776 83550 0.4620 +2776 83857 0.6270 +2776 84059 0.5450 +2776 84109 0.8430 +2776 84539 0.6350 +2776 84634 0.9800 +2776 84647 0.6530 +2776 85397 0.8730 +2776 90993 0.4050 +2776 91860 0.5700 +2776 94233 0.6620 +2776 94235 0.7480 +2776 115557 0.9970 +2776 116512 0.5390 +2776 123745 0.9000 +2776 124274 0.4660 +2776 139760 0.4250 +2776 158158 0.4490 +2776 163688 0.5700 +2776 196883 0.4600 +2776 222545 0.6740 +2776 255189 0.9000 +2776 259249 0.4670 +2776 283748 0.9000 +2776 338557 0.8930 +2776 346562 0.5900 +2776 347148 0.7120 +2776 350383 0.5740 +2776 353299 0.4230 +2776 387129 0.5090 +2776 391013 0.6520 +2776 431704 0.9030 +2776 692312 0.5620 +2776 100134444 0.9030 +2776 100137049 0.9000 +2776 104909134 0.6650 +2776 105372280 0.6770 +2778 2779 0.5890 +2778 2780 0.6110 +2778 2781 0.6110 +2778 2782 0.9990 +2778 2783 0.9860 +2778 2784 0.9820 +2778 2785 0.9670 +2778 2786 0.9800 +2778 2787 0.9780 +2778 2788 0.9640 +2778 2790 0.9650 +2778 2791 0.9500 +2778 2792 0.9710 +2778 2793 0.9490 +2778 2798 0.9310 +2778 2838 0.4990 +2778 2843 0.4990 +2778 2846 0.9240 +2778 2848 0.5520 +2778 2850 0.5570 +2778 2852 0.9190 +2778 2854 0.5570 +2778 2863 0.5670 +2778 2887 0.5930 +2778 2911 0.9050 +2778 2912 0.6510 +2778 2913 0.6720 +2778 2914 0.6510 +2778 2915 0.7870 +2778 2916 0.6510 +2778 2917 0.6750 +2778 2918 0.8000 +2778 2956 0.4050 +2778 3062 0.9140 +2778 3096 0.4340 +2778 3265 0.8120 +2778 3274 0.9510 +2778 3356 0.9320 +2778 3357 0.9280 +2778 3358 0.9720 +2778 3360 0.8970 +2778 3361 0.7220 +2778 3362 0.9920 +2778 3363 0.9950 +2778 3375 0.9020 +2778 3417 0.6390 +2778 3418 0.6170 +2778 3480 0.9270 +2778 3481 0.5290 +2778 3482 0.5330 +2778 3577 0.6860 +2778 3579 0.6950 +2778 3640 0.5470 +2778 3717 0.5800 +2778 3718 0.6730 +2778 3784 0.5140 +2778 3791 0.4620 +2778 3815 0.5630 +2778 3845 0.7920 +2778 3972 0.5170 +2778 3973 0.9550 +2778 4089 0.6920 +2778 4157 0.9290 +2778 4158 0.9350 +2778 4159 0.6550 +2778 4160 0.9380 +2778 4161 0.5710 +2778 4193 0.5000 +2778 4232 0.6290 +2778 4292 0.5740 +2778 4586 0.4180 +2778 4588 0.4180 +2778 4609 0.4350 +2778 4692 0.4120 +2778 4763 0.5090 +2778 4826 0.7360 +2778 4851 0.5140 +2778 4869 0.7000 +2778 4881 0.9200 +2778 4893 0.7070 +2778 4988 0.9200 +2778 5021 0.9920 +2778 5028 0.9040 +2778 5032 0.4990 +2778 5122 0.4700 +2778 5139 0.6490 +2778 5141 0.6100 +2778 5143 0.4210 +2778 5144 0.4430 +2778 5156 0.6100 +2778 5178 0.7510 +2778 5290 0.6970 +2778 5321 0.9080 +2778 5325 0.6000 +2778 5443 0.8900 +2778 5566 0.8270 +2778 5567 0.8240 +2778 5568 0.8140 +2778 5573 0.9160 +2778 5575 0.6510 +2778 5576 0.6390 +2778 5577 0.6490 +2778 5578 0.5470 +2778 5604 0.4010 +2778 5617 0.5450 +2778 5728 0.5820 +2778 5729 0.5870 +2778 5731 0.9190 +2778 5732 0.9860 +2778 5733 0.9390 +2778 5734 0.9860 +2778 5737 0.7080 +2778 5739 0.9910 +2778 5741 0.9750 +2778 5744 0.9280 +2778 5745 0.9970 +2778 5746 0.9640 +2778 5781 0.5790 +2778 5901 0.5160 +2778 5923 0.4470 +2778 5979 0.6130 +2778 5997 0.4850 +2778 6000 0.4800 +2778 6019 0.5110 +2778 6098 0.4270 +2778 6310 0.4280 +2778 6343 0.9280 +2778 6344 0.9930 +2778 6416 0.5810 +2778 6427 0.4380 +2778 6447 0.6080 +2778 6464 0.5050 +2778 6598 0.5820 +2778 6638 0.6270 +2778 6654 0.6210 +2778 6714 0.9420 +2778 6750 0.8500 +2778 6752 0.9230 +2778 6755 0.5070 +2778 6774 0.5610 +2778 6794 0.5950 +2778 6869 0.9050 +2778 6915 0.4260 +2778 7015 0.4330 +2778 7022 0.5340 +2778 7080 0.5250 +2778 7157 0.8100 +2778 7200 0.4590 +2778 7201 0.9200 +2778 7252 0.9470 +2778 7253 0.9970 +2778 7307 0.4780 +2778 7432 0.5530 +2778 7433 0.9750 +2778 7434 0.9940 +2778 7441 0.4190 +2778 7458 0.4030 +2778 7812 0.4290 +2778 8233 0.4460 +2778 8289 0.5710 +2778 8312 0.5970 +2778 8324 0.9010 +2778 8605 0.9030 +2778 8622 0.7580 +2778 8675 0.8740 +2778 8681 0.9000 +2778 8788 0.5070 +2778 8801 0.5750 +2778 8802 0.7730 +2778 8811 0.9170 +2778 8826 0.5030 +2778 8910 0.4180 +2778 9002 0.9000 +2778 9038 0.6490 +2778 9049 0.6410 +2778 9077 0.4180 +2778 9095 0.5290 +2778 9101 0.4340 +2778 9170 0.9170 +2778 9287 0.6490 +2778 9289 0.4190 +2778 9293 0.9210 +2778 9340 0.6810 +2778 9495 0.4990 +2778 9630 0.6060 +2778 9890 0.5700 +2778 10109 0.5750 +2778 10149 0.8500 +2778 10161 0.7260 +2778 10203 0.9930 +2778 10266 0.9900 +2778 10267 0.9800 +2778 10268 0.9790 +2778 10273 0.4040 +2778 10411 0.6580 +2778 10672 0.6340 +2778 10681 0.9590 +2778 10735 0.4230 +2778 10888 0.5650 +2778 10916 0.8000 +2778 11069 0.6510 +2778 11245 0.6180 +2778 11250 0.5520 +2778 11251 0.4560 +2778 23089 0.5510 +2778 23284 0.5880 +2778 23432 0.6980 +2778 23545 0.4150 +2778 23566 0.9520 +2778 23619 0.4510 +2778 26040 0.4160 +2778 26211 0.5950 +2778 26240 0.4790 +2778 29106 0.6080 +2778 50940 0.6170 +2778 51083 0.8050 +2778 51764 0.9710 +2778 53831 0.6160 +2778 54331 0.9970 +2778 54790 0.4360 +2778 54894 0.6980 +2778 55188 0.8240 +2778 55294 0.6230 +2778 55422 0.5010 +2778 55704 0.4230 +2778 55811 0.9130 +2778 55970 0.9500 +2778 56246 0.4280 +2778 57105 0.6160 +2778 57121 0.9210 +2778 57211 0.5080 +2778 57683 0.4740 +2778 58508 0.4480 +2778 59345 0.9920 +2778 59350 0.9130 +2778 60626 0.6500 +2778 63035 0.4180 +2778 64857 0.5740 +2778 79798 0.5270 +2778 79870 0.4370 +2778 79924 0.8970 +2778 79948 0.5620 +2778 80763 0.8010 +2778 83550 0.5620 +2778 83551 0.5710 +2778 84295 0.4180 +2778 84624 0.4970 +2778 84873 0.4660 +2778 90507 0.5230 +2778 94235 0.9510 +2778 113091 0.8990 +2778 117194 0.9010 +2778 117196 0.9000 +2778 117579 0.5490 +2778 119559 0.4070 +2778 122042 0.9070 +2778 122786 0.6130 +2778 122876 0.4990 +2778 123745 0.9040 +2778 134860 0.6490 +2778 134864 0.6490 +2778 139378 0.5020 +2778 139760 0.9850 +2778 146434 0.4210 +2778 151306 0.9380 +2778 155066 0.4250 +2778 168507 0.4370 +2778 170589 0.5070 +2778 171023 0.5160 +2778 196883 0.9530 +2778 199713 0.4850 +2778 221188 0.4450 +2778 222487 0.4260 +2778 255189 0.9030 +2778 259249 0.9000 +2778 259292 0.9000 +2778 266812 0.5710 +2778 283383 0.6500 +2778 283748 0.9030 +2778 285601 0.6210 +2778 319100 0.5610 +2778 346171 0.4320 +2778 346562 0.5890 +2778 387129 0.6190 +2778 390714 0.4190 +2778 391356 0.4170 +2778 594857 0.5200 +2778 646019 0.4370 +2778 100101490 0.4470 +2778 100137049 0.9030 +2778 100423062 0.8000 +2778 100526739 0.8090 +2778 102723407 0.4500 +2778 104909134 0.9730 +2778 105372280 0.7370 +2779 2780 0.9500 +2779 2781 0.5650 +2779 2782 0.9920 +2779 2783 0.9310 +2779 2784 0.8710 +2779 2785 0.7120 +2779 2786 0.7690 +2779 2787 0.7080 +2779 2788 0.7380 +2779 2790 0.7310 +2779 2791 0.7680 +2779 2792 0.9730 +2779 2793 0.8190 +2779 2916 0.5890 +2779 2978 0.4520 +2779 2979 0.6660 +2779 2986 0.5530 +2779 2987 0.4690 +2779 3000 0.6630 +2779 3265 0.6120 +2779 4836 0.7620 +2779 4901 0.7380 +2779 5015 0.4460 +2779 5132 0.5500 +2779 5142 0.4230 +2779 5145 0.9800 +2779 5146 0.6520 +2779 5148 0.9970 +2779 5149 0.6650 +2779 5158 0.9900 +2779 5949 0.5940 +2779 5956 0.7030 +2779 5957 0.6510 +2779 5959 0.4920 +2779 5961 0.5700 +2779 5995 0.7300 +2779 5996 0.4130 +2779 6000 0.4480 +2779 6003 0.4130 +2779 6004 0.5030 +2779 6010 0.9990 +2779 6011 0.6590 +2779 6017 0.4850 +2779 6094 0.6500 +2779 6103 0.4660 +2779 6121 0.8840 +2779 6295 0.8110 +2779 6405 0.5740 +2779 6654 0.5790 +2779 7869 0.5980 +2779 8786 0.7160 +2779 8787 0.9760 +2779 9094 0.5940 +2779 9187 0.6210 +2779 9227 0.8330 +2779 9397 0.7500 +2779 9626 0.4790 +2779 9628 0.4910 +2779 9630 0.5920 +2779 9829 0.4500 +2779 10002 0.6380 +2779 10371 0.4310 +2779 10509 0.6900 +2779 10672 0.6010 +2779 10681 0.8170 +2779 10692 0.6460 +2779 10988 0.7500 +2779 11080 0.4100 +2779 22859 0.7550 +2779 23173 0.7500 +2779 23266 0.7520 +2779 23284 0.7520 +2779 23560 0.4410 +2779 23596 0.6400 +2779 23746 0.5730 +2779 27031 0.4620 +2779 29899 0.5660 +2779 51764 0.7370 +2779 54331 0.7550 +2779 54714 0.6450 +2779 55188 0.4680 +2779 55970 0.7020 +2779 56344 0.4790 +2779 57010 0.6520 +2779 59345 0.9230 +2779 60506 0.5920 +2779 60626 0.8240 +2779 64218 0.5300 +2779 84747 0.7400 +2779 92292 0.6130 +2779 93589 0.5250 +2779 94137 0.4270 +2779 94233 0.9050 +2779 94235 0.6990 +2779 131890 0.4270 +2779 221391 0.6900 +2779 338917 0.4540 +2779 345193 0.6620 +2779 346562 0.7880 +2779 388531 0.6940 +2779 431704 0.4200 +2779 440435 0.5070 +2779 101060233 0.4320 +2779 105372280 0.6600 +2780 2781 0.5640 +2780 2782 0.9740 +2780 2783 0.9100 +2780 2784 0.9070 +2780 2785 0.8810 +2780 2786 0.7530 +2780 2787 0.6800 +2780 2788 0.6880 +2780 2790 0.7030 +2780 2791 0.7430 +2780 2792 0.9720 +2780 2793 0.9010 +2780 2916 0.4070 +2780 2978 0.5860 +2780 2979 0.5760 +2780 2986 0.5370 +2780 2987 0.4200 +2780 3000 0.6340 +2780 3265 0.6120 +2780 3766 0.5510 +2780 4901 0.5230 +2780 4988 0.4630 +2780 5015 0.5060 +2780 5145 0.9740 +2780 5146 0.9850 +2780 5148 0.9870 +2780 5149 0.8940 +2780 5158 0.9720 +2780 5330 0.5580 +2780 5331 0.5580 +2780 5949 0.6020 +2780 5956 0.7490 +2780 5957 0.6480 +2780 5961 0.5870 +2780 5995 0.6850 +2780 5996 0.6370 +2780 6000 0.4230 +2780 6003 0.4100 +2780 6004 0.7290 +2780 6010 0.9850 +2780 6011 0.6130 +2780 6017 0.4570 +2780 6094 0.5940 +2780 6096 0.4070 +2780 6103 0.4360 +2780 6121 0.6360 +2780 6247 0.5060 +2780 6295 0.4930 +2780 6654 0.5790 +2780 7439 0.5680 +2780 7474 0.5030 +2780 7481 0.5030 +2780 7855 0.6600 +2780 7976 0.5310 +2780 8322 0.5720 +2780 8323 0.5310 +2780 8786 0.5680 +2780 8787 0.9570 +2780 9094 0.5650 +2780 9129 0.6170 +2780 9187 0.6140 +2780 9626 0.5210 +2780 9628 0.4150 +2780 9630 0.5850 +2780 10002 0.6520 +2780 10672 0.6020 +2780 10681 0.8200 +2780 10692 0.6500 +2780 11245 0.5050 +2780 22859 0.7550 +2780 22926 0.5930 +2780 23236 0.5580 +2780 23266 0.7520 +2780 23284 0.7520 +2780 23596 0.6850 +2780 23746 0.4920 +2780 29899 0.5720 +2780 51764 0.6980 +2780 54331 0.7370 +2780 54714 0.9880 +2780 55188 0.4870 +2780 55970 0.6790 +2780 57010 0.4320 +2780 57096 0.4930 +2780 59345 0.8310 +2780 60626 0.8370 +2780 64218 0.5370 +2780 84747 0.4640 +2780 92292 0.7390 +2780 94137 0.4140 +2780 94233 0.8390 +2780 94235 0.6610 +2780 131890 0.4870 +2780 147409 0.4080 +2780 169522 0.4120 +2780 221391 0.7240 +2780 338917 0.4060 +2780 339403 0.4340 +2780 346007 0.6280 +2780 346562 0.7670 +2780 388531 0.5290 +2780 431704 0.4170 +2780 728458 0.5010 +2780 101060233 0.4400 +2780 105372280 0.6600 +2781 2782 0.8300 +2781 2783 0.8840 +2781 2784 0.7840 +2781 2785 0.8280 +2781 2786 0.7870 +2781 2787 0.7590 +2781 2788 0.7780 +2781 2790 0.7990 +2781 2791 0.7420 +2781 2792 0.7970 +2781 2793 0.7670 +2781 2911 0.9050 +2781 3265 0.6120 +2781 3480 0.9100 +2781 5148 0.5420 +2781 5321 0.6630 +2781 5540 0.4660 +2781 5578 0.5200 +2781 5579 0.5300 +2781 5580 0.5210 +2781 5581 0.5300 +2781 5582 0.5880 +2781 5583 0.5210 +2781 5588 0.5210 +2781 5996 0.7030 +2781 5997 0.4460 +2781 5998 0.4120 +2781 5999 0.6370 +2781 6000 0.5890 +2781 6001 0.5460 +2781 6003 0.4100 +2781 6004 0.7290 +2781 6616 0.4550 +2781 6654 0.5790 +2781 7345 0.4190 +2781 7447 0.5210 +2781 7532 0.4560 +2781 8601 0.9520 +2781 8605 0.6550 +2781 8681 0.6500 +2781 8786 0.4580 +2781 8801 0.4550 +2781 8802 0.7250 +2781 9609 0.4900 +2781 9628 0.4160 +2781 9630 0.5860 +2781 9721 0.7430 +2781 10287 0.9010 +2781 10672 0.5800 +2781 10681 0.8470 +2781 11245 0.5800 +2781 22859 0.7630 +2781 23002 0.6220 +2781 23266 0.7530 +2781 23284 0.7620 +2781 26575 0.6470 +2781 27156 0.5880 +2781 29899 0.5010 +2781 51764 0.6810 +2781 54331 0.8060 +2781 55970 0.7300 +2781 59345 0.8260 +2781 60626 0.5040 +2781 79705 0.4400 +2781 83442 0.4240 +2781 94235 0.7660 +2781 114787 0.7760 +2781 121053 0.4330 +2781 123745 0.6550 +2781 147199 0.4030 +2781 196883 0.5760 +2781 221391 0.4390 +2781 255189 0.6550 +2781 283748 0.6550 +2781 285513 0.6480 +2781 346562 0.5560 +2781 353299 0.4160 +2781 431704 0.4010 +2781 100137049 0.6550 +2781 100996758 0.4630 +2781 105372280 0.6600 +2782 2783 0.9390 +2782 2784 0.9000 +2782 2785 0.9990 +2782 2786 0.9990 +2782 2787 0.9990 +2782 2788 0.9990 +2782 2790 0.9990 +2782 2791 0.9980 +2782 2792 0.9990 +2782 2793 0.9990 +2782 2840 0.9470 +2782 2847 0.5450 +2782 2852 0.5780 +2782 2863 0.5450 +2782 2869 0.6140 +2782 2898 0.4930 +2782 2899 0.5030 +2782 2912 0.8060 +2782 2914 0.8120 +2782 2932 0.4460 +2782 3062 0.9270 +2782 3265 0.7150 +2782 3269 0.9030 +2782 3350 0.9730 +2782 3351 0.9790 +2782 3352 0.9730 +2782 3354 0.9800 +2782 3355 0.9720 +2782 3356 0.8240 +2782 3357 0.8400 +2782 3358 0.9530 +2782 3360 0.9260 +2782 3361 0.9660 +2782 3362 0.8180 +2782 3363 0.9920 +2782 3375 0.8000 +2782 3576 0.8110 +2782 3579 0.8280 +2782 3678 0.5190 +2782 3688 0.6940 +2782 3708 0.5590 +2782 3709 0.5180 +2782 3710 0.5420 +2782 3759 0.5730 +2782 3760 0.9160 +2782 3761 0.5420 +2782 3762 0.8760 +2782 3763 0.8820 +2782 3765 0.7790 +2782 3766 0.5340 +2782 3768 0.5610 +2782 3772 0.5910 +2782 3827 0.5320 +2782 3845 0.7490 +2782 3973 0.9010 +2782 4140 0.4760 +2782 4157 0.9090 +2782 4158 0.9090 +2782 4160 0.7590 +2782 4543 0.9800 +2782 4544 0.9840 +2782 4852 0.8040 +2782 4886 0.8230 +2782 4887 0.8430 +2782 4893 0.7540 +2782 4901 0.5070 +2782 4923 0.9140 +2782 4985 0.8310 +2782 4988 0.9380 +2782 4991 0.6820 +2782 4992 0.6820 +2782 4993 0.6580 +2782 4994 0.6820 +2782 5021 0.8450 +2782 5028 0.5280 +2782 5032 0.5280 +2782 5048 0.5760 +2782 5058 0.7170 +2782 5082 0.9990 +2782 5132 0.9650 +2782 5140 0.4590 +2782 5145 0.9450 +2782 5148 0.9450 +2782 5158 0.9380 +2782 5170 0.5460 +2782 5173 0.5010 +2782 5290 0.8370 +2782 5291 0.7440 +2782 5293 0.6580 +2782 5294 0.8390 +2782 5295 0.7630 +2782 5296 0.6520 +2782 5306 0.4950 +2782 5330 0.9210 +2782 5331 0.8330 +2782 5332 0.7020 +2782 5335 0.6760 +2782 5336 0.6800 +2782 5367 0.4990 +2782 5368 0.9410 +2782 5443 0.9080 +2782 5500 0.4080 +2782 5501 0.5380 +2782 5539 0.8000 +2782 5562 0.6990 +2782 5563 0.6860 +2782 5564 0.6840 +2782 5565 0.6900 +2782 5566 0.7400 +2782 5567 0.7450 +2782 5568 0.7290 +2782 5571 0.6720 +2782 5578 0.7360 +2782 5579 0.7960 +2782 5580 0.6170 +2782 5581 0.7140 +2782 5582 0.7330 +2782 5583 0.5610 +2782 5588 0.5660 +2782 5594 0.8080 +2782 5595 0.8470 +2782 5599 0.6610 +2782 5600 0.7440 +2782 5601 0.6560 +2782 5603 0.7380 +2782 5726 0.5050 +2782 5731 0.6820 +2782 5732 0.7910 +2782 5733 0.9690 +2782 5734 0.8550 +2782 5739 0.5670 +2782 5741 0.8000 +2782 5744 0.8000 +2782 5745 0.9220 +2782 5746 0.9250 +2782 5877 0.4720 +2782 5879 0.4260 +2782 5880 0.7260 +2782 5881 0.7100 +2782 5906 0.4680 +2782 5923 0.6550 +2782 5924 0.6680 +2782 5956 0.5900 +2782 5957 0.4400 +2782 5995 0.5860 +2782 5996 0.6910 +2782 5997 0.6850 +2782 5998 0.6530 +2782 5999 0.6570 +2782 6000 0.7020 +2782 6001 0.6550 +2782 6002 0.6430 +2782 6003 0.6770 +2782 6004 0.6340 +2782 6010 0.9920 +2782 6011 0.4160 +2782 6141 0.4080 +2782 6156 0.4330 +2782 6175 0.4610 +2782 6237 0.6950 +2782 6288 0.6720 +2782 6295 0.6730 +2782 6300 0.7370 +2782 6323 0.6770 +2782 6343 0.8950 +2782 6344 0.9590 +2782 6347 0.8120 +2782 6359 0.8000 +2782 6364 0.8080 +2782 6368 0.4990 +2782 6376 0.8000 +2782 6464 0.5450 +2782 6608 0.9510 +2782 6654 0.5850 +2782 6714 0.6130 +2782 6750 0.8460 +2782 6752 0.9100 +2782 6754 0.8240 +2782 6774 0.4630 +2782 6801 0.5240 +2782 6869 0.9070 +2782 6915 0.7650 +2782 6950 0.5950 +2782 7201 0.9090 +2782 7203 0.6530 +2782 7204 0.5310 +2782 7252 0.8000 +2782 7253 0.9010 +2782 7275 0.4040 +2782 7311 0.4580 +2782 7349 0.9410 +2782 7432 0.4990 +2782 7433 0.9590 +2782 7434 0.9600 +2782 7474 0.5140 +2782 7481 0.5050 +2782 7534 0.4010 +2782 7852 0.9190 +2782 7855 0.5230 +2782 7879 0.4890 +2782 7932 0.6500 +2782 7976 0.5230 +2782 8322 0.5440 +2782 8323 0.5230 +2782 8324 0.8130 +2782 8383 0.6500 +2782 8386 0.6930 +2782 8387 0.6820 +2782 8388 0.6820 +2782 8390 0.7140 +2782 8490 0.6560 +2782 8503 0.6610 +2782 8590 0.7100 +2782 8601 0.6580 +2782 8737 0.4840 +2782 8786 0.7040 +2782 8787 0.9370 +2782 8801 0.8750 +2782 8802 0.6480 +2782 8811 0.9120 +2782 8997 0.6300 +2782 9002 0.4990 +2782 9138 0.5160 +2782 9170 0.6140 +2782 9254 0.5610 +2782 9289 0.9420 +2782 9293 0.9090 +2782 9294 0.9100 +2782 9340 0.9600 +2782 9368 0.4190 +2782 9459 0.5370 +2782 9568 0.9270 +2782 9628 0.8490 +2782 9630 0.8480 +2782 9651 0.5920 +2782 9759 0.5150 +2782 9978 0.4900 +2782 10000 0.5960 +2782 10109 0.5580 +2782 10149 0.7580 +2782 10203 0.9240 +2782 10266 0.8000 +2782 10267 0.8000 +2782 10268 0.8000 +2782 10287 0.6590 +2782 10316 0.9540 +2782 10399 0.7310 +2782 10574 0.6220 +2782 10575 0.6460 +2782 10576 0.6660 +2782 10636 0.6280 +2782 10672 0.9910 +2782 10681 0.8420 +2782 10692 0.5560 +2782 10693 0.5530 +2782 10694 0.7240 +2782 10798 0.6820 +2782 10800 0.5700 +2782 10874 0.8950 +2782 10956 0.4180 +2782 11080 0.4580 +2782 22800 0.7170 +2782 22808 0.6920 +2782 22859 0.9670 +2782 22948 0.9970 +2782 23236 0.8720 +2782 23266 0.9690 +2782 23284 0.9670 +2782 23365 0.6480 +2782 23533 0.9170 +2782 23538 0.6820 +2782 23566 0.7310 +2782 23596 0.5450 +2782 23649 0.4080 +2782 23765 0.4070 +2782 26086 0.5060 +2782 26188 0.6820 +2782 26189 0.6550 +2782 26211 0.6820 +2782 26212 0.6820 +2782 26219 0.6820 +2782 26245 0.6820 +2782 26246 0.6820 +2782 26248 0.6820 +2782 26333 0.6820 +2782 26338 0.6820 +2782 26339 0.6820 +2782 26341 0.6820 +2782 26476 0.6820 +2782 26493 0.6820 +2782 26494 0.6820 +2782 26496 0.6820 +2782 26497 0.6820 +2782 26529 0.6820 +2782 26531 0.6820 +2782 26532 0.6820 +2782 26533 0.6820 +2782 26534 0.6820 +2782 26538 0.6820 +2782 26539 0.6820 +2782 26575 0.6450 +2782 26595 0.6820 +2782 26648 0.6820 +2782 26658 0.6820 +2782 26659 0.6820 +2782 26664 0.6820 +2782 26686 0.6820 +2782 26687 0.6820 +2782 26689 0.6820 +2782 26692 0.6560 +2782 26693 0.6820 +2782 26707 0.6500 +2782 26716 0.6500 +2782 26735 0.6820 +2782 26737 0.6820 +2782 26740 0.6820 +2782 29899 0.4500 +2782 29979 0.4090 +2782 50831 0.5000 +2782 50832 0.5170 +2782 50833 0.4990 +2782 50834 0.4990 +2782 50836 0.4990 +2782 50837 0.4990 +2782 50838 0.5500 +2782 50839 0.5390 +2782 50840 0.5310 +2782 51083 0.8000 +2782 51154 0.4110 +2782 51422 0.6700 +2782 51655 0.7760 +2782 51738 0.8000 +2782 51764 0.9990 +2782 53632 0.6680 +2782 53637 0.8180 +2782 54112 0.9180 +2782 54331 0.9990 +2782 54429 0.5080 +2782 54584 0.4010 +2782 55811 0.6550 +2782 55970 0.9990 +2782 56246 0.8000 +2782 56656 0.6820 +2782 56923 0.9550 +2782 57105 0.5670 +2782 57121 0.6030 +2782 57580 0.9920 +2782 57664 0.4010 +2782 59345 0.7910 +2782 60626 0.5880 +2782 63940 0.4170 +2782 64130 0.4020 +2782 64407 0.6410 +2782 64805 0.4990 +2782 64857 0.7710 +2782 79290 0.6820 +2782 79295 0.6820 +2782 79310 0.6820 +2782 79317 0.6500 +2782 79324 0.6820 +2782 79339 0.6820 +2782 79345 0.6820 +2782 79346 0.6820 +2782 79473 0.6820 +2782 79490 0.6820 +2782 79541 0.6820 +2782 79544 0.6500 +2782 79549 0.6820 +2782 79734 0.4600 +2782 79924 0.8000 +2782 80036 0.9110 +2782 80232 0.6960 +2782 80243 0.6390 +2782 80763 0.8000 +2782 80834 0.5110 +2782 80835 0.5110 +2782 81050 0.6820 +2782 81099 0.6820 +2782 81127 0.6850 +2782 81168 0.6500 +2782 81282 0.6820 +2782 81285 0.6820 +2782 81300 0.6820 +2782 81309 0.6500 +2782 81318 0.6820 +2782 81327 0.6820 +2782 81341 0.6500 +2782 81392 0.6820 +2782 81399 0.6820 +2782 81442 0.6820 +2782 81448 0.6820 +2782 81466 0.6820 +2782 81469 0.6820 +2782 81470 0.6820 +2782 81696 0.6820 +2782 81697 0.6820 +2782 81797 0.6820 +2782 83756 0.5110 +2782 84539 0.5660 +2782 84624 0.6580 +2782 85397 0.6460 +2782 90507 0.4030 +2782 93659 0.8000 +2782 94115 0.8000 +2782 94235 0.9980 +2782 113091 0.8000 +2782 115207 0.9030 +2782 115557 0.5100 +2782 116512 0.8180 +2782 117194 0.9000 +2782 117196 0.8000 +2782 117579 0.6250 +2782 119678 0.6820 +2782 119679 0.6820 +2782 119682 0.6930 +2782 119687 0.6820 +2782 119692 0.6820 +2782 119694 0.6820 +2782 119695 0.6820 +2782 119749 0.6820 +2782 119764 0.6820 +2782 119765 0.6820 +2782 119772 0.6820 +2782 119774 0.6820 +2782 120065 0.6820 +2782 120066 0.6910 +2782 120586 0.6820 +2782 120775 0.6820 +2782 120776 0.6820 +2782 120787 0.6820 +2782 120793 0.6500 +2782 121129 0.6820 +2782 121130 0.7350 +2782 121275 0.6540 +2782 121364 0.6820 +2782 122740 0.6500 +2782 122742 0.6500 +2782 122748 0.6820 +2782 122786 0.6030 +2782 124274 0.9090 +2782 124538 0.6820 +2782 125958 0.6820 +2782 125962 0.6820 +2782 125963 0.6820 +2782 126006 0.4310 +2782 126370 0.6820 +2782 126541 0.6820 +2782 127059 0.6820 +2782 127062 0.6820 +2782 127064 0.6500 +2782 127066 0.6820 +2782 127068 0.6820 +2782 127069 0.6820 +2782 127077 0.6820 +2782 127385 0.6820 +2782 127608 0.6820 +2782 127623 0.6820 +2782 128360 0.6820 +2782 128366 0.6820 +2782 128367 0.6820 +2782 128368 0.6820 +2782 128372 0.6820 +2782 129521 0.8950 +2782 130075 0.6820 +2782 131890 0.4680 +2782 134083 0.6820 +2782 135924 0.6820 +2782 135941 0.6820 +2782 135946 0.6820 +2782 135948 0.6820 +2782 138799 0.6820 +2782 138802 0.6820 +2782 138804 0.6820 +2782 138805 0.6820 +2782 138881 0.6820 +2782 138883 0.6820 +2782 139378 0.8560 +2782 139760 0.6020 +2782 143496 0.6820 +2782 143503 0.6980 +2782 144124 0.6820 +2782 144125 0.6820 +2782 146850 0.8470 +2782 150681 0.6500 +2782 151306 0.7620 +2782 158131 0.6820 +2782 162998 0.6820 +2782 171023 0.5130 +2782 196335 0.6500 +2782 196883 0.7050 +2782 219417 0.6820 +2782 219428 0.6630 +2782 219429 0.6500 +2782 219431 0.6860 +2782 219436 0.6820 +2782 219437 0.6820 +2782 219438 0.6820 +2782 219447 0.6820 +2782 219453 0.6820 +2782 219469 0.6820 +2782 219473 0.6820 +2782 219477 0.6500 +2782 219479 0.6820 +2782 219482 0.6500 +2782 219484 0.6500 +2782 219487 0.6820 +2782 219493 0.6820 +2782 219858 0.6820 +2782 219869 0.6820 +2782 219870 0.6820 +2782 219874 0.6820 +2782 219875 0.6820 +2782 219952 0.6820 +2782 219954 0.6820 +2782 219956 0.6820 +2782 219957 0.6820 +2782 219960 0.6500 +2782 219965 0.6820 +2782 219968 0.6820 +2782 219981 0.6820 +2782 219982 0.6820 +2782 219983 0.6820 +2782 219986 0.6820 +2782 221188 0.9280 +2782 221391 0.5590 +2782 222487 0.9280 +2782 254786 0.6820 +2782 254879 0.6820 +2782 254973 0.6820 +2782 255725 0.6820 +2782 256148 0.6820 +2782 259249 0.9220 +2782 259285 0.5190 +2782 259286 0.5190 +2782 259287 0.4990 +2782 259289 0.5340 +2782 259290 0.5400 +2782 259292 0.9550 +2782 259293 0.5540 +2782 259295 0.4990 +2782 259296 0.5480 +2782 266977 0.9250 +2782 282763 0.6820 +2782 282770 0.6820 +2782 282775 0.6820 +2782 283092 0.6820 +2782 283093 0.6820 +2782 283159 0.6820 +2782 283160 0.6820 +2782 283162 0.6820 +2782 283297 0.6820 +2782 283365 0.6820 +2782 283383 0.9260 +2782 283694 0.6820 +2782 284004 0.4270 +2782 284383 0.6820 +2782 284433 0.6820 +2782 284521 0.6820 +2782 284532 0.6820 +2782 285659 0.6820 +2782 286362 0.6820 +2782 338662 0.6820 +2782 338674 0.6820 +2782 338675 0.6820 +2782 338751 0.6820 +2782 338755 0.6820 +2782 340980 0.6820 +2782 341152 0.6820 +2782 341276 0.6820 +2782 341416 0.6820 +2782 341418 0.6820 +2782 341799 0.6820 +2782 343169 0.6820 +2782 343170 0.6820 +2782 343171 0.6820 +2782 343172 0.6500 +2782 343173 0.6820 +2782 343563 0.6820 +2782 346517 0.6820 +2782 346525 0.6820 +2782 346562 0.8650 +2782 347168 0.6820 +2782 347169 0.6820 +2782 347468 0.6820 +2782 387129 0.7590 +2782 387748 0.6500 +2782 388531 0.6720 +2782 388761 0.6820 +2782 390036 0.6820 +2782 390037 0.6830 +2782 390038 0.6820 +2782 390054 0.6820 +2782 390058 0.6820 +2782 390059 0.6820 +2782 390061 0.6820 +2782 390063 0.6980 +2782 390064 0.6820 +2782 390066 0.6910 +2782 390067 0.6820 +2782 390072 0.6820 +2782 390075 0.6820 +2782 390077 0.6820 +2782 390078 0.6820 +2782 390079 0.6820 +2782 390081 0.6820 +2782 390082 0.6820 +2782 390083 0.6500 +2782 390084 0.6500 +2782 390093 0.6820 +2782 390113 0.6820 +2782 390142 0.6820 +2782 390144 0.6820 +2782 390148 0.6820 +2782 390151 0.6820 +2782 390152 0.6820 +2782 390155 0.6820 +2782 390157 0.6820 +2782 390162 0.6500 +2782 390168 0.6820 +2782 390174 0.6820 +2782 390181 0.6820 +2782 390190 0.6820 +2782 390191 0.6820 +2782 390195 0.6820 +2782 390197 0.6820 +2782 390199 0.6820 +2782 390201 0.6820 +2782 390260 0.6820 +2782 390261 0.6820 +2782 390264 0.6820 +2782 390265 0.6820 +2782 390271 0.6820 +2782 390275 0.6820 +2782 390321 0.6820 +2782 390323 0.6820 +2782 390326 0.6820 +2782 390327 0.6820 +2782 390429 0.6820 +2782 390431 0.6500 +2782 390433 0.6500 +2782 390437 0.6820 +2782 390445 0.6820 +2782 390538 0.6820 +2782 390648 0.6820 +2782 390649 0.6820 +2782 390883 0.6820 +2782 390892 0.6820 +2782 391107 0.6820 +2782 391109 0.6820 +2782 391112 0.6820 +2782 391114 0.6500 +2782 391189 0.6820 +2782 391190 0.6820 +2782 391192 0.6820 +2782 391194 0.6820 +2782 391195 0.6500 +2782 391196 0.6820 +2782 391211 0.6820 +2782 392138 0.6820 +2782 392309 0.6500 +2782 392376 0.6820 +2782 392390 0.6820 +2782 392391 0.6820 +2782 392392 0.6820 +2782 393046 0.6820 +2782 401427 0.6820 +2782 401665 0.6950 +2782 401666 0.6820 +2782 401667 0.6820 +2782 401992 0.6820 +2782 401993 0.6820 +2782 401994 0.6820 +2782 402135 0.6820 +2782 402317 0.6820 +2782 403239 0.6820 +2782 403244 0.6820 +2782 403253 0.6820 +2782 403273 0.6820 +2782 403274 0.6820 +2782 403277 0.6820 +2782 403278 0.6820 +2782 403282 0.6820 +2782 403284 0.6820 +2782 431704 0.6850 +2782 440153 0.6820 +2782 441308 0.6820 +2782 441608 0.6820 +2782 441670 0.6820 +2782 441933 0.6820 +2782 442184 0.6820 +2782 442185 0.6500 +2782 442186 0.6500 +2782 442191 0.6820 +2782 442194 0.6820 +2782 442361 0.6820 +2782 594857 0.4990 +2782 100423062 0.8740 +2782 100506013 0.4290 +2782 100526739 0.8000 +2782 100996758 0.8180 +2782 102723532 0.6820 +2782 104909134 0.9670 +2782 105369274 0.6820 +2782 105372280 0.7180 +2783 2784 0.7390 +2783 2785 0.9990 +2783 2786 0.9990 +2783 2787 0.9990 +2783 2788 0.9990 +2783 2790 0.9980 +2783 2791 0.8080 +2783 2792 0.9980 +2783 2793 0.9990 +2783 2840 0.4990 +2783 2847 0.5450 +2783 2852 0.5870 +2783 2863 0.5660 +2783 2869 0.6140 +2783 2870 0.4090 +2783 2899 0.5030 +2783 3265 0.7120 +2783 3268 0.4390 +2783 3309 0.4290 +2783 3350 0.7460 +2783 3351 0.7440 +2783 3352 0.7440 +2783 3354 0.8350 +2783 3355 0.7350 +2783 3358 0.5760 +2783 3361 0.6860 +2783 3363 0.9260 +2783 3455 0.5140 +2783 3678 0.5620 +2783 3688 0.5230 +2783 3692 0.4170 +2783 3708 0.7040 +2783 3709 0.5020 +2783 3710 0.5330 +2783 3759 0.5610 +2783 3760 0.8490 +2783 3761 0.5420 +2783 3762 0.8800 +2783 3763 0.7540 +2783 3765 0.7640 +2783 3766 0.5340 +2783 3768 0.5620 +2783 3772 0.5340 +2783 3827 0.5250 +2783 3845 0.7320 +2783 4034 0.4670 +2783 4160 0.6060 +2783 4543 0.7540 +2783 4544 0.9380 +2783 4893 0.6970 +2783 4909 0.4220 +2783 4988 0.6990 +2783 5028 0.5280 +2783 5032 0.5280 +2783 5058 0.6150 +2783 5082 0.9970 +2783 5145 0.5970 +2783 5148 0.5870 +2783 5158 0.5760 +2783 5170 0.5130 +2783 5173 0.5010 +2783 5290 0.6770 +2783 5291 0.6770 +2783 5293 0.6560 +2783 5294 0.6680 +2783 5295 0.6600 +2783 5296 0.6590 +2783 5330 0.8420 +2783 5331 0.8290 +2783 5332 0.6840 +2783 5335 0.6670 +2783 5336 0.6710 +2783 5367 0.4990 +2783 5368 0.4150 +2783 5443 0.5460 +2783 5531 0.4910 +2783 5562 0.6800 +2783 5563 0.6680 +2783 5564 0.6860 +2783 5565 0.6810 +2783 5566 0.7740 +2783 5567 0.7290 +2783 5568 0.7160 +2783 5571 0.6850 +2783 5578 0.7900 +2783 5579 0.7040 +2783 5580 0.6040 +2783 5581 0.8020 +2783 5582 0.7010 +2783 5583 0.5640 +2783 5588 0.5780 +2783 5592 0.4940 +2783 5594 0.7420 +2783 5595 0.8060 +2783 5599 0.6520 +2783 5600 0.7480 +2783 5601 0.6540 +2783 5603 0.7450 +2783 5731 0.6830 +2783 5732 0.7810 +2783 5733 0.7060 +2783 5734 0.8220 +2783 5739 0.5800 +2783 5880 0.7170 +2783 5881 0.7170 +2783 5923 0.6550 +2783 5924 0.6550 +2783 5956 0.5730 +2783 5995 0.5450 +2783 5996 0.6760 +2783 5997 0.6770 +2783 5998 0.6560 +2783 5999 0.6200 +2783 6000 0.6710 +2783 6001 0.6270 +2783 6002 0.6310 +2783 6003 0.6610 +2783 6004 0.6190 +2783 6010 0.7560 +2783 6156 0.4290 +2783 6175 0.4600 +2783 6237 0.7100 +2783 6288 0.5130 +2783 6300 0.7420 +2783 6323 0.6510 +2783 6343 0.4990 +2783 6344 0.6120 +2783 6368 0.4990 +2783 6387 0.4190 +2783 6464 0.5830 +2783 6616 0.4090 +2783 6654 0.5410 +2783 6714 0.5850 +2783 6748 0.4520 +2783 6801 0.5250 +2783 6915 0.5590 +2783 6950 0.5940 +2783 7203 0.6010 +2783 7204 0.5250 +2783 7349 0.6520 +2783 7411 0.4170 +2783 7432 0.4990 +2783 7433 0.6120 +2783 7434 0.6170 +2783 7474 0.4990 +2783 7481 0.5050 +2783 7852 0.9170 +2783 7855 0.5230 +2783 7976 0.5230 +2783 7988 0.5700 +2783 8322 0.5550 +2783 8323 0.5360 +2783 8349 0.4200 +2783 8490 0.6230 +2783 8503 0.6500 +2783 8601 0.6520 +2783 8786 0.6960 +2783 8801 0.4340 +2783 8912 0.8290 +2783 8913 0.8250 +2783 8997 0.4990 +2783 9002 0.4990 +2783 9138 0.5580 +2783 9170 0.6200 +2783 9254 0.5080 +2783 9289 0.4130 +2783 9340 0.6200 +2783 9459 0.5240 +2783 9568 0.6610 +2783 9628 0.7770 +2783 9630 0.8440 +2783 10000 0.5830 +2783 10109 0.4590 +2783 10149 0.5970 +2783 10155 0.4590 +2783 10287 0.6660 +2783 10316 0.5620 +2783 10471 0.4490 +2783 10552 0.5010 +2783 10574 0.5800 +2783 10575 0.5940 +2783 10576 0.5950 +2783 10636 0.6350 +2783 10672 0.8790 +2783 10681 0.7300 +2783 10692 0.5560 +2783 10693 0.5730 +2783 10694 0.5790 +2783 10800 0.5700 +2783 10874 0.4990 +2783 10956 0.4240 +2783 22800 0.7050 +2783 22808 0.6920 +2783 22859 0.9680 +2783 22948 0.6180 +2783 23236 0.8050 +2783 23266 0.9700 +2783 23284 0.9670 +2783 23365 0.5330 +2783 23533 0.6560 +2783 23566 0.7160 +2783 23596 0.5450 +2783 26086 0.5350 +2783 26575 0.6300 +2783 29899 0.4490 +2783 51154 0.4060 +2783 51422 0.6740 +2783 51655 0.7040 +2783 51764 0.7430 +2783 53632 0.6680 +2783 53944 0.4330 +2783 54331 0.9990 +2783 54442 0.4550 +2783 54584 0.5600 +2783 55811 0.6550 +2783 55970 0.9980 +2783 56923 0.5860 +2783 57105 0.5690 +2783 57121 0.5740 +2783 57580 0.9320 +2783 59345 0.7320 +2783 63940 0.4930 +2783 64407 0.6270 +2783 64805 0.4990 +2783 81628 0.4510 +2783 84539 0.5820 +2783 85397 0.6300 +2783 90507 0.4180 +2783 94235 0.9980 +2783 115557 0.5000 +2783 117579 0.6530 +2783 120892 0.4170 +2783 122786 0.5130 +2783 126006 0.4350 +2783 129521 0.4990 +2783 139760 0.5130 +2783 146850 0.6500 +2783 151306 0.6120 +2783 157567 0.4010 +2783 196883 0.7000 +2783 221391 0.5590 +2783 284004 0.4360 +2783 346562 0.8050 +2783 387129 0.7590 +2783 431704 0.6710 +2783 552891 0.5460 +2783 594857 0.4990 +2783 104909134 0.5010 +2783 105372280 0.7310 +2784 2785 0.9980 +2784 2786 0.9990 +2784 2787 0.9980 +2784 2788 0.9990 +2784 2790 0.9980 +2784 2791 0.9980 +2784 2792 0.9990 +2784 2793 0.9990 +2784 2840 0.4990 +2784 2847 0.5450 +2784 2852 0.5640 +2784 2854 0.4040 +2784 2863 0.5450 +2784 2868 0.4800 +2784 2869 0.6660 +2784 2898 0.6510 +2784 2899 0.5400 +2784 2916 0.4070 +2784 3062 0.4510 +2784 3265 0.6920 +2784 3350 0.8320 +2784 3351 0.7980 +2784 3352 0.7640 +2784 3354 0.7340 +2784 3355 0.7490 +2784 3356 0.4980 +2784 3358 0.4800 +2784 3361 0.6920 +2784 3363 0.9320 +2784 3678 0.5090 +2784 3688 0.5130 +2784 3708 0.5230 +2784 3709 0.5150 +2784 3710 0.5010 +2784 3759 0.6230 +2784 3760 0.7410 +2784 3761 0.5580 +2784 3762 0.7260 +2784 3763 0.7210 +2784 3765 0.7360 +2784 3766 0.5340 +2784 3768 0.6070 +2784 3772 0.5340 +2784 3779 0.4570 +2784 3827 0.5870 +2784 3845 0.6970 +2784 4147 0.4360 +2784 4160 0.6860 +2784 4524 0.5060 +2784 4543 0.7540 +2784 4544 0.9240 +2784 4548 0.4080 +2784 4893 0.6920 +2784 4988 0.7310 +2784 5028 0.5280 +2784 5032 0.5280 +2784 5058 0.6110 +2784 5082 0.9970 +2784 5132 0.4130 +2784 5136 0.9190 +2784 5137 0.9220 +2784 5145 0.7780 +2784 5146 0.4760 +2784 5148 0.6340 +2784 5149 0.5920 +2784 5153 0.9150 +2784 5158 0.7390 +2784 5170 0.5090 +2784 5173 0.4990 +2784 5290 0.6690 +2784 5291 0.6530 +2784 5293 0.6530 +2784 5294 0.6530 +2784 5295 0.6720 +2784 5296 0.6560 +2784 5319 0.4280 +2784 5330 0.9790 +2784 5331 0.9490 +2784 5332 0.9070 +2784 5335 0.6720 +2784 5336 0.6630 +2784 5367 0.5320 +2784 5443 0.7320 +2784 5562 0.6680 +2784 5563 0.6680 +2784 5564 0.6810 +2784 5565 0.6810 +2784 5566 0.7230 +2784 5567 0.7300 +2784 5568 0.7280 +2784 5571 0.6680 +2784 5578 0.8180 +2784 5579 0.6880 +2784 5580 0.5750 +2784 5581 0.7150 +2784 5582 0.7050 +2784 5583 0.5610 +2784 5588 0.5770 +2784 5594 0.7370 +2784 5595 0.7430 +2784 5599 0.6550 +2784 5600 0.7480 +2784 5601 0.6500 +2784 5603 0.7370 +2784 5726 0.5840 +2784 5731 0.6840 +2784 5732 0.7510 +2784 5733 0.7900 +2784 5734 0.8120 +2784 5739 0.5650 +2784 5740 0.6100 +2784 5880 0.7000 +2784 5881 0.7180 +2784 5923 0.6570 +2784 5924 0.6530 +2784 5956 0.6840 +2784 5957 0.5190 +2784 5972 0.6460 +2784 5995 0.6040 +2784 5996 0.6770 +2784 5997 0.7270 +2784 5998 0.6610 +2784 5999 0.6830 +2784 6000 0.8280 +2784 6001 0.6500 +2784 6002 0.6510 +2784 6003 0.6880 +2784 6004 0.6500 +2784 6010 0.8320 +2784 6011 0.4140 +2784 6175 0.4510 +2784 6228 0.4030 +2784 6233 0.4010 +2784 6237 0.6920 +2784 6288 0.4990 +2784 6300 0.7480 +2784 6323 0.6590 +2784 6337 0.6200 +2784 6343 0.5000 +2784 6344 0.6240 +2784 6368 0.4990 +2784 6401 0.4100 +2784 6464 0.5350 +2784 6532 0.5870 +2784 6559 0.6220 +2784 6654 0.5410 +2784 6714 0.5520 +2784 6801 0.5310 +2784 6870 0.4420 +2784 6915 0.5640 +2784 6950 0.5100 +2784 7203 0.5100 +2784 7204 0.5250 +2784 7349 0.5840 +2784 7432 0.4990 +2784 7433 0.6120 +2784 7434 0.6430 +2784 7474 0.5080 +2784 7481 0.5220 +2784 7712 0.4340 +2784 7852 0.9160 +2784 7855 0.5230 +2784 7976 0.5230 +2784 8078 0.4250 +2784 8322 0.5760 +2784 8323 0.5230 +2784 8451 0.5330 +2784 8490 0.6650 +2784 8503 0.6600 +2784 8601 0.6560 +2784 8786 0.7640 +2784 8787 0.4390 +2784 8801 0.7200 +2784 8997 0.4990 +2784 9002 0.4990 +2784 9138 0.5200 +2784 9170 0.5690 +2784 9187 0.4750 +2784 9254 0.5380 +2784 9340 0.6130 +2784 9459 0.5200 +2784 9568 0.6630 +2784 9628 0.7860 +2784 9630 0.8080 +2784 9725 0.4040 +2784 10000 0.5520 +2784 10002 0.4600 +2784 10109 0.4370 +2784 10287 0.6480 +2784 10316 0.5600 +2784 10574 0.5200 +2784 10575 0.5100 +2784 10576 0.5170 +2784 10636 0.6130 +2784 10672 0.7660 +2784 10681 0.7320 +2784 10692 0.5560 +2784 10693 0.5100 +2784 10694 0.5080 +2784 10800 0.5570 +2784 10874 0.5010 +2784 22800 0.6920 +2784 22808 0.6920 +2784 22859 0.9680 +2784 22948 0.5240 +2784 23236 0.9470 +2784 23266 0.9670 +2784 23284 0.9670 +2784 23365 0.5160 +2784 23533 0.6500 +2784 23566 0.7130 +2784 23596 0.5450 +2784 26086 0.6230 +2784 26575 0.6530 +2784 27319 0.4610 +2784 29899 0.4450 +2784 30813 0.4220 +2784 50831 0.5040 +2784 50832 0.5170 +2784 50833 0.6960 +2784 50834 0.5120 +2784 50835 0.4430 +2784 50836 0.4990 +2784 50837 0.4990 +2784 50838 0.5700 +2784 50839 0.5950 +2784 50840 0.5740 +2784 51154 0.4060 +2784 51320 0.5080 +2784 51422 0.6750 +2784 51655 0.6920 +2784 51752 0.4680 +2784 51764 0.9990 +2784 53632 0.6680 +2784 54331 0.9990 +2784 54429 0.5120 +2784 54714 0.5520 +2784 55811 0.7340 +2784 55970 0.9980 +2784 56923 0.5600 +2784 57010 0.4110 +2784 57105 0.5570 +2784 57121 0.5540 +2784 57580 0.9290 +2784 59345 0.7260 +2784 59350 0.4250 +2784 60506 0.5220 +2784 63940 0.4110 +2784 64106 0.5510 +2784 64130 0.5010 +2784 64407 0.6540 +2784 64805 0.5320 +2784 65125 0.5740 +2784 65266 0.5490 +2784 80834 0.9090 +2784 80835 0.9150 +2784 83756 0.9220 +2784 84539 0.5690 +2784 85397 0.6540 +2784 90507 0.4010 +2784 92840 0.4380 +2784 94235 0.8300 +2784 115557 0.5480 +2784 117579 0.5230 +2784 122786 0.4870 +2784 126006 0.4540 +2784 129521 0.4990 +2784 131890 0.5480 +2784 139760 0.4870 +2784 146850 0.6500 +2784 151306 0.5290 +2784 196883 0.7110 +2784 221391 0.5590 +2784 259285 0.6030 +2784 259286 0.5490 +2784 259287 0.4990 +2784 259289 0.5380 +2784 259290 0.5430 +2784 259292 0.5400 +2784 259293 0.5750 +2784 259295 0.5630 +2784 259296 0.5670 +2784 284004 0.4270 +2784 285641 0.5150 +2784 345193 0.5580 +2784 346562 0.9770 +2784 387129 0.8000 +2784 388531 0.4120 +2784 431704 0.7050 +2784 594857 0.5190 +2784 104909134 0.4910 +2784 105372280 0.6930 +2785 2786 0.5890 +2785 2787 0.5600 +2785 2788 0.7110 +2785 2790 0.5730 +2785 2791 0.8090 +2785 2792 0.7510 +2785 2793 0.6210 +2785 2840 0.5160 +2785 2847 0.6090 +2785 2852 0.5090 +2785 2863 0.5410 +2785 2869 0.5650 +2785 2891 0.4300 +2785 2899 0.5460 +2785 3265 0.6640 +2785 3350 0.7210 +2785 3351 0.6980 +2785 3352 0.6930 +2785 3354 0.7110 +2785 3355 0.6960 +2785 3361 0.7650 +2785 3363 0.9130 +2785 3678 0.5040 +2785 3688 0.5070 +2785 3708 0.5800 +2785 3709 0.5490 +2785 3710 0.5340 +2785 3759 0.5260 +2785 3760 0.7440 +2785 3761 0.6050 +2785 3762 0.6940 +2785 3763 0.6890 +2785 3765 0.7760 +2785 3766 0.5650 +2785 3768 0.5480 +2785 3772 0.5560 +2785 3798 0.4350 +2785 3800 0.4400 +2785 3827 0.5170 +2785 3845 0.6520 +2785 4543 0.6950 +2785 4544 0.9090 +2785 4893 0.6520 +2785 4988 0.7040 +2785 5028 0.4990 +2785 5032 0.4990 +2785 5058 0.5530 +2785 5082 0.6660 +2785 5145 0.5210 +2785 5148 0.5400 +2785 5158 0.5210 +2785 5170 0.5010 +2785 5173 0.5970 +2785 5290 0.6500 +2785 5291 0.6500 +2785 5293 0.6500 +2785 5294 0.6590 +2785 5295 0.6530 +2785 5296 0.6500 +2785 5330 0.7440 +2785 5331 0.6660 +2785 5332 0.6670 +2785 5335 0.6630 +2785 5336 0.6580 +2785 5367 0.5340 +2785 5443 0.4990 +2785 5562 0.6500 +2785 5563 0.6500 +2785 5564 0.6500 +2785 5565 0.6500 +2785 5566 0.6600 +2785 5567 0.6760 +2785 5568 0.6580 +2785 5571 0.6500 +2785 5578 0.6780 +2785 5579 0.7020 +2785 5580 0.5610 +2785 5581 0.7060 +2785 5582 0.7520 +2785 5583 0.5040 +2785 5588 0.5180 +2785 5594 0.6520 +2785 5595 0.6520 +2785 5599 0.6540 +2785 5600 0.6710 +2785 5601 0.6540 +2785 5603 0.6520 +2785 5731 0.6780 +2785 5732 0.6780 +2785 5733 0.6780 +2785 5734 0.6780 +2785 5739 0.5410 +2785 5880 0.6590 +2785 5881 0.6590 +2785 5923 0.6810 +2785 5924 0.6640 +2785 5956 0.5470 +2785 5995 0.5410 +2785 5996 0.5450 +2785 5997 0.5350 +2785 5998 0.5960 +2785 5999 0.6040 +2785 6000 0.6460 +2785 6001 0.5350 +2785 6002 0.5180 +2785 6003 0.5350 +2785 6004 0.5620 +2785 6010 0.5690 +2785 6237 0.6790 +2785 6288 0.6640 +2785 6300 0.6520 +2785 6323 0.6870 +2785 6343 0.5000 +2785 6344 0.5720 +2785 6368 0.5100 +2785 6464 0.5310 +2785 6506 0.4410 +2785 6616 0.5190 +2785 6654 0.5460 +2785 6714 0.5130 +2785 6801 0.4990 +2785 6915 0.5410 +2785 6950 0.4990 +2785 7203 0.4990 +2785 7204 0.5170 +2785 7432 0.5740 +2785 7433 0.5710 +2785 7434 0.5580 +2785 7474 0.5080 +2785 7481 0.5180 +2785 7852 0.9110 +2785 7855 0.4990 +2785 7976 0.5290 +2785 8322 0.4990 +2785 8323 0.4990 +2785 8490 0.5180 +2785 8503 0.6500 +2785 8601 0.5490 +2785 8786 0.5780 +2785 8997 0.5220 +2785 9002 0.5330 +2785 9138 0.4990 +2785 9170 0.5410 +2785 9254 0.5750 +2785 9340 0.5580 +2785 9459 0.5150 +2785 9568 0.7200 +2785 9628 0.6330 +2785 9630 0.7510 +2785 10000 0.5280 +2785 10287 0.5490 +2785 10316 0.5700 +2785 10574 0.5610 +2785 10575 0.4990 +2785 10576 0.4990 +2785 10636 0.5180 +2785 10672 0.7720 +2785 10681 0.9980 +2785 10692 0.5470 +2785 10693 0.4990 +2785 10694 0.4990 +2785 10800 0.5410 +2785 10874 0.4990 +2785 11075 0.4980 +2785 22800 0.6650 +2785 22808 0.6710 +2785 22859 0.4690 +2785 22948 0.5020 +2785 23236 0.6620 +2785 23266 0.4690 +2785 23284 0.4690 +2785 23365 0.4990 +2785 23533 0.6500 +2785 23566 0.5910 +2785 23596 0.5410 +2785 26086 0.4080 +2785 26575 0.5490 +2785 29802 0.4750 +2785 29899 0.4460 +2785 50861 0.4770 +2785 51422 0.6500 +2785 51655 0.7080 +2785 51764 0.9460 +2785 53632 0.6500 +2785 54331 0.7050 +2785 55811 0.6510 +2785 55970 0.6070 +2785 56923 0.5410 +2785 57105 0.5560 +2785 57121 0.5000 +2785 57580 0.9020 +2785 59345 0.9980 +2785 64407 0.5180 +2785 64805 0.5160 +2785 81551 0.6560 +2785 84539 0.6450 +2785 85397 0.6000 +2785 94235 0.5610 +2785 115557 0.5220 +2785 117579 0.5000 +2785 126006 0.4210 +2785 129521 0.4990 +2785 132112 0.4660 +2785 140679 0.5740 +2785 146850 0.6500 +2785 196883 0.7140 +2785 221391 0.5470 +2785 284004 0.4050 +2785 346562 0.6660 +2785 378108 0.4370 +2785 387129 0.5490 +2785 431704 0.5350 +2785 594857 0.4990 +2785 105372280 0.7010 +2786 2787 0.5630 +2786 2788 0.6740 +2786 2790 0.5790 +2786 2791 0.9860 +2786 2792 0.9300 +2786 2793 0.9400 +2786 2840 0.5460 +2786 2847 0.6020 +2786 2852 0.5040 +2786 2863 0.5410 +2786 2869 0.5870 +2786 2898 0.5130 +2786 2899 0.5230 +2786 2999 0.4080 +2786 3053 0.4660 +2786 3265 0.6550 +2786 3350 0.7100 +2786 3351 0.7040 +2786 3352 0.7060 +2786 3354 0.7010 +2786 3355 0.7010 +2786 3358 0.4530 +2786 3361 0.7210 +2786 3363 0.9190 +2786 3678 0.5220 +2786 3688 0.5010 +2786 3708 0.5380 +2786 3709 0.5560 +2786 3710 0.5160 +2786 3759 0.5540 +2786 3760 0.7550 +2786 3761 0.5640 +2786 3762 0.7280 +2786 3763 0.7650 +2786 3765 0.7740 +2786 3766 0.5590 +2786 3768 0.5700 +2786 3772 0.6060 +2786 3827 0.5260 +2786 3845 0.6740 +2786 4128 0.4160 +2786 4543 0.6970 +2786 4544 0.9130 +2786 4893 0.6530 +2786 4988 0.6800 +2786 5028 0.4990 +2786 5032 0.4990 +2786 5058 0.5180 +2786 5082 0.6680 +2786 5145 0.5290 +2786 5148 0.5130 +2786 5158 0.5210 +2786 5170 0.5050 +2786 5173 0.5090 +2786 5179 0.5240 +2786 5290 0.6590 +2786 5291 0.7580 +2786 5293 0.7710 +2786 5294 0.6700 +2786 5295 0.6670 +2786 5296 0.7820 +2786 5330 0.9080 +2786 5331 0.8130 +2786 5332 0.6550 +2786 5335 0.6620 +2786 5336 0.6550 +2786 5367 0.5490 +2786 5443 0.5090 +2786 5473 0.4370 +2786 5562 0.6500 +2786 5563 0.6510 +2786 5564 0.6500 +2786 5565 0.6510 +2786 5566 0.6500 +2786 5567 0.7370 +2786 5568 0.6500 +2786 5571 0.6620 +2786 5578 0.6880 +2786 5579 0.7850 +2786 5580 0.5600 +2786 5581 0.6580 +2786 5582 0.6920 +2786 5583 0.5120 +2786 5588 0.5260 +2786 5594 0.6790 +2786 5595 0.6740 +2786 5599 0.7800 +2786 5600 0.6660 +2786 5601 0.6690 +2786 5603 0.6690 +2786 5731 0.6780 +2786 5732 0.6930 +2786 5733 0.6780 +2786 5734 0.7910 +2786 5739 0.5410 +2786 5880 0.6500 +2786 5881 0.6540 +2786 5923 0.6820 +2786 5924 0.6660 +2786 5956 0.5440 +2786 5995 0.5660 +2786 5996 0.5600 +2786 5997 0.5660 +2786 5998 0.5560 +2786 5999 0.5900 +2786 6000 0.5600 +2786 6001 0.5320 +2786 6002 0.5370 +2786 6003 0.5250 +2786 6004 0.5450 +2786 6010 0.5830 +2786 6237 0.6610 +2786 6288 0.5310 +2786 6300 0.6650 +2786 6323 0.6590 +2786 6343 0.4990 +2786 6344 0.5740 +2786 6363 0.5110 +2786 6368 0.5100 +2786 6464 0.4990 +2786 6654 0.5470 +2786 6714 0.5180 +2786 6801 0.4990 +2786 6915 0.5540 +2786 6950 0.5040 +2786 7203 0.5080 +2786 7204 0.5050 +2786 7349 0.7880 +2786 7432 0.5170 +2786 7433 0.5580 +2786 7434 0.5580 +2786 7441 0.4310 +2786 7474 0.5270 +2786 7481 0.5230 +2786 7852 0.9190 +2786 7855 0.5090 +2786 7976 0.5220 +2786 8322 0.4990 +2786 8323 0.4990 +2786 8490 0.5180 +2786 8503 0.6710 +2786 8601 0.5400 +2786 8786 0.5300 +2786 8801 0.4740 +2786 8997 0.5010 +2786 9002 0.5260 +2786 9138 0.4990 +2786 9170 0.5510 +2786 9254 0.5820 +2786 9289 0.4380 +2786 9340 0.5610 +2786 9459 0.5110 +2786 9568 0.7060 +2786 9628 0.5480 +2786 9630 0.7250 +2786 10000 0.6110 +2786 10022 0.5500 +2786 10287 0.5280 +2786 10316 0.5410 +2786 10418 0.4350 +2786 10574 0.5160 +2786 10575 0.5040 +2786 10576 0.5070 +2786 10578 0.4200 +2786 10636 0.5620 +2786 10672 0.7950 +2786 10681 0.9990 +2786 10692 0.5410 +2786 10693 0.4990 +2786 10694 0.5030 +2786 10800 0.5410 +2786 10874 0.6090 +2786 22800 0.6570 +2786 22808 0.6640 +2786 22859 0.4700 +2786 22948 0.5070 +2786 23236 0.7960 +2786 23266 0.4690 +2786 23284 0.4690 +2786 23365 0.4990 +2786 23533 0.6500 +2786 23566 0.5910 +2786 23596 0.5430 +2786 26086 0.5500 +2786 26575 0.5530 +2786 29899 0.4390 +2786 51422 0.6500 +2786 51655 0.6500 +2786 51764 0.8630 +2786 53632 0.6500 +2786 54331 0.5530 +2786 55811 0.6500 +2786 55970 0.5740 +2786 56923 0.5410 +2786 57105 0.5410 +2786 57121 0.5160 +2786 57580 0.9030 +2786 59345 0.9990 +2786 64407 0.5180 +2786 64805 0.5310 +2786 84539 0.5770 +2786 85397 0.5310 +2786 94235 0.5460 +2786 115557 0.5000 +2786 117579 0.5700 +2786 126006 0.4080 +2786 128434 0.4360 +2786 129521 0.4990 +2786 144402 0.4260 +2786 146850 0.6500 +2786 147381 0.4210 +2786 151126 0.4120 +2786 196883 0.7130 +2786 221391 0.5410 +2786 257313 0.4710 +2786 266727 0.4350 +2786 346562 0.7290 +2786 387129 0.5730 +2786 390714 0.4330 +2786 431704 0.5250 +2786 594857 0.4990 +2786 102723407 0.4330 +2786 104909134 0.5080 +2786 105372280 0.5490 +2787 2788 0.5510 +2787 2790 0.7120 +2787 2791 0.8360 +2787 2792 0.7240 +2787 2793 0.7340 +2787 2840 0.4990 +2787 2847 0.5410 +2787 2852 0.5160 +2787 2863 0.5410 +2787 2869 0.5810 +2787 2899 0.5100 +2787 3265 0.6560 +2787 3350 0.6780 +2787 3351 0.6780 +2787 3352 0.6780 +2787 3354 0.6780 +2787 3355 0.6780 +2787 3361 0.6800 +2787 3363 0.9180 +2787 3678 0.5000 +2787 3688 0.5170 +2787 3708 0.5160 +2787 3709 0.5170 +2787 3710 0.5230 +2787 3759 0.5260 +2787 3760 0.7170 +2787 3761 0.5260 +2787 3762 0.6680 +2787 3763 0.6950 +2787 3765 0.7020 +2787 3766 0.5260 +2787 3768 0.5260 +2787 3772 0.5930 +2787 3827 0.5170 +2787 3845 0.6930 +2787 4543 0.6780 +2787 4544 0.9080 +2787 4893 0.6610 +2787 4988 0.6830 +2787 5028 0.4990 +2787 5032 0.4990 +2787 5058 0.5110 +2787 5082 0.6840 +2787 5145 0.5220 +2787 5148 0.5130 +2787 5158 0.5220 +2787 5170 0.5020 +2787 5173 0.5000 +2787 5290 0.6600 +2787 5291 0.6680 +2787 5293 0.6500 +2787 5294 0.6920 +2787 5295 0.6520 +2787 5296 0.6520 +2787 5330 0.7330 +2787 5331 0.6740 +2787 5332 0.6860 +2787 5335 0.6500 +2787 5336 0.6500 +2787 5367 0.5270 +2787 5443 0.4990 +2787 5562 0.6580 +2787 5563 0.6500 +2787 5564 0.6580 +2787 5565 0.6520 +2787 5566 0.6520 +2787 5567 0.6580 +2787 5568 0.6500 +2787 5571 0.6650 +2787 5578 0.7140 +2787 5579 0.7330 +2787 5580 0.5210 +2787 5581 0.6740 +2787 5582 0.7040 +2787 5583 0.5500 +2787 5588 0.5080 +2787 5594 0.6780 +2787 5595 0.6630 +2787 5599 0.6660 +2787 5600 0.6520 +2787 5601 0.6620 +2787 5603 0.6520 +2787 5731 0.6780 +2787 5732 0.6780 +2787 5733 0.6980 +2787 5734 0.6780 +2787 5739 0.5410 +2787 5880 0.7000 +2787 5881 0.6980 +2787 5923 0.6500 +2787 5924 0.6690 +2787 5956 0.5550 +2787 5995 0.5840 +2787 5996 0.5670 +2787 5997 0.5690 +2787 5998 0.5680 +2787 5999 0.5180 +2787 6000 0.6290 +2787 6001 0.5400 +2787 6002 0.5390 +2787 6003 0.5670 +2787 6004 0.5180 +2787 6010 0.5520 +2787 6237 0.6520 +2787 6288 0.4990 +2787 6300 0.6520 +2787 6323 0.6500 +2787 6343 0.4990 +2787 6344 0.5580 +2787 6368 0.5100 +2787 6464 0.5060 +2787 6654 0.5400 +2787 6714 0.5300 +2787 6801 0.5060 +2787 6915 0.5410 +2787 6921 0.4330 +2787 6950 0.5180 +2787 7203 0.5760 +2787 7204 0.5060 +2787 7432 0.5070 +2787 7433 0.5580 +2787 7434 0.5580 +2787 7474 0.5080 +2787 7481 0.5080 +2787 7852 0.9130 +2787 7855 0.5210 +2787 7976 0.5040 +2787 8322 0.5040 +2787 8323 0.5040 +2787 8490 0.5180 +2787 8503 0.6590 +2787 8601 0.5180 +2787 8786 0.5900 +2787 8997 0.4990 +2787 9002 0.4990 +2787 9138 0.5310 +2787 9170 0.5930 +2787 9254 0.4990 +2787 9340 0.5580 +2787 9459 0.5000 +2787 9568 0.6980 +2787 9628 0.6710 +2787 9630 0.7350 +2787 9978 0.4750 +2787 10000 0.4990 +2787 10287 0.5380 +2787 10316 0.5410 +2787 10574 0.5690 +2787 10575 0.5480 +2787 10576 0.5300 +2787 10636 0.5410 +2787 10672 0.7780 +2787 10681 0.9980 +2787 10692 0.5450 +2787 10693 0.5590 +2787 10694 0.5100 +2787 10800 0.5620 +2787 10874 0.4990 +2787 22800 0.6500 +2787 22808 0.6500 +2787 22859 0.4720 +2787 22885 0.4120 +2787 22948 0.5560 +2787 23236 0.7230 +2787 23266 0.5010 +2787 23284 0.4690 +2787 23365 0.5770 +2787 23533 0.6850 +2787 23566 0.5650 +2787 23596 0.5410 +2787 26086 0.4580 +2787 26575 0.5180 +2787 29899 0.4100 +2787 51422 0.6810 +2787 51655 0.6500 +2787 51764 0.7100 +2787 53632 0.7030 +2787 54331 0.5700 +2787 55811 0.6500 +2787 55970 0.6610 +2787 56923 0.5410 +2787 57105 0.5410 +2787 57121 0.5600 +2787 57580 0.9070 +2787 59345 0.9990 +2787 63940 0.4280 +2787 64407 0.5180 +2787 64805 0.5030 +2787 84539 0.5870 +2787 85397 0.5180 +2787 94235 0.5530 +2787 115557 0.4990 +2787 117579 0.4990 +2787 126006 0.4080 +2787 129521 0.4990 +2787 146850 0.6500 +2787 158219 0.4520 +2787 196883 0.6960 +2787 221391 0.5450 +2787 346562 0.6600 +2787 387129 0.5410 +2787 387923 0.4960 +2787 431704 0.5670 +2787 594857 0.4990 +2787 105372280 0.6970 +2788 2790 0.5500 +2788 2791 0.5980 +2788 2792 0.7550 +2788 2793 0.6160 +2788 2823 0.4450 +2788 2838 0.4440 +2788 2840 0.5270 +2788 2847 0.5410 +2788 2852 0.6260 +2788 2863 0.5410 +2788 2869 0.5750 +2788 2899 0.5570 +2788 3265 0.6640 +2788 3350 0.7060 +2788 3351 0.7040 +2788 3352 0.8040 +2788 3354 0.8180 +2788 3355 0.7360 +2788 3358 0.4100 +2788 3361 0.7650 +2788 3363 0.9120 +2788 3678 0.5210 +2788 3688 0.5060 +2788 3708 0.5630 +2788 3709 0.5360 +2788 3710 0.5380 +2788 3759 0.5320 +2788 3760 0.6890 +2788 3761 0.5690 +2788 3762 0.6800 +2788 3763 0.7010 +2788 3765 0.7390 +2788 3766 0.5580 +2788 3768 0.5570 +2788 3772 0.5260 +2788 3827 0.5270 +2788 3845 0.6710 +2788 4543 0.6820 +2788 4544 0.9090 +2788 4852 0.4510 +2788 4893 0.6580 +2788 4988 0.7990 +2788 4991 0.6780 +2788 4992 0.6780 +2788 4993 0.6500 +2788 4994 0.6780 +2788 5028 0.4990 +2788 5032 0.5030 +2788 5058 0.4990 +2788 5082 0.5640 +2788 5145 0.5320 +2788 5148 0.5130 +2788 5158 0.5430 +2788 5170 0.5310 +2788 5173 0.7090 +2788 5290 0.6500 +2788 5291 0.6500 +2788 5293 0.6560 +2788 5294 0.6690 +2788 5295 0.6540 +2788 5296 0.6560 +2788 5330 0.7150 +2788 5331 0.6730 +2788 5332 0.6660 +2788 5335 0.6540 +2788 5336 0.7040 +2788 5367 0.5650 +2788 5443 0.5060 +2788 5562 0.6500 +2788 5563 0.6500 +2788 5564 0.6550 +2788 5565 0.6730 +2788 5566 0.6560 +2788 5567 0.6630 +2788 5568 0.6530 +2788 5571 0.6610 +2788 5578 0.6980 +2788 5579 0.7130 +2788 5580 0.5640 +2788 5581 0.6620 +2788 5582 0.7040 +2788 5583 0.6510 +2788 5588 0.5040 +2788 5594 0.6670 +2788 5595 0.6700 +2788 5599 0.6660 +2788 5600 0.6630 +2788 5601 0.6600 +2788 5603 0.6610 +2788 5731 0.6790 +2788 5732 0.6800 +2788 5733 0.7910 +2788 5734 0.6780 +2788 5739 0.5450 +2788 5880 0.6550 +2788 5881 0.6550 +2788 5923 0.6700 +2788 5924 0.6500 +2788 5956 0.5590 +2788 5995 0.5960 +2788 5996 0.5250 +2788 5997 0.5920 +2788 5998 0.5240 +2788 5999 0.5180 +2788 6000 0.5550 +2788 6001 0.5320 +2788 6002 0.5480 +2788 6003 0.5250 +2788 6004 0.5180 +2788 6010 0.5800 +2788 6237 0.6770 +2788 6258 0.4240 +2788 6288 0.4990 +2788 6300 0.6610 +2788 6323 0.6620 +2788 6343 0.4990 +2788 6344 0.5690 +2788 6368 0.5100 +2788 6387 0.4520 +2788 6464 0.4990 +2788 6654 0.5680 +2788 6714 0.4990 +2788 6750 0.4410 +2788 6801 0.5130 +2788 6915 0.5720 +2788 6950 0.4990 +2788 7203 0.5140 +2788 7204 0.5380 +2788 7432 0.5180 +2788 7433 0.5750 +2788 7434 0.6760 +2788 7472 0.4280 +2788 7474 0.5340 +2788 7481 0.5140 +2788 7852 0.9130 +2788 7855 0.4990 +2788 7932 0.6500 +2788 7976 0.5130 +2788 8322 0.5040 +2788 8323 0.4990 +2788 8383 0.6500 +2788 8386 0.6780 +2788 8387 0.6780 +2788 8388 0.6780 +2788 8390 0.6780 +2788 8490 0.5190 +2788 8503 0.6920 +2788 8590 0.6780 +2788 8601 0.6910 +2788 8786 0.5970 +2788 8997 0.5100 +2788 9002 0.5010 +2788 9138 0.5040 +2788 9170 0.7270 +2788 9254 0.5900 +2788 9340 0.5650 +2788 9459 0.5440 +2788 9568 0.8070 +2788 9628 0.5890 +2788 9630 0.7210 +2788 10000 0.5320 +2788 10287 0.5190 +2788 10316 0.5420 +2788 10574 0.5070 +2788 10575 0.4990 +2788 10576 0.4990 +2788 10636 0.6990 +2788 10672 0.7110 +2788 10681 0.9990 +2788 10692 0.5440 +2788 10693 0.4990 +2788 10694 0.4990 +2788 10798 0.6780 +2788 10800 0.5860 +2788 10846 0.4800 +2788 10874 0.5390 +2788 22800 0.6770 +2788 22808 0.6810 +2788 22859 0.4770 +2788 22948 0.5010 +2788 22982 0.4690 +2788 23236 0.7960 +2788 23266 0.4690 +2788 23284 0.4690 +2788 23365 0.4990 +2788 23533 0.6580 +2788 23538 0.6780 +2788 23566 0.5910 +2788 23596 0.5410 +2788 26003 0.5910 +2788 26086 0.6690 +2788 26188 0.6780 +2788 26189 0.6500 +2788 26211 0.6780 +2788 26212 0.6780 +2788 26219 0.6780 +2788 26245 0.6780 +2788 26246 0.6780 +2788 26248 0.6780 +2788 26333 0.6780 +2788 26338 0.6780 +2788 26339 0.6780 +2788 26341 0.6780 +2788 26476 0.6780 +2788 26493 0.6780 +2788 26494 0.6780 +2788 26496 0.6820 +2788 26497 0.6780 +2788 26529 0.6780 +2788 26531 0.6780 +2788 26532 0.6780 +2788 26533 0.6780 +2788 26534 0.6780 +2788 26538 0.6810 +2788 26539 0.6780 +2788 26575 0.5180 +2788 26595 0.6780 +2788 26648 0.6780 +2788 26658 0.6780 +2788 26659 0.6780 +2788 26664 0.6780 +2788 26686 0.6780 +2788 26687 0.6780 +2788 26689 0.6780 +2788 26692 0.6500 +2788 26693 0.6780 +2788 26707 0.6500 +2788 26716 0.6500 +2788 26735 0.6780 +2788 26737 0.6780 +2788 26740 0.6780 +2788 29899 0.4320 +2788 51237 0.4710 +2788 51422 0.6550 +2788 51655 0.6590 +2788 51764 0.9460 +2788 53632 0.6500 +2788 54331 0.5730 +2788 55811 0.6660 +2788 55970 0.5490 +2788 56656 0.6780 +2788 56923 0.5410 +2788 56934 0.4420 +2788 57105 0.7220 +2788 57121 0.5300 +2788 57580 0.9020 +2788 59345 0.9990 +2788 63940 0.4850 +2788 64407 0.5390 +2788 64805 0.5360 +2788 79290 0.6780 +2788 79295 0.6780 +2788 79310 0.6780 +2788 79317 0.6500 +2788 79324 0.6780 +2788 79339 0.6780 +2788 79345 0.6780 +2788 79346 0.6780 +2788 79473 0.6780 +2788 79490 0.6780 +2788 79541 0.6780 +2788 79544 0.6500 +2788 79549 0.6780 +2788 81050 0.6780 +2788 81099 0.6780 +2788 81127 0.6780 +2788 81168 0.6500 +2788 81282 0.6780 +2788 81285 0.6780 +2788 81300 0.6780 +2788 81309 0.6500 +2788 81318 0.6950 +2788 81327 0.6950 +2788 81341 0.6520 +2788 81392 0.6780 +2788 81399 0.7400 +2788 81442 0.6780 +2788 81448 0.7550 +2788 81466 0.6780 +2788 81469 0.6780 +2788 81470 0.6780 +2788 81696 0.6850 +2788 81697 0.6780 +2788 81797 0.6780 +2788 84152 0.4250 +2788 84249 0.4830 +2788 84539 0.5840 +2788 85397 0.5610 +2788 94235 0.5580 +2788 115557 0.4990 +2788 117579 0.6480 +2788 119678 0.6780 +2788 119679 0.6780 +2788 119682 0.6780 +2788 119687 0.7720 +2788 119692 0.6780 +2788 119694 0.6780 +2788 119695 0.6780 +2788 119749 0.6780 +2788 119764 0.6780 +2788 119765 0.6780 +2788 119772 0.6780 +2788 119774 0.6780 +2788 120065 0.6780 +2788 120066 0.6780 +2788 120586 0.6850 +2788 120775 0.6780 +2788 120776 0.6780 +2788 120787 0.6780 +2788 120793 0.6500 +2788 121129 0.6780 +2788 121130 0.6820 +2788 121275 0.6500 +2788 121364 0.6820 +2788 122740 0.6500 +2788 122742 0.6500 +2788 122748 0.6780 +2788 124538 0.8050 +2788 125958 0.6780 +2788 125962 0.6780 +2788 125963 0.6780 +2788 126006 0.5110 +2788 126370 0.6780 +2788 126541 0.6780 +2788 127059 0.6780 +2788 127062 0.6780 +2788 127064 0.6500 +2788 127066 0.6780 +2788 127068 0.7850 +2788 127069 0.6780 +2788 127077 0.7320 +2788 127385 0.8160 +2788 127608 0.6780 +2788 127623 0.6780 +2788 128360 0.6780 +2788 128366 0.6780 +2788 128367 0.6780 +2788 128368 0.6780 +2788 128372 0.6780 +2788 129521 0.4990 +2788 130075 0.7560 +2788 134083 0.7980 +2788 135924 0.6780 +2788 135941 0.6780 +2788 135946 0.6780 +2788 135948 0.6780 +2788 138799 0.6780 +2788 138802 0.6780 +2788 138804 0.6780 +2788 138805 0.6780 +2788 138881 0.6780 +2788 138883 0.6780 +2788 143496 0.6780 +2788 143503 0.6780 +2788 144124 0.6820 +2788 144125 0.6780 +2788 146850 0.6500 +2788 148281 0.4260 +2788 150681 0.6500 +2788 158131 0.6780 +2788 162998 0.6780 +2788 196335 0.6500 +2788 196883 0.7440 +2788 219417 0.6780 +2788 219428 0.6500 +2788 219429 0.6500 +2788 219431 0.6780 +2788 219436 0.6780 +2788 219437 0.6780 +2788 219438 0.6780 +2788 219447 0.6780 +2788 219453 0.7390 +2788 219469 0.6850 +2788 219473 0.6780 +2788 219477 0.6500 +2788 219479 0.6780 +2788 219482 0.6500 +2788 219484 0.6500 +2788 219487 0.6780 +2788 219493 0.6780 +2788 219858 0.6780 +2788 219869 0.7370 +2788 219870 0.6780 +2788 219874 0.6780 +2788 219875 0.6780 +2788 219952 0.6780 +2788 219954 0.6780 +2788 219956 0.6780 +2788 219957 0.6780 +2788 219960 0.6510 +2788 219965 0.6780 +2788 219968 0.6780 +2788 219981 0.6780 +2788 219982 0.6780 +2788 219983 0.6780 +2788 219986 0.6780 +2788 221391 0.5440 +2788 254786 0.6780 +2788 254879 0.6780 +2788 254973 0.6780 +2788 255725 0.6780 +2788 256148 0.6780 +2788 282763 0.6780 +2788 282770 0.6820 +2788 282775 0.6780 +2788 283092 0.6780 +2788 283093 0.6780 +2788 283159 0.6780 +2788 283160 0.6780 +2788 283162 0.7490 +2788 283297 0.6820 +2788 283365 0.6780 +2788 283694 0.6780 +2788 284383 0.6780 +2788 284433 0.6780 +2788 284521 0.6930 +2788 284532 0.6780 +2788 285659 0.6780 +2788 286362 0.6780 +2788 338662 0.6780 +2788 338674 0.6850 +2788 338675 0.6780 +2788 338751 0.6780 +2788 338755 0.6780 +2788 340980 0.6780 +2788 341152 0.6780 +2788 341276 0.6820 +2788 341416 0.7020 +2788 341418 0.6780 +2788 341799 0.6780 +2788 343169 0.6780 +2788 343170 0.6780 +2788 343171 0.6780 +2788 343172 0.6500 +2788 343173 0.6780 +2788 343563 0.6780 +2788 346517 0.6780 +2788 346525 0.6780 +2788 346562 0.7000 +2788 347168 0.6780 +2788 347169 0.6780 +2788 347468 0.6780 +2788 387129 0.5410 +2788 387748 0.6500 +2788 388761 0.6780 +2788 390036 0.6780 +2788 390037 0.6780 +2788 390038 0.6780 +2788 390054 0.6780 +2788 390058 0.6780 +2788 390059 0.6780 +2788 390061 0.6780 +2788 390063 0.6780 +2788 390064 0.6780 +2788 390066 0.6780 +2788 390067 0.6780 +2788 390072 0.6780 +2788 390075 0.6780 +2788 390077 0.6780 +2788 390078 0.6780 +2788 390079 0.6780 +2788 390081 0.6780 +2788 390082 0.6780 +2788 390083 0.6500 +2788 390084 0.6500 +2788 390093 0.6820 +2788 390113 0.6780 +2788 390142 0.6780 +2788 390144 0.6780 +2788 390148 0.6780 +2788 390151 0.6850 +2788 390152 0.6850 +2788 390155 0.6780 +2788 390157 0.6780 +2788 390162 0.6500 +2788 390168 0.6780 +2788 390174 0.6780 +2788 390181 0.6780 +2788 390190 0.6780 +2788 390191 0.6780 +2788 390195 0.6780 +2788 390197 0.6780 +2788 390199 0.6780 +2788 390201 0.7400 +2788 390260 0.6780 +2788 390261 0.6780 +2788 390264 0.6780 +2788 390265 0.6780 +2788 390271 0.6780 +2788 390275 0.6780 +2788 390321 0.6780 +2788 390323 0.6780 +2788 390326 0.6780 +2788 390327 0.6780 +2788 390429 0.6780 +2788 390431 0.6500 +2788 390433 0.6500 +2788 390437 0.6780 +2788 390445 0.6780 +2788 390538 0.6780 +2788 390648 0.6780 +2788 390649 0.6780 +2788 390883 0.6780 +2788 390892 0.6780 +2788 391107 0.6780 +2788 391109 0.6780 +2788 391112 0.6780 +2788 391114 0.6500 +2788 391189 0.6780 +2788 391190 0.7330 +2788 391192 0.6780 +2788 391194 0.6780 +2788 391195 0.6500 +2788 391196 0.6780 +2788 391211 0.6780 +2788 392138 0.6780 +2788 392309 0.6500 +2788 392376 0.6780 +2788 392390 0.6780 +2788 392391 0.6780 +2788 392392 0.6780 +2788 393046 0.6780 +2788 401427 0.6780 +2788 401665 0.6780 +2788 401666 0.6780 +2788 401667 0.6780 +2788 401992 0.6780 +2788 401993 0.6780 +2788 401994 0.6910 +2788 402135 0.6780 +2788 402317 0.6780 +2788 403239 0.6780 +2788 403244 0.6780 +2788 403253 0.6920 +2788 403273 0.6780 +2788 403274 0.6780 +2788 403277 0.6780 +2788 403278 0.6780 +2788 403282 0.6780 +2788 403284 0.6820 +2788 431704 0.5240 +2788 440153 0.7250 +2788 441308 0.6780 +2788 441608 0.6780 +2788 441670 0.6780 +2788 441933 0.6780 +2788 442184 0.6780 +2788 442185 0.6500 +2788 442186 0.6500 +2788 442191 0.6780 +2788 442194 0.6780 +2788 442361 0.6780 +2788 594857 0.4990 +2788 102723532 0.6780 +2788 105369274 0.6780 +2788 105372280 0.5450 +2790 2791 0.9910 +2790 2792 0.6590 +2790 2793 0.7280 +2790 2840 0.5200 +2790 2847 0.5410 +2790 2852 0.4990 +2790 2863 0.5410 +2790 2869 0.5880 +2790 2899 0.5100 +2790 3265 0.6520 +2790 3350 0.6830 +2790 3351 0.6780 +2790 3352 0.6780 +2790 3354 0.6780 +2790 3355 0.6780 +2790 3361 0.6820 +2790 3363 0.9200 +2790 3607 0.4040 +2790 3678 0.4990 +2790 3688 0.5010 +2790 3708 0.5240 +2790 3709 0.5200 +2790 3710 0.5160 +2790 3759 0.5370 +2790 3760 0.6870 +2790 3761 0.5260 +2790 3762 0.6680 +2790 3763 0.6810 +2790 3765 0.7100 +2790 3766 0.5260 +2790 3768 0.5300 +2790 3772 0.5800 +2790 3827 0.5170 +2790 3845 0.6550 +2790 4543 0.6780 +2790 4544 0.9080 +2790 4893 0.6530 +2790 4988 0.6780 +2790 5028 0.4990 +2790 5032 0.4990 +2790 5058 0.4990 +2790 5082 0.6000 +2790 5145 0.5210 +2790 5148 0.5130 +2790 5158 0.5210 +2790 5170 0.5010 +2790 5173 0.5090 +2790 5290 0.6500 +2790 5291 0.6780 +2790 5293 0.6500 +2790 5294 0.6500 +2790 5295 0.6500 +2790 5296 0.6500 +2790 5330 0.6550 +2790 5331 0.6720 +2790 5332 0.6550 +2790 5335 0.6500 +2790 5336 0.6500 +2790 5367 0.5270 +2790 5443 0.4990 +2790 5562 0.6500 +2790 5563 0.6500 +2790 5564 0.6680 +2790 5565 0.6600 +2790 5566 0.6500 +2790 5567 0.6650 +2790 5568 0.6500 +2790 5571 0.6610 +2790 5578 0.6670 +2790 5579 0.6680 +2790 5580 0.5050 +2790 5581 0.6700 +2790 5582 0.7140 +2790 5583 0.5130 +2790 5588 0.5050 +2790 5594 0.6640 +2790 5595 0.6550 +2790 5599 0.6680 +2790 5600 0.6630 +2790 5601 0.6640 +2790 5603 0.6520 +2790 5731 0.7010 +2790 5732 0.6790 +2790 5733 0.6780 +2790 5734 0.6780 +2790 5739 0.5410 +2790 5880 0.6520 +2790 5881 0.6500 +2790 5923 0.6920 +2790 5924 0.7170 +2790 5956 0.5570 +2790 5995 0.6270 +2790 5996 0.5190 +2790 5997 0.5220 +2790 5998 0.5180 +2790 5999 0.5300 +2790 6000 0.5180 +2790 6001 0.5250 +2790 6002 0.5180 +2790 6003 0.5180 +2790 6004 0.5380 +2790 6010 0.5530 +2790 6237 0.6500 +2790 6288 0.4990 +2790 6300 0.6540 +2790 6323 0.6610 +2790 6343 0.4990 +2790 6344 0.5580 +2790 6368 0.5100 +2790 6464 0.4990 +2790 6654 0.6150 +2790 6714 0.4990 +2790 6801 0.4990 +2790 6915 0.5410 +2790 6950 0.5040 +2790 7203 0.4990 +2790 7204 0.5050 +2790 7432 0.5070 +2790 7433 0.5580 +2790 7434 0.5580 +2790 7474 0.5090 +2790 7481 0.5080 +2790 7852 0.9110 +2790 7855 0.4990 +2790 7976 0.4990 +2790 8322 0.4990 +2790 8323 0.5000 +2790 8490 0.5180 +2790 8503 0.6500 +2790 8601 0.5360 +2790 8786 0.5180 +2790 8997 0.4990 +2790 9002 0.4990 +2790 9138 0.4990 +2790 9170 0.5410 +2790 9254 0.4990 +2790 9340 0.5580 +2790 9459 0.4990 +2790 9568 0.6960 +2790 9628 0.5180 +2790 9630 0.7460 +2790 10000 0.5150 +2790 10287 0.5570 +2790 10316 0.5410 +2790 10574 0.5080 +2790 10575 0.4990 +2790 10576 0.5000 +2790 10636 0.5200 +2790 10672 0.7580 +2790 10681 0.7720 +2790 10692 0.5460 +2790 10693 0.4990 +2790 10694 0.4990 +2790 10800 0.5410 +2790 10874 0.5220 +2790 22800 0.6500 +2790 22808 0.6500 +2790 22859 0.4690 +2790 22948 0.5010 +2790 23236 0.6850 +2790 23252 0.4200 +2790 23266 0.4690 +2790 23284 0.4690 +2790 23365 0.4990 +2790 23533 0.6500 +2790 23566 0.5620 +2790 23596 0.5420 +2790 26086 0.4690 +2790 26575 0.5920 +2790 29899 0.4600 +2790 51422 0.6560 +2790 51655 0.6500 +2790 51764 0.8800 +2790 53632 0.6560 +2790 54331 0.5750 +2790 55740 0.4100 +2790 55811 0.6500 +2790 55970 0.7260 +2790 56923 0.5410 +2790 57105 0.5410 +2790 57121 0.5330 +2790 57580 0.9000 +2790 59345 0.9990 +2790 63940 0.4040 +2790 64407 0.5260 +2790 64805 0.5030 +2790 81846 0.4060 +2790 84539 0.5410 +2790 85397 0.5940 +2790 94235 0.5530 +2790 115557 0.4990 +2790 117579 0.4990 +2790 126006 0.4080 +2790 129521 0.4990 +2790 146850 0.6500 +2790 196883 0.7460 +2790 221391 0.5460 +2790 245937 0.4770 +2790 346562 0.6790 +2790 387129 0.5410 +2790 431704 0.5180 +2790 552891 0.4580 +2790 594857 0.4990 +2790 105372280 0.5400 +2791 2792 0.5460 +2791 2793 0.5810 +2791 2840 0.4990 +2791 2847 0.5410 +2791 2852 0.5180 +2791 2863 0.5410 +2791 2869 0.6190 +2791 2899 0.5340 +2791 3265 0.6590 +2791 3350 0.6830 +2791 3351 0.6830 +2791 3352 0.6810 +2791 3354 0.6950 +2791 3355 0.7170 +2791 3361 0.6960 +2791 3363 0.9180 +2791 3490 0.5420 +2791 3491 0.4470 +2791 3678 0.6070 +2791 3688 0.6600 +2791 3708 0.5470 +2791 3709 0.5550 +2791 3710 0.5380 +2791 3759 0.5330 +2791 3760 0.7090 +2791 3761 0.5260 +2791 3762 0.6680 +2791 3763 0.6760 +2791 3765 0.6910 +2791 3766 0.5260 +2791 3768 0.5260 +2791 3772 0.5650 +2791 3827 0.5260 +2791 3845 0.6740 +2791 4543 0.6780 +2791 4544 0.9080 +2791 4893 0.6720 +2791 4988 0.6980 +2791 5028 0.4990 +2791 5032 0.4990 +2791 5058 0.5030 +2791 5082 0.6680 +2791 5145 0.5750 +2791 5148 0.6380 +2791 5158 0.5710 +2791 5170 0.5010 +2791 5173 0.5000 +2791 5290 0.6680 +2791 5291 0.6900 +2791 5293 0.6580 +2791 5294 0.6560 +2791 5295 0.6990 +2791 5296 0.6530 +2791 5330 0.6700 +2791 5331 0.6550 +2791 5332 0.7030 +2791 5335 0.6580 +2791 5336 0.6590 +2791 5367 0.5330 +2791 5443 0.4990 +2791 5562 0.6520 +2791 5563 0.6520 +2791 5564 0.6500 +2791 5565 0.6500 +2791 5566 0.6500 +2791 5567 0.6630 +2791 5568 0.6500 +2791 5571 0.6500 +2791 5578 0.6970 +2791 5579 0.6750 +2791 5580 0.5210 +2791 5581 0.6690 +2791 5582 0.6760 +2791 5583 0.5740 +2791 5588 0.5220 +2791 5594 0.6550 +2791 5595 0.6630 +2791 5599 0.6540 +2791 5600 0.6580 +2791 5601 0.6540 +2791 5603 0.6560 +2791 5731 0.6930 +2791 5732 0.6950 +2791 5733 0.6990 +2791 5734 0.6790 +2791 5739 0.5630 +2791 5880 0.6830 +2791 5881 0.6540 +2791 5923 0.6530 +2791 5924 0.6530 +2791 5956 0.5970 +2791 5995 0.5410 +2791 5996 0.5190 +2791 5997 0.5430 +2791 5998 0.5530 +2791 5999 0.5230 +2791 6000 0.5190 +2791 6001 0.5760 +2791 6002 0.5180 +2791 6003 0.5180 +2791 6004 0.5180 +2791 6010 0.7390 +2791 6237 0.6910 +2791 6288 0.6190 +2791 6300 0.6560 +2791 6323 0.6540 +2791 6343 0.4990 +2791 6344 0.5580 +2791 6368 0.5620 +2791 6376 0.4470 +2791 6464 0.5100 +2791 6654 0.5400 +2791 6663 0.4190 +2791 6714 0.4990 +2791 6801 0.4990 +2791 6915 0.5900 +2791 6950 0.4990 +2791 7203 0.4990 +2791 7204 0.5050 +2791 7432 0.5070 +2791 7433 0.5580 +2791 7434 0.5580 +2791 7474 0.5760 +2791 7481 0.5650 +2791 7852 0.9450 +2791 7855 0.4990 +2791 7976 0.5080 +2791 8322 0.5080 +2791 8323 0.4990 +2791 8436 0.4570 +2791 8490 0.5750 +2791 8503 0.7080 +2791 8601 0.5390 +2791 8786 0.5300 +2791 8997 0.4990 +2791 9002 0.5030 +2791 9138 0.4990 +2791 9170 0.6000 +2791 9254 0.5140 +2791 9340 0.5580 +2791 9459 0.5080 +2791 9568 0.6660 +2791 9628 0.6090 +2791 9630 0.7260 +2791 10000 0.5060 +2791 10287 0.6640 +2791 10316 0.5410 +2791 10563 0.4420 +2791 10574 0.5070 +2791 10575 0.4990 +2791 10576 0.4990 +2791 10636 0.5180 +2791 10672 0.7170 +2791 10681 0.7940 +2791 10692 0.5910 +2791 10693 0.4990 +2791 10694 0.5000 +2791 10800 0.5420 +2791 10874 0.7110 +2791 22795 0.4090 +2791 22800 0.6650 +2791 22808 0.6590 +2791 22859 0.4690 +2791 22948 0.5010 +2791 23236 0.7110 +2791 23266 0.4720 +2791 23284 0.4690 +2791 23365 0.5190 +2791 23533 0.6500 +2791 23566 0.5750 +2791 23596 0.5600 +2791 26086 0.4400 +2791 26575 0.5180 +2791 29899 0.4080 +2791 51422 0.6600 +2791 51655 0.6560 +2791 51657 0.4610 +2791 51764 0.7640 +2791 53632 0.6500 +2791 54331 0.8370 +2791 55811 0.6500 +2791 55970 0.7590 +2791 56923 0.5410 +2791 57105 0.5410 +2791 57121 0.6060 +2791 57154 0.4710 +2791 57580 0.9010 +2791 59345 0.9990 +2791 63940 0.4070 +2791 64321 0.4040 +2791 64407 0.5640 +2791 64805 0.5190 +2791 84539 0.5410 +2791 85397 0.5180 +2791 85449 0.4250 +2791 94235 0.7000 +2791 115557 0.4990 +2791 117579 0.5130 +2791 126006 0.4190 +2791 129521 0.4990 +2791 146850 0.6500 +2791 196883 0.7550 +2791 221391 0.5910 +2791 341359 0.4090 +2791 346562 0.7100 +2791 387129 0.5410 +2791 431704 0.5180 +2791 594857 0.4990 +2791 105372280 0.6990 +2792 2793 0.6000 +2792 2840 0.5430 +2792 2847 0.5410 +2792 2852 0.4990 +2792 2863 0.5410 +2792 2869 0.6050 +2792 2898 0.5150 +2792 2899 0.5730 +2792 2978 0.4450 +2792 2979 0.5230 +2792 2986 0.6470 +2792 3265 0.7340 +2792 3350 0.6950 +2792 3351 0.6890 +2792 3352 0.7100 +2792 3354 0.7280 +2792 3355 0.6880 +2792 3361 0.6860 +2792 3363 0.9170 +2792 3678 0.4990 +2792 3688 0.4990 +2792 3708 0.5310 +2792 3709 0.5540 +2792 3710 0.5470 +2792 3759 0.5330 +2792 3760 0.6690 +2792 3761 0.5270 +2792 3762 0.6750 +2792 3763 0.6730 +2792 3765 0.6890 +2792 3766 0.5260 +2792 3768 0.5260 +2792 3772 0.5520 +2792 3827 0.5360 +2792 3845 0.6620 +2792 4543 0.6780 +2792 4544 0.9080 +2792 4893 0.6610 +2792 4901 0.4050 +2792 4923 0.8160 +2792 4988 0.7070 +2792 5028 0.4990 +2792 5032 0.4990 +2792 5058 0.5030 +2792 5082 0.9130 +2792 5132 0.9750 +2792 5145 0.9740 +2792 5146 0.6010 +2792 5148 0.9600 +2792 5149 0.6230 +2792 5158 0.9470 +2792 5170 0.5010 +2792 5173 0.5000 +2792 5290 0.6650 +2792 5291 0.6670 +2792 5293 0.6580 +2792 5294 0.6710 +2792 5295 0.6910 +2792 5296 0.6530 +2792 5330 0.8510 +2792 5331 0.6550 +2792 5332 0.6660 +2792 5335 0.6580 +2792 5336 0.6580 +2792 5367 0.5340 +2792 5443 0.4990 +2792 5562 0.6570 +2792 5563 0.6810 +2792 5564 0.6500 +2792 5565 0.6500 +2792 5566 0.6580 +2792 5567 0.6570 +2792 5568 0.6600 +2792 5571 0.6500 +2792 5578 0.7040 +2792 5579 0.6730 +2792 5580 0.5400 +2792 5581 0.6880 +2792 5582 0.6590 +2792 5583 0.5270 +2792 5588 0.5210 +2792 5594 0.6550 +2792 5595 0.6550 +2792 5599 0.6540 +2792 5600 0.6660 +2792 5601 0.6540 +2792 5603 0.6560 +2792 5731 0.6940 +2792 5732 0.6930 +2792 5733 0.7280 +2792 5734 0.6780 +2792 5739 0.5430 +2792 5880 0.6540 +2792 5881 0.6540 +2792 5923 0.6530 +2792 5924 0.6710 +2792 5949 0.4200 +2792 5956 0.7050 +2792 5957 0.5980 +2792 5961 0.4540 +2792 5995 0.6390 +2792 5996 0.5540 +2792 5997 0.5180 +2792 5998 0.5430 +2792 5999 0.5290 +2792 6000 0.5480 +2792 6001 0.5380 +2792 6002 0.5390 +2792 6003 0.5400 +2792 6004 0.5340 +2792 6010 0.9800 +2792 6011 0.5070 +2792 6094 0.6120 +2792 6237 0.6720 +2792 6288 0.4990 +2792 6295 0.7190 +2792 6300 0.6560 +2792 6323 0.6540 +2792 6343 0.5030 +2792 6344 0.5580 +2792 6368 0.5210 +2792 6464 0.4990 +2792 6608 0.4870 +2792 6654 0.5530 +2792 6714 0.4990 +2792 6801 0.4990 +2792 6915 0.5680 +2792 6950 0.4990 +2792 7203 0.4990 +2792 7204 0.5050 +2792 7432 0.5070 +2792 7433 0.5580 +2792 7434 0.5580 +2792 7474 0.5100 +2792 7481 0.5320 +2792 7852 0.9100 +2792 7855 0.4990 +2792 7976 0.4990 +2792 8322 0.4990 +2792 8323 0.4990 +2792 8490 0.5380 +2792 8503 0.6590 +2792 8601 0.5410 +2792 8668 0.4060 +2792 8786 0.5540 +2792 8787 0.9360 +2792 8801 0.5970 +2792 8802 0.5010 +2792 8997 0.4990 +2792 9002 0.4990 +2792 9138 0.4990 +2792 9170 0.6400 +2792 9187 0.5800 +2792 9254 0.4990 +2792 9340 0.5580 +2792 9459 0.4990 +2792 9568 0.6530 +2792 9628 0.5670 +2792 9630 0.7110 +2792 10000 0.4990 +2792 10002 0.4520 +2792 10287 0.5360 +2792 10316 0.5410 +2792 10574 0.5070 +2792 10575 0.4990 +2792 10576 0.4990 +2792 10636 0.5180 +2792 10672 0.8000 +2792 10681 0.8030 +2792 10692 0.6120 +2792 10693 0.4990 +2792 10694 0.4990 +2792 10800 0.5410 +2792 10874 0.5630 +2792 11179 0.7110 +2792 22800 0.6640 +2792 22808 0.6590 +2792 22859 0.4690 +2792 22948 0.5010 +2792 23236 0.6830 +2792 23266 0.4690 +2792 23284 0.4690 +2792 23365 0.5110 +2792 23533 0.6500 +2792 23566 0.6340 +2792 23596 0.5410 +2792 23746 0.5110 +2792 26086 0.4080 +2792 26575 0.5410 +2792 29899 0.4810 +2792 51422 0.6500 +2792 51655 0.6700 +2792 51657 0.4610 +2792 51764 0.8880 +2792 53632 0.6500 +2792 54331 0.6070 +2792 54714 0.5170 +2792 55811 0.6560 +2792 55970 0.6000 +2792 56923 0.5680 +2792 57105 0.5410 +2792 57121 0.6290 +2792 57580 0.9000 +2792 59345 0.9990 +2792 64407 0.5380 +2792 64805 0.5030 +2792 84539 0.5810 +2792 85397 0.5420 +2792 94235 0.6570 +2792 115557 0.4990 +2792 117579 0.5560 +2792 126006 0.4280 +2792 129521 0.4990 +2792 131890 0.5580 +2792 146850 0.6500 +2792 196883 0.7160 +2792 220136 0.4720 +2792 221391 0.5910 +2792 338751 0.5130 +2792 346562 0.7630 +2792 387129 0.6070 +2792 388531 0.6600 +2792 390084 0.4920 +2792 431704 0.5440 +2792 594857 0.5330 +2792 642574 0.4100 +2792 101060233 0.4360 +2792 105372280 0.7630 +2793 2840 0.5260 +2793 2847 0.5510 +2793 2852 0.5090 +2793 2863 0.5410 +2793 2869 0.6200 +2793 2898 0.5200 +2793 2899 0.5100 +2793 2979 0.5990 +2793 3265 0.6500 +2793 3350 0.6870 +2793 3351 0.6870 +2793 3352 0.6870 +2793 3354 0.6850 +2793 3355 0.7050 +2793 3361 0.6820 +2793 3363 0.9140 +2793 3678 0.4990 +2793 3688 0.5110 +2793 3708 0.5310 +2793 3709 0.5160 +2793 3710 0.5160 +2793 3759 0.5360 +2793 3760 0.6910 +2793 3761 0.6500 +2793 3762 0.6730 +2793 3763 0.6920 +2793 3765 0.7420 +2793 3766 0.5330 +2793 3768 0.5410 +2793 3772 0.5320 +2793 3827 0.5170 +2793 3845 0.6560 +2793 4543 0.6850 +2793 4544 0.9100 +2793 4893 0.6500 +2793 4975 0.5060 +2793 4988 0.6980 +2793 5028 0.5250 +2793 5032 0.5050 +2793 5058 0.4990 +2793 5082 0.6110 +2793 5145 0.7970 +2793 5146 0.5830 +2793 5148 0.8280 +2793 5149 0.6540 +2793 5158 0.7600 +2793 5170 0.5010 +2793 5173 0.5000 +2793 5290 0.6560 +2793 5291 0.6680 +2793 5293 0.6760 +2793 5294 0.7170 +2793 5295 0.6500 +2793 5296 0.6500 +2793 5330 0.8970 +2793 5331 0.7130 +2793 5332 0.6790 +2793 5335 0.6500 +2793 5336 0.6580 +2793 5367 0.5700 +2793 5443 0.5160 +2793 5562 0.6500 +2793 5563 0.6500 +2793 5564 0.6500 +2793 5565 0.6500 +2793 5566 0.6500 +2793 5567 0.6500 +2793 5568 0.6500 +2793 5571 0.6500 +2793 5578 0.7010 +2793 5579 0.6840 +2793 5580 0.5260 +2793 5581 0.6500 +2793 5582 0.6800 +2793 5583 0.5240 +2793 5588 0.5270 +2793 5594 0.6520 +2793 5595 0.6630 +2793 5599 0.6540 +2793 5600 0.6550 +2793 5601 0.6540 +2793 5603 0.6540 +2793 5731 0.6780 +2793 5732 0.6890 +2793 5733 0.6780 +2793 5734 0.6920 +2793 5739 0.6100 +2793 5880 0.6870 +2793 5881 0.6500 +2793 5923 0.6760 +2793 5924 0.6670 +2793 5956 0.6990 +2793 5957 0.5780 +2793 5961 0.6100 +2793 5995 0.6370 +2793 5996 0.5950 +2793 5997 0.5360 +2793 5998 0.5600 +2793 5999 0.5570 +2793 6000 0.6050 +2793 6001 0.5620 +2793 6002 0.5590 +2793 6003 0.5910 +2793 6004 0.5380 +2793 6010 0.7920 +2793 6094 0.4380 +2793 6237 0.6740 +2793 6288 0.5430 +2793 6300 0.6520 +2793 6323 0.6610 +2793 6343 0.5010 +2793 6344 0.5690 +2793 6368 0.5300 +2793 6464 0.4990 +2793 6654 0.5400 +2793 6714 0.5180 +2793 6801 0.4990 +2793 6915 0.5550 +2793 6950 0.4990 +2793 7077 0.5430 +2793 7203 0.4990 +2793 7204 0.5050 +2793 7432 0.5070 +2793 7433 0.5690 +2793 7434 0.5580 +2793 7474 0.5080 +2793 7481 0.5080 +2793 7852 0.9250 +2793 7855 0.4990 +2793 7976 0.4990 +2793 8322 0.4990 +2793 8323 0.4990 +2793 8490 0.5430 +2793 8503 0.6520 +2793 8601 0.5450 +2793 8786 0.5940 +2793 8801 0.6680 +2793 8997 0.4990 +2793 9002 0.5030 +2793 9138 0.5090 +2793 9170 0.5670 +2793 9187 0.4750 +2793 9254 0.5610 +2793 9340 0.5580 +2793 9459 0.5230 +2793 9568 0.6730 +2793 9626 0.4910 +2793 9628 0.5880 +2793 9630 0.7550 +2793 10000 0.4990 +2793 10002 0.4480 +2793 10287 0.5610 +2793 10316 0.5560 +2793 10574 0.5070 +2793 10575 0.4990 +2793 10576 0.4990 +2793 10636 0.5380 +2793 10672 0.7250 +2793 10681 0.8720 +2793 10692 0.5710 +2793 10693 0.4990 +2793 10694 0.4990 +2793 10800 0.5480 +2793 10874 0.4990 +2793 22800 0.6570 +2793 22808 0.7070 +2793 22859 0.4690 +2793 22948 0.5010 +2793 23236 0.6790 +2793 23266 0.4690 +2793 23284 0.4830 +2793 23365 0.4990 +2793 23533 0.7370 +2793 23566 0.5410 +2793 23596 0.5410 +2793 26086 0.5880 +2793 26575 0.5450 +2793 29899 0.4730 +2793 51225 0.7790 +2793 51422 0.6500 +2793 51655 0.6500 +2793 51764 0.8940 +2793 53632 0.6500 +2793 54331 0.6220 +2793 54714 0.5420 +2793 55811 0.6500 +2793 55970 0.7260 +2793 56923 0.5410 +2793 57105 0.5440 +2793 57121 0.5360 +2793 57580 0.9090 +2793 59345 0.9990 +2793 63940 0.4930 +2793 64407 0.5960 +2793 64805 0.5190 +2793 84539 0.5730 +2793 85397 0.5540 +2793 94235 0.7640 +2793 115557 0.5220 +2793 117579 0.5020 +2793 126006 0.4080 +2793 129521 0.4990 +2793 131890 0.5810 +2793 146850 0.6810 +2793 162466 0.4270 +2793 196883 0.6820 +2793 221391 0.5710 +2793 346562 0.7100 +2793 387129 0.5410 +2793 388531 0.4210 +2793 390093 0.4010 +2793 431704 0.5730 +2793 552891 0.6110 +2793 594857 0.4990 +2793 105372280 0.5930 +2794 2968 0.4570 +2794 3107 0.4630 +2794 3133 0.6210 +2794 3297 0.8400 +2794 3320 0.4330 +2794 3326 0.4590 +2794 3692 0.8750 +2794 4706 0.4340 +2794 4839 0.5600 +2794 5032 0.4090 +2794 5036 0.8940 +2794 5071 0.4860 +2794 5394 0.5550 +2794 5431 0.4310 +2794 5469 0.4940 +2794 5822 0.5760 +2794 5859 0.4240 +2794 6122 0.6090 +2794 6123 0.6060 +2794 6124 0.5680 +2794 6125 0.8520 +2794 6129 0.6300 +2794 6132 0.5500 +2794 6133 0.4910 +2794 6135 0.5220 +2794 6137 0.4540 +2794 6138 0.4170 +2794 6139 0.4290 +2794 6141 0.4960 +2794 6142 0.4270 +2794 6143 0.5080 +2794 6144 0.4210 +2794 6147 0.5870 +2794 6152 0.5210 +2794 6154 0.4480 +2794 6156 0.4450 +2794 6160 0.4930 +2794 6164 0.4490 +2794 6165 0.4380 +2794 6169 0.4920 +2794 6175 0.7010 +2794 6210 0.4510 +2794 6217 0.4480 +2794 6838 0.6180 +2794 6894 0.5590 +2794 6941 0.5090 +2794 6992 0.5380 +2794 7514 0.4590 +2794 8449 0.5030 +2794 8568 0.5740 +2794 8602 0.4740 +2794 8886 0.5770 +2794 9045 0.4110 +2794 9061 0.7830 +2794 9277 0.6270 +2794 9349 0.5690 +2794 9724 0.6180 +2794 9790 0.6470 +2794 9801 0.4080 +2794 9933 0.6400 +2794 10153 0.6270 +2794 10412 0.7080 +2794 10528 0.4710 +2794 10607 0.6940 +2794 10621 0.4980 +2794 10813 0.6210 +2794 10885 0.6720 +2794 10969 0.7510 +2794 11056 0.5990 +2794 11103 0.6900 +2794 11137 0.5850 +2794 11222 0.4890 +2794 11224 0.5750 +2794 11270 0.4590 +2794 22984 0.4850 +2794 23076 0.6340 +2794 23160 0.5690 +2794 23212 0.5740 +2794 23223 0.6700 +2794 23246 0.8800 +2794 23347 0.4700 +2794 23378 0.4260 +2794 23481 0.8500 +2794 23517 0.6650 +2794 23521 0.4580 +2794 23560 0.8860 +2794 24140 0.4740 +2794 25873 0.4330 +2794 25879 0.4520 +2794 25885 0.4630 +2794 25983 0.5950 +2794 26155 0.8480 +2794 26156 0.6950 +2794 26354 0.7560 +2794 26995 0.4100 +2794 27340 0.4590 +2794 28987 0.7060 +2794 28998 0.4830 +2794 29083 0.5940 +2794 29093 0.4420 +2794 29113 0.4340 +2794 29889 0.7330 +2794 29960 0.4740 +2794 29997 0.6720 +2794 30000 0.4380 +2794 51018 0.4700 +2794 51042 0.6320 +2794 51068 0.9470 +2794 51073 0.4360 +2794 51082 0.4590 +2794 51118 0.4500 +2794 51119 0.4080 +2794 51121 0.4510 +2794 51154 0.6610 +2794 51187 0.8200 +2794 51272 0.4090 +2794 51388 0.6880 +2794 51575 0.7100 +2794 51602 0.5210 +2794 54463 0.5540 +2794 54475 0.5140 +2794 54517 0.5730 +2794 54535 0.4160 +2794 54552 0.7740 +2794 54555 0.4350 +2794 54606 0.5820 +2794 54663 0.6260 +2794 54881 0.4700 +2794 54888 0.4300 +2794 54920 0.4040 +2794 55003 0.4120 +2794 55127 0.4920 +2794 55131 0.7750 +2794 55140 0.4700 +2794 55153 0.8290 +2794 55178 0.4710 +2794 55226 0.6200 +2794 55272 0.4400 +2794 55299 0.8030 +2794 55651 0.4610 +2794 55695 0.4350 +2794 55703 0.4030 +2794 55720 0.5130 +2794 55737 0.4450 +2794 55759 0.7220 +2794 55760 0.4500 +2794 55781 0.4170 +2794 56342 0.4060 +2794 57050 0.7100 +2794 57062 0.5090 +2794 57129 0.5540 +2794 57418 0.4100 +2794 63875 0.5250 +2794 63899 0.4300 +2794 64318 0.7910 +2794 64794 0.5080 +2794 65083 0.4330 +2794 79039 0.4660 +2794 79050 0.4930 +2794 79137 0.5580 +2794 79159 0.5570 +2794 79590 0.4830 +2794 79728 0.4340 +2794 79730 0.4310 +2794 79922 0.4680 +2794 79954 0.5750 +2794 80135 0.6910 +2794 80304 0.4580 +2794 80742 0.4630 +2794 83448 0.5710 +2794 83743 0.4920 +2794 84128 0.6730 +2794 84154 0.8170 +2794 84365 0.7880 +2794 84545 0.4940 +2794 84549 0.7640 +2794 84705 0.5600 +2794 84916 0.6140 +2794 84946 0.4580 +2794 90121 0.5910 +2794 90441 0.5690 +2794 92170 0.4290 +2794 92856 0.7280 +2794 115416 0.6390 +2794 116966 0.5730 +2794 117246 0.5200 +2794 124454 0.4820 +2794 129531 0.5500 +2794 140801 0.6570 +2794 142940 0.4140 +2794 146212 0.5140 +2794 161424 0.6280 +2794 162427 0.5580 +2794 164592 0.7850 +2794 165545 0.4500 +2794 203068 0.4040 +2794 219927 0.5610 +2794 221078 0.5610 +2794 221545 0.5210 +2794 221830 0.4320 +2794 267002 0.4410 +2794 285855 0.5680 +2794 387129 0.5620 +2794 387338 0.4340 +2794 394263 0.4450 +2794 100505478 0.5600 +2794 100507679 0.4290 +2794 100526842 0.4240 +2794 114483834 0.6630 +2796 2797 0.9980 +2796 2798 0.9990 +2796 2852 0.4720 +2796 2869 0.5140 +2796 2922 0.6620 +2796 3060 0.4830 +2796 3164 0.4500 +2796 3283 0.5830 +2796 3284 0.4180 +2796 3292 0.4040 +2796 3293 0.4660 +2796 3479 0.6650 +2796 3485 0.4300 +2796 3486 0.5810 +2796 3549 0.6310 +2796 3630 0.6670 +2796 3640 0.4340 +2796 3730 0.8800 +2796 3814 0.9670 +2796 3952 0.7120 +2796 3953 0.4560 +2796 3972 0.6810 +2796 3973 0.7740 +2796 4318 0.5450 +2796 4692 0.5670 +2796 4852 0.8060 +2796 4922 0.4180 +2796 5015 0.5430 +2796 5020 0.8440 +2796 5173 0.7180 +2796 5241 0.6620 +2796 5330 0.5620 +2796 5331 0.5680 +2796 5367 0.4030 +2796 5443 0.8670 +2796 5550 0.4460 +2796 5551 0.4400 +2796 5566 0.4470 +2796 5567 0.4470 +2796 5568 0.4460 +2796 5594 0.9180 +2796 5595 0.9350 +2796 5617 0.8950 +2796 5626 0.4710 +2796 6387 0.4820 +2796 6462 0.7200 +2796 6578 0.4470 +2796 6750 0.7230 +2796 6770 0.5230 +2796 6863 0.4340 +2796 6870 0.9050 +2796 7054 0.4470 +2796 7200 0.8930 +2796 7204 0.4990 +2796 7225 0.5710 +2796 7252 0.5080 +2796 7432 0.5070 +2796 7681 0.7390 +2796 8202 0.4490 +2796 8620 0.5020 +2796 8648 0.4490 +2796 8820 0.4720 +2796 8997 0.5000 +2796 9191 0.4290 +2796 9210 0.4470 +2796 9290 0.4040 +2796 9370 0.4100 +2796 9394 0.5270 +2796 10000 0.9110 +2796 10468 0.4470 +2796 10800 0.4990 +2796 10886 0.4550 +2796 23001 0.4890 +2796 23236 0.6000 +2796 26012 0.7480 +2796 51083 0.7680 +2796 51234 0.4320 +2796 51458 0.6640 +2796 51738 0.6900 +2796 54328 0.4480 +2796 54551 0.5870 +2796 54858 0.6300 +2796 55636 0.7090 +2796 55831 0.4330 +2796 57105 0.5040 +2796 57113 0.6220 +2796 57822 0.4380 +2796 60675 0.8970 +2796 64106 0.6400 +2796 64111 0.8070 +2796 64207 0.8010 +2796 83550 0.5230 +2796 84432 0.5960 +2796 84634 0.9690 +2796 115557 0.5130 +2796 128674 0.8780 +2796 134637 0.4740 +2796 285313 0.4160 +2796 285601 0.4350 +2796 389203 0.4120 +2797 2798 0.9960 +2797 2869 0.5260 +2797 3549 0.5040 +2797 3814 0.8400 +2797 3921 0.7850 +2797 3972 0.5390 +2797 4852 0.5580 +2797 5015 0.4020 +2797 5330 0.4990 +2797 5331 0.4990 +2797 5443 0.4270 +2797 5454 0.4890 +2797 5594 0.9020 +2797 5595 0.9110 +2797 6207 0.4280 +2797 6387 0.5480 +2797 6870 0.6910 +2797 7084 0.4220 +2797 7204 0.4990 +2797 8997 0.4990 +2797 9762 0.4770 +2797 10000 0.9000 +2797 10573 0.4070 +2797 10800 0.4990 +2797 22888 0.4780 +2797 23236 0.4990 +2797 26012 0.4660 +2797 28957 0.5290 +2797 28973 0.4500 +2797 51021 0.4460 +2797 51052 0.4350 +2797 51149 0.4280 +2797 51373 0.4550 +2797 55636 0.5680 +2797 56945 0.5120 +2797 57105 0.4990 +2797 57113 0.7640 +2797 60675 0.6250 +2797 64106 0.5240 +2797 64432 0.4550 +2797 64960 0.4280 +2797 64965 0.4500 +2797 64968 0.4120 +2797 84634 0.8210 +2797 90480 0.4100 +2797 115557 0.4990 +2797 134637 0.7120 +2797 285601 0.5630 +2798 2869 0.5510 +2798 3283 0.4510 +2798 3480 0.5470 +2798 3549 0.4830 +2798 3630 0.5850 +2798 3730 0.8190 +2798 3814 0.9510 +2798 3843 0.4360 +2798 3952 0.4500 +2798 3972 0.6490 +2798 3973 0.7440 +2798 4116 0.4890 +2798 4159 0.4200 +2798 5330 0.5430 +2798 5331 0.5460 +2798 5443 0.5670 +2798 5447 0.4440 +2798 5449 0.5850 +2798 5566 0.4150 +2798 5567 0.4110 +2798 5568 0.4280 +2798 5617 0.5800 +2798 5626 0.5460 +2798 5737 0.4500 +2798 5894 0.5880 +2798 6010 0.5300 +2798 6662 0.5210 +2798 6770 0.4750 +2798 6870 0.4090 +2798 7201 0.6210 +2798 7204 0.4990 +2798 7225 0.5170 +2798 7252 0.6420 +2798 7253 0.4070 +2798 8022 0.5080 +2798 8820 0.5220 +2798 8997 0.5000 +2798 9095 0.4440 +2798 9210 0.4150 +2798 9394 0.6210 +2798 9939 0.5070 +2798 10371 0.4480 +2798 10468 0.4620 +2798 10800 0.4140 +2798 23236 0.6010 +2798 23767 0.4180 +2798 26012 0.8170 +2798 51806 0.4670 +2798 54328 0.5540 +2798 54756 0.5070 +2798 55110 0.4890 +2798 55236 0.5820 +2798 55636 0.7440 +2798 56159 0.4190 +2798 57105 0.4130 +2798 57107 0.4910 +2798 57118 0.5340 +2798 60675 0.7890 +2798 64111 0.5210 +2798 80712 0.4560 +2798 84634 0.9750 +2798 89884 0.4430 +2798 91860 0.4680 +2798 115557 0.4990 +2798 163688 0.4670 +2798 389203 0.4830 +2798 389549 0.4500 +2798 594857 0.4460 +2799 2896 0.4420 +2799 2990 0.9530 +2799 3073 0.9360 +2799 3074 0.9410 +2799 3312 0.5230 +2799 3423 0.5890 +2799 3425 0.5810 +2799 3916 0.4330 +2799 3920 0.4260 +2799 4074 0.5350 +2799 4125 0.4250 +2799 4669 0.9590 +2799 5009 0.4180 +2799 5476 0.5120 +2799 5660 0.6390 +2799 6448 0.6180 +2799 6456 0.4990 +2799 6469 0.4170 +2799 6844 0.5050 +2799 6845 0.5110 +2799 8673 0.5120 +2799 8905 0.5700 +2799 8907 0.5210 +2799 8942 0.4070 +2799 9282 0.4830 +2799 9412 0.4690 +2799 9443 0.4660 +2799 9829 0.5130 +2799 10001 0.4700 +2799 10053 0.4990 +2799 10577 0.4860 +2799 22901 0.4760 +2799 23324 0.4660 +2799 51003 0.4530 +2799 55526 0.4100 +2799 58511 0.4260 +2799 64772 0.4200 +2799 64902 0.4260 +2799 79642 0.4490 +2799 79814 0.4310 +2799 81567 0.5240 +2799 84246 0.4360 +2799 114799 0.4040 +2799 130340 0.5590 +2799 138050 0.7970 +2799 157570 0.4100 +2799 285362 0.8020 +2799 340075 0.4440 +2799 347527 0.6570 +2799 375484 0.4420 +2800 2801 0.7620 +2800 2802 0.7540 +2800 2803 0.9210 +2800 2804 0.8030 +2800 3482 0.4950 +2800 3916 0.5500 +2800 3920 0.4040 +2800 3998 0.5340 +2800 4905 0.5640 +2800 4952 0.4440 +2800 5116 0.4130 +2800 5868 0.4510 +2800 5870 0.8950 +2800 6293 0.7160 +2800 6642 0.4010 +2800 6811 0.5020 +2800 7110 0.7200 +2800 8411 0.6490 +2800 8548 0.5120 +2800 8674 0.7500 +2800 8675 0.7550 +2800 8766 0.5110 +2800 8774 0.5260 +2800 8775 0.5190 +2800 9321 0.6440 +2800 9382 0.7070 +2800 9527 0.4800 +2800 9559 0.4210 +2800 9648 0.8600 +2800 9827 0.5450 +2800 9950 0.7290 +2800 10139 0.7350 +2800 10228 0.7570 +2800 10466 0.5960 +2800 10618 0.8610 +2800 10717 0.4250 +2800 22796 0.6320 +2800 22872 0.4030 +2800 22897 0.4310 +2800 22937 0.4010 +2800 23015 0.5880 +2800 23163 0.4280 +2800 23426 0.6770 +2800 23431 0.5220 +2800 25839 0.6490 +2800 26003 0.5740 +2800 26225 0.4200 +2800 27333 0.5110 +2800 51542 0.7140 +2800 51560 0.5870 +2800 55275 0.6760 +2800 55737 0.4130 +2800 55773 0.7470 +2800 57120 0.4580 +2800 57511 0.6700 +2800 57589 0.6100 +2800 63894 0.4260 +2800 63908 0.5040 +2800 64083 0.5840 +2800 64689 0.6310 +2800 79571 0.8680 +2800 80223 0.4590 +2800 83548 0.7380 +2800 90196 0.6520 +2800 91949 0.6390 +2800 122553 0.5230 +2800 143187 0.7920 +2800 157769 0.4020 +2800 339122 0.5810 +2800 401409 0.5720 +2800 401647 0.5580 +2800 404734 0.5750 +2800 440270 0.5990 +2800 727851 0.6700 +2801 2802 0.9430 +2801 2803 0.7330 +2801 2804 0.9580 +2801 2890 0.5340 +2801 3059 0.4240 +2801 3309 0.4420 +2801 3482 0.4110 +2801 3725 0.4880 +2801 3728 0.4060 +2801 3838 0.7140 +2801 3916 0.6570 +2801 3920 0.5200 +2801 3998 0.9170 +2801 4122 0.4600 +2801 4124 0.5550 +2801 4137 0.4190 +2801 4218 0.4220 +2801 4609 0.4740 +2801 4646 0.4550 +2801 4905 0.6170 +2801 5116 0.6270 +2801 5265 0.5300 +2801 5298 0.4360 +2801 5311 0.4210 +2801 5347 0.8440 +2801 5587 0.5290 +2801 5649 0.6500 +2801 5781 0.5120 +2801 5861 0.9470 +2801 5862 0.9110 +2801 5868 0.6200 +2801 5870 0.7130 +2801 5877 0.5590 +2801 5878 0.4610 +2801 6396 0.4730 +2801 6605 0.5590 +2801 6794 0.6960 +2801 6811 0.9430 +2801 6993 0.4260 +2801 7037 0.4200 +2801 7039 0.5160 +2801 7187 0.4350 +2801 7251 0.6270 +2801 7257 0.4610 +2801 7275 0.5230 +2801 7415 0.5630 +2801 7436 0.5200 +2801 7490 0.4620 +2801 7542 0.6080 +2801 7804 0.5390 +2801 7837 0.4410 +2801 8218 0.4100 +2801 8411 0.7540 +2801 8548 0.7890 +2801 8615 0.9970 +2801 8655 0.5460 +2801 8675 0.4360 +2801 8729 0.4910 +2801 8766 0.6180 +2801 8774 0.5910 +2801 8775 0.6730 +2801 8851 0.7610 +2801 9117 0.5290 +2801 9133 0.4170 +2801 9232 0.4450 +2801 9321 0.7680 +2801 9322 0.4410 +2801 9382 0.7770 +2801 9524 0.5440 +2801 9527 0.8830 +2801 9554 0.6970 +2801 9559 0.4110 +2801 9570 0.7270 +2801 9632 0.7300 +2801 9648 0.7470 +2801 9659 0.5020 +2801 9804 0.4680 +2801 9853 0.8050 +2801 9871 0.6580 +2801 9919 0.6050 +2801 9950 0.7500 +2801 10121 0.5220 +2801 10124 0.5440 +2801 10142 0.9680 +2801 10175 0.5340 +2801 10211 0.4570 +2801 10228 0.5530 +2801 10282 0.7530 +2801 10426 0.4890 +2801 10427 0.7620 +2801 10484 0.6120 +2801 10494 0.9870 +2801 10540 0.6130 +2801 10618 0.8220 +2801 10652 0.6570 +2801 10671 0.5100 +2801 10802 0.6490 +2801 10844 0.4190 +2801 10897 0.4930 +2801 10956 0.4550 +2801 10959 0.8080 +2801 10960 0.5960 +2801 10971 0.4950 +2801 10972 0.5890 +2801 11129 0.6300 +2801 11130 0.4570 +2801 11235 0.4690 +2801 11258 0.5080 +2801 11316 0.4180 +2801 22872 0.5400 +2801 22878 0.4090 +2801 23062 0.4660 +2801 23256 0.7710 +2801 23683 0.4970 +2801 25839 0.4150 +2801 25865 0.4890 +2801 26003 0.9940 +2801 26984 0.7540 +2801 27185 0.4520 +2801 27229 0.5360 +2801 27333 0.5180 +2801 30849 0.5190 +2801 50618 0.5420 +2801 51014 0.5390 +2801 51125 0.4680 +2801 51143 0.5600 +2801 51164 0.6080 +2801 51272 0.8470 +2801 51719 0.4750 +2801 51765 0.8690 +2801 54732 0.4810 +2801 55014 0.6240 +2801 55633 0.4620 +2801 55666 0.4350 +2801 55737 0.4590 +2801 55860 0.5010 +2801 63908 0.5000 +2801 64083 0.9020 +2801 64689 0.9990 +2801 64746 0.4340 +2801 79071 0.4220 +2801 79571 0.6170 +2801 79748 0.5280 +2801 80124 0.7270 +2801 81562 0.5300 +2801 81876 0.9790 +2801 83452 0.7910 +2801 83548 0.6570 +2801 84516 0.5130 +2801 90411 0.5060 +2801 91949 0.4830 +2801 92335 0.8200 +2801 93661 0.5180 +2801 114790 0.4360 +2801 114791 0.4350 +2801 120892 0.5690 +2801 123720 0.7640 +2801 133482 0.6650 +2801 133746 0.6140 +2801 137902 0.4400 +2801 140735 0.5430 +2801 143187 0.4190 +2801 149111 0.4990 +2801 150274 0.5250 +2801 157680 0.5210 +2801 222068 0.4520 +2801 254263 0.5420 +2801 375056 0.6740 +2801 401647 0.4720 +2802 2803 0.6710 +2802 2804 0.7940 +2802 3758 0.5200 +2802 4201 0.8870 +2802 4893 0.4360 +2802 5870 0.6590 +2802 6311 0.4420 +2802 6780 0.5610 +2802 7110 0.4340 +2802 7186 0.4070 +2802 7257 0.8480 +2802 7337 0.4480 +2802 8153 0.6080 +2802 8361 0.4580 +2802 8369 0.4550 +2802 8548 0.5270 +2802 8615 0.7340 +2802 8729 0.4230 +2802 9321 0.7400 +2802 9391 0.5770 +2802 9463 0.5480 +2802 9648 0.5210 +2802 9950 0.6430 +2802 10142 0.6520 +2802 10618 0.4370 +2802 22878 0.4350 +2802 23015 0.6500 +2802 23215 0.4440 +2802 23426 0.6110 +2802 23433 0.4030 +2802 26003 0.6120 +2802 27185 0.4960 +2802 29952 0.5320 +2802 51114 0.8040 +2802 51125 0.9390 +2802 55095 0.4250 +2802 55599 0.4230 +2802 57120 0.8850 +2802 57156 0.4200 +2802 63826 0.5580 +2802 64083 0.5290 +2802 64689 0.8570 +2802 64746 0.8600 +2802 79571 0.5710 +2802 80173 0.4090 +2802 83548 0.5120 +2802 83893 0.8470 +2802 159989 0.4200 +2802 440270 0.6950 +2803 2804 0.9130 +2803 3482 0.4050 +2803 3791 0.5100 +2803 3798 0.5800 +2803 3895 0.4350 +2803 3998 0.4980 +2803 4074 0.6050 +2803 4905 0.5700 +2803 5311 0.4050 +2803 5868 0.4370 +2803 5870 0.7520 +2803 5877 0.4280 +2803 6293 0.6560 +2803 7110 0.7950 +2803 7542 0.4020 +2803 8411 0.5740 +2803 8615 0.4780 +2803 8661 0.4130 +2803 8674 0.6690 +2803 8675 0.6880 +2803 8766 0.4310 +2803 8774 0.5090 +2803 8775 0.5330 +2803 9321 0.6810 +2803 9341 0.5650 +2803 9382 0.6340 +2803 9527 0.5100 +2803 9648 0.9390 +2803 9827 0.5010 +2803 9950 0.6010 +2803 10133 0.4350 +2803 10139 0.7310 +2803 10142 0.4300 +2803 10228 0.7240 +2803 10466 0.6320 +2803 10618 0.8520 +2803 22796 0.6230 +2803 23011 0.5140 +2803 23015 0.5950 +2803 23189 0.5240 +2803 23426 0.8250 +2803 23499 0.9360 +2803 25839 0.6550 +2803 25926 0.6200 +2803 26003 0.4550 +2803 26225 0.4290 +2803 27314 0.4290 +2803 27333 0.4110 +2803 51542 0.6910 +2803 51560 0.5600 +2803 55275 0.6890 +2803 55763 0.5360 +2803 55773 0.7130 +2803 56950 0.4830 +2803 57511 0.6010 +2803 57589 0.6220 +2803 63908 0.5070 +2803 64083 0.6550 +2803 64149 0.4510 +2803 64689 0.5070 +2803 79571 0.9580 +2803 83548 0.7010 +2803 84079 0.8710 +2803 84916 0.5360 +2803 90196 0.6610 +2803 91949 0.6130 +2803 143187 0.8210 +2803 157769 0.5340 +2803 339122 0.5170 +2803 440270 0.5840 +2803 727851 0.6720 +2804 2885 0.5190 +2804 3059 0.6430 +2804 3265 0.5920 +2804 3845 0.5590 +2804 3916 0.6290 +2804 3920 0.5010 +2804 3998 0.7380 +2804 4069 0.4120 +2804 4124 0.4560 +2804 4478 0.4910 +2804 4893 0.5900 +2804 4905 0.6340 +2804 4926 0.4300 +2804 5007 0.4010 +2804 5116 0.4710 +2804 5290 0.5470 +2804 5295 0.5160 +2804 5298 0.4760 +2804 5310 0.4360 +2804 5347 0.4940 +2804 5861 0.8650 +2804 5862 0.4460 +2804 5868 0.6560 +2804 5870 0.6260 +2804 5962 0.5020 +2804 6396 0.5380 +2804 6654 0.5780 +2804 6711 0.5860 +2804 6776 0.5230 +2804 6777 0.5150 +2804 6811 0.9880 +2804 7037 0.4110 +2804 7110 0.5840 +2804 7248 0.4520 +2804 7430 0.5410 +2804 7542 0.4200 +2804 7750 0.5480 +2804 8411 0.7050 +2804 8548 0.5330 +2804 8615 0.9910 +2804 8655 0.6940 +2804 8766 0.6070 +2804 8774 0.6150 +2804 8775 0.6800 +2804 8900 0.4010 +2804 9024 0.4950 +2804 9276 0.4820 +2804 9321 0.8570 +2804 9382 0.4260 +2804 9527 0.9900 +2804 9570 0.7390 +2804 9632 0.4660 +2804 9648 0.7130 +2804 9793 0.4090 +2804 9846 0.5000 +2804 9871 0.4050 +2804 9919 0.4750 +2804 9950 0.9230 +2804 10121 0.5470 +2804 10142 0.5150 +2804 10228 0.4780 +2804 10282 0.6690 +2804 10426 0.4060 +2804 10427 0.4280 +2804 10466 0.4040 +2804 10540 0.6650 +2804 10590 0.4100 +2804 10618 0.7930 +2804 10652 0.6440 +2804 10671 0.5040 +2804 10721 0.7740 +2804 10844 0.4040 +2804 10959 0.6370 +2804 10972 0.6730 +2804 11258 0.5080 +2804 22796 0.4570 +2804 22872 0.5250 +2804 23015 0.7510 +2804 23085 0.4630 +2804 25839 0.5110 +2804 26003 0.6960 +2804 27333 0.6700 +2804 27443 0.4410 +2804 28964 0.4590 +2804 50618 0.4060 +2804 51143 0.5330 +2804 51164 0.5270 +2804 51272 0.5900 +2804 54732 0.5400 +2804 55614 0.4090 +2804 55860 0.5890 +2804 55889 0.4890 +2804 56913 0.6110 +2804 57151 0.4120 +2804 59353 0.4360 +2804 63908 0.5130 +2804 64083 0.7070 +2804 64419 0.6610 +2804 64689 0.9310 +2804 64746 0.9970 +2804 79571 0.5550 +2804 81876 0.4630 +2804 83452 0.4330 +2804 83548 0.7050 +2804 84320 0.4700 +2804 84516 0.5110 +2804 91949 0.4710 +2804 93661 0.5420 +2804 113146 0.4430 +2804 124912 0.4120 +2804 140735 0.6290 +2804 143187 0.4420 +2804 283768 0.4890 +2804 342096 0.4890 +2804 375056 0.4590 +2804 399687 0.6210 +2804 440270 0.7550 +2804 643699 0.4890 +2804 653061 0.4890 +2804 653073 0.4890 +2804 653075 0.4890 +2804 653125 0.4890 +2804 653641 0.4890 +2804 653643 0.4890 +2804 653720 0.4890 +2804 727909 0.4890 +2804 728047 0.4890 +2804 728498 0.4890 +2804 101059918 0.4890 +2805 2806 0.9820 +2805 2821 0.6090 +2805 2875 0.9810 +2805 2877 0.4200 +2805 2879 0.4500 +2805 2936 0.5950 +2805 3081 0.5010 +2805 3156 0.4190 +2805 3242 0.9630 +2805 3417 0.9290 +2805 3418 0.9160 +2805 3419 0.8740 +2805 3420 0.8510 +2805 3421 0.8420 +2805 3948 0.9770 +2805 4141 0.4660 +2805 4143 0.5870 +2805 4144 0.5330 +2805 4191 0.9900 +2805 4199 0.6560 +2805 4200 0.5330 +2805 4282 0.9150 +2805 4351 0.4310 +2805 4357 0.9650 +2805 4704 0.4570 +2805 4942 0.5810 +2805 4953 0.5780 +2805 4967 0.9000 +2805 5053 0.9390 +2805 5091 0.9430 +2805 5092 0.5380 +2805 5105 0.8390 +2805 5106 0.8590 +2805 5162 0.5040 +2805 5178 0.5630 +2805 5184 0.4340 +2805 5223 0.7930 +2805 5226 0.6020 +2805 5239 0.4110 +2805 5313 0.4370 +2805 5315 0.4900 +2805 5471 0.4470 +2805 5832 0.4070 +2805 6389 0.9610 +2805 6390 0.8890 +2805 6391 0.8590 +2805 6392 0.8270 +2805 6470 0.4590 +2805 6472 0.5570 +2805 6510 0.4500 +2805 6652 0.4180 +2805 6799 0.7840 +2805 6818 0.7690 +2805 6821 0.4350 +2805 6888 0.4880 +2805 6898 0.9640 +2805 7054 0.9390 +2805 7086 0.4270 +2805 7167 0.5760 +2805 7173 0.9110 +2805 7263 0.9650 +2805 7299 0.9040 +2805 7386 0.4610 +2805 8021 0.5900 +2805 8050 0.5030 +2805 8480 0.4810 +2805 8604 0.4320 +2805 8659 0.9580 +2805 8789 0.5030 +2805 9563 0.5480 +2805 9688 0.4280 +2805 9818 0.4100 +2805 9972 0.4400 +2805 10102 0.5210 +2805 10841 0.8020 +2805 10873 0.5160 +2805 22934 0.4590 +2805 23165 0.4490 +2805 23361 0.4180 +2805 23619 0.7950 +2805 23636 0.4100 +2805 26227 0.4440 +2805 26330 0.5510 +2805 27165 0.5610 +2805 29968 0.6090 +2805 51031 0.4170 +2805 51056 0.8880 +2805 51166 0.5130 +2805 51380 0.8400 +2805 51444 0.4220 +2805 51582 0.5030 +2805 51710 0.4170 +2805 53371 0.4390 +2805 54205 0.4260 +2805 54529 0.5110 +2805 54830 0.4020 +2805 54941 0.4220 +2805 55276 0.4350 +2805 55293 0.4760 +2805 55746 0.5070 +2805 55753 0.8870 +2805 56267 0.9400 +2805 56954 0.9070 +2805 57122 0.4980 +2805 57469 0.4410 +2805 79017 0.8290 +2805 79717 0.8020 +2805 79902 0.4860 +2805 80150 0.9270 +2805 80335 0.4740 +2805 80818 0.4180 +2805 81889 0.4140 +2805 81929 0.4520 +2805 84076 0.4010 +2805 84105 0.5230 +2805 84706 0.9840 +2805 84842 0.6520 +2805 92483 0.9780 +2805 112817 0.9110 +2805 113451 0.5030 +2805 115560 0.4180 +2805 122622 0.9230 +2805 124975 0.6340 +2805 130752 0.6100 +2805 137362 0.9380 +2805 148266 0.4180 +2805 160287 0.9780 +2805 162417 0.9240 +2805 259307 0.9080 +2805 284390 0.4180 +2805 339896 0.8320 +2805 339983 0.9180 +2805 445329 0.8300 +2805 493869 0.4380 +2805 548596 0.5720 +2805 554235 0.8260 +2806 2821 0.7640 +2806 2875 0.9780 +2806 2877 0.5530 +2806 2878 0.4850 +2806 2880 0.4850 +2806 2882 0.5010 +2806 2936 0.5360 +2806 3030 0.4770 +2806 3032 0.6210 +2806 3033 0.5610 +2806 3081 0.4290 +2806 3156 0.5670 +2806 3158 0.4230 +2806 3172 0.5120 +2806 3240 0.5840 +2806 3242 0.9670 +2806 3308 0.5720 +2806 3312 0.4480 +2806 3329 0.4240 +2806 3417 0.9520 +2806 3418 0.9600 +2806 3419 0.8890 +2806 3420 0.9080 +2806 3421 0.8860 +2806 3458 0.4370 +2806 3553 0.5140 +2806 3569 0.5970 +2806 3586 0.7040 +2806 3606 0.4450 +2806 3630 0.7430 +2806 3929 0.5550 +2806 3934 0.6090 +2806 3948 0.9700 +2806 3952 0.5360 +2806 3991 0.7780 +2806 4023 0.6620 +2806 4141 0.4230 +2806 4143 0.5590 +2806 4144 0.5670 +2806 4151 0.5630 +2806 4191 0.9990 +2806 4199 0.5750 +2806 4200 0.4520 +2806 4240 0.5070 +2806 4282 0.9290 +2806 4357 0.9570 +2806 4522 0.4270 +2806 4547 0.4910 +2806 4704 0.6650 +2806 4705 0.5240 +2806 4715 0.4350 +2806 4720 0.8020 +2806 4722 0.4280 +2806 4723 0.6360 +2806 4729 0.4560 +2806 4869 0.4500 +2806 4942 0.5290 +2806 4953 0.6010 +2806 4967 0.9370 +2806 5019 0.4390 +2806 5052 0.4010 +2806 5053 0.9430 +2806 5091 0.9330 +2806 5092 0.5670 +2806 5105 0.9020 +2806 5106 0.8980 +2806 5162 0.5760 +2806 5213 0.4540 +2806 5226 0.5740 +2806 5230 0.5490 +2806 5232 0.4970 +2806 5236 0.6180 +2806 5238 0.4950 +2806 5239 0.5650 +2806 5313 0.4560 +2806 5315 0.5530 +2806 5346 0.4870 +2806 5375 0.5750 +2806 5465 0.7780 +2806 5467 0.5090 +2806 5468 0.7930 +2806 5723 0.4130 +2806 5832 0.5020 +2806 5834 0.5490 +2806 5836 0.5120 +2806 5837 0.5260 +2806 5889 0.4390 +2806 5948 0.7410 +2806 6141 0.4050 +2806 6278 0.6830 +2806 6319 0.5070 +2806 6342 0.5730 +2806 6348 0.4510 +2806 6389 0.9810 +2806 6390 0.9120 +2806 6391 0.8910 +2806 6392 0.8680 +2806 6396 0.5760 +2806 6470 0.5610 +2806 6472 0.5410 +2806 6510 0.4180 +2806 6517 0.5460 +2806 6648 0.5300 +2806 6652 0.4640 +2806 6720 0.6050 +2806 6772 0.5040 +2806 6821 0.4270 +2806 6845 0.6570 +2806 6888 0.4970 +2806 6898 0.9840 +2806 7015 0.5100 +2806 7054 0.9420 +2806 7076 0.4630 +2806 7086 0.4520 +2806 7124 0.5100 +2806 7137 0.4350 +2806 7166 0.4340 +2806 7167 0.7700 +2806 7173 0.9090 +2806 7263 0.9590 +2806 7284 0.8490 +2806 7295 0.5410 +2806 7299 0.9120 +2806 7384 0.7180 +2806 7385 0.5900 +2806 7386 0.6050 +2806 7416 0.5750 +2806 7498 0.5070 +2806 7837 0.4510 +2806 7915 0.5640 +2806 8021 0.8920 +2806 8050 0.4240 +2806 8277 0.4230 +2806 8310 0.5790 +2806 8402 0.6620 +2806 8480 0.5600 +2806 8604 0.5070 +2806 8659 0.9550 +2806 8694 0.4810 +2806 8789 0.4450 +2806 8802 0.6010 +2806 8803 0.4360 +2806 8942 0.4200 +2806 9370 0.5570 +2806 9380 0.4720 +2806 9512 0.4320 +2806 9563 0.5610 +2806 9631 0.6020 +2806 9688 0.6930 +2806 9818 0.5870 +2806 9972 0.6220 +2806 10102 0.4780 +2806 10131 0.4010 +2806 10165 0.4140 +2806 10384 0.5480 +2806 10385 0.5560 +2806 10449 0.4950 +2806 10476 0.4030 +2806 10724 0.4510 +2806 10841 0.8320 +2806 10873 0.4690 +2806 10891 0.4860 +2806 10917 0.5500 +2806 10935 0.4390 +2806 10998 0.4570 +2806 10999 0.6320 +2806 11001 0.4860 +2806 11112 0.4600 +2806 11118 0.5460 +2806 11119 0.5300 +2806 11120 0.5480 +2806 11343 0.4070 +2806 22934 0.4070 +2806 23090 0.4590 +2806 23165 0.6620 +2806 23305 0.4260 +2806 23464 0.4080 +2806 23530 0.4170 +2806 23636 0.5870 +2806 26330 0.5530 +2806 27165 0.5190 +2806 28965 0.4350 +2806 29968 0.5920 +2806 51056 0.8880 +2806 51166 0.6780 +2806 51314 0.4010 +2806 51380 0.8650 +2806 51444 0.4630 +2806 51582 0.5130 +2806 51703 0.4890 +2806 53371 0.6800 +2806 54205 0.5640 +2806 54529 0.5080 +2806 54830 0.5840 +2806 54941 0.4620 +2806 55293 0.5330 +2806 55746 0.8190 +2806 55753 0.8840 +2806 56267 0.9860 +2806 56954 0.9190 +2806 57104 0.5110 +2806 57122 0.7610 +2806 57469 0.4410 +2806 79017 0.8110 +2806 79717 0.8010 +2806 79902 0.7950 +2806 79908 0.5460 +2806 80150 0.9240 +2806 80347 0.4090 +2806 81929 0.6490 +2806 84076 0.4200 +2806 84105 0.5600 +2806 84649 0.4400 +2806 84693 0.4050 +2806 84706 0.9760 +2806 84842 0.6790 +2806 85476 0.4290 +2806 92483 0.9720 +2806 112398 0.4050 +2806 112817 0.9190 +2806 113451 0.5390 +2806 114625 0.5570 +2806 122622 0.9270 +2806 123688 0.4490 +2806 124975 0.5090 +2806 129831 0.4090 +2806 130752 0.8440 +2806 132949 0.5450 +2806 137362 0.9640 +2806 137902 0.4390 +2806 143662 0.4460 +2806 153579 0.5480 +2806 160287 0.9720 +2806 162417 0.9250 +2806 257202 0.4860 +2806 259307 0.9340 +2806 339896 0.8580 +2806 339983 0.9190 +2806 376497 0.7560 +2806 387712 0.4460 +2806 493869 0.5580 +2806 548596 0.4530 +2806 554235 0.8340 +2806 646480 0.5450 +2806 646486 0.4650 +2806 729020 0.4040 +2806 730249 0.9300 +2806 100101267 0.4020 +2810 2950 0.4070 +2810 3184 0.5000 +2810 3192 0.4280 +2810 3309 0.4630 +2810 3313 0.5490 +2810 3315 0.4050 +2810 3320 0.4500 +2810 3326 0.4520 +2810 3480 0.5040 +2810 3664 0.6360 +2810 3675 0.4110 +2810 3676 0.4120 +2810 3680 0.4350 +2810 3713 0.5830 +2810 3725 0.9340 +2810 3727 0.9120 +2810 3728 0.4480 +2810 3845 0.4140 +2810 3852 0.5380 +2810 3853 0.4700 +2810 3854 0.4570 +2810 3856 0.4240 +2810 3861 0.5240 +2810 3866 0.4070 +2810 3868 0.4210 +2810 3872 0.9670 +2810 3880 0.4380 +2810 3927 0.4160 +2810 3963 0.4340 +2810 4012 0.5650 +2810 4137 0.6750 +2810 4193 0.9890 +2810 4194 0.9770 +2810 4218 0.5300 +2810 4233 0.5200 +2810 4303 0.6940 +2810 4486 0.6480 +2810 4609 0.4160 +2810 4792 0.9180 +2810 4830 0.4250 +2810 5037 0.5090 +2810 5052 0.4140 +2810 5127 0.4780 +2810 5218 0.4790 +2810 5230 0.4870 +2810 5268 0.8140 +2810 5300 0.9090 +2810 5339 0.5280 +2810 5350 0.9000 +2810 5366 0.5130 +2810 5533 0.5130 +2810 5534 0.4590 +2810 5585 0.5220 +2810 5604 0.4700 +2810 5716 0.4380 +2810 5872 0.5240 +2810 5884 0.4390 +2810 5894 0.9370 +2810 5970 0.9160 +2810 6093 0.5160 +2810 6317 0.4290 +2810 6500 0.4790 +2810 6654 0.9150 +2810 6794 0.5450 +2810 6839 0.5210 +2810 6876 0.4810 +2810 7046 0.4790 +2810 7157 0.9990 +2810 7167 0.4040 +2810 7187 0.4450 +2810 7189 0.4460 +2810 7248 0.4320 +2810 7249 0.8160 +2810 7374 0.4120 +2810 7415 0.4670 +2810 7529 0.6610 +2810 7531 0.7370 +2810 7532 0.8150 +2810 7533 0.6060 +2810 7534 0.8780 +2810 7706 0.8210 +2810 7942 0.4760 +2810 8407 0.5120 +2810 8626 0.7160 +2810 9101 0.6520 +2810 9133 0.9190 +2810 9156 0.6560 +2810 9448 0.4060 +2810 9636 0.4870 +2810 9679 0.6120 +2810 9748 0.4730 +2810 9759 0.6590 +2810 9846 0.9380 +2810 9882 0.5240 +2810 9982 0.5980 +2810 10190 0.8510 +2810 10197 0.5180 +2810 10413 0.8500 +2810 10890 0.5240 +2810 10971 0.8610 +2810 10980 0.5450 +2810 10987 0.4510 +2810 11181 0.4200 +2810 11186 0.5820 +2810 11187 0.7730 +2810 11200 0.4570 +2810 23216 0.5020 +2810 23279 0.4530 +2810 23313 0.8290 +2810 23327 0.9160 +2810 25937 0.9240 +2810 25946 0.7780 +2810 27246 0.4280 +2810 29114 0.4690 +2810 29760 0.9000 +2810 30850 0.4250 +2810 51552 0.5740 +2810 51564 0.4270 +2810 51741 0.4190 +2810 51806 0.5000 +2810 54101 0.5260 +2810 54541 0.6020 +2810 55223 0.4200 +2810 55615 0.5910 +2810 57506 0.4610 +2810 57619 0.9050 +2810 59269 0.5260 +2810 64065 0.4420 +2810 64326 0.5970 +2810 83879 0.6570 +2810 84260 0.5910 +2810 84517 0.4040 +2810 85417 0.9060 +2810 120892 0.9750 +2810 122786 0.4190 +2810 126393 0.9160 +2810 126695 0.5020 +2810 148753 0.4720 +2810 154796 0.9410 +2810 159090 0.4690 +2810 201164 0.4590 +2810 342527 0.7370 +2810 353238 0.9040 +2810 653499 0.5430 +2810 728642 0.5630 +2811 2812 0.9990 +2811 2814 0.9790 +2811 2815 0.9990 +2811 2993 0.5490 +2811 3012 0.4010 +2811 3015 0.4300 +2811 3017 0.4020 +2811 3018 0.4020 +2811 3021 0.5010 +2811 3053 0.5780 +2811 3065 0.4090 +2811 3383 0.6570 +2811 3384 0.4180 +2811 3673 0.6600 +2811 3674 0.9670 +2811 3683 0.5520 +2811 3684 0.9820 +2811 3685 0.4180 +2811 3689 0.9780 +2811 3690 0.8860 +2811 3818 0.5950 +2811 3827 0.7940 +2811 4067 0.9460 +2811 4297 0.4260 +2811 4323 0.4140 +2811 4352 0.6910 +2811 4778 0.4270 +2811 4948 0.4670 +2811 5028 0.5100 +2811 5104 0.4840 +2811 5175 0.6130 +2811 5196 0.7210 +2811 5197 0.6600 +2811 5239 0.5500 +2811 5270 0.4490 +2811 5290 0.6560 +2811 5291 0.6890 +2811 5293 0.6640 +2811 5295 0.8630 +2811 5296 0.6500 +2811 5336 0.4260 +2811 5413 0.6280 +2811 5473 0.5840 +2811 5624 0.5300 +2811 5742 0.4150 +2811 5788 0.5020 +2811 5894 0.5300 +2811 5929 0.4070 +2811 6401 0.5420 +2811 6402 0.5810 +2811 6403 0.9990 +2811 6404 0.9080 +2811 6442 0.5430 +2811 6443 0.5400 +2811 6444 0.5400 +2811 6445 0.5400 +2811 6482 0.4300 +2811 6640 0.5400 +2811 6641 0.5400 +2811 6645 0.5400 +2811 6693 0.5460 +2811 6714 0.7470 +2811 6850 0.4760 +2811 6868 0.4520 +2811 6915 0.4260 +2811 7056 0.6940 +2811 7057 0.4340 +2811 7066 0.6620 +2811 7412 0.4200 +2811 7448 0.6380 +2811 7450 0.9990 +2811 7534 0.9790 +2811 7804 0.5610 +2811 8082 0.5400 +2811 8085 0.4210 +2811 8328 0.4770 +2811 8334 0.4100 +2811 8337 0.4090 +2811 8338 0.4090 +2811 8340 0.4020 +2811 8341 0.4020 +2811 8342 0.4020 +2811 8345 0.4060 +2811 8347 0.4020 +2811 8348 0.4030 +2811 8349 0.4200 +2811 8356 0.5020 +2811 8361 0.4210 +2811 8503 0.6500 +2811 8842 0.4610 +2811 8850 0.4060 +2811 8910 0.5400 +2811 8970 0.4070 +2811 9739 0.4140 +2811 9757 0.4140 +2811 9939 0.4020 +2811 10190 0.5440 +2811 10559 0.5030 +2811 10801 0.4360 +2811 11091 0.4290 +2811 11093 0.9310 +2811 22852 0.4100 +2811 22859 0.5140 +2811 23067 0.4140 +2811 23218 0.6260 +2811 23266 0.5140 +2811 23284 0.5140 +2811 30816 0.4260 +2811 51206 0.9460 +2811 51266 0.7790 +2811 51696 0.4340 +2811 54145 0.4020 +2811 54212 0.5400 +2811 54221 0.5460 +2811 54751 0.5370 +2811 58508 0.4080 +2811 60495 0.5830 +2811 64240 0.4750 +2811 64241 0.4700 +2811 64805 0.6410 +2811 81027 0.5580 +2811 83700 0.4280 +2811 84661 0.4610 +2811 85236 0.4030 +2811 94239 0.4300 +2811 122769 0.4480 +2811 124460 0.4120 +2811 128312 0.4020 +2811 137868 0.5400 +2811 161882 0.6590 +2811 203068 0.4610 +2811 220416 0.4140 +2811 255626 0.4020 +2811 340205 0.5220 +2811 374569 0.5200 +2811 375033 0.4570 +2811 377841 0.5460 +2811 405754 0.4450 +2811 653604 0.5020 +2812 2814 0.9960 +2812 2815 0.9990 +2812 2928 0.6720 +2812 3053 0.5550 +2812 3308 0.4320 +2812 3673 0.4020 +2812 3674 0.8300 +2812 3690 0.7140 +2812 3818 0.5340 +2812 3827 0.7200 +2812 4067 0.9420 +2812 4352 0.6240 +2812 4735 0.6340 +2812 4790 0.4370 +2812 5196 0.5150 +2812 5239 0.5460 +2812 5290 0.6670 +2812 5291 0.6770 +2812 5293 0.6670 +2812 5295 0.6500 +2812 5296 0.6510 +2812 5413 0.9020 +2812 5625 0.6190 +2812 5894 0.5510 +2812 5902 0.5410 +2812 6403 0.6560 +2812 6442 0.5410 +2812 6443 0.5400 +2812 6444 0.5400 +2812 6445 0.5400 +2812 6576 0.4530 +2812 6640 0.5400 +2812 6641 0.5400 +2812 6645 0.5400 +2812 6714 0.6100 +2812 6774 0.4400 +2812 6899 0.7040 +2812 6943 0.5030 +2812 7122 0.5320 +2812 7450 0.9980 +2812 7534 0.9700 +2812 8082 0.5400 +2812 8318 0.4600 +2812 8328 0.4140 +2812 8503 0.6500 +2812 8646 0.5180 +2812 8829 0.4990 +2812 8910 0.5400 +2812 9242 0.4680 +2812 9342 0.4310 +2812 9618 0.8300 +2812 9993 0.5020 +2812 10190 0.5120 +2812 10801 0.4530 +2812 22852 0.4060 +2812 22859 0.5140 +2812 23218 0.4790 +2812 23266 0.5140 +2812 23284 0.5140 +2812 29801 0.5410 +2812 51206 0.6740 +2812 51266 0.4070 +2812 51806 0.7270 +2812 54212 0.5400 +2812 54221 0.5400 +2812 54487 0.4430 +2812 54584 0.8720 +2812 55287 0.4420 +2812 81027 0.4840 +2812 83667 0.4280 +2812 91179 0.4050 +2812 91860 0.7270 +2812 137868 0.5400 +2812 163688 0.7270 +2812 653361 0.4700 +2813 2814 0.9440 +2813 2815 0.6720 +2813 2822 0.4050 +2813 2993 0.4630 +2813 2995 0.4760 +2813 3385 0.5260 +2813 3674 0.4590 +2813 3688 0.4540 +2813 3700 0.7180 +2813 4057 0.5110 +2813 4864 0.9480 +2813 5045 0.6800 +2813 5068 0.4220 +2813 5304 0.5190 +2813 5407 0.5290 +2813 5499 0.4610 +2813 5539 0.7340 +2813 5967 0.4270 +2813 6281 0.5110 +2813 6614 0.4350 +2813 6689 0.5360 +2813 7032 0.4400 +2813 7124 0.4580 +2813 7127 0.4540 +2813 7295 0.4680 +2813 7512 0.4160 +2813 8720 0.6780 +2813 9172 0.4100 +2813 9332 0.9760 +2813 9567 0.9990 +2813 9899 0.9050 +2813 9900 0.9050 +2813 10045 0.4350 +2813 10136 0.7110 +2813 10332 0.4680 +2813 10563 0.4810 +2813 11317 0.4020 +2813 11330 0.6970 +2813 22987 0.9230 +2813 23436 0.6890 +2813 29915 0.4250 +2813 30816 0.6350 +2813 30835 0.5680 +2813 50624 0.4110 +2813 51032 0.4710 +2813 51206 0.8350 +2813 51503 0.6100 +2813 51643 0.6790 +2813 63036 0.5930 +2813 65108 0.4890 +2813 83992 0.4790 +2813 127833 0.4270 +2813 136991 0.5460 +2813 147719 0.4570 +2813 339390 0.5650 +2813 342898 0.5580 +2813 400668 0.4110 +2813 405754 0.4060 +2813 653808 0.4740 +2814 2815 0.9990 +2814 3053 0.6610 +2814 3674 0.6100 +2814 3690 0.4030 +2814 3818 0.5320 +2814 3827 0.5560 +2814 4067 0.9070 +2814 4140 0.4060 +2814 4352 0.4750 +2814 4627 0.6340 +2814 5104 0.4940 +2814 5239 0.5460 +2814 5290 0.6790 +2814 5291 0.6510 +2814 5293 0.6510 +2814 5295 0.6500 +2814 5296 0.6500 +2814 5304 0.5720 +2814 5499 0.4550 +2814 5624 0.4190 +2814 5894 0.5300 +2814 6281 0.7250 +2814 6442 0.5400 +2814 6443 0.5400 +2814 6444 0.5400 +2814 6445 0.5400 +2814 6614 0.9490 +2814 6640 0.5400 +2814 6641 0.5400 +2814 6645 0.5400 +2814 6714 0.5490 +2814 7056 0.4250 +2814 7070 0.4510 +2814 7295 0.9580 +2814 7450 0.9960 +2814 7534 0.5600 +2814 8082 0.5400 +2814 8503 0.6500 +2814 8910 0.5400 +2814 9172 0.8570 +2814 9332 0.7170 +2814 9567 0.9500 +2814 10045 0.4330 +2814 22859 0.5140 +2814 23266 0.5140 +2814 23284 0.5750 +2814 27020 0.4390 +2814 30816 0.5130 +2814 51206 0.9610 +2814 51503 0.8350 +2814 54212 0.5400 +2814 54221 0.6310 +2814 55379 0.4320 +2814 83992 0.5100 +2814 84220 0.4080 +2814 122769 0.4090 +2814 136991 0.5330 +2814 137868 0.5400 +2814 220416 0.4220 +2814 339291 0.4880 +2814 339829 0.4620 +2814 376132 0.5130 +2814 390205 0.4930 +2814 400668 0.4050 +2814 474354 0.4910 +2815 2993 0.4670 +2815 3053 0.4160 +2815 3198 0.6100 +2815 3673 0.4210 +2815 3674 0.9800 +2815 3690 0.8880 +2815 3818 0.5110 +2815 3827 0.5910 +2815 4067 0.9190 +2815 4352 0.8220 +2815 4627 0.4010 +2815 5023 0.5180 +2815 5175 0.6110 +2815 5196 0.7150 +2815 5197 0.5780 +2815 5239 0.5520 +2815 5270 0.4030 +2815 5290 0.6680 +2815 5291 0.6680 +2815 5293 0.6770 +2815 5295 0.6500 +2815 5296 0.6560 +2815 5304 0.4790 +2815 5413 0.5440 +2815 5473 0.6200 +2815 5624 0.4740 +2815 5788 0.4660 +2815 5894 0.5300 +2815 6281 0.6740 +2815 6403 0.7700 +2815 6442 0.5420 +2815 6443 0.5400 +2815 6444 0.5400 +2815 6445 0.5400 +2815 6640 0.5400 +2815 6641 0.5400 +2815 6645 0.5400 +2815 6714 0.5900 +2815 7066 0.5070 +2815 7184 0.4630 +2815 7450 0.9980 +2815 7534 0.6100 +2815 8082 0.5400 +2815 8328 0.5160 +2815 8503 0.6500 +2815 8910 0.5400 +2815 9567 0.9180 +2815 9939 0.4100 +2815 10801 0.4970 +2815 10867 0.4330 +2815 11093 0.4850 +2815 22859 0.5420 +2815 23218 0.5740 +2815 23266 0.5140 +2815 23284 0.5140 +2815 51206 0.8600 +2815 51266 0.6990 +2815 54212 0.5400 +2815 54221 0.5770 +2815 56344 0.4340 +2815 64805 0.4370 +2815 80739 0.4560 +2815 81027 0.8200 +2815 84519 0.7720 +2815 89872 0.4350 +2815 116173 0.4370 +2815 137868 0.5400 +2815 147199 0.4260 +2815 161882 0.4310 +2815 171558 0.6470 +2815 201191 0.4400 +2815 203068 0.4280 +2815 340205 0.8220 +2817 3037 0.5230 +2817 3068 0.5230 +2817 3082 0.4700 +2817 3308 0.4790 +2817 3339 0.8940 +2817 3340 0.7140 +2817 3458 0.4750 +2817 3643 0.4130 +2817 3675 0.4700 +2817 3688 0.4250 +2817 3691 0.5180 +2817 4000 0.4150 +2817 4035 0.7220 +2817 4036 0.4520 +2817 4060 0.4470 +2817 4072 0.8220 +2817 4691 0.5930 +2817 5320 0.4610 +2817 5328 0.4140 +2817 5339 0.4940 +2817 5552 0.5030 +2817 5621 0.5440 +2817 5669 0.5610 +2817 5670 0.6230 +2817 5671 0.5050 +2817 5672 0.5170 +2817 5673 0.5070 +2817 5675 0.5050 +2817 5676 0.5450 +2817 5678 0.5050 +2817 5680 0.5670 +2817 5792 0.6930 +2817 5802 0.8210 +2817 6279 0.4070 +2817 6382 0.9960 +2817 6383 0.9890 +2817 6385 0.9770 +2817 6469 0.6630 +2817 6520 0.4520 +2817 6585 0.5460 +2817 6586 0.8940 +2817 6997 0.8060 +2817 7040 0.7580 +2817 7049 0.4470 +2817 7057 0.4750 +2817 7124 0.4930 +2817 7448 0.5490 +2817 7472 0.6430 +2817 7474 0.4150 +2817 7511 0.4620 +2817 7804 0.4570 +2817 8509 0.6500 +2817 8614 0.4290 +2817 8741 0.4560 +2817 8817 0.7600 +2817 8822 0.8340 +2817 8823 0.7720 +2817 9308 0.4890 +2817 9348 0.6590 +2817 9353 0.9360 +2817 9394 0.6870 +2817 9653 0.7280 +2817 9672 0.7990 +2817 9917 0.4490 +2817 9951 0.5450 +2817 9953 0.5700 +2817 9955 0.5390 +2817 9956 0.5620 +2817 9957 0.6540 +2817 9982 0.4560 +2817 10082 0.4620 +2817 10675 0.6190 +2817 10855 0.6350 +2817 11196 0.4350 +2817 11285 0.5810 +2817 23213 0.5590 +2817 23495 0.4220 +2817 26020 0.4080 +2817 26035 0.6710 +2817 26085 0.4160 +2817 26229 0.5720 +2817 26279 0.4440 +2817 26281 0.7720 +2817 27006 0.7670 +2817 27087 0.4400 +2817 29126 0.5110 +2817 29967 0.4130 +2817 55959 0.5240 +2817 60495 0.5970 +2817 63827 0.7280 +2817 64131 0.5780 +2817 64132 0.6310 +2817 64579 0.5990 +2817 64711 0.5540 +2817 65078 0.4510 +2817 80059 0.7630 +2817 80781 0.9680 +2817 90161 0.6020 +2817 126792 0.5690 +2817 135152 0.4440 +2817 147111 0.7930 +2817 221914 0.4780 +2817 222537 0.5760 +2817 266722 0.5500 +2817 347731 0.7720 +2817 375790 0.8020 +2817 440533 0.5480 +2819 2820 0.9970 +2819 2821 0.5300 +2819 3420 0.4620 +2819 3991 0.4130 +2819 4023 0.4160 +2819 4191 0.4470 +2819 4706 0.4130 +2819 5091 0.6940 +2819 5105 0.5010 +2819 5213 0.4480 +2819 5230 0.4420 +2819 5236 0.5000 +2819 5239 0.4340 +2819 5313 0.4630 +2819 5346 0.5840 +2819 5431 0.5000 +2819 5723 0.6280 +2819 5832 0.6510 +2819 5836 0.4030 +2819 5837 0.4370 +2819 6331 0.5990 +2819 6647 0.5320 +2819 6888 0.4100 +2819 7069 0.5700 +2819 7167 0.5740 +2819 8029 0.6120 +2819 8226 0.4100 +2819 8443 0.9670 +2819 8525 0.6000 +2819 8526 0.6060 +2819 8527 0.6430 +2819 8612 0.8500 +2819 8613 0.8360 +2819 8802 0.4070 +2819 9162 0.6000 +2819 9563 0.5070 +2819 9663 0.8270 +2819 9942 0.4010 +2819 10554 0.8830 +2819 10555 0.9040 +2819 11343 0.4710 +2819 22845 0.4100 +2819 23171 0.9420 +2819 23175 0.8500 +2819 26007 0.8650 +2819 26330 0.4110 +2819 27235 0.4050 +2819 51015 0.4150 +2819 54675 0.4120 +2819 54857 0.4090 +2819 54995 0.4560 +2819 55326 0.8640 +2819 56894 0.8920 +2819 56895 0.8640 +2819 56985 0.9020 +2819 57678 0.9720 +2819 63924 0.5210 +2819 64714 0.4660 +2819 64788 0.6240 +2819 64841 0.7320 +2819 64900 0.8180 +2819 65220 0.8050 +2819 79763 0.4240 +2819 79888 0.4310 +2819 79944 0.4020 +2819 83473 0.4180 +2819 84513 0.8210 +2819 84649 0.5690 +2819 84803 0.9420 +2819 92399 0.4090 +2819 114882 0.4060 +2819 116519 0.4310 +2819 129642 0.8430 +2819 132949 0.4520 +2819 137964 0.9320 +2819 139189 0.6100 +2819 140462 0.4230 +2819 150763 0.9590 +2819 151056 0.7490 +2819 154141 0.8200 +2819 160851 0.6050 +2819 196051 0.8210 +2819 253558 0.8680 +2819 338328 0.5560 +2819 729359 0.4280 +2820 2821 0.4270 +2820 2936 0.4960 +2820 3033 0.4230 +2820 3419 0.4450 +2820 3612 0.8040 +2820 3613 0.8030 +2820 3772 0.4700 +2820 3990 0.4760 +2820 4191 0.5770 +2820 4199 0.4500 +2820 4284 0.5090 +2820 4512 0.8400 +2820 4513 0.8780 +2820 4514 0.8160 +2820 4519 0.6130 +2820 4728 0.8600 +2820 4760 0.4340 +2820 4967 0.5940 +2820 5091 0.7870 +2820 5167 0.4420 +2820 5211 0.4280 +2820 5213 0.5160 +2820 5214 0.4190 +2820 5226 0.4880 +2820 5230 0.4190 +2820 5315 0.4500 +2820 5431 0.4530 +2820 5506 0.4540 +2820 5664 0.5430 +2820 5700 0.7390 +2820 5701 0.7390 +2820 5705 0.7390 +2820 5770 0.4060 +2820 6120 0.4400 +2820 6389 0.9120 +2820 6390 0.9300 +2820 6391 0.8590 +2820 6514 0.5210 +2820 6517 0.4030 +2820 6547 0.4260 +2820 6648 0.4360 +2820 6652 0.5080 +2820 6888 0.5090 +2820 7086 0.4170 +2820 7109 0.4190 +2820 7167 0.6120 +2820 7296 0.5030 +2820 7386 0.8660 +2820 8277 0.4020 +2820 8443 0.9320 +2820 8525 0.8090 +2820 8526 0.8160 +2820 8527 0.8170 +2820 8565 0.5230 +2820 8612 0.8900 +2820 8613 0.8720 +2820 8789 0.4130 +2820 9162 0.8020 +2820 9563 0.4760 +2820 9663 0.8250 +2820 9942 0.9110 +2820 10061 0.5890 +2820 10554 0.8380 +2820 10555 0.8330 +2820 10587 0.4690 +2820 11104 0.7390 +2820 11132 0.4600 +2820 23171 0.9120 +2820 23175 0.8250 +2820 23645 0.5890 +2820 23729 0.7960 +2820 26007 0.9790 +2820 28991 0.4310 +2820 29028 0.7470 +2820 51022 0.4440 +2820 51167 0.4760 +2820 51573 0.6280 +2820 54363 0.4290 +2820 54454 0.7430 +2820 54857 0.6270 +2820 54884 0.8020 +2820 55277 0.7860 +2820 55324 0.5900 +2820 55326 0.8780 +2820 55526 0.4020 +2820 55753 0.4840 +2820 56261 0.6270 +2820 56729 0.4260 +2820 56894 0.8730 +2820 56895 0.8330 +2820 56985 0.9110 +2820 57143 0.4490 +2820 57678 0.9550 +2820 64900 0.8180 +2820 79153 0.6270 +2820 79934 0.5120 +2820 80034 0.4600 +2820 81544 0.7010 +2820 83473 0.7850 +2820 83475 0.8230 +2820 84056 0.7390 +2820 84513 0.8690 +2820 84666 0.4340 +2820 84795 0.8080 +2820 84803 0.9280 +2820 89872 0.5090 +2820 90956 0.4720 +2820 114112 0.4520 +2820 115825 0.4200 +2820 129642 0.8300 +2820 137964 0.9150 +2820 139189 0.8090 +2820 150763 0.9320 +2820 154141 0.8250 +2820 160851 0.8090 +2820 196051 0.8690 +2820 203054 0.4490 +2820 220032 0.6270 +2820 253558 0.8410 +2820 256356 0.8070 +2820 284161 0.6280 +2820 440574 0.4800 +2820 100509620 0.5090 +2820 114483834 0.5900 +2821 2875 0.4680 +2821 2936 0.5790 +2821 2997 0.7180 +2821 2998 0.6560 +2821 3032 0.4620 +2821 3033 0.4200 +2821 3043 0.5800 +2821 3091 0.4270 +2821 3098 0.9850 +2821 3099 0.9860 +2821 3101 0.9780 +2821 3155 0.4800 +2821 3251 0.6180 +2821 3308 0.4620 +2821 3320 0.4140 +2821 3326 0.4100 +2821 3329 0.6020 +2821 3336 0.4980 +2821 3376 0.4300 +2821 3417 0.7400 +2821 3418 0.8060 +2821 3419 0.4840 +2821 3420 0.4680 +2821 3421 0.5200 +2821 3558 0.7690 +2821 3612 0.8600 +2821 3613 0.8640 +2821 3614 0.4050 +2821 3615 0.4540 +2821 3710 0.4730 +2821 3735 0.6640 +2821 3948 0.9270 +2821 4141 0.5600 +2821 4191 0.8470 +2821 4199 0.6250 +2821 4200 0.4650 +2821 4351 0.9980 +2821 4482 0.4410 +2821 4512 0.4430 +2821 4522 0.4420 +2821 4706 0.5260 +2821 4720 0.4010 +2821 4860 0.5310 +2821 4967 0.6060 +2821 5009 0.4890 +2821 5018 0.4010 +2821 5036 0.4810 +2821 5091 0.6440 +2821 5105 0.4900 +2821 5106 0.5380 +2821 5111 0.4370 +2821 5161 0.9180 +2821 5162 0.9810 +2821 5163 0.6160 +2821 5164 0.4310 +2821 5165 0.5050 +2821 5166 0.4690 +2821 5168 0.5310 +2821 5184 0.6340 +2821 5207 0.7200 +2821 5208 0.7320 +2821 5209 0.7650 +2821 5210 0.7450 +2821 5211 0.9960 +2821 5213 0.9970 +2821 5214 0.9960 +2821 5223 0.9690 +2821 5224 0.9620 +2821 5226 0.8870 +2821 5230 0.9710 +2821 5232 0.9640 +2821 5236 0.9830 +2821 5238 0.8790 +2821 5239 0.9680 +2821 5256 0.6240 +2821 5277 0.6130 +2821 5313 0.9790 +2821 5315 0.9860 +2821 5372 0.9140 +2821 5373 0.9200 +2821 5432 0.4110 +2821 5464 0.7910 +2821 5471 0.4140 +2821 5631 0.5510 +2821 5634 0.5610 +2821 5635 0.4190 +2821 5636 0.4300 +2821 5832 0.4620 +2821 5834 0.8160 +2821 5836 0.8140 +2821 5837 0.8120 +2821 6120 0.7830 +2821 6175 0.5380 +2821 6203 0.4830 +2821 6261 0.4260 +2821 6301 0.4310 +2821 6389 0.6360 +2821 6390 0.5820 +2821 6391 0.4880 +2821 6470 0.5370 +2821 6472 0.5940 +2821 6513 0.5540 +2821 6515 0.4620 +2821 6648 0.4890 +2821 6652 0.6640 +2821 6888 0.9950 +2821 6950 0.4540 +2821 7001 0.5700 +2821 7086 0.9970 +2821 7167 0.9990 +2821 7284 0.4750 +2821 7296 0.4490 +2821 7298 0.4990 +2821 7358 0.7300 +2821 7360 0.7810 +2821 7384 0.5200 +2821 7407 0.5990 +2821 7448 0.4120 +2821 7923 0.4120 +2821 8050 0.5170 +2821 8226 0.8970 +2821 8266 0.6360 +2821 8277 0.9950 +2821 8458 0.4690 +2821 8565 0.5830 +2821 8659 0.4520 +2821 8789 0.9920 +2821 8802 0.5160 +2821 8803 0.5070 +2821 8833 0.4900 +2821 8891 0.5070 +2821 8893 0.5020 +2821 9091 0.7700 +2821 9104 0.5390 +2821 9343 0.5490 +2821 9380 0.4790 +2821 9512 0.4120 +2821 9531 0.4170 +2821 9533 0.4040 +2821 9562 0.8200 +2821 9563 0.9990 +2821 9588 0.7070 +2821 9669 0.4530 +2821 9801 0.5210 +2821 9942 0.6690 +2821 9945 0.9910 +2821 9948 0.4180 +2821 10007 0.9620 +2821 10020 0.9040 +2821 10102 0.4600 +2821 10243 0.4020 +2821 10295 0.4110 +2821 10327 0.5060 +2821 10423 0.4340 +2821 10449 0.4460 +2821 10535 0.4580 +2821 10551 0.5100 +2821 10587 0.4380 +2821 10797 0.4290 +2821 10873 0.6000 +2821 11128 0.4190 +2821 11181 0.6180 +2821 22934 0.8040 +2821 22984 0.4360 +2821 23171 0.4660 +2821 23483 0.5600 +2821 23521 0.4380 +2821 23761 0.4630 +2821 25796 0.7920 +2821 25885 0.4430 +2821 26227 0.4680 +2821 26330 0.9620 +2821 27068 0.7220 +2821 29925 0.7070 +2821 29926 0.6000 +2821 29968 0.4800 +2821 51005 0.4100 +2821 51067 0.4440 +2821 51071 0.9050 +2821 51154 0.4310 +2821 51167 0.4270 +2821 51477 0.4520 +2821 51557 0.4060 +2821 53347 0.5890 +2821 54511 0.4690 +2821 54625 0.6590 +2821 54995 0.5020 +2821 55143 0.4430 +2821 55272 0.4540 +2821 55276 0.9880 +2821 55293 0.4530 +2821 55312 0.4330 +2821 55699 0.4370 +2821 55753 0.4840 +2821 55902 0.5730 +2821 56052 0.5510 +2821 56474 0.4330 +2821 56965 0.8080 +2821 57103 0.7050 +2821 57176 0.4300 +2821 57469 0.7330 +2821 57591 0.4170 +2821 57664 0.4100 +2821 57818 0.9340 +2821 64080 0.8170 +2821 64841 0.6360 +2821 65220 0.6160 +2821 79153 0.4610 +2821 79631 0.4850 +2821 79668 0.8080 +2821 79944 0.4380 +2821 80201 0.9750 +2821 80273 0.4150 +2821 81570 0.4280 +2821 83440 0.9910 +2821 83473 0.4170 +2821 84076 0.9950 +2821 84263 0.5380 +2821 84532 0.5180 +2821 84706 0.4190 +2821 84896 0.4040 +2821 84959 0.5890 +2821 85365 0.5530 +2821 85476 0.4920 +2821 90353 0.8510 +2821 91373 0.4040 +2821 92483 0.9300 +2821 92579 0.9370 +2821 114112 0.4600 +2821 122622 0.6080 +2821 129831 0.4940 +2821 130589 0.6170 +2821 130752 0.5360 +2821 132158 0.8750 +2821 132789 0.9580 +2821 137362 0.5680 +2821 137872 0.4040 +2821 139596 0.4290 +2821 154141 0.7290 +2821 160287 0.9300 +2821 162417 0.4390 +2821 200895 0.4520 +2821 221823 0.5310 +2821 283209 0.7970 +2821 284098 0.5510 +2821 284161 0.4730 +2821 286451 0.5080 +2821 387712 0.9730 +2821 414328 0.5930 +2821 440138 0.5580 +2821 441531 0.9550 +2821 644974 0.5510 +2821 729020 0.6930 +2821 100423062 0.6110 +2822 3053 0.4530 +2822 3483 0.4050 +2822 3697 0.4760 +2822 3699 0.5170 +2822 4045 0.4160 +2822 4067 0.4440 +2822 4241 0.4210 +2822 4978 0.4160 +2822 5067 0.4050 +2822 5337 0.8410 +2822 5338 0.8420 +2822 5578 0.4590 +2822 6975 0.4010 +2822 7007 0.4270 +2822 7070 0.4310 +2822 7512 0.4140 +2822 7915 0.5490 +2822 8434 0.4380 +2822 8542 0.5240 +2822 8611 0.7450 +2822 8612 0.7610 +2822 8613 0.7610 +2822 8875 0.4270 +2822 8876 0.4830 +2822 8877 0.5050 +2822 9487 0.9150 +2822 10232 0.4150 +2822 22854 0.4550 +2822 27076 0.4620 +2822 50863 0.4160 +2822 51156 0.4270 +2822 51299 0.4080 +2822 53942 0.4050 +2822 55118 0.4670 +2822 83639 0.4580 +2822 84628 0.4240 +2822 130576 0.4060 +2822 135228 0.4620 +2822 146760 0.4050 +2822 151647 0.4200 +2822 152330 0.4050 +2822 171169 0.4860 +2822 257194 0.4320 +2822 266727 0.4160 +2822 284098 0.9290 +2822 338328 0.4070 +2822 349667 0.4050 +2822 390243 0.4290 +2823 2891 0.5880 +2823 4133 0.4040 +2823 4137 0.5700 +2823 4760 0.4290 +2823 4761 0.4450 +2823 4988 0.6700 +2823 5101 0.4830 +2823 5911 0.5600 +2823 6529 0.4270 +2823 6616 0.5670 +2823 6622 0.4170 +2823 6853 0.7140 +2823 6854 0.4500 +2823 6855 0.7520 +2823 6857 0.4290 +2823 6860 0.4380 +2823 7102 0.4240 +2823 7348 0.5610 +2823 7447 0.4540 +2823 9152 0.5070 +2823 9201 0.4690 +2823 10456 0.4220 +2823 11075 0.4130 +2823 11170 0.4170 +2823 22902 0.4480 +2823 23390 0.4110 +2823 25789 0.4380 +2823 26230 0.5860 +2823 26747 0.4200 +2823 55156 0.4570 +2823 55172 0.4930 +2823 55608 0.4180 +2823 57468 0.4330 +2823 83988 0.4760 +2823 90693 0.4350 +2823 112755 0.5060 +2823 116966 0.4420 +2823 118427 0.4230 +2823 128977 0.4610 +2823 164312 0.4540 +2823 220296 0.4060 +2823 257194 0.4190 +2823 105375355 0.5150 +2824 2925 0.6600 +2824 3052 0.6130 +2824 4204 0.4100 +2824 4897 0.5320 +2824 5354 0.4780 +2824 5549 0.4010 +2824 5803 0.6630 +2824 6399 0.5930 +2824 6532 0.6490 +2824 6792 0.5720 +2824 6853 0.4840 +2824 6855 0.4670 +2824 8481 0.4650 +2824 9367 0.5040 +2824 22854 0.6780 +2824 54960 0.4010 +2824 84628 0.6850 +2824 342035 0.5260 +2826 2833 0.7160 +2826 2868 0.6700 +2826 2869 0.6710 +2826 2870 0.6730 +2826 2919 0.8220 +2826 2920 0.7400 +2826 2921 0.7290 +2826 3458 0.4770 +2826 3558 0.4390 +2826 3565 0.4560 +2826 3567 0.4080 +2826 3576 0.8460 +2826 3577 0.7200 +2826 3579 0.7110 +2826 3586 0.4340 +2826 3596 0.4400 +2826 3605 0.5180 +2826 3627 0.8610 +2826 3682 0.4710 +2826 3683 0.5300 +2826 3717 0.6760 +2826 3718 0.6850 +2826 3791 0.4160 +2826 4283 0.8680 +2826 4352 0.4240 +2826 5196 0.7230 +2826 5197 0.6840 +2826 5473 0.7370 +2826 6011 0.6710 +2826 6281 0.4320 +2826 6346 0.9100 +2826 6347 0.8970 +2826 6348 0.8350 +2826 6351 0.8270 +2826 6354 0.8120 +2826 6355 0.8420 +2826 6356 0.7450 +2826 6357 0.7550 +2826 6359 0.7160 +2826 6360 0.8270 +2826 6361 0.9920 +2826 6362 0.7640 +2826 6363 0.8800 +2826 6364 0.9160 +2826 6366 0.9650 +2826 6367 0.9650 +2826 6368 0.4320 +2826 6369 0.7320 +2826 6370 0.7930 +2826 6372 0.7030 +2826 6373 0.7710 +2826 6374 0.7580 +2826 6375 0.7610 +2826 6376 0.7850 +2826 6387 0.9410 +2826 6401 0.5140 +2826 6402 0.4200 +2826 6714 0.5500 +2826 6846 0.7090 +2826 7040 0.4480 +2826 7066 0.4240 +2826 7412 0.5630 +2826 7852 0.7430 +2826 7916 0.4230 +2826 8174 0.7700 +2826 9034 0.6560 +2826 9547 0.7480 +2826 9560 0.7240 +2826 10344 0.7570 +2826 10563 0.8570 +2826 10663 0.6540 +2826 10803 0.5270 +2826 10850 0.9990 +2826 26086 0.4840 +2826 29899 0.4210 +2826 50616 0.6050 +2826 50943 0.4510 +2826 56477 0.9870 +2826 57007 0.5470 +2826 58191 0.8340 +2826 58985 0.4790 +2826 63940 0.4390 +2826 126006 0.4480 +2826 131890 0.6700 +2826 414062 0.7170 +2827 2828 0.5550 +2827 2830 0.4070 +2827 2840 0.4620 +2827 2841 0.7160 +2827 2849 0.4620 +2827 2853 0.4960 +2827 2859 0.4080 +2827 2863 0.4810 +2827 4880 0.4240 +2827 5139 0.5950 +2827 9210 0.4370 +2827 9290 0.6690 +2827 11245 0.4120 +2827 51107 0.5710 +2827 53836 0.4530 +2827 81491 0.4890 +2827 83550 0.4010 +2827 83873 0.4700 +2827 118442 0.4920 +2827 347148 0.4260 +2828 2830 0.4250 +2828 2835 0.4660 +2828 2863 0.5530 +2828 2869 0.5410 +2828 4216 0.7610 +2828 4693 0.4900 +2828 5330 0.5040 +2828 5331 0.5120 +2828 5724 0.5270 +2828 6035 0.4120 +2828 7099 0.4050 +2828 7204 0.4990 +2828 8111 0.4490 +2828 8436 0.4190 +2828 8477 0.4700 +2828 8645 0.5780 +2828 8929 0.5270 +2828 8997 0.5030 +2828 9311 0.4480 +2828 10268 0.5440 +2828 10800 0.4330 +2828 23236 0.5020 +2828 29933 0.6540 +2828 54112 0.5260 +2828 54538 0.4240 +2828 55366 0.4830 +2828 57105 0.4080 +2828 115557 0.5000 +2828 128674 0.4100 +2828 284654 0.4830 +2829 2833 0.4160 +2829 2868 0.6770 +2829 2869 0.6820 +2829 2870 0.6950 +2829 2919 0.8380 +2829 2920 0.7290 +2829 2921 0.7250 +2829 3394 0.6890 +2829 3458 0.5040 +2829 3563 0.4470 +2829 3576 0.8570 +2829 3577 0.4900 +2829 3627 0.7960 +2829 3662 0.5970 +2829 3682 0.7150 +2829 3684 0.6220 +2829 3687 0.6680 +2829 3717 0.6880 +2829 3718 0.6830 +2829 4065 0.6270 +2829 4283 0.8660 +2829 4684 0.5210 +2829 5196 0.7160 +2829 5197 0.6660 +2829 5330 0.5130 +2829 5331 0.5020 +2829 5473 0.7150 +2829 5788 0.5600 +2829 5919 0.4390 +2829 6011 0.6790 +2829 6346 0.8480 +2829 6347 0.8530 +2829 6348 0.9010 +2829 6351 0.8560 +2829 6354 0.8400 +2829 6355 0.9400 +2829 6356 0.7320 +2829 6357 0.7610 +2829 6359 0.7150 +2829 6360 0.8350 +2829 6361 0.7720 +2829 6362 0.7530 +2829 6363 0.8090 +2829 6364 0.7720 +2829 6366 0.8060 +2829 6367 0.7750 +2829 6369 0.7270 +2829 6370 0.7770 +2829 6372 0.6980 +2829 6373 0.7650 +2829 6374 0.8070 +2829 6375 0.9990 +2829 6376 0.8500 +2829 6387 0.8640 +2829 6614 0.4340 +2829 6846 0.9990 +2829 7056 0.7850 +2829 7098 0.5030 +2829 7204 0.4990 +2829 8549 0.4830 +2829 8997 0.4990 +2829 9034 0.5440 +2829 9294 0.5530 +2829 9547 0.7330 +2829 9560 0.7230 +2829 9971 0.7830 +2829 10344 0.7150 +2829 10462 0.5130 +2829 10563 0.7710 +2829 10800 0.4030 +2829 10803 0.5410 +2829 10850 0.7350 +2829 23236 0.5020 +2829 23705 0.5680 +2829 29126 0.4010 +2829 30835 0.4380 +2829 50489 0.6370 +2829 50856 0.4470 +2829 50943 0.4080 +2829 51284 0.4580 +2829 54585 0.6630 +2829 54716 0.6420 +2829 55096 0.4170 +2829 55509 0.7750 +2829 56477 0.6810 +2829 57105 0.4020 +2829 57705 0.4070 +2829 58191 0.7590 +2829 59272 0.4830 +2829 65258 0.8640 +2829 79443 0.6500 +2829 79856 0.4210 +2829 114609 0.4050 +2829 115557 0.4990 +2829 131890 0.6700 +2829 140685 0.7110 +2829 140885 0.7140 +2829 151306 0.7940 +2829 151888 0.4120 +2829 160364 0.4080 +2829 163702 0.4320 +2829 165530 0.4240 +2829 170482 0.5540 +2829 283420 0.8080 +2829 284654 0.5100 +2829 414062 0.7360 +2829 100133941 0.4940 +2829 100526664 0.6190 +2830 2841 0.6350 +2830 2849 0.4270 +2830 2898 0.6910 +2830 2901 0.8620 +2830 5173 0.5030 +2830 6096 0.4130 +2830 6281 0.4040 +2830 6863 0.4460 +2830 7101 0.8330 +2830 7442 0.4180 +2830 8989 0.4570 +2830 9079 0.4260 +2830 9290 0.6690 +2830 9293 0.6110 +2830 10777 0.4670 +2830 10846 0.4230 +2830 23316 0.4450 +2830 27239 0.4240 +2830 51393 0.4800 +2830 54112 0.7910 +2830 79054 0.4600 +2830 81491 0.4790 +2830 84152 0.5320 +2830 118442 0.4650 +2830 137970 0.4530 +2830 162514 0.4360 +2830 167410 0.4090 +2832 2847 0.5590 +2832 2852 0.5290 +2832 2861 0.5930 +2832 3576 0.5030 +2832 3640 0.6520 +2832 3827 0.5010 +2832 4852 0.5920 +2832 4886 0.5150 +2832 4887 0.5290 +2832 4889 0.6250 +2832 4985 0.5420 +2832 4988 0.5770 +2832 5173 0.5220 +2832 5179 0.5360 +2832 5367 0.5840 +2832 5368 0.6060 +2832 5443 0.6500 +2832 5539 0.5400 +2832 5540 0.5310 +2832 5660 0.5250 +2832 5697 0.5070 +2832 6714 0.5000 +2832 6750 0.6260 +2832 6751 0.5160 +2832 6752 0.5380 +2832 6753 0.5330 +2832 6754 0.5550 +2832 6755 0.5440 +2832 6887 0.4180 +2832 8484 0.5120 +2832 8811 0.5210 +2832 8862 0.5550 +2832 9283 0.5620 +2832 10316 0.5070 +2832 10874 0.5340 +2832 51083 0.4990 +2832 56475 0.4580 +2832 56923 0.5220 +2832 84539 0.5640 +2832 122042 0.5270 +2832 129521 0.5710 +2832 256933 0.9990 +2832 283869 0.9990 +2833 2868 0.6830 +2833 2869 0.6890 +2833 2870 0.6990 +2833 2919 0.9540 +2833 2920 0.9620 +2833 2921 0.8950 +2833 2999 0.4810 +2833 3001 0.6680 +2833 3002 0.7670 +2833 3003 0.5900 +2833 3383 0.7420 +2833 3394 0.5850 +2833 3439 0.5950 +2833 3454 0.4180 +2833 3456 0.5210 +2833 3458 0.9140 +2833 3459 0.4070 +2833 3552 0.5280 +2833 3553 0.8430 +2833 3554 0.4180 +2833 3558 0.7210 +2833 3559 0.5350 +2833 3560 0.7160 +2833 3561 0.4870 +2833 3563 0.4650 +2833 3565 0.7850 +2833 3566 0.5540 +2833 3567 0.5830 +2833 3569 0.7590 +2833 3570 0.4100 +2833 3574 0.5730 +2833 3575 0.7330 +2833 3576 0.9970 +2833 3577 0.9430 +2833 3578 0.4460 +2833 3579 0.8600 +2833 3586 0.8040 +2833 3587 0.6620 +2833 3588 0.5060 +2833 3594 0.7140 +2833 3595 0.5210 +2833 3596 0.6020 +2833 3600 0.6260 +2833 3601 0.4080 +2833 3605 0.7260 +2833 3606 0.5760 +2833 3620 0.5160 +2833 3627 0.9990 +2833 3659 0.4520 +2833 3662 0.5530 +2833 3672 0.5220 +2833 3676 0.7170 +2833 3682 0.6910 +2833 3683 0.6440 +2833 3684 0.7850 +2833 3687 0.6770 +2833 3689 0.4870 +2833 3695 0.5570 +2833 3700 0.5490 +2833 3717 0.7540 +2833 3718 0.7460 +2833 3782 0.4180 +2833 3820 0.6740 +2833 3821 0.5400 +2833 3822 0.4580 +2833 3824 0.5200 +2833 3902 0.8030 +2833 3916 0.4490 +2833 3934 0.5900 +2833 4049 0.4590 +2833 4050 0.4120 +2833 4063 0.4320 +2833 4068 0.4690 +2833 4261 0.5670 +2833 4282 0.5990 +2833 4283 0.9990 +2833 4318 0.4540 +2833 4684 0.6260 +2833 4790 0.4020 +2833 4818 0.4710 +2833 4852 0.4140 +2833 4907 0.4370 +2833 5133 0.7150 +2833 5175 0.4810 +2833 5196 0.9990 +2833 5197 0.9970 +2833 5340 0.4470 +2833 5368 0.4550 +2833 5473 0.9060 +2833 5551 0.7370 +2833 5788 0.7210 +2833 5896 0.4300 +2833 6011 0.6850 +2833 6097 0.5410 +2833 6288 0.5000 +2833 6289 0.5390 +2833 6346 0.8680 +2833 6347 0.9980 +2833 6348 0.9970 +2833 6351 0.9950 +2833 6354 0.9010 +2833 6355 0.9550 +2833 6356 0.9890 +2833 6357 0.9030 +2833 6359 0.7440 +2833 6360 0.7540 +2833 6361 0.9560 +2833 6362 0.7870 +2833 6363 0.9870 +2833 6364 0.9930 +2833 6366 0.9970 +2833 6367 0.9410 +2833 6369 0.9090 +2833 6370 0.9010 +2833 6372 0.8470 +2833 6373 0.9990 +2833 6374 0.9230 +2833 6375 0.8510 +2833 6376 0.9900 +2833 6382 0.4160 +2833 6387 0.9980 +2833 6401 0.6190 +2833 6402 0.8600 +2833 6403 0.6380 +2833 6404 0.7950 +2833 6504 0.4220 +2833 6688 0.4870 +2833 6693 0.4700 +2833 6714 0.6300 +2833 6772 0.5830 +2833 6774 0.5260 +2833 6775 0.5040 +2833 6776 0.4420 +2833 6777 0.4100 +2833 6778 0.4140 +2833 6846 0.8240 +2833 6932 0.4530 +2833 7040 0.5810 +2833 7048 0.4080 +2833 7076 0.5000 +2833 7097 0.4660 +2833 7098 0.4480 +2833 7099 0.4900 +2833 7100 0.5060 +2833 7124 0.8170 +2833 7132 0.4890 +2833 7293 0.5770 +2833 7412 0.7420 +2833 7535 0.5930 +2833 7852 0.9690 +2833 8174 0.4220 +2833 8320 0.6430 +2833 8639 0.5400 +2833 8784 0.4990 +2833 8809 0.5890 +2833 9034 0.7010 +2833 9255 0.6570 +2833 9332 0.4720 +2833 9370 0.4680 +2833 9436 0.4510 +2833 9437 0.5500 +2833 9547 0.8660 +2833 9560 0.7960 +2833 10004 0.5940 +2833 10219 0.6940 +2833 10268 0.4120 +2833 10344 0.9050 +2833 10365 0.4070 +2833 10538 0.4600 +2833 10563 0.9970 +2833 10578 0.4820 +2833 10663 0.9270 +2833 10666 0.4770 +2833 10673 0.4840 +2833 10803 0.7340 +2833 10850 0.8720 +2833 10859 0.4200 +2833 10911 0.4690 +2833 11126 0.4030 +2833 22914 0.6000 +2833 23308 0.4030 +2833 27087 0.5300 +2833 29126 0.6270 +2833 29851 0.7490 +2833 30009 0.8310 +2833 50615 0.5690 +2833 50616 0.5850 +2833 50943 0.8460 +2833 51284 0.5110 +2833 51311 0.4100 +2833 51497 0.4040 +2833 51554 0.6170 +2833 51744 0.4130 +2833 54106 0.5010 +2833 55509 0.4060 +2833 56477 0.6620 +2833 57007 0.7290 +2833 57120 0.4750 +2833 57456 0.4810 +2833 58191 0.9800 +2833 63940 0.4510 +2833 64092 0.4840 +2833 79652 0.4480 +2833 80380 0.4420 +2833 80381 0.5050 +2833 81793 0.5670 +2833 83417 0.4120 +2833 84868 0.6220 +2833 90865 0.4470 +2833 112744 0.4880 +2833 114836 0.4350 +2833 131890 0.6700 +2833 149233 0.4550 +2833 151888 0.4400 +2833 169355 0.4190 +2833 201633 0.7850 +2833 257101 0.4640 +2833 259197 0.5530 +2833 414062 0.8540 +2833 100133941 0.4180 +2834 2891 0.4440 +2834 3814 0.5910 +2834 4852 0.7200 +2834 5449 0.5310 +2834 5617 0.6190 +2834 5618 0.4470 +2834 6869 0.4100 +2834 8620 0.8700 +2834 8862 0.4290 +2834 9463 0.7150 +2834 23426 0.6230 +2834 25817 0.4110 +2834 51052 0.9990 +2834 55879 0.5360 +2834 64111 0.4970 +2834 80852 0.7650 +2834 84109 0.4220 +2834 128344 0.4190 +2834 347148 0.6800 +2835 2841 0.6570 +2835 2845 0.4080 +2835 2849 0.4310 +2835 2853 0.4740 +2835 2859 0.4020 +2835 5139 0.4260 +2835 7442 0.4110 +2835 8989 0.4450 +2835 9290 0.6900 +2835 51393 0.4870 +2835 65999 0.5280 +2835 79054 0.4690 +2835 124274 0.4270 +2835 134829 0.4340 +2835 162514 0.4360 +2837 2847 0.4570 +2837 2862 0.4060 +2837 2869 0.5390 +2837 2922 0.5000 +2837 2925 0.4130 +2837 3135 0.4360 +2837 3814 0.5540 +2837 3827 0.5540 +2837 4295 0.5080 +2837 4828 0.4990 +2837 4829 0.4150 +2837 4922 0.5770 +2837 4923 0.4110 +2837 5330 0.5060 +2837 5331 0.5020 +2837 5367 0.5790 +2837 6750 0.5490 +2837 7200 0.5030 +2837 7201 0.4160 +2837 7204 0.4990 +2837 7349 0.5020 +2837 8484 0.7880 +2837 8997 0.4990 +2837 10316 0.4210 +2837 10672 0.4810 +2837 10874 0.5150 +2837 10887 0.4280 +2837 10911 0.9990 +2837 23236 0.5020 +2837 51052 0.4110 +2837 51738 0.5280 +2837 56923 0.4060 +2837 59342 0.4100 +2837 60675 0.4990 +2837 80852 0.5710 +2837 84432 0.5000 +2837 84539 0.4300 +2837 84627 0.4210 +2837 84634 0.4630 +2837 91608 0.4240 +2837 115557 0.5250 +2837 128674 0.4090 +2837 129521 0.4990 +2837 257313 0.9890 +2837 285601 0.4060 +2837 342527 0.4220 +2837 387129 0.4160 +2837 400629 0.4380 +2837 594857 0.5340 +2838 2843 0.4830 +2838 2848 0.5300 +2838 2850 0.5740 +2838 2854 0.5610 +2838 3543 0.4090 +2838 3576 0.4240 +2838 3700 0.6380 +2838 5079 0.4910 +2838 5450 0.4160 +2838 6714 0.4990 +2838 7529 0.4890 +2838 7634 0.6030 +2838 10781 0.4410 +2838 10888 0.4630 +2838 11245 0.5200 +2838 11250 0.5270 +2838 50835 0.4590 +2838 53831 0.5110 +2838 54674 0.5710 +2838 56650 0.5730 +2838 57491 0.5070 +2838 64005 0.4560 +2838 126661 0.4370 +2838 285601 0.5780 +2838 387695 0.7750 +2840 2846 0.5300 +2840 2847 0.4390 +2840 2861 0.4860 +2840 2869 0.5210 +2840 3676 0.7010 +2840 3683 0.5450 +2840 4056 0.5760 +2840 4155 0.4410 +2840 4336 0.4050 +2840 4340 0.4020 +2840 4821 0.4390 +2840 5028 0.4330 +2840 5029 0.4470 +2840 5030 0.5270 +2840 5031 0.4470 +2840 5032 0.4520 +2840 5156 0.4700 +2840 5330 0.4990 +2840 5331 0.4990 +2840 5354 0.4760 +2840 5788 0.4470 +2840 5996 0.5130 +2840 5998 0.5070 +2840 5999 0.5230 +2840 6003 0.5400 +2840 6004 0.4990 +2840 6402 0.4830 +2840 6663 0.5150 +2840 6714 0.5170 +2840 7204 0.4990 +2840 8490 0.5230 +2840 8537 0.4770 +2840 8639 0.4580 +2840 8997 0.5170 +2840 9170 0.5150 +2840 9934 0.5400 +2840 10161 0.5200 +2840 10215 0.5750 +2840 10287 0.4990 +2840 10316 0.4370 +2840 10681 0.4990 +2840 10800 0.6770 +2840 11245 0.6310 +2840 23236 0.4990 +2840 23432 0.4570 +2840 23566 0.5190 +2840 26086 0.4160 +2840 26575 0.4990 +2840 27199 0.4860 +2840 27334 0.4460 +2840 51764 0.5130 +2840 53829 0.5400 +2840 54331 0.9030 +2840 55679 0.4240 +2840 55970 0.4990 +2840 56923 0.4110 +2840 57105 0.6710 +2840 57121 0.5410 +2840 59345 0.4990 +2840 63940 0.4030 +2840 64407 0.5070 +2840 64805 0.7550 +2840 83873 0.4340 +2840 84539 0.4210 +2840 93377 0.4630 +2840 94235 0.5330 +2840 115557 0.5290 +2840 116448 0.5740 +2840 118442 0.4670 +2840 133121 0.4240 +2840 431704 0.5130 +2841 2854 0.4110 +2841 2861 0.4840 +2841 2919 0.4270 +2841 3034 0.4690 +2841 3350 0.4020 +2841 3702 0.4530 +2841 4056 0.4210 +2841 4063 0.4110 +2841 4068 0.4880 +2841 4543 0.5070 +2841 4544 0.4990 +2841 5468 0.4080 +2841 5733 0.4240 +2841 5788 0.4070 +2841 6317 0.6080 +2841 6318 0.4320 +2841 6374 0.4810 +2841 6714 0.5230 +2841 7442 0.7960 +2841 8989 0.5010 +2841 9290 0.7670 +2841 10803 0.4230 +2841 11343 0.5930 +2841 26086 0.4280 +2841 26090 0.5780 +2841 27199 0.5180 +2841 29899 0.4660 +2841 29909 0.4110 +2841 51393 0.6060 +2841 51806 0.4060 +2841 56670 0.5230 +2841 57406 0.5770 +2841 59341 0.4350 +2841 59352 0.6330 +2841 63940 0.4250 +2841 64805 0.4600 +2841 79037 0.5060 +2841 79054 0.6700 +2841 80342 0.4380 +2841 81491 0.4060 +2841 84941 0.5480 +2841 115352 0.4130 +2841 126006 0.4280 +2841 139760 0.8680 +2841 151888 0.5430 +2841 162514 0.4630 +2841 165829 0.4090 +2841 222236 0.6020 +2841 266977 0.5230 +2841 338442 0.5220 +2842 2845 0.4670 +2842 9290 0.4270 +2842 9650 0.5200 +2842 27197 0.5150 +2842 27255 0.4530 +2842 51704 0.4080 +2842 54112 0.4560 +2842 54682 0.4110 +2842 79665 0.4050 +2842 252884 0.4350 +2842 375704 0.9030 +2843 2845 0.9740 +2843 2848 0.5070 +2843 2849 0.4890 +2843 2850 0.6100 +2843 2854 0.4490 +2843 6714 0.5030 +2843 6750 0.4950 +2843 9293 0.4460 +2843 10888 0.4550 +2843 11245 0.5840 +2843 11250 0.6030 +2843 53831 0.5600 +2843 83550 0.5170 +2843 83873 0.4750 +2843 84436 0.4230 +2843 118442 0.4640 +2843 285601 0.6370 +2845 2846 0.8640 +2845 2850 0.4020 +2845 5577 0.5040 +2845 5731 0.4030 +2845 6344 0.4180 +2845 6750 0.5300 +2845 8707 0.4290 +2845 9293 0.4410 +2845 9776 0.4050 +2845 10466 0.6980 +2845 11062 0.7320 +2845 11245 0.4830 +2845 11250 0.4320 +2845 23263 0.4610 +2845 26959 0.4010 +2845 27239 0.4550 +2845 51244 0.4870 +2845 56977 0.4150 +2845 57512 0.4380 +2845 81491 0.4840 +2845 84636 0.4200 +2845 114792 0.4050 +2845 143879 0.4540 +2845 203228 0.4530 +2845 350383 0.5020 +2846 2869 0.5290 +2846 3576 0.6710 +2846 4018 0.4360 +2846 5028 0.4390 +2846 5029 0.4260 +2846 5031 0.4270 +2846 5032 0.4380 +2846 5168 0.7640 +2846 5294 0.6520 +2846 5330 0.5430 +2846 5331 0.5210 +2846 6609 0.4180 +2846 6750 0.4430 +2846 7204 0.4990 +2846 7205 0.4880 +2846 8074 0.5050 +2846 8613 0.4030 +2846 8698 0.4450 +2846 8877 0.5450 +2846 8997 0.4990 +2846 9170 0.9880 +2846 9294 0.4550 +2846 10161 0.9060 +2846 10672 0.9610 +2846 10800 0.4730 +2846 23236 0.5360 +2846 23533 0.6500 +2846 23566 0.9870 +2846 27334 0.5110 +2846 53637 0.6500 +2846 57105 0.4110 +2846 57121 0.9200 +2846 79153 0.6510 +2846 115557 0.5010 +2846 146850 0.6500 +2846 284161 0.6720 +2847 2852 0.5160 +2847 2861 0.5390 +2847 2862 0.4450 +2847 2869 0.5490 +2847 2922 0.5460 +2847 2925 0.4300 +2847 3060 0.7470 +2847 3576 0.5160 +2847 3757 0.6310 +2847 3827 0.5260 +2847 3952 0.6150 +2847 3953 0.4110 +2847 4160 0.6820 +2847 4161 0.4870 +2847 4295 0.5670 +2847 4828 0.5190 +2847 4829 0.4840 +2847 4852 0.8170 +2847 4886 0.5610 +2847 4887 0.7430 +2847 4889 0.7500 +2847 4985 0.5300 +2847 4988 0.5560 +2847 5173 0.6120 +2847 5179 0.5660 +2847 5330 0.5280 +2847 5331 0.5110 +2847 5367 0.9990 +2847 5368 0.6230 +2847 5443 0.8470 +2847 5539 0.5540 +2847 5540 0.5330 +2847 5660 0.4990 +2847 5697 0.6140 +2847 5996 0.5380 +2847 5998 0.5680 +2847 5999 0.5900 +2847 6003 0.5470 +2847 6004 0.5030 +2847 6505 0.5880 +2847 6506 0.5460 +2847 6507 0.5570 +2847 6509 0.5840 +2847 6510 0.5810 +2847 6511 0.5780 +2847 6512 0.5850 +2847 6608 0.7750 +2847 6714 0.5300 +2847 6750 0.7470 +2847 6751 0.5330 +2847 6752 0.5360 +2847 6753 0.8010 +2847 6754 0.5270 +2847 6755 0.5420 +2847 7200 0.6290 +2847 7201 0.4480 +2847 7204 0.4990 +2847 7277 0.5580 +2847 7280 0.4580 +2847 7289 0.7210 +2847 7442 0.5240 +2847 8484 0.7020 +2847 8490 0.5110 +2847 8811 0.7100 +2847 8862 0.5660 +2847 8997 0.5160 +2847 9170 0.4370 +2847 9283 0.5620 +2847 10287 0.5050 +2847 10316 0.5990 +2847 10522 0.6500 +2847 10681 0.5450 +2847 10874 0.5830 +2847 10887 0.4230 +2847 10911 0.6030 +2847 11255 0.5460 +2847 23236 0.5220 +2847 23432 0.5670 +2847 23566 0.4510 +2847 26086 0.4050 +2847 26526 0.5440 +2847 26575 0.5060 +2847 27241 0.7590 +2847 51083 0.6190 +2847 51738 0.6450 +2847 51764 0.5540 +2847 54331 0.5860 +2847 54585 0.5670 +2847 55212 0.8280 +2847 55970 0.5410 +2847 56923 0.4640 +2847 57571 0.4090 +2847 59345 0.5620 +2847 60675 0.5340 +2847 63940 0.4030 +2847 64407 0.4990 +2847 84100 0.5050 +2847 84432 0.5600 +2847 84539 0.9170 +2847 92482 0.7660 +2847 94235 0.5570 +2847 115557 0.5230 +2847 116225 0.7790 +2847 117177 0.5140 +2847 128674 0.4220 +2847 129521 0.5170 +2847 129880 0.7900 +2847 140679 0.4290 +2847 152404 0.4190 +2847 161003 0.4910 +2847 200894 0.4960 +2847 203068 0.4280 +2847 256933 0.6210 +2847 257313 0.5010 +2847 283869 0.5820 +2847 374739 0.5060 +2847 387129 0.4690 +2847 431704 0.5570 +2847 594857 0.4990 +2848 2850 0.6940 +2848 2854 0.5130 +2848 6714 0.5030 +2848 6988 0.5080 +2848 9293 0.4210 +2848 10888 0.4510 +2848 11128 0.4200 +2848 11245 0.6300 +2848 11250 0.5270 +2848 23046 0.4550 +2848 26658 0.5170 +2848 27239 0.4360 +2848 53831 0.5200 +2848 55765 0.4350 +2848 90993 0.4990 +2848 118442 0.5090 +2848 221191 0.4210 +2848 285601 0.6400 +2848 388552 0.5600 +2848 392391 0.4600 +2848 647219 0.4310 +2849 2850 0.4080 +2849 2853 0.4940 +2849 2863 0.4350 +2849 2900 0.4130 +2849 3361 0.4660 +2849 5832 0.7320 +2849 6337 0.4190 +2849 8111 0.5560 +2849 9248 0.4520 +2849 9392 0.4220 +2849 27197 0.4960 +2849 27239 0.6730 +2849 51704 0.4260 +2849 54112 0.4890 +2849 54329 0.4230 +2849 57198 0.4530 +2849 57512 0.4560 +2849 57539 0.4110 +2849 83550 0.5100 +2849 118442 0.6040 +2849 119587 0.4370 +2849 124274 0.4550 +2849 167359 0.4160 +2849 285601 0.4920 +2849 654790 0.4860 +2849 729830 0.4970 +2850 2854 0.4430 +2850 5832 0.6940 +2850 6714 0.4990 +2850 6815 0.4670 +2850 9293 0.4110 +2850 10888 0.5040 +2850 11245 0.6490 +2850 11250 0.5930 +2850 27197 0.4520 +2850 27239 0.4410 +2850 53831 0.5510 +2850 60675 0.4600 +2850 81491 0.4900 +2850 83550 0.4730 +2850 118442 0.4320 +2850 285601 0.6490 +2850 317649 0.6220 +2852 2861 0.5530 +2852 3479 0.4160 +2852 3480 0.5650 +2852 3482 0.4100 +2852 3486 0.4320 +2852 3491 0.4770 +2852 3576 0.5870 +2852 3630 0.4340 +2852 3814 0.4350 +2852 3827 0.5730 +2852 3952 0.4110 +2852 4846 0.4480 +2852 4852 0.7580 +2852 4886 0.5360 +2852 4887 0.5040 +2852 4889 0.5090 +2852 4985 0.5170 +2852 4988 0.7320 +2852 5020 0.4270 +2852 5034 0.5140 +2852 5159 0.4010 +2852 5173 0.6070 +2852 5179 0.6170 +2852 5241 0.7170 +2852 5367 0.5330 +2852 5368 0.5940 +2852 5443 0.6980 +2852 5539 0.5080 +2852 5540 0.4990 +2852 5566 0.5610 +2852 5567 0.5520 +2852 5568 0.5520 +2852 5595 0.5840 +2852 5660 0.4990 +2852 5697 0.5000 +2852 5747 0.9100 +2852 6462 0.4330 +2852 6464 0.6350 +2852 6714 0.9480 +2852 6750 0.6490 +2852 6751 0.5340 +2852 6752 0.5050 +2852 6753 0.4990 +2852 6754 0.5030 +2852 6755 0.5080 +2852 6770 0.4750 +2852 7157 0.4030 +2852 8484 0.4990 +2852 8698 0.4100 +2852 8811 0.5060 +2852 8862 0.5650 +2852 9283 0.5000 +2852 10316 0.5080 +2852 10424 0.5320 +2852 10681 0.5610 +2852 10857 0.5480 +2852 10874 0.7070 +2852 26086 0.4130 +2852 51083 0.5460 +2852 51751 0.4060 +2852 51764 0.4990 +2852 54331 0.5340 +2852 55970 0.4990 +2852 56923 0.5020 +2852 57708 0.4770 +2852 59345 0.5680 +2852 59350 0.4080 +2852 63940 0.4010 +2852 79644 0.4280 +2852 83394 0.5360 +2852 83873 0.9020 +2852 84539 0.5050 +2852 85315 0.4340 +2852 94235 0.4990 +2852 118442 0.9090 +2852 129521 0.4990 +2852 164091 0.4780 +2852 256933 0.5250 +2852 283869 0.5190 +2853 2863 0.4470 +2853 4089 0.4590 +2853 4838 0.7670 +2853 6714 0.5170 +2853 7547 0.8410 +2853 8562 0.5490 +2853 10936 0.4600 +2853 27244 0.4290 +2853 55997 0.7210 +2853 56413 0.4700 +2853 118442 0.4100 +2853 124274 0.4770 +2853 134391 0.4880 +2854 2861 0.6030 +2854 2864 0.4960 +2854 4015 0.4020 +2854 5919 0.4830 +2854 6714 0.5270 +2854 6915 0.4010 +2854 10888 0.5030 +2854 11245 0.5320 +2854 11250 0.4820 +2854 27201 0.4230 +2854 50835 0.5080 +2854 53831 0.5050 +2854 59352 0.5480 +2854 79741 0.4140 +2854 83550 0.4350 +2854 84941 0.8260 +2854 285601 0.5720 +2854 338557 0.4330 +2856 25938 0.4780 +2856 54346 0.4100 +2856 91663 0.4470 +2856 112487 0.5700 +2856 285601 0.4230 +2857 3394 0.4190 +2857 4360 0.4730 +2857 4540 0.4220 +2857 4707 0.4780 +2857 4714 0.4330 +2857 4715 0.4300 +2857 4718 0.4460 +2857 5627 0.4850 +2857 6299 0.5150 +2857 6518 0.4260 +2857 7305 0.5270 +2857 7317 0.5090 +2857 10461 0.5020 +2857 11326 0.5040 +2857 27197 0.6880 +2857 54209 0.6890 +2857 56944 0.6830 +2857 64231 0.4060 +2857 64805 0.4740 +2857 80258 0.8460 +2857 338773 0.7370 +2859 3620 0.5110 +2859 6999 0.5740 +2859 8564 0.5850 +2859 8942 0.5340 +2859 9170 0.4100 +2859 9759 0.5550 +2859 10636 0.4980 +2859 10672 0.4690 +2859 11132 0.8430 +2859 23498 0.4310 +2859 51166 0.6620 +2859 53831 0.4650 +2859 56267 0.5530 +2859 57140 0.5530 +2859 93974 0.6320 +2859 112970 0.5910 +2859 134864 0.4420 +2859 139760 0.4940 +2859 151306 0.5300 +2859 169355 0.5440 +2859 284340 0.9620 +2859 338557 0.5280 +2859 350383 0.6480 +2861 2863 0.4330 +2861 2920 0.4110 +2861 2922 0.5420 +2861 2977 0.4480 +2861 3306 0.4780 +2861 3308 0.6710 +2861 3312 0.5690 +2861 3360 0.4250 +2861 3361 0.4590 +2861 3576 0.7210 +2861 3827 0.5240 +2861 4336 0.4180 +2861 4340 0.4280 +2861 4852 0.5750 +2861 4886 0.5230 +2861 4887 0.5490 +2861 4889 0.5310 +2861 4985 0.5620 +2861 4988 0.5440 +2861 5071 0.9950 +2861 5173 0.5440 +2861 5179 0.5610 +2861 5354 0.4120 +2861 5367 0.5160 +2861 5368 0.5600 +2861 5413 0.6780 +2861 5443 0.5510 +2861 5539 0.5120 +2861 5540 0.5020 +2861 5660 0.9900 +2861 5697 0.4990 +2861 6015 0.4180 +2861 6372 0.4180 +2861 6386 0.4430 +2861 6531 0.7830 +2861 6622 0.8000 +2861 6714 0.5260 +2861 6750 0.5440 +2861 6751 0.7010 +2861 6752 0.5050 +2861 6753 0.4990 +2861 6754 0.5170 +2861 6755 0.4990 +2861 7325 0.5020 +2861 7965 0.6260 +2861 8484 0.4990 +2861 8811 0.4990 +2861 8862 0.5320 +2861 9283 0.7000 +2861 9354 0.4830 +2861 9463 0.5230 +2861 9529 0.6440 +2861 9547 0.4530 +2861 9627 0.7970 +2861 9868 0.4180 +2861 10273 0.7730 +2861 10314 0.4110 +2861 10316 0.5020 +2861 10469 0.4240 +2861 10482 0.4200 +2861 10874 0.5720 +2861 10935 0.4020 +2861 11315 0.4010 +2861 23208 0.6500 +2861 23640 0.4680 +2861 26086 0.4160 +2861 29899 0.4540 +2861 50940 0.4110 +2861 51083 0.5220 +2861 51465 0.4690 +2861 51704 0.4840 +2861 54329 0.4090 +2861 55294 0.4750 +2861 56923 0.5360 +2861 57348 0.4060 +2861 57590 0.6090 +2861 59352 0.5020 +2861 83550 0.4040 +2861 83998 0.6290 +2861 84447 0.6990 +2861 84522 0.4060 +2861 84539 0.5100 +2861 129521 0.4990 +2861 135138 0.6280 +2861 152185 0.4040 +2861 203259 0.6910 +2861 256933 0.5230 +2861 283869 0.5070 +2862 2869 0.5290 +2862 2922 0.5310 +2862 2925 0.4350 +2862 3814 0.5550 +2862 3827 0.5010 +2862 4295 0.9990 +2862 4828 0.5310 +2862 4829 0.5090 +2862 4922 0.7240 +2862 4923 0.5030 +2862 5330 0.5020 +2862 5331 0.5020 +2862 5367 0.5030 +2862 7200 0.5070 +2862 7201 0.4460 +2862 7204 0.4990 +2862 8997 0.4990 +2862 9002 0.4010 +2862 9445 0.4600 +2862 10316 0.4610 +2862 10800 0.4280 +2862 10874 0.6890 +2862 10887 0.4080 +2862 10911 0.5000 +2862 22862 0.6700 +2862 23236 0.5020 +2862 23620 0.4570 +2862 51131 0.4790 +2862 51738 0.8760 +2862 55213 0.5410 +2862 56923 0.4370 +2862 57105 0.5690 +2862 60675 0.5670 +2862 81602 0.5960 +2862 81617 0.6550 +2862 83852 0.5480 +2862 84432 0.5910 +2862 84539 0.4010 +2862 84634 0.4150 +2862 115557 0.4990 +2862 129521 0.5550 +2862 257313 0.5010 +2862 387129 0.4580 +2862 594857 0.4990 +2863 2869 0.5290 +2863 3350 0.4530 +2863 4160 0.4910 +2863 4295 0.8390 +2863 4852 0.4650 +2863 4922 0.6530 +2863 5032 0.4020 +2863 5330 0.5050 +2863 5331 0.5190 +2863 5724 0.4180 +2863 5798 0.4350 +2863 5799 0.5880 +2863 6019 0.4290 +2863 6714 0.5800 +2863 7204 0.5000 +2863 7779 0.4170 +2863 7780 0.4500 +2863 7781 0.6480 +2863 7922 0.4430 +2863 8111 0.6340 +2863 8477 0.5730 +2863 8997 0.4990 +2863 10681 0.5450 +2863 11245 0.4210 +2863 23236 0.5150 +2863 29933 0.4950 +2863 51738 0.9830 +2863 51764 0.5410 +2863 53836 0.4360 +2863 54331 0.5410 +2863 55890 0.4250 +2863 55970 0.5780 +2863 57105 0.4040 +2863 57468 0.4740 +2863 59345 0.5450 +2863 83873 0.4210 +2863 94235 0.5410 +2863 115557 0.5080 +2863 116236 0.4410 +2863 116372 0.9030 +2863 118442 0.4470 +2863 124274 0.4580 +2863 151306 0.4960 +2863 387129 0.4320 +2863 387509 0.4520 +2863 594857 0.4310 +2863 619373 0.8090 +2864 2865 0.7340 +2864 2867 0.7340 +2864 2869 0.4990 +2864 3375 0.5400 +2864 3630 0.6680 +2864 4817 0.4190 +2864 5028 0.4330 +2864 5330 0.6240 +2864 5331 0.4990 +2864 5465 0.4350 +2864 5468 0.7020 +2864 5697 0.6010 +2864 5832 0.4470 +2864 6514 0.4500 +2864 6523 0.4910 +2864 6750 0.5890 +2864 6781 0.5100 +2864 6833 0.4250 +2864 7204 0.4990 +2864 7442 0.4050 +2864 8811 0.8330 +2864 8997 0.5150 +2864 9630 0.5650 +2864 10800 0.4310 +2864 10936 0.5720 +2864 23236 0.5110 +2864 50835 0.4610 +2864 51083 0.8000 +2864 51738 0.4480 +2864 53831 0.8310 +2864 57105 0.4180 +2864 57121 0.4980 +2864 64106 0.4240 +2864 80834 0.5780 +2864 80835 0.6520 +2864 83756 0.5770 +2864 115557 0.4990 +2864 124274 0.4210 +2864 132243 0.4100 +2864 139760 0.8150 +2864 151306 0.6260 +2864 169026 0.4360 +2864 222545 0.4320 +2864 338442 0.4980 +2864 338557 0.9610 +2864 350383 0.6890 +2865 2866 0.4390 +2865 2867 0.7820 +2865 2869 0.5000 +2865 3458 0.4090 +2865 3553 0.4880 +2865 3569 0.4620 +2865 3586 0.5100 +2865 3630 0.5230 +2865 3952 0.5570 +2865 4922 0.4400 +2865 5330 0.6240 +2865 5331 0.4990 +2865 5468 0.4770 +2865 5697 0.8280 +2865 5832 0.7600 +2865 6566 0.5110 +2865 7097 0.4390 +2865 7099 0.5080 +2865 7124 0.4750 +2865 7204 0.5400 +2865 7434 0.4360 +2865 8997 0.4990 +2865 9370 0.4120 +2865 9971 0.5890 +2865 23236 0.4990 +2865 50616 0.4120 +2865 50943 0.4500 +2865 51083 0.8370 +2865 51738 0.4760 +2865 53831 0.8340 +2865 56670 0.4780 +2865 57121 0.4680 +2865 79581 0.4140 +2865 80834 0.4650 +2865 80835 0.4360 +2865 83756 0.4890 +2865 115557 0.5090 +2865 130120 0.4140 +2865 139760 0.6900 +2865 143503 0.4770 +2865 151306 0.6930 +2865 160728 0.6440 +2865 222545 0.4200 +2865 338442 0.6350 +2865 338557 0.9120 +2865 346562 0.5850 +2865 100506658 0.5020 +2866 5697 0.5080 +2866 51083 0.7650 +2866 79581 0.4340 +2867 2869 0.5000 +2867 3383 0.5220 +2867 3458 0.4660 +2867 3553 0.6090 +2867 3569 0.5570 +2867 3575 0.4610 +2867 3586 0.6070 +2867 3605 0.4850 +2867 3606 0.4780 +2867 3630 0.5820 +2867 3682 0.4030 +2867 3952 0.5870 +2867 4023 0.4180 +2867 4210 0.5230 +2867 4852 0.8250 +2867 5020 0.6940 +2867 5029 0.4250 +2867 5330 0.5910 +2867 5331 0.4990 +2867 5465 0.4040 +2867 5468 0.5510 +2867 5697 0.8360 +2867 5724 0.5970 +2867 5832 0.7540 +2867 6566 0.5120 +2867 6750 0.7400 +2867 6781 0.4240 +2867 7082 0.4480 +2867 7097 0.5260 +2867 7099 0.6060 +2867 7100 0.4410 +2867 7124 0.5610 +2867 7166 0.4030 +2867 7204 0.5400 +2867 7434 0.4230 +2867 8856 0.4030 +2867 8997 0.4990 +2867 9076 0.4220 +2867 9370 0.4250 +2867 9971 0.5990 +2867 10800 0.4320 +2867 23236 0.5110 +2867 27198 0.5430 +2867 50616 0.5130 +2867 50943 0.5760 +2867 51083 0.7740 +2867 51129 0.4710 +2867 51738 0.8230 +2867 53831 0.8800 +2867 55540 0.4460 +2867 56670 0.4260 +2867 57121 0.4740 +2867 64127 0.4630 +2867 79581 0.7010 +2867 80834 0.4510 +2867 80835 0.4200 +2867 83756 0.4640 +2867 114548 0.4330 +2867 115557 0.5090 +2867 130120 0.5410 +2867 139760 0.7250 +2867 143503 0.5580 +2867 151306 0.7740 +2867 160728 0.6670 +2867 222545 0.4190 +2867 338442 0.7270 +2867 338557 0.9180 +2867 350383 0.4440 +2867 100506658 0.5340 +2868 2870 0.5090 +2868 3577 0.6750 +2868 3579 0.6840 +2868 4988 0.9210 +2868 5037 0.4530 +2868 5829 0.7430 +2868 5921 0.5110 +2868 5957 0.5490 +2868 6002 0.4380 +2868 6003 0.4270 +2868 6010 0.7900 +2868 6295 0.7210 +2868 6340 0.4600 +2868 7188 0.6020 +2868 7852 0.7320 +2868 8786 0.4500 +2868 8801 0.5530 +2868 8874 0.5560 +2868 9459 0.8070 +2868 9815 0.9610 +2868 10287 0.4070 +2868 10663 0.6800 +2868 10803 0.6800 +2868 26575 0.4110 +2868 28964 0.9980 +2868 51806 0.4520 +2868 54910 0.4240 +2868 57094 0.6040 +2868 64407 0.4150 +2868 91860 0.4770 +2868 163688 0.4540 +2868 431704 0.4270 +2869 2870 0.7280 +2869 2911 0.5260 +2869 2915 0.5160 +2869 2922 0.5140 +2869 2925 0.5440 +2869 2978 0.4320 +2869 3060 0.5100 +2869 3061 0.6130 +2869 3062 0.6010 +2869 3269 0.5260 +2869 3320 0.5820 +2869 3326 0.5770 +2869 3356 0.6170 +2869 3357 0.5420 +2869 3358 0.5310 +2869 3577 0.6710 +2869 3579 0.6890 +2869 3760 0.4560 +2869 3762 0.4200 +2869 3782 0.5590 +2869 3814 0.4990 +2869 3827 0.5490 +2869 4295 0.4990 +2869 4792 0.6730 +2869 4828 0.4990 +2869 4829 0.5480 +2869 4922 0.5240 +2869 4923 0.5360 +2869 4935 0.4990 +2869 4988 0.9480 +2869 5020 0.5290 +2869 5021 0.5600 +2869 5028 0.5370 +2869 5029 0.5110 +2869 5031 0.5030 +2869 5032 0.5120 +2869 5037 0.6590 +2869 5367 0.4990 +2869 5701 0.5480 +2869 5724 0.5590 +2869 5731 0.5490 +2869 5737 0.5290 +2869 5829 0.6270 +2869 5921 0.4970 +2869 5957 0.6560 +2869 6010 0.8690 +2869 6288 0.4990 +2869 6295 0.8060 +2869 6368 0.4990 +2869 6375 0.5030 +2869 6608 0.6170 +2869 6622 0.4240 +2869 6732 0.5390 +2869 6846 0.5030 +2869 6863 0.5240 +2869 6865 0.5010 +2869 6869 0.6420 +2869 6870 0.5000 +2869 6915 0.6720 +2869 7200 0.4990 +2869 7201 0.5530 +2869 7534 0.5640 +2869 7852 0.7110 +2869 8111 0.5290 +2869 8477 0.5370 +2869 8620 0.5370 +2869 9002 0.5660 +2869 9170 0.5430 +2869 9459 0.7350 +2869 9478 0.7450 +2869 9630 0.5740 +2869 9815 0.9340 +2869 10013 0.5800 +2869 10014 0.4410 +2869 10161 0.5320 +2869 10316 0.5330 +2869 10663 0.6810 +2869 10681 0.6120 +2869 10800 0.5290 +2869 10803 0.6800 +2869 10874 0.5250 +2869 10886 0.6210 +2869 10887 0.5290 +2869 10911 0.5390 +2869 23566 0.5340 +2869 23620 0.5300 +2869 27334 0.5150 +2869 28964 0.9970 +2869 29933 0.4990 +2869 51475 0.6210 +2869 51738 0.5130 +2869 51764 0.5940 +2869 51806 0.5460 +2869 54331 0.6030 +2869 54910 0.4140 +2869 55970 0.5650 +2869 56344 0.6620 +2869 56413 0.5360 +2869 56923 0.5340 +2869 57010 0.4210 +2869 57105 0.5290 +2869 57121 0.4990 +2869 57521 0.4810 +2869 59345 0.6050 +2869 60675 0.4990 +2869 64106 0.6210 +2869 84109 0.5290 +2869 84432 0.4990 +2869 84539 0.5290 +2869 84634 0.5290 +2869 84687 0.4170 +2869 91860 0.5470 +2869 94233 0.5830 +2869 94235 0.5910 +2869 128674 0.5290 +2869 129521 0.4990 +2869 163688 0.5470 +2869 222545 0.5130 +2869 257313 0.4990 +2869 338557 0.5300 +2869 347148 0.5280 +2869 387129 0.5400 +2869 594857 0.4990 +2870 3320 0.6640 +2870 3326 0.6520 +2870 3577 0.8290 +2870 3579 0.8850 +2870 4040 0.4220 +2870 4988 0.9480 +2870 5037 0.4480 +2870 5829 0.6450 +2870 5921 0.5040 +2870 5957 0.6580 +2870 6010 0.7250 +2870 6295 0.6790 +2870 6608 0.5330 +2870 7852 0.8380 +2870 8786 0.4070 +2870 9368 0.4540 +2870 9459 0.7750 +2870 9815 0.9440 +2870 10287 0.4920 +2870 10663 0.6880 +2870 10803 0.6890 +2870 28964 0.9980 +2870 54910 0.4100 +2872 4486 0.4690 +2872 5594 0.9830 +2872 5595 0.9370 +2872 5597 0.4120 +2872 5604 0.5730 +2872 5605 0.5410 +2872 5606 0.4340 +2872 6046 0.4810 +2872 6426 0.5480 +2872 6732 0.5870 +2872 6787 0.5350 +2872 7343 0.5470 +2872 8569 0.9450 +2872 9423 0.4350 +2872 9470 0.9060 +2872 9475 0.4530 +2872 10527 0.5510 +2872 23476 0.5120 +2872 79109 0.4730 +2872 80017 0.4410 +2872 253314 0.9120 +2873 2874 0.9580 +2873 2885 0.9020 +2873 2965 0.5130 +2873 2966 0.5130 +2873 2967 0.5070 +2873 2968 0.5600 +2873 3028 0.4570 +2873 3663 0.4250 +2873 3705 0.4420 +2873 3725 0.4740 +2873 4331 0.5080 +2873 4738 0.9810 +2873 4792 0.6110 +2873 4798 0.4110 +2873 5318 0.4240 +2873 5335 0.9080 +2873 5431 0.5760 +2873 5432 0.5990 +2873 5433 0.5070 +2873 5434 0.6630 +2873 5435 0.5440 +2873 5436 0.5370 +2873 5437 0.5170 +2873 5438 0.5510 +2873 5439 0.5160 +2873 5440 0.5020 +2873 5441 0.5670 +2873 5663 0.4100 +2873 5702 0.5230 +2873 5705 0.6920 +2873 5708 0.4870 +2873 5713 0.4600 +2873 5719 0.4110 +2873 5886 0.6460 +2873 5887 0.5720 +2873 5929 0.4110 +2873 5931 0.4230 +2873 6233 0.5730 +2873 6500 0.4280 +2873 6506 0.4830 +2873 6907 0.4420 +2873 6921 0.9020 +2873 6923 0.9440 +2873 7268 0.5950 +2873 7311 0.5110 +2873 7314 0.5820 +2873 7316 0.5830 +2873 7384 0.5710 +2873 7428 0.9260 +2873 7508 0.5060 +2873 7528 0.4260 +2873 8405 0.6360 +2873 8450 0.9400 +2873 8451 0.9550 +2873 8452 0.9200 +2873 8453 0.9190 +2873 8454 0.9210 +2873 8533 0.9990 +2873 8607 0.5400 +2873 8665 0.4300 +2873 8816 0.4010 +2873 9040 0.8240 +2873 9318 0.9990 +2873 9567 0.4220 +2873 9619 0.4220 +2873 9840 0.9000 +2873 9886 0.7540 +2873 9978 0.9820 +2873 10083 0.4220 +2873 10213 0.4590 +2873 10238 0.4190 +2873 10307 0.6280 +2873 10445 0.6780 +2873 10617 0.4370 +2873 10750 0.5500 +2873 10920 0.9990 +2873 10980 0.9990 +2873 10987 0.9990 +2873 11037 0.4990 +2873 11047 0.4580 +2873 11091 0.4320 +2873 23038 0.4980 +2873 23412 0.4160 +2873 25793 0.4900 +2873 25839 0.5300 +2873 25879 0.4090 +2873 26094 0.7480 +2873 26146 0.4070 +2873 27040 0.7200 +2873 27348 0.5070 +2873 28952 0.4680 +2873 28991 0.4160 +2873 29099 0.4260 +2873 29844 0.4540 +2873 29894 0.4420 +2873 50717 0.4100 +2873 50813 0.9990 +2873 51122 0.4120 +2873 51138 0.9990 +2873 51185 0.7510 +2873 51397 0.4210 +2873 51514 0.6980 +2873 51666 0.6660 +2873 53339 0.4420 +2873 54165 0.4450 +2873 54461 0.4400 +2873 54617 0.4090 +2873 54876 0.4550 +2873 54939 0.4670 +2873 54951 0.4160 +2873 55070 0.6990 +2873 55234 0.4180 +2873 55626 0.5140 +2873 55643 0.4530 +2873 55827 0.4580 +2873 57559 0.4110 +2873 64223 0.4370 +2873 64708 0.9990 +2873 79016 0.5040 +2873 79058 0.4820 +2873 79184 0.4300 +2873 79913 0.4190 +2873 80308 0.4270 +2873 80344 0.7850 +2873 83444 0.4510 +2873 84196 0.5140 +2873 84259 0.4050 +2873 84954 0.5190 +2873 85439 0.4990 +2873 90665 0.4590 +2873 93973 0.4210 +2873 114803 0.4230 +2873 115290 0.4250 +2873 122769 0.4220 +2873 126074 0.4320 +2873 137902 0.4550 +2873 143384 0.4760 +2873 144699 0.5290 +2873 149951 0.4250 +2873 150678 0.9750 +2873 150684 0.4460 +2873 170622 0.4350 +2873 220965 0.4170 +2873 283899 0.4210 +2873 286187 0.7620 +2873 317719 0.6200 +2873 387357 0.7200 +2873 404672 0.5210 +2874 3012 0.4070 +2874 3013 0.4060 +2874 3017 0.4290 +2874 3018 0.4200 +2874 3065 0.5430 +2874 3881 0.4830 +2874 4176 0.4240 +2874 4204 0.7150 +2874 4289 0.5050 +2874 4438 0.4880 +2874 4439 0.4860 +2874 5158 0.4870 +2874 5371 0.4050 +2874 5531 0.4530 +2874 5566 0.4820 +2874 5595 0.4600 +2874 5914 0.4250 +2874 5928 0.4550 +2874 5931 0.4450 +2874 6256 0.7250 +2874 6257 0.5750 +2874 6314 0.4830 +2874 6829 0.5810 +2874 6871 0.4950 +2874 6878 0.5830 +2874 6880 0.5850 +2874 6881 0.7000 +2874 6883 0.7270 +2874 6907 0.9990 +2874 6908 0.4180 +2874 7157 0.4790 +2874 7376 0.5820 +2874 7464 0.4790 +2874 7791 0.5010 +2874 7917 0.4050 +2874 8295 0.6590 +2874 8329 0.4060 +2874 8331 0.4060 +2874 8334 0.4100 +2874 8337 0.4590 +2874 8338 0.4550 +2874 8340 0.4200 +2874 8341 0.4200 +2874 8342 0.4200 +2874 8345 0.4250 +2874 8347 0.4210 +2874 8348 0.4200 +2874 8349 0.6370 +2874 8356 0.5270 +2874 8361 0.6020 +2874 8431 0.4600 +2874 8446 0.4870 +2874 8464 0.7120 +2874 8541 0.4200 +2874 8648 0.5810 +2874 8732 0.4870 +2874 8841 0.9980 +2874 8850 0.6230 +2874 8970 0.4220 +2874 9221 0.4040 +2874 9265 0.4200 +2874 9572 0.4580 +2874 9611 0.9990 +2874 9612 0.9970 +2874 9619 0.7550 +2874 9682 0.5800 +2874 9971 0.4400 +2874 9989 0.4460 +2874 10014 0.6070 +2874 10062 0.7310 +2874 10474 0.7770 +2874 10524 0.4920 +2874 10629 0.5710 +2874 10928 0.6290 +2874 10951 0.4030 +2874 23028 0.5430 +2874 23118 0.6390 +2874 23309 0.4070 +2874 23476 0.4650 +2874 25942 0.5670 +2874 27443 0.5210 +2874 29123 0.5910 +2874 51616 0.5720 +2874 55170 0.4850 +2874 55818 0.5350 +2874 56943 0.5660 +2874 79718 0.9990 +2874 85235 0.4060 +2874 85236 0.4320 +2874 90665 0.9990 +2874 91404 0.6080 +2874 92815 0.4070 +2874 93624 0.4980 +2874 112869 0.5410 +2874 116443 0.4220 +2874 126823 0.4620 +2874 127002 0.4950 +2874 128312 0.4200 +2874 147011 0.4610 +2874 221613 0.4060 +2874 221656 0.4990 +2874 221937 0.4390 +2874 222255 0.4830 +2874 255626 0.4200 +2874 317772 0.4060 +2874 388324 0.4100 +2874 440689 0.4200 +2874 653604 0.5200 +2875 2877 0.7970 +2875 2878 0.7950 +2875 2880 0.8010 +2875 2882 0.8130 +2875 2936 0.6780 +2875 3077 0.4550 +2875 3081 0.4190 +2875 3082 0.4560 +2875 3091 0.4560 +2875 3146 0.5150 +2875 3156 0.8050 +2875 3162 0.6740 +2875 3240 0.9180 +2875 3242 0.5200 +2875 3308 0.4410 +2875 3309 0.4470 +2875 3383 0.4920 +2875 3417 0.8900 +2875 3418 0.8920 +2875 3419 0.8540 +2875 3420 0.8410 +2875 3421 0.8380 +2875 3439 0.6960 +2875 3440 0.6670 +2875 3441 0.6210 +2875 3442 0.6240 +2875 3443 0.6240 +2875 3444 0.6240 +2875 3445 0.6240 +2875 3446 0.6250 +2875 3447 0.6210 +2875 3448 0.6240 +2875 3449 0.6240 +2875 3451 0.6200 +2875 3452 0.6240 +2875 3456 0.4750 +2875 3458 0.7070 +2875 3479 0.5180 +2875 3552 0.5760 +2875 3553 0.7740 +2875 3558 0.6370 +2875 3565 0.5710 +2875 3569 0.8280 +2875 3576 0.5770 +2875 3586 0.7140 +2875 3605 0.5270 +2875 3606 0.5230 +2875 3620 0.4090 +2875 3621 0.4890 +2875 3627 0.5070 +2875 3630 0.8840 +2875 3667 0.4510 +2875 3684 0.4780 +2875 3725 0.5460 +2875 3845 0.4080 +2875 3855 0.4190 +2875 3875 0.6120 +2875 3880 0.5010 +2875 3920 0.4970 +2875 3929 0.4600 +2875 3934 0.4330 +2875 3948 0.6880 +2875 3952 0.7130 +2875 3959 0.5220 +2875 3991 0.4870 +2875 4018 0.4860 +2875 4023 0.5070 +2875 4143 0.5610 +2875 4144 0.4860 +2875 4151 0.7050 +2875 4191 0.4990 +2875 4199 0.5880 +2875 4200 0.6010 +2875 4318 0.4600 +2875 4353 0.6610 +2875 4493 0.4210 +2875 4512 0.4110 +2875 4524 0.5170 +2875 4547 0.7280 +2875 4684 0.4060 +2875 4780 0.5720 +2875 4790 0.4570 +2875 4792 0.4580 +2875 4846 0.4580 +2875 4879 0.6700 +2875 4942 0.4930 +2875 4953 0.5650 +2875 4967 0.8590 +2875 5004 0.4220 +2875 5005 0.4270 +2875 5009 0.4240 +2875 5054 0.6590 +2875 5091 0.5960 +2875 5105 0.5320 +2875 5106 0.4780 +2875 5133 0.4470 +2875 5175 0.4160 +2875 5226 0.4070 +2875 5244 0.5340 +2875 5265 0.5710 +2875 5286 0.8000 +2875 5313 0.5140 +2875 5315 0.5000 +2875 5347 0.4870 +2875 5406 0.4810 +2875 5443 0.5280 +2875 5444 0.4020 +2875 5465 0.7020 +2875 5468 0.6260 +2875 5595 0.4010 +2875 5617 0.4690 +2875 5657 0.5520 +2875 5741 0.6060 +2875 5743 0.5410 +2875 5788 0.4840 +2875 5831 0.4010 +2875 5832 0.6940 +2875 5834 0.4290 +2875 5836 0.4270 +2875 5837 0.4160 +2875 5919 0.4540 +2875 5950 0.4150 +2875 5972 0.5870 +2875 6319 0.4980 +2875 6347 0.6410 +2875 6348 0.4320 +2875 6351 0.4780 +2875 6389 0.9160 +2875 6390 0.8540 +2875 6391 0.8480 +2875 6392 0.8030 +2875 6401 0.5350 +2875 6462 0.5530 +2875 6470 0.4760 +2875 6472 0.4150 +2875 6476 0.5890 +2875 6514 0.4520 +2875 6517 0.5080 +2875 6524 0.6110 +2875 6554 0.5210 +2875 6652 0.6600 +2875 6713 0.4410 +2875 6720 0.6820 +2875 6721 0.4550 +2875 6774 0.4800 +2875 6999 0.5940 +2875 7038 0.7370 +2875 7040 0.6070 +2875 7076 0.6670 +2875 7099 0.6050 +2875 7124 0.7910 +2875 7137 0.6660 +2875 7157 0.5070 +2875 7167 0.5280 +2875 7172 0.4400 +2875 7173 0.4200 +2875 7276 0.6330 +2875 7295 0.4060 +2875 7350 0.4130 +2875 7355 0.4030 +2875 7363 0.4670 +2875 7364 0.4690 +2875 7365 0.4670 +2875 7366 0.4450 +2875 7367 0.4580 +2875 7412 0.5770 +2875 7450 0.4570 +2875 7498 0.5480 +2875 7837 0.6210 +2875 8310 0.4190 +2875 8431 0.4270 +2875 8647 0.6060 +2875 8659 0.4240 +2875 8694 0.4200 +2875 8706 0.7130 +2875 8856 0.4630 +2875 8876 0.4460 +2875 8942 0.5320 +2875 8972 0.5680 +2875 9360 0.6380 +2875 9370 0.7280 +2875 9380 0.5770 +2875 9563 0.6940 +2875 9817 0.4470 +2875 9861 0.5530 +2875 9965 0.4600 +2875 9971 0.6340 +2875 10599 0.4550 +2875 10613 0.7040 +2875 10645 0.4420 +2875 10720 0.4680 +2875 10724 0.4320 +2875 10873 0.5940 +2875 10891 0.5170 +2875 10993 0.4350 +2875 11093 0.4470 +2875 22918 0.4720 +2875 23411 0.5100 +2875 25813 0.6950 +2875 26051 0.4150 +2875 26227 0.4900 +2875 26291 0.5770 +2875 29126 0.5180 +2875 29968 0.5340 +2875 50943 0.4350 +2875 51085 0.5350 +2875 51091 0.5580 +2875 51094 0.6130 +2875 51179 0.4260 +2875 51582 0.4710 +2875 51738 0.4350 +2875 53345 0.6140 +2875 54205 0.6000 +2875 54363 0.5030 +2875 54490 0.4670 +2875 54575 0.5720 +2875 54576 0.5740 +2875 54577 0.5840 +2875 54578 0.5860 +2875 54579 0.4730 +2875 54600 0.4980 +2875 54657 0.5960 +2875 54658 0.6190 +2875 54659 0.4850 +2875 55256 0.5460 +2875 55258 0.4390 +2875 55293 0.4380 +2875 55753 0.8340 +2875 56729 0.4790 +2875 56938 0.4450 +2875 56954 0.5310 +2875 57104 0.6340 +2875 57509 0.4110 +2875 57817 0.4790 +2875 57818 0.4810 +2875 59272 0.6730 +2875 64902 0.9290 +2875 79143 0.4470 +2875 79799 0.4620 +2875 79896 0.4380 +2875 80339 0.9290 +2875 84649 0.4490 +2875 84666 0.4900 +2875 84706 0.9210 +2875 84842 0.4240 +2875 84988 0.7310 +2875 92483 0.6930 +2875 92579 0.5070 +2875 113451 0.4710 +2875 114757 0.7060 +2875 114898 0.5130 +2875 116255 0.4360 +2875 124975 0.5070 +2875 132949 0.4680 +2875 137362 0.9780 +2875 137902 0.6210 +2875 151306 0.4180 +2875 160287 0.6880 +2875 162417 0.9400 +2875 255738 0.4330 +2875 257202 0.8020 +2875 282617 0.6240 +2875 283871 0.5230 +2875 345275 0.5390 +2875 493869 0.8140 +2875 574537 0.4650 +2875 728226 0.6020 +2875 729020 0.4310 +2875 100506658 0.4150 +2877 2878 0.9130 +2877 2879 0.9390 +2877 2880 0.9100 +2877 2882 0.9350 +2877 2932 0.5040 +2877 2936 0.9970 +2877 2937 0.9450 +2877 2938 0.8380 +2877 2939 0.8250 +2877 2940 0.7970 +2877 2941 0.8210 +2877 2944 0.8360 +2877 2946 0.8140 +2877 2947 0.7900 +2877 2948 0.7550 +2877 2949 0.7500 +2877 2950 0.8370 +2877 2954 0.4120 +2877 3029 0.5010 +2877 3091 0.5320 +2877 3156 0.4930 +2877 3159 0.4430 +2877 3162 0.8500 +2877 3163 0.5230 +2877 3240 0.5210 +2877 3308 0.6220 +2877 3309 0.4490 +2877 3313 0.5580 +2877 3320 0.4790 +2877 3326 0.4690 +2877 3329 0.4610 +2877 3383 0.5000 +2877 3417 0.4730 +2877 3418 0.4880 +2877 3458 0.5790 +2877 3479 0.4760 +2877 3552 0.5340 +2877 3553 0.7540 +2877 3558 0.4620 +2877 3565 0.4710 +2877 3569 0.7480 +2877 3576 0.5290 +2877 3586 0.6330 +2877 3606 0.4140 +2877 3630 0.7250 +2877 3667 0.4130 +2877 3725 0.5820 +2877 3952 0.5210 +2877 4015 0.4500 +2877 4094 0.4070 +2877 4128 0.5600 +2877 4129 0.5830 +2877 4151 0.5870 +2877 4184 0.5650 +2877 4199 0.4370 +2877 4217 0.4190 +2877 4257 0.7840 +2877 4258 0.8480 +2877 4259 0.7350 +2877 4313 0.4030 +2877 4318 0.5320 +2877 4325 0.4060 +2877 4353 0.7100 +2877 4482 0.4910 +2877 4493 0.6700 +2877 4688 0.4490 +2877 4778 0.4950 +2877 4780 0.8190 +2877 4790 0.5540 +2877 4792 0.4980 +2877 4803 0.5610 +2877 4842 0.5200 +2877 4843 0.5460 +2877 4846 0.6510 +2877 4869 0.4110 +2877 4899 0.4160 +2877 4968 0.4190 +2877 5004 0.4680 +2877 5005 0.4630 +2877 5052 0.7960 +2877 5054 0.4050 +2877 5071 0.4010 +2877 5176 0.4490 +2877 5226 0.5220 +2877 5335 0.4170 +2877 5345 0.4400 +2877 5360 0.4440 +2877 5444 0.7470 +2877 5447 0.4020 +2877 5465 0.5250 +2877 5468 0.5980 +2877 5595 0.4960 +2877 5625 0.4290 +2877 5743 0.6820 +2877 5834 0.4070 +2877 5972 0.4730 +2877 6010 0.4330 +2877 6347 0.5280 +2877 6389 0.4430 +2877 6401 0.4330 +2877 6414 0.8590 +2877 6415 0.7000 +2877 6476 0.4650 +2877 6517 0.4570 +2877 6526 0.4340 +2877 6622 0.4920 +2877 6647 0.8850 +2877 6648 0.9040 +2877 6649 0.7700 +2877 6652 0.4220 +2877 6714 0.4010 +2877 6720 0.4450 +2877 6774 0.4420 +2877 6906 0.4560 +2877 7001 0.7570 +2877 7019 0.4720 +2877 7040 0.5210 +2877 7054 0.4170 +2877 7082 0.4150 +2877 7099 0.5340 +2877 7124 0.7250 +2877 7157 0.8020 +2877 7200 0.4380 +2877 7263 0.5250 +2877 7295 0.9380 +2877 7296 0.9100 +2877 7351 0.5230 +2877 7412 0.4730 +2877 7498 0.8860 +2877 7837 0.6910 +2877 8091 0.4070 +2877 8310 0.4130 +2877 8452 0.4720 +2877 8644 0.4220 +2877 8678 0.4490 +2877 8972 0.4470 +2877 9016 0.5720 +2877 9076 0.4100 +2877 9360 0.4720 +2877 9370 0.5210 +2877 9403 0.5960 +2877 9446 0.8170 +2877 9451 0.4020 +2877 9481 0.5710 +2877 9563 0.8200 +2877 9588 0.9670 +2877 9817 0.7720 +2877 9973 0.5830 +2877 10105 0.5750 +2877 10549 0.5770 +2877 10587 0.8090 +2877 10628 0.4680 +2877 10632 0.4700 +2877 10891 0.9580 +2877 10935 0.6120 +2877 10939 0.4560 +2877 11315 0.5460 +2877 22921 0.4470 +2877 22928 0.6550 +2877 22929 0.4180 +2877 23410 0.5150 +2877 23411 0.6190 +2877 23479 0.5010 +2877 23657 0.4850 +2877 25824 0.5910 +2877 25828 0.6940 +2877 27035 0.6250 +2877 27306 0.8970 +2877 50506 0.6150 +2877 50507 0.6500 +2877 50508 0.4530 +2877 51022 0.5810 +2877 51060 0.9080 +2877 51218 0.5780 +2877 51540 0.4090 +2877 51714 0.7170 +2877 51734 0.8280 +2877 51806 0.4080 +2877 53905 0.6140 +2877 54205 0.7370 +2877 54578 0.5680 +2877 54658 0.4420 +2877 55210 0.4220 +2877 55829 0.6450 +2877 56729 0.4170 +2877 57016 0.6500 +2877 57128 0.4220 +2877 57190 0.7400 +2877 57818 0.4270 +2877 58157 0.4880 +2877 58515 0.6200 +2877 60678 0.4490 +2877 65018 0.4680 +2877 79048 0.5130 +2877 79094 0.9130 +2877 79400 0.5030 +2877 83642 0.5660 +2877 84299 0.5470 +2877 84706 0.6520 +2877 85465 0.6280 +2877 91860 0.4150 +2877 92521 0.4160 +2877 92579 0.4310 +2877 94033 0.4600 +2877 114112 0.8570 +2877 114548 0.4130 +2877 114757 0.6340 +2877 119391 0.7980 +2877 124975 0.7440 +2877 133482 0.6500 +2877 137902 0.6910 +2877 140606 0.5530 +2877 140809 0.6590 +2877 163688 0.4080 +2877 220074 0.5350 +2877 221357 0.7570 +2877 255220 0.4260 +2877 257202 0.9120 +2877 280636 0.5780 +2877 348303 0.5070 +2877 373156 0.4230 +2877 493869 0.9300 +2877 494143 0.9020 +2877 653361 0.6860 +2877 653689 0.7620 +2877 100506658 0.4750 +2878 2879 0.9360 +2878 2880 0.9020 +2878 2882 0.9270 +2878 2932 0.4680 +2878 2936 0.9960 +2878 2937 0.9450 +2878 2938 0.8710 +2878 2939 0.8050 +2878 2940 0.7970 +2878 2941 0.8310 +2878 2944 0.8440 +2878 2946 0.8220 +2878 2947 0.8030 +2878 2948 0.7570 +2878 2949 0.7660 +2878 2950 0.8400 +2878 2954 0.4400 +2878 3029 0.4990 +2878 3043 0.4820 +2878 3091 0.5410 +2878 3156 0.4940 +2878 3162 0.8440 +2878 3163 0.5170 +2878 3240 0.4460 +2878 3308 0.6190 +2878 3309 0.4500 +2878 3313 0.5440 +2878 3315 0.4120 +2878 3320 0.4690 +2878 3326 0.4700 +2878 3329 0.4550 +2878 3340 0.4300 +2878 3383 0.5110 +2878 3417 0.4480 +2878 3418 0.4790 +2878 3458 0.5480 +2878 3479 0.4850 +2878 3552 0.5430 +2878 3553 0.7420 +2878 3558 0.4720 +2878 3565 0.4750 +2878 3569 0.7330 +2878 3576 0.5290 +2878 3586 0.6290 +2878 3606 0.4310 +2878 3630 0.7170 +2878 3667 0.4240 +2878 3725 0.5830 +2878 3952 0.5500 +2878 4015 0.4610 +2878 4023 0.4050 +2878 4057 0.4110 +2878 4128 0.5900 +2878 4129 0.6010 +2878 4151 0.5740 +2878 4184 0.5480 +2878 4199 0.4180 +2878 4217 0.4190 +2878 4256 0.4350 +2878 4257 0.7880 +2878 4258 0.7580 +2878 4259 0.7330 +2878 4313 0.4400 +2878 4318 0.5330 +2878 4325 0.4180 +2878 4353 0.6940 +2878 4482 0.5140 +2878 4493 0.6800 +2878 4688 0.4510 +2878 4778 0.4620 +2878 4780 0.8020 +2878 4790 0.5790 +2878 4792 0.4930 +2878 4803 0.5610 +2878 4842 0.5270 +2878 4843 0.5540 +2878 4846 0.6560 +2878 4968 0.4150 +2878 5004 0.4910 +2878 5005 0.4670 +2878 5052 0.7940 +2878 5054 0.4280 +2878 5176 0.5070 +2878 5226 0.5150 +2878 5345 0.4520 +2878 5360 0.4860 +2878 5444 0.7450 +2878 5447 0.4260 +2878 5465 0.5300 +2878 5468 0.6210 +2878 5595 0.5050 +2878 5617 0.4330 +2878 5625 0.4270 +2878 5743 0.6830 +2878 5972 0.4750 +2878 6347 0.5410 +2878 6401 0.4130 +2878 6414 0.8980 +2878 6415 0.6410 +2878 6476 0.4490 +2878 6517 0.4580 +2878 6622 0.4400 +2878 6647 0.8870 +2878 6648 0.9040 +2878 6649 0.7940 +2878 6652 0.4230 +2878 6720 0.4490 +2878 6774 0.4730 +2878 6906 0.4220 +2878 7001 0.7650 +2878 7019 0.4510 +2878 7040 0.5170 +2878 7054 0.4180 +2878 7099 0.5370 +2878 7124 0.7270 +2878 7157 0.6090 +2878 7200 0.4510 +2878 7263 0.5350 +2878 7295 0.9250 +2878 7296 0.8940 +2878 7351 0.5200 +2878 7412 0.4830 +2878 7498 0.8810 +2878 7827 0.5330 +2878 7837 0.7220 +2878 8452 0.4230 +2878 8522 0.4520 +2878 8678 0.4440 +2878 8972 0.4500 +2878 9016 0.5660 +2878 9360 0.4590 +2878 9370 0.5450 +2878 9403 0.6570 +2878 9446 0.8180 +2878 9481 0.5650 +2878 9563 0.8260 +2878 9588 0.9670 +2878 9817 0.7270 +2878 9973 0.6060 +2878 10105 0.4120 +2878 10152 0.4690 +2878 10413 0.6480 +2878 10549 0.7370 +2878 10587 0.8110 +2878 10628 0.4420 +2878 10632 0.4470 +2878 10891 0.9580 +2878 10935 0.6280 +2878 10939 0.4240 +2878 11315 0.5410 +2878 22852 0.4260 +2878 22921 0.4510 +2878 22928 0.6350 +2878 22929 0.4110 +2878 23410 0.5170 +2878 23411 0.6120 +2878 23479 0.4990 +2878 23657 0.4520 +2878 25824 0.6010 +2878 25828 0.6800 +2878 27035 0.6030 +2878 27306 0.8910 +2878 50506 0.5640 +2878 50507 0.6480 +2878 50508 0.4310 +2878 51022 0.5800 +2878 51060 0.9120 +2878 51218 0.5740 +2878 51540 0.4150 +2878 51714 0.7380 +2878 51734 0.8300 +2878 51806 0.4030 +2878 53905 0.6060 +2878 54205 0.7370 +2878 55829 0.6680 +2878 57016 0.4180 +2878 57190 0.7700 +2878 57817 0.4010 +2878 57818 0.4270 +2878 58157 0.4750 +2878 58515 0.6360 +2878 60678 0.4520 +2878 65018 0.4770 +2878 79048 0.5280 +2878 79094 0.9150 +2878 79400 0.5010 +2878 83642 0.5960 +2878 84299 0.5030 +2878 84706 0.6510 +2878 85465 0.5040 +2878 91860 0.4030 +2878 92521 0.4160 +2878 92579 0.4300 +2878 94033 0.4420 +2878 114112 0.8560 +2878 114294 0.4680 +2878 114548 0.4110 +2878 114757 0.6580 +2878 119391 0.7990 +2878 124975 0.8010 +2878 133482 0.6310 +2878 137902 0.7210 +2878 140606 0.5790 +2878 140809 0.5910 +2878 163688 0.4030 +2878 220074 0.5360 +2878 221357 0.7280 +2878 256158 0.4080 +2878 257202 0.9020 +2878 280636 0.5820 +2878 348303 0.5540 +2878 373156 0.4460 +2878 493869 0.9290 +2878 494143 0.9000 +2878 653361 0.6840 +2878 653689 0.7740 +2878 100506658 0.4400 +2879 2880 0.9380 +2879 2882 0.9210 +2879 2926 0.9640 +2879 2936 0.9800 +2879 2937 0.9440 +2879 2938 0.9410 +2879 2939 0.9320 +2879 2940 0.9310 +2879 2941 0.9380 +2879 2944 0.9380 +2879 2946 0.9340 +2879 2947 0.9270 +2879 2948 0.9250 +2879 2949 0.9400 +2879 2950 0.9450 +2879 3091 0.4340 +2879 3098 0.4100 +2879 3156 0.4100 +2879 3162 0.7160 +2879 3309 0.9520 +2879 3315 0.4320 +2879 3553 0.5040 +2879 3569 0.4630 +2879 3606 0.4200 +2879 3630 0.4100 +2879 3658 0.6130 +2879 3725 0.6050 +2879 4015 0.5130 +2879 4257 0.9210 +2879 4258 0.9120 +2879 4259 0.9380 +2879 4482 0.5130 +2879 4493 0.4180 +2879 4495 0.5020 +2879 4731 0.4460 +2879 4780 0.6900 +2879 4891 0.6260 +2879 5037 0.5700 +2879 5052 0.6360 +2879 5122 0.4750 +2879 5315 0.5030 +2879 5447 0.4700 +2879 5465 0.5170 +2879 5743 0.5720 +2879 6132 0.4570 +2879 6303 0.4320 +2879 6414 0.7350 +2879 6415 0.7060 +2879 6510 0.4800 +2879 6520 0.7410 +2879 6647 0.8270 +2879 6648 0.8140 +2879 6649 0.7130 +2879 6876 0.4570 +2879 7001 0.7020 +2879 7037 0.6660 +2879 7124 0.4360 +2879 7157 0.7300 +2879 7295 0.7640 +2879 7296 0.8190 +2879 7416 0.4900 +2879 7417 0.6740 +2879 7419 0.4410 +2879 7498 0.4340 +2879 7837 0.6040 +2879 8031 0.7060 +2879 8678 0.4650 +2879 8737 0.4940 +2879 8878 0.4150 +2879 9054 0.5280 +2879 9104 0.4310 +2879 9169 0.4080 +2879 9403 0.7460 +2879 9446 0.9450 +2879 9563 0.4630 +2879 9588 0.9730 +2879 9694 0.4410 +2879 9817 0.6580 +2879 10105 0.4990 +2879 10162 0.7250 +2879 10539 0.4050 +2879 10549 0.6200 +2879 10587 0.8030 +2879 10628 0.4140 +2879 10935 0.6600 +2879 11035 0.5200 +2879 11315 0.6330 +2879 22921 0.4630 +2879 22928 0.7350 +2879 22929 0.4520 +2879 23411 0.4360 +2879 23479 0.4550 +2879 23657 0.8240 +2879 25824 0.7420 +2879 25828 0.7030 +2879 27035 0.6950 +2879 27165 0.5070 +2879 27306 0.9410 +2879 30061 0.6080 +2879 50507 0.5060 +2879 51022 0.6770 +2879 51024 0.4180 +2879 51060 0.9060 +2879 51079 0.4160 +2879 51091 0.4820 +2879 51540 0.4460 +2879 51714 0.7320 +2879 51734 0.7010 +2879 54205 0.5930 +2879 54952 0.4110 +2879 55105 0.4350 +2879 55240 0.5740 +2879 55611 0.5260 +2879 55829 0.7280 +2879 55847 0.5910 +2879 55876 0.4050 +2879 56169 0.4740 +2879 57016 0.4600 +2879 57190 0.6650 +2879 57817 0.4450 +2879 58515 0.7100 +2879 60678 0.5610 +2879 79048 0.8340 +2879 79094 0.9550 +2879 79587 0.4750 +2879 79792 0.5440 +2879 80221 0.4700 +2879 81631 0.4500 +2879 83642 0.6750 +2879 84188 0.4650 +2879 84883 0.8170 +2879 85465 0.5890 +2879 114112 0.7810 +2879 118672 0.4490 +2879 119391 0.9460 +2879 121549 0.5180 +2879 124975 0.9150 +2879 126328 0.4140 +2879 137902 0.6010 +2879 140606 0.6570 +2879 140809 0.5420 +2879 150696 0.4050 +2879 197259 0.5880 +2879 221357 0.9170 +2879 257202 0.9380 +2879 280636 0.6790 +2879 284110 0.4480 +2879 348303 0.6290 +2879 373156 0.5520 +2879 493869 0.9290 +2879 494143 0.9130 +2879 494513 0.4160 +2879 653689 0.9250 +2880 2882 0.9230 +2880 2932 0.4710 +2880 2936 0.9980 +2880 2937 0.9430 +2880 2938 0.8110 +2880 2939 0.7940 +2880 2940 0.7920 +2880 2941 0.8040 +2880 2944 0.8310 +2880 2946 0.8050 +2880 2947 0.7800 +2880 2948 0.7370 +2880 2949 0.7440 +2880 2950 0.8150 +2880 3029 0.5010 +2880 3091 0.5310 +2880 3156 0.4940 +2880 3162 0.8420 +2880 3163 0.5150 +2880 3308 0.6180 +2880 3309 0.4460 +2880 3313 0.5580 +2880 3320 0.4680 +2880 3326 0.4680 +2880 3329 0.4660 +2880 3383 0.5010 +2880 3417 0.4460 +2880 3418 0.4800 +2880 3458 0.5490 +2880 3479 0.4730 +2880 3552 0.5460 +2880 3553 0.7430 +2880 3558 0.4750 +2880 3565 0.4810 +2880 3569 0.7320 +2880 3576 0.5200 +2880 3586 0.6280 +2880 3605 0.4380 +2880 3606 0.4030 +2880 3630 0.7220 +2880 3667 0.4120 +2880 3725 0.5770 +2880 3952 0.5400 +2880 4015 0.4480 +2880 4025 0.4110 +2880 4128 0.5470 +2880 4129 0.5810 +2880 4151 0.5880 +2880 4217 0.4160 +2880 4257 0.7600 +2880 4258 0.7490 +2880 4259 0.7160 +2880 4313 0.4240 +2880 4318 0.5190 +2880 4325 0.4080 +2880 4340 0.4280 +2880 4353 0.7160 +2880 4482 0.4840 +2880 4493 0.6710 +2880 4688 0.4350 +2880 4778 0.4630 +2880 4780 0.8050 +2880 4790 0.5510 +2880 4792 0.4910 +2880 4803 0.5640 +2880 4842 0.5480 +2880 4843 0.5360 +2880 4846 0.6560 +2880 4899 0.4030 +2880 4968 0.4030 +2880 5004 0.4540 +2880 5005 0.4530 +2880 5052 0.7710 +2880 5176 0.4690 +2880 5226 0.5040 +2880 5345 0.4270 +2880 5360 0.4370 +2880 5444 0.7450 +2880 5447 0.4020 +2880 5465 0.5160 +2880 5468 0.5930 +2880 5595 0.4950 +2880 5617 0.4300 +2880 5625 0.4280 +2880 5743 0.6810 +2880 5972 0.4790 +2880 6347 0.5200 +2880 6389 0.4430 +2880 6401 0.4220 +2880 6414 0.6450 +2880 6415 0.5940 +2880 6476 0.4660 +2880 6517 0.4570 +2880 6526 0.4220 +2880 6622 0.4400 +2880 6647 0.8830 +2880 6648 0.9020 +2880 6649 0.7640 +2880 6652 0.4250 +2880 6720 0.4340 +2880 6721 0.4680 +2880 6774 0.4640 +2880 6906 0.4290 +2880 7001 0.7500 +2880 7019 0.4510 +2880 7040 0.5160 +2880 7054 0.4200 +2880 7099 0.5260 +2880 7124 0.7280 +2880 7155 0.4420 +2880 7157 0.6030 +2880 7200 0.4370 +2880 7263 0.5160 +2880 7295 0.9090 +2880 7296 0.8660 +2880 7351 0.4940 +2880 7412 0.4750 +2880 7498 0.8840 +2880 7837 0.7030 +2880 8452 0.4240 +2880 8678 0.4440 +2880 8756 0.4560 +2880 8972 0.4660 +2880 9016 0.5730 +2880 9360 0.4610 +2880 9370 0.5380 +2880 9403 0.4500 +2880 9446 0.7930 +2880 9481 0.5750 +2880 9563 0.8280 +2880 9588 0.9670 +2880 9817 0.7270 +2880 9973 0.5680 +2880 10105 0.5720 +2880 10549 0.5530 +2880 10587 0.7580 +2880 10628 0.4070 +2880 10632 0.4520 +2880 10891 0.9570 +2880 10935 0.6000 +2880 10939 0.4570 +2880 11315 0.5300 +2880 11343 0.4330 +2880 22921 0.4340 +2880 22928 0.4110 +2880 23410 0.5150 +2880 23411 0.6110 +2880 23479 0.4990 +2880 23657 0.4380 +2880 25824 0.5800 +2880 25828 0.6540 +2880 27035 0.6000 +2880 27306 0.8890 +2880 50506 0.5540 +2880 50507 0.6310 +2880 50508 0.4390 +2880 51022 0.5460 +2880 51060 0.9100 +2880 51218 0.5710 +2880 51714 0.5990 +2880 51734 0.7450 +2880 51806 0.4070 +2880 53905 0.6030 +2880 54205 0.7380 +2880 55210 0.4220 +2880 55829 0.5150 +2880 57128 0.4220 +2880 57190 0.6670 +2880 57817 0.4070 +2880 57818 0.4750 +2880 58157 0.4920 +2880 65018 0.4690 +2880 79048 0.4590 +2880 79094 0.9090 +2880 79400 0.4770 +2880 81797 0.4420 +2880 84299 0.5590 +2880 84706 0.6540 +2880 91860 0.4080 +2880 92521 0.4200 +2880 92579 0.4350 +2880 94033 0.4460 +2880 114112 0.8020 +2880 114548 0.4180 +2880 114757 0.6230 +2880 119391 0.7910 +2880 124975 0.7310 +2880 133482 0.6350 +2880 137902 0.7030 +2880 138307 0.4850 +2880 140606 0.4030 +2880 140809 0.5420 +2880 140880 0.4320 +2880 163688 0.4080 +2880 203068 0.4090 +2880 220074 0.5430 +2880 221357 0.7270 +2880 221504 0.4380 +2880 257202 0.9020 +2880 392399 0.6330 +2880 493869 0.9270 +2880 494143 0.9030 +2880 653361 0.6830 +2880 653689 0.7550 +2880 100506658 0.4490 +2882 2932 0.4760 +2882 2936 0.9970 +2882 2937 0.9430 +2882 2938 0.8190 +2882 2939 0.8000 +2882 2940 0.8030 +2882 2941 0.8170 +2882 2944 0.8350 +2882 2946 0.8060 +2882 2947 0.7810 +2882 2948 0.7290 +2882 2949 0.7490 +2882 2950 0.8360 +2882 3029 0.5010 +2882 3091 0.5360 +2882 3098 0.4280 +2882 3156 0.4930 +2882 3162 0.8410 +2882 3163 0.5160 +2882 3308 0.6180 +2882 3309 0.6040 +2882 3313 0.6830 +2882 3320 0.4700 +2882 3326 0.4700 +2882 3329 0.4670 +2882 3383 0.5010 +2882 3417 0.4460 +2882 3418 0.4800 +2882 3458 0.5580 +2882 3479 0.4770 +2882 3552 0.5270 +2882 3553 0.7550 +2882 3558 0.4890 +2882 3565 0.4680 +2882 3569 0.7500 +2882 3576 0.5190 +2882 3586 0.6200 +2882 3606 0.4060 +2882 3630 0.7260 +2882 3667 0.4520 +2882 3725 0.5770 +2882 3952 0.5370 +2882 4015 0.4770 +2882 4057 0.4330 +2882 4128 0.5470 +2882 4129 0.5810 +2882 4151 0.5880 +2882 4199 0.4450 +2882 4217 0.4180 +2882 4256 0.4050 +2882 4257 0.7640 +2882 4258 0.7470 +2882 4259 0.7660 +2882 4313 0.4390 +2882 4318 0.5240 +2882 4325 0.4070 +2882 4353 0.7150 +2882 4482 0.4950 +2882 4493 0.6720 +2882 4688 0.4470 +2882 4778 0.4720 +2882 4780 0.8050 +2882 4790 0.5520 +2882 4792 0.4920 +2882 4803 0.5640 +2882 4842 0.5210 +2882 4843 0.5210 +2882 4846 0.6510 +2882 4899 0.4030 +2882 4968 0.4020 +2882 5004 0.4550 +2882 5005 0.4520 +2882 5034 0.7140 +2882 5052 0.7920 +2882 5071 0.4080 +2882 5176 0.4870 +2882 5226 0.4980 +2882 5335 0.4210 +2882 5345 0.4290 +2882 5360 0.4480 +2882 5444 0.7430 +2882 5447 0.4240 +2882 5465 0.5200 +2882 5468 0.5930 +2882 5595 0.5070 +2882 5610 0.4430 +2882 5617 0.4590 +2882 5625 0.4380 +2882 5743 0.6790 +2882 5972 0.4760 +2882 6347 0.5230 +2882 6389 0.4470 +2882 6414 0.6800 +2882 6415 0.6420 +2882 6449 0.5820 +2882 6476 0.4530 +2882 6517 0.4570 +2882 6526 0.4340 +2882 6622 0.4400 +2882 6647 0.8910 +2882 6648 0.9070 +2882 6649 0.7800 +2882 6652 0.4250 +2882 6720 0.4350 +2882 6774 0.4400 +2882 6906 0.4350 +2882 7001 0.7750 +2882 7019 0.4800 +2882 7040 0.5390 +2882 7054 0.4180 +2882 7099 0.5260 +2882 7124 0.7230 +2882 7157 0.6060 +2882 7200 0.4370 +2882 7263 0.5350 +2882 7295 0.9160 +2882 7296 0.8830 +2882 7351 0.5230 +2882 7412 0.5170 +2882 7498 0.8830 +2882 7837 0.7170 +2882 8452 0.4280 +2882 8678 0.4580 +2882 8972 0.4540 +2882 9016 0.5750 +2882 9360 0.4700 +2882 9370 0.5210 +2882 9403 0.5320 +2882 9446 0.8060 +2882 9451 0.4090 +2882 9481 0.5810 +2882 9563 0.8200 +2882 9588 0.9700 +2882 9601 0.4690 +2882 9817 0.7410 +2882 9927 0.4330 +2882 9973 0.5950 +2882 10105 0.5810 +2882 10549 0.7050 +2882 10587 0.7870 +2882 10628 0.4670 +2882 10632 0.4780 +2882 10891 0.9570 +2882 10935 0.6270 +2882 10939 0.4640 +2882 11315 0.5620 +2882 22921 0.4500 +2882 22928 0.5460 +2882 23410 0.5380 +2882 23411 0.6390 +2882 23479 0.5110 +2882 23657 0.4510 +2882 25824 0.6600 +2882 25828 0.6880 +2882 27035 0.5990 +2882 27306 0.8930 +2882 30001 0.8450 +2882 50506 0.5510 +2882 50507 0.6430 +2882 50508 0.4250 +2882 51022 0.5550 +2882 51060 0.9170 +2882 51218 0.5800 +2882 51714 0.6840 +2882 51734 0.8000 +2882 51806 0.4210 +2882 53905 0.6020 +2882 54205 0.7630 +2882 55111 0.4710 +2882 55210 0.4220 +2882 55829 0.5730 +2882 57016 0.4330 +2882 57128 0.5500 +2882 57190 0.7210 +2882 57818 0.4270 +2882 58157 0.4880 +2882 58515 0.5280 +2882 60678 0.4200 +2882 65018 0.4690 +2882 79048 0.4860 +2882 79094 0.9100 +2882 79400 0.4760 +2882 83642 0.5350 +2882 84299 0.5660 +2882 84706 0.6750 +2882 85465 0.4050 +2882 91860 0.4080 +2882 92521 0.4180 +2882 92579 0.4330 +2882 94033 0.4800 +2882 114112 0.8430 +2882 114548 0.4120 +2882 114757 0.6480 +2882 119391 0.8000 +2882 124975 0.7410 +2882 133482 0.6320 +2882 137902 0.7120 +2882 140606 0.5200 +2882 140809 0.6140 +2882 163688 0.4080 +2882 220074 0.5420 +2882 221357 0.7390 +2882 257202 0.9210 +2882 280636 0.5170 +2882 348303 0.5340 +2882 373156 0.4960 +2882 493869 0.9170 +2882 494143 0.9060 +2882 653361 0.6830 +2882 653689 0.7750 +2882 100506658 0.4490 +2885 2886 0.7670 +2885 2887 0.5220 +2885 2888 0.4980 +2885 2889 0.9830 +2885 2909 0.7900 +2885 2932 0.5360 +2885 3002 0.5710 +2885 3055 0.7530 +2885 3059 0.7820 +2885 3064 0.8520 +2885 3071 0.5260 +2885 3082 0.8380 +2885 3084 0.7840 +2885 3092 0.5770 +2885 3093 0.5140 +2885 3133 0.6010 +2885 3190 0.6940 +2885 3265 0.9380 +2885 3267 0.5420 +2885 3304 0.4120 +2885 3309 0.4340 +2885 3312 0.6930 +2885 3320 0.8350 +2885 3326 0.6580 +2885 3479 0.7620 +2885 3480 0.9850 +2885 3481 0.6600 +2885 3558 0.6430 +2885 3559 0.6900 +2885 3560 0.6430 +2885 3561 0.5560 +2885 3562 0.6220 +2885 3563 0.7610 +2885 3567 0.4990 +2885 3568 0.4970 +2885 3569 0.4480 +2885 3572 0.9560 +2885 3600 0.6330 +2885 3601 0.5670 +2885 3611 0.4850 +2885 3630 0.8550 +2885 3635 0.9770 +2885 3636 0.9110 +2885 3643 0.9850 +2885 3645 0.9300 +2885 3655 0.4630 +2885 3667 0.9990 +2885 3674 0.6790 +2885 3690 0.6370 +2885 3691 0.5080 +2885 3702 0.9760 +2885 3708 0.6100 +2885 3709 0.5210 +2885 3710 0.7400 +2885 3716 0.8990 +2885 3717 0.9870 +2885 3718 0.6320 +2885 3725 0.5860 +2885 3791 0.9700 +2885 3799 0.5680 +2885 3815 0.9980 +2885 3822 0.5780 +2885 3824 0.5980 +2885 3831 0.5520 +2885 3836 0.4130 +2885 3845 0.9310 +2885 3852 0.4530 +2885 3875 0.4790 +2885 3937 0.9990 +2885 3949 0.4990 +2885 3958 0.4760 +2885 3960 0.4810 +2885 3977 0.9160 +2885 4008 0.5430 +2885 4036 0.5420 +2885 4058 0.5640 +2885 4063 0.4720 +2885 4067 0.8660 +2885 4087 0.5390 +2885 4088 0.5820 +2885 4133 0.6590 +2885 4168 0.6120 +2885 4214 0.8850 +2885 4233 0.9990 +2885 4254 0.5940 +2885 4313 0.5110 +2885 4318 0.4110 +2885 4478 0.8090 +2885 4486 0.7510 +2885 4609 0.7320 +2885 4684 0.6700 +2885 4690 0.9930 +2885 4734 0.5440 +2885 4745 0.4310 +2885 4763 0.5560 +2885 4771 0.5310 +2885 4790 0.6050 +2885 4803 0.6970 +2885 4804 0.7620 +2885 4820 0.5870 +2885 4842 0.4080 +2885 4846 0.5260 +2885 4868 0.7930 +2885 4869 0.9190 +2885 4893 0.8150 +2885 4902 0.4580 +2885 4908 0.5750 +2885 4909 0.5720 +2885 4914 0.9930 +2885 4915 0.9690 +2885 5058 0.8970 +2885 5062 0.6390 +2885 5063 0.4340 +2885 5148 0.4520 +2885 5154 0.5370 +2885 5155 0.5260 +2885 5156 0.9740 +2885 5159 0.9990 +2885 5170 0.7020 +2885 5174 0.5060 +2885 5287 0.8430 +2885 5289 0.5750 +2885 5290 0.9240 +2885 5291 0.7750 +2885 5293 0.6120 +2885 5294 0.7790 +2885 5295 0.9980 +2885 5296 0.7890 +2885 5327 0.5360 +2885 5335 0.9990 +2885 5336 0.8520 +2885 5338 0.7950 +2885 5339 0.5760 +2885 5341 0.7330 +2885 5364 0.5850 +2885 5478 0.6120 +2885 5495 0.6030 +2885 5499 0.4520 +2885 5501 0.4040 +2885 5506 0.4550 +2885 5515 0.6100 +2885 5516 0.5530 +2885 5518 0.5460 +2885 5520 0.4400 +2885 5564 0.5730 +2885 5566 0.5640 +2885 5567 0.5590 +2885 5568 0.5570 +2885 5573 0.7560 +2885 5578 0.6650 +2885 5580 0.6050 +2885 5594 0.9200 +2885 5595 0.8680 +2885 5598 0.4310 +2885 5599 0.4470 +2885 5601 0.6200 +2885 5604 0.8140 +2885 5605 0.6950 +2885 5606 0.4110 +2885 5607 0.4420 +2885 5621 0.5030 +2885 5623 0.4450 +2885 5663 0.9370 +2885 5664 0.4840 +2885 5728 0.6650 +2885 5747 0.9990 +2885 5753 0.4790 +2885 5770 0.9150 +2885 5774 0.5580 +2885 5777 0.9640 +2885 5781 0.9990 +2885 5782 0.9400 +2885 5783 0.4940 +2885 5788 0.4660 +2885 5791 0.8220 +2885 5795 0.5290 +2885 5796 0.5460 +2885 5805 0.4470 +2885 5817 0.4080 +2885 5829 0.9640 +2885 5867 0.5150 +2885 5868 0.6060 +2885 5872 0.5260 +2885 5877 0.9950 +2885 5879 0.6740 +2885 5880 0.6110 +2885 5894 0.7970 +2885 5898 0.5130 +2885 5899 0.4890 +2885 5900 0.4250 +2885 5903 0.5530 +2885 5906 0.6870 +2885 5908 0.6460 +2885 5921 0.6410 +2885 5923 0.7150 +2885 5924 0.6670 +2885 5925 0.6230 +2885 5962 0.6240 +2885 5979 0.9520 +2885 6014 0.5220 +2885 6093 0.4250 +2885 6098 0.5280 +2885 6193 0.4280 +2885 6195 0.4620 +2885 6197 0.4080 +2885 6198 0.4820 +2885 6199 0.5380 +2885 6205 0.4740 +2885 6228 0.4160 +2885 6233 0.6390 +2885 6237 0.6080 +2885 6238 0.5110 +2885 6279 0.9130 +2885 6300 0.5660 +2885 6386 0.5010 +2885 6402 0.4370 +2885 6452 0.6410 +2885 6453 0.4710 +2885 6455 0.5830 +2885 6456 0.7070 +2885 6457 0.5800 +2885 6461 0.6310 +2885 6464 0.9990 +2885 6504 0.4990 +2885 6636 0.4710 +2885 6640 0.6450 +2885 6651 0.4070 +2885 6654 0.9990 +2885 6655 0.9990 +2885 6709 0.4790 +2885 6711 0.4870 +2885 6712 0.4030 +2885 6714 0.9990 +2885 6772 0.8290 +2885 6774 0.8920 +2885 6776 0.8540 +2885 6777 0.8520 +2885 6801 0.5890 +2885 6844 0.5690 +2885 6845 0.5480 +2885 6850 0.9860 +2885 6853 0.7340 +2885 6855 0.8350 +2885 7006 0.6470 +2885 7010 0.8530 +2885 7039 0.7680 +2885 7040 0.5430 +2885 7046 0.8470 +2885 7048 0.7950 +2885 7088 0.5390 +2885 7089 0.5180 +2885 7094 0.7120 +2885 7124 0.4420 +2885 7132 0.8550 +2885 7157 0.7660 +2885 7170 0.5620 +2885 7171 0.5720 +2885 7175 0.6330 +2885 7251 0.5550 +2885 7294 0.7950 +2885 7297 0.8230 +2885 7301 0.4020 +2885 7305 0.7090 +2885 7311 0.6110 +2885 7314 0.5650 +2885 7316 0.6620 +2885 7402 0.4980 +2885 7408 0.4750 +2885 7409 0.9990 +2885 7410 0.9370 +2885 7414 0.7950 +2885 7415 0.5820 +2885 7430 0.7980 +2885 7450 0.5720 +2885 7454 0.9950 +2885 7456 0.9920 +2885 7462 0.9660 +2885 7525 0.8010 +2885 7529 0.7030 +2885 7531 0.4790 +2885 7532 0.6820 +2885 7534 0.5890 +2885 7535 0.9920 +2885 7750 0.5690 +2885 7827 0.6390 +2885 7837 0.4120 +2885 7916 0.6640 +2885 7984 0.8060 +2885 8027 0.4850 +2885 8038 0.7540 +2885 8074 0.5280 +2885 8301 0.5520 +2885 8440 0.4300 +2885 8471 0.9960 +2885 8491 0.7710 +2885 8496 0.5000 +2885 8503 0.6550 +2885 8533 0.9140 +2885 8563 0.5170 +2885 8600 0.4210 +2885 8631 0.8500 +2885 8643 0.4080 +2885 8651 0.7520 +2885 8655 0.4980 +2885 8660 0.9990 +2885 8661 0.6740 +2885 8673 0.5270 +2885 8751 0.8950 +2885 8764 0.6810 +2885 8766 0.6320 +2885 8817 0.7840 +2885 8822 0.7450 +2885 8823 0.7710 +2885 8826 0.6290 +2885 8844 0.5290 +2885 8853 0.6690 +2885 8867 0.9500 +2885 8871 0.7890 +2885 8874 0.5930 +2885 8878 0.5590 +2885 8936 0.6270 +2885 8976 0.9990 +2885 9019 0.4730 +2885 9021 0.4160 +2885 9046 0.7240 +2885 9047 0.4060 +2885 9048 0.4510 +2885 9050 0.5310 +2885 9051 0.4350 +2885 9101 0.4180 +2885 9146 0.6230 +2885 9181 0.4770 +2885 9185 0.8490 +2885 9318 0.9020 +2885 9321 0.5210 +2885 9341 0.5460 +2885 9365 0.4890 +2885 9402 0.9930 +2885 9451 0.6830 +2885 9473 0.5730 +2885 9530 0.5420 +2885 9531 0.4550 +2885 9542 0.5010 +2885 9564 0.9820 +2885 9644 0.9630 +2885 9648 0.5190 +2885 9649 0.7250 +2885 9712 0.6370 +2885 9732 0.7930 +2885 9840 0.9390 +2885 9846 0.9990 +2885 9873 0.4640 +2885 9883 0.5610 +2885 9892 0.5560 +2885 9901 0.5110 +2885 9965 0.5340 +2885 10006 0.7300 +2885 10019 0.9720 +2885 10040 0.7420 +2885 10048 0.4840 +2885 10092 0.6180 +2885 10093 0.5810 +2885 10094 0.6140 +2885 10095 0.5740 +2885 10096 0.6110 +2885 10097 0.8230 +2885 10109 0.6400 +2885 10125 0.8490 +2885 10152 0.5290 +2885 10163 0.6400 +2885 10188 0.9830 +2885 10190 0.4560 +2885 10235 0.4510 +2885 10252 0.9780 +2885 10253 0.9870 +2885 10254 0.4990 +2885 10342 0.7100 +2885 10451 0.9500 +2885 10458 0.5810 +2885 10461 0.5530 +2885 10552 0.5560 +2885 10603 0.9550 +2885 10617 0.9510 +2885 10657 0.9390 +2885 10718 0.4780 +2885 10750 0.9430 +2885 10787 0.6260 +2885 10810 0.5430 +2885 10817 0.9360 +2885 10818 0.9990 +2885 10870 0.9950 +2885 10920 0.9000 +2885 10980 0.9040 +2885 10987 0.9170 +2885 11060 0.4110 +2885 11122 0.4250 +2885 11140 0.5830 +2885 11160 0.5000 +2885 11183 0.9260 +2885 11184 0.9580 +2885 22872 0.5090 +2885 22905 0.6260 +2885 22914 0.6670 +2885 23163 0.6260 +2885 23191 0.5160 +2885 23308 0.5540 +2885 23336 0.5150 +2885 23371 0.5070 +2885 23552 0.4990 +2885 23560 0.4790 +2885 23607 0.5620 +2885 23624 0.4700 +2885 25759 0.9570 +2885 25780 0.5070 +2885 25930 0.8200 +2885 25970 0.9910 +2885 26018 0.5220 +2885 26052 0.7010 +2885 26119 0.5200 +2885 26153 0.8310 +2885 26191 0.6850 +2885 26281 0.7700 +2885 26469 0.4250 +2885 26499 0.7350 +2885 26999 0.6290 +2885 27006 0.7590 +2885 27040 0.9990 +2885 27071 0.6160 +2885 27185 0.6040 +2885 27436 0.7450 +2885 28964 0.5120 +2885 29119 0.4260 +2885 29760 0.9990 +2885 29851 0.7150 +2885 29924 0.8530 +2885 29967 0.4100 +2885 29978 0.6240 +2885 30011 0.9560 +2885 30837 0.5470 +2885 30849 0.5400 +2885 50618 0.6820 +2885 50807 0.8430 +2885 50813 0.9000 +2885 50852 0.6460 +2885 51052 0.5970 +2885 51100 0.5060 +2885 51138 0.9030 +2885 51332 0.4060 +2885 51429 0.6120 +2885 51517 0.8320 +2885 51726 0.4790 +2885 51744 0.4040 +2885 51806 0.5890 +2885 53335 0.5030 +2885 53347 0.4080 +2885 53358 0.9870 +2885 53916 0.4380 +2885 54106 0.5620 +2885 54206 0.8400 +2885 54209 0.5700 +2885 54518 0.6150 +2885 54900 0.8470 +2885 54923 0.8110 +2885 55103 0.6310 +2885 55243 0.8750 +2885 55824 0.7390 +2885 55845 0.6080 +2885 55914 0.7490 +2885 57154 0.4230 +2885 57448 0.5660 +2885 57489 0.4440 +2885 57731 0.4040 +2885 58480 0.8490 +2885 58513 0.8940 +2885 63916 0.5450 +2885 64096 0.4250 +2885 64132 0.9180 +2885 64708 0.9010 +2885 64750 0.4150 +2885 64762 0.9750 +2885 64854 0.4350 +2885 79033 0.7030 +2885 79594 0.4300 +2885 79705 0.8840 +2885 79720 0.4570 +2885 79778 0.4830 +2885 79834 0.6000 +2885 79930 0.8620 +2885 80005 0.5880 +2885 80304 0.4990 +2885 80306 0.7450 +2885 81848 0.6530 +2885 83660 0.4370 +2885 83737 0.4010 +2885 84063 0.5580 +2885 84251 0.7430 +2885 84271 0.6870 +2885 84623 0.5210 +2885 84955 0.6220 +2885 84959 0.8410 +2885 85021 0.5420 +2885 85440 0.5550 +2885 91860 0.5860 +2885 94134 0.4300 +2885 112574 0.5920 +2885 115727 0.4960 +2885 116985 0.7420 +2885 118788 0.7870 +2885 122809 0.6280 +2885 123169 0.4570 +2885 128954 0.5280 +2885 133482 0.7220 +2885 137902 0.4100 +2885 139716 0.9750 +2885 140885 0.8860 +2885 145957 0.5040 +2885 146433 0.5310 +2885 147179 0.8620 +2885 150678 0.9000 +2885 150946 0.8160 +2885 151888 0.7800 +2885 152831 0.5160 +2885 163688 0.5850 +2885 171177 0.5190 +2885 196463 0.4660 +2885 200958 0.6020 +2885 201633 0.7370 +2885 202309 0.6940 +2885 255324 0.5430 +2885 259215 0.6070 +2885 260425 0.4420 +2885 285590 0.4260 +2885 387357 0.9780 +2885 388325 0.6240 +2885 388512 0.4640 +2885 390714 0.4180 +2885 399687 0.5630 +2885 399694 0.9680 +2885 644150 0.8920 +2885 102723796 0.4020 +2886 2888 0.4920 +2886 3002 0.6830 +2886 3084 0.5870 +2886 3169 0.5050 +2886 3170 0.4050 +2886 3643 0.5380 +2886 3815 0.8860 +2886 3845 0.6140 +2886 3872 0.4160 +2886 4076 0.4070 +2886 4254 0.5390 +2886 4320 0.4890 +2886 4605 0.5500 +2886 4690 0.5880 +2886 4838 0.4060 +2886 4851 0.4120 +2886 4902 0.5590 +2886 4914 0.5340 +2886 5154 0.5010 +2886 5155 0.5220 +2886 5156 0.5430 +2886 5159 0.8490 +2886 5216 0.4430 +2886 5230 0.6540 +2886 5241 0.5090 +2886 5341 0.4230 +2886 5623 0.5350 +2886 5709 0.6840 +2886 5747 0.8530 +2886 5781 0.6220 +2886 5829 0.5050 +2886 5921 0.5500 +2886 5979 0.8110 +2886 6279 0.4630 +2886 6464 0.9110 +2886 6714 0.8160 +2886 6774 0.5600 +2886 6776 0.4130 +2886 6790 0.4180 +2886 7010 0.6040 +2886 7044 0.4220 +2886 7094 0.4010 +2886 7408 0.4900 +2886 7414 0.4550 +2886 8433 0.4630 +2886 8557 0.5460 +2886 9048 0.5350 +2886 9333 0.5320 +2886 9542 0.5470 +2886 9564 0.4260 +2886 9989 0.4890 +2886 10948 0.8580 +2886 11055 0.6690 +2886 22806 0.6390 +2886 23242 0.4090 +2886 26499 0.4510 +2886 27289 0.8930 +2886 51806 0.5770 +2886 54900 0.8350 +2886 55876 0.4360 +2886 55914 0.4520 +2886 57758 0.6880 +2886 57819 0.4160 +2886 64096 0.5000 +2886 64599 0.6270 +2886 80351 0.4980 +2886 84152 0.4650 +2886 84299 0.7600 +2886 91860 0.5580 +2886 93210 0.7940 +2886 124626 0.7300 +2886 163688 0.5580 +2886 197335 0.4490 +2886 259215 0.8810 +2886 284323 0.4110 +2886 345456 0.4480 +2886 375189 0.4480 +2887 3055 0.4640 +2887 3479 0.9770 +2887 3480 0.9960 +2887 3481 0.8650 +2887 3482 0.6500 +2887 3630 0.9450 +2887 3643 0.9830 +2887 3667 0.9200 +2887 3717 0.4260 +2887 3784 0.4880 +2887 3791 0.5960 +2887 3815 0.7930 +2887 4193 0.4340 +2887 4232 0.9060 +2887 4254 0.5350 +2887 4690 0.4760 +2887 4692 0.5950 +2887 4734 0.9760 +2887 4826 0.6010 +2887 4902 0.5290 +2887 5002 0.4560 +2887 5159 0.6100 +2887 5178 0.7620 +2887 5216 0.5120 +2887 5230 0.5550 +2887 5290 0.8380 +2887 5295 0.9480 +2887 5325 0.8230 +2887 5341 0.4310 +2887 5604 0.7690 +2887 5617 0.4030 +2887 5623 0.5000 +2887 5894 0.6030 +2887 5921 0.4830 +2887 5923 0.4860 +2887 5979 0.9190 +2887 6009 0.4250 +2887 6198 0.5420 +2887 6199 0.4310 +2887 6446 0.4070 +2887 6464 0.6040 +2887 6638 0.6990 +2887 6714 0.7770 +2887 6744 0.4300 +2887 6774 0.4420 +2887 6776 0.4190 +2887 6777 0.4190 +2887 6850 0.4450 +2887 7249 0.4020 +2887 7262 0.5900 +2887 7337 0.4430 +2887 7408 0.5150 +2887 7531 0.4700 +2887 7534 0.4620 +2887 8503 0.4510 +2887 8660 0.8260 +2887 8788 0.7470 +2887 8894 0.5040 +2887 8910 0.5700 +2887 9048 0.4990 +2887 9077 0.4130 +2887 9125 0.4010 +2887 9342 0.4220 +2887 9402 0.4730 +2887 9463 0.4560 +2887 9989 0.4350 +2887 10603 0.5200 +2887 10891 0.4890 +2887 10904 0.5780 +2887 11055 0.6150 +2887 22941 0.5700 +2887 23089 0.7720 +2887 23242 0.8190 +2887 23327 0.6990 +2887 23619 0.5530 +2887 26058 0.9850 +2887 26499 0.4330 +2887 26958 0.7750 +2887 51200 0.4440 +2887 51305 0.4910 +2887 51666 0.5890 +2887 51806 0.4650 +2887 54551 0.4870 +2887 55089 0.4180 +2887 55607 0.4550 +2887 57520 0.4230 +2887 57521 0.4640 +2887 57683 0.4640 +2887 64096 0.4990 +2887 64599 0.9730 +2887 79109 0.4660 +2887 91860 0.4650 +2887 114960 0.4620 +2887 124626 0.5610 +2887 163688 0.4650 +2887 197335 0.4450 +2887 253260 0.4600 +2887 266812 0.5490 +2887 345456 0.5580 +2887 346171 0.7240 +2887 375189 0.5590 +2887 388015 0.5070 +2887 100101490 0.4460 +2888 3055 0.4560 +2888 3265 0.9180 +2888 3479 0.5430 +2888 3480 0.5870 +2888 3630 0.4690 +2888 3643 0.9960 +2888 3667 0.5210 +2888 3694 0.4520 +2888 4012 0.4450 +2888 4065 0.4170 +2888 4734 0.5960 +2888 4893 0.4080 +2888 5156 0.4380 +2888 5184 0.4250 +2888 5216 0.4430 +2888 5230 0.6230 +2888 5341 0.4450 +2888 5590 0.6430 +2888 5770 0.4180 +2888 5868 0.4260 +2888 5921 0.4610 +2888 6464 0.5910 +2888 6774 0.4580 +2888 7010 0.6020 +2888 7013 0.4750 +2888 7408 0.4680 +2888 8658 0.7570 +2888 9559 0.4120 +2888 9989 0.4910 +2888 10144 0.4540 +2888 10239 0.5710 +2888 10363 0.5900 +2888 10370 0.4230 +2888 10817 0.5660 +2888 10818 0.5190 +2888 10891 0.4310 +2888 22837 0.7280 +2888 26499 0.4500 +2888 51806 0.4780 +2888 54622 0.5590 +2888 54887 0.4450 +2888 55137 0.4550 +2888 56999 0.4470 +2888 64599 0.6270 +2888 79068 0.4370 +2888 79722 0.6120 +2888 80351 0.8630 +2888 84870 0.4550 +2888 85456 0.4670 +2888 91860 0.4820 +2888 116985 0.4850 +2888 127018 0.6430 +2888 163688 0.4780 +2888 197335 0.4450 +2888 345456 0.4480 +2888 375189 0.4490 +2888 100526664 0.4170 +2889 3055 0.7610 +2889 3075 0.6200 +2889 3078 0.5910 +2889 3080 0.5710 +2889 3082 0.5500 +2889 3265 0.6940 +2889 3630 0.5170 +2889 3636 0.4150 +2889 3667 0.5270 +2889 3702 0.4780 +2889 3717 0.5970 +2889 3845 0.7260 +2889 4043 0.5430 +2889 4067 0.6180 +2889 4151 0.4320 +2889 4179 0.5060 +2889 4209 0.5350 +2889 4233 0.6000 +2889 4355 0.4210 +2889 4690 0.6330 +2889 4739 0.5850 +2889 4763 0.4540 +2889 4803 0.7440 +2889 4893 0.6630 +2889 4914 0.7520 +2889 5142 0.4100 +2889 5154 0.5070 +2889 5155 0.5190 +2889 5156 0.5490 +2889 5159 0.7430 +2889 5199 0.5110 +2889 5335 0.5550 +2889 5468 0.5540 +2889 5747 0.5940 +2889 5782 0.4580 +2889 5829 0.8160 +2889 5877 0.8070 +2889 5881 0.6120 +2889 5898 0.4340 +2889 5906 0.9890 +2889 5908 0.9500 +2889 5909 0.5470 +2889 5911 0.7280 +2889 5912 0.7930 +2889 6237 0.5520 +2889 6464 0.7920 +2889 6494 0.4020 +2889 6517 0.6640 +2889 6654 0.7530 +2889 6714 0.8070 +2889 7094 0.4120 +2889 7249 0.4110 +2889 7294 0.4520 +2889 7409 0.6970 +2889 7410 0.4210 +2889 7529 0.5640 +2889 7535 0.5500 +2889 7804 0.4400 +2889 8218 0.4810 +2889 8412 0.4120 +2889 8470 0.4450 +2889 8526 0.4350 +2889 8660 0.5710 +2889 9402 0.4440 +2889 9467 0.4590 +2889 9564 0.9970 +2889 9732 0.4200 +2889 9846 0.5270 +2889 9945 0.4380 +2889 10163 0.7280 +2889 10580 0.5830 +2889 10750 0.4720 +2889 10818 0.8930 +2889 10877 0.4490 +2889 10878 0.5710 +2889 11336 0.6570 +2889 23265 0.7090 +2889 23268 0.4450 +2889 23433 0.9850 +2889 23552 0.5850 +2889 51429 0.4110 +2889 51438 0.4430 +2889 54518 0.4560 +2889 56731 0.4620 +2889 57498 0.5300 +2889 57602 0.4140 +2889 60412 0.6520 +2889 79724 0.4390 +2889 81494 0.8060 +2890 2891 0.9990 +2890 2892 0.9990 +2890 2893 0.9970 +2890 2894 0.4760 +2890 2895 0.8350 +2890 2897 0.5210 +2890 2898 0.7510 +2890 2899 0.8220 +2890 2900 0.7520 +2890 2901 0.5330 +2890 2902 0.9070 +2890 2903 0.9260 +2890 2904 0.9340 +2890 2905 0.8290 +2890 2906 0.8160 +2890 2911 0.8490 +2890 2912 0.9660 +2890 2913 0.8570 +2890 2914 0.7420 +2890 2915 0.9160 +2890 2916 0.6930 +2890 2917 0.7330 +2890 2918 0.5920 +2890 2932 0.4390 +2890 2936 0.8170 +2890 3061 0.4380 +2890 3178 0.4290 +2890 3350 0.4730 +2890 3351 0.5630 +2890 3356 0.4810 +2890 3359 0.8140 +2890 3459 0.4750 +2890 3579 0.6550 +2890 3735 0.5000 +2890 3736 0.4760 +2890 3739 0.5290 +2890 3751 0.4910 +2890 3785 0.4270 +2890 3798 0.8630 +2890 3799 0.8420 +2890 3800 0.8710 +2890 3998 0.5110 +2890 4067 0.9070 +2890 4131 0.5570 +2890 4133 0.5630 +2890 4137 0.4650 +2890 4193 0.5370 +2890 4204 0.4640 +2890 4356 0.4870 +2890 4644 0.8810 +2890 4646 0.5500 +2890 4734 0.6780 +2890 4747 0.6610 +2890 4884 0.6730 +2890 4885 0.6900 +2890 4905 0.6730 +2890 4915 0.6670 +2890 4983 0.4780 +2890 5173 0.6160 +2890 5265 0.5560 +2890 5367 0.4530 +2890 5499 0.9380 +2890 5500 0.9120 +2890 5501 0.9080 +2890 5566 0.9700 +2890 5567 0.9610 +2890 5568 0.9600 +2890 5578 0.7060 +2890 5579 0.4860 +2890 5582 0.6580 +2890 5593 0.6610 +2890 5789 0.5240 +2890 5802 0.5850 +2890 5816 0.6340 +2890 5867 0.6130 +2890 5999 0.4230 +2890 6198 0.5370 +2890 6295 0.5060 +2890 6318 0.4310 +2890 6323 0.4070 +2890 6386 0.4010 +2890 6396 0.4990 +2890 6416 0.4020 +2890 6505 0.5340 +2890 6506 0.6870 +2890 6507 0.6350 +2890 6511 0.4630 +2890 6517 0.4750 +2890 6529 0.4790 +2890 6530 0.4450 +2890 6531 0.4800 +2890 6616 0.7310 +2890 6750 0.4200 +2890 6811 0.4990 +2890 6812 0.5170 +2890 6844 0.5270 +2890 6853 0.8180 +2890 6854 0.7540 +2890 6855 0.8410 +2890 6857 0.6490 +2890 7039 0.5210 +2890 7054 0.4820 +2890 7082 0.5660 +2890 7102 0.4760 +2890 7280 0.4250 +2890 7337 0.5920 +2890 7837 0.5220 +2890 8087 0.4310 +2890 8224 0.8130 +2890 8495 0.4700 +2890 8496 0.4760 +2890 8500 0.6210 +2890 8541 0.4220 +2890 8572 0.4350 +2890 8615 0.4990 +2890 8766 0.6650 +2890 8774 0.4990 +2890 8775 0.5350 +2890 8831 0.7930 +2890 8997 0.7880 +2890 9117 0.5020 +2890 9118 0.5790 +2890 9177 0.6000 +2890 9211 0.4900 +2890 9228 0.4270 +2890 9229 0.8520 +2890 9369 0.4040 +2890 9378 0.6000 +2890 9379 0.5380 +2890 9419 0.4970 +2890 9456 0.8730 +2890 9463 0.9520 +2890 9495 0.8380 +2890 9513 0.6060 +2890 9554 0.4990 +2890 9568 0.5450 +2890 9570 0.4990 +2890 9578 0.4310 +2890 9632 0.5650 +2890 9863 0.4080 +2890 9871 0.5260 +2890 9900 0.4900 +2890 9919 0.4990 +2890 10113 0.4990 +2890 10175 0.9670 +2890 10243 0.6210 +2890 10282 0.4990 +2890 10342 0.4990 +2890 10368 0.8670 +2890 10369 0.9990 +2890 10381 0.4340 +2890 10382 0.4420 +2890 10427 0.5080 +2890 10439 0.5880 +2890 10484 0.4990 +2890 10652 0.4990 +2890 10802 0.4990 +2890 10959 0.4990 +2890 10960 0.4990 +2890 10972 0.5300 +2890 11196 0.4990 +2890 11320 0.4050 +2890 11336 0.4430 +2890 22829 0.4120 +2890 22849 0.4190 +2890 22865 0.4050 +2890 22871 0.6330 +2890 22872 0.5110 +2890 22941 0.7500 +2890 22999 0.4840 +2890 23237 0.8140 +2890 23256 0.4990 +2890 23327 0.6150 +2890 23345 0.4080 +2890 23426 0.9600 +2890 23467 0.4190 +2890 23621 0.4130 +2890 23732 0.4650 +2890 26045 0.4930 +2890 26047 0.6090 +2890 26052 0.5650 +2890 26470 0.5450 +2890 26984 0.5020 +2890 27020 0.4520 +2890 27065 0.5790 +2890 27091 0.8280 +2890 27092 0.8430 +2890 27185 0.4360 +2890 29097 0.9160 +2890 50618 0.4220 +2890 50944 0.6190 +2890 51100 0.4240 +2890 51128 0.5210 +2890 51806 0.5810 +2890 54413 0.5360 +2890 55014 0.5120 +2890 55327 0.4340 +2890 56904 0.4240 +2890 57030 0.8550 +2890 57084 0.6630 +2890 57406 0.5090 +2890 57468 0.5400 +2890 57497 0.4510 +2890 57502 0.5140 +2890 57554 0.7310 +2890 57555 0.5320 +2890 57622 0.6860 +2890 58512 0.5070 +2890 59283 0.9960 +2890 59284 0.8730 +2890 60412 0.5060 +2890 63827 0.5680 +2890 63908 0.5570 +2890 64689 0.5090 +2890 64840 0.4170 +2890 64854 0.4960 +2890 79748 0.5230 +2890 79953 0.7760 +2890 80059 0.4760 +2890 80852 0.7110 +2890 81562 0.4990 +2890 81609 0.5940 +2890 81831 0.4180 +2890 81832 0.4560 +2890 84152 0.6250 +2890 84687 0.5220 +2890 84867 0.5770 +2890 85358 0.6230 +2890 85461 0.5320 +2890 89866 0.5010 +2890 90411 0.4990 +2890 91860 0.5860 +2890 93145 0.8790 +2890 94030 0.4530 +2890 112476 0.6250 +2890 114798 0.4100 +2890 116443 0.8150 +2890 116444 0.8400 +2890 116986 0.5170 +2890 116988 0.4240 +2890 118427 0.7350 +2890 126129 0.6600 +2890 137902 0.5220 +2890 140679 0.7660 +2890 145581 0.4190 +2890 146395 0.7060 +2890 146713 0.6030 +2890 149111 0.9580 +2890 163688 0.5810 +2890 170572 0.5730 +2890 200909 0.5690 +2890 246213 0.4100 +2890 254263 0.9950 +2890 285242 0.5810 +2890 347730 0.4610 +2890 375323 0.4550 +2890 375567 0.6160 +2890 388336 0.6820 +2890 389941 0.4800 +2890 402117 0.6070 +2890 440829 0.5590 +2890 729956 0.6950 +2890 729993 0.9840 +2891 2892 0.9990 +2891 2893 0.9990 +2891 2895 0.8580 +2891 2897 0.5490 +2891 2898 0.7670 +2891 2899 0.6760 +2891 2900 0.6410 +2891 2901 0.5200 +2891 2902 0.9010 +2891 2903 0.9330 +2891 2904 0.8850 +2891 2905 0.8220 +2891 2906 0.8000 +2891 2911 0.8090 +2891 2912 0.6360 +2891 2913 0.7440 +2891 2914 0.5510 +2891 2915 0.8520 +2891 2916 0.5460 +2891 2917 0.8340 +2891 2918 0.6160 +2891 2936 0.7930 +2891 3065 0.5840 +2891 3066 0.5930 +2891 3350 0.5810 +2891 3356 0.4700 +2891 3358 0.4570 +2891 3359 0.8060 +2891 3361 0.4040 +2891 3725 0.4760 +2891 3735 0.5120 +2891 3736 0.6600 +2891 3737 0.4930 +2891 3746 0.4140 +2891 3747 0.4110 +2891 3751 0.4560 +2891 3765 0.4890 +2891 3785 0.4160 +2891 3798 0.8810 +2891 3799 0.8320 +2891 3800 0.8870 +2891 3897 0.5240 +2891 4067 0.9040 +2891 4099 0.4040 +2891 4133 0.5150 +2891 4137 0.4830 +2891 4204 0.7100 +2891 4301 0.4100 +2891 4355 0.5020 +2891 4356 0.4230 +2891 4644 0.4300 +2891 4747 0.6690 +2891 4857 0.4650 +2891 4884 0.4440 +2891 4885 0.5000 +2891 4905 0.9420 +2891 4915 0.6120 +2891 4978 0.4240 +2891 5295 0.4150 +2891 5499 0.9080 +2891 5500 0.9070 +2891 5501 0.9010 +2891 5566 0.9370 +2891 5567 0.9390 +2891 5568 0.9360 +2891 5578 0.6050 +2891 5579 0.5200 +2891 5582 0.7200 +2891 5657 0.4330 +2891 5816 0.5590 +2891 5877 0.4550 +2891 5911 0.5720 +2891 5978 0.4490 +2891 6326 0.4880 +2891 6505 0.6080 +2891 6506 0.6850 +2891 6507 0.5350 +2891 6529 0.5980 +2891 6531 0.4050 +2891 6616 0.7070 +2891 6647 0.4790 +2891 6750 0.4030 +2891 6786 0.6450 +2891 6812 0.4060 +2891 6844 0.4970 +2891 6853 0.6840 +2891 6854 0.5680 +2891 6855 0.6960 +2891 6857 0.5750 +2891 6860 0.6140 +2891 6900 0.4260 +2891 7068 0.4100 +2891 7102 0.5920 +2891 8224 0.4880 +2891 8541 0.4170 +2891 8766 0.4860 +2891 8775 0.5070 +2891 8831 0.5090 +2891 8927 0.4700 +2891 8997 0.6910 +2891 9177 0.6160 +2891 9228 0.4220 +2891 9229 0.7220 +2891 9369 0.4160 +2891 9378 0.6950 +2891 9379 0.6070 +2891 9456 0.5960 +2891 9463 0.9990 +2891 9513 0.4020 +2891 9568 0.5470 +2891 9721 0.5090 +2891 9892 0.6590 +2891 9900 0.4740 +2891 9922 0.6230 +2891 10175 0.7980 +2891 10243 0.5200 +2891 10368 0.9230 +2891 10369 0.9950 +2891 10564 0.4180 +2891 10814 0.4590 +2891 10983 0.4600 +2891 11075 0.4760 +2891 11345 0.4390 +2891 22829 0.4260 +2891 22871 0.6400 +2891 22895 0.4230 +2891 22941 0.6370 +2891 22986 0.4330 +2891 22999 0.6480 +2891 23162 0.5880 +2891 23237 0.5670 +2891 23426 0.9990 +2891 23435 0.5520 +2891 23544 0.4300 +2891 23732 0.4530 +2891 25893 0.4560 +2891 25942 0.7170 +2891 26001 0.5130 +2891 26045 0.6810 +2891 26999 0.5220 +2891 27065 0.6450 +2891 27091 0.9070 +2891 27092 0.9070 +2891 29097 0.8650 +2891 50859 0.4090 +2891 50944 0.5630 +2891 51052 0.4350 +2891 51299 0.4110 +2891 51582 0.6250 +2891 54413 0.5350 +2891 55172 0.4610 +2891 55362 0.4080 +2891 56899 0.4020 +2891 57030 0.8220 +2891 57084 0.6610 +2891 57120 0.4970 +2891 57406 0.5260 +2891 57468 0.4990 +2891 57497 0.4110 +2891 57502 0.4850 +2891 57554 0.6840 +2891 57555 0.5160 +2891 57620 0.6290 +2891 57622 0.4070 +2891 57689 0.4230 +2891 58512 0.4010 +2891 59283 0.9940 +2891 59284 0.8830 +2891 79661 0.4900 +2891 79953 0.7210 +2891 80852 0.9350 +2891 81551 0.4490 +2891 81831 0.4620 +2891 81832 0.5040 +2891 83548 0.4770 +2891 84152 0.4070 +2891 84466 0.4360 +2891 84867 0.6330 +2891 85358 0.5730 +2891 91860 0.4040 +2891 93145 0.7700 +2891 94030 0.4450 +2891 114798 0.4210 +2891 116442 0.4060 +2891 116443 0.8450 +2891 116444 0.7870 +2891 116986 0.6640 +2891 118427 0.6330 +2891 126129 0.4750 +2891 140679 0.7420 +2891 145581 0.4460 +2891 146177 0.4280 +2891 146395 0.5610 +2891 146713 0.4850 +2891 149111 0.9810 +2891 170572 0.5760 +2891 200909 0.5790 +2891 254263 0.9900 +2891 285242 0.5940 +2891 347730 0.4530 +2891 375567 0.6410 +2891 388336 0.6880 +2891 402117 0.6330 +2891 440829 0.5660 +2891 729956 0.7380 +2891 729993 0.8550 +2892 2893 0.9970 +2892 2894 0.5040 +2892 2895 0.6430 +2892 2898 0.6570 +2892 2899 0.6490 +2892 2900 0.6350 +2892 2901 0.5080 +2892 2902 0.8770 +2892 2903 0.8860 +2892 2904 0.8230 +2892 2905 0.8090 +2892 2906 0.7990 +2892 2911 0.6020 +2892 2912 0.5100 +2892 2913 0.5910 +2892 2914 0.5750 +2892 2915 0.7820 +2892 2917 0.5640 +2892 2918 0.5280 +2892 2936 0.7700 +2892 3350 0.5790 +2892 3356 0.4510 +2892 3358 0.4060 +2892 3359 0.7960 +2892 3736 0.5940 +2892 3737 0.4070 +2892 3798 0.8400 +2892 3799 0.8160 +2892 3800 0.8460 +2892 4067 0.9020 +2892 4131 0.4660 +2892 4193 0.5070 +2892 4646 0.5370 +2892 4747 0.4900 +2892 4905 0.5280 +2892 4915 0.6220 +2892 5499 0.9080 +2892 5500 0.9030 +2892 5501 0.9010 +2892 5566 0.9220 +2892 5567 0.9240 +2892 5568 0.9210 +2892 5578 0.4900 +2892 5579 0.4320 +2892 5582 0.5240 +2892 6506 0.4730 +2892 6507 0.4110 +2892 6529 0.4610 +2892 6616 0.4270 +2892 6812 0.7840 +2892 6855 0.4010 +2892 7040 0.4570 +2892 7082 0.4060 +2892 7102 0.5480 +2892 8831 0.4070 +2892 9177 0.6380 +2892 9378 0.5090 +2892 9456 0.4300 +2892 9463 0.9940 +2892 9495 0.5850 +2892 9568 0.5070 +2892 10175 0.7840 +2892 10368 0.8520 +2892 10369 0.9840 +2892 10497 0.5880 +2892 10735 0.5520 +2892 23426 0.9930 +2892 23732 0.4750 +2892 26999 0.4510 +2892 27091 0.8300 +2892 27092 0.8370 +2892 29097 0.8860 +2892 51582 0.4170 +2892 55362 0.4630 +2892 55879 0.4550 +2892 57030 0.5300 +2892 57084 0.4660 +2892 57406 0.4960 +2892 57554 0.5830 +2892 57622 0.5930 +2892 59283 0.9360 +2892 59284 0.8580 +2892 64840 0.4030 +2892 80852 0.8760 +2892 93145 0.7730 +2892 112755 0.5860 +2892 116443 0.8020 +2892 116444 0.7910 +2892 118427 0.5220 +2892 126129 0.4420 +2892 146395 0.4450 +2892 149111 0.9530 +2892 170572 0.5960 +2892 200909 0.6010 +2892 254263 0.9700 +2892 285242 0.7150 +2892 375567 0.5760 +2892 388336 0.6380 +2892 402117 0.5890 +2892 440829 0.5500 +2892 729956 0.6420 +2892 729993 0.8240 +2893 2895 0.6990 +2893 2898 0.6640 +2893 2899 0.6720 +2893 2900 0.7560 +2893 2901 0.5260 +2893 2902 0.8860 +2893 2903 0.8980 +2893 2904 0.8530 +2893 2905 0.8240 +2893 2906 0.8640 +2893 2911 0.6530 +2893 2912 0.8400 +2893 2913 0.8340 +2893 2914 0.6620 +2893 2915 0.6670 +2893 2916 0.6150 +2893 2917 0.7340 +2893 2918 0.6310 +2893 2936 0.8960 +2893 3359 0.7940 +2893 3735 0.6030 +2893 3736 0.4360 +2893 3798 0.8440 +2893 3799 0.8180 +2893 3800 0.8500 +2893 4193 0.5070 +2893 4646 0.5370 +2893 4684 0.5040 +2893 4747 0.5620 +2893 4804 0.4120 +2893 4884 0.6700 +2893 4885 0.8000 +2893 4905 0.5090 +2893 4915 0.4200 +2893 4988 0.5290 +2893 5499 0.9040 +2893 5500 0.9030 +2893 5501 0.9000 +2893 5566 0.9460 +2893 5567 0.9300 +2893 5568 0.9280 +2893 5578 0.5280 +2893 5579 0.4680 +2893 5582 0.8250 +2893 5816 0.5730 +2893 6261 0.4190 +2893 6469 0.4120 +2893 6506 0.5620 +2893 6507 0.4920 +2893 6616 0.6350 +2893 6853 0.4420 +2893 6855 0.5060 +2893 6857 0.4020 +2893 6863 0.5590 +2893 7082 0.4990 +2893 7102 0.4520 +2893 8001 0.4450 +2893 9177 0.6360 +2893 9229 0.4230 +2893 9378 0.6880 +2893 9379 0.6840 +2893 9456 0.4200 +2893 9463 0.9040 +2893 9495 0.5930 +2893 9568 0.4720 +2893 9899 0.4770 +2893 9900 0.4110 +2893 10175 0.8130 +2893 10368 0.8690 +2893 10369 0.9750 +2893 10681 0.4420 +2893 22871 0.4960 +2893 22941 0.5790 +2893 22999 0.5570 +2893 23154 0.7540 +2893 23426 0.8990 +2893 23467 0.5220 +2893 23732 0.4140 +2893 27091 0.8640 +2893 27092 0.8670 +2893 29097 0.7800 +2893 30010 0.4210 +2893 50834 0.5480 +2893 50839 0.6350 +2893 50944 0.4500 +2893 57030 0.5500 +2893 57084 0.5600 +2893 57406 0.4230 +2893 57554 0.5390 +2893 57622 0.6000 +2893 57689 0.4590 +2893 59283 0.9360 +2893 59284 0.8750 +2893 79953 0.5900 +2893 80852 0.6960 +2893 81832 0.4160 +2893 84894 0.4410 +2893 93145 0.8170 +2893 116443 0.8780 +2893 116444 0.8110 +2893 118427 0.6120 +2893 126129 0.4270 +2893 140679 0.4290 +2893 146395 0.4440 +2893 149111 0.9190 +2893 170572 0.5920 +2893 200909 0.5870 +2893 254263 0.9400 +2893 285242 0.5900 +2893 346562 0.4500 +2893 375567 0.5780 +2893 388336 0.6460 +2893 402117 0.5990 +2893 440829 0.5520 +2893 646960 0.4750 +2893 729956 0.6480 +2893 729993 0.9190 +2894 2899 0.4630 +2894 2901 0.4790 +2894 2903 0.5210 +2894 2904 0.5590 +2894 2911 0.5680 +2894 2912 0.5310 +2894 2913 0.5730 +2894 2914 0.5750 +2894 2915 0.5540 +2894 2916 0.4380 +2894 2917 0.5200 +2894 2918 0.5160 +2894 3361 0.5330 +2894 5578 0.5900 +2894 9229 0.5320 +2894 9369 0.4670 +2894 9378 0.4820 +2894 9379 0.4250 +2894 23604 0.4080 +2894 50619 0.5020 +2894 79966 0.4070 +2894 84258 0.4190 +2894 147381 0.4500 +2894 392862 0.5830 +2894 400668 0.4540 +2894 104909134 0.4210 +2895 2897 0.4050 +2895 2898 0.8180 +2895 2899 0.6770 +2895 2900 0.6350 +2895 2901 0.7490 +2895 2902 0.6750 +2895 2903 0.7110 +2895 2904 0.6960 +2895 2905 0.6620 +2895 2906 0.6530 +2895 2911 0.6530 +2895 2912 0.5470 +2895 2913 0.5300 +2895 2914 0.5950 +2895 2915 0.5250 +2895 2916 0.4900 +2895 2917 0.5390 +2895 2918 0.5180 +2895 3359 0.5890 +2895 3632 0.4220 +2895 3708 0.5120 +2895 3751 0.4040 +2895 4355 0.6040 +2895 4684 0.4350 +2895 4857 0.4960 +2895 5289 0.4970 +2895 5332 0.4210 +2895 5582 0.5250 +2895 5775 0.7260 +2895 6098 0.5900 +2895 6511 0.7130 +2895 6712 0.7370 +2895 7222 0.6100 +2895 7405 0.5830 +2895 7855 0.5490 +2895 8325 0.4370 +2895 8678 0.8000 +2895 9177 0.5730 +2895 9229 0.4380 +2895 9312 0.4600 +2895 9369 0.4270 +2895 9378 0.9150 +2895 9379 0.8800 +2895 9454 0.5290 +2895 9463 0.5890 +2895 9711 0.6030 +2895 9863 0.5280 +2895 10228 0.4290 +2895 10368 0.5870 +2895 10369 0.6840 +2895 10533 0.4620 +2895 10681 0.4420 +2895 10842 0.4240 +2895 22863 0.5830 +2895 22871 0.4820 +2895 22941 0.6480 +2895 23092 0.4340 +2895 23154 0.4010 +2895 23433 0.4440 +2895 23645 0.4260 +2895 26047 0.5150 +2895 27091 0.5780 +2895 27092 0.5880 +2895 30849 0.5490 +2895 50944 0.4190 +2895 56934 0.5350 +2895 57030 0.4530 +2895 57120 0.7560 +2895 57502 0.4570 +2895 57555 0.4290 +2895 57628 0.4930 +2895 59283 0.6130 +2895 59284 0.6480 +2895 81832 0.4660 +2895 84107 0.4680 +2895 84253 0.4690 +2895 92737 0.4320 +2895 93145 0.5700 +2895 116443 0.6710 +2895 116444 0.6320 +2895 118427 0.4650 +2895 126006 0.4180 +2895 126129 0.4140 +2895 137868 0.4200 +2895 140679 0.4050 +2895 140689 0.6420 +2895 147381 0.7570 +2895 149111 0.5910 +2895 152330 0.5460 +2895 170572 0.5520 +2895 200909 0.5490 +2895 254263 0.5650 +2895 285242 0.5490 +2895 375567 0.5860 +2895 388336 0.6240 +2895 392862 0.9840 +2895 401145 0.4130 +2895 402117 0.5760 +2895 402665 0.4610 +2895 440829 0.5550 +2895 643866 0.8780 +2895 729956 0.5860 +2895 729993 0.6210 +2896 2923 0.4520 +2896 3181 0.5250 +2896 3192 0.5300 +2896 3198 0.4200 +2896 3309 0.6090 +2896 3339 0.9070 +2896 3576 0.5370 +2896 3916 0.6080 +2896 3934 0.4570 +2896 4125 0.5190 +2896 4137 0.8850 +2896 4318 0.5850 +2896 4327 0.4510 +2896 4733 0.7980 +2896 4747 0.5020 +2896 5004 0.4440 +2896 5005 0.4300 +2896 5034 0.5620 +2896 5037 0.4620 +2896 5071 0.4280 +2896 5265 0.4600 +2896 5371 0.5720 +2896 5427 0.7970 +2896 5476 0.5390 +2896 5538 0.4090 +2896 5621 0.4630 +2896 5641 0.4660 +2896 5660 0.8560 +2896 5663 0.6490 +2896 5664 0.6150 +2896 5919 0.5060 +2896 6272 0.9680 +2896 6311 0.4240 +2896 6576 0.8030 +2896 6590 0.9340 +2896 6622 0.6750 +2896 6647 0.5480 +2896 6653 0.4450 +2896 6804 0.4850 +2896 6809 0.4530 +2896 6810 0.4610 +2896 7037 0.4730 +2896 7077 0.4610 +2896 7124 0.4860 +2896 7132 0.8030 +2896 7133 0.7830 +2896 7170 0.5870 +2896 7295 0.4150 +2896 7305 0.4970 +2896 7314 0.4560 +2896 7369 0.4840 +2896 7415 0.7620 +2896 7472 0.4790 +2896 7942 0.4200 +2896 8676 0.4660 +2896 8718 0.6080 +2896 8722 0.5990 +2896 8751 0.4860 +2896 8878 0.4360 +2896 9140 0.4610 +2896 9360 0.4270 +2896 9476 0.5000 +2896 9601 0.4190 +2896 9612 0.4220 +2896 10016 0.4220 +2896 10130 0.4010 +2896 10133 0.4790 +2896 10244 0.4400 +2896 10437 0.4430 +2896 10539 0.6330 +2896 10577 0.5230 +2896 10900 0.6600 +2896 11173 0.6970 +2896 23008 0.4390 +2896 23385 0.4780 +2896 23400 0.4260 +2896 23435 0.9580 +2896 23436 0.4630 +2896 23588 0.4400 +2896 25978 0.8230 +2896 27020 0.4280 +2896 29110 0.4420 +2896 29978 0.6150 +2896 51629 0.6850 +2896 51701 0.4880 +2896 54209 0.5530 +2896 54431 0.5710 +2896 54455 0.4390 +2896 54664 0.9060 +2896 55593 0.4110 +2896 63932 0.7990 +2896 64978 0.4400 +2896 79001 0.4540 +2896 80173 0.4590 +2896 81027 0.5500 +2896 83447 0.4880 +2896 112755 0.4890 +2896 120892 0.5690 +2896 122773 0.4390 +2896 123207 0.7970 +2896 126823 0.4390 +2896 145264 0.5410 +2896 157310 0.4390 +2896 171169 0.4220 +2896 199834 0.5910 +2896 203068 0.5870 +2896 203228 0.8870 +2896 283106 0.5130 +2896 415117 0.4200 +2897 2898 0.9980 +2897 2899 0.9890 +2897 2900 0.9930 +2897 2901 0.9930 +2897 2902 0.4010 +2897 2903 0.6170 +2897 2904 0.4120 +2897 2905 0.4590 +2897 2911 0.7750 +2897 2912 0.7660 +2897 2913 0.7330 +2897 2914 0.7740 +2897 2915 0.8290 +2897 2916 0.7630 +2897 2917 0.9310 +2897 2918 0.6920 +2897 2936 0.6450 +2897 3359 0.4430 +2897 3735 0.7910 +2897 3736 0.4070 +2897 3747 0.4090 +2897 3755 0.4290 +2897 3785 0.5070 +2897 4131 0.4420 +2897 4915 0.4110 +2897 5582 0.4630 +2897 5816 0.4140 +2897 6386 0.6180 +2897 6506 0.4860 +2897 6507 0.4240 +2897 6511 0.4490 +2897 6529 0.4320 +2897 6616 0.5950 +2897 6853 0.5140 +2897 6854 0.5300 +2897 8001 0.4650 +2897 8224 0.5460 +2897 9378 0.4030 +2897 9463 0.7110 +2897 9513 0.4730 +2897 10381 0.4670 +2897 10439 0.4360 +2897 11275 0.4460 +2897 23154 0.8280 +2897 23191 0.4350 +2897 23426 0.6820 +2897 26285 0.4770 +2897 57030 0.4960 +2897 57084 0.5070 +2897 57468 0.4200 +2897 81831 0.7260 +2897 81832 0.8390 +2897 83988 0.5380 +2897 90134 0.4370 +2897 114327 0.4660 +2897 116443 0.4140 +2897 140679 0.4390 +2897 166752 0.4850 +2897 222553 0.4490 +2897 339451 0.5660 +2898 2899 0.9850 +2898 2900 0.9920 +2898 2901 0.9990 +2898 2902 0.7700 +2898 2903 0.7180 +2898 2904 0.8130 +2898 2905 0.7140 +2898 2906 0.6860 +2898 2911 0.5660 +2898 2912 0.5120 +2898 2913 0.6790 +2898 2914 0.5460 +2898 2915 0.5840 +2898 2916 0.4250 +2898 2917 0.8160 +2898 2918 0.5210 +2898 2936 0.6060 +2898 3356 0.4540 +2898 3358 0.4100 +2898 3359 0.6920 +2898 3735 0.7940 +2898 3736 0.4580 +2898 3766 0.4800 +2898 4131 0.5340 +2898 4296 0.7990 +2898 4747 0.6040 +2898 5071 0.4660 +2898 5330 0.5270 +2898 5789 0.5300 +2898 6323 0.6650 +2898 6324 0.5800 +2898 6326 0.6630 +2898 6327 0.5820 +2898 6328 0.6450 +2898 6329 0.5710 +2898 6330 0.5910 +2898 6331 0.6250 +2898 6332 0.5890 +2898 6334 0.6300 +2898 6335 0.6630 +2898 6336 0.6010 +2898 6337 0.5560 +2898 6338 0.5490 +2898 6339 0.5560 +2898 6340 0.5580 +2898 6386 0.8500 +2898 6505 0.4610 +2898 6506 0.5160 +2898 6507 0.5930 +2898 6532 0.4100 +2898 6612 0.4820 +2898 7101 0.6020 +2898 7329 0.8420 +2898 7341 0.4830 +2898 7447 0.5120 +2898 8573 0.5440 +2898 8911 0.5750 +2898 8912 0.6060 +2898 8913 0.6240 +2898 9177 0.6400 +2898 9229 0.4870 +2898 9369 0.5050 +2898 9378 0.5620 +2898 9379 0.4120 +2898 9463 0.8970 +2898 9892 0.4600 +2898 10368 0.6280 +2898 10369 0.7470 +2898 10401 0.7280 +2898 10915 0.5020 +2898 11075 0.4060 +2898 11280 0.5870 +2898 22871 0.6280 +2898 22895 0.4040 +2898 23154 0.6390 +2898 23426 0.8110 +2898 23705 0.4630 +2898 25945 0.4290 +2898 27091 0.5910 +2898 27092 0.5560 +2898 29843 0.6160 +2898 50945 0.4400 +2898 51764 0.6820 +2898 54795 0.5950 +2898 54800 0.8490 +2898 55362 0.4230 +2898 55800 0.6700 +2898 57030 0.4540 +2898 57084 0.4170 +2898 57468 0.4190 +2898 58512 0.6410 +2898 59283 0.7630 +2898 59284 0.5810 +2898 59345 0.7300 +2898 64130 0.4750 +2898 64478 0.5010 +2898 81831 0.8990 +2898 81832 0.9070 +2898 83988 0.5450 +2898 85358 0.4040 +2898 93145 0.5460 +2898 116443 0.6850 +2898 116444 0.6660 +2898 118427 0.4340 +2898 126129 0.4110 +2898 149111 0.6490 +2898 165257 0.6610 +2898 170572 0.5630 +2898 200909 0.5690 +2898 254263 0.7090 +2898 259232 0.4690 +2898 285242 0.5620 +2898 339451 0.5120 +2898 347730 0.5870 +2898 375567 0.5850 +2898 388336 0.6020 +2898 389941 0.6690 +2898 402117 0.5730 +2898 440829 0.5400 +2898 729956 0.5850 +2898 729993 0.6730 +2899 2900 0.9910 +2899 2901 0.9860 +2899 2902 0.6910 +2899 2903 0.7190 +2899 2904 0.7110 +2899 2905 0.6920 +2899 2906 0.6840 +2899 2907 0.4530 +2899 2911 0.4870 +2899 2912 0.6400 +2899 2913 0.5750 +2899 2914 0.5660 +2899 2915 0.5560 +2899 2916 0.5770 +2899 2917 0.5240 +2899 2918 0.5280 +2899 3356 0.4240 +2899 3359 0.6700 +2899 3361 0.4720 +2899 3735 0.6590 +2899 5330 0.5300 +2899 5331 0.5360 +2899 6323 0.6190 +2899 6324 0.5670 +2899 6326 0.6340 +2899 6327 0.5960 +2899 6328 0.5950 +2899 6329 0.5630 +2899 6330 0.6910 +2899 6331 0.5900 +2899 6332 0.5950 +2899 6334 0.6330 +2899 6335 0.5860 +2899 6336 0.5710 +2899 6337 0.5520 +2899 6338 0.5490 +2899 6339 0.5640 +2899 6340 0.5950 +2899 6506 0.4300 +2899 8911 0.5910 +2899 8912 0.6190 +2899 8913 0.5860 +2899 9177 0.6580 +2899 9229 0.5070 +2899 9378 0.4250 +2899 10368 0.6620 +2899 10369 0.7070 +2899 10681 0.5030 +2899 11280 0.6450 +2899 23236 0.5690 +2899 27091 0.5870 +2899 27092 0.6270 +2899 29843 0.5800 +2899 30012 0.4800 +2899 51764 0.5430 +2899 54331 0.5300 +2899 54795 0.5510 +2899 55800 0.6300 +2899 55970 0.5110 +2899 57030 0.4100 +2899 59283 0.6020 +2899 59284 0.5940 +2899 59345 0.5030 +2899 81831 0.5550 +2899 81832 0.6510 +2899 83988 0.5370 +2899 83989 0.6010 +2899 93145 0.5680 +2899 94235 0.5100 +2899 116443 0.6850 +2899 116444 0.6690 +2899 118427 0.4520 +2899 149111 0.6550 +2899 153770 0.5600 +2899 170572 0.5780 +2899 200909 0.5840 +2899 254263 0.6420 +2899 285242 0.5750 +2899 375567 0.5650 +2899 388336 0.6170 +2899 402117 0.5970 +2899 440829 0.5600 +2899 729956 0.5890 +2899 729993 0.6050 +2900 2901 0.9890 +2900 2902 0.6920 +2900 2903 0.6900 +2900 2904 0.6860 +2900 2905 0.6920 +2900 2906 0.7910 +2900 2907 0.5010 +2900 2911 0.6500 +2900 2912 0.6100 +2900 2913 0.6070 +2900 2914 0.5880 +2900 2915 0.5540 +2900 2916 0.5780 +2900 2917 0.7050 +2900 2918 0.5480 +2900 3356 0.4800 +2900 3359 0.6490 +2900 3735 0.6900 +2900 3758 0.6070 +2900 3762 0.6130 +2900 4139 0.4980 +2900 4140 0.7710 +2900 6323 0.5950 +2900 6324 0.5900 +2900 6326 0.6100 +2900 6327 0.6290 +2900 6328 0.5720 +2900 6329 0.5800 +2900 6330 0.6010 +2900 6331 0.5660 +2900 6332 0.5640 +2900 6334 0.6150 +2900 6335 0.5730 +2900 6336 0.5700 +2900 6337 0.6530 +2900 6338 0.5500 +2900 6339 0.5600 +2900 6340 0.5490 +2900 6506 0.4600 +2900 6507 0.4120 +2900 6530 0.4760 +2900 6532 0.4190 +2900 6616 0.5780 +2900 8312 0.4020 +2900 8911 0.5760 +2900 8912 0.6360 +2900 8913 0.6160 +2900 9177 0.6220 +2900 9463 0.5390 +2900 9899 0.5110 +2900 10368 0.6080 +2900 10369 0.7060 +2900 11280 0.6130 +2900 22941 0.5530 +2900 22999 0.5440 +2900 23426 0.4900 +2900 27091 0.5990 +2900 27092 0.6620 +2900 54795 0.5910 +2900 55800 0.5940 +2900 57030 0.4080 +2900 57787 0.8690 +2900 59283 0.6420 +2900 59284 0.6540 +2900 60558 0.4430 +2900 64900 0.4180 +2900 79012 0.4870 +2900 81831 0.6760 +2900 81832 0.7070 +2900 83988 0.5190 +2900 93145 0.5750 +2900 116443 0.7950 +2900 116444 0.6770 +2900 118427 0.4050 +2900 149111 0.6490 +2900 165257 0.7060 +2900 170572 0.5810 +2900 200909 0.6130 +2900 254263 0.5890 +2900 285242 0.5700 +2900 375567 0.5590 +2900 388336 0.5610 +2900 389941 0.7960 +2900 402117 0.5670 +2900 440829 0.5610 +2900 729956 0.6030 +2900 729993 0.5910 +2901 2902 0.5770 +2901 2903 0.6700 +2901 2904 0.7260 +2901 2905 0.5880 +2901 2906 0.7100 +2901 2911 0.5790 +2901 2912 0.5260 +2901 2913 0.6970 +2901 2914 0.5550 +2901 2915 0.6150 +2901 2916 0.4290 +2901 2917 0.7840 +2901 2918 0.5550 +2901 3356 0.4330 +2901 3358 0.4130 +2901 3359 0.5220 +2901 3735 0.6920 +2901 3766 0.5160 +2901 4217 0.4060 +2901 4747 0.4090 +2901 4753 0.4260 +2901 5789 0.5300 +2901 6323 0.5000 +2901 6324 0.4220 +2901 6326 0.5370 +2901 6327 0.4460 +2901 6328 0.4870 +2901 6330 0.4590 +2901 6331 0.4430 +2901 6332 0.4240 +2901 6334 0.5140 +2901 6335 0.4690 +2901 6336 0.4160 +2901 6505 0.4590 +2901 6506 0.4720 +2901 6507 0.5830 +2901 6857 0.4640 +2901 7101 0.8000 +2901 8911 0.4410 +2901 8912 0.5090 +2901 8913 0.4710 +2901 9177 0.4830 +2901 9229 0.4670 +2901 9369 0.4550 +2901 9378 0.5020 +2901 9379 0.4400 +2901 9463 0.5860 +2901 10368 0.4940 +2901 10369 0.5840 +2901 11075 0.4040 +2901 11280 0.4140 +2901 22871 0.5500 +2901 22895 0.4050 +2901 22941 0.4270 +2901 23705 0.4310 +2901 25945 0.4480 +2901 27091 0.4590 +2901 27092 0.4160 +2901 50944 0.4180 +2901 51151 0.4600 +2901 51460 0.4730 +2901 55643 0.4490 +2901 55800 0.5100 +2901 57030 0.4390 +2901 57084 0.4250 +2901 58512 0.5060 +2901 59283 0.6140 +2901 59284 0.4600 +2901 60558 0.4070 +2901 64840 0.5840 +2901 81831 0.6710 +2901 81832 0.6730 +2901 83988 0.5190 +2901 93145 0.4400 +2901 116443 0.5580 +2901 116444 0.5350 +2901 118427 0.4180 +2901 126129 0.4020 +2901 147710 0.4270 +2901 149111 0.5030 +2901 200909 0.4030 +2901 254263 0.5350 +2901 375567 0.4110 +2901 388336 0.4340 +2901 392862 0.5170 +2901 729956 0.4340 +2902 2903 0.9990 +2902 2904 0.9990 +2902 2905 0.9990 +2902 2906 0.9990 +2902 2911 0.6590 +2902 2912 0.6210 +2902 2913 0.7600 +2902 2914 0.5200 +2902 2915 0.7920 +2902 2918 0.4390 +2902 2936 0.5630 +2902 3084 0.5410 +2902 3208 0.5560 +2902 3265 0.5510 +2902 3350 0.4580 +2902 3359 0.7870 +2902 3361 0.5190 +2902 3746 0.4450 +2902 3751 0.6250 +2902 3765 0.4840 +2902 3785 0.4520 +2902 3845 0.5510 +2902 4067 0.5620 +2902 4099 0.4210 +2902 4133 0.4860 +2902 4137 0.4790 +2902 4747 0.8690 +2902 4842 0.9550 +2902 4893 0.5510 +2902 4915 0.7080 +2902 4988 0.5210 +2902 5023 0.9150 +2902 5024 0.9210 +2902 5025 0.9210 +2902 5026 0.9090 +2902 5027 0.9090 +2902 5173 0.9300 +2902 5499 0.6950 +2902 5500 0.6630 +2902 5501 0.6670 +2902 5566 0.7730 +2902 5567 0.7770 +2902 5568 0.8330 +2902 5578 0.6100 +2902 5582 0.5610 +2902 5663 0.4350 +2902 5816 0.5980 +2902 5864 0.4100 +2902 5879 0.5520 +2902 5923 0.5640 +2902 5924 0.4670 +2902 6505 0.5980 +2902 6506 0.6220 +2902 6507 0.5490 +2902 6529 0.4710 +2902 6531 0.5640 +2902 6534 0.4660 +2902 6616 0.5530 +2902 6620 0.4670 +2902 6709 0.4300 +2902 6714 0.6730 +2902 6717 0.4430 +2902 6750 0.4010 +2902 6853 0.6670 +2902 6854 0.5380 +2902 6855 0.6470 +2902 6857 0.4360 +2902 6863 0.4450 +2902 7054 0.4400 +2902 7074 0.6010 +2902 7257 0.4670 +2902 7525 0.5950 +2902 7804 0.6690 +2902 8224 0.4200 +2902 8260 0.4950 +2902 8573 0.8360 +2902 8787 0.4200 +2902 8825 0.6860 +2902 8831 0.5630 +2902 8927 0.5450 +2902 8997 0.6260 +2902 9127 0.9120 +2902 9177 0.6000 +2902 9211 0.5900 +2902 9228 0.4420 +2902 9229 0.5700 +2902 9362 0.4270 +2902 9378 0.4490 +2902 9379 0.4360 +2902 9455 0.4200 +2902 9456 0.6410 +2902 9463 0.4710 +2902 9568 0.4180 +2902 9699 0.4400 +2902 9721 0.7050 +2902 9844 0.5820 +2902 10142 0.4680 +2902 10243 0.4460 +2902 10368 0.8300 +2902 10369 0.8940 +2902 10611 0.4990 +2902 10687 0.4070 +2902 10814 0.4050 +2902 10815 0.4550 +2902 11189 0.4170 +2902 11255 0.4380 +2902 22871 0.6110 +2902 22941 0.4750 +2902 23237 0.5150 +2902 26037 0.5130 +2902 26047 0.5080 +2902 27091 0.7510 +2902 27092 0.7730 +2902 50944 0.5960 +2902 51806 0.9600 +2902 54413 0.4460 +2902 55327 0.5190 +2902 57030 0.8240 +2902 57084 0.5570 +2902 57406 0.4160 +2902 57468 0.4950 +2902 57497 0.8940 +2902 57502 0.4220 +2902 57554 0.5900 +2902 57555 0.4690 +2902 57576 0.7560 +2902 57578 0.4020 +2902 57622 0.6490 +2902 57628 0.4610 +2902 58512 0.5070 +2902 59283 0.7990 +2902 59284 0.7820 +2902 63826 0.4590 +2902 63916 0.4300 +2902 64130 0.5210 +2902 79664 0.6530 +2902 79694 0.4650 +2902 80155 0.5450 +2902 81832 0.5810 +2902 83482 0.4330 +2902 84152 0.4260 +2902 84867 0.4380 +2902 85358 0.5680 +2902 91860 0.9640 +2902 92737 0.4020 +2902 93145 0.7570 +2902 93377 0.4030 +2902 116443 0.9990 +2902 116444 0.9990 +2902 118427 0.5100 +2902 132204 0.4140 +2902 140679 0.7450 +2902 146713 0.5200 +2902 149111 0.7440 +2902 149175 0.4070 +2902 163688 0.9590 +2902 170572 0.5780 +2902 200909 0.5830 +2902 254263 0.7960 +2902 285242 0.5760 +2902 285513 0.6480 +2902 344191 0.4100 +2902 375567 0.5730 +2902 388336 0.6160 +2902 402117 0.6160 +2902 402665 0.4370 +2902 440829 0.6120 +2902 642968 0.4060 +2902 729956 0.6630 +2902 729993 0.7500 +2903 2904 0.9990 +2903 2905 0.9980 +2903 2906 0.9980 +2903 2911 0.7380 +2903 2912 0.6820 +2903 2913 0.9360 +2903 2914 0.7370 +2903 2915 0.8410 +2903 2916 0.4380 +2903 2917 0.6450 +2903 2918 0.5830 +2903 2932 0.4040 +2903 3064 0.4040 +2903 3084 0.5790 +2903 3350 0.5480 +2903 3351 0.4010 +2903 3356 0.5520 +2903 3358 0.4710 +2903 3359 0.8400 +2903 3735 0.4420 +2903 3736 0.4500 +2903 3737 0.4820 +2903 3738 0.4180 +2903 3739 0.6710 +2903 3743 0.4220 +2903 3745 0.4320 +2903 3746 0.4170 +2903 3748 0.4900 +2903 3751 0.6360 +2903 3785 0.6060 +2903 3786 0.5060 +2903 4133 0.5160 +2903 4137 0.4240 +2903 4204 0.8760 +2903 4355 0.6930 +2903 4356 0.7920 +2903 4747 0.6870 +2903 4842 0.9740 +2903 4905 0.4260 +2903 4915 0.6400 +2903 5023 0.9150 +2903 5024 0.9170 +2903 5025 0.9160 +2903 5026 0.9070 +2903 5027 0.9090 +2903 5173 0.9400 +2903 5467 0.4330 +2903 5499 0.9140 +2903 5500 0.9090 +2903 5501 0.9070 +2903 5566 0.9420 +2903 5567 0.9420 +2903 5568 0.9690 +2903 5578 0.6770 +2903 5581 0.4670 +2903 5595 0.4250 +2903 5649 0.4330 +2903 5663 0.6760 +2903 5743 0.5040 +2903 5775 0.9790 +2903 5816 0.6490 +2903 5923 0.4770 +2903 5924 0.7950 +2903 6092 0.4250 +2903 6262 0.5020 +2903 6323 0.5770 +2903 6326 0.5910 +2903 6329 0.4410 +2903 6334 0.4960 +2903 6505 0.6710 +2903 6506 0.7830 +2903 6507 0.6220 +2903 6511 0.4440 +2903 6529 0.5530 +2903 6531 0.4600 +2903 6532 0.4600 +2903 6558 0.4260 +2903 6616 0.5380 +2903 6709 0.5070 +2903 6714 0.9630 +2903 6750 0.4240 +2903 6754 0.4350 +2903 6792 0.5130 +2903 6812 0.4870 +2903 6844 0.4010 +2903 6853 0.6510 +2903 6854 0.5040 +2903 6855 0.6650 +2903 6857 0.4650 +2903 7054 0.4230 +2903 7779 0.5450 +2903 7804 0.6380 +2903 7837 0.4890 +2903 7903 0.4070 +2903 8224 0.4500 +2903 8573 0.7540 +2903 8825 0.5860 +2903 8826 0.5090 +2903 8831 0.6620 +2903 8927 0.5880 +2903 9127 0.9100 +2903 9177 0.5960 +2903 9211 0.4570 +2903 9228 0.5770 +2903 9229 0.8850 +2903 9378 0.6170 +2903 9379 0.4520 +2903 9419 0.4990 +2903 9455 0.4780 +2903 9456 0.7680 +2903 9463 0.4810 +2903 9568 0.4910 +2903 9721 0.5820 +2903 9863 0.5750 +2903 9921 0.4950 +2903 9922 0.4650 +2903 10020 0.4020 +2903 10243 0.4820 +2903 10368 0.7940 +2903 10369 0.8800 +2903 10452 0.4070 +2903 10611 0.5060 +2903 10915 0.4050 +2903 10919 0.4320 +2903 22839 0.5640 +2903 22866 0.4310 +2903 22871 0.5540 +2903 22895 0.7370 +2903 22941 0.5550 +2903 23040 0.4300 +2903 23096 0.6490 +2903 23237 0.4980 +2903 23426 0.4270 +2903 26037 0.5640 +2903 26047 0.4750 +2903 27091 0.7330 +2903 27092 0.7640 +2903 27185 0.5070 +2903 50944 0.7420 +2903 51806 0.8950 +2903 54413 0.4720 +2903 54715 0.4170 +2903 55327 0.5240 +2903 57030 0.6720 +2903 57084 0.5400 +2903 57468 0.7010 +2903 57497 0.8020 +2903 57502 0.4710 +2903 57526 0.4620 +2903 57554 0.6840 +2903 57555 0.5210 +2903 57575 0.4270 +2903 57576 0.7940 +2903 57582 0.4910 +2903 57622 0.5890 +2903 58512 0.5740 +2903 59283 0.8120 +2903 59284 0.7720 +2903 63826 0.5140 +2903 64130 0.5780 +2903 79633 0.4760 +2903 81832 0.7580 +2903 83857 0.4100 +2903 84152 0.7060 +2903 84867 0.6040 +2903 85358 0.6380 +2903 85406 0.4240 +2903 91860 0.8970 +2903 93145 0.7370 +2903 112476 0.4640 +2903 114815 0.4250 +2903 116443 0.9990 +2903 116444 0.9980 +2903 116986 0.5280 +2903 118427 0.4640 +2903 137902 0.4890 +2903 140679 0.5150 +2903 146330 0.4220 +2903 146713 0.5660 +2903 149111 0.7580 +2903 152330 0.4020 +2903 163688 0.8950 +2903 165829 0.4310 +2903 170572 0.5780 +2903 200909 0.5590 +2903 253559 0.4070 +2903 254263 0.7840 +2903 285242 0.5770 +2903 285513 0.4080 +2903 375567 0.5690 +2903 388336 0.6390 +2903 402117 0.5800 +2903 440829 0.5540 +2903 729956 0.6630 +2903 729993 0.7860 +2904 2905 0.9980 +2904 2906 0.9980 +2904 2911 0.7580 +2904 2912 0.7080 +2904 2913 0.8910 +2904 2914 0.6600 +2904 2915 0.8420 +2904 2916 0.4970 +2904 2917 0.6170 +2904 2918 0.5960 +2904 2932 0.4780 +2904 2936 0.4180 +2904 2987 0.4310 +2904 3064 0.5060 +2904 3084 0.6360 +2904 3265 0.5830 +2904 3350 0.6040 +2904 3351 0.4630 +2904 3356 0.5960 +2904 3358 0.4410 +2904 3359 0.8180 +2904 3553 0.7730 +2904 3554 0.6240 +2904 3628 0.4020 +2904 3638 0.4240 +2904 3708 0.4470 +2904 3735 0.4430 +2904 3736 0.4200 +2904 3737 0.6120 +2904 3745 0.4610 +2904 3746 0.4500 +2904 3751 0.6490 +2904 3756 0.4860 +2904 3785 0.5660 +2904 3786 0.4940 +2904 3845 0.5490 +2904 4067 0.5820 +2904 4128 0.4470 +2904 4129 0.4160 +2904 4133 0.5370 +2904 4137 0.5100 +2904 4204 0.8850 +2904 4306 0.4700 +2904 4355 0.7750 +2904 4356 0.7250 +2904 4747 0.6240 +2904 4803 0.4720 +2904 4842 0.9840 +2904 4852 0.4170 +2904 4893 0.5430 +2904 4905 0.5110 +2904 4915 0.8970 +2904 4988 0.4840 +2904 5071 0.7500 +2904 5173 0.9640 +2904 5179 0.4930 +2904 5305 0.4430 +2904 5335 0.5030 +2904 5465 0.5620 +2904 5467 0.6790 +2904 5499 0.9170 +2904 5500 0.9080 +2904 5501 0.9130 +2904 5566 0.9510 +2904 5567 0.9510 +2904 5568 0.9740 +2904 5578 0.7470 +2904 5581 0.5050 +2904 5582 0.4300 +2904 5595 0.6660 +2904 5621 0.4520 +2904 5649 0.4700 +2904 5663 0.4780 +2904 5728 0.5470 +2904 5781 0.4410 +2904 5787 0.4720 +2904 5816 0.6340 +2904 5879 0.5790 +2904 5921 0.7940 +2904 5923 0.9720 +2904 5924 0.7620 +2904 6262 0.5380 +2904 6318 0.4180 +2904 6323 0.5440 +2904 6326 0.6470 +2904 6334 0.4620 +2904 6505 0.7250 +2904 6506 0.7390 +2904 6507 0.7570 +2904 6511 0.4510 +2904 6529 0.5810 +2904 6531 0.5530 +2904 6532 0.5420 +2904 6558 0.4110 +2904 6616 0.5590 +2904 6622 0.5740 +2904 6709 0.4930 +2904 6714 0.9330 +2904 6750 0.4590 +2904 6792 0.4850 +2904 6804 0.5850 +2904 6812 0.6750 +2904 6844 0.4010 +2904 6853 0.6660 +2904 6854 0.5640 +2904 6855 0.7050 +2904 6857 0.4970 +2904 6863 0.4660 +2904 7054 0.4620 +2904 7067 0.4280 +2904 7074 0.7550 +2904 7082 0.6470 +2904 7442 0.4350 +2904 7525 0.5160 +2904 7804 0.6230 +2904 7837 0.5270 +2904 8074 0.4010 +2904 8224 0.5130 +2904 8431 0.4430 +2904 8573 0.8680 +2904 8604 0.4300 +2904 8801 0.4450 +2904 8825 0.9370 +2904 8831 0.9360 +2904 8911 0.5450 +2904 8927 0.6200 +2904 8997 0.7130 +2904 9118 0.5680 +2904 9177 0.6300 +2904 9211 0.4450 +2904 9228 0.5140 +2904 9229 0.9000 +2904 9369 0.4140 +2904 9378 0.8320 +2904 9379 0.5160 +2904 9454 0.4660 +2904 9455 0.5020 +2904 9456 0.6750 +2904 9463 0.5110 +2904 9568 0.7410 +2904 9578 0.4020 +2904 9699 0.4620 +2904 9721 0.5710 +2904 9722 0.5110 +2904 9743 0.4630 +2904 9863 0.5950 +2904 9970 0.4460 +2904 9971 0.6600 +2904 10243 0.5260 +2904 10280 0.4630 +2904 10368 0.8000 +2904 10369 0.8930 +2904 10399 0.7770 +2904 10611 0.5140 +2904 10716 0.7360 +2904 10755 0.4810 +2904 11141 0.4170 +2904 11336 0.5560 +2904 22829 0.4480 +2904 22871 0.7550 +2904 22895 0.5650 +2904 22941 0.6280 +2904 22997 0.4310 +2904 22999 0.4470 +2904 23096 0.5770 +2904 23191 0.4990 +2904 23236 0.5200 +2904 23237 0.7370 +2904 23314 0.4320 +2904 23394 0.4350 +2904 23426 0.4770 +2904 23513 0.4940 +2904 23621 0.4180 +2904 26011 0.4400 +2904 26037 0.5470 +2904 26047 0.5420 +2904 27091 0.7480 +2904 27092 0.7630 +2904 27185 0.5430 +2904 28514 0.4080 +2904 29119 0.4690 +2904 30851 0.4760 +2904 50944 0.7520 +2904 51806 0.9270 +2904 54413 0.5730 +2904 54970 0.4450 +2904 55327 0.7260 +2904 55737 0.4610 +2904 55777 0.4400 +2904 55914 0.4400 +2904 57030 0.6890 +2904 57084 0.6240 +2904 57468 0.5740 +2904 57497 0.6850 +2904 57502 0.5460 +2904 57524 0.4150 +2904 57554 0.7560 +2904 57555 0.4960 +2904 57576 0.9760 +2904 57622 0.5950 +2904 57680 0.5530 +2904 58512 0.7530 +2904 59283 0.8220 +2904 59284 0.7670 +2904 60412 0.7710 +2904 63826 0.5060 +2904 63974 0.4290 +2904 64061 0.4610 +2904 64130 0.8440 +2904 64478 0.4220 +2904 81832 0.6130 +2904 83473 0.4650 +2904 84152 0.5410 +2904 84687 0.4490 +2904 84867 0.7770 +2904 85358 0.7850 +2904 85461 0.6790 +2904 91860 0.9260 +2904 93145 0.7370 +2904 93986 0.4900 +2904 94032 0.4190 +2904 112755 0.4890 +2904 116443 0.9990 +2904 116444 0.9960 +2904 116986 0.4990 +2904 118427 0.4690 +2904 137902 0.5270 +2904 140679 0.5650 +2904 146713 0.6370 +2904 149111 0.7560 +2904 163688 0.9260 +2904 165829 0.4300 +2904 170572 0.5870 +2904 200909 0.5730 +2904 254263 0.7740 +2904 259197 0.4220 +2904 285242 0.5820 +2904 375567 0.5710 +2904 388336 0.6940 +2904 392617 0.4590 +2904 402117 0.6020 +2904 440829 0.5510 +2904 728378 0.5180 +2904 729956 0.6840 +2904 729993 0.7790 +2905 2906 0.9980 +2905 2911 0.6160 +2905 2912 0.6260 +2905 2913 0.6050 +2905 2914 0.6230 +2905 2915 0.6210 +2905 2916 0.5720 +2905 2917 0.4830 +2905 2918 0.6020 +2905 3084 0.6750 +2905 3359 0.8030 +2905 3751 0.6000 +2905 3765 0.4480 +2905 4155 0.4430 +2905 4747 0.6120 +2905 4842 0.9220 +2905 4879 0.4930 +2905 5023 0.9170 +2905 5024 0.9090 +2905 5025 0.9050 +2905 5026 0.9060 +2905 5027 0.9060 +2905 5173 0.9270 +2905 5499 0.6690 +2905 5500 0.6580 +2905 5501 0.6590 +2905 5566 0.7240 +2905 5567 0.7300 +2905 5568 0.7250 +2905 5816 0.7070 +2905 6505 0.4460 +2905 6506 0.5460 +2905 6507 0.4890 +2905 6511 0.4390 +2905 6529 0.4110 +2905 6714 0.4860 +2905 7074 0.4520 +2905 7082 0.4390 +2905 7182 0.4590 +2905 8573 0.5640 +2905 8825 0.5280 +2905 9127 0.9230 +2905 9177 0.6570 +2905 9542 0.5220 +2905 9721 0.5780 +2905 9863 0.4090 +2905 10368 0.7880 +2905 10369 0.8170 +2905 10611 0.4990 +2905 10718 0.4610 +2905 26037 0.5290 +2905 27091 0.7470 +2905 27092 0.7790 +2905 50944 0.4160 +2905 51806 0.7440 +2905 55327 0.5110 +2905 56253 0.4030 +2905 57030 0.4540 +2905 57084 0.4050 +2905 57497 0.6920 +2905 57554 0.5820 +2905 57576 0.5930 +2905 57622 0.5310 +2905 59283 0.7610 +2905 59284 0.7720 +2905 64130 0.5110 +2905 84687 0.4030 +2905 91860 0.7410 +2905 93145 0.7360 +2905 116443 0.9980 +2905 116444 0.9960 +2905 118427 0.4290 +2905 145957 0.5120 +2905 149111 0.7360 +2905 152485 0.5130 +2905 163688 0.7410 +2905 170572 0.5660 +2905 200909 0.5710 +2905 254263 0.7650 +2905 285242 0.5630 +2905 375567 0.5710 +2905 388336 0.5950 +2905 402117 0.5790 +2905 440829 0.5780 +2905 729956 0.6380 +2905 729993 0.7330 +2906 2907 0.6390 +2906 2911 0.6780 +2906 2912 0.6150 +2906 2913 0.6750 +2906 2914 0.5790 +2906 2915 0.5560 +2906 2916 0.4850 +2906 2917 0.6720 +2906 2918 0.6320 +2906 3084 0.4920 +2906 3265 0.5240 +2906 3359 0.7800 +2906 3751 0.5580 +2906 3845 0.5150 +2906 4734 0.4040 +2906 4747 0.4950 +2906 4842 0.9450 +2906 4893 0.5150 +2906 4909 0.4170 +2906 5023 0.9130 +2906 5024 0.9130 +2906 5025 0.9020 +2906 5026 0.9080 +2906 5027 0.9020 +2906 5173 0.9470 +2906 5499 0.6590 +2906 5500 0.6580 +2906 5501 0.6590 +2906 5566 0.7130 +2906 5567 0.7150 +2906 5568 0.7120 +2906 5621 0.7790 +2906 5816 0.4590 +2906 5923 0.4530 +2906 5924 0.4770 +2906 6505 0.4250 +2906 6506 0.4600 +2906 6507 0.4400 +2906 6511 0.4180 +2906 6714 0.5070 +2906 8573 0.5640 +2906 8672 0.4030 +2906 8825 0.5110 +2906 8997 0.4180 +2906 9001 0.4360 +2906 9127 0.9150 +2906 9166 0.8560 +2906 9167 0.8390 +2906 9177 0.5700 +2906 9229 0.6170 +2906 9578 0.4410 +2906 9721 0.5700 +2906 10368 0.7480 +2906 10369 0.7950 +2906 10611 0.4990 +2906 26037 0.5300 +2906 27091 0.7510 +2906 27092 0.7870 +2906 51806 0.7390 +2906 55327 0.5110 +2906 57030 0.4090 +2906 57497 0.5950 +2906 57554 0.4920 +2906 57576 0.5800 +2906 57622 0.5270 +2906 58512 0.4510 +2906 59283 0.7780 +2906 59284 0.7950 +2906 64130 0.5150 +2906 90993 0.4630 +2906 91860 0.7400 +2906 93145 0.7380 +2906 116443 0.9980 +2906 116444 0.9960 +2906 116986 0.4770 +2906 126147 0.4530 +2906 149111 0.7620 +2906 163688 0.7380 +2906 170572 0.5660 +2906 200909 0.6060 +2906 254263 0.7610 +2906 285242 0.5640 +2906 285513 0.4100 +2906 375567 0.5890 +2906 388336 0.5640 +2906 402117 0.5470 +2906 440829 0.5400 +2906 729956 0.5740 +2906 729993 0.7670 +2907 3708 0.5040 +2907 3710 0.5060 +2907 5339 0.5440 +2907 6720 0.4970 +2907 7009 0.7130 +2907 7038 0.6910 +2907 8733 0.4460 +2907 9267 0.4060 +2907 10016 0.4830 +2907 23549 0.4510 +2907 27069 0.6010 +2907 29894 0.4490 +2907 29922 0.4240 +2907 50626 0.5400 +2907 51806 0.4690 +2907 54847 0.4090 +2907 80728 0.4750 +2907 81858 0.5000 +2907 83886 0.4210 +2907 84232 0.5560 +2907 84875 0.6470 +2907 84988 0.4700 +2907 91860 0.4470 +2907 163688 0.4470 +2907 203054 0.4340 +2907 375686 0.4010 +2907 440023 0.4150 +2907 727957 0.4760 +2908 2932 0.4110 +2908 2969 0.4410 +2908 3021 0.4450 +2908 3043 0.4150 +2908 3065 0.9290 +2908 3066 0.8620 +2908 3082 0.4450 +2908 3091 0.8520 +2908 3146 0.4510 +2908 3164 0.6510 +2908 3169 0.6680 +2908 3171 0.4880 +2908 3172 0.6700 +2908 3175 0.4250 +2908 3202 0.4040 +2908 3211 0.4920 +2908 3290 0.8520 +2908 3291 0.8160 +2908 3303 0.7460 +2908 3304 0.9350 +2908 3305 0.9850 +2908 3306 0.6670 +2908 3308 0.9920 +2908 3309 0.5300 +2908 3312 0.7570 +2908 3320 0.9990 +2908 3326 0.9980 +2908 3329 0.5050 +2908 3337 0.5980 +2908 3350 0.6150 +2908 3356 0.4470 +2908 3383 0.5140 +2908 3416 0.4480 +2908 3451 0.4250 +2908 3458 0.4910 +2908 3479 0.4800 +2908 3481 0.4880 +2908 3484 0.5350 +2908 3552 0.4530 +2908 3553 0.6020 +2908 3558 0.6220 +2908 3565 0.6810 +2908 3569 0.6300 +2908 3576 0.4570 +2908 3586 0.6350 +2908 3593 0.4680 +2908 3630 0.6290 +2908 3643 0.5670 +2908 3688 0.4240 +2908 3725 0.9610 +2908 3727 0.4910 +2908 3815 0.5370 +2908 3845 0.4510 +2908 3952 0.6700 +2908 4087 0.7890 +2908 4088 0.9420 +2908 4089 0.6160 +2908 4128 0.5550 +2908 4129 0.4090 +2908 4158 0.5790 +2908 4193 0.4700 +2908 4204 0.4460 +2908 4306 0.9290 +2908 4318 0.4020 +2908 4602 0.5090 +2908 4609 0.6550 +2908 4691 0.5750 +2908 4763 0.4270 +2908 4772 0.4520 +2908 4790 0.8780 +2908 4791 0.4560 +2908 4792 0.4490 +2908 4803 0.4180 +2908 4824 0.4050 +2908 4843 0.4230 +2908 4852 0.5070 +2908 4886 0.4800 +2908 4889 0.4160 +2908 4915 0.9050 +2908 4988 0.5710 +2908 5020 0.5310 +2908 5021 0.5210 +2908 5087 0.6510 +2908 5106 0.4130 +2908 5241 0.7330 +2908 5243 0.5580 +2908 5295 0.6380 +2908 5409 0.4330 +2908 5443 0.8540 +2908 5449 0.6660 +2908 5451 0.8030 +2908 5452 0.6720 +2908 5465 0.5210 +2908 5468 0.6610 +2908 5469 0.8520 +2908 5481 0.6380 +2908 5506 0.6560 +2908 5566 0.7000 +2908 5567 0.7080 +2908 5568 0.7000 +2908 5581 0.4700 +2908 5595 0.4300 +2908 5599 0.5400 +2908 5617 0.5060 +2908 5742 0.5560 +2908 5743 0.6750 +2908 5753 0.7400 +2908 5763 0.4590 +2908 5831 0.4320 +2908 5832 0.4530 +2908 5894 0.4140 +2908 5914 0.5210 +2908 5927 0.4140 +2908 5970 0.8500 +2908 5972 0.4550 +2908 5983 0.4130 +2908 6019 0.4390 +2908 6045 0.5000 +2908 6256 0.5380 +2908 6257 0.6140 +2908 6374 0.5120 +2908 6446 0.6400 +2908 6520 0.4350 +2908 6532 0.6960 +2908 6595 0.7200 +2908 6597 0.9240 +2908 6598 0.4050 +2908 6599 0.8020 +2908 6601 0.4170 +2908 6602 0.7440 +2908 6605 0.4910 +2908 6667 0.4500 +2908 6714 0.4470 +2908 6760 0.4980 +2908 6770 0.4240 +2908 6772 0.7010 +2908 6774 0.9810 +2908 6776 0.7980 +2908 6777 0.8350 +2908 6778 0.5720 +2908 6898 0.5940 +2908 6908 0.5500 +2908 7004 0.4970 +2908 7041 0.5930 +2908 7054 0.4100 +2908 7080 0.4390 +2908 7088 0.4430 +2908 7090 0.5230 +2908 7099 0.4740 +2908 7110 0.4500 +2908 7124 0.7450 +2908 7132 0.4200 +2908 7157 0.9360 +2908 7184 0.5180 +2908 7251 0.5110 +2908 7291 0.5470 +2908 7295 0.6260 +2908 7329 0.7310 +2908 7332 0.5480 +2908 7337 0.5240 +2908 7341 0.7940 +2908 7412 0.4990 +2908 7442 0.4610 +2908 7532 0.4470 +2908 7533 0.6520 +2908 7704 0.4620 +2908 7818 0.7360 +2908 7837 0.4320 +2908 8085 0.5590 +2908 8202 0.9030 +2908 8204 0.8750 +2908 8289 0.7580 +2908 8290 0.4370 +2908 8356 0.4290 +2908 8361 0.4240 +2908 8431 0.4250 +2908 8600 0.4540 +2908 8648 0.9970 +2908 8655 0.4230 +2908 8801 0.4570 +2908 8805 0.6010 +2908 8864 0.9050 +2908 9063 0.4950 +2908 9125 0.4270 +2908 9213 0.5740 +2908 9252 0.4560 +2908 9282 0.8080 +2908 9314 0.5730 +2908 9319 0.4330 +2908 9321 0.4070 +2908 9325 0.4440 +2908 9326 0.4360 +2908 9370 0.6020 +2908 9575 0.5020 +2908 9611 0.9950 +2908 9612 0.9070 +2908 9739 0.4980 +2908 9967 0.4600 +2908 10013 0.8240 +2908 10121 0.4100 +2908 10131 0.4420 +2908 10146 0.4620 +2908 10155 0.6340 +2908 10273 0.8560 +2908 10432 0.5590 +2908 10445 0.4620 +2908 10499 0.9980 +2908 10540 0.4460 +2908 10587 0.6280 +2908 10614 0.4860 +2908 10664 0.6080 +2908 10671 0.4090 +2908 10725 0.5210 +2908 10728 0.9970 +2908 10891 0.9870 +2908 10963 0.9930 +2908 10987 0.4730 +2908 11059 0.5150 +2908 11258 0.4050 +2908 11319 0.4670 +2908 23054 0.6820 +2908 23132 0.7630 +2908 23137 0.4090 +2908 23175 0.5380 +2908 23186 0.4400 +2908 23327 0.4150 +2908 23411 0.4150 +2908 23426 0.7820 +2908 23543 0.4240 +2908 23636 0.5040 +2908 23678 0.4530 +2908 25828 0.4160 +2908 25836 0.5200 +2908 25862 0.5250 +2908 25962 0.4270 +2908 26205 0.5060 +2908 26227 0.4730 +2908 27043 0.6590 +2908 28999 0.5020 +2908 29128 0.4400 +2908 29947 0.4080 +2908 30009 0.5430 +2908 51143 0.4080 +2908 51164 0.4110 +2908 51586 0.7260 +2908 53917 0.5020 +2908 54106 0.4820 +2908 54504 0.5250 +2908 55128 0.4120 +2908 55294 0.4190 +2908 55827 0.8180 +2908 55860 0.5140 +2908 55898 0.4220 +2908 55929 0.4940 +2908 56729 0.5360 +2908 57472 0.5070 +2908 58508 0.4470 +2908 59269 0.5600 +2908 79004 0.4770 +2908 79039 0.5760 +2908 79154 0.4840 +2908 79718 0.4920 +2908 80205 0.5520 +2908 81876 0.4170 +2908 84516 0.4010 +2908 84661 0.4420 +2908 84676 0.8280 +2908 93661 0.4030 +2908 113263 0.4420 +2908 114907 0.4090 +2908 121278 0.4640 +2908 133482 0.4390 +2908 133522 0.5830 +2908 137902 0.4280 +2908 140735 0.4380 +2908 200895 0.4970 +2908 201163 0.4690 +2908 220074 0.4100 +2908 221037 0.4770 +2908 348235 0.6150 +2908 440093 0.4370 +2908 440387 0.4070 +2908 440686 0.4300 +2908 653604 0.4440 +2908 104909134 0.8410 +2909 2969 0.8360 +2909 2975 0.4460 +2909 3059 0.7430 +2909 3265 0.6070 +2909 3678 0.4200 +2909 3791 0.6330 +2909 3845 0.6280 +2909 3984 0.4820 +2909 4233 0.6140 +2909 4323 0.4830 +2909 4690 0.6430 +2909 4893 0.5920 +2909 5010 0.4800 +2909 5364 0.6870 +2909 5747 0.7040 +2909 5753 0.9410 +2909 5829 0.6020 +2909 5879 0.7780 +2909 5880 0.6600 +2909 5881 0.5560 +2909 5921 0.9990 +2909 6093 0.7070 +2909 6242 0.5160 +2909 6714 0.9600 +2909 7070 0.9080 +2909 7074 0.5330 +2909 7094 0.4210 +2909 7410 0.5360 +2909 7414 0.6660 +2909 8153 0.9310 +2909 8650 0.4790 +2909 8826 0.4020 +2909 8874 0.4670 +2909 8976 0.7470 +2909 9138 0.5400 +2909 9181 0.6100 +2909 9253 0.4810 +2909 9459 0.4020 +2909 9475 0.4470 +2909 9564 0.5900 +2909 9644 0.5840 +2909 9826 0.6330 +2909 9827 0.4200 +2909 10507 0.6430 +2909 23201 0.4550 +2909 23365 0.5690 +2909 23384 0.4490 +2909 23433 0.6160 +2909 27289 0.9750 +2909 28964 0.4370 +2909 29984 0.6740 +2909 57381 0.5950 +2909 57492 0.4100 +2909 64283 0.5300 +2909 83660 0.4340 +2909 196528 0.4340 +2911 2912 0.6740 +2911 2913 0.6840 +2911 2914 0.9200 +2911 2915 0.9770 +2911 2916 0.4740 +2911 2917 0.6830 +2911 2918 0.5070 +2911 2923 0.4360 +2911 3009 0.4220 +2911 3024 0.4790 +2911 3064 0.6540 +2911 3071 0.6090 +2911 3350 0.4090 +2911 3356 0.4370 +2911 3480 0.4470 +2911 3576 0.6750 +2911 3708 0.8680 +2911 3710 0.6780 +2911 3746 0.4990 +2911 3751 0.4020 +2911 4067 0.4370 +2911 4915 0.4850 +2911 5173 0.4110 +2911 5295 0.4800 +2911 5330 0.6190 +2911 5331 0.6240 +2911 5332 0.5310 +2911 5580 0.4290 +2911 5582 0.5740 +2911 5594 0.4150 +2911 5595 0.5480 +2911 5599 0.4060 +2911 5816 0.5160 +2911 5957 0.4380 +2911 6002 0.4300 +2911 6010 0.4420 +2911 6095 0.9150 +2911 6261 0.4580 +2911 6400 0.4370 +2911 6505 0.4220 +2911 6506 0.5730 +2911 6507 0.5000 +2911 6511 0.5000 +2911 6608 0.4260 +2911 6712 0.9400 +2911 6714 0.6550 +2911 6855 0.5350 +2911 7204 0.5440 +2911 7220 0.8480 +2911 7222 0.6870 +2911 7224 0.5870 +2911 7408 0.4970 +2911 8087 0.4350 +2911 8499 0.5080 +2911 8936 0.4010 +2911 8997 0.5320 +2911 9118 0.6650 +2911 9211 0.6670 +2911 9228 0.6280 +2911 9229 0.9380 +2911 9369 0.6870 +2911 9378 0.7050 +2911 9379 0.6760 +2911 9454 0.9900 +2911 9455 0.9890 +2911 9456 0.9980 +2911 9463 0.4510 +2911 9513 0.4520 +2911 9568 0.8270 +2911 9630 0.6920 +2911 10006 0.4050 +2911 10133 0.4760 +2911 10203 0.9070 +2911 10266 0.9040 +2911 10267 0.9090 +2911 10268 0.9040 +2911 10524 0.9030 +2911 10672 0.9070 +2911 10687 0.5620 +2911 10787 0.6300 +2911 10800 0.4220 +2911 22829 0.5730 +2911 22839 0.5450 +2911 22871 0.6520 +2911 22941 0.7140 +2911 23154 0.5060 +2911 23191 0.6950 +2911 23236 0.7290 +2911 23237 0.4030 +2911 26047 0.6240 +2911 26586 0.4830 +2911 26999 0.6270 +2911 50944 0.8990 +2911 51314 0.4090 +2911 51806 0.4320 +2911 54413 0.6480 +2911 55845 0.5430 +2911 56896 0.6000 +2911 57030 0.4820 +2911 57084 0.4820 +2911 57105 0.4570 +2911 57502 0.6240 +2911 57555 0.6100 +2911 57628 0.6250 +2911 58512 0.6880 +2911 84107 0.5950 +2911 84687 0.5420 +2911 85358 0.7880 +2911 85461 0.6620 +2911 91860 0.4270 +2911 92737 0.5910 +2911 115557 0.5370 +2911 116443 0.5370 +2911 116444 0.4660 +2911 116986 0.9280 +2911 140679 0.4320 +2911 151651 0.4080 +2911 160622 0.7650 +2911 163688 0.4280 +2911 165829 0.6650 +2911 197335 0.5770 +2911 222545 0.4770 +2911 402665 0.6030 +2912 2913 0.9390 +2912 2914 0.9520 +2912 2915 0.4990 +2912 2916 0.4770 +2912 2917 0.9450 +2912 2918 0.5220 +2912 3060 0.4160 +2912 3350 0.5880 +2912 3356 0.9980 +2912 3357 0.7830 +2912 3358 0.4860 +2912 3576 0.6650 +2912 4915 0.4820 +2912 4988 0.4570 +2912 5173 0.4030 +2912 5368 0.4590 +2912 5726 0.5220 +2912 5816 0.5200 +2912 6002 0.4090 +2912 6505 0.4640 +2912 6506 0.6510 +2912 6507 0.4740 +2912 6511 0.4550 +2912 6531 0.4400 +2912 6714 0.5950 +2912 6853 0.4090 +2912 7166 0.4360 +2912 9052 0.8310 +2912 9456 0.4520 +2912 9568 0.6600 +2912 10672 0.6630 +2912 23426 0.4250 +2912 23657 0.4620 +2912 26086 0.6080 +2912 29899 0.4070 +2912 50831 0.5590 +2912 50832 0.5230 +2912 50833 0.5150 +2912 50834 0.5000 +2912 50835 0.5060 +2912 50836 0.5010 +2912 50837 0.4990 +2912 50838 0.5010 +2912 50839 0.4990 +2912 50840 0.4990 +2912 51314 0.4090 +2912 51704 0.4210 +2912 54331 0.9360 +2912 54429 0.5040 +2912 55890 0.8330 +2912 57030 0.5020 +2912 57084 0.4240 +2912 57524 0.4570 +2912 63940 0.4160 +2912 79054 0.6070 +2912 80834 0.5360 +2912 80835 0.5430 +2912 83756 0.5500 +2912 116443 0.6370 +2912 116444 0.4480 +2912 126006 0.4420 +2912 151651 0.4380 +2912 197335 0.5770 +2912 222545 0.5220 +2912 259285 0.5130 +2912 259286 0.5060 +2912 259287 0.5220 +2912 259289 0.4990 +2912 259290 0.4990 +2912 259292 0.4990 +2912 259293 0.4990 +2912 259294 0.4990 +2912 259295 0.4990 +2912 259296 0.5040 +2912 338398 0.5450 +2912 347730 0.4440 +2912 353164 0.5080 +2912 389761 0.4070 +2912 389763 0.4050 +2913 2914 0.5380 +2913 2915 0.7200 +2913 2916 0.5110 +2913 2917 0.5500 +2913 2918 0.5160 +2913 2936 0.4160 +2913 3350 0.4470 +2913 3356 0.5360 +2913 3358 0.4520 +2913 3361 0.4170 +2913 3576 0.6560 +2913 4889 0.4950 +2913 4915 0.4510 +2913 5354 0.4130 +2913 5568 0.6640 +2913 5578 0.7200 +2913 5625 0.4010 +2913 5726 0.5220 +2913 5816 0.4370 +2913 5999 0.5940 +2913 6505 0.4300 +2913 6506 0.6490 +2913 6507 0.5400 +2913 6511 0.4370 +2913 6529 0.5260 +2913 6616 0.5180 +2913 6714 0.5860 +2913 6750 0.4350 +2913 8573 0.4170 +2913 9368 0.5000 +2913 9378 0.4400 +2913 9456 0.5540 +2913 9463 0.5340 +2913 9568 0.7050 +2913 10003 0.5020 +2913 10399 0.5520 +2913 10672 0.6660 +2913 26086 0.4370 +2913 27185 0.6070 +2913 29899 0.4070 +2913 50831 0.5250 +2913 50832 0.5240 +2913 50833 0.5280 +2913 50834 0.5030 +2913 50835 0.5170 +2913 50836 0.5090 +2913 50837 0.5010 +2913 50838 0.4990 +2913 50839 0.5290 +2913 50840 0.5040 +2913 51314 0.4130 +2913 51806 0.4880 +2913 54429 0.6350 +2913 54704 0.4100 +2913 56899 0.4140 +2913 57030 0.4520 +2913 57084 0.4750 +2913 63940 0.4320 +2913 63974 0.4010 +2913 80834 0.5190 +2913 80835 0.5370 +2913 83756 0.5310 +2913 84062 0.5790 +2913 91752 0.4470 +2913 91860 0.4910 +2913 116443 0.6960 +2913 116444 0.4450 +2913 126006 0.4420 +2913 151651 0.4330 +2913 163688 0.4860 +2913 197335 0.5770 +2913 220074 0.5850 +2913 222545 0.5250 +2913 259285 0.5180 +2913 259286 0.5170 +2913 259287 0.5220 +2913 259289 0.4990 +2913 259290 0.4990 +2913 259292 0.4990 +2913 259293 0.4990 +2913 259294 0.4990 +2913 259295 0.4990 +2913 259296 0.5050 +2913 267012 0.5400 +2913 338398 0.5040 +2913 347731 0.4010 +2913 353164 0.5080 +2914 2915 0.5280 +2914 2916 0.9520 +2914 2917 0.8700 +2914 2918 0.9410 +2914 3350 0.7600 +2914 3351 0.5020 +2914 3352 0.4660 +2914 3356 0.4150 +2914 3576 0.6560 +2914 5726 0.5460 +2914 6092 0.4170 +2914 6506 0.4610 +2914 6507 0.4420 +2914 6511 0.4350 +2914 6616 0.5800 +2914 6714 0.5730 +2914 6754 0.4020 +2914 6853 0.5290 +2914 7402 0.4320 +2914 8554 0.4620 +2914 9456 0.6020 +2914 9568 0.6660 +2914 10672 0.6510 +2914 26086 0.4170 +2914 29899 0.4110 +2914 30012 0.4260 +2914 50831 0.5220 +2914 50832 0.5220 +2914 50833 0.5330 +2914 50834 0.5620 +2914 50835 0.5040 +2914 50836 0.4990 +2914 50837 0.4990 +2914 50838 0.5050 +2914 50839 0.4990 +2914 50840 0.4990 +2914 51314 0.4100 +2914 54331 0.8170 +2914 54429 0.5040 +2914 57030 0.4570 +2914 63940 0.4160 +2914 80834 0.5630 +2914 80835 0.6000 +2914 83756 0.6040 +2914 114327 0.4410 +2914 114815 0.4120 +2914 116443 0.6650 +2914 116444 0.4990 +2914 126006 0.4570 +2914 151651 0.4080 +2914 197335 0.5770 +2914 222545 0.5360 +2914 259285 0.5300 +2914 259286 0.5150 +2914 259287 0.5480 +2914 259289 0.4990 +2914 259290 0.4990 +2914 259292 0.4990 +2914 259293 0.4990 +2914 259294 0.4990 +2914 259295 0.4990 +2914 259296 0.5040 +2914 338398 0.5040 +2914 353164 0.5140 +2915 2916 0.4930 +2915 2917 0.5360 +2915 2918 0.5140 +2915 2932 0.4020 +2915 3024 0.4810 +2915 3059 0.5300 +2915 3350 0.7110 +2915 3351 0.4750 +2915 3356 0.7140 +2915 3358 0.5050 +2915 3361 0.5340 +2915 3576 0.6720 +2915 3708 0.8090 +2915 3710 0.6560 +2915 3746 0.4010 +2915 3751 0.5440 +2915 3765 0.4780 +2915 3766 0.4270 +2915 4129 0.4120 +2915 4131 0.5460 +2915 4204 0.4350 +2915 4340 0.4210 +2915 4915 0.5590 +2915 4988 0.7030 +2915 5173 0.4810 +2915 5179 0.5830 +2915 5330 0.5700 +2915 5331 0.5620 +2915 5567 0.6500 +2915 5578 0.4540 +2915 5579 0.4410 +2915 5581 0.4590 +2915 5582 0.4460 +2915 5590 0.5150 +2915 5595 0.4140 +2915 5621 0.9530 +2915 5641 0.4950 +2915 5816 0.6130 +2915 5957 0.4310 +2915 5999 0.5980 +2915 6002 0.4630 +2915 6010 0.4450 +2915 6477 0.6720 +2915 6505 0.5150 +2915 6506 0.6900 +2915 6507 0.5780 +2915 6511 0.4100 +2915 6529 0.4750 +2915 6530 0.5970 +2915 6531 0.4850 +2915 6616 0.5050 +2915 6714 0.5710 +2915 6752 0.4770 +2915 6853 0.6480 +2915 6854 0.6090 +2915 6855 0.4210 +2915 6863 0.4450 +2915 7204 0.5440 +2915 7220 0.5320 +2915 7408 0.4690 +2915 7442 0.6530 +2915 8087 0.5760 +2915 8224 0.5710 +2915 8831 0.6190 +2915 8997 0.5990 +2915 9211 0.7100 +2915 9228 0.6860 +2915 9229 0.9150 +2915 9351 0.5550 +2915 9369 0.7240 +2915 9378 0.7660 +2915 9379 0.7130 +2915 9454 0.9290 +2915 9455 0.9650 +2915 9456 0.9990 +2915 9463 0.4580 +2915 9513 0.7610 +2915 9568 0.4430 +2915 9630 0.6820 +2915 9758 0.5310 +2915 9992 0.4520 +2915 10003 0.4120 +2915 10133 0.4200 +2915 10243 0.5450 +2915 10381 0.5310 +2915 10672 0.6650 +2915 10687 0.6020 +2915 10800 0.4530 +2915 11255 0.4600 +2915 22829 0.6110 +2915 22839 0.6030 +2915 22871 0.7160 +2915 22941 0.8690 +2915 23114 0.4430 +2915 23154 0.8210 +2915 23191 0.5660 +2915 23236 0.7490 +2915 23237 0.4810 +2915 26047 0.6900 +2915 26052 0.5180 +2915 27156 0.4530 +2915 29904 0.5560 +2915 30010 0.5400 +2915 30012 0.4080 +2915 50944 0.9390 +2915 51314 0.4090 +2915 51806 0.4940 +2915 54413 0.7350 +2915 54550 0.5420 +2915 56896 0.5070 +2915 57030 0.5510 +2915 57084 0.5250 +2915 57105 0.4520 +2915 57502 0.6960 +2915 57555 0.6680 +2915 57628 0.7780 +2915 58512 0.7860 +2915 84107 0.5160 +2915 84152 0.4760 +2915 84867 0.5800 +2915 85358 0.8800 +2915 91860 0.4900 +2915 92737 0.5560 +2915 115557 0.5340 +2915 116443 0.6990 +2915 116444 0.4190 +2915 140679 0.5000 +2915 146713 0.4120 +2915 151651 0.4080 +2915 160622 0.8180 +2915 163688 0.4900 +2915 197335 0.5770 +2915 222545 0.4420 +2915 402665 0.6240 +2915 104909134 0.5210 +2916 2917 0.6670 +2916 2918 0.6350 +2916 3352 0.4510 +2916 3354 0.5080 +2916 3576 0.6500 +2916 4988 0.4720 +2916 5145 0.5530 +2916 5158 0.5770 +2916 5578 0.5020 +2916 5726 0.5500 +2916 5957 0.4540 +2916 6000 0.4550 +2916 6010 0.6570 +2916 6011 0.4090 +2916 6017 0.4230 +2916 6714 0.5520 +2916 7220 0.4660 +2916 7299 0.4390 +2916 8786 0.4910 +2916 9187 0.4890 +2916 9290 0.4190 +2916 9568 0.6050 +2916 10590 0.5140 +2916 10672 0.6510 +2916 10681 0.5220 +2916 11081 0.4310 +2916 26086 0.4680 +2916 29899 0.4250 +2916 30813 0.5500 +2916 50831 0.5220 +2916 50832 0.5710 +2916 50833 0.5460 +2916 50834 0.5460 +2916 50835 0.5070 +2916 50836 0.5070 +2916 50837 0.5030 +2916 50838 0.5050 +2916 50839 0.4990 +2916 50840 0.5060 +2916 51314 0.4090 +2916 54429 0.5040 +2916 54549 0.4430 +2916 56344 0.5480 +2916 56413 0.4220 +2916 57010 0.8190 +2916 60506 0.9590 +2916 63940 0.4160 +2916 80834 0.5240 +2916 80835 0.5310 +2916 83756 0.5160 +2916 93107 0.6280 +2916 93589 0.5160 +2916 93649 0.4710 +2916 94137 0.5320 +2916 94233 0.5930 +2916 114794 0.4880 +2916 116443 0.4800 +2916 116444 0.4520 +2916 126006 0.6330 +2916 151651 0.4130 +2916 197335 0.5800 +2916 222545 0.5160 +2916 259285 0.5360 +2916 259286 0.5180 +2916 259287 0.5290 +2916 259289 0.4990 +2916 259290 0.4990 +2916 259292 0.4990 +2916 259293 0.4990 +2916 259294 0.4990 +2916 259295 0.4990 +2916 259296 0.5080 +2916 338398 0.5040 +2916 338917 0.4530 +2916 345193 0.7230 +2916 353164 0.5140 +2916 388531 0.5100 +2916 392617 0.6960 +2916 440435 0.7130 +2917 2918 0.9360 +2917 3356 0.4310 +2917 3576 0.6500 +2917 4988 0.5710 +2917 5578 0.6010 +2917 5726 0.6340 +2917 6506 0.4670 +2917 6714 0.5710 +2917 7068 0.5700 +2917 7402 0.4310 +2917 9378 0.4180 +2917 9463 0.9420 +2917 9568 0.6530 +2917 10672 0.6510 +2917 10788 0.7380 +2917 23426 0.6490 +2917 26086 0.4450 +2917 29899 0.4070 +2917 50831 0.5230 +2917 50832 0.5260 +2917 50833 0.5590 +2917 50834 0.5430 +2917 50835 0.5120 +2917 50836 0.5170 +2917 50837 0.5060 +2917 50838 0.5120 +2917 50839 0.5000 +2917 50840 0.4990 +2917 51314 0.4100 +2917 51806 0.6620 +2917 54429 0.5040 +2917 57512 0.4020 +2917 63940 0.4160 +2917 65122 0.4800 +2917 80834 0.5270 +2917 80835 0.6710 +2917 83756 0.5280 +2917 84871 0.4570 +2917 91860 0.6590 +2917 116443 0.6760 +2917 126006 0.4420 +2917 132204 0.4080 +2917 135138 0.4040 +2917 151651 0.4270 +2917 163688 0.6590 +2917 197335 0.5770 +2917 222545 0.5210 +2917 259285 0.5190 +2917 259286 0.5250 +2917 259287 0.5230 +2917 259289 0.4990 +2917 259290 0.4990 +2917 259292 0.4990 +2917 259293 0.4990 +2917 259294 0.4990 +2917 259295 0.4990 +2917 259296 0.5070 +2917 337960 0.5060 +2917 338398 0.5520 +2917 347730 0.4120 +2917 353164 0.5590 +2917 389763 0.4140 +2917 392617 0.6640 +2918 3356 0.6110 +2918 3576 0.6560 +2918 3708 0.4410 +2918 4915 0.4390 +2918 4978 0.4700 +2918 5521 0.4290 +2918 5726 0.5470 +2918 5789 0.5640 +2918 6416 0.4490 +2918 6505 0.4220 +2918 6506 0.4930 +2918 6507 0.4240 +2918 6511 0.4030 +2918 6714 0.5850 +2918 7329 0.4840 +2918 7402 0.4320 +2918 8802 0.4300 +2918 9040 0.4170 +2918 9283 0.5250 +2918 9378 0.5550 +2918 9456 0.4220 +2918 9463 0.4010 +2918 9568 0.6390 +2918 10672 0.6650 +2918 23284 0.6500 +2918 23553 0.6830 +2918 26053 0.5200 +2918 26086 0.4170 +2918 29899 0.4070 +2918 50831 0.5260 +2918 50832 0.5240 +2918 50833 0.5640 +2918 50834 0.5400 +2918 50835 0.5070 +2918 50836 0.5060 +2918 50837 0.4990 +2918 50838 0.5050 +2918 50839 0.4990 +2918 50840 0.5000 +2918 51314 0.4090 +2918 51806 0.5210 +2918 53353 0.4630 +2918 54429 0.5040 +2918 63940 0.4160 +2918 80834 0.5120 +2918 80835 0.5750 +2918 83756 0.5280 +2918 85358 0.5970 +2918 91860 0.5300 +2918 116443 0.6260 +2918 116444 0.4520 +2918 126006 0.4420 +2918 151651 0.4080 +2918 163688 0.5160 +2918 197335 0.5770 +2918 222545 0.5080 +2918 259285 0.5780 +2918 259286 0.5160 +2918 259287 0.5220 +2918 259289 0.4990 +2918 259290 0.4990 +2918 259292 0.4990 +2918 259293 0.4990 +2918 259294 0.4990 +2918 259295 0.4990 +2918 259296 0.5040 +2918 338398 0.5040 +2918 353164 0.5140 +2918 392617 0.5230 +2919 2920 0.9960 +2919 2921 0.9960 +2919 3002 0.4580 +2919 3055 0.4730 +2919 3082 0.5190 +2919 3091 0.5390 +2919 3122 0.4190 +2919 3123 0.4480 +2919 3146 0.4560 +2919 3162 0.4070 +2919 3251 0.4040 +2919 3383 0.8450 +2919 3439 0.5830 +2919 3440 0.8140 +2919 3444 0.4820 +2919 3454 0.4200 +2919 3456 0.6230 +2919 3458 0.8870 +2919 3479 0.4550 +2919 3551 0.4260 +2919 3552 0.9620 +2919 3553 0.9780 +2919 3554 0.7370 +2919 3557 0.5960 +2919 3558 0.7160 +2919 3562 0.6980 +2919 3565 0.7380 +2919 3566 0.6160 +2919 3567 0.8190 +2919 3569 0.9820 +2919 3570 0.6680 +2919 3574 0.7970 +2919 3575 0.5660 +2919 3576 0.9570 +2919 3577 0.9990 +2919 3578 0.6770 +2919 3579 0.9990 +2919 3586 0.9190 +2919 3589 0.5330 +2919 3590 0.4370 +2919 3592 0.4410 +2919 3593 0.5550 +2919 3596 0.8260 +2919 3600 0.6710 +2919 3603 0.5750 +2919 3605 0.9020 +2919 3606 0.9180 +2919 3620 0.5080 +2919 3627 0.9920 +2919 3630 0.4480 +2919 3659 0.4740 +2919 3661 0.4320 +2919 3665 0.4400 +2919 3684 0.7020 +2919 3687 0.5980 +2919 3689 0.4910 +2919 3717 0.4160 +2919 3725 0.9520 +2919 3791 0.4060 +2919 3851 0.4340 +2919 3934 0.6730 +2919 3952 0.6600 +2919 3958 0.4110 +2919 3976 0.7020 +2919 4015 0.5630 +2919 4049 0.6160 +2919 4057 0.4050 +2919 4060 0.5020 +2919 4254 0.4180 +2919 4282 0.5280 +2919 4283 0.8590 +2919 4312 0.7520 +2919 4313 0.5030 +2919 4314 0.8210 +2919 4316 0.6570 +2919 4317 0.4760 +2919 4318 0.7140 +2919 4319 0.4860 +2919 4321 0.5570 +2919 4322 0.4660 +2919 4353 0.6700 +2919 4360 0.5320 +2919 4609 0.4420 +2919 4684 0.6380 +2919 4691 0.4590 +2919 4790 0.9630 +2919 4791 0.4470 +2919 4792 0.6650 +2919 4803 0.4520 +2919 4843 0.4710 +2919 5008 0.4890 +2919 5054 0.5900 +2919 5055 0.4100 +2919 5175 0.5730 +2919 5196 0.6980 +2919 5266 0.4540 +2919 5328 0.4890 +2919 5329 0.6050 +2919 5468 0.4220 +2919 5473 0.8780 +2919 5551 0.4060 +2919 5552 0.4810 +2919 5595 0.4790 +2919 5697 0.4550 +2919 5743 0.8480 +2919 5788 0.6380 +2919 5806 0.4210 +2919 5970 0.9430 +2919 5971 0.4620 +2919 6188 0.4040 +2919 6241 0.4270 +2919 6278 0.4950 +2919 6279 0.6010 +2919 6280 0.5290 +2919 6283 0.4180 +2919 6288 0.4180 +2919 6289 0.4380 +2919 6320 0.4770 +2919 6346 0.8700 +2919 6347 0.9800 +2919 6348 0.9480 +2919 6351 0.9410 +2919 6354 0.8660 +2919 6355 0.6890 +2919 6356 0.9990 +2919 6357 0.8000 +2919 6358 0.4120 +2919 6359 0.7310 +2919 6360 0.6970 +2919 6361 0.8120 +2919 6362 0.7530 +2919 6363 0.8880 +2919 6364 0.9810 +2919 6366 0.8310 +2919 6367 0.9200 +2919 6368 0.5710 +2919 6369 0.6300 +2919 6370 0.7650 +2919 6372 0.9990 +2919 6373 0.9280 +2919 6374 0.9990 +2919 6375 0.5210 +2919 6376 0.9390 +2919 6382 0.7610 +2919 6387 0.9470 +2919 6401 0.6320 +2919 6402 0.4900 +2919 6403 0.6590 +2919 6426 0.4030 +2919 6648 0.4630 +2919 6696 0.5120 +2919 6714 0.6920 +2919 6772 0.7080 +2919 6774 0.8210 +2919 7039 0.5480 +2919 7040 0.6240 +2919 7042 0.4370 +2919 7057 0.6070 +2919 7076 0.6630 +2919 7077 0.6480 +2919 7096 0.4800 +2919 7097 0.8790 +2919 7098 0.5820 +2919 7099 0.7170 +2919 7100 0.4740 +2919 7124 0.9550 +2919 7128 0.6220 +2919 7130 0.6560 +2919 7132 0.4900 +2919 7133 0.5650 +2919 7157 0.5170 +2919 7186 0.5070 +2919 7189 0.4320 +2919 7412 0.6830 +2919 7424 0.4230 +2919 7837 0.4910 +2919 7850 0.5240 +2919 7852 0.9980 +2919 8517 0.4530 +2919 8600 0.6330 +2919 8742 0.5700 +2919 8743 0.4320 +2919 8808 0.4390 +2919 8817 0.4200 +2919 8822 0.4180 +2919 8823 0.4220 +2919 8870 0.4850 +2919 9021 0.7240 +2919 9034 0.5790 +2919 9235 0.4550 +2919 9332 0.5020 +2919 9370 0.5900 +2919 9518 0.4210 +2919 9547 0.5700 +2919 9560 0.6180 +2919 10135 0.4330 +2919 10344 0.6980 +2919 10392 0.4230 +2919 10563 0.9330 +2919 10663 0.8710 +2919 10673 0.4010 +2919 10803 0.7500 +2919 10850 0.8140 +2919 11009 0.4620 +2919 11081 0.8390 +2919 23586 0.4280 +2919 23765 0.8200 +2919 26253 0.4850 +2919 26281 0.4210 +2919 26525 0.4290 +2919 27006 0.4220 +2919 27074 0.4170 +2919 27189 0.5460 +2919 27190 0.4440 +2919 29110 0.5410 +2919 29126 0.6070 +2919 29949 0.4780 +2919 50489 0.4400 +2919 50616 0.7180 +2919 50943 0.5470 +2919 51284 0.5050 +2919 51311 0.4130 +2919 51330 0.6170 +2919 51554 0.5410 +2919 51561 0.5170 +2919 54106 0.5280 +2919 54210 0.6590 +2919 54878 0.4380 +2919 56300 0.4690 +2919 56477 0.5770 +2919 57007 0.6800 +2919 58191 0.9070 +2919 58985 0.5490 +2919 63940 0.4110 +2919 64127 0.6840 +2919 64170 0.4050 +2919 64332 0.6410 +2919 64581 0.4730 +2919 64806 0.5070 +2919 80149 0.5610 +2919 80380 0.4020 +2919 80781 0.5480 +2919 84818 0.7840 +2919 84868 0.4250 +2919 85480 0.6970 +2919 90865 0.6410 +2919 112744 0.7640 +2919 114548 0.5060 +2919 130120 0.4380 +2919 137902 0.4860 +2919 149233 0.5910 +2919 163702 0.4950 +2919 197259 0.5700 +2919 284340 0.6780 +2919 386653 0.4790 +2919 414062 0.7860 +2919 100289462 0.5820 +2919 100423062 0.4590 +2920 2921 0.9950 +2920 2977 0.4110 +2920 3091 0.4250 +2920 3383 0.7040 +2920 3439 0.4720 +2920 3444 0.4430 +2920 3456 0.5420 +2920 3458 0.8230 +2920 3552 0.9430 +2920 3553 0.9680 +2920 3554 0.6470 +2920 3557 0.6750 +2920 3558 0.5450 +2920 3565 0.5990 +2920 3567 0.5010 +2920 3569 0.9660 +2920 3574 0.6030 +2920 3575 0.5120 +2920 3576 0.9820 +2920 3577 0.9980 +2920 3578 0.4260 +2920 3579 0.9990 +2920 3586 0.8830 +2920 3592 0.4640 +2920 3593 0.5130 +2920 3596 0.5850 +2920 3600 0.5180 +2920 3603 0.4180 +2920 3605 0.6750 +2920 3606 0.8410 +2920 3620 0.4210 +2920 3627 0.9650 +2920 3654 0.5190 +2920 3656 0.5800 +2920 3659 0.4590 +2920 3665 0.5360 +2920 3684 0.7020 +2920 3687 0.4470 +2920 3725 0.9530 +2920 3934 0.5250 +2920 3976 0.5950 +2920 4283 0.9970 +2920 4312 0.4510 +2920 4314 0.4240 +2920 4318 0.5660 +2920 4321 0.4030 +2920 4353 0.5460 +2920 4360 0.4160 +2920 4790 0.9690 +2920 4791 0.4220 +2920 4792 0.6810 +2920 4939 0.4820 +2920 5008 0.5570 +2920 5175 0.4270 +2920 5196 0.9960 +2920 5328 0.5930 +2920 5347 0.4120 +2920 5473 0.7750 +2920 5657 0.5120 +2920 5697 0.4070 +2920 5733 0.4190 +2920 5743 0.8190 +2920 5788 0.4880 +2920 5970 0.9530 +2920 5971 0.4170 +2920 6279 0.5820 +2920 6280 0.5070 +2920 6283 0.4540 +2920 6346 0.8580 +2920 6347 0.9290 +2920 6348 0.9390 +2920 6351 0.8740 +2920 6354 0.7270 +2920 6355 0.9980 +2920 6356 0.9970 +2920 6357 0.7670 +2920 6358 0.4840 +2920 6359 0.6850 +2920 6360 0.6940 +2920 6361 0.7430 +2920 6362 0.7040 +2920 6363 0.8630 +2920 6364 0.9510 +2920 6366 0.9990 +2920 6367 0.8490 +2920 6368 0.5580 +2920 6369 0.5590 +2920 6370 0.7310 +2920 6372 0.9980 +2920 6373 0.9990 +2920 6374 0.9980 +2920 6375 0.9960 +2920 6376 0.7980 +2920 6382 0.5010 +2920 6387 0.9990 +2920 6401 0.5150 +2920 6403 0.4040 +2920 6648 0.4330 +2920 6714 0.6160 +2920 6772 0.4550 +2920 6774 0.7660 +2920 6846 0.9950 +2920 7040 0.4840 +2920 7076 0.4790 +2920 7097 0.7740 +2920 7098 0.4530 +2920 7099 0.8490 +2920 7100 0.5230 +2920 7124 0.9280 +2920 7128 0.7180 +2920 7412 0.5720 +2920 7538 0.4410 +2920 7850 0.4770 +2920 7852 0.9930 +2920 8741 0.4710 +2920 8870 0.5250 +2920 9021 0.5990 +2920 9034 0.5050 +2920 9235 0.6360 +2920 9308 0.4250 +2920 9332 0.4500 +2920 9547 0.9950 +2920 9560 0.5950 +2920 10344 0.6930 +2920 10563 0.8240 +2920 10663 0.7760 +2920 10803 0.7470 +2920 10850 0.7370 +2920 11213 0.5080 +2920 23765 0.4820 +2920 26253 0.4130 +2920 27189 0.4050 +2920 29126 0.5190 +2920 50486 0.4220 +2920 50616 0.6120 +2920 50943 0.4580 +2920 51561 0.4110 +2920 54106 0.4270 +2920 54210 0.4640 +2920 56300 0.4040 +2920 56477 0.9970 +2920 57007 0.6280 +2920 58191 0.8090 +2920 59307 0.5010 +2920 64127 0.4040 +2920 64332 0.7010 +2920 64581 0.4250 +2920 80149 0.5110 +2920 85480 0.6120 +2920 90865 0.5490 +2920 112744 0.4920 +2920 114548 0.5740 +2920 149233 0.5370 +2920 260436 0.4950 +2920 284340 0.4440 +2920 414062 0.7520 +2920 100423062 0.4510 +2921 3043 0.4050 +2921 3383 0.5650 +2921 3458 0.5730 +2921 3552 0.8660 +2921 3553 0.8600 +2921 3557 0.4060 +2921 3565 0.4120 +2921 3569 0.8100 +2921 3574 0.5670 +2921 3575 0.5060 +2921 3576 0.8950 +2921 3577 0.9960 +2921 3579 0.9990 +2921 3586 0.7120 +2921 3596 0.4190 +2921 3605 0.4910 +2921 3624 0.5420 +2921 3627 0.9710 +2921 3725 0.9320 +2921 4233 0.4440 +2921 4283 0.5900 +2921 4312 0.6290 +2921 4313 0.5220 +2921 4314 0.5880 +2921 4318 0.6460 +2921 4790 0.9420 +2921 4792 0.4700 +2921 4886 0.4330 +2921 4940 0.4760 +2921 5196 0.5290 +2921 5473 0.7650 +2921 5743 0.6120 +2921 5970 0.9230 +2921 6279 0.5100 +2921 6280 0.4210 +2921 6288 0.5480 +2921 6289 0.5660 +2921 6346 0.7390 +2921 6347 0.8560 +2921 6348 0.6800 +2921 6351 0.8320 +2921 6354 0.6620 +2921 6355 0.6270 +2921 6356 0.9960 +2921 6357 0.8280 +2921 6358 0.4680 +2921 6359 0.4340 +2921 6360 0.7080 +2921 6361 0.7140 +2921 6362 0.7340 +2921 6363 0.8400 +2921 6364 0.9510 +2921 6366 0.7830 +2921 6367 0.7130 +2921 6368 0.4790 +2921 6369 0.4440 +2921 6370 0.6900 +2921 6372 0.9980 +2921 6373 0.9660 +2921 6374 0.9990 +2921 6376 0.7950 +2921 6387 0.8500 +2921 6714 0.5760 +2921 6774 0.4100 +2921 6846 0.9950 +2921 7040 0.5630 +2921 7057 0.5020 +2921 7097 0.4300 +2921 7124 0.6850 +2921 7128 0.5990 +2921 7186 0.4220 +2921 7412 0.4180 +2921 7852 0.9310 +2921 8741 0.4420 +2921 8870 0.4100 +2921 9021 0.4620 +2921 9034 0.4490 +2921 9547 0.7680 +2921 9560 0.5100 +2921 10379 0.4710 +2921 10563 0.8440 +2921 10663 0.7640 +2921 10803 0.7120 +2921 10850 0.6550 +2921 11009 0.6190 +2921 27074 0.4310 +2921 29126 0.4290 +2921 50616 0.4650 +2921 51176 0.4130 +2921 56477 0.5910 +2921 57007 0.6070 +2921 58191 0.7820 +2921 63940 0.4130 +2921 64332 0.5570 +2921 85480 0.5990 +2921 284340 0.4460 +2921 414062 0.5340 +2921 100289462 0.5150 +2921 100423062 0.4390 +2922 2925 0.9990 +2922 3060 0.6170 +2922 3350 0.4130 +2922 3479 0.5740 +2922 3630 0.5820 +2922 3814 0.4950 +2922 3827 0.8970 +2922 3880 0.5900 +2922 3952 0.4220 +2922 4295 0.8480 +2922 4311 0.4080 +2922 4828 0.9980 +2922 4829 0.9980 +2922 4842 0.4150 +2922 4852 0.8150 +2922 4879 0.4050 +2922 4881 0.4060 +2922 4922 0.9740 +2922 4923 0.6060 +2922 5020 0.6890 +2922 5173 0.5260 +2922 5330 0.5820 +2922 5331 0.6700 +2922 5367 0.5970 +2922 5443 0.8140 +2922 5539 0.8180 +2922 5550 0.4980 +2922 5582 0.4310 +2922 5697 0.6210 +2922 5744 0.4990 +2922 5797 0.4510 +2922 5832 0.5420 +2922 6343 0.7650 +2922 6750 0.9460 +2922 6752 0.4940 +2922 6855 0.5710 +2922 6863 0.9950 +2922 6869 0.5120 +2922 7200 0.8630 +2922 7201 0.5690 +2922 7204 0.4990 +2922 7432 0.9250 +2922 7434 0.7180 +2922 7442 0.5420 +2922 8519 0.5800 +2922 8565 0.4330 +2922 8620 0.4250 +2922 8862 0.4030 +2922 8864 0.5900 +2922 8997 0.4990 +2922 9002 0.5260 +2922 9145 0.4080 +2922 9265 0.4850 +2922 9564 0.5090 +2922 9607 0.4170 +2922 9789 0.6610 +2922 10316 0.5800 +2922 10535 0.4560 +2922 10800 0.5420 +2922 10874 0.6260 +2922 10887 0.5180 +2922 10911 0.4790 +2922 23236 0.5840 +2922 23252 0.4340 +2922 23620 0.5630 +2922 26047 0.4670 +2922 27319 0.4140 +2922 28972 0.6080 +2922 51083 0.8070 +2922 51738 0.8200 +2922 54858 0.7120 +2922 55748 0.5200 +2922 56923 0.6460 +2922 57084 0.4310 +2922 57105 0.5420 +2922 57113 0.6650 +2922 60558 0.4340 +2922 60559 0.5820 +2922 60675 0.7140 +2922 83943 0.4930 +2922 84432 0.4600 +2922 84539 0.4990 +2922 84634 0.5690 +2922 115557 0.5220 +2922 116512 0.4140 +2922 128674 0.5750 +2922 129521 0.7520 +2922 147011 0.4540 +2922 151306 0.4010 +2922 256933 0.4830 +2922 259249 0.7850 +2922 387129 0.5820 +2922 594857 0.5680 +2923 2936 0.4140 +2923 3105 0.9930 +2923 3106 0.9550 +2923 3107 0.9330 +2923 3133 0.9230 +2923 3134 0.9210 +2923 3135 0.9190 +2923 3146 0.6030 +2923 3187 0.4740 +2923 3190 0.4340 +2923 3303 0.5020 +2923 3304 0.6010 +2923 3308 0.5800 +2923 3309 0.9990 +2923 3312 0.8880 +2923 3313 0.7290 +2923 3315 0.4310 +2923 3320 0.7620 +2923 3326 0.8510 +2923 3329 0.4660 +2923 3336 0.5460 +2923 3337 0.4080 +2923 3339 0.4060 +2923 3482 0.4260 +2923 3576 0.4520 +2923 3577 0.4210 +2923 3623 0.5790 +2923 3703 0.5150 +2923 3710 0.5610 +2923 3838 0.4590 +2923 3875 0.4840 +2923 3921 0.4050 +2923 3925 0.5960 +2923 3965 0.6390 +2923 3998 0.6920 +2923 4012 0.4400 +2923 4035 0.5380 +2923 4077 0.4560 +2923 4123 0.4050 +2923 4189 0.6030 +2923 4312 0.4050 +2923 4314 0.4070 +2923 4318 0.4500 +2923 4430 0.4230 +2923 4482 0.4790 +2923 4609 0.7730 +2923 4790 0.5210 +2923 4914 0.4370 +2923 5033 0.7190 +2923 5034 0.8170 +2923 5052 0.5540 +2923 5216 0.4040 +2923 5223 0.4960 +2923 5226 0.4060 +2923 5230 0.5240 +2923 5328 0.4140 +2923 5468 0.4370 +2923 5478 0.4020 +2923 5479 0.8340 +2923 5565 0.4980 +2923 5589 0.6050 +2923 5603 0.5490 +2923 5611 0.6660 +2923 5621 0.4150 +2923 5641 0.4750 +2923 5693 0.4150 +2923 5696 0.5560 +2923 5698 0.5060 +2923 5699 0.5280 +2923 5720 0.4440 +2923 5806 0.4350 +2923 5954 0.5690 +2923 6184 0.5210 +2923 6185 0.6710 +2923 6249 0.4300 +2923 6400 0.4740 +2923 6647 0.5790 +2923 6657 0.4850 +2923 6712 0.4160 +2923 6774 0.8840 +2923 6782 0.4140 +2923 6786 0.8920 +2923 6890 0.9740 +2923 6891 0.9270 +2923 6892 0.9990 +2923 6950 0.6100 +2923 7001 0.5660 +2923 7064 0.4080 +2923 7086 0.4800 +2923 7132 0.4660 +2923 7167 0.6450 +2923 7174 0.4370 +2923 7184 0.9850 +2923 7247 0.7130 +2923 7280 0.5170 +2923 7295 0.8490 +2923 7296 0.4300 +2923 7297 0.4110 +2923 7415 0.6440 +2923 7416 0.6040 +2923 7417 0.4250 +2923 7494 0.8570 +2923 7841 0.6590 +2923 7874 0.4010 +2923 8673 0.5490 +2923 8773 0.5740 +2923 8894 0.4490 +2923 8974 0.8060 +2923 9341 0.5400 +2923 9373 0.7170 +2923 9557 0.4890 +2923 9588 0.5650 +2923 9601 0.7840 +2923 9675 0.6810 +2923 9695 0.7160 +2923 9709 0.7980 +2923 9894 0.7050 +2923 10130 0.9160 +2923 10134 0.7020 +2923 10381 0.4520 +2923 10382 0.4110 +2923 10383 0.5240 +2923 10458 0.4570 +2923 10483 0.4390 +2923 10484 0.4210 +2923 10525 0.8770 +2923 10549 0.7180 +2923 10551 0.6980 +2923 10574 0.5380 +2923 10576 0.4740 +2923 10935 0.4960 +2923 10956 0.5240 +2923 10961 0.7200 +2923 11231 0.4350 +2923 11253 0.4920 +2923 22926 0.5820 +2923 22948 0.4020 +2923 23071 0.4010 +2923 23193 0.8560 +2923 23352 0.4470 +2923 23435 0.4080 +2923 23457 0.5850 +2923 23621 0.4240 +2923 23627 0.4220 +2923 23646 0.4430 +2923 23753 0.5940 +2923 25824 0.4650 +2923 27044 0.4460 +2923 27248 0.6090 +2923 27333 0.5130 +2923 29927 0.8580 +2923 30001 0.8240 +2923 51060 0.4810 +2923 51138 0.5150 +2923 51205 0.5270 +2923 51237 0.4860 +2923 51726 0.8170 +2923 51752 0.6100 +2923 54205 0.4090 +2923 54431 0.6770 +2923 55080 0.5770 +2923 55176 0.4460 +2923 55741 0.5970 +2923 55757 0.5580 +2923 56605 0.7420 +2923 56886 0.7270 +2923 64167 0.6770 +2923 64374 0.4300 +2923 64798 0.6810 +2923 79174 0.5080 +2923 80267 0.6730 +2923 80380 0.4150 +2923 81027 0.4130 +2923 81567 0.5560 +2923 84617 0.4620 +2923 84790 0.4310 +2923 84868 0.4130 +2923 121506 0.9500 +2923 122618 0.4100 +2923 125972 0.7600 +2923 201595 0.4740 +2923 203068 0.5410 +2923 339416 0.5350 +2923 347733 0.4410 +2923 493829 0.4290 +2925 3052 0.6460 +2925 3060 0.4990 +2925 3269 0.4110 +2925 3814 0.7310 +2925 3827 0.7510 +2925 4295 0.6160 +2925 4828 0.9890 +2925 4829 0.9270 +2925 4852 0.4470 +2925 4879 0.6660 +2925 4881 0.5790 +2925 4922 0.7730 +2925 4923 0.4880 +2925 4988 0.6550 +2925 5080 0.4970 +2925 5173 0.4200 +2925 5179 0.4860 +2925 5241 0.4030 +2925 5330 0.5320 +2925 5331 0.7100 +2925 5367 0.5700 +2925 5443 0.5120 +2925 6383 0.5930 +2925 6750 0.7400 +2925 6792 0.6120 +2925 6853 0.4180 +2925 6863 0.7200 +2925 7200 0.5650 +2925 7201 0.4490 +2925 7204 0.5230 +2925 7432 0.6040 +2925 7442 0.5700 +2925 8989 0.4980 +2925 8997 0.4990 +2925 9002 0.4060 +2925 9630 0.7010 +2925 10316 0.4440 +2925 10800 0.4690 +2925 10874 0.5770 +2925 10887 0.4270 +2925 10911 0.5140 +2925 22854 0.6600 +2925 23236 0.5450 +2925 23620 0.4500 +2925 27319 0.5900 +2925 27328 0.4310 +2925 51738 0.5720 +2925 56062 0.4480 +2925 56923 0.4440 +2925 57084 0.5190 +2925 57105 0.4550 +2925 60675 0.6190 +2925 84432 0.5990 +2925 84539 0.4410 +2925 84628 0.6770 +2925 84634 0.4180 +2925 115557 0.5230 +2925 116512 0.5110 +2925 128674 0.4300 +2925 129521 0.5630 +2925 147011 0.6140 +2925 255394 0.4420 +2925 257313 0.5320 +2925 387129 0.6430 +2925 594857 0.5690 +2926 3028 0.6120 +2926 3030 0.5100 +2926 3178 0.4230 +2926 3181 0.4380 +2926 3182 0.4210 +2926 3184 0.4250 +2926 3187 0.4570 +2926 3313 0.4730 +2926 3396 0.4420 +2926 3508 0.6230 +2926 3954 0.4110 +2926 4191 0.5630 +2926 4528 0.4900 +2926 4540 0.5750 +2926 4541 0.7370 +2926 4609 0.4940 +2926 4670 0.4410 +2926 4722 0.5450 +2926 4833 0.5030 +2926 4841 0.5510 +2926 4893 0.4380 +2926 5442 0.6380 +2926 6182 0.4800 +2926 6196 0.5990 +2926 6197 0.6290 +2926 6742 0.5110 +2926 6832 0.8200 +2926 6838 0.4700 +2926 7019 0.5480 +2926 7818 0.4900 +2926 8192 0.4530 +2926 8562 0.5180 +2926 9093 0.4640 +2926 9238 0.5180 +2926 9692 0.5800 +2926 9987 0.4050 +2926 10128 0.7230 +2926 10175 0.4750 +2926 10240 0.4450 +2926 10463 0.4130 +2926 10922 0.6530 +2926 22868 0.8250 +2926 22907 0.8320 +2926 23107 0.6290 +2926 23438 0.5240 +2926 26024 0.5470 +2926 26156 0.4170 +2926 26284 0.5790 +2926 26995 0.4560 +2926 28957 0.4650 +2926 50999 0.4770 +2926 51001 0.5800 +2926 51081 0.5500 +2926 51116 0.4370 +2926 51204 0.4090 +2926 51335 0.4380 +2926 51642 0.5160 +2926 54931 0.7860 +2926 55006 0.4370 +2926 55037 0.6760 +2926 55149 0.7690 +2926 55178 0.7490 +2926 55699 0.4750 +2926 55794 0.7890 +2926 56910 0.5110 +2926 56945 0.6130 +2926 57129 0.5450 +2926 57540 0.4120 +2926 60493 0.7480 +2926 60528 0.6010 +2926 64432 0.4710 +2926 64949 0.4740 +2926 65003 0.4840 +2926 65993 0.4910 +2926 79590 0.5120 +2926 79675 0.4680 +2926 79736 0.5090 +2926 79810 0.4710 +2926 79922 0.5390 +2926 81892 0.7420 +2926 84273 0.4230 +2926 84311 0.5520 +2926 84769 0.5350 +2926 84881 0.5450 +2926 85865 0.5330 +2926 87178 0.7830 +2926 92170 0.4050 +2926 92667 0.5240 +2926 115416 0.4950 +2926 129831 0.4410 +2926 130916 0.4500 +2926 219927 0.4420 +2926 220988 0.4230 +2926 285367 0.4530 +2926 387338 0.4370 +2928 3200 0.4130 +2928 5413 0.6740 +2928 5625 0.6930 +2928 5902 0.6550 +2928 6576 0.7800 +2928 6886 0.4070 +2928 6899 0.7510 +2928 7122 0.5620 +2928 7625 0.5770 +2928 8214 0.5570 +2928 8218 0.6260 +2928 8220 0.4810 +2928 8318 0.4890 +2928 8646 0.4530 +2928 8854 0.4380 +2928 9993 0.6310 +2928 27037 0.4180 +2928 29801 0.4210 +2928 54487 0.5470 +2928 54584 0.8070 +2928 83667 0.5480 +2928 85359 0.5960 +2928 128977 0.4230 +2928 503834 0.4080 +2931 2932 0.9800 +2931 2997 0.6800 +2931 2998 0.4410 +2931 3172 0.4570 +2931 3315 0.4110 +2931 3316 0.4050 +2931 3320 0.4900 +2931 3326 0.4850 +2931 3479 0.4310 +2931 3480 0.4500 +2931 3569 0.4250 +2931 3611 0.4120 +2931 3630 0.6330 +2931 3667 0.6250 +2931 3725 0.5500 +2931 3728 0.4610 +2931 3824 0.4260 +2931 4040 0.7480 +2931 4041 0.4050 +2931 4068 0.4970 +2931 4077 0.6540 +2931 4088 0.5950 +2931 4137 0.9110 +2931 4170 0.7310 +2931 4193 0.5420 +2931 4296 0.4190 +2931 4609 0.6160 +2931 4792 0.4060 +2931 5170 0.6620 +2931 5291 0.5540 +2931 5499 0.4230 +2931 5504 0.5430 +2931 5515 0.4670 +2931 5530 0.5310 +2931 5532 0.5670 +2931 5533 0.7700 +2931 5534 0.4060 +2931 5566 0.7570 +2931 5567 0.6120 +2931 5568 0.5640 +2931 5573 0.6120 +2931 5582 0.4530 +2931 5591 0.4340 +2931 5594 0.4970 +2931 5595 0.4300 +2931 5604 0.4020 +2931 5605 0.4480 +2931 5609 0.4030 +2931 5663 0.6470 +2931 5664 0.5380 +2931 5728 0.5780 +2931 5921 0.4090 +2931 6009 0.4040 +2931 6194 0.6830 +2931 6195 0.5290 +2931 6469 0.5010 +2931 6477 0.9110 +2931 6517 0.4400 +2931 6714 0.4670 +2931 6773 0.4590 +2931 6774 0.4760 +2931 6885 0.7690 +2931 7098 0.7680 +2931 7157 0.4930 +2931 7189 0.5770 +2931 7249 0.7130 +2931 7392 0.4750 +2931 7409 0.4890 +2931 7471 0.5530 +2931 7494 0.7820 +2931 7529 0.5410 +2931 7532 0.5550 +2931 7837 0.5040 +2931 7957 0.4950 +2931 8312 0.9990 +2931 8313 0.9620 +2931 8575 0.4090 +2931 8658 0.5440 +2931 8660 0.4570 +2931 8832 0.4110 +2931 8864 0.4240 +2931 8945 0.8560 +2931 9882 0.5080 +2931 9908 0.4240 +2931 10000 0.9370 +2931 10023 0.8740 +2931 10146 0.4910 +2931 10231 0.6280 +2931 10297 0.6940 +2931 10399 0.5110 +2931 10454 0.7860 +2931 10522 0.6320 +2931 10971 0.4220 +2931 23035 0.6580 +2931 23118 0.7690 +2931 23239 0.6660 +2931 23291 0.4380 +2931 23369 0.4190 +2931 23385 0.4540 +2931 23401 0.6110 +2931 23621 0.4160 +2931 27101 0.9020 +2931 27185 0.6170 +2931 28964 0.4810 +2931 51107 0.4330 +2931 51527 0.8480 +2931 51744 0.5120 +2931 51776 0.4750 +2931 54205 0.4590 +2931 54455 0.4700 +2931 55133 0.4640 +2931 55851 0.4180 +2931 56998 0.7260 +2931 57514 0.4300 +2931 57521 0.4460 +2931 58497 0.6680 +2931 79668 0.4520 +2931 79705 0.4150 +2931 79738 0.6440 +2931 84260 0.4890 +2931 84335 0.7270 +2931 89780 0.4940 +2931 89953 0.4140 +2931 90678 0.4740 +2931 136991 0.4610 +2931 137902 0.5010 +2931 139285 0.4640 +2931 148479 0.4520 +2931 166379 0.6380 +2931 253260 0.5860 +2931 257397 0.4600 +2931 378884 0.4310 +2932 2936 0.4110 +2932 2987 0.4400 +2932 2997 0.9900 +2932 2998 0.9390 +2932 3021 0.6190 +2932 3064 0.5280 +2932 3065 0.5100 +2932 3066 0.4280 +2932 3082 0.5020 +2932 3091 0.6530 +2932 3099 0.6260 +2932 3156 0.6010 +2932 3162 0.6180 +2932 3172 0.9190 +2932 3190 0.5890 +2932 3214 0.4150 +2932 3265 0.4510 +2932 3297 0.9040 +2932 3304 0.5370 +2932 3308 0.7400 +2932 3309 0.6630 +2932 3312 0.6210 +2932 3313 0.5680 +2932 3315 0.6430 +2932 3316 0.6330 +2932 3320 0.9580 +2932 3326 0.9200 +2932 3383 0.4170 +2932 3416 0.4980 +2932 3458 0.4920 +2932 3479 0.6740 +2932 3480 0.6430 +2932 3481 0.4180 +2932 3516 0.4420 +2932 3549 0.4240 +2932 3552 0.4160 +2932 3553 0.6360 +2932 3569 0.6820 +2932 3576 0.6200 +2932 3586 0.5260 +2932 3611 0.8950 +2932 3612 0.6040 +2932 3630 0.7530 +2932 3643 0.4710 +2932 3659 0.4650 +2932 3661 0.5600 +2932 3667 0.7990 +2932 3688 0.4780 +2932 3708 0.5070 +2932 3710 0.5040 +2932 3717 0.5100 +2932 3725 0.9080 +2932 3728 0.5110 +2932 3798 0.9170 +2932 3799 0.9320 +2932 3800 0.9180 +2932 3831 0.9350 +2932 3845 0.5960 +2932 3848 0.5000 +2932 3866 0.4200 +2932 3952 0.4630 +2932 3976 0.4510 +2932 4000 0.4760 +2932 4001 0.5380 +2932 4015 0.4080 +2932 4040 0.9940 +2932 4041 0.9600 +2932 4077 0.5430 +2932 4086 0.6780 +2932 4087 0.6100 +2932 4088 0.9500 +2932 4089 0.5900 +2932 4092 0.4420 +2932 4128 0.4160 +2932 4129 0.4390 +2932 4130 0.4120 +2932 4131 0.5370 +2932 4133 0.4260 +2932 4137 0.9990 +2932 4170 0.7020 +2932 4193 0.7030 +2932 4214 0.4260 +2932 4233 0.5550 +2932 4286 0.6070 +2932 4287 0.4550 +2932 4296 0.4610 +2932 4303 0.4110 +2932 4313 0.5710 +2932 4316 0.5470 +2932 4318 0.6120 +2932 4609 0.9960 +2932 4613 0.5410 +2932 4627 0.6860 +2932 4641 0.4710 +2932 4673 0.4160 +2932 4734 0.5290 +2932 4772 0.9530 +2932 4773 0.9380 +2932 4775 0.9300 +2932 4779 0.4950 +2932 4780 0.9530 +2932 4790 0.7130 +2932 4792 0.5780 +2932 4803 0.5200 +2932 4837 0.4510 +2932 4846 0.4910 +2932 4851 0.8090 +2932 4853 0.8400 +2932 4854 0.5180 +2932 4862 0.5830 +2932 4878 0.4080 +2932 4893 0.4570 +2932 4904 0.6170 +2932 4908 0.4930 +2932 4914 0.4640 +2932 4915 0.5000 +2932 5048 0.4480 +2932 5071 0.4980 +2932 5080 0.4200 +2932 5105 0.5880 +2932 5106 0.5590 +2932 5142 0.6340 +2932 5144 0.4100 +2932 5170 0.8010 +2932 5175 0.4230 +2932 5243 0.4250 +2932 5252 0.5190 +2932 5290 0.6300 +2932 5291 0.4600 +2932 5293 0.4280 +2932 5294 0.4680 +2932 5295 0.4970 +2932 5315 0.4880 +2932 5327 0.5630 +2932 5335 0.5750 +2932 5341 0.4960 +2932 5361 0.5260 +2932 5362 0.5140 +2932 5434 0.4100 +2932 5435 0.4620 +2932 5437 0.4050 +2932 5441 0.4120 +2932 5460 0.5830 +2932 5465 0.4980 +2932 5467 0.4390 +2932 5468 0.6340 +2932 5481 0.4840 +2932 5499 0.8140 +2932 5500 0.4850 +2932 5501 0.5780 +2932 5504 0.6830 +2932 5515 0.8970 +2932 5516 0.6020 +2932 5518 0.6840 +2932 5519 0.6170 +2932 5524 0.7380 +2932 5525 0.6550 +2932 5526 0.5910 +2932 5527 0.6220 +2932 5528 0.7350 +2932 5529 0.6570 +2932 5530 0.9550 +2932 5532 0.9420 +2932 5533 0.9670 +2932 5534 0.9280 +2932 5566 0.9900 +2932 5567 0.9810 +2932 5568 0.9780 +2932 5573 0.5590 +2932 5576 0.4130 +2932 5578 0.6370 +2932 5579 0.4880 +2932 5580 0.4230 +2932 5590 0.9550 +2932 5591 0.5400 +2932 5594 0.7420 +2932 5604 0.9390 +2932 5605 0.9350 +2932 5609 0.7730 +2932 5621 0.9370 +2932 5663 0.9950 +2932 5664 0.5510 +2932 5682 0.4340 +2932 5683 0.4300 +2932 5684 0.4230 +2932 5685 0.4270 +2932 5686 0.4220 +2932 5687 0.4220 +2932 5688 0.5090 +2932 5689 0.4480 +2932 5690 0.4330 +2932 5691 0.4490 +2932 5692 0.4150 +2932 5693 0.4500 +2932 5694 0.4410 +2932 5695 0.4850 +2932 5696 0.4570 +2932 5698 0.4650 +2932 5699 0.4660 +2932 5700 0.5440 +2932 5701 0.5700 +2932 5702 0.4430 +2932 5704 0.4440 +2932 5705 0.4070 +2932 5706 0.4360 +2932 5707 0.5200 +2932 5708 0.5090 +2932 5709 0.4210 +2932 5710 0.4810 +2932 5711 0.4110 +2932 5713 0.4550 +2932 5714 0.4890 +2932 5715 0.4360 +2932 5716 0.5410 +2932 5717 0.4740 +2932 5718 0.4470 +2932 5719 0.4050 +2932 5720 0.4220 +2932 5721 0.4100 +2932 5727 0.6960 +2932 5728 0.9060 +2932 5743 0.5730 +2932 5747 0.6560 +2932 5770 0.6060 +2932 5781 0.5330 +2932 5829 0.4130 +2932 5836 0.4580 +2932 5879 0.4190 +2932 5894 0.9220 +2932 5921 0.4870 +2932 5970 0.6030 +2932 5971 0.5060 +2932 6005 0.4680 +2932 6009 0.6730 +2932 6194 0.5260 +2932 6195 0.6600 +2932 6197 0.5370 +2932 6198 0.5860 +2932 6233 0.5740 +2932 6249 0.5230 +2932 6251 0.4920 +2932 6259 0.5230 +2932 6347 0.4540 +2932 6387 0.4230 +2932 6391 0.4480 +2932 6416 0.5450 +2932 6418 0.4230 +2932 6421 0.4190 +2932 6422 0.6130 +2932 6423 0.4990 +2932 6464 0.4570 +2932 6469 0.7090 +2932 6477 0.9350 +2932 6500 0.7680 +2932 6502 0.4240 +2932 6513 0.4130 +2932 6517 0.6050 +2932 6591 0.8160 +2932 6608 0.5260 +2932 6615 0.9780 +2932 6622 0.6700 +2932 6647 0.4770 +2932 6648 0.4310 +2932 6654 0.4790 +2932 6655 0.4200 +2932 6657 0.6060 +2932 6662 0.7300 +2932 6663 0.4870 +2932 6667 0.5670 +2932 6688 0.4180 +2932 6696 0.4410 +2932 6713 0.4650 +2932 6714 0.8670 +2932 6720 0.7640 +2932 6722 0.4170 +2932 6767 0.6880 +2932 6772 0.7130 +2932 6773 0.4550 +2932 6774 0.8040 +2932 6776 0.4290 +2932 6777 0.4410 +2932 6790 0.7690 +2932 6794 0.7100 +2932 6853 0.4330 +2932 6855 0.4870 +2932 6868 0.5780 +2932 6885 0.9610 +2932 6908 0.5640 +2932 6932 0.6890 +2932 6934 0.5640 +2932 7015 0.4350 +2932 7019 0.4410 +2932 7030 0.4630 +2932 7040 0.6340 +2932 7042 0.4110 +2932 7046 0.4240 +2932 7054 0.4670 +2932 7082 0.5220 +2932 7097 0.4160 +2932 7098 0.9630 +2932 7099 0.5770 +2932 7104 0.4080 +2932 7124 0.6490 +2932 7128 0.7360 +2932 7153 0.4560 +2932 7157 0.9920 +2932 7184 0.4230 +2932 7186 0.6640 +2932 7189 0.9940 +2932 7248 0.9750 +2932 7249 0.9900 +2932 7273 0.4880 +2932 7291 0.4770 +2932 7295 0.4510 +2932 7311 0.5340 +2932 7314 0.5630 +2932 7316 0.6500 +2932 7337 0.5080 +2932 7409 0.4450 +2932 7412 0.4520 +2932 7414 0.4680 +2932 7415 0.4220 +2932 7416 0.5930 +2932 7471 0.9000 +2932 7472 0.8260 +2932 7473 0.8930 +2932 7474 0.6950 +2932 7475 0.4770 +2932 7476 0.7510 +2932 7477 0.5430 +2932 7478 0.6940 +2932 7479 0.6930 +2932 7480 0.5580 +2932 7481 0.5480 +2932 7482 0.5030 +2932 7483 0.4010 +2932 7514 0.4690 +2932 7529 0.6520 +2932 7532 0.5250 +2932 7534 0.9040 +2932 7706 0.4440 +2932 7804 0.5760 +2932 7837 0.6840 +2932 7852 0.4480 +2932 7855 0.7440 +2932 7874 0.4990 +2932 7913 0.4830 +2932 7942 0.4250 +2932 7957 0.8050 +2932 7976 0.4510 +2932 8087 0.5110 +2932 8089 0.4010 +2932 8202 0.5040 +2932 8290 0.5550 +2932 8312 0.9990 +2932 8313 0.9990 +2932 8321 0.8510 +2932 8322 0.5010 +2932 8323 0.4270 +2932 8324 0.5010 +2932 8325 0.4590 +2932 8326 0.4570 +2932 8356 0.6170 +2932 8434 0.4560 +2932 8445 0.6720 +2932 8452 0.5790 +2932 8454 0.7770 +2932 8467 0.4940 +2932 8473 0.9510 +2932 8517 0.7240 +2932 8549 0.5190 +2932 8553 0.4530 +2932 8554 0.4530 +2932 8600 0.4470 +2932 8650 0.4300 +2932 8658 0.5850 +2932 8660 0.5830 +2932 8678 0.5540 +2932 8817 0.4610 +2932 8822 0.4530 +2932 8823 0.4810 +2932 8826 0.5180 +2932 8829 0.5170 +2932 8840 0.4010 +2932 8842 0.4910 +2932 8851 0.7080 +2932 8863 0.5940 +2932 8864 0.6830 +2932 8874 0.4780 +2932 8878 0.5550 +2932 8892 0.4390 +2932 8893 0.7830 +2932 8900 0.4700 +2932 8914 0.4590 +2932 8945 0.9990 +2932 8976 0.4980 +2932 8988 0.6350 +2932 9014 0.4050 +2932 9031 0.4210 +2932 9156 0.4080 +2932 9188 0.4190 +2932 9241 0.4220 +2932 9253 0.4230 +2932 9314 0.5280 +2932 9370 0.4530 +2932 9413 0.4460 +2932 9414 0.4460 +2932 9429 0.4130 +2932 9451 0.5660 +2932 9474 0.4610 +2932 9491 0.4090 +2932 9533 0.4290 +2932 9572 0.4480 +2932 9575 0.4600 +2932 9586 0.9110 +2932 9603 0.4970 +2932 9627 0.4160 +2932 9734 0.5350 +2932 9739 0.4570 +2932 9759 0.5710 +2932 9817 0.5830 +2932 9826 0.4150 +2932 9839 0.4340 +2932 9861 0.4080 +2932 9863 0.4460 +2932 9882 0.4600 +2932 9978 0.7090 +2932 10000 0.9630 +2932 10013 0.7170 +2932 10018 0.5740 +2932 10023 0.9990 +2932 10059 0.5720 +2932 10105 0.8050 +2932 10155 0.4600 +2932 10190 0.5470 +2932 10197 0.6320 +2932 10213 0.4680 +2932 10231 0.4680 +2932 10238 0.4340 +2932 10273 0.8030 +2932 10297 0.9660 +2932 10365 0.4870 +2932 10369 0.4650 +2932 10371 0.6260 +2932 10397 0.4590 +2932 10399 0.5950 +2932 10413 0.6910 +2932 10454 0.9630 +2932 10488 0.9110 +2932 10514 0.4110 +2932 10522 0.5510 +2932 10533 0.4550 +2932 10570 0.5130 +2932 10615 0.6610 +2932 10746 0.4270 +2932 10763 0.4780 +2932 10849 0.4360 +2932 10891 0.8090 +2932 10956 0.4250 +2932 10971 0.7240 +2932 10987 0.5160 +2932 11129 0.5880 +2932 11140 0.6270 +2932 11186 0.4360 +2932 11197 0.5320 +2932 11215 0.8500 +2932 22881 0.8810 +2932 22906 0.7680 +2932 22926 0.4570 +2932 22943 0.7310 +2932 23028 0.5240 +2932 23043 0.4070 +2932 23118 0.9630 +2932 23122 0.7930 +2932 23136 0.5000 +2932 23143 0.4050 +2932 23237 0.4300 +2932 23239 0.5610 +2932 23291 0.9150 +2932 23332 0.5190 +2932 23401 0.9870 +2932 23405 0.4360 +2932 23410 0.4220 +2932 23411 0.7580 +2932 23435 0.4470 +2932 23451 0.4470 +2932 23499 0.4890 +2932 23621 0.6770 +2932 23678 0.5700 +2932 25793 0.6380 +2932 25885 0.4190 +2932 25960 0.7630 +2932 26051 0.4080 +2932 26060 0.5740 +2932 26256 0.5470 +2932 26281 0.5020 +2932 26499 0.4930 +2932 26548 0.5110 +2932 27006 0.4710 +2932 27101 0.9140 +2932 27121 0.4970 +2932 27122 0.5210 +2932 27123 0.5210 +2932 27161 0.4050 +2932 27185 0.9770 +2932 29110 0.9230 +2932 29126 0.5690 +2932 30834 0.4110 +2932 50507 0.4630 +2932 50649 0.4710 +2932 50855 0.9210 +2932 50964 0.5120 +2932 51024 0.5150 +2932 51082 0.4640 +2932 51176 0.8240 +2932 51199 0.9040 +2932 51256 0.9140 +2932 51339 0.5060 +2932 51366 0.4210 +2932 51379 0.4210 +2932 51384 0.4270 +2932 51527 0.9850 +2932 51571 0.4370 +2932 51637 0.4850 +2932 51684 0.9200 +2932 51741 0.5190 +2932 51776 0.4630 +2932 51806 0.7810 +2932 54205 0.6930 +2932 54361 0.5720 +2932 54541 0.4950 +2932 54704 0.4600 +2932 54894 0.5470 +2932 54949 0.4690 +2932 54994 0.4240 +2932 55177 0.4400 +2932 55294 0.8560 +2932 55366 0.4250 +2932 55558 0.5110 +2932 55704 0.5140 +2932 55742 0.4970 +2932 55914 0.4990 +2932 56288 0.9440 +2932 56896 0.5200 +2932 56924 0.4430 +2932 56998 0.8090 +2932 57521 0.5400 +2932 57546 0.4510 +2932 57591 0.4300 +2932 57761 0.6420 +2932 57818 0.4320 +2932 58497 0.8780 +2932 64223 0.5900 +2932 64425 0.4160 +2932 64750 0.6720 +2932 64764 0.9080 +2932 64837 0.9350 +2932 64840 0.4080 +2932 65018 0.4640 +2932 66008 0.4970 +2932 79109 0.4220 +2932 79258 0.4010 +2932 79365 0.6700 +2932 79888 0.4240 +2932 79923 0.5900 +2932 80204 0.6000 +2932 80326 0.4400 +2932 80351 0.5910 +2932 80895 0.7470 +2932 81029 0.4760 +2932 81565 0.5420 +2932 81631 0.4700 +2932 81669 0.5180 +2932 84172 0.4110 +2932 84196 0.5370 +2932 84260 0.9670 +2932 84335 0.6230 +2932 84552 0.9120 +2932 84612 0.9150 +2932 84630 0.4170 +2932 84632 0.4960 +2932 84699 0.9350 +2932 84875 0.4610 +2932 85358 0.5230 +2932 85407 0.4050 +2932 89780 0.9370 +2932 89953 0.9320 +2932 90993 0.9040 +2932 91584 0.5140 +2932 91860 0.7710 +2932 92579 0.4400 +2932 114088 0.4420 +2932 114791 0.4720 +2932 114907 0.4060 +2932 117145 0.4540 +2932 117581 0.5410 +2932 120892 0.8780 +2932 121340 0.5890 +2932 122011 0.9380 +2932 133482 0.5530 +2932 137886 0.4630 +2932 137902 0.6800 +2932 139285 0.9930 +2932 146713 0.4440 +2932 147700 0.9330 +2932 148022 0.5790 +2932 148327 0.9060 +2932 153090 0.6410 +2932 163688 0.7710 +2932 221830 0.4200 +2932 253260 0.7630 +2932 257202 0.4700 +2932 257397 0.5130 +2932 284654 0.4490 +2932 353376 0.5880 +2932 374654 0.7690 +2932 378884 0.4730 +2932 440093 0.5550 +2932 440686 0.5550 +2932 493869 0.4770 +2932 653604 0.5560 +2932 100302736 0.5720 +2932 100506658 0.4120 +2932 100532731 0.4400 +2932 102800317 0.4090 +2934 3059 0.9850 +2934 3078 0.4290 +2934 3240 0.4480 +2934 3263 0.4490 +2934 3308 0.5730 +2934 3315 0.4150 +2934 3326 0.5630 +2934 3339 0.6180 +2934 3371 0.4970 +2934 3375 0.5270 +2934 3579 0.4210 +2934 3630 0.5650 +2934 3633 0.4990 +2934 3690 0.5230 +2934 3716 0.4400 +2934 3717 0.4340 +2934 3936 0.4840 +2934 4046 0.6930 +2934 4057 0.5870 +2934 4060 0.4450 +2934 4069 0.5710 +2934 4137 0.4500 +2934 4240 0.5360 +2934 4313 0.4990 +2934 4323 0.4960 +2934 4354 0.8240 +2934 4478 0.7490 +2934 4627 0.7130 +2934 4641 0.5600 +2934 4646 0.4740 +2934 4647 0.5940 +2934 4878 0.4650 +2934 4952 0.5660 +2934 5047 0.4060 +2934 5216 0.9540 +2934 5217 0.5290 +2934 5265 0.6460 +2934 5268 0.4380 +2934 5305 0.9100 +2934 5335 0.4560 +2934 5339 0.5780 +2934 5357 0.6410 +2934 5358 0.4770 +2934 5444 0.5370 +2934 5610 0.5220 +2934 5617 0.4310 +2934 5621 0.4320 +2934 5747 0.4410 +2934 5756 0.8900 +2934 5782 0.4150 +2934 5829 0.8790 +2934 5911 0.4310 +2934 5950 0.4130 +2934 5962 0.8000 +2934 6103 0.6890 +2934 6288 0.7300 +2934 6289 0.5540 +2934 6291 0.6280 +2934 6406 0.4870 +2934 6614 0.4760 +2934 6622 0.7110 +2934 6624 0.6630 +2934 6709 0.6910 +2934 6711 0.5980 +2934 6714 0.8360 +2934 6810 0.5100 +2934 6840 0.4210 +2934 6850 0.4730 +2934 6857 0.4310 +2934 6876 0.6030 +2934 7001 0.5560 +2934 7018 0.4420 +2934 7045 0.6620 +2934 7068 0.4180 +2934 7094 0.9410 +2934 7111 0.8100 +2934 7114 0.7490 +2934 7123 0.4720 +2934 7157 0.6320 +2934 7168 0.4160 +2934 7169 0.4650 +2934 7171 0.6050 +2934 7273 0.5570 +2934 7276 0.8610 +2934 7297 0.4270 +2934 7408 0.8640 +2934 7414 0.9180 +2934 7416 0.9010 +2934 7430 0.8370 +2934 7431 0.5200 +2934 7454 0.8490 +2934 7456 0.5360 +2934 8394 0.9130 +2934 8395 0.9220 +2934 8396 0.9020 +2934 8407 0.6170 +2934 8570 0.4080 +2934 8573 0.8150 +2934 8826 0.6560 +2934 8976 0.9960 +2934 9118 0.4150 +2934 9124 0.6430 +2934 9404 0.5180 +2934 9445 0.6240 +2934 9564 0.5250 +2934 9644 0.5280 +2934 9750 0.5320 +2934 9948 0.6870 +2934 10094 0.4200 +2934 10096 0.7850 +2934 10097 0.7770 +2934 10120 0.4940 +2934 10121 0.4770 +2934 10163 0.4440 +2934 10427 0.6020 +2934 10483 0.5920 +2934 10484 0.5120 +2934 10634 0.4160 +2934 11034 0.6550 +2934 11078 0.5550 +2934 11344 0.9520 +2934 22883 0.4740 +2934 23043 0.6760 +2934 23136 0.5050 +2934 23336 0.4820 +2934 23396 0.9180 +2934 23603 0.4120 +2934 25794 0.5390 +2934 25861 0.8570 +2934 28988 0.4450 +2934 29114 0.5780 +2934 29765 0.7490 +2934 29766 0.7560 +2934 29767 0.9110 +2934 51168 0.8480 +2934 51474 0.6290 +2934 51725 0.6270 +2934 51763 0.4510 +2934 53405 0.6050 +2934 53904 0.8470 +2934 54434 0.7640 +2934 54443 0.4100 +2934 54959 0.4100 +2934 55030 0.5910 +2934 55200 0.4840 +2934 55604 0.7750 +2934 55808 0.5480 +2934 55860 0.5020 +2934 56623 0.4160 +2934 57511 0.5000 +2934 58497 0.5340 +2934 64083 0.4410 +2934 64423 0.6170 +2934 64787 0.8570 +2934 79837 0.9030 +2934 83548 0.4490 +2934 83660 0.9360 +2934 83715 0.8730 +2934 83733 0.5060 +2934 85477 0.9040 +2934 91624 0.6960 +2934 92400 0.6910 +2934 115650 0.4240 +2934 129446 0.5290 +2934 137735 0.4960 +2934 140469 0.8260 +2934 153090 0.4170 +2934 158135 0.4100 +2934 170954 0.4580 +2934 200576 0.9170 +2934 286262 0.5400 +2934 339768 0.8280 +2934 345456 0.9550 +2934 345651 0.7180 +2934 375189 0.9610 +2934 389207 0.5880 +2934 494513 0.4990 +2934 643226 0.5370 +2934 728378 0.4070 +2934 100528017 0.6350 +2934 100529144 0.4400 +2935 3065 0.4160 +2935 3735 0.4110 +2935 3840 0.4600 +2935 3921 0.9290 +2935 4141 0.5880 +2935 4736 0.6230 +2935 5036 0.4830 +2935 5584 0.6630 +2935 5976 0.9940 +2935 6041 0.4570 +2935 6059 0.8520 +2935 6122 0.9280 +2935 6123 0.6000 +2935 6124 0.9230 +2935 6125 0.9080 +2935 6128 0.9160 +2935 6129 0.9060 +2935 6130 0.9230 +2935 6132 0.9240 +2935 6133 0.9330 +2935 6135 0.9210 +2935 6136 0.9100 +2935 6137 0.9300 +2935 6138 0.9060 +2935 6139 0.9220 +2935 6141 0.9050 +2935 6142 0.9110 +2935 6143 0.9150 +2935 6144 0.9450 +2935 6146 0.9150 +2935 6147 0.9250 +2935 6152 0.9170 +2935 6154 0.9090 +2935 6155 0.9170 +2935 6156 0.9170 +2935 6157 0.9250 +2935 6158 0.8980 +2935 6159 0.8990 +2935 6160 0.9210 +2935 6161 0.9120 +2935 6164 0.9130 +2935 6165 0.8980 +2935 6166 0.8990 +2935 6167 0.8970 +2935 6168 0.8970 +2935 6169 0.9160 +2935 6170 0.9330 +2935 6171 0.5330 +2935 6173 0.8960 +2935 6175 0.9230 +2935 6176 0.6740 +2935 6181 0.5890 +2935 6187 0.9280 +2935 6188 0.9430 +2935 6189 0.9270 +2935 6191 0.9200 +2935 6192 0.9030 +2935 6193 0.9260 +2935 6194 0.9270 +2935 6201 0.9280 +2935 6202 0.9260 +2935 6203 0.9090 +2935 6204 0.9100 +2935 6205 0.9180 +2935 6206 0.9230 +2935 6207 0.9240 +2935 6208 0.9210 +2935 6209 0.9340 +2935 6210 0.9210 +2935 6217 0.9190 +2935 6218 0.9160 +2935 6222 0.9280 +2935 6223 0.9250 +2935 6224 0.9310 +2935 6227 0.9210 +2935 6228 0.9670 +2935 6229 0.9240 +2935 6230 0.9170 +2935 6231 0.9220 +2935 6232 0.9210 +2935 6233 0.9060 +2935 6234 0.9160 +2935 6235 0.9050 +2935 6780 0.4190 +2935 7311 0.9030 +2935 7372 0.4020 +2935 8451 0.5970 +2935 8661 0.5800 +2935 8662 0.5990 +2935 8663 0.5430 +2935 8666 0.5330 +2935 8669 0.5730 +2935 8672 0.5360 +2935 8761 0.6580 +2935 8894 0.4780 +2935 9045 0.9190 +2935 9060 0.9000 +2935 9061 0.9010 +2935 9097 0.4070 +2935 9343 0.4760 +2935 9349 0.9090 +2935 9604 0.5040 +2935 9669 0.5690 +2935 9775 0.4800 +2935 9887 0.4540 +2935 9939 0.4010 +2935 10137 0.4920 +2935 10209 0.4420 +2935 10320 0.5710 +2935 10399 0.8750 +2935 10533 0.4500 +2935 10576 0.4130 +2935 10605 0.6380 +2935 10808 0.4160 +2935 10952 0.8030 +2935 10985 0.4930 +2935 11224 0.9160 +2935 22806 0.5800 +2935 23049 0.9550 +2935 23293 0.5480 +2935 23381 0.5820 +2935 23521 0.9330 +2935 23560 0.8420 +2935 23608 0.4440 +2935 23708 0.9910 +2935 25853 0.4650 +2935 25873 0.9160 +2935 25885 0.4200 +2935 25988 0.5260 +2935 26019 0.8580 +2935 26986 0.9960 +2935 27000 0.4050 +2935 27102 0.4100 +2935 29104 0.4710 +2935 51065 0.6030 +2935 51121 0.9220 +2935 51185 0.9900 +2935 51218 0.4690 +2935 51366 0.4160 +2935 51504 0.4810 +2935 53918 0.5160 +2935 55181 0.8790 +2935 55206 0.4240 +2935 55239 0.4790 +2935 55345 0.5560 +2935 55437 0.4240 +2935 55629 0.6110 +2935 55802 0.5850 +2935 56006 0.8860 +2935 60678 0.4260 +2935 64221 0.4990 +2935 65109 0.6610 +2935 65110 0.7950 +2935 80829 0.6380 +2935 81570 0.6380 +2935 84164 0.4240 +2935 90379 0.5180 +2935 92399 0.4700 +2935 115950 0.4710 +2935 116832 0.6080 +2935 132430 0.4770 +2935 140032 0.5350 +2935 140801 0.5890 +2935 200916 0.5190 +2935 255308 0.4330 +2935 389677 0.4860 +2935 728689 0.5190 +2935 100529239 0.8140 +2935 114483834 0.5080 +2936 2937 0.9610 +2936 2938 0.9450 +2936 2939 0.9390 +2936 2940 0.9330 +2936 2941 0.9390 +2936 2944 0.9450 +2936 2946 0.9410 +2936 2947 0.9290 +2936 2948 0.9230 +2936 2949 0.9210 +2936 2950 0.9520 +2936 3029 0.5150 +2936 3091 0.4400 +2936 3099 0.5330 +2936 3162 0.7610 +2936 3308 0.5310 +2936 3309 0.5010 +2936 3313 0.4020 +2936 3320 0.4100 +2936 3326 0.4070 +2936 3329 0.4140 +2936 3417 0.7760 +2936 3418 0.7330 +2936 3419 0.5390 +2936 3420 0.5180 +2936 3421 0.4950 +2936 3458 0.4160 +2936 3553 0.5840 +2936 3558 0.4450 +2936 3569 0.5610 +2936 3586 0.4220 +2936 3630 0.5270 +2936 3725 0.4800 +2936 3948 0.4340 +2936 4023 0.4430 +2936 4128 0.4450 +2936 4129 0.4530 +2936 4191 0.4010 +2936 4199 0.6080 +2936 4257 0.9360 +2936 4258 0.9230 +2936 4259 0.9290 +2936 4353 0.4970 +2936 4482 0.5100 +2936 4489 0.5460 +2936 4490 0.5100 +2936 4493 0.7170 +2936 4494 0.5320 +2936 4496 0.5190 +2936 4501 0.5250 +2936 4502 0.5080 +2936 4519 0.4170 +2936 4522 0.4070 +2936 4524 0.7080 +2936 4548 0.5510 +2936 4706 0.4370 +2936 4722 0.4390 +2936 4723 0.4160 +2936 4778 0.4250 +2936 4780 0.9300 +2936 4790 0.4210 +2936 4842 0.4050 +2936 4843 0.4260 +2936 4846 0.4880 +2936 4942 0.4660 +2936 4953 0.4570 +2936 4967 0.7070 +2936 5034 0.4180 +2936 5052 0.7030 +2936 5091 0.4580 +2936 5161 0.4490 +2936 5162 0.8420 +2936 5226 0.8040 +2936 5230 0.4150 +2936 5313 0.4590 +2936 5315 0.5460 +2936 5447 0.4550 +2936 5468 0.4100 +2936 5554 0.4890 +2936 5555 0.4220 +2936 5571 0.4270 +2936 5595 0.4230 +2936 5625 0.6180 +2936 5631 0.4150 +2936 5635 0.4030 +2936 5636 0.4110 +2936 5743 0.5220 +2936 5832 0.5180 +2936 6389 0.6560 +2936 6390 0.5800 +2936 6391 0.4790 +2936 6470 0.6370 +2936 6472 0.6230 +2936 6513 0.4750 +2936 6647 0.7440 +2936 6648 0.8140 +2936 6649 0.6140 +2936 6652 0.6260 +2936 6821 0.4770 +2936 6888 0.5300 +2936 7001 0.6170 +2936 7082 0.4450 +2936 7086 0.7510 +2936 7124 0.5310 +2936 7157 0.4800 +2936 7167 0.5160 +2936 7173 0.4490 +2936 7253 0.4240 +2936 7295 0.9160 +2936 7296 0.5430 +2936 7298 0.6470 +2936 7386 0.4020 +2936 7417 0.4640 +2936 7498 0.7330 +2936 7837 0.6420 +2936 8050 0.7800 +2936 8277 0.7270 +2936 8310 0.4270 +2936 8452 0.4660 +2936 8528 0.4280 +2936 8801 0.5550 +2936 8802 0.7200 +2936 8803 0.5560 +2936 9131 0.7800 +2936 9352 0.4900 +2936 9380 0.6390 +2936 9446 0.9610 +2936 9463 0.6730 +2936 9554 0.4710 +2936 9563 0.9310 +2936 9588 0.9640 +2936 9817 0.7120 +2936 9973 0.5600 +2936 10130 0.4030 +2936 10539 0.5700 +2936 10549 0.6170 +2936 10797 0.5750 +2936 10873 0.4620 +2936 10891 0.4030 +2936 10935 0.6610 +2936 10994 0.5500 +2936 10999 0.4060 +2936 11315 0.5140 +2936 22921 0.4160 +2936 23410 0.4280 +2936 23411 0.4820 +2936 23426 0.7120 +2936 23530 0.5730 +2936 23657 0.5360 +2936 23743 0.4380 +2936 25824 0.7870 +2936 25828 0.7520 +2936 26061 0.5440 +2936 26227 0.5060 +2936 26330 0.4290 +2936 27035 0.4760 +2936 27306 0.9640 +2936 29097 0.5010 +2936 29958 0.4910 +2936 50506 0.4130 +2936 50507 0.5120 +2936 51022 0.7980 +2936 51060 0.9090 +2936 51167 0.4040 +2936 51218 0.6470 +2936 51268 0.4280 +2936 51314 0.5380 +2936 51422 0.4050 +2936 51601 0.4120 +2936 51734 0.4090 +2936 53905 0.4520 +2936 54205 0.7210 +2936 54431 0.4890 +2936 55066 0.4480 +2936 55167 0.4540 +2936 55364 0.5530 +2936 55526 0.6410 +2936 55753 0.6340 +2936 55847 0.4960 +2936 56965 0.4260 +2936 58472 0.5180 +2936 65220 0.6670 +2936 79048 0.4220 +2936 79094 0.9080 +2936 79668 0.4260 +2936 79728 0.4160 +2936 84076 0.7280 +2936 84203 0.4860 +2936 84706 0.5620 +2936 84883 0.6300 +2936 87769 0.5020 +2936 92483 0.4380 +2936 119391 0.9570 +2936 124975 0.9240 +2936 129831 0.4110 +2936 131474 0.4520 +2936 133482 0.5830 +2936 137362 0.4580 +2936 137682 0.4540 +2936 137902 0.6390 +2936 140809 0.7220 +2936 149111 0.4890 +2936 150209 0.5140 +2936 160287 0.4460 +2936 200205 0.5210 +2936 200895 0.5490 +2936 221357 0.9190 +2936 254042 0.4460 +2936 254263 0.4890 +2936 255220 0.4550 +2936 257202 0.9970 +2936 340390 0.4540 +2936 348303 0.4890 +2936 373156 0.4330 +2936 390637 0.4560 +2936 404636 0.4130 +2936 441024 0.5120 +2936 493869 0.9970 +2936 494143 0.9000 +2936 606495 0.4030 +2936 653689 0.9330 +2936 730249 0.4560 +2937 2938 0.9270 +2937 2939 0.9270 +2937 2940 0.9270 +2937 2941 0.9240 +2937 2944 0.9310 +2937 2946 0.9270 +2937 2947 0.9300 +2937 2948 0.9190 +2937 2949 0.9180 +2937 2950 0.9340 +2937 4257 0.9150 +2937 4258 0.9170 +2937 4259 0.9040 +2937 4780 0.4720 +2937 6218 0.4790 +2937 7295 0.4840 +2937 7296 0.4490 +2937 9060 0.4090 +2937 9061 0.4610 +2937 9446 0.9480 +2937 9470 0.4070 +2937 9588 0.9150 +2937 9817 0.4160 +2937 10327 0.4420 +2937 23657 0.4490 +2937 26873 0.5210 +2937 27306 0.9520 +2937 51056 0.9110 +2937 51060 0.9070 +2937 79017 0.9260 +2937 79094 0.9140 +2937 92086 0.4330 +2937 119391 0.9350 +2937 124975 0.9620 +2937 221357 0.9180 +2937 257202 0.9430 +2937 493869 0.9420 +2937 494143 0.9230 +2937 653689 0.9240 +2937 728226 0.4310 +2938 2939 0.9870 +2938 2940 0.9470 +2938 2941 0.9140 +2938 2944 0.8210 +2938 2946 0.7480 +2938 2947 0.7490 +2938 2948 0.7330 +2938 2949 0.8160 +2938 2950 0.7460 +2938 2954 0.8150 +2938 3162 0.5870 +2938 4257 0.8240 +2938 4258 0.7950 +2938 4259 0.7950 +2938 4780 0.7760 +2938 5238 0.4840 +2938 5243 0.5790 +2938 6648 0.4190 +2938 6822 0.6370 +2938 7296 0.4980 +2938 7355 0.4180 +2938 7363 0.6050 +2938 7364 0.4230 +2938 7365 0.4070 +2938 7975 0.5800 +2938 8856 0.4880 +2938 9360 0.4820 +2938 9446 0.8860 +2938 9588 0.9140 +2938 9758 0.4120 +2938 9817 0.5270 +2938 10720 0.5610 +2938 22858 0.7140 +2938 23038 0.4050 +2938 25774 0.4330 +2938 27284 0.4060 +2938 27306 0.7910 +2938 29785 0.7560 +2938 51060 0.9070 +2938 54575 0.7480 +2938 54576 0.7470 +2938 54577 0.7370 +2938 54578 0.7780 +2938 54600 0.4080 +2938 54657 0.7540 +2938 54658 0.7520 +2938 54908 0.4400 +2938 79094 0.6660 +2938 79799 0.4670 +2938 92086 0.5280 +2938 119391 0.8710 +2938 124975 0.8140 +2938 133482 0.9070 +2938 135152 0.4140 +2938 140809 0.4270 +2938 221357 0.8900 +2938 257202 0.8110 +2938 373156 0.5240 +2938 493869 0.8170 +2938 494143 0.6540 +2938 653689 0.8700 +2939 2940 0.9470 +2939 2941 0.9700 +2939 2944 0.8340 +2939 2946 0.7540 +2939 2947 0.7400 +2939 2948 0.7340 +2939 2949 0.8070 +2939 2950 0.8290 +2939 2954 0.9100 +2939 3162 0.4690 +2939 3351 0.4300 +2939 4224 0.6360 +2939 4225 0.6030 +2939 4257 0.7890 +2939 4258 0.7490 +2939 4259 0.8010 +2939 4646 0.4310 +2939 4780 0.5090 +2939 4922 0.4390 +2939 5052 0.4120 +2939 5238 0.4410 +2939 5688 0.4710 +2939 6775 0.7530 +2939 6822 0.6150 +2939 7276 0.4380 +2939 7296 0.4080 +2939 7832 0.4180 +2939 8856 0.4360 +2939 9446 0.8570 +2939 9588 0.9130 +2939 9758 0.4240 +2939 9817 0.4610 +2939 27306 0.7850 +2939 29785 0.7440 +2939 51060 0.9070 +2939 54575 0.4840 +2939 54576 0.6540 +2939 54577 0.4580 +2939 54578 0.5490 +2939 54657 0.5060 +2939 54658 0.4940 +2939 79094 0.6500 +2939 119391 0.8200 +2939 124975 0.8020 +2939 133482 0.7910 +2939 140809 0.4530 +2939 221357 0.9580 +2939 257202 0.7910 +2939 373156 0.4280 +2939 493869 0.7910 +2939 494143 0.6530 +2939 653689 0.8600 +2940 2941 0.7540 +2940 2944 0.7350 +2940 2946 0.7400 +2940 2947 0.7320 +2940 2948 0.7280 +2940 2949 0.8190 +2940 2950 0.7220 +2940 2954 0.6560 +2940 3162 0.4200 +2940 4257 0.8800 +2940 4258 0.7810 +2940 4259 0.7510 +2940 4780 0.8460 +2940 9446 0.8610 +2940 9588 0.9320 +2940 9758 0.4410 +2940 10223 0.4430 +2940 22858 0.5480 +2940 27306 0.7840 +2940 29785 0.7290 +2940 51060 0.9170 +2940 79094 0.6600 +2940 119391 0.8400 +2940 124975 0.7400 +2940 133482 0.7660 +2940 221357 0.7050 +2940 257202 0.7880 +2940 373156 0.4550 +2940 493869 0.7820 +2940 494143 0.6530 +2940 653689 0.8390 +2941 2944 0.8820 +2941 2946 0.8810 +2941 2947 0.8770 +2941 2948 0.8580 +2941 2949 0.8070 +2941 2950 0.7310 +2941 2954 0.7350 +2941 3308 0.6320 +2941 3569 0.4100 +2941 4257 0.8090 +2941 4258 0.7820 +2941 4259 0.7950 +2941 4780 0.4330 +2941 5052 0.4040 +2941 5243 0.4750 +2941 6652 0.4160 +2941 7296 0.4220 +2941 9446 0.9010 +2941 9588 0.9230 +2941 9817 0.4140 +2941 10928 0.4470 +2941 22858 0.5060 +2941 27306 0.7820 +2941 29785 0.7190 +2941 51060 0.9100 +2941 79094 0.6690 +2941 119391 0.8200 +2941 124975 0.7130 +2941 130813 0.5460 +2941 133482 0.7930 +2941 221357 0.8680 +2941 257202 0.8040 +2941 373156 0.5520 +2941 493869 0.8070 +2941 494143 0.6710 +2941 653689 0.8770 +2944 2946 0.9990 +2944 2947 0.7490 +2944 2948 0.8690 +2944 2949 0.8700 +2944 2950 0.8080 +2944 2954 0.9210 +2944 3162 0.5020 +2944 3735 0.4360 +2944 4217 0.8500 +2944 4257 0.8070 +2944 4258 0.7660 +2944 4259 0.7780 +2944 4353 0.4010 +2944 4512 0.4610 +2944 4524 0.6910 +2944 4780 0.5240 +2944 4968 0.5830 +2944 4988 0.7190 +2944 5045 0.4830 +2944 5052 0.4040 +2944 5243 0.6740 +2944 5443 0.4400 +2944 5444 0.4960 +2944 5859 0.4720 +2944 6647 0.4070 +2944 6648 0.5320 +2944 6649 0.5600 +2944 6696 0.9810 +2944 6790 0.4970 +2944 7124 0.4100 +2944 7157 0.5080 +2944 7172 0.5000 +2944 7295 0.4080 +2944 7296 0.4590 +2944 7355 0.4120 +2944 7364 0.4640 +2944 7366 0.4280 +2944 7367 0.4310 +2944 7515 0.6960 +2944 7517 0.5810 +2944 8452 0.4770 +2944 8907 0.8550 +2944 9179 0.9220 +2944 9360 0.6120 +2944 9446 0.8930 +2944 9588 0.9390 +2944 9737 0.5500 +2944 9817 0.4480 +2944 9829 0.4660 +2944 10053 0.4800 +2944 10105 0.4580 +2944 10144 0.4500 +2944 10947 0.7190 +2944 11276 0.5580 +2944 25774 0.4100 +2944 26985 0.6090 +2944 27306 0.7930 +2944 29785 0.7080 +2944 51060 0.9000 +2944 54575 0.5940 +2944 54576 0.5930 +2944 54577 0.5960 +2944 54578 0.6060 +2944 54657 0.5910 +2944 54658 0.5940 +2944 55317 0.6030 +2944 55745 0.9150 +2944 57038 0.4970 +2944 57412 0.4190 +2944 57758 0.5130 +2944 79094 0.6580 +2944 84896 0.6040 +2944 114799 0.5790 +2944 119391 0.8870 +2944 124975 0.7970 +2944 133482 0.8940 +2944 135152 0.4120 +2944 157570 0.5770 +2944 221357 0.8040 +2944 257202 0.8310 +2944 353143 0.4300 +2944 373156 0.5810 +2944 441061 0.5630 +2944 493869 0.8280 +2944 494143 0.6570 +2944 653689 0.9190 +2946 2947 0.9960 +2946 2948 0.9730 +2946 2949 0.9510 +2946 2950 0.7690 +2946 2954 0.9200 +2946 4257 0.8320 +2946 4258 0.8010 +2946 4259 0.8580 +2946 4780 0.4240 +2946 5315 0.4430 +2946 6649 0.4930 +2946 7841 0.5430 +2946 9094 0.4180 +2946 9446 0.8740 +2946 9588 0.9330 +2946 9768 0.6090 +2946 25774 0.4150 +2946 25833 0.5120 +2946 26227 0.4960 +2946 27306 0.7900 +2946 28976 0.4240 +2946 29785 0.7110 +2946 51060 0.9000 +2946 54575 0.4190 +2946 54576 0.4150 +2946 54577 0.4190 +2946 54578 0.4570 +2946 54657 0.4170 +2946 54658 0.4170 +2946 55733 0.5070 +2946 55745 0.6930 +2946 55922 0.4370 +2946 79094 0.6640 +2946 80344 0.5750 +2946 119391 0.8520 +2946 124975 0.7120 +2946 133482 0.8940 +2946 220965 0.5070 +2946 221357 0.7090 +2946 253827 0.4250 +2946 257202 0.8030 +2946 373156 0.5630 +2946 493869 0.8010 +2946 494143 0.6500 +2946 653689 0.8840 +2947 2948 0.9630 +2947 2949 0.9570 +2947 2950 0.7580 +2947 2954 0.9270 +2947 3283 0.4170 +2947 3552 0.4260 +2947 3855 0.4210 +2947 4097 0.4340 +2947 4257 0.8120 +2947 4258 0.7790 +2947 4259 0.8010 +2947 4779 0.6240 +2947 5052 0.4050 +2947 5243 0.5050 +2947 7040 0.4070 +2947 7104 0.4040 +2947 7189 0.4910 +2947 7884 0.4410 +2947 7975 0.4040 +2947 9446 0.8800 +2947 9588 0.9400 +2947 9759 0.4300 +2947 23368 0.4130 +2947 23764 0.4080 +2947 27306 0.7730 +2947 29785 0.6870 +2947 51060 0.9000 +2947 55733 0.4930 +2947 55915 0.4020 +2947 79094 0.6500 +2947 83851 0.4250 +2947 84498 0.4500 +2947 84519 0.4760 +2947 92906 0.4100 +2947 119391 0.8420 +2947 124975 0.7100 +2947 133482 0.8080 +2947 163259 0.4250 +2947 221357 0.7090 +2947 257202 0.7690 +2947 345930 0.5440 +2947 373156 0.5480 +2947 493869 0.7670 +2947 494143 0.6500 +2947 653689 0.8770 +2948 2949 0.9540 +2948 2950 0.7630 +2948 2954 0.9210 +2948 4257 0.8020 +2948 4258 0.8060 +2948 4259 0.8620 +2948 5264 0.4710 +2948 5610 0.4120 +2948 7364 0.4180 +2948 8689 0.4310 +2948 9446 0.8340 +2948 9588 0.9200 +2948 23324 0.4080 +2948 27306 0.7620 +2948 29118 0.4120 +2948 29785 0.6730 +2948 51060 0.9120 +2948 51447 0.4100 +2948 55527 0.4120 +2948 55745 0.7590 +2948 79094 0.6500 +2948 91663 0.4030 +2948 119391 0.8170 +2948 124975 0.6850 +2948 133482 0.7520 +2948 221357 0.7230 +2948 257202 0.7330 +2948 373156 0.5570 +2948 493869 0.7250 +2948 494143 0.6500 +2948 653689 0.8740 +2949 2950 0.7630 +2949 2954 0.9320 +2949 4257 0.7700 +2949 4258 0.7770 +2949 4259 0.7830 +2949 5610 0.4260 +2949 7157 0.4430 +2949 9446 0.8440 +2949 9588 0.9280 +2949 10549 0.4030 +2949 11160 0.4300 +2949 25774 0.4630 +2949 27306 0.7780 +2949 29785 0.6700 +2949 51060 0.9000 +2949 55738 0.4530 +2949 55745 0.8870 +2949 79094 0.6500 +2949 119391 0.8320 +2949 124975 0.7060 +2949 133482 0.6260 +2949 221357 0.8170 +2949 257202 0.7380 +2949 373156 0.4530 +2949 493869 0.7310 +2949 494143 0.7150 +2949 653689 0.8660 +2950 2954 0.9450 +2950 3090 0.5090 +2950 3091 0.5660 +2950 3162 0.5300 +2950 3176 0.4210 +2950 3265 0.5220 +2950 3313 0.4270 +2950 3320 0.4300 +2950 3725 0.9270 +2950 3791 0.5020 +2950 3858 0.4600 +2950 4000 0.5350 +2950 4217 0.6950 +2950 4255 0.7250 +2950 4257 0.8300 +2950 4258 0.8120 +2950 4259 0.8170 +2950 4292 0.5990 +2950 4363 0.4930 +2950 4524 0.7250 +2950 4609 0.4720 +2950 4632 0.5670 +2950 4637 0.6930 +2950 4780 0.7200 +2950 4792 0.5250 +2950 4968 0.4480 +2950 5052 0.7870 +2950 5162 0.4110 +2950 5243 0.5950 +2950 5270 0.4950 +2950 5310 0.4080 +2950 5444 0.4160 +2950 5594 0.4110 +2950 5599 0.9740 +2950 5601 0.5020 +2950 5728 0.4760 +2950 5743 0.5080 +2950 5915 0.6690 +2950 6205 0.4730 +2950 6277 0.4120 +2950 6422 0.4720 +2950 6647 0.7180 +2950 6648 0.5810 +2950 6649 0.4170 +2950 6716 0.5270 +2950 6774 0.5500 +2950 6876 0.4160 +2950 7001 0.5790 +2950 7040 0.5670 +2950 7046 0.4200 +2950 7052 0.6450 +2950 7078 0.5850 +2950 7124 0.4040 +2950 7153 0.4770 +2950 7155 0.4850 +2950 7157 0.5810 +2950 7167 0.4270 +2950 7172 0.5010 +2950 7186 0.9450 +2950 7295 0.5750 +2950 7296 0.4900 +2950 7298 0.4770 +2950 7345 0.5350 +2950 7364 0.4100 +2950 7515 0.6660 +2950 7517 0.5070 +2950 8050 0.4400 +2950 8209 0.4520 +2950 8647 0.4240 +2950 8714 0.4210 +2950 9168 0.5400 +2950 9360 0.5730 +2950 9429 0.6080 +2950 9446 0.9150 +2950 9588 0.9730 +2950 9817 0.5260 +2950 10549 0.4140 +2950 10632 0.4530 +2950 10801 0.4880 +2950 10935 0.4050 +2950 10948 0.6880 +2950 11186 0.8110 +2950 11315 0.4070 +2950 22977 0.4560 +2950 23209 0.6830 +2950 23600 0.4180 +2950 23708 0.4070 +2950 25828 0.4030 +2950 27306 0.7730 +2950 29785 0.7420 +2950 51060 0.9000 +2950 51310 0.4140 +2950 54575 0.5830 +2950 54576 0.5840 +2950 54577 0.5870 +2950 54578 0.5950 +2950 54657 0.5830 +2950 54658 0.5860 +2950 55743 0.4470 +2950 79094 0.6650 +2950 80709 0.6470 +2950 83875 0.4670 +2950 119391 0.9270 +2950 124975 0.7140 +2950 133482 0.8810 +2950 140465 0.6180 +2950 140809 0.4200 +2950 219736 0.5550 +2950 221357 0.8170 +2950 257202 0.8150 +2950 373156 0.7540 +2950 493869 0.8210 +2950 494143 0.6540 +2950 653689 0.9470 +2954 3081 0.9960 +2954 3242 0.6780 +2954 3305 0.4280 +2954 4257 0.4770 +2954 4259 0.5230 +2954 5053 0.4180 +2954 5431 0.4490 +2954 5432 0.6360 +2954 5435 0.5350 +2954 6182 0.4080 +2954 6647 0.4100 +2954 6898 0.5410 +2954 7296 0.4240 +2954 9349 0.5110 +2954 9446 0.7650 +2954 9533 0.6390 +2954 9588 0.4050 +2954 9973 0.4110 +2954 10449 0.4250 +2954 10587 0.4320 +2954 11128 0.5240 +2954 25774 0.4530 +2954 25885 0.5180 +2954 27306 0.9640 +2954 51011 0.4340 +2954 55703 0.4580 +2954 81889 0.4680 +2954 84172 0.4490 +2954 84693 0.4090 +2954 119391 0.7360 +2954 123722 0.4470 +2954 133482 0.7140 +2954 151313 0.4070 +2954 221357 0.7240 +2954 283160 0.4720 +2954 283578 0.4320 +2954 373156 0.6610 +2954 653689 0.8070 +2956 3014 0.8090 +2956 3015 0.8380 +2956 3021 0.6510 +2956 3066 0.4690 +2956 3146 0.5360 +2956 3265 0.4810 +2956 3364 0.5830 +2956 3417 0.4320 +2956 3845 0.8010 +2956 3855 0.4250 +2956 3978 0.8100 +2956 3980 0.5720 +2956 3981 0.9650 +2956 4072 0.8740 +2956 4089 0.6630 +2956 4171 0.5410 +2956 4172 0.8080 +2956 4173 0.7350 +2956 4174 0.7490 +2956 4175 0.8020 +2956 4176 0.5890 +2956 4255 0.7660 +2956 4292 0.9990 +2956 4361 0.8620 +2956 4436 0.9990 +2956 4437 0.9990 +2956 4438 0.6000 +2956 4439 0.7040 +2956 4595 0.9820 +2956 4609 0.5330 +2956 4625 0.4060 +2956 4678 0.4220 +2956 4683 0.9070 +2956 4763 0.7560 +2956 4851 0.5700 +2956 4853 0.4620 +2956 4893 0.6080 +2956 4913 0.7180 +2956 4968 0.8680 +2956 4999 0.4270 +2956 5111 0.9980 +2956 5133 0.4470 +2956 5290 0.6310 +2956 5378 0.9990 +2956 5395 0.9990 +2956 5422 0.8820 +2956 5423 0.4240 +2956 5424 0.9950 +2956 5425 0.5250 +2956 5426 0.9570 +2956 5427 0.5210 +2956 5429 0.6000 +2956 5460 0.4470 +2956 5557 0.5510 +2956 5591 0.9670 +2956 5604 0.6290 +2956 5644 0.4800 +2956 5728 0.7420 +2956 5883 0.5680 +2956 5884 0.4140 +2956 5885 0.8620 +2956 5886 0.4610 +2956 5887 0.9550 +2956 5888 0.8930 +2956 5889 0.8020 +2956 5890 0.6300 +2956 5892 0.8460 +2956 5893 0.8360 +2956 5932 0.5900 +2956 5965 0.4670 +2956 5979 0.4780 +2956 5980 0.7780 +2956 5981 0.7830 +2956 5982 0.9010 +2956 5983 0.6830 +2956 5984 0.9280 +2956 5985 0.6600 +2956 6117 0.9100 +2956 6118 0.8060 +2956 6119 0.7160 +2956 6240 0.6760 +2956 6502 0.6220 +2956 6594 0.5510 +2956 6596 0.5400 +2956 6597 0.5200 +2956 6598 0.4350 +2956 6613 0.4040 +2956 6742 0.6340 +2956 6749 0.6100 +2956 6774 0.4410 +2956 6794 0.7100 +2956 6996 0.5600 +2956 7014 0.4460 +2956 7015 0.4620 +2956 7048 0.7030 +2956 7150 0.5560 +2956 7153 0.5850 +2956 7155 0.5120 +2956 7156 0.6800 +2956 7157 0.8260 +2956 7158 0.6780 +2956 7249 0.4130 +2956 7272 0.4060 +2956 7298 0.5760 +2956 7374 0.7780 +2956 7403 0.4460 +2956 7465 0.4160 +2956 7468 0.4690 +2956 7486 0.8750 +2956 7494 0.4280 +2956 7507 0.8560 +2956 7508 0.9330 +2956 7515 0.7520 +2956 7516 0.6280 +2956 7517 0.6060 +2956 7518 0.9460 +2956 7520 0.9720 +2956 7799 0.4980 +2956 7905 0.7280 +2956 8085 0.4070 +2956 8243 0.7670 +2956 8289 0.7260 +2956 8313 0.4210 +2956 8318 0.6390 +2956 8350 0.5170 +2956 8356 0.4290 +2956 8438 0.5770 +2956 8467 0.5940 +2956 8914 0.4450 +2956 8930 0.4400 +2956 9031 0.4920 +2956 9110 0.4430 +2956 9126 0.6870 +2956 9156 0.9960 +2956 9212 0.4570 +2956 9400 0.4390 +2956 9401 0.8500 +2956 9493 0.4450 +2956 9656 0.6490 +2956 9669 0.4710 +2956 9700 0.4580 +2956 9735 0.5770 +2956 9738 0.5770 +2956 9985 0.4410 +2956 10013 0.4890 +2956 10036 0.4830 +2956 10038 0.5440 +2956 10051 0.4880 +2956 10111 0.6240 +2956 10155 0.4060 +2956 10481 0.4480 +2956 10535 0.4990 +2956 10606 0.5020 +2956 10714 0.4670 +2956 10856 0.4030 +2956 10933 0.4940 +2956 10973 0.6240 +2956 11073 0.6970 +2956 11169 0.7080 +2956 11198 0.6900 +2956 11200 0.8900 +2956 11201 0.4160 +2956 23028 0.9320 +2956 23137 0.5580 +2956 23186 0.9080 +2956 23244 0.4160 +2956 23345 0.5390 +2956 23476 0.6800 +2956 23583 0.6120 +2956 23586 0.4900 +2956 23626 0.5160 +2956 23649 0.5850 +2956 25788 0.5580 +2956 26585 0.4470 +2956 27030 0.9990 +2956 27301 0.4990 +2956 27343 0.4430 +2956 27434 0.4190 +2956 29072 0.6630 +2956 29102 0.4030 +2956 29126 0.6100 +2956 29128 0.4670 +2956 29935 0.6270 +2956 51008 0.5740 +2956 51317 0.9130 +2956 51426 0.4960 +2956 51455 0.7180 +2956 51514 0.6890 +2956 51741 0.4080 +2956 51755 0.4520 +2956 54107 0.4660 +2956 54474 0.4850 +2956 54841 0.4090 +2956 54894 0.4790 +2956 54962 0.4550 +2956 55120 0.4310 +2956 55215 0.7840 +2956 55247 0.4440 +2956 55294 0.7320 +2956 56852 0.4660 +2956 56916 0.6600 +2956 57379 0.7120 +2956 57509 0.4400 +2956 57697 0.9270 +2956 58508 0.4100 +2956 60485 0.5530 +2956 63967 0.5190 +2956 64135 0.4940 +2956 64324 0.4430 +2956 64421 0.9350 +2956 79132 0.4870 +2956 79621 0.4110 +2956 79661 0.4480 +2956 79677 0.4960 +2956 79695 0.5900 +2956 79728 0.8940 +2956 79840 0.9310 +2956 79892 0.4590 +2956 79915 0.4900 +2956 79968 0.6470 +2956 79991 0.5260 +2956 80010 0.4610 +2956 80198 0.6220 +2956 80204 0.7910 +2956 81620 0.5780 +2956 83932 0.4230 +2956 83990 0.5790 +2956 84057 0.5010 +2956 84142 0.5440 +2956 84164 0.5460 +2956 84260 0.5190 +2956 84464 0.7300 +2956 84515 0.6330 +2956 84656 0.4630 +2956 84893 0.4520 +2956 84955 0.6340 +2956 91419 0.9050 +2956 91442 0.5320 +2956 125150 0.9000 +2956 126074 0.9120 +2956 136541 0.5230 +2956 144455 0.4470 +2956 163786 0.4780 +2956 201163 0.4180 +2956 221656 0.4260 +2956 254394 0.8950 +2956 254528 0.6910 +2956 286257 0.9160 +2956 348654 0.5160 +2956 400566 0.4810 +2956 548593 0.4620 +2956 642636 0.6000 +2956 100533467 0.6360 +2956 105375355 0.5400 +2957 2958 0.9990 +2957 2959 0.9990 +2957 2960 0.9970 +2957 2961 0.9960 +2957 2962 0.9960 +2957 2963 0.9810 +2957 2965 0.9740 +2957 2966 0.9910 +2957 2967 0.9890 +2957 2968 0.9920 +2957 2972 0.5480 +2957 3015 0.8090 +2957 3097 0.5220 +2957 3169 0.5260 +2957 3276 0.5070 +2957 3313 0.5480 +2957 3636 0.4320 +2957 4331 0.9510 +2957 4435 0.4990 +2957 4790 0.4040 +2957 4800 0.6250 +2957 5431 0.9470 +2957 5432 0.9510 +2957 5433 0.9480 +2957 5434 0.9570 +2957 5435 0.9460 +2957 5436 0.9470 +2957 5437 0.9460 +2957 5438 0.9460 +2957 5439 0.9380 +2957 5440 0.9450 +2957 5441 0.9520 +2957 5451 0.5700 +2957 5452 0.5180 +2957 5469 0.9600 +2957 6400 0.4240 +2957 6617 0.8960 +2957 6618 0.4990 +2957 6619 0.9070 +2957 6621 0.9480 +2957 6667 0.6710 +2957 6827 0.4160 +2957 6829 0.4140 +2957 6837 0.8230 +2957 6872 0.9880 +2957 6873 0.9870 +2957 6874 0.9850 +2957 6875 0.8470 +2957 6877 0.9940 +2957 6878 0.9890 +2957 6879 0.9840 +2957 6880 0.9900 +2957 6881 0.9830 +2957 6882 0.9810 +2957 6883 0.9770 +2957 6884 0.9850 +2957 6908 0.9990 +2957 6917 0.9560 +2957 7031 0.4990 +2957 7702 0.5500 +2957 8148 0.5620 +2957 8202 0.5240 +2957 8294 0.8060 +2957 8359 0.8000 +2957 8360 0.8060 +2957 8361 0.8120 +2957 8362 0.8000 +2957 8363 0.8030 +2957 8364 0.8040 +2957 8366 0.8090 +2957 8367 0.8050 +2957 8368 0.8110 +2957 8370 0.8000 +2957 8515 0.4650 +2957 8648 0.5170 +2957 8812 0.5760 +2957 8850 0.5090 +2957 8970 0.8120 +2957 9282 0.9640 +2957 9412 0.9080 +2957 9439 0.9380 +2957 9440 0.9310 +2957 9441 0.9420 +2957 9442 0.9470 +2957 9443 0.9640 +2957 9477 0.8160 +2957 9519 0.9930 +2957 9862 0.9240 +2957 10000 0.4070 +2957 10001 0.8980 +2957 10025 0.8180 +2957 10302 0.8950 +2957 10498 0.5220 +2957 10524 0.5060 +2957 10629 0.5480 +2957 10777 0.4250 +2957 11036 0.9370 +2957 11037 0.9040 +2957 22828 0.4010 +2957 22926 0.4090 +2957 23019 0.4640 +2957 29079 0.8360 +2957 29101 0.4600 +2957 51003 0.9120 +2957 51585 0.4420 +2957 51586 0.8270 +2957 51616 0.9030 +2957 54439 0.4870 +2957 54457 0.5900 +2957 54797 0.8270 +2957 55090 0.8000 +2957 55290 0.5470 +2957 55584 0.4140 +2957 55588 0.8130 +2957 55617 0.5530 +2957 55885 0.4260 +2957 79004 0.5910 +2957 79415 0.5540 +2957 79810 0.4220 +2957 80306 0.8130 +2957 81857 0.8440 +2957 83860 0.9790 +2957 84246 0.9170 +2957 85439 0.9800 +2957 90390 0.8410 +2957 112950 0.8130 +2957 121504 0.8000 +2957 126961 0.8030 +2957 129685 0.9800 +2957 138474 0.5720 +2957 145508 0.4900 +2957 200132 0.4780 +2957 246721 0.4180 +2957 286749 0.5820 +2957 333932 0.8030 +2957 387332 0.9010 +2957 391742 0.5840 +2957 391746 0.5840 +2957 391747 0.5840 +2957 399949 0.5580 +2957 400569 0.8230 +2957 404672 0.9800 +2957 548644 0.4180 +2957 554313 0.8000 +2957 646066 0.5840 +2957 646103 0.5840 +2957 646658 0.4260 +2957 653604 0.8190 +2957 728340 0.5620 +2957 102723526 0.5840 +2957 112488736 0.5840 +2957 112488737 0.5840 +2957 112488738 0.5840 +2957 112488739 0.5840 +2957 112488740 0.5840 +2957 112488745 0.5840 +2957 112488746 0.5840 +2957 112488747 0.5840 +2958 2959 0.9990 +2958 2960 0.9980 +2958 2961 0.9980 +2958 2962 0.9970 +2958 2963 0.9920 +2958 2965 0.9850 +2958 2966 0.9930 +2958 2967 0.9940 +2958 2968 0.9920 +2958 3015 0.8360 +2958 3169 0.4990 +2958 3276 0.5110 +2958 3704 0.4510 +2958 4331 0.9650 +2958 4435 0.5120 +2958 4712 0.4320 +2958 4800 0.4320 +2958 5431 0.9720 +2958 5432 0.9690 +2958 5433 0.9690 +2958 5434 0.9710 +2958 5435 0.9650 +2958 5436 0.9670 +2958 5437 0.9750 +2958 5438 0.9660 +2958 5439 0.9620 +2958 5440 0.9680 +2958 5441 0.9640 +2958 5451 0.4990 +2958 5452 0.4990 +2958 5469 0.8140 +2958 5684 0.4160 +2958 5690 0.4630 +2958 5797 0.4030 +2958 6617 0.9030 +2958 6618 0.5340 +2958 6619 0.9530 +2958 6621 0.9500 +2958 6635 0.5790 +2958 6667 0.5020 +2958 6827 0.4640 +2958 6837 0.8160 +2958 6872 0.9860 +2958 6873 0.9850 +2958 6874 0.9870 +2958 6875 0.7660 +2958 6877 0.9930 +2958 6878 0.9850 +2958 6879 0.9860 +2958 6880 0.9950 +2958 6881 0.9900 +2958 6882 0.9900 +2958 6883 0.9660 +2958 6884 0.9900 +2958 6908 0.9990 +2958 6917 0.9690 +2958 6919 0.6880 +2958 6920 0.6870 +2958 7031 0.5040 +2958 7332 0.4450 +2958 7702 0.6560 +2958 8148 0.6290 +2958 8202 0.4990 +2958 8294 0.8470 +2958 8359 0.8470 +2958 8360 0.8470 +2958 8361 0.8470 +2958 8362 0.8470 +2958 8363 0.8470 +2958 8364 0.8490 +2958 8366 0.8480 +2958 8367 0.8470 +2958 8368 0.8480 +2958 8370 0.8470 +2958 8648 0.4990 +2958 8812 0.5240 +2958 8850 0.5200 +2958 8970 0.8110 +2958 9245 0.4180 +2958 9282 0.9250 +2958 9412 0.9510 +2958 9439 0.8280 +2958 9440 0.9050 +2958 9441 0.8710 +2958 9442 0.8210 +2958 9443 0.9410 +2958 9477 0.8360 +2958 9519 0.9760 +2958 9533 0.4890 +2958 9551 0.4170 +2958 9616 0.4960 +2958 9862 0.8260 +2958 10001 0.9520 +2958 10025 0.8140 +2958 10302 0.9060 +2958 10498 0.4990 +2958 10524 0.4990 +2958 10629 0.4050 +2958 10952 0.4050 +2958 11036 0.9980 +2958 11037 0.8140 +2958 11157 0.4930 +2958 23658 0.4440 +2958 26286 0.4450 +2958 27257 0.4050 +2958 27258 0.6810 +2958 29079 0.8490 +2958 29101 0.4500 +2958 51003 0.9310 +2958 51013 0.4550 +2958 51585 0.4010 +2958 51586 0.8330 +2958 51616 0.9400 +2958 51691 0.5630 +2958 51728 0.6190 +2958 51750 0.4080 +2958 54457 0.5720 +2958 54797 0.8120 +2958 55090 0.8000 +2958 55588 0.8180 +2958 55617 0.4480 +2958 55703 0.4450 +2958 56943 0.4430 +2958 79004 0.4760 +2958 80145 0.4420 +2958 80306 0.8230 +2958 80349 0.5200 +2958 81857 0.8120 +2958 83860 0.9810 +2958 83990 0.4100 +2958 84172 0.4530 +2958 84246 0.9430 +2958 84661 0.4400 +2958 84844 0.4450 +2958 90390 0.8270 +2958 112950 0.8180 +2958 121504 0.8470 +2958 126961 0.8480 +2958 129685 0.9850 +2958 138474 0.6910 +2958 246721 0.5880 +2958 284613 0.4990 +2958 286749 0.9240 +2958 333932 0.8480 +2958 387332 0.8820 +2958 391742 0.6220 +2958 391746 0.6220 +2958 391747 0.6220 +2958 399949 0.7840 +2958 400569 0.8180 +2958 404672 0.9830 +2958 548644 0.5870 +2958 554313 0.8470 +2958 646066 0.6220 +2958 646103 0.6220 +2958 653604 0.8530 +2958 728340 0.6780 +2958 100134938 0.5290 +2958 102723526 0.6220 +2958 107983993 0.5290 +2958 112488736 0.6220 +2958 112488737 0.6220 +2958 112488738 0.6220 +2958 112488739 0.6220 +2958 112488740 0.6220 +2958 112488745 0.6220 +2958 112488746 0.6220 +2958 112488747 0.6220 +2959 2960 0.9990 +2959 2961 0.9990 +2959 2962 0.9990 +2959 2963 0.9990 +2959 2965 0.9900 +2959 2966 0.9970 +2959 2967 0.9980 +2959 2968 0.9980 +2959 2971 0.4690 +2959 2972 0.7750 +2959 2975 0.6100 +2959 3015 0.8850 +2959 3021 0.5560 +2959 3148 0.4070 +2959 3172 0.4120 +2959 3607 0.5510 +2959 3725 0.5590 +2959 3960 0.8730 +2959 4204 0.4080 +2959 4261 0.5940 +2959 4298 0.5820 +2959 4300 0.5540 +2959 4320 0.4080 +2959 4331 0.9810 +2959 4589 0.4700 +2959 4609 0.4050 +2959 4654 0.4450 +2959 4790 0.4930 +2959 4801 0.4950 +2959 4998 0.4430 +2959 5000 0.5660 +2959 5001 0.4990 +2959 5284 0.4200 +2959 5431 0.9990 +2959 5432 0.9970 +2959 5433 0.9980 +2959 5434 0.9990 +2959 5435 0.9960 +2959 5436 0.9970 +2959 5437 0.9960 +2959 5438 0.9970 +2959 5439 0.9900 +2959 5440 0.9970 +2959 5441 0.9860 +2959 5451 0.5740 +2959 5452 0.5810 +2959 5469 0.9560 +2959 5542 0.6660 +2959 5586 0.4470 +2959 5701 0.4120 +2959 5720 0.4330 +2959 5721 0.4170 +2959 5831 0.4740 +2959 5970 0.7470 +2959 5978 0.4030 +2959 6144 0.4160 +2959 6203 0.4110 +2959 6597 0.4410 +2959 6617 0.9620 +2959 6618 0.6080 +2959 6619 0.9290 +2959 6621 0.9130 +2959 6667 0.7470 +2959 6789 0.4770 +2959 6827 0.7940 +2959 6829 0.8400 +2959 6830 0.5850 +2959 6837 0.8820 +2959 6872 0.9990 +2959 6873 0.9930 +2959 6874 0.9820 +2959 6875 0.8050 +2959 6877 0.9900 +2959 6878 0.9960 +2959 6879 0.9960 +2959 6880 0.9980 +2959 6881 0.9940 +2959 6882 0.9970 +2959 6883 0.9880 +2959 6884 0.9920 +2959 6908 0.9990 +2959 6917 0.9980 +2959 6919 0.9790 +2959 6920 0.9600 +2959 7025 0.7120 +2959 7067 0.5870 +2959 7157 0.8760 +2959 7528 0.7510 +2959 7702 0.7010 +2959 7936 0.5180 +2959 8089 0.5020 +2959 8148 0.5160 +2959 8290 0.5400 +2959 8294 0.8390 +2959 8337 0.4250 +2959 8338 0.4100 +2959 8356 0.5540 +2959 8359 0.8390 +2959 8360 0.8390 +2959 8361 0.8790 +2959 8362 0.8390 +2959 8363 0.8400 +2959 8364 0.8390 +2959 8366 0.8390 +2959 8367 0.8390 +2959 8368 0.8390 +2959 8369 0.4290 +2959 8370 0.8390 +2959 8553 0.6620 +2959 8607 0.4160 +2959 8648 0.6300 +2959 8661 0.4200 +2959 8662 0.4050 +2959 8666 0.4980 +2959 8668 0.5430 +2959 8812 0.6370 +2959 8850 0.6930 +2959 8900 0.4450 +2959 8970 0.8290 +2959 9014 0.4350 +2959 9044 0.7690 +2959 9150 0.9500 +2959 9221 0.4820 +2959 9282 0.9940 +2959 9412 0.9850 +2959 9439 0.9360 +2959 9440 0.9710 +2959 9441 0.9710 +2959 9442 0.9400 +2959 9443 0.9870 +2959 9477 0.9210 +2959 9519 0.9960 +2959 9533 0.8470 +2959 9577 0.6080 +2959 9611 0.5140 +2959 9646 0.4280 +2959 9696 0.4750 +2959 9759 0.5040 +2959 9862 0.9210 +2959 10001 0.9780 +2959 10025 0.8730 +2959 10155 0.4480 +2959 10197 0.6150 +2959 10302 0.9590 +2959 10320 0.4180 +2959 10589 0.8800 +2959 10629 0.5480 +2959 10664 0.4030 +2959 10923 0.8450 +2959 11036 0.8580 +2959 11128 0.6020 +2959 11198 0.4630 +2959 11201 0.6150 +2959 22938 0.4480 +2959 23097 0.4820 +2959 23476 0.5470 +2959 23594 0.5890 +2959 23595 0.5530 +2959 23658 0.6110 +2959 25804 0.6030 +2959 25885 0.4190 +2959 26043 0.4760 +2959 29079 0.9360 +2959 29101 0.9720 +2959 29105 0.8850 +2959 30834 0.6300 +2959 51003 0.9750 +2959 51082 0.5290 +2959 51092 0.4740 +2959 51477 0.7070 +2959 51585 0.8150 +2959 51586 0.8840 +2959 51616 0.9580 +2959 51728 0.5530 +2959 51750 0.5030 +2959 54433 0.4080 +2959 54457 0.7560 +2959 54700 0.5310 +2959 54797 0.9670 +2959 54847 0.4780 +2959 54888 0.4590 +2959 55090 0.9080 +2959 55290 0.7870 +2959 55588 0.8710 +2959 55689 0.4520 +2959 55703 0.6900 +2959 55814 0.7450 +2959 56267 0.4180 +2959 57121 0.4740 +2959 65056 0.6420 +2959 79871 0.4120 +2959 80306 0.9060 +2959 81488 0.5850 +2959 81857 0.9130 +2959 83860 0.9920 +2959 83990 0.5030 +2959 84163 0.4250 +2959 84172 0.7220 +2959 84246 0.9800 +2959 90390 0.8810 +2959 112950 0.8960 +2959 121504 0.8390 +2959 126961 0.8440 +2959 127428 0.5080 +2959 129685 0.9880 +2959 136157 0.4410 +2959 138474 0.7990 +2959 143506 0.4410 +2959 147912 0.4910 +2959 149483 0.4750 +2959 170082 0.5080 +2959 196120 0.4410 +2959 246721 0.6020 +2959 286749 0.7570 +2959 333932 0.8410 +2959 340602 0.4740 +2959 387332 0.9940 +2959 389493 0.4200 +2959 389524 0.4250 +2959 390031 0.4410 +2959 390033 0.4410 +2959 391742 0.6100 +2959 391746 0.6100 +2959 391747 0.6100 +2959 399949 0.8200 +2959 400569 0.9170 +2959 404672 0.9860 +2959 440093 0.5390 +2959 440686 0.5390 +2959 441584 0.4410 +2959 448834 0.4740 +2959 548644 0.6020 +2959 554313 0.8390 +2959 643988 0.4290 +2959 646066 0.6100 +2959 646103 0.6100 +2959 653604 0.9050 +2959 728340 0.7430 +2959 100134938 0.5240 +2959 102723526 0.6100 +2959 107983993 0.5240 +2959 112488736 0.6100 +2959 112488737 0.6100 +2959 112488738 0.6100 +2959 112488739 0.6100 +2959 112488740 0.6100 +2959 112488745 0.6100 +2959 112488746 0.6100 +2959 112488747 0.6100 +2959 122455342 0.4740 +2960 2961 0.9990 +2960 2962 0.9990 +2960 2963 0.9990 +2960 2965 0.9990 +2960 2966 0.9980 +2960 2967 0.9990 +2960 2968 0.9990 +2960 2972 0.7100 +2960 3015 0.8150 +2960 3551 0.6100 +2960 3607 0.5660 +2960 4331 0.9970 +2960 5431 0.9920 +2960 5432 0.9860 +2960 5433 0.9820 +2960 5434 0.9960 +2960 5435 0.9960 +2960 5436 0.9970 +2960 5437 0.9760 +2960 5438 0.9890 +2960 5439 0.9610 +2960 5440 0.9960 +2960 5441 0.9950 +2960 5451 0.5250 +2960 5452 0.5150 +2960 5469 0.8490 +2960 6599 0.6130 +2960 6617 0.5280 +2960 6618 0.5320 +2960 6619 0.6060 +2960 6621 0.5160 +2960 6667 0.5150 +2960 6749 0.5450 +2960 6827 0.6200 +2960 6829 0.8570 +2960 6830 0.7730 +2960 6837 0.8440 +2960 6872 0.9910 +2960 6873 0.9860 +2960 6874 0.9510 +2960 6875 0.7260 +2960 6877 0.9860 +2960 6878 0.9960 +2960 6879 0.9950 +2960 6880 0.9900 +2960 6881 0.9810 +2960 6882 0.9920 +2960 6883 0.9810 +2960 6884 0.9820 +2960 6908 0.9990 +2960 6917 0.9890 +2960 6919 0.8040 +2960 6920 0.8040 +2960 7702 0.6130 +2960 8294 0.8340 +2960 8349 0.4520 +2960 8359 0.8340 +2960 8360 0.8340 +2960 8361 0.8410 +2960 8362 0.8340 +2960 8363 0.8340 +2960 8364 0.8340 +2960 8366 0.8340 +2960 8367 0.8340 +2960 8368 0.8340 +2960 8370 0.8340 +2960 8517 0.4660 +2960 8721 0.4640 +2960 8812 0.5510 +2960 8970 0.8130 +2960 9282 0.9480 +2960 9330 0.4390 +2960 9343 0.4260 +2960 9412 0.9670 +2960 9439 0.9070 +2960 9440 0.9420 +2960 9441 0.8910 +2960 9442 0.8820 +2960 9443 0.9520 +2960 9477 0.8530 +2960 9519 0.6250 +2960 9533 0.8740 +2960 9862 0.8570 +2960 9869 0.6310 +2960 10001 0.9270 +2960 10025 0.8280 +2960 10302 0.5080 +2960 10621 0.6360 +2960 10623 0.7220 +2960 10629 0.4300 +2960 10762 0.4060 +2960 10951 0.4220 +2960 11036 0.6440 +2960 11128 0.7030 +2960 11198 0.6000 +2960 23552 0.8080 +2960 25885 0.7060 +2960 26043 0.4150 +2960 29079 0.9080 +2960 29101 0.5620 +2960 30834 0.5750 +2960 51003 0.9250 +2960 51082 0.6270 +2960 51585 0.4810 +2960 51586 0.8370 +2960 51616 0.9050 +2960 51728 0.5760 +2960 51729 0.4030 +2960 51750 0.6490 +2960 51773 0.5590 +2960 54457 0.6180 +2960 54554 0.4040 +2960 54797 0.8630 +2960 55090 0.8070 +2960 55290 0.6630 +2960 55588 0.8130 +2960 55689 0.4010 +2960 55703 0.8590 +2960 55729 0.7360 +2960 55751 0.4070 +2960 57570 0.4200 +2960 58517 0.4200 +2960 80063 0.5520 +2960 80306 0.8160 +2960 81857 0.8530 +2960 83860 0.9810 +2960 83990 0.6520 +2960 84172 0.8460 +2960 84246 0.9250 +2960 90390 0.8540 +2960 112950 0.8270 +2960 121504 0.8340 +2960 124245 0.4690 +2960 126961 0.8270 +2960 127428 0.4270 +2960 129685 0.9820 +2960 138474 0.5400 +2960 170082 0.4270 +2960 171568 0.8030 +2960 246721 0.5530 +2960 285231 0.8080 +2960 285282 0.5890 +2960 286749 0.5860 +2960 333932 0.8270 +2960 387332 0.6850 +2960 391742 0.5700 +2960 391746 0.5700 +2960 391747 0.5700 +2960 399949 0.6000 +2960 400569 0.8410 +2960 404672 0.9900 +2960 548644 0.5530 +2960 554313 0.8340 +2960 646066 0.5700 +2960 646103 0.5700 +2960 653604 0.8340 +2960 728340 0.8860 +2960 100134938 0.4820 +2960 102723526 0.5700 +2960 107983993 0.4820 +2960 112488736 0.5700 +2960 112488737 0.5700 +2960 112488738 0.5700 +2960 112488739 0.5700 +2960 112488740 0.5700 +2960 112488745 0.5700 +2960 112488746 0.5700 +2960 112488747 0.5700 +2961 2962 0.9990 +2961 2963 0.9990 +2961 2965 0.9960 +2961 2966 0.9970 +2961 2967 0.9990 +2961 2968 0.9990 +2961 3015 0.8090 +2961 3205 0.4390 +2961 3607 0.5020 +2961 3725 0.5900 +2961 4331 0.9970 +2961 5431 0.9890 +2961 5432 0.9870 +2961 5433 0.9740 +2961 5434 0.9870 +2961 5435 0.9830 +2961 5436 0.9740 +2961 5437 0.9650 +2961 5438 0.9740 +2961 5439 0.9530 +2961 5440 0.9840 +2961 5441 0.9620 +2961 5451 0.5130 +2961 5452 0.4990 +2961 5469 0.8320 +2961 5516 0.4150 +2961 6427 0.4180 +2961 6613 0.4210 +2961 6617 0.5200 +2961 6618 0.5000 +2961 6619 0.5090 +2961 6621 0.5850 +2961 6667 0.5270 +2961 6827 0.5470 +2961 6829 0.6110 +2961 6837 0.8390 +2961 6872 0.9900 +2961 6873 0.9850 +2961 6874 0.9790 +2961 6875 0.7540 +2961 6877 0.9930 +2961 6878 0.9910 +2961 6879 0.9940 +2961 6880 0.9910 +2961 6881 0.9830 +2961 6882 0.9820 +2961 6883 0.9850 +2961 6884 0.9890 +2961 6908 0.9980 +2961 6917 0.9610 +2961 6919 0.4780 +2961 6920 0.4660 +2961 7175 0.4640 +2961 7486 0.5400 +2961 7702 0.5460 +2961 7737 0.5710 +2961 8294 0.8340 +2961 8359 0.8340 +2961 8360 0.8340 +2961 8361 0.8370 +2961 8362 0.8340 +2961 8363 0.8340 +2961 8364 0.8340 +2961 8366 0.8340 +2961 8367 0.8340 +2961 8368 0.8340 +2961 8369 0.4220 +2961 8370 0.8340 +2961 8812 0.6020 +2961 8833 0.4620 +2961 8970 0.8130 +2961 8986 0.4150 +2961 9219 0.4510 +2961 9282 0.9710 +2961 9412 0.9290 +2961 9439 0.8750 +2961 9440 0.9330 +2961 9441 0.8660 +2961 9442 0.8360 +2961 9443 0.9640 +2961 9477 0.8200 +2961 9519 0.6370 +2961 9533 0.6040 +2961 9862 0.8580 +2961 9869 0.6350 +2961 9931 0.5240 +2961 10001 0.9670 +2961 10025 0.8550 +2961 10291 0.4440 +2961 10302 0.5070 +2961 10621 0.5150 +2961 10623 0.4860 +2961 10946 0.5180 +2961 10992 0.4830 +2961 11036 0.5580 +2961 11051 0.4500 +2961 23306 0.4660 +2961 23552 0.8250 +2961 27000 0.4230 +2961 29079 0.8900 +2961 29101 0.6380 +2961 51003 0.9480 +2961 51366 0.4480 +2961 51574 0.4640 +2961 51585 0.5370 +2961 51586 0.8520 +2961 51616 0.9000 +2961 51750 0.5970 +2961 54457 0.5870 +2961 54797 0.8230 +2961 54851 0.4110 +2961 55090 0.8000 +2961 55174 0.4630 +2961 55205 0.4780 +2961 55588 0.8130 +2961 55660 0.4440 +2961 55689 0.4150 +2961 55703 0.5460 +2961 55729 0.6770 +2961 57569 0.4230 +2961 58517 0.4040 +2961 64210 0.6500 +2961 80063 0.6460 +2961 80306 0.8200 +2961 81857 0.8710 +2961 83732 0.4170 +2961 83860 0.9820 +2961 83990 0.5970 +2961 84172 0.5680 +2961 84246 0.9660 +2961 90390 0.8860 +2961 90624 0.5120 +2961 112950 0.8220 +2961 121504 0.8340 +2961 124245 0.4300 +2961 126961 0.8260 +2961 129685 0.9830 +2961 136647 0.5550 +2961 138474 0.5720 +2961 140890 0.4290 +2961 150274 0.6340 +2961 201229 0.4020 +2961 246721 0.4890 +2961 285231 0.8250 +2961 286749 0.5580 +2961 333932 0.8260 +2961 387332 0.5840 +2961 391742 0.5680 +2961 391746 0.5680 +2961 391747 0.5680 +2961 399949 0.5840 +2961 400569 0.8390 +2961 404672 0.9880 +2961 548644 0.4890 +2961 554313 0.8340 +2961 646066 0.5680 +2961 646103 0.5680 +2961 653604 0.8380 +2961 728340 0.8870 +2961 100134938 0.4890 +2961 102723526 0.5680 +2961 107983993 0.4890 +2961 112488736 0.5680 +2961 112488737 0.5680 +2961 112488738 0.5680 +2961 112488739 0.5680 +2961 112488740 0.5680 +2961 112488745 0.5680 +2961 112488746 0.5680 +2961 112488747 0.5680 +2962 2963 0.9990 +2962 2965 0.9950 +2962 2966 0.9940 +2962 2967 0.9980 +2962 2968 0.9980 +2962 3015 0.8110 +2962 3178 0.6470 +2962 3185 0.5290 +2962 3187 0.5200 +2962 3192 0.5430 +2962 3725 0.6140 +2962 4131 0.4800 +2962 4298 0.8090 +2962 4300 0.7710 +2962 4331 0.9690 +2962 4601 0.5050 +2962 4602 0.5250 +2962 4609 0.5880 +2962 4650 0.6230 +2962 4670 0.5710 +2962 4686 0.6010 +2962 4904 0.5220 +2962 5431 0.9990 +2962 5432 0.9960 +2962 5433 0.9960 +2962 5434 0.9980 +2962 5435 0.9940 +2962 5436 0.9980 +2962 5437 0.9820 +2962 5438 0.9990 +2962 5439 0.9760 +2962 5440 0.9850 +2962 5441 0.9940 +2962 5451 0.5250 +2962 5452 0.6190 +2962 5469 0.8510 +2962 5701 0.6860 +2962 5702 0.5780 +2962 5725 0.5930 +2962 5771 0.5270 +2962 5892 0.5140 +2962 5978 0.4710 +2962 5982 0.4950 +2962 6426 0.5370 +2962 6427 0.6240 +2962 6431 0.5480 +2962 6432 0.5170 +2962 6433 0.4940 +2962 6602 0.6290 +2962 6605 0.5580 +2962 6617 0.5110 +2962 6618 0.5700 +2962 6619 0.7650 +2962 6621 0.5500 +2962 6625 0.4090 +2962 6626 0.4230 +2962 6638 0.4090 +2962 6667 0.5590 +2962 6722 0.6770 +2962 6749 0.7840 +2962 6827 0.5920 +2962 6829 0.7180 +2962 6830 0.4140 +2962 6837 0.8280 +2962 6856 0.6490 +2962 6872 0.9980 +2962 6873 0.9890 +2962 6874 0.9630 +2962 6875 0.7560 +2962 6877 0.9900 +2962 6878 0.9920 +2962 6879 0.9960 +2962 6880 0.9890 +2962 6881 0.9820 +2962 6882 0.9910 +2962 6883 0.9790 +2962 6884 0.9840 +2962 6908 0.9990 +2962 6917 0.9900 +2962 6919 0.7130 +2962 6920 0.7110 +2962 6921 0.6810 +2962 6923 0.7010 +2962 6924 0.7380 +2962 6936 0.5160 +2962 7072 0.5640 +2962 7073 0.5490 +2962 7469 0.5890 +2962 7702 0.6340 +2962 7936 0.7400 +2962 8089 0.7230 +2962 8148 0.5510 +2962 8178 0.5570 +2962 8233 0.5250 +2962 8294 0.8420 +2962 8350 0.4090 +2962 8359 0.8430 +2962 8360 0.8420 +2962 8361 0.8390 +2962 8362 0.8420 +2962 8363 0.8430 +2962 8364 0.8440 +2962 8366 0.8430 +2962 8367 0.8430 +2962 8368 0.8420 +2962 8370 0.8420 +2962 8498 0.4920 +2962 8725 0.4790 +2962 8731 0.5280 +2962 8732 0.5630 +2962 8812 0.8230 +2962 8970 0.8130 +2962 9150 0.9990 +2962 9221 0.4030 +2962 9282 0.9440 +2962 9412 0.9700 +2962 9439 0.8880 +2962 9440 0.9650 +2962 9441 0.9020 +2962 9442 0.8700 +2962 9443 0.9450 +2962 9472 0.6090 +2962 9477 0.8360 +2962 9519 0.6380 +2962 9533 0.8370 +2962 9589 0.4380 +2962 9656 0.5160 +2962 9853 0.6590 +2962 9862 0.8460 +2962 9997 0.4200 +2962 10001 0.9380 +2962 10025 0.8250 +2962 10106 0.7490 +2962 10157 0.6940 +2962 10217 0.7750 +2962 10250 0.5040 +2962 10302 0.5260 +2962 10419 0.4490 +2962 10629 0.5020 +2962 10664 0.5180 +2962 10849 0.5780 +2962 10923 0.5030 +2962 10946 0.4100 +2962 11017 0.4080 +2962 11036 0.5440 +2962 11073 0.5200 +2962 11128 0.4250 +2962 11198 0.6440 +2962 11201 0.5600 +2962 22916 0.5990 +2962 23168 0.4260 +2962 23399 0.5770 +2962 23476 0.5620 +2962 23543 0.5800 +2962 23637 0.5000 +2962 24144 0.6230 +2962 25920 0.6180 +2962 26043 0.4010 +2962 26099 0.4180 +2962 27125 0.5370 +2962 27339 0.6140 +2962 29079 0.8620 +2962 29101 0.6360 +2962 29115 0.4140 +2962 30834 0.5770 +2962 51003 0.9500 +2962 51224 0.4990 +2962 51496 0.6320 +2962 51497 0.5210 +2962 51585 0.5040 +2962 51586 0.8780 +2962 51593 0.4010 +2962 51616 0.9030 +2962 51728 0.8880 +2962 51750 0.4150 +2962 51755 0.5520 +2962 54457 0.5720 +2962 54797 0.8300 +2962 54845 0.4990 +2962 55090 0.8130 +2962 55215 0.5040 +2962 55588 0.8450 +2962 55689 0.6250 +2962 55696 0.4120 +2962 55703 0.7060 +2962 55718 0.5480 +2962 55840 0.4990 +2962 56339 0.4050 +2962 56981 0.4220 +2962 57461 0.4160 +2962 57680 0.5140 +2962 57721 0.4200 +2962 58190 0.7720 +2962 79084 0.5270 +2962 79577 0.4190 +2962 79759 0.6830 +2962 80004 0.4990 +2962 80306 0.8130 +2962 80852 0.5540 +2962 81488 0.4090 +2962 81857 0.8590 +2962 83860 0.9830 +2962 83990 0.4100 +2962 84172 0.6990 +2962 84246 0.9290 +2962 85403 0.5800 +2962 90390 0.8540 +2962 92609 0.6010 +2962 112950 0.8200 +2962 121504 0.8420 +2962 126961 0.8310 +2962 127428 0.5020 +2962 129685 0.9810 +2962 134510 0.6670 +2962 138474 0.6670 +2962 140890 0.4310 +2962 143884 0.4990 +2962 170082 0.4980 +2962 246721 0.5890 +2962 286749 0.5440 +2962 333932 0.8310 +2962 387332 0.6160 +2962 391742 0.5700 +2962 391746 0.5700 +2962 391747 0.5700 +2962 399949 0.5600 +2962 400569 0.8400 +2962 404672 0.9880 +2962 548644 0.5930 +2962 554313 0.8430 +2962 646066 0.5700 +2962 646103 0.5700 +2962 653604 0.8460 +2962 728340 0.7390 +2962 100134938 0.5270 +2962 102723526 0.5700 +2962 107983993 0.5270 +2962 112488736 0.5700 +2962 112488737 0.5700 +2962 112488738 0.5700 +2962 112488739 0.5700 +2962 112488740 0.5700 +2962 112488745 0.5700 +2962 112488746 0.5700 +2962 112488747 0.5700 +2963 2965 0.9800 +2963 2966 0.9730 +2963 2967 0.9930 +2963 2968 0.9760 +2963 2972 0.6280 +2963 3015 0.8090 +2963 3178 0.5760 +2963 3185 0.6050 +2963 3187 0.5820 +2963 3397 0.4380 +2963 3725 0.5840 +2963 4172 0.5210 +2963 4236 0.4160 +2963 4298 0.7660 +2963 4300 0.7740 +2963 4331 0.9800 +2963 4602 0.5010 +2963 4670 0.6290 +2963 4686 0.6000 +2963 4904 0.5530 +2963 5393 0.4560 +2963 5431 0.9990 +2963 5432 0.9970 +2963 5433 0.9960 +2963 5434 0.9990 +2963 5435 0.9930 +2963 5436 0.9980 +2963 5437 0.9950 +2963 5438 0.9980 +2963 5439 0.9890 +2963 5440 0.9890 +2963 5441 0.9890 +2963 5451 0.5070 +2963 5452 0.4990 +2963 5469 0.8780 +2963 5725 0.5900 +2963 5892 0.4990 +2963 6182 0.4460 +2963 6204 0.4050 +2963 6235 0.4040 +2963 6426 0.5660 +2963 6427 0.6120 +2963 6431 0.6220 +2963 6432 0.5630 +2963 6617 0.5460 +2963 6618 0.5260 +2963 6619 0.7700 +2963 6621 0.5180 +2963 6667 0.5750 +2963 6749 0.6320 +2963 6827 0.7550 +2963 6829 0.9250 +2963 6837 0.8380 +2963 6872 0.9510 +2963 6873 0.9560 +2963 6874 0.9770 +2963 6875 0.5020 +2963 6877 0.9790 +2963 6878 0.9690 +2963 6879 0.9800 +2963 6880 0.9490 +2963 6881 0.9350 +2963 6882 0.9350 +2963 6883 0.9710 +2963 6884 0.9210 +2963 6908 0.9990 +2963 6917 0.9090 +2963 6919 0.7360 +2963 6920 0.7360 +2963 6921 0.7480 +2963 6923 0.7110 +2963 6924 0.7460 +2963 6936 0.5110 +2963 7072 0.5320 +2963 7073 0.5370 +2963 7469 0.5510 +2963 7702 0.5220 +2963 7917 0.4830 +2963 7936 0.6420 +2963 8089 0.7490 +2963 8148 0.5810 +2963 8178 0.5430 +2963 8233 0.5040 +2963 8294 0.8340 +2963 8359 0.8340 +2963 8360 0.8340 +2963 8361 0.8380 +2963 8362 0.8340 +2963 8363 0.8340 +2963 8364 0.8340 +2963 8366 0.8360 +2963 8367 0.8340 +2963 8368 0.8350 +2963 8369 0.4220 +2963 8370 0.8340 +2963 8458 0.4860 +2963 8697 0.5180 +2963 8725 0.6090 +2963 8731 0.5440 +2963 8732 0.5940 +2963 8812 0.8200 +2963 8880 0.4140 +2963 8970 0.8060 +2963 9045 0.4370 +2963 9150 0.9790 +2963 9221 0.4120 +2963 9282 0.9410 +2963 9295 0.4970 +2963 9412 0.9270 +2963 9439 0.8480 +2963 9440 0.9650 +2963 9441 0.8900 +2963 9442 0.8310 +2963 9443 0.9620 +2963 9477 0.8260 +2963 9519 0.6380 +2963 9533 0.8780 +2963 9589 0.4370 +2963 9656 0.5090 +2963 9696 0.4020 +2963 9862 0.8400 +2963 10001 0.9630 +2963 10025 0.8210 +2963 10302 0.5380 +2963 10849 0.5570 +2963 10910 0.4180 +2963 10915 0.5500 +2963 10923 0.5000 +2963 11036 0.6770 +2963 11193 0.4040 +2963 11198 0.6370 +2963 11321 0.4700 +2963 22916 0.7320 +2963 23476 0.5460 +2963 23543 0.4990 +2963 24144 0.6130 +2963 25920 0.5760 +2963 26043 0.4070 +2963 27125 0.5400 +2963 27336 0.4970 +2963 29079 0.8970 +2963 29101 0.5310 +2963 29113 0.4690 +2963 30834 0.5830 +2963 51003 0.9370 +2963 51053 0.4960 +2963 51092 0.4020 +2963 51224 0.4990 +2963 51497 0.5290 +2963 51585 0.4750 +2963 51586 0.8420 +2963 51593 0.5040 +2963 51616 0.5210 +2963 51728 0.6320 +2963 51750 0.4170 +2963 51755 0.5170 +2963 54457 0.6030 +2963 54797 0.8370 +2963 54845 0.4990 +2963 54847 0.4020 +2963 54867 0.4370 +2963 55090 0.8160 +2963 55215 0.5080 +2963 55290 0.6900 +2963 55588 0.9340 +2963 55689 0.5920 +2963 55703 0.6440 +2963 55794 0.5270 +2963 55840 0.5240 +2963 55854 0.4190 +2963 56259 0.4030 +2963 56339 0.4050 +2963 57121 0.4020 +2963 57721 0.4400 +2963 79577 0.4140 +2963 80004 0.4990 +2963 80306 0.8180 +2963 81488 0.4390 +2963 81857 0.8550 +2963 83860 0.8970 +2963 83990 0.4190 +2963 84172 0.6440 +2963 84246 0.9310 +2963 85403 0.5240 +2963 90390 0.8360 +2963 112950 0.8750 +2963 115825 0.4340 +2963 121504 0.8340 +2963 124808 0.6330 +2963 126961 0.8270 +2963 127428 0.4790 +2963 129685 0.9210 +2963 134510 0.4110 +2963 138474 0.5120 +2963 143884 0.5370 +2963 147670 0.4530 +2963 149483 0.4020 +2963 170082 0.4750 +2963 220082 0.5720 +2963 246721 0.7800 +2963 286749 0.6340 +2963 333932 0.8270 +2963 340602 0.4020 +2963 386618 0.5510 +2963 387332 0.8230 +2963 399949 0.6160 +2963 400569 0.8230 +2963 404672 0.9300 +2963 448834 0.4020 +2963 548644 0.7800 +2963 554313 0.8340 +2963 653604 0.8290 +2963 728340 0.7550 +2963 100134938 0.5630 +2963 107983993 0.5630 +2963 122455342 0.4020 +2965 2966 0.9990 +2965 2967 0.9990 +2965 2968 0.9990 +2965 3015 0.8000 +2965 3978 0.5270 +2965 3980 0.4930 +2965 4331 0.9990 +2965 4686 0.5640 +2965 5431 0.9670 +2965 5432 0.9840 +2965 5433 0.9720 +2965 5434 0.9670 +2965 5435 0.9890 +2965 5436 0.9700 +2965 5437 0.9680 +2965 5438 0.9670 +2965 5439 0.9560 +2965 5440 0.9610 +2965 5441 0.9640 +2965 5442 0.6690 +2965 5469 0.8070 +2965 5701 0.7140 +2965 5702 0.4780 +2965 5886 0.7660 +2965 5887 0.8460 +2965 5888 0.5230 +2965 5892 0.5290 +2965 6117 0.7600 +2965 6118 0.6910 +2965 6119 0.6190 +2965 6233 0.5340 +2965 6288 0.4420 +2965 6289 0.4280 +2965 6612 0.4990 +2965 6613 0.5140 +2965 6749 0.7740 +2965 6827 0.5860 +2965 6829 0.7690 +2965 6837 0.8450 +2965 6872 0.9120 +2965 6873 0.9190 +2965 6874 0.9010 +2965 6875 0.5170 +2965 6877 0.9120 +2965 6878 0.9140 +2965 6879 0.9150 +2965 6880 0.9380 +2965 6881 0.9080 +2965 6882 0.9060 +2965 6883 0.9010 +2965 6884 0.8950 +2965 6908 0.9880 +2965 6917 0.7960 +2965 6919 0.4720 +2965 6920 0.4610 +2965 6921 0.5100 +2965 6923 0.5080 +2965 6924 0.5340 +2965 6940 0.4410 +2965 7019 0.4430 +2965 7027 0.6760 +2965 7029 0.5490 +2965 7157 0.9500 +2965 7158 0.5450 +2965 7270 0.5030 +2965 7311 0.4990 +2965 7314 0.5160 +2965 7316 0.6430 +2965 7329 0.5070 +2965 7334 0.5340 +2965 7336 0.5510 +2965 7341 0.7150 +2965 7343 0.5460 +2965 7469 0.5270 +2965 7507 0.9840 +2965 7508 0.9920 +2965 7515 0.5300 +2965 7936 0.5110 +2965 8148 0.5210 +2965 8178 0.4990 +2965 8294 0.8380 +2965 8317 0.4720 +2965 8359 0.8380 +2965 8360 0.8420 +2965 8361 0.8440 +2965 8362 0.8380 +2965 8363 0.8380 +2965 8364 0.8380 +2965 8366 0.8380 +2965 8367 0.8380 +2965 8368 0.8380 +2965 8370 0.8380 +2965 8450 0.5390 +2965 8451 0.5930 +2965 8533 0.5130 +2965 8554 0.4070 +2965 8621 0.5610 +2965 8731 0.5190 +2965 8732 0.5160 +2965 8812 0.6010 +2965 8819 0.4490 +2965 8970 0.8130 +2965 9013 0.5110 +2965 9014 0.5210 +2965 9015 0.5100 +2965 9150 0.5420 +2965 9156 0.4910 +2965 9282 0.8380 +2965 9318 0.5430 +2965 9412 0.8910 +2965 9439 0.8400 +2965 9440 0.8720 +2965 9441 0.8590 +2965 9442 0.8210 +2965 9443 0.8460 +2965 9477 0.8330 +2965 9519 0.4620 +2965 9533 0.7460 +2965 9557 0.5820 +2965 9656 0.5570 +2965 9862 0.8280 +2965 9978 0.5960 +2965 10001 0.8210 +2965 10025 0.8200 +2965 10038 0.5550 +2965 10401 0.4180 +2965 10661 0.4930 +2965 10849 0.5140 +2965 10920 0.5170 +2965 10980 0.5740 +2965 10987 0.5600 +2965 10989 0.7870 +2965 11036 0.5680 +2965 11198 0.6010 +2965 11234 0.4140 +2965 22827 0.5680 +2965 22916 0.5350 +2965 23552 0.5150 +2965 25885 0.5720 +2965 25920 0.5070 +2965 26273 0.4280 +2965 29079 0.8670 +2965 30834 0.6480 +2965 50813 0.5040 +2965 51003 0.8170 +2965 51082 0.5720 +2965 51106 0.4790 +2965 51138 0.5210 +2965 51224 0.5500 +2965 51270 0.6020 +2965 51497 0.5180 +2965 51586 0.8400 +2965 51616 0.5010 +2965 51728 0.4080 +2965 51750 0.6850 +2965 51755 0.5480 +2965 54457 0.4990 +2965 54700 0.5360 +2965 54778 0.4780 +2965 54797 0.8310 +2965 54841 0.7890 +2965 54952 0.4550 +2965 55090 0.8150 +2965 55215 0.5320 +2965 55588 0.8170 +2965 55729 0.4950 +2965 56981 0.4460 +2965 57654 0.9420 +2965 64210 0.9520 +2965 64216 0.4510 +2965 64425 0.5430 +2965 64708 0.5100 +2965 79101 0.5300 +2965 80306 0.8120 +2965 81857 0.8570 +2965 83860 0.9010 +2965 83990 0.7580 +2965 84172 0.7050 +2965 84246 0.8170 +2965 84260 0.4320 +2965 84337 0.5580 +2965 90390 0.8250 +2965 112950 0.8410 +2965 121504 0.8380 +2965 126961 0.8270 +2965 129685 0.8150 +2965 134637 0.7710 +2965 138474 0.5000 +2965 200558 0.4110 +2965 221830 0.5600 +2965 246721 0.5570 +2965 284119 0.5040 +2965 285231 0.5150 +2965 286749 0.5390 +2965 333932 0.8270 +2965 348654 0.4230 +2965 387332 0.5340 +2965 399949 0.4490 +2965 400569 0.8500 +2965 404672 0.9990 +2965 548644 0.5610 +2965 554313 0.8380 +2965 653604 0.8370 +2965 728340 0.9990 +2965 100134938 0.4390 +2965 100533467 0.8970 +2965 107983993 0.4390 +2966 2967 0.9990 +2966 2968 0.9990 +2966 3015 0.8000 +2966 3978 0.4210 +2966 3980 0.4290 +2966 4330 0.4260 +2966 4331 0.9990 +2966 4671 0.8310 +2966 4686 0.5080 +2966 5431 0.9740 +2966 5432 0.9620 +2966 5433 0.9660 +2966 5434 0.9540 +2966 5435 0.9510 +2966 5436 0.9620 +2966 5437 0.9520 +2966 5438 0.9550 +2966 5439 0.9590 +2966 5440 0.9510 +2966 5441 0.9550 +2966 5469 0.8050 +2966 5540 0.4090 +2966 5884 0.5870 +2966 5886 0.6510 +2966 5887 0.7210 +2966 5892 0.5330 +2966 6117 0.5310 +2966 6118 0.5650 +2966 6119 0.6000 +2966 6233 0.5280 +2966 6606 0.6500 +2966 6607 0.6320 +2966 6612 0.5090 +2966 6613 0.5260 +2966 6749 0.5060 +2966 6827 0.6010 +2966 6829 0.5420 +2966 6837 0.8290 +2966 6872 0.9790 +2966 6873 0.9810 +2966 6874 0.9460 +2966 6875 0.7270 +2966 6877 0.9830 +2966 6878 0.9850 +2966 6879 0.9810 +2966 6880 0.9860 +2966 6881 0.9790 +2966 6882 0.9790 +2966 6883 0.9550 +2966 6884 0.9840 +2966 6908 0.9910 +2966 6917 0.9510 +2966 6919 0.4340 +2966 6920 0.4210 +2966 6921 0.5220 +2966 6923 0.5130 +2966 6924 0.5910 +2966 7270 0.4990 +2966 7311 0.4990 +2966 7314 0.5060 +2966 7316 0.5060 +2966 7329 0.5270 +2966 7334 0.5350 +2966 7336 0.5330 +2966 7341 0.5510 +2966 7343 0.5350 +2966 7469 0.5130 +2966 7507 0.9690 +2966 7508 0.8020 +2966 7515 0.5640 +2966 7936 0.5280 +2966 7984 0.4150 +2966 8148 0.5170 +2966 8178 0.4990 +2966 8293 0.6160 +2966 8294 0.8270 +2966 8359 0.8270 +2966 8360 0.8280 +2966 8361 0.8290 +2966 8362 0.8270 +2966 8363 0.8270 +2966 8364 0.8270 +2966 8366 0.8290 +2966 8367 0.8270 +2966 8368 0.8270 +2966 8370 0.8270 +2966 8450 0.5220 +2966 8451 0.5780 +2966 8533 0.5130 +2966 8621 0.5620 +2966 8731 0.5040 +2966 8732 0.5150 +2966 8812 0.5850 +2966 8819 0.5840 +2966 8970 0.8140 +2966 9013 0.4990 +2966 9014 0.5040 +2966 9015 0.5090 +2966 9150 0.5180 +2966 9282 0.9090 +2966 9318 0.6430 +2966 9412 0.9130 +2966 9439 0.8520 +2966 9440 0.8930 +2966 9441 0.8560 +2966 9442 0.8200 +2966 9443 0.9170 +2966 9477 0.8230 +2966 9533 0.7340 +2966 9557 0.5250 +2966 9604 0.4950 +2966 9656 0.5380 +2966 9721 0.4090 +2966 9747 0.4630 +2966 9862 0.8460 +2966 9978 0.5310 +2966 10001 0.9060 +2966 10025 0.8200 +2966 10038 0.5330 +2966 10432 0.4640 +2966 10629 0.5170 +2966 10849 0.5160 +2966 10901 0.4110 +2966 10920 0.5350 +2966 10980 0.5810 +2966 10987 0.5580 +2966 11036 0.6320 +2966 11198 0.5040 +2966 22827 0.5510 +2966 22916 0.5100 +2966 23552 0.5200 +2966 25885 0.6100 +2966 25920 0.5070 +2966 29079 0.8240 +2966 30834 0.6510 +2966 50813 0.5070 +2966 51003 0.9060 +2966 51082 0.5820 +2966 51138 0.5390 +2966 51224 0.5280 +2966 51497 0.5040 +2966 51586 0.8200 +2966 51616 0.9070 +2966 51750 0.6410 +2966 51755 0.5440 +2966 54457 0.5510 +2966 54700 0.5010 +2966 54778 0.4070 +2966 54797 0.8280 +2966 55090 0.8110 +2966 55215 0.5330 +2966 55269 0.4350 +2966 55588 0.8170 +2966 64210 0.9290 +2966 64425 0.5070 +2966 64708 0.5210 +2966 79101 0.5170 +2966 80306 0.8170 +2966 81857 0.8210 +2966 83860 0.9790 +2966 83990 0.6430 +2966 84172 0.6890 +2966 84246 0.9100 +2966 90390 0.8240 +2966 112950 0.8560 +2966 121504 0.8270 +2966 126961 0.8210 +2966 129685 0.9790 +2966 138474 0.5400 +2966 221830 0.6110 +2966 246721 0.5670 +2966 284119 0.5040 +2966 285231 0.5200 +2966 286749 0.5800 +2966 317749 0.4520 +2966 333932 0.8210 +2966 387332 0.4850 +2966 391742 0.5400 +2966 391746 0.5400 +2966 391747 0.5400 +2966 400569 0.8300 +2966 404672 0.9990 +2966 548644 0.5610 +2966 554282 0.4350 +2966 554313 0.8270 +2966 646066 0.5400 +2966 646103 0.5400 +2966 653604 0.8290 +2966 653820 0.4520 +2966 728340 0.9860 +2966 728492 0.4510 +2966 728833 0.4120 +2966 729533 0.4260 +2966 100134938 0.4270 +2966 100526737 0.5090 +2966 100533467 0.4200 +2966 100996758 0.4090 +2966 102723526 0.5400 +2966 107983993 0.4270 +2966 112488736 0.5400 +2966 112488737 0.5400 +2966 112488738 0.5400 +2966 112488739 0.5400 +2966 112488740 0.5400 +2966 112488745 0.5400 +2966 112488746 0.5400 +2966 112488747 0.5400 +2967 2968 0.9990 +2967 2972 0.6020 +2967 3015 0.8020 +2967 3978 0.4810 +2967 3980 0.4910 +2967 4331 0.9990 +2967 4686 0.5520 +2967 5431 0.9670 +2967 5432 0.9750 +2967 5433 0.9770 +2967 5434 0.9680 +2967 5435 0.9720 +2967 5436 0.9720 +2967 5437 0.9680 +2967 5438 0.9660 +2967 5439 0.9490 +2967 5440 0.9660 +2967 5441 0.9650 +2967 5469 0.8190 +2967 5886 0.7130 +2967 5887 0.8480 +2967 5892 0.6260 +2967 5917 0.4470 +2967 6117 0.5770 +2967 6118 0.5860 +2967 6119 0.6600 +2967 6233 0.5450 +2967 6612 0.5110 +2967 6613 0.5140 +2967 6749 0.5090 +2967 6827 0.5850 +2967 6829 0.6480 +2967 6837 0.8400 +2967 6872 0.9800 +2967 6873 0.9850 +2967 6874 0.9510 +2967 6875 0.7410 +2967 6877 0.9830 +2967 6878 0.9830 +2967 6879 0.9800 +2967 6880 0.9800 +2967 6881 0.9820 +2967 6882 0.9790 +2967 6883 0.9480 +2967 6884 0.9790 +2967 6908 0.9970 +2967 6917 0.9610 +2967 6919 0.4160 +2967 6920 0.4130 +2967 6921 0.5110 +2967 6923 0.5070 +2967 6924 0.5290 +2967 7158 0.5710 +2967 7270 0.5210 +2967 7311 0.4990 +2967 7314 0.5270 +2967 7316 0.5270 +2967 7329 0.5200 +2967 7334 0.5430 +2967 7336 0.5410 +2967 7341 0.5290 +2967 7343 0.5610 +2967 7469 0.5080 +2967 7507 0.9650 +2967 7508 0.8430 +2967 7515 0.5050 +2967 7936 0.5330 +2967 8148 0.5210 +2967 8178 0.4990 +2967 8294 0.8360 +2967 8317 0.5990 +2967 8359 0.8360 +2967 8360 0.8360 +2967 8361 0.8370 +2967 8362 0.8360 +2967 8363 0.8360 +2967 8364 0.8380 +2967 8366 0.8370 +2967 8367 0.8360 +2967 8368 0.8360 +2967 8370 0.8360 +2967 8450 0.5370 +2967 8451 0.5360 +2967 8533 0.5100 +2967 8554 0.4050 +2967 8621 0.5700 +2967 8731 0.6790 +2967 8732 0.5590 +2967 8812 0.6400 +2967 8970 0.8130 +2967 9013 0.5060 +2967 9014 0.5290 +2967 9015 0.5190 +2967 9150 0.5220 +2967 9282 0.9280 +2967 9318 0.5100 +2967 9412 0.9280 +2967 9439 0.8200 +2967 9440 0.9550 +2967 9441 0.8630 +2967 9442 0.8220 +2967 9443 0.9350 +2967 9477 0.8390 +2967 9519 0.5860 +2967 9533 0.7270 +2967 9557 0.5290 +2967 9656 0.5600 +2967 9862 0.8280 +2967 9978 0.5070 +2967 10001 0.9320 +2967 10025 0.8180 +2967 10038 0.5560 +2967 10401 0.4050 +2967 10849 0.5060 +2967 10920 0.5130 +2967 10980 0.5130 +2967 10987 0.5130 +2967 11036 0.5030 +2967 11198 0.5070 +2967 22916 0.5100 +2967 23552 0.8280 +2967 25885 0.5280 +2967 25896 0.4390 +2967 25920 0.5040 +2967 29079 0.8270 +2967 30834 0.6430 +2967 50813 0.5040 +2967 51003 0.9360 +2967 51082 0.4990 +2967 51138 0.5100 +2967 51224 0.5070 +2967 51497 0.5040 +2967 51586 0.8140 +2967 51616 0.9030 +2967 51728 0.4910 +2967 51750 0.6400 +2967 51755 0.5660 +2967 54457 0.5400 +2967 54700 0.5070 +2967 54778 0.4060 +2967 54797 0.8390 +2967 55090 0.8240 +2967 55215 0.5490 +2967 55290 0.5980 +2967 55588 0.8160 +2967 55703 0.4200 +2967 56981 0.4460 +2967 64210 0.9410 +2967 64425 0.5530 +2967 64708 0.5170 +2967 79101 0.5090 +2967 80306 0.8130 +2967 81857 0.8150 +2967 83860 0.9790 +2967 83990 0.6580 +2967 84172 0.7370 +2967 84246 0.9250 +2967 90390 0.8180 +2967 93487 0.4320 +2967 112950 0.8420 +2967 121504 0.8360 +2967 126961 0.8270 +2967 129685 0.9820 +2967 138474 0.5550 +2967 221830 0.5110 +2967 246721 0.5080 +2967 284119 0.5030 +2967 285231 0.8340 +2967 286749 0.4770 +2967 333932 0.8270 +2967 387332 0.8060 +2967 391742 0.5400 +2967 391746 0.5400 +2967 391747 0.5400 +2967 399949 0.5820 +2967 400569 0.8370 +2967 404672 0.9990 +2967 548644 0.5080 +2967 554313 0.8360 +2967 646066 0.5400 +2967 646103 0.5400 +2967 653604 0.8300 +2967 728340 0.9990 +2967 100134938 0.4390 +2967 100533467 0.4440 +2967 102723526 0.5400 +2967 107983993 0.4390 +2967 112488736 0.5400 +2967 112488737 0.5400 +2967 112488738 0.5400 +2967 112488739 0.5400 +2967 112488740 0.5400 +2967 112488745 0.5400 +2967 112488746 0.5400 +2967 112488747 0.5400 +2968 3015 0.8050 +2968 3106 0.4060 +2968 3978 0.5350 +2968 3980 0.4830 +2968 4292 0.4140 +2968 4331 0.9990 +2968 4686 0.5060 +2968 5425 0.4100 +2968 5431 0.9760 +2968 5432 0.9740 +2968 5433 0.9710 +2968 5434 0.9710 +2968 5435 0.9660 +2968 5436 0.9840 +2968 5437 0.9610 +2968 5438 0.9660 +2968 5439 0.9560 +2968 5440 0.9690 +2968 5441 0.9610 +2968 5442 0.6110 +2968 5469 0.8100 +2968 5886 0.6730 +2968 5887 0.7560 +2968 5892 0.5260 +2968 6117 0.5780 +2968 6118 0.5460 +2968 6119 0.6290 +2968 6233 0.5240 +2968 6426 0.4960 +2968 6612 0.4990 +2968 6613 0.5030 +2968 6749 0.5320 +2968 6827 0.5810 +2968 6829 0.6850 +2968 6837 0.8480 +2968 6872 0.9800 +2968 6873 0.9790 +2968 6874 0.9520 +2968 6875 0.7550 +2968 6877 0.9810 +2968 6878 0.9820 +2968 6879 0.9800 +2968 6880 0.9790 +2968 6881 0.9800 +2968 6882 0.9790 +2968 6883 0.9460 +2968 6884 0.9790 +2968 6908 0.9970 +2968 6917 0.9690 +2968 6919 0.7030 +2968 6920 0.6940 +2968 6921 0.5710 +2968 6923 0.5130 +2968 6924 0.5350 +2968 6941 0.4510 +2968 6992 0.4050 +2968 7019 0.6870 +2968 7158 0.6180 +2968 7270 0.5220 +2968 7311 0.4990 +2968 7314 0.5260 +2968 7316 0.5260 +2968 7329 0.6050 +2968 7334 0.5360 +2968 7336 0.5290 +2968 7341 0.5150 +2968 7343 0.5360 +2968 7407 0.4090 +2968 7469 0.5070 +2968 7507 0.9740 +2968 7508 0.8440 +2968 7515 0.7000 +2968 7936 0.6240 +2968 8148 0.5220 +2968 8178 0.5580 +2968 8294 0.8400 +2968 8317 0.5620 +2968 8359 0.8400 +2968 8360 0.8400 +2968 8361 0.8410 +2968 8362 0.8400 +2968 8363 0.8400 +2968 8364 0.8400 +2968 8366 0.8400 +2968 8367 0.8400 +2968 8368 0.8400 +2968 8370 0.8400 +2968 8438 0.5630 +2968 8450 0.5270 +2968 8451 0.5680 +2968 8533 0.5080 +2968 8554 0.4060 +2968 8621 0.5590 +2968 8731 0.5250 +2968 8732 0.5340 +2968 8812 0.6060 +2968 8970 0.8060 +2968 9013 0.5220 +2968 9014 0.5010 +2968 9015 0.7270 +2968 9150 0.5490 +2968 9277 0.4210 +2968 9282 0.9310 +2968 9318 0.5710 +2968 9412 0.9620 +2968 9439 0.8180 +2968 9440 0.9170 +2968 9441 0.8690 +2968 9442 0.8310 +2968 9443 0.9310 +2968 9477 0.8270 +2968 9519 0.5180 +2968 9533 0.7380 +2968 9557 0.5060 +2968 9656 0.5880 +2968 9862 0.8220 +2968 9978 0.5380 +2968 10001 0.9320 +2968 10025 0.8170 +2968 10038 0.5510 +2968 10401 0.4190 +2968 10629 0.4230 +2968 10849 0.7080 +2968 10920 0.5210 +2968 10980 0.5210 +2968 10987 0.6810 +2968 11036 0.6200 +2968 11198 0.5170 +2968 11270 0.5010 +2968 22827 0.6760 +2968 22916 0.5070 +2968 23213 0.4160 +2968 25885 0.5040 +2968 25920 0.5810 +2968 29079 0.8490 +2968 30834 0.7060 +2968 50813 0.5040 +2968 51003 0.9250 +2968 51082 0.4990 +2968 51138 0.6810 +2968 51224 0.5210 +2968 51497 0.5370 +2968 51586 0.8130 +2968 51611 0.4350 +2968 51616 0.9000 +2968 51750 0.6860 +2968 51755 0.5750 +2968 54457 0.5400 +2968 54700 0.7140 +2968 54797 0.8290 +2968 54938 0.4490 +2968 55090 0.8120 +2968 55215 0.5560 +2968 55588 0.8130 +2968 55677 0.4380 +2968 55703 0.4080 +2968 56981 0.4460 +2968 57176 0.5350 +2968 64210 0.9400 +2968 64425 0.5340 +2968 64708 0.5190 +2968 64969 0.4340 +2968 65083 0.4220 +2968 79101 0.4990 +2968 80306 0.8120 +2968 81857 0.8280 +2968 83860 0.9790 +2968 83932 0.4070 +2968 83990 0.6700 +2968 84172 0.6830 +2968 84246 0.9310 +2968 90390 0.8180 +2968 112950 0.8410 +2968 121504 0.8400 +2968 123169 0.4110 +2968 126961 0.8270 +2968 129685 0.9800 +2968 138474 0.5400 +2968 221545 0.4630 +2968 221830 0.5130 +2968 246721 0.5390 +2968 284119 0.5040 +2968 286749 0.5930 +2968 333932 0.8270 +2968 387332 0.6150 +2968 391742 0.5400 +2968 391746 0.5400 +2968 391747 0.5400 +2968 399949 0.5140 +2968 400569 0.8550 +2968 404672 0.9990 +2968 548644 0.5390 +2968 554313 0.8400 +2968 646066 0.5400 +2968 646103 0.5400 +2968 653604 0.8290 +2968 728340 0.9990 +2968 100134938 0.4680 +2968 100533467 0.6380 +2968 102723526 0.5400 +2968 107983993 0.4680 +2968 112488736 0.5400 +2968 112488737 0.5400 +2968 112488738 0.5400 +2968 112488739 0.5400 +2968 112488740 0.5400 +2968 112488745 0.5400 +2968 112488746 0.5400 +2968 112488747 0.5400 +2969 2975 0.4650 +2969 3065 0.8370 +2969 3066 0.8750 +2969 3791 0.5140 +2969 3984 0.6480 +2969 4601 0.4850 +2969 4609 0.7810 +2969 4798 0.4040 +2969 4926 0.4640 +2969 5079 0.4760 +2969 5450 0.6590 +2969 5592 0.9400 +2969 5593 0.9250 +2969 5914 0.4910 +2969 5928 0.4200 +2969 5931 0.4320 +2969 5980 0.5120 +2969 5982 0.5450 +2969 6093 0.4180 +2969 6239 0.4830 +2969 6421 0.6360 +2969 6613 0.6150 +2969 6722 0.5700 +2969 6804 0.6070 +2969 6886 0.4160 +2969 6908 0.6010 +2969 6950 0.4900 +2969 7023 0.4460 +2969 7157 0.4300 +2969 7182 0.4180 +2969 7367 0.7630 +2969 7391 0.9580 +2969 7392 0.6320 +2969 7458 0.6350 +2969 7461 0.7730 +2969 7528 0.6240 +2969 7750 0.8510 +2969 7984 0.4340 +2969 8326 0.5360 +2969 8361 0.5280 +2969 8467 0.4840 +2969 8468 0.7480 +2969 8841 0.8800 +2969 8894 0.5450 +2969 9031 0.6060 +2969 9063 0.6380 +2969 9112 0.4020 +2969 9203 0.9160 +2969 9275 0.5790 +2969 9520 0.7710 +2969 9569 0.9260 +2969 9721 0.7800 +2969 9901 0.7750 +2969 10284 0.4270 +2969 10362 0.4230 +2969 10428 0.6320 +2969 10459 0.7630 +2969 10576 0.4650 +2969 11315 0.4270 +2969 22926 0.6030 +2969 23028 0.8580 +2969 23186 0.4820 +2969 23199 0.6790 +2969 23380 0.7970 +2969 23451 0.4270 +2969 23476 0.5610 +2969 26095 0.4350 +2969 26608 0.6410 +2969 50628 0.4520 +2969 51085 0.5930 +2969 51317 0.4530 +2969 54768 0.7970 +2969 54858 0.4520 +2969 55599 0.5290 +2969 55672 0.7760 +2969 55695 0.5400 +2969 56257 0.5530 +2969 56940 0.4220 +2969 60681 0.7340 +2969 64859 0.4470 +2969 83451 0.4090 +2969 83860 0.4930 +2969 84163 0.6770 +2969 120892 0.5100 +2969 135892 0.6340 +2969 389524 0.7050 +2969 653361 0.6100 +2969 729438 0.5400 +2971 2972 0.8870 +2971 2975 0.9970 +2971 2976 0.6330 +2971 3069 0.4100 +2971 4218 0.5170 +2971 4493 0.5030 +2971 4653 0.5080 +2971 5434 0.5390 +2971 5435 0.6740 +2971 5437 0.6080 +2971 5440 0.6150 +2971 5441 0.6260 +2971 5566 0.4130 +2971 5567 0.4130 +2971 5568 0.4130 +2971 6125 0.6040 +2971 6908 0.8310 +2971 9328 0.7770 +2971 9329 0.6380 +2971 9330 0.7420 +2971 9533 0.6540 +2971 9542 0.4800 +2971 10133 0.9640 +2971 10521 0.4610 +2971 10621 0.6530 +2971 10622 0.6140 +2971 10623 0.6840 +2971 11128 0.6450 +2971 11201 0.5180 +2971 27297 0.5630 +2971 29074 0.4580 +2971 51082 0.6740 +2971 51398 0.4760 +2971 51728 0.5970 +2971 54958 0.4930 +2971 55703 0.5750 +2971 55718 0.5930 +2971 55814 0.9550 +2971 55893 0.5650 +2971 56731 0.4630 +2971 57864 0.6340 +2971 84232 0.4830 +2971 84265 0.6170 +2971 112495 0.5810 +2971 171568 0.5650 +2971 219402 0.6850 +2972 2975 0.9910 +2972 2976 0.7030 +2972 3148 0.6750 +2972 3508 0.4010 +2972 4335 0.4160 +2972 5431 0.5330 +2972 5432 0.5100 +2972 5434 0.8110 +2972 5435 0.8550 +2972 5437 0.8350 +2972 5440 0.9390 +2972 5441 0.7930 +2972 5925 0.6310 +2972 6881 0.4090 +2972 6908 0.9990 +2972 6919 0.4140 +2972 9013 0.4300 +2972 9014 0.5060 +2972 9015 0.4520 +2972 9044 0.4050 +2972 9328 0.9640 +2972 9329 0.9340 +2972 9330 0.9970 +2972 9519 0.6090 +2972 9533 0.9180 +2972 10536 0.4120 +2972 10621 0.9930 +2972 10622 0.7900 +2972 10623 0.9520 +2972 11128 0.9570 +2972 11201 0.4340 +2972 25885 0.5880 +2972 27297 0.9420 +2972 51082 0.8770 +2972 51728 0.8480 +2972 54700 0.4800 +2972 55290 0.7150 +2972 55703 0.9740 +2972 55718 0.8890 +2972 55778 0.4800 +2972 55814 0.9980 +2972 58509 0.4550 +2972 79874 0.4530 +2972 79882 0.4190 +2972 84172 0.5790 +2972 84232 0.5650 +2972 84256 0.4430 +2972 84265 0.7290 +2972 112495 0.5400 +2972 146059 0.4590 +2972 171568 0.9130 +2972 387332 0.8980 +2972 399949 0.6090 +2975 2976 0.9990 +2975 3508 0.7720 +2975 4609 0.4270 +2975 5245 0.5100 +2975 5434 0.5850 +2975 5435 0.6820 +2975 5437 0.6200 +2975 5440 0.6760 +2975 5441 0.5680 +2975 5885 0.4750 +2975 6872 0.5650 +2975 6908 0.9100 +2975 6917 0.4030 +2975 6932 0.4220 +2975 7150 0.4510 +2975 7158 0.4460 +2975 7343 0.4540 +2975 7391 0.5950 +2975 7702 0.4320 +2975 8295 0.4540 +2975 8361 0.6050 +2975 8424 0.8820 +2975 8607 0.5120 +2975 9126 0.5830 +2975 9189 0.4930 +2975 9314 0.4320 +2975 9317 0.5070 +2975 9328 0.9980 +2975 9329 0.9980 +2975 9330 0.9970 +2975 9416 0.4210 +2975 9533 0.7110 +2975 9656 0.4340 +2975 9827 0.4450 +2975 10155 0.4460 +2975 10621 0.7720 +2975 10622 0.7420 +2975 10623 0.8100 +2975 10664 0.6090 +2975 10735 0.4310 +2975 10849 0.4910 +2975 10856 0.5490 +2975 10923 0.4350 +2975 11083 0.5440 +2975 11107 0.6250 +2975 11128 0.8200 +2975 11201 0.6940 +2975 23384 0.4570 +2975 23397 0.4240 +2975 23476 0.4140 +2975 25961 0.4140 +2975 27297 0.6140 +2975 29777 0.8200 +2975 29903 0.4530 +2975 51082 0.6230 +2975 51585 0.4050 +2975 51728 0.7150 +2975 54700 0.4030 +2975 55140 0.4170 +2975 55213 0.4010 +2975 55290 0.7510 +2975 55703 0.6190 +2975 55718 0.7110 +2975 55814 0.9990 +2975 55854 0.4430 +2975 57521 0.6360 +2975 57661 0.4140 +2975 57680 0.4800 +2975 57805 0.5490 +2975 65993 0.4140 +2975 79968 0.5100 +2975 83746 0.4160 +2975 84232 0.6300 +2975 84265 0.6710 +2975 92595 0.6130 +2975 112495 0.9860 +2975 131601 0.4060 +2975 171568 0.6350 +2976 4358 0.5770 +2976 5214 0.4180 +2976 5434 0.5090 +2976 5435 0.5570 +2976 5437 0.6330 +2976 5440 0.5020 +2976 5441 0.5260 +2976 6908 0.7680 +2976 8890 0.6950 +2976 9100 0.4540 +2976 9328 0.9940 +2976 9329 0.9930 +2976 9330 0.9950 +2976 9343 0.4930 +2976 9416 0.5290 +2976 9533 0.5370 +2976 9632 0.4400 +2976 9869 0.4890 +2976 10273 0.4510 +2976 10277 0.4460 +2976 10621 0.6440 +2976 10622 0.8070 +2976 10623 0.7440 +2976 11083 0.5460 +2976 11128 0.8620 +2976 23020 0.5370 +2976 23173 0.4030 +2976 23381 0.4410 +2976 23511 0.4780 +2976 27297 0.5410 +2976 27332 0.4060 +2976 29959 0.5070 +2976 51082 0.5330 +2976 51728 0.6610 +2976 55290 0.7330 +2976 55294 0.5280 +2976 55703 0.5440 +2976 55718 0.6210 +2976 55814 0.8360 +2976 57510 0.4860 +2976 57521 0.4790 +2976 64798 0.4110 +2976 64838 0.4680 +2976 79635 0.4760 +2976 79977 0.4320 +2976 84265 0.6030 +2976 84450 0.4030 +2976 84838 0.5200 +2976 92595 0.4140 +2976 112495 0.9660 +2976 163033 0.4200 +2976 171568 0.5320 +2976 200634 0.4730 +2977 2982 0.9670 +2977 2983 0.9970 +2977 3704 0.9110 +2977 3785 0.4180 +2977 4337 0.8180 +2977 4726 0.4200 +2977 4830 0.6600 +2977 4831 0.6600 +2977 4832 0.6600 +2977 4833 0.6600 +2977 4842 0.9120 +2977 5136 0.7820 +2977 5137 0.7410 +2977 5138 0.8050 +2977 5139 0.7910 +2977 5140 0.7500 +2977 5145 0.7820 +2977 5146 0.7440 +2977 5147 0.6870 +2977 5148 0.7710 +2977 5149 0.6510 +2977 5152 0.8280 +2977 5153 0.7270 +2977 5158 0.7750 +2977 5167 0.9030 +2977 5169 0.9030 +2977 5313 0.9030 +2977 5315 0.9030 +2977 5592 0.9520 +2977 5593 0.9530 +2977 6389 0.4490 +2977 7545 0.4410 +2977 8654 0.8040 +2977 10201 0.6600 +2977 10335 0.4260 +2977 10486 0.4180 +2977 10846 0.7830 +2977 11051 0.4160 +2977 23467 0.4330 +2977 23513 0.6220 +2977 29922 0.6600 +2977 50940 0.8030 +2977 83546 0.5030 +2977 151651 0.4210 +2977 221264 0.7340 +2977 377841 0.6590 +2977 654364 0.6600 +2978 2979 0.4660 +2978 2980 0.6970 +2978 2981 0.4550 +2978 2984 0.5590 +2978 2986 0.8300 +2978 2987 0.5770 +2978 3000 0.9850 +2978 4881 0.6220 +2978 4882 0.5990 +2978 4883 0.4830 +2978 5132 0.4820 +2978 5146 0.4730 +2978 5148 0.4060 +2978 5149 0.4240 +2978 5298 0.4970 +2978 5949 0.4630 +2978 5957 0.4580 +2978 5961 0.7040 +2978 6010 0.6810 +2978 6011 0.6910 +2978 6094 0.4650 +2978 6285 0.4660 +2978 6295 0.6120 +2978 8573 0.4430 +2978 9094 0.4780 +2978 9187 0.5110 +2978 9478 0.8220 +2978 10681 0.4010 +2978 22999 0.4190 +2978 23746 0.5130 +2978 25769 0.5160 +2978 27098 0.5310 +2978 51806 0.6530 +2978 54714 0.4650 +2978 56344 0.4300 +2978 57010 0.4490 +2978 60558 0.8300 +2978 83394 0.4450 +2978 83733 0.4140 +2978 91860 0.6540 +2978 94137 0.4030 +2978 131890 0.6420 +2978 163688 0.6540 +2978 169522 0.4520 +2978 197335 0.4300 +2978 343035 0.7240 +2978 388531 0.6040 +2979 2980 0.7380 +2979 2981 0.7130 +2979 2984 0.5340 +2979 2986 0.9800 +2979 3000 0.9960 +2979 3182 0.4300 +2979 3420 0.6610 +2979 3614 0.7270 +2979 4901 0.7150 +2979 5015 0.4300 +2979 5132 0.4550 +2979 5145 0.7910 +2979 5146 0.5250 +2979 5148 0.7770 +2979 5149 0.5810 +2979 5158 0.8430 +2979 5298 0.4880 +2979 5961 0.7200 +2979 6010 0.7510 +2979 6011 0.6640 +2979 6017 0.4440 +2979 6094 0.7360 +2979 6100 0.7450 +2979 6103 0.5990 +2979 6121 0.7370 +2979 6285 0.5710 +2979 6295 0.5990 +2979 7287 0.7970 +2979 7399 0.4050 +2979 7401 0.4460 +2979 7439 0.6620 +2979 7579 0.4690 +2979 8573 0.4430 +2979 8842 0.4870 +2979 9129 0.6980 +2979 9187 0.4770 +2979 9227 0.6850 +2979 9626 0.9120 +2979 10002 0.7100 +2979 10210 0.7090 +2979 10461 0.8230 +2979 10590 0.4530 +2979 10594 0.7010 +2979 10681 0.4080 +2979 23020 0.6850 +2979 23322 0.4760 +2979 23746 0.7480 +2979 24148 0.4720 +2979 25769 0.5330 +2979 25794 0.7900 +2979 26103 0.4150 +2979 26121 0.6920 +2979 26986 0.4280 +2979 50939 0.7110 +2979 54714 0.5120 +2979 54806 0.4370 +2979 54854 0.4570 +2979 55223 0.4140 +2979 55812 0.6490 +2979 55975 0.6820 +2979 56344 0.5180 +2979 57010 0.5590 +2979 57096 0.6630 +2979 57582 0.4080 +2979 60558 0.7600 +2979 64218 0.6860 +2979 79947 0.6180 +2979 83733 0.6960 +2979 84140 0.4450 +2979 92211 0.4390 +2979 92840 0.4150 +2979 94137 0.4790 +2979 130557 0.7500 +2979 131890 0.6770 +2979 145226 0.7720 +2979 149076 0.4500 +2979 157657 0.4470 +2979 158135 0.4590 +2979 169522 0.6160 +2979 197335 0.4300 +2979 339302 0.4170 +2979 343035 0.6570 +2979 346007 0.7060 +2979 375298 0.7160 +2979 388531 0.6370 +2979 388939 0.7720 +2979 768206 0.8840 +2980 2981 0.8930 +2980 2984 0.9990 +2980 2986 0.5130 +2980 3000 0.7190 +2980 4224 0.4200 +2980 4878 0.6540 +2980 4879 0.5120 +2980 4880 0.5130 +2980 4882 0.4020 +2980 4883 0.9950 +2980 5068 0.4220 +2980 5225 0.5780 +2980 5592 0.5020 +2980 5593 0.8530 +2980 5697 0.5100 +2980 6476 0.4440 +2980 6550 0.5940 +2980 6662 0.4100 +2980 7167 0.6080 +2980 22802 0.6340 +2980 27290 0.5210 +2980 54474 0.4710 +2980 54860 0.7160 +2980 79849 0.5780 +2980 83998 0.4420 +2980 246744 0.5070 +2980 388364 0.8990 +2980 388595 0.4200 +2980 644844 0.5320 +2980 653808 0.6600 +2981 2984 0.9990 +2981 2986 0.5360 +2981 3000 0.6860 +2981 4878 0.6620 +2981 4879 0.5650 +2981 4880 0.5140 +2981 4881 0.5190 +2981 4882 0.5830 +2981 4883 0.9960 +2981 5593 0.5960 +2981 5697 0.6620 +2981 6550 0.5950 +2981 9648 0.5570 +2981 22802 0.5030 +2981 54860 0.6590 +2981 57864 0.4200 +2981 79571 0.5910 +2981 79849 0.6510 +2981 83546 0.4640 +2981 83988 0.4200 +2981 92736 0.5960 +2981 246744 0.5420 +2981 266675 0.4710 +2981 388364 0.6770 +2981 388595 0.4960 +2981 653808 0.5730 +2982 2983 0.9990 +2982 3704 0.9110 +2982 4337 0.8110 +2982 4830 0.6600 +2982 4831 0.6600 +2982 4832 0.6620 +2982 4833 0.6630 +2982 4842 0.9150 +2982 4880 0.4100 +2982 5136 0.7630 +2982 5137 0.7330 +2982 5138 0.7870 +2982 5139 0.7990 +2982 5140 0.7670 +2982 5145 0.7810 +2982 5146 0.7440 +2982 5147 0.7010 +2982 5148 0.7280 +2982 5149 0.6710 +2982 5152 0.8050 +2982 5153 0.7220 +2982 5158 0.7530 +2982 5167 0.9080 +2982 5169 0.9040 +2982 5313 0.9070 +2982 5315 0.9030 +2982 5592 0.9480 +2982 5593 0.9460 +2982 8542 0.4430 +2982 8654 0.8500 +2982 9092 0.4120 +2982 10201 0.6600 +2982 10335 0.4750 +2982 10574 0.4100 +2982 10846 0.7620 +2982 29922 0.6630 +2982 50940 0.7710 +2982 51530 0.4440 +2982 57037 0.6280 +2982 57674 0.5040 +2982 130502 0.5600 +2982 221264 0.7370 +2982 284467 0.4210 +2982 377841 0.6660 +2982 654364 0.6600 +2983 3320 0.4250 +2983 3704 0.9100 +2983 4337 0.8110 +2983 4830 0.6770 +2983 4831 0.6770 +2983 4832 0.7120 +2983 4833 0.6850 +2983 4842 0.9210 +2983 4846 0.4770 +2983 5136 0.7620 +2983 5137 0.7650 +2983 5138 0.8200 +2983 5139 0.8130 +2983 5140 0.7720 +2983 5145 0.8090 +2983 5146 0.7500 +2983 5147 0.7830 +2983 5148 0.7370 +2983 5149 0.6780 +2983 5152 0.8160 +2983 5153 0.7430 +2983 5158 0.7630 +2983 5167 0.9070 +2983 5169 0.9080 +2983 5313 0.9090 +2983 5315 0.9060 +2983 5592 0.9520 +2983 5593 0.9510 +2983 8328 0.4130 +2983 8654 0.8880 +2983 10201 0.6600 +2983 10335 0.4450 +2983 10486 0.4010 +2983 10846 0.7840 +2983 27115 0.5900 +2983 29922 0.6670 +2983 50940 0.7880 +2983 57037 0.5120 +2983 79400 0.4230 +2983 84284 0.4500 +2983 158067 0.5580 +2983 221264 0.7420 +2983 259215 0.4410 +2983 377841 0.6940 +2983 439921 0.5950 +2983 654364 0.6770 +2984 3000 0.4050 +2984 3119 0.4400 +2984 3172 0.4410 +2984 3704 0.9020 +2984 3845 0.4770 +2984 4224 0.4370 +2984 4337 0.8430 +2984 4519 0.4700 +2984 4830 0.7020 +2984 4831 0.7020 +2984 4832 0.7170 +2984 4833 0.6810 +2984 4878 0.6040 +2984 4880 0.6480 +2984 4883 0.8040 +2984 5136 0.7430 +2984 5137 0.7420 +2984 5138 0.7720 +2984 5139 0.7480 +2984 5140 0.7410 +2984 5141 0.4080 +2984 5145 0.7820 +2984 5146 0.7760 +2984 5147 0.6660 +2984 5148 0.7080 +2984 5149 0.6630 +2984 5150 0.5340 +2984 5152 0.7630 +2984 5153 0.7730 +2984 5158 0.7970 +2984 5167 0.9290 +2984 5169 0.9320 +2984 5174 0.5430 +2984 5313 0.9030 +2984 5315 0.9030 +2984 5339 0.4970 +2984 5592 0.4800 +2984 5593 0.6590 +2984 6283 0.4280 +2984 6550 0.5710 +2984 7167 0.6490 +2984 8654 0.8490 +2984 9188 0.4340 +2984 10194 0.4460 +2984 10201 0.6630 +2984 10249 0.6730 +2984 10846 0.8300 +2984 27115 0.4190 +2984 29922 0.6630 +2984 50940 0.7750 +2984 54474 0.4890 +2984 79017 0.8160 +2984 79849 0.9420 +2984 112495 0.6340 +2984 139818 0.5280 +2984 221264 0.7140 +2984 246744 0.4320 +2984 377841 0.6710 +2984 654364 0.6830 +2984 728226 0.5740 +2986 3000 0.9280 +2986 3480 0.4780 +2986 3704 0.9010 +2986 4337 0.8120 +2986 4542 0.4060 +2986 4830 0.6630 +2986 4831 0.6630 +2986 4832 0.6630 +2986 4833 0.6630 +2986 4878 0.5730 +2986 4880 0.6970 +2986 4975 0.6130 +2986 5136 0.7200 +2986 5137 0.6850 +2986 5138 0.7820 +2986 5139 0.7460 +2986 5140 0.7390 +2986 5145 0.8550 +2986 5146 0.8110 +2986 5147 0.6840 +2986 5148 0.7820 +2986 5149 0.7710 +2986 5152 0.7740 +2986 5153 0.7130 +2986 5158 0.8160 +2986 5167 0.9070 +2986 5169 0.9070 +2986 5313 0.9030 +2986 5315 0.9030 +2986 5593 0.4210 +2986 5796 0.7250 +2986 5957 0.5000 +2986 5961 0.4910 +2986 6010 0.5040 +2986 6011 0.5450 +2986 6295 0.4940 +2986 8317 0.4330 +2986 8654 0.7730 +2986 8787 0.5200 +2986 9187 0.5340 +2986 9626 0.9590 +2986 9949 0.7980 +2986 10201 0.6630 +2986 10846 0.7520 +2986 23630 0.7900 +2986 26254 0.5910 +2986 29922 0.6630 +2986 50940 0.7710 +2986 55916 0.7060 +2986 57529 0.4420 +2986 60558 0.4260 +2986 83988 0.5360 +2986 84187 0.4590 +2986 84451 0.5760 +2986 85366 0.6630 +2986 92344 0.5040 +2986 112802 0.4450 +2986 131890 0.5310 +2986 149420 0.7440 +2986 158833 0.4470 +2986 221264 0.7130 +2986 340419 0.5160 +2986 343035 0.5240 +2986 347365 0.5460 +2986 377841 0.6550 +2986 654364 0.6630 +2987 3029 0.5220 +2987 3094 0.5350 +2987 3164 0.4010 +2987 3251 0.9450 +2987 3614 0.4950 +2987 3615 0.5560 +2987 3704 0.9440 +2987 4728 0.4260 +2987 4830 0.9450 +2987 4831 0.9460 +2987 4832 0.9500 +2987 4833 0.9490 +2987 4907 0.9000 +2987 5136 0.9000 +2987 5137 0.9000 +2987 5138 0.9060 +2987 5139 0.9000 +2987 5140 0.9000 +2987 5145 0.9150 +2987 5146 0.9310 +2987 5147 0.9100 +2987 5148 0.9160 +2987 5149 0.9040 +2987 5152 0.9030 +2987 5153 0.9020 +2987 5158 0.9130 +2987 5236 0.4290 +2987 5313 0.9170 +2987 5315 0.9200 +2987 5435 0.4860 +2987 5471 0.4630 +2987 5476 0.4700 +2987 5499 0.6250 +2987 5631 0.4580 +2987 5634 0.4320 +2987 5683 0.4280 +2987 5689 0.4030 +2987 5691 0.4040 +2987 5783 0.4650 +2987 5888 0.4310 +2987 5965 0.6660 +2987 6011 0.4030 +2987 6183 0.6760 +2987 6240 0.9530 +2987 6241 0.9320 +2987 6714 0.7270 +2987 7082 0.5460 +2987 7167 0.8950 +2987 7298 0.5020 +2987 7372 0.4780 +2987 8382 0.4040 +2987 8531 0.4150 +2987 8654 0.9060 +2987 8833 0.9780 +2987 9229 0.7640 +2987 9296 0.4140 +2987 9414 0.5250 +2987 9615 0.4960 +2987 10201 0.9380 +2987 10471 0.4160 +2987 10606 0.4020 +2987 10716 0.5690 +2987 10846 0.9060 +2987 22941 0.4820 +2987 22978 0.9020 +2987 23303 0.9260 +2987 26040 0.4470 +2987 26289 0.4160 +2987 27134 0.4750 +2987 27346 0.5960 +2987 29922 0.9400 +2987 30833 0.9190 +2987 50484 0.9340 +2987 50808 0.6360 +2987 50940 0.9060 +2987 51060 0.4260 +2987 51094 0.5330 +2987 51106 0.6740 +2987 51218 0.4220 +2987 51251 0.9010 +2987 51258 0.4240 +2987 51388 0.4190 +2987 51529 0.4410 +2987 51629 0.4410 +2987 51642 0.4820 +2987 51727 0.6340 +2987 54413 0.4420 +2987 54902 0.5040 +2987 55276 0.4420 +2987 55437 0.4600 +2987 56344 0.4610 +2987 56953 0.9110 +2987 57038 0.4840 +2987 57530 0.4760 +2987 65993 0.4040 +2987 79154 0.7060 +2987 80700 0.7700 +2987 84337 0.6340 +2987 84618 0.9250 +2987 84661 0.4400 +2987 93034 0.9190 +2987 115024 0.9000 +2987 116150 0.5300 +2987 122481 0.4430 +2987 128308 0.5610 +2987 131890 0.4160 +2987 143187 0.4070 +2987 158067 0.4640 +2987 161823 0.6180 +2987 221264 0.9450 +2987 221823 0.4530 +2987 283417 0.4610 +2987 347688 0.4220 +2987 374659 0.9420 +2987 377841 0.9060 +2987 440574 0.5200 +2987 654364 0.9300 +2987 100506658 0.6260 +2987 100526794 0.9190 +2987 100527978 0.4090 +2990 3073 0.5490 +2990 3074 0.4650 +2990 3082 0.4910 +2990 3145 0.6720 +2990 3251 0.7530 +2990 3326 0.6260 +2990 3373 0.9420 +2990 3423 0.7620 +2990 3425 0.7260 +2990 3458 0.4090 +2990 3481 0.4800 +2990 3482 0.7440 +2990 3553 0.4350 +2990 3558 0.4380 +2990 3565 0.4300 +2990 3569 0.4600 +2990 3630 0.4300 +2990 3916 0.4520 +2990 4057 0.5330 +2990 4123 0.6610 +2990 4125 0.6340 +2990 4126 0.5910 +2990 4247 0.6490 +2990 4317 0.5180 +2990 4351 0.7770 +2990 4353 0.7280 +2990 4609 0.4090 +2990 4668 0.5450 +2990 4669 0.5970 +2990 4758 0.4420 +2990 4946 0.4960 +2990 5188 0.4880 +2990 5230 0.6560 +2990 5265 0.4040 +2990 5373 0.5940 +2990 5478 0.5170 +2990 5566 0.4730 +2990 5704 0.4870 +2990 5832 0.5390 +2990 6036 0.4290 +2990 6037 0.4890 +2990 6143 0.4460 +2990 6169 0.4020 +2990 6175 0.6250 +2990 6389 0.5900 +2990 6448 0.6380 +2990 6476 0.5330 +2990 6569 0.4030 +2990 6677 0.9370 +2990 6888 0.4720 +2990 6908 0.7350 +2990 7037 0.5500 +2990 7040 0.4890 +2990 7124 0.4460 +2990 7157 0.4130 +2990 7280 0.4950 +2990 7355 0.6870 +2990 7357 0.4630 +2990 7363 0.9420 +2990 7364 0.9440 +2990 7365 0.9440 +2990 7366 0.9440 +2990 7367 0.9450 +2990 7534 0.5590 +2990 7837 0.4590 +2990 8074 0.5930 +2990 8288 0.4650 +2990 8372 0.9130 +2990 8692 0.9310 +2990 8795 0.4740 +2990 8972 0.5340 +2990 9365 0.9860 +2990 9563 0.5730 +2990 9698 0.4230 +2990 9801 0.4220 +2990 10327 0.9160 +2990 10382 0.4020 +2990 10526 0.5260 +2990 10720 0.9420 +2990 10724 0.8300 +2990 10855 0.4750 +2990 10993 0.4380 +2990 23521 0.5650 +2990 23553 0.9210 +2990 54490 0.9420 +2990 54575 0.9540 +2990 54576 0.9480 +2990 54577 0.9480 +2990 54578 0.9480 +2990 54579 0.9430 +2990 54600 0.9480 +2990 54657 0.9510 +2990 54658 0.9480 +2990 54659 0.9450 +2990 55278 0.4660 +2990 55349 0.4290 +2990 55503 0.6960 +2990 55586 0.8000 +2990 55811 0.4500 +2990 55959 0.4160 +2990 56302 0.7410 +2990 56729 0.4290 +2990 56912 0.4170 +2990 57380 0.4510 +2990 63826 0.4380 +2990 79154 0.4040 +2990 79799 0.9410 +2990 84172 0.5000 +2990 84293 0.6380 +2990 84666 0.4570 +2990 113675 0.4410 +2990 130589 0.4750 +2990 137902 0.4560 +2990 138050 0.4690 +2990 158584 0.4610 +2990 203068 0.5340 +2990 440387 0.4450 +2990 574537 0.9420 +2990 728378 0.7180 +2992 2997 0.9990 +2992 2998 0.9870 +2992 4723 0.4240 +2992 5111 0.5600 +2992 5167 0.9000 +2992 5169 0.9000 +2992 5236 0.5460 +2992 5239 0.4700 +2992 5255 0.4270 +2992 5257 0.4310 +2992 5277 0.4070 +2992 5424 0.6030 +2992 5425 0.6190 +2992 5426 0.4440 +2992 5507 0.9690 +2992 5509 0.4700 +2992 5565 0.6380 +2992 5834 0.9540 +2992 5836 0.8470 +2992 5837 0.9220 +2992 5980 0.5760 +2992 6233 0.5200 +2992 6666 0.7780 +2992 7311 0.4990 +2992 7314 0.5490 +2992 7316 0.5520 +2992 7360 0.9560 +2992 7957 0.7730 +2992 8424 0.5270 +2992 8635 0.4770 +2992 8908 0.9860 +2992 8971 0.4070 +2992 8987 0.9140 +2992 9401 0.4920 +2992 10459 0.5910 +2992 10579 0.4650 +2992 10616 0.4990 +2992 25802 0.4840 +2992 50814 0.4270 +2992 50852 0.6010 +2992 51422 0.4170 +2992 56978 0.4150 +2992 64772 0.5410 +2992 79660 0.7110 +2992 81786 0.9870 +2992 378884 0.7200 +2992 440138 0.6420 +2993 2994 0.9990 +2993 2995 0.9390 +2993 2996 0.6840 +2993 3039 0.4460 +2993 3040 0.4500 +2993 3042 0.4080 +2993 3043 0.6870 +2993 3045 0.5780 +2993 3046 0.7760 +2993 3047 0.5230 +2993 3050 0.4550 +2993 3251 0.4990 +2993 3386 0.6700 +2993 3562 0.6050 +2993 3563 0.8190 +2993 3674 0.7390 +2993 3676 0.4110 +2993 3684 0.5770 +2993 3687 0.4180 +2993 3690 0.6220 +2993 3792 0.7900 +2993 3815 0.5840 +2993 3972 0.4440 +2993 3987 0.5100 +2993 4102 0.4200 +2993 4162 0.4330 +2993 4254 0.5930 +2993 4311 0.5620 +2993 4353 0.5760 +2993 4684 0.7290 +2993 4778 0.4620 +2993 4907 0.4850 +2993 5175 0.6100 +2993 5688 0.5070 +2993 5788 0.7340 +2993 6005 0.9930 +2993 6006 0.9750 +2993 6007 0.7720 +2993 6472 0.5710 +2993 6513 0.6730 +2993 6521 0.9990 +2993 6614 0.4800 +2993 6622 0.4370 +2993 6693 0.6030 +2993 6708 0.8650 +2993 6886 0.5960 +2993 7037 0.7820 +2993 7066 0.5320 +2993 7070 0.5750 +2993 7448 0.5150 +2993 7485 0.6780 +2993 8328 0.4250 +2993 8467 0.4430 +2993 8842 0.4360 +2993 9567 0.4680 +2993 9817 0.4220 +2993 9911 0.5260 +2993 10107 0.7100 +2993 10661 0.8980 +2993 10690 0.5030 +2993 26253 0.4390 +2993 27180 0.4700 +2993 30816 0.5800 +2993 51125 0.4200 +2993 51327 0.8100 +2993 53335 0.4580 +2993 54855 0.4590 +2993 55363 0.8340 +2993 55644 0.4460 +2993 64399 0.4400 +2993 79924 0.4520 +2993 83697 0.5680 +2993 84868 0.4610 +2993 84896 0.8840 +2993 91937 0.5150 +2993 161882 0.4230 +2993 166752 0.6930 +2993 222642 0.7820 +2993 374569 0.4370 +2993 405754 0.7170 +2993 439996 0.4290 +2993 440387 0.4300 +2994 2995 0.9620 +2994 2996 0.8570 +2994 3039 0.4540 +2994 3040 0.4380 +2994 3042 0.5520 +2994 3043 0.7090 +2994 3045 0.6650 +2994 3046 0.7880 +2994 3047 0.4620 +2994 3048 0.4340 +2994 3049 0.5580 +2994 3050 0.4440 +2994 3117 0.5270 +2994 3118 0.4800 +2994 3145 0.6180 +2994 3386 0.7480 +2994 3792 0.8560 +2994 3848 0.4280 +2994 3903 0.4290 +2994 4635 0.6790 +2994 5834 0.6050 +2994 5836 0.5110 +2994 5837 0.5070 +2994 6005 0.9990 +2994 6006 0.9920 +2994 6007 0.9790 +2994 6521 0.9950 +2994 6563 0.4670 +2994 6622 0.5900 +2994 6708 0.7940 +2994 6886 0.4780 +2994 7111 0.5080 +2994 7145 0.4430 +2994 7504 0.4600 +2994 8467 0.4010 +2994 8991 0.5260 +2994 9911 0.6440 +2994 10042 0.4360 +2994 10107 0.7920 +2994 10661 0.8940 +2994 10690 0.5200 +2994 23762 0.6460 +2994 25893 0.4610 +2994 29979 0.4300 +2994 30816 0.4180 +2994 51218 0.4970 +2994 51327 0.8780 +2994 51458 0.5120 +2994 51621 0.6240 +2994 54855 0.5330 +2994 55363 0.7470 +2994 64399 0.4230 +2994 84640 0.4520 +2994 84868 0.4240 +2994 91937 0.5030 +2994 166752 0.6960 +2994 222642 0.6450 +2994 405754 0.4260 +2994 439996 0.4760 +2994 440387 0.4320 +2995 2996 0.9020 +2995 3046 0.4640 +2995 3105 0.9240 +2995 3383 0.4380 +2995 3458 0.4320 +2995 3675 0.4930 +2995 3916 0.4970 +2995 4010 0.4430 +2995 4064 0.4630 +2995 4099 0.4820 +2995 4245 0.5250 +2995 4247 0.4280 +2995 4249 0.4450 +2995 4354 0.9180 +2995 4627 0.4530 +2995 5034 0.4460 +2995 5156 0.5340 +2995 5818 0.5130 +2995 6005 0.4340 +2995 6006 0.6330 +2995 6007 0.6130 +2995 6513 0.5050 +2995 6521 0.5380 +2995 6710 0.5330 +2995 7057 0.5160 +2995 7096 0.5290 +2995 7097 0.8020 +2995 7098 0.4950 +2995 7099 0.4820 +2995 7111 0.4790 +2995 8482 0.5240 +2995 8764 0.7760 +2995 9451 0.4260 +2995 9567 0.5080 +2995 9568 0.5210 +2995 10437 0.7310 +2995 10690 0.4340 +2995 11282 0.6350 +2995 11320 0.6070 +2995 23266 0.4070 +2995 27036 0.4100 +2995 29765 0.4020 +2995 29907 0.4910 +2995 29990 0.5280 +2995 29992 0.8800 +2995 30816 0.7410 +2995 30835 0.4690 +2995 54097 0.4520 +2995 54106 0.5300 +2995 56034 0.4280 +2995 81608 0.4930 +2995 83700 0.4050 +2995 84868 0.4340 +2995 91543 0.6930 +2995 91937 0.4600 +2995 114625 0.4200 +2995 146664 0.4330 +2995 257019 0.5230 +2995 405754 0.5080 +2995 414325 0.5160 +2996 3039 0.4100 +2996 3043 0.6310 +2996 3045 0.4070 +2996 3046 0.6680 +2996 3049 0.4090 +2996 3117 0.5130 +2996 3118 0.4790 +2996 3690 0.4230 +2996 3792 0.7360 +2996 3972 0.4180 +2996 4861 0.5700 +2996 5173 0.5820 +2996 5816 0.6070 +2996 6005 0.5200 +2996 6006 0.5320 +2996 6007 0.4370 +2996 6521 0.7670 +2996 6531 0.4310 +2996 6622 0.5140 +2996 6708 0.6560 +2996 6863 0.5800 +2996 6886 0.4340 +2996 7054 0.4760 +2996 8821 0.4020 +2996 9911 0.4730 +2996 10107 0.6420 +2996 10661 0.6350 +2996 10690 0.5540 +2996 26468 0.4330 +2996 30816 0.4420 +2996 51327 0.7310 +2996 55188 0.4200 +2996 55363 0.5070 +2996 64399 0.4290 +2996 84152 0.4680 +2996 84640 0.4520 +2996 84868 0.4890 +2996 91937 0.5530 +2996 166752 0.7290 +2996 222642 0.5380 +2996 246744 0.5430 +2996 405754 0.4050 +2997 2998 0.9030 +2997 3098 0.4550 +2997 3099 0.4830 +2997 3101 0.4100 +2997 3303 0.4710 +2997 3304 0.4660 +2997 3630 0.6230 +2997 3643 0.4560 +2997 3667 0.5650 +2997 3725 0.5370 +2997 3824 0.4320 +2997 4040 0.4610 +2997 4068 0.4260 +2997 4170 0.4460 +2997 5009 0.6390 +2997 5033 0.4970 +2997 5105 0.4420 +2997 5106 0.4650 +2997 5166 0.4410 +2997 5167 0.9060 +2997 5169 0.9060 +2997 5209 0.4460 +2997 5211 0.5150 +2997 5213 0.6240 +2997 5214 0.4220 +2997 5224 0.5400 +2997 5230 0.4330 +2997 5236 0.8640 +2997 5238 0.4410 +2997 5239 0.7260 +2997 5255 0.5660 +2997 5257 0.4660 +2997 5260 0.4510 +2997 5261 0.4250 +2997 5313 0.4870 +2997 5315 0.5350 +2997 5372 0.4010 +2997 5499 0.9730 +2997 5500 0.9700 +2997 5501 0.9860 +2997 5502 0.5430 +2997 5504 0.4970 +2997 5506 0.9520 +2997 5507 0.9980 +2997 5509 0.9550 +2997 5510 0.5080 +2997 5511 0.4160 +2997 5562 0.9280 +2997 5563 0.9400 +2997 5564 0.9350 +2997 5565 0.9770 +2997 5566 0.9330 +2997 5567 0.9310 +2997 5568 0.9290 +2997 5571 0.9310 +2997 5597 0.5060 +2997 5601 0.4380 +2997 5605 0.4150 +2997 5834 0.9560 +2997 5836 0.9090 +2997 5837 0.9120 +2997 6233 0.5170 +2997 6510 0.6810 +2997 6513 0.6420 +2997 6514 0.4080 +2997 6515 0.4010 +2997 6517 0.5840 +2997 6666 0.9940 +2997 7167 0.4350 +2997 7311 0.5130 +2997 7314 0.5260 +2997 7316 0.5260 +2997 7358 0.5880 +2997 7360 0.9810 +2997 7371 0.6660 +2997 7957 0.9650 +2997 8312 0.4530 +2997 8473 0.9180 +2997 8660 0.5230 +2997 8789 0.4700 +2997 8813 0.4070 +2997 8891 0.5340 +2997 8893 0.4700 +2997 8908 0.9990 +2997 8987 0.8750 +2997 9013 0.4280 +2997 9352 0.5440 +2997 9401 0.4480 +2997 9487 0.5580 +2997 9563 0.5400 +2997 9852 0.4390 +2997 9882 0.4620 +2997 10020 0.4490 +2997 10023 0.4710 +2997 22845 0.4190 +2997 23178 0.8170 +2997 23401 0.4310 +2997 23483 0.4980 +2997 27247 0.5720 +2997 29880 0.4120 +2997 29925 0.4730 +2997 29926 0.4920 +2997 51422 0.9460 +2997 51477 0.5780 +2997 51744 0.4350 +2997 53632 0.9420 +2997 55276 0.5170 +2997 57697 0.5020 +2997 64080 0.4640 +2997 79660 0.9870 +2997 84955 0.6200 +2997 89801 0.9230 +2997 90673 0.9500 +2997 92579 0.4530 +2997 114928 0.5270 +2997 283209 0.4120 +2997 286451 0.4930 +2997 348180 0.4960 +2997 378884 0.9600 +2997 648791 0.5250 +2998 3098 0.4140 +2998 3101 0.4120 +2998 3569 0.4490 +2998 3630 0.6630 +2998 3643 0.4380 +2998 5009 0.7230 +2998 5091 0.4260 +2998 5105 0.6910 +2998 5106 0.5300 +2998 5166 0.4340 +2998 5167 0.9060 +2998 5169 0.9060 +2998 5211 0.5050 +2998 5213 0.5130 +2998 5224 0.4760 +2998 5236 0.8160 +2998 5238 0.4950 +2998 5239 0.7300 +2998 5255 0.4440 +2998 5256 0.4960 +2998 5257 0.5590 +2998 5260 0.4090 +2998 5261 0.4620 +2998 5313 0.6100 +2998 5465 0.4180 +2998 5499 0.9740 +2998 5500 0.9560 +2998 5501 0.9570 +2998 5506 0.9640 +2998 5507 0.9920 +2998 5509 0.9590 +2998 5562 0.9210 +2998 5563 0.9230 +2998 5564 0.9280 +2998 5565 0.9270 +2998 5566 0.9250 +2998 5567 0.9250 +2998 5568 0.9250 +2998 5571 0.9230 +2998 5834 0.9620 +2998 5836 0.9830 +2998 5837 0.9400 +2998 6233 0.5150 +2998 6514 0.6140 +2998 6517 0.4670 +2998 7311 0.5130 +2998 7314 0.5260 +2998 7316 0.5260 +2998 7358 0.5800 +2998 7360 0.9760 +2998 7957 0.7440 +2998 8473 0.9180 +2998 8789 0.5010 +2998 8813 0.4070 +2998 8891 0.4620 +2998 8893 0.4620 +2998 8908 0.9910 +2998 8987 0.7440 +2998 9487 0.5580 +2998 9563 0.5070 +2998 10020 0.4360 +2998 11345 0.4910 +2998 22845 0.4020 +2998 23483 0.4980 +2998 23710 0.4920 +2998 29880 0.4070 +2998 29925 0.4820 +2998 29926 0.4620 +2998 51026 0.4540 +2998 51422 0.9380 +2998 51477 0.5010 +2998 53632 0.9250 +2998 55224 0.4390 +2998 55276 0.5110 +2998 57697 0.5020 +2998 57818 0.5540 +2998 64080 0.4780 +2998 79660 0.9900 +2998 80201 0.4280 +2998 80270 0.4060 +2998 89801 0.9240 +2998 90673 0.9550 +2998 92579 0.5490 +2998 122970 0.4060 +2998 127845 0.4580 +2998 283209 0.4440 +2998 286451 0.4930 +2998 348180 0.4800 +2998 378884 0.6320 +2998 648791 0.5760 +2999 3001 0.8770 +2999 3002 0.8470 +2999 3003 0.8780 +2999 3004 0.7100 +2999 3113 0.4690 +2999 3118 0.4350 +2999 3122 0.5230 +2999 3123 0.4070 +2999 3458 0.6960 +2999 3479 0.4140 +2999 3483 0.4570 +2999 3486 0.4210 +2999 3560 0.5710 +2999 3574 0.4920 +2999 3575 0.5130 +2999 3683 0.4320 +2999 3820 0.7120 +2999 3821 0.4010 +2999 3822 0.4980 +2999 3823 0.4890 +2999 3824 0.8770 +2999 3902 0.7310 +2999 4057 0.4060 +2999 4063 0.5090 +2999 4068 0.4010 +2999 4283 0.4470 +2999 4818 0.9690 +2999 5133 0.5320 +2999 5551 0.9350 +2999 6351 0.5270 +2999 6375 0.4830 +2999 6846 0.5770 +2999 6932 0.4210 +2999 7292 0.4530 +2999 7980 0.4910 +2999 8320 0.7760 +2999 8530 0.7210 +2999 8741 0.4830 +2999 8807 0.4300 +2999 9982 0.4650 +2999 10219 0.6770 +2999 10225 0.4280 +2999 10288 0.4050 +2999 10578 0.9580 +2999 10663 0.5500 +2999 11126 0.5950 +2999 22914 0.6100 +2999 26692 0.4200 +2999 29851 0.4470 +2999 30009 0.6800 +2999 50943 0.4200 +2999 51348 0.6650 +2999 51744 0.5860 +2999 53637 0.5690 +2999 55303 0.4510 +2999 56253 0.4450 +2999 57823 0.4510 +2999 83888 0.9050 +2999 84823 0.4420 +2999 84868 0.5070 +2999 115362 0.4310 +2999 149628 0.4560 +2999 154075 0.5120 +2999 168537 0.4650 +2999 171558 0.4730 +2999 201633 0.6040 +2999 257101 0.8660 +2999 343413 0.4790 +3000 3208 0.4670 +3000 3614 0.6630 +3000 3704 0.9010 +3000 3769 0.4780 +3000 4337 0.8370 +3000 4830 0.6630 +3000 4831 0.6630 +3000 4832 0.6630 +3000 4833 0.6630 +3000 4878 0.5430 +3000 4880 0.5590 +3000 4883 0.5770 +3000 4901 0.5080 +3000 4975 0.6410 +3000 5136 0.6990 +3000 5137 0.6990 +3000 5138 0.7850 +3000 5139 0.7350 +3000 5140 0.7300 +3000 5145 0.8910 +3000 5146 0.8900 +3000 5147 0.7320 +3000 5148 0.8370 +3000 5149 0.8350 +3000 5152 0.7660 +3000 5153 0.7120 +3000 5158 0.9190 +3000 5167 0.9070 +3000 5169 0.9070 +3000 5313 0.9030 +3000 5315 0.9030 +3000 5957 0.8640 +3000 5959 0.4560 +3000 5961 0.9210 +3000 6010 0.6250 +3000 6011 0.6490 +3000 6017 0.4420 +3000 6094 0.5210 +3000 6100 0.4100 +3000 6103 0.7200 +3000 6121 0.8830 +3000 6285 0.6620 +3000 6295 0.4890 +3000 7287 0.8690 +3000 7399 0.5740 +3000 7439 0.5070 +3000 8654 0.7640 +3000 8754 0.5720 +3000 8787 0.4540 +3000 8842 0.5910 +3000 9049 0.5960 +3000 9094 0.7590 +3000 9187 0.5100 +3000 9227 0.8230 +3000 9626 0.9800 +3000 9657 0.6580 +3000 9742 0.4320 +3000 10002 0.5360 +3000 10201 0.6630 +3000 10461 0.7110 +3000 10846 0.7480 +3000 22999 0.7270 +3000 23093 0.4740 +3000 23322 0.5210 +3000 23746 0.9740 +3000 25794 0.4660 +3000 26121 0.5070 +3000 26254 0.5440 +3000 29922 0.6630 +3000 50939 0.4600 +3000 50940 0.7480 +3000 51667 0.4470 +3000 51806 0.5530 +3000 54346 0.4250 +3000 54714 0.7350 +3000 55812 0.7210 +3000 57010 0.5860 +3000 57096 0.9450 +3000 60506 0.4130 +3000 60558 0.6140 +3000 64218 0.7260 +3000 64802 0.6050 +3000 80184 0.7740 +3000 83394 0.8240 +3000 83988 0.9590 +3000 84140 0.4470 +3000 84839 0.7740 +3000 91860 0.5460 +3000 92211 0.7480 +3000 93589 0.4020 +3000 94137 0.5220 +3000 131890 0.5950 +3000 145226 0.7810 +3000 157657 0.5760 +3000 163688 0.5470 +3000 167691 0.8680 +3000 169522 0.6680 +3000 221264 0.7130 +3000 254173 0.4520 +3000 282809 0.4730 +3000 343035 0.9290 +3000 346007 0.5350 +3000 375298 0.6010 +3000 377841 0.6550 +3000 388531 0.5310 +3000 388939 0.5220 +3000 654364 0.6630 +3001 3002 0.9040 +3001 3003 0.9710 +3001 3004 0.4930 +3001 3067 0.4780 +3001 3105 0.4910 +3001 3106 0.4340 +3001 3107 0.4120 +3001 3108 0.4470 +3001 3109 0.4710 +3001 3113 0.4780 +3001 3118 0.4550 +3001 3119 0.4280 +3001 3122 0.6420 +3001 3123 0.4890 +3001 3133 0.4500 +3001 3148 0.7530 +3001 3304 0.4440 +3001 3308 0.4380 +3001 3458 0.8410 +3001 3553 0.4910 +3001 3557 0.4330 +3001 3558 0.7370 +3001 3559 0.5380 +3001 3560 0.9010 +3001 3561 0.4360 +3001 3565 0.4760 +3001 3569 0.4800 +3001 3574 0.4180 +3001 3575 0.7130 +3001 3576 0.4040 +3001 3586 0.6130 +3001 3587 0.4920 +3001 3594 0.4220 +3001 3600 0.5760 +3001 3605 0.5090 +3001 3606 0.4550 +3001 3620 0.7280 +3001 3627 0.6320 +3001 3659 0.4740 +3001 3672 0.5380 +3001 3676 0.5640 +3001 3682 0.4900 +3001 3683 0.5650 +3001 3684 0.4940 +3001 3687 0.4530 +3001 3689 0.6260 +3001 3695 0.5220 +3001 3702 0.6260 +3001 3802 0.4320 +3001 3811 0.4050 +3001 3820 0.9440 +3001 3821 0.6080 +3001 3822 0.6520 +3001 3823 0.5040 +3001 3824 0.9060 +3001 3902 0.8050 +3001 3916 0.5400 +3001 3937 0.4050 +3001 4050 0.4520 +3001 4064 0.4780 +3001 4068 0.7910 +3001 4283 0.8190 +3001 4318 0.5580 +3001 4684 0.5870 +3001 4722 0.7560 +3001 4818 0.9370 +3001 4830 0.8730 +3001 5133 0.7780 +3001 5175 0.4140 +3001 5551 0.9980 +3001 5641 0.5370 +3001 5729 0.4070 +3001 5788 0.6000 +3001 5790 0.5120 +3001 6035 0.4060 +3001 6097 0.4090 +3001 6347 0.4200 +3001 6348 0.5090 +3001 6351 0.6280 +3001 6373 0.4670 +3001 6374 0.4240 +3001 6375 0.7680 +3001 6402 0.5970 +3001 6418 0.9110 +3001 6772 0.5060 +3001 6775 0.5290 +3001 6846 0.6320 +3001 6932 0.5450 +3001 7124 0.6170 +3001 7293 0.4840 +3001 7305 0.5130 +3001 7535 0.5560 +3001 8125 0.8410 +3001 8320 0.8140 +3001 8530 0.7180 +3001 8600 0.4300 +3001 8743 0.4930 +3001 8784 0.4440 +3001 8807 0.7830 +3001 8809 0.4640 +3001 9002 0.6840 +3001 9034 0.4630 +3001 9235 0.6620 +3001 9332 0.5290 +3001 9437 0.6060 +3001 9450 0.6440 +3001 10219 0.7480 +3001 10225 0.6050 +3001 10288 0.4450 +3001 10538 0.4450 +3001 10563 0.5220 +3001 10578 0.9760 +3001 10663 0.8560 +3001 10666 0.5120 +3001 10870 0.5450 +3001 10875 0.4740 +3001 11126 0.6450 +3001 11277 0.6420 +3001 22914 0.7880 +3001 26040 0.4440 +3001 27087 0.4940 +3001 29126 0.6150 +3001 29851 0.7230 +3001 29909 0.5010 +3001 30009 0.7700 +3001 50852 0.5240 +3001 50943 0.6170 +3001 51176 0.4290 +3001 51279 0.4840 +3001 51348 0.6890 +3001 51744 0.5410 +3001 55303 0.5590 +3001 55340 0.4720 +3001 55540 0.4100 +3001 55876 0.5730 +3001 56169 0.4180 +3001 56253 0.5110 +3001 56288 0.6500 +3001 57823 0.5390 +3001 58191 0.5690 +3001 79037 0.4610 +3001 79792 0.6030 +3001 80342 0.4200 +3001 80380 0.4800 +3001 83888 0.6170 +3001 84868 0.6920 +3001 114836 0.4750 +3001 115362 0.6630 +3001 116986 0.4780 +3001 120425 0.4720 +3001 149628 0.5330 +3001 151888 0.4680 +3001 154075 0.5660 +3001 168537 0.5510 +3001 201633 0.7380 +3001 257101 0.5750 +3001 259197 0.5640 +3001 284110 0.4450 +3001 387357 0.4260 +3001 474344 0.4330 +3001 494513 0.5410 +3002 3003 0.5720 +3002 3055 0.5840 +3002 3091 0.4250 +3002 3105 0.6180 +3002 3106 0.5320 +3002 3107 0.4810 +3002 3109 0.4130 +3002 3113 0.4640 +3002 3118 0.4090 +3002 3119 0.4460 +3002 3122 0.5810 +3002 3123 0.4720 +3002 3133 0.5870 +3002 3135 0.4430 +3002 3308 0.8370 +3002 3320 0.4490 +3002 3326 0.4430 +3002 3383 0.5360 +3002 3394 0.4740 +3002 3398 0.4340 +3002 3439 0.7430 +3002 3444 0.4910 +3002 3454 0.4370 +3002 3456 0.5090 +3002 3458 0.9560 +3002 3459 0.4270 +3002 3482 0.6450 +3002 3516 0.5860 +3002 3552 0.6950 +3002 3553 0.7650 +3002 3554 0.5900 +3002 3558 0.8870 +3002 3559 0.6620 +3002 3560 0.9070 +3002 3561 0.5640 +3002 3562 0.4170 +3002 3563 0.5040 +3002 3565 0.6980 +3002 3566 0.4120 +3002 3567 0.5920 +3002 3569 0.6770 +3002 3574 0.6360 +3002 3575 0.7720 +3002 3576 0.5890 +3002 3577 0.4240 +3002 3578 0.4630 +3002 3579 0.4510 +3002 3586 0.7870 +3002 3587 0.6560 +3002 3594 0.5350 +3002 3595 0.5360 +3002 3596 0.5910 +3002 3600 0.7910 +3002 3601 0.5350 +3002 3605 0.7300 +3002 3606 0.6240 +3002 3620 0.6930 +3002 3627 0.7150 +3002 3659 0.5250 +3002 3661 0.4020 +3002 3662 0.5590 +3002 3665 0.4730 +3002 3672 0.5290 +3002 3673 0.4270 +3002 3676 0.4990 +3002 3682 0.7000 +3002 3683 0.6730 +3002 3684 0.7330 +3002 3687 0.7130 +3002 3689 0.6520 +3002 3702 0.4930 +3002 3716 0.4520 +3002 3717 0.4050 +3002 3718 0.4730 +3002 3802 0.6400 +3002 3804 0.6240 +3002 3805 0.5500 +3002 3811 0.6010 +3002 3812 0.4370 +3002 3815 0.4130 +3002 3820 0.7870 +3002 3821 0.7410 +3002 3822 0.6950 +3002 3823 0.4530 +3002 3824 0.8630 +3002 3845 0.4100 +3002 3880 0.5020 +3002 3902 0.9300 +3002 3904 0.4240 +3002 3916 0.7730 +3002 3937 0.6720 +3002 3958 0.5150 +3002 3965 0.5320 +3002 4000 0.9400 +3002 4001 0.9140 +3002 4049 0.4410 +3002 4050 0.4190 +3002 4067 0.6740 +3002 4068 0.4510 +3002 4162 0.4740 +3002 4170 0.9310 +3002 4261 0.4100 +3002 4277 0.4880 +3002 4283 0.7280 +3002 4288 0.4010 +3002 4311 0.4250 +3002 4318 0.4640 +3002 4353 0.4120 +3002 4360 0.5110 +3002 4599 0.4370 +3002 4609 0.4460 +3002 4684 0.8710 +3002 4690 0.6660 +3002 4790 0.4990 +3002 4818 0.9170 +3002 4853 0.6220 +3002 4907 0.5160 +3002 4921 0.4010 +3002 5079 0.4030 +3002 5133 0.8320 +3002 5156 0.4760 +3002 5159 0.4680 +3002 5175 0.5330 +3002 5269 0.5230 +3002 5271 0.4300 +3002 5272 0.9580 +3002 5341 0.4090 +3002 5473 0.4630 +3002 5551 0.9990 +3002 5552 0.9640 +3002 5781 0.6940 +3002 5788 0.7750 +3002 5817 0.4780 +3002 5819 0.4180 +3002 5877 0.4330 +3002 5896 0.4910 +3002 6097 0.5160 +3002 6347 0.5990 +3002 6348 0.6690 +3002 6351 0.7480 +3002 6355 0.4020 +3002 6361 0.4150 +3002 6363 0.4740 +3002 6364 0.5030 +3002 6367 0.4480 +3002 6373 0.5500 +3002 6375 0.6010 +3002 6376 0.5940 +3002 6382 0.4450 +3002 6387 0.4230 +3002 6401 0.5350 +3002 6402 0.7780 +3002 6404 0.4090 +3002 6464 0.9630 +3002 6490 0.5140 +3002 6504 0.4720 +3002 6654 0.7330 +3002 6655 0.5360 +3002 6693 0.5880 +3002 6714 0.6120 +3002 6772 0.6140 +3002 6774 0.5900 +3002 6775 0.6190 +3002 6776 0.5350 +3002 6777 0.5550 +3002 6778 0.4070 +3002 6846 0.6020 +3002 6850 0.6300 +3002 6932 0.6240 +3002 7040 0.5460 +3002 7046 0.5220 +3002 7048 0.4140 +3002 7057 0.5370 +3002 7072 0.7700 +3002 7076 0.4670 +3002 7097 0.5340 +3002 7098 0.4690 +3002 7099 0.5290 +3002 7124 0.8700 +3002 7132 0.4640 +3002 7157 0.4970 +3002 7277 0.9080 +3002 7292 0.6550 +3002 7293 0.6640 +3002 7305 0.5550 +3002 7409 0.7110 +3002 7412 0.4300 +3002 7535 0.5750 +3002 7704 0.4030 +3002 7837 0.4250 +3002 7846 0.9310 +3002 7852 0.5050 +3002 8320 0.8430 +3002 8530 0.6460 +3002 8639 0.5890 +3002 8676 0.6150 +3002 8698 0.4020 +3002 8743 0.5790 +3002 8744 0.4790 +3002 8784 0.6260 +3002 8807 0.7000 +3002 8809 0.5000 +3002 9034 0.6140 +3002 9185 0.4300 +3002 9235 0.5470 +3002 9308 0.4610 +3002 9332 0.6520 +3002 9398 0.4280 +3002 9436 0.6250 +3002 9437 0.7530 +3002 9636 0.4070 +3002 9794 0.5320 +3002 9846 0.9470 +3002 10004 0.5030 +3002 10018 0.4010 +3002 10038 0.9050 +3002 10039 0.9030 +3002 10046 0.5310 +3002 10219 0.7710 +3002 10225 0.5090 +3002 10288 0.5010 +3002 10320 0.4080 +3002 10365 0.7830 +3002 10376 0.9110 +3002 10538 0.4970 +3002 10555 0.6690 +3002 10563 0.6920 +3002 10578 0.9950 +3002 10663 0.6840 +3002 10666 0.6630 +3002 10673 0.4860 +3002 10803 0.4070 +3002 10859 0.5330 +3002 10870 0.5770 +3002 10875 0.4780 +3002 11126 0.6640 +3002 22806 0.4020 +3002 22807 0.4320 +3002 22905 0.4070 +3002 22914 0.8160 +3002 23308 0.4220 +3002 23533 0.4310 +3002 23547 0.4420 +3002 23765 0.5390 +3002 26058 0.4030 +3002 26580 0.6590 +3002 27087 0.7240 +3002 27141 0.5170 +3002 29091 0.5040 +3002 29126 0.7840 +3002 29851 0.7390 +3002 30009 0.9180 +3002 50615 0.6800 +3002 50616 0.7120 +3002 50943 0.8230 +3002 51043 0.4390 +3002 51176 0.4500 +3002 51284 0.5020 +3002 51311 0.4580 +3002 51348 0.6740 +3002 51429 0.4310 +3002 51744 0.6520 +3002 51807 0.9100 +3002 53637 0.4300 +3002 54106 0.4890 +3002 54205 0.4480 +3002 55040 0.4070 +3002 55509 0.4180 +3002 55534 0.5270 +3002 56253 0.4380 +3002 57509 0.5080 +3002 57823 0.5820 +3002 58985 0.4360 +3002 59067 0.4320 +3002 64115 0.4180 +3002 65258 0.4050 +3002 79792 0.4370 +3002 79861 0.9070 +3002 80328 0.4190 +3002 80329 0.4360 +3002 80380 0.5820 +3002 80381 0.6070 +3002 83888 0.5900 +3002 84441 0.5270 +3002 84790 0.9070 +3002 84823 0.9110 +3002 84868 0.8190 +3002 90865 0.4430 +3002 112714 0.9070 +3002 112744 0.4390 +3002 113457 0.9070 +3002 114548 0.4160 +3002 114836 0.5380 +3002 115362 0.4380 +3002 117157 0.4480 +3002 127544 0.5050 +3002 137902 0.4230 +3002 140885 0.4390 +3002 149233 0.5970 +3002 151888 0.5600 +3002 168400 0.5550 +3002 169355 0.5250 +3002 170482 0.4230 +3002 201294 0.5920 +3002 201633 0.7690 +3002 257101 0.5950 +3002 259197 0.7360 +3002 282618 0.4550 +3002 284194 0.4640 +3002 343413 0.4710 +3002 374383 0.4030 +3002 654346 0.4640 +3002 102723407 0.4200 +3003 3004 0.4780 +3003 3108 0.4790 +3003 3109 0.5160 +3003 3111 0.4280 +3003 3112 0.4640 +3003 3113 0.5030 +3003 3122 0.5990 +3003 3123 0.4060 +3003 3458 0.6470 +3003 3558 0.4070 +3003 3559 0.4940 +3003 3560 0.6940 +3003 3561 0.4450 +3003 3575 0.7670 +3003 3587 0.4530 +3003 3627 0.4280 +3003 3682 0.4250 +3003 3683 0.4170 +3003 3695 0.5430 +3003 3702 0.7360 +3003 3820 0.9310 +3003 3821 0.5100 +3003 3822 0.4830 +3003 3823 0.4150 +3003 3824 0.7100 +3003 3902 0.7010 +3003 4068 0.7370 +3003 4283 0.5910 +3003 4288 0.4500 +3003 4318 0.5020 +3003 4477 0.9800 +3003 4684 0.4790 +3003 4818 0.9330 +3003 5133 0.5860 +3003 5551 0.8930 +3003 5788 0.4740 +3003 5790 0.5050 +3003 6348 0.4030 +3003 6351 0.7040 +3003 6362 0.4970 +3003 6363 0.4360 +3003 6375 0.6950 +3003 6402 0.5360 +3003 6418 0.6600 +3003 6775 0.4770 +3003 6846 0.5730 +3003 6932 0.6050 +3003 7124 0.4330 +3003 7293 0.4020 +3003 7305 0.4110 +3003 7535 0.5520 +3003 8320 0.9000 +3003 8530 0.5640 +3003 8784 0.4040 +3003 8807 0.4420 +3003 8809 0.4090 +3003 9034 0.4220 +3003 9235 0.4240 +3003 9332 0.4430 +3003 9437 0.4040 +3003 9560 0.4010 +3003 10219 0.7270 +3003 10225 0.6100 +3003 10365 0.5420 +3003 10563 0.5890 +3003 10578 0.8280 +3003 10663 0.7760 +3003 10803 0.4300 +3003 10875 0.4440 +3003 11126 0.5940 +3003 11184 0.4090 +3003 22914 0.6280 +3003 23547 0.4530 +3003 29851 0.7100 +3003 29909 0.6760 +3003 30009 0.6660 +3003 50852 0.6060 +3003 50943 0.4760 +3003 51176 0.4800 +3003 51237 0.4360 +3003 51348 0.5810 +3003 51744 0.4770 +3003 55303 0.4850 +3003 55423 0.5260 +3003 56253 0.5210 +3003 57282 0.4350 +3003 57823 0.4050 +3003 80342 0.4400 +3003 83888 0.6490 +3003 84868 0.5980 +3003 114836 0.4760 +3003 115352 0.4450 +3003 115362 0.4050 +3003 117289 0.4680 +3003 143903 0.4540 +3003 149628 0.5380 +3003 154075 0.4940 +3003 168537 0.4840 +3003 201633 0.7520 +3003 222698 0.4010 +3003 257101 0.6180 +3003 387357 0.4550 +3003 414062 0.5380 +3004 3039 0.5100 +3004 3040 0.5110 +3004 3046 0.4060 +3004 3820 0.4840 +3004 3824 0.4400 +3004 3902 0.5140 +3004 4068 0.4080 +3004 4818 0.6450 +3004 5533 0.4200 +3004 5551 0.6730 +3004 5886 0.4810 +3004 6567 0.4280 +3004 7166 0.4080 +3004 7535 0.5950 +3004 7837 0.4290 +3004 8320 0.4080 +3004 8519 0.4780 +3004 10206 0.5180 +3004 10213 0.4380 +3004 10219 0.4280 +3004 10578 0.5810 +3004 10616 0.4470 +3004 10663 0.4080 +3004 23621 0.8740 +3004 25836 0.4460 +3004 26521 0.4890 +3004 29952 0.5010 +3004 30009 0.4190 +3004 55072 0.5860 +3004 55811 0.4780 +3004 80218 0.4020 +3004 81858 0.5700 +3004 84823 0.5100 +3004 90268 0.7540 +3004 137902 0.4290 +3004 201633 0.4290 +3004 221302 0.4790 +3004 259197 0.4510 +3004 647286 0.4230 +3005 3006 0.5880 +3005 3007 0.5300 +3005 3008 0.6940 +3005 3009 0.5820 +3005 3012 0.9070 +3005 3014 0.6510 +3005 3015 0.8210 +3005 3017 0.6040 +3005 3018 0.5960 +3005 3020 0.4360 +3005 3021 0.7900 +3005 3024 0.5230 +3005 3065 0.4810 +3005 3066 0.6760 +3005 3070 0.4960 +3005 3146 0.6790 +3005 3148 0.6560 +3005 3150 0.6960 +3005 3151 0.6420 +3005 3159 0.6230 +3005 3192 0.5470 +3005 3308 0.5610 +3005 3608 0.4520 +3005 3832 0.4340 +3005 3837 0.9480 +3005 3930 0.4840 +3005 3960 0.6280 +3005 3980 0.4370 +3005 4001 0.6380 +3005 4155 0.7120 +3005 4172 0.4260 +3005 4176 0.5510 +3005 4204 0.5250 +3005 4609 0.5420 +3005 4613 0.4170 +3005 4673 0.4100 +3005 4678 0.8570 +3005 4691 0.8210 +3005 5127 0.4430 +3005 5128 0.4390 +3005 5129 0.4150 +3005 5596 0.5020 +3005 5621 0.4210 +3005 5757 0.9910 +3005 5925 0.5400 +3005 5971 0.4630 +3005 5978 0.4170 +3005 6046 0.4680 +3005 6047 0.4090 +3005 6146 0.5370 +3005 6418 0.5460 +3005 6426 0.5600 +3005 6427 0.5020 +3005 6594 0.6130 +3005 6595 0.4100 +3005 6597 0.4810 +3005 6599 0.4670 +3005 6749 0.4380 +3005 6774 0.4200 +3005 6788 0.4910 +3005 6789 0.4250 +3005 6839 0.6270 +3005 7150 0.5490 +3005 7155 0.5560 +3005 7157 0.7260 +3005 7158 0.4750 +3005 7290 0.6230 +3005 7465 0.4380 +3005 7507 0.4790 +3005 7520 0.6520 +3005 7528 0.4890 +3005 7837 0.4190 +3005 7884 0.4140 +3005 7913 0.4890 +3005 8019 0.4160 +3005 8148 0.4560 +3005 8290 0.8130 +3005 8294 0.9010 +3005 8317 0.4900 +3005 8329 0.5040 +3005 8331 0.4440 +3005 8335 0.8450 +3005 8336 0.4860 +3005 8337 0.9950 +3005 8338 0.9950 +3005 8340 0.5960 +3005 8341 0.5970 +3005 8342 0.9150 +3005 8345 0.6530 +3005 8347 0.6190 +3005 8348 0.6250 +3005 8349 0.9960 +3005 8350 0.9150 +3005 8351 0.8680 +3005 8352 0.9180 +3005 8353 0.9220 +3005 8354 0.8660 +3005 8355 0.8620 +3005 8356 0.9600 +3005 8357 0.8680 +3005 8358 0.8600 +3005 8359 0.9010 +3005 8360 0.9000 +3005 8361 0.9740 +3005 8362 0.9000 +3005 8363 0.9000 +3005 8364 0.9020 +3005 8366 0.9000 +3005 8367 0.9020 +3005 8368 0.9020 +3005 8369 0.7840 +3005 8370 0.9040 +3005 8467 0.6090 +3005 8484 0.5270 +3005 8505 0.6440 +3005 8664 0.4280 +3005 8726 0.4950 +3005 8815 0.6360 +3005 8850 0.4890 +3005 8900 0.6440 +3005 8968 0.8630 +3005 8970 0.9200 +3005 8971 0.7230 +3005 9025 0.5470 +3005 9031 0.4150 +3005 9189 0.7080 +3005 9212 0.5620 +3005 9271 0.5690 +3005 9324 0.5060 +3005 9555 0.6100 +3005 9584 0.4370 +3005 9656 0.6130 +3005 9874 0.5480 +3005 10038 0.5430 +3005 10376 0.4940 +3005 10524 0.4330 +3005 10526 0.4560 +3005 10527 0.8080 +3005 10664 0.4640 +3005 10919 0.4110 +3005 10940 0.4970 +3005 10951 0.4840 +3005 11011 0.6170 +3005 11198 0.4500 +3005 11200 0.4480 +3005 11335 0.4810 +3005 23225 0.4130 +3005 23411 0.6860 +3005 23464 0.6550 +3005 23468 0.7490 +3005 23476 0.6660 +3005 23512 0.4410 +3005 23523 0.5520 +3005 23569 0.4160 +3005 24137 0.4510 +3005 25842 0.6960 +3005 29855 0.5820 +3005 50809 0.4610 +3005 54145 0.5950 +3005 54205 0.5480 +3005 54969 0.4990 +3005 55010 0.5200 +3005 55506 0.5740 +3005 55766 0.4450 +3005 56647 0.4970 +3005 57018 0.4920 +3005 57634 0.5450 +3005 57680 0.4280 +3005 79366 0.6450 +3005 79711 0.4780 +3005 79727 0.5650 +3005 81669 0.8260 +3005 83697 0.5530 +3005 84662 0.4100 +3005 84823 0.5620 +3005 84875 0.5480 +3005 85236 0.9160 +3005 85417 0.6240 +3005 92815 0.4500 +3005 94239 0.6540 +3005 114803 0.5580 +3005 116447 0.5270 +3005 121504 0.9060 +3005 126961 0.9010 +3005 128312 0.6880 +3005 132243 0.8030 +3005 133482 0.7060 +3005 137902 0.4190 +3005 143689 0.5640 +3005 158983 0.6140 +3005 165918 0.9630 +3005 255626 0.6440 +3005 286436 0.5940 +3005 317772 0.9070 +3005 333932 0.8490 +3005 340096 0.5110 +3005 341567 0.8130 +3005 387893 0.4350 +3005 391769 0.5290 +3005 440093 0.7850 +3005 440686 0.7840 +3005 440689 0.5970 +3005 474381 0.6250 +3005 474382 0.5450 +3005 554313 0.9010 +3005 653604 0.9640 +3005 728642 0.5420 +3005 114483833 0.5950 +3006 3007 0.8280 +3006 3008 0.8260 +3006 3009 0.7040 +3006 3010 0.5470 +3006 3012 0.8280 +3006 3013 0.6760 +3006 3014 0.5420 +3006 3015 0.6440 +3006 3017 0.8900 +3006 3018 0.6600 +3006 3021 0.5260 +3006 3024 0.6810 +3006 3146 0.5780 +3006 3148 0.6070 +3006 3190 0.4950 +3006 3192 0.4490 +3006 3276 0.4460 +3006 3312 0.4990 +3006 3320 0.4660 +3006 3326 0.4740 +3006 3837 0.5040 +3006 3857 0.4200 +3006 4001 0.7250 +3006 4116 0.6050 +3006 4137 0.6610 +3006 4691 0.6530 +3006 4869 0.6940 +3006 4904 0.7100 +3006 5052 0.4030 +3006 5757 0.5420 +3006 5790 0.4170 +3006 5925 0.4190 +3006 6373 0.4010 +3006 6622 0.6330 +3006 7150 0.5750 +3006 7157 0.6250 +3006 7175 0.4490 +3006 7290 0.5110 +3006 7295 0.4130 +3006 7431 0.4260 +3006 7473 0.6390 +3006 7532 0.4140 +3006 7534 0.4700 +3006 7570 0.5950 +3006 7913 0.4400 +3006 8085 0.4530 +3006 8290 0.5600 +3006 8294 0.6470 +3006 8329 0.6520 +3006 8330 0.4050 +3006 8331 0.4610 +3006 8334 0.8700 +3006 8335 0.4040 +3006 8336 0.6850 +3006 8337 0.9530 +3006 8338 0.8140 +3006 8339 0.6780 +3006 8340 0.5030 +3006 8341 0.4770 +3006 8342 0.5010 +3006 8343 0.7970 +3006 8344 0.7170 +3006 8345 0.7920 +3006 8346 0.6870 +3006 8347 0.8770 +3006 8348 0.6070 +3006 8349 0.9280 +3006 8350 0.6180 +3006 8351 0.7820 +3006 8352 0.7340 +3006 8353 0.7170 +3006 8354 0.5050 +3006 8355 0.5570 +3006 8356 0.5890 +3006 8357 0.6950 +3006 8358 0.6080 +3006 8359 0.6490 +3006 8360 0.7030 +3006 8361 0.8310 +3006 8362 0.6510 +3006 8363 0.7100 +3006 8364 0.6870 +3006 8366 0.7090 +3006 8367 0.7270 +3006 8368 0.6630 +3006 8369 0.5140 +3006 8370 0.6970 +3006 8451 0.6600 +3006 8968 0.5940 +3006 8969 0.4290 +3006 8970 0.5980 +3006 8971 0.4140 +3006 9555 0.4500 +3006 9584 0.5850 +3006 9775 0.6140 +3006 9978 0.4110 +3006 10919 0.5200 +3006 11091 0.7150 +3006 11221 0.4210 +3006 23284 0.4140 +3006 23466 0.4320 +3006 23476 0.6350 +3006 23523 0.4990 +3006 25809 0.4460 +3006 25828 0.4010 +3006 25842 0.5880 +3006 29855 0.5090 +3006 51574 0.6670 +3006 54145 0.4260 +3006 57634 0.6330 +3006 64324 0.4140 +3006 79577 0.4220 +3006 85236 0.8760 +3006 121504 0.6960 +3006 126961 0.6710 +3006 128312 0.4480 +3006 132243 0.7520 +3006 165918 0.6300 +3006 246744 0.7230 +3006 255626 0.4160 +3006 284058 0.5800 +3006 317772 0.5890 +3006 341567 0.7540 +3006 440093 0.4730 +3006 440686 0.4750 +3006 440689 0.4870 +3006 474381 0.4230 +3006 554313 0.6830 +3006 653604 0.5740 +3006 723790 0.4760 +3006 104909134 0.6040 +3007 3008 0.9500 +3007 3009 0.9110 +3007 3010 0.4990 +3007 3012 0.5480 +3007 3013 0.5600 +3007 3015 0.5300 +3007 3017 0.5300 +3007 3018 0.5250 +3007 3021 0.4500 +3007 3024 0.7310 +3007 3077 0.4220 +3007 3146 0.5590 +3007 3148 0.6170 +3007 3149 0.4710 +3007 4001 0.5480 +3007 4691 0.5100 +3007 5925 0.4140 +3007 7157 0.5680 +3007 7290 0.4990 +3007 8019 0.4120 +3007 8290 0.4270 +3007 8294 0.6480 +3007 8329 0.6360 +3007 8330 0.4600 +3007 8331 0.5510 +3007 8332 0.5020 +3007 8334 0.4280 +3007 8335 0.4480 +3007 8336 0.6200 +3007 8337 0.8100 +3007 8338 0.8260 +3007 8339 0.5430 +3007 8340 0.4340 +3007 8342 0.5280 +3007 8343 0.5770 +3007 8344 0.4290 +3007 8345 0.6390 +3007 8346 0.5570 +3007 8347 0.5170 +3007 8348 0.5210 +3007 8349 0.8220 +3007 8350 0.5390 +3007 8351 0.4710 +3007 8352 0.6030 +3007 8353 0.5460 +3007 8354 0.5520 +3007 8355 0.4450 +3007 8356 0.5750 +3007 8357 0.4100 +3007 8358 0.6070 +3007 8359 0.6640 +3007 8360 0.7040 +3007 8361 0.6330 +3007 8362 0.6440 +3007 8363 0.7180 +3007 8364 0.7450 +3007 8366 0.7710 +3007 8367 0.7760 +3007 8368 0.7140 +3007 8369 0.4790 +3007 8370 0.6490 +3007 8968 0.5480 +3007 8971 0.5860 +3007 23284 0.4120 +3007 23523 0.4990 +3007 25842 0.5710 +3007 27068 0.4260 +3007 29855 0.5000 +3007 51574 0.4780 +3007 56829 0.4540 +3007 57109 0.4310 +3007 57634 0.4270 +3007 79366 0.4020 +3007 80011 0.4620 +3007 84640 0.4430 +3007 85235 0.5150 +3007 85236 0.4450 +3007 121504 0.7190 +3007 126961 0.5480 +3007 132243 0.7520 +3007 317772 0.4400 +3007 341567 0.7620 +3007 389114 0.5320 +3007 440093 0.4060 +3007 440686 0.4100 +3007 554313 0.6680 +3007 653604 0.5350 +3008 3009 0.8810 +3008 3010 0.6380 +3008 3012 0.9130 +3008 3013 0.5620 +3008 3015 0.5350 +3008 3017 0.5610 +3008 3018 0.6150 +3008 3021 0.5250 +3008 3024 0.5180 +3008 3146 0.5500 +3008 3148 0.5670 +3008 3848 0.4100 +3008 4001 0.5130 +3008 4487 0.7250 +3008 4691 0.5320 +3008 4904 0.4350 +3008 5595 0.4110 +3008 5790 0.4600 +3008 5925 0.4050 +3008 6187 0.5830 +3008 6194 0.5150 +3008 6223 0.4190 +3008 6426 0.4410 +3008 7157 0.5660 +3008 7290 0.5330 +3008 8085 0.4080 +3008 8290 0.5880 +3008 8294 0.9300 +3008 8329 0.7610 +3008 8330 0.5580 +3008 8331 0.7210 +3008 8332 0.5730 +3008 8335 0.9040 +3008 8336 0.6530 +3008 8337 0.7620 +3008 8338 0.8090 +3008 8339 0.5620 +3008 8340 0.4850 +3008 8341 0.4780 +3008 8342 0.6670 +3008 8343 0.6780 +3008 8344 0.5560 +3008 8345 0.5720 +3008 8346 0.6730 +3008 8347 0.5430 +3008 8348 0.5740 +3008 8349 0.8180 +3008 8350 0.9310 +3008 8351 0.8960 +3008 8352 0.9140 +3008 8353 0.8950 +3008 8354 0.9150 +3008 8355 0.8860 +3008 8356 0.9440 +3008 8357 0.8600 +3008 8358 0.9280 +3008 8359 0.9290 +3008 8360 0.9440 +3008 8361 0.9680 +3008 8362 0.9250 +3008 8363 0.9430 +3008 8364 0.9460 +3008 8366 0.9630 +3008 8367 0.9630 +3008 8368 0.9460 +3008 8369 0.6190 +3008 8370 0.9220 +3008 8968 0.8970 +3008 8969 0.4740 +3008 8970 0.8750 +3008 9212 0.4940 +3008 9555 0.4150 +3008 9682 0.9520 +3008 10919 0.6640 +3008 10969 0.4190 +3008 11103 0.4060 +3008 11335 0.9830 +3008 23411 0.5110 +3008 23468 0.7270 +3008 23523 0.5260 +3008 25842 0.5390 +3008 26013 0.8330 +3008 29855 0.5040 +3008 51574 0.6070 +3008 55031 0.4140 +3008 55693 0.5000 +3008 57634 0.4380 +3008 84458 0.4350 +3008 85235 0.5520 +3008 85236 0.9270 +3008 92815 0.5510 +3008 94239 0.4130 +3008 117159 0.4140 +3008 121504 0.9340 +3008 126961 0.8930 +3008 132243 0.7480 +3008 255626 0.5840 +3008 317772 0.5090 +3008 333932 0.8490 +3008 341567 0.8940 +3008 440093 0.5070 +3008 440686 0.5010 +3008 554313 0.9280 +3008 653604 0.9180 +3009 3012 0.7510 +3009 3015 0.5040 +3009 3017 0.6730 +3009 3018 0.6150 +3009 3021 0.4330 +3009 3024 0.9450 +3009 3146 0.5520 +3009 3148 0.5910 +3009 3159 0.5360 +3009 3725 0.4160 +3009 3930 0.4010 +3009 4001 0.4820 +3009 4008 0.4550 +3009 4009 0.4240 +3009 4487 0.9850 +3009 4618 0.4480 +3009 4654 0.5480 +3009 4869 0.4430 +3009 4904 0.4190 +3009 5578 0.5120 +3009 5580 0.5250 +3009 5925 0.4050 +3009 6228 0.5160 +3009 6373 0.4480 +3009 7155 0.4240 +3009 7157 0.5060 +3009 7290 0.5470 +3009 8290 0.5260 +3009 8294 0.8140 +3009 8329 0.8940 +3009 8330 0.4020 +3009 8331 0.7860 +3009 8332 0.5140 +3009 8335 0.6240 +3009 8336 0.8230 +3009 8337 0.9910 +3009 8338 0.9910 +3009 8339 0.4570 +3009 8340 0.5650 +3009 8341 0.4840 +3009 8342 0.7000 +3009 8343 0.4150 +3009 8344 0.6170 +3009 8345 0.5590 +3009 8346 0.5970 +3009 8347 0.6800 +3009 8348 0.5740 +3009 8349 0.9820 +3009 8350 0.6510 +3009 8351 0.4520 +3009 8352 0.6100 +3009 8353 0.4530 +3009 8354 0.7620 +3009 8355 0.5840 +3009 8356 0.5990 +3009 8357 0.4230 +3009 8358 0.7590 +3009 8359 0.7770 +3009 8360 0.8560 +3009 8361 0.8510 +3009 8362 0.7740 +3009 8363 0.8280 +3009 8364 0.8100 +3009 8366 0.8850 +3009 8367 0.8430 +3009 8368 0.8850 +3009 8369 0.4940 +3009 8370 0.7550 +3009 8900 0.5640 +3009 8968 0.5740 +3009 8971 0.4410 +3009 9229 0.4240 +3009 9271 0.4050 +3009 9456 0.4850 +3009 9495 0.4840 +3009 10467 0.4990 +3009 11335 0.8210 +3009 22938 0.4090 +3009 23284 0.4180 +3009 23468 0.4930 +3009 23523 0.4990 +3009 25842 0.5300 +3009 26013 0.7280 +3009 26578 0.4350 +3009 29855 0.5000 +3009 50943 0.6300 +3009 50944 0.4380 +3009 54969 0.5330 +3009 57332 0.4220 +3009 57634 0.4240 +3009 85235 0.5390 +3009 85236 0.4530 +3009 92815 0.5220 +3009 94239 0.4080 +3009 121504 0.8010 +3009 126961 0.5250 +3009 132243 0.8590 +3009 143689 0.4590 +3009 221613 0.7010 +3009 317772 0.6270 +3009 341567 0.8910 +3009 440093 0.4230 +3009 440686 0.4280 +3009 440689 0.4380 +3009 554313 0.7920 +3009 653604 0.5460 +3010 3012 0.4270 +3010 3013 0.4430 +3010 3014 0.4660 +3010 3015 0.4560 +3010 3021 0.4090 +3010 3149 0.4440 +3010 3308 0.4400 +3010 3857 0.4160 +3010 4438 0.4410 +3010 4676 0.5520 +3010 4678 0.7960 +3010 4691 0.4200 +3010 5790 0.4420 +3010 5990 0.4470 +3010 6187 0.5510 +3010 6188 0.6190 +3010 6193 0.5700 +3010 6194 0.4410 +3010 6204 0.4540 +3010 6224 0.6060 +3010 6231 0.5440 +3010 6234 0.5290 +3010 6847 0.6220 +3010 7141 0.4180 +3010 7142 0.5420 +3010 7399 0.4360 +3010 7884 0.7400 +3010 8209 0.5130 +3010 8290 0.6730 +3010 8294 0.5460 +3010 8330 0.4220 +3010 8334 0.4320 +3010 8336 0.4630 +3010 8337 0.5450 +3010 8338 0.5550 +3010 8339 0.4100 +3010 8343 0.4670 +3010 8344 0.4290 +3010 8346 0.4860 +3010 8349 0.5920 +3010 8352 0.4420 +3010 8353 0.4040 +3010 8356 0.4420 +3010 8359 0.5650 +3010 8360 0.6170 +3010 8361 0.7290 +3010 8362 0.5620 +3010 8363 0.5720 +3010 8364 0.6090 +3010 8366 0.5870 +3010 8367 0.6010 +3010 8368 0.5860 +3010 8369 0.6050 +3010 8370 0.5320 +3010 8662 0.4070 +3010 8664 0.4760 +3010 8971 0.9040 +3010 9495 0.4800 +3010 10209 0.4750 +3010 11103 0.4510 +3010 23626 0.5340 +3010 50511 0.6980 +3010 51574 0.4550 +3010 54505 0.6530 +3010 55031 0.4290 +3010 55573 0.5060 +3010 55766 0.5210 +3010 56654 0.4200 +3010 65095 0.4200 +3010 80011 0.4500 +3010 84072 0.4500 +3010 117159 0.4200 +3010 121504 0.5780 +3010 126961 0.4410 +3010 132243 0.9790 +3010 221613 0.5340 +3010 222229 0.4110 +3010 255626 0.7240 +3010 341567 0.9550 +3010 440093 0.4210 +3010 440686 0.4120 +3010 474381 0.5210 +3010 474382 0.4550 +3010 554313 0.5810 +3012 3013 0.7780 +3012 3014 0.6030 +3012 3015 0.8410 +3012 3017 0.9770 +3012 3018 0.9940 +3012 3020 0.9600 +3012 3021 0.9860 +3012 3024 0.8120 +3012 3054 0.4240 +3012 3065 0.7860 +3012 3066 0.6860 +3012 3169 0.5110 +3012 3184 0.5230 +3012 3198 0.4990 +3012 3199 0.4990 +3012 3200 0.4990 +3012 3201 0.4990 +3012 3211 0.4990 +3012 3212 0.4990 +3012 3213 0.4990 +3012 3214 0.4990 +3012 3221 0.4990 +3012 3231 0.4990 +3012 3232 0.4990 +3012 3233 0.4990 +3012 3276 0.5350 +3012 3306 0.5590 +3012 3607 0.4080 +3012 3674 0.5100 +3012 3720 0.6380 +3012 3725 0.5500 +3012 3727 0.4990 +3012 3817 0.4990 +3012 3838 0.5000 +3012 4171 0.6320 +3012 4173 0.4480 +3012 4175 0.4370 +3012 4297 0.9650 +3012 4343 0.5180 +3012 4361 0.5460 +3012 4591 0.5350 +3012 4602 0.5040 +3012 4609 0.4700 +3012 4673 0.5810 +3012 4676 0.7060 +3012 4683 0.5130 +3012 4796 0.5600 +3012 4998 0.6040 +3012 4999 0.5200 +3012 5000 0.5110 +3012 5001 0.5110 +3012 5252 0.4990 +3012 5347 0.5210 +3012 5371 0.5260 +3012 5431 0.9250 +3012 5432 0.9270 +3012 5433 0.9260 +3012 5434 0.9240 +3012 5435 0.9240 +3012 5436 0.9240 +3012 5437 0.9250 +3012 5438 0.9280 +3012 5439 0.9190 +3012 5440 0.9240 +3012 5441 0.9240 +3012 5451 0.6300 +3012 5460 0.8110 +3012 5478 0.6540 +3012 5496 0.6250 +3012 5585 0.5050 +3012 5600 0.4990 +3012 5885 0.5500 +3012 5887 0.4140 +3012 5901 0.5150 +3012 5914 0.4990 +3012 5915 0.4990 +3012 5916 0.4990 +3012 5925 0.5100 +3012 5926 0.4900 +3012 5928 0.6210 +3012 5929 0.9430 +3012 5931 0.6300 +3012 5978 0.4340 +3012 6015 0.8260 +3012 6045 0.9160 +3012 6233 0.9660 +3012 6256 0.4990 +3012 6314 0.5450 +3012 6596 0.4270 +3012 6598 0.4760 +3012 6657 0.8110 +3012 6664 0.8010 +3012 6688 0.4990 +3012 6749 0.5590 +3012 6827 0.8600 +3012 6829 0.8700 +3012 6830 0.8630 +3012 6839 0.5630 +3012 6847 0.5560 +3012 6881 0.4990 +3012 6886 0.5010 +3012 6907 0.4160 +3012 6908 0.5150 +3012 6917 0.8250 +3012 6932 0.4990 +3012 6934 0.4990 +3012 6944 0.4490 +3012 7013 0.5070 +3012 7014 0.6360 +3012 7015 0.8050 +3012 7057 0.4280 +3012 7153 0.4300 +3012 7157 0.8600 +3012 7158 0.5240 +3012 7270 0.5150 +3012 7311 0.9630 +3012 7314 0.9590 +3012 7316 0.9670 +3012 7317 0.4610 +3012 7329 0.5150 +3012 7343 0.4950 +3012 7403 0.6920 +3012 7404 0.4030 +3012 7468 0.9150 +3012 7520 0.4360 +3012 7528 0.5310 +3012 7703 0.5150 +3012 7764 0.5300 +3012 7867 0.4990 +3012 7913 0.5470 +3012 8085 0.6130 +3012 8089 0.4150 +3012 8202 0.5040 +3012 8243 0.5380 +3012 8290 0.9880 +3012 8294 0.9910 +3012 8295 0.5810 +3012 8314 0.7040 +3012 8329 0.9690 +3012 8330 0.9310 +3012 8331 0.9660 +3012 8332 0.9230 +3012 8334 0.9670 +3012 8335 0.9670 +3012 8336 0.9780 +3012 8337 0.7750 +3012 8338 0.5940 +3012 8339 0.8780 +3012 8340 0.7670 +3012 8341 0.8410 +3012 8342 0.9030 +3012 8343 0.9390 +3012 8344 0.7470 +3012 8345 0.9490 +3012 8346 0.8850 +3012 8347 0.9340 +3012 8348 0.9850 +3012 8349 0.9980 +3012 8350 0.9850 +3012 8351 0.9950 +3012 8352 0.9910 +3012 8353 0.9890 +3012 8354 0.9750 +3012 8355 0.9800 +3012 8356 0.9980 +3012 8357 0.9930 +3012 8358 0.9800 +3012 8359 0.9910 +3012 8360 0.9930 +3012 8361 0.9990 +3012 8362 0.9900 +3012 8363 0.9920 +3012 8364 0.9900 +3012 8366 0.9920 +3012 8367 0.9960 +3012 8368 0.9920 +3012 8369 0.5650 +3012 8370 0.9940 +3012 8467 0.9480 +3012 8468 0.5490 +3012 8535 0.6390 +3012 8607 0.9310 +3012 8726 0.6150 +3012 8819 0.5000 +3012 8841 0.6860 +3012 8850 0.8280 +3012 8932 0.5000 +3012 8968 0.9880 +3012 8969 0.9540 +3012 8970 0.9970 +3012 8971 0.8980 +3012 9031 0.4400 +3012 9070 0.9230 +3012 9112 0.5010 +3012 9126 0.5510 +3012 9131 0.6520 +3012 9188 0.6040 +3012 9219 0.5010 +3012 9261 0.4990 +3012 9533 0.5570 +3012 9555 0.9530 +3012 9557 0.9150 +3012 9577 0.5230 +3012 9611 0.5060 +3012 9612 0.4080 +3012 9646 0.8460 +3012 9687 0.4990 +3012 9734 0.6890 +3012 9739 0.5140 +3012 9759 0.6890 +3012 9935 0.4990 +3012 9960 0.6580 +3012 9985 0.5400 +3012 10013 0.6890 +3012 10014 0.6890 +3012 10038 0.6500 +3012 10051 0.5420 +3012 10111 0.5130 +3012 10112 0.5140 +3012 10155 0.4350 +3012 10274 0.5220 +3012 10284 0.5570 +3012 10362 0.4990 +3012 10363 0.4040 +3012 10388 0.4990 +3012 10419 0.7770 +3012 10474 0.5020 +3012 10514 0.5730 +3012 10524 0.6720 +3012 10526 0.5050 +3012 10592 0.5310 +3012 10600 0.6300 +3012 10664 0.6860 +3012 10734 0.5220 +3012 10735 0.5220 +3012 10856 0.9140 +3012 10902 0.4530 +3012 10919 0.5700 +3012 10933 0.4290 +3012 10951 0.7810 +3012 11083 0.6130 +3012 11091 0.9130 +3012 11103 0.4140 +3012 11168 0.8130 +3012 11176 0.5330 +3012 11198 0.7820 +3012 11335 0.6030 +3012 22823 0.4990 +3012 22955 0.4990 +3012 22976 0.6170 +3012 23028 0.6500 +3012 23030 0.4990 +3012 23054 0.4990 +3012 23081 0.4990 +3012 23112 0.5040 +3012 23133 0.5020 +3012 23135 0.6870 +3012 23168 0.8480 +3012 23186 0.4600 +3012 23309 0.5360 +3012 23310 0.5010 +3012 23326 0.6670 +3012 23378 0.5170 +3012 23411 0.5430 +3012 23466 0.6390 +3012 23476 0.5540 +3012 23512 0.9320 +3012 23595 0.6440 +3012 23626 0.5130 +3012 25855 0.4010 +3012 25885 0.5850 +3012 25913 0.4990 +3012 25942 0.5360 +3012 26108 0.5440 +3012 26147 0.5010 +3012 26277 0.5280 +3012 26523 0.4990 +3012 27005 0.5040 +3012 27043 0.4030 +3012 27127 0.5380 +3012 27161 0.6330 +3012 27327 0.4990 +3012 29086 0.5050 +3012 29115 0.5070 +3012 29128 0.5420 +3012 29781 0.4990 +3012 29947 0.5280 +3012 30834 0.4960 +3012 50511 0.5410 +3012 51082 0.4040 +3012 51176 0.4990 +3012 51317 0.4630 +3012 51548 0.5330 +3012 51564 0.6890 +3012 51574 0.6010 +3012 51616 0.5040 +3012 51720 0.4990 +3012 51742 0.5750 +3012 53615 0.5000 +3012 54145 0.7400 +3012 54386 0.5330 +3012 54556 0.4630 +3012 54617 0.8680 +3012 54623 0.8360 +3012 54815 0.5050 +3012 54892 0.4990 +3012 54904 0.9130 +3012 54969 0.6620 +3012 55170 0.5350 +3012 55193 0.4700 +3012 55247 0.5250 +3012 55252 0.4150 +3012 55257 0.4110 +3012 55705 0.9220 +3012 55766 0.5150 +3012 55777 0.4530 +3012 55869 0.6940 +3012 55929 0.4740 +3012 56158 0.4990 +3012 56852 0.4550 +3012 56979 0.5290 +3012 57332 0.7660 +3012 57459 0.5050 +3012 57504 0.5010 +3012 57634 0.5550 +3012 58508 0.9170 +3012 64425 0.4180 +3012 64426 0.4990 +3012 64769 0.4910 +3012 79084 0.4030 +3012 79101 0.4010 +3012 79184 0.4990 +3012 79447 0.4990 +3012 79577 0.8470 +3012 79595 0.4990 +3012 79685 0.5000 +3012 79718 0.4030 +3012 79813 0.4770 +3012 79885 0.6860 +3012 79913 0.9590 +3012 80012 0.4990 +3012 80205 0.4090 +3012 80314 0.5150 +3012 80349 0.8000 +3012 83439 0.4990 +3012 83444 0.8150 +3012 83933 0.6890 +3012 84142 0.5030 +3012 84172 0.5440 +3012 84196 0.5150 +3012 84444 0.9190 +3012 84450 0.4360 +3012 84656 0.6480 +3012 84661 0.8530 +3012 84733 0.6390 +3012 84759 0.5170 +3012 84962 0.4990 +3012 85235 0.9520 +3012 85236 0.9920 +3012 90780 0.5550 +3012 92815 0.6700 +3012 93426 0.4990 +3012 93624 0.5390 +3012 94239 0.6160 +3012 114785 0.4530 +3012 114803 0.6860 +3012 115004 0.9050 +3012 121504 0.9900 +3012 121536 0.6340 +3012 123169 0.8640 +3012 126961 0.9810 +3012 128312 0.9710 +3012 158983 0.4700 +3012 165918 0.8340 +3012 171023 0.4500 +3012 192669 0.5160 +3012 192670 0.6300 +3012 221613 0.4140 +3012 221656 0.5050 +3012 221937 0.4080 +3012 255626 0.9710 +3012 256126 0.5010 +3012 283149 0.5190 +3012 286436 0.4640 +3012 317772 0.6830 +3012 333932 0.9650 +3012 387893 0.9440 +3012 391769 0.9340 +3012 440093 0.9420 +3012 440686 0.4620 +3012 440689 0.7810 +3012 474382 0.4970 +3012 554313 0.9900 +3012 644186 0.5200 +3012 653604 0.9910 +3012 114483833 0.4590 +3013 3014 0.4170 +3013 3015 0.6170 +3013 3017 0.9830 +3013 3018 0.9850 +3013 3020 0.9240 +3013 3021 0.9560 +3013 3065 0.6860 +3013 3066 0.7030 +3013 3169 0.5100 +3013 3198 0.4990 +3013 3199 0.4990 +3013 3200 0.4990 +3013 3201 0.4990 +3013 3211 0.4990 +3013 3212 0.4990 +3013 3213 0.4990 +3013 3214 0.4990 +3013 3221 0.4990 +3013 3231 0.4990 +3013 3232 0.4990 +3013 3233 0.4990 +3013 3276 0.5350 +3013 3306 0.5300 +3013 3607 0.4080 +3013 3674 0.5020 +3013 3720 0.6350 +3013 3725 0.5540 +3013 3727 0.4990 +3013 3817 0.4990 +3013 3838 0.5150 +3013 4116 0.6000 +3013 4297 0.5530 +3013 4343 0.5000 +3013 4361 0.5460 +3013 4602 0.5030 +3013 4609 0.4110 +3013 4683 0.5140 +3013 4998 0.6040 +3013 4999 0.5200 +3013 5000 0.5120 +3013 5001 0.5120 +3013 5252 0.4990 +3013 5347 0.5080 +3013 5371 0.5330 +3013 5431 0.6410 +3013 5432 0.6530 +3013 5433 0.6360 +3013 5434 0.6380 +3013 5435 0.6360 +3013 5436 0.6360 +3013 5437 0.6410 +3013 5438 0.6480 +3013 5439 0.6200 +3013 5440 0.6410 +3013 5441 0.6390 +3013 5451 0.4990 +3013 5478 0.6540 +3013 5585 0.5050 +3013 5600 0.4990 +3013 5885 0.5570 +3013 5901 0.5150 +3013 5914 0.5000 +3013 5915 0.4990 +3013 5916 0.4990 +3013 5925 0.5100 +3013 5926 0.4920 +3013 5928 0.6210 +3013 5929 0.6340 +3013 5931 0.6390 +3013 5978 0.4350 +3013 6015 0.5430 +3013 6045 0.5430 +3013 6233 0.6340 +3013 6256 0.4990 +3013 6314 0.5470 +3013 6688 0.5100 +3013 6839 0.5630 +3013 6847 0.5450 +3013 6881 0.4990 +3013 6886 0.4990 +3013 6907 0.4030 +3013 6908 0.5040 +3013 6932 0.4990 +3013 6934 0.4990 +3013 6944 0.4480 +3013 7013 0.5070 +3013 7014 0.5070 +3013 7057 0.4280 +3013 7270 0.5150 +3013 7311 0.6180 +3013 7314 0.5710 +3013 7316 0.5750 +3013 7329 0.5150 +3013 7343 0.4950 +3013 7403 0.6920 +3013 7528 0.5360 +3013 7703 0.5150 +3013 7764 0.5290 +3013 7867 0.4990 +3013 7913 0.5150 +3013 8085 0.6020 +3013 8089 0.4150 +3013 8202 0.5330 +3013 8243 0.5380 +3013 8290 0.6890 +3013 8294 0.9490 +3013 8295 0.5810 +3013 8314 0.4210 +3013 8329 0.8540 +3013 8330 0.4310 +3013 8331 0.7110 +3013 8334 0.6400 +3013 8335 0.4400 +3013 8336 0.6700 +3013 8337 0.6710 +3013 8338 0.4920 +3013 8339 0.9640 +3013 8340 0.7440 +3013 8341 0.9740 +3013 8342 0.9760 +3013 8343 0.9860 +3013 8344 0.9710 +3013 8345 0.9910 +3013 8346 0.9860 +3013 8347 0.9870 +3013 8348 0.9920 +3013 8349 0.9850 +3013 8350 0.9490 +3013 8351 0.9920 +3013 8352 0.9600 +3013 8353 0.9380 +3013 8354 0.9460 +3013 8355 0.9530 +3013 8356 0.9780 +3013 8357 0.9550 +3013 8358 0.9500 +3013 8359 0.9410 +3013 8360 0.9660 +3013 8361 0.9830 +3013 8362 0.9440 +3013 8363 0.9560 +3013 8364 0.9410 +3013 8366 0.9570 +3013 8367 0.9660 +3013 8368 0.9410 +3013 8369 0.5110 +3013 8370 0.9590 +3013 8467 0.6540 +3013 8468 0.5490 +3013 8535 0.5120 +3013 8607 0.6500 +3013 8726 0.6100 +3013 8819 0.5060 +3013 8841 0.7010 +3013 8850 0.5550 +3013 8932 0.5000 +3013 8968 0.9540 +3013 8970 0.7610 +3013 9031 0.4400 +3013 9070 0.6320 +3013 9112 0.5010 +3013 9126 0.5970 +3013 9131 0.6520 +3013 9188 0.4330 +3013 9219 0.5010 +3013 9261 0.5010 +3013 9533 0.5570 +3013 9577 0.5230 +3013 9611 0.5060 +3013 9612 0.4080 +3013 9687 0.4990 +3013 9734 0.6890 +3013 9759 0.6890 +3013 9775 0.6140 +3013 9935 0.5000 +3013 9960 0.5370 +3013 9985 0.5400 +3013 10013 0.6890 +3013 10014 0.6890 +3013 10051 0.5440 +3013 10111 0.5130 +3013 10155 0.4340 +3013 10274 0.5220 +3013 10284 0.5380 +3013 10362 0.4980 +3013 10388 0.4990 +3013 10419 0.4330 +3013 10474 0.5050 +3013 10524 0.5630 +3013 10526 0.5050 +3013 10592 0.6030 +3013 10600 0.4990 +3013 10664 0.5280 +3013 10734 0.5220 +3013 10735 0.5220 +3013 10856 0.5890 +3013 10902 0.4530 +3013 10919 0.5640 +3013 10933 0.4290 +3013 10951 0.6540 +3013 11083 0.6130 +3013 11091 0.5800 +3013 11176 0.5350 +3013 11198 0.4920 +3013 11335 0.6530 +3013 22823 0.5000 +3013 22955 0.4990 +3013 22976 0.6040 +3013 23028 0.5920 +3013 23030 0.5040 +3013 23054 0.5350 +3013 23077 0.4240 +3013 23081 0.4990 +3013 23112 0.5040 +3013 23133 0.5020 +3013 23135 0.6870 +3013 23186 0.4610 +3013 23309 0.5360 +3013 23310 0.5010 +3013 23326 0.5500 +3013 23378 0.5170 +3013 23411 0.5430 +3013 23451 0.4050 +3013 23466 0.5110 +3013 23512 0.5490 +3013 23595 0.5180 +3013 23626 0.5130 +3013 25855 0.4010 +3013 25885 0.4330 +3013 25913 0.4990 +3013 25942 0.5360 +3013 26108 0.5440 +3013 26147 0.5010 +3013 26277 0.5280 +3013 26523 0.5110 +3013 27005 0.4990 +3013 27127 0.5380 +3013 27161 0.4990 +3013 27327 0.4990 +3013 29072 0.9320 +3013 29086 0.5050 +3013 29115 0.5070 +3013 29128 0.5320 +3013 29781 0.5040 +3013 29947 0.5280 +3013 30834 0.4940 +3013 50511 0.5410 +3013 51176 0.5080 +3013 51317 0.4630 +3013 51548 0.5330 +3013 51564 0.6890 +3013 51574 0.5230 +3013 51616 0.5040 +3013 51720 0.4990 +3013 51742 0.5750 +3013 53615 0.5000 +3013 54145 0.6330 +3013 54386 0.5330 +3013 54556 0.4640 +3013 54815 0.5050 +3013 54892 0.4990 +3013 55170 0.5350 +3013 55247 0.4990 +3013 55252 0.4150 +3013 55257 0.4060 +3013 55766 0.4740 +3013 55777 0.4530 +3013 55869 0.6980 +3013 55929 0.4740 +3013 56158 0.4990 +3013 56979 0.5290 +3013 57332 0.5450 +3013 57459 0.5050 +3013 57504 0.5010 +3013 57634 0.5080 +3013 58508 0.6030 +3013 64425 0.4180 +3013 64426 0.4990 +3013 64769 0.4910 +3013 79084 0.4030 +3013 79101 0.4040 +3013 79184 0.4990 +3013 79447 0.4990 +3013 79595 0.4990 +3013 79685 0.5060 +3013 79718 0.4030 +3013 79813 0.4770 +3013 79885 0.6860 +3013 80012 0.5000 +3013 80314 0.5140 +3013 83439 0.4990 +3013 83933 0.6890 +3013 84142 0.5070 +3013 84172 0.5440 +3013 84733 0.5110 +3013 84962 0.4990 +3013 85235 0.5370 +3013 85236 0.7150 +3013 90780 0.5530 +3013 92815 0.4430 +3013 93426 0.4990 +3013 93624 0.5390 +3013 94239 0.6910 +3013 114785 0.4530 +3013 114803 0.5750 +3013 121504 0.9460 +3013 121536 0.6340 +3013 126961 0.5780 +3013 128312 0.6690 +3013 171023 0.4340 +3013 192669 0.5000 +3013 192670 0.5130 +3013 221613 0.4090 +3013 221656 0.4950 +3013 221937 0.4080 +3013 255626 0.9650 +3013 256126 0.5010 +3013 283149 0.4990 +3013 317772 0.5390 +3013 387893 0.4670 +3013 440689 0.9640 +3013 474382 0.4400 +3013 554313 0.9310 +3013 644186 0.5200 +3013 653604 0.6490 +3014 3015 0.7210 +3014 3017 0.8590 +3014 3018 0.8190 +3014 3021 0.9590 +3014 3065 0.8160 +3014 3066 0.8850 +3014 3070 0.5760 +3014 3091 0.5400 +3014 3135 0.4990 +3014 3169 0.6680 +3014 3178 0.6120 +3014 3184 0.5830 +3014 3198 0.4990 +3014 3199 0.4990 +3014 3200 0.4990 +3014 3201 0.4990 +3014 3211 0.5000 +3014 3212 0.4990 +3014 3213 0.4990 +3014 3214 0.4990 +3014 3221 0.4990 +3014 3231 0.4990 +3014 3232 0.4990 +3014 3233 0.4990 +3014 3276 0.7690 +3014 3304 0.4060 +3014 3306 0.5310 +3014 3309 0.4940 +3014 3320 0.5530 +3014 3364 0.5350 +3014 3553 0.5430 +3014 3608 0.5550 +3014 3674 0.5250 +3014 3720 0.6710 +3014 3725 0.6870 +3014 3727 0.5450 +3014 3817 0.4990 +3014 3838 0.5970 +3014 3978 0.4350 +3014 3980 0.6890 +3014 3981 0.6550 +3014 4000 0.6400 +3014 4001 0.4700 +3014 4170 0.4020 +3014 4171 0.4890 +3014 4172 0.4320 +3014 4173 0.5300 +3014 4175 0.5830 +3014 4176 0.4430 +3014 4193 0.6760 +3014 4288 0.4680 +3014 4292 0.8440 +3014 4297 0.5890 +3014 4298 0.4250 +3014 4332 0.4180 +3014 4343 0.5010 +3014 4361 0.9540 +3014 4436 0.7120 +3014 4438 0.6180 +3014 4439 0.5740 +3014 4602 0.5390 +3014 4609 0.7850 +3014 4641 0.4010 +3014 4673 0.8390 +3014 4683 0.9800 +3014 4691 0.4790 +3014 4738 0.5330 +3014 4796 0.4980 +3014 4841 0.4080 +3014 4869 0.6120 +3014 4968 0.4340 +3014 4998 0.6660 +3014 4999 0.5200 +3014 5000 0.5220 +3014 5001 0.5290 +3014 5230 0.6360 +3014 5241 0.4440 +3014 5252 0.5270 +3014 5315 0.4260 +3014 5347 0.7450 +3014 5371 0.7690 +3014 5423 0.6300 +3014 5431 0.6500 +3014 5432 0.6640 +3014 5433 0.6530 +3014 5434 0.6620 +3014 5435 0.6690 +3014 5436 0.6460 +3014 5437 0.6600 +3014 5438 0.6600 +3014 5439 0.6180 +3014 5440 0.6360 +3014 5441 0.6490 +3014 5451 0.5320 +3014 5478 0.9230 +3014 5496 0.6820 +3014 5501 0.6960 +3014 5515 0.4590 +3014 5531 0.4950 +3014 5536 0.4160 +3014 5585 0.5160 +3014 5591 0.9830 +3014 5599 0.9500 +3014 5600 0.5510 +3014 5700 0.5390 +3014 5725 0.4390 +3014 5728 0.5690 +3014 5883 0.7670 +3014 5884 0.6860 +3014 5885 0.6670 +3014 5887 0.6330 +3014 5888 0.9930 +3014 5889 0.6030 +3014 5893 0.7030 +3014 5896 0.4420 +3014 5901 0.5660 +3014 5914 0.5560 +3014 5915 0.5300 +3014 5916 0.5100 +3014 5925 0.6370 +3014 5928 0.6900 +3014 5929 0.6480 +3014 5931 0.7120 +3014 5932 0.9580 +3014 5982 0.5980 +3014 5984 0.5970 +3014 6015 0.7070 +3014 6045 0.8690 +3014 6046 0.4680 +3014 6047 0.5720 +3014 6117 0.7140 +3014 6118 0.7990 +3014 6119 0.6470 +3014 6128 0.6130 +3014 6204 0.4620 +3014 6233 0.9670 +3014 6256 0.5070 +3014 6418 0.4560 +3014 6594 0.6780 +3014 6595 0.7480 +3014 6597 0.8760 +3014 6598 0.5770 +3014 6599 0.5120 +3014 6601 0.5010 +3014 6602 0.4470 +3014 6603 0.4540 +3014 6605 0.4330 +3014 6613 0.6330 +3014 6648 0.4440 +3014 6651 0.4100 +3014 6688 0.5310 +3014 6742 0.6440 +3014 6749 0.8980 +3014 6774 0.5960 +3014 6790 0.6030 +3014 6829 0.5510 +3014 6830 0.4760 +3014 6839 0.7040 +3014 6847 0.6910 +3014 6886 0.5090 +3014 6908 0.5930 +3014 6932 0.5040 +3014 6934 0.4990 +3014 7013 0.6910 +3014 7014 0.8990 +3014 7015 0.4040 +3014 7057 0.4830 +3014 7150 0.7720 +3014 7153 0.6650 +3014 7155 0.4510 +3014 7156 0.5870 +3014 7157 0.8920 +3014 7158 0.9990 +3014 7270 0.5160 +3014 7298 0.4640 +3014 7311 0.9410 +3014 7314 0.9460 +3014 7316 0.9480 +3014 7329 0.7120 +3014 7334 0.7580 +3014 7336 0.6050 +3014 7341 0.6510 +3014 7343 0.5640 +3014 7398 0.5210 +3014 7403 0.7310 +3014 7443 0.4700 +3014 7465 0.5370 +3014 7468 0.6860 +3014 7486 0.8170 +3014 7507 0.4390 +3014 7508 0.6880 +3014 7515 0.7880 +3014 7517 0.4560 +3014 7518 0.7230 +3014 7520 0.9730 +3014 7528 0.6170 +3014 7531 0.5950 +3014 7534 0.4290 +3014 7703 0.5700 +3014 7764 0.5310 +3014 7837 0.5070 +3014 7867 0.5240 +3014 7874 0.6040 +3014 7913 0.5940 +3014 8085 0.6240 +3014 8091 0.4110 +3014 8202 0.5270 +3014 8237 0.5810 +3014 8243 0.8300 +3014 8289 0.4150 +3014 8290 0.9840 +3014 8294 0.9610 +3014 8295 0.7000 +3014 8314 0.5710 +3014 8318 0.7950 +3014 8331 0.4170 +3014 8334 0.4090 +3014 8337 0.4230 +3014 8338 0.6480 +3014 8339 0.4730 +3014 8340 0.7500 +3014 8341 0.7490 +3014 8342 0.8540 +3014 8343 0.4600 +3014 8344 0.4500 +3014 8345 0.8130 +3014 8346 0.5260 +3014 8347 0.8170 +3014 8348 0.8370 +3014 8349 0.9980 +3014 8350 0.9860 +3014 8351 0.9320 +3014 8352 0.9600 +3014 8353 0.9590 +3014 8354 0.9310 +3014 8355 0.9320 +3014 8356 0.9920 +3014 8357 0.9320 +3014 8358 0.9470 +3014 8359 0.9500 +3014 8360 0.9530 +3014 8361 0.9980 +3014 8362 0.9510 +3014 8363 0.9510 +3014 8364 0.9550 +3014 8366 0.9600 +3014 8367 0.9510 +3014 8368 0.9590 +3014 8369 0.7080 +3014 8370 0.9600 +3014 8438 0.4170 +3014 8451 0.4690 +3014 8467 0.8970 +3014 8468 0.5740 +3014 8493 0.7970 +3014 8535 0.5920 +3014 8607 0.8680 +3014 8653 0.6620 +3014 8726 0.6610 +3014 8819 0.5320 +3014 8841 0.7350 +3014 8850 0.7770 +3014 8900 0.7030 +3014 8914 0.4350 +3014 8924 0.5900 +3014 8932 0.6580 +3014 8968 0.9340 +3014 8970 0.9800 +3014 9013 0.4630 +3014 9014 0.4100 +3014 9015 0.4080 +3014 9025 0.9850 +3014 9031 0.9130 +3014 9055 0.4670 +3014 9070 0.6650 +3014 9112 0.6890 +3014 9126 0.7530 +3014 9131 0.7800 +3014 9156 0.7680 +3014 9188 0.6070 +3014 9203 0.4150 +3014 9212 0.5070 +3014 9219 0.7530 +3014 9261 0.5650 +3014 9319 0.4460 +3014 9401 0.6410 +3014 9493 0.4410 +3014 9533 0.5770 +3014 9555 0.4570 +3014 9557 0.6120 +3014 9611 0.5610 +3014 9656 0.9990 +3014 9678 0.6080 +3014 9682 0.6280 +3014 9687 0.6980 +3014 9734 0.7280 +3014 9739 0.4540 +3014 9759 0.7490 +3014 9774 0.9240 +3014 9935 0.4990 +3014 9985 0.6200 +3014 10013 0.7620 +3014 10014 0.7120 +3014 10036 0.5090 +3014 10038 0.7430 +3014 10051 0.6160 +3014 10075 0.4690 +3014 10105 0.4690 +3014 10111 0.9340 +3014 10112 0.4550 +3014 10155 0.6620 +3014 10189 0.4120 +3014 10210 0.5340 +3014 10236 0.5180 +3014 10274 0.5650 +3014 10284 0.5610 +3014 10288 0.4390 +3014 10293 0.5600 +3014 10388 0.5500 +3014 10419 0.5570 +3014 10459 0.5310 +3014 10514 0.4830 +3014 10524 0.9450 +3014 10526 0.5050 +3014 10592 0.5810 +3014 10605 0.4980 +3014 10664 0.7240 +3014 10734 0.5700 +3014 10735 0.5480 +3014 10847 0.4400 +3014 10849 0.4090 +3014 10856 0.6480 +3014 10859 0.4050 +3014 10919 0.7520 +3014 10951 0.5970 +3014 11065 0.4310 +3014 11073 0.5840 +3014 11083 0.6210 +3014 11091 0.6570 +3014 11144 0.6000 +3014 11176 0.6720 +3014 11177 0.5100 +3014 11198 0.9180 +3014 11200 0.9570 +3014 11335 0.7600 +3014 22823 0.5000 +3014 22955 0.5830 +3014 22976 0.9080 +3014 22992 0.5590 +3014 23028 0.6950 +3014 23030 0.5500 +3014 23054 0.4990 +3014 23081 0.5320 +3014 23112 0.5040 +3014 23133 0.5460 +3014 23135 0.7230 +3014 23186 0.4270 +3014 23309 0.5570 +3014 23310 0.5560 +3014 23378 0.5260 +3014 23411 0.8310 +3014 23451 0.4090 +3014 23466 0.5190 +3014 23468 0.5530 +3014 23512 0.7210 +3014 23595 0.5310 +3014 23626 0.7110 +3014 25836 0.4140 +3014 25885 0.4690 +3014 25913 0.5730 +3014 25942 0.7060 +3014 26108 0.5440 +3014 26147 0.5740 +3014 26277 0.6510 +3014 26523 0.5770 +3014 26986 0.5560 +3014 27000 0.4610 +3014 27030 0.5960 +3014 27127 0.6470 +3014 27161 0.5840 +3014 27327 0.5210 +3014 28992 0.4650 +3014 28996 0.4610 +3014 29072 0.4720 +3014 29089 0.4020 +3014 29115 0.5130 +3014 29128 0.7370 +3014 29781 0.5420 +3014 29893 0.4660 +3014 29947 0.5750 +3014 30827 0.4250 +3014 30834 0.5030 +3014 50511 0.7350 +3014 51176 0.5380 +3014 51548 0.6750 +3014 51564 0.7150 +3014 51588 0.6370 +3014 51720 0.9730 +3014 51742 0.6900 +3014 53615 0.6460 +3014 54145 0.8000 +3014 54205 0.4950 +3014 54386 0.6360 +3014 54443 0.4210 +3014 54514 0.7130 +3014 54617 0.4100 +3014 54815 0.6600 +3014 54856 0.6030 +3014 54892 0.5530 +3014 54962 0.5480 +3014 55135 0.6940 +3014 55143 0.4150 +3014 55170 0.5850 +3014 55183 0.5950 +3014 55193 0.5190 +3014 55215 0.4390 +3014 55247 0.5940 +3014 55352 0.4250 +3014 55723 0.4270 +3014 55766 0.4080 +3014 55775 0.4320 +3014 55869 0.7460 +3014 55929 0.6260 +3014 56154 0.4450 +3014 56158 0.5350 +3014 56254 0.5150 +3014 56852 0.4600 +3014 56943 0.4420 +3014 56979 0.7570 +3014 57332 0.6070 +3014 57379 0.5680 +3014 57459 0.6460 +3014 57504 0.6320 +3014 57634 0.7690 +3014 57680 0.4030 +3014 58508 0.6290 +3014 63967 0.4580 +3014 64421 0.6070 +3014 64425 0.4370 +3014 64426 0.5140 +3014 79084 0.4670 +3014 79101 0.4060 +3014 79184 0.6160 +3014 79447 0.5440 +3014 79595 0.6500 +3014 79648 0.8210 +3014 79685 0.4990 +3014 79728 0.8640 +3014 79813 0.5260 +3014 79840 0.7800 +3014 79885 0.7430 +3014 79913 0.4460 +3014 79991 0.5380 +3014 80012 0.6070 +3014 81620 0.5100 +3014 83439 0.4990 +3014 83933 0.7380 +3014 83983 0.5960 +3014 83990 0.6660 +3014 84057 0.4880 +3014 84126 0.5950 +3014 84142 0.7770 +3014 84148 0.4910 +3014 84172 0.5480 +3014 84196 0.5230 +3014 84260 0.4190 +3014 84444 0.4300 +3014 84557 0.4200 +3014 84678 0.4990 +3014 84733 0.6780 +3014 84759 0.4760 +3014 84823 0.4220 +3014 84962 0.5090 +3014 85235 0.4110 +3014 85236 0.9760 +3014 90381 0.4900 +3014 90780 0.5720 +3014 91801 0.4470 +3014 93426 0.5260 +3014 94239 0.6360 +3014 114803 0.4730 +3014 116447 0.4290 +3014 121504 0.9530 +3014 121536 0.6550 +3014 126961 0.7350 +3014 128312 0.7570 +3014 137902 0.5070 +3014 151987 0.4150 +3014 158983 0.5840 +3014 165918 0.9780 +3014 192669 0.5090 +3014 192670 0.5260 +3014 221613 0.4080 +3014 221830 0.4050 +3014 255626 0.7710 +3014 256126 0.5710 +3014 283149 0.5100 +3014 286257 0.4430 +3014 286436 0.5760 +3014 340096 0.4910 +3014 377630 0.4200 +3014 387893 0.6020 +3014 391769 0.4900 +3014 440093 0.8820 +3014 440686 0.9020 +3014 440689 0.6560 +3014 474382 0.4590 +3014 554313 0.9510 +3014 644186 0.5780 +3014 653604 0.9480 +3014 100533467 0.4250 +3014 102723407 0.6340 +3014 114483833 0.5860 +3015 3017 0.9010 +3015 3018 0.8880 +3015 3020 0.8690 +3015 3021 0.9550 +3015 3024 0.4940 +3015 3054 0.5080 +3015 3065 0.8860 +3015 3066 0.9170 +3015 3070 0.4830 +3015 3146 0.4190 +3015 3148 0.6320 +3015 3149 0.4480 +3015 3150 0.4390 +3015 3169 0.6900 +3015 3198 0.5020 +3015 3199 0.5170 +3015 3200 0.5060 +3015 3201 0.4990 +3015 3211 0.5260 +3015 3212 0.5230 +3015 3213 0.4990 +3015 3214 0.4990 +3015 3221 0.5010 +3015 3231 0.5070 +3015 3232 0.5160 +3015 3233 0.5090 +3015 3276 0.6210 +3015 3306 0.5300 +3015 3312 0.4490 +3015 3320 0.4400 +3015 3326 0.5380 +3015 3619 0.4740 +3015 3622 0.5500 +3015 3674 0.5040 +3015 3720 0.6640 +3015 3725 0.5760 +3015 3727 0.5640 +3015 3817 0.5430 +3015 3838 0.7800 +3015 3980 0.4920 +3015 4001 0.4080 +3015 4085 0.6420 +3015 4172 0.4260 +3015 4174 0.4040 +3015 4175 0.5580 +3015 4176 0.5860 +3015 4297 0.6390 +3015 4298 0.4350 +3015 4300 0.4150 +3015 4331 0.8180 +3015 4343 0.5050 +3015 4361 0.4990 +3015 4436 0.6910 +3015 4602 0.5320 +3015 4605 0.4420 +3015 4609 0.8200 +3015 4613 0.4640 +3015 4673 0.8840 +3015 4674 0.6020 +3015 4675 0.5640 +3015 4676 0.8440 +3015 4678 0.4890 +3015 4683 0.5360 +3015 4809 0.4700 +3015 4869 0.4070 +3015 4998 0.6370 +3015 4999 0.5090 +3015 5000 0.7180 +3015 5001 0.5800 +3015 5111 0.8120 +3015 5252 0.5880 +3015 5347 0.6740 +3015 5371 0.5230 +3015 5431 0.9150 +3015 5432 0.9400 +3015 5433 0.9190 +3015 5434 0.9080 +3015 5435 0.9110 +3015 5436 0.9220 +3015 5437 0.9050 +3015 5438 0.9300 +3015 5439 0.9210 +3015 5440 0.9160 +3015 5441 0.9100 +3015 5451 0.4990 +3015 5460 0.4050 +3015 5469 0.8110 +3015 5478 0.7200 +3015 5496 0.4220 +3015 5585 0.5200 +3015 5591 0.5510 +3015 5600 0.4990 +3015 5685 0.4040 +3015 5689 0.4350 +3015 5885 0.7430 +3015 5887 0.6580 +3015 5888 0.5130 +3015 5901 0.7720 +3015 5914 0.5870 +3015 5915 0.5600 +3015 5916 0.6630 +3015 5925 0.5620 +3015 5926 0.5230 +3015 5928 0.8120 +3015 5929 0.8220 +3015 5931 0.8130 +3015 5977 0.4720 +3015 5983 0.4320 +3015 5984 0.6080 +3015 5985 0.4520 +3015 6015 0.6570 +3015 6045 0.8270 +3015 6046 0.8570 +3015 6047 0.4540 +3015 6119 0.4680 +3015 6240 0.6310 +3015 6241 0.4260 +3015 6256 0.5140 +3015 6418 0.7040 +3015 6426 0.4620 +3015 6594 0.9060 +3015 6595 0.8490 +3015 6597 0.8310 +3015 6598 0.6830 +3015 6599 0.7200 +3015 6601 0.6660 +3015 6605 0.5530 +3015 6612 0.5200 +3015 6613 0.5760 +3015 6633 0.4660 +3015 6634 0.4160 +3015 6636 0.4160 +3015 6637 0.4840 +3015 6688 0.5960 +3015 6749 0.7210 +3015 6790 0.6240 +3015 6827 0.4890 +3015 6829 0.4730 +3015 6830 0.5790 +3015 6837 0.8050 +3015 6839 0.7480 +3015 6847 0.5410 +3015 6872 0.8780 +3015 6873 0.8410 +3015 6874 0.8640 +3015 6877 0.8550 +3015 6878 0.8300 +3015 6879 0.8260 +3015 6880 0.8450 +3015 6881 0.8480 +3015 6882 0.8120 +3015 6883 0.8400 +3015 6884 0.8220 +3015 6886 0.5340 +3015 6908 0.9470 +3015 6917 0.4880 +3015 6919 0.4760 +3015 6920 0.4720 +3015 6932 0.5140 +3015 6934 0.5290 +3015 6942 0.4850 +3015 6944 0.9980 +3015 6950 0.4520 +3015 6996 0.5310 +3015 7013 0.5570 +3015 7014 0.5190 +3015 7019 0.4250 +3015 7057 0.4440 +3015 7153 0.6140 +3015 7155 0.6650 +3015 7157 0.6910 +3015 7158 0.4390 +3015 7258 0.4450 +3015 7259 0.4190 +3015 7270 0.6110 +3015 7290 0.4580 +3015 7314 0.5470 +3015 7324 0.4310 +3015 7325 0.4310 +3015 7329 0.6460 +3015 7341 0.4660 +3015 7343 0.6360 +3015 7403 0.7730 +3015 7411 0.4220 +3015 7508 0.5060 +3015 7520 0.6690 +3015 7528 0.7030 +3015 7703 0.5930 +3015 7764 0.5430 +3015 7867 0.5040 +3015 7884 0.6280 +3015 7913 0.6990 +3015 7994 0.6000 +3015 8019 0.6280 +3015 8085 0.5750 +3015 8089 0.9760 +3015 8125 0.4020 +3015 8202 0.5450 +3015 8243 0.5960 +3015 8290 0.9230 +3015 8294 0.9280 +3015 8295 0.9410 +3015 8318 0.4030 +3015 8329 0.4040 +3015 8331 0.6190 +3015 8334 0.6860 +3015 8336 0.4530 +3015 8337 0.7650 +3015 8338 0.7810 +3015 8339 0.6980 +3015 8340 0.8420 +3015 8341 0.8410 +3015 8342 0.8820 +3015 8343 0.4340 +3015 8344 0.6860 +3015 8345 0.8640 +3015 8346 0.6670 +3015 8347 0.8880 +3015 8348 0.8830 +3015 8349 0.9990 +3015 8350 0.6320 +3015 8351 0.4660 +3015 8352 0.9100 +3015 8353 0.9100 +3015 8354 0.5340 +3015 8355 0.4550 +3015 8356 0.9420 +3015 8357 0.4720 +3015 8358 0.6080 +3015 8359 0.9030 +3015 8360 0.9290 +3015 8361 0.9950 +3015 8362 0.9280 +3015 8363 0.9290 +3015 8364 0.9140 +3015 8366 0.9300 +3015 8367 0.9280 +3015 8368 0.9310 +3015 8369 0.8550 +3015 8370 0.9030 +3015 8438 0.4190 +3015 8467 0.9270 +3015 8468 0.5510 +3015 8520 0.4800 +3015 8535 0.6030 +3015 8607 0.9840 +3015 8726 0.6600 +3015 8815 0.6410 +3015 8819 0.6710 +3015 8841 0.8420 +3015 8850 0.8520 +3015 8932 0.6970 +3015 8968 0.4510 +3015 8969 0.4440 +3015 8970 0.9830 +3015 8971 0.4840 +3015 9013 0.4700 +3015 9014 0.4450 +3015 9015 0.4420 +3015 9031 0.6130 +3015 9055 0.5450 +3015 9070 0.7880 +3015 9112 0.7440 +3015 9126 0.7080 +3015 9131 0.6520 +3015 9133 0.4980 +3015 9156 0.4390 +3015 9184 0.4660 +3015 9188 0.4560 +3015 9212 0.5970 +3015 9219 0.7280 +3015 9232 0.5270 +3015 9261 0.4990 +3015 9282 0.8050 +3015 9412 0.8140 +3015 9425 0.4460 +3015 9439 0.8090 +3015 9440 0.8170 +3015 9441 0.8410 +3015 9442 0.8340 +3015 9443 0.8090 +3015 9477 0.8080 +3015 9493 0.4420 +3015 9533 0.5480 +3015 9555 0.6610 +3015 9557 0.6040 +3015 9611 0.6350 +3015 9678 0.6450 +3015 9682 0.6100 +3015 9687 0.5290 +3015 9734 0.7670 +3015 9739 0.6210 +3015 9759 0.7600 +3015 9810 0.6590 +3015 9862 0.8130 +3015 9869 0.4230 +3015 9935 0.5320 +3015 9985 0.5850 +3015 10001 0.8040 +3015 10013 0.7600 +3015 10014 0.7540 +3015 10025 0.8060 +3015 10042 0.4590 +3015 10051 0.7350 +3015 10111 0.5520 +3015 10112 0.4220 +3015 10146 0.6990 +3015 10207 0.4260 +3015 10274 0.5610 +3015 10284 0.6640 +3015 10363 0.5820 +3015 10376 0.4490 +3015 10388 0.4990 +3015 10419 0.5710 +3015 10428 0.9230 +3015 10467 0.9760 +3015 10514 0.4830 +3015 10524 0.9860 +3015 10526 0.4990 +3015 10541 0.6090 +3015 10592 0.7480 +3015 10635 0.5610 +3015 10664 0.8850 +3015 10733 0.4370 +3015 10734 0.5120 +3015 10735 0.5370 +3015 10743 0.4260 +3015 10847 0.9980 +3015 10849 0.4340 +3015 10856 0.9560 +3015 10902 0.9010 +3015 10919 0.8260 +3015 10933 0.9300 +3015 10943 0.4800 +3015 10951 0.6840 +3015 11065 0.4350 +3015 11074 0.4630 +3015 11083 0.6030 +3015 11091 0.8290 +3015 11143 0.5850 +3015 11176 0.7310 +3015 11177 0.5390 +3015 11198 0.8800 +3015 11201 0.4100 +3015 11222 0.5450 +3015 11335 0.8470 +3015 22823 0.5890 +3015 22893 0.5210 +3015 22933 0.4480 +3015 22955 0.4990 +3015 22976 0.5830 +3015 23028 0.7010 +3015 23030 0.5970 +3015 23054 0.5520 +3015 23067 0.4440 +3015 23081 0.7400 +3015 23112 0.5390 +3015 23126 0.4740 +3015 23133 0.5950 +3015 23135 0.6780 +3015 23168 0.4580 +3015 23270 0.4100 +3015 23309 0.6000 +3015 23310 0.5900 +3015 23353 0.4160 +3015 23378 0.5360 +3015 23394 0.4400 +3015 23397 0.6840 +3015 23411 0.7470 +3015 23451 0.4680 +3015 23466 0.5740 +3015 23468 0.6340 +3015 23476 0.7060 +3015 23512 0.8570 +3015 23522 0.4730 +3015 23595 0.5810 +3015 23626 0.6760 +3015 25777 0.4380 +3015 25842 0.7810 +3015 25885 0.5000 +3015 25913 0.5120 +3015 25917 0.4120 +3015 25942 0.7730 +3015 26108 0.5460 +3015 26122 0.7220 +3015 26147 0.5970 +3015 26227 0.5890 +3015 26277 0.5590 +3015 26523 0.5770 +3015 27127 0.5720 +3015 27161 0.5560 +3015 27327 0.4990 +3015 27443 0.4200 +3015 29072 0.7560 +3015 29079 0.8170 +3015 29089 0.4190 +3015 29115 0.5010 +3015 29117 0.4230 +3015 29128 0.6930 +3015 29781 0.5050 +3015 29947 0.7600 +3015 30834 0.4920 +3015 50511 0.5660 +3015 50809 0.5330 +3015 51002 0.4270 +3015 51003 0.8260 +3015 51082 0.4570 +3015 51111 0.5320 +3015 51176 0.5270 +3015 51317 0.5490 +3015 51412 0.6640 +3015 51477 0.5160 +3015 51548 0.7590 +3015 51564 0.7390 +3015 51586 0.8130 +3015 51588 0.4770 +3015 51742 0.7900 +3015 53615 0.6550 +3015 54107 0.4180 +3015 54145 0.8620 +3015 54386 0.5270 +3015 54443 0.4030 +3015 54556 0.9060 +3015 54617 0.4920 +3015 54797 0.8260 +3015 54799 0.7530 +3015 54815 0.7420 +3015 54892 0.6280 +3015 55090 0.8000 +3015 55143 0.4090 +3015 55170 0.7170 +3015 55193 0.5820 +3015 55247 0.5230 +3015 55257 0.9130 +3015 55352 0.4050 +3015 55355 0.4210 +3015 55506 0.6490 +3015 55588 0.8170 +3015 55636 0.5000 +3015 55689 0.4940 +3015 55705 0.6210 +3015 55723 0.7720 +3015 55766 0.6190 +3015 55869 0.8350 +3015 55904 0.4270 +3015 55929 0.9590 +3015 56158 0.4990 +3015 56254 0.8280 +3015 56852 0.6120 +3015 56916 0.4740 +3015 56979 0.6360 +3015 57142 0.4260 +3015 57332 0.6300 +3015 57459 0.7240 +3015 57504 0.5400 +3015 57634 0.9910 +3015 57680 0.6710 +3015 57708 0.6830 +3015 58508 0.5960 +3015 64061 0.4880 +3015 64425 0.4080 +3015 64426 0.6900 +3015 64431 0.9560 +3015 64591 0.4080 +3015 64754 0.4440 +3015 64769 0.7790 +3015 79084 0.5840 +3015 79101 0.4730 +3015 79447 0.5140 +3015 79577 0.4650 +3015 79595 0.5220 +3015 79685 0.5450 +3015 79813 0.6370 +3015 79885 0.7510 +3015 80012 0.5090 +3015 80129 0.5800 +3015 80205 0.4100 +3015 80306 0.8080 +3015 80308 0.7010 +3015 80314 0.8720 +3015 80854 0.4030 +3015 81572 0.4220 +3015 81611 0.9960 +3015 81857 0.8090 +3015 83439 0.4990 +3015 83740 0.4180 +3015 83860 0.8380 +3015 83933 0.7240 +3015 84148 0.5180 +3015 84159 0.6640 +3015 84172 0.4030 +3015 84181 0.4170 +3015 84196 0.5420 +3015 84246 0.8100 +3015 84295 0.4380 +3015 84444 0.6350 +3015 84661 0.7650 +3015 84733 0.7020 +3015 84790 0.4320 +3015 84962 0.5040 +3015 85235 0.6170 +3015 85236 0.8540 +3015 85453 0.4080 +3015 90390 0.8180 +3015 90780 0.5520 +3015 90865 0.4280 +3015 92292 0.4260 +3015 93426 0.4990 +3015 93973 0.4350 +3015 94239 0.4780 +3015 112950 0.8010 +3015 114825 0.7170 +3015 121504 0.9030 +3015 121536 0.5870 +3015 123169 0.4390 +3015 125476 0.7280 +3015 126961 0.9520 +3015 128312 0.9090 +3015 129685 0.8050 +3015 132243 0.6100 +3015 140690 0.4440 +3015 149345 0.4690 +3015 158983 0.7620 +3015 165918 0.7550 +3015 166968 0.6340 +3015 192669 0.6680 +3015 192670 0.6020 +3015 221120 0.4230 +3015 221613 0.6170 +3015 221656 0.4540 +3015 221830 0.5180 +3015 221895 0.5800 +3015 255626 0.9480 +3015 256126 0.4990 +3015 266812 0.5820 +3015 283149 0.4990 +3015 286436 0.7460 +3015 317772 0.4860 +3015 333932 0.8900 +3015 340096 0.6750 +3015 387082 0.4880 +3015 387103 0.5250 +3015 387893 0.6340 +3015 388951 0.4080 +3015 391769 0.6910 +3015 400569 0.8070 +3015 404672 0.8690 +3015 440093 0.8310 +3015 440686 0.8240 +3015 440689 0.7820 +3015 474381 0.4800 +3015 474382 0.6760 +3015 554313 0.9050 +3015 644186 0.4990 +3015 646817 0.4800 +3015 653505 0.4710 +3015 653604 0.9770 +3015 728132 0.4080 +3015 728137 0.4080 +3015 728395 0.4080 +3015 728403 0.4080 +3015 100289087 0.4080 +3015 100532731 0.4090 +3015 114483833 0.7430 +3015 115482686 0.4060 +3017 3018 0.9330 +3017 3020 0.6910 +3017 3021 0.9140 +3017 3024 0.4400 +3017 3065 0.7620 +3017 3066 0.7510 +3017 3169 0.5380 +3017 3192 0.4650 +3017 3198 0.4990 +3017 3199 0.4990 +3017 3200 0.4990 +3017 3201 0.4990 +3017 3211 0.5030 +3017 3212 0.5000 +3017 3213 0.5190 +3017 3214 0.5070 +3017 3221 0.5220 +3017 3231 0.4990 +3017 3232 0.4990 +3017 3233 0.4990 +3017 3276 0.5720 +3017 3306 0.5280 +3017 3428 0.4550 +3017 3674 0.5100 +3017 3720 0.6690 +3017 3725 0.6100 +3017 3727 0.5200 +3017 3817 0.4990 +3017 3832 0.5610 +3017 3838 0.5180 +3017 3958 0.4060 +3017 3981 0.4630 +3017 4082 0.4090 +3017 4287 0.5860 +3017 4292 0.5220 +3017 4297 0.6030 +3017 4343 0.5150 +3017 4361 0.5170 +3017 4438 0.7490 +3017 4439 0.7540 +3017 4602 0.6470 +3017 4609 0.6780 +3017 4683 0.5080 +3017 4691 0.4770 +3017 4998 0.6580 +3017 4999 0.5340 +3017 5000 0.5370 +3017 5001 0.5330 +3017 5216 0.4010 +3017 5232 0.4530 +3017 5252 0.5340 +3017 5340 0.8660 +3017 5347 0.6840 +3017 5371 0.5370 +3017 5431 0.6420 +3017 5432 0.6640 +3017 5433 0.6560 +3017 5434 0.6240 +3017 5435 0.6050 +3017 5436 0.7220 +3017 5437 0.6440 +3017 5438 0.6200 +3017 5439 0.5720 +3017 5440 0.6260 +3017 5441 0.6270 +3017 5451 0.6200 +3017 5580 0.4470 +3017 5585 0.5080 +3017 5591 0.6030 +3017 5599 0.5270 +3017 5600 0.5290 +3017 5620 0.4280 +3017 5885 0.6140 +3017 5886 0.4450 +3017 5887 0.4140 +3017 5888 0.6300 +3017 5889 0.4260 +3017 5901 0.5330 +3017 5914 0.5260 +3017 5915 0.5040 +3017 5916 0.5040 +3017 5925 0.5370 +3017 5926 0.4860 +3017 5928 0.6390 +3017 5929 0.5760 +3017 5931 0.6410 +3017 5932 0.5800 +3017 5978 0.6030 +3017 6015 0.5200 +3017 6045 0.5220 +3017 6047 0.4770 +3017 6117 0.5720 +3017 6118 0.5900 +3017 6119 0.5130 +3017 6188 0.4250 +3017 6233 0.6060 +3017 6256 0.5040 +3017 6281 0.5430 +3017 6314 0.7050 +3017 6426 0.4110 +3017 6594 0.4170 +3017 6599 0.4920 +3017 6613 0.5930 +3017 6688 0.5190 +3017 6749 0.4060 +3017 6827 0.4140 +3017 6829 0.4810 +3017 6830 0.4340 +3017 6839 0.6300 +3017 6847 0.5510 +3017 6881 0.7460 +3017 6886 0.5340 +3017 6907 0.4910 +3017 6908 0.5760 +3017 6932 0.5030 +3017 6934 0.4990 +3017 7013 0.5630 +3017 7014 0.4990 +3017 7057 0.4400 +3017 7153 0.5210 +3017 7156 0.5350 +3017 7157 0.4180 +3017 7158 0.6660 +3017 7270 0.5220 +3017 7275 0.4740 +3017 7290 0.5900 +3017 7311 0.6510 +3017 7314 0.5670 +3017 7316 0.6210 +3017 7319 0.7830 +3017 7320 0.6950 +3017 7324 0.5140 +3017 7329 0.5980 +3017 7334 0.6050 +3017 7336 0.5290 +3017 7341 0.6000 +3017 7343 0.5440 +3017 7347 0.4300 +3017 7398 0.5080 +3017 7403 0.6990 +3017 7468 0.5820 +3017 7508 0.6290 +3017 7520 0.6340 +3017 7528 0.5720 +3017 7703 0.5350 +3017 7764 0.5400 +3017 7867 0.4990 +3017 7913 0.5320 +3017 8085 0.6400 +3017 8202 0.5610 +3017 8241 0.4390 +3017 8243 0.5420 +3017 8290 0.9380 +3017 8294 0.9320 +3017 8295 0.7080 +3017 8314 0.5200 +3017 8329 0.9110 +3017 8330 0.7950 +3017 8331 0.8370 +3017 8332 0.7770 +3017 8334 0.9980 +3017 8335 0.6400 +3017 8336 0.9160 +3017 8337 0.9750 +3017 8338 0.9250 +3017 8339 0.8980 +3017 8340 0.4970 +3017 8341 0.9060 +3017 8342 0.9190 +3017 8343 0.9710 +3017 8344 0.9280 +3017 8345 0.9770 +3017 8346 0.9370 +3017 8347 0.9720 +3017 8348 0.9450 +3017 8349 0.9660 +3017 8350 0.5250 +3017 8351 0.8970 +3017 8352 0.6160 +3017 8353 0.5750 +3017 8354 0.4890 +3017 8355 0.6050 +3017 8356 0.9460 +3017 8357 0.7400 +3017 8358 0.6160 +3017 8359 0.9160 +3017 8360 0.9370 +3017 8361 0.9920 +3017 8362 0.9210 +3017 8363 0.9200 +3017 8364 0.9260 +3017 8366 0.9250 +3017 8367 0.9460 +3017 8368 0.9180 +3017 8369 0.8290 +3017 8370 0.9380 +3017 8467 0.7280 +3017 8468 0.5650 +3017 8479 0.5480 +3017 8535 0.5080 +3017 8607 0.7570 +3017 8726 0.6230 +3017 8819 0.5180 +3017 8841 0.7200 +3017 8850 0.6950 +3017 8900 0.6190 +3017 8924 0.5340 +3017 8932 0.5230 +3017 8968 0.6180 +3017 8969 0.8020 +3017 8970 0.6270 +3017 9013 0.4050 +3017 9015 0.4120 +3017 9025 0.5930 +3017 9031 0.4570 +3017 9070 0.5690 +3017 9094 0.4110 +3017 9112 0.5140 +3017 9126 0.6320 +3017 9188 0.4270 +3017 9212 0.4470 +3017 9219 0.4990 +3017 9261 0.5220 +3017 9533 0.5610 +3017 9555 0.5930 +3017 9611 0.5620 +3017 9612 0.4570 +3017 9646 0.7590 +3017 9656 0.5830 +3017 9682 0.5690 +3017 9687 0.5140 +3017 9734 0.7320 +3017 9739 0.6630 +3017 9759 0.7300 +3017 9810 0.8830 +3017 9929 0.4710 +3017 9935 0.5220 +3017 9960 0.5700 +3017 9985 0.5940 +3017 10013 0.7390 +3017 10014 0.7240 +3017 10051 0.5950 +3017 10111 0.5120 +3017 10155 0.4630 +3017 10274 0.5700 +3017 10284 0.5040 +3017 10362 0.5000 +3017 10388 0.5000 +3017 10474 0.6040 +3017 10514 0.4010 +3017 10524 0.6330 +3017 10526 0.5060 +3017 10592 0.5600 +3017 10614 0.4040 +3017 10664 0.6090 +3017 10673 0.4100 +3017 10734 0.5290 +3017 10735 0.5450 +3017 10856 0.4570 +3017 10919 0.6300 +3017 10951 0.5740 +3017 11083 0.5360 +3017 11091 0.6040 +3017 11144 0.5050 +3017 11176 0.5580 +3017 11198 0.4860 +3017 11200 0.6360 +3017 11335 0.5450 +3017 22823 0.5120 +3017 22955 0.5050 +3017 22976 0.5180 +3017 23028 0.6800 +3017 23030 0.7300 +3017 23054 0.5210 +3017 23067 0.5410 +3017 23081 0.5440 +3017 23112 0.5160 +3017 23133 0.5280 +3017 23135 0.6790 +3017 23168 0.7820 +3017 23186 0.4890 +3017 23309 0.5260 +3017 23310 0.5790 +3017 23326 0.8610 +3017 23378 0.4990 +3017 23411 0.6540 +3017 23451 0.4050 +3017 23466 0.5070 +3017 23512 0.5690 +3017 23522 0.4360 +3017 23595 0.5250 +3017 23626 0.5760 +3017 25842 0.4250 +3017 25855 0.4090 +3017 25862 0.6450 +3017 25885 0.4680 +3017 25913 0.5010 +3017 25942 0.5490 +3017 26108 0.5240 +3017 26147 0.5120 +3017 26277 0.5310 +3017 26523 0.5500 +3017 27030 0.5010 +3017 27127 0.5520 +3017 27161 0.5660 +3017 27327 0.4990 +3017 29072 0.4420 +3017 29115 0.5010 +3017 29128 0.5700 +3017 29781 0.5340 +3017 29893 0.4020 +3017 29947 0.5630 +3017 30834 0.4810 +3017 50511 0.5550 +3017 51082 0.4040 +3017 51176 0.5350 +3017 51317 0.4950 +3017 51322 0.6400 +3017 51548 0.6580 +3017 51564 0.7350 +3017 51588 0.5320 +3017 51616 0.7310 +3017 51720 0.5550 +3017 51742 0.5680 +3017 53615 0.5040 +3017 54145 0.5030 +3017 54386 0.5470 +3017 54623 0.6670 +3017 54815 0.4990 +3017 54892 0.5290 +3017 55070 0.7210 +3017 55170 0.5380 +3017 55183 0.5250 +3017 55247 0.5100 +3017 55506 0.4450 +3017 55766 0.9790 +3017 55839 0.9690 +3017 55848 0.5660 +3017 55869 0.7310 +3017 56154 0.4310 +3017 56158 0.4990 +3017 56254 0.9150 +3017 56943 0.5330 +3017 56979 0.5400 +3017 57332 0.5400 +3017 57459 0.4990 +3017 57504 0.4990 +3017 58508 0.6520 +3017 64421 0.4990 +3017 64426 0.4990 +3017 79101 0.4090 +3017 79447 0.4990 +3017 79577 0.8120 +3017 79595 0.5010 +3017 79685 0.5070 +3017 79718 0.4590 +3017 79813 0.4970 +3017 79885 0.7090 +3017 79968 0.4080 +3017 80012 0.5400 +3017 80349 0.5650 +3017 83439 0.4990 +3017 83740 0.4690 +3017 83933 0.7100 +3017 84057 0.4120 +3017 84142 0.5190 +3017 84172 0.5550 +3017 84444 0.6470 +3017 84656 0.4570 +3017 84733 0.5070 +3017 84962 0.4990 +3017 85235 0.7200 +3017 85236 0.8110 +3017 90780 0.5470 +3017 92815 0.7130 +3017 93426 0.5010 +3017 93624 0.5790 +3017 94239 0.7000 +3017 114803 0.5340 +3017 121504 0.9200 +3017 121536 0.6370 +3017 123169 0.7030 +3017 126119 0.4700 +3017 126961 0.9060 +3017 128312 0.4340 +3017 165918 0.5930 +3017 192669 0.5250 +3017 192670 0.5330 +3017 221302 0.4130 +3017 221613 0.6750 +3017 221830 0.4310 +3017 255626 0.4080 +3017 256126 0.5090 +3017 283149 0.4990 +3017 317772 0.7970 +3017 333932 0.8900 +3017 387893 0.4840 +3017 440093 0.8620 +3017 440686 0.8650 +3017 440689 0.8920 +3017 474381 0.4280 +3017 474382 0.6080 +3017 554313 0.9140 +3017 644186 0.4990 +3017 653604 0.9850 +3017 723790 0.6470 +3018 3021 0.9400 +3018 3024 0.6180 +3018 3065 0.8240 +3018 3066 0.8220 +3018 3148 0.4030 +3018 3169 0.5400 +3018 3192 0.4760 +3018 3198 0.4990 +3018 3199 0.5440 +3018 3200 0.4990 +3018 3201 0.4990 +3018 3211 0.5030 +3018 3212 0.4990 +3018 3213 0.4990 +3018 3214 0.4990 +3018 3221 0.5130 +3018 3231 0.4990 +3018 3232 0.4990 +3018 3233 0.4990 +3018 3276 0.5790 +3018 3306 0.5230 +3018 3428 0.4470 +3018 3674 0.5140 +3018 3720 0.6550 +3018 3725 0.6310 +3018 3727 0.5100 +3018 3817 0.4990 +3018 3832 0.6850 +3018 3838 0.5080 +3018 3981 0.4630 +3018 4171 0.5630 +3018 4287 0.6020 +3018 4292 0.5110 +3018 4297 0.7040 +3018 4343 0.4990 +3018 4361 0.6430 +3018 4438 0.5070 +3018 4439 0.5130 +3018 4602 0.6550 +3018 4609 0.6800 +3018 4673 0.4640 +3018 4676 0.4640 +3018 4683 0.6370 +3018 4691 0.4820 +3018 4926 0.4330 +3018 4998 0.6430 +3018 4999 0.5340 +3018 5000 0.5260 +3018 5001 0.5330 +3018 5232 0.4530 +3018 5252 0.5210 +3018 5340 0.8670 +3018 5347 0.6880 +3018 5371 0.5460 +3018 5431 0.6350 +3018 5432 0.6630 +3018 5433 0.6350 +3018 5434 0.7220 +3018 5435 0.6040 +3018 5436 0.6250 +3018 5437 0.6460 +3018 5438 0.6140 +3018 5439 0.5660 +3018 5440 0.6250 +3018 5441 0.6240 +3018 5451 0.6290 +3018 5536 0.4130 +3018 5580 0.4440 +3018 5585 0.5080 +3018 5591 0.7050 +3018 5599 0.5230 +3018 5600 0.5220 +3018 5620 0.4370 +3018 5885 0.7150 +3018 5886 0.4460 +3018 5887 0.5710 +3018 5888 0.6300 +3018 5889 0.4060 +3018 5901 0.5330 +3018 5914 0.5300 +3018 5915 0.5040 +3018 5916 0.5040 +3018 5925 0.5350 +3018 5926 0.4780 +3018 5928 0.7370 +3018 5929 0.6870 +3018 5931 0.6280 +3018 5932 0.5820 +3018 5978 0.4360 +3018 6015 0.6530 +3018 6045 0.6490 +3018 6047 0.4820 +3018 6117 0.6850 +3018 6118 0.7010 +3018 6119 0.6330 +3018 6188 0.4380 +3018 6233 0.6070 +3018 6256 0.5040 +3018 6281 0.5490 +3018 6314 0.7090 +3018 6500 0.4370 +3018 6594 0.4230 +3018 6598 0.5950 +3018 6599 0.4920 +3018 6601 0.4080 +3018 6613 0.5750 +3018 6688 0.5160 +3018 6742 0.4260 +3018 6749 0.6410 +3018 6827 0.4010 +3018 6829 0.4830 +3018 6830 0.4290 +3018 6839 0.6330 +3018 6847 0.5500 +3018 6878 0.4430 +3018 6881 0.7450 +3018 6886 0.5270 +3018 6907 0.4730 +3018 6908 0.5810 +3018 6932 0.5080 +3018 6934 0.4990 +3018 7013 0.5650 +3018 7014 0.6300 +3018 7057 0.4460 +3018 7153 0.5070 +3018 7156 0.5220 +3018 7157 0.4980 +3018 7158 0.7570 +3018 7270 0.5220 +3018 7311 0.6590 +3018 7314 0.5900 +3018 7316 0.6130 +3018 7319 0.7140 +3018 7320 0.6970 +3018 7324 0.5240 +3018 7329 0.6020 +3018 7334 0.6070 +3018 7336 0.5150 +3018 7341 0.5960 +3018 7343 0.5530 +3018 7347 0.4330 +3018 7398 0.5100 +3018 7403 0.6940 +3018 7468 0.5800 +3018 7520 0.7320 +3018 7528 0.5710 +3018 7532 0.4080 +3018 7703 0.5350 +3018 7764 0.5300 +3018 7867 0.4990 +3018 7874 0.7030 +3018 7913 0.5290 +3018 8085 0.6120 +3018 8202 0.5550 +3018 8241 0.6070 +3018 8243 0.6620 +3018 8290 0.9390 +3018 8294 0.9580 +3018 8295 0.7900 +3018 8314 0.5230 +3018 8329 0.9160 +3018 8330 0.6260 +3018 8331 0.8670 +3018 8332 0.5480 +3018 8334 0.9870 +3018 8335 0.9730 +3018 8336 0.8440 +3018 8337 0.9320 +3018 8338 0.9900 +3018 8339 0.8560 +3018 8340 0.5680 +3018 8341 0.9140 +3018 8342 0.9720 +3018 8343 0.9080 +3018 8344 0.8710 +3018 8345 0.9340 +3018 8346 0.9540 +3018 8347 0.9160 +3018 8348 0.9790 +3018 8349 0.8930 +3018 8350 0.9540 +3018 8351 0.9490 +3018 8352 0.9400 +3018 8353 0.9020 +3018 8354 0.9250 +3018 8355 0.9340 +3018 8356 0.9900 +3018 8357 0.9080 +3018 8358 0.9440 +3018 8359 0.9530 +3018 8360 0.9630 +3018 8361 0.9960 +3018 8362 0.9460 +3018 8363 0.9600 +3018 8364 0.9490 +3018 8366 0.9710 +3018 8367 0.9630 +3018 8368 0.9670 +3018 8369 0.8410 +3018 8370 0.9550 +3018 8467 0.8010 +3018 8468 0.5650 +3018 8473 0.4300 +3018 8535 0.6360 +3018 8607 0.8180 +3018 8726 0.6290 +3018 8819 0.5000 +3018 8841 0.7200 +3018 8850 0.8820 +3018 8900 0.6200 +3018 8924 0.5340 +3018 8932 0.5250 +3018 8968 0.9320 +3018 8969 0.4990 +3018 8970 0.7120 +3018 9013 0.4050 +3018 9015 0.4130 +3018 9025 0.7930 +3018 9031 0.4600 +3018 9070 0.6840 +3018 9094 0.4160 +3018 9112 0.5280 +3018 9126 0.6330 +3018 9188 0.4190 +3018 9212 0.4610 +3018 9219 0.6320 +3018 9261 0.5080 +3018 9533 0.5620 +3018 9555 0.7930 +3018 9557 0.4160 +3018 9611 0.5600 +3018 9612 0.4600 +3018 9646 0.7570 +3018 9656 0.6920 +3018 9682 0.5700 +3018 9687 0.5110 +3018 9734 0.7240 +3018 9739 0.7570 +3018 9759 0.7280 +3018 9810 0.8910 +3018 9929 0.4750 +3018 9935 0.4990 +3018 9960 0.6830 +3018 9985 0.5990 +3018 10013 0.7540 +3018 10014 0.7040 +3018 10038 0.4630 +3018 10051 0.5780 +3018 10111 0.5120 +3018 10155 0.4640 +3018 10274 0.5710 +3018 10284 0.4990 +3018 10362 0.5220 +3018 10388 0.4990 +3018 10474 0.5980 +3018 10514 0.4010 +3018 10524 0.7290 +3018 10526 0.5080 +3018 10592 0.5560 +3018 10664 0.6000 +3018 10673 0.4220 +3018 10734 0.5290 +3018 10735 0.6590 +3018 10744 0.4010 +3018 10847 0.4900 +3018 10856 0.5140 +3018 10919 0.6290 +3018 10951 0.6780 +3018 11083 0.6570 +3018 11091 0.7090 +3018 11144 0.5050 +3018 11176 0.5460 +3018 11177 0.5770 +3018 11198 0.6150 +3018 11200 0.6430 +3018 11335 0.5370 +3018 22823 0.5110 +3018 22955 0.5050 +3018 22976 0.5200 +3018 23028 0.6430 +3018 23030 0.7270 +3018 23054 0.5100 +3018 23063 0.4250 +3018 23067 0.5260 +3018 23081 0.5470 +3018 23112 0.5150 +3018 23133 0.5280 +3018 23135 0.6730 +3018 23168 0.7890 +3018 23186 0.4940 +3018 23309 0.5260 +3018 23310 0.5580 +3018 23326 0.9040 +3018 23378 0.4990 +3018 23411 0.6540 +3018 23466 0.6360 +3018 23476 0.6380 +3018 23512 0.5700 +3018 23595 0.6440 +3018 23626 0.5800 +3018 24137 0.4260 +3018 25862 0.6490 +3018 25885 0.6070 +3018 25913 0.4990 +3018 25942 0.6660 +3018 26043 0.4470 +3018 26108 0.5240 +3018 26147 0.5110 +3018 26277 0.5360 +3018 26523 0.5470 +3018 27030 0.4990 +3018 27127 0.5530 +3018 27161 0.5660 +3018 27327 0.4990 +3018 29072 0.4310 +3018 29115 0.4990 +3018 29128 0.6850 +3018 29781 0.5460 +3018 29893 0.4030 +3018 29947 0.5640 +3018 30834 0.4600 +3018 50511 0.5430 +3018 51176 0.5830 +3018 51317 0.4850 +3018 51322 0.6420 +3018 51548 0.5750 +3018 51564 0.7280 +3018 51588 0.5250 +3018 51616 0.7330 +3018 51720 0.5570 +3018 51742 0.5650 +3018 53615 0.5040 +3018 54145 0.4820 +3018 54386 0.5460 +3018 54623 0.7600 +3018 54815 0.6410 +3018 54892 0.5090 +3018 55070 0.7270 +3018 55148 0.6380 +3018 55170 0.5370 +3018 55183 0.6520 +3018 55247 0.5030 +3018 55506 0.4540 +3018 55636 0.4530 +3018 55766 0.9680 +3018 55839 0.9670 +3018 55848 0.5650 +3018 55869 0.7280 +3018 56154 0.4310 +3018 56158 0.5010 +3018 56254 0.9440 +3018 56943 0.5430 +3018 56979 0.5480 +3018 57332 0.6510 +3018 57459 0.4990 +3018 57504 0.4990 +3018 57634 0.5060 +3018 58508 0.6370 +3018 64421 0.4990 +3018 64426 0.4990 +3018 64431 0.4850 +3018 79101 0.4060 +3018 79447 0.4990 +3018 79577 0.8150 +3018 79595 0.4990 +3018 79685 0.4990 +3018 79718 0.4640 +3018 79813 0.4930 +3018 79885 0.6990 +3018 79913 0.5230 +3018 80012 0.5420 +3018 80335 0.4150 +3018 80349 0.5720 +3018 83439 0.4990 +3018 83933 0.6980 +3018 84057 0.4050 +3018 84101 0.5120 +3018 84142 0.5150 +3018 84172 0.5550 +3018 84196 0.5240 +3018 84295 0.5840 +3018 84444 0.7480 +3018 84656 0.4570 +3018 84733 0.6360 +3018 84962 0.4990 +3018 85235 0.7010 +3018 85236 0.6450 +3018 90780 0.5470 +3018 92815 0.6290 +3018 93426 0.5010 +3018 93624 0.5850 +3018 94239 0.6940 +3018 114803 0.5390 +3018 121504 0.9510 +3018 121536 0.6370 +3018 123169 0.7060 +3018 126119 0.4770 +3018 126961 0.9120 +3018 128312 0.4400 +3018 158880 0.5090 +3018 165918 0.7960 +3018 192669 0.5240 +3018 192670 0.5350 +3018 221302 0.4320 +3018 221613 0.7430 +3018 255626 0.4310 +3018 256126 0.5110 +3018 283149 0.4990 +3018 317772 0.7760 +3018 333932 0.8960 +3018 387893 0.4920 +3018 440093 0.8700 +3018 440686 0.8710 +3018 440689 0.8910 +3018 474381 0.4130 +3018 474382 0.6080 +3018 554313 0.9450 +3018 644186 0.4990 +3018 653604 0.9890 +3018 723790 0.4510 +3020 3021 0.9370 +3020 3417 0.7260 +3020 3418 0.6630 +3020 3621 0.9140 +3020 3622 0.9240 +3020 3842 0.9030 +3020 4171 0.9180 +3020 4255 0.5740 +3020 4297 0.9260 +3020 4300 0.9130 +3020 4613 0.4570 +3020 4678 0.9490 +3020 4763 0.5770 +3020 4796 0.9090 +3020 4946 0.6170 +3020 4999 0.4280 +3020 5077 0.4010 +3020 5156 0.5730 +3020 5290 0.4620 +3020 5435 0.4450 +3020 5728 0.4680 +3020 5926 0.5470 +3020 5927 0.4060 +3020 5928 0.4170 +3020 5931 0.4370 +3020 6181 0.5260 +3020 6188 0.4560 +3020 6218 0.5690 +3020 6233 0.4780 +3020 6428 0.4200 +3020 6595 0.5680 +3020 6597 0.9300 +3020 6598 0.5980 +3020 6601 0.8450 +3020 6602 0.8480 +3020 6605 0.8260 +3020 6672 0.9080 +3020 6749 0.4010 +3020 6827 0.4050 +3020 6839 0.4210 +3020 6908 0.4020 +3020 7015 0.6510 +3020 7157 0.5750 +3020 7290 0.7310 +3020 7311 0.4350 +3020 7314 0.5500 +3020 7316 0.4480 +3020 7403 0.7340 +3020 7404 0.6220 +3020 7994 0.9220 +3020 8085 0.4780 +3020 8289 0.8540 +3020 8290 0.8550 +3020 8294 0.9400 +3020 8329 0.9340 +3020 8330 0.9270 +3020 8332 0.9260 +3020 8334 0.4390 +3020 8335 0.9330 +3020 8336 0.9360 +3020 8337 0.4860 +3020 8338 0.4810 +3020 8339 0.8930 +3020 8342 0.5800 +3020 8343 0.8860 +3020 8344 0.8960 +3020 8346 0.8840 +3020 8347 0.8890 +3020 8348 0.8780 +3020 8349 0.9410 +3020 8350 0.8680 +3020 8351 0.8570 +3020 8352 0.8570 +3020 8353 0.8560 +3020 8354 0.8560 +3020 8355 0.8560 +3020 8356 0.8600 +3020 8357 0.8560 +3020 8358 0.8580 +3020 8359 0.9400 +3020 8360 0.9410 +3020 8361 0.9470 +3020 8362 0.9400 +3020 8363 0.9420 +3020 8364 0.9460 +3020 8366 0.9390 +3020 8367 0.9420 +3020 8368 0.9390 +3020 8369 0.4510 +3020 8370 0.9430 +3020 8467 0.4160 +3020 8479 0.6520 +3020 8493 0.4080 +3020 8850 0.9330 +3020 8880 0.4810 +3020 8968 0.8560 +3020 8969 0.9270 +3020 8970 0.8750 +3020 9085 0.8470 +3020 9555 0.4340 +3020 9682 0.9150 +3020 9739 0.4060 +3020 9866 0.9090 +3020 9869 0.9200 +3020 10146 0.5470 +3020 10450 0.9030 +3020 10498 0.9140 +3020 10771 0.4240 +3020 10847 0.6050 +3020 10856 0.4230 +3020 10919 0.9250 +3020 10927 0.9000 +3020 10951 0.9340 +3020 11083 0.9320 +3020 11091 0.9220 +3020 11198 0.4880 +3020 11335 0.9390 +3020 23133 0.9190 +3020 23135 0.6800 +3020 23234 0.9040 +3020 23408 0.9150 +3020 23410 0.9140 +3020 23466 0.9090 +3020 23468 0.9590 +3020 23492 0.9090 +3020 23515 0.9080 +3020 23522 0.9220 +3020 25842 0.9630 +3020 26009 0.9030 +3020 26108 0.9090 +3020 29072 0.9680 +3020 29128 0.9100 +3020 29947 0.8270 +3020 30827 0.4430 +3020 51147 0.9140 +3020 51592 0.9120 +3020 51742 0.5640 +3020 54737 0.9330 +3020 54904 0.9220 +3020 55193 0.9370 +3020 55723 0.9440 +3020 55766 0.4150 +3020 55870 0.4860 +3020 55904 0.9100 +3020 57670 0.6030 +3020 58508 0.4500 +3020 65998 0.4420 +3020 79172 0.4040 +3020 79711 0.9290 +3020 79813 0.9230 +3020 80308 0.5870 +3020 84656 0.7730 +3020 84678 0.4210 +3020 84717 0.9090 +3020 85236 0.9250 +3020 90780 0.9160 +3020 94239 0.5510 +3020 112869 0.9200 +3020 121504 0.9420 +3020 123169 0.4010 +3020 126961 0.8720 +3020 144097 0.8000 +3020 152098 0.9120 +3020 221613 0.4160 +3020 253175 0.8470 +3020 255626 0.4130 +3020 317772 0.9250 +3020 333932 0.8710 +3020 340602 0.4450 +3020 440093 0.8010 +3020 440686 0.8710 +3020 554313 0.9400 +3020 653604 0.8710 +3020 723790 0.4090 +3021 3054 0.6430 +3021 3065 0.9860 +3021 3066 0.9360 +3021 3070 0.4860 +3021 3091 0.6020 +3021 3146 0.5010 +3021 3148 0.4100 +3021 3150 0.4740 +3021 3151 0.5610 +3021 3162 0.4740 +3021 3169 0.8330 +3021 3172 0.4840 +3021 3176 0.6690 +3021 3178 0.4400 +3021 3183 0.4340 +3021 3190 0.4940 +3021 3192 0.4120 +3021 3198 0.5420 +3021 3199 0.5830 +3021 3200 0.5890 +3021 3201 0.5720 +3021 3205 0.6670 +3021 3211 0.7150 +3021 3212 0.5560 +3021 3213 0.5500 +3021 3214 0.5720 +3021 3221 0.5650 +3021 3231 0.5630 +3021 3232 0.5620 +3021 3233 0.5580 +3021 3237 0.4180 +3021 3251 0.4170 +3021 3265 0.4010 +3021 3276 0.8690 +3021 3308 0.7060 +3021 3309 0.4310 +3021 3315 0.5420 +3021 3316 0.5370 +3021 3320 0.7500 +3021 3326 0.7420 +3021 3417 0.6350 +3021 3418 0.5870 +3021 3458 0.5060 +3021 3479 0.4160 +3021 3480 0.4140 +3021 3481 0.4340 +3021 3516 0.4480 +3021 3551 0.6120 +3021 3553 0.5420 +3021 3565 0.4090 +3021 3569 0.7460 +3021 3576 0.4610 +3021 3586 0.4630 +3021 3619 0.8240 +3021 3621 0.9810 +3021 3622 0.9940 +3021 3630 0.5810 +3021 3659 0.4240 +3021 3661 0.4450 +3021 3662 0.4450 +3021 3670 0.4280 +3021 3674 0.5990 +3021 3684 0.4060 +3021 3714 0.5190 +3021 3717 0.4740 +3021 3718 0.5440 +3021 3720 0.9380 +3021 3725 0.8730 +3021 3727 0.6550 +3021 3767 0.4400 +3021 3815 0.4490 +3021 3817 0.5610 +3021 3832 0.5440 +3021 3838 0.6180 +3021 3842 0.9120 +3021 3845 0.5060 +3021 3899 0.4030 +3021 3930 0.8720 +3021 3960 0.6280 +3021 4000 0.4780 +3021 4001 0.7480 +3021 4005 0.5210 +3021 4015 0.4060 +3021 4057 0.5010 +3021 4087 0.4510 +3021 4088 0.4560 +3021 4089 0.4220 +3021 4128 0.4820 +3021 4129 0.4620 +3021 4137 0.4450 +3021 4170 0.4580 +3021 4171 0.9760 +3021 4172 0.4340 +3021 4173 0.6700 +3021 4175 0.5260 +3021 4176 0.7810 +3021 4193 0.5520 +3021 4204 0.7870 +3021 4211 0.4770 +3021 4255 0.5070 +3021 4292 0.4490 +3021 4297 0.9850 +3021 4298 0.8110 +3021 4299 0.4750 +3021 4300 0.9950 +3021 4302 0.5710 +3021 4318 0.6630 +3021 4343 0.5720 +3021 4353 0.8860 +3021 4512 0.4450 +3021 4594 0.4400 +3021 4602 0.8070 +3021 4609 0.9380 +3021 4613 0.6010 +3021 4641 0.4080 +3021 4654 0.5160 +3021 4656 0.4430 +3021 4678 0.9870 +3021 4691 0.4850 +3021 4734 0.4050 +3021 4738 0.4190 +3021 4760 0.4030 +3021 4763 0.7950 +3021 4780 0.4370 +3021 4782 0.5290 +3021 4790 0.6880 +3021 4792 0.5900 +3021 4796 0.9260 +3021 4851 0.5050 +3021 4869 0.5230 +3021 4924 0.4400 +3021 4926 0.4740 +3021 4928 0.4700 +3021 4998 0.7180 +3021 4999 0.5880 +3021 5000 0.7820 +3021 5001 0.6300 +3021 5076 0.5570 +3021 5080 0.5320 +3021 5081 0.4210 +3021 5116 0.4580 +3021 5156 0.5710 +3021 5175 0.4550 +3021 5216 0.4870 +3021 5230 0.4310 +3021 5241 0.4210 +3021 5252 0.8330 +3021 5253 0.4130 +3021 5290 0.4350 +3021 5292 0.4260 +3021 5315 0.6970 +3021 5347 0.8200 +3021 5371 0.8440 +3021 5431 0.7630 +3021 5432 0.7810 +3021 5433 0.6970 +3021 5434 0.6880 +3021 5435 0.7090 +3021 5436 0.6990 +3021 5437 0.6730 +3021 5438 0.7140 +3021 5439 0.6670 +3021 5440 0.6700 +3021 5441 0.6660 +3021 5451 0.5810 +3021 5460 0.6290 +3021 5468 0.5070 +3021 5499 0.5260 +3021 5500 0.4990 +3021 5501 0.4020 +3021 5515 0.5080 +3021 5566 0.4090 +3021 5567 0.4420 +3021 5568 0.4040 +3021 5585 0.6140 +3021 5591 0.4910 +3021 5594 0.4140 +3021 5595 0.6140 +3021 5599 0.4080 +3021 5600 0.6320 +3021 5604 0.6590 +3021 5621 0.4880 +3021 5657 0.5390 +3021 5705 0.6540 +3021 5725 0.5540 +3021 5728 0.6160 +3021 5788 0.4470 +3021 5883 0.8760 +3021 5885 0.7910 +3021 5887 0.4070 +3021 5888 0.7600 +3021 5893 0.4820 +3021 5901 0.5930 +3021 5914 0.6950 +3021 5915 0.6390 +3021 5916 0.5800 +3021 5925 0.7450 +3021 5926 0.6020 +3021 5927 0.7160 +3021 5928 0.9810 +3021 5929 0.9320 +3021 5931 0.9530 +3021 5932 0.6520 +3021 5966 0.4660 +3021 5970 0.7400 +3021 5971 0.4210 +3021 5976 0.4240 +3021 5977 0.5710 +3021 5978 0.4820 +3021 6015 0.8700 +3021 6045 0.8650 +3021 6046 0.8360 +3021 6047 0.4650 +3021 6117 0.6120 +3021 6118 0.6580 +3021 6147 0.5200 +3021 6156 0.4750 +3021 6181 0.4890 +3021 6188 0.4730 +3021 6194 0.4010 +3021 6195 0.4060 +3021 6197 0.6420 +3021 6198 0.4870 +3021 6218 0.4460 +3021 6233 0.5210 +3021 6249 0.4350 +3021 6256 0.6180 +3021 6310 0.4220 +3021 6314 0.4380 +3021 6347 0.4250 +3021 6390 0.4700 +3021 6391 0.5240 +3021 6418 0.6170 +3021 6419 0.7320 +3021 6424 0.5000 +3021 6426 0.9810 +3021 6427 0.4310 +3021 6428 0.7440 +3021 6469 0.4830 +3021 6500 0.4460 +3021 6513 0.4060 +3021 6581 0.4170 +3021 6591 0.4500 +3021 6594 0.8700 +3021 6595 0.8240 +3021 6597 0.9830 +3021 6598 0.6620 +3021 6599 0.6080 +3021 6601 0.8990 +3021 6602 0.8800 +3021 6604 0.4390 +3021 6605 0.8790 +3021 6613 0.6600 +3021 6615 0.5750 +3021 6657 0.6350 +3021 6662 0.4620 +3021 6663 0.4170 +3021 6667 0.4920 +3021 6672 0.9340 +3021 6688 0.7110 +3021 6714 0.5040 +3021 6749 0.8610 +3021 6772 0.4830 +3021 6774 0.6120 +3021 6776 0.4210 +3021 6777 0.4400 +3021 6790 0.6400 +3021 6795 0.8340 +3021 6827 0.6390 +3021 6829 0.6660 +3021 6830 0.9360 +3021 6839 0.9730 +3021 6871 0.5390 +3021 6872 0.5270 +3021 6877 0.4750 +3021 6878 0.4990 +3021 6886 0.6480 +3021 6907 0.6290 +3021 6908 0.9170 +3021 6909 0.6650 +3021 6917 0.4740 +3021 6919 0.4600 +3021 6920 0.4560 +3021 6932 0.6210 +3021 6934 0.6380 +3021 6949 0.4990 +3021 6996 0.4450 +3021 7013 0.6870 +3021 7014 0.6130 +3021 7015 0.6310 +3021 7019 0.5130 +3021 7035 0.4210 +3021 7040 0.4710 +3021 7054 0.4570 +3021 7057 0.5500 +3021 7097 0.6330 +3021 7098 0.5670 +3021 7099 0.6900 +3021 7124 0.7100 +3021 7150 0.4460 +3021 7153 0.4810 +3021 7155 0.4200 +3021 7157 0.8650 +3021 7158 0.9640 +3021 7270 0.6000 +3021 7290 0.9320 +3021 7311 0.4710 +3021 7314 0.5170 +3021 7316 0.6990 +3021 7329 0.4420 +3021 7341 0.5060 +3021 7343 0.6280 +3021 7391 0.4190 +3021 7403 0.9620 +3021 7404 0.7520 +3021 7414 0.4490 +3021 7443 0.6060 +3021 7450 0.5500 +3021 7465 0.5450 +3021 7468 0.8230 +3021 7486 0.4630 +3021 7490 0.4110 +3021 7514 0.6130 +3021 7520 0.5400 +3021 7528 0.8780 +3021 7534 0.7060 +3021 7538 0.4790 +3021 7703 0.8240 +3021 7762 0.4850 +3021 7764 0.6260 +3021 7799 0.4530 +3021 7837 0.7190 +3021 7862 0.6820 +3021 7867 0.5670 +3021 7874 0.4130 +3021 7884 0.4530 +3021 7913 0.6830 +3021 7942 0.4370 +3021 7994 0.9910 +3021 8019 0.7830 +3021 8028 0.6360 +3021 8085 0.8290 +3021 8087 0.5260 +3021 8089 0.8220 +3021 8202 0.7050 +3021 8208 0.8220 +3021 8242 0.6960 +3021 8243 0.7400 +3021 8284 0.5720 +3021 8289 0.8840 +3021 8290 0.9090 +3021 8294 0.9370 +3021 8295 0.5460 +3021 8317 0.4240 +3021 8318 0.4840 +3021 8320 0.4550 +3021 8329 0.9410 +3021 8330 0.9270 +3021 8331 0.5480 +3021 8332 0.9270 +3021 8334 0.6390 +3021 8335 0.9270 +3021 8336 0.9410 +3021 8337 0.9990 +3021 8338 0.9990 +3021 8339 0.8880 +3021 8340 0.9140 +3021 8341 0.9190 +3021 8342 0.9260 +3021 8343 0.8840 +3021 8344 0.8890 +3021 8345 0.9190 +3021 8346 0.8840 +3021 8347 0.9830 +3021 8348 0.9850 +3021 8349 0.9990 +3021 8350 0.8860 +3021 8351 0.8550 +3021 8352 0.8570 +3021 8353 0.8570 +3021 8354 0.8560 +3021 8355 0.8550 +3021 8356 0.9160 +3021 8357 0.8550 +3021 8358 0.8560 +3021 8359 0.9370 +3021 8360 0.9380 +3021 8361 0.9990 +3021 8362 0.9370 +3021 8363 0.9360 +3021 8364 0.9380 +3021 8366 0.9360 +3021 8367 0.9380 +3021 8368 0.9690 +3021 8369 0.9990 +3021 8370 0.9380 +3021 8451 0.4490 +3021 8454 0.4010 +3021 8467 0.9100 +3021 8493 0.5490 +3021 8520 0.9780 +3021 8535 0.8720 +3021 8549 0.5010 +3021 8607 0.5750 +3021 8678 0.4340 +3021 8726 0.9570 +3021 8805 0.8150 +3021 8815 0.9560 +3021 8819 0.6190 +3021 8841 0.8900 +3021 8850 0.9980 +3021 8877 0.5240 +3021 8900 0.6460 +3021 8932 0.7230 +3021 8968 0.8550 +3021 8969 0.9300 +3021 8970 0.9860 +3021 8971 0.4120 +3021 8988 0.5460 +3021 9013 0.4860 +3021 9014 0.4380 +3021 9015 0.4790 +3021 9025 0.5850 +3021 9031 0.6990 +3021 9070 0.9150 +3021 9085 0.8630 +3021 9112 0.7880 +3021 9126 0.7960 +3021 9156 0.4510 +3021 9184 0.5340 +3021 9188 0.5400 +3021 9203 0.4660 +3021 9212 0.9020 +3021 9219 0.8050 +3021 9232 0.4320 +3021 9252 0.9590 +3021 9261 0.5920 +3021 9271 0.5480 +3021 9314 0.5460 +3021 9391 0.4250 +3021 9425 0.5270 +3021 9451 0.4310 +3021 9513 0.5030 +3021 9533 0.6330 +3021 9555 0.7900 +3021 9557 0.5520 +3021 9611 0.8520 +3021 9612 0.6990 +3021 9646 0.5630 +3021 9656 0.4760 +3021 9682 0.9980 +3021 9687 0.6070 +3021 9700 0.5010 +3021 9730 0.6630 +3021 9734 0.6470 +3021 9739 0.9240 +3021 9757 0.5090 +3021 9759 0.6730 +3021 9804 0.4630 +3021 9810 0.6410 +3021 9866 0.9200 +3021 9869 0.9820 +3021 9874 0.7290 +3021 9935 0.5880 +3021 10013 0.6750 +3021 10014 0.7430 +3021 10018 0.4320 +3021 10036 0.8500 +3021 10038 0.5810 +3021 10051 0.6980 +3021 10155 0.5920 +3021 10196 0.4320 +3021 10215 0.4760 +3021 10273 0.5550 +3021 10274 0.6790 +3021 10284 0.6540 +3021 10320 0.4010 +3021 10362 0.5530 +3021 10363 0.4180 +3021 10365 0.4160 +3021 10403 0.5790 +3021 10413 0.4390 +3021 10419 0.7080 +3021 10450 0.9240 +3021 10474 0.4970 +3021 10498 0.9750 +3021 10514 0.5940 +3021 10524 0.9150 +3021 10526 0.5640 +3021 10592 0.6340 +3021 10664 0.8500 +3021 10716 0.4250 +3021 10735 0.6960 +3021 10744 0.4570 +3021 10763 0.5400 +3021 10765 0.7070 +3021 10771 0.8550 +3021 10847 0.4430 +3021 10849 0.4420 +3021 10856 0.6020 +3021 10891 0.4750 +3021 10919 0.9980 +3021 10927 0.9610 +3021 10933 0.8410 +3021 10943 0.4900 +3021 10951 0.9980 +3021 10992 0.5180 +3021 11004 0.4190 +3021 11011 0.5640 +3021 11073 0.4040 +3021 11083 0.9640 +3021 11091 0.9990 +3021 11143 0.6490 +3021 11168 0.6800 +3021 11169 0.4110 +3021 11176 0.6920 +3021 11177 0.6010 +3021 11198 0.8860 +3021 11200 0.6650 +3021 11201 0.5060 +3021 11240 0.6820 +3021 11266 0.5520 +3021 11335 0.9990 +3021 11338 0.5650 +3021 22823 0.8160 +3021 22893 0.4210 +3021 22933 0.8670 +3021 22955 0.6340 +3021 22976 0.8490 +3021 22992 0.6820 +3021 23028 0.9590 +3021 23030 0.7730 +3021 23047 0.4490 +3021 23054 0.8330 +3021 23067 0.8450 +3021 23081 0.8560 +3021 23112 0.5800 +3021 23133 0.9850 +3021 23135 0.9630 +3021 23137 0.4230 +3021 23168 0.6120 +3021 23186 0.8800 +3021 23210 0.5770 +3021 23234 0.9240 +3021 23244 0.6320 +3021 23286 0.4930 +3021 23309 0.6840 +3021 23310 0.7550 +3021 23326 0.4030 +3021 23361 0.4320 +3021 23367 0.5110 +3021 23378 0.7340 +3021 23405 0.6930 +3021 23408 0.9480 +3021 23409 0.4740 +3021 23410 0.9500 +3021 23411 0.9220 +3021 23429 0.4290 +3021 23451 0.5840 +3021 23466 0.9820 +3021 23468 0.9990 +3021 23476 0.9950 +3021 23492 0.9740 +3021 23512 0.9620 +3021 23515 0.9250 +3021 23522 0.9770 +3021 23523 0.8200 +3021 23569 0.9050 +3021 23595 0.7910 +3021 23613 0.6220 +3021 23626 0.8190 +3021 23774 0.8820 +3021 25836 0.4030 +3021 25842 0.9990 +3021 25885 0.5290 +3021 25913 0.5500 +3021 25942 0.7900 +3021 26009 0.9150 +3021 26040 0.4040 +3021 26108 0.9810 +3021 26147 0.8190 +3021 26227 0.5020 +3021 26277 0.6620 +3021 26523 0.7040 +3021 27043 0.6200 +3021 27161 0.7040 +3021 27327 0.5690 +3021 27443 0.4590 +3021 29028 0.5830 +3021 29072 0.9850 +3021 29102 0.4450 +3021 29115 0.5490 +3021 29117 0.7080 +3021 29128 0.9950 +3021 29781 0.5890 +3021 29855 0.8930 +3021 29947 0.9990 +3021 29994 0.4600 +3021 30827 0.7620 +3021 30834 0.5010 +3021 50511 0.4280 +3021 51082 0.4560 +3021 51111 0.4580 +3021 51147 0.9750 +3021 51176 0.6920 +3021 51230 0.5480 +3021 51231 0.4550 +3021 51317 0.8870 +3021 51412 0.4680 +3021 51533 0.6730 +3021 51547 0.5710 +3021 51548 0.8760 +3021 51564 0.5760 +3021 51592 0.9730 +3021 51710 0.4330 +3021 51742 0.7870 +3021 51773 0.4880 +3021 51780 0.4370 +3021 51806 0.4480 +3021 53615 0.6210 +3021 54069 0.4270 +3021 54107 0.4400 +3021 54145 0.9210 +3021 54205 0.4870 +3021 54386 0.5700 +3021 54496 0.4570 +3021 54556 0.9440 +3021 54583 0.7330 +3021 54623 0.4360 +3021 54737 0.9810 +3021 54790 0.5340 +3021 54815 0.7620 +3021 54892 0.6180 +3021 54904 0.9700 +3021 54969 0.5420 +3021 55112 0.4220 +3021 55140 0.4860 +3021 55143 0.8290 +3021 55148 0.4420 +3021 55166 0.4880 +3021 55170 0.8580 +3021 55193 0.9920 +3021 55211 0.5080 +3021 55320 0.4310 +3021 55355 0.6280 +3021 55506 0.5300 +3021 55636 0.5840 +3021 55677 0.6210 +3021 55689 0.7490 +3021 55693 0.5220 +3021 55723 0.9980 +3021 55729 0.7460 +3021 55766 0.6670 +3021 55818 0.7410 +3021 55839 0.6790 +3021 55869 0.7980 +3021 55870 0.7020 +3021 55904 0.9410 +3021 55929 0.5030 +3021 56254 0.7740 +3021 56848 0.9640 +3021 56943 0.4820 +3021 56950 0.5750 +3021 56979 0.9080 +3021 57082 0.5110 +3021 57332 0.8660 +3021 57459 0.5990 +3021 57504 0.6200 +3021 57634 0.4810 +3021 57661 0.5050 +3021 57670 0.4110 +3021 57680 0.5980 +3021 57713 0.5320 +3021 57721 0.6920 +3021 58508 0.9190 +3021 60496 0.5040 +3021 64324 0.6160 +3021 64425 0.5540 +3021 64426 0.6140 +3021 64754 0.7260 +3021 64769 0.5200 +3021 64919 0.4370 +3021 64946 0.4700 +3021 65980 0.6130 +3021 79019 0.4090 +3021 79101 0.4140 +3021 79142 0.6490 +3021 79172 0.5590 +3021 79447 0.6900 +3021 79577 0.5480 +3021 79595 0.5330 +3021 79685 0.5180 +3021 79710 0.4460 +3021 79711 0.9610 +3021 79723 0.7410 +3021 79813 0.9800 +3021 79823 0.5730 +3021 79831 0.4140 +3021 79885 0.6120 +3021 79923 0.7280 +3021 79960 0.5370 +3021 79968 0.5890 +3021 79980 0.4320 +3021 79991 0.4840 +3021 80012 0.8920 +3021 80152 0.8000 +3021 80198 0.4130 +3021 80312 0.5740 +3021 80314 0.4400 +3021 80335 0.8160 +3021 80349 0.5010 +3021 80818 0.4320 +3021 80853 0.5410 +3021 80854 0.8920 +3021 81620 0.5450 +3021 81631 0.4610 +3021 81669 0.7110 +3021 83439 0.5620 +3021 83540 0.4640 +3021 83852 0.6260 +3021 83860 0.9040 +3021 83903 0.7980 +3021 83933 0.5260 +3021 84084 0.4310 +3021 84148 0.5770 +3021 84152 0.5130 +3021 84172 0.5940 +3021 84260 0.4530 +3021 84289 0.4690 +3021 84444 0.8900 +3021 84656 0.8080 +3021 84661 0.7840 +3021 84678 0.7090 +3021 84717 0.9520 +3021 84733 0.9580 +3021 84759 0.4520 +3021 84787 0.4570 +3021 84823 0.5070 +3021 84962 0.5410 +3021 85236 0.9890 +3021 89891 0.4220 +3021 90665 0.5230 +3021 90780 0.9890 +3021 91860 0.4300 +3021 92292 0.4600 +3021 93624 0.5690 +3021 94239 0.8600 +3021 112398 0.9170 +3021 112399 0.7500 +3021 112869 0.9690 +3021 114799 0.4560 +3021 114803 0.4330 +3021 115004 0.4920 +3021 115560 0.4310 +3021 116985 0.4220 +3021 120892 0.5870 +3021 121504 0.9390 +3021 121536 0.8020 +3021 123169 0.7020 +3021 125476 0.4630 +3021 126961 0.9390 +3021 128312 0.9210 +3021 133482 0.8650 +3021 137902 0.7170 +3021 140690 0.5300 +3021 140836 0.8390 +3021 143689 0.5600 +3021 144097 0.8190 +3021 146713 0.4970 +3021 148266 0.4310 +3021 150572 0.4700 +3021 151246 0.5630 +3021 151648 0.4980 +3021 152098 0.9190 +3021 153090 0.5060 +3021 157570 0.4560 +3021 158983 0.8620 +3021 163688 0.4210 +3021 171023 0.4170 +3021 192669 0.7910 +3021 192670 0.6990 +3021 200424 0.5050 +3021 201254 0.5470 +3021 221037 0.7170 +3021 221656 0.7260 +3021 221830 0.4550 +3021 253175 0.8470 +3021 255626 0.9160 +3021 257218 0.5530 +3021 283149 0.5620 +3021 284390 0.4310 +3021 286436 0.8610 +3021 317772 0.9360 +3021 333932 0.8710 +3021 338376 0.4140 +3021 340602 0.4760 +3021 345456 0.4560 +3021 359787 0.5520 +3021 375189 0.4530 +3021 378708 0.6850 +3021 387103 0.5970 +3021 387893 0.7450 +3021 390245 0.4120 +3021 440093 0.8100 +3021 440686 0.8820 +3021 440689 0.8790 +3021 474381 0.5230 +3021 474382 0.6650 +3021 554313 0.9360 +3021 653604 0.9540 +3021 728378 0.5410 +3021 100170841 0.5060 +3021 100532731 0.7350 +3021 102723407 0.5940 +3021 114483833 0.8700 +3024 3146 0.5470 +3024 3148 0.5600 +3024 3921 0.4630 +3024 4001 0.4500 +3024 4676 0.4140 +3024 5578 0.6460 +3024 5580 0.5250 +3024 5832 0.4120 +3024 5925 0.4050 +3024 6189 0.4160 +3024 6193 0.4520 +3024 6373 0.7790 +3024 6418 0.5850 +3024 6838 0.4570 +3024 7157 0.4740 +3024 7175 0.4380 +3024 7290 0.4990 +3024 7343 0.4560 +3024 7564 0.4890 +3024 7621 0.6190 +3024 7743 0.6100 +3024 7846 0.4360 +3024 7918 0.4280 +3024 8290 0.6790 +3024 8294 0.7480 +3024 8329 0.7870 +3024 8335 0.6460 +3024 8336 0.7960 +3024 8337 0.9940 +3024 8338 0.9950 +3024 8342 0.4280 +3024 8345 0.5090 +3024 8347 0.4320 +3024 8348 0.4330 +3024 8349 0.9870 +3024 8350 0.7160 +3024 8351 0.4410 +3024 8352 0.7630 +3024 8353 0.6470 +3024 8354 0.5350 +3024 8355 0.4470 +3024 8356 0.6680 +3024 8357 0.4050 +3024 8358 0.7330 +3024 8359 0.7640 +3024 8360 0.8200 +3024 8361 0.5780 +3024 8362 0.7980 +3024 8363 0.8070 +3024 8364 0.8200 +3024 8366 0.8200 +3024 8367 0.8080 +3024 8368 0.8310 +3024 8370 0.7640 +3024 8815 0.6340 +3024 8850 0.5490 +3024 8900 0.6660 +3024 8968 0.4610 +3024 9229 0.4970 +3024 9454 0.5290 +3024 9455 0.5130 +3024 9456 0.7040 +3024 9555 0.4860 +3024 9904 0.4760 +3024 10467 0.5860 +3024 10919 0.5690 +3024 11198 0.5390 +3024 23144 0.4120 +3024 23451 0.4340 +3024 23523 0.5510 +3024 23560 0.4200 +3024 25842 0.5380 +3024 26578 0.4700 +3024 29855 0.4990 +3024 29889 0.4450 +3024 50809 0.4070 +3024 50944 0.4980 +3024 51087 0.4200 +3024 51574 0.5970 +3024 55771 0.5640 +3024 56829 0.5170 +3024 57634 0.4240 +3024 63977 0.5710 +3024 65095 0.4340 +3024 79159 0.5030 +3024 80222 0.4030 +3024 84294 0.5490 +3024 84524 0.5920 +3024 85437 0.5470 +3024 92815 0.7660 +3024 121504 0.8120 +3024 126961 0.5960 +3024 132243 0.8820 +3024 197407 0.5060 +3024 221613 0.7820 +3024 255626 0.4060 +3024 284695 0.4030 +3024 317772 0.6720 +3024 341567 0.9230 +3024 440689 0.4370 +3024 554313 0.8070 +3024 653604 0.4670 +3026 3036 0.5510 +3026 3037 0.6440 +3026 3038 0.5420 +3026 3053 0.8090 +3026 3096 0.4220 +3026 3161 0.5250 +3026 3263 0.4160 +3026 3273 0.7750 +3026 3344 0.4490 +3026 3373 0.5330 +3026 3426 0.4420 +3026 3697 0.4990 +3026 3698 0.4710 +3026 4018 0.4130 +3026 4524 0.5010 +3026 5054 0.7280 +3026 5199 0.4180 +3026 5274 0.4240 +3026 5340 0.6660 +3026 5345 0.6090 +3026 5624 0.4410 +3026 5627 0.6190 +3026 5754 0.7740 +3026 5792 0.4210 +3026 6041 0.5120 +3026 6677 0.5430 +3026 6694 0.4350 +3026 6975 0.4250 +3026 7035 0.4320 +3026 7037 0.4200 +3026 7056 0.5280 +3026 7130 0.5250 +3026 7276 0.4320 +3026 8692 0.5290 +3026 8858 0.4040 +3026 9104 0.4020 +3026 23189 0.4980 +3026 23524 0.4250 +3026 26103 0.4690 +3026 29105 0.4280 +3026 29997 0.4010 +3026 30820 0.8090 +3026 50636 0.4090 +3026 54101 0.5130 +3026 55088 0.4090 +3026 57522 0.5610 +3026 66005 0.4160 +3026 79949 0.4310 +3026 80258 0.4340 +3026 84250 0.4540 +3026 114327 0.4340 +3026 133015 0.4480 +3026 135138 0.4490 +3026 148362 0.4550 +3026 151651 0.4890 +3026 197335 0.8670 +3026 200844 0.4280 +3026 219670 0.4150 +3026 345193 0.4660 +3026 374354 0.4840 +3026 647174 0.4290 +3028 3030 0.9730 +3028 3032 0.9710 +3028 3033 0.8580 +3028 3155 0.4290 +3028 3292 0.6080 +3028 3293 0.4650 +3028 3295 0.5890 +3028 3396 0.5520 +3028 3421 0.4190 +3028 3712 0.4180 +3028 4191 0.5950 +3028 4201 0.4150 +3028 4234 0.5550 +3028 4329 0.4840 +3028 4702 0.4350 +3028 4704 0.4170 +3028 4712 0.4840 +3028 4713 0.6030 +3028 4715 0.4040 +3028 4716 0.4300 +3028 4723 0.6430 +3028 4729 0.5500 +3028 5071 0.4270 +3028 5245 0.5510 +3028 5832 0.4090 +3028 6182 0.4900 +3028 6342 0.4180 +3028 6389 0.4100 +3028 6628 0.4740 +3028 6633 0.4570 +3028 6715 0.4180 +3028 6770 0.4230 +3028 6876 0.4220 +3028 6895 0.9110 +3028 7247 0.5450 +3028 7257 0.5430 +3028 7284 0.5440 +3028 7384 0.5400 +3028 7388 0.5100 +3028 7923 0.4530 +3028 8192 0.5460 +3028 8243 0.5830 +3028 8260 0.5350 +3028 8575 0.7310 +3028 8630 0.5310 +3028 9131 0.5220 +3028 9512 0.4300 +3028 9692 0.9990 +3028 9804 0.4570 +3028 10075 0.9750 +3028 10131 0.5090 +3028 10245 0.4970 +3028 10248 0.9270 +3028 10295 0.4690 +3028 10423 0.4590 +3028 10449 0.9800 +3028 10452 0.5320 +3028 10455 0.4680 +3028 10476 0.4460 +3028 10556 0.9050 +3028 10557 0.9100 +3028 10775 0.9200 +3028 10785 0.5720 +3028 10799 0.9060 +3028 10940 0.9040 +3028 10978 0.9020 +3028 11102 0.9000 +3028 11112 0.4780 +3028 23405 0.9000 +3028 23600 0.4330 +3028 26275 0.5310 +3028 26523 0.7210 +3028 27034 0.4760 +3028 27161 0.9020 +3028 29102 0.7210 +3028 51367 0.9210 +3028 51478 0.4170 +3028 51605 0.5990 +3028 51741 0.5190 +3028 54487 0.7200 +3028 54539 0.6300 +3028 54884 0.4350 +3028 54913 0.9060 +3028 54931 0.9990 +3028 55006 0.7630 +3028 55862 0.6560 +3028 56993 0.4340 +3028 57570 0.4210 +3028 60528 0.6820 +3028 64320 0.4690 +3028 64743 0.4440 +3028 65018 0.4350 +3028 79072 0.4130 +3028 79154 0.8840 +3028 79897 0.9030 +3028 80746 0.5400 +3028 81887 0.4980 +3028 83941 0.4560 +3028 84263 0.4260 +3028 84681 0.4020 +3028 93587 0.6170 +3028 115708 0.6130 +3028 138716 0.5760 +3028 158234 0.6170 +3028 158787 0.5030 +3028 161835 0.9820 +3028 192669 0.7200 +3028 192670 0.7200 +3028 283989 0.5510 +3028 374291 0.4910 +3029 3105 0.4510 +3029 3145 0.4600 +3029 3242 0.4460 +3029 4141 0.4080 +3029 4706 0.4410 +3029 5238 0.6360 +3029 5832 0.4020 +3029 6521 0.4050 +3029 7001 0.5120 +3029 7167 0.5120 +3029 9070 0.4850 +3029 9380 0.4450 +3029 11112 0.4660 +3029 11315 0.5900 +3029 23474 0.4080 +3029 23479 0.4290 +3029 23491 0.6780 +3029 23608 0.6770 +3029 23609 0.7060 +3029 25793 0.4350 +3029 29086 0.4340 +3029 51024 0.4260 +3029 51031 0.5420 +3029 51094 0.4360 +3029 51110 0.5720 +3029 51179 0.4310 +3029 51218 0.5090 +3029 54059 0.4370 +3029 54363 0.4150 +3029 55437 0.5110 +3029 55515 0.7670 +3029 55520 0.4100 +3029 65018 0.4780 +3029 80324 0.4490 +3029 80700 0.6650 +3029 81889 0.4780 +3029 84656 0.4400 +3029 84693 0.4260 +3029 84842 0.4240 +3029 197257 0.9330 +3029 221223 0.7710 +3029 255374 0.4780 +3029 257202 0.5010 +3029 283871 0.7490 +3029 493869 0.5010 +3029 100130890 0.4400 +3029 100131187 0.4640 +3030 3032 0.9990 +3030 3033 0.6960 +3030 3155 0.7380 +3030 3157 0.5560 +3030 3158 0.6450 +3030 3242 0.4130 +3030 3295 0.7290 +3030 3305 0.4440 +3030 3313 0.6100 +3030 3418 0.4710 +3030 3419 0.4160 +3030 3420 0.4220 +3030 3658 0.4110 +3030 3712 0.9530 +3030 4191 0.5730 +3030 4329 0.5000 +3030 4609 0.4820 +3030 4697 0.4720 +3030 4704 0.5030 +3030 4705 0.4870 +3030 4706 0.5330 +3030 4720 0.4770 +3030 4722 0.4800 +3030 4723 0.4940 +3030 4728 0.5370 +3030 4967 0.7660 +3030 5019 0.6610 +3030 5091 0.4490 +3030 5095 0.5860 +3030 5096 0.7100 +3030 5162 0.5360 +3030 5164 0.4030 +3030 5165 0.4150 +3030 5166 0.6210 +3030 5245 0.5700 +3030 5250 0.4440 +3030 5465 0.5120 +3030 5538 0.4090 +3030 6124 0.4500 +3030 6187 0.4870 +3030 6205 0.4630 +3030 6222 0.4230 +3030 6296 0.5490 +3030 6342 0.8500 +3030 6389 0.6270 +3030 6390 0.4510 +3030 6391 0.4060 +3030 6648 0.5040 +3030 6667 0.5680 +3030 7019 0.4730 +3030 7167 0.4110 +3030 7184 0.4530 +3030 7384 0.4720 +3030 7385 0.6220 +3030 7416 0.5190 +3030 7818 0.5610 +3030 8309 0.7160 +3030 8310 0.9690 +3030 8361 0.5270 +3030 8801 0.4190 +3030 8802 0.5720 +3030 8803 0.4950 +3030 8878 0.5320 +3030 9343 0.4990 +3030 9349 0.4330 +3030 9374 0.4030 +3030 9380 0.4180 +3030 9399 0.4440 +3030 9553 0.5380 +3030 9607 0.6360 +3030 9801 0.5010 +3030 10005 0.5620 +3030 10202 0.6020 +3030 10247 0.4780 +3030 10295 0.4820 +3030 10449 0.9980 +3030 10455 0.6870 +3030 10891 0.4050 +3030 10901 0.4740 +3030 10935 0.4250 +3030 10965 0.4970 +3030 10989 0.5200 +3030 11112 0.4890 +3030 23305 0.4490 +3030 23417 0.4550 +3030 23530 0.5070 +3030 23597 0.5210 +3030 23600 0.4320 +3030 26063 0.4810 +3030 26275 0.9520 +3030 26589 0.4540 +3030 27034 0.9610 +3030 27089 0.4380 +3030 27349 0.4420 +3030 28976 0.9380 +3030 51021 0.5580 +3030 51084 0.4920 +3030 51102 0.9440 +3030 51144 0.4470 +3030 51264 0.4710 +3030 51497 0.4370 +3030 51703 0.5220 +3030 51741 0.6190 +3030 54511 0.5890 +3030 54596 0.5430 +3030 54884 0.4120 +3030 54988 0.4390 +3030 54995 0.4850 +3030 55052 0.4110 +3030 55210 0.4370 +3030 55289 0.5370 +3030 55735 0.4600 +3030 55825 0.4580 +3030 55856 0.4610 +3030 55862 0.6430 +3030 55902 0.4840 +3030 56898 0.4670 +3030 56922 0.9490 +3030 57129 0.4800 +3030 57591 0.4360 +3030 60488 0.5130 +3030 63875 0.5020 +3030 63893 0.4280 +3030 64064 0.5280 +3030 64087 0.9550 +3030 64432 0.4210 +3030 64965 0.5190 +3030 64968 0.4620 +3030 64969 0.4570 +3030 64975 0.4480 +3030 64976 0.6570 +3030 64979 0.4760 +3030 64981 0.5100 +3030 64983 0.4120 +3030 65985 0.4260 +3030 79071 0.4900 +3030 79575 0.4070 +3030 79968 0.5100 +3030 80221 0.6760 +3030 80724 0.5920 +3030 84129 0.5850 +3030 84263 0.8470 +3030 84293 0.4400 +3030 84532 0.5200 +3030 84545 0.4780 +3030 84557 0.4330 +3030 84693 0.4270 +3030 90624 0.4180 +3030 91272 0.4760 +3030 115817 0.4010 +3030 126129 0.5650 +3030 132949 0.5470 +3030 140856 0.4160 +3030 197322 0.5310 +3030 254042 0.4030 +3030 284422 0.5080 +3030 285613 0.4220 +3030 341392 0.4160 +3030 348158 0.4010 +3030 376497 0.6340 +3030 641371 0.4360 +3030 109703458 0.4120 +3030 122405565 0.5080 +3032 3033 0.9940 +3032 3081 0.4310 +3032 3155 0.9700 +3032 3156 0.5340 +3032 3157 0.9930 +3032 3158 0.9940 +3032 3293 0.5840 +3032 3295 0.9300 +3032 3417 0.5980 +3032 3418 0.5930 +3032 3419 0.4310 +3032 3420 0.4460 +3032 3712 0.6790 +3032 4191 0.6390 +3032 4199 0.4550 +3032 4200 0.4080 +3032 4329 0.9470 +3032 4597 0.5440 +3032 4598 0.6810 +3032 4609 0.4830 +3032 4696 0.4150 +3032 4704 0.4890 +3032 4705 0.5130 +3032 4711 0.5100 +3032 4716 0.4200 +3032 4720 0.5430 +3032 4722 0.4410 +3032 4723 0.5140 +3032 4728 0.6750 +3032 4967 0.7280 +3032 5019 0.9440 +3032 5091 0.4320 +3032 5095 0.9530 +3032 5096 0.9660 +3032 5162 0.6150 +3032 5166 0.4690 +3032 5189 0.5910 +3032 5191 0.8370 +3032 5192 0.6720 +3032 5194 0.6880 +3032 5226 0.4120 +3032 5230 0.6320 +3032 5232 0.5690 +3032 5250 0.5020 +3032 5264 0.4530 +3032 5465 0.5310 +3032 5562 0.4890 +3032 5586 0.4360 +3032 5824 0.5590 +3032 5825 0.4560 +3032 5830 0.6970 +3032 5836 0.4150 +3032 6296 0.5610 +3032 6319 0.4530 +3032 6342 0.7930 +3032 6389 0.7850 +3032 6390 0.5880 +3032 6391 0.4620 +3032 6392 0.5120 +3032 6646 0.4920 +3032 6667 0.5190 +3032 6720 0.4850 +3032 6721 0.4640 +3032 6915 0.7970 +3032 7019 0.4420 +3032 7051 0.4220 +3032 7167 0.4970 +3032 7384 0.5680 +3032 7385 0.7630 +3032 7407 0.4080 +3032 7416 0.5030 +3032 7915 0.4570 +3032 7923 0.4600 +3032 8309 0.6730 +3032 8310 0.9900 +3032 8540 0.4960 +3032 8659 0.4120 +3032 8800 0.4820 +3032 8801 0.8970 +3032 8802 0.9400 +3032 8803 0.9150 +3032 8878 0.5270 +3032 9085 0.6360 +3032 9377 0.4600 +3032 9399 0.5860 +3032 9425 0.6360 +3032 9563 0.4580 +3032 9619 0.4510 +3032 10005 0.4790 +3032 10059 0.4030 +3032 10449 0.9610 +3032 10452 0.5560 +3032 10455 0.9890 +3032 10476 0.4420 +3032 10768 0.4110 +3032 10891 0.4070 +3032 10901 0.4030 +3032 10935 0.5030 +3032 10989 0.5230 +3032 11001 0.4190 +3032 11112 0.5390 +3032 11331 0.4850 +3032 23305 0.5890 +3032 23410 0.5970 +3032 23417 0.5320 +3032 26063 0.4370 +3032 26275 0.7640 +3032 27034 0.7040 +3032 27089 0.4620 +3032 27349 0.4080 +3032 28976 0.7610 +3032 51084 0.8720 +3032 51102 0.9320 +3032 51144 0.5700 +3032 51703 0.6420 +3032 51741 0.4510 +3032 54511 0.9480 +3032 54677 0.8220 +3032 54988 0.5450 +3032 54995 0.4820 +3032 55028 0.6940 +3032 55268 0.6710 +3032 55289 0.5540 +3032 55670 0.5320 +3032 55825 0.4640 +3032 55862 0.9390 +3032 55902 0.9320 +3032 56898 0.4550 +3032 56922 0.5570 +3032 57017 0.4620 +3032 58531 0.4180 +3032 64064 0.9320 +3032 64087 0.5580 +3032 65985 0.5190 +3032 79072 0.4340 +3032 79611 0.9110 +3032 79777 0.4740 +3032 80221 0.4690 +3032 80347 0.4530 +3032 80724 0.5170 +3032 81616 0.4530 +3032 83693 0.4410 +3032 84100 0.4830 +3032 84129 0.5480 +3032 84263 0.9180 +3032 84320 0.4690 +3032 84532 0.9310 +3032 84693 0.4450 +3032 90506 0.4060 +3032 91452 0.5120 +3032 116285 0.4880 +3032 123876 0.5180 +3032 124359 0.6360 +3032 126129 0.5390 +3032 130752 0.4210 +3032 131118 0.4100 +3032 132949 0.5850 +3032 140856 0.5610 +3032 253175 0.6360 +3032 284422 0.5020 +3032 341392 0.5410 +3032 348158 0.5550 +3032 376497 0.5640 +3032 414149 0.4640 +3032 548645 0.4270 +3032 109703458 0.5130 +3032 122405565 0.5020 +3033 3134 0.5520 +3033 3155 0.6610 +3033 3157 0.6000 +3033 3158 0.6130 +3033 3295 0.8920 +3033 3417 0.5080 +3033 3418 0.6050 +3033 3712 0.7630 +3033 3991 0.4090 +3033 4191 0.7130 +3033 4329 0.4110 +3033 5019 0.6020 +3033 5091 0.4910 +3033 5096 0.6630 +3033 5162 0.4840 +3033 5465 0.5290 +3033 5595 0.5800 +3033 5683 0.4930 +3033 5834 0.4360 +3033 5836 0.4640 +3033 5837 0.4190 +3033 5860 0.4260 +3033 6261 0.4220 +3033 6296 0.5740 +3033 6319 0.4310 +3033 6342 0.9050 +3033 6389 0.5750 +3033 6390 0.5500 +3033 6391 0.5430 +3033 6652 0.4790 +3033 6697 0.4100 +3033 6720 0.4130 +3033 6821 0.4330 +3033 6833 0.4280 +3033 7167 0.4930 +3033 8309 0.6900 +3033 8310 0.7650 +3033 8424 0.6380 +3033 8801 0.5330 +3033 8802 0.6430 +3033 8803 0.4750 +3033 9085 0.5810 +3033 9380 0.4220 +3033 9399 0.5170 +3033 9425 0.4690 +3033 9563 0.4380 +3033 9607 0.8740 +3033 9862 0.5240 +3033 10005 0.8730 +3033 10075 0.4270 +3033 10449 0.9580 +3033 10455 0.8500 +3033 10537 0.4280 +3033 10891 0.4460 +3033 11112 0.5510 +3033 11332 0.5870 +3033 22982 0.5310 +3033 23171 0.4550 +3033 23181 0.5230 +3033 23305 0.4230 +3033 23417 0.4110 +3033 23597 0.6030 +3033 23600 0.4050 +3033 26027 0.5150 +3033 26063 0.4370 +3033 26275 0.6720 +3033 27034 0.7110 +3033 28976 0.7620 +3033 51703 0.4940 +3033 54511 0.5090 +3033 54596 0.5240 +3033 54677 0.7210 +3033 54884 0.4760 +3033 54988 0.5140 +3033 54995 0.5300 +3033 55217 0.6790 +3033 55236 0.4450 +3033 55268 0.9650 +3033 55289 0.6080 +3033 55301 0.5230 +3033 55825 0.4830 +3033 55856 0.5410 +3033 55862 0.7070 +3033 55902 0.5570 +3033 56898 0.4560 +3033 56922 0.4660 +3033 57104 0.4350 +3033 57591 0.4010 +3033 57609 0.5250 +3033 64064 0.4270 +3033 64087 0.4860 +3033 65985 0.5030 +3033 79154 0.4360 +3033 79611 0.4840 +3033 79746 0.4400 +3033 80221 0.6740 +3033 80724 0.7150 +3033 84129 0.7260 +3033 84263 0.9160 +3033 84532 0.5590 +3033 84693 0.5600 +3033 84795 0.4510 +3033 84869 0.4130 +3033 114883 0.4260 +3033 116285 0.5200 +3033 123876 0.4770 +3033 124359 0.4690 +3033 126129 0.4400 +3033 132949 0.5500 +3033 134147 0.7950 +3033 134526 0.5300 +3033 137872 0.4460 +3033 140856 0.5170 +3033 157869 0.5230 +3033 161835 0.6300 +3033 197322 0.5300 +3033 253175 0.5810 +3033 254042 0.5750 +3033 283985 0.4880 +3033 284422 0.6220 +3033 285527 0.5490 +3033 341392 0.4780 +3033 348158 0.4870 +3033 376497 0.6790 +3033 109703458 0.5150 +3033 122405565 0.6220 +3034 3067 0.9440 +3034 3073 0.5410 +3034 3074 0.5410 +3034 3081 0.5410 +3034 4942 0.5180 +3034 5053 0.7990 +3034 5625 0.4480 +3034 6898 0.5210 +3034 6999 0.4380 +3034 7703 0.5490 +3034 7789 0.4730 +3034 8458 0.4480 +3034 8564 0.5520 +3034 8802 0.4340 +3034 8942 0.5310 +3034 9615 0.8520 +3034 10157 0.5120 +3034 10841 0.8770 +3034 10894 0.5290 +3034 10993 0.5530 +3034 23498 0.4110 +3034 25854 0.5410 +3034 29958 0.4030 +3034 51733 0.4530 +3034 55748 0.9370 +3034 57571 0.9060 +3034 79364 0.4770 +3034 79814 0.7530 +3034 84735 0.9180 +3034 131669 0.9950 +3034 144193 0.9690 +3034 158586 0.4730 +3034 317662 0.5410 +3034 440590 0.4670 +3035 3376 0.8490 +3035 3643 0.4250 +3035 3735 0.8880 +3035 4141 0.8780 +3035 4677 0.8620 +3035 5080 0.4150 +3035 5184 0.6330 +3035 5188 0.5600 +3035 5245 0.4250 +3035 5394 0.4300 +3035 5705 0.5170 +3035 5707 0.4140 +3035 5713 0.4620 +3035 5717 0.4100 +3035 5832 0.4470 +3035 5859 0.8350 +3035 5917 0.7900 +3035 6125 0.4030 +3035 6147 0.4040 +3035 6187 0.4050 +3035 6188 0.4500 +3035 6203 0.4300 +3035 6301 0.8660 +3035 6625 0.4440 +3035 6657 0.5190 +3035 6729 0.5060 +3035 6737 0.5060 +3035 6738 0.5850 +3035 6897 0.8650 +3035 6942 0.5730 +3035 7401 0.4330 +3035 7407 0.8460 +3035 7453 0.8630 +3035 8192 0.4110 +3035 8458 0.4030 +3035 8565 0.9240 +3035 8697 0.4590 +3035 8894 0.5020 +3035 9255 0.7430 +3035 9343 0.4480 +3035 9521 0.4770 +3035 9669 0.5490 +3035 10056 0.4680 +3035 10102 0.5540 +3035 10213 0.6330 +3035 10352 0.8290 +3035 10664 0.4360 +3035 10667 0.7020 +3035 10985 0.8470 +3035 10987 0.4100 +3035 23395 0.8390 +3035 23438 0.9560 +3035 23515 0.5080 +3035 23644 0.4090 +3035 25973 0.8350 +3035 26047 0.4050 +3035 26053 0.4960 +3035 27102 0.4650 +3035 29789 0.4480 +3035 51067 0.8510 +3035 51095 0.4810 +3035 51520 0.8440 +3035 54148 0.4040 +3035 54715 0.4250 +3035 54938 0.8160 +3035 54965 0.4050 +3035 54974 0.8150 +3035 55157 0.8560 +3035 55278 0.4280 +3035 55324 0.4290 +3035 55696 0.4990 +3035 55699 0.8490 +3035 55714 0.4090 +3035 56954 0.4440 +3035 57038 0.8160 +3035 57176 0.8480 +3035 57505 0.8560 +3035 60528 0.5170 +3035 64067 0.5640 +3035 79587 0.8150 +3035 79731 0.8670 +3035 79955 0.4060 +3035 80222 0.8700 +3035 84464 0.4200 +3035 85476 0.4800 +3035 92399 0.5030 +3035 92935 0.8290 +3035 93659 0.7610 +3035 93986 0.5190 +3035 116987 0.4150 +3035 123263 0.4470 +3035 123283 0.8700 +3035 124454 0.8160 +3035 137868 0.5870 +3035 153396 0.4170 +3035 266727 0.4190 +3035 440275 0.4820 +3036 3037 0.4150 +3036 3161 0.5410 +3036 3373 0.7300 +3036 3433 0.4200 +3036 3434 0.4200 +3036 3437 0.4200 +3036 3569 0.4290 +3036 3698 0.4580 +3036 3831 0.4200 +3036 6449 0.4210 +3036 6674 0.4200 +3036 6677 0.6420 +3036 6785 0.4230 +3036 7130 0.5790 +3036 7267 0.4200 +3036 7268 0.4200 +3036 7358 0.8060 +3036 7403 0.5560 +3036 7404 0.5560 +3036 8100 0.4200 +3036 8372 0.4410 +3036 8459 0.4200 +3036 8460 0.4250 +3036 8692 0.6890 +3036 8813 0.4350 +3036 9646 0.4200 +3036 9812 0.5060 +3036 9945 0.4670 +3036 10513 0.4200 +3036 10894 0.4080 +3036 10953 0.4200 +3036 10963 0.4200 +3036 10994 0.5390 +3036 23135 0.5630 +3036 23264 0.4200 +3036 23331 0.4200 +3036 23548 0.4200 +3036 23553 0.4190 +3036 24138 0.4200 +3036 26061 0.5390 +3036 27031 0.4200 +3036 29066 0.4200 +3036 29880 0.4340 +3036 51550 0.4200 +3036 54557 0.4210 +3036 54902 0.4200 +3036 54970 0.4200 +3036 55017 0.4200 +3036 57214 0.4240 +3036 57587 0.4200 +3036 63943 0.4200 +3036 64837 0.4200 +3036 79573 0.4200 +3036 79657 0.4200 +3036 79713 0.4200 +3036 81556 0.4200 +3036 83444 0.4200 +3036 83538 0.4200 +3036 83857 0.4200 +3036 84618 0.4200 +3036 84899 0.4200 +3036 89953 0.4200 +3036 93034 0.4200 +3036 130502 0.4200 +3036 147700 0.4230 +3036 158248 0.4200 +3036 159013 0.4200 +3036 160335 0.4200 +3036 160418 0.4200 +3036 161582 0.4200 +3036 164118 0.4200 +3036 283237 0.4200 +3036 404037 0.4510 +3036 439996 0.4200 +3036 100526794 0.4200 +3036 100532724 0.4200 +3037 3038 0.5590 +3037 3161 0.7170 +3037 3339 0.6000 +3037 3373 0.8280 +3037 3433 0.4200 +3037 3434 0.4200 +3037 3437 0.4200 +3037 3481 0.4600 +3037 3553 0.4690 +3037 3569 0.4940 +3037 3831 0.4200 +3037 4015 0.4280 +3037 4312 0.4210 +3037 4314 0.4290 +3037 4811 0.5260 +3037 5054 0.4710 +3037 5595 0.4270 +3037 5731 0.4060 +3037 5732 0.4760 +3037 5734 0.6340 +3037 5739 0.4370 +3037 5743 0.5970 +3037 5806 0.6810 +3037 6383 0.5090 +3037 6449 0.4200 +3037 6674 0.4200 +3037 6677 0.7870 +3037 7040 0.4890 +3037 7099 0.4430 +3037 7130 0.7960 +3037 7267 0.4200 +3037 7268 0.4200 +3037 7358 0.8420 +3037 7403 0.5560 +3037 7404 0.5560 +3037 8100 0.4200 +3037 8372 0.4640 +3037 8459 0.4200 +3037 8460 0.4230 +3037 8692 0.8130 +3037 8813 0.4260 +3037 9210 0.5980 +3037 9510 0.4970 +3037 9646 0.4200 +3037 9812 0.5060 +3037 9945 0.5200 +3037 10398 0.4760 +3037 10513 0.4300 +3037 10631 0.4050 +3037 10894 0.4430 +3037 10953 0.4290 +3037 10963 0.4220 +3037 10994 0.5390 +3037 22795 0.4860 +3037 23135 0.5800 +3037 23264 0.4200 +3037 23331 0.4240 +3037 23548 0.4200 +3037 23553 0.5970 +3037 23670 0.4360 +3037 24138 0.4200 +3037 26061 0.5390 +3037 26585 0.4120 +3037 27031 0.4200 +3037 29066 0.4200 +3037 51550 0.4200 +3037 54557 0.4200 +3037 54902 0.4200 +3037 54970 0.4200 +3037 55017 0.4200 +3037 57214 0.5560 +3037 57587 0.4200 +3037 63943 0.4200 +3037 64837 0.4200 +3037 79573 0.4200 +3037 79657 0.4240 +3037 79713 0.4200 +3037 81556 0.4200 +3037 83444 0.4200 +3037 83538 0.4200 +3037 83857 0.4210 +3037 84618 0.4200 +3037 84899 0.4200 +3037 89953 0.4200 +3037 93034 0.4210 +3037 93649 0.5220 +3037 130502 0.4200 +3037 147700 0.4200 +3037 158248 0.4200 +3037 159013 0.4200 +3037 160335 0.4200 +3037 160418 0.4250 +3037 161582 0.4200 +3037 164118 0.4200 +3037 283237 0.4200 +3037 375790 0.4860 +3037 388698 0.4240 +3037 439996 0.4200 +3037 100526794 0.4200 +3037 100532724 0.4200 +3038 3161 0.6280 +3038 3373 0.6630 +3038 3433 0.4200 +3038 3434 0.4200 +3038 3437 0.4200 +3038 3698 0.4320 +3038 3831 0.4200 +3038 6449 0.4200 +3038 6674 0.4200 +3038 6677 0.6490 +3038 7130 0.5290 +3038 7267 0.4200 +3038 7268 0.4200 +3038 7358 0.8180 +3038 7360 0.4080 +3038 7403 0.5560 +3038 7404 0.5560 +3038 8100 0.4200 +3038 8372 0.5270 +3038 8459 0.4200 +3038 8460 0.4200 +3038 8692 0.6920 +3038 8813 0.4160 +3038 9646 0.4200 +3038 9812 0.5060 +3038 10513 0.4200 +3038 10953 0.4200 +3038 10963 0.4200 +3038 10994 0.5390 +3038 23135 0.5560 +3038 23264 0.4200 +3038 23331 0.4200 +3038 23548 0.4200 +3038 23553 0.4780 +3038 24138 0.4200 +3038 26061 0.5390 +3038 27031 0.4200 +3038 29066 0.4200 +3038 51550 0.4200 +3038 54557 0.4200 +3038 54902 0.4200 +3038 54970 0.4200 +3038 55017 0.4200 +3038 57214 0.4380 +3038 57587 0.4200 +3038 63827 0.4060 +3038 63943 0.4200 +3038 64837 0.4200 +3038 79573 0.4200 +3038 79657 0.4200 +3038 79713 0.4200 +3038 81556 0.4200 +3038 83444 0.4200 +3038 83538 0.4200 +3038 83857 0.4200 +3038 84618 0.4200 +3038 84899 0.4200 +3038 89953 0.4200 +3038 93034 0.4200 +3038 130502 0.4200 +3038 147700 0.4200 +3038 158248 0.4200 +3038 159013 0.4200 +3038 160335 0.4250 +3038 160418 0.4210 +3038 161582 0.4200 +3038 164118 0.4200 +3038 283237 0.4200 +3038 404037 0.4080 +3038 439996 0.4200 +3038 100526794 0.4200 +3038 100532724 0.4200 +3039 3040 0.9990 +3039 3042 0.7330 +3039 3043 0.9990 +3039 3045 0.9970 +3039 3046 0.9910 +3039 3047 0.9590 +3039 3048 0.9950 +3039 3049 0.6660 +3039 3050 0.7170 +3039 3240 0.9950 +3039 3250 0.6230 +3039 3263 0.5030 +3039 3630 0.7160 +3039 3921 0.9100 +3039 4990 0.4930 +3039 5004 0.5260 +3039 5886 0.4590 +3039 6187 0.9080 +3039 6188 0.9090 +3039 6189 0.9110 +3039 6191 0.9090 +3039 6192 0.6190 +3039 6193 0.9030 +3039 6194 0.9390 +3039 6201 0.9060 +3039 6202 0.9060 +3039 6203 0.9160 +3039 6204 0.9170 +3039 6205 0.9060 +3039 6206 0.9160 +3039 6207 0.9080 +3039 6208 0.9140 +3039 6209 0.9060 +3039 6210 0.9080 +3039 6217 0.9060 +3039 6218 0.9110 +3039 6222 0.9140 +3039 6223 0.9210 +3039 6224 0.9130 +3039 6227 0.9000 +3039 6228 0.9080 +3039 6229 0.9120 +3039 6230 0.9090 +3039 6231 0.9200 +3039 6232 0.9140 +3039 6233 0.9080 +3039 6234 0.9120 +3039 6235 0.9140 +3039 6326 0.6060 +3039 6521 0.4820 +3039 7311 0.5670 +3039 7837 0.4240 +3039 8835 0.4330 +3039 9332 0.4540 +3039 9636 0.5940 +3039 10153 0.4610 +3039 10399 0.5720 +3039 10661 0.8050 +3039 22882 0.5650 +3039 27319 0.4300 +3039 29979 0.4260 +3039 30812 0.4860 +3039 51065 0.5630 +3039 51167 0.4800 +3039 51312 0.7230 +3039 51327 0.9890 +3039 53335 0.6680 +3039 54505 0.7360 +3039 55692 0.7400 +3039 55811 0.4460 +3039 59272 0.4430 +3039 64963 0.5980 +3039 80117 0.4140 +3039 83939 0.5400 +3039 83986 0.4180 +3039 137902 0.4240 +3039 140032 0.5780 +3039 283871 0.4970 +3040 3042 0.6330 +3040 3043 0.9990 +3040 3045 0.9970 +3040 3046 0.9960 +3040 3047 0.8500 +3040 3048 0.9940 +3040 3049 0.8280 +3040 3050 0.6980 +3040 3240 0.9970 +3040 3250 0.9620 +3040 3263 0.7730 +3040 3304 0.4810 +3040 3630 0.7010 +3040 3921 0.9120 +3040 4035 0.5190 +3040 4288 0.4090 +3040 4846 0.6080 +3040 4990 0.4930 +3040 5004 0.5570 +3040 5005 0.4090 +3040 5886 0.4540 +3040 6187 0.9050 +3040 6188 0.9080 +3040 6189 0.9100 +3040 6191 0.9080 +3040 6192 0.6290 +3040 6193 0.9010 +3040 6194 0.9380 +3040 6201 0.9060 +3040 6202 0.9050 +3040 6203 0.9140 +3040 6204 0.9160 +3040 6205 0.9050 +3040 6206 0.9190 +3040 6207 0.9080 +3040 6208 0.9160 +3040 6209 0.9060 +3040 6210 0.9070 +3040 6217 0.9060 +3040 6218 0.9080 +3040 6222 0.9120 +3040 6223 0.9200 +3040 6224 0.9120 +3040 6227 0.9000 +3040 6228 0.9070 +3040 6229 0.9110 +3040 6230 0.9110 +3040 6231 0.9230 +3040 6232 0.9120 +3040 6233 0.9070 +3040 6234 0.9110 +3040 6235 0.9130 +3040 6326 0.6080 +3040 6521 0.5820 +3040 7311 0.5700 +3040 7837 0.4360 +3040 8542 0.6000 +3040 8835 0.4290 +3040 9332 0.6960 +3040 9636 0.5910 +3040 10153 0.4610 +3040 10399 0.5660 +3040 10661 0.7950 +3040 22882 0.5650 +3040 27319 0.4300 +3040 29979 0.4240 +3040 30812 0.4890 +3040 51065 0.5630 +3040 51167 0.6720 +3040 51312 0.7080 +3040 51327 0.9950 +3040 51700 0.4530 +3040 51706 0.4540 +3040 53335 0.6790 +3040 54505 0.7360 +3040 54858 0.4290 +3040 55692 0.7400 +3040 55811 0.4450 +3040 58157 0.4080 +3040 59272 0.4490 +3040 64963 0.5980 +3040 80117 0.4110 +3040 83939 0.5400 +3040 137902 0.4320 +3040 140032 0.5760 +3040 283871 0.4970 +3040 606495 0.4560 +3042 3043 0.9320 +3042 3045 0.9530 +3042 3046 0.8620 +3042 3047 0.9280 +3042 3048 0.9390 +3042 3049 0.9090 +3042 3050 0.8290 +3042 3240 0.7280 +3042 3250 0.4130 +3042 4635 0.5390 +3042 6521 0.7970 +3042 6622 0.5010 +3042 7272 0.4240 +3042 8991 0.4710 +3042 10661 0.4900 +3042 11183 0.4780 +3042 25853 0.4650 +3042 51312 0.4320 +3042 51327 0.9000 +3042 51629 0.5420 +3042 55051 0.4070 +3042 55363 0.6650 +3042 55437 0.5060 +3042 79634 0.4220 +3042 79713 0.4490 +3043 3045 0.9120 +3043 3046 0.7600 +3043 3047 0.8890 +3043 3048 0.8620 +3043 3049 0.9500 +3043 3050 0.9970 +3043 3066 0.4610 +3043 3077 0.5670 +3043 3240 0.9950 +3043 3250 0.9350 +3043 3263 0.8190 +3043 3265 0.4580 +3043 3312 0.6510 +3043 3313 0.4960 +3043 3320 0.6010 +3043 3326 0.6010 +3043 3576 0.4990 +3043 3624 0.4110 +3043 3627 0.4960 +3043 3630 0.5210 +3043 3672 0.4240 +3043 3688 0.4260 +3043 3920 0.5320 +3043 4035 0.5260 +3043 4097 0.4990 +3043 4151 0.5120 +3043 4191 0.4520 +3043 4285 0.4180 +3043 4288 0.4150 +3043 4314 0.4270 +3043 4318 0.4570 +3043 4778 0.8080 +3043 4886 0.4030 +3043 4975 0.4610 +3043 5004 0.4040 +3043 5116 0.4160 +3043 5265 0.5490 +3043 5473 0.4200 +3043 5688 0.4040 +3043 5741 0.4930 +3043 5972 0.4680 +3043 5976 0.4080 +3043 6035 0.4840 +3043 6233 0.5190 +3043 6326 0.8200 +3043 6521 0.5170 +3043 6886 0.4160 +3043 7001 0.4050 +3043 7018 0.5090 +3043 7037 0.4610 +3043 7066 0.4710 +3043 7124 0.5270 +3043 7157 0.4790 +3043 7182 0.4130 +3043 7275 0.5960 +3043 7276 0.4050 +3043 7299 0.4500 +3043 7311 0.4400 +3043 7314 0.4920 +3043 7316 0.5130 +3043 7975 0.5110 +3043 8100 0.4010 +3043 8522 0.4110 +3043 8542 0.6890 +3043 8861 0.4550 +3043 9079 0.4550 +3043 9332 0.7560 +3043 9595 0.4450 +3043 9775 0.5890 +3043 10013 0.4020 +3043 10226 0.4160 +3043 10661 0.8890 +3043 10767 0.5930 +3043 10982 0.4250 +3043 11315 0.4710 +3043 22852 0.4140 +3043 22882 0.4240 +3043 23764 0.4990 +3043 26019 0.4070 +3043 27243 0.4010 +3043 29890 0.5400 +3043 51160 0.4040 +3043 51167 0.4760 +3043 51176 0.4290 +3043 51271 0.4160 +3043 51312 0.5940 +3043 51327 0.9550 +3043 51621 0.4540 +3043 51652 0.4050 +3043 51700 0.4300 +3043 51706 0.4400 +3043 53335 0.8940 +3043 54776 0.4320 +3043 54858 0.4280 +3043 55811 0.5050 +3043 58157 0.5550 +3043 65110 0.5910 +3043 80117 0.4590 +3043 84640 0.4190 +3043 89853 0.4100 +3043 162461 0.4140 +3043 164656 0.4400 +3043 166752 0.5500 +3043 203260 0.4030 +3043 390058 0.5730 +3043 606495 0.4370 +3043 728378 0.4030 +3045 3046 0.6590 +3045 3047 0.8970 +3045 3048 0.8960 +3045 3049 0.9900 +3045 3050 0.9600 +3045 3240 0.8170 +3045 4097 0.4990 +3045 4635 0.5050 +3045 4778 0.7510 +3045 5648 0.4070 +3045 6005 0.4640 +3045 6521 0.8320 +3045 6622 0.5970 +3045 6708 0.4350 +3045 7037 0.5020 +3045 7062 0.4160 +3045 7070 0.4140 +3045 7345 0.4140 +3045 7975 0.5110 +3045 8074 0.5140 +3045 8766 0.4380 +3045 8991 0.5810 +3045 9034 0.5980 +3045 10661 0.7470 +3045 22882 0.4260 +3045 23764 0.4990 +3045 51312 0.6500 +3045 51327 0.9920 +3045 53335 0.6480 +3045 54536 0.7130 +3045 54567 0.4260 +3045 55363 0.5030 +3045 55437 0.4300 +3045 65110 0.4220 +3045 140596 0.5790 +3045 285440 0.4110 +3045 390058 0.5560 +3045 414325 0.7200 +3045 503618 0.5770 +3046 3047 0.9070 +3046 3048 0.8010 +3046 3049 0.9670 +3046 3050 0.9940 +3046 3145 0.5570 +3046 3240 0.7850 +3046 3674 0.4640 +3046 4097 0.5700 +3046 4778 0.8240 +3046 5886 0.4590 +3046 6005 0.5650 +3046 6326 0.5630 +3046 6886 0.4030 +3046 7024 0.4560 +3046 7037 0.5580 +3046 7299 0.4730 +3046 7975 0.5560 +3046 8091 0.4930 +3046 8835 0.4390 +3046 10661 0.8740 +3046 10690 0.4910 +3046 10767 0.5450 +3046 23764 0.5190 +3046 51327 0.9490 +3046 51621 0.5980 +3046 53335 0.7740 +3046 54902 0.4720 +3046 55553 0.4250 +3046 55811 0.4260 +3046 79339 0.4340 +3046 91937 0.4450 +3046 282763 0.5930 +3047 3048 0.9990 +3047 3049 0.8470 +3047 3050 0.9780 +3047 3240 0.6260 +3047 4097 0.5020 +3047 4285 0.8530 +3047 4778 0.7470 +3047 4948 0.4680 +3047 6005 0.8080 +3047 6368 0.5170 +3047 6521 0.4670 +3047 6599 0.4260 +3047 6601 0.5420 +3047 6605 0.4700 +3047 6886 0.4580 +3047 7023 0.6390 +3047 7026 0.5240 +3047 7975 0.4990 +3047 10661 0.9340 +3047 10767 0.9310 +3047 22882 0.5880 +3047 23764 0.5040 +3047 51312 0.7260 +3047 51327 0.9070 +3047 51341 0.5080 +3047 53335 0.9560 +3047 64919 0.5050 +3047 146722 0.4010 +3047 282763 0.5380 +3047 390058 0.4470 +3048 3049 0.8970 +3048 3050 0.8800 +3048 3240 0.6290 +3048 4097 0.5020 +3048 4285 0.9060 +3048 4778 0.7240 +3048 6005 0.4090 +3048 6368 0.6650 +3048 6521 0.5290 +3048 7023 0.7490 +3048 7975 0.4990 +3048 9365 0.4700 +3048 10661 0.6510 +3048 10767 0.9510 +3048 23764 0.5040 +3048 51327 0.9020 +3048 53335 0.8700 +3048 282763 0.5790 +3048 390058 0.4500 +3049 3050 0.8540 +3049 3240 0.7180 +3049 3250 0.4110 +3049 3251 0.4970 +3049 4635 0.6300 +3049 4778 0.5120 +3049 6521 0.6990 +3049 6622 0.6030 +3049 7111 0.4020 +3049 7404 0.4420 +3049 10661 0.6520 +3049 10768 0.5910 +3049 25893 0.4860 +3049 51312 0.5910 +3049 51327 0.9410 +3049 51629 0.6520 +3049 55363 0.5660 +3049 55437 0.5310 +3049 55692 0.8550 +3049 60558 0.4220 +3049 64285 0.4080 +3049 79689 0.4370 +3049 83986 0.4320 +3049 317671 0.7300 +3050 3232 0.4030 +3050 3240 0.8500 +3050 3250 0.4250 +3050 3725 0.8790 +3050 3727 0.9160 +3050 4087 0.9090 +3050 4088 0.6210 +3050 4094 0.4870 +3050 4350 0.7690 +3050 4778 0.4010 +3050 4790 0.5550 +3050 5093 0.4080 +3050 6005 0.6610 +3050 6326 0.5050 +3050 6667 0.4470 +3050 6772 0.5090 +3050 6774 0.5200 +3050 6900 0.5420 +3050 8517 0.4100 +3050 8835 0.5800 +3050 10661 0.8100 +3050 10767 0.5140 +3050 23645 0.6020 +3050 50943 0.6230 +3050 51327 0.7290 +3050 53335 0.5170 +3050 58157 0.4110 +3050 64236 0.5080 +3050 64859 0.4420 +3050 201161 0.7310 +3050 387357 0.5560 +3052 3162 0.9060 +3052 3163 0.9150 +3052 4700 0.4050 +3052 4704 0.5350 +3052 4720 0.4740 +3052 4729 0.6310 +3052 4863 0.6020 +3052 5498 0.4100 +3052 6341 0.4350 +3052 6792 0.4450 +3052 7381 0.4150 +3052 7384 0.4470 +3052 7385 0.4460 +3052 7386 0.5690 +3052 7389 0.4600 +3052 9131 0.5160 +3052 9512 0.5150 +3052 9868 0.4410 +3052 9973 0.5430 +3052 10058 0.4080 +3052 10063 0.4900 +3052 10102 0.4710 +3052 10226 0.5950 +3052 10469 0.4400 +3052 10943 0.4670 +3052 11331 0.4790 +3052 22854 0.5800 +3052 23095 0.4430 +3052 23788 0.5090 +3052 25813 0.4010 +3052 26512 0.4020 +3052 26517 0.4540 +3052 51300 0.6390 +3052 51318 0.5660 +3052 51566 0.4330 +3052 54205 0.8250 +3052 54539 0.6020 +3052 54902 0.5740 +3052 55750 0.5370 +3052 57001 0.4110 +3052 57017 0.4050 +3052 64111 0.4490 +3052 79066 0.4850 +3052 79135 0.5580 +3052 79142 0.6370 +3052 84628 0.5880 +3052 84816 0.4320 +3052 84908 0.4380 +3052 90624 0.4670 +3052 94081 0.5330 +3052 119559 0.4130 +3052 131474 0.5780 +3052 145173 0.5440 +3053 3082 0.5340 +3053 3240 0.4190 +3053 3250 0.4030 +3053 3263 0.5250 +3053 3273 0.8670 +3053 3426 0.7000 +3053 3484 0.4160 +3053 3697 0.5090 +3053 3698 0.7120 +3053 3699 0.5530 +3053 3700 0.5130 +3053 3818 0.7010 +3053 3827 0.7790 +3053 4018 0.8390 +3053 4036 0.4500 +3053 4524 0.4870 +3053 5004 0.4350 +3053 5005 0.4590 +3053 5104 0.6970 +3053 5196 0.6700 +3053 5197 0.4330 +3053 5265 0.4240 +3053 5267 0.6210 +3053 5274 0.5260 +3053 5297 0.5810 +3053 5327 0.5500 +3053 5340 0.9520 +3053 5345 0.6030 +3053 5624 0.7600 +3053 5625 0.6890 +3053 5627 0.8010 +3053 5648 0.4160 +3053 6403 0.4710 +3053 6545 0.4340 +3053 6554 0.4190 +3053 6906 0.5420 +3053 7018 0.4430 +3053 7035 0.8840 +3053 7056 0.8460 +3053 7276 0.4340 +3053 7448 0.7620 +3053 7450 0.6790 +3053 7980 0.4530 +3053 8214 0.6790 +3053 8216 0.6690 +3053 8659 0.4970 +3053 8858 0.4670 +3053 9342 0.5390 +3053 9622 0.4250 +3053 10747 0.4310 +3053 10765 0.4240 +3053 10841 0.4230 +3053 51156 0.5060 +3053 54757 0.4040 +3053 55937 0.4810 +3053 56975 0.5090 +3053 57687 0.4600 +3053 79644 0.4220 +3053 80764 0.4920 +3053 85359 0.7160 +3053 114770 0.5670 +3053 116519 0.4340 +3053 145497 0.4780 +3053 256394 0.4050 +3053 284293 0.4840 +3054 3065 0.7450 +3054 3066 0.4630 +3054 3176 0.8140 +3054 3267 0.5530 +3054 3312 0.4480 +3054 3320 0.4050 +3054 3607 0.9300 +3054 3897 0.6140 +3054 3963 0.4390 +3054 4128 0.4770 +3054 4129 0.4730 +3054 4149 0.9120 +3054 4204 0.5140 +3054 4297 0.9910 +3054 4298 0.6450 +3054 4300 0.6430 +3054 4609 0.8010 +3054 4779 0.5740 +3054 4864 0.4090 +3054 4899 0.8300 +3054 5074 0.4360 +3054 5134 0.4740 +3054 5252 0.4300 +3054 5451 0.9930 +3054 5452 0.5580 +3054 5499 0.6320 +3054 5500 0.6220 +3054 5928 0.5160 +3054 5929 0.9990 +3054 5931 0.5520 +3054 5973 0.7870 +3054 6045 0.9270 +3054 6233 0.4160 +3054 6240 0.4270 +3054 6426 0.4030 +3054 6541 0.4620 +3054 6667 0.5810 +3054 6768 0.4740 +3054 6871 0.6090 +3054 6872 0.9080 +3054 6874 0.9100 +3054 6878 0.9100 +3054 6879 0.9000 +3054 6880 0.9070 +3054 6944 0.7310 +3054 7314 0.4110 +3054 7316 0.4420 +3054 7391 0.6550 +3054 7403 0.6770 +3054 7528 0.9130 +3054 8085 0.5990 +3054 8089 0.7630 +3054 8260 0.5410 +3054 8269 0.6940 +3054 8270 0.6750 +3054 8290 0.6290 +3054 8295 0.8070 +3054 8314 0.9980 +3054 8315 0.5220 +3054 8334 0.4080 +3054 8337 0.6120 +3054 8338 0.6070 +3054 8349 0.4650 +3054 8356 0.6350 +3054 8361 0.7640 +3054 8473 0.9990 +3054 8607 0.9130 +3054 8850 0.6170 +3054 9070 0.9990 +3054 9097 0.5170 +3054 9203 0.4180 +3054 9575 0.4920 +3054 9603 0.6290 +3054 9611 0.4830 +3054 9682 0.5840 +3054 9739 0.9990 +3054 9757 0.8520 +3054 10155 0.5640 +3054 10362 0.4110 +3054 10445 0.9850 +3054 10474 0.5610 +3054 10488 0.9900 +3054 10524 0.7780 +3054 10594 0.6210 +3054 10614 0.4270 +3054 10724 0.5450 +3054 10856 0.9130 +3054 10891 0.8800 +3054 10902 0.7580 +3054 10933 0.7980 +3054 10943 0.8000 +3054 11052 0.4800 +3054 11083 0.4520 +3054 11091 0.9990 +3054 11168 0.4330 +3054 11273 0.4710 +3054 11338 0.5260 +3054 22976 0.6950 +3054 23020 0.6050 +3054 23028 0.8780 +3054 23054 0.7990 +3054 23067 0.9790 +3054 23082 0.8990 +3054 23133 0.9700 +3054 23186 0.6230 +3054 23269 0.9020 +3054 23309 0.4260 +3054 23310 0.6860 +3054 23411 0.4830 +3054 23468 0.4510 +3054 23476 0.5240 +3054 23564 0.4710 +3054 23636 0.5880 +3054 25942 0.8660 +3054 26009 0.6360 +3054 26121 0.9050 +3054 26122 0.7200 +3054 26168 0.9040 +3054 27043 0.9060 +3054 29072 0.7130 +3054 29915 0.9820 +3054 30827 0.9930 +3054 51078 0.4900 +3054 51105 0.6880 +3054 51106 0.5820 +3054 51230 0.9700 +3054 51377 0.6090 +3054 51412 0.6250 +3054 54554 0.6970 +3054 54556 0.7460 +3054 54790 0.8180 +3054 54799 0.7270 +3054 54819 0.4540 +3054 54881 0.9040 +3054 54892 0.6980 +3054 54934 0.9540 +3054 54985 0.5990 +3054 55145 0.7170 +3054 55167 0.7520 +3054 55252 0.9400 +3054 55257 0.7530 +3054 55342 0.4340 +3054 55617 0.4990 +3054 55671 0.4920 +3054 55683 0.9640 +3054 55689 0.7130 +3054 55723 0.6590 +3054 55777 0.6700 +3054 55904 0.6210 +3054 55929 0.7360 +3054 57215 0.9340 +3054 57223 0.4410 +3054 57325 0.5520 +3054 57599 0.4560 +3054 57634 0.8280 +3054 57680 0.9160 +3054 58487 0.9950 +3054 58508 0.6040 +3054 63893 0.5340 +3054 64216 0.5860 +3054 64769 0.7200 +3054 80314 0.7200 +3054 80335 0.9880 +3054 80764 0.6210 +3054 80816 0.4160 +3054 80829 0.4030 +3054 81887 0.9050 +3054 83591 0.8060 +3054 84148 0.9820 +3054 84295 0.8430 +3054 84332 0.5400 +3054 84661 0.9970 +3054 90326 0.6070 +3054 91272 0.6220 +3054 91833 0.4400 +3054 114785 0.6790 +3054 124944 0.9000 +3054 125476 0.9050 +3054 133522 0.7090 +3054 139420 0.4880 +3054 143241 0.5400 +3054 148327 0.8820 +3054 151050 0.5520 +3054 171023 0.9670 +3054 199745 0.6050 +3054 200424 0.7110 +3054 221302 0.4210 +3054 221656 0.8770 +3054 221937 0.9570 +3054 259282 0.6860 +3054 284058 0.9600 +3054 317772 0.4090 +3054 339287 0.7280 +3054 345651 0.5400 +3054 387893 0.4070 +3054 440093 0.6310 +3054 440686 0.6290 +3054 653499 0.4390 +3054 653604 0.6350 +3054 100529209 0.5400 +3055 3059 0.7180 +3055 3064 0.4810 +3055 3101 0.6570 +3055 3109 0.4190 +3055 3122 0.5380 +3055 3320 0.6380 +3055 3326 0.4040 +3055 3383 0.5780 +3055 3394 0.4860 +3055 3553 0.4420 +3055 3568 0.4580 +3055 3572 0.6040 +3055 3577 0.5650 +3055 3587 0.4770 +3055 3627 0.4270 +3055 3635 0.7520 +3055 3636 0.5490 +3055 3643 0.4020 +3055 3684 0.5800 +3055 3687 0.4460 +3055 3689 0.7480 +3055 3702 0.9460 +3055 3716 0.5640 +3055 3717 0.8420 +3055 3725 0.5720 +3055 3845 0.6710 +3055 3937 0.8020 +3055 4067 0.9860 +3055 4145 0.6550 +3055 4233 0.4160 +3055 4332 0.8760 +3055 4542 0.4920 +3055 4680 0.5050 +3055 4688 0.6360 +3055 4689 0.6080 +3055 4690 0.5130 +3055 5075 0.4350 +3055 5175 0.6410 +3055 5199 0.4920 +3055 5290 0.7230 +3055 5291 0.8850 +3055 5293 0.7700 +3055 5294 0.9370 +3055 5295 0.8570 +3055 5296 0.7510 +3055 5326 0.4740 +3055 5329 0.4680 +3055 5335 0.6350 +3055 5336 0.8010 +3055 5341 0.7460 +3055 5481 0.4400 +3055 5580 0.5950 +3055 5724 0.4210 +3055 5747 0.9510 +3055 5770 0.6690 +3055 5781 0.7120 +3055 5788 0.9650 +3055 5829 0.4730 +3055 5880 0.4920 +3055 5921 0.5340 +3055 6039 0.4130 +3055 6233 0.5400 +3055 6280 0.4660 +3055 6283 0.4560 +3055 6426 0.5150 +3055 6464 0.9560 +3055 6654 0.9040 +3055 6655 0.5140 +3055 6688 0.7270 +3055 6714 0.8760 +3055 6772 0.7320 +3055 6774 0.9110 +3055 6776 0.8090 +3055 6777 0.7230 +3055 6789 0.4180 +3055 6850 0.9340 +3055 6921 0.5330 +3055 6923 0.5310 +3055 6939 0.4970 +3055 7096 0.4280 +3055 7097 0.5750 +3055 7099 0.4540 +3055 7124 0.4460 +3055 7157 0.5920 +3055 7297 0.8230 +3055 7305 0.8510 +3055 7311 0.5240 +3055 7314 0.5310 +3055 7316 0.5320 +3055 7321 0.5700 +3055 7322 0.5560 +3055 7323 0.5560 +3055 7409 0.8420 +3055 7454 0.8790 +3055 7456 0.7200 +3055 7462 0.4410 +3055 7525 0.6890 +3055 7535 0.6110 +3055 7805 0.7330 +3055 7940 0.4090 +3055 8065 0.5700 +3055 8440 0.4600 +3055 8503 0.7840 +3055 8563 0.4990 +3055 8651 0.5890 +3055 8751 0.7610 +3055 8801 0.4160 +3055 8935 0.5940 +3055 9021 0.6380 +3055 9046 0.5590 +3055 9051 0.4430 +3055 9094 0.6910 +3055 9332 0.4400 +3055 9402 0.7080 +3055 9450 0.4930 +3055 9467 0.4530 +3055 9473 0.4210 +3055 9564 0.5800 +3055 9616 0.5140 +3055 9777 0.4980 +3055 9844 0.9650 +3055 9846 0.9300 +3055 10015 0.6340 +3055 10085 0.4440 +3055 10163 0.4370 +3055 10188 0.8310 +3055 10261 0.6840 +3055 10288 0.8640 +3055 10312 0.5120 +3055 10437 0.4640 +3055 10451 0.4870 +3055 10657 0.8130 +3055 10728 0.5030 +3055 10859 0.4180 +3055 10963 0.5330 +3055 11024 0.4390 +3055 11025 0.4490 +3055 11027 0.4010 +3055 11140 0.7260 +3055 11314 0.4590 +3055 11326 0.6050 +3055 22918 0.6050 +3055 23371 0.4380 +3055 23533 0.9310 +3055 25759 0.9130 +3055 27036 0.4350 +3055 27071 0.5090 +3055 27180 0.4730 +3055 29760 0.6720 +3055 29992 0.4300 +3055 30011 0.7460 +3055 50807 0.4910 +3055 50856 0.5330 +3055 51311 0.7710 +3055 53358 0.9180 +3055 53616 0.4090 +3055 53829 0.4850 +3055 55664 0.7110 +3055 55690 0.5560 +3055 57705 0.4120 +3055 64231 0.4170 +3055 64407 0.4490 +3055 84106 0.4530 +3055 126364 0.4670 +3055 136991 0.4110 +3055 139716 0.5370 +3055 146433 0.5100 +3055 146722 0.4220 +3055 146850 0.9270 +3055 150372 0.4610 +3055 219972 0.4610 +3055 390714 0.4480 +3055 399694 0.9100 +3055 653361 0.5270 +3055 100049587 0.4270 +3055 100423062 0.4940 +3059 3065 0.4380 +3059 3071 0.5060 +3059 3320 0.5500 +3059 3326 0.5510 +3059 3383 0.6080 +3059 3587 0.6320 +3059 3635 0.4190 +3059 3674 0.4460 +3059 3683 0.4100 +3059 3689 0.8240 +3059 3708 0.4070 +3059 3737 0.9030 +3059 3741 0.5440 +3059 3897 0.5150 +3059 3936 0.8650 +3059 3937 0.7150 +3059 3984 0.5590 +3059 4033 0.4530 +3059 4046 0.4090 +3059 4067 0.9590 +3059 4069 0.4900 +3059 4233 0.5790 +3059 4313 0.5420 +3059 4318 0.6790 +3059 4323 0.7880 +3059 4478 0.6170 +3059 4542 0.4260 +3059 4593 0.5880 +3059 4638 0.5090 +3059 4688 0.6210 +3059 4689 0.6580 +3059 4690 0.9590 +3059 4868 0.5490 +3059 5175 0.4870 +3059 5214 0.4050 +3059 5216 0.7240 +3059 5311 0.4340 +3059 5338 0.6630 +3059 5341 0.6370 +3059 5468 0.4090 +3059 5552 0.6690 +3059 5587 0.8540 +3059 5594 0.4480 +3059 5595 0.4330 +3059 5747 0.9870 +3059 5781 0.4550 +3059 5788 0.6210 +3059 5829 0.9940 +3059 5868 0.4490 +3059 5877 0.4130 +3059 5879 0.6740 +3059 5880 0.7680 +3059 5962 0.6070 +3059 6093 0.6040 +3059 6249 0.5800 +3059 6386 0.4700 +3059 6404 0.4520 +3059 6453 0.6500 +3059 6503 0.5020 +3059 6548 0.6500 +3059 6622 0.4440 +3059 6624 0.7700 +3059 6642 0.6970 +3059 6688 0.4040 +3059 6709 0.5090 +3059 6714 0.9990 +3059 6774 0.5830 +3059 6811 0.5980 +3059 6840 0.6940 +3059 6845 0.4800 +3059 6850 0.7130 +3059 7074 0.6120 +3059 7082 0.9980 +3059 7094 0.9380 +3059 7124 0.5420 +3059 7220 0.4500 +3059 7305 0.5200 +3059 7402 0.4400 +3059 7408 0.9410 +3059 7409 0.7300 +3059 7410 0.7920 +3059 7414 0.9570 +3059 7430 0.7480 +3059 7454 0.9990 +3059 7456 0.9730 +3059 7535 0.6350 +3059 7791 0.4850 +3059 7805 0.8120 +3059 7837 0.4090 +3059 7852 0.4740 +3059 7871 0.4810 +3059 8027 0.4490 +3059 8411 0.4090 +3059 8615 0.5510 +3059 8766 0.5200 +3059 8826 0.6460 +3059 8874 0.4450 +3059 8936 0.7270 +3059 8976 0.9970 +3059 9026 0.9230 +3059 9033 0.5170 +3059 9051 0.4350 +3059 9229 0.8570 +3059 9322 0.4100 +3059 9404 0.6300 +3059 9414 0.7170 +3059 9454 0.4950 +3059 9455 0.5020 +3059 9456 0.8060 +3059 9459 0.4160 +3059 9478 0.5660 +3059 9527 0.5740 +3059 9535 0.5950 +3059 9564 0.7660 +3059 9595 0.4900 +3059 9644 0.9710 +3059 9672 0.8070 +3059 9709 0.5220 +3059 9788 0.8180 +3059 9793 0.4190 +3059 9938 0.5320 +3059 10013 0.9890 +3059 10014 0.4760 +3059 10092 0.9530 +3059 10093 0.9120 +3059 10094 0.9670 +3059 10095 0.9490 +3059 10096 0.9750 +3059 10097 0.9900 +3059 10109 0.9640 +3059 10133 0.4350 +3059 10163 0.9310 +3059 10254 0.5090 +3059 10320 0.4020 +3059 10426 0.4070 +3059 10456 0.9580 +3059 10458 0.6820 +3059 10524 0.4700 +3059 10552 0.9330 +3059 10659 0.4430 +3059 10672 0.8810 +3059 10755 0.4160 +3059 10818 0.6230 +3059 11151 0.6840 +3059 11184 0.4060 +3059 11326 0.4550 +3059 11346 0.4840 +3059 22919 0.5540 +3059 22924 0.7660 +3059 22941 0.9020 +3059 23048 0.4290 +3059 23157 0.5380 +3059 23365 0.5050 +3059 23433 0.5330 +3059 23603 0.4090 +3059 23607 0.9070 +3059 23683 0.6250 +3059 25865 0.4330 +3059 26052 0.9650 +3059 27128 0.4100 +3059 27131 0.6490 +3059 27255 0.4220 +3059 27429 0.4570 +3059 29119 0.4160 +3059 30011 0.5380 +3059 50618 0.6800 +3059 50807 0.6480 +3059 50944 0.8640 +3059 51806 0.4750 +3059 54434 0.6420 +3059 54440 0.5780 +3059 54443 0.4470 +3059 54518 0.4690 +3059 55486 0.5820 +3059 55742 0.4870 +3059 55825 0.4610 +3059 55843 0.5100 +3059 55869 0.6420 +3059 55920 0.5770 +3059 57151 0.4120 +3059 57175 0.7130 +3059 57180 0.9520 +3059 57698 0.6490 +3059 57705 0.4040 +3059 60312 0.5240 +3059 63898 0.6630 +3059 64092 0.4180 +3059 64098 0.4850 +3059 64342 0.6690 +3059 64423 0.4210 +3059 64431 0.4210 +3059 64926 0.4620 +3059 79969 0.4090 +3059 80143 0.4770 +3059 80155 0.4600 +3059 80725 0.9150 +3059 81624 0.4710 +3059 81873 0.9280 +3059 83660 0.9390 +3059 83706 0.6090 +3059 83933 0.4530 +3059 83992 0.9760 +3059 84898 0.7750 +3059 85358 0.9020 +3059 85477 0.9860 +3059 91624 0.8150 +3059 91860 0.4180 +3059 92241 0.4610 +3059 123720 0.9510 +3059 124912 0.4120 +3059 126393 0.4190 +3059 129446 0.4180 +3059 133746 0.4190 +3059 134265 0.5550 +3059 137902 0.4040 +3059 139741 0.5120 +3059 163688 0.4180 +3059 257106 0.4060 +3059 285590 0.9400 +3059 345456 0.5760 +3059 375189 0.5680 +3059 375790 0.7020 +3059 653145 0.4140 +3059 653361 0.9180 +3059 653857 0.9360 +3059 100529144 0.5240 +3060 3061 0.9990 +3060 3062 0.9990 +3060 3067 0.6040 +3060 3091 0.4200 +3060 3117 0.9720 +3060 3119 0.9860 +3060 3123 0.4110 +3060 3170 0.5090 +3060 3269 0.4850 +3060 3350 0.5870 +3060 3351 0.5270 +3060 3356 0.4490 +3060 3358 0.4180 +3060 3375 0.4410 +3060 3630 0.8350 +3060 3814 0.7140 +3060 3827 0.4850 +3060 3952 0.9290 +3060 3953 0.6130 +3060 4158 0.4850 +3060 4159 0.5740 +3060 4160 0.7720 +3060 4287 0.6500 +3060 4295 0.6300 +3060 4345 0.6160 +3060 4828 0.4610 +3060 4852 0.9290 +3060 4885 0.5430 +3060 4886 0.5260 +3060 4887 0.4630 +3060 4889 0.4840 +3060 4922 0.8690 +3060 4923 0.4210 +3060 4925 0.5300 +3060 4988 0.5840 +3060 5020 0.8510 +3060 5021 0.4060 +3060 5032 0.4090 +3060 5173 0.7720 +3060 5179 0.5800 +3060 5330 0.5720 +3060 5331 0.5570 +3060 5367 0.9960 +3060 5368 0.6830 +3060 5443 0.9250 +3060 5539 0.4730 +3060 5566 0.4280 +3060 5567 0.4260 +3060 5568 0.4350 +3060 5617 0.4830 +3060 5621 0.4060 +3060 5697 0.6380 +3060 5730 0.4470 +3060 5816 0.4580 +3060 6010 0.4400 +3060 6343 0.4770 +3060 6531 0.6700 +3060 6532 0.4420 +3060 6610 0.4020 +3060 6750 0.6530 +3060 6774 0.5370 +3060 6776 0.5040 +3060 6777 0.5200 +3060 6863 0.8340 +3060 6869 0.4160 +3060 7038 0.4350 +3060 7054 0.7600 +3060 7200 0.7850 +3060 7204 0.5110 +3060 7349 0.4620 +3060 7350 0.4790 +3060 7432 0.4920 +3060 8620 0.6830 +3060 8811 0.4220 +3060 8862 0.5680 +3060 8864 0.5670 +3060 8997 0.5220 +3060 9370 0.4470 +3060 9575 0.4340 +3060 9607 0.7720 +3060 10800 0.5220 +3060 10874 0.7290 +3060 10886 0.4590 +3060 11255 0.5280 +3060 23236 0.6200 +3060 23415 0.6160 +3060 27346 0.4080 +3060 28951 0.5410 +3060 29106 0.5380 +3060 51052 0.5380 +3060 51083 0.8450 +3060 51289 0.4340 +3060 51738 0.8540 +3060 54551 0.5240 +3060 55074 0.9260 +3060 55188 0.4180 +3060 56956 0.4480 +3060 57084 0.5970 +3060 57105 0.5220 +3060 64106 0.5180 +3060 64111 0.6670 +3060 84109 0.4560 +3060 84514 0.8120 +3060 84539 0.5500 +3060 85569 0.4880 +3060 92552 0.7900 +3060 94233 0.6470 +3060 115557 0.5070 +3060 117579 0.4650 +3060 129521 0.6350 +3060 140679 0.5310 +3060 284119 0.7380 +3060 347148 0.7410 +3060 347468 0.7890 +3060 387129 0.6100 +3060 594857 0.8590 +3060 619373 0.4340 +3060 104909134 0.5710 +3061 3062 0.9260 +3061 3091 0.4590 +3061 3952 0.4460 +3061 3953 0.5150 +3061 4287 0.6330 +3061 4852 0.5710 +3061 4885 0.5560 +3061 4922 0.4510 +3061 5173 0.7060 +3061 5330 0.5280 +3061 5331 0.5490 +3061 5367 0.7550 +3061 5368 0.4120 +3061 5443 0.6840 +3061 6343 0.5980 +3061 6478 0.4220 +3061 6531 0.5190 +3061 6532 0.4870 +3061 6750 0.4290 +3061 7204 0.4990 +3061 7428 0.4220 +3061 8997 0.5070 +3061 9669 0.4920 +3061 10381 0.4260 +3061 23236 0.5160 +3061 23415 0.4220 +3061 51147 0.4240 +3061 51738 0.5450 +3061 54738 0.4670 +3061 55074 0.7930 +3061 57030 0.4620 +3061 92552 0.7090 +3061 112609 0.4450 +3061 115557 0.4990 +3061 140767 0.4210 +3061 347468 0.6430 +3061 594857 0.4010 +3061 104909134 0.5540 +3062 5173 0.4010 +3062 5330 0.5160 +3062 5331 0.5160 +3062 5367 0.4740 +3062 5443 0.7290 +3062 7204 0.4990 +3062 8997 0.5160 +3062 10800 0.4100 +3062 23236 0.5230 +3062 28951 0.4370 +3062 54331 0.8160 +3062 54738 0.4120 +3062 55074 0.6920 +3062 115557 0.4990 +3062 347468 0.4800 +3064 3065 0.5550 +3064 3066 0.4760 +3064 3092 0.9850 +3064 3093 0.9790 +3064 3146 0.4070 +3064 3183 0.4160 +3064 3275 0.5810 +3064 3300 0.4650 +3064 3301 0.5630 +3064 3303 0.5380 +3064 3304 0.6290 +3064 3308 0.9580 +3064 3309 0.6350 +3064 3312 0.9210 +3064 3315 0.4270 +3064 3320 0.7770 +3064 3326 0.6800 +3064 3329 0.4250 +3064 3337 0.9300 +3064 3375 0.5230 +3064 3551 0.6310 +3064 3630 0.5980 +3064 3643 0.4300 +3064 3708 0.9950 +3064 3710 0.8630 +3064 3717 0.4560 +3064 3725 0.6990 +3064 3766 0.4600 +3064 3831 0.6930 +3064 3960 0.4920 +3064 3980 0.6660 +3064 4077 0.6230 +3064 4129 0.4290 +3064 4130 0.4520 +3064 4131 0.4520 +3064 4137 0.7150 +3064 4154 0.4310 +3064 4193 0.4660 +3064 4204 0.8430 +3064 4218 0.7650 +3064 4281 0.4280 +3064 4287 0.8780 +3064 4294 0.9380 +3064 4513 0.4130 +3064 4519 0.9070 +3064 4613 0.4150 +3064 4644 0.5430 +3064 4691 0.5740 +3064 4704 0.4340 +3064 4747 0.4960 +3064 4760 0.6840 +3064 4790 0.6640 +3064 4803 0.4870 +3064 4864 0.4030 +3064 4915 0.6450 +3064 5062 0.4750 +3064 5071 0.8170 +3064 5116 0.4910 +3064 5170 0.4860 +3064 5216 0.7520 +3064 5217 0.6050 +3064 5274 0.4320 +3064 5289 0.4900 +3064 5315 0.4480 +3064 5354 0.4410 +3064 5371 0.4220 +3064 5438 0.4170 +3064 5468 0.8020 +3064 5566 0.4190 +3064 5591 0.5320 +3064 5595 0.4700 +3064 5599 0.9300 +3064 5601 0.9170 +3064 5610 0.4990 +3064 5621 0.8400 +3064 5663 0.7950 +3064 5664 0.5720 +3064 5682 0.6630 +3064 5683 0.6640 +3064 5684 0.6530 +3064 5685 0.6670 +3064 5686 0.6640 +3064 5687 0.6760 +3064 5688 0.6980 +3064 5689 0.6750 +3064 5690 0.6810 +3064 5691 0.6700 +3064 5692 0.6610 +3064 5693 0.6830 +3064 5694 0.6930 +3064 5695 0.7510 +3064 5700 0.7060 +3064 5701 0.7200 +3064 5702 0.7040 +3064 5704 0.7340 +3064 5705 0.7700 +3064 5706 0.6900 +3064 5707 0.6990 +3064 5708 0.7200 +3064 5709 0.7400 +3064 5710 0.7990 +3064 5713 0.7230 +3064 5714 0.6870 +3064 5715 0.6940 +3064 5717 0.7440 +3064 5718 0.7020 +3064 5861 0.4910 +3064 5868 0.6910 +3064 5905 0.6110 +3064 5921 0.5450 +3064 5978 0.9910 +3064 6009 0.5820 +3064 6184 0.4230 +3064 6198 0.5610 +3064 6199 0.5140 +3064 6310 0.8940 +3064 6311 0.7640 +3064 6314 0.7790 +3064 6389 0.9200 +3064 6390 0.9270 +3064 6391 0.9120 +3064 6392 0.9040 +3064 6431 0.5810 +3064 6449 0.4460 +3064 6453 0.5510 +3064 6456 0.6850 +3064 6457 0.9790 +3064 6477 0.6250 +3064 6506 0.5840 +3064 6507 0.4080 +3064 6606 0.4180 +3064 6607 0.4390 +3064 6616 0.6130 +3064 6622 0.9890 +3064 6647 0.8550 +3064 6648 0.5080 +3064 6664 0.4330 +3064 6667 0.9450 +3064 6708 0.4650 +3064 6709 0.5710 +3064 6720 0.4730 +3064 6721 0.6050 +3064 6767 0.4330 +3064 6804 0.9450 +3064 6812 0.4350 +3064 6853 0.4870 +3064 6855 0.5760 +3064 6874 0.9940 +3064 6875 0.8000 +3064 6908 0.7980 +3064 6950 0.4780 +3064 7054 0.4800 +3064 7072 0.6320 +3064 7124 0.6350 +3064 7157 0.9980 +3064 7167 0.5200 +3064 7175 0.4610 +3064 7189 0.4420 +3064 7316 0.4800 +3064 7337 0.4030 +3064 7341 0.4190 +3064 7343 0.5370 +3064 7381 0.9000 +3064 7384 0.9400 +3064 7385 0.9390 +3064 7386 0.9060 +3064 7388 0.9270 +3064 7415 0.9010 +3064 7416 0.5700 +3064 7417 0.4330 +3064 7419 0.4020 +3064 7504 0.4220 +3064 7514 0.5620 +3064 7532 0.4160 +3064 7837 0.4300 +3064 7942 0.5050 +3064 8218 0.9210 +3064 8242 0.7060 +3064 8260 0.5170 +3064 8263 0.9550 +3064 8293 0.4390 +3064 8295 0.6950 +3064 8312 0.4310 +3064 8356 0.5410 +3064 8408 0.6310 +3064 8453 0.5690 +3064 8517 0.6120 +3064 8518 0.4270 +3064 8554 0.4370 +3064 8562 0.7280 +3064 8564 0.5970 +3064 8567 0.5460 +3064 8660 0.5310 +3064 8678 0.9790 +3064 8766 0.6410 +3064 8850 0.9620 +3064 8878 0.9190 +3064 8976 0.4830 +3064 8997 0.4710 +3064 9001 0.9990 +3064 9026 0.9460 +3064 9097 0.5520 +3064 9131 0.4980 +3064 9140 0.5890 +3064 9322 0.7300 +3064 9474 0.7250 +3064 9479 0.5380 +3064 9531 0.5290 +3064 9586 0.8050 +3064 9611 0.9270 +3064 9612 0.5360 +3064 9625 0.4370 +3064 9627 0.4540 +3064 9638 0.6440 +3064 9759 0.6470 +3064 9782 0.4450 +3064 9927 0.5130 +3064 9929 0.4420 +3064 10013 0.7200 +3064 10049 0.5060 +3064 10059 0.7760 +3064 10075 0.4330 +3064 10084 0.6990 +3064 10116 0.4060 +3064 10133 0.9970 +3064 10190 0.8640 +3064 10196 0.4710 +3064 10213 0.7640 +3064 10241 0.4180 +3064 10273 0.7380 +3064 10399 0.4640 +3064 10419 0.6070 +3064 10488 0.8160 +3064 10533 0.5560 +3064 10536 0.4660 +3064 10694 0.4380 +3064 10846 0.4700 +3064 10871 0.4540 +3064 10891 0.9820 +3064 10915 0.9580 +3064 10963 0.5070 +3064 10971 0.4360 +3064 10975 0.9000 +3064 11047 0.7320 +3064 11153 0.8650 +3064 11193 0.5070 +3064 11252 0.4400 +3064 11273 0.4730 +3064 11284 0.6790 +3064 11315 0.6560 +3064 11331 0.4240 +3064 11337 0.4760 +3064 11345 0.5200 +3064 22905 0.4120 +3064 22906 0.4140 +3064 22933 0.4780 +3064 22948 0.6060 +3064 23001 0.7090 +3064 23049 0.5980 +3064 23162 0.4040 +3064 23186 0.5150 +3064 23198 0.4540 +3064 23230 0.5790 +3064 23265 0.4520 +3064 23295 0.6510 +3064 23332 0.5170 +3064 23390 0.9950 +3064 23400 0.4780 +3064 23405 0.5300 +3064 23410 0.4080 +3064 23411 0.5400 +3064 23435 0.9050 +3064 23551 0.9470 +3064 23621 0.5790 +3064 23636 0.5200 +3064 23710 0.5190 +3064 25763 0.5980 +3064 25764 0.9860 +3064 25766 0.6430 +3064 25814 0.4020 +3064 25942 0.7260 +3064 26227 0.4370 +3064 26353 0.5340 +3064 26523 0.5010 +3064 26993 0.7610 +3064 27089 0.9010 +3064 27161 0.9460 +3064 27185 0.6320 +3064 27242 0.4060 +3064 28964 0.6470 +3064 29072 0.9720 +3064 29763 0.4210 +3064 29781 0.4380 +3064 29796 0.9060 +3064 29978 0.8250 +3064 29979 0.7900 +3064 29993 0.9170 +3064 30849 0.4020 +3064 50613 0.4930 +3064 50618 0.5600 +3064 51024 0.4560 +3064 51100 0.5170 +3064 51142 0.4280 +3064 51361 0.4570 +3064 51588 0.4050 +3064 51667 0.5510 +3064 51806 0.6330 +3064 54205 0.6910 +3064 54503 0.8810 +3064 55040 0.4020 +3064 55054 0.5410 +3064 55072 0.4010 +3064 55081 0.7570 +3064 55201 0.4400 +3064 55626 0.4270 +3064 55660 0.9890 +3064 55669 0.4410 +3064 55705 0.4970 +3064 55729 0.5600 +3064 56893 0.5400 +3064 56904 0.4390 +3064 57338 0.6480 +3064 57521 0.4640 +3064 57531 0.4780 +3064 63908 0.4610 +3064 63973 0.4020 +3064 64746 0.4910 +3064 64764 0.8080 +3064 64837 0.6960 +3064 65018 0.6600 +3064 79661 0.4350 +3064 80331 0.6230 +3064 81631 0.6550 +3064 83787 0.4010 +3064 84152 0.6940 +3064 84174 0.7410 +3064 84447 0.4110 +3064 84557 0.5160 +3064 84699 0.8080 +3064 89953 0.6900 +3064 90203 0.5790 +3064 90993 0.8080 +3064 91833 0.4550 +3064 91860 0.6390 +3064 92552 0.8940 +3064 93986 0.5510 +3064 112755 0.4130 +3064 120892 0.7040 +3064 122786 0.4180 +3064 126119 0.4470 +3064 127002 0.7130 +3064 127833 0.4410 +3064 133482 0.5870 +3064 137902 0.4280 +3064 143471 0.6780 +3064 146713 0.5170 +3064 147700 0.6500 +3064 148327 0.8130 +3064 163688 0.6340 +3064 165721 0.4260 +3064 203068 0.5750 +3064 203228 0.6660 +3064 222255 0.7120 +3064 283450 0.4660 +3064 345456 0.6490 +3064 375189 0.6570 +3064 440567 0.9000 +3064 441925 0.9130 +3064 474383 0.9980 +3064 474384 0.9470 +3064 100423062 0.4870 +3064 100532731 0.4890 +3065 3066 0.9990 +3065 3070 0.7850 +3065 3091 0.9830 +3065 3146 0.5530 +3065 3157 0.4130 +3065 3158 0.4370 +3065 3164 0.6530 +3065 3169 0.7240 +3065 3172 0.4260 +3065 3176 0.6930 +3065 3178 0.4020 +3065 3183 0.5590 +3065 3184 0.6910 +3065 3185 0.4460 +3065 3190 0.4330 +3065 3191 0.7750 +3065 3192 0.5220 +3065 3205 0.6700 +3065 3265 0.5630 +3065 3276 0.9070 +3065 3280 0.4160 +3065 3297 0.7220 +3065 3301 0.4140 +3065 3304 0.4080 +3065 3306 0.4710 +3065 3308 0.9210 +3065 3315 0.5330 +3065 3316 0.4650 +3065 3320 0.7640 +3065 3326 0.7510 +3065 3329 0.4070 +3065 3364 0.4310 +3065 3458 0.4200 +3065 3475 0.8370 +3065 3516 0.9860 +3065 3551 0.5560 +3065 3553 0.4350 +3065 3558 0.6760 +3065 3569 0.4810 +3065 3586 0.4200 +3065 3605 0.5090 +3065 3607 0.6570 +3065 3621 0.9970 +3065 3622 0.9900 +3065 3630 0.4640 +3065 3642 0.6240 +3065 3659 0.9850 +3065 3663 0.4240 +3065 3667 0.5250 +3065 3674 0.5400 +3065 3675 0.4360 +3065 3678 0.4380 +3065 3685 0.4370 +3065 3688 0.4840 +3065 3693 0.4090 +3065 3700 0.4270 +3065 3717 0.6110 +3065 3720 0.6680 +3065 3725 0.9670 +3065 3796 0.4800 +3065 3831 0.4230 +3065 3960 0.4550 +3065 4001 0.4350 +3065 4005 0.5620 +3065 4084 0.6270 +3065 4087 0.9800 +3065 4088 0.9800 +3065 4089 0.9720 +3065 4090 0.4200 +3065 4092 0.8250 +3065 4100 0.5340 +3065 4113 0.6030 +3065 4128 0.4180 +3065 4148 0.4790 +3065 4152 0.5000 +3065 4171 0.4800 +3065 4172 0.5830 +3065 4173 0.4810 +3065 4174 0.5880 +3065 4175 0.5370 +3065 4176 0.5940 +3065 4193 0.9630 +3065 4204 0.9990 +3065 4205 0.8640 +3065 4208 0.8650 +3065 4209 0.7240 +3065 4261 0.4630 +3065 4297 0.8090 +3065 4335 0.6420 +3065 4343 0.4670 +3065 4436 0.5740 +3065 4601 0.4310 +3065 4605 0.6490 +3065 4609 0.9910 +3065 4613 0.9140 +3065 4627 0.4530 +3065 4654 0.9260 +3065 4661 0.6140 +3065 4670 0.5700 +3065 4678 0.4740 +3065 4691 0.5490 +3065 4739 0.5680 +3065 4763 0.6340 +3065 4772 0.6540 +3065 4773 0.7820 +3065 4778 0.4770 +3065 4780 0.6140 +3065 4783 0.4540 +3065 4790 0.9960 +3065 4792 0.5990 +3065 4799 0.4700 +3065 4800 0.6420 +3065 4801 0.6500 +3065 4802 0.4200 +3065 4804 0.4760 +3065 4821 0.9060 +3065 4825 0.4730 +3065 4830 0.4970 +3065 4831 0.4440 +3065 4841 0.8120 +3065 4851 0.7900 +3065 4869 0.5410 +3065 4893 0.5850 +3065 4928 0.6590 +3065 4929 0.5680 +3065 4988 0.4910 +3065 5054 0.5080 +3065 5077 0.4790 +3065 5080 0.5580 +3065 5087 0.7060 +3065 5111 0.6420 +3065 5204 0.6430 +3065 5217 0.7950 +3065 5245 0.9230 +3065 5252 0.6330 +3065 5268 0.7790 +3065 5303 0.4670 +3065 5308 0.4200 +3065 5371 0.9030 +3065 5451 0.7340 +3065 5460 0.8960 +3065 5467 0.7560 +3065 5468 0.8570 +3065 5499 0.7340 +3065 5501 0.7570 +3065 5531 0.5710 +3065 5566 0.6730 +3065 5591 0.4170 +3065 5594 0.5340 +3065 5595 0.4800 +3065 5599 0.4880 +3065 5725 0.4750 +3065 5728 0.5160 +3065 5743 0.5040 +3065 5757 0.5800 +3065 5829 0.4550 +3065 5883 0.4160 +3065 5885 0.4070 +3065 5888 0.4410 +3065 5914 0.8740 +3065 5925 0.9990 +3065 5926 0.9860 +3065 5927 0.9250 +3065 5928 0.9990 +3065 5929 0.6890 +3065 5931 0.9990 +3065 5932 0.6140 +3065 5933 0.7960 +3065 5934 0.9910 +3065 5966 0.4100 +3065 5970 0.9980 +3065 5977 0.5040 +3065 5978 0.9940 +3065 5987 0.8030 +3065 5989 0.9380 +3065 5994 0.4380 +3065 6015 0.8490 +3065 6045 0.8680 +3065 6046 0.4920 +3065 6097 0.4160 +3065 6197 0.4460 +3065 6239 0.7270 +3065 6240 0.5250 +3065 6256 0.7550 +3065 6257 0.6870 +3065 6258 0.6860 +3065 6294 0.4660 +3065 6299 0.5090 +3065 6304 0.9490 +3065 6391 0.4370 +3065 6419 0.4040 +3065 6421 0.9210 +3065 6426 0.6980 +3065 6427 0.4460 +3065 6431 0.4400 +3065 6464 0.4720 +3065 6498 0.5360 +3065 6591 0.9240 +3065 6594 0.5570 +3065 6595 0.8480 +3065 6597 0.9890 +3065 6598 0.9320 +3065 6599 0.9090 +3065 6601 0.7710 +3065 6602 0.6460 +3065 6605 0.7510 +3065 6613 0.7300 +3065 6615 0.9990 +3065 6626 0.4970 +3065 6657 0.9660 +3065 6660 0.4640 +3065 6667 0.9910 +3065 6670 0.8730 +3065 6688 0.7650 +3065 6714 0.4300 +3065 6720 0.6040 +3065 6749 0.6610 +3065 6772 0.9690 +3065 6773 0.9090 +3065 6774 0.9840 +3065 6775 0.4550 +3065 6776 0.5560 +3065 6777 0.5590 +3065 6830 0.6190 +3065 6839 0.9940 +3065 6850 0.4260 +3065 6872 0.6640 +3065 6886 0.7950 +3065 6907 0.8570 +3065 6908 0.8650 +3065 6909 0.5540 +3065 6926 0.6850 +3065 6928 0.4860 +3065 6932 0.6340 +3065 6934 0.9260 +3065 6938 0.7050 +3065 6942 0.4100 +3065 6949 0.5640 +3065 6950 0.6850 +3065 7015 0.6880 +3065 7024 0.4240 +3065 7026 0.4570 +3065 7027 0.8020 +3065 7029 0.5750 +3065 7040 0.4070 +3065 7050 0.8310 +3065 7057 0.5550 +3065 7067 0.6840 +3065 7068 0.6870 +3065 7071 0.5890 +3065 7088 0.9430 +3065 7089 0.6260 +3065 7090 0.9820 +3065 7091 0.8300 +3065 7101 0.7190 +3065 7112 0.4010 +3065 7124 0.5100 +3065 7150 0.6090 +3065 7153 0.8090 +3065 7155 0.6820 +3065 7157 0.9990 +3065 7158 0.4550 +3065 7161 0.7450 +3065 7182 0.7280 +3065 7227 0.5040 +3065 7270 0.5920 +3065 7291 0.7340 +3065 7297 0.5530 +3065 7306 0.6520 +3065 7307 0.4680 +3065 7316 0.4210 +3065 7329 0.8600 +3065 7341 0.8200 +3065 7343 0.7130 +3065 7403 0.5810 +3065 7404 0.5760 +3065 7411 0.4730 +3065 7428 0.6160 +3065 7431 0.4320 +3065 7468 0.9010 +3065 7486 0.4700 +3065 7514 0.4540 +3065 7515 0.4230 +3065 7520 0.6500 +3065 7528 0.9990 +3065 7532 0.4660 +3065 7536 0.4070 +3065 7538 0.4040 +3065 7629 0.5020 +3065 7704 0.9490 +3065 7707 0.7390 +3065 7750 0.9470 +3065 7764 0.9870 +3065 7791 0.4250 +3065 7832 0.4860 +3065 7837 0.5480 +3065 7862 0.5320 +3065 7874 0.9290 +3065 7884 0.7680 +3065 7994 0.7790 +3065 8019 0.4520 +3065 8021 0.5270 +3065 8030 0.4780 +3065 8061 0.5100 +3065 8085 0.6530 +3065 8091 0.5300 +3065 8099 0.9470 +3065 8204 0.8110 +3065 8237 0.4270 +3065 8242 0.9690 +3065 8243 0.4620 +3065 8284 0.4100 +3065 8289 0.7930 +3065 8290 0.9760 +3065 8295 0.6900 +3065 8314 0.4130 +3065 8328 0.8880 +3065 8329 0.8490 +3065 8331 0.6860 +3065 8334 0.6970 +3065 8337 0.9110 +3065 8338 0.8770 +3065 8340 0.7620 +3065 8341 0.7590 +3065 8342 0.7610 +3065 8345 0.7620 +3065 8347 0.7600 +3065 8348 0.7770 +3065 8349 0.8910 +3065 8350 0.7000 +3065 8356 0.9860 +3065 8361 0.9840 +3065 8369 0.8310 +3065 8431 0.7980 +3065 8450 0.6580 +3065 8462 0.4180 +3065 8467 0.9690 +3065 8473 0.6940 +3065 8520 0.5530 +3065 8535 0.6640 +3065 8553 0.8250 +3065 8565 0.5310 +3065 8570 0.5610 +3065 8600 0.5070 +3065 8607 0.8010 +3065 8648 0.5050 +3065 8726 0.9520 +3065 8737 0.4760 +3065 8805 0.5390 +3065 8815 0.6330 +3065 8819 0.9990 +3065 8841 0.9250 +3065 8850 0.9760 +3065 8864 0.5260 +3065 8877 0.4230 +3065 8880 0.5020 +3065 8900 0.4540 +3065 8930 0.5510 +3065 8932 0.9990 +3065 8945 0.6210 +3065 8970 0.7600 +3065 8988 0.4880 +3065 9013 0.4050 +3065 9014 0.5630 +3065 9015 0.4310 +3065 9070 0.7320 +3065 9112 0.9990 +3065 9126 0.5290 +3065 9139 0.4820 +3065 9184 0.7170 +3065 9188 0.5260 +3065 9202 0.4380 +3065 9203 0.9080 +3065 9212 0.6030 +3065 9219 0.9990 +3065 9278 0.5410 +3065 9314 0.7350 +3065 9349 0.5000 +3065 9373 0.4260 +3065 9425 0.8830 +3065 9541 0.9210 +3065 9555 0.9450 +3065 9564 0.4570 +3065 9572 0.4590 +3065 9575 0.5490 +3065 9584 0.5680 +3065 9611 0.9990 +3065 9612 0.9990 +3065 9627 0.4180 +3065 9658 0.7980 +3065 9666 0.6040 +3065 9682 0.7580 +3065 9730 0.6190 +3065 9734 0.9820 +3065 9739 0.8050 +3065 9757 0.6400 +3065 9759 0.7810 +3065 9782 0.6020 +3065 9794 0.6170 +3065 9839 0.8390 +3065 9869 0.9920 +3065 9939 0.5940 +3065 9975 0.5610 +3065 9987 0.4960 +3065 10009 0.6080 +3065 10013 0.7350 +3065 10014 0.8180 +3065 10018 0.4220 +3065 10046 0.5240 +3065 10051 0.4440 +3065 10146 0.4100 +3065 10155 0.9680 +3065 10236 0.4050 +3065 10263 0.4280 +3065 10273 0.4190 +3065 10280 0.5150 +3065 10284 0.9980 +3065 10291 0.4720 +3065 10294 0.5020 +3065 10320 0.9870 +3065 10362 0.9980 +3065 10363 0.8780 +3065 10419 0.6850 +3065 10450 0.5230 +3065 10467 0.5460 +3065 10498 0.4450 +3065 10514 0.5440 +3065 10521 0.9360 +3065 10524 0.9850 +3065 10531 0.4600 +3065 10533 0.5560 +3065 10575 0.4560 +3065 10606 0.5260 +3065 10614 0.6560 +3065 10628 0.8140 +3065 10657 0.5180 +3065 10661 0.7540 +3065 10664 0.5430 +3065 10694 0.5150 +3065 10714 0.4020 +3065 10762 0.4560 +3065 10765 0.9860 +3065 10856 0.9460 +3065 10891 0.4140 +3065 10914 0.4220 +3065 10919 0.9990 +3065 10933 0.9950 +3065 10943 0.4340 +3065 10946 0.4310 +3065 10951 0.8770 +3065 11051 0.4730 +3065 11052 0.4690 +3065 11091 0.9500 +3065 11107 0.5600 +3065 11108 0.6900 +3065 11143 0.5820 +3065 11176 0.9670 +3065 11198 0.6580 +3065 11200 0.4510 +3065 11211 0.4560 +3065 11266 0.5360 +3065 11315 0.5350 +3065 11317 0.9210 +3065 11322 0.5420 +3065 11331 0.9460 +3065 11335 0.9630 +3065 11338 0.4960 +3065 22806 0.6640 +3065 22807 0.5000 +3065 22827 0.4230 +3065 22893 0.8010 +3065 22926 0.5920 +3065 22933 0.8590 +3065 22938 0.8170 +3065 22955 0.5730 +3065 22992 0.4830 +3065 23013 0.7390 +3065 23028 0.9990 +3065 23067 0.7060 +3065 23081 0.5340 +3065 23112 0.4500 +3065 23133 0.4430 +3065 23135 0.6350 +3065 23168 0.4060 +3065 23186 0.9990 +3065 23199 0.9520 +3065 23244 0.4570 +3065 23269 0.4100 +3065 23309 0.9990 +3065 23314 0.7420 +3065 23383 0.4410 +3065 23405 0.4850 +3065 23408 0.6000 +3065 23409 0.5680 +3065 23410 0.6210 +3065 23411 0.9930 +3065 23435 0.4690 +3065 23466 0.5900 +3065 23468 0.5790 +3065 23476 0.9540 +3065 23493 0.4030 +3065 23512 0.9600 +3065 23522 0.5530 +3065 23569 0.6540 +3065 23613 0.7050 +3065 23633 0.5170 +3065 23645 0.4330 +3065 23774 0.5460 +3065 25836 0.5730 +3065 25842 0.4250 +3065 25855 0.9920 +3065 25865 0.4970 +3065 25925 0.7360 +3065 25937 0.5390 +3065 25942 0.9990 +3065 26038 0.9620 +3065 26060 0.7210 +3065 26108 0.6870 +3065 26523 0.9090 +3065 26574 0.4460 +3065 26959 0.5400 +3065 26993 0.5080 +3065 27154 0.4910 +3065 27161 0.5030 +3065 27327 0.4420 +3065 29072 0.6730 +3065 29102 0.5720 +3065 29115 0.5940 +3065 29117 0.5610 +3065 29128 0.9960 +3065 29843 0.6450 +3065 29947 0.9890 +3065 29994 0.5030 +3065 30827 0.4010 +3065 50852 0.4630 +3065 50943 0.9090 +3065 51105 0.6860 +3065 51111 0.6240 +3065 51147 0.4550 +3065 51176 0.9660 +3065 51193 0.5180 +3065 51222 0.6520 +3065 51230 0.4650 +3065 51274 0.5030 +3065 51317 0.9980 +3065 51339 0.5910 +3065 51341 0.9650 +3065 51460 0.6710 +3065 51477 0.4390 +3065 51547 0.6700 +3065 51548 0.6670 +3065 51564 0.8860 +3065 51567 0.4620 +3065 51574 0.4310 +3065 51588 0.5080 +3065 51593 0.5950 +3065 51621 0.5140 +3065 51742 0.9900 +3065 53335 0.9130 +3065 53615 0.9960 +3065 53635 0.6660 +3065 54145 0.7600 +3065 54531 0.6970 +3065 54556 0.8290 +3065 54606 0.5170 +3065 54737 0.4150 +3065 54790 0.8820 +3065 54815 0.9990 +3065 54856 0.4790 +3065 54880 0.6170 +3065 54971 0.9600 +3065 55031 0.4410 +3065 55140 0.4680 +3065 55170 0.8690 +3065 55193 0.4070 +3065 55269 0.6500 +3065 55388 0.4330 +3065 55506 0.7330 +3065 55534 0.6060 +3065 55553 0.9520 +3065 55662 0.6050 +3065 55671 0.4570 +3065 55743 0.6690 +3065 55758 0.8620 +3065 55766 0.6860 +3065 55806 0.5280 +3065 55809 0.8690 +3065 55818 0.4240 +3065 55827 0.6000 +3065 55870 0.4270 +3065 55893 0.4040 +3065 55904 0.8180 +3065 55929 0.6930 +3065 55957 0.5920 +3065 56254 0.5270 +3065 56259 0.5170 +3065 56339 0.4720 +3065 56848 0.9330 +3065 56916 0.7150 +3065 56946 0.7940 +3065 56950 0.6250 +3065 56987 0.5510 +3065 57167 0.7710 +3065 57332 0.6830 +3065 57459 0.9990 +3065 57473 0.5210 +3065 57504 0.9990 +3065 57592 0.6460 +3065 57597 0.5880 +3065 57621 0.6570 +3065 57634 0.4890 +3065 57649 0.9870 +3065 57659 0.5410 +3065 57708 0.9810 +3065 57798 0.8240 +3065 57805 0.5020 +3065 58508 0.6690 +3065 58516 0.9670 +3065 60436 0.8040 +3065 60468 0.5020 +3065 64324 0.4280 +3065 64422 0.5160 +3065 64426 0.9990 +3065 64754 0.6240 +3065 64759 0.4180 +3065 64769 0.5160 +3065 64837 0.4200 +3065 64919 0.9470 +3065 64925 0.5140 +3065 79065 0.4530 +3065 79365 0.6920 +3065 79577 0.7080 +3065 79595 0.9220 +3065 79685 0.9780 +3065 79718 0.8830 +3065 79723 0.5110 +3065 79755 0.4750 +3065 79813 0.9420 +3065 79885 0.5140 +3065 79923 0.7190 +3065 79977 0.4600 +3065 80012 0.5540 +3065 80232 0.4530 +3065 80312 0.9510 +3065 80319 0.4590 +3065 80320 0.4830 +3065 80335 0.4270 +3065 80714 0.5170 +3065 80854 0.6800 +3065 81631 0.4170 +3065 81669 0.5070 +3065 83439 0.5900 +3065 83746 0.6800 +3065 83933 0.6340 +3065 84108 0.5590 +3065 84148 0.6080 +3065 84159 0.7740 +3065 84232 0.5540 +3065 84260 0.7320 +3065 84271 0.5470 +3065 84289 0.6410 +3065 84295 0.6910 +3065 84312 0.9920 +3065 84441 0.6060 +3065 84444 0.7030 +3065 84458 0.5890 +3065 84504 0.4870 +3065 84619 0.6820 +3065 84629 0.4800 +3065 84661 0.6060 +3065 84678 0.4980 +3065 84733 0.6620 +3065 84955 0.6220 +3065 85235 0.4630 +3065 85236 0.7640 +3065 85509 0.8640 +3065 89953 0.4150 +3065 90427 0.4050 +3065 90665 0.7340 +3065 90780 0.6070 +3065 91748 0.9710 +3065 91750 0.8290 +3065 92292 0.5150 +3065 92815 0.6860 +3065 93166 0.5650 +3065 94239 0.7970 +3065 112885 0.5760 +3065 114799 0.5490 +3065 114825 0.7310 +3065 114826 0.5370 +3065 114907 0.4970 +3065 115426 0.9400 +3065 116092 0.9940 +3065 121536 0.4800 +3065 122953 0.4630 +3065 123169 0.6030 +3065 125997 0.5940 +3065 128312 0.8320 +3065 132660 0.7410 +3065 133482 0.5310 +3065 136259 0.4850 +3065 137902 0.5470 +3065 143689 0.5950 +3065 146212 0.5590 +3065 147040 0.5090 +3065 147700 0.4150 +3065 148523 0.4290 +3065 153090 0.4290 +3065 157570 0.5480 +3065 158983 0.7600 +3065 161882 0.9360 +3065 166968 0.8020 +3065 166979 0.4500 +3065 170394 0.4290 +3065 192669 0.4970 +3065 192670 0.4840 +3065 200424 0.4750 +3065 201161 0.4500 +3065 221613 0.7710 +3065 221656 0.5240 +3065 221937 0.4180 +3065 255626 0.8600 +3065 283149 0.4990 +3065 283248 0.6870 +3065 284252 0.4850 +3065 285973 0.4890 +3065 286436 0.7600 +3065 286826 0.6530 +3065 317772 0.6940 +3065 333929 0.4180 +3065 387893 0.4620 +3065 388272 0.6500 +3065 440093 0.9670 +3065 440686 0.9690 +3065 440689 0.7700 +3065 474381 0.7070 +3065 474382 0.6990 +3065 493861 0.5290 +3065 653604 0.9840 +3065 728378 0.5630 +3065 100316904 0.4930 +3065 100532731 0.4520 +3065 114483833 0.7600 +3066 3070 0.7050 +3066 3091 0.7810 +3066 3141 0.4140 +3066 3164 0.8200 +3066 3176 0.4470 +3066 3206 0.5090 +3066 3276 0.4300 +3066 3297 0.5890 +3066 3301 0.4440 +3066 3308 0.7410 +3066 3320 0.6140 +3066 3326 0.5880 +3066 3516 0.9690 +3066 3553 0.4190 +3066 3569 0.4480 +3066 3607 0.4910 +3066 3621 0.9850 +3066 3622 0.9880 +3066 3651 0.5150 +3066 3659 0.9270 +3066 3667 0.4330 +3066 3720 0.7130 +3066 3725 0.8460 +3066 4000 0.6900 +3066 4084 0.5840 +3066 4087 0.7210 +3066 4088 0.6700 +3066 4089 0.4240 +3066 4092 0.7700 +3066 4094 0.4190 +3066 4131 0.4050 +3066 4148 0.5150 +3066 4152 0.5170 +3066 4193 0.5630 +3066 4204 0.9970 +3066 4261 0.8420 +3066 4288 0.4800 +3066 4297 0.4690 +3066 4331 0.5510 +3066 4363 0.4710 +3066 4601 0.4540 +3066 4605 0.5810 +3066 4609 0.8380 +3066 4613 0.8120 +3066 4654 0.7140 +3066 4772 0.4820 +3066 4780 0.6860 +3066 4790 0.8030 +3066 4792 0.5950 +3066 4841 0.4650 +3066 4851 0.6640 +3066 4869 0.8380 +3066 4988 0.5000 +3066 5036 0.6820 +3066 5087 0.4570 +3066 5252 0.5650 +3066 5371 0.8590 +3066 5453 0.4560 +3066 5460 0.6920 +3066 5467 0.6510 +3066 5468 0.7840 +3066 5562 0.5390 +3066 5591 0.4060 +3066 5595 0.4320 +3066 5599 0.4210 +3066 5604 0.4310 +3066 5664 0.4090 +3066 5728 0.4670 +3066 5757 0.4980 +3066 5771 0.4280 +3066 5885 0.4140 +3066 5888 0.4310 +3066 5914 0.6530 +3066 5925 0.9860 +3066 5926 0.9440 +3066 5927 0.8780 +3066 5928 0.9990 +3066 5931 0.9990 +3066 5933 0.4070 +3066 5961 0.4430 +3066 5970 0.9860 +3066 5978 0.9640 +3066 5989 0.5240 +3066 5993 0.4620 +3066 6015 0.9540 +3066 6045 0.9410 +3066 6046 0.4620 +3066 6239 0.5350 +3066 6256 0.7300 +3066 6257 0.6690 +3066 6258 0.6780 +3066 6304 0.4380 +3066 6421 0.4250 +3066 6591 0.8280 +3066 6594 0.5160 +3066 6595 0.8000 +3066 6597 0.9990 +3066 6598 0.8540 +3066 6599 0.6870 +3066 6601 0.7230 +3066 6605 0.7710 +3066 6613 0.7170 +3066 6615 0.9980 +3066 6657 0.6170 +3066 6663 0.9090 +3066 6667 0.9160 +3066 6670 0.8270 +3066 6688 0.6470 +3066 6722 0.5990 +3066 6772 0.4100 +3066 6774 0.9060 +3066 6776 0.4280 +3066 6777 0.4040 +3066 6790 0.4770 +3066 6830 0.4460 +3066 6839 0.9410 +3066 6872 0.4540 +3066 6886 0.7710 +3066 6907 0.8550 +3066 6908 0.6790 +3066 6926 0.4180 +3066 6927 0.5370 +3066 6929 0.7230 +3066 6934 0.5930 +3066 6938 0.5070 +3066 6950 0.4830 +3066 7027 0.4740 +3066 7067 0.6850 +3066 7068 0.6840 +3066 7080 0.4870 +3066 7088 0.5770 +3066 7091 0.5120 +3066 7101 0.7990 +3066 7124 0.4770 +3066 7153 0.5120 +3066 7155 0.6920 +3066 7157 0.9900 +3066 7182 0.4190 +3066 7227 0.7050 +3066 7270 0.5310 +3066 7291 0.6150 +3066 7328 0.4120 +3066 7329 0.6120 +3066 7341 0.8410 +3066 7343 0.5200 +3066 7375 0.6680 +3066 7403 0.5980 +3066 7404 0.5820 +3066 7428 0.6510 +3066 7468 0.7060 +3066 7472 0.4960 +3066 7486 0.4320 +3066 7514 0.4260 +3066 7520 0.4870 +3066 7528 0.9990 +3066 7703 0.9170 +3066 7704 0.4560 +3066 7750 0.9350 +3066 7764 0.9890 +3066 7837 0.4720 +3066 7862 0.4870 +3066 7874 0.4860 +3066 7884 0.6170 +3066 7913 0.6990 +3066 7994 0.7480 +3066 8019 0.4040 +3066 8078 0.4310 +3066 8099 0.8870 +3066 8202 0.5440 +3066 8204 0.5960 +3066 8242 0.8760 +3066 8290 0.9090 +3066 8314 0.9130 +3066 8328 0.8340 +3066 8329 0.6860 +3066 8331 0.6860 +3066 8334 0.6890 +3066 8337 0.8720 +3066 8338 0.9050 +3066 8340 0.7700 +3066 8341 0.7520 +3066 8342 0.7670 +3066 8345 0.7540 +3066 8347 0.7550 +3066 8348 0.7570 +3066 8349 0.9160 +3066 8350 0.6960 +3066 8356 0.9360 +3066 8361 0.9760 +3066 8369 0.8650 +3066 8450 0.6460 +3066 8467 0.9730 +3066 8473 0.6590 +3066 8520 0.5690 +3066 8535 0.9290 +3066 8626 0.5270 +3066 8726 0.9880 +3066 8805 0.4800 +3066 8815 0.7490 +3066 8819 0.9990 +3066 8841 0.9060 +3066 8850 0.9500 +3066 8874 0.4920 +3066 8932 0.9820 +3066 8970 0.7530 +3066 9014 0.4130 +3066 9015 0.4270 +3066 9070 0.4010 +3066 9096 0.4180 +3066 9112 0.9990 +3066 9126 0.6530 +3066 9184 0.6810 +3066 9203 0.8790 +3066 9219 0.9990 +3066 9314 0.9490 +3066 9349 0.6070 +3066 9425 0.8470 +3066 9472 0.4460 +3066 9541 0.9270 +3066 9555 0.9270 +3066 9611 0.9940 +3066 9612 0.9930 +3066 9627 0.4690 +3066 9658 0.7000 +3066 9682 0.4110 +3066 9734 0.6120 +3066 9739 0.7180 +3066 9759 0.8270 +3066 9794 0.5600 +3066 9839 0.7180 +3066 9853 0.4230 +3066 9869 0.8160 +3066 9898 0.9070 +3066 10011 0.5140 +3066 10013 0.7410 +3066 10014 0.7510 +3066 10036 0.6780 +3066 10046 0.5240 +3066 10075 0.4650 +3066 10138 0.4560 +3066 10155 0.6190 +3066 10263 0.5370 +3066 10284 0.9970 +3066 10294 0.5030 +3066 10320 0.9280 +3066 10336 0.9030 +3066 10362 0.9960 +3066 10363 0.9190 +3066 10389 0.9080 +3066 10419 0.7570 +3066 10499 0.5140 +3066 10521 0.7950 +3066 10524 0.6780 +3066 10606 0.6040 +3066 10614 0.4330 +3066 10628 0.4140 +3066 10664 0.4950 +3066 10765 0.6530 +3066 10767 0.4930 +3066 10773 0.4200 +3066 10856 0.5360 +3066 10919 0.9820 +3066 10933 0.9980 +3066 10951 0.5510 +3066 11051 0.4440 +3066 11073 0.5310 +3066 11091 0.7870 +3066 11108 0.6740 +3066 11143 0.5600 +3066 11176 0.5960 +3066 11198 0.4200 +3066 11200 0.4460 +3066 11315 0.4300 +3066 11317 0.9180 +3066 11331 0.4960 +3066 11335 0.8640 +3066 22806 0.5940 +3066 22823 0.6420 +3066 22893 0.5290 +3066 22933 0.8400 +3066 22938 0.8050 +3066 22955 0.5610 +3066 22992 0.4400 +3066 23013 0.4210 +3066 23028 0.9990 +3066 23081 0.5940 +3066 23135 0.5770 +3066 23137 0.4080 +3066 23186 0.9990 +3066 23199 0.8680 +3066 23309 0.9990 +3066 23405 0.4450 +3066 23408 0.5560 +3066 23409 0.5510 +3066 23410 0.5880 +3066 23411 0.8980 +3066 23466 0.9230 +3066 23468 0.5760 +3066 23476 0.7540 +3066 23492 0.9940 +3066 23512 0.9950 +3066 23522 0.5150 +3066 23569 0.6390 +3066 23613 0.5550 +3066 23637 0.4080 +3066 23774 0.5190 +3066 25770 0.6010 +3066 25842 0.4060 +3066 25855 0.9290 +3066 25942 0.9990 +3066 26009 0.4160 +3066 26038 0.9290 +3066 26060 0.6090 +3066 26147 0.4960 +3066 27043 0.6980 +3066 27154 0.4710 +3066 29072 0.6680 +3066 29102 0.5530 +3066 29115 0.5200 +3066 29117 0.6650 +3066 29128 0.5050 +3066 29843 0.4590 +3066 29947 0.7550 +3066 50852 0.4140 +3066 50943 0.5620 +3066 50964 0.4670 +3066 51004 0.4180 +3066 51105 0.5110 +3066 51132 0.4750 +3066 51222 0.7900 +3066 51230 0.5830 +3066 51274 0.6610 +3066 51317 0.9910 +3066 51341 0.6400 +3066 51412 0.5990 +3066 51477 0.4420 +3066 51547 0.6390 +3066 51548 0.6260 +3066 51564 0.8360 +3066 51567 0.5400 +3066 51574 0.4180 +3066 51588 0.4380 +3066 51742 0.9880 +3066 53335 0.8330 +3066 53615 0.9870 +3066 53981 0.4450 +3066 54145 0.7540 +3066 54531 0.7910 +3066 54556 0.5780 +3066 54625 0.6500 +3066 54790 0.9890 +3066 54815 0.9990 +3066 54897 0.5460 +3066 55140 0.4910 +3066 55197 0.4910 +3066 55252 0.5600 +3066 55294 0.6170 +3066 55506 0.7770 +3066 55534 0.5500 +3066 55553 0.5730 +3066 55621 0.4770 +3066 55636 0.5920 +3066 55662 0.6190 +3066 55758 0.8950 +3066 55766 0.6860 +3066 55809 0.5450 +3066 55818 0.6290 +3066 55827 0.6000 +3066 55869 0.4210 +3066 55904 0.5130 +3066 55929 0.9110 +3066 56254 0.4330 +3066 56339 0.4400 +3066 56848 0.9210 +3066 56916 0.4580 +3066 56946 0.7440 +3066 57057 0.4220 +3066 57167 0.6360 +3066 57180 0.4690 +3066 57332 0.9390 +3066 57459 0.9980 +3066 57504 0.9980 +3066 57634 0.5770 +3066 57649 0.9850 +3066 57708 0.9580 +3066 57798 0.8050 +3066 58516 0.9760 +3066 64332 0.5040 +3066 64422 0.4490 +3066 64426 0.9990 +3066 64769 0.4900 +3066 64919 0.9220 +3066 79101 0.4130 +3066 79595 0.8500 +3066 79685 0.9450 +3066 79718 0.7620 +3066 79723 0.5100 +3066 79759 0.5070 +3066 79813 0.8520 +3066 79885 0.4890 +3066 79901 0.4510 +3066 79923 0.8090 +3066 80012 0.9080 +3066 80312 0.8620 +3066 80816 0.5750 +3066 80852 0.4410 +3066 80854 0.4950 +3066 83746 0.7590 +3066 83933 0.8340 +3066 84108 0.9570 +3066 84148 0.5640 +3066 84168 0.4510 +3066 84232 0.5410 +3066 84271 0.4950 +3066 84289 0.5660 +3066 84312 0.9260 +3066 84333 0.9090 +3066 84441 0.5440 +3066 84444 0.4770 +3066 84525 0.9730 +3066 84619 0.5200 +3066 84678 0.4460 +3066 84733 0.9500 +3066 84759 0.9120 +3066 85235 0.4630 +3066 85236 0.7530 +3066 85509 0.8820 +3066 90316 0.4670 +3066 90665 0.6970 +3066 91748 0.7130 +3066 91750 0.6650 +3066 92292 0.4820 +3066 92521 0.9040 +3066 92815 0.7090 +3066 94239 0.7890 +3066 114799 0.5420 +3066 114825 0.4590 +3066 116092 0.7980 +3066 121536 0.9210 +3066 125997 0.6840 +3066 128312 0.7790 +3066 132625 0.6220 +3066 132660 0.4930 +3066 133482 0.5550 +3066 137902 0.4670 +3066 140836 0.5010 +3066 142678 0.4140 +3066 157570 0.5460 +3066 157697 0.4070 +3066 158983 0.7540 +3066 163126 0.5030 +3066 166968 0.8320 +3066 171023 0.9170 +3066 200424 0.4100 +3066 221613 0.7680 +3066 221656 0.4630 +3066 255626 0.8640 +3066 283248 0.7450 +3066 286436 0.7540 +3066 317772 0.6890 +3066 338917 0.4130 +3066 377630 0.4340 +3066 387893 0.4110 +3066 388272 0.5660 +3066 404281 0.5860 +3066 440093 0.8770 +3066 440686 0.8770 +3066 440689 0.7570 +3066 474381 0.7020 +3066 474382 0.7050 +3066 653604 0.9370 +3066 100170841 0.4370 +3066 100316904 0.4090 +3066 100532731 0.6030 +3066 114483833 0.7540 +3067 3176 0.9660 +3067 3269 0.7980 +3067 3274 0.7990 +3067 3553 0.4180 +3067 3565 0.4510 +3067 4129 0.4580 +3067 4537 0.4150 +3067 4538 0.4280 +3067 4720 0.4190 +3067 4728 0.4510 +3067 4852 0.4450 +3067 4884 0.6480 +3067 4953 0.6190 +3067 5053 0.4900 +3067 5925 0.4290 +3067 6389 0.4920 +3067 6390 0.4510 +3067 6391 0.4180 +3067 6571 0.7130 +3067 6750 0.5460 +3067 6904 0.6520 +3067 6999 0.5080 +3067 7054 0.5980 +3067 7068 0.4060 +3067 7166 0.6060 +3067 7177 0.6830 +3067 8564 0.4420 +3067 8910 0.5430 +3067 9510 0.4400 +3067 10458 0.4930 +3067 11255 0.7900 +3067 51200 0.4860 +3067 55577 0.4040 +3067 55748 0.9520 +3067 57571 0.9210 +3067 59340 0.7610 +3067 64499 0.4940 +3067 64850 0.4200 +3067 64902 0.4710 +3067 83943 0.7020 +3067 84631 0.6680 +3067 84735 0.9290 +3067 85007 0.4240 +3067 114798 0.7250 +3067 121278 0.4600 +3068 3181 0.4840 +3068 3339 0.5370 +3068 3569 0.5060 +3068 3576 0.4650 +3068 3608 0.4340 +3068 3921 0.5090 +3068 4192 0.9340 +3068 4609 0.4480 +3068 4691 0.7470 +3068 4839 0.5250 +3068 4904 0.7370 +3068 5036 0.4580 +3068 5228 0.4690 +3068 5764 0.8160 +3068 5803 0.4470 +3068 5886 0.4010 +3068 6128 0.4120 +3068 6387 0.5290 +3068 6749 0.4580 +3068 6780 0.4080 +3068 7040 0.5110 +3068 7124 0.4030 +3068 7494 0.7930 +3068 8339 0.4970 +3068 8349 0.4010 +3068 8350 0.6180 +3068 8356 0.5740 +3068 8621 0.4920 +3068 8662 0.5220 +3068 8812 0.4290 +3068 8817 0.5780 +3068 8822 0.7710 +3068 8823 0.5720 +3068 8894 0.5630 +3068 9425 0.6640 +3068 9965 0.4970 +3068 10189 0.5810 +3068 10643 0.6000 +3068 10644 0.4710 +3068 10771 0.4460 +3068 11162 0.7620 +3068 11338 0.4440 +3068 23476 0.4500 +3068 25975 0.4280 +3068 26281 0.5780 +3068 27006 0.5780 +3068 27316 0.4820 +3068 51094 0.4590 +3068 51755 0.4950 +3068 54888 0.4880 +3068 54915 0.4080 +3068 55379 0.4140 +3068 56339 0.5220 +3068 79830 0.4470 +3068 84271 0.4420 +3068 84295 0.4100 +3068 92002 0.4160 +3068 150572 0.4130 +3068 375790 0.4090 +3069 3250 0.5400 +3069 3312 0.4260 +3069 3703 0.4330 +3069 3931 0.6030 +3069 3949 0.5770 +3069 3990 0.6390 +3069 4018 0.5590 +3069 4023 0.9200 +3069 4141 0.4470 +3069 4481 0.5570 +3069 4670 0.4460 +3069 4738 0.4180 +3069 4904 0.6200 +3069 5360 0.5740 +3069 5444 0.5700 +3069 5591 0.4100 +3069 5691 0.4750 +3069 5694 0.4150 +3069 5888 0.5660 +3069 5976 0.4620 +3069 6137 0.4410 +3069 6188 0.5240 +3069 6238 0.6880 +3069 6288 0.5440 +3069 6289 0.5440 +3069 6291 0.5620 +3069 6611 0.4840 +3069 6747 0.4380 +3069 7184 0.4690 +3069 7268 0.5930 +3069 7407 0.4240 +3069 7436 0.6780 +3069 7520 0.6040 +3069 7941 0.5400 +3069 8504 0.5500 +3069 8542 0.5410 +3069 8761 0.4470 +3069 9276 0.4020 +3069 9669 0.4920 +3069 9855 0.4540 +3069 9908 0.4780 +3069 10295 0.4330 +3069 10399 0.7740 +3069 10659 0.4390 +3069 10664 0.5670 +3069 23246 0.4100 +3069 23277 0.5430 +3069 23468 0.4300 +3069 26135 0.4400 +3069 26986 0.5010 +3069 27000 0.5990 +3069 27044 0.6100 +3069 29066 0.4420 +3069 29927 0.4730 +3069 51028 0.5410 +3069 51449 0.5830 +3069 51599 0.5430 +3069 51699 0.4260 +3069 55236 0.6650 +3069 55243 0.4170 +3069 55324 0.4560 +3069 55421 0.4930 +3069 55603 0.4610 +3069 55737 0.5780 +3069 55829 0.5430 +3069 55851 0.4520 +3069 55911 0.5400 +3069 55937 0.5760 +3069 56902 0.4760 +3069 64788 0.4410 +3069 79135 0.5400 +3069 79759 0.4210 +3069 81502 0.5030 +3069 84313 0.5920 +3069 84955 0.6230 +3069 90850 0.5800 +3069 114987 0.4660 +3069 116519 0.8400 +3069 338328 0.6810 +3069 100528017 0.5440 +3070 3142 0.4800 +3070 3161 0.4790 +3070 3204 0.6220 +3070 3832 0.7460 +3070 3835 0.4070 +3070 3925 0.4170 +3070 4085 0.5540 +3070 4171 0.5630 +3070 4172 0.7280 +3070 4173 0.7110 +3070 4174 0.6530 +3070 4175 0.6090 +3070 4176 0.4900 +3070 4288 0.5480 +3070 4678 0.5560 +3070 4751 0.5190 +3070 4998 0.5290 +3070 5111 0.4940 +3070 5347 0.4080 +3070 5422 0.6480 +3070 5427 0.6810 +3070 5557 0.6540 +3070 5591 0.4850 +3070 5888 0.8120 +3070 5893 0.4140 +3070 5928 0.5040 +3070 5931 0.4990 +3070 5982 0.4880 +3070 5983 0.5260 +3070 5984 0.5010 +3070 5985 0.4150 +3070 6240 0.4580 +3070 6241 0.5940 +3070 6790 0.4360 +3070 6882 0.4250 +3070 6917 0.4180 +3070 6919 0.4090 +3070 6920 0.4090 +3070 7046 0.4230 +3070 7048 0.4190 +3070 7112 0.4710 +3070 7153 0.7390 +3070 7157 0.5290 +3070 7272 0.6880 +3070 7298 0.5520 +3070 7347 0.4160 +3070 7398 0.4140 +3070 7486 0.6390 +3070 7539 0.4020 +3070 7707 0.5050 +3070 7884 0.4550 +3070 8019 0.6440 +3070 8208 0.5360 +3070 8290 0.4790 +3070 8318 0.6110 +3070 8350 0.4980 +3070 8356 0.5210 +3070 8361 0.4750 +3070 8438 0.5700 +3070 8458 0.4780 +3070 8520 0.5690 +3070 8607 0.4410 +3070 8914 0.4290 +3070 9031 0.4260 +3070 9044 0.4820 +3070 9133 0.5600 +3070 9134 0.4540 +3070 9156 0.7770 +3070 9184 0.4420 +3070 9212 0.4930 +3070 9319 0.4800 +3070 9493 0.5200 +3070 9555 0.5020 +3070 9585 0.5230 +3070 9735 0.5800 +3070 9768 0.5720 +3070 9787 0.6180 +3070 9824 0.4680 +3070 9833 0.5660 +3070 9837 0.4690 +3070 9841 0.7360 +3070 9918 0.4990 +3070 9928 0.6380 +3070 9994 0.4140 +3070 10036 0.4200 +3070 10051 0.5920 +3070 10112 0.4310 +3070 10403 0.5590 +3070 10460 0.4230 +3070 10592 0.6040 +3070 10615 0.4710 +3070 10635 0.5550 +3070 10721 0.4150 +3070 10733 0.4800 +3070 10856 0.4300 +3070 10919 0.6050 +3070 11004 0.4750 +3070 11065 0.4740 +3070 11130 0.4660 +3070 11169 0.6510 +3070 11176 0.4540 +3070 11177 0.5230 +3070 22974 0.5000 +3070 23347 0.4100 +3070 23397 0.4980 +3070 23411 0.4610 +3070 23468 0.4590 +3070 23476 0.4260 +3070 23512 0.5400 +3070 24137 0.4370 +3070 25788 0.4580 +3070 26586 0.5430 +3070 29028 0.8210 +3070 29063 0.4150 +3070 29128 0.7560 +3070 50717 0.4440 +3070 51053 0.5190 +3070 51203 0.6030 +3070 51512 0.4330 +3070 51514 0.5880 +3070 51659 0.6010 +3070 54107 0.5350 +3070 54443 0.5260 +3070 54821 0.5420 +3070 54882 0.4060 +3070 54892 0.4020 +3070 54962 0.5200 +3070 55010 0.4790 +3070 55055 0.5870 +3070 55063 0.4160 +3070 55143 0.4640 +3070 55165 0.6110 +3070 55215 0.6240 +3070 55247 0.4400 +3070 55388 0.6050 +3070 55635 0.4040 +3070 55723 0.4090 +3070 55746 0.5140 +3070 55870 0.4450 +3070 55929 0.4280 +3070 56916 0.5220 +3070 56992 0.5860 +3070 57082 0.4440 +3070 57405 0.4720 +3070 57697 0.4840 +3070 63967 0.5580 +3070 64105 0.6180 +3070 64151 0.4700 +3070 64946 0.4150 +3070 79075 0.5180 +3070 79682 0.4930 +3070 79733 0.5360 +3070 79801 0.5160 +3070 79915 0.5920 +3070 79968 0.9720 +3070 81620 0.4310 +3070 81930 0.5330 +3070 83461 0.4310 +3070 83540 0.6340 +3070 83879 0.8580 +3070 84950 0.5460 +3070 114803 0.4820 +3070 120892 0.5240 +3070 144455 0.4130 +3070 157313 0.5470 +3070 157570 0.5430 +3070 220134 0.4140 +3070 221150 0.4050 +3070 253714 0.4180 +3070 259266 0.4940 +3070 283431 0.4210 +3070 440093 0.4790 +3070 440686 0.4790 +3070 653604 0.4820 +3070 100532731 0.5940 +3071 3320 0.5170 +3071 3587 0.4150 +3071 3635 0.5040 +3071 3688 0.4580 +3071 3689 0.5000 +3071 3791 0.5080 +3071 3936 0.4900 +3071 3937 0.5970 +3071 4162 0.4100 +3071 4542 0.5560 +3071 4688 0.4700 +3071 4689 0.4420 +3071 4690 0.8060 +3071 4810 0.4010 +3071 5058 0.4230 +3071 5062 0.4220 +3071 5290 0.4300 +3071 5294 0.4830 +3071 5295 0.4380 +3071 5296 0.4200 +3071 5338 0.4170 +3071 5341 0.4730 +3071 5594 0.4220 +3071 5595 0.4090 +3071 5747 0.5200 +3071 5778 0.4230 +3071 5788 0.7210 +3071 5829 0.5770 +3071 5879 0.6070 +3071 5880 0.9530 +3071 5881 0.9180 +3071 6404 0.4070 +3071 6461 0.4990 +3071 6693 0.4670 +3071 6714 0.5750 +3071 6850 0.6510 +3071 7112 0.4020 +3071 7305 0.5030 +3071 7409 0.8260 +3071 7410 0.5690 +3071 7454 0.9120 +3071 7456 0.7990 +3071 7805 0.8680 +3071 7879 0.4380 +3071 8503 0.4200 +3071 8826 0.4430 +3071 8832 0.6050 +3071 8936 0.9980 +3071 8976 0.7090 +3071 9341 0.4050 +3071 9450 0.4370 +3071 9535 0.4300 +3071 9564 0.5490 +3071 9815 0.4190 +3071 9844 0.6060 +3071 9938 0.4960 +3071 9948 0.5260 +3071 10006 0.9990 +3071 10011 0.9000 +3071 10092 0.7210 +3071 10093 0.6950 +3071 10094 0.7710 +3071 10095 0.7790 +3071 10096 0.6250 +3071 10097 0.7630 +3071 10109 0.7710 +3071 10152 0.9990 +3071 10163 0.9990 +3071 10298 0.4390 +3071 10320 0.5030 +3071 10451 0.5640 +3071 10458 0.5130 +3071 10552 0.6860 +3071 10787 0.9420 +3071 10788 0.4410 +3071 10810 0.9810 +3071 11151 0.6360 +3071 23075 0.4650 +3071 23191 0.9990 +3071 26030 0.4060 +3071 26999 0.9990 +3071 27128 0.6000 +3071 27328 0.4830 +3071 28964 0.4050 +3071 51225 0.9800 +3071 51347 0.4160 +3071 51517 0.5530 +3071 51645 0.4310 +3071 54440 0.6690 +3071 54518 0.5740 +3071 55004 0.4010 +3071 55843 0.4220 +3071 55845 0.9990 +3071 55914 0.4100 +3071 55971 0.4050 +3071 57526 0.4830 +3071 57575 0.4460 +3071 63916 0.5170 +3071 64098 0.4620 +3071 79658 0.4370 +3071 80213 0.4180 +3071 80342 0.4090 +3071 81624 0.5090 +3071 81704 0.5710 +3071 81873 0.6930 +3071 83706 0.5500 +3071 83877 0.4140 +3071 89857 0.4380 +3071 122618 0.4530 +3071 124460 0.4940 +3071 143098 0.4340 +3071 147179 0.4830 +3071 219972 0.4040 +3071 257106 0.6510 +3071 374354 0.5240 +3071 390714 0.4990 +3071 644150 0.4420 +3073 3074 0.9980 +3073 4125 0.4470 +3073 4126 0.5690 +3073 4668 0.9530 +3073 4669 0.4420 +3073 4758 0.6630 +3073 5973 0.9070 +3073 6489 0.9190 +3073 7001 0.4170 +3073 8705 0.9180 +3073 8706 0.9180 +3073 8869 0.9230 +3073 10317 0.9040 +3073 10901 0.4340 +3073 26301 0.9000 +3073 27159 0.9290 +3073 53947 0.9130 +3073 55577 0.9120 +3073 284004 0.9330 +3074 3482 0.5500 +3074 3916 0.4140 +3074 4125 0.4450 +3074 4126 0.4320 +3074 4668 0.9430 +3074 4758 0.6050 +3074 5973 0.9030 +3074 6208 0.4020 +3074 6489 0.9210 +3074 8507 0.9120 +3074 8705 0.9160 +3074 8706 0.9050 +3074 8869 0.9240 +3074 10007 0.4600 +3074 10317 0.9050 +3074 10577 0.4410 +3074 10724 0.8150 +3074 26301 0.9000 +3074 27159 0.9290 +3074 51520 0.4960 +3074 53947 0.9020 +3074 55577 0.9130 +3074 57179 0.4150 +3074 134147 0.4120 +3074 284004 0.9280 +3074 338773 0.4170 +3075 3078 0.9100 +3075 3240 0.7270 +3075 3263 0.4090 +3075 3304 0.4080 +3075 3381 0.5710 +3075 3426 0.9990 +3075 3458 0.5980 +3075 3553 0.4430 +3075 3569 0.4320 +3075 3576 0.4030 +3075 3627 0.5500 +3075 3818 0.7890 +3075 3820 0.4120 +3075 3990 0.6160 +3075 4153 0.8390 +3075 4179 0.4210 +3075 4313 0.5430 +3075 4608 0.7980 +3075 5100 0.4180 +3075 5118 0.4610 +3075 5176 0.4270 +3075 5199 0.8730 +3075 5225 0.5080 +3075 5265 0.6510 +3075 5284 0.5060 +3075 5328 0.6010 +3075 5329 0.5600 +3075 5340 0.6340 +3075 5624 0.5930 +3075 5648 0.7780 +3075 5654 0.7810 +3075 5806 0.9130 +3075 5939 0.7160 +3075 6121 0.4320 +3075 6347 0.6060 +3075 6402 0.5870 +3075 6403 0.4590 +3075 6440 0.5860 +3075 6499 0.5070 +3075 6696 0.7030 +3075 6804 0.4720 +3075 7042 0.4410 +3075 7045 0.4640 +3075 7056 0.9080 +3075 7057 0.4410 +3075 7078 0.6840 +3075 7157 0.4440 +3075 7276 0.6180 +3075 7448 0.9340 +3075 7450 0.4750 +3075 8526 0.7730 +3075 8542 0.4080 +3075 8547 0.7490 +3075 9172 0.6770 +3075 10203 0.4730 +3075 10516 0.5780 +3075 10584 0.5920 +3075 10747 0.7760 +3075 10877 0.6340 +3075 10878 0.8760 +3075 11093 0.8530 +3075 11326 0.5810 +3075 22903 0.4160 +3075 23321 0.4150 +3075 23411 0.4200 +3075 23539 0.5520 +3075 23554 0.4540 +3075 25974 0.6160 +3075 26025 0.4270 +3075 27429 0.5520 +3075 30816 0.9370 +3075 55748 0.5470 +3075 59338 0.8480 +3075 64129 0.4200 +3075 78989 0.6820 +3075 80129 0.4240 +3075 83872 0.6240 +3075 84839 0.4180 +3075 84871 0.6970 +3075 145173 0.4750 +3075 387715 0.9530 +3075 405754 0.9380 +3075 100423062 0.6220 +3077 3106 0.6930 +3077 3107 0.6870 +3077 3108 0.6370 +3077 3109 0.4020 +3077 3117 0.4500 +3077 3118 0.4610 +3077 3133 0.7470 +3077 3172 0.4350 +3077 3455 0.4150 +3077 3569 0.4450 +3077 3570 0.4440 +3077 3658 0.5930 +3077 4089 0.6480 +3077 4524 0.4610 +3077 4756 0.6450 +3077 4880 0.4060 +3077 4891 0.8970 +3077 5265 0.4230 +3077 5498 0.4800 +3077 6556 0.4170 +3077 6648 0.4420 +3077 7013 0.6200 +3077 7018 0.7910 +3077 7036 0.9990 +3077 7037 0.9990 +3077 7389 0.8560 +3077 7399 0.5150 +3077 8443 0.5060 +3077 9518 0.5400 +3077 9843 0.6490 +3077 10246 0.5440 +3077 10288 0.5360 +3077 10859 0.5700 +3077 11074 0.4080 +3077 22914 0.4030 +3077 23516 0.5770 +3077 27173 0.5510 +3077 29937 0.4100 +3077 30061 0.9210 +3077 53345 0.4120 +3077 54575 0.5050 +3077 54576 0.5130 +3077 54577 0.5200 +3077 54578 0.5050 +3077 54657 0.4930 +3077 54658 0.5310 +3077 55240 0.4510 +3077 55808 0.4390 +3077 57045 0.4410 +3077 57817 0.9660 +3077 79901 0.9080 +3077 80314 0.4260 +3077 80339 0.4390 +3077 84699 0.4970 +3077 148738 0.9980 +3077 151176 0.4710 +3077 164656 0.9330 +3077 353514 0.4050 +3078 3080 0.8900 +3078 3240 0.4900 +3078 3426 0.8610 +3078 4153 0.5650 +3078 4608 0.7300 +3078 5199 0.7170 +3078 5225 0.4290 +3078 5340 0.6920 +3078 5444 0.5140 +3078 5648 0.4480 +3078 5806 0.6380 +3078 5939 0.6910 +3078 7056 0.6770 +3078 7448 0.6030 +3078 8526 0.7920 +3078 8547 0.4200 +3078 9495 0.4180 +3078 10516 0.5360 +3078 10747 0.5440 +3078 10877 0.6470 +3078 10878 0.8980 +3078 11093 0.8330 +3078 23191 0.5110 +3078 25974 0.6170 +3078 30817 0.5040 +3078 55329 0.4270 +3078 55573 0.4180 +3078 55748 0.4680 +3078 81494 0.7460 +3078 81614 0.7650 +3078 83872 0.5760 +3078 84839 0.4670 +3078 85477 0.4260 +3078 114791 0.7760 +3078 123606 0.4300 +3078 150280 0.4180 +3078 360023 0.4480 +3078 387715 0.6250 +3078 100423062 0.5180 +3080 3426 0.6650 +3080 4153 0.4410 +3080 4179 0.5940 +3080 4608 0.7240 +3080 5199 0.6390 +3080 5225 0.4960 +3080 5939 0.6850 +3080 7056 0.4800 +3080 8526 0.6330 +3080 10747 0.4340 +3080 10877 0.6470 +3080 10878 0.5710 +3080 11093 0.5070 +3080 25974 0.5810 +3080 55748 0.5470 +3080 81494 0.8050 +3080 100423062 0.4870 +3081 3242 0.9990 +3081 3712 0.5060 +3081 4141 0.6060 +3081 4329 0.4810 +3081 4942 0.5590 +3081 5053 0.8450 +3081 5092 0.6160 +3081 5096 0.4670 +3081 5345 0.5830 +3081 6342 0.4160 +3081 6694 0.5320 +3081 6713 0.4620 +3081 6898 0.8070 +3081 6999 0.4670 +3081 7054 0.7220 +3081 7166 0.7150 +3081 7389 0.4330 +3081 7407 0.6110 +3081 8564 0.6460 +3081 8942 0.6390 +3081 9521 0.6060 +3081 10157 0.5980 +3081 10449 0.4140 +3081 10841 0.4590 +3081 10993 0.4970 +3081 23017 0.4160 +3081 23498 0.5130 +3081 25774 0.6060 +3081 51004 0.4320 +3081 51011 0.7520 +3081 51031 0.5120 +3081 51166 0.4030 +3081 64087 0.4210 +3081 64902 0.8010 +3081 81494 0.7000 +3081 81889 0.7520 +3081 84105 0.6100 +3081 84693 0.6030 +3081 84706 0.4630 +3081 84842 0.9870 +3081 84866 0.5310 +3081 113675 0.4530 +3081 121278 0.7230 +3081 125061 0.4040 +3081 131669 0.4660 +3081 137362 0.4890 +3081 143941 0.6400 +3081 151313 0.7520 +3081 390110 0.4260 +3081 653689 0.6060 +3082 3083 0.8900 +3082 3084 0.4560 +3082 3091 0.6070 +3082 3162 0.4420 +3082 3172 0.5420 +3082 3249 0.8100 +3082 3265 0.6490 +3082 3339 0.7460 +3082 3383 0.5240 +3082 3397 0.4470 +3082 3425 0.4020 +3082 3439 0.5850 +3082 3441 0.4790 +3082 3442 0.4820 +3082 3443 0.4800 +3082 3444 0.4820 +3082 3445 0.4820 +3082 3446 0.4810 +3082 3448 0.4830 +3082 3449 0.4850 +3082 3452 0.4830 +3082 3458 0.7160 +3082 3479 0.8690 +3082 3480 0.9550 +3082 3481 0.5220 +3082 3486 0.6080 +3082 3552 0.7400 +3082 3553 0.6850 +3082 3557 0.4360 +3082 3558 0.5180 +3082 3559 0.5550 +3082 3561 0.4780 +3082 3562 0.6180 +3082 3565 0.5440 +3082 3567 0.4160 +3082 3569 0.8600 +3082 3574 0.9910 +3082 3576 0.7020 +3082 3586 0.8130 +3082 3589 0.4470 +3082 3596 0.6550 +3082 3600 0.4350 +3082 3605 0.6910 +3082 3606 0.6230 +3082 3611 0.6340 +3082 3620 0.6340 +3082 3627 0.5350 +3082 3630 0.7890 +3082 3643 0.7190 +3082 3673 0.5160 +3082 3675 0.4880 +3082 3684 0.4720 +3082 3688 0.7710 +3082 3716 0.5830 +3082 3717 0.6410 +3082 3718 0.5120 +3082 3725 0.4810 +3082 3791 0.9660 +3082 3815 0.9250 +3082 3845 0.8520 +3082 3875 0.5220 +3082 3880 0.5550 +3082 3908 0.4690 +3082 3909 0.4340 +3082 3910 0.4560 +3082 3911 0.4920 +3082 3912 0.4550 +3082 3913 0.4360 +3082 3914 0.4590 +3082 3915 0.4490 +3082 3918 0.5100 +3082 3929 0.4670 +3082 3934 0.6140 +3082 3952 0.5070 +3082 3976 0.8310 +3082 3987 0.4370 +3082 4015 0.4190 +3082 4023 0.4330 +3082 4052 0.4350 +3082 4072 0.4470 +3082 4087 0.6880 +3082 4088 0.4570 +3082 4089 0.4300 +3082 4102 0.4850 +3082 4233 0.9990 +3082 4254 0.7540 +3082 4282 0.4840 +3082 4283 0.6510 +3082 4312 0.7080 +3082 4313 0.7600 +3082 4314 0.6910 +3082 4316 0.4370 +3082 4318 0.7990 +3082 4321 0.5370 +3082 4323 0.4590 +3082 4345 0.4840 +3082 4486 0.9360 +3082 4609 0.6200 +3082 4654 0.4070 +3082 4691 0.4670 +3082 4771 0.4300 +3082 4790 0.4620 +3082 4803 0.7690 +3082 4804 0.7680 +3082 4851 0.5370 +3082 4893 0.6830 +3082 4907 0.6050 +3082 4908 0.5020 +3082 4914 0.9970 +3082 4915 0.7500 +3082 5008 0.8640 +3082 5053 0.4530 +3082 5054 0.8320 +3082 5068 0.5370 +3082 5104 0.4700 +3082 5154 0.4180 +3082 5155 0.4780 +3082 5156 0.8410 +3082 5159 0.8550 +3082 5175 0.6470 +3082 5196 0.4990 +3082 5197 0.4540 +3082 5228 0.8000 +3082 5265 0.4630 +3082 5266 0.5110 +3082 5290 0.6230 +3082 5295 0.5010 +3082 5296 0.4590 +3082 5329 0.4400 +3082 5362 0.4310 +3082 5364 0.7550 +3082 5365 0.6620 +3082 5443 0.5270 +3082 5460 0.4570 +3082 5595 0.6120 +3082 5604 0.4350 +3082 5728 0.5520 +3082 5743 0.5610 +3082 5747 0.6770 +3082 5764 0.5600 +3082 5770 0.5370 +3082 5771 0.4340 +3082 5781 0.6100 +3082 5788 0.7060 +3082 5795 0.7690 +3082 5829 0.4460 +3082 5867 0.4650 +3082 5877 0.4400 +3082 5879 0.5160 +3082 5894 0.5050 +3082 5906 0.5360 +3082 5908 0.5110 +3082 5979 0.4400 +3082 6098 0.4030 +3082 6233 0.5300 +3082 6275 0.4650 +3082 6288 0.4680 +3082 6320 0.4680 +3082 6347 0.6780 +3082 6348 0.5230 +3082 6351 0.4900 +3082 6356 0.6410 +3082 6373 0.5760 +3082 6374 0.4380 +3082 6382 0.9010 +3082 6385 0.5800 +3082 6387 0.7510 +3082 6423 0.5220 +3082 6425 0.4440 +3082 6455 0.4990 +3082 6456 0.4990 +3082 6457 0.4990 +3082 6464 0.7820 +3082 6469 0.6420 +3082 6591 0.5070 +3082 6615 0.5830 +3082 6654 0.5620 +3082 6657 0.4510 +3082 6692 0.9440 +3082 6696 0.5830 +3082 6714 0.8670 +3082 6774 0.8290 +3082 6778 0.6230 +3082 6898 0.4010 +3082 6927 0.4440 +3082 7010 0.8980 +3082 7039 0.7010 +3082 7040 0.9210 +3082 7042 0.6470 +3082 7043 0.4650 +3082 7046 0.4080 +3082 7048 0.4690 +3082 7057 0.5500 +3082 7070 0.6190 +3082 7076 0.7450 +3082 7077 0.4650 +3082 7078 0.5490 +3082 7099 0.4530 +3082 7123 0.6320 +3082 7124 0.6790 +3082 7130 0.5700 +3082 7132 0.5790 +3082 7157 0.5840 +3082 7291 0.4350 +3082 7311 0.4990 +3082 7314 0.5230 +3082 7316 0.5480 +3082 7412 0.5910 +3082 7423 0.4180 +3082 7424 0.7330 +3082 7448 0.6870 +3082 7450 0.5360 +3082 7472 0.6450 +3082 7837 0.5210 +3082 7852 0.8120 +3082 7869 0.7220 +3082 8027 0.5980 +3082 8074 0.4650 +3082 8600 0.4030 +3082 8731 0.4200 +3082 8817 0.8740 +3082 8822 0.8720 +3082 8823 0.8670 +3082 8828 0.7400 +3082 8829 0.9520 +3082 8842 0.5300 +3082 9037 0.4760 +3082 9146 0.5690 +3082 9235 0.7000 +3082 9241 0.6290 +3082 9332 0.4060 +3082 9370 0.4250 +3082 9518 0.5700 +3082 9839 0.4280 +3082 9922 0.5580 +3082 9965 0.5760 +3082 10048 0.4730 +3082 10254 0.6200 +3082 10319 0.4190 +3082 10468 0.6360 +3082 10507 0.5530 +3082 10631 0.4230 +3082 10653 0.8790 +3082 10763 0.4070 +3082 10850 0.5880 +3082 11082 0.5880 +3082 22943 0.4250 +3082 23163 0.5790 +3082 26018 0.5590 +3082 26281 0.8670 +3082 26291 0.4710 +3082 27006 0.8800 +3082 27286 0.4590 +3082 29126 0.5260 +3082 30011 0.6340 +3082 30816 0.5220 +3082 50964 0.4780 +3082 51661 0.5670 +3082 53916 0.4140 +3082 56729 0.4010 +3082 57556 0.7120 +3082 57610 0.5470 +3082 64759 0.5530 +3082 79923 0.4560 +3082 80781 0.4740 +3082 84951 0.5340 +3082 85440 0.5140 +3082 89780 0.4750 +3082 112744 0.4770 +3082 128209 0.4010 +3082 137902 0.5200 +3082 169355 0.6830 +3082 200958 0.8050 +3082 284217 0.4390 +3082 340273 0.4600 +3082 346389 0.8270 +3082 405754 0.5220 +3083 3249 0.4280 +3083 3273 0.5070 +3083 3818 0.4030 +3083 4233 0.8590 +3083 4486 0.5580 +3083 5104 0.5240 +3083 5340 0.4020 +3083 5345 0.4290 +3083 5624 0.4840 +3083 5644 0.4550 +3083 5645 0.4640 +3083 5646 0.4800 +3083 5754 0.7690 +3083 6041 0.5120 +3083 6285 0.4660 +3083 6469 0.4600 +3083 6507 0.5070 +3083 6692 0.9990 +3083 6694 0.4090 +3083 6768 0.4830 +3083 8858 0.4320 +3083 10215 0.5090 +3083 10653 0.9540 +3083 10747 0.4440 +3083 10763 0.6110 +3083 10804 0.4230 +3083 10840 0.4920 +3083 26103 0.4690 +3083 26998 0.4230 +3083 29105 0.4280 +3083 54101 0.5140 +3083 66005 0.4160 +3083 80258 0.4340 +3083 84250 0.4540 +3083 114327 0.4340 +3083 116519 0.4110 +3083 133015 0.4480 +3083 135138 0.4620 +3083 146713 0.5660 +3083 151651 0.4890 +3083 164656 0.4450 +3083 197335 0.8680 +3083 200844 0.4280 +3083 219670 0.4140 +3083 345193 0.4660 +3084 3265 0.6070 +3084 3320 0.6320 +3084 3339 0.4160 +3084 3479 0.5710 +3084 3480 0.5040 +3084 3481 0.5240 +3084 3630 0.4510 +3084 3831 0.4200 +3084 3845 0.6920 +3084 3984 0.4860 +3084 4070 0.4960 +3084 4099 0.4940 +3084 4145 0.5510 +3084 4155 0.6130 +3084 4233 0.4390 +3084 4747 0.5420 +3084 4771 0.5850 +3084 4803 0.7190 +3084 4846 0.4450 +3084 4851 0.4180 +3084 4879 0.4050 +3084 4893 0.6780 +3084 4898 0.5360 +3084 4908 0.5290 +3084 4914 0.7540 +3084 5290 0.6180 +3084 5295 0.4880 +3084 5335 0.5800 +3084 5368 0.5470 +3084 5533 0.4700 +3084 5595 0.5550 +3084 5604 0.4020 +3084 5728 0.4680 +3084 5753 0.6560 +3084 5782 0.5290 +3084 5816 0.7680 +3084 5999 0.4360 +3084 6098 0.5750 +3084 6233 0.5100 +3084 6275 0.4740 +3084 6285 0.4320 +3084 6446 0.4680 +3084 6464 0.7620 +3084 6654 0.7360 +3084 6663 0.5980 +3084 6714 0.7910 +3084 6750 0.4640 +3084 6868 0.6790 +3084 7003 0.4940 +3084 7039 0.7350 +3084 7311 0.4990 +3084 7314 0.5130 +3084 7316 0.5380 +3084 7402 0.6350 +3084 7525 0.4590 +3084 7837 0.4010 +3084 8038 0.4210 +3084 8661 0.4780 +3084 8822 0.4020 +3084 8823 0.4180 +3084 9353 0.4200 +3084 9542 0.9180 +3084 10193 0.6270 +3084 10215 0.5240 +3084 10718 0.9360 +3084 10763 0.4350 +3084 11140 0.5220 +3084 23621 0.6170 +3084 25825 0.5870 +3084 26281 0.4200 +3084 27185 0.7230 +3084 51072 0.5760 +3084 51393 0.4120 +3084 54828 0.4210 +3084 55879 0.4990 +3084 55914 0.6810 +3084 57142 0.4430 +3084 57211 0.4460 +3084 57554 0.4790 +3084 57716 0.4890 +3084 64837 0.4030 +3084 83464 0.4290 +3084 84062 0.6430 +3084 89796 0.4960 +3084 89953 0.4370 +3084 116448 0.4870 +3084 145957 0.9890 +3084 147700 0.4050 +3084 199731 0.5180 +3084 220074 0.4800 +3084 255324 0.4590 +3084 267012 0.5130 +3084 375790 0.6480 +3087 3169 0.4780 +3087 3170 0.6570 +3087 3171 0.6840 +3087 3172 0.4740 +3087 3175 0.7350 +3087 3200 0.5050 +3087 3416 0.4270 +3087 3630 0.6430 +3087 3725 0.5510 +3087 3767 0.7980 +3087 3784 0.7720 +3087 3832 0.8440 +3087 4005 0.6150 +3087 4066 0.6530 +3087 4208 0.4800 +3087 4211 0.5900 +3087 4212 0.4660 +3087 4544 0.7090 +3087 4609 0.5470 +3087 4760 0.4110 +3087 4853 0.5030 +3087 5015 0.5510 +3087 5078 0.4580 +3087 5316 0.4200 +3087 5460 0.5100 +3087 5468 0.5440 +3087 5629 0.6440 +3087 6833 0.4370 +3087 6886 0.7480 +3087 6926 0.4180 +3087 6927 0.4320 +3087 6928 0.7160 +3087 6934 0.8800 +3087 7003 0.4590 +3087 7050 0.4150 +3087 7088 0.4280 +3087 7090 0.5390 +3087 7103 0.8170 +3087 7253 0.4020 +3087 7466 0.7040 +3087 7849 0.5680 +3087 8328 0.4080 +3087 8872 0.7200 +3087 9314 0.4220 +3087 9350 0.4360 +3087 9352 0.6810 +3087 10265 0.4170 +3087 10363 0.4020 +3087 10365 0.4110 +3087 10637 0.4210 +3087 10644 0.9080 +3087 11085 0.4530 +3087 11132 0.5440 +3087 25970 0.4210 +3087 50674 0.4600 +3087 53335 0.4900 +3087 54345 0.4050 +3087 54469 0.6270 +3087 54901 0.9250 +3087 55278 0.4620 +3087 56917 0.4380 +3087 56999 0.6090 +3087 57118 0.6240 +3087 60436 0.4390 +3087 60529 0.5570 +3087 63876 0.4060 +3087 64174 0.4240 +3087 64321 0.6500 +3087 79068 0.8630 +3087 79190 0.4870 +3087 79191 0.5900 +3087 79192 0.5480 +3087 80320 0.4300 +3087 83595 0.4780 +3087 84327 0.6570 +3087 84662 0.4070 +3087 116985 0.5180 +3087 132720 0.4090 +3087 136259 0.4860 +3087 145741 0.5700 +3087 153572 0.6230 +3087 157848 0.5090 +3087 167465 0.4270 +3087 169026 0.9340 +3087 169792 0.6320 +3087 221895 0.6980 +3087 222546 0.6090 +3087 256297 0.4870 +3087 283078 0.4510 +3087 388125 0.4740 +3090 4255 0.7800 +3090 4292 0.5340 +3090 4335 0.5580 +3090 5048 0.6780 +3090 5176 0.4100 +3090 5306 0.6710 +3090 5468 0.4950 +3090 5727 0.4740 +3090 5913 0.4990 +3090 5915 0.5210 +3090 5928 0.4070 +3090 6422 0.4490 +3090 6423 0.4160 +3090 6750 0.4280 +3090 6774 0.6220 +3090 6839 0.4500 +3090 7078 0.4830 +3090 7157 0.5440 +3090 7161 0.4110 +3090 7329 0.7670 +3090 7341 0.5100 +3090 7531 0.7190 +3090 7799 0.4470 +3090 8289 0.6450 +3090 8554 0.6000 +3090 8578 0.5090 +3090 8651 0.5160 +3090 8850 0.5070 +3090 9063 0.7160 +3090 9112 0.6930 +3090 9249 0.4100 +3090 9759 0.4640 +3090 10524 0.4670 +3090 11143 0.4390 +3090 11186 0.7200 +3090 23411 0.8760 +3090 23512 0.4490 +3090 23522 0.4180 +3090 55743 0.4800 +3090 57805 0.4260 +3090 60529 0.5190 +3090 64321 0.4600 +3090 64919 0.5820 +3090 79903 0.4120 +3090 84148 0.4550 +3090 124641 0.4020 +3090 286753 0.4280 +3090 727857 0.4390 +3091 3093 0.5410 +3091 3098 0.6190 +3091 3099 0.7400 +3091 3146 0.5170 +3091 3156 0.4510 +3091 3159 0.4200 +3091 3162 0.7010 +3091 3164 0.6860 +3091 3169 0.4280 +3091 3170 0.8800 +3091 3172 0.8440 +3091 3191 0.4200 +3091 3251 0.4150 +3091 3265 0.4460 +3091 3275 0.4630 +3091 3304 0.4140 +3091 3305 0.4420 +3091 3308 0.9380 +3091 3309 0.5400 +3091 3312 0.8830 +3091 3315 0.4660 +3091 3316 0.4270 +3091 3320 0.9990 +3091 3326 0.9980 +3091 3337 0.6640 +3091 3383 0.6840 +3091 3397 0.4410 +3091 3399 0.4610 +3091 3417 0.6880 +3091 3418 0.6350 +3091 3439 0.4400 +3091 3458 0.6650 +3091 3479 0.6980 +3091 3480 0.7520 +3091 3481 0.6800 +3091 3486 0.5640 +3091 3516 0.4270 +3091 3551 0.6590 +3091 3552 0.6250 +3091 3553 0.7710 +3091 3554 0.4340 +3091 3558 0.5830 +3091 3565 0.5850 +3091 3569 0.8000 +3091 3576 0.7160 +3091 3579 0.4500 +3091 3586 0.7510 +3091 3589 0.4950 +3091 3596 0.6960 +3091 3605 0.6020 +3091 3606 0.4800 +3091 3611 0.4330 +3091 3620 0.5190 +3091 3627 0.4570 +3091 3630 0.6790 +3091 3659 0.6920 +3091 3662 0.6970 +3091 3667 0.4510 +3091 3678 0.4190 +3091 3684 0.5490 +3091 3685 0.4660 +3091 3687 0.4060 +3091 3688 0.4780 +3091 3692 0.6120 +3091 3716 0.4770 +3091 3717 0.7840 +3091 3725 0.9610 +3091 3726 0.5560 +3091 3791 0.7850 +3091 3815 0.6090 +3091 3836 0.5880 +3091 3845 0.6260 +3091 3920 0.7300 +3091 3934 0.4180 +3091 3952 0.6820 +3091 3959 0.4040 +3091 3976 0.5390 +3091 3977 0.4960 +3091 4001 0.4310 +3091 4015 0.6310 +3091 4017 0.4880 +3091 4067 0.5180 +3091 4072 0.4240 +3091 4087 0.5800 +3091 4088 0.9750 +3091 4089 0.7100 +3091 4092 0.4340 +3091 4097 0.5220 +3091 4149 0.4910 +3091 4151 0.5650 +3091 4170 0.8250 +3091 4176 0.6320 +3091 4192 0.5580 +3091 4193 0.9880 +3091 4217 0.4730 +3091 4233 0.6390 +3091 4254 0.4450 +3091 4255 0.4310 +3091 4282 0.5930 +3091 4286 0.5170 +3091 4303 0.4630 +3091 4312 0.6720 +3091 4313 0.7310 +3091 4314 0.5580 +3091 4316 0.4740 +3091 4318 0.8240 +3091 4322 0.5170 +3091 4323 0.5160 +3091 4353 0.4340 +3091 4360 0.4840 +3091 4363 0.4120 +3091 4594 0.4880 +3091 4601 0.6700 +3091 4609 0.9930 +3091 4613 0.5280 +3091 4620 0.4320 +3091 4621 0.6370 +3091 4624 0.7300 +3091 4654 0.5980 +3091 4683 0.4060 +3091 4692 0.6270 +3091 4734 0.4150 +3091 4738 0.7740 +3091 4763 0.4050 +3091 4780 0.7500 +3091 4790 0.8160 +3091 4792 0.7350 +3091 4803 0.6370 +3091 4804 0.5460 +3091 4842 0.4030 +3091 4843 0.5230 +3091 4846 0.6240 +3091 4851 0.9930 +3091 4854 0.4300 +3091 4891 0.4120 +3091 4893 0.4180 +3091 4904 0.4210 +3091 4907 0.5820 +3091 4908 0.4990 +3091 4914 0.6610 +3091 4968 0.4920 +3091 5015 0.4560 +3091 5033 0.7160 +3091 5037 0.4930 +3091 5054 0.6240 +3091 5071 0.7160 +3091 5133 0.4740 +3091 5154 0.4350 +3091 5155 0.7170 +3091 5156 0.4890 +3091 5159 0.6490 +3091 5163 0.7820 +3091 5164 0.4790 +3091 5165 0.4800 +3091 5166 0.5060 +3091 5175 0.7330 +3091 5207 0.4340 +3091 5208 0.4320 +3091 5209 0.7810 +3091 5210 0.6020 +3091 5211 0.4930 +3091 5213 0.6900 +3091 5214 0.4750 +3091 5223 0.4800 +3091 5228 0.6220 +3091 5230 0.8080 +3091 5232 0.4160 +3091 5241 0.7170 +3091 5243 0.5360 +3091 5290 0.5470 +3091 5292 0.4730 +3091 5294 0.4570 +3091 5300 0.4190 +3091 5315 0.9960 +3091 5327 0.4340 +3091 5328 0.5480 +3091 5329 0.4320 +3091 5338 0.4510 +3091 5340 0.4880 +3091 5352 0.4790 +3091 5366 0.4690 +3091 5451 0.5250 +3091 5460 0.6500 +3091 5465 0.7610 +3091 5467 0.5100 +3091 5468 0.8540 +3091 5562 0.4040 +3091 5566 0.6080 +3091 5567 0.4710 +3091 5568 0.4690 +3091 5578 0.6200 +3091 5591 0.7960 +3091 5594 0.9850 +3091 5595 0.9690 +3091 5599 0.4850 +3091 5600 0.5770 +3091 5603 0.5700 +3091 5604 0.5110 +3091 5607 0.4030 +3091 5610 0.4180 +3091 5629 0.5370 +3091 5682 0.4610 +3091 5683 0.4240 +3091 5684 0.4620 +3091 5685 0.7340 +3091 5686 0.4390 +3091 5687 0.4900 +3091 5688 0.8680 +3091 5689 0.4480 +3091 5690 0.4320 +3091 5691 0.4360 +3091 5692 0.4130 +3091 5693 0.4810 +3091 5694 0.4570 +3091 5695 0.4510 +3091 5696 0.5010 +3091 5698 0.4980 +3091 5699 0.4530 +3091 5700 0.4300 +3091 5701 0.4340 +3091 5702 0.7270 +3091 5704 0.4660 +3091 5705 0.4300 +3091 5706 0.4660 +3091 5707 0.5110 +3091 5708 0.4540 +3091 5709 0.4110 +3091 5710 0.4770 +3091 5711 0.4040 +3091 5713 0.4510 +3091 5715 0.4190 +3091 5716 0.6470 +3091 5717 0.4480 +3091 5718 0.4220 +3091 5719 0.4100 +3091 5720 0.4830 +3091 5721 0.4680 +3091 5725 0.5000 +3091 5728 0.8300 +3091 5743 0.8310 +3091 5747 0.7330 +3091 5753 0.9060 +3091 5781 0.5810 +3091 5788 0.5530 +3091 5861 0.5880 +3091 5873 0.5790 +3091 5887 0.4480 +3091 5894 0.4280 +3091 5914 0.4230 +3091 5925 0.5490 +3091 5966 0.4690 +3091 5970 0.9890 +3091 5971 0.4280 +3091 5972 0.4620 +3091 5979 0.4300 +3091 5997 0.5160 +3091 6009 0.5160 +3091 6045 0.4400 +3091 6047 0.4180 +3091 6048 0.5130 +3091 6093 0.7110 +3091 6095 0.8670 +3091 6097 0.5870 +3091 6194 0.4350 +3091 6198 0.7300 +3091 6199 0.5300 +3091 6233 0.5590 +3091 6275 0.4350 +3091 6300 0.5760 +3091 6303 0.4700 +3091 6319 0.4030 +3091 6347 0.6920 +3091 6348 0.4400 +3091 6382 0.5180 +3091 6386 0.4070 +3091 6387 0.8240 +3091 6389 0.4800 +3091 6390 0.6860 +3091 6391 0.6090 +3091 6392 0.5080 +3091 6401 0.4510 +3091 6446 0.4500 +3091 6464 0.5300 +3091 6469 0.5040 +3091 6477 0.6440 +3091 6478 0.8570 +3091 6492 0.4530 +3091 6493 0.4440 +3091 6502 0.5810 +3091 6510 0.4770 +3091 6513 0.9020 +3091 6514 0.4150 +3091 6515 0.7360 +3091 6517 0.5870 +3091 6566 0.5160 +3091 6591 0.6460 +3091 6597 0.7150 +3091 6605 0.5080 +3091 6612 0.4010 +3091 6613 0.6190 +3091 6615 0.8230 +3091 6647 0.5110 +3091 6648 0.6390 +3091 6649 0.4250 +3091 6657 0.7580 +3091 6659 0.4040 +3091 6662 0.5810 +3091 6667 0.9230 +3091 6696 0.5960 +3091 6714 0.8720 +3091 6720 0.6080 +3091 6721 0.4490 +3091 6722 0.5850 +3091 6736 0.4150 +3091 6759 0.8080 +3091 6772 0.7480 +3091 6774 0.9940 +3091 6776 0.5130 +3091 6777 0.5100 +3091 6778 0.7440 +3091 6781 0.4020 +3091 6786 0.5330 +3091 6790 0.4530 +3091 6794 0.6480 +3091 6868 0.4890 +3091 6901 0.5010 +3091 6921 0.9990 +3091 6923 0.9990 +3091 6925 0.4280 +3091 6927 0.4790 +3091 6929 0.5590 +3091 7010 0.6490 +3091 7015 0.7020 +3091 7019 0.7180 +3091 7030 0.4280 +3091 7037 0.5760 +3091 7039 0.5510 +3091 7040 0.8380 +3091 7042 0.4620 +3091 7043 0.4470 +3091 7046 0.4500 +3091 7048 0.5950 +3091 7049 0.4050 +3091 7057 0.6160 +3091 7067 0.4090 +3091 7070 0.4470 +3091 7075 0.4190 +3091 7076 0.5710 +3091 7077 0.4820 +3091 7078 0.4430 +3091 7082 0.5110 +3091 7086 0.4050 +3091 7097 0.4990 +3091 7099 0.6570 +3091 7122 0.4120 +3091 7124 0.8180 +3091 7132 0.4020 +3091 7157 0.9990 +3091 7161 0.4110 +3091 7167 0.4110 +3091 7184 0.4820 +3091 7189 0.7170 +3091 7203 0.4200 +3091 7248 0.4470 +3091 7249 0.5920 +3091 7251 0.6090 +3091 7291 0.7990 +3091 7295 0.6020 +3091 7298 0.5860 +3091 7311 0.5250 +3091 7314 0.5750 +3091 7316 0.9500 +3091 7321 0.7140 +3091 7322 0.5940 +3091 7323 0.6000 +3091 7326 0.4920 +3091 7329 0.7730 +3091 7341 0.8700 +3091 7345 0.4330 +3091 7351 0.4590 +3091 7391 0.6160 +3091 7405 0.4090 +3091 7412 0.6040 +3091 7414 0.4240 +3091 7415 0.5870 +3091 7416 0.4900 +3091 7423 0.5640 +3091 7424 0.6350 +3091 7428 0.9990 +3091 7431 0.5690 +3091 7450 0.5180 +3091 7474 0.4310 +3091 7490 0.5710 +3091 7494 0.9880 +3091 7498 0.4490 +3091 7514 0.5320 +3091 7520 0.6300 +3091 7528 0.4560 +3091 7531 0.5430 +3091 7837 0.7440 +3091 7846 0.4540 +3091 7852 0.9150 +3091 7874 0.6540 +3091 7942 0.5020 +3091 7975 0.5000 +3091 8061 0.4140 +3091 8140 0.4300 +3091 8202 0.4830 +3091 8239 0.4190 +3091 8260 0.8490 +3091 8277 0.4320 +3091 8290 0.5920 +3091 8356 0.5910 +3091 8361 0.4840 +3091 8405 0.4230 +3091 8452 0.4180 +3091 8453 0.9990 +3091 8497 0.4830 +3091 8517 0.5260 +3091 8535 0.4440 +3091 8549 0.4080 +3091 8553 0.5330 +3091 8600 0.4800 +3091 8607 0.4190 +3091 8614 0.4740 +3091 8626 0.4440 +3091 8648 0.8310 +3091 8651 0.6050 +3091 8678 0.6320 +3091 8772 0.4070 +3091 8795 0.4130 +3091 8817 0.5840 +3091 8822 0.5820 +3091 8823 0.6030 +3091 8829 0.4850 +3091 8837 0.4180 +3091 8841 0.8040 +3091 8842 0.6260 +3091 8850 0.8320 +3091 8862 0.6540 +3091 8864 0.8660 +3091 8877 0.4530 +3091 8878 0.5910 +3091 8900 0.4280 +3091 8974 0.6850 +3091 8988 0.4520 +3091 8991 0.4680 +3091 8994 0.6220 +3091 9021 0.4720 +3091 9040 0.5940 +3091 9092 0.6510 +3091 9101 0.4610 +3091 9112 0.6700 +3091 9122 0.7000 +3091 9123 0.7010 +3091 9135 0.4370 +3091 9140 0.4420 +3091 9241 0.5510 +3091 9314 0.5420 +3091 9321 0.4630 +3091 9332 0.4650 +3091 9370 0.4800 +3091 9429 0.5120 +3091 9451 0.5410 +3091 9472 0.5080 +3091 9474 0.5950 +3091 9491 0.4080 +3091 9536 0.4130 +3091 9563 0.4480 +3091 9575 0.4340 +3091 9636 0.4300 +3091 9669 0.9810 +3091 9734 0.7830 +3091 9759 0.9550 +3091 9817 0.6990 +3091 9839 0.5360 +3091 9861 0.4590 +3091 9915 0.9990 +3091 9927 0.4460 +3091 9939 0.4450 +3091 9969 0.4130 +3091 9971 0.4260 +3091 9978 0.9780 +3091 10000 0.4660 +3091 10013 0.7520 +3091 10014 0.5000 +3091 10018 0.5060 +3091 10059 0.4530 +3091 10116 0.5200 +3091 10135 0.5540 +3091 10155 0.6130 +3091 10197 0.5010 +3091 10213 0.5230 +3091 10253 0.4080 +3091 10273 0.7340 +3091 10365 0.4260 +3091 10370 0.9150 +3091 10381 0.4630 +3091 10397 0.6410 +3091 10399 0.9330 +3091 10413 0.6020 +3091 10457 0.6280 +3091 10499 0.6490 +3091 10524 0.7930 +3091 10533 0.5350 +3091 10538 0.7640 +3091 10563 0.5410 +3091 10628 0.7200 +3091 10631 0.6100 +3091 10644 0.5040 +3091 10728 0.4710 +3091 10763 0.5460 +3091 10765 0.4120 +3091 10801 0.9140 +3091 10808 0.4530 +3091 10856 0.7750 +3091 10868 0.4910 +3091 10869 0.8130 +3091 10891 0.7580 +3091 10956 0.7660 +3091 10987 0.9210 +3091 11200 0.4030 +3091 11266 0.5020 +3091 22926 0.4380 +3091 22933 0.6450 +3091 23028 0.4370 +3091 23030 0.7440 +3091 23081 0.9530 +3091 23135 0.6490 +3091 23142 0.5040 +3091 23197 0.5140 +3091 23198 0.4210 +3091 23326 0.4520 +3091 23405 0.6850 +3091 23408 0.4470 +3091 23409 0.4620 +3091 23410 0.6360 +3091 23411 0.9270 +3091 23412 0.4990 +3091 23432 0.4140 +3091 23433 0.4040 +3091 23462 0.4330 +3091 23476 0.4090 +3091 23479 0.4310 +3091 23586 0.4510 +3091 23633 0.5330 +3091 23657 0.4400 +3091 25828 0.4130 +3091 25937 0.6120 +3091 25939 0.4240 +3091 25942 0.4690 +3091 25950 0.6760 +3091 25994 0.6500 +3091 26043 0.8770 +3091 26281 0.6020 +3091 26524 0.4130 +3091 27006 0.5940 +3091 27035 0.5160 +3091 27043 0.5560 +3091 27125 0.4270 +3091 27161 0.4290 +3091 27250 0.4470 +3091 27252 0.4570 +3091 27338 0.5820 +3091 28952 0.5090 +3091 28984 0.6320 +3091 28991 0.5180 +3091 28996 0.5710 +3091 29099 0.5110 +3091 29102 0.5660 +3091 29108 0.4020 +3091 29126 0.6690 +3091 29127 0.6170 +3091 29843 0.5330 +3091 29923 0.4030 +3091 50507 0.6000 +3091 50943 0.9880 +3091 51122 0.5060 +3091 51129 0.7300 +3091 51147 0.6760 +3091 51176 0.4150 +3091 51397 0.5600 +3091 51430 0.8700 +3091 51547 0.8580 +3091 51548 0.9800 +3091 51564 0.9270 +3091 51588 0.4630 +3091 51666 0.4690 +3091 51719 0.4210 +3091 51741 0.4680 +3091 51806 0.4440 +3091 53905 0.4300 +3091 54106 0.5100 +3091 54165 0.7850 +3091 54205 0.6480 +3091 54487 0.4940 +3091 54541 0.6140 +3091 54567 0.5150 +3091 54583 0.9990 +3091 54790 0.4180 +3091 54939 0.5120 +3091 54949 0.4330 +3091 54951 0.5160 +3091 54971 0.4650 +3091 55054 0.4670 +3091 55208 0.4990 +3091 55269 0.4230 +3091 55294 0.6030 +3091 55527 0.5060 +3091 55544 0.5990 +3091 55662 0.9990 +3091 55669 0.4130 +3091 55818 0.8950 +3091 55832 0.4080 +3091 55902 0.5570 +3091 56670 0.5070 +3091 56929 0.5130 +3091 56938 0.6040 +3091 56957 0.4610 +3091 57103 0.5160 +3091 57510 0.4080 +3091 57521 0.8660 +3091 57646 0.4820 +3091 57663 0.5420 +3091 57817 0.4760 +3091 58157 0.5470 +3091 59272 0.4250 +3091 64344 0.9940 +3091 64428 0.5130 +3091 64750 0.4300 +3091 65018 0.6900 +3091 79365 0.7400 +3091 79923 0.8100 +3091 80149 0.4760 +3091 80312 0.5420 +3091 80318 0.4200 +3091 80781 0.5130 +3091 80854 0.4840 +3091 81631 0.5450 +3091 81669 0.4740 +3091 83452 0.4030 +3091 83667 0.6020 +3091 83732 0.4210 +3091 84259 0.5220 +3091 84260 0.9830 +3091 84557 0.4290 +3091 84701 0.4650 +3091 84925 0.6260 +3091 84962 0.5580 +3091 90993 0.6140 +3091 91860 0.4610 +3091 112398 0.9990 +3091 112399 0.9990 +3091 112483 0.8140 +3091 114548 0.6620 +3091 114757 0.4450 +3091 120892 0.7280 +3091 122706 0.4110 +3091 122769 0.5050 +3091 126374 0.5480 +3091 132864 0.4340 +3091 133522 0.6420 +3091 133746 0.4710 +3091 137902 0.7370 +3091 139341 0.6070 +3091 143471 0.4070 +3091 144455 0.8060 +3091 149951 0.5330 +3091 150684 0.8880 +3091 163688 0.4250 +3091 169355 0.4300 +3091 170622 0.4990 +3091 253260 0.5380 +3091 257202 0.5310 +3091 353322 0.5100 +3091 391104 0.6440 +3091 440093 0.5950 +3091 440275 0.4170 +3091 440686 0.5920 +3091 441531 0.4100 +3091 493869 0.5460 +3091 653604 0.5920 +3091 728378 0.4150 +3091 730249 0.4180 +3091 100133941 0.4830 +3091 100506658 0.4590 +3091 100532731 0.4490 +3092 3242 0.5150 +3092 3667 0.5210 +3092 3799 0.5440 +3092 3831 0.5370 +3092 4008 0.5070 +3092 4478 0.5380 +3092 5286 0.5040 +3092 5295 0.4990 +3092 5335 0.5040 +3092 5495 0.4060 +3092 5573 0.4440 +3092 5727 0.4840 +3092 5903 0.5070 +3092 6238 0.5030 +3092 6464 0.5040 +3092 6469 0.4160 +3092 6608 0.4260 +3092 6774 0.5170 +3092 6801 0.4200 +3092 7170 0.5190 +3092 7171 0.5300 +3092 7175 0.5030 +3092 7414 0.5700 +3092 7454 0.4740 +3092 7456 0.4750 +3092 8218 0.9130 +3092 8496 0.5030 +3092 8643 0.4790 +3092 8878 0.4990 +3092 8976 0.4730 +3092 9026 0.8720 +3092 9648 0.5080 +3092 9802 0.4700 +3092 10097 0.4150 +3092 10342 0.5280 +3092 10817 0.4990 +3092 10818 0.4990 +3092 22872 0.5120 +3092 22905 0.5290 +3092 23149 0.5390 +3092 27165 0.7000 +3092 27436 0.4320 +3092 28988 0.4670 +3092 29924 0.4960 +3092 51684 0.4300 +3092 55040 0.5400 +3092 55081 0.9530 +3092 55644 0.5070 +3092 57448 0.4440 +3092 58513 0.4770 +3092 64744 0.4060 +3092 79802 0.4020 +3092 80304 0.4990 +3092 84174 0.4520 +3092 90809 0.4950 +3092 115548 0.5430 +3092 147179 0.5980 +3092 150350 0.4920 +3092 159989 0.5520 +3093 3178 0.4510 +3093 3184 0.4420 +3093 3308 0.5910 +3093 3337 0.4760 +3093 3654 0.5340 +3093 3658 0.4200 +3093 3784 0.5030 +3093 3980 0.4780 +3093 4067 0.4330 +3093 4089 0.5000 +3093 4090 0.4860 +3093 4193 0.8410 +3093 4609 0.5970 +3093 4734 0.7260 +3093 4738 0.6020 +3093 4848 0.4030 +3093 4850 0.6160 +3093 5048 0.5620 +3093 5071 0.7660 +3093 5192 0.4580 +3093 5423 0.4210 +3093 5594 0.5120 +3093 5684 0.4300 +3093 5701 0.4210 +3093 5704 0.5190 +3093 5710 0.4800 +3093 5717 0.6160 +3093 5886 0.4870 +3093 5887 0.4630 +3093 5905 0.4740 +3093 5987 0.5010 +3093 6045 0.6930 +3093 6047 0.4790 +3093 6048 0.4350 +3093 6049 0.4570 +3093 6233 0.9980 +3093 6331 0.4510 +3093 6338 0.4220 +3093 6401 0.4430 +3093 6477 0.4290 +3093 6500 0.7490 +3093 6502 0.6050 +3093 6612 0.5530 +3093 6613 0.6630 +3093 6647 0.5140 +3093 6782 0.4600 +3093 6921 0.6140 +3093 7157 0.7530 +3093 7189 0.6480 +3093 7295 0.4510 +3093 7298 0.4370 +3093 7311 0.9930 +3093 7314 0.9970 +3093 7316 0.9990 +3093 7317 0.9950 +3093 7318 0.8670 +3093 7319 0.4370 +3093 7321 0.7030 +3093 7322 0.9000 +3093 7323 0.7230 +3093 7326 0.6850 +3093 7327 0.5990 +3093 7328 0.6740 +3093 7329 0.9140 +3093 7332 0.6550 +3093 7334 0.8390 +3093 7335 0.8470 +3093 7336 0.7470 +3093 7337 0.9210 +3093 7341 0.8870 +3093 7342 0.4190 +3093 7347 0.4150 +3093 7398 0.4770 +3093 7415 0.4210 +3093 7515 0.8050 +3093 7518 0.7010 +3093 7874 0.6750 +3093 8065 0.4930 +3093 8452 0.6750 +3093 8453 0.6060 +3093 8454 0.5570 +3093 8649 0.4850 +3093 8697 0.4590 +3093 8881 0.4440 +3093 8900 0.5000 +3093 9025 0.6180 +3093 9039 0.7040 +3093 9097 0.6430 +3093 9184 0.4240 +3093 9232 0.4400 +3093 9246 0.5490 +3093 9320 0.8000 +3093 9354 0.6940 +3093 9531 0.4820 +3093 9616 0.4680 +3093 9666 0.4320 +3093 9690 0.4390 +3093 9700 0.4610 +3093 9730 0.4230 +3093 9810 0.5160 +3093 9867 0.6240 +3093 9868 0.5310 +3093 9948 0.6340 +3093 9978 0.6150 +3093 10054 0.6080 +3093 10055 0.4450 +3093 10075 0.4820 +3093 10146 0.4810 +3093 10193 0.6730 +3093 10197 0.4340 +3093 10213 0.5640 +3093 10273 0.5150 +3093 10277 0.5330 +3093 10299 0.6650 +3093 10393 0.7060 +3093 10399 0.4280 +3093 10477 0.6190 +3093 10533 0.6720 +3093 10537 0.4710 +3093 10602 0.4150 +3093 10616 0.5570 +3093 10744 0.4910 +3093 11059 0.6760 +3093 11060 0.7670 +3093 11065 0.5830 +3093 11074 0.4500 +3093 11141 0.4790 +3093 11236 0.5200 +3093 11237 0.4480 +3093 11284 0.5740 +3093 11337 0.4110 +3093 11345 0.4840 +3093 22838 0.6200 +3093 22888 0.5510 +3093 23032 0.4060 +3093 23072 0.7100 +3093 23077 0.4520 +3093 23244 0.5270 +3093 23291 0.4830 +3093 23304 0.4400 +3093 23327 0.9070 +3093 23510 0.4430 +3093 23586 0.6320 +3093 23710 0.4830 +3093 25764 0.4220 +3093 25820 0.6760 +3093 25897 0.5800 +3093 26001 0.4300 +3093 26280 0.6070 +3093 26994 0.4070 +3093 27338 0.7550 +3093 29089 0.5070 +3093 29843 0.4400 +3093 29945 0.4760 +3093 29978 0.6120 +3093 29979 0.5950 +3093 50626 0.5100 +3093 51132 0.7190 +3093 51255 0.4020 +3093 51283 0.4670 +3093 51343 0.4790 +3093 51377 0.4130 +3093 51433 0.4790 +3093 51444 0.8730 +3093 51465 0.4020 +3093 51529 0.8590 +3093 51619 0.4850 +3093 51667 0.6030 +3093 51806 0.5210 +3093 54778 0.7500 +3093 54926 0.5610 +3093 54941 0.6290 +3093 55072 0.6870 +3093 55092 0.4150 +3093 55236 0.9340 +3093 55294 0.4370 +3093 55585 0.5350 +3093 55611 0.4120 +3093 55728 0.4060 +3093 56254 0.7080 +3093 56852 0.5340 +3093 56893 0.5590 +3093 57154 0.4810 +3093 57520 0.5090 +3093 57630 0.5360 +3093 64135 0.4690 +3093 64219 0.5690 +3093 64422 0.5260 +3093 64750 0.6420 +3093 64844 0.6930 +3093 65264 0.5620 +3093 79139 0.4450 +3093 79661 0.5620 +3093 79840 0.5720 +3093 79845 0.4480 +3093 79876 0.7290 +3093 80008 0.4140 +3093 80204 0.6010 +3093 81631 0.4340 +3093 83737 0.7570 +3093 84231 0.4850 +3093 84447 0.7320 +3093 84676 0.7280 +3093 84817 0.5560 +3093 84901 0.5250 +3093 85358 0.4500 +3093 91860 0.5200 +3093 92912 0.6680 +3093 118424 0.6180 +3093 120892 0.4430 +3093 140545 0.4110 +3093 152006 0.7050 +3093 157574 0.6170 +3093 163688 0.5200 +3093 196403 0.4690 +3093 197131 0.6070 +3093 221302 0.4350 +3093 252969 0.6930 +3093 387082 0.5970 +3093 387521 0.6790 +3093 387522 0.7850 +3093 445372 0.4110 +3094 3308 0.5290 +3094 3336 0.4470 +3094 3735 0.5560 +3094 4286 0.6910 +3094 4694 0.4500 +3094 4695 0.4040 +3094 4697 0.6640 +3094 4708 0.4200 +3094 4725 0.5110 +3094 4736 0.4330 +3094 4830 0.4250 +3094 4831 0.5800 +3094 4988 0.6750 +3094 5375 0.4740 +3094 5476 0.7440 +3094 5478 0.4300 +3094 5687 0.4240 +3094 6119 0.4430 +3094 6124 0.4500 +3094 6128 0.4480 +3094 6129 0.5310 +3094 6133 0.6730 +3094 6136 0.4340 +3094 6138 0.4440 +3094 6139 0.7690 +3094 6144 0.4300 +3094 6152 0.5140 +3094 6154 0.4090 +3094 6155 0.8020 +3094 6156 0.5340 +3094 6160 0.6450 +3094 6164 0.5790 +3094 6165 0.7950 +3094 6169 0.4670 +3094 6170 0.6590 +3094 6175 0.4900 +3094 6188 0.4570 +3094 6189 0.5310 +3094 6193 0.5280 +3094 6194 0.4250 +3094 6201 0.4430 +3094 6204 0.4750 +3094 6206 0.4490 +3094 6208 0.4950 +3094 6210 0.5880 +3094 6218 0.6600 +3094 6222 0.5630 +3094 6224 0.4360 +3094 6227 0.5300 +3094 6228 0.5450 +3094 6229 0.4950 +3094 6231 0.4870 +3094 6233 0.4380 +3094 6235 0.5040 +3094 6633 0.5100 +3094 6636 0.4410 +3094 6727 0.5310 +3094 6902 0.5410 +3094 7295 0.4890 +3094 8601 0.7520 +3094 8607 0.4450 +3094 9045 0.4070 +3094 9978 0.5040 +3094 10178 0.5020 +3094 10412 0.4010 +3094 10632 0.5550 +3094 10856 0.7170 +3094 10923 0.4130 +3094 10935 0.4880 +3094 11224 0.4920 +3094 11315 0.5400 +3094 23210 0.4450 +3094 23650 0.8600 +3094 25873 0.4750 +3094 26575 0.6590 +3094 27089 0.8100 +3094 51121 0.4380 +3094 51187 0.4490 +3094 51372 0.5190 +3094 51564 0.4180 +3094 51690 0.4380 +3094 51727 0.4580 +3094 54543 0.5740 +3094 54840 0.4570 +3094 81892 0.4450 +3094 135114 0.7730 +3094 161823 0.6210 +3094 170622 0.4300 +3094 441282 0.4350 +3094 654364 0.4910 +3096 3097 0.4600 +3096 3273 0.5160 +3096 4088 0.5000 +3096 4089 0.6500 +3096 5494 0.5160 +3096 5991 0.4210 +3096 6310 0.4800 +3096 6752 0.4390 +3096 6925 0.4500 +3096 7534 0.4630 +3096 8202 0.4270 +3096 8553 0.4650 +3096 8945 0.7920 +3096 23013 0.5150 +3096 23291 0.6860 +3096 25932 0.5930 +3096 54438 0.4550 +3096 64478 0.4100 +3096 79718 0.4660 +3096 84916 0.7260 +3096 149483 0.4250 +3096 221692 0.4050 +3096 442213 0.4560 +3097 4087 0.5580 +3097 4088 0.5360 +3097 4089 0.6880 +3097 4745 0.4530 +3097 4790 0.5590 +3097 5494 0.7040 +3097 6751 0.4290 +3097 6752 0.7100 +3097 6754 0.4970 +3097 6925 0.6810 +3097 8405 0.4530 +3097 8945 0.7650 +3097 9519 0.4590 +3097 9774 0.4510 +3097 11255 0.5480 +3097 23291 0.7100 +3097 23539 0.5620 +3097 25932 0.8970 +3097 51390 0.4450 +3097 54494 0.4040 +3097 55885 0.4210 +3097 56980 0.4040 +3097 57537 0.4160 +3097 80209 0.4090 +3097 80790 0.4200 +3097 84181 0.4910 +3097 85457 0.4360 +3097 114088 0.5520 +3098 3099 0.9790 +3098 3101 0.9780 +3098 3156 0.4170 +3098 3309 0.4510 +3098 3315 0.4670 +3098 3417 0.4260 +3098 3418 0.4270 +3098 3630 0.4150 +3098 3725 0.4950 +3098 3795 0.9250 +3098 3845 0.7020 +3098 3938 0.9030 +3098 4090 0.6460 +3098 4191 0.5030 +3098 4351 0.9510 +3098 4609 0.4290 +3098 4723 0.4240 +3098 4967 0.4620 +3098 5071 0.7520 +3098 5091 0.5150 +3098 5163 0.5910 +3098 5207 0.7650 +3098 5208 0.7730 +3098 5209 0.8280 +3098 5210 0.7600 +3098 5211 0.9770 +3098 5213 0.9900 +3098 5214 0.9950 +3098 5223 0.5250 +3098 5224 0.4330 +3098 5226 0.5080 +3098 5230 0.6820 +3098 5232 0.5440 +3098 5236 0.5610 +3098 5238 0.5180 +3098 5239 0.4120 +3098 5313 0.5910 +3098 5315 0.7640 +3098 5317 0.4870 +3098 5372 0.9290 +3098 5373 0.9410 +3098 5566 0.5740 +3098 5834 0.5380 +3098 5836 0.5400 +3098 5837 0.5090 +3098 5894 0.4440 +3098 6476 0.9170 +3098 6506 0.4940 +3098 6507 0.5050 +3098 6513 0.6530 +3098 6514 0.4280 +3098 6515 0.7370 +3098 6517 0.5270 +3098 6652 0.9380 +3098 6714 0.4560 +3098 6794 0.4030 +3098 6888 0.8800 +3098 7086 0.8810 +3098 7167 0.7840 +3098 7280 0.4830 +3098 7360 0.5320 +3098 7415 0.4640 +3098 7416 0.9980 +3098 7417 0.5530 +3098 7419 0.7530 +3098 7534 0.5070 +3098 8277 0.8800 +3098 8789 0.9320 +3098 8972 0.9220 +3098 9122 0.4350 +3098 9123 0.4870 +3098 9421 0.4790 +3098 9563 0.9430 +3098 9942 0.4510 +3098 9945 0.9320 +3098 10007 0.9440 +3098 10105 0.4630 +3098 11181 0.6450 +3098 22934 0.4230 +3098 26330 0.5440 +3098 51071 0.8000 +3098 51477 0.5690 +3098 54205 0.4360 +3098 55276 0.9450 +3098 55577 0.5260 +3098 57016 0.8220 +3098 57103 0.8030 +3098 57506 0.4120 +3098 57818 0.9420 +3098 59349 0.4190 +3098 64841 0.9390 +3098 80201 0.9730 +3098 83440 0.9360 +3098 84076 0.8800 +3098 92579 0.9430 +3098 93432 0.9160 +3098 114548 0.4750 +3098 130589 0.9140 +3098 132158 0.8130 +3098 132789 0.9380 +3098 197258 0.8010 +3098 257202 0.4250 +3098 441531 0.4370 +3098 493869 0.4210 +3099 3101 0.9740 +3099 3417 0.5690 +3099 3418 0.5320 +3099 3630 0.5350 +3099 3795 0.9270 +3099 3845 0.4270 +3099 3938 0.9030 +3099 4088 0.4040 +3099 4191 0.4780 +3099 4351 0.9330 +3099 4609 0.6570 +3099 4967 0.4250 +3099 5071 0.5420 +3099 5091 0.5340 +3099 5105 0.4080 +3099 5163 0.7530 +3099 5164 0.4430 +3099 5166 0.5320 +3099 5207 0.8320 +3099 5208 0.8550 +3099 5209 0.9090 +3099 5210 0.8660 +3099 5211 0.9650 +3099 5213 0.9770 +3099 5214 0.9650 +3099 5223 0.5880 +3099 5224 0.4260 +3099 5226 0.5230 +3099 5230 0.7430 +3099 5232 0.5190 +3099 5236 0.5420 +3099 5238 0.4420 +3099 5313 0.5620 +3099 5315 0.8560 +3099 5372 0.9310 +3099 5373 0.9280 +3099 5468 0.4190 +3099 5728 0.4810 +3099 5834 0.4590 +3099 5836 0.5610 +3099 5837 0.4690 +3099 5861 0.4170 +3099 6198 0.4150 +3099 6476 0.9150 +3099 6510 0.5300 +3099 6513 0.8110 +3099 6514 0.4640 +3099 6515 0.7110 +3099 6517 0.7190 +3099 6566 0.4880 +3099 6652 0.9350 +3099 6720 0.4360 +3099 6774 0.4470 +3099 6794 0.4330 +3099 6888 0.8870 +3099 7086 0.8940 +3099 7157 0.7060 +3099 7167 0.6720 +3099 7360 0.4960 +3099 7416 0.9970 +3099 7417 0.5380 +3099 7419 0.6270 +3099 7837 0.4290 +3099 8277 0.8920 +3099 8789 0.9370 +3099 8972 0.9220 +3099 9122 0.6010 +3099 9123 0.6560 +3099 9421 0.4710 +3099 9563 0.9520 +3099 9942 0.4790 +3099 9945 0.9310 +3099 9997 0.5630 +3099 10007 0.9180 +3099 10059 0.5880 +3099 10105 0.7270 +3099 10520 0.6010 +3099 10891 0.5320 +3099 11181 0.5740 +3099 22877 0.4050 +3099 22934 0.4250 +3099 23411 0.4390 +3099 27165 0.4180 +3099 51071 0.8060 +3099 54205 0.5690 +3099 55276 0.9460 +3099 55902 0.4680 +3099 56339 0.4910 +3099 57016 0.8190 +3099 57103 0.9750 +3099 57506 0.5190 +3099 57818 0.9410 +3099 64841 0.9300 +3099 79184 0.4250 +3099 80201 0.9060 +3099 83440 0.9280 +3099 84076 0.8890 +3099 84532 0.4100 +3099 92579 0.9460 +3099 93432 0.9180 +3099 112950 0.4160 +3099 130589 0.9180 +3099 132158 0.8130 +3099 132789 0.9160 +3099 137902 0.4270 +3099 197258 0.8010 +3099 441531 0.4920 +3101 3684 0.4880 +3101 3795 0.9170 +3101 3938 0.9030 +3101 4191 0.4740 +3101 4332 0.7800 +3101 4351 0.9400 +3101 5207 0.7380 +3101 5208 0.8060 +3101 5209 0.8250 +3101 5210 0.7470 +3101 5211 0.9590 +3101 5213 0.9560 +3101 5214 0.9540 +3101 5224 0.4330 +3101 5226 0.4770 +3101 5230 0.4660 +3101 5232 0.5050 +3101 5236 0.4770 +3101 5238 0.4480 +3101 5313 0.5820 +3101 5315 0.6200 +3101 5372 0.9280 +3101 5373 0.9310 +3101 5836 0.4660 +3101 5837 0.4190 +3101 6036 0.4180 +3101 6279 0.4390 +3101 6280 0.4770 +3101 6283 0.5240 +3101 6476 0.9150 +3101 6513 0.4240 +3101 6515 0.4260 +3101 6517 0.4260 +3101 6652 0.9200 +3101 6688 0.5580 +3101 6888 0.8580 +3101 7086 0.8640 +3101 7167 0.4620 +3101 7305 0.7300 +3101 7360 0.4460 +3101 7416 0.8870 +3101 7417 0.4050 +3101 8277 0.8570 +3101 8789 0.9320 +3101 8972 0.9270 +3101 9563 0.9330 +3101 9945 0.9220 +3101 10007 0.9350 +3101 10288 0.4810 +3101 10871 0.4890 +3101 11024 0.5020 +3101 11025 0.4180 +3101 11181 0.6320 +3101 26330 0.4230 +3101 27036 0.5130 +3101 27180 0.5110 +3101 51071 0.8000 +3101 51311 0.7620 +3101 53831 0.4290 +3101 54210 0.4030 +3101 55276 0.9360 +3101 55577 0.4070 +3101 55911 0.4240 +3101 56729 0.4130 +3101 57016 0.8190 +3101 57103 0.7600 +3101 57818 0.9430 +3101 64841 0.9320 +3101 79989 0.4280 +3101 80201 0.9610 +3101 83440 0.9300 +3101 84076 0.8440 +3101 84106 0.4420 +3101 84689 0.4470 +3101 92579 0.9500 +3101 93432 0.9160 +3101 124599 0.5240 +3101 126014 0.4600 +3101 130589 0.9260 +3101 132158 0.8160 +3101 132789 0.9320 +3101 146722 0.5350 +3101 150372 0.4180 +3101 160287 0.4030 +3101 160364 0.4380 +3101 197258 0.8010 +3101 199675 0.4780 +3101 221711 0.4790 +3101 284417 0.4180 +3104 4610 0.5000 +3104 4613 0.4710 +3104 4893 0.4410 +3104 7013 0.6690 +3104 7014 0.4870 +3104 7158 0.4990 +3104 7182 0.4300 +3104 7709 0.4750 +3104 7818 0.4620 +3104 7988 0.5180 +3104 10240 0.4630 +3104 10948 0.4550 +3104 26277 0.4800 +3104 27153 0.4490 +3104 28952 0.4950 +3104 51081 0.4210 +3104 51116 0.4450 +3104 51650 0.4550 +3104 55037 0.4190 +3104 55133 0.5390 +3104 55173 0.4210 +3104 55374 0.4060 +3104 55657 0.4290 +3104 57684 0.4150 +3104 60488 0.4010 +3104 64858 0.5450 +3104 64963 0.4110 +3104 65993 0.4990 +3104 79618 0.4590 +3104 79707 0.6250 +3104 79797 0.4930 +3104 80198 0.4740 +3104 80772 0.4030 +3104 80835 0.5060 +3104 84067 0.4410 +3104 114790 0.7790 +3104 135927 0.4120 +3104 145645 0.4390 +3104 203245 0.5190 +3105 3106 0.9990 +3105 3107 0.9980 +3105 3108 0.9660 +3105 3109 0.9310 +3105 3111 0.9600 +3105 3112 0.9220 +3105 3113 0.9570 +3105 3115 0.9420 +3105 3117 0.9730 +3105 3118 0.9190 +3105 3119 0.8540 +3105 3120 0.6370 +3105 3122 0.9500 +3105 3123 0.9420 +3105 3127 0.8390 +3105 3133 0.9890 +3105 3134 0.9960 +3105 3135 0.9470 +3105 3140 0.5850 +3105 3309 0.5440 +3105 3315 0.4170 +3105 3320 0.4410 +3105 3375 0.4680 +3105 3383 0.4600 +3105 3428 0.4920 +3105 3439 0.5200 +3105 3456 0.4060 +3105 3458 0.7740 +3105 3552 0.5810 +3105 3553 0.4700 +3105 3558 0.7130 +3105 3565 0.5100 +3105 3569 0.5010 +3105 3574 0.5170 +3105 3575 0.4490 +3105 3576 0.4120 +3105 3586 0.7050 +3105 3600 0.5980 +3105 3620 0.4590 +3105 3627 0.4510 +3105 3630 0.7510 +3105 3659 0.5090 +3105 3660 0.5000 +3105 3683 0.4960 +3105 3687 0.4300 +3105 3689 0.5490 +3105 3735 0.4090 +3105 3778 0.4220 +3105 3802 0.9840 +3105 3804 0.9960 +3105 3805 0.5910 +3105 3811 0.9990 +3105 3812 0.9990 +3105 3821 0.9780 +3105 3822 0.8490 +3105 3824 0.9520 +3105 3845 0.4790 +3105 3902 0.5220 +3105 3916 0.6410 +3105 4012 0.5500 +3105 4046 0.9140 +3105 4049 0.5350 +3105 4061 0.4620 +3105 4100 0.6360 +3105 4102 0.7520 +3105 4103 0.7900 +3105 4111 0.4470 +3105 4261 0.6620 +3105 4283 0.4200 +3105 4311 0.5020 +3105 4508 0.4120 +3105 4599 0.4170 +3105 4609 0.4160 +3105 4684 0.6070 +3105 4700 0.7050 +3105 4790 0.5600 +3105 4893 0.4100 +3105 5133 0.5240 +3105 5175 0.4240 +3105 5238 0.6710 +3105 5290 0.5610 +3105 5414 0.6310 +3105 5551 0.6840 +3105 5696 0.8470 +3105 5698 0.7730 +3105 5699 0.5350 +3105 5720 0.4370 +3105 5721 0.4100 +3105 5743 0.4650 +3105 5788 0.5390 +3105 5817 0.4180 +3105 5819 0.4360 +3105 5970 0.4110 +3105 6118 0.4890 +3105 6317 0.4580 +3105 6351 0.4460 +3105 6396 0.5070 +3105 6402 0.4860 +3105 6403 0.4420 +3105 6480 0.4260 +3105 6490 0.8830 +3105 6524 0.4900 +3105 6648 0.4130 +3105 6657 0.5480 +3105 6745 0.4100 +3105 6769 0.4890 +3105 6772 0.7680 +3105 6773 0.6390 +3105 6774 0.4260 +3105 6890 0.9840 +3105 6891 0.9630 +3105 6892 0.9980 +3105 6907 0.5070 +3105 6992 0.7220 +3105 6993 0.5360 +3105 7040 0.4470 +3105 7113 0.4360 +3105 7124 0.7600 +3105 7157 0.7700 +3105 7273 0.5810 +3105 7299 0.7300 +3105 7305 0.4810 +3105 7357 0.4390 +3105 7399 0.5740 +3105 7431 0.4930 +3105 7490 0.7240 +3105 7726 0.4950 +3105 8000 0.4850 +3105 8302 0.7290 +3105 8519 0.4070 +3105 8634 0.4080 +3105 8635 0.4360 +3105 8673 0.5330 +3105 8718 0.8180 +3105 8773 0.5010 +3105 8795 0.4850 +3105 8797 0.6860 +3105 8905 0.6500 +3105 8906 0.6510 +3105 8907 0.9660 +3105 9308 0.4920 +3105 9341 0.5180 +3105 9367 0.9040 +3105 9436 0.6650 +3105 9437 0.4800 +3105 9450 0.4540 +3105 9466 0.9170 +3105 9612 0.5680 +3105 9632 0.5020 +3105 9871 0.5030 +3105 9873 0.4350 +3105 9933 0.6780 +3105 10044 0.4260 +3105 10053 0.6540 +3105 10086 0.4260 +3105 10107 0.4680 +3105 10134 0.6480 +3105 10288 0.9920 +3105 10379 0.7030 +3105 10384 0.5700 +3105 10385 0.4750 +3105 10427 0.5030 +3105 10484 0.4990 +3105 10578 0.4470 +3105 10580 0.5250 +3105 10666 0.4770 +3105 10802 0.4990 +3105 10859 0.9990 +3105 10917 0.4370 +3105 10938 0.4390 +3105 10990 0.6370 +3105 11006 0.7100 +3105 11024 0.7930 +3105 11025 0.6630 +3105 11027 0.7820 +3105 11041 0.5500 +3105 11074 0.5630 +3105 11116 0.4080 +3105 11118 0.5650 +3105 11119 0.5850 +3105 11120 0.4880 +3105 11126 0.6600 +3105 11311 0.4360 +3105 22872 0.5090 +3105 22914 0.6670 +3105 23111 0.6960 +3105 23457 0.5760 +3105 23526 0.6820 +3105 23532 0.5250 +3105 23547 0.6430 +3105 25939 0.5700 +3105 26191 0.6250 +3105 27087 0.4960 +3105 27348 0.5070 +3105 29126 0.6430 +3105 29935 0.4880 +3105 30816 0.4030 +3105 30834 0.4850 +3105 30848 0.5880 +3105 50943 0.6790 +3105 51128 0.5070 +3105 51752 0.5980 +3105 55080 0.7990 +3105 55717 0.5070 +3105 56244 0.5910 +3105 57126 0.4290 +3105 59272 0.5710 +3105 64005 0.7590 +3105 64145 0.5490 +3105 64167 0.5210 +3105 79139 0.5490 +3105 79168 0.7720 +3105 79908 0.4400 +3105 79923 0.5130 +3105 79991 0.4300 +3105 80263 0.5090 +3105 80352 0.6870 +3105 80380 0.4860 +3105 80381 0.4470 +3105 83666 0.4930 +3105 83872 0.4180 +3105 84166 0.5570 +3105 84206 0.4410 +3105 84868 0.5480 +3105 85451 0.4590 +3105 92305 0.5760 +3105 92799 0.5600 +3105 112817 0.4870 +3105 113246 0.7670 +3105 114625 0.4180 +3105 115653 0.9720 +3105 129401 0.4070 +3105 130340 0.9270 +3105 153579 0.4220 +3105 163786 0.4130 +3105 201633 0.4440 +3105 257144 0.5040 +3105 259197 0.5170 +3105 353514 0.5920 +3105 100423062 0.9300 +3105 102723407 0.9580 +3106 3107 0.9980 +3106 3108 0.9820 +3106 3109 0.9650 +3106 3111 0.9770 +3106 3112 0.9560 +3106 3113 0.9560 +3106 3115 0.9460 +3106 3117 0.7460 +3106 3118 0.9360 +3106 3119 0.7630 +3106 3120 0.6510 +3106 3122 0.9750 +3106 3123 0.9630 +3106 3127 0.6870 +3106 3133 0.9940 +3106 3134 0.9820 +3106 3135 0.9590 +3106 3140 0.6300 +3106 3183 0.9050 +3106 3305 0.5850 +3106 3309 0.6810 +3106 3396 0.4610 +3106 3430 0.4170 +3106 3434 0.5300 +3106 3439 0.4500 +3106 3458 0.6730 +3106 3553 0.4540 +3106 3558 0.5810 +3106 3569 0.4650 +3106 3586 0.4740 +3106 3600 0.4470 +3106 3627 0.4470 +3106 3630 0.6520 +3106 3659 0.5470 +3106 3669 0.5400 +3106 3725 0.4060 +3106 3802 0.9850 +3106 3804 0.9730 +3106 3805 0.5890 +3106 3811 0.9990 +3106 3812 0.9990 +3106 3821 0.8670 +3106 3822 0.8220 +3106 3824 0.9450 +3106 3902 0.4230 +3106 3916 0.5020 +3106 3965 0.4340 +3106 4012 0.5850 +3106 4049 0.6720 +3106 4261 0.4740 +3106 4277 0.5590 +3106 4508 0.4120 +3106 4599 0.4610 +3106 4684 0.5030 +3106 4700 0.6850 +3106 4795 0.5920 +3106 5133 0.4270 +3106 5238 0.6190 +3106 5241 0.4550 +3106 5286 0.4180 +3106 5551 0.6430 +3106 5696 0.8860 +3106 5698 0.7980 +3106 5699 0.5590 +3106 6118 0.4910 +3106 6182 0.4260 +3106 6351 0.4240 +3106 6396 0.5230 +3106 6431 0.6480 +3106 6480 0.6830 +3106 6524 0.4690 +3106 6648 0.4270 +3106 6734 0.6680 +3106 6769 0.4580 +3106 6772 0.8170 +3106 6773 0.6360 +3106 6890 0.9240 +3106 6891 0.7760 +3106 6892 0.9980 +3106 6907 0.5070 +3106 6993 0.5080 +3106 7124 0.7610 +3106 7128 0.4670 +3106 7172 0.5820 +3106 7305 0.8870 +3106 7399 0.4370 +3106 7852 0.5290 +3106 7916 0.5760 +3106 7919 0.4420 +3106 7920 0.6340 +3106 7940 0.5220 +3106 8302 0.7810 +3106 8519 0.4440 +3106 8635 0.4450 +3106 8673 0.5390 +3106 8718 0.8320 +3106 8764 0.4240 +3106 8773 0.5030 +3106 8797 0.7590 +3106 8804 0.4580 +3106 8859 0.4320 +3106 8905 0.6500 +3106 8906 0.6500 +3106 8907 0.6560 +3106 9341 0.5200 +3106 9632 0.5150 +3106 9759 0.4020 +3106 9871 0.5010 +3106 9873 0.4470 +3106 10053 0.6500 +3106 10288 0.9920 +3106 10379 0.7190 +3106 10384 0.5600 +3106 10385 0.4260 +3106 10427 0.5030 +3106 10484 0.5240 +3106 10561 0.4100 +3106 10563 0.4730 +3106 10578 0.5010 +3106 10580 0.7020 +3106 10599 0.4600 +3106 10666 0.4020 +3106 10802 0.4990 +3106 10859 0.9890 +3106 10990 0.6540 +3106 11006 0.6620 +3106 11024 0.6620 +3106 11025 0.6970 +3106 11027 0.6220 +3106 11041 0.5490 +3106 11118 0.5830 +3106 11119 0.5410 +3106 11120 0.4290 +3106 11126 0.7760 +3106 11314 0.4690 +3106 22872 0.5030 +3106 22914 0.5530 +3106 23001 0.4790 +3106 23111 0.6850 +3106 23547 0.6430 +3106 25939 0.5990 +3106 26191 0.6950 +3106 27348 0.5780 +3106 27352 0.4330 +3106 29126 0.5490 +3106 29935 0.4880 +3106 30834 0.5410 +3106 51128 0.4990 +3106 51752 0.8760 +3106 54535 0.4110 +3106 54575 0.4330 +3106 54576 0.4350 +3106 54577 0.4450 +3106 54578 0.4320 +3106 54657 0.4350 +3106 54658 0.4460 +3106 55080 0.6350 +3106 55717 0.5450 +3106 56244 0.4050 +3106 57126 0.4160 +3106 57818 0.4350 +3106 64135 0.4340 +3106 64167 0.6160 +3106 79001 0.5880 +3106 79092 0.5150 +3106 79168 0.6990 +3106 79991 0.4300 +3106 80263 0.5410 +3106 80380 0.4260 +3106 84166 0.5830 +3106 84662 0.4850 +3106 84868 0.4640 +3106 92799 0.5210 +3106 94025 0.4570 +3106 113246 0.8110 +3106 115653 0.9810 +3106 118429 0.4370 +3106 130340 0.6630 +3106 149233 0.4940 +3106 163786 0.4130 +3106 170679 0.4790 +3106 170685 0.5030 +3106 203413 0.6910 +3106 221527 0.4550 +3106 257144 0.5050 +3106 259197 0.5960 +3106 282617 0.4790 +3106 284293 0.5610 +3106 353514 0.5690 +3106 102723407 0.9550 +3107 3108 0.9740 +3107 3109 0.9500 +3107 3111 0.9590 +3107 3112 0.9510 +3107 3113 0.9420 +3107 3115 0.9380 +3107 3117 0.9450 +3107 3118 0.9250 +3107 3119 0.8330 +3107 3120 0.6430 +3107 3122 0.9610 +3107 3123 0.9670 +3107 3127 0.6980 +3107 3133 0.9890 +3107 3134 0.9900 +3107 3135 0.9500 +3107 3140 0.7320 +3107 3309 0.6640 +3107 3428 0.4530 +3107 3434 0.5050 +3107 3439 0.4170 +3107 3458 0.6090 +3107 3553 0.4220 +3107 3554 0.4590 +3107 3558 0.5160 +3107 3565 0.5880 +3107 3569 0.4160 +3107 3576 0.4060 +3107 3586 0.4320 +3107 3600 0.5090 +3107 3605 0.4160 +3107 3627 0.4070 +3107 3655 0.4490 +3107 3659 0.4310 +3107 3660 0.4730 +3107 3669 0.5000 +3107 3690 0.4020 +3107 3802 0.9990 +3107 3804 0.9990 +3107 3805 0.7840 +3107 3811 0.9960 +3107 3812 0.9550 +3107 3821 0.9880 +3107 3822 0.8640 +3107 3824 0.9980 +3107 3838 0.4150 +3107 3845 0.6170 +3107 3872 0.5400 +3107 3902 0.4220 +3107 3916 0.5250 +3107 4012 0.5500 +3107 4049 0.4910 +3107 4261 0.4430 +3107 4282 0.4400 +3107 4508 0.4120 +3107 4684 0.5710 +3107 4795 0.5320 +3107 5133 0.4210 +3107 5238 0.5070 +3107 5462 0.4240 +3107 5551 0.6350 +3107 5693 0.4300 +3107 5696 0.7810 +3107 5698 0.6280 +3107 5699 0.4650 +3107 5817 0.4560 +3107 5819 0.6280 +3107 6118 0.4880 +3107 6375 0.4540 +3107 6396 0.5030 +3107 6480 0.5860 +3107 6769 0.5790 +3107 6772 0.8090 +3107 6773 0.6130 +3107 6890 0.6990 +3107 6891 0.7270 +3107 6892 0.9810 +3107 6907 0.5060 +3107 6941 0.7570 +3107 6993 0.7320 +3107 7124 0.7940 +3107 7128 0.4830 +3107 7305 0.8740 +3107 7726 0.4390 +3107 7920 0.4060 +3107 8302 0.7310 +3107 8635 0.4510 +3107 8673 0.5350 +3107 8718 0.6930 +3107 8773 0.5070 +3107 8797 0.4360 +3107 8905 0.6500 +3107 8906 0.6500 +3107 8907 0.6540 +3107 9341 0.5110 +3107 9436 0.6910 +3107 9437 0.5400 +3107 9632 0.4990 +3107 9636 0.5220 +3107 9871 0.5070 +3107 9873 0.5700 +3107 10053 0.6630 +3107 10288 0.9530 +3107 10318 0.5140 +3107 10379 0.6350 +3107 10384 0.4850 +3107 10385 0.4250 +3107 10427 0.5030 +3107 10447 0.7550 +3107 10484 0.5000 +3107 10578 0.4290 +3107 10580 0.9900 +3107 10663 0.4510 +3107 10666 0.4810 +3107 10758 0.4750 +3107 10802 0.4990 +3107 10859 0.9970 +3107 10990 0.6380 +3107 11006 0.6590 +3107 11024 0.9110 +3107 11025 0.6380 +3107 11027 0.6350 +3107 11116 0.4490 +3107 11118 0.5290 +3107 11119 0.4800 +3107 11126 0.9420 +3107 11314 0.6100 +3107 22872 0.5010 +3107 22914 0.6030 +3107 23111 0.9700 +3107 23341 0.4040 +3107 23547 0.6460 +3107 25939 0.5810 +3107 26191 0.5540 +3107 26507 0.6190 +3107 27087 0.4380 +3107 29113 0.7620 +3107 29126 0.5380 +3107 29935 0.4880 +3107 30816 0.5300 +3107 30834 0.6060 +3107 51128 0.4990 +3107 51513 0.4020 +3107 51752 0.8870 +3107 54535 0.8520 +3107 54788 0.4360 +3107 64127 0.4860 +3107 64135 0.4030 +3107 64167 0.7270 +3107 79092 0.6650 +3107 79168 0.7530 +3107 79991 0.4300 +3107 80263 0.7670 +3107 80328 0.4040 +3107 80329 0.4580 +3107 81831 0.5780 +3107 84166 0.5100 +3107 84868 0.4420 +3107 85451 0.7640 +3107 113246 0.5790 +3107 115653 0.9150 +3107 130340 0.7040 +3107 146722 0.5700 +3107 149233 0.5190 +3107 163786 0.4130 +3107 170679 0.7720 +3107 219736 0.4480 +3107 221527 0.4260 +3107 259197 0.5960 +3107 284525 0.6340 +3107 339366 0.5700 +3107 353131 0.4320 +3107 353143 0.7430 +3107 353144 0.7960 +3107 353514 0.5790 +3107 102723407 0.9520 +3108 3109 0.9990 +3108 3111 0.9890 +3108 3112 0.9960 +3108 3113 0.9990 +3108 3115 0.9940 +3108 3117 0.9040 +3108 3118 0.9090 +3108 3119 0.9500 +3108 3120 0.9270 +3108 3122 0.9990 +3108 3123 0.9990 +3108 3127 0.9270 +3108 3133 0.9650 +3108 3134 0.9700 +3108 3135 0.7830 +3108 3140 0.5670 +3108 3394 0.5150 +3108 3458 0.4640 +3108 3588 0.4330 +3108 3659 0.4140 +3108 3689 0.4950 +3108 4155 0.5220 +3108 4261 0.7930 +3108 4277 0.4040 +3108 4283 0.4520 +3108 4818 0.4180 +3108 5696 0.6210 +3108 5698 0.6400 +3108 5699 0.5210 +3108 5993 0.4600 +3108 6046 0.8620 +3108 6351 0.4110 +3108 6362 0.4870 +3108 6890 0.4170 +3108 6892 0.6530 +3108 7305 0.6020 +3108 7318 0.4240 +3108 8019 0.8450 +3108 8718 0.4540 +3108 8797 0.4180 +3108 9308 0.4070 +3108 9450 0.4540 +3108 10437 0.7020 +3108 10673 0.4240 +3108 55080 0.4540 +3108 91543 0.4410 +3108 102723407 0.9090 +3109 3111 0.9870 +3109 3112 0.9980 +3109 3113 0.9970 +3109 3115 0.9880 +3109 3117 0.9020 +3109 3118 0.8920 +3109 3119 0.9280 +3109 3120 0.8430 +3109 3122 0.9990 +3109 3123 0.9970 +3109 3127 0.8800 +3109 3133 0.9310 +3109 3134 0.9370 +3109 3135 0.6330 +3109 3140 0.5530 +3109 3394 0.6040 +3109 3458 0.4960 +3109 3587 0.4280 +3109 3659 0.4320 +3109 3689 0.4260 +3109 3902 0.5060 +3109 4261 0.7100 +3109 4277 0.4150 +3109 4283 0.4170 +3109 5664 0.5910 +3109 5696 0.5620 +3109 5698 0.5660 +3109 6351 0.4170 +3109 6375 0.4560 +3109 6892 0.5150 +3109 7305 0.5140 +3109 7805 0.4180 +3109 9450 0.5380 +3109 9938 0.4100 +3109 10437 0.4760 +3109 10875 0.4050 +3109 51267 0.4210 +3109 51296 0.4610 +3109 56833 0.4620 +3109 91937 0.4260 +3109 353514 0.4190 +3109 102723407 0.9130 +3110 3169 0.4100 +3110 3170 0.6250 +3110 3171 0.4300 +3110 3175 0.5940 +3110 3630 0.4880 +3110 3670 0.8900 +3110 3767 0.4680 +3110 3880 0.5580 +3110 3892 0.4870 +3110 4010 0.4310 +3110 4760 0.6530 +3110 4821 0.4590 +3110 4825 0.6050 +3110 4841 0.4380 +3110 5052 0.4970 +3110 5078 0.4570 +3110 5080 0.4490 +3110 5122 0.4250 +3110 5125 0.5980 +3110 5453 0.5360 +3110 6469 0.7290 +3110 6514 0.6640 +3110 6572 0.4760 +3110 6657 0.4270 +3110 6662 0.4600 +3110 6833 0.4820 +3110 6928 0.4230 +3110 8022 0.7000 +3110 9935 0.4210 +3110 10215 0.7350 +3110 10220 0.7650 +3110 10560 0.4210 +3110 11317 0.4090 +3110 27319 0.4070 +3110 50674 0.6740 +3110 51124 0.4760 +3110 51573 0.4680 +3110 54857 0.5450 +3110 57057 0.4640 +3110 63973 0.4350 +3110 64321 0.4590 +3110 64327 0.8570 +3110 64434 0.5470 +3110 64843 0.8260 +3110 81544 0.7170 +3110 81839 0.4320 +3110 84504 0.5850 +3110 89884 0.4700 +3110 140545 0.5270 +3110 169792 0.5790 +3110 222546 0.7520 +3110 256297 0.7040 +3111 3112 0.9800 +3111 3113 0.9760 +3111 3115 0.9770 +3111 3117 0.7390 +3111 3118 0.7420 +3111 3119 0.8720 +3111 3120 0.7810 +3111 3122 0.9700 +3111 3123 0.9470 +3111 3127 0.7910 +3111 3133 0.9530 +3111 3134 0.9300 +3111 3135 0.7480 +3111 3140 0.5700 +3111 3558 0.4290 +3111 4261 0.8220 +3111 4283 0.4030 +3111 6046 0.8340 +3111 6734 0.4220 +3111 6892 0.4390 +3111 8019 0.8250 +3111 8859 0.4160 +3111 10622 0.4060 +3111 55703 0.4040 +3111 85478 0.4940 +3111 102723407 0.9110 +3112 3113 0.9470 +3112 3115 0.9140 +3112 3117 0.8720 +3112 3118 0.9150 +3112 3119 0.7560 +3112 3120 0.7500 +3112 3122 0.9800 +3112 3123 0.9440 +3112 3127 0.6950 +3112 3133 0.9240 +3112 3134 0.9290 +3112 3135 0.6260 +3112 3140 0.5530 +3112 3630 0.4450 +3112 4261 0.4710 +3112 5089 0.4400 +3112 5696 0.8560 +3112 5698 0.8600 +3112 6015 0.4660 +3112 6046 0.4350 +3112 6156 0.4560 +3112 6890 0.5490 +3112 6892 0.4320 +3112 7124 0.5200 +3112 7431 0.4130 +3112 10859 0.5180 +3112 29802 0.6120 +3112 29851 0.4010 +3112 79368 0.4440 +3112 83416 0.4230 +3112 84824 0.6330 +3112 115650 0.4250 +3112 117289 0.4140 +3112 151888 0.4590 +3112 723961 0.4280 +3112 102723407 0.9290 +3113 3115 0.9990 +3113 3117 0.8720 +3113 3118 0.8590 +3113 3119 0.9150 +3113 3120 0.8580 +3113 3122 0.9990 +3113 3123 0.9790 +3113 3127 0.9100 +3113 3133 0.9630 +3113 3134 0.9490 +3113 3135 0.6620 +3113 3140 0.5600 +3113 3309 0.4030 +3113 3394 0.4930 +3113 3455 0.4530 +3113 3458 0.4170 +3113 3569 0.5260 +3113 3587 0.4940 +3113 3603 0.4890 +3113 3627 0.4120 +3113 3683 0.4540 +3113 3689 0.4770 +3113 3702 0.5850 +3113 3856 0.4220 +3113 3902 0.7120 +3113 3937 0.7640 +3113 4261 0.5850 +3113 4283 0.4530 +3113 4818 0.4330 +3113 5133 0.6660 +3113 5341 0.4220 +3113 5476 0.4120 +3113 5588 0.4510 +3113 5641 0.5190 +3113 5696 0.4710 +3113 5698 0.5470 +3113 5777 0.6020 +3113 5781 0.6830 +3113 5788 0.6030 +3113 5795 0.4030 +3113 5920 0.5050 +3113 6015 0.4240 +3113 6257 0.4340 +3113 6288 0.4070 +3113 6289 0.4010 +3113 6347 0.5430 +3113 6363 0.5200 +3113 6396 0.4990 +3113 6456 0.4990 +3113 6734 0.7520 +3113 6772 0.6820 +3113 6892 0.4600 +3113 6941 0.4280 +3113 7037 0.4480 +3113 7042 0.4220 +3113 7076 0.4380 +3113 7124 0.6150 +3113 7305 0.6040 +3113 7317 0.4890 +3113 7321 0.4330 +3113 7328 0.5880 +3113 7450 0.4790 +3113 7535 0.6000 +3113 7805 0.4470 +3113 8718 0.4100 +3113 8722 0.5120 +3113 8743 0.4360 +3113 8744 0.5550 +3113 8905 0.5300 +3113 8907 0.5000 +3113 9332 0.4780 +3113 9402 0.5570 +3113 9450 0.5290 +3113 9632 0.4990 +3113 9871 0.4990 +3113 9953 0.4700 +3113 10053 0.4990 +3113 10346 0.5290 +3113 10427 0.4990 +3113 10437 0.4510 +3113 10484 0.4990 +3113 10673 0.5120 +3113 10802 0.4990 +3113 10875 0.4100 +3113 10919 0.4110 +3113 11326 0.5700 +3113 22872 0.5010 +3113 26052 0.5100 +3113 26191 0.7660 +3113 27040 0.5000 +3113 27348 0.4040 +3113 29126 0.6550 +3113 51128 0.4990 +3113 51338 0.5850 +3113 55016 0.7730 +3113 55620 0.5480 +3113 55824 0.5290 +3113 56913 0.6110 +3113 58475 0.4780 +3113 64231 0.4140 +3113 80380 0.6220 +3113 80381 0.4310 +3113 84221 0.4250 +3113 84868 0.4300 +3113 92799 0.6780 +3113 130340 0.4990 +3113 220972 0.7210 +3113 285761 0.4140 +3113 643803 0.4060 +3113 102723407 0.9160 +3115 3117 0.9670 +3115 3118 0.9320 +3115 3119 0.7650 +3115 3120 0.6620 +3115 3122 0.9930 +3115 3123 0.9430 +3115 3127 0.7260 +3115 3133 0.9330 +3115 3134 0.9310 +3115 3135 0.6570 +3115 3140 0.5520 +3115 3231 0.4280 +3115 3309 0.4170 +3115 3455 0.4520 +3115 3458 0.4290 +3115 3630 0.5030 +3115 3689 0.5190 +3115 3702 0.5340 +3115 3902 0.5830 +3115 3937 0.6640 +3115 4192 0.4890 +3115 4234 0.4450 +3115 4261 0.6500 +3115 4795 0.5030 +3115 5133 0.5950 +3115 5335 0.4090 +3115 5476 0.4100 +3115 5588 0.4060 +3115 5641 0.4600 +3115 5696 0.4250 +3115 5698 0.4380 +3115 5777 0.5660 +3115 5781 0.5340 +3115 5788 0.6060 +3115 5795 0.4020 +3115 6156 0.4580 +3115 6257 0.5050 +3115 6396 0.5020 +3115 6456 0.4990 +3115 6734 0.4410 +3115 6772 0.5710 +3115 6892 0.4650 +3115 6907 0.4930 +3115 7305 0.4850 +3115 7431 0.4250 +3115 7535 0.5690 +3115 7726 0.4730 +3115 8625 0.4620 +3115 8718 0.6420 +3115 8722 0.4140 +3115 8797 0.5950 +3115 8905 0.5220 +3115 8907 0.5050 +3115 9402 0.5500 +3115 9632 0.4990 +3115 9871 0.4990 +3115 10053 0.5050 +3115 10107 0.4480 +3115 10427 0.5390 +3115 10484 0.5040 +3115 10802 0.5390 +3115 10875 0.4050 +3115 22872 0.5050 +3115 26052 0.5140 +3115 26191 0.7050 +3115 27040 0.5040 +3115 27348 0.7080 +3115 29126 0.5660 +3115 51128 0.5200 +3115 51270 0.6680 +3115 55717 0.4810 +3115 55824 0.5350 +3115 56244 0.4470 +3115 56833 0.4020 +3115 64795 0.4720 +3115 80380 0.5110 +3115 89870 0.4240 +3115 129831 0.4580 +3115 130340 0.4990 +3115 723961 0.4280 +3115 102723407 0.9320 +3117 3118 0.7530 +3117 3119 0.9990 +3117 3120 0.8690 +3117 3122 0.8380 +3117 3123 0.9910 +3117 3127 0.9040 +3117 3133 0.8420 +3117 3134 0.6590 +3117 3135 0.7590 +3117 3140 0.5710 +3117 3394 0.4190 +3117 3458 0.6590 +3117 3559 0.4080 +3117 3586 0.5810 +3117 3620 0.6600 +3117 3630 0.8350 +3117 3702 0.5560 +3117 3831 0.4260 +3117 3902 0.6510 +3117 3937 0.5420 +3117 4155 0.5030 +3117 4261 0.5490 +3117 4283 0.6260 +3117 4650 0.4200 +3117 4818 0.4930 +3117 5133 0.6330 +3117 5476 0.4010 +3117 5588 0.4540 +3117 5641 0.4560 +3117 5698 0.7070 +3117 5777 0.5450 +3117 5781 0.5400 +3117 5788 0.6010 +3117 5795 0.4030 +3117 5798 0.5970 +3117 6396 0.5020 +3117 6456 0.5100 +3117 6648 0.4420 +3117 6734 0.5140 +3117 6772 0.6710 +3117 6775 0.4530 +3117 6890 0.5660 +3117 6891 0.5820 +3117 6892 0.4790 +3117 6907 0.4180 +3117 7038 0.5490 +3117 7052 0.5260 +3117 7124 0.4930 +3117 7173 0.6040 +3117 7253 0.5160 +3117 7535 0.5760 +3117 8635 0.4390 +3117 8718 0.9560 +3117 8722 0.4070 +3117 8795 0.4190 +3117 8797 0.9540 +3117 8905 0.5090 +3117 8907 0.4990 +3117 9402 0.5070 +3117 9632 0.4990 +3117 9871 0.4990 +3117 10019 0.5780 +3117 10053 0.4990 +3117 10346 0.4220 +3117 10427 0.4990 +3117 10484 0.4990 +3117 10663 0.5230 +3117 10665 0.4470 +3117 10802 0.4990 +3117 11116 0.4500 +3117 22872 0.5000 +3117 22925 0.7760 +3117 23274 0.5850 +3117 26052 0.5070 +3117 26191 0.8790 +3117 27040 0.5150 +3117 27348 0.7780 +3117 29126 0.6520 +3117 29851 0.4770 +3117 50616 0.4160 +3117 51128 0.4990 +3117 55016 0.5610 +3117 55532 0.5700 +3117 55717 0.6090 +3117 55801 0.4080 +3117 55824 0.5140 +3117 56244 0.6240 +3117 64127 0.5090 +3117 80380 0.6490 +3117 80381 0.5330 +3117 84162 0.4730 +3117 114904 0.4200 +3117 117289 0.6000 +3117 129831 0.5740 +3117 130340 0.4990 +3117 132612 0.4590 +3117 144811 0.4500 +3117 160857 0.5010 +3117 169026 0.5420 +3117 170685 0.5340 +3117 220972 0.5130 +3117 723961 0.5690 +3117 102723407 0.9340 +3118 3119 0.9850 +3118 3120 0.9420 +3118 3122 0.8790 +3118 3123 0.9550 +3118 3127 0.9310 +3118 3133 0.8410 +3118 3134 0.6710 +3118 3135 0.8370 +3118 3140 0.5570 +3118 3458 0.6190 +3118 3620 0.6660 +3118 3630 0.5750 +3118 3702 0.5370 +3118 3831 0.4460 +3118 3902 0.6690 +3118 3937 0.5520 +3118 4261 0.5140 +3118 4283 0.6510 +3118 4818 0.5190 +3118 4855 0.4090 +3118 5005 0.5560 +3118 5133 0.6450 +3118 5588 0.4600 +3118 5641 0.4560 +3118 5698 0.4240 +3118 5777 0.5710 +3118 5781 0.5340 +3118 5788 0.5670 +3118 5795 0.4030 +3118 6046 0.4250 +3118 6348 0.4990 +3118 6351 0.5630 +3118 6363 0.4980 +3118 6396 0.5020 +3118 6456 0.4990 +3118 6734 0.5700 +3118 6772 0.6830 +3118 6890 0.4560 +3118 6892 0.4190 +3118 6941 0.4440 +3118 7124 0.4220 +3118 7280 0.4020 +3118 7328 0.4910 +3118 7535 0.5720 +3118 8635 0.4930 +3118 8718 0.5450 +3118 8722 0.4420 +3118 8797 0.4140 +3118 8905 0.4990 +3118 8907 0.4990 +3118 9402 0.5210 +3118 9632 0.4990 +3118 9871 0.4990 +3118 10053 0.4990 +3118 10346 0.4120 +3118 10427 0.4990 +3118 10484 0.4990 +3118 10663 0.5430 +3118 10665 0.4010 +3118 10802 0.4990 +3118 11116 0.4800 +3118 22872 0.4990 +3118 22925 0.6260 +3118 26052 0.5100 +3118 26191 0.6960 +3118 27040 0.5040 +3118 27242 0.4730 +3118 29126 0.6590 +3118 51128 0.4990 +3118 55016 0.6680 +3118 55620 0.4280 +3118 55737 0.4120 +3118 55824 0.5140 +3118 56244 0.6700 +3118 80380 0.6510 +3118 130340 0.4990 +3118 203068 0.4020 +3118 220972 0.6400 +3118 221830 0.4160 +3118 723961 0.4630 +3118 102723407 0.9300 +3119 3120 0.6810 +3119 3122 0.9760 +3119 3123 0.7500 +3119 3127 0.7630 +3119 3133 0.6650 +3119 3134 0.7380 +3119 3135 0.6860 +3119 3140 0.5580 +3119 3305 0.4750 +3119 3309 0.4280 +3119 3394 0.4220 +3119 3458 0.6350 +3119 3558 0.4020 +3119 3559 0.4220 +3119 3586 0.4200 +3119 3630 0.9670 +3119 3663 0.4450 +3119 3669 0.4210 +3119 3702 0.5480 +3119 3902 0.6690 +3119 3937 0.6280 +3119 4261 0.5520 +3119 4855 0.4200 +3119 5133 0.6560 +3119 5335 0.4090 +3119 5476 0.4110 +3119 5588 0.4780 +3119 5641 0.5350 +3119 5696 0.4750 +3119 5777 0.6010 +3119 5781 0.5450 +3119 5788 0.6110 +3119 5795 0.4130 +3119 5798 0.5070 +3119 6046 0.4150 +3119 6156 0.4580 +3119 6396 0.5020 +3119 6456 0.4990 +3119 6556 0.4990 +3119 6648 0.4150 +3119 6734 0.4210 +3119 6772 0.6590 +3119 6775 0.4840 +3119 6890 0.6630 +3119 6891 0.4900 +3119 6892 0.5680 +3119 6907 0.4250 +3119 7124 0.4880 +3119 7431 0.5250 +3119 7535 0.7200 +3119 7726 0.4250 +3119 8440 0.4320 +3119 8718 0.8860 +3119 8722 0.4740 +3119 8795 0.4650 +3119 8797 0.8020 +3119 8905 0.5040 +3119 8907 0.5050 +3119 9229 0.4080 +3119 9332 0.4300 +3119 9402 0.5790 +3119 9632 0.4990 +3119 9871 0.4990 +3119 10053 0.5050 +3119 10384 0.4630 +3119 10385 0.4340 +3119 10427 0.5390 +3119 10484 0.5040 +3119 10663 0.4570 +3119 10665 0.4790 +3119 10802 0.5390 +3119 10875 0.4060 +3119 10917 0.4150 +3119 10919 0.4540 +3119 11118 0.4780 +3119 11119 0.4350 +3119 11120 0.4080 +3119 22872 0.5050 +3119 23274 0.6200 +3119 26052 0.5130 +3119 26191 0.8470 +3119 27040 0.5030 +3119 27348 0.7860 +3119 29126 0.6440 +3119 51128 0.5200 +3119 55300 0.5780 +3119 55717 0.4800 +3119 55824 0.5320 +3119 55876 0.4350 +3119 56244 0.7580 +3119 57599 0.4220 +3119 64478 0.4480 +3119 79908 0.4220 +3119 80380 0.5850 +3119 91937 0.4020 +3119 94103 0.4170 +3119 114625 0.4200 +3119 130340 0.5170 +3119 153579 0.4120 +3119 169026 0.4080 +3119 170679 0.4500 +3119 345611 0.4130 +3119 402665 0.5060 +3119 723961 0.9470 +3119 102723407 0.4060 +3120 3122 0.9620 +3120 3123 0.7650 +3120 3127 0.7040 +3120 3133 0.6320 +3120 3134 0.6600 +3120 3135 0.6240 +3120 3140 0.5530 +3120 3630 0.5050 +3120 3665 0.5200 +3120 3702 0.5360 +3120 3902 0.6280 +3120 3937 0.5840 +3120 4261 0.4870 +3120 5133 0.6100 +3120 5335 0.4090 +3120 5476 0.4090 +3120 5588 0.4180 +3120 5617 0.4260 +3120 5641 0.5120 +3120 5696 0.5250 +3120 5698 0.5140 +3120 5777 0.5670 +3120 5781 0.5340 +3120 5788 0.5400 +3120 5795 0.4110 +3120 6046 0.4530 +3120 6156 0.4560 +3120 6396 0.5020 +3120 6456 0.4990 +3120 6772 0.5410 +3120 6941 0.4250 +3120 7431 0.5230 +3120 7535 0.5690 +3120 8722 0.5230 +3120 8809 0.4490 +3120 8905 0.4990 +3120 8907 0.5050 +3120 9402 0.5370 +3120 9632 0.4990 +3120 9871 0.4990 +3120 10053 0.5050 +3120 10427 0.5390 +3120 10484 0.5040 +3120 10802 0.5390 +3120 10919 0.4560 +3120 11101 0.4640 +3120 22872 0.5050 +3120 26052 0.5160 +3120 26191 0.5810 +3120 27040 0.5110 +3120 29126 0.6010 +3120 50489 0.5550 +3120 51128 0.5200 +3120 51752 0.5070 +3120 55824 0.5280 +3120 64167 0.4500 +3120 80380 0.5720 +3120 130340 0.4990 +3120 146754 0.4480 +3120 170679 0.4020 +3120 401250 0.4600 +3120 723961 0.4910 +3122 3123 0.9990 +3122 3127 0.9990 +3122 3133 0.9690 +3122 3134 0.9450 +3122 3135 0.6830 +3122 3140 0.6060 +3122 3394 0.7160 +3122 3429 0.4370 +3122 3434 0.5260 +3122 3437 0.5350 +3122 3458 0.6120 +3122 3553 0.4080 +3122 3558 0.5440 +3122 3565 0.5600 +3122 3587 0.5240 +3122 3620 0.4900 +3122 3627 0.5360 +3122 3630 0.5750 +3122 3659 0.4240 +3122 3663 0.4340 +3122 3669 0.4890 +3122 3684 0.6570 +3122 3687 0.4510 +3122 3689 0.7050 +3122 3702 0.5520 +3122 3815 0.4490 +3122 3820 0.5040 +3122 3824 0.4160 +3122 3902 0.8560 +3122 3937 0.7420 +3122 4069 0.4920 +3122 4155 0.7860 +3122 4261 0.8310 +3122 4283 0.5920 +3122 4332 0.4640 +3122 4360 0.4700 +3122 4799 0.8090 +3122 4818 0.5580 +3122 4928 0.4570 +3122 4939 0.5380 +3122 5133 0.7220 +3122 5175 0.4010 +3122 5341 0.4260 +3122 5476 0.4080 +3122 5551 0.4810 +3122 5552 0.5640 +3122 5588 0.4580 +3122 5641 0.4920 +3122 5696 0.6590 +3122 5698 0.6680 +3122 5777 0.6240 +3122 5781 0.5230 +3122 5788 0.7840 +3122 5795 0.4270 +3122 5989 0.6470 +3122 5993 0.8450 +3122 5994 0.6330 +3122 5996 0.4070 +3122 6156 0.8170 +3122 6208 0.4560 +3122 6348 0.4110 +3122 6351 0.4540 +3122 6396 0.4990 +3122 6456 0.4990 +3122 6614 0.4530 +3122 6688 0.4480 +3122 6734 0.5780 +3122 6772 0.8490 +3122 6775 0.4080 +3122 6890 0.5240 +3122 6891 0.4760 +3122 6892 0.5360 +3122 7098 0.4650 +3122 7124 0.4630 +3122 7148 0.5050 +3122 7162 0.9000 +3122 7167 0.9020 +3122 7177 0.5140 +3122 7305 0.6740 +3122 7328 0.4290 +3122 7412 0.4520 +3122 7431 0.9340 +3122 7441 0.4260 +3122 7535 0.5980 +3122 7726 0.4680 +3122 7805 0.5230 +3122 8227 0.4910 +3122 8340 0.9000 +3122 8483 0.8110 +3122 8625 0.6830 +3122 8638 0.4830 +3122 8718 0.6230 +3122 8722 0.4520 +3122 8797 0.5510 +3122 8905 0.5170 +3122 8907 0.4990 +3122 9332 0.5870 +3122 9402 0.5490 +3122 9450 0.4910 +3122 9612 0.4990 +3122 9622 0.6630 +3122 9632 0.4990 +3122 9871 0.4990 +3122 10053 0.4990 +3122 10219 0.4030 +3122 10288 0.4320 +3122 10427 0.4990 +3122 10437 0.5280 +3122 10462 0.4880 +3122 10484 0.4990 +3122 10561 0.6610 +3122 10578 0.4370 +3122 10665 0.5070 +3122 10802 0.4990 +3122 10859 0.4500 +3122 10875 0.5610 +3122 10990 0.5040 +3122 11006 0.5130 +3122 11326 0.5860 +3122 22872 0.4990 +3122 22918 0.4790 +3122 23547 0.4960 +3122 26052 0.5080 +3122 26191 0.7690 +3122 27040 0.5220 +3122 29126 0.7150 +3122 30835 0.4090 +3122 50856 0.4790 +3122 51128 0.4990 +3122 51338 0.6130 +3122 51348 0.4180 +3122 55016 0.8300 +3122 55423 0.4510 +3122 55620 0.4220 +3122 55737 0.4200 +3122 55824 0.5330 +3122 56244 0.7740 +3122 64098 0.4250 +3122 64231 0.5080 +3122 79050 0.7970 +3122 80380 0.6770 +3122 84824 0.4060 +3122 84868 0.5250 +3122 92799 0.5310 +3122 117289 0.4430 +3122 128312 0.9000 +3122 130340 0.4990 +3122 131450 0.4070 +3122 140885 0.4410 +3122 170685 0.4260 +3122 201633 0.4510 +3122 220972 0.5590 +3122 221613 0.4290 +3122 253935 0.4210 +3122 255626 0.9000 +3122 283420 0.4110 +3122 390714 0.4570 +3122 723961 0.5350 +3122 102723407 0.9500 +3123 3127 0.9550 +3123 3133 0.9390 +3123 3134 0.9400 +3123 3135 0.7100 +3123 3140 0.6060 +3123 3304 0.4080 +3123 3305 0.5790 +3123 3309 0.4670 +3123 3326 0.5880 +3123 3394 0.5070 +3123 3428 0.4030 +3123 3434 0.5160 +3123 3437 0.5330 +3123 3458 0.8300 +3123 3553 0.4970 +3123 3558 0.5460 +3123 3559 0.5400 +3123 3560 0.4200 +3123 3565 0.5090 +3123 3569 0.6750 +3123 3575 0.4920 +3123 3586 0.5490 +3123 3605 0.5070 +3123 3630 0.8170 +3123 3635 0.4370 +3123 3663 0.7730 +3123 3669 0.4730 +3123 3684 0.6220 +3123 3689 0.6300 +3123 3702 0.5750 +3123 3792 0.4710 +3123 3796 0.4380 +3123 3802 0.5800 +3123 3804 0.5180 +3123 3902 0.7500 +3123 3937 0.7760 +3123 3991 0.4030 +3123 4049 0.6040 +3123 4057 0.4870 +3123 4155 0.8510 +3123 4261 0.6750 +3123 4277 0.6210 +3123 4283 0.6300 +3123 4313 0.4230 +3123 4314 0.4800 +3123 4340 0.4870 +3123 4795 0.6110 +3123 4818 0.4680 +3123 4855 0.4580 +3123 4939 0.5430 +3123 4940 0.4500 +3123 4969 0.6120 +3123 5133 0.7690 +3123 5196 0.4360 +3123 5304 0.4390 +3123 5319 0.4070 +3123 5335 0.4180 +3123 5476 0.4090 +3123 5551 0.6870 +3123 5588 0.5380 +3123 5641 0.5110 +3123 5657 0.6860 +3123 5664 0.4460 +3123 5696 0.4320 +3123 5698 0.4420 +3123 5777 0.6250 +3123 5781 0.7160 +3123 5788 0.7390 +3123 5795 0.4190 +3123 5798 0.5510 +3123 5966 0.4240 +3123 6156 0.4560 +3123 6348 0.5850 +3123 6351 0.6700 +3123 6366 0.4830 +3123 6369 0.4140 +3123 6396 0.5020 +3123 6456 0.4990 +3123 6480 0.4050 +3123 6648 0.4790 +3123 6653 0.4380 +3123 6688 0.4290 +3123 6737 0.5580 +3123 6772 0.6810 +3123 6775 0.6160 +3123 6907 0.4930 +3123 7037 0.5670 +3123 7097 0.6430 +3123 7099 0.4490 +3123 7124 0.8420 +3123 7128 0.6640 +3123 7148 0.4130 +3123 7162 0.9020 +3123 7167 0.9040 +3123 7185 0.5440 +3123 7305 0.4950 +3123 7431 0.9320 +3123 7490 0.5190 +3123 7535 0.6600 +3123 7813 0.6940 +3123 8301 0.6190 +3123 8340 0.9010 +3123 8483 0.8350 +3123 8635 0.4320 +3123 8638 0.4870 +3123 8718 0.8540 +3123 8722 0.4310 +3123 8795 0.4070 +3123 8797 0.8680 +3123 8905 0.4990 +3123 8907 0.5050 +3123 9034 0.4260 +3123 9332 0.4510 +3123 9402 0.5680 +3123 9447 0.4280 +3123 9612 0.5160 +3123 9632 0.4990 +3123 9871 0.4990 +3123 10053 0.5050 +3123 10294 0.4910 +3123 10318 0.5450 +3123 10347 0.5070 +3123 10384 0.4520 +3123 10385 0.5040 +3123 10427 0.5390 +3123 10484 0.5040 +3123 10561 0.5560 +3123 10563 0.5400 +3123 10663 0.5500 +3123 10665 0.5050 +3123 10802 0.5390 +3123 10859 0.5770 +3123 10917 0.4230 +3123 10979 0.4180 +3123 11118 0.4740 +3123 11119 0.4170 +3123 11120 0.4090 +3123 11240 0.4480 +3123 22862 0.4790 +3123 22872 0.5120 +3123 23274 0.6820 +3123 23569 0.6100 +3123 23607 0.4350 +3123 26052 0.5100 +3123 26191 0.9680 +3123 27040 0.5020 +3123 27242 0.4470 +3123 27348 0.5710 +3123 29126 0.6820 +3123 30816 0.4840 +3123 50863 0.4250 +3123 50943 0.4770 +3123 51128 0.5200 +3123 51131 0.5330 +3123 51163 0.4190 +3123 51314 0.5140 +3123 51338 0.4410 +3123 51592 0.4720 +3123 51726 0.4050 +3123 54209 0.4200 +3123 54928 0.4220 +3123 55063 0.5290 +3123 55532 0.4550 +3123 55717 0.6940 +3123 55824 0.5250 +3123 56244 0.8450 +3123 57091 0.5080 +3123 57705 0.4480 +3123 64127 0.6030 +3123 64135 0.4370 +3123 64231 0.5460 +3123 79068 0.4950 +3123 79841 0.6230 +3123 79890 0.5000 +3123 79908 0.4470 +3123 80380 0.6290 +3123 84868 0.5290 +3123 91937 0.4010 +3123 114625 0.4100 +3123 115352 0.5020 +3123 117289 0.4640 +3123 123041 0.4740 +3123 128312 0.9010 +3123 129831 0.4430 +3123 130340 0.5090 +3123 149233 0.4170 +3123 169026 0.4550 +3123 255626 0.9010 +3123 345611 0.4420 +3123 402665 0.4780 +3123 405754 0.4550 +3123 723961 0.4420 +3123 727897 0.4690 +3123 102723407 0.4700 +3127 3133 0.6200 +3127 3134 0.6350 +3127 3135 0.6250 +3127 3140 0.5430 +3127 3630 0.5610 +3127 3635 0.5940 +3127 3702 0.5380 +3127 3815 0.4200 +3127 3902 0.6300 +3127 3937 0.7380 +3127 4137 0.4030 +3127 4155 0.5200 +3127 4208 0.5510 +3127 4234 0.4120 +3127 4283 0.4790 +3127 4340 0.4940 +3127 5133 0.6190 +3127 5335 0.4090 +3127 5476 0.4090 +3127 5588 0.4370 +3127 5641 0.4500 +3127 5777 0.5760 +3127 5781 0.7040 +3127 5788 0.7140 +3127 5795 0.4130 +3127 6156 0.4570 +3127 6348 0.4660 +3127 6351 0.5530 +3127 6396 0.5020 +3127 6456 0.5190 +3127 6653 0.6210 +3127 6772 0.6700 +3127 7431 0.8030 +3127 7535 0.5940 +3127 7726 0.4510 +3127 8227 0.5470 +3127 8301 0.7140 +3127 8722 0.4330 +3127 8795 0.4650 +3127 8905 0.4990 +3127 8907 0.5050 +3127 9402 0.6570 +3127 9632 0.4990 +3127 9871 0.4990 +3127 10053 0.5050 +3127 10107 0.4960 +3127 10347 0.6790 +3127 10427 0.5390 +3127 10484 0.5120 +3127 10658 0.5940 +3127 10802 0.5390 +3127 10979 0.6090 +3127 22872 0.5120 +3127 23586 0.4140 +3127 23607 0.5830 +3127 23646 0.4380 +3127 26052 0.5070 +3127 26191 0.5930 +3127 27040 0.5020 +3127 29126 0.6060 +3127 51128 0.5200 +3127 51314 0.6850 +3127 51338 0.5020 +3127 54209 0.5530 +3127 55063 0.7090 +3127 55279 0.4590 +3127 55737 0.5000 +3127 55824 0.5150 +3127 56244 0.7150 +3127 57091 0.6890 +3127 64231 0.6010 +3127 79890 0.6430 +3127 80380 0.5480 +3127 83661 0.4570 +3127 84660 0.4470 +3127 84968 0.4870 +3127 89870 0.4350 +3127 123041 0.6530 +3127 130340 0.4990 +3127 245802 0.4300 +3127 390714 0.4190 +3127 643680 0.5300 +3127 723961 0.5130 +3127 102723407 0.9370 +3131 3174 0.4470 +3131 3562 0.5210 +3131 3725 0.4090 +3131 4233 0.4460 +3131 4286 0.4360 +3131 4513 0.5920 +3131 4514 0.4750 +3131 4783 0.7670 +3131 4862 0.5020 +3131 5087 0.4990 +3131 5546 0.6510 +3131 6929 0.7480 +3131 7030 0.5660 +3131 7089 0.7660 +3131 7252 0.4960 +3131 7381 0.4840 +3131 7385 0.4310 +3131 7942 0.5720 +3131 8863 0.5780 +3131 8864 0.6000 +3131 9377 0.6140 +3131 9572 0.5810 +3131 9575 0.5300 +3131 9874 0.4370 +3131 9975 0.4250 +3131 10538 0.5830 +3131 26224 0.4280 +3131 27089 0.4340 +3131 27286 0.7600 +3131 29796 0.4650 +3131 29844 0.6970 +3131 55509 0.4280 +3131 56938 0.5040 +3131 79002 0.4420 +3131 79816 0.7880 +3131 83439 0.4480 +3131 84701 0.4970 +3131 84886 0.5320 +3131 125965 0.4420 +3131 283459 0.4650 +3131 388753 0.4440 +3131 653145 0.7150 +3133 3134 0.9970 +3133 3135 0.9800 +3133 3140 0.8370 +3133 3309 0.5090 +3133 3329 0.5870 +3133 3383 0.4170 +3133 3439 0.4130 +3133 3458 0.6500 +3133 3553 0.4130 +3133 3558 0.5710 +3133 3560 0.4790 +3133 3569 0.4240 +3133 3586 0.5080 +3133 3600 0.6220 +3133 3601 0.4110 +3133 3606 0.4500 +3133 3620 0.5320 +3133 3627 0.4260 +3133 3655 0.4020 +3133 3659 0.5490 +3133 3802 0.9670 +3133 3804 0.9190 +3133 3805 0.9360 +3133 3811 0.9280 +3133 3812 0.8320 +3133 3820 0.8890 +3133 3821 0.9990 +3133 3822 0.9990 +3133 3823 0.9860 +3133 3824 0.9990 +3133 3902 0.5470 +3133 3916 0.5270 +3133 3937 0.6020 +3133 3965 0.4750 +3133 4012 0.5010 +3133 4261 0.5090 +3133 4283 0.5590 +3133 4508 0.4120 +3133 4684 0.6250 +3133 4818 0.5800 +3133 5133 0.6940 +3133 5290 0.5350 +3133 5291 0.4990 +3133 5295 0.5210 +3133 5296 0.5030 +3133 5335 0.5250 +3133 5336 0.5600 +3133 5514 0.6760 +3133 5551 0.8370 +3133 5696 0.6240 +3133 5698 0.6330 +3133 5699 0.5250 +3133 5788 0.4640 +3133 5817 0.6200 +3133 5819 0.7480 +3133 5879 0.5330 +3133 5993 0.4060 +3133 6118 0.4890 +3133 6125 0.4300 +3133 6351 0.4210 +3133 6396 0.5050 +3133 6402 0.4240 +3133 6464 0.5390 +3133 6654 0.5200 +3133 6772 0.7580 +3133 6773 0.6220 +3133 6850 0.6720 +3133 6890 0.7640 +3133 6891 0.7260 +3133 6892 0.9600 +3133 7124 0.5320 +3133 7305 0.8810 +3133 7410 0.5260 +3133 8302 0.9210 +3133 8519 0.5910 +3133 8673 0.5320 +3133 8743 0.6120 +3133 8764 0.4060 +3133 8773 0.5040 +3133 8905 0.6590 +3133 8906 0.6570 +3133 8907 0.6520 +3133 9341 0.5270 +3133 9402 0.5330 +3133 9427 0.4280 +3133 9436 0.7920 +3133 9437 0.6960 +3133 9632 0.5070 +3133 9871 0.5010 +3133 9976 0.7280 +3133 10053 0.6500 +3133 10219 0.6270 +3133 10225 0.5200 +3133 10288 0.8840 +3133 10379 0.7010 +3133 10384 0.4450 +3133 10427 0.5030 +3133 10451 0.5340 +3133 10484 0.4990 +3133 10544 0.4120 +3133 10578 0.5160 +3133 10663 0.6370 +3133 10666 0.7910 +3133 10802 0.4990 +3133 10859 0.9970 +3133 10870 0.5760 +3133 10871 0.5400 +3133 10990 0.6400 +3133 11006 0.8070 +3133 11024 0.6400 +3133 11025 0.7760 +3133 11027 0.6280 +3133 11074 0.5090 +3133 11118 0.4230 +3133 11119 0.4540 +3133 11126 0.7760 +3133 11314 0.6570 +3133 22872 0.5110 +3133 22914 0.9970 +3133 22918 0.4350 +3133 23001 0.5440 +3133 23111 0.4060 +3133 23547 0.6560 +3133 25939 0.5200 +3133 27036 0.7270 +3133 27040 0.5440 +3133 27087 0.6820 +3133 29121 0.4110 +3133 29126 0.6110 +3133 29935 0.4880 +3133 50943 0.4740 +3133 51128 0.5000 +3133 51182 0.4230 +3133 51348 0.5330 +3133 51744 0.4850 +3133 51752 0.4340 +3133 54209 0.4130 +3133 55558 0.4200 +3133 79168 0.8140 +3133 79991 0.4300 +3133 80328 0.4230 +3133 80380 0.4830 +3133 80381 0.4460 +3133 84166 0.4640 +3133 84662 0.4350 +3133 84868 0.5460 +3133 85451 0.6560 +3133 89845 0.4540 +3133 113246 0.4170 +3133 114836 0.4950 +3133 115653 0.7720 +3133 130340 0.6500 +3133 135250 0.4290 +3133 146722 0.6180 +3133 163786 0.4130 +3133 201633 0.7420 +3133 203068 0.4540 +3133 259197 0.8740 +3133 353091 0.4730 +3133 353514 0.5810 +3133 374383 0.5500 +3133 390714 0.4270 +3133 102723407 0.9510 +3134 3135 0.9780 +3134 3140 0.6170 +3134 3309 0.5190 +3134 3458 0.4060 +3134 3659 0.5230 +3134 3660 0.4580 +3134 3802 0.8740 +3134 3804 0.8470 +3134 3805 0.5650 +3134 3811 0.9640 +3134 3812 0.9930 +3134 3821 0.9650 +3134 3822 0.7850 +3134 3824 0.8960 +3134 4012 0.5200 +3134 4340 0.4590 +3134 4700 0.5090 +3134 4991 0.6680 +3134 5551 0.4270 +3134 5688 0.4200 +3134 5696 0.6950 +3134 5698 0.7230 +3134 5699 0.4380 +3134 5721 0.4520 +3134 5920 0.5320 +3134 6118 0.5740 +3134 6396 0.5020 +3134 6772 0.7460 +3134 6773 0.6000 +3134 6890 0.8320 +3134 6891 0.6660 +3134 6892 0.9590 +3134 7305 0.4040 +3134 7932 0.6940 +3134 8302 0.6780 +3134 8673 0.5290 +3134 8718 0.5560 +3134 8773 0.5120 +3134 8905 0.6500 +3134 8906 0.6520 +3134 8907 0.6500 +3134 9341 0.5070 +3134 9632 0.5010 +3134 9636 0.4170 +3134 9871 0.5070 +3134 10053 0.6500 +3134 10288 0.9940 +3134 10379 0.7090 +3134 10384 0.4280 +3134 10427 0.4990 +3134 10484 0.5090 +3134 10537 0.7670 +3134 10802 0.5100 +3134 10859 0.9990 +3134 10990 0.6540 +3134 11006 0.7950 +3134 11024 0.7050 +3134 11025 0.7960 +3134 11027 0.6140 +3134 11074 0.7470 +3134 11118 0.4110 +3134 11119 0.5040 +3134 11126 0.5990 +3134 22872 0.5450 +3134 23547 0.6380 +3134 23650 0.4010 +3134 25939 0.5430 +3134 29935 0.5740 +3134 30834 0.5540 +3134 51128 0.4990 +3134 54020 0.4720 +3134 54535 0.4610 +3134 55236 0.5780 +3134 63892 0.6020 +3134 79168 0.7670 +3134 79901 0.4120 +3134 80352 0.7960 +3134 84166 0.5170 +3134 114836 0.4770 +3134 115653 0.7860 +3134 130340 0.6500 +3134 353514 0.5920 +3134 102723407 0.9530 +3135 3140 0.6300 +3135 3309 0.5190 +3135 3458 0.6210 +3135 3553 0.4430 +3135 3558 0.4800 +3135 3565 0.4480 +3135 3569 0.5080 +3135 3576 0.4330 +3135 3586 0.6330 +3135 3600 0.4280 +3135 3620 0.7740 +3135 3684 0.4940 +3135 3687 0.5510 +3135 3790 0.4220 +3135 3802 0.9180 +3135 3804 0.9290 +3135 3805 0.9980 +3135 3811 0.9630 +3135 3812 0.9570 +3135 3821 0.9980 +3135 3822 0.9480 +3135 3824 0.9980 +3135 3855 0.5170 +3135 3902 0.4500 +3135 3965 0.4120 +3135 4012 0.5270 +3135 4246 0.4230 +3135 4261 0.4300 +3135 4321 0.4480 +3135 4684 0.7080 +3135 4907 0.4500 +3135 5133 0.4060 +3135 5551 0.6120 +3135 5696 0.6710 +3135 5698 0.5020 +3135 5788 0.5890 +3135 6118 0.5740 +3135 6396 0.5030 +3135 6769 0.9920 +3135 6772 0.6790 +3135 6773 0.7280 +3135 6890 0.7300 +3135 6891 0.6690 +3135 6892 0.9660 +3135 7040 0.4210 +3135 7070 0.4160 +3135 7124 0.5280 +3135 7941 0.4350 +3135 8302 0.7030 +3135 8673 0.5160 +3135 8743 0.5300 +3135 8764 0.4540 +3135 8773 0.5210 +3135 8905 0.6500 +3135 8906 0.6500 +3135 8907 0.6500 +3135 9308 0.4150 +3135 9341 0.5060 +3135 9436 0.4470 +3135 9437 0.4360 +3135 9632 0.4990 +3135 9871 0.5170 +3135 10053 0.6500 +3135 10148 0.4180 +3135 10236 0.4770 +3135 10288 0.9990 +3135 10379 0.6020 +3135 10427 0.5000 +3135 10484 0.5090 +3135 10578 0.5500 +3135 10666 0.4230 +3135 10802 0.5090 +3135 10859 0.9990 +3135 10871 0.6210 +3135 10990 0.6750 +3135 11006 0.9340 +3135 11024 0.6970 +3135 11025 0.6930 +3135 11027 0.6700 +3135 11126 0.9920 +3135 11251 0.4070 +3135 22872 0.5010 +3135 22914 0.7330 +3135 23452 0.4170 +3135 23547 0.6320 +3135 25939 0.5240 +3135 29126 0.7370 +3135 29935 0.5740 +3135 50943 0.5510 +3135 51128 0.4990 +3135 51131 0.6180 +3135 51752 0.4820 +3135 63892 0.6020 +3135 79168 0.8380 +3135 80263 0.4400 +3135 80329 0.4310 +3135 80332 0.5800 +3135 80380 0.4180 +3135 80381 0.4180 +3135 84868 0.4270 +3135 85451 0.5820 +3135 113246 0.5950 +3135 115653 0.9490 +3135 130340 0.6500 +3135 169355 0.5710 +3135 259197 0.4980 +3135 353514 0.5880 +3135 374383 0.5580 +3135 390714 0.5030 +3135 102723407 0.9630 +3140 6118 0.4840 +3140 8793 0.4370 +3140 9204 0.4240 +3140 29935 0.4840 +3140 51135 0.4780 +3140 55080 0.9090 +3140 55754 0.5780 +3140 79991 0.4450 +3140 163786 0.4130 +3141 3155 0.4240 +3141 3336 0.4390 +3141 3735 0.4070 +3141 3763 0.5200 +3141 4001 0.4410 +3141 4141 0.5020 +3141 4143 0.5030 +3141 4144 0.4400 +3141 4204 0.5470 +3141 4234 0.4370 +3141 4337 0.5210 +3141 4538 0.5700 +3141 4706 0.4020 +3141 5091 0.9930 +3141 5095 0.9820 +3141 5096 0.9090 +3141 5121 0.4330 +3141 5429 0.4540 +3141 6734 0.4070 +3141 7407 0.5480 +3141 7544 0.4470 +3141 8565 0.5310 +3141 8802 0.4010 +3141 8884 0.6350 +3141 9399 0.5290 +3141 9487 0.4360 +3141 10423 0.4270 +3141 10741 0.4710 +3141 11019 0.4510 +3141 23233 0.4010 +3141 23475 0.4220 +3141 23479 0.4360 +3141 23583 0.4650 +3141 26259 0.4390 +3141 27349 0.5090 +3141 51095 0.6050 +3141 51601 0.4050 +3141 51805 0.4120 +3141 54675 0.4170 +3141 54680 0.4170 +3141 54995 0.5610 +3141 55191 0.4350 +3141 55312 0.4510 +3141 56922 0.9840 +3141 57107 0.5030 +3141 58510 0.4420 +3141 60490 0.6880 +3141 60558 0.4370 +3141 64087 0.9100 +3141 79717 0.6910 +3141 79728 0.4160 +3141 79731 0.4140 +3141 79813 0.6790 +3141 79905 0.5180 +3141 84263 0.5880 +3141 85019 0.4020 +3141 90639 0.6910 +3141 113179 0.4560 +3141 124454 0.4750 +3141 128637 0.4930 +3141 134637 0.4650 +3141 200895 0.4120 +3141 257062 0.4800 +3141 283578 0.4520 +3141 284680 0.6340 +3141 286148 0.4370 +3141 389434 0.4080 +3141 644096 0.4050 +3141 728621 0.6910 +3142 3595 0.6380 +3142 4092 0.4040 +3142 6775 0.5910 +3142 7042 0.6020 +3142 7088 0.6440 +3142 7089 0.7440 +3142 7090 0.6630 +3142 7091 0.7280 +3142 7399 0.4320 +3142 7707 0.5050 +3142 8320 0.5690 +3142 10320 0.4860 +3142 22929 0.4200 +3142 30009 0.8940 +3142 56979 0.4330 +3142 84662 0.4550 +3142 157848 0.5170 +3142 167465 0.4050 +3145 3162 0.4970 +3145 3163 0.4680 +3145 3251 0.8150 +3145 3576 0.4140 +3145 3735 0.4990 +3145 4097 0.5640 +3145 4778 0.7130 +3145 4779 0.5430 +3145 4780 0.4700 +3145 4942 0.4090 +3145 5036 0.4850 +3145 5230 0.5690 +3145 5284 0.4080 +3145 5478 0.5590 +3145 5479 0.5600 +3145 5498 0.9690 +3145 5832 0.4030 +3145 6059 0.4340 +3145 6124 0.6370 +3145 6161 0.4080 +3145 6175 0.5800 +3145 6222 0.6280 +3145 6241 0.4090 +3145 6389 0.8220 +3145 6470 0.4210 +3145 6472 0.4750 +3145 6713 0.4050 +3145 6729 0.4060 +3145 6734 0.5490 +3145 6908 0.7930 +3145 6999 0.6190 +3145 7001 0.4680 +3145 7037 0.5110 +3145 7070 0.6080 +3145 7153 0.4680 +3145 7155 0.5070 +3145 7166 0.4260 +3145 7167 0.4090 +3145 7316 0.4480 +3145 7372 0.4170 +3145 7389 0.9980 +3145 7390 0.9990 +3145 7534 0.7520 +3145 7975 0.5400 +3145 8565 0.4320 +3145 8818 0.4630 +3145 8892 0.4930 +3145 9453 0.4380 +3145 9563 0.4990 +3145 9698 0.4560 +3145 9801 0.4360 +3145 9853 0.4220 +3145 9973 0.4150 +3145 10048 0.4020 +3145 10058 0.4420 +3145 10107 0.5100 +3145 10526 0.5820 +3145 10535 0.5130 +3145 10536 0.4310 +3145 10661 0.6240 +3145 11315 0.4470 +3145 22934 0.4960 +3145 23039 0.5030 +3145 23475 0.4430 +3145 23521 0.6980 +3145 23590 0.4380 +3145 23623 0.4330 +3145 23644 0.4780 +3145 23764 0.4970 +3145 25796 0.5730 +3145 27235 0.4440 +3145 27247 0.8100 +3145 29104 0.5750 +3145 29968 0.4090 +3145 51067 0.4040 +3145 51218 0.4080 +3145 51327 0.4420 +3145 51621 0.5580 +3145 51629 0.4320 +3145 51725 0.4220 +3145 51805 0.4620 +3145 54205 0.4210 +3145 54977 0.4550 +3145 55143 0.4490 +3145 55191 0.4080 +3145 55312 0.4670 +3145 55644 0.4520 +3145 55676 0.4630 +3145 56006 0.4220 +3145 56052 0.4490 +3145 56952 0.4140 +3145 57107 0.4510 +3145 57496 0.4030 +3145 64172 0.4450 +3145 64847 0.8060 +3145 80153 0.4890 +3145 80308 0.4200 +3145 81689 0.4840 +3145 85476 0.5480 +3145 121278 0.4960 +3145 122961 0.4060 +3145 124454 0.4690 +3145 129607 0.5130 +3145 167227 0.4420 +3145 200895 0.6030 +3145 284131 0.7870 +3145 284439 0.4180 +3145 387103 0.4420 +3145 728378 0.6730 +3146 3148 0.9810 +3146 3162 0.5700 +3146 3178 0.4330 +3146 3181 0.8100 +3146 3183 0.4710 +3146 3190 0.4870 +3146 3192 0.4990 +3146 3240 0.7600 +3146 3304 0.4160 +3146 3308 0.6190 +3146 3309 0.4920 +3146 3312 0.7240 +3146 3320 0.7030 +3146 3326 0.6890 +3146 3329 0.4660 +3146 3383 0.5820 +3146 3439 0.4790 +3146 3456 0.5470 +3146 3458 0.7920 +3146 3551 0.4050 +3146 3552 0.8980 +3146 3553 0.9700 +3146 3554 0.6880 +3146 3558 0.5110 +3146 3565 0.5460 +3146 3569 0.7920 +3146 3576 0.6100 +3146 3579 0.4160 +3146 3586 0.7050 +3146 3596 0.4750 +3146 3605 0.5770 +3146 3606 0.6700 +3146 3620 0.4320 +3146 3627 0.5170 +3146 3630 0.4650 +3146 3654 0.4570 +3146 3661 0.8410 +3146 3684 0.6900 +3146 3685 0.7450 +3146 3687 0.4250 +3146 3689 0.5840 +3146 3690 0.7590 +3146 3717 0.4040 +3146 3725 0.5550 +3146 3855 0.6570 +3146 3929 0.5080 +3146 3965 0.5070 +3146 4035 0.7980 +3146 4064 0.4780 +3146 4131 0.4050 +3146 4153 0.4410 +3146 4204 0.4060 +3146 4210 0.5800 +3146 4282 0.4870 +3146 4283 0.4040 +3146 4313 0.4290 +3146 4318 0.5930 +3146 4353 0.7740 +3146 4436 0.7050 +3146 4481 0.4880 +3146 4502 0.4720 +3146 4609 0.4330 +3146 4673 0.4140 +3146 4780 0.5030 +3146 4790 0.9230 +3146 4791 0.6730 +3146 4792 0.4830 +3146 4869 0.4950 +3146 5027 0.6610 +3146 5029 0.5880 +3146 5133 0.6540 +3146 5196 0.7790 +3146 5241 0.5990 +3146 5289 0.5510 +3146 5327 0.5490 +3146 5340 0.9210 +3146 5460 0.5790 +3146 5468 0.4320 +3146 5478 0.4530 +3146 5551 0.4440 +3146 5594 0.7920 +3146 5595 0.7390 +3146 5688 0.4040 +3146 5743 0.6520 +3146 5757 0.7010 +3146 5788 0.4450 +3146 5803 0.8280 +3146 5879 0.4070 +3146 5887 0.4270 +3146 5896 0.8870 +3146 5970 0.7200 +3146 6129 0.4230 +3146 6159 0.4820 +3146 6233 0.4110 +3146 6271 0.6440 +3146 6279 0.6460 +3146 6280 0.7590 +3146 6283 0.8940 +3146 6285 0.8300 +3146 6288 0.7000 +3146 6289 0.4990 +3146 6291 0.4570 +3146 6347 0.6410 +3146 6348 0.4560 +3146 6356 0.5890 +3146 6376 0.4280 +3146 6382 0.9210 +3146 6387 0.9840 +3146 6401 0.4720 +3146 6403 0.7880 +3146 6428 0.6150 +3146 6590 0.4570 +3146 6604 0.4820 +3146 6605 0.6950 +3146 6613 0.4960 +3146 6672 0.6910 +3146 6688 0.4790 +3146 6714 0.4010 +3146 6749 0.5590 +3146 6772 0.6580 +3146 6774 0.5800 +3146 6908 0.6250 +3146 6927 0.6380 +3146 7019 0.4150 +3146 7040 0.5060 +3146 7056 0.7490 +3146 7096 0.7410 +3146 7097 0.9980 +3146 7098 0.9520 +3146 7099 0.9990 +3146 7100 0.8960 +3146 7124 0.7530 +3146 7132 0.6390 +3146 7157 0.9970 +3146 7184 0.4190 +3146 7189 0.4500 +3146 7295 0.6030 +3146 7341 0.4780 +3146 7412 0.7100 +3146 7415 0.4410 +3146 7450 0.6340 +3146 7498 0.5470 +3146 7837 0.5430 +3146 7852 0.9320 +3146 7913 0.4290 +3146 8290 0.4430 +3146 8350 0.5540 +3146 8356 0.5110 +3146 8361 0.4820 +3146 8678 0.9990 +3146 8737 0.5260 +3146 8993 0.5130 +3146 9332 0.4020 +3146 9447 0.5220 +3146 9474 0.4980 +3146 9759 0.6250 +3146 10533 0.4030 +3146 11035 0.5320 +3146 11198 0.4880 +3146 11335 0.5120 +3146 11337 0.4800 +3146 22861 0.4480 +3146 23411 0.6600 +3146 23569 0.4180 +3146 23586 0.4560 +3146 23643 0.9740 +3146 24145 0.4590 +3146 27069 0.4320 +3146 29108 0.4200 +3146 29110 0.5950 +3146 29126 0.5490 +3146 50508 0.4240 +3146 50943 0.4710 +3146 51135 0.4340 +3146 51266 0.5460 +3146 51284 0.8970 +3146 51311 0.4510 +3146 51773 0.4910 +3146 54106 0.9970 +3146 54205 0.4980 +3146 54210 0.9590 +3146 58484 0.4350 +3146 64805 0.5500 +3146 65018 0.5760 +3146 79792 0.9020 +3146 81631 0.4840 +3146 84868 0.9910 +3146 89790 0.9650 +3146 90865 0.6900 +3146 94239 0.4390 +3146 114548 0.6090 +3146 114609 0.6350 +3146 115004 0.4510 +3146 115426 0.4700 +3146 126299 0.4540 +3146 137902 0.5430 +3146 140690 0.4760 +3146 146713 0.4460 +3146 168400 0.4960 +3146 197259 0.5620 +3146 284194 0.6580 +3146 440093 0.4610 +3146 440686 0.4420 +3146 441925 0.9580 +3146 653604 0.4570 +3146 654346 0.6570 +3146 100133941 0.9910 +3146 100506658 0.4020 +3146 100528017 0.4650 +3148 3151 0.5450 +3148 3156 0.4490 +3148 3159 0.5850 +3148 3661 0.5020 +3148 4176 0.4100 +3148 4691 0.8380 +3148 4722 0.5960 +3148 4830 0.5310 +3148 5316 0.7090 +3148 5551 0.4160 +3148 5896 0.5620 +3148 6234 0.5300 +3148 6418 0.7160 +3148 6605 0.4170 +3148 6672 0.6130 +3148 6749 0.6220 +3148 6917 0.4890 +3148 7153 0.5120 +3148 7307 0.5160 +3148 7528 0.5420 +3148 7913 0.5560 +3148 8125 0.7650 +3148 8361 0.4710 +3148 8819 0.4470 +3148 8971 0.4040 +3148 9133 0.4690 +3148 10403 0.4300 +3148 10935 0.4320 +3148 11198 0.6400 +3148 23414 0.4520 +3148 29997 0.4940 +3148 51284 0.4320 +3148 51441 0.5410 +3148 57592 0.5760 +3148 79682 0.4010 +3148 79759 0.4850 +3148 84299 0.6220 +3148 84447 0.6820 +3148 94239 0.4750 +3148 126299 0.6160 +3148 150684 0.4510 +3149 3661 0.6110 +3149 4790 0.4660 +3149 6605 0.4370 +3149 6749 0.4370 +3149 6917 0.5260 +3149 7098 0.5740 +3149 7153 0.4850 +3149 8350 0.4570 +3149 9133 0.4080 +3149 11065 0.4250 +3149 11198 0.5180 +3149 23468 0.4140 +3149 24137 0.4220 +3149 51284 0.5690 +3149 54106 0.5550 +3150 3151 0.9940 +3150 3396 0.6440 +3150 3430 0.8170 +3150 3516 0.4180 +3150 3692 0.8000 +3150 3703 0.5040 +3150 3720 0.4080 +3150 3735 0.5540 +3150 3736 0.4780 +3150 3737 0.4780 +3150 3738 0.4780 +3150 3739 0.4780 +3150 3741 0.4780 +3150 3742 0.4780 +3150 3743 0.4780 +3150 3744 0.4780 +3150 3745 0.4780 +3150 3746 0.4780 +3150 3747 0.4780 +3150 3748 0.4780 +3150 3749 0.4780 +3150 3750 0.4780 +3150 3751 0.4780 +3150 3752 0.4780 +3150 3754 0.4780 +3150 3755 0.4780 +3150 3784 0.4780 +3150 3785 0.4780 +3150 3786 0.4780 +3150 3787 0.4780 +3150 3788 0.4780 +3150 3790 0.4780 +3150 3921 0.7540 +3150 3978 0.5140 +3150 3980 0.4650 +3150 4193 0.4400 +3150 4528 0.7180 +3150 4706 0.6340 +3150 4736 0.8280 +3150 4784 0.5020 +3150 4809 0.6310 +3150 4968 0.4660 +3150 5036 0.4860 +3150 5037 0.5500 +3150 5230 0.4990 +3150 5313 0.5540 +3150 5315 0.5620 +3150 5431 0.7860 +3150 5432 0.7970 +3150 5435 0.6360 +3150 5469 0.8360 +3150 5859 0.6050 +3150 5887 0.5750 +3150 6122 0.8420 +3150 6123 0.8310 +3150 6124 0.8920 +3150 6125 0.9420 +3150 6128 0.9370 +3150 6129 0.7470 +3150 6130 0.7620 +3150 6132 0.9320 +3150 6133 0.8430 +3150 6135 0.9400 +3150 6137 0.8880 +3150 6138 0.9290 +3150 6139 0.8160 +3150 6141 0.8990 +3150 6142 0.9200 +3150 6143 0.9240 +3150 6144 0.9320 +3150 6146 0.7650 +3150 6147 0.9370 +3150 6150 0.5440 +3150 6152 0.9240 +3150 6154 0.8250 +3150 6155 0.8200 +3150 6156 0.9090 +3150 6157 0.9100 +3150 6158 0.8990 +3150 6159 0.8920 +3150 6160 0.9260 +3150 6161 0.5870 +3150 6164 0.9330 +3150 6165 0.9250 +3150 6166 0.7320 +3150 6167 0.7760 +3150 6168 0.9250 +3150 6169 0.9080 +3150 6170 0.7030 +3150 6173 0.7130 +3150 6175 0.9250 +3150 6176 0.8690 +3150 6181 0.8270 +3150 6182 0.9080 +3150 6183 0.8310 +3150 6187 0.9160 +3150 6188 0.9460 +3150 6189 0.9230 +3150 6191 0.7830 +3150 6192 0.7590 +3150 6193 0.8010 +3150 6194 0.9310 +3150 6197 0.4120 +3150 6201 0.9070 +3150 6202 0.9150 +3150 6203 0.9030 +3150 6204 0.7320 +3150 6205 0.9400 +3150 6206 0.7430 +3150 6207 0.8210 +3150 6208 0.8240 +3150 6209 0.9410 +3150 6210 0.6260 +3150 6217 0.8910 +3150 6218 0.9310 +3150 6222 0.9410 +3150 6223 0.9340 +3150 6224 0.9110 +3150 6227 0.9100 +3150 6228 0.9070 +3150 6229 0.9370 +3150 6230 0.9240 +3150 6231 0.9250 +3150 6232 0.7370 +3150 6233 0.8670 +3150 6234 0.9280 +3150 6235 0.8070 +3150 6450 0.8780 +3150 6451 0.8480 +3150 6536 0.4240 +3150 6613 0.4450 +3150 6647 0.4530 +3150 6648 0.4940 +3150 6726 0.4700 +3150 6729 0.7070 +3150 6734 0.6450 +3150 6736 0.4190 +3150 6742 0.5730 +3150 6894 0.4340 +3150 6897 0.4300 +3150 6917 0.9750 +3150 6919 0.4510 +3150 6920 0.4510 +3150 7099 0.5230 +3150 7157 0.5290 +3150 7284 0.9120 +3150 7311 0.9040 +3150 7403 0.4220 +3150 7404 0.4180 +3150 7407 0.4200 +3150 7485 0.8130 +3150 7507 0.9070 +3150 7515 0.4970 +3150 7818 0.6480 +3150 7874 0.5280 +3150 7919 0.4790 +3150 8178 0.4110 +3150 8225 0.6930 +3150 8242 0.4020 +3150 8290 0.4520 +3150 8337 0.6110 +3150 8338 0.6060 +3150 8349 0.5890 +3150 8356 0.4680 +3150 8361 0.4470 +3150 8369 0.4890 +3150 8451 0.6970 +3150 8565 0.4040 +3150 8624 0.7310 +3150 8833 0.5680 +3150 9045 0.8390 +3150 9069 0.4480 +3150 9086 0.6120 +3150 9132 0.4780 +3150 9141 0.6350 +3150 9147 0.4370 +3150 9312 0.4780 +3150 9318 0.5220 +3150 9343 0.6990 +3150 9349 0.9400 +3150 9465 0.4350 +3150 9533 0.7980 +3150 9553 0.9080 +3150 9555 0.4820 +3150 9669 0.7170 +3150 9732 0.7390 +3150 9801 0.9100 +3150 9858 0.6780 +3150 9978 0.6140 +3150 10102 0.6590 +3150 10399 0.7090 +3150 10412 0.7400 +3150 10473 0.6090 +3150 10541 0.4380 +3150 10557 0.6230 +3150 10587 0.4520 +3150 10657 0.4370 +3150 10765 0.4020 +3150 10919 0.4310 +3150 10971 0.4210 +3150 10988 0.4640 +3150 11128 0.6560 +3150 11222 0.7830 +3150 11224 0.9400 +3150 11315 0.4090 +3150 22927 0.5050 +3150 22984 0.8170 +3150 23135 0.4190 +3150 23173 0.4610 +3150 23204 0.6360 +3150 23234 0.4420 +3150 23252 0.6070 +3150 23405 0.5350 +3150 23521 0.8440 +3150 23560 0.4920 +3150 23640 0.6790 +3150 25873 0.9200 +3150 25885 0.6510 +3150 26135 0.5280 +3150 26164 0.4480 +3150 26251 0.4780 +3150 26589 0.6520 +3150 27012 0.4780 +3150 27079 0.4490 +3150 28998 0.7800 +3150 29083 0.5450 +3150 29088 0.5570 +3150 29093 0.7800 +3150 29102 0.5380 +3150 29927 0.7990 +3150 29997 0.5340 +3150 51008 0.4260 +3150 51021 0.9030 +3150 51023 0.5170 +3150 51042 0.4100 +3150 51065 0.7290 +3150 51068 0.4950 +3150 51069 0.7740 +3150 51073 0.7750 +3150 51081 0.7910 +3150 51116 0.6750 +3150 51121 0.8240 +3150 51149 0.8040 +3150 51154 0.8300 +3150 51187 0.6000 +3150 51222 0.9120 +3150 51263 0.4910 +3150 51264 0.9080 +3150 51314 0.5900 +3150 51319 0.7340 +3150 54014 0.5180 +3150 54059 0.5500 +3150 54148 0.4640 +3150 54431 0.7470 +3150 54517 0.4630 +3150 54948 0.6860 +3150 54965 0.4970 +3150 54969 0.6460 +3150 55052 0.9030 +3150 55143 0.4330 +3150 55168 0.5200 +3150 55173 0.8320 +3150 55176 0.7980 +3150 55178 0.4330 +3150 55272 0.8330 +3150 55316 0.8030 +3150 55591 0.4250 +3150 55651 0.6320 +3150 55703 0.7740 +3150 55862 0.6380 +3150 56479 0.4780 +3150 56648 0.6450 +3150 56949 0.9370 +3150 56965 0.5540 +3150 57129 0.6650 +3150 57136 0.4100 +3150 57471 0.4240 +3150 57654 0.7900 +3150 60488 0.5880 +3150 60558 0.6080 +3150 63875 0.9100 +3150 63931 0.7790 +3150 64146 0.6210 +3150 64374 0.6810 +3150 64432 0.4820 +3150 64960 0.7770 +3150 64963 0.7760 +3150 64965 0.9050 +3150 64968 0.9130 +3150 64969 0.8310 +3150 64975 0.6170 +3150 64976 0.5160 +3150 64978 0.4430 +3150 64979 0.9090 +3150 64981 0.5370 +3150 64983 0.9060 +3150 65005 0.9070 +3150 65008 0.7780 +3150 65080 0.5290 +3150 65121 0.5440 +3150 65122 0.5440 +3150 79366 0.9560 +3150 79590 0.7780 +3150 79631 0.6950 +3150 79661 0.4550 +3150 79668 0.5540 +3150 79728 0.6230 +3150 79922 0.4240 +3150 80222 0.4120 +3150 83448 0.4570 +3150 84154 0.4800 +3150 84172 0.7710 +3150 84545 0.6720 +3150 84705 0.6120 +3150 84881 0.4480 +3150 85476 0.6980 +3150 85865 0.4560 +3150 87178 0.4140 +3150 90313 0.5120 +3150 92399 0.8250 +3150 93107 0.4780 +3150 93974 0.5120 +3150 113000 0.4450 +3150 114987 0.6970 +3150 115416 0.6220 +3150 116541 0.5190 +3150 116832 0.6840 +3150 122622 0.5710 +3150 123283 0.4110 +3150 124245 0.4060 +3150 124454 0.6040 +3150 124995 0.4710 +3150 126402 0.7830 +3150 140032 0.7590 +3150 140801 0.7360 +3150 143244 0.6590 +3150 157310 0.4390 +3150 169522 0.4780 +3150 170850 0.4780 +3150 200916 0.7400 +3150 201595 0.5150 +3150 219927 0.9050 +3150 254268 0.7440 +3150 283518 0.4780 +3150 285367 0.4450 +3150 285855 0.7330 +3150 343068 0.5440 +3150 343070 0.5440 +3150 347487 0.7460 +3150 374659 0.6930 +3150 387129 0.7270 +3150 390999 0.5440 +3150 391002 0.5440 +3150 400735 0.5440 +3150 400736 0.5440 +3150 440093 0.4520 +3150 440560 0.5440 +3150 440561 0.5440 +3150 440686 0.5090 +3150 441873 0.5440 +3150 641776 0.6000 +3150 643909 0.6000 +3150 645051 0.5680 +3150 645073 0.5680 +3150 645359 0.5440 +3150 653604 0.4680 +3150 653619 0.5440 +3150 728524 0.6000 +3150 729396 0.5680 +3150 729422 0.5680 +3150 729428 0.5680 +3150 729431 0.5680 +3150 729442 0.5680 +3150 729447 0.5680 +3150 729528 0.5440 +3150 100008586 0.5680 +3150 100130890 0.4620 +3150 100131187 0.4770 +3150 100132399 0.5680 +3150 100287482 0.6730 +3150 100505478 0.6940 +3150 100526842 0.7980 +3150 100529097 0.6920 +3150 100529239 0.7210 +3150 100996746 0.6000 +3150 101929983 0.5440 +3150 102724473 0.5680 +3150 105180390 0.6000 +3150 105180391 0.6000 +3151 3396 0.6390 +3151 3430 0.8120 +3151 3692 0.8030 +3151 3703 0.4990 +3151 3735 0.5520 +3151 3736 0.4780 +3151 3737 0.4780 +3151 3738 0.4780 +3151 3739 0.4780 +3151 3741 0.4780 +3151 3742 0.4780 +3151 3743 0.4780 +3151 3744 0.4780 +3151 3745 0.4780 +3151 3746 0.4780 +3151 3747 0.4780 +3151 3748 0.4780 +3151 3749 0.4780 +3151 3750 0.4780 +3151 3751 0.4780 +3151 3752 0.4780 +3151 3754 0.4780 +3151 3755 0.4780 +3151 3784 0.4780 +3151 3785 0.4780 +3151 3786 0.4780 +3151 3787 0.4780 +3151 3788 0.4780 +3151 3790 0.4780 +3151 3921 0.7640 +3151 4528 0.7130 +3151 4666 0.4100 +3151 4706 0.6260 +3151 4736 0.8260 +3151 4809 0.6280 +3151 5036 0.4820 +3151 5037 0.5060 +3151 5313 0.5540 +3151 5315 0.5630 +3151 5431 0.7760 +3151 5432 0.8000 +3151 5435 0.6350 +3151 5469 0.8430 +3151 5859 0.6010 +3151 6122 0.8480 +3151 6123 0.8310 +3151 6124 0.8940 +3151 6125 0.9430 +3151 6128 0.9370 +3151 6129 0.7670 +3151 6130 0.7550 +3151 6132 0.9340 +3151 6133 0.8400 +3151 6135 0.9420 +3151 6137 0.8900 +3151 6138 0.9270 +3151 6139 0.8320 +3151 6141 0.9020 +3151 6142 0.9270 +3151 6143 0.9260 +3151 6144 0.9340 +3151 6146 0.7280 +3151 6147 0.9430 +3151 6150 0.5440 +3151 6152 0.9200 +3151 6154 0.8240 +3151 6155 0.8200 +3151 6156 0.9090 +3151 6157 0.9110 +3151 6158 0.8910 +3151 6159 0.8940 +3151 6160 0.9340 +3151 6161 0.6060 +3151 6164 0.9310 +3151 6165 0.9160 +3151 6166 0.7060 +3151 6167 0.7510 +3151 6168 0.9260 +3151 6169 0.9070 +3151 6170 0.6940 +3151 6173 0.7050 +3151 6175 0.9300 +3151 6176 0.8730 +3151 6181 0.8260 +3151 6182 0.9180 +3151 6183 0.8290 +3151 6187 0.9150 +3151 6188 0.9430 +3151 6189 0.9270 +3151 6191 0.7760 +3151 6192 0.7590 +3151 6193 0.7920 +3151 6194 0.9270 +3151 6201 0.9070 +3151 6202 0.9170 +3151 6203 0.9020 +3151 6204 0.7340 +3151 6205 0.9430 +3151 6206 0.7430 +3151 6207 0.8240 +3151 6208 0.8330 +3151 6209 0.9420 +3151 6210 0.6190 +3151 6217 0.8930 +3151 6218 0.9310 +3151 6222 0.9400 +3151 6223 0.9360 +3151 6224 0.9110 +3151 6227 0.9120 +3151 6228 0.9090 +3151 6229 0.9360 +3151 6230 0.9230 +3151 6231 0.9260 +3151 6232 0.7370 +3151 6233 0.8650 +3151 6234 0.9280 +3151 6235 0.8100 +3151 6536 0.5440 +3151 6648 0.4940 +3151 6729 0.6920 +3151 6734 0.6460 +3151 6736 0.5910 +3151 6742 0.5560 +3151 6894 0.4240 +3151 6897 0.4200 +3151 7068 0.4360 +3151 7178 0.4090 +3151 7284 0.9100 +3151 7311 0.9050 +3151 7314 0.4170 +3151 7316 0.4570 +3151 7403 0.4180 +3151 7404 0.4180 +3151 7407 0.4190 +3151 7818 0.6390 +3151 8225 0.7350 +3151 8242 0.4020 +3151 8290 0.6010 +3151 8329 0.4550 +3151 8337 0.5810 +3151 8338 0.5750 +3151 8349 0.6180 +3151 8350 0.4620 +3151 8356 0.6060 +3151 8361 0.5020 +3151 8565 0.4040 +3151 8624 0.5240 +3151 8833 0.5590 +3151 9045 0.8290 +3151 9069 0.4480 +3151 9086 0.6120 +3151 9132 0.4780 +3151 9141 0.6310 +3151 9147 0.5530 +3151 9312 0.4780 +3151 9343 0.7010 +3151 9349 0.9400 +3151 9465 0.4160 +3151 9533 0.7960 +3151 9553 0.9070 +3151 9555 0.4480 +3151 9669 0.7150 +3151 9732 0.7390 +3151 9801 0.9090 +3151 9858 0.6730 +3151 10102 0.6590 +3151 10399 0.7640 +3151 10412 0.7230 +3151 10557 0.6180 +3151 10587 0.5640 +3151 10988 0.4360 +3151 11128 0.6510 +3151 11168 0.4400 +3151 11222 0.7770 +3151 11224 0.9410 +3151 22927 0.5050 +3151 22984 0.8400 +3151 23135 0.4180 +3151 23173 0.4340 +3151 23204 0.6190 +3151 23252 0.6070 +3151 23405 0.5280 +3151 23521 0.8330 +3151 23560 0.4720 +3151 23640 0.6840 +3151 25873 0.9180 +3151 25885 0.6520 +3151 26135 0.5180 +3151 26164 0.4480 +3151 26251 0.4780 +3151 26589 0.6500 +3151 27012 0.4780 +3151 27079 0.4460 +3151 28998 0.7760 +3151 29083 0.5380 +3151 29088 0.5530 +3151 29093 0.7790 +3151 29102 0.5380 +3151 29927 0.7980 +3151 29997 0.5200 +3151 51008 0.4170 +3151 51021 0.9040 +3151 51023 0.5170 +3151 51042 0.4100 +3151 51065 0.7260 +3151 51068 0.4830 +3151 51069 0.7740 +3151 51073 0.7740 +3151 51081 0.7870 +3151 51116 0.6750 +3151 51121 0.8570 +3151 51149 0.8040 +3151 51154 0.8320 +3151 51187 0.5890 +3151 51222 0.6600 +3151 51263 0.4880 +3151 51264 0.9080 +3151 51314 0.5900 +3151 51319 0.7320 +3151 54059 0.5500 +3151 54148 0.4230 +3151 54431 0.7380 +3151 54517 0.4550 +3151 54843 0.5800 +3151 54948 0.6870 +3151 54965 0.4110 +3151 55052 0.9080 +3151 55143 0.4580 +3151 55168 0.5170 +3151 55173 0.8290 +3151 55176 0.7980 +3151 55178 0.4250 +3151 55272 0.8280 +3151 55316 0.8030 +3151 55591 0.4250 +3151 55651 0.6270 +3151 55703 0.7700 +3151 56479 0.4780 +3151 56648 0.6450 +3151 56965 0.5550 +3151 57129 0.6670 +3151 57136 0.4020 +3151 57471 0.4240 +3151 57570 0.4260 +3151 60488 0.5740 +3151 60558 0.6070 +3151 63875 0.9080 +3151 63931 0.7780 +3151 64146 0.6150 +3151 64374 0.6790 +3151 64432 0.4800 +3151 64960 0.7780 +3151 64963 0.7750 +3151 64965 0.9040 +3151 64968 0.9060 +3151 64969 0.8290 +3151 64975 0.6190 +3151 64976 0.5160 +3151 64978 0.4400 +3151 64979 0.9070 +3151 64981 0.5370 +3151 64983 0.9020 +3151 65005 0.9050 +3151 65008 0.7740 +3151 65080 0.5290 +3151 65121 0.5440 +3151 65122 0.5440 +3151 79366 0.9060 +3151 79590 0.7760 +3151 79631 0.6950 +3151 79668 0.5540 +3151 79728 0.6170 +3151 79922 0.4230 +3151 80222 0.4110 +3151 83448 0.4540 +3151 84154 0.4910 +3151 84172 0.7700 +3151 84545 0.6690 +3151 84705 0.6120 +3151 84881 0.4450 +3151 85476 0.6950 +3151 85865 0.4490 +3151 87178 0.4030 +3151 90313 0.5120 +3151 92399 0.8240 +3151 93107 0.4780 +3151 113000 0.4450 +3151 114987 0.6970 +3151 115416 0.6130 +3151 116541 0.5210 +3151 116832 0.6860 +3151 122622 0.5710 +3151 123283 0.4110 +3151 124245 0.5130 +3151 124454 0.5980 +3151 124995 0.4740 +3151 126402 0.7830 +3151 140032 0.7590 +3151 140801 0.7380 +3151 143244 0.6450 +3151 157310 0.4460 +3151 169522 0.4780 +3151 170850 0.4780 +3151 200916 0.7220 +3151 201595 0.5000 +3151 219927 0.9050 +3151 254268 0.7440 +3151 283518 0.4780 +3151 285367 0.4450 +3151 285855 0.7310 +3151 343068 0.5440 +3151 343070 0.5440 +3151 347487 0.7460 +3151 374659 0.6920 +3151 387129 0.7270 +3151 390999 0.5440 +3151 391002 0.5440 +3151 400735 0.5440 +3151 400736 0.5440 +3151 440093 0.5380 +3151 440560 0.5440 +3151 440561 0.5440 +3151 440686 0.5410 +3151 441873 0.5440 +3151 641776 0.6000 +3151 643909 0.6000 +3151 645051 0.5680 +3151 645073 0.5680 +3151 645359 0.5440 +3151 653604 0.6030 +3151 653619 0.5440 +3151 728524 0.6000 +3151 729396 0.5680 +3151 729422 0.5680 +3151 729428 0.5680 +3151 729431 0.5680 +3151 729442 0.5680 +3151 729447 0.5680 +3151 729528 0.5440 +3151 100008586 0.5680 +3151 100130890 0.4620 +3151 100131187 0.4640 +3151 100132399 0.5680 +3151 100287482 0.6730 +3151 100505478 0.6940 +3151 100526842 0.7980 +3151 100529097 0.6920 +3151 100529239 0.7210 +3151 100996746 0.6000 +3151 101929983 0.5440 +3151 102724473 0.5680 +3151 105180390 0.6000 +3151 105180391 0.6000 +3155 3156 0.8690 +3155 3157 0.9870 +3155 3158 0.9900 +3155 3295 0.6570 +3155 3417 0.4360 +3155 3418 0.4540 +3155 3419 0.8650 +3155 3420 0.8660 +3155 3421 0.8760 +3155 3658 0.6300 +3155 3712 0.6310 +3155 4329 0.5500 +3155 4524 0.4750 +3155 4598 0.8710 +3155 4694 0.6840 +3155 4722 0.4500 +3155 4942 0.4960 +3155 5009 0.4640 +3155 5019 0.9790 +3155 5091 0.5890 +3155 5095 0.7450 +3155 5096 0.8770 +3155 5105 0.4320 +3155 5106 0.4030 +3155 5162 0.4280 +3155 5188 0.4200 +3155 5192 0.5080 +3155 5194 0.5220 +3155 5195 0.5820 +3155 5264 0.4510 +3155 5723 0.4440 +3155 5828 0.5330 +3155 5830 0.5670 +3155 5832 0.5970 +3155 6233 0.5110 +3155 6296 0.4930 +3155 6342 0.6680 +3155 6389 0.5230 +3155 6648 0.6370 +3155 6888 0.4450 +3155 7167 0.4540 +3155 7284 0.4260 +3155 7311 0.5000 +3155 7314 0.5110 +3155 7316 0.5100 +3155 7321 0.5170 +3155 7322 0.5160 +3155 7323 0.5160 +3155 7372 0.4020 +3155 7407 0.4740 +3155 7915 0.4870 +3155 7923 0.4310 +3155 8310 0.4840 +3155 8458 0.4930 +3155 8659 0.5570 +3155 8801 0.8690 +3155 8802 0.8990 +3155 8803 0.8640 +3155 9085 0.4720 +3155 9380 0.4210 +3155 9425 0.4720 +3155 9563 0.4640 +3155 10005 0.4220 +3155 10449 0.9660 +3155 10455 0.6150 +3155 10606 0.4040 +3155 10994 0.5320 +3155 11076 0.4910 +3155 22984 0.4010 +3155 23417 0.4020 +3155 23479 0.4860 +3155 26061 0.5530 +3155 26063 0.4650 +3155 26275 0.6570 +3155 27034 0.5970 +3155 27247 0.4140 +3155 51011 0.4950 +3155 51084 0.5210 +3155 51179 0.4030 +3155 51497 0.5500 +3155 54511 0.9360 +3155 54995 0.4910 +3155 55258 0.4280 +3155 55268 0.7170 +3155 55825 0.4530 +3155 55856 0.4310 +3155 55862 0.5440 +3155 55902 0.5460 +3155 56898 0.9620 +3155 56922 0.7490 +3155 60481 0.4180 +3155 64064 0.9720 +3155 64087 0.9060 +3155 65985 0.9620 +3155 79611 0.5830 +3155 79896 0.4130 +3155 80221 0.5540 +3155 80347 0.5620 +3155 81889 0.4700 +3155 84263 0.5240 +3155 84532 0.5810 +3155 84693 0.5410 +3155 92667 0.4290 +3155 124359 0.4720 +3155 132949 0.5300 +3155 137872 0.7130 +3155 151313 0.4590 +3155 162417 0.4850 +3155 219743 0.5390 +3155 253175 0.4720 +3155 348158 0.4080 +3155 376497 0.4680 +3155 389434 0.4070 +3155 100526739 0.4300 +3156 3157 0.9990 +3156 3158 0.9990 +3156 3159 0.8820 +3156 3162 0.5620 +3156 3283 0.4670 +3156 3290 0.6240 +3156 3292 0.5770 +3156 3309 0.4280 +3156 3383 0.4750 +3156 3422 0.9260 +3156 3458 0.4160 +3156 3480 0.4050 +3156 3553 0.5430 +3156 3569 0.5900 +3156 3630 0.7170 +3156 3638 0.9990 +3156 3667 0.4150 +3156 3725 0.4230 +3156 3845 0.4190 +3156 3930 0.4870 +3156 3931 0.6310 +3156 3952 0.5120 +3156 3988 0.4460 +3156 3990 0.7190 +3156 3991 0.5010 +3156 3992 0.4560 +3156 4018 0.4320 +3156 4023 0.6260 +3156 4047 0.8010 +3156 4318 0.4320 +3156 4520 0.7640 +3156 4524 0.4590 +3156 4547 0.7770 +3156 4597 0.8960 +3156 4598 0.9990 +3156 4790 0.4110 +3156 4800 0.5240 +3156 4801 0.6730 +3156 4802 0.5530 +3156 4846 0.6620 +3156 4864 0.7890 +3156 4973 0.4060 +3156 5207 0.4130 +3156 5209 0.4350 +3156 5229 0.4170 +3156 5243 0.4580 +3156 5244 0.5870 +3156 5286 0.4660 +3156 5313 0.5710 +3156 5360 0.6010 +3156 5406 0.4690 +3156 5435 0.4010 +3156 5444 0.4090 +3156 5447 0.5150 +3156 5465 0.8560 +3156 5467 0.4260 +3156 5468 0.6610 +3156 5469 0.4280 +3156 5562 0.9380 +3156 5563 0.9320 +3156 5564 0.9280 +3156 5565 0.9210 +3156 5571 0.9320 +3156 5595 0.4520 +3156 5663 0.4170 +3156 5740 0.4250 +3156 5743 0.4630 +3156 5830 0.4320 +3156 5972 0.5480 +3156 6256 0.5590 +3156 6307 0.9020 +3156 6309 0.8180 +3156 6319 0.7470 +3156 6342 0.4760 +3156 6347 0.4700 +3156 6400 0.5760 +3156 6476 0.6250 +3156 6517 0.4870 +3156 6554 0.4020 +3156 6555 0.4200 +3156 6579 0.4350 +3156 6604 0.5830 +3156 6610 0.4200 +3156 6646 0.6920 +3156 6713 0.9730 +3156 6720 0.9560 +3156 6721 0.9850 +3156 6770 0.4320 +3156 6774 0.4530 +3156 6781 0.4490 +3156 6794 0.4960 +3156 6907 0.5370 +3156 6908 0.6130 +3156 7015 0.4230 +3156 7069 0.5300 +3156 7108 0.6560 +3156 7124 0.5720 +3156 7153 0.4030 +3156 7155 0.4040 +3156 7157 0.4790 +3156 7167 0.4740 +3156 7327 0.5160 +3156 7350 0.4410 +3156 7351 0.4970 +3156 7353 0.5220 +3156 7357 0.4620 +3156 7412 0.4180 +3156 7415 0.7930 +3156 7436 0.4420 +3156 7837 0.4760 +3156 8031 0.4960 +3156 8310 0.4710 +3156 8431 0.4850 +3156 8435 0.6700 +3156 8564 0.6650 +3156 8647 0.5600 +3156 8648 0.4500 +3156 8694 0.6320 +3156 8720 0.6320 +3156 8972 0.6270 +3156 9023 0.7000 +3156 9213 0.7610 +3156 9360 0.7390 +3156 9370 0.5320 +3156 9388 0.4530 +3156 9415 0.4670 +3156 9420 0.6670 +3156 9429 0.4550 +3156 9453 0.8860 +3156 9517 0.5300 +3156 9563 0.4240 +3156 9619 0.6970 +3156 9971 0.6160 +3156 10062 0.5960 +3156 10135 0.5870 +3156 10221 0.4020 +3156 10269 0.4190 +3156 10280 0.4590 +3156 10299 0.6290 +3156 10449 0.6130 +3156 10498 0.4790 +3156 10499 0.4510 +3156 10558 0.6000 +3156 10577 0.4640 +3156 10599 0.6510 +3156 10613 0.5460 +3156 10654 0.9130 +3156 10682 0.6550 +3156 10826 0.5010 +3156 10858 0.6380 +3156 10868 0.4370 +3156 10891 0.5320 +3156 10963 0.4560 +3156 10988 0.4140 +3156 11019 0.4270 +3156 11160 0.6500 +3156 11161 0.5500 +3156 11236 0.7620 +3156 11309 0.4300 +3156 11343 0.4150 +3156 22937 0.6510 +3156 23054 0.4470 +3156 23175 0.4720 +3156 23197 0.4570 +3156 23411 0.5860 +3156 23463 0.4410 +3156 23515 0.6230 +3156 23590 0.5780 +3156 23621 0.6290 +3156 23623 0.4630 +3156 25979 0.4020 +3156 27235 0.6490 +3156 27329 0.4440 +3156 29116 0.6850 +3156 29881 0.9180 +3156 29914 0.9450 +3156 29927 0.4340 +3156 30835 0.4510 +3156 50814 0.7910 +3156 51004 0.7060 +3156 51085 0.6840 +3156 51141 0.9900 +3156 51179 0.4020 +3156 51302 0.5730 +3156 51360 0.4620 +3156 51422 0.9320 +3156 51478 0.8490 +3156 51592 0.5180 +3156 51725 0.4060 +3156 53632 0.9280 +3156 54205 0.5600 +3156 54363 0.4020 +3156 54511 0.8400 +3156 54802 0.4600 +3156 55304 0.5350 +3156 55743 0.4020 +3156 55902 0.5880 +3156 57104 0.4450 +3156 57107 0.4990 +3156 57509 0.4130 +3156 57678 0.4660 +3156 57818 0.4220 +3156 58191 0.4080 +3156 60481 0.4410 +3156 64240 0.7430 +3156 64241 0.7940 +3156 65985 0.6060 +3156 79071 0.5350 +3156 79139 0.4450 +3156 79154 0.5070 +3156 79718 0.5010 +3156 79947 0.5030 +3156 79966 0.4340 +3156 80205 0.4610 +3156 80270 0.4380 +3156 80347 0.5510 +3156 80777 0.4170 +3156 83473 0.4210 +3156 84263 0.4290 +3156 84447 0.7870 +3156 84532 0.4350 +3156 84618 0.4560 +3156 84649 0.5590 +3156 84706 0.6060 +3156 84722 0.5900 +3156 90627 0.4640 +3156 91734 0.8160 +3156 92579 0.4240 +3156 96764 0.4010 +3156 116150 0.4560 +3156 116519 0.4600 +3156 132949 0.4720 +3156 134359 0.4710 +3156 134429 0.5930 +3156 137682 0.4010 +3156 137902 0.4760 +3156 153830 0.6100 +3156 255738 0.9100 +3156 257202 0.4940 +3156 340390 0.4010 +3156 493869 0.6000 +3157 3158 0.9170 +3157 3159 0.6950 +3157 3283 0.5010 +3157 3309 0.5340 +3157 3422 0.9720 +3157 3630 0.4180 +3157 3638 0.8850 +3157 3880 0.4070 +3157 3930 0.5120 +3157 3949 0.6990 +3157 3992 0.4440 +3157 4047 0.8960 +3157 4547 0.4060 +3157 4597 0.9480 +3157 4598 0.9200 +3157 4602 0.4290 +3157 4706 0.6150 +3157 4800 0.7110 +3157 4801 0.5260 +3157 4802 0.5260 +3157 5019 0.9560 +3157 5105 0.4020 +3157 5268 0.4420 +3157 5447 0.4010 +3157 5465 0.7770 +3157 5469 0.4390 +3157 5740 0.4180 +3157 6256 0.5740 +3157 6307 0.9640 +3157 6309 0.9030 +3157 6319 0.7940 +3157 6342 0.5300 +3157 6576 0.4710 +3157 6646 0.4540 +3157 6653 0.4220 +3157 6713 0.9860 +3157 6720 0.9260 +3157 6721 0.9590 +3157 6907 0.4490 +3157 7069 0.4620 +3157 7108 0.7620 +3157 7555 0.5580 +3157 8310 0.4470 +3157 8435 0.4890 +3157 8564 0.5340 +3157 8608 0.4180 +3157 8648 0.4780 +3157 8694 0.4480 +3157 8720 0.7040 +3157 8801 0.8170 +3157 8802 0.8510 +3157 8803 0.8240 +3157 8851 0.4200 +3157 9023 0.7830 +3157 9213 0.4420 +3157 9415 0.4450 +3157 9420 0.6370 +3157 9425 0.4120 +3157 9453 0.8460 +3157 9563 0.4350 +3157 9607 0.8780 +3157 9619 0.5350 +3157 9971 0.4290 +3157 10062 0.5880 +3157 10280 0.6110 +3157 10449 0.9950 +3157 10455 0.4870 +3157 10498 0.4800 +3157 10499 0.4560 +3157 10654 0.8180 +3157 10682 0.6910 +3157 10826 0.6790 +3157 10858 0.5310 +3157 11161 0.4620 +3157 22937 0.5810 +3157 23054 0.4060 +3157 23175 0.5130 +3157 23590 0.5170 +3157 23623 0.5410 +3157 26275 0.4590 +3157 26532 0.4240 +3157 27349 0.4760 +3157 29881 0.4020 +3157 50814 0.9460 +3157 51004 0.5240 +3157 51141 0.5220 +3157 51179 0.4790 +3157 51302 0.5840 +3157 51478 0.8720 +3157 51586 0.6140 +3157 51725 0.4800 +3157 54363 0.4540 +3157 54511 0.9790 +3157 54859 0.4700 +3157 54995 0.5870 +3157 55268 0.4210 +3157 55631 0.4540 +3157 55777 0.4400 +3157 55862 0.4770 +3157 55902 0.6590 +3157 56898 0.4820 +3157 57107 0.4190 +3157 57678 0.4570 +3157 60481 0.4290 +3157 64064 0.9460 +3157 64240 0.6200 +3157 64241 0.5740 +3157 65985 0.9590 +3157 79071 0.5840 +3157 79718 0.4030 +3157 79728 0.6120 +3157 79731 0.5840 +3157 79966 0.4850 +3157 80205 0.4110 +3157 80270 0.4060 +3157 80347 0.8500 +3157 84532 0.4840 +3157 84649 0.4310 +3157 91734 0.8990 +3157 96764 0.4010 +3157 132949 0.5830 +3157 133522 0.4950 +3157 134429 0.6600 +3157 137682 0.5210 +3157 255738 0.4530 +3157 338674 0.4240 +3157 340390 0.5060 +3157 347475 0.4180 +3158 3159 0.6730 +3158 3172 0.4430 +3158 3283 0.4650 +3158 3418 0.4950 +3158 3422 0.8130 +3158 3630 0.4720 +3158 3638 0.4510 +3158 3930 0.4360 +3158 4047 0.7340 +3158 4597 0.8770 +3158 4598 0.8300 +3158 4602 0.4270 +3158 4706 0.6140 +3158 5019 0.9680 +3158 5095 0.4180 +3158 5105 0.6400 +3158 5106 0.4080 +3158 5166 0.5140 +3158 5320 0.4580 +3158 5465 0.8870 +3158 5467 0.4180 +3158 5468 0.4700 +3158 5469 0.4580 +3158 5740 0.4470 +3158 6256 0.5400 +3158 6307 0.7620 +3158 6309 0.7170 +3158 6319 0.6220 +3158 6576 0.4670 +3158 6713 0.9160 +3158 6720 0.8020 +3158 6721 0.8330 +3158 6907 0.4420 +3158 7108 0.5890 +3158 7555 0.5570 +3158 8309 0.4330 +3158 8310 0.4900 +3158 8564 0.5310 +3158 8648 0.4650 +3158 8694 0.4700 +3158 8714 0.4580 +3158 8720 0.6470 +3158 8801 0.8310 +3158 8802 0.8660 +3158 8803 0.8300 +3158 8856 0.4040 +3158 9023 0.7560 +3158 9420 0.5030 +3158 9453 0.7950 +3158 9563 0.4500 +3158 9607 0.8800 +3158 9619 0.4060 +3158 9971 0.4570 +3158 10062 0.5650 +3158 10280 0.5620 +3158 10449 0.9960 +3158 10455 0.5500 +3158 10498 0.4800 +3158 10499 0.4560 +3158 10654 0.7270 +3158 10682 0.4830 +3158 10826 0.6210 +3158 10858 0.4020 +3158 10891 0.4900 +3158 10965 0.4120 +3158 11001 0.5020 +3158 23054 0.4060 +3158 23408 0.5390 +3158 23409 0.4400 +3158 23410 0.6850 +3158 23411 0.4090 +3158 23417 0.4370 +3158 23590 0.4790 +3158 23623 0.5400 +3158 26275 0.4720 +3158 26291 0.4780 +3158 27349 0.4390 +3158 50814 0.6230 +3158 51004 0.5150 +3158 51129 0.5500 +3158 51179 0.6250 +3158 51302 0.4370 +3158 51478 0.6090 +3158 51586 0.5980 +3158 51703 0.4050 +3158 51725 0.4800 +3158 54363 0.5290 +3158 54511 0.9800 +3158 54995 0.5550 +3158 55268 0.4080 +3158 55862 0.4510 +3158 55902 0.5290 +3158 56898 0.5660 +3158 57107 0.4340 +3158 64064 0.9540 +3158 64240 0.4350 +3158 64241 0.4240 +3158 65985 0.9440 +3158 79071 0.4340 +3158 79718 0.4170 +3158 79728 0.6040 +3158 79731 0.5400 +3158 79966 0.4360 +3158 80205 0.4060 +3158 80347 0.8980 +3158 84532 0.6340 +3158 91734 0.7840 +3158 116519 0.4040 +3158 132949 0.5860 +3158 133522 0.5130 +3158 137682 0.5060 +3158 340390 0.5060 +3158 347475 0.4180 +3158 376497 0.4680 +3158 641371 0.4520 +3159 3169 0.4440 +3159 3192 0.4230 +3159 3422 0.5430 +3159 3559 0.6630 +3159 3619 0.4870 +3159 3638 0.4300 +3159 3659 0.8260 +3159 3661 0.7410 +3159 3665 0.5470 +3159 3725 0.9640 +3159 3930 0.5230 +3159 4001 0.5390 +3159 4047 0.4500 +3159 4591 0.4230 +3159 4597 0.7180 +3159 4598 0.7200 +3159 4609 0.4520 +3159 4790 0.6430 +3159 4869 0.5720 +3159 4999 0.5400 +3159 5093 0.6150 +3159 5468 0.7330 +3159 5578 0.5380 +3159 5925 0.4330 +3159 6631 0.4080 +3159 6667 0.6260 +3159 6713 0.5940 +3159 6720 0.5400 +3159 6721 0.6100 +3159 6772 0.4290 +3159 6839 0.4350 +3159 6908 0.5260 +3159 7157 0.7200 +3159 7290 0.6600 +3159 8091 0.9020 +3159 8361 0.5660 +3159 8815 0.7280 +3159 8850 0.5990 +3159 9453 0.7730 +3159 9939 0.4770 +3159 10449 0.4170 +3159 10642 0.4550 +3159 10643 0.6590 +3159 10644 0.5990 +3159 10654 0.7630 +3159 10664 0.4240 +3159 10951 0.4610 +3159 11168 0.7090 +3159 11335 0.5330 +3159 22937 0.6410 +3159 23468 0.4570 +3159 23476 0.5790 +3159 23523 0.6510 +3159 23594 0.5180 +3159 25842 0.5150 +3159 28996 0.6360 +3159 29855 0.4990 +3159 51085 0.4610 +3159 54496 0.4510 +3159 55170 0.7970 +3159 64919 0.5690 +3159 79980 0.4480 +3159 80347 0.4380 +3159 91734 0.5050 +3159 140690 0.5050 +3159 140836 0.5540 +3159 221491 0.8760 +3159 254048 0.4180 +3159 317772 0.4050 +3161 3373 0.6480 +3161 3688 0.4670 +3161 3796 0.5850 +3161 3832 0.9280 +3161 3833 0.5540 +3161 3835 0.4140 +3161 3838 0.4580 +3161 3845 0.5100 +3161 4085 0.8010 +3161 4170 0.4380 +3161 4173 0.5600 +3161 4174 0.4040 +3161 4175 0.4890 +3161 4288 0.8960 +3161 4318 0.4650 +3161 4353 0.4280 +3161 4436 0.4200 +3161 4605 0.4750 +3161 4751 0.8700 +3161 5347 0.6830 +3161 5427 0.4880 +3161 5557 0.5170 +3161 5594 0.5060 +3161 5595 0.4490 +3161 5657 0.4430 +3161 5728 0.4860 +3161 5747 0.5230 +3161 5888 0.5480 +3161 5889 0.4910 +3161 5983 0.4060 +3161 5984 0.4680 +3161 6240 0.6080 +3161 6241 0.8070 +3161 6387 0.4340 +3161 6401 0.4600 +3161 6491 0.4400 +3161 6548 0.5340 +3161 6677 0.6280 +3161 6790 0.9700 +3161 7083 0.5570 +3161 7112 0.4270 +3161 7130 0.4210 +3161 7153 0.9020 +3161 7157 0.4080 +3161 7158 0.4050 +3161 7272 0.8810 +3161 7298 0.6640 +3161 7490 0.5010 +3161 7764 0.4780 +3161 8208 0.4020 +3161 8318 0.7480 +3161 8379 0.4690 +3161 8438 0.5320 +3161 8493 0.4170 +3161 8655 0.4990 +3161 8692 0.8680 +3161 9055 0.8330 +3161 9126 0.4590 +3161 9133 0.8880 +3161 9134 0.4150 +3161 9156 0.5950 +3161 9212 0.7600 +3161 9232 0.8610 +3161 9319 0.7630 +3161 9401 0.5090 +3161 9493 0.8890 +3161 9585 0.5220 +3161 9700 0.6930 +3161 9735 0.5520 +3161 9768 0.7540 +3161 9787 0.9990 +3161 9793 0.5070 +3161 9821 0.4330 +3161 9824 0.4330 +3161 9833 0.8840 +3161 9837 0.4760 +3161 9918 0.4870 +3161 9928 0.8530 +3161 9991 0.6780 +3161 10024 0.5550 +3161 10051 0.7620 +3161 10112 0.9090 +3161 10403 0.8350 +3161 10460 0.5270 +3161 10575 0.6030 +3161 10592 0.6080 +3161 10615 0.7010 +3161 10635 0.8520 +3161 10644 0.4060 +3161 10721 0.4580 +3161 10733 0.7450 +3161 10894 0.8530 +3161 11004 0.8680 +3161 11065 0.8960 +3161 11130 0.8910 +3161 11169 0.4930 +3161 11200 0.5150 +3161 11261 0.5320 +3161 11339 0.8950 +3161 22873 0.7730 +3161 22974 0.9790 +3161 23397 0.6280 +3161 23532 0.6130 +3161 23553 0.4100 +3161 24137 0.8770 +3161 25886 0.4230 +3161 26271 0.4690 +3161 26586 0.5340 +3161 29028 0.5620 +3161 29089 0.5790 +3161 29127 0.7910 +3161 29128 0.4740 +3161 51053 0.5670 +3161 51068 0.4890 +3161 51203 0.8960 +3161 51512 0.4960 +3161 51514 0.6820 +3161 51659 0.5650 +3161 54443 0.8800 +3161 54478 0.5990 +3161 54821 0.5450 +3161 54854 0.4040 +3161 54892 0.7250 +3161 54908 0.5550 +3161 55010 0.7760 +3161 55055 0.5720 +3161 55143 0.8640 +3161 55165 0.9260 +3161 55215 0.6850 +3161 55247 0.5880 +3161 55355 0.8780 +3161 55388 0.7270 +3161 55521 0.4520 +3161 55576 0.8490 +3161 55632 0.4080 +3161 55635 0.9070 +3161 55723 0.5310 +3161 55789 0.8120 +3161 55839 0.6750 +3161 56992 0.9010 +3161 57082 0.5080 +3161 57405 0.8040 +3161 57650 0.4800 +3161 64105 0.4750 +3161 64151 0.9090 +3161 64946 0.4180 +3161 79019 0.6180 +3161 79075 0.5360 +3161 79682 0.6050 +3161 79728 0.4970 +3161 79733 0.5880 +3161 79801 0.6010 +3161 81610 0.9560 +3161 81620 0.4770 +3161 81624 0.4230 +3161 81930 0.6900 +3161 83461 0.8610 +3161 83540 0.8860 +3161 83879 0.5190 +3161 84057 0.7850 +3161 84722 0.4120 +3161 90381 0.4690 +3161 90417 0.4030 +3161 113130 0.8310 +3161 115908 0.5650 +3161 118812 0.7060 +3161 121441 0.5900 +3161 131873 0.4280 +3161 140735 0.4260 +3161 143903 0.5100 +3161 144455 0.4410 +3161 146909 0.4330 +3161 150468 0.8120 +3161 151246 0.5540 +3161 151648 0.4680 +3161 157313 0.8370 +3161 163688 0.4080 +3161 220134 0.5010 +3161 221150 0.8700 +3161 259266 0.9280 +3161 283431 0.4500 +3161 387103 0.5090 +3161 388468 0.5790 +3161 548593 0.5420 +3162 3163 0.9110 +3162 3240 0.6100 +3162 3263 0.7530 +3162 3304 0.4970 +3162 3308 0.7780 +3162 3309 0.5640 +3162 3315 0.5180 +3162 3316 0.4470 +3162 3320 0.4620 +3162 3326 0.4620 +3162 3383 0.6750 +3162 3458 0.6330 +3162 3479 0.4820 +3162 3551 0.4430 +3162 3552 0.5910 +3162 3553 0.8170 +3162 3557 0.4930 +3162 3558 0.4610 +3162 3565 0.8780 +3162 3569 0.8100 +3162 3576 0.6220 +3162 3586 0.7260 +3162 3596 0.8550 +3162 3605 0.4780 +3162 3606 0.5140 +3162 3620 0.5330 +3162 3627 0.4290 +3162 3630 0.6400 +3162 3658 0.5010 +3162 3661 0.4550 +3162 3667 0.4460 +3162 3684 0.4680 +3162 3717 0.4300 +3162 3725 0.7980 +3162 3778 0.4440 +3162 3791 0.4050 +3162 3815 0.5150 +3162 3838 0.4190 +3162 3934 0.5120 +3162 3952 0.4240 +3162 4001 0.6540 +3162 4015 0.4020 +3162 4035 0.4110 +3162 4087 0.4010 +3162 4088 0.4300 +3162 4094 0.6780 +3162 4097 0.5110 +3162 4129 0.4260 +3162 4151 0.6600 +3162 4174 0.4150 +3162 4210 0.4240 +3162 4217 0.4200 +3162 4312 0.4610 +3162 4313 0.5060 +3162 4314 0.4470 +3162 4318 0.6560 +3162 4322 0.4020 +3162 4353 0.6400 +3162 4360 0.4530 +3162 4493 0.5680 +3162 4494 0.4700 +3162 4501 0.4250 +3162 4502 0.4320 +3162 4609 0.4380 +3162 4688 0.4790 +3162 4697 0.4280 +3162 4778 0.6790 +3162 4780 0.9890 +3162 4790 0.6520 +3162 4792 0.6750 +3162 4803 0.4410 +3162 4842 0.6320 +3162 4843 0.7160 +3162 4846 0.7700 +3162 4891 0.6170 +3162 4899 0.4340 +3162 5052 0.6560 +3162 5054 0.6380 +3162 5094 0.4940 +3162 5175 0.4300 +3162 5305 0.5400 +3162 5444 0.5340 +3162 5447 0.9650 +3162 5465 0.5760 +3162 5468 0.7840 +3162 5498 0.4990 +3162 5506 0.4180 +3162 5592 0.5330 +3162 5595 0.6290 +3162 5599 0.5060 +3162 5663 0.4340 +3162 5728 0.4500 +3162 5743 0.7890 +3162 5753 0.4020 +3162 5788 0.4100 +3162 5972 0.4740 +3162 6189 0.4230 +3162 6303 0.5140 +3162 6347 0.6970 +3162 6348 0.4070 +3162 6387 0.4350 +3162 6401 0.5180 +3162 6403 0.4250 +3162 6449 0.5220 +3162 6517 0.4050 +3162 6556 0.4480 +3162 6622 0.4820 +3162 6647 0.7410 +3162 6648 0.7430 +3162 6649 0.5500 +3162 6657 0.4340 +3162 6696 0.4110 +3162 6714 0.4560 +3162 6720 0.4450 +3162 6772 0.5370 +3162 6774 0.8490 +3162 6804 0.7380 +3162 6811 0.5000 +3162 6844 0.4990 +3162 7001 0.4110 +3162 7019 0.5100 +3162 7030 0.4810 +3162 7037 0.5980 +3162 7040 0.6460 +3162 7054 0.4620 +3162 7056 0.4460 +3162 7076 0.4540 +3162 7082 0.4820 +3162 7097 0.4960 +3162 7099 0.7190 +3162 7124 0.7920 +3162 7132 0.4350 +3162 7157 0.6300 +3162 7184 0.5420 +3162 7189 0.5990 +3162 7295 0.7740 +3162 7296 0.7560 +3162 7351 0.4650 +3162 7389 0.4750 +3162 7390 0.4050 +3162 7412 0.6200 +3162 7450 0.4130 +3162 7485 0.4990 +3162 7494 0.4470 +3162 7498 0.6180 +3162 7837 0.6960 +3162 7917 0.5030 +3162 7942 0.5250 +3162 7975 0.8690 +3162 8031 0.4010 +3162 8266 0.5320 +3162 8290 0.4830 +3162 8356 0.4810 +3162 8452 0.6920 +3162 8614 0.4670 +3162 8678 0.5800 +3162 8878 0.6840 +3162 8988 0.4480 +3162 9218 0.4990 +3162 9332 0.6310 +3162 9360 0.4320 +3162 9370 0.5270 +3162 9381 0.5000 +3162 9451 0.5780 +3162 9474 0.4750 +3162 9524 0.4010 +3162 9563 0.5060 +3162 9588 0.4230 +3162 9817 0.9340 +3162 9843 0.9350 +3162 9978 0.4540 +3162 10042 0.5210 +3162 10043 0.4560 +3162 10476 0.4040 +3162 10533 0.4650 +3162 10587 0.4040 +3162 10628 0.8590 +3162 10891 0.6540 +3162 10914 0.6080 +3162 10935 0.4720 +3162 10952 0.5000 +3162 11315 0.4710 +3162 22797 0.5450 +3162 22926 0.4490 +3162 23410 0.5110 +3162 23411 0.7330 +3162 23438 0.6970 +3162 23480 0.5000 +3162 23657 0.6100 +3162 23764 0.4120 +3162 25828 0.6100 +3162 26002 0.4320 +3162 27035 0.6260 +3162 27230 0.5310 +3162 27306 0.6000 +3162 28982 0.4560 +3162 30061 0.5860 +3162 50506 0.5120 +3162 50507 0.6990 +3162 50943 0.6360 +3162 51548 0.4060 +3162 51608 0.5000 +3162 53905 0.5610 +3162 54205 0.8270 +3162 54575 0.4900 +3162 54576 0.4920 +3162 54577 0.4900 +3162 54578 0.4940 +3162 54657 0.4880 +3162 54658 0.5210 +3162 55240 0.5190 +3162 55620 0.4580 +3162 55640 0.5930 +3162 55652 0.4450 +3162 55922 0.6010 +3162 56903 0.4340 +3162 57817 0.5830 +3162 58157 0.4160 +3162 64852 0.7000 +3162 64895 0.4610 +3162 65018 0.4590 +3162 79661 0.4180 +3162 79901 0.5300 +3162 81502 0.7910 +3162 81631 0.5120 +3162 84706 0.4820 +3162 84823 0.6190 +3162 112812 0.4060 +3162 113235 0.7930 +3162 114548 0.8920 +3162 118424 0.4990 +3162 133482 0.5440 +3162 137902 0.6960 +3162 140809 0.6500 +3162 150353 0.4450 +3162 169355 0.4760 +3162 252969 0.5060 +3162 257202 0.8420 +3162 440093 0.4830 +3162 440686 0.4830 +3162 493869 0.8420 +3162 653361 0.5320 +3162 653604 0.4830 +3162 100506658 0.4780 +3163 3240 0.4040 +3163 3263 0.5750 +3163 3778 0.6550 +3163 4151 0.6440 +3163 4174 0.4530 +3163 4627 0.4050 +3163 4780 0.7080 +3163 4842 0.6350 +3163 4843 0.4840 +3163 4846 0.6910 +3163 4891 0.4230 +3163 5210 0.4760 +3163 5337 0.4730 +3163 5372 0.4920 +3163 5373 0.4400 +3163 5447 0.7760 +3163 5498 0.5270 +3163 6751 0.4220 +3163 6793 0.4160 +3163 7389 0.4710 +3163 7390 0.4030 +3163 8560 0.4310 +3163 8773 0.4010 +3163 8826 0.4080 +3163 9817 0.4830 +3163 9843 0.9160 +3163 10042 0.5520 +3163 10043 0.4940 +3163 11113 0.4030 +3163 23438 0.9250 +3163 28982 0.4250 +3163 54205 0.5120 +3163 57407 0.4750 +3163 83440 0.4190 +3163 85365 0.4470 +3163 91010 0.4060 +3163 112812 0.4150 +3163 257202 0.5160 +3163 374882 0.4240 +3163 493869 0.5360 +3163 102800317 0.4250 +3164 3169 0.4990 +3164 3172 0.4600 +3164 3283 0.5850 +3164 3284 0.7130 +3164 3397 0.4520 +3164 3429 0.6130 +3164 3458 0.4340 +3164 3486 0.5860 +3164 3491 0.5010 +3164 3553 0.4200 +3164 3569 0.6610 +3164 3576 0.5250 +3164 3630 0.4250 +3164 3662 0.4340 +3164 3665 0.4850 +3164 3725 0.8250 +3164 3726 0.6960 +3164 3727 0.5330 +3164 4088 0.5210 +3164 4092 0.4570 +3164 4205 0.5520 +3164 4209 0.6850 +3164 4609 0.4340 +3164 4616 0.5400 +3164 4773 0.5540 +3164 4783 0.4500 +3164 4790 0.4450 +3164 4803 0.5750 +3164 4851 0.4880 +3164 4929 0.7820 +3164 5105 0.4530 +3164 5133 0.4990 +3164 5309 0.4590 +3164 5443 0.6470 +3164 5468 0.6360 +3164 5469 0.7260 +3164 5530 0.5140 +3164 5566 0.9320 +3164 5567 0.9320 +3164 5568 0.9320 +3164 5580 0.4180 +3164 5590 0.4310 +3164 5594 0.9240 +3164 5595 0.9350 +3164 5598 0.9280 +3164 5599 0.6060 +3164 5743 0.6090 +3164 5788 0.4470 +3164 5970 0.4670 +3164 5997 0.4440 +3164 6256 0.9900 +3164 6258 0.4240 +3164 6597 0.7410 +3164 6599 0.4870 +3164 6667 0.5250 +3164 6714 0.5250 +3164 6722 0.4230 +3164 6774 0.5800 +3164 6794 0.6380 +3164 6938 0.5500 +3164 7025 0.4920 +3164 7071 0.4700 +3164 7124 0.6680 +3164 7157 0.8170 +3164 7186 0.6130 +3164 7538 0.4970 +3164 7832 0.7750 +3164 8013 0.8170 +3164 8061 0.4420 +3164 8148 0.5020 +3164 8202 0.4060 +3164 8431 0.4480 +3164 8648 0.7160 +3164 8651 0.4240 +3164 8878 0.7110 +3164 8999 0.4240 +3164 9021 0.6260 +3164 9252 0.4380 +3164 9314 0.5250 +3164 9456 0.4010 +3164 9592 0.6690 +3164 9611 0.7480 +3164 9612 0.8920 +3164 9734 0.6410 +3164 10000 0.9030 +3164 10017 0.7460 +3164 10018 0.4090 +3164 10155 0.6100 +3164 10365 0.4940 +3164 10499 0.4310 +3164 10912 0.4170 +3164 11266 0.6910 +3164 23129 0.7750 +3164 23186 0.5060 +3164 23237 0.5140 +3164 23523 0.6650 +3164 23764 0.4490 +3164 25942 0.4590 +3164 26040 0.4120 +3164 27043 0.5070 +3164 30009 0.4320 +3164 50943 0.4740 +3164 51132 0.4090 +3164 51564 0.6890 +3164 51806 0.5100 +3164 54778 0.4100 +3164 54890 0.4140 +3164 90007 0.4380 +3164 90480 0.6400 +3164 91860 0.5100 +3164 150094 0.6590 +3164 163688 0.5100 +3164 266743 0.6670 +3164 100271849 0.4850 +3166 5076 0.6240 +3166 5522 0.4830 +3166 163033 0.4360 +3167 5076 0.6240 +3167 9184 0.5660 +3167 11249 0.5270 +3167 51083 0.6870 +3167 57476 0.4800 +3167 116135 0.4190 +3169 3170 0.7100 +3169 3171 0.8020 +3169 3172 0.8330 +3169 3174 0.5560 +3169 3175 0.8880 +3169 3265 0.5080 +3169 3276 0.5690 +3169 3320 0.5930 +3169 3326 0.5900 +3169 3375 0.4400 +3169 3480 0.4060 +3169 3484 0.5090 +3169 3630 0.4170 +3169 3642 0.5230 +3169 3651 0.6290 +3169 3670 0.4110 +3169 3725 0.8170 +3169 3727 0.6030 +3169 3817 0.4240 +3169 3818 0.4150 +3169 3845 0.5920 +3169 3852 0.5770 +3169 3856 0.6230 +3169 3860 0.4380 +3169 3861 0.5200 +3169 3875 0.5430 +3169 3880 0.5130 +3169 3960 0.4030 +3169 4009 0.5740 +3169 4010 0.5090 +3169 4072 0.4760 +3169 4088 0.5040 +3169 4089 0.5640 +3169 4208 0.4950 +3169 4435 0.5980 +3169 4609 0.7640 +3169 4673 0.4230 +3169 4760 0.4130 +3169 4763 0.7120 +3169 4773 0.4410 +3169 4774 0.5070 +3169 4778 0.4590 +3169 4782 0.6730 +3169 4784 0.6980 +3169 4790 0.5750 +3169 4821 0.4780 +3169 4824 0.6880 +3169 4825 0.4230 +3169 4929 0.4210 +3169 5015 0.4800 +3169 5078 0.5860 +3169 5079 0.4010 +3169 5080 0.4960 +3169 5083 0.4260 +3169 5087 0.8760 +3169 5159 0.4760 +3169 5241 0.8870 +3169 5290 0.7060 +3169 5309 0.4110 +3169 5351 0.4800 +3169 5451 0.6890 +3169 5454 0.4010 +3169 5460 0.7930 +3169 5468 0.4170 +3169 5604 0.4140 +3169 5715 0.6070 +3169 5728 0.5710 +3169 5885 0.6040 +3169 5914 0.7840 +3169 5916 0.5360 +3169 6158 0.5100 +3169 6161 0.5270 +3169 6175 0.4110 +3169 6256 0.4120 +3169 6422 0.5240 +3169 6469 0.8670 +3169 6591 0.4590 +3169 6601 0.4190 +3169 6615 0.4220 +3169 6657 0.7400 +3169 6659 0.4280 +3169 6662 0.5400 +3169 6688 0.4500 +3169 6696 0.4450 +3169 6772 0.5600 +3169 6774 0.4190 +3169 6908 0.7580 +3169 6926 0.5780 +3169 6927 0.8520 +3169 6928 0.4560 +3169 6934 0.6090 +3169 7022 0.7980 +3169 7025 0.6090 +3169 7026 0.5810 +3169 7031 0.8800 +3169 7033 0.7140 +3169 7080 0.9160 +3169 7088 0.5980 +3169 7090 0.9760 +3169 7113 0.6370 +3169 7153 0.4350 +3169 7157 0.7350 +3169 7227 0.5260 +3169 7276 0.5970 +3169 7291 0.4310 +3169 7348 0.4110 +3169 7379 0.4590 +3169 7391 0.4130 +3169 7403 0.5340 +3169 7477 0.5300 +3169 7494 0.4990 +3169 7528 0.7040 +3169 8019 0.5370 +3169 8061 0.5610 +3169 8085 0.6250 +3169 8202 0.8540 +3169 8204 0.9020 +3169 8290 0.6880 +3169 8331 0.5100 +3169 8334 0.5180 +3169 8337 0.5960 +3169 8338 0.5930 +3169 8340 0.5350 +3169 8341 0.5310 +3169 8342 0.5320 +3169 8345 0.5340 +3169 8347 0.5500 +3169 8348 0.5330 +3169 8349 0.6020 +3169 8356 0.8370 +3169 8361 0.5630 +3169 8405 0.6960 +3169 8554 0.7840 +3169 8626 0.5320 +3169 8648 0.6490 +3169 8651 0.4280 +3169 8683 0.5100 +3169 8815 0.4340 +3169 8821 0.5160 +3169 8850 0.5650 +3169 8856 0.4410 +3169 8970 0.5350 +3169 9070 0.4260 +3169 9126 0.4830 +3169 9314 0.4930 +3169 9480 0.4180 +3169 9611 0.4140 +3169 9687 0.6740 +3169 9734 0.8810 +3169 9968 0.4330 +3169 10038 0.7450 +3169 10127 0.5450 +3169 10370 0.4200 +3169 10413 0.5030 +3169 10481 0.6750 +3169 10498 0.6110 +3169 10524 0.5700 +3169 10551 0.8500 +3169 10664 0.7720 +3169 10728 0.5020 +3169 10916 0.4200 +3169 11060 0.4070 +3169 11065 0.4160 +3169 11091 0.5890 +3169 11168 0.5230 +3169 22803 0.5100 +3169 23028 0.7010 +3169 23078 0.5160 +3169 23234 0.5110 +3169 23414 0.5300 +3169 23476 0.4160 +3169 23521 0.5670 +3169 25803 0.7090 +3169 25928 0.4240 +3169 26257 0.4610 +3169 26528 0.5170 +3169 26578 0.4080 +3169 27292 0.5100 +3169 27324 0.4520 +3169 50674 0.4420 +3169 51564 0.9760 +3169 51804 0.4110 +3169 54145 0.5340 +3169 54433 0.5100 +3169 54474 0.4240 +3169 55193 0.4350 +3169 55505 0.5690 +3169 55766 0.5140 +3169 55818 0.4390 +3169 55897 0.4470 +3169 58508 0.8250 +3169 63978 0.4710 +3169 64321 0.7880 +3169 79083 0.4130 +3169 79624 0.4120 +3169 79923 0.6730 +3169 79977 0.6650 +3169 80312 0.5240 +3169 80829 0.5660 +3169 83881 0.6970 +3169 85236 0.5360 +3169 85395 0.5100 +3169 94239 0.5610 +3169 128312 0.5360 +3169 140628 0.6560 +3169 145282 0.4540 +3169 155465 0.4720 +3169 161882 0.4840 +3169 255626 0.5330 +3169 256297 0.4560 +3169 344022 0.7880 +3169 440093 0.6810 +3169 440686 0.6810 +3169 474382 0.5100 +3169 653604 0.8330 +3169 102288414 0.5100 +3170 3172 0.8620 +3170 3174 0.7770 +3170 3175 0.9630 +3170 3202 0.6380 +3170 3213 0.4800 +3170 3375 0.4990 +3170 3549 0.4700 +3170 3630 0.7870 +3170 3642 0.5550 +3170 3651 0.9680 +3170 3670 0.6580 +3170 3763 0.5710 +3170 3767 0.6640 +3170 3791 0.4400 +3170 3845 0.5230 +3170 3856 0.4660 +3170 3875 0.5200 +3170 3880 0.5230 +3170 3975 0.6690 +3170 3976 0.4700 +3170 4009 0.8030 +3170 4010 0.6480 +3170 4072 0.4870 +3170 4087 0.6970 +3170 4088 0.7750 +3170 4222 0.4370 +3170 4303 0.4250 +3170 4487 0.5520 +3170 4586 0.5030 +3170 4609 0.5170 +3170 4760 0.6820 +3170 4773 0.4830 +3170 4790 0.4840 +3170 4821 0.8550 +3170 4825 0.8270 +3170 4838 0.5160 +3170 4885 0.4480 +3170 4929 0.6700 +3170 5008 0.4020 +3170 5013 0.4110 +3170 5015 0.9180 +3170 5075 0.5780 +3170 5077 0.4650 +3170 5078 0.6300 +3170 5080 0.8140 +3170 5081 0.4560 +3170 5092 0.4420 +3170 5207 0.4940 +3170 5265 0.4220 +3170 5308 0.4060 +3170 5309 0.6880 +3170 5367 0.6670 +3170 5449 0.5060 +3170 5454 0.5420 +3170 5460 0.8820 +3170 5465 0.4120 +3170 5468 0.4130 +3170 5629 0.4940 +3170 5715 0.4270 +3170 5727 0.4430 +3170 5885 0.4670 +3170 6198 0.9190 +3170 6199 0.9140 +3170 6299 0.5260 +3170 6422 0.5000 +3170 6440 0.4270 +3170 6469 0.9560 +3170 6496 0.7830 +3170 6514 0.6880 +3170 6531 0.4580 +3170 6571 0.4830 +3170 6608 0.4740 +3170 6615 0.4500 +3170 6656 0.7010 +3170 6657 0.8410 +3170 6658 0.4290 +3170 6662 0.6640 +3170 6664 0.4150 +3170 6696 0.4510 +3170 6721 0.4930 +3170 6736 0.4790 +3170 6750 0.4330 +3170 6833 0.6990 +3170 6862 0.7580 +3170 6872 0.4440 +3170 6898 0.4180 +3170 6910 0.4410 +3170 6911 0.5370 +3170 6926 0.5440 +3170 6927 0.8990 +3170 6928 0.6370 +3170 6934 0.7030 +3170 6997 0.6040 +3170 7004 0.6470 +3170 7044 0.7090 +3170 7054 0.6630 +3170 7057 0.4220 +3170 7080 0.7780 +3170 7088 0.6960 +3170 7090 0.4120 +3170 7157 0.4230 +3170 7276 0.8610 +3170 7356 0.4350 +3170 7391 0.5910 +3170 7471 0.4840 +3170 7473 0.5110 +3170 7474 0.4220 +3170 7528 0.4450 +3170 7546 0.7530 +3170 7547 0.4080 +3170 7702 0.4380 +3170 7849 0.4530 +3170 7852 0.5640 +3170 8290 0.4030 +3170 8320 0.7270 +3170 8431 0.4260 +3170 8433 0.5530 +3170 8463 0.6070 +3170 8554 0.4260 +3170 8646 0.5370 +3170 8788 0.6110 +3170 8817 0.4080 +3170 8822 0.4080 +3170 8823 0.4150 +3170 8856 0.4360 +3170 8928 0.6260 +3170 9075 0.4260 +3170 9241 0.6270 +3170 9314 0.6110 +3170 9350 0.5450 +3170 9480 0.7570 +3170 9573 0.4010 +3170 9839 0.4950 +3170 9935 0.4890 +3170 9971 0.4490 +3170 10127 0.4550 +3170 10215 0.5090 +3170 10370 0.4870 +3170 10381 0.4080 +3170 10413 0.6190 +3170 10512 0.4490 +3170 10589 0.5060 +3170 10637 0.5140 +3170 10664 0.4640 +3170 10699 0.4550 +3170 10763 0.6370 +3170 11278 0.4570 +3170 22943 0.5030 +3170 23040 0.4920 +3170 25803 0.5360 +3170 26281 0.4300 +3170 50674 0.7950 +3170 54778 0.7500 +3170 55897 0.6110 +3170 57167 0.4020 +3170 60436 0.4190 +3170 63973 0.5340 +3170 63978 0.6250 +3170 64321 0.9420 +3170 79191 0.4280 +3170 79727 0.4330 +3170 79923 0.8150 +3170 83595 0.5880 +3170 83881 0.8020 +3170 84504 0.8220 +3170 84976 0.8050 +3170 89780 0.6360 +3170 93986 0.4700 +3170 94121 0.5300 +3170 132625 0.4130 +3170 133522 0.4250 +3170 140628 0.6970 +3170 145258 0.4920 +3170 221895 0.4060 +3170 222546 0.4960 +3170 222894 0.4150 +3170 256297 0.5940 +3170 344022 0.8460 +3170 390874 0.6480 +3170 440686 0.4030 +3170 653604 0.4020 +3171 3172 0.6670 +3171 3174 0.5610 +3171 3175 0.6150 +3171 3484 0.4760 +3171 3651 0.6110 +3171 3725 0.5090 +3171 4586 0.4840 +3171 4821 0.4860 +3171 5629 0.4980 +3171 6657 0.4010 +3171 6662 0.4080 +3171 6774 0.5020 +3171 6927 0.9300 +3171 6928 0.5500 +3171 7031 0.5560 +3171 7157 0.5700 +3171 7276 0.7080 +3171 8856 0.4580 +3171 9970 0.4040 +3171 22809 0.4230 +3171 25803 0.6420 +3171 58498 0.4720 +3171 64321 0.4910 +3172 3175 0.8670 +3172 3206 0.4780 +3172 3214 0.5250 +3172 3276 0.4880 +3172 3308 0.4210 +3172 3320 0.4470 +3172 3326 0.4570 +3172 3479 0.6160 +3172 3480 0.4170 +3172 3481 0.5920 +3172 3516 0.5180 +3172 3549 0.4680 +3172 3553 0.4020 +3172 3569 0.4710 +3172 3630 0.6480 +3172 3651 0.7370 +3172 3661 0.5390 +3172 3667 0.5260 +3172 3670 0.4910 +3172 3725 0.8890 +3172 3827 0.4760 +3172 3845 0.4480 +3172 3855 0.5930 +3172 3856 0.4280 +3172 3875 0.5120 +3172 3880 0.6090 +3172 3938 0.4720 +3172 3958 0.4970 +3172 4040 0.7260 +3172 4041 0.8020 +3172 4072 0.6930 +3172 4087 0.8750 +3172 4088 0.9570 +3172 4089 0.9900 +3172 4092 0.7710 +3172 4193 0.5300 +3172 4215 0.4030 +3172 4233 0.4660 +3172 4286 0.4380 +3172 4313 0.4100 +3172 4316 0.5840 +3172 4318 0.4660 +3172 4547 0.7750 +3172 4609 0.9210 +3172 4613 0.6240 +3172 4693 0.4020 +3172 4760 0.6390 +3172 4779 0.4710 +3172 4790 0.6350 +3172 4851 0.6500 +3172 5008 0.4460 +3172 5036 0.9050 +3172 5078 0.4240 +3172 5080 0.4370 +3172 5105 0.5940 +3172 5106 0.4710 +3172 5207 0.4080 +3172 5243 0.4040 +3172 5265 0.6270 +3172 5313 0.4070 +3172 5315 0.6480 +3172 5460 0.5900 +3172 5468 0.5820 +3172 5469 0.8780 +3172 5566 0.5700 +3172 5567 0.4180 +3172 5568 0.4160 +3172 5594 0.4760 +3172 5595 0.6150 +3172 5599 0.5330 +3172 5629 0.7770 +3172 5716 0.4420 +3172 5728 0.4840 +3172 5917 0.5480 +3172 6093 0.5330 +3172 6256 0.4290 +3172 6259 0.5410 +3172 6319 0.4120 +3172 6390 0.4180 +3172 6391 0.5270 +3172 6422 0.5830 +3172 6423 0.5050 +3172 6469 0.5520 +3172 6477 0.5990 +3172 6500 0.5280 +3172 6514 0.6630 +3172 6554 0.5350 +3172 6591 0.5700 +3172 6597 0.6040 +3172 6608 0.4050 +3172 6615 0.7640 +3172 6657 0.8130 +3172 6659 0.6020 +3172 6662 0.6030 +3172 6664 0.5160 +3172 6667 0.6720 +3172 6714 0.7500 +3172 6720 0.8860 +3172 6721 0.8450 +3172 6722 0.5530 +3172 6736 0.4510 +3172 6774 0.5570 +3172 6776 0.4110 +3172 6777 0.4390 +3172 6822 0.6040 +3172 6833 0.4050 +3172 6872 0.4350 +3172 6874 0.4350 +3172 6898 0.5220 +3172 6908 0.5230 +3172 6925 0.4470 +3172 6927 0.9880 +3172 6928 0.8510 +3172 6932 0.7810 +3172 6934 0.9280 +3172 6938 0.5390 +3172 7015 0.6110 +3172 7026 0.4510 +3172 7036 0.4240 +3172 7040 0.5120 +3172 7082 0.4160 +3172 7088 0.9230 +3172 7089 0.5140 +3172 7090 0.5770 +3172 7091 0.5490 +3172 7124 0.4460 +3172 7157 0.8680 +3172 7182 0.4220 +3172 7276 0.5320 +3172 7291 0.4180 +3172 7329 0.4380 +3172 7391 0.5150 +3172 7471 0.8270 +3172 7472 0.4830 +3172 7473 0.6040 +3172 7474 0.6700 +3172 7475 0.4790 +3172 7476 0.5810 +3172 7477 0.5410 +3172 7478 0.4060 +3172 7480 0.5720 +3172 7481 0.5800 +3172 7482 0.4800 +3172 7483 0.4190 +3172 7484 0.4480 +3172 7514 0.4210 +3172 7528 0.4340 +3172 7541 0.4560 +3172 7545 0.5590 +3172 7546 0.4980 +3172 7837 0.4790 +3172 7855 0.4890 +3172 8100 0.4710 +3172 8202 0.5900 +3172 8204 0.5670 +3172 8290 0.4840 +3172 8312 0.9260 +3172 8313 0.7840 +3172 8321 0.5810 +3172 8322 0.5130 +3172 8323 0.4470 +3172 8324 0.5420 +3172 8325 0.4750 +3172 8326 0.4320 +3172 8356 0.4840 +3172 8431 0.9940 +3172 8435 0.4730 +3172 8462 0.4370 +3172 8549 0.6050 +3172 8607 0.5170 +3172 8647 0.5080 +3172 8648 0.9650 +3172 8658 0.7020 +3172 8817 0.4510 +3172 8822 0.4470 +3172 8823 0.4570 +3172 8840 0.6060 +3172 8841 0.4370 +3172 8842 0.5060 +3172 8850 0.5610 +3172 8856 0.8290 +3172 8864 0.7240 +3172 8945 0.7500 +3172 9075 0.4040 +3172 9213 0.6790 +3172 9241 0.4160 +3172 9282 0.8410 +3172 9314 0.4790 +3172 9360 0.4900 +3172 9429 0.4030 +3172 9439 0.6250 +3172 9611 0.7660 +3172 9612 0.8240 +3172 9759 0.4490 +3172 9768 0.4540 +3172 9843 0.4110 +3172 9968 0.5010 +3172 9970 0.6670 +3172 9971 0.7860 +3172 10111 0.5160 +3172 10215 0.4380 +3172 10370 0.4130 +3172 10499 0.9440 +3172 10642 0.4660 +3172 10664 0.6040 +3172 10891 0.9980 +3172 11197 0.5770 +3172 22943 0.7240 +3172 23054 0.6460 +3172 23175 0.7390 +3172 23394 0.4760 +3172 23411 0.6910 +3172 23512 0.4250 +3172 26108 0.8020 +3172 26281 0.4710 +3172 27006 0.4440 +3172 27121 0.5870 +3172 27122 0.4560 +3172 27123 0.5810 +3172 28234 0.5420 +3172 29105 0.4280 +3172 29974 0.5250 +3172 50964 0.4870 +3172 51085 0.6870 +3172 51102 0.4500 +3172 51176 0.9990 +3172 51339 0.5020 +3172 51548 0.5480 +3172 51586 0.4980 +3172 51701 0.6660 +3172 53841 0.4160 +3172 54361 0.5830 +3172 54575 0.4210 +3172 54576 0.4430 +3172 54577 0.6130 +3172 54578 0.4440 +3172 54600 0.5200 +3172 54657 0.4320 +3172 54658 0.4370 +3172 54894 0.4790 +3172 55366 0.4460 +3172 55502 0.5090 +3172 56998 0.6340 +3172 57817 0.4530 +3172 57818 0.5730 +3172 64240 0.4350 +3172 64241 0.4120 +3172 64321 0.7980 +3172 64840 0.4470 +3172 64900 0.4090 +3172 79923 0.7240 +3172 80326 0.4710 +3172 80351 0.6820 +3172 81029 0.4750 +3172 83439 0.7700 +3172 83999 0.4170 +3172 84133 0.4750 +3172 84647 0.4780 +3172 84699 0.4260 +3172 85407 0.6750 +3172 85409 0.5100 +3172 89780 0.7920 +3172 90196 0.4500 +3172 90780 0.8520 +3172 92579 0.5610 +3172 93649 0.5410 +3172 133482 0.5610 +3172 133522 0.5090 +3172 137902 0.4790 +3172 148738 0.4300 +3172 200186 0.4330 +3172 200931 0.4380 +3172 257629 0.4120 +3172 283149 0.8960 +3172 284654 0.5770 +3172 340419 0.4070 +3172 440093 0.4840 +3172 440686 0.4840 +3172 653604 0.4840 +3172 100132074 0.4440 +3172 100861540 0.4340 +3174 3175 0.6800 +3174 5105 0.6630 +3174 5174 0.4480 +3174 5207 0.7660 +3174 5469 0.5060 +3174 5916 0.4250 +3174 6568 0.5070 +3174 6927 0.9430 +3174 7276 0.5000 +3174 9611 0.5570 +3174 9612 0.5350 +3174 9971 0.4330 +3174 10347 0.4070 +3174 29974 0.6220 +3174 55867 0.4050 +3174 79369 0.4540 +3174 80128 0.4450 +3174 92912 0.4470 +3174 134285 0.4530 +3174 220963 0.4300 +3175 3630 0.4360 +3175 3642 0.4820 +3175 3651 0.9280 +3175 3670 0.5620 +3175 3880 0.5200 +3175 3938 0.4040 +3175 3975 0.4500 +3175 4760 0.6120 +3175 4821 0.6090 +3175 4825 0.8490 +3175 5015 0.4230 +3175 5078 0.5750 +3175 5080 0.5560 +3175 5092 0.4390 +3175 5105 0.4540 +3175 5207 0.5440 +3175 5314 0.5170 +3175 5325 0.4360 +3175 5458 0.4730 +3175 5460 0.4200 +3175 5629 0.7700 +3175 6514 0.5950 +3175 6554 0.5990 +3175 6657 0.4060 +3175 6662 0.7550 +3175 6927 0.9160 +3175 6928 0.9560 +3175 7042 0.4290 +3175 7276 0.6380 +3175 7391 0.4700 +3175 7474 0.4220 +3175 7547 0.4300 +3175 8431 0.4810 +3175 9572 0.8000 +3175 9611 0.5080 +3175 10664 0.5870 +3175 10912 0.4420 +3175 23440 0.5270 +3175 23595 0.5380 +3175 50674 0.9670 +3175 56204 0.4760 +3175 56751 0.4330 +3175 64321 0.5790 +3175 84504 0.6630 +3175 94121 0.4420 +3175 121643 0.4150 +3175 140628 0.4990 +3175 169792 0.6120 +3175 220202 0.4580 +3175 222546 0.7080 +3175 256297 0.7110 +3175 338917 0.4560 +3175 390874 0.7700 +3176 3269 0.5250 +3176 3274 0.4870 +3176 3276 0.4310 +3176 3720 0.5360 +3176 3779 0.4310 +3176 3790 0.5410 +3176 4128 0.9480 +3176 4129 0.9470 +3176 4246 0.4970 +3176 4297 0.4200 +3176 4298 0.5400 +3176 4300 0.5980 +3176 4301 0.5200 +3176 4589 0.4950 +3176 5929 0.7420 +3176 6369 0.4230 +3176 6580 0.4560 +3176 6597 0.5930 +3176 6839 0.6640 +3176 7391 0.6250 +3176 7468 0.4470 +3176 7528 0.5680 +3176 7941 0.5350 +3176 8028 0.6720 +3176 8290 0.6690 +3176 8337 0.5060 +3176 8338 0.5060 +3176 8349 0.4800 +3176 8356 0.6900 +3176 8361 0.4730 +3176 8369 0.4760 +3176 8726 0.4200 +3176 8850 0.4190 +3176 9070 0.8200 +3176 9575 0.4650 +3176 9611 0.5080 +3176 9612 0.4760 +3176 9622 0.4480 +3176 9739 0.8000 +3176 9869 0.5430 +3176 10498 0.4180 +3176 10919 0.6690 +3176 11091 0.8180 +3176 11107 0.4790 +3176 11168 0.5490 +3176 11213 0.4470 +3176 11251 0.4690 +3176 11255 0.7200 +3176 23028 0.5850 +3176 23067 0.7220 +3176 23135 0.4020 +3176 23186 0.5410 +3176 23512 0.6640 +3176 23743 0.5160 +3176 27238 0.4720 +3176 29072 0.5130 +3176 30827 0.6700 +3176 51131 0.4700 +3176 54623 0.4160 +3176 58508 0.4710 +3176 64324 0.4180 +3176 64754 0.4460 +3176 79723 0.4470 +3176 80332 0.4610 +3176 80335 0.7280 +3176 80854 0.5720 +3176 84444 0.5830 +3176 84661 0.4790 +3176 93166 0.5570 +3176 94103 0.5040 +3176 117156 0.4930 +3176 130013 0.4060 +3176 387129 0.5070 +3176 387893 0.4050 +3176 440093 0.6700 +3176 440686 0.6700 +3176 653604 0.6700 +3177 3251 0.4460 +3177 4860 0.4010 +3177 4907 0.4670 +3177 6564 0.4450 +3177 6565 0.4190 +3177 6580 0.4130 +3177 6583 0.5720 +3177 6584 0.5800 +3177 7083 0.4520 +3177 9153 0.8940 +3177 9154 0.8950 +3177 9376 0.4260 +3177 9429 0.4240 +3177 10057 0.4730 +3177 10227 0.4260 +3177 10257 0.4970 +3177 10864 0.5120 +3177 11309 0.4190 +3177 22978 0.4210 +3177 26019 0.4180 +3177 28231 0.4450 +3177 28232 0.4880 +3177 29015 0.4280 +3177 51727 0.4010 +3177 55244 0.4160 +3177 55315 0.9250 +3177 55655 0.4320 +3177 64078 0.8940 +3177 84804 0.4440 +3178 3181 0.9980 +3178 3182 0.8440 +3178 3183 0.9990 +3178 3184 0.9320 +3178 3185 0.9830 +3178 3187 0.9980 +3178 3188 0.9620 +3178 3189 0.9800 +3178 3190 0.9950 +3178 3191 0.9930 +3178 3192 0.9920 +3178 3275 0.7930 +3178 3276 0.9130 +3178 3301 0.4770 +3178 3308 0.5390 +3178 3309 0.5670 +3178 3312 0.6040 +3178 3313 0.4080 +3178 3320 0.6450 +3178 3326 0.6510 +3178 3336 0.4390 +3178 3337 0.5410 +3178 3608 0.9310 +3178 3646 0.4910 +3178 3725 0.5920 +3178 3837 0.6360 +3178 3838 0.4100 +3178 3842 0.9980 +3178 3845 0.5820 +3178 3921 0.7070 +3178 4000 0.5270 +3178 4001 0.4420 +3178 4076 0.4940 +3178 4116 0.5970 +3178 4137 0.6670 +3178 4150 0.5430 +3178 4154 0.8570 +3178 4193 0.6400 +3178 4236 0.4510 +3178 4343 0.5290 +3178 4440 0.4190 +3178 4486 0.6580 +3178 4602 0.5120 +3178 4609 0.8250 +3178 4670 0.9930 +3178 4673 0.6520 +3178 4686 0.8880 +3178 4691 0.8320 +3178 4736 0.5800 +3178 4750 0.4080 +3178 4751 0.5150 +3178 4792 0.4010 +3178 4809 0.4860 +3178 4831 0.6460 +3178 4841 0.9450 +3178 4857 0.5660 +3178 4858 0.4700 +3178 4869 0.9230 +3178 4904 0.9370 +3178 4928 0.5310 +3178 5036 0.5690 +3178 5071 0.4430 +3178 5093 0.9660 +3178 5094 0.9400 +3178 5204 0.4270 +3178 5216 0.5990 +3178 5245 0.4270 +3178 5250 0.4930 +3178 5315 0.8370 +3178 5411 0.4020 +3178 5431 0.5720 +3178 5432 0.6100 +3178 5433 0.5840 +3178 5434 0.6050 +3178 5435 0.5830 +3178 5436 0.6360 +3178 5437 0.6580 +3178 5438 0.6470 +3178 5439 0.5550 +3178 5440 0.5590 +3178 5441 0.7030 +3178 5478 0.6650 +3178 5591 0.4620 +3178 5594 0.4810 +3178 5684 0.5350 +3178 5689 0.5290 +3178 5715 0.5970 +3178 5725 0.9980 +3178 5757 0.7050 +3178 5813 0.7170 +3178 5870 0.4130 +3178 5901 0.5310 +3178 5905 0.6510 +3178 5935 0.7240 +3178 5940 0.6880 +3178 5976 0.7660 +3178 6047 0.5250 +3178 6050 0.4810 +3178 6122 0.5140 +3178 6124 0.6230 +3178 6125 0.8160 +3178 6128 0.5530 +3178 6129 0.5350 +3178 6130 0.4430 +3178 6132 0.5090 +3178 6133 0.4990 +3178 6135 0.4300 +3178 6136 0.5530 +3178 6137 0.4470 +3178 6138 0.4450 +3178 6143 0.4970 +3178 6147 0.4950 +3178 6154 0.4820 +3178 6155 0.4350 +3178 6156 0.4100 +3178 6157 0.6120 +3178 6165 0.4560 +3178 6175 0.6050 +3178 6181 0.6370 +3178 6187 0.5940 +3178 6188 0.7060 +3178 6189 0.6930 +3178 6191 0.5180 +3178 6193 0.5530 +3178 6194 0.7700 +3178 6199 0.4450 +3178 6201 0.4850 +3178 6202 0.6220 +3178 6203 0.4280 +3178 6204 0.4190 +3178 6205 0.5140 +3178 6206 0.4090 +3178 6207 0.4590 +3178 6208 0.4440 +3178 6209 0.4320 +3178 6210 0.4520 +3178 6217 0.5600 +3178 6222 0.4540 +3178 6223 0.4050 +3178 6224 0.8360 +3178 6227 0.5110 +3178 6228 0.5000 +3178 6229 0.4740 +3178 6230 0.7090 +3178 6233 0.4740 +3178 6234 0.4730 +3178 6240 0.6480 +3178 6241 0.7040 +3178 6294 0.8690 +3178 6311 0.7820 +3178 6418 0.5120 +3178 6421 0.9700 +3178 6426 0.9930 +3178 6427 0.8220 +3178 6428 0.9700 +3178 6429 0.8060 +3178 6430 0.9490 +3178 6431 0.9250 +3178 6432 0.9640 +3178 6434 0.9530 +3178 6606 0.9200 +3178 6607 0.8840 +3178 6625 0.8370 +3178 6626 0.7410 +3178 6627 0.5310 +3178 6628 0.7160 +3178 6629 0.6220 +3178 6631 0.7550 +3178 6632 0.8520 +3178 6633 0.8680 +3178 6634 0.8930 +3178 6635 0.8380 +3178 6636 0.8690 +3178 6637 0.7880 +3178 6647 0.5330 +3178 6652 0.4040 +3178 6683 0.5640 +3178 6714 0.4690 +3178 6732 0.6510 +3178 6733 0.4180 +3178 6741 0.9030 +3178 6780 0.4990 +3178 6874 0.4300 +3178 6908 0.4360 +3178 6936 0.5130 +3178 6950 0.4010 +3178 7015 0.5030 +3178 7046 0.4770 +3178 7072 0.7160 +3178 7073 0.8020 +3178 7124 0.4130 +3178 7150 0.5350 +3178 7157 0.5560 +3178 7158 0.5210 +3178 7167 0.4580 +3178 7168 0.5010 +3178 7203 0.4820 +3178 7205 0.4260 +3178 7277 0.4290 +3178 7284 0.4540 +3178 7307 0.9300 +3178 7329 0.5500 +3178 7341 0.6660 +3178 7415 0.6920 +3178 7443 0.4630 +3178 7458 0.5490 +3178 7486 0.5180 +3178 7514 0.7040 +3178 7520 0.6430 +3178 7531 0.5070 +3178 7534 0.4360 +3178 7536 0.6780 +3178 7555 0.7200 +3178 7812 0.4740 +3178 7913 0.4750 +3178 7916 0.4600 +3178 7919 0.9510 +3178 7920 0.6240 +3178 8078 0.4290 +3178 8087 0.6540 +3178 8106 0.8850 +3178 8148 0.8860 +3178 8175 0.7800 +3178 8220 0.5630 +3178 8241 0.6850 +3178 8260 0.4960 +3178 8361 0.4430 +3178 8446 0.4190 +3178 8480 0.6110 +3178 8487 0.5890 +3178 8519 0.4170 +3178 8531 0.5950 +3178 8563 0.4020 +3178 8570 0.9640 +3178 8575 0.4530 +3178 8607 0.5470 +3178 8661 0.5620 +3178 8662 0.5720 +3178 8665 0.6200 +3178 8666 0.5500 +3178 8668 0.5820 +3178 8672 0.5710 +3178 8683 0.9100 +3178 8795 0.4500 +3178 8878 0.4590 +3178 8880 0.7030 +3178 8882 0.4230 +3178 8896 0.4590 +3178 8939 0.5000 +3178 9128 0.5090 +3178 9136 0.4570 +3178 9184 0.4460 +3178 9188 0.8030 +3178 9217 0.4880 +3178 9221 0.5490 +3178 9295 0.6480 +3178 9343 0.7670 +3178 9410 0.4810 +3178 9416 0.4480 +3178 9429 0.4220 +3178 9444 0.5710 +3178 9513 0.4800 +3178 9584 0.7450 +3178 9667 0.5380 +3178 9716 0.4180 +3178 9774 0.5290 +3178 9775 0.9390 +3178 9782 0.9800 +3178 9896 0.4480 +3178 9908 0.4040 +3178 9939 0.7560 +3178 9972 0.4090 +3178 9987 0.9200 +3178 9991 0.4910 +3178 10114 0.6490 +3178 10128 0.6870 +3178 10133 0.5140 +3178 10137 0.4520 +3178 10146 0.8030 +3178 10147 0.6630 +3178 10150 0.4400 +3178 10179 0.5420 +3178 10180 0.4350 +3178 10181 0.5210 +3178 10189 0.9570 +3178 10196 0.7410 +3178 10197 0.6650 +3178 10204 0.4330 +3178 10212 0.4960 +3178 10236 0.9890 +3178 10250 0.4280 +3178 10262 0.4230 +3178 10270 0.5280 +3178 10284 0.5600 +3178 10286 0.5030 +3178 10291 0.4650 +3178 10362 0.4230 +3178 10399 0.7130 +3178 10419 0.4650 +3178 10432 0.8830 +3178 10471 0.4180 +3178 10482 0.5820 +3178 10492 0.9470 +3178 10498 0.4790 +3178 10521 0.8650 +3178 10528 0.4830 +3178 10573 0.5960 +3178 10574 0.4650 +3178 10575 0.4650 +3178 10576 0.5860 +3178 10594 0.7260 +3178 10614 0.5120 +3178 10625 0.4360 +3178 10642 0.6340 +3178 10643 0.5600 +3178 10644 0.4400 +3178 10656 0.5360 +3178 10657 0.9750 +3178 10658 0.5670 +3178 10659 0.4220 +3178 10694 0.5290 +3178 10726 0.4140 +3178 10772 0.8910 +3178 10856 0.4340 +3178 10914 0.4280 +3178 10915 0.5840 +3178 10921 0.6120 +3178 10923 0.4520 +3178 10929 0.6250 +3178 10946 0.4520 +3178 10949 0.9080 +3178 10971 0.5380 +3178 10992 0.5170 +3178 11017 0.4170 +3178 11051 0.8180 +3178 11052 0.8100 +3178 11100 0.5680 +3178 11218 0.5910 +3178 11222 0.5500 +3178 11335 0.4720 +3178 11338 0.9080 +3178 11339 0.4480 +3178 11340 0.4240 +3178 22803 0.5550 +3178 22826 0.5480 +3178 22827 0.5530 +3178 22868 0.7950 +3178 22907 0.4820 +3178 22913 0.8820 +3178 22916 0.7520 +3178 22938 0.4520 +3178 22948 0.4920 +3178 22984 0.4430 +3178 22985 0.5650 +3178 23016 0.5530 +3178 23020 0.7410 +3178 23064 0.5580 +3178 23076 0.4200 +3178 23157 0.8750 +3178 23160 0.5250 +3178 23165 0.4430 +3178 23175 0.4120 +3178 23196 0.7240 +3178 23283 0.4780 +3178 23350 0.4430 +3178 23404 0.4560 +3178 23405 0.6610 +3178 23435 0.9970 +3178 23450 0.5620 +3178 23451 0.6240 +3178 23468 0.5250 +3178 23476 0.4470 +3178 23521 0.4300 +3178 23524 0.5340 +3178 23543 0.7160 +3178 23636 0.4040 +3178 24144 0.6520 +3178 24148 0.4200 +3178 25804 0.7210 +3178 25913 0.4070 +3178 25914 0.4360 +3178 25929 0.4050 +3178 25978 0.4830 +3178 26024 0.5440 +3178 26065 0.4370 +3178 26097 0.7410 +3178 26135 0.5930 +3178 26227 0.5770 +3178 26523 0.5240 +3178 26528 0.6920 +3178 26986 0.9450 +3178 26995 0.4860 +3178 27161 0.6280 +3178 27258 0.5500 +3178 27316 0.9820 +3178 27339 0.8680 +3178 27349 0.4120 +3178 27429 0.4840 +3178 28998 0.5910 +3178 29102 0.9150 +3178 29110 0.4060 +3178 29894 0.5500 +3178 29896 0.5480 +3178 29978 0.8520 +3178 29979 0.5420 +3178 30000 0.7210 +3178 50618 0.4190 +3178 51001 0.4170 +3178 51073 0.5730 +3178 51081 0.4060 +3178 51362 0.5900 +3178 51493 0.4440 +3178 51574 0.7430 +3178 51593 0.7220 +3178 51631 0.6150 +3178 51637 0.5070 +3178 51639 0.6200 +3178 51645 0.6040 +3178 51663 0.6570 +3178 51691 0.4710 +3178 54033 0.4160 +3178 54464 0.5410 +3178 54487 0.6480 +3178 54514 0.5030 +3178 54606 0.6230 +3178 54715 0.6310 +3178 54845 0.4100 +3178 55110 0.5830 +3178 55127 0.5110 +3178 55147 0.4430 +3178 55168 0.5030 +3178 55234 0.4590 +3178 55269 0.4160 +3178 55339 0.4580 +3178 55651 0.4170 +3178 55696 0.4910 +3178 55796 0.4130 +3178 56257 0.6990 +3178 56259 0.6740 +3178 56341 0.5030 +3178 56915 0.4110 +3178 56949 0.4910 +3178 57187 0.6180 +3178 57510 0.4260 +3178 57664 0.5140 +3178 57679 0.4630 +3178 57721 0.4340 +3178 57805 0.6060 +3178 58155 0.7650 +3178 58517 0.4970 +3178 64983 0.4620 +3178 65008 0.5750 +3178 65109 0.4390 +3178 65110 0.4140 +3178 78988 0.6070 +3178 79084 0.4570 +3178 79727 0.8170 +3178 79811 0.5150 +3178 79869 0.5180 +3178 80208 0.4200 +3178 80218 0.4410 +3178 81608 0.6000 +3178 83443 0.5630 +3178 83641 0.5990 +3178 84324 0.4780 +3178 84844 0.6830 +3178 84991 0.4220 +3178 85437 0.4980 +3178 90480 0.4250 +3178 92906 0.5030 +3178 113251 0.4270 +3178 120892 0.4290 +3178 122704 0.4380 +3178 124540 0.4200 +3178 129831 0.4070 +3178 133482 0.5890 +3178 135295 0.5100 +3178 140890 0.5140 +3178 143884 0.5510 +3178 144983 0.4440 +3178 146713 0.4450 +3178 159163 0.4890 +3178 170506 0.6500 +3178 202559 0.4010 +3178 203228 0.8080 +3178 220988 0.9490 +3178 221092 0.6590 +3178 284695 0.8610 +3178 378948 0.5130 +3178 378949 0.5080 +3178 378950 0.5590 +3178 378951 0.5020 +3178 389421 0.4610 +3178 389677 0.4350 +3178 400916 0.5070 +3178 642659 0.8010 +3178 728378 0.4010 +3178 100996928 0.5340 +3181 3182 0.9150 +3181 3183 0.9990 +3181 3184 0.9470 +3181 3185 0.9850 +3181 3187 0.9910 +3181 3188 0.8830 +3181 3189 0.9680 +3181 3190 0.9830 +3181 3191 0.9990 +3181 3192 0.9790 +3181 3242 0.5710 +3181 3276 0.4250 +3181 3301 0.4950 +3181 3308 0.5580 +3181 3309 0.4270 +3181 3312 0.6420 +3181 3320 0.6810 +3181 3326 0.7620 +3181 3329 0.4770 +3181 3481 0.4310 +3181 3485 0.5240 +3181 3486 0.4830 +3181 3608 0.8410 +3181 3646 0.4090 +3181 3661 0.5240 +3181 3837 0.4440 +3181 3842 0.8110 +3181 3845 0.4300 +3181 3921 0.5900 +3181 4000 0.5340 +3181 4076 0.4570 +3181 4116 0.5750 +3181 4137 0.5890 +3181 4144 0.4070 +3181 4154 0.9010 +3181 4155 0.6070 +3181 4172 0.4430 +3181 4236 0.4350 +3181 4609 0.7200 +3181 4670 0.9870 +3181 4678 0.4120 +3181 4686 0.4900 +3181 4691 0.9130 +3181 4809 0.4730 +3181 4841 0.9130 +3181 4857 0.4700 +3181 4869 0.8020 +3181 4900 0.4440 +3181 4904 0.9050 +3181 5036 0.6930 +3181 5093 0.9610 +3181 5094 0.8960 +3181 5204 0.4150 +3181 5216 0.4400 +3181 5230 0.4110 +3181 5245 0.4690 +3181 5250 0.4660 +3181 5315 0.7970 +3181 5411 0.5750 +3181 5478 0.6120 +3181 5657 0.4160 +3181 5682 0.4150 +3181 5684 0.6480 +3181 5685 0.4490 +3181 5687 0.4130 +3181 5688 0.4440 +3181 5689 0.4060 +3181 5704 0.4460 +3181 5725 0.9930 +3181 5757 0.7660 +3181 5813 0.8040 +3181 5901 0.5660 +3181 5931 0.4180 +3181 5935 0.4290 +3181 5976 0.5880 +3181 6041 0.4240 +3181 6047 0.5420 +3181 6122 0.4150 +3181 6124 0.5410 +3181 6125 0.4040 +3181 6132 0.4110 +3181 6136 0.4750 +3181 6144 0.4710 +3181 6157 0.5210 +3181 6175 0.4430 +3181 6181 0.5580 +3181 6187 0.4810 +3181 6188 0.5900 +3181 6189 0.5030 +3181 6191 0.4480 +3181 6201 0.4100 +3181 6202 0.5220 +3181 6203 0.4130 +3181 6205 0.4630 +3181 6207 0.4040 +3181 6208 0.4130 +3181 6210 0.4780 +3181 6217 0.5070 +3181 6222 0.4340 +3181 6223 0.5040 +3181 6224 0.7560 +3181 6228 0.4520 +3181 6230 0.5420 +3181 6233 0.4190 +3181 6234 0.4870 +3181 6240 0.4690 +3181 6241 0.4300 +3181 6294 0.6360 +3181 6311 0.6490 +3181 6418 0.5830 +3181 6421 0.9390 +3181 6426 0.9720 +3181 6427 0.9540 +3181 6428 0.9760 +3181 6429 0.6770 +3181 6430 0.8210 +3181 6431 0.8750 +3181 6432 0.9470 +3181 6434 0.9530 +3181 6477 0.5120 +3181 6513 0.5680 +3181 6515 0.4460 +3181 6606 0.7490 +3181 6607 0.6670 +3181 6613 0.5170 +3181 6625 0.8470 +3181 6626 0.6570 +3181 6627 0.5480 +3181 6628 0.5570 +3181 6629 0.5950 +3181 6631 0.5770 +3181 6632 0.8150 +3181 6633 0.7790 +3181 6634 0.7840 +3181 6635 0.7770 +3181 6636 0.7960 +3181 6637 0.7880 +3181 6647 0.4830 +3181 6651 0.6670 +3181 6657 0.6910 +3181 6732 0.4210 +3181 6741 0.8440 +3181 6775 0.7580 +3181 6780 0.5680 +3181 6874 0.4300 +3181 6936 0.5340 +3181 6950 0.5020 +3181 7015 0.4410 +3181 7072 0.7160 +3181 7073 0.6600 +3181 7113 0.5720 +3181 7150 0.5640 +3181 7157 0.4990 +3181 7158 0.4550 +3181 7175 0.4710 +3181 7184 0.4260 +3181 7203 0.4360 +3181 7205 0.4360 +3181 7307 0.8480 +3181 7319 0.4650 +3181 7329 0.4050 +3181 7341 0.6630 +3181 7415 0.6790 +3181 7428 0.8320 +3181 7458 0.4290 +3181 7514 0.5280 +3181 7520 0.5050 +3181 7532 0.4920 +3181 7534 0.7040 +3181 7536 0.5370 +3181 7538 0.4790 +3181 7555 0.5260 +3181 7756 0.5830 +3181 7812 0.5920 +3181 7916 0.6290 +3181 7919 0.7970 +3181 8087 0.5640 +3181 8106 0.7260 +3181 8148 0.8080 +3181 8175 0.7300 +3181 8241 0.6470 +3181 8260 0.5030 +3181 8266 0.4040 +3181 8356 0.5510 +3181 8361 0.5800 +3181 8518 0.5090 +3181 8570 0.7400 +3181 8575 0.4500 +3181 8607 0.5430 +3181 8661 0.4440 +3181 8662 0.5730 +3181 8663 0.4580 +3181 8666 0.5660 +3181 8667 0.4640 +3181 8668 0.5070 +3181 8683 0.8090 +3181 8846 0.5860 +3181 8878 0.5120 +3181 8880 0.8760 +3181 8894 0.4320 +3181 8896 0.4720 +3181 8939 0.4470 +3181 9040 0.4060 +3181 9136 0.4580 +3181 9184 0.4140 +3181 9188 0.4730 +3181 9217 0.4020 +3181 9295 0.7130 +3181 9343 0.7930 +3181 9410 0.4860 +3181 9444 0.4080 +3181 9513 0.5040 +3181 9584 0.8520 +3181 9589 0.8040 +3181 9603 0.4570 +3181 9774 0.5590 +3181 9775 0.6000 +3181 9782 0.9410 +3181 9793 0.5820 +3181 9879 0.4520 +3181 9908 0.4990 +3181 9939 0.6320 +3181 9987 0.9090 +3181 10128 0.7950 +3181 10133 0.4080 +3181 10146 0.6300 +3181 10166 0.9420 +3181 10180 0.4250 +3181 10181 0.5150 +3181 10189 0.8770 +3181 10197 0.6960 +3181 10212 0.4530 +3181 10236 0.9230 +3181 10250 0.4530 +3181 10284 0.5370 +3181 10286 0.4340 +3181 10291 0.4420 +3181 10399 0.5790 +3181 10432 0.7800 +3181 10471 0.4090 +3181 10482 0.5720 +3181 10492 0.9130 +3181 10521 0.6060 +3181 10528 0.4040 +3181 10574 0.4090 +3181 10575 0.4160 +3181 10576 0.5100 +3181 10594 0.6000 +3181 10614 0.4130 +3181 10642 0.9380 +3181 10643 0.9250 +3181 10644 0.8840 +3181 10657 0.9040 +3181 10658 0.8380 +3181 10694 0.5070 +3181 10726 0.4080 +3181 10728 0.5640 +3181 10772 0.8280 +3181 10921 0.4820 +3181 10923 0.4120 +3181 10929 0.7800 +3181 10933 0.4810 +3181 10946 0.5630 +3181 10949 0.8000 +3181 10992 0.7440 +3181 11051 0.7520 +3181 11052 0.7700 +3181 11100 0.4700 +3181 11335 0.8240 +3181 11338 0.8690 +3181 11339 0.4420 +3181 11340 0.4420 +3181 22826 0.5440 +3181 22849 0.5560 +3181 22913 0.7420 +3181 22916 0.4050 +3181 22938 0.5450 +3181 22948 0.4050 +3181 23016 0.6290 +3181 23020 0.5490 +3181 23064 0.4890 +3181 23091 0.8170 +3181 23160 0.5330 +3181 23210 0.6460 +3181 23237 0.5060 +3181 23404 0.4530 +3181 23405 0.6100 +3181 23435 0.9980 +3181 23450 0.5190 +3181 23451 0.8230 +3181 23476 0.4330 +3181 23524 0.4820 +3181 23543 0.6170 +3181 24144 0.6240 +3181 25804 0.4850 +3181 25914 0.4340 +3181 25957 0.4040 +3181 25962 0.8540 +3181 25978 0.4410 +3181 26097 0.6950 +3181 26135 0.4900 +3181 26986 0.6810 +3181 27161 0.5650 +3181 27252 0.5940 +3181 27258 0.5820 +3181 27316 0.9600 +3181 27332 0.5900 +3181 27339 0.7750 +3181 29063 0.4910 +3181 29081 0.4540 +3181 29102 0.6990 +3181 29110 0.7700 +3181 29890 0.7720 +3181 29894 0.4980 +3181 29896 0.7430 +3181 29978 0.6570 +3181 51340 0.5520 +3181 51428 0.4090 +3181 51441 0.8710 +3181 51574 0.5320 +3181 51593 0.6520 +3181 51602 0.4170 +3181 51631 0.4320 +3181 51634 0.4220 +3181 51637 0.4430 +3181 51639 0.5380 +3181 51676 0.4870 +3181 51691 0.4590 +3181 51747 0.5300 +3181 54464 0.5370 +3181 54487 0.9910 +3181 54514 0.4490 +3181 54715 0.5490 +3181 54888 0.4530 +3181 54890 0.7830 +3181 54915 0.9250 +3181 55110 0.5500 +3181 55127 0.5090 +3181 55234 0.4450 +3181 55512 0.4490 +3181 56257 0.4640 +3181 56259 0.7110 +3181 56339 0.8790 +3181 57187 0.5720 +3181 57721 0.8350 +3181 57819 0.4230 +3181 58155 0.6400 +3181 58517 0.7870 +3181 64393 0.6340 +3181 64506 0.5930 +3181 64783 0.7770 +3181 64848 0.8890 +3181 64863 0.4140 +3181 79066 0.7310 +3181 79068 0.7430 +3181 79872 0.6270 +3181 80218 0.4420 +3181 80315 0.5390 +3181 83443 0.5380 +3181 84324 0.4760 +3181 84844 0.5900 +3181 84991 0.4060 +3181 85414 0.6680 +3181 85437 0.4880 +3181 91746 0.9350 +3181 92906 0.4270 +3181 129831 0.4280 +3181 132864 0.5610 +3181 135295 0.4240 +3181 140890 0.5020 +3181 143884 0.5530 +3181 146713 0.4320 +3181 149041 0.5200 +3181 167227 0.4270 +3181 200933 0.5540 +3181 203228 0.6230 +3181 220988 0.9680 +3181 221092 0.5340 +3181 221120 0.5000 +3181 253943 0.8690 +3181 284695 0.6150 +3181 440738 0.4340 +3182 3183 0.9580 +3182 3184 0.8210 +3182 3185 0.7830 +3182 3187 0.9360 +3182 3188 0.7440 +3182 3189 0.8040 +3182 3190 0.8330 +3182 3191 0.7980 +3182 3192 0.8890 +3182 3320 0.5560 +3182 3608 0.4630 +3182 3837 0.4740 +3182 4154 0.4210 +3182 4609 0.4070 +3182 4670 0.8110 +3182 4686 0.4650 +3182 4691 0.5580 +3182 4841 0.6220 +3182 4904 0.8980 +3182 5093 0.7020 +3182 5094 0.4800 +3182 5245 0.4370 +3182 5725 0.9510 +3182 5901 0.4820 +3182 5976 0.4230 +3182 6193 0.4230 +3182 6224 0.4660 +3182 6240 0.4120 +3182 6418 0.4290 +3182 6421 0.6690 +3182 6426 0.8240 +3182 6427 0.8060 +3182 6428 0.5980 +3182 6430 0.4510 +3182 6431 0.6640 +3182 6432 0.4710 +3182 6434 0.5240 +3182 6606 0.5030 +3182 6625 0.5630 +3182 6626 0.5370 +3182 6628 0.5130 +3182 6631 0.4300 +3182 6632 0.4560 +3182 6633 0.5370 +3182 6634 0.5220 +3182 6635 0.5590 +3182 6636 0.6240 +3182 6637 0.5160 +3182 6741 0.4260 +3182 6749 0.4070 +3182 6780 0.6690 +3182 7015 0.4070 +3182 7307 0.4270 +3182 7327 0.6310 +3182 7536 0.4330 +3182 7919 0.5280 +3182 8106 0.8480 +3182 8148 0.4730 +3182 8175 0.7410 +3182 8266 0.4060 +3182 8361 0.5310 +3182 8487 0.4810 +3182 8570 0.7030 +3182 8626 0.5100 +3182 8662 0.5350 +3182 8683 0.5910 +3182 8882 0.4530 +3182 9040 0.4720 +3182 9055 0.4140 +3182 9188 0.4380 +3182 9232 0.5330 +3182 9343 0.5020 +3182 9584 0.5400 +3182 9589 0.5890 +3182 9656 0.5400 +3182 9775 0.4110 +3182 9782 0.4100 +3182 9802 0.5960 +3182 9939 0.4300 +3182 9987 0.5480 +3182 10146 0.6240 +3182 10155 0.4110 +3182 10189 0.7260 +3182 10236 0.5700 +3182 10492 0.8860 +3182 10576 0.4220 +3182 10594 0.5730 +3182 10614 0.4140 +3182 10642 0.5930 +3182 10657 0.5180 +3182 10921 0.4290 +3182 10929 0.5860 +3182 10949 0.7260 +3182 10992 0.4070 +3182 11100 0.5440 +3182 11218 0.5070 +3182 11338 0.6790 +3182 22803 0.4520 +3182 22849 0.4170 +3182 22913 0.5960 +3182 22916 0.7640 +3182 23091 0.6160 +3182 23136 0.4240 +3182 23283 0.4510 +3182 23435 0.6540 +3182 23450 0.4740 +3182 23476 0.4050 +3182 23543 0.7760 +3182 25962 0.5760 +3182 26065 0.5280 +3182 26528 0.5410 +3182 26986 0.4130 +3182 27067 0.4880 +3182 27316 0.7270 +3182 27339 0.6170 +3182 27429 0.4480 +3182 29890 0.5770 +3182 29894 0.4690 +3182 29974 0.6520 +3182 51081 0.5220 +3182 51428 0.4090 +3182 51726 0.5930 +3182 54715 0.7390 +3182 55651 0.4090 +3182 56257 0.4500 +3182 56339 0.5940 +3182 56949 0.4890 +3182 57721 0.6740 +3182 58155 0.6520 +3182 60489 0.4960 +3182 64432 0.6250 +3182 64506 0.4480 +3182 64783 0.5540 +3182 79077 0.4830 +3182 79872 0.5440 +3182 79968 0.5200 +3182 80315 0.4240 +3182 80829 0.4060 +3182 85437 0.4210 +3182 124245 0.4530 +3182 132864 0.4260 +3182 220988 0.7920 +3182 221092 0.4890 +3183 3184 0.9620 +3183 3185 0.9710 +3183 3187 0.9810 +3183 3188 0.8700 +3183 3189 0.8880 +3183 3190 0.9820 +3183 3191 0.9900 +3183 3192 0.9960 +3183 3275 0.5470 +3183 3276 0.6540 +3183 3301 0.4260 +3183 3308 0.5750 +3183 3312 0.6830 +3183 3320 0.7340 +3183 3326 0.7290 +3183 3481 0.4460 +3183 3485 0.5430 +3183 3608 0.9850 +3183 3646 0.5890 +3183 3659 0.4410 +3183 3697 0.5580 +3183 3698 0.5270 +3183 3754 0.5390 +3183 3755 0.5010 +3183 3836 0.7980 +3183 3837 0.4720 +3183 3838 0.4150 +3183 3839 0.6420 +3183 3840 0.5590 +3183 3842 0.5290 +3183 3843 0.5280 +3183 3845 0.4560 +3183 3921 0.5060 +3183 4076 0.5830 +3183 4116 0.8930 +3183 4137 0.4860 +3183 4154 0.8210 +3183 4193 0.5080 +3183 4236 0.4140 +3183 4343 0.4410 +3183 4609 0.8500 +3183 4670 0.9900 +3183 4686 0.8050 +3183 4691 0.8930 +3183 4751 0.4770 +3183 4809 0.5660 +3183 4841 0.8410 +3183 4857 0.6520 +3183 4858 0.7300 +3183 4869 0.7320 +3183 4904 0.9210 +3183 4927 0.4760 +3183 4928 0.6620 +3183 4931 0.7490 +3183 5036 0.6490 +3183 5093 0.9610 +3183 5094 0.9140 +3183 5245 0.4870 +3183 5315 0.7440 +3183 5356 0.5800 +3183 5394 0.4520 +3183 5411 0.4550 +3183 5478 0.6980 +3183 5591 0.4710 +3183 5610 0.4010 +3183 5684 0.5510 +3183 5687 0.4960 +3183 5688 0.4500 +3183 5725 0.9960 +3183 5757 0.7980 +3183 5901 0.6330 +3183 5903 0.6690 +3183 5928 0.4560 +3183 5931 0.4100 +3183 5936 0.5560 +3183 5940 0.5740 +3183 5976 0.7740 +3183 6047 0.6050 +3183 6122 0.6010 +3183 6124 0.5490 +3183 6128 0.5610 +3183 6129 0.4510 +3183 6132 0.4530 +3183 6136 0.4110 +3183 6138 0.4520 +3183 6142 0.4360 +3183 6147 0.5270 +3183 6175 0.6030 +3183 6181 0.5880 +3183 6187 0.4320 +3183 6188 0.5390 +3183 6189 0.4540 +3183 6194 0.4210 +3183 6205 0.4300 +3183 6207 0.4140 +3183 6208 0.4420 +3183 6217 0.4320 +3183 6223 0.4110 +3183 6224 0.5920 +3183 6228 0.4010 +3183 6240 0.5680 +3183 6241 0.5140 +3183 6294 0.6300 +3183 6396 0.4570 +3183 6418 0.5260 +3183 6421 0.9260 +3183 6426 0.9770 +3183 6427 0.9000 +3183 6428 0.9810 +3183 6429 0.6230 +3183 6430 0.7990 +3183 6431 0.8620 +3183 6432 0.9510 +3183 6434 0.9680 +3183 6597 0.4630 +3183 6599 0.4690 +3183 6606 0.7010 +3183 6607 0.7130 +3183 6613 0.5390 +3183 6625 0.9230 +3183 6626 0.6920 +3183 6627 0.5970 +3183 6628 0.8890 +3183 6629 0.5410 +3183 6631 0.6750 +3183 6632 0.7870 +3183 6633 0.8530 +3183 6634 0.9400 +3183 6635 0.9530 +3183 6636 0.8640 +3183 6637 0.8340 +3183 6657 0.7010 +3183 6714 0.4240 +3183 6727 0.4320 +3183 6732 0.8950 +3183 6733 0.5760 +3183 6741 0.8270 +3183 6749 0.8150 +3183 6772 0.4340 +3183 6780 0.6490 +3183 6936 0.5030 +3183 6950 0.4220 +3183 7011 0.8460 +3183 7015 0.8380 +3183 7072 0.6530 +3183 7073 0.8290 +3183 7124 0.4360 +3183 7139 0.4280 +3183 7150 0.7560 +3183 7157 0.7330 +3183 7168 0.4420 +3183 7175 0.6350 +3183 7307 0.9160 +3183 7316 0.5900 +3183 7319 0.4470 +3183 7323 0.5910 +3183 7329 0.6710 +3183 7334 0.4040 +3183 7341 0.7840 +3183 7458 0.4410 +3183 7514 0.5210 +3183 7520 0.6630 +3183 7531 0.7020 +3183 7534 0.5140 +3183 7536 0.5600 +3183 7555 0.5730 +3183 7756 0.5580 +3183 7812 0.4910 +3183 7916 0.6250 +3183 7919 0.8290 +3183 8021 0.5240 +3183 8086 0.4760 +3183 8087 0.7000 +3183 8106 0.7670 +3183 8125 0.4690 +3183 8148 0.8320 +3183 8175 0.7910 +3183 8241 0.7610 +3183 8266 0.4010 +3183 8356 0.6000 +3183 8361 0.6100 +3183 8454 0.4840 +3183 8480 0.6390 +3183 8563 0.4090 +3183 8570 0.7990 +3183 8607 0.4390 +3183 8661 0.5720 +3183 8662 0.4980 +3183 8663 0.5040 +3183 8666 0.4590 +3183 8667 0.5150 +3183 8668 0.4090 +3183 8683 0.8210 +3183 8761 0.4030 +3183 8815 0.4490 +3183 8846 0.6210 +3183 8880 0.5330 +3183 8896 0.5360 +3183 9055 0.4110 +3183 9092 0.4040 +3183 9128 0.4210 +3183 9136 0.5000 +3183 9184 0.4320 +3183 9188 0.9060 +3183 9295 0.7670 +3183 9343 0.8290 +3183 9410 0.5350 +3183 9444 0.7190 +3183 9513 0.7090 +3183 9584 0.7900 +3183 9589 0.8410 +3183 9631 0.4380 +3183 9688 0.4950 +3183 9698 0.4570 +3183 9716 0.4260 +3183 9774 0.6430 +3183 9775 0.9180 +3183 9782 0.9710 +3183 9785 0.4200 +3183 9818 0.4380 +3183 9839 0.5080 +3183 9879 0.4220 +3183 9883 0.4500 +3183 9886 0.6050 +3183 9887 0.6470 +3183 9908 0.6020 +3183 9939 0.8610 +3183 9967 0.6830 +3183 9972 0.5890 +3183 9987 0.8490 +3183 9991 0.6190 +3183 10128 0.6810 +3183 10146 0.6670 +3183 10150 0.4690 +3183 10155 0.6470 +3183 10181 0.6360 +3183 10189 0.8950 +3183 10196 0.5790 +3183 10197 0.5310 +3183 10209 0.4960 +3183 10212 0.4770 +3183 10236 0.9800 +3183 10250 0.4470 +3183 10262 0.4940 +3183 10284 0.6370 +3183 10286 0.4520 +3183 10291 0.6690 +3183 10399 0.5630 +3183 10432 0.7580 +3183 10436 0.4590 +3183 10480 0.4380 +3183 10482 0.8110 +3183 10492 0.9540 +3183 10521 0.7060 +3183 10528 0.4720 +3183 10536 0.4610 +3183 10575 0.4220 +3183 10576 0.4490 +3183 10594 0.7560 +3183 10605 0.4590 +3183 10614 0.5180 +3183 10625 0.4360 +3183 10642 0.8980 +3183 10643 0.7940 +3183 10644 0.8860 +3183 10656 0.4070 +3183 10657 0.9480 +3183 10658 0.9980 +3183 10659 0.6330 +3183 10728 0.8340 +3183 10762 0.5870 +3183 10772 0.8890 +3183 10914 0.5310 +3183 10921 0.6170 +3183 10923 0.4690 +3183 10929 0.6640 +3183 10933 0.4190 +3183 10946 0.5290 +3183 10949 0.9650 +3183 10992 0.8140 +3183 11051 0.8220 +3183 11052 0.7350 +3183 11097 0.5860 +3183 11100 0.6390 +3183 11168 0.5250 +3183 11221 0.4770 +3183 11335 0.4320 +3183 11338 0.9540 +3183 11339 0.4030 +3183 11340 0.4250 +3183 22803 0.4890 +3183 22826 0.4290 +3183 22827 0.7590 +3183 22913 0.9530 +3183 22916 0.7870 +3183 22938 0.6720 +3183 23016 0.5370 +3183 23020 0.6620 +3183 23091 0.8360 +3183 23160 0.4930 +3183 23165 0.4520 +3183 23196 0.5440 +3183 23221 0.6050 +3183 23225 0.4030 +3183 23279 0.5060 +3183 23293 0.6570 +3183 23350 0.4070 +3183 23367 0.6500 +3183 23369 0.6600 +3183 23381 0.6820 +3183 23404 0.4410 +3183 23405 0.6200 +3183 23435 0.9810 +3183 23450 0.5420 +3183 23451 0.6670 +3183 23476 0.4340 +3183 23511 0.4100 +3183 23517 0.4090 +3183 23521 0.4070 +3183 23524 0.4130 +3183 23543 0.6800 +3183 23636 0.5890 +3183 23644 0.4470 +3183 23708 0.5750 +3183 24144 0.6680 +3183 24148 0.4100 +3183 25804 0.4240 +3183 25873 0.4060 +3183 25949 0.4910 +3183 25962 0.8680 +3183 26097 0.7020 +3183 26135 0.6370 +3183 26523 0.5480 +3183 26528 0.6030 +3183 26986 0.9390 +3183 27161 0.7270 +3183 27258 0.5710 +3183 27288 0.7330 +3183 27316 0.9860 +3183 27339 0.7830 +3183 29063 0.5380 +3183 29081 0.4440 +3183 29102 0.5120 +3183 29890 0.7840 +3183 29894 0.5560 +3183 29896 0.7410 +3183 29978 0.4100 +3183 50804 0.5160 +3183 51340 0.5160 +3183 51362 0.4830 +3183 51441 0.8880 +3183 51493 0.6110 +3183 51574 0.4970 +3183 51593 0.6430 +3183 51602 0.4740 +3183 51603 0.4360 +3183 51631 0.4240 +3183 51634 0.5840 +3183 51639 0.5480 +3183 51663 0.5670 +3183 51691 0.4810 +3183 51808 0.4980 +3183 53371 0.5410 +3183 54433 0.7860 +3183 54464 0.4540 +3183 54487 0.8050 +3183 54542 0.5310 +3183 54552 0.7570 +3183 54606 0.4400 +3183 54715 0.4300 +3183 54845 0.4050 +3183 54888 0.4120 +3183 54890 0.8110 +3183 54915 0.9430 +3183 55110 0.7500 +3183 55122 0.4940 +3183 55127 0.4940 +3183 55135 0.7530 +3183 55147 0.4340 +3183 55225 0.6730 +3183 55226 0.8000 +3183 55234 0.5870 +3183 55285 0.6220 +3183 55342 0.5050 +3183 55421 0.6150 +3183 55505 0.7730 +3183 55651 0.8220 +3183 55660 0.4630 +3183 55696 0.5120 +3183 55706 0.4200 +3183 55746 0.5470 +3183 55796 0.4400 +3183 55802 0.5230 +3183 56257 0.5650 +3183 56259 0.7050 +3183 56339 0.8810 +3183 56903 0.4020 +3183 56949 0.5310 +3183 57060 0.4020 +3183 57107 0.4490 +3183 57122 0.4760 +3183 57187 0.6240 +3183 57721 0.8570 +3183 58155 0.8970 +3183 58517 0.5610 +3183 64506 0.5290 +3183 64783 0.8020 +3183 64848 0.8970 +3183 64863 0.4320 +3183 64895 0.4020 +3183 65110 0.4670 +3183 79023 0.4790 +3183 79066 0.7460 +3183 79068 0.7930 +3183 79727 0.6060 +3183 79728 0.6340 +3183 79753 0.4260 +3183 79872 0.6260 +3183 79902 0.4290 +3183 79968 0.5120 +3183 80004 0.4900 +3183 81608 0.4110 +3183 81929 0.4390 +3183 83443 0.5210 +3183 83544 0.5120 +3183 83641 0.4510 +3183 84324 0.5070 +3183 84844 0.5830 +3183 84991 0.6440 +3183 85358 0.5620 +3183 91746 0.9450 +3183 92906 0.5790 +3183 120227 0.4420 +3183 124245 0.5140 +3183 129401 0.4900 +3183 129831 0.7330 +3183 134353 0.7300 +3183 135295 0.5250 +3183 138046 0.6870 +3183 139804 0.5060 +3183 140886 0.4260 +3183 140890 0.4440 +3183 143884 0.6090 +3183 149041 0.6450 +3183 170506 0.4800 +3183 192670 0.5120 +3183 203228 0.4100 +3183 220988 0.9690 +3183 221092 0.5120 +3183 221120 0.4990 +3183 253943 0.8790 +3183 284695 0.7150 +3183 343069 0.7220 +3183 348995 0.4860 +3183 389421 0.5250 +3183 440563 0.5850 +3183 494115 0.4680 +3183 100101267 0.4590 +3184 3185 0.9410 +3184 3187 0.9300 +3184 3188 0.7630 +3184 3189 0.9180 +3184 3190 0.9650 +3184 3191 0.9240 +3184 3192 0.9730 +3184 3303 0.6770 +3184 3306 0.4810 +3184 3308 0.9180 +3184 3312 0.9800 +3184 3315 0.9110 +3184 3316 0.6850 +3184 3320 0.5090 +3184 3329 0.4380 +3184 3569 0.5840 +3184 3576 0.5130 +3184 3608 0.4250 +3184 3692 0.4470 +3184 3837 0.4690 +3184 3842 0.9680 +3184 4137 0.4280 +3184 4143 0.6380 +3184 4609 0.7210 +3184 4670 0.9620 +3184 4686 0.4210 +3184 4691 0.9710 +3184 4841 0.5880 +3184 4869 0.7020 +3184 4904 0.8750 +3184 5036 0.5690 +3184 5073 0.6550 +3184 5093 0.8980 +3184 5094 0.9560 +3184 5245 0.4310 +3184 5364 0.4510 +3184 5431 0.4360 +3184 5432 0.4630 +3184 5481 0.4110 +3184 5592 0.4100 +3184 5682 0.4590 +3184 5683 0.4530 +3184 5684 0.4320 +3184 5685 0.4620 +3184 5686 0.4370 +3184 5687 0.4500 +3184 5688 0.5570 +3184 5689 0.4450 +3184 5690 0.4470 +3184 5691 0.4470 +3184 5692 0.4640 +3184 5693 0.4240 +3184 5694 0.4190 +3184 5695 0.5500 +3184 5696 0.4120 +3184 5698 0.4010 +3184 5699 0.4760 +3184 5700 0.4440 +3184 5701 0.4490 +3184 5702 0.4610 +3184 5704 0.5720 +3184 5705 0.4920 +3184 5706 0.4800 +3184 5707 0.4720 +3184 5708 0.4360 +3184 5709 0.4190 +3184 5710 0.4250 +3184 5711 0.4290 +3184 5713 0.5000 +3184 5714 0.4300 +3184 5715 0.4190 +3184 5716 0.4300 +3184 5717 0.4350 +3184 5718 0.4380 +3184 5719 0.4110 +3184 5720 0.4310 +3184 5721 0.4380 +3184 5725 0.9600 +3184 5743 0.4520 +3184 5940 0.4190 +3184 5976 0.4560 +3184 6117 0.5890 +3184 6193 0.5210 +3184 6233 0.5970 +3184 6240 0.5330 +3184 6241 0.4110 +3184 6294 0.4420 +3184 6421 0.7780 +3184 6426 0.7940 +3184 6427 0.8510 +3184 6428 0.7590 +3184 6429 0.7420 +3184 6430 0.7150 +3184 6431 0.7940 +3184 6432 0.6810 +3184 6434 0.6640 +3184 6599 0.4580 +3184 6601 0.4040 +3184 6605 0.4380 +3184 6625 0.5120 +3184 6626 0.4960 +3184 6627 0.4760 +3184 6628 0.4690 +3184 6631 0.7280 +3184 6632 0.4260 +3184 6633 0.4440 +3184 6634 0.4210 +3184 6635 0.4140 +3184 6636 0.4360 +3184 6637 0.4090 +3184 6729 0.4300 +3184 6741 0.4560 +3184 6780 0.5740 +3184 6790 0.7440 +3184 6897 0.5050 +3184 6936 0.5720 +3184 7015 0.4640 +3184 7072 0.4830 +3184 7073 0.7330 +3184 7082 0.4210 +3184 7124 0.5020 +3184 7157 0.5150 +3184 7158 0.4800 +3184 7266 0.5480 +3184 7307 0.4060 +3184 7311 0.5670 +3184 7314 0.5740 +3184 7316 0.5880 +3184 7319 0.4210 +3184 7327 0.4830 +3184 7329 0.5120 +3184 7520 0.6190 +3184 7533 0.4180 +3184 7534 0.4840 +3184 7536 0.5430 +3184 7538 0.7990 +3184 7555 0.4100 +3184 7756 0.4760 +3184 7812 0.9310 +3184 7979 0.4090 +3184 8087 0.4190 +3184 8106 0.6670 +3184 8241 0.5160 +3184 8361 0.6630 +3184 8562 0.5400 +3184 8570 0.9290 +3184 8662 0.4020 +3184 8683 0.6480 +3184 8880 0.4580 +3184 8939 0.4500 +3184 8945 0.5200 +3184 8988 0.4930 +3184 9188 0.4240 +3184 9295 0.6170 +3184 9343 0.4550 +3184 9444 0.5630 +3184 9491 0.4830 +3184 9584 0.4740 +3184 9669 0.4670 +3184 9698 0.4240 +3184 9775 0.4530 +3184 9782 0.5220 +3184 9861 0.4700 +3184 9908 0.4660 +3184 9987 0.7930 +3184 10146 0.6720 +3184 10189 0.5380 +3184 10197 0.5830 +3184 10213 0.5120 +3184 10236 0.9060 +3184 10250 0.5420 +3184 10262 0.6190 +3184 10273 0.4240 +3184 10399 0.5260 +3184 10492 0.9800 +3184 10498 0.4790 +3184 10521 0.5950 +3184 10576 0.5020 +3184 10594 0.5600 +3184 10605 0.9770 +3184 10642 0.7170 +3184 10643 0.5060 +3184 10644 0.6310 +3184 10657 0.9070 +3184 10658 0.4190 +3184 10735 0.4170 +3184 10772 0.6060 +3184 10801 0.4680 +3184 10898 0.4350 +3184 10929 0.7010 +3184 10949 0.8480 +3184 10953 0.4810 +3184 11051 0.5420 +3184 11052 0.6430 +3184 11065 0.4680 +3184 11100 0.6040 +3184 11338 0.8520 +3184 22913 0.8050 +3184 22916 0.7040 +3184 22938 0.4700 +3184 23019 0.4930 +3184 23196 0.4990 +3184 23198 0.4220 +3184 23283 0.4480 +3184 23367 0.4540 +3184 23404 0.4160 +3184 23405 0.7060 +3184 23435 0.6510 +3184 23451 0.5090 +3184 23476 0.5140 +3184 23543 0.4620 +3184 23567 0.4360 +3184 24144 0.6010 +3184 25929 0.5660 +3184 26523 0.6320 +3184 26528 0.4230 +3184 26986 0.9600 +3184 27067 0.4140 +3184 27161 0.7690 +3184 27316 0.8440 +3184 29102 0.4030 +3184 29117 0.4220 +3184 29894 0.4560 +3184 51574 0.4320 +3184 51663 0.4490 +3184 51692 0.5300 +3184 53981 0.4570 +3184 54464 0.5210 +3184 54542 0.4120 +3184 54715 0.4630 +3184 55342 0.4900 +3184 55596 0.4040 +3184 55657 0.6310 +3184 56252 0.4100 +3184 56257 0.4400 +3184 56339 0.5040 +3184 56949 0.4060 +3184 57142 0.4090 +3184 57721 0.4280 +3184 58155 0.6650 +3184 58517 0.5800 +3184 79026 0.4120 +3184 79074 0.4920 +3184 79849 0.4060 +3184 79869 0.4380 +3184 79968 0.5180 +3184 80218 0.4270 +3184 80312 0.4340 +3184 122706 0.4030 +3184 135295 0.4190 +3184 140890 0.4330 +3184 143471 0.4560 +3184 143884 0.5550 +3184 149041 0.5730 +3184 167227 0.4670 +3184 192669 0.4580 +3184 192670 0.4830 +3184 202559 0.5070 +3184 219988 0.4790 +3184 220988 0.9990 +3184 221092 0.4600 +3184 378948 0.4090 +3184 378949 0.4100 +3184 378950 0.4100 +3184 728378 0.4810 +3185 3187 0.9940 +3185 3188 0.8660 +3185 3189 0.8650 +3185 3190 0.9710 +3185 3191 0.9500 +3185 3192 0.9510 +3185 3608 0.8550 +3185 4116 0.7480 +3185 4154 0.8490 +3185 4155 0.4680 +3185 4609 0.4030 +3185 4670 0.9810 +3185 4686 0.8030 +3185 4691 0.8110 +3185 4841 0.6080 +3185 4857 0.4390 +3185 4904 0.7090 +3185 5073 0.5450 +3185 5093 0.8580 +3185 5094 0.6410 +3185 5358 0.4190 +3185 5431 0.5290 +3185 5432 0.5410 +3185 5433 0.5080 +3185 5434 0.5440 +3185 5435 0.5040 +3185 5436 0.5580 +3185 5437 0.5480 +3185 5438 0.5310 +3185 5439 0.5110 +3185 5440 0.5030 +3185 5441 0.6650 +3185 5725 0.9420 +3185 5931 0.4450 +3185 5936 0.7120 +3185 6240 0.5900 +3185 6294 0.4990 +3185 6421 0.8640 +3185 6426 0.9700 +3185 6427 0.8730 +3185 6428 0.9410 +3185 6429 0.6540 +3185 6430 0.6920 +3185 6431 0.8200 +3185 6432 0.9180 +3185 6434 0.9010 +3185 6606 0.5290 +3185 6625 0.7860 +3185 6626 0.6010 +3185 6631 0.6180 +3185 6632 0.4650 +3185 6633 0.7270 +3185 6634 0.5950 +3185 6635 0.7420 +3185 6636 0.6910 +3185 6637 0.6940 +3185 6714 0.4090 +3185 6732 0.4390 +3185 6741 0.6470 +3185 6775 0.7500 +3185 6780 0.4480 +3185 6936 0.5270 +3185 7072 0.7090 +3185 7073 0.7740 +3185 7307 0.7860 +3185 7341 0.4590 +3185 7514 0.5370 +3185 7520 0.4340 +3185 7536 0.7770 +3185 7538 0.5000 +3185 7555 0.4020 +3185 7919 0.7360 +3185 8106 0.4140 +3185 8148 0.6840 +3185 8241 0.5860 +3185 8570 0.9590 +3185 8607 0.4020 +3185 8683 0.7570 +3185 8880 0.8540 +3185 8939 0.8440 +3185 9184 0.4750 +3185 9295 0.6620 +3185 9343 0.4650 +3185 9584 0.6260 +3185 9774 0.4010 +3185 9775 0.7950 +3185 9782 0.8800 +3185 9987 0.8950 +3185 9991 0.4180 +3185 10155 0.5590 +3185 10189 0.8350 +3185 10197 0.5690 +3185 10212 0.4410 +3185 10236 0.9180 +3185 10262 0.6260 +3185 10432 0.7410 +3185 10492 0.6750 +3185 10521 0.5640 +3185 10594 0.4590 +3185 10642 0.5280 +3185 10643 0.4650 +3185 10644 0.4540 +3185 10657 0.8710 +3185 10658 0.6330 +3185 10772 0.8370 +3185 10898 0.4580 +3185 10914 0.5310 +3185 10921 0.4140 +3185 10929 0.5760 +3185 10946 0.5410 +3185 10949 0.9180 +3185 11051 0.6740 +3185 11052 0.8410 +3185 11060 0.5280 +3185 11065 0.4350 +3185 11100 0.9070 +3185 11130 0.7950 +3185 11338 0.8760 +3185 22827 0.5570 +3185 22913 0.4180 +3185 22916 0.9230 +3185 22938 0.4070 +3185 23020 0.4320 +3185 23244 0.4070 +3185 23350 0.4140 +3185 23435 0.8640 +3185 23450 0.4310 +3185 23451 0.5720 +3185 23543 0.9560 +3185 23644 0.4010 +3185 24144 0.6790 +3185 26097 0.5750 +3185 26523 0.5820 +3185 26528 0.4110 +3185 26986 0.4890 +3185 27161 0.4480 +3185 27258 0.4920 +3185 27288 0.4710 +3185 27316 0.9220 +3185 27339 0.4550 +3185 29107 0.4450 +3185 29894 0.6130 +3185 29896 0.5140 +3185 51574 0.6380 +3185 51593 0.6040 +3185 51639 0.4600 +3185 51692 0.4950 +3185 51747 0.4080 +3185 53981 0.4980 +3185 54715 0.5020 +3185 54845 0.5620 +3185 55234 0.5080 +3185 55505 0.4070 +3185 55651 0.4820 +3185 55660 0.4840 +3185 55802 0.4210 +3185 55818 0.5710 +3185 56259 0.6790 +3185 57187 0.4560 +3185 58155 0.4970 +3185 79869 0.6010 +3185 80004 0.5560 +3185 80218 0.4330 +3185 80829 0.4520 +3185 84324 0.4480 +3185 84844 0.4510 +3185 84991 0.4090 +3185 114034 0.5110 +3185 115509 0.4130 +3185 135295 0.4460 +3185 143884 0.5110 +3185 144983 0.5430 +3185 170506 0.4130 +3185 220988 0.8990 +3185 284695 0.4930 +3187 3188 0.9010 +3187 3189 0.9600 +3187 3190 0.9750 +3187 3191 0.9820 +3187 3192 0.9860 +3187 3276 0.5530 +3187 3301 0.4100 +3187 3309 0.4160 +3187 3320 0.4130 +3187 3326 0.4150 +3187 3608 0.9690 +3187 3837 0.5460 +3187 3842 0.7660 +3187 3921 0.4540 +3187 4001 0.4410 +3187 4076 0.4970 +3187 4116 0.8130 +3187 4137 0.5880 +3187 4154 0.9360 +3187 4236 0.4400 +3187 4609 0.4250 +3187 4670 0.9930 +3187 4678 0.4690 +3187 4686 0.9070 +3187 4691 0.8410 +3187 4841 0.7100 +3187 4857 0.4220 +3187 4858 0.4490 +3187 4869 0.5400 +3187 4904 0.7690 +3187 5036 0.4340 +3187 5093 0.9060 +3187 5094 0.8440 +3187 5204 0.4180 +3187 5245 0.4090 +3187 5300 0.5010 +3187 5351 0.4910 +3187 5411 0.4010 +3187 5431 0.5410 +3187 5432 0.5510 +3187 5433 0.5110 +3187 5434 0.5500 +3187 5435 0.5180 +3187 5436 0.6030 +3187 5437 0.5690 +3187 5438 0.5630 +3187 5439 0.5210 +3187 5440 0.4990 +3187 5441 0.7190 +3187 5451 0.5140 +3187 5631 0.4370 +3187 5682 0.4180 +3187 5684 0.4770 +3187 5725 0.9780 +3187 5813 0.6840 +3187 5902 0.4090 +3187 5905 0.6200 +3187 5931 0.5370 +3187 5935 0.5490 +3187 5936 0.5980 +3187 5940 0.5580 +3187 5976 0.5530 +3187 6122 0.4280 +3187 6124 0.6090 +3187 6136 0.4280 +3187 6142 0.4330 +3187 6157 0.5780 +3187 6175 0.4850 +3187 6181 0.6560 +3187 6188 0.5200 +3187 6197 0.4290 +3187 6217 0.4220 +3187 6224 0.6920 +3187 6241 0.4450 +3187 6294 0.5940 +3187 6418 0.5910 +3187 6421 0.9130 +3187 6426 0.9860 +3187 6427 0.9350 +3187 6428 0.9720 +3187 6429 0.7590 +3187 6430 0.9570 +3187 6431 0.8960 +3187 6432 0.9220 +3187 6434 0.9810 +3187 6606 0.8030 +3187 6607 0.6300 +3187 6625 0.9280 +3187 6626 0.5580 +3187 6627 0.4890 +3187 6628 0.5010 +3187 6629 0.5310 +3187 6631 0.4080 +3187 6632 0.7090 +3187 6633 0.7420 +3187 6634 0.8160 +3187 6635 0.7410 +3187 6636 0.7210 +3187 6637 0.6740 +3187 6732 0.4880 +3187 6741 0.6830 +3187 6780 0.5910 +3187 6838 0.4560 +3187 6874 0.4400 +3187 6936 0.5250 +3187 7072 0.7480 +3187 7073 0.8290 +3187 7157 0.6110 +3187 7168 0.4760 +3187 7170 0.5100 +3187 7184 0.4170 +3187 7186 0.4330 +3187 7284 0.4020 +3187 7307 0.8650 +3187 7341 0.5180 +3187 7458 0.6390 +3187 7514 0.5360 +3187 7520 0.4970 +3187 7525 0.4690 +3187 7531 0.4280 +3187 7536 0.7720 +3187 7555 0.5330 +3187 7919 0.7420 +3187 8087 0.5330 +3187 8106 0.8100 +3187 8125 0.5840 +3187 8148 0.8350 +3187 8189 0.5840 +3187 8220 0.4940 +3187 8241 0.6080 +3187 8260 0.4850 +3187 8361 0.5770 +3187 8369 0.4100 +3187 8539 0.4690 +3187 8570 0.9490 +3187 8607 0.5360 +3187 8666 0.5230 +3187 8683 0.8930 +3187 8879 0.4420 +3187 8880 0.6370 +3187 8939 0.5660 +3187 8985 0.4230 +3187 9092 0.4130 +3187 9136 0.4020 +3187 9184 0.5020 +3187 9295 0.6960 +3187 9343 0.5840 +3187 9533 0.6060 +3187 9584 0.6390 +3187 9589 0.4550 +3187 9698 0.4220 +3187 9774 0.4970 +3187 9775 0.8110 +3187 9782 0.9540 +3187 9908 0.4830 +3187 9939 0.4230 +3187 9987 0.9500 +3187 9991 0.4620 +3187 10114 0.7650 +3187 10150 0.5170 +3187 10155 0.5050 +3187 10180 0.5530 +3187 10181 0.4160 +3187 10189 0.9140 +3187 10197 0.7460 +3187 10236 0.9470 +3187 10262 0.6370 +3187 10270 0.5220 +3187 10284 0.7040 +3187 10291 0.4010 +3187 10409 0.4610 +3187 10419 0.5490 +3187 10432 0.9140 +3187 10471 0.5940 +3187 10492 0.9480 +3187 10521 0.7750 +3187 10575 0.5050 +3187 10576 0.4810 +3187 10594 0.5220 +3187 10614 0.5380 +3187 10643 0.5840 +3187 10644 0.5670 +3187 10652 0.4930 +3187 10657 0.8590 +3187 10658 0.9050 +3187 10659 0.4650 +3187 10694 0.4710 +3187 10726 0.4250 +3187 10735 0.4930 +3187 10772 0.8040 +3187 10856 0.4270 +3187 10915 0.5720 +3187 10921 0.4600 +3187 10929 0.5490 +3187 10949 0.9220 +3187 11017 0.4270 +3187 11051 0.7530 +3187 11052 0.7970 +3187 11100 0.8060 +3187 11130 0.7850 +3187 11325 0.4940 +3187 11338 0.9260 +3187 22826 0.4360 +3187 22827 0.4730 +3187 22913 0.8790 +3187 22916 0.9200 +3187 22948 0.5270 +3187 22985 0.5350 +3187 23016 0.5420 +3187 23020 0.4250 +3187 23064 0.4010 +3187 23118 0.4280 +3187 23160 0.4310 +3187 23193 0.4330 +3187 23350 0.4900 +3187 23367 0.4170 +3187 23369 0.4450 +3187 23404 0.4450 +3187 23435 0.9470 +3187 23450 0.4470 +3187 23451 0.5150 +3187 23515 0.4010 +3187 23524 0.5150 +3187 23543 0.9740 +3187 23621 0.4670 +3187 23644 0.4200 +3187 24144 0.5290 +3187 25777 0.5100 +3187 25940 0.4480 +3187 26097 0.6990 +3187 26135 0.6500 +3187 26528 0.6750 +3187 26986 0.7320 +3187 27258 0.5800 +3187 27288 0.7500 +3187 27316 0.9550 +3187 27336 0.4210 +3187 27339 0.7650 +3187 27429 0.5360 +3187 29894 0.6630 +3187 29896 0.7310 +3187 51128 0.4580 +3187 51317 0.4040 +3187 51341 0.5120 +3187 51493 0.4670 +3187 51574 0.4050 +3187 51585 0.4740 +3187 51593 0.6930 +3187 51631 0.4990 +3187 51637 0.5890 +3187 51639 0.5370 +3187 51691 0.4330 +3187 54487 0.4330 +3187 54715 0.4010 +3187 54845 0.5670 +3187 55011 0.4330 +3187 55082 0.4490 +3187 55103 0.4190 +3187 55110 0.5800 +3187 55119 0.4850 +3187 55234 0.4770 +3187 55651 0.4220 +3187 55660 0.4290 +3187 55692 0.4110 +3187 55796 0.4490 +3187 55802 0.4320 +3187 56257 0.6110 +3187 56259 0.6800 +3187 57018 0.4140 +3187 57187 0.5270 +3187 58155 0.8060 +3187 58517 0.5880 +3187 60412 0.5390 +3187 64397 0.4240 +3187 79084 0.5340 +3187 79155 0.4200 +3187 79811 0.4740 +3187 80004 0.5680 +3187 80218 0.5910 +3187 80230 0.4020 +3187 80335 0.4590 +3187 81608 0.4740 +3187 83443 0.4530 +3187 84324 0.4870 +3187 84823 0.4130 +3187 84844 0.5420 +3187 84991 0.4360 +3187 92906 0.6160 +3187 124540 0.6750 +3187 129831 0.4440 +3187 135295 0.4730 +3187 140890 0.5120 +3187 143884 0.4990 +3187 144983 0.5150 +3187 170506 0.6920 +3187 203228 0.7540 +3187 220988 0.9770 +3187 221092 0.6070 +3187 284119 0.4770 +3187 284695 0.8380 +3187 100526737 0.4470 +3187 100996928 0.4010 +3188 3189 0.5790 +3188 3190 0.8740 +3188 3191 0.7610 +3188 3192 0.8670 +3188 3312 0.4710 +3188 3608 0.8580 +3188 3842 0.4980 +3188 4116 0.6690 +3188 4154 0.8190 +3188 4670 0.9700 +3188 4686 0.5380 +3188 4691 0.6510 +3188 4857 0.4330 +3188 4858 0.4480 +3188 4904 0.5720 +3188 5093 0.6030 +3188 5094 0.6060 +3188 5351 0.5970 +3188 5352 0.5980 +3188 5725 0.8370 +3188 5813 0.6820 +3188 5905 0.5230 +3188 5936 0.7160 +3188 6275 0.4180 +3188 6421 0.4110 +3188 6426 0.8690 +3188 6427 0.9180 +3188 6428 0.7790 +3188 6429 0.6620 +3188 6430 0.6790 +3188 6431 0.7250 +3188 6432 0.7150 +3188 6434 0.6580 +3188 6606 0.5560 +3188 6607 0.4010 +3188 6625 0.4660 +3188 6627 0.5040 +3188 6631 0.5900 +3188 6780 0.5010 +3188 6908 0.4640 +3188 6936 0.5250 +3188 7072 0.4890 +3188 7073 0.4190 +3188 7157 0.4930 +3188 7307 0.4240 +3188 7324 0.4520 +3188 7536 0.7530 +3188 7555 0.5300 +3188 8106 0.5910 +3188 8189 0.5770 +3188 8220 0.5100 +3188 8241 0.7830 +3188 8361 0.5440 +3188 8539 0.4110 +3188 8683 0.7130 +3188 8985 0.4240 +3188 9188 0.4440 +3188 9295 0.7100 +3188 9444 0.6730 +3188 9584 0.7430 +3188 9775 0.7040 +3188 9782 0.8770 +3188 9987 0.7140 +3188 10084 0.6340 +3188 10146 0.4770 +3188 10150 0.5060 +3188 10155 0.4820 +3188 10189 0.6820 +3188 10236 0.6770 +3188 10399 0.5440 +3188 10432 0.4960 +3188 10492 0.6760 +3188 10521 0.5800 +3188 10594 0.6340 +3188 10657 0.4430 +3188 10658 0.7810 +3188 10659 0.4170 +3188 10735 0.5650 +3188 10772 0.7380 +3188 10929 0.5370 +3188 10949 0.7980 +3188 10989 0.4620 +3188 11052 0.4410 +3188 11100 0.6620 +3188 11338 0.5600 +3188 22913 0.4420 +3188 22916 0.5210 +3188 23283 0.4420 +3188 23435 0.6240 +3188 23450 0.5010 +3188 23543 0.8350 +3188 23621 0.4760 +3188 24144 0.5090 +3188 26121 0.5490 +3188 26135 0.4250 +3188 26523 0.4110 +3188 26528 0.4920 +3188 26986 0.6060 +3188 27288 0.5260 +3188 27316 0.7110 +3188 27336 0.4680 +3188 29894 0.4980 +3188 53938 0.4450 +3188 55796 0.4560 +3188 56257 0.4300 +3188 58155 0.4910 +3188 64397 0.4570 +3188 84292 0.5030 +3188 92906 0.4550 +3188 124540 0.6360 +3188 135295 0.4900 +3188 143884 0.4990 +3188 144983 0.4980 +3188 203228 0.7260 +3188 220988 0.9280 +3188 221092 0.4480 +3188 100526737 0.4050 +3189 3190 0.8090 +3189 3191 0.7530 +3189 3192 0.8260 +3189 3608 0.5460 +3189 3837 0.4480 +3189 4116 0.4030 +3189 4154 0.6480 +3189 4670 0.9450 +3189 4691 0.4280 +3189 4809 0.4170 +3189 4841 0.4860 +3189 4858 0.4420 +3189 5093 0.6030 +3189 5245 0.4170 +3189 5411 0.5270 +3189 5684 0.4570 +3189 5725 0.7700 +3189 5936 0.5820 +3189 6421 0.6430 +3189 6426 0.8130 +3189 6427 0.5730 +3189 6428 0.7360 +3189 6429 0.4390 +3189 6430 0.4750 +3189 6431 0.5410 +3189 6432 0.7580 +3189 6434 0.7590 +3189 6625 0.6600 +3189 6626 0.5670 +3189 6629 0.4470 +3189 6632 0.4310 +3189 6633 0.6150 +3189 6634 0.6680 +3189 6635 0.6210 +3189 6636 0.5970 +3189 6637 0.4990 +3189 6741 0.4660 +3189 7073 0.4860 +3189 7307 0.5050 +3189 7514 0.4080 +3189 7520 0.4060 +3189 7555 0.5280 +3189 7919 0.6960 +3189 8106 0.4370 +3189 8148 0.5640 +3189 8227 0.4200 +3189 8607 0.4340 +3189 8683 0.4230 +3189 9295 0.5290 +3189 9343 0.4130 +3189 9584 0.5070 +3189 9775 0.5330 +3189 9782 0.6480 +3189 9939 0.5030 +3189 9987 0.9220 +3189 10189 0.6060 +3189 10236 0.8290 +3189 10284 0.4780 +3189 10285 0.4020 +3189 10432 0.7170 +3189 10471 0.4080 +3189 10492 0.7420 +3189 10521 0.6700 +3189 10523 0.5840 +3189 10569 0.4640 +3189 10576 0.4550 +3189 10594 0.4160 +3189 10657 0.5200 +3189 10694 0.4150 +3189 10772 0.4380 +3189 10915 0.4750 +3189 10946 0.4340 +3189 10949 0.8730 +3189 10963 0.4400 +3189 11051 0.4940 +3189 11100 0.7890 +3189 11338 0.5610 +3189 22827 0.4440 +3189 22913 0.5580 +3189 22916 0.6720 +3189 22948 0.4260 +3189 23020 0.4890 +3189 23350 0.4040 +3189 23435 0.8300 +3189 23450 0.4880 +3189 25957 0.5070 +3189 26097 0.4940 +3189 26528 0.4930 +3189 27288 0.4840 +3189 27316 0.6600 +3189 27339 0.5650 +3189 29896 0.4410 +3189 51493 0.4180 +3189 51637 0.4860 +3189 51729 0.4590 +3189 51747 0.4190 +3189 55421 0.6400 +3189 57819 0.4650 +3189 58155 0.6120 +3189 58517 0.4350 +3189 84991 0.4670 +3189 129831 0.4160 +3189 138046 0.4500 +3189 144983 0.5250 +3189 220988 0.7900 +3189 221092 0.5390 +3189 101060301 0.4380 +3190 3191 0.9900 +3190 3192 0.9910 +3190 3276 0.7770 +3190 3301 0.4010 +3190 3308 0.5350 +3190 3312 0.7910 +3190 3313 0.7580 +3190 3320 0.6290 +3190 3326 0.6700 +3190 3608 0.8480 +3190 3754 0.7580 +3190 3755 0.8820 +3190 3836 0.7760 +3190 3837 0.6070 +3190 3838 0.9680 +3190 3839 0.6920 +3190 3840 0.8310 +3190 3842 0.4610 +3190 3921 0.5230 +3190 4067 0.4920 +3190 4076 0.5170 +3190 4116 0.6110 +3190 4131 0.4780 +3190 4137 0.4080 +3190 4154 0.8620 +3190 4193 0.7550 +3190 4236 0.4210 +3190 4609 0.7360 +3190 4627 0.4880 +3190 4670 0.9810 +3190 4686 0.4050 +3190 4691 0.9930 +3190 4741 0.4890 +3190 4790 0.4080 +3190 4800 0.4780 +3190 4809 0.5320 +3190 4831 0.6450 +3190 4841 0.7490 +3190 4857 0.5980 +3190 4858 0.4280 +3190 4869 0.6690 +3190 4904 0.8990 +3190 5036 0.6520 +3190 5071 0.4860 +3190 5093 0.9890 +3190 5094 0.9410 +3190 5204 0.4240 +3190 5245 0.4150 +3190 5315 0.4230 +3190 5339 0.4300 +3190 5460 0.4590 +3190 5478 0.4740 +3190 5500 0.4660 +3190 5501 0.5290 +3190 5514 0.4660 +3190 5580 0.5030 +3190 5591 0.4870 +3190 5682 0.5320 +3190 5683 0.4300 +3190 5684 0.5500 +3190 5685 0.4100 +3190 5687 0.4010 +3190 5725 0.9970 +3190 5728 0.5880 +3190 5743 0.4200 +3190 5757 0.4120 +3190 5813 0.7810 +3190 5901 0.4050 +3190 5931 0.4300 +3190 5935 0.8250 +3190 5936 0.7640 +3190 5940 0.7090 +3190 5965 0.5560 +3190 5976 0.5500 +3190 6015 0.5240 +3190 6045 0.6540 +3190 6047 0.4240 +3190 6124 0.5110 +3190 6128 0.4250 +3190 6130 0.5220 +3190 6136 0.4830 +3190 6154 0.4010 +3190 6181 0.5670 +3190 6188 0.5030 +3190 6189 0.4310 +3190 6217 0.4850 +3190 6224 0.5650 +3190 6234 0.5320 +3190 6294 0.7180 +3190 6418 0.6570 +3190 6421 0.9130 +3190 6426 0.9660 +3190 6427 0.9240 +3190 6428 0.9620 +3190 6429 0.6500 +3190 6430 0.7690 +3190 6431 0.8870 +3190 6432 0.8960 +3190 6434 0.9160 +3190 6597 0.4200 +3190 6613 0.7950 +3190 6625 0.8550 +3190 6626 0.8590 +3190 6629 0.5840 +3190 6632 0.7760 +3190 6633 0.7020 +3190 6634 0.7280 +3190 6635 0.7180 +3190 6636 0.7450 +3190 6637 0.6880 +3190 6651 0.4240 +3190 6657 0.6620 +3190 6688 0.8790 +3190 6714 0.8170 +3190 6726 0.6540 +3190 6741 0.7860 +3190 6774 0.5300 +3190 6780 0.5770 +3190 6790 0.7710 +3190 6874 0.4280 +3190 6908 0.5480 +3190 6936 0.5070 +3190 6950 0.4390 +3190 7046 0.4140 +3190 7051 0.4190 +3190 7072 0.5380 +3190 7073 0.7290 +3190 7142 0.4240 +3190 7150 0.5430 +3190 7157 0.9430 +3190 7170 0.6520 +3190 7175 0.4850 +3190 7251 0.4710 +3190 7307 0.8320 +3190 7323 0.5280 +3190 7329 0.7190 +3190 7341 0.7020 +3190 7409 0.6190 +3190 7415 0.6830 +3190 7458 0.6540 +3190 7514 0.6670 +3190 7520 0.7440 +3190 7529 0.4410 +3190 7531 0.4030 +3190 7534 0.5730 +3190 7536 0.8320 +3190 7555 0.8370 +3190 7703 0.4610 +3190 7756 0.4510 +3190 7791 0.4020 +3190 7812 0.6230 +3190 7879 0.4620 +3190 7919 0.8080 +3190 8087 0.9380 +3190 8106 0.7360 +3190 8125 0.4120 +3190 8148 0.8050 +3190 8161 0.4010 +3190 8175 0.6970 +3190 8189 0.4390 +3190 8241 0.7910 +3190 8260 0.5020 +3190 8290 0.4120 +3190 8312 0.5980 +3190 8356 0.5590 +3190 8440 0.6440 +3190 8451 0.4210 +3190 8531 0.4980 +3190 8535 0.6470 +3190 8570 0.6530 +3190 8607 0.6640 +3190 8662 0.4300 +3190 8665 0.5350 +3190 8666 0.5440 +3190 8668 0.5220 +3190 8683 0.8100 +3190 8726 0.5550 +3190 8880 0.6020 +3190 8939 0.5710 +3190 8976 0.7660 +3190 9136 0.4220 +3190 9184 0.4170 +3190 9188 0.6270 +3190 9212 0.4090 +3190 9295 0.6480 +3190 9314 0.4650 +3190 9343 0.6510 +3190 9410 0.4920 +3190 9441 0.6750 +3190 9444 0.9220 +3190 9513 0.9630 +3190 9584 0.6580 +3190 9589 0.5260 +3190 9774 0.5910 +3190 9775 0.6510 +3190 9782 0.9470 +3190 9869 0.5720 +3190 9908 0.4880 +3190 9939 0.4210 +3190 9948 0.6240 +3190 9987 0.8900 +3190 9989 0.4480 +3190 10006 0.8920 +3190 10045 0.4690 +3190 10146 0.5240 +3190 10155 0.4710 +3190 10189 0.8850 +3190 10197 0.7100 +3190 10236 0.9620 +3190 10250 0.4530 +3190 10284 0.5890 +3190 10291 0.5510 +3190 10336 0.8840 +3190 10399 0.4910 +3190 10419 0.5290 +3190 10432 0.9090 +3190 10471 0.4220 +3190 10482 0.7120 +3190 10492 0.9590 +3190 10498 0.5270 +3190 10521 0.8220 +3190 10574 0.4260 +3190 10575 0.4100 +3190 10576 0.5600 +3190 10580 0.4580 +3190 10594 0.5120 +3190 10625 0.8910 +3190 10642 0.5930 +3190 10643 0.4230 +3190 10644 0.5880 +3190 10656 0.7940 +3190 10657 0.9860 +3190 10658 0.7680 +3190 10664 0.4380 +3190 10694 0.5490 +3190 10726 0.5020 +3190 10772 0.7760 +3190 10856 0.4500 +3190 10914 0.4150 +3190 10921 0.4770 +3190 10929 0.5330 +3190 10933 0.4910 +3190 10949 0.9570 +3190 10971 0.4990 +3190 10992 0.5330 +3190 11010 0.4650 +3190 11017 0.4190 +3190 11051 0.8750 +3190 11052 0.8670 +3190 11060 0.5610 +3190 11091 0.5180 +3190 11100 0.5950 +3190 11103 0.7580 +3190 11168 0.5460 +3190 11193 0.4110 +3190 11200 0.4270 +3190 11285 0.6010 +3190 11322 0.5230 +3190 11335 0.4170 +3190 11338 0.9470 +3190 11345 0.5500 +3190 22803 0.5660 +3190 22827 0.9740 +3190 22913 0.8520 +3190 22916 0.6870 +3190 22938 0.5710 +3190 22948 0.6400 +3190 22955 0.4570 +3190 23013 0.6130 +3190 23016 0.5800 +3190 23020 0.5780 +3190 23160 0.4490 +3190 23191 0.4080 +3190 23243 0.6440 +3190 23350 0.4120 +3190 23361 0.4800 +3190 23404 0.4920 +3190 23405 0.4180 +3190 23411 0.4240 +3190 23429 0.4610 +3190 23435 0.9490 +3190 23450 0.9710 +3190 23451 0.7650 +3190 23476 0.5870 +3190 23512 0.5630 +3190 23521 0.5310 +3190 23524 0.4010 +3190 23543 0.7330 +3190 23633 0.6710 +3190 23710 0.4730 +3190 24144 0.5340 +3190 25792 0.4460 +3190 25804 0.4830 +3190 25814 0.5590 +3190 25962 0.4280 +3190 26097 0.7280 +3190 26227 0.4990 +3190 26528 0.4400 +3190 26747 0.4290 +3190 26986 0.9540 +3190 27161 0.4270 +3190 27258 0.5590 +3190 27304 0.4130 +3190 27316 0.9880 +3190 27339 0.7110 +3190 27351 0.9940 +3190 28998 0.5040 +3190 29102 0.4240 +3190 29894 0.4990 +3190 29896 0.7490 +3190 29974 0.5030 +3190 29979 0.4590 +3190 51185 0.5230 +3190 51299 0.4280 +3190 51320 0.6490 +3190 51474 0.4140 +3190 51574 0.4470 +3190 51593 0.8680 +3190 51637 0.5220 +3190 51639 0.5120 +3190 51691 0.4670 +3190 51710 0.4790 +3190 54606 0.5250 +3190 55110 0.5370 +3190 55234 0.5510 +3190 55269 0.4740 +3190 55582 0.4250 +3190 55660 0.4570 +3190 55740 0.4650 +3190 55749 0.5950 +3190 56122 0.4280 +3190 56257 0.4750 +3190 56259 0.8320 +3190 56339 0.4400 +3190 56341 0.5460 +3190 57187 0.5080 +3190 57332 0.4590 +3190 57532 0.4530 +3190 57721 0.4450 +3190 57822 0.4590 +3190 58155 0.4520 +3190 58517 0.4060 +3190 59343 0.5660 +3190 63899 0.8920 +3190 64783 0.5850 +3190 79171 0.9730 +3190 80012 0.4060 +3190 80218 0.4450 +3190 80742 0.7040 +3190 80818 0.4790 +3190 81608 0.4350 +3190 83443 0.4470 +3190 84206 0.7160 +3190 84267 0.4320 +3190 84324 0.4390 +3190 84333 0.6110 +3190 84733 0.4740 +3190 84844 0.5190 +3190 84991 0.4240 +3190 91746 0.5430 +3190 92312 0.7010 +3190 92906 0.7120 +3190 115560 0.4610 +3190 129138 0.4470 +3190 129831 0.4240 +3190 134492 0.4150 +3190 135295 0.4620 +3190 140890 0.4380 +3190 143884 0.4990 +3190 144983 0.4380 +3190 148266 0.4790 +3190 152485 0.6420 +3190 201161 0.4890 +3190 202559 0.7240 +3190 203228 0.4860 +3190 220988 0.9230 +3190 221092 0.4920 +3190 284390 0.4790 +3190 284695 0.5240 +3190 378951 0.6700 +3190 389874 0.6310 +3190 399664 0.8110 +3190 440093 0.4630 +3190 440686 0.4120 +3190 653604 0.4210 +3190 100507043 0.5490 +3190 100526737 0.5780 +3191 3192 0.9740 +3191 3301 0.4130 +3191 3312 0.6150 +3191 3608 0.8360 +3191 3921 0.4450 +3191 4116 0.5800 +3191 4137 0.5640 +3191 4154 0.8960 +3191 4289 0.4420 +3191 4343 0.5310 +3191 4609 0.4220 +3191 4670 0.9740 +3191 4691 0.7560 +3191 4771 0.4090 +3191 4809 0.4710 +3191 4841 0.8020 +3191 4857 0.4100 +3191 4904 0.8720 +3191 5093 0.9380 +3191 5094 0.9510 +3191 5201 0.4090 +3191 5204 0.4320 +3191 5315 0.5320 +3191 5437 0.4650 +3191 5682 0.5700 +3191 5683 0.4150 +3191 5684 0.5180 +3191 5685 0.4040 +3191 5707 0.4090 +3191 5725 0.9930 +3191 5728 0.4080 +3191 5788 0.5190 +3191 5799 0.4790 +3191 5928 0.5120 +3191 5936 0.6400 +3191 5976 0.6480 +3191 6047 0.5100 +3191 6124 0.4210 +3191 6136 0.4690 +3191 6181 0.4970 +3191 6193 0.4350 +3191 6210 0.4510 +3191 6217 0.4670 +3191 6224 0.5220 +3191 6240 0.6060 +3191 6241 0.5900 +3191 6294 0.6260 +3191 6418 0.4050 +3191 6421 0.9180 +3191 6426 0.9450 +3191 6427 0.7510 +3191 6428 0.9520 +3191 6429 0.6540 +3191 6430 0.7590 +3191 6431 0.8260 +3191 6432 0.9260 +3191 6434 0.9030 +3191 6513 0.5550 +3191 6515 0.4600 +3191 6606 0.4780 +3191 6607 0.4910 +3191 6625 0.8420 +3191 6626 0.6480 +3191 6627 0.4610 +3191 6628 0.4480 +3191 6629 0.5510 +3191 6631 0.4810 +3191 6632 0.7390 +3191 6633 0.7100 +3191 6634 0.6840 +3191 6635 0.7080 +3191 6636 0.7250 +3191 6637 0.7010 +3191 6657 0.5690 +3191 6714 0.4220 +3191 6733 0.5100 +3191 6741 0.7250 +3191 6874 0.5780 +3191 6936 0.5040 +3191 7072 0.4180 +3191 7073 0.6240 +3191 7150 0.5240 +3191 7157 0.6450 +3191 7168 0.4470 +3191 7280 0.4450 +3191 7307 0.8040 +3191 7329 0.8040 +3191 7341 0.4990 +3191 7458 0.5500 +3191 7520 0.6040 +3191 7531 0.5070 +3191 7536 0.6190 +3191 7919 0.8070 +3191 8106 0.7180 +3191 8148 0.8160 +3191 8241 0.5900 +3191 8260 0.4820 +3191 8379 0.4730 +3191 8570 0.7660 +3191 8607 0.4610 +3191 8666 0.4520 +3191 8668 0.4360 +3191 8683 0.7600 +3191 8880 0.6450 +3191 8939 0.4290 +3191 9092 0.4100 +3191 9097 0.5390 +3191 9100 0.5380 +3191 9129 0.4090 +3191 9136 0.4180 +3191 9147 0.5960 +3191 9255 0.4190 +3191 9295 0.7770 +3191 9296 0.4540 +3191 9343 0.6930 +3191 9401 0.4020 +3191 9410 0.4390 +3191 9439 0.7220 +3191 9444 0.6270 +3191 9584 0.7500 +3191 9774 0.5290 +3191 9775 0.7790 +3191 9776 0.4140 +3191 9782 0.8880 +3191 9887 0.4920 +3191 9939 0.4360 +3191 9967 0.5200 +3191 9987 0.9480 +3191 9991 0.4150 +3191 10128 0.4530 +3191 10147 0.4480 +3191 10150 0.6230 +3191 10155 0.4410 +3191 10180 0.4470 +3191 10181 0.5510 +3191 10189 0.8440 +3191 10197 0.5960 +3191 10212 0.5310 +3191 10236 0.9610 +3191 10284 0.5470 +3191 10286 0.4100 +3191 10291 0.4700 +3191 10432 0.7730 +3191 10471 0.4350 +3191 10492 0.9330 +3191 10521 0.6630 +3191 10523 0.4110 +3191 10576 0.4630 +3191 10642 0.4450 +3191 10643 0.5580 +3191 10644 0.5140 +3191 10657 0.8420 +3191 10658 0.7370 +3191 10659 0.4180 +3191 10694 0.4800 +3191 10726 0.4420 +3191 10772 0.8450 +3191 10921 0.5360 +3191 10929 0.5050 +3191 10949 0.8680 +3191 10992 0.4090 +3191 11051 0.7100 +3191 11052 0.7290 +3191 11060 0.6360 +3191 11100 0.5370 +3191 11322 0.6780 +3191 11338 0.9460 +3191 22827 0.4190 +3191 22913 0.7370 +3191 22916 0.6380 +3191 23016 0.6250 +3191 23019 0.4490 +3191 23160 0.4660 +3191 23196 0.6330 +3191 23293 0.5340 +3191 23350 0.4040 +3191 23367 0.4480 +3191 23404 0.5010 +3191 23435 0.8370 +3191 23450 0.4730 +3191 23451 0.4430 +3191 23510 0.5750 +3191 23543 0.6800 +3191 24144 0.5350 +3191 25929 0.4800 +3191 26065 0.6870 +3191 26097 0.6850 +3191 26523 0.4400 +3191 26528 0.4970 +3191 26986 0.7140 +3191 27161 0.5460 +3191 27258 0.5460 +3191 27316 0.9270 +3191 27332 0.5420 +3191 27339 0.7640 +3191 29072 0.9350 +3191 29894 0.4780 +3191 29896 0.5270 +3191 51010 0.4190 +3191 51247 0.4650 +3191 51593 0.7250 +3191 51637 0.4280 +3191 51639 0.5510 +3191 51690 0.4770 +3191 51691 0.4320 +3191 54502 0.5110 +3191 54606 0.4480 +3191 55110 0.4960 +3191 55234 0.4300 +3191 55666 0.6150 +3191 55796 0.4630 +3191 56259 0.6630 +3191 57187 0.5080 +3191 57805 0.5540 +3191 58155 0.4780 +3191 64783 0.4410 +3191 64975 0.4530 +3191 80218 0.5360 +3191 81533 0.5100 +3191 83443 0.5460 +3191 83737 0.4550 +3191 84154 0.4440 +3191 84324 0.4310 +3191 84844 0.5320 +3191 84991 0.5590 +3191 124540 0.4200 +3191 135295 0.4770 +3191 143884 0.5740 +3191 152485 0.7530 +3191 157574 0.5400 +3191 203068 0.4540 +3191 220988 0.9700 +3191 221092 0.5740 +3191 284695 0.6080 +3192 3276 0.7700 +3192 3309 0.5450 +3192 3312 0.6010 +3192 3320 0.5020 +3192 3428 0.4580 +3192 3551 0.7400 +3192 3608 0.8490 +3192 3692 0.4180 +3192 3837 0.4500 +3192 3887 0.4760 +3192 3930 0.5690 +3192 4116 0.6660 +3192 4154 0.4590 +3192 4343 0.4250 +3192 4609 0.6000 +3192 4627 0.5700 +3192 4670 0.9850 +3192 4673 0.6990 +3192 4686 0.4430 +3192 4691 0.9610 +3192 4692 0.7680 +3192 4762 0.4220 +3192 4792 0.4980 +3192 4841 0.7400 +3192 4869 0.7990 +3192 4904 0.9980 +3192 4926 0.4940 +3192 4931 0.7630 +3192 5093 0.7590 +3192 5094 0.8160 +3192 5158 0.4080 +3192 5456 0.4390 +3192 5725 0.9430 +3192 5932 0.4740 +3192 5935 0.4410 +3192 5976 0.5950 +3192 6125 0.4570 +3192 6128 0.4890 +3192 6129 0.6650 +3192 6141 0.4940 +3192 6142 0.4140 +3192 6143 0.4470 +3192 6147 0.4230 +3192 6154 0.5440 +3192 6175 0.4400 +3192 6181 0.4730 +3192 6188 0.6640 +3192 6194 0.4820 +3192 6202 0.4460 +3192 6203 0.5410 +3192 6205 0.5830 +3192 6207 0.5980 +3192 6208 0.4440 +3192 6217 0.4900 +3192 6224 0.4540 +3192 6230 0.4180 +3192 6235 0.4700 +3192 6294 0.8600 +3192 6304 0.4350 +3192 6418 0.4040 +3192 6421 0.9370 +3192 6426 0.9510 +3192 6427 0.7460 +3192 6428 0.8960 +3192 6429 0.6560 +3192 6430 0.6470 +3192 6431 0.7780 +3192 6432 0.8820 +3192 6434 0.8710 +3192 6606 0.4410 +3192 6613 0.4540 +3192 6625 0.7500 +3192 6626 0.6900 +3192 6627 0.6190 +3192 6628 0.9040 +3192 6632 0.6970 +3192 6633 0.6570 +3192 6634 0.8490 +3192 6635 0.8810 +3192 6636 0.6360 +3192 6637 0.5590 +3192 6657 0.4190 +3192 6726 0.4390 +3192 6741 0.5640 +3192 6780 0.7450 +3192 6936 0.5060 +3192 7011 0.7280 +3192 7015 0.7450 +3192 7072 0.5890 +3192 7073 0.7100 +3192 7112 0.6180 +3192 7124 0.5200 +3192 7150 0.7430 +3192 7157 0.7000 +3192 7168 0.4200 +3192 7170 0.4420 +3192 7175 0.4760 +3192 7184 0.4450 +3192 7307 0.8010 +3192 7341 0.4240 +3192 7415 0.4540 +3192 7431 0.4330 +3192 7520 0.6900 +3192 7528 0.4080 +3192 7531 0.4440 +3192 7534 0.5810 +3192 7536 0.5920 +3192 7812 0.9470 +3192 7818 0.4940 +3192 7919 0.7490 +3192 8087 0.4370 +3192 8148 0.6770 +3192 8175 0.7320 +3192 8241 0.5250 +3192 8289 0.4070 +3192 8290 0.4340 +3192 8340 0.5550 +3192 8341 0.4590 +3192 8342 0.4710 +3192 8345 0.4630 +3192 8347 0.4650 +3192 8348 0.4860 +3192 8349 0.5620 +3192 8361 0.4130 +3192 8467 0.4050 +3192 8522 0.4170 +3192 8548 0.4360 +3192 8554 0.4640 +3192 8570 0.6790 +3192 8653 0.4880 +3192 8666 0.5730 +3192 8683 0.6910 +3192 8761 0.5550 +3192 8850 0.7580 +3192 8880 0.5720 +3192 8930 0.4190 +3192 8945 0.8400 +3192 8970 0.4650 +3192 9063 0.4570 +3192 9128 0.4500 +3192 9129 0.4470 +3192 9184 0.4060 +3192 9188 0.7140 +3192 9295 0.7070 +3192 9343 0.5100 +3192 9584 0.7660 +3192 9589 0.4720 +3192 9667 0.6180 +3192 9774 0.4640 +3192 9775 0.6040 +3192 9782 0.8510 +3192 9887 0.5620 +3192 9939 0.4570 +3192 9967 0.5120 +3192 9972 0.4500 +3192 9987 0.9460 +3192 10075 0.4390 +3192 10146 0.4290 +3192 10155 0.4540 +3192 10189 0.7270 +3192 10197 0.5150 +3192 10212 0.5010 +3192 10236 0.9470 +3192 10284 0.4790 +3192 10291 0.6490 +3192 10432 0.7220 +3192 10472 0.6040 +3192 10492 0.9980 +3192 10521 0.7460 +3192 10594 0.6270 +3192 10614 0.4050 +3192 10625 0.4370 +3192 10642 0.9890 +3192 10643 0.6640 +3192 10644 0.5210 +3192 10657 0.8320 +3192 10658 0.5090 +3192 10664 0.6310 +3192 10728 0.7630 +3192 10772 0.7800 +3192 10921 0.4250 +3192 10929 0.4840 +3192 10933 0.4460 +3192 10946 0.4050 +3192 10949 0.9790 +3192 10992 0.5150 +3192 11051 0.5580 +3192 11052 0.7680 +3192 11100 0.5040 +3192 11198 0.4490 +3192 11284 0.4940 +3192 11322 0.5370 +3192 11335 0.5760 +3192 11338 0.8520 +3192 22913 0.7270 +3192 22916 0.6550 +3192 22938 0.4490 +3192 22985 0.8760 +3192 23013 0.5080 +3192 23020 0.6780 +3192 23215 0.4640 +3192 23244 0.4600 +3192 23291 0.6180 +3192 23293 0.5890 +3192 23350 0.4320 +3192 23367 0.4880 +3192 23381 0.5750 +3192 23405 0.4450 +3192 23411 0.4750 +3192 23435 0.8740 +3192 23450 0.6170 +3192 23451 0.5750 +3192 23468 0.5790 +3192 23524 0.4070 +3192 24144 0.5210 +3192 25792 0.5050 +3192 26065 0.8300 +3192 26097 0.4090 +3192 26135 0.7020 +3192 26156 0.4080 +3192 26523 0.5770 +3192 26986 0.8810 +3192 27044 0.4970 +3192 27161 0.4710 +3192 27185 0.4850 +3192 27258 0.4370 +3192 27316 0.9250 +3192 27339 0.4860 +3192 28957 0.4180 +3192 28998 0.4770 +3192 29894 0.5310 +3192 29978 0.4220 +3192 51043 0.8750 +3192 51202 0.4630 +3192 51493 0.5840 +3192 51574 0.6060 +3192 51593 0.5620 +3192 51602 0.4150 +3192 51637 0.4640 +3192 51692 0.4560 +3192 51747 0.5320 +3192 53938 0.4090 +3192 53981 0.4610 +3192 54145 0.4630 +3192 54433 0.7270 +3192 54552 0.8250 +3192 54606 0.5880 +3192 54845 0.4220 +3192 55135 0.7990 +3192 55226 0.7700 +3192 55234 0.4230 +3192 55269 0.4050 +3192 55505 0.7240 +3192 55582 0.4270 +3192 55651 0.7310 +3192 55660 0.4670 +3192 56257 0.4160 +3192 56259 0.6630 +3192 56339 0.4700 +3192 56341 0.7150 +3192 57492 0.5250 +3192 57721 0.4200 +3192 58517 0.4010 +3192 60489 0.4200 +3192 64399 0.4100 +3192 64641 0.5970 +3192 64783 0.4480 +3192 65080 0.4540 +3192 65993 0.4510 +3192 79661 0.5290 +3192 79869 0.4910 +3192 84324 0.4130 +3192 84844 0.4030 +3192 85236 0.4630 +3192 91746 0.4220 +3192 92906 0.5830 +3192 116228 0.4960 +3192 122704 0.4200 +3192 124245 0.4610 +3192 128312 0.4650 +3192 129831 0.4060 +3192 134353 0.7220 +3192 135295 0.4210 +3192 140890 0.4440 +3192 143884 0.4990 +3192 149041 0.5590 +3192 158983 0.4650 +3192 161823 0.4420 +3192 170506 0.4770 +3192 192670 0.4130 +3192 203228 0.5150 +3192 220988 0.9120 +3192 255626 0.4630 +3192 286436 0.4650 +3192 374654 0.4280 +3192 440689 0.4760 +3192 114483833 0.4650 +3195 3670 0.4020 +3195 3975 0.5070 +3195 4004 0.8300 +3195 4005 0.8200 +3195 4010 0.4930 +3195 4066 0.8290 +3195 4211 0.6640 +3195 4212 0.6170 +3195 4617 0.4230 +3195 4782 0.5770 +3195 4791 0.5190 +3195 4851 0.5440 +3195 5015 0.4090 +3195 5076 0.9530 +3195 5087 0.6590 +3195 5089 0.7220 +3195 5501 0.5120 +3195 5771 0.6600 +3195 5782 0.4270 +3195 6299 0.4590 +3195 6468 0.5770 +3195 6495 0.4220 +3195 6886 0.8600 +3195 6887 0.6730 +3195 6929 0.4390 +3195 6943 0.7360 +3195 7088 0.6420 +3195 7490 0.4650 +3195 8021 0.8550 +3195 8028 0.5830 +3195 8861 0.4990 +3195 9051 0.4200 +3195 9079 0.4670 +3195 9242 0.6340 +3195 10320 0.5530 +3195 10736 0.5900 +3195 27343 0.4580 +3195 54584 0.4020 +3195 55294 0.4510 +3195 59336 0.4070 +3195 64901 0.6140 +3195 64919 0.6710 +3195 84295 0.8410 +3195 84662 0.4780 +3195 170302 0.5080 +3195 286530 0.5190 +3196 4004 0.5720 +3196 4005 0.4990 +3196 4066 0.6210 +3196 5350 0.7020 +3196 5625 0.4970 +3196 6427 0.4260 +3196 6546 0.7110 +3196 6588 0.4480 +3196 6886 0.5480 +3196 8861 0.4400 +3196 9355 0.4070 +3196 9697 0.4690 +3196 10625 0.8250 +3196 64901 0.7610 +3196 64919 0.6610 +3196 89884 0.4570 +3196 157848 0.5130 +3196 165545 0.4350 +3196 170302 0.5100 +3196 401934 0.6100 +3196 497189 0.5250 +3198 3199 0.4170 +3198 3211 0.9340 +3198 3213 0.5940 +3198 3231 0.9090 +3198 3846 0.6130 +3198 4188 0.4300 +3198 4211 0.5740 +3198 5087 0.8330 +3198 5089 0.5470 +3198 5090 0.4130 +3198 5316 0.7090 +3198 5431 0.4990 +3198 5432 0.5020 +3198 5433 0.4990 +3198 5434 0.5120 +3198 5435 0.4990 +3198 5436 0.4990 +3198 5437 0.4990 +3198 5438 0.5070 +3198 5439 0.4990 +3198 5440 0.4990 +3198 5441 0.4990 +3198 5914 0.6430 +3198 5916 0.5840 +3198 5929 0.5190 +3198 6256 0.5270 +3198 6469 0.4350 +3198 7403 0.5220 +3198 8085 0.5050 +3198 8202 0.5250 +3198 8331 0.4990 +3198 8334 0.4990 +3198 8337 0.4990 +3198 8338 0.4990 +3198 8340 0.4990 +3198 8341 0.4990 +3198 8342 0.4990 +3198 8345 0.4990 +3198 8347 0.4990 +3198 8348 0.5000 +3198 8349 0.4990 +3198 8356 0.5390 +3198 8361 0.4990 +3198 8726 0.4350 +3198 8970 0.4990 +3198 9070 0.5290 +3198 10252 0.6110 +3198 11091 0.4990 +3198 22976 0.4990 +3198 23054 0.5010 +3198 23512 0.4380 +3198 54145 0.4990 +3198 54332 0.4350 +3198 55766 0.4990 +3198 57167 0.7270 +3198 58508 0.5050 +3198 64221 0.7220 +3198 79447 0.4990 +3198 80139 0.5120 +3198 80714 0.4720 +3198 83897 0.4220 +3198 85236 0.4990 +3198 94239 0.5020 +3198 128312 0.4990 +3198 255626 0.4990 +3198 353132 0.5880 +3198 387267 0.5910 +3198 474382 0.4990 +3198 653604 0.5390 +3199 3200 0.7290 +3199 3201 0.6000 +3199 3202 0.7220 +3199 3205 0.4920 +3199 3206 0.4930 +3199 3207 0.4170 +3199 3209 0.4320 +3199 3211 0.6480 +3199 3213 0.4700 +3199 3214 0.4040 +3199 3215 0.5770 +3199 3217 0.4060 +3199 3218 0.4570 +3199 3219 0.4340 +3199 3236 0.4410 +3199 3381 0.6890 +3199 4005 0.4400 +3199 4192 0.5410 +3199 4211 0.4800 +3199 4212 0.4360 +3199 5083 0.6070 +3199 5087 0.8330 +3199 5089 0.4860 +3199 5090 0.4710 +3199 5316 0.6800 +3199 5431 0.5130 +3199 5432 0.5020 +3199 5433 0.4990 +3199 5434 0.4990 +3199 5435 0.4990 +3199 5436 0.4990 +3199 5437 0.4990 +3199 5438 0.5070 +3199 5439 0.4990 +3199 5440 0.4990 +3199 5441 0.4990 +3199 5929 0.5580 +3199 5990 0.4740 +3199 6091 0.7370 +3199 6092 0.8020 +3199 6469 0.4250 +3199 6585 0.5780 +3199 6612 0.4280 +3199 7403 0.5920 +3199 8085 0.5330 +3199 8331 0.4990 +3199 8334 0.4990 +3199 8337 0.5220 +3199 8338 0.5200 +3199 8340 0.4990 +3199 8341 0.4990 +3199 8342 0.4990 +3199 8345 0.4990 +3199 8347 0.4990 +3199 8348 0.4990 +3199 8349 0.5280 +3199 8356 0.5930 +3199 8361 0.5090 +3199 8970 0.4990 +3199 9070 0.5760 +3199 9353 0.5170 +3199 9355 0.6580 +3199 10736 0.4230 +3199 11091 0.5940 +3199 22976 0.4990 +3199 23054 0.4990 +3199 23314 0.6830 +3199 25898 0.6150 +3199 54145 0.4990 +3199 55553 0.4730 +3199 55766 0.4990 +3199 58158 0.6090 +3199 58508 0.5190 +3199 63973 0.6390 +3199 64221 0.6390 +3199 79447 0.5020 +3199 85236 0.4990 +3199 94239 0.5800 +3199 128312 0.4990 +3199 255626 0.4990 +3199 340665 0.4320 +3199 431707 0.6630 +3199 474382 0.4990 +3199 653604 0.5830 +3200 3201 0.8440 +3200 3202 0.8050 +3200 3203 0.7070 +3200 3204 0.8560 +3200 3205 0.7330 +3200 3206 0.7320 +3200 3207 0.5010 +3200 3209 0.5660 +3200 3211 0.6440 +3200 3212 0.4320 +3200 3213 0.4120 +3200 3214 0.4430 +3200 3216 0.4650 +3200 3218 0.4100 +3200 3219 0.4340 +3200 3221 0.4630 +3200 3225 0.4460 +3200 3234 0.5760 +3200 3235 0.5870 +3200 3236 0.6150 +3200 4211 0.6490 +3200 5075 0.6290 +3200 5083 0.5530 +3200 5087 0.7600 +3200 5089 0.5390 +3200 5090 0.5530 +3200 5316 0.6560 +3200 5431 0.4990 +3200 5432 0.5020 +3200 5433 0.4990 +3200 5434 0.4990 +3200 5435 0.4990 +3200 5436 0.4990 +3200 5437 0.4990 +3200 5438 0.5070 +3200 5439 0.4990 +3200 5440 0.4990 +3200 5441 0.4990 +3200 5915 0.4930 +3200 5929 0.5670 +3200 6899 0.4250 +3200 7290 0.6380 +3200 7403 0.5760 +3200 7625 0.4020 +3200 8085 0.5200 +3200 8214 0.4370 +3200 8331 0.5260 +3200 8334 0.4990 +3200 8337 0.5150 +3200 8338 0.5150 +3200 8340 0.4990 +3200 8341 0.4990 +3200 8342 0.4990 +3200 8345 0.4990 +3200 8347 0.5050 +3200 8348 0.4990 +3200 8349 0.5290 +3200 8356 0.6000 +3200 8361 0.5110 +3200 8456 0.6610 +3200 8970 0.4990 +3200 9070 0.5830 +3200 9935 0.6040 +3200 10094 0.4830 +3200 10483 0.4260 +3200 10664 0.5970 +3200 11091 0.5620 +3200 22976 0.4990 +3200 23054 0.5140 +3200 54145 0.4990 +3200 55766 0.4990 +3200 58508 0.5360 +3200 60529 0.5200 +3200 79447 0.5390 +3200 80714 0.4690 +3200 85236 0.4990 +3200 85359 0.4340 +3200 94239 0.5060 +3200 128312 0.4990 +3200 144809 0.4100 +3200 255626 0.4990 +3200 474382 0.4990 +3200 653604 0.5880 +3201 3202 0.8130 +3201 3203 0.4850 +3201 3204 0.5660 +3201 3205 0.5670 +3201 3206 0.5790 +3201 3207 0.5350 +3201 3209 0.4640 +3201 3235 0.5800 +3201 3236 0.5720 +3201 4211 0.5100 +3201 4928 0.5090 +3201 5087 0.4920 +3201 5089 0.4350 +3201 5090 0.5040 +3201 5224 0.7150 +3201 5431 0.4990 +3201 5432 0.5020 +3201 5433 0.4990 +3201 5434 0.4990 +3201 5435 0.4990 +3201 5436 0.4990 +3201 5437 0.4990 +3201 5438 0.5070 +3201 5439 0.4990 +3201 5440 0.4990 +3201 5441 0.4990 +3201 5644 0.5110 +3201 5914 0.6060 +3201 5915 0.6140 +3201 6256 0.5730 +3201 8202 0.5130 +3201 8331 0.4990 +3201 8334 0.4990 +3201 8337 0.5110 +3201 8338 0.5110 +3201 8340 0.4990 +3201 8341 0.4990 +3201 8342 0.4990 +3201 8345 0.4990 +3201 8347 0.4990 +3201 8348 0.4990 +3201 8349 0.4990 +3201 8356 0.5770 +3201 8361 0.4990 +3201 8970 0.4990 +3201 10126 0.7120 +3201 10664 0.5710 +3201 54145 0.4990 +3201 55766 0.4990 +3201 85236 0.4990 +3201 94239 0.4990 +3201 128312 0.4990 +3201 136541 0.5490 +3201 139189 0.4200 +3201 255403 0.4440 +3201 255626 0.4990 +3201 474382 0.4990 +3201 653604 0.5750 +3202 3203 0.9690 +3202 3204 0.9600 +3202 3205 0.7760 +3202 3206 0.8830 +3202 3207 0.5130 +3202 3209 0.4420 +3202 3212 0.4500 +3202 3213 0.5150 +3202 3214 0.8620 +3202 3215 0.9140 +3202 3216 0.9080 +3202 3217 0.9600 +3202 3218 0.4790 +3202 3221 0.8770 +3202 3222 0.8360 +3202 3223 0.8640 +3202 3225 0.4200 +3202 3233 0.9380 +3202 3235 0.5820 +3202 3236 0.5720 +3202 4086 0.5450 +3202 4211 0.6690 +3202 4297 0.4360 +3202 5087 0.8080 +3202 5089 0.7200 +3202 5090 0.7280 +3202 5175 0.4970 +3202 5453 0.4180 +3202 5915 0.4100 +3202 6657 0.6030 +3202 6774 0.5330 +3202 6913 0.4420 +3202 7025 0.4010 +3202 7057 0.4320 +3202 7291 0.6430 +3202 8028 0.4040 +3202 9464 0.6310 +3202 29947 0.4100 +3202 30832 0.5360 +3202 55869 0.7180 +3202 79191 0.4250 +3202 80714 0.5450 +3202 84458 0.4840 +3202 117581 0.5270 +3202 163859 0.4460 +3202 171023 0.4130 +3203 3204 0.9210 +3203 3205 0.5300 +3203 3206 0.5530 +3203 3207 0.5230 +3203 3209 0.4800 +3203 3214 0.8470 +3203 3215 0.8480 +3203 3216 0.8510 +3203 3217 0.8570 +3203 3221 0.8800 +3203 3222 0.8390 +3203 3223 0.8320 +3203 3233 0.8300 +3203 3234 0.5330 +3203 3235 0.5630 +3203 3236 0.5640 +3203 3394 0.4120 +3203 4211 0.6590 +3203 5087 0.4410 +3203 5089 0.4870 +3203 5090 0.5280 +3203 5644 0.5490 +3203 80714 0.4210 +3203 136541 0.6410 +3204 3205 0.9460 +3204 3206 0.8510 +3204 3207 0.6050 +3204 3209 0.5960 +3204 3214 0.8570 +3204 3215 0.8630 +3204 3216 0.8860 +3204 3217 0.9380 +3204 3218 0.4650 +3204 3219 0.4230 +3204 3221 0.8690 +3204 3222 0.8500 +3204 3223 0.8770 +3204 3224 0.4320 +3204 3225 0.5800 +3204 3233 0.8660 +3204 3234 0.4520 +3204 3320 0.4850 +3204 3892 0.4040 +3204 3960 0.5070 +3204 4211 0.9070 +3204 4297 0.7010 +3204 4298 0.6850 +3204 4299 0.4760 +3204 4300 0.4970 +3204 4301 0.5310 +3204 4928 0.6820 +3204 5087 0.7520 +3204 5089 0.5770 +3204 5090 0.6220 +3204 5396 0.4330 +3204 5910 0.4220 +3204 6217 0.4970 +3204 6586 0.4070 +3204 7994 0.4390 +3204 8021 0.5250 +3204 8028 0.5240 +3204 10162 0.5490 +3204 10194 0.4290 +3204 11168 0.6840 +3204 23521 0.4520 +3204 26040 0.4520 +3204 26227 0.4440 +3204 54904 0.4310 +3204 55617 0.5850 +3204 57616 0.4360 +3204 64324 0.5540 +3204 79142 0.5370 +3204 80714 0.4170 +3204 84444 0.4310 +3204 84662 0.4860 +3204 124540 0.4660 +3204 128553 0.4550 +3204 171023 0.4260 +3205 3206 0.9310 +3205 3207 0.6330 +3205 3209 0.4760 +3205 3213 0.4470 +3205 3214 0.4080 +3205 3215 0.4100 +3205 3216 0.4720 +3205 3218 0.4570 +3205 3219 0.5490 +3205 3221 0.4220 +3205 3234 0.6350 +3205 3235 0.5410 +3205 3236 0.6090 +3205 3417 0.4190 +3205 3418 0.4020 +3205 3479 0.4970 +3205 3562 0.4740 +3205 3725 0.5270 +3205 3815 0.5560 +3205 3899 0.4550 +3205 3960 0.4500 +3205 4005 0.4990 +3205 4066 0.4260 +3205 4089 0.4490 +3205 4145 0.4820 +3205 4211 0.9980 +3205 4212 0.6500 +3205 4297 0.8940 +3205 4298 0.8290 +3205 4299 0.7610 +3205 4300 0.8850 +3205 4301 0.6420 +3205 4302 0.5690 +3205 4440 0.5480 +3205 4609 0.5140 +3205 4869 0.4540 +3205 4928 0.9640 +3205 5015 0.4910 +3205 5079 0.5860 +3205 5087 0.9980 +3205 5089 0.8290 +3205 5090 0.9540 +3205 5179 0.4950 +3205 5316 0.4330 +3205 5458 0.5860 +3205 5688 0.5070 +3205 5728 0.5980 +3205 5910 0.4810 +3205 5914 0.4630 +3205 5925 0.4530 +3205 5927 0.5540 +3205 5929 0.4260 +3205 6688 0.5540 +3205 6776 0.5800 +3205 6777 0.5760 +3205 6886 0.5170 +3205 6929 0.4330 +3205 7157 0.5420 +3205 7205 0.6310 +3205 7380 0.5020 +3205 7514 0.5080 +3205 7710 0.4340 +3205 7994 0.7940 +3205 8021 0.6300 +3205 8028 0.7680 +3205 8178 0.4910 +3205 8290 0.6670 +3205 8328 0.4410 +3205 8356 0.6670 +3205 8361 0.4820 +3205 8451 0.7450 +3205 8515 0.4610 +3205 8600 0.4060 +3205 8650 0.4970 +3205 9070 0.4020 +3205 9253 0.5410 +3205 9739 0.4110 +3205 10126 0.4570 +3205 10419 0.5000 +3205 10450 0.4630 +3205 10524 0.4470 +3205 10642 0.4510 +3205 10664 0.4320 +3205 10725 0.4880 +3205 11030 0.5300 +3205 11091 0.5090 +3205 11168 0.7670 +3205 11186 0.5070 +3205 23028 0.4010 +3205 23157 0.4140 +3205 23476 0.6510 +3205 23512 0.5520 +3205 26040 0.5820 +3205 27253 0.4670 +3205 54790 0.4240 +3205 54904 0.5040 +3205 55617 0.5660 +3205 56100 0.5680 +3205 57332 0.5520 +3205 64324 0.6250 +3205 79142 0.6000 +3205 80714 0.4350 +3205 84444 0.6920 +3205 84458 0.4360 +3205 84824 0.7180 +3205 124540 0.9160 +3205 171023 0.5700 +3205 440093 0.6670 +3205 440686 0.6670 +3205 653604 0.6670 +3205 100532731 0.4820 +3206 3207 0.8660 +3206 3209 0.7840 +3206 3217 0.4940 +3206 3218 0.4860 +3206 3223 0.4070 +3206 3224 0.4150 +3206 3234 0.4450 +3206 3235 0.4250 +3206 3236 0.5070 +3206 3237 0.4380 +3206 3484 0.5220 +3206 3549 0.4590 +3206 3976 0.4760 +3206 4211 0.8630 +3206 4212 0.5970 +3206 4297 0.5780 +3206 4298 0.6960 +3206 4299 0.4470 +3206 4300 0.5060 +3206 4301 0.5640 +3206 4609 0.4180 +3206 4928 0.5200 +3206 5075 0.4750 +3206 5080 0.4060 +3206 5087 0.8670 +3206 5089 0.8480 +3206 5090 0.6230 +3206 5241 0.5400 +3206 5733 0.4330 +3206 5734 0.4200 +3206 6688 0.5520 +3206 7157 0.5260 +3206 7476 0.4630 +3206 8028 0.4700 +3206 8726 0.4770 +3206 8854 0.5020 +3206 9464 0.4480 +3206 10424 0.4280 +3206 10527 0.4670 +3206 23476 0.4030 +3206 23566 0.4370 +3206 54361 0.4930 +3206 55617 0.5590 +3206 80714 0.6780 +3206 84444 0.4160 +3206 84458 0.5060 +3206 136541 0.4220 +3206 171023 0.4070 +3206 338917 0.4250 +3207 3209 0.7570 +3207 3218 0.4140 +3207 3221 0.4140 +3207 3223 0.4090 +3207 3224 0.4200 +3207 3234 0.4670 +3207 3236 0.4320 +3207 3239 0.4180 +3207 3481 0.4240 +3207 4211 0.5060 +3207 4313 0.5240 +3207 4654 0.4050 +3207 5076 0.7630 +3207 5087 0.7030 +3207 5089 0.5360 +3207 5090 0.5350 +3207 5241 0.4670 +3207 5453 0.4230 +3207 5454 0.4510 +3207 5644 0.4260 +3207 5733 0.4630 +3207 5734 0.4420 +3207 6258 0.4070 +3207 6299 0.4350 +3207 6495 0.4110 +3207 6886 0.4900 +3207 7476 0.4090 +3207 7528 0.4040 +3207 7546 0.4720 +3207 8301 0.4560 +3207 8854 0.4540 +3207 9496 0.4220 +3207 9603 0.5080 +3207 10736 0.5280 +3207 11186 0.4060 +3207 22943 0.4300 +3207 54361 0.4280 +3207 136541 0.4920 +3208 3241 0.4130 +3208 3361 0.4220 +3208 3746 0.8150 +3208 3751 0.4030 +3208 3752 0.7430 +3208 3754 0.4630 +3208 3765 0.4080 +3208 3785 0.4370 +3208 4294 0.6750 +3208 4671 0.5670 +3208 4836 0.4040 +3208 5173 0.5960 +3208 5298 0.6750 +3208 5816 0.5570 +3208 6616 0.4890 +3208 6620 0.4780 +3208 6853 0.4610 +3208 6854 0.4270 +3208 8573 0.4430 +3208 9362 0.5060 +3208 9478 0.5960 +3208 9812 0.4250 +3208 10382 0.6020 +3208 25792 0.5400 +3208 50632 0.4570 +3208 51806 0.4810 +3208 55145 0.7440 +3208 60558 0.5510 +3208 63982 0.5440 +3208 79012 0.4620 +3208 83988 0.6540 +3208 91860 0.6240 +3208 112476 0.4050 +3208 131890 0.4570 +3208 158931 0.4030 +3208 163688 0.6240 +3208 197335 0.4300 +3208 651746 0.6240 +3209 3215 0.4190 +3209 3231 0.4330 +3209 3232 0.4620 +3209 3233 0.4480 +3209 3234 0.4460 +3209 3235 0.4200 +3209 3236 0.4560 +3209 3237 0.4130 +3209 3238 0.4510 +3209 3857 0.5770 +3209 4087 0.4480 +3209 4090 0.6060 +3209 4192 0.4160 +3209 4211 0.5870 +3209 4212 0.5670 +3209 4928 0.6070 +3209 5037 0.4240 +3209 5075 0.4570 +3209 5077 0.5140 +3209 5087 0.5790 +3209 5089 0.5100 +3209 5090 0.4600 +3209 6217 0.6370 +3209 6224 0.4200 +3209 6469 0.4720 +3209 6658 0.5090 +3209 7474 0.6020 +3209 7546 0.6150 +3209 8106 0.4640 +3209 9464 0.4100 +3209 11091 0.4960 +3209 11112 0.5120 +3209 22943 0.5050 +3209 23521 0.5490 +3209 64710 0.4010 +3209 79690 0.4160 +3209 80714 0.4280 +3209 84444 0.4560 +3209 136541 0.4260 +3209 221895 0.4260 +3209 344191 0.4600 +3211 3212 0.7500 +3211 3213 0.6570 +3211 3219 0.4150 +3211 3231 0.9380 +3211 3670 0.4890 +3211 4090 0.4280 +3211 4211 0.7300 +3211 4212 0.4830 +3211 5075 0.5760 +3211 5080 0.4840 +3211 5087 0.9990 +3211 5089 0.6280 +3211 5090 0.5530 +3211 5316 0.9550 +3211 5431 0.4990 +3211 5432 0.5020 +3211 5433 0.4990 +3211 5434 0.4990 +3211 5435 0.5000 +3211 5436 0.4990 +3211 5437 0.4990 +3211 5438 0.5190 +3211 5439 0.4990 +3211 5440 0.4990 +3211 5441 0.4990 +3211 5460 0.4110 +3211 5914 0.6820 +3211 5915 0.4030 +3211 5916 0.6780 +3211 5928 0.5330 +3211 5929 0.5870 +3211 5931 0.4990 +3211 6256 0.5770 +3211 6469 0.4120 +3211 6656 0.4300 +3211 6657 0.4670 +3211 6899 0.4260 +3211 6910 0.4360 +3211 6911 0.5730 +3211 7403 0.8130 +3211 7404 0.4350 +3211 8085 0.5120 +3211 8202 0.5210 +3211 8290 0.4570 +3211 8331 0.5000 +3211 8334 0.4990 +3211 8337 0.5340 +3211 8338 0.5340 +3211 8340 0.5030 +3211 8341 0.5040 +3211 8342 0.5030 +3211 8345 0.5030 +3211 8347 0.5030 +3211 8348 0.5030 +3211 8349 0.5460 +3211 8356 0.7140 +3211 8361 0.5140 +3211 8726 0.6300 +3211 8854 0.4760 +3211 8970 0.5030 +3211 9070 0.5860 +3211 9611 0.5790 +3211 9935 0.6380 +3211 10410 0.5480 +3211 10664 0.5670 +3211 11091 0.5440 +3211 22976 0.5260 +3211 23054 0.5170 +3211 23135 0.7410 +3211 23512 0.7180 +3211 54145 0.5030 +3211 55766 0.4990 +3211 56917 0.4590 +3211 57167 0.5970 +3211 58508 0.5450 +3211 63876 0.7760 +3211 63978 0.4100 +3211 64211 0.4350 +3211 64221 0.6040 +3211 79192 0.4140 +3211 79447 0.5300 +3211 80714 0.5560 +3211 85236 0.5030 +3211 94239 0.5080 +3211 128312 0.5030 +3211 255626 0.5040 +3211 340665 0.5170 +3211 431707 0.4380 +3211 440093 0.4530 +3211 440686 0.4530 +3211 474382 0.4990 +3211 653604 0.7140 +3212 3213 0.7100 +3212 3214 0.6910 +3212 3215 0.7760 +3212 3216 0.6460 +3212 3217 0.5640 +3212 3218 0.6140 +3212 3219 0.5100 +3212 3221 0.4410 +3212 4192 0.5500 +3212 4211 0.7650 +3212 4807 0.4920 +3212 5087 0.8540 +3212 5089 0.4990 +3212 5090 0.5510 +3212 5316 0.8640 +3212 5431 0.5130 +3212 5432 0.5020 +3212 5433 0.4990 +3212 5434 0.4990 +3212 5435 0.4990 +3212 5436 0.5000 +3212 5437 0.5030 +3212 5438 0.5070 +3212 5439 0.4990 +3212 5440 0.4990 +3212 5441 0.4990 +3212 5929 0.5450 +3212 6091 0.4960 +3212 6591 0.4260 +3212 7403 0.5560 +3212 8085 0.5840 +3212 8320 0.4780 +3212 8331 0.4990 +3212 8334 0.5010 +3212 8337 0.5010 +3212 8338 0.4990 +3212 8340 0.4990 +3212 8341 0.4990 +3212 8342 0.4990 +3212 8345 0.4990 +3212 8347 0.4990 +3212 8348 0.5000 +3212 8349 0.5140 +3212 8356 0.5560 +3212 8361 0.4990 +3212 8970 0.5000 +3212 9070 0.5420 +3212 11091 0.5580 +3212 22976 0.4990 +3212 23054 0.4990 +3212 54145 0.4990 +3212 55766 0.5000 +3212 58158 0.6590 +3212 58508 0.5350 +3212 63876 0.7730 +3212 63973 0.6460 +3212 79447 0.5170 +3212 80351 0.5680 +3212 80714 0.4530 +3212 85236 0.5020 +3212 94239 0.5080 +3212 128312 0.4990 +3212 255626 0.4990 +3212 474382 0.4990 +3212 653604 0.5540 +3213 3214 0.8870 +3213 3215 0.8740 +3213 3216 0.8360 +3213 3217 0.5470 +3213 3218 0.7140 +3213 3219 0.7520 +3213 3221 0.4570 +3213 3725 0.5570 +3213 4211 0.7980 +3213 4212 0.6320 +3213 4821 0.4960 +3213 5075 0.5110 +3213 5087 0.7160 +3213 5089 0.4380 +3213 5090 0.5410 +3213 5431 0.4990 +3213 5432 0.5020 +3213 5433 0.4990 +3213 5434 0.4990 +3213 5435 0.4990 +3213 5436 0.4990 +3213 5437 0.4990 +3213 5438 0.5070 +3213 5439 0.4990 +3213 5440 0.4990 +3213 5441 0.4990 +3213 5449 0.4220 +3213 5914 0.6110 +3213 5915 0.4780 +3213 5916 0.6140 +3213 5928 0.4990 +3213 5929 0.5530 +3213 5931 0.4990 +3213 6256 0.5520 +3213 6899 0.4470 +3213 7403 0.5330 +3213 8085 0.5050 +3213 8202 0.5140 +3213 8331 0.5290 +3213 8334 0.5400 +3213 8337 0.5140 +3213 8338 0.5080 +3213 8340 0.4990 +3213 8341 0.5000 +3213 8342 0.4990 +3213 8345 0.4990 +3213 8347 0.5150 +3213 8348 0.5000 +3213 8349 0.5200 +3213 8356 0.5610 +3213 8361 0.5310 +3213 8726 0.5810 +3213 8970 0.4990 +3213 9070 0.5550 +3213 9611 0.5490 +3213 9935 0.6100 +3213 10413 0.4820 +3213 11091 0.5300 +3213 11186 0.5470 +3213 22976 0.5110 +3213 23054 0.4990 +3213 23512 0.5670 +3213 54145 0.4990 +3213 55766 0.5000 +3213 57118 0.4020 +3213 58508 0.5190 +3213 64112 0.4970 +3213 79447 0.4990 +3213 85236 0.5110 +3213 94239 0.4990 +3213 128312 0.4990 +3213 255626 0.4990 +3213 474382 0.4990 +3213 653604 0.5480 +3214 3215 0.9580 +3214 3216 0.9150 +3214 3217 0.8900 +3214 3218 0.5610 +3214 3219 0.5620 +3214 3221 0.8430 +3214 3222 0.8390 +3214 3223 0.8450 +3214 3225 0.5780 +3214 3233 0.8510 +3214 3234 0.5240 +3214 3235 0.5660 +3214 3670 0.4050 +3214 3815 0.4210 +3214 4005 0.4600 +3214 4211 0.5680 +3214 4254 0.4090 +3214 4851 0.6430 +3214 4928 0.4460 +3214 5015 0.5720 +3214 5075 0.4590 +3214 5087 0.5700 +3214 5089 0.4770 +3214 5090 0.4860 +3214 5431 0.4990 +3214 5432 0.5020 +3214 5433 0.4990 +3214 5434 0.4990 +3214 5435 0.4990 +3214 5436 0.4990 +3214 5437 0.4990 +3214 5438 0.5070 +3214 5439 0.4990 +3214 5440 0.4990 +3214 5441 0.4990 +3214 5460 0.4640 +3214 5688 0.4340 +3214 5914 0.6470 +3214 5915 0.6690 +3214 5929 0.5380 +3214 6217 0.4700 +3214 6256 0.5530 +3214 6469 0.4310 +3214 6656 0.4580 +3214 6657 0.4360 +3214 6886 0.4640 +3214 6899 0.4090 +3214 6932 0.4900 +3214 7066 0.4290 +3214 7403 0.5530 +3214 8085 0.5050 +3214 8202 0.5020 +3214 8312 0.5760 +3214 8331 0.5210 +3214 8334 0.5090 +3214 8337 0.5260 +3214 8338 0.5260 +3214 8340 0.4990 +3214 8341 0.4990 +3214 8342 0.4990 +3214 8345 0.4990 +3214 8347 0.5070 +3214 8348 0.4990 +3214 8349 0.5430 +3214 8356 0.5780 +3214 8361 0.5240 +3214 8451 0.7240 +3214 8970 0.4990 +3214 9070 0.5450 +3214 9241 0.4930 +3214 10215 0.4350 +3214 10763 0.4410 +3214 11091 0.5320 +3214 22943 0.4320 +3214 22976 0.4990 +3214 23054 0.4990 +3214 23521 0.4400 +3214 28514 0.4200 +3214 51176 0.6060 +3214 53346 0.4120 +3214 54145 0.4990 +3214 55766 0.4990 +3214 58508 0.5050 +3214 64321 0.4350 +3214 64750 0.4060 +3214 79447 0.4990 +3214 80351 0.4220 +3214 85236 0.4990 +3214 89780 0.5520 +3214 94239 0.4990 +3214 128312 0.4990 +3214 255626 0.4990 +3214 474382 0.4990 +3214 653604 0.5720 +3214 100532731 0.4760 +3215 3216 0.9820 +3215 3217 0.9620 +3215 3218 0.9110 +3215 3219 0.8920 +3215 3221 0.9390 +3215 3222 0.8410 +3215 3223 0.8630 +3215 3224 0.4420 +3215 3225 0.6410 +3215 3232 0.4410 +3215 3233 0.8520 +3215 3234 0.6120 +3215 3235 0.6130 +3215 3674 0.4650 +3215 4067 0.4980 +3215 4211 0.5040 +3215 4804 0.4700 +3215 5037 0.4220 +3215 5075 0.4830 +3215 5087 0.8170 +3215 5089 0.6540 +3215 5090 0.6840 +3215 6217 0.5900 +3215 6224 0.4100 +3215 7080 0.4210 +3215 8727 0.4610 +3215 9496 0.4040 +3215 9631 0.4890 +3215 22979 0.4100 +3215 23167 0.4220 +3215 23408 0.4250 +3215 23521 0.5520 +3215 27022 0.4020 +3215 55824 0.4200 +3215 80714 0.6010 +3215 152273 0.4040 +3216 3217 0.9830 +3216 3218 0.8870 +3216 3219 0.8600 +3216 3221 0.9220 +3216 3222 0.8810 +3216 3223 0.8760 +3216 3224 0.4960 +3216 3225 0.6300 +3216 3232 0.4430 +3216 3233 0.8630 +3216 3234 0.4780 +3216 3674 0.5200 +3216 3690 0.6070 +3216 3845 0.4620 +3216 4211 0.6330 +3216 4212 0.5260 +3216 4804 0.5170 +3216 5087 0.6930 +3216 5089 0.6490 +3216 5090 0.6930 +3216 5359 0.5190 +3216 6521 0.5750 +3216 6943 0.5200 +3216 7083 0.4790 +3216 26057 0.5130 +3216 51176 0.4200 +3216 54903 0.4970 +3216 79190 0.4250 +3216 79191 0.4260 +3216 80714 0.5740 +3216 84101 0.4310 +3216 139189 0.4080 +3217 3218 0.7550 +3217 3219 0.6390 +3217 3221 0.8710 +3217 3222 0.8360 +3217 3223 0.9290 +3217 3224 0.5280 +3217 3225 0.6880 +3217 3226 0.4130 +3217 3233 0.8810 +3217 3234 0.4910 +3217 3235 0.5730 +3217 3236 0.6280 +3217 3975 0.4100 +3217 4211 0.6050 +3217 4212 0.6910 +3217 4609 0.5480 +3217 4792 0.5960 +3217 5075 0.4180 +3217 5076 0.5200 +3217 5087 0.8970 +3217 5089 0.8140 +3217 5090 0.5980 +3217 5591 0.9540 +3217 6257 0.4750 +3217 6299 0.4150 +3217 6495 0.4220 +3217 7157 0.5600 +3217 7291 0.4050 +3217 7481 0.4600 +3217 7484 0.4070 +3217 7520 0.9460 +3217 7849 0.4040 +3217 9085 0.4010 +3217 10481 0.4450 +3217 10736 0.6450 +3217 11227 0.5950 +3217 54796 0.4230 +3217 55914 0.4200 +3217 57616 0.4360 +3217 80714 0.5470 +3217 84444 0.4020 +3217 117581 0.4050 +3217 124359 0.4150 +3218 3219 0.8900 +3218 3221 0.5310 +3218 3223 0.4200 +3218 3225 0.5190 +3218 3232 0.4920 +3218 3670 0.4740 +3218 4211 0.7050 +3218 4212 0.6660 +3218 5075 0.4180 +3218 5087 0.9100 +3218 5089 0.6160 +3218 5090 0.7290 +3218 6469 0.5210 +3218 7546 0.4030 +3218 23405 0.5330 +3218 26050 0.5730 +3218 54796 0.4090 +3218 58512 0.8010 +3218 80714 0.5170 +3218 136541 0.4200 +3218 153572 0.6050 +3219 3221 0.4370 +3219 3223 0.4520 +3219 3224 0.4210 +3219 3233 0.4550 +3219 4804 0.5610 +3219 5015 0.4310 +3219 5087 0.5010 +3219 5089 0.4680 +3219 5090 0.4490 +3219 6045 0.4760 +3219 6496 0.5930 +3219 6665 0.4390 +3219 7083 0.4100 +3219 7832 0.9130 +3219 8726 0.5020 +3219 9464 0.4540 +3219 9496 0.4140 +3219 10481 0.4060 +3219 11030 0.5210 +3219 27022 0.4310 +3219 51053 0.6000 +3219 51176 0.5700 +3219 81620 0.5940 +3219 84662 0.4120 +3219 124872 0.6690 +3219 126017 0.4220 +3221 3222 0.9650 +3221 3223 0.9660 +3221 3224 0.6600 +3221 3225 0.7360 +3221 3226 0.6440 +3221 3227 0.5520 +3221 3228 0.4570 +3221 3229 0.6670 +3221 3233 0.8730 +3221 3234 0.5040 +3221 3235 0.4630 +3221 3670 0.6440 +3221 4211 0.5040 +3221 4212 0.4750 +3221 4774 0.4230 +3221 5079 0.4200 +3221 5087 0.7160 +3221 5089 0.6160 +3221 5090 0.6180 +3221 5396 0.5050 +3221 5431 0.4990 +3221 5432 0.5030 +3221 5433 0.4990 +3221 5434 0.4990 +3221 5435 0.5140 +3221 5436 0.5000 +3221 5437 0.4990 +3221 5438 0.5070 +3221 5439 0.4990 +3221 5440 0.4990 +3221 5441 0.4990 +3221 5929 0.5530 +3221 6913 0.4470 +3221 6926 0.4860 +3221 7403 0.5920 +3221 8085 0.5120 +3221 8331 0.4990 +3221 8334 0.4990 +3221 8337 0.5310 +3221 8338 0.5310 +3221 8340 0.5130 +3221 8341 0.5120 +3221 8342 0.5130 +3221 8345 0.5130 +3221 8347 0.5240 +3221 8348 0.5130 +3221 8349 0.5330 +3221 8356 0.5690 +3221 8361 0.4990 +3221 8970 0.5120 +3221 9070 0.5600 +3221 9096 0.4420 +3221 9910 0.4580 +3221 11091 0.5210 +3221 22976 0.5340 +3221 23054 0.4990 +3221 23637 0.4580 +3221 26057 0.4010 +3221 54145 0.5130 +3221 55766 0.4990 +3221 57379 0.5420 +3221 58508 0.5160 +3221 79447 0.5000 +3221 80714 0.5290 +3221 85236 0.5110 +3221 94239 0.5010 +3221 128312 0.5170 +3221 148268 0.4290 +3221 255626 0.5160 +3221 375323 0.4180 +3221 404734 0.4540 +3221 474382 0.4990 +3221 653604 0.5650 +3222 3223 0.9510 +3222 3224 0.5560 +3222 3225 0.5870 +3222 3226 0.5340 +3222 3227 0.6540 +3222 3228 0.6320 +3222 3229 0.6330 +3222 3233 0.8530 +3222 3670 0.6270 +3222 5087 0.4610 +3222 5089 0.4730 +3222 5090 0.4230 +3222 5436 0.5910 +3222 5453 0.4640 +3222 7703 0.4480 +3222 8022 0.4120 +3222 10370 0.5450 +3222 80714 0.5170 +3222 100532731 0.4240 +3223 3224 0.8400 +3223 3225 0.9990 +3223 3226 0.7540 +3223 3227 0.5820 +3223 3228 0.4770 +3223 3229 0.5010 +3223 3233 0.8730 +3223 3234 0.4560 +3223 3235 0.4240 +3223 3670 0.7070 +3223 4211 0.4070 +3223 5075 0.5130 +3223 5087 0.4980 +3223 5089 0.6230 +3223 5090 0.5130 +3223 6913 0.4130 +3223 8022 0.5030 +3223 8854 0.4300 +3223 9070 0.4080 +3223 54361 0.4520 +3223 56165 0.5060 +3223 79191 0.4030 +3224 3225 0.8830 +3224 3226 0.6150 +3224 3227 0.4520 +3224 3228 0.4010 +3224 3229 0.4900 +3224 3233 0.4400 +3224 3235 0.4130 +3224 3670 0.6010 +3224 4086 0.6350 +3224 4087 0.5930 +3224 4089 0.5900 +3224 4091 0.7230 +3224 4092 0.4960 +3224 4211 0.5300 +3224 4212 0.4840 +3224 4487 0.4130 +3224 5080 0.4090 +3224 5087 0.7300 +3224 5089 0.5980 +3224 5090 0.5990 +3224 5453 0.4140 +3224 6474 0.4040 +3224 6498 0.4100 +3224 6594 0.5240 +3224 6899 0.4590 +3224 6913 0.4340 +3224 7350 0.4240 +3224 7403 0.4010 +3224 8022 0.4240 +3224 9479 0.4200 +3224 11091 0.5480 +3224 11244 0.6020 +3224 23405 0.4590 +3224 55252 0.4160 +3224 57154 0.4380 +3224 57594 0.7170 +3224 63976 0.4680 +3224 79190 0.4350 +3224 80714 0.5620 +3224 80816 0.4360 +3224 202018 0.8110 +3224 219623 0.5190 +3224 431707 0.4350 +3225 3226 0.9000 +3225 3227 0.5610 +3225 3229 0.5720 +3225 3231 0.4010 +3225 3233 0.4760 +3225 3234 0.5900 +3225 3235 0.4220 +3225 3416 0.4220 +3225 3670 0.6830 +3225 4211 0.5900 +3225 4212 0.5390 +3225 4435 0.4470 +3225 4617 0.4030 +3225 5087 0.7830 +3225 5089 0.7910 +3225 5090 0.7660 +3225 5663 0.4290 +3225 6427 0.4250 +3225 6474 0.5410 +3225 6899 0.5260 +3225 6913 0.5030 +3225 7350 0.5320 +3225 7545 0.5290 +3225 7849 0.4240 +3225 8022 0.4050 +3225 9404 0.6250 +3225 10768 0.4670 +3225 51053 0.6560 +3225 63976 0.5220 +3225 79191 0.4360 +3225 80714 0.7040 +3225 84171 0.5080 +3225 84289 0.5010 +3225 219623 0.7150 +3225 283078 0.4280 +3225 338917 0.4420 +3225 431707 0.6730 +3226 3227 0.8710 +3226 3229 0.7090 +3226 3234 0.4270 +3226 4618 0.4590 +3226 5087 0.4910 +3226 5089 0.4740 +3226 5090 0.5340 +3226 5307 0.4140 +3226 5626 0.5180 +3226 6899 0.5140 +3226 6909 0.5960 +3226 6910 0.7910 +3226 6911 0.6920 +3226 6913 0.4680 +3226 6926 0.6440 +3226 9496 0.9050 +3226 10419 0.5150 +3226 10481 0.5090 +3226 10716 0.5340 +3226 29907 0.4170 +3226 57167 0.5780 +3226 79191 0.4570 +3226 338917 0.4410 +3226 100288687 0.5620 +3227 3228 0.5120 +3227 3229 0.6050 +3227 5076 0.5300 +3227 5087 0.4710 +3227 5089 0.4720 +3227 5307 0.4080 +3227 6714 0.4550 +3227 6899 0.4850 +3227 6909 0.6120 +3227 6910 0.7340 +3227 6911 0.5980 +3227 6926 0.6290 +3227 6927 0.4100 +3227 9496 0.8470 +3227 10716 0.4880 +3227 10736 0.4230 +3227 57167 0.5870 +3227 100288687 0.5540 +3228 3229 0.4350 +3228 3670 0.5490 +3228 3882 0.4180 +3228 5089 0.4140 +3229 3234 0.4170 +3229 3670 0.4410 +3229 3858 0.4920 +3229 3861 0.4370 +3229 3881 0.4040 +3229 3890 0.4890 +3229 3891 0.4910 +3229 4488 0.5210 +3229 4928 0.6910 +3229 5017 0.4150 +3229 5087 0.4590 +3229 5089 0.4110 +3229 5396 0.6170 +3229 5910 0.6300 +3229 6913 0.4380 +3229 7062 0.4710 +3229 7122 0.4080 +3229 7150 0.4520 +3229 8456 0.7940 +3229 9355 0.4700 +3229 11168 0.5840 +3229 26040 0.5140 +3229 51176 0.6170 +3229 54904 0.5540 +3229 64324 0.5710 +3229 79142 0.5260 +3229 94234 0.6850 +3229 112802 0.5270 +3229 121391 0.4210 +3229 147183 0.4400 +3229 147409 0.5500 +3229 342574 0.4320 +3229 391123 0.4300 +3231 3232 0.4020 +3231 3234 0.4430 +3231 3235 0.4890 +3231 3236 0.6280 +3231 3237 0.6200 +3231 3238 0.5660 +3231 3239 0.4700 +3231 3516 0.4280 +3231 4192 0.5480 +3231 5087 0.4470 +3231 5089 0.4780 +3231 5090 0.4550 +3231 5431 0.4990 +3231 5432 0.5020 +3231 5433 0.4990 +3231 5434 0.5120 +3231 5435 0.4990 +3231 5436 0.4990 +3231 5437 0.4990 +3231 5438 0.5070 +3231 5439 0.4990 +3231 5440 0.4990 +3231 5441 0.4990 +3231 8331 0.4990 +3231 8334 0.4990 +3231 8337 0.5110 +3231 8338 0.5110 +3231 8340 0.4990 +3231 8341 0.4990 +3231 8342 0.4990 +3231 8345 0.4990 +3231 8347 0.4990 +3231 8348 0.4990 +3231 8349 0.4990 +3231 8356 0.5650 +3231 8361 0.4990 +3231 8970 0.4990 +3231 9330 0.6690 +3231 10651 0.6590 +3231 23314 0.4540 +3231 23416 0.6070 +3231 54145 0.4990 +3231 54862 0.6010 +3231 55766 0.4990 +3231 57544 0.4360 +3231 79815 0.4060 +3231 80714 0.4750 +3231 80856 0.8300 +3231 85236 0.4990 +3231 94239 0.5210 +3231 128312 0.4990 +3231 252983 0.4060 +3231 255626 0.4990 +3231 344191 0.4220 +3231 474382 0.4990 +3231 653604 0.5640 +3232 3233 0.9960 +3232 3234 0.6900 +3232 3235 0.7910 +3232 3236 0.7260 +3232 3237 0.5050 +3232 3238 0.4340 +3232 3239 0.5290 +3232 3674 0.5020 +3232 3690 0.5170 +3232 5087 0.4330 +3232 5089 0.4320 +3232 5431 0.4990 +3232 5432 0.5020 +3232 5433 0.4990 +3232 5434 0.5570 +3232 5435 0.5150 +3232 5436 0.4990 +3232 5437 0.4990 +3232 5438 0.5070 +3232 5439 0.4990 +3232 5440 0.4990 +3232 5441 0.4990 +3232 6469 0.5680 +3232 6913 0.4590 +3232 7042 0.4570 +3232 8331 0.5500 +3232 8334 0.4990 +3232 8337 0.5140 +3232 8338 0.5140 +3232 8340 0.4990 +3232 8341 0.4990 +3232 8342 0.4990 +3232 8345 0.4990 +3232 8347 0.4990 +3232 8348 0.4990 +3232 8349 0.5110 +3232 8356 0.5710 +3232 8361 0.4990 +3232 8970 0.4990 +3232 10085 0.5730 +3232 10651 0.7740 +3232 29951 0.4160 +3232 54145 0.4990 +3232 55766 0.4990 +3232 85236 0.4990 +3232 94239 0.5160 +3232 128312 0.4990 +3232 255626 0.4990 +3232 344191 0.4400 +3232 401262 0.5210 +3232 474382 0.4990 +3232 653604 0.5640 +3233 3234 0.6550 +3233 3235 0.6680 +3233 3236 0.5770 +3233 3237 0.5570 +3233 3238 0.4140 +3233 3239 0.6370 +3233 3670 0.5190 +3233 5075 0.4900 +3233 5080 0.5930 +3233 5087 0.5840 +3233 5089 0.4520 +3233 5431 0.4990 +3233 5432 0.5020 +3233 5433 0.4990 +3233 5434 0.4990 +3233 5435 0.4990 +3233 5436 0.4990 +3233 5437 0.4990 +3233 5438 0.5070 +3233 5439 0.4990 +3233 5440 0.4990 +3233 5441 0.4990 +3233 5914 0.6120 +3233 5915 0.7700 +3233 5929 0.5350 +3233 6256 0.5540 +3233 6899 0.4220 +3233 7403 0.5510 +3233 7528 0.5640 +3233 8085 0.5050 +3233 8202 0.5100 +3233 8331 0.4990 +3233 8334 0.4990 +3233 8337 0.5110 +3233 8338 0.5110 +3233 8340 0.4990 +3233 8341 0.4990 +3233 8342 0.4990 +3233 8345 0.4990 +3233 8347 0.4990 +3233 8348 0.4990 +3233 8349 0.5190 +3233 8356 0.5650 +3233 8361 0.4990 +3233 8970 0.4990 +3233 9070 0.5520 +3233 11091 0.5330 +3233 22976 0.5520 +3233 23054 0.5080 +3233 23512 0.4880 +3233 26057 0.4200 +3233 54145 0.4990 +3233 55766 0.4990 +3233 58508 0.5050 +3233 79447 0.4990 +3233 80714 0.4430 +3233 85236 0.4990 +3233 94239 0.5090 +3233 128312 0.4990 +3233 255626 0.4990 +3233 474382 0.4990 +3233 653604 0.5590 +3234 3235 0.8080 +3234 3236 0.5580 +3234 3237 0.4750 +3234 3239 0.5120 +3234 3670 0.4470 +3234 4211 0.4490 +3234 4212 0.4970 +3234 5087 0.5250 +3234 5089 0.6200 +3234 5090 0.5350 +3234 6913 0.4380 +3234 23512 0.4950 +3234 80714 0.5030 +3234 344191 0.4360 +3234 401262 0.5380 +3235 3236 0.8600 +3235 3237 0.7510 +3235 3239 0.7230 +3235 4211 0.6790 +3235 5087 0.6480 +3235 5089 0.5340 +3235 5090 0.4280 +3235 6469 0.6840 +3235 6926 0.4050 +3235 9464 0.4050 +3235 9496 0.4370 +3235 10651 0.4020 +3235 23512 0.5020 +3235 158809 0.5170 +3235 344191 0.5160 +3236 3237 0.9990 +3236 3238 0.5800 +3236 3239 0.8080 +3236 4211 0.6860 +3236 5087 0.4670 +3236 5089 0.5050 +3236 5090 0.4400 +3236 6318 0.4380 +3236 6469 0.6930 +3236 6899 0.4620 +3236 7291 0.4570 +3236 9314 0.4190 +3236 9429 0.4590 +3236 23512 0.5750 +3236 26167 0.4450 +3236 338917 0.4200 +3236 344191 0.6530 +3237 3239 0.7880 +3237 3975 0.4770 +3237 4435 0.4250 +3237 4928 0.6220 +3237 5076 0.5310 +3237 5083 0.4200 +3237 5087 0.4530 +3237 5089 0.5200 +3237 5396 0.6370 +3237 5910 0.4970 +3237 6299 0.5920 +3237 6469 0.7360 +3237 6473 0.5570 +3237 7490 0.4430 +3237 7528 0.4580 +3237 7783 0.5190 +3237 8290 0.4200 +3237 8356 0.4200 +3237 9464 0.4450 +3237 9496 0.4060 +3237 10736 0.6330 +3237 11168 0.4630 +3237 23512 0.5900 +3237 26040 0.4020 +3237 54904 0.4190 +3237 64324 0.4190 +3237 338917 0.4270 +3237 344191 0.6430 +3237 440093 0.4200 +3237 440686 0.4200 +3237 653604 0.4200 +3237 100532731 0.4970 +3238 3239 0.5040 +3238 4762 0.4180 +3238 5075 0.4290 +3238 5087 0.4030 +3238 5089 0.5380 +3238 6299 0.5420 +3238 6469 0.7700 +3238 7528 0.4770 +3238 7783 0.5160 +3238 8403 0.4420 +3238 8854 0.4080 +3238 9464 0.5860 +3238 9935 0.4100 +3238 23512 0.5170 +3238 27164 0.4240 +3238 27324 0.4120 +3238 57167 0.4030 +3238 64093 0.4640 +3238 153572 0.4630 +3238 344191 0.6470 +3238 100532731 0.4310 +3239 3607 0.4130 +3239 4090 0.4740 +3239 4173 0.4030 +3239 4211 0.5400 +3239 4928 0.8280 +3239 5015 0.4210 +3239 5080 0.4460 +3239 5087 0.5020 +3239 5089 0.5110 +3239 5090 0.4950 +3239 5133 0.5060 +3239 5308 0.4590 +3239 5396 0.6830 +3239 5458 0.4830 +3239 5727 0.4770 +3239 5910 0.5130 +3239 6469 0.8700 +3239 6473 0.5470 +3239 6474 0.6530 +3239 6496 0.4210 +3239 6659 0.4200 +3239 7040 0.4400 +3239 7150 0.5110 +3239 7546 0.5230 +3239 7547 0.4080 +3239 7783 0.5990 +3239 8106 0.5230 +3239 8480 0.4870 +3239 8854 0.4540 +3239 9464 0.6950 +3239 10736 0.4970 +3239 11168 0.5190 +3239 26040 0.4390 +3239 27022 0.4190 +3239 29126 0.7260 +3239 30012 0.4160 +3239 50805 0.4130 +3239 54904 0.4160 +3239 54908 0.8680 +3239 55251 0.4050 +3239 59336 0.4170 +3239 60529 0.4810 +3239 64324 0.5740 +3239 64327 0.4790 +3239 79142 0.6410 +3239 80380 0.7020 +3239 80856 0.4160 +3239 84823 0.4360 +3239 146547 0.5420 +3239 147991 0.4050 +3239 170302 0.4710 +3239 339105 0.6050 +3239 344191 0.5650 +3239 374654 0.4380 +3240 3250 0.9640 +3240 3263 0.9940 +3240 3273 0.6010 +3240 3383 0.4270 +3240 3458 0.5740 +3240 3552 0.5070 +3240 3553 0.6500 +3240 3558 0.4120 +3240 3565 0.4470 +3240 3569 0.7260 +3240 3576 0.5480 +3240 3586 0.6210 +3240 3605 0.4180 +3240 3630 0.5550 +3240 3684 0.5700 +3240 3689 0.5160 +3240 3697 0.4650 +3240 3698 0.4450 +3240 3699 0.5540 +3240 3700 0.6910 +3240 3827 0.6780 +3240 3916 0.4180 +3240 3929 0.7620 +3240 3931 0.6580 +3240 3933 0.6140 +3240 3934 0.7110 +3240 3952 0.4630 +3240 3958 0.6870 +3240 3959 0.6190 +3240 3964 0.4360 +3240 4035 0.7240 +3240 4036 0.5310 +3240 4057 0.8110 +3240 4125 0.5510 +3240 4151 0.9720 +3240 4153 0.4340 +3240 4192 0.4650 +3240 4317 0.4730 +3240 4318 0.7910 +3240 4353 0.7080 +3240 4360 0.6220 +3240 4589 0.4550 +3240 4684 0.4110 +3240 5004 0.9730 +3240 5005 0.9520 +3240 5054 0.4330 +3240 5196 0.4220 +3240 5199 0.4270 +3240 5236 0.4080 +3240 5265 0.9610 +3240 5340 0.4160 +3240 5444 0.8310 +3240 5657 0.6500 +3240 5858 0.4790 +3240 5950 0.7340 +3240 6278 0.4690 +3240 6279 0.6460 +3240 6280 0.5510 +3240 6283 0.5990 +3240 6288 0.7380 +3240 6289 0.7510 +3240 6291 0.5510 +3240 6347 0.4780 +3240 6348 0.5050 +3240 6530 0.4950 +3240 6648 0.5010 +3240 6694 0.4370 +3240 6779 0.4570 +3240 6906 0.4150 +3240 7001 0.4550 +3240 7018 0.8050 +3240 7037 0.6610 +3240 7052 0.4520 +3240 7056 0.4300 +3240 7076 0.4040 +3240 7082 0.5080 +3240 7094 0.4240 +3240 7097 0.4250 +3240 7099 0.5380 +3240 7122 0.5400 +3240 7124 0.6660 +3240 7276 0.8710 +3240 7412 0.4540 +3240 7448 0.4530 +3240 7450 0.5140 +3240 7837 0.6180 +3240 8029 0.7460 +3240 8526 0.4180 +3240 8542 0.6720 +3240 8835 0.4290 +3240 9076 0.4210 +3240 9332 0.9990 +3240 9370 0.5130 +3240 9563 0.4660 +3240 10395 0.5710 +3240 10878 0.4090 +3240 11093 0.7730 +3240 11326 0.4450 +3240 22871 0.4010 +3240 23245 0.4660 +3240 23345 0.4170 +3240 30816 0.4220 +3240 50834 0.4240 +3240 51279 0.4160 +3240 51725 0.4260 +3240 54413 0.4220 +3240 55937 0.5240 +3240 56729 0.5370 +3240 57380 0.5920 +3240 57502 0.4330 +3240 57817 0.6270 +3240 58157 0.5200 +3240 64326 0.4290 +3240 79003 0.7810 +3240 84706 0.7770 +3240 85477 0.4610 +3240 91937 0.4600 +3240 114757 0.5480 +3240 116844 0.6800 +3240 137902 0.6180 +3240 148738 0.5370 +3240 152330 0.4420 +3240 165530 0.4340 +3240 283871 0.6340 +3240 400668 0.4180 +3240 405754 0.4140 +3240 100506658 0.7590 +3240 100528017 0.4730 +3241 3428 0.4090 +3241 3754 0.4540 +3241 4208 0.4060 +3241 4293 0.5190 +3241 4294 0.5830 +3241 4671 0.4120 +3241 5147 0.4260 +3241 5298 0.6410 +3241 5354 0.4010 +3241 6323 0.4210 +3241 6335 0.4580 +3241 8573 0.4440 +3241 8929 0.5030 +3241 9516 0.6230 +3241 10101 0.4030 +3241 11343 0.4660 +3241 23127 0.5910 +3241 26103 0.4640 +3241 51692 0.4450 +3241 56005 0.5910 +3241 60558 0.4340 +3241 79954 0.4310 +3241 80777 0.5680 +3241 83988 0.4740 +3241 84167 0.5910 +3241 84451 0.5010 +3241 130814 0.4690 +3241 146779 0.4320 +3241 197335 0.4300 +3241 285220 0.4380 +3241 340745 0.4910 +3242 3257 0.4520 +3242 3273 0.4520 +3242 3712 0.5010 +3242 4282 0.9090 +3242 5009 0.4200 +3242 5019 0.4130 +3242 5053 0.6510 +3242 5091 0.7480 +3242 5092 0.5360 +3242 5095 0.6960 +3242 5096 0.8620 +3242 5340 0.4020 +3242 5345 0.4110 +3242 5498 0.6630 +3242 5832 0.4060 +3242 6708 0.4280 +3242 6898 0.9980 +3242 6999 0.4390 +3242 7054 0.4430 +3242 7166 0.4080 +3242 8309 0.4060 +3242 8310 0.4540 +3242 9026 0.4340 +3242 9942 0.8050 +3242 10157 0.4360 +3242 10247 0.4010 +3242 10841 0.4710 +3242 10998 0.4350 +3242 23474 0.4180 +3242 25953 0.4240 +3242 26275 0.4510 +3242 27232 0.4510 +3242 27235 0.8640 +3242 27316 0.4390 +3242 51031 0.6110 +3242 51110 0.4240 +3242 51166 0.5820 +3242 51179 0.5500 +3242 51497 0.6970 +3242 51733 0.5630 +3242 54363 0.5330 +3242 55749 0.4080 +3242 56267 0.4240 +3242 56922 0.6970 +3242 57805 0.4080 +3242 64064 0.4130 +3242 64087 0.8600 +3242 64577 0.4110 +3242 81889 0.4680 +3242 84105 0.4910 +3242 84264 0.4450 +3242 84680 0.4240 +3242 84693 0.6370 +3242 84699 0.4100 +3242 84706 0.4820 +3242 121278 0.4080 +3242 123688 0.4240 +3242 137362 0.9630 +3242 143941 0.6860 +3242 153364 0.4240 +3242 259307 0.9070 +3242 390110 0.4240 +3248 3265 0.4230 +3248 3290 0.7950 +3248 3291 0.8100 +3248 3294 0.6900 +3248 3479 0.4150 +3248 4048 0.4060 +3248 4087 0.4640 +3248 4306 0.6100 +3248 4609 0.4380 +3248 5321 0.4830 +3248 5468 0.5760 +3248 5730 0.4020 +3248 5731 0.5430 +3248 5732 0.4610 +3248 5733 0.5230 +3248 5734 0.6370 +3248 5737 0.4250 +3248 5740 0.5330 +3248 5742 0.5960 +3248 5743 0.6760 +3248 6578 0.7920 +3248 7403 0.4750 +3248 7471 0.4030 +3248 8605 0.4260 +3248 8644 0.4960 +3248 9114 0.4970 +3248 9536 0.7230 +3248 10170 0.4100 +3248 10257 0.4240 +3248 10728 0.6720 +3248 10800 0.4280 +3248 11283 0.4030 +3248 22949 0.5940 +3248 27306 0.4020 +3248 27349 0.4180 +3248 51084 0.6200 +3248 54995 0.5200 +3248 55268 0.5350 +3248 57534 0.4670 +3248 80142 0.6380 +3248 89780 0.4100 +3248 112812 0.4630 +3248 145482 0.5020 +3248 343637 0.4720 +3249 4233 0.4210 +3249 4318 0.4010 +3249 4477 0.5000 +3249 4481 0.4140 +3249 4485 0.8270 +3249 4486 0.4700 +3249 5045 0.4440 +3249 5125 0.4370 +3249 5268 0.4630 +3249 5292 0.4940 +3249 5364 0.4460 +3249 5624 0.4240 +3249 6041 0.4460 +3249 6692 0.8330 +3249 6716 0.4190 +3249 7369 0.4490 +3249 8895 0.4220 +3249 9159 0.4530 +3249 9372 0.4360 +3249 9622 0.5030 +3249 10653 0.6850 +3249 22853 0.4510 +3249 23301 0.4220 +3249 23600 0.7510 +3249 27232 0.4990 +3249 59272 0.4430 +3249 60528 0.4220 +3249 85414 0.4930 +3249 89777 0.4960 +3249 100423062 0.9140 +3250 3263 0.5990 +3250 3273 0.5360 +3250 3698 0.4420 +3250 3699 0.4310 +3250 3700 0.5750 +3250 3827 0.5110 +3250 3931 0.8020 +3250 3949 0.5470 +3250 3990 0.6360 +3250 4018 0.8090 +3250 4023 0.5870 +3250 4481 0.5980 +3250 5004 0.5440 +3250 5005 0.5480 +3250 5241 0.4760 +3250 5265 0.7620 +3250 5360 0.8270 +3250 5444 0.9620 +3250 5657 0.4500 +3250 6288 0.6650 +3250 6289 0.6530 +3250 6291 0.6900 +3250 6929 0.6670 +3250 7018 0.6500 +3250 7035 0.4250 +3250 7436 0.5480 +3250 7941 0.7440 +3250 8504 0.7280 +3250 8542 0.9990 +3250 9332 0.8680 +3250 9519 0.6930 +3250 51449 0.7510 +3250 51599 0.5810 +3250 55829 0.7210 +3250 55911 0.5400 +3250 55937 0.8320 +3250 79135 0.5400 +3250 80830 0.4600 +3250 80831 0.4780 +3250 116519 0.8200 +3250 116844 0.4260 +3250 100528017 0.5400 +3251 3326 0.4600 +3251 3434 0.4210 +3251 3456 0.4790 +3251 3458 0.6370 +3251 3552 0.4120 +3251 3553 0.6230 +3251 3558 0.5500 +3251 3565 0.5630 +3251 3569 0.6400 +3251 3586 0.6100 +3251 3596 0.4180 +3251 3605 0.5170 +3251 3614 0.9550 +3251 3615 0.9670 +3251 3627 0.4810 +3251 3630 0.5540 +3251 3684 0.5830 +3251 3687 0.5070 +3251 3704 0.9420 +3251 3725 0.4260 +3251 3815 0.4100 +3251 3920 0.4230 +3251 4015 0.4460 +3251 4128 0.4490 +3251 4267 0.5130 +3251 4350 0.5660 +3251 4436 0.5010 +3251 4507 0.7940 +3251 4508 0.8360 +3251 4609 0.5480 +3251 4790 0.5010 +3251 4792 0.4080 +3251 4860 0.9890 +3251 4907 0.9320 +3251 4946 0.4880 +3251 5136 0.9010 +3251 5137 0.9000 +3251 5138 0.9020 +3251 5139 0.9030 +3251 5140 0.9050 +3251 5145 0.9000 +3251 5146 0.9000 +3251 5147 0.9020 +3251 5148 0.9010 +3251 5149 0.9020 +3251 5152 0.9040 +3251 5153 0.9050 +3251 5158 0.9090 +3251 5167 0.9100 +3251 5169 0.9010 +3251 5175 0.4370 +3251 5230 0.8300 +3251 5232 0.5110 +3251 5277 0.6030 +3251 5460 0.4130 +3251 5468 0.4240 +3251 5471 0.7110 +3251 5478 0.6490 +3251 5479 0.4880 +3251 5595 0.4080 +3251 5631 0.7180 +3251 5634 0.5620 +3251 5788 0.6280 +3251 5888 0.4020 +3251 5896 0.4380 +3251 6035 0.4630 +3251 6124 0.4780 +3251 6132 0.4110 +3251 6137 0.4260 +3251 6143 0.5080 +3251 6155 0.5810 +3251 6161 0.4650 +3251 6175 0.6120 +3251 6191 0.4670 +3251 6206 0.4100 +3251 6222 0.4020 +3251 6223 0.4010 +3251 6240 0.8710 +3251 6347 0.5100 +3251 6389 0.7240 +3251 6402 0.4130 +3251 6500 0.4150 +3251 6517 0.5270 +3251 6657 0.5360 +3251 6687 0.6310 +3251 6774 0.4080 +3251 6908 0.7820 +3251 6999 0.4870 +3251 7037 0.4770 +3251 7040 0.4470 +3251 7083 0.5510 +3251 7084 0.6840 +3251 7099 0.4500 +3251 7124 0.6280 +3251 7157 0.5390 +3251 7166 0.4390 +3251 7172 0.9520 +3251 7277 0.4210 +3251 7280 0.4310 +3251 7298 0.6600 +3251 7316 0.4970 +3251 7372 0.5880 +3251 7378 0.6910 +3251 7398 0.4320 +3251 7403 0.4470 +3251 7404 0.4270 +3251 7411 0.4250 +3251 7498 0.9450 +3251 7534 0.6290 +3251 7784 0.4790 +3251 7837 0.6070 +3251 7846 0.4700 +3251 8225 0.4020 +3251 8266 0.6030 +3251 8290 0.4060 +3251 8356 0.4080 +3251 8639 0.4510 +3251 8654 0.9030 +3251 8833 0.9720 +3251 9156 0.5610 +3251 9427 0.4160 +3251 9429 0.5350 +3251 9563 0.5000 +3251 9583 0.9000 +3251 9615 0.9610 +3251 10155 0.4180 +3251 10376 0.4430 +3251 10381 0.4100 +3251 10382 0.5050 +3251 10606 0.5510 +3251 10653 0.5190 +3251 10730 0.6750 +3251 10761 0.7350 +3251 10846 0.9050 +3251 10939 0.6390 +3251 22978 0.9280 +3251 23135 0.4430 +3251 23479 0.5520 +3251 23521 0.6940 +3251 26115 0.4220 +3251 26206 0.4290 +3251 26330 0.4760 +3251 27069 0.4100 +3251 29968 0.5230 +3251 30009 0.4360 +3251 30833 0.9000 +3251 50940 0.9000 +3251 50943 0.5120 +3251 51071 0.4420 +3251 51251 0.9040 +3251 51324 0.4210 +3251 51816 0.4930 +3251 55093 0.4430 +3251 56606 0.4830 +3251 56952 0.8370 +3251 56953 0.9000 +3251 57469 0.4410 +3251 64840 0.6380 +3251 79923 0.4010 +3251 80227 0.4540 +3251 84293 0.4310 +3251 84617 0.4990 +3251 84618 0.9250 +3251 84790 0.4240 +3251 90353 0.5050 +3251 93034 0.9150 +3251 93190 0.4290 +3251 115024 0.9000 +3251 116085 0.4040 +3251 121278 0.4590 +3251 122622 0.9580 +3251 124583 0.9010 +3251 126133 0.4570 +3251 127003 0.4630 +3251 131870 0.9000 +3251 137902 0.6060 +3251 138255 0.4290 +3251 139596 0.6290 +3251 151531 0.6860 +3251 151651 0.4290 +3251 161823 0.4820 +3251 197335 0.7080 +3251 203068 0.5540 +3251 221823 0.6490 +3251 257177 0.4290 +3251 377841 0.9100 +3251 388701 0.4290 +3251 440093 0.4070 +3251 440686 0.4070 +3251 653604 0.4180 +3251 728378 0.7100 +3251 100128569 0.4290 +3251 100526794 0.9150 +3257 6297 0.5020 +3257 6299 0.4770 +3257 10981 0.6930 +3257 11234 0.8380 +3257 23557 0.7880 +3257 23682 0.7000 +3257 26258 0.8660 +3257 55330 0.7400 +3257 55626 0.4220 +3257 55653 0.5400 +3257 63915 0.7390 +3257 65986 0.4630 +3257 79803 0.8740 +3257 84062 0.8020 +3257 84343 0.9020 +3257 89781 0.9890 +3257 128989 0.4280 +3257 282991 0.7980 +3257 388552 0.8170 +3263 3273 0.6190 +3263 3426 0.4890 +3263 3569 0.4190 +3263 3697 0.5460 +3263 3698 0.5260 +3263 3699 0.4410 +3263 3700 0.7060 +3263 3827 0.6270 +3263 3931 0.5270 +3263 3933 0.5150 +3263 3934 0.5140 +3263 3959 0.5220 +3263 4018 0.4880 +3263 4035 0.9960 +3263 4057 0.7220 +3263 4060 0.4870 +3263 4143 0.4980 +3263 4151 0.6830 +3263 4313 0.8740 +3263 4316 0.7160 +3263 4318 0.7280 +3263 4322 0.5000 +3263 4323 0.4560 +3263 4324 0.4230 +3263 4326 0.4010 +3263 4891 0.4350 +3263 5004 0.7780 +3263 5005 0.8170 +3263 5045 0.7490 +3263 5243 0.4200 +3263 5244 0.4330 +3263 5265 0.8970 +3263 5340 0.8110 +3263 5345 0.5990 +3263 5444 0.6280 +3263 5605 0.4510 +3263 5950 0.4960 +3263 6354 0.6270 +3263 7018 0.8520 +3263 7036 0.4850 +3263 7037 0.6680 +3263 7076 0.7770 +3263 7077 0.9400 +3263 7078 0.5170 +3263 7079 0.8220 +3263 7276 0.7930 +3263 7448 0.7390 +3263 7450 0.4240 +3263 8031 0.4350 +3263 8510 0.7920 +3263 8647 0.6930 +3263 9313 0.7610 +3263 9332 0.9310 +3263 10216 0.8580 +3263 10893 0.4600 +3263 23456 0.4720 +3263 26234 0.4070 +3263 26998 0.4350 +3263 28982 0.8310 +3263 51156 0.4210 +3263 51279 0.5770 +3263 55640 0.5240 +3263 55652 0.4030 +3263 56547 0.8370 +3263 57817 0.5780 +3263 64386 0.7860 +3263 79148 0.8550 +3263 81029 0.4660 +3263 83942 0.5020 +3263 85477 0.4880 +3263 94033 0.4040 +3263 113235 0.4900 +3263 116844 0.5470 +3263 118856 0.7190 +3263 136991 0.7910 +3263 284161 0.4120 +3263 340273 0.4200 +3263 391059 0.7790 +3263 440387 0.4670 +3265 3303 0.4600 +3265 3304 0.4620 +3265 3320 0.8190 +3265 3326 0.4430 +3265 3383 0.9220 +3265 3417 0.5990 +3265 3418 0.5720 +3265 3459 0.9490 +3265 3480 0.9490 +3265 3481 0.6220 +3265 3558 0.5760 +3265 3559 0.4750 +3265 3560 0.4230 +3265 3561 0.4710 +3265 3562 0.5640 +3265 3563 0.9040 +3265 3567 0.4580 +3265 3569 0.4110 +3265 3630 0.7040 +3265 3643 0.4730 +3265 3655 0.4090 +3265 3667 0.6650 +3265 3674 0.5330 +3265 3688 0.6460 +3265 3690 0.6610 +3265 3716 0.6230 +3265 3717 0.7810 +3265 3718 0.7290 +3265 3725 0.7780 +3265 3791 0.5430 +3265 3815 0.9620 +3265 3845 0.9920 +3265 3927 0.4180 +3265 3956 0.7500 +3265 3958 0.5280 +3265 4000 0.5170 +3265 4015 0.4020 +3265 4017 0.4500 +3265 4043 0.5290 +3265 4067 0.7720 +3265 4087 0.5810 +3265 4088 0.5620 +3265 4089 0.7140 +3265 4140 0.6550 +3265 4170 0.4310 +3265 4193 0.6000 +3265 4214 0.9450 +3265 4218 0.4710 +3265 4233 0.9610 +3265 4254 0.5940 +3265 4292 0.5120 +3265 4296 0.5130 +3265 4301 0.9980 +3265 4318 0.4130 +3265 4342 0.6870 +3265 4436 0.4540 +3265 4478 0.5350 +3265 4521 0.4530 +3265 4609 0.8710 +3265 4610 0.4110 +3265 4613 0.5360 +3265 4684 0.6280 +3265 4747 0.5560 +3265 4763 0.9940 +3265 4771 0.5710 +3265 4780 0.4010 +3265 4790 0.7250 +3265 4803 0.5170 +3265 4842 0.9110 +3265 4846 0.5100 +3265 4851 0.8140 +3265 4869 0.5190 +3265 4893 0.9320 +3265 4902 0.4330 +3265 4908 0.5470 +3265 4909 0.5140 +3265 4914 0.5690 +3265 4915 0.6560 +3265 4921 0.4460 +3265 5004 0.4460 +3265 5005 0.4720 +3265 5037 0.6360 +3265 5058 0.5840 +3265 5062 0.5590 +3265 5063 0.5210 +3265 5147 0.6440 +3265 5154 0.5860 +3265 5155 0.7070 +3265 5156 0.9600 +3265 5159 0.9620 +3265 5170 0.6370 +3265 5229 0.4970 +3265 5245 0.4980 +3265 5290 0.9950 +3265 5291 0.9630 +3265 5293 0.9710 +3265 5294 0.9980 +3265 5295 0.9900 +3265 5296 0.9300 +3265 5297 0.4770 +3265 5315 0.4470 +3265 5321 0.4020 +3265 5328 0.6400 +3265 5333 0.4200 +3265 5347 0.4510 +3265 5468 0.6300 +3265 5500 0.5050 +3265 5515 0.5430 +3265 5516 0.4860 +3265 5518 0.5970 +3265 5519 0.4410 +3265 5525 0.4890 +3265 5526 0.4620 +3265 5527 0.5210 +3265 5528 0.4610 +3265 5529 0.4550 +3265 5530 0.4730 +3265 5532 0.4830 +3265 5533 0.4430 +3265 5536 0.4260 +3265 5566 0.4330 +3265 5567 0.4240 +3265 5568 0.4210 +3265 5573 0.4800 +3265 5578 0.9370 +3265 5579 0.9190 +3265 5580 0.6280 +3265 5581 0.9210 +3265 5582 0.9130 +3265 5590 0.6350 +3265 5594 0.9790 +3265 5595 0.9830 +3265 5599 0.9850 +3265 5601 0.9360 +3265 5604 0.9890 +3265 5605 0.9680 +3265 5608 0.4620 +3265 5609 0.5130 +3265 5623 0.4190 +3265 5727 0.5480 +3265 5728 0.8230 +3265 5741 0.4100 +3265 5743 0.5910 +3265 5747 0.6680 +3265 5781 0.9260 +3265 5863 0.9800 +3265 5868 0.4530 +3265 5872 0.5610 +3265 5873 0.5080 +3265 5874 0.5000 +3265 5877 0.7920 +3265 5894 0.9990 +3265 5898 0.8310 +3265 5899 0.5860 +3265 5900 0.9990 +3265 5906 0.7030 +3265 5908 0.5530 +3265 5910 0.7750 +3265 5911 0.4280 +3265 5912 0.4460 +3265 5921 0.9990 +3265 5922 0.9550 +3265 5923 0.9950 +3265 5924 0.9290 +3265 5934 0.4240 +3265 5962 0.4340 +3265 5970 0.6540 +3265 5979 0.8420 +3265 6002 0.5320 +3265 6009 0.5540 +3265 6093 0.4510 +3265 6098 0.5890 +3265 6103 0.4360 +3265 6195 0.9460 +3265 6196 0.9260 +3265 6197 0.9340 +3265 6198 0.4900 +3265 6233 0.6000 +3265 6239 0.5930 +3265 6280 0.4670 +3265 6389 0.4190 +3265 6390 0.4180 +3265 6392 0.4490 +3265 6453 0.5670 +3265 6464 0.8600 +3265 6520 0.5610 +3265 6598 0.5690 +3265 6635 0.4950 +3265 6654 0.9990 +3265 6655 0.9810 +3265 6708 0.5920 +3265 6709 0.5860 +3265 6710 0.4990 +3265 6711 0.5730 +3265 6712 0.5620 +3265 6714 0.9940 +3265 6772 0.5360 +3265 6774 0.5050 +3265 6790 0.7440 +3265 6794 0.6630 +3265 6850 0.9320 +3265 7010 0.5990 +3265 7015 0.6410 +3265 7037 0.5300 +3265 7039 0.7040 +3265 7040 0.4540 +3265 7048 0.4410 +3265 7074 0.9570 +3265 7094 0.5850 +3265 7124 0.5820 +3265 7157 0.9250 +3265 7187 0.9860 +3265 7249 0.5340 +3265 7265 0.5860 +3265 7299 0.4400 +3265 7311 0.5330 +3265 7314 0.7140 +3265 7316 0.5850 +3265 7403 0.4480 +3265 7409 0.6470 +3265 7414 0.7140 +3265 7417 0.4830 +3265 7419 0.6310 +3265 7450 0.5600 +3265 7490 0.4660 +3265 7525 0.7140 +3265 7529 0.6210 +3265 7750 0.5330 +3265 7832 0.4440 +3265 7837 0.4250 +3265 7849 0.7290 +3265 8019 0.4470 +3265 8031 0.5060 +3265 8036 0.9900 +3265 8074 0.5790 +3265 8085 0.4470 +3265 8087 0.4610 +3265 8091 0.4480 +3265 8140 0.5080 +3265 8216 0.8610 +3265 8289 0.4940 +3265 8315 0.9300 +3265 8402 0.5070 +3265 8437 0.7350 +3265 8452 0.5120 +3265 8503 0.9220 +3265 8531 0.5950 +3265 8546 0.4420 +3265 8650 0.4680 +3265 8651 0.4550 +3265 8660 0.5860 +3265 8668 0.4060 +3265 8805 0.4650 +3265 8817 0.6620 +3265 8822 0.6420 +3265 8823 0.6370 +3265 8826 0.6430 +3265 8831 0.7970 +3265 8834 0.5560 +3265 8844 0.7020 +3265 8877 0.5600 +3265 8945 0.5920 +3265 8989 0.4510 +3265 9048 0.4380 +3265 9076 0.4920 +3265 9138 0.4100 +3265 9321 0.6030 +3265 9365 0.5300 +3265 9444 0.4590 +3265 9448 0.4060 +3265 9451 0.4180 +3265 9459 0.9080 +3265 9462 0.7790 +3265 9530 0.6650 +3265 9542 0.5460 +3265 9610 0.9930 +3265 9630 0.6320 +3265 9651 0.5050 +3265 9693 0.9580 +3265 9715 0.4300 +3265 9770 0.5340 +3265 9771 0.9420 +3265 9784 0.6250 +3265 9817 0.4700 +3265 9965 0.5750 +3265 9986 0.7370 +3265 10000 0.4700 +3265 10018 0.5940 +3265 10048 0.5180 +3265 10125 0.9420 +3265 10142 0.5430 +3265 10156 0.7790 +3265 10235 0.9480 +3265 10253 0.4420 +3265 10256 0.5690 +3265 10434 0.6350 +3265 10458 0.4470 +3265 10533 0.5250 +3265 10636 0.7100 +3265 10672 0.6630 +3265 10681 0.7100 +3265 10718 0.5180 +3265 10735 0.4180 +3265 10817 0.5280 +3265 10818 0.7100 +3265 10827 0.4630 +3265 10928 0.9300 +3265 10987 0.4290 +3265 11044 0.4080 +3265 11140 0.5490 +3265 11145 0.5390 +3265 11160 0.4990 +3265 11186 0.9920 +3265 11200 0.4260 +3265 22821 0.7340 +3265 22866 0.7050 +3265 22882 0.7010 +3265 22906 0.4220 +3265 23162 0.4330 +3265 23164 0.4300 +3265 23179 0.9800 +3265 23365 0.9160 +3265 23368 0.4070 +3265 23463 0.7320 +3265 23513 0.5170 +3265 23533 0.9210 +3265 23560 0.5760 +3265 23643 0.4090 +3265 25759 0.5740 +3265 25780 0.9640 +3265 25930 0.5180 +3265 26281 0.6330 +3265 26524 0.6940 +3265 27006 0.6290 +3265 27040 0.5400 +3265 27044 0.5050 +3265 27183 0.4990 +3265 27289 0.4710 +3265 27330 0.9070 +3265 27436 0.9370 +3265 29109 0.4470 +3265 29126 0.4380 +3265 29899 0.4310 +3265 29914 0.4600 +3265 30835 0.5270 +3265 50488 0.4650 +3265 50618 0.5550 +3265 50848 0.4110 +3265 51104 0.5400 +3265 51114 0.8420 +3265 51125 0.7790 +3265 51196 0.9730 +3265 51332 0.5110 +3265 51715 0.5230 +3265 51762 0.4640 +3265 51764 0.6500 +3265 51806 0.9630 +3265 53358 0.5450 +3265 54331 0.6600 +3265 54453 0.4810 +3265 54487 0.4390 +3265 54518 0.6760 +3265 54756 0.5080 +3265 54845 0.4360 +3265 54878 0.4450 +3265 54922 0.5980 +3265 54949 0.4390 +3265 55109 0.4020 +3265 55193 0.5460 +3265 55294 0.6740 +3265 55654 0.5820 +3265 55698 0.4820 +3265 55738 0.4550 +3265 55750 0.4700 +3265 55811 0.4140 +3265 55914 0.5450 +3265 55970 0.6720 +3265 56829 0.4100 +3265 57110 0.5910 +3265 57139 0.7320 +3265 57554 0.6060 +3265 57569 0.4140 +3265 57610 0.5070 +3265 57670 0.5400 +3265 57731 0.5020 +3265 58489 0.5540 +3265 59345 0.6920 +3265 64096 0.4400 +3265 64855 0.4940 +3265 64926 0.7130 +3265 79109 0.9410 +3265 79643 0.6530 +3265 81490 0.4170 +3265 81570 0.4170 +3265 81609 0.4050 +3265 81848 0.5680 +3265 81926 0.6290 +3265 83593 0.9990 +3265 84260 0.4070 +3265 84705 0.4600 +3265 84911 0.4650 +3265 85358 0.5820 +3265 91860 0.9600 +3265 92140 0.6550 +3265 94235 0.6500 +3265 115727 0.9950 +3265 126119 0.4020 +3265 137902 0.4230 +3265 145957 0.5390 +3265 146850 0.9020 +3265 149603 0.4320 +3265 152831 0.5070 +3265 153090 0.7280 +3265 157638 0.4040 +3265 161742 0.7920 +3265 163688 0.9600 +3265 166824 0.4770 +3265 169166 0.4750 +3265 171023 0.4340 +3265 196528 0.4100 +3265 200734 0.6790 +3265 200958 0.5200 +3265 221002 0.4730 +3265 253260 0.5260 +3265 255324 0.5410 +3265 266747 0.7660 +3265 283349 0.6660 +3265 346562 0.6120 +3265 387103 0.4480 +3265 399473 0.5840 +3265 399687 0.5770 +3265 552891 0.4200 +3265 100271927 0.6700 +3265 105372280 0.5400 +3266 4150 0.5340 +3266 4763 0.5420 +3266 5159 0.4940 +3266 5290 0.5270 +3266 5460 0.4670 +3266 5894 0.6360 +3266 5900 0.5970 +3266 5909 0.4420 +3266 6453 0.5350 +3266 6657 0.4850 +3266 6997 0.5110 +3266 7957 0.5130 +3266 8036 0.4280 +3266 8433 0.5860 +3266 9314 0.4840 +3266 10133 0.4700 +3266 23179 0.6380 +3266 50618 0.5400 +3266 51196 0.5380 +3266 79923 0.5570 +3266 132625 0.4820 +3266 161742 0.4020 +3266 162979 0.5610 +3266 201456 0.4440 +3266 340168 0.4450 +3267 3268 0.4720 +3267 3270 0.4620 +3267 3482 0.5770 +3267 3575 0.4990 +3267 3949 0.5060 +3267 4036 0.5160 +3267 4074 0.5730 +3267 4204 0.4730 +3267 5861 0.7320 +3267 5862 0.4680 +3267 5864 0.7680 +3267 5867 0.5730 +3267 5868 0.5180 +3267 5870 0.5110 +3267 5912 0.4060 +3267 5921 0.4080 +3267 6006 0.5060 +3267 6233 0.5120 +3267 6453 0.8050 +3267 6455 0.5130 +3267 6456 0.5050 +3267 6457 0.5600 +3267 6572 0.5140 +3267 6844 0.7210 +3267 6845 0.9920 +3267 6857 0.6380 +3267 6869 0.5030 +3267 7018 0.4990 +3267 7037 0.5980 +3267 7039 0.5100 +3267 7311 0.4990 +3267 7314 0.4990 +3267 7316 0.5060 +3267 7392 0.4060 +3267 7474 0.5100 +3267 8027 0.5460 +3267 8218 0.6010 +3267 8301 0.6210 +3267 8322 0.4990 +3267 8452 0.5420 +3267 8548 0.4700 +3267 8650 0.4650 +3267 8673 0.5870 +3267 8674 0.5910 +3267 8766 0.5450 +3267 8867 0.4990 +3267 8871 0.4680 +3267 8976 0.4320 +3267 9146 0.5420 +3267 9185 0.5330 +3267 9253 0.4550 +3267 9341 0.6520 +3267 9342 0.4850 +3267 9463 0.4670 +3267 9545 0.4050 +3267 9699 0.4430 +3267 9783 0.4160 +3267 9856 0.5050 +3267 9892 0.6080 +3267 10254 0.5950 +3267 10490 0.7550 +3267 10618 0.6620 +3267 11037 0.4990 +3267 22841 0.5030 +3267 22848 0.5680 +3267 22905 0.7380 +3267 23149 0.8460 +3267 23208 0.4990 +3267 23301 0.4810 +3267 23560 0.5290 +3267 25977 0.5800 +3267 26003 0.4700 +3267 26119 0.4990 +3267 26509 0.4590 +3267 29924 0.5990 +3267 29978 0.5630 +3267 29988 0.4990 +3267 30011 0.5040 +3267 50618 0.7700 +3267 51542 0.4920 +3267 55040 0.4960 +3267 55707 0.5420 +3267 57120 0.6110 +3267 57624 0.4100 +3267 57707 0.4090 +3267 58513 0.7470 +3267 64145 0.4750 +3267 64645 0.4840 +3267 64744 0.4040 +3267 81833 0.4790 +3267 83893 0.5430 +3267 84251 0.6320 +3267 84268 0.4430 +3267 85021 0.5890 +3267 85439 0.7800 +3267 90019 0.4990 +3267 115548 0.6550 +3267 127833 0.5140 +3267 143425 0.4990 +3267 201294 0.5020 +3267 255324 0.4990 +3267 283417 0.5870 +3267 285172 0.4310 +3267 643376 0.4130 +3268 4034 0.4470 +3268 5692 0.4630 +3268 6453 0.5620 +3268 8853 0.4610 +3268 9045 0.4580 +3268 9135 0.4410 +3268 9253 0.4950 +3268 9744 0.5820 +3268 9815 0.4480 +3268 23085 0.4470 +3268 26515 0.5430 +3268 26589 0.5500 +3268 26953 0.5620 +3268 50618 0.4650 +3268 55157 0.4900 +3268 55614 0.4890 +3268 58513 0.8670 +3268 64411 0.4410 +3268 64969 0.5290 +3268 79057 0.4470 +3268 116983 0.4400 +3268 116984 0.4500 +3268 157567 0.4560 +3268 317762 0.4130 +3269 3274 0.5840 +3269 3350 0.5240 +3269 3356 0.5070 +3269 3357 0.4820 +3269 3562 0.4820 +3269 3565 0.4110 +3269 3569 0.6400 +3269 3596 0.5570 +3269 3605 0.4360 +3269 3827 0.4760 +3269 4828 0.4640 +3269 5330 0.5390 +3269 5331 0.7430 +3269 5562 0.5470 +3269 5618 0.4160 +3269 5742 0.4010 +3269 5972 0.4300 +3269 6010 0.5190 +3269 6532 0.5230 +3269 6863 0.5710 +3269 6915 0.4650 +3269 7170 0.4160 +3269 7204 0.5090 +3269 7442 0.8270 +3269 7852 0.4710 +3269 8989 0.4860 +3269 8997 0.5150 +3269 9630 0.6970 +3269 10800 0.5950 +3269 11255 0.5470 +3269 23236 0.5510 +3269 54331 0.8000 +3269 55911 0.4130 +3269 57105 0.5220 +3269 59340 0.5790 +3269 64805 0.4610 +3269 84083 0.4070 +3269 115557 0.6370 +3269 117194 0.4160 +3269 386653 0.6570 +3270 3299 0.4150 +3270 4151 0.4700 +3270 4608 0.4660 +3270 4625 0.4560 +3270 4634 0.5080 +3270 4892 0.4460 +3270 5224 0.4210 +3270 6123 0.4940 +3270 6261 0.4090 +3270 6262 0.4690 +3270 6345 0.5500 +3270 6442 0.4080 +3270 6588 0.4470 +3270 6822 0.8190 +3270 7273 0.4610 +3270 8048 0.4310 +3270 8557 0.4990 +3270 8736 0.4970 +3270 9622 0.6550 +3270 10085 0.4190 +3270 10345 0.9930 +3270 51778 0.4790 +3270 54757 0.4730 +3270 56975 0.6500 +3270 57159 0.4570 +3270 84288 0.5320 +3270 84808 0.4120 +3270 86614 0.4060 +3270 124535 0.5730 +3270 142686 0.4310 +3270 163049 0.4060 +3270 167838 0.4150 +3270 202333 0.4440 +3270 377007 0.4070 +3273 3426 0.4620 +3273 3697 0.5360 +3273 3698 0.5830 +3273 3699 0.4980 +3273 3700 0.7700 +3273 3818 0.5970 +3273 3827 0.9720 +3273 3950 0.5290 +3273 4018 0.7780 +3273 4153 0.4170 +3273 4524 0.4280 +3273 5004 0.5200 +3273 5005 0.4760 +3273 5054 0.6580 +3273 5176 0.6580 +3273 5196 0.5510 +3273 5197 0.4230 +3273 5228 0.4330 +3273 5265 0.8090 +3273 5267 0.4750 +3273 5327 0.7030 +3273 5328 0.6010 +3273 5329 0.5210 +3273 5340 0.9990 +3273 5345 0.7680 +3273 5444 0.5850 +3273 5624 0.5510 +3273 5627 0.6060 +3273 6441 0.4400 +3273 6554 0.4160 +3273 6694 0.6100 +3273 7018 0.6900 +3273 7056 0.4780 +3273 7057 0.7860 +3273 7058 0.5340 +3273 7123 0.4220 +3273 7276 0.5120 +3273 7448 0.7480 +3273 8858 0.4860 +3273 10249 0.4230 +3273 10599 0.5640 +3273 10747 0.6040 +3273 10841 0.4770 +3273 10998 0.5840 +3273 26206 0.4230 +3273 27329 0.5250 +3273 28234 0.5390 +3273 51156 0.4180 +3273 51733 0.4620 +3273 64902 0.4480 +3273 81494 0.4740 +3273 84250 0.4380 +3273 116519 0.8610 +3273 344752 0.5090 +3273 115072896 0.5320 +3274 3458 0.5490 +3274 3562 0.6050 +3274 3565 0.6100 +3274 3596 0.6120 +3274 3605 0.4650 +3274 5562 0.5440 +3274 5949 0.4010 +3274 6714 0.5260 +3274 8349 0.4530 +3274 11255 0.6840 +3274 57105 0.4530 +3275 3276 0.5080 +3275 3454 0.4940 +3275 5116 0.4260 +3275 5914 0.4370 +3275 6187 0.4790 +3275 6285 0.6070 +3275 6628 0.5140 +3275 7170 0.4050 +3275 7536 0.4080 +3275 7916 0.4200 +3275 8369 0.4020 +3275 8648 0.5060 +3275 8844 0.4430 +3275 9019 0.5490 +3275 9739 0.4860 +3275 9987 0.6150 +3275 10280 0.4040 +3275 10419 0.5010 +3275 10885 0.4260 +3275 11100 0.7000 +3275 11123 0.4200 +3275 22843 0.4360 +3275 23054 0.4720 +3275 23067 0.6970 +3275 23076 0.5760 +3275 23135 0.4720 +3275 23181 0.5960 +3275 23212 0.4010 +3275 23223 0.4100 +3275 23435 0.4200 +3275 23560 0.4020 +3275 23564 0.6250 +3275 23576 0.4480 +3275 25885 0.4090 +3275 25959 0.4260 +3275 26155 0.5220 +3275 26267 0.4180 +3275 26354 0.4100 +3275 29109 0.4200 +3275 30827 0.4030 +3275 51154 0.4100 +3275 51504 0.5300 +3275 54433 0.4180 +3275 54496 0.4710 +3275 54552 0.4100 +3275 55209 0.5490 +3275 55299 0.4240 +3275 55319 0.4120 +3275 55651 0.4270 +3275 56341 0.6380 +3275 60487 0.4430 +3275 79084 0.4740 +3275 84154 0.4760 +3275 84456 0.6200 +3275 84626 0.4360 +3275 84722 0.6100 +3275 85358 0.5500 +3275 89766 0.4650 +3275 90378 0.4850 +3275 133482 0.4950 +3276 3454 0.5060 +3276 3674 0.5370 +3276 3842 0.4380 +3276 4076 0.4560 +3276 4087 0.4750 +3276 4116 0.6270 +3276 4193 0.5680 +3276 4297 0.6460 +3276 4303 0.9240 +3276 4343 0.5020 +3276 4361 0.4590 +3276 4435 0.5010 +3276 4440 0.4020 +3276 4609 0.6600 +3276 4613 0.4440 +3276 4691 0.5580 +3276 4790 0.5830 +3276 4839 0.5470 +3276 4850 0.4800 +3276 5036 0.4770 +3276 5050 0.4210 +3276 5111 0.5640 +3276 5245 0.4510 +3276 5515 0.5320 +3276 5710 0.4070 +3276 5929 0.5970 +3276 5935 0.5460 +3276 5970 0.4620 +3276 6128 0.4370 +3276 6187 0.6140 +3276 6188 0.6920 +3276 6237 0.4930 +3276 6240 0.5650 +3276 6426 0.4700 +3276 6429 0.4160 +3276 6430 0.4810 +3276 6431 0.4480 +3276 6500 0.4300 +3276 6597 0.4380 +3276 6625 0.4570 +3276 6628 0.9350 +3276 6631 0.4830 +3276 6632 0.9450 +3276 6633 0.9260 +3276 6634 0.9510 +3276 6635 0.9190 +3276 6636 0.9190 +3276 6637 0.9140 +3276 6714 0.7390 +3276 6772 0.6720 +3276 6776 0.4130 +3276 6790 0.5840 +3276 6829 0.5020 +3276 6839 0.5460 +3276 6886 0.4530 +3276 6908 0.6150 +3276 6996 0.4170 +3276 7031 0.5180 +3276 7057 0.4700 +3276 7073 0.4350 +3276 7150 0.4160 +3276 7157 0.9370 +3276 7158 0.4400 +3276 7168 0.4590 +3276 7170 0.4620 +3276 7277 0.4470 +3276 7295 0.4890 +3276 7297 0.4390 +3276 7329 0.6140 +3276 7391 0.6060 +3276 7431 0.6520 +3276 7468 0.4370 +3276 7520 0.4230 +3276 7528 0.8960 +3276 7555 0.4430 +3276 7799 0.4450 +3276 7832 0.9920 +3276 7846 0.4820 +3276 7874 0.6490 +3276 7994 0.5750 +3276 8085 0.6140 +3276 8106 0.4740 +3276 8148 0.7400 +3276 8202 0.9240 +3276 8204 0.5000 +3276 8237 0.4010 +3276 8290 0.7170 +3276 8312 0.6510 +3276 8329 0.4430 +3276 8331 0.5380 +3276 8334 0.5390 +3276 8337 0.7260 +3276 8338 0.7250 +3276 8340 0.5740 +3276 8341 0.5690 +3276 8342 0.5750 +3276 8345 0.5730 +3276 8347 0.5760 +3276 8348 0.5770 +3276 8349 0.6890 +3276 8356 0.8610 +3276 8361 0.9940 +3276 8369 0.8120 +3276 8522 0.4430 +3276 8554 0.5740 +3276 8568 0.4020 +3276 8607 0.5450 +3276 8648 0.8930 +3276 8850 0.8170 +3276 8856 0.5420 +3276 8886 0.4330 +3276 8932 0.4700 +3276 8970 0.5750 +3276 9040 0.4600 +3276 9070 0.7630 +3276 9337 0.4010 +3276 9584 0.4040 +3276 9611 0.6310 +3276 9612 0.5500 +3276 9739 0.7280 +3276 9757 0.5810 +3276 9759 0.5630 +3276 9775 0.7060 +3276 9869 0.5190 +3276 9898 0.7880 +3276 9971 0.4450 +3276 9987 0.6760 +3276 10146 0.8110 +3276 10189 0.6470 +3276 10196 0.8520 +3276 10236 0.7660 +3276 10262 0.5840 +3276 10280 0.4200 +3276 10290 0.5930 +3276 10376 0.4590 +3276 10399 0.5210 +3276 10412 0.5290 +3276 10419 0.9930 +3276 10492 0.9040 +3276 10498 0.9820 +3276 10499 0.8700 +3276 10521 0.4070 +3276 10524 0.6900 +3276 10528 0.5100 +3276 10574 0.5760 +3276 10630 0.4830 +3276 10656 0.7310 +3276 10657 0.9550 +3276 10856 0.5610 +3276 10885 0.5350 +3276 10891 0.4090 +3276 10919 0.6120 +3276 10921 0.4320 +3276 10969 0.4860 +3276 10992 0.4380 +3276 11047 0.6040 +3276 11091 0.7650 +3276 11100 0.5110 +3276 11137 0.4450 +3276 11168 0.4340 +3276 22913 0.5090 +3276 22927 0.4860 +3276 23028 0.6490 +3276 23067 0.6560 +3276 23081 0.6680 +3276 23112 0.4070 +3276 23135 0.4530 +3276 23136 0.5670 +3276 23137 0.4950 +3276 23160 0.4270 +3276 23210 0.4990 +3276 23212 0.4700 +3276 23223 0.5280 +3276 23309 0.5640 +3276 23411 0.7420 +3276 23450 0.4980 +3276 23476 0.4920 +3276 23481 0.4410 +3276 23522 0.4580 +3276 23560 0.5450 +3276 23564 0.7590 +3276 23569 0.5780 +3276 23576 0.6920 +3276 25793 0.4130 +3276 25885 0.4200 +3276 25942 0.7770 +3276 25946 0.4080 +3276 26065 0.8500 +3276 26097 0.8970 +3276 26135 0.5250 +3276 26155 0.6030 +3276 26156 0.4550 +3276 26267 0.4490 +3276 26354 0.4550 +3276 26523 0.4350 +3276 26986 0.5620 +3276 27327 0.4120 +3276 27339 0.4660 +3276 28989 0.6000 +3276 28996 0.4460 +3276 29072 0.4490 +3276 29883 0.5610 +3276 29889 0.4070 +3276 29997 0.4180 +3276 51111 0.4690 +3276 51154 0.5590 +3276 51477 0.4150 +3276 51504 0.6440 +3276 51602 0.4580 +3276 51741 0.4360 +3276 51807 0.4250 +3276 54145 0.5790 +3276 54433 0.6510 +3276 54475 0.4240 +3276 54496 0.5830 +3276 54552 0.4480 +3276 54888 0.4230 +3276 55074 0.4590 +3276 55170 0.6010 +3276 55226 0.4440 +3276 55294 0.5330 +3276 55299 0.4030 +3276 55651 0.5950 +3276 55720 0.4240 +3276 55766 0.5350 +3276 55870 0.4090 +3276 55904 0.6080 +3276 56339 0.4390 +3276 56341 0.9040 +3276 56950 0.5510 +3276 57418 0.4370 +3276 57721 0.4050 +3276 57805 0.5020 +3276 58508 0.6620 +3276 60487 0.4600 +3276 64324 0.5530 +3276 64754 0.4920 +3276 64783 0.4840 +3276 64839 0.4320 +3276 64902 0.5380 +3276 79084 0.9770 +3276 79097 0.4140 +3276 79723 0.5110 +3276 79813 0.4360 +3276 79823 0.4070 +3276 79861 0.4430 +3276 80204 0.4110 +3276 80854 0.6620 +3276 83743 0.5560 +3276 84154 0.5560 +3276 84444 0.6200 +3276 84661 0.5540 +3276 84787 0.4430 +3276 84790 0.4800 +3276 84901 0.7830 +3276 84916 0.4170 +3276 85235 0.4420 +3276 85236 0.5790 +3276 92815 0.4460 +3276 94239 0.5530 +3276 112714 0.4330 +3276 113457 0.4440 +3276 128312 0.5730 +3276 133482 0.4250 +3276 135112 0.4630 +3276 149603 0.4390 +3276 161882 0.5340 +3276 192669 0.4100 +3276 192670 0.4100 +3276 202559 0.7790 +3276 221078 0.4240 +3276 221613 0.4420 +3276 255626 0.5730 +3276 283742 0.6150 +3276 317772 0.4460 +3276 345630 0.4540 +3276 387893 0.5360 +3276 440093 0.7330 +3276 440686 0.7160 +3276 474382 0.5590 +3276 653604 0.8590 +3280 3308 0.4400 +3280 3320 0.4750 +3280 3397 0.4930 +3280 3516 0.9460 +3280 3714 0.5980 +3280 3717 0.4450 +3280 3880 0.4800 +3280 4440 0.5360 +3280 4609 0.5170 +3280 4760 0.4080 +3280 4808 0.4910 +3280 4851 0.8970 +3280 4853 0.8120 +3280 4854 0.8060 +3280 4855 0.7490 +3280 5178 0.4390 +3280 6476 0.7190 +3280 6709 0.4390 +3280 6772 0.5340 +3280 6774 0.5190 +3280 6927 0.5080 +3280 7088 0.9530 +3280 7089 0.8200 +3280 7090 0.6980 +3280 7091 0.6730 +3280 7528 0.6190 +3280 8850 0.5510 +3280 8882 0.4260 +3280 8972 0.7200 +3280 9794 0.7740 +3280 10046 0.5040 +3280 10683 0.4980 +3280 22938 0.5510 +3280 23411 0.5320 +3280 23462 0.9190 +3280 23493 0.8050 +3280 26508 0.5830 +3280 28514 0.6370 +3280 29089 0.8000 +3280 50674 0.9710 +3280 54567 0.5650 +3280 55120 0.9990 +3280 55215 0.9000 +3280 55502 0.5420 +3280 55534 0.7150 +3280 57697 0.8000 +3280 79816 0.4320 +3280 80233 0.8000 +3280 84233 0.4370 +3280 84441 0.7340 +3280 91442 0.8000 +3280 124540 0.4470 +3280 201254 0.8010 +3280 256297 0.7400 +3280 378708 0.8000 +3280 388585 0.9200 +3281 3297 0.8350 +3281 3303 0.4200 +3281 3304 0.4200 +3281 3305 0.4200 +3281 3308 0.7770 +3281 3312 0.4910 +3281 3320 0.5560 +3281 3326 0.5630 +3281 3337 0.4960 +3281 3658 0.4630 +3281 5710 0.4040 +3281 6611 0.4480 +3281 7347 0.4290 +3281 8724 0.4160 +3281 9978 0.6180 +3281 10162 0.4410 +3281 10776 0.4740 +3281 10808 0.4240 +3281 26353 0.5050 +3281 30968 0.4550 +3281 51019 0.9310 +3281 54535 0.5810 +3281 55004 0.4590 +3281 55081 0.4290 +3281 55845 0.5560 +3281 60673 0.6380 +3281 79587 0.4090 +3281 282809 0.4320 +3283 3284 0.9650 +3283 3290 0.9620 +3283 3291 0.9590 +3283 3292 0.8800 +3283 3293 0.9830 +3283 3294 0.9640 +3283 3295 0.5570 +3283 3479 0.4640 +3283 3623 0.5860 +3283 3625 0.4990 +3283 3630 0.4100 +3283 3640 0.7270 +3283 3814 0.4910 +3283 3930 0.5560 +3283 3973 0.8150 +3283 4047 0.7880 +3283 4158 0.5890 +3283 5241 0.4830 +3283 5443 0.6070 +3283 5447 0.5650 +3283 5469 0.4890 +3283 5740 0.5010 +3283 5972 0.5200 +3283 6122 0.4290 +3283 6123 0.4290 +3283 6124 0.4610 +3283 6125 0.5530 +3283 6129 0.4030 +3283 6132 0.4720 +3283 6133 0.4890 +3283 6135 0.5710 +3283 6137 0.5550 +3283 6138 0.6080 +3283 6139 0.4310 +3283 6141 0.5560 +3283 6142 0.5110 +3283 6143 0.6690 +3283 6144 0.5380 +3283 6146 0.4630 +3283 6147 0.5450 +3283 6152 0.5160 +3283 6156 0.5670 +3283 6158 0.5070 +3283 6159 0.5280 +3283 6160 0.5630 +3283 6164 0.5550 +3283 6165 0.4960 +3283 6168 0.5200 +3283 6169 0.5100 +3283 6183 0.5390 +3283 6187 0.5070 +3283 6188 0.5990 +3283 6189 0.6260 +3283 6191 0.4270 +3283 6192 0.4270 +3283 6193 0.4660 +3283 6194 0.5450 +3283 6201 0.5510 +3283 6202 0.5590 +3283 6203 0.5080 +3283 6204 0.4860 +3283 6205 0.5860 +3283 6207 0.4850 +3283 6208 0.4680 +3283 6209 0.6230 +3283 6217 0.6510 +3283 6222 0.5570 +3283 6223 0.5390 +3283 6224 0.5040 +3283 6227 0.5510 +3283 6228 0.5390 +3283 6229 0.5600 +3283 6230 0.5660 +3283 6231 0.5510 +3283 6232 0.4710 +3283 6234 0.5500 +3283 6235 0.5110 +3283 6307 0.7160 +3283 6309 0.7940 +3283 6462 0.4610 +3283 6648 0.4960 +3283 6662 0.4520 +3283 6697 0.6180 +3283 6713 0.8100 +3283 6715 0.9710 +3283 6716 0.9630 +3283 6718 0.9410 +3283 6770 0.9030 +3283 6783 0.5480 +3283 6820 0.9490 +3283 6822 0.7350 +3283 7108 0.6200 +3283 7311 0.5350 +3283 7358 0.6830 +3283 7363 0.7120 +3283 7364 0.7200 +3283 7365 0.7030 +3283 7366 0.7830 +3283 7367 0.7790 +3283 7818 0.4650 +3283 7923 0.9290 +3283 8630 0.9520 +3283 8644 0.9710 +3283 8813 0.4530 +3283 8891 0.5120 +3283 8893 0.5120 +3283 9023 0.6840 +3283 9210 0.5990 +3283 9349 0.6210 +3283 9360 0.4120 +3283 9420 0.9700 +3283 9553 0.4810 +3283 9563 0.4510 +3283 9801 0.4470 +3283 10170 0.5620 +3283 10280 0.7490 +3283 10399 0.4670 +3283 10558 0.4120 +3283 10720 0.7090 +3283 10826 0.6840 +3283 11161 0.7220 +3283 11222 0.4290 +3283 11224 0.5560 +3283 23483 0.5630 +3283 23521 0.4670 +3283 25873 0.5370 +3283 26166 0.4170 +3283 26589 0.4320 +3283 27233 0.4010 +3283 28998 0.4380 +3283 29093 0.4310 +3283 29880 0.4530 +3283 29925 0.5120 +3283 29926 0.5120 +3283 50846 0.4520 +3283 51021 0.4890 +3283 51065 0.4710 +3283 51069 0.4560 +3283 51073 0.4610 +3283 51081 0.4660 +3283 51149 0.4640 +3283 51170 0.4370 +3283 51171 0.4080 +3283 51179 0.5550 +3283 51264 0.4490 +3283 51302 0.5870 +3283 51478 0.8810 +3283 54361 0.5440 +3283 54363 0.4600 +3283 54490 0.7170 +3283 54514 0.4890 +3283 54575 0.7370 +3283 54576 0.7380 +3283 54577 0.7360 +3283 54578 0.7370 +3283 54579 0.7180 +3283 54600 0.6990 +3283 54657 0.7360 +3283 54658 0.7380 +3283 54659 0.7140 +3283 55173 0.5040 +3283 55272 0.4930 +3283 55316 0.5110 +3283 56033 0.4240 +3283 56603 0.4170 +3283 56993 0.4300 +3283 57129 0.4590 +3283 60488 0.4620 +3283 63875 0.4460 +3283 63931 0.5110 +3283 64960 0.4640 +3283 64963 0.4680 +3283 64965 0.5110 +3283 64968 0.4630 +3283 64969 0.5010 +3283 64975 0.4320 +3283 64976 0.4300 +3283 64979 0.4320 +3283 64981 0.4240 +3283 64983 0.4440 +3283 79154 0.8860 +3283 79644 0.9350 +3283 79799 0.7090 +3283 80777 0.5020 +3283 84545 0.4280 +3283 84693 0.4160 +3283 92196 0.4080 +3283 114987 0.4670 +3283 126402 0.4660 +3283 132949 0.4290 +3283 135935 0.4070 +3283 140032 0.4270 +3283 197258 0.4140 +3283 200916 0.4630 +3283 201232 0.5470 +3283 285855 0.4030 +3283 344018 0.5870 +3283 347475 0.5010 +3283 374875 0.9110 +3283 387129 0.4030 +3283 574537 0.7020 +3283 100505478 0.4030 +3283 100526842 0.4310 +3283 100529239 0.4860 +3283 100861540 0.9380 +3284 3290 0.9520 +3284 3291 0.9490 +3284 3292 0.6400 +3284 3293 0.9870 +3284 3294 0.9700 +3284 3295 0.4750 +3284 3640 0.5030 +3284 3930 0.5560 +3284 3973 0.7010 +3284 4047 0.7760 +3284 4158 0.6040 +3284 4929 0.5780 +3284 5443 0.6970 +3284 5447 0.6160 +3284 5469 0.4890 +3284 5740 0.5010 +3284 6122 0.4290 +3284 6123 0.4310 +3284 6124 0.4610 +3284 6125 0.5530 +3284 6129 0.4030 +3284 6132 0.4560 +3284 6133 0.4890 +3284 6135 0.5710 +3284 6137 0.5550 +3284 6138 0.6160 +3284 6139 0.4310 +3284 6141 0.5560 +3284 6142 0.5110 +3284 6143 0.6250 +3284 6144 0.5380 +3284 6146 0.4630 +3284 6147 0.5450 +3284 6152 0.5160 +3284 6156 0.5670 +3284 6158 0.5070 +3284 6159 0.5280 +3284 6160 0.5630 +3284 6164 0.5500 +3284 6165 0.4960 +3284 6168 0.5200 +3284 6169 0.5100 +3284 6183 0.5390 +3284 6187 0.5010 +3284 6188 0.5950 +3284 6189 0.6260 +3284 6191 0.4270 +3284 6192 0.4270 +3284 6193 0.4660 +3284 6194 0.5310 +3284 6201 0.5510 +3284 6202 0.5590 +3284 6203 0.4930 +3284 6204 0.4860 +3284 6205 0.5860 +3284 6207 0.4640 +3284 6208 0.4680 +3284 6209 0.5990 +3284 6217 0.4660 +3284 6222 0.5570 +3284 6223 0.5450 +3284 6224 0.5040 +3284 6227 0.5510 +3284 6228 0.5390 +3284 6229 0.5600 +3284 6230 0.5660 +3284 6231 0.5430 +3284 6232 0.4710 +3284 6234 0.5500 +3284 6235 0.5110 +3284 6307 0.7170 +3284 6309 0.7720 +3284 6648 0.4450 +3284 6697 0.6680 +3284 6713 0.8030 +3284 6715 0.9800 +3284 6716 0.9710 +3284 6718 0.9430 +3284 6770 0.8210 +3284 6783 0.5850 +3284 6820 0.9420 +3284 6822 0.7490 +3284 7108 0.6010 +3284 7311 0.5350 +3284 7358 0.6830 +3284 7363 0.6990 +3284 7364 0.7130 +3284 7365 0.6990 +3284 7366 0.7800 +3284 7367 0.7430 +3284 7818 0.4650 +3284 7923 0.9230 +3284 8013 0.4970 +3284 8431 0.5040 +3284 8630 0.9520 +3284 8644 0.9810 +3284 8813 0.4530 +3284 8891 0.5120 +3284 8893 0.5250 +3284 9023 0.6910 +3284 9060 0.5640 +3284 9349 0.6210 +3284 9420 0.9670 +3284 9553 0.4810 +3284 9563 0.4170 +3284 9734 0.4340 +3284 9801 0.4470 +3284 9971 0.5200 +3284 10046 0.5110 +3284 10280 0.7270 +3284 10399 0.4670 +3284 10720 0.7020 +3284 10826 0.6710 +3284 11161 0.7240 +3284 11222 0.4290 +3284 11224 0.5720 +3284 22845 0.4080 +3284 23483 0.5630 +3284 23521 0.4510 +3284 23523 0.4440 +3284 25873 0.5370 +3284 26589 0.4320 +3284 27233 0.4240 +3284 27284 0.4280 +3284 28998 0.4380 +3284 29093 0.4310 +3284 29880 0.4530 +3284 29925 0.5120 +3284 29926 0.5120 +3284 51021 0.4890 +3284 51065 0.4710 +3284 51069 0.4560 +3284 51073 0.4610 +3284 51081 0.4660 +3284 51149 0.4640 +3284 51179 0.5810 +3284 51264 0.4490 +3284 51302 0.5240 +3284 51478 0.8580 +3284 51564 0.4750 +3284 54363 0.4850 +3284 54490 0.7100 +3284 54575 0.6940 +3284 54576 0.7060 +3284 54577 0.6920 +3284 54578 0.6930 +3284 54579 0.6910 +3284 54600 0.6880 +3284 54657 0.6930 +3284 54658 0.7060 +3284 54659 0.7030 +3284 55163 0.4250 +3284 55173 0.5040 +3284 55272 0.4930 +3284 55316 0.5110 +3284 57129 0.4870 +3284 60488 0.4620 +3284 63875 0.4460 +3284 63931 0.5110 +3284 64960 0.4640 +3284 64963 0.4680 +3284 64965 0.5110 +3284 64968 0.4630 +3284 64969 0.5010 +3284 64975 0.4320 +3284 64976 0.4300 +3284 64979 0.4320 +3284 64981 0.4240 +3284 64983 0.4440 +3284 79154 0.8160 +3284 79644 0.9620 +3284 79799 0.7100 +3284 80777 0.6720 +3284 84545 0.4280 +3284 84693 0.4530 +3284 92196 0.4080 +3284 114987 0.4670 +3284 126402 0.4660 +3284 132949 0.4180 +3284 140032 0.4270 +3284 197258 0.4140 +3284 200916 0.4630 +3284 285855 0.4030 +3284 347475 0.5010 +3284 374875 0.9260 +3284 387129 0.4050 +3284 442038 0.4240 +3284 574537 0.6940 +3284 100505478 0.4030 +3284 100526842 0.4310 +3284 100529239 0.4860 +3284 100861540 0.9370 +3290 3291 0.9600 +3290 3292 0.6180 +3290 3293 0.5630 +3290 3294 0.4770 +3290 3295 0.4330 +3290 3479 0.4190 +3290 3630 0.5750 +3290 3817 0.4010 +3290 3952 0.4650 +3290 3973 0.4810 +3290 4158 0.4860 +3290 4306 0.8050 +3290 5105 0.4150 +3290 5443 0.7680 +3290 5468 0.4590 +3290 6217 0.4060 +3290 6517 0.4100 +3290 6603 0.5120 +3290 6652 0.4150 +3290 6715 0.8280 +3290 6716 0.6030 +3290 6718 0.9770 +3290 6770 0.5270 +3290 6822 0.6760 +3290 7057 0.5260 +3290 7363 0.7140 +3290 7364 0.6890 +3290 7365 0.6890 +3290 7366 0.7020 +3290 7367 0.6790 +3290 7368 0.4520 +3290 7436 0.4610 +3290 7704 0.4900 +3290 7923 0.5120 +3290 8644 0.5120 +3290 9370 0.6130 +3290 9420 0.4630 +3290 9446 0.4420 +3290 9563 0.9310 +3290 10720 0.6890 +3290 10858 0.6080 +3290 11132 0.4690 +3290 23213 0.5030 +3290 29979 0.4180 +3290 30835 0.4350 +3290 54490 0.6800 +3290 54575 0.6970 +3290 54576 0.6970 +3290 54577 0.6950 +3290 54578 0.6960 +3290 54579 0.6890 +3290 54600 0.6930 +3290 54657 0.7000 +3290 54658 0.6950 +3290 54659 0.6870 +3290 54995 0.4480 +3290 55825 0.4200 +3290 55959 0.4160 +3290 56255 0.4690 +3290 63924 0.4270 +3290 64434 0.5500 +3290 79154 0.5970 +3290 79799 0.6910 +3290 84467 0.5380 +3290 112812 0.5040 +3290 119391 0.4340 +3290 374875 0.9090 +3290 574537 0.6990 +3290 104909134 0.4300 +3291 3292 0.4220 +3291 3293 0.6410 +3291 3481 0.4190 +3291 3630 0.5190 +3291 3952 0.4470 +3291 4158 0.7700 +3291 4306 0.9230 +3291 4782 0.4240 +3291 4988 0.4220 +3291 5443 0.8680 +3291 5972 0.7570 +3291 6337 0.5630 +3291 6338 0.5340 +3291 6340 0.6480 +3291 6446 0.5160 +3291 6559 0.4650 +3291 6603 0.4930 +3291 6715 0.8060 +3291 6716 0.5880 +3291 6718 0.9750 +3291 6770 0.7250 +3291 6822 0.6340 +3291 8644 0.4720 +3291 8859 0.4240 +3291 9114 0.7440 +3291 9563 0.8860 +3291 10915 0.4080 +3291 55166 0.7190 +3291 55660 0.4080 +3291 64434 0.5490 +3291 65266 0.4800 +3291 79154 0.8120 +3291 79172 0.5040 +3291 84467 0.5080 +3291 374875 0.9270 +3291 104909134 0.4250 +3292 3293 0.9840 +3292 3294 0.9990 +3292 3295 0.9430 +3292 3973 0.5950 +3292 4669 0.7640 +3292 5051 0.4630 +3292 5241 0.4830 +3292 6462 0.4320 +3292 6652 0.4090 +3292 6715 0.6380 +3292 6716 0.5920 +3292 6718 0.4170 +3292 6770 0.6620 +3292 6783 0.9620 +3292 6822 0.4610 +3292 6945 0.7490 +3292 7363 0.6950 +3292 7364 0.7220 +3292 7365 0.6760 +3292 7366 0.7630 +3292 7367 0.7300 +3292 7923 0.9590 +3292 8027 0.5130 +3292 8630 0.9380 +3292 8644 0.9750 +3292 9360 0.4040 +3292 9399 0.4660 +3292 9563 0.4110 +3292 9692 0.5370 +3292 10254 0.5170 +3292 10608 0.6650 +3292 10720 0.6890 +3292 22877 0.7150 +3292 27085 0.4120 +3292 27349 0.4070 +3292 51085 0.5410 +3292 51144 0.9680 +3292 51171 0.7120 +3292 51478 0.9910 +3292 54490 0.6840 +3292 54575 0.7380 +3292 54576 0.7310 +3292 54577 0.7300 +3292 54578 0.7330 +3292 54579 0.7020 +3292 54600 0.7000 +3292 54657 0.7320 +3292 54658 0.7300 +3292 54659 0.7000 +3292 54931 0.6910 +3292 54995 0.4510 +3292 63924 0.4670 +3292 79154 0.9970 +3292 79799 0.6760 +3292 112812 0.4680 +3292 574537 0.6810 +3293 3294 0.9980 +3293 3295 0.9530 +3293 3640 0.7960 +3293 3972 0.4310 +3293 3973 0.7780 +3293 4158 0.4470 +3293 4706 0.4380 +3293 5730 0.4090 +3293 6217 0.5720 +3293 6470 0.5020 +3293 6472 0.5020 +3293 6652 0.4170 +3293 6715 0.9780 +3293 6716 0.9790 +3293 6718 0.9330 +3293 6736 0.4520 +3293 6770 0.7560 +3293 6783 0.4160 +3293 6822 0.5060 +3293 7363 0.9160 +3293 7364 0.9180 +3293 7365 0.9070 +3293 7366 0.9390 +3293 7367 0.9350 +3293 7923 0.9640 +3293 8031 0.4160 +3293 8540 0.4750 +3293 8630 0.9540 +3293 8644 0.9860 +3293 9060 0.4420 +3293 9200 0.6050 +3293 9524 0.6550 +3293 10046 0.6090 +3293 10170 0.4900 +3293 10449 0.4230 +3293 10455 0.4100 +3293 10588 0.4500 +3293 10720 0.9140 +3293 10797 0.4670 +3293 10841 0.7520 +3293 11112 0.4320 +3293 23413 0.4260 +3293 26063 0.4470 +3293 50846 0.5370 +3293 51015 0.4890 +3293 51170 0.4220 +3293 51171 0.7670 +3293 51478 0.6020 +3293 51495 0.5980 +3293 54490 0.9100 +3293 54575 0.9130 +3293 54576 0.9130 +3293 54577 0.9130 +3293 54578 0.9150 +3293 54579 0.9110 +3293 54600 0.9090 +3293 54657 0.9140 +3293 54658 0.9150 +3293 54659 0.9150 +3293 56898 0.5510 +3293 57508 0.4320 +3293 64779 0.4500 +3293 79154 0.5770 +3293 79644 0.9500 +3293 79728 0.4380 +3293 79763 0.4890 +3293 79799 0.9070 +3293 79893 0.4750 +3293 84263 0.4690 +3293 84656 0.4320 +3293 84869 0.5100 +3293 132949 0.4810 +3293 139189 0.4270 +3293 197257 0.4750 +3293 201140 0.5180 +3293 201562 0.6050 +3293 253017 0.6650 +3293 345275 0.4200 +3293 401494 0.5980 +3293 441024 0.4680 +3293 574537 0.9080 +3294 3295 0.9280 +3294 3576 0.4260 +3294 5241 0.4620 +3294 5971 0.4170 +3294 6373 0.4120 +3294 6715 0.9770 +3294 6716 0.9580 +3294 6718 0.9310 +3294 6783 0.9590 +3294 6820 0.4180 +3294 6822 0.4960 +3294 7363 0.6990 +3294 7364 0.7300 +3294 7365 0.6880 +3294 7366 0.7980 +3294 7367 0.7400 +3294 7923 0.9350 +3294 8630 0.9200 +3294 8644 0.9820 +3294 9687 0.4330 +3294 10720 0.6890 +3294 10901 0.4140 +3294 27284 0.5520 +3294 28232 0.5160 +3294 50700 0.4750 +3294 51144 0.9340 +3294 51170 0.6080 +3294 51290 0.4540 +3294 51478 0.9610 +3294 54490 0.6990 +3294 54575 0.8220 +3294 54576 0.7310 +3294 54577 0.6910 +3294 54578 0.7010 +3294 54579 0.6700 +3294 54600 0.6960 +3294 54657 0.7040 +3294 54658 0.7010 +3294 54659 0.6790 +3294 54928 0.4080 +3294 56923 0.4050 +3294 79154 0.9950 +3294 79644 0.9530 +3294 79799 0.6870 +3294 93517 0.5370 +3294 140609 0.4330 +3294 201140 0.4090 +3294 574537 0.6850 +3295 3416 0.5250 +3295 3417 0.8130 +3295 3712 0.4330 +3295 4193 0.5890 +3295 4194 0.5630 +3295 4358 0.6080 +3295 4843 0.5440 +3295 5096 0.4450 +3295 5162 0.4510 +3295 5189 0.5250 +3295 5190 0.6040 +3295 5191 0.5490 +3295 5192 0.7180 +3295 5194 0.8120 +3295 5195 0.7720 +3295 5264 0.6110 +3295 5286 0.4550 +3295 5691 0.4530 +3295 5824 0.5370 +3295 5825 0.6570 +3295 5828 0.6600 +3295 5830 0.9360 +3295 6233 0.5010 +3295 6296 0.4340 +3295 6342 0.9860 +3295 6622 0.4220 +3295 6715 0.4070 +3295 6718 0.4670 +3295 7311 0.4990 +3295 7314 0.5060 +3295 7316 0.5080 +3295 7321 0.5360 +3295 7322 0.5390 +3295 7323 0.5380 +3295 7915 0.4760 +3295 7923 0.4350 +3295 7965 0.7480 +3295 8050 0.4530 +3295 8192 0.7210 +3295 8309 0.9920 +3295 8310 0.9890 +3295 8443 0.8930 +3295 8504 0.5290 +3295 8528 0.5690 +3295 8540 0.5390 +3295 8644 0.5100 +3295 8799 0.6570 +3295 8800 0.6350 +3295 8854 0.4180 +3295 9085 0.5000 +3295 9425 0.5010 +3295 9607 0.5130 +3295 10005 0.8030 +3295 10202 0.4370 +3295 10449 0.6640 +3295 10455 0.8570 +3295 10478 0.4600 +3295 10901 0.7370 +3295 10965 0.6240 +3295 10994 0.4650 +3295 10998 0.5340 +3295 11001 0.7340 +3295 23205 0.5940 +3295 23305 0.6170 +3295 23395 0.6280 +3295 23417 0.6440 +3295 23438 0.4350 +3295 23600 0.8830 +3295 26061 0.7880 +3295 26063 0.8570 +3295 26275 0.5230 +3295 26284 0.6010 +3295 27034 0.6020 +3295 28976 0.5200 +3295 51084 0.5480 +3295 51102 0.4130 +3295 51144 0.5120 +3295 51170 0.5790 +3295 51171 0.6180 +3295 51179 0.6900 +3295 51268 0.6050 +3295 51478 0.4260 +3295 51555 0.5600 +3295 51703 0.6770 +3295 54084 0.4920 +3295 54363 0.6620 +3295 54677 0.7180 +3295 54988 0.4350 +3295 55268 0.5180 +3295 55289 0.5690 +3295 55825 0.7250 +3295 55862 0.4600 +3295 55902 0.4860 +3295 56652 0.4700 +3295 56898 0.4330 +3295 64087 0.4600 +3295 64577 0.4180 +3295 65985 0.4360 +3295 79154 0.9380 +3295 79611 0.4330 +3295 79783 0.4670 +3295 80270 0.5560 +3295 80347 0.4740 +3295 80724 0.6300 +3295 80777 0.5010 +3295 81616 0.5630 +3295 83752 0.7090 +3295 84129 0.6970 +3295 84263 0.6330 +3295 84532 0.4570 +3295 91452 0.4250 +3295 92960 0.4830 +3295 116285 0.4320 +3295 122970 0.6340 +3295 124359 0.5000 +3295 126133 0.4920 +3295 137872 0.5520 +3295 196743 0.5810 +3295 219743 0.8640 +3295 221711 0.4180 +3295 253175 0.5000 +3295 283927 0.6110 +3295 284086 0.5580 +3295 284422 0.4130 +3295 317749 0.4360 +3295 345275 0.4390 +3295 373156 0.5770 +3295 376497 0.4830 +3295 390916 0.6560 +3295 122405565 0.4130 +3297 3298 0.8950 +3297 3299 0.6490 +3297 3303 0.7880 +3297 3304 0.9440 +3297 3305 0.7510 +3297 3306 0.7360 +3297 3308 0.9850 +3297 3309 0.5180 +3297 3310 0.5860 +3297 3312 0.9280 +3297 3313 0.4090 +3297 3315 0.8990 +3297 3316 0.7070 +3297 3320 0.9980 +3297 3326 0.9920 +3297 3329 0.4030 +3297 3337 0.9060 +3297 4149 0.4070 +3297 4303 0.4860 +3297 4609 0.5200 +3297 4741 0.4480 +3297 4744 0.4090 +3297 4810 0.4110 +3297 5071 0.5530 +3297 5116 0.5260 +3297 5165 0.4530 +3297 5202 0.5420 +3297 5347 0.5280 +3297 5536 0.7450 +3297 5594 0.8580 +3297 5595 0.8670 +3297 5599 0.6110 +3297 6117 0.5690 +3297 6118 0.5030 +3297 6119 0.5040 +3297 6233 0.5380 +3297 6388 0.7240 +3297 6597 0.7020 +3297 6674 0.5620 +3297 6772 0.4130 +3297 6879 0.4300 +3297 6908 0.5460 +3297 6950 0.7690 +3297 7157 0.5500 +3297 7184 0.4040 +3297 7203 0.8440 +3297 7248 0.8150 +3297 7311 0.5010 +3297 7314 0.5160 +3297 7316 0.5260 +3297 7329 0.4150 +3297 7334 0.5310 +3297 7335 0.5080 +3297 7341 0.7210 +3297 7415 0.8630 +3297 7531 0.8720 +3297 8100 0.5230 +3297 8189 0.4430 +3297 8409 0.5410 +3297 8607 0.5590 +3297 8624 0.7240 +3297 8655 0.5040 +3297 8725 0.5440 +3297 8988 0.5830 +3297 9261 0.8390 +3297 9371 0.4250 +3297 9530 0.5270 +3297 9531 0.9230 +3297 9532 0.5700 +3297 9973 0.5000 +3297 10013 0.8550 +3297 10273 0.8910 +3297 10392 0.4060 +3297 10471 0.5520 +3297 10574 0.7380 +3297 10575 0.7520 +3297 10576 0.7530 +3297 10693 0.7310 +3297 10694 0.7610 +3297 10728 0.9220 +3297 10808 0.4620 +3297 10856 0.5740 +3297 10963 0.8300 +3297 11140 0.8180 +3297 11315 0.5300 +3297 22824 0.4030 +3297 22920 0.4220 +3297 22948 0.7590 +3297 23234 0.7580 +3297 23246 0.7080 +3297 23411 0.7800 +3297 23640 0.7870 +3297 23753 0.7240 +3297 25897 0.4400 +3297 26353 0.8050 +3297 51143 0.5040 +3297 51278 0.5420 +3297 51398 0.5410 +3297 51726 0.7800 +3297 55172 0.5400 +3297 55294 0.6670 +3297 56339 0.4340 +3297 56829 0.6140 +3297 56984 0.7240 +3297 57003 0.5410 +3297 57521 0.4800 +3297 57805 0.5080 +3297 64223 0.4290 +3297 79657 0.5880 +3297 81570 0.5110 +3297 81572 0.5430 +3297 84335 0.4500 +3297 91582 0.4490 +3297 120379 0.5470 +3297 140735 0.5040 +3297 150160 0.5450 +3297 200894 0.4990 +3297 286343 0.4490 +3298 3299 0.8080 +3298 3303 0.4500 +3298 3304 0.5010 +3298 3306 0.5370 +3298 3310 0.4050 +3298 3312 0.4590 +3298 3320 0.4370 +3298 3326 0.4620 +3298 3973 0.7640 +3298 7329 0.5690 +3298 7703 0.4130 +3298 9530 0.4410 +3298 10808 0.4140 +3298 11077 0.6180 +3298 11091 0.6300 +3298 22841 0.4170 +3298 23636 0.4510 +3298 23640 0.5370 +3298 25789 0.4060 +3298 54535 0.4030 +3298 55751 0.5150 +3298 63877 0.5420 +3298 79805 0.4350 +3298 84225 0.4830 +3298 160777 0.4150 +3299 3304 0.4400 +3299 3312 0.4200 +3299 3320 0.4150 +3299 3982 0.7230 +3299 4055 0.4250 +3299 4094 0.4060 +3299 4240 0.6510 +3299 4284 0.6950 +3299 4477 0.4910 +3299 5309 0.6180 +3299 5594 0.4150 +3299 5621 0.6470 +3299 8419 0.8470 +3299 8996 0.5810 +3299 10223 0.8150 +3299 10380 0.4280 +3299 23424 0.4350 +3299 23584 0.7700 +3299 50863 0.8660 +3299 55022 0.6810 +3299 58511 0.4460 +3299 78986 0.6310 +3299 79443 0.4060 +3299 128866 0.6300 +3299 283953 0.6070 +3299 387700 0.4780 +3300 3301 0.6650 +3300 3303 0.8560 +3300 3304 0.9070 +3300 3305 0.8290 +3300 3306 0.7860 +3300 3308 0.9440 +3300 3309 0.7140 +3300 3310 0.8580 +3300 3312 0.9460 +3300 3313 0.8160 +3300 3315 0.4240 +3300 3316 0.5150 +3300 3320 0.5810 +3300 3326 0.7300 +3300 3336 0.5010 +3300 3337 0.4190 +3300 3508 0.5110 +3300 4287 0.5360 +3300 5476 0.4490 +3300 5920 0.4320 +3300 6233 0.4120 +3300 6449 0.5030 +3300 6622 0.5450 +3300 6647 0.4600 +3300 6648 0.4260 +3300 6782 0.6560 +3300 6950 0.5390 +3300 7184 0.5060 +3300 7203 0.4060 +3300 7248 0.4010 +3300 7266 0.5580 +3300 7316 0.5060 +3300 7818 0.4660 +3300 8565 0.5060 +3300 8988 0.4070 +3300 9349 0.4450 +3300 9528 0.4240 +3300 9529 0.5510 +3300 9531 0.4330 +3300 9532 0.6710 +3300 9829 0.6860 +3300 10049 0.4590 +3300 10273 0.6510 +3300 10294 0.4470 +3300 10525 0.5530 +3300 10575 0.4080 +3300 10598 0.6700 +3300 10808 0.7600 +3300 10963 0.6610 +3300 11080 0.5550 +3300 11145 0.4240 +3300 11218 0.4540 +3300 11222 0.4380 +3300 22824 0.7460 +3300 22948 0.4040 +3300 23317 0.6630 +3300 23435 0.4970 +3300 23551 0.4680 +3300 23640 0.5080 +3300 23770 0.5250 +3300 25789 0.4460 +3300 26278 0.5270 +3300 26353 0.7590 +3300 26589 0.4410 +3300 27000 0.4470 +3300 28998 0.4370 +3300 29979 0.7590 +3300 51182 0.7350 +3300 51277 0.4350 +3300 51314 0.4680 +3300 54332 0.4190 +3300 54509 0.4120 +3300 54557 0.4820 +3300 54979 0.4200 +3300 55159 0.4220 +3300 55466 0.4390 +3300 56521 0.4220 +3300 56893 0.4440 +3300 57110 0.4220 +3300 57129 0.4070 +3300 57449 0.4370 +3300 57721 0.4140 +3300 63875 0.5320 +3300 64374 0.4700 +3300 65997 0.4080 +3300 79872 0.4070 +3300 80273 0.8460 +3300 81570 0.5040 +3300 84545 0.4090 +3300 84955 0.6190 +3300 90678 0.4050 +3300 116835 0.5390 +3300 118461 0.4200 +3300 120526 0.4540 +3300 126393 0.4470 +3300 131118 0.4550 +3300 134266 0.4520 +3300 165721 0.6470 +3300 259217 0.5520 +3300 339416 0.4200 +3300 388633 0.4200 +3301 3303 0.9560 +3301 3304 0.9840 +3301 3305 0.9600 +3301 3306 0.9210 +3301 3308 0.9920 +3301 3309 0.9040 +3301 3310 0.8940 +3301 3312 0.9980 +3301 3313 0.9080 +3301 3315 0.5060 +3301 3316 0.4200 +3301 3320 0.9890 +3301 3326 0.9670 +3301 3329 0.7430 +3301 3336 0.7810 +3301 3337 0.9440 +3301 3757 0.6830 +3301 3840 0.5250 +3301 4137 0.6750 +3301 4189 0.5980 +3301 4287 0.4280 +3301 4670 0.4010 +3301 4869 0.4910 +3301 5071 0.6750 +3301 5093 0.4580 +3301 5511 0.5030 +3301 5684 0.4960 +3301 5706 0.4120 +3301 5719 0.4280 +3301 5898 0.4190 +3301 5906 0.4370 +3301 5920 0.4520 +3301 6048 0.6190 +3301 6136 0.4510 +3301 6294 0.5060 +3301 6310 0.5360 +3301 6426 0.4050 +3301 6434 0.5450 +3301 6449 0.6500 +3301 6613 0.4110 +3301 6622 0.5050 +3301 6633 0.4100 +3301 6648 0.4420 +3301 6657 0.5190 +3301 6767 0.5330 +3301 6782 0.6310 +3301 6950 0.7240 +3301 7157 0.7590 +3301 7184 0.6990 +3301 7186 0.4740 +3301 7203 0.6300 +3301 7248 0.4890 +3301 7266 0.6810 +3301 7319 0.4120 +3301 7321 0.5370 +3301 7323 0.6060 +3301 7415 0.4260 +3301 7514 0.4410 +3301 7846 0.6940 +3301 7919 0.4680 +3301 8106 0.4830 +3301 8192 0.4030 +3301 8361 0.5280 +3301 8924 0.4130 +3301 9093 0.5640 +3301 9271 0.5490 +3301 9349 0.4200 +3301 9354 0.4650 +3301 9401 0.5350 +3301 9528 0.5640 +3301 9529 0.5470 +3301 9531 0.4900 +3301 9532 0.7130 +3301 9782 0.4440 +3301 9829 0.6260 +3301 9868 0.5780 +3301 9986 0.6520 +3301 10013 0.5680 +3301 10049 0.4620 +3301 10075 0.4350 +3301 10131 0.4990 +3301 10146 0.4110 +3301 10189 0.4130 +3301 10213 0.4800 +3301 10269 0.7360 +3301 10273 0.9080 +3301 10294 0.9200 +3301 10454 0.4870 +3301 10525 0.7400 +3301 10535 0.4060 +3301 10574 0.5620 +3301 10575 0.6110 +3301 10576 0.8540 +3301 10598 0.9020 +3301 10693 0.6110 +3301 10694 0.5660 +3301 10726 0.5180 +3301 10728 0.5040 +3301 10808 0.9480 +3301 10910 0.5460 +3301 10949 0.4450 +3301 10963 0.9540 +3301 11060 0.5500 +3301 11080 0.7410 +3301 11140 0.5920 +3301 11145 0.4540 +3301 11231 0.4470 +3301 11315 0.7240 +3301 22824 0.7950 +3301 22826 0.4320 +3301 22938 0.5160 +3301 22948 0.7320 +3301 23135 0.4120 +3301 23234 0.5370 +3301 23353 0.4300 +3301 23435 0.4950 +3301 23463 0.6730 +3301 23640 0.8170 +3301 23746 0.4300 +3301 23770 0.6180 +3301 25777 0.4370 +3301 25789 0.5450 +3301 25822 0.5740 +3301 26353 0.4530 +3301 26523 0.4070 +3301 26973 0.4940 +3301 26986 0.4380 +3301 27000 0.6420 +3301 51182 0.7700 +3301 51314 0.4670 +3301 51465 0.4970 +3301 51807 0.4240 +3301 54557 0.5900 +3301 54788 0.6510 +3301 54979 0.4480 +3301 55234 0.4460 +3301 55466 0.9390 +3301 55664 0.4040 +3301 56339 0.5110 +3301 56521 0.4680 +3301 57110 0.4480 +3301 57129 0.4140 +3301 57407 0.4160 +3301 57819 0.6020 +3301 60412 0.4850 +3301 63875 0.4080 +3301 64374 0.5160 +3301 64983 0.4010 +3301 79139 0.5060 +3301 79968 0.5540 +3301 80273 0.6900 +3301 80331 0.4040 +3301 81570 0.7420 +3301 84295 0.4470 +3301 84991 0.4250 +3301 96459 0.4910 +3301 114883 0.6110 +3301 114885 0.4480 +3301 116835 0.5560 +3301 118461 0.4480 +3301 120526 0.4580 +3301 120892 0.6630 +3301 126393 0.4650 +3301 131118 0.4270 +3301 134266 0.5480 +3301 143689 0.5490 +3301 203068 0.5160 +3301 259217 0.5270 +3301 339416 0.5550 +3301 347733 0.4840 +3301 374407 0.5710 +3301 388633 0.4480 +3303 3304 0.9940 +3303 3305 0.7050 +3303 3306 0.5480 +3303 3308 0.8660 +3303 3309 0.8090 +3303 3310 0.8240 +3303 3312 0.9390 +3303 3313 0.8070 +3303 3315 0.9770 +3303 3316 0.7990 +3303 3320 0.9800 +3303 3326 0.9690 +3303 3329 0.6650 +3303 3336 0.8140 +3303 3337 0.9890 +3303 3486 0.4640 +3303 3488 0.4700 +3303 3551 0.4520 +3303 3576 0.5890 +3303 3579 0.4250 +3303 3688 0.4470 +3303 3725 0.4690 +3303 3728 0.4320 +3303 3757 0.4290 +3303 3818 0.4350 +3303 3875 0.4980 +3303 3921 0.5060 +3303 4015 0.4220 +3303 4189 0.8070 +3303 4306 0.5590 +3303 4609 0.5430 +3303 4627 0.5340 +3303 4670 0.4660 +3303 4792 0.6860 +3303 4904 0.9850 +3303 4927 0.4170 +3303 4928 0.4540 +3303 5034 0.4690 +3303 5052 0.6330 +3303 5054 0.4270 +3303 5223 0.6420 +3303 5241 0.5840 +3303 5245 0.4990 +3303 5467 0.4330 +3303 5469 0.4370 +3303 5481 0.5280 +3303 5507 0.4290 +3303 5563 0.4370 +3303 5605 0.4060 +3303 5611 0.5470 +3303 5725 0.4780 +3303 5728 0.4590 +3303 5868 0.4420 +3303 5903 0.5080 +3303 5966 0.4550 +3303 6122 0.4350 +3303 6123 0.4350 +3303 6124 0.4300 +3303 6125 0.4260 +3303 6132 0.4320 +3303 6133 0.4370 +3303 6135 0.4490 +3303 6141 0.4360 +3303 6147 0.4080 +3303 6175 0.5110 +3303 6187 0.5240 +3303 6188 0.4870 +3303 6189 0.4650 +3303 6193 0.4300 +3303 6194 0.4150 +3303 6198 0.4400 +3303 6202 0.4150 +3303 6203 0.4200 +3303 6209 0.4690 +3303 6217 0.4140 +3303 6222 0.4430 +3303 6223 0.4190 +3303 6224 0.5130 +3303 6233 0.7120 +3303 6234 0.4100 +3303 6239 0.4430 +3303 6280 0.4830 +3303 6283 0.4020 +3303 6310 0.4590 +3303 6314 0.5060 +3303 6396 0.4520 +3303 6597 0.4420 +3303 6647 0.4400 +3303 6767 0.5870 +3303 6782 0.5660 +3303 6794 0.4230 +3303 6908 0.5920 +3303 6950 0.5700 +3303 7015 0.4690 +3303 7056 0.4750 +3303 7097 0.5760 +3303 7099 0.5740 +3303 7124 0.6960 +3303 7157 0.7540 +3303 7175 0.4240 +3303 7184 0.7330 +3303 7203 0.5370 +3303 7248 0.5520 +3303 7266 0.7710 +3303 7280 0.4150 +3303 7295 0.5740 +3303 7311 0.6840 +3303 7314 0.6690 +3303 7316 0.6540 +3303 7321 0.4170 +3303 7371 0.4510 +3303 7407 0.4260 +3303 7415 0.5840 +3303 7417 0.5430 +3303 7494 0.5900 +3303 7531 0.5640 +3303 7534 0.6740 +3303 7957 0.4580 +3303 8021 0.4370 +3303 8192 0.4440 +3303 8202 0.4090 +3303 8480 0.4360 +3303 8974 0.4670 +3303 8988 0.7710 +3303 8993 0.4010 +3303 9040 0.4190 +3303 9093 0.8810 +3303 9343 0.5250 +3303 9349 0.4320 +3303 9352 0.4590 +3303 9360 0.5060 +3303 9361 0.4030 +3303 9529 0.9560 +3303 9530 0.5830 +3303 9531 0.7900 +3303 9532 0.7760 +3303 9631 0.4140 +3303 9688 0.4700 +3303 9818 0.4050 +3303 9883 0.4380 +3303 9943 0.4570 +3303 9972 0.4370 +3303 10002 0.4250 +3303 10049 0.9230 +3303 10097 0.4360 +3303 10131 0.5970 +3303 10273 0.7850 +3303 10294 0.8810 +3303 10363 0.6390 +3303 10399 0.5550 +3303 10469 0.5550 +3303 10574 0.5570 +3303 10575 0.4960 +3303 10576 0.5790 +3303 10598 0.5290 +3303 10614 0.4080 +3303 10693 0.4650 +3303 10728 0.8160 +3303 10762 0.4100 +3303 10808 0.8650 +3303 10963 0.9270 +3303 11080 0.9410 +3303 11097 0.4420 +3303 11124 0.9010 +3303 11266 0.6070 +3303 22824 0.7430 +3303 22948 0.5050 +3303 23162 0.4480 +3303 23165 0.4260 +3303 23225 0.4200 +3303 23234 0.4910 +3303 23279 0.4080 +3303 23341 0.4860 +3303 23411 0.6930 +3303 23479 0.5230 +3303 23521 0.4410 +3303 23636 0.4190 +3303 23640 0.9690 +3303 23643 0.4380 +3303 23645 0.4250 +3303 25813 0.5100 +3303 25822 0.7440 +3303 25828 0.5490 +3303 26278 0.5520 +3303 26353 0.6940 +3303 26354 0.4670 +3303 26986 0.8650 +3303 27000 0.8060 +3303 27247 0.5160 +3303 51182 0.5770 +3303 51314 0.4300 +3303 51501 0.5870 +3303 51726 0.8150 +3303 53371 0.4430 +3303 54431 0.6180 +3303 54788 0.6290 +3303 54927 0.4300 +3303 55466 0.9180 +3303 55664 0.5580 +3303 55735 0.4850 +3303 55746 0.4260 +3303 55758 0.5330 +3303 56990 0.4200 +3303 57122 0.4520 +3303 57664 0.4290 +3303 57805 0.4990 +3303 64374 0.4870 +3303 79023 0.4450 +3303 79094 0.5100 +3303 79902 0.4200 +3303 79962 0.4200 +3303 79982 0.5860 +3303 80273 0.8550 +3303 80331 0.6470 +3303 81570 0.7290 +3303 81631 0.4050 +3303 81929 0.4010 +3303 83983 0.4570 +3303 84557 0.4440 +3303 85479 0.6530 +3303 96459 0.5220 +3303 112885 0.6530 +3303 113444 0.4330 +3303 116835 0.9010 +3303 120526 0.4780 +3303 126393 0.4390 +3303 127002 0.4050 +3303 134266 0.6300 +3303 135138 0.4690 +3303 136332 0.4400 +3303 136371 0.4730 +3303 140432 0.4200 +3303 150353 0.6720 +3303 165721 0.7240 +3303 166614 0.4080 +3303 171425 0.4200 +3303 202052 0.6110 +3303 203068 0.4320 +3303 222255 0.4050 +3303 259217 0.8980 +3303 285126 0.5340 +3303 285282 0.4200 +3303 345630 0.4350 +3303 348995 0.4260 +3303 374407 0.6830 +3303 378884 0.4680 +3303 441531 0.5860 +3303 548645 0.4400 +3303 552891 0.4260 +3303 728378 0.5940 +3303 100101267 0.4380 +3303 114108587 0.5330 +3304 3305 0.8790 +3304 3306 0.8730 +3304 3308 0.9390 +3304 3309 0.8820 +3304 3310 0.9590 +3304 3312 0.9470 +3304 3313 0.8020 +3304 3315 0.9390 +3304 3316 0.9000 +3304 3320 0.9980 +3304 3326 0.9910 +3304 3329 0.8460 +3304 3336 0.8450 +3304 3337 0.9980 +3304 3396 0.4150 +3304 3486 0.4610 +3304 3488 0.4500 +3304 3553 0.4920 +3304 3569 0.5520 +3304 3576 0.6450 +3304 3579 0.4340 +3304 3586 0.4230 +3304 3630 0.5630 +3304 3659 0.4090 +3304 3688 0.4670 +3304 3725 0.5880 +3304 3728 0.4180 +3304 3757 0.5950 +3304 3818 0.4230 +3304 3875 0.5080 +3304 3921 0.5100 +3304 4015 0.5960 +3304 4035 0.5790 +3304 4116 0.5090 +3304 4137 0.8100 +3304 4170 0.4790 +3304 4189 0.8140 +3304 4217 0.4440 +3304 4306 0.5800 +3304 4609 0.6400 +3304 4627 0.6160 +3304 4670 0.4680 +3304 4790 0.4940 +3304 4792 0.6010 +3304 4799 0.5600 +3304 4830 0.4050 +3304 4904 0.9910 +3304 4927 0.4100 +3304 4928 0.4630 +3304 4948 0.4030 +3304 5034 0.4710 +3304 5036 0.4230 +3304 5052 0.6610 +3304 5054 0.4340 +3304 5071 0.7680 +3304 5223 0.6530 +3304 5241 0.6980 +3304 5245 0.6530 +3304 5315 0.4960 +3304 5340 0.4450 +3304 5347 0.4190 +3304 5467 0.4720 +3304 5478 0.4930 +3304 5481 0.6650 +3304 5507 0.4070 +3304 5563 0.4180 +3304 5595 0.4670 +3304 5599 0.9250 +3304 5601 0.9170 +3304 5604 0.6180 +3304 5605 0.5210 +3304 5611 0.5580 +3304 5705 0.4340 +3304 5725 0.4790 +3304 5728 0.5200 +3304 5829 0.6700 +3304 5868 0.4520 +3304 5886 0.4350 +3304 5894 0.4070 +3304 5903 0.5080 +3304 5970 0.5090 +3304 6122 0.4350 +3304 6123 0.4350 +3304 6124 0.4370 +3304 6125 0.4110 +3304 6128 0.4010 +3304 6132 0.4240 +3304 6133 0.4240 +3304 6135 0.4460 +3304 6141 0.4380 +3304 6147 0.4070 +3304 6175 0.5100 +3304 6187 0.5130 +3304 6188 0.4870 +3304 6189 0.4800 +3304 6193 0.4320 +3304 6194 0.4370 +3304 6198 0.5110 +3304 6202 0.4070 +3304 6203 0.5710 +3304 6209 0.4630 +3304 6217 0.4210 +3304 6222 0.4570 +3304 6223 0.4270 +3304 6224 0.5030 +3304 6233 0.4430 +3304 6234 0.4010 +3304 6239 0.4370 +3304 6280 0.4920 +3304 6310 0.4730 +3304 6314 0.4860 +3304 6396 0.4520 +3304 6449 0.4290 +3304 6464 0.4070 +3304 6597 0.4450 +3304 6613 0.6260 +3304 6622 0.7580 +3304 6647 0.4530 +3304 6648 0.4580 +3304 6662 0.4290 +3304 6767 0.8380 +3304 6774 0.6160 +3304 6782 0.5660 +3304 6794 0.5130 +3304 6908 0.4640 +3304 6932 0.4500 +3304 6950 0.5740 +3304 7015 0.6160 +3304 7056 0.4620 +3304 7097 0.9980 +3304 7099 0.9410 +3304 7124 0.7730 +3304 7157 0.9710 +3304 7158 0.4670 +3304 7175 0.4240 +3304 7184 0.7980 +3304 7203 0.5400 +3304 7248 0.5650 +3304 7266 0.9390 +3304 7277 0.4140 +3304 7280 0.4170 +3304 7295 0.6270 +3304 7321 0.4280 +3304 7337 0.5540 +3304 7341 0.4840 +3304 7371 0.4370 +3304 7407 0.4110 +3304 7415 0.6390 +3304 7417 0.5440 +3304 7494 0.6370 +3304 7531 0.6130 +3304 7534 0.6730 +3304 7837 0.4100 +3304 7957 0.4580 +3304 7965 0.4870 +3304 8021 0.4280 +3304 8192 0.4500 +3304 8202 0.4060 +3304 8237 0.5310 +3304 8266 0.4050 +3304 8352 0.4360 +3304 8353 0.4340 +3304 8361 0.6130 +3304 8445 0.4130 +3304 8480 0.4450 +3304 8517 0.4890 +3304 8678 0.4560 +3304 8878 0.4310 +3304 8974 0.4770 +3304 8988 0.8900 +3304 8993 0.4090 +3304 9040 0.5890 +3304 9093 0.9130 +3304 9100 0.4280 +3304 9131 0.6450 +3304 9343 0.5540 +3304 9349 0.4270 +3304 9352 0.4400 +3304 9360 0.5150 +3304 9361 0.4180 +3304 9370 0.4190 +3304 9401 0.5330 +3304 9529 0.9910 +3304 9530 0.7980 +3304 9531 0.9830 +3304 9532 0.9140 +3304 9631 0.4040 +3304 9688 0.4630 +3304 9782 0.4690 +3304 9793 0.5030 +3304 9818 0.4090 +3304 9868 0.5030 +3304 9883 0.4380 +3304 9943 0.5000 +3304 9972 0.4440 +3304 10002 0.4180 +3304 10049 0.9760 +3304 10097 0.4360 +3304 10131 0.6360 +3304 10213 0.8000 +3304 10225 0.4150 +3304 10273 0.9790 +3304 10294 0.9580 +3304 10363 0.6350 +3304 10399 0.5670 +3304 10460 0.5220 +3304 10469 0.5590 +3304 10574 0.5540 +3304 10575 0.4890 +3304 10576 0.5740 +3304 10598 0.6980 +3304 10614 0.4020 +3304 10628 0.5450 +3304 10693 0.4550 +3304 10728 0.7940 +3304 10762 0.4140 +3304 10808 0.9530 +3304 10844 0.4330 +3304 10915 0.4470 +3304 10963 0.9810 +3304 10985 0.4930 +3304 10987 0.4060 +3304 11080 0.9760 +3304 11097 0.4420 +3304 11124 0.9220 +3304 11140 0.7050 +3304 11155 0.4850 +3304 11266 0.5980 +3304 22824 0.7490 +3304 22948 0.5170 +3304 23162 0.4420 +3304 23165 0.4260 +3304 23166 0.4240 +3304 23186 0.4330 +3304 23225 0.4200 +3304 23234 0.4950 +3304 23279 0.4080 +3304 23341 0.6600 +3304 23411 0.7290 +3304 23479 0.5230 +3304 23521 0.4440 +3304 23636 0.4180 +3304 23640 0.9950 +3304 23643 0.4870 +3304 23645 0.4550 +3304 25813 0.5010 +3304 25822 0.8970 +3304 25828 0.5470 +3304 26278 0.5460 +3304 26353 0.7160 +3304 26354 0.4550 +3304 27000 0.8030 +3304 27161 0.4200 +3304 27247 0.5150 +3304 29920 0.4080 +3304 29978 0.5040 +3304 30968 0.5970 +3304 50943 0.4710 +3304 51141 0.5370 +3304 51182 0.5780 +3304 51314 0.4300 +3304 51501 0.7150 +3304 51726 0.8610 +3304 53371 0.4430 +3304 54205 0.4380 +3304 54431 0.6220 +3304 54788 0.7670 +3304 54861 0.4010 +3304 54927 0.4280 +3304 55363 0.4740 +3304 55466 0.9640 +3304 55664 0.6640 +3304 55735 0.6090 +3304 55746 0.4260 +3304 55758 0.5220 +3304 56339 0.4350 +3304 56521 0.5120 +3304 56990 0.4200 +3304 57122 0.4520 +3304 57664 0.5730 +3304 57721 0.4500 +3304 57805 0.4990 +3304 64374 0.5030 +3304 65018 0.4330 +3304 79023 0.4450 +3304 79094 0.4960 +3304 79820 0.5490 +3304 79902 0.4200 +3304 79962 0.4200 +3304 79968 0.5400 +3304 79982 0.7330 +3304 80273 0.8530 +3304 80331 0.8770 +3304 81570 0.7670 +3304 81631 0.5290 +3304 81929 0.4010 +3304 83932 0.5100 +3304 83983 0.5980 +3304 84557 0.5040 +3304 85479 0.8120 +3304 96459 0.5650 +3304 112885 0.6420 +3304 113444 0.4330 +3304 115752 0.6510 +3304 116835 0.8980 +3304 117144 0.5090 +3304 120526 0.4790 +3304 120892 0.5690 +3304 126393 0.5550 +3304 127002 0.4010 +3304 134266 0.6340 +3304 135138 0.4690 +3304 136332 0.4400 +3304 136371 0.5500 +3304 137902 0.4040 +3304 140432 0.4200 +3304 150353 0.7580 +3304 151194 0.4060 +3304 165721 0.8950 +3304 166614 0.4090 +3304 171425 0.4200 +3304 202052 0.6070 +3304 203068 0.4880 +3304 222255 0.4010 +3304 259217 0.8970 +3304 285126 0.5160 +3304 285282 0.4200 +3304 345630 0.4250 +3304 348995 0.4260 +3304 374407 0.6810 +3304 378884 0.4410 +3304 441531 0.5860 +3304 548645 0.4450 +3304 552891 0.4260 +3304 653604 0.4540 +3304 728378 0.5830 +3304 100101267 0.4380 +3304 114108587 0.5220 +3305 3306 0.5330 +3305 3308 0.8700 +3305 3309 0.8470 +3305 3310 0.8170 +3305 3312 0.7530 +3305 3313 0.7550 +3305 3315 0.6470 +3305 3316 0.5780 +3305 3320 0.9960 +3305 3326 0.9240 +3305 3329 0.5770 +3305 3336 0.7680 +3305 3337 0.9690 +3305 3338 0.4070 +3305 3551 0.4080 +3305 3753 0.4460 +3305 3811 0.4380 +3305 3839 0.4720 +3305 3921 0.4790 +3305 4189 0.7570 +3305 4214 0.6610 +3305 4306 0.5520 +3305 4775 0.4050 +3305 4790 0.5490 +3305 4792 0.4340 +3305 4793 0.5060 +3305 4928 0.4440 +3305 4973 0.4200 +3305 5241 0.5560 +3305 5358 0.4340 +3305 5501 0.4520 +3305 5599 0.9040 +3305 5601 0.9060 +3305 5611 0.7240 +3305 5868 0.4390 +3305 5903 0.5990 +3305 5966 0.4550 +3305 5970 0.6600 +3305 6122 0.5310 +3305 6123 0.4360 +3305 6124 0.4130 +3305 6125 0.4110 +3305 6128 0.4120 +3305 6135 0.4220 +3305 6141 0.4010 +3305 6147 0.4070 +3305 6175 0.4630 +3305 6187 0.4970 +3305 6188 0.4740 +3305 6189 0.4730 +3305 6193 0.4100 +3305 6203 0.4200 +3305 6207 0.4110 +3305 6209 0.4630 +3305 6222 0.4720 +3305 6224 0.4910 +3305 6234 0.4010 +3305 6396 0.4520 +3305 6480 0.5620 +3305 6556 0.4980 +3305 6647 0.5410 +3305 6767 0.6260 +3305 6782 0.5680 +3305 6885 0.6590 +3305 6950 0.6600 +3305 7097 0.9100 +3305 7124 0.5080 +3305 7126 0.4800 +3305 7157 0.8260 +3305 7175 0.4240 +3305 7178 0.4100 +3305 7184 0.7900 +3305 7186 0.6300 +3305 7203 0.6720 +3305 7248 0.5510 +3305 7266 0.9140 +3305 8021 0.5370 +3305 8079 0.4980 +3305 8192 0.5740 +3305 8237 0.5500 +3305 8266 0.4050 +3305 8480 0.4360 +3305 8672 0.5940 +3305 8988 0.5520 +3305 9093 0.7930 +3305 9343 0.5440 +3305 9349 0.4720 +3305 9529 0.7750 +3305 9530 0.7750 +3305 9531 0.8610 +3305 9532 0.5710 +3305 9631 0.4040 +3305 9688 0.4760 +3305 9818 0.4050 +3305 9868 0.4190 +3305 9883 0.4380 +3305 9972 0.4360 +3305 10049 0.8850 +3305 10059 0.4040 +3305 10131 0.6010 +3305 10273 0.8300 +3305 10294 0.9280 +3305 10399 0.4100 +3305 10454 0.6610 +3305 10574 0.4800 +3305 10575 0.6530 +3305 10576 0.6600 +3305 10598 0.4720 +3305 10693 0.4330 +3305 10694 0.5400 +3305 10728 0.6730 +3305 10762 0.4100 +3305 10808 0.8270 +3305 10963 0.9950 +3305 11055 0.4590 +3305 11080 0.9380 +3305 11097 0.4420 +3305 22824 0.7430 +3305 22948 0.5040 +3305 23165 0.4260 +3305 23225 0.4200 +3305 23234 0.5180 +3305 23279 0.4080 +3305 23341 0.4960 +3305 23411 0.5830 +3305 23479 0.5240 +3305 23636 0.4070 +3305 23640 0.6410 +3305 23770 0.4990 +3305 25822 0.8140 +3305 26330 0.5390 +3305 26353 0.6390 +3305 27000 0.8120 +3305 27129 0.4340 +3305 51135 0.4250 +3305 51182 0.5720 +3305 51314 0.4300 +3305 51501 0.5870 +3305 51726 0.7970 +3305 53371 0.4430 +3305 54431 0.6060 +3305 54543 0.4290 +3305 54788 0.8010 +3305 55466 0.8950 +3305 55735 0.5450 +3305 55746 0.4370 +3305 56244 0.6120 +3305 56521 0.4260 +3305 56990 0.4200 +3305 57122 0.4520 +3305 57805 0.5640 +3305 64374 0.4550 +3305 79023 0.4450 +3305 79902 0.4360 +3305 79962 0.4960 +3305 79982 0.7410 +3305 80267 0.4840 +3305 80273 0.5880 +3305 80331 0.7880 +3305 81570 0.6950 +3305 81929 0.4010 +3305 84865 0.4240 +3305 85479 0.8060 +3305 90993 0.4070 +3305 96459 0.5220 +3305 113444 0.4330 +3305 116835 0.7530 +3305 116987 0.4240 +3305 120526 0.4920 +3305 124626 0.4670 +3305 134266 0.5880 +3305 136332 0.4400 +3305 140432 0.4200 +3305 150353 0.6760 +3305 165721 0.7590 +3305 171425 0.4200 +3305 202052 0.6000 +3305 221527 0.4230 +3305 253980 0.4150 +3305 259217 0.7700 +3305 283514 0.5700 +3305 285126 0.4540 +3305 285282 0.4200 +3305 348995 0.4260 +3305 374407 0.7240 +3305 548645 0.5500 +3305 552891 0.4260 +3305 100101267 0.5020 +3306 3308 0.8040 +3306 3309 0.6740 +3306 3310 0.5990 +3306 3312 0.8840 +3306 3313 0.7790 +3306 3315 0.4890 +3306 3316 0.4040 +3306 3320 0.8960 +3306 3326 0.8990 +3306 3329 0.5910 +3306 3336 0.6180 +3306 3337 0.9670 +3306 3611 0.4460 +3306 3856 0.4090 +3306 3921 0.4930 +3306 4000 0.5630 +3306 4001 0.5350 +3306 4189 0.7360 +3306 4306 0.5600 +3306 4927 0.4050 +3306 4928 0.4490 +3306 4973 0.4760 +3306 5142 0.5520 +3306 5144 0.5520 +3306 5241 0.5520 +3306 5478 0.4460 +3306 5481 0.5430 +3306 5501 0.4500 +3306 5599 0.9060 +3306 5601 0.9050 +3306 5611 0.4400 +3306 5625 0.4620 +3306 5885 0.5530 +3306 5903 0.5120 +3306 6122 0.4370 +3306 6123 0.4350 +3306 6124 0.4510 +3306 6125 0.4300 +3306 6132 0.4010 +3306 6135 0.4300 +3306 6141 0.4050 +3306 6147 0.4090 +3306 6154 0.4010 +3306 6175 0.4790 +3306 6187 0.5000 +3306 6188 0.4520 +3306 6189 0.4680 +3306 6193 0.4110 +3306 6203 0.4210 +3306 6209 0.4670 +3306 6222 0.4310 +3306 6224 0.5370 +3306 6233 0.4180 +3306 6234 0.4060 +3306 6261 0.7360 +3306 6271 0.4480 +3306 6396 0.4600 +3306 6609 0.4260 +3306 6674 0.4030 +3306 6677 0.7610 +3306 6767 0.5790 +3306 6782 0.5590 +3306 6847 0.5920 +3306 6950 0.5160 +3306 7013 0.5120 +3306 7014 0.5260 +3306 7097 0.9090 +3306 7175 0.4320 +3306 7184 0.6490 +3306 7203 0.5240 +3306 7248 0.5580 +3306 7266 0.8610 +3306 7314 0.4750 +3306 7316 0.4750 +3306 7329 0.8190 +3306 8021 0.4350 +3306 8079 0.4920 +3306 8086 0.4050 +3306 8192 0.4230 +3306 8243 0.5680 +3306 8266 0.4100 +3306 8290 0.5570 +3306 8331 0.5300 +3306 8334 0.5330 +3306 8337 0.5510 +3306 8338 0.5420 +3306 8340 0.5230 +3306 8341 0.5230 +3306 8342 0.5230 +3306 8345 0.5240 +3306 8347 0.5240 +3306 8348 0.5250 +3306 8349 0.5330 +3306 8361 0.5710 +3306 8468 0.8220 +3306 8480 0.4410 +3306 8912 0.7250 +3306 8913 0.5610 +3306 8970 0.5230 +3306 9093 0.6680 +3306 9126 0.5440 +3306 9254 0.5580 +3306 9349 0.4290 +3306 9529 0.8930 +3306 9530 0.6880 +3306 9531 0.8500 +3306 9532 0.6420 +3306 9631 0.4030 +3306 9688 0.4670 +3306 9781 0.4860 +3306 9818 0.4100 +3306 9868 0.6470 +3306 9883 0.4380 +3306 9972 0.4430 +3306 9985 0.5510 +3306 10049 0.9140 +3306 10130 0.5170 +3306 10131 0.5590 +3306 10273 0.9010 +3306 10274 0.5060 +3306 10294 0.9190 +3306 10368 0.7340 +3306 10369 0.7200 +3306 10388 0.5080 +3306 10399 0.4060 +3306 10469 0.6990 +3306 10475 0.5980 +3306 10574 0.5010 +3306 10575 0.4810 +3306 10576 0.4440 +3306 10598 0.4440 +3306 10693 0.4970 +3306 10694 0.4070 +3306 10728 0.6440 +3306 10734 0.4990 +3306 10735 0.5040 +3306 10762 0.4140 +3306 10808 0.9050 +3306 10963 0.8620 +3306 11080 0.8400 +3306 11083 0.8030 +3306 11097 0.4470 +3306 11140 0.5480 +3306 22824 0.7790 +3306 22948 0.6370 +3306 23165 0.4310 +3306 23224 0.5380 +3306 23225 0.4230 +3306 23234 0.5890 +3306 23279 0.4130 +3306 23341 0.6210 +3306 23345 0.5410 +3306 23353 0.5180 +3306 23411 0.5550 +3306 23479 0.5270 +3306 23511 0.4010 +3306 23636 0.4110 +3306 23640 0.8820 +3306 23770 0.5560 +3306 25777 0.5150 +3306 25822 0.8410 +3306 25858 0.7500 +3306 25913 0.5050 +3306 26277 0.5330 +3306 27000 0.7830 +3306 27092 0.7200 +3306 27127 0.5710 +3306 50511 0.6050 +3306 51121 0.4070 +3306 51182 0.5750 +3306 51314 0.4300 +3306 51501 0.5930 +3306 51726 0.5990 +3306 53371 0.4470 +3306 54145 0.5230 +3306 54386 0.5350 +3306 54431 0.5830 +3306 54788 0.9010 +3306 55466 0.8740 +3306 55735 0.4210 +3306 55746 0.4300 +3306 55766 0.5310 +3306 55799 0.5480 +3306 56158 0.5650 +3306 56257 0.4250 +3306 56990 0.4220 +3306 57122 0.4570 +3306 57685 0.5400 +3306 57805 0.5040 +3306 57828 0.7240 +3306 59283 0.7440 +3306 59284 0.7550 +3306 59285 0.7200 +3306 64374 0.4680 +3306 79023 0.4530 +3306 79820 0.9520 +3306 79902 0.4240 +3306 79962 0.4200 +3306 79982 0.8970 +3306 80196 0.5500 +3306 80273 0.8070 +3306 80331 0.7390 +3306 81570 0.7100 +3306 81626 0.4950 +3306 81929 0.4060 +3306 83942 0.6060 +3306 84108 0.5190 +3306 85236 0.5270 +3306 85479 0.7600 +3306 91582 0.4050 +3306 93426 0.5450 +3306 93589 0.7200 +3306 94239 0.5310 +3306 96459 0.5220 +3306 113444 0.4330 +3306 116236 0.4050 +3306 116835 0.6880 +3306 117144 0.9280 +3306 117155 0.7200 +3306 120526 0.4330 +3306 126393 0.4310 +3306 128312 0.5230 +3306 129401 0.4070 +3306 134266 0.5880 +3306 136332 0.4400 +3306 140432 0.4200 +3306 146212 0.5720 +3306 150353 0.6430 +3306 165721 0.7710 +3306 171425 0.4200 +3306 202052 0.7590 +3306 246329 0.7230 +3306 255626 0.5230 +3306 256126 0.5180 +3306 257044 0.7310 +3306 257062 0.7310 +3306 259217 0.6870 +3306 285126 0.4330 +3306 285282 0.4250 +3306 285588 0.7510 +3306 340393 0.7200 +3306 347732 0.7410 +3306 348995 0.4350 +3306 374407 0.6990 +3306 378807 0.7500 +3306 474382 0.5300 +3306 548645 0.4200 +3306 552891 0.4200 +3306 644186 0.4990 +3306 100101267 0.4450 +3306 100130348 0.7200 +3308 3309 0.9150 +3308 3310 0.9250 +3308 3312 0.9990 +3308 3313 0.9550 +3308 3315 0.9920 +3308 3316 0.9880 +3308 3320 0.9990 +3308 3326 0.9990 +3308 3329 0.9240 +3308 3336 0.9300 +3308 3337 0.9990 +3308 3347 0.6710 +3308 3375 0.5150 +3308 3383 0.6320 +3308 3458 0.5850 +3308 3479 0.4790 +3308 3480 0.4060 +3308 3486 0.4730 +3308 3551 0.6130 +3308 3552 0.4560 +3308 3553 0.7760 +3308 3558 0.5160 +3308 3565 0.4370 +3308 3569 0.7900 +3308 3576 0.6810 +3308 3586 0.6770 +3308 3611 0.5350 +3308 3627 0.5540 +3308 3630 0.5420 +3308 3654 0.5190 +3308 3661 0.5790 +3308 3678 0.4030 +3308 3683 0.4550 +3308 3684 0.5770 +3308 3688 0.5520 +3308 3689 0.5210 +3308 3690 0.4160 +3308 3692 0.4170 +3308 3693 0.4200 +3308 3695 0.4090 +3308 3725 0.7650 +3308 3732 0.5120 +3308 3735 0.5120 +3308 3757 0.8740 +3308 3784 0.4070 +3308 3791 0.6040 +3308 3821 0.5140 +3308 3824 0.9350 +3308 3836 0.4390 +3308 3837 0.5760 +3308 3840 0.4230 +3308 3845 0.5970 +3308 3856 0.4760 +3308 3875 0.4870 +3308 3880 0.5590 +3308 3916 0.6430 +3308 3920 0.7900 +3308 3921 0.7160 +3308 3960 0.6600 +3308 4015 0.5800 +3308 4035 0.9910 +3308 4057 0.5430 +3308 4067 0.4590 +3308 4087 0.4910 +3308 4088 0.6860 +3308 4100 0.8910 +3308 4137 0.9570 +3308 4141 0.4670 +3308 4144 0.4180 +3308 4155 0.7030 +3308 4170 0.7200 +3308 4189 0.8050 +3308 4193 0.8730 +3308 4199 0.5700 +3308 4217 0.5580 +3308 4233 0.5370 +3308 4287 0.5620 +3308 4299 0.4340 +3308 4311 0.4560 +3308 4313 0.6360 +3308 4316 0.7130 +3308 4318 0.4810 +3308 4478 0.4500 +3308 4493 0.5600 +3308 4512 0.4410 +3308 4519 0.4240 +3308 4594 0.5200 +3308 4609 0.8390 +3308 4627 0.5470 +3308 4644 0.4880 +3308 4653 0.4100 +3308 4684 0.5490 +3308 4690 0.4800 +3308 4691 0.8280 +3308 4724 0.4620 +3308 4738 0.6110 +3308 4763 0.4860 +3308 4780 0.4820 +3308 4790 0.8570 +3308 4792 0.6200 +3308 4803 0.4330 +3308 4830 0.4280 +3308 4831 0.5800 +3308 4841 0.4500 +3308 4842 0.5100 +3308 4843 0.4480 +3308 4846 0.4380 +3308 4851 0.7120 +3308 4864 0.5130 +3308 4869 0.8570 +3308 4904 0.4100 +3308 4914 0.4760 +3308 4927 0.6570 +3308 4928 0.5510 +3308 4968 0.4650 +3308 4973 0.9800 +3308 5018 0.4050 +3308 5027 0.4750 +3308 5029 0.4790 +3308 5034 0.8480 +3308 5036 0.7630 +3308 5052 0.5290 +3308 5071 0.9710 +3308 5202 0.4980 +3308 5204 0.6620 +3308 5216 0.6110 +3308 5223 0.4080 +3308 5230 0.5360 +3308 5232 0.4030 +3308 5241 0.9720 +3308 5245 0.7570 +3308 5252 0.4370 +3308 5265 0.5670 +3308 5290 0.4760 +3308 5295 0.4690 +3308 5327 0.5310 +3308 5340 0.5770 +3308 5347 0.5140 +3308 5464 0.4060 +3308 5468 0.4330 +3308 5478 0.6490 +3308 5481 0.9770 +3308 5499 0.4230 +3308 5501 0.5630 +3308 5515 0.4190 +3308 5536 0.8010 +3308 5566 0.6060 +3308 5567 0.4480 +3308 5568 0.4490 +3308 5579 0.5100 +3308 5594 0.6850 +3308 5595 0.6120 +3308 5597 0.5910 +3308 5599 0.4370 +3308 5600 0.4420 +3308 5603 0.4240 +3308 5604 0.6470 +3308 5610 0.6510 +3308 5611 0.9160 +3308 5621 0.8330 +3308 5654 0.5090 +3308 5682 0.5420 +3308 5683 0.5790 +3308 5684 0.6090 +3308 5685 0.5300 +3308 5686 0.5810 +3308 5687 0.5210 +3308 5688 0.6790 +3308 5690 0.4010 +3308 5695 0.4320 +3308 5701 0.7000 +3308 5705 0.5840 +3308 5707 0.6780 +3308 5708 0.5800 +3308 5710 0.7030 +3308 5713 0.4110 +3308 5716 0.4370 +3308 5717 0.5580 +3308 5718 0.4570 +3308 5728 0.6540 +3308 5743 0.5910 +3308 5824 0.4930 +3308 5832 0.4980 +3308 5868 0.4180 +3308 5873 0.6060 +3308 5879 0.4970 +3308 5887 0.4400 +3308 5893 0.6230 +3308 5894 0.8670 +3308 5901 0.5090 +3308 5903 0.6070 +3308 5930 0.6000 +3308 5956 0.4480 +3308 5966 0.5110 +3308 5970 0.6960 +3308 5979 0.4240 +3308 6010 0.4870 +3308 6048 0.5090 +3308 6059 0.4680 +3308 6122 0.5390 +3308 6124 0.7280 +3308 6125 0.5110 +3308 6128 0.5230 +3308 6129 0.4370 +3308 6132 0.5200 +3308 6133 0.4690 +3308 6135 0.5820 +3308 6136 0.5480 +3308 6137 0.6530 +3308 6138 0.4690 +3308 6141 0.4840 +3308 6142 0.4270 +3308 6146 0.5560 +3308 6147 0.4620 +3308 6154 0.4620 +3308 6155 0.5280 +3308 6156 0.4480 +3308 6157 0.4500 +3308 6158 0.4100 +3308 6160 0.5630 +3308 6161 0.4490 +3308 6164 0.4650 +3308 6165 0.4490 +3308 6175 0.5800 +3308 6181 0.4600 +3308 6187 0.6260 +3308 6188 0.7320 +3308 6189 0.5650 +3308 6191 0.4500 +3308 6193 0.4120 +3308 6194 0.5510 +3308 6198 0.4470 +3308 6201 0.4100 +3308 6202 0.6240 +3308 6203 0.5470 +3308 6205 0.4320 +3308 6207 0.4620 +3308 6208 0.4040 +3308 6209 0.4300 +3308 6217 0.5480 +3308 6222 0.5140 +3308 6223 0.4930 +3308 6224 0.6470 +3308 6228 0.4280 +3308 6229 0.4030 +3308 6231 0.4500 +3308 6233 0.4330 +3308 6234 0.4440 +3308 6241 0.4460 +3308 6271 0.6320 +3308 6285 0.6360 +3308 6300 0.4220 +3308 6310 0.7330 +3308 6311 0.5320 +3308 6314 0.5160 +3308 6347 0.4470 +3308 6382 0.5420 +3308 6386 0.6360 +3308 6390 0.4370 +3308 6391 0.4040 +3308 6396 0.6070 +3308 6400 0.4250 +3308 6426 0.4650 +3308 6446 0.5900 +3308 6449 0.9880 +3308 6490 0.5560 +3308 6500 0.7250 +3308 6502 0.4070 +3308 6506 0.5410 +3308 6531 0.5400 +3308 6548 0.7590 +3308 6576 0.6310 +3308 6609 0.5890 +3308 6622 0.9940 +3308 6624 0.4780 +3308 6626 0.4050 +3308 6635 0.4450 +3308 6647 0.9630 +3308 6648 0.5820 +3308 6662 0.6260 +3308 6672 0.9870 +3308 6714 0.8580 +3308 6717 0.4700 +3308 6729 0.4730 +3308 6732 0.7870 +3308 6737 0.5930 +3308 6738 0.5650 +3308 6741 0.4160 +3308 6767 0.9970 +3308 6772 0.6100 +3308 6773 0.4710 +3308 6774 0.6880 +3308 6782 0.7580 +3308 6790 0.6300 +3308 6840 0.4030 +3308 6863 0.4990 +3308 6908 0.4450 +3308 6921 0.5770 +3308 6950 0.8880 +3308 7001 0.4880 +3308 7010 0.4460 +3308 7013 0.4090 +3308 7015 0.5270 +3308 7019 0.4160 +3308 7025 0.5250 +3308 7037 0.6110 +3308 7040 0.4470 +3308 7042 0.4910 +3308 7046 0.4230 +3308 7052 0.4990 +3308 7082 0.9590 +3308 7095 0.4470 +3308 7097 0.9920 +3308 7098 0.7310 +3308 7099 0.9960 +3308 7124 0.7900 +3308 7132 0.4010 +3308 7157 0.9970 +3308 7167 0.5780 +3308 7175 0.5740 +3308 7178 0.4180 +3308 7184 0.9900 +3308 7186 0.5890 +3308 7189 0.9460 +3308 7203 0.8370 +3308 7248 0.6030 +3308 7251 0.9440 +3308 7265 0.9820 +3308 7266 0.9830 +3308 7267 0.4620 +3308 7268 0.6170 +3308 7277 0.4590 +3308 7280 0.4060 +3308 7283 0.5970 +3308 7295 0.6450 +3308 7296 0.4670 +3308 7306 0.5110 +3308 7317 0.7220 +3308 7321 0.8110 +3308 7322 0.4430 +3308 7332 0.4490 +3308 7334 0.4660 +3308 7336 0.4700 +3308 7337 0.9380 +3308 7341 0.4790 +3308 7345 0.5650 +3308 7353 0.4240 +3308 7386 0.4960 +3308 7407 0.4170 +3308 7411 0.4490 +3308 7415 0.8670 +3308 7416 0.6340 +3308 7419 0.4400 +3308 7428 0.4650 +3308 7430 0.4520 +3308 7431 0.5050 +3308 7450 0.5250 +3308 7490 0.4460 +3308 7494 0.5830 +3308 7514 0.7240 +3308 7520 0.4010 +3308 7528 0.5030 +3308 7531 0.6760 +3308 7534 0.6590 +3308 7535 0.4440 +3308 7538 0.4340 +3308 7739 0.4120 +3308 7786 0.4140 +3308 7837 0.6680 +3308 7841 0.4570 +3308 7846 0.4340 +3308 7852 0.5940 +3308 7917 0.5300 +3308 7919 0.4300 +3308 7957 0.4880 +3308 7965 0.7070 +3308 7994 0.4360 +3308 8021 0.4850 +3308 8065 0.8440 +3308 8086 0.4160 +3308 8106 0.7090 +3308 8115 0.4300 +3308 8125 0.5480 +3308 8192 0.6940 +3308 8195 0.5520 +3308 8200 0.7360 +3308 8218 0.6430 +3308 8260 0.6000 +3308 8266 0.5920 +3308 8290 0.7040 +3308 8312 0.6870 +3308 8337 0.4400 +3308 8338 0.4320 +3308 8349 0.4470 +3308 8356 0.7320 +3308 8361 0.6970 +3308 8369 0.6910 +3308 8407 0.4100 +3308 8452 0.5130 +3308 8454 0.5270 +3308 8467 0.4090 +3308 8480 0.4920 +3308 8517 0.9240 +3308 8557 0.6140 +3308 8563 0.5480 +3308 8578 0.7540 +3308 8600 0.4580 +3308 8607 0.6510 +3308 8661 0.5210 +3308 8662 0.6560 +3308 8663 0.4700 +3308 8665 0.4070 +3308 8666 0.4450 +3308 8668 0.5690 +3308 8678 0.8850 +3308 8743 0.5460 +3308 8766 0.4140 +3308 8772 0.4070 +3308 8795 0.7580 +3308 8797 0.4740 +3308 8841 0.4570 +3308 8850 0.4860 +3308 8878 0.6420 +3308 8894 0.4710 +3308 8934 0.5470 +3308 8975 0.4280 +3308 8988 0.9880 +3308 8991 0.4410 +3308 8993 0.9630 +3308 9021 0.5140 +3308 9040 0.6040 +3308 9045 0.4190 +3308 9054 0.5140 +3308 9093 0.8570 +3308 9097 0.4570 +3308 9113 0.4220 +3308 9140 0.4370 +3308 9212 0.4970 +3308 9255 0.4540 +3308 9271 0.6660 +3308 9349 0.4430 +3308 9352 0.4310 +3308 9360 0.4660 +3308 9361 0.5870 +3308 9451 0.5420 +3308 9474 0.4970 +3308 9529 0.9600 +3308 9530 0.9130 +3308 9531 0.9990 +3308 9532 0.9970 +3308 9555 0.4240 +3308 9563 0.5250 +3308 9584 0.4020 +3308 9588 0.5030 +3308 9601 0.4620 +3308 9611 0.6790 +3308 9627 0.6710 +3308 9631 0.5460 +3308 9636 0.5030 +3308 9641 0.7490 +3308 9669 0.4920 +3308 9675 0.5270 +3308 9688 0.5210 +3308 9734 0.5160 +3308 9804 0.5130 +3308 9817 0.4300 +3308 9818 0.4570 +3308 9829 0.7360 +3308 9861 0.4060 +3308 9868 0.9880 +3308 9883 0.4370 +3308 9907 0.4340 +3308 9972 0.5420 +3308 9973 0.4410 +3308 9987 0.4920 +3308 10013 0.8510 +3308 10015 0.6140 +3308 10018 0.5800 +3308 10049 0.9730 +3308 10059 0.4790 +3308 10075 0.6490 +3308 10096 0.5010 +3308 10105 0.4370 +3308 10130 0.5860 +3308 10131 0.7300 +3308 10146 0.6700 +3308 10190 0.5360 +3308 10211 0.6790 +3308 10213 0.6450 +3308 10240 0.4130 +3308 10273 0.9990 +3308 10277 0.5850 +3308 10294 0.9020 +3308 10299 0.4790 +3308 10376 0.4310 +3308 10381 0.4220 +3308 10383 0.4180 +3308 10399 0.8230 +3308 10403 0.4290 +3308 10423 0.4020 +3308 10440 0.8000 +3308 10452 0.7620 +3308 10454 0.5000 +3308 10456 0.4230 +3308 10469 0.9930 +3308 10471 0.4660 +3308 10482 0.4710 +3308 10492 0.6630 +3308 10525 0.4440 +3308 10533 0.4880 +3308 10538 0.5300 +3308 10549 0.4880 +3308 10574 0.7720 +3308 10575 0.8490 +3308 10576 0.8440 +3308 10594 0.4070 +3308 10598 0.9710 +3308 10605 0.4790 +3308 10606 0.5350 +3308 10614 0.4010 +3308 10628 0.4750 +3308 10693 0.4490 +3308 10694 0.8320 +3308 10726 0.5310 +3308 10728 0.9060 +3308 10730 0.5220 +3308 10762 0.5130 +3308 10767 0.5950 +3308 10808 0.9350 +3308 10844 0.4180 +3308 10845 0.5910 +3308 10856 0.6830 +3308 10869 0.6750 +3308 10873 0.5360 +3308 10891 0.4310 +3308 10910 0.5420 +3308 10933 0.5070 +3308 10935 0.4910 +3308 10945 0.4280 +3308 10952 0.4150 +3308 10953 0.7220 +3308 10956 0.6530 +3308 10961 0.7500 +3308 10963 0.9990 +3308 10971 0.4420 +3308 10985 0.4250 +3308 10989 0.6230 +3308 11080 0.9820 +3308 11097 0.5930 +3308 11124 0.8500 +3308 11140 0.9950 +3308 11231 0.6350 +3308 11236 0.4240 +3308 11315 0.9530 +3308 11319 0.4650 +3308 11337 0.4280 +3308 11345 0.5060 +3308 22824 0.6950 +3308 22826 0.5800 +3308 22914 0.8480 +3308 22926 0.7180 +3308 22933 0.4270 +3308 22948 0.7990 +3308 23157 0.4720 +3308 23165 0.4920 +3308 23166 0.6700 +3308 23186 0.6410 +3308 23225 0.4420 +3308 23234 0.7790 +3308 23250 0.4420 +3308 23279 0.4890 +3308 23341 0.5260 +3308 23381 0.5260 +3308 23405 0.7460 +3308 23410 0.5410 +3308 23411 0.6720 +3308 23414 0.4370 +3308 23435 0.9200 +3308 23476 0.4620 +3308 23479 0.8120 +3308 23511 0.4320 +3308 23521 0.4700 +3308 23586 0.5470 +3308 23636 0.5050 +3308 23640 0.9980 +3308 23710 0.4640 +3308 23746 0.8310 +3308 23770 0.6310 +3308 25813 0.5700 +3308 25822 0.8880 +3308 25828 0.4880 +3308 26227 0.4760 +3308 26278 0.6630 +3308 26353 0.9940 +3308 26986 0.7190 +3308 26993 0.4640 +3308 27000 0.9860 +3308 27101 0.4440 +3308 27111 0.5550 +3308 27129 0.5160 +3308 27161 0.6410 +3308 27247 0.7090 +3308 27306 0.4580 +3308 27327 0.4560 +3308 27338 0.5730 +3308 27429 0.4750 +3308 29126 0.4100 +3308 29789 0.7740 +3308 29896 0.4110 +3308 29927 0.6230 +3308 29978 0.9150 +3308 29979 0.5310 +3308 30816 0.4030 +3308 30835 0.4300 +3308 50943 0.7940 +3308 51025 0.6400 +3308 51081 0.4210 +3308 51154 0.4220 +3308 51163 0.4010 +3308 51182 0.8070 +3308 51218 0.4810 +3308 51314 0.4110 +3308 51441 0.4950 +3308 51465 0.5680 +3308 51499 0.6240 +3308 51501 0.8490 +3308 51520 0.5270 +3308 51564 0.5020 +3308 51574 0.4430 +3308 51602 0.4020 +3308 51608 0.4010 +3308 51661 0.5140 +3308 51720 0.4290 +3308 51726 0.8430 +3308 51806 0.7190 +3308 51807 0.4070 +3308 53371 0.5120 +3308 53917 0.4690 +3308 54106 0.4670 +3308 54205 0.8660 +3308 54210 0.4680 +3308 54431 0.8640 +3308 54788 0.6710 +3308 54905 0.5040 +3308 54927 0.4370 +3308 55011 0.6510 +3308 55039 0.6200 +3308 55054 0.4690 +3308 55170 0.4610 +3308 55172 0.6830 +3308 55257 0.5160 +3308 55466 0.8240 +3308 55611 0.4300 +3308 55615 0.5390 +3308 55664 0.7160 +3308 55706 0.4530 +3308 55735 0.5130 +3308 55746 0.4880 +3308 55802 0.4490 +3308 55869 0.8360 +3308 56259 0.5910 +3308 56339 0.4400 +3308 56521 0.7700 +3308 56886 0.4250 +3308 56893 0.7790 +3308 56990 0.4460 +3308 56993 0.6780 +3308 57122 0.4970 +3308 57128 0.4130 +3308 57154 0.4390 +3308 57521 0.4970 +3308 60489 0.4410 +3308 64083 0.6100 +3308 64135 0.5060 +3308 64215 0.5690 +3308 64223 0.7170 +3308 64374 0.8350 +3308 64397 0.5810 +3308 64798 0.8570 +3308 64802 0.4380 +3308 65018 0.8470 +3308 79023 0.4930 +3308 79109 0.7390 +3308 79139 0.5760 +3308 79400 0.6380 +3308 79657 0.7500 +3308 79861 0.4360 +3308 79902 0.4330 +3308 79925 0.4900 +3308 79962 0.4560 +3308 79982 0.7790 +3308 80031 0.4220 +3308 80155 0.4430 +3308 80185 0.4070 +3308 80273 0.9750 +3308 80279 0.5480 +3308 80331 0.9030 +3308 81557 0.8880 +3308 81567 0.4770 +3308 81570 0.9410 +3308 81631 0.5980 +3308 81689 0.4530 +3308 81876 0.4380 +3308 81929 0.4760 +3308 83752 0.4030 +3308 83983 0.6210 +3308 84142 0.6170 +3308 84260 0.4040 +3308 84447 0.4620 +3308 84525 0.5130 +3308 84557 0.4120 +3308 84676 0.4690 +3308 84790 0.4670 +3308 84896 0.4040 +3308 84991 0.4250 +3308 85476 0.4060 +3308 85479 0.8000 +3308 89782 0.6620 +3308 89790 0.4650 +3308 91860 0.7190 +3308 92552 0.4970 +3308 92609 0.6490 +3308 94241 0.4460 +3308 96459 0.5590 +3308 112714 0.4220 +3308 113444 0.4570 +3308 113457 0.4170 +3308 116835 0.8840 +3308 120379 0.4640 +3308 120526 0.5460 +3308 120892 0.8160 +3308 122961 0.4580 +3308 124535 0.4050 +3308 125972 0.4530 +3308 126393 0.8420 +3308 129401 0.4290 +3308 131118 0.9000 +3308 131474 0.4050 +3308 133482 0.5400 +3308 134218 0.7170 +3308 134266 0.6580 +3308 135138 0.6250 +3308 137902 0.6630 +3308 139341 0.4040 +3308 140432 0.4200 +3308 140690 0.4210 +3308 143630 0.4540 +3308 143689 0.6650 +3308 143941 0.5080 +3308 146845 0.7660 +3308 146862 0.6860 +3308 150160 0.4830 +3308 150274 0.7300 +3308 150275 0.4880 +3308 150353 0.6250 +3308 151194 0.8590 +3308 161582 0.6070 +3308 163688 0.7190 +3308 165721 0.8820 +3308 168400 0.4230 +3308 171024 0.5470 +3308 171425 0.4630 +3308 197131 0.4870 +3308 200895 0.4740 +3308 202052 0.6400 +3308 203068 0.5310 +3308 252995 0.4330 +3308 253260 0.9450 +3308 257202 0.6180 +3308 259217 0.8840 +3308 285126 0.4890 +3308 285282 0.4310 +3308 345456 0.5890 +3308 348995 0.5510 +3308 374407 0.6940 +3308 375189 0.5840 +3308 378884 0.5850 +3308 440093 0.7040 +3308 440275 0.4030 +3308 440498 0.6550 +3308 440686 0.7040 +3308 493869 0.6220 +3308 548645 0.7100 +3308 552891 0.4200 +3308 653145 0.5980 +3308 653604 0.7060 +3308 728239 0.8880 +3308 728378 0.5270 +3308 728489 0.4210 +3308 100101267 0.4450 +3308 100133941 0.7320 +3308 100532731 0.5420 +3308 102723407 0.4670 +3309 3310 0.8310 +3309 3312 0.9830 +3309 3313 0.8830 +3309 3315 0.8010 +3309 3316 0.7480 +3309 3320 0.9680 +3309 3326 0.9770 +3309 3329 0.9080 +3309 3336 0.7250 +3309 3337 0.9500 +3309 3375 0.5220 +3309 3383 0.4480 +3309 3458 0.4190 +3309 3480 0.7010 +3309 3486 0.5880 +3309 3551 0.5580 +3309 3553 0.7310 +3309 3569 0.7360 +3309 3630 0.6780 +3309 3667 0.4270 +3309 3703 0.5680 +3309 3708 0.7820 +3309 3710 0.7280 +3309 3725 0.6710 +3309 3827 0.7100 +3309 3848 0.5160 +3309 3856 0.7410 +3309 3880 0.5080 +3309 3916 0.5400 +3309 3921 0.6250 +3309 3925 0.6210 +3309 3949 0.5840 +3309 3952 0.4270 +3309 3991 0.4010 +3309 3998 0.5880 +3309 4017 0.5560 +3309 4060 0.4800 +3309 4069 0.4180 +3309 4123 0.5090 +3309 4130 0.4590 +3309 4134 0.5180 +3309 4137 0.6280 +3309 4148 0.4200 +3309 4170 0.4950 +3309 4189 0.9850 +3309 4205 0.4450 +3309 4217 0.7230 +3309 4312 0.6460 +3309 4318 0.4130 +3309 4547 0.4710 +3309 4609 0.5410 +3309 4627 0.4520 +3309 4628 0.4040 +3309 4691 0.4570 +3309 4751 0.4740 +3309 4780 0.5830 +3309 4790 0.7040 +3309 4792 0.7110 +3309 4800 0.6360 +3309 4801 0.6670 +3309 4802 0.6660 +3309 4830 0.4120 +3309 4869 0.4830 +3309 4893 0.4680 +3309 4904 0.5220 +3309 4927 0.6240 +3309 4928 0.4610 +3309 5033 0.4950 +3309 5034 0.9960 +3309 5045 0.6010 +3309 5046 0.5260 +3309 5052 0.6200 +3309 5069 0.4080 +3309 5071 0.4790 +3309 5074 0.9120 +3309 5170 0.6790 +3309 5223 0.4380 +3309 5230 0.5100 +3309 5232 0.4080 +3309 5245 0.6400 +3309 5265 0.5530 +3309 5289 0.8650 +3309 5315 0.4470 +3309 5327 0.5680 +3309 5340 0.4980 +3309 5366 0.4480 +3309 5447 0.4220 +3309 5464 0.4120 +3309 5465 0.4380 +3309 5468 0.4810 +3309 5476 0.5330 +3309 5478 0.4260 +3309 5479 0.9550 +3309 5481 0.4800 +3309 5500 0.4020 +3309 5501 0.4470 +3309 5562 0.4610 +3309 5589 0.5950 +3309 5595 0.6410 +3309 5599 0.5410 +3309 5600 0.5420 +3309 5603 0.5740 +3309 5610 0.8710 +3309 5611 0.9780 +3309 5621 0.9540 +3309 5683 0.5710 +3309 5690 0.4970 +3309 5706 0.4780 +3309 5707 0.4350 +3309 5728 0.6070 +3309 5743 0.4110 +3309 5832 0.4140 +3309 5861 0.4180 +3309 5894 0.6670 +3309 5903 0.6060 +3309 5954 0.5370 +3309 5955 0.4060 +3309 5966 0.5680 +3309 5970 0.7150 +3309 6035 0.4380 +3309 6041 0.4590 +3309 6125 0.6120 +3309 6132 0.4840 +3309 6135 0.4160 +3309 6138 0.4320 +3309 6175 0.4730 +3309 6184 0.7950 +3309 6185 0.6840 +3309 6188 0.5440 +3309 6189 0.5650 +3309 6194 0.6430 +3309 6195 0.4420 +3309 6198 0.4790 +3309 6217 0.4160 +3309 6238 0.4300 +3309 6300 0.5420 +3309 6342 0.4840 +3309 6347 0.4190 +3309 6388 0.6620 +3309 6390 0.4020 +3309 6396 0.5920 +3309 6400 0.9490 +3309 6440 0.4420 +3309 6441 0.4690 +3309 6478 0.6190 +3309 6595 0.4270 +3309 6613 0.4320 +3309 6622 0.9470 +3309 6647 0.9750 +3309 6648 0.5040 +3309 6714 0.4920 +3309 6720 0.5060 +3309 6721 0.4750 +3309 6728 0.4110 +3309 6729 0.4850 +3309 6737 0.4820 +3309 6742 0.5050 +3309 6745 0.6080 +3309 6748 0.4230 +3309 6767 0.5920 +3309 6774 0.6810 +3309 6782 0.6780 +3309 6804 0.4200 +3309 6811 0.5140 +3309 6836 0.6580 +3309 6853 0.4420 +3309 6855 0.4670 +3309 6890 0.5540 +3309 6891 0.5420 +3309 6892 0.7830 +3309 6950 0.8940 +3309 6997 0.9280 +3309 7001 0.4560 +3309 7009 0.4670 +3309 7019 0.9420 +3309 7037 0.5720 +3309 7038 0.6200 +3309 7040 0.4530 +3309 7052 0.4220 +3309 7067 0.4130 +3309 7076 0.5250 +3309 7086 0.4130 +3309 7095 0.7650 +3309 7099 0.4700 +3309 7102 0.6620 +3309 7113 0.5940 +3309 7124 0.6630 +3309 7132 0.4250 +3309 7157 0.8240 +3309 7158 0.4810 +3309 7167 0.4670 +3309 7175 0.4230 +3309 7178 0.5490 +3309 7184 0.9990 +3309 7186 0.6640 +3309 7203 0.5110 +3309 7248 0.6480 +3309 7253 0.4390 +3309 7266 0.8040 +3309 7277 0.6090 +3309 7278 0.4810 +3309 7280 0.5770 +3309 7295 0.7240 +3309 7296 0.7000 +3309 7311 0.5040 +3309 7314 0.4140 +3309 7316 0.4120 +3309 7345 0.4460 +3309 7353 0.4030 +3309 7358 0.4540 +3309 7399 0.4720 +3309 7415 0.9440 +3309 7416 0.8130 +3309 7417 0.7300 +3309 7450 0.4330 +3309 7466 0.4290 +3309 7494 0.9800 +3309 7528 0.4120 +3309 7529 0.4690 +3309 7531 0.6290 +3309 7533 0.4730 +3309 7534 0.6290 +3309 7837 0.6600 +3309 7841 0.6940 +3309 7846 0.7170 +3309 7852 0.5080 +3309 7879 0.6540 +3309 8021 0.4190 +3309 8174 0.4080 +3309 8192 0.5160 +3309 8195 0.6260 +3309 8266 0.5010 +3309 8277 0.4200 +3309 8290 0.4010 +3309 8356 0.4060 +3309 8361 0.4930 +3309 8403 0.4170 +3309 8468 0.4710 +3309 8480 0.4410 +3309 8574 0.4360 +3309 8664 0.4170 +3309 8678 0.7650 +3309 8720 0.7950 +3309 8737 0.4590 +3309 8761 0.6030 +3309 8766 0.4090 +3309 8795 0.4890 +3309 8878 0.9460 +3309 8894 0.5760 +3309 8988 0.7430 +3309 9093 0.8490 +3309 9123 0.4430 +3309 9140 0.6920 +3309 9169 0.4280 +3309 9343 0.5520 +3309 9349 0.4770 +3309 9360 0.4720 +3309 9361 0.4950 +3309 9403 0.4020 +3309 9451 0.9990 +3309 9474 0.6270 +3309 9476 0.4430 +3309 9478 0.4670 +3309 9529 0.6230 +3309 9530 0.5910 +3309 9531 0.8470 +3309 9532 0.6760 +3309 9563 0.4760 +3309 9588 0.4830 +3309 9601 0.9900 +3309 9631 0.4370 +3309 9688 0.4400 +3309 9695 0.9570 +3309 9709 0.7920 +3309 9728 0.5390 +3309 9789 0.7200 +3309 9817 0.4240 +3309 9818 0.4040 +3309 9883 0.4590 +3309 9927 0.5050 +3309 9972 0.4430 +3309 10013 0.7100 +3309 10015 0.5060 +3309 10018 0.5430 +3309 10049 0.8530 +3309 10059 0.4380 +3309 10105 0.4350 +3309 10130 0.9950 +3309 10131 0.7870 +3309 10134 0.7030 +3309 10153 0.4060 +3309 10211 0.5380 +3309 10213 0.4560 +3309 10237 0.4080 +3309 10240 0.4190 +3309 10273 0.6180 +3309 10280 0.9920 +3309 10294 0.8510 +3309 10330 0.6050 +3309 10376 0.5780 +3309 10381 0.5440 +3309 10382 0.5800 +3309 10383 0.7510 +3309 10397 0.4070 +3309 10399 0.5290 +3309 10483 0.6250 +3309 10484 0.5550 +3309 10492 0.4430 +3309 10525 0.9990 +3309 10533 0.5760 +3309 10537 0.5910 +3309 10549 0.6360 +3309 10551 0.6560 +3309 10574 0.7830 +3309 10575 0.6850 +3309 10576 0.7280 +3309 10595 0.8880 +3309 10598 0.7320 +3309 10693 0.4650 +3309 10694 0.7010 +3309 10728 0.5860 +3309 10762 0.4210 +3309 10808 0.8540 +3309 10810 0.8340 +3309 10856 0.4960 +3309 10891 0.4180 +3309 10911 0.6410 +3309 10915 0.4670 +3309 10935 0.4910 +3309 10945 0.5070 +3309 10952 0.6240 +3309 10954 0.5870 +3309 10956 0.9800 +3309 10959 0.4550 +3309 10961 0.7830 +3309 10963 0.6600 +3309 10970 0.4160 +3309 10971 0.5910 +3309 10972 0.4360 +3309 10987 0.4880 +3309 11014 0.4120 +3309 11060 0.5600 +3309 11080 0.9160 +3309 11097 0.5870 +3309 11140 0.5040 +3309 11153 0.9630 +3309 11160 0.5470 +3309 11231 0.8760 +3309 11315 0.6350 +3309 11316 0.4020 +3309 11331 0.4310 +3309 11337 0.4090 +3309 11345 0.4800 +3309 22809 0.4110 +3309 22820 0.4440 +3309 22824 0.9130 +3309 22872 0.4750 +3309 22916 0.6040 +3309 22926 0.9990 +3309 22937 0.6090 +3309 22948 0.7270 +3309 23071 0.6820 +3309 23165 0.4210 +3309 23193 0.8460 +3309 23197 0.8270 +3309 23225 0.5090 +3309 23231 0.4270 +3309 23234 0.5560 +3309 23252 0.4700 +3309 23279 0.4160 +3309 23341 0.6490 +3309 23411 0.5130 +3309 23414 0.4230 +3309 23435 0.4430 +3309 23479 0.5390 +3309 23480 0.4020 +3309 23512 0.4040 +3309 23621 0.5970 +3309 23636 0.5090 +3309 23640 0.9120 +3309 23645 0.6980 +3309 23710 0.4540 +3309 23753 0.8040 +3309 25822 0.7510 +3309 25828 0.4170 +3309 26270 0.4700 +3309 26330 0.4390 +3309 26353 0.4210 +3309 26986 0.4560 +3309 27000 0.7470 +3309 27044 0.4860 +3309 27102 0.4670 +3309 27201 0.6690 +3309 27230 0.4270 +3309 27248 0.8210 +3309 27338 0.4500 +3309 27429 0.4120 +3309 29126 0.5290 +3309 29925 0.5550 +3309 29927 0.9740 +3309 29978 0.4060 +3309 30001 0.8750 +3309 30816 0.5490 +3309 30851 0.4060 +3309 50507 0.4120 +3309 50943 0.4910 +3309 51009 0.9460 +3309 51061 0.5890 +3309 51128 0.5880 +3309 51141 0.5460 +3309 51175 0.4770 +3309 51182 0.6390 +3309 51237 0.7610 +3309 51244 0.6100 +3309 51272 0.4010 +3309 51303 0.4550 +3309 51314 0.4110 +3309 51360 0.7890 +3309 51377 0.4400 +3309 51465 0.8090 +3309 51501 0.5610 +3309 51552 0.4500 +3309 51643 0.5710 +3309 51661 0.6000 +3309 51726 0.9970 +3309 51806 0.4260 +3309 51807 0.5200 +3309 53371 0.4350 +3309 54106 0.5350 +3309 54148 0.4520 +3309 54205 0.7380 +3309 54431 0.9980 +3309 54788 0.8090 +3309 54972 0.7230 +3309 55054 0.6120 +3309 55176 0.5490 +3309 55177 0.4060 +3309 55466 0.8550 +3309 55611 0.4080 +3309 55626 0.4620 +3309 55631 0.4260 +3309 55666 0.4990 +3309 55735 0.4940 +3309 55741 0.5470 +3309 55746 0.4190 +3309 55757 0.6790 +3309 55829 0.4640 +3309 56257 0.4210 +3309 56605 0.7940 +3309 56681 0.4390 +3309 56886 0.7470 +3309 56893 0.5540 +3309 56990 0.4210 +3309 57103 0.4010 +3309 57122 0.4350 +3309 57538 0.4590 +3309 57761 0.7060 +3309 58477 0.4980 +3309 59272 0.9480 +3309 60468 0.4130 +3309 60681 0.4540 +3309 63978 0.6420 +3309 64083 0.5560 +3309 64135 0.4710 +3309 64180 0.5070 +3309 64215 0.9870 +3309 64374 0.9980 +3309 64714 0.8700 +3309 64798 0.4280 +3309 65018 0.4260 +3309 79023 0.4520 +3309 79029 0.4410 +3309 79048 0.5460 +3309 79065 0.4160 +3309 79094 0.4630 +3309 79139 0.9820 +3309 79174 0.7180 +3309 79589 0.4240 +3309 79714 0.4090 +3309 79738 0.5930 +3309 79861 0.5130 +3309 79902 0.4540 +3309 79962 0.4390 +3309 79982 0.6290 +3309 80086 0.5300 +3309 80124 0.4050 +3309 80144 0.4690 +3309 80267 0.6800 +3309 80273 0.7960 +3309 80331 0.6680 +3309 80343 0.4220 +3309 81027 0.4850 +3309 81037 0.4350 +3309 81567 0.7980 +3309 81570 0.7260 +3309 81631 0.6670 +3309 83648 0.5400 +3309 83939 0.5800 +3309 84061 0.4850 +3309 84076 0.4100 +3309 84447 0.9610 +3309 84557 0.5270 +3309 84617 0.5660 +3309 84699 0.4660 +3309 84790 0.5740 +3309 85406 0.6170 +3309 85479 0.6770 +3309 91319 0.8630 +3309 91860 0.4250 +3309 93099 0.4010 +3309 96459 0.5230 +3309 112714 0.5170 +3309 113444 0.4810 +3309 113457 0.5230 +3309 116835 0.7660 +3309 120526 0.4860 +3309 120892 0.4380 +3309 125972 0.8980 +3309 126393 0.4690 +3309 134266 0.7130 +3309 137902 0.6590 +3309 140432 0.4200 +3309 140576 0.4900 +3309 140862 0.4520 +3309 145264 0.7700 +3309 149041 0.5570 +3309 150160 0.4490 +3309 150353 0.6930 +3309 151194 0.4270 +3309 163688 0.4260 +3309 165721 0.7160 +3309 166378 0.4410 +3309 171425 0.4200 +3309 192670 0.5490 +3309 197131 0.4260 +3309 201595 0.5250 +3309 202052 0.6720 +3309 203068 0.5930 +3309 220988 0.4900 +3309 221302 0.4200 +3309 257202 0.4420 +3309 259217 0.8680 +3309 260334 0.4570 +3309 283208 0.5330 +3309 283234 0.4930 +3309 285126 0.4710 +3309 285282 0.4250 +3309 347688 0.5000 +3309 347733 0.5100 +3309 348995 0.4130 +3309 374407 0.6810 +3309 388697 0.4950 +3309 400668 0.6140 +3309 440093 0.4010 +3309 440275 0.7220 +3309 440686 0.4010 +3309 441549 0.6740 +3309 493869 0.4490 +3309 548645 0.4680 +3309 552891 0.4630 +3309 653604 0.4030 +3309 728378 0.4650 +3309 100101267 0.4610 +3309 102723407 0.5090 +3310 3312 0.8310 +3310 3313 0.7810 +3310 3315 0.7440 +3310 3316 0.6490 +3310 3320 0.8790 +3310 3326 0.8890 +3310 3329 0.6190 +3310 3336 0.6830 +3310 3337 0.9840 +3310 3434 0.5350 +3310 3552 0.4360 +3310 3921 0.5860 +3310 4141 0.4010 +3310 4189 0.8470 +3310 4790 0.4140 +3310 4927 0.4290 +3310 4928 0.4620 +3310 5236 0.6880 +3310 5245 0.4160 +3310 5584 0.4090 +3310 5595 0.4040 +3310 5599 0.9110 +3310 5601 0.9060 +3310 5611 0.5550 +3310 5682 0.4840 +3310 5683 0.4940 +3310 5684 0.4700 +3310 5685 0.4440 +3310 5686 0.4370 +3310 5687 0.4990 +3310 5688 0.5500 +3310 5690 0.5080 +3310 5707 0.4510 +3310 5710 0.4160 +3310 5743 0.4460 +3310 5903 0.5150 +3310 5999 0.4190 +3310 6122 0.4820 +3310 6123 0.4380 +3310 6124 0.5150 +3310 6125 0.4480 +3310 6128 0.4850 +3310 6130 0.4270 +3310 6132 0.4410 +3310 6133 0.4680 +3310 6135 0.4890 +3310 6136 0.4600 +3310 6137 0.4880 +3310 6138 0.4150 +3310 6141 0.4930 +3310 6142 0.4370 +3310 6144 0.4050 +3310 6147 0.4320 +3310 6154 0.4750 +3310 6155 0.5020 +3310 6156 0.4810 +3310 6157 0.4760 +3310 6160 0.4890 +3310 6161 0.4210 +3310 6164 0.4290 +3310 6165 0.4600 +3310 6168 0.4490 +3310 6169 0.4230 +3310 6175 0.5400 +3310 6187 0.6330 +3310 6188 0.5400 +3310 6189 0.5320 +3310 6193 0.4440 +3310 6194 0.4380 +3310 6201 0.4160 +3310 6202 0.5160 +3310 6203 0.5450 +3310 6205 0.4190 +3310 6206 0.4370 +3310 6207 0.4590 +3310 6208 0.4240 +3310 6209 0.4820 +3310 6217 0.5240 +3310 6222 0.4970 +3310 6223 0.4450 +3310 6224 0.6030 +3310 6228 0.4080 +3310 6231 0.4230 +3310 6233 0.4520 +3310 6234 0.4550 +3310 6396 0.5210 +3310 6767 0.4650 +3310 6782 0.5760 +3310 6950 0.5590 +3310 7097 0.9260 +3310 7157 0.5710 +3310 7175 0.4440 +3310 7178 0.4190 +3310 7184 0.6950 +3310 7203 0.5550 +3310 7248 0.5640 +3310 7266 0.7410 +3310 8021 0.4370 +3310 8086 0.4130 +3310 8192 0.4390 +3310 8266 0.4290 +3310 8361 0.4840 +3310 8480 0.4520 +3310 8988 0.6380 +3310 9045 0.4280 +3310 9093 0.7280 +3310 9349 0.4610 +3310 9529 0.7380 +3310 9530 0.6780 +3310 9531 0.8760 +3310 9532 0.6370 +3310 9631 0.4080 +3310 9688 0.4780 +3310 9689 0.4040 +3310 9709 0.4560 +3310 9818 0.4130 +3310 9868 0.4080 +3310 9883 0.4380 +3310 9972 0.4440 +3310 10049 0.8890 +3310 10131 0.5900 +3310 10273 0.6020 +3310 10294 0.8440 +3310 10383 0.4050 +3310 10399 0.5540 +3310 10574 0.5580 +3310 10575 0.5790 +3310 10576 0.6050 +3310 10598 0.5680 +3310 10693 0.4880 +3310 10694 0.4740 +3310 10728 0.4260 +3310 10762 0.4180 +3310 10808 0.7270 +3310 10963 0.7430 +3310 10987 0.4510 +3310 11020 0.4020 +3310 11080 0.9470 +3310 11097 0.4510 +3310 22824 0.7550 +3310 22948 0.5800 +3310 23165 0.4390 +3310 23225 0.4280 +3310 23234 0.5770 +3310 23279 0.4320 +3310 23341 0.4340 +3310 23479 0.5440 +3310 23511 0.4080 +3310 23521 0.4470 +3310 23636 0.4150 +3310 23640 0.8050 +3310 25822 0.8150 +3310 26353 0.4960 +3310 27000 0.8000 +3310 50486 0.4240 +3310 51121 0.4110 +3310 51182 0.6040 +3310 51314 0.4570 +3310 51501 0.6160 +3310 51726 0.7520 +3310 53371 0.4810 +3310 54431 0.6400 +3310 54788 0.6360 +3310 54939 0.4190 +3310 55173 0.4050 +3310 55466 0.8880 +3310 55735 0.5780 +3310 55746 0.4370 +3310 56257 0.4250 +3310 56990 0.4240 +3310 57122 0.4610 +3310 64374 0.4750 +3310 79023 0.4830 +3310 79363 0.4440 +3310 79902 0.4250 +3310 79962 0.4640 +3310 79982 0.6370 +3310 80273 0.7010 +3310 80331 0.6760 +3310 81570 0.7560 +3310 81929 0.4270 +3310 85479 0.7350 +3310 91544 0.4600 +3310 94031 0.4270 +3310 94234 0.4030 +3310 96459 0.5220 +3310 113444 0.4330 +3310 116835 0.7570 +3310 120526 0.4440 +3310 126393 0.4410 +3310 129401 0.4400 +3310 134266 0.6300 +3310 136332 0.4400 +3310 140432 0.4200 +3310 149041 0.5220 +3310 150353 0.7440 +3310 165721 0.7940 +3310 171425 0.4200 +3310 202052 0.6050 +3310 259217 0.7710 +3310 285126 0.5730 +3310 285282 0.4290 +3310 348995 0.5190 +3310 374407 0.7500 +3310 548645 0.5070 +3310 552891 0.4200 +3310 100101267 0.4470 +3312 3313 0.9470 +3312 3315 0.9880 +3312 3316 0.9370 +3312 3320 0.9990 +3312 3326 0.9990 +3312 3329 0.9330 +3312 3336 0.8070 +3312 3337 0.9990 +3312 3482 0.5850 +3312 3550 0.4160 +3312 3551 0.4830 +3312 3553 0.5170 +3312 3565 0.4910 +3312 3596 0.4440 +3312 3608 0.4210 +3312 3630 0.6220 +3312 3654 0.4950 +3312 3688 0.5260 +3312 3689 0.4270 +3312 3717 0.4370 +3312 3725 0.5030 +3312 3732 0.4310 +3312 3756 0.4460 +3312 3757 0.6180 +3312 3799 0.5390 +3312 3837 0.4340 +3312 3856 0.6750 +3312 3857 0.4720 +3312 3875 0.5280 +3312 3906 0.7780 +3312 3916 0.6830 +3312 3920 0.9490 +3312 3921 0.8350 +3312 3925 0.6040 +3312 3998 0.4580 +3312 4001 0.4590 +3312 4067 0.5100 +3312 4074 0.5810 +3312 4077 0.5230 +3312 4137 0.9480 +3312 4144 0.4860 +3312 4170 0.6840 +3312 4189 0.7940 +3312 4193 0.6050 +3312 4209 0.7790 +3312 4287 0.5140 +3312 4306 0.5710 +3312 4591 0.4960 +3312 4609 0.7160 +3312 4627 0.6380 +3312 4666 0.4030 +3312 4670 0.6410 +3312 4691 0.7000 +3312 4735 0.5200 +3312 4738 0.5030 +3312 4790 0.4760 +3312 4791 0.4570 +3312 4792 0.7080 +3312 4793 0.5040 +3312 4830 0.4760 +3312 4831 0.5830 +3312 4841 0.5430 +3312 4864 0.4960 +3312 4869 0.4440 +3312 4904 0.7130 +3312 4927 0.4270 +3312 4928 0.5010 +3312 4952 0.5710 +3312 5034 0.6530 +3312 5036 0.6770 +3312 5052 0.8120 +3312 5071 0.9010 +3312 5093 0.6710 +3312 5094 0.4860 +3312 5104 0.4510 +3312 5116 0.5820 +3312 5202 0.6950 +3312 5204 0.4790 +3312 5209 0.4340 +3312 5223 0.5320 +3312 5230 0.7550 +3312 5232 0.4840 +3312 5241 0.6310 +3312 5243 0.5440 +3312 5245 0.6070 +3312 5250 0.5250 +3312 5286 0.5720 +3312 5289 0.4560 +3312 5297 0.4480 +3312 5315 0.5660 +3312 5340 0.4030 +3312 5347 0.5280 +3312 5356 0.9770 +3312 5476 0.4010 +3312 5478 0.7770 +3312 5481 0.8840 +3312 5499 0.5720 +3312 5501 0.5950 +3312 5515 0.5340 +3312 5518 0.5850 +3312 5536 0.7240 +3312 5563 0.5520 +3312 5564 0.4590 +3312 5565 0.6280 +3312 5571 0.5430 +3312 5584 0.4490 +3312 5589 0.4610 +3312 5594 0.5060 +3312 5595 0.5250 +3312 5599 0.9320 +3312 5601 0.9140 +3312 5604 0.6850 +3312 5611 0.8020 +3312 5621 0.4210 +3312 5682 0.5650 +3312 5683 0.7170 +3312 5684 0.6470 +3312 5685 0.4830 +3312 5686 0.5100 +3312 5687 0.4730 +3312 5688 0.5450 +3312 5690 0.5200 +3312 5695 0.4180 +3312 5702 0.5300 +3312 5704 0.4360 +3312 5705 0.5610 +3312 5707 0.6100 +3312 5708 0.4660 +3312 5710 0.5130 +3312 5717 0.4980 +3312 5718 0.5330 +3312 5725 0.5840 +3312 5757 0.4470 +3312 5781 0.4290 +3312 5864 0.8920 +3312 5868 0.7050 +3312 5869 0.5960 +3312 5878 0.7550 +3312 5886 0.4760 +3312 5894 0.7760 +3312 5901 0.5110 +3312 5903 0.7550 +3312 5914 0.4460 +3312 5925 0.6480 +3312 5929 0.4730 +3312 5957 0.4680 +3312 5966 0.7750 +3312 5970 0.5570 +3312 5971 0.4040 +3312 5976 0.5950 +3312 6035 0.5960 +3312 6048 0.7200 +3312 6122 0.6980 +3312 6123 0.4350 +3312 6124 0.7430 +3312 6125 0.5990 +3312 6128 0.7800 +3312 6129 0.5750 +3312 6130 0.5810 +3312 6132 0.6920 +3312 6133 0.5670 +3312 6135 0.6520 +3312 6136 0.7000 +3312 6137 0.6500 +3312 6138 0.5550 +3312 6139 0.4810 +3312 6141 0.5920 +3312 6142 0.6410 +3312 6143 0.4320 +3312 6144 0.4860 +3312 6147 0.5000 +3312 6154 0.5540 +3312 6155 0.5980 +3312 6156 0.5810 +3312 6157 0.6030 +3312 6158 0.5170 +3312 6160 0.6130 +3312 6161 0.4550 +3312 6164 0.5030 +3312 6165 0.5320 +3312 6175 0.7280 +3312 6181 0.5710 +3312 6187 0.6870 +3312 6188 0.7710 +3312 6189 0.6840 +3312 6191 0.6420 +3312 6193 0.5650 +3312 6194 0.5890 +3312 6201 0.4720 +3312 6202 0.6940 +3312 6203 0.5790 +3312 6204 0.4740 +3312 6205 0.5440 +3312 6206 0.5740 +3312 6207 0.5690 +3312 6208 0.5260 +3312 6209 0.5170 +3312 6210 0.5590 +3312 6217 0.6180 +3312 6218 0.4390 +3312 6222 0.5870 +3312 6223 0.5330 +3312 6224 0.7290 +3312 6227 0.5020 +3312 6228 0.5400 +3312 6229 0.5210 +3312 6230 0.4430 +3312 6231 0.5020 +3312 6232 0.5100 +3312 6233 0.7720 +3312 6234 0.5360 +3312 6272 0.5460 +3312 6280 0.4680 +3312 6285 0.5540 +3312 6310 0.4780 +3312 6386 0.4550 +3312 6388 0.6220 +3312 6396 0.5600 +3312 6426 0.5260 +3312 6449 0.9980 +3312 6456 0.6420 +3312 6464 0.5590 +3312 6500 0.5730 +3312 6502 0.6690 +3312 6531 0.4820 +3312 6559 0.4280 +3312 6571 0.5030 +3312 6573 0.4180 +3312 6613 0.6600 +3312 6616 0.9030 +3312 6622 0.9870 +3312 6627 0.6110 +3312 6643 0.5640 +3312 6647 0.8700 +3312 6667 0.4280 +3312 6672 0.6040 +3312 6674 0.6540 +3312 6714 0.4510 +3312 6729 0.4390 +3312 6737 0.6040 +3312 6742 0.5280 +3312 6767 0.9990 +3312 6774 0.5340 +3312 6782 0.7230 +3312 6804 0.5800 +3312 6812 0.6690 +3312 6840 0.4120 +3312 6844 0.8860 +3312 6845 0.7070 +3312 6857 0.8470 +3312 6908 0.4860 +3312 6950 0.9310 +3312 7001 0.4780 +3312 7009 0.4410 +3312 7037 0.9690 +3312 7054 0.5240 +3312 7097 0.9530 +3312 7099 0.5550 +3312 7124 0.5500 +3312 7132 0.5190 +3312 7155 0.5000 +3312 7157 0.9870 +3312 7163 0.5180 +3312 7164 0.4990 +3312 7167 0.5390 +3312 7175 0.4850 +3312 7178 0.5520 +3312 7184 0.8840 +3312 7186 0.4030 +3312 7189 0.6310 +3312 7203 0.8800 +3312 7248 0.8070 +3312 7251 0.9220 +3312 7265 0.8750 +3312 7266 0.9610 +3312 7268 0.4260 +3312 7273 0.5220 +3312 7277 0.4660 +3312 7280 0.8750 +3312 7284 0.4390 +3312 7295 0.5780 +3312 7307 0.5620 +3312 7311 0.7870 +3312 7314 0.8790 +3312 7316 0.8100 +3312 7317 0.4520 +3312 7321 0.8310 +3312 7323 0.5990 +3312 7337 0.7790 +3312 7341 0.4040 +3312 7345 0.9240 +3312 7407 0.4330 +3312 7409 0.4640 +3312 7415 0.9200 +3312 7416 0.5360 +3312 7458 0.4580 +3312 7494 0.6450 +3312 7514 0.5950 +3312 7529 0.4340 +3312 7531 0.7350 +3312 7532 0.6540 +3312 7533 0.6800 +3312 7534 0.8230 +3312 7812 0.4750 +3312 7837 0.5300 +3312 7846 0.9000 +3312 7852 0.4710 +3312 7879 0.4760 +3312 7917 0.4580 +3312 7919 0.4160 +3312 7942 0.4470 +3312 8021 0.6280 +3312 8086 0.4160 +3312 8100 0.7210 +3312 8125 0.4200 +3312 8175 0.6380 +3312 8192 0.4850 +3312 8195 0.6070 +3312 8200 0.4820 +3312 8218 0.8720 +3312 8237 0.5370 +3312 8260 0.4580 +3312 8266 0.5110 +3312 8290 0.5180 +3312 8301 0.5860 +3312 8312 0.6440 +3312 8356 0.6170 +3312 8361 0.6360 +3312 8408 0.6380 +3312 8409 0.5600 +3312 8445 0.4110 +3312 8480 0.4850 +3312 8505 0.4120 +3312 8517 0.4010 +3312 8546 0.5420 +3312 8607 0.7810 +3312 8624 0.6300 +3312 8662 0.6680 +3312 8665 0.5090 +3312 8666 0.4230 +3312 8668 0.5870 +3312 8673 0.6350 +3312 8678 0.5490 +3312 8697 0.4390 +3312 8725 0.5770 +3312 8761 0.4270 +3312 8766 0.6290 +3312 8767 0.5190 +3312 8772 0.5070 +3312 8775 0.5880 +3312 8867 0.6290 +3312 8878 0.6000 +3312 8905 0.5400 +3312 8907 0.5290 +3312 8934 0.4260 +3312 8988 0.9030 +3312 9026 0.5970 +3312 9045 0.5280 +3312 9093 0.9470 +3312 9097 0.4960 +3312 9100 0.4450 +3312 9140 0.5240 +3312 9146 0.5000 +3312 9218 0.4360 +3312 9261 0.4470 +3312 9343 0.4310 +3312 9349 0.5000 +3312 9354 0.4620 +3312 9361 0.4780 +3312 9401 0.5340 +3312 9416 0.4860 +3312 9474 0.5480 +3312 9520 0.5530 +3312 9529 0.9790 +3312 9530 0.9640 +3312 9531 0.9990 +3312 9532 0.9990 +3312 9584 0.4210 +3312 9588 0.7460 +3312 9590 0.4050 +3312 9601 0.5940 +3312 9631 0.4100 +3312 9632 0.6090 +3312 9636 0.4950 +3312 9685 0.6170 +3312 9688 0.5430 +3312 9698 0.5740 +3312 9776 0.4120 +3312 9782 0.6210 +3312 9818 0.4100 +3312 9821 0.4220 +3312 9829 0.9990 +3312 9868 0.8470 +3312 9883 0.4380 +3312 9892 0.4300 +3312 9908 0.5580 +3312 9972 0.6710 +3312 9978 0.4580 +3312 9987 0.5940 +3312 10013 0.8120 +3312 10015 0.4620 +3312 10018 0.4610 +3312 10044 0.5170 +3312 10049 0.9870 +3312 10053 0.5100 +3312 10061 0.5120 +3312 10072 0.4580 +3312 10084 0.8090 +3312 10092 0.5670 +3312 10097 0.6470 +3312 10130 0.6560 +3312 10131 0.6540 +3312 10134 0.5110 +3312 10144 0.5510 +3312 10146 0.6370 +3312 10211 0.6390 +3312 10213 0.5760 +3312 10226 0.9670 +3312 10236 0.4130 +3312 10241 0.5730 +3312 10273 0.9990 +3312 10277 0.5560 +3312 10286 0.9920 +3312 10294 0.9930 +3312 10376 0.8010 +3312 10381 0.7200 +3312 10382 0.7130 +3312 10383 0.8630 +3312 10397 0.4630 +3312 10399 0.8520 +3312 10419 0.6490 +3312 10432 0.4260 +3312 10436 0.4230 +3312 10450 0.6230 +3312 10456 0.4330 +3312 10469 0.5890 +3312 10471 0.6620 +3312 10492 0.8020 +3312 10525 0.7460 +3312 10527 0.4180 +3312 10533 0.5650 +3312 10549 0.4290 +3312 10574 0.9220 +3312 10575 0.9290 +3312 10576 0.9420 +3312 10594 0.4480 +3312 10598 0.9300 +3312 10605 0.4990 +3312 10618 0.6000 +3312 10628 0.5160 +3312 10693 0.7550 +3312 10694 0.9050 +3312 10717 0.5420 +3312 10726 0.4370 +3312 10728 0.9280 +3312 10752 0.9050 +3312 10762 0.4390 +3312 10808 0.9980 +3312 10815 0.5950 +3312 10856 0.7680 +3312 10869 0.5020 +3312 10907 0.4870 +3312 10910 0.6760 +3312 10915 0.6590 +3312 10933 0.4840 +3312 10935 0.4240 +3312 10961 0.5990 +3312 10963 0.9990 +3312 10971 0.6590 +3312 10985 0.4160 +3312 11010 0.4180 +3312 11034 0.5350 +3312 11080 0.9670 +3312 11091 0.5010 +3312 11097 0.4500 +3312 11124 0.4110 +3312 11140 0.9020 +3312 11171 0.5780 +3312 11193 0.4180 +3312 11231 0.4830 +3312 11315 0.7940 +3312 11329 0.4210 +3312 11337 0.4940 +3312 11338 0.6430 +3312 11345 0.5510 +3312 22824 0.9500 +3312 22863 0.4140 +3312 22926 0.4270 +3312 22933 0.4470 +3312 22938 0.5390 +3312 22948 0.9480 +3312 22999 0.5340 +3312 23054 0.4240 +3312 23076 0.4050 +3312 23165 0.4420 +3312 23193 0.6040 +3312 23225 0.4210 +3312 23234 0.8950 +3312 23279 0.4340 +3312 23317 0.8380 +3312 23341 0.6470 +3312 23400 0.5340 +3312 23405 0.5360 +3312 23411 0.6690 +3312 23431 0.5180 +3312 23435 0.7580 +3312 23450 0.4930 +3312 23479 0.5780 +3312 23511 0.4110 +3312 23521 0.6180 +3312 23557 0.5530 +3312 23636 0.4720 +3312 23640 0.9980 +3312 23645 0.4900 +3312 23710 0.5110 +3312 23753 0.6140 +3312 24148 0.4620 +3312 25813 0.4160 +3312 25822 0.9430 +3312 25828 0.4870 +3312 25942 0.4740 +3312 25949 0.5900 +3312 25977 0.5530 +3312 25978 0.5010 +3312 26098 0.5670 +3312 26130 0.5520 +3312 26135 0.4840 +3312 26227 0.5520 +3312 26258 0.4990 +3312 26270 0.4410 +3312 26278 0.4340 +3312 26353 0.9960 +3312 26523 0.6050 +3312 26973 0.4860 +3312 26986 0.9840 +3312 26993 0.4930 +3312 27000 0.9510 +3312 27102 0.5260 +3312 27129 0.4260 +3312 27131 0.5450 +3312 27161 0.7570 +3312 27243 0.5110 +3312 27304 0.4820 +3312 27338 0.5040 +3312 27339 0.9680 +3312 29765 0.4850 +3312 29927 0.6420 +3312 29978 0.6080 +3312 29979 0.4230 +3312 30816 0.4940 +3312 30849 0.4010 +3312 50943 0.4050 +3312 51004 0.4770 +3312 51121 0.4240 +3312 51141 0.5490 +3312 51160 0.5060 +3312 51182 0.5920 +3312 51230 0.4470 +3312 51271 0.4270 +3312 51314 0.4300 +3312 51340 0.5840 +3312 51398 0.5400 +3312 51422 0.5050 +3312 51429 0.6130 +3312 51465 0.6320 +3312 51501 0.7500 +3312 51503 0.9800 +3312 51567 0.4240 +3312 51574 0.5630 +3312 51593 0.7370 +3312 51652 0.5470 +3312 51726 0.9230 +3312 51729 0.8150 +3312 51806 0.6640 +3312 53371 0.5080 +3312 53632 0.5080 +3312 53938 0.5030 +3312 54106 0.4570 +3312 54205 0.6080 +3312 54431 0.6990 +3312 54557 0.4140 +3312 54617 0.4010 +3312 54788 0.9720 +3312 54885 0.4990 +3312 55054 0.4110 +3312 55172 0.5500 +3312 55234 0.4250 +3312 55294 0.5970 +3312 55330 0.4990 +3312 55340 0.5250 +3312 55466 0.9350 +3312 55626 0.5600 +3312 55666 0.4080 +3312 55696 0.5830 +3312 55706 0.4230 +3312 55735 0.5310 +3312 55746 0.4390 +3312 55757 0.4170 +3312 56259 0.9860 +3312 56521 0.5780 +3312 56949 0.5710 +3312 56984 0.5570 +3312 56990 0.4310 +3312 57003 0.5540 +3312 57122 0.4600 +3312 57192 0.5430 +3312 57461 0.5510 +3312 57541 0.4140 +3312 57761 0.4800 +3312 57805 0.9960 +3312 59286 0.4790 +3312 60673 0.4390 +3312 63924 0.4750 +3312 64083 0.6240 +3312 64215 0.6760 +3312 64374 0.5640 +3312 64422 0.5130 +3312 65018 0.4830 +3312 79023 0.4790 +3312 79047 0.4040 +3312 79091 0.4470 +3312 79094 0.4380 +3312 79139 0.7420 +3312 79643 0.4590 +3312 79657 0.7780 +3312 79705 0.7380 +3312 79711 0.4370 +3312 79720 0.4680 +3312 79902 0.4320 +3312 79923 0.5960 +3312 79962 0.4440 +3312 79968 0.5420 +3312 79982 0.9400 +3312 80267 0.5290 +3312 80273 0.9110 +3312 80331 0.9980 +3312 81567 0.6500 +3312 81570 0.7960 +3312 81572 0.5480 +3312 81631 0.6670 +3312 81929 0.4180 +3312 83932 0.5100 +3312 83933 0.4280 +3312 83983 0.6120 +3312 84062 0.4990 +3312 84447 0.4690 +3312 84557 0.5730 +3312 84617 0.7340 +3312 84790 0.4950 +3312 84950 0.6420 +3312 85476 0.5250 +3312 85479 0.6730 +3312 89853 0.4430 +3312 90441 0.4730 +3312 91582 0.4160 +3312 91782 0.4130 +3312 91860 0.6510 +3312 92421 0.4490 +3312 92552 0.4060 +3312 93185 0.4990 +3312 93343 0.4240 +3312 96459 0.5290 +3312 113444 0.4340 +3312 114984 0.6120 +3312 116835 0.7100 +3312 120379 0.5520 +3312 120526 0.4900 +3312 120892 0.9360 +3312 126393 0.5470 +3312 128240 0.4770 +3312 128866 0.4950 +3312 129401 0.4270 +3312 130340 0.4990 +3312 133482 0.6100 +3312 134266 0.7600 +3312 135138 0.4730 +3312 136332 0.4400 +3312 137492 0.4270 +3312 137902 0.5260 +3312 139341 0.8830 +3312 140432 0.4200 +3312 140609 0.4130 +3312 140679 0.8080 +3312 150160 0.6290 +3312 150274 0.5840 +3312 150353 0.6670 +3312 151194 0.9310 +3312 153527 0.4350 +3312 163688 0.6510 +3312 163702 0.4100 +3312 165721 0.8370 +3312 171024 0.4700 +3312 171425 0.4200 +3312 192670 0.4020 +3312 196541 0.4350 +3312 199746 0.4990 +3312 200894 0.4990 +3312 202052 0.7710 +3312 203068 0.8910 +3312 203228 0.5180 +3312 220988 0.4490 +3312 221302 0.4220 +3312 259217 0.8250 +3312 285126 0.5280 +3312 285282 0.4250 +3312 286451 0.5750 +3312 348995 0.4730 +3312 374407 0.6940 +3312 378884 0.4530 +3312 388552 0.4990 +3312 440503 0.5160 +3312 440686 0.4290 +3312 441531 0.4210 +3312 548645 0.4620 +3312 552891 0.4200 +3312 653604 0.5230 +3312 728378 0.6300 +3312 100101267 0.4470 +3312 100534599 0.5580 +3312 114483834 0.5230 +3313 3315 0.8450 +3313 3316 0.7890 +3313 3320 0.9580 +3313 3326 0.9550 +3313 3329 0.9990 +3313 3336 0.9700 +3313 3337 0.9520 +3313 3338 0.6910 +3313 3376 0.5410 +3313 3396 0.4830 +3313 3421 0.5630 +3313 3551 0.4370 +3313 3554 0.4410 +3313 3658 0.5790 +3313 3708 0.9950 +3313 3709 0.4430 +3313 3710 0.9960 +3313 3837 0.7980 +3313 3848 0.4130 +3313 3856 0.6230 +3313 3857 0.4770 +3313 3875 0.4740 +3313 3921 0.4480 +3313 3954 0.4400 +3313 4089 0.4570 +3313 4137 0.4320 +3313 4141 0.5380 +3313 4189 0.7700 +3313 4191 0.4610 +3313 4285 0.4230 +3313 4287 0.5090 +3313 4512 0.4970 +3313 4528 0.5150 +3313 4580 0.8280 +3313 4597 0.4090 +3313 4609 0.4230 +3313 4682 0.4110 +3313 4691 0.6860 +3313 4704 0.5170 +3313 4706 0.5170 +3313 4714 0.6540 +3313 4720 0.6270 +3313 4722 0.5790 +3313 4723 0.5050 +3313 4728 0.5120 +3313 4729 0.4530 +3313 4792 0.4760 +3313 4830 0.5160 +3313 4831 0.4830 +3313 4833 0.5020 +3313 4849 0.4720 +3313 4869 0.6660 +3313 4904 0.4790 +3313 4927 0.4200 +3313 4928 0.4790 +3313 4967 0.4310 +3313 4976 0.4510 +3313 5009 0.6440 +3313 5018 0.4940 +3313 5034 0.4790 +3313 5042 0.5530 +3313 5052 0.5490 +3313 5071 0.8070 +3313 5096 0.4810 +3313 5162 0.4400 +3313 5166 0.9040 +3313 5223 0.4340 +3313 5245 0.8740 +3313 5250 0.5450 +3313 5315 0.4090 +3313 5431 0.4770 +3313 5481 0.6790 +3313 5611 0.7480 +3313 5654 0.5140 +3313 5683 0.4120 +3313 5684 0.5710 +3313 5685 0.4210 +3313 5686 0.4900 +3313 5688 0.4410 +3313 5694 0.5070 +3313 5707 0.7200 +3313 5708 0.4280 +3313 5717 0.4150 +3313 5831 0.4040 +3313 5832 0.4150 +3313 5885 0.4450 +3313 5893 0.4400 +3313 5903 0.5410 +3313 5917 0.6790 +3313 5966 0.5080 +3313 5970 0.4010 +3313 6124 0.4220 +3313 6125 0.4190 +3313 6128 0.4260 +3313 6130 0.5750 +3313 6132 0.4010 +3313 6135 0.4440 +3313 6141 0.4020 +3313 6156 0.4530 +3313 6160 0.4490 +3313 6175 0.5750 +3313 6181 0.4620 +3313 6182 0.4720 +3313 6187 0.6440 +3313 6188 0.5020 +3313 6189 0.4410 +3313 6202 0.5160 +3313 6203 0.5120 +3313 6208 0.4610 +3313 6223 0.4250 +3313 6224 0.5660 +3313 6229 0.4320 +3313 6233 0.4910 +3313 6256 0.4190 +3313 6280 0.4650 +3313 6389 0.7740 +3313 6390 0.8800 +3313 6391 0.4460 +3313 6396 0.4600 +3313 6472 0.4920 +3313 6500 0.4530 +3313 6613 0.4120 +3313 6622 0.7200 +3313 6647 0.5700 +3313 6648 0.6840 +3313 6687 0.6460 +3313 6737 0.4280 +3313 6742 0.5610 +3313 6767 0.6140 +3313 6775 0.7510 +3313 6782 0.6500 +3313 6897 0.4020 +3313 6901 0.5290 +3313 6923 0.4580 +3313 6950 0.8120 +3313 7001 0.5080 +3313 7019 0.4980 +3313 7052 0.5230 +3313 7096 0.9070 +3313 7097 0.9140 +3313 7099 0.9170 +3313 7157 0.9980 +3313 7161 0.4440 +3313 7167 0.6120 +3313 7175 0.4310 +3313 7178 0.5550 +3313 7184 0.9690 +3313 7203 0.6970 +3313 7248 0.6050 +3313 7263 0.6350 +3313 7266 0.7530 +3313 7277 0.4440 +3313 7278 0.4140 +3313 7280 0.5160 +3313 7284 0.7140 +3313 7295 0.6910 +3313 7317 0.6140 +3313 7337 0.4290 +3313 7384 0.5020 +3313 7385 0.5860 +3313 7386 0.7270 +3313 7414 0.4690 +3313 7415 0.6500 +3313 7416 0.9980 +3313 7417 0.5920 +3313 7419 0.4780 +3313 7453 0.4430 +3313 7494 0.4420 +3313 7514 0.4130 +3313 7529 0.6130 +3313 7531 0.6450 +3313 7532 0.4150 +3313 7534 0.4590 +3313 7846 0.5170 +3313 8021 0.4230 +3313 8050 0.4310 +3313 8086 0.4130 +3313 8087 0.4520 +3313 8192 0.8290 +3313 8195 0.4430 +3313 8202 0.4030 +3313 8266 0.4100 +3313 8314 0.5650 +3313 8361 0.4080 +3313 8453 0.5510 +3313 8480 0.4730 +3313 8562 0.4300 +3313 8565 0.4240 +3313 8604 0.5310 +3313 8665 0.4740 +3313 8668 0.4280 +3313 8678 0.6180 +3313 8803 0.4680 +3313 8834 0.8100 +3313 8886 0.4150 +3313 8988 0.7770 +3313 9044 0.5210 +3313 9052 0.4960 +3313 9054 0.8950 +3313 9093 0.9940 +3313 9125 0.4590 +3313 9131 0.5640 +3313 9217 0.6080 +3313 9218 0.5290 +3313 9221 0.5240 +3313 9255 0.4040 +3313 9361 0.8680 +3313 9377 0.4900 +3313 9451 0.4090 +3313 9512 0.7290 +3313 9529 0.6220 +3313 9530 0.5970 +3313 9531 0.7060 +3313 9532 0.6490 +3313 9588 0.6100 +3313 9601 0.4190 +3313 9631 0.4290 +3313 9688 0.4620 +3313 9782 0.5810 +3313 9804 0.8810 +3313 9818 0.4350 +3313 9840 0.8850 +3313 9868 0.9420 +3313 9883 0.4440 +3313 9927 0.9410 +3313 9972 0.4630 +3313 10049 0.9170 +3313 10059 0.7950 +3313 10063 0.5760 +3313 10102 0.4890 +3313 10105 0.9320 +3313 10128 0.6800 +3313 10130 0.4860 +3313 10131 0.7930 +3313 10134 0.6530 +3313 10146 0.5610 +3313 10165 0.5470 +3313 10213 0.5420 +3313 10229 0.4980 +3313 10245 0.9420 +3313 10273 0.6770 +3313 10280 0.7700 +3313 10294 0.8550 +3313 10352 0.4160 +3313 10367 0.6470 +3313 10376 0.5090 +3313 10381 0.5200 +3313 10382 0.4050 +3313 10383 0.5240 +3313 10399 0.5980 +3313 10440 0.9880 +3313 10452 0.9150 +3313 10469 0.9990 +3313 10476 0.4110 +3313 10525 0.5260 +3313 10539 0.5670 +3313 10549 0.4600 +3313 10574 0.6820 +3313 10575 0.7310 +3313 10576 0.7680 +3313 10598 0.4430 +3313 10632 0.6660 +3313 10651 0.7760 +3313 10693 0.5670 +3313 10694 0.6110 +3313 10728 0.4700 +3313 10730 0.6670 +3313 10762 0.4180 +3313 10808 0.8500 +3313 10845 0.6360 +3313 10935 0.5700 +3313 10939 0.8760 +3313 10953 0.4100 +3313 10961 0.4060 +3313 10963 0.5800 +3313 10971 0.4130 +3313 10985 0.5130 +3313 10989 0.8810 +3313 11019 0.4550 +3313 11080 0.8000 +3313 11097 0.4410 +3313 11222 0.5140 +3313 11231 0.4650 +3313 11315 0.9920 +3313 11331 0.8820 +3313 22809 0.4660 +3313 22824 0.8190 +3313 22826 0.4010 +3313 22926 0.4550 +3313 22948 0.6940 +3313 23019 0.4940 +3313 23071 0.4300 +3313 23165 0.4770 +3313 23203 0.6870 +3313 23225 0.4290 +3313 23234 0.6520 +3313 23241 0.7790 +3313 23277 0.4010 +3313 23279 0.4290 +3313 23317 0.4210 +3313 23341 0.5110 +3313 23405 0.4130 +3313 23410 0.4270 +3313 23479 0.9790 +3313 23511 0.4110 +3313 23521 0.4070 +3313 23636 0.4330 +3313 23640 0.7430 +3313 25790 0.4100 +3313 25813 0.8870 +3313 25822 0.7140 +3313 25828 0.4680 +3313 26284 0.4340 +3313 26330 0.4330 +3313 26353 0.4420 +3313 26354 0.4320 +3313 26517 0.6840 +3313 26519 0.7420 +3313 26520 0.7200 +3313 26521 0.6270 +3313 27000 0.7300 +3313 27235 0.7140 +3313 27247 0.6430 +3313 27429 0.4910 +3313 29090 0.8910 +3313 29103 0.9280 +3313 29105 0.4200 +3313 29928 0.6710 +3313 29968 0.4160 +3313 30001 0.4520 +3313 51024 0.6950 +3313 51025 0.9880 +3313 51027 0.4380 +3313 51069 0.4810 +3313 51081 0.4310 +3313 51142 0.6750 +3313 51161 0.5860 +3313 51182 0.6780 +3313 51218 0.6100 +3313 51287 0.5490 +3313 51314 0.4600 +3313 51501 0.5860 +3313 51540 0.4370 +3313 51726 0.7490 +3313 51807 0.4320 +3313 53371 0.4830 +3313 54205 0.6970 +3313 54431 0.7370 +3313 54543 0.8430 +3313 54788 0.8550 +3313 54927 0.8410 +3313 54948 0.5390 +3313 55143 0.4650 +3313 55177 0.7020 +3313 55210 0.7230 +3313 55288 0.4170 +3313 55466 0.8130 +3313 55669 0.9410 +3313 55699 0.5490 +3313 55706 0.4310 +3313 55735 0.9500 +3313 55746 0.4820 +3313 55780 0.4940 +3313 56942 0.5290 +3313 56945 0.4570 +3313 56947 0.4500 +3313 56990 0.4690 +3313 56993 0.9150 +3313 57107 0.6480 +3313 57122 0.4870 +3313 57128 0.9190 +3313 59286 0.4510 +3313 63929 0.4720 +3313 64087 0.4690 +3313 64215 0.5690 +3313 64374 0.7120 +3313 64423 0.4270 +3313 64963 0.4990 +3313 64969 0.5000 +3313 65003 0.4640 +3313 65018 0.7250 +3313 65993 0.4620 +3313 66005 0.5100 +3313 79023 0.5220 +3313 79026 0.4020 +3313 79135 0.7620 +3313 79139 0.4390 +3313 79145 0.5200 +3313 79738 0.4390 +3313 79861 0.4430 +3313 79902 0.4220 +3313 79961 0.4240 +3313 79962 0.4510 +3313 79982 0.7560 +3313 80024 0.4390 +3313 80224 0.4160 +3313 80258 0.4510 +3313 80273 0.9990 +3313 80320 0.4350 +3313 80331 0.7030 +3313 81570 0.8400 +3313 81631 0.4740 +3313 81689 0.6580 +3313 81929 0.4430 +3313 83752 0.5440 +3313 83932 0.5100 +3313 84134 0.6750 +3313 84140 0.4060 +3313 84260 0.5940 +3313 84269 0.5340 +3313 84277 0.5420 +3313 84303 0.7750 +3313 84617 0.5190 +3313 84790 0.5170 +3313 84886 0.7290 +3313 85476 0.5760 +3313 85479 0.7050 +3313 90550 0.8450 +3313 90624 0.6890 +3313 90639 0.5950 +3313 91689 0.5590 +3313 92609 0.8910 +3313 92935 0.4080 +3313 94033 0.5400 +3313 96459 0.4560 +3313 112398 0.4750 +3313 112714 0.4440 +3313 112812 0.6140 +3313 113444 0.6500 +3313 113457 0.4420 +3313 114327 0.4290 +3313 114879 0.4200 +3313 115209 0.4640 +3313 116835 0.7900 +3313 118987 0.5180 +3313 120526 0.6710 +3313 120892 0.6280 +3313 122961 0.6510 +3313 125988 0.7600 +3313 126393 0.4490 +3313 129401 0.4520 +3313 131118 0.9980 +3313 131474 0.4710 +3313 133015 0.4290 +3313 134266 0.9720 +3313 135138 0.4290 +3313 139322 0.7800 +3313 139341 0.7070 +3313 140432 0.4510 +3313 140823 0.7330 +3313 150274 0.9820 +3313 150353 0.6660 +3313 151194 0.4400 +3313 151651 0.5070 +3313 165324 0.6410 +3313 165721 0.8100 +3313 169792 0.4210 +3313 171425 0.4520 +3313 197257 0.5420 +3313 197335 0.7800 +3313 200205 0.5150 +3313 202052 0.6750 +3313 203068 0.5410 +3313 219670 0.5120 +3313 221154 0.6440 +3313 257202 0.5570 +3313 259217 0.8050 +3313 285126 0.5150 +3313 285282 0.4590 +3313 286097 0.5360 +3313 345778 0.8030 +3313 347688 0.4090 +3313 347733 0.4500 +3313 348995 0.4410 +3313 374407 0.6500 +3313 387990 0.6690 +3313 388753 0.5980 +3313 400916 0.6300 +3313 401505 0.8230 +3313 440574 0.8300 +3313 493869 0.5700 +3313 548645 0.4610 +3313 552891 0.4200 +3313 644096 0.7780 +3313 728378 0.7390 +3313 728489 0.9440 +3313 100101267 0.4520 +3313 100188893 0.6980 +3313 100272147 0.5260 +3313 100287932 0.9660 +3315 3320 0.9570 +3315 3326 0.9520 +3315 3329 0.6670 +3315 3336 0.6670 +3315 3337 0.8920 +3315 3485 0.4850 +3315 3551 0.8770 +3315 3553 0.5060 +3315 3569 0.5420 +3315 3586 0.4190 +3315 3630 0.5700 +3315 3725 0.5940 +3315 3921 0.4570 +3315 3925 0.4260 +3315 4000 0.4670 +3315 4137 0.7070 +3315 4170 0.4010 +3315 4217 0.4320 +3315 4236 0.6350 +3315 4313 0.4070 +3315 4609 0.5570 +3315 4741 0.4080 +3315 4747 0.5400 +3315 4790 0.4360 +3315 4792 0.7240 +3315 4830 0.5750 +3315 4831 0.4670 +3315 4869 0.4200 +3315 4956 0.6170 +3315 5033 0.4020 +3315 5052 0.4970 +3315 5245 0.4330 +3315 5317 0.4660 +3315 5339 0.9640 +3315 5340 0.4160 +3315 5365 0.4140 +3315 5443 0.4830 +3315 5494 0.4320 +3315 5578 0.4440 +3315 5580 0.7060 +3315 5587 0.7310 +3315 5595 0.6070 +3315 5596 0.6350 +3315 5597 0.6120 +3315 5599 0.4520 +3315 5600 0.8090 +3315 5603 0.6130 +3315 5604 0.5220 +3315 5606 0.5370 +3315 5608 0.4380 +3315 5701 0.5440 +3315 5728 0.4020 +3315 5829 0.5340 +3315 6195 0.4470 +3315 6233 0.5890 +3315 6240 0.4700 +3315 6294 0.5580 +3315 6300 0.6180 +3315 6506 0.6010 +3315 6613 0.4680 +3315 6622 0.8530 +3315 6647 0.6660 +3315 6648 0.4230 +3315 6657 0.4530 +3315 6667 0.4150 +3315 6672 0.4740 +3315 6714 0.6780 +3315 6717 0.4780 +3315 6773 0.4840 +3315 6774 0.7970 +3315 7001 0.5390 +3315 7040 0.4440 +3315 7041 0.7030 +3315 7099 0.4150 +3315 7124 0.6500 +3315 7157 0.9550 +3315 7178 0.5020 +3315 7184 0.6700 +3315 7295 0.4070 +3315 7311 0.5220 +3315 7314 0.7720 +3315 7316 0.5730 +3315 7329 0.8220 +3315 7414 0.4470 +3315 7415 0.6130 +3315 7431 0.5970 +3315 7534 0.7660 +3315 7837 0.5410 +3315 7867 0.9790 +3315 8290 0.5370 +3315 8356 0.5400 +3315 8550 0.9950 +3315 8678 0.5200 +3315 8837 0.4620 +3315 8974 0.4340 +3315 9138 0.4650 +3315 9261 0.9990 +3315 9343 0.7290 +3315 9429 0.4460 +3315 9446 0.4260 +3315 9518 0.5070 +3315 9529 0.5060 +3315 9531 0.9800 +3315 9532 0.4080 +3315 9563 0.8190 +3315 9588 0.5810 +3315 10013 0.5650 +3315 10015 0.4680 +3315 10049 0.4520 +3315 10075 0.5420 +3315 10131 0.5010 +3315 10273 0.8040 +3315 10454 0.5440 +3315 10525 0.4070 +3315 10598 0.4790 +3315 10657 0.4610 +3315 10691 0.5590 +3315 10728 0.4670 +3315 10763 0.5550 +3315 10808 0.8720 +3315 10961 0.4890 +3315 10963 0.6150 +3315 10971 0.5450 +3315 11080 0.4030 +3315 11140 0.4780 +3315 11315 0.4160 +3315 23336 0.5490 +3315 23435 0.4290 +3315 23450 0.6750 +3315 23640 0.4020 +3315 25764 0.4090 +3315 26136 0.4750 +3315 26205 0.5270 +3315 26353 0.9400 +3315 26986 0.8420 +3315 26993 0.4010 +3315 27242 0.4440 +3315 27339 0.6030 +3315 54205 0.9930 +3315 54434 0.4220 +3315 55466 0.4100 +3315 79663 0.9110 +3315 80267 0.4700 +3315 81631 0.4490 +3315 84292 0.5070 +3315 85477 0.4100 +3315 94086 0.4600 +3315 120892 0.6710 +3315 126393 0.9020 +3315 137902 0.5370 +3315 165721 0.4070 +3315 440093 0.5380 +3315 440686 0.5380 +3315 653604 0.5400 +3316 3320 0.9240 +3316 3326 0.9310 +3316 3329 0.5870 +3316 3336 0.5980 +3316 3337 0.7820 +3316 3479 0.4050 +3316 3485 0.4790 +3316 3551 0.7290 +3316 3553 0.4910 +3316 3569 0.5160 +3316 3586 0.4120 +3316 3717 0.4220 +3316 3725 0.5740 +3316 4151 0.4240 +3316 4741 0.4040 +3316 4747 0.5270 +3316 4790 0.4060 +3316 4792 0.6780 +3316 4830 0.4900 +3316 4831 0.4040 +3316 4956 0.4600 +3316 5339 0.9540 +3316 5580 0.4170 +3316 5587 0.4010 +3316 5595 0.5960 +3316 5599 0.4420 +3316 5600 0.9630 +3316 5603 0.9590 +3316 5606 0.4820 +3316 5608 0.4210 +3316 5701 0.5140 +3316 5829 0.4810 +3316 6195 0.4480 +3316 6240 0.4520 +3316 6294 0.5660 +3316 6300 0.9600 +3316 6506 0.5560 +3316 6604 0.4680 +3316 6622 0.7360 +3316 6647 0.6170 +3316 6672 0.4470 +3316 6714 0.6650 +3316 6717 0.4700 +3316 6774 0.7000 +3316 7001 0.4260 +3316 7041 0.4250 +3316 7124 0.6540 +3316 7157 0.7330 +3316 7184 0.5620 +3316 7189 0.4110 +3316 7273 0.4280 +3316 7314 0.5430 +3316 7329 0.7550 +3316 7415 0.5140 +3316 7431 0.6430 +3316 7534 0.5400 +3316 7837 0.4800 +3316 8290 0.5380 +3316 8356 0.5370 +3316 8477 0.4030 +3316 8550 0.8620 +3316 8837 0.4610 +3316 8988 0.9590 +3316 9138 0.4550 +3316 9261 0.8220 +3316 9529 0.4920 +3316 9531 0.7790 +3316 9563 0.7110 +3316 9588 0.4480 +3316 10273 0.7610 +3316 10454 0.5470 +3316 10657 0.4600 +3316 10691 0.6050 +3316 10738 0.4870 +3316 10763 0.5500 +3316 10808 0.6890 +3316 10963 0.4870 +3316 10971 0.4930 +3316 11140 0.4520 +3316 22824 0.4690 +3316 23336 0.5150 +3316 25802 0.5390 +3316 26018 0.4250 +3316 26205 0.5480 +3316 26353 0.9490 +3316 27129 0.6810 +3316 27242 0.4540 +3316 54205 0.9890 +3316 79663 0.8820 +3316 84925 0.4040 +3316 94086 0.6900 +3316 116835 0.4210 +3316 126393 0.5650 +3316 137902 0.4840 +3316 440093 0.5360 +3316 440686 0.5360 +3316 653604 0.5370 +3320 3326 0.9970 +3320 3329 0.9630 +3320 3336 0.9420 +3320 3337 0.9990 +3320 3347 0.6500 +3320 3458 0.5080 +3320 3479 0.4710 +3320 3480 0.7910 +3320 3551 0.9750 +3320 3552 0.6010 +3320 3553 0.8000 +3320 3558 0.4390 +3320 3565 0.4310 +3320 3569 0.7380 +3320 3570 0.5000 +3320 3576 0.4500 +3320 3586 0.4580 +3320 3611 0.6580 +3320 3615 0.4450 +3320 3623 0.4740 +3320 3624 0.4710 +3320 3625 0.4750 +3320 3630 0.5490 +3320 3654 0.5930 +3320 3659 0.6620 +3320 3661 0.9160 +3320 3662 0.5250 +3320 3685 0.5990 +3320 3690 0.7220 +3320 3692 0.4850 +3320 3702 0.4790 +3320 3708 0.4960 +3320 3716 0.5160 +3320 3717 0.7910 +3320 3718 0.4130 +3320 3725 0.7980 +3320 3732 0.5070 +3320 3757 0.9580 +3320 3791 0.9540 +3320 3815 0.7080 +3320 3824 0.4390 +3320 3837 0.6580 +3320 3845 0.8180 +3320 3880 0.5220 +3320 3895 0.4720 +3320 3920 0.8290 +3320 3921 0.6770 +3320 3958 0.4800 +3320 3964 0.4250 +3320 3973 0.4200 +3320 3984 0.8820 +3320 3985 0.5700 +3320 4000 0.4020 +3320 4001 0.4530 +3320 4035 0.9940 +3320 4048 0.5030 +3320 4067 0.8090 +3320 4072 0.5110 +3320 4077 0.4950 +3320 4082 0.4210 +3320 4089 0.4340 +3320 4092 0.5180 +3320 4128 0.4610 +3320 4137 0.9590 +3320 4141 0.5200 +3320 4170 0.8380 +3320 4189 0.5810 +3320 4191 0.4050 +3320 4193 0.9090 +3320 4194 0.4190 +3320 4214 0.6310 +3320 4215 0.5430 +3320 4217 0.6690 +3320 4218 0.7600 +3320 4233 0.7680 +3320 4248 0.4280 +3320 4255 0.4860 +3320 4282 0.5110 +3320 4287 0.6370 +3320 4296 0.6630 +3320 4303 0.4160 +3320 4306 0.8640 +3320 4313 0.8310 +3320 4318 0.4890 +3320 4342 0.9280 +3320 4486 0.4780 +3320 4493 0.4130 +3320 4512 0.4890 +3320 4594 0.4950 +3320 4609 0.9750 +3320 4613 0.4350 +3320 4627 0.6540 +3320 4629 0.5360 +3320 4654 0.4610 +3320 4678 0.8340 +3320 4690 0.4380 +3320 4691 0.6870 +3320 4735 0.4820 +3320 4738 0.4520 +3320 4780 0.6870 +3320 4790 0.6340 +3320 4791 0.5630 +3320 4792 0.5600 +3320 4793 0.5450 +3320 4809 0.4760 +3320 4820 0.6190 +3320 4830 0.4510 +3320 4831 0.6060 +3320 4842 0.6270 +3320 4843 0.7310 +3320 4846 0.9990 +3320 4862 0.4060 +3320 4864 0.4990 +3320 4869 0.8040 +3320 4893 0.8170 +3320 4904 0.4760 +3320 4905 0.5670 +3320 4914 0.6530 +3320 4948 0.5040 +3320 4973 0.6460 +3320 5034 0.7110 +3320 5036 0.5270 +3320 5048 0.5670 +3320 5052 0.7530 +3320 5058 0.6370 +3320 5062 0.6280 +3320 5063 0.5300 +3320 5071 0.9240 +3320 5093 0.6030 +3320 5094 0.4290 +3320 5116 0.8370 +3320 5129 0.5340 +3320 5156 0.5970 +3320 5159 0.6870 +3320 5166 0.4060 +3320 5170 0.8450 +3320 5202 0.5300 +3320 5204 0.5110 +3320 5230 0.7130 +3320 5232 0.4530 +3320 5241 0.9900 +3320 5243 0.4190 +3320 5245 0.6170 +3320 5265 0.4450 +3320 5289 0.5160 +3320 5290 0.8370 +3320 5292 0.5700 +3320 5294 0.5470 +3320 5295 0.7880 +3320 5296 0.5780 +3320 5315 0.5900 +3320 5321 0.5490 +3320 5328 0.4540 +3320 5335 0.6690 +3320 5347 0.9570 +3320 5361 0.5130 +3320 5362 0.5110 +3320 5366 0.4070 +3320 5433 0.4270 +3320 5434 0.5320 +3320 5437 0.4920 +3320 5464 0.5180 +3320 5465 0.8110 +3320 5467 0.5300 +3320 5468 0.6950 +3320 5478 0.7330 +3320 5479 0.5230 +3320 5481 0.9990 +3320 5499 0.4380 +3320 5515 0.5100 +3320 5518 0.7090 +3320 5536 0.9970 +3320 5538 0.4250 +3320 5562 0.5650 +3320 5563 0.5320 +3320 5564 0.4010 +3320 5566 0.7940 +3320 5567 0.7240 +3320 5568 0.5510 +3320 5580 0.7800 +3320 5581 0.5720 +3320 5589 0.4530 +3320 5590 0.4180 +3320 5591 0.7330 +3320 5592 0.6020 +3320 5594 0.9410 +3320 5595 0.8230 +3320 5598 0.4480 +3320 5599 0.7320 +3320 5600 0.6110 +3320 5603 0.4250 +3320 5604 0.7980 +3320 5605 0.4920 +3320 5607 0.4450 +3320 5610 0.6320 +3320 5611 0.6070 +3320 5612 0.4360 +3320 5621 0.7600 +3320 5682 0.5270 +3320 5683 0.5410 +3320 5684 0.6470 +3320 5685 0.5900 +3320 5686 0.6400 +3320 5687 0.5820 +3320 5688 0.6890 +3320 5689 0.4120 +3320 5690 0.4030 +3320 5693 0.6190 +3320 5695 0.4260 +3320 5700 0.4080 +3320 5704 0.4790 +3320 5705 0.5270 +3320 5706 0.4750 +3320 5707 0.5890 +3320 5708 0.4790 +3320 5710 0.6800 +3320 5713 0.4530 +3320 5716 0.4840 +3320 5717 0.4860 +3320 5718 0.4210 +3320 5720 0.5150 +3320 5721 0.5420 +3320 5728 0.8030 +3320 5743 0.4700 +3320 5747 0.7160 +3320 5753 0.4120 +3320 5757 0.5400 +3320 5770 0.5700 +3320 5783 0.4120 +3320 5829 0.6300 +3320 5868 0.4130 +3320 5873 0.4080 +3320 5879 0.6490 +3320 5888 0.4990 +3320 5893 0.6160 +3320 5894 0.9850 +3320 5901 0.5320 +3320 5903 0.5230 +3320 5913 0.4490 +3320 5914 0.4010 +3320 5920 0.6650 +3320 5928 0.4110 +3320 5956 0.4300 +3320 5961 0.4160 +3320 5970 0.5250 +3320 5979 0.5400 +3320 6009 0.5250 +3320 6010 0.5480 +3320 6035 0.5820 +3320 6048 0.5500 +3320 6093 0.7840 +3320 6122 0.6220 +3320 6124 0.6090 +3320 6125 0.7180 +3320 6128 0.4820 +3320 6129 0.5660 +3320 6130 0.4210 +3320 6132 0.5080 +3320 6133 0.4190 +3320 6135 0.4960 +3320 6136 0.4520 +3320 6137 0.4480 +3320 6138 0.4240 +3320 6139 0.4200 +3320 6141 0.4270 +3320 6147 0.4720 +3320 6155 0.4100 +3320 6156 0.4040 +3320 6161 0.5480 +3320 6175 0.5600 +3320 6181 0.4730 +3320 6187 0.6050 +3320 6188 0.8560 +3320 6189 0.7920 +3320 6191 0.4410 +3320 6194 0.7900 +3320 6195 0.6860 +3320 6198 0.8370 +3320 6199 0.7060 +3320 6202 0.5000 +3320 6203 0.4720 +3320 6206 0.4180 +3320 6207 0.5050 +3320 6217 0.5350 +3320 6224 0.6100 +3320 6231 0.4490 +3320 6233 0.7070 +3320 6241 0.4280 +3320 6271 0.5470 +3320 6280 0.4860 +3320 6295 0.4590 +3320 6310 0.4980 +3320 6311 0.4810 +3320 6400 0.5770 +3320 6418 0.5470 +3320 6426 0.4670 +3320 6428 0.4410 +3320 6446 0.4880 +3320 6449 0.9430 +3320 6461 0.5210 +3320 6464 0.6800 +3320 6500 0.8180 +3320 6502 0.5670 +3320 6513 0.4100 +3320 6520 0.5180 +3320 6576 0.4850 +3320 6597 0.5910 +3320 6613 0.5990 +3320 6622 0.7430 +3320 6624 0.6730 +3320 6635 0.4380 +3320 6647 0.7790 +3320 6648 0.5180 +3320 6654 0.6270 +3320 6657 0.5140 +3320 6667 0.6670 +3320 6672 0.8460 +3320 6674 0.5480 +3320 6697 0.5760 +3320 6714 0.9990 +3320 6717 0.5060 +3320 6721 0.5260 +3320 6732 0.6460 +3320 6741 0.4070 +3320 6748 0.4310 +3320 6749 0.6230 +3320 6767 0.9970 +3320 6772 0.8680 +3320 6774 0.9710 +3320 6776 0.4250 +3320 6777 0.4250 +3320 6778 0.5990 +3320 6782 0.6770 +3320 6790 0.5780 +3320 6794 0.8820 +3320 6795 0.4780 +3320 6812 0.4970 +3320 6833 0.4680 +3320 6850 0.5980 +3320 6885 0.7520 +3320 6908 0.4300 +3320 6921 0.6110 +3320 6950 0.9060 +3320 7001 0.4690 +3320 7011 0.8930 +3320 7013 0.7480 +3320 7015 0.9980 +3320 7040 0.4340 +3320 7042 0.5030 +3320 7046 0.9040 +3320 7048 0.9590 +3320 7082 0.4650 +3320 7090 0.6280 +3320 7097 0.9820 +3320 7098 0.5900 +3320 7099 0.9870 +3320 7100 0.5440 +3320 7124 0.5990 +3320 7153 0.4440 +3320 7157 0.9990 +3320 7167 0.7000 +3320 7170 0.4840 +3320 7178 0.6390 +3320 7182 0.5450 +3320 7184 0.9500 +3320 7186 0.4570 +3320 7203 0.7670 +3320 7249 0.7450 +3320 7251 0.9080 +3320 7262 0.4730 +3320 7265 0.8560 +3320 7266 0.9700 +3320 7268 0.8870 +3320 7273 0.5160 +3320 7276 0.4620 +3320 7280 0.5670 +3320 7283 0.4990 +3320 7284 0.5240 +3320 7295 0.7240 +3320 7296 0.4530 +3320 7297 0.4540 +3320 7305 0.4070 +3320 7311 0.6360 +3320 7314 0.7260 +3320 7316 0.7350 +3320 7317 0.6020 +3320 7318 0.5580 +3320 7321 0.4260 +3320 7322 0.4040 +3320 7323 0.5920 +3320 7334 0.7730 +3320 7335 0.5480 +3320 7337 0.5770 +3320 7341 0.5100 +3320 7345 0.9000 +3320 7347 0.4510 +3320 7385 0.4640 +3320 7389 0.5240 +3320 7403 0.6560 +3320 7404 0.7600 +3320 7411 0.5400 +3320 7414 0.6080 +3320 7415 0.9330 +3320 7416 0.7900 +3320 7417 0.5320 +3320 7419 0.4110 +3320 7428 0.6340 +3320 7430 0.9540 +3320 7431 0.7010 +3320 7465 0.7920 +3320 7494 0.5860 +3320 7514 0.5720 +3320 7515 0.4560 +3320 7520 0.4930 +3320 7529 0.6060 +3320 7531 0.7880 +3320 7532 0.6890 +3320 7533 0.4550 +3320 7534 0.8010 +3320 7535 0.5130 +3320 7706 0.4490 +3320 7837 0.6180 +3320 7846 0.7440 +3320 7852 0.7460 +3320 7919 0.4220 +3320 8065 0.8840 +3320 8079 0.5830 +3320 8100 0.7300 +3320 8106 0.6070 +3320 8192 0.5530 +3320 8195 0.6330 +3320 8200 0.7660 +3320 8202 0.5170 +3320 8204 0.5790 +3320 8237 0.4040 +3320 8266 0.5010 +3320 8290 0.8050 +3320 8338 0.5970 +3320 8349 0.4360 +3320 8350 0.5320 +3320 8351 0.5310 +3320 8352 0.5740 +3320 8353 0.5770 +3320 8354 0.5340 +3320 8355 0.5290 +3320 8356 0.7930 +3320 8357 0.5420 +3320 8358 0.5240 +3320 8361 0.7310 +3320 8369 0.7230 +3320 8408 0.4880 +3320 8445 0.4240 +3320 8451 0.4640 +3320 8452 0.4560 +3320 8454 0.6720 +3320 8468 0.9650 +3320 8471 0.5080 +3320 8517 0.9370 +3320 8536 0.5180 +3320 8553 0.4420 +3320 8578 0.5470 +3320 8607 0.9380 +3320 8621 0.4190 +3320 8655 0.8790 +3320 8658 0.5280 +3320 8661 0.4360 +3320 8662 0.5360 +3320 8665 0.5660 +3320 8666 0.4050 +3320 8668 0.5150 +3320 8678 0.7930 +3320 8717 0.7210 +3320 8721 0.5060 +3320 8725 0.5970 +3320 8737 0.9880 +3320 8766 0.8850 +3320 8767 0.9380 +3320 8772 0.6670 +3320 8795 0.5850 +3320 8801 0.5640 +3320 8826 0.5350 +3320 8829 0.5740 +3320 8837 0.5650 +3320 8844 0.7900 +3320 8850 0.6220 +3320 8856 0.5700 +3320 8874 0.5040 +3320 8878 0.6660 +3320 8881 0.4580 +3320 8936 0.5100 +3320 8968 0.5290 +3320 8976 0.4310 +3320 8988 0.9140 +3320 8991 0.4580 +3320 9020 0.7540 +3320 9021 0.5490 +3320 9034 0.4140 +3320 9049 0.9980 +3320 9093 0.7000 +3320 9097 0.4550 +3320 9113 0.4910 +3320 9126 0.4900 +3320 9132 0.4080 +3320 9140 0.4370 +3320 9212 0.8800 +3320 9271 0.8230 +3320 9343 0.7150 +3320 9354 0.5110 +3320 9360 0.8270 +3320 9361 0.6400 +3320 9368 0.8290 +3320 9429 0.5320 +3320 9451 0.8660 +3320 9474 0.5110 +3320 9475 0.6430 +3320 9521 0.4360 +3320 9528 0.5700 +3320 9530 0.4900 +3320 9531 0.8950 +3320 9532 0.7320 +3320 9542 0.5170 +3320 9564 0.7600 +3320 9572 0.6790 +3320 9584 0.5030 +3320 9588 0.4430 +3320 9589 0.5960 +3320 9601 0.4610 +3320 9611 0.9090 +3320 9641 0.4400 +3320 9669 0.4230 +3320 9675 0.7100 +3320 9695 0.4300 +3320 9734 0.4570 +3320 9759 0.9750 +3320 9782 0.6020 +3320 9804 0.6930 +3320 9817 0.9490 +3320 9844 0.5040 +3320 9861 0.4580 +3320 9868 0.9990 +3320 9894 0.5270 +3320 9927 0.5480 +3320 9931 0.4610 +3320 9970 0.7030 +3320 9971 0.5600 +3320 9978 0.6340 +3320 9987 0.4420 +3320 10000 0.9540 +3320 10006 0.5280 +3320 10013 0.9990 +3320 10014 0.5000 +3320 10015 0.4470 +3320 10018 0.6570 +3320 10044 0.5520 +3320 10049 0.8210 +3320 10059 0.5480 +3320 10061 0.4650 +3320 10075 0.4990 +3320 10105 0.9820 +3320 10110 0.6420 +3320 10121 0.8450 +3320 10130 0.4710 +3320 10131 0.5930 +3320 10133 0.5910 +3320 10146 0.5350 +3320 10152 0.5280 +3320 10163 0.5220 +3320 10188 0.8410 +3320 10197 0.4580 +3320 10211 0.6120 +3320 10213 0.6630 +3320 10226 0.6080 +3320 10241 0.5710 +3320 10273 0.9990 +3320 10286 0.4740 +3320 10294 0.8990 +3320 10312 0.4230 +3320 10320 0.4110 +3320 10371 0.5360 +3320 10376 0.4750 +3320 10381 0.6240 +3320 10382 0.5800 +3320 10383 0.6910 +3320 10392 0.8560 +3320 10397 0.7290 +3320 10399 0.9100 +3320 10419 0.5250 +3320 10427 0.4770 +3320 10452 0.7220 +3320 10454 0.7040 +3320 10456 0.5980 +3320 10458 0.5040 +3320 10471 0.5150 +3320 10492 0.4820 +3320 10499 0.6070 +3320 10524 0.6380 +3320 10525 0.8420 +3320 10527 0.4510 +3320 10528 0.4170 +3320 10533 0.4800 +3320 10538 0.7500 +3320 10540 0.9080 +3320 10574 0.8490 +3320 10575 0.7830 +3320 10576 0.8760 +3320 10594 0.5620 +3320 10598 0.9990 +3320 10606 0.4410 +3320 10614 0.4130 +3320 10616 0.6050 +3320 10618 0.4060 +3320 10628 0.6920 +3320 10671 0.4100 +3320 10693 0.5130 +3320 10694 0.8230 +3320 10718 0.4990 +3320 10726 0.7500 +3320 10728 0.9990 +3320 10730 0.4750 +3320 10746 0.6130 +3320 10758 0.7490 +3320 10787 0.5500 +3320 10808 0.9380 +3320 10810 0.5860 +3320 10840 0.4100 +3320 10845 0.4700 +3320 10856 0.8860 +3320 10869 0.9050 +3320 10891 0.4300 +3320 10910 0.9990 +3320 10923 0.4450 +3320 10928 0.4860 +3320 10935 0.4070 +3320 10953 0.8440 +3320 10963 0.9990 +3320 10971 0.7630 +3320 10987 0.4510 +3320 10992 0.5110 +3320 11022 0.4080 +3320 11035 0.9660 +3320 11080 0.7700 +3320 11101 0.4200 +3320 11104 0.4360 +3320 11128 0.4700 +3320 11140 0.9990 +3320 11145 0.5360 +3320 11200 0.4250 +3320 11258 0.8000 +3320 11315 0.7430 +3320 11331 0.4140 +3320 11337 0.4120 +3320 11338 0.4120 +3320 11345 0.6410 +3320 22800 0.5430 +3320 22824 0.8350 +3320 22836 0.4090 +3320 22919 0.5010 +3320 22926 0.5510 +3320 22933 0.6130 +3320 22938 0.4570 +3320 22948 0.8680 +3320 22953 0.4070 +3320 22954 0.5070 +3320 23019 0.4980 +3320 23020 0.4180 +3320 23028 0.4050 +3320 23049 0.5500 +3320 23057 0.7780 +3320 23085 0.4090 +3320 23118 0.4520 +3320 23135 0.6520 +3320 23191 0.5100 +3320 23221 0.7540 +3320 23234 0.5100 +3320 23239 0.4470 +3320 23264 0.5290 +3320 23307 0.4060 +3320 23326 0.5380 +3320 23331 0.4690 +3320 23341 0.4700 +3320 23354 0.5230 +3320 23381 0.5030 +3320 23386 0.6120 +3320 23405 0.8030 +3320 23411 0.8030 +3320 23435 0.7610 +3320 23476 0.6760 +3320 23521 0.5510 +3320 23524 0.4250 +3320 23636 0.5220 +3320 23640 0.8700 +3320 23643 0.4830 +3320 23710 0.7090 +3320 23746 0.8670 +3320 23759 0.4840 +3320 23770 0.9950 +3320 25789 0.5510 +3320 25813 0.5930 +3320 25822 0.5440 +3320 25828 0.6170 +3320 25895 0.5620 +3320 25942 0.7840 +3320 26135 0.5030 +3320 26168 0.7070 +3320 26233 0.6400 +3320 26268 0.4420 +3320 26270 0.4330 +3320 26330 0.4190 +3320 26353 0.8610 +3320 26523 0.9530 +3320 26548 0.8470 +3320 26747 0.5230 +3320 26973 0.9490 +3320 26986 0.4680 +3320 26999 0.5240 +3320 27000 0.4190 +3320 27006 0.5420 +3320 27035 0.7900 +3320 27044 0.4200 +3320 27068 0.4380 +3320 27101 0.8630 +3320 27102 0.5890 +3320 27129 0.4540 +3320 27148 0.5220 +3320 27161 0.9970 +3320 27306 0.4070 +3320 27327 0.5050 +3320 27436 0.6560 +3320 29066 0.4740 +3320 29110 0.9250 +3320 29126 0.4540 +3320 29789 0.4480 +3320 29904 0.5220 +3320 29927 0.5000 +3320 29978 0.4260 +3320 29979 0.4590 +3320 30816 0.5930 +3320 50506 0.4580 +3320 51070 0.5250 +3320 51143 0.5350 +3320 51163 0.4330 +3320 51164 0.4250 +3320 51182 0.7250 +3320 51185 0.6190 +3320 51256 0.5400 +3320 51430 0.6560 +3320 51447 0.6840 +3320 51455 0.4450 +3320 51465 0.4920 +3320 51512 0.5110 +3320 51564 0.4500 +3320 51574 0.4400 +3320 51602 0.4670 +3320 51691 0.5690 +3320 51726 0.6380 +3320 51773 0.9810 +3320 51806 0.9960 +3320 53905 0.4970 +3320 54101 0.5560 +3320 54205 0.7830 +3320 54431 0.6900 +3320 54432 0.4080 +3320 54456 0.4880 +3320 54514 0.4780 +3320 54583 0.7820 +3320 54769 0.4010 +3320 54788 0.5920 +3320 54801 0.5140 +3320 54861 0.4610 +3320 54930 0.4990 +3320 54970 0.4690 +3320 54979 0.5100 +3320 55010 0.5590 +3320 55011 0.9870 +3320 55124 0.7060 +3320 55142 0.5070 +3320 55143 0.4150 +3320 55172 0.6120 +3320 55466 0.8370 +3320 55558 0.4990 +3320 55559 0.4990 +3320 55611 0.4210 +3320 55626 0.4930 +3320 55651 0.4190 +3320 55664 0.9720 +3320 55735 0.4780 +3320 55780 0.4450 +3320 55845 0.5080 +3320 55860 0.4860 +3320 55869 0.8410 +3320 55898 0.9460 +3320 55902 0.4430 +3320 55914 0.8090 +3320 56165 0.4670 +3320 56950 0.9280 +3320 56990 0.4020 +3320 56993 0.6390 +3320 57016 0.4930 +3320 57026 0.6970 +3320 57110 0.5100 +3320 57118 0.5230 +3320 57379 0.5720 +3320 57403 0.4880 +3320 57491 0.5440 +3320 57506 0.7730 +3320 57510 0.5300 +3320 57521 0.6980 +3320 57600 0.5270 +3320 58480 0.5110 +3320 58484 0.4990 +3320 60489 0.5500 +3320 60495 0.4160 +3320 60681 0.5000 +3320 63916 0.5040 +3320 63943 0.9900 +3320 64101 0.4840 +3320 64127 0.5760 +3320 64344 0.7140 +3320 64374 0.4270 +3320 64754 0.9360 +3320 64802 0.4980 +3320 64848 0.4070 +3320 65018 0.9570 +3320 65061 0.6080 +3320 65975 0.4900 +3320 79031 0.4890 +3320 79109 0.4850 +3320 79139 0.5690 +3320 79400 0.4400 +3320 79441 0.5160 +3320 79577 0.5520 +3320 79657 0.9900 +3320 79705 0.4170 +3320 79738 0.4570 +3320 79792 0.4290 +3320 79861 0.4460 +3320 79866 0.5130 +3320 79885 0.4930 +3320 79962 0.4490 +3320 79982 0.5260 +3320 80185 0.7370 +3320 80273 0.7450 +3320 80331 0.7470 +3320 80351 0.5170 +3320 80854 0.5200 +3320 81567 0.4580 +3320 81570 0.8740 +3320 81631 0.5550 +3320 81669 0.4050 +3320 83443 0.4460 +3320 83743 0.4020 +3320 83752 0.5360 +3320 83933 0.4570 +3320 83983 0.7600 +3320 84140 0.4570 +3320 84260 0.6150 +3320 84335 0.5680 +3320 84447 0.5000 +3320 84516 0.4200 +3320 84525 0.6570 +3320 84557 0.4050 +3320 84617 0.5610 +3320 84665 0.4510 +3320 84790 0.4410 +3320 84896 0.5480 +3320 84944 0.4180 +3320 84988 0.7680 +3320 85440 0.4150 +3320 85479 0.5110 +3320 85481 0.6020 +3320 89790 0.5040 +3320 90865 0.4780 +3320 91584 0.4990 +3320 91646 0.5000 +3320 91662 0.8170 +3320 91860 0.9960 +3320 91875 0.5570 +3320 92335 0.4180 +3320 92552 0.4260 +3320 93323 0.5040 +3320 93649 0.4710 +3320 93661 0.4620 +3320 96459 0.7580 +3320 113444 0.4440 +3320 114548 0.9900 +3320 115106 0.5270 +3320 116835 0.6390 +3320 117177 0.4990 +3320 118461 0.5100 +3320 120379 0.6070 +3320 120526 0.4970 +3320 120892 0.9700 +3320 122402 0.7440 +3320 126393 0.7830 +3320 131405 0.4630 +3320 133482 0.5060 +3320 134266 0.5460 +3320 134492 0.6810 +3320 136991 0.4920 +3320 137902 0.6150 +3320 139212 0.7510 +3320 140735 0.5630 +3320 140901 0.5000 +3320 143689 0.8890 +3320 145957 0.5350 +3320 146862 0.9710 +3320 149420 0.4700 +3320 150275 0.6070 +3320 150353 0.4750 +3320 161582 0.6910 +3320 163688 0.9960 +3320 165721 0.5620 +3320 166614 0.4950 +3320 192669 0.7310 +3320 192670 0.4970 +3320 197131 0.4220 +3320 197259 0.9440 +3320 200894 0.5610 +3320 201163 0.6430 +3320 202052 0.4640 +3320 203068 0.5300 +3320 221833 0.5080 +3320 253260 0.5950 +3320 257202 0.4680 +3320 259217 0.6530 +3320 283237 0.7250 +3320 285126 0.4750 +3320 285282 0.4040 +3320 285973 0.4160 +3320 339416 0.5610 +3320 340156 0.5380 +3320 373509 0.7540 +3320 374407 0.4950 +3320 388633 0.5100 +3320 440093 0.7360 +3320 440275 0.4220 +3320 440686 0.7350 +3320 493869 0.4690 +3320 548645 0.4440 +3320 642489 0.6410 +3320 653145 0.6290 +3320 653604 0.7370 +3320 728378 0.7070 +3320 728642 0.7690 +3320 100133941 0.7280 +3320 100885848 0.6180 +3320 100885850 0.6590 +3320 114483834 0.4840 +3321 3895 0.4390 +3321 4638 0.4010 +3321 5738 0.4020 +3321 6372 0.4150 +3321 7102 0.5620 +3321 9543 0.4570 +3321 9696 0.4150 +3321 10098 0.4450 +3321 10885 0.4200 +3321 22997 0.4220 +3321 23555 0.4830 +3321 30816 0.4490 +3321 54834 0.4610 +3321 54970 0.4310 +3321 57722 0.4830 +3321 81619 0.4750 +3321 152404 0.4750 +3321 254827 0.4620 +3321 283284 0.4320 +3321 405754 0.5670 +3326 3329 0.9700 +3326 3336 0.9280 +3326 3337 0.9990 +3326 3347 0.6460 +3326 3458 0.5070 +3326 3479 0.4460 +3326 3480 0.6460 +3326 3551 0.9760 +3326 3553 0.7180 +3326 3558 0.4280 +3326 3565 0.4290 +3326 3569 0.7350 +3326 3570 0.4950 +3326 3576 0.4380 +3326 3586 0.4580 +3326 3608 0.5750 +3326 3611 0.6610 +3326 3615 0.4860 +3326 3630 0.5480 +3326 3638 0.4010 +3326 3654 0.4630 +3326 3659 0.5400 +3326 3661 0.8440 +3326 3673 0.4510 +3326 3688 0.5450 +3326 3690 0.4570 +3326 3702 0.4730 +3326 3708 0.5000 +3326 3716 0.5190 +3326 3717 0.6750 +3326 3718 0.4090 +3326 3725 0.7520 +3326 3728 0.5140 +3326 3732 0.6440 +3326 3735 0.4200 +3326 3757 0.8190 +3326 3791 0.8790 +3326 3815 0.6650 +3326 3824 0.4320 +3326 3837 0.6240 +3326 3845 0.6350 +3326 3875 0.5740 +3326 3880 0.5220 +3326 3916 0.4060 +3326 3920 0.8290 +3326 3921 0.6730 +3326 3958 0.6130 +3326 3984 0.8790 +3326 3985 0.5630 +3326 4000 0.4050 +3326 4001 0.4540 +3326 4035 0.9900 +3326 4067 0.7140 +3326 4072 0.5040 +3326 4077 0.5230 +3326 4089 0.4310 +3326 4092 0.5130 +3326 4102 0.4190 +3326 4137 0.9380 +3326 4170 0.5420 +3326 4172 0.5010 +3326 4174 0.4990 +3326 4189 0.5830 +3326 4191 0.4150 +3326 4193 0.7530 +3326 4194 0.4140 +3326 4214 0.6300 +3326 4217 0.6730 +3326 4218 0.5300 +3326 4233 0.6620 +3326 4248 0.4280 +3326 4255 0.4870 +3326 4287 0.5100 +3326 4296 0.5120 +3326 4303 0.4200 +3326 4306 0.8620 +3326 4313 0.7580 +3326 4318 0.4620 +3326 4342 0.9280 +3326 4512 0.5040 +3326 4594 0.4920 +3326 4606 0.4720 +3326 4609 0.8900 +3326 4613 0.4270 +3326 4621 0.4980 +3326 4627 0.7800 +3326 4629 0.5350 +3326 4670 0.5860 +3326 4678 0.8320 +3326 4691 0.5890 +3326 4736 0.4190 +3326 4738 0.4200 +3326 4780 0.5630 +3326 4790 0.8450 +3326 4791 0.4250 +3326 4792 0.5340 +3326 4809 0.4660 +3326 4820 0.6160 +3326 4830 0.5040 +3326 4831 0.5480 +3326 4841 0.4970 +3326 4842 0.6270 +3326 4846 0.9980 +3326 4851 0.5150 +3326 4864 0.4970 +3326 4869 0.8060 +3326 4893 0.6080 +3326 4904 0.4900 +3326 4905 0.5630 +3326 4914 0.4840 +3326 4948 0.5040 +3326 4973 0.6430 +3326 5034 0.7200 +3326 5036 0.5010 +3326 5052 0.8010 +3326 5058 0.5910 +3326 5062 0.6230 +3326 5063 0.5300 +3326 5071 0.7850 +3326 5093 0.7350 +3326 5116 0.5990 +3326 5129 0.4830 +3326 5156 0.5900 +3326 5159 0.6580 +3326 5164 0.4040 +3326 5166 0.4090 +3326 5170 0.6900 +3326 5202 0.7660 +3326 5204 0.5020 +3326 5230 0.6410 +3326 5232 0.4470 +3326 5241 0.9780 +3326 5243 0.4180 +3326 5245 0.7660 +3326 5265 0.5310 +3326 5290 0.6390 +3326 5294 0.5260 +3326 5315 0.6100 +3326 5321 0.5300 +3326 5347 0.8660 +3326 5361 0.5090 +3326 5362 0.4990 +3326 5433 0.4280 +3326 5437 0.5000 +3326 5464 0.5010 +3326 5465 0.6540 +3326 5468 0.7120 +3326 5478 0.7470 +3326 5479 0.5290 +3326 5481 0.9990 +3326 5499 0.4420 +3326 5515 0.4200 +3326 5518 0.5580 +3326 5536 0.9970 +3326 5566 0.6690 +3326 5567 0.6980 +3326 5568 0.5450 +3326 5580 0.5880 +3326 5581 0.5710 +3326 5589 0.4770 +3326 5591 0.7300 +3326 5592 0.5990 +3326 5594 0.8130 +3326 5595 0.8180 +3326 5598 0.4540 +3326 5600 0.4100 +3326 5603 0.4310 +3326 5604 0.7610 +3326 5605 0.5040 +3326 5607 0.4460 +3326 5609 0.4530 +3326 5610 0.5000 +3326 5611 0.6060 +3326 5612 0.4640 +3326 5621 0.6750 +3326 5627 0.4790 +3326 5682 0.4700 +3326 5683 0.7610 +3326 5684 0.6060 +3326 5685 0.4370 +3326 5686 0.5760 +3326 5687 0.4460 +3326 5688 0.7470 +3326 5691 0.5430 +3326 5693 0.6310 +3326 5700 0.4020 +3326 5702 0.4130 +3326 5704 0.4870 +3326 5707 0.5490 +3326 5708 0.6830 +3326 5709 0.5820 +3326 5710 0.6390 +3326 5713 0.4200 +3326 5717 0.4720 +3326 5720 0.5440 +3326 5721 0.5600 +3326 5728 0.6650 +3326 5743 0.4420 +3326 5747 0.4520 +3326 5753 0.4010 +3326 5754 0.4040 +3326 5757 0.4640 +3326 5783 0.4100 +3326 5868 0.4140 +3326 5873 0.4040 +3326 5879 0.6370 +3326 5888 0.4790 +3326 5893 0.4780 +3326 5894 0.9930 +3326 5901 0.4980 +3326 5903 0.5050 +3326 5920 0.5420 +3326 5928 0.4220 +3326 5956 0.4300 +3326 5961 0.4160 +3326 5970 0.5150 +3326 5979 0.5360 +3326 6009 0.5250 +3326 6010 0.5490 +3326 6035 0.5790 +3326 6048 0.5120 +3326 6093 0.6790 +3326 6122 0.6310 +3326 6124 0.6900 +3326 6125 0.5120 +3326 6128 0.5570 +3326 6129 0.5230 +3326 6130 0.5390 +3326 6132 0.7390 +3326 6133 0.4210 +3326 6135 0.5580 +3326 6136 0.4680 +3326 6137 0.4520 +3326 6138 0.4190 +3326 6139 0.4230 +3326 6141 0.4310 +3326 6143 0.4320 +3326 6155 0.4080 +3326 6156 0.4110 +3326 6161 0.5240 +3326 6175 0.7620 +3326 6181 0.4240 +3326 6187 0.6680 +3326 6188 0.7790 +3326 6189 0.6500 +3326 6191 0.4310 +3326 6193 0.4380 +3326 6194 0.7630 +3326 6195 0.5880 +3326 6198 0.7600 +3326 6199 0.6670 +3326 6202 0.4780 +3326 6203 0.4770 +3326 6206 0.4280 +3326 6207 0.5370 +3326 6217 0.5440 +3326 6222 0.4340 +3326 6224 0.5010 +3326 6228 0.4770 +3326 6231 0.6560 +3326 6233 0.7120 +3326 6271 0.5710 +3326 6295 0.4630 +3326 6311 0.4780 +3326 6386 0.5770 +3326 6388 0.7750 +3326 6389 0.4620 +3326 6400 0.5790 +3326 6426 0.5910 +3326 6428 0.4060 +3326 6432 0.5110 +3326 6446 0.4820 +3326 6449 0.8670 +3326 6500 0.8130 +3326 6513 0.5260 +3326 6517 0.5170 +3326 6576 0.5380 +3326 6613 0.7120 +3326 6622 0.5260 +3326 6624 0.4730 +3326 6647 0.7690 +3326 6648 0.5000 +3326 6657 0.5180 +3326 6672 0.8460 +3326 6674 0.7320 +3326 6678 0.6240 +3326 6714 0.9950 +3326 6717 0.5050 +3326 6732 0.6530 +3326 6737 0.5510 +3326 6749 0.5530 +3326 6767 0.9950 +3326 6772 0.8310 +3326 6774 0.8900 +3326 6776 0.4250 +3326 6777 0.4250 +3326 6782 0.6820 +3326 6790 0.4290 +3326 6794 0.7400 +3326 6795 0.4040 +3326 6812 0.5300 +3326 6833 0.4610 +3326 6885 0.6380 +3326 6908 0.4660 +3326 6921 0.4370 +3326 6950 0.9560 +3326 7001 0.4640 +3326 7011 0.8940 +3326 7013 0.7680 +3326 7015 0.9870 +3326 7040 0.4330 +3326 7042 0.5110 +3326 7046 0.7570 +3326 7048 0.9200 +3326 7057 0.5160 +3326 7090 0.6250 +3326 7097 0.9820 +3326 7099 0.9880 +3326 7100 0.5460 +3326 7124 0.5940 +3326 7153 0.4160 +3326 7157 0.9950 +3326 7167 0.6940 +3326 7178 0.4370 +3326 7182 0.5470 +3326 7184 0.9530 +3326 7186 0.7490 +3326 7203 0.9400 +3326 7248 0.7900 +3326 7249 0.7430 +3326 7251 0.9110 +3326 7265 0.7440 +3326 7266 0.8960 +3326 7268 0.8970 +3326 7273 0.5100 +3326 7280 0.5720 +3326 7283 0.5590 +3326 7284 0.4510 +3326 7291 0.5420 +3326 7295 0.7130 +3326 7296 0.4360 +3326 7297 0.4580 +3326 7311 0.6920 +3326 7314 0.6890 +3326 7316 0.7630 +3326 7317 0.6150 +3326 7318 0.5680 +3326 7321 0.4260 +3326 7323 0.6810 +3326 7337 0.6840 +3326 7341 0.5000 +3326 7345 0.8040 +3326 7385 0.4800 +3326 7389 0.5320 +3326 7398 0.4440 +3326 7403 0.6530 +3326 7404 0.7610 +3326 7411 0.5120 +3326 7414 0.6070 +3326 7415 0.9060 +3326 7416 0.8170 +3326 7417 0.5300 +3326 7419 0.4140 +3326 7430 0.9270 +3326 7465 0.8170 +3326 7494 0.5870 +3326 7514 0.5450 +3326 7520 0.4950 +3326 7529 0.5450 +3326 7531 0.8170 +3326 7532 0.7000 +3326 7533 0.4410 +3326 7534 0.8350 +3326 7837 0.6180 +3326 7846 0.4810 +3326 7852 0.6000 +3326 7919 0.4410 +3326 7936 0.4500 +3326 8065 0.7490 +3326 8100 0.6310 +3326 8106 0.4150 +3326 8192 0.5700 +3326 8195 0.4570 +3326 8200 0.6600 +3326 8204 0.5750 +3326 8237 0.4200 +3326 8266 0.5120 +3326 8290 0.7350 +3326 8338 0.5990 +3326 8349 0.4350 +3326 8356 0.7470 +3326 8361 0.8500 +3326 8369 0.8470 +3326 8404 0.4210 +3326 8409 0.6480 +3326 8452 0.4330 +3326 8454 0.6690 +3326 8468 0.6770 +3326 8505 0.4550 +3326 8517 0.9280 +3326 8536 0.5200 +3326 8574 0.4080 +3326 8578 0.5460 +3326 8607 0.9700 +3326 8624 0.7390 +3326 8626 0.5780 +3326 8655 0.6370 +3326 8658 0.5250 +3326 8662 0.4910 +3326 8665 0.5670 +3326 8668 0.5180 +3326 8678 0.7190 +3326 8717 0.5810 +3326 8721 0.4850 +3326 8725 0.7680 +3326 8737 0.9720 +3326 8766 0.7750 +3326 8767 0.9280 +3326 8772 0.6660 +3326 8795 0.5850 +3326 8801 0.5650 +3326 8826 0.5670 +3326 8829 0.5720 +3326 8837 0.4630 +3326 8844 0.7900 +3326 8856 0.4360 +3326 8874 0.5110 +3326 8878 0.6640 +3326 8881 0.4700 +3326 8976 0.4200 +3326 8988 0.9210 +3326 8991 0.4690 +3326 9020 0.4840 +3326 9040 0.4470 +3326 9045 0.4750 +3326 9049 0.9990 +3326 9075 0.4830 +3326 9093 0.6130 +3326 9097 0.4550 +3326 9113 0.6270 +3326 9126 0.4550 +3326 9140 0.4100 +3326 9172 0.5160 +3326 9212 0.8840 +3326 9271 0.8220 +3326 9343 0.8100 +3326 9354 0.5400 +3326 9360 0.8160 +3326 9361 0.6550 +3326 9368 0.8250 +3326 9451 0.8150 +3326 9474 0.4960 +3326 9528 0.5700 +3326 9531 0.9600 +3326 9532 0.8420 +3326 9572 0.6460 +3326 9584 0.4240 +3326 9588 0.4550 +3326 9601 0.4760 +3326 9611 0.9060 +3326 9641 0.7000 +3326 9669 0.4080 +3326 9675 0.7120 +3326 9702 0.4320 +3326 9734 0.4580 +3326 9759 0.9620 +3326 9782 0.4910 +3326 9804 0.5430 +3326 9817 0.9330 +3326 9861 0.4090 +3326 9868 0.9990 +3326 9894 0.5370 +3326 9915 0.6510 +3326 9927 0.5560 +3326 9971 0.5610 +3326 9978 0.6610 +3326 10000 0.9560 +3326 10007 0.4270 +3326 10013 0.9980 +3326 10014 0.5010 +3326 10015 0.4550 +3326 10018 0.4720 +3326 10044 0.5440 +3326 10049 0.7070 +3326 10059 0.5270 +3326 10075 0.5030 +3326 10105 0.9820 +3326 10110 0.6720 +3326 10121 0.5110 +3326 10130 0.5050 +3326 10131 0.6120 +3326 10134 0.5850 +3326 10146 0.5580 +3326 10155 0.4060 +3326 10188 0.7020 +3326 10197 0.4620 +3326 10211 0.6230 +3326 10213 0.6340 +3326 10226 0.6020 +3326 10236 0.5060 +3326 10241 0.5980 +3326 10273 0.9990 +3326 10286 0.4060 +3326 10294 0.8800 +3326 10371 0.5320 +3326 10376 0.4740 +3326 10381 0.6050 +3326 10383 0.5990 +3326 10392 0.6170 +3326 10397 0.4610 +3326 10399 0.8780 +3326 10427 0.4760 +3326 10452 0.4630 +3326 10456 0.4160 +3326 10465 0.4380 +3326 10469 0.5170 +3326 10471 0.7510 +3326 10492 0.4230 +3326 10499 0.5910 +3326 10524 0.6300 +3326 10525 0.8480 +3326 10527 0.5570 +3326 10528 0.4310 +3326 10533 0.4730 +3326 10537 0.5600 +3326 10538 0.7500 +3326 10540 0.7770 +3326 10551 0.5440 +3326 10574 0.9560 +3326 10575 0.9460 +3326 10576 0.9700 +3326 10594 0.4370 +3326 10598 0.9990 +3326 10606 0.4690 +3326 10614 0.4190 +3326 10616 0.4620 +3326 10625 0.4170 +3326 10628 0.8110 +3326 10664 0.4400 +3326 10671 0.4080 +3326 10693 0.8570 +3326 10694 0.9470 +3326 10726 0.6470 +3326 10728 0.9990 +3326 10730 0.4770 +3326 10746 0.6110 +3326 10758 0.4990 +3326 10808 0.9160 +3326 10845 0.4550 +3326 10856 0.9370 +3326 10869 0.7160 +3326 10891 0.4320 +3326 10910 0.9980 +3326 10935 0.4040 +3326 10953 0.8480 +3326 10963 0.9990 +3326 10971 0.7350 +3326 10987 0.5450 +3326 10992 0.5240 +3326 11035 0.9640 +3326 11080 0.7540 +3326 11128 0.5200 +3326 11140 0.9990 +3326 11145 0.5240 +3326 11200 0.4270 +3326 11258 0.4050 +3326 11315 0.7170 +3326 11331 0.4220 +3326 11337 0.4140 +3326 11345 0.7450 +3326 22800 0.5510 +3326 22824 0.8290 +3326 22827 0.4060 +3326 22924 0.4840 +3326 22926 0.5290 +3326 22933 0.6130 +3326 22948 0.9590 +3326 22953 0.4100 +3326 22954 0.5070 +3326 23019 0.5010 +3326 23028 0.5880 +3326 23049 0.4430 +3326 23057 0.7010 +3326 23085 0.4160 +3326 23135 0.6490 +3326 23221 0.6330 +3326 23234 0.8560 +3326 23239 0.4470 +3326 23264 0.5340 +3326 23271 0.4310 +3326 23307 0.4020 +3326 23326 0.5530 +3326 23331 0.4690 +3326 23341 0.4610 +3326 23381 0.5070 +3326 23405 0.8020 +3326 23411 0.6880 +3326 23435 0.5350 +3326 23476 0.5300 +3326 23521 0.5340 +3326 23636 0.5320 +3326 23640 0.9020 +3326 23643 0.4830 +3326 23710 0.7000 +3326 23746 0.8180 +3326 23753 0.7740 +3326 23770 0.9890 +3326 25764 0.4180 +3326 25789 0.5510 +3326 25813 0.4130 +3326 25822 0.5570 +3326 25828 0.6260 +3326 25895 0.5660 +3326 25942 0.7070 +3326 26168 0.5750 +3326 26270 0.4140 +3326 26330 0.4140 +3326 26353 0.9480 +3326 26523 0.9130 +3326 26524 0.4230 +3326 26548 0.8180 +3326 26747 0.5300 +3326 26973 0.9420 +3326 26986 0.4540 +3326 27000 0.4020 +3326 27035 0.7910 +3326 27044 0.4380 +3326 27068 0.4160 +3326 27101 0.6770 +3326 27102 0.4120 +3326 27129 0.4630 +3326 27161 0.9920 +3326 27306 0.4050 +3326 27327 0.5040 +3326 27339 0.4070 +3326 27436 0.6540 +3326 29066 0.4800 +3326 29110 0.8430 +3326 29126 0.4440 +3326 29765 0.5310 +3326 29882 0.4500 +3326 29904 0.5260 +3326 29927 0.5070 +3326 29978 0.4280 +3326 29979 0.4410 +3326 30816 0.5910 +3326 30968 0.4580 +3326 50506 0.4560 +3326 51070 0.5240 +3326 51143 0.4590 +3326 51163 0.4210 +3326 51164 0.4350 +3326 51182 0.8220 +3326 51185 0.4470 +3326 51236 0.4810 +3326 51256 0.5420 +3326 51398 0.5400 +3326 51447 0.4930 +3326 51455 0.4420 +3326 51465 0.5380 +3326 51512 0.5100 +3326 51564 0.4510 +3326 51574 0.5960 +3326 51691 0.5640 +3326 51726 0.8920 +3326 51773 0.9810 +3326 51806 0.9950 +3326 53905 0.5020 +3326 54101 0.5170 +3326 54205 0.7800 +3326 54431 0.6870 +3326 54432 0.4060 +3326 54583 0.8330 +3326 54769 0.4010 +3326 54788 0.5930 +3326 54790 0.4040 +3326 54970 0.4690 +3326 54979 0.5100 +3326 55010 0.5880 +3326 55011 0.9720 +3326 55135 0.4630 +3326 55143 0.4030 +3326 55172 0.7990 +3326 55466 0.8270 +3326 55558 0.4990 +3326 55651 0.4480 +3326 55664 0.9540 +3326 55735 0.4950 +3326 55780 0.4450 +3326 55818 0.4830 +3326 55860 0.4630 +3326 55869 0.7850 +3326 55898 0.8100 +3326 55902 0.4410 +3326 55914 0.5040 +3326 56257 0.4870 +3326 56938 0.5780 +3326 56950 0.8560 +3326 56984 0.7500 +3326 56990 0.4050 +3326 56993 0.4560 +3326 57003 0.5580 +3326 57016 0.4930 +3326 57026 0.6980 +3326 57110 0.5100 +3326 57118 0.5270 +3326 57122 0.4910 +3326 57379 0.5700 +3326 57403 0.4880 +3326 57491 0.7810 +3326 57506 0.7740 +3326 57521 0.6980 +3326 58484 0.4970 +3326 59272 0.5030 +3326 60489 0.5500 +3326 60681 0.4870 +3326 63943 0.9740 +3326 64101 0.4840 +3326 64127 0.5770 +3326 64344 0.6120 +3326 64374 0.4330 +3326 64754 0.8450 +3326 64798 0.4590 +3326 64802 0.4960 +3326 65018 0.8890 +3326 65061 0.4920 +3326 65975 0.4770 +3326 79031 0.4770 +3326 79109 0.4890 +3326 79139 0.5540 +3326 79577 0.4100 +3326 79657 0.9920 +3326 79705 0.4240 +3326 79738 0.4570 +3326 79792 0.4260 +3326 79852 0.4580 +3326 79885 0.5040 +3326 79902 0.4720 +3326 79962 0.4450 +3326 79982 0.5270 +3326 80185 0.7390 +3326 80227 0.4830 +3326 80273 0.7450 +3326 80331 0.7510 +3326 80351 0.5120 +3326 80854 0.5110 +3326 81570 0.8730 +3326 81572 0.6350 +3326 81631 0.6090 +3326 81669 0.5740 +3326 83443 0.4090 +3326 83743 0.4050 +3326 83752 0.5360 +3326 83933 0.4540 +3326 83983 0.8630 +3326 84140 0.4520 +3326 84260 0.6160 +3326 84293 0.7210 +3326 84447 0.5040 +3326 84516 0.4300 +3326 84557 0.4280 +3326 84665 0.4520 +3326 84790 0.4960 +3326 84896 0.5270 +3326 84930 0.4520 +3326 84988 0.7700 +3326 85477 0.5440 +3326 85479 0.5030 +3326 85481 0.6770 +3326 89790 0.5610 +3326 91584 0.4990 +3326 91662 0.7520 +3326 91860 0.9950 +3326 91875 0.5610 +3326 92552 0.4260 +3326 93661 0.4680 +3326 96459 0.5160 +3326 113444 0.4440 +3326 114548 0.9860 +3326 116835 0.6270 +3326 118461 0.5100 +3326 120379 0.8120 +3326 120526 0.5060 +3326 120892 0.9420 +3326 125972 0.4080 +3326 126133 0.4450 +3326 126393 0.7830 +3326 129831 0.4180 +3326 131405 0.4590 +3326 133482 0.4800 +3326 134266 0.5280 +3326 137902 0.6150 +3326 139212 0.7530 +3326 140735 0.4760 +3326 140901 0.6030 +3326 143689 0.8230 +3326 146862 0.9450 +3326 149420 0.5970 +3326 150160 0.7060 +3326 150353 0.4740 +3326 161582 0.6910 +3326 163688 0.9950 +3326 165721 0.5630 +3326 192669 0.5380 +3326 192670 0.4970 +3326 197131 0.4190 +3326 197259 0.9430 +3326 200894 0.5570 +3326 201163 0.5110 +3326 202052 0.4810 +3326 203068 0.6560 +3326 220988 0.5450 +3326 257202 0.4680 +3326 259217 0.6530 +3326 283237 0.6770 +3326 285126 0.4790 +3326 285282 0.4040 +3326 339416 0.5610 +3326 340156 0.5450 +3326 373509 0.7720 +3326 374407 0.4830 +3326 388633 0.5100 +3326 440093 0.7350 +3326 440275 0.4710 +3326 440686 0.7340 +3326 493869 0.4670 +3326 548645 0.4450 +3326 642489 0.6360 +3326 653145 0.6280 +3326 653604 0.7370 +3326 728378 0.7330 +3326 728642 0.5130 +3326 100133941 0.7450 +3326 100885848 0.6250 +3326 100885850 0.6420 +3329 3336 0.9990 +3329 3337 0.7360 +3329 3376 0.5120 +3329 3396 0.4190 +3329 3421 0.6480 +3329 3458 0.5760 +3329 3553 0.4320 +3329 3558 0.4500 +3329 3565 0.4060 +3329 3569 0.4650 +3329 3586 0.5070 +3329 3596 0.5030 +3329 3689 0.4560 +3329 3712 0.4440 +3329 3725 0.4150 +3329 3735 0.4040 +3329 3821 0.5020 +3329 3824 0.5610 +3329 3906 0.8540 +3329 3921 0.4640 +3329 4141 0.4770 +3329 4170 0.4600 +3329 4191 0.6130 +3329 4200 0.4280 +3329 4357 0.4190 +3329 4512 0.7000 +3329 4513 0.5080 +3329 4519 0.4180 +3329 4528 0.6240 +3329 4535 0.4150 +3329 4609 0.4380 +3329 4673 0.4770 +3329 4691 0.5200 +3329 4704 0.4230 +3329 4706 0.5240 +3329 4714 0.5650 +3329 4720 0.5930 +3329 4722 0.5490 +3329 4728 0.5250 +3329 4830 0.4960 +3329 4869 0.8720 +3329 4973 0.7030 +3329 5009 0.6220 +3329 5034 0.4380 +3329 5052 0.4780 +3329 5071 0.7840 +3329 5162 0.5220 +3329 5165 0.4670 +3329 5188 0.6060 +3329 5204 0.4850 +3329 5230 0.7220 +3329 5232 0.7090 +3329 5245 0.7910 +3329 5339 0.7310 +3329 5340 0.7920 +3329 5428 0.4100 +3329 5431 0.6010 +3329 5464 0.5780 +3329 5478 0.7090 +3329 5481 0.4840 +3329 5621 0.8140 +3329 5654 0.6410 +3329 5684 0.4320 +3329 5702 0.4080 +3329 5707 0.4560 +3329 5788 0.5120 +3329 5832 0.5300 +3329 5888 0.7690 +3329 5901 0.4760 +3329 5917 0.4620 +3329 5920 0.4370 +3329 6182 0.5320 +3329 6187 0.5940 +3329 6224 0.4700 +3329 6240 0.4100 +3329 6301 0.4040 +3329 6389 0.7750 +3329 6390 0.6100 +3329 6391 0.4730 +3329 6449 0.4240 +3329 6472 0.5980 +3329 6622 0.5130 +3329 6647 0.6250 +3329 6648 0.6700 +3329 6657 0.5400 +3329 6672 0.6230 +3329 6683 0.4950 +3329 6687 0.7740 +3329 6693 0.6330 +3329 6737 0.4120 +3329 6742 0.5660 +3329 6767 0.4740 +3329 6782 0.5310 +3329 6888 0.6320 +3329 6897 0.4520 +3329 6901 0.5700 +3329 6950 0.9580 +3329 7001 0.4190 +3329 7019 0.5340 +3329 7086 0.4070 +3329 7097 0.9760 +3329 7099 0.9990 +3329 7124 0.5490 +3329 7157 0.6610 +3329 7167 0.6620 +3329 7184 0.8010 +3329 7203 0.7550 +3329 7248 0.5730 +3329 7263 0.9180 +3329 7266 0.4010 +3329 7284 0.6320 +3329 7295 0.5520 +3329 7305 0.4820 +3329 7384 0.4520 +3329 7385 0.5320 +3329 7386 0.6680 +3329 7407 0.4920 +3329 7415 0.4860 +3329 7416 0.8980 +3329 7417 0.4330 +3329 7419 0.5730 +3329 7453 0.4200 +3329 7498 0.4720 +3329 7837 0.4240 +3329 7846 0.4040 +3329 8175 0.7200 +3329 8192 0.9210 +3329 8349 0.4350 +3329 8361 0.4290 +3329 8452 0.4410 +3329 8454 0.4480 +3329 8565 0.4030 +3329 8604 0.5160 +3329 8732 0.4840 +3329 8802 0.5050 +3329 8803 0.4290 +3329 8815 0.4510 +3329 8833 0.4670 +3329 8988 0.5290 +3329 9054 0.4180 +3329 9093 0.7210 +3329 9212 0.4370 +3329 9343 0.4370 +3329 9360 0.4190 +3329 9361 0.8680 +3329 9512 0.7340 +3329 9528 0.4700 +3329 9563 0.4620 +3329 9588 0.5260 +3329 9669 0.4720 +3329 9804 0.7300 +3329 9865 0.7290 +3329 9868 0.6060 +3329 9911 0.4750 +3329 10059 0.5520 +3329 10063 0.5160 +3329 10102 0.6820 +3329 10105 0.6080 +3329 10128 0.4580 +3329 10130 0.4220 +3329 10131 0.7540 +3329 10165 0.5370 +3329 10213 0.5610 +3329 10229 0.4260 +3329 10245 0.5800 +3329 10273 0.4010 +3329 10283 0.4470 +3329 10294 0.4650 +3329 10352 0.4600 +3329 10440 0.7060 +3329 10452 0.7730 +3329 10469 0.7490 +3329 10476 0.4560 +3329 10525 0.6910 +3329 10531 0.4550 +3329 10539 0.4010 +3329 10574 0.6130 +3329 10575 0.6230 +3329 10576 0.6680 +3329 10598 0.7820 +3329 10606 0.5240 +3329 10614 0.4590 +3329 10632 0.5350 +3329 10694 0.8230 +3329 10728 0.4910 +3329 10730 0.7900 +3329 10808 0.7990 +3329 10845 0.8410 +3329 10935 0.5130 +3329 10939 0.8100 +3329 10963 0.7870 +3329 11080 0.4530 +3329 11145 0.4370 +3329 11222 0.5550 +3329 11315 0.5620 +3329 11331 0.4930 +3329 22824 0.6220 +3329 22914 0.4780 +3329 22948 0.5880 +3329 23203 0.7720 +3329 23395 0.4210 +3329 23405 0.4440 +3329 23409 0.4380 +3329 23410 0.6080 +3329 23411 0.5770 +3329 23479 0.7310 +3329 23530 0.4450 +3329 23643 0.8650 +3329 25789 0.4660 +3329 25813 0.4970 +3329 25828 0.4990 +3329 26330 0.4680 +3329 26517 0.5770 +3329 26519 0.5390 +3329 26520 0.6120 +3329 26521 0.5490 +3329 26986 0.4600 +3329 27068 0.5170 +3329 27101 0.4360 +3329 27235 0.4820 +3329 27440 0.4880 +3329 29090 0.5350 +3329 29789 0.4670 +3329 29928 0.6120 +3329 30816 0.4550 +3329 50945 0.4180 +3329 51025 0.5840 +3329 51056 0.4460 +3329 51067 0.4790 +3329 51081 0.4200 +3329 51106 0.5630 +3329 51142 0.6620 +3329 51182 0.6810 +3329 51287 0.5620 +3329 51314 0.4150 +3329 51520 0.4470 +3329 51726 0.4030 +3329 54059 0.4430 +3329 54148 0.4100 +3329 54205 0.8180 +3329 54209 0.5280 +3329 54431 0.4660 +3329 54543 0.4520 +3329 54927 0.6040 +3329 54938 0.5060 +3329 54948 0.4740 +3329 54979 0.4370 +3329 55143 0.4590 +3329 55157 0.6660 +3329 55210 0.6950 +3329 55572 0.4340 +3329 55626 0.5190 +3329 55699 0.5360 +3329 55780 0.4220 +3329 56942 0.5360 +3329 56993 0.6130 +3329 57110 0.4370 +3329 57128 0.6590 +3329 57176 0.5410 +3329 57805 0.5000 +3329 59286 0.4130 +3329 63931 0.4160 +3329 64083 0.6280 +3329 64087 0.4460 +3329 64216 0.5320 +3329 64965 0.4190 +3329 64969 0.4620 +3329 65003 0.4710 +3329 65008 0.4020 +3329 65018 0.4220 +3329 65993 0.4590 +3329 79139 0.4090 +3329 79145 0.4990 +3329 79587 0.4360 +3329 79731 0.5280 +3329 80267 0.4760 +3329 80273 0.9820 +3329 80331 0.6020 +3329 81570 0.9310 +3329 81631 0.4160 +3329 83752 0.7620 +3329 83858 0.5230 +3329 84269 0.4990 +3329 84532 0.5300 +3329 84790 0.4490 +3329 85476 0.7950 +3329 87178 0.5450 +3329 90639 0.5640 +3329 92106 0.4110 +3329 92399 0.4260 +3329 92483 0.4120 +3329 92609 0.6450 +3329 92935 0.5410 +3329 94033 0.4670 +3329 116835 0.4980 +3329 118461 0.4370 +3329 126393 0.7990 +3329 129831 0.4090 +3329 131118 0.6440 +3329 131450 0.4320 +3329 134266 0.8500 +3329 137902 0.4180 +3329 140885 0.4300 +3329 150160 0.6570 +3329 150274 0.5760 +3329 154075 0.5180 +3329 171425 0.4030 +3329 197257 0.5370 +3329 197322 0.4040 +3329 200895 0.8050 +3329 254013 0.5650 +3329 257202 0.4700 +3329 259217 0.5160 +3329 339416 0.6200 +3329 374291 0.4700 +3329 388633 0.4370 +3329 388753 0.5650 +3329 400916 0.5840 +3329 401505 0.4410 +3329 405754 0.4550 +3329 493869 0.4700 +3329 642489 0.5170 +3329 654364 0.5320 +3329 100188893 0.4500 +3329 100272147 0.4990 +3329 100287932 0.7660 +3336 3337 0.8340 +3336 3396 0.4050 +3336 3712 0.5100 +3336 4144 0.4060 +3336 4189 0.4330 +3336 4191 0.7610 +3336 4282 0.5560 +3336 4351 0.4360 +3336 4482 0.5710 +3336 4528 0.5030 +3336 4695 0.4250 +3336 4698 0.5030 +3336 4700 0.6770 +3336 4706 0.7440 +3336 4709 0.4420 +3336 4715 0.4360 +3336 4720 0.4480 +3336 4722 0.5080 +3336 4724 0.4090 +3336 4729 0.4640 +3336 4830 0.5170 +3336 4831 0.4780 +3336 4863 0.4360 +3336 5009 0.5430 +3336 5018 0.5040 +3336 5037 0.4380 +3336 5052 0.6100 +3336 5062 0.4510 +3336 5106 0.4840 +3336 5216 0.4700 +3336 5223 0.4190 +3336 5230 0.6260 +3336 5232 0.5020 +3336 5245 0.6600 +3336 5300 0.4750 +3336 5303 0.4640 +3336 5431 0.4390 +3336 5432 0.4280 +3336 5435 0.4230 +3336 5464 0.5820 +3336 5469 0.4500 +3336 5478 0.5520 +3336 5479 0.5930 +3336 5481 0.4490 +3336 5611 0.5020 +3336 5654 0.6030 +3336 5682 0.4110 +3336 5685 0.4150 +3336 5688 0.4450 +3336 5757 0.4540 +3336 5763 0.4440 +3336 5832 0.4770 +3336 5888 0.5350 +3336 5901 0.4140 +3336 5903 0.4090 +3336 5920 0.5110 +3336 6059 0.4270 +3336 6124 0.4130 +3336 6133 0.5050 +3336 6139 0.4940 +3336 6147 0.4800 +3336 6154 0.4280 +3336 6175 0.6040 +3336 6182 0.7760 +3336 6183 0.4510 +3336 6187 0.4610 +3336 6188 0.4880 +3336 6193 0.4270 +3336 6203 0.4530 +3336 6205 0.4660 +3336 6224 0.4330 +3336 6227 0.4080 +3336 6228 0.4830 +3336 6389 0.5070 +3336 6390 0.4630 +3336 6472 0.6350 +3336 6622 0.5080 +3336 6636 0.4670 +3336 6637 0.4560 +3336 6647 0.6880 +3336 6648 0.6740 +3336 6652 0.5230 +3336 6672 0.5910 +3336 6683 0.5270 +3336 6687 0.8010 +3336 6741 0.4130 +3336 6742 0.5720 +3336 6782 0.6670 +3336 6888 0.5920 +3336 6902 0.4320 +3336 6950 0.9170 +3336 7001 0.4860 +3336 7064 0.4780 +3336 7086 0.5390 +3336 7153 0.4040 +3336 7155 0.4100 +3336 7167 0.7610 +3336 7184 0.8390 +3336 7203 0.8930 +3336 7248 0.7020 +3336 7263 0.7880 +3336 7266 0.5270 +3336 7284 0.6360 +3336 7295 0.8100 +3336 7298 0.4060 +3336 7360 0.4240 +3336 7372 0.4730 +3336 7385 0.4510 +3336 7403 0.4220 +3336 7404 0.4220 +3336 7415 0.5350 +3336 7416 0.4990 +3336 7919 0.4260 +3336 8192 0.9460 +3336 8195 0.7980 +3336 8277 0.4570 +3336 8565 0.4260 +3336 8802 0.4260 +3336 8833 0.5400 +3336 8988 0.5900 +3336 9093 0.6610 +3336 9141 0.4610 +3336 9349 0.4830 +3336 9360 0.5950 +3336 9361 0.8150 +3336 9377 0.5050 +3336 9380 0.5240 +3336 9446 0.4060 +3336 9512 0.5280 +3336 9528 0.5090 +3336 9533 0.4120 +3336 9563 0.4390 +3336 9588 0.6730 +3336 9601 0.4520 +3336 9669 0.4820 +3336 9804 0.4710 +3336 10049 0.5320 +3336 10063 0.6600 +3336 10102 0.6700 +3336 10105 0.5380 +3336 10131 0.8280 +3336 10213 0.4950 +3336 10269 0.5020 +3336 10294 0.6250 +3336 10440 0.5850 +3336 10452 0.5290 +3336 10476 0.4130 +3336 10525 0.6500 +3336 10549 0.4480 +3336 10574 0.8620 +3336 10575 0.8930 +3336 10576 0.8940 +3336 10588 0.4150 +3336 10594 0.4530 +3336 10598 0.8310 +3336 10606 0.4580 +3336 10693 0.8140 +3336 10694 0.7230 +3336 10728 0.5200 +3336 10730 0.7270 +3336 10808 0.8700 +3336 10845 0.8260 +3336 10935 0.5000 +3336 10939 0.4800 +3336 10963 0.6590 +3336 10975 0.4160 +3336 11080 0.6100 +3336 11145 0.5080 +3336 11212 0.4380 +3336 11224 0.4520 +3336 11315 0.5170 +3336 11331 0.4920 +3336 22809 0.4460 +3336 22824 0.7950 +3336 22921 0.4250 +3336 22948 0.8750 +3336 23135 0.4270 +3336 23234 0.5250 +3336 23479 0.5650 +3336 25789 0.5080 +3336 25813 0.4760 +3336 25822 0.4260 +3336 25828 0.5300 +3336 26330 0.6090 +3336 26353 0.4550 +3336 26354 0.5370 +3336 26517 0.4100 +3336 26519 0.6460 +3336 26520 0.4920 +3336 26521 0.5220 +3336 27068 0.5250 +3336 27101 0.5560 +3336 27247 0.4560 +3336 27429 0.4760 +3336 28998 0.4510 +3336 29088 0.4400 +3336 29093 0.4910 +3336 29927 0.4560 +3336 30968 0.4080 +3336 51021 0.5060 +3336 51056 0.4210 +3336 51065 0.4690 +3336 51073 0.4020 +3336 51081 0.5790 +3336 51121 0.4510 +3336 51154 0.5320 +3336 51182 0.7440 +3336 51314 0.5340 +3336 51726 0.5600 +3336 54059 0.4070 +3336 54205 0.6600 +3336 54431 0.6150 +3336 54543 0.4380 +3336 54788 0.5140 +3336 54979 0.5080 +3336 55052 0.5190 +3336 55269 0.4010 +3336 55272 0.4060 +3336 55466 0.6110 +3336 55599 0.4600 +3336 55735 0.4570 +3336 55780 0.7930 +3336 55967 0.6270 +3336 56990 0.4020 +3336 56993 0.5870 +3336 57110 0.5080 +3336 63875 0.5680 +3336 64779 0.4020 +3336 64968 0.4240 +3336 64969 0.4760 +3336 64983 0.5660 +3336 79728 0.5810 +3336 79738 0.8060 +3336 79962 0.4320 +3336 79982 0.4690 +3336 80273 0.9950 +3336 80331 0.5290 +3336 81570 0.9670 +3336 81624 0.4290 +3336 81892 0.4460 +3336 83752 0.6460 +3336 84076 0.4670 +3336 84140 0.7970 +3336 84203 0.4330 +3336 84661 0.4540 +3336 84701 0.4310 +3336 85476 0.4230 +3336 85479 0.5140 +3336 92399 0.4620 +3336 93974 0.6460 +3336 113444 0.4050 +3336 115209 0.6190 +3336 116835 0.5840 +3336 118461 0.5080 +3336 120526 0.4540 +3336 126393 0.6470 +3336 131118 0.4910 +3336 134266 0.9330 +3336 150160 0.5800 +3336 150353 0.4240 +3336 165721 0.4780 +3336 171425 0.4610 +3336 200895 0.5420 +3336 202052 0.4230 +3336 219927 0.4150 +3336 255220 0.4690 +3336 259217 0.6120 +3336 285126 0.4300 +3336 285282 0.4140 +3336 285521 0.4100 +3336 339416 0.5140 +3336 374407 0.4970 +3336 388633 0.5080 +3336 401505 0.4980 +3336 548596 0.4150 +3336 548645 0.4530 +3336 100130890 0.4460 +3336 100131187 0.4430 +3336 100526842 0.4260 +3337 3569 0.4590 +3337 3625 0.4070 +3337 3643 0.4220 +3337 3725 0.5350 +3337 3727 0.4270 +3337 3749 0.5450 +3337 4193 0.6750 +3337 4287 0.6100 +3337 4820 0.5500 +3337 4869 0.4920 +3337 5046 0.4870 +3337 5071 0.6600 +3337 5241 0.4750 +3337 5340 0.4030 +3337 5428 0.4040 +3337 5481 0.8920 +3337 5536 0.5590 +3337 5596 0.5400 +3337 5597 0.5520 +3337 5599 0.4080 +3337 5611 0.9760 +3337 5621 0.5400 +3337 5688 0.4860 +3337 5690 0.4980 +3337 5707 0.5080 +3337 5920 0.4580 +3337 5930 0.4420 +3337 5976 0.4950 +3337 6048 0.5560 +3337 6122 0.4290 +3337 6133 0.4050 +3337 6135 0.5710 +3337 6203 0.4170 +3337 6204 0.4360 +3337 6224 0.4120 +3337 6280 0.4070 +3337 6283 0.4010 +3337 6285 0.6780 +3337 6310 0.5500 +3337 6311 0.4730 +3337 6388 0.5830 +3337 6400 0.6040 +3337 6449 0.6560 +3337 6559 0.4120 +3337 6622 0.8130 +3337 6647 0.6980 +3337 6648 0.4990 +3337 6672 0.8660 +3337 6714 0.4570 +3337 6732 0.6900 +3337 6737 0.7940 +3337 6738 0.6480 +3337 6767 0.9430 +3337 6782 0.8430 +3337 6833 0.4280 +3337 6950 0.6260 +3337 7095 0.4300 +3337 7157 0.9510 +3337 7182 0.4100 +3337 7184 0.8350 +3337 7203 0.5240 +3337 7248 0.4400 +3337 7265 0.4530 +3337 7266 0.7620 +3337 7276 0.4420 +3337 7295 0.4770 +3337 7314 0.4490 +3337 7321 0.6050 +3337 7322 0.4630 +3337 7323 0.4190 +3337 7415 0.7220 +3337 7494 0.4390 +3337 7514 0.5660 +3337 7534 0.5230 +3337 7818 0.4530 +3337 8079 0.6940 +3337 8106 0.5740 +3337 8192 0.5490 +3337 8550 0.9470 +3337 8562 0.4210 +3337 8721 0.4750 +3337 8988 0.7750 +3337 9075 0.5230 +3337 9093 0.6150 +3337 9349 0.4900 +3337 9354 0.4530 +3337 9360 0.6180 +3337 9361 0.4210 +3337 9528 0.5260 +3337 9529 0.8500 +3337 9530 0.5940 +3337 9531 0.8910 +3337 9532 0.8790 +3337 9601 0.4430 +3337 9689 0.4410 +3337 9695 0.4270 +3337 9829 0.7860 +3337 10013 0.4090 +3337 10049 0.7420 +3337 10075 0.4100 +3337 10131 0.7040 +3337 10273 0.9790 +3337 10294 0.9170 +3337 10295 0.4160 +3337 10299 0.4790 +3337 10450 0.4490 +3337 10456 0.5320 +3337 10525 0.7650 +3337 10574 0.4740 +3337 10575 0.6690 +3337 10576 0.4700 +3337 10598 0.8970 +3337 10606 0.4760 +3337 10694 0.6460 +3337 10726 0.9670 +3337 10728 0.7470 +3337 10808 0.9900 +3337 10963 0.9970 +3337 11080 0.8660 +3337 11140 0.9520 +3337 11145 0.4200 +3337 11168 0.4290 +3337 11181 0.4560 +3337 11222 0.4660 +3337 11315 0.5220 +3337 22824 0.9520 +3337 22826 0.5670 +3337 22926 0.4550 +3337 22933 0.4720 +3337 22948 0.6780 +3337 23170 0.7970 +3337 23186 0.4270 +3337 23234 0.4350 +3337 23317 0.4330 +3337 23341 0.4520 +3337 23381 0.4160 +3337 23411 0.7560 +3337 23435 0.6150 +3337 23608 0.4700 +3337 23640 0.9540 +3337 25789 0.5220 +3337 25822 0.7940 +3337 26019 0.4700 +3337 26046 0.4300 +3337 26278 0.4010 +3337 26353 0.9160 +3337 26589 0.4750 +3337 26973 0.4280 +3337 26986 0.5670 +3337 27000 0.7920 +3337 27101 0.5750 +3337 27129 0.4730 +3337 27338 0.4990 +3337 28998 0.4740 +3337 29904 0.4280 +3337 29927 0.6810 +3337 29978 0.4930 +3337 51182 0.8760 +3337 51314 0.4680 +3337 51465 0.5110 +3337 51501 0.6800 +3337 54788 0.6210 +3337 54979 0.4200 +3337 55466 0.8810 +3337 55626 0.5540 +3337 55666 0.5190 +3337 55735 0.5990 +3337 55768 0.4120 +3337 56521 0.7810 +3337 57110 0.4200 +3337 57129 0.4280 +3337 57192 0.4860 +3337 57506 0.4750 +3337 57805 0.5170 +3337 63875 0.4790 +3337 63931 0.4290 +3337 64083 0.4920 +3337 64135 0.4480 +3337 64374 0.7860 +3337 65122 0.4250 +3337 65263 0.4440 +3337 79094 0.4040 +3337 79139 0.5610 +3337 79982 0.5480 +3337 80273 0.9630 +3337 80331 0.6200 +3337 81570 0.9270 +3337 84277 0.5030 +3337 84545 0.4140 +3337 84699 0.4170 +3337 85479 0.5620 +3337 91582 0.4130 +3337 92552 0.6340 +3337 94086 0.4570 +3337 116835 0.7440 +3337 118461 0.4200 +3337 120526 0.4820 +3337 120892 0.4440 +3337 124535 0.4710 +3337 126393 0.7760 +3337 131118 0.4430 +3337 134266 0.5450 +3337 150353 0.6180 +3337 165721 0.6050 +3337 197131 0.4770 +3337 202052 0.5560 +3337 259217 0.7530 +3337 283237 0.5110 +3337 339416 0.4200 +3337 388633 0.4200 +3338 4580 0.4960 +3338 7423 0.8060 +3338 11080 0.4560 +3338 22826 0.4520 +3338 23234 0.4870 +3338 23317 0.4310 +3338 51277 0.4160 +3338 54788 0.4060 +3338 55735 0.6890 +3338 56834 0.4150 +3338 79962 0.4680 +3338 80273 0.4120 +3338 80331 0.4360 +3338 84304 0.6860 +3338 85406 0.4410 +3338 120526 0.5070 +3338 131118 0.4020 +3338 134218 0.4120 +3338 145853 0.4550 +3338 285315 0.4430 +3338 374955 0.4630 +3338 643338 0.4810 +3339 3340 0.7170 +3339 3375 0.7030 +3339 3558 0.4950 +3339 3586 0.4780 +3339 3611 0.4430 +3339 3630 0.6460 +3339 3655 0.4170 +3339 3673 0.9370 +3339 3675 0.4330 +3339 3678 0.4080 +3339 3679 0.5210 +3339 3688 0.9470 +3339 3791 0.9750 +3339 3908 0.6490 +3339 3909 0.6430 +3339 3910 0.6560 +3339 3911 0.6780 +3339 3912 0.7820 +3339 3913 0.6480 +3339 3915 0.8200 +3339 3918 0.5850 +3339 3949 0.4440 +3339 3977 0.4670 +3339 3987 0.5610 +3339 4015 0.4670 +3339 4023 0.6630 +3339 4035 0.8090 +3339 4036 0.6620 +3339 4038 0.4660 +3339 4040 0.4620 +3339 4041 0.6020 +3339 4053 0.6800 +3339 4054 0.6600 +3339 4057 0.5790 +3339 4060 0.7800 +3339 4069 0.4990 +3339 4133 0.4570 +3339 4240 0.5750 +3339 4313 0.6550 +3339 4314 0.6380 +3339 4318 0.4810 +3339 4321 0.5610 +3339 4322 0.8400 +3339 4323 0.8640 +3339 4324 0.8260 +3339 4593 0.6410 +3339 4811 0.9990 +3339 4878 0.5280 +3339 4969 0.4970 +3339 5154 0.6890 +3339 5155 0.7180 +3339 5196 0.5130 +3339 5327 0.5740 +3339 5339 0.4740 +3339 5340 0.6360 +3339 5549 0.8390 +3339 5552 0.5970 +3339 5553 0.4370 +3339 5617 0.7100 +3339 5648 0.4210 +3339 5913 0.5070 +3339 6288 0.5260 +3339 6331 0.4200 +3339 6382 0.9660 +3339 6383 0.7930 +3339 6385 0.7850 +3339 6406 0.5070 +3339 6469 0.6270 +3339 6622 0.5300 +3339 6678 0.7330 +3339 6772 0.4260 +3339 7040 0.7500 +3339 7042 0.5760 +3339 7045 0.6750 +3339 7049 0.4460 +3339 7057 0.8410 +3339 7058 0.4070 +3339 7076 0.4330 +3339 7077 0.4060 +3339 7078 0.4230 +3339 7092 0.5060 +3339 7093 0.4160 +3339 7094 0.4770 +3339 7276 0.6930 +3339 7399 0.4540 +3339 7402 0.5500 +3339 7414 0.6190 +3339 7436 0.4520 +3339 7448 0.7970 +3339 7450 0.4650 +3339 7804 0.6460 +3339 7837 0.5710 +3339 8200 0.5040 +3339 8292 0.8710 +3339 8509 0.6210 +3339 8817 0.9700 +3339 8822 0.9470 +3339 8823 0.9490 +3339 9068 0.4430 +3339 9215 0.4990 +3339 9235 0.4640 +3339 9321 0.6560 +3339 9348 0.5820 +3339 9378 0.5210 +3339 9379 0.5390 +3339 9394 0.6430 +3339 9445 0.5050 +3339 9653 0.7050 +3339 9672 0.7460 +3339 9951 0.5120 +3339 9953 0.5350 +3339 9955 0.5270 +3339 9956 0.5380 +3339 9957 0.6400 +3339 9982 0.8840 +3339 10082 0.6760 +3339 10216 0.5900 +3339 10319 0.5880 +3339 10329 0.4180 +3339 10516 0.4400 +3339 10585 0.6120 +3339 10631 0.4540 +3339 10675 0.5570 +3339 10855 0.6530 +3339 11041 0.4360 +3339 11081 0.4770 +3339 11285 0.5450 +3339 22795 0.9990 +3339 23213 0.5300 +3339 26020 0.5860 +3339 26035 0.6380 +3339 26229 0.5760 +3339 26281 0.9490 +3339 27006 0.9490 +3339 27087 0.4100 +3339 29954 0.5710 +3339 29967 0.5770 +3339 51378 0.4370 +3339 53353 0.4240 +3339 54959 0.5090 +3339 55234 0.4140 +3339 55624 0.5550 +3339 55959 0.4630 +3339 60495 0.6300 +3339 63827 0.7430 +3339 64129 0.8190 +3339 64131 0.6060 +3339 64132 0.5500 +3339 64579 0.5840 +3339 64711 0.5540 +3339 64856 0.6090 +3339 79147 0.4950 +3339 80781 0.8940 +3339 81578 0.4950 +3339 83660 0.4620 +3339 84892 0.4170 +3339 90161 0.5470 +3339 120071 0.4320 +3339 126792 0.5470 +3339 133584 0.5110 +3339 135152 0.4160 +3339 221914 0.6580 +3339 222537 0.5500 +3339 266722 0.5090 +3339 284217 0.8330 +3339 342035 0.5780 +3339 375790 0.9930 +3340 3960 0.4090 +3340 5552 0.4080 +3340 6208 0.6540 +3340 6382 0.6840 +3340 6383 0.6890 +3340 6385 0.6810 +3340 6750 0.6250 +3340 6901 0.4220 +3340 6949 0.7250 +3340 7358 0.4790 +3340 8509 0.5050 +3340 8817 0.4400 +3340 8822 0.4240 +3340 8823 0.4530 +3340 9394 0.7550 +3340 9469 0.4150 +3340 9653 0.8380 +3340 9672 0.6520 +3340 9917 0.4420 +3340 10082 0.6480 +3340 10090 0.6930 +3340 10528 0.4240 +3340 10855 0.4430 +3340 11285 0.5940 +3340 22856 0.4200 +3340 23213 0.5780 +3340 26035 0.7570 +3340 26229 0.5730 +3340 26281 0.4530 +3340 27006 0.4400 +3340 27233 0.8950 +3340 27284 0.8930 +3340 50515 0.4020 +3340 54861 0.4600 +3340 55454 0.4220 +3340 55790 0.4940 +3340 55959 0.6200 +3340 64131 0.4700 +3340 64132 0.5730 +3340 65217 0.5560 +3340 90161 0.6520 +3340 126792 0.4530 +3340 221914 0.6250 +3340 266722 0.5190 +3340 347734 0.5680 +3340 375790 0.6250 +3340 442038 0.8960 +3344 3973 0.4360 +3344 5989 0.4990 +3344 5990 0.4120 +3344 6500 0.4330 +3344 6596 0.6300 +3344 7334 0.5650 +3344 7336 0.5530 +3344 7707 0.4520 +3344 8945 0.6670 +3344 23291 0.6480 +3344 50485 0.5420 +3344 55279 0.4900 +3344 56852 0.5020 +3344 80204 0.5520 +3344 83478 0.4150 +3344 84083 0.5220 +3344 84893 0.4770 +3344 129285 0.5380 +3344 257218 0.6800 +3346 3347 0.9870 +3346 4025 0.4510 +3346 4057 0.5260 +3346 4541 0.4260 +3346 4589 0.9500 +3346 5159 0.7570 +3346 5304 0.4260 +3346 6779 0.9930 +3346 7837 0.4180 +3346 9129 0.5380 +3346 10957 0.4370 +3346 11272 0.4460 +3346 25880 0.4320 +3346 55701 0.4060 +3346 85438 0.4340 +3346 137902 0.4210 +3346 653247 0.4180 +3346 727897 0.8890 +3347 4025 0.5960 +3347 4057 0.7330 +3347 4069 0.4080 +3347 4589 0.9040 +3347 5304 0.4530 +3347 5544 0.4270 +3347 5620 0.4030 +3347 6406 0.5230 +3347 6737 0.8920 +3347 6738 0.5880 +3347 6764 0.8760 +3347 6779 0.9490 +3347 7047 0.4110 +3347 8001 0.4070 +3347 9129 0.4800 +3347 55701 0.4340 +3347 58503 0.4570 +3347 85438 0.4710 +3347 91283 0.6210 +3347 91404 0.4320 +3347 117159 0.4460 +3347 140683 0.4470 +3347 414325 0.6200 +3347 653247 0.4570 +3347 727897 0.6740 +3347 728358 0.4750 +3350 3351 0.9140 +3350 3352 0.6840 +3350 3354 0.5330 +3350 3356 0.9200 +3350 3357 0.5540 +3350 3358 0.6170 +3350 3359 0.7480 +3350 3361 0.5630 +3350 3363 0.7010 +3350 3725 0.4350 +3350 3757 0.4270 +3350 3760 0.5650 +3350 3957 0.5210 +3350 4128 0.8610 +3350 4129 0.7350 +3350 4741 0.4300 +3350 4842 0.4680 +3350 4852 0.8310 +3350 4915 0.4910 +3350 4922 0.5670 +3350 4988 0.5630 +3350 5020 0.8540 +3350 5021 0.4300 +3350 5173 0.4980 +3350 5443 0.6400 +3350 5468 0.4030 +3350 5566 0.4320 +3350 5567 0.4320 +3350 5568 0.4510 +3350 5617 0.6450 +3350 5816 0.4610 +3350 6530 0.7880 +3350 6531 0.7920 +3350 6532 0.9680 +3350 6571 0.6160 +3350 6750 0.7960 +3350 6863 0.5670 +3350 7054 0.4950 +3350 7166 0.6890 +3350 7170 0.5680 +3350 7442 0.7400 +3350 8811 0.4900 +3350 8989 0.4550 +3350 9177 0.6440 +3350 9290 0.7820 +3350 9312 0.4360 +3350 9568 0.4030 +3350 9851 0.4140 +3350 10280 0.4820 +3350 10522 0.4930 +3350 10630 0.4740 +3350 10681 0.7600 +3350 51083 0.6610 +3350 51194 0.4440 +3350 51393 0.4180 +3350 51738 0.7720 +3350 51764 0.7140 +3350 54331 0.9380 +3350 54738 0.4010 +3350 54862 0.4410 +3350 55970 0.6870 +3350 57555 0.4640 +3350 59345 0.7440 +3350 60482 0.4050 +3350 94235 0.6780 +3350 121278 0.6940 +3350 140679 0.4190 +3350 170572 0.4380 +3350 220074 0.4800 +3350 338567 0.4400 +3350 104909134 0.5420 +3351 3352 0.9520 +3351 3354 0.7490 +3351 3355 0.5570 +3351 3356 0.8390 +3351 3357 0.7250 +3351 3358 0.7210 +3351 3359 0.7420 +3351 3361 0.6430 +3351 3777 0.5950 +3351 4041 0.5920 +3351 4128 0.7340 +3351 4129 0.8020 +3351 4646 0.4510 +3351 4852 0.8070 +3351 5020 0.7950 +3351 5028 0.4070 +3351 5443 0.6520 +3351 6281 0.8420 +3351 6334 0.5550 +3351 6336 0.6000 +3351 6530 0.6260 +3351 6531 0.7480 +3351 6532 0.9320 +3351 6571 0.5480 +3351 6616 0.7300 +3351 6714 0.5670 +3351 6750 0.7470 +3351 6863 0.5400 +3351 7166 0.8950 +3351 7170 0.5430 +3351 9177 0.6880 +3351 10476 0.4200 +3351 10630 0.4310 +3351 10681 0.7460 +3351 10803 0.4050 +3351 26053 0.4650 +3351 26086 0.4430 +3351 30835 0.5370 +3351 51738 0.7450 +3351 51764 0.6960 +3351 54331 0.9750 +3351 55970 0.6870 +3351 59345 0.7440 +3351 63940 0.4270 +3351 94235 0.6780 +3351 121278 0.8070 +3351 170572 0.4500 +3351 200909 0.4140 +3351 257313 0.4540 +3351 285242 0.4620 +3351 104909134 0.4130 +3352 3354 0.7420 +3352 3355 0.6400 +3352 3356 0.5180 +3352 3357 0.5750 +3352 3358 0.5580 +3352 3359 0.7930 +3352 3361 0.6680 +3352 3363 0.4220 +3352 4128 0.6030 +3352 4129 0.7790 +3352 4852 0.7250 +3352 4985 0.4590 +3352 4988 0.4850 +3352 5020 0.7180 +3352 5028 0.4210 +3352 5031 0.4200 +3352 6281 0.5220 +3352 6530 0.5200 +3352 6531 0.4560 +3352 6532 0.9210 +3352 6570 0.5140 +3352 6571 0.4160 +3352 6714 0.5350 +3352 6750 0.7270 +3352 6863 0.4670 +3352 7166 0.8020 +3352 7433 0.6840 +3352 8601 0.4170 +3352 9177 0.6180 +3352 9568 0.4050 +3352 10630 0.4430 +3352 10636 0.4060 +3352 10681 0.7410 +3352 26086 0.4240 +3352 51738 0.6970 +3352 51764 0.6990 +3352 54331 0.9380 +3352 55970 0.6870 +3352 56978 0.4070 +3352 59345 0.7440 +3352 94235 0.6780 +3352 121278 0.6940 +3352 170572 0.4770 +3352 200909 0.4500 +3352 285242 0.4350 +3352 594855 0.4110 +3354 3355 0.4580 +3354 3356 0.4500 +3354 3357 0.5020 +3354 3358 0.5400 +3354 3359 0.7840 +3354 3361 0.7200 +3354 4128 0.4120 +3354 4852 0.6970 +3354 4988 0.4650 +3354 5020 0.6860 +3354 5028 0.4250 +3354 5031 0.4210 +3354 6529 0.4020 +3354 6530 0.4670 +3354 6531 0.4030 +3354 6532 0.6000 +3354 6714 0.5140 +3354 6750 0.7060 +3354 7166 0.4660 +3354 9177 0.7230 +3354 10681 0.7400 +3354 26086 0.4160 +3354 51077 0.4150 +3354 51738 0.6640 +3354 51764 0.7120 +3354 54331 0.9400 +3354 55970 0.7170 +3354 59345 0.7380 +3354 85452 0.4830 +3354 94235 0.6780 +3354 118881 0.4550 +3354 170572 0.4780 +3354 200909 0.4530 +3354 285242 0.4490 +3355 3356 0.4050 +3355 3358 0.4790 +3355 3359 0.7100 +3355 3361 0.4810 +3355 4852 0.7150 +3355 5020 0.6880 +3355 5860 0.4450 +3355 6262 0.4500 +3355 6532 0.4930 +3355 6714 0.5030 +3355 6718 0.4240 +3355 6750 0.7170 +3355 7166 0.4350 +3355 9177 0.6780 +3355 10681 0.7340 +3355 26086 0.4160 +3355 51738 0.6590 +3355 51764 0.6970 +3355 54331 0.9410 +3355 55970 0.7170 +3355 59345 0.7350 +3355 94235 0.6780 +3355 133396 0.4010 +3355 170572 0.4900 +3355 200909 0.4860 +3355 285220 0.4990 +3355 285242 0.4770 +3356 3357 0.9620 +3356 3358 0.9910 +3356 3359 0.8810 +3356 3361 0.5640 +3356 3363 0.4930 +3356 3481 0.4560 +3356 3757 0.4320 +3356 3839 0.4070 +3356 4081 0.5910 +3356 4128 0.7860 +3356 4129 0.6870 +3356 4524 0.5420 +3356 4852 0.4910 +3356 4915 0.4580 +3356 4922 0.4230 +3356 5020 0.5440 +3356 5021 0.4920 +3356 5321 0.4790 +3356 5330 0.5290 +3356 5331 0.6060 +3356 5362 0.4080 +3356 5443 0.5370 +3356 5533 0.6350 +3356 5603 0.4390 +3356 5617 0.6000 +3356 5625 0.4430 +3356 5649 0.4300 +3356 5733 0.4430 +3356 5816 0.4430 +3356 5997 0.4830 +3356 5999 0.5980 +3356 6091 0.4610 +3356 6530 0.6750 +3356 6531 0.7080 +3356 6532 0.9610 +3356 6571 0.5870 +3356 6616 0.4720 +3356 6714 0.4160 +3356 6854 0.4340 +3356 6863 0.4950 +3356 7054 0.4240 +3356 7166 0.9010 +3356 7204 0.5080 +3356 7442 0.4320 +3356 8573 0.4040 +3356 8671 0.4220 +3356 8777 0.6020 +3356 8997 0.6390 +3356 9177 0.6630 +3356 9283 0.4500 +3356 9360 0.4200 +3356 9378 0.4290 +3356 9630 0.7060 +3356 9722 0.4990 +3356 10280 0.4470 +3356 10630 0.4780 +3356 10800 0.4920 +3356 22954 0.6200 +3356 23236 0.6700 +3356 27185 0.5940 +3356 29801 0.4430 +3356 54331 0.8160 +3356 57105 0.5600 +3356 64805 0.4190 +3356 79608 0.6000 +3356 84062 0.7390 +3356 84708 0.4280 +3356 91752 0.5790 +3356 115557 0.5160 +3356 121278 0.7620 +3356 123099 0.5490 +3356 170572 0.5050 +3356 200909 0.4480 +3356 220074 0.5730 +3356 255239 0.4750 +3356 267012 0.6450 +3356 285242 0.4800 +3356 104909134 0.4890 +3357 3358 0.9770 +3357 3359 0.7800 +3357 3361 0.5390 +3357 3479 0.4020 +3357 3553 0.4270 +3357 3757 0.4520 +3357 4128 0.6040 +3357 4129 0.5320 +3357 4914 0.4800 +3357 5330 0.5130 +3357 5331 0.5430 +3357 5443 0.4140 +3357 5617 0.4310 +3357 6010 0.6250 +3357 6295 0.6000 +3357 6530 0.5560 +3357 6531 0.5550 +3357 6532 0.8720 +3357 6570 0.4220 +3357 6571 0.5460 +3357 6863 0.5500 +3357 7166 0.8910 +3357 7170 0.5750 +3357 7204 0.4990 +3357 7798 0.4230 +3357 8997 0.4990 +3357 9177 0.6260 +3357 9630 0.7090 +3357 10289 0.4460 +3357 10800 0.5110 +3357 11104 0.4180 +3357 22954 0.4650 +3357 23236 0.5220 +3357 26047 0.4030 +3357 54331 0.8170 +3357 57105 0.5220 +3357 59340 0.4060 +3357 64805 0.5170 +3357 84708 0.5830 +3357 114798 0.4550 +3357 115557 0.5010 +3357 121278 0.4840 +3357 122786 0.4360 +3357 170572 0.5040 +3357 200909 0.4180 +3357 285242 0.4100 +3358 3359 0.8040 +3358 3361 0.5480 +3358 3736 0.4270 +3358 3757 0.4210 +3358 3952 0.5030 +3358 4128 0.6910 +3358 4129 0.8000 +3358 4160 0.5510 +3358 4356 0.4800 +3358 4524 0.5280 +3358 4692 0.4870 +3358 4808 0.4070 +3358 4852 0.5190 +3358 5020 0.4500 +3358 5028 0.4090 +3358 5173 0.4490 +3358 5330 0.5230 +3358 5331 0.5040 +3358 5443 0.7450 +3358 5617 0.5750 +3358 5728 0.4790 +3358 6317 0.5460 +3358 6529 0.4050 +3358 6530 0.6250 +3358 6531 0.6220 +3358 6532 0.9140 +3358 6571 0.6100 +3358 6616 0.4300 +3358 6638 0.5420 +3358 6863 0.4400 +3358 7166 0.8440 +3358 7204 0.4990 +3358 7681 0.5110 +3358 7857 0.4640 +3358 8777 0.8200 +3358 8997 0.5140 +3358 9177 0.6290 +3358 9568 0.4390 +3358 9630 0.7190 +3358 10800 0.4880 +3358 23236 0.5730 +3358 51305 0.5120 +3358 51738 0.4480 +3358 54331 0.9410 +3358 54551 0.5530 +3358 54806 0.4180 +3358 57105 0.5120 +3358 57194 0.4910 +3358 57631 0.4870 +3358 59345 0.5490 +3358 84708 0.4820 +3358 115557 0.5160 +3358 121278 0.7520 +3358 154796 0.4480 +3358 170572 0.4380 +3358 200909 0.4110 +3358 255239 0.4170 +3358 340596 0.4740 +3358 353500 0.5110 +3358 104909134 0.4640 +3359 3361 0.7390 +3359 3362 0.5970 +3359 3363 0.7250 +3359 3383 0.4080 +3359 4128 0.5540 +3359 4129 0.4640 +3359 4852 0.5790 +3359 4988 0.4590 +3359 5816 0.6950 +3359 6403 0.4280 +3359 6529 0.4250 +3359 6531 0.4280 +3359 6532 0.7260 +3359 6750 0.6800 +3359 6863 0.5430 +3359 6869 0.5760 +3359 7166 0.6190 +3359 7432 0.6060 +3359 7442 0.4820 +3359 8989 0.4620 +3359 9177 0.9990 +3359 10368 0.7370 +3359 10369 0.7480 +3359 22953 0.4770 +3359 24141 0.4230 +3359 26468 0.5630 +3359 27091 0.7230 +3359 27092 0.7200 +3359 51083 0.4340 +3359 59283 0.7240 +3359 59284 0.7220 +3359 79608 0.9380 +3359 93145 0.7260 +3359 116443 0.7790 +3359 116444 0.7480 +3359 121278 0.4470 +3359 123099 0.7670 +3359 140679 0.4190 +3359 149111 0.7200 +3359 170572 0.9930 +3359 200909 0.9950 +3359 254263 0.7510 +3359 285242 0.9790 +3359 375567 0.5400 +3359 388336 0.5400 +3359 402117 0.5710 +3359 440829 0.5400 +3359 729956 0.5400 +3359 729993 0.7370 +3360 3362 0.4630 +3360 3363 0.4370 +3360 3757 0.5560 +3360 4295 0.4140 +3360 4883 0.4290 +3360 5443 0.4330 +3360 6714 0.5290 +3360 54331 0.8310 +3360 119679 0.4970 +3360 219965 0.4320 +3360 376132 0.4620 +3360 441608 0.4310 +3361 3736 0.4150 +3361 3746 0.4400 +3361 3760 0.4400 +3361 3765 0.6780 +3361 4099 0.4380 +3361 4128 0.4070 +3361 4504 0.4340 +3361 4917 0.4270 +3361 4978 0.4180 +3361 5832 0.7610 +3361 6014 0.4050 +3361 6529 0.4390 +3361 6532 0.6230 +3361 6534 0.4590 +3361 6616 0.4030 +3361 6620 0.4420 +3361 6714 0.4990 +3361 6750 0.4820 +3361 7166 0.4620 +3361 9177 0.6890 +3361 9283 0.5070 +3361 9362 0.4390 +3361 9568 0.4230 +3361 10368 0.4290 +3361 10630 0.4660 +3361 10681 0.6970 +3361 23017 0.4080 +3361 23042 0.4060 +3361 23072 0.4750 +3361 23620 0.4950 +3361 51764 0.7900 +3361 54331 0.9370 +3361 55716 0.4320 +3361 55970 0.8050 +3361 56934 0.4560 +3361 57007 0.4180 +3361 58157 0.4400 +3361 59345 0.6820 +3361 63932 0.5200 +3361 63974 0.4250 +3361 83482 0.4060 +3361 85463 0.4120 +3361 93377 0.8220 +3361 94235 0.6780 +3361 116443 0.5030 +3361 116444 0.4240 +3361 126006 0.4200 +3361 132204 0.4540 +3361 136306 0.5060 +3361 140679 0.4880 +3361 152185 0.4070 +3361 158931 0.4660 +3361 170572 0.5330 +3361 200909 0.5630 +3361 253769 0.5560 +3361 283999 0.4260 +3361 285242 0.5000 +3361 340351 0.4170 +3361 342865 0.4020 +3361 613212 0.4200 +3361 642968 0.4660 +3361 645974 0.4020 +3362 3363 0.9250 +3362 4878 0.9040 +3362 5443 0.9200 +3362 6532 0.4650 +3362 6714 0.4990 +3362 7252 0.9040 +3362 7432 0.9160 +3362 8100 0.4310 +3362 10987 0.4530 +3362 54331 0.8160 +3363 3416 0.5470 +3363 3952 0.4120 +3363 4128 0.4750 +3363 4129 0.4280 +3363 5860 0.4250 +3363 6262 0.4910 +3363 6532 0.6450 +3363 6570 0.4020 +3363 6714 0.5230 +3363 6718 0.4140 +3363 7166 0.6070 +3363 9177 0.6940 +3363 9585 0.7870 +3363 10630 0.4960 +3363 10681 0.9260 +3363 22836 0.6450 +3363 23426 0.5800 +3363 26280 0.4070 +3363 29119 0.4310 +3363 51764 0.9140 +3363 54331 0.9830 +3363 55970 0.9130 +3363 59345 0.9320 +3363 94235 0.9120 +3363 116512 0.4120 +3363 170572 0.4970 +3363 255022 0.5050 +3363 285242 0.4550 +3364 3978 0.7600 +3364 3980 0.4560 +3364 3981 0.5660 +3364 4361 0.8170 +3364 4436 0.5640 +3364 4437 0.6040 +3364 4552 0.4050 +3364 4595 0.8800 +3364 4683 0.8430 +3364 4913 0.4090 +3364 4968 0.5700 +3364 5423 0.5580 +3364 5424 0.4200 +3364 5591 0.7010 +3364 5810 0.9990 +3364 5883 0.9990 +3364 5884 0.9990 +3364 5888 0.8560 +3364 5889 0.7100 +3364 5890 0.6840 +3364 5892 0.6940 +3364 5893 0.7640 +3364 5932 0.8160 +3364 5980 0.4670 +3364 5981 0.5140 +3364 5982 0.9920 +3364 5983 0.9720 +3364 5984 0.9870 +3364 5985 0.9830 +3364 6117 0.8640 +3364 6118 0.7940 +3364 6119 0.7510 +3364 6500 0.4540 +3364 6996 0.6650 +3364 7156 0.6170 +3364 7157 0.7120 +3364 7158 0.8560 +3364 7266 0.4380 +3364 7329 0.4220 +3364 7465 0.5080 +3364 7486 0.8730 +3364 7507 0.5160 +3364 7508 0.4350 +3364 7515 0.5410 +3364 7516 0.6590 +3364 7517 0.4850 +3364 7518 0.4600 +3364 7520 0.8120 +3364 7531 0.4200 +3364 7541 0.8350 +3364 7979 0.5730 +3364 8318 0.7600 +3364 8454 0.4160 +3364 8914 0.6350 +3364 9025 0.4540 +3364 9156 0.8320 +3364 9184 0.4170 +3364 9400 0.5080 +3364 9401 0.5310 +3364 9656 0.8010 +3364 9700 0.4010 +3364 9874 0.4540 +3364 10111 0.6290 +3364 10459 0.4560 +3364 10524 0.6090 +3364 10987 0.4300 +3364 11073 0.9960 +3364 11200 0.7580 +3364 11201 0.5010 +3364 11284 0.4180 +3364 22976 0.4030 +3364 23626 0.5040 +3364 25788 0.4520 +3364 27301 0.5070 +3364 27343 0.6880 +3364 50485 0.4230 +3364 51455 0.5750 +3364 51548 0.6830 +3364 54465 0.6150 +3364 54840 0.4760 +3364 54921 0.4690 +3364 54962 0.7960 +3364 55215 0.4210 +3364 55536 0.6620 +3364 55775 0.4070 +3364 56852 0.5290 +3364 57697 0.6020 +3364 57823 0.4260 +3364 63922 0.5480 +3364 63967 0.9600 +3364 64421 0.4130 +3364 79075 0.4280 +3364 79661 0.7340 +3364 79840 0.6210 +3364 79915 0.6210 +3364 79991 0.4240 +3364 80010 0.6470 +3364 80198 0.5640 +3364 81620 0.4330 +3364 83695 0.9850 +3364 83990 0.7100 +3364 84126 0.9740 +3364 84250 0.4070 +3364 91442 0.4520 +3364 116028 0.6280 +3364 135458 0.5780 +3364 144715 0.9910 +3364 166752 0.4380 +3364 254528 0.4540 +3364 348654 0.4330 +3371 3655 0.6860 +3371 3672 0.6990 +3371 3673 0.7300 +3371 3674 0.6930 +3371 3675 0.7070 +3371 3676 0.6870 +3371 3678 0.7170 +3371 3679 0.6970 +3371 3680 0.9520 +3371 3685 0.9460 +3371 3687 0.5530 +3371 3688 0.9170 +3371 3690 0.9140 +3371 3691 0.6840 +3371 3693 0.7010 +3371 3694 0.9100 +3371 3695 0.6930 +3371 3696 0.6880 +3371 3908 0.4010 +3371 3912 0.4610 +3371 3913 0.4320 +3371 3915 0.4470 +3371 4313 0.5140 +3371 4684 0.4830 +3371 4811 0.4800 +3371 4908 0.4450 +3371 5328 0.4060 +3371 5730 0.4500 +3371 5747 0.6630 +3371 6382 0.9120 +3371 6385 0.9530 +3371 6405 0.4680 +3371 6659 0.4500 +3371 6678 0.5300 +3371 6696 0.5070 +3371 7040 0.4680 +3371 7143 0.5650 +3371 7148 0.5420 +3371 7448 0.4460 +3371 7869 0.4330 +3371 8515 0.6880 +3371 8516 0.9110 +3371 9672 0.7280 +3371 9723 0.4200 +3371 10371 0.4520 +3371 10512 0.4570 +3371 10631 0.6000 +3371 11117 0.4080 +3371 22795 0.4160 +3371 22801 0.6990 +3371 23643 0.4330 +3371 54757 0.4110 +3371 56920 0.4350 +3371 56975 0.5260 +3371 63827 0.6450 +3371 63923 0.5680 +3371 85476 0.5540 +3371 85477 0.5150 +3371 223117 0.4240 +3371 284217 0.4080 +3371 387129 0.5140 +3373 3425 0.9460 +3373 3849 0.4420 +3373 4486 0.7080 +3373 4669 0.4200 +3373 6405 0.4970 +3373 6448 0.4560 +3373 6453 0.5360 +3373 7130 0.4390 +3373 10641 0.5480 +3373 10894 0.4940 +3373 11068 0.4710 +3373 11186 0.4950 +3373 23670 0.5770 +3373 50618 0.5360 +3373 57214 0.6290 +3373 114821 0.4650 +3373 138050 0.4720 +3375 3416 0.9910 +3375 3553 0.4790 +3375 3569 0.4160 +3375 3630 0.9840 +3375 3640 0.4920 +3375 3651 0.9190 +3375 3767 0.4700 +3375 3952 0.8170 +3375 3953 0.5190 +3375 3972 0.4050 +3375 4057 0.4480 +3375 4137 0.4180 +3375 4150 0.4970 +3375 4160 0.4260 +3375 4240 0.5300 +3375 4760 0.5150 +3375 4825 0.5310 +3375 4852 0.5820 +3375 4878 0.5950 +3375 5078 0.5220 +3375 5122 0.4890 +3375 5126 0.5240 +3375 5443 0.6940 +3375 5539 0.8180 +3375 5617 0.5620 +3375 5621 0.8900 +3375 5697 0.8550 +3375 5715 0.5490 +3375 5741 0.5700 +3375 5744 0.4660 +3375 5798 0.4750 +3375 6019 0.4540 +3375 6288 0.5290 +3375 6343 0.6530 +3375 6406 0.4850 +3375 6476 0.6210 +3375 6514 0.5890 +3375 6524 0.5070 +3375 6622 0.9340 +3375 6714 0.5540 +3375 6750 0.7000 +3375 6833 0.4980 +3375 6863 0.5800 +3375 7045 0.4100 +3375 7099 0.4770 +3375 7252 0.4940 +3375 7276 0.8420 +3375 7432 0.6040 +3375 8972 0.6090 +3375 9370 0.5220 +3375 9445 0.5420 +3375 10203 0.9930 +3375 10266 0.9960 +3375 10267 0.9980 +3375 10268 0.9980 +3375 10367 0.5360 +3375 10874 0.4790 +3375 23621 0.5340 +3375 25825 0.5000 +3375 50674 0.4600 +3375 51738 0.8250 +3375 54331 0.8010 +3375 54959 0.4140 +3375 55532 0.4750 +3375 56729 0.6310 +3375 57105 0.4990 +3375 57818 0.7070 +3375 79924 0.8240 +3375 84504 0.4910 +3375 84570 0.4260 +3375 84666 0.6310 +3375 91947 0.4010 +3375 113091 0.5530 +3375 114131 0.4430 +3375 117579 0.6240 +3375 122876 0.4250 +3375 169026 0.5900 +3375 170589 0.4190 +3375 255061 0.4310 +3375 256297 0.5070 +3375 594857 0.4670 +3376 3646 0.4010 +3376 3735 0.9990 +3376 3921 0.5170 +3376 4141 0.9990 +3376 4176 0.4090 +3376 4528 0.5150 +3376 4677 0.9650 +3376 4736 0.4130 +3376 5111 0.5020 +3376 5151 0.5420 +3376 5188 0.5560 +3376 5431 0.5030 +3376 5432 0.4730 +3376 5464 0.5580 +3376 5469 0.4550 +3376 5471 0.4410 +3376 5573 0.4130 +3376 5708 0.4020 +3376 5832 0.6150 +3376 5859 0.9990 +3376 5917 0.9990 +3376 5976 0.6720 +3376 6059 0.4870 +3376 6122 0.4610 +3376 6124 0.5260 +3376 6125 0.5760 +3376 6128 0.4120 +3376 6132 0.4880 +3376 6133 0.5590 +3376 6135 0.4730 +3376 6143 0.4180 +3376 6147 0.6030 +3376 6154 0.4220 +3376 6170 0.6340 +3376 6175 0.5620 +3376 6187 0.5390 +3376 6188 0.5850 +3376 6189 0.4250 +3376 6203 0.5160 +3376 6205 0.5140 +3376 6208 0.5040 +3376 6209 0.4870 +3376 6210 0.4070 +3376 6217 0.5370 +3376 6224 0.5480 +3376 6228 0.4370 +3376 6301 0.9080 +3376 6386 0.7940 +3376 6472 0.5090 +3376 6729 0.4220 +3376 6734 0.4490 +3376 6888 0.4020 +3376 6897 0.9130 +3376 6950 0.5510 +3376 7086 0.4040 +3376 7153 0.4370 +3376 7155 0.4100 +3376 7167 0.4270 +3376 7203 0.5410 +3376 7284 0.4620 +3376 7298 0.4910 +3376 7317 0.6790 +3376 7407 0.9000 +3376 7411 0.5750 +3376 7453 0.8500 +3376 7965 0.9940 +3376 8189 0.4910 +3376 8277 0.4060 +3376 8565 0.9660 +3376 8662 0.4060 +3376 8668 0.5450 +3376 8697 0.5480 +3376 8833 0.6540 +3376 8894 0.5330 +3376 9255 0.9960 +3376 9343 0.4770 +3376 9349 0.4950 +3376 9521 0.9960 +3376 9533 0.4160 +3376 9669 0.6640 +3376 10026 0.5450 +3376 10056 0.9140 +3376 10102 0.5930 +3376 10128 0.4820 +3376 10352 0.8450 +3376 10574 0.5480 +3376 10575 0.5090 +3376 10576 0.5150 +3376 10667 0.7740 +3376 10694 0.5660 +3376 10806 0.4750 +3376 11128 0.4890 +3376 11222 0.4640 +3376 11224 0.4650 +3376 11232 0.4530 +3376 11260 0.6540 +3376 22948 0.6000 +3376 22984 0.6060 +3376 23020 0.4760 +3376 23395 0.9890 +3376 23438 0.8280 +3376 23515 0.4140 +3376 23521 0.4710 +3376 25885 0.4950 +3376 25973 0.9930 +3376 27068 0.5220 +3376 28998 0.4200 +3376 29789 0.4830 +3376 29968 0.4400 +3376 51021 0.4530 +3376 51067 0.9040 +3376 51069 0.4060 +3376 51095 0.4820 +3376 51493 0.5500 +3376 51520 0.9990 +3376 54938 0.8950 +3376 54965 0.4220 +3376 55035 0.4860 +3376 55157 0.8070 +3376 55294 0.5250 +3376 55621 0.4430 +3376 55629 0.8140 +3376 55644 0.4510 +3376 55699 0.9350 +3376 55703 0.4140 +3376 55720 0.5100 +3376 55802 0.6540 +3376 56474 0.4990 +3376 57019 0.4640 +3376 57038 0.9900 +3376 57176 0.8720 +3376 57470 0.7750 +3376 57505 0.8630 +3376 64172 0.4180 +3376 64963 0.4340 +3376 64969 0.4140 +3376 79587 0.9020 +3376 79631 0.4080 +3376 79693 0.5350 +3376 79731 0.8710 +3376 80222 0.8770 +3376 81570 0.4040 +3376 84076 0.4060 +3376 84172 0.5010 +3376 84464 0.5620 +3376 84705 0.4040 +3376 84893 0.4180 +3376 85476 0.5970 +3376 87178 0.4500 +3376 90353 0.4360 +3376 91875 0.4960 +3376 91893 0.4410 +3376 92399 0.5760 +3376 92935 0.9960 +3376 93974 0.4280 +3376 116832 0.6400 +3376 118881 0.4200 +3376 123263 0.6350 +3376 123283 0.9510 +3376 124454 0.9120 +3376 149951 0.8420 +3376 196074 0.4030 +3376 374395 0.4570 +3376 440275 0.4430 +3376 100885850 0.4400 +3376 101927367 0.4180 +3381 3479 0.4190 +3381 3549 0.5180 +3381 3655 0.6780 +3381 3672 0.7060 +3381 3673 0.7010 +3381 3674 0.6810 +3381 3675 0.6800 +3381 3676 0.6930 +3381 3678 0.7270 +3381 3679 0.6660 +3381 3680 0.6500 +3381 3685 0.9830 +3381 3688 0.7860 +3381 3690 0.9230 +3381 3691 0.6820 +3381 3693 0.9090 +3381 3694 0.6860 +3381 3695 0.6660 +3381 3696 0.6660 +3381 4041 0.4320 +3381 4256 0.6230 +3381 4313 0.9360 +3381 4314 0.9220 +3381 4318 0.9280 +3381 4322 0.6820 +3381 4488 0.7010 +3381 4772 0.4390 +3381 4907 0.4290 +3381 4958 0.5310 +3381 4982 0.5130 +3381 5167 0.6510 +3381 5251 0.6350 +3381 5468 0.4350 +3381 5530 0.4930 +3381 5741 0.5930 +3381 5744 0.5570 +3381 5745 0.5040 +3381 5747 0.7090 +3381 6612 0.4440 +3381 6662 0.5830 +3381 6678 0.9310 +3381 6696 0.9910 +3381 7040 0.4750 +3381 7070 0.5660 +3381 7291 0.5070 +3381 7448 0.8370 +3381 8074 0.4450 +3381 8404 0.4920 +3381 8515 0.6600 +3381 8516 0.6880 +3381 8600 0.7610 +3381 8817 0.4040 +3381 9200 0.5300 +3381 9313 0.4300 +3381 9495 0.4350 +3381 10117 0.6750 +3381 10319 0.4990 +3381 10631 0.5050 +3381 22801 0.6860 +3381 22943 0.4880 +3381 23314 0.5950 +3381 23523 0.4110 +3381 27146 0.4500 +3381 50964 0.6490 +3381 54959 0.5180 +3381 55553 0.5180 +3381 56172 0.5820 +3381 56934 0.4820 +3381 56955 0.7900 +3381 93166 0.6820 +3381 116337 0.4160 +3381 121340 0.8840 +3381 401138 0.5390 +3381 729359 0.4010 +3381 752014 0.6080 +3382 3633 0.4030 +3382 4938 0.6370 +3382 4939 0.7870 +3382 4940 0.7620 +3382 5296 0.4260 +3382 5798 0.6230 +3382 5799 0.4560 +3382 5862 0.8860 +3382 7469 0.4540 +3382 8548 0.4440 +3382 8615 0.4040 +3382 8853 0.4450 +3382 9463 0.9560 +3382 9534 0.4420 +3382 27236 0.5510 +3382 55088 0.4900 +3382 55532 0.4320 +3382 55610 0.4260 +3382 57541 0.6110 +3382 84271 0.4740 +3382 84932 0.5430 +3382 113263 0.4830 +3382 146923 0.4390 +3382 169026 0.4340 +3382 286046 0.4130 +3383 3384 0.9920 +3383 3385 0.9640 +3383 3386 0.7920 +3383 3439 0.7230 +3383 3456 0.5830 +3383 3458 0.9020 +3383 3476 0.5410 +3383 3479 0.6940 +3383 3485 0.4930 +3383 3551 0.5280 +3383 3552 0.8070 +3383 3553 0.9120 +3383 3554 0.8110 +3383 3557 0.5880 +3383 3558 0.8000 +3383 3559 0.7590 +3383 3561 0.5990 +3383 3562 0.5130 +3383 3565 0.8110 +3383 3567 0.6220 +3383 3569 0.9470 +3383 3570 0.6810 +3383 3572 0.4820 +3383 3574 0.7280 +3383 3575 0.6620 +3383 3576 0.9430 +3383 3577 0.6800 +3383 3578 0.4180 +3383 3579 0.5960 +3383 3586 0.8730 +3383 3589 0.4520 +3383 3596 0.7680 +3383 3600 0.7670 +3383 3601 0.4270 +3383 3603 0.4320 +3383 3605 0.6970 +3383 3606 0.6730 +3383 3620 0.6030 +3383 3627 0.8580 +3383 3630 0.6680 +3383 3654 0.4280 +3383 3655 0.4260 +3383 3659 0.6620 +3383 3661 0.4170 +3383 3665 0.5740 +3383 3672 0.6800 +3383 3673 0.6790 +3383 3674 0.9380 +3383 3675 0.6030 +3383 3676 0.9860 +3383 3678 0.7230 +3383 3679 0.4910 +3383 3681 0.6590 +3383 3682 0.4710 +3383 3683 0.9990 +3383 3684 0.9990 +3383 3685 0.6850 +3383 3687 0.9820 +3383 3688 0.9670 +3383 3689 0.9990 +3383 3690 0.8080 +3383 3700 0.6160 +3383 3716 0.6030 +3383 3717 0.5130 +3383 3725 0.6550 +3383 3732 0.6260 +3383 3791 0.6150 +3383 3815 0.6500 +3383 3827 0.4610 +3383 3845 0.9310 +3383 3902 0.5900 +3383 3916 0.6370 +3383 3920 0.5290 +3383 3934 0.6610 +3383 3937 0.4990 +3383 3952 0.5780 +3383 3958 0.6720 +3383 3965 0.5860 +3383 4015 0.4160 +3383 4040 0.4300 +3383 4049 0.5530 +3383 4055 0.6790 +3383 4060 0.5020 +3383 4065 0.6160 +3383 4067 0.4430 +3383 4072 0.4800 +3383 4087 0.4270 +3383 4088 0.4440 +3383 4100 0.5260 +3383 4162 0.5270 +3383 4179 0.5280 +3383 4192 0.5050 +3383 4233 0.5560 +3383 4240 0.7990 +3383 4254 0.4450 +3383 4267 0.9760 +3383 4282 0.4790 +3383 4283 0.6670 +3383 4311 0.4300 +3383 4312 0.7200 +3383 4313 0.7510 +3383 4314 0.5790 +3383 4316 0.4230 +3383 4317 0.4180 +3383 4318 0.7910 +3383 4322 0.5640 +3383 4323 0.4400 +3383 4353 0.7690 +3383 4360 0.5220 +3383 4478 0.9910 +3383 4609 0.6060 +3383 4684 0.5860 +3383 4691 0.4280 +3383 4700 0.4780 +3383 4772 0.4770 +3383 4780 0.5040 +3383 4783 0.4480 +3383 4790 0.9030 +3383 4791 0.7550 +3383 4792 0.7970 +3383 4794 0.5320 +3383 4803 0.4260 +3383 4843 0.6080 +3383 4846 0.7090 +3383 4851 0.6090 +3383 4893 0.9160 +3383 4907 0.6070 +3383 4939 0.4770 +3383 4973 0.6150 +3383 5008 0.4010 +3383 5054 0.7420 +3383 5133 0.4350 +3383 5156 0.5410 +3383 5159 0.4570 +3383 5175 0.8730 +3383 5196 0.5240 +3383 5197 0.4210 +3383 5209 0.4340 +3383 5228 0.5060 +3383 5265 0.6050 +3383 5327 0.5910 +3383 5328 0.5220 +3383 5329 0.5250 +3383 5335 0.9430 +3383 5336 0.9520 +3383 5340 0.5840 +3383 5444 0.4010 +3383 5465 0.5210 +3383 5468 0.6360 +3383 5473 0.4440 +3383 5551 0.5730 +3383 5594 0.5790 +3383 5595 0.5890 +3383 5599 0.4370 +3383 5724 0.6150 +3383 5728 0.4060 +3383 5730 0.4030 +3383 5743 0.8350 +3383 5747 0.5910 +3383 5788 0.8280 +3383 5806 0.4460 +3383 5817 0.6670 +3383 5819 0.6430 +3383 5829 0.4060 +3383 5880 0.5990 +3383 5914 0.5300 +3383 5962 0.7290 +3383 5966 0.7560 +3383 5970 0.8550 +3383 5971 0.6510 +3383 5972 0.5700 +3383 6010 0.4570 +3383 6037 0.4160 +3383 6280 0.4090 +3383 6288 0.6010 +3383 6289 0.6030 +3383 6347 0.9280 +3383 6348 0.7400 +3383 6351 0.7630 +3383 6354 0.4810 +3383 6355 0.4460 +3383 6356 0.6180 +3383 6357 0.4080 +3383 6361 0.5240 +3383 6362 0.4240 +3383 6363 0.5970 +3383 6364 0.6740 +3383 6366 0.6160 +3383 6367 0.5070 +3383 6369 0.4110 +3383 6372 0.4320 +3383 6373 0.6020 +3383 6374 0.6830 +3383 6376 0.7250 +3383 6382 0.5050 +3383 6387 0.6700 +3383 6401 0.9490 +3383 6402 0.9270 +3383 6403 0.9320 +3383 6404 0.9910 +3383 6520 0.6220 +3383 6614 0.4320 +3383 6627 0.4550 +3383 6648 0.5020 +3383 6667 0.4060 +3383 6693 0.9770 +3383 6696 0.5450 +3383 6714 0.6430 +3383 6772 0.8050 +3383 6774 0.8320 +3383 6776 0.4350 +3383 6778 0.7190 +3383 6850 0.4660 +3383 6868 0.4880 +3383 7010 0.7240 +3383 7037 0.6790 +3383 7039 0.4180 +3383 7040 0.7300 +3383 7042 0.4150 +3383 7056 0.6660 +3383 7057 0.6700 +3383 7070 0.6110 +3383 7076 0.8250 +3383 7077 0.6440 +3383 7078 0.4950 +3383 7082 0.5840 +3383 7083 0.4340 +3383 7094 0.7420 +3383 7096 0.5080 +3383 7097 0.7140 +3383 7098 0.5590 +3383 7099 0.7680 +3383 7100 0.4200 +3383 7103 0.7150 +3383 7122 0.6810 +3383 7124 0.9440 +3383 7127 0.4740 +3383 7128 0.6910 +3383 7130 0.4270 +3383 7132 0.7420 +3383 7133 0.7540 +3383 7157 0.7220 +3383 7185 0.5570 +3383 7189 0.4550 +3383 7251 0.5720 +3383 7291 0.5090 +3383 7292 0.4320 +3383 7293 0.6670 +3383 7373 0.5740 +3383 7409 0.4090 +3383 7412 0.9990 +3383 7414 0.4180 +3383 7424 0.4630 +3383 7430 0.9980 +3383 7436 0.4660 +3383 7448 0.7380 +3383 7450 0.7690 +3383 7474 0.5180 +3383 7498 0.5010 +3383 7535 0.4820 +3383 7837 0.6390 +3383 7850 0.5670 +3383 7852 0.8370 +3383 7941 0.4040 +3383 8074 0.4130 +3383 8174 0.8430 +3383 8288 0.4430 +3383 8515 0.4420 +3383 8517 0.5560 +3383 8578 0.4920 +3383 8600 0.4800 +3383 8631 0.4970 +3383 8639 0.4900 +3383 8651 0.6570 +3383 8676 0.4720 +3383 8718 0.5120 +3383 8743 0.4210 +3383 8744 0.4250 +3383 8763 0.5010 +3383 8764 0.4060 +3383 8817 0.4740 +3383 8822 0.4740 +3383 8823 0.4710 +3383 8837 0.4070 +3383 8842 0.4750 +3383 8874 0.4930 +3383 9021 0.6860 +3383 9034 0.7040 +3383 9076 0.4360 +3383 9235 0.4220 +3383 9255 0.4720 +3383 9267 0.4160 +3383 9308 0.6960 +3383 9314 0.4300 +3383 9332 0.5400 +3383 9370 0.5970 +3383 9459 0.5510 +3383 9619 0.4500 +3383 9817 0.4540 +3383 9971 0.5240 +3383 9976 0.5370 +3383 10068 0.4830 +3383 10085 0.4120 +3383 10125 0.4190 +3383 10135 0.4320 +3383 10154 0.4690 +3383 10211 0.4470 +3383 10235 0.5130 +3383 10296 0.4460 +3383 10365 0.4950 +3383 10516 0.4380 +3383 10544 0.7210 +3383 10563 0.7030 +3383 10630 0.4810 +3383 10666 0.6720 +3383 10673 0.5150 +3383 10803 0.4720 +3383 10848 0.4060 +3383 10850 0.6120 +3383 10894 0.6160 +3383 11082 0.4220 +3383 11117 0.4050 +3383 22914 0.7350 +3383 22918 0.5140 +3383 23411 0.4940 +3383 23516 0.4030 +3383 23586 0.4500 +3383 23643 0.4440 +3383 23705 0.7730 +3383 23765 0.5230 +3383 25936 0.8360 +3383 26281 0.4760 +3383 27006 0.4820 +3383 27035 0.4530 +3383 27122 0.4330 +3383 27177 0.4140 +3383 29126 0.7570 +3383 29851 0.6140 +3383 30009 0.4470 +3383 30816 0.6870 +3383 30835 0.8940 +3383 50507 0.5530 +3383 50616 0.5090 +3383 50848 0.8330 +3383 50943 0.5900 +3383 51266 0.5340 +3383 51284 0.5060 +3383 51311 0.4290 +3383 54106 0.7080 +3383 54205 0.6820 +3383 54210 0.4140 +3383 55540 0.4820 +3383 55576 0.4010 +3383 55600 0.5280 +3383 56729 0.5150 +3383 56942 0.8230 +3383 58191 0.5900 +3383 59272 0.6540 +3383 60401 0.4450 +3383 60672 0.5230 +3383 64127 0.4520 +3383 64135 0.4200 +3383 64581 0.4070 +3383 79465 0.5900 +3383 80329 0.6040 +3383 80380 0.5250 +3383 80381 0.5940 +3383 81557 0.5010 +3383 83593 0.5320 +3383 83660 0.7260 +3383 83700 0.6250 +3383 83706 0.6650 +3383 84666 0.5070 +3383 84818 0.4220 +3383 84868 0.4050 +3383 85480 0.4310 +3383 89790 0.4990 +3383 90865 0.5070 +3383 90952 0.6060 +3383 91662 0.4910 +3383 92979 0.5900 +3383 114548 0.5490 +3383 123803 0.4740 +3383 137902 0.6330 +3383 140885 0.6200 +3383 146722 0.4330 +3383 146894 0.5060 +3383 149233 0.5630 +3383 153020 0.5610 +3383 158835 0.8920 +3383 169355 0.4750 +3383 222256 0.5230 +3383 257202 0.5010 +3383 259197 0.5990 +3383 375790 0.4730 +3383 386653 0.5180 +3383 405754 0.6710 +3383 414062 0.4070 +3383 493869 0.5010 +3383 653361 0.4840 +3383 728239 0.5010 +3383 728378 0.5420 +3383 100133941 0.4330 +3383 100506658 0.6910 +3383 100526664 0.6070 +3383 104909134 0.4030 +3384 3385 0.9650 +3384 3386 0.7450 +3384 3458 0.4050 +3384 3553 0.4230 +3384 3676 0.6030 +3384 3678 0.5430 +3384 3683 0.9990 +3384 3684 0.9960 +3384 3685 0.5350 +3384 3687 0.4730 +3384 3688 0.4300 +3384 3689 0.9990 +3384 3695 0.5230 +3384 3791 0.6400 +3384 3958 0.5030 +3384 3965 0.4690 +3384 4267 0.4680 +3384 4478 0.9010 +3384 5175 0.8560 +3384 5788 0.4950 +3384 5962 0.9920 +3384 6401 0.7650 +3384 6402 0.6290 +3384 6403 0.7050 +3384 6404 0.7850 +3384 6693 0.6640 +3384 7010 0.4800 +3384 7075 0.4330 +3384 7099 0.5540 +3384 7122 0.5990 +3384 7124 0.4900 +3384 7157 0.5140 +3384 7412 0.8800 +3384 7430 0.9740 +3384 7450 0.5400 +3384 7852 0.4280 +3384 8174 0.5230 +3384 9368 0.5660 +3384 9464 0.4220 +3384 10044 0.4770 +3384 10332 0.5760 +3384 10882 0.4050 +3384 11082 0.5430 +3384 22918 0.4330 +3384 23411 0.4540 +3384 23414 0.5680 +3384 26253 0.4040 +3384 30835 0.9990 +3384 50848 0.8990 +3384 50856 0.4660 +3384 51206 0.5190 +3384 51266 0.4320 +3384 51705 0.4820 +3384 57057 0.5560 +3384 57126 0.4790 +3384 83700 0.6490 +3384 90522 0.4310 +3384 90952 0.6040 +3384 93978 0.4300 +3384 123803 0.4340 +3384 161882 0.5890 +3385 3458 0.5160 +3385 3553 0.4620 +3385 3565 0.4600 +3385 3569 0.4710 +3385 3576 0.4550 +3385 3586 0.5410 +3385 3678 0.5140 +3385 3681 0.6140 +3385 3683 0.9990 +3385 3684 0.6580 +3385 3687 0.4830 +3385 3688 0.5890 +3385 3689 0.9990 +3385 3695 0.4940 +3385 3700 0.8050 +3385 4065 0.5160 +3385 4153 0.5210 +3385 4267 0.4470 +3385 4360 0.4900 +3385 4478 0.8290 +3385 4684 0.5550 +3385 5175 0.6130 +3385 5284 0.4500 +3385 5788 0.5980 +3385 6347 0.4400 +3385 6351 0.4230 +3385 6357 0.5090 +3385 6363 0.4820 +3385 6364 0.5320 +3385 6368 0.4220 +3385 6401 0.5300 +3385 6402 0.5370 +3385 6403 0.4880 +3385 6404 0.6790 +3385 6504 0.5090 +3385 6614 0.4300 +3385 6693 0.5900 +3385 6850 0.4570 +3385 7037 0.4350 +3385 7056 0.4100 +3385 7097 0.5250 +3385 7098 0.4150 +3385 7099 0.5230 +3385 7124 0.5210 +3385 7301 0.4160 +3385 7412 0.7970 +3385 7430 0.6020 +3385 7852 0.6780 +3385 8128 0.4160 +3385 8174 0.5030 +3385 8764 0.4770 +3385 9076 0.4230 +3385 9308 0.4810 +3385 10332 0.9920 +3385 10803 0.4920 +3385 11082 0.4620 +3385 23601 0.4410 +3385 26253 0.5670 +3385 29881 0.4140 +3385 30816 0.7560 +3385 30835 0.9990 +3385 50489 0.6030 +3385 50848 0.6150 +3385 50856 0.5680 +3385 51266 0.4070 +3385 54106 0.4390 +3385 58191 0.4470 +3385 59272 0.5460 +3385 64170 0.4160 +3385 64581 0.6330 +3385 83417 0.4360 +3385 93978 0.6030 +3385 338339 0.4120 +3385 339390 0.5450 +3385 405754 0.4970 +3385 414062 0.4230 +3385 100526664 0.5150 +3386 3674 0.5600 +3386 3676 0.5430 +3386 3683 0.8550 +3386 3685 0.5590 +3386 3687 0.4880 +3386 3688 0.4490 +3386 3689 0.9810 +3386 3792 0.4920 +3386 4059 0.5810 +3386 6005 0.4860 +3386 6006 0.4450 +3386 6007 0.4040 +3386 6614 0.4810 +3386 7087 0.4130 +3386 7412 0.6450 +3386 10296 0.7340 +3386 10661 0.4680 +3386 79810 0.4460 +3386 114625 0.4500 +3386 222894 0.4390 +3394 3398 0.6460 +3394 3430 0.5700 +3394 3434 0.4220 +3394 3439 0.7160 +3394 3440 0.5950 +3394 3441 0.4850 +3394 3442 0.6450 +3394 3443 0.4260 +3394 3444 0.4330 +3394 3445 0.4260 +3394 3446 0.4230 +3394 3448 0.4280 +3394 3449 0.4250 +3394 3451 0.5660 +3394 3452 0.4300 +3394 3454 0.4780 +3394 3455 0.4220 +3394 3456 0.7510 +3394 3458 0.8590 +3394 3459 0.5880 +3394 3460 0.6030 +3394 3516 0.4460 +3394 3553 0.5590 +3394 3559 0.4530 +3394 3563 0.4760 +3394 3565 0.5590 +3394 3566 0.4020 +3394 3569 0.5440 +3394 3574 0.4200 +3394 3575 0.5830 +3394 3586 0.6010 +3394 3587 0.6310 +3394 3594 0.7300 +3394 3595 0.4450 +3394 3605 0.4400 +3394 3606 0.4160 +3394 3620 0.4240 +3394 3627 0.7050 +3394 3659 0.9830 +3394 3660 0.6670 +3394 3662 0.5610 +3394 3663 0.7540 +3394 3682 0.6500 +3394 3684 0.7330 +3394 3687 0.6570 +3394 3689 0.5390 +3394 3716 0.4960 +3394 3717 0.4640 +3394 3725 0.6430 +3394 3815 0.4840 +3394 3936 0.4380 +3394 3937 0.4500 +3394 4065 0.5190 +3394 4067 0.4720 +3394 4069 0.4030 +3394 4094 0.4210 +3394 4145 0.4030 +3394 4208 0.4240 +3394 4211 0.4450 +3394 4261 0.5750 +3394 4283 0.6830 +3394 4318 0.4590 +3394 4332 0.4660 +3394 4360 0.4680 +3394 4599 0.4910 +3394 4600 0.6060 +3394 4609 0.4380 +3394 4688 0.4280 +3394 4689 0.5000 +3394 4772 0.7890 +3394 4783 0.6680 +3394 4790 0.7010 +3394 4792 0.4020 +3394 4818 0.4270 +3394 4853 0.4780 +3394 4855 0.4010 +3394 4939 0.5590 +3394 5079 0.7280 +3394 5156 0.4280 +3394 5159 0.6090 +3394 5341 0.5550 +3394 5450 0.5120 +3394 5452 0.4120 +3394 5720 0.4600 +3394 5721 0.5480 +3394 5777 0.4060 +3394 5788 0.7260 +3394 5966 0.5010 +3394 5970 0.5880 +3394 5971 0.5460 +3394 5996 0.4030 +3394 6097 0.4150 +3394 6347 0.4280 +3394 6348 0.4730 +3394 6351 0.5020 +3394 6375 0.4200 +3394 6402 0.4480 +3394 6504 0.4250 +3394 6614 0.4050 +3394 6688 0.9990 +3394 6689 0.8570 +3394 6721 0.5190 +3394 6737 0.8260 +3394 6772 0.9040 +3394 6773 0.8500 +3394 6774 0.7110 +3394 6775 0.5600 +3394 6776 0.5190 +3394 6777 0.4780 +3394 6778 0.5030 +3394 6850 0.5420 +3394 6925 0.5560 +3394 6929 0.4660 +3394 6932 0.4330 +3394 7056 0.5660 +3394 7096 0.4110 +3394 7097 0.5360 +3394 7098 0.5480 +3394 7099 0.5590 +3394 7124 0.7450 +3394 7128 0.6620 +3394 7189 0.8410 +3394 7297 0.5540 +3394 7305 0.7140 +3394 7318 0.5270 +3394 7329 0.4770 +3394 7412 0.4820 +3394 7494 0.4520 +3394 7706 0.4440 +3394 7805 0.4960 +3394 7852 0.4670 +3394 8320 0.4250 +3394 8530 0.4090 +3394 8600 0.4570 +3394 8625 0.4220 +3394 8638 0.4850 +3394 8651 0.4510 +3394 8764 0.4040 +3394 9021 0.4100 +3394 9034 0.4400 +3394 9081 0.4330 +3394 9246 0.4500 +3394 9308 0.5750 +3394 9314 0.6950 +3394 9318 0.6660 +3394 9332 0.4800 +3394 9450 0.6220 +3394 9516 0.4240 +3394 9636 0.7290 +3394 9935 0.7630 +3394 10288 0.4380 +3394 10320 0.6850 +3394 10379 0.6000 +3394 10410 0.5520 +3394 10437 0.5010 +3394 10461 0.4510 +3394 10462 0.4870 +3394 10538 0.7700 +3394 10673 0.4650 +3394 10803 0.5540 +3394 11151 0.4080 +3394 11274 0.5410 +3394 22797 0.4970 +3394 22806 0.5290 +3394 23093 0.4360 +3394 23274 0.4030 +3394 23547 0.4150 +3394 23586 0.4590 +3394 23601 0.4210 +3394 25939 0.6290 +3394 27033 0.4140 +3394 29110 0.4270 +3394 29126 0.4320 +3394 29760 0.5540 +3394 29851 0.4530 +3394 30009 0.7160 +3394 50489 0.4390 +3394 50856 0.4860 +3394 50943 0.5010 +3394 51191 0.4190 +3394 51284 0.6710 +3394 51311 0.6100 +3394 51744 0.4170 +3394 53335 0.4860 +3394 54106 0.5390 +3394 54209 0.5040 +3394 55024 0.4560 +3394 55509 0.8230 +3394 57379 0.4830 +3394 57506 0.4420 +3394 57705 0.6090 +3394 58191 0.5250 +3394 60468 0.5190 +3394 64098 0.4520 +3394 64135 0.4730 +3394 64231 0.4230 +3394 64581 0.4140 +3394 64805 0.5700 +3394 65258 0.7040 +3394 79132 0.5570 +3394 84888 0.4410 +3394 91543 0.5290 +3394 114836 0.4860 +3394 116071 0.4410 +3394 117289 0.4750 +3394 122618 0.4260 +3394 140685 0.6360 +3394 140690 0.4290 +3394 140885 0.6070 +3394 146433 0.4780 +3394 149233 0.4350 +3394 151888 0.4680 +3394 160364 0.4070 +3394 170482 0.5050 +3394 219972 0.5880 +3394 254173 0.4360 +3394 283420 0.7250 +3394 442862 0.4390 +3394 653361 0.4010 +3394 100133941 0.4420 +3394 100271849 0.4620 +3394 100526664 0.4880 +3396 3735 0.9470 +3396 3802 0.4340 +3396 3805 0.7230 +3396 3811 0.4160 +3396 3921 0.6990 +3396 4255 0.4200 +3396 4301 0.5410 +3396 4508 0.7730 +3396 4513 0.5790 +3396 4528 0.9780 +3396 4538 0.4130 +3396 4686 0.4700 +3396 4701 0.5070 +3396 4702 0.5630 +3396 4704 0.6160 +3396 4706 0.9510 +3396 4713 0.6500 +3396 4714 0.8660 +3396 4715 0.4210 +3396 4720 0.4660 +3396 4722 0.6670 +3396 4723 0.4950 +3396 4728 0.5900 +3396 4736 0.6810 +3396 4830 0.4860 +3396 4833 0.5460 +3396 4869 0.6060 +3396 4907 0.4010 +3396 4914 0.4020 +3396 5018 0.9250 +3396 5165 0.4260 +3396 5188 0.8520 +3396 5245 0.5570 +3396 5394 0.4770 +3396 5431 0.4500 +3396 5435 0.5290 +3396 5438 0.4270 +3396 5442 0.5180 +3396 5469 0.7300 +3396 5694 0.5100 +3396 5774 0.4630 +3396 5832 0.5750 +3396 5917 0.4260 +3396 6122 0.7710 +3396 6123 0.6980 +3396 6124 0.8320 +3396 6125 0.8630 +3396 6129 0.6060 +3396 6132 0.7500 +3396 6133 0.7270 +3396 6135 0.8730 +3396 6136 0.6510 +3396 6139 0.7840 +3396 6147 0.9190 +3396 6150 0.9500 +3396 6154 0.8490 +3396 6157 0.6000 +3396 6167 0.4250 +3396 6175 0.5020 +3396 6182 0.9990 +3396 6183 0.9860 +3396 6187 0.8490 +3396 6188 0.8780 +3396 6193 0.8830 +3396 6202 0.4700 +3396 6203 0.6800 +3396 6205 0.9020 +3396 6207 0.8430 +3396 6208 0.8190 +3396 6209 0.8900 +3396 6210 0.5930 +3396 6217 0.7900 +3396 6222 0.9190 +3396 6224 0.8820 +3396 6228 0.9380 +3396 6235 0.8550 +3396 6389 0.4700 +3396 6687 0.4010 +3396 6734 0.4840 +3396 6742 0.7770 +3396 6832 0.4040 +3396 7019 0.6310 +3396 7083 0.4080 +3396 7150 0.4870 +3396 7284 0.9720 +3396 7384 0.5300 +3396 7385 0.4920 +3396 7386 0.5810 +3396 7407 0.4780 +3396 7416 0.4130 +3396 7453 0.4040 +3396 7769 0.4110 +3396 7818 0.9580 +3396 7917 0.5990 +3396 7919 0.7630 +3396 8192 0.5880 +3396 8200 0.4890 +3396 8209 0.4210 +3396 8225 0.9030 +3396 8402 0.4100 +3396 8565 0.4960 +3396 8624 0.4720 +3396 8803 0.4920 +3396 9241 0.4330 +3396 9267 0.5080 +3396 9343 0.4200 +3396 9349 0.8870 +3396 9361 0.4830 +3396 9512 0.4680 +3396 9553 0.9960 +3396 9617 0.8760 +3396 9669 0.5680 +3396 9692 0.4320 +3396 9801 0.9980 +3396 9858 0.6940 +3396 9987 0.4850 +3396 10044 0.6180 +3396 10045 0.6610 +3396 10102 0.8490 +3396 10128 0.6460 +3396 10135 0.4660 +3396 10189 0.5840 +3396 10212 0.7520 +3396 10240 0.9040 +3396 10352 0.4530 +3396 10473 0.6460 +3396 10476 0.6560 +3396 10573 0.9750 +3396 10606 0.4080 +3396 10667 0.5180 +3396 10730 0.5420 +3396 10845 0.5380 +3396 10884 0.9740 +3396 10939 0.7110 +3396 10989 0.6050 +3396 11165 0.5000 +3396 11222 0.9860 +3396 11224 0.8860 +3396 11331 0.5770 +3396 22868 0.6740 +3396 22907 0.5250 +3396 22916 0.5340 +3396 22928 0.4200 +3396 22929 0.4130 +3396 23091 0.6130 +3396 23107 0.9530 +3396 23197 0.4940 +3396 23203 0.4920 +3396 23204 0.5550 +3396 23252 0.4010 +3396 23395 0.4610 +3396 23405 0.4520 +3396 23438 0.5270 +3396 23521 0.7600 +3396 23640 0.6470 +3396 25824 0.4170 +3396 25915 0.4330 +3396 25973 0.4860 +3396 26024 0.6500 +3396 26073 0.4570 +3396 26164 0.9090 +3396 26271 0.4730 +3396 26284 0.7060 +3396 26519 0.5770 +3396 26589 0.9440 +3396 26995 0.6120 +3396 27089 0.4560 +3396 27349 0.4490 +3396 27440 0.4150 +3396 28957 0.9360 +3396 28973 0.9700 +3396 28976 0.5890 +3396 28977 0.9530 +3396 28998 0.9910 +3396 29074 0.9880 +3396 29088 0.9740 +3396 29093 0.9740 +3396 29102 0.4580 +3396 29104 0.4630 +3396 29789 0.4120 +3396 29796 0.5540 +3396 29927 0.4570 +3396 29960 0.8750 +3396 30968 0.6380 +3396 51001 0.5130 +3396 51021 0.9960 +3396 51023 0.9330 +3396 51067 0.6200 +3396 51069 0.9880 +3396 51073 0.9940 +3396 51079 0.6040 +3396 51081 0.9910 +3396 51095 0.4630 +3396 51106 0.5420 +3396 51116 0.9640 +3396 51121 0.8600 +3396 51149 0.8410 +3396 51154 0.5040 +3396 51204 0.5330 +3396 51250 0.9160 +3396 51253 0.9700 +3396 51258 0.9600 +3396 51263 0.9270 +3396 51264 0.9990 +3396 51314 0.4210 +3396 51318 0.8950 +3396 51373 0.9230 +3396 51409 0.4920 +3396 51493 0.5950 +3396 51520 0.4530 +3396 51642 0.9380 +3396 51649 0.9380 +3396 51650 0.8750 +3396 51654 0.4300 +3396 54148 0.9840 +3396 54460 0.9010 +3396 54512 0.4280 +3396 54516 0.8920 +3396 54534 0.9700 +3396 54726 0.4650 +3396 54802 0.4230 +3396 54931 0.5740 +3396 54938 0.5020 +3396 54948 0.9620 +3396 54978 0.5370 +3396 54995 0.4650 +3396 54998 0.9290 +3396 55037 0.9250 +3396 55052 0.9940 +3396 55168 0.9260 +3396 55173 0.9850 +3396 55176 0.4520 +3396 55178 0.9180 +3396 55210 0.5730 +3396 55272 0.7030 +3396 55278 0.7260 +3396 55312 0.5160 +3396 55316 0.8670 +3396 55699 0.4240 +3396 55703 0.4370 +3396 55794 0.9290 +3396 56244 0.5450 +3396 56648 0.4610 +3396 56652 0.4580 +3396 56893 0.4430 +3396 56945 0.9460 +3396 57038 0.5710 +3396 57129 0.9870 +3396 57136 0.4040 +3396 57176 0.6140 +3396 57187 0.6060 +3396 57222 0.4600 +3396 57505 0.6580 +3396 59272 0.4040 +3396 60488 0.9290 +3396 60558 0.5490 +3396 63875 0.9920 +3396 63931 0.9810 +3396 64146 0.5500 +3396 64374 0.6430 +3396 64432 0.9260 +3396 64928 0.9500 +3396 64949 0.9220 +3396 64951 0.9140 +3396 64960 0.9810 +3396 64963 0.9790 +3396 64965 0.9910 +3396 64968 0.9940 +3396 64969 0.9800 +3396 64975 0.9820 +3396 64976 0.9560 +3396 64978 0.9710 +3396 64979 0.9900 +3396 64981 0.8680 +3396 64983 0.9930 +3396 65003 0.9700 +3396 65005 0.9940 +3396 65008 0.9710 +3396 65080 0.9600 +3396 65121 0.4960 +3396 65122 0.4960 +3396 65993 0.9370 +3396 78988 0.9140 +3396 78992 0.7780 +3396 79587 0.4340 +3396 79590 0.9810 +3396 79631 0.4990 +3396 79675 0.4150 +3396 79693 0.4030 +3396 79863 0.4570 +3396 79922 0.6130 +3396 80222 0.5350 +3396 80273 0.4400 +3396 80308 0.5420 +3396 80324 0.6040 +3396 81554 0.4770 +3396 81570 0.4920 +3396 81892 0.6810 +3396 83480 0.4290 +3396 84172 0.4330 +3396 84271 0.5720 +3396 84273 0.5520 +3396 84311 0.9460 +3396 84340 0.9190 +3396 84545 0.9170 +3396 84769 0.4110 +3396 84881 0.6290 +3396 84893 0.5070 +3396 84987 0.4500 +3396 85476 0.9090 +3396 85865 0.9330 +3396 87178 0.6190 +3396 90313 0.5210 +3396 90353 0.4860 +3396 90480 0.9940 +3396 91574 0.9950 +3396 92170 0.9030 +3396 92399 0.9760 +3396 92521 0.7140 +3396 112817 0.5400 +3396 114034 0.4040 +3396 115416 0.9700 +3396 116540 0.9110 +3396 116541 0.9420 +3396 118487 0.9310 +3396 122704 0.9430 +3396 124995 0.9660 +3396 126328 0.4200 +3396 126402 0.8770 +3396 126789 0.5650 +3396 128308 0.9650 +3396 130916 0.9050 +3396 138428 0.7590 +3396 140801 0.6350 +3396 140823 0.4380 +3396 143244 0.4610 +3396 158584 0.6960 +3396 219402 0.7320 +3396 219927 0.9990 +3396 246243 0.4150 +3396 285367 0.5790 +3396 285521 0.4380 +3396 285855 0.6030 +3396 343068 0.4960 +3396 343070 0.4960 +3396 347487 0.6940 +3396 374291 0.5280 +3396 374659 0.5000 +3396 387129 0.6000 +3396 387338 0.8930 +3396 390999 0.4960 +3396 391002 0.4960 +3396 392517 0.5180 +3396 400668 0.6950 +3396 400735 0.4960 +3396 400736 0.4960 +3396 440560 0.4960 +3396 440561 0.4960 +3396 441873 0.4960 +3396 641776 0.5520 +3396 643909 0.5520 +3396 645359 0.4960 +3396 653619 0.4960 +3396 728524 0.5520 +3396 729528 0.4960 +3396 100287482 0.6940 +3396 100505478 0.6000 +3396 100526842 0.7800 +3396 100996746 0.5520 +3396 101929983 0.4960 +3396 105180390 0.5520 +3396 105180391 0.5520 +3396 127898561 0.8110 +3397 3398 0.5160 +3397 3399 0.8710 +3397 3400 0.7470 +3397 3479 0.4710 +3397 3624 0.4200 +3397 3791 0.5080 +3397 3955 0.4150 +3397 4066 0.6130 +3397 4087 0.5240 +3397 4088 0.6260 +3397 4089 0.5240 +3397 4090 0.5240 +3397 4091 0.6190 +3397 4092 0.5640 +3397 4093 0.5010 +3397 4172 0.4120 +3397 4609 0.6820 +3397 4617 0.5260 +3397 4654 0.9460 +3397 4656 0.7020 +3397 4808 0.5510 +3397 5054 0.4400 +3397 5241 0.4530 +3397 5460 0.4410 +3397 5710 0.5600 +3397 5788 0.4200 +3397 5906 0.9010 +3397 5908 0.9000 +3397 5914 0.4750 +3397 6615 0.4670 +3397 6657 0.4050 +3397 6688 0.5230 +3397 6925 0.9720 +3397 6929 0.9730 +3397 6932 0.4500 +3397 6938 0.9040 +3397 7040 0.4820 +3397 7046 0.4860 +3397 7057 0.9570 +3397 7157 0.4640 +3397 7472 0.5020 +3397 7474 0.5280 +3397 8313 0.4540 +3397 9241 0.4490 +3397 9577 0.4520 +3397 10320 0.4600 +3397 10365 0.4300 +3397 22943 0.5490 +3397 23462 0.7740 +3397 26286 0.5270 +3397 27000 0.4020 +3397 27302 0.4010 +3397 50943 0.4690 +3397 55794 0.4030 +3397 56676 0.5930 +3397 57599 0.4040 +3397 64641 0.6940 +3397 64750 0.6400 +3397 84364 0.5490 +3397 85407 0.4370 +3397 117581 0.4390 +3397 124790 0.4230 +3397 128209 0.7750 +3397 343930 0.5260 +3397 388585 0.5550 +3397 441478 0.5330 +3398 3399 0.5450 +3398 3400 0.9190 +3398 3458 0.4580 +3398 3516 0.4040 +3398 3558 0.4160 +3398 3560 0.4660 +3398 3574 0.4800 +3398 3575 0.7500 +3398 3600 0.4470 +3398 3605 0.4480 +3398 3662 0.5700 +3398 3682 0.5140 +3398 3684 0.4570 +3398 3687 0.4530 +3398 3725 0.4160 +3398 3815 0.4380 +3398 4049 0.5100 +3398 4087 0.4230 +3398 4088 0.4180 +3398 4089 0.4150 +3398 4090 0.4590 +3398 4091 0.4190 +3398 4092 0.4780 +3398 4609 0.4250 +3398 4613 0.5270 +3398 4654 0.8010 +3398 4656 0.5570 +3398 4665 0.5990 +3398 4760 0.6090 +3398 4783 0.7250 +3398 4851 0.4700 +3398 5079 0.6460 +3398 5310 0.6080 +3398 5311 0.7010 +3398 5728 0.4910 +3398 5788 0.6650 +3398 5896 0.4470 +3398 5925 0.5550 +3398 5934 0.5410 +3398 6095 0.4300 +3398 6097 0.4810 +3398 6402 0.4370 +3398 6657 0.4180 +3398 6659 0.5820 +3398 6662 0.4360 +3398 6663 0.4310 +3398 6664 0.5400 +3398 6688 0.7130 +3398 6689 0.4640 +3398 6909 0.4910 +3398 6910 0.6620 +3398 6921 0.5950 +3398 6925 0.9760 +3398 6929 0.9870 +3398 6932 0.6150 +3398 6934 0.5250 +3398 6938 0.9240 +3398 7157 0.5750 +3398 7398 0.4040 +3398 7474 0.5870 +3398 7528 0.4480 +3398 7704 0.5930 +3398 8320 0.6780 +3398 8878 0.5780 +3398 9033 0.4180 +3398 9241 0.4260 +3398 9242 0.6400 +3398 9314 0.4670 +3398 9437 0.5060 +3398 9575 0.4800 +3398 9709 0.4320 +3398 9839 0.4390 +3398 10215 0.8960 +3398 10219 0.5690 +3398 10320 0.4330 +3398 10365 0.5100 +3398 10472 0.7280 +3398 10538 0.4680 +3398 10663 0.4440 +3398 25937 0.4540 +3398 29851 0.4350 +3398 30009 0.6610 +3398 30812 0.4900 +3398 50616 0.4450 +3398 51176 0.4390 +3398 53335 0.4130 +3398 55509 0.6310 +3398 60468 0.4300 +3398 64919 0.5510 +3398 65258 0.4160 +3398 84260 0.5220 +3398 84364 0.4260 +3398 116448 0.9050 +3398 121549 0.6800 +3398 128209 0.7070 +3398 138151 0.4090 +3398 140685 0.4630 +3398 388585 0.5040 +3399 3575 0.4930 +3399 3662 0.4480 +3399 3695 0.4680 +3399 4066 0.5660 +3399 4091 0.4040 +3399 4208 0.5200 +3399 4609 0.4780 +3399 4613 0.5020 +3399 4654 0.5150 +3399 4681 0.6990 +3399 5079 0.8210 +3399 5583 0.5650 +3399 5788 0.4180 +3399 5996 0.5010 +3399 6402 0.4320 +3399 6659 0.4720 +3399 6720 0.5950 +3399 6924 0.4160 +3399 6925 0.9060 +3399 6929 0.9510 +3399 6932 0.5780 +3399 6938 0.8170 +3399 7037 0.4650 +3399 7133 0.4070 +3399 7474 0.5600 +3399 7813 0.4290 +3399 8320 0.5810 +3399 9355 0.4420 +3399 10219 0.5070 +3399 10365 0.5010 +3399 10472 0.6810 +3399 22827 0.5040 +3399 23216 0.4280 +3399 30009 0.5440 +3399 60468 0.4670 +3400 3479 0.4980 +3400 3975 0.4570 +3400 4050 0.4200 +3400 4093 0.5940 +3400 4613 0.4880 +3400 4618 0.6830 +3400 4654 0.5880 +3400 4656 0.8090 +3400 4665 0.5640 +3400 4821 0.4200 +3400 4851 0.4170 +3400 5081 0.4350 +3400 5308 0.4760 +3400 5453 0.4500 +3400 5460 0.4350 +3400 6426 0.6870 +3400 6657 0.4700 +3400 6662 0.5870 +3400 6663 0.5050 +3400 6737 0.4300 +3400 6886 0.6850 +3400 6910 0.4530 +3400 6925 0.9320 +3400 6929 0.8950 +3400 6938 0.7690 +3400 7157 0.4290 +3400 7291 0.5530 +3400 7474 0.6980 +3400 7704 0.5930 +3400 8433 0.4360 +3400 9020 0.4100 +3400 9037 0.4230 +3400 10215 0.9520 +3400 10912 0.4680 +3400 50511 0.4090 +3400 50674 0.6600 +3400 54937 0.4820 +3400 55553 0.5460 +3400 56676 0.6370 +3400 57167 0.4090 +3400 65078 0.4630 +3400 116448 0.9590 +3400 128209 0.4050 +3400 222553 0.4250 +3400 255877 0.5660 +3400 339345 0.6100 +3400 342977 0.4610 +3400 343930 0.6490 +3400 344018 0.5310 +3400 346673 0.5470 +3400 388585 0.6040 +3400 402381 0.5110 +3400 100526761 0.4810 +3416 3479 0.5830 +3416 3481 0.9500 +3416 3553 0.4250 +3416 3630 0.9990 +3416 3667 0.4800 +3416 3832 0.5220 +3416 4035 0.5840 +3416 4137 0.5170 +3416 4285 0.4110 +3416 4311 0.9410 +3416 4318 0.4280 +3416 4481 0.4900 +3416 4878 0.9380 +3416 4879 0.9120 +3416 5192 0.5040 +3416 5194 0.5540 +3416 5195 0.5410 +3416 5340 0.4500 +3416 5468 0.4520 +3416 5550 0.4300 +3416 5581 0.4460 +3416 5621 0.4040 +3416 5663 0.7800 +3416 5664 0.6920 +3416 5728 0.4200 +3416 5818 0.4250 +3416 5828 0.5210 +3416 5830 0.5590 +3416 6233 0.9520 +3416 6342 0.5820 +3416 6348 0.9530 +3416 6351 0.9320 +3416 6622 0.4590 +3416 6646 0.4010 +3416 6774 0.4010 +3416 6833 0.4180 +3416 6855 0.4270 +3416 6868 0.4850 +3416 7039 0.9230 +3416 7064 0.6780 +3416 7174 0.4950 +3416 7311 0.9470 +3416 7314 0.9500 +3416 7316 0.9730 +3416 7321 0.5100 +3416 7322 0.5010 +3416 7323 0.5030 +3416 7375 0.7550 +3416 7416 0.4570 +3416 7417 0.4110 +3416 7419 0.4080 +3416 8050 0.4390 +3416 8301 0.4220 +3416 8754 0.4910 +3416 9131 0.4070 +3416 9585 0.5580 +3416 9718 0.7950 +3416 9804 0.4410 +3416 9868 0.6230 +3416 9958 0.7680 +3416 10269 0.4540 +3416 10531 0.6630 +3416 10763 0.5650 +3416 10973 0.4780 +3416 11051 0.4830 +3416 11196 0.4690 +3416 22796 0.4360 +3416 23203 0.7350 +3416 23385 0.5770 +3416 23409 0.8600 +3416 23556 0.4420 +3416 23621 0.7930 +3416 23770 0.4490 +3416 25797 0.4360 +3416 25825 0.4830 +3416 27430 0.4080 +3416 51107 0.4840 +3416 51651 0.4240 +3416 54209 0.4360 +3416 55288 0.4430 +3416 55851 0.5080 +3416 57486 0.5500 +3416 58157 0.6190 +3416 79071 0.4270 +3416 79258 0.9480 +3416 79594 0.4050 +3416 79717 0.6910 +3416 83475 0.4820 +3416 83752 0.4170 +3416 84749 0.5160 +3416 113251 0.4590 +3416 219743 0.6530 +3416 219844 0.4840 +3416 255022 0.4930 +3416 723961 0.9030 +3416 110599583 0.5570 +3417 3418 0.9610 +3417 3419 0.9870 +3417 3420 0.9880 +3417 3421 0.9960 +3417 3658 0.8670 +3417 3717 0.6790 +3417 3718 0.5220 +3417 3791 0.4600 +3417 3815 0.6980 +3417 3845 0.7620 +3417 3948 0.6850 +3417 3982 0.5590 +3417 4048 0.4080 +3417 4089 0.5620 +3417 4191 0.9700 +3417 4193 0.5890 +3417 4194 0.6670 +3417 4199 0.7520 +3417 4200 0.5380 +3417 4255 0.9340 +3417 4292 0.5110 +3417 4297 0.5410 +3417 4300 0.4240 +3417 4351 0.5020 +3417 4508 0.4270 +3417 4512 0.4180 +3417 4513 0.4180 +3417 4522 0.6060 +3417 4524 0.4500 +3417 4594 0.4170 +3417 4609 0.7400 +3417 4613 0.4880 +3417 4629 0.4200 +3417 4632 0.5460 +3417 4635 0.5540 +3417 4705 0.4650 +3417 4706 0.4770 +3417 4720 0.6010 +3417 4722 0.4040 +3417 4723 0.5370 +3417 4728 0.7790 +3417 4763 0.7500 +3417 4780 0.8490 +3417 4790 0.4130 +3417 4851 0.5840 +3417 4860 0.5110 +3417 4869 0.8000 +3417 4893 0.7770 +3417 4914 0.4320 +3417 4942 0.6430 +3417 4967 0.9900 +3417 5052 0.4870 +3417 5091 0.7610 +3417 5095 0.4650 +3417 5096 0.4820 +3417 5105 0.4390 +3417 5106 0.4740 +3417 5156 0.7270 +3417 5159 0.4600 +3417 5162 0.6030 +3417 5163 0.4960 +3417 5192 0.4990 +3417 5194 0.5480 +3417 5195 0.5500 +3417 5209 0.4730 +3417 5211 0.5360 +3417 5213 0.6280 +3417 5214 0.5190 +3417 5223 0.6240 +3417 5224 0.5240 +3417 5226 0.8770 +3417 5230 0.7260 +3417 5232 0.4810 +3417 5236 0.5430 +3417 5290 0.7130 +3417 5295 0.5270 +3417 5313 0.4520 +3417 5315 0.6900 +3417 5426 0.4030 +3417 5464 0.5010 +3417 5604 0.4510 +3417 5625 0.4130 +3417 5683 0.4550 +3417 5723 0.5560 +3417 5728 0.8410 +3417 5781 0.6470 +3417 5828 0.5090 +3417 5830 0.5470 +3417 5832 0.5470 +3417 5834 0.4440 +3417 5836 0.4780 +3417 5837 0.4600 +3417 5885 0.4520 +3417 5914 0.5190 +3417 5927 0.4300 +3417 5979 0.5900 +3417 6098 0.4610 +3417 6120 0.5820 +3417 6187 0.4270 +3417 6189 0.4880 +3417 6224 0.4290 +3417 6233 0.5690 +3417 6319 0.4650 +3417 6342 0.6730 +3417 6389 0.8520 +3417 6390 0.8870 +3417 6391 0.6880 +3417 6392 0.6250 +3417 6427 0.7690 +3417 6470 0.6000 +3417 6472 0.6250 +3417 6478 0.4120 +3417 6510 0.5460 +3417 6513 0.5350 +3417 6515 0.4270 +3417 6576 0.6310 +3417 6598 0.5820 +3417 6599 0.4180 +3417 6616 0.4020 +3417 6647 0.4160 +3417 6648 0.4940 +3417 6652 0.4960 +3417 6657 0.5910 +3417 6714 0.4600 +3417 6720 0.6080 +3417 6748 0.5580 +3417 6774 0.4860 +3417 6794 0.5950 +3417 6839 0.4070 +3417 6855 0.4450 +3417 6888 0.7270 +3417 7001 0.6130 +3417 7015 0.7810 +3417 7086 0.6890 +3417 7124 0.4080 +3417 7153 0.4440 +3417 7157 0.8450 +3417 7167 0.7040 +3417 7276 0.4300 +3417 7277 0.4880 +3417 7284 0.4730 +3417 7295 0.5200 +3417 7296 0.6810 +3417 7307 0.7630 +3417 7311 0.4990 +3417 7314 0.5660 +3417 7316 0.5700 +3417 7321 0.6720 +3417 7322 0.5070 +3417 7323 0.5070 +3417 7385 0.4370 +3417 7403 0.6340 +3417 7416 0.4470 +3417 7428 0.4980 +3417 7474 0.4740 +3417 7490 0.6660 +3417 7837 0.4170 +3417 7915 0.8910 +3417 8050 0.7270 +3417 8089 0.4010 +3417 8233 0.6980 +3417 8243 0.4480 +3417 8277 0.5940 +3417 8289 0.5900 +3417 8290 0.4940 +3417 8309 0.5340 +3417 8352 0.4360 +3417 8356 0.5850 +3417 8358 0.5920 +3417 8402 0.5020 +3417 8405 0.4800 +3417 8493 0.5000 +3417 8789 0.6090 +3417 8801 0.7840 +3417 8802 0.8560 +3417 8803 0.8540 +3417 8842 0.6170 +3417 8880 0.6240 +3417 9122 0.4210 +3417 9123 0.4180 +3417 9126 0.4540 +3417 9330 0.5720 +3417 9563 0.8010 +3417 9669 0.5780 +3417 9682 0.4190 +3417 9817 0.6210 +3417 10019 0.5230 +3417 10135 0.4140 +3417 10213 0.4690 +3417 10215 0.6060 +3417 10320 0.4350 +3417 10381 0.4930 +3417 10399 0.4250 +3417 10449 0.5510 +3417 10551 0.4350 +3417 10587 0.6650 +3417 10630 0.5600 +3417 10735 0.6110 +3417 10763 0.4530 +3417 10797 0.5430 +3417 10857 0.4030 +3417 10873 0.6290 +3417 10891 0.4350 +3417 10935 0.5100 +3417 11315 0.4040 +3417 22933 0.5550 +3417 22934 0.5640 +3417 23028 0.4370 +3417 23095 0.5110 +3417 23135 0.4950 +3417 23410 0.4380 +3417 23411 0.4210 +3417 23530 0.5570 +3417 25796 0.4450 +3417 25902 0.4940 +3417 26040 0.6260 +3417 26227 0.5550 +3417 26330 0.4540 +3417 27068 0.5060 +3417 27165 0.4120 +3417 29072 0.4490 +3417 29126 0.5710 +3417 29968 0.4220 +3417 29998 0.4390 +3417 51167 0.4050 +3417 51444 0.5460 +3417 51741 0.5180 +3417 54205 0.6710 +3417 54583 0.4880 +3417 54704 0.4190 +3417 54790 0.9140 +3417 54941 0.5450 +3417 54949 0.4540 +3417 55193 0.5710 +3417 55276 0.4600 +3417 55293 0.5610 +3417 55294 0.5710 +3417 55500 0.4220 +3417 55526 0.7840 +3417 55554 0.6580 +3417 55654 0.4080 +3417 55753 0.9810 +3417 55902 0.5920 +3417 56922 0.4270 +3417 56954 0.8250 +3417 57103 0.5720 +3417 57492 0.5120 +3417 57494 0.8160 +3417 57546 0.4470 +3417 57591 0.4040 +3417 57670 0.6010 +3417 58508 0.4500 +3417 63035 0.5850 +3417 64969 0.4260 +3417 65220 0.8860 +3417 79944 0.7210 +3417 80312 0.5850 +3417 84076 0.5870 +3417 84295 0.6240 +3417 84444 0.4320 +3417 84532 0.5690 +3417 84706 0.8790 +3417 84939 0.4420 +3417 92483 0.6860 +3417 112399 0.5020 +3417 114112 0.5570 +3417 122622 0.4320 +3417 130752 0.6920 +3417 132949 0.4310 +3417 137362 0.8830 +3417 137902 0.4140 +3417 139221 0.4420 +3417 160287 0.6920 +3417 171023 0.8990 +3417 196528 0.4630 +3417 200424 0.5100 +3417 219743 0.5030 +3417 257202 0.4460 +3417 259307 0.8140 +3417 283985 0.6230 +3417 284111 0.4100 +3417 285527 0.6490 +3417 374291 0.4770 +3417 440093 0.4950 +3417 440686 0.4950 +3417 441024 0.4260 +3417 441531 0.5340 +3417 493869 0.4620 +3417 653604 0.4960 +3417 728294 0.8950 +3417 728317 0.4420 +3417 729020 0.4350 +3417 730249 0.4720 +3418 3419 0.9970 +3418 3420 0.9970 +3418 3421 0.9980 +3418 3630 0.4320 +3418 3658 0.8640 +3418 3717 0.6710 +3418 3718 0.5240 +3418 3791 0.4100 +3418 3815 0.6700 +3418 3845 0.7120 +3418 3948 0.6950 +3418 3982 0.5590 +3418 4089 0.4870 +3418 4191 0.9850 +3418 4193 0.5040 +3418 4194 0.5580 +3418 4199 0.6780 +3418 4200 0.5440 +3418 4255 0.8930 +3418 4292 0.4510 +3418 4297 0.5210 +3418 4300 0.4020 +3418 4318 0.4060 +3418 4329 0.4160 +3418 4351 0.5230 +3418 4508 0.4510 +3418 4512 0.4290 +3418 4513 0.4280 +3418 4522 0.6490 +3418 4524 0.4570 +3418 4535 0.4170 +3418 4609 0.5710 +3418 4613 0.4710 +3418 4629 0.4180 +3418 4704 0.4740 +3418 4720 0.6310 +3418 4722 0.4370 +3418 4723 0.5870 +3418 4728 0.7900 +3418 4763 0.6400 +3418 4800 0.4060 +3418 4851 0.5470 +3418 4860 0.5440 +3418 4869 0.7910 +3418 4893 0.7680 +3418 4914 0.5690 +3418 4942 0.5860 +3418 4967 0.9910 +3418 5091 0.7690 +3418 5095 0.4900 +3418 5096 0.5180 +3418 5105 0.4570 +3418 5106 0.4970 +3418 5156 0.6300 +3418 5162 0.6470 +3418 5163 0.4940 +3418 5165 0.4170 +3418 5209 0.4720 +3418 5211 0.6190 +3418 5213 0.6290 +3418 5214 0.5350 +3418 5223 0.6100 +3418 5224 0.5380 +3418 5226 0.8050 +3418 5230 0.7220 +3418 5232 0.5050 +3418 5236 0.5670 +3418 5290 0.6180 +3418 5295 0.6140 +3418 5313 0.4570 +3418 5315 0.7300 +3418 5395 0.4650 +3418 5464 0.5150 +3418 5605 0.5520 +3418 5625 0.4060 +3418 5723 0.5200 +3418 5728 0.6570 +3418 5781 0.6250 +3418 5832 0.6470 +3418 5834 0.4540 +3418 5836 0.5340 +3418 5837 0.4680 +3418 5885 0.4360 +3418 5914 0.4760 +3418 5927 0.4050 +3418 5979 0.5390 +3418 6098 0.4140 +3418 6120 0.5110 +3418 6187 0.4320 +3418 6189 0.4490 +3418 6342 0.4250 +3418 6389 0.8690 +3418 6390 0.8850 +3418 6391 0.6650 +3418 6392 0.6020 +3418 6427 0.7320 +3418 6470 0.5890 +3418 6472 0.7140 +3418 6510 0.5140 +3418 6513 0.5140 +3418 6515 0.4100 +3418 6576 0.6590 +3418 6598 0.5510 +3418 6616 0.4090 +3418 6647 0.4200 +3418 6648 0.7940 +3418 6652 0.4950 +3418 6714 0.4130 +3418 6748 0.6450 +3418 6774 0.4490 +3418 6794 0.5690 +3418 6888 0.6430 +3418 7001 0.6040 +3418 7015 0.6860 +3418 7086 0.5980 +3418 7157 0.7830 +3418 7167 0.7480 +3418 7276 0.4100 +3418 7284 0.5000 +3418 7295 0.4870 +3418 7296 0.6090 +3418 7307 0.7310 +3418 7384 0.4910 +3418 7385 0.4610 +3418 7386 0.4010 +3418 7403 0.6140 +3418 7416 0.4980 +3418 7490 0.6640 +3418 7915 0.8940 +3418 8050 0.7380 +3418 8089 0.4250 +3418 8233 0.6970 +3418 8243 0.4480 +3418 8277 0.5840 +3418 8289 0.4790 +3418 8290 0.4400 +3418 8356 0.5230 +3418 8358 0.5360 +3418 8402 0.5400 +3418 8493 0.4280 +3418 8659 0.4390 +3418 8789 0.5880 +3418 8801 0.7980 +3418 8802 0.8780 +3418 8803 0.8570 +3418 8880 0.5280 +3418 9122 0.4180 +3418 9123 0.4140 +3418 9126 0.4460 +3418 9211 0.4220 +3418 9380 0.4620 +3418 9563 0.8030 +3418 9588 0.4480 +3418 9669 0.4130 +3418 9775 0.4990 +3418 9817 0.5940 +3418 10019 0.5410 +3418 10105 0.4530 +3418 10135 0.4190 +3418 10291 0.5070 +3418 10320 0.4460 +3418 10367 0.4080 +3418 10399 0.4160 +3418 10449 0.6160 +3418 10587 0.6360 +3418 10735 0.6200 +3418 10797 0.5500 +3418 10873 0.6540 +3418 10891 0.5190 +3418 10935 0.4070 +3418 11315 0.4750 +3418 22933 0.6360 +3418 22934 0.5730 +3418 23028 0.4160 +3418 23081 0.4410 +3418 23095 0.4490 +3418 23135 0.4720 +3418 23408 0.8110 +3418 23409 0.5290 +3418 23410 0.9210 +3418 23411 0.5110 +3418 23530 0.8980 +3418 25796 0.4820 +3418 25902 0.4660 +3418 26040 0.6420 +3418 26227 0.5430 +3418 26330 0.4440 +3418 27068 0.5270 +3418 29072 0.4170 +3418 29126 0.4460 +3418 29997 0.4150 +3418 29998 0.4790 +3418 51444 0.5450 +3418 51547 0.4060 +3418 51548 0.4060 +3418 51741 0.5300 +3418 54205 0.5140 +3418 54583 0.4230 +3418 54704 0.5240 +3418 54790 0.8710 +3418 54941 0.5450 +3418 55193 0.4970 +3418 55276 0.4120 +3418 55293 0.5540 +3418 55294 0.5080 +3418 55500 0.4330 +3418 55526 0.7960 +3418 55554 0.6590 +3418 55750 0.4070 +3418 55753 0.9830 +3418 55902 0.7480 +3418 56243 0.6490 +3418 56888 0.4050 +3418 56922 0.4620 +3418 56945 0.4160 +3418 56954 0.8200 +3418 57001 0.4140 +3418 57103 0.5440 +3418 57494 0.8160 +3418 57546 0.4840 +3418 57670 0.4710 +3418 63035 0.5860 +3418 64969 0.4060 +3418 65220 0.8810 +3418 79944 0.8810 +3418 80312 0.5740 +3418 84076 0.5610 +3418 84295 0.6430 +3418 84532 0.6780 +3418 84701 0.4360 +3418 84706 0.8830 +3418 84925 0.4040 +3418 84939 0.4420 +3418 92483 0.6950 +3418 114112 0.5540 +3418 122622 0.4020 +3418 130752 0.7120 +3418 132949 0.4230 +3418 134147 0.4280 +3418 137362 0.8850 +3418 137872 0.4330 +3418 139221 0.4420 +3418 160287 0.7020 +3418 171023 0.8180 +3418 200424 0.5090 +3418 257202 0.4790 +3418 259307 0.8150 +3418 283985 0.6230 +3418 285527 0.7160 +3418 374291 0.4940 +3418 440093 0.4400 +3418 440686 0.4400 +3418 441024 0.4510 +3418 441531 0.5460 +3418 493869 0.4790 +3418 653604 0.4520 +3418 728294 0.9330 +3418 728317 0.4420 +3418 729020 0.4490 +3418 730249 0.4570 +3419 3420 0.9990 +3419 3421 0.9990 +3419 3658 0.6390 +3419 4141 0.4210 +3419 4191 0.8570 +3419 4200 0.4820 +3419 4356 0.4040 +3419 4522 0.4130 +3419 4540 0.4160 +3419 4695 0.5550 +3419 4697 0.5490 +3419 4698 0.4440 +3419 4704 0.4650 +3419 4705 0.6940 +3419 4706 0.5610 +3419 4720 0.5020 +3419 4722 0.4740 +3419 4723 0.7220 +3419 4729 0.5090 +3419 4942 0.4640 +3419 4967 0.9950 +3419 5091 0.5250 +3419 5106 0.4610 +3419 5161 0.5280 +3419 5162 0.8560 +3419 5166 0.4050 +3419 5211 0.4240 +3419 5213 0.5110 +3419 5214 0.4770 +3419 5223 0.4610 +3419 5224 0.4140 +3419 5226 0.4870 +3419 5230 0.5000 +3419 5250 0.7490 +3419 5315 0.5280 +3419 5634 0.4110 +3419 5705 0.4070 +3419 5832 0.5370 +3419 6389 0.8190 +3419 6390 0.7610 +3419 6391 0.5860 +3419 6392 0.7000 +3419 6470 0.5600 +3419 6472 0.4160 +3419 6616 0.4200 +3419 6888 0.4550 +3419 7086 0.4230 +3419 7167 0.6350 +3419 7284 0.5900 +3419 7296 0.5060 +3419 7372 0.4200 +3419 7384 0.5950 +3419 7385 0.7130 +3419 7416 0.4080 +3419 7915 0.8600 +3419 8050 0.7630 +3419 8192 0.4750 +3419 8218 0.4470 +3419 8801 0.8540 +3419 8802 0.9020 +3419 8803 0.9720 +3419 9361 0.4090 +3419 9377 0.6180 +3419 9563 0.5770 +3419 9928 0.4050 +3419 10157 0.5050 +3419 10295 0.5830 +3419 10455 0.4020 +3419 10476 0.6000 +3419 10587 0.5020 +3419 10632 0.4570 +3419 10845 0.4070 +3419 10935 0.4080 +3419 10994 0.7030 +3419 23530 0.7260 +3419 26061 0.7430 +3419 26227 0.4860 +3419 27089 0.4360 +3419 29968 0.4150 +3419 51652 0.6960 +3419 54205 0.4840 +3419 54511 0.8510 +3419 55258 0.4130 +3419 55276 0.4180 +3419 55526 0.6900 +3419 55753 0.9910 +3419 56243 0.8240 +3419 56954 0.8380 +3419 57494 0.8360 +3419 65220 0.5420 +3419 79072 0.4430 +3419 79896 0.4180 +3419 84706 0.8480 +3419 85476 0.6380 +3419 92259 0.6270 +3419 114112 0.4710 +3419 130752 0.5460 +3419 132949 0.4430 +3419 137362 0.8480 +3419 140576 0.4990 +3419 162417 0.4360 +3419 259307 0.8050 +3419 100271715 0.4350 +3419 100526767 0.4310 +3420 3421 0.9990 +3420 3614 0.7330 +3420 3658 0.5970 +3420 3704 0.4820 +3420 4191 0.8600 +3420 4698 0.4200 +3420 4702 0.5820 +3420 4704 0.6640 +3420 4705 0.6410 +3420 4714 0.4280 +3420 4715 0.5150 +3420 4720 0.8410 +3420 4722 0.6340 +3420 4723 0.8960 +3420 4728 0.4760 +3420 4729 0.4630 +3420 4901 0.6150 +3420 4942 0.4280 +3420 4967 0.9840 +3420 5091 0.4850 +3420 5145 0.7030 +3420 5148 0.7250 +3420 5158 0.5550 +3420 5162 0.7490 +3420 5211 0.4280 +3420 5213 0.4750 +3420 5315 0.4230 +3420 5832 0.5340 +3420 5961 0.5660 +3420 6094 0.5530 +3420 6100 0.6930 +3420 6103 0.5920 +3420 6121 0.6300 +3420 6389 0.8240 +3420 6390 0.8160 +3420 6391 0.6170 +3420 6392 0.6150 +3420 6628 0.4480 +3420 7167 0.5370 +3420 7284 0.5540 +3420 7287 0.6930 +3420 7296 0.4740 +3420 7384 0.7660 +3420 7385 0.5900 +3420 7386 0.5440 +3420 7401 0.4460 +3420 7439 0.6120 +3420 7915 0.8440 +3420 8050 0.6120 +3420 8192 0.4710 +3420 8402 0.5390 +3420 8666 0.4270 +3420 8801 0.8060 +3420 8802 0.9310 +3420 8803 0.8690 +3420 8842 0.4890 +3420 9129 0.6820 +3420 9361 0.4170 +3420 9377 0.4070 +3420 9491 0.4800 +3420 9563 0.4960 +3420 9573 0.5830 +3420 10002 0.6350 +3420 10210 0.6750 +3420 10295 0.6090 +3420 10445 0.5130 +3420 10461 0.5930 +3420 10476 0.4930 +3420 10587 0.5110 +3420 10594 0.6980 +3420 10994 0.7160 +3420 23020 0.6660 +3420 23203 0.4020 +3420 23438 0.4120 +3420 23530 0.8140 +3420 24148 0.4660 +3420 25794 0.7080 +3420 26061 0.7240 +3420 26121 0.7320 +3420 26227 0.4740 +3420 27089 0.4100 +3420 29796 0.4330 +3420 30968 0.4190 +3420 50939 0.7330 +3420 51079 0.5000 +3420 51497 0.4590 +3420 51652 0.4690 +3420 51654 0.4380 +3420 54511 0.8510 +3420 54948 0.4300 +3420 55258 0.4140 +3420 55526 0.7040 +3420 55753 0.9780 +3420 55812 0.5880 +3420 55975 0.6380 +3420 56954 0.8310 +3420 57017 0.4580 +3420 57494 0.8360 +3420 64218 0.6400 +3420 64601 0.4020 +3420 64965 0.4350 +3420 65220 0.5480 +3420 79896 0.4150 +3420 79947 0.4490 +3420 84140 0.4730 +3420 84532 0.4090 +3420 84706 0.8460 +3420 92259 0.5560 +3420 113675 0.4090 +3420 114112 0.4710 +3420 130557 0.7490 +3420 130752 0.4660 +3420 137362 0.8360 +3420 145226 0.6870 +3420 157657 0.4470 +3420 162417 0.4010 +3420 219927 0.4470 +3420 259307 0.8070 +3420 346007 0.7190 +3420 374291 0.5450 +3420 375298 0.7490 +3420 388939 0.7190 +3420 768206 0.7810 +3421 3658 0.5970 +3421 4191 0.8180 +3421 4659 0.6180 +3421 4702 0.4750 +3421 4704 0.4360 +3421 4705 0.5150 +3421 4713 0.4490 +3421 4714 0.6390 +3421 4715 0.4320 +3421 4720 0.5380 +3421 4722 0.5290 +3421 4723 0.6190 +3421 4728 0.4570 +3421 4942 0.4590 +3421 4967 0.9830 +3421 5009 0.6800 +3421 5091 0.4430 +3421 5106 0.4490 +3421 5161 0.4420 +3421 5162 0.8170 +3421 5211 0.5170 +3421 5213 0.4520 +3421 5214 0.4760 +3421 5230 0.4430 +3421 5315 0.6350 +3421 5832 0.5270 +3421 6342 0.4140 +3421 6389 0.7260 +3421 6390 0.7460 +3421 6391 0.5690 +3421 6392 0.5210 +3421 6748 0.8540 +3421 6901 0.7560 +3421 7086 0.4160 +3421 7167 0.5000 +3421 7284 0.4480 +3421 7296 0.4740 +3421 7317 0.4370 +3421 7384 0.6480 +3421 7416 0.6070 +3421 7915 0.8440 +3421 8050 0.6070 +3421 8260 0.4310 +3421 8277 0.4200 +3421 8402 0.5950 +3421 8540 0.4280 +3421 8604 0.5250 +3421 8801 0.8030 +3421 8802 0.9000 +3421 8803 0.8890 +3421 9563 0.5120 +3421 9804 0.4660 +3421 9868 0.4500 +3421 10063 0.5630 +3421 10084 0.4540 +3421 10134 0.6140 +3421 10159 0.4110 +3421 10165 0.5560 +3421 10245 0.6750 +3421 10295 0.6300 +3421 10440 0.5700 +3421 10452 0.5780 +3421 10469 0.7840 +3421 10476 0.4550 +3421 10587 0.4860 +3421 10994 0.7100 +3421 23530 0.6240 +3421 25953 0.4370 +3421 26061 0.7090 +3421 26227 0.4420 +3421 26517 0.5960 +3421 26519 0.5350 +3421 26520 0.5510 +3421 26521 0.5560 +3421 27235 0.5390 +3421 27243 0.4630 +3421 29090 0.5160 +3421 29928 0.5100 +3421 51025 0.5230 +3421 51142 0.5680 +3421 51287 0.5200 +3421 51428 0.4200 +3421 51652 0.5010 +3421 54511 0.8510 +3421 54543 0.4570 +3421 54927 0.6440 +3421 55258 0.4140 +3421 55526 0.7390 +3421 55753 0.9760 +3421 56942 0.5100 +3421 56954 0.8250 +3421 56993 0.5100 +3421 57017 0.4760 +3421 57494 0.8380 +3421 57595 0.4690 +3421 65220 0.5520 +3421 79145 0.5040 +3421 79896 0.4150 +3421 80273 0.5750 +3421 84269 0.5130 +3421 84706 0.8450 +3421 90639 0.5160 +3421 92259 0.6430 +3421 92609 0.5440 +3421 114112 0.4710 +3421 130752 0.4820 +3421 131118 0.5100 +3421 134266 0.5660 +3421 137362 0.8360 +3421 150274 0.5040 +3421 197257 0.6250 +3421 259307 0.8040 +3421 374291 0.4600 +3421 388753 0.5330 +3421 400916 0.5790 +3421 401505 0.4670 +3421 100188893 0.4400 +3421 100272147 0.5280 +3421 100287932 0.5700 +3422 3638 0.8600 +3422 3930 0.4160 +3422 4047 0.9660 +3422 4524 0.7090 +3422 4597 0.9980 +3422 4598 0.8790 +3422 4800 0.5070 +3422 4801 0.5170 +3422 4802 0.5170 +3422 5723 0.8300 +3422 6307 0.9260 +3422 6309 0.8350 +3422 6319 0.4030 +3422 6667 0.5330 +3422 6713 0.9570 +3422 6720 0.7060 +3422 6721 0.8040 +3422 7108 0.6810 +3422 8564 0.5390 +3422 9023 0.6380 +3422 9420 0.4150 +3422 9453 0.9870 +3422 9853 0.5610 +3422 10449 0.5570 +3422 10654 0.8520 +3422 10682 0.6220 +3422 10826 0.5750 +3422 11161 0.6000 +3422 11315 0.7920 +3422 22984 0.7820 +3422 23078 0.5590 +3422 23590 0.6630 +3422 23623 0.6460 +3422 27235 0.8970 +3422 29914 0.8230 +3422 50814 0.8560 +3422 51004 0.4960 +3422 51302 0.4140 +3422 51478 0.8050 +3422 51725 0.5920 +3422 54884 0.4650 +3422 55902 0.4490 +3422 57107 0.5520 +3422 65985 0.4510 +3422 79947 0.7380 +3422 80270 0.4040 +3422 91734 0.9040 +3422 116150 0.7240 +3422 134429 0.5430 +3422 137682 0.4060 +3422 340390 0.4040 +3423 3425 0.9810 +3423 4669 0.7160 +3423 5009 0.4950 +3423 6448 0.5540 +3423 6696 0.4890 +3423 7032 0.5480 +3423 7033 0.4240 +3423 7037 0.6320 +3423 9210 0.5280 +3423 9282 0.5330 +3423 9412 0.4920 +3423 9440 0.4330 +3423 9443 0.4910 +3423 10001 0.4970 +3423 10426 0.4240 +3423 10855 0.9030 +3423 25870 0.4650 +3423 26273 0.4450 +3423 51003 0.4820 +3423 60495 0.9020 +3423 79983 0.5620 +3423 84246 0.4600 +3423 134359 0.5890 +3423 135935 0.4370 +3423 138050 0.5300 +3423 148789 0.4260 +3423 285362 0.8860 +3423 344018 0.4970 +3425 3617 0.4070 +3425 3952 0.4150 +3425 4035 0.4690 +3425 4123 0.5150 +3425 4125 0.4790 +3425 4668 0.4180 +3425 4669 0.8100 +3425 5053 0.4830 +3425 5145 0.4080 +3425 5158 0.5660 +3425 5265 0.4340 +3425 6448 0.9740 +3425 6476 0.8360 +3425 6609 0.5170 +3425 6677 0.9410 +3425 7037 0.4400 +3425 7056 0.4480 +3425 8372 0.9230 +3425 8600 0.4410 +3425 8692 0.9180 +3425 8972 0.8360 +3425 10861 0.4830 +3425 22901 0.5340 +3425 23553 0.9160 +3425 51422 0.4100 +3425 51517 0.4980 +3425 79158 0.4680 +3425 84343 0.4460 +3425 84572 0.4530 +3425 136306 0.4820 +3425 138050 0.6220 +3425 147138 0.4390 +3425 285362 0.5660 +3426 3699 0.4200 +3426 3818 0.6740 +3426 3827 0.4550 +3426 3990 0.4310 +3426 4153 0.8110 +3426 4179 0.9800 +3426 5005 0.4650 +3426 5199 0.7360 +3426 5265 0.5840 +3426 5328 0.6350 +3426 5329 0.5510 +3426 5340 0.4060 +3426 5345 0.4900 +3426 5624 0.6840 +3426 5648 0.6470 +3426 5747 0.4460 +3426 6441 0.4190 +3426 7056 0.8860 +3426 7416 0.4080 +3426 7448 0.5050 +3426 8189 0.6800 +3426 8526 0.6970 +3426 8547 0.7000 +3426 10584 0.5780 +3426 10747 0.6900 +3426 10877 0.6420 +3426 10878 0.8890 +3426 11093 0.7210 +3426 25974 0.4290 +3426 27429 0.5510 +3426 29894 0.4750 +3426 51156 0.5370 +3426 51585 0.4090 +3426 78989 0.6270 +3426 79132 0.4120 +3426 81494 0.7040 +3426 83642 0.4610 +3426 84905 0.4630 +3426 114770 0.5050 +3426 387715 0.6680 +3428 3429 0.5280 +3428 3430 0.5840 +3428 3431 0.4150 +3428 3433 0.7730 +3428 3434 0.6390 +3428 3437 0.6060 +3428 3439 0.5820 +3428 3440 0.5560 +3428 3441 0.5160 +3428 3442 0.4630 +3428 3443 0.4650 +3428 3444 0.4550 +3428 3445 0.4670 +3428 3446 0.4610 +3428 3447 0.4160 +3428 3448 0.4730 +3428 3449 0.4550 +3428 3451 0.5360 +3428 3452 0.4560 +3428 3454 0.5390 +3428 3455 0.4440 +3428 3456 0.6690 +3428 3458 0.5200 +3428 3552 0.5960 +3428 3553 0.7430 +3428 3569 0.4520 +3428 3606 0.5770 +3428 3627 0.6530 +3428 3659 0.5450 +3428 3660 0.5730 +3428 3661 0.8360 +3428 3665 0.8020 +3428 3669 0.4830 +3428 3716 0.5260 +3428 3717 0.4820 +3428 3725 0.4220 +3428 4210 0.9290 +3428 4261 0.4630 +3428 4288 0.5290 +3428 4332 0.4010 +3428 4599 0.6140 +3428 4600 0.5830 +3428 4671 0.6870 +3428 4790 0.4330 +3428 4931 0.5140 +3428 4938 0.7780 +3428 4939 0.6050 +3428 4940 0.5520 +3428 5359 0.5570 +3428 5371 0.5550 +3428 5394 0.5280 +3428 5610 0.7780 +3428 5696 0.4360 +3428 5698 0.4260 +3428 5888 0.4430 +3428 5925 0.7440 +3428 5982 0.5350 +3428 6041 0.6690 +3428 6667 0.4110 +3428 6672 0.7670 +3428 6708 0.4840 +3428 6730 0.5110 +3428 6737 0.7300 +3428 6772 0.7520 +3428 6773 0.6850 +3428 6774 0.6740 +3428 6839 0.5330 +3428 6993 0.4080 +3428 7097 0.4630 +3428 7098 0.6020 +3428 7099 0.4820 +3428 7124 0.4580 +3428 7157 0.9880 +3428 7158 0.5740 +3428 7187 0.4050 +3428 7189 0.8120 +3428 7341 0.5290 +3428 7520 0.4550 +3428 7706 0.4030 +3428 8087 0.5270 +3428 8340 0.4490 +3428 8341 0.4470 +3428 8342 0.4470 +3428 8345 0.4590 +3428 8347 0.4470 +3428 8348 0.4520 +3428 8349 0.6290 +3428 8361 0.5390 +3428 8480 0.5100 +3428 8519 0.5580 +3428 8638 0.5170 +3428 8763 0.4290 +3428 8764 0.4010 +3428 8886 0.6820 +3428 8970 0.4540 +3428 9092 0.5140 +3428 9111 0.4550 +3428 9112 0.4850 +3428 9188 0.4440 +3428 9208 0.8120 +3428 9246 0.4190 +3428 9447 0.9290 +3428 9513 0.5110 +3428 9582 0.4070 +3428 9636 0.6320 +3428 9641 0.4820 +3428 9790 0.6850 +3428 9933 0.5170 +3428 10084 0.4740 +3428 10171 0.5140 +3428 10346 0.6750 +3428 10379 0.7120 +3428 10392 0.4440 +3428 10410 0.4520 +3428 10432 0.5250 +3428 10437 0.4180 +3428 10475 0.4120 +3428 10482 0.5140 +3428 10556 0.5140 +3428 10561 0.7000 +3428 10581 0.4340 +3428 10607 0.5160 +3428 10940 0.5170 +3428 10964 0.5650 +3428 10969 0.5170 +3428 11056 0.5130 +3428 11274 0.4170 +3428 11277 0.4690 +3428 22861 0.8260 +3428 22907 0.5360 +3428 22984 0.5400 +3428 23029 0.5280 +3428 23076 0.5140 +3428 23212 0.5170 +3428 23367 0.5210 +3428 23411 0.4430 +3428 23481 0.5170 +3428 23517 0.5420 +3428 23586 0.7870 +3428 24138 0.5410 +3428 25879 0.4180 +3428 25939 0.5620 +3428 26010 0.5470 +3428 26065 0.4030 +3428 26155 0.5160 +3428 26168 0.5260 +3428 26354 0.5170 +3428 29108 0.9480 +3428 29110 0.8920 +3428 29889 0.5160 +3428 51092 0.4260 +3428 51096 0.5130 +3428 51191 0.5930 +3428 51202 0.5170 +3428 51284 0.5930 +3428 51311 0.5320 +3428 51428 0.9260 +3428 54106 0.6480 +3428 54145 0.4500 +3428 54512 0.5140 +3428 54606 0.6170 +3428 54739 0.4590 +3428 54809 0.5910 +3428 55131 0.5250 +3428 55226 0.5170 +3428 55234 0.5140 +3428 55269 0.5340 +3428 55299 0.6910 +3428 55601 0.5620 +3428 55646 0.6990 +3428 55655 0.4170 +3428 55720 0.5160 +3428 55759 0.5170 +3428 55922 0.5380 +3428 56342 0.5140 +3428 56829 0.7140 +3428 56919 0.4540 +3428 57062 0.5160 +3428 57506 0.6770 +3428 58484 0.9290 +3428 58517 0.5170 +3428 60489 0.5550 +3428 64127 0.4880 +3428 64135 0.7740 +3428 64318 0.5210 +3428 65244 0.5130 +3428 65265 0.5140 +3428 79039 0.5160 +3428 79132 0.6550 +3428 79792 0.4960 +3428 80349 0.4420 +3428 80830 0.4850 +3428 81030 0.6590 +3428 81844 0.6160 +3428 83666 0.5970 +3428 83743 0.6270 +3428 84166 0.5050 +3428 84260 0.4510 +3428 84450 0.5110 +3428 84656 0.6270 +3428 85236 0.4640 +3428 85363 0.5550 +3428 85364 0.4750 +3428 91543 0.5720 +3428 91607 0.5550 +3428 91662 0.8070 +3428 114548 0.8620 +3428 115004 0.9210 +3428 115362 0.4650 +3428 117246 0.5810 +3428 118460 0.5170 +3428 128312 0.4540 +3428 158983 0.4500 +3428 170506 0.6940 +3428 171389 0.7780 +3428 197358 0.4120 +3428 199713 0.7740 +3428 204801 0.4340 +3428 219285 0.4190 +3428 255626 0.4470 +3428 284110 0.4250 +3428 286436 0.4500 +3428 317781 0.5110 +3428 340061 0.9630 +3428 440689 0.4500 +3428 114483833 0.4510 +3429 3430 0.7810 +3429 3433 0.7740 +3429 3434 0.9340 +3429 3437 0.9040 +3429 3439 0.5810 +3429 3440 0.6330 +3429 3441 0.5500 +3429 3442 0.5360 +3429 3443 0.5330 +3429 3444 0.5290 +3429 3445 0.5280 +3429 3446 0.5320 +3429 3448 0.5290 +3429 3449 0.5330 +3429 3451 0.5720 +3429 3452 0.5290 +3429 3454 0.4180 +3429 3456 0.5190 +3429 3627 0.5710 +3429 3659 0.6360 +3429 3660 0.4010 +3429 3661 0.5310 +3429 3662 0.4230 +3429 3665 0.8210 +3429 3669 0.6220 +3429 3959 0.4300 +3429 4061 0.7370 +3429 4283 0.4140 +3429 4312 0.4050 +3429 4599 0.9590 +3429 4600 0.6640 +3429 4938 0.9370 +3429 4939 0.8660 +3429 4940 0.8840 +3429 5359 0.5850 +3429 5610 0.7320 +3429 6373 0.4110 +3429 6614 0.6710 +3429 6772 0.8440 +3429 6773 0.8440 +3429 7739 0.5220 +3429 8519 0.9080 +3429 8638 0.8880 +3429 8743 0.4320 +3429 9636 0.9700 +3429 10346 0.5060 +3429 10379 0.9030 +3429 10410 0.8290 +3429 10437 0.4740 +3429 10553 0.4480 +3429 10561 0.9450 +3429 10581 0.5460 +3429 10964 0.9770 +3429 11274 0.7710 +3429 23586 0.6240 +3429 23705 0.4280 +3429 24138 0.6760 +3429 25939 0.7600 +3429 26010 0.5110 +3429 27302 0.4490 +3429 51191 0.7130 +3429 54739 0.8870 +3429 54809 0.4090 +3429 55008 0.7240 +3429 55601 0.6680 +3429 64108 0.6430 +3429 64135 0.7850 +3429 64761 0.4750 +3429 79132 0.4930 +3429 83666 0.5350 +3429 85441 0.4430 +3429 91543 0.9580 +3429 94240 0.7110 +3429 129607 0.6230 +3429 219285 0.4620 +3429 439996 0.4900 +3429 100861540 0.5050 +3430 3431 0.7800 +3430 3433 0.8490 +3430 3434 0.8760 +3430 3437 0.9260 +3430 3439 0.4390 +3430 3456 0.4780 +3430 3460 0.5150 +3430 3475 0.5700 +3430 3569 0.5450 +3430 3627 0.6270 +3430 3659 0.7860 +3430 3660 0.4610 +3430 3665 0.9130 +3430 3669 0.7530 +3430 3692 0.8890 +3430 3703 0.6160 +3430 3736 0.4890 +3430 3737 0.4890 +3430 3738 0.4890 +3430 3739 0.4890 +3430 3741 0.4890 +3430 3742 0.4890 +3430 3743 0.4890 +3430 3744 0.4890 +3430 3745 0.4890 +3430 3746 0.4890 +3430 3747 0.4890 +3430 3748 0.4890 +3430 3749 0.4890 +3430 3750 0.4910 +3430 3751 0.4890 +3430 3752 0.4890 +3430 3754 0.4890 +3430 3755 0.4890 +3430 3784 0.4910 +3430 3785 0.4890 +3430 3786 0.4890 +3430 3787 0.4890 +3430 3788 0.4890 +3430 3790 0.4890 +3430 3921 0.9180 +3430 3965 0.4720 +3430 4061 0.6200 +3430 4077 0.6690 +3430 4343 0.4380 +3430 4528 0.5450 +3430 4599 0.9090 +3430 4600 0.8200 +3430 4613 0.4290 +3430 4736 0.9110 +3430 4738 0.4390 +3430 4791 0.4670 +3430 4809 0.6590 +3430 4839 0.5750 +3430 4938 0.9160 +3430 4939 0.9080 +3430 4940 0.9040 +3430 5036 0.6250 +3430 5313 0.5440 +3430 5315 0.5450 +3430 5328 0.4100 +3430 5359 0.6220 +3430 5371 0.4080 +3430 5394 0.4050 +3430 5469 0.9150 +3430 5610 0.7220 +3430 5692 0.4110 +3430 5696 0.8470 +3430 5698 0.7360 +3430 5699 0.7830 +3430 5720 0.6770 +3430 5721 0.8350 +3430 5742 0.4340 +3430 5859 0.5930 +3430 5886 0.4340 +3430 5887 0.4290 +3430 5920 0.4820 +3430 6122 0.9040 +3430 6123 0.9040 +3430 6124 0.9680 +3430 6125 0.9740 +3430 6128 0.9780 +3430 6129 0.8310 +3430 6130 0.8820 +3430 6132 0.9810 +3430 6133 0.9150 +3430 6135 0.9610 +3430 6136 0.8120 +3430 6137 0.9790 +3430 6138 0.9590 +3430 6139 0.9190 +3430 6141 0.9790 +3430 6142 0.9770 +3430 6143 0.9620 +3430 6144 0.9770 +3430 6146 0.9190 +3430 6147 0.9780 +3430 6152 0.9770 +3430 6154 0.9360 +3430 6156 0.9570 +3430 6157 0.9770 +3430 6158 0.9750 +3430 6159 0.9760 +3430 6160 0.9780 +3430 6161 0.6630 +3430 6164 0.9790 +3430 6165 0.9800 +3430 6166 0.8410 +3430 6167 0.9180 +3430 6168 0.9740 +3430 6169 0.9800 +3430 6170 0.9240 +3430 6173 0.8410 +3430 6175 0.9380 +3430 6176 0.9600 +3430 6181 0.9530 +3430 6183 0.8280 +3430 6184 0.4350 +3430 6187 0.9660 +3430 6188 0.9620 +3430 6189 0.9790 +3430 6191 0.8350 +3430 6192 0.8370 +3430 6193 0.8360 +3430 6194 0.9690 +3430 6201 0.9740 +3430 6202 0.9760 +3430 6203 0.9660 +3430 6204 0.8840 +3430 6205 0.9800 +3430 6206 0.9100 +3430 6207 0.9010 +3430 6208 0.9240 +3430 6209 0.9780 +3430 6210 0.6590 +3430 6217 0.9770 +3430 6218 0.9740 +3430 6222 0.9810 +3430 6223 0.9800 +3430 6224 0.9790 +3430 6227 0.9770 +3430 6228 0.9750 +3430 6229 0.9800 +3430 6230 0.9790 +3430 6231 0.9780 +3430 6232 0.9200 +3430 6233 0.9180 +3430 6234 0.9600 +3430 6235 0.9220 +3430 6373 0.4200 +3430 6672 0.5520 +3430 6737 0.8030 +3430 6772 0.9500 +3430 6773 0.9120 +3430 6890 0.6940 +3430 6892 0.5450 +3430 6924 0.4390 +3430 7178 0.6410 +3430 7311 0.9770 +3430 7314 0.5300 +3430 7316 0.5290 +3430 7318 0.5910 +3430 7453 0.4380 +3430 7866 0.5500 +3430 8034 0.4470 +3430 8061 0.4390 +3430 8153 0.7280 +3430 8189 0.4150 +3430 8266 0.5350 +3430 8519 0.8050 +3430 8568 0.4470 +3430 8638 0.9220 +3430 8651 0.4150 +3430 8721 0.7770 +3430 8743 0.4300 +3430 8886 0.5210 +3430 9045 0.9800 +3430 9111 0.9820 +3430 9132 0.4890 +3430 9141 0.6100 +3430 9246 0.8950 +3430 9265 0.4330 +3430 9312 0.4890 +3430 9343 0.6490 +3430 9349 0.9800 +3430 9636 0.9540 +3430 9652 0.4220 +3430 9669 0.8480 +3430 9732 0.8870 +3430 9858 0.6650 +3430 9997 0.4130 +3430 10346 0.5830 +3430 10379 0.8980 +3430 10399 0.8750 +3430 10410 0.8470 +3430 10412 0.8550 +3430 10437 0.5890 +3430 10473 0.8130 +3430 10488 0.6220 +3430 10537 0.5790 +3430 10538 0.4090 +3430 10557 0.6610 +3430 10561 0.9240 +3430 10581 0.6250 +3430 10616 0.5600 +3430 10906 0.4080 +3430 10952 0.5480 +3430 10964 0.9020 +3430 10969 0.7910 +3430 10985 0.7860 +3430 10988 0.4400 +3430 11222 0.7860 +3430 11224 0.9630 +3430 11274 0.8050 +3430 22927 0.6710 +3430 23076 0.4470 +3430 23173 0.4450 +3430 23204 0.6590 +3430 23246 0.8420 +3430 23424 0.5090 +3430 23480 0.4170 +3430 23481 0.7820 +3430 23521 0.9150 +3430 23560 0.7770 +3430 23586 0.8610 +3430 23640 0.6240 +3430 24138 0.7920 +3430 25873 0.9800 +3430 25939 0.6820 +3430 26135 0.6710 +3430 26155 0.7860 +3430 26156 0.7660 +3430 26251 0.4890 +3430 26270 0.6370 +3430 26354 0.6560 +3430 27012 0.4890 +3430 28991 0.4810 +3430 28998 0.7320 +3430 29088 0.5550 +3430 29093 0.7870 +3430 29927 0.4300 +3430 29978 0.4290 +3430 29979 0.4310 +3430 29997 0.7680 +3430 50613 0.4290 +3430 51056 0.6220 +3430 51065 0.9210 +3430 51068 0.4840 +3430 51069 0.7970 +3430 51073 0.7170 +3430 51081 0.8400 +3430 51116 0.6670 +3430 51119 0.6730 +3430 51121 0.9360 +3430 51131 0.4340 +3430 51149 0.9010 +3430 51154 0.9090 +3430 51177 0.6670 +3430 51187 0.8550 +3430 51191 0.8020 +3430 51224 0.4390 +3430 51319 0.9100 +3430 51388 0.8040 +3430 51398 0.4330 +3430 54552 0.6110 +3430 54625 0.7250 +3430 54663 0.4990 +3430 54739 0.8520 +3430 54809 0.6420 +3430 54941 0.4360 +3430 54948 0.6300 +3430 55008 0.7760 +3430 55153 0.4340 +3430 55173 0.8110 +3430 55176 0.4200 +3430 55272 0.8080 +3430 55299 0.8010 +3430 55316 0.9220 +3430 55324 0.4690 +3430 55337 0.5640 +3430 55591 0.4380 +3430 55601 0.7760 +3430 55651 0.6610 +3430 55759 0.7790 +3430 55854 0.4310 +3430 56479 0.4890 +3430 56648 0.6710 +3430 56893 0.4290 +3430 56965 0.5440 +3430 57674 0.4370 +3430 57696 0.4540 +3430 58505 0.4490 +3430 60386 0.4510 +3430 63931 0.7890 +3430 64108 0.8590 +3430 64135 0.8430 +3430 64318 0.7610 +3430 64374 0.6420 +3430 64761 0.7310 +3430 64960 0.7770 +3430 64963 0.7860 +3430 64969 0.8400 +3430 65003 0.6750 +3430 65008 0.7900 +3430 65121 0.5540 +3430 65122 0.5540 +3430 66036 0.4310 +3430 79036 0.4290 +3430 79132 0.8680 +3430 79159 0.4300 +3430 79590 0.8030 +3430 79631 0.6490 +3430 79668 0.5480 +3430 80135 0.7950 +3430 83666 0.8820 +3430 84154 0.5750 +3430 84166 0.4190 +3430 84365 0.8120 +3430 84549 0.7710 +3430 84875 0.4800 +3430 84993 0.4320 +3430 85441 0.6560 +3430 85476 0.6490 +3430 91408 0.4180 +3430 91543 0.8450 +3430 92196 0.6180 +3430 93107 0.4890 +3430 93550 0.5280 +3430 94240 0.6610 +3430 114987 0.8740 +3430 115361 0.5780 +3430 115362 0.5090 +3430 116071 0.5210 +3430 116832 0.9220 +3430 117246 0.7980 +3430 122509 0.5290 +3430 124454 0.5930 +3430 126402 0.8360 +3430 129607 0.5940 +3430 140032 0.8350 +3430 140801 0.9060 +3430 143244 0.6710 +3430 143630 0.4530 +3430 146212 0.5200 +3430 151636 0.5170 +3430 152518 0.4460 +3430 164153 0.5280 +3430 169522 0.4890 +3430 170850 0.4890 +3430 200916 0.9200 +3430 201595 0.5870 +3430 203427 0.4900 +3430 219285 0.8200 +3430 221078 0.5730 +3430 254268 0.9180 +3430 283518 0.4890 +3430 283600 0.4470 +3430 285855 0.8310 +3430 343068 0.5540 +3430 343070 0.5540 +3430 345630 0.7960 +3430 347487 0.9180 +3430 387129 0.8300 +3430 390999 0.5540 +3430 391002 0.5540 +3430 400735 0.5540 +3430 400736 0.5540 +3430 439996 0.4770 +3430 440560 0.5540 +3430 440561 0.5540 +3430 441873 0.5540 +3430 641776 0.6590 +3430 643909 0.6590 +3430 645051 0.6620 +3430 645073 0.6620 +3430 645359 0.5540 +3430 653619 0.5540 +3430 728524 0.6590 +3430 729396 0.6620 +3430 729422 0.6620 +3430 729428 0.6620 +3430 729431 0.6620 +3430 729442 0.6620 +3430 729447 0.6620 +3430 729528 0.5540 +3430 100008586 0.6620 +3430 100128731 0.4450 +3430 100132399 0.6620 +3430 100287482 0.6650 +3430 100505478 0.7070 +3430 100526842 0.9190 +3430 100529097 0.8410 +3430 100529239 0.8810 +3430 100996746 0.6590 +3430 101929983 0.5540 +3430 102724473 0.6620 +3430 105180390 0.6590 +3430 105180391 0.6590 +3431 3433 0.5470 +3431 3434 0.4820 +3431 3437 0.7680 +3431 3459 0.4060 +3431 3460 0.4810 +3431 3593 0.4990 +3431 3594 0.4730 +3431 3665 0.6510 +3431 4048 0.5000 +3431 4163 0.4200 +3431 4360 0.5010 +3431 4599 0.6640 +3431 4600 0.6660 +3431 4691 0.4310 +3431 4843 0.4390 +3431 4938 0.7730 +3431 4939 0.7660 +3431 4940 0.7070 +3431 5359 0.4180 +3431 5610 0.6910 +3431 5654 0.4200 +3431 5698 0.4930 +3431 5867 0.4410 +3431 6452 0.4330 +3431 6556 0.6500 +3431 6672 0.8330 +3431 6737 0.4440 +3431 6772 0.7190 +3431 6872 0.4300 +3431 6890 0.5020 +3431 7157 0.4230 +3431 7158 0.4430 +3431 7746 0.4410 +3431 8638 0.4950 +3431 9111 0.4330 +3431 9246 0.6540 +3431 9532 0.4240 +3431 9636 0.5430 +3431 10273 0.5950 +3431 10346 0.4870 +3431 10379 0.4890 +3431 10475 0.4770 +3431 10561 0.5840 +3431 10673 0.5030 +3431 10902 0.4560 +3431 10964 0.6280 +3431 11143 0.4620 +3431 11262 0.4650 +3431 23476 0.4440 +3431 23560 0.4250 +3431 23586 0.7840 +3431 24138 0.4250 +3431 26354 0.4240 +3431 27154 0.4300 +3431 29072 0.4380 +3431 30835 0.4220 +3431 51131 0.4460 +3431 51191 0.4510 +3431 54625 0.5370 +3431 54739 0.7980 +3431 54809 0.5400 +3431 55008 0.4670 +3431 55601 0.4700 +3431 57674 0.4410 +3431 63893 0.5140 +3431 64108 0.5220 +3431 64135 0.6430 +3431 64761 0.4310 +3431 83666 0.7750 +3431 85441 0.4450 +3431 91543 0.5050 +3431 93349 0.4160 +3431 94240 0.4910 +3431 114609 0.4200 +3431 115362 0.4070 +3431 143879 0.5250 +3431 151636 0.5100 +3431 197259 0.5300 +3431 219285 0.7770 +3431 283248 0.4200 +3431 345611 0.5140 +3431 653509 0.4680 +3433 3434 0.9820 +3433 3437 0.9990 +3433 3439 0.6710 +3433 3440 0.6350 +3433 3447 0.5980 +3433 3451 0.5770 +3433 3454 0.6330 +3433 3455 0.4940 +3433 3456 0.7660 +3433 3458 0.5160 +3433 3553 0.4630 +3433 3569 0.6220 +3433 3576 0.4200 +3433 3627 0.8520 +3433 3646 0.4690 +3433 3659 0.7350 +3433 3660 0.5950 +3433 3661 0.6980 +3433 3663 0.4320 +3433 3665 0.8370 +3433 3669 0.8200 +3433 3716 0.4860 +3433 3717 0.6190 +3433 3880 0.4250 +3433 4061 0.5290 +3433 4283 0.5070 +3433 4538 0.4720 +3433 4599 0.9680 +3433 4600 0.8670 +3433 4688 0.5150 +3433 4790 0.4030 +3433 4792 0.4020 +3433 4938 0.9430 +3433 4939 0.9400 +3433 4940 0.9260 +3433 5359 0.6320 +3433 5610 0.8700 +3433 5696 0.4400 +3433 5698 0.4280 +3433 5920 0.4180 +3433 6041 0.6520 +3433 6275 0.4630 +3433 6347 0.6560 +3433 6351 0.4080 +3433 6355 0.4550 +3433 6373 0.6160 +3433 6672 0.4950 +3433 6737 0.5590 +3433 6772 0.9630 +3433 6773 0.9330 +3433 6890 0.4420 +3433 6908 0.4390 +3433 7097 0.4540 +3433 7098 0.6270 +3433 7099 0.4580 +3433 7124 0.5070 +3433 7297 0.4720 +3433 7318 0.4050 +3433 7324 0.4120 +3433 7706 0.5200 +3433 8519 0.7380 +3433 8638 0.9630 +3433 8651 0.4680 +3433 8655 0.4860 +3433 8743 0.5520 +3433 9246 0.6530 +3433 9454 0.5950 +3433 9636 0.9750 +3433 9641 0.4770 +3433 9830 0.4230 +3433 10284 0.4520 +3433 10346 0.6510 +3433 10379 0.9060 +3433 10410 0.8280 +3433 10437 0.4240 +3433 10561 0.9640 +3433 10581 0.7190 +3433 10673 0.4350 +3433 10964 0.9210 +3433 11232 0.6430 +3433 11274 0.8090 +3433 23424 0.5200 +3433 23586 0.9820 +3433 24138 0.7970 +3433 25939 0.7010 +3433 26253 0.5230 +3433 29110 0.6370 +3433 51191 0.9370 +3433 51284 0.5110 +3433 51311 0.4460 +3433 54625 0.7400 +3433 54739 0.8870 +3433 54809 0.7810 +3433 55008 0.8140 +3433 55337 0.4490 +3433 55509 0.4440 +3433 55601 0.8990 +3433 56829 0.4820 +3433 57120 0.4770 +3433 57169 0.4770 +3433 57506 0.5990 +3433 60489 0.5290 +3433 64108 0.6930 +3433 64135 0.9760 +3433 64761 0.5850 +3433 65979 0.7310 +3433 79132 0.7830 +3433 83666 0.7740 +3433 85363 0.4070 +3433 85441 0.7380 +3433 91543 0.9620 +3433 94240 0.8080 +3433 115004 0.5490 +3433 115361 0.7120 +3433 115362 0.6500 +3433 116071 0.4300 +3433 123169 0.4750 +3433 129607 0.7360 +3433 149628 0.4450 +3433 151636 0.4270 +3433 163351 0.4460 +3433 203068 0.4380 +3433 219285 0.8530 +3433 282616 0.4910 +3433 282617 0.4380 +3433 282618 0.6000 +3433 340061 0.5910 +3434 3437 0.9990 +3434 3439 0.8580 +3434 3440 0.6930 +3434 3441 0.4790 +3434 3442 0.8520 +3434 3444 0.4340 +3434 3445 0.6240 +3434 3446 0.5240 +3434 3448 0.8830 +3434 3451 0.6000 +3434 3452 0.6600 +3434 3454 0.7030 +3434 3455 0.5670 +3434 3456 0.9010 +3434 3458 0.5750 +3434 3459 0.5430 +3434 3552 0.4180 +3434 3553 0.5190 +3434 3569 0.6420 +3434 3576 0.4790 +3434 3605 0.5440 +3434 3627 0.9100 +3434 3646 0.9830 +3434 3659 0.7160 +3434 3660 0.4600 +3434 3661 0.9040 +3434 3663 0.6730 +3434 3665 0.9600 +3434 3669 0.7590 +3434 3714 0.4370 +3434 3716 0.7150 +3434 3717 0.4310 +3434 4061 0.6700 +3434 4283 0.5210 +3434 4343 0.4470 +3434 4538 0.4810 +3434 4599 0.9890 +3434 4600 0.9610 +3434 4790 0.6630 +3434 4792 0.4420 +3434 4938 0.9600 +3434 4939 0.9660 +3434 4940 0.9650 +3434 5335 0.4090 +3434 5359 0.6960 +3434 5478 0.5240 +3434 5595 0.5190 +3434 5610 0.9930 +3434 5687 0.4240 +3434 5696 0.4610 +3434 5698 0.4280 +3434 5877 0.4400 +3434 5899 0.4730 +3434 6041 0.6960 +3434 6048 0.4300 +3434 6347 0.6380 +3434 6351 0.4160 +3434 6355 0.4910 +3434 6373 0.5980 +3434 6614 0.6230 +3434 6672 0.4550 +3434 6737 0.4910 +3434 6746 0.5100 +3434 6772 0.9450 +3434 6773 0.8870 +3434 6876 0.4050 +3434 7097 0.4290 +3434 7098 0.7830 +3434 7099 0.4850 +3434 7124 0.5660 +3434 7297 0.5230 +3434 7318 0.4680 +3434 7324 0.5140 +3434 7706 0.7240 +3434 8061 0.4890 +3434 8519 0.8770 +3434 8638 0.9680 +3434 8651 0.5000 +3434 8743 0.4960 +3434 9021 0.6110 +3434 9246 0.8100 +3434 9447 0.4050 +3434 9451 0.9130 +3434 9636 0.9930 +3434 9641 0.8370 +3434 10010 0.6290 +3434 10045 0.4400 +3434 10346 0.6440 +3434 10379 0.9490 +3434 10410 0.8660 +3434 10437 0.4840 +3434 10561 0.9740 +3434 10581 0.6350 +3434 10628 0.4490 +3434 10952 0.4300 +3434 10964 0.9670 +3434 11274 0.9490 +3434 23070 0.4850 +3434 23424 0.4880 +3434 23586 0.9950 +3434 24138 0.8460 +3434 25820 0.6600 +3434 25939 0.8250 +3434 26010 0.4330 +3434 27102 0.9030 +3434 29110 0.8990 +3434 29927 0.4710 +3434 51056 0.4480 +3434 51062 0.4100 +3434 51191 0.9630 +3434 51284 0.6190 +3434 51311 0.4670 +3434 54106 0.6580 +3434 54625 0.5330 +3434 54739 0.9200 +3434 54809 0.7240 +3434 55008 0.8820 +3434 55337 0.4810 +3434 55593 0.4820 +3434 55601 0.9440 +3434 55770 0.5700 +3434 56829 0.4960 +3434 56832 0.4490 +3434 57120 0.4890 +3434 57506 0.8460 +3434 64108 0.7910 +3434 64135 0.9820 +3434 64343 0.5070 +3434 64761 0.5640 +3434 65979 0.6220 +3434 79132 0.8100 +3434 81030 0.6470 +3434 83666 0.7510 +3434 85363 0.4960 +3434 85441 0.5860 +3434 91543 0.9700 +3434 94240 0.7400 +3434 115004 0.6450 +3434 115361 0.5520 +3434 115362 0.5660 +3434 122509 0.4420 +3434 123169 0.4760 +3434 129607 0.8300 +3434 146857 0.4460 +3434 151636 0.4630 +3434 163702 0.5230 +3434 219285 0.6500 +3434 282616 0.5930 +3434 282617 0.5490 +3434 282618 0.6670 +3434 340061 0.8400 +3434 439996 0.9030 +3434 440275 0.9080 +3434 730249 0.6940 +3437 3439 0.6230 +3437 3440 0.8850 +3437 3442 0.6920 +3437 3445 0.5910 +3437 3448 0.8680 +3437 3451 0.5580 +3437 3452 0.7040 +3437 3454 0.5670 +3437 3455 0.4410 +3437 3456 0.7740 +3437 3458 0.5150 +3437 3553 0.4690 +3437 3557 0.4390 +3437 3569 0.7180 +3437 3576 0.4130 +3437 3627 0.8290 +3437 3659 0.7230 +3437 3661 0.7170 +3437 3663 0.4130 +3437 3665 0.8930 +3437 3669 0.7030 +3437 3716 0.4210 +3437 3717 0.4010 +3437 3959 0.4270 +3437 3965 0.4310 +3437 4061 0.7370 +3437 4283 0.5170 +3437 4538 0.4730 +3437 4599 0.9720 +3437 4600 0.8880 +3437 4938 0.9470 +3437 4939 0.9470 +3437 4940 0.9420 +3437 4973 0.4270 +3437 5359 0.7910 +3437 5610 0.9430 +3437 5696 0.5190 +3437 5698 0.5280 +3437 5721 0.4160 +3437 5899 0.4620 +3437 6041 0.5820 +3437 6347 0.4680 +3437 6355 0.4940 +3437 6373 0.6540 +3437 6614 0.5270 +3437 6672 0.5540 +3437 6737 0.5950 +3437 6772 0.9850 +3437 6773 0.9140 +3437 6876 0.4220 +3437 6890 0.4330 +3437 6892 0.4060 +3437 7097 0.4170 +3437 7098 0.5390 +3437 7099 0.4210 +3437 7124 0.4910 +3437 7168 0.4520 +3437 7170 0.4900 +3437 7187 0.4440 +3437 7189 0.4450 +3437 7297 0.4190 +3437 7318 0.4590 +3437 7706 0.4890 +3437 8519 0.8600 +3437 8638 0.9640 +3437 8651 0.4620 +3437 8663 0.4890 +3437 8743 0.5180 +3437 8878 0.4380 +3437 8995 0.4170 +3437 9111 0.4230 +3437 9246 0.8110 +3437 9636 0.9760 +3437 9641 0.5080 +3437 9830 0.4470 +3437 10346 0.8280 +3437 10379 0.9410 +3437 10410 0.9230 +3437 10437 0.4430 +3437 10561 0.9840 +3437 10581 0.7410 +3437 10673 0.4730 +3437 10964 0.9820 +3437 10987 0.7970 +3437 11140 0.4050 +3437 11274 0.9020 +3437 23424 0.4470 +3437 23586 0.9660 +3437 24138 0.8570 +3437 25939 0.8040 +3437 26010 0.4470 +3437 29110 0.7820 +3437 29126 0.4080 +3437 51056 0.6350 +3437 51062 0.4250 +3437 51191 0.9390 +3437 51284 0.4550 +3437 54625 0.7050 +3437 54739 0.9380 +3437 54809 0.7790 +3437 55008 0.8790 +3437 55337 0.4580 +3437 55601 0.9360 +3437 56829 0.5130 +3437 57169 0.4640 +3437 57506 0.7950 +3437 57674 0.4900 +3437 64108 0.8470 +3437 64135 0.9720 +3437 64761 0.6260 +3437 65979 0.6560 +3437 79132 0.7510 +3437 83666 0.9250 +3437 84166 0.4170 +3437 85363 0.4730 +3437 85441 0.7860 +3437 91543 0.9990 +3437 92703 0.6140 +3437 94240 0.8970 +3437 115004 0.4980 +3437 115361 0.7220 +3437 115362 0.6500 +3437 116071 0.5740 +3437 123169 0.4770 +3437 129607 0.9040 +3437 144455 0.4450 +3437 146857 0.4490 +3437 149628 0.4800 +3437 151636 0.6160 +3437 163351 0.4500 +3437 219285 0.9130 +3437 282618 0.4700 +3437 439996 0.4090 +3437 730249 0.4590 +3439 3440 0.6630 +3439 3441 0.8340 +3439 3442 0.8440 +3439 3443 0.8820 +3439 3444 0.5430 +3439 3445 0.8550 +3439 3446 0.6270 +3439 3447 0.9000 +3439 3448 0.9080 +3439 3449 0.6560 +3439 3451 0.7970 +3439 3452 0.8930 +3439 3454 0.9990 +3439 3455 0.9990 +3439 3456 0.9930 +3439 3458 0.9540 +3439 3459 0.9630 +3439 3460 0.8180 +3439 3551 0.4580 +3439 3552 0.7760 +3439 3553 0.8490 +3439 3554 0.7030 +3439 3557 0.4790 +3439 3558 0.8810 +3439 3559 0.8430 +3439 3560 0.7520 +3439 3561 0.7780 +3439 3562 0.7670 +3439 3563 0.8610 +3439 3565 0.7940 +3439 3566 0.7790 +3439 3567 0.7160 +3439 3568 0.7810 +3439 3569 0.9270 +3439 3570 0.8030 +3439 3572 0.7330 +3439 3574 0.6970 +3439 3575 0.8080 +3439 3576 0.7770 +3439 3578 0.7470 +3439 3581 0.6810 +3439 3586 0.8520 +3439 3587 0.7870 +3439 3588 0.9070 +3439 3589 0.5490 +3439 3590 0.6740 +3439 3594 0.8620 +3439 3595 0.7810 +3439 3596 0.7130 +3439 3597 0.7180 +3439 3598 0.7160 +3439 3600 0.7680 +3439 3601 0.4190 +3439 3605 0.7900 +3439 3606 0.8490 +3439 3620 0.6700 +3439 3627 0.8250 +3439 3630 0.5270 +3439 3654 0.5850 +3439 3659 0.9100 +3439 3660 0.8700 +3439 3661 0.9720 +3439 3662 0.4890 +3439 3663 0.6700 +3439 3665 0.9670 +3439 3669 0.5700 +3439 3682 0.5190 +3439 3684 0.6340 +3439 3687 0.7060 +3439 3700 0.5140 +3439 3704 0.5600 +3439 3716 0.9920 +3439 3717 0.8760 +3439 3718 0.8110 +3439 3725 0.5070 +3439 3815 0.5130 +3439 3821 0.4800 +3439 3824 0.4480 +3439 3836 0.6710 +3439 3902 0.4800 +3439 3916 0.4790 +3439 3953 0.6880 +3439 3977 0.8390 +3439 4049 0.7200 +3439 4061 0.4180 +3439 4065 0.4100 +3439 4210 0.4480 +3439 4283 0.7280 +3439 4318 0.4730 +3439 4352 0.7500 +3439 4353 0.4410 +3439 4507 0.5050 +3439 4599 0.8710 +3439 4600 0.7340 +3439 4609 0.5140 +3439 4684 0.5920 +3439 4790 0.9010 +3439 4792 0.5290 +3439 4843 0.6350 +3439 4938 0.7320 +3439 4939 0.6820 +3439 4940 0.6380 +3439 4988 0.4690 +3439 5045 0.4470 +3439 5133 0.5780 +3439 5156 0.7680 +3439 5159 0.7760 +3439 5551 0.6220 +3439 5595 0.4250 +3439 5610 0.7800 +3439 5618 0.6740 +3439 5698 0.4160 +3439 5720 0.4140 +3439 5721 0.4140 +3439 5743 0.4570 +3439 5757 0.4700 +3439 5770 0.5110 +3439 5777 0.6740 +3439 5781 0.6060 +3439 5788 0.6210 +3439 5896 0.4160 +3439 5970 0.7870 +3439 6035 0.4050 +3439 6041 0.6870 +3439 6347 0.7660 +3439 6348 0.7270 +3439 6351 0.7210 +3439 6354 0.4830 +3439 6355 0.4590 +3439 6356 0.6970 +3439 6361 0.4340 +3439 6363 0.4790 +3439 6364 0.5100 +3439 6366 0.4450 +3439 6367 0.4480 +3439 6373 0.8980 +3439 6374 0.4180 +3439 6376 0.4230 +3439 6387 0.5070 +3439 6402 0.5050 +3439 6490 0.4470 +3439 6504 0.4050 +3439 6554 0.4480 +3439 6614 0.5240 +3439 6714 0.4510 +3439 6737 0.4830 +3439 6750 0.4300 +3439 6772 0.9600 +3439 6773 0.9590 +3439 6774 0.6960 +3439 6775 0.7760 +3439 6776 0.5710 +3439 6777 0.5740 +3439 6778 0.5050 +3439 6850 0.4350 +3439 7040 0.5700 +3439 7048 0.4200 +3439 7056 0.5060 +3439 7096 0.7270 +3439 7097 0.7920 +3439 7098 0.8970 +3439 7099 0.8070 +3439 7100 0.5830 +3439 7113 0.5200 +3439 7124 0.9280 +3439 7132 0.5140 +3439 7157 0.6010 +3439 7187 0.5940 +3439 7189 0.5960 +3439 7292 0.4460 +3439 7293 0.4480 +3439 7297 0.9920 +3439 7318 0.4130 +3439 7412 0.4450 +3439 7706 0.5230 +3439 7837 0.5150 +3439 7852 0.5400 +3439 8431 0.4470 +3439 8517 0.4180 +3439 8519 0.7090 +3439 8638 0.5870 +3439 8651 0.7990 +3439 8743 0.5410 +3439 8795 0.4310 +3439 8829 0.5050 +3439 9021 0.7840 +3439 9034 0.4390 +3439 9172 0.5060 +3439 9180 0.6830 +3439 9308 0.6040 +3439 9332 0.4790 +3439 9436 0.4180 +3439 9437 0.5060 +3439 9447 0.5440 +3439 9466 0.7460 +3439 9636 0.9710 +3439 9641 0.7760 +3439 10010 0.5130 +3439 10044 0.4470 +3439 10045 0.5800 +3439 10068 0.5230 +3439 10346 0.4210 +3439 10379 0.9560 +3439 10392 0.4090 +3439 10410 0.5960 +3439 10535 0.6270 +3439 10561 0.5840 +3439 10563 0.4660 +3439 10581 0.4750 +3439 10628 0.4160 +3439 10673 0.6580 +3439 10964 0.5220 +3439 11009 0.4300 +3439 11274 0.6490 +3439 11277 0.5970 +3439 22914 0.5820 +3439 23308 0.4020 +3439 23547 0.4360 +3439 23586 0.9020 +3439 23643 0.4150 +3439 24138 0.4470 +3439 25939 0.7180 +3439 29110 0.8150 +3439 29126 0.7000 +3439 29851 0.4320 +3439 29949 0.5890 +3439 30009 0.6630 +3439 30816 0.5330 +3439 30835 0.5700 +3439 50615 0.7580 +3439 50616 0.7640 +3439 50852 0.4180 +3439 50943 0.6230 +3439 51135 0.6540 +3439 51191 0.4480 +3439 51284 0.9200 +3439 51311 0.8040 +3439 51428 0.4320 +3439 51497 0.4310 +3439 53832 0.6980 +3439 53833 0.6930 +3439 54106 0.8990 +3439 54807 0.6010 +3439 55193 0.4970 +3439 55801 0.4070 +3439 56832 0.8670 +3439 57506 0.8600 +3439 58985 0.7890 +3439 59272 0.6720 +3439 60489 0.5810 +3439 64127 0.5090 +3439 64135 0.8860 +3439 64581 0.4180 +3439 65258 0.4470 +3439 79132 0.7980 +3439 79621 0.6260 +3439 80380 0.4900 +3439 80381 0.5800 +3439 81622 0.5160 +3439 81793 0.4210 +3439 84153 0.6230 +3439 84706 0.4300 +3439 84868 0.5070 +3439 85363 0.5090 +3439 85480 0.6440 +3439 90865 0.5750 +3439 91543 0.8210 +3439 112744 0.6750 +3439 114548 0.5520 +3439 114609 0.6890 +3439 115004 0.6960 +3439 116379 0.7000 +3439 136991 0.4190 +3439 137902 0.5150 +3439 140885 0.4160 +3439 148022 0.4860 +3439 149233 0.8370 +3439 163702 0.9340 +3439 168400 0.4160 +3439 169355 0.5970 +3439 170482 0.6640 +3439 196528 0.5460 +3439 200315 0.4880 +3439 200316 0.4020 +3439 259197 0.4710 +3439 282616 0.7810 +3439 282617 0.8820 +3439 282618 0.8730 +3439 338376 0.8930 +3439 340061 0.6450 +3439 386653 0.4310 +3439 405754 0.4390 +3439 100526664 0.4070 +3440 3441 0.8500 +3440 3442 0.9210 +3440 3443 0.5900 +3440 3444 0.5210 +3440 3445 0.6540 +3440 3446 0.5660 +3440 3448 0.5380 +3440 3449 0.6510 +3440 3451 0.4350 +3440 3452 0.5370 +3440 3454 0.9990 +3440 3455 0.9990 +3440 3456 0.7980 +3440 3458 0.9680 +3440 3459 0.8910 +3440 3460 0.5650 +3440 3467 0.4540 +3440 3552 0.8970 +3440 3553 0.9130 +3440 3554 0.4020 +3440 3557 0.4700 +3440 3558 0.8920 +3440 3559 0.7930 +3440 3560 0.7020 +3440 3561 0.7220 +3440 3562 0.8580 +3440 3563 0.8610 +3440 3565 0.6280 +3440 3566 0.7160 +3440 3567 0.6270 +3440 3568 0.7150 +3440 3569 0.9030 +3440 3570 0.7520 +3440 3572 0.7140 +3440 3574 0.7690 +3440 3575 0.7400 +3440 3576 0.6700 +3440 3578 0.7530 +3440 3581 0.6830 +3440 3586 0.8900 +3440 3587 0.7220 +3440 3588 0.8810 +3440 3590 0.6740 +3440 3594 0.7910 +3440 3595 0.7880 +3440 3596 0.6070 +3440 3597 0.6930 +3440 3598 0.6770 +3440 3600 0.7790 +3440 3603 0.6590 +3440 3605 0.6710 +3440 3606 0.7260 +3440 3620 0.4190 +3440 3627 0.8380 +3440 3630 0.6170 +3440 3654 0.5080 +3440 3659 0.8470 +3440 3660 0.7990 +3440 3661 0.9030 +3440 3663 0.4280 +3440 3665 0.9590 +3440 3669 0.5160 +3440 3684 0.4070 +3440 3687 0.4470 +3440 3704 0.5300 +3440 3716 0.9370 +3440 3717 0.8280 +3440 3718 0.7280 +3440 3815 0.4820 +3440 3836 0.5290 +3440 3953 0.6680 +3440 3977 0.6680 +3440 4049 0.7650 +3440 4283 0.8020 +3440 4313 0.4410 +3440 4318 0.5560 +3440 4332 0.4820 +3440 4352 0.7440 +3440 4507 0.6430 +3440 4599 0.7480 +3440 4600 0.5970 +3440 4684 0.4180 +3440 4790 0.8630 +3440 4803 0.5230 +3440 4938 0.5670 +3440 4939 0.5080 +3440 4940 0.4510 +3440 5133 0.4180 +3440 5156 0.7710 +3440 5159 0.7710 +3440 5327 0.4790 +3440 5443 0.5050 +3440 5610 0.6960 +3440 5618 0.6640 +3440 5757 0.4180 +3440 5770 0.4310 +3440 5777 0.4310 +3440 5781 0.4830 +3440 5788 0.4180 +3440 5937 0.4240 +3440 5970 0.7240 +3440 6041 0.4310 +3440 6320 0.5420 +3440 6347 0.7230 +3440 6348 0.6510 +3440 6351 0.6580 +3440 6354 0.6030 +3440 6356 0.7580 +3440 6367 0.4770 +3440 6373 0.4240 +3440 6376 0.8250 +3440 6387 0.5650 +3440 6750 0.5050 +3440 6772 0.9120 +3440 6773 0.8710 +3440 6774 0.4740 +3440 6775 0.4970 +3440 7039 0.5200 +3440 7040 0.5810 +3440 7097 0.4220 +3440 7098 0.7780 +3440 7099 0.6630 +3440 7100 0.4720 +3440 7113 0.4180 +3440 7124 0.8420 +3440 7157 0.6460 +3440 7297 0.8920 +3440 8519 0.5970 +3440 8651 0.7840 +3440 8743 0.6120 +3440 8829 0.5150 +3440 8993 0.6750 +3440 9021 0.6460 +3440 9180 0.6580 +3440 9246 0.4020 +3440 9466 0.6710 +3440 9636 0.9570 +3440 9830 0.4680 +3440 10379 0.8740 +3440 10410 0.6700 +3440 10581 0.6040 +3440 10673 0.4490 +3440 10850 0.6970 +3440 10964 0.5730 +3440 11274 0.6520 +3440 23586 0.8530 +3440 23601 0.4240 +3440 24138 0.5110 +3440 29110 0.4310 +3440 29126 0.5240 +3440 50615 0.6930 +3440 50616 0.6880 +3440 51135 0.5270 +3440 51284 0.8680 +3440 51311 0.6710 +3440 53832 0.6580 +3440 53833 0.6590 +3440 54106 0.8330 +3440 54941 0.4200 +3440 57506 0.4740 +3440 58985 0.6780 +3440 59272 0.5830 +3440 64135 0.7310 +3440 64222 0.4240 +3440 79132 0.4150 +3440 81608 0.4450 +3440 81622 0.4700 +3440 84941 0.4510 +3440 90865 0.4070 +3440 91543 0.6960 +3440 115004 0.4160 +3440 116379 0.6640 +3440 149233 0.6940 +3440 163702 0.8970 +3440 282616 0.8270 +3440 282617 0.8760 +3440 282618 0.9100 +3440 283420 0.4610 +3441 3442 0.8850 +3441 3443 0.4720 +3441 3444 0.7140 +3441 3445 0.8560 +3441 3446 0.7740 +3441 3447 0.6860 +3441 3448 0.6510 +3441 3449 0.7810 +3441 3451 0.8550 +3441 3452 0.9020 +3441 3454 0.9890 +3441 3455 0.8670 +3441 3456 0.7600 +3441 3458 0.7900 +3441 3459 0.8670 +3441 3460 0.5190 +3441 3552 0.5140 +3441 3553 0.5890 +3441 3558 0.8370 +3441 3559 0.7130 +3441 3560 0.6800 +3441 3561 0.7070 +3441 3563 0.7240 +3441 3565 0.4810 +3441 3566 0.6870 +3441 3567 0.4030 +3441 3568 0.6950 +3441 3569 0.6830 +3441 3570 0.7060 +3441 3572 0.6690 +3441 3575 0.7060 +3441 3576 0.4580 +3441 3581 0.6590 +3441 3586 0.5940 +3441 3587 0.6800 +3441 3588 0.7170 +3441 3590 0.6680 +3441 3594 0.6800 +3441 3595 0.6740 +3441 3597 0.6620 +3441 3598 0.6690 +3441 3605 0.4550 +3441 3627 0.5250 +3441 3630 0.4290 +3441 3659 0.7960 +3441 3660 0.7640 +3441 3661 0.8980 +3441 3662 0.4460 +3441 3665 0.9330 +3441 3704 0.5390 +3441 3716 0.7890 +3441 3717 0.8200 +3441 3718 0.7090 +3441 3791 0.5400 +3441 3815 0.4800 +3441 3836 0.5130 +3441 3953 0.6640 +3441 3977 0.6500 +3441 4332 0.4890 +3441 4352 0.7360 +3441 4507 0.4370 +3441 4599 0.6710 +3441 4600 0.6020 +3441 4790 0.7710 +3441 4938 0.4420 +3441 4939 0.4010 +3441 5156 0.7760 +3441 5159 0.7690 +3441 5228 0.4740 +3441 5610 0.4540 +3441 5618 0.6510 +3441 5770 0.4260 +3441 5777 0.4230 +3441 5781 0.4710 +3441 5970 0.6980 +3441 6041 0.5520 +3441 6347 0.4310 +3441 6750 0.5070 +3441 6772 0.7610 +3441 6773 0.7130 +3441 7098 0.7270 +3441 7099 0.4030 +3441 7124 0.6410 +3441 7157 0.4480 +3441 7297 0.7560 +3441 7706 0.4150 +3441 8651 0.6080 +3441 9021 0.6120 +3441 9180 0.6500 +3441 9466 0.6580 +3441 9636 0.9340 +3441 10379 0.7750 +3441 10535 0.5280 +3441 23586 0.7040 +3441 29110 0.4120 +3441 29126 0.4640 +3441 50615 0.6660 +3441 51284 0.5730 +3441 53832 0.6560 +3441 53833 0.6500 +3441 54106 0.5100 +3441 57506 0.6500 +3441 57864 0.4450 +3441 58985 0.6500 +3441 59272 0.4610 +3441 64135 0.7010 +3441 79132 0.5480 +3441 79621 0.5500 +3441 79671 0.4500 +3441 81608 0.5050 +3441 84153 0.5330 +3441 116379 0.6500 +3441 148022 0.4850 +3441 149233 0.6850 +3441 163702 0.7250 +3441 282616 0.4870 +3441 282617 0.7010 +3441 282618 0.4780 +3442 3443 0.9180 +3442 3444 0.6480 +3442 3445 0.5400 +3442 3446 0.7390 +3442 3447 0.7940 +3442 3448 0.9440 +3442 3449 0.8820 +3442 3451 0.8160 +3442 3452 0.6440 +3442 3454 0.9750 +3442 3455 0.8890 +3442 3456 0.7370 +3442 3458 0.7820 +3442 3459 0.8360 +3442 3460 0.4970 +3442 3467 0.4290 +3442 3552 0.5170 +3442 3553 0.5870 +3442 3558 0.8580 +3442 3559 0.7140 +3442 3560 0.6720 +3442 3561 0.7310 +3442 3563 0.7160 +3442 3565 0.4850 +3442 3566 0.6980 +3442 3567 0.4040 +3442 3568 0.6940 +3442 3569 0.6800 +3442 3570 0.7030 +3442 3572 0.6640 +3442 3575 0.7020 +3442 3576 0.4790 +3442 3581 0.6500 +3442 3586 0.5700 +3442 3587 0.6780 +3442 3588 0.7110 +3442 3590 0.6590 +3442 3594 0.6680 +3442 3595 0.6700 +3442 3597 0.6620 +3442 3598 0.6680 +3442 3605 0.4520 +3442 3627 0.4670 +3442 3630 0.4350 +3442 3659 0.7740 +3442 3660 0.7620 +3442 3661 0.7760 +3442 3662 0.4220 +3442 3665 0.7900 +3442 3704 0.5440 +3442 3716 0.7810 +3442 3717 0.8210 +3442 3718 0.7070 +3442 3791 0.5510 +3442 3815 0.4830 +3442 3836 0.4990 +3442 3953 0.6630 +3442 3977 0.6500 +3442 4055 0.4100 +3442 4332 0.5060 +3442 4352 0.7400 +3442 4507 0.4420 +3442 4599 0.6320 +3442 4600 0.5960 +3442 4790 0.7690 +3442 4938 0.4230 +3442 5156 0.7820 +3442 5159 0.7720 +3442 5228 0.4780 +3442 5610 0.4030 +3442 5618 0.6520 +3442 5770 0.4290 +3442 5777 0.4250 +3442 5781 0.4680 +3442 5970 0.6870 +3442 6041 0.5190 +3442 6750 0.5200 +3442 6772 0.7730 +3442 6773 0.6710 +3442 6834 0.4340 +3442 7010 0.4280 +3442 7098 0.6420 +3442 7124 0.6330 +3442 7157 0.4490 +3442 7297 0.6480 +3442 8651 0.5850 +3442 9021 0.5990 +3442 9172 0.4850 +3442 9180 0.6500 +3442 9466 0.6500 +3442 9636 0.9440 +3442 10379 0.7420 +3442 10535 0.5340 +3442 23586 0.5780 +3442 29126 0.4630 +3442 50615 0.6700 +3442 51284 0.5090 +3442 53832 0.6500 +3442 53833 0.6500 +3442 54106 0.4360 +3442 57864 0.4800 +3442 58985 0.6500 +3442 59272 0.4840 +3442 64135 0.5740 +3442 79132 0.4730 +3442 79621 0.5580 +3442 81608 0.5060 +3442 84153 0.5370 +3442 116379 0.6500 +3442 149233 0.6860 +3442 163702 0.7060 +3442 282616 0.4430 +3442 282617 0.6880 +3442 282618 0.4660 +3443 3444 0.5080 +3443 3445 0.5390 +3443 3446 0.5420 +3443 3448 0.9210 +3443 3449 0.5430 +3443 3451 0.4700 +3443 3452 0.8420 +3443 3454 0.9740 +3443 3455 0.8440 +3443 3456 0.7250 +3443 3458 0.7790 +3443 3459 0.8640 +3443 3460 0.4850 +3443 3467 0.4500 +3443 3552 0.5140 +3443 3553 0.5870 +3443 3558 0.8630 +3443 3559 0.7160 +3443 3560 0.6740 +3443 3561 0.7360 +3443 3563 0.7170 +3443 3565 0.4970 +3443 3566 0.6870 +3443 3567 0.4330 +3443 3568 0.6910 +3443 3569 0.6770 +3443 3570 0.7030 +3443 3572 0.6630 +3443 3575 0.7010 +3443 3576 0.4750 +3443 3581 0.6500 +3443 3586 0.5630 +3443 3587 0.6770 +3443 3588 0.7080 +3443 3590 0.6620 +3443 3594 0.6640 +3443 3595 0.6710 +3443 3597 0.6620 +3443 3598 0.6680 +3443 3605 0.4440 +3443 3627 0.4560 +3443 3630 0.4400 +3443 3659 0.7690 +3443 3660 0.7470 +3443 3661 0.8460 +3443 3662 0.4270 +3443 3665 0.8460 +3443 3704 0.5430 +3443 3716 0.7800 +3443 3717 0.8210 +3443 3718 0.7100 +3443 3791 0.5490 +3443 3815 0.4840 +3443 3836 0.4990 +3443 3953 0.6630 +3443 3977 0.6500 +3443 4055 0.4080 +3443 4332 0.4910 +3443 4352 0.7410 +3443 4507 0.4490 +3443 4599 0.6200 +3443 4600 0.5690 +3443 4790 0.7690 +3443 5156 0.7820 +3443 5159 0.7730 +3443 5228 0.4760 +3443 5618 0.6520 +3443 5770 0.4300 +3443 5777 0.4190 +3443 5781 0.4690 +3443 5970 0.6870 +3443 6041 0.4990 +3443 6750 0.5230 +3443 6772 0.7260 +3443 6773 0.6650 +3443 7098 0.6690 +3443 7124 0.6270 +3443 7157 0.4490 +3443 7297 0.6400 +3443 8651 0.5780 +3443 9021 0.5960 +3443 9180 0.6500 +3443 9466 0.6500 +3443 9636 0.6560 +3443 10379 0.7290 +3443 10535 0.5320 +3443 23586 0.6390 +3443 29126 0.4560 +3443 50615 0.6660 +3443 51284 0.5090 +3443 53832 0.6500 +3443 53833 0.6500 +3443 54106 0.4360 +3443 57506 0.5530 +3443 57864 0.4720 +3443 58985 0.6500 +3443 59272 0.4650 +3443 64135 0.6300 +3443 79132 0.4580 +3443 79621 0.5530 +3443 79671 0.4250 +3443 81608 0.5060 +3443 84153 0.5340 +3443 116379 0.6500 +3443 148022 0.4670 +3443 149233 0.6830 +3443 163702 0.6930 +3443 282617 0.6930 +3444 3445 0.5410 +3444 3446 0.8600 +3444 3447 0.5070 +3444 3448 0.8630 +3444 3449 0.9430 +3444 3451 0.8530 +3444 3452 0.7690 +3444 3454 0.9720 +3444 3455 0.8450 +3444 3456 0.7370 +3444 3458 0.7780 +3444 3459 0.8300 +3444 3460 0.4850 +3444 3467 0.5090 +3444 3552 0.5140 +3444 3553 0.5870 +3444 3558 0.8570 +3444 3559 0.7120 +3444 3560 0.6730 +3444 3561 0.7360 +3444 3563 0.7160 +3444 3565 0.4770 +3444 3566 0.6860 +3444 3568 0.6970 +3444 3569 0.6770 +3444 3570 0.7030 +3444 3572 0.6630 +3444 3575 0.7020 +3444 3576 0.4790 +3444 3581 0.6630 +3444 3586 0.5630 +3444 3587 0.6760 +3444 3588 0.7070 +3444 3590 0.6620 +3444 3594 0.6630 +3444 3595 0.6700 +3444 3597 0.6620 +3444 3598 0.6680 +3444 3605 0.4390 +3444 3627 0.4630 +3444 3630 0.4340 +3444 3659 0.7660 +3444 3660 0.7620 +3444 3661 0.7690 +3444 3662 0.4160 +3444 3665 0.7760 +3444 3704 0.5450 +3444 3716 0.7790 +3444 3717 0.8210 +3444 3718 0.7090 +3444 3791 0.5510 +3444 3815 0.4840 +3444 3836 0.4990 +3444 3953 0.6640 +3444 3977 0.6500 +3444 4055 0.4100 +3444 4332 0.5070 +3444 4352 0.7420 +3444 4507 0.4440 +3444 4599 0.6200 +3444 4600 0.5820 +3444 4790 0.7690 +3444 5156 0.7820 +3444 5159 0.7730 +3444 5228 0.4770 +3444 5618 0.6500 +3444 5770 0.4300 +3444 5777 0.4200 +3444 5781 0.4680 +3444 5970 0.6850 +3444 6041 0.4860 +3444 6750 0.5260 +3444 6772 0.7260 +3444 6773 0.6680 +3444 7010 0.4280 +3444 7098 0.6370 +3444 7124 0.6330 +3444 7157 0.4490 +3444 7297 0.6360 +3444 8651 0.5770 +3444 9021 0.5920 +3444 9172 0.4870 +3444 9180 0.6500 +3444 9466 0.6500 +3444 9636 0.7960 +3444 10379 0.7230 +3444 10535 0.5340 +3444 23586 0.5630 +3444 29126 0.4570 +3444 50615 0.6650 +3444 51284 0.4830 +3444 53832 0.6500 +3444 53833 0.6500 +3444 54106 0.4220 +3444 57864 0.4810 +3444 58985 0.6500 +3444 59272 0.4610 +3444 64135 0.5510 +3444 79132 0.4430 +3444 79621 0.5550 +3444 81608 0.5070 +3444 84153 0.5360 +3444 116379 0.6500 +3444 126206 0.4010 +3444 149233 0.7960 +3444 163702 0.6890 +3444 282616 0.4120 +3444 282617 0.7020 +3444 282618 0.4330 +3445 3446 0.6670 +3445 3447 0.7170 +3445 3448 0.5450 +3445 3449 0.6680 +3445 3451 0.5080 +3445 3452 0.5740 +3445 3454 0.9870 +3445 3455 0.9020 +3445 3456 0.7630 +3445 3458 0.7800 +3445 3459 0.8620 +3445 3460 0.4850 +3445 3467 0.5580 +3445 3552 0.5140 +3445 3553 0.5860 +3445 3558 0.8610 +3445 3559 0.7110 +3445 3560 0.6720 +3445 3561 0.7350 +3445 3563 0.7160 +3445 3565 0.4860 +3445 3566 0.6930 +3445 3567 0.4060 +3445 3568 0.6930 +3445 3569 0.6770 +3445 3570 0.7060 +3445 3572 0.6620 +3445 3575 0.7040 +3445 3576 0.4780 +3445 3581 0.6500 +3445 3586 0.5660 +3445 3587 0.6790 +3445 3588 0.7130 +3445 3590 0.6640 +3445 3594 0.6630 +3445 3595 0.6740 +3445 3597 0.6620 +3445 3598 0.6710 +3445 3605 0.4480 +3445 3627 0.4600 +3445 3630 0.4410 +3445 3659 0.7650 +3445 3660 0.7640 +3445 3661 0.8190 +3445 3662 0.4170 +3445 3665 0.7750 +3445 3704 0.5450 +3445 3716 0.7820 +3445 3717 0.8210 +3445 3718 0.7070 +3445 3791 0.5510 +3445 3815 0.4830 +3445 3836 0.4990 +3445 3953 0.6630 +3445 3977 0.6560 +3445 4055 0.4120 +3445 4332 0.5110 +3445 4352 0.7420 +3445 4507 0.4620 +3445 4599 0.6300 +3445 4600 0.6030 +3445 4790 0.7680 +3445 5156 0.7820 +3445 5159 0.7730 +3445 5228 0.4770 +3445 5618 0.6510 +3445 5770 0.4300 +3445 5777 0.4230 +3445 5781 0.4700 +3445 5970 0.6850 +3445 6041 0.4940 +3445 6750 0.5240 +3445 6772 0.7280 +3445 6773 0.6710 +3445 7010 0.4270 +3445 7098 0.6360 +3445 7124 0.6300 +3445 7157 0.4490 +3445 7297 0.6500 +3445 8651 0.5810 +3445 9021 0.5950 +3445 9076 0.4310 +3445 9172 0.4870 +3445 9180 0.6500 +3445 9466 0.6500 +3445 9636 0.9210 +3445 10379 0.7290 +3445 10535 0.5370 +3445 23586 0.5660 +3445 29126 0.4560 +3445 50615 0.6630 +3445 51284 0.4830 +3445 53832 0.6500 +3445 53833 0.6500 +3445 54106 0.4210 +3445 57864 0.4810 +3445 58985 0.6500 +3445 59272 0.4810 +3445 64135 0.5590 +3445 79132 0.4430 +3445 79621 0.5620 +3445 81608 0.5060 +3445 84153 0.5450 +3445 116379 0.6500 +3445 126206 0.4090 +3445 149233 0.6830 +3445 163702 0.7000 +3445 282617 0.6930 +3445 282618 0.4220 +3446 3447 0.4120 +3446 3448 0.8630 +3446 3449 0.9990 +3446 3451 0.9990 +3446 3452 0.8430 +3446 3454 0.9830 +3446 3455 0.8390 +3446 3456 0.7620 +3446 3458 0.7810 +3446 3459 0.8300 +3446 3460 0.4910 +3446 3467 0.5580 +3446 3552 0.5150 +3446 3553 0.5860 +3446 3558 0.8590 +3446 3559 0.7160 +3446 3560 0.6770 +3446 3561 0.7030 +3446 3563 0.7160 +3446 3565 0.4790 +3446 3566 0.6860 +3446 3568 0.6980 +3446 3569 0.6790 +3446 3570 0.7030 +3446 3572 0.6620 +3446 3575 0.7010 +3446 3576 0.4750 +3446 3581 0.6580 +3446 3586 0.5660 +3446 3587 0.6790 +3446 3588 0.7100 +3446 3590 0.6600 +3446 3594 0.6720 +3446 3595 0.6740 +3446 3597 0.6620 +3446 3598 0.6680 +3446 3605 0.4370 +3446 3627 0.4660 +3446 3630 0.4340 +3446 3659 0.7610 +3446 3660 0.7540 +3446 3661 0.7600 +3446 3662 0.4210 +3446 3665 0.7740 +3446 3704 0.5430 +3446 3716 0.7790 +3446 3717 0.8210 +3446 3718 0.7100 +3446 3791 0.5500 +3446 3815 0.4840 +3446 3836 0.4990 +3446 3953 0.6630 +3446 3977 0.6500 +3446 4332 0.4870 +3446 4352 0.7420 +3446 4507 0.4240 +3446 4599 0.6060 +3446 4600 0.5720 +3446 4790 0.7680 +3446 5156 0.7820 +3446 5159 0.7730 +3446 5228 0.4770 +3446 5618 0.6500 +3446 5770 0.4300 +3446 5777 0.4230 +3446 5781 0.4700 +3446 5970 0.6850 +3446 6041 0.4860 +3446 6750 0.5270 +3446 6772 0.7260 +3446 6773 0.6700 +3446 7098 0.6270 +3446 7124 0.6320 +3446 7157 0.4490 +3446 7297 0.6430 +3446 8651 0.5840 +3446 9021 0.5950 +3446 9180 0.6500 +3446 9466 0.6580 +3446 9636 0.7450 +3446 10379 0.7250 +3446 10535 0.5350 +3446 23586 0.5630 +3446 29126 0.4560 +3446 50615 0.6680 +3446 51284 0.4830 +3446 53832 0.6500 +3446 53833 0.6500 +3446 54106 0.4210 +3446 56244 0.4240 +3446 57864 0.4790 +3446 58985 0.6500 +3446 59272 0.4840 +3446 64135 0.5590 +3446 79132 0.4420 +3446 79621 0.5570 +3446 81608 0.5070 +3446 84153 0.5380 +3446 116379 0.6500 +3446 149233 0.6880 +3446 163702 0.6880 +3446 282616 0.4100 +3446 282617 0.7010 +3446 282618 0.4600 +3447 3448 0.5230 +3447 3449 0.7700 +3447 3451 0.5450 +3447 3452 0.6220 +3447 3454 0.9820 +3447 3455 0.8380 +3447 3456 0.5940 +3447 3458 0.8140 +3447 3459 0.8350 +3447 3460 0.4940 +3447 3552 0.5150 +3447 3553 0.5880 +3447 3558 0.8570 +3447 3559 0.7180 +3447 3560 0.6810 +3447 3561 0.7010 +3447 3562 0.5720 +3447 3563 0.7160 +3447 3565 0.4810 +3447 3566 0.6960 +3447 3568 0.6950 +3447 3569 0.6800 +3447 3570 0.7130 +3447 3572 0.6800 +3447 3575 0.7010 +3447 3576 0.4850 +3447 3581 0.6590 +3447 3586 0.5670 +3447 3587 0.6870 +3447 3588 0.7120 +3447 3590 0.6590 +3447 3594 0.6740 +3447 3595 0.6850 +3447 3597 0.6620 +3447 3598 0.6680 +3447 3605 0.4430 +3447 3627 0.4640 +3447 3630 0.4360 +3447 3659 0.5480 +3447 3660 0.4800 +3447 3661 0.7860 +3447 3665 0.7840 +3447 3704 0.5070 +3447 3716 0.7800 +3447 3717 0.8210 +3447 3718 0.7110 +3447 3791 0.5150 +3447 3815 0.4820 +3447 3953 0.6620 +3447 3977 0.6500 +3447 4332 0.4500 +3447 4352 0.7400 +3447 4507 0.4630 +3447 4599 0.4760 +3447 4600 0.5140 +3447 4790 0.7780 +3447 5156 0.7810 +3447 5159 0.7730 +3447 5228 0.4220 +3447 5618 0.6550 +3447 5970 0.6950 +3447 6347 0.4070 +3447 6750 0.5160 +3447 6772 0.4780 +3447 7098 0.6050 +3447 7124 0.6400 +3447 7157 0.4490 +3447 9180 0.6500 +3447 9466 0.6600 +3447 9636 0.6210 +3447 10535 0.4950 +3447 11009 0.4210 +3447 23586 0.4170 +3447 29126 0.4560 +3447 29949 0.4020 +3447 50615 0.6680 +3447 50616 0.5050 +3447 51284 0.5090 +3447 53832 0.6500 +3447 53833 0.6670 +3447 54106 0.4350 +3447 58985 0.6500 +3447 59272 0.4620 +3447 79132 0.4220 +3447 79621 0.5170 +3447 81608 0.5060 +3447 84153 0.4970 +3447 112744 0.4510 +3447 116379 0.6590 +3447 149233 0.6820 +3447 163702 0.7010 +3447 282616 0.4420 +3447 282617 0.6830 +3447 282618 0.4660 +3448 3449 0.9260 +3448 3451 0.7840 +3448 3452 0.9460 +3448 3454 0.9830 +3448 3455 0.8490 +3448 3456 0.7460 +3448 3458 0.7790 +3448 3459 0.8310 +3448 3460 0.4960 +3448 3467 0.4850 +3448 3552 0.5140 +3448 3553 0.5860 +3448 3558 0.8560 +3448 3559 0.7120 +3448 3560 0.6740 +3448 3561 0.7370 +3448 3563 0.7150 +3448 3565 0.4820 +3448 3566 0.6840 +3448 3568 0.6950 +3448 3569 0.6780 +3448 3570 0.7030 +3448 3572 0.6630 +3448 3575 0.7030 +3448 3576 0.4560 +3448 3581 0.6550 +3448 3586 0.5630 +3448 3587 0.6770 +3448 3588 0.7080 +3448 3590 0.6600 +3448 3594 0.6630 +3448 3595 0.6700 +3448 3597 0.6620 +3448 3598 0.6680 +3448 3605 0.4370 +3448 3627 0.4590 +3448 3630 0.4340 +3448 3659 0.7660 +3448 3660 0.7650 +3448 3661 0.7690 +3448 3662 0.4240 +3448 3665 0.7770 +3448 3704 0.5450 +3448 3716 0.7800 +3448 3717 0.8210 +3448 3718 0.7080 +3448 3791 0.5510 +3448 3815 0.4840 +3448 3836 0.5080 +3448 3953 0.6650 +3448 3977 0.6500 +3448 4055 0.4170 +3448 4332 0.5050 +3448 4352 0.7420 +3448 4507 0.4240 +3448 4599 0.6090 +3448 4600 0.6000 +3448 4790 0.7690 +3448 5156 0.7820 +3448 5159 0.7730 +3448 5228 0.4770 +3448 5610 0.4570 +3448 5618 0.6510 +3448 5770 0.4300 +3448 5777 0.4200 +3448 5781 0.4710 +3448 5970 0.6860 +3448 6041 0.4840 +3448 6750 0.5250 +3448 6772 0.7720 +3448 6773 0.6640 +3448 6774 0.4040 +3448 7098 0.6280 +3448 7124 0.6300 +3448 7157 0.4490 +3448 7297 0.6400 +3448 8651 0.5780 +3448 9021 0.5900 +3448 9180 0.6500 +3448 9466 0.6500 +3448 9636 0.9390 +3448 10379 0.7310 +3448 10535 0.5350 +3448 23586 0.5540 +3448 29126 0.4560 +3448 50615 0.7540 +3448 51284 0.4830 +3448 53832 0.6500 +3448 53833 0.6500 +3448 54106 0.4220 +3448 57864 0.4800 +3448 58985 0.6590 +3448 59272 0.4620 +3448 64135 0.5410 +3448 79132 0.4410 +3448 79621 0.5580 +3448 81608 0.5070 +3448 84153 0.5380 +3448 116379 0.6500 +3448 149233 0.6820 +3448 163702 0.6900 +3448 282616 0.4280 +3448 282617 0.7010 +3448 282618 0.4660 +3449 3451 0.9990 +3449 3452 0.8540 +3449 3454 0.9720 +3449 3455 0.8380 +3449 3456 0.7880 +3449 3458 0.7820 +3449 3459 0.8280 +3449 3460 0.4770 +3449 3467 0.6180 +3449 3552 0.5150 +3449 3553 0.5870 +3449 3558 0.8580 +3449 3559 0.7130 +3449 3560 0.6730 +3449 3561 0.7030 +3449 3563 0.7150 +3449 3565 0.4820 +3449 3566 0.6840 +3449 3567 0.4020 +3449 3568 0.6980 +3449 3569 0.6790 +3449 3570 0.7030 +3449 3572 0.6680 +3449 3575 0.7040 +3449 3576 0.4780 +3449 3581 0.6550 +3449 3586 0.5630 +3449 3587 0.6760 +3449 3588 0.7040 +3449 3590 0.6620 +3449 3594 0.6670 +3449 3595 0.6690 +3449 3597 0.6620 +3449 3598 0.6680 +3449 3605 0.4370 +3449 3627 0.4680 +3449 3630 0.4340 +3449 3659 0.7630 +3449 3660 0.7600 +3449 3661 0.7600 +3449 3662 0.4210 +3449 3665 0.7700 +3449 3704 0.5460 +3449 3716 0.7790 +3449 3717 0.8210 +3449 3718 0.7080 +3449 3791 0.5530 +3449 3815 0.4840 +3449 3836 0.4990 +3449 3953 0.6630 +3449 3977 0.6500 +3449 4332 0.5140 +3449 4352 0.7430 +3449 4599 0.6100 +3449 4600 0.5830 +3449 4790 0.7690 +3449 5156 0.7820 +3449 5159 0.7730 +3449 5228 0.4780 +3449 5618 0.6520 +3449 5770 0.4300 +3449 5777 0.4200 +3449 5781 0.4690 +3449 5970 0.6880 +3449 6041 0.5160 +3449 6750 0.5260 +3449 6772 0.7240 +3449 6773 0.6650 +3449 7010 0.4290 +3449 7098 0.6280 +3449 7124 0.6320 +3449 7157 0.4490 +3449 7297 0.6370 +3449 8651 0.5800 +3449 9021 0.5910 +3449 9172 0.4860 +3449 9180 0.6500 +3449 9466 0.6500 +3449 9636 0.6430 +3449 10379 0.7200 +3449 10535 0.5350 +3449 23586 0.5590 +3449 29126 0.4590 +3449 50615 0.6690 +3449 51284 0.4820 +3449 53832 0.6500 +3449 53833 0.6500 +3449 54106 0.4210 +3449 57506 0.4200 +3449 57864 0.4810 +3449 58985 0.6500 +3449 59272 0.4670 +3449 64135 0.5440 +3449 79132 0.4440 +3449 79621 0.5550 +3449 81608 0.5070 +3449 84153 0.5360 +3449 116379 0.6500 +3449 149233 0.6830 +3449 163702 0.6850 +3449 282616 0.4060 +3449 282617 0.7070 +3449 282618 0.4820 +3451 3452 0.6430 +3451 3454 0.9940 +3451 3455 0.9370 +3451 3456 0.7500 +3451 3458 0.9240 +3451 3459 0.9040 +3451 3460 0.5140 +3451 3552 0.5760 +3451 3553 0.6140 +3451 3558 0.8530 +3451 3559 0.7440 +3451 3560 0.6890 +3451 3561 0.7120 +3451 3563 0.8500 +3451 3565 0.6390 +3451 3566 0.7010 +3451 3567 0.4310 +3451 3568 0.6930 +3451 3569 0.8140 +3451 3570 0.7160 +3451 3572 0.6800 +3451 3575 0.7200 +3451 3576 0.5140 +3451 3581 0.6620 +3451 3586 0.7220 +3451 3587 0.7080 +3451 3588 0.7440 +3451 3590 0.6700 +3451 3594 0.8130 +3451 3595 0.7780 +3451 3596 0.4020 +3451 3597 0.6620 +3451 3598 0.6720 +3451 3600 0.4170 +3451 3605 0.4880 +3451 3606 0.4320 +3451 3627 0.5500 +3451 3630 0.4320 +3451 3654 0.4820 +3451 3659 0.8280 +3451 3660 0.7820 +3451 3661 0.8850 +3451 3665 0.9270 +3451 3669 0.4390 +3451 3716 0.8640 +3451 3717 0.8210 +3451 3718 0.7100 +3451 3815 0.4770 +3451 3836 0.5140 +3451 3953 0.6630 +3451 3977 0.6500 +3451 4332 0.4890 +3451 4352 0.7410 +3451 4507 0.5760 +3451 4599 0.7000 +3451 4600 0.5170 +3451 4790 0.8570 +3451 4938 0.6370 +3451 5156 0.7740 +3451 5159 0.7680 +3451 5610 0.4640 +3451 5618 0.6610 +3451 5770 0.4310 +3451 5777 0.4200 +3451 5781 0.4760 +3451 5937 0.4240 +3451 5970 0.7090 +3451 6041 0.5520 +3451 6217 0.4350 +3451 6347 0.4500 +3451 6750 0.5070 +3451 6772 0.8820 +3451 6773 0.8460 +3451 6774 0.5860 +3451 6775 0.4670 +3451 7098 0.7240 +3451 7099 0.6300 +3451 7100 0.4480 +3451 7124 0.8060 +3451 7157 0.6460 +3451 7189 0.4560 +3451 7297 0.7910 +3451 8192 0.4800 +3451 8388 0.4300 +3451 8519 0.5830 +3451 8651 0.6180 +3451 8829 0.4560 +3451 9021 0.6240 +3451 9180 0.6500 +3451 9466 0.6690 +3451 9636 0.6860 +3451 9638 0.4100 +3451 10379 0.8440 +3451 10410 0.6390 +3451 10581 0.5670 +3451 11274 0.5620 +3451 23586 0.7190 +3451 29126 0.4860 +3451 50615 0.6740 +3451 51135 0.5150 +3451 51284 0.7810 +3451 51311 0.6400 +3451 53832 0.6550 +3451 53833 0.6500 +3451 54106 0.7440 +3451 54807 0.7810 +3451 58985 0.6600 +3451 59272 0.4930 +3451 64135 0.6650 +3451 64222 0.4240 +3451 81608 0.4780 +3451 81622 0.4310 +3451 91543 0.6350 +3451 116379 0.6580 +3451 149233 0.6920 +3451 163702 0.7480 +3451 282616 0.4820 +3451 282617 0.7010 +3451 282618 0.7110 +3451 283897 0.6260 +3451 375323 0.4960 +3452 3454 0.9720 +3452 3455 0.8440 +3452 3456 0.7660 +3452 3458 0.7810 +3452 3459 0.8340 +3452 3460 0.5010 +3452 3467 0.5520 +3452 3552 0.5140 +3452 3553 0.5870 +3452 3558 0.8580 +3452 3559 0.7180 +3452 3560 0.6850 +3452 3561 0.7090 +3452 3563 0.7160 +3452 3565 0.4840 +3452 3566 0.6890 +3452 3567 0.4090 +3452 3568 0.6980 +3452 3569 0.6780 +3452 3570 0.7070 +3452 3572 0.6720 +3452 3575 0.7020 +3452 3576 0.4650 +3452 3581 0.6580 +3452 3586 0.5660 +3452 3587 0.6820 +3452 3588 0.7120 +3452 3590 0.6620 +3452 3594 0.6740 +3452 3595 0.6780 +3452 3597 0.6620 +3452 3598 0.6720 +3452 3605 0.4470 +3452 3627 0.4630 +3452 3630 0.4440 +3452 3659 0.7650 +3452 3660 0.7610 +3452 3661 0.7610 +3452 3662 0.4220 +3452 3665 0.7740 +3452 3704 0.5450 +3452 3716 0.7800 +3452 3717 0.8210 +3452 3718 0.7110 +3452 3791 0.5510 +3452 3815 0.4840 +3452 3836 0.4990 +3452 3953 0.6630 +3452 3977 0.6500 +3452 4332 0.5070 +3452 4352 0.7420 +3452 4507 0.5010 +3452 4599 0.6100 +3452 4600 0.5880 +3452 4790 0.7690 +3452 5156 0.7820 +3452 5159 0.7730 +3452 5228 0.4770 +3452 5618 0.6520 +3452 5770 0.4300 +3452 5777 0.4230 +3452 5781 0.4700 +3452 5970 0.6850 +3452 6041 0.4900 +3452 6750 0.5270 +3452 6772 0.7270 +3452 6773 0.6620 +3452 7010 0.4270 +3452 7098 0.6290 +3452 7124 0.6290 +3452 7157 0.4490 +3452 7297 0.6380 +3452 8651 0.5760 +3452 9021 0.5910 +3452 9172 0.4870 +3452 9180 0.6500 +3452 9466 0.6630 +3452 9636 0.8760 +3452 10379 0.7230 +3452 10535 0.5340 +3452 10561 0.4670 +3452 10964 0.4350 +3452 23586 0.5600 +3452 29126 0.4600 +3452 50615 0.6720 +3452 51284 0.4830 +3452 53832 0.6500 +3452 53833 0.6500 +3452 54106 0.4200 +3452 57864 0.4810 +3452 58985 0.6560 +3452 59272 0.4720 +3452 64135 0.5570 +3452 79132 0.4460 +3452 79621 0.5550 +3452 81608 0.5070 +3452 84153 0.5360 +3452 116379 0.6500 +3452 126206 0.4180 +3452 149233 0.6830 +3452 163702 0.6850 +3452 282616 0.4080 +3452 282617 0.6850 +3452 282618 0.4350 +3454 3455 0.9990 +3454 3456 0.9990 +3454 3458 0.9890 +3454 3459 0.9920 +3454 3460 0.8170 +3454 3467 0.9970 +3454 3551 0.4340 +3454 3552 0.4890 +3454 3553 0.6360 +3454 3554 0.6790 +3454 3558 0.8090 +3454 3562 0.7350 +3454 3563 0.5020 +3454 3565 0.8550 +3454 3566 0.6970 +3454 3567 0.7680 +3454 3569 0.8720 +3454 3570 0.5750 +3454 3574 0.7770 +3454 3576 0.4360 +3454 3578 0.7190 +3454 3586 0.9080 +3454 3587 0.5400 +3454 3588 0.4820 +3454 3589 0.7440 +3454 3592 0.6850 +3454 3593 0.7090 +3454 3594 0.6140 +3454 3596 0.7680 +3454 3600 0.8100 +3454 3605 0.4840 +3454 3606 0.7130 +3454 3620 0.4060 +3454 3627 0.6380 +3454 3654 0.4210 +3454 3659 0.7020 +3454 3660 0.5560 +3454 3661 0.8480 +3454 3663 0.6920 +3454 3665 0.8040 +3454 3669 0.5080 +3454 3684 0.7070 +3454 3687 0.5970 +3454 3716 0.9990 +3454 3717 0.9650 +3454 3718 0.9330 +3454 3815 0.6990 +3454 3836 0.6440 +3454 3952 0.6710 +3454 3976 0.6940 +3454 4283 0.5020 +3454 4318 0.7360 +3454 4332 0.4670 +3454 4599 0.7340 +3454 4600 0.5910 +3454 4790 0.4640 +3454 4938 0.6680 +3454 4939 0.5820 +3454 4940 0.5140 +3454 5008 0.6910 +3454 5154 0.6540 +3454 5155 0.6710 +3454 5295 0.6410 +3454 5579 0.4430 +3454 5610 0.7090 +3454 5617 0.7200 +3454 5627 0.4450 +3454 5724 0.4760 +3454 5770 0.6910 +3454 5777 0.5020 +3454 5781 0.6980 +3454 5788 0.5970 +3454 5896 0.4520 +3454 6041 0.6640 +3454 6347 0.5330 +3454 6348 0.4550 +3454 6373 0.6120 +3454 6772 0.9980 +3454 6773 0.9990 +3454 6774 0.9060 +3454 6775 0.8620 +3454 6776 0.4140 +3454 6777 0.4490 +3454 6778 0.5930 +3454 6908 0.4350 +3454 7048 0.4380 +3454 7066 0.6840 +3454 7096 0.4200 +3454 7097 0.5800 +3454 7098 0.7470 +3454 7099 0.6650 +3454 7100 0.4680 +3454 7124 0.6480 +3454 7132 0.6310 +3454 7133 0.4700 +3454 7187 0.5370 +3454 7189 0.5030 +3454 7297 0.9990 +3454 7301 0.7330 +3454 7706 0.5400 +3454 7850 0.6460 +3454 8519 0.4910 +3454 8638 0.5230 +3454 8651 0.9880 +3454 8737 0.5130 +3454 8945 0.7940 +3454 9021 0.8840 +3454 9172 0.4240 +3454 9447 0.5370 +3454 9636 0.8120 +3454 9641 0.6150 +3454 10010 0.6480 +3454 10045 0.5060 +3454 10196 0.4990 +3454 10379 0.9340 +3454 10399 0.9700 +3454 10401 0.4480 +3454 10410 0.5470 +3454 10461 0.6110 +3454 10561 0.4730 +3454 10673 0.4360 +3454 11009 0.6930 +3454 11035 0.4240 +3454 11274 0.7920 +3454 11277 0.6760 +3454 22926 0.4390 +3454 23291 0.6500 +3454 23586 0.7910 +3454 23765 0.5610 +3454 24138 0.4010 +3454 25865 0.4040 +3454 25939 0.6880 +3454 29110 0.7350 +3454 29126 0.4890 +3454 29949 0.6990 +3454 30009 0.4140 +3454 50604 0.6720 +3454 50616 0.8670 +3454 50943 0.4160 +3454 51284 0.7380 +3454 51311 0.5810 +3454 51561 0.7080 +3454 53342 0.6680 +3454 54106 0.6670 +3454 55509 0.4390 +3454 56832 0.9970 +3454 57506 0.7810 +3454 58985 0.5170 +3454 59067 0.7620 +3454 59272 0.4480 +3454 64127 0.4780 +3454 64135 0.7790 +3454 79132 0.6190 +3454 79184 0.4630 +3454 80143 0.4050 +3454 80381 0.4460 +3454 81622 0.5070 +3454 83666 0.4850 +3454 85480 0.7120 +3454 91543 0.6180 +3454 114548 0.4240 +3454 114609 0.4210 +3454 115004 0.7110 +3454 148022 0.5530 +3454 163702 0.9660 +3454 169355 0.5110 +3454 170482 0.4190 +3454 282616 0.9530 +3454 282617 0.9400 +3454 282618 0.9510 +3454 284697 0.4300 +3454 338376 0.9970 +3454 340061 0.6040 +3455 3456 0.9990 +3455 3458 0.9860 +3455 3459 0.9920 +3455 3460 0.8930 +3455 3467 0.9970 +3455 3552 0.6020 +3455 3553 0.5080 +3455 3554 0.7000 +3455 3558 0.7910 +3455 3562 0.7040 +3455 3565 0.8660 +3455 3567 0.7420 +3455 3569 0.8280 +3455 3574 0.7400 +3455 3576 0.6180 +3455 3578 0.7090 +3455 3586 0.8850 +3455 3587 0.6880 +3455 3588 0.9470 +3455 3589 0.6720 +3455 3592 0.6500 +3455 3593 0.6650 +3455 3596 0.7410 +3455 3600 0.7690 +3455 3627 0.4780 +3455 3659 0.6290 +3455 3660 0.4260 +3455 3661 0.6860 +3455 3663 0.4990 +3455 3665 0.7000 +3455 3669 0.4290 +3455 3716 0.9990 +3455 3717 0.9680 +3455 3718 0.9350 +3455 3836 0.5940 +3455 3952 0.6630 +3455 3976 0.6610 +3455 4599 0.6280 +3455 4600 0.4510 +3455 4790 0.4490 +3455 4938 0.7870 +3455 4939 0.5780 +3455 4940 0.5950 +3455 5008 0.6750 +3455 5154 0.6500 +3455 5155 0.6680 +3455 5295 0.4110 +3455 5610 0.6080 +3455 5617 0.6500 +3455 5770 0.4520 +3455 5777 0.5020 +3455 5781 0.6910 +3455 6041 0.7410 +3455 6373 0.5690 +3455 6772 0.9980 +3455 6773 0.9970 +3455 6774 0.4690 +3455 6775 0.4490 +3455 7066 0.6610 +3455 7097 0.4520 +3455 7098 0.6200 +3455 7099 0.5080 +3455 7124 0.5470 +3455 7132 0.6170 +3455 7297 0.9990 +3455 7850 0.5150 +3455 8519 0.4200 +3455 8638 0.4260 +3455 8651 0.7190 +3455 9021 0.6940 +3455 9402 0.5830 +3455 9636 0.6590 +3455 9641 0.5040 +3455 9966 0.4950 +3455 10045 0.4040 +3455 10048 0.4310 +3455 10379 0.9140 +3455 10399 0.9760 +3455 10410 0.4070 +3455 11009 0.7000 +3455 11274 0.9990 +3455 23586 0.6400 +3455 23765 0.5620 +3455 29110 0.5890 +3455 29949 0.7050 +3455 50604 0.6500 +3455 50616 0.8220 +3455 51135 0.4090 +3455 51284 0.6160 +3455 51311 0.4960 +3455 51561 0.6690 +3455 53342 0.6500 +3455 54106 0.5120 +3455 54585 0.5220 +3455 54716 0.4560 +3455 56832 0.9910 +3455 57506 0.5960 +3455 58985 0.5170 +3455 59067 0.6730 +3455 64135 0.6300 +3455 79132 0.4560 +3455 81622 0.4330 +3455 84256 0.4900 +3455 85480 0.6800 +3455 91039 0.5850 +3455 91543 0.4480 +3455 115004 0.5190 +3455 148022 0.4410 +3455 163702 0.8280 +3455 282616 0.8970 +3455 282617 0.8470 +3455 282618 0.9080 +3455 338376 0.9950 +3456 3458 0.9500 +3456 3459 0.9400 +3456 3460 0.6660 +3456 3551 0.6050 +3456 3552 0.7500 +3456 3553 0.8810 +3456 3554 0.7470 +3456 3557 0.4780 +3456 3558 0.7300 +3456 3559 0.7780 +3456 3560 0.7290 +3456 3561 0.7330 +3456 3562 0.4810 +3456 3563 0.8480 +3456 3565 0.7200 +3456 3566 0.7760 +3456 3567 0.5850 +3456 3568 0.7020 +3456 3569 0.9220 +3456 3570 0.7950 +3456 3572 0.7090 +3456 3574 0.7210 +3456 3575 0.7700 +3456 3576 0.7310 +3456 3578 0.5020 +3456 3579 0.4070 +3456 3581 0.6750 +3456 3586 0.8090 +3456 3587 0.7730 +3456 3588 0.8640 +3456 3590 0.6740 +3456 3594 0.7770 +3456 3595 0.7550 +3456 3596 0.6220 +3456 3597 0.7320 +3456 3598 0.7060 +3456 3600 0.6170 +3456 3605 0.7180 +3456 3606 0.7170 +3456 3620 0.5940 +3456 3627 0.9140 +3456 3630 0.4660 +3456 3654 0.7800 +3456 3656 0.4960 +3456 3659 0.9340 +3456 3660 0.8560 +3456 3661 0.9850 +3456 3662 0.4640 +3456 3663 0.6800 +3456 3665 0.9780 +3456 3669 0.7000 +3456 3682 0.4330 +3456 3684 0.6200 +3456 3685 0.4760 +3456 3687 0.7260 +3456 3690 0.4880 +3456 3716 0.9320 +3456 3717 0.8450 +3456 3718 0.7760 +3456 3725 0.6080 +3456 3836 0.6650 +3456 3934 0.4550 +3456 3953 0.6810 +3456 3977 0.7010 +3456 4049 0.4830 +3456 4055 0.5760 +3456 4155 0.5380 +3456 4210 0.5830 +3456 4283 0.7410 +3456 4318 0.5100 +3456 4340 0.5880 +3456 4352 0.6630 +3456 4360 0.4160 +3456 4507 0.5720 +3456 4599 0.8210 +3456 4600 0.6360 +3456 4609 0.5130 +3456 4684 0.4480 +3456 4790 0.9280 +3456 4792 0.6520 +3456 4843 0.4790 +3456 4938 0.7490 +3456 4939 0.7050 +3456 4940 0.6450 +3456 5027 0.5450 +3456 5045 0.4350 +3456 5133 0.4320 +3456 5156 0.7190 +3456 5159 0.7120 +3456 5266 0.4630 +3456 5355 0.4310 +3456 5359 0.5410 +3456 5499 0.4450 +3456 5551 0.5060 +3456 5595 0.4710 +3456 5610 0.7940 +3456 5618 0.6750 +3456 5743 0.5220 +3456 5770 0.5010 +3456 5777 0.4910 +3456 5781 0.5670 +3456 5788 0.5810 +3456 5966 0.4760 +3456 5970 0.8340 +3456 5971 0.4340 +3456 6041 0.7190 +3456 6048 0.5160 +3456 6059 0.4120 +3456 6347 0.7290 +3456 6348 0.6860 +3456 6351 0.6350 +3456 6354 0.4590 +3456 6355 0.5040 +3456 6356 0.6410 +3456 6361 0.4120 +3456 6364 0.5220 +3456 6366 0.6830 +3456 6367 0.4360 +3456 6373 0.6460 +3456 6374 0.4300 +3456 6376 0.6860 +3456 6387 0.4340 +3456 6391 0.4100 +3456 6402 0.4090 +3456 6614 0.4670 +3456 6714 0.4490 +3456 6737 0.4710 +3456 6772 0.9540 +3456 6773 0.9470 +3456 6774 0.7410 +3456 6775 0.4760 +3456 6776 0.4840 +3456 6777 0.4940 +3456 6778 0.5440 +3456 6850 0.4560 +3456 6885 0.4160 +3456 7040 0.5060 +3456 7084 0.4470 +3456 7096 0.7660 +3456 7097 0.9100 +3456 7098 0.9950 +3456 7099 0.9980 +3456 7100 0.6470 +3456 7113 0.5420 +3456 7124 0.9190 +3456 7128 0.4420 +3456 7132 0.5770 +3456 7157 0.6900 +3456 7187 0.9620 +3456 7189 0.8950 +3456 7251 0.4060 +3456 7297 0.9560 +3456 7318 0.6170 +3456 7412 0.4770 +3456 7706 0.7540 +3456 7837 0.5150 +3456 7852 0.4690 +3456 8517 0.5470 +3456 8519 0.5780 +3456 8600 0.4220 +3456 8638 0.6720 +3456 8651 0.8230 +3456 8678 0.6140 +3456 8737 0.9720 +3456 8743 0.5140 +3456 8767 0.4800 +3456 8772 0.4780 +3456 8829 0.5260 +3456 9021 0.7860 +3456 9023 0.4050 +3456 9034 0.4340 +3456 9172 0.5070 +3456 9180 0.6730 +3456 9208 0.4160 +3456 9246 0.5720 +3456 9308 0.4570 +3456 9332 0.4550 +3456 9447 0.6590 +3456 9466 0.7460 +3456 9474 0.4180 +3456 9636 0.8870 +3456 9641 0.9420 +3456 10010 0.6640 +3456 10044 0.5270 +3456 10045 0.6200 +3456 10241 0.5810 +3456 10346 0.4290 +3456 10379 0.9550 +3456 10392 0.5730 +3456 10410 0.7520 +3456 10561 0.7780 +3456 10563 0.4200 +3456 10581 0.6790 +3456 10673 0.5420 +3456 10906 0.4240 +3456 10964 0.4650 +3456 11009 0.4550 +3456 11035 0.7890 +3456 11213 0.4840 +3456 11274 0.7850 +3456 11277 0.4680 +3456 22861 0.4550 +3456 22914 0.4320 +3456 23098 0.5170 +3456 23118 0.4470 +3456 23586 0.9610 +3456 23643 0.7550 +3456 24138 0.4920 +3456 25939 0.4770 +3456 29108 0.4250 +3456 29110 0.9720 +3456 29126 0.6200 +3456 30009 0.4740 +3456 30816 0.4880 +3456 30835 0.4790 +3456 50615 0.7160 +3456 50616 0.7380 +3456 50852 0.5070 +3456 50943 0.5810 +3456 51135 0.7650 +3456 51191 0.6490 +3456 51284 0.8910 +3456 51311 0.8350 +3456 51428 0.5940 +3456 51561 0.4150 +3456 51667 0.4350 +3456 53832 0.7050 +3456 53833 0.7050 +3456 54106 0.8740 +3456 54739 0.4100 +3456 54941 0.4120 +3456 55601 0.4630 +3456 55801 0.4180 +3456 56829 0.4260 +3456 56832 0.6600 +3456 57506 0.9430 +3456 58484 0.4800 +3456 58985 0.7380 +3456 59272 0.6710 +3456 60489 0.4510 +3456 64127 0.6300 +3456 64135 0.9460 +3456 64170 0.4170 +3456 64581 0.4730 +3456 79132 0.8690 +3456 79671 0.7300 +3456 79792 0.4360 +3456 80143 0.4950 +3456 80381 0.4780 +3456 81030 0.6990 +3456 81622 0.7490 +3456 81793 0.5190 +3456 81844 0.4570 +3456 84166 0.4100 +3456 84282 0.4590 +3456 84868 0.4160 +3456 85363 0.4830 +3456 85480 0.4340 +3456 87178 0.5300 +3456 90865 0.6550 +3456 91543 0.8410 +3456 112744 0.6050 +3456 114548 0.6160 +3456 114609 0.8560 +3456 115004 0.8030 +3456 115362 0.4210 +3456 116379 0.7080 +3456 127544 0.4230 +3456 136991 0.4370 +3456 137902 0.5150 +3456 148022 0.8240 +3456 149233 0.7440 +3456 163702 0.9200 +3456 169355 0.4800 +3456 170482 0.4470 +3456 170506 0.4310 +3456 197259 0.4570 +3456 246778 0.4180 +3456 282616 0.8220 +3456 282617 0.8040 +3456 282618 0.9620 +3456 338376 0.5860 +3456 340061 0.8910 +3456 353376 0.8300 +3456 400668 0.4360 +3456 405754 0.4070 +3456 439996 0.4420 +3456 730249 0.4380 +3458 3459 0.9990 +3458 3460 0.9990 +3458 3479 0.7540 +3458 3551 0.5800 +3458 3552 0.9710 +3458 3553 0.9980 +3458 3554 0.7260 +3458 3557 0.6710 +3458 3558 0.9900 +3458 3559 0.9670 +3458 3560 0.9340 +3458 3561 0.9100 +3458 3562 0.9830 +3458 3563 0.8470 +3458 3565 0.9900 +3458 3566 0.9620 +3458 3567 0.9600 +3458 3568 0.7660 +3458 3569 0.9830 +3458 3570 0.8960 +3458 3572 0.8650 +3458 3574 0.9000 +3458 3575 0.9260 +3458 3576 0.9610 +3458 3577 0.5990 +3458 3578 0.8380 +3458 3579 0.7170 +3458 3581 0.7470 +3458 3586 0.9950 +3458 3587 0.9120 +3458 3588 0.8370 +3458 3589 0.6740 +3458 3590 0.7160 +3458 3592 0.4610 +3458 3593 0.7400 +3458 3594 0.9550 +3458 3595 0.9490 +3458 3596 0.9610 +3458 3597 0.8600 +3458 3598 0.8760 +3458 3600 0.9390 +3458 3601 0.6220 +3458 3603 0.6060 +3458 3605 0.9780 +3458 3606 0.9490 +3458 3620 0.9300 +3458 3627 0.9590 +3458 3630 0.8130 +3458 3635 0.4110 +3458 3654 0.7450 +3458 3659 0.9170 +3458 3660 0.6920 +3458 3661 0.7980 +3458 3662 0.7000 +3458 3663 0.6000 +3458 3665 0.7780 +3458 3667 0.5970 +3458 3672 0.5350 +3458 3673 0.5770 +3458 3676 0.6920 +3458 3682 0.7700 +3458 3683 0.6570 +3458 3684 0.9200 +3458 3687 0.9280 +3458 3688 0.5110 +3458 3689 0.6200 +3458 3700 0.6100 +3458 3702 0.7870 +3458 3716 0.9930 +3458 3717 0.9980 +3458 3718 0.6410 +3458 3725 0.7110 +3458 3782 0.5180 +3458 3791 0.5230 +3458 3802 0.6350 +3458 3804 0.6070 +3458 3805 0.5340 +3458 3811 0.7490 +3458 3812 0.4650 +3458 3815 0.6090 +3458 3820 0.8260 +3458 3821 0.7860 +3458 3822 0.7220 +3458 3823 0.4800 +3458 3824 0.8700 +3458 3827 0.4370 +3458 3845 0.5430 +3458 3880 0.5550 +3458 3902 0.8770 +3458 3916 0.8030 +3458 3934 0.7250 +3458 3937 0.4620 +3458 3952 0.6710 +3458 3953 0.7780 +3458 3958 0.8440 +3458 3965 0.6770 +3458 3976 0.5430 +3458 3977 0.7340 +3458 4000 0.4480 +3458 4015 0.4880 +3458 4049 0.8610 +3458 4050 0.5390 +3458 4055 0.4930 +3458 4057 0.5920 +3458 4065 0.6030 +3458 4067 0.5470 +3458 4068 0.7990 +3458 4072 0.5110 +3458 4087 0.5390 +3458 4088 0.5770 +3458 4089 0.4100 +3458 4092 0.4590 +3458 4094 0.5820 +3458 4097 0.4400 +3458 4100 0.4340 +3458 4102 0.5440 +3458 4137 0.4730 +3458 4153 0.5090 +3458 4155 0.6670 +3458 4162 0.4020 +3458 4170 0.4580 +3458 4179 0.5230 +3458 4210 0.5910 +3458 4233 0.4050 +3458 4254 0.7010 +3458 4261 0.7640 +3458 4277 0.5880 +3458 4282 0.6310 +3458 4283 0.9480 +3458 4288 0.4120 +3458 4295 0.4550 +3458 4301 0.5060 +3458 4311 0.4160 +3458 4312 0.7060 +3458 4313 0.5870 +3458 4314 0.7250 +3458 4316 0.6380 +3458 4317 0.4720 +3458 4318 0.7510 +3458 4321 0.5190 +3458 4322 0.4540 +3458 4340 0.8230 +3458 4345 0.5430 +3458 4352 0.7310 +3458 4353 0.7890 +3458 4360 0.7900 +3458 4481 0.5310 +3458 4586 0.4900 +3458 4599 0.7920 +3458 4600 0.5110 +3458 4609 0.6590 +3458 4684 0.8630 +3458 4747 0.5510 +3458 4772 0.5400 +3458 4773 0.6840 +3458 4780 0.5150 +3458 4783 0.4780 +3458 4790 0.9320 +3458 4791 0.4410 +3458 4792 0.7140 +3458 4803 0.6070 +3458 4818 0.6600 +3458 4842 0.4480 +3458 4843 0.8620 +3458 4846 0.5100 +3458 4851 0.4710 +3458 4907 0.6590 +3458 4938 0.5510 +3458 4939 0.4920 +3458 4940 0.4290 +3458 4973 0.4690 +3458 5008 0.6990 +3458 5027 0.4560 +3458 5045 0.5020 +3458 5047 0.5210 +3458 5054 0.7200 +3458 5055 0.5020 +3458 5068 0.4300 +3458 5125 0.4030 +3458 5133 0.9150 +3458 5141 0.4070 +3458 5155 0.4440 +3458 5156 0.7840 +3458 5158 0.5640 +3458 5159 0.7970 +3458 5175 0.6560 +3458 5196 0.5530 +3458 5197 0.4060 +3458 5228 0.4740 +3458 5265 0.4320 +3458 5268 0.4090 +3458 5284 0.4720 +3458 5293 0.4020 +3458 5294 0.5770 +3458 5327 0.4470 +3458 5328 0.4300 +3458 5340 0.4900 +3458 5443 0.5220 +3458 5465 0.5740 +3458 5467 0.4110 +3458 5468 0.6710 +3458 5473 0.7550 +3458 5551 0.9500 +3458 5566 0.4470 +3458 5567 0.4480 +3458 5568 0.4470 +3458 5580 0.5710 +3458 5588 0.4020 +3458 5594 0.6270 +3458 5595 0.8460 +3458 5599 0.6580 +3458 5600 0.4040 +3458 5601 0.5500 +3458 5604 0.4370 +3458 5610 0.7750 +3458 5617 0.4800 +3458 5618 0.7010 +3458 5657 0.5220 +3458 5690 0.4070 +3458 5693 0.5530 +3458 5694 0.4570 +3458 5696 0.8840 +3458 5698 0.8800 +3458 5699 0.7440 +3458 5720 0.9750 +3458 5721 0.9600 +3458 5728 0.5960 +3458 5734 0.4980 +3458 5743 0.8160 +3458 5770 0.5770 +3458 5771 0.4970 +3458 5777 0.5850 +3458 5781 0.7160 +3458 5788 0.9240 +3458 5806 0.4170 +3458 5817 0.5710 +3458 5819 0.4790 +3458 5896 0.7410 +3458 5919 0.5110 +3458 5949 0.5120 +3458 5966 0.6960 +3458 5970 0.5850 +3458 5971 0.5140 +3458 5972 0.5530 +3458 6036 0.4080 +3458 6037 0.5070 +3458 6041 0.4750 +3458 6095 0.4110 +3458 6097 0.7820 +3458 6198 0.4320 +3458 6279 0.4590 +3458 6280 0.4050 +3458 6283 0.4130 +3458 6285 0.4740 +3458 6288 0.4470 +3458 6289 0.4350 +3458 6346 0.6040 +3458 6347 0.9380 +3458 6348 0.9470 +3458 6351 0.9420 +3458 6354 0.7240 +3458 6355 0.6770 +3458 6356 0.9790 +3458 6357 0.6200 +3458 6359 0.4460 +3458 6360 0.4120 +3458 6361 0.7640 +3458 6362 0.6470 +3458 6363 0.7970 +3458 6364 0.8200 +3458 6366 0.8980 +3458 6367 0.7650 +3458 6368 0.4850 +3458 6369 0.6450 +3458 6370 0.4880 +3458 6372 0.5230 +3458 6373 0.8350 +3458 6374 0.8030 +3458 6375 0.7350 +3458 6376 0.9230 +3458 6382 0.5860 +3458 6387 0.7130 +3458 6401 0.6930 +3458 6402 0.8700 +3458 6403 0.6450 +3458 6404 0.6100 +3458 6441 0.4550 +3458 6490 0.6670 +3458 6504 0.7750 +3458 6513 0.4730 +3458 6556 0.6450 +3458 6590 0.4090 +3458 6614 0.5650 +3458 6622 0.4310 +3458 6647 0.4240 +3458 6688 0.5860 +3458 6693 0.5640 +3458 6696 0.7520 +3458 6714 0.6070 +3458 6737 0.4550 +3458 6772 0.9860 +3458 6773 0.7850 +3458 6774 0.9070 +3458 6775 0.9810 +3458 6776 0.8200 +3458 6777 0.8230 +3458 6778 0.9000 +3458 6793 0.4230 +3458 6846 0.5690 +3458 6850 0.5940 +3458 6862 0.4060 +3458 6863 0.5090 +3458 6868 0.5070 +3458 6892 0.6700 +3458 6908 0.4030 +3458 6932 0.5300 +3458 6999 0.5770 +3458 7010 0.4570 +3458 7037 0.6040 +3458 7038 0.4870 +3458 7039 0.5820 +3458 7040 0.8880 +3458 7042 0.5970 +3458 7043 0.5460 +3458 7046 0.4140 +3458 7048 0.5090 +3458 7052 0.4550 +3458 7056 0.5460 +3458 7057 0.4520 +3458 7062 0.5540 +3458 7066 0.4460 +3458 7070 0.6900 +3458 7076 0.7600 +3458 7077 0.4740 +3458 7082 0.5980 +3458 7084 0.4390 +3458 7096 0.7040 +3458 7097 0.9180 +3458 7098 0.8840 +3458 7099 0.9460 +3458 7100 0.7690 +3458 7113 0.5570 +3458 7122 0.4750 +3458 7124 0.9910 +3458 7128 0.4970 +3458 7130 0.5040 +3458 7132 0.9190 +3458 7133 0.8010 +3458 7157 0.8340 +3458 7173 0.4130 +3458 7185 0.4260 +3458 7187 0.4730 +3458 7189 0.8310 +3458 7276 0.4680 +3458 7292 0.6690 +3458 7293 0.7330 +3458 7295 0.5030 +3458 7297 0.8780 +3458 7299 0.5110 +3458 7305 0.5410 +3458 7345 0.4630 +3458 7409 0.5880 +3458 7412 0.7480 +3458 7416 0.4670 +3458 7424 0.6500 +3458 7432 0.4180 +3458 7448 0.4070 +3458 7450 0.5150 +3458 7453 0.4440 +3458 7474 0.5560 +3458 7490 0.4330 +3458 7494 0.4610 +3458 7498 0.4230 +3458 7528 0.4020 +3458 7535 0.7520 +3458 7538 0.5810 +3458 7704 0.4830 +3458 7818 0.4820 +3458 7837 0.7820 +3458 7850 0.7760 +3458 7852 0.7110 +3458 8174 0.4470 +3458 8288 0.4590 +3458 8290 0.5180 +3458 8320 0.7860 +3458 8349 0.6020 +3458 8356 0.4960 +3458 8517 0.5960 +3458 8519 0.4700 +3458 8564 0.4030 +3458 8600 0.6290 +3458 8638 0.4560 +3458 8639 0.7760 +3458 8651 0.9170 +3458 8678 0.4760 +3458 8718 0.6560 +3458 8737 0.4540 +3458 8740 0.4720 +3458 8741 0.5180 +3458 8742 0.4730 +3458 8743 0.6330 +3458 8744 0.6230 +3458 8764 0.5340 +3458 8767 0.4190 +3458 8772 0.4500 +3458 8784 0.6940 +3458 8795 0.4800 +3458 8797 0.5720 +3458 8807 0.5830 +3458 8809 0.6470 +3458 8817 0.5800 +3458 8822 0.5790 +3458 8823 0.5850 +3458 8829 0.8330 +3458 8832 0.4020 +3458 8835 0.4380 +3458 8837 0.4790 +3458 8842 0.4320 +3458 8942 0.4290 +3458 8988 0.4380 +3458 8995 0.4230 +3458 9021 0.8860 +3458 9034 0.8530 +3458 9075 0.4490 +3458 9076 0.5520 +3458 9168 0.4470 +3458 9172 0.4790 +3458 9173 0.5130 +3458 9180 0.7220 +3458 9235 0.6920 +3458 9308 0.7400 +3458 9314 0.4030 +3458 9332 0.7510 +3458 9370 0.5880 +3458 9398 0.4050 +3458 9436 0.7970 +3458 9437 0.8900 +3458 9447 0.5950 +3458 9451 0.4470 +3458 9466 0.9000 +3458 9474 0.4810 +3458 9516 0.4140 +3458 9536 0.4160 +3458 9560 0.5670 +3458 9567 0.5140 +3458 9636 0.6780 +3458 9641 0.4660 +3458 9817 0.4590 +3458 9966 0.6460 +3458 10004 0.5840 +3458 10018 0.5140 +3458 10068 0.7390 +3458 10197 0.9310 +3458 10219 0.7960 +3458 10225 0.5300 +3458 10232 0.5100 +3458 10288 0.4760 +3458 10320 0.4500 +3458 10344 0.5440 +3458 10365 0.4230 +3458 10379 0.7500 +3458 10392 0.5730 +3458 10406 0.4360 +3458 10410 0.6350 +3458 10437 0.4190 +3458 10461 0.4520 +3458 10462 0.4660 +3458 10475 0.4430 +3458 10537 0.6450 +3458 10538 0.6070 +3458 10561 0.6280 +3458 10563 0.7100 +3458 10578 0.7310 +3458 10581 0.5400 +3458 10630 0.4340 +3458 10663 0.7120 +3458 10666 0.6960 +3458 10673 0.7650 +3458 10763 0.4930 +3458 10803 0.5960 +3458 10850 0.5400 +3458 10859 0.5950 +3458 10870 0.5020 +3458 10894 0.4200 +3458 10989 0.4610 +3458 11006 0.4470 +3458 11009 0.5670 +3458 11035 0.4390 +3458 11082 0.4460 +3458 11119 0.4500 +3458 11126 0.6610 +3458 11213 0.4480 +3458 11251 0.5070 +3458 11274 0.4430 +3458 22806 0.4170 +3458 22807 0.4160 +3458 22861 0.4740 +3458 22914 0.8410 +3458 23308 0.6040 +3458 23411 0.5960 +3458 23495 0.7340 +3458 23521 0.6040 +3458 23586 0.6930 +3458 23604 0.5070 +3458 23643 0.5550 +3458 23705 0.4850 +3458 23765 0.6250 +3458 25939 0.5860 +3458 26191 0.5020 +3458 26253 0.5370 +3458 26281 0.5830 +3458 26525 0.5720 +3458 27006 0.5970 +3458 27087 0.7070 +3458 27141 0.5260 +3458 27159 0.4480 +3458 27177 0.4950 +3458 27178 0.5670 +3458 27179 0.4250 +3458 27189 0.4760 +3458 27190 0.4120 +3458 27294 0.4320 +3458 28998 0.4390 +3458 29108 0.4380 +3458 29110 0.5690 +3458 29121 0.6420 +3458 29126 0.8990 +3458 29851 0.8940 +3458 29949 0.5440 +3458 30009 0.9640 +3458 30816 0.6590 +3458 30835 0.7680 +3458 50489 0.5450 +3458 50507 0.4060 +3458 50615 0.8720 +3458 50616 0.9390 +3458 50848 0.4020 +3458 50852 0.4130 +3458 50943 0.9820 +3458 51043 0.4030 +3458 51135 0.6700 +3458 51284 0.8670 +3458 51311 0.7220 +3458 51348 0.5280 +3458 51497 0.7200 +3458 51554 0.4790 +3458 51561 0.7300 +3458 51744 0.6310 +3458 51752 0.6760 +3458 51806 0.4450 +3458 53832 0.8050 +3458 53833 0.7480 +3458 54106 0.8910 +3458 54205 0.5700 +3458 54209 0.7050 +3458 54210 0.5280 +3458 55054 0.4470 +3458 55236 0.4020 +3458 55509 0.6230 +3458 55540 0.4610 +3458 55801 0.6250 +3458 56253 0.5020 +3458 56300 0.4440 +3458 56667 0.4060 +3458 56729 0.6900 +3458 56832 0.5430 +3458 56893 0.4080 +3458 57379 0.4370 +3458 57506 0.5420 +3458 57509 0.6230 +3458 57817 0.4780 +3458 57823 0.5460 +3458 58191 0.5840 +3458 58484 0.5460 +3458 58985 0.7980 +3458 59067 0.7470 +3458 59272 0.7240 +3458 60489 0.4420 +3458 64127 0.7700 +3458 64135 0.6310 +3458 64167 0.5390 +3458 64170 0.6780 +3458 64332 0.4070 +3458 64581 0.6850 +3458 64806 0.5440 +3458 65258 0.5110 +3458 79132 0.4610 +3458 79143 0.4310 +3458 79465 0.4700 +3458 79679 0.4840 +3458 79792 0.4370 +3458 80008 0.4620 +3458 80142 0.4470 +3458 80321 0.4690 +3458 80328 0.5080 +3458 80329 0.5350 +3458 80380 0.8340 +3458 80381 0.7800 +3458 80712 0.4200 +3458 80781 0.5890 +3458 81603 0.4190 +3458 81793 0.4980 +3458 83666 0.5010 +3458 84166 0.4590 +3458 84639 0.4410 +3458 84666 0.7470 +3458 84674 0.4610 +3458 84706 0.5070 +3458 84818 0.4320 +3458 84868 0.8850 +3458 85451 0.4180 +3458 85480 0.7950 +3458 89782 0.4720 +3458 90865 0.7780 +3458 91543 0.5040 +3458 91860 0.4450 +3458 91937 0.4960 +3458 93978 0.5160 +3458 112744 0.8820 +3458 114548 0.6690 +3458 114609 0.4770 +3458 114836 0.5310 +3458 115004 0.5990 +3458 115352 0.4950 +3458 115361 0.6040 +3458 115362 0.7430 +3458 115650 0.4710 +3458 116071 0.4220 +3458 116379 0.7620 +3458 117157 0.4040 +3458 130120 0.5610 +3458 131450 0.5570 +3458 133418 0.4320 +3458 137902 0.7820 +3458 140885 0.6060 +3458 146433 0.4330 +3458 149233 0.9590 +3458 151636 0.4680 +3458 151888 0.6210 +3458 163351 0.5340 +3458 163688 0.4450 +3458 163702 0.8930 +3458 168400 0.6670 +3458 169355 0.8750 +3458 170482 0.5160 +3458 171389 0.4070 +3458 197259 0.4360 +3458 200081 0.5780 +3458 201633 0.7670 +3458 246778 0.6870 +3458 257101 0.4440 +3458 257202 0.5490 +3458 259197 0.8160 +3458 282616 0.7310 +3458 282617 0.7360 +3458 282618 0.8630 +3458 283337 0.6700 +3458 283420 0.4900 +3458 284194 0.6360 +3458 338376 0.5180 +3458 338442 0.4420 +3458 345611 0.5540 +3458 374383 0.4920 +3458 386653 0.7340 +3458 388646 0.4970 +3458 388698 0.4620 +3458 405754 0.6190 +3458 414062 0.6480 +3458 414325 0.4470 +3458 440093 0.4810 +3458 440686 0.5010 +3458 493869 0.5750 +3458 653361 0.5030 +3458 653604 0.5010 +3458 654346 0.6360 +3458 728378 0.4500 +3458 730249 0.4770 +3458 100133941 0.6080 +3458 100289462 0.4160 +3458 100506658 0.7110 +3458 100526664 0.5940 +3458 102723407 0.4650 +3459 3460 0.9990 +3459 3467 0.7520 +3459 3480 0.4390 +3459 3552 0.4180 +3459 3553 0.5310 +3459 3554 0.6640 +3459 3558 0.8630 +3459 3559 0.6920 +3459 3560 0.5410 +3459 3561 0.5330 +3459 3562 0.7280 +3459 3565 0.8920 +3459 3566 0.7320 +3459 3567 0.8380 +3459 3569 0.9260 +3459 3570 0.7730 +3459 3572 0.6240 +3459 3574 0.8170 +3459 3576 0.4370 +3459 3578 0.7190 +3459 3586 0.9200 +3459 3587 0.7770 +3459 3588 0.8230 +3459 3589 0.7000 +3459 3592 0.7090 +3459 3593 0.8670 +3459 3594 0.8670 +3459 3595 0.7240 +3459 3596 0.8480 +3459 3597 0.7700 +3459 3600 0.7890 +3459 3605 0.7610 +3459 3606 0.4670 +3459 3620 0.4400 +3459 3627 0.5380 +3459 3659 0.6710 +3459 3660 0.4450 +3459 3661 0.5020 +3459 3663 0.5870 +3459 3665 0.5130 +3459 3684 0.4700 +3459 3687 0.4630 +3459 3716 0.9990 +3459 3717 0.9990 +3459 3718 0.9370 +3459 3836 0.5010 +3459 3845 0.9710 +3459 3952 0.6740 +3459 3976 0.6970 +3459 4283 0.4880 +3459 4296 0.4310 +3459 4599 0.4420 +3459 4790 0.4580 +3459 4843 0.5510 +3459 4854 0.4400 +3459 4893 0.9180 +3459 4938 0.4070 +3459 5008 0.7030 +3459 5133 0.5900 +3459 5154 0.6710 +3459 5155 0.6800 +3459 5156 0.4810 +3459 5290 0.9140 +3459 5291 0.9130 +3459 5293 0.9110 +3459 5295 0.9170 +3459 5296 0.9050 +3459 5580 0.4350 +3459 5610 0.4090 +3459 5617 0.6670 +3459 5770 0.4730 +3459 5777 0.5290 +3459 5781 0.5470 +3459 5788 0.5210 +3459 6241 0.4100 +3459 6556 0.6250 +3459 6772 0.9990 +3459 6773 0.7490 +3459 6774 0.8320 +3459 6775 0.6310 +3459 6776 0.6270 +3459 6777 0.6220 +3459 6778 0.6570 +3459 7037 0.4410 +3459 7066 0.6800 +3459 7096 0.4100 +3459 7097 0.5300 +3459 7098 0.4730 +3459 7099 0.6870 +3459 7124 0.7720 +3459 7132 0.8040 +3459 7133 0.6490 +3459 7297 0.9760 +3459 7850 0.4590 +3459 8503 0.9050 +3459 8651 0.9720 +3459 8718 0.4010 +3459 8795 0.6720 +3459 8809 0.4590 +3459 9021 0.8180 +3459 9173 0.4840 +3459 9466 0.6680 +3459 9636 0.5100 +3459 10099 0.4120 +3459 10379 0.6000 +3459 10479 0.4670 +3459 11009 0.7120 +3459 23586 0.4500 +3459 23765 0.4650 +3459 26020 0.4190 +3459 29110 0.4060 +3459 29126 0.5980 +3459 29949 0.7060 +3459 30009 0.6320 +3459 50604 0.6500 +3459 50615 0.5530 +3459 50616 0.7710 +3459 50943 0.4330 +3459 51284 0.4180 +3459 51311 0.4200 +3459 51561 0.7050 +3459 53342 0.6680 +3459 53833 0.5350 +3459 54209 0.4620 +3459 54210 0.4790 +3459 55801 0.5750 +3459 56300 0.4740 +3459 56832 0.8160 +3459 58480 0.4870 +3459 58985 0.6770 +3459 59067 0.7120 +3459 64135 0.4450 +3459 64755 0.4460 +3459 80762 0.5110 +3459 83666 0.4120 +3459 84125 0.4240 +3459 84818 0.5690 +3459 84888 0.4050 +3459 85480 0.7060 +3459 112744 0.5620 +3459 116379 0.5690 +3459 135250 0.5010 +3459 163702 0.6710 +3459 246778 0.5260 +3459 282616 0.8470 +3459 282617 0.8500 +3459 282618 0.8550 +3459 338376 0.8250 +3459 345611 0.5360 +3460 3553 0.4430 +3460 3554 0.4830 +3460 3566 0.6170 +3460 3569 0.4500 +3460 3586 0.4450 +3460 3587 0.6590 +3460 3593 0.6320 +3460 3594 0.9000 +3460 3595 0.6640 +3460 3597 0.7080 +3460 3606 0.5080 +3460 3627 0.4670 +3460 3659 0.6420 +3460 3665 0.6210 +3460 3716 0.9980 +3460 3717 0.9990 +3460 4283 0.4590 +3460 4360 0.4370 +3460 4513 0.5260 +3460 4514 0.4720 +3460 4519 0.4110 +3460 4599 0.6080 +3460 4783 0.4080 +3460 5175 0.4070 +3460 5580 0.5180 +3460 5770 0.4770 +3460 5777 0.5240 +3460 5781 0.5370 +3460 5788 0.4010 +3460 6390 0.4420 +3460 6556 0.5510 +3460 6772 0.9120 +3460 6773 0.8400 +3460 6774 0.4510 +3460 6775 0.5700 +3460 7124 0.4760 +3460 7132 0.5020 +3460 7133 0.6110 +3460 7297 0.8030 +3460 7381 0.9080 +3460 7384 0.7700 +3460 7385 0.9140 +3460 7386 0.8660 +3460 8651 0.7190 +3460 8809 0.6670 +3460 9021 0.7500 +3460 9093 0.7380 +3460 9173 0.4710 +3460 9377 0.6590 +3460 9466 0.4080 +3460 9512 0.7690 +3460 9582 0.4260 +3460 9636 0.5160 +3460 10379 0.7030 +3460 22861 0.4250 +3460 23203 0.6440 +3460 23645 0.4370 +3460 27089 0.9240 +3460 27350 0.4260 +3460 29796 0.8540 +3460 29851 0.5600 +3460 50616 0.5590 +3460 54205 0.4880 +3460 55801 0.5250 +3460 56832 0.4780 +3460 57379 0.4490 +3460 58985 0.4020 +3460 60489 0.4300 +3460 64111 0.4730 +3460 79002 0.5690 +3460 81341 0.4110 +3460 84701 0.6110 +3460 84886 0.5990 +3460 84888 0.4620 +3460 91300 0.4370 +3460 125965 0.5690 +3460 140564 0.4260 +3460 163702 0.7760 +3460 164668 0.4260 +3460 200315 0.4340 +3460 200316 0.4260 +3460 282616 0.4740 +3460 282617 0.4770 +3460 282618 0.4480 +3460 283459 0.5110 +3460 338376 0.4860 +3460 345611 0.4130 +3460 388753 0.5690 +3467 3559 0.6740 +3467 3560 0.6500 +3467 3561 0.6740 +3467 3563 0.6500 +3467 3566 0.6590 +3467 3568 0.6670 +3467 3570 0.6770 +3467 3572 0.6500 +3467 3575 0.6560 +3467 3581 0.6630 +3467 3587 0.6620 +3467 3588 0.8160 +3467 3590 0.6500 +3467 3594 0.7750 +3467 3595 0.6500 +3467 3597 0.6710 +3467 3598 0.6620 +3467 3605 0.4180 +3467 3953 0.6500 +3467 3977 0.6500 +3467 4051 0.4130 +3467 4352 0.6590 +3467 4507 0.6720 +3467 5156 0.6590 +3467 5159 0.6540 +3467 5618 0.6530 +3467 7047 0.4100 +3467 9180 0.6560 +3467 9466 0.6500 +3467 9636 0.4650 +3467 10399 0.4280 +3467 50615 0.6560 +3467 53832 0.6500 +3467 53833 0.6500 +3467 58985 0.6800 +3467 84659 0.4120 +3467 116379 0.6520 +3467 126206 0.4410 +3467 149233 0.6540 +3467 163702 0.7980 +3467 204474 0.4060 +3467 282616 0.4800 +3467 282617 0.4760 +3467 282618 0.4630 +3475 3921 0.7570 +3475 4208 0.5560 +3475 4616 0.4900 +3475 4634 0.4060 +3475 4654 0.6050 +3475 4736 0.5260 +3475 5506 0.4190 +3475 5970 0.4780 +3475 6122 0.5420 +3475 6123 0.5590 +3475 6124 0.7510 +3475 6125 0.7530 +3475 6128 0.7520 +3475 6129 0.5200 +3475 6130 0.7510 +3475 6132 0.7690 +3475 6135 0.7500 +3475 6137 0.7500 +3475 6138 0.7500 +3475 6139 0.5280 +3475 6141 0.7500 +3475 6142 0.7700 +3475 6143 0.7500 +3475 6144 0.7510 +3475 6146 0.5090 +3475 6147 0.7500 +3475 6152 0.7500 +3475 6154 0.5170 +3475 6155 0.7510 +3475 6156 0.7500 +3475 6157 0.6290 +3475 6158 0.7500 +3475 6159 0.6550 +3475 6160 0.7790 +3475 6161 0.7500 +3475 6164 0.6600 +3475 6165 0.7500 +3475 6166 0.4560 +3475 6167 0.6600 +3475 6168 0.7500 +3475 6169 0.7670 +3475 6170 0.5170 +3475 6173 0.4570 +3475 6183 0.4830 +3475 6187 0.7530 +3475 6188 0.7500 +3475 6189 0.7520 +3475 6191 0.4790 +3475 6192 0.4790 +3475 6193 0.6600 +3475 6194 0.7530 +3475 6201 0.7680 +3475 6202 0.7500 +3475 6203 0.7580 +3475 6204 0.5100 +3475 6205 0.7500 +3475 6206 0.7510 +3475 6207 0.7500 +3475 6208 0.5110 +3475 6209 0.7500 +3475 6210 0.4630 +3475 6217 0.7550 +3475 6222 0.7500 +3475 6223 0.7500 +3475 6224 0.7580 +3475 6227 0.7730 +3475 6228 0.7540 +3475 6229 0.7520 +3475 6230 0.7500 +3475 6231 0.7590 +3475 6232 0.5170 +3475 6233 0.7520 +3475 6234 0.7580 +3475 6235 0.7500 +3475 6337 0.4890 +3475 6338 0.4970 +3475 6340 0.4730 +3475 7157 0.4650 +3475 7311 0.7500 +3475 8048 0.4030 +3475 8819 0.7160 +3475 9045 0.7500 +3475 9349 0.7500 +3475 9611 0.5590 +3475 9732 0.4900 +3475 10399 0.7500 +3475 11060 0.4040 +3475 11222 0.4450 +3475 11224 0.7500 +3475 23204 0.4670 +3475 23309 0.7690 +3475 23521 0.5170 +3475 23640 0.4660 +3475 25873 0.7750 +3475 28998 0.4260 +3475 29093 0.4300 +3475 51065 0.5170 +3475 51069 0.4600 +3475 51073 0.4030 +3475 51081 0.4340 +3475 51121 0.5170 +3475 51149 0.4760 +3475 51319 0.4830 +3475 55173 0.4730 +3475 55272 0.4650 +3475 55316 0.4760 +3475 57037 0.4320 +3475 63931 0.4160 +3475 64374 0.4180 +3475 64960 0.4180 +3475 64963 0.4340 +3475 64969 0.4980 +3475 65008 0.4390 +3475 79590 0.4180 +3475 84919 0.4300 +3475 114987 0.4760 +3475 116832 0.5180 +3475 118881 0.4530 +3475 126402 0.4220 +3475 140032 0.4790 +3475 140801 0.5300 +3475 200916 0.5130 +3475 254268 0.4650 +3475 285855 0.5210 +3475 347487 0.4870 +3475 387129 0.4160 +3475 100526842 0.5220 +3475 100529097 0.4560 +3475 100529239 0.5090 +3476 3479 0.4970 +3476 3481 0.4420 +3476 3676 0.7550 +3476 3678 0.4940 +3476 3680 0.4240 +3476 3688 0.7090 +3476 3689 0.5080 +3476 3695 0.5380 +3476 3840 0.4920 +3476 3910 0.6570 +3476 3911 0.4310 +3476 3930 0.5060 +3476 4057 0.4370 +3476 4199 0.4980 +3476 4254 0.4260 +3476 4281 0.9540 +3476 4790 0.4330 +3476 4868 0.4280 +3476 5470 0.4130 +3476 5475 0.4580 +3476 5499 0.4390 +3476 5500 0.4460 +3476 5501 0.4610 +3476 5515 0.9990 +3476 5516 0.9990 +3476 5518 0.4970 +3476 5519 0.4280 +3476 5520 0.4190 +3476 5524 0.6820 +3476 5530 0.4180 +3476 5531 0.9880 +3476 5532 0.4180 +3476 5533 0.4130 +3476 5537 0.9950 +3476 5792 0.4290 +3476 6370 0.6830 +3476 6451 0.4340 +3476 6717 0.4440 +3476 6950 0.5220 +3476 7203 0.5180 +3476 7412 0.9100 +3476 7534 0.4660 +3476 8174 0.8280 +3476 8973 0.6540 +3476 9267 0.4060 +3476 10345 0.4300 +3476 10574 0.7320 +3476 10575 0.6860 +3476 10576 0.7170 +3476 10694 0.4410 +3476 10803 0.6660 +3476 11043 0.8050 +3476 22948 0.5430 +3476 29934 0.4270 +3476 51248 0.4480 +3476 51366 0.5450 +3476 51451 0.5720 +3476 53947 0.4430 +3476 57521 0.9420 +3476 64223 0.9380 +3476 64798 0.9060 +3476 64976 0.4340 +3476 79608 0.4990 +3476 80781 0.5310 +3476 83700 0.4240 +3476 84335 0.9070 +3476 84945 0.4080 +3476 123099 0.4360 +3476 125893 0.4200 +3476 151987 0.5080 +3476 261726 0.8750 +3476 100529144 0.4220 +3479 3480 0.9990 +3479 3481 0.9980 +3479 3482 0.9950 +3479 3483 0.9990 +3479 3484 0.9990 +3479 3485 0.9990 +3479 3486 0.9990 +3479 3487 0.9990 +3479 3488 0.9990 +3479 3489 0.9990 +3479 3490 0.9950 +3479 3549 0.5360 +3479 3552 0.6640 +3479 3553 0.8470 +3479 3557 0.4410 +3479 3558 0.5090 +3479 3562 0.5100 +3479 3565 0.6310 +3479 3569 0.9130 +3479 3574 0.4310 +3479 3576 0.6090 +3479 3586 0.7160 +3479 3589 0.5060 +3479 3596 0.5100 +3479 3600 0.4630 +3479 3605 0.4790 +3479 3606 0.6290 +3479 3620 0.4030 +3479 3627 0.4260 +3479 3630 0.9990 +3479 3640 0.5670 +3479 3643 0.9990 +3479 3645 0.8900 +3479 3659 0.4970 +3479 3667 0.9980 +3479 3684 0.4880 +3479 3685 0.8480 +3479 3688 0.5000 +3479 3690 0.9610 +3479 3717 0.8290 +3479 3725 0.6360 +3479 3791 0.9140 +3479 3814 0.4460 +3479 3815 0.8600 +3479 3816 0.4600 +3479 3817 0.4830 +3479 3845 0.6980 +3479 3952 0.9070 +3479 3953 0.5800 +3479 3973 0.6510 +3479 3976 0.5720 +3479 3991 0.4030 +3479 4015 0.4770 +3479 4023 0.4590 +3479 4041 0.6390 +3479 4053 0.4040 +3479 4057 0.6220 +3479 4060 0.4680 +3479 4070 0.8150 +3479 4087 0.7160 +3479 4088 0.5060 +3479 4089 0.4450 +3479 4094 0.5780 +3479 4144 0.4100 +3479 4155 0.5280 +3479 4170 0.6040 +3479 4193 0.4760 +3479 4204 0.4470 +3479 4208 0.6260 +3479 4233 0.9080 +3479 4239 0.5380 +3479 4254 0.7410 +3479 4303 0.6870 +3479 4312 0.6690 +3479 4313 0.8090 +3479 4314 0.5220 +3479 4316 0.4520 +3479 4318 0.7670 +3479 4322 0.6760 +3479 4323 0.4330 +3479 4360 0.5520 +3479 4609 0.7310 +3479 4617 0.7350 +3479 4618 0.4800 +3479 4619 0.5080 +3479 4621 0.5140 +3479 4624 0.4780 +3479 4626 0.4590 +3479 4654 0.7250 +3479 4656 0.6760 +3479 4771 0.4350 +3479 4772 0.6150 +3479 4776 0.5310 +3479 4780 0.4530 +3479 4790 0.5790 +3479 4803 0.8400 +3479 4804 0.7900 +3479 4811 0.5590 +3479 4846 0.5260 +3479 4851 0.4800 +3479 4852 0.5700 +3479 4853 0.4800 +3479 4856 0.4840 +3479 4878 0.4510 +3479 4907 0.5110 +3479 4908 0.7300 +3479 4909 0.6440 +3479 4914 0.9900 +3479 4915 0.8900 +3479 4922 0.5150 +3479 4969 0.5140 +3479 5008 0.4160 +3479 5020 0.5110 +3479 5047 0.5470 +3479 5054 0.7330 +3479 5069 0.8900 +3479 5077 0.4550 +3479 5080 0.4270 +3479 5081 0.5840 +3479 5106 0.5240 +3479 5154 0.9490 +3479 5155 0.9490 +3479 5156 0.8890 +3479 5159 0.9260 +3479 5170 0.5650 +3479 5175 0.6140 +3479 5176 0.4610 +3479 5228 0.5290 +3479 5241 0.5780 +3479 5265 0.5340 +3479 5290 0.5120 +3479 5291 0.5880 +3479 5294 0.5920 +3479 5295 0.5240 +3479 5327 0.4010 +3479 5328 0.5210 +3479 5340 0.6730 +3479 5341 0.4420 +3479 5443 0.8520 +3479 5460 0.5210 +3479 5465 0.5500 +3479 5467 0.4180 +3479 5468 0.8280 +3479 5547 0.4020 +3479 5549 0.5270 +3479 5566 0.5490 +3479 5567 0.5560 +3479 5568 0.5480 +3479 5579 0.4640 +3479 5594 0.6210 +3479 5595 0.6970 +3479 5599 0.4790 +3479 5603 0.5490 +3479 5604 0.6770 +3479 5617 0.8890 +3479 5618 0.4580 +3479 5626 0.6830 +3479 5697 0.4300 +3479 5728 0.7950 +3479 5741 0.9110 +3479 5743 0.6040 +3479 5744 0.5720 +3479 5747 0.8470 +3479 5764 0.5730 +3479 5770 0.4180 +3479 5781 0.6380 +3479 5788 0.5820 +3479 5868 0.4780 +3479 5972 0.5710 +3479 6009 0.5190 +3479 6194 0.4860 +3479 6195 0.4470 +3479 6198 0.7330 +3479 6199 0.5870 +3479 6347 0.7600 +3479 6348 0.4430 +3479 6376 0.4480 +3479 6382 0.6010 +3479 6387 0.8450 +3479 6423 0.4470 +3479 6424 0.4230 +3479 6446 0.6860 +3479 6462 0.8610 +3479 6464 0.8900 +3479 6469 0.6280 +3479 6473 0.4470 +3479 6513 0.4760 +3479 6514 0.4180 +3479 6515 0.4300 +3479 6517 0.6290 +3479 6615 0.4470 +3479 6647 0.5030 +3479 6648 0.5860 +3479 6654 0.6720 +3479 6657 0.5120 +3479 6662 0.5810 +3479 6678 0.4780 +3479 6696 0.6160 +3479 6714 0.8500 +3479 6720 0.6600 +3479 6750 0.7860 +3479 6752 0.4820 +3479 6755 0.4730 +3479 6770 0.4060 +3479 6772 0.4470 +3479 6774 0.8450 +3479 6776 0.6660 +3479 6777 0.7390 +3479 6794 0.4790 +3479 6855 0.6170 +3479 6863 0.4660 +3479 7010 0.8740 +3479 7037 0.5750 +3479 7038 0.4450 +3479 7039 0.9800 +3479 7040 0.9760 +3479 7042 0.7400 +3479 7043 0.6260 +3479 7046 0.4590 +3479 7048 0.4900 +3479 7057 0.6580 +3479 7058 0.5330 +3479 7070 0.5540 +3479 7076 0.5860 +3479 7077 0.4790 +3479 7078 0.5400 +3479 7097 0.5250 +3479 7099 0.5830 +3479 7124 0.8370 +3479 7130 0.4180 +3479 7132 0.6070 +3479 7157 0.7200 +3479 7189 0.5670 +3479 7200 0.7150 +3479 7201 0.4460 +3479 7248 0.4320 +3479 7249 0.5850 +3479 7253 0.4490 +3479 7276 0.5150 +3479 7301 0.4930 +3479 7350 0.4470 +3479 7373 0.6320 +3479 7412 0.6830 +3479 7423 0.4290 +3479 7424 0.6610 +3479 7448 0.9890 +3479 7450 0.5230 +3479 7472 0.5990 +3479 7474 0.7370 +3479 7837 0.6380 +3479 7852 0.7170 +3479 8074 0.5280 +3479 8200 0.5000 +3479 8290 0.4140 +3479 8356 0.4140 +3479 8425 0.4610 +3479 8471 0.7420 +3479 8483 0.6180 +3479 8600 0.8040 +3479 8651 0.4520 +3479 8660 0.9840 +3479 8678 0.4890 +3479 8718 0.4610 +3479 8817 0.7970 +3479 8822 0.7870 +3479 8823 0.7700 +3479 8835 0.6600 +3479 8839 0.5770 +3479 8842 0.4770 +3479 8862 0.5720 +3479 8988 0.9910 +3479 9021 0.6760 +3479 9173 0.4550 +3479 9180 0.4430 +3479 9210 0.7550 +3479 9241 0.6580 +3479 9314 0.4520 +3479 9332 0.4280 +3479 9338 0.4210 +3479 9342 0.4490 +3479 9365 0.6150 +3479 9370 0.7790 +3479 9451 0.4460 +3479 9518 0.4330 +3479 9687 0.4550 +3479 9759 0.4080 +3479 9965 0.4890 +3479 9971 0.5380 +3479 10000 0.4590 +3479 10018 0.4510 +3479 10110 0.4450 +3479 10135 0.6350 +3479 10215 0.4450 +3479 10220 0.4210 +3479 10351 0.4710 +3479 10399 0.5530 +3479 10468 0.5490 +3479 10631 0.4410 +3479 10673 0.4430 +3479 10755 0.4440 +3479 10763 0.6110 +3479 10788 0.4050 +3479 10891 0.7640 +3479 10894 0.4020 +3479 10938 0.4480 +3479 11096 0.4170 +3479 22915 0.4400 +3479 22933 0.4050 +3479 22943 0.5690 +3479 23090 0.4730 +3479 23365 0.4320 +3479 23410 0.4060 +3479 23411 0.8240 +3479 23678 0.6060 +3479 25970 0.5270 +3479 26058 0.4620 +3479 26085 0.4090 +3479 26137 0.4510 +3479 26227 0.5090 +3479 26281 0.7700 +3479 26291 0.6900 +3479 26499 0.4320 +3479 26585 0.4980 +3479 27006 0.7820 +3479 27330 0.4690 +3479 29968 0.4200 +3479 50507 0.4630 +3479 50943 0.5850 +3479 50964 0.5810 +3479 51094 0.4450 +3479 51393 0.9220 +3479 51548 0.4230 +3479 51738 0.9480 +3479 51806 0.4340 +3479 54205 0.5070 +3479 54432 0.5720 +3479 54514 0.4240 +3479 54541 0.4030 +3479 55245 0.4470 +3479 55715 0.4610 +3479 55816 0.5250 +3479 56034 0.9560 +3479 56729 0.5770 +3479 57521 0.5730 +3479 60676 0.7920 +3479 64223 0.4350 +3479 64321 0.5140 +3479 64599 0.4890 +3479 64805 0.5390 +3479 79602 0.4180 +3479 79923 0.4900 +3479 80310 0.9310 +3479 81669 0.4340 +3479 84335 0.4500 +3479 84666 0.5790 +3479 84676 0.6200 +3479 89780 0.4780 +3479 90865 0.4030 +3479 91860 0.4370 +3479 114907 0.7210 +3479 120425 0.4200 +3479 121340 0.5070 +3479 137902 0.6350 +3479 146713 0.4250 +3479 163688 0.4350 +3479 219654 0.4040 +3479 252995 0.5790 +3479 253260 0.5860 +3479 257202 0.4740 +3479 347252 0.5130 +3479 389692 0.4890 +3479 404552 0.5260 +3479 440093 0.4120 +3479 440686 0.4120 +3479 493869 0.4870 +3479 653604 0.4140 +3479 100132074 0.5660 +3479 102723796 0.5910 +3480 3481 0.9990 +3480 3482 0.8870 +3480 3483 0.4850 +3480 3484 0.8860 +3480 3485 0.8100 +3480 3486 0.9600 +3480 3487 0.6040 +3480 3488 0.8020 +3480 3489 0.7410 +3480 3490 0.8410 +3480 3553 0.6410 +3480 3569 0.5710 +3480 3570 0.6090 +3480 3572 0.4860 +3480 3586 0.5930 +3480 3600 0.4030 +3480 3630 0.9990 +3480 3643 0.9970 +3480 3645 0.9600 +3480 3667 0.9990 +3480 3676 0.4930 +3480 3685 0.8920 +3480 3688 0.8360 +3480 3690 0.9320 +3480 3691 0.7050 +3480 3716 0.9640 +3480 3717 0.9810 +3480 3725 0.5740 +3480 3791 0.5520 +3480 3815 0.5630 +3480 3845 0.9710 +3480 3952 0.6660 +3480 3953 0.6150 +3480 3987 0.4220 +3480 4015 0.5880 +3480 4035 0.5660 +3480 4036 0.5240 +3480 4087 0.5180 +3480 4088 0.4800 +3480 4089 0.5120 +3480 4092 0.4180 +3480 4145 0.5530 +3480 4170 0.4920 +3480 4192 0.5350 +3480 4193 0.9810 +3480 4232 0.5010 +3480 4233 0.6290 +3480 4254 0.7680 +3480 4286 0.6030 +3480 4303 0.4530 +3480 4313 0.6890 +3480 4318 0.6880 +3480 4486 0.5010 +3480 4594 0.4030 +3480 4609 0.7120 +3480 4613 0.4300 +3480 4617 0.4550 +3480 4654 0.4150 +3480 4656 0.4460 +3480 4690 0.5060 +3480 4691 0.4610 +3480 4734 0.9340 +3480 4763 0.5030 +3480 4771 0.4410 +3480 4780 0.4110 +3480 4790 0.5060 +3480 4803 0.8460 +3480 4851 0.6850 +3480 4853 0.6260 +3480 4854 0.4170 +3480 4869 0.5590 +3480 4893 0.9600 +3480 4908 0.7150 +3480 4909 0.6950 +3480 4914 0.5040 +3480 4922 0.4750 +3480 5069 0.4820 +3480 5077 0.4230 +3480 5111 0.5980 +3480 5154 0.7720 +3480 5155 0.8190 +3480 5156 0.5400 +3480 5159 0.6130 +3480 5228 0.7440 +3480 5241 0.8200 +3480 5243 0.4630 +3480 5290 0.9780 +3480 5291 0.9710 +3480 5293 0.9500 +3480 5294 0.5420 +3480 5295 0.9940 +3480 5296 0.9640 +3480 5330 0.6660 +3480 5331 0.6660 +3480 5332 0.6830 +3480 5335 0.9210 +3480 5336 0.9100 +3480 5460 0.4100 +3480 5468 0.6480 +3480 5566 0.9210 +3480 5567 0.9210 +3480 5568 0.9200 +3480 5591 0.4400 +3480 5599 0.4460 +3480 5604 0.6750 +3480 5605 0.5510 +3480 5617 0.5880 +3480 5728 0.8800 +3480 5743 0.4330 +3480 5747 0.9780 +3480 5753 0.4570 +3480 5764 0.4750 +3480 5770 0.9930 +3480 5777 0.4320 +3480 5781 0.9350 +3480 5783 0.5190 +3480 5788 0.5720 +3480 5829 0.5580 +3480 5903 0.5810 +3480 5921 0.6930 +3480 5970 0.4800 +3480 5979 0.5990 +3480 6009 0.5130 +3480 6194 0.4590 +3480 6198 0.4370 +3480 6348 0.4680 +3480 6367 0.4430 +3480 6382 0.7350 +3480 6386 0.5070 +3480 6387 0.6340 +3480 6391 0.4900 +3480 6455 0.6720 +3480 6456 0.6640 +3480 6457 0.6640 +3480 6464 0.9990 +3480 6469 0.4310 +3480 6513 0.6230 +3480 6517 0.5060 +3480 6591 0.4410 +3480 6608 0.4060 +3480 6615 0.4830 +3480 6654 0.7080 +3480 6655 0.4190 +3480 6657 0.6370 +3480 6662 0.5930 +3480 6667 0.6010 +3480 6714 0.9960 +3480 6720 0.4450 +3480 6736 0.5560 +3480 6750 0.6020 +3480 6769 0.4180 +3480 6774 0.9210 +3480 6776 0.4440 +3480 6777 0.5200 +3480 6876 0.4280 +3480 7037 0.5480 +3480 7039 0.8870 +3480 7040 0.7440 +3480 7042 0.6420 +3480 7057 0.4010 +3480 7077 0.6230 +3480 7124 0.6300 +3480 7132 0.6690 +3480 7157 0.8530 +3480 7189 0.7420 +3480 7248 0.5070 +3480 7249 0.5900 +3480 7253 0.9510 +3480 7297 0.4480 +3480 7410 0.4520 +3480 7412 0.5810 +3480 7416 0.5830 +3480 7423 0.7450 +3480 7424 0.7800 +3480 7490 0.4420 +3480 7529 0.7390 +3480 7531 0.5520 +3480 7532 0.6110 +3480 7534 0.5980 +3480 7837 0.5700 +3480 7852 0.6970 +3480 8074 0.7090 +3480 8091 0.4250 +3480 8356 0.4030 +3480 8411 0.4120 +3480 8471 0.9680 +3480 8483 0.4390 +3480 8503 0.9900 +3480 8516 0.4270 +3480 8544 0.4380 +3480 8600 0.6780 +3480 8648 0.4980 +3480 8651 0.7230 +3480 8660 0.9980 +3480 8678 0.4090 +3480 8795 0.4990 +3480 8817 0.8480 +3480 8822 0.8490 +3480 8823 0.8550 +3480 8835 0.7870 +3480 8842 0.4160 +3480 9021 0.5520 +3480 9032 0.4890 +3480 9210 0.5180 +3480 9342 0.7030 +3480 9365 0.9460 +3480 9370 0.4140 +3480 9402 0.4560 +3480 9429 0.4180 +3480 9965 0.7180 +3480 10018 0.4470 +3480 10142 0.4290 +3480 10188 0.4030 +3480 10193 0.7890 +3480 10273 0.5520 +3480 10370 0.4190 +3480 10399 0.8710 +3480 10406 0.5130 +3480 10413 0.5010 +3480 10643 0.4050 +3480 10644 0.4220 +3480 10645 0.4620 +3480 10672 0.9160 +3480 10750 0.4400 +3480 10891 0.4020 +3480 10938 0.6750 +3480 11059 0.7090 +3480 11331 0.5710 +3480 22849 0.5430 +3480 22905 0.6710 +3480 23236 0.6960 +3480 23327 0.7150 +3480 23365 0.5940 +3480 23405 0.4410 +3480 23411 0.5690 +3480 23493 0.4450 +3480 23552 0.4670 +3480 23624 0.6950 +3480 25759 0.9160 +3480 25970 0.4070 +3480 26060 0.9820 +3480 26281 0.8550 +3480 26291 0.7720 +3480 26958 0.4370 +3480 27006 0.8540 +3480 27131 0.5490 +3480 27161 0.5570 +3480 27436 0.4820 +3480 29126 0.4450 +3480 29979 0.5730 +3480 30011 0.6600 +3480 30818 0.5860 +3480 50507 0.4880 +3480 51094 0.8780 +3480 51141 0.4080 +3480 51176 0.6640 +3480 51378 0.6810 +3480 51474 0.4490 +3480 51806 0.5590 +3480 53358 0.9490 +3480 54205 0.4240 +3480 54829 0.5210 +3480 54926 0.4450 +3480 55040 0.6670 +3480 55294 0.5890 +3480 55636 0.4640 +3480 56034 0.8170 +3480 56729 0.4900 +3480 56904 0.6500 +3480 57154 0.7100 +3480 57521 0.5560 +3480 58513 0.6640 +3480 64145 0.4260 +3480 64236 0.4210 +3480 64599 0.5820 +3480 64750 0.7000 +3480 79923 0.4160 +3480 80310 0.7250 +3480 81127 0.5850 +3480 83660 0.5520 +3480 83737 0.7270 +3480 84335 0.4500 +3480 84870 0.4360 +3480 90865 0.4390 +3480 91860 0.5510 +3480 137902 0.5560 +3480 140885 0.4440 +3480 163688 0.5510 +3480 253260 0.6060 +3480 255738 0.4140 +3480 389692 0.5150 +3480 399694 0.9450 +3480 440093 0.4010 +3480 653604 0.4010 +3480 723961 0.9370 +3480 102723796 0.4210 +3481 3482 0.9990 +3481 3483 0.8810 +3481 3484 0.9990 +3481 3485 0.9990 +3481 3486 0.9990 +3481 3487 0.9930 +3481 3488 0.9980 +3481 3489 0.9990 +3481 3490 0.9900 +3481 3491 0.4770 +3481 3553 0.4450 +3481 3557 0.4560 +3481 3569 0.5070 +3481 3586 0.5590 +3481 3630 0.9810 +3481 3640 0.5590 +3481 3641 0.4580 +3481 3643 0.9910 +3481 3645 0.5660 +3481 3667 0.9280 +3481 3694 0.4120 +3481 3725 0.4070 +3481 3784 0.8220 +3481 3791 0.8620 +3481 3815 0.8330 +3481 3816 0.4450 +3481 3817 0.4380 +3481 3845 0.5070 +3481 3952 0.8160 +3481 3973 0.5250 +3481 4057 0.5060 +3481 4060 0.5550 +3481 4074 0.6880 +3481 4192 0.6050 +3481 4232 0.7220 +3481 4233 0.7880 +3481 4239 0.4590 +3481 4254 0.5990 +3481 4292 0.5700 +3481 4312 0.5810 +3481 4313 0.7790 +3481 4318 0.6120 +3481 4335 0.4420 +3481 4609 0.6260 +3481 4613 0.4240 +3481 4617 0.4550 +3481 4618 0.4020 +3481 4654 0.7150 +3481 4656 0.5770 +3481 4676 0.5330 +3481 4692 0.4950 +3481 4762 0.6630 +3481 4763 0.5480 +3481 4803 0.6850 +3481 4804 0.8480 +3481 4826 0.7070 +3481 4851 0.5750 +3481 4856 0.6120 +3481 4908 0.6130 +3481 4914 0.9250 +3481 4915 0.7320 +3481 5002 0.7890 +3481 5015 0.5150 +3481 5054 0.7610 +3481 5069 0.7560 +3481 5077 0.4390 +3481 5154 0.4190 +3481 5156 0.7990 +3481 5159 0.8350 +3481 5175 0.4040 +3481 5178 0.6410 +3481 5241 0.5860 +3481 5290 0.5130 +3481 5324 0.7400 +3481 5325 0.6530 +3481 5328 0.4770 +3481 5340 0.5720 +3481 5345 0.4050 +3481 5443 0.5230 +3481 5460 0.5540 +3481 5465 0.4620 +3481 5468 0.5380 +3481 5594 0.4680 +3481 5595 0.4640 +3481 5617 0.8830 +3481 5618 0.5790 +3481 5728 0.5690 +3481 5741 0.7100 +3481 5764 0.6180 +3481 5923 0.5100 +3481 5935 0.4100 +3481 6150 0.6370 +3481 6198 0.4300 +3481 6387 0.6980 +3481 6422 0.4120 +3481 6462 0.5970 +3481 6464 0.7110 +3481 6469 0.4790 +3481 6513 0.4460 +3481 6515 0.4150 +3481 6517 0.4280 +3481 6638 0.8070 +3481 6654 0.5910 +3481 6657 0.4870 +3481 6662 0.4140 +3481 6696 0.8530 +3481 6714 0.4180 +3481 6750 0.4320 +3481 6774 0.6390 +3481 6776 0.5460 +3481 6777 0.5520 +3481 7010 0.7340 +3481 7015 0.4070 +3481 7039 0.5700 +3481 7040 0.7810 +3481 7042 0.4620 +3481 7043 0.4180 +3481 7054 0.4040 +3481 7057 0.5720 +3481 7066 0.4630 +3481 7124 0.6590 +3481 7157 0.7450 +3481 7184 0.4990 +3481 7262 0.8540 +3481 7276 0.4420 +3481 7337 0.4320 +3481 7448 0.9160 +3481 7472 0.5150 +3481 7490 0.8120 +3481 7761 0.4950 +3481 7762 0.5280 +3481 7837 0.4590 +3481 7980 0.5960 +3481 8013 0.4210 +3481 8091 0.5180 +3481 8290 0.4310 +3481 8356 0.4320 +3481 8425 0.4170 +3481 8471 0.6870 +3481 8483 0.4360 +3481 8651 0.5710 +3481 8660 0.7810 +3481 8788 0.9160 +3481 8817 0.6360 +3481 8822 0.6280 +3481 8823 0.6290 +3481 8839 0.5110 +3481 8846 0.4180 +3481 8910 0.5230 +3481 8913 0.6670 +3481 8988 0.9840 +3481 9021 0.4530 +3481 9213 0.4100 +3481 9370 0.4390 +3481 9589 0.5980 +3481 10077 0.4460 +3481 10078 0.5530 +3481 10367 0.4240 +3481 10468 0.4140 +3481 10642 0.9920 +3481 10643 0.9890 +3481 10644 0.9940 +3481 10664 0.9350 +3481 23062 0.4360 +3481 23089 0.6270 +3481 23091 0.4180 +3481 23112 0.4210 +3481 23242 0.4240 +3481 25962 0.4470 +3481 26088 0.4050 +3481 26118 0.6930 +3481 26281 0.6310 +3481 26585 0.4760 +3481 26958 0.6740 +3481 27006 0.6280 +3481 27122 0.4060 +3481 29947 0.4390 +3481 51200 0.4220 +3481 51441 0.4790 +3481 54760 0.6470 +3481 54890 0.4730 +3481 54915 0.5070 +3481 55089 0.4720 +3481 56339 0.4910 +3481 56729 0.4940 +3481 57680 0.4670 +3481 57683 0.4340 +3481 57721 0.4490 +3481 60676 0.7750 +3481 64783 0.4140 +3481 64848 0.4490 +3481 79068 0.5060 +3481 79727 0.6160 +3481 79923 0.5230 +3481 84666 0.4630 +3481 91746 0.5420 +3481 137902 0.4360 +3481 139285 0.4310 +3481 140690 0.6640 +3481 253943 0.4470 +3481 259266 0.4190 +3481 266812 0.4120 +3481 346171 0.4710 +3481 359787 0.4820 +3481 388015 0.4460 +3481 389421 0.5230 +3481 440093 0.4310 +3481 440686 0.4310 +3481 653604 0.4310 +3481 723961 0.8380 +3481 100381270 0.8420 +3481 100423062 0.6110 +3482 3484 0.7550 +3482 3485 0.7020 +3482 3486 0.7430 +3482 3487 0.4180 +3482 3488 0.5010 +3482 3489 0.6910 +3482 3575 0.4170 +3482 3588 0.4130 +3482 3630 0.9890 +3482 3643 0.6320 +3482 3667 0.4470 +3482 3784 0.7820 +3482 3845 0.5130 +3482 3916 0.6340 +3482 3920 0.5320 +3482 3949 0.5230 +3482 3976 0.7100 +3482 4012 0.4050 +3482 4036 0.6010 +3482 4043 0.4120 +3482 4067 0.5010 +3482 4074 0.9910 +3482 4142 0.6430 +3482 4232 0.6620 +3482 4322 0.4080 +3482 4609 0.4420 +3482 4656 0.4570 +3482 4692 0.4160 +3482 4803 0.4670 +3482 4826 0.5470 +3482 4905 0.5140 +3482 4952 0.6350 +3482 5002 0.6420 +3482 5178 0.5850 +3482 5241 0.4600 +3482 5286 0.5540 +3482 5325 0.5930 +3482 5328 0.8730 +3482 5329 0.6750 +3482 5340 0.5780 +3482 5660 0.4860 +3482 5713 0.5280 +3482 5728 0.4560 +3482 5867 0.4040 +3482 5868 0.4940 +3482 5869 0.5260 +3482 5878 0.5990 +3482 5921 0.4170 +3482 5923 0.6050 +3482 5972 0.5060 +3482 6059 0.4210 +3482 6249 0.4340 +3482 6272 0.8240 +3482 6293 0.6420 +3482 6535 0.4410 +3482 6572 0.4060 +3482 6581 0.9060 +3482 6582 0.8870 +3482 6638 0.7440 +3482 6642 0.6770 +3482 6643 0.8600 +3482 6653 0.5590 +3482 6774 0.5800 +3482 6844 0.5350 +3482 6845 0.6170 +3482 6865 0.4180 +3482 6991 0.4930 +3482 7018 0.4030 +3482 7037 0.6730 +3482 7040 0.6800 +3482 7048 0.7690 +3482 7057 0.4620 +3482 7070 0.6490 +3482 7163 0.5140 +3482 7164 0.5130 +3482 7262 0.6700 +3482 7337 0.5830 +3482 7852 0.4710 +3482 7879 0.4140 +3482 8027 0.4190 +3482 8218 0.5530 +3482 8301 0.5590 +3482 8411 0.6790 +3482 8546 0.5500 +3482 8660 0.4120 +3482 8673 0.5700 +3482 8674 0.5690 +3482 8675 0.6290 +3482 8677 0.6250 +3482 8724 0.5420 +3482 8774 0.5180 +3482 8775 0.5000 +3482 8788 0.6020 +3482 8795 0.4140 +3482 8804 0.7600 +3482 8867 0.4390 +3482 8905 0.5550 +3482 8906 0.4450 +3482 8907 0.6540 +3482 8910 0.4440 +3482 8988 0.4220 +3482 9026 0.7520 +3482 9113 0.4610 +3482 9146 0.4210 +3482 9179 0.4530 +3482 9341 0.6680 +3482 9367 0.6520 +3482 9559 0.8840 +3482 9648 0.6600 +3482 9685 0.6370 +3482 9698 0.5290 +3482 9779 0.4810 +3482 9829 0.6060 +3482 9856 0.4080 +3482 9892 0.5310 +3482 9897 0.4220 +3482 10000 0.4250 +3482 10053 0.6130 +3482 10078 0.4680 +3482 10221 0.4140 +3482 10226 0.9860 +3482 10244 0.5050 +3482 10254 0.4030 +3482 10577 0.5030 +3482 10618 0.8910 +3482 10664 0.6030 +3482 10717 0.5530 +3482 10919 0.6640 +3482 10920 0.4180 +3482 10938 0.4690 +3482 10980 0.6650 +3482 10987 0.4800 +3482 22836 0.5590 +3482 22905 0.4310 +3482 22933 0.4500 +3482 23062 0.9850 +3482 23089 0.6030 +3482 23163 0.9960 +3482 23317 0.4070 +3482 23347 0.4320 +3482 23411 0.4290 +3482 23431 0.6480 +3482 23557 0.5330 +3482 25977 0.5000 +3482 26088 0.9940 +3482 26119 0.5070 +3482 26258 0.5090 +3482 26958 0.4080 +3482 26985 0.4160 +3482 27131 0.9140 +3482 27161 0.4350 +3482 29886 0.4700 +3482 29924 0.4090 +3482 29947 0.4100 +3482 29978 0.5500 +3482 29988 0.4200 +3482 51209 0.4990 +3482 51429 0.6350 +3482 51542 0.6460 +3482 51666 0.4190 +3482 51699 0.6930 +3482 54551 0.4380 +3482 54885 0.5120 +3482 55040 0.4140 +3482 55062 0.5600 +3482 55089 0.4900 +3482 55109 0.4310 +3482 55275 0.6740 +3482 55330 0.4990 +3482 55690 0.5810 +3482 55697 0.4890 +3482 55737 0.8270 +3482 56479 0.4100 +3482 56957 0.4280 +3482 57194 0.4930 +3482 57713 0.4390 +3482 58533 0.7230 +3482 63908 0.4990 +3482 79065 0.5320 +3482 79571 0.5950 +3482 81567 0.5090 +3482 81609 0.5680 +3482 84062 0.5090 +3482 84572 0.4800 +3482 112936 0.5090 +3482 114026 0.4520 +3482 114815 0.4160 +3482 114907 0.4150 +3482 130340 0.5140 +3482 143187 0.7830 +3482 200576 0.5410 +3482 253725 0.7800 +3482 255738 0.4340 +3482 266812 0.5220 +3482 286451 0.5310 +3482 346171 0.4480 +3482 388015 0.4350 +3482 388552 0.4990 +3482 100287171 0.7990 +3483 3484 0.6980 +3483 3485 0.8060 +3483 3486 0.9990 +3483 3487 0.6760 +3483 3488 0.9950 +3483 3489 0.8970 +3483 3630 0.4200 +3483 3643 0.4980 +3483 3698 0.4200 +3483 3816 0.4210 +3483 3817 0.4100 +3483 3977 0.4470 +3483 4312 0.4310 +3483 4313 0.4030 +3483 4880 0.4600 +3483 4882 0.4270 +3483 5069 0.5650 +3483 5154 0.5400 +3483 5155 0.5410 +3483 5340 0.5510 +3483 5468 0.4840 +3483 5781 0.4800 +3483 6128 0.4410 +3483 6473 0.5010 +3483 6654 0.4570 +3483 6777 0.5240 +3483 7448 0.4410 +3483 8835 0.4500 +3483 10891 0.5460 +3483 22859 0.5140 +3483 23266 0.5140 +3483 23284 0.5140 +3483 23670 0.4980 +3483 26045 0.4140 +3483 26085 0.4130 +3483 26137 0.5160 +3483 60676 0.6540 +3483 79442 0.6320 +3483 122769 0.4310 +3483 145264 0.4320 +3483 150709 0.5100 +3483 474354 0.4450 +3483 654790 0.4440 +3484 3485 0.6570 +3484 3486 0.7360 +3484 3487 0.9720 +3484 3488 0.5050 +3484 3489 0.9560 +3484 3490 0.6580 +3484 3553 0.4320 +3484 3569 0.6570 +3484 3576 0.4300 +3484 3630 0.9940 +3484 3643 0.4530 +3484 3667 0.5160 +3484 3698 0.4890 +3484 3725 0.5530 +3484 3952 0.6020 +3484 3960 0.4190 +3484 3973 0.4170 +3484 4241 0.4070 +3484 4303 0.6220 +3484 4312 0.5350 +3484 4316 0.5400 +3484 4317 0.5560 +3484 4318 0.4310 +3484 5047 0.6210 +3484 5054 0.4980 +3484 5069 0.5230 +3484 5105 0.4690 +3484 5241 0.5840 +3484 5467 0.4930 +3484 5468 0.6030 +3484 5599 0.4850 +3484 5617 0.7130 +3484 5806 0.4260 +3484 6462 0.7000 +3484 6694 0.6090 +3484 6906 0.5500 +3484 7043 0.4610 +3484 7044 0.5660 +3484 7076 0.6160 +3484 7124 0.4320 +3484 7157 0.5990 +3484 7299 0.4530 +3484 7306 0.5060 +3484 7448 0.5530 +3484 8660 0.4830 +3484 8788 0.7690 +3484 8909 0.4870 +3484 9370 0.5480 +3484 9518 0.4830 +3484 9570 0.4040 +3484 10000 0.4030 +3484 10468 0.5620 +3484 10642 0.4340 +3484 22943 0.4850 +3484 23093 0.4240 +3484 26137 0.4150 +3484 26291 0.4160 +3484 27123 0.4230 +3484 27316 0.5930 +3484 29124 0.4310 +3484 54757 0.4130 +3484 55937 0.4190 +3484 56975 0.6620 +3484 79799 0.4090 +3484 80341 0.4560 +3484 84432 0.4230 +3484 92579 0.4510 +3484 201161 0.4570 +3484 254173 0.4240 +3485 3486 0.8360 +3485 3487 0.5030 +3485 3489 0.5280 +3485 3490 0.6380 +3485 3552 0.5460 +3485 3553 0.5870 +3485 3562 0.4760 +3485 3569 0.6460 +3485 3576 0.5810 +3485 3589 0.4160 +3485 3611 0.5800 +3485 3630 0.9820 +3485 3667 0.4020 +3485 3678 0.6700 +3485 3952 0.6780 +3485 4040 0.4270 +3485 4053 0.4590 +3485 4054 0.4760 +3485 4155 0.4440 +3485 4170 0.4430 +3485 4948 0.4100 +3485 5046 0.4510 +3485 5054 0.4570 +3485 5069 0.5900 +3485 5175 0.4800 +3485 5468 0.5860 +3485 5728 0.4370 +3485 5787 0.8060 +3485 5803 0.6560 +3485 5806 0.4040 +3485 6319 0.4140 +3485 6387 0.4100 +3485 6462 0.6970 +3485 6469 0.4430 +3485 6591 0.4690 +3485 6696 0.4270 +3485 7018 0.4310 +3485 7023 0.4070 +3485 7040 0.6070 +3485 7057 0.4010 +3485 7076 0.4930 +3485 7157 0.6220 +3485 7276 0.5620 +3485 7681 0.5940 +3485 8988 0.5010 +3485 9021 0.4640 +3485 9370 0.4180 +3485 9518 0.4430 +3485 10128 0.6020 +3485 10644 0.4110 +3485 10891 0.5170 +3485 11315 0.4260 +3485 11322 0.4140 +3485 23191 0.8410 +3485 23363 0.4930 +3485 23452 0.4380 +3485 26137 0.4640 +3485 26207 0.4680 +3485 27316 0.5800 +3485 51441 0.5570 +3485 54915 0.5620 +3485 56729 0.5040 +3485 60672 0.8620 +3485 60676 0.4200 +3485 64848 0.5890 +3485 80310 0.4320 +3485 80781 0.4060 +3485 81614 0.9150 +3485 84666 0.4890 +3485 91746 0.5750 +3485 114791 0.9150 +3485 123606 0.9050 +3485 253935 0.4200 +3485 253943 0.5740 +3486 3487 0.4970 +3486 3488 0.9780 +3486 3489 0.7770 +3486 3490 0.7640 +3486 3491 0.4440 +3486 3552 0.6680 +3486 3553 0.6510 +3486 3569 0.7330 +3486 3576 0.4300 +3486 3606 0.4830 +3486 3627 0.5210 +3486 3630 0.9950 +3486 3643 0.4500 +3486 3667 0.5310 +3486 3717 0.5480 +3486 3816 0.4870 +3486 3817 0.6340 +3486 3845 0.4190 +3486 3855 0.4210 +3486 3856 0.4260 +3486 3880 0.4610 +3486 3952 0.6230 +3486 3958 0.4490 +3486 4015 0.4500 +3486 4017 0.5510 +3486 4035 0.5430 +3486 4052 0.5080 +3486 4057 0.4850 +3486 4060 0.4230 +3486 4193 0.4180 +3486 4283 0.4560 +3486 4312 0.7600 +3486 4313 0.8010 +3486 4314 0.7140 +3486 4318 0.6520 +3486 4609 0.4810 +3486 4739 0.4130 +3486 4790 0.5410 +3486 4841 0.7620 +3486 5034 0.4430 +3486 5054 0.5960 +3486 5069 0.7430 +3486 5154 0.6220 +3486 5155 0.6300 +3486 5178 0.5050 +3486 5328 0.4940 +3486 5329 0.5470 +3486 5340 0.8740 +3486 5420 0.4700 +3486 5432 0.4800 +3486 5443 0.4470 +3486 5467 0.4690 +3486 5468 0.8500 +3486 5591 0.8220 +3486 5617 0.7310 +3486 5626 0.5400 +3486 5692 0.4050 +3486 5728 0.4660 +3486 5741 0.4470 +3486 5743 0.6020 +3486 5806 0.4530 +3486 5914 0.5090 +3486 6256 0.9310 +3486 6347 0.4650 +3486 6364 0.5110 +3486 6374 0.4930 +3486 6387 0.6100 +3486 6421 0.7680 +3486 6422 0.4030 +3486 6462 0.6690 +3486 6591 0.5740 +3486 6696 0.4150 +3486 6750 0.4480 +3486 6774 0.4630 +3486 6777 0.5940 +3486 7040 0.5210 +3486 7042 0.4580 +3486 7044 0.4500 +3486 7045 0.4880 +3486 7048 0.6020 +3486 7056 0.4350 +3486 7057 0.6670 +3486 7058 0.4420 +3486 7076 0.6160 +3486 7077 0.4310 +3486 7078 0.4610 +3486 7114 0.4140 +3486 7124 0.4780 +3486 7157 0.9010 +3486 7306 0.4410 +3486 7423 0.5350 +3486 7424 0.4420 +3486 7448 0.8640 +3486 7474 0.6100 +3486 7837 0.4280 +3486 7850 0.4560 +3486 8038 0.6710 +3486 8660 0.4300 +3486 8974 0.4790 +3486 8988 0.7410 +3486 9370 0.5450 +3486 9518 0.4260 +3486 10130 0.4030 +3486 10631 0.4120 +3486 22918 0.4160 +3486 23452 0.4520 +3486 26085 0.4160 +3486 27316 0.5050 +3486 51738 0.5050 +3486 54757 0.4080 +3486 55245 0.4190 +3486 56975 0.6790 +3486 60676 0.6360 +3486 80781 0.6490 +3486 114548 0.4060 +3486 115908 0.4720 +3486 124446 0.9740 +3486 128434 0.4480 +3486 203068 0.4110 +3487 3489 0.4160 +3487 3490 0.6110 +3487 3557 0.5370 +3487 3569 0.6420 +3487 3586 0.6300 +3487 3630 0.6640 +3487 3952 0.5530 +3487 4040 0.8470 +3487 4041 0.5490 +3487 4313 0.5120 +3487 4318 0.4020 +3487 5069 0.9760 +3487 5553 0.8190 +3487 5654 0.5770 +3487 5914 0.4610 +3487 6348 0.4240 +3487 6387 0.5610 +3487 7038 0.4140 +3487 7040 0.5480 +3487 7067 0.4200 +3487 7124 0.5700 +3487 7137 0.4220 +3487 8325 0.8380 +3487 8614 0.5070 +3487 11322 0.4450 +3487 54757 0.4230 +3487 56975 0.5350 +3487 60676 0.8270 +3488 3489 0.7250 +3488 3490 0.7030 +3488 3552 0.5040 +3488 3553 0.5500 +3488 3557 0.5710 +3488 3569 0.6950 +3488 3579 0.4200 +3488 3586 0.5840 +3488 3623 0.5370 +3488 3625 0.5130 +3488 3630 0.6990 +3488 3643 0.5880 +3488 3667 0.4230 +3488 4017 0.5140 +3488 4035 0.4860 +3488 4040 0.4020 +3488 4052 0.4660 +3488 4053 0.4920 +3488 4054 0.4860 +3488 4060 0.6230 +3488 4188 0.4380 +3488 4256 0.4300 +3488 4313 0.4030 +3488 4314 0.4050 +3488 4318 0.4010 +3488 4323 0.4330 +3488 4654 0.5850 +3488 4656 0.4120 +3488 4854 0.4290 +3488 5054 0.7370 +3488 5069 0.9770 +3488 5154 0.6270 +3488 5155 0.6000 +3488 5340 0.4680 +3488 5648 0.6160 +3488 5654 0.4780 +3488 5730 0.4840 +3488 6314 0.5290 +3488 6387 0.6000 +3488 6423 0.4220 +3488 6678 0.6230 +3488 6696 0.6820 +3488 7040 0.5980 +3488 7057 0.8050 +3488 7078 0.5160 +3488 7369 0.4120 +3488 7448 0.8750 +3488 7476 0.4450 +3488 8038 0.5530 +3488 8325 0.4840 +3488 8542 0.4540 +3488 8549 0.4670 +3488 8840 0.5730 +3488 8942 0.4550 +3488 10084 0.4260 +3488 10631 0.4690 +3488 11096 0.4180 +3488 23213 0.4240 +3488 26227 0.4290 +3488 27122 0.4130 +3488 51176 0.4270 +3488 54757 0.5450 +3488 56975 0.6700 +3488 60676 0.8670 +3488 81539 0.4870 +3488 147912 0.6130 +3488 340260 0.4720 +3488 388512 0.4930 +3489 3490 0.7000 +3489 3553 0.4540 +3489 3630 0.7560 +3489 3695 0.4500 +3489 3849 0.6600 +3489 4040 0.4360 +3489 4318 0.4260 +3489 5069 0.4120 +3489 5154 0.6170 +3489 5155 0.5920 +3489 5533 0.4290 +3489 5534 0.5170 +3489 5916 0.5440 +3489 7038 0.5170 +3489 7123 0.4080 +3489 8325 0.5630 +3489 8435 0.8380 +3489 60481 0.4200 +3490 3491 0.9260 +3490 3569 0.4200 +3490 3606 0.4470 +3490 3627 0.5120 +3490 3630 0.9920 +3490 3725 0.8500 +3490 3791 0.4720 +3490 3934 0.7200 +3490 4060 0.4750 +3490 4256 0.4480 +3490 4856 0.7150 +3490 5034 0.7190 +3490 5054 0.4410 +3490 5118 0.5500 +3490 5159 0.4550 +3490 5431 0.4950 +3490 5654 0.5360 +3490 5730 0.5430 +3490 5934 0.4240 +3490 6678 0.5590 +3490 6768 0.4120 +3490 7040 0.6470 +3490 7045 0.4350 +3490 7076 0.4430 +3490 7077 0.8740 +3490 7078 0.4150 +3490 7276 0.4580 +3490 7431 0.4200 +3490 7450 0.7460 +3490 7472 0.4930 +3490 8797 0.4110 +3490 9210 0.4010 +3490 10516 0.4250 +3490 10617 0.5420 +3490 10631 0.4350 +3490 10874 0.4480 +3490 22918 0.5150 +3490 27122 0.4530 +3490 27243 0.5420 +3490 51652 0.7930 +3490 54757 0.4610 +3490 56975 0.5880 +3490 79643 0.5490 +3490 80739 0.4330 +3490 84273 0.5590 +3490 166752 0.4610 +3490 196883 0.4090 +3490 285855 0.4200 +3490 100526767 0.7200 +3491 3553 0.6080 +3491 3569 0.5470 +3491 3681 0.5790 +3491 3684 0.4870 +3491 3685 0.8520 +3491 3690 0.6700 +3491 3693 0.6780 +3491 3725 0.6170 +3491 3791 0.5100 +3491 3952 0.4260 +3491 3958 0.4870 +3491 4015 0.5970 +3491 4040 0.5340 +3491 4041 0.5520 +3491 4313 0.5560 +3491 4318 0.5590 +3491 4599 0.4240 +3491 4609 0.5480 +3491 4616 0.5060 +3491 4771 0.5010 +3491 4851 0.5100 +3491 5054 0.6480 +3491 5340 0.5140 +3491 5743 0.4300 +3491 5784 0.4170 +3491 5934 0.4480 +3491 6347 0.6380 +3491 6385 0.5800 +3491 6591 0.4100 +3491 6657 0.4750 +3491 6662 0.4110 +3491 6678 0.7830 +3491 6876 0.4290 +3491 7003 0.7230 +3491 7004 0.6490 +3491 7005 0.5250 +3491 7040 0.4600 +3491 7042 0.4150 +3491 7057 0.6940 +3491 7076 0.5980 +3491 7157 0.4280 +3491 7424 0.6530 +3491 7448 0.5460 +3491 7450 0.7830 +3491 7471 0.5520 +3491 7832 0.6750 +3491 7837 0.4680 +3491 8436 0.4220 +3491 8463 0.5660 +3491 9113 0.7520 +3491 9510 0.7520 +3491 9592 0.4590 +3491 9686 0.4800 +3491 10413 0.7640 +3491 10457 0.4320 +3491 10631 0.4370 +3491 10874 0.4410 +3491 11130 0.7800 +3491 11167 0.4110 +3491 25937 0.6690 +3491 26524 0.6510 +3491 27063 0.7720 +3491 51421 0.7590 +3491 51652 0.5430 +3491 54757 0.4100 +3491 55233 0.4350 +3491 56975 0.5210 +3491 60485 0.6290 +3491 64332 0.4660 +3491 81035 0.4060 +3491 91851 0.4710 +3491 154796 0.5650 +3491 154810 0.4860 +3491 100526767 0.5430 +3508 4330 0.6490 +3508 4878 0.4240 +3508 4913 0.5880 +3508 5631 0.4170 +3508 6305 0.4490 +3508 6606 0.7450 +3508 6607 0.7550 +3508 7273 0.5900 +3508 7469 0.7340 +3508 7936 0.7910 +3508 8565 0.5670 +3508 8607 0.5420 +3508 8731 0.4280 +3508 8898 0.4800 +3508 9516 0.4490 +3508 9639 0.4060 +3508 9896 0.4800 +3508 9927 0.4520 +3508 10856 0.5970 +3508 22880 0.4860 +3508 23064 0.5850 +3508 23299 0.4820 +3508 23321 0.4020 +3508 26353 0.5220 +3508 26580 0.5910 +3508 27434 0.4260 +3508 29777 0.8410 +3508 51497 0.5160 +3508 54332 0.7090 +3508 54555 0.4040 +3508 54961 0.4220 +3508 55526 0.5550 +3508 55906 0.4570 +3508 57449 0.5960 +3508 59341 0.4470 +3508 60482 0.4020 +3508 64423 0.4050 +3508 64852 0.4440 +3508 65055 0.4790 +3508 79628 0.6310 +3508 80208 0.4290 +3508 81545 0.4090 +3508 81846 0.5220 +3508 81887 0.4890 +3508 89978 0.4510 +3508 90678 0.6710 +3508 121512 0.4830 +3508 122769 0.4360 +3508 221823 0.4130 +3516 3632 0.4650 +3516 3662 0.4460 +3516 3670 0.5090 +3516 3714 0.8780 +3516 3955 0.6220 +3516 3960 0.6040 +3516 3975 0.4330 +3516 4087 0.7640 +3516 4088 0.8030 +3516 4089 0.6040 +3516 4204 0.4930 +3516 4242 0.4080 +3516 4286 0.4470 +3516 4343 0.5080 +3516 4488 0.4150 +3516 4609 0.8650 +3516 4772 0.4360 +3516 4774 0.4040 +3516 4825 0.5670 +3516 4851 0.9990 +3516 4853 0.9980 +3516 4854 0.9980 +3516 4855 0.9880 +3516 5045 0.5310 +3516 5080 0.4080 +3516 5087 0.6190 +3516 5366 0.4010 +3516 5460 0.6420 +3516 5641 0.4040 +3516 5663 0.5460 +3516 5664 0.4460 +3516 5728 0.6800 +3516 5788 0.4550 +3516 5927 0.7890 +3516 5932 0.5080 +3516 5966 0.6210 +3516 5970 0.4550 +3516 5971 0.4010 +3516 6310 0.9670 +3516 6469 0.4660 +3516 6500 0.5990 +3516 6597 0.5620 +3516 6657 0.4770 +3516 6662 0.5010 +3516 6688 0.4850 +3516 6772 0.6260 +3516 6774 0.4420 +3516 6868 0.5640 +3516 6907 0.6000 +3516 6908 0.9360 +3516 6911 0.6190 +3516 6927 0.4870 +3516 6929 0.5850 +3516 7027 0.5240 +3516 7029 0.5150 +3516 7046 0.4070 +3516 7088 0.6070 +3516 7089 0.6560 +3516 7090 0.6210 +3516 7091 0.6640 +3516 7157 0.8450 +3516 7424 0.5020 +3516 7490 0.5280 +3516 7528 0.7030 +3516 7547 0.4080 +3516 8048 0.4050 +3516 8125 0.4090 +3516 8290 0.4260 +3516 8356 0.4340 +3516 8454 0.6530 +3516 8650 0.6560 +3516 8819 0.9520 +3516 8841 0.7800 +3516 8850 0.9920 +3516 9253 0.6550 +3516 9314 0.4060 +3516 9355 0.4650 +3516 9519 0.9080 +3516 9541 0.9890 +3516 9611 0.9580 +3516 9612 0.9980 +3516 9734 0.6120 +3516 9759 0.6310 +3516 9787 0.5040 +3516 9794 0.9990 +3516 9978 0.5750 +3516 10013 0.7400 +3516 10014 0.5770 +3516 10046 0.5790 +3516 10084 0.4210 +3516 10085 0.4240 +3516 10153 0.6150 +3516 10320 0.6720 +3516 10524 0.5110 +3516 10538 0.4360 +3516 10578 0.9650 +3516 10664 0.4210 +3516 10683 0.7530 +3516 10771 0.4450 +3516 10795 0.6540 +3516 10912 0.4320 +3516 11317 0.9300 +3516 22938 0.9810 +3516 23013 0.9730 +3516 23028 0.7460 +3516 23112 0.5310 +3516 23129 0.5500 +3516 23286 0.5450 +3516 23385 0.5780 +3516 23462 0.9190 +3516 23493 0.9000 +3516 23509 0.7160 +3516 25942 0.9630 +3516 26508 0.8430 +3516 26523 0.5170 +3516 27044 0.4540 +3516 27161 0.5480 +3516 27327 0.5030 +3516 28514 0.9240 +3516 51107 0.4810 +3516 51132 0.5300 +3516 51176 0.7100 +3516 51385 0.5130 +3516 51564 0.6070 +3516 51593 0.7360 +3516 54345 0.7580 +3516 54455 0.6220 +3516 54567 0.9050 +3516 55100 0.6250 +3516 55294 0.7340 +3516 55502 0.4490 +3516 55534 0.9990 +3516 55851 0.5050 +3516 55862 0.4170 +3516 55869 0.6120 +3516 57178 0.6620 +3516 57514 0.4900 +3516 57572 0.4160 +3516 57591 0.4550 +3516 57801 0.4630 +3516 63973 0.4130 +3516 64783 0.6960 +3516 64919 0.6260 +3516 79088 0.4130 +3516 79685 0.9060 +3516 79718 0.6030 +3516 79885 0.5700 +3516 83933 0.5570 +3516 84441 0.9990 +3516 84456 0.7790 +3516 84504 0.5030 +3516 84934 0.7290 +3516 91133 0.4480 +3516 92737 0.7260 +3516 171558 0.6810 +3516 192669 0.5170 +3516 192670 0.5320 +3516 221336 0.6350 +3516 253260 0.4870 +3516 255877 0.6780 +3516 256297 0.9870 +3516 285203 0.5100 +3516 342371 0.9640 +3516 343930 0.6070 +3516 387332 0.9050 +3516 388585 0.8570 +3516 390992 0.4760 +3516 440093 0.4260 +3516 440686 0.4260 +3516 441478 0.9600 +3516 653604 0.4420 +3543 3574 0.5080 +3543 3575 0.5940 +3543 3662 0.4070 +3543 3812 0.6390 +3543 4133 0.4750 +3543 4137 0.4750 +3543 4311 0.4280 +3543 5079 0.6390 +3543 5238 0.8790 +3543 5284 0.6220 +3543 5450 0.5260 +3543 5591 0.4270 +3543 5620 0.5230 +3543 5788 0.4620 +3543 5817 0.4950 +3543 5818 0.4770 +3543 5819 0.4930 +3543 5896 0.7700 +3543 6364 0.4390 +3543 6693 0.6130 +3543 6850 0.6050 +3543 6929 0.5880 +3543 7035 0.4810 +3543 7311 0.4680 +3543 7441 0.9990 +3543 10077 0.4230 +3543 10113 0.4390 +3543 10320 0.5880 +3543 10326 0.5480 +3543 22806 0.4470 +3543 23284 0.4130 +3543 27130 0.4540 +3543 29760 0.8170 +3543 29802 0.9670 +3543 51237 0.7290 +3543 54923 0.5470 +3543 56262 0.7490 +3543 57105 0.4340 +3543 57593 0.4470 +3543 64421 0.5830 +3543 84824 0.4220 +3543 115650 0.5100 +3543 122509 0.4620 +3543 253738 0.4180 +3543 390714 0.7430 +3543 100423062 0.8030 +3543 102723407 0.9800 +3547 3624 0.8740 +3547 5449 0.4520 +3547 5617 0.4080 +3547 5626 0.4860 +3547 7200 0.4880 +3547 7201 0.6690 +3547 7252 0.6210 +3547 8471 0.5170 +3547 8820 0.4540 +3547 9666 0.4380 +3547 29094 0.4400 +3547 57529 0.4160 +3547 65078 0.5640 +3547 80712 0.4380 +3547 84894 0.5470 +3547 89884 0.4140 +3547 158763 0.4290 +3547 283284 0.4280 +3547 347468 0.4490 +3549 3630 0.4150 +3549 3759 0.4060 +3549 3814 0.4010 +3549 4036 0.9160 +3549 4041 0.4190 +3549 4089 0.4220 +3549 4208 0.4100 +3549 4322 0.6880 +3549 4487 0.4610 +3549 4488 0.5130 +3549 4851 0.4470 +3549 4880 0.6130 +3549 5015 0.4920 +3549 5034 0.5230 +3549 5047 0.6530 +3549 5077 0.4040 +3549 5566 0.4800 +3549 5567 0.4810 +3549 5568 0.4880 +3549 5682 0.4010 +3549 5684 0.4010 +3549 5685 0.4010 +3549 5686 0.4010 +3549 5687 0.4010 +3549 5688 0.4270 +3549 5689 0.4010 +3549 5690 0.4010 +3549 5691 0.4010 +3549 5692 0.4270 +3549 5693 0.4010 +3549 5695 0.4380 +3549 5696 0.4010 +3549 5699 0.4380 +3549 5702 0.4100 +3549 5704 0.4260 +3549 5706 0.4100 +3549 5708 0.4120 +3549 5714 0.4160 +3549 5720 0.4980 +3549 5721 0.4980 +3549 5727 0.9990 +3549 5741 0.7030 +3549 5744 0.9560 +3549 5745 0.7420 +3549 5746 0.4630 +3549 6233 0.5020 +3549 6293 0.6080 +3549 6400 0.4990 +3549 6422 0.4520 +3549 6423 0.4140 +3549 6469 0.9510 +3549 6473 0.4360 +3549 6608 0.9970 +3549 6615 0.4260 +3549 6660 0.5430 +3549 6662 0.7570 +3549 6696 0.5320 +3549 6736 0.4360 +3549 6868 0.4570 +3549 6870 0.4670 +3549 7026 0.4780 +3549 7040 0.4900 +3549 7043 0.4180 +3549 7124 0.4450 +3549 7227 0.5900 +3549 7311 0.4990 +3549 7314 0.5020 +3549 7316 0.5020 +3549 7415 0.5080 +3549 7471 0.4460 +3549 7472 0.4140 +3549 7474 0.5230 +3549 7475 0.6240 +3549 7476 0.4160 +3549 7480 0.4060 +3549 7481 0.4300 +3549 7482 0.4140 +3549 7483 0.5060 +3549 8100 0.4930 +3549 8200 0.7710 +3549 8312 0.4690 +3549 8313 0.4690 +3549 8600 0.4200 +3549 8643 0.9990 +3549 8677 0.4480 +3549 8817 0.6020 +3549 8822 0.5300 +3549 8823 0.5460 +3549 9241 0.7110 +3549 9429 0.4520 +3549 9464 0.5090 +3549 9482 0.4480 +3549 9723 0.4590 +3549 10197 0.5270 +3549 10216 0.4060 +3549 10228 0.4480 +3549 10956 0.5110 +3549 11096 0.7060 +3549 11127 0.4690 +3549 11197 0.4620 +3549 22943 0.4880 +3549 26281 0.5500 +3549 27006 0.5340 +3549 27148 0.4780 +3549 27248 0.5110 +3549 50846 0.9340 +3549 50937 0.9990 +3549 50964 0.4230 +3549 51009 0.4990 +3549 51542 0.5040 +3549 51684 0.8000 +3549 53373 0.4710 +3549 54361 0.5520 +3549 54760 0.5060 +3549 55144 0.4720 +3549 55275 0.4980 +3549 55553 0.5380 +3549 55582 0.5860 +3549 55636 0.7180 +3549 55733 0.6990 +3549 55734 0.4260 +3549 55888 0.4330 +3549 57154 0.5050 +3549 57540 0.6280 +3549 57758 0.6810 +3549 60675 0.5720 +3549 64399 0.9980 +3549 64750 0.5000 +3549 81029 0.4300 +3549 84447 0.5060 +3549 84634 0.4260 +3549 84976 0.8790 +3549 85455 0.8500 +3549 89780 0.6090 +3549 91653 0.9980 +3549 121340 0.6240 +3549 122706 0.4010 +3549 128674 0.5050 +3549 132884 0.4030 +3549 143471 0.4010 +3549 147111 0.5080 +3549 200894 0.4010 +3549 374654 0.7040 +3550 4236 0.9950 +3550 4809 0.9800 +3550 5356 0.4640 +3550 5511 0.5340 +3550 5546 0.4540 +3550 5706 0.4240 +3550 6627 0.9810 +3550 6628 0.9840 +3550 6629 0.9810 +3550 6632 0.9810 +3550 6633 0.9800 +3550 6634 0.9830 +3550 6635 0.9830 +3550 6636 0.9830 +3550 6637 0.9790 +3550 6672 0.6490 +3550 7150 0.4300 +3550 7536 0.6000 +3550 7737 0.9680 +3550 7919 0.8080 +3550 8161 0.6890 +3550 8175 0.9110 +3550 8241 0.7110 +3550 8449 0.9160 +3550 8467 0.4270 +3550 8896 0.4310 +3550 8899 0.8580 +3550 9092 0.9800 +3550 9128 0.9790 +3550 9129 0.9850 +3550 9221 0.4410 +3550 9343 0.9940 +3550 9410 0.8790 +3550 9416 0.6220 +3550 9584 0.8650 +3550 9667 0.4460 +3550 9716 0.4260 +3550 9775 0.6120 +3550 9967 0.4620 +3550 9984 0.6220 +3550 10084 0.8060 +3550 10179 0.5060 +3550 10181 0.8110 +3550 10189 0.8160 +3550 10250 0.8650 +3550 10262 0.9020 +3550 10283 0.9250 +3550 10284 0.4330 +3550 10286 0.4880 +3550 10291 0.9210 +3550 10399 0.4980 +3550 10450 0.5000 +3550 10465 0.8050 +3550 10594 0.9860 +3550 10907 0.9790 +3550 10915 0.8390 +3550 10946 0.9240 +3550 10992 0.9240 +3550 11157 0.9800 +3550 11169 0.4240 +3550 11193 0.9810 +3550 22826 0.5770 +3550 22938 0.7170 +3550 23020 0.9820 +3550 23450 0.9890 +3550 23451 0.9850 +3550 23476 0.5250 +3550 23517 0.8170 +3550 23524 0.9060 +3550 23658 0.9800 +3550 23759 0.4720 +3550 24148 0.9950 +3550 25804 0.9850 +3550 26121 0.9790 +3550 27238 0.5630 +3550 27258 0.9800 +3550 27336 0.5760 +3550 27339 0.4130 +3550 51340 0.4580 +3550 51362 0.8210 +3550 51503 0.5590 +3550 51593 0.8290 +3550 51634 0.9010 +3550 51645 0.4050 +3550 51690 0.9800 +3550 51691 0.9800 +3550 51729 0.8200 +3550 51747 0.6040 +3550 51759 0.6070 +3550 53938 0.4110 +3550 54819 0.4920 +3550 54853 0.9010 +3550 54897 0.4820 +3550 55110 0.9150 +3550 55234 0.9990 +3550 55660 0.8280 +3550 55696 0.4270 +3550 55749 0.6170 +3550 56259 0.7330 +3550 56949 0.8450 +3550 57461 0.4330 +3550 57703 0.9300 +3550 57794 0.5300 +3550 57819 0.9830 +3550 58517 0.8330 +3550 59286 0.8230 +3550 79753 0.9770 +3550 83443 0.9790 +3550 84811 0.9040 +3550 84844 0.9800 +3550 84950 0.9900 +3550 91603 0.8220 +3550 114034 0.5230 +3550 118924 0.7140 +3550 151613 0.4940 +3550 151903 0.4160 +3550 153527 0.9790 +3550 166785 0.4090 +3551 3552 0.7720 +3551 3553 0.8650 +3551 3554 0.5690 +3551 3558 0.4620 +3551 3565 0.4800 +3551 3567 0.5360 +3551 3569 0.7360 +3551 3576 0.5950 +3551 3586 0.6000 +3551 3596 0.4130 +3551 3605 0.4480 +3551 3606 0.4880 +3551 3627 0.4190 +3551 3630 0.7210 +3551 3654 0.9030 +3551 3656 0.6550 +3551 3659 0.4510 +3551 3661 0.8700 +3551 3663 0.6880 +3551 3665 0.7320 +3551 3667 0.9810 +3551 3684 0.4300 +3551 3716 0.5190 +3551 3725 0.7850 +3551 3727 0.5270 +3551 3845 0.4510 +3551 3952 0.4890 +3551 4001 0.4220 +3551 4050 0.5140 +3551 4055 0.5530 +3551 4067 0.4660 +3551 4069 0.4610 +3551 4077 0.4700 +3551 4087 0.4310 +3551 4088 0.4350 +3551 4089 0.4070 +3551 4170 0.4360 +3551 4193 0.4320 +3551 4214 0.9820 +3551 4215 0.9590 +3551 4233 0.4590 +3551 4303 0.9290 +3551 4318 0.5540 +3551 4609 0.7780 +3551 4628 0.4510 +3551 4700 0.8860 +3551 4772 0.4300 +3551 4775 0.5280 +3551 4780 0.4750 +3551 4790 0.9990 +3551 4791 0.9550 +3551 4792 0.9990 +3551 4793 0.9970 +3551 4794 0.9780 +3551 4803 0.6080 +3551 4804 0.8310 +3551 4851 0.4150 +3551 5037 0.5370 +3551 5170 0.9240 +3551 5294 0.4950 +3551 5465 0.4090 +3551 5468 0.5470 +3551 5495 0.5900 +3551 5499 0.6260 +3551 5515 0.7820 +3551 5531 0.4340 +3551 5578 0.4180 +3551 5579 0.6800 +3551 5580 0.4380 +3551 5581 0.4390 +3551 5588 0.9810 +3551 5591 0.4620 +3551 5599 0.6050 +3551 5600 0.4190 +3551 5601 0.5450 +3551 5610 0.9660 +3551 5669 0.6930 +3551 5728 0.9520 +3551 5743 0.6150 +3551 5770 0.4550 +3551 5781 0.6380 +3551 5788 0.4480 +3551 5962 0.4110 +3551 5966 0.9560 +3551 5970 0.9990 +3551 5971 0.8860 +3551 5987 0.8080 +3551 6188 0.6600 +3551 6233 0.5850 +3551 6347 0.5930 +3551 6500 0.6720 +3551 6502 0.6410 +3551 6517 0.4610 +3551 6714 0.9180 +3551 6737 0.7820 +3551 6772 0.5640 +3551 6773 0.4280 +3551 6774 0.7490 +3551 6777 0.5080 +3551 6778 0.5850 +3551 6786 0.4520 +3551 6790 0.4110 +3551 6885 0.9960 +3551 7037 0.5030 +3551 7040 0.5080 +3551 7046 0.7040 +3551 7096 0.4820 +3551 7097 0.6300 +3551 7098 0.8080 +3551 7099 0.9030 +3551 7100 0.4810 +3551 7124 0.9990 +3551 7128 0.8870 +3551 7132 0.9990 +3551 7157 0.9330 +3551 7161 0.5470 +3551 7185 0.7830 +3551 7186 0.9940 +3551 7187 0.8630 +3551 7188 0.9590 +3551 7189 0.9990 +3551 7248 0.9820 +3551 7249 0.9500 +3551 7280 0.5060 +3551 7291 0.4560 +3551 7295 0.4040 +3551 7297 0.5450 +3551 7311 0.5800 +3551 7314 0.5800 +3551 7316 0.6510 +3551 7321 0.6690 +3551 7322 0.6310 +3551 7323 0.5090 +3551 7334 0.7890 +3551 7335 0.7550 +3551 7375 0.6620 +3551 7403 0.4500 +3551 7412 0.6990 +3551 7416 0.4580 +3551 7428 0.5330 +3551 7430 0.4140 +3551 7535 0.4460 +3551 7706 0.6740 +3551 7837 0.5510 +3551 8202 0.4650 +3551 8290 0.6120 +3551 8356 0.6110 +3551 8452 0.5710 +3551 8454 0.7620 +3551 8471 0.9110 +3551 8517 0.9990 +3551 8518 0.6390 +3551 8533 0.5140 +3551 8600 0.6430 +3551 8648 0.4500 +3551 8651 0.4150 +3551 8660 0.9410 +3551 8678 0.4370 +3551 8717 0.9620 +3551 8727 0.4710 +3551 8737 0.9870 +3551 8767 0.9420 +3551 8772 0.8400 +3551 8773 0.6950 +3551 8826 0.4830 +3551 8837 0.7250 +3551 8878 0.8540 +3551 8915 0.9960 +3551 8945 0.9500 +3551 8988 0.7310 +3551 9020 0.9910 +3551 9021 0.4860 +3551 9025 0.4010 +3551 9097 0.4990 +3551 9099 0.5130 +3551 9172 0.9170 +3551 9353 0.4120 +3551 9370 0.4400 +3551 9451 0.9180 +3551 9641 0.8410 +3551 9684 0.8570 +3551 9755 0.5780 +3551 9817 0.9970 +3551 9825 0.8330 +3551 9903 0.6400 +3551 9989 0.4170 +3551 10000 0.9170 +3551 10010 0.8040 +3551 10044 0.5110 +3551 10133 0.6940 +3551 10241 0.6270 +3551 10382 0.4070 +3551 10392 0.7340 +3551 10399 0.5610 +3551 10454 0.9940 +3551 10499 0.4660 +3551 10537 0.4280 +3551 10600 0.4180 +3551 10616 0.8400 +3551 10673 0.4960 +3551 10758 0.8850 +3551 10888 0.9000 +3551 10892 0.9850 +3551 10935 0.4070 +3551 10987 0.7340 +3551 11035 0.6370 +3551 11124 0.6600 +3551 11140 0.9650 +3551 11214 0.4890 +3551 11274 0.6870 +3551 23085 0.9940 +3551 23118 0.9920 +3551 23291 0.5810 +3551 23327 0.4260 +3551 23328 0.5450 +3551 23411 0.4580 +3551 23586 0.7900 +3551 23643 0.6860 +3551 23683 0.5400 +3551 26133 0.5160 +3551 26994 0.4670 +3551 27005 0.4470 +3551 27102 0.9090 +3551 27429 0.5880 +3551 29108 0.7630 +3551 29110 0.9430 +3551 29775 0.6570 +3551 29886 0.4550 +3551 51135 0.9350 +3551 51256 0.9130 +3551 51284 0.5680 +3551 51311 0.4930 +3551 54106 0.5150 +3551 54205 0.4500 +3551 54472 0.5280 +3551 55072 0.8790 +3551 55339 0.4190 +3551 56957 0.5530 +3551 57161 0.6430 +3551 57162 0.7630 +3551 57506 0.9960 +3551 57521 0.6910 +3551 57805 0.4700 +3551 64127 0.8070 +3551 64135 0.7390 +3551 64170 0.9490 +3551 64332 0.4450 +3551 79004 0.6610 +3551 79092 0.4860 +3551 79132 0.6190 +3551 79155 0.8460 +3551 79671 0.8450 +3551 80149 0.4610 +3551 80216 0.4190 +3551 81030 0.5970 +3551 81858 0.8070 +3551 84166 0.9890 +3551 84282 0.6360 +3551 84433 0.8960 +3551 84676 0.5190 +3551 84807 0.4630 +3551 84876 0.4230 +3551 89122 0.5860 +3551 91975 0.4450 +3551 92610 0.4370 +3551 112399 0.6480 +3551 113457 0.4210 +3551 114548 0.4810 +3551 114609 0.6230 +3551 114907 0.4910 +3551 115650 0.5050 +3551 121457 0.9430 +3551 133482 0.4220 +3551 135644 0.6940 +3551 137902 0.5510 +3551 148022 0.6910 +3551 197358 0.5190 +3551 203068 0.6730 +3551 220213 0.4580 +3551 246330 0.6430 +3551 253260 0.7090 +3551 257397 0.9860 +3551 260434 0.6030 +3551 347733 0.4070 +3551 353376 0.6710 +3551 440093 0.6120 +3551 440275 0.9060 +3551 440686 0.6120 +3551 653604 0.6120 +3552 3553 0.9990 +3552 3554 0.9990 +3552 3556 0.9980 +3552 3557 0.9900 +3552 3558 0.9970 +3552 3559 0.6150 +3552 3561 0.5610 +3552 3562 0.9940 +3552 3565 0.9950 +3552 3566 0.6880 +3552 3567 0.9180 +3552 3569 0.9890 +3552 3570 0.8230 +3552 3572 0.6170 +3552 3574 0.7890 +3552 3575 0.7130 +3552 3576 0.9740 +3552 3577 0.6620 +3552 3578 0.7700 +3552 3579 0.7310 +3552 3586 0.9710 +3552 3587 0.4660 +3552 3588 0.5200 +3552 3589 0.8270 +3552 3592 0.5310 +3552 3593 0.6750 +3552 3594 0.4310 +3552 3596 0.9430 +3552 3597 0.5570 +3552 3598 0.5430 +3552 3600 0.8760 +3552 3603 0.9470 +3552 3605 0.9290 +3552 3606 0.9970 +3552 3620 0.6140 +3552 3627 0.9580 +3552 3630 0.7320 +3552 3654 0.9770 +3552 3656 0.8760 +3552 3659 0.5440 +3552 3661 0.5880 +3552 3662 0.4270 +3552 3663 0.4280 +3552 3665 0.5350 +3552 3682 0.4630 +3552 3683 0.4500 +3552 3684 0.7000 +3552 3687 0.6210 +3552 3688 0.4040 +3552 3689 0.5520 +3552 3716 0.5410 +3552 3717 0.5670 +3552 3725 0.9440 +3552 3791 0.4640 +3552 3815 0.4460 +3552 3827 0.5330 +3552 3845 0.4030 +3552 3902 0.4050 +3552 3934 0.5470 +3552 3952 0.8360 +3552 3956 0.4070 +3552 3958 0.4550 +3552 3976 0.7940 +3552 4015 0.6320 +3552 4049 0.7790 +3552 4050 0.4340 +3552 4057 0.5300 +3552 4065 0.5300 +3552 4087 0.4490 +3552 4088 0.4780 +3552 4089 0.6060 +3552 4097 0.4300 +3552 4153 0.4310 +3552 4210 0.7200 +3552 4233 0.5770 +3552 4254 0.7260 +3552 4282 0.5560 +3552 4283 0.7300 +3552 4312 0.7980 +3552 4313 0.6070 +3552 4314 0.8070 +3552 4316 0.4730 +3552 4317 0.5320 +3552 4318 0.7340 +3552 4319 0.4830 +3552 4321 0.5040 +3552 4322 0.6430 +3552 4323 0.4060 +3552 4340 0.4010 +3552 4345 0.5570 +3552 4353 0.7150 +3552 4360 0.5960 +3552 4599 0.4670 +3552 4609 0.5140 +3552 4684 0.4610 +3552 4706 0.4950 +3552 4772 0.4180 +3552 4780 0.4910 +3552 4790 0.9460 +3552 4791 0.8260 +3552 4792 0.8390 +3552 4793 0.5850 +3552 4794 0.4530 +3552 4803 0.6080 +3552 4842 0.4170 +3552 4843 0.6200 +3552 4846 0.6870 +3552 4907 0.4850 +3552 4909 0.4100 +3552 4973 0.4520 +3552 5004 0.4050 +3552 5005 0.4030 +3552 5008 0.7560 +3552 5054 0.7580 +3552 5055 0.5120 +3552 5133 0.4190 +3552 5155 0.4180 +3552 5175 0.5330 +3552 5196 0.5070 +3552 5228 0.4360 +3552 5265 0.4420 +3552 5266 0.4020 +3552 5327 0.5060 +3552 5328 0.5450 +3552 5329 0.6280 +3552 5340 0.5710 +3552 5443 0.5990 +3552 5465 0.4730 +3552 5468 0.5880 +3552 5473 0.4840 +3552 5551 0.5670 +3552 5566 0.4280 +3552 5567 0.4280 +3552 5568 0.4280 +3552 5588 0.4270 +3552 5595 0.7160 +3552 5599 0.6430 +3552 5600 0.4710 +3552 5603 0.4530 +3552 5604 0.6010 +3552 5609 0.4380 +3552 5610 0.4300 +3552 5617 0.5630 +3552 5657 0.6570 +3552 5728 0.4450 +3552 5734 0.4020 +3552 5741 0.5410 +3552 5742 0.4440 +3552 5743 0.8230 +3552 5744 0.4450 +3552 5788 0.7640 +3552 5806 0.4640 +3552 5896 0.4020 +3552 5966 0.7310 +3552 5970 0.8930 +3552 5971 0.5910 +3552 5972 0.5220 +3552 6278 0.4260 +3552 6279 0.4020 +3552 6283 0.4340 +3552 6284 0.9850 +3552 6285 0.4330 +3552 6288 0.5200 +3552 6289 0.5110 +3552 6300 0.4490 +3552 6346 0.5870 +3552 6347 0.9340 +3552 6348 0.9230 +3552 6351 0.9210 +3552 6354 0.6930 +3552 6355 0.7410 +3552 6356 0.9740 +3552 6357 0.5080 +3552 6359 0.4250 +3552 6361 0.6330 +3552 6362 0.4790 +3552 6363 0.6880 +3552 6364 0.8950 +3552 6366 0.6550 +3552 6367 0.7710 +3552 6369 0.5380 +3552 6372 0.7080 +3552 6373 0.6170 +3552 6374 0.8150 +3552 6376 0.8290 +3552 6387 0.6820 +3552 6401 0.7220 +3552 6402 0.5580 +3552 6403 0.6220 +3552 6532 0.5910 +3552 6590 0.4050 +3552 6647 0.4200 +3552 6648 0.6480 +3552 6688 0.4160 +3552 6696 0.5780 +3552 6714 0.5170 +3552 6772 0.7410 +3552 6773 0.4150 +3552 6774 0.8610 +3552 6775 0.4410 +3552 6776 0.4500 +3552 6777 0.4510 +3552 6778 0.5180 +3552 6850 0.4670 +3552 6863 0.8010 +3552 6868 0.4550 +3552 6885 0.6410 +3552 7037 0.6510 +3552 7039 0.6540 +3552 7040 0.7640 +3552 7042 0.5680 +3552 7043 0.5290 +3552 7056 0.4910 +3552 7057 0.4340 +3552 7066 0.4470 +3552 7070 0.4800 +3552 7076 0.6720 +3552 7077 0.5410 +3552 7078 0.4150 +3552 7082 0.4320 +3552 7096 0.6070 +3552 7097 0.8700 +3552 7098 0.8070 +3552 7099 0.9740 +3552 7100 0.8410 +3552 7113 0.4460 +3552 7122 0.4040 +3552 7124 0.9940 +3552 7128 0.6060 +3552 7130 0.6860 +3552 7132 0.9340 +3552 7133 0.7700 +3552 7157 0.6570 +3552 7185 0.4850 +3552 7187 0.4460 +3552 7189 0.9560 +3552 7292 0.4180 +3552 7293 0.6510 +3552 7295 0.4020 +3552 7297 0.4350 +3552 7369 0.6430 +3552 7412 0.7200 +3552 7424 0.5900 +3552 7450 0.5070 +3552 7474 0.4220 +3552 7481 0.4160 +3552 7498 0.4270 +3552 7837 0.6060 +3552 7850 0.9990 +3552 7852 0.7450 +3552 8517 0.6570 +3552 8600 0.8010 +3552 8651 0.4950 +3552 8717 0.4570 +3552 8737 0.5070 +3552 8741 0.4890 +3552 8742 0.4080 +3552 8743 0.4790 +3552 8744 0.5350 +3552 8767 0.5950 +3552 8771 0.5950 +3552 8772 0.4290 +3552 8807 0.6650 +3552 8808 0.8750 +3552 8809 0.8490 +3552 8817 0.5890 +3552 8822 0.5880 +3552 8823 0.5970 +3552 8837 0.4140 +3552 9021 0.5660 +3552 9034 0.5690 +3552 9169 0.4140 +3552 9173 0.8520 +3552 9235 0.4830 +3552 9261 0.6230 +3552 9308 0.5160 +3552 9332 0.5900 +3552 9370 0.5960 +3552 9447 0.7310 +3552 9507 0.5400 +3552 9508 0.5120 +3552 9536 0.4670 +3552 9560 0.5040 +3552 9636 0.4250 +3552 9641 0.4250 +3552 9966 0.5900 +3552 10068 0.5800 +3552 10135 0.4360 +3552 10344 0.6850 +3552 10392 0.5130 +3552 10417 0.4460 +3552 10454 0.5630 +3552 10456 0.8340 +3552 10457 0.4710 +3552 10563 0.5320 +3552 10631 0.6610 +3552 10663 0.4560 +3552 10673 0.5430 +3552 10850 0.7530 +3552 10987 0.4670 +3552 11009 0.5090 +3552 11035 0.4200 +3552 11096 0.5190 +3552 11141 0.6080 +3552 11213 0.7560 +3552 22861 0.6710 +3552 22900 0.4640 +3552 22914 0.4480 +3552 23118 0.4730 +3552 23411 0.4470 +3552 23529 0.4280 +3552 23586 0.5890 +3552 23643 0.5330 +3552 23765 0.5280 +3552 26253 0.4660 +3552 26280 0.6070 +3552 26281 0.5960 +3552 26525 0.8300 +3552 27006 0.6020 +3552 27177 0.8210 +3552 27178 0.8070 +3552 27179 0.7890 +3552 27189 0.4330 +3552 27190 0.4110 +3552 29108 0.7910 +3552 29110 0.4470 +3552 29126 0.6300 +3552 29851 0.4010 +3552 29949 0.5400 +3552 30009 0.5070 +3552 30816 0.4340 +3552 30835 0.4630 +3552 50616 0.7750 +3552 50943 0.6690 +3552 51083 0.4690 +3552 51135 0.9200 +3552 51284 0.7660 +3552 51295 0.4120 +3552 51311 0.5590 +3552 51497 0.4470 +3552 51561 0.5580 +3552 51660 0.4470 +3552 54106 0.8970 +3552 54205 0.4790 +3552 54209 0.4780 +3552 54210 0.6620 +3552 54472 0.7160 +3552 55655 0.5020 +3552 55801 0.4160 +3552 56300 0.7960 +3552 56729 0.5860 +3552 57007 0.4390 +3552 57506 0.4230 +3552 57817 0.5090 +3552 58191 0.6030 +3552 58484 0.7340 +3552 59067 0.4050 +3552 59272 0.6210 +3552 59307 0.6930 +3552 64127 0.5970 +3552 64135 0.5260 +3552 64170 0.4260 +3552 64332 0.6320 +3552 64581 0.5420 +3552 64805 0.4300 +3552 64806 0.4470 +3552 79576 0.4410 +3552 79792 0.7570 +3552 80380 0.6740 +3552 80381 0.5420 +3552 81501 0.4580 +3552 81793 0.4340 +3552 81858 0.4180 +3552 84639 0.7810 +3552 84666 0.5940 +3552 84868 0.4330 +3552 85480 0.6450 +3552 90865 0.8200 +3552 91662 0.4100 +3552 93978 0.4170 +3552 112744 0.7920 +3552 114548 0.8450 +3552 114609 0.6780 +3552 115004 0.4540 +3552 137902 0.6060 +3552 148022 0.4070 +3552 149233 0.5300 +3552 169355 0.5490 +3552 171389 0.4250 +3552 246330 0.4610 +3552 257202 0.5430 +3552 386653 0.5410 +3552 388698 0.4640 +3552 405754 0.4080 +3552 414062 0.7800 +3552 414325 0.4450 +3552 493869 0.5270 +3552 100289462 0.4010 +3552 100506658 0.4500 +3552 100526664 0.5300 +3553 3554 0.9990 +3553 3556 0.9990 +3553 3557 0.9680 +3553 3558 0.9990 +3553 3559 0.8690 +3553 3561 0.6080 +3553 3562 0.9770 +3553 3563 0.4600 +3553 3565 0.9980 +3553 3566 0.7460 +3553 3567 0.9980 +3553 3569 0.9960 +3553 3570 0.9750 +3553 3572 0.6620 +3553 3574 0.9090 +3553 3575 0.7580 +3553 3576 0.9940 +3553 3577 0.8790 +3553 3578 0.9160 +3553 3579 0.8370 +3553 3586 0.9910 +3553 3587 0.7910 +3553 3588 0.5280 +3553 3589 0.7520 +3553 3592 0.5790 +3553 3593 0.6720 +3553 3594 0.5320 +3553 3595 0.4540 +3553 3596 0.9530 +3553 3597 0.6130 +3553 3598 0.6040 +3553 3600 0.8720 +3553 3601 0.6340 +3553 3603 0.7750 +3553 3605 0.9620 +3553 3606 0.9900 +3553 3620 0.7480 +3553 3627 0.9620 +3553 3630 0.8960 +3553 3654 0.9910 +3553 3656 0.7700 +3553 3659 0.7110 +3553 3661 0.7360 +3553 3662 0.5910 +3553 3663 0.5980 +3553 3665 0.6710 +3553 3667 0.6400 +3553 3673 0.4160 +3553 3674 0.4770 +3553 3676 0.4890 +3553 3682 0.5970 +3553 3683 0.5870 +3553 3684 0.8530 +3553 3687 0.8050 +3553 3688 0.5440 +3553 3689 0.7860 +3553 3690 0.4780 +3553 3700 0.5280 +3553 3716 0.6440 +3553 3717 0.8060 +3553 3718 0.5260 +3553 3725 0.9870 +3553 3726 0.6790 +3553 3727 0.4040 +3553 3732 0.5410 +3553 3791 0.5780 +3553 3815 0.5850 +3553 3820 0.5310 +3553 3821 0.4580 +3553 3824 0.4600 +3553 3827 0.6870 +3553 3845 0.4850 +3553 3902 0.4880 +3553 3916 0.5450 +3553 3929 0.6740 +3553 3934 0.7610 +3553 3936 0.4190 +3553 3952 0.8540 +3553 3953 0.5290 +3553 3956 0.5040 +3553 3958 0.6550 +3553 3965 0.4920 +3553 3976 0.7850 +3553 3977 0.7040 +3553 3991 0.4110 +3553 4000 0.4380 +3553 4001 0.5340 +3553 4015 0.7270 +3553 4023 0.5050 +3553 4035 0.4760 +3553 4049 0.8600 +3553 4050 0.5070 +3553 4055 0.4230 +3553 4057 0.6380 +3553 4065 0.4040 +3553 4067 0.7630 +3553 4069 0.5240 +3553 4087 0.6270 +3553 4088 0.6370 +3553 4089 0.6660 +3553 4092 0.5260 +3553 4094 0.6240 +3553 4097 0.4850 +3553 4128 0.4460 +3553 4129 0.4540 +3553 4130 0.4160 +3553 4133 0.4170 +3553 4137 0.5180 +3553 4151 0.5160 +3553 4153 0.5370 +3553 4155 0.5890 +3553 4170 0.5250 +3553 4179 0.4230 +3553 4204 0.5480 +3553 4210 0.9350 +3553 4215 0.5770 +3553 4217 0.5220 +3553 4225 0.4490 +3553 4233 0.4290 +3553 4254 0.7290 +3553 4261 0.4520 +3553 4282 0.6700 +3553 4283 0.8550 +3553 4306 0.4040 +3553 4311 0.4980 +3553 4312 0.8730 +3553 4313 0.7450 +3553 4314 0.8320 +3553 4316 0.7420 +3553 4317 0.7150 +3553 4318 0.9490 +3553 4319 0.5750 +3553 4321 0.7590 +3553 4322 0.8230 +3553 4323 0.5140 +3553 4340 0.5740 +3553 4345 0.6280 +3553 4353 0.8600 +3553 4360 0.8120 +3553 4481 0.5210 +3553 4493 0.4060 +3553 4586 0.5450 +3553 4594 0.4250 +3553 4599 0.7460 +3553 4600 0.4280 +3553 4609 0.7780 +3553 4671 0.5580 +3553 4684 0.5920 +3553 4688 0.5620 +3553 4689 0.4910 +3553 4706 0.5740 +3553 4734 0.4270 +3553 4772 0.5290 +3553 4780 0.7490 +3553 4790 0.9960 +3553 4791 0.7710 +3553 4792 0.9450 +3553 4793 0.6680 +3553 4794 0.5200 +3553 4803 0.7280 +3553 4804 0.6150 +3553 4842 0.6130 +3553 4843 0.8030 +3553 4846 0.6990 +3553 4851 0.4800 +3553 4852 0.5200 +3553 4878 0.4830 +3553 4879 0.4670 +3553 4886 0.4620 +3553 4907 0.6140 +3553 4908 0.4180 +3553 4914 0.4710 +3553 4915 0.4760 +3553 4929 0.4030 +3553 4938 0.4780 +3553 4939 0.4660 +3553 4973 0.6050 +3553 4988 0.4190 +3553 5004 0.4850 +3553 5005 0.4760 +3553 5008 0.7490 +3553 5020 0.4610 +3553 5021 0.4080 +3553 5023 0.4390 +3553 5024 0.4070 +3553 5025 0.5080 +3553 5027 0.6710 +3553 5029 0.4890 +3553 5031 0.4130 +3553 5045 0.4960 +3553 5054 0.7460 +3553 5055 0.5850 +3553 5068 0.4110 +3553 5071 0.4040 +3553 5122 0.4080 +3553 5133 0.5510 +3553 5141 0.4610 +3553 5142 0.4020 +3553 5155 0.5020 +3553 5156 0.6240 +3553 5159 0.6580 +3553 5175 0.7010 +3553 5176 0.5640 +3553 5196 0.6220 +3553 5197 0.4790 +3553 5199 0.4050 +3553 5209 0.6680 +3553 5216 0.5430 +3553 5228 0.5430 +3553 5241 0.4060 +3553 5265 0.6030 +3553 5266 0.5390 +3553 5294 0.6000 +3553 5295 0.4760 +3553 5315 0.4640 +3553 5320 0.5180 +3553 5321 0.5180 +3553 5327 0.6240 +3553 5328 0.7650 +3553 5329 0.6020 +3553 5340 0.6220 +3553 5341 0.4470 +3553 5345 0.5380 +3553 5443 0.6980 +3553 5444 0.4680 +3553 5465 0.7110 +3553 5467 0.5610 +3553 5468 0.8580 +3553 5473 0.6140 +3553 5478 0.4690 +3553 5506 0.4340 +3553 5538 0.4610 +3553 5551 0.6640 +3553 5552 0.6570 +3553 5566 0.6010 +3553 5567 0.6010 +3553 5568 0.6010 +3553 5578 0.4590 +3553 5580 0.4140 +3553 5590 0.4870 +3553 5594 0.6530 +3553 5595 0.8600 +3553 5599 0.8450 +3553 5600 0.5850 +3553 5601 0.4750 +3553 5603 0.5790 +3553 5604 0.5240 +3553 5606 0.4950 +3553 5609 0.5210 +3553 5610 0.7040 +3553 5617 0.5110 +3553 5657 0.5920 +3553 5663 0.5810 +3553 5664 0.4090 +3553 5696 0.4340 +3553 5698 0.4010 +3553 5724 0.4240 +3553 5728 0.7380 +3553 5731 0.5630 +3553 5733 0.6070 +3553 5734 0.6080 +3553 5741 0.5730 +3553 5742 0.7480 +3553 5743 0.9740 +3553 5744 0.4550 +3553 5747 0.4300 +3553 5770 0.7080 +3553 5781 0.6420 +3553 5788 0.8070 +3553 5806 0.6010 +3553 5868 0.4980 +3553 5880 0.4570 +3553 5896 0.5410 +3553 5919 0.4760 +3553 5921 0.4140 +3553 5966 0.7720 +3553 5970 0.9900 +3553 5971 0.6910 +3553 5972 0.6880 +3553 6037 0.4210 +3553 6041 0.4380 +3553 6097 0.7130 +3553 6175 0.4120 +3553 6198 0.5120 +3553 6275 0.5060 +3553 6278 0.4780 +3553 6279 0.6560 +3553 6280 0.5950 +3553 6283 0.7620 +3553 6285 0.6000 +3553 6288 0.7300 +3553 6289 0.7010 +3553 6291 0.4150 +3553 6300 0.5750 +3553 6319 0.4120 +3553 6346 0.6260 +3553 6347 0.9700 +3553 6348 0.9720 +3553 6351 0.9400 +3553 6354 0.7170 +3553 6355 0.6550 +3553 6356 0.9570 +3553 6357 0.7540 +3553 6359 0.4800 +3553 6361 0.6840 +3553 6362 0.7450 +3553 6363 0.7560 +3553 6364 0.9580 +3553 6366 0.5930 +3553 6367 0.8160 +3553 6368 0.4960 +3553 6369 0.6140 +3553 6370 0.4460 +3553 6372 0.7940 +3553 6373 0.7050 +3553 6374 0.7710 +3553 6375 0.4640 +3553 6376 0.8390 +3553 6382 0.4700 +3553 6387 0.7550 +3553 6391 0.4180 +3553 6401 0.8040 +3553 6402 0.7140 +3553 6403 0.7460 +3553 6404 0.5600 +3553 6441 0.4860 +3553 6469 0.4180 +3553 6504 0.4530 +3553 6506 0.5130 +3553 6507 0.4350 +3553 6513 0.4860 +3553 6514 0.4330 +3553 6517 0.5800 +3553 6524 0.4320 +3553 6532 0.6670 +3553 6556 0.4700 +3553 6590 0.5230 +3553 6609 0.4180 +3553 6614 0.5250 +3553 6615 0.4890 +3553 6622 0.6260 +3553 6647 0.6450 +3553 6648 0.8060 +3553 6649 0.4380 +3553 6657 0.4100 +3553 6662 0.5960 +3553 6667 0.5180 +3553 6678 0.4300 +3553 6688 0.6260 +3553 6696 0.6850 +3553 6714 0.6530 +3553 6720 0.5880 +3553 6721 0.4280 +3553 6750 0.4320 +3553 6772 0.8460 +3553 6773 0.5450 +3553 6774 0.9380 +3553 6775 0.5770 +3553 6776 0.6170 +3553 6777 0.5910 +3553 6778 0.6940 +3553 6794 0.4210 +3553 6813 0.4370 +3553 6850 0.6430 +3553 6855 0.5110 +3553 6863 0.6940 +3553 6868 0.5860 +3553 6869 0.4480 +3553 6885 0.6830 +3553 6908 0.4470 +3553 6999 0.4180 +3553 7010 0.5060 +3553 7019 0.4140 +3553 7037 0.6840 +3553 7039 0.6690 +3553 7040 0.9320 +3553 7042 0.6150 +3553 7043 0.5860 +3553 7044 0.5130 +3553 7046 0.4740 +3553 7048 0.4920 +3553 7054 0.6610 +3553 7056 0.6290 +3553 7057 0.5810 +3553 7066 0.4750 +3553 7070 0.5970 +3553 7076 0.7910 +3553 7077 0.6240 +3553 7078 0.5210 +3553 7079 0.4200 +3553 7082 0.7120 +3553 7096 0.8420 +3553 7097 0.9690 +3553 7098 0.8710 +3553 7099 0.9860 +3553 7100 0.8300 +3553 7113 0.5820 +3553 7122 0.6890 +3553 7124 0.9980 +3553 7127 0.6320 +3553 7128 0.7820 +3553 7130 0.7520 +3553 7132 0.9970 +3553 7133 0.9140 +3553 7137 0.4800 +3553 7157 0.7180 +3553 7166 0.4010 +3553 7185 0.5730 +3553 7186 0.4800 +3553 7187 0.6050 +3553 7188 0.4610 +3553 7189 0.9810 +3553 7276 0.4180 +3553 7292 0.4790 +3553 7293 0.6880 +3553 7295 0.6850 +3553 7297 0.5520 +3553 7305 0.5790 +3553 7334 0.4890 +3553 7350 0.5280 +3553 7351 0.5420 +3553 7358 0.4500 +3553 7369 0.8500 +3553 7412 0.8300 +3553 7424 0.7170 +3553 7432 0.4480 +3553 7442 0.6210 +3553 7448 0.4630 +3553 7450 0.6290 +3553 7474 0.5090 +3553 7494 0.7090 +3553 7498 0.6150 +3553 7534 0.5090 +3553 7538 0.4850 +3553 7837 0.8120 +3553 7850 0.9990 +3553 7852 0.8380 +3553 7942 0.4300 +3553 8061 0.4380 +3553 8074 0.4060 +3553 8288 0.4260 +3553 8290 0.5380 +3553 8320 0.5790 +3553 8356 0.5350 +3553 8399 0.5100 +3553 8517 0.8250 +3553 8519 0.4100 +3553 8600 0.8540 +3553 8638 0.4380 +3553 8639 0.5160 +3553 8651 0.6430 +3553 8660 0.4890 +3553 8678 0.6500 +3553 8685 0.4120 +3553 8717 0.5380 +3553 8718 0.4200 +3553 8737 0.6360 +3553 8741 0.5500 +3553 8742 0.5190 +3553 8743 0.5890 +3553 8744 0.4120 +3553 8767 0.7350 +3553 8772 0.5740 +3553 8784 0.4270 +3553 8795 0.4640 +3553 8797 0.4400 +3553 8801 0.4610 +3553 8807 0.6690 +3553 8808 0.8260 +3553 8809 0.8420 +3553 8817 0.6660 +3553 8822 0.6600 +3553 8823 0.6710 +3553 8829 0.4280 +3553 8837 0.5430 +3553 8842 0.4180 +3553 8843 0.4090 +3553 8856 0.4790 +3553 8862 0.4170 +3553 8870 0.4790 +3553 8877 0.4940 +3553 8878 0.6910 +3553 8915 0.4560 +3553 8972 0.4330 +3553 8988 0.5820 +3553 8989 0.5180 +3553 9021 0.8190 +3553 9023 0.4400 +3553 9034 0.7440 +3553 9051 0.4900 +3553 9075 0.4520 +3553 9076 0.6420 +3553 9169 0.5580 +3553 9172 0.4160 +3553 9173 0.8920 +3553 9213 0.4800 +3553 9235 0.5910 +3553 9261 0.4360 +3553 9308 0.7270 +3553 9314 0.4640 +3553 9332 0.8400 +3553 9360 0.4550 +3553 9370 0.8330 +3553 9436 0.4300 +3553 9437 0.4800 +3553 9447 0.8740 +3553 9451 0.6020 +3553 9474 0.5980 +3553 9507 0.6970 +3553 9508 0.6620 +3553 9516 0.5530 +3553 9518 0.4860 +3553 9536 0.7800 +3553 9554 0.5600 +3553 9560 0.5690 +3553 9611 0.5510 +3553 9619 0.4790 +3553 9622 0.4310 +3553 9636 0.5720 +3553 9641 0.5900 +3553 9817 0.6220 +3553 9966 0.6490 +3553 9971 0.5450 +3553 10010 0.4130 +3553 10015 0.4090 +3553 10018 0.4460 +3553 10062 0.4240 +3553 10068 0.5900 +3553 10135 0.6610 +3553 10216 0.4580 +3553 10219 0.4320 +3553 10288 0.4100 +3553 10316 0.4130 +3553 10344 0.5580 +3553 10365 0.4170 +3553 10379 0.4610 +3553 10392 0.7800 +3553 10410 0.4620 +3553 10454 0.5070 +3553 10461 0.5280 +3553 10462 0.5190 +3553 10524 0.5780 +3553 10533 0.6630 +3553 10538 0.4380 +3553 10544 0.4250 +3553 10561 0.4100 +3553 10563 0.7380 +3553 10626 0.6500 +3553 10628 0.7340 +3553 10630 0.4340 +3553 10631 0.4770 +3553 10663 0.6330 +3553 10673 0.6560 +3553 10724 0.4180 +3553 10763 0.4500 +3553 10803 0.4180 +3553 10850 0.5070 +3553 10871 0.4640 +3553 10891 0.6130 +3553 10892 0.7030 +3553 10987 0.4990 +3553 11009 0.5810 +3553 11035 0.6600 +3553 11082 0.5290 +3553 11096 0.7370 +3553 11167 0.4480 +3553 11213 0.7400 +3553 11251 0.4100 +3553 11266 0.4110 +3553 22861 0.8610 +3553 22863 0.4040 +3553 22900 0.6960 +3553 22914 0.5420 +3553 22926 0.5190 +3553 22943 0.5690 +3553 23118 0.7330 +3553 23410 0.4790 +3553 23411 0.7190 +3553 23495 0.5420 +3553 23542 0.4680 +3553 23569 0.4870 +3553 23586 0.7430 +3553 23601 0.4510 +3553 23604 0.4410 +3553 23621 0.5590 +3553 23643 0.7230 +3553 23705 0.5160 +3553 23765 0.7740 +3553 24145 0.6190 +3553 26191 0.4270 +3553 26253 0.7820 +3553 26281 0.6700 +3553 26291 0.5090 +3553 26471 0.5480 +3553 26525 0.8370 +3553 27006 0.6830 +3553 27035 0.6050 +3553 27159 0.4660 +3553 27165 0.4590 +3553 27177 0.7400 +3553 27178 0.8520 +3553 27179 0.4420 +3553 27189 0.6850 +3553 27190 0.4660 +3553 27202 0.4460 +3553 29108 0.9890 +3553 29110 0.6400 +3553 29126 0.7350 +3553 29851 0.4960 +3553 29949 0.5900 +3553 30009 0.7820 +3553 30816 0.5890 +3553 30835 0.6240 +3553 50489 0.5030 +3553 50506 0.5290 +3553 50507 0.6370 +3553 50615 0.4290 +3553 50616 0.8460 +3553 50848 0.4300 +3553 50856 0.4100 +3553 50943 0.8430 +3553 50964 0.4310 +3553 51062 0.4210 +3553 51083 0.5220 +3553 51094 0.4360 +3553 51129 0.4300 +3553 51135 0.9380 +3553 51284 0.8650 +3553 51311 0.7460 +3553 51430 0.4630 +3553 51497 0.5420 +3553 51561 0.6580 +3553 51660 0.4820 +3553 51738 0.5760 +3553 51806 0.5140 +3553 53342 0.4450 +3553 53831 0.5070 +3553 53832 0.4290 +3553 53905 0.5270 +3553 54106 0.9750 +3553 54205 0.6700 +3553 54209 0.6680 +3553 54210 0.7390 +3553 54472 0.8470 +3553 55054 0.5450 +3553 55540 0.4030 +3553 55655 0.7200 +3553 55801 0.6300 +3553 55829 0.4780 +3553 56300 0.8540 +3553 56670 0.4090 +3553 56729 0.7170 +3553 57506 0.5830 +3553 57817 0.6090 +3553 57818 0.4330 +3553 58191 0.6180 +3553 58484 0.9210 +3553 58985 0.4460 +3553 59067 0.5410 +3553 59082 0.6590 +3553 59272 0.7640 +3553 59307 0.5450 +3553 59341 0.4220 +3553 60675 0.4150 +3553 64127 0.8660 +3553 64135 0.6890 +3553 64170 0.6070 +3553 64332 0.6600 +3553 64422 0.5020 +3553 64581 0.7370 +3553 64805 0.6200 +3553 64806 0.5710 +3553 65018 0.4530 +3553 79132 0.5530 +3553 79258 0.4680 +3553 79602 0.4020 +3553 79671 0.4270 +3553 79792 0.9320 +3553 80149 0.7200 +3553 80380 0.5820 +3553 80381 0.5970 +3553 81501 0.5260 +3553 81631 0.5420 +3553 81793 0.5370 +3553 84166 0.5140 +3553 84557 0.4040 +3553 84639 0.7260 +3553 84666 0.7270 +3553 84706 0.5850 +3553 84818 0.5050 +3553 84823 0.4570 +3553 84868 0.5490 +3553 85480 0.6800 +3553 89780 0.4270 +3553 90865 0.8900 +3553 91543 0.4880 +3553 91662 0.6360 +3553 91860 0.5120 +3553 91937 0.4070 +3553 92579 0.4130 +3553 93978 0.5980 +3553 112744 0.8990 +3553 114548 0.9970 +3553 114609 0.7440 +3553 114907 0.4650 +3553 115004 0.6270 +3553 115361 0.5020 +3553 115362 0.6410 +3553 115908 0.4340 +3553 121340 0.4180 +3553 130120 0.5450 +3553 131450 0.5160 +3553 132014 0.5970 +3553 133482 0.4170 +3553 137902 0.8120 +3553 140609 0.6900 +3553 140885 0.5320 +3553 146433 0.5130 +3553 146713 0.6150 +3553 146722 0.5820 +3553 147945 0.4030 +3553 148022 0.5110 +3553 149233 0.7510 +3553 151306 0.4610 +3553 163351 0.5130 +3553 163688 0.5100 +3553 168400 0.4370 +3553 169355 0.6690 +3553 170482 0.4130 +3553 171389 0.7710 +3553 197259 0.6060 +3553 197358 0.4530 +3553 199713 0.6870 +3553 246778 0.4300 +3553 255738 0.4390 +3553 257202 0.7430 +3553 257397 0.4350 +3553 282616 0.4680 +3553 282617 0.4010 +3553 282618 0.5160 +3553 283420 0.4060 +3553 284110 0.6020 +3553 284194 0.4220 +3553 338322 0.4360 +3553 338339 0.4820 +3553 338442 0.5900 +3553 338557 0.6540 +3553 338773 0.4560 +3553 340061 0.5030 +3553 345456 0.5230 +3553 345611 0.4310 +3553 353376 0.4290 +3553 375189 0.5230 +3553 377841 0.4200 +3553 386653 0.5810 +3553 388125 0.4120 +3553 388646 0.5180 +3553 388698 0.4970 +3553 405754 0.5310 +3553 414062 0.8460 +3553 414325 0.5270 +3553 440093 0.5380 +3553 440686 0.5540 +3553 493869 0.7600 +3553 653145 0.4330 +3553 653361 0.6770 +3553 653604 0.5540 +3553 654346 0.4240 +3553 727897 0.4240 +3553 728378 0.6810 +3553 730249 0.6050 +3553 100133941 0.4330 +3553 100289462 0.4780 +3553 100506658 0.8020 +3554 3556 0.9990 +3554 3557 0.9990 +3554 3558 0.7490 +3554 3559 0.7600 +3554 3560 0.5580 +3554 3561 0.5440 +3554 3562 0.6220 +3554 3565 0.8040 +3554 3566 0.6990 +3554 3567 0.8030 +3554 3568 0.5780 +3554 3569 0.9970 +3554 3570 0.8340 +3554 3572 0.6080 +3554 3574 0.6950 +3554 3575 0.6900 +3554 3576 0.8700 +3554 3577 0.4360 +3554 3578 0.5280 +3554 3579 0.4900 +3554 3586 0.9170 +3554 3587 0.6690 +3554 3588 0.4370 +3554 3590 0.4230 +3554 3594 0.6360 +3554 3595 0.4340 +3554 3596 0.7610 +3554 3597 0.7090 +3554 3600 0.7310 +3554 3605 0.7230 +3554 3606 0.9650 +3554 3627 0.6100 +3554 3630 0.4120 +3554 3654 0.9990 +3554 3656 0.9660 +3554 3659 0.4270 +3554 3661 0.5430 +3554 3662 0.4540 +3554 3663 0.4220 +3554 3665 0.4500 +3554 3684 0.5890 +3554 3687 0.5400 +3554 3716 0.4320 +3554 3717 0.4360 +3554 3725 0.6030 +3554 3815 0.4090 +3554 3953 0.5020 +3554 3976 0.6710 +3554 3977 0.5780 +3554 4049 0.4460 +3554 4067 0.4150 +3554 4210 0.7090 +3554 4283 0.4910 +3554 4318 0.4920 +3554 4360 0.4440 +3554 4706 0.7100 +3554 4790 0.8170 +3554 4791 0.4210 +3554 4792 0.6940 +3554 4793 0.4730 +3554 5155 0.5260 +3554 5159 0.4590 +3554 5295 0.7220 +3554 5296 0.4770 +3554 5468 0.4030 +3554 5595 0.4210 +3554 5743 0.5690 +3554 5788 0.5100 +3554 5966 0.4300 +3554 5970 0.4460 +3554 5971 0.4150 +3554 6097 0.5300 +3554 6347 0.6820 +3554 6348 0.7020 +3554 6351 0.5870 +3554 6354 0.4470 +3554 6356 0.6740 +3554 6364 0.5400 +3554 6367 0.4290 +3554 6372 0.5340 +3554 6374 0.4570 +3554 6376 0.4460 +3554 6382 0.4280 +3554 6387 0.6510 +3554 6401 0.4060 +3554 6647 0.4950 +3554 6714 0.5410 +3554 6772 0.5670 +3554 6774 0.8070 +3554 6778 0.4410 +3554 6850 0.4200 +3554 6885 0.6280 +3554 7040 0.5140 +3554 7043 0.4010 +3554 7048 0.5960 +3554 7096 0.7630 +3554 7097 0.8670 +3554 7098 0.8320 +3554 7099 0.9440 +3554 7100 0.8380 +3554 7124 0.9960 +3554 7128 0.4190 +3554 7132 0.9210 +3554 7133 0.7030 +3554 7185 0.5620 +3554 7187 0.4310 +3554 7189 0.9990 +3554 7409 0.4790 +3554 7412 0.4520 +3554 7850 0.9970 +3554 7852 0.4210 +3554 8517 0.4740 +3554 8600 0.4170 +3554 8651 0.5320 +3554 8737 0.4330 +3554 8743 0.5690 +3554 8772 0.5090 +3554 8795 0.4840 +3554 8807 0.5620 +3554 8808 0.9660 +3554 8809 0.8240 +3554 9020 0.5900 +3554 9021 0.4930 +3554 9034 0.7080 +3554 9173 0.9380 +3554 9332 0.4430 +3554 9447 0.5490 +3554 9466 0.4540 +3554 9474 0.4520 +3554 9641 0.4100 +3554 9709 0.5690 +3554 10068 0.5070 +3554 10392 0.4700 +3554 10454 0.6380 +3554 10673 0.4390 +3554 11213 0.8770 +3554 22861 0.5140 +3554 22900 0.4610 +3554 23118 0.5000 +3554 23405 0.4460 +3554 23586 0.6220 +3554 23643 0.5150 +3554 23765 0.7270 +3554 26525 0.9240 +3554 27177 0.5980 +3554 27178 0.7240 +3554 27179 0.6110 +3554 29108 0.4800 +3554 29110 0.4340 +3554 29851 0.6680 +3554 30009 0.4860 +3554 50615 0.5010 +3554 50616 0.6070 +3554 50943 0.5200 +3554 51135 0.9960 +3554 51284 0.7620 +3554 51311 0.6750 +3554 51561 0.4350 +3554 53832 0.4600 +3554 54106 0.8010 +3554 54472 0.9710 +3554 55655 0.4260 +3554 56300 0.5160 +3554 57161 0.5940 +3554 57162 0.7330 +3554 57506 0.5930 +3554 58484 0.6990 +3554 58985 0.5930 +3554 59307 0.5300 +3554 64127 0.5680 +3554 64135 0.4710 +3554 64170 0.5820 +3554 64581 0.4880 +3554 79792 0.4770 +3554 81793 0.6150 +3554 84639 0.8980 +3554 84818 0.4180 +3554 85480 0.4220 +3554 90865 0.9900 +3554 112744 0.5220 +3554 114548 0.8060 +3554 114609 0.9860 +3554 116379 0.4090 +3554 126129 0.4020 +3554 148022 0.6170 +3554 149233 0.6200 +3554 171389 0.4020 +3554 246330 0.5400 +3554 353376 0.7970 +3554 730249 0.4400 +3554 100302736 0.4740 +3556 3557 0.5490 +3556 3565 0.4300 +3556 3567 0.6180 +3556 3569 0.4890 +3556 3576 0.4470 +3556 3596 0.4810 +3556 3606 0.8180 +3556 3654 0.9540 +3556 3656 0.6510 +3556 3815 0.9230 +3556 4706 0.6670 +3556 5789 0.9910 +3556 5792 0.5770 +3556 5802 0.9540 +3556 6347 0.5870 +3556 6774 0.4940 +3556 6822 0.4180 +3556 7097 0.4030 +3556 7099 0.4240 +3556 7124 0.4540 +3556 7189 0.9550 +3556 7850 0.9980 +3556 8807 0.7410 +3556 8808 0.9950 +3556 8809 0.9550 +3556 9173 0.9990 +3556 10068 0.5050 +3556 11213 0.5970 +3556 22865 0.4090 +3556 23413 0.4310 +3556 26525 0.8540 +3556 27177 0.8530 +3556 27178 0.5740 +3556 27179 0.9080 +3556 51135 0.9350 +3556 54472 0.8500 +3556 56300 0.7210 +3556 59307 0.5520 +3556 78999 0.6670 +3556 84631 0.4210 +3556 84639 0.7940 +3556 84868 0.4580 +3556 85480 0.5950 +3556 90865 0.9990 +3556 94030 0.5740 +3556 114548 0.4110 +3556 114609 0.4400 +3556 114798 0.5510 +3556 145581 0.4160 +3556 220972 0.5250 +3557 3558 0.5730 +3557 3559 0.4850 +3557 3565 0.7400 +3557 3566 0.4710 +3557 3567 0.6570 +3557 3569 0.9250 +3557 3570 0.6120 +3557 3574 0.5010 +3557 3575 0.4560 +3557 3576 0.9260 +3557 3577 0.6440 +3557 3578 0.4470 +3557 3579 0.6700 +3557 3586 0.9230 +3557 3587 0.4610 +3557 3596 0.7020 +3557 3600 0.5140 +3557 3603 0.4050 +3557 3605 0.6980 +3557 3606 0.7790 +3557 3620 0.6410 +3557 3627 0.6680 +3557 3630 0.4510 +3557 3656 0.5640 +3557 3659 0.4050 +3557 3684 0.4840 +3557 3717 0.4170 +3557 3934 0.5360 +3557 3952 0.4190 +3557 4049 0.4560 +3557 4210 0.7010 +3557 4283 0.7010 +3557 4312 0.6130 +3557 4314 0.4510 +3557 4316 0.4580 +3557 4318 0.5750 +3557 4321 0.4080 +3557 4322 0.5950 +3557 4353 0.4080 +3557 4360 0.4380 +3557 4598 0.4010 +3557 4616 0.4620 +3557 4790 0.6230 +3557 4792 0.4280 +3557 4843 0.4080 +3557 4973 0.4110 +3557 5027 0.4640 +3557 5054 0.4570 +3557 5265 0.5680 +3557 5328 0.4700 +3557 5329 0.4670 +3557 5724 0.5770 +3557 5743 0.5740 +3557 5970 0.5340 +3557 5971 0.5160 +3557 6279 0.5500 +3557 6280 0.4960 +3557 6283 0.5930 +3557 6288 0.5470 +3557 6347 0.7610 +3557 6348 0.7820 +3557 6351 0.6410 +3557 6354 0.5030 +3557 6355 0.4410 +3557 6356 0.5070 +3557 6362 0.4570 +3557 6364 0.6700 +3557 6367 0.4680 +3557 6372 0.5650 +3557 6373 0.6460 +3557 6374 0.5090 +3557 6376 0.4040 +3557 6387 0.6790 +3557 6556 0.5870 +3557 6772 0.4310 +3557 6774 0.7010 +3557 7040 0.5340 +3557 7076 0.4390 +3557 7096 0.4370 +3557 7097 0.5780 +3557 7099 0.7520 +3557 7100 0.6000 +3557 7124 0.8440 +3557 7128 0.4560 +3557 7130 0.5570 +3557 7132 0.5930 +3557 7133 0.8130 +3557 7189 0.4050 +3557 7293 0.4690 +3557 7850 0.9950 +3557 8000 0.4990 +3557 8638 0.4090 +3557 8710 0.4190 +3557 8718 0.4220 +3557 8807 0.4230 +3557 8808 0.4970 +3557 8809 0.6530 +3557 8843 0.4010 +3557 9021 0.4800 +3557 9034 0.4530 +3557 9050 0.6230 +3557 9051 0.6730 +3557 9117 0.4760 +3557 9173 0.6090 +3557 9308 0.4530 +3557 9332 0.4620 +3557 9407 0.4070 +3557 9547 0.5110 +3557 9663 0.5020 +3557 10068 0.4380 +3557 10563 0.5570 +3557 10673 0.4080 +3557 10850 0.4600 +3557 11018 0.4930 +3557 22861 0.5280 +3557 22900 0.4630 +3557 26253 0.5830 +3557 26525 0.5050 +3557 27177 0.6800 +3557 27179 0.4970 +3557 28232 0.4120 +3557 29108 0.6950 +3557 29126 0.4050 +3557 51311 0.4230 +3557 54210 0.6510 +3557 55655 0.4180 +3557 56832 0.4030 +3557 58191 0.4130 +3557 58484 0.5740 +3557 64127 0.5710 +3557 64170 0.5430 +3557 64581 0.4190 +3557 79792 0.4720 +3557 80332 0.4670 +3557 80380 0.4210 +3557 90865 0.6190 +3557 91662 0.4210 +3557 114548 0.7860 +3557 114609 0.5210 +3557 140609 0.4160 +3557 149233 0.5390 +3557 346689 0.5250 +3557 414062 0.4700 +3558 3559 0.9990 +3558 3560 0.9990 +3558 3561 0.9990 +3558 3562 0.9980 +3558 3563 0.8980 +3558 3565 0.9990 +3558 3566 0.9320 +3558 3567 0.9990 +3558 3568 0.8650 +3558 3569 0.9990 +3558 3570 0.9000 +3558 3572 0.7700 +3558 3574 0.9970 +3558 3575 0.9780 +3558 3576 0.9850 +3558 3577 0.4180 +3558 3578 0.9910 +3558 3579 0.4790 +3558 3581 0.8480 +3558 3586 0.9640 +3558 3587 0.8200 +3558 3588 0.8480 +3558 3589 0.7350 +3558 3590 0.7480 +3558 3593 0.4530 +3558 3594 0.9060 +3558 3595 0.8460 +3558 3596 0.9340 +3558 3597 0.7620 +3558 3598 0.7920 +3558 3600 0.9580 +3558 3601 0.9920 +3558 3603 0.6210 +3558 3605 0.9840 +3558 3606 0.8150 +3558 3608 0.5710 +3558 3620 0.8080 +3558 3627 0.8570 +3558 3630 0.7350 +3558 3635 0.6370 +3558 3636 0.5320 +3558 3654 0.4080 +3558 3659 0.5120 +3558 3661 0.4790 +3558 3662 0.8210 +3558 3665 0.4340 +3558 3672 0.4050 +3558 3673 0.4830 +3558 3676 0.6210 +3558 3682 0.6650 +3558 3683 0.5940 +3558 3684 0.7210 +3558 3687 0.7290 +3558 3689 0.5300 +3558 3700 0.6000 +3558 3702 0.6930 +3558 3716 0.9890 +3558 3717 0.8960 +3558 3718 0.9990 +3558 3725 0.7340 +3558 3726 0.5070 +3558 3782 0.4800 +3558 3791 0.4400 +3558 3802 0.5520 +3558 3804 0.5130 +3558 3811 0.5150 +3558 3815 0.5710 +3558 3820 0.6150 +3558 3821 0.7100 +3558 3822 0.5970 +3558 3824 0.6800 +3558 3827 0.4050 +3558 3845 0.7590 +3558 3902 0.7440 +3558 3916 0.7640 +3558 3937 0.7980 +3558 3952 0.5730 +3558 3953 0.7400 +3558 3958 0.4130 +3558 3959 0.4510 +3558 3965 0.5420 +3558 3976 0.4820 +3558 3977 0.7010 +3558 4015 0.5780 +3558 4049 0.7950 +3558 4057 0.4800 +3558 4065 0.6250 +3558 4068 0.6140 +3558 4072 0.4890 +3558 4087 0.4140 +3558 4088 0.4720 +3558 4094 0.4870 +3558 4100 0.4290 +3558 4102 0.5520 +3558 4155 0.5700 +3558 4170 0.4180 +3558 4179 0.4330 +3558 4193 0.6750 +3558 4254 0.5440 +3558 4277 0.5300 +3558 4282 0.4900 +3558 4283 0.7380 +3558 4312 0.4410 +3558 4313 0.4720 +3558 4314 0.4710 +3558 4318 0.6010 +3558 4340 0.6210 +3558 4352 0.7130 +3558 4353 0.5140 +3558 4360 0.5170 +3558 4507 0.5720 +3558 4609 0.7090 +3558 4654 0.5160 +3558 4684 0.8560 +3558 4747 0.5320 +3558 4772 0.7750 +3558 4773 0.9360 +3558 4775 0.6000 +3558 4776 0.5300 +3558 4790 0.8040 +3558 4792 0.5850 +3558 4803 0.5070 +3558 4820 0.5220 +3558 4843 0.5300 +3558 4846 0.4130 +3558 4860 0.7790 +3558 4893 0.6020 +3558 4907 0.6760 +3558 4942 0.4750 +3558 4988 0.5620 +3558 5045 0.4770 +3558 5054 0.4170 +3558 5125 0.4220 +3558 5133 0.8500 +3558 5156 0.7330 +3558 5159 0.7570 +3558 5175 0.5320 +3558 5238 0.4220 +3558 5277 0.4130 +3558 5284 0.9270 +3558 5290 0.5550 +3558 5291 0.5030 +3558 5293 0.6240 +3558 5295 0.5300 +3558 5296 0.4770 +3558 5328 0.5420 +3558 5335 0.5410 +3558 5340 0.5880 +3558 5443 0.5100 +3558 5468 0.4840 +3558 5473 0.4520 +3558 5534 0.4400 +3558 5551 0.8990 +3558 5566 0.4150 +3558 5567 0.4150 +3558 5568 0.4160 +3558 5588 0.4940 +3558 5594 0.4110 +3558 5595 0.5930 +3558 5599 0.4200 +3558 5604 0.4010 +3558 5617 0.4790 +3558 5618 0.7040 +3558 5657 0.4060 +3558 5728 0.5150 +3558 5743 0.6070 +3558 5770 0.4750 +3558 5771 0.4340 +3558 5777 0.6180 +3558 5781 0.4800 +3558 5788 0.7940 +3558 5817 0.5380 +3558 5819 0.6260 +3558 5832 0.4320 +3558 5896 0.7550 +3558 5966 0.6990 +3558 5970 0.8390 +3558 5971 0.4470 +3558 5972 0.4980 +3558 6097 0.7800 +3558 6188 0.4370 +3558 6346 0.5560 +3558 6347 0.8530 +3558 6348 0.8760 +3558 6351 0.8240 +3558 6354 0.6080 +3558 6355 0.4860 +3558 6356 0.8610 +3558 6357 0.5170 +3558 6359 0.4010 +3558 6361 0.7410 +3558 6363 0.5860 +3558 6364 0.6480 +3558 6366 0.5700 +3558 6367 0.7360 +3558 6369 0.4680 +3558 6370 0.4060 +3558 6373 0.6050 +3558 6374 0.5560 +3558 6375 0.5430 +3558 6376 0.7430 +3558 6382 0.4880 +3558 6387 0.6190 +3558 6391 0.4290 +3558 6401 0.5790 +3558 6402 0.8200 +3558 6403 0.5300 +3558 6464 0.8310 +3558 6490 0.6960 +3558 6504 0.4990 +3558 6513 0.4880 +3558 6520 0.5160 +3558 6652 0.4140 +3558 6654 0.5130 +3558 6693 0.5110 +3558 6696 0.4550 +3558 6714 0.5710 +3558 6772 0.7970 +3558 6773 0.4750 +3558 6774 0.8280 +3558 6775 0.7660 +3558 6776 0.9560 +3558 6777 0.9560 +3558 6778 0.8260 +3558 6850 0.8370 +3558 6863 0.4070 +3558 6868 0.4020 +3558 6888 0.4580 +3558 6932 0.6320 +3558 7037 0.7430 +3558 7038 0.4200 +3558 7039 0.5670 +3558 7040 0.7630 +3558 7042 0.5120 +3558 7043 0.4470 +3558 7048 0.5920 +3558 7056 0.4110 +3558 7062 0.4290 +3558 7066 0.4690 +3558 7070 0.6250 +3558 7076 0.4870 +3558 7084 0.5520 +3558 7096 0.4910 +3558 7097 0.6700 +3558 7098 0.7660 +3558 7099 0.7310 +3558 7100 0.6660 +3558 7113 0.4880 +3558 7124 0.9570 +3558 7132 0.7400 +3558 7133 0.5280 +3558 7157 0.7410 +3558 7167 0.4990 +3558 7170 0.8050 +3558 7185 0.4090 +3558 7189 0.4910 +3558 7268 0.4360 +3558 7292 0.6020 +3558 7293 0.7400 +3558 7297 0.7000 +3558 7299 0.4890 +3558 7305 0.4320 +3558 7329 0.4730 +3558 7345 0.4360 +3558 7369 0.7830 +3558 7378 0.5540 +3558 7409 0.6490 +3558 7412 0.6240 +3558 7425 0.4040 +3558 7490 0.4430 +3558 7535 0.7940 +3558 7837 0.6340 +3558 7850 0.6020 +3558 7852 0.6800 +3558 7932 0.4380 +3558 8000 0.4110 +3558 8027 0.4530 +3558 8277 0.4050 +3558 8320 0.6470 +3558 8349 0.5700 +3558 8361 0.4050 +3558 8503 0.4410 +3558 8566 0.4900 +3558 8600 0.4930 +3558 8639 0.7260 +3558 8651 0.5640 +3558 8659 0.4610 +3558 8718 0.4800 +3558 8743 0.5280 +3558 8744 0.7320 +3558 8764 0.4610 +3558 8784 0.8230 +3558 8795 0.4050 +3558 8797 0.5050 +3558 8809 0.4820 +3558 8817 0.4960 +3558 8822 0.4870 +3558 8823 0.6390 +3558 8829 0.4470 +3558 8854 0.4140 +3558 8890 0.4440 +3558 8892 0.5130 +3558 8915 0.4180 +3558 8995 0.6600 +3558 9021 0.5140 +3558 9034 0.6440 +3558 9172 0.4280 +3558 9173 0.4590 +3558 9180 0.6980 +3558 9235 0.4460 +3558 9308 0.6150 +3558 9332 0.5320 +3558 9370 0.4330 +3558 9380 0.5940 +3558 9436 0.7960 +3558 9437 0.8360 +3558 9466 0.7930 +3558 9560 0.4070 +3558 9563 0.5880 +3558 9846 0.4960 +3558 9966 0.4070 +3558 10004 0.5840 +3558 10018 0.6420 +3558 10219 0.7110 +3558 10232 0.5450 +3558 10254 0.5460 +3558 10288 0.5350 +3558 10320 0.6460 +3558 10344 0.5190 +3558 10421 0.4730 +3558 10462 0.5360 +3558 10538 0.5230 +3558 10563 0.5840 +3558 10578 0.5270 +3558 10663 0.5270 +3558 10666 0.6350 +3558 10673 0.5950 +3558 10725 0.4100 +3558 10803 0.4830 +3558 10850 0.5070 +3558 10859 0.4670 +3558 10870 0.6410 +3558 10880 0.4070 +3558 10892 0.4150 +3558 10894 0.4290 +3558 11006 0.5510 +3558 11009 0.6390 +3558 11040 0.6210 +3558 11119 0.4030 +3558 11126 0.5540 +3558 11148 0.4890 +3558 11251 0.5100 +3558 11326 0.4890 +3558 22806 0.4690 +3558 22807 0.4200 +3558 22914 0.8470 +3558 22934 0.4110 +3558 22974 0.4830 +3558 23308 0.7130 +3558 23510 0.4260 +3558 23586 0.5060 +3558 23765 0.6060 +3558 26191 0.5170 +3558 26227 0.4260 +3558 26281 0.4840 +3558 26525 0.4710 +3558 26526 0.4640 +3558 27006 0.4800 +3558 27040 0.4460 +3558 27087 0.6790 +3558 27177 0.4490 +3558 27178 0.4340 +3558 27294 0.5890 +3558 29126 0.8540 +3558 29851 0.8540 +3558 29949 0.4840 +3558 30009 0.8680 +3558 30816 0.5920 +3558 30835 0.5250 +3558 50615 0.9390 +3558 50616 0.8600 +3558 50943 0.9910 +3558 51071 0.4100 +3558 51284 0.6470 +3558 51311 0.5320 +3558 51497 0.6780 +3558 51561 0.5190 +3558 51744 0.5270 +3558 51806 0.4770 +3558 51816 0.5030 +3558 53832 0.7180 +3558 53833 0.6960 +3558 54106 0.7770 +3558 54205 0.4880 +3558 54923 0.4240 +3558 55146 0.4280 +3558 55349 0.4630 +3558 55509 0.5650 +3558 55540 0.4120 +3558 55703 0.4760 +3558 55801 0.5620 +3558 56912 0.4630 +3558 57509 0.5440 +3558 57823 0.4030 +3558 58191 0.4470 +3558 58985 0.8520 +3558 59067 0.7340 +3558 59272 0.9630 +3558 60468 0.5540 +3558 64127 0.4630 +3558 64135 0.6340 +3558 64170 0.4010 +3558 64225 0.4600 +3558 64421 0.4390 +3558 64581 0.4790 +3558 64806 0.4870 +3558 79465 0.4480 +3558 79589 0.5150 +3558 79671 0.4440 +3558 79679 0.6110 +3558 80321 0.5050 +3558 80328 0.4640 +3558 80329 0.4940 +3558 80380 0.6990 +3558 80381 0.8280 +3558 84162 0.6020 +3558 84433 0.4630 +3558 84662 0.4980 +3558 84706 0.4590 +3558 84818 0.4410 +3558 84868 0.7370 +3558 84941 0.4500 +3558 85480 0.6450 +3558 90865 0.8250 +3558 91860 0.4770 +3558 112744 0.7540 +3558 114548 0.4780 +3558 114836 0.6050 +3558 116379 0.6970 +3558 117289 0.5050 +3558 122622 0.4700 +3558 132014 0.4370 +3558 132612 0.6450 +3558 137902 0.6340 +3558 140885 0.4600 +3558 149041 0.5320 +3558 149233 0.9010 +3558 151531 0.5540 +3558 151888 0.7000 +3558 160760 0.4090 +3558 161823 0.4700 +3558 163688 0.4770 +3558 163702 0.7140 +3558 168400 0.6070 +3558 169355 0.7670 +3558 200895 0.4400 +3558 201633 0.6560 +3558 246778 0.4050 +3558 256987 0.4220 +3558 257202 0.4720 +3558 259197 0.7870 +3558 282616 0.5500 +3558 282618 0.6230 +3558 284194 0.5200 +3558 374383 0.6040 +3558 374403 0.4240 +3558 386653 0.5700 +3558 405754 0.5240 +3558 414062 0.4680 +3558 415116 0.5280 +3558 493869 0.4890 +3558 654346 0.5200 +3558 100133941 0.4690 +3558 100423062 0.9210 +3558 100526664 0.6250 +3558 102723407 0.9440 +3559 3560 0.9990 +3559 3561 0.9990 +3559 3562 0.8940 +3559 3563 0.6300 +3559 3565 0.9840 +3559 3566 0.7510 +3559 3567 0.9120 +3559 3568 0.7180 +3559 3569 0.9530 +3559 3570 0.8310 +3559 3572 0.4920 +3559 3574 0.9720 +3559 3575 0.9140 +3559 3576 0.6770 +3559 3578 0.9050 +3559 3581 0.4500 +3559 3586 0.9720 +3559 3587 0.7050 +3559 3589 0.7240 +3559 3592 0.6720 +3559 3593 0.8280 +3559 3594 0.7790 +3559 3595 0.7060 +3559 3596 0.9050 +3559 3597 0.6760 +3559 3600 0.9890 +3559 3601 0.9540 +3559 3603 0.6880 +3559 3605 0.8050 +3559 3606 0.7060 +3559 3620 0.6140 +3559 3627 0.6920 +3559 3630 0.6150 +3559 3635 0.5820 +3559 3636 0.5230 +3559 3662 0.5950 +3559 3682 0.4880 +3559 3683 0.4170 +3559 3684 0.4950 +3559 3687 0.4860 +3559 3702 0.5930 +3559 3716 0.9780 +3559 3717 0.8790 +3559 3718 0.9960 +3559 3820 0.4490 +3559 3821 0.4630 +3559 3845 0.5090 +3559 3902 0.6310 +3559 3952 0.7090 +3559 3976 0.7060 +3559 4049 0.5420 +3559 4065 0.4540 +3559 4283 0.6730 +3559 4318 0.4860 +3559 4609 0.4170 +3559 4668 0.4240 +3559 4684 0.5540 +3559 4790 0.6440 +3559 4818 0.4590 +3559 4893 0.4950 +3559 4907 0.4170 +3559 5008 0.7110 +3559 5133 0.7540 +3559 5154 0.7110 +3559 5155 0.7020 +3559 5290 0.4600 +3559 5291 0.4460 +3559 5293 0.5270 +3559 5295 0.4760 +3559 5296 0.4270 +3559 5551 0.7330 +3559 5617 0.7070 +3559 5771 0.7030 +3559 5777 0.5750 +3559 5788 0.6770 +3559 5896 0.6690 +3559 5966 0.4140 +3559 5970 0.4520 +3559 5972 0.4740 +3559 6097 0.4750 +3559 6320 0.4380 +3559 6347 0.5850 +3559 6348 0.7650 +3559 6351 0.6430 +3559 6354 0.4470 +3559 6356 0.5860 +3559 6361 0.4150 +3559 6364 0.6150 +3559 6373 0.4340 +3559 6375 0.4150 +3559 6387 0.4010 +3559 6402 0.6500 +3559 6404 0.4350 +3559 6464 0.7100 +3559 6504 0.5190 +3559 6654 0.6310 +3559 6772 0.6380 +3559 6774 0.6590 +3559 6775 0.5640 +3559 6776 0.9950 +3559 6777 0.9890 +3559 6778 0.4080 +3559 6850 0.7720 +3559 6932 0.5080 +3559 6938 0.4160 +3559 7037 0.4750 +3559 7040 0.4750 +3559 7066 0.6930 +3559 7070 0.4650 +3559 7099 0.4040 +3559 7124 0.8760 +3559 7128 0.4150 +3559 7132 0.7630 +3559 7133 0.7750 +3559 7185 0.4020 +3559 7292 0.4490 +3559 7293 0.6640 +3559 7297 0.7920 +3559 7412 0.5950 +3559 7535 0.4790 +3559 7850 0.4900 +3559 7852 0.4070 +3559 8320 0.5140 +3559 8639 0.4180 +3559 8651 0.4070 +3559 8718 0.4840 +3559 8784 0.8880 +3559 8807 0.5700 +3559 8809 0.7010 +3559 8995 0.5210 +3559 9034 0.5290 +3559 9173 0.4590 +3559 9332 0.4850 +3559 9370 0.4530 +3559 9398 0.5420 +3559 9437 0.5480 +3559 9547 0.4120 +3559 9846 0.4520 +3559 10019 0.4180 +3559 10068 0.4100 +3559 10219 0.5570 +3559 10288 0.4020 +3559 10320 0.6470 +3559 10332 0.4170 +3559 10538 0.5360 +3559 10563 0.4260 +3559 10578 0.4180 +3559 10663 0.6480 +3559 10666 0.4900 +3559 10673 0.6110 +3559 10850 0.6140 +3559 11009 0.7280 +3559 22806 0.4340 +3559 22807 0.5820 +3559 22914 0.4720 +3559 23274 0.5910 +3559 23532 0.4020 +3559 23765 0.5650 +3559 25824 0.4100 +3559 26191 0.7330 +3559 27189 0.4280 +3559 29126 0.6610 +3559 29851 0.6810 +3559 29949 0.7300 +3559 30009 0.8410 +3559 50604 0.6600 +3559 50615 0.8330 +3559 50616 0.8220 +3559 50943 0.9700 +3559 51284 0.5490 +3559 51561 0.7100 +3559 51705 0.4420 +3559 53342 0.6740 +3559 53347 0.4890 +3559 53833 0.4550 +3559 55540 0.4990 +3559 56832 0.6580 +3559 59067 0.7840 +3559 60468 0.5100 +3559 64135 0.4240 +3559 64375 0.5680 +3559 80381 0.4650 +3559 84868 0.7980 +3559 84991 0.6300 +3559 85480 0.7800 +3559 90865 0.6350 +3559 112744 0.4710 +3559 115352 0.4730 +3559 117289 0.4080 +3559 140885 0.4260 +3559 149233 0.6390 +3559 151888 0.4430 +3559 169355 0.5260 +3559 201633 0.7470 +3559 282616 0.6740 +3559 282617 0.6750 +3559 282618 0.6930 +3559 338376 0.6590 +3559 346689 0.4090 +3559 414062 0.4020 +3559 100526664 0.4270 +3560 3561 0.9990 +3560 3562 0.7430 +3560 3563 0.5850 +3560 3565 0.9160 +3560 3566 0.8200 +3560 3567 0.7720 +3560 3568 0.8510 +3560 3569 0.8590 +3560 3570 0.6280 +3560 3572 0.5580 +3560 3574 0.9410 +3560 3575 0.8910 +3560 3578 0.8370 +3560 3586 0.9280 +3560 3587 0.7590 +3560 3589 0.7300 +3560 3592 0.6670 +3560 3593 0.6730 +3560 3594 0.5510 +3560 3595 0.4690 +3560 3596 0.7880 +3560 3597 0.6830 +3560 3600 0.9990 +3560 3601 0.9990 +3560 3605 0.6380 +3560 3606 0.4370 +3560 3635 0.6000 +3560 3636 0.5520 +3560 3662 0.4690 +3560 3663 0.4930 +3560 3672 0.4470 +3560 3673 0.4190 +3560 3676 0.4710 +3560 3682 0.5680 +3560 3683 0.6150 +3560 3684 0.6090 +3560 3687 0.5770 +3560 3689 0.4430 +3560 3695 0.4070 +3560 3702 0.8010 +3560 3716 0.9980 +3560 3717 0.9370 +3560 3718 0.9800 +3560 3802 0.4930 +3560 3804 0.5050 +3560 3811 0.4720 +3560 3815 0.4520 +3560 3820 0.6130 +3560 3821 0.6400 +3560 3822 0.4880 +3560 3824 0.8680 +3560 3845 0.4730 +3560 3902 0.6470 +3560 3916 0.4590 +3560 3937 0.4150 +3560 3952 0.6770 +3560 3976 0.6780 +3560 4067 0.5020 +3560 4068 0.4940 +3560 4283 0.6310 +3560 4627 0.4430 +3560 4684 0.5300 +3560 4783 0.4090 +3560 4818 0.7680 +3560 4820 0.7410 +3560 4893 0.4540 +3560 5008 0.6840 +3560 5133 0.7150 +3560 5154 0.6710 +3560 5155 0.6720 +3560 5290 0.4610 +3560 5291 0.4390 +3560 5293 0.5250 +3560 5295 0.6240 +3560 5296 0.4200 +3560 5551 0.9130 +3560 5617 0.6560 +3560 5777 0.6240 +3560 5788 0.7060 +3560 5896 0.4230 +3560 6347 0.6000 +3560 6348 0.4180 +3560 6351 0.6610 +3560 6375 0.5020 +3560 6402 0.8020 +3560 6464 0.8000 +3560 6490 0.4820 +3560 6504 0.4840 +3560 6654 0.4320 +3560 6655 0.5030 +3560 6693 0.5170 +3560 6772 0.5450 +3560 6773 0.4110 +3560 6774 0.8710 +3560 6775 0.6090 +3560 6776 0.9830 +3560 6777 0.9760 +3560 6846 0.4340 +3560 6850 0.6550 +3560 6932 0.4470 +3560 7066 0.6760 +3560 7124 0.5400 +3560 7133 0.4510 +3560 7185 0.4140 +3560 7293 0.4730 +3560 7294 0.5790 +3560 7297 0.7540 +3560 7535 0.6090 +3560 7704 0.5180 +3560 7805 0.4150 +3560 7850 0.5660 +3560 8320 0.7830 +3560 8503 0.4310 +3560 8530 0.4560 +3560 8639 0.5530 +3560 8651 0.6180 +3560 8784 0.5770 +3560 8807 0.5160 +3560 8809 0.6310 +3560 9021 0.4730 +3560 9034 0.4640 +3560 9146 0.5360 +3560 9173 0.4040 +3560 9235 0.4910 +3560 9436 0.4160 +3560 9437 0.7000 +3560 9466 0.4400 +3560 9846 0.4010 +3560 10219 0.7180 +3560 10225 0.4890 +3560 10320 0.4790 +3560 10538 0.5910 +3560 10563 0.4560 +3560 10578 0.8480 +3560 10663 0.7150 +3560 10666 0.8460 +3560 10673 0.4050 +3560 10803 0.4300 +3560 11009 0.7410 +3560 11126 0.5330 +3560 22806 0.4610 +3560 22807 0.4170 +3560 22914 0.7140 +3560 26191 0.5180 +3560 27087 0.4900 +3560 27120 0.4460 +3560 29126 0.4900 +3560 29851 0.6850 +3560 29949 0.7010 +3560 30009 0.8130 +3560 50604 0.6500 +3560 50615 0.5740 +3560 50616 0.8310 +3560 50943 0.6550 +3560 51348 0.6780 +3560 51561 0.6680 +3560 51744 0.5700 +3560 53342 0.6500 +3560 53637 0.4130 +3560 53832 0.5040 +3560 55876 0.4080 +3560 56832 0.6500 +3560 57823 0.4330 +3560 58985 0.6010 +3560 59067 0.7970 +3560 64919 0.4110 +3560 84868 0.4950 +3560 85480 0.7700 +3560 94103 0.4460 +3560 114836 0.4820 +3560 115352 0.4140 +3560 117157 0.4300 +3560 117289 0.4130 +3560 149628 0.5220 +3560 151888 0.4340 +3560 154075 0.4160 +3560 201633 0.6540 +3560 257019 0.4220 +3560 259197 0.5720 +3560 282616 0.7370 +3560 282617 0.7340 +3560 282618 0.7530 +3560 338376 0.6530 +3560 100133941 0.4040 +3561 3562 0.8020 +3561 3563 0.6580 +3561 3565 0.9990 +3561 3566 0.9990 +3561 3567 0.8490 +3561 3568 0.6990 +3561 3569 0.8320 +3561 3570 0.6190 +3561 3572 0.5620 +3561 3574 0.9990 +3561 3575 0.9990 +3561 3578 0.9980 +3561 3579 0.4280 +3561 3581 0.9540 +3561 3586 0.8950 +3561 3587 0.6830 +3561 3588 0.4100 +3561 3589 0.7310 +3561 3592 0.6580 +3561 3593 0.6640 +3561 3594 0.4660 +3561 3596 0.9320 +3561 3597 0.7650 +3561 3598 0.5950 +3561 3600 0.9990 +3561 3601 0.9990 +3561 3605 0.4580 +3561 3606 0.4260 +3561 3635 0.6380 +3561 3636 0.5520 +3561 3662 0.4310 +3561 3667 0.4600 +3561 3683 0.5240 +3561 3684 0.6920 +3561 3687 0.4800 +3561 3689 0.7000 +3561 3695 0.4620 +3561 3702 0.4310 +3561 3716 0.9990 +3561 3717 0.9580 +3561 3718 0.9990 +3561 3815 0.4760 +3561 3821 0.4300 +3561 3824 0.4740 +3561 3845 0.5100 +3561 3902 0.4250 +3561 3937 0.5180 +3561 3952 0.6870 +3561 3976 0.7160 +3561 4005 0.4440 +3561 4033 0.5010 +3561 4068 0.6250 +3561 4283 0.6170 +3561 4284 0.4460 +3561 4684 0.4540 +3561 4818 0.4750 +3561 4893 0.4790 +3561 5008 0.8210 +3561 5133 0.4200 +3561 5154 0.6680 +3561 5155 0.6730 +3561 5290 0.4780 +3561 5291 0.4580 +3561 5293 0.5520 +3561 5295 0.4720 +3561 5551 0.6970 +3561 5591 0.5780 +3561 5617 0.6900 +3561 5777 0.6570 +3561 5788 0.7830 +3561 5789 0.4380 +3561 5790 0.4790 +3561 5880 0.4630 +3561 5896 0.7870 +3561 6347 0.4890 +3561 6351 0.5960 +3561 6354 0.4110 +3561 6402 0.7210 +3561 6464 0.6300 +3561 6504 0.4190 +3561 6654 0.4630 +3561 6655 0.5270 +3561 6688 0.4040 +3561 6693 0.4390 +3561 6772 0.8200 +3561 6774 0.9470 +3561 6775 0.6900 +3561 6776 0.9770 +3561 6777 0.9760 +3561 6778 0.9690 +3561 6850 0.6700 +3561 7037 0.5510 +3561 7066 0.7720 +3561 7124 0.5490 +3561 7132 0.4960 +3561 7293 0.4490 +3561 7297 0.8140 +3561 7409 0.5580 +3561 7454 0.4560 +3561 7535 0.5470 +3561 7850 0.5050 +3561 7852 0.4500 +3561 8320 0.4660 +3561 8660 0.5090 +3561 8784 0.4060 +3561 8809 0.4130 +3561 9034 0.4010 +3561 9046 0.4880 +3561 9235 0.5070 +3561 9241 0.5480 +3561 9437 0.5800 +3561 9846 0.4210 +3561 10219 0.4950 +3561 10320 0.5680 +3561 10563 0.5880 +3561 10663 0.5350 +3561 11009 0.7100 +3561 11151 0.5410 +3561 22914 0.5420 +3561 25942 0.7500 +3561 27120 0.4510 +3561 27189 0.4560 +3561 28982 0.4330 +3561 29126 0.4410 +3561 29851 0.5200 +3561 29949 0.7080 +3561 30009 0.5590 +3561 50604 0.6550 +3561 50615 0.9960 +3561 50616 0.8370 +3561 50943 0.7540 +3561 51284 0.4240 +3561 51561 0.7000 +3561 53342 0.7000 +3561 53832 0.4640 +3561 54440 0.5100 +3561 56052 0.4380 +3561 56832 0.6560 +3561 59067 0.9690 +3561 64421 0.6720 +3561 81704 0.4910 +3561 85365 0.4250 +3561 85480 0.8850 +3561 92840 0.4300 +3561 114836 0.5890 +3561 117289 0.4130 +3561 128611 0.4630 +3561 199857 0.6630 +3561 282616 0.6960 +3561 282617 0.6760 +3561 282618 0.6990 +3561 284293 0.5650 +3561 338376 0.6800 +3561 340273 0.4320 +3561 440138 0.4740 +3561 644974 0.4380 +3561 653361 0.7640 +3562 3563 0.9990 +3562 3565 0.9810 +3562 3566 0.7980 +3562 3567 0.9990 +3562 3568 0.9870 +3562 3569 0.9980 +3562 3570 0.7780 +3562 3572 0.8080 +3562 3574 0.9880 +3562 3575 0.8200 +3562 3576 0.7850 +3562 3578 0.9450 +3562 3581 0.7250 +3562 3586 0.7810 +3562 3587 0.7470 +3562 3588 0.8010 +3562 3589 0.8260 +3562 3590 0.7060 +3562 3594 0.7440 +3562 3595 0.7240 +3562 3596 0.8910 +3562 3597 0.7410 +3562 3598 0.7100 +3562 3600 0.7280 +3562 3603 0.8040 +3562 3605 0.7570 +3562 3606 0.8260 +3562 3608 0.4060 +3562 3627 0.6630 +3562 3630 0.7280 +3562 3635 0.5840 +3562 3636 0.5540 +3562 3659 0.6370 +3562 3674 0.5830 +3562 3684 0.6290 +3562 3687 0.5760 +3562 3688 0.4310 +3562 3716 0.8930 +3562 3717 0.9780 +3562 3718 0.8700 +3562 3725 0.4330 +3562 3815 0.9440 +3562 3845 0.5740 +3562 3934 0.5220 +3562 3953 0.7160 +3562 3976 0.7230 +3562 3977 0.7080 +3562 4049 0.7060 +3562 4067 0.4470 +3562 4145 0.6040 +3562 4170 0.5720 +3562 4211 0.4110 +3562 4254 0.9960 +3562 4282 0.5270 +3562 4283 0.6140 +3562 4300 0.5330 +3562 4352 0.9100 +3562 4353 0.4180 +3562 4609 0.5070 +3562 4684 0.4710 +3562 4783 0.8350 +3562 4790 0.4120 +3562 4803 0.6420 +3562 4869 0.5450 +3562 4893 0.5940 +3562 4914 0.6380 +3562 5008 0.6620 +3562 5156 0.7600 +3562 5159 0.7660 +3562 5169 0.4480 +3562 5175 0.4530 +3562 5196 0.4160 +3562 5290 0.4980 +3562 5291 0.4730 +3562 5293 0.5000 +3562 5295 0.5040 +3562 5296 0.4640 +3562 5566 0.5070 +3562 5595 0.6120 +3562 5617 0.4040 +3562 5618 0.7970 +3562 5688 0.6230 +3562 5777 0.6050 +3562 5781 0.7040 +3562 5788 0.7010 +3562 5896 0.4160 +3562 5977 0.4260 +3562 6036 0.4790 +3562 6037 0.6630 +3562 6320 0.5250 +3562 6346 0.5190 +3562 6347 0.6860 +3562 6348 0.7540 +3562 6351 0.7380 +3562 6354 0.6110 +3562 6356 0.7880 +3562 6357 0.4450 +3562 6361 0.5520 +3562 6364 0.4660 +3562 6367 0.5440 +3562 6369 0.5410 +3562 6374 0.4640 +3562 6376 0.5700 +3562 6386 0.5180 +3562 6387 0.5810 +3562 6402 0.6290 +3562 6464 0.6350 +3562 6504 0.5150 +3562 6654 0.4690 +3562 6659 0.5030 +3562 6688 0.5720 +3562 6693 0.4740 +3562 6714 0.5050 +3562 6772 0.6390 +3562 6774 0.7110 +3562 6776 0.9050 +3562 6777 0.9040 +3562 6778 0.4870 +3562 6850 0.4470 +3562 6929 0.6000 +3562 7037 0.5070 +3562 7039 0.5060 +3562 7040 0.5230 +3562 7066 0.9710 +3562 7070 0.4780 +3562 7097 0.4160 +3562 7099 0.4820 +3562 7124 0.8520 +3562 7157 0.6460 +3562 7170 0.5980 +3562 7292 0.5710 +3562 7297 0.6440 +3562 7409 0.5260 +3562 7412 0.4790 +3562 7534 0.5280 +3562 7716 0.4240 +3562 7837 0.4580 +3562 7852 0.6810 +3562 8288 0.5200 +3562 8503 0.4190 +3562 8600 0.4520 +3562 8639 0.4080 +3562 8651 0.5650 +3562 8763 0.4280 +3562 8822 0.4110 +3562 8823 0.4110 +3562 8829 0.5750 +3562 9180 0.6850 +3562 9466 0.7850 +3562 9572 0.4830 +3562 9625 0.5070 +3562 9846 0.5650 +3562 10017 0.4290 +3562 10344 0.4910 +3562 10724 0.4370 +3562 10850 0.8290 +3562 10927 0.4950 +3562 11009 0.5320 +3562 11083 0.4220 +3562 11251 0.4230 +3562 23266 0.4280 +3562 23547 0.5670 +3562 23765 0.4820 +3562 26526 0.4840 +3562 27181 0.4020 +3562 27286 0.5490 +3562 29949 0.4270 +3562 30009 0.4040 +3562 50615 0.7860 +3562 50616 0.6310 +3562 50943 0.4940 +3562 51090 0.4040 +3562 51310 0.4390 +3562 53832 0.6650 +3562 53833 0.6600 +3562 54106 0.4310 +3562 54466 0.4970 +3562 54897 0.4950 +3562 56963 0.4060 +3562 57019 0.4420 +3562 58985 0.6800 +3562 79080 0.5450 +3562 81608 0.6230 +3562 85480 0.6090 +3562 90865 0.6000 +3562 91663 0.5030 +3562 112744 0.5460 +3562 116379 0.6720 +3562 116449 0.4240 +3562 137902 0.4600 +3562 140885 0.4540 +3562 149233 0.7310 +3562 163702 0.6810 +3562 170482 0.4540 +3562 284114 0.4540 +3562 386653 0.4480 +3562 653145 0.6400 +3562 102723407 0.5930 +3563 3565 0.8390 +3563 3567 0.9370 +3563 3568 0.7320 +3563 3569 0.8890 +3563 3574 0.7880 +3563 3575 0.6550 +3563 3576 0.4090 +3563 3578 0.7420 +3563 3586 0.8240 +3563 3589 0.6990 +3563 3592 0.6500 +3563 3593 0.6670 +3563 3596 0.8000 +3563 3600 0.8240 +3563 3605 0.4360 +3563 3620 0.4630 +3563 3627 0.4130 +3563 3635 0.5710 +3563 3636 0.5310 +3563 3662 0.5740 +3563 3665 0.6270 +3563 3682 0.5840 +3563 3684 0.7520 +3563 3687 0.8780 +3563 3716 0.8570 +3563 3717 0.8790 +3563 3718 0.8480 +3563 3815 0.7090 +3563 3820 0.5330 +3563 3821 0.4250 +3563 3824 0.5950 +3563 3845 0.9180 +3563 3952 0.6680 +3563 3976 0.6590 +3563 4065 0.4500 +3563 4254 0.6320 +3563 4267 0.6540 +3563 4311 0.7840 +3563 4345 0.4100 +3563 4352 0.5860 +3563 4353 0.5840 +3563 4684 0.8720 +3563 4869 0.4470 +3563 4893 0.9240 +3563 4938 0.4040 +3563 5008 0.6960 +3563 5079 0.4180 +3563 5133 0.4110 +3563 5154 0.6620 +3563 5155 0.6670 +3563 5169 0.5850 +3563 5290 0.4520 +3563 5291 0.4280 +3563 5293 0.4690 +3563 5295 0.4160 +3563 5296 0.4160 +3563 5551 0.4340 +3563 5617 0.6580 +3563 5688 0.4300 +3563 5777 0.5800 +3563 5781 0.6230 +3563 5788 0.7490 +3563 6348 0.4300 +3563 6351 0.4250 +3563 6361 0.5430 +3563 6382 0.4460 +3563 6402 0.4840 +3563 6464 0.4210 +3563 6473 0.6240 +3563 6693 0.4880 +3563 6776 0.6900 +3563 6777 0.6830 +3563 7037 0.4360 +3563 7056 0.8180 +3563 7066 0.7480 +3563 7070 0.4770 +3563 7097 0.4160 +3563 7099 0.4440 +3563 7124 0.5560 +3563 7292 0.5520 +3563 7293 0.4320 +3563 7297 0.7170 +3563 7534 0.4990 +3563 7852 0.4610 +3563 8115 0.5290 +3563 8503 0.4020 +3563 8623 0.4840 +3563 8829 0.8410 +3563 8995 0.4120 +3563 9034 0.6440 +3563 9308 0.6690 +3563 9332 0.5430 +3563 9436 0.4360 +3563 9437 0.4040 +3563 9623 0.5120 +3563 9846 0.5950 +3563 10004 0.5160 +3563 10225 0.5090 +3563 10421 0.6060 +3563 10584 0.6710 +3563 11006 0.5030 +3563 11009 0.6900 +3563 11251 0.6070 +3563 22914 0.4450 +3563 23547 0.6020 +3563 23765 0.4480 +3563 27074 0.4600 +3563 27087 0.4800 +3563 29126 0.5410 +3563 29851 0.4660 +3563 29949 0.6820 +3563 30009 0.4030 +3563 30835 0.5590 +3563 50489 0.5760 +3563 50604 0.6500 +3563 50616 0.7550 +3563 50856 0.6410 +3563 50943 0.5710 +3563 51135 0.4220 +3563 51284 0.6040 +3563 51311 0.6500 +3563 51561 0.6680 +3563 53342 0.6500 +3563 53616 0.4260 +3563 54106 0.5860 +3563 56832 0.6950 +3563 59067 0.6630 +3563 65258 0.5750 +3563 80321 0.5060 +3563 80381 0.4330 +3563 84868 0.5300 +3563 85480 0.7710 +3563 90865 0.5540 +3563 140885 0.4620 +3563 160364 0.7310 +3563 170482 0.9410 +3563 282616 0.7040 +3563 282617 0.6980 +3563 282618 0.8250 +3563 283420 0.5870 +3563 285093 0.4730 +3563 338376 0.6930 +3563 100526664 0.4310 +3565 3566 0.9990 +3565 3567 0.9880 +3565 3568 0.9410 +3565 3569 0.9860 +3565 3570 0.9050 +3565 3572 0.7620 +3565 3574 0.9980 +3565 3575 0.9520 +3565 3576 0.9970 +3565 3577 0.4480 +3565 3578 0.9960 +3565 3579 0.5470 +3565 3581 0.8600 +3565 3586 0.9860 +3565 3587 0.9270 +3565 3588 0.8420 +3565 3589 0.6630 +3565 3590 0.7010 +3565 3593 0.4200 +3565 3594 0.8980 +3565 3595 0.9010 +3565 3596 0.9930 +3565 3597 0.9990 +3565 3598 0.9920 +3565 3600 0.9150 +3565 3601 0.6150 +3565 3603 0.6080 +3565 3605 0.9590 +3565 3606 0.8970 +3565 3620 0.7000 +3565 3627 0.8820 +3565 3630 0.6830 +3565 3654 0.4580 +3565 3659 0.7410 +3565 3661 0.5360 +3565 3662 0.8070 +3565 3663 0.6070 +3565 3665 0.4770 +3565 3667 0.8130 +3565 3673 0.4750 +3565 3676 0.5060 +3565 3682 0.6560 +3565 3683 0.5150 +3565 3684 0.7940 +3565 3687 0.8150 +3565 3688 0.5390 +3565 3689 0.5200 +3565 3700 0.4590 +3565 3702 0.6120 +3565 3716 0.9970 +3565 3717 0.8560 +3565 3718 0.9980 +3565 3725 0.6080 +3565 3791 0.5310 +3565 3815 0.5890 +3565 3820 0.5810 +3565 3821 0.4400 +3565 3824 0.4510 +3565 3827 0.4050 +3565 3902 0.5850 +3565 3916 0.5320 +3565 3934 0.4440 +3565 3952 0.6270 +3565 3953 0.7440 +3565 3958 0.5120 +3565 3965 0.4540 +3565 3976 0.5150 +3565 3977 0.7150 +3565 4000 0.4180 +3565 4014 0.4330 +3565 4015 0.4550 +3565 4049 0.7790 +3565 4056 0.4040 +3565 4057 0.4720 +3565 4065 0.6720 +3565 4067 0.4500 +3565 4068 0.6120 +3565 4087 0.4470 +3565 4088 0.4790 +3565 4094 0.5940 +3565 4097 0.4080 +3565 4128 0.8030 +3565 4153 0.4240 +3565 4155 0.5740 +3565 4210 0.4270 +3565 4254 0.6000 +3565 4282 0.5070 +3565 4283 0.7350 +3565 4312 0.4860 +3565 4313 0.5100 +3565 4314 0.6550 +3565 4316 0.4390 +3565 4317 0.4100 +3565 4318 0.6870 +3565 4321 0.4840 +3565 4322 0.4490 +3565 4340 0.7470 +3565 4345 0.5060 +3565 4352 0.7050 +3565 4353 0.6010 +3565 4360 0.8740 +3565 4481 0.5230 +3565 4586 0.5870 +3565 4599 0.4010 +3565 4609 0.5110 +3565 4684 0.6560 +3565 4747 0.5140 +3565 4772 0.6550 +3565 4773 0.7150 +3565 4775 0.5080 +3565 4780 0.5680 +3565 4790 0.8000 +3565 4792 0.5880 +3565 4803 0.5850 +3565 4843 0.6740 +3565 4846 0.4150 +3565 4851 0.4080 +3565 4907 0.5400 +3565 4922 0.4460 +3565 5008 0.5150 +3565 5054 0.4470 +3565 5055 0.4870 +3565 5133 0.6070 +3565 5154 0.5060 +3565 5156 0.7560 +3565 5159 0.7570 +3565 5175 0.5230 +3565 5196 0.4590 +3565 5228 0.4180 +3565 5284 0.4550 +3565 5290 0.4350 +3565 5293 0.4170 +3565 5295 0.4420 +3565 5296 0.4120 +3565 5340 0.6030 +3565 5443 0.4470 +3565 5465 0.4420 +3565 5467 0.4220 +3565 5468 0.6810 +3565 5473 0.5880 +3565 5551 0.6990 +3565 5591 0.5970 +3565 5594 0.5280 +3565 5595 0.5870 +3565 5599 0.4180 +3565 5618 0.6950 +3565 5728 0.4570 +3565 5734 0.4050 +3565 5743 0.7640 +3565 5788 0.7900 +3565 5896 0.6300 +3565 5966 0.4720 +3565 5970 0.6440 +3565 5971 0.4320 +3565 5972 0.4210 +3565 6036 0.4910 +3565 6037 0.6120 +3565 6095 0.4070 +3565 6097 0.6410 +3565 6198 0.4400 +3565 6346 0.6270 +3565 6347 0.9210 +3565 6348 0.8270 +3565 6351 0.8050 +3565 6354 0.6110 +3565 6355 0.5090 +3565 6356 0.9550 +3565 6357 0.5730 +3565 6361 0.7940 +3565 6362 0.6250 +3565 6363 0.5820 +3565 6364 0.6890 +3565 6366 0.5710 +3565 6367 0.8320 +3565 6368 0.4430 +3565 6369 0.6890 +3565 6370 0.4200 +3565 6373 0.6170 +3565 6374 0.6160 +3565 6375 0.4380 +3565 6376 0.7800 +3565 6382 0.5500 +3565 6387 0.7710 +3565 6401 0.6020 +3565 6402 0.7540 +3565 6403 0.6590 +3565 6490 0.4180 +3565 6504 0.4570 +3565 6529 0.4660 +3565 6614 0.4450 +3565 6688 0.5720 +3565 6693 0.5730 +3565 6696 0.5290 +3565 6714 0.5090 +3565 6772 0.8910 +3565 6773 0.4770 +3565 6774 0.9200 +3565 6775 0.7730 +3565 6776 0.7580 +3565 6777 0.7490 +3565 6778 0.9970 +3565 6850 0.5780 +3565 6863 0.4820 +3565 7037 0.4790 +3565 7039 0.7200 +3565 7040 0.8520 +3565 7042 0.5640 +3565 7043 0.5030 +3565 7048 0.4110 +3565 7056 0.4490 +3565 7062 0.5230 +3565 7066 0.4170 +3565 7070 0.5630 +3565 7076 0.7200 +3565 7082 0.4360 +3565 7096 0.7000 +3565 7097 0.8340 +3565 7098 0.6670 +3565 7099 0.8690 +3565 7100 0.5730 +3565 7124 0.9770 +3565 7132 0.5820 +3565 7133 0.4770 +3565 7157 0.7180 +3565 7189 0.5300 +3565 7249 0.4660 +3565 7268 0.5880 +3565 7292 0.6470 +3565 7293 0.6540 +3565 7295 0.5720 +3565 7297 0.8460 +3565 7374 0.4510 +3565 7412 0.6660 +3565 7424 0.4040 +3565 7442 0.4020 +3565 7535 0.5210 +3565 7704 0.4840 +3565 7837 0.6700 +3565 7850 0.4660 +3565 7852 0.6110 +3565 7932 0.4710 +3565 8288 0.6970 +3565 8290 0.4110 +3565 8320 0.5120 +3565 8349 0.4470 +3565 8482 0.4020 +3565 8600 0.7340 +3565 8639 0.6930 +3565 8651 0.7950 +3565 8660 0.6100 +3565 8718 0.4010 +3565 8743 0.4460 +3565 8744 0.4180 +3565 8784 0.6150 +3565 8809 0.4760 +3565 8817 0.6340 +3565 8822 0.6400 +3565 8823 0.6430 +3565 8829 0.5630 +3565 9021 0.7270 +3565 9034 0.7880 +3565 9173 0.6080 +3565 9180 0.7400 +3565 9235 0.4160 +3565 9308 0.7920 +3565 9332 0.7460 +3565 9370 0.5210 +3565 9436 0.4180 +3565 9437 0.4900 +3565 9466 0.8590 +3565 9655 0.6700 +3565 9966 0.4140 +3565 10004 0.4050 +3565 10219 0.4860 +3565 10320 0.5470 +3565 10344 0.7980 +3565 10392 0.6140 +3565 10461 0.4520 +3565 10462 0.4750 +3565 10538 0.5200 +3565 10563 0.7490 +3565 10631 0.5710 +3565 10641 0.5750 +3565 10663 0.4500 +3565 10673 0.6660 +3565 10724 0.4710 +3565 10800 0.4480 +3565 10803 0.4950 +3565 10850 0.5070 +3565 11005 0.5330 +3565 11009 0.5030 +3565 11082 0.4490 +3565 11251 0.7890 +3565 22861 0.5570 +3565 22914 0.5750 +3565 23049 0.5030 +3565 23308 0.5910 +3565 23411 0.4030 +3565 23495 0.4070 +3565 23586 0.5060 +3565 23643 0.4160 +3565 23765 0.7080 +3565 26281 0.6390 +3565 27006 0.6440 +3565 27069 0.4180 +3565 27087 0.4840 +3565 27159 0.7000 +3565 27178 0.4760 +3565 27181 0.4150 +3565 27189 0.4180 +3565 27190 0.4470 +3565 29126 0.7180 +3565 29851 0.8360 +3565 29949 0.6870 +3565 30009 0.8870 +3565 30816 0.5250 +3565 30835 0.6790 +3565 50489 0.5050 +3565 50615 0.9780 +3565 50616 0.8510 +3565 50848 0.5220 +3565 50943 0.9250 +3565 51284 0.6720 +3565 51311 0.5360 +3565 51497 0.6650 +3565 51554 0.4180 +3565 51561 0.7320 +3565 51752 0.4160 +3565 53832 0.7340 +3565 53833 0.7140 +3565 54106 0.7800 +3565 54205 0.4130 +3565 54209 0.5120 +3565 55004 0.4270 +3565 55509 0.4100 +3565 55540 0.5710 +3565 55801 0.5650 +3565 55975 0.4100 +3565 56729 0.5200 +3565 57379 0.7250 +3565 57521 0.7080 +3565 58191 0.4770 +3565 58528 0.6610 +3565 58985 0.7700 +3565 59067 0.7190 +3565 59272 0.5430 +3565 59340 0.5010 +3565 64092 0.4090 +3565 64121 0.6700 +3565 64127 0.5100 +3565 64135 0.4180 +3565 64581 0.5990 +3565 64806 0.6150 +3565 65258 0.4160 +3565 80332 0.4160 +3565 80380 0.6540 +3565 80381 0.8140 +3565 81501 0.5780 +3565 81793 0.5580 +3565 83933 0.4310 +3565 84666 0.6670 +3565 84868 0.7190 +3565 85480 0.8720 +3565 89857 0.4100 +3565 90865 0.9080 +3565 112744 0.7660 +3565 114548 0.5460 +3565 115650 0.4180 +3565 116379 0.7130 +3565 131450 0.5690 +3565 133396 0.4270 +3565 137902 0.6710 +3565 140885 0.5220 +3565 146433 0.4330 +3565 149233 0.9090 +3565 151888 0.4240 +3565 163702 0.7330 +3565 168400 0.4440 +3565 169355 0.6290 +3565 170482 0.4270 +3565 200081 0.4700 +3565 201633 0.4350 +3565 253260 0.4510 +3565 257144 0.4450 +3565 257202 0.4790 +3565 259197 0.4120 +3565 259307 0.5630 +3565 282616 0.4410 +3565 282618 0.4480 +3565 284194 0.4110 +3565 345611 0.4110 +3565 377630 0.4160 +3565 386653 0.7290 +3565 388698 0.5940 +3565 405754 0.5070 +3565 414062 0.4410 +3565 440686 0.4170 +3565 493869 0.4680 +3565 653604 0.4070 +3565 654346 0.4110 +3565 727897 0.4220 +3565 100133941 0.4790 +3565 100506658 0.4740 +3565 100526664 0.6720 +3565 102723407 0.5740 +3566 3567 0.9330 +3566 3568 0.7630 +3566 3569 0.9370 +3566 3570 0.8280 +3566 3574 0.9430 +3566 3575 0.8320 +3566 3576 0.6590 +3566 3578 0.9240 +3566 3581 0.5100 +3566 3586 0.9650 +3566 3587 0.8020 +3566 3588 0.4120 +3566 3589 0.7280 +3566 3590 0.4760 +3566 3592 0.7330 +3566 3593 0.6850 +3566 3594 0.6920 +3566 3595 0.5220 +3566 3596 0.9990 +3566 3597 0.9990 +3566 3598 0.9990 +3566 3600 0.8800 +3566 3601 0.6240 +3566 3605 0.7240 +3566 3606 0.4780 +3566 3627 0.4430 +3566 3659 0.4140 +3566 3662 0.5450 +3566 3667 0.7040 +3566 3684 0.6300 +3566 3687 0.5680 +3566 3716 0.9990 +3566 3717 0.9770 +3566 3718 0.9880 +3566 3952 0.7110 +3566 3976 0.7040 +3566 4352 0.4540 +3566 4360 0.5980 +3566 4586 0.4020 +3566 4790 0.4530 +3566 4843 0.4440 +3566 4985 0.4110 +3566 4988 0.4210 +3566 5008 0.7420 +3566 5154 0.6770 +3566 5155 0.6830 +3566 5617 0.6800 +3566 5777 0.7230 +3566 5781 0.8330 +3566 5788 0.5740 +3566 5971 0.4810 +3566 6336 0.4120 +3566 6347 0.6650 +3566 6348 0.4190 +3566 6356 0.7260 +3566 6361 0.5330 +3566 6367 0.4620 +3566 6369 0.4500 +3566 6402 0.4230 +3566 6464 0.7540 +3566 6772 0.7780 +3566 6774 0.8090 +3566 6775 0.4790 +3566 6776 0.6710 +3566 6777 0.6600 +3566 6778 0.9990 +3566 7040 0.5570 +3566 7048 0.5810 +3566 7066 0.6970 +3566 7097 0.5310 +3566 7099 0.5470 +3566 7124 0.6450 +3566 7132 0.4750 +3566 7133 0.5410 +3566 7268 0.4090 +3566 7297 0.9020 +3566 7412 0.4110 +3566 7450 0.4880 +3566 7850 0.5620 +3566 8320 0.5490 +3566 8519 0.5460 +3566 8651 0.7420 +3566 8660 0.6810 +3566 8809 0.4760 +3566 9021 0.5430 +3566 9046 0.4460 +3566 9173 0.5110 +3566 9332 0.4810 +3566 9655 0.9700 +3566 9846 0.4120 +3566 10117 0.4810 +3566 10344 0.6570 +3566 10365 0.5090 +3566 10524 0.5540 +3566 10615 0.4210 +3566 10631 0.4650 +3566 11009 0.7680 +3566 11251 0.5870 +3566 23765 0.6760 +3566 27159 0.6030 +3566 29126 0.4940 +3566 29851 0.6500 +3566 29949 0.8340 +3566 30009 0.6650 +3566 50604 0.6500 +3566 50615 0.7810 +3566 50616 0.8110 +3566 50943 0.5710 +3566 51131 0.5430 +3566 51561 0.7830 +3566 53342 0.6940 +3566 53832 0.4930 +3566 54106 0.4260 +3566 54209 0.4210 +3566 55540 0.6070 +3566 56832 0.6690 +3566 58985 0.4780 +3566 59067 0.8350 +3566 64581 0.4670 +3566 64806 0.5200 +3566 80332 0.6450 +3566 80380 0.4150 +3566 84666 0.5160 +3566 84818 0.4200 +3566 84824 0.4350 +3566 84957 0.4910 +3566 85480 0.8770 +3566 90865 0.7690 +3566 124783 0.4040 +3566 133396 0.4350 +3566 146722 0.5380 +3566 149233 0.5770 +3566 220042 0.4230 +3566 282616 0.6800 +3566 282617 0.6850 +3566 282618 0.7030 +3566 338376 0.6730 +3566 343450 0.4200 +3566 386653 0.5060 +3566 388698 0.4130 +3566 653361 0.4670 +3567 3568 0.9990 +3567 3569 0.9770 +3567 3570 0.7930 +3567 3572 0.7340 +3567 3574 0.9950 +3567 3575 0.8700 +3567 3576 0.9320 +3567 3578 0.9950 +3567 3579 0.6340 +3567 3581 0.7780 +3567 3586 0.9820 +3567 3587 0.8550 +3567 3588 0.7590 +3567 3589 0.7260 +3567 3590 0.6890 +3567 3594 0.7990 +3567 3595 0.8210 +3567 3596 0.9910 +3567 3597 0.8860 +3567 3598 0.9010 +3567 3600 0.8210 +3567 3603 0.6200 +3567 3605 0.9390 +3567 3606 0.7860 +3567 3620 0.4940 +3567 3627 0.8010 +3567 3630 0.5010 +3567 3635 0.5640 +3567 3636 0.5220 +3567 3659 0.6740 +3567 3662 0.5200 +3567 3682 0.5650 +3567 3684 0.6720 +3567 3687 0.6750 +3567 3716 0.6740 +3567 3717 0.8890 +3567 3718 0.6540 +3567 3725 0.4760 +3567 3815 0.5190 +3567 3820 0.4790 +3567 3821 0.4190 +3567 3845 0.4880 +3567 3902 0.4040 +3567 3952 0.5060 +3567 3953 0.6980 +3567 3976 0.4630 +3567 3977 0.6840 +3567 4049 0.7830 +3567 4057 0.4040 +3567 4094 0.4570 +3567 4254 0.5710 +3567 4283 0.7180 +3567 4312 0.5470 +3567 4314 0.5310 +3567 4318 0.5320 +3567 4340 0.4440 +3567 4352 0.6890 +3567 4353 0.5230 +3567 4360 0.4460 +3567 4586 0.5860 +3567 4684 0.5100 +3567 4790 0.5270 +3567 4792 0.4050 +3567 4803 0.4800 +3567 4843 0.4320 +3567 4893 0.4280 +3567 5055 0.4570 +3567 5133 0.4440 +3567 5156 0.7750 +3567 5159 0.7300 +3567 5290 0.4410 +3567 5291 0.4210 +3567 5293 0.5270 +3567 5295 0.6150 +3567 5296 0.5110 +3567 5340 0.5090 +3567 5468 0.4160 +3567 5473 0.6030 +3567 5551 0.5860 +3567 5553 0.6550 +3567 5566 0.5130 +3567 5595 0.4110 +3567 5617 0.5310 +3567 5618 0.6690 +3567 5743 0.4660 +3567 5777 0.5400 +3567 5781 0.6070 +3567 5788 0.6660 +3567 5896 0.5200 +3567 6036 0.6690 +3567 6037 0.8400 +3567 6095 0.4010 +3567 6097 0.5920 +3567 6320 0.4160 +3567 6346 0.5820 +3567 6347 0.8620 +3567 6348 0.8330 +3567 6351 0.8260 +3567 6354 0.6340 +3567 6355 0.4760 +3567 6356 0.9340 +3567 6357 0.5840 +3567 6359 0.4020 +3567 6361 0.7760 +3567 6362 0.4600 +3567 6363 0.4760 +3567 6364 0.6390 +3567 6366 0.4450 +3567 6367 0.6910 +3567 6369 0.7310 +3567 6373 0.5400 +3567 6374 0.5520 +3567 6376 0.6180 +3567 6386 0.5260 +3567 6387 0.6750 +3567 6401 0.4750 +3567 6402 0.5950 +3567 6403 0.4110 +3567 6464 0.4900 +3567 6654 0.4170 +3567 6659 0.4900 +3567 6688 0.4300 +3567 6772 0.6460 +3567 6774 0.5950 +3567 6775 0.6890 +3567 6776 0.7770 +3567 6777 0.7770 +3567 6778 0.8330 +3567 6850 0.4060 +3567 7039 0.5660 +3567 7040 0.6700 +3567 7042 0.4540 +3567 7043 0.4070 +3567 7066 0.4550 +3567 7070 0.4720 +3567 7076 0.4450 +3567 7096 0.4210 +3567 7097 0.6090 +3567 7098 0.5610 +3567 7099 0.6770 +3567 7100 0.4270 +3567 7124 0.9300 +3567 7132 0.4460 +3567 7268 0.5360 +3567 7292 0.6000 +3567 7293 0.5490 +3567 7297 0.6340 +3567 7412 0.5820 +3567 7534 0.5270 +3567 7837 0.5510 +3567 7852 0.4360 +3567 8288 0.7240 +3567 8320 0.4470 +3567 8503 0.5080 +3567 8600 0.4140 +3567 8639 0.5070 +3567 8651 0.4040 +3567 8784 0.4790 +3567 8809 0.4450 +3567 8817 0.4650 +3567 8822 0.4810 +3567 8823 0.6470 +3567 9021 0.5980 +3567 9034 0.5800 +3567 9173 0.7930 +3567 9180 0.7070 +3567 9308 0.4350 +3567 9436 0.4410 +3567 9437 0.5060 +3567 9466 0.7400 +3567 9474 0.4110 +3567 9966 0.4040 +3567 10219 0.5670 +3567 10344 0.7390 +3567 10394 0.5930 +3567 10563 0.5070 +3567 10631 0.5760 +3567 10673 0.5420 +3567 10800 0.5060 +3567 10850 0.5190 +3567 11009 0.6050 +3567 11251 0.7310 +3567 22914 0.4180 +3567 23308 0.4600 +3567 23405 0.4140 +3567 23765 0.6420 +3567 26281 0.4650 +3567 27006 0.4710 +3567 27033 0.4640 +3567 27069 0.4370 +3567 27159 0.4250 +3567 27181 0.5890 +3567 27189 0.6390 +3567 27190 0.6050 +3567 29126 0.5070 +3567 29851 0.6160 +3567 29949 0.6170 +3567 30009 0.8390 +3567 50615 0.7630 +3567 50616 0.8500 +3567 50943 0.8060 +3567 51284 0.5360 +3567 51497 0.5420 +3567 51561 0.4780 +3567 51744 0.4010 +3567 53832 0.7120 +3567 53833 0.6890 +3567 54106 0.5730 +3567 55540 0.7170 +3567 55801 0.7270 +3567 58985 0.7620 +3567 59067 0.5600 +3567 59272 0.4180 +3567 64127 0.4350 +3567 64581 0.4320 +3567 64806 0.7980 +3567 80380 0.5850 +3567 80381 0.5530 +3567 81608 0.5120 +3567 84666 0.4730 +3567 84868 0.4040 +3567 85480 0.8680 +3567 90865 0.9380 +3567 112744 0.8450 +3567 116379 0.7100 +3567 137902 0.5510 +3567 149233 0.8010 +3567 163702 0.7230 +3567 169355 0.4580 +3567 200081 0.5670 +3567 282616 0.4780 +3567 386653 0.7120 +3567 388698 0.5140 +3567 414062 0.4310 +3567 727897 0.4060 +3568 3569 0.7620 +3568 3570 0.7340 +3568 3572 0.4820 +3568 3574 0.7380 +3568 3578 0.8040 +3568 3581 0.4130 +3568 3586 0.7620 +3568 3587 0.5940 +3568 3588 0.5250 +3568 3589 0.7010 +3568 3592 0.6880 +3568 3593 0.6740 +3568 3594 0.4940 +3568 3596 0.8590 +3568 3597 0.5560 +3568 3600 0.7250 +3568 3635 0.5010 +3568 3636 0.4990 +3568 3716 0.8270 +3568 3717 0.8480 +3568 3718 0.7250 +3568 3952 0.7410 +3568 3976 0.7730 +3568 3977 0.4520 +3568 4067 0.4530 +3568 4352 0.4520 +3568 4771 0.4020 +3568 5008 0.6820 +3568 5154 0.6630 +3568 5155 0.6500 +3568 5293 0.4020 +3568 5295 0.4320 +3568 5553 0.4290 +3568 5617 0.6640 +3568 5777 0.5250 +3568 5781 0.5320 +3568 6036 0.6170 +3568 6037 0.6210 +3568 6356 0.5530 +3568 6368 0.4600 +3568 6369 0.4730 +3568 6382 0.6280 +3568 6386 0.9270 +3568 6464 0.4310 +3568 6659 0.7140 +3568 6776 0.6660 +3568 6777 0.6690 +3568 7066 0.6850 +3568 7124 0.5430 +3568 7297 0.7150 +3568 7534 0.4990 +3568 7850 0.5830 +3568 8288 0.6510 +3568 8503 0.4110 +3568 9094 0.8010 +3568 9173 0.4780 +3568 10147 0.4680 +3568 10344 0.5000 +3568 10631 0.4020 +3568 11009 0.6890 +3568 11076 0.5490 +3568 11251 0.7550 +3568 23765 0.6320 +3568 27120 0.4610 +3568 27181 0.7400 +3568 29949 0.6940 +3568 50604 0.6500 +3568 50615 0.4200 +3568 50616 0.7280 +3568 51561 0.6760 +3568 53342 0.6760 +3568 53832 0.6260 +3568 56832 0.6660 +3568 56913 0.4040 +3568 57105 0.4020 +3568 59067 0.6510 +3568 59340 0.4970 +3568 79866 0.4770 +3568 85480 0.8470 +3568 90865 0.7230 +3568 116379 0.4410 +3568 260429 0.6530 +3568 282616 0.6760 +3568 282617 0.6500 +3568 282618 0.6670 +3568 338376 0.6660 +3569 3570 0.9990 +3569 3572 0.9990 +3569 3574 0.9830 +3569 3575 0.9160 +3569 3576 0.9910 +3569 3577 0.8680 +3569 3578 0.9900 +3569 3579 0.8120 +3569 3581 0.7210 +3569 3586 0.9970 +3569 3587 0.9560 +3569 3588 0.8890 +3569 3589 0.9590 +3569 3590 0.9100 +3569 3592 0.6090 +3569 3593 0.6910 +3569 3594 0.9200 +3569 3595 0.9430 +3569 3596 0.9570 +3569 3597 0.7810 +3569 3598 0.8610 +3569 3600 0.8840 +3569 3601 0.6760 +3569 3603 0.6620 +3569 3605 0.9800 +3569 3606 0.9700 +3569 3620 0.7910 +3569 3627 0.9600 +3569 3630 0.9330 +3569 3654 0.7230 +3569 3656 0.6480 +3569 3659 0.6910 +3569 3661 0.7500 +3569 3662 0.6330 +3569 3663 0.6220 +3569 3665 0.8010 +3569 3667 0.7040 +3569 3673 0.4540 +3569 3674 0.5130 +3569 3676 0.5000 +3569 3678 0.4140 +3569 3682 0.6080 +3569 3683 0.5300 +3569 3684 0.8970 +3569 3685 0.4200 +3569 3687 0.7970 +3569 3688 0.7040 +3569 3689 0.6400 +3569 3690 0.5130 +3569 3700 0.5490 +3569 3716 0.9960 +3569 3717 0.9950 +3569 3718 0.9140 +3569 3725 0.9890 +3569 3726 0.4890 +3569 3727 0.4270 +3569 3791 0.6560 +3569 3811 0.4910 +3569 3815 0.7810 +3569 3820 0.4530 +3569 3821 0.4490 +3569 3824 0.4200 +3569 3827 0.6260 +3569 3832 0.4320 +3569 3845 0.8230 +3569 3875 0.4470 +3569 3880 0.4180 +3569 3902 0.5980 +3569 3916 0.5310 +3569 3929 0.8600 +3569 3934 0.8850 +3569 3952 0.9190 +3569 3953 0.9020 +3569 3958 0.7680 +3569 3959 0.4630 +3569 3960 0.4180 +3569 3965 0.4850 +3569 3976 0.9270 +3569 3977 0.9560 +3569 3991 0.4820 +3569 4000 0.5140 +3569 4001 0.5660 +3569 4015 0.6270 +3569 4018 0.4370 +3569 4023 0.7070 +3569 4035 0.4460 +3569 4049 0.7930 +3569 4050 0.4790 +3569 4055 0.4850 +3569 4057 0.6320 +3569 4065 0.4400 +3569 4067 0.4980 +3569 4072 0.5100 +3569 4087 0.6480 +3569 4088 0.6640 +3569 4089 0.7040 +3569 4092 0.5260 +3569 4094 0.5430 +3569 4097 0.4960 +3569 4128 0.4730 +3569 4129 0.4510 +3569 4137 0.4480 +3569 4145 0.4380 +3569 4151 0.5820 +3569 4153 0.5120 +3569 4155 0.6590 +3569 4162 0.4310 +3569 4170 0.6370 +3569 4179 0.4300 +3569 4192 0.4070 +3569 4193 0.4480 +3569 4210 0.6680 +3569 4211 0.5090 +3569 4217 0.5090 +3569 4233 0.8560 +3569 4241 0.4010 +3569 4254 0.9210 +3569 4282 0.7080 +3569 4283 0.8150 +3569 4306 0.4570 +3569 4311 0.5130 +3569 4312 0.8540 +3569 4313 0.8470 +3569 4314 0.8870 +3569 4316 0.6080 +3569 4317 0.6530 +3569 4318 0.9590 +3569 4319 0.5650 +3569 4321 0.7430 +3569 4322 0.7570 +3569 4323 0.5330 +3569 4340 0.6280 +3569 4345 0.6840 +3569 4352 0.7870 +3569 4353 0.8720 +3569 4360 0.7820 +3569 4481 0.5340 +3569 4493 0.4980 +3569 4519 0.5010 +3569 4524 0.6030 +3569 4586 0.5490 +3569 4594 0.4510 +3569 4599 0.6540 +3569 4600 0.4760 +3569 4609 0.7300 +3569 4613 0.4820 +3569 4616 0.6870 +3569 4654 0.4420 +3569 4656 0.4270 +3569 4684 0.6390 +3569 4688 0.4230 +3569 4747 0.4450 +3569 4772 0.6040 +3569 4773 0.4290 +3569 4780 0.8120 +3569 4790 0.9940 +3569 4791 0.7670 +3569 4792 0.9270 +3569 4793 0.4960 +3569 4794 0.4270 +3569 4803 0.7470 +3569 4804 0.4340 +3569 4837 0.5490 +3569 4842 0.6980 +3569 4843 0.7810 +3569 4846 0.7180 +3569 4851 0.5890 +3569 4852 0.7100 +3569 4853 0.4190 +3569 4854 0.4180 +3569 4878 0.5750 +3569 4879 0.6100 +3569 4901 0.4720 +3569 4907 0.6480 +3569 4908 0.4470 +3569 4914 0.5050 +3569 4915 0.4520 +3569 4929 0.4260 +3569 4938 0.6760 +3569 4939 0.6370 +3569 4940 0.5310 +3569 4973 0.5910 +3569 4982 0.6750 +3569 5004 0.5890 +3569 5005 0.6660 +3569 5008 0.9630 +3569 5020 0.4970 +3569 5027 0.6200 +3569 5045 0.5580 +3569 5054 0.8490 +3569 5055 0.5480 +3569 5068 0.4180 +3569 5069 0.4230 +3569 5133 0.6350 +3569 5141 0.4570 +3569 5154 0.6420 +3569 5155 0.5120 +3569 5156 0.8170 +3569 5159 0.8940 +3569 5168 0.4080 +3569 5175 0.7090 +3569 5196 0.6260 +3569 5197 0.4980 +3569 5209 0.4090 +3569 5228 0.5950 +3569 5241 0.4830 +3569 5243 0.4430 +3569 5265 0.6030 +3569 5266 0.4660 +3569 5284 0.4220 +3569 5286 0.4340 +3569 5290 0.4420 +3569 5293 0.4070 +3569 5294 0.5650 +3569 5295 0.5820 +3569 5315 0.4180 +3569 5320 0.4970 +3569 5321 0.4350 +3569 5327 0.7370 +3569 5328 0.7630 +3569 5329 0.7650 +3569 5340 0.6820 +3569 5346 0.4610 +3569 5443 0.8290 +3569 5444 0.5070 +3569 5460 0.5410 +3569 5465 0.7220 +3569 5467 0.5790 +3569 5468 0.8200 +3569 5473 0.6300 +3569 5478 0.4570 +3569 5506 0.4330 +3569 5551 0.6710 +3569 5566 0.6020 +3569 5567 0.6020 +3569 5568 0.6020 +3569 5578 0.4660 +3569 5580 0.4440 +3569 5594 0.9360 +3569 5595 0.9050 +3569 5599 0.9380 +3569 5600 0.5510 +3569 5601 0.6680 +3569 5603 0.5430 +3569 5604 0.8210 +3569 5605 0.5170 +3569 5606 0.4450 +3569 5610 0.6160 +3569 5617 0.6820 +3569 5618 0.7160 +3569 5657 0.5920 +3569 5663 0.4420 +3569 5688 0.4860 +3569 5696 0.4200 +3569 5697 0.4780 +3569 5698 0.4190 +3569 5727 0.5510 +3569 5728 0.6810 +3569 5730 0.4640 +3569 5733 0.5810 +3569 5734 0.5870 +3569 5741 0.6630 +3569 5742 0.7080 +3569 5743 0.9600 +3569 5744 0.5360 +3569 5747 0.4770 +3569 5770 0.4770 +3569 5771 0.5640 +3569 5781 0.7900 +3569 5788 0.8600 +3569 5806 0.8060 +3569 5836 0.5030 +3569 5879 0.5460 +3569 5896 0.5940 +3569 5919 0.5840 +3569 5950 0.5260 +3569 5966 0.6820 +3569 5970 0.9860 +3569 5971 0.6860 +3569 5972 0.7350 +3569 6010 0.4370 +3569 6037 0.4440 +3569 6041 0.4260 +3569 6093 0.4060 +3569 6095 0.5730 +3569 6097 0.7270 +3569 6175 0.4460 +3569 6194 0.5430 +3569 6198 0.5970 +3569 6272 0.5340 +3569 6275 0.5010 +3569 6278 0.4510 +3569 6279 0.5550 +3569 6280 0.4680 +3569 6283 0.5310 +3569 6285 0.6210 +3569 6288 0.9050 +3569 6289 0.8450 +3569 6291 0.4910 +3569 6300 0.6280 +3569 6319 0.4470 +3569 6346 0.7230 +3569 6347 0.9850 +3569 6348 0.9620 +3569 6351 0.9330 +3569 6354 0.7550 +3569 6355 0.6870 +3569 6356 0.8140 +3569 6357 0.5690 +3569 6359 0.4470 +3569 6361 0.8060 +3569 6362 0.6090 +3569 6363 0.8400 +3569 6364 0.9350 +3569 6366 0.6060 +3569 6367 0.8250 +3569 6368 0.4490 +3569 6369 0.5910 +3569 6370 0.4710 +3569 6372 0.7020 +3569 6373 0.7350 +3569 6374 0.8620 +3569 6375 0.4160 +3569 6376 0.7350 +3569 6382 0.6300 +3569 6387 0.8110 +3569 6391 0.4720 +3569 6401 0.8840 +3569 6402 0.7220 +3569 6403 0.8270 +3569 6404 0.4810 +3569 6431 0.4350 +3569 6441 0.5410 +3569 6446 0.4400 +3569 6462 0.5160 +3569 6469 0.5050 +3569 6476 0.4060 +3569 6504 0.4890 +3569 6506 0.4440 +3569 6513 0.5060 +3569 6514 0.4150 +3569 6517 0.6500 +3569 6521 0.4560 +3569 6524 0.4790 +3569 6532 0.4450 +3569 6556 0.5070 +3569 6590 0.4870 +3569 6591 0.4930 +3569 6614 0.5280 +3569 6615 0.7180 +3569 6622 0.5690 +3569 6647 0.5840 +3569 6648 0.6540 +3569 6649 0.4180 +3569 6653 0.6730 +3569 6657 0.5280 +3569 6662 0.6690 +3569 6667 0.4300 +3569 6678 0.4770 +3569 6688 0.5470 +3569 6693 0.4370 +3569 6696 0.7480 +3569 6714 0.7870 +3569 6720 0.6150 +3569 6721 0.4040 +3569 6737 0.4160 +3569 6750 0.6460 +3569 6772 0.9720 +3569 6773 0.6830 +3569 6774 0.9840 +3569 6775 0.8610 +3569 6776 0.8230 +3569 6777 0.8070 +3569 6778 0.9060 +3569 6794 0.5870 +3569 6850 0.6380 +3569 6855 0.4010 +3569 6863 0.6660 +3569 6868 0.6260 +3569 6869 0.4370 +3569 6885 0.4820 +3569 6908 0.4820 +3569 6999 0.4550 +3569 7010 0.7260 +3569 7015 0.4790 +3569 7019 0.4280 +3569 7025 0.4590 +3569 7035 0.4310 +3569 7036 0.4080 +3569 7037 0.6160 +3569 7039 0.6910 +3569 7040 0.9600 +3569 7042 0.8190 +3569 7043 0.6000 +3569 7046 0.5050 +3569 7048 0.5300 +3569 7052 0.4480 +3569 7054 0.5150 +3569 7056 0.6510 +3569 7057 0.7720 +3569 7058 0.6100 +3569 7066 0.7160 +3569 7070 0.6500 +3569 7076 0.9380 +3569 7077 0.7990 +3569 7078 0.4840 +3569 7079 0.6220 +3569 7082 0.6980 +3569 7096 0.8890 +3569 7097 0.9420 +3569 7098 0.8890 +3569 7099 0.9730 +3569 7100 0.8240 +3569 7113 0.6660 +3569 7122 0.7080 +3569 7124 0.9940 +3569 7126 0.4230 +3569 7128 0.8310 +3569 7130 0.7040 +3569 7132 0.9970 +3569 7133 0.8470 +3569 7137 0.6060 +3569 7139 0.4200 +3569 7157 0.7770 +3569 7173 0.5200 +3569 7184 0.4430 +3569 7185 0.5180 +3569 7186 0.4030 +3569 7187 0.7250 +3569 7189 0.8250 +3569 7251 0.4510 +3569 7276 0.5710 +3569 7291 0.4630 +3569 7292 0.7030 +3569 7293 0.7030 +3569 7295 0.5470 +3569 7297 0.9860 +3569 7301 0.4010 +3569 7305 0.4510 +3569 7314 0.4280 +3569 7321 0.4650 +3569 7324 0.4320 +3569 7341 0.5090 +3569 7350 0.5770 +3569 7351 0.4780 +3569 7356 0.4470 +3569 7412 0.9210 +3569 7423 0.6080 +3569 7424 0.7540 +3569 7431 0.4950 +3569 7432 0.4790 +3569 7442 0.6430 +3569 7448 0.6540 +3569 7450 0.7160 +3569 7474 0.5310 +3569 7494 0.6120 +3569 7498 0.6070 +3569 7535 0.4390 +3569 7538 0.5080 +3569 7704 0.6750 +3569 7767 0.4190 +3569 7837 0.8250 +3569 7850 0.7380 +3569 7852 0.9210 +3569 7941 0.5100 +3569 8013 0.4280 +3569 8061 0.5330 +3569 8074 0.6700 +3569 8200 0.4620 +3569 8288 0.5370 +3569 8290 0.7460 +3569 8349 0.4310 +3569 8356 0.7460 +3569 8399 0.4580 +3569 8517 0.6020 +3569 8519 0.4240 +3569 8549 0.4590 +3569 8600 0.8100 +3569 8638 0.4410 +3569 8639 0.6030 +3569 8651 0.7480 +3569 8660 0.5400 +3569 8678 0.6090 +3569 8697 0.4140 +3569 8717 0.4410 +3569 8737 0.5290 +3569 8742 0.5360 +3569 8743 0.5820 +3569 8744 0.4520 +3569 8764 0.4570 +3569 8767 0.5440 +3569 8771 0.4150 +3569 8772 0.4880 +3569 8784 0.5450 +3569 8795 0.4800 +3569 8797 0.4540 +3569 8808 0.4540 +3569 8809 0.6170 +3569 8817 0.7040 +3569 8822 0.6970 +3569 8823 0.7030 +3569 8829 0.4910 +3569 8835 0.4340 +3569 8837 0.5020 +3569 8842 0.5800 +3569 8856 0.4860 +3569 8862 0.5130 +3569 8870 0.4740 +3569 8877 0.5350 +3569 8878 0.4490 +3569 8915 0.4500 +3569 8972 0.4170 +3569 8988 0.5490 +3569 8989 0.4740 +3569 9021 0.9470 +3569 9023 0.4630 +3569 9034 0.8490 +3569 9075 0.4900 +3569 9076 0.6370 +3569 9172 0.5060 +3569 9173 0.6860 +3569 9180 0.9320 +3569 9213 0.4800 +3569 9235 0.5940 +3569 9261 0.4480 +3569 9308 0.7420 +3569 9314 0.6340 +3569 9332 0.9640 +3569 9360 0.5150 +3569 9365 0.4490 +3569 9370 0.8900 +3569 9429 0.4350 +3569 9437 0.4790 +3569 9447 0.5980 +3569 9451 0.6240 +3569 9466 0.9430 +3569 9474 0.5310 +3569 9507 0.6330 +3569 9508 0.5560 +3569 9510 0.4620 +3569 9516 0.5660 +3569 9518 0.6030 +3569 9536 0.5920 +3569 9547 0.6290 +3569 9560 0.6960 +3569 9563 0.4190 +3569 9611 0.5490 +3569 9619 0.4780 +3569 9622 0.4470 +3569 9636 0.7510 +3569 9641 0.5830 +3569 9817 0.6170 +3569 9927 0.4240 +3569 9939 0.5050 +3569 9965 0.4370 +3569 9966 0.5990 +3569 9971 0.5620 +3569 10018 0.5080 +3569 10062 0.4080 +3569 10068 0.4760 +3569 10135 0.7210 +3569 10174 0.4100 +3569 10220 0.5870 +3569 10273 0.4070 +3569 10288 0.4150 +3569 10344 0.7200 +3569 10365 0.4300 +3569 10379 0.6570 +3569 10392 0.6390 +3569 10393 0.4290 +3569 10401 0.4200 +3569 10410 0.4320 +3569 10454 0.4060 +3569 10461 0.4840 +3569 10468 0.4670 +3569 10525 0.5390 +3569 10533 0.4720 +3569 10538 0.4890 +3569 10544 0.4080 +3569 10549 0.4300 +3569 10554 0.4240 +3569 10558 0.5140 +3569 10563 0.7260 +3569 10578 0.4070 +3569 10628 0.4830 +3569 10630 0.4660 +3569 10631 0.6620 +3569 10663 0.4130 +3569 10673 0.7400 +3569 10724 0.5060 +3569 10725 0.4150 +3569 10763 0.4840 +3569 10803 0.4710 +3569 10850 0.6780 +3569 10874 0.4950 +3569 10891 0.6700 +3569 10892 0.4240 +3569 10912 0.5250 +3569 10919 0.8210 +3569 11009 0.6100 +3569 11035 0.4550 +3569 11065 0.5970 +3569 11093 0.4570 +3569 11096 0.6200 +3569 11167 0.6480 +3569 11213 0.5300 +3569 11266 0.6070 +3569 22861 0.5340 +3569 22900 0.5020 +3569 22914 0.5800 +3569 22926 0.6780 +3569 22943 0.5750 +3569 23030 0.4570 +3569 23118 0.4210 +3569 23135 0.4490 +3569 23308 0.6340 +3569 23318 0.5490 +3569 23405 0.4520 +3569 23410 0.4650 +3569 23411 0.7260 +3569 23495 0.4520 +3569 23516 0.5560 +3569 23529 0.5020 +3569 23569 0.4450 +3569 23586 0.7380 +3569 23621 0.5030 +3569 23643 0.7130 +3569 23705 0.7700 +3569 23765 0.8500 +3569 24138 0.4120 +3569 24145 0.4220 +3569 26191 0.4290 +3569 26253 0.5580 +3569 26281 0.7020 +3569 26291 0.6210 +3569 26525 0.6220 +3569 27006 0.7110 +3569 27035 0.5750 +3569 27036 0.4440 +3569 27087 0.4480 +3569 27123 0.4340 +3569 27159 0.4180 +3569 27177 0.5610 +3569 27178 0.6820 +3569 27179 0.5700 +3569 27189 0.5410 +3569 27190 0.4740 +3569 27202 0.4470 +3569 27250 0.4080 +3569 27287 0.7560 +3569 27338 0.4960 +3569 28514 0.5210 +3569 29108 0.5570 +3569 29110 0.6530 +3569 29126 0.7990 +3569 29851 0.6430 +3569 29949 0.5890 +3569 29979 0.4060 +3569 30009 0.8290 +3569 30061 0.4460 +3569 30816 0.6090 +3569 30835 0.7420 +3569 50489 0.4070 +3569 50506 0.5340 +3569 50507 0.6350 +3569 50615 0.9290 +3569 50616 0.8630 +3569 50848 0.4480 +3569 50943 0.9130 +3569 50964 0.5070 +3569 51094 0.5480 +3569 51129 0.4900 +3569 51135 0.7520 +3569 51284 0.8880 +3569 51311 0.8210 +3569 51330 0.4190 +3569 51433 0.4270 +3569 51497 0.5830 +3569 51548 0.4140 +3569 51561 0.8580 +3569 51660 0.5230 +3569 51738 0.6480 +3569 51806 0.4780 +3569 53342 0.4730 +3569 53832 0.7520 +3569 53833 0.8330 +3569 53905 0.5310 +3569 54106 0.8950 +3569 54205 0.7760 +3569 54209 0.6630 +3569 54210 0.6300 +3569 54472 0.4620 +3569 54567 0.4170 +3569 54587 0.4060 +3569 54739 0.4790 +3569 54757 0.4090 +3569 54790 0.4340 +3569 54957 0.4080 +3569 55054 0.4300 +3569 55509 0.4420 +3569 55540 0.4160 +3569 55600 0.5070 +3569 55801 0.6410 +3569 55829 0.6840 +3569 56300 0.6140 +3569 56729 0.8090 +3569 56975 0.6590 +3569 57104 0.6270 +3569 57379 0.4320 +3569 57506 0.5880 +3569 57509 0.4790 +3569 57817 0.9280 +3569 57818 0.4330 +3569 58191 0.5810 +3569 58484 0.5900 +3569 58985 0.7980 +3569 59067 0.6460 +3569 59272 0.8380 +3569 59307 0.4180 +3569 59341 0.4500 +3569 64127 0.8050 +3569 64135 0.6960 +3569 64170 0.5620 +3569 64332 0.7210 +3569 64581 0.6830 +3569 64805 0.4880 +3569 64806 0.5710 +3569 79001 0.4480 +3569 79004 0.4330 +3569 79132 0.5200 +3569 79258 0.4050 +3569 79602 0.5280 +3569 79679 0.4210 +3569 79792 0.5840 +3569 79813 0.7830 +3569 79923 0.5150 +3569 80142 0.5520 +3569 80149 0.8250 +3569 80380 0.6730 +3569 80381 0.6660 +3569 80781 0.4190 +3569 81501 0.5390 +3569 81631 0.5080 +3569 81669 0.6410 +3569 81793 0.6540 +3569 84141 0.4120 +3569 84166 0.4090 +3569 84639 0.6270 +3569 84666 0.8210 +3569 84676 0.4080 +3569 84706 0.6640 +3569 84818 0.5180 +3569 84823 0.4730 +3569 84868 0.7490 +3569 85480 0.6770 +3569 89780 0.4480 +3569 90865 0.7980 +3569 91543 0.4630 +3569 91662 0.4490 +3569 91860 0.4820 +3569 92579 0.4230 +3569 93978 0.5120 +3569 112744 0.9340 +3569 114548 0.8600 +3569 114609 0.6030 +3569 114907 0.5640 +3569 115004 0.5980 +3569 115650 0.4490 +3569 116379 0.7520 +3569 121340 0.4600 +3569 130120 0.5070 +3569 131450 0.4970 +3569 137902 0.8210 +3569 140885 0.5110 +3569 145264 0.4570 +3569 146433 0.5090 +3569 146713 0.5590 +3569 148022 0.5050 +3569 148738 0.6060 +3569 148867 0.4240 +3569 149041 0.4950 +3569 149233 0.9340 +3569 151306 0.4480 +3569 151888 0.4280 +3569 163688 0.4740 +3569 163702 0.8440 +3569 168400 0.5070 +3569 169355 0.7100 +3569 170482 0.4330 +3569 171389 0.4490 +3569 197259 0.4620 +3569 201633 0.4760 +3569 246778 0.6770 +3569 252995 0.5960 +3569 255738 0.4740 +3569 257202 0.7320 +3569 259197 0.4120 +3569 282616 0.5200 +3569 282617 0.4490 +3569 282618 0.8230 +3569 284194 0.4380 +3569 338339 0.5240 +3569 338442 0.5190 +3569 338557 0.4440 +3569 340061 0.4080 +3569 347734 0.4800 +3569 375611 0.4500 +3569 377630 0.4180 +3569 386653 0.6210 +3569 387715 0.5040 +3569 388698 0.4500 +3569 405754 0.5940 +3569 414062 0.7480 +3569 414325 0.4750 +3569 440093 0.7460 +3569 440686 0.7480 +3569 493869 0.7490 +3569 653145 0.4360 +3569 653361 0.5420 +3569 653604 0.7480 +3569 654346 0.4370 +3569 727897 0.4180 +3569 728378 0.6920 +3569 730249 0.5010 +3569 100133941 0.5520 +3569 100289462 0.4790 +3569 100423062 0.9190 +3569 100506658 0.7270 +3569 100526664 0.4400 +3569 100528017 0.4450 +3569 102723407 0.4970 +3570 3572 0.9990 +3570 3574 0.9080 +3570 3575 0.6740 +3570 3576 0.8060 +3570 3577 0.4810 +3570 3578 0.7720 +3570 3579 0.6850 +3570 3586 0.9230 +3570 3587 0.7890 +3570 3588 0.6410 +3570 3589 0.9930 +3570 3590 0.8830 +3570 3592 0.7030 +3570 3593 0.7570 +3570 3594 0.6450 +3570 3595 0.5160 +3570 3596 0.9200 +3570 3597 0.8190 +3570 3598 0.4870 +3570 3600 0.8940 +3570 3601 0.4960 +3570 3605 0.6300 +3570 3606 0.6900 +3570 3627 0.4970 +3570 3659 0.4030 +3570 3662 0.4620 +3570 3684 0.4650 +3570 3687 0.4330 +3570 3700 0.5260 +3570 3716 0.9860 +3570 3717 0.9630 +3570 3718 0.8910 +3570 3782 0.5700 +3570 3791 0.5960 +3570 3952 0.7700 +3570 3976 0.8520 +3570 3977 0.7050 +3570 4170 0.4670 +3570 4254 0.5630 +3570 4283 0.6150 +3570 4314 0.5110 +3570 4318 0.4870 +3570 4321 0.4590 +3570 4609 0.4120 +3570 4790 0.4960 +3570 4914 0.4780 +3570 4915 0.4440 +3570 5008 0.8500 +3570 5154 0.6950 +3570 5155 0.7150 +3570 5335 0.9100 +3570 5336 0.9100 +3570 5542 0.4140 +3570 5594 0.5390 +3570 5595 0.6270 +3570 5604 0.5340 +3570 5605 0.4620 +3570 5617 0.6890 +3570 5731 0.4100 +3570 5734 0.4230 +3570 5743 0.4780 +3570 5744 0.4200 +3570 5781 0.8050 +3570 5788 0.5270 +3570 5979 0.4420 +3570 6097 0.4150 +3570 6347 0.7320 +3570 6348 0.4880 +3570 6351 0.4550 +3570 6387 0.7900 +3570 6402 0.4500 +3570 6456 0.4120 +3570 6464 0.9420 +3570 6647 0.4470 +3570 6653 0.4640 +3570 6714 0.9370 +3570 6772 0.7910 +3570 6774 0.9930 +3570 6776 0.5030 +3570 6777 0.5110 +3570 6778 0.7140 +3570 6868 0.5920 +3570 7040 0.6150 +3570 7046 0.5190 +3570 7048 0.5870 +3570 7066 0.7190 +3570 7096 0.6160 +3570 7097 0.4810 +3570 7099 0.7120 +3570 7124 0.9820 +3570 7132 0.9160 +3570 7133 0.8220 +3570 7297 0.9620 +3570 7412 0.6030 +3570 7850 0.7180 +3570 7852 0.6970 +3570 8434 0.4870 +3570 8600 0.4370 +3570 8651 0.4290 +3570 8740 0.5890 +3570 8809 0.6150 +3570 9021 0.9360 +3570 9034 0.4760 +3570 9173 0.5780 +3570 9180 0.7360 +3570 9244 0.5300 +3570 9466 0.8970 +3570 9946 0.5410 +3570 10068 0.4150 +3570 10673 0.4650 +3570 10763 0.4280 +3570 11009 0.7430 +3570 23516 0.4100 +3570 23765 0.7100 +3570 25759 0.9000 +3570 27190 0.4960 +3570 29126 0.4520 +3570 29851 0.4350 +3570 29949 0.7250 +3570 30009 0.4730 +3570 50604 0.6500 +3570 50615 0.5470 +3570 50616 0.8100 +3570 50943 0.6640 +3570 51561 0.7760 +3570 51752 0.5370 +3570 53342 0.8280 +3570 53358 0.9010 +3570 54106 0.4870 +3570 55120 0.4200 +3570 55540 0.4810 +3570 56832 0.6770 +3570 57102 0.6730 +3570 59067 0.7440 +3570 59272 0.4470 +3570 84941 0.5120 +3570 85480 0.7400 +3570 90865 0.6060 +3570 93627 0.6610 +3570 112744 0.4600 +3570 149233 0.7990 +3570 246778 0.6520 +3570 282616 0.7540 +3570 282617 0.7440 +3570 282618 0.7650 +3570 338376 0.6790 +3570 386653 0.5830 +3570 399694 0.9040 +3570 100423062 0.9080 +3572 3574 0.7640 +3572 3575 0.4100 +3572 3576 0.4510 +3572 3578 0.7160 +3572 3586 0.8100 +3572 3587 0.6080 +3572 3589 0.9970 +3572 3590 0.9180 +3572 3592 0.7020 +3572 3593 0.6950 +3572 3594 0.6160 +3572 3595 0.7660 +3572 3596 0.8220 +3572 3597 0.7770 +3572 3600 0.7560 +3572 3605 0.5770 +3572 3667 0.4420 +3572 3716 0.9980 +3572 3717 0.9930 +3572 3718 0.9230 +3572 3952 0.8120 +3572 3953 0.4980 +3572 3976 0.9990 +3572 3977 0.9970 +3572 4904 0.6760 +3572 5008 0.9980 +3572 5154 0.6760 +3572 5155 0.6740 +3572 5156 0.4810 +3572 5290 0.9480 +3572 5291 0.9060 +3572 5293 0.9010 +3572 5295 0.9440 +3572 5296 0.9050 +3572 5580 0.5790 +3572 5594 0.7020 +3572 5595 0.5010 +3572 5604 0.4310 +3572 5617 0.6850 +3572 5781 0.9810 +3572 6168 0.4180 +3572 6376 0.4290 +3572 6464 0.4260 +3572 6772 0.9270 +3572 6774 0.9920 +3572 6775 0.6470 +3572 6776 0.4710 +3572 6777 0.4790 +3572 6850 0.4040 +3572 6868 0.4240 +3572 7015 0.4180 +3572 7033 0.4490 +3572 7066 0.6810 +3572 7077 0.4010 +3572 7099 0.5360 +3572 7124 0.4480 +3572 7132 0.6200 +3572 7297 0.9520 +3572 7450 0.4760 +3572 7850 0.5870 +3572 8503 0.9010 +3572 8614 0.4180 +3572 8651 0.7590 +3572 8660 0.4400 +3572 9021 0.9920 +3572 9180 0.9750 +3572 9244 0.5290 +3572 9466 0.9990 +3572 10148 0.9630 +3572 11009 0.6880 +3572 23529 0.9590 +3572 25849 0.4300 +3572 29949 0.6990 +3572 30009 0.5010 +3572 30818 0.6260 +3572 50604 0.6550 +3572 50616 0.7440 +3572 51561 0.8060 +3572 53342 0.6800 +3572 56832 0.6500 +3572 59067 0.6780 +3572 79722 0.4510 +3572 84905 0.4710 +3572 85480 0.6970 +3572 115650 0.4220 +3572 149233 0.6530 +3572 246778 0.9960 +3572 282616 0.7000 +3572 282617 0.6740 +3572 282618 0.7050 +3572 338376 0.6550 +3572 386653 0.6670 +3574 3575 0.9990 +3574 3576 0.8560 +3574 3578 0.9970 +3574 3581 0.8500 +3574 3586 0.9880 +3574 3587 0.8580 +3574 3588 0.8210 +3574 3589 0.7560 +3574 3590 0.7000 +3574 3594 0.7860 +3574 3595 0.7840 +3574 3596 0.8890 +3574 3597 0.8310 +3574 3598 0.7530 +3574 3600 0.9680 +3574 3601 0.8570 +3574 3603 0.6220 +3574 3605 0.8330 +3574 3606 0.8260 +3574 3620 0.4870 +3574 3627 0.8310 +3574 3630 0.4240 +3574 3662 0.4830 +3574 3667 0.5650 +3574 3676 0.5920 +3574 3682 0.5070 +3574 3684 0.5830 +3574 3687 0.5810 +3574 3716 0.9650 +3574 3717 0.8970 +3574 3718 0.9970 +3574 3815 0.8340 +3574 3820 0.5150 +3574 3821 0.4850 +3574 3824 0.4860 +3574 3902 0.5720 +3574 3916 0.4310 +3574 3952 0.6140 +3574 3953 0.7650 +3574 3976 0.4830 +3574 3977 0.6990 +3574 4049 0.7410 +3574 4050 0.4750 +3574 4055 0.4150 +3574 4063 0.4550 +3574 4145 0.4550 +3574 4170 0.4090 +3574 4254 0.8660 +3574 4277 0.5110 +3574 4283 0.7360 +3574 4303 0.4140 +3574 4311 0.4090 +3574 4318 0.4290 +3574 4352 0.7170 +3574 4609 0.4320 +3574 4684 0.5820 +3574 4790 0.4860 +3574 4803 0.4180 +3574 4811 0.4610 +3574 4851 0.4230 +3574 4907 0.4090 +3574 5008 0.4180 +3574 5079 0.6750 +3574 5133 0.5600 +3574 5156 0.7320 +3574 5159 0.7360 +3574 5175 0.4410 +3574 5295 0.5710 +3574 5296 0.5180 +3574 5473 0.5540 +3574 5551 0.6340 +3574 5618 0.7000 +3574 5688 0.4050 +3574 5788 0.8320 +3574 5896 0.6800 +3574 6097 0.4670 +3574 6320 0.4740 +3574 6347 0.8130 +3574 6348 0.8560 +3574 6351 0.8320 +3574 6354 0.6480 +3574 6355 0.5200 +3574 6356 0.8120 +3574 6357 0.5020 +3574 6361 0.7660 +3574 6362 0.5910 +3574 6363 0.7840 +3574 6364 0.5870 +3574 6366 0.6400 +3574 6367 0.7680 +3574 6369 0.4510 +3574 6370 0.4320 +3574 6373 0.5220 +3574 6374 0.6690 +3574 6376 0.7020 +3574 6387 0.6400 +3574 6402 0.6870 +3574 6490 0.4460 +3574 6504 0.4640 +3574 6688 0.4330 +3574 6689 0.5080 +3574 6693 0.7040 +3574 6772 0.6970 +3574 6774 0.6300 +3574 6775 0.4780 +3574 6776 0.9650 +3574 6777 0.9620 +3574 6778 0.4950 +3574 6929 0.5070 +3574 6932 0.4760 +3574 7039 0.5030 +3574 7040 0.7150 +3574 7046 0.4090 +3574 7066 0.5750 +3574 7070 0.5070 +3574 7097 0.4740 +3574 7098 0.5200 +3574 7099 0.5460 +3574 7113 0.4840 +3574 7124 0.8280 +3574 7132 0.4470 +3574 7157 0.4280 +3574 7292 0.4750 +3574 7293 0.5480 +3574 7297 0.6830 +3574 7412 0.5630 +3574 7432 0.4470 +3574 7441 0.4790 +3574 7535 0.4780 +3574 7852 0.7180 +3574 8320 0.6100 +3574 8456 0.4970 +3574 8503 0.5150 +3574 8600 0.5730 +3574 8639 0.5100 +3574 8651 0.4200 +3574 8660 0.5380 +3574 8743 0.4110 +3574 8744 0.4330 +3574 8784 0.4120 +3574 8809 0.4390 +3574 8817 0.4740 +3574 8822 0.4730 +3574 8823 0.4750 +3574 8828 0.4020 +3574 8829 0.4570 +3574 9034 0.5560 +3574 9173 0.4490 +3574 9180 0.7010 +3574 9235 0.5300 +3574 9241 0.4280 +3574 9308 0.4600 +3574 9436 0.4430 +3574 9437 0.5390 +3574 9466 0.7400 +3574 9560 0.4080 +3574 10018 0.6970 +3574 10219 0.7220 +3574 10320 0.4820 +3574 10344 0.5010 +3574 10563 0.6260 +3574 10663 0.4360 +3574 10673 0.5930 +3574 10758 0.4560 +3574 10803 0.4610 +3574 10850 0.6620 +3574 10870 0.5230 +3574 11012 0.4350 +3574 11251 0.4450 +3574 22914 0.7480 +3574 23586 0.4380 +3574 23765 0.6080 +3574 26281 0.4750 +3574 27006 0.4750 +3574 27074 0.4280 +3574 27087 0.4720 +3574 28514 0.4500 +3574 29126 0.6190 +3574 29760 0.4120 +3574 29851 0.6030 +3574 30009 0.6530 +3574 50615 0.9550 +3574 50616 0.6950 +3574 50943 0.6770 +3574 51284 0.5020 +3574 51311 0.4070 +3574 53832 0.7020 +3574 53833 0.7060 +3574 54106 0.4420 +3574 54567 0.4430 +3574 55540 0.4090 +3574 58985 0.7330 +3574 59067 0.6020 +3574 59272 0.6460 +3574 64806 0.4320 +3574 64919 0.5550 +3574 79576 0.4570 +3574 80380 0.4630 +3574 80381 0.5060 +3574 84868 0.5710 +3574 85480 0.8690 +3574 90865 0.6930 +3574 112744 0.5220 +3574 116379 0.7250 +3574 146433 0.4550 +3574 149233 0.8060 +3574 151888 0.4340 +3574 163702 0.6930 +3574 169355 0.4040 +3574 170482 0.4600 +3574 201633 0.4810 +3574 386653 0.6630 +3574 414062 0.4740 +3574 100133941 0.4340 +3574 102723407 0.5090 +3575 3576 0.5170 +3575 3578 0.9220 +3575 3581 0.4580 +3575 3586 0.9190 +3575 3587 0.7140 +3575 3589 0.7370 +3575 3592 0.6580 +3575 3593 0.6670 +3575 3594 0.6840 +3575 3595 0.6970 +3575 3596 0.8720 +3575 3597 0.5360 +3575 3600 0.9850 +3575 3601 0.8460 +3575 3605 0.8130 +3575 3606 0.5100 +3575 3620 0.4660 +3575 3627 0.5190 +3575 3659 0.4430 +3575 3662 0.5990 +3575 3667 0.5310 +3575 3672 0.5410 +3575 3673 0.4910 +3575 3674 0.4590 +3575 3676 0.6300 +3575 3682 0.7050 +3575 3683 0.6060 +3575 3684 0.7600 +3575 3687 0.7560 +3575 3689 0.4810 +3575 3695 0.4740 +3575 3702 0.7980 +3575 3716 0.9940 +3575 3717 0.9000 +3575 3718 0.9880 +3575 3782 0.5820 +3575 3802 0.4560 +3575 3812 0.5000 +3575 3815 0.8420 +3575 3820 0.8610 +3575 3821 0.6120 +3575 3822 0.4450 +3575 3824 0.6430 +3575 3902 0.6750 +3575 3916 0.5770 +3575 3937 0.4660 +3575 3949 0.5050 +3575 3952 0.7080 +3575 3976 0.6920 +3575 4036 0.4990 +3575 4049 0.4030 +3575 4050 0.5610 +3575 4055 0.6340 +3575 4067 0.6020 +3575 4068 0.4720 +3575 4074 0.4150 +3575 4094 0.4010 +3575 4145 0.6760 +3575 4254 0.6940 +3575 4261 0.5740 +3575 4283 0.6940 +3575 4288 0.4030 +3575 4311 0.4050 +3575 4316 0.4090 +3575 4360 0.4080 +3575 4599 0.4030 +3575 4609 0.6410 +3575 4684 0.7170 +3575 4783 0.5070 +3575 4790 0.4370 +3575 4818 0.6180 +3575 4851 0.6580 +3575 4907 0.4710 +3575 5008 0.8050 +3575 5079 0.6030 +3575 5125 0.4410 +3575 5133 0.6340 +3575 5154 0.6680 +3575 5155 0.6820 +3575 5175 0.5350 +3575 5295 0.7110 +3575 5296 0.5330 +3575 5473 0.5840 +3575 5551 0.7130 +3575 5617 0.6740 +3575 5688 0.4530 +3575 5724 0.4800 +3575 5743 0.5510 +3575 5781 0.5870 +3575 5788 0.9060 +3575 5803 0.4140 +3575 5880 0.4090 +3575 5896 0.7950 +3575 5996 0.4080 +3575 6095 0.4480 +3575 6097 0.6080 +3575 6288 0.4540 +3575 6289 0.4470 +3575 6347 0.4920 +3575 6348 0.6850 +3575 6351 0.5300 +3575 6356 0.6340 +3575 6361 0.6410 +3575 6362 0.5770 +3575 6363 0.7310 +3575 6364 0.6370 +3575 6366 0.4640 +3575 6367 0.6520 +3575 6374 0.5390 +3575 6375 0.4590 +3575 6387 0.4270 +3575 6402 0.8510 +3575 6490 0.5410 +3575 6504 0.7050 +3575 6572 0.4060 +3575 6688 0.5400 +3575 6689 0.4410 +3575 6693 0.6580 +3575 6772 0.6660 +3575 6774 0.7460 +3575 6775 0.5430 +3575 6776 0.9380 +3575 6777 0.9410 +3575 6778 0.4390 +3575 6844 0.5170 +3575 6845 0.4990 +3575 6929 0.5260 +3575 6932 0.6950 +3575 7037 0.6720 +3575 7040 0.6170 +3575 7066 0.7460 +3575 7070 0.6080 +3575 7097 0.6660 +3575 7099 0.4900 +3575 7124 0.7170 +3575 7128 0.4600 +3575 7132 0.4420 +3575 7133 0.4790 +3575 7292 0.4810 +3575 7293 0.5990 +3575 7297 0.8400 +3575 7345 0.5070 +3575 7412 0.6120 +3575 7424 0.4640 +3575 7441 0.6270 +3575 7535 0.6010 +3575 7704 0.5140 +3575 7840 0.4140 +3575 7850 0.4660 +3575 7852 0.5890 +3575 8174 0.4130 +3575 8301 0.5530 +3575 8320 0.7540 +3575 8503 0.5230 +3575 8639 0.6970 +3575 8651 0.5720 +3575 8660 0.5200 +3575 8673 0.5170 +3575 8674 0.4110 +3575 8784 0.6750 +3575 8807 0.5830 +3575 8809 0.7120 +3575 8835 0.4640 +3575 9034 0.8300 +3575 9047 0.4020 +3575 9159 0.4610 +3575 9173 0.7270 +3575 9214 0.4780 +3575 9235 0.4180 +3575 9308 0.4340 +3575 9332 0.4530 +3575 9341 0.5090 +3575 9436 0.5930 +3575 9437 0.6960 +3575 9466 0.4120 +3575 9856 0.4050 +3575 9892 0.5310 +3575 9935 0.4010 +3575 9966 0.5120 +3575 10004 0.6900 +3575 10018 0.6510 +3575 10019 0.4450 +3575 10044 0.4020 +3575 10219 0.8610 +3575 10225 0.4120 +3575 10320 0.8000 +3575 10365 0.5030 +3575 10538 0.4950 +3575 10563 0.5150 +3575 10578 0.5740 +3575 10618 0.4510 +3575 10663 0.7420 +3575 10666 0.5080 +3575 10673 0.6780 +3575 10803 0.5460 +3575 11009 0.7400 +3575 11012 0.7780 +3575 11040 0.4030 +3575 11126 0.5600 +3575 11251 0.7720 +3575 22806 0.5140 +3575 22807 0.4870 +3575 22914 0.7500 +3575 23274 0.4730 +3575 23308 0.4160 +3575 23495 0.5350 +3575 23547 0.4070 +3575 23765 0.6560 +3575 26119 0.5300 +3575 26191 0.4400 +3575 26205 0.4220 +3575 27074 0.4620 +3575 27087 0.6530 +3575 27130 0.4300 +3575 27189 0.4160 +3575 29126 0.6250 +3575 29851 0.8720 +3575 29949 0.7100 +3575 29978 0.5030 +3575 29988 0.4410 +3575 30009 0.7940 +3575 50604 0.6500 +3575 50615 0.6740 +3575 50616 0.8720 +3575 50852 0.4930 +3575 50943 0.8710 +3575 51176 0.5550 +3575 51284 0.6330 +3575 51311 0.5280 +3575 51561 0.7480 +3575 51744 0.5540 +3575 53342 0.6800 +3575 54345 0.5520 +3575 55320 0.4250 +3575 55540 0.6840 +3575 56253 0.4470 +3575 56832 0.6540 +3575 57007 0.4320 +3575 57211 0.4470 +3575 57477 0.4670 +3575 59067 0.7360 +3575 60468 0.4180 +3575 64115 0.4960 +3575 64919 0.5100 +3575 79849 0.4220 +3575 80380 0.4640 +3575 80381 0.5070 +3575 84868 0.7880 +3575 85480 0.9990 +3575 89790 0.4480 +3575 90865 0.6210 +3575 112744 0.4530 +3575 114132 0.4080 +3575 114836 0.4940 +3575 120425 0.4310 +3575 133558 0.6750 +3575 146722 0.4340 +3575 149233 0.6940 +3575 151888 0.5060 +3575 170482 0.4510 +3575 171558 0.6470 +3575 201633 0.6410 +3575 202333 0.4290 +3575 257101 0.4650 +3575 259197 0.4330 +3575 282616 0.6980 +3575 282617 0.6930 +3575 282618 0.7010 +3575 286530 0.4530 +3575 338376 0.6690 +3575 100133941 0.5810 +3575 100423062 0.5960 +3575 102723407 0.6550 +3576 3577 0.9990 +3576 3578 0.7910 +3576 3579 0.9990 +3576 3586 0.9700 +3576 3587 0.6520 +3576 3588 0.4140 +3576 3589 0.8250 +3576 3590 0.5100 +3576 3592 0.4860 +3576 3593 0.6150 +3576 3594 0.5380 +3576 3596 0.9400 +3576 3597 0.5470 +3576 3598 0.6440 +3576 3600 0.7980 +3576 3601 0.6100 +3576 3603 0.6740 +3576 3605 0.9240 +3576 3606 0.9260 +3576 3620 0.6100 +3576 3627 0.9750 +3576 3630 0.6500 +3576 3654 0.7260 +3576 3656 0.6440 +3576 3659 0.5750 +3576 3661 0.6220 +3576 3663 0.4410 +3576 3665 0.5800 +3576 3683 0.4730 +3576 3684 0.6810 +3576 3685 0.5710 +3576 3687 0.5620 +3576 3688 0.6310 +3576 3689 0.7840 +3576 3690 0.6220 +3576 3716 0.6870 +3576 3717 0.7580 +3576 3725 0.9870 +3576 3791 0.7280 +3576 3815 0.4470 +3576 3827 0.7420 +3576 3845 0.4480 +3576 3902 0.4410 +3576 3929 0.5050 +3576 3934 0.6040 +3576 3952 0.6590 +3576 3958 0.6740 +3576 3976 0.7310 +3576 3991 0.4750 +3576 4015 0.6320 +3576 4023 0.4530 +3576 4049 0.8180 +3576 4057 0.6170 +3576 4072 0.6150 +3576 4087 0.4180 +3576 4088 0.4330 +3576 4097 0.4180 +3576 4153 0.4340 +3576 4162 0.4080 +3576 4170 0.4460 +3576 4210 0.5060 +3576 4233 0.6410 +3576 4254 0.5190 +3576 4282 0.6520 +3576 4283 0.9590 +3576 4312 0.7620 +3576 4313 0.8140 +3576 4314 0.8210 +3576 4316 0.5680 +3576 4317 0.6220 +3576 4318 0.8800 +3576 4319 0.6690 +3576 4321 0.5500 +3576 4322 0.7320 +3576 4323 0.6500 +3576 4353 0.7330 +3576 4360 0.5510 +3576 4586 0.5210 +3576 4599 0.7270 +3576 4600 0.4080 +3576 4609 0.6150 +3576 4616 0.5280 +3576 4684 0.5770 +3576 4780 0.6650 +3576 4790 0.9880 +3576 4791 0.8060 +3576 4792 0.8870 +3576 4803 0.5770 +3576 4837 0.4480 +3576 4843 0.5060 +3576 4846 0.5070 +3576 4854 0.5110 +3576 4886 0.4690 +3576 4907 0.5040 +3576 4938 0.4150 +3576 4940 0.5230 +3576 4973 0.4950 +3576 4985 0.5190 +3576 4988 0.7010 +3576 5008 0.6130 +3576 5045 0.4130 +3576 5054 0.7360 +3576 5055 0.4940 +3576 5068 0.5140 +3576 5073 0.4240 +3576 5133 0.4800 +3576 5155 0.6600 +3576 5156 0.5640 +3576 5159 0.6090 +3576 5173 0.6300 +3576 5175 0.7330 +3576 5179 0.5290 +3576 5196 0.9990 +3576 5228 0.7310 +3576 5265 0.6960 +3576 5266 0.5330 +3576 5284 0.5710 +3576 5320 0.5870 +3576 5327 0.5110 +3576 5328 0.7650 +3576 5329 0.6430 +3576 5340 0.7220 +3576 5367 0.5210 +3576 5368 0.5180 +3576 5443 0.7030 +3576 5465 0.4310 +3576 5468 0.5830 +3576 5473 0.5510 +3576 5551 0.5880 +3576 5594 0.7350 +3576 5595 0.6610 +3576 5599 0.6690 +3576 5600 0.4300 +3576 5603 0.4300 +3576 5604 0.4290 +3576 5610 0.4980 +3576 5657 0.6950 +3576 5660 0.5720 +3576 5682 0.4050 +3576 5697 0.4040 +3576 5728 0.5180 +3576 5734 0.4490 +3576 5737 0.7280 +3576 5742 0.4250 +3576 5743 0.9750 +3576 5747 0.4080 +3576 5788 0.6080 +3576 5806 0.5620 +3576 5919 0.4120 +3576 5966 0.5490 +3576 5970 0.9950 +3576 5971 0.6130 +3576 5972 0.5090 +3576 6002 0.4120 +3576 6037 0.5820 +3576 6188 0.5150 +3576 6275 0.4280 +3576 6278 0.5170 +3576 6279 0.7630 +3576 6280 0.5110 +3576 6283 0.8150 +3576 6285 0.4340 +3576 6288 0.8570 +3576 6289 0.7110 +3576 6300 0.4300 +3576 6346 0.7940 +3576 6347 0.9990 +3576 6348 0.9770 +3576 6351 0.9880 +3576 6354 0.9070 +3576 6355 0.9980 +3576 6356 0.9290 +3576 6357 0.8430 +3576 6358 0.5100 +3576 6359 0.5460 +3576 6360 0.7350 +3576 6361 0.8570 +3576 6362 0.8550 +3576 6363 0.9250 +3576 6364 0.9410 +3576 6366 0.8790 +3576 6367 0.9010 +3576 6368 0.5430 +3576 6369 0.7790 +3576 6370 0.7960 +3576 6372 0.8680 +3576 6373 0.9460 +3576 6374 0.9510 +3576 6375 0.4880 +3576 6376 0.8450 +3576 6382 0.8250 +3576 6383 0.4720 +3576 6387 0.9510 +3576 6401 0.8510 +3576 6402 0.8060 +3576 6403 0.8980 +3576 6404 0.6500 +3576 6441 0.7020 +3576 6469 0.4800 +3576 6500 0.4370 +3576 6513 0.4140 +3576 6517 0.5480 +3576 6590 0.6880 +3576 6591 0.4050 +3576 6615 0.5510 +3576 6648 0.5730 +3576 6696 0.7550 +3576 6714 0.7810 +3576 6750 0.6450 +3576 6751 0.7030 +3576 6752 0.5280 +3576 6753 0.5030 +3576 6754 0.5030 +3576 6755 0.5030 +3576 6772 0.7650 +3576 6773 0.4230 +3576 6774 0.8570 +3576 6776 0.4710 +3576 6777 0.4410 +3576 6778 0.4950 +3576 6846 0.4780 +3576 6850 0.4470 +3576 6863 0.5210 +3576 6868 0.4780 +3576 7010 0.6780 +3576 7039 0.6310 +3576 7040 0.7750 +3576 7042 0.5840 +3576 7043 0.4440 +3576 7056 0.5810 +3576 7057 0.7130 +3576 7060 0.5380 +3576 7070 0.4720 +3576 7076 0.7800 +3576 7077 0.6480 +3576 7082 0.5420 +3576 7096 0.6650 +3576 7097 0.8830 +3576 7098 0.7180 +3576 7099 0.9330 +3576 7100 0.7910 +3576 7113 0.5210 +3576 7124 0.9830 +3576 7128 0.7380 +3576 7130 0.9330 +3576 7132 0.7820 +3576 7133 0.5980 +3576 7157 0.8040 +3576 7189 0.7260 +3576 7293 0.5990 +3576 7295 0.4170 +3576 7321 0.6250 +3576 7324 0.4030 +3576 7356 0.4180 +3576 7369 0.4890 +3576 7412 0.8570 +3576 7424 0.7170 +3576 7450 0.9620 +3576 7498 0.4180 +3576 7538 0.5710 +3576 7837 0.6010 +3576 7850 0.6880 +3576 7852 0.9970 +3576 8061 0.4530 +3576 8091 0.4490 +3576 8290 0.4450 +3576 8312 0.4780 +3576 8356 0.4440 +3576 8517 0.4550 +3576 8570 0.5000 +3576 8600 0.6050 +3576 8638 0.4280 +3576 8651 0.4600 +3576 8742 0.4290 +3576 8743 0.6870 +3576 8767 0.4910 +3576 8793 0.4950 +3576 8795 0.4220 +3576 8808 0.4580 +3576 8817 0.7520 +3576 8822 0.7520 +3576 8823 0.7530 +3576 8842 0.4470 +3576 8862 0.6100 +3576 8870 0.5540 +3576 8995 0.5070 +3576 9021 0.5520 +3576 9034 0.7620 +3576 9076 0.4860 +3576 9170 0.7210 +3576 9173 0.5980 +3576 9235 0.7330 +3576 9241 0.4830 +3576 9283 0.5030 +3576 9308 0.6660 +3576 9332 0.6270 +3576 9370 0.6210 +3576 9437 0.6090 +3576 9447 0.4070 +3576 9451 0.4950 +3576 9518 0.4670 +3576 9536 0.4160 +3576 9547 0.4750 +3576 9560 0.6940 +3576 9636 0.5370 +3576 9641 0.4220 +3576 9672 0.4700 +3576 9755 0.4080 +3576 9817 0.4100 +3576 9966 0.5900 +3576 9978 0.4320 +3576 10068 0.5750 +3576 10135 0.7610 +3576 10161 0.6770 +3576 10220 0.4950 +3576 10316 0.5030 +3576 10344 0.7380 +3576 10379 0.5900 +3576 10392 0.5870 +3576 10393 0.4130 +3576 10468 0.4810 +3576 10563 0.7830 +3576 10631 0.4310 +3576 10663 0.8840 +3576 10673 0.5630 +3576 10803 0.8510 +3576 10850 0.8510 +3576 10874 0.5440 +3576 10919 0.7900 +3576 11009 0.5200 +3576 11065 0.4530 +3576 11213 0.4020 +3576 11251 0.5350 +3576 22894 0.4100 +3576 22914 0.4800 +3576 22974 0.4220 +3576 23213 0.4460 +3576 23411 0.4820 +3576 23495 0.4910 +3576 23566 0.7110 +3576 23569 0.4830 +3576 23586 0.6230 +3576 23643 0.6380 +3576 23645 0.4090 +3576 23705 0.4410 +3576 23765 0.7920 +3576 26281 0.7520 +3576 26525 0.5360 +3576 27006 0.7540 +3576 27098 0.4250 +3576 27177 0.4570 +3576 27178 0.5300 +3576 27179 0.4200 +3576 27189 0.6860 +3576 27190 0.6170 +3576 27338 0.4530 +3576 29110 0.4230 +3576 29126 0.6870 +3576 29949 0.5090 +3576 30009 0.6300 +3576 30816 0.4790 +3576 30835 0.5060 +3576 50486 0.4250 +3576 50615 0.5570 +3576 50616 0.7200 +3576 50943 0.6260 +3576 51135 0.6070 +3576 51176 0.5110 +3576 51284 0.6640 +3576 51297 0.4740 +3576 51311 0.6090 +3576 51497 0.4790 +3576 51554 0.5950 +3576 51561 0.5910 +3576 51660 0.4180 +3576 53342 0.4340 +3576 54106 0.7760 +3576 54205 0.4470 +3576 54209 0.4910 +3576 54210 0.6420 +3576 54331 0.8590 +3576 54575 0.4820 +3576 55540 0.5410 +3576 55801 0.4740 +3576 55914 0.4530 +3576 56300 0.4920 +3576 56477 0.5590 +3576 56729 0.7400 +3576 56886 0.4080 +3576 56923 0.6750 +3576 57007 0.6940 +3576 57121 0.6740 +3576 57506 0.4320 +3576 57817 0.4050 +3576 57823 0.4830 +3576 58191 0.8170 +3576 58484 0.4100 +3576 59272 0.6680 +3576 59307 0.5330 +3576 63940 0.4320 +3576 64127 0.6270 +3576 64135 0.6050 +3576 64332 0.5700 +3576 64581 0.5310 +3576 64806 0.6870 +3576 79132 0.4210 +3576 79813 0.7530 +3576 80149 0.4670 +3576 80380 0.4930 +3576 80381 0.4830 +3576 80781 0.6380 +3576 81793 0.4730 +3576 84539 0.5460 +3576 84639 0.4820 +3576 84666 0.7270 +3576 84818 0.4320 +3576 84868 0.5170 +3576 85480 0.7110 +3576 90865 0.7990 +3576 91543 0.4260 +3576 92140 0.4090 +3576 112744 0.6510 +3576 114548 0.6920 +3576 114609 0.4280 +3576 115004 0.4440 +3576 129521 0.4990 +3576 130367 0.4540 +3576 137902 0.6010 +3576 143471 0.4160 +3576 146433 0.4050 +3576 163702 0.5240 +3576 167227 0.4330 +3576 169355 0.5150 +3576 246778 0.4450 +3576 256933 0.4990 +3576 257202 0.5180 +3576 257397 0.4340 +3576 260436 0.4220 +3576 282616 0.4490 +3576 282618 0.7210 +3576 283869 0.4990 +3576 284340 0.5990 +3576 386653 0.5070 +3576 388698 0.4280 +3576 405754 0.4470 +3576 414062 0.8520 +3576 414325 0.5410 +3576 440093 0.4430 +3576 440686 0.4430 +3576 493869 0.5170 +3576 653604 0.4430 +3576 727897 0.4100 +3576 728378 0.5870 +3576 100133941 0.4080 +3576 100289462 0.5930 +3576 100506658 0.5700 +3577 3578 0.4720 +3577 3579 0.9990 +3577 3586 0.5390 +3577 3587 0.5890 +3577 3588 0.5350 +3577 3594 0.5290 +3577 3596 0.5300 +3577 3600 0.4150 +3577 3605 0.5090 +3577 3606 0.5920 +3577 3627 0.9890 +3577 3683 0.6030 +3577 3684 0.6330 +3577 3687 0.4550 +3577 3689 0.7110 +3577 3717 0.7640 +3577 3718 0.7230 +3577 3791 0.6090 +3577 3804 0.4860 +3577 3811 0.4740 +3577 3927 0.7680 +3577 4282 0.5510 +3577 4283 0.9050 +3577 4317 0.5200 +3577 4318 0.6050 +3577 4353 0.5170 +3577 4677 0.5030 +3577 4684 0.4280 +3577 4790 0.4280 +3577 4908 0.4190 +3577 5156 0.5340 +3577 5159 0.5170 +3577 5175 0.4470 +3577 5196 0.8760 +3577 5197 0.8250 +3577 5473 0.9980 +3577 5551 0.4320 +3577 5595 0.4020 +3577 5788 0.4740 +3577 5919 0.4380 +3577 6011 0.6770 +3577 6283 0.5640 +3577 6346 0.7950 +3577 6347 0.9960 +3577 6348 0.9810 +3577 6351 0.8950 +3577 6354 0.8730 +3577 6355 0.7990 +3577 6356 0.8040 +3577 6357 0.7730 +3577 6358 0.5690 +3577 6359 0.7700 +3577 6360 0.7780 +3577 6361 0.8740 +3577 6362 0.7760 +3577 6363 0.9220 +3577 6364 0.8900 +3577 6366 0.9430 +3577 6367 0.8870 +3577 6369 0.8520 +3577 6370 0.8640 +3577 6372 0.9990 +3577 6373 0.9000 +3577 6374 0.9990 +3577 6375 0.8600 +3577 6376 0.9940 +3577 6387 0.9920 +3577 6401 0.5530 +3577 6402 0.6040 +3577 6403 0.6010 +3577 6404 0.4590 +3577 6714 0.6770 +3577 6774 0.4730 +3577 6846 0.7470 +3577 7040 0.6340 +3577 7048 0.5420 +3577 7097 0.6940 +3577 7099 0.5710 +3577 7124 0.6250 +3577 7130 0.4410 +3577 7132 0.6020 +3577 7412 0.4130 +3577 7850 0.5300 +3577 7852 0.8570 +3577 8565 0.7880 +3577 8794 0.4620 +3577 8807 0.4090 +3577 9034 0.5470 +3577 9332 0.4180 +3577 9547 0.7850 +3577 9560 0.8280 +3577 10344 0.7470 +3577 10563 0.9870 +3577 10663 0.8270 +3577 10672 0.6970 +3577 10803 0.7000 +3577 10850 0.9010 +3577 26253 0.5540 +3577 27165 0.6800 +3577 27177 0.4100 +3577 29126 0.4290 +3577 30834 0.4350 +3577 30835 0.4600 +3577 51067 0.7140 +3577 51311 0.4480 +3577 51554 0.4360 +3577 53829 0.5070 +3577 54210 0.4750 +3577 56477 0.6880 +3577 57007 0.6980 +3577 58191 0.9320 +3577 60675 0.5330 +3577 63940 0.4410 +3577 64386 0.4650 +3577 79731 0.5120 +3577 80380 0.4190 +3577 126006 0.4010 +3577 131890 0.6810 +3577 146225 0.6680 +3577 222487 0.5470 +3577 414062 0.8250 +3578 3581 0.9990 +3578 3586 0.9590 +3578 3587 0.7500 +3578 3588 0.8340 +3578 3589 0.7640 +3578 3590 0.6910 +3578 3593 0.4110 +3578 3594 0.7730 +3578 3595 0.7780 +3578 3596 0.9470 +3578 3597 0.7810 +3578 3598 0.7410 +3578 3600 0.9760 +3578 3601 0.7680 +3578 3603 0.5710 +3578 3605 0.8960 +3578 3606 0.6660 +3578 3627 0.7720 +3578 3662 0.8280 +3578 3667 0.4390 +3578 3682 0.4460 +3578 3684 0.4810 +3578 3687 0.4860 +3578 3714 0.4450 +3578 3716 0.9680 +3578 3717 0.6580 +3578 3718 0.9960 +3578 3815 0.4490 +3578 3953 0.6620 +3578 3976 0.4580 +3578 3977 0.6690 +3578 4049 0.7110 +3578 4087 0.5690 +3578 4088 0.5980 +3578 4254 0.6640 +3578 4283 0.6260 +3578 4352 0.6890 +3578 4353 0.4540 +3578 4803 0.4300 +3578 5156 0.6880 +3578 5159 0.6840 +3578 5551 0.4470 +3578 5618 0.6510 +3578 5788 0.5070 +3578 5896 0.4740 +3578 6097 0.5070 +3578 6320 0.5060 +3578 6346 0.4580 +3578 6347 0.7610 +3578 6348 0.7980 +3578 6351 0.7990 +3578 6354 0.7470 +3578 6356 0.9020 +3578 6357 0.5900 +3578 6361 0.7570 +3578 6364 0.6010 +3578 6367 0.5910 +3578 6369 0.4590 +3578 6374 0.4890 +3578 6376 0.5710 +3578 6387 0.4180 +3578 6402 0.4510 +3578 6688 0.6490 +3578 6695 0.4300 +3578 6772 0.8860 +3578 6774 0.8550 +3578 6775 0.4430 +3578 6776 0.8860 +3578 6777 0.8860 +3578 6778 0.6350 +3578 7039 0.5060 +3578 7040 0.6880 +3578 7045 0.5360 +3578 7048 0.4050 +3578 7066 0.4250 +3578 7097 0.4250 +3578 7098 0.4080 +3578 7099 0.4580 +3578 7124 0.7770 +3578 7292 0.5060 +3578 7293 0.5030 +3578 7297 0.4740 +3578 7423 0.4040 +3578 7535 0.4690 +3578 8288 0.5550 +3578 8744 0.4420 +3578 8784 0.4280 +3578 8817 0.4610 +3578 8822 0.4670 +3578 8823 0.4670 +3578 9034 0.5200 +3578 9173 0.5260 +3578 9180 0.6720 +3578 9241 0.4310 +3578 9466 0.7160 +3578 10219 0.4050 +3578 10344 0.4930 +3578 10538 0.4440 +3578 10850 0.5430 +3578 11009 0.5900 +3578 11251 0.7360 +3578 22808 0.4240 +3578 23765 0.4040 +3578 26281 0.4630 +3578 27006 0.4690 +3578 27159 0.4760 +3578 27190 0.4110 +3578 29108 0.4140 +3578 29851 0.5110 +3578 29949 0.7100 +3578 30009 0.6390 +3578 50615 0.9240 +3578 50616 0.8660 +3578 50943 0.7920 +3578 53832 0.6890 +3578 53833 0.6920 +3578 55540 0.5140 +3578 55801 0.7140 +3578 58985 0.7570 +3578 59067 0.5830 +3578 59272 0.4050 +3578 64096 0.4320 +3578 64806 0.5850 +3578 80381 0.4110 +3578 85480 0.7450 +3578 90865 0.7710 +3578 112744 0.7540 +3578 116379 0.7170 +3578 149233 0.8210 +3578 163702 0.6820 +3578 282616 0.4100 +3578 282618 0.5230 +3578 386653 0.6640 +3578 414062 0.4190 +3578 100423062 0.9010 +3579 3586 0.6240 +3579 3588 0.5430 +3579 3596 0.6780 +3579 3600 0.6420 +3579 3605 0.6250 +3579 3606 0.4810 +3579 3620 0.4700 +3579 3627 0.9920 +3579 3683 0.6390 +3579 3684 0.7120 +3579 3687 0.5460 +3579 3689 0.7020 +3579 3717 0.7910 +3579 3718 0.7240 +3579 3791 0.4400 +3579 3815 0.4100 +3579 3845 0.4290 +3579 3934 0.4110 +3579 3965 0.5430 +3579 4057 0.4110 +3579 4088 0.5360 +3579 4089 0.4450 +3579 4282 0.9930 +3579 4283 0.9740 +3579 4312 0.5890 +3579 4313 0.4370 +3579 4314 0.5910 +3579 4317 0.5800 +3579 4318 0.7800 +3579 4332 0.5680 +3579 4353 0.6320 +3579 4360 0.4020 +3579 4609 0.5510 +3579 4677 0.4590 +3579 4790 0.4820 +3579 4886 0.4510 +3579 5133 0.4070 +3579 5156 0.5590 +3579 5159 0.5520 +3579 5168 0.4850 +3579 5175 0.5500 +3579 5196 0.9390 +3579 5197 0.8360 +3579 5228 0.5080 +3579 5330 0.8040 +3579 5331 0.4890 +3579 5473 0.9990 +3579 5551 0.4180 +3579 5595 0.4650 +3579 5604 0.5080 +3579 5683 0.4300 +3579 5743 0.6850 +3579 5788 0.6030 +3579 5919 0.4910 +3579 6002 0.7460 +3579 6011 0.7040 +3579 6256 0.4700 +3579 6279 0.4020 +3579 6280 0.4600 +3579 6283 0.5150 +3579 6346 0.9250 +3579 6347 0.9970 +3579 6348 0.9840 +3579 6351 0.9770 +3579 6354 0.9460 +3579 6355 0.9420 +3579 6356 0.9070 +3579 6357 0.7730 +3579 6359 0.7800 +3579 6360 0.8760 +3579 6361 0.8210 +3579 6362 0.7850 +3579 6363 0.9390 +3579 6364 0.9490 +3579 6366 0.9390 +3579 6367 0.8330 +3579 6369 0.7890 +3579 6370 0.7830 +3579 6372 0.9990 +3579 6373 0.9420 +3579 6374 0.9990 +3579 6375 0.7830 +3579 6376 0.9150 +3579 6382 0.4930 +3579 6387 0.9980 +3579 6401 0.4920 +3579 6402 0.8160 +3579 6403 0.5040 +3579 6404 0.7020 +3579 6556 0.5100 +3579 6714 0.7090 +3579 6767 0.5540 +3579 6772 0.4370 +3579 6774 0.6010 +3579 6846 0.7310 +3579 7040 0.4850 +3579 7060 0.7210 +3579 7076 0.6110 +3579 7097 0.8320 +3579 7099 0.8070 +3579 7124 0.8620 +3579 7132 0.4570 +3579 7157 0.4460 +3579 7408 0.7080 +3579 7412 0.5350 +3579 7429 0.5940 +3579 7474 0.4240 +3579 7850 0.6870 +3579 7852 0.9920 +3579 8794 0.4830 +3579 8807 0.4110 +3579 8826 0.7700 +3579 8875 0.4430 +3579 9034 0.5780 +3579 9332 0.4670 +3579 9368 0.5790 +3579 9547 0.8020 +3579 9560 0.8790 +3579 9586 0.4440 +3579 10109 0.5240 +3579 10344 0.7520 +3579 10563 0.9970 +3579 10663 0.7300 +3579 10672 0.7020 +3579 10803 0.6930 +3579 10850 0.8810 +3579 10987 0.5380 +3579 23569 0.4930 +3579 23643 0.5080 +3579 23765 0.4920 +3579 26086 0.4650 +3579 26253 0.6160 +3579 27165 0.4790 +3579 27190 0.4710 +3579 29126 0.7080 +3579 29899 0.4160 +3579 50616 0.4020 +3579 50943 0.4530 +3579 50944 0.4280 +3579 51311 0.4530 +3579 51554 0.4230 +3579 54106 0.4130 +3579 54210 0.4430 +3579 54331 0.8240 +3579 56477 0.6830 +3579 57007 0.7040 +3579 58191 0.9210 +3579 60675 0.6660 +3579 63940 0.4730 +3579 64581 0.4510 +3579 79731 0.4650 +3579 84868 0.4260 +3579 90865 0.4880 +3579 114548 0.4010 +3579 120425 0.4940 +3579 131890 0.6810 +3579 146225 0.4980 +3579 166824 0.4220 +3579 284340 0.5920 +3579 414062 0.8190 +3579 653361 0.4110 +3581 3586 0.7480 +3581 3589 0.7070 +3581 3592 0.6500 +3581 3593 0.6500 +3581 3596 0.7770 +3581 3600 0.7440 +3581 3601 0.4880 +3581 3662 0.6160 +3581 3716 0.9430 +3581 3717 0.6970 +3581 3718 0.7540 +3581 3952 0.6500 +3581 3976 0.6500 +3581 4254 0.4100 +3581 5008 0.6660 +3581 5154 0.6500 +3581 5155 0.6520 +3581 5617 0.6520 +3581 6356 0.4890 +3581 6361 0.5310 +3581 6772 0.5970 +3581 6774 0.6090 +3581 6776 0.6570 +3581 6777 0.6470 +3581 6843 0.5490 +3581 6844 0.4290 +3581 6845 0.7090 +3581 7066 0.6500 +3581 7297 0.6930 +3581 8623 0.4070 +3581 9034 0.5570 +3581 9173 0.4070 +3581 10251 0.7580 +3581 10365 0.4490 +3581 11009 0.7070 +3581 27033 0.5280 +3581 29949 0.6940 +3581 50604 0.6500 +3581 50615 0.4590 +3581 50616 0.7480 +3581 51561 0.6730 +3581 53342 0.6750 +3581 55344 0.4260 +3581 55540 0.5030 +3581 56832 0.6500 +3581 57007 0.4050 +3581 59067 0.6740 +3581 60468 0.4780 +3581 81831 0.4020 +3581 84243 0.4350 +3581 85480 0.7660 +3581 139378 0.4410 +3581 282616 0.6650 +3581 282617 0.6660 +3581 282618 0.6660 +3581 338376 0.6500 +3586 3587 0.9990 +3586 3588 0.9990 +3586 3589 0.7890 +3586 3590 0.7160 +3586 3592 0.6200 +3586 3593 0.7250 +3586 3594 0.9220 +3586 3595 0.9300 +3586 3596 0.9520 +3586 3597 0.8590 +3586 3598 0.7930 +3586 3600 0.9140 +3586 3601 0.4350 +3586 3603 0.6440 +3586 3605 0.9800 +3586 3606 0.9550 +3586 3620 0.8570 +3586 3627 0.9620 +3586 3630 0.8190 +3586 3654 0.7210 +3586 3659 0.6530 +3586 3660 0.4020 +3586 3661 0.6740 +3586 3662 0.7550 +3586 3663 0.7750 +3586 3665 0.6190 +3586 3667 0.4750 +3586 3673 0.5450 +3586 3676 0.5660 +3586 3682 0.7350 +3586 3683 0.5560 +3586 3684 0.8560 +3586 3687 0.8340 +3586 3688 0.5030 +3586 3689 0.5760 +3586 3700 0.4910 +3586 3702 0.5990 +3586 3716 0.9760 +3586 3717 0.8380 +3586 3718 0.5660 +3586 3725 0.6770 +3586 3791 0.5100 +3586 3815 0.5410 +3586 3818 0.4550 +3586 3820 0.5490 +3586 3821 0.6020 +3586 3822 0.4240 +3586 3824 0.5580 +3586 3827 0.4740 +3586 3845 0.4590 +3586 3902 0.7630 +3586 3916 0.5800 +3586 3929 0.6540 +3586 3934 0.8330 +3586 3952 0.8060 +3586 3953 0.7840 +3586 3958 0.6410 +3586 3965 0.6110 +3586 3976 0.7150 +3586 3977 0.7340 +3586 4000 0.4270 +3586 4015 0.4840 +3586 4049 0.8460 +3586 4057 0.7160 +3586 4065 0.5430 +3586 4067 0.4190 +3586 4069 0.6040 +3586 4087 0.6650 +3586 4088 0.5380 +3586 4092 0.4150 +3586 4094 0.6010 +3586 4097 0.4370 +3586 4151 0.4040 +3586 4153 0.5320 +3586 4155 0.6060 +3586 4170 0.5240 +3586 4179 0.4830 +3586 4210 0.5890 +3586 4254 0.5430 +3586 4261 0.4790 +3586 4277 0.4350 +3586 4282 0.6590 +3586 4283 0.8190 +3586 4311 0.4180 +3586 4312 0.7370 +3586 4313 0.7610 +3586 4314 0.8370 +3586 4316 0.4600 +3586 4317 0.6810 +3586 4318 0.8810 +3586 4321 0.5360 +3586 4322 0.5320 +3586 4340 0.7720 +3586 4345 0.5500 +3586 4352 0.7070 +3586 4353 0.7710 +3586 4360 0.8560 +3586 4481 0.6420 +3586 4586 0.4040 +3586 4599 0.5610 +3586 4609 0.5910 +3586 4684 0.7020 +3586 4688 0.5580 +3586 4747 0.5750 +3586 4772 0.4770 +3586 4773 0.4260 +3586 4780 0.5670 +3586 4783 0.4690 +3586 4790 0.8770 +3586 4791 0.5190 +3586 4792 0.7200 +3586 4803 0.6620 +3586 4842 0.4060 +3586 4843 0.7180 +3586 4846 0.7010 +3586 4851 0.4370 +3586 4907 0.6870 +3586 4908 0.4530 +3586 4973 0.4410 +3586 5008 0.7040 +3586 5027 0.4200 +3586 5045 0.6210 +3586 5054 0.6000 +3586 5055 0.4500 +3586 5133 0.8270 +3586 5141 0.4180 +3586 5155 0.4130 +3586 5156 0.7760 +3586 5159 0.7890 +3586 5175 0.6500 +3586 5196 0.5310 +3586 5228 0.5070 +3586 5265 0.4480 +3586 5284 0.4890 +3586 5294 0.4160 +3586 5327 0.4890 +3586 5328 0.4180 +3586 5340 0.5200 +3586 5443 0.7360 +3586 5465 0.6340 +3586 5467 0.4620 +3586 5468 0.7330 +3586 5473 0.5340 +3586 5551 0.7800 +3586 5566 0.4490 +3586 5567 0.4480 +3586 5568 0.4490 +3586 5595 0.6240 +3586 5599 0.6260 +3586 5600 0.4110 +3586 5610 0.4760 +3586 5617 0.4340 +3586 5618 0.6850 +3586 5657 0.4630 +3586 5724 0.6030 +3586 5728 0.7170 +3586 5734 0.5160 +3586 5741 0.5230 +3586 5742 0.4400 +3586 5743 0.7890 +3586 5781 0.6420 +3586 5788 0.8040 +3586 5806 0.4840 +3586 5817 0.4470 +3586 5896 0.6540 +3586 5949 0.4100 +3586 5966 0.5350 +3586 5970 0.7010 +3586 5971 0.5450 +3586 5972 0.5840 +3586 6037 0.4340 +3586 6097 0.6080 +3586 6198 0.4130 +3586 6272 0.5220 +3586 6279 0.4700 +3586 6280 0.4170 +3586 6283 0.4420 +3586 6285 0.4790 +3586 6288 0.7650 +3586 6289 0.6160 +3586 6346 0.6040 +3586 6347 0.9630 +3586 6348 0.9720 +3586 6351 0.9360 +3586 6354 0.8030 +3586 6355 0.6680 +3586 6356 0.8430 +3586 6357 0.7490 +3586 6359 0.4610 +3586 6360 0.4680 +3586 6361 0.7680 +3586 6362 0.6960 +3586 6363 0.8530 +3586 6364 0.8350 +3586 6366 0.6510 +3586 6367 0.9120 +3586 6368 0.4830 +3586 6369 0.7700 +3586 6370 0.4740 +3586 6372 0.6740 +3586 6373 0.7240 +3586 6374 0.7590 +3586 6375 0.5380 +3586 6376 0.8150 +3586 6382 0.5800 +3586 6387 0.7250 +3586 6401 0.6750 +3586 6402 0.7410 +3586 6403 0.6310 +3586 6404 0.4190 +3586 6441 0.4330 +3586 6469 0.5580 +3586 6490 0.4310 +3586 6504 0.5270 +3586 6517 0.4070 +3586 6556 0.4600 +3586 6590 0.4060 +3586 6614 0.5560 +3586 6622 0.4540 +3586 6647 0.4670 +3586 6648 0.4360 +3586 6688 0.6840 +3586 6693 0.4880 +3586 6696 0.5900 +3586 6714 0.5830 +3586 6772 0.8650 +3586 6773 0.5520 +3586 6774 0.9680 +3586 6775 0.9410 +3586 6776 0.7560 +3586 6777 0.7530 +3586 6778 0.9070 +3586 6850 0.6030 +3586 6863 0.5120 +3586 6868 0.4930 +3586 7010 0.4810 +3586 7037 0.5110 +3586 7039 0.5950 +3586 7040 0.9320 +3586 7042 0.6260 +3586 7043 0.5870 +3586 7046 0.6000 +3586 7048 0.7040 +3586 7054 0.4900 +3586 7056 0.5460 +3586 7057 0.4510 +3586 7062 0.4810 +3586 7070 0.6230 +3586 7076 0.9540 +3586 7077 0.5960 +3586 7078 0.4560 +3586 7082 0.7150 +3586 7096 0.7930 +3586 7097 0.9560 +3586 7098 0.7780 +3586 7099 0.9430 +3586 7100 0.8180 +3586 7113 0.5360 +3586 7122 0.4030 +3586 7124 0.9920 +3586 7128 0.4800 +3586 7130 0.6090 +3586 7132 0.9680 +3586 7133 0.8430 +3586 7137 0.4160 +3586 7157 0.7560 +3586 7185 0.4200 +3586 7187 0.4580 +3586 7189 0.6530 +3586 7292 0.7570 +3586 7293 0.6340 +3586 7297 0.9580 +3586 7305 0.4460 +3586 7350 0.4420 +3586 7351 0.4120 +3586 7412 0.7260 +3586 7424 0.4750 +3586 7429 0.4180 +3586 7432 0.4470 +3586 7442 0.4870 +3586 7450 0.5170 +3586 7494 0.4440 +3586 7498 0.4140 +3586 7528 0.4530 +3586 7535 0.5210 +3586 7538 0.6010 +3586 7837 0.7200 +3586 7850 0.8710 +3586 7852 0.6800 +3586 8174 0.4070 +3586 8288 0.4580 +3586 8290 0.4590 +3586 8320 0.5060 +3586 8349 0.4320 +3586 8356 0.4560 +3586 8517 0.4060 +3586 8600 0.7450 +3586 8639 0.6090 +3586 8651 0.7070 +3586 8678 0.4850 +3586 8718 0.4320 +3586 8740 0.4290 +3586 8741 0.5720 +3586 8742 0.4020 +3586 8743 0.5490 +3586 8744 0.4540 +3586 8764 0.4630 +3586 8784 0.6940 +3586 8797 0.4320 +3586 8807 0.4030 +3586 8809 0.5220 +3586 8817 0.5850 +3586 8822 0.5830 +3586 8823 0.5840 +3586 8829 0.5070 +3586 8835 0.4050 +3586 8837 0.4220 +3586 8842 0.4160 +3586 8877 0.4750 +3586 8988 0.4580 +3586 8995 0.5470 +3586 9021 0.8480 +3586 9034 0.7810 +3586 9075 0.4380 +3586 9076 0.6880 +3586 9159 0.4710 +3586 9173 0.4900 +3586 9180 0.7100 +3586 9235 0.5070 +3586 9308 0.8230 +3586 9314 0.4010 +3586 9332 0.9550 +3586 9370 0.8220 +3586 9436 0.4770 +3586 9437 0.5770 +3586 9447 0.4580 +3586 9466 0.8480 +3586 9516 0.4940 +3586 9536 0.4510 +3586 9560 0.6780 +3586 9636 0.4560 +3586 9641 0.4300 +3586 9817 0.4610 +3586 9966 0.5800 +3586 9971 0.4090 +3586 10018 0.4520 +3586 10062 0.5450 +3586 10068 0.4170 +3586 10135 0.4520 +3586 10219 0.5430 +3586 10220 0.5500 +3586 10288 0.7200 +3586 10320 0.6030 +3586 10344 0.6960 +3586 10379 0.4010 +3586 10392 0.5640 +3586 10461 0.5270 +3586 10462 0.5240 +3586 10464 0.4930 +3586 10538 0.5530 +3586 10562 0.4550 +3586 10563 0.6740 +3586 10578 0.5050 +3586 10663 0.5240 +3586 10666 0.5430 +3586 10673 0.7080 +3586 10803 0.5970 +3586 10850 0.5060 +3586 10859 0.6020 +3586 10875 0.4170 +3586 10891 0.4450 +3586 11006 0.6810 +3586 11009 0.8560 +3586 11027 0.5380 +3586 11059 0.4030 +3586 11126 0.4580 +3586 11213 0.5400 +3586 11251 0.4060 +3586 22861 0.4620 +3586 22914 0.6630 +3586 22943 0.4770 +3586 23308 0.8270 +3586 23405 0.4030 +3586 23411 0.5750 +3586 23435 0.5190 +3586 23476 0.4920 +3586 23495 0.4680 +3586 23586 0.5940 +3586 23643 0.5900 +3586 23705 0.4640 +3586 23765 0.5750 +3586 26191 0.4720 +3586 26253 0.5340 +3586 26281 0.5830 +3586 26291 0.4010 +3586 26525 0.4140 +3586 27006 0.5820 +3586 27087 0.6300 +3586 27159 0.5150 +3586 27178 0.5930 +3586 27189 0.4820 +3586 29110 0.4750 +3586 29126 0.8770 +3586 29851 0.8470 +3586 29949 0.8720 +3586 30009 0.8660 +3586 30816 0.5880 +3586 30835 0.8270 +3586 50489 0.5230 +3586 50615 0.8450 +3586 50616 0.9440 +3586 50856 0.4040 +3586 50943 0.9550 +3586 51135 0.5570 +3586 51284 0.7820 +3586 51311 0.7030 +3586 51497 0.6610 +3586 51554 0.4270 +3586 51561 0.8380 +3586 51738 0.4390 +3586 51744 0.4210 +3586 53832 0.8690 +3586 53833 0.8840 +3586 54106 0.8680 +3586 54205 0.5110 +3586 54209 0.5420 +3586 54210 0.5800 +3586 54472 0.4020 +3586 55016 0.5670 +3586 55054 0.4450 +3586 55509 0.4530 +3586 56729 0.6210 +3586 57379 0.4820 +3586 57506 0.4620 +3586 57509 0.4750 +3586 57817 0.4940 +3586 58191 0.5300 +3586 58484 0.4610 +3586 58985 0.9070 +3586 59067 0.6510 +3586 59272 0.7030 +3586 59307 0.4170 +3586 64127 0.7010 +3586 64135 0.5420 +3586 64170 0.6660 +3586 64581 0.6900 +3586 64805 0.4090 +3586 64806 0.5090 +3586 65258 0.4460 +3586 79679 0.6520 +3586 79885 0.4550 +3586 80380 0.7970 +3586 80381 0.7340 +3586 80736 0.4820 +3586 81793 0.5180 +3586 83417 0.4210 +3586 84639 0.4440 +3586 84666 0.6970 +3586 84706 0.5070 +3586 84868 0.8620 +3586 85480 0.6650 +3586 90865 0.7930 +3586 91937 0.5190 +3586 93978 0.4900 +3586 93986 0.4480 +3586 112744 0.8740 +3586 114548 0.6900 +3586 114609 0.6610 +3586 115004 0.4590 +3586 115650 0.4480 +3586 116379 0.7810 +3586 130120 0.5360 +3586 131450 0.5590 +3586 135228 0.4550 +3586 137902 0.7200 +3586 140885 0.5810 +3586 146433 0.5250 +3586 146713 0.4470 +3586 149233 0.9700 +3586 151888 0.5110 +3586 163702 0.9280 +3586 168400 0.4800 +3586 169355 0.8240 +3586 170482 0.4860 +3586 171389 0.4370 +3586 200081 0.4450 +3586 201633 0.7400 +3586 246778 0.5840 +3586 257202 0.6280 +3586 259197 0.5110 +3586 282616 0.8380 +3586 282617 0.8130 +3586 282618 0.8500 +3586 283420 0.4340 +3586 284194 0.5640 +3586 338442 0.5390 +3586 345611 0.5590 +3586 386653 0.5830 +3586 405754 0.5560 +3586 414062 0.7500 +3586 414325 0.4140 +3586 440093 0.4540 +3586 440686 0.4550 +3586 493869 0.6350 +3586 653361 0.4600 +3586 653604 0.4540 +3586 654346 0.5640 +3586 723961 0.5840 +3586 728378 0.4310 +3586 100133941 0.7150 +3586 100289462 0.4180 +3586 100506658 0.7210 +3586 100526664 0.5350 +3586 102723407 0.4600 +3587 3588 0.9990 +3587 3589 0.7400 +3587 3592 0.6770 +3587 3593 0.6990 +3587 3594 0.5870 +3587 3595 0.4040 +3587 3596 0.8830 +3587 3597 0.7260 +3587 3600 0.8730 +3587 3601 0.5610 +3587 3603 0.4020 +3587 3605 0.5550 +3587 3606 0.6290 +3587 3620 0.4040 +3587 3627 0.4920 +3587 3659 0.4060 +3587 3662 0.4650 +3587 3663 0.4090 +3587 3683 0.5500 +3587 3684 0.6560 +3587 3687 0.5830 +3587 3689 0.5990 +3587 3702 0.4160 +3587 3716 0.9990 +3587 3717 0.7780 +3587 3718 0.7790 +3587 3902 0.5100 +3587 3903 0.4230 +3587 3937 0.5120 +3587 3952 0.6950 +3587 3976 0.6880 +3587 4050 0.4040 +3587 4179 0.4490 +3587 4283 0.6360 +3587 4297 0.4090 +3587 4312 0.4020 +3587 4332 0.4160 +3587 4345 0.5090 +3587 4360 0.4130 +3587 4542 0.4070 +3587 4688 0.4260 +3587 4689 0.6310 +3587 4790 0.5390 +3587 4792 0.4280 +3587 4818 0.4740 +3587 5008 0.7630 +3587 5133 0.5990 +3587 5154 0.6660 +3587 5155 0.6800 +3587 5341 0.4620 +3587 5551 0.5130 +3587 5599 0.4260 +3587 5617 0.6500 +3587 5788 0.6720 +3587 5896 0.4020 +3587 6039 0.4470 +3587 6278 0.5350 +3587 6279 0.4340 +3587 6347 0.4680 +3587 6348 0.5060 +3587 6351 0.7000 +3587 6366 0.4450 +3587 6402 0.5630 +3587 6404 0.4270 +3587 6688 0.4840 +3587 6772 0.8610 +3587 6774 0.9840 +3587 6775 0.4760 +3587 6776 0.8640 +3587 6777 0.7670 +3587 6778 0.4530 +3587 7040 0.6580 +3587 7066 0.6620 +3587 7096 0.4430 +3587 7097 0.5640 +3587 7099 0.5350 +3587 7124 0.8640 +3587 7128 0.4390 +3587 7132 0.6220 +3587 7133 0.7260 +3587 7297 0.9970 +3587 7305 0.5830 +3587 7429 0.5330 +3587 7805 0.5950 +3587 7850 0.6450 +3587 7852 0.4580 +3587 8477 0.4200 +3587 8807 0.4100 +3587 8808 0.4860 +3587 8809 0.4720 +3587 9021 0.6530 +3587 9034 0.4850 +3587 9051 0.4610 +3587 9235 0.5040 +3587 9308 0.4330 +3587 9332 0.5350 +3587 9450 0.5070 +3587 9466 0.4240 +3587 9473 0.5650 +3587 9595 0.5100 +3587 9938 0.4050 +3587 9966 0.4760 +3587 10117 0.4020 +3587 10288 0.5240 +3587 10320 0.4440 +3587 10538 0.5740 +3587 10563 0.5130 +3587 10663 0.4970 +3587 10673 0.4320 +3587 11009 0.8940 +3587 11314 0.4430 +3587 11326 0.4480 +3587 23765 0.6900 +3587 27128 0.5160 +3587 29126 0.7120 +3587 29851 0.4940 +3587 29949 0.9140 +3587 30009 0.5570 +3587 50604 0.6550 +3587 50615 0.6070 +3587 50616 0.9380 +3587 50943 0.6160 +3587 51284 0.4920 +3587 51311 0.4890 +3587 51561 0.7860 +3587 53342 0.6950 +3587 53832 0.5940 +3587 53833 0.9100 +3587 54106 0.4360 +3587 54440 0.5570 +3587 55054 0.5070 +3587 55801 0.8070 +3587 56832 0.6680 +3587 57217 0.4910 +3587 58985 0.9760 +3587 59067 0.6950 +3587 64127 0.6110 +3587 64231 0.4320 +3587 64375 0.4620 +3587 64581 0.4060 +3587 79679 0.4340 +3587 80380 0.6840 +3587 84868 0.4090 +3587 85480 0.7350 +3587 116379 0.6780 +3587 117289 0.4510 +3587 132014 0.4380 +3587 149233 0.5050 +3587 163702 0.9300 +3587 201633 0.4520 +3587 219972 0.4230 +3587 257106 0.4320 +3587 282616 0.8430 +3587 282617 0.9310 +3587 282618 0.8780 +3587 283316 0.4110 +3587 338376 0.6680 +3587 400935 0.4540 +3587 401546 0.4560 +3587 414325 0.4160 +3588 3589 0.7480 +3588 3592 0.6610 +3588 3593 0.7000 +3588 3594 0.4880 +3588 3595 0.5770 +3588 3596 0.7650 +3588 3597 0.6610 +3588 3600 0.8520 +3588 3605 0.4860 +3588 3606 0.5490 +3588 3659 0.4180 +3588 3661 0.4280 +3588 3665 0.4230 +3588 3716 0.9980 +3588 3717 0.8840 +3588 3718 0.7570 +3588 3952 0.6800 +3588 3976 0.6910 +3588 4599 0.6350 +3588 4689 0.4970 +3588 4938 0.4560 +3588 5008 0.7100 +3588 5154 0.6540 +3588 5155 0.6620 +3588 5617 0.6500 +3588 5781 0.5620 +3588 6278 0.5700 +3588 6363 0.5110 +3588 6772 0.9020 +3588 6773 0.7970 +3588 6774 0.9330 +3588 6775 0.6540 +3588 6776 0.7090 +3588 6777 0.7080 +3588 7040 0.5690 +3588 7046 0.4660 +3588 7066 0.6540 +3588 7098 0.4220 +3588 7099 0.4230 +3588 7124 0.5180 +3588 7132 0.5170 +3588 7133 0.4570 +3588 7297 0.9990 +3588 7850 0.4130 +3588 8554 0.5430 +3588 8624 0.4840 +3588 8809 0.5330 +3588 9021 0.4580 +3588 9034 0.4100 +3588 10379 0.6020 +3588 10663 0.4310 +3588 11009 0.9140 +3588 23586 0.4350 +3588 23765 0.5130 +3588 26291 0.4140 +3588 29949 0.9300 +3588 50604 0.6820 +3588 50615 0.4690 +3588 50616 0.9990 +3588 51135 0.4380 +3588 51284 0.4130 +3588 51561 0.7310 +3588 53342 0.7240 +3588 53832 0.9970 +3588 53833 0.5590 +3588 55801 0.9990 +3588 56832 0.8210 +3588 57217 0.4360 +3588 58985 0.9990 +3588 59067 0.6840 +3588 64127 0.4530 +3588 64135 0.4100 +3588 80301 0.5280 +3588 85480 0.7250 +3588 94104 0.4630 +3588 112744 0.4030 +3588 116379 0.9100 +3588 116448 0.4520 +3588 132014 0.4280 +3588 149233 0.4450 +3588 163702 0.9990 +3588 282616 0.9980 +3588 282617 0.9990 +3588 282618 0.9990 +3588 338376 0.8220 +3588 414325 0.4520 +3589 3590 0.9990 +3589 3594 0.7440 +3589 3595 0.7390 +3589 3596 0.7630 +3589 3597 0.8670 +3589 3598 0.8270 +3589 3600 0.5900 +3589 3603 0.4430 +3589 3605 0.6400 +3589 3606 0.5420 +3589 3627 0.4480 +3589 3630 0.5850 +3589 3659 0.4680 +3589 3661 0.4400 +3589 3716 0.8370 +3589 3717 0.7550 +3589 3952 0.4120 +3589 3953 0.7350 +3589 3976 0.9320 +3589 3977 0.9390 +3589 4254 0.7860 +3589 4312 0.5000 +3589 4313 0.4140 +3589 4314 0.4940 +3589 4318 0.4850 +3589 4352 0.8080 +3589 4790 0.4110 +3589 4792 0.4810 +3589 4982 0.4840 +3589 5008 0.9360 +3589 5054 0.4250 +3589 5156 0.7250 +3589 5159 0.7250 +3589 5617 0.5470 +3589 5618 0.6890 +3589 5741 0.4670 +3589 5743 0.4840 +3589 5744 0.7630 +3589 5788 0.4460 +3589 6286 0.4280 +3589 6347 0.5770 +3589 6348 0.4930 +3589 6351 0.4180 +3589 6356 0.4550 +3589 6364 0.4470 +3589 6374 0.6820 +3589 6387 0.5210 +3589 6446 0.4100 +3589 6615 0.4320 +3589 6696 0.4990 +3589 6714 0.4260 +3589 6772 0.6770 +3589 6774 0.7170 +3589 6778 0.5140 +3589 7040 0.5870 +3589 7042 0.5180 +3589 7043 0.4140 +3589 7044 0.4230 +3589 7066 0.7200 +3589 7076 0.4220 +3589 7100 0.4950 +3589 7124 0.6700 +3589 7295 0.4260 +3589 7297 0.8220 +3589 7852 0.6400 +3589 8091 0.4990 +3589 8600 0.6560 +3589 8817 0.4260 +3589 8822 0.4220 +3589 8823 0.4120 +3589 9021 0.5030 +3589 9180 0.9560 +3589 9235 0.4300 +3589 9466 0.7980 +3589 10401 0.5290 +3589 11009 0.5380 +3589 22943 0.4040 +3589 23529 0.6210 +3589 26281 0.4130 +3589 27006 0.4200 +3589 27189 0.4440 +3589 29949 0.5520 +3589 50615 0.7430 +3589 50616 0.5750 +3589 53832 0.6980 +3589 53833 0.7030 +3589 55801 0.4570 +3589 58985 0.7180 +3589 90865 0.4990 +3589 116379 0.7090 +3589 146433 0.4180 +3589 149233 0.7250 +3589 163702 0.7130 +3589 200081 0.4700 +3589 246778 0.4350 +3589 282616 0.4100 +3589 282618 0.5360 +3589 386653 0.7260 +3590 3592 0.6500 +3590 3593 0.6500 +3590 3596 0.8430 +3590 3597 0.8430 +3590 3598 0.5770 +3590 3600 0.7070 +3590 3716 0.7340 +3590 3717 0.7230 +3590 3718 0.6920 +3590 3952 0.6720 +3590 3976 0.7930 +3590 3977 0.6990 +3590 5008 0.8740 +3590 5154 0.6500 +3590 5155 0.6710 +3590 5236 0.5650 +3590 5238 0.5940 +3590 5239 0.5700 +3590 5617 0.6830 +3590 6347 0.4540 +3590 6363 0.4320 +3590 6364 0.4740 +3590 6373 0.4240 +3590 6774 0.4320 +3590 7066 0.6740 +3590 7293 0.4230 +3590 7297 0.8570 +3590 7360 0.7430 +3590 8226 0.6650 +3590 8995 0.4100 +3590 9180 0.6320 +3590 9466 0.5930 +3590 10850 0.4770 +3590 11009 0.6880 +3590 23349 0.4010 +3590 23483 0.7780 +3590 27294 0.4110 +3590 29949 0.7020 +3590 50604 0.6500 +3590 50616 0.7090 +3590 51561 0.6750 +3590 53342 0.6710 +3590 55276 0.5240 +3590 56832 0.6500 +3590 59067 0.6600 +3590 80146 0.4250 +3590 85480 0.6670 +3590 91373 0.5830 +3590 130589 0.7660 +3590 197258 0.6820 +3590 282616 0.6810 +3590 282617 0.6500 +3590 282618 0.6900 +3590 283209 0.5240 +3590 338376 0.6660 +3590 386653 0.5780 +3592 3593 0.9990 +3592 3594 0.9740 +3592 3595 0.9710 +3592 3596 0.5500 +3592 3597 0.6580 +3592 3598 0.6520 +3592 3606 0.5100 +3592 3627 0.5560 +3592 3716 0.5460 +3592 3717 0.5760 +3592 3953 0.7720 +3592 3976 0.4520 +3592 3977 0.6500 +3592 4352 0.6500 +3592 5034 0.7510 +3592 5156 0.6530 +3592 5159 0.6530 +3592 5618 0.6500 +3592 6347 0.4980 +3592 6348 0.4600 +3592 6364 0.4630 +3592 6367 0.4330 +3592 6772 0.7500 +3592 6774 0.5610 +3592 6775 0.7710 +3592 6845 0.7500 +3592 7124 0.5790 +3592 7297 0.5730 +3592 9180 0.6510 +3592 9244 0.4610 +3592 9466 0.7020 +3592 10148 0.9850 +3592 11167 0.4850 +3592 50615 0.6590 +3592 50848 0.4470 +3592 51561 0.4080 +3592 53832 0.6500 +3592 53833 0.6540 +3592 58985 0.7180 +3592 116379 0.6500 +3592 149233 0.7240 +3592 163702 0.6510 +3592 414062 0.4360 +3593 3594 0.9980 +3593 3595 0.9580 +3593 3596 0.6030 +3593 3597 0.6540 +3593 3598 0.6690 +3593 3600 0.4030 +3593 3606 0.6580 +3593 3627 0.6230 +3593 3716 0.5550 +3593 3717 0.6390 +3593 3953 0.6500 +3593 3976 0.4480 +3593 3977 0.6560 +3593 4352 0.6500 +3593 4360 0.4490 +3593 5034 0.7670 +3593 5156 0.6860 +3593 5159 0.6730 +3593 5618 0.6600 +3593 6347 0.6000 +3593 6348 0.5270 +3593 6351 0.5400 +3593 6363 0.4420 +3593 6364 0.5210 +3593 6367 0.5510 +3593 6556 0.5060 +3593 6774 0.6270 +3593 6775 0.6600 +3593 6845 0.7500 +3593 7124 0.7140 +3593 7297 0.7690 +3593 9180 0.6500 +3593 9466 0.7160 +3593 9966 0.4500 +3593 50615 0.7050 +3593 51561 0.9990 +3593 53832 0.6500 +3593 53833 0.6740 +3593 54209 0.4420 +3593 58985 0.6500 +3593 80008 0.4580 +3593 116379 0.7230 +3593 149233 0.9860 +3593 163702 0.6760 +3593 345611 0.4620 +3593 414062 0.6000 +3594 3595 0.9990 +3594 3596 0.8160 +3594 3600 0.8340 +3594 3601 0.6630 +3594 3605 0.7990 +3594 3606 0.6820 +3594 3627 0.5790 +3594 3659 0.6730 +3594 3662 0.4060 +3594 3683 0.4190 +3594 3684 0.4350 +3594 3687 0.4670 +3594 3716 0.9620 +3594 3717 0.9980 +3594 3718 0.8190 +3594 3820 0.4410 +3594 3824 0.4780 +3594 3902 0.4150 +3594 3952 0.6680 +3594 3976 0.7000 +3594 3977 0.5130 +3594 4063 0.5240 +3594 4065 0.4150 +3594 4134 0.4020 +3594 4283 0.4250 +3594 4340 0.6450 +3594 4360 0.4060 +3594 4613 0.4360 +3594 4843 0.4280 +3594 5008 0.7300 +3594 5154 0.6760 +3594 5155 0.6500 +3594 5551 0.5600 +3594 5617 0.6560 +3594 5788 0.4560 +3594 6097 0.5400 +3594 6402 0.5520 +3594 6556 0.6300 +3594 6772 0.8120 +3594 6773 0.4030 +3594 6774 0.9760 +3594 6775 0.9900 +3594 6776 0.5020 +3594 6777 0.4870 +3594 6778 0.4700 +3594 7066 0.6500 +3594 7097 0.4600 +3594 7099 0.4550 +3594 7124 0.6990 +3594 7132 0.4170 +3594 7297 0.9990 +3594 7704 0.4800 +3594 8320 0.4730 +3594 8651 0.4240 +3594 8807 0.4780 +3594 8809 0.8310 +3594 9021 0.7420 +3594 9034 0.6670 +3594 9180 0.5140 +3594 9466 0.9810 +3594 9636 0.4910 +3594 10219 0.4240 +3594 10318 0.4530 +3594 10365 0.4400 +3594 10538 0.4150 +3594 10628 0.4510 +3594 10663 0.6620 +3594 11009 0.7090 +3594 22806 0.4360 +3594 22914 0.4660 +3594 23765 0.6130 +3594 29851 0.4600 +3594 29949 0.7300 +3594 30009 0.8330 +3594 50604 0.6500 +3594 50615 0.7840 +3594 50616 0.8910 +3594 50943 0.5050 +3594 51284 0.4150 +3594 51561 0.9980 +3594 53342 0.7280 +3594 54756 0.4740 +3594 55540 0.5820 +3594 55871 0.4330 +3594 56832 0.7490 +3594 59067 0.7260 +3594 60468 0.4430 +3594 64127 0.5450 +3594 64170 0.5100 +3594 64581 0.4790 +3594 79763 0.4050 +3594 81704 0.4760 +3594 84818 0.6530 +3594 84888 0.4330 +3594 85480 0.7440 +3594 89790 0.4790 +3594 112744 0.6350 +3594 132014 0.6490 +3594 149233 0.9990 +3594 165530 0.4200 +3594 246778 0.7480 +3594 282616 0.7000 +3594 282617 0.7440 +3594 282618 0.7160 +3594 338376 0.6850 +3594 340152 0.7730 +3595 3596 0.8210 +3595 3597 0.5810 +3595 3600 0.8490 +3595 3601 0.6030 +3595 3605 0.7610 +3595 3606 0.5460 +3595 3624 0.4070 +3595 3662 0.4110 +3595 3716 0.8760 +3595 3717 0.9980 +3595 3718 0.7320 +3595 3952 0.6720 +3595 3976 0.6900 +3595 4094 0.6280 +3595 4283 0.4060 +3595 4613 0.4440 +3595 4790 0.4630 +3595 5008 0.7120 +3595 5154 0.6500 +3595 5155 0.6660 +3595 5551 0.4940 +3595 5617 0.6760 +3595 6097 0.6550 +3595 6556 0.4170 +3595 6772 0.8790 +3595 6774 0.8500 +3595 6775 0.9960 +3595 6776 0.4290 +3595 6777 0.4170 +3595 6778 0.4570 +3595 7066 0.6580 +3595 7124 0.4870 +3595 7297 0.9940 +3595 8302 0.4390 +3595 8320 0.4650 +3595 8651 0.4150 +3595 8807 0.4680 +3595 8809 0.7860 +3595 9021 0.7630 +3595 9034 0.4780 +3595 9466 0.9950 +3595 10148 0.7450 +3595 10318 0.4460 +3595 11009 0.7240 +3595 23765 0.4270 +3595 27033 0.5890 +3595 29851 0.4400 +3595 29949 0.7150 +3595 30009 0.8810 +3595 49860 0.4290 +3595 50604 0.6540 +3595 50615 0.4860 +3595 50616 0.8240 +3595 50943 0.5520 +3595 51561 0.9290 +3595 51752 0.4200 +3595 53342 0.7150 +3595 54756 0.4860 +3595 55196 0.4660 +3595 55540 0.5440 +3595 56832 0.6740 +3595 59067 0.7210 +3595 84818 0.5420 +3595 85480 0.7380 +3595 112744 0.6590 +3595 132014 0.5340 +3595 149233 0.6250 +3595 246778 0.8110 +3595 282616 0.6690 +3595 282617 0.6740 +3595 282618 0.6890 +3595 338376 0.6570 +3596 3597 0.9990 +3596 3598 0.9990 +3596 3600 0.8710 +3596 3603 0.6220 +3596 3605 0.9400 +3596 3606 0.9160 +3596 3620 0.6070 +3596 3627 0.8710 +3596 3630 0.5700 +3596 3659 0.6290 +3596 3661 0.4060 +3596 3662 0.5900 +3596 3663 0.4400 +3596 3667 0.5260 +3596 3682 0.6080 +3596 3684 0.8280 +3596 3687 0.8240 +3596 3688 0.5440 +3596 3689 0.6180 +3596 3713 0.4040 +3596 3716 0.8690 +3596 3717 0.8450 +3596 3718 0.6820 +3596 3725 0.5440 +3596 3815 0.5450 +3596 3820 0.5070 +3596 3821 0.4370 +3596 3824 0.4200 +3596 3902 0.4790 +3596 3916 0.4290 +3596 3934 0.4160 +3596 3952 0.6950 +3596 3953 0.7100 +3596 3958 0.4430 +3596 3976 0.4760 +3596 3977 0.6900 +3596 4014 0.4740 +3596 4049 0.7470 +3596 4056 0.4180 +3596 4057 0.5360 +3596 4087 0.4030 +3596 4088 0.4470 +3596 4092 0.4810 +3596 4094 0.4790 +3596 4128 0.7870 +3596 4254 0.5070 +3596 4282 0.4480 +3596 4283 0.7220 +3596 4312 0.4280 +3596 4313 0.6160 +3596 4314 0.4810 +3596 4318 0.7590 +3596 4321 0.6870 +3596 4322 0.5790 +3596 4323 0.4860 +3596 4340 0.4230 +3596 4352 0.6720 +3596 4353 0.5120 +3596 4360 0.8400 +3596 4481 0.4760 +3596 4586 0.7950 +3596 4684 0.6800 +3596 4773 0.5520 +3596 4783 0.4530 +3596 4790 0.5840 +3596 4792 0.4770 +3596 4803 0.5160 +3596 4843 0.6220 +3596 4907 0.4570 +3596 5008 0.4660 +3596 5054 0.4420 +3596 5055 0.6610 +3596 5133 0.4980 +3596 5156 0.7450 +3596 5159 0.7330 +3596 5175 0.4490 +3596 5196 0.4440 +3596 5328 0.5500 +3596 5468 0.6810 +3596 5473 0.6080 +3596 5551 0.6000 +3596 5595 0.4870 +3596 5618 0.6620 +3596 5743 0.5770 +3596 5788 0.6940 +3596 5896 0.5740 +3596 6036 0.5410 +3596 6037 0.6000 +3596 6095 0.4400 +3596 6097 0.6030 +3596 6288 0.5370 +3596 6289 0.5310 +3596 6320 0.4120 +3596 6346 0.6370 +3596 6347 0.9320 +3596 6348 0.8950 +3596 6351 0.8300 +3596 6354 0.6350 +3596 6355 0.5160 +3596 6356 0.9440 +3596 6357 0.6100 +3596 6359 0.4210 +3596 6361 0.9130 +3596 6362 0.7470 +3596 6363 0.5020 +3596 6364 0.6890 +3596 6366 0.4710 +3596 6367 0.8350 +3596 6369 0.7390 +3596 6373 0.5810 +3596 6374 0.6060 +3596 6376 0.6410 +3596 6387 0.5820 +3596 6401 0.4810 +3596 6402 0.5950 +3596 6403 0.4570 +3596 6688 0.4360 +3596 6696 0.4720 +3596 6772 0.8750 +3596 6774 0.8430 +3596 6775 0.6900 +3596 6776 0.5770 +3596 6777 0.5740 +3596 6778 0.9710 +3596 6850 0.4380 +3596 6863 0.4340 +3596 7039 0.7260 +3596 7040 0.8160 +3596 7042 0.5020 +3596 7043 0.4520 +3596 7070 0.4920 +3596 7076 0.7020 +3596 7096 0.5050 +3596 7097 0.7020 +3596 7098 0.5990 +3596 7099 0.8060 +3596 7100 0.4540 +3596 7124 0.9570 +3596 7132 0.6600 +3596 7133 0.4160 +3596 7157 0.4180 +3596 7189 0.5980 +3596 7268 0.5600 +3596 7292 0.6200 +3596 7293 0.5820 +3596 7297 0.8310 +3596 7356 0.4560 +3596 7412 0.7400 +3596 7837 0.5560 +3596 7850 0.6410 +3596 7852 0.5060 +3596 8288 0.5990 +3596 8320 0.4480 +3596 8600 0.4540 +3596 8639 0.5070 +3596 8651 0.4970 +3596 8743 0.4120 +3596 8784 0.5070 +3596 8807 0.4780 +3596 8809 0.6190 +3596 8817 0.5230 +3596 8822 0.5270 +3596 8823 0.5240 +3596 9021 0.5170 +3596 9034 0.5940 +3596 9075 0.4300 +3596 9158 0.4350 +3596 9173 0.8640 +3596 9180 0.7330 +3596 9235 0.4180 +3596 9308 0.4510 +3596 9332 0.7100 +3596 9370 0.4460 +3596 9436 0.4810 +3596 9437 0.5260 +3596 9466 0.7590 +3596 9518 0.5060 +3596 9560 0.4100 +3596 9966 0.4160 +3596 10068 0.4590 +3596 10219 0.5690 +3596 10232 0.4120 +3596 10344 0.8090 +3596 10462 0.4200 +3596 10563 0.5710 +3596 10631 0.7880 +3596 10663 0.4040 +3596 10673 0.5110 +3596 10800 0.5070 +3596 10850 0.5240 +3596 11005 0.4320 +3596 11009 0.4480 +3596 11251 0.7190 +3596 22914 0.4800 +3596 23308 0.4590 +3596 23586 0.4100 +3596 23765 0.6870 +3596 25803 0.6930 +3596 26281 0.5210 +3596 27006 0.5290 +3596 27069 0.4310 +3596 27159 0.7640 +3596 27178 0.4470 +3596 27181 0.4490 +3596 27189 0.6590 +3596 27190 0.6170 +3596 29126 0.6180 +3596 29851 0.6200 +3596 29949 0.6750 +3596 30009 0.8520 +3596 30835 0.5100 +3596 50615 0.7870 +3596 50616 0.8470 +3596 50943 0.8080 +3596 51284 0.5790 +3596 51297 0.5170 +3596 51311 0.4310 +3596 51497 0.5070 +3596 51561 0.4890 +3596 53832 0.7250 +3596 53833 0.7050 +3596 54106 0.6130 +3596 54209 0.4100 +3596 54472 0.5210 +3596 55540 0.8210 +3596 55801 0.5510 +3596 56300 0.4310 +3596 56729 0.5190 +3596 58191 0.4160 +3596 58985 0.7710 +3596 59067 0.5650 +3596 59272 0.4670 +3596 59340 0.4380 +3596 64127 0.4710 +3596 64581 0.5200 +3596 64806 0.8030 +3596 80332 0.4480 +3596 80380 0.6810 +3596 80381 0.6000 +3596 81793 0.5750 +3596 84666 0.6620 +3596 84868 0.6270 +3596 85480 0.8870 +3596 90865 0.9370 +3596 94103 0.5050 +3596 112744 0.8420 +3596 114548 0.4810 +3596 116379 0.7120 +3596 124446 0.6390 +3596 131450 0.4350 +3596 133396 0.4040 +3596 137902 0.5560 +3596 140885 0.4240 +3596 149233 0.8300 +3596 150372 0.4490 +3596 163702 0.7350 +3596 169355 0.5400 +3596 200081 0.5060 +3596 282616 0.4560 +3596 282618 0.4400 +3596 386653 0.8370 +3596 388698 0.6450 +3596 414062 0.4570 +3596 440854 0.4800 +3596 727897 0.5590 +3596 100423062 0.9080 +3596 100506658 0.5210 +3597 3598 0.9720 +3597 3600 0.8860 +3597 3716 0.9730 +3597 3717 0.9920 +3597 3718 0.8970 +3597 3952 0.6680 +3597 3976 0.7380 +3597 4773 0.4120 +3597 5008 0.7130 +3597 5154 0.6710 +3597 5155 0.7120 +3597 5617 0.6580 +3597 6356 0.4440 +3597 6772 0.6920 +3597 6774 0.8070 +3597 6778 0.9530 +3597 7040 0.5730 +3597 7046 0.4660 +3597 7048 0.4910 +3597 7066 0.6650 +3597 7099 0.4100 +3597 7124 0.6210 +3597 7132 0.5560 +3597 7133 0.5060 +3597 7297 0.9980 +3597 7850 0.6260 +3597 8651 0.7850 +3597 8743 0.5170 +3597 9173 0.6060 +3597 9466 0.5050 +3597 9655 0.5760 +3597 10631 0.4110 +3597 11009 0.7090 +3597 23765 0.4630 +3597 26146 0.7060 +3597 26280 0.4660 +3597 27159 0.5830 +3597 29949 0.8000 +3597 50604 0.6500 +3597 50615 0.5620 +3597 50616 0.7580 +3597 51561 0.7450 +3597 51764 0.4040 +3597 53342 0.6930 +3597 53832 0.5820 +3597 55540 0.5430 +3597 56832 0.6750 +3597 58985 0.7130 +3597 59067 0.6670 +3597 84666 0.5340 +3597 85457 0.4110 +3597 85480 0.8690 +3597 90865 0.6230 +3597 163702 0.4350 +3597 282616 0.6610 +3597 282617 0.6560 +3597 282618 0.6800 +3597 338376 0.6780 +3598 3600 0.7810 +3598 3716 0.9240 +3598 3717 0.7350 +3598 3718 0.7390 +3598 3952 0.6750 +3598 3958 0.4030 +3598 3976 0.6650 +3598 4100 0.6950 +3598 4322 0.4070 +3598 4773 0.4060 +3598 5008 0.7070 +3598 5154 0.6680 +3598 5155 0.6890 +3598 5617 0.6580 +3598 6355 0.4580 +3598 6356 0.5820 +3598 6357 0.4550 +3598 6364 0.5000 +3598 6373 0.4830 +3598 6490 0.6780 +3598 6778 0.8220 +3598 7037 0.4440 +3598 7066 0.6570 +3598 7268 0.4410 +3598 7293 0.6080 +3598 7297 0.7480 +3598 8000 0.4460 +3598 8651 0.4710 +3598 8809 0.4050 +3598 8995 0.4800 +3598 10135 0.4750 +3598 10232 0.5300 +3598 11009 0.7300 +3598 23196 0.5270 +3598 27159 0.6280 +3598 29126 0.4640 +3598 29949 0.8620 +3598 50604 0.7090 +3598 50616 0.7390 +3598 51561 0.7000 +3598 53342 0.6830 +3598 56832 0.6500 +3598 59067 0.6710 +3598 80381 0.4300 +3598 81557 0.6780 +3598 85480 0.7710 +3598 90865 0.6010 +3598 124446 0.8890 +3598 282616 0.6500 +3598 282617 0.6500 +3598 282618 0.6500 +3598 338376 0.6510 +3598 728239 0.6780 +3600 3601 0.9990 +3600 3603 0.6910 +3600 3605 0.9160 +3600 3606 0.8650 +3600 3620 0.6590 +3600 3627 0.8480 +3600 3630 0.4500 +3600 3659 0.5540 +3600 3660 0.5220 +3600 3662 0.4380 +3600 3665 0.4720 +3600 3672 0.5270 +3600 3676 0.4150 +3600 3682 0.6290 +3600 3683 0.4650 +3600 3684 0.6450 +3600 3687 0.6160 +3600 3689 0.4350 +3600 3691 0.4470 +3600 3693 0.4550 +3600 3702 0.5660 +3600 3716 0.9520 +3600 3717 0.6180 +3600 3718 0.9960 +3600 3725 0.5900 +3600 3802 0.5710 +3600 3804 0.5070 +3600 3811 0.5070 +3600 3815 0.4990 +3600 3820 0.5690 +3600 3821 0.7330 +3600 3822 0.6800 +3600 3824 0.8060 +3600 3902 0.6210 +3600 3916 0.6450 +3600 3952 0.4470 +3600 3953 0.7110 +3600 3965 0.4450 +3600 3976 0.4810 +3600 3977 0.7030 +3600 4049 0.8130 +3600 4065 0.6690 +3600 4170 0.4030 +3600 4240 0.4700 +3600 4254 0.6640 +3600 4277 0.7520 +3600 4282 0.4150 +3600 4283 0.7710 +3600 4318 0.4790 +3600 4352 0.6910 +3600 4599 0.4320 +3600 4609 0.4260 +3600 4684 0.8410 +3600 4783 0.5040 +3600 4790 0.5190 +3600 4791 0.5400 +3600 4792 0.4040 +3600 4803 0.4060 +3600 4907 0.4040 +3600 5008 0.4950 +3600 5133 0.5960 +3600 5156 0.7040 +3600 5159 0.7150 +3600 5175 0.4280 +3600 5335 0.4310 +3600 5340 0.4650 +3600 5551 0.8450 +3600 5600 0.4260 +3600 5618 0.6720 +3600 5743 0.4350 +3600 5788 0.6890 +3600 5817 0.4770 +3600 5819 0.4460 +3600 5896 0.5340 +3600 5914 0.4700 +3600 6097 0.4160 +3600 6320 0.4180 +3600 6347 0.7960 +3600 6348 0.8090 +3600 6351 0.8080 +3600 6354 0.6140 +3600 6355 0.5240 +3600 6356 0.8060 +3600 6357 0.5220 +3600 6361 0.7220 +3600 6363 0.5710 +3600 6364 0.5890 +3600 6366 0.4970 +3600 6367 0.6410 +3600 6369 0.4370 +3600 6373 0.6630 +3600 6374 0.5090 +3600 6375 0.5160 +3600 6376 0.6090 +3600 6387 0.6010 +3600 6401 0.4050 +3600 6402 0.7170 +3600 6464 0.6040 +3600 6490 0.5060 +3600 6654 0.5380 +3600 6655 0.5150 +3600 6772 0.7530 +3600 6773 0.4590 +3600 6774 0.8070 +3600 6775 0.5690 +3600 6776 0.8490 +3600 6777 0.8520 +3600 6778 0.5180 +3600 6850 0.4230 +3600 6932 0.4270 +3600 7039 0.5690 +3600 7040 0.6060 +3600 7057 0.5260 +3600 7066 0.6210 +3600 7096 0.4620 +3600 7097 0.6270 +3600 7098 0.6750 +3600 7099 0.6560 +3600 7100 0.4240 +3600 7124 0.8850 +3600 7132 0.7100 +3600 7133 0.4720 +3600 7292 0.4810 +3600 7293 0.5890 +3600 7297 0.5040 +3600 7305 0.4560 +3600 7412 0.5270 +3600 7494 0.4990 +3600 7535 0.4770 +3600 7704 0.4310 +3600 7850 0.5750 +3600 7852 0.5500 +3600 8320 0.6750 +3600 8600 0.5480 +3600 8639 0.4470 +3600 8651 0.6720 +3600 8743 0.5800 +3600 8744 0.6530 +3600 8784 0.5140 +3600 8809 0.4630 +3600 8817 0.4510 +3600 8822 0.4510 +3600 8823 0.4560 +3600 8854 0.4290 +3600 9021 0.6280 +3600 9034 0.5710 +3600 9180 0.6890 +3600 9235 0.4560 +3600 9241 0.4350 +3600 9308 0.5430 +3600 9332 0.4950 +3600 9370 0.4010 +3600 9436 0.8020 +3600 9437 0.8260 +3600 9466 0.7360 +3600 9560 0.4310 +3600 9636 0.4130 +3600 9846 0.5500 +3600 9915 0.4050 +3600 10018 0.4100 +3600 10130 0.4720 +3600 10219 0.6420 +3600 10225 0.6060 +3600 10232 0.4330 +3600 10344 0.5070 +3600 10365 0.4070 +3600 10563 0.5150 +3600 10578 0.4910 +3600 10584 0.4830 +3600 10663 0.5320 +3600 10666 0.6480 +3600 10673 0.7460 +3600 10803 0.4180 +3600 10850 0.5060 +3600 10859 0.4820 +3600 10870 0.7310 +3600 11126 0.4260 +3600 22914 0.9210 +3600 23586 0.5250 +3600 23765 0.5870 +3600 26281 0.4550 +3600 27006 0.4600 +3600 27074 0.5520 +3600 27087 0.6060 +3600 29126 0.7170 +3600 29851 0.5900 +3600 29949 0.4180 +3600 30009 0.8850 +3600 50615 0.9410 +3600 50616 0.7060 +3600 50943 0.8070 +3600 51284 0.6250 +3600 51311 0.5380 +3600 51348 0.4750 +3600 51554 0.4310 +3600 51561 0.4420 +3600 51744 0.5040 +3600 53832 0.7990 +3600 53833 0.6900 +3600 54106 0.5700 +3600 54361 0.4100 +3600 55509 0.4580 +3600 55801 0.4290 +3600 57823 0.4220 +3600 58191 0.4540 +3600 58985 0.7940 +3600 59067 0.7140 +3600 64135 0.5030 +3600 79465 0.4560 +3600 80328 0.4730 +3600 80329 0.5000 +3600 80380 0.5870 +3600 80381 0.5870 +3600 84868 0.6260 +3600 85451 0.5610 +3600 85480 0.5800 +3600 90865 0.7480 +3600 112744 0.6790 +3600 114836 0.4580 +3600 116379 0.6950 +3600 149233 0.8030 +3600 151888 0.4150 +3600 163702 0.7240 +3600 169355 0.4970 +3600 200081 0.4180 +3600 201633 0.5830 +3600 252995 0.5490 +3600 257101 0.4700 +3600 259197 0.8150 +3600 374383 0.4100 +3600 386653 0.5430 +3600 414062 0.4360 +3600 100423062 0.9070 +3600 100526664 0.6570 +3601 3606 0.4900 +3601 3620 0.4090 +3601 3627 0.5250 +3601 3659 0.5090 +3601 3684 0.4380 +3601 3687 0.4110 +3601 3716 0.7060 +3601 3718 0.7530 +3601 3821 0.5050 +3601 3824 0.6370 +3601 4065 0.5040 +3601 4277 0.6110 +3601 4283 0.6030 +3601 4684 0.4470 +3601 5551 0.5560 +3601 5788 0.4310 +3601 6059 0.4160 +3601 6351 0.5800 +3601 6373 0.4930 +3601 6382 0.4500 +3601 6402 0.4610 +3601 6464 0.5710 +3601 6654 0.5010 +3601 6655 0.4990 +3601 6772 0.4250 +3601 6774 0.6830 +3601 6776 0.7740 +3601 6777 0.7600 +3601 6850 0.5330 +3601 7048 0.4010 +3601 7124 0.6770 +3601 7852 0.4380 +3601 8320 0.4200 +3601 8744 0.4730 +3601 8809 0.4440 +3601 9235 0.5460 +3601 9436 0.4300 +3601 9437 0.5700 +3601 9466 0.5280 +3601 9846 0.5350 +3601 10219 0.4470 +3601 10563 0.4140 +3601 10870 0.5720 +3601 22914 0.8100 +3601 29126 0.5710 +3601 30009 0.5090 +3601 50615 0.6880 +3601 50943 0.4320 +3601 90865 0.5120 +3601 140691 0.4060 +3601 259197 0.4690 +3601 338661 0.4350 +3601 100526664 0.4910 +3603 3605 0.7790 +3603 3606 0.7530 +3603 3627 0.6530 +3603 3689 0.4020 +3603 3702 0.5260 +3603 4049 0.6380 +3603 4282 0.4360 +3603 4283 0.7140 +3603 4477 0.4120 +3603 5125 0.4230 +3603 5777 0.5020 +3603 5788 0.4480 +3603 6041 0.4640 +3603 6320 0.5990 +3603 6346 0.5060 +3603 6347 0.7530 +3603 6348 0.6610 +3603 6351 0.7580 +3603 6354 0.6250 +3603 6355 0.5440 +3603 6356 0.6640 +3603 6357 0.6480 +3603 6359 0.5860 +3603 6361 0.6040 +3603 6363 0.4990 +3603 6364 0.6650 +3603 6366 0.4390 +3603 6367 0.5770 +3603 6368 0.5190 +3603 6369 0.5720 +3603 6373 0.5140 +3603 6374 0.4800 +3603 6375 0.4600 +3603 6376 0.4560 +3603 6387 0.5190 +3603 6404 0.5140 +3603 6900 0.4620 +3603 7040 0.4110 +3603 7042 0.5320 +3603 7113 0.4580 +3603 7124 0.7900 +3603 7133 0.4210 +3603 7707 0.4880 +3603 8074 0.4160 +3603 8379 0.4170 +3603 8502 0.5080 +3603 8718 0.4470 +3603 8895 0.5020 +3603 9159 0.4540 +3603 9235 0.4070 +3603 9965 0.4300 +3603 10344 0.6220 +3603 10563 0.5170 +3603 10803 0.4600 +3603 10850 0.8240 +3603 22853 0.4910 +3603 23301 0.4980 +3603 23600 0.4120 +3603 27189 0.4290 +3603 27232 0.4220 +3603 50616 0.4470 +3603 51735 0.5050 +3603 54776 0.5430 +3603 58191 0.4390 +3603 60528 0.4300 +3603 63948 0.4520 +3603 80342 0.4080 +3603 81851 0.5910 +3603 84687 0.4390 +3603 90865 0.4460 +3603 221895 0.4470 +3603 254225 0.4390 +3603 257106 0.4840 +3603 282616 0.5190 +3603 386653 0.4790 +3605 3606 0.8350 +3605 3620 0.8040 +3605 3627 0.8500 +3605 3630 0.6340 +3605 3654 0.4760 +3605 3659 0.4810 +3605 3661 0.4820 +3605 3662 0.6480 +3605 3663 0.4250 +3605 3665 0.4530 +3605 3673 0.4190 +3605 3676 0.5060 +3605 3682 0.7130 +3605 3683 0.4730 +3605 3684 0.7830 +3605 3687 0.8670 +3605 3689 0.4540 +3605 3716 0.5980 +3605 3717 0.5990 +3605 3718 0.5290 +3605 3725 0.5820 +3605 3815 0.5070 +3605 3820 0.6990 +3605 3821 0.4520 +3605 3824 0.4380 +3605 3902 0.5970 +3605 3916 0.4870 +3605 3929 0.5460 +3605 3934 0.8380 +3605 3952 0.5820 +3605 3958 0.6150 +3605 3965 0.4540 +3605 3976 0.7760 +3605 4049 0.7320 +3605 4050 0.4180 +3605 4055 0.4140 +3605 4057 0.5050 +3605 4065 0.5430 +3605 4087 0.4460 +3605 4088 0.4790 +3605 4094 0.5200 +3605 4153 0.4120 +3605 4155 0.5480 +3605 4193 0.4020 +3605 4210 0.4900 +3605 4254 0.4320 +3605 4282 0.6700 +3605 4283 0.8300 +3605 4312 0.7120 +3605 4313 0.6990 +3605 4314 0.7630 +3605 4316 0.4240 +3605 4317 0.4640 +3605 4318 0.8140 +3605 4321 0.6110 +3605 4322 0.5040 +3605 4340 0.8560 +3605 4353 0.6740 +3605 4360 0.5760 +3605 4586 0.5200 +3605 4599 0.4040 +3605 4609 0.4430 +3605 4684 0.6160 +3605 4772 0.4790 +3605 4780 0.4180 +3605 4783 0.4020 +3605 4790 0.7910 +3605 4792 0.7320 +3605 4803 0.5080 +3605 4843 0.5420 +3605 4907 0.5630 +3605 5008 0.7990 +3605 5054 0.4600 +3605 5068 0.4420 +3605 5133 0.7280 +3605 5141 0.4790 +3605 5175 0.5060 +3605 5196 0.4070 +3605 5265 0.5750 +3605 5284 0.4590 +3605 5443 0.5930 +3605 5468 0.5450 +3605 5473 0.4880 +3605 5551 0.7140 +3605 5595 0.7240 +3605 5657 0.6820 +3605 5734 0.4060 +3605 5741 0.4140 +3605 5743 0.6420 +3605 5788 0.7820 +3605 5896 0.7080 +3605 5949 0.5410 +3605 5966 0.4880 +3605 5970 0.4960 +3605 5971 0.4460 +3605 5972 0.4540 +3605 6095 0.5620 +3605 6097 0.9330 +3605 6272 0.4510 +3605 6278 0.5850 +3605 6280 0.5210 +3605 6283 0.4350 +3605 6288 0.6450 +3605 6289 0.4210 +3605 6346 0.5400 +3605 6347 0.8740 +3605 6348 0.8470 +3605 6351 0.8220 +3605 6354 0.6140 +3605 6355 0.4610 +3605 6356 0.8180 +3605 6357 0.4900 +3605 6361 0.6820 +3605 6362 0.4700 +3605 6363 0.5870 +3605 6364 0.8060 +3605 6366 0.5330 +3605 6367 0.6530 +3605 6369 0.5480 +3605 6370 0.5850 +3605 6372 0.4390 +3605 6373 0.6390 +3605 6374 0.7940 +3605 6376 0.6220 +3605 6382 0.4860 +3605 6387 0.6320 +3605 6401 0.5770 +3605 6402 0.7440 +3605 6403 0.5340 +3605 6404 0.5660 +3605 6597 0.4100 +3605 6688 0.4180 +3605 6696 0.5510 +3605 6714 0.4730 +3605 6772 0.8190 +3605 6773 0.4350 +3605 6774 0.9440 +3605 6775 0.7790 +3605 6776 0.7460 +3605 6777 0.6450 +3605 6778 0.8770 +3605 6850 0.5120 +3605 7037 0.4240 +3605 7039 0.5410 +3605 7040 0.9030 +3605 7042 0.4820 +3605 7043 0.4810 +3605 7070 0.5740 +3605 7076 0.7130 +3605 7082 0.5050 +3605 7096 0.5280 +3605 7097 0.7660 +3605 7098 0.6560 +3605 7099 0.8670 +3605 7100 0.5910 +3605 7113 0.4070 +3605 7124 0.9580 +3605 7128 0.4840 +3605 7132 0.8260 +3605 7133 0.6500 +3605 7157 0.5070 +3605 7189 0.6930 +3605 7292 0.5550 +3605 7293 0.6070 +3605 7297 0.5830 +3605 7412 0.6210 +3605 7535 0.4530 +3605 7704 0.4990 +3605 7837 0.6160 +3605 7850 0.4630 +3605 7852 0.5810 +3605 8174 0.4030 +3605 8320 0.5890 +3605 8600 0.7440 +3605 8639 0.6950 +3605 8651 0.5290 +3605 8718 0.4170 +3605 8742 0.5090 +3605 8743 0.4440 +3605 8784 0.6150 +3605 8808 0.5650 +3605 8809 0.5120 +3605 8817 0.5070 +3605 8822 0.5070 +3605 8823 0.5130 +3605 8829 0.4160 +3605 8842 0.5210 +3605 8999 0.4070 +3605 9021 0.7720 +3605 9034 0.8730 +3605 9076 0.4340 +3605 9173 0.6540 +3605 9235 0.6430 +3605 9308 0.5290 +3605 9332 0.5920 +3605 9370 0.5050 +3605 9436 0.5400 +3605 9437 0.5920 +3605 9447 0.4170 +3605 9466 0.6950 +3605 9618 0.5370 +3605 9802 0.4260 +3605 9966 0.5370 +3605 10004 0.4850 +3605 10219 0.5490 +3605 10344 0.5400 +3605 10392 0.4800 +3605 10538 0.6010 +3605 10562 0.4080 +3605 10563 0.6500 +3605 10578 0.4760 +3605 10631 0.4120 +3605 10663 0.5330 +3605 10673 0.6610 +3605 10758 0.8490 +3605 10803 0.5700 +3605 10850 0.5280 +3605 11009 0.5450 +3605 11251 0.5450 +3605 22914 0.5780 +3605 23308 0.5120 +3605 23586 0.5130 +3605 23643 0.4070 +3605 23765 0.9990 +3605 26191 0.4070 +3605 26253 0.4540 +3605 26281 0.5090 +3605 26525 0.5360 +3605 27006 0.5100 +3605 27087 0.4680 +3605 27177 0.4090 +3605 27178 0.5520 +3605 27179 0.4410 +3605 27190 0.6040 +3605 29121 0.4830 +3605 29126 0.7040 +3605 29851 0.8000 +3605 29949 0.6390 +3605 30009 0.9370 +3605 30816 0.4580 +3605 30835 0.4840 +3605 50489 0.4510 +3605 50615 0.6150 +3605 50616 0.9760 +3605 50619 0.4220 +3605 50943 0.9530 +3605 51284 0.6850 +3605 51311 0.5470 +3605 51497 0.5890 +3605 51554 0.4800 +3605 51561 0.9200 +3605 54106 0.6690 +3605 54210 0.4470 +3605 54756 0.7370 +3605 54878 0.4330 +3605 55509 0.4010 +3605 55540 0.9180 +3605 55801 0.8320 +3605 56253 0.4240 +3605 56300 0.4670 +3605 56729 0.4770 +3605 57379 0.4050 +3605 58191 0.4760 +3605 58484 0.4330 +3605 58985 0.5810 +3605 59067 0.7010 +3605 59272 0.5820 +3605 64127 0.6100 +3605 64135 0.4260 +3605 64170 0.5930 +3605 64332 0.5060 +3605 64581 0.7570 +3605 64750 0.4220 +3605 64806 0.8920 +3605 79092 0.4500 +3605 79770 0.4200 +3605 80380 0.5600 +3605 80381 0.6330 +3605 83752 0.4650 +3605 84639 0.4660 +3605 84666 0.5200 +3605 84818 0.9990 +3605 84868 0.6020 +3605 85480 0.8360 +3605 90865 0.8520 +3605 93978 0.7040 +3605 112744 0.9940 +3605 114548 0.6120 +3605 116379 0.4240 +3605 120425 0.4540 +3605 130120 0.6010 +3605 132014 0.7710 +3605 137902 0.6160 +3605 140885 0.4020 +3605 146433 0.4030 +3605 149233 0.9270 +3605 151888 0.4550 +3605 169355 0.7640 +3605 201633 0.4820 +3605 246778 0.6810 +3605 255738 0.4480 +3605 282616 0.4710 +3605 282618 0.4460 +3605 284194 0.4360 +3605 338442 0.4150 +3605 386653 0.7820 +3605 388698 0.5200 +3605 400935 0.5700 +3605 405754 0.4430 +3605 414062 0.4650 +3605 414325 0.4790 +3605 654346 0.4350 +3605 727897 0.4040 +3605 100133941 0.4930 +3605 100289462 0.5160 +3605 100423062 0.9110 +3605 100506658 0.5410 +3605 100526664 0.5430 +3606 3620 0.5290 +3606 3627 0.8620 +3606 3630 0.7210 +3606 3654 0.8350 +3606 3659 0.5210 +3606 3661 0.6120 +3606 3663 0.4360 +3606 3665 0.5330 +3606 3682 0.5090 +3606 3684 0.6320 +3606 3685 0.5110 +3606 3687 0.5960 +3606 3689 0.4280 +3606 3716 0.5000 +3606 3717 0.5010 +3606 3725 0.9520 +3606 3802 0.4070 +3606 3820 0.5250 +3606 3821 0.5960 +3606 3822 0.5310 +3606 3824 0.5940 +3606 3902 0.4260 +3606 3916 0.5410 +3606 3934 0.7300 +3606 3952 0.6920 +3606 3976 0.6120 +3606 4049 0.6410 +3606 4057 0.4010 +3606 4072 0.5460 +3606 4210 0.9280 +3606 4225 0.4790 +3606 4254 0.4180 +3606 4261 0.4660 +3606 4277 0.4160 +3606 4282 0.5630 +3606 4283 0.7050 +3606 4312 0.4350 +3606 4313 0.4570 +3606 4314 0.4890 +3606 4318 0.6150 +3606 4353 0.5830 +3606 4360 0.6870 +3606 4599 0.4330 +3606 4609 0.4050 +3606 4671 0.6220 +3606 4684 0.5890 +3606 4706 0.4530 +3606 4780 0.4740 +3606 4790 0.9790 +3606 4791 0.5620 +3606 4792 0.5840 +3606 4803 0.4760 +3606 4843 0.4790 +3606 4915 0.4470 +3606 5020 0.4740 +3606 5023 0.5570 +3606 5027 0.5840 +3606 5054 0.4800 +3606 5133 0.4710 +3606 5196 0.4280 +3606 5465 0.4020 +3606 5468 0.5330 +3606 5551 0.6690 +3606 5595 0.6450 +3606 5599 0.4140 +3606 5601 0.4100 +3606 5610 0.6240 +3606 5657 0.6830 +3606 5742 0.4460 +3606 5743 0.7140 +3606 5788 0.6000 +3606 5896 0.4310 +3606 5970 0.9390 +3606 5972 0.4790 +3606 5979 0.4430 +3606 6283 0.4230 +3606 6320 0.4640 +3606 6347 0.8810 +3606 6348 0.8600 +3606 6351 0.8290 +3606 6354 0.5960 +3606 6355 0.4560 +3606 6356 0.6640 +3606 6361 0.5300 +3606 6362 0.4060 +3606 6363 0.8390 +3606 6364 0.7520 +3606 6366 0.4350 +3606 6367 0.7060 +3606 6369 0.4150 +3606 6372 0.4030 +3606 6373 0.7280 +3606 6374 0.5190 +3606 6376 0.5800 +3606 6387 0.7180 +3606 6401 0.5330 +3606 6402 0.5230 +3606 6403 0.4640 +3606 6559 0.4780 +3606 6688 0.4130 +3606 6696 0.4820 +3606 6714 0.4050 +3606 6772 0.6070 +3606 6774 0.8060 +3606 6775 0.7910 +3606 6776 0.4040 +3606 6777 0.4090 +3606 6778 0.4830 +3606 6850 0.4980 +3606 6868 0.4100 +3606 7039 0.4860 +3606 7040 0.6280 +3606 7042 0.4200 +3606 7076 0.4850 +3606 7077 0.4490 +3606 7082 0.4180 +3606 7096 0.6060 +3606 7097 0.8470 +3606 7098 0.7940 +3606 7099 0.9080 +3606 7100 0.7670 +3606 7124 0.9610 +3606 7132 0.6030 +3606 7133 0.4500 +3606 7157 0.5070 +3606 7187 0.4060 +3606 7189 0.7320 +3606 7292 0.4360 +3606 7293 0.6130 +3606 7295 0.4660 +3606 7297 0.4480 +3606 7305 0.4400 +3606 7412 0.6090 +3606 7429 0.4850 +3606 7450 0.4030 +3606 7837 0.5070 +3606 7850 0.6930 +3606 7852 0.4780 +3606 8320 0.5020 +3606 8600 0.6780 +3606 8651 0.4180 +3606 8678 0.5320 +3606 8737 0.5120 +3606 8743 0.5160 +3606 8767 0.6800 +3606 8772 0.4220 +3606 8807 0.9990 +3606 8808 0.5070 +3606 8809 0.9990 +3606 9021 0.4530 +3606 9034 0.5260 +3606 9169 0.4830 +3606 9173 0.7730 +3606 9235 0.7040 +3606 9308 0.4330 +3606 9332 0.5370 +3606 9370 0.5810 +3606 9436 0.5700 +3606 9437 0.6440 +3606 9447 0.8980 +3606 9474 0.4760 +3606 9636 0.4020 +3606 9966 0.5080 +3606 10068 0.9990 +3606 10219 0.4490 +3606 10225 0.5150 +3606 10371 0.4370 +3606 10392 0.7650 +3606 10563 0.4760 +3606 10628 0.5990 +3606 10663 0.4530 +3606 10666 0.5010 +3606 10673 0.5150 +3606 10724 0.4330 +3606 10850 0.7060 +3606 11035 0.5330 +3606 11141 0.5510 +3606 22861 0.9180 +3606 22900 0.6980 +3606 22914 0.6510 +3606 23411 0.4750 +3606 23586 0.6640 +3606 23643 0.4880 +3606 23765 0.4560 +3606 24145 0.5630 +3606 26280 0.5900 +3606 26291 0.5070 +3606 26525 0.5830 +3606 27087 0.4740 +3606 27177 0.4030 +3606 27178 0.9650 +3606 27299 0.4210 +3606 29108 0.9930 +3606 29110 0.4870 +3606 29126 0.5720 +3606 29851 0.7050 +3606 29949 0.4180 +3606 30009 0.6490 +3606 30835 0.4340 +3606 50507 0.4510 +3606 50615 0.4790 +3606 50616 0.8370 +3606 50943 0.6370 +3606 51135 0.6480 +3606 51284 0.6850 +3606 51311 0.6140 +3606 51497 0.4410 +3606 51561 0.4730 +3606 53832 0.4840 +3606 54106 0.8080 +3606 54205 0.4740 +3606 54209 0.5280 +3606 54210 0.4080 +3606 55054 0.5290 +3606 55655 0.7390 +3606 55876 0.4780 +3606 56169 0.4800 +3606 56729 0.5070 +3606 57506 0.5430 +3606 57823 0.5150 +3606 58191 0.4710 +3606 58484 0.9410 +3606 59067 0.5190 +3606 59272 0.5760 +3606 59307 0.6530 +3606 64127 0.8290 +3606 64135 0.5860 +3606 64170 0.5780 +3606 64581 0.5310 +3606 79132 0.4780 +3606 79671 0.4800 +3606 79792 0.9320 +3606 80381 0.4760 +3606 84166 0.5080 +3606 84639 0.6020 +3606 84666 0.5220 +3606 84868 0.5180 +3606 85480 0.5800 +3606 90865 0.8690 +3606 91662 0.6440 +3606 112744 0.5780 +3606 114548 0.9460 +3606 114609 0.5050 +3606 115004 0.5860 +3606 115362 0.4480 +3606 116379 0.4140 +3606 130120 0.4630 +3606 137902 0.5070 +3606 140609 0.6570 +3606 147945 0.4760 +3606 149233 0.5010 +3606 151887 0.4420 +3606 153562 0.4170 +3606 169355 0.4470 +3606 171389 0.8540 +3606 197259 0.5420 +3606 197358 0.4600 +3606 199713 0.6050 +3606 201633 0.4610 +3606 257202 0.4040 +3606 259197 0.5730 +3606 260434 0.4180 +3606 282618 0.4180 +3606 284110 0.6910 +3606 338321 0.4030 +3606 338322 0.4310 +3606 338442 0.4940 +3606 386653 0.5070 +3606 414062 0.6650 +3606 493869 0.4190 +3606 494513 0.4610 +3606 100506658 0.4600 +3607 3622 0.5350 +3607 3660 0.6020 +3607 5926 0.4890 +3607 5928 0.6070 +3607 5931 0.7310 +3607 5978 0.6180 +3607 6233 0.4270 +3607 6657 0.4340 +3607 6907 0.4450 +3607 7003 0.4520 +3607 7023 0.4110 +3607 7314 0.4270 +3607 7316 0.4270 +3607 7528 0.7070 +3607 8314 0.9410 +3607 8329 0.4080 +3607 8331 0.4080 +3607 8334 0.4080 +3607 8337 0.5080 +3607 8338 0.5080 +3607 8361 0.4340 +3607 8473 0.7820 +3607 8819 0.6990 +3607 9611 0.5630 +3607 9612 0.7040 +3607 10238 0.5720 +3607 23186 0.4170 +3607 23309 0.4740 +3607 23476 0.6000 +3607 25942 0.9470 +3607 26057 0.5500 +3607 30000 0.5540 +3607 51742 0.4740 +3607 54487 0.4510 +3607 55252 0.9680 +3607 55777 0.6670 +3607 56893 0.4750 +3607 56987 0.4390 +3607 57720 0.4370 +3607 63893 0.4910 +3607 64426 0.5310 +3607 79595 0.4640 +3607 79718 0.5510 +3607 80816 0.4670 +3607 85235 0.4080 +3607 92815 0.4080 +3607 114785 0.6930 +3607 171023 0.9420 +3607 221613 0.4080 +3607 221656 0.8320 +3607 221937 0.6090 +3607 317772 0.4080 +3608 4116 0.7600 +3608 4154 0.4820 +3608 4174 0.4150 +3608 4282 0.4150 +3608 4343 0.4930 +3608 4609 0.4150 +3608 4670 0.9720 +3608 4691 0.7300 +3608 4722 0.4300 +3608 4733 0.4130 +3608 4736 0.5500 +3608 4841 0.6560 +3608 4904 0.9050 +3608 5036 0.5400 +3608 5093 0.5890 +3608 5094 0.5590 +3608 5499 0.4020 +3608 5591 0.5850 +3608 5610 0.7830 +3608 5682 0.5050 +3608 5684 0.6370 +3608 5686 0.4640 +3608 5692 0.6160 +3608 5701 0.4280 +3608 5706 0.4680 +3608 5725 0.7830 +3608 5881 0.4270 +3608 5885 0.4460 +3608 5901 0.8020 +3608 5928 0.6090 +3608 5935 0.4660 +3608 5976 0.6160 +3608 6122 0.6060 +3608 6124 0.5120 +3608 6125 0.5320 +3608 6128 0.4990 +3608 6129 0.4130 +3608 6132 0.4970 +3608 6135 0.4620 +3608 6139 0.4270 +3608 6141 0.4010 +3608 6143 0.4840 +3608 6175 0.4890 +3608 6188 0.5030 +3608 6189 0.4210 +3608 6191 0.4110 +3608 6194 0.4140 +3608 6205 0.5610 +3608 6207 0.4110 +3608 6217 0.6870 +3608 6224 0.5180 +3608 6229 0.4200 +3608 6230 0.6570 +3608 6284 0.4430 +3608 6294 0.5130 +3608 6311 0.4700 +3608 6418 0.4830 +3608 6421 0.6770 +3608 6426 0.7570 +3608 6427 0.4260 +3608 6428 0.8600 +3608 6432 0.5780 +3608 6434 0.8240 +3608 6598 0.6140 +3608 6606 0.5390 +3608 6607 0.5490 +3608 6625 0.5960 +3608 6626 0.6070 +3608 6627 0.4750 +3608 6628 0.5140 +3608 6629 0.4810 +3608 6631 0.5980 +3608 6632 0.5830 +3608 6633 0.8110 +3608 6634 0.6820 +3608 6635 0.7840 +3608 6636 0.8380 +3608 6637 0.6890 +3608 6683 0.4450 +3608 6726 0.4480 +3608 6732 0.5810 +3608 6741 0.8190 +3608 6780 0.5940 +3608 6944 0.4100 +3608 7153 0.6200 +3608 7155 0.6500 +3608 7157 0.5170 +3608 7158 0.4790 +3608 7203 0.5930 +3608 7307 0.6600 +3608 7336 0.4250 +3608 7341 0.4360 +3608 7458 0.4050 +3608 7520 0.7940 +3608 7532 0.4680 +3608 7846 0.4570 +3608 7919 0.7680 +3608 8106 0.6220 +3608 8148 0.6300 +3608 8175 0.6560 +3608 8270 0.5330 +3608 8570 0.7900 +3608 8575 0.4590 +3608 8655 0.5560 +3608 8668 0.4630 +3608 8795 0.4470 +3608 8826 0.4240 +3608 8880 0.6080 +3608 9055 0.4280 +3608 9128 0.4040 +3608 9188 0.6220 +3608 9320 0.4220 +3608 9343 0.4900 +3608 9410 0.4580 +3608 9584 0.4470 +3608 9656 0.4680 +3608 9774 0.4220 +3608 9775 0.8130 +3608 9782 0.9410 +3608 9939 0.5020 +3608 9987 0.6610 +3608 10054 0.4570 +3608 10155 0.4500 +3608 10189 0.8150 +3608 10197 0.5780 +3608 10212 0.4810 +3608 10236 0.9280 +3608 10284 0.4980 +3608 10399 0.4590 +3608 10419 0.4240 +3608 10432 0.8230 +3608 10436 0.5490 +3608 10482 0.5550 +3608 10492 0.8610 +3608 10514 0.5810 +3608 10521 0.4420 +3608 10528 0.5130 +3608 10574 0.5300 +3608 10575 0.4710 +3608 10576 0.6140 +3608 10594 0.4140 +3608 10642 0.4590 +3608 10643 0.6930 +3608 10644 0.4280 +3608 10657 0.7680 +3608 10658 0.4230 +3608 10694 0.5240 +3608 10765 0.4240 +3608 10772 0.5000 +3608 10949 0.6320 +3608 11051 0.7840 +3608 11052 0.6070 +3608 11224 0.5390 +3608 11337 0.4400 +3608 11338 0.7520 +3608 11345 0.4410 +3608 22803 0.4020 +3608 22827 0.6010 +3608 22907 0.4560 +3608 22913 0.6870 +3608 22948 0.5390 +3608 23001 0.4110 +3608 23016 0.5190 +3608 23160 0.4080 +3608 23211 0.4230 +3608 23217 0.5830 +3608 23367 0.5230 +3608 23369 0.5130 +3608 23389 0.4530 +3608 23394 0.4430 +3608 23404 0.4430 +3608 23405 0.5790 +3608 23435 0.7950 +3608 23450 0.4290 +3608 23476 0.5300 +3608 25926 0.4420 +3608 25940 0.5580 +3608 26097 0.7230 +3608 26523 0.4120 +3608 26986 0.4670 +3608 27067 0.4370 +3608 27161 0.4520 +3608 27258 0.5050 +3608 27316 0.8450 +3608 27339 0.6970 +3608 29102 0.6260 +3608 29107 0.6220 +3608 29894 0.4470 +3608 51320 0.5100 +3608 51493 0.6540 +3608 51506 0.4240 +3608 51593 0.7050 +3608 51637 0.6330 +3608 51639 0.4270 +3608 51663 0.8070 +3608 54542 0.5250 +3608 54606 0.5630 +3608 55110 0.4100 +3608 55342 0.7930 +3608 55644 0.5370 +3608 56257 0.4440 +3608 56259 0.6840 +3608 57167 0.4260 +3608 57521 0.4570 +3608 65005 0.4500 +3608 79084 0.4930 +3608 81611 0.4230 +3608 84844 0.4610 +3608 114548 0.4460 +3608 116254 0.4400 +3608 124801 0.6620 +3608 149041 0.5520 +3608 220988 0.5270 +3608 221092 0.5360 +3608 284695 0.4870 +3608 345630 0.4120 +3608 348262 0.4530 +3611 3630 0.4080 +3611 3636 0.4680 +3611 3655 0.4560 +3611 3656 0.4130 +3611 3673 0.5170 +3611 3675 0.4640 +3611 3676 0.5860 +3611 3678 0.9730 +3611 3679 0.6010 +3611 3682 0.4730 +3611 3685 0.6090 +3611 3688 0.9990 +3611 3689 0.4960 +3611 3690 0.9090 +3611 3691 0.6270 +3611 3693 0.7170 +3611 3694 0.4720 +3611 3695 0.4310 +3611 3696 0.4430 +3611 3725 0.4380 +3611 3751 0.4370 +3611 3897 0.5440 +3611 3987 0.9990 +3611 4017 0.4070 +3611 4087 0.4300 +3611 4088 0.6090 +3611 4155 0.4050 +3611 4176 0.4730 +3611 4313 0.4180 +3611 4318 0.4770 +3611 4609 0.4310 +3611 4638 0.5380 +3611 4851 0.4380 +3611 4868 0.4420 +3611 4878 0.4590 +3611 4921 0.4370 +3611 4983 0.4720 +3611 5164 0.4470 +3611 5170 0.7020 +3611 5216 0.4360 +3611 5266 0.4770 +3611 5290 0.9230 +3611 5291 0.9180 +3611 5293 0.9140 +3611 5295 0.9370 +3611 5296 0.9330 +3611 5341 0.6520 +3611 5465 0.4480 +3611 5467 0.5250 +3611 5567 0.5820 +3611 5568 0.5830 +3611 5578 0.9130 +3611 5591 0.5050 +3611 5594 0.7470 +3611 5595 0.7720 +3611 5607 0.4400 +3611 5728 0.5650 +3611 5747 0.6440 +3611 5829 0.9990 +3611 5879 0.4170 +3611 5894 0.5560 +3611 6198 0.4220 +3611 6251 0.9910 +3611 6386 0.4100 +3611 6591 0.4460 +3611 6615 0.5540 +3611 6657 0.4460 +3611 6678 0.6650 +3611 6714 0.5970 +3611 6774 0.4170 +3611 6876 0.4230 +3611 6950 0.5010 +3611 7010 0.4560 +3611 7040 0.5870 +3611 7041 0.7450 +3611 7042 0.4690 +3611 7094 0.9960 +3611 7114 0.9640 +3611 7145 0.4180 +3611 7157 0.4170 +3611 7203 0.4560 +3611 7408 0.6200 +3611 7414 0.9950 +3611 7448 0.6870 +3611 7791 0.8000 +3611 8038 0.4100 +3611 8310 0.4670 +3611 8440 0.8960 +3611 8454 0.5320 +3611 8503 0.9070 +3611 8557 0.6690 +3611 8607 0.7330 +3611 8727 0.6180 +3611 8826 0.6850 +3611 8874 0.7850 +3611 9404 0.6120 +3611 9459 0.8620 +3611 9564 0.8860 +3611 9815 0.5470 +3611 10000 0.9420 +3611 10273 0.4230 +3611 10398 0.5980 +3611 10574 0.4720 +3611 10575 0.4460 +3611 10631 0.4900 +3611 10694 0.4320 +3611 10906 0.5490 +3611 10979 0.9970 +3611 11183 0.4550 +3611 22948 0.4570 +3611 23092 0.5740 +3611 23378 0.6680 +3611 25932 0.4540 +3611 26499 0.6510 +3611 27043 0.7460 +3611 28964 0.5570 +3611 29780 0.9990 +3611 53616 0.4680 +3611 54518 0.5800 +3611 54704 0.5380 +3611 54751 0.7100 +3611 55246 0.4460 +3611 55612 0.8920 +3611 55644 0.6720 +3611 55679 0.9990 +3611 55742 0.9990 +3611 63916 0.6310 +3611 64098 0.9990 +3611 64759 0.5230 +3611 80895 0.8200 +3611 83660 0.9950 +3611 83706 0.7990 +3611 83737 0.4020 +3611 94274 0.4730 +3611 96626 0.9020 +3611 103910 0.5030 +3611 153201 0.4060 +3611 253260 0.9770 +3611 282996 0.5060 +3611 285641 0.5860 +3611 100288695 0.6510 +3612 3613 0.9870 +3612 3614 0.6190 +3612 3628 0.9650 +3612 4534 0.9170 +3612 5211 0.5380 +3612 5213 0.5400 +3612 5214 0.5350 +3612 5238 0.4960 +3612 5315 0.4400 +3612 5330 0.6710 +3612 5331 0.6730 +3612 5332 0.6710 +3612 5333 0.6990 +3612 5335 0.6710 +3612 5336 0.6540 +3612 5431 0.4650 +3612 5435 0.6160 +3612 6203 0.4010 +3612 6224 0.4640 +3612 6421 0.5230 +3612 6450 0.4300 +3612 6526 0.5810 +3612 6652 0.5040 +3612 7086 0.5110 +3612 8277 0.5110 +3612 8458 0.8790 +3612 8821 0.9030 +3612 9487 0.7670 +3612 10380 0.5310 +3612 10423 0.9510 +3612 11128 0.5150 +3612 11284 0.5400 +3612 23236 0.6810 +3612 23483 0.4390 +3612 25796 0.4920 +3612 25813 0.4610 +3612 25885 0.5120 +3612 26227 0.5990 +3612 27235 0.4060 +3612 51196 0.6900 +3612 51264 0.5440 +3612 51477 0.9940 +3612 53343 0.4910 +3612 54928 0.9630 +3612 55173 0.4740 +3612 55272 0.4060 +3612 55276 0.5000 +3612 55586 0.9430 +3612 55703 0.4430 +3612 59342 0.4870 +3612 79752 0.4630 +3612 81570 0.4030 +3612 84076 0.5110 +3612 84172 0.4540 +3612 84812 0.6770 +3612 89869 0.6770 +3612 113026 0.6770 +3612 253430 0.5300 +3612 283209 0.4920 +3612 283677 0.5380 +3612 619279 0.4410 +3613 3628 0.9720 +3613 4534 0.9080 +3613 5211 0.5400 +3613 5213 0.5340 +3613 5214 0.5430 +3613 5236 0.4390 +3613 5238 0.4880 +3613 5330 0.6710 +3613 5331 0.6710 +3613 5332 0.6710 +3613 5333 0.7110 +3613 5335 0.6790 +3613 5336 0.6660 +3613 5431 0.4390 +3613 5435 0.6190 +3613 6203 0.4240 +3613 6224 0.4480 +3613 6624 0.4600 +3613 6652 0.4850 +3613 7086 0.5810 +3613 8277 0.5190 +3613 8458 0.8780 +3613 8821 0.9100 +3613 8867 0.5070 +3613 9039 0.5650 +3613 9487 0.7650 +3613 10380 0.4290 +3613 10423 0.9480 +3613 10606 0.4120 +3613 11128 0.5110 +3613 11284 0.5460 +3613 23236 0.6780 +3613 25813 0.4800 +3613 25885 0.5110 +3613 27235 0.4360 +3613 51196 0.6870 +3613 51477 0.9920 +3613 54928 0.9580 +3613 55173 0.4480 +3613 55272 0.4050 +3613 55276 0.5020 +3613 55300 0.4470 +3613 55586 0.9310 +3613 55703 0.4390 +3613 84076 0.5220 +3613 84172 0.4390 +3613 84812 0.6770 +3613 89869 0.6770 +3613 113026 0.6790 +3613 115353 0.4220 +3613 283209 0.4890 +3613 283677 0.5380 +3614 3615 0.9840 +3614 3704 0.9570 +3614 3769 0.4920 +3614 4507 0.4770 +3614 4860 0.6670 +3614 4901 0.7200 +3614 4907 0.9530 +3614 5036 0.4670 +3614 5145 0.7010 +3614 5148 0.6430 +3614 5158 0.6340 +3614 5315 0.4030 +3614 5431 0.5050 +3614 5442 0.4610 +3614 5471 0.7940 +3614 5631 0.5280 +3614 5634 0.5460 +3614 5961 0.7630 +3614 6010 0.6900 +3614 6094 0.7030 +3614 6100 0.8090 +3614 6103 0.7390 +3614 6121 0.8180 +3614 6184 0.4890 +3614 6188 0.4100 +3614 6205 0.4960 +3614 6470 0.4560 +3614 6472 0.4590 +3614 7083 0.4030 +3614 7086 0.5380 +3614 7172 0.9450 +3614 7287 0.8300 +3614 7298 0.5230 +3614 7372 0.5240 +3614 7399 0.4180 +3614 7401 0.4180 +3614 7407 0.4440 +3614 7439 0.6680 +3614 8277 0.5010 +3614 8565 0.5340 +3614 8833 0.9990 +3614 8842 0.4650 +3614 9129 0.7900 +3614 9227 0.8080 +3614 9563 0.4070 +3614 9583 0.9000 +3614 9615 0.5750 +3614 9657 0.5640 +3614 9673 0.6140 +3614 9742 0.4130 +3614 10002 0.7080 +3614 10210 0.7770 +3614 10461 0.6460 +3614 10574 0.4120 +3614 10594 0.7950 +3614 10606 0.5640 +3614 22978 0.9370 +3614 23020 0.7160 +3614 23135 0.4620 +3614 23746 0.8220 +3614 23770 0.4410 +3614 24148 0.4500 +3614 25794 0.8030 +3614 26121 0.8110 +3614 27044 0.4970 +3614 30833 0.9410 +3614 50939 0.6800 +3614 51020 0.4590 +3614 51251 0.9020 +3614 55122 0.4750 +3614 55131 0.4920 +3614 55703 0.4550 +3614 55812 0.8570 +3614 55869 0.4080 +3614 55975 0.7200 +3614 56474 0.6400 +3614 56953 0.9350 +3614 57010 0.4770 +3614 57096 0.7730 +3614 64218 0.6560 +3614 64802 0.5150 +3614 79716 0.4310 +3614 80184 0.7310 +3614 84076 0.4860 +3614 84140 0.5420 +3614 84172 0.4810 +3614 84618 0.9230 +3614 84955 0.6200 +3614 93034 0.9150 +3614 115024 0.9010 +3614 122416 0.6690 +3614 122622 0.9770 +3614 124583 0.9060 +3614 130557 0.6870 +3614 131870 0.9010 +3614 139596 0.4030 +3614 145226 0.8950 +3614 157657 0.4350 +3614 161424 0.5410 +3614 167691 0.7930 +3614 221823 0.5090 +3614 343035 0.8240 +3614 345630 0.4110 +3614 346007 0.7190 +3614 375298 0.7320 +3614 377841 0.9000 +3614 388939 0.7010 +3614 401124 0.4010 +3614 768206 0.6760 +3614 100289087 0.4120 +3614 100526794 0.9150 +3615 3704 0.9710 +3615 3728 0.4140 +3615 3735 0.4690 +3615 3921 0.6450 +3615 4141 0.4510 +3615 4507 0.5530 +3615 4522 0.4050 +3615 4609 0.5150 +3615 4736 0.5640 +3615 4809 0.4770 +3615 4830 0.4350 +3615 4860 0.7530 +3615 4869 0.5380 +3615 4907 0.9540 +3615 4938 0.4680 +3615 5036 0.6480 +3615 5198 0.5120 +3615 5315 0.4660 +3615 5431 0.5280 +3615 5442 0.4930 +3615 5471 0.8390 +3615 5479 0.4130 +3615 5631 0.5720 +3615 5634 0.6370 +3615 5707 0.5610 +3615 5708 0.5620 +3615 5713 0.4620 +3615 5714 0.4420 +3615 5717 0.5150 +3615 5718 0.5110 +3615 5832 0.4570 +3615 5901 0.4490 +3615 6010 0.4910 +3615 6122 0.5120 +3615 6124 0.5260 +3615 6125 0.4980 +3615 6128 0.4490 +3615 6130 0.5230 +3615 6133 0.4050 +3615 6135 0.5460 +3615 6136 0.4470 +3615 6138 0.5440 +3615 6141 0.4700 +3615 6157 0.4190 +3615 6175 0.5460 +3615 6184 0.5590 +3615 6187 0.7510 +3615 6188 0.6450 +3615 6189 0.5260 +3615 6193 0.5450 +3615 6194 0.5400 +3615 6203 0.5690 +3615 6205 0.4960 +3615 6217 0.4110 +3615 6222 0.4330 +3615 6223 0.4260 +3615 6224 0.4690 +3615 6240 0.4610 +3615 6470 0.5290 +3615 6472 0.6430 +3615 6633 0.5980 +3615 6749 0.4280 +3615 6950 0.4490 +3615 7086 0.5510 +3615 7153 0.4330 +3615 7167 0.5780 +3615 7172 0.9600 +3615 7203 0.4880 +3615 7284 0.4840 +3615 7298 0.5720 +3615 7372 0.5860 +3615 7407 0.4480 +3615 8192 0.4300 +3615 8277 0.4860 +3615 8565 0.5270 +3615 8662 0.4600 +3615 8664 0.5330 +3615 8665 0.4020 +3615 8666 0.5490 +3615 8668 0.5200 +3615 8833 0.9980 +3615 8894 0.4760 +3615 9045 0.4510 +3615 9097 0.4790 +3615 9210 0.4210 +3615 9212 0.4030 +3615 9474 0.4360 +3615 9563 0.4740 +3615 9583 0.9000 +3615 9615 0.6300 +3615 9636 0.4960 +3615 9656 0.4540 +3615 9673 0.8120 +3615 10038 0.4490 +3615 10056 0.4680 +3615 10146 0.4620 +3615 10213 0.5120 +3615 10399 0.6110 +3615 10480 0.4940 +3615 10492 0.4610 +3615 10528 0.4250 +3615 10574 0.7580 +3615 10575 0.5400 +3615 10576 0.5420 +3615 10592 0.4080 +3615 10606 0.7440 +3615 10694 0.5280 +3615 10797 0.4660 +3615 10856 0.4500 +3615 11224 0.4380 +3615 11315 0.4290 +3615 11331 0.4210 +3615 22948 0.4820 +3615 22978 0.9450 +3615 23521 0.5690 +3615 23770 0.4490 +3615 26354 0.4050 +3615 27044 0.5270 +3615 29789 0.5460 +3615 30833 0.9440 +3615 51020 0.4700 +3615 51116 0.4100 +3615 51251 0.9020 +3615 51311 0.4290 +3615 51386 0.6710 +3615 54606 0.4150 +3615 54870 0.4040 +3615 55122 0.4420 +3615 55651 0.5230 +3615 55703 0.4550 +3615 55795 0.4490 +3615 56474 0.6730 +3615 56953 0.9340 +3615 57470 0.4830 +3615 58533 0.4870 +3615 79077 0.4310 +3615 79363 0.5740 +3615 80142 0.4400 +3615 84076 0.4780 +3615 84172 0.4800 +3615 84618 0.9240 +3615 93034 0.9150 +3615 93380 0.4020 +3615 115024 0.9070 +3615 122416 0.9300 +3615 122622 0.9750 +3615 124583 0.9000 +3615 126789 0.6660 +3615 131870 0.9060 +3615 140775 0.7840 +3615 200895 0.4830 +3615 221823 0.5070 +3615 282618 0.4020 +3615 345630 0.4240 +3615 377841 0.9020 +3615 100526794 0.9150 +3617 4646 0.4660 +3617 5146 0.4220 +3617 5949 0.6340 +3617 5961 0.8810 +3617 6785 0.9780 +3617 7439 0.6230 +3617 8842 0.4050 +3617 9778 0.4220 +3617 22999 0.5800 +3617 26687 0.4710 +3617 51594 0.4180 +3617 54714 0.4330 +3617 94137 0.4470 +3617 116966 0.4220 +3617 346007 0.4840 +3617 347744 0.5040 +3619 3636 0.4040 +3619 3720 0.4170 +3619 3763 0.9900 +3619 3767 0.7680 +3619 3796 0.4980 +3619 3801 0.5500 +3619 3832 0.9130 +3619 3833 0.7400 +3619 3834 0.5500 +3619 3835 0.7330 +3619 3925 0.4300 +3619 3978 0.4130 +3619 4085 0.7950 +3619 4171 0.6050 +3619 4172 0.5240 +3619 4173 0.6780 +3619 4174 0.6330 +3619 4175 0.6430 +3619 4176 0.7480 +3619 4288 0.5250 +3619 4609 0.5790 +3619 4671 0.4650 +3619 4681 0.9030 +3619 4751 0.5370 +3619 4926 0.4320 +3619 4927 0.4130 +3619 4928 0.6200 +3619 4998 0.5070 +3619 5116 0.4490 +3619 5347 0.9780 +3619 5885 0.6680 +3619 5903 0.8360 +3619 5905 0.8620 +3619 5927 0.4070 +3619 6240 0.4370 +3619 6241 0.4210 +3619 6612 0.4760 +3619 6613 0.5340 +3619 6790 0.9940 +3619 6795 0.9990 +3619 7153 0.4860 +3619 7175 0.4640 +3619 7272 0.5880 +3619 7329 0.4630 +3619 7403 0.4070 +3619 7404 0.4070 +3619 8021 0.4260 +3619 8086 0.4510 +3619 8242 0.4310 +3619 8284 0.4070 +3619 8290 0.8060 +3619 8318 0.4550 +3619 8349 0.5270 +3619 8356 0.8160 +3619 8480 0.4250 +3619 8556 0.8470 +3619 8900 0.5350 +3619 9055 0.8960 +3619 9126 0.4210 +3619 9133 0.6840 +3619 9183 0.9110 +3619 9184 0.8580 +3619 9212 0.9990 +3619 9232 0.7190 +3619 9319 0.4300 +3619 9493 0.9770 +3619 9585 0.7180 +3619 9631 0.4930 +3619 9688 0.4860 +3619 9700 0.9440 +3619 9735 0.8240 +3619 9787 0.8060 +3619 9793 0.5130 +3619 9818 0.4990 +3619 9833 0.5140 +3619 9874 0.4080 +3619 9883 0.4570 +3619 9918 0.6850 +3619 9928 0.6950 +3619 9972 0.5780 +3619 9985 0.4910 +3619 10036 0.5790 +3619 10051 0.5970 +3619 10112 0.9950 +3619 10403 0.9020 +3619 10434 0.7670 +3619 10460 0.7420 +3619 10524 0.4800 +3619 10592 0.6720 +3619 10615 0.5250 +3619 10635 0.5430 +3619 10726 0.8890 +3619 10733 0.6710 +3619 10744 0.7130 +3619 10762 0.5910 +3619 10765 0.4070 +3619 10769 0.6060 +3619 10951 0.5100 +3619 11004 0.8990 +3619 11065 0.4250 +3619 11097 0.4270 +3619 11113 0.6910 +3619 11130 0.8660 +3619 11201 0.4050 +3619 11335 0.5650 +3619 22974 0.6790 +3619 23063 0.4850 +3619 23135 0.4080 +3619 23165 0.5430 +3619 23225 0.4640 +3619 23279 0.6040 +3619 23310 0.5400 +3619 23332 0.5260 +3619 23397 0.5840 +3619 23468 0.7950 +3619 23511 0.4270 +3619 23636 0.5350 +3619 24137 0.7480 +3619 25909 0.4200 +3619 25936 0.5800 +3619 26278 0.4270 +3619 27436 0.5340 +3619 29116 0.4140 +3619 29127 0.9200 +3619 51203 0.4980 +3619 51343 0.4500 +3619 53371 0.4210 +3619 54443 0.8850 +3619 54821 0.4110 +3619 54892 0.5200 +3619 55055 0.6840 +3619 55063 0.5820 +3619 55143 0.9990 +3619 55165 0.5060 +3619 55166 0.4550 +3619 55320 0.6440 +3619 55355 0.4040 +3619 55388 0.4190 +3619 55605 0.4150 +3619 55684 0.4020 +3619 55692 0.4080 +3619 55706 0.5420 +3619 55746 0.6710 +3619 55839 0.4720 +3619 55920 0.9500 +3619 57082 0.7090 +3619 57122 0.6760 +3619 57156 0.9550 +3619 57405 0.5530 +3619 57448 0.4750 +3619 57509 0.5720 +3619 57650 0.5000 +3619 64105 0.4900 +3619 64151 0.4120 +3619 64506 0.5480 +3619 64946 0.5960 +3619 79023 0.5860 +3619 79075 0.5420 +3619 79172 0.6030 +3619 79444 0.4540 +3619 79682 0.5290 +3619 79866 0.7110 +3619 79902 0.6040 +3619 79915 0.4740 +3619 79980 0.8350 +3619 80152 0.6180 +3619 81554 0.5210 +3619 81620 0.5740 +3619 81929 0.6050 +3619 81930 0.5560 +3619 83461 0.4710 +3619 83540 0.7550 +3619 83903 0.7970 +3619 84501 0.4030 +3619 84643 0.4990 +3619 84823 0.4280 +3619 84930 0.5310 +3619 90417 0.4660 +3619 90990 0.5770 +3619 92421 0.5560 +3619 113130 0.7770 +3619 126520 0.5570 +3619 126961 0.5260 +3619 129401 0.4580 +3619 146909 0.5890 +3619 147841 0.5650 +3619 151246 0.6440 +3619 151648 0.8550 +3619 152098 0.5820 +3619 157313 0.5700 +3619 220134 0.5350 +3619 221150 0.4440 +3619 259266 0.5900 +3619 285643 0.4760 +3619 348995 0.5740 +3619 378708 0.7350 +3619 387103 0.5060 +3619 401541 0.4760 +3619 440093 0.8220 +3619 440686 0.8350 +3619 653604 0.8360 +3619 100101267 0.4460 +3619 111064650 0.4140 +3620 3627 0.8320 +3620 3630 0.4380 +3620 3659 0.6300 +3620 3662 0.4170 +3620 3665 0.4270 +3620 3669 0.4500 +3620 3682 0.5780 +3620 3684 0.7900 +3620 3687 0.7650 +3620 3688 0.4020 +3620 3716 0.4550 +3620 3717 0.5000 +3620 3815 0.4020 +3620 3821 0.4580 +3620 3824 0.4340 +3620 3845 0.4110 +3620 3902 0.8250 +3620 3965 0.6250 +3620 4065 0.4130 +3620 4070 0.4380 +3620 4128 0.9390 +3620 4129 0.9360 +3620 4261 0.4120 +3620 4283 0.8680 +3620 4312 0.5550 +3620 4316 0.4450 +3620 4318 0.5080 +3620 4345 0.5140 +3620 4360 0.5600 +3620 4599 0.4180 +3620 4609 0.4450 +3620 4684 0.4560 +3620 4773 0.4700 +3620 4790 0.6580 +3620 4843 0.5290 +3620 4907 0.7000 +3620 5004 0.4350 +3620 5005 0.4300 +3620 5122 0.5620 +3620 5133 0.7690 +3620 5175 0.4560 +3620 5468 0.4110 +3620 5551 0.6490 +3620 5698 0.4530 +3620 5728 0.4340 +3620 5743 0.6210 +3620 5781 0.6190 +3620 5788 0.6430 +3620 5817 0.4550 +3620 6347 0.6890 +3620 6348 0.5370 +3620 6351 0.5320 +3620 6355 0.5070 +3620 6361 0.4700 +3620 6362 0.4760 +3620 6363 0.4700 +3620 6364 0.4830 +3620 6366 0.4160 +3620 6367 0.6110 +3620 6373 0.8800 +3620 6374 0.4560 +3620 6376 0.4070 +3620 6387 0.6040 +3620 6402 0.4880 +3620 6490 0.4290 +3620 6513 0.4440 +3620 6532 0.4140 +3620 6772 0.8070 +3620 6774 0.6310 +3620 6776 0.4450 +3620 6777 0.4220 +3620 6778 0.4240 +3620 6868 0.5270 +3620 6999 0.9900 +3620 7040 0.6730 +3620 7070 0.5440 +3620 7097 0.5730 +3620 7098 0.6150 +3620 7099 0.6270 +3620 7124 0.7580 +3620 7130 0.6910 +3620 7157 0.4790 +3620 7166 0.9570 +3620 7185 0.4090 +3620 7292 0.5070 +3620 7293 0.6400 +3620 7412 0.5050 +3620 7453 0.5900 +3620 7852 0.5730 +3620 8431 0.5310 +3620 8564 0.8330 +3620 8651 0.5130 +3620 8743 0.4470 +3620 8744 0.4720 +3620 8764 0.5110 +3620 8784 0.8680 +3620 8942 0.9830 +3620 8995 0.8220 +3620 9021 0.7970 +3620 9034 0.6190 +3620 9308 0.5370 +3620 9332 0.6130 +3620 9436 0.4470 +3620 9437 0.4390 +3620 10225 0.4090 +3620 10288 0.4860 +3620 10352 0.4080 +3620 10537 0.5160 +3620 10563 0.6690 +3620 10663 0.4610 +3620 10666 0.4380 +3620 10673 0.4610 +3620 10859 0.4350 +3620 11006 0.4870 +3620 11126 0.4570 +3620 11148 0.4160 +3620 11185 0.9130 +3620 22914 0.6040 +3620 23308 0.5790 +3620 23475 0.7230 +3620 23498 0.7820 +3620 23586 0.4610 +3620 27074 0.4730 +3620 29126 0.9020 +3620 29851 0.7370 +3620 30009 0.5270 +3620 30835 0.4670 +3620 50616 0.5570 +3620 50943 0.8790 +3620 51166 0.6310 +3620 51284 0.5600 +3620 51311 0.4550 +3620 54106 0.5820 +3620 55509 0.4690 +3620 56267 0.5800 +3620 57509 0.6210 +3620 64115 0.5070 +3620 64135 0.4260 +3620 64581 0.4030 +3620 65258 0.4250 +3620 79679 0.6070 +3620 80380 0.7980 +3620 80381 0.6770 +3620 84868 0.7730 +3620 93100 0.4680 +3620 115004 0.4190 +3620 115361 0.6330 +3620 115362 0.6930 +3620 116071 0.5280 +3620 121278 0.9530 +3620 125061 0.9680 +3620 130013 0.5680 +3620 131450 0.4470 +3620 140885 0.4450 +3620 151888 0.6190 +3620 168400 0.5100 +3620 169355 0.9190 +3620 170482 0.4110 +3620 201633 0.7150 +3620 259197 0.5400 +3620 259307 0.9410 +3620 284194 0.5530 +3620 440275 0.6580 +3620 653361 0.4880 +3620 654346 0.5530 +3621 3622 0.7250 +3621 4000 0.4160 +3621 4072 0.5130 +3621 4601 0.4270 +3621 5111 0.5240 +3621 5926 0.9810 +3621 5927 0.5410 +3621 5928 0.9870 +3621 5931 0.9720 +3621 6299 0.4470 +3621 6594 0.5430 +3621 6597 0.4270 +3621 7157 0.9140 +3621 7507 0.4610 +3621 7533 0.4020 +3621 7994 0.5420 +3621 8290 0.9810 +3621 8295 0.6370 +3621 8350 0.9150 +3621 8351 0.9150 +3621 8352 0.9140 +3621 8353 0.9140 +3621 8354 0.9140 +3621 8355 0.9150 +3621 8356 0.9810 +3621 8357 0.9140 +3621 8358 0.9140 +3621 8361 0.6890 +3621 8369 0.5950 +3621 8467 0.5560 +3621 8473 0.5970 +3621 8819 0.9860 +3621 8841 0.7780 +3621 8850 0.4970 +3621 8968 0.9140 +3621 9768 0.9150 +3621 9875 0.4310 +3621 10274 0.4010 +3621 10284 0.6560 +3621 10524 0.6560 +3621 10933 0.8400 +3621 11143 0.7610 +3621 22933 0.4440 +3621 23028 0.4720 +3621 23309 0.9260 +3621 23411 0.5010 +3621 23522 0.5260 +3621 25855 0.9760 +3621 25942 0.9950 +3621 26122 0.4040 +3621 26156 0.6400 +3621 51230 0.6780 +3621 51742 0.9750 +3621 54556 0.6200 +3621 55257 0.5390 +3621 55274 0.4390 +3621 55869 0.7770 +3621 55904 0.4080 +3621 55929 0.7270 +3621 56946 0.4170 +3621 57597 0.6080 +3621 57649 0.7760 +3621 58516 0.9520 +3621 64426 0.9900 +3621 64769 0.6030 +3621 79142 0.6030 +3621 79595 0.7890 +3621 79685 0.9100 +3621 80312 0.6040 +3621 80314 0.4380 +3621 84260 0.4950 +3621 84289 0.8960 +3621 84312 0.9750 +3621 84629 0.4770 +3621 84706 0.6520 +3621 90316 0.6250 +3621 112869 0.5010 +3621 126961 0.9540 +3621 333932 0.9140 +3621 440093 0.9820 +3621 440686 0.9820 +3621 653604 0.9820 +3621 100316904 0.4340 +3622 4087 0.4440 +3622 4800 0.9010 +3622 4801 0.9050 +3622 4802 0.9040 +3622 5875 0.4070 +3622 5926 0.9860 +3622 5928 0.9430 +3622 5931 0.9530 +3622 6498 0.4310 +3622 6594 0.7340 +3622 6599 0.4720 +3622 6908 0.4880 +3622 7157 0.8370 +3622 7329 0.4240 +3622 7341 0.5920 +3622 7403 0.4090 +3622 7507 0.4750 +3622 7862 0.4100 +3622 7994 0.5870 +3622 8089 0.6620 +3622 8290 0.9940 +3622 8295 0.8250 +3622 8350 0.9230 +3622 8351 0.9210 +3622 8352 0.9500 +3622 8353 0.9500 +3622 8354 0.9220 +3622 8355 0.9210 +3622 8356 0.9920 +3622 8357 0.9210 +3622 8358 0.9220 +3622 8361 0.6960 +3622 8369 0.5950 +3622 8454 0.4070 +3622 8467 0.6160 +3622 8473 0.6180 +3622 8819 0.9920 +3622 8968 0.9230 +3622 9682 0.6410 +3622 9739 0.4310 +3622 9788 0.4330 +3622 9869 0.5220 +3622 9875 0.4260 +3622 10153 0.4930 +3622 10524 0.5890 +3622 10653 0.4120 +3622 10765 0.5090 +3622 10865 0.5110 +3622 10919 0.4780 +3622 10933 0.9720 +3622 11091 0.7720 +3622 11143 0.7700 +3622 23081 0.4670 +3622 23133 0.5610 +3622 23186 0.4430 +3622 23309 0.9520 +3622 23411 0.4860 +3622 23522 0.5720 +3622 25855 0.9780 +3622 25942 0.9990 +3622 26122 0.6660 +3622 29947 0.5280 +3622 51317 0.7230 +3622 51412 0.5800 +3622 51742 0.9510 +3622 55170 0.5750 +3622 55257 0.4220 +3622 55602 0.4080 +3622 55929 0.8160 +3622 57154 0.6230 +3622 57597 0.7740 +3622 57649 0.9320 +3622 58516 0.9880 +3622 60436 0.6420 +3622 64426 0.9720 +3622 64769 0.7440 +3622 79142 0.4250 +3622 79595 0.9300 +3622 79685 0.9670 +3622 80312 0.5620 +3622 80314 0.7020 +3622 83463 0.6650 +3622 83860 0.8280 +3622 84148 0.4690 +3622 84312 0.9840 +3622 84444 0.4660 +3622 84629 0.4960 +3622 90316 0.6410 +3622 90809 0.5820 +3622 112398 0.5630 +3622 112869 0.4450 +3622 126961 0.9240 +3622 202374 0.4150 +3622 221656 0.4420 +3622 221937 0.6430 +3622 333932 0.9210 +3622 342667 0.4500 +3622 391723 0.4260 +3622 440093 0.9920 +3622 440686 0.9920 +3622 619279 0.7960 +3622 653604 0.9920 +3623 3624 0.9610 +3623 3625 0.8760 +3623 3626 0.7100 +3623 3640 0.4230 +3623 3815 0.5140 +3623 3973 0.5670 +3623 4154 0.4300 +3623 5077 0.5040 +3623 5081 0.4390 +3623 5536 0.4640 +3623 6477 0.4550 +3623 7049 0.9040 +3623 7140 0.4460 +3623 7923 0.4800 +3623 8200 0.4820 +3623 8517 0.4600 +3623 9210 0.7380 +3623 9564 0.4760 +3623 10272 0.5140 +3623 10343 0.4300 +3623 10468 0.5400 +3623 10663 0.4070 +3623 27189 0.4410 +3623 55331 0.4320 +3623 60676 0.4170 +3623 83729 0.5980 +3623 83853 0.4110 +3623 83893 0.4380 +3623 84528 0.4130 +3623 90865 0.4110 +3623 135935 0.4030 +3623 147912 0.6700 +3623 169792 0.7470 +3623 344018 0.5450 +3624 3625 0.9860 +3624 3626 0.6270 +3624 3627 0.5010 +3624 3725 0.5460 +3624 3973 0.4910 +3624 4087 0.7380 +3624 4088 0.8210 +3624 4089 0.6950 +3624 4092 0.5790 +3624 4312 0.4490 +3624 4314 0.5450 +3624 4838 0.9130 +3624 5054 0.4170 +3624 5536 0.4360 +3624 5744 0.5430 +3624 5898 0.5220 +3624 6373 0.4170 +3624 6424 0.5510 +3624 7040 0.9200 +3624 7043 0.9460 +3624 7046 0.5040 +3624 7050 0.4850 +3624 7057 0.4030 +3624 7058 0.6680 +3624 7130 0.5340 +3624 9564 0.4090 +3624 9590 0.4860 +3624 10112 0.4610 +3624 10272 0.9890 +3624 10468 0.9990 +3624 10673 0.4100 +3624 11005 0.4810 +3624 11167 0.5040 +3624 22801 0.4700 +3624 22808 0.4020 +3624 23213 0.5440 +3624 26585 0.4100 +3624 55466 0.4500 +3624 57016 0.4260 +3624 57167 0.4280 +3624 83605 0.4290 +3624 83729 0.5300 +3624 90637 0.4280 +3624 130399 0.9820 +3624 168667 0.7280 +3624 102723407 0.8030 +3625 3626 0.5190 +3625 3815 0.4770 +3625 3973 0.5500 +3625 4087 0.6870 +3625 4088 0.6630 +3625 4089 0.6720 +3625 4154 0.4290 +3625 4838 0.9100 +3625 5010 0.4040 +3625 5536 0.4670 +3625 7040 0.9120 +3625 7043 0.9170 +3625 7046 0.4130 +3625 7048 0.5510 +3625 7140 0.4390 +3625 9564 0.4300 +3625 10272 0.8110 +3625 10468 0.9800 +3625 29842 0.4040 +3625 29974 0.4470 +3625 79369 0.4140 +3625 83729 0.5360 +3625 92912 0.4020 +3625 130399 0.9910 +3625 134285 0.4440 +3625 147912 0.6130 +3625 148738 0.4540 +3626 4838 0.9090 +3626 5174 0.4530 +3626 6239 0.4960 +3626 6568 0.5800 +3626 7040 0.9050 +3626 7043 0.9110 +3626 7436 0.4330 +3626 9965 0.4230 +3626 10468 0.9490 +3626 22864 0.5840 +3626 29974 0.4900 +3626 55867 0.5490 +3626 56606 0.5130 +3626 83729 0.5070 +3626 116085 0.4160 +3626 130399 0.9370 +3626 220963 0.5510 +3627 3630 0.4950 +3627 3654 0.4330 +3627 3659 0.8750 +3627 3660 0.4080 +3627 3661 0.7590 +3627 3662 0.4780 +3627 3663 0.5300 +3627 3665 0.8010 +3627 3669 0.6970 +3627 3676 0.6110 +3627 3682 0.5490 +3627 3683 0.4130 +3627 3684 0.7740 +3627 3687 0.6450 +3627 3688 0.5400 +3627 3689 0.6340 +3627 3716 0.5810 +3627 3717 0.5770 +3627 3725 0.5080 +3627 3820 0.6070 +3627 3821 0.4670 +3627 3824 0.4350 +3627 3902 0.6260 +3627 3934 0.5400 +3627 3952 0.5400 +3627 3958 0.4020 +3627 3965 0.6940 +3627 3976 0.6550 +3627 4049 0.7110 +3627 4050 0.4130 +3627 4254 0.4030 +3627 4261 0.4430 +3627 4282 0.5280 +3627 4283 0.9990 +3627 4312 0.7320 +3627 4313 0.4460 +3627 4314 0.7020 +3627 4317 0.4160 +3627 4318 0.8680 +3627 4321 0.4930 +3627 4340 0.5560 +3627 4353 0.6610 +3627 4360 0.6390 +3627 4481 0.4420 +3627 4599 0.8340 +3627 4600 0.8120 +3627 4609 0.4350 +3627 4684 0.5150 +3627 4790 0.8450 +3627 4791 0.4110 +3627 4792 0.7520 +3627 4793 0.4770 +3627 4794 0.6100 +3627 4803 0.4470 +3627 4843 0.5200 +3627 4886 0.4140 +3627 4907 0.4220 +3627 4938 0.7300 +3627 4939 0.7530 +3627 4940 0.6290 +3627 4973 0.4750 +3627 5008 0.6070 +3627 5045 0.4130 +3627 5054 0.6660 +3627 5133 0.7290 +3627 5175 0.5010 +3627 5196 0.9990 +3627 5197 0.9990 +3627 5228 0.4450 +3627 5443 0.4600 +3627 5468 0.4470 +3627 5473 0.9990 +3627 5551 0.6440 +3627 5595 0.4460 +3627 5610 0.6010 +3627 5687 0.4060 +3627 5696 0.4680 +3627 5697 0.4230 +3627 5698 0.5310 +3627 5721 0.4240 +3627 5733 0.4420 +3627 5743 0.6050 +3627 5788 0.6740 +3627 5914 0.4460 +3627 5966 0.4010 +3627 5970 0.6660 +3627 5971 0.4810 +3627 5972 0.4400 +3627 6041 0.4160 +3627 6283 0.6340 +3627 6288 0.7890 +3627 6289 0.7800 +3627 6320 0.4470 +3627 6346 0.8780 +3627 6347 0.9650 +3627 6348 0.9510 +3627 6351 0.9590 +3627 6354 0.8330 +3627 6355 0.9990 +3627 6356 0.9990 +3627 6357 0.9990 +3627 6358 0.6280 +3627 6359 0.5650 +3627 6360 0.7460 +3627 6361 0.8830 +3627 6362 0.7170 +3627 6363 0.9350 +3627 6364 0.9360 +3627 6366 0.9990 +3627 6367 0.9590 +3627 6368 0.6180 +3627 6369 0.8000 +3627 6370 0.8480 +3627 6372 0.9980 +3627 6373 0.9990 +3627 6374 0.9740 +3627 6375 0.9970 +3627 6376 0.9480 +3627 6385 0.6840 +3627 6387 0.9990 +3627 6401 0.5900 +3627 6402 0.5620 +3627 6403 0.4890 +3627 6614 0.5410 +3627 6696 0.4800 +3627 6714 0.6680 +3627 6737 0.4860 +3627 6772 0.9490 +3627 6773 0.6680 +3627 6774 0.8200 +3627 6775 0.4880 +3627 6776 0.4210 +3627 6778 0.4720 +3627 6846 0.5510 +3627 6890 0.5210 +3627 7032 0.4550 +3627 7039 0.5290 +3627 7040 0.6200 +3627 7042 0.4320 +3627 7056 0.4370 +3627 7076 0.7440 +3627 7096 0.5860 +3627 7097 0.9020 +3627 7098 0.7800 +3627 7099 0.9690 +3627 7100 0.6500 +3627 7113 0.5770 +3627 7124 0.9660 +3627 7128 0.5480 +3627 7130 0.4540 +3627 7132 0.5400 +3627 7133 0.6790 +3627 7157 0.4720 +3627 7187 0.5680 +3627 7189 0.4850 +3627 7276 0.4780 +3627 7292 0.4170 +3627 7293 0.6420 +3627 7297 0.4590 +3627 7299 0.4930 +3627 7305 0.5450 +3627 7412 0.7320 +3627 7453 0.5310 +3627 7832 0.4500 +3627 7837 0.5130 +3627 7850 0.4480 +3627 7852 0.9970 +3627 8519 0.5000 +3627 8600 0.4340 +3627 8638 0.7170 +3627 8651 0.7570 +3627 8654 0.4530 +3627 8742 0.4200 +3627 8743 0.6460 +3627 8784 0.4020 +3627 8817 0.5130 +3627 8822 0.5130 +3627 8823 0.5130 +3627 8829 0.6110 +3627 8878 0.4690 +3627 9021 0.5610 +3627 9034 0.8810 +3627 9235 0.4700 +3627 9246 0.4260 +3627 9308 0.5360 +3627 9332 0.6910 +3627 9370 0.6040 +3627 9437 0.4460 +3627 9447 0.5290 +3627 9547 0.9960 +3627 9560 0.6100 +3627 9636 0.9140 +3627 9641 0.4960 +3627 10045 0.4190 +3627 10068 0.4490 +3627 10135 0.5630 +3627 10344 0.9980 +3627 10346 0.4320 +3627 10379 0.6550 +3627 10392 0.4020 +3627 10410 0.5080 +3627 10537 0.7300 +3627 10561 0.8210 +3627 10563 0.9940 +3627 10578 0.4570 +3627 10663 0.9690 +3627 10673 0.6850 +3627 10803 0.8690 +3627 10850 0.8790 +3627 10964 0.7720 +3627 11274 0.7260 +3627 22914 0.5300 +3627 23586 0.8540 +3627 23643 0.4690 +3627 23765 0.4290 +3627 24138 0.5220 +3627 26281 0.5130 +3627 27006 0.5130 +3627 27074 0.4920 +3627 29110 0.6220 +3627 29126 0.7770 +3627 29851 0.5450 +3627 30009 0.7360 +3627 30835 0.5190 +3627 50615 0.5810 +3627 50616 0.6720 +3627 50943 0.6860 +3627 51056 0.4350 +3627 51176 0.4550 +3627 51191 0.4930 +3627 51284 0.8090 +3627 51311 0.6360 +3627 51497 0.4300 +3627 51513 0.4070 +3627 51554 0.6510 +3627 51561 0.6380 +3627 54106 0.7610 +3627 54209 0.4360 +3627 54210 0.4870 +3627 54625 0.4060 +3627 54739 0.5770 +3627 54878 0.4090 +3627 55008 0.4840 +3627 55509 0.5100 +3627 55601 0.5340 +3627 56477 0.9970 +3627 56729 0.6260 +3627 57007 0.8630 +3627 57506 0.7070 +3627 57509 0.4300 +3627 58191 0.9020 +3627 59067 0.4160 +3627 59272 0.6980 +3627 63940 0.4200 +3627 64108 0.6650 +3627 64127 0.5350 +3627 64135 0.8910 +3627 64581 0.4730 +3627 64761 0.4750 +3627 64806 0.4180 +3627 65258 0.4140 +3627 79132 0.6310 +3627 79671 0.5640 +3627 80380 0.6010 +3627 80381 0.6300 +3627 80781 0.5370 +3627 81030 0.4620 +3627 81793 0.5340 +3627 83666 0.4770 +3627 84166 0.4070 +3627 84666 0.6490 +3627 84868 0.6110 +3627 85480 0.5050 +3627 90865 0.6330 +3627 91543 0.8610 +3627 94240 0.5350 +3627 112744 0.6060 +3627 114548 0.5550 +3627 114609 0.4020 +3627 115004 0.6310 +3627 115361 0.7760 +3627 115362 0.7490 +3627 116071 0.5130 +3627 129607 0.4910 +3627 137902 0.5120 +3627 168400 0.4200 +3627 169355 0.5460 +3627 170482 0.4190 +3627 201633 0.4920 +3627 219285 0.6220 +3627 246778 0.4510 +3627 259307 0.4390 +3627 282616 0.5910 +3627 282617 0.5840 +3627 282618 0.6560 +3627 284194 0.6030 +3627 284340 0.9960 +3627 340061 0.4470 +3627 386653 0.5110 +3627 414062 0.8100 +3627 441168 0.4340 +3627 654346 0.6040 +3627 730249 0.6950 +3628 3632 0.9220 +3628 3676 0.6190 +3628 3705 0.9320 +3628 3978 0.4610 +3628 5305 0.4100 +3628 5330 0.9040 +3628 5331 0.9080 +3628 5332 0.9020 +3628 5333 0.9150 +3628 5335 0.9070 +3628 5336 0.9000 +3628 5464 0.5080 +3628 6526 0.4630 +3628 8604 0.6400 +3628 8821 0.9150 +3628 9060 0.6530 +3628 9061 0.6750 +3628 9562 0.4410 +3628 9572 0.4060 +3628 9677 0.4270 +3628 10423 0.4760 +3628 23236 0.9210 +3628 26275 0.4150 +3628 27068 0.4180 +3628 27124 0.9580 +3628 27347 0.6090 +3628 51196 0.9010 +3628 51477 0.8560 +3628 51763 0.9150 +3628 54842 0.4600 +3628 54928 0.9150 +3628 54970 0.4270 +3628 64768 0.5270 +3628 79872 0.4280 +3628 80308 0.5600 +3628 84812 0.9010 +3628 89869 0.9010 +3628 113026 0.9010 +3628 117283 0.4330 +3628 132001 0.4300 +3628 150709 0.4260 +3628 151647 0.4310 +3628 255239 0.4040 +3628 100131211 0.4360 +3630 3636 0.4480 +3630 3638 0.7020 +3630 3640 0.8070 +3630 3641 0.5350 +3630 3643 0.9990 +3630 3645 0.9640 +3630 3651 0.9660 +3630 3655 0.4080 +3630 3667 0.9990 +3630 3670 0.7430 +3630 3684 0.5870 +3630 3687 0.5490 +3630 3688 0.6040 +3630 3708 0.6870 +3630 3709 0.5940 +3630 3710 0.6960 +3630 3716 0.4220 +3630 3717 0.6180 +3630 3725 0.7410 +3630 3738 0.5630 +3630 3767 0.8740 +3630 3784 0.5260 +3630 3791 0.8500 +3630 3795 0.5050 +3630 3798 0.4360 +3630 3799 0.5240 +3630 3800 0.4580 +3630 3814 0.5330 +3630 3815 0.9580 +3630 3827 0.7960 +3630 3845 0.5410 +3630 3856 0.4780 +3630 3861 0.4100 +3630 3875 0.5530 +3630 3880 0.5730 +3630 3906 0.7270 +3630 3916 0.4240 +3630 3929 0.4190 +3630 3931 0.4160 +3630 3934 0.5370 +3630 3952 0.9850 +3630 3953 0.8860 +3630 3956 0.4540 +3630 3958 0.4720 +3630 3960 0.4360 +3630 3973 0.4140 +3630 3976 0.5770 +3630 3990 0.6040 +3630 3991 0.7900 +3630 3992 0.5060 +3630 4000 0.4930 +3630 4001 0.4490 +3630 4009 0.5330 +3630 4012 0.8150 +3630 4015 0.5940 +3630 4018 0.5760 +3630 4023 0.8530 +3630 4035 0.4480 +3630 4036 0.6780 +3630 4041 0.4540 +3630 4057 0.8150 +3630 4069 0.4770 +3630 4072 0.5110 +3630 4082 0.4030 +3630 4087 0.5660 +3630 4088 0.6950 +3630 4089 0.4950 +3630 4092 0.4080 +3630 4094 0.4910 +3630 4128 0.5060 +3630 4129 0.4730 +3630 4130 0.4070 +3630 4133 0.4250 +3630 4137 0.5050 +3630 4151 0.9840 +3630 4155 0.5120 +3630 4159 0.6510 +3630 4160 0.7860 +3630 4193 0.4830 +3630 4210 0.4070 +3630 4217 0.4740 +3630 4233 0.8230 +3630 4240 0.5220 +3630 4254 0.7230 +3630 4282 0.4390 +3630 4295 0.5770 +3630 4303 0.8130 +3630 4306 0.5750 +3630 4311 0.5190 +3630 4312 0.4070 +3630 4313 0.5240 +3630 4314 0.6430 +3630 4318 0.6550 +3630 4322 0.4370 +3630 4340 0.4300 +3630 4352 0.4420 +3630 4353 0.6520 +3630 4360 0.4710 +3630 4493 0.4390 +3630 4512 0.4720 +3630 4524 0.4030 +3630 4544 0.7300 +3630 4547 0.5710 +3630 4594 0.4320 +3630 4609 0.7140 +3630 4617 0.5570 +3630 4624 0.4510 +3630 4644 0.5380 +3630 4654 0.6310 +3630 4656 0.6540 +3630 4684 0.4980 +3630 4760 0.8780 +3630 4780 0.6270 +3630 4790 0.8750 +3630 4792 0.6050 +3630 4803 0.7070 +3630 4804 0.7860 +3630 4817 0.5630 +3630 4821 0.9010 +3630 4825 0.8370 +3630 4838 0.4190 +3630 4842 0.5080 +3630 4843 0.4900 +3630 4846 0.7320 +3630 4851 0.4750 +3630 4852 0.9180 +3630 4856 0.4240 +3630 4868 0.4970 +3630 4878 0.7810 +3630 4879 0.5130 +3630 4899 0.4520 +3630 4905 0.6020 +3630 4907 0.6260 +3630 4908 0.4770 +3630 4914 0.9960 +3630 4915 0.8010 +3630 4921 0.4740 +3630 4922 0.7260 +3630 4925 0.5090 +3630 4953 0.4200 +3630 4988 0.4100 +3630 5008 0.5080 +3630 5020 0.7400 +3630 5028 0.4900 +3630 5034 0.8510 +3630 5045 0.6860 +3630 5054 0.8530 +3630 5068 0.4100 +3630 5069 0.4550 +3630 5078 0.9180 +3630 5080 0.9060 +3630 5081 0.4890 +3630 5091 0.6010 +3630 5105 0.6840 +3630 5106 0.7890 +3630 5122 0.9110 +3630 5126 0.8930 +3630 5140 0.5050 +3630 5154 0.9290 +3630 5155 0.9360 +3630 5156 0.9490 +3630 5159 0.9750 +3630 5164 0.4850 +3630 5166 0.7770 +3630 5167 0.4330 +3630 5170 0.5630 +3630 5175 0.7080 +3630 5207 0.4370 +3630 5208 0.4530 +3630 5209 0.5190 +3630 5213 0.5090 +3630 5228 0.4140 +3630 5230 0.4160 +3630 5241 0.6220 +3630 5265 0.5390 +3630 5266 0.4180 +3630 5286 0.4710 +3630 5289 0.4340 +3630 5290 0.5850 +3630 5291 0.4850 +3630 5294 0.6690 +3630 5295 0.8240 +3630 5296 0.6780 +3630 5315 0.4780 +3630 5325 0.5480 +3630 5327 0.7270 +3630 5328 0.4360 +3630 5340 0.6180 +3630 5341 0.5930 +3630 5346 0.7130 +3630 5367 0.5050 +3630 5406 0.7170 +3630 5443 0.9470 +3630 5444 0.5300 +3630 5460 0.6290 +3630 5465 0.8980 +3630 5467 0.7150 +3630 5468 0.9440 +3630 5478 0.4920 +3630 5515 0.5500 +3630 5516 0.4330 +3630 5518 0.5080 +3630 5519 0.4370 +3630 5525 0.4520 +3630 5526 0.4390 +3630 5527 0.4350 +3630 5528 0.4410 +3630 5529 0.4140 +3630 5539 0.9520 +3630 5562 0.5990 +3630 5566 0.7380 +3630 5567 0.7320 +3630 5568 0.7460 +3630 5578 0.5090 +3630 5579 0.4340 +3630 5587 0.4200 +3630 5590 0.5940 +3630 5592 0.4350 +3630 5594 0.7630 +3630 5595 0.8130 +3630 5599 0.7400 +3630 5600 0.4500 +3630 5601 0.6200 +3630 5603 0.4160 +3630 5604 0.5550 +3630 5610 0.5310 +3630 5617 0.9620 +3630 5618 0.4190 +3630 5621 0.4260 +3630 5626 0.5760 +3630 5644 0.4660 +3630 5663 0.4470 +3630 5669 0.4300 +3630 5670 0.4210 +3630 5676 0.4170 +3630 5697 0.8360 +3630 5728 0.8690 +3630 5741 0.9100 +3630 5743 0.6390 +3630 5747 0.6430 +3630 5770 0.8350 +3630 5771 0.4790 +3630 5781 0.4800 +3630 5788 0.6680 +3630 5798 0.9270 +3630 5799 0.5400 +3630 5805 0.5070 +3630 5834 0.6300 +3630 5836 0.7590 +3630 5837 0.6300 +3630 5868 0.4340 +3630 5873 0.6070 +3630 5877 0.4370 +3630 5894 0.4240 +3630 5919 0.5830 +3630 5921 0.6690 +3630 5925 0.4800 +3630 5950 0.6750 +3630 5966 0.4270 +3630 5970 0.6150 +3630 5972 0.8210 +3630 6009 0.6130 +3630 6010 0.4740 +3630 6013 0.7810 +3630 6019 0.7530 +3630 6035 0.5770 +3630 6046 0.4390 +3630 6093 0.4230 +3630 6095 0.4990 +3630 6175 0.4580 +3630 6194 0.6090 +3630 6195 0.5630 +3630 6196 0.4070 +3630 6197 0.4260 +3630 6198 0.8760 +3630 6199 0.6660 +3630 6240 0.5170 +3630 6241 0.5010 +3630 6256 0.4340 +3630 6272 0.4240 +3630 6285 0.4270 +3630 6288 0.6080 +3630 6300 0.4160 +3630 6319 0.7140 +3630 6343 0.7840 +3630 6347 0.7800 +3630 6348 0.4550 +3630 6351 0.5950 +3630 6387 0.6610 +3630 6390 0.4480 +3630 6391 0.5230 +3630 6401 0.5960 +3630 6403 0.4970 +3630 6406 0.4200 +3630 6446 0.6280 +3630 6462 0.8830 +3630 6464 0.7930 +3630 6469 0.5600 +3630 6476 0.8850 +3630 6513 0.8490 +3630 6514 0.9420 +3630 6515 0.6760 +3630 6517 0.9770 +3630 6518 0.5690 +3630 6523 0.7830 +3630 6524 0.8850 +3630 6531 0.4540 +3630 6532 0.6060 +3630 6548 0.4020 +3630 6550 0.4560 +3630 6566 0.6260 +3630 6591 0.4420 +3630 6608 0.4040 +3630 6615 0.4920 +3630 6616 0.6570 +3630 6622 0.8960 +3630 6642 0.6570 +3630 6643 0.4880 +3630 6647 0.5110 +3630 6648 0.5540 +3630 6652 0.4100 +3630 6654 0.6630 +3630 6657 0.6020 +3630 6662 0.7150 +3630 6667 0.4450 +3630 6678 0.4200 +3630 6696 0.5970 +3630 6714 0.8860 +3630 6720 0.8900 +3630 6721 0.6600 +3630 6736 0.4340 +3630 6750 0.9530 +3630 6751 0.4250 +3630 6752 0.5040 +3630 6755 0.4960 +3630 6770 0.4360 +3630 6772 0.5370 +3630 6774 0.8850 +3630 6776 0.6890 +3630 6777 0.6880 +3630 6778 0.4120 +3630 6781 0.4240 +3630 6794 0.6270 +3630 6804 0.8570 +3630 6810 0.6580 +3630 6811 0.5500 +3630 6812 0.5750 +3630 6814 0.5760 +3630 6833 0.9090 +3630 6844 0.8970 +3630 6853 0.4190 +3630 6855 0.7450 +3630 6861 0.5430 +3630 6863 0.7270 +3630 6868 0.4160 +3630 6898 0.5100 +3630 6907 0.4360 +3630 6908 0.5340 +3630 6925 0.4260 +3630 6927 0.8710 +3630 6928 0.5170 +3630 6934 0.6660 +3630 7010 0.7910 +3630 7015 0.5160 +3630 7019 0.6130 +3630 7025 0.4350 +3630 7037 0.6000 +3630 7038 0.6100 +3630 7039 0.9560 +3630 7040 0.7580 +3630 7042 0.4760 +3630 7043 0.6370 +3630 7045 0.5300 +3630 7046 0.4690 +3630 7048 0.4140 +3630 7052 0.4450 +3630 7054 0.7250 +3630 7057 0.4560 +3630 7070 0.6100 +3630 7075 0.4640 +3630 7076 0.5190 +3630 7077 0.6150 +3630 7082 0.5290 +3630 7097 0.5690 +3630 7098 0.4180 +3630 7099 0.7100 +3630 7124 0.9260 +3630 7132 0.4470 +3630 7137 0.4580 +3630 7139 0.4990 +3630 7157 0.8790 +3630 7166 0.4260 +3630 7173 0.5430 +3630 7184 0.4240 +3630 7186 0.4870 +3630 7200 0.6640 +3630 7248 0.4870 +3630 7249 0.6670 +3630 7253 0.4200 +3630 7273 0.4780 +3630 7276 0.8050 +3630 7291 0.4270 +3630 7295 0.8470 +3630 7296 0.5480 +3630 7299 0.4040 +3630 7350 0.8680 +3630 7351 0.8140 +3630 7352 0.6380 +3630 7391 0.4360 +3630 7412 0.6900 +3630 7414 0.4890 +3630 7416 0.4330 +3630 7431 0.4310 +3630 7432 0.7300 +3630 7436 0.4160 +3630 7442 0.5020 +3630 7448 0.5020 +3630 7450 0.6170 +3630 7466 0.6940 +3630 7471 0.4410 +3630 7474 0.4260 +3630 7490 0.4260 +3630 7494 0.6200 +3630 7498 0.5800 +3630 7779 0.4550 +3630 7784 0.4340 +3630 7837 0.8170 +3630 7840 0.5690 +3630 7852 0.5430 +3630 7941 0.4020 +3630 7942 0.4670 +3630 8074 0.6480 +3630 8290 0.5860 +3630 8310 0.5270 +3630 8349 0.4470 +3630 8356 0.5820 +3630 8408 0.4550 +3630 8431 0.4900 +3630 8462 0.5880 +3630 8471 0.9550 +3630 8544 0.4930 +3630 8549 0.4960 +3630 8600 0.5430 +3630 8651 0.4280 +3630 8660 0.9980 +3630 8678 0.5630 +3630 8694 0.6020 +3630 8718 0.5830 +3630 8723 0.4750 +3630 8774 0.5220 +3630 8775 0.5780 +3630 8788 0.7010 +3630 8797 0.7030 +3630 8817 0.8220 +3630 8822 0.8270 +3630 8823 0.8160 +3630 8837 0.5090 +3630 8842 0.5270 +3630 8856 0.4800 +3630 8862 0.7380 +3630 8864 0.5070 +3630 8869 0.4180 +3630 8878 0.4450 +3630 8900 0.4350 +3630 8913 0.9160 +3630 8972 0.8830 +3630 8988 0.9900 +3630 8992 0.5180 +3630 9021 0.6760 +3630 9066 0.4190 +3630 9114 0.5290 +3630 9213 0.6030 +3630 9241 0.5900 +3630 9254 0.4410 +3630 9296 0.5090 +3630 9314 0.5420 +3630 9332 0.4840 +3630 9360 0.5150 +3630 9365 0.7260 +3630 9370 0.9610 +3630 9402 0.4630 +3630 9415 0.5090 +3630 9429 0.4960 +3630 9445 0.4410 +3630 9451 0.5970 +3630 9474 0.5170 +3630 9480 0.5330 +3630 9517 0.4470 +3630 9518 0.4600 +3630 9527 0.5400 +3630 9550 0.4990 +3630 9563 0.6540 +3630 9570 0.5200 +3630 9572 0.4790 +3630 9575 0.4600 +3630 9607 0.5730 +3630 9611 0.4160 +3630 9619 0.5150 +3630 9622 0.6250 +3630 9807 0.5380 +3630 9817 0.5020 +3630 9882 0.8550 +3630 9899 0.4880 +3630 9900 0.4650 +3630 9915 0.5550 +3630 9927 0.5280 +3630 9935 0.6270 +3630 9965 0.5890 +3630 9971 0.7740 +3630 10000 0.5460 +3630 10018 0.4760 +3630 10022 0.4080 +3630 10059 0.4460 +3630 10062 0.6080 +3630 10121 0.4080 +3630 10135 0.7310 +3630 10226 0.4090 +3630 10273 0.4100 +3630 10282 0.4310 +3630 10288 0.5480 +3630 10312 0.5630 +3630 10411 0.4750 +3630 10468 0.5130 +3630 10533 0.5410 +3630 10555 0.4630 +3630 10558 0.4490 +3630 10560 0.5360 +3630 10590 0.5630 +3630 10628 0.5940 +3630 10640 0.5480 +3630 10642 0.5350 +3630 10643 0.5450 +3630 10644 0.4720 +3630 10645 0.5050 +3630 10652 0.5340 +3630 10670 0.4150 +3630 10724 0.5400 +3630 10763 0.6140 +3630 10769 0.4280 +3630 10859 0.5190 +3630 10890 0.6110 +3630 10891 0.9300 +3630 10945 0.4410 +3630 10957 0.4290 +3630 10959 0.4230 +3630 10972 0.4320 +3630 10999 0.4770 +3630 11015 0.4060 +3630 11069 0.5710 +3630 11132 0.5420 +3630 11317 0.4650 +3630 11336 0.6950 +3630 11343 0.4470 +3630 22926 0.5980 +3630 22933 0.4840 +3630 22937 0.5720 +3630 22943 0.4560 +3630 22987 0.4940 +3630 23175 0.5200 +3630 23216 0.5980 +3630 23265 0.7200 +3630 23266 0.4240 +3630 23373 0.4060 +3630 23405 0.4420 +3630 23408 0.4090 +3630 23409 0.4060 +3630 23410 0.5820 +3630 23411 0.9100 +3630 23417 0.4160 +3630 23433 0.6310 +3630 23435 0.6070 +3630 23436 0.5650 +3630 23484 0.4330 +3630 23530 0.4240 +3630 23545 0.5650 +3630 23621 0.5130 +3630 23705 0.4210 +3630 25825 0.4830 +3630 25924 0.5560 +3630 25970 0.6810 +3630 26060 0.6980 +3630 26191 0.5430 +3630 26281 0.8170 +3630 26291 0.8130 +3630 26499 0.6020 +3630 26580 0.4020 +3630 27006 0.8310 +3630 27035 0.4430 +3630 27161 0.4050 +3630 27329 0.4740 +3630 28965 0.4720 +3630 28999 0.4220 +3630 29126 0.4740 +3630 29881 0.4300 +3630 29988 0.5400 +3630 30816 0.6350 +3630 50506 0.4460 +3630 50507 0.5940 +3630 50616 0.4200 +3630 50617 0.5380 +3630 50674 0.8600 +3630 50943 0.6120 +3630 50964 0.4470 +3630 51024 0.4380 +3630 51083 0.5780 +3630 51085 0.7240 +3630 51094 0.8200 +3630 51099 0.4870 +3630 51129 0.5580 +3630 51141 0.5550 +3630 51206 0.4240 +3630 51272 0.5010 +3630 51289 0.6840 +3630 51382 0.5280 +3630 51548 0.4930 +3630 51552 0.4830 +3630 51606 0.5760 +3630 51738 0.9830 +3630 51806 0.7640 +3630 53345 0.4850 +3630 53905 0.4320 +3630 54205 0.9520 +3630 54363 0.5420 +3630 54407 0.4050 +3630 54536 0.5500 +3630 54541 0.4670 +3630 54741 0.4750 +3630 54901 0.5830 +3630 55033 0.4100 +3630 55180 0.4050 +3630 55304 0.4320 +3630 55532 0.8540 +3630 55600 0.6040 +3630 55620 0.5810 +3630 55669 0.4070 +3630 55763 0.5570 +3630 55770 0.5790 +3630 55971 0.4520 +3630 56034 0.9250 +3630 56729 0.8860 +3630 57104 0.7290 +3630 57369 0.6580 +3630 57393 0.8390 +3630 57509 0.4830 +3630 57521 0.7640 +3630 57678 0.6020 +3630 57761 0.4230 +3630 57817 0.4770 +3630 57818 0.9100 +3630 59272 0.6160 +3630 59350 0.7140 +3630 60412 0.7030 +3630 63908 0.5170 +3630 63924 0.5180 +3630 63976 0.6050 +3630 64223 0.5070 +3630 64240 0.4120 +3630 64321 0.5760 +3630 64359 0.4700 +3630 64714 0.5230 +3630 64798 0.4500 +3630 65018 0.4180 +3630 79068 0.6110 +3630 79071 0.4730 +3630 79109 0.5080 +3630 79258 0.5170 +3630 79602 0.7350 +3630 79727 0.4440 +3630 79923 0.6130 +3630 80310 0.9180 +3630 80339 0.6190 +3630 80351 0.4700 +3630 80763 0.5340 +3630 80834 0.6710 +3630 80835 0.5250 +3630 81542 0.4220 +3630 81631 0.4780 +3630 81669 0.4470 +3630 83401 0.4210 +3630 83756 0.6700 +3630 84152 0.4180 +3630 84260 0.4160 +3630 84335 0.5710 +3630 84504 0.7110 +3630 84649 0.6040 +3630 84666 0.8610 +3630 84676 0.4540 +3630 84684 0.6860 +3630 84699 0.4150 +3630 84706 0.7260 +3630 89780 0.5480 +3630 90423 0.4990 +3630 91860 0.7710 +3630 92579 0.8680 +3630 94121 0.7790 +3630 114131 0.5580 +3630 114548 0.4690 +3630 114757 0.4170 +3630 114899 0.5440 +3630 114907 0.5950 +3630 115209 0.4460 +3630 116519 0.4810 +3630 117579 0.6910 +3630 121340 0.4160 +3630 122042 0.8630 +3630 126129 0.4900 +3630 126393 0.5450 +3630 127124 0.4990 +3630 130399 0.5320 +3630 132949 0.4180 +3630 133482 0.4930 +3630 133522 0.5710 +3630 136319 0.4040 +3630 137902 0.8170 +3630 139760 0.5240 +3630 140885 0.5630 +3630 145264 0.6170 +3630 146713 0.4450 +3630 149371 0.5710 +3630 151306 0.7410 +3630 152831 0.6190 +3630 154091 0.6850 +3630 155066 0.4990 +3630 163688 0.7640 +3630 169026 0.9120 +3630 169792 0.5550 +3630 200186 0.6810 +3630 200576 0.5640 +3630 201163 0.4030 +3630 203100 0.4830 +3630 222545 0.4520 +3630 222546 0.8820 +3630 245972 0.5430 +3630 245973 0.4990 +3630 246744 0.4720 +3630 252995 0.6660 +3630 253260 0.6690 +3630 255738 0.6170 +3630 256297 0.7560 +3630 257202 0.7160 +3630 266743 0.5470 +3630 284654 0.4350 +3630 338442 0.4460 +3630 338557 0.7440 +3630 339403 0.4520 +3630 346562 0.5100 +3630 375704 0.4480 +3630 376497 0.5100 +3630 389075 0.4220 +3630 389692 0.9360 +3630 404552 0.4770 +3630 405754 0.6240 +3630 440093 0.5810 +3630 440387 0.7930 +3630 440503 0.4670 +3630 440533 0.4190 +3630 440686 0.5980 +3630 493869 0.7250 +3630 619373 0.5260 +3630 653361 0.4870 +3630 653604 0.5980 +3630 723961 0.9160 +3630 728378 0.4940 +3630 729359 0.5690 +3630 100132074 0.6870 +3630 100133941 0.5280 +3630 100506658 0.5220 +3630 102723796 0.5530 +3632 3633 0.8680 +3632 3635 0.6830 +3632 3636 0.5300 +3632 3705 0.9110 +3632 3706 0.9500 +3632 3707 0.9460 +3632 3708 0.4900 +3632 4952 0.6810 +3632 5330 0.9110 +3632 5331 0.9180 +3632 5332 0.9280 +3632 5333 0.9320 +3632 5335 0.9220 +3632 5336 0.9160 +3632 5341 0.4110 +3632 6464 0.4060 +3632 8395 0.4040 +3632 8821 0.9210 +3632 8867 0.4370 +3632 8871 0.5140 +3632 9562 0.9320 +3632 9651 0.7490 +3632 10570 0.4860 +3632 23007 0.6990 +3632 23228 0.4080 +3632 23236 0.9260 +3632 23250 0.4030 +3632 27124 0.9910 +3632 29946 0.4430 +3632 51196 0.9470 +3632 51763 0.9570 +3632 55168 0.4330 +3632 55328 0.4290 +3632 55846 0.4050 +3632 56623 0.6210 +3632 64318 0.4330 +3632 80271 0.9390 +3632 84253 0.6230 +3632 84812 0.9140 +3632 85397 0.5830 +3632 85413 0.4090 +3632 89869 0.9140 +3632 91433 0.5010 +3632 113026 0.9150 +3632 159371 0.4400 +3632 253430 0.9160 +3632 401190 0.4060 +3633 4218 0.6480 +3633 4952 0.9790 +3633 5268 0.4630 +3633 5286 0.9330 +3633 5287 0.9270 +3633 5288 0.9240 +3633 5290 0.7010 +3633 5291 0.7210 +3633 5293 0.6950 +3633 5294 0.6930 +3633 5295 0.6840 +3633 5296 0.6680 +3633 5297 0.7550 +3633 5298 0.7910 +3633 5305 0.9290 +3633 5330 0.7050 +3633 5331 0.6990 +3633 5332 0.6750 +3633 5333 0.7410 +3633 5335 0.6940 +3633 5336 0.6730 +3633 5341 0.4230 +3633 5728 0.9260 +3633 5862 0.4210 +3633 5868 0.5350 +3633 8394 0.9190 +3633 8395 0.9130 +3633 8396 0.9130 +3633 8503 0.7030 +3633 8548 0.4340 +3633 8615 0.4340 +3633 8821 0.9420 +3633 8867 0.9280 +3633 8871 0.9280 +3633 9463 0.4240 +3633 9651 0.6600 +3633 9896 0.4290 +3633 11021 0.4590 +3633 22876 0.9280 +3633 23007 0.6600 +3633 23236 0.6830 +3633 23396 0.9380 +3633 26060 0.6450 +3633 26499 0.4320 +3633 27339 0.5050 +3633 51196 0.6600 +3633 51429 0.4420 +3633 54768 0.4760 +3633 55300 0.7540 +3633 55361 0.7450 +3633 55529 0.9210 +3633 56623 0.9320 +3633 64083 0.4210 +3633 79837 0.9140 +3633 84812 0.6630 +3633 85477 0.5560 +3633 89869 0.6600 +3633 90809 0.9050 +3633 113026 0.6840 +3633 127428 0.4390 +3633 129685 0.7860 +3633 138429 0.9060 +3633 144717 0.9510 +3633 150368 0.8850 +3633 152330 0.4250 +3633 197322 0.4620 +3633 200576 0.4740 +3633 259266 0.5190 +3633 606495 0.4830 +3635 3636 0.9260 +3635 3654 0.4180 +3635 3705 0.4660 +3635 3716 0.6000 +3635 3717 0.6210 +3635 3718 0.6160 +3635 3815 0.4290 +3635 3937 0.7140 +3635 4063 0.5460 +3635 4067 0.9800 +3635 4208 0.5390 +3635 4690 0.4130 +3635 4952 0.5750 +3635 5133 0.5350 +3635 5175 0.9450 +3635 5266 0.5280 +3635 5286 0.9130 +3635 5287 0.9140 +3635 5288 0.9140 +3635 5290 0.9270 +3635 5291 0.9290 +3635 5293 0.9450 +3635 5294 0.9380 +3635 5295 0.9650 +3635 5296 0.9200 +3635 5335 0.4550 +3635 5336 0.8200 +3635 5341 0.5180 +3635 5580 0.4380 +3635 5728 0.9530 +3635 5777 0.9130 +3635 5781 0.8330 +3635 5788 0.4670 +3635 5879 0.5140 +3635 5880 0.4810 +3635 6347 0.4220 +3635 6464 0.9900 +3635 6504 0.6820 +3635 6653 0.6810 +3635 6688 0.7490 +3635 6714 0.9030 +3635 6737 0.4310 +3635 6746 0.4260 +3635 6772 0.6410 +3635 6774 0.7980 +3635 6776 0.5610 +3635 6777 0.5430 +3635 6850 0.5620 +3635 7099 0.4100 +3635 7124 0.4240 +3635 7132 0.4250 +3635 7189 0.4030 +3635 7305 0.9010 +3635 7409 0.5690 +3635 7454 0.4040 +3635 7525 0.5670 +3635 7535 0.6260 +3635 7805 0.5000 +3635 8301 0.6630 +3635 8503 0.9120 +3635 8563 0.5270 +3635 8651 0.6050 +3635 8821 0.9370 +3635 8867 0.5230 +3635 9021 0.4880 +3635 9046 0.7590 +3635 9051 0.4110 +3635 9402 0.6350 +3635 9846 0.8160 +3635 9938 0.4090 +3635 10006 0.4230 +3635 10347 0.6760 +3635 10658 0.6020 +3635 10750 0.5110 +3635 10787 0.4990 +3635 10979 0.6250 +3635 11213 0.7470 +3635 23533 0.4150 +3635 23607 0.8900 +3635 23646 0.4540 +3635 25759 0.4580 +3635 26999 0.4330 +3635 27124 0.6110 +3635 27339 0.5040 +3635 29760 0.4130 +3635 30011 0.6070 +3635 51135 0.5470 +3635 51225 0.6310 +3635 51314 0.7060 +3635 51338 0.4960 +3635 51744 0.7380 +3635 53358 0.5260 +3635 54209 0.7560 +3635 55063 0.6920 +3635 57091 0.7320 +3635 64231 0.6410 +3635 64581 0.8140 +3635 79690 0.4610 +3635 79865 0.5750 +3635 79890 0.6630 +3635 79930 0.8440 +3635 83706 0.5060 +3635 84959 0.6580 +3635 123041 0.6080 +3635 139716 0.5390 +3635 140885 0.6840 +3635 146212 0.4870 +3635 146433 0.5870 +3635 146547 0.4420 +3635 146722 0.6240 +3635 160364 0.6150 +3635 201633 0.8900 +3635 245802 0.4270 +3635 340061 0.4570 +3635 643680 0.5340 +3636 3643 0.5980 +3636 3705 0.5460 +3636 3716 0.5290 +3636 3717 0.5740 +3636 3718 0.5130 +3636 3987 0.4360 +3636 4067 0.7070 +3636 4233 0.5100 +3636 4255 0.4140 +3636 4690 0.4220 +3636 4952 0.5600 +3636 5286 0.9350 +3636 5287 0.9550 +3636 5288 0.9260 +3636 5290 0.9320 +3636 5291 0.9640 +3636 5293 0.9370 +3636 5294 0.9280 +3636 5295 0.9710 +3636 5296 0.9540 +3636 5336 0.8560 +3636 5341 0.5270 +3636 5364 0.5250 +3636 5523 0.5490 +3636 5580 0.5390 +3636 5728 0.9600 +3636 5770 0.5090 +3636 5777 0.5910 +3636 5781 0.8920 +3636 5782 0.4980 +3636 5826 0.5030 +3636 5833 0.4550 +3636 6241 0.4340 +3636 6453 0.7680 +3636 6464 0.9950 +3636 6517 0.5480 +3636 6714 0.9470 +3636 6772 0.5270 +3636 6774 0.7600 +3636 6850 0.5290 +3636 7027 0.4430 +3636 7058 0.4080 +3636 7305 0.4700 +3636 7409 0.5050 +3636 7410 0.6100 +3636 7525 0.8140 +3636 8503 0.9230 +3636 8563 0.8220 +3636 8821 0.9590 +3636 8867 0.5980 +3636 9021 0.4490 +3636 9322 0.6660 +3636 9402 0.8550 +3636 9564 0.8900 +3636 9644 0.4210 +3636 9839 0.4820 +3636 9846 0.6380 +3636 10006 0.5290 +3636 10174 0.4910 +3636 10580 0.5850 +3636 10603 0.4580 +3636 10787 0.4960 +3636 23048 0.7620 +3636 23607 0.7770 +3636 23743 0.4370 +3636 25970 0.5210 +3636 26499 0.6370 +3636 27124 0.5500 +3636 27339 0.5660 +3636 30011 0.6550 +3636 50484 0.7010 +3636 50618 0.6670 +3636 55095 0.4410 +3636 55738 0.4250 +3636 55742 0.4480 +3636 58513 0.4790 +3636 59339 0.4050 +3636 64411 0.7780 +3636 65059 0.8320 +3636 84959 0.7790 +3636 85443 0.4950 +3636 116985 0.6820 +3636 139716 0.5380 +3636 146433 0.4990 +3636 200576 0.4080 +3636 285527 0.5180 +3636 285590 0.5140 +3636 440503 0.4140 +3636 643836 0.4260 +3638 3930 0.5050 +3638 3949 0.4260 +3638 4047 0.6480 +3638 4287 0.4770 +3638 4597 0.4920 +3638 4598 0.6700 +3638 4864 0.5390 +3638 5001 0.5770 +3638 5105 0.5730 +3638 5111 0.5120 +3638 5465 0.5000 +3638 5468 0.5190 +3638 5931 0.4020 +3638 6048 0.4180 +3638 6307 0.7790 +3638 6309 0.6410 +3638 6319 0.6900 +3638 6713 0.7730 +3638 6720 0.9690 +3638 6721 0.9970 +3638 7030 0.4590 +3638 7069 0.4850 +3638 7108 0.4140 +3638 7157 0.5660 +3638 7290 0.4390 +3638 7327 0.4540 +3638 7353 0.4100 +3638 7415 0.9150 +3638 7837 0.4060 +3638 8208 0.7360 +3638 8435 0.4350 +3638 8660 0.6240 +3638 8694 0.4740 +3638 8720 0.5490 +3638 8788 0.5870 +3638 9023 0.4090 +3638 9213 0.4220 +3638 9619 0.4340 +3638 10299 0.4350 +3638 10576 0.5590 +3638 10613 0.4860 +3638 10654 0.6250 +3638 10682 0.4270 +3638 10857 0.9670 +3638 10891 0.4020 +3638 11160 0.8140 +3638 11236 0.8960 +3638 22937 0.9990 +3638 23175 0.6100 +3638 23197 0.8070 +3638 23595 0.5880 +3638 25842 0.4630 +3638 27346 0.4150 +3638 29110 0.5530 +3638 29881 0.5090 +3638 29914 0.4430 +3638 49855 0.4220 +3638 50814 0.7480 +3638 51085 0.7120 +3638 51141 0.9550 +3638 51360 0.5710 +3638 51478 0.7410 +3638 54329 0.6830 +3638 55723 0.4680 +3638 55902 0.5350 +3638 57678 0.5290 +3638 60481 0.4400 +3638 64065 0.4010 +3638 79071 0.5590 +3638 79849 0.4130 +3638 79966 0.4060 +3638 84447 0.5730 +3638 85004 0.4060 +3638 114294 0.4080 +3638 134429 0.5760 +3638 137964 0.4680 +3638 153830 0.7280 +3638 255738 0.4080 +3640 3641 0.9080 +3640 3658 0.4220 +3640 3952 0.4790 +3640 3972 0.5880 +3640 3973 0.7670 +3640 5443 0.5270 +3640 5741 0.4240 +3640 5744 0.4150 +3640 6013 0.9940 +3640 6019 0.9910 +3640 6343 0.4010 +3640 6462 0.4880 +3640 6662 0.4710 +3640 6714 0.4990 +3640 6715 0.4360 +3640 6736 0.4660 +3640 6770 0.7090 +3640 7099 0.4070 +3640 7252 0.4270 +3640 7432 0.4250 +3640 8208 0.4770 +3640 10022 0.9650 +3640 10046 0.4320 +3640 10422 0.4360 +3640 11172 0.7040 +3640 50846 0.5470 +3640 51289 0.9140 +3640 57105 0.4990 +3640 59350 0.9970 +3640 63891 0.5420 +3640 79154 0.4320 +3640 79924 0.4450 +3640 93650 0.4030 +3640 113091 0.4810 +3640 117579 0.9850 +3640 122042 0.9990 +3640 122876 0.4430 +3640 130916 0.4730 +3640 145173 0.6620 +3640 170589 0.4060 +3640 339403 0.9060 +3640 387338 0.4200 +3640 594857 0.4830 +3641 6013 0.9250 +3641 6019 0.9170 +3641 6736 0.4570 +3641 10022 0.6630 +3641 11172 0.9790 +3641 51289 0.5960 +3641 59350 0.5820 +3641 117579 0.7150 +3641 122042 0.5740 +3641 339403 0.5990 +3642 3670 0.5630 +3642 4211 0.4560 +3642 4613 0.6650 +3642 4684 0.4990 +3642 4760 0.9550 +3642 4761 0.4520 +3642 4762 0.6700 +3642 4807 0.5090 +3642 4821 0.6660 +3642 4825 0.5920 +3642 5078 0.6680 +3642 5080 0.6270 +3642 5454 0.4120 +3642 5539 0.5430 +3642 5798 0.9170 +3642 6657 0.4050 +3642 6662 0.4090 +3642 6750 0.4420 +3642 6855 0.6480 +3642 7003 0.4870 +3642 7004 0.4230 +3642 7005 0.4320 +3642 7080 0.4310 +3642 7545 0.4840 +3642 7593 0.4700 +3642 8463 0.4510 +3642 8929 0.5840 +3642 9314 0.4240 +3642 9479 0.8890 +3642 10413 0.4060 +3642 10580 0.8870 +3642 23028 0.9640 +3642 23186 0.8980 +3642 23542 0.5350 +3642 25833 0.4550 +3642 27319 0.4340 +3642 50674 0.9550 +3642 53820 0.5140 +3642 54738 0.5030 +3642 55502 0.4260 +3642 55885 0.4770 +3642 63973 0.5750 +3642 63974 0.5270 +3642 83482 0.4280 +3642 84504 0.5370 +3642 222546 0.6600 +3642 256297 0.4800 +3642 283248 0.5780 +3642 284312 0.4680 +3643 3645 0.9840 +3643 3667 0.9990 +3643 3696 0.4280 +3643 3717 0.7970 +3643 3767 0.4470 +3643 3845 0.4480 +3643 3952 0.7440 +3643 3953 0.4930 +3643 3958 0.4180 +3643 3973 0.4830 +3643 3977 0.4230 +3643 3982 0.4470 +3643 3991 0.4100 +3643 4085 0.6070 +3643 4087 0.7490 +3643 4089 0.5490 +3643 4154 0.5630 +3643 4193 0.5210 +3643 4254 0.9160 +3643 4601 0.4130 +3643 4803 0.7010 +3643 4908 0.6500 +3643 4909 0.6570 +3643 5096 0.4340 +3643 5105 0.4760 +3643 5154 0.6860 +3643 5155 0.7440 +3643 5167 0.5970 +3643 5170 0.4110 +3643 5228 0.6590 +3643 5290 0.9470 +3643 5291 0.9440 +3643 5293 0.9270 +3643 5294 0.4090 +3643 5295 0.9880 +3643 5296 0.8110 +3643 5330 0.6590 +3643 5331 0.6610 +3643 5332 0.7050 +3643 5335 0.7080 +3643 5443 0.6310 +3643 5465 0.5240 +3643 5468 0.5550 +3643 5515 0.4730 +3643 5516 0.4640 +3643 5518 0.4180 +3643 5519 0.4290 +3643 5525 0.4680 +3643 5526 0.4470 +3643 5527 0.4470 +3643 5528 0.4470 +3643 5529 0.4470 +3643 5562 0.4590 +3643 5563 0.4690 +3643 5578 0.4470 +3643 5579 0.9110 +3643 5580 0.5510 +3643 5581 0.9310 +3643 5582 0.4100 +3643 5594 0.6520 +3643 5595 0.4520 +3643 5617 0.4330 +3643 5728 0.5630 +3643 5753 0.4110 +3643 5770 0.9990 +3643 5771 0.4690 +3643 5777 0.5900 +3643 5781 0.9800 +3643 5784 0.5280 +3643 5792 0.9480 +3643 5796 0.4670 +3643 5869 0.4550 +3643 5921 0.6890 +3643 6464 0.9940 +3643 6513 0.4420 +3643 6514 0.7130 +3643 6517 0.8130 +3643 6566 0.5420 +3643 6654 0.7520 +3643 6662 0.4780 +3643 6714 0.7050 +3643 6715 0.4170 +3643 6720 0.6100 +3643 6736 0.4820 +3643 6774 0.4050 +3643 6776 0.4400 +3643 6777 0.5870 +3643 6821 0.4240 +3643 6833 0.4660 +3643 7039 0.6800 +3643 7040 0.5450 +3643 7069 0.6150 +3643 7072 0.4620 +3643 7073 0.4470 +3643 7139 0.5330 +3643 7157 0.6600 +3643 7409 0.5480 +3643 7423 0.6790 +3643 7424 0.6930 +3643 7529 0.4450 +3643 7533 0.4750 +3643 7704 0.4510 +3643 8022 0.5050 +3643 8074 0.6760 +3643 8091 0.4090 +3643 8471 0.9830 +3643 8473 0.9070 +3643 8503 0.8800 +3643 8651 0.9700 +3643 8660 0.9990 +3643 8751 0.4980 +3643 8766 0.4140 +3643 8817 0.8080 +3643 8822 0.8110 +3643 8823 0.8140 +3643 8835 0.9180 +3643 8878 0.7390 +3643 8992 0.4990 +3643 9021 0.9820 +3643 9114 0.4990 +3643 9124 0.4020 +3643 9260 0.4170 +3643 9296 0.5650 +3643 9306 0.4530 +3643 9365 0.9110 +3643 9370 0.5250 +3643 9420 0.5340 +3643 9550 0.5060 +3643 9846 0.9050 +3643 9882 0.4330 +3643 9965 0.6820 +3643 9971 0.5620 +3643 10135 0.5230 +3643 10150 0.4740 +3643 10190 0.9560 +3643 10273 0.4260 +3643 10312 0.5200 +3643 10580 0.4280 +3643 10603 0.9950 +3643 10658 0.6110 +3643 10659 0.4110 +3643 10891 0.4470 +3643 11132 0.5570 +3643 11213 0.4030 +3643 23236 0.6970 +3643 23411 0.4680 +3643 23438 0.4250 +3643 23545 0.5080 +3643 25759 0.9140 +3643 25805 0.4760 +3643 25970 0.6970 +3643 26281 0.8150 +3643 26291 0.7650 +3643 27006 0.8140 +3643 27324 0.4860 +3643 50617 0.5150 +3643 51302 0.4390 +3643 51378 0.6780 +3643 51382 0.5090 +3643 51495 0.5180 +3643 51606 0.5020 +3643 53358 0.9140 +3643 54361 0.4560 +3643 55016 0.5740 +3643 55796 0.4430 +3643 55848 0.4120 +3643 56034 0.6820 +3643 56729 0.5960 +3643 57509 0.5080 +3643 57521 0.4180 +3643 57706 0.6070 +3643 60677 0.4500 +3643 64240 0.4510 +3643 64241 0.4430 +3643 64599 0.4220 +3643 79152 0.4050 +3643 80310 0.6640 +3643 84467 0.6260 +3643 84909 0.4860 +3643 90423 0.5090 +3643 92960 0.4020 +3643 122809 0.9170 +3643 127124 0.5130 +3643 131566 0.4420 +3643 155066 0.4990 +3643 245972 0.4990 +3643 245973 0.5130 +3643 253260 0.4680 +3643 389692 0.5860 +3643 399694 0.9040 +3643 723961 0.9380 +3643 102723796 0.4660 +3645 3667 0.8160 +3645 5154 0.6530 +3645 5155 0.6810 +3645 5290 0.7480 +3645 5291 0.7360 +3645 5293 0.7170 +3645 5295 0.7500 +3645 5296 0.7410 +3645 5515 0.5120 +3645 5770 0.9300 +3645 6654 0.9100 +3645 6655 0.9130 +3645 6662 0.4830 +3645 6736 0.5100 +3645 7039 0.6500 +3645 8074 0.6690 +3645 8471 0.6450 +3645 8503 0.7270 +3645 8544 0.4170 +3645 8660 0.5970 +3645 8817 0.6520 +3645 8822 0.6620 +3645 8823 0.6710 +3645 9965 0.6580 +3645 26281 0.6620 +3645 26291 0.6800 +3645 27006 0.6710 +3645 56034 0.6500 +3645 80310 0.6500 +3645 83439 0.4240 +3645 83874 0.4200 +3645 149499 0.4060 +3646 3692 0.6050 +3646 3845 0.4280 +3646 3921 0.9730 +3646 4141 0.5650 +3646 4176 0.6460 +3646 4609 0.5840 +3646 4670 0.4630 +3646 4673 0.4850 +3646 4676 0.6590 +3646 4686 0.7460 +3646 4736 0.5800 +3646 4809 0.5800 +3646 4869 0.7020 +3646 5204 0.4210 +3646 5682 0.5230 +3646 5684 0.4350 +3646 5685 0.4840 +3646 5686 0.6090 +3646 5687 0.4010 +3646 5694 0.4590 +3646 5695 0.4610 +3646 5700 0.4650 +3646 5701 0.5650 +3646 5704 0.4600 +3646 5705 0.5880 +3646 5706 0.5740 +3646 5707 0.5270 +3646 5708 0.6600 +3646 5709 0.4010 +3646 5713 0.7220 +3646 5714 0.4500 +3646 5717 0.6030 +3646 5718 0.9860 +3646 5719 0.4480 +3646 5796 0.5880 +3646 5976 0.4860 +3646 6059 0.9560 +3646 6122 0.5690 +3646 6123 0.4790 +3646 6124 0.8410 +3646 6125 0.7170 +3646 6128 0.6620 +3646 6129 0.7040 +3646 6130 0.7740 +3646 6132 0.6320 +3646 6133 0.7260 +3646 6135 0.7580 +3646 6136 0.5700 +3646 6137 0.5320 +3646 6138 0.6570 +3646 6139 0.6400 +3646 6141 0.5470 +3646 6142 0.5940 +3646 6143 0.7580 +3646 6144 0.5760 +3646 6146 0.5570 +3646 6147 0.5350 +3646 6152 0.5840 +3646 6154 0.5930 +3646 6155 0.6340 +3646 6156 0.8350 +3646 6157 0.5720 +3646 6158 0.5470 +3646 6159 0.4060 +3646 6160 0.6490 +3646 6164 0.5150 +3646 6165 0.4850 +3646 6169 0.4210 +3646 6170 0.4010 +3646 6175 0.7230 +3646 6181 0.4470 +3646 6183 0.7870 +3646 6187 0.9870 +3646 6188 0.9940 +3646 6189 0.9900 +3646 6191 0.9710 +3646 6192 0.6820 +3646 6193 0.9610 +3646 6194 0.9830 +3646 6201 0.9780 +3646 6202 0.9860 +3646 6203 0.9610 +3646 6204 0.9680 +3646 6205 0.9780 +3646 6206 0.9640 +3646 6207 0.9650 +3646 6208 0.9640 +3646 6209 0.9740 +3646 6210 0.9460 +3646 6217 0.9860 +3646 6218 0.9430 +3646 6222 0.9830 +3646 6223 0.9900 +3646 6224 0.9840 +3646 6227 0.9660 +3646 6228 0.9820 +3646 6229 0.9820 +3646 6230 0.9860 +3646 6231 0.9860 +3646 6232 0.9750 +3646 6233 0.9720 +3646 6234 0.9740 +3646 6235 0.9510 +3646 6414 0.8980 +3646 6950 0.5250 +3646 7178 0.4080 +3646 7203 0.4300 +3646 7458 0.6970 +3646 7916 0.4240 +3646 8562 0.6600 +3646 8565 0.4470 +3646 8569 0.5340 +3646 8661 0.9990 +3646 8662 0.9990 +3646 8663 0.9990 +3646 8664 0.9990 +3646 8665 0.9990 +3646 8666 0.9990 +3646 8667 0.9990 +3646 8668 0.9990 +3646 8669 0.9990 +3646 8672 0.4850 +3646 8894 0.9860 +3646 8924 0.5410 +3646 9045 0.5630 +3646 9086 0.9230 +3646 9232 0.5340 +3646 9255 0.4380 +3646 9349 0.5630 +3646 9669 0.4730 +3646 9732 0.5370 +3646 9775 0.4360 +3646 9858 0.5890 +3646 9861 0.5500 +3646 9987 0.5640 +3646 10056 0.5650 +3646 10146 0.6380 +3646 10200 0.4590 +3646 10209 0.9910 +3646 10213 0.7640 +3646 10236 0.4060 +3646 10289 0.8820 +3646 10399 0.9860 +3646 10412 0.5810 +3646 10480 0.9990 +3646 10492 0.4870 +3646 10527 0.4180 +3646 10557 0.5180 +3646 10574 0.5090 +3646 10575 0.5690 +3646 10576 0.5380 +3646 10605 0.4790 +3646 10617 0.5380 +3646 10694 0.5150 +3646 10900 0.5640 +3646 10920 0.5250 +3646 10980 0.7400 +3646 10987 0.9300 +3646 10988 0.4460 +3646 11224 0.6780 +3646 22948 0.5070 +3646 23204 0.5250 +3646 23521 0.7640 +3646 25873 0.6000 +3646 26019 0.7600 +3646 26986 0.7710 +3646 27335 0.9990 +3646 29789 0.4230 +3646 29978 0.4220 +3646 51065 0.8010 +3646 51068 0.5070 +3646 51073 0.5920 +3646 51081 0.6310 +3646 51116 0.6130 +3646 51138 0.5240 +3646 51149 0.6920 +3646 51187 0.6590 +3646 51319 0.6680 +3646 51386 0.9990 +3646 54505 0.5830 +3646 54543 0.4110 +3646 55173 0.6750 +3646 55272 0.5170 +3646 55286 0.6230 +3646 55316 0.6280 +3646 55601 0.5090 +3646 55651 0.5310 +3646 57470 0.4050 +3646 57559 0.5330 +3646 60313 0.6110 +3646 60678 0.6370 +3646 63931 0.6080 +3646 64960 0.6160 +3646 64963 0.6260 +3646 64969 0.7060 +3646 79184 0.5380 +3646 83940 0.6080 +3646 84870 0.5130 +3646 84954 0.5830 +3646 85377 0.9390 +3646 92935 0.4030 +3646 93487 0.4860 +3646 114803 0.5810 +3646 114987 0.7420 +3646 126402 0.6230 +3646 140032 0.6580 +3646 221421 0.7310 +3646 255308 0.7330 +3646 286187 0.6120 +3646 340419 0.6090 +3646 347487 0.6810 +3646 439996 0.9100 +3646 641776 0.4790 +3646 643909 0.4790 +3646 728524 0.4790 +3646 728689 0.9990 +3646 100287482 0.5890 +3646 100529239 0.6790 +3646 100996746 0.4790 +3646 105180390 0.4790 +3646 105180391 0.4790 +3651 3667 0.4400 +3651 3670 0.7190 +3651 3767 0.7040 +3651 3859 0.4020 +3651 3880 0.4440 +3651 3952 0.5260 +3651 4760 0.8250 +3651 4821 0.6000 +3651 4825 0.8530 +3651 5078 0.4770 +3651 5080 0.8350 +3651 5087 0.9280 +3651 5325 0.4860 +3651 5449 0.5220 +3651 5539 0.7010 +3651 5566 0.9210 +3651 5567 0.9210 +3651 5568 0.9220 +3651 5715 0.4600 +3651 6514 0.7040 +3651 6662 0.5020 +3651 6750 0.7300 +3651 6833 0.6980 +3651 6927 0.8340 +3651 6928 0.8030 +3651 8405 0.9720 +3651 8462 0.6200 +3651 8660 0.5200 +3651 9480 0.4630 +3651 9605 0.6100 +3651 9935 0.6090 +3651 27291 0.4480 +3651 50674 0.8760 +3651 51738 0.4210 +3651 63935 0.6070 +3651 64321 0.4660 +3651 89795 0.6100 +3651 169026 0.4030 +3651 169792 0.4880 +3651 222546 0.7220 +3651 256297 0.8550 +3651 389692 0.9490 +3652 8452 0.6140 +3652 9487 0.4910 +3652 9562 0.8810 +3652 10314 0.4550 +3652 10459 0.5140 +3652 27252 0.5210 +3652 51667 0.4450 +3652 54813 0.7100 +3652 55295 0.5230 +3652 55313 0.4240 +3652 55958 0.4580 +3652 79157 0.4250 +3652 122773 0.4080 +3652 140838 0.5610 +3652 162962 0.5420 +3652 171568 0.4880 +3652 220002 0.5590 +3654 3656 0.9990 +3654 3659 0.6300 +3654 3661 0.8180 +3654 3662 0.4980 +3654 3663 0.8680 +3654 3665 0.9980 +3654 3684 0.5540 +3654 3689 0.5540 +3654 3725 0.6160 +3654 4091 0.5480 +3654 4204 0.9250 +3654 4210 0.4270 +3654 4215 0.4610 +3654 4609 0.4410 +3654 4790 0.9340 +3654 4791 0.5150 +3654 4792 0.9220 +3654 4793 0.6460 +3654 4803 0.5800 +3654 4804 0.9490 +3654 5300 0.4090 +3654 5515 0.9610 +3654 5516 0.9120 +3654 5518 0.9070 +3654 5519 0.9050 +3654 5520 0.9100 +3654 5521 0.9090 +3654 5522 0.9000 +3654 5538 0.4090 +3654 5566 0.4480 +3654 5580 0.4210 +3654 5584 0.5120 +3654 5599 0.4720 +3654 5606 0.6560 +3654 5608 0.5680 +3654 5609 0.4900 +3654 5728 0.5600 +3654 5743 0.4450 +3654 5966 0.6580 +3654 5970 0.7850 +3654 5971 0.5490 +3654 6233 0.6850 +3654 6279 0.4320 +3654 6280 0.5360 +3654 6347 0.5330 +3654 6348 0.4140 +3654 6416 0.5250 +3654 6696 0.5860 +3654 6772 0.7220 +3654 6773 0.4190 +3654 6774 0.6880 +3654 6775 0.5810 +3654 6778 0.5310 +3654 6872 0.4470 +3654 6885 0.9870 +3654 7040 0.4410 +3654 7096 0.8080 +3654 7097 0.9620 +3654 7098 0.9170 +3654 7099 0.9980 +3654 7100 0.9000 +3654 7124 0.8990 +3654 7126 0.4150 +3654 7128 0.6700 +3654 7132 0.6120 +3654 7157 0.4060 +3654 7185 0.5180 +3654 7186 0.9390 +3654 7187 0.9950 +3654 7188 0.5340 +3654 7189 0.9990 +3654 7292 0.5340 +3654 7311 0.5480 +3654 7314 0.5510 +3654 7316 0.5730 +3654 7334 0.9190 +3654 7335 0.7790 +3654 7412 0.4280 +3654 8260 0.4540 +3654 8269 0.5030 +3654 8277 0.4610 +3654 8290 0.4810 +3654 8454 0.4250 +3654 8517 0.9990 +3654 8518 0.4490 +3654 8600 0.4330 +3654 8651 0.8700 +3654 8717 0.5490 +3654 8767 0.6240 +3654 8772 0.5160 +3654 8773 0.4450 +3654 8807 0.5280 +3654 8878 0.9350 +3654 8887 0.4840 +3654 8915 0.5900 +3654 8945 0.4710 +3654 8985 0.4230 +3654 9020 0.5160 +3654 9021 0.4330 +3654 9093 0.4970 +3654 9173 0.9320 +3654 9341 0.4390 +3654 9618 0.5840 +3654 9641 0.7860 +3654 9866 0.4280 +3654 10010 0.5490 +3654 10133 0.6310 +3654 10318 0.5940 +3654 10392 0.7420 +3654 10454 0.9930 +3654 10892 0.4430 +3654 10902 0.4600 +3654 11140 0.4690 +3654 11213 0.9970 +3654 23098 0.6860 +3654 23118 0.9990 +3654 23194 0.4600 +3654 23405 0.4560 +3654 23495 0.4240 +3654 23554 0.4480 +3654 23586 0.6020 +3654 23643 0.8610 +3654 26191 0.4010 +3654 27161 0.5140 +3654 27250 0.4180 +3654 27338 0.5840 +3654 29102 0.4220 +3654 29110 0.7590 +3654 29775 0.4460 +3654 51135 0.9990 +3654 51284 0.9720 +3654 51295 0.4560 +3654 51311 0.8520 +3654 54106 0.9880 +3654 54472 0.9990 +3654 54552 0.4140 +3654 55023 0.4660 +3654 55072 0.5490 +3654 55844 0.9000 +3654 55922 0.4030 +3654 57161 0.9960 +3654 57162 0.9980 +3654 57506 0.9690 +3654 57510 0.4180 +3654 59307 0.9700 +3654 64127 0.7590 +3654 64135 0.5310 +3654 65018 0.4190 +3654 79132 0.4260 +3654 79155 0.4060 +3654 80216 0.5420 +3654 81622 0.6190 +3654 81793 0.5430 +3654 84433 0.4090 +3654 90865 0.9090 +3654 91543 0.7820 +3654 91662 0.5480 +3654 92610 0.8770 +3654 114548 0.5400 +3654 114609 0.9990 +3654 121457 0.4560 +3654 134728 0.6830 +3654 139728 0.5830 +3654 148022 0.9600 +3654 246330 0.9970 +3654 257397 0.9610 +3654 282618 0.4930 +3654 353376 0.8140 +3654 728378 0.4970 +3654 730249 0.4260 +3654 100302736 0.6070 +3655 3672 0.8360 +3655 3673 0.8800 +3655 3674 0.7400 +3655 3675 0.8290 +3655 3676 0.7840 +3655 3678 0.8080 +3655 3679 0.6670 +3655 3680 0.6050 +3655 3681 0.5770 +3655 3682 0.5780 +3655 3683 0.6180 +3655 3684 0.6130 +3655 3685 0.8850 +3655 3687 0.5970 +3655 3688 0.9990 +3655 3689 0.9160 +3655 3690 0.9150 +3655 3691 0.9990 +3655 3693 0.9070 +3655 3694 0.8520 +3655 3695 0.7550 +3655 3696 0.7650 +3655 3717 0.4740 +3655 3815 0.6000 +3655 3845 0.4740 +3655 3851 0.4710 +3655 3852 0.6630 +3655 3855 0.4430 +3655 3856 0.6120 +3655 3858 0.4490 +3655 3861 0.7030 +3655 3866 0.5190 +3655 3875 0.5860 +3655 3880 0.5320 +3655 3897 0.4680 +3655 3908 0.8610 +3655 3909 0.9300 +3655 3910 0.9260 +3655 3911 0.9950 +3655 3912 0.9770 +3655 3913 0.7070 +3655 3914 0.8910 +3655 3915 0.9790 +3655 3918 0.8980 +3655 3921 0.4780 +3655 4067 0.4470 +3655 4070 0.4100 +3655 4072 0.8230 +3655 4153 0.4020 +3655 4162 0.4480 +3655 4233 0.4280 +3655 4311 0.4480 +3655 4323 0.5690 +3655 4609 0.4680 +3655 4684 0.4480 +3655 4804 0.4710 +3655 4811 0.4050 +3655 4851 0.4100 +3655 4853 0.5620 +3655 4855 0.4560 +3655 4907 0.5010 +3655 5156 0.6430 +3655 5175 0.6390 +3655 5241 0.4120 +3655 5339 0.9070 +3655 5420 0.5230 +3655 5460 0.5850 +3655 5578 0.5650 +3655 5649 0.6990 +3655 5728 0.4020 +3655 5747 0.9610 +3655 5788 0.6510 +3655 5829 0.6080 +3655 6382 0.6500 +3655 6591 0.4370 +3655 6615 0.4310 +3655 6657 0.6070 +3655 6659 0.5120 +3655 6662 0.5020 +3655 6696 0.7560 +3655 6714 0.7840 +3655 7037 0.4650 +3655 7040 0.4010 +3655 7057 0.8480 +3655 7058 0.7170 +3655 7059 0.8200 +3655 7060 0.7010 +3655 7070 0.6820 +3655 7094 0.7860 +3655 7106 0.5900 +3655 7130 0.6410 +3655 7143 0.6860 +3655 7148 0.6800 +3655 7157 0.4750 +3655 7408 0.6810 +3655 7412 0.4510 +3655 7414 0.4200 +3655 7431 0.4140 +3655 7448 0.8040 +3655 7450 0.7400 +3655 7704 0.4300 +3655 7852 0.4820 +3655 7871 0.5070 +3655 8515 0.7180 +3655 8516 0.6170 +3655 8549 0.4760 +3655 8600 0.5020 +3655 8829 0.4100 +3655 8842 0.7180 +3655 9240 0.4320 +3655 9314 0.4450 +3655 9429 0.4510 +3655 9564 0.7110 +3655 10077 0.4100 +3655 10319 0.7550 +3655 10544 0.4110 +3655 10580 0.4040 +3655 10631 0.5180 +3655 10755 0.7240 +3655 10763 0.7000 +3655 11093 0.4220 +3655 11117 0.5450 +3655 11167 0.4320 +3655 22798 0.7000 +3655 22801 0.7490 +3655 23143 0.4380 +3655 23555 0.4060 +3655 29780 0.7040 +3655 51314 0.4220 +3655 55612 0.4230 +3655 55742 0.7080 +3655 63923 0.6860 +3655 64098 0.6720 +3655 79812 0.4200 +3655 79923 0.5810 +3655 80213 0.4280 +3655 80317 0.5050 +3655 80781 0.4610 +3655 83660 0.7550 +3655 90952 0.4590 +3655 131873 0.7540 +3655 166647 0.4530 +3655 284217 0.8630 +3655 375790 0.6160 +3655 100133941 0.7650 +3655 100532731 0.4520 +3656 3659 0.4590 +3656 3661 0.6870 +3656 3663 0.4660 +3656 3665 0.5050 +3656 3684 0.4260 +3656 3716 0.4940 +3656 4706 0.4540 +3656 4790 0.8650 +3656 4791 0.4850 +3656 4792 0.8590 +3656 4794 0.4570 +3656 4804 0.9140 +3656 5328 0.4780 +3656 5606 0.5740 +3656 5608 0.5580 +3656 5609 0.4560 +3656 5611 0.4120 +3656 5966 0.4040 +3656 5970 0.6750 +3656 5971 0.5030 +3656 6233 0.5310 +3656 6364 0.4580 +3656 6416 0.5360 +3656 6772 0.6300 +3656 6885 0.6360 +3656 7096 0.5620 +3656 7097 0.7930 +3656 7098 0.8830 +3656 7099 0.9350 +3656 7100 0.6610 +3656 7124 0.5530 +3656 7128 0.7760 +3656 7132 0.4340 +3656 7185 0.6710 +3656 7187 0.7080 +3656 7188 0.5610 +3656 7189 0.9990 +3656 7311 0.5380 +3656 7314 0.5310 +3656 7316 0.5310 +3656 7334 0.8400 +3656 7335 0.7070 +3656 8517 0.7310 +3656 8575 0.4480 +3656 8651 0.4390 +3656 8737 0.5800 +3656 8744 0.4040 +3656 8767 0.6270 +3656 8772 0.6280 +3656 9641 0.6880 +3656 9668 0.4340 +3656 9797 0.4920 +3656 10010 0.4210 +3656 10318 0.4420 +3656 10392 0.7440 +3656 10454 0.9030 +3656 11213 0.9850 +3656 23098 0.7210 +3656 23118 0.9390 +3656 23554 0.4020 +3656 23586 0.4530 +3656 23643 0.7020 +3656 29110 0.6590 +3656 51135 0.9990 +3656 51284 0.8670 +3656 51295 0.4990 +3656 51311 0.5190 +3656 54106 0.8460 +3656 54472 0.8440 +3656 55367 0.4310 +3656 55845 0.4180 +3656 57161 0.6130 +3656 57162 0.6620 +3656 64127 0.6640 +3656 80017 0.4270 +3656 80149 0.4460 +3656 80216 0.5250 +3656 80852 0.4980 +3656 81793 0.4400 +3656 91404 0.5530 +3656 91689 0.4670 +3656 92610 0.5410 +3656 114548 0.5690 +3656 114609 0.9620 +3656 148022 0.8410 +3656 246330 0.5770 +3656 257397 0.7630 +3656 353376 0.8290 +3656 619373 0.4070 +3656 100302736 0.6560 +3658 3842 0.4880 +3658 4191 0.5320 +3658 4193 0.4710 +3658 4720 0.4230 +3658 4723 0.4570 +3658 4728 0.4850 +3658 4729 0.4080 +3658 4738 0.5730 +3658 4891 0.9220 +3658 4953 0.4620 +3658 5037 0.6410 +3658 5093 0.4710 +3658 5100 0.4120 +3658 5469 0.5500 +3658 5583 0.4360 +3658 5599 0.5260 +3658 5601 0.5110 +3658 5685 0.7230 +3658 5832 0.4770 +3658 6059 0.4180 +3658 6122 0.4970 +3658 6123 0.4960 +3658 6124 0.4820 +3658 6132 0.7110 +3658 6133 0.5450 +3658 6135 0.6560 +3658 6139 0.4600 +3658 6150 0.5360 +3658 6183 0.4820 +3658 6187 0.5450 +3658 6193 0.4410 +3658 6203 0.4970 +3658 6205 0.5600 +3658 6207 0.5050 +3658 6208 0.4180 +3658 6217 0.4570 +3658 6222 0.5970 +3658 6224 0.4890 +3658 6228 0.4820 +3658 6233 0.4110 +3658 6235 0.4320 +3658 6389 0.6510 +3658 6390 0.7990 +3658 6391 0.4330 +3658 6500 0.9690 +3658 6520 0.4260 +3658 6541 0.4310 +3658 6556 0.4580 +3658 6622 0.5180 +3658 6648 0.6850 +3658 6649 0.5520 +3658 7013 0.4630 +3658 7036 0.7790 +3658 7037 0.9590 +3658 7054 0.5150 +3658 7157 0.5840 +3658 7311 0.4540 +3658 7314 0.4610 +3658 7316 0.4500 +3658 7386 0.4780 +3658 7428 0.4120 +3658 7709 0.4050 +3658 7818 0.6430 +3658 8031 0.6630 +3658 8454 0.8520 +3658 8458 0.4170 +3658 8517 0.5390 +3658 8556 0.4560 +3658 8624 0.4840 +3658 8801 0.5730 +3658 8802 0.8320 +3658 8803 0.6040 +3658 8864 0.4330 +3658 8886 0.4580 +3658 9054 0.8920 +3658 9085 0.4060 +3658 9349 0.6120 +3658 9391 0.7030 +3658 9425 0.4180 +3658 9553 0.6360 +3658 9694 0.4630 +3658 9801 0.7110 +3658 9843 0.5340 +3658 10144 0.8690 +3658 10162 0.5870 +3658 10273 0.6800 +3658 10455 0.4900 +3658 10539 0.8450 +3658 10616 0.9500 +3658 10845 0.4730 +3658 10964 0.4390 +3658 10988 0.4520 +3658 11019 0.4470 +3658 11222 0.5040 +3658 23244 0.4960 +3658 23405 0.5530 +3658 23479 0.8020 +3658 23516 0.5170 +3658 23521 0.4680 +3658 23657 0.4850 +3658 25820 0.4640 +3658 26046 0.4360 +3658 26234 0.9990 +3658 26275 0.4080 +3658 26589 0.6240 +3658 26872 0.4770 +3658 27247 0.5300 +3658 27338 0.4170 +3658 28982 0.4320 +3658 28998 0.4460 +3658 29093 0.4600 +3658 29102 0.5060 +3658 30061 0.8290 +3658 51021 0.6390 +3658 51023 0.4840 +3658 51069 0.5010 +3658 51073 0.4570 +3658 51081 0.4410 +3658 51149 0.4950 +3658 51179 0.7070 +3658 51218 0.4760 +3658 51263 0.5510 +3658 51264 0.6530 +3658 51312 0.6140 +3658 51592 0.5140 +3658 51647 0.5630 +3658 53916 0.4590 +3658 54205 0.4600 +3658 54363 0.7550 +3658 54511 0.6300 +3658 54977 0.5900 +3658 55072 0.8850 +3658 55168 0.4840 +3658 55173 0.4930 +3658 55206 0.4150 +3658 55240 0.6210 +3658 55268 0.4060 +3658 55272 0.4970 +3658 55316 0.4850 +3658 55526 0.4010 +3658 55554 0.5940 +3658 55611 0.4360 +3658 55847 0.6130 +3658 55862 0.4290 +3658 56922 0.4700 +3658 57128 0.7140 +3658 57129 0.6010 +3658 57817 0.7170 +3658 59341 0.4260 +3658 59343 0.4640 +3658 60488 0.6310 +3658 63875 0.6480 +3658 63931 0.4280 +3658 64210 0.4450 +3658 64399 0.6870 +3658 64428 0.4400 +3658 64432 0.4490 +3658 64960 0.4960 +3658 64963 0.4260 +3658 64965 0.6190 +3658 64968 0.6650 +3658 64969 0.5530 +3658 64975 0.6060 +3658 64976 0.6530 +3658 64978 0.5160 +3658 64979 0.6850 +3658 64981 0.6440 +3658 64983 0.6360 +3658 65080 0.5090 +3658 79587 0.4210 +3658 79901 0.6500 +3658 80221 0.6600 +3658 81669 0.4490 +3658 81689 0.4470 +3658 81858 0.7690 +3658 81894 0.6330 +3658 84191 0.8550 +3658 84545 0.6220 +3658 84883 0.5370 +3658 90268 0.4080 +3658 90525 0.4780 +3658 90624 0.4940 +3658 112812 0.4920 +3658 114781 0.4670 +3658 123228 0.9140 +3658 123688 0.7710 +3658 124359 0.4060 +3658 124995 0.4300 +3658 126402 0.4400 +3658 130752 0.4960 +3658 132949 0.4830 +3658 133522 0.5090 +3658 148738 0.5700 +3658 149478 0.4370 +3658 157310 0.5280 +3658 200205 0.4570 +3658 253175 0.4060 +3658 253943 0.4020 +3658 374291 0.4520 +3658 440498 0.4660 +3658 100526842 0.4600 +3659 3660 0.9820 +3659 3661 0.7180 +3659 3662 0.6110 +3659 3665 0.6060 +3659 3669 0.6880 +3659 3684 0.4890 +3659 3687 0.4580 +3659 3689 0.4040 +3659 3716 0.7890 +3659 3717 0.6680 +3659 3718 0.4550 +3659 3725 0.9190 +3659 3726 0.4410 +3659 3727 0.4240 +3659 3902 0.4400 +3659 3937 0.5470 +3659 4067 0.6410 +3659 4193 0.9700 +3659 4210 0.4120 +3659 4261 0.6370 +3659 4283 0.8180 +3659 4318 0.4070 +3659 4595 0.4970 +3659 4599 0.7660 +3659 4600 0.5980 +3659 4609 0.4890 +3659 4780 0.4010 +3659 4790 0.7090 +3659 4791 0.6820 +3659 4792 0.6810 +3659 4794 0.4710 +3659 4800 0.4510 +3659 4843 0.4520 +3659 4869 0.4170 +3659 4938 0.6640 +3659 4939 0.6510 +3659 4940 0.5520 +3659 5054 0.4860 +3659 5079 0.5410 +3659 5133 0.6420 +3659 5156 0.4340 +3659 5159 0.4490 +3659 5366 0.5800 +3659 5468 0.6050 +3659 5478 0.4600 +3659 5551 0.4320 +3659 5601 0.4780 +3659 5610 0.6600 +3659 5696 0.7250 +3659 5698 0.8750 +3659 5699 0.6900 +3659 5720 0.7070 +3659 5721 0.7550 +3659 5743 0.4850 +3659 5777 0.4140 +3659 5781 0.4410 +3659 5788 0.6000 +3659 5920 0.4630 +3659 5966 0.7130 +3659 5970 0.6510 +3659 5971 0.5890 +3659 5994 0.5010 +3659 6041 0.5430 +3659 6239 0.4900 +3659 6347 0.7860 +3659 6348 0.6820 +3659 6351 0.7040 +3659 6355 0.4070 +3659 6364 0.4220 +3659 6373 0.6150 +3659 6583 0.4780 +3659 6584 0.5190 +3659 6597 0.7300 +3659 6688 0.9740 +3659 6689 0.4930 +3659 6714 0.4660 +3659 6737 0.5070 +3659 6772 0.9990 +3659 6773 0.9610 +3659 6774 0.9000 +3659 6775 0.7250 +3659 6776 0.5510 +3659 6777 0.5120 +3659 6778 0.7430 +3659 6821 0.4270 +3659 6850 0.4170 +3659 6890 0.8210 +3659 6892 0.6260 +3659 7003 0.4290 +3659 7040 0.4380 +3659 7080 0.4920 +3659 7096 0.4680 +3659 7097 0.6150 +3659 7098 0.8090 +3659 7099 0.8180 +3659 7100 0.4320 +3659 7124 0.7510 +3659 7128 0.6340 +3659 7132 0.4550 +3659 7133 0.4060 +3659 7157 0.5190 +3659 7185 0.4070 +3659 7187 0.6010 +3659 7189 0.6440 +3659 7297 0.6190 +3659 7318 0.4250 +3659 7341 0.5650 +3659 7391 0.7410 +3659 7412 0.4070 +3659 7453 0.4770 +3659 7494 0.4960 +3659 7528 0.4010 +3659 7538 0.4160 +3659 7706 0.4500 +3659 7852 0.4160 +3659 8000 0.4460 +3659 8290 0.4160 +3659 8356 0.4190 +3659 8519 0.6270 +3659 8572 0.4140 +3659 8625 0.5340 +3659 8638 0.7250 +3659 8651 0.8210 +3659 8737 0.4300 +3659 8743 0.4700 +3659 8767 0.4610 +3659 8772 0.6220 +3659 8837 0.4340 +3659 8850 0.6150 +3659 8974 0.4140 +3659 9021 0.7890 +3659 9111 0.5060 +3659 9246 0.5080 +3659 9447 0.6750 +3659 9636 0.7400 +3659 9641 0.5900 +3659 9839 0.4520 +3659 9987 0.4250 +3659 10155 0.6300 +3659 10273 0.8650 +3659 10320 0.6060 +3659 10346 0.6820 +3659 10379 0.8940 +3659 10410 0.7130 +3659 10437 0.4100 +3659 10538 0.5460 +3659 10561 0.5310 +3659 10578 0.5150 +3659 10581 0.4550 +3659 10664 0.4070 +3659 10673 0.4540 +3659 10875 0.5490 +3659 10964 0.4660 +3659 11128 0.4040 +3659 11200 0.4980 +3659 11213 0.4070 +3659 11274 0.7180 +3659 23476 0.6270 +3659 23586 0.7540 +3659 24138 0.7000 +3659 25939 0.6970 +3659 27042 0.4770 +3659 27113 0.5080 +3659 29110 0.6710 +3659 29126 0.6740 +3659 30009 0.5570 +3659 50943 0.6270 +3659 51079 0.4450 +3659 51135 0.5470 +3659 51191 0.5920 +3659 51284 0.7930 +3659 51311 0.6030 +3659 54106 0.7010 +3659 54625 0.5480 +3659 54739 0.7870 +3659 55509 0.4340 +3659 55601 0.4430 +3659 56829 0.4070 +3659 56832 0.4420 +3659 57169 0.4220 +3659 57506 0.6340 +3659 64108 0.4770 +3659 64127 0.4430 +3659 64135 0.7860 +3659 64332 0.5770 +3659 64581 0.4180 +3659 79132 0.6300 +3659 79792 0.8510 +3659 80380 0.4910 +3659 80830 0.4360 +3659 81030 0.4230 +3659 83666 0.5870 +3659 84166 0.7780 +3659 87178 0.5830 +3659 91543 0.7180 +3659 94240 0.5470 +3659 114548 0.4430 +3659 114609 0.4280 +3659 114836 0.5300 +3659 115004 0.5950 +3659 115361 0.7400 +3659 115362 0.7970 +3659 116071 0.7300 +3659 129607 0.4630 +3659 147912 0.4350 +3659 148022 0.4840 +3659 151636 0.4430 +3659 163351 0.4400 +3659 163702 0.4700 +3659 219285 0.5180 +3659 282616 0.4560 +3659 282617 0.4480 +3659 282618 0.6910 +3659 338376 0.4010 +3659 340061 0.5040 +3659 440093 0.4160 +3659 440686 0.4160 +3659 653604 0.4260 +3659 730249 0.4290 +3660 3662 0.5340 +3660 3665 0.6060 +3660 3669 0.4120 +3660 3716 0.4420 +3660 3717 0.5700 +3660 3725 0.4130 +3660 3727 0.5730 +3660 4193 0.8400 +3660 4209 0.5070 +3660 4261 0.4290 +3660 4599 0.5110 +3660 4600 0.4190 +3660 4602 0.4060 +3660 4684 0.4850 +3660 4691 0.5840 +3660 4790 0.6020 +3660 4938 0.4530 +3660 4939 0.4290 +3660 5610 0.4130 +3660 5720 0.5170 +3660 5721 0.5420 +3660 5966 0.4670 +3660 5970 0.7520 +3660 5971 0.4410 +3660 6688 0.8340 +3660 6689 0.4640 +3660 6737 0.4220 +3660 6772 0.8210 +3660 6773 0.8670 +3660 6774 0.4820 +3660 6778 0.4020 +3660 7098 0.4280 +3660 7124 0.4100 +3660 7157 0.4410 +3660 7391 0.5740 +3660 7593 0.4110 +3660 8638 0.4090 +3660 8850 0.7060 +3660 9447 0.4480 +3660 9636 0.4840 +3660 10379 0.6670 +3660 10538 0.4340 +3660 10561 0.4180 +3660 10565 0.4330 +3660 10891 0.4110 +3660 11262 0.4680 +3660 23586 0.4980 +3660 23650 0.4040 +3660 24138 0.4300 +3660 25939 0.5990 +3660 26145 0.9580 +3660 27022 0.4370 +3660 29915 0.7050 +3660 51588 0.4990 +3660 51621 0.5160 +3660 55509 0.4490 +3660 57506 0.4320 +3660 64135 0.4850 +3660 64207 0.9270 +3660 79792 0.8240 +3660 91543 0.4720 +3660 221937 0.5140 +3660 359948 0.9830 +3661 3663 0.5000 +3661 3665 0.9990 +3661 3669 0.5460 +3661 3684 0.4520 +3661 3687 0.4780 +3661 3716 0.6590 +3661 3717 0.4650 +3661 3725 0.9980 +3661 3836 0.4340 +3661 3838 0.5420 +3661 3843 0.8730 +3661 4087 0.4660 +3661 4088 0.5590 +3661 4089 0.4270 +3661 4210 0.7520 +3661 4283 0.5200 +3661 4361 0.6720 +3661 4599 0.7800 +3661 4600 0.6400 +3661 4609 0.4810 +3661 4790 0.8810 +3661 4791 0.6330 +3661 4792 0.6860 +3661 4938 0.6530 +3661 4939 0.5900 +3661 4940 0.5340 +3661 5052 0.4810 +3661 5300 0.9670 +3661 5316 0.4270 +3661 5355 0.7010 +3661 5371 0.4770 +3661 5468 0.5720 +3661 5478 0.6210 +3661 5499 0.5190 +3661 5515 0.5830 +3661 5551 0.4150 +3661 5591 0.5880 +3661 5595 0.4860 +3661 5599 0.5730 +3661 5601 0.4410 +3661 5605 0.4110 +3661 5610 0.8410 +3661 5781 0.5390 +3661 5788 0.4230 +3661 5806 0.4530 +3661 5888 0.4860 +3661 5899 0.5630 +3661 5966 0.5130 +3661 5970 0.7570 +3661 5971 0.4920 +3661 5987 0.4380 +3661 6041 0.7070 +3661 6048 0.6410 +3661 6199 0.4280 +3661 6233 0.6680 +3661 6237 0.4430 +3661 6347 0.5820 +3661 6348 0.5050 +3661 6351 0.4320 +3661 6373 0.4240 +3661 6391 0.4010 +3661 6502 0.4300 +3661 6688 0.4100 +3661 6714 0.4500 +3661 6737 0.9850 +3661 6746 0.5090 +3661 6772 0.9140 +3661 6773 0.9300 +3661 6774 0.5950 +3661 6775 0.5160 +3661 6776 0.4680 +3661 6777 0.4790 +3661 6778 0.5550 +3661 6850 0.4620 +3661 6885 0.4950 +3661 6929 0.4620 +3661 7004 0.5130 +3661 7015 0.4620 +3661 7040 0.5380 +3661 7096 0.6230 +3661 7097 0.8760 +3661 7098 0.9780 +3661 7099 0.9470 +3661 7100 0.6090 +3661 7113 0.4340 +3661 7124 0.7450 +3661 7128 0.4220 +3661 7132 0.4860 +3661 7157 0.5290 +3661 7185 0.5720 +3661 7186 0.5550 +3661 7187 0.9700 +3661 7188 0.5460 +3661 7189 0.9080 +3661 7249 0.4700 +3661 7297 0.7460 +3661 7311 0.5320 +3661 7314 0.5570 +3661 7316 0.5950 +3661 7317 0.4310 +3661 7334 0.4290 +3661 7337 0.7160 +3661 7391 0.4010 +3661 7405 0.4570 +3661 7520 0.5470 +3661 7706 0.8670 +3661 7726 0.7410 +3661 7837 0.5030 +3661 8019 0.4940 +3661 8290 0.4360 +3661 8356 0.4320 +3661 8408 0.4820 +3661 8454 0.4500 +3661 8517 0.9610 +3661 8519 0.4570 +3661 8638 0.5620 +3661 8651 0.7160 +3661 8678 0.4600 +3661 8717 0.5050 +3661 8737 0.7800 +3661 8767 0.4710 +3661 8772 0.6640 +3661 8780 0.4300 +3661 8819 0.4590 +3661 8841 0.4630 +3661 8878 0.6880 +3661 8887 0.4090 +3661 9020 0.4300 +3661 9021 0.4590 +3661 9172 0.6940 +3661 9188 0.4020 +3661 9208 0.6620 +3661 9246 0.5900 +3661 9447 0.6730 +3661 9474 0.4570 +3661 9636 0.9920 +3661 9641 0.9990 +3661 9677 0.6130 +3661 9755 0.5170 +3661 9830 0.4510 +3661 9868 0.7850 +3661 9935 0.4110 +3661 10000 0.4710 +3661 10010 0.9500 +3661 10044 0.8930 +3661 10045 0.9210 +3661 10084 0.4040 +3661 10133 0.5900 +3661 10146 0.4090 +3661 10155 0.4150 +3661 10193 0.4480 +3661 10213 0.4350 +3661 10241 0.7040 +3661 10346 0.4140 +3661 10379 0.8030 +3661 10392 0.5750 +3661 10410 0.5180 +3661 10413 0.4160 +3661 10454 0.4630 +3661 10474 0.4900 +3661 10475 0.4950 +3661 10499 0.7430 +3661 10522 0.5130 +3661 10561 0.4580 +3661 10758 0.4040 +3661 10898 0.4010 +3661 10906 0.5250 +3661 11035 0.6550 +3661 11171 0.6860 +3661 11213 0.4550 +3661 11267 0.5070 +3661 11274 0.5950 +3661 11277 0.8160 +3661 22861 0.4540 +3661 22937 0.4550 +3661 22954 0.4910 +3661 23098 0.8200 +3661 23118 0.5130 +3661 23210 0.4100 +3661 23220 0.6370 +3661 23423 0.4360 +3661 23426 0.4490 +3661 23586 0.9900 +3661 23636 0.4670 +3661 23643 0.8050 +3661 23770 0.4620 +3661 24138 0.4110 +3661 25820 0.6740 +3661 25939 0.7590 +3661 26037 0.4640 +3661 27161 0.5090 +3661 29108 0.4140 +3661 29110 0.9990 +3661 29126 0.4470 +3661 30835 0.6360 +3661 50852 0.5740 +3661 50943 0.4210 +3661 51014 0.5070 +3661 51135 0.6740 +3661 51191 0.7550 +3661 51284 0.8860 +3661 51311 0.7300 +3661 51428 0.9130 +3661 51433 0.4010 +3661 51588 0.4560 +3661 54106 0.8950 +3661 54606 0.4800 +3661 54941 0.4890 +3661 55072 0.4110 +3661 55593 0.6870 +3661 55601 0.4200 +3661 55770 0.6020 +3661 56829 0.4290 +3661 56832 0.5310 +3661 56957 0.4110 +3661 57506 0.9980 +3661 58484 0.4320 +3661 59272 0.5470 +3661 60385 0.4680 +3661 60489 0.4170 +3661 64108 0.4320 +3661 64127 0.6200 +3661 64135 0.9720 +3661 64170 0.9360 +3661 64343 0.6190 +3661 64581 0.4140 +3661 65018 0.4910 +3661 79102 0.4160 +3661 79132 0.9040 +3661 79671 0.7160 +3661 79792 0.4840 +3661 80143 0.8030 +3661 80149 0.4590 +3661 80342 0.4100 +3661 80712 0.4100 +3661 81030 0.9890 +3661 81622 0.6170 +3661 81631 0.4720 +3661 81793 0.5080 +3661 81844 0.6160 +3661 84166 0.4660 +3661 84282 0.8030 +3661 85363 0.4910 +3661 89122 0.6790 +3661 90268 0.4550 +3661 91543 0.7400 +3661 114548 0.5910 +3661 114609 0.7740 +3661 115004 0.8920 +3661 136991 0.4560 +3661 137902 0.4960 +3661 147912 0.4460 +3661 147945 0.6560 +3661 148022 0.9930 +3661 163702 0.5730 +3661 170506 0.5110 +3661 197259 0.4100 +3661 197358 0.6550 +3661 220213 0.6750 +3661 221302 0.5090 +3661 257397 0.4200 +3661 282616 0.5900 +3661 282617 0.5760 +3661 282618 0.6940 +3661 338376 0.5220 +3661 340061 0.9940 +3661 347688 0.4300 +3661 353376 0.8970 +3661 400668 0.4690 +3661 440093 0.4360 +3661 440686 0.4360 +3661 653604 0.4450 +3661 100302736 0.7380 +3662 3663 0.5360 +3662 3664 0.4580 +3662 3665 0.6030 +3662 3682 0.6300 +3662 3684 0.6070 +3662 3687 0.6040 +3662 3695 0.4060 +3662 3702 0.5040 +3662 3716 0.4780 +3662 3717 0.4480 +3662 3718 0.4680 +3662 3725 0.8420 +3662 3726 0.7050 +3662 3727 0.6500 +3662 3815 0.4110 +3662 3902 0.5320 +3662 4005 0.4180 +3662 4065 0.4160 +3662 4087 0.6280 +3662 4088 0.4140 +3662 4094 0.6250 +3662 4157 0.5060 +3662 4170 0.6370 +3662 4254 0.5250 +3662 4261 0.5550 +3662 4283 0.4630 +3662 4311 0.6450 +3662 4360 0.5230 +3662 4609 0.7680 +3662 4772 0.5540 +3662 4773 0.7820 +3662 4783 0.4130 +3662 4790 0.7280 +3662 4791 0.4180 +3662 4792 0.4070 +3662 4843 0.5320 +3662 4851 0.4140 +3662 4853 0.5140 +3662 4948 0.6750 +3662 5079 0.9500 +3662 5133 0.5250 +3662 5295 0.4830 +3662 5329 0.4160 +3662 5450 0.6910 +3662 5452 0.4770 +3662 5465 0.5060 +3662 5468 0.5210 +3662 5551 0.4380 +3662 5579 0.4420 +3662 5788 0.7070 +3662 5885 0.6310 +3662 5896 0.4930 +3662 5966 0.6300 +3662 5970 0.4980 +3662 5971 0.5620 +3662 6095 0.4590 +3662 6097 0.7430 +3662 6304 0.4570 +3662 6348 0.4240 +3662 6361 0.4610 +3662 6367 0.4540 +3662 6382 0.8010 +3662 6402 0.5390 +3662 6504 0.6920 +3662 6624 0.4680 +3662 6688 0.9980 +3662 6689 0.9330 +3662 6693 0.4930 +3662 6772 0.8100 +3662 6773 0.7160 +3662 6774 0.9730 +3662 6775 0.5690 +3662 6776 0.6230 +3662 6777 0.5970 +3662 6778 0.9750 +3662 6850 0.5150 +3662 6925 0.4610 +3662 6928 0.4110 +3662 6929 0.7420 +3662 6932 0.5750 +3662 7040 0.4480 +3662 7048 0.4810 +3662 7056 0.4500 +3662 7097 0.4130 +3662 7098 0.4450 +3662 7099 0.6840 +3662 7124 0.6160 +3662 7128 0.4960 +3662 7157 0.5140 +3662 7185 0.4030 +3662 7187 0.4090 +3662 7189 0.9030 +3662 7268 0.5430 +3662 7292 0.4290 +3662 7293 0.4710 +3662 7297 0.4130 +3662 7299 0.5150 +3662 7306 0.4060 +3662 7318 0.4960 +3662 7375 0.6330 +3662 7403 0.4820 +3662 7409 0.4030 +3662 7431 0.4470 +3662 7468 0.4020 +3662 7494 0.8140 +3662 7535 0.5110 +3662 7852 0.5080 +3662 8115 0.4130 +3662 8290 0.4460 +3662 8320 0.5880 +3662 8356 0.4520 +3662 8651 0.5420 +3662 8767 0.6830 +3662 8784 0.6190 +3662 8837 0.5230 +3662 9021 0.6480 +3662 9034 0.5270 +3662 9308 0.4420 +3662 9314 0.6620 +3662 9332 0.4430 +3662 9636 0.5280 +3662 9935 0.4060 +3662 10018 0.4270 +3662 10219 0.5040 +3662 10320 0.7450 +3662 10365 0.4550 +3662 10379 0.5600 +3662 10538 0.9950 +3662 10563 0.4580 +3662 10664 0.4370 +3662 10673 0.5370 +3662 10725 0.4500 +3662 10803 0.4450 +3662 10891 0.8780 +3662 10892 0.4490 +3662 11040 0.4870 +3662 11262 0.4410 +3662 11274 0.4970 +3662 22797 0.4400 +3662 22806 0.7190 +3662 22807 0.5100 +3662 23075 0.6140 +3662 23135 0.5350 +3662 23308 0.4580 +3662 23495 0.5260 +3662 25939 0.5870 +3662 27033 0.4610 +3662 29126 0.5090 +3662 29760 0.5190 +3662 29851 0.6850 +3662 30009 0.7600 +3662 50615 0.6120 +3662 50616 0.5580 +3662 50619 0.8290 +3662 50943 0.8960 +3662 51151 0.7160 +3662 51176 0.5260 +3662 51185 0.6330 +3662 51191 0.4300 +3662 51237 0.5230 +3662 51284 0.5620 +3662 51311 0.4510 +3662 53335 0.6390 +3662 54106 0.5040 +3662 54790 0.5940 +3662 54849 0.4120 +3662 54855 0.4570 +3662 55509 0.7700 +3662 55770 0.4740 +3662 56940 0.6950 +3662 57379 0.6720 +3662 57823 0.6860 +3662 58480 0.4690 +3662 59067 0.4220 +3662 60468 0.8530 +3662 64332 0.4330 +3662 64375 0.4550 +3662 64581 0.4060 +3662 65258 0.6260 +3662 80380 0.5030 +3662 80824 0.4460 +3662 83416 0.4410 +3662 84433 0.5690 +3662 84868 0.4610 +3662 85480 0.4050 +3662 89857 0.4300 +3662 90865 0.4470 +3662 93986 0.4120 +3662 112744 0.5740 +3662 114548 0.5530 +3662 114836 0.4210 +3662 115361 0.4520 +3662 115650 0.4210 +3662 123041 0.7000 +3662 140685 0.6060 +3662 140690 0.4290 +3662 140885 0.5320 +3662 149233 0.5870 +3662 151888 0.5430 +3662 201633 0.4960 +3662 219931 0.6180 +3662 283420 0.5180 +3662 283652 0.6230 +3662 327657 0.4150 +3662 440093 0.4460 +3662 440686 0.4450 +3662 653604 0.4460 +3662 100133941 0.4220 +3662 100271849 0.4770 +3662 100423062 0.5370 +3662 102723407 0.6210 +3663 3684 0.5880 +3663 3687 0.5280 +3663 3716 0.4350 +3663 3725 0.4290 +3663 3836 0.4520 +3663 3899 0.4650 +3663 4067 0.4470 +3663 4283 0.4520 +3663 4318 0.4070 +3663 4360 0.5980 +3663 4599 0.5220 +3663 4689 0.5240 +3663 4790 0.5300 +3663 4792 0.4290 +3663 4938 0.4800 +3663 4939 0.6020 +3663 5366 0.4310 +3663 5468 0.4080 +3663 5610 0.6320 +3663 5743 0.4100 +3663 5788 0.4700 +3663 5966 0.4740 +3663 5970 0.5930 +3663 5971 0.4410 +3663 6347 0.4800 +3663 6348 0.4140 +3663 6351 0.9340 +3663 6367 0.4070 +3663 6667 0.4900 +3663 6688 0.5520 +3663 6689 0.4560 +3663 6737 0.6440 +3663 6772 0.8920 +3663 6773 0.7890 +3663 6774 0.4870 +3663 6775 0.8630 +3663 6776 0.4370 +3663 6777 0.4080 +3663 6778 0.6360 +3663 6850 0.4800 +3663 7040 0.4130 +3663 7096 0.4750 +3663 7097 0.5960 +3663 7098 0.6360 +3663 7099 0.6740 +3663 7100 0.4490 +3663 7124 0.7350 +3663 7128 0.8070 +3663 7185 0.4580 +3663 7187 0.6730 +3663 7189 0.9990 +3663 7292 0.4870 +3663 7297 0.8340 +3663 7332 0.4020 +3663 8638 0.5810 +3663 8651 0.5990 +3663 8718 0.5920 +3663 8764 0.4780 +3663 9034 0.5790 +3663 9332 0.5550 +3663 9516 0.4320 +3663 9560 0.9070 +3663 9636 0.5170 +3663 9641 0.5730 +3663 9966 0.5140 +3663 10045 0.5910 +3663 10318 0.7700 +3663 10379 0.6230 +3663 10673 0.4920 +3663 11213 0.4730 +3663 11326 0.5630 +3663 22806 0.4040 +3663 22861 0.5880 +3663 22995 0.5750 +3663 23534 0.6840 +3663 23569 0.5400 +3663 23586 0.6290 +3663 23601 0.4190 +3663 25833 0.4020 +3663 25939 0.6260 +3663 26191 0.8030 +3663 29110 0.6230 +3663 30009 0.4540 +3663 50943 0.4440 +3663 51135 0.7120 +3663 51284 0.7220 +3663 51311 0.7470 +3663 51338 0.6110 +3663 54106 0.6400 +3663 54899 0.6670 +3663 55024 0.7590 +3663 55054 0.4490 +3663 55509 0.4150 +3663 55801 0.4140 +3663 57162 0.4470 +3663 57506 0.7240 +3663 57661 0.6480 +3663 57684 0.4280 +3663 57705 0.4320 +3663 64127 0.5470 +3663 64135 0.7800 +3663 64170 0.4320 +3663 64581 0.4350 +3663 79132 0.5100 +3663 81622 0.4770 +3663 83648 0.5830 +3663 89870 0.4130 +3663 91543 0.4150 +3663 114609 0.4380 +3663 115004 0.4500 +3663 121260 0.5950 +3663 148022 0.4940 +3663 149233 0.4170 +3663 167826 0.5320 +3663 282618 0.4050 +3663 283337 0.4250 +3663 340061 0.4640 +3664 3714 0.6960 +3664 4487 0.8170 +3664 4488 0.4480 +3664 4524 0.4060 +3664 4627 0.4310 +3664 5017 0.6800 +3664 5075 0.4360 +3664 5081 0.4230 +3664 5083 0.7530 +3664 5087 0.5140 +3664 5089 0.5160 +3664 5268 0.6320 +3664 5652 0.5440 +3664 5818 0.7640 +3664 6337 0.4700 +3664 6575 0.5220 +3664 6772 0.6230 +3664 6773 0.6400 +3664 7039 0.6900 +3664 7043 0.5320 +3664 7472 0.4300 +3664 7474 0.5210 +3664 7480 0.4160 +3664 7481 0.4350 +3664 7484 0.4350 +3664 7753 0.4240 +3664 8626 0.5670 +3664 9411 0.6400 +3664 9423 0.5120 +3664 9935 0.8060 +3664 10379 0.5860 +3664 11023 0.7910 +3664 23314 0.5720 +3664 23328 0.4350 +3664 23499 0.4520 +3664 25939 0.5160 +3664 27042 0.7230 +3664 29841 0.4210 +3664 50945 0.6200 +3664 54101 0.7800 +3664 54845 0.5190 +3664 55351 0.4750 +3664 55363 0.4080 +3664 56034 0.5780 +3664 57111 0.4330 +3664 57506 0.4010 +3664 57822 0.8280 +3664 79056 0.4410 +3664 79977 0.4210 +3664 80326 0.4780 +3664 83716 0.5230 +3664 84128 0.4260 +3664 84830 0.4190 +3664 126695 0.5450 +3664 128178 0.4860 +3664 132884 0.4570 +3664 283078 0.4170 +3664 347853 0.6530 +3665 3669 0.8230 +3665 3684 0.5390 +3665 3687 0.5600 +3665 3700 0.4740 +3665 3716 0.6210 +3665 3717 0.4620 +3665 3725 0.9890 +3665 3965 0.4850 +3665 4061 0.6140 +3665 4088 0.8100 +3665 4094 0.5000 +3665 4210 0.4270 +3665 4261 0.4110 +3665 4283 0.5830 +3665 4599 0.9450 +3665 4600 0.8800 +3665 4790 0.8530 +3665 4791 0.4470 +3665 4792 0.7160 +3665 4938 0.9590 +3665 4939 0.9540 +3665 4940 0.9080 +3665 5359 0.6230 +3665 5366 0.4480 +3665 5371 0.4870 +3665 5478 0.4190 +3665 5610 0.8850 +3665 5696 0.4750 +3665 5698 0.5220 +3665 5781 0.4740 +3665 5788 0.4640 +3665 5966 0.4700 +3665 5970 0.7100 +3665 5971 0.5310 +3665 6041 0.6560 +3665 6347 0.6200 +3665 6348 0.5250 +3665 6351 0.5120 +3665 6355 0.4610 +3665 6373 0.6050 +3665 6614 0.5270 +3665 6672 0.6730 +3665 6688 0.4590 +3665 6689 0.8480 +3665 6696 0.9250 +3665 6737 0.8220 +3665 6772 0.9690 +3665 6773 0.9750 +3665 6774 0.7000 +3665 6775 0.5340 +3665 6778 0.4160 +3665 6885 0.4060 +3665 6890 0.4700 +3665 7050 0.4450 +3665 7096 0.7500 +3665 7097 0.7840 +3665 7098 0.9500 +3665 7099 0.8980 +3665 7100 0.5760 +3665 7124 0.7020 +3665 7128 0.6240 +3665 7157 0.6710 +3665 7186 0.5940 +3665 7187 0.9930 +3665 7188 0.4870 +3665 7189 0.9990 +3665 7297 0.6430 +3665 7305 0.5040 +3665 7318 0.5460 +3665 7334 0.6470 +3665 7335 0.6190 +3665 7706 0.8900 +3665 8517 0.9530 +3665 8519 0.7620 +3665 8554 0.4890 +3665 8638 0.9130 +3665 8651 0.7310 +3665 8717 0.4210 +3665 8737 0.8130 +3665 8743 0.5070 +3665 8767 0.4650 +3665 8772 0.5880 +3665 9021 0.7680 +3665 9111 0.7030 +3665 9172 0.6300 +3665 9246 0.6630 +3665 9439 0.8220 +3665 9447 0.6020 +3665 9636 0.9730 +3665 9641 0.9940 +3665 9830 0.4100 +3665 9935 0.4690 +3665 9997 0.4370 +3665 10010 0.8730 +3665 10044 0.4060 +3665 10045 0.7030 +3665 10155 0.5020 +3665 10346 0.6230 +3665 10379 0.9000 +3665 10392 0.4930 +3665 10410 0.7150 +3665 10437 0.4460 +3665 10561 0.9190 +3665 10581 0.5580 +3665 10616 0.4180 +3665 10673 0.5320 +3665 10964 0.8970 +3665 11213 0.4880 +3665 11274 0.9360 +3665 11277 0.5300 +3665 23098 0.6600 +3665 23118 0.4140 +3665 23547 0.4790 +3665 23586 0.9900 +3665 23643 0.7130 +3665 24138 0.8610 +3665 25780 0.4260 +3665 25939 0.8140 +3665 27143 0.5620 +3665 29108 0.4060 +3665 29110 0.9920 +3665 29126 0.4340 +3665 30009 0.4050 +3665 50852 0.4820 +3665 50943 0.6140 +3665 51135 0.9960 +3665 51191 0.7500 +3665 51284 0.9600 +3665 51311 0.8270 +3665 51428 0.5260 +3665 51588 0.4180 +3665 54106 0.9690 +3665 54625 0.6690 +3665 54739 0.9060 +3665 54809 0.4610 +3665 55008 0.6980 +3665 55072 0.5260 +3665 55337 0.5470 +3665 55593 0.4950 +3665 55601 0.7450 +3665 56829 0.4730 +3665 56832 0.5300 +3665 57169 0.5590 +3665 57506 0.9580 +3665 57661 0.4370 +3665 59272 0.4430 +3665 60489 0.4030 +3665 64108 0.8130 +3665 64127 0.5670 +3665 64135 0.9740 +3665 64170 0.4160 +3665 64343 0.5360 +3665 64581 0.4180 +3665 64761 0.6710 +3665 79132 0.9090 +3665 79671 0.6090 +3665 79792 0.6300 +3665 80143 0.5740 +3665 81030 0.9770 +3665 81622 0.6610 +3665 81793 0.4150 +3665 81844 0.4460 +3665 83666 0.7740 +3665 84166 0.5160 +3665 84282 0.7120 +3665 84875 0.4710 +3665 85363 0.5510 +3665 85441 0.5960 +3665 89122 0.6090 +3665 91543 0.9150 +3665 94240 0.5590 +3665 114548 0.5030 +3665 114609 0.6110 +3665 115004 0.7110 +3665 115361 0.6870 +3665 115362 0.5420 +3665 116071 0.4430 +3665 129607 0.8080 +3665 148022 0.9810 +3665 151636 0.6030 +3665 163351 0.5290 +3665 163702 0.5740 +3665 165631 0.5070 +3665 170482 0.5210 +3665 170506 0.8440 +3665 219285 0.5270 +3665 282616 0.6160 +3665 282617 0.5850 +3665 282618 0.7820 +3665 338376 0.5320 +3665 340061 0.6310 +3665 353376 0.7200 +3665 439996 0.5280 +3665 730249 0.5640 +3667 3690 0.4940 +3667 3716 0.9330 +3667 3717 0.9960 +3667 3718 0.6890 +3667 3725 0.7010 +3667 3767 0.5100 +3667 3784 0.4270 +3667 3791 0.7430 +3667 3799 0.5290 +3667 3815 0.8410 +3667 3831 0.5440 +3667 3845 0.6890 +3667 3921 0.4220 +3667 3952 0.9630 +3667 3953 0.7820 +3667 3958 0.4800 +3667 3991 0.5480 +3667 4008 0.5370 +3667 4023 0.6670 +3667 4082 0.4880 +3667 4088 0.4540 +3667 4160 0.4050 +3667 4192 0.5600 +3667 4233 0.8620 +3667 4303 0.4630 +3667 4478 0.5660 +3667 4544 0.4800 +3667 4609 0.6670 +3667 4644 0.4150 +3667 4690 0.7170 +3667 4691 0.4950 +3667 4790 0.4820 +3667 4792 0.4920 +3667 4803 0.6450 +3667 4804 0.7020 +3667 4846 0.5610 +3667 4869 0.8480 +3667 4893 0.6260 +3667 4908 0.5620 +3667 4909 0.4090 +3667 4914 0.9710 +3667 4915 0.9740 +3667 5054 0.4570 +3667 5105 0.5370 +3667 5106 0.5830 +3667 5156 0.7310 +3667 5159 0.8330 +3667 5164 0.4360 +3667 5166 0.6700 +3667 5170 0.7070 +3667 5289 0.7800 +3667 5290 0.9990 +3667 5291 0.9910 +3667 5293 0.9430 +3667 5294 0.9480 +3667 5295 0.9990 +3667 5296 0.9900 +3667 5341 0.7280 +3667 5346 0.4790 +3667 5443 0.6400 +3667 5465 0.6630 +3667 5467 0.4810 +3667 5468 0.7260 +3667 5495 0.5810 +3667 5566 0.4640 +3667 5567 0.4640 +3667 5568 0.4650 +3667 5573 0.5370 +3667 5575 0.4140 +3667 5577 0.4370 +3667 5578 0.6480 +3667 5579 0.9320 +3667 5580 0.9620 +3667 5581 0.9260 +3667 5588 0.9340 +3667 5590 0.9550 +3667 5594 0.6500 +3667 5595 0.8330 +3667 5599 0.9860 +3667 5601 0.9360 +3667 5604 0.4670 +3667 5610 0.9660 +3667 5617 0.7890 +3667 5618 0.7470 +3667 5728 0.7920 +3667 5747 0.5090 +3667 5764 0.5840 +3667 5770 0.9950 +3667 5781 0.9990 +3667 5792 0.9450 +3667 5829 0.5820 +3667 5888 0.8780 +3667 5894 0.4040 +3667 5903 0.5530 +3667 5921 0.6430 +3667 5950 0.4060 +3667 5972 0.4490 +3667 5979 0.4730 +3667 6009 0.6240 +3667 6194 0.5440 +3667 6195 0.6750 +3667 6198 0.9940 +3667 6199 0.9860 +3667 6238 0.5370 +3667 6319 0.4460 +3667 6347 0.5070 +3667 6387 0.4550 +3667 6446 0.6930 +3667 6464 0.9910 +3667 6476 0.4330 +3667 6513 0.6650 +3667 6514 0.6630 +3667 6515 0.4460 +3667 6517 0.9400 +3667 6615 0.5280 +3667 6654 0.9410 +3667 6655 0.8760 +3667 6714 0.9770 +3667 6720 0.7060 +3667 6721 0.4420 +3667 6774 0.7340 +3667 6776 0.6190 +3667 6777 0.6220 +3667 6794 0.5560 +3667 6801 0.4080 +3667 6833 0.4010 +3667 6934 0.5850 +3667 7010 0.7200 +3667 7039 0.5230 +3667 7052 0.4260 +3667 7054 0.4600 +3667 7099 0.5880 +3667 7124 0.6470 +3667 7145 0.4980 +3667 7157 0.7020 +3667 7170 0.5470 +3667 7171 0.5240 +3667 7175 0.5380 +3667 7248 0.5600 +3667 7249 0.6770 +3667 7343 0.8550 +3667 7350 0.5620 +3667 7351 0.5250 +3667 7352 0.4570 +3667 7414 0.6030 +3667 7494 0.4430 +3667 7516 0.4800 +3667 7525 0.4130 +3667 7529 0.7900 +3667 7531 0.8830 +3667 7532 0.4200 +3667 7533 0.6010 +3667 7534 0.9300 +3667 7837 0.5670 +3667 7874 0.4640 +3667 8440 0.8730 +3667 8445 0.4510 +3667 8452 0.4110 +3667 8471 0.9730 +3667 8473 0.9190 +3667 8496 0.5040 +3667 8503 0.9970 +3667 8517 0.9140 +3667 8522 0.4340 +3667 8544 0.5350 +3667 8651 0.9830 +3667 8660 0.9970 +3667 8678 0.9210 +3667 8694 0.4360 +3667 8817 0.5280 +3667 8822 0.5270 +3667 8823 0.5270 +3667 8826 0.4840 +3667 8835 0.9600 +3667 8874 0.5080 +3667 8878 0.6320 +3667 8907 0.4850 +3667 8972 0.4320 +3667 9021 0.9850 +3667 9365 0.9310 +3667 9370 0.7340 +3667 9451 0.6910 +3667 9479 0.4770 +3667 9648 0.5080 +3667 9882 0.7300 +3667 10000 0.5410 +3667 10135 0.4160 +3667 10342 0.5220 +3667 10603 0.8630 +3667 10628 0.4080 +3667 10644 0.6510 +3667 10657 0.7560 +3667 10818 0.6850 +3667 10888 0.9000 +3667 10891 0.6670 +3667 11132 0.4850 +3667 11322 0.4160 +3667 22837 0.4010 +3667 22872 0.5070 +3667 22926 0.4270 +3667 23175 0.6360 +3667 23216 0.4160 +3667 23411 0.8230 +3667 23533 0.9240 +3667 23542 0.4330 +3667 23552 0.4170 +3667 25970 0.8810 +3667 26228 0.4380 +3667 26259 0.8250 +3667 26281 0.5260 +3667 26291 0.4820 +3667 26499 0.7300 +3667 27006 0.5260 +3667 27161 0.4490 +3667 27436 0.5930 +3667 30837 0.5640 +3667 30849 0.5720 +3667 50507 0.4150 +3667 51085 0.4730 +3667 51094 0.5150 +3667 51435 0.4850 +3667 51684 0.4010 +3667 51725 0.5600 +3667 51806 0.6520 +3667 53335 0.5720 +3667 53358 0.5050 +3667 54106 0.7410 +3667 54776 0.4640 +3667 54901 0.5070 +3667 55022 0.4950 +3667 55816 0.4770 +3667 56729 0.6000 +3667 57104 0.5060 +3667 57448 0.5450 +3667 57521 0.8550 +3667 57818 0.6300 +3667 64223 0.5070 +3667 64798 0.5010 +3667 79068 0.4800 +3667 79109 0.5150 +3667 79602 0.4890 +3667 80304 0.5010 +3667 80318 0.4950 +3667 84335 0.6100 +3667 84666 0.5830 +3667 91860 0.6530 +3667 92579 0.6290 +3667 114907 0.4800 +3667 122809 0.9320 +3667 131450 0.4690 +3667 136259 0.4130 +3667 137902 0.5520 +3667 140885 0.5080 +3667 146850 0.9030 +3667 150572 0.4070 +3667 163688 0.6530 +3667 169026 0.4450 +3667 253260 0.7770 +3667 257202 0.4130 +3667 389692 0.4570 +3667 493829 0.8020 +3667 493869 0.4680 +3667 102723796 0.6280 +3669 4283 0.4330 +3669 4599 0.8020 +3669 4600 0.7480 +3669 4938 0.7670 +3669 4939 0.7720 +3669 4940 0.6530 +3669 5111 0.6650 +3669 5394 0.4190 +3669 5610 0.6620 +3669 5696 0.4200 +3669 5698 0.5400 +3669 6041 0.6230 +3669 6373 0.4460 +3669 6672 0.7090 +3669 6772 0.8320 +3669 6773 0.7910 +3669 6890 0.4270 +3669 7098 0.4310 +3669 7157 0.4550 +3669 7318 0.5520 +3669 7341 0.4780 +3669 7706 0.4350 +3669 8519 0.7250 +3669 8638 0.7940 +3669 8833 0.4390 +3669 9191 0.5590 +3669 9235 0.4190 +3669 9246 0.5180 +3669 9636 0.8930 +3669 10241 0.7260 +3669 10346 0.5270 +3669 10379 0.8370 +3669 10410 0.6410 +3669 10561 0.6600 +3669 10581 0.5950 +3669 10964 0.6010 +3669 11262 0.5630 +3669 11274 0.6420 +3669 23586 0.7170 +3669 24138 0.5450 +3669 25939 0.6630 +3669 29110 0.4020 +3669 30836 0.4420 +3669 51191 0.6130 +3669 51284 0.4170 +3669 51388 0.4200 +3669 51602 0.4210 +3669 54739 0.4850 +3669 55008 0.5040 +3669 55272 0.4060 +3669 55337 0.5410 +3669 55601 0.4940 +3669 56829 0.4740 +3669 57062 0.4420 +3669 57136 0.4170 +3669 57506 0.4590 +3669 57696 0.4240 +3669 64108 0.5300 +3669 64135 0.7670 +3669 79132 0.5670 +3669 85441 0.6280 +3669 87178 0.4420 +3669 91543 0.7800 +3669 92856 0.4010 +3669 115361 0.4640 +3669 115362 0.5320 +3669 148022 0.4130 +3669 255967 0.5870 +3670 3791 0.5500 +3670 3815 0.6170 +3670 4009 0.4170 +3670 4208 0.7170 +3670 4211 0.4200 +3670 4212 0.5230 +3670 4487 0.5520 +3670 4617 0.4280 +3670 4624 0.5720 +3670 4633 0.6090 +3670 4654 0.5130 +3670 4656 0.4610 +3670 4741 0.4100 +3670 4744 0.4180 +3670 4760 0.8300 +3670 4761 0.4090 +3670 4762 0.7280 +3670 4807 0.4250 +3670 4808 0.4260 +3670 4821 0.8810 +3670 4825 0.8770 +3670 4878 0.4130 +3670 4914 0.4180 +3670 4990 0.4160 +3670 5013 0.4350 +3670 5015 0.6310 +3670 5076 0.6480 +3670 5077 0.5840 +3670 5078 0.8360 +3670 5080 0.8910 +3670 5081 0.5640 +3670 5087 0.5800 +3670 5094 0.4970 +3670 5126 0.4310 +3670 5156 0.4900 +3670 5175 0.4540 +3670 5307 0.4830 +3670 5308 0.5910 +3670 5453 0.4610 +3670 5454 0.4950 +3670 5456 0.4600 +3670 5457 0.7560 +3670 5458 0.9010 +3670 5459 0.5710 +3670 5460 0.6050 +3670 5539 0.5140 +3670 5629 0.4800 +3670 5816 0.4250 +3670 5862 0.5540 +3670 5957 0.4390 +3670 6091 0.6160 +3670 6092 0.6600 +3670 6096 0.4480 +3670 6469 0.7030 +3670 6474 0.6270 +3670 6492 0.4270 +3670 6495 0.4580 +3670 6496 0.5960 +3670 6514 0.5010 +3670 6572 0.5190 +3670 6604 0.4890 +3670 6608 0.4480 +3670 6656 0.5490 +3670 6657 0.7740 +3670 6662 0.5350 +3670 6663 0.5730 +3670 6664 0.4780 +3670 6722 0.4220 +3670 6750 0.7280 +3670 6774 0.5850 +3670 6855 0.4150 +3670 6899 0.7150 +3670 6900 0.4170 +3670 6909 0.7210 +3670 6910 0.7810 +3670 6911 0.4410 +3670 6926 0.6290 +3670 6928 0.5440 +3670 6943 0.4260 +3670 7025 0.7230 +3670 7026 0.4240 +3670 7054 0.4440 +3670 7070 0.4750 +3670 7080 0.6010 +3670 7137 0.4180 +3670 7139 0.6880 +3670 7252 0.4400 +3670 7471 0.4150 +3670 7474 0.4080 +3670 7481 0.4510 +3670 7490 0.5180 +3670 7545 0.4030 +3670 7546 0.5380 +3670 7799 0.4560 +3670 7849 0.4430 +3670 8022 0.9980 +3670 8048 0.4450 +3670 8153 0.4240 +3670 8290 0.4320 +3670 8320 0.4520 +3670 8356 0.4260 +3670 8549 0.4750 +3670 8817 0.4670 +3670 8822 0.4260 +3670 8823 0.4320 +3670 8850 0.4820 +3670 8854 0.5190 +3670 8861 0.9980 +3670 8928 0.4130 +3670 8929 0.7730 +3670 9079 0.9650 +3670 9096 0.7070 +3670 9314 0.4730 +3670 9353 0.6490 +3670 9464 0.7820 +3670 9480 0.4450 +3670 9496 0.4210 +3670 9589 0.4350 +3670 9935 0.6510 +3670 10021 0.6300 +3670 10215 0.8170 +3670 10381 0.4750 +3670 10398 0.4380 +3670 10716 0.4780 +3670 10763 0.5710 +3670 22943 0.4320 +3670 23040 0.4570 +3670 23316 0.4130 +3670 23414 0.4200 +3670 23635 0.9040 +3670 25805 0.4410 +3670 26281 0.4410 +3670 27006 0.4460 +3670 27022 0.4280 +3670 27319 0.5120 +3670 30012 0.5300 +3670 30813 0.6050 +3670 30819 0.4020 +3670 50674 0.8960 +3670 50805 0.5460 +3670 51132 0.5780 +3670 51176 0.4170 +3670 54434 0.5120 +3670 54857 0.4120 +3670 55897 0.5590 +3670 56033 0.5130 +3670 56254 0.4170 +3670 56751 0.4220 +3670 57030 0.4140 +3670 57057 0.7190 +3670 57084 0.4060 +3670 58158 0.7710 +3670 58498 0.6040 +3670 63973 0.8970 +3670 64321 0.5270 +3670 64919 0.4350 +3670 79190 0.5470 +3670 79191 0.5400 +3670 79192 0.4410 +3670 79923 0.5820 +3670 80012 0.4020 +3670 80854 0.4940 +3670 81544 0.5870 +3670 83881 0.4880 +3670 84504 0.8700 +3670 84858 0.5730 +3670 89780 0.4440 +3670 89884 0.9830 +3670 93649 0.4640 +3670 93986 0.4260 +3670 118472 0.6880 +3670 120237 0.5260 +3670 121643 0.4990 +3670 137970 0.4130 +3670 140628 0.4500 +3670 145873 0.4300 +3670 146713 0.4750 +3670 153572 0.4580 +3670 167410 0.4290 +3670 170463 0.8670 +3670 170825 0.5100 +3670 220202 0.6600 +3670 222546 0.5500 +3670 256297 0.7080 +3670 338917 0.7120 +3670 343472 0.5520 +3670 344191 0.4910 +3670 347853 0.4910 +3670 389692 0.5730 +3670 431707 0.5710 +3670 440093 0.4320 +3670 440686 0.4320 +3670 653604 0.4320 +3671 4060 0.4600 +3671 4239 0.5710 +3671 4316 0.4230 +3671 5159 0.4400 +3671 7075 0.4200 +3671 9960 0.4070 +3671 10631 0.5130 +3671 11197 0.4070 +3671 22801 0.5290 +3671 22859 0.5150 +3671 23026 0.5350 +3671 23266 0.5170 +3671 23284 0.5140 +3671 25903 0.4320 +3671 51050 0.4170 +3671 54587 0.4470 +3671 55631 0.5150 +3671 64094 0.5340 +3671 84083 0.4150 +3671 90993 0.4080 +3671 92170 0.4080 +3671 127435 0.5100 +3671 151887 0.4070 +3671 170690 0.4030 +3671 347688 0.5820 +3672 3673 0.9690 +3672 3674 0.5940 +3672 3675 0.9610 +3672 3676 0.9480 +3672 3678 0.9470 +3672 3679 0.6830 +3672 3680 0.6270 +3672 3681 0.5810 +3672 3682 0.6740 +3672 3683 0.9140 +3672 3684 0.6070 +3672 3685 0.9370 +3672 3687 0.7530 +3672 3688 0.9990 +3672 3689 0.9720 +3672 3690 0.9820 +3672 3691 0.9220 +3672 3693 0.9760 +3672 3694 0.9700 +3672 3695 0.9510 +3672 3696 0.9630 +3672 3732 0.4370 +3672 3821 0.5220 +3672 3822 0.4750 +3672 3824 0.4490 +3672 3880 0.4160 +3672 3908 0.8490 +3672 3909 0.7460 +3672 3910 0.8090 +3672 3911 0.8280 +3672 3912 0.8560 +3672 3913 0.7250 +3672 3914 0.7340 +3672 3915 0.7960 +3672 3916 0.4010 +3672 3918 0.7180 +3672 3958 0.5080 +3672 3964 0.5510 +3672 4060 0.5010 +3672 4162 0.4610 +3672 4629 0.5650 +3672 4636 0.5040 +3672 4637 0.5170 +3672 4638 0.5580 +3672 4684 0.5200 +3672 4783 0.4700 +3672 4907 0.5020 +3672 5175 0.4600 +3672 5551 0.5130 +3672 5649 0.6840 +3672 5747 0.8700 +3672 5771 0.6450 +3672 5788 0.6110 +3672 5829 0.8520 +3672 6401 0.4590 +3672 6402 0.5420 +3672 6403 0.5470 +3672 6464 0.5120 +3672 6695 0.4240 +3672 6696 0.7470 +3672 6714 0.7340 +3672 7057 0.7580 +3672 7058 0.7200 +3672 7059 0.7530 +3672 7060 0.7860 +3672 7070 0.5540 +3672 7077 0.4520 +3672 7094 0.8970 +3672 7124 0.4270 +3672 7143 0.6860 +3672 7148 0.6730 +3672 7168 0.5290 +3672 7169 0.5210 +3672 7170 0.5170 +3672 7171 0.5170 +3672 7408 0.6790 +3672 7412 0.8540 +3672 7414 0.8860 +3672 7448 0.7830 +3672 7450 0.7060 +3672 7474 0.4300 +3672 8038 0.4840 +3672 8320 0.6350 +3672 8482 0.8470 +3672 8515 0.9560 +3672 8516 0.7950 +3672 8639 0.4030 +3672 8764 0.4060 +3672 9398 0.4600 +3672 9436 0.4460 +3672 9437 0.6240 +3672 9564 0.7050 +3672 10174 0.8260 +3672 10219 0.5820 +3672 10319 0.7320 +3672 10365 0.4070 +3672 10398 0.5830 +3672 10451 0.4240 +3672 10580 0.8760 +3672 10627 0.5120 +3672 10663 0.6620 +3672 10666 0.4060 +3672 10752 0.5270 +3672 11093 0.4610 +3672 11117 0.5550 +3672 11156 0.4040 +3672 22798 0.7010 +3672 22801 0.9440 +3672 22914 0.4800 +3672 25802 0.5600 +3672 27087 0.4180 +3672 29780 0.6770 +3672 29895 0.5040 +3672 30009 0.5790 +3672 53918 0.5180 +3672 55631 0.4440 +3672 55742 0.7090 +3672 58498 0.5290 +3672 63923 0.6920 +3672 64098 0.6770 +3672 81858 0.5480 +3672 83660 0.7400 +3672 85451 0.4030 +3672 90952 0.4670 +3672 93408 0.5040 +3672 103910 0.5050 +3672 131873 0.6940 +3672 140465 0.5170 +3672 257101 0.6090 +3672 259197 0.4180 +3672 284217 0.8620 +3672 375790 0.6260 +3672 114108587 0.4310 +3673 3674 0.8020 +3673 3675 0.9720 +3673 3676 0.9510 +3673 3678 0.9620 +3673 3679 0.7840 +3673 3680 0.7030 +3673 3681 0.7110 +3673 3682 0.6340 +3673 3683 0.9170 +3673 3684 0.6350 +3673 3685 0.9670 +3673 3687 0.7720 +3673 3688 0.9990 +3673 3689 0.9740 +3673 3690 0.9840 +3673 3691 0.9240 +3673 3693 0.9800 +3673 3694 0.9740 +3673 3695 0.9460 +3673 3696 0.9660 +3673 3791 0.4810 +3673 3815 0.5190 +3673 3902 0.5900 +3673 3903 0.4050 +3673 3908 0.7680 +3673 3909 0.8430 +3673 3910 0.8380 +3673 3911 0.7350 +3673 3912 0.7840 +3673 3913 0.7190 +3673 3914 0.8610 +3673 3915 0.7920 +3673 3916 0.4360 +3673 3918 0.8830 +3673 3958 0.4030 +3673 4060 0.5890 +3673 4067 0.7710 +3673 4153 0.4260 +3673 4179 0.4390 +3673 4233 0.7280 +3673 4312 0.8130 +3673 4318 0.4210 +3673 4651 0.4400 +3673 4684 0.4050 +3673 4907 0.4820 +3673 4921 0.7150 +3673 5010 0.4480 +3673 5016 0.6580 +3673 5054 0.6140 +3673 5175 0.5330 +3673 5290 0.9130 +3673 5291 0.9180 +3673 5293 0.9100 +3673 5295 0.9160 +3673 5296 0.9070 +3673 5336 0.7220 +3673 5551 0.4140 +3673 5566 0.9080 +3673 5567 0.9110 +3673 5568 0.9080 +3673 5649 0.6690 +3673 5747 0.9400 +3673 5777 0.9080 +3673 5788 0.7170 +3673 6237 0.4040 +3673 6347 0.5320 +3673 6372 0.4110 +3673 6382 0.6860 +3673 6402 0.5680 +3673 6403 0.6080 +3673 6693 0.4080 +3673 6696 0.7620 +3673 6714 0.8120 +3673 6850 0.4940 +3673 7040 0.6320 +3673 7057 0.8700 +3673 7058 0.8110 +3673 7059 0.7400 +3673 7060 0.7470 +3673 7070 0.5730 +3673 7094 0.7960 +3673 7124 0.4790 +3673 7143 0.6860 +3673 7148 0.7030 +3673 7251 0.4690 +3673 7408 0.7240 +3673 7412 0.4560 +3673 7414 0.4310 +3673 7448 0.8260 +3673 7450 0.8530 +3673 7476 0.4120 +3673 8313 0.4160 +3673 8320 0.4170 +3673 8482 0.4170 +3673 8503 0.9130 +3673 8515 0.9440 +3673 8516 0.8520 +3673 9032 0.5450 +3673 9076 0.8090 +3673 9353 0.4120 +3673 9437 0.5420 +3673 9564 0.7190 +3673 9902 0.4950 +3673 10077 0.4060 +3673 10219 0.4380 +3673 10319 0.7160 +3673 10631 0.5790 +3673 10752 0.5000 +3673 11093 0.4810 +3673 11117 0.5450 +3673 11322 0.4120 +3673 22798 0.7400 +3673 22801 0.9470 +3673 22914 0.4280 +3673 29780 0.7000 +3673 30009 0.4470 +3673 49861 0.4140 +3673 50943 0.5920 +3673 51206 0.9760 +3673 51266 0.5360 +3673 55742 0.7220 +3673 59272 0.4120 +3673 60495 0.5730 +3673 63923 0.6920 +3673 64098 0.6840 +3673 64805 0.4800 +3673 80781 0.5350 +3673 81858 0.5070 +3673 83660 0.7830 +3673 91522 0.5780 +3673 122481 0.4060 +3673 131873 0.6840 +3673 135228 0.4190 +3673 284217 0.8910 +3673 375790 0.6230 +3673 100133941 0.6190 +3674 3675 0.5900 +3674 3676 0.5980 +3674 3678 0.7290 +3674 3679 0.5840 +3674 3680 0.6080 +3674 3681 0.5870 +3674 3682 0.5800 +3674 3683 0.6320 +3674 3684 0.9160 +3674 3685 0.9480 +3674 3687 0.6430 +3674 3688 0.9610 +3674 3689 0.9860 +3674 3690 0.9990 +3674 3691 0.8270 +3674 3693 0.7410 +3674 3694 0.7590 +3674 3695 0.7060 +3674 3696 0.6490 +3674 3717 0.4230 +3674 3791 0.5300 +3674 3815 0.7270 +3674 3845 0.5610 +3674 3897 0.5390 +3674 3908 0.7110 +3674 3909 0.7070 +3674 3910 0.7170 +3674 3911 0.7080 +3674 3912 0.6710 +3674 3913 0.7100 +3674 3914 0.7000 +3674 3915 0.7080 +3674 3918 0.6880 +3674 4005 0.4090 +3674 4067 0.5060 +3674 4102 0.5070 +3674 4140 0.5270 +3674 4145 0.6450 +3674 4162 0.4200 +3674 4254 0.5830 +3674 4297 0.5750 +3674 4311 0.4180 +3674 4323 0.4530 +3674 4352 0.8800 +3674 4353 0.6000 +3674 4356 0.4090 +3674 4602 0.4430 +3674 4684 0.5170 +3674 4778 0.4870 +3674 4893 0.5650 +3674 4900 0.4820 +3674 5028 0.6720 +3674 5037 0.4050 +3674 5054 0.4380 +3674 5143 0.4120 +3674 5170 0.4200 +3674 5175 0.8820 +3674 5196 0.7890 +3674 5197 0.7630 +3674 5291 0.4420 +3674 5321 0.4150 +3674 5327 0.6020 +3674 5340 0.6620 +3674 5473 0.6820 +3674 5592 0.4430 +3674 5594 0.5530 +3674 5595 0.6490 +3674 5604 0.5640 +3674 5605 0.5330 +3674 5649 0.6710 +3674 5688 0.6040 +3674 5742 0.5770 +3674 5747 0.9210 +3674 5770 0.4750 +3674 5788 0.7340 +3674 5894 0.5490 +3674 5906 0.4800 +3674 5908 0.7150 +3674 5929 0.4990 +3674 6387 0.4280 +3674 6401 0.5260 +3674 6402 0.4120 +3674 6403 0.9650 +3674 6404 0.6280 +3674 6464 0.6080 +3674 6504 0.7330 +3674 6521 0.6640 +3674 6654 0.5350 +3674 6688 0.4630 +3674 6693 0.5790 +3674 6696 0.7330 +3674 6714 0.9590 +3674 6850 0.7050 +3674 6886 0.6840 +3674 6915 0.4070 +3674 7010 0.4690 +3674 7037 0.6270 +3674 7056 0.4300 +3674 7057 0.9400 +3674 7058 0.9160 +3674 7059 0.9040 +3674 7060 0.9050 +3674 7066 0.7660 +3674 7094 0.9660 +3674 7099 0.4410 +3674 7124 0.4660 +3674 7143 0.6860 +3674 7148 0.6720 +3674 7408 0.8090 +3674 7412 0.5040 +3674 7414 0.5980 +3674 7448 0.9990 +3674 7450 0.9990 +3674 7529 0.6180 +3674 7852 0.4440 +3674 8085 0.5040 +3674 8328 0.8000 +3674 8331 0.4990 +3674 8334 0.5130 +3674 8337 0.5300 +3674 8338 0.5230 +3674 8340 0.5090 +3674 8341 0.5160 +3674 8342 0.5090 +3674 8345 0.5230 +3674 8347 0.5170 +3674 8348 0.5190 +3674 8349 0.5910 +3674 8356 0.5990 +3674 8361 0.5280 +3674 8515 0.7700 +3674 8516 0.5600 +3674 8727 0.4230 +3674 8826 0.4150 +3674 8844 0.4210 +3674 8850 0.4990 +3674 8970 0.5550 +3674 9070 0.4990 +3674 9159 0.4230 +3674 9564 0.6640 +3674 9567 0.7810 +3674 9739 0.5190 +3674 9749 0.4270 +3674 9757 0.5150 +3674 10019 0.4160 +3674 10077 0.4270 +3674 10184 0.4060 +3674 10256 0.4010 +3674 10319 0.7470 +3674 10398 0.4160 +3674 10519 0.9830 +3674 10544 0.4740 +3674 10661 0.5080 +3674 10672 0.9570 +3674 10733 0.4070 +3674 11091 0.5050 +3674 11093 0.4820 +3674 11117 0.5450 +3674 22798 0.6680 +3674 22801 0.7350 +3674 22866 0.4140 +3674 22915 0.5540 +3674 23067 0.5130 +3674 23218 0.4110 +3674 23309 0.4990 +3674 25833 0.4840 +3674 25893 0.4740 +3674 25942 0.5090 +3674 29780 0.7230 +3674 50848 0.4700 +3674 51206 0.9400 +3674 51255 0.8330 +3674 51266 0.7110 +3674 51706 0.4030 +3674 53947 0.5600 +3674 54145 0.5110 +3674 54518 0.5170 +3674 54756 0.5030 +3674 55170 0.4990 +3674 55742 0.6850 +3674 55766 0.5000 +3674 55904 0.5210 +3674 56344 0.4120 +3674 57153 0.4100 +3674 58508 0.4990 +3674 63923 0.6860 +3674 64098 0.6780 +3674 64805 0.7780 +3674 79828 0.4250 +3674 80318 0.5490 +3674 80739 0.4320 +3674 81027 0.7040 +3674 83660 0.9610 +3674 83706 0.9630 +3674 83854 0.6690 +3674 84519 0.6350 +3674 84661 0.5050 +3674 85236 0.5180 +3674 89872 0.4420 +3674 90952 0.4060 +3674 94121 0.4230 +3674 94239 0.5040 +3674 116173 0.5750 +3674 124446 0.4030 +3674 128312 0.5090 +3674 131873 0.7160 +3674 135228 0.5520 +3674 148534 0.4140 +3674 161882 0.6990 +3674 201191 0.4190 +3674 255626 0.5080 +3674 259215 0.4930 +3674 284217 0.8010 +3674 340205 0.8320 +3674 375033 0.4130 +3674 377841 0.7390 +3674 474382 0.4990 +3674 653604 0.5990 +3675 3676 0.9480 +3675 3678 0.9610 +3675 3679 0.6000 +3675 3680 0.6580 +3675 3681 0.5770 +3675 3682 0.5910 +3675 3683 0.9140 +3675 3684 0.5810 +3675 3685 0.9680 +3675 3687 0.7370 +3675 3688 0.9990 +3675 3689 0.9690 +3675 3690 0.9790 +3675 3691 0.9820 +3675 3693 0.9860 +3675 3694 0.9770 +3675 3695 0.9500 +3675 3696 0.9630 +3675 3732 0.4150 +3675 3908 0.7870 +3675 3909 0.9190 +3675 3910 0.8510 +3675 3911 0.8470 +3675 3912 0.8030 +3675 3913 0.7380 +3675 3914 0.8640 +3675 3915 0.8080 +3675 3918 0.8450 +3675 3958 0.5280 +3675 3964 0.8490 +3675 4067 0.4140 +3675 4087 0.4900 +3675 4233 0.7620 +3675 4811 0.5670 +3675 4868 0.4380 +3675 5054 0.6030 +3675 5339 0.5750 +3675 5420 0.4290 +3675 5649 0.9530 +3675 5747 0.9780 +3675 5800 0.4050 +3675 5829 0.6160 +3675 6597 0.4100 +3675 6696 0.7460 +3675 6714 0.8960 +3675 7040 0.4400 +3675 7057 0.9650 +3675 7058 0.9310 +3675 7059 0.9230 +3675 7060 0.9130 +3675 7094 0.8860 +3675 7103 0.5990 +3675 7106 0.4820 +3675 7143 0.6860 +3675 7148 0.6840 +3675 7408 0.6930 +3675 7412 0.4160 +3675 7414 0.4190 +3675 7448 0.8060 +3675 7450 0.7280 +3675 7791 0.4490 +3675 7827 0.4630 +3675 8482 0.5060 +3675 8515 0.9190 +3675 8516 0.8260 +3675 8763 0.5000 +3675 8842 0.4320 +3675 9358 0.4220 +3675 9423 0.5090 +3675 9564 0.8590 +3675 9982 0.4300 +3675 10077 0.4170 +3675 10188 0.4250 +3675 10319 0.7850 +3675 10971 0.4940 +3675 11093 0.4400 +3675 11117 0.5450 +3675 22798 0.7030 +3675 22801 0.9230 +3675 23555 0.4020 +3675 29780 0.7130 +3675 30816 0.4140 +3675 51206 0.4080 +3675 55612 0.4010 +3675 55742 0.7480 +3675 63923 0.6860 +3675 64098 0.6730 +3675 80781 0.7440 +3675 81619 0.4560 +3675 83660 0.8520 +3675 83700 0.4200 +3675 93185 0.5110 +3675 131873 0.7060 +3675 132160 0.4040 +3675 253260 0.6870 +3675 284217 0.7660 +3675 375790 0.6800 +3676 3678 0.9700 +3676 3679 0.6050 +3676 3680 0.5710 +3676 3681 0.6060 +3676 3682 0.6470 +3676 3683 0.9630 +3676 3684 0.7970 +3676 3685 0.9600 +3676 3687 0.8610 +3676 3688 0.9990 +3676 3689 0.9940 +3676 3690 0.9890 +3676 3691 0.8840 +3676 3693 0.9670 +3676 3694 0.9630 +3676 3695 0.9990 +3676 3696 0.9630 +3676 3725 0.4070 +3676 3732 0.6620 +3676 3815 0.4540 +3676 3820 0.4640 +3676 3902 0.4060 +3676 3903 0.5520 +3676 3908 0.7480 +3676 3909 0.7670 +3676 3910 0.7780 +3676 3911 0.7390 +3676 3912 0.7240 +3676 3913 0.6840 +3676 3914 0.7310 +3676 3915 0.7470 +3676 3916 0.7210 +3676 3918 0.7320 +3676 3920 0.4030 +3676 3964 0.6960 +3676 4067 0.6550 +3676 4068 0.4130 +3676 4162 0.4100 +3676 4311 0.4010 +3676 4318 0.4280 +3676 4487 0.4220 +3676 4629 0.4010 +3676 4684 0.5430 +3676 4790 0.5740 +3676 4907 0.5150 +3676 4914 0.4240 +3676 5010 0.4180 +3676 5175 0.7460 +3676 5354 0.4020 +3676 5361 0.5070 +3676 5551 0.4820 +3676 5649 0.6890 +3676 5747 0.9450 +3676 5787 0.4360 +3676 5788 0.7650 +3676 5829 0.9960 +3676 5906 0.9130 +3676 5908 0.9170 +3676 5921 0.4490 +3676 6347 0.4070 +3676 6348 0.4350 +3676 6351 0.4340 +3676 6361 0.5120 +3676 6366 0.4870 +3676 6367 0.5170 +3676 6370 0.6070 +3676 6376 0.6460 +3676 6382 0.4320 +3676 6387 0.5330 +3676 6401 0.7250 +3676 6402 0.8420 +3676 6403 0.6940 +3676 6404 0.5690 +3676 6405 0.5000 +3676 6614 0.5530 +3676 6693 0.4720 +3676 6696 0.9730 +3676 6714 0.9540 +3676 7010 0.4800 +3676 7037 0.6350 +3676 7040 0.6260 +3676 7057 0.7380 +3676 7058 0.7350 +3676 7059 0.7260 +3676 7060 0.7160 +3676 7070 0.5660 +3676 7094 0.7810 +3676 7099 0.4410 +3676 7103 0.9850 +3676 7124 0.7540 +3676 7143 0.6860 +3676 7148 0.6790 +3676 7408 0.6950 +3676 7412 0.9990 +3676 7448 0.8340 +3676 7450 0.7430 +3676 7529 0.4300 +3676 7531 0.4070 +3676 7534 0.8860 +3676 7535 0.5790 +3676 7852 0.7670 +3676 7903 0.4170 +3676 8174 0.9990 +3676 8320 0.4010 +3676 8482 0.4660 +3676 8515 0.9160 +3676 8516 0.7780 +3676 8639 0.4160 +3676 8726 0.4450 +3676 8763 0.6070 +3676 8828 0.5070 +3676 8829 0.4970 +3676 8935 0.9010 +3676 9034 0.4930 +3676 9332 0.5840 +3676 9404 0.4050 +3676 9564 0.6780 +3676 10077 0.4560 +3676 10219 0.4910 +3676 10319 0.7200 +3676 10371 0.4740 +3676 10417 0.5230 +3676 10462 0.4380 +3676 10516 0.4150 +3676 10663 0.6300 +3676 10803 0.7420 +3676 10863 0.5830 +3676 10971 0.4130 +3676 11093 0.4080 +3676 11117 0.7420 +3676 22798 0.6710 +3676 22801 0.9160 +3676 22914 0.4080 +3676 26271 0.4110 +3676 27347 0.5830 +3676 29780 0.6950 +3676 29851 0.4620 +3676 30009 0.4910 +3676 50848 0.6860 +3676 50943 0.6700 +3676 55558 0.5080 +3676 55742 0.6920 +3676 58191 0.4870 +3676 58494 0.9680 +3676 63923 0.6860 +3676 64098 0.7080 +3676 83593 0.9180 +3676 83660 0.7590 +3676 83700 0.8330 +3676 91584 0.4860 +3676 93185 0.4650 +3676 128822 0.4480 +3676 131873 0.6980 +3676 151888 0.5470 +3676 170482 0.4380 +3676 284217 0.8330 +3676 286151 0.4220 +3676 375298 0.6040 +3676 102723407 0.5010 +3678 3679 0.6570 +3678 3680 0.7650 +3678 3681 0.5950 +3678 3682 0.7300 +3678 3683 0.9530 +3678 3684 0.6420 +3678 3685 0.9460 +3678 3687 0.7770 +3678 3688 0.9990 +3678 3689 0.9930 +3678 3690 0.9990 +3678 3691 0.9530 +3678 3693 0.9910 +3678 3694 0.9610 +3678 3695 0.9880 +3678 3696 0.9650 +3678 3791 0.5560 +3678 3815 0.4080 +3678 3897 0.8330 +3678 3908 0.7830 +3678 3909 0.8690 +3678 3910 0.8880 +3678 3911 0.7780 +3678 3912 0.7880 +3678 3913 0.7930 +3678 3914 0.8550 +3678 3915 0.8650 +3678 3916 0.5140 +3678 3918 0.8640 +3678 3964 0.4520 +3678 4015 0.4050 +3678 4017 0.4960 +3678 4060 0.5280 +3678 4067 0.4830 +3678 4071 0.7310 +3678 4162 0.6390 +3678 4233 0.6140 +3678 4240 0.5030 +3678 4313 0.4810 +3678 4318 0.6320 +3678 4323 0.4480 +3678 4680 0.4940 +3678 4684 0.6400 +3678 4811 0.6060 +3678 4907 0.5460 +3678 4921 0.4770 +3678 5034 0.4020 +3678 5054 0.5640 +3678 5159 0.4150 +3678 5175 0.5630 +3678 5328 0.7810 +3678 5329 0.5060 +3678 5595 0.4170 +3678 5649 0.7910 +3678 5747 0.9720 +3678 5788 0.5320 +3678 5829 0.7130 +3678 5873 0.4320 +3678 5962 0.5130 +3678 6256 0.4200 +3678 6279 0.5550 +3678 6347 0.6000 +3678 6387 0.7260 +3678 6424 0.4150 +3678 6442 0.4230 +3678 6464 0.6780 +3678 6591 0.4380 +3678 6615 0.4260 +3678 6696 0.8680 +3678 6714 0.9490 +3678 7010 0.4940 +3678 7037 0.5640 +3678 7040 0.5710 +3678 7041 0.5120 +3678 7045 0.5870 +3678 7046 0.5790 +3678 7048 0.4260 +3678 7052 0.4900 +3678 7057 0.8120 +3678 7058 0.7810 +3678 7059 0.8270 +3678 7060 0.7020 +3678 7070 0.5550 +3678 7076 0.5190 +3678 7077 0.6640 +3678 7079 0.4070 +3678 7094 0.9780 +3678 7097 0.4150 +3678 7143 0.6860 +3678 7148 0.6920 +3678 7291 0.4200 +3678 7408 0.7220 +3678 7412 0.8280 +3678 7414 0.7800 +3678 7431 0.4680 +3678 7448 0.9760 +3678 7450 0.7550 +3678 7791 0.5220 +3678 7852 0.5960 +3678 8324 0.4140 +3678 8482 0.4570 +3678 8515 0.9220 +3678 8516 0.8330 +3678 8751 0.5590 +3678 8754 0.4140 +3678 8763 0.6310 +3678 8828 0.6310 +3678 8829 0.4550 +3678 8935 0.9000 +3678 9032 0.6390 +3678 9358 0.4490 +3678 9564 0.7500 +3678 10319 0.8280 +3678 10681 0.5050 +3678 10755 0.4080 +3678 11093 0.4120 +3678 11117 0.5810 +3678 11188 0.8050 +3678 22798 0.6780 +3678 22801 0.9490 +3678 23452 0.6030 +3678 23513 0.6850 +3678 27329 0.5130 +3678 29780 0.7070 +3678 50848 0.4910 +3678 51206 0.4020 +3678 51429 0.4150 +3678 51764 0.4990 +3678 54331 0.5590 +3678 55742 0.7350 +3678 55970 0.5760 +3678 57111 0.6500 +3678 59272 0.7880 +3678 59345 0.5190 +3678 63923 0.6860 +3678 64098 0.7030 +3678 80781 0.8250 +3678 81858 0.6220 +3678 83660 0.9640 +3678 83700 0.6560 +3678 84335 0.4200 +3678 84467 0.5290 +3678 94235 0.4990 +3678 131873 0.7260 +3678 146722 0.4030 +3678 284217 0.7460 +3678 375790 0.6110 +3678 102800317 0.4050 +3679 3680 0.6260 +3679 3681 0.5970 +3679 3682 0.6080 +3679 3683 0.6690 +3679 3684 0.6000 +3679 3685 0.7100 +3679 3687 0.5640 +3679 3688 0.9950 +3679 3689 0.7470 +3679 3690 0.8000 +3679 3691 0.8700 +3679 3693 0.8720 +3679 3694 0.8210 +3679 3695 0.7470 +3679 3696 0.7540 +3679 3766 0.4390 +3679 3908 0.9060 +3679 3909 0.7990 +3679 3910 0.8940 +3679 3911 0.7860 +3679 3912 0.7910 +3679 3913 0.7190 +3679 3914 0.7550 +3679 3915 0.7880 +3679 3918 0.8250 +3679 4067 0.4100 +3679 4072 0.4280 +3679 4314 0.4370 +3679 4318 0.4740 +3679 4617 0.4320 +3679 4654 0.5120 +3679 4656 0.4960 +3679 4811 0.5030 +3679 4842 0.4360 +3679 4846 0.4240 +3679 5081 0.5990 +3679 5153 0.5870 +3679 5175 0.5110 +3679 5354 0.4490 +3679 5467 0.4360 +3679 5649 0.7080 +3679 5747 0.8520 +3679 5788 0.4490 +3679 5792 0.4650 +3679 6261 0.5580 +3679 6444 0.6650 +3679 6445 0.5840 +3679 6640 0.5570 +3679 6696 0.7240 +3679 6714 0.7010 +3679 7057 0.8110 +3679 7058 0.7440 +3679 7059 0.8260 +3679 7060 0.7360 +3679 7078 0.6300 +3679 7094 0.8360 +3679 7143 0.6860 +3679 7148 0.7490 +3679 7157 0.4060 +3679 7273 0.4920 +3679 7373 0.4040 +3679 7402 0.7560 +3679 7408 0.6640 +3679 7448 0.7560 +3679 7450 0.7110 +3679 8038 0.7130 +3679 8082 0.5200 +3679 8515 0.7090 +3679 8516 0.6160 +3679 8751 0.4340 +3679 9358 0.4740 +3679 9564 0.7040 +3679 10319 0.7550 +3679 11093 0.4540 +3679 11117 0.5700 +3679 22798 0.7120 +3679 22801 0.7030 +3679 27231 0.7670 +3679 29780 0.7180 +3679 51393 0.4750 +3679 54981 0.6950 +3679 55742 0.7070 +3679 63923 0.6930 +3679 64098 0.6720 +3679 79611 0.4090 +3679 79837 0.4280 +3679 83660 0.8350 +3679 116969 0.4500 +3679 118788 0.4040 +3679 131873 0.7380 +3679 140465 0.6970 +3679 165904 0.4430 +3679 284217 0.8540 +3679 285331 0.4170 +3679 375790 0.7110 +3679 493829 0.4260 +3679 729920 0.4090 +3680 3681 0.5990 +3680 3682 0.5750 +3680 3683 0.5950 +3680 3684 0.5890 +3680 3685 0.6390 +3680 3687 0.5800 +3680 3688 0.9970 +3680 3689 0.7450 +3680 3690 0.8660 +3680 3691 0.7790 +3680 3693 0.8060 +3680 3694 0.7940 +3680 3695 0.8710 +3680 3696 0.7830 +3680 3897 0.5430 +3680 3908 0.8030 +3680 3909 0.7310 +3680 3910 0.7700 +3680 3911 0.7480 +3680 3912 0.7580 +3680 3913 0.6890 +3680 3914 0.7380 +3680 3915 0.7420 +3680 3918 0.7220 +3680 4067 0.4320 +3680 4318 0.5130 +3680 4803 0.5270 +3680 4804 0.4840 +3680 5336 0.4830 +3680 5595 0.4160 +3680 5629 0.4850 +3680 5649 0.7930 +3680 5747 0.8390 +3680 5782 0.4230 +3680 5829 0.6410 +3680 6303 0.7370 +3680 6696 0.9790 +3680 6714 0.7200 +3680 7049 0.4030 +3680 7057 0.8500 +3680 7058 0.8240 +3680 7059 0.7090 +3680 7060 0.6800 +3680 7094 0.8440 +3680 7143 0.9120 +3680 7148 0.9210 +3680 7408 0.6640 +3680 7412 0.9890 +3680 7424 0.6070 +3680 7448 0.7390 +3680 7450 0.7430 +3680 7529 0.4120 +3680 7534 0.4270 +3680 8038 0.6580 +3680 8482 0.4770 +3680 8515 0.6280 +3680 8516 0.7810 +3680 9358 0.4490 +3680 9564 0.6910 +3680 10217 0.5040 +3680 10319 0.7600 +3680 10630 0.4380 +3680 10894 0.7050 +3680 10971 0.4170 +3680 11117 0.5740 +3680 22798 0.7200 +3680 22801 0.6270 +3680 22918 0.4540 +3680 29780 0.6860 +3680 51206 0.4250 +3680 54345 0.4410 +3680 54458 0.5470 +3680 55742 0.6860 +3680 55901 0.5340 +3680 57165 0.4860 +3680 63923 0.9160 +3680 64098 0.6790 +3680 79987 0.4580 +3680 83660 0.8190 +3680 83700 0.4510 +3680 131873 0.7870 +3680 147372 0.4180 +3680 284217 0.6940 +3680 375790 0.5730 +3681 3682 0.6010 +3681 3683 0.6550 +3681 3684 0.6820 +3681 3685 0.5850 +3681 3687 0.7200 +3681 3688 0.7050 +3681 3689 0.9990 +3681 3690 0.6870 +3681 3691 0.6510 +3681 3693 0.6870 +3681 3694 0.7320 +3681 3695 0.7160 +3681 3696 0.6660 +3681 5340 0.4540 +3681 5747 0.6630 +3681 6714 0.6950 +3681 7412 0.9730 +3681 7448 0.6430 +3681 8515 0.6050 +3681 8516 0.6080 +3681 9358 0.4160 +3681 9564 0.6590 +3681 11117 0.5450 +3681 22801 0.6170 +3681 83706 0.4330 +3682 3683 0.6240 +3682 3684 0.6500 +3682 3685 0.5950 +3682 3687 0.6600 +3682 3688 0.8270 +3682 3689 0.7620 +3682 3690 0.6780 +3682 3691 0.6590 +3682 3693 0.6530 +3682 3694 0.6690 +3682 3695 0.9990 +3682 3696 0.7310 +3682 3815 0.4550 +3682 3820 0.7080 +3682 3821 0.4630 +3682 3824 0.4680 +3682 3902 0.6170 +3682 3916 0.4460 +3682 4065 0.6620 +3682 4067 0.4020 +3682 4072 0.4800 +3682 4283 0.5760 +3682 4301 0.4160 +3682 4311 0.5070 +3682 4340 0.4770 +3682 4345 0.6050 +3682 4360 0.5200 +3682 4684 0.5820 +3682 4783 0.4080 +3682 4853 0.4100 +3682 4907 0.4830 +3682 5133 0.5870 +3682 5175 0.4380 +3682 5551 0.6200 +3682 5747 0.6630 +3682 5788 0.8120 +3682 5896 0.5290 +3682 6097 0.4760 +3682 6347 0.4720 +3682 6348 0.4530 +3682 6351 0.5070 +3682 6361 0.4530 +3682 6363 0.4690 +3682 6364 0.4670 +3682 6366 0.4470 +3682 6367 0.4270 +3682 6370 0.4790 +3682 6375 0.4820 +3682 6402 0.8480 +3682 6614 0.4680 +3682 6693 0.6720 +3682 6714 0.7070 +3682 6774 0.4330 +3682 6776 0.4110 +3682 6777 0.4130 +3682 6932 0.4530 +3682 7040 0.5160 +3682 7056 0.6440 +3682 7070 0.4820 +3682 7097 0.6440 +3682 7098 0.5150 +3682 7099 0.5220 +3682 7100 0.5170 +3682 7124 0.6540 +3682 7292 0.4780 +3682 7293 0.5700 +3682 7412 0.6020 +3682 7852 0.4310 +3682 8174 0.7180 +3682 8320 0.5870 +3682 8515 0.6370 +3682 8516 0.6020 +3682 8639 0.6470 +3682 8784 0.8060 +3682 8829 0.4600 +3682 8854 0.5820 +3682 9034 0.6340 +3682 9308 0.4810 +3682 9332 0.6200 +3682 9398 0.5230 +3682 9436 0.4740 +3682 9437 0.5900 +3682 9564 0.6620 +3682 10077 0.5880 +3682 10219 0.8200 +3682 10365 0.4880 +3682 10461 0.4120 +3682 10462 0.5730 +3682 10538 0.4270 +3682 10621 0.4040 +3682 10663 0.6300 +3682 10803 0.7180 +3682 11117 0.5450 +3682 11126 0.5980 +3682 22801 0.7350 +3682 22807 0.4490 +3682 22914 0.4920 +3682 23308 0.4190 +3682 27087 0.4830 +3682 29126 0.6440 +3682 29851 0.6390 +3682 30009 0.6940 +3682 30835 0.5190 +3682 50489 0.7460 +3682 50616 0.6370 +3682 50943 0.8650 +3682 51284 0.5140 +3682 51367 0.4440 +3682 51554 0.4340 +3682 51561 0.4030 +3682 54106 0.5110 +3682 55509 0.7980 +3682 64581 0.4360 +3682 65258 0.7250 +3682 80380 0.4940 +3682 80381 0.7020 +3682 84868 0.6190 +3682 85480 0.5990 +3682 90865 0.5410 +3682 114836 0.4850 +3682 130120 0.4560 +3682 140685 0.6200 +3682 140885 0.6400 +3682 149233 0.4400 +3682 151888 0.4030 +3682 169355 0.5040 +3682 170482 0.4940 +3682 201633 0.5780 +3682 257101 0.6100 +3682 283420 0.6990 +3682 100133941 0.7150 +3682 100526664 0.6620 +3683 3684 0.9940 +3683 3685 0.9180 +3683 3687 0.9510 +3683 3688 0.9850 +3683 3689 0.9990 +3683 3690 0.9540 +3683 3691 0.8610 +3683 3693 0.9360 +3683 3694 0.9300 +3683 3695 0.9760 +3683 3696 0.9260 +3683 3702 0.4390 +3683 3732 0.4480 +3683 3820 0.4480 +3683 3821 0.4460 +3683 3824 0.4920 +3683 3902 0.4190 +3683 3916 0.4070 +3683 3937 0.5610 +3683 3959 0.4660 +3683 3964 0.4190 +3683 4067 0.5430 +3683 4087 0.4060 +3683 4116 0.4040 +3683 4240 0.4890 +3683 4282 0.4500 +3683 4353 0.4430 +3683 4485 0.4130 +3683 4542 0.4880 +3683 4684 0.5890 +3683 4818 0.5440 +3683 5133 0.5850 +3683 5175 0.6160 +3683 5551 0.7830 +3683 5587 0.9020 +3683 5747 0.6830 +3683 5788 0.9310 +3683 5817 0.5030 +3683 5819 0.6760 +3683 5873 0.4630 +3683 5880 0.4160 +3683 5906 0.9210 +3683 5908 0.9150 +3683 6347 0.6630 +3683 6348 0.4390 +3683 6364 0.5260 +3683 6387 0.4280 +3683 6401 0.8580 +3683 6402 0.8850 +3683 6403 0.7600 +3683 6404 0.6650 +3683 6504 0.4230 +3683 6688 0.4070 +3683 6693 0.8630 +3683 6714 0.7490 +3683 6850 0.4190 +3683 7037 0.6290 +3683 7059 0.4040 +3683 7070 0.4600 +3683 7087 0.9960 +3683 7094 0.6950 +3683 7097 0.4340 +3683 7099 0.4230 +3683 7124 0.7100 +3683 7305 0.4370 +3683 7409 0.9480 +3683 7410 0.9120 +3683 7412 0.9920 +3683 7448 0.4750 +3683 7535 0.7030 +3683 7852 0.8110 +3683 8174 0.6640 +3683 8320 0.4460 +3683 8515 0.9140 +3683 8516 0.7540 +3683 8639 0.8370 +3683 9034 0.6300 +3683 9308 0.4040 +3683 9437 0.5090 +3683 9564 0.6650 +3683 10077 0.4500 +3683 10219 0.6230 +3683 10225 0.5840 +3683 10298 0.4520 +3683 10320 0.4680 +3683 10344 0.4030 +3683 10451 0.9160 +3683 10636 0.9090 +3683 10663 0.4460 +3683 10666 0.9610 +3683 10673 0.5140 +3683 10850 0.5000 +3683 10870 0.5270 +3683 11082 0.8490 +3683 11093 0.4080 +3683 11117 0.5460 +3683 11151 0.4890 +3683 11184 0.4170 +3683 22801 0.9050 +3683 22914 0.5620 +3683 23075 0.4890 +3683 23683 0.9000 +3683 23705 0.5380 +3683 25865 0.9030 +3683 27087 0.4590 +3683 29851 0.4590 +3683 30009 0.5100 +3683 50848 0.9950 +3683 50943 0.4930 +3683 51744 0.5040 +3683 53347 0.4170 +3683 54440 0.5440 +3683 54518 0.4490 +3683 55110 0.4040 +3683 55423 0.4080 +3683 57126 0.4860 +3683 64005 0.4430 +3683 64098 0.4410 +3683 64926 0.4440 +3683 79724 0.4030 +3683 80342 0.4380 +3683 80709 0.4040 +3683 81858 0.7250 +3683 83593 0.9620 +3683 83660 0.4370 +3683 83700 0.5460 +3683 83706 0.6050 +3683 114836 0.4140 +3683 140885 0.6120 +3683 151888 0.5340 +3683 201633 0.5600 +3683 257106 0.4950 +3683 259197 0.4980 +3683 374403 0.4570 +3683 375790 0.4570 +3684 3685 0.6380 +3684 3687 0.7290 +3684 3688 0.9740 +3684 3689 0.9990 +3684 3690 0.8710 +3684 3691 0.6890 +3684 3693 0.7040 +3684 3694 0.6740 +3684 3695 0.7500 +3684 3696 0.6840 +3684 3716 0.4150 +3684 3717 0.5120 +3684 3725 0.4740 +3684 3732 0.5070 +3684 3791 0.5210 +3684 3815 0.7970 +3684 3820 0.5170 +3684 3821 0.5210 +3684 3824 0.5200 +3684 3902 0.5850 +3684 3916 0.7020 +3684 3929 0.5860 +3684 3934 0.4580 +3684 3937 0.6320 +3684 3952 0.4200 +3684 3958 0.5710 +3684 3959 0.4490 +3684 3964 0.7160 +3684 3965 0.5130 +3684 4015 0.6690 +3684 4050 0.4190 +3684 4057 0.5530 +3684 4060 0.5540 +3684 4064 0.5300 +3684 4065 0.6980 +3684 4067 0.6470 +3684 4072 0.7340 +3684 4145 0.6920 +3684 4153 0.4900 +3684 4155 0.7000 +3684 4162 0.4880 +3684 4210 0.4020 +3684 4254 0.7300 +3684 4261 0.4080 +3684 4283 0.6520 +3684 4300 0.4180 +3684 4301 0.6210 +3684 4311 0.5800 +3684 4313 0.4050 +3684 4317 0.4200 +3684 4318 0.7130 +3684 4321 0.4540 +3684 4332 0.5380 +3684 4340 0.6000 +3684 4345 0.4800 +3684 4353 0.8230 +3684 4360 0.9310 +3684 4481 0.5790 +3684 4542 0.4820 +3684 4599 0.5150 +3684 4609 0.5000 +3684 4684 0.7270 +3684 4688 0.6010 +3684 4689 0.5210 +3684 4772 0.4030 +3684 4790 0.6180 +3684 4792 0.5730 +3684 4818 0.4630 +3684 4843 0.6130 +3684 4851 0.4120 +3684 4853 0.4200 +3684 4907 0.7960 +3684 4939 0.5270 +3684 4973 0.4590 +3684 5008 0.4570 +3684 5054 0.4990 +3684 5133 0.6210 +3684 5154 0.4580 +3684 5156 0.4960 +3684 5159 0.4830 +3684 5175 0.8360 +3684 5196 0.8300 +3684 5197 0.6980 +3684 5199 0.4510 +3684 5230 0.4940 +3684 5265 0.5340 +3684 5290 0.9160 +3684 5291 0.9150 +3684 5293 0.9300 +3684 5294 0.4050 +3684 5295 0.9100 +3684 5296 0.9030 +3684 5329 0.8530 +3684 5330 0.4330 +3684 5341 0.5110 +3684 5354 0.5180 +3684 5465 0.5370 +3684 5468 0.5670 +3684 5473 0.4520 +3684 5534 0.4690 +3684 5551 0.6650 +3684 5587 0.9080 +3684 5595 0.6970 +3684 5617 0.4370 +3684 5657 0.5620 +3684 5688 0.5910 +3684 5724 0.6210 +3684 5728 0.4140 +3684 5734 0.4120 +3684 5743 0.5900 +3684 5747 0.7230 +3684 5764 0.4600 +3684 5788 0.9710 +3684 5817 0.4990 +3684 5829 0.5210 +3684 5880 0.4400 +3684 5896 0.6480 +3684 5906 0.9140 +3684 5908 0.9110 +3684 5914 0.5040 +3684 5966 0.4140 +3684 5970 0.4880 +3684 5971 0.4780 +3684 6036 0.4940 +3684 6097 0.4330 +3684 6275 0.4230 +3684 6279 0.4460 +3684 6280 0.5660 +3684 6283 0.6090 +3684 6285 0.4470 +3684 6347 0.7960 +3684 6348 0.7110 +3684 6351 0.6760 +3684 6354 0.4220 +3684 6355 0.4110 +3684 6356 0.5400 +3684 6361 0.5550 +3684 6362 0.4400 +3684 6363 0.5250 +3684 6364 0.5190 +3684 6366 0.5140 +3684 6367 0.5760 +3684 6369 0.4320 +3684 6373 0.4790 +3684 6374 0.5260 +3684 6376 0.7290 +3684 6382 0.7270 +3684 6386 0.4840 +3684 6387 0.6760 +3684 6401 0.7620 +3684 6402 0.9290 +3684 6403 0.9340 +3684 6404 0.8340 +3684 6490 0.4160 +3684 6504 0.7100 +3684 6556 0.4140 +3684 6614 0.8130 +3684 6622 0.6080 +3684 6688 0.9770 +3684 6693 0.7490 +3684 6696 0.4940 +3684 6714 0.8110 +3684 6772 0.8760 +3684 6774 0.8280 +3684 6775 0.4650 +3684 6776 0.5710 +3684 6777 0.5320 +3684 6778 0.7950 +3684 6850 0.5930 +3684 7010 0.5450 +3684 7037 0.6100 +3684 7040 0.6870 +3684 7043 0.4180 +3684 7048 0.4150 +3684 7056 0.6050 +3684 7057 0.4140 +3684 7066 0.4180 +3684 7070 0.9980 +3684 7076 0.4370 +3684 7094 0.5520 +3684 7096 0.7480 +3684 7097 0.8930 +3684 7098 0.6060 +3684 7099 0.9200 +3684 7100 0.6980 +3684 7103 0.5660 +3684 7124 0.9090 +3684 7128 0.4170 +3684 7130 0.4280 +3684 7132 0.6460 +3684 7133 0.4750 +3684 7157 0.4810 +3684 7189 0.4320 +3684 7292 0.5100 +3684 7293 0.5310 +3684 7305 0.7370 +3684 7409 0.5020 +3684 7412 0.9910 +3684 7414 0.5680 +3684 7424 0.4180 +3684 7448 0.7040 +3684 7454 0.5310 +3684 7535 0.4100 +3684 7805 0.4710 +3684 7837 0.6340 +3684 7852 0.7150 +3684 8290 0.4040 +3684 8320 0.5260 +3684 8349 0.4470 +3684 8356 0.4040 +3684 8503 0.9000 +3684 8515 0.5580 +3684 8516 0.5810 +3684 8530 0.4950 +3684 8600 0.5490 +3684 8639 0.8540 +3684 8651 0.4230 +3684 8685 0.4260 +3684 8743 0.4250 +3684 8784 0.5000 +3684 8829 0.4490 +3684 8842 0.4830 +3684 9021 0.4970 +3684 9034 0.6530 +3684 9173 0.4470 +3684 9308 0.6190 +3684 9314 0.4380 +3684 9332 0.8190 +3684 9398 0.4080 +3684 9437 0.7270 +3684 9450 0.4660 +3684 9563 0.4400 +3684 9564 0.6680 +3684 10077 0.4800 +3684 10219 0.7890 +3684 10288 0.7060 +3684 10320 0.4590 +3684 10461 0.6120 +3684 10462 0.6000 +3684 10563 0.4830 +3684 10630 0.5100 +3684 10631 0.5460 +3684 10636 0.9070 +3684 10663 0.4710 +3684 10666 0.4570 +3684 10673 0.5890 +3684 10763 0.4530 +3684 10803 0.5450 +3684 10859 0.4010 +3684 10870 0.4470 +3684 10894 0.5970 +3684 11006 0.4500 +3684 11035 0.4180 +3684 11093 0.4160 +3684 11117 0.5530 +3684 11126 0.5450 +3684 11251 0.4270 +3684 11314 0.5630 +3684 11326 0.5310 +3684 22801 0.5600 +3684 22914 0.5990 +3684 22918 0.6840 +3684 22943 0.5120 +3684 23136 0.5250 +3684 23166 0.4390 +3684 23308 0.4490 +3684 23533 0.4220 +3684 23569 0.4150 +3684 23586 0.4730 +3684 23601 0.5090 +3684 23643 0.4950 +3684 23683 0.9030 +3684 23705 0.6120 +3684 23765 0.5590 +3684 25865 0.9070 +3684 26191 0.4090 +3684 26253 0.4440 +3684 27036 0.4640 +3684 27087 0.4890 +3684 27111 0.4120 +3684 27141 0.5300 +3684 27180 0.5090 +3684 27202 0.5760 +3684 29126 0.7310 +3684 29851 0.6250 +3684 30009 0.7170 +3684 30816 0.6590 +3684 30817 0.6210 +3684 30835 0.9610 +3684 50489 0.6570 +3684 50616 0.6060 +3684 50848 0.6160 +3684 50856 0.5300 +3684 50943 0.8550 +3684 51284 0.8070 +3684 51311 0.6490 +3684 51338 0.4520 +3684 51561 0.4930 +3684 51744 0.5720 +3684 53829 0.4200 +3684 53831 0.4940 +3684 54106 0.7970 +3684 54209 0.6290 +3684 54210 0.5330 +3684 55509 0.6660 +3684 56729 0.4470 +3684 56942 0.4530 +3684 57126 0.8110 +3684 57705 0.4870 +3684 57823 0.5670 +3684 58191 0.4600 +3684 58484 0.5490 +3684 58494 0.4340 +3684 60675 0.5040 +3684 64115 0.4290 +3684 64127 0.6100 +3684 64135 0.4230 +3684 64581 0.6560 +3684 64805 0.6720 +3684 65258 0.6600 +3684 80142 0.4650 +3684 80380 0.6170 +3684 80381 0.6250 +3684 83593 0.9160 +3684 83660 0.5170 +3684 83700 0.9950 +3684 84106 0.4300 +3684 84666 0.5060 +3684 84868 0.6430 +3684 85480 0.5160 +3684 90865 0.6040 +3684 90952 0.4320 +3684 91937 0.5390 +3684 93978 0.4620 +3684 112744 0.4710 +3684 114548 0.5820 +3684 114609 0.5350 +3684 124599 0.4120 +3684 131450 0.5760 +3684 137902 0.6340 +3684 140685 0.5700 +3684 140885 0.7260 +3684 146433 0.4830 +3684 146713 0.6490 +3684 146722 0.4590 +3684 149233 0.4060 +3684 151888 0.4390 +3684 160364 0.6080 +3684 165530 0.4030 +3684 168400 0.5810 +3684 169355 0.7270 +3684 170482 0.5230 +3684 201633 0.4600 +3684 246778 0.4060 +3684 259197 0.4280 +3684 283420 0.6130 +3684 284194 0.4010 +3684 338773 0.6030 +3684 340061 0.4360 +3684 405754 0.6590 +3684 440093 0.4040 +3684 440686 0.4040 +3684 653361 0.5820 +3684 653604 0.4040 +3684 654346 0.4080 +3684 728378 0.4530 +3684 100133941 0.6680 +3684 100526664 0.6800 +3684 102723407 0.4050 +3685 3687 0.7600 +3685 3688 0.9990 +3685 3689 0.9900 +3685 3690 0.9990 +3685 3691 0.9290 +3685 3693 0.9990 +3685 3694 0.9990 +3685 3695 0.9510 +3685 3696 0.9990 +3685 3725 0.4940 +3685 3791 0.7050 +3685 3815 0.4210 +3685 3897 0.6930 +3685 3908 0.7730 +3685 3909 0.7890 +3685 3910 0.8050 +3685 3911 0.7770 +3685 3912 0.7870 +3685 3913 0.7500 +3685 3914 0.7640 +3685 3915 0.8880 +3685 3918 0.8180 +3685 4015 0.5280 +3685 4052 0.6710 +3685 4054 0.5750 +3685 4060 0.5760 +3685 4067 0.4980 +3685 4071 0.4770 +3685 4072 0.5810 +3685 4128 0.4020 +3685 4162 0.6450 +3685 4233 0.4790 +3685 4240 0.9850 +3685 4301 0.6140 +3685 4313 0.8350 +3685 4318 0.4940 +3685 4481 0.4990 +3685 4691 0.4740 +3685 4790 0.4380 +3685 4811 0.5680 +3685 4854 0.4820 +3685 4907 0.4800 +3685 5029 0.4990 +3685 5031 0.4160 +3685 5054 0.4110 +3685 5156 0.5320 +3685 5159 0.4320 +3685 5175 0.8860 +3685 5295 0.4170 +3685 5318 0.4060 +3685 5329 0.5890 +3685 5354 0.5850 +3685 5578 0.6200 +3685 5594 0.6510 +3685 5595 0.5510 +3685 5649 0.6900 +3685 5687 0.4540 +3685 5747 0.9840 +3685 5764 0.4470 +3685 5770 0.4440 +3685 5788 0.5690 +3685 5796 0.4490 +3685 5803 0.5610 +3685 5817 0.5290 +3685 5829 0.8580 +3685 6093 0.6190 +3685 6382 0.9240 +3685 6385 0.5620 +3685 6387 0.5830 +3685 6401 0.5960 +3685 6403 0.6170 +3685 6461 0.5130 +3685 6464 0.5710 +3685 6696 0.9990 +3685 6714 0.9460 +3685 6772 0.4330 +3685 6774 0.5160 +3685 6876 0.4400 +3685 7010 0.4070 +3685 7037 0.5750 +3685 7040 0.9940 +3685 7042 0.8250 +3685 7043 0.8990 +3685 7048 0.4340 +3685 7052 0.4110 +3685 7057 0.9810 +3685 7058 0.9360 +3685 7059 0.9340 +3685 7060 0.9130 +3685 7070 0.6830 +3685 7077 0.5360 +3685 7079 0.4080 +3685 7094 0.8710 +3685 7124 0.4260 +3685 7132 0.4610 +3685 7143 0.9100 +3685 7148 0.9100 +3685 7408 0.7070 +3685 7412 0.7160 +3685 7414 0.5050 +3685 7448 0.9990 +3685 7450 0.9860 +3685 7791 0.4030 +3685 8515 0.9190 +3685 8516 0.7330 +3685 8600 0.4870 +3685 8728 0.4230 +3685 8751 0.5640 +3685 8754 0.6730 +3685 9475 0.6420 +3685 9564 0.8170 +3685 10085 0.5920 +3685 10225 0.4170 +3685 10296 0.4590 +3685 10319 0.7270 +3685 10451 0.4630 +3685 10631 0.7720 +3685 10666 0.4610 +3685 10763 0.4640 +3685 10979 0.5910 +3685 11093 0.4420 +3685 11117 0.5530 +3685 22798 0.6790 +3685 22801 0.9230 +3685 22883 0.4410 +3685 27032 0.5290 +3685 28514 0.4410 +3685 28951 0.4650 +3685 29780 0.7020 +3685 30817 0.4580 +3685 50509 0.5370 +3685 51429 0.5100 +3685 55742 0.7370 +3685 57823 0.4620 +3685 63923 0.9100 +3685 64098 0.6750 +3685 65078 0.5150 +3685 80310 0.4440 +3685 80781 0.7130 +3685 83660 0.8140 +3685 84467 0.5280 +3685 84823 0.4010 +3685 120114 0.4030 +3685 131873 0.6950 +3685 252995 0.5830 +3685 284217 0.7240 +3685 340267 0.4060 +3685 375790 0.6220 +3687 3688 0.9640 +3687 3689 0.9990 +3687 3690 0.8480 +3687 3691 0.7870 +3687 3693 0.7940 +3687 3694 0.7910 +3687 3695 0.8480 +3687 3696 0.8590 +3687 3815 0.6990 +3687 3820 0.5280 +3687 3821 0.4470 +3687 3824 0.4930 +3687 3902 0.5500 +3687 3903 0.4280 +3687 3910 0.4190 +3687 3916 0.5700 +3687 3937 0.4560 +3687 3958 0.5230 +3687 3959 0.4380 +3687 3965 0.4140 +3687 3996 0.4770 +3687 4000 0.4090 +3687 4049 0.4340 +3687 4050 0.4840 +3687 4055 0.4580 +3687 4065 0.7920 +3687 4067 0.5930 +3687 4072 0.5910 +3687 4145 0.4350 +3687 4254 0.4040 +3687 4261 0.4750 +3687 4283 0.6150 +3687 4301 0.6960 +3687 4311 0.7440 +3687 4318 0.5300 +3687 4321 0.4210 +3687 4340 0.5770 +3687 4345 0.4730 +3687 4353 0.5430 +3687 4360 0.8120 +3687 4481 0.5410 +3687 4542 0.4600 +3687 4599 0.4800 +3687 4684 0.7310 +3687 4688 0.4370 +3687 4790 0.5300 +3687 4792 0.4610 +3687 4843 0.4930 +3687 4907 0.4720 +3687 4939 0.4550 +3687 5133 0.5970 +3687 5175 0.7320 +3687 5265 0.4240 +3687 5354 0.4690 +3687 5468 0.5100 +3687 5551 0.6320 +3687 5595 0.4270 +3687 5724 0.4430 +3687 5743 0.4170 +3687 5747 0.6720 +3687 5788 0.9390 +3687 5817 0.4390 +3687 5819 0.4120 +3687 5896 0.6620 +3687 5970 0.4250 +3687 5971 0.4650 +3687 6097 0.4480 +3687 6280 0.4080 +3687 6347 0.7240 +3687 6348 0.6620 +3687 6351 0.6470 +3687 6356 0.4880 +3687 6361 0.5420 +3687 6363 0.6140 +3687 6364 0.5320 +3687 6366 0.5990 +3687 6367 0.5480 +3687 6373 0.4340 +3687 6376 0.4500 +3687 6382 0.7300 +3687 6387 0.4940 +3687 6401 0.6380 +3687 6402 0.8270 +3687 6403 0.4750 +3687 6404 0.4760 +3687 6490 0.4470 +3687 6504 0.5280 +3687 6556 0.5420 +3687 6614 0.7230 +3687 6688 0.6750 +3687 6693 0.7080 +3687 6696 0.5490 +3687 6714 0.7690 +3687 6772 0.8650 +3687 6774 0.7810 +3687 6776 0.4820 +3687 6777 0.4630 +3687 6778 0.7620 +3687 6820 0.5030 +3687 6850 0.5320 +3687 7037 0.4730 +3687 7040 0.6240 +3687 7056 0.7950 +3687 7070 0.8030 +3687 7096 0.5810 +3687 7097 0.7630 +3687 7098 0.6300 +3687 7099 0.7690 +3687 7100 0.6290 +3687 7124 0.8760 +3687 7132 0.4280 +3687 7133 0.4510 +3687 7292 0.5850 +3687 7293 0.6770 +3687 7305 0.6770 +3687 7376 0.4320 +3687 7412 0.9360 +3687 7448 0.4250 +3687 7837 0.5820 +3687 7852 0.6210 +3687 8174 0.4390 +3687 8320 0.4670 +3687 8349 0.4800 +3687 8515 0.7360 +3687 8516 0.7370 +3687 8530 0.5320 +3687 8639 0.8410 +3687 8784 0.5130 +3687 8829 0.7130 +3687 9021 0.4040 +3687 9034 0.6710 +3687 9173 0.4470 +3687 9308 0.8000 +3687 9332 0.7630 +3687 9370 0.4050 +3687 9437 0.6860 +3687 9564 0.6530 +3687 9619 0.4730 +3687 10004 0.4290 +3687 10077 0.4440 +3687 10219 0.6390 +3687 10261 0.6640 +3687 10288 0.6070 +3687 10318 0.4070 +3687 10421 0.5240 +3687 10461 0.5830 +3687 10462 0.7520 +3687 10563 0.5140 +3687 10630 0.4840 +3687 10663 0.7340 +3687 10666 0.5570 +3687 10673 0.5890 +3687 10803 0.5810 +3687 10859 0.4940 +3687 10894 0.5240 +3687 11006 0.6000 +3687 11025 0.5010 +3687 11117 0.5480 +3687 11251 0.6020 +3687 11326 0.4460 +3687 22801 0.7270 +3687 22914 0.5400 +3687 22918 0.7420 +3687 23308 0.5230 +3687 23547 0.4650 +3687 23586 0.4880 +3687 23643 0.4370 +3687 23705 0.5340 +3687 23765 0.6380 +3687 26253 0.4450 +3687 27074 0.6680 +3687 27087 0.6440 +3687 27128 0.4300 +3687 27141 0.4470 +3687 29126 0.7240 +3687 29851 0.6460 +3687 29992 0.4030 +3687 30009 0.7430 +3687 30816 0.4450 +3687 30835 0.7180 +3687 50489 0.8380 +3687 50615 0.4050 +3687 50616 0.7290 +3687 50856 0.5460 +3687 50943 0.8750 +3687 51284 0.7380 +3687 51311 0.6310 +3687 51561 0.5740 +3687 54106 0.8160 +3687 54209 0.5700 +3687 54210 0.4370 +3687 54623 0.4390 +3687 55509 0.8160 +3687 55540 0.5490 +3687 56253 0.5080 +3687 56963 0.4330 +3687 58191 0.5880 +3687 58484 0.4240 +3687 64127 0.5350 +3687 64135 0.4280 +3687 64581 0.7520 +3687 64805 0.5100 +3687 65258 0.7010 +3687 80380 0.6200 +3687 80381 0.7000 +3687 83416 0.4370 +3687 83417 0.4160 +3687 83700 0.7410 +3687 84666 0.4470 +3687 84868 0.6450 +3687 85480 0.6000 +3687 90865 0.5980 +3687 91937 0.4770 +3687 93978 0.5000 +3687 112744 0.4580 +3687 114548 0.5060 +3687 123803 0.4470 +3687 130120 0.4060 +3687 131450 0.4660 +3687 137902 0.5820 +3687 140685 0.6200 +3687 140885 0.7280 +3687 149233 0.4320 +3687 151888 0.4570 +3687 160364 0.4390 +3687 168400 0.5410 +3687 169355 0.7020 +3687 170482 0.8580 +3687 201633 0.4220 +3687 203068 0.4370 +3687 246778 0.4140 +3687 283420 0.6770 +3687 338773 0.4500 +3687 340061 0.4680 +3687 405754 0.4300 +3687 653361 0.4550 +3687 100133941 0.6630 +3687 100526664 0.7790 +3687 102723407 0.4690 +3688 3689 0.9850 +3688 3690 0.9870 +3688 3691 0.8530 +3688 3693 0.9600 +3688 3694 0.9790 +3688 3695 0.9130 +3688 3696 0.9400 +3688 3725 0.6050 +3688 3732 0.5730 +3688 3757 0.4200 +3688 3791 0.8840 +3688 3815 0.7120 +3688 3845 0.7260 +3688 3848 0.5170 +3688 3852 0.4010 +3688 3856 0.4540 +3688 3861 0.4890 +3688 3875 0.4710 +3688 3880 0.5010 +3688 3897 0.9090 +3688 3908 0.7710 +3688 3909 0.7730 +3688 3910 0.9350 +3688 3911 0.9830 +3688 3912 0.9740 +3688 3913 0.7200 +3688 3914 0.7650 +3688 3915 0.9820 +3688 3916 0.4390 +3688 3918 0.7740 +3688 3956 0.6540 +3688 3958 0.9310 +3688 3959 0.6160 +3688 3964 0.7670 +3688 3965 0.4930 +3688 3987 0.4640 +3688 4015 0.4320 +3688 4035 0.4700 +3688 4052 0.6180 +3688 4054 0.5640 +3688 4060 0.6950 +3688 4067 0.7540 +3688 4071 0.6800 +3688 4072 0.7340 +3688 4087 0.4640 +3688 4088 0.6180 +3688 4162 0.8200 +3688 4172 0.4030 +3688 4179 0.4650 +3688 4192 0.5150 +3688 4233 0.8180 +3688 4311 0.6820 +3688 4313 0.7550 +3688 4314 0.4410 +3688 4318 0.6740 +3688 4323 0.4850 +3688 4478 0.6010 +3688 4609 0.4970 +3688 4633 0.5190 +3688 4680 0.5390 +3688 4684 0.6830 +3688 4771 0.5110 +3688 4790 0.5490 +3688 4792 0.5130 +3688 4803 0.5640 +3688 4804 0.5500 +3688 4810 0.4190 +3688 4830 0.4120 +3688 4851 0.4250 +3688 4869 0.5220 +3688 4893 0.5150 +3688 4907 0.8950 +3688 4921 0.4960 +3688 5054 0.4290 +3688 5058 0.6410 +3688 5062 0.5950 +3688 5076 0.5280 +3688 5156 0.5600 +3688 5159 0.7350 +3688 5175 0.8280 +3688 5217 0.4010 +3688 5290 0.9530 +3688 5291 0.9180 +3688 5293 0.9150 +3688 5294 0.6900 +3688 5295 0.9510 +3688 5296 0.9150 +3688 5315 0.4960 +3688 5328 0.4160 +3688 5329 0.5740 +3688 5336 0.4100 +3688 5338 0.4530 +3688 5354 0.4010 +3688 5460 0.6540 +3688 5468 0.4880 +3688 5566 0.9140 +3688 5567 0.9170 +3688 5568 0.9140 +3688 5578 0.9230 +3688 5579 0.7200 +3688 5582 0.6930 +3688 5587 0.9100 +3688 5590 0.4060 +3688 5595 0.4950 +3688 5621 0.4740 +3688 5649 0.9400 +3688 5693 0.4100 +3688 5728 0.6220 +3688 5747 0.9970 +3688 5764 0.5270 +3688 5770 0.4610 +3688 5777 0.9240 +3688 5781 0.4310 +3688 5788 0.9130 +3688 5829 0.9870 +3688 5868 0.6230 +3688 5878 0.4850 +3688 5879 0.7210 +3688 5880 0.6960 +3688 5881 0.6440 +3688 5906 0.9520 +3688 5908 0.9260 +3688 6275 0.4010 +3688 6277 0.5100 +3688 6279 0.6650 +3688 6340 0.4120 +3688 6347 0.4590 +3688 6355 0.4010 +3688 6367 0.4210 +3688 6370 0.4750 +3688 6376 0.4410 +3688 6382 0.6850 +3688 6385 0.6360 +3688 6386 0.5690 +3688 6387 0.6780 +3688 6389 0.4120 +3688 6401 0.6940 +3688 6402 0.6690 +3688 6403 0.6670 +3688 6404 0.4010 +3688 6416 0.4250 +3688 6426 0.4270 +3688 6464 0.7570 +3688 6520 0.4860 +3688 6591 0.4800 +3688 6614 0.4730 +3688 6615 0.4980 +3688 6622 0.4030 +3688 6657 0.5830 +3688 6662 0.5120 +3688 6663 0.4990 +3688 6678 0.6470 +3688 6693 0.4010 +3688 6696 0.9960 +3688 6714 0.9860 +3688 6722 0.8470 +3688 6772 0.6370 +3688 6774 0.8220 +3688 6778 0.5770 +3688 6850 0.5640 +3688 6868 0.5980 +3688 7010 0.4360 +3688 7032 0.4350 +3688 7037 0.8380 +3688 7040 0.8850 +3688 7042 0.7550 +3688 7043 0.7340 +3688 7046 0.4350 +3688 7048 0.4780 +3688 7052 0.7620 +3688 7057 0.9890 +3688 7058 0.9280 +3688 7059 0.9150 +3688 7060 0.9180 +3688 7070 0.8930 +3688 7076 0.7530 +3688 7077 0.5650 +3688 7082 0.4130 +3688 7087 0.5500 +3688 7094 0.9990 +3688 7099 0.6270 +3688 7102 0.5260 +3688 7103 0.4080 +3688 7105 0.4800 +3688 7106 0.6490 +3688 7112 0.4750 +3688 7124 0.7180 +3688 7143 0.9080 +3688 7145 0.4080 +3688 7148 0.9110 +3688 7157 0.5040 +3688 7251 0.6890 +3688 7408 0.7200 +3688 7412 0.9990 +3688 7414 0.9660 +3688 7430 0.6350 +3688 7431 0.5050 +3688 7448 0.9860 +3688 7450 0.8340 +3688 7514 0.4300 +3688 7529 0.5060 +3688 7791 0.4140 +3688 7837 0.5750 +3688 7846 0.4070 +3688 7852 0.8190 +3688 7879 0.6550 +3688 8038 0.4870 +3688 8140 0.4330 +3688 8174 0.6580 +3688 8321 0.4550 +3688 8482 0.9950 +3688 8503 0.9130 +3688 8515 0.9740 +3688 8516 0.9980 +3688 8549 0.4370 +3688 8650 0.5610 +3688 8737 0.4050 +3688 8754 0.5320 +3688 8766 0.4650 +3688 8817 0.4480 +3688 8822 0.4410 +3688 8823 0.4350 +3688 8826 0.5950 +3688 8829 0.7160 +3688 8842 0.6950 +3688 8935 0.9140 +3688 9076 0.5490 +3688 9122 0.4850 +3688 9123 0.5600 +3688 9253 0.5470 +3688 9270 0.9980 +3688 9314 0.4400 +3688 9341 0.5020 +3688 9368 0.4240 +3688 9429 0.4420 +3688 9448 0.4450 +3688 9459 0.4910 +3688 9475 0.5520 +3688 9564 0.9140 +3688 9644 0.8920 +3688 9710 0.4200 +3688 9744 0.4440 +3688 9784 0.4070 +3688 9815 0.4250 +3688 10006 0.4280 +3688 10015 0.4800 +3688 10097 0.5590 +3688 10098 0.6860 +3688 10099 0.7430 +3688 10100 0.5970 +3688 10103 0.5070 +3688 10152 0.4160 +3688 10163 0.4640 +3688 10211 0.5410 +3688 10235 0.5290 +3688 10298 0.6010 +3688 10319 0.7200 +3688 10399 0.6880 +3688 10417 0.4660 +3688 10461 0.4980 +3688 10484 0.4160 +3688 10494 0.4240 +3688 10618 0.6430 +3688 10627 0.5350 +3688 10631 0.4860 +3688 10636 0.9010 +3688 10681 0.5280 +3688 10752 0.5270 +3688 10763 0.6070 +3688 10787 0.4820 +3688 10788 0.4530 +3688 10803 0.5430 +3688 10863 0.4610 +3688 10867 0.6030 +3688 10890 0.4640 +3688 10959 0.4400 +3688 10979 0.7960 +3688 11034 0.4270 +3688 11093 0.4160 +3688 11117 0.6790 +3688 11235 0.6030 +3688 22798 0.6500 +3688 22801 0.9810 +3688 22918 0.4490 +3688 23011 0.8150 +3688 23075 0.4240 +3688 23191 0.4350 +3688 23352 0.4290 +3688 23371 0.4430 +3688 23452 0.4760 +3688 23554 0.5780 +3688 23555 0.6700 +3688 23580 0.4090 +3688 23683 0.9080 +3688 25865 0.9090 +3688 25894 0.4380 +3688 26030 0.4250 +3688 26050 0.4190 +3688 26232 0.8590 +3688 26270 0.4690 +3688 26281 0.4250 +3688 26548 0.8670 +3688 27006 0.4250 +3688 27075 0.5660 +3688 27231 0.6790 +3688 27255 0.4170 +3688 27289 0.4730 +3688 28964 0.4890 +3688 29780 0.7820 +3688 30816 0.5590 +3688 50848 0.5630 +3688 51129 0.8480 +3688 51206 0.4620 +3688 51295 0.6290 +3688 51347 0.4030 +3688 51764 0.4990 +3688 54331 0.5310 +3688 55004 0.4320 +3688 55612 0.5330 +3688 55742 0.8080 +3688 55789 0.4330 +3688 55824 0.5190 +3688 55845 0.4140 +3688 55914 0.4710 +3688 55970 0.6140 +3688 57111 0.4030 +3688 57591 0.7920 +3688 58190 0.4510 +3688 58494 0.9380 +3688 59272 0.9050 +3688 59345 0.5140 +3688 63923 0.9090 +3688 64098 0.7630 +3688 64236 0.4350 +3688 64759 0.7550 +3688 64866 0.5630 +3688 79038 0.4280 +3688 79923 0.6150 +3688 80144 0.9060 +3688 80781 0.8630 +3688 81624 0.4890 +3688 81839 0.4470 +3688 83593 0.9080 +3688 83605 0.5380 +3688 83660 0.9980 +3688 83700 0.7860 +3688 83706 0.7630 +3688 84168 0.4810 +3688 84335 0.4160 +3688 84467 0.5390 +3688 84951 0.9520 +3688 91522 0.5230 +3688 94235 0.5160 +3688 121340 0.4190 +3688 131578 0.4560 +3688 131873 0.7060 +3688 137902 0.5550 +3688 143098 0.4110 +3688 255743 0.9720 +3688 284217 0.8790 +3688 286205 0.4870 +3688 340485 0.5030 +3688 340595 0.5190 +3688 341640 0.9060 +3688 375033 0.4760 +3688 375790 0.7880 +3688 405754 0.4160 +3688 100133941 0.7090 +3689 3690 0.9730 +3689 3691 0.7700 +3689 3693 0.9430 +3689 3694 0.9430 +3689 3695 0.9540 +3689 3696 0.9110 +3689 3815 0.4680 +3689 3827 0.6430 +3689 3903 0.5000 +3689 3920 0.4980 +3689 3929 0.6270 +3689 3936 0.7410 +3689 3937 0.6830 +3689 3958 0.6090 +3689 3963 0.4220 +3689 4046 0.5150 +3689 4057 0.5030 +3689 4060 0.5420 +3689 4065 0.4240 +3689 4067 0.7480 +3689 4069 0.4130 +3689 4155 0.5380 +3689 4282 0.4430 +3689 4283 0.4310 +3689 4318 0.7050 +3689 4323 0.4800 +3689 4332 0.4730 +3689 4353 0.8410 +3689 4360 0.4490 +3689 4478 0.4580 +3689 4481 0.4280 +3689 4542 0.6050 +3689 4609 0.5360 +3689 4680 0.4170 +3689 4684 0.6950 +3689 4688 0.6590 +3689 4689 0.6290 +3689 4790 0.4480 +3689 4818 0.4440 +3689 5175 0.8140 +3689 5196 0.5830 +3689 5199 0.4150 +3689 5211 0.5030 +3689 5290 0.9140 +3689 5291 0.9130 +3689 5293 0.9260 +3689 5295 0.9180 +3689 5296 0.9090 +3689 5329 0.8730 +3689 5330 0.4750 +3689 5336 0.5920 +3689 5341 0.7610 +3689 5357 0.4820 +3689 5551 0.6790 +3689 5552 0.4520 +3689 5578 0.4300 +3689 5579 0.5120 +3689 5580 0.4890 +3689 5587 0.9060 +3689 5657 0.5580 +3689 5724 0.6680 +3689 5747 0.7860 +3689 5777 0.5650 +3689 5788 0.8700 +3689 5817 0.4550 +3689 5818 0.4100 +3689 5819 0.6260 +3689 5829 0.6180 +3689 5880 0.7550 +3689 5906 0.9290 +3689 5908 0.9270 +3689 5962 0.4790 +3689 6039 0.4020 +3689 6279 0.5630 +3689 6280 0.5140 +3689 6283 0.5560 +3689 6285 0.4440 +3689 6347 0.7860 +3689 6348 0.5250 +3689 6351 0.6750 +3689 6363 0.6430 +3689 6364 0.5460 +3689 6370 0.4590 +3689 6373 0.5080 +3689 6376 0.4850 +3689 6383 0.4410 +3689 6387 0.7090 +3689 6401 0.9930 +3689 6402 0.9760 +3689 6403 0.9780 +3689 6404 0.9630 +3689 6503 0.4190 +3689 6504 0.4030 +3689 6556 0.4150 +3689 6688 0.9310 +3689 6689 0.5400 +3689 6693 0.7220 +3689 6696 0.5310 +3689 6714 0.9040 +3689 6772 0.6920 +3689 6774 0.6840 +3689 6778 0.6530 +3689 6840 0.4800 +3689 6850 0.9180 +3689 7018 0.4440 +3689 7040 0.6970 +3689 7045 0.5240 +3689 7056 0.5750 +3689 7070 0.9790 +3689 7076 0.6070 +3689 7078 0.4720 +3689 7087 0.8800 +3689 7094 0.9770 +3689 7096 0.8600 +3689 7097 0.7910 +3689 7099 0.6720 +3689 7124 0.7270 +3689 7133 0.5100 +3689 7305 0.9720 +3689 7409 0.9660 +3689 7410 0.9410 +3689 7412 0.9980 +3689 7414 0.7040 +3689 7448 0.8620 +3689 7450 0.5280 +3689 7454 0.6050 +3689 7529 0.5470 +3689 7534 0.7820 +3689 7535 0.4720 +3689 7805 0.8610 +3689 7852 0.8260 +3689 7940 0.4150 +3689 8174 0.7790 +3689 8200 0.4490 +3689 8503 0.9080 +3689 8515 0.9630 +3689 8516 0.8440 +3689 8530 0.4720 +3689 8807 0.4220 +3689 8832 0.4370 +3689 8875 0.5610 +3689 9034 0.5850 +3689 9051 0.4110 +3689 9172 0.5330 +3689 9266 0.7090 +3689 9267 0.9540 +3689 9308 0.4250 +3689 9332 0.5670 +3689 9437 0.5770 +3689 9450 0.5780 +3689 9564 0.6920 +3689 9595 0.4580 +3689 10077 0.5370 +3689 10085 0.4810 +3689 10125 0.4350 +3689 10235 0.7010 +3689 10288 0.5410 +3689 10320 0.4380 +3689 10344 0.4070 +3689 10399 0.5310 +3689 10413 0.4190 +3689 10437 0.4390 +3689 10451 0.9540 +3689 10563 0.5720 +3689 10636 0.9410 +3689 10666 0.9700 +3689 10673 0.5390 +3689 10803 0.5010 +3689 10870 0.5350 +3689 10871 0.4230 +3689 10979 0.4820 +3689 10987 0.5200 +3689 11027 0.4040 +3689 11035 0.5840 +3689 11082 0.7490 +3689 11093 0.4370 +3689 11117 0.5700 +3689 11151 0.7840 +3689 11314 0.5980 +3689 11326 0.5990 +3689 22801 0.9400 +3689 22914 0.5390 +3689 22918 0.6510 +3689 23075 0.4510 +3689 23533 0.4110 +3689 23683 0.9050 +3689 23705 0.8160 +3689 25865 0.9050 +3689 27128 0.6570 +3689 27180 0.4020 +3689 27202 0.4050 +3689 30817 0.4350 +3689 30835 0.6120 +3689 50848 0.9980 +3689 50856 0.4130 +3689 51284 0.6600 +3689 51311 0.5800 +3689 51348 0.5320 +3689 51744 0.4580 +3689 53831 0.4520 +3689 54106 0.4520 +3689 54209 0.4200 +3689 54210 0.4110 +3689 54440 0.4720 +3689 54518 0.7430 +3689 54751 0.4680 +3689 57126 0.5660 +3689 57705 0.4470 +3689 58191 0.5040 +3689 58494 0.8740 +3689 64092 0.4290 +3689 64098 0.5610 +3689 64127 0.4320 +3689 64231 0.4210 +3689 64581 0.6570 +3689 81704 0.4370 +3689 81858 0.4060 +3689 83593 0.9390 +3689 83660 0.9800 +3689 83700 0.9980 +3689 83706 0.9600 +3689 84868 0.4070 +3689 90952 0.5960 +3689 117289 0.4430 +3689 120425 0.4180 +3689 134864 0.4020 +3689 140885 0.5360 +3689 146722 0.4690 +3689 257106 0.4380 +3689 375790 0.4890 +3689 653361 0.5510 +3689 653499 0.4240 +3690 3691 0.8400 +3690 3693 0.9540 +3690 3694 0.9350 +3690 3695 0.9450 +3690 3696 0.9470 +3690 3725 0.5480 +3690 3791 0.9790 +3690 3815 0.5870 +3690 3845 0.6210 +3690 3875 0.5370 +3690 3897 0.5990 +3690 3908 0.8260 +3690 3909 0.7440 +3690 3910 0.7650 +3690 3911 0.7970 +3690 3912 0.8380 +3690 3913 0.6940 +3690 3914 0.7660 +3690 3915 0.7550 +3690 3918 0.7310 +3690 3958 0.5770 +3690 3987 0.4710 +3690 4015 0.6000 +3690 4052 0.6500 +3690 4054 0.5520 +3690 4067 0.6110 +3690 4071 0.4490 +3690 4072 0.4320 +3690 4140 0.4210 +3690 4162 0.4110 +3690 4240 0.7350 +3690 4301 0.5750 +3690 4311 0.4200 +3690 4313 0.5880 +3690 4318 0.5430 +3690 4323 0.6300 +3690 4352 0.6580 +3690 4353 0.4930 +3690 4524 0.4470 +3690 4684 0.5110 +3690 4772 0.5710 +3690 4804 0.4870 +3690 4893 0.5770 +3690 5028 0.6240 +3690 5037 0.4150 +3690 5054 0.5190 +3690 5055 0.4610 +3690 5155 0.5500 +3690 5156 0.6830 +3690 5159 0.7270 +3690 5170 0.4210 +3690 5175 0.8870 +3690 5196 0.5870 +3690 5197 0.5260 +3690 5267 0.4170 +3690 5320 0.5300 +3690 5321 0.4100 +3690 5335 0.4650 +3690 5336 0.5370 +3690 5473 0.4670 +3690 5578 0.7230 +3690 5579 0.7680 +3690 5582 0.6580 +3690 5594 0.7280 +3690 5595 0.7580 +3690 5604 0.5820 +3690 5605 0.5090 +3690 5649 0.7090 +3690 5742 0.5010 +3690 5743 0.5700 +3690 5747 0.9900 +3690 5764 0.4400 +3690 5770 0.6310 +3690 5781 0.6680 +3690 5788 0.6530 +3690 5803 0.5940 +3690 5829 0.9310 +3690 5894 0.5290 +3690 5906 0.5180 +3690 5908 0.5620 +3690 6093 0.6030 +3690 6356 0.4320 +3690 6376 0.6580 +3690 6382 0.9320 +3690 6401 0.4600 +3690 6403 0.9280 +3690 6404 0.4530 +3690 6461 0.4990 +3690 6464 0.9720 +3690 6521 0.5450 +3690 6532 0.7410 +3690 6591 0.4400 +3690 6615 0.4370 +3690 6654 0.5470 +3690 6696 0.9940 +3690 6714 0.9980 +3690 6850 0.8680 +3690 7037 0.5190 +3690 7040 0.7640 +3690 7042 0.6650 +3690 7043 0.6360 +3690 7045 0.7710 +3690 7048 0.6800 +3690 7057 0.9840 +3690 7058 0.9330 +3690 7059 0.9210 +3690 7060 0.9230 +3690 7066 0.5830 +3690 7070 0.6230 +3690 7077 0.4650 +3690 7094 0.9990 +3690 7096 0.4300 +3690 7097 0.5470 +3690 7124 0.4600 +3690 7143 0.9080 +3690 7145 0.5340 +3690 7148 0.9130 +3690 7153 0.4250 +3690 7251 0.5020 +3690 7408 0.7810 +3690 7412 0.6640 +3690 7414 0.8740 +3690 7431 0.5030 +3690 7448 0.9990 +3690 7450 0.9980 +3690 7490 0.4040 +3690 7529 0.5070 +3690 7791 0.5890 +3690 7837 0.4560 +3690 7852 0.4150 +3690 8482 0.4280 +3690 8515 0.9690 +3690 8516 0.8610 +3690 8542 0.4200 +3690 8600 0.5520 +3690 8650 0.5350 +3690 8718 0.4460 +3690 8751 0.4830 +3690 8826 0.4770 +3690 8829 0.5690 +3690 8840 0.4110 +3690 8842 0.4180 +3690 8844 0.4120 +3690 9235 0.9620 +3690 9253 0.5230 +3690 9475 0.5830 +3690 9564 0.7570 +3690 10085 0.4840 +3690 10125 0.4090 +3690 10184 0.4160 +3690 10225 0.4330 +3690 10235 0.6690 +3690 10256 0.4060 +3690 10298 0.6200 +3690 10319 0.7800 +3690 10395 0.4620 +3690 10398 0.4290 +3690 10451 0.4680 +3690 10631 0.6370 +3690 10666 0.5000 +3690 10672 0.9940 +3690 10871 0.4710 +3690 10979 0.7610 +3690 11093 0.4700 +3690 11117 0.6130 +3690 11337 0.4360 +3690 11345 0.4740 +3690 22798 0.6710 +3690 22801 0.9700 +3690 23371 0.4090 +3690 23421 0.9050 +3690 23710 0.4240 +3690 25833 0.6160 +3690 27122 0.4080 +3690 27319 0.4100 +3690 27329 0.5480 +3690 29780 0.8650 +3690 30816 0.5510 +3690 50509 0.5010 +3690 50848 0.4140 +3690 50944 0.4020 +3690 51206 0.7240 +3690 51255 0.6000 +3690 51266 0.4650 +3690 51706 0.4040 +3690 53947 0.4470 +3690 54518 0.5660 +3690 54756 0.5190 +3690 55612 0.4240 +3690 55742 0.7600 +3690 56924 0.4710 +3690 57144 0.4270 +3690 57153 0.4120 +3690 63923 0.9090 +3690 64098 0.7390 +3690 64581 0.4360 +3690 64805 0.7040 +3690 65078 0.4590 +3690 80781 0.6420 +3690 81027 0.5470 +3690 81501 0.5470 +3690 83660 0.9960 +3690 83706 0.9920 +3690 84467 0.5460 +3690 94121 0.4160 +3690 128506 0.4270 +3690 131873 0.7120 +3690 135228 0.5970 +3690 137902 0.4460 +3690 140609 0.4090 +3690 149708 0.4260 +3690 255631 0.4890 +3690 259215 0.4810 +3690 284217 0.8170 +3690 340205 0.5970 +3690 375033 0.6580 +3690 100133941 0.5470 +3691 3692 0.8170 +3691 3693 0.8460 +3691 3694 0.8480 +3691 3695 0.7680 +3691 3696 0.7620 +3691 3725 0.5160 +3691 3728 0.7250 +3691 3852 0.6030 +3691 3861 0.7590 +3691 3866 0.4210 +3691 3908 0.7530 +3691 3909 0.9510 +3691 3910 0.9190 +3691 3911 0.8290 +3691 3912 0.8060 +3691 3913 0.7230 +3691 3914 0.9820 +3691 3915 0.8020 +3691 3918 0.9650 +3691 4067 0.4410 +3691 4072 0.6560 +3691 4218 0.4360 +3691 4233 0.4230 +3691 4318 0.4870 +3691 4486 0.4790 +3691 4586 0.7880 +3691 4792 0.5880 +3691 4904 0.4320 +3691 4914 0.5100 +3691 5097 0.4720 +3691 5175 0.4090 +3691 5339 0.9990 +3691 5493 0.4070 +3691 5578 0.7170 +3691 5579 0.6730 +3691 5582 0.6580 +3691 5600 0.4180 +3691 5649 0.6900 +3691 5747 0.9640 +3691 5781 0.5400 +3691 5829 0.5320 +3691 6382 0.8430 +3691 6440 0.8110 +3691 6464 0.7210 +3691 6615 0.4160 +3691 6657 0.5120 +3691 6696 0.7170 +3691 6714 0.9480 +3691 6774 0.4940 +3691 7015 0.4210 +3691 7052 0.4170 +3691 7057 0.8540 +3691 7058 0.7500 +3691 7059 0.7380 +3691 7060 0.7070 +3691 7077 0.4640 +3691 7094 0.8470 +3691 7103 0.4830 +3691 7143 0.6800 +3691 7148 0.6840 +3691 7157 0.4300 +3691 7408 0.7070 +3691 7414 0.6580 +3691 7430 0.5390 +3691 7448 0.7980 +3691 7450 0.7430 +3691 7871 0.5560 +3691 8313 0.4050 +3691 8515 0.8580 +3691 8516 0.8680 +3691 9034 0.4070 +3691 9564 0.7420 +3691 9635 0.6530 +3691 10319 0.8330 +3691 10399 0.5100 +3691 10979 0.4940 +3691 11117 0.5660 +3691 11187 0.5830 +3691 22798 0.6980 +3691 22801 0.8540 +3691 23499 0.5670 +3691 23705 0.5560 +3691 26509 0.4790 +3691 29126 0.5530 +3691 29780 0.7390 +3691 54935 0.4780 +3691 55612 0.5520 +3691 55742 0.7590 +3691 55914 0.8500 +3691 56946 0.4180 +3691 57381 0.4040 +3691 57561 0.4910 +3691 63923 0.6970 +3691 64098 0.7340 +3691 80317 0.8300 +3691 80790 0.4260 +3691 81607 0.6830 +3691 83660 0.8110 +3691 84951 0.5580 +3691 120114 0.4260 +3691 131873 0.7180 +3691 146664 0.4010 +3691 161176 0.6850 +3691 284217 0.7720 +3692 3736 0.4180 +3692 3737 0.4180 +3692 3738 0.4180 +3692 3739 0.4180 +3692 3741 0.4180 +3692 3742 0.4180 +3692 3743 0.4180 +3692 3744 0.4180 +3692 3745 0.4180 +3692 3746 0.4180 +3692 3747 0.4180 +3692 3748 0.4180 +3692 3749 0.4180 +3692 3750 0.4180 +3692 3751 0.4180 +3692 3752 0.4180 +3692 3754 0.4180 +3692 3755 0.4270 +3692 3784 0.4180 +3692 3785 0.4220 +3692 3786 0.4180 +3692 3787 0.4180 +3692 3788 0.4180 +3692 3790 0.4180 +3692 3921 0.6630 +3692 4343 0.7770 +3692 4528 0.4890 +3692 4736 0.9620 +3692 4809 0.8440 +3692 4839 0.9480 +3692 4931 0.4240 +3692 5028 0.4930 +3692 5032 0.4930 +3692 5036 0.9940 +3692 5204 0.5090 +3692 5245 0.5660 +3692 5394 0.5300 +3692 5469 0.8790 +3692 5702 0.4620 +3692 5704 0.4690 +3692 5706 0.4160 +3692 5714 0.4220 +3692 5859 0.6890 +3692 5901 0.4300 +3692 6059 0.7200 +3692 6122 0.9900 +3692 6123 0.9170 +3692 6124 0.9970 +3692 6125 0.9970 +3692 6128 0.9960 +3692 6129 0.9850 +3692 6130 0.9940 +3692 6132 0.9950 +3692 6133 0.9930 +3692 6135 0.9950 +3692 6136 0.8580 +3692 6137 0.9930 +3692 6138 0.9940 +3692 6139 0.9850 +3692 6141 0.9930 +3692 6142 0.9990 +3692 6143 0.9950 +3692 6144 0.9930 +3692 6146 0.9780 +3692 6147 0.9950 +3692 6152 0.9950 +3692 6154 0.9870 +3692 6155 0.9890 +3692 6156 0.9980 +3692 6157 0.9920 +3692 6158 0.8910 +3692 6159 0.9900 +3692 6160 0.9990 +3692 6161 0.9860 +3692 6164 0.9970 +3692 6165 0.9940 +3692 6166 0.9610 +3692 6167 0.9780 +3692 6168 0.9950 +3692 6169 0.9940 +3692 6170 0.9800 +3692 6173 0.9570 +3692 6175 0.9790 +3692 6183 0.4640 +3692 6187 0.4820 +3692 6188 0.7550 +3692 6189 0.4670 +3692 6191 0.6510 +3692 6193 0.6800 +3692 6194 0.8130 +3692 6202 0.5240 +3692 6203 0.5360 +3692 6204 0.4090 +3692 6205 0.5810 +3692 6206 0.7520 +3692 6207 0.4680 +3692 6208 0.5370 +3692 6209 0.5610 +3692 6210 0.5990 +3692 6217 0.9000 +3692 6218 0.4200 +3692 6223 0.8750 +3692 6224 0.6520 +3692 6228 0.6130 +3692 6229 0.8110 +3692 6231 0.5560 +3692 6234 0.5750 +3692 6635 0.4710 +3692 6713 0.5780 +3692 6729 0.7020 +3692 6838 0.6030 +3692 6921 0.5540 +3692 6950 0.4330 +3692 7167 0.4860 +3692 7184 0.4290 +3692 7203 0.5490 +3692 7284 0.6030 +3692 7311 0.9760 +3692 7385 0.4210 +3692 7407 0.4020 +3692 7415 0.4850 +3692 7458 0.7540 +3692 7514 0.4480 +3692 7529 0.4380 +3692 7919 0.4320 +3692 8568 0.9280 +3692 8662 0.8670 +3692 8663 0.7890 +3692 8664 0.6160 +3692 8665 0.4660 +3692 8666 0.5770 +3692 8667 0.8320 +3692 8668 0.8070 +3692 8669 0.7320 +3692 8672 0.5070 +3692 8886 0.9660 +3692 8890 0.5850 +3692 8892 0.5300 +3692 8894 0.7290 +3692 9045 0.9960 +3692 9132 0.4180 +3692 9141 0.5390 +3692 9188 0.4080 +3692 9312 0.4180 +3692 9315 0.4070 +3692 9343 0.6340 +3692 9349 0.9970 +3692 9470 0.4140 +3692 9533 0.4200 +3692 9575 0.4240 +3692 9669 0.8270 +3692 9732 0.9040 +3692 9775 0.6550 +3692 9858 0.4650 +3692 9933 0.6230 +3692 9939 0.4860 +3692 10055 0.4580 +3692 10061 0.5800 +3692 10209 0.8230 +3692 10212 0.5410 +3692 10399 0.9630 +3692 10412 0.9930 +3692 10436 0.6110 +3692 10438 0.5660 +3692 10473 0.7990 +3692 10480 0.6660 +3692 10521 0.4230 +3692 10528 0.4240 +3692 10557 0.7560 +3692 10574 0.6120 +3692 10575 0.4410 +3692 10576 0.5190 +3692 10605 0.4580 +3692 10694 0.6110 +3692 10767 0.5590 +3692 10940 0.5010 +3692 10969 0.9890 +3692 10988 0.5760 +3692 11047 0.4970 +3692 11222 0.8900 +3692 11224 0.9940 +3692 11266 0.4530 +3692 22913 0.4160 +3692 22948 0.4940 +3692 23076 0.9530 +3692 23173 0.5800 +3692 23195 0.8150 +3692 23212 0.8120 +3692 23223 0.5090 +3692 23246 0.9890 +3692 23363 0.4660 +3692 23376 0.5040 +3692 23405 0.6290 +3692 23481 0.9880 +3692 23517 0.6210 +3692 23521 0.9800 +3692 23560 0.9980 +3692 23640 0.7640 +3692 24140 0.7970 +3692 25873 0.9940 +3692 26046 0.4040 +3692 26155 0.9770 +3692 26156 0.9550 +3692 26251 0.4180 +3692 26354 0.9470 +3692 26986 0.4820 +3692 27000 0.4010 +3692 27012 0.4180 +3692 27161 0.8130 +3692 27327 0.4680 +3692 27335 0.6150 +3692 28998 0.8150 +3692 29088 0.5030 +3692 29093 0.8670 +3692 29102 0.4010 +3692 29889 0.9930 +3692 29960 0.7840 +3692 29997 0.7010 +3692 51018 0.8830 +3692 51042 0.9910 +3692 51068 0.9970 +3692 51069 0.8630 +3692 51073 0.8600 +3692 51081 0.4570 +3692 51116 0.5590 +3692 51119 0.8590 +3692 51121 0.9020 +3692 51154 0.9950 +3692 51187 0.9950 +3692 51202 0.5310 +3692 51319 0.7150 +3692 51388 0.9850 +3692 51602 0.7240 +3692 54463 0.7590 +3692 54475 0.8960 +3692 54552 0.9120 +3692 54555 0.4050 +3692 54606 0.5340 +3692 54663 0.9890 +3692 54680 0.4280 +3692 54881 0.6720 +3692 54888 0.5940 +3692 54948 0.7690 +3692 55003 0.5820 +3692 55139 0.8120 +3692 55153 0.9310 +3692 55299 0.9620 +3692 55319 0.8140 +3692 55324 0.5090 +3692 55341 0.9950 +3692 55591 0.5610 +3692 55651 0.7940 +3692 55695 0.5970 +3692 55759 0.9890 +3692 55781 0.5070 +3692 55794 0.4320 +3692 56342 0.7970 +3692 56479 0.4180 +3692 56647 0.8680 +3692 56648 0.7630 +3692 57418 0.9290 +3692 57696 0.8770 +3692 60314 0.4890 +3692 60678 0.5260 +3692 63899 0.5780 +3692 64318 0.9600 +3692 64374 0.7500 +3692 64794 0.4180 +3692 65003 0.7820 +3692 65008 0.7840 +3692 65121 0.4820 +3692 65122 0.4820 +3692 79029 0.4430 +3692 79039 0.7370 +3692 79096 0.4320 +3692 79132 0.4720 +3692 79137 0.6420 +3692 79159 0.6760 +3692 79590 0.8670 +3692 79631 0.9080 +3692 79727 0.5310 +3692 79730 0.5740 +3692 79797 0.4100 +3692 80135 0.9830 +3692 81887 0.5700 +3692 84154 0.9840 +3692 84273 0.6080 +3692 84298 0.8490 +3692 84365 0.9690 +3692 84549 0.9490 +3692 84916 0.4250 +3692 84975 0.4300 +3692 85476 0.6670 +3692 90441 0.9920 +3692 92170 0.6300 +3692 92399 0.5810 +3692 92856 0.4050 +3692 93107 0.4180 +3692 93974 0.4390 +3692 114987 0.4070 +3692 115098 0.5000 +3692 115416 0.4170 +3692 116832 0.8940 +3692 117246 0.9810 +3692 122622 0.4880 +3692 124454 0.6800 +3692 126402 0.4150 +3692 128866 0.5020 +3692 134218 0.7500 +3692 140801 0.9810 +3692 143244 0.7260 +3692 146212 0.8460 +3692 162427 0.6430 +3692 165904 0.4110 +3692 166378 0.4430 +3692 169522 0.4180 +3692 170850 0.4180 +3692 200916 0.8810 +3692 221078 0.8830 +3692 254268 0.8740 +3692 255308 0.5260 +3692 283518 0.4180 +3692 285855 0.8750 +3692 343068 0.4820 +3692 343070 0.4820 +3692 345630 0.5540 +3692 347487 0.4810 +3692 387129 0.8570 +3692 387338 0.5790 +3692 390999 0.4820 +3692 391002 0.4820 +3692 400735 0.4820 +3692 400736 0.4820 +3692 440275 0.4340 +3692 440560 0.4820 +3692 440561 0.4820 +3692 441873 0.4820 +3692 448834 0.4060 +3692 645051 0.5090 +3692 645073 0.5090 +3692 645359 0.4820 +3692 653619 0.4820 +3692 692312 0.5420 +3692 728689 0.4980 +3692 729396 0.5090 +3692 729422 0.5090 +3692 729428 0.5090 +3692 729431 0.5090 +3692 729442 0.5090 +3692 729447 0.5090 +3692 729528 0.4820 +3692 100008586 0.5090 +3692 100132399 0.5090 +3692 100287482 0.4650 +3692 100505478 0.8330 +3692 100526842 0.8960 +3692 100529097 0.7950 +3692 101929983 0.4820 +3692 102724473 0.5090 +3692 114483834 0.5800 +3693 3694 0.9270 +3693 3695 0.9110 +3693 3696 0.9450 +3693 3725 0.4720 +3693 3908 0.7570 +3693 3909 0.8240 +3693 3910 0.8450 +3693 3911 0.8430 +3693 3912 0.8660 +3693 3913 0.7470 +3693 3914 0.7740 +3693 3915 0.8140 +3693 3918 0.7360 +3693 4015 0.5140 +3693 4052 0.7160 +3693 4054 0.6170 +3693 4067 0.4180 +3693 4071 0.6850 +3693 4085 0.4780 +3693 4240 0.9100 +3693 4629 0.5610 +3693 4636 0.5040 +3693 4637 0.5960 +3693 4638 0.7600 +3693 4644 0.4030 +3693 4651 0.6610 +3693 4756 0.4650 +3693 5055 0.4860 +3693 5125 0.4770 +3693 5295 0.4830 +3693 5338 0.4200 +3693 5354 0.5390 +3693 5362 0.4550 +3693 5578 0.6860 +3693 5579 0.6800 +3693 5582 0.6580 +3693 5627 0.4100 +3693 5649 0.6900 +3693 5747 0.9720 +3693 5829 0.9010 +3693 6347 0.5420 +3693 6382 0.6310 +3693 6387 0.5180 +3693 6678 0.4280 +3693 6696 0.9680 +3693 6714 0.9380 +3693 7040 0.7910 +3693 7042 0.6600 +3693 7043 0.6360 +3693 7045 0.4120 +3693 7057 0.8590 +3693 7058 0.8280 +3693 7059 0.8110 +3693 7060 0.7000 +3693 7094 0.9090 +3693 7143 0.6800 +3693 7148 0.6650 +3693 7168 0.6470 +3693 7169 0.6260 +3693 7170 0.5640 +3693 7171 0.6010 +3693 7408 0.7090 +3693 7412 0.4030 +3693 7414 0.9070 +3693 7448 0.9950 +3693 7450 0.7390 +3693 8515 0.9710 +3693 8516 0.8820 +3693 8728 0.5750 +3693 8747 0.4100 +3693 8751 0.5510 +3693 8754 0.6490 +3693 9564 0.8290 +3693 10085 0.4580 +3693 10174 0.8170 +3693 10220 0.4210 +3693 10298 0.9090 +3693 10319 0.7000 +3693 10398 0.6610 +3693 10459 0.4950 +3693 10461 0.4400 +3693 10580 0.8200 +3693 10627 0.5750 +3693 10631 0.7380 +3693 10979 0.6220 +3693 11117 0.5920 +3693 22798 0.7060 +3693 22801 0.9730 +3693 22918 0.4250 +3693 23129 0.4360 +3693 23421 0.4180 +3693 25802 0.5120 +3693 29780 0.7360 +3693 29895 0.5690 +3693 50509 0.5450 +3693 51129 0.4800 +3693 51429 0.5520 +3693 55742 0.7480 +3693 56924 0.4890 +3693 57144 0.5800 +3693 57381 0.5000 +3693 58498 0.5560 +3693 63923 0.6820 +3693 64098 0.7130 +3693 64759 0.4230 +3693 80781 0.5870 +3693 83660 0.8550 +3693 83700 0.4630 +3693 83706 0.4420 +3693 84978 0.6590 +3693 91937 0.4230 +3693 93408 0.5130 +3693 103910 0.5650 +3693 131873 0.6730 +3693 133584 0.4200 +3693 140465 0.5230 +3693 284217 0.8290 +3694 3695 0.9310 +3694 3696 0.9320 +3694 3852 0.4770 +3694 3908 0.7480 +3694 3909 0.8390 +3694 3910 0.8020 +3694 3911 0.7700 +3694 3912 0.7490 +3694 3913 0.6990 +3694 3914 0.8650 +3694 3915 0.7440 +3694 3918 0.8460 +3694 4052 0.6900 +3694 4054 0.7150 +3694 4065 0.4560 +3694 4067 0.4440 +3694 4233 0.5040 +3694 4239 0.4080 +3694 4321 0.7140 +3694 4322 0.4220 +3694 4323 0.4560 +3694 4486 0.4740 +3694 5578 0.6760 +3694 5579 0.6580 +3694 5582 0.6580 +3694 5594 0.6180 +3694 5649 0.6680 +3694 5747 0.9320 +3694 5937 0.5610 +3694 6278 0.7800 +3694 6696 0.7150 +3694 6714 0.9310 +3694 7040 0.9860 +3694 7042 0.8610 +3694 7043 0.7990 +3694 7046 0.4710 +3694 7057 0.7750 +3694 7058 0.7280 +3694 7059 0.7090 +3694 7060 0.7130 +3694 7094 0.9180 +3694 7143 0.9080 +3694 7148 0.9060 +3694 7408 0.7650 +3694 7414 0.5920 +3694 7448 0.7850 +3694 7450 0.7050 +3694 7464 0.4130 +3694 7791 0.4460 +3694 8111 0.4460 +3694 8425 0.5530 +3694 8515 0.9530 +3694 8516 0.8820 +3694 9564 0.6820 +3694 10117 0.5250 +3694 10319 0.7350 +3694 10456 0.4810 +3694 10979 0.4990 +3694 11117 0.5580 +3694 22798 0.7080 +3694 22801 0.9510 +3694 23129 0.4030 +3694 29780 0.7220 +3694 55612 0.6520 +3694 55742 0.7200 +3694 63923 0.9110 +3694 64098 0.7250 +3694 83660 0.8620 +3694 83706 0.4190 +3694 84467 0.5250 +3694 123041 0.5770 +3694 131873 0.7250 +3694 152816 0.5760 +3694 256764 0.5070 +3694 284217 0.6920 +3694 286077 0.5620 +3694 401138 0.5170 +3694 100526664 0.4460 +3695 3696 0.9170 +3695 3720 0.4190 +3695 3820 0.6030 +3695 3849 0.4470 +3695 3908 0.7070 +3695 3909 0.7030 +3695 3910 0.7300 +3695 3911 0.7190 +3695 3912 0.6840 +3695 3913 0.6740 +3695 3914 0.7280 +3695 3915 0.7210 +3695 3918 0.8220 +3695 4067 0.4160 +3695 4312 0.4270 +3695 5578 0.6800 +3695 5579 0.7120 +3695 5582 0.6640 +3695 5583 0.5890 +3695 5649 0.6760 +3695 5747 0.9510 +3695 5788 0.5830 +3695 5996 0.5070 +3695 6370 0.6580 +3695 6402 0.5190 +3695 6404 0.4210 +3695 6490 0.4340 +3695 6696 0.7240 +3695 6714 0.9260 +3695 7037 0.4220 +3695 7057 0.7340 +3695 7058 0.7180 +3695 7059 0.7120 +3695 7060 0.7140 +3695 7094 0.8700 +3695 7143 0.6800 +3695 7148 0.6700 +3695 7408 0.7060 +3695 7412 0.9740 +3695 7448 0.7570 +3695 7450 0.7190 +3695 7535 0.4620 +3695 8174 0.9950 +3695 8435 0.6070 +3695 8515 0.9620 +3695 8516 0.8600 +3695 8726 0.8240 +3695 9034 0.4490 +3695 9355 0.4140 +3695 9564 0.6750 +3695 10077 0.4170 +3695 10219 0.5430 +3695 10319 0.7170 +3695 10663 0.6130 +3695 10803 0.7860 +3695 10979 0.4130 +3695 11117 0.5690 +3695 22798 0.6580 +3695 22801 0.9580 +3695 29121 0.5150 +3695 29780 0.7350 +3695 50848 0.4370 +3695 55742 0.7140 +3695 57823 0.4630 +3695 58191 0.4970 +3695 63923 0.6810 +3695 64098 0.7590 +3695 83660 0.7920 +3695 83706 0.5520 +3695 131873 0.7120 +3695 137075 0.4080 +3695 202309 0.4100 +3695 284217 0.8020 +3696 3908 0.7270 +3696 3909 0.8200 +3696 3910 0.8280 +3696 3911 0.6940 +3696 3912 0.7860 +3696 3913 0.6570 +3696 3914 0.7320 +3696 3915 0.7080 +3696 3918 0.8440 +3696 3977 0.4680 +3696 4052 0.6430 +3696 4054 0.5790 +3696 4067 0.4250 +3696 4313 0.4360 +3696 4325 0.4430 +3696 4833 0.5740 +3696 4982 0.4710 +3696 5031 0.5040 +3696 5354 0.4220 +3696 5578 0.6870 +3696 5579 0.6830 +3696 5582 0.6570 +3696 5649 0.7990 +3696 5747 0.9330 +3696 6382 0.4210 +3696 6696 0.7320 +3696 6714 0.9270 +3696 7040 0.9830 +3696 7042 0.8000 +3696 7043 0.8090 +3696 7057 0.7750 +3696 7058 0.7400 +3696 7059 0.6820 +3696 7060 0.7120 +3696 7094 0.8120 +3696 7143 0.6840 +3696 7148 0.6800 +3696 7408 0.6720 +3696 7412 0.4180 +3696 7414 0.4370 +3696 7448 0.9360 +3696 7450 0.6900 +3696 7485 0.4560 +3696 8515 0.9690 +3696 8516 0.8690 +3696 9037 0.4290 +3696 9510 0.4140 +3696 9564 0.6770 +3696 10319 0.8290 +3696 10979 0.4080 +3696 11117 0.5510 +3696 22798 0.7160 +3696 22801 0.9670 +3696 22953 0.4950 +3696 29780 0.7200 +3696 29851 0.4010 +3696 50489 0.4450 +3696 51561 0.4170 +3696 54549 0.4050 +3696 55612 0.5060 +3696 55742 0.7340 +3696 63923 0.6770 +3696 64098 0.7240 +3696 64788 0.4200 +3696 80114 0.4070 +3696 83660 0.8080 +3696 83706 0.4070 +3696 84818 0.4260 +3696 131873 0.7320 +3696 256130 0.4850 +3696 284217 0.7910 +3697 3698 0.8350 +3697 3699 0.7240 +3697 3700 0.5930 +3697 3818 0.6330 +3697 3827 0.5280 +3697 4958 0.4470 +3697 5265 0.4850 +3697 5267 0.4330 +3697 5340 0.4290 +3697 5345 0.6960 +3697 5806 0.4570 +3697 6787 0.4800 +3697 7018 0.4500 +3697 7045 0.4430 +3697 7074 0.4430 +3697 7130 0.6370 +3697 7276 0.4060 +3697 7448 0.4740 +3697 10537 0.4020 +3697 26998 0.4030 +3697 51156 0.5490 +3697 55288 0.4180 +3697 55830 0.4470 +3697 116519 0.4370 +3697 148979 0.4160 +3697 256394 0.4090 +3698 3699 0.7870 +3698 3700 0.5620 +3698 3827 0.4770 +3698 3880 0.4840 +3698 4318 0.4520 +3698 5004 0.5130 +3698 5005 0.5140 +3698 5265 0.6850 +3698 5267 0.5830 +3698 5345 0.5630 +3698 5806 0.5400 +3698 6898 0.4510 +3698 6906 0.6550 +3698 7018 0.7330 +3698 7057 0.4960 +3698 7076 0.4350 +3698 7130 0.6380 +3698 7171 0.4600 +3698 7276 0.4790 +3698 7448 0.7580 +3698 9076 0.4780 +3698 51257 0.5580 +3698 54829 0.4750 +3698 55937 0.4280 +3698 56975 0.6560 +3698 85236 0.5000 +3698 114569 0.4940 +3698 116519 0.4010 +3698 390038 0.4990 +3699 3700 0.5720 +3699 3818 0.4200 +3699 3929 0.4050 +3699 3959 0.5930 +3699 5004 0.5240 +3699 5005 0.5740 +3699 5265 0.4710 +3699 5267 0.6130 +3699 5340 0.4020 +3699 5345 0.4710 +3699 5860 0.4770 +3699 5919 0.4530 +3699 6257 0.4430 +3699 6414 0.4630 +3699 6694 0.4860 +3699 6696 0.4680 +3699 6787 0.6120 +3699 6906 0.5190 +3699 7018 0.4240 +3699 7078 0.4180 +3699 7123 0.5350 +3699 7130 0.6270 +3699 7276 0.4310 +3699 7444 0.4920 +3699 7448 0.5380 +3699 7726 0.4980 +3699 8379 0.4380 +3699 8542 0.6300 +3699 9881 0.5270 +3699 22978 0.5340 +3699 23345 0.5090 +3699 26011 0.6460 +3699 26354 0.4210 +3699 26998 0.4350 +3699 51156 0.6280 +3699 55664 0.4850 +3699 55830 0.5170 +3699 55937 0.4200 +3699 57412 0.4990 +3699 64943 0.4080 +3699 79178 0.4160 +3699 91752 0.4300 +3699 116519 0.5080 +3699 116844 0.5300 +3699 256394 0.4790 +3699 286410 0.4320 +3700 3818 0.5040 +3700 3827 0.7230 +3700 3916 0.4180 +3700 3959 0.6200 +3700 4018 0.4620 +3700 4057 0.5350 +3700 4065 0.5700 +3700 4121 0.6130 +3700 4137 0.4050 +3700 4143 0.4530 +3700 4153 0.7490 +3700 4245 0.4480 +3700 4318 0.4370 +3700 4360 0.7270 +3700 4855 0.4020 +3700 4942 0.4510 +3700 5004 0.6490 +3700 5005 0.6230 +3700 5023 0.4900 +3700 5045 0.6560 +3700 5176 0.4970 +3700 5196 0.5150 +3700 5197 0.4630 +3700 5265 0.6690 +3700 5267 0.5470 +3700 5304 0.4120 +3700 5340 0.7150 +3700 5345 0.6010 +3700 5444 0.5090 +3700 5478 0.5950 +3700 5479 0.5440 +3700 5594 0.6410 +3700 5919 0.5470 +3700 6281 0.4290 +3700 6347 0.4760 +3700 6348 0.7890 +3700 6351 0.8360 +3700 6354 0.4490 +3700 6382 0.6490 +3700 6383 0.4890 +3700 6385 0.6090 +3700 6387 0.8110 +3700 6414 0.4370 +3700 6426 0.4720 +3700 6441 0.5090 +3700 6531 0.5420 +3700 6578 0.8770 +3700 6614 0.6390 +3700 6649 0.4550 +3700 6694 0.4720 +3700 6921 0.4100 +3700 6999 0.4760 +3700 7057 0.5620 +3700 7078 0.4210 +3700 7097 0.6260 +3700 7099 0.7040 +3700 7123 0.5320 +3700 7124 0.6110 +3700 7157 0.5590 +3700 7170 0.4470 +3700 7276 0.4560 +3700 7448 0.8460 +3700 7726 0.4050 +3700 7784 0.4650 +3700 7837 0.4470 +3700 7852 0.9990 +3700 8174 0.4740 +3700 8349 0.4310 +3700 8379 0.4210 +3700 9567 0.4540 +3700 9672 0.8410 +3700 9881 0.4760 +3700 9939 0.4520 +3700 10013 0.4420 +3700 10226 0.4950 +3700 10332 0.9690 +3700 10525 0.5200 +3700 10630 0.5650 +3700 10663 0.5390 +3700 10681 0.4980 +3700 10747 0.5320 +3700 10842 0.4910 +3700 10998 0.5380 +3700 11230 0.6330 +3700 22943 0.4400 +3700 22978 0.4380 +3700 23534 0.5870 +3700 23705 0.4510 +3700 25939 0.4530 +3700 27020 0.4900 +3700 27036 0.6000 +3700 27294 0.5310 +3700 30816 0.9930 +3700 30835 0.9980 +3700 50489 0.9270 +3700 50856 0.6510 +3700 51156 0.4250 +3700 51279 0.4190 +3700 51284 0.4820 +3700 51430 0.4660 +3700 54106 0.4520 +3700 55012 0.9720 +3700 55664 0.4850 +3700 57332 0.5170 +3700 59272 0.4390 +3700 60489 0.5300 +3700 64083 0.7780 +3700 79966 0.9970 +3700 80790 0.4320 +3700 85363 0.5120 +3700 92140 0.4840 +3700 93589 0.5250 +3700 116519 0.5700 +3700 116844 0.4410 +3700 133418 0.6210 +3700 137902 0.4470 +3700 147664 0.5510 +3700 170482 0.8080 +3700 440138 0.6140 +3700 641371 0.4540 +3700 728358 0.5240 +3700 100271846 0.4420 +3700 100526664 0.5680 +3700 102723407 0.4400 +3702 3725 0.5340 +3702 3791 0.4350 +3702 3815 0.4300 +3702 3820 0.5610 +3702 3824 0.4290 +3702 3937 0.9990 +3702 3965 0.6800 +3702 4063 0.4780 +3702 4067 0.9160 +3702 4068 0.8660 +3702 4540 0.4070 +3702 4690 0.9320 +3702 4868 0.4220 +3702 5174 0.6660 +3702 5290 0.9240 +3702 5291 0.9190 +3702 5293 0.9480 +3702 5294 0.9380 +3702 5295 0.9490 +3702 5296 0.9110 +3702 5335 0.9970 +3702 5336 0.6500 +3702 5341 0.5620 +3702 5478 0.6220 +3702 5551 0.6020 +3702 5579 0.5170 +3702 5588 0.6490 +3702 5777 0.6050 +3702 5781 0.6630 +3702 5788 0.7530 +3702 5829 0.4340 +3702 6093 0.4320 +3702 6304 0.4350 +3702 6402 0.4930 +3702 6452 0.5250 +3702 6464 0.6500 +3702 6504 0.5310 +3702 6654 0.6360 +3702 6714 0.9390 +3702 6774 0.4060 +3702 6775 0.5490 +3702 6776 0.4060 +3702 6777 0.4160 +3702 6778 0.5130 +3702 6813 0.5530 +3702 6850 0.7260 +3702 6932 0.4210 +3702 7006 0.9040 +3702 7124 0.4070 +3702 7294 0.9400 +3702 7409 0.9980 +3702 7410 0.9320 +3702 7454 0.8350 +3702 7535 0.9020 +3702 7704 0.4370 +3702 7827 0.6370 +3702 7852 0.4300 +3702 8320 0.5820 +3702 8503 0.9140 +3702 8546 0.4780 +3702 8631 0.5620 +3702 8651 0.5630 +3702 8676 0.5350 +3702 8841 0.4110 +3702 8915 0.5740 +3702 9047 0.8340 +3702 9402 0.9790 +3702 9564 0.4780 +3702 9595 0.4420 +3702 9806 0.4160 +3702 10014 0.4110 +3702 10125 0.7250 +3702 10225 0.7250 +3702 10320 0.6450 +3702 10451 0.9310 +3702 10537 0.4330 +3702 10657 0.8550 +3702 10663 0.5240 +3702 10750 0.6270 +3702 10782 0.4420 +3702 11140 0.4680 +3702 11151 0.5390 +3702 22914 0.5460 +3702 23533 0.9190 +3702 25998 0.5290 +3702 26228 0.6540 +3702 26499 0.5160 +3702 27033 0.5340 +3702 27040 0.9480 +3702 28988 0.4450 +3702 29760 0.4750 +3702 29851 0.8760 +3702 29909 0.5420 +3702 30009 0.7100 +3702 50615 0.4230 +3702 50852 0.8370 +3702 50943 0.6470 +3702 51052 0.4870 +3702 51176 0.4690 +3702 51284 0.5260 +3702 51311 0.4680 +3702 53347 0.6110 +3702 54900 0.4270 +3702 55243 0.7280 +3702 55335 0.5470 +3702 55340 0.4820 +3702 55423 0.4050 +3702 55843 0.4440 +3702 56253 0.4130 +3702 64919 0.5680 +3702 79037 0.4850 +3702 80342 0.6200 +3702 81704 0.4050 +3702 84061 0.6720 +3702 84063 0.7280 +3702 84433 0.6980 +3702 84623 0.6810 +3702 84868 0.6170 +3702 114836 0.5170 +3702 146850 0.9000 +3702 168537 0.4030 +3702 197358 0.4250 +3702 201294 0.5230 +3702 201633 0.4070 +3702 285220 0.4010 +3702 387357 0.6400 +3702 390714 0.5480 +3703 3921 0.5550 +3703 3998 0.4790 +3703 4245 0.5550 +3703 4809 0.4560 +3703 5034 0.4570 +3703 5469 0.6040 +3703 5660 0.4540 +3703 5714 0.4260 +3703 6122 0.5840 +3703 6123 0.5810 +3703 6124 0.8100 +3703 6125 0.8100 +3703 6128 0.8000 +3703 6129 0.6430 +3703 6130 0.8040 +3703 6132 0.8130 +3703 6133 0.8060 +3703 6135 0.8580 +3703 6136 0.8090 +3703 6137 0.7860 +3703 6138 0.8640 +3703 6139 0.6030 +3703 6141 0.8210 +3703 6142 0.7890 +3703 6143 0.5520 +3703 6144 0.8790 +3703 6146 0.5820 +3703 6147 0.7800 +3703 6152 0.7940 +3703 6154 0.5940 +3703 6155 0.7970 +3703 6156 0.7880 +3703 6157 0.8000 +3703 6158 0.7980 +3703 6159 0.5150 +3703 6160 0.8240 +3703 6161 0.7970 +3703 6164 0.7860 +3703 6165 0.8040 +3703 6166 0.5170 +3703 6167 0.7860 +3703 6168 0.7870 +3703 6169 0.7860 +3703 6170 0.4380 +3703 6173 0.5070 +3703 6175 0.8200 +3703 6184 0.9990 +3703 6185 0.9990 +3703 6187 0.6180 +3703 6188 0.5110 +3703 6189 0.4940 +3703 6193 0.4410 +3703 6194 0.4660 +3703 6201 0.4430 +3703 6202 0.5370 +3703 6203 0.4700 +3703 6205 0.4500 +3703 6206 0.4420 +3703 6207 0.4680 +3703 6209 0.4990 +3703 6217 0.5400 +3703 6218 0.4460 +3703 6222 0.4530 +3703 6223 0.4290 +3703 6224 0.4370 +3703 6227 0.4300 +3703 6228 0.4940 +3703 6229 0.4540 +3703 6230 0.5900 +3703 6231 0.4290 +3703 6233 0.4330 +3703 6234 0.4290 +3703 6388 0.5640 +3703 6400 0.6500 +3703 6745 0.9400 +3703 6746 0.9170 +3703 6747 0.9400 +3703 6748 0.9230 +3703 7072 0.5370 +3703 7110 0.4820 +3703 7184 0.5420 +3703 7311 0.7860 +3703 7841 0.9600 +3703 7991 0.9940 +3703 7994 0.4650 +3703 8668 0.5600 +3703 8813 0.5960 +3703 9045 0.8090 +3703 9276 0.4130 +3703 9349 0.8130 +3703 9601 0.6260 +3703 9695 0.4940 +3703 9732 0.5900 +3703 9761 0.8990 +3703 9789 0.4720 +3703 10130 0.6170 +3703 10195 0.6910 +3703 10399 0.4520 +3703 10430 0.4170 +3703 10458 0.4070 +3703 10473 0.5790 +3703 10525 0.5410 +3703 10557 0.4190 +3703 10952 0.9760 +3703 10972 0.4640 +3703 10985 0.6270 +3703 11222 0.5220 +3703 11224 0.5110 +3703 11231 0.7820 +3703 11253 0.5730 +3703 22820 0.5190 +3703 23065 0.7140 +3703 23193 0.5750 +3703 23480 0.8550 +3703 23521 0.6210 +3703 23640 0.4820 +3703 25873 0.8060 +3703 26523 0.4110 +3703 27044 0.4650 +3703 27161 0.4150 +3703 27248 0.4150 +3703 28972 0.5080 +3703 28998 0.5760 +3703 29093 0.5330 +3703 29126 0.5050 +3703 29880 0.6240 +3703 29926 0.4310 +3703 29927 0.9930 +3703 29929 0.6800 +3703 51009 0.4100 +3703 51065 0.5800 +3703 51069 0.5250 +3703 51073 0.5200 +3703 51116 0.4310 +3703 51121 0.5960 +3703 51154 0.6120 +3703 51319 0.4230 +3703 51386 0.4610 +3703 51726 0.4430 +3703 54431 0.4060 +3703 54434 0.4390 +3703 54948 0.4630 +3703 55176 0.8540 +3703 55651 0.4480 +3703 55741 0.4300 +3703 55757 0.6710 +3703 55829 0.4880 +3703 55971 0.4080 +3703 56052 0.5660 +3703 56886 0.7380 +3703 56926 0.5230 +3703 57003 0.5530 +3703 57171 0.9140 +3703 57685 0.4150 +3703 58477 0.5160 +3703 58505 0.9970 +3703 58515 0.5170 +3703 64374 0.5310 +3703 65003 0.4720 +3703 79053 0.6810 +3703 79073 0.4410 +3703 79087 0.7320 +3703 79590 0.5270 +3703 79868 0.4540 +3703 80267 0.5930 +3703 81502 0.4240 +3703 81567 0.4050 +3703 84061 0.9960 +3703 84233 0.4130 +3703 84920 0.9270 +3703 90407 0.4490 +3703 90701 0.4630 +3703 90850 0.4010 +3703 91304 0.4410 +3703 116496 0.5050 +3703 116832 0.4410 +3703 117531 0.6340 +3703 117532 0.7310 +3703 125972 0.4860 +3703 140801 0.5830 +3703 144245 0.9520 +3703 192669 0.4130 +3703 192670 0.4020 +3703 199857 0.4970 +3703 200185 0.9820 +3703 200916 0.5910 +3703 201595 0.9940 +3703 222662 0.5560 +3703 254268 0.5810 +3703 285855 0.6420 +3703 342125 0.4550 +3703 347487 0.4080 +3703 387129 0.5600 +3703 440026 0.4160 +3703 440138 0.6020 +3703 100128731 0.9990 +3703 100505478 0.5350 +3703 100526842 0.5990 +3703 100529097 0.5070 +3704 3735 0.4730 +3704 3804 0.4220 +3704 4337 0.8170 +3704 4351 0.4090 +3704 4521 0.4350 +3704 4522 0.4840 +3704 4524 0.5500 +3704 4552 0.5350 +3704 4830 0.9580 +3704 4831 0.9550 +3704 4832 0.9520 +3704 4833 0.9540 +3704 4881 0.9090 +3704 4882 0.9020 +3704 4907 0.9160 +3704 5136 0.9070 +3704 5137 0.9070 +3704 5138 0.9130 +3704 5139 0.9020 +3704 5140 0.9050 +3704 5145 0.9000 +3704 5146 0.9000 +3704 5147 0.9040 +3704 5148 0.9000 +3704 5149 0.9000 +3704 5152 0.9050 +3704 5153 0.9110 +3704 5158 0.9000 +3704 5167 0.9090 +3704 5169 0.9120 +3704 5313 0.9240 +3704 5315 0.9260 +3704 5464 0.4670 +3704 5471 0.5450 +3704 5631 0.4060 +3704 5723 0.4530 +3704 6175 0.4310 +3704 6189 0.6190 +3704 6240 0.8600 +3704 6301 0.5860 +3704 6470 0.5820 +3704 6573 0.5400 +3704 6821 0.4170 +3704 7083 0.4200 +3704 7172 0.9820 +3704 7298 0.9410 +3704 7372 0.5610 +3704 7498 0.4870 +3704 8192 0.4200 +3704 8382 0.5550 +3704 8565 0.5670 +3704 8623 0.5350 +3704 8654 0.9040 +3704 8833 0.9700 +3704 8886 0.4050 +3704 9153 0.4250 +3704 9525 0.4570 +3704 9583 0.9200 +3704 9600 0.4220 +3704 10201 0.9600 +3704 10257 0.5650 +3704 10465 0.6680 +3704 10599 0.4180 +3704 10845 0.4130 +3704 10846 0.9010 +3704 11164 0.4580 +3704 11212 0.4470 +3704 11252 0.4480 +3704 22888 0.4640 +3704 22894 0.6690 +3704 22978 0.9250 +3704 23438 0.4130 +3704 25885 0.4180 +3704 25943 0.5100 +3704 26519 0.4090 +3704 29922 0.9600 +3704 30833 0.9360 +3704 50940 0.9010 +3704 51022 0.7430 +3704 51154 0.4380 +3704 51251 0.9220 +3704 51314 0.6060 +3704 51699 0.8900 +3704 51727 0.4350 +3704 51728 0.5190 +3704 53938 0.4450 +3704 54361 0.4220 +3704 54512 0.4650 +3704 54974 0.4670 +3704 55034 0.4220 +3704 55270 0.8510 +3704 55276 0.4300 +3704 55364 0.6160 +3704 55811 0.9030 +3704 56474 0.8150 +3704 56915 0.5350 +3704 56953 0.9120 +3704 57136 0.5910 +3704 64078 0.4830 +3704 65992 0.4240 +3704 65993 0.5900 +3704 79077 0.5560 +3704 79873 0.4280 +3704 80273 0.4320 +3704 81688 0.4380 +3704 83475 0.4390 +3704 83594 0.4910 +3704 84172 0.5230 +3704 84618 0.9250 +3704 85441 0.6890 +3704 87178 0.6270 +3704 91875 0.7720 +3704 93034 0.9280 +3704 115024 0.9100 +3704 115752 0.6680 +3704 118460 0.4490 +3704 122622 0.9550 +3704 124583 0.9200 +3704 129563 0.6670 +3704 129607 0.4080 +3704 131870 0.9350 +3704 196883 0.9010 +3704 200895 0.4750 +3704 221264 0.9400 +3704 256281 0.4610 +3704 282617 0.8350 +3704 284131 0.6380 +3704 377841 0.9160 +3704 387338 0.4470 +3704 654364 0.9520 +3704 100526794 0.9290 +3704 102157402 0.8860 +3705 3706 0.9380 +3705 3707 0.9270 +3705 4952 0.5090 +3705 5594 0.5280 +3705 6327 0.4220 +3705 8622 0.4250 +3705 8821 0.9000 +3705 8867 0.4970 +3705 9562 0.9490 +3705 9612 0.5410 +3705 9677 0.6180 +3705 9807 0.5210 +3705 9946 0.5670 +3705 10050 0.4370 +3705 10846 0.4200 +3705 10987 0.4930 +3705 23328 0.5510 +3705 27124 0.9420 +3705 51166 0.5030 +3705 51477 0.4320 +3705 51562 0.5040 +3705 51763 0.9200 +3705 54919 0.5930 +3705 56981 0.5050 +3705 64768 0.9730 +3705 79178 0.4220 +3705 79758 0.5210 +3705 80271 0.9230 +3705 84290 0.4650 +3705 92565 0.4510 +3705 169792 0.4450 +3705 197322 0.4450 +3705 253430 0.9770 +3706 3707 0.9360 +3706 5283 0.4230 +3706 5330 0.7930 +3706 5331 0.7620 +3706 5332 0.7000 +3706 5333 0.7130 +3706 5335 0.7410 +3706 5336 0.7280 +3706 6529 0.4250 +3706 6543 0.4500 +3706 7402 0.4440 +3706 9196 0.4090 +3706 9562 0.9270 +3706 9651 0.7060 +3706 9807 0.7390 +3706 9899 0.4660 +3706 10458 0.4180 +3706 10777 0.4130 +3706 23007 0.6580 +3706 23158 0.4080 +3706 23236 0.7400 +3706 23416 0.4510 +3706 27124 0.9270 +3706 51196 0.7120 +3706 51447 0.6500 +3706 51763 0.9230 +3706 51806 0.4270 +3706 55359 0.4070 +3706 57030 0.4650 +3706 64768 0.4260 +3706 80271 0.9100 +3706 84812 0.6580 +3706 89869 0.6580 +3706 91860 0.4320 +3706 93408 0.4380 +3706 113026 0.6880 +3706 117283 0.7450 +3706 163688 0.4320 +3706 253430 0.9520 +3706 390259 0.4240 +3707 3708 0.4290 +3707 3710 0.4250 +3707 3725 0.4080 +3707 3937 0.4960 +3707 5330 0.7120 +3707 5331 0.6940 +3707 5332 0.6920 +3707 5333 0.7110 +3707 5335 0.8340 +3707 5336 0.7550 +3707 5365 0.4730 +3707 6714 0.4310 +3707 6778 0.5210 +3707 7535 0.4780 +3707 7738 0.4300 +3707 9258 0.4900 +3707 9562 0.9280 +3707 9651 0.6920 +3707 9807 0.7810 +3707 10197 0.5640 +3707 10672 0.4470 +3707 23007 0.6580 +3707 23236 0.7100 +3707 27124 0.9370 +3707 51196 0.6820 +3707 51447 0.6690 +3707 51763 0.9250 +3707 51806 0.4450 +3707 54209 0.4410 +3707 64768 0.4640 +3707 80271 0.9160 +3707 84812 0.7110 +3707 89869 0.6580 +3707 91860 0.4460 +3707 113026 0.6580 +3707 117283 0.7610 +3707 163688 0.4460 +3707 253430 0.9540 +3708 3709 0.9430 +3708 3710 0.9650 +3708 3748 0.5790 +3708 3752 0.4380 +3708 3778 0.5660 +3708 3783 0.6280 +3708 3784 0.4290 +3708 3827 0.4030 +3708 3958 0.4740 +3708 4067 0.5590 +3708 4155 0.4250 +3708 4170 0.7500 +3708 4287 0.9960 +3708 4690 0.5450 +3708 4744 0.4420 +3708 4842 0.9230 +3708 4907 0.4300 +3708 4915 0.4620 +3708 5137 0.4250 +3708 5166 0.8250 +3708 5245 0.4020 +3708 5289 0.4090 +3708 5310 0.4120 +3708 5311 0.6940 +3708 5330 0.9460 +3708 5331 0.9680 +3708 5332 0.9470 +3708 5333 0.9350 +3708 5335 0.9720 +3708 5336 0.9620 +3708 5371 0.5140 +3708 5481 0.5500 +3708 5515 0.4100 +3708 5519 0.4050 +3708 5521 0.5790 +3708 5523 0.4160 +3708 5525 0.4340 +3708 5527 0.4010 +3708 5528 0.4520 +3708 5530 0.6620 +3708 5532 0.6270 +3708 5533 0.4580 +3708 5534 0.6020 +3708 5566 0.9740 +3708 5567 0.9720 +3708 5568 0.9710 +3708 5573 0.5540 +3708 5575 0.5750 +3708 5576 0.5360 +3708 5577 0.5670 +3708 5578 0.9370 +3708 5579 0.9370 +3708 5580 0.4200 +3708 5582 0.9540 +3708 5592 0.9340 +3708 5593 0.7540 +3708 5595 0.5240 +3708 5663 0.9400 +3708 5664 0.9540 +3708 5728 0.5880 +3708 5860 0.5140 +3708 6095 0.9140 +3708 6262 0.6390 +3708 6263 0.6230 +3708 6310 0.4120 +3708 6311 0.9960 +3708 6314 0.4210 +3708 6503 0.4120 +3708 6543 0.4070 +3708 6546 0.5110 +3708 6547 0.4450 +3708 6616 0.6060 +3708 6654 0.5930 +3708 6712 0.5920 +3708 6714 0.4130 +3708 6774 0.5480 +3708 6786 0.9530 +3708 6804 0.5580 +3708 6812 0.5720 +3708 6844 0.5930 +3708 6850 0.6300 +3708 6861 0.5360 +3708 6863 0.5680 +3708 7009 0.6550 +3708 7157 0.5190 +3708 7220 0.9840 +3708 7222 0.9450 +3708 7223 0.7280 +3708 7224 0.6310 +3708 7225 0.7030 +3708 7226 0.5100 +3708 7353 0.4180 +3708 7408 0.5540 +3708 7409 0.6080 +3708 7415 0.5450 +3708 7416 0.9960 +3708 7417 0.7810 +3708 7419 0.4500 +3708 7442 0.4450 +3708 7466 0.5280 +3708 7494 0.5120 +3708 8220 0.4180 +3708 8443 0.5590 +3708 8506 0.6100 +3708 8526 0.4420 +3708 8654 0.7310 +3708 8671 0.5310 +3708 8678 0.9980 +3708 8826 0.5540 +3708 8989 0.4510 +3708 9001 0.5830 +3708 9033 0.5210 +3708 9209 0.6520 +3708 9217 0.6060 +3708 9229 0.4890 +3708 9290 0.5560 +3708 9451 0.4610 +3708 9454 0.9050 +3708 9455 0.8570 +3708 9456 0.9500 +3708 9474 0.6270 +3708 9478 0.6600 +3708 9495 0.5980 +3708 9568 0.4320 +3708 9630 0.6300 +3708 9709 0.4850 +3708 9759 0.5470 +3708 9840 0.9080 +3708 9868 0.5510 +3708 9927 0.7900 +3708 10017 0.5490 +3708 10059 0.4550 +3708 10105 0.9670 +3708 10125 0.6200 +3708 10134 0.7460 +3708 10142 0.5990 +3708 10211 0.5950 +3708 10235 0.5710 +3708 10280 0.9380 +3708 10335 0.9950 +3708 10367 0.7660 +3708 10399 0.5540 +3708 10411 0.4270 +3708 10524 0.9070 +3708 10613 0.7150 +3708 10645 0.4150 +3708 10681 0.5710 +3708 10768 0.9650 +3708 10939 0.4490 +3708 11069 0.4160 +3708 11076 0.4510 +3708 11160 0.9240 +3708 11273 0.9000 +3708 11315 0.7610 +3708 22871 0.4060 +3708 22905 0.4510 +3708 22926 0.5410 +3708 23071 0.9880 +3708 23092 0.6570 +3708 23154 0.4480 +3708 23236 0.9500 +3708 23241 0.7620 +3708 23413 0.7270 +3708 23596 0.4080 +3708 25814 0.4120 +3708 25946 0.6870 +3708 26031 0.4360 +3708 27040 0.4050 +3708 27185 0.5760 +3708 29760 0.5900 +3708 30001 0.7260 +3708 30011 0.5070 +3708 50944 0.6960 +3708 51024 0.4990 +3708 51196 0.9220 +3708 51643 0.5860 +3708 51764 0.5270 +3708 51806 0.9830 +3708 53373 0.4010 +3708 54205 0.9930 +3708 54331 0.5860 +3708 54795 0.5760 +3708 54822 0.5420 +3708 55013 0.4630 +3708 55024 0.7900 +3708 55040 0.4410 +3708 55107 0.6230 +3708 55177 0.6230 +3708 55669 0.5410 +3708 55970 0.5200 +3708 56605 0.6360 +3708 57192 0.4280 +3708 57620 0.7070 +3708 59341 0.5300 +3708 59345 0.5010 +3708 63933 0.4390 +3708 65018 0.6620 +3708 79054 0.4700 +3708 79753 0.4700 +3708 80024 0.5740 +3708 80036 0.4190 +3708 80228 0.8200 +3708 81790 0.8160 +3708 84812 0.9200 +3708 84876 0.8780 +3708 85450 0.5740 +3708 89869 0.9500 +3708 90550 0.8870 +3708 90993 0.4630 +3708 91404 0.4190 +3708 91689 0.4630 +3708 91860 0.9800 +3708 92552 0.9960 +3708 92737 0.5870 +3708 93129 0.6540 +3708 94235 0.5160 +3708 113026 0.9290 +3708 118987 0.4950 +3708 139341 0.5870 +3708 146057 0.4360 +3708 152330 0.6870 +3708 159371 0.4930 +3708 163688 0.9800 +3708 164633 0.4190 +3708 200186 0.4660 +3708 219931 0.5010 +3708 221154 0.7180 +3708 285362 0.8060 +3708 286097 0.4270 +3708 390714 0.5020 +3708 400668 0.4830 +3708 441925 0.9080 +3708 493856 0.4730 +3709 3710 0.9530 +3709 4067 0.6930 +3709 4287 0.9060 +3709 4690 0.5080 +3709 5330 0.9350 +3709 5331 0.9290 +3709 5332 0.9370 +3709 5333 0.9210 +3709 5335 0.9310 +3709 5336 0.9580 +3709 5530 0.6000 +3709 5532 0.5570 +3709 5534 0.5680 +3709 5566 0.9370 +3709 5567 0.9300 +3709 5568 0.9270 +3709 5573 0.5360 +3709 5575 0.5790 +3709 5576 0.5440 +3709 5577 0.5470 +3709 5578 0.9190 +3709 5579 0.9170 +3709 5582 0.9090 +3709 5663 0.9200 +3709 5664 0.9470 +3709 5957 0.5450 +3709 6011 0.6490 +3709 6262 0.5760 +3709 6263 0.5660 +3709 6311 0.9160 +3709 6444 0.4260 +3709 6445 0.4910 +3709 6616 0.5290 +3709 6654 0.5590 +3709 6786 0.8270 +3709 6804 0.4990 +3709 6812 0.5000 +3709 6844 0.5570 +3709 6850 0.7200 +3709 6861 0.5130 +3709 7103 0.4290 +3709 7220 0.8450 +3709 7222 0.9070 +3709 7223 0.5270 +3709 7409 0.5030 +3709 7416 0.7870 +3709 7417 0.4150 +3709 8082 0.7840 +3709 8424 0.4230 +3709 8826 0.5400 +3709 8989 0.4260 +3709 9217 0.4440 +3709 9495 0.4990 +3709 9568 0.4450 +3709 9630 0.6110 +3709 9815 0.4190 +3709 9840 0.5490 +3709 9927 0.4470 +3709 10017 0.4210 +3709 10125 0.5020 +3709 10235 0.5020 +3709 10280 0.4180 +3709 10335 0.9280 +3709 10367 0.4860 +3709 10369 0.4430 +3709 10681 0.5200 +3709 10768 0.6860 +3709 11273 0.9000 +3709 23025 0.4250 +3709 23236 0.9380 +3709 23241 0.4510 +3709 29760 0.7110 +3709 30011 0.5010 +3709 51196 0.9170 +3709 51764 0.5390 +3709 51806 0.9460 +3709 54331 0.6060 +3709 54795 0.4460 +3709 54822 0.6070 +3709 55024 0.6010 +3709 55177 0.4310 +3709 55277 0.5740 +3709 55327 0.5410 +3709 55970 0.5170 +3709 56776 0.4180 +3709 57620 0.5760 +3709 58538 0.7500 +3709 59345 0.5020 +3709 80228 0.7410 +3709 84181 0.4420 +3709 84812 0.9090 +3709 84876 0.7780 +3709 89869 0.9210 +3709 90550 0.5300 +3709 90993 0.4320 +3709 91860 0.9390 +3709 92552 0.9050 +3709 93129 0.5370 +3709 94235 0.5160 +3709 113026 0.9110 +3709 116966 0.4200 +3709 118788 0.4430 +3709 131890 0.6690 +3709 139341 0.9780 +3709 152330 0.4560 +3709 163688 0.9390 +3709 221154 0.4390 +3709 390714 0.5020 +3710 3783 0.6490 +3710 3827 0.4160 +3710 3954 0.4180 +3710 4008 0.4070 +3710 4067 0.5450 +3710 4170 0.7600 +3710 4287 0.9420 +3710 4318 0.4730 +3710 4690 0.5230 +3710 4695 0.4040 +3710 4697 0.4260 +3710 4705 0.4120 +3710 4842 0.9220 +3710 5166 0.8170 +3710 5310 0.4060 +3710 5311 0.6990 +3710 5330 0.9660 +3710 5331 0.9670 +3710 5332 0.9390 +3710 5333 0.9350 +3710 5335 0.9730 +3710 5336 0.9490 +3710 5371 0.6710 +3710 5481 0.5140 +3710 5530 0.5980 +3710 5532 0.5790 +3710 5534 0.5590 +3710 5566 0.9720 +3710 5567 0.9680 +3710 5568 0.9680 +3710 5573 0.5460 +3710 5575 0.5330 +3710 5576 0.5330 +3710 5577 0.5520 +3710 5578 0.9340 +3710 5579 0.9230 +3710 5582 0.9180 +3710 5592 0.7030 +3710 5663 0.9410 +3710 5664 0.9560 +3710 5728 0.5140 +3710 5860 0.5160 +3710 6262 0.6250 +3710 6263 0.6160 +3710 6311 0.9130 +3710 6546 0.4890 +3710 6616 0.6130 +3710 6654 0.5860 +3710 6714 0.4250 +3710 6774 0.5460 +3710 6786 0.9520 +3710 6804 0.5560 +3710 6812 0.5000 +3710 6844 0.5920 +3710 6850 0.6300 +3710 6861 0.5220 +3710 6863 0.5630 +3710 7009 0.6570 +3710 7220 0.9920 +3710 7222 0.9170 +3710 7223 0.7440 +3710 7224 0.6330 +3710 7225 0.8030 +3710 7226 0.5090 +3710 7409 0.5890 +3710 7415 0.5100 +3710 7416 0.9970 +3710 7417 0.7910 +3710 7419 0.4620 +3710 7442 0.4460 +3710 7466 0.5400 +3710 7494 0.5020 +3710 8085 0.4310 +3710 8314 0.6940 +3710 8424 0.6690 +3710 8678 0.9870 +3710 8826 0.5560 +3710 8900 0.4620 +3710 8989 0.4550 +3710 9033 0.4030 +3710 9217 0.7480 +3710 9218 0.4040 +3710 9451 0.4580 +3710 9454 0.5480 +3710 9455 0.6480 +3710 9456 0.8770 +3710 9474 0.4080 +3710 9495 0.5780 +3710 9630 0.6470 +3710 9840 0.8280 +3710 9868 0.9460 +3710 9914 0.4290 +3710 9927 0.8430 +3710 10017 0.4420 +3710 10059 0.4640 +3710 10097 0.4530 +3710 10105 0.9040 +3710 10125 0.6230 +3710 10134 0.7650 +3710 10235 0.5740 +3710 10280 0.9340 +3710 10335 0.9860 +3710 10367 0.7690 +3710 10399 0.5500 +3710 10411 0.4150 +3710 10613 0.4500 +3710 10681 0.5260 +3710 10768 0.8790 +3710 10875 0.4270 +3710 11069 0.4020 +3710 11160 0.4230 +3710 11273 0.9080 +3710 11315 0.8280 +3710 22926 0.5370 +3710 23071 0.5000 +3710 23236 0.9460 +3710 23241 0.7810 +3710 23413 0.6940 +3710 25827 0.8300 +3710 26191 0.4380 +3710 27185 0.5340 +3710 28964 0.4050 +3710 29760 0.5830 +3710 30001 0.5930 +3710 30011 0.5030 +3710 51024 0.5230 +3710 51196 0.9210 +3710 51393 0.4080 +3710 51643 0.8140 +3710 51764 0.5390 +3710 51806 0.9810 +3710 54205 0.9790 +3710 54331 0.5310 +3710 54708 0.4820 +3710 54795 0.5790 +3710 54822 0.5350 +3710 54899 0.4020 +3710 55013 0.5060 +3710 55024 0.7340 +3710 55107 0.6340 +3710 55177 0.7780 +3710 55669 0.5660 +3710 55970 0.5360 +3710 57192 0.4160 +3710 57620 0.7410 +3710 57661 0.4180 +3710 59341 0.5570 +3710 59345 0.5010 +3710 63933 0.4500 +3710 65018 0.6650 +3710 79054 0.4770 +3710 80024 0.6230 +3710 80228 0.8200 +3710 80271 0.4710 +3710 80834 0.5000 +3710 80835 0.4460 +3710 81790 0.6440 +3710 83756 0.5200 +3710 84812 0.9210 +3710 84876 0.8800 +3710 85450 0.6020 +3710 89869 0.9430 +3710 90550 0.8840 +3710 91404 0.4110 +3710 91689 0.4660 +3710 91860 0.9790 +3710 92552 0.9410 +3710 93129 0.6590 +3710 94235 0.5160 +3710 113026 0.9250 +3710 114879 0.4110 +3710 118987 0.5520 +3710 139341 0.6010 +3710 159371 0.4970 +3710 163688 0.9790 +3710 219931 0.4670 +3710 221154 0.7290 +3710 255022 0.4390 +3710 286097 0.4270 +3710 346562 0.5420 +3710 390714 0.5020 +3710 493856 0.4920 +3712 4329 0.6590 +3712 4594 0.4260 +3712 4728 0.4700 +3712 4942 0.4270 +3712 5019 0.4740 +3712 5095 0.8100 +3712 5096 0.8420 +3712 5162 0.4620 +3712 6296 0.4410 +3712 6342 0.6770 +3712 7915 0.5040 +3712 8659 0.6800 +3712 8802 0.5240 +3712 9085 0.4780 +3712 9399 0.5220 +3712 9425 0.4790 +3712 9607 0.5640 +3712 10157 0.4040 +3712 10249 0.4220 +3712 10449 0.6830 +3712 10455 0.9140 +3712 10587 0.4100 +3712 10840 0.4190 +3712 11112 0.5950 +3712 23382 0.4080 +3712 23600 0.4610 +3712 25961 0.4740 +3712 26027 0.4140 +3712 26063 0.4170 +3712 26275 0.7040 +3712 27034 0.5140 +3712 29958 0.6310 +3712 51004 0.5660 +3712 51031 0.4220 +3712 51084 0.6050 +3712 51497 0.6150 +3712 54511 0.4640 +3712 55066 0.4030 +3712 55268 0.6900 +3712 55862 0.5320 +3712 55902 0.5390 +3712 56922 0.9790 +3712 57226 0.4550 +3712 64064 0.4380 +3712 64087 0.9920 +3712 65985 0.4150 +3712 79611 0.4560 +3712 79746 0.4210 +3712 79777 0.4410 +3712 79783 0.4500 +3712 79944 0.4270 +3712 80724 0.4870 +3712 84263 0.7770 +3712 84320 0.4600 +3712 84532 0.5210 +3712 84693 0.5980 +3712 84842 0.4530 +3712 91452 0.4370 +3712 116285 0.4060 +3712 123876 0.5370 +3712 124359 0.4840 +3712 132949 0.5080 +3712 134526 0.4320 +3712 137872 0.4050 +3712 140856 0.4340 +3712 253175 0.4780 +3712 255252 0.4320 +3712 341392 0.4280 +3712 348158 0.5690 +3712 414149 0.4260 +3712 109703458 0.4130 +3713 3728 0.5540 +3713 3848 0.8920 +3713 3849 0.4030 +3713 3850 0.4210 +3713 3851 0.5650 +3713 3852 0.6420 +3713 3853 0.4040 +3713 3854 0.4220 +3713 3858 0.9330 +3713 3860 0.6330 +3713 3861 0.7020 +3713 3868 0.6770 +3713 3872 0.4270 +3713 3958 0.4220 +3713 4014 0.9990 +3713 5175 0.4190 +3713 5266 0.8340 +3713 5317 0.7650 +3713 5318 0.5170 +3713 5493 0.8850 +3713 5650 0.7020 +3713 5653 0.6270 +3713 6271 0.5840 +3713 6277 0.6560 +3713 6278 0.6160 +3713 6281 0.8050 +3713 6317 0.4760 +3713 6698 0.9630 +3713 6699 0.9670 +3713 6700 0.7760 +3713 6701 0.7540 +3713 6703 0.7090 +3713 6704 0.6660 +3713 6705 0.6110 +3713 6706 0.6620 +3713 6707 0.9430 +3713 7051 0.9890 +3713 7052 0.4930 +3713 7053 0.7460 +3713 7062 0.9880 +3713 7846 0.4230 +3713 8502 0.4990 +3713 9076 0.4230 +3713 9333 0.6990 +3713 11005 0.5280 +3713 11187 0.5300 +3713 23581 0.7700 +3713 25818 0.5090 +3713 26154 0.4640 +3713 26239 0.7100 +3713 26525 0.4150 +3713 49860 0.4780 +3713 51806 0.4600 +3713 54544 0.4610 +3713 57115 0.6330 +3713 84518 0.8340 +3713 84648 0.7500 +3713 85480 0.4270 +3713 114771 0.5930 +3713 126638 0.7850 +3713 147409 0.6160 +3713 148979 0.5720 +3713 149018 0.5940 +3713 163778 0.6580 +3713 199834 0.5750 +3713 254910 0.5830 +3713 353131 0.8560 +3713 353132 0.7130 +3713 353133 0.6580 +3713 353134 0.5980 +3713 353135 0.6100 +3713 353137 0.6350 +3713 353139 0.7670 +3713 353140 0.6960 +3713 353141 0.7230 +3713 353142 0.6520 +3713 353143 0.8430 +3713 353144 0.8280 +3713 353145 0.6800 +3713 374897 0.4590 +3713 388697 0.4830 +3713 388698 0.9950 +3713 414325 0.4140 +3713 448834 0.4050 +3713 448835 0.6510 +3713 653499 0.4660 +3714 3717 0.5260 +3714 3955 0.5210 +3714 4237 0.5120 +3714 4242 0.4910 +3714 4609 0.5280 +3714 4851 0.9990 +3714 4853 0.9990 +3714 4854 0.9990 +3714 4855 0.9990 +3714 4898 0.4220 +3714 5228 0.4660 +3714 5365 0.4360 +3714 5431 0.4920 +3714 5435 0.4630 +3714 5438 0.4520 +3714 5663 0.4630 +3714 5727 0.4010 +3714 5831 0.9490 +3714 5931 0.4400 +3714 5986 0.4110 +3714 6193 0.4100 +3714 6233 0.4660 +3714 6469 0.4980 +3714 6608 0.4040 +3714 6657 0.4110 +3714 6827 0.5230 +3714 6829 0.6560 +3714 6830 0.9000 +3714 6868 0.6470 +3714 7068 0.4750 +3714 7078 0.4280 +3714 7079 0.4250 +3714 7124 0.4050 +3714 7157 0.4200 +3714 7223 0.4520 +3714 7311 0.4100 +3714 7314 0.4420 +3714 7316 0.4420 +3714 7423 0.4870 +3714 7481 0.4640 +3714 7936 0.4470 +3714 8076 0.8320 +3714 8202 0.4430 +3714 8290 0.5190 +3714 8356 0.5190 +3714 8621 0.5690 +3714 8650 0.5210 +3714 8812 0.5130 +3714 9070 0.4930 +3714 9148 0.5730 +3714 9150 0.7290 +3714 9253 0.5310 +3714 9646 0.7040 +3714 9739 0.5810 +3714 9759 0.4700 +3714 9794 0.7370 +3714 9810 0.4420 +3714 9939 0.4200 +3714 10206 0.7790 +3714 10578 0.5110 +3714 10614 0.5760 +3714 11060 0.5600 +3714 11091 0.5310 +3714 11317 0.5090 +3714 23314 0.4140 +3714 23327 0.4290 +3714 23385 0.5200 +3714 23462 0.7470 +3714 23476 0.5680 +3714 23493 0.6890 +3714 23509 0.4620 +3714 26508 0.6210 +3714 27125 0.4740 +3714 28514 0.5100 +3714 29072 0.7530 +3714 29101 0.5930 +3714 51107 0.4240 +3714 51162 0.5760 +3714 51176 0.5160 +3714 51574 0.4740 +3714 51585 0.8640 +3714 51593 0.8680 +3714 51755 0.6040 +3714 54492 0.5830 +3714 54567 0.5940 +3714 54587 0.5750 +3714 54886 0.4420 +3714 55197 0.4780 +3714 55351 0.4140 +3714 55502 0.4460 +3714 55534 0.7180 +3714 55636 0.4780 +3714 55677 0.5880 +3714 55851 0.5750 +3714 56254 0.5430 +3714 56257 0.4400 +3714 56943 0.4750 +3714 57175 0.7550 +3714 57534 0.5400 +3714 57801 0.5860 +3714 58490 0.4610 +3714 79577 0.6940 +3714 79871 0.5070 +3714 83464 0.4710 +3714 84441 0.7420 +3714 123169 0.5950 +3714 142678 0.8660 +3714 192668 0.4060 +3714 347853 0.4950 +3714 388585 0.6540 +3714 440093 0.5190 +3714 440686 0.5190 +3714 441478 0.6410 +3714 653604 0.5190 +3716 3717 0.9990 +3716 3718 0.9990 +3716 3725 0.5440 +3716 3732 0.4190 +3716 3791 0.9470 +3716 3836 0.6810 +3716 3839 0.4600 +3716 3845 0.7960 +3716 3902 0.4080 +3716 3953 0.7320 +3716 3976 0.8210 +3716 3977 0.9780 +3716 4067 0.8360 +3716 4087 0.4390 +3716 4088 0.5310 +3716 4089 0.4470 +3716 4092 0.4170 +3716 4170 0.5670 +3716 4193 0.6880 +3716 4233 0.9170 +3716 4283 0.4660 +3716 4313 0.4760 +3716 4318 0.4790 +3716 4352 0.8130 +3716 4535 0.4300 +3716 4599 0.7530 +3716 4600 0.5900 +3716 4609 0.6540 +3716 4763 0.4270 +3716 4790 0.6750 +3716 4792 0.5020 +3716 4851 0.5310 +3716 4869 0.5190 +3716 4893 0.7140 +3716 4938 0.4990 +3716 4939 0.5650 +3716 5008 0.9070 +3716 5079 0.4150 +3716 5133 0.4980 +3716 5156 0.9190 +3716 5159 0.9210 +3716 5290 0.9690 +3716 5291 0.9330 +3716 5293 0.9450 +3716 5295 0.9390 +3716 5296 0.9210 +3716 5329 0.6090 +3716 5335 0.6850 +3716 5371 0.5180 +3716 5551 0.4460 +3716 5578 0.4020 +3716 5580 0.4950 +3716 5594 0.7450 +3716 5595 0.5940 +3716 5604 0.6180 +3716 5605 0.5710 +3716 5610 0.6750 +3716 5617 0.7630 +3716 5618 0.8950 +3716 5724 0.4100 +3716 5728 0.5680 +3716 5743 0.4070 +3716 5770 0.6950 +3716 5771 0.9610 +3716 5777 0.9780 +3716 5781 0.9940 +3716 5788 0.5410 +3716 5805 0.4230 +3716 5894 0.4380 +3716 5962 0.5150 +3716 5966 0.4250 +3716 5970 0.4820 +3716 6041 0.5210 +3716 6233 0.5430 +3716 6347 0.7810 +3716 6387 0.4230 +3716 6464 0.7830 +3716 6654 0.6150 +3716 6655 0.6420 +3716 6662 0.4620 +3716 6772 0.9990 +3716 6773 0.9960 +3716 6774 0.9990 +3716 6775 0.9880 +3716 6776 0.9990 +3716 6777 0.9990 +3716 6778 0.9960 +3716 6850 0.6270 +3716 6921 0.5990 +3716 6923 0.7590 +3716 7040 0.5110 +3716 7046 0.5400 +3716 7048 0.5150 +3716 7066 0.6180 +3716 7097 0.4800 +3716 7098 0.5540 +3716 7099 0.6760 +3716 7124 0.8280 +3716 7132 0.7040 +3716 7157 0.7740 +3716 7187 0.4840 +3716 7189 0.5140 +3716 7297 0.9980 +3716 7311 0.5240 +3716 7314 0.5510 +3716 7316 0.5590 +3716 7321 0.5700 +3716 7322 0.5640 +3716 7323 0.5710 +3716 7324 0.5090 +3716 7430 0.5500 +3716 7706 0.6050 +3716 7837 0.4580 +3716 7852 0.4810 +3716 8027 0.9120 +3716 8065 0.6080 +3716 8243 0.4380 +3716 8290 0.5260 +3716 8503 0.9470 +3716 8554 0.4440 +3716 8651 0.9990 +3716 8660 0.8350 +3716 8835 0.8050 +3716 9021 0.9990 +3716 9180 0.9920 +3716 9244 0.5740 +3716 9246 0.5870 +3716 9306 0.7660 +3716 9451 0.6020 +3716 9466 0.9780 +3716 9616 0.5930 +3716 9636 0.8040 +3716 9655 0.9200 +3716 9846 0.5200 +3716 10019 0.4960 +3716 10148 0.5640 +3716 10254 0.9580 +3716 10320 0.4720 +3716 10379 0.9940 +3716 10399 0.6410 +3716 10401 0.5900 +3716 10581 0.4990 +3716 10673 0.4600 +3716 10725 0.4200 +3716 10943 0.4720 +3716 11009 0.7630 +3716 11274 0.8580 +3716 22848 0.5910 +3716 23411 0.4650 +3716 23529 0.6090 +3716 23586 0.7530 +3716 23765 0.6170 +3716 25820 0.4730 +3716 25970 0.5200 +3716 26191 0.8570 +3716 27436 0.9240 +3716 29072 0.4290 +3716 29126 0.6030 +3716 29886 0.4360 +3716 29949 0.7790 +3716 30009 0.4780 +3716 30837 0.7860 +3716 50604 0.5170 +3716 50615 0.9820 +3716 50616 0.7790 +3716 50943 0.4820 +3716 51191 0.5880 +3716 51284 0.6810 +3716 51311 0.4360 +3716 53342 0.9130 +3716 53832 0.9460 +3716 53833 0.7640 +3716 54106 0.4660 +3716 54790 0.4580 +3716 54941 0.4540 +3716 55105 0.4060 +3716 55294 0.5810 +3716 55801 0.6870 +3716 56832 0.5100 +3716 57506 0.5390 +3716 58985 0.9860 +3716 59067 0.9380 +3716 59272 0.4810 +3716 64135 0.5900 +3716 80380 0.4120 +3716 81603 0.4290 +3716 83666 0.4140 +3716 84295 0.4430 +3716 84868 0.5310 +3716 85477 0.4300 +3716 85480 0.6600 +3716 87178 0.5240 +3716 91543 0.4170 +3716 114548 0.4170 +3716 114609 0.4080 +3716 115004 0.4390 +3716 116379 0.7140 +3716 122809 0.8790 +3716 133396 0.9690 +3716 137902 0.4560 +3716 149233 0.7860 +3716 152789 0.6690 +3716 163702 0.9990 +3716 171023 0.4630 +3716 246778 0.6210 +3716 282616 0.9030 +3716 282617 0.8220 +3716 282618 0.9110 +3716 286530 0.4370 +3716 338376 0.5100 +3716 339287 0.4920 +3716 386653 0.8030 +3717 3718 0.9750 +3717 3725 0.6210 +3717 3791 0.9260 +3717 3815 0.7070 +3717 3845 0.8500 +3717 3902 0.4080 +3717 3952 0.9660 +3717 3953 0.9990 +3717 3976 0.7250 +3717 3977 0.9800 +3717 4000 0.5470 +3717 4005 0.5940 +3717 4067 0.9310 +3717 4087 0.4760 +3717 4088 0.4780 +3717 4089 0.5350 +3717 4140 0.4390 +3717 4170 0.6350 +3717 4193 0.4830 +3717 4217 0.4780 +3717 4233 0.9200 +3717 4254 0.6540 +3717 4277 0.4960 +3717 4283 0.4880 +3717 4292 0.4500 +3717 4297 0.4570 +3717 4300 0.4130 +3717 4313 0.5230 +3717 4318 0.6210 +3717 4352 0.9820 +3717 4353 0.4080 +3717 4478 0.5730 +3717 4599 0.4500 +3717 4609 0.6340 +3717 4763 0.5490 +3717 4780 0.4470 +3717 4790 0.6570 +3717 4792 0.5700 +3717 4824 0.4040 +3717 4851 0.6410 +3717 4852 0.5540 +3717 4853 0.4350 +3717 4855 0.5220 +3717 4869 0.6440 +3717 4893 0.8520 +3717 4921 0.4680 +3717 4939 0.5560 +3717 5008 0.9190 +3717 5058 0.5040 +3717 5079 0.6730 +3717 5133 0.4710 +3717 5140 0.4500 +3717 5156 0.9290 +3717 5159 0.9540 +3717 5175 0.4100 +3717 5290 0.9800 +3717 5291 0.9350 +3717 5293 0.9380 +3717 5294 0.7140 +3717 5295 0.9870 +3717 5296 0.9230 +3717 5315 0.6440 +3717 5335 0.9670 +3717 5336 0.9280 +3717 5340 0.4750 +3717 5443 0.4640 +3717 5468 0.6890 +3717 5478 0.4570 +3717 5516 0.4280 +3717 5566 0.5260 +3717 5580 0.5200 +3717 5584 0.4080 +3717 5594 0.7940 +3717 5595 0.7830 +3717 5599 0.5180 +3717 5604 0.7570 +3717 5605 0.5660 +3717 5617 0.9510 +3717 5618 0.9950 +3717 5688 0.4080 +3717 5724 0.4270 +3717 5728 0.7940 +3717 5743 0.5280 +3717 5747 0.9620 +3717 5753 0.4280 +3717 5770 0.9800 +3717 5771 0.9570 +3717 5777 0.9840 +3717 5781 0.9980 +3717 5782 0.4490 +3717 5788 0.7280 +3717 5805 0.5180 +3717 5894 0.8030 +3717 5962 0.6420 +3717 5966 0.4980 +3717 5970 0.6520 +3717 5971 0.4270 +3717 6199 0.4080 +3717 6233 0.5570 +3717 6256 0.4330 +3717 6347 0.6020 +3717 6348 0.4200 +3717 6373 0.4050 +3717 6387 0.5410 +3717 6427 0.7000 +3717 6464 0.9930 +3717 6498 0.4630 +3717 6500 0.5830 +3717 6502 0.4360 +3717 6591 0.4010 +3717 6598 0.4220 +3717 6615 0.4700 +3717 6654 0.6740 +3717 6655 0.5230 +3717 6657 0.4040 +3717 6714 0.9170 +3717 6772 0.9990 +3717 6773 0.9910 +3717 6774 0.9990 +3717 6775 0.9770 +3717 6776 0.9990 +3717 6777 0.9990 +3717 6778 0.9910 +3717 6850 0.8510 +3717 6921 0.6460 +3717 6923 0.6410 +3717 7006 0.5640 +3717 7015 0.5960 +3717 7037 0.4130 +3717 7040 0.5940 +3717 7066 0.9190 +3717 7078 0.4820 +3717 7079 0.4150 +3717 7097 0.5330 +3717 7098 0.4500 +3717 7099 0.7930 +3717 7124 0.8010 +3717 7128 0.4160 +3717 7132 0.7020 +3717 7157 0.7280 +3717 7189 0.6000 +3717 7297 0.9970 +3717 7307 0.6660 +3717 7311 0.5240 +3717 7314 0.5480 +3717 7316 0.5650 +3717 7321 0.5780 +3717 7322 0.5640 +3717 7323 0.5630 +3717 7403 0.4310 +3717 7409 0.8940 +3717 7412 0.4800 +3717 7415 0.4680 +3717 7423 0.4150 +3717 7428 0.5820 +3717 7430 0.6460 +3717 7490 0.5210 +3717 7525 0.5600 +3717 7529 0.5090 +3717 7534 0.6500 +3717 7535 0.4990 +3717 7837 0.5550 +3717 7852 0.8740 +3717 8027 0.9740 +3717 8031 0.4150 +3717 8065 0.6370 +3717 8087 0.4250 +3717 8233 0.6070 +3717 8243 0.5630 +3717 8289 0.4010 +3717 8290 0.6080 +3717 8356 0.4700 +3717 8454 0.5920 +3717 8471 0.9210 +3717 8493 0.4530 +3717 8503 0.9390 +3717 8517 0.4220 +3717 8546 0.5380 +3717 8554 0.6310 +3717 8600 0.4240 +3717 8651 0.9990 +3717 8660 0.9790 +3717 8805 0.5190 +3717 8835 0.9740 +3717 8844 0.4720 +3717 8850 0.4220 +3717 8945 0.6350 +3717 8973 0.9000 +3717 9021 0.9990 +3717 9034 0.4240 +3717 9061 0.4060 +3717 9093 0.6770 +3717 9138 0.6230 +3717 9180 0.9230 +3717 9244 0.5940 +3717 9306 0.9370 +3717 9332 0.4310 +3717 9370 0.4270 +3717 9437 0.5000 +3717 9444 0.5620 +3717 9466 0.9530 +3717 9475 0.4730 +3717 9611 0.4330 +3717 9616 0.6050 +3717 9636 0.4740 +3717 9655 0.9520 +3717 9846 0.6080 +3717 9976 0.4900 +3717 9978 0.5960 +3717 10013 0.5130 +3717 10018 0.6430 +3717 10019 0.9880 +3717 10142 0.4650 +3717 10148 0.5550 +3717 10155 0.4350 +3717 10254 0.9830 +3717 10273 0.4910 +3717 10320 0.6190 +3717 10346 0.4130 +3717 10379 0.5300 +3717 10399 0.4740 +3717 10401 0.4980 +3717 10419 0.9100 +3717 10499 0.5060 +3717 10533 0.5870 +3717 10603 0.8310 +3717 10663 0.7080 +3717 10673 0.4690 +3717 10735 0.5210 +3717 10803 0.7000 +3717 10827 0.4110 +3717 10870 0.4890 +3717 22848 0.4770 +3717 22906 0.4090 +3717 22914 0.5730 +3717 23164 0.4130 +3717 23411 0.4360 +3717 23484 0.4270 +3717 23529 0.6230 +3717 23533 0.5680 +3717 23586 0.5270 +3717 23635 0.5450 +3717 23765 0.4290 +3717 25759 0.9100 +3717 25970 0.9920 +3717 26040 0.6260 +3717 27044 0.4350 +3717 27436 0.9290 +3717 28954 0.4170 +3717 29072 0.4870 +3717 29110 0.4660 +3717 29126 0.6900 +3717 29949 0.5560 +3717 30009 0.4220 +3717 30061 0.5400 +3717 30837 0.9460 +3717 50604 0.5390 +3717 50615 0.7310 +3717 50616 0.6930 +3717 50943 0.4770 +3717 51185 0.4350 +3717 51284 0.5090 +3717 51311 0.4830 +3717 51561 0.9340 +3717 51806 0.7950 +3717 53342 0.9130 +3717 53347 0.4080 +3717 53358 0.9130 +3717 53832 0.6960 +3717 53833 0.7860 +3717 54106 0.4090 +3717 54205 0.4650 +3717 54741 0.4580 +3717 54790 0.9170 +3717 54806 0.7970 +3717 54845 0.4170 +3717 55109 0.4160 +3717 55294 0.5290 +3717 55500 0.4530 +3717 55737 0.4830 +3717 55750 0.4900 +3717 55759 0.4240 +3717 56829 0.4640 +3717 57019 0.4340 +3717 57085 0.4580 +3717 57650 0.4410 +3717 57670 0.4370 +3717 57817 0.6880 +3717 58985 0.7340 +3717 59272 0.4090 +3717 60489 0.4360 +3717 63035 0.4750 +3717 64127 0.4490 +3717 64135 0.4250 +3717 64220 0.6870 +3717 79165 0.4170 +3717 79184 0.4060 +3717 79465 0.5160 +3717 80312 0.4380 +3717 80328 0.5110 +3717 80329 0.4970 +3717 80380 0.6520 +3717 80853 0.4510 +3717 81027 0.5020 +3717 81608 0.7250 +3717 83666 0.6570 +3717 84295 0.6640 +3717 84708 0.4110 +3717 84868 0.4230 +3717 84959 0.4240 +3717 85477 0.4390 +3717 85480 0.6300 +3717 91860 0.7910 +3717 94025 0.5730 +3717 112744 0.4220 +3717 114548 0.4240 +3717 116379 0.6950 +3717 122809 0.9540 +3717 133396 0.5590 +3717 133482 0.4690 +3717 137902 0.5530 +3717 140885 0.6460 +3717 149233 0.9950 +3717 153090 0.4620 +3717 163688 0.7910 +3717 163702 0.8590 +3717 171023 0.8810 +3717 200424 0.4240 +3717 203068 0.5050 +3717 219285 0.4160 +3717 246778 0.6050 +3717 286530 0.7590 +3717 375033 0.4120 +3717 386653 0.6170 +3717 388585 0.7420 +3717 399694 0.9050 +3717 440093 0.4690 +3717 440686 0.4690 +3717 653604 0.4690 +3717 102723407 0.4740 +3718 3725 0.4320 +3718 3815 0.4900 +3718 3845 0.7640 +3718 3953 0.7970 +3718 3977 0.9430 +3718 4089 0.4960 +3718 4170 0.4570 +3718 4192 0.5630 +3718 4292 0.4600 +3718 4352 0.7780 +3718 4535 0.4120 +3718 4609 0.6570 +3718 4763 0.4520 +3718 4772 0.5100 +3718 4790 0.4820 +3718 4851 0.6270 +3718 4869 0.5750 +3718 4893 0.7760 +3718 5008 0.8590 +3718 5079 0.4330 +3718 5156 0.7370 +3718 5159 0.7290 +3718 5290 0.9670 +3718 5291 0.9230 +3718 5293 0.9370 +3718 5295 0.9320 +3718 5296 0.9250 +3718 5443 0.4370 +3718 5465 0.4470 +3718 5551 0.4710 +3718 5617 0.7620 +3718 5618 0.8300 +3718 5728 0.5450 +3718 5764 0.5190 +3718 5771 0.9710 +3718 5777 0.9380 +3718 5781 0.9620 +3718 5788 0.7590 +3718 5896 0.6940 +3718 6464 0.6230 +3718 6598 0.5150 +3718 6654 0.5500 +3718 6655 0.5960 +3718 6772 0.9920 +3718 6773 0.9820 +3718 6774 0.9980 +3718 6775 0.9730 +3718 6776 0.9980 +3718 6777 0.9970 +3718 6778 0.9900 +3718 6850 0.6210 +3718 6932 0.5040 +3718 7040 0.4380 +3718 7066 0.4530 +3718 7099 0.4140 +3718 7124 0.5630 +3718 7157 0.5660 +3718 7185 0.5650 +3718 7297 0.9060 +3718 7535 0.5050 +3718 7852 0.9140 +3718 8027 0.9860 +3718 8243 0.5150 +3718 8290 0.5340 +3718 8356 0.5310 +3718 8503 0.9130 +3718 8517 0.4340 +3718 8651 0.9660 +3718 8660 0.5930 +3718 8835 0.8440 +3718 9021 0.9390 +3718 9180 0.8480 +3718 9306 0.7390 +3718 9466 0.7150 +3718 9655 0.8110 +3718 9846 0.5000 +3718 10019 0.5090 +3718 10254 0.9900 +3718 10320 0.5730 +3718 10419 0.4180 +3718 10617 0.4070 +3718 10663 0.7080 +3718 10673 0.4060 +3718 10803 0.7070 +3718 22806 0.6010 +3718 22914 0.4110 +3718 25970 0.4610 +3718 26040 0.4680 +3718 27436 0.9290 +3718 29126 0.4380 +3718 30009 0.4430 +3718 30837 0.7800 +3718 50604 0.5250 +3718 50615 0.9450 +3718 50616 0.6610 +3718 50943 0.4970 +3718 51176 0.5280 +3718 51665 0.4580 +3718 51666 0.5670 +3718 51676 0.6100 +3718 51806 0.4080 +3718 53832 0.7120 +3718 53833 0.7010 +3718 54790 0.4830 +3718 55294 0.6020 +3718 58985 0.7130 +3718 59067 0.9420 +3718 63035 0.4070 +3718 64421 0.4800 +3718 81704 0.4200 +3718 84295 0.5280 +3718 85480 0.4460 +3718 116379 0.6770 +3718 122809 0.8160 +3718 149233 0.7560 +3718 163702 0.7120 +3718 171023 0.4720 +3718 440093 0.5290 +3718 440686 0.5280 +3718 653604 0.5280 +3720 4508 0.8900 +3720 4509 0.4670 +3720 4609 0.4230 +3720 4720 0.4750 +3720 4736 0.4550 +3720 5079 0.4170 +3720 5252 0.9820 +3720 5431 0.4500 +3720 5432 0.4750 +3720 5460 0.6110 +3720 5469 0.4630 +3720 5618 0.4220 +3720 5928 0.9990 +3720 5929 0.6140 +3720 5931 0.9950 +3720 5978 0.4500 +3720 6015 0.7290 +3720 6045 0.7480 +3720 6046 0.4920 +3720 6122 0.4180 +3720 6123 0.4180 +3720 6125 0.5460 +3720 6132 0.4520 +3720 6133 0.4630 +3720 6135 0.6070 +3720 6139 0.4350 +3720 6147 0.4560 +3720 6175 0.4980 +3720 6182 0.4840 +3720 6187 0.4910 +3720 6188 0.6520 +3720 6193 0.4940 +3720 6203 0.4750 +3720 6205 0.5060 +3720 6208 0.4630 +3720 6209 0.5100 +3720 6222 0.6090 +3720 6233 0.7980 +3720 6235 0.4180 +3720 6299 0.4810 +3720 6597 0.4820 +3720 6657 0.4500 +3720 6772 0.4580 +3720 6839 0.4580 +3720 6910 0.4110 +3720 7284 0.6370 +3720 7311 0.8040 +3720 7314 0.4890 +3720 7316 0.7970 +3720 7386 0.5100 +3720 7403 0.5490 +3720 7468 0.4210 +3720 7528 0.6270 +3720 7703 0.6290 +3720 7994 0.4020 +3720 8289 0.4400 +3720 8290 0.8790 +3720 8329 0.4130 +3720 8330 0.4130 +3720 8331 0.6350 +3720 8332 0.4130 +3720 8334 0.6400 +3720 8336 0.4160 +3720 8337 0.9230 +3720 8338 0.9100 +3720 8340 0.6550 +3720 8341 0.6560 +3720 8342 0.6550 +3720 8345 0.6540 +3720 8347 0.6540 +3720 8348 0.6560 +3720 8349 0.7400 +3720 8356 0.9380 +3720 8361 0.6590 +3720 8535 0.7360 +3720 8726 0.9990 +3720 8802 0.4770 +3720 8969 0.4130 +3720 8970 0.7460 +3720 9070 0.4340 +3720 9296 0.4770 +3720 9314 0.4190 +3720 9343 0.4480 +3720 9349 0.4950 +3720 9533 0.4800 +3720 9551 0.4580 +3720 9556 0.6140 +3720 9739 0.5070 +3720 9869 0.7840 +3720 9898 0.4700 +3720 10102 0.4620 +3720 10138 0.4760 +3720 10336 0.6210 +3720 10389 0.6690 +3720 10476 0.7560 +3720 10632 0.5850 +3720 10664 0.5940 +3720 10919 0.7870 +3720 11091 0.4230 +3720 11128 0.4740 +3720 11222 0.4180 +3720 11224 0.4990 +3720 22823 0.9980 +3720 22984 0.4740 +3720 22992 0.5070 +3720 23028 0.5600 +3720 23030 0.5400 +3720 23067 0.4360 +3720 23135 0.6270 +3720 23210 0.5160 +3720 23293 0.4710 +3720 23411 0.4880 +3720 23429 0.7090 +3720 23466 0.5260 +3720 23492 0.7900 +3720 23512 0.9990 +3720 23640 0.4270 +3720 25885 0.4740 +3720 26122 0.4180 +3720 26147 0.9950 +3720 29072 0.4310 +3720 29093 0.4350 +3720 29927 0.4610 +3720 29947 0.5550 +3720 51069 0.4330 +3720 51081 0.4330 +3720 51154 0.4680 +3720 54145 0.7450 +3720 54897 0.4150 +3720 54948 0.4270 +3720 55028 0.4580 +3720 55176 0.4630 +3720 55252 0.5190 +3720 55272 0.4750 +3720 55316 0.4180 +3720 55506 0.5440 +3720 55703 0.4420 +3720 55766 0.6390 +3720 55818 0.5140 +3720 57167 0.4100 +3720 57332 0.5490 +3720 63875 0.4500 +3720 63931 0.4180 +3720 63978 0.4100 +3720 64324 0.4140 +3720 64374 0.4270 +3720 64963 0.4630 +3720 64969 0.5060 +3720 65008 0.4490 +3720 79631 0.4460 +3720 79697 0.4100 +3720 79813 0.5720 +3720 79923 0.5910 +3720 80816 0.4070 +3720 80853 0.4710 +3720 84108 0.6230 +3720 84172 0.4420 +3720 84333 0.5870 +3720 84444 0.4140 +3720 84458 0.7560 +3720 84678 0.7800 +3720 84733 0.7270 +3720 84759 0.6740 +3720 84833 0.6140 +3720 85235 0.4130 +3720 85236 0.7520 +3720 85476 0.4460 +3720 94239 0.6140 +3720 121536 0.9990 +3720 126402 0.4330 +3720 128312 0.6560 +3720 132625 0.5500 +3720 138715 0.4090 +3720 140801 0.4270 +3720 171023 0.7050 +3720 221037 0.4010 +3720 221656 0.4510 +3720 255626 0.6570 +3720 267020 0.5850 +3720 340602 0.4670 +3720 387640 0.4080 +3720 387893 0.4180 +3720 404281 0.4010 +3720 440093 0.8780 +3720 440686 0.8890 +3720 474382 0.6390 +3720 653604 0.9420 +3720 723790 0.4130 +3720 100170841 0.9140 +3720 100526842 0.4350 +3720 100532731 0.6630 +3725 3726 0.9990 +3725 3727 0.9990 +3725 3791 0.4990 +3725 3815 0.4520 +3725 3831 0.5340 +3725 3845 0.6240 +3725 3952 0.5480 +3725 3958 0.4560 +3725 3960 0.6820 +3725 3977 0.4650 +3725 4000 0.4940 +3725 4001 0.5350 +3725 4008 0.6250 +3725 4015 0.5130 +3725 4040 0.4080 +3725 4041 0.5220 +3725 4052 0.5040 +3725 4067 0.6730 +3725 4087 0.9250 +3725 4088 0.9970 +3725 4089 0.9890 +3725 4091 0.4250 +3725 4092 0.6830 +3725 4094 0.9930 +3725 4097 0.7020 +3725 4130 0.4510 +3725 4131 0.4540 +3725 4139 0.4290 +3725 4150 0.7020 +3725 4155 0.4730 +3725 4170 0.6560 +3725 4193 0.8030 +3725 4194 0.5240 +3725 4204 0.5370 +3725 4205 0.5210 +3725 4208 0.4980 +3725 4209 0.4870 +3725 4214 0.8720 +3725 4216 0.4510 +3725 4217 0.8580 +3725 4233 0.5410 +3725 4282 0.6150 +3725 4286 0.9230 +3725 4288 0.6110 +3725 4293 0.4540 +3725 4294 0.4730 +3725 4296 0.6490 +3725 4301 0.5250 +3725 4303 0.5000 +3725 4312 0.8420 +3725 4313 0.6330 +3725 4314 0.5870 +3725 4316 0.5170 +3725 4318 0.8660 +3725 4322 0.5750 +3725 4323 0.4110 +3725 4343 0.5690 +3725 4353 0.4670 +3725 4436 0.6430 +3725 4493 0.4180 +3725 4520 0.5530 +3725 4535 0.4090 +3725 4599 0.5600 +3725 4602 0.5410 +3725 4605 0.5430 +3725 4609 0.9700 +3725 4610 0.4190 +3725 4613 0.4490 +3725 4616 0.7020 +3725 4654 0.7180 +3725 4656 0.7180 +3725 4691 0.6290 +3725 4734 0.5110 +3725 4763 0.4460 +3725 4772 0.9630 +3725 4773 0.9980 +3725 4774 0.4990 +3725 4775 0.5220 +3725 4776 0.6750 +3725 4778 0.6250 +3725 4779 0.5340 +3725 4780 0.9200 +3725 4781 0.4920 +3725 4782 0.4830 +3725 4783 0.4620 +3725 4784 0.5890 +3725 4790 0.9940 +3725 4791 0.5250 +3725 4792 0.9080 +3725 4793 0.6370 +3725 4800 0.6780 +3725 4802 0.5020 +3725 4803 0.6520 +3725 4804 0.4780 +3725 4841 0.5030 +3725 4843 0.5340 +3725 4846 0.5430 +3725 4851 0.6030 +3725 4854 0.5230 +3725 4855 0.5410 +3725 4878 0.4240 +3725 4893 0.5100 +3725 4901 0.5330 +3725 4904 0.4090 +3725 4914 0.5430 +3725 4915 0.4730 +3725 4928 0.4220 +3725 4929 0.6230 +3725 4938 0.5380 +3725 4939 0.5200 +3725 4953 0.4200 +3725 4968 0.5290 +3725 4969 0.4680 +3725 4988 0.4420 +3725 5008 0.4170 +3725 5052 0.5820 +3725 5054 0.5860 +3725 5159 0.6570 +3725 5175 0.4380 +3725 5241 0.6640 +3725 5243 0.4310 +3725 5266 0.4010 +3725 5290 0.6460 +3725 5291 0.5080 +3725 5294 0.5960 +3725 5295 0.6150 +3725 5296 0.4240 +3725 5300 0.6420 +3725 5308 0.4350 +3725 5315 0.4130 +3725 5321 0.5230 +3725 5327 0.4050 +3725 5328 0.5160 +3725 5335 0.6020 +3725 5336 0.4070 +3725 5340 0.4180 +3725 5347 0.4300 +3725 5366 0.5020 +3725 5371 0.7790 +3725 5443 0.4180 +3725 5449 0.6500 +3725 5451 0.6780 +3725 5460 0.4800 +3725 5465 0.9790 +3725 5467 0.6540 +3725 5468 0.8490 +3725 5469 0.9110 +3725 5499 0.5410 +3725 5501 0.5730 +3725 5515 0.4100 +3725 5530 0.6830 +3725 5532 0.4050 +3725 5566 0.9630 +3725 5567 0.9630 +3725 5568 0.9630 +3725 5578 0.5700 +3725 5580 0.4250 +3725 5582 0.5310 +3725 5587 0.7020 +3725 5590 0.4310 +3725 5591 0.5940 +3725 5594 0.9980 +3725 5595 0.9870 +3725 5597 0.8460 +3725 5598 0.6920 +3725 5599 0.9990 +3725 5600 0.9710 +3725 5601 0.9990 +3725 5603 0.9680 +3725 5604 0.8080 +3725 5605 0.5900 +3725 5606 0.7860 +3725 5607 0.6620 +3725 5608 0.5780 +3725 5609 0.9150 +3725 5610 0.6290 +3725 5660 0.8380 +3725 5663 0.4080 +3725 5728 0.7750 +3725 5743 0.8660 +3725 5744 0.5480 +3725 5747 0.5160 +3725 5770 0.4860 +3725 5781 0.5750 +3725 5788 0.5820 +3725 5829 0.6650 +3725 5832 0.4870 +3725 5837 0.4580 +3725 5877 0.5040 +3725 5879 0.5440 +3725 5880 0.4530 +3725 5894 0.6020 +3725 5914 0.7590 +3725 5915 0.5660 +3725 5925 0.6900 +3725 5928 0.6090 +3725 5929 0.5390 +3725 5931 0.6010 +3725 5966 0.6490 +3725 5970 0.9860 +3725 5971 0.5810 +3725 5972 0.4760 +3725 5978 0.6550 +3725 5987 0.4560 +3725 5996 0.4040 +3725 6015 0.6040 +3725 6045 0.5500 +3725 6093 0.4220 +3725 6194 0.4380 +3725 6195 0.5800 +3725 6196 0.7410 +3725 6197 0.5060 +3725 6198 0.9590 +3725 6199 0.9460 +3725 6233 0.7100 +3725 6283 0.4450 +3725 6300 0.9710 +3725 6347 0.9800 +3725 6348 0.5850 +3725 6351 0.6400 +3725 6364 0.4610 +3725 6376 0.5350 +3725 6387 0.4770 +3725 6390 0.4730 +3725 6391 0.5550 +3725 6401 0.4830 +3725 6416 0.9210 +3725 6421 0.4870 +3725 6446 0.4840 +3725 6464 0.5400 +3725 6469 0.4410 +3725 6498 0.4710 +3725 6500 0.5020 +3725 6502 0.4170 +3725 6513 0.4090 +3725 6517 0.5120 +3725 6591 0.7750 +3725 6597 0.5320 +3725 6598 0.5730 +3725 6601 0.5550 +3725 6602 0.6840 +3725 6613 0.5580 +3725 6615 0.8230 +3725 6622 0.4020 +3725 6647 0.4760 +3725 6648 0.4560 +3725 6654 0.4470 +3725 6655 0.6090 +3725 6657 0.5910 +3725 6659 0.6010 +3725 6662 0.7010 +3725 6663 0.4600 +3725 6667 0.9960 +3725 6688 0.9930 +3725 6689 0.4970 +3725 6696 0.5150 +3725 6714 0.9740 +3725 6720 0.5490 +3725 6722 0.5930 +3725 6772 0.9100 +3725 6773 0.5160 +3725 6774 0.9950 +3725 6775 0.5760 +3725 6776 0.7210 +3725 6777 0.5790 +3725 6778 0.6520 +3725 6786 0.4960 +3725 6794 0.4410 +3725 6850 0.5530 +3725 6872 0.8720 +3725 6874 0.4650 +3725 6881 0.4260 +3725 6883 0.5400 +3725 6885 0.7530 +3725 6907 0.4030 +3725 6908 0.7770 +3725 6934 0.6930 +3725 6942 0.5750 +3725 6996 0.5610 +3725 7001 0.4060 +3725 7003 0.5980 +3725 7005 0.5240 +3725 7013 0.4220 +3725 7019 0.4470 +3725 7022 0.5490 +3725 7031 0.5580 +3725 7039 0.4870 +3725 7040 0.7220 +3725 7042 0.6510 +3725 7043 0.6240 +3725 7045 0.4870 +3725 7046 0.5410 +3725 7048 0.5210 +3725 7050 0.5260 +3725 7054 0.4180 +3725 7057 0.4930 +3725 7071 0.5040 +3725 7076 0.7010 +3725 7077 0.4160 +3725 7078 0.4420 +3725 7082 0.6750 +3725 7097 0.6110 +3725 7098 0.5350 +3725 7099 0.7410 +3725 7101 0.5520 +3725 7124 0.9890 +3725 7128 0.5530 +3725 7130 0.4380 +3725 7132 0.7290 +3725 7150 0.6060 +3725 7153 0.5250 +3725 7157 0.9970 +3725 7158 0.5350 +3725 7161 0.4500 +3725 7169 0.4740 +3725 7184 0.4820 +3725 7185 0.4390 +3725 7186 0.7880 +3725 7187 0.6260 +3725 7189 0.7140 +3725 7227 0.5460 +3725 7251 0.4070 +3725 7291 0.4170 +3725 7295 0.6000 +3725 7297 0.4180 +3725 7316 0.5390 +3725 7329 0.7740 +3725 7341 0.6950 +3725 7391 0.4880 +3725 7392 0.4210 +3725 7403 0.6110 +3725 7409 0.5570 +3725 7412 0.5810 +3725 7414 0.4080 +3725 7424 0.5970 +3725 7431 0.4110 +3725 7443 0.6890 +3725 7471 0.4340 +3725 7474 0.6770 +3725 7481 0.4100 +3725 7490 0.5820 +3725 7494 0.6730 +3725 7498 0.4660 +3725 7514 0.5790 +3725 7528 0.8520 +3725 7534 0.4140 +3725 7535 0.4610 +3725 7538 0.7160 +3725 7545 0.5330 +3725 7593 0.5620 +3725 7786 0.5530 +3725 7791 0.4910 +3725 7832 0.5780 +3725 7837 0.7400 +3725 7852 0.6910 +3725 7975 0.6970 +3725 8013 0.6460 +3725 8061 0.9990 +3725 8085 0.5630 +3725 8091 0.5860 +3725 8115 0.6230 +3725 8200 0.4160 +3725 8202 0.9380 +3725 8204 0.7930 +3725 8290 0.7720 +3725 8312 0.5590 +3725 8313 0.5030 +3725 8324 0.5900 +3725 8331 0.5010 +3725 8334 0.5210 +3725 8337 0.6470 +3725 8338 0.6330 +3725 8340 0.5880 +3725 8341 0.5890 +3725 8342 0.5890 +3725 8345 0.5910 +3725 8347 0.6370 +3725 8348 0.5930 +3725 8349 0.6810 +3725 8356 0.8670 +3725 8361 0.7750 +3725 8408 0.4020 +3725 8451 0.6130 +3725 8452 0.4500 +3725 8454 0.4980 +3725 8517 0.7610 +3725 8533 0.5050 +3725 8535 0.6400 +3725 8544 0.4920 +3725 8549 0.5690 +3725 8553 0.6220 +3725 8554 0.6300 +3725 8600 0.7380 +3725 8626 0.5130 +3725 8638 0.5200 +3725 8648 0.9650 +3725 8651 0.4310 +3725 8654 0.5120 +3725 8660 0.5360 +3725 8678 0.7250 +3725 8717 0.5160 +3725 8721 0.6920 +3725 8726 0.5600 +3725 8737 0.5310 +3725 8743 0.4710 +3725 8767 0.4080 +3725 8772 0.5470 +3725 8795 0.5450 +3725 8797 0.4500 +3725 8815 0.5850 +3725 8817 0.5050 +3725 8822 0.4800 +3725 8823 0.4850 +3725 8837 0.5380 +3725 8841 0.7540 +3725 8850 0.7730 +3725 8851 0.7780 +3725 8870 0.4580 +3725 8878 0.5890 +3725 8900 0.5200 +3725 8915 0.5590 +3725 8928 0.5000 +3725 8945 0.6210 +3725 8970 0.5960 +3725 8988 0.5760 +3725 8997 0.4440 +3725 9021 0.6340 +3725 9043 0.7320 +3725 9063 0.4040 +3725 9064 0.5420 +3725 9070 0.5330 +3725 9075 0.4460 +3725 9112 0.7370 +3725 9175 0.5730 +3725 9188 0.5120 +3725 9219 0.5920 +3725 9252 0.4810 +3725 9261 0.5330 +3725 9314 0.6470 +3725 9318 0.5920 +3725 9370 0.5170 +3725 9414 0.9090 +3725 9448 0.5260 +3725 9451 0.7210 +3725 9474 0.4820 +3725 9479 0.9920 +3725 9506 0.7070 +3725 9564 0.4300 +3725 9584 0.6700 +3725 9586 0.9710 +3725 9589 0.5410 +3725 9592 0.6810 +3725 9603 0.7270 +3725 9611 0.6750 +3725 9612 0.6770 +3725 9641 0.5210 +3725 9734 0.5370 +3725 9759 0.4330 +3725 9794 0.4950 +3725 9817 0.5940 +3725 9833 0.5200 +3725 9839 0.4300 +3725 9935 0.9910 +3725 9966 0.4500 +3725 9971 0.4800 +3725 9978 0.6340 +3725 10000 0.9410 +3725 10013 0.4140 +3725 10014 0.6350 +3725 10018 0.7780 +3725 10127 0.5370 +3725 10221 0.4040 +3725 10273 0.4160 +3725 10345 0.6450 +3725 10365 0.7200 +3725 10379 0.5430 +3725 10399 0.7770 +3725 10413 0.9090 +3725 10454 0.4820 +3725 10488 0.7650 +3725 10498 0.9500 +3725 10499 0.5440 +3725 10514 0.5070 +3725 10519 0.5650 +3725 10521 0.4390 +3725 10524 0.5630 +3725 10533 0.6140 +3725 10538 0.9970 +3725 10628 0.4530 +3725 10657 0.4660 +3725 10664 0.5390 +3725 10725 0.6870 +3725 10875 0.4260 +3725 10891 0.7000 +3725 10912 0.4370 +3725 10980 0.5190 +3725 10987 0.9980 +3725 11016 0.9740 +3725 11035 0.4090 +3725 11075 0.5820 +3725 11091 0.6460 +3725 11200 0.4160 +3725 11221 0.5870 +3725 11266 0.7630 +3725 22809 0.5940 +3725 22926 0.6720 +3725 22943 0.4470 +3725 22955 0.5020 +3725 22976 0.5140 +3725 23005 0.4910 +3725 23028 0.6570 +3725 23054 0.7020 +3725 23112 0.5490 +3725 23118 0.4880 +3725 23135 0.8210 +3725 23162 0.7770 +3725 23186 0.6200 +3725 23291 0.4750 +3725 23410 0.4020 +3725 23411 0.9270 +3725 23466 0.5080 +3725 23476 0.5840 +3725 23512 0.7340 +3725 23542 0.6000 +3725 23586 0.4770 +3725 23621 0.4480 +3725 23643 0.4080 +3725 23645 0.6800 +3725 23764 0.7500 +3725 25820 0.4730 +3725 25920 0.4070 +3725 25942 0.5700 +3725 25962 0.6530 +3725 26227 0.4400 +3725 26277 0.4090 +3725 26281 0.4850 +3725 26523 0.5670 +3725 27006 0.4860 +3725 27022 0.5250 +3725 27035 0.4910 +3725 27102 0.4170 +3725 27113 0.4350 +3725 27185 0.4500 +3725 27250 0.4200 +3725 27327 0.5390 +3725 27346 0.4460 +3725 29110 0.5190 +3725 29126 0.4790 +3725 29855 0.5710 +3725 29911 0.4610 +3725 50506 0.4120 +3725 50507 0.5560 +3725 50813 0.4950 +3725 50940 0.4120 +3725 50943 0.4810 +3725 51135 0.5270 +3725 51176 0.6810 +3725 51177 0.6420 +3725 51185 0.7100 +3725 51284 0.4530 +3725 51548 0.7680 +3725 51564 0.6490 +3725 51588 0.4930 +3725 51592 0.5750 +3725 51741 0.8770 +3725 51806 0.5810 +3725 53335 0.5380 +3725 53615 0.7370 +3725 53905 0.4560 +3725 54106 0.4740 +3725 54145 0.5870 +3725 54205 0.8290 +3725 54576 0.5090 +3725 54658 0.5220 +3725 54815 0.5850 +3725 54890 0.5360 +3725 55070 0.7410 +3725 55294 0.9970 +3725 55509 0.9790 +3725 55766 0.5110 +3725 55922 0.8160 +3725 57104 0.5180 +3725 57119 0.4100 +3725 57161 0.4560 +3725 57167 0.5640 +3725 57332 0.5870 +3725 57381 0.4190 +3725 57459 0.5560 +3725 57504 0.6600 +3725 57506 0.4590 +3725 57520 0.4110 +3725 57630 0.4670 +3725 58508 0.6360 +3725 59269 0.5590 +3725 60386 0.4090 +3725 60468 0.6750 +3725 63893 0.4540 +3725 63978 0.4620 +3725 64321 0.5630 +3725 64326 0.8810 +3725 64332 0.5290 +3725 64651 0.4800 +3725 64743 0.5060 +3725 65125 0.6390 +3725 65266 0.5200 +3725 65267 0.5080 +3725 65268 0.5180 +3725 79400 0.5140 +3725 79447 0.4990 +3725 79626 0.4400 +3725 79680 0.4320 +3725 79692 0.5230 +3725 79923 0.4480 +3725 80012 0.5890 +3725 80824 0.5390 +3725 81631 0.4750 +3725 81669 0.5720 +3725 83737 0.9000 +3725 84232 0.5560 +3725 84260 0.5070 +3725 84271 0.5830 +3725 84678 0.5810 +3725 84733 0.5220 +3725 84823 0.4910 +3725 84911 0.5080 +3725 85236 0.5950 +3725 89780 0.4840 +3725 91860 0.5700 +3725 92140 0.4890 +3725 94239 0.5560 +3725 114548 0.4880 +3725 114609 0.4740 +3725 116071 0.8810 +3725 116447 0.5320 +3725 121340 0.4500 +3725 122953 0.9690 +3725 124817 0.5080 +3725 128312 0.5880 +3725 133482 0.7000 +3725 137902 0.7350 +3725 140628 0.4730 +3725 146713 0.5950 +3725 148327 0.4750 +3725 149603 0.7360 +3725 159989 0.4200 +3725 163688 0.5700 +3725 192669 0.5160 +3725 192670 0.5130 +3725 197259 0.4020 +3725 225689 0.4310 +3725 253260 0.5430 +3725 255626 0.6270 +3725 257202 0.5770 +3725 284403 0.5030 +3725 440093 0.7460 +3725 440275 0.5060 +3725 440686 0.7460 +3725 474382 0.4990 +3725 493869 0.5780 +3725 653361 0.4160 +3725 653604 0.8670 +3725 728378 0.4130 +3725 100506658 0.4610 +3726 3727 0.9990 +3726 4087 0.6270 +3726 4088 0.8520 +3726 4089 0.7400 +3726 4094 0.7410 +3726 4097 0.6390 +3726 4170 0.4150 +3726 4209 0.5920 +3726 4609 0.6980 +3726 4616 0.7020 +3726 4772 0.4030 +3726 4773 0.7320 +3726 4790 0.4160 +3726 4792 0.5220 +3726 4869 0.6940 +3726 4929 0.5790 +3726 5292 0.5280 +3726 5451 0.4580 +3726 5599 0.9730 +3726 5600 0.7200 +3726 5601 0.9790 +3726 5603 0.7150 +3726 5966 0.4800 +3726 5970 0.5060 +3726 5971 0.5160 +3726 6095 0.4750 +3726 6097 0.4720 +3726 6194 0.7620 +3726 6300 0.7070 +3726 6348 0.5080 +3726 6457 0.4990 +3726 6597 0.6540 +3726 6598 0.4340 +3726 6657 0.4770 +3726 6688 0.4260 +3726 6722 0.6640 +3726 6772 0.4230 +3726 6774 0.7730 +3726 6776 0.4050 +3726 6778 0.6760 +3726 6883 0.5030 +3726 7071 0.5780 +3726 7124 0.4230 +3726 7128 0.4890 +3726 7291 0.4770 +3726 7528 0.4770 +3726 7538 0.8470 +3726 7832 0.6550 +3726 8013 0.4830 +3726 8061 0.9990 +3726 9021 0.6230 +3726 9314 0.5360 +3726 9586 0.8490 +3726 9592 0.7500 +3726 9935 0.6660 +3726 10221 0.5920 +3726 10365 0.4030 +3726 10538 0.9970 +3726 11016 0.9180 +3726 23237 0.7250 +3726 23476 0.4200 +3726 23645 0.4610 +3726 23764 0.4980 +3726 55070 0.5340 +3726 55509 0.9240 +3726 64326 0.6410 +3726 64332 0.5750 +3726 64651 0.6600 +3726 65125 0.5290 +3726 65266 0.5080 +3726 65267 0.5080 +3726 65268 0.5080 +3726 79923 0.4510 +3726 80149 0.4700 +3726 83737 0.5860 +3726 83931 0.7600 +3726 116071 0.6570 +3726 122953 0.9570 +3726 124817 0.5080 +3726 150094 0.4570 +3727 4088 0.8390 +3727 4094 0.5700 +3727 4097 0.6710 +3727 4150 0.6580 +3727 4170 0.5970 +3727 4205 0.5840 +3727 4209 0.7570 +3727 4302 0.6220 +3727 4609 0.7710 +3727 4763 0.4470 +3727 4772 0.5450 +3727 4773 0.6860 +3727 4774 0.4980 +3727 4778 0.4230 +3727 4780 0.7540 +3727 4781 0.5230 +3727 4782 0.6680 +3727 4784 0.5670 +3727 4790 0.4700 +3727 4791 0.4060 +3727 4792 0.4380 +3727 4901 0.4160 +3727 5079 0.4990 +3727 5143 0.6180 +3727 5241 0.4660 +3727 5468 0.4850 +3727 5594 0.5350 +3727 5595 0.4410 +3727 5599 0.9950 +3727 5600 0.7400 +3727 5601 0.9870 +3727 5603 0.7360 +3727 5741 0.4330 +3727 5885 0.8010 +3727 5966 0.6720 +3727 5970 0.6830 +3727 5971 0.4740 +3727 6300 0.7340 +3727 6457 0.4990 +3727 6469 0.4510 +3727 6597 0.5910 +3727 6598 0.4700 +3727 6601 0.4820 +3727 6657 0.4430 +3727 6659 0.4520 +3727 6667 0.6460 +3727 6688 0.4570 +3727 6722 0.6740 +3727 6772 0.4550 +3727 6774 0.6770 +3727 6872 0.5160 +3727 6883 0.5000 +3727 6908 0.4570 +3727 7003 0.4750 +3727 7004 0.4270 +3727 7039 0.4330 +3727 7071 0.4570 +3727 7124 0.4090 +3727 7132 0.4650 +3727 7157 0.4770 +3727 7391 0.6260 +3727 7392 0.4880 +3727 7528 0.7440 +3727 7702 0.5950 +3727 7975 0.6280 +3727 8061 0.9990 +3727 8202 0.5720 +3727 8243 0.5110 +3727 8331 0.5070 +3727 8334 0.5000 +3727 8337 0.5470 +3727 8338 0.5430 +3727 8340 0.5100 +3727 8341 0.5100 +3727 8342 0.5100 +3727 8345 0.5140 +3727 8347 0.5200 +3727 8348 0.5110 +3727 8349 0.5510 +3727 8356 0.6420 +3727 8361 0.6620 +3727 8431 0.5190 +3727 8456 0.4250 +3727 8553 0.4390 +3727 8870 0.4610 +3727 8970 0.5100 +3727 9126 0.7500 +3727 9314 0.4440 +3727 9586 0.8980 +3727 9603 0.7310 +3727 9935 0.4460 +3727 10123 0.5630 +3727 10213 0.4330 +3727 10274 0.4990 +3727 10365 0.4820 +3727 10538 0.9330 +3727 10658 0.4910 +3727 10664 0.5780 +3727 10735 0.5070 +3727 10987 0.5520 +3727 11016 0.9120 +3727 11080 0.4510 +3727 11221 0.4090 +3727 11243 0.4580 +3727 11335 0.4680 +3727 23237 0.5360 +3727 23411 0.4670 +3727 23764 0.4770 +3727 26227 0.4250 +3727 51330 0.4210 +3727 51341 0.4010 +3727 54145 0.5100 +3727 55509 0.8630 +3727 55766 0.5000 +3727 64326 0.7090 +3727 65125 0.5080 +3727 65266 0.5080 +3727 65267 0.5080 +3727 65268 0.5080 +3727 85236 0.5120 +3727 94239 0.4990 +3727 116071 0.5390 +3727 122953 0.9640 +3727 124817 0.5080 +3727 128312 0.5100 +3727 147912 0.4010 +3727 255626 0.5100 +3727 474382 0.5020 +3727 653604 0.6420 +3727 100527963 0.4560 +3728 3753 0.4200 +3728 3757 0.4270 +3728 3759 0.4350 +3728 3852 0.5040 +3728 3858 0.5440 +3728 3875 0.5260 +3728 3880 0.4950 +3728 4000 0.6600 +3728 4014 0.5670 +3728 4053 0.4530 +3728 4162 0.5420 +3728 4548 0.4090 +3728 4607 0.5120 +3728 4624 0.5830 +3728 4625 0.4860 +3728 4627 0.4880 +3728 4629 0.4370 +3728 4633 0.4050 +3728 4634 0.4530 +3728 4646 0.5100 +3728 4830 0.4040 +3728 5052 0.4500 +3728 5058 0.4310 +3728 5062 0.4310 +3728 5063 0.4310 +3728 5159 0.4350 +3728 5175 0.5250 +3728 5266 0.5000 +3728 5268 0.4340 +3728 5317 0.9460 +3728 5318 0.9910 +3728 5339 0.4970 +3728 5493 0.7790 +3728 5585 0.4190 +3728 5586 0.4150 +3728 5663 0.6280 +3728 5781 0.4300 +3728 5789 0.4130 +3728 5796 0.5850 +3728 5879 0.5780 +3728 6093 0.4490 +3728 6120 0.4140 +3728 6240 0.4500 +3728 6242 0.4200 +3728 6262 0.8040 +3728 6331 0.5420 +3728 6444 0.4180 +3728 6510 0.4410 +3728 6640 0.5520 +3728 6698 0.5420 +3728 6699 0.5850 +3728 6700 0.4990 +3728 6701 0.5080 +3728 6703 0.5510 +3728 6704 0.5330 +3728 6705 0.5250 +3728 6706 0.5440 +3728 6707 0.5190 +3728 6793 0.4060 +3728 6925 0.8730 +3728 6932 0.9750 +3728 6934 0.9720 +3728 7037 0.4200 +3728 7040 0.4780 +3728 7043 0.8580 +3728 7051 0.6110 +3728 7062 0.5210 +3728 7082 0.6130 +3728 7112 0.5990 +3728 7137 0.4130 +3728 7139 0.4390 +3728 7168 0.4530 +3728 7273 0.5070 +3728 7280 0.5210 +3728 7335 0.4340 +3728 7409 0.4990 +3728 7410 0.5210 +3728 7414 0.6180 +3728 7415 0.5140 +3728 7431 0.5470 +3728 7454 0.4200 +3728 7535 0.4490 +3728 7784 0.4070 +3728 7874 0.4120 +3728 7879 0.5040 +3728 8048 0.4490 +3728 8312 0.6980 +3728 8313 0.4660 +3728 8476 0.4490 +3728 8502 0.7670 +3728 8557 0.4520 +3728 8642 0.7430 +3728 8773 0.4470 +3728 8826 0.4920 +3728 8874 0.4050 +3728 8945 0.4760 +3728 8976 0.4320 +3728 9322 0.4360 +3728 9333 0.4110 +3728 9341 0.4310 +3728 9381 0.5210 +3728 9414 0.5820 +3728 9475 0.4530 +3728 9528 0.4270 +3728 9578 0.5110 +3728 9586 0.4290 +3728 9748 0.4060 +3728 9815 0.4030 +3728 9992 0.4360 +3728 10021 0.4050 +3728 10060 0.4410 +3728 10211 0.4350 +3728 10297 0.9010 +3728 10298 0.4610 +3728 10376 0.4860 +3728 10451 0.5070 +3728 11113 0.5590 +3728 11135 0.4160 +3728 11155 0.4840 +3728 11187 0.8510 +3728 22827 0.4990 +3728 22919 0.4080 +3728 22934 0.5260 +3728 23002 0.4380 +3728 23048 0.4240 +3728 23171 0.4890 +3728 23345 0.4270 +3728 23357 0.4220 +3728 23433 0.5690 +3728 23513 0.4730 +3728 26330 0.4430 +3728 27295 0.4380 +3728 28316 0.5890 +3728 28513 0.5970 +3728 28964 0.4050 +3728 29119 0.9170 +3728 29941 0.4210 +3728 50805 0.4030 +3728 51026 0.4620 +3728 51176 0.9710 +3728 51422 0.5170 +3728 51762 0.7710 +3728 54443 0.5740 +3728 54798 0.4500 +3728 54825 0.4500 +3728 54874 0.4310 +3728 55004 0.4340 +3728 55075 0.4240 +3728 55240 0.4130 +3728 55294 0.5100 +3728 55699 0.5320 +3728 55750 0.4460 +3728 55789 0.4670 +3728 55914 0.4990 +3728 56924 0.4640 +3728 56998 0.6710 +3728 57144 0.4380 +3728 57381 0.5600 +3728 57402 0.5010 +3728 57469 0.4150 +3728 60437 0.5890 +3728 64065 0.6670 +3728 64072 0.7360 +3728 64403 0.5890 +3728 64405 0.6010 +3728 65124 0.4110 +3728 79188 0.9130 +3728 79633 0.4500 +3728 79882 0.4380 +3728 81031 0.4380 +3728 81576 0.9940 +3728 81839 0.4740 +3728 83439 0.9580 +3728 84665 0.4040 +3728 91010 0.4180 +3728 92211 0.4500 +3728 114885 0.4330 +3728 125972 0.4140 +3728 126638 0.5210 +3728 128239 0.4390 +3728 139596 0.6370 +3728 143098 0.4720 +3728 144402 0.4130 +3728 147179 0.4400 +3728 147409 0.6480 +3728 157769 0.4410 +3728 200894 0.4010 +3728 203068 0.4950 +3728 222256 0.5890 +3728 282996 0.4870 +3728 284119 0.4050 +3728 374768 0.5850 +3728 388697 0.4050 +3728 388698 0.4080 +3728 448834 0.5310 +3728 729020 0.5480 +3728 100129271 0.4370 +3728 100506658 0.4370 +3730 3791 0.4610 +3730 3814 0.6010 +3730 3897 0.5990 +3730 4512 0.4690 +3730 4513 0.6380 +3730 4514 0.6490 +3730 4535 0.5450 +3730 4536 0.4970 +3730 4537 0.5450 +3730 4538 0.5490 +3730 4539 0.5420 +3730 4540 0.4240 +3730 4541 0.5490 +3730 5447 0.5210 +3730 5626 0.4930 +3730 6382 0.4180 +3730 6383 0.5090 +3730 6473 0.6390 +3730 6663 0.4980 +3730 6690 0.6700 +3730 6870 0.7180 +3730 8074 0.6680 +3730 8228 0.5470 +3730 8481 0.4690 +3730 8482 0.4610 +3730 8820 0.5550 +3730 8822 0.6840 +3730 9394 0.7320 +3730 10178 0.4490 +3730 10371 0.5440 +3730 10855 0.6920 +3730 23767 0.5950 +3730 26012 0.7110 +3730 26281 0.6330 +3730 27233 0.5130 +3730 27284 0.5150 +3730 51481 0.7550 +3730 54756 0.5840 +3730 55036 0.4360 +3730 55636 0.8350 +3730 56159 0.5570 +3730 57502 0.4040 +3730 60675 0.9450 +3730 80712 0.5140 +3730 81848 0.4970 +3730 84432 0.6760 +3730 84634 0.6970 +3730 128674 0.9750 +3730 139378 0.4190 +3730 171482 0.5710 +3730 348801 0.4630 +3730 389549 0.5610 +3730 442038 0.5170 +3732 3791 0.4920 +3732 3814 0.4450 +3732 3916 0.5790 +3732 3920 0.4530 +3732 4040 0.4020 +3732 4072 0.4350 +3732 4179 0.4430 +3732 4233 0.6020 +3732 4320 0.4420 +3732 4790 0.6830 +3732 4830 0.5810 +3732 5738 0.7290 +3732 5873 0.5020 +3732 6093 0.4470 +3732 6386 0.6270 +3732 6764 0.6210 +3732 7037 0.4310 +3732 7076 0.5990 +3732 7103 0.5250 +3732 7157 0.4190 +3732 7172 0.7930 +3732 7251 0.8340 +3732 8293 0.5820 +3732 9611 0.5490 +3732 10015 0.6340 +3732 10077 0.5370 +3732 10099 0.6080 +3732 10211 0.5090 +3732 10524 0.7060 +3732 10856 0.6210 +3732 11013 0.5960 +3732 23118 0.6140 +3732 23438 0.5150 +3732 23621 0.5780 +3732 25855 0.5850 +3732 51439 0.4070 +3732 51534 0.4300 +3732 55718 0.4830 +3732 57216 0.4120 +3732 59272 0.4650 +3732 64866 0.4920 +3732 79718 0.4910 +3732 81839 0.9360 +3732 83742 0.5270 +3732 84299 0.5600 +3732 84312 0.5710 +3732 93185 0.8830 +3732 135228 0.4050 +3732 375790 0.5970 +3732 643418 0.5100 +3735 3845 0.4070 +3735 3921 0.9770 +3735 4141 0.9990 +3735 4277 0.4050 +3735 4286 0.8430 +3735 4437 0.5640 +3735 4528 0.6440 +3735 4677 0.9310 +3735 4733 0.4790 +3735 4736 0.6840 +3735 5018 0.4100 +3735 5161 0.5340 +3735 5188 0.5870 +3735 5226 0.4470 +3735 5230 0.4090 +3735 5245 0.4150 +3735 5315 0.4020 +3735 5395 0.5510 +3735 5431 0.5170 +3735 5432 0.5640 +3735 5435 0.5420 +3735 5464 0.6550 +3735 5469 0.4960 +3735 5566 0.4010 +3735 5631 0.6850 +3735 5634 0.5550 +3735 5635 0.5420 +3735 5636 0.5550 +3735 5684 0.5040 +3735 5685 0.4340 +3735 5686 0.4960 +3735 5700 0.4520 +3735 5701 0.4680 +3735 5702 0.5560 +3735 5704 0.5290 +3735 5705 0.4830 +3735 5706 0.5240 +3735 5707 0.4580 +3735 5708 0.5260 +3735 5710 0.4540 +3735 5713 0.6920 +3735 5718 0.4380 +3735 5832 0.4040 +3735 5859 0.9990 +3735 5901 0.4530 +3735 5917 0.9990 +3735 6059 0.5360 +3735 6120 0.4220 +3735 6122 0.7050 +3735 6123 0.6020 +3735 6124 0.5530 +3735 6125 0.6870 +3735 6129 0.6670 +3735 6132 0.6420 +3735 6133 0.6460 +3735 6135 0.5400 +3735 6136 0.7090 +3735 6139 0.6040 +3735 6147 0.5940 +3735 6154 0.5460 +3735 6157 0.4900 +3735 6170 0.7070 +3735 6175 0.6040 +3735 6182 0.6900 +3735 6183 0.7880 +3735 6187 0.5820 +3735 6188 0.7510 +3735 6193 0.7780 +3735 6201 0.4300 +3735 6203 0.7660 +3735 6205 0.6290 +3735 6207 0.5530 +3735 6208 0.5570 +3735 6209 0.7470 +3735 6210 0.4260 +3735 6217 0.6180 +3735 6222 0.6630 +3735 6224 0.7070 +3735 6227 0.4010 +3735 6228 0.8170 +3735 6301 0.8820 +3735 6386 0.8070 +3735 6470 0.5110 +3735 6472 0.5240 +3735 6613 0.4010 +3735 6647 0.7000 +3735 6730 0.4310 +3735 6734 0.4490 +3735 6897 0.8380 +3735 6950 0.6320 +3735 7086 0.4490 +3735 7153 0.4840 +3735 7155 0.4700 +3735 7167 0.4630 +3735 7203 0.5730 +3735 7284 0.8550 +3735 7298 0.4450 +3735 7317 0.5240 +3735 7392 0.5870 +3735 7407 0.9780 +3735 7411 0.6110 +3735 7453 0.8680 +3735 7965 0.9990 +3735 8192 0.4990 +3735 8277 0.4150 +3735 8565 0.9880 +3735 8662 0.5470 +3735 8664 0.7760 +3735 8665 0.4100 +3735 8666 0.4270 +3735 8668 0.4800 +3735 8697 0.4530 +3735 8833 0.8350 +3735 8894 0.4670 +3735 9086 0.4670 +3735 9156 0.4060 +3735 9255 0.9970 +3735 9343 0.7040 +3735 9349 0.5720 +3735 9373 0.4760 +3735 9463 0.6160 +3735 9521 0.9970 +3735 9533 0.5550 +3735 9553 0.4690 +3735 9669 0.7210 +3735 9801 0.4140 +3735 9858 0.5160 +3735 10056 0.8130 +3735 10061 0.4250 +3735 10102 0.8090 +3735 10213 0.4550 +3735 10270 0.4110 +3735 10352 0.8540 +3735 10399 0.5190 +3735 10473 0.5470 +3735 10480 0.4370 +3735 10518 0.4120 +3735 10528 0.5850 +3735 10574 0.5810 +3735 10575 0.6330 +3735 10576 0.8290 +3735 10667 0.8090 +3735 10694 0.5960 +3735 10726 0.4070 +3735 10806 0.7760 +3735 11047 0.5750 +3735 11128 0.4400 +3735 11222 0.6370 +3735 11232 0.6130 +3735 22934 0.4200 +3735 22948 0.6490 +3735 22984 0.5960 +3735 23135 0.4920 +3735 23252 0.5160 +3735 23395 0.9960 +3735 23426 0.7560 +3735 23438 0.8680 +3735 23521 0.6760 +3735 23536 0.9220 +3735 25821 0.4870 +3735 25885 0.4370 +3735 25973 0.9540 +3735 27037 0.4200 +3735 27068 0.5710 +3735 27102 0.5030 +3735 27111 0.4330 +3735 27294 0.6250 +3735 28998 0.6110 +3735 29093 0.4690 +3735 29789 0.4720 +3735 29886 0.4810 +3735 51067 0.8790 +3735 51069 0.5550 +3735 51071 0.4350 +3735 51073 0.4450 +3735 51081 0.7150 +3735 51095 0.5230 +3735 51116 0.5560 +3735 51121 0.4390 +3735 51154 0.4980 +3735 51204 0.5390 +3735 51386 0.6460 +3735 51512 0.4040 +3735 51520 0.9990 +3735 51654 0.4590 +3735 54148 0.4350 +3735 54438 0.6250 +3735 54802 0.5390 +3735 54901 0.4230 +3735 54938 0.8790 +3735 54965 0.4210 +3735 55157 0.8070 +3735 55173 0.6400 +3735 55258 0.4290 +3735 55272 0.6980 +3735 55278 0.5870 +3735 55364 0.4440 +3735 55621 0.4960 +3735 55687 0.5610 +3735 55699 0.9950 +3735 55703 0.4970 +3735 56474 0.5830 +3735 56648 0.5710 +3735 56965 0.4060 +3735 57019 0.5230 +3735 57038 0.9980 +3735 57136 0.5000 +3735 57176 0.9150 +3735 57470 0.6140 +3735 57505 0.8290 +3735 60558 0.5370 +3735 63875 0.4240 +3735 64963 0.4660 +3735 64965 0.6100 +3735 64969 0.4440 +3735 64983 0.5120 +3735 65003 0.5620 +3735 65005 0.4590 +3735 65008 0.6550 +3735 65989 0.4080 +3735 65993 0.4190 +3735 79587 0.8090 +3735 79590 0.4430 +3735 79631 0.6530 +3735 79731 0.8520 +3735 79784 0.4020 +3735 79896 0.4300 +3735 79979 0.4120 +3735 80222 0.8350 +3735 80755 0.7100 +3735 81570 0.5600 +3735 81577 0.6250 +3735 81831 0.8160 +3735 81832 0.7230 +3735 81890 0.4290 +3735 83475 0.4200 +3735 84076 0.4170 +3735 84172 0.4910 +3735 84340 0.4760 +3735 84464 0.5220 +3735 84705 0.4250 +3735 85377 0.4110 +3735 85476 0.7680 +3735 87178 0.6170 +3735 90353 0.5230 +3735 91574 0.4350 +3735 91875 0.5800 +3735 91893 0.4890 +3735 92399 0.5290 +3735 92609 0.4220 +3735 92935 0.9900 +3735 93974 0.4370 +3735 113179 0.6110 +3735 116832 0.7000 +3735 123263 0.6140 +3735 123283 0.9510 +3735 124454 0.9280 +3735 126402 0.6980 +3735 129831 0.4320 +3735 134637 0.5170 +3735 135114 0.5590 +3735 143244 0.5710 +3735 158584 0.4600 +3735 165257 0.5760 +3735 219927 0.8780 +3735 221823 0.6450 +3735 285855 0.5840 +3735 339451 0.5260 +3735 347487 0.5140 +3735 374395 0.5840 +3735 387129 0.5240 +3735 440275 0.6420 +3735 100287482 0.5140 +3735 100505478 0.5240 +3735 100526842 0.4500 +3735 100885850 0.6990 +3735 101927367 0.5460 +3735 114483834 0.4220 +3736 3737 0.9950 +3736 3738 0.9660 +3736 3739 0.9870 +3736 3741 0.4540 +3736 3742 0.9850 +3736 3743 0.4270 +3736 3744 0.7280 +3736 3745 0.5750 +3736 3746 0.6620 +3736 3751 0.4150 +3736 3753 0.6350 +3736 3756 0.5850 +3736 3757 0.6410 +3736 3758 0.4690 +3736 3760 0.5380 +3736 3761 0.4050 +3736 3763 0.4610 +3736 3765 0.5810 +3736 3766 0.6130 +3736 3768 0.4570 +3736 3775 0.5130 +3736 3776 0.5320 +3736 3777 0.4570 +3736 3778 0.6750 +3736 3780 0.5350 +3736 3782 0.4970 +3736 3783 0.7420 +3736 3784 0.5880 +3736 3785 0.5960 +3736 3786 0.5420 +3736 3799 0.5090 +3736 3921 0.4220 +3736 4099 0.4450 +3736 4155 0.4030 +3736 4736 0.4690 +3736 4741 0.4780 +3736 4744 0.4050 +3736 4747 0.4040 +3736 4897 0.4490 +3736 5469 0.5080 +3736 5816 0.5690 +3736 5988 0.5560 +3736 6122 0.4760 +3736 6123 0.4760 +3736 6124 0.4320 +3736 6125 0.5240 +3736 6128 0.4890 +3736 6129 0.4500 +3736 6132 0.4620 +3736 6133 0.5080 +3736 6135 0.5530 +3736 6136 0.4780 +3736 6137 0.5180 +3736 6138 0.5600 +3736 6139 0.5030 +3736 6141 0.5370 +3736 6142 0.5340 +3736 6143 0.5360 +3736 6144 0.5890 +3736 6146 0.4900 +3736 6147 0.7360 +3736 6152 0.5740 +3736 6154 0.5160 +3736 6155 0.4890 +3736 6156 0.5910 +3736 6158 0.4700 +3736 6159 0.5790 +3736 6160 0.5930 +3736 6164 0.5960 +3736 6165 0.5680 +3736 6166 0.4960 +3736 6168 0.5910 +3736 6169 0.5840 +3736 6173 0.4960 +3736 6175 0.4210 +3736 6176 0.5470 +3736 6181 0.5810 +3736 6183 0.4910 +3736 6187 0.4640 +3736 6188 0.5680 +3736 6189 0.5140 +3736 6191 0.4890 +3736 6192 0.4890 +3736 6193 0.5850 +3736 6194 0.5950 +3736 6201 0.5200 +3736 6202 0.5350 +3736 6203 0.4950 +3736 6204 0.5030 +3736 6205 0.5550 +3736 6207 0.5010 +3736 6208 0.6800 +3736 6209 0.5540 +3736 6217 0.4320 +3736 6218 0.5750 +3736 6222 0.5830 +3736 6223 0.5820 +3736 6224 0.5090 +3736 6227 0.5720 +3736 6228 0.4910 +3736 6229 0.5870 +3736 6230 0.5530 +3736 6231 0.5580 +3736 6232 0.5040 +3736 6234 0.5990 +3736 6235 0.5010 +3736 6323 0.7420 +3736 6324 0.5410 +3736 6326 0.8400 +3736 6327 0.4230 +3736 6328 0.5280 +3736 6329 0.5950 +3736 6330 0.4920 +3736 6331 0.5340 +3736 6334 0.8500 +3736 6335 0.5650 +3736 6336 0.5400 +3736 6507 0.4610 +3736 6616 0.6560 +3736 6804 0.9080 +3736 6900 0.9600 +3736 7037 0.4490 +3736 7167 0.6660 +3736 7311 0.5580 +3736 7450 0.4970 +3736 7881 0.9950 +3736 8404 0.4330 +3736 8506 0.8530 +3736 8514 0.9950 +3736 8745 0.7160 +3736 8911 0.4530 +3736 8912 0.4670 +3736 8913 0.4780 +3736 9045 0.4890 +3736 9132 0.4280 +3736 9196 0.9030 +3736 9211 0.9900 +3736 9349 0.5820 +3736 9378 0.4550 +3736 9379 0.5920 +3736 9732 0.4120 +3736 9858 0.4220 +3736 10399 0.4460 +3736 10412 0.4460 +3736 10473 0.4780 +3736 10863 0.6420 +3736 11222 0.4760 +3736 11224 0.5770 +3736 11280 0.4900 +3736 23095 0.4390 +3736 23114 0.6400 +3736 23416 0.4790 +3736 23521 0.4570 +3736 23729 0.7930 +3736 25873 0.5260 +3736 26047 0.9790 +3736 26999 0.5740 +3736 27133 0.5010 +3736 28998 0.4570 +3736 29093 0.5030 +3736 30819 0.4510 +3736 30820 0.4740 +3736 50801 0.5280 +3736 51065 0.5040 +3736 51069 0.4620 +3736 51073 0.4320 +3736 51081 0.5030 +3736 51116 0.4220 +3736 51121 0.5160 +3736 51149 0.5010 +3736 51154 0.4210 +3736 51305 0.6020 +3736 51350 0.5320 +3736 51440 0.4430 +3736 51582 0.4520 +3736 53616 0.8450 +3736 54112 0.4840 +3736 54207 0.4590 +3736 55173 0.5090 +3736 55272 0.4950 +3736 55316 0.5010 +3736 55800 0.4210 +3736 56479 0.4430 +3736 56648 0.4260 +3736 57030 0.4370 +3736 57468 0.4260 +3736 57582 0.5840 +3736 57628 0.4260 +3736 57731 0.5810 +3736 57863 0.5620 +3736 63931 0.5010 +3736 64359 0.4480 +3736 64374 0.4420 +3736 64960 0.5200 +3736 64963 0.5010 +3736 64969 0.4640 +3736 65003 0.4780 +3736 65008 0.4690 +3736 79590 0.5160 +3736 79661 0.4110 +3736 84966 0.4740 +3736 112476 0.5590 +3736 114987 0.4470 +3736 116448 0.4430 +3736 126402 0.5110 +3736 140032 0.4890 +3736 140679 0.4290 +3736 140803 0.7400 +3736 143244 0.4260 +3736 154881 0.6250 +3736 157807 0.4240 +3736 200916 0.4750 +3736 285855 0.4500 +3736 347487 0.4220 +3736 387129 0.4520 +3736 100287482 0.4220 +3736 100505478 0.4500 +3736 100526842 0.5030 +3736 100529097 0.4960 +3736 100529239 0.5030 +3737 3738 0.9340 +3737 3739 0.9830 +3737 3741 0.9820 +3737 3742 0.9860 +3737 3743 0.4250 +3737 3744 0.6370 +3737 3745 0.9230 +3737 3746 0.6210 +3737 3752 0.5910 +3737 3753 0.6870 +3737 3756 0.6500 +3737 3757 0.8160 +3737 3758 0.4410 +3737 3760 0.5130 +3737 3761 0.4720 +3737 3762 0.4670 +3737 3763 0.5130 +3737 3764 0.4530 +3737 3765 0.5250 +3737 3766 0.5040 +3737 3767 0.4380 +3737 3768 0.5660 +3737 3775 0.5220 +3737 3776 0.5210 +3737 3777 0.4680 +3737 3778 0.7160 +3737 3780 0.5140 +3737 3782 0.5260 +3737 3783 0.7470 +3737 3784 0.4530 +3737 3785 0.5670 +3737 3786 0.6630 +3737 3790 0.7080 +3737 3799 0.5550 +3737 3921 0.4220 +3737 4155 0.4500 +3737 4736 0.4690 +3737 4897 0.4390 +3737 4988 0.6050 +3737 5469 0.5080 +3737 5816 0.4380 +3737 6122 0.4760 +3737 6123 0.4760 +3737 6124 0.4320 +3737 6125 0.5240 +3737 6128 0.4890 +3737 6129 0.4500 +3737 6132 0.4620 +3737 6133 0.5080 +3737 6135 0.5530 +3737 6136 0.4780 +3737 6137 0.5180 +3737 6138 0.5600 +3737 6139 0.5030 +3737 6141 0.5370 +3737 6142 0.5340 +3737 6143 0.5360 +3737 6144 0.5890 +3737 6146 0.4750 +3737 6147 0.5870 +3737 6152 0.5740 +3737 6154 0.5160 +3737 6155 0.4890 +3737 6156 0.5760 +3737 6158 0.4700 +3737 6159 0.5790 +3737 6160 0.5930 +3737 6164 0.5960 +3737 6165 0.5680 +3737 6166 0.4960 +3737 6168 0.5910 +3737 6169 0.5840 +3737 6173 0.4960 +3737 6175 0.4210 +3737 6176 0.5470 +3737 6181 0.5810 +3737 6183 0.4910 +3737 6187 0.4640 +3737 6188 0.5680 +3737 6189 0.5140 +3737 6191 0.4890 +3737 6192 0.4890 +3737 6193 0.7270 +3737 6194 0.5810 +3737 6201 0.5200 +3737 6202 0.5350 +3737 6203 0.4950 +3737 6204 0.5030 +3737 6205 0.5550 +3737 6207 0.5010 +3737 6208 0.5010 +3737 6209 0.5540 +3737 6217 0.4320 +3737 6218 0.5750 +3737 6222 0.5830 +3737 6223 0.5820 +3737 6224 0.5090 +3737 6227 0.5720 +3737 6228 0.4910 +3737 6229 0.5870 +3737 6230 0.5530 +3737 6231 0.5580 +3737 6232 0.5040 +3737 6234 0.5990 +3737 6235 0.5010 +3737 6323 0.7210 +3737 6324 0.4800 +3737 6326 0.7640 +3737 6328 0.5660 +3737 6329 0.6620 +3737 6330 0.4880 +3737 6331 0.5610 +3737 6334 0.7690 +3737 6335 0.6190 +3737 6336 0.5630 +3737 6529 0.4820 +3737 6792 0.4030 +3737 6812 0.4480 +3737 6900 0.8970 +3737 7037 0.6750 +3737 7167 0.5160 +3737 7311 0.5580 +3737 7442 0.5200 +3737 7450 0.4540 +3737 7593 0.4430 +3737 7852 0.4030 +3737 7881 0.9800 +3737 8506 0.9000 +3737 8514 0.9990 +3737 8911 0.5120 +3737 8912 0.4820 +3737 8913 0.5060 +3737 8989 0.4210 +3737 9045 0.4890 +3737 9132 0.4510 +3737 9196 0.8970 +3737 9211 0.7720 +3737 9312 0.5570 +3737 9349 0.5820 +3737 9378 0.6320 +3737 9379 0.6540 +3737 9732 0.4120 +3737 9858 0.4220 +3737 10280 0.7070 +3737 10399 0.4460 +3737 10412 0.4460 +3737 10473 0.4780 +3737 11222 0.4760 +3737 11224 0.5770 +3737 11280 0.4930 +3737 23114 0.6530 +3737 23416 0.6500 +3737 23521 0.4570 +3737 23704 0.4070 +3737 23729 0.6030 +3737 25873 0.5260 +3737 26047 0.9830 +3737 27133 0.5310 +3737 28998 0.4570 +3737 29093 0.5030 +3737 30819 0.4820 +3737 30820 0.6240 +3737 50801 0.5350 +3737 51065 0.5040 +3737 51069 0.4620 +3737 51073 0.4320 +3737 51081 0.5030 +3737 51116 0.4220 +3737 51121 0.5160 +3737 51133 0.5230 +3737 51149 0.5010 +3737 51154 0.4210 +3737 51305 0.5060 +3737 51350 0.5800 +3737 51806 0.4360 +3737 53616 0.6790 +3737 54207 0.4710 +3737 54442 0.4780 +3737 55173 0.5090 +3737 55272 0.4950 +3737 55316 0.5010 +3737 56479 0.5340 +3737 56648 0.4270 +3737 57526 0.4790 +3737 57575 0.4260 +3737 57582 0.6740 +3737 57628 0.4180 +3737 57731 0.6250 +3737 63931 0.5010 +3737 64359 0.6030 +3737 64960 0.5010 +3737 64963 0.5010 +3737 64969 0.4640 +3737 65003 0.4780 +3737 65008 0.4690 +3737 79054 0.4310 +3737 79590 0.5160 +3737 84329 0.5910 +3737 89796 0.4970 +3737 90134 0.4100 +3737 91860 0.4360 +3737 112476 0.4320 +3737 114987 0.4460 +3737 126402 0.5030 +3737 131096 0.4360 +3737 140032 0.4890 +3737 140803 0.6750 +3737 143244 0.4260 +3737 157855 0.4250 +3737 163688 0.4370 +3737 200916 0.4750 +3737 285855 0.4500 +3737 342035 0.4510 +3737 343450 0.4970 +3737 347487 0.4220 +3737 348980 0.5340 +3737 349149 0.8270 +3737 387129 0.4650 +3737 100287482 0.4220 +3737 100505478 0.4500 +3737 100526842 0.5030 +3737 100529097 0.4960 +3737 100529239 0.5030 +3738 3739 0.7220 +3738 3741 0.7650 +3738 3742 0.8820 +3738 3743 0.5450 +3738 3744 0.4370 +3738 3745 0.5660 +3738 3748 0.5280 +3738 3753 0.4800 +3738 3756 0.6180 +3738 3757 0.8050 +3738 3758 0.5470 +3738 3760 0.4670 +3738 3764 0.4170 +3738 3768 0.6240 +3738 3776 0.4550 +3738 3777 0.4910 +3738 3778 0.6670 +3738 3780 0.5050 +3738 3782 0.5600 +3738 3783 0.8580 +3738 3784 0.4660 +3738 3785 0.4420 +3738 3786 0.4290 +3738 3787 0.5000 +3738 3799 0.4690 +3738 3921 0.4220 +3738 3996 0.6480 +3738 4356 0.6610 +3738 4736 0.4690 +3738 4915 0.4160 +3738 5469 0.5080 +3738 5598 0.4040 +3738 6122 0.4760 +3738 6123 0.4760 +3738 6124 0.4320 +3738 6125 0.5240 +3738 6128 0.5350 +3738 6129 0.4500 +3738 6132 0.4620 +3738 6133 0.5080 +3738 6135 0.5530 +3738 6136 0.4780 +3738 6137 0.5180 +3738 6138 0.5600 +3738 6139 0.5220 +3738 6141 0.5370 +3738 6142 0.5340 +3738 6143 0.5360 +3738 6144 0.5890 +3738 6146 0.4750 +3738 6147 0.5870 +3738 6152 0.5740 +3738 6154 0.5160 +3738 6155 0.4890 +3738 6156 0.5760 +3738 6158 0.4700 +3738 6159 0.5790 +3738 6160 0.5930 +3738 6164 0.5960 +3738 6165 0.5680 +3738 6166 0.4960 +3738 6168 0.5910 +3738 6169 0.5840 +3738 6173 0.4960 +3738 6175 0.4210 +3738 6176 0.5470 +3738 6181 0.5810 +3738 6183 0.4910 +3738 6187 0.4640 +3738 6188 0.5680 +3738 6189 0.5140 +3738 6191 0.4890 +3738 6192 0.4890 +3738 6193 0.6070 +3738 6194 0.5810 +3738 6201 0.5210 +3738 6202 0.5350 +3738 6203 0.4950 +3738 6204 0.5030 +3738 6205 0.5550 +3738 6207 0.5010 +3738 6208 0.5010 +3738 6209 0.5540 +3738 6217 0.4320 +3738 6218 0.5750 +3738 6222 0.5830 +3738 6223 0.5820 +3738 6224 0.5090 +3738 6227 0.5720 +3738 6228 0.4920 +3738 6229 0.5870 +3738 6230 0.5530 +3738 6231 0.5580 +3738 6232 0.5050 +3738 6234 0.5990 +3738 6235 0.5010 +3738 6323 0.4450 +3738 6326 0.5700 +3738 6328 0.4120 +3738 6329 0.7100 +3738 6331 0.5920 +3738 6334 0.5040 +3738 6335 0.5600 +3738 6786 0.5060 +3738 6804 0.6590 +3738 7311 0.5580 +3738 7430 0.4400 +3738 7881 0.9450 +3738 8514 0.9920 +3738 8645 0.4980 +3738 8825 0.5030 +3738 9045 0.4890 +3738 9132 0.4530 +3738 9196 0.7990 +3738 9349 0.5820 +3738 9368 0.4380 +3738 9424 0.4160 +3738 9858 0.4220 +3738 10399 0.4460 +3738 10412 0.4460 +3738 10473 0.4780 +3738 11222 0.4760 +3738 11224 0.5770 +3738 22845 0.5040 +3738 23327 0.4830 +3738 23416 0.5680 +3738 23521 0.4570 +3738 23704 0.6380 +3738 23729 0.9520 +3738 25873 0.5260 +3738 27133 0.4290 +3738 28998 0.4570 +3738 29093 0.5030 +3738 51065 0.5040 +3738 51069 0.4620 +3738 51073 0.4320 +3738 51081 0.5030 +3738 51116 0.4220 +3738 51121 0.5160 +3738 51149 0.5010 +3738 51154 0.4230 +3738 51305 0.6240 +3738 51350 0.5470 +3738 51806 0.4300 +3738 54795 0.4500 +3738 54822 0.4640 +3738 55173 0.5090 +3738 55272 0.4950 +3738 55316 0.5010 +3738 55327 0.5550 +3738 56648 0.4260 +3738 63931 0.5330 +3738 64960 0.5010 +3738 64963 0.5010 +3738 64969 0.4650 +3738 65003 0.4780 +3738 65008 0.4690 +3738 79590 0.5160 +3738 79714 0.5050 +3738 84329 0.4430 +3738 84876 0.4480 +3738 91860 0.4300 +3738 114987 0.4460 +3738 126402 0.5030 +3738 140032 0.4890 +3738 143244 0.4260 +3738 162514 0.4750 +3738 163688 0.4300 +3738 200916 0.4750 +3738 285855 0.4500 +3738 347487 0.4220 +3738 387129 0.4520 +3738 100287482 0.4220 +3738 100423062 0.8120 +3738 100505478 0.4500 +3738 100526842 0.5030 +3738 100529097 0.4960 +3738 100529239 0.5030 +3738 102723407 0.9000 +3739 3741 0.7430 +3739 3742 0.6440 +3739 3743 0.5700 +3739 3744 0.4330 +3739 3746 0.6080 +3739 3748 0.5820 +3739 3749 0.5970 +3739 3750 0.6260 +3739 3751 0.6030 +3739 3752 0.7480 +3739 3753 0.5730 +3739 3756 0.5930 +3739 3757 0.7130 +3739 3758 0.4100 +3739 3759 0.5010 +3739 3760 0.5540 +3739 3761 0.6360 +3739 3762 0.5150 +3739 3764 0.4790 +3739 3765 0.4400 +3739 3766 0.4340 +3739 3767 0.4950 +3739 3768 0.5650 +3739 3775 0.5220 +3739 3776 0.5640 +3739 3777 0.5360 +3739 3778 0.6440 +3739 3780 0.5110 +3739 3782 0.4460 +3739 3783 0.4900 +3739 3784 0.4560 +3739 3785 0.5040 +3739 3786 0.5010 +3739 3921 0.4220 +3739 4593 0.4360 +3739 4736 0.4690 +3739 5469 0.5080 +3739 6122 0.4760 +3739 6123 0.4760 +3739 6124 0.4320 +3739 6125 0.5240 +3739 6128 0.5350 +3739 6129 0.4500 +3739 6132 0.4620 +3739 6133 0.5080 +3739 6135 0.5530 +3739 6136 0.4780 +3739 6137 0.5180 +3739 6138 0.5600 +3739 6139 0.5030 +3739 6141 0.5370 +3739 6142 0.5340 +3739 6143 0.5360 +3739 6144 0.5890 +3739 6146 0.4750 +3739 6147 0.5870 +3739 6152 0.5740 +3739 6154 0.5160 +3739 6155 0.4890 +3739 6156 0.5760 +3739 6158 0.4700 +3739 6159 0.5790 +3739 6160 0.5930 +3739 6164 0.5960 +3739 6165 0.5680 +3739 6166 0.4960 +3739 6168 0.5910 +3739 6169 0.5840 +3739 6173 0.4960 +3739 6175 0.4210 +3739 6176 0.5470 +3739 6181 0.5810 +3739 6183 0.4910 +3739 6187 0.4640 +3739 6188 0.5680 +3739 6189 0.5140 +3739 6191 0.4890 +3739 6192 0.4960 +3739 6193 0.5750 +3739 6194 0.5810 +3739 6201 0.5200 +3739 6202 0.5350 +3739 6203 0.4950 +3739 6204 0.5030 +3739 6205 0.5550 +3739 6207 0.5010 +3739 6208 0.5010 +3739 6209 0.5540 +3739 6217 0.4320 +3739 6218 0.5750 +3739 6222 0.5830 +3739 6223 0.5820 +3739 6224 0.5090 +3739 6227 0.5720 +3739 6228 0.4910 +3739 6229 0.5870 +3739 6230 0.5530 +3739 6231 0.5580 +3739 6232 0.5040 +3739 6234 0.5990 +3739 6235 0.5010 +3739 6262 0.4950 +3739 6323 0.5270 +3739 6324 0.4200 +3739 6326 0.5900 +3739 6328 0.5030 +3739 6329 0.6830 +3739 6330 0.4280 +3739 6331 0.6810 +3739 6334 0.5550 +3739 6335 0.5320 +3739 6336 0.5080 +3739 6900 0.5780 +3739 7037 0.6080 +3739 7167 0.4220 +3739 7273 0.4650 +3739 7311 0.5580 +3739 7881 0.9860 +3739 8514 0.9910 +3739 8645 0.4540 +3739 8911 0.4420 +3739 8912 0.4810 +3739 8913 0.5240 +3739 9033 0.4730 +3739 9045 0.4890 +3739 9196 0.9620 +3739 9211 0.6300 +3739 9228 0.6300 +3739 9229 0.7860 +3739 9312 0.5670 +3739 9349 0.5820 +3739 9419 0.4780 +3739 9732 0.4090 +3739 9858 0.4220 +3739 9992 0.4210 +3739 10021 0.5040 +3739 10280 0.9170 +3739 10399 0.4460 +3739 10412 0.4700 +3739 10473 0.4780 +3739 11222 0.4760 +3739 11224 0.5770 +3739 11280 0.4100 +3739 23416 0.4050 +3739 23521 0.4570 +3739 23704 0.4350 +3739 25873 0.5260 +3739 26047 0.5920 +3739 27133 0.4300 +3739 28998 0.4570 +3739 29093 0.5030 +3739 30818 0.5070 +3739 30819 0.9140 +3739 30820 0.5300 +3739 50801 0.4310 +3739 51065 0.5040 +3739 51069 0.4620 +3739 51073 0.4320 +3739 51081 0.5030 +3739 51116 0.4220 +3739 51121 0.5160 +3739 51149 0.5010 +3739 51154 0.4210 +3739 51305 0.5090 +3739 51350 0.4890 +3739 53616 0.5820 +3739 54207 0.4800 +3739 55173 0.5090 +3739 55272 0.4950 +3739 55316 0.5010 +3739 56479 0.5560 +3739 56648 0.4260 +3739 57628 0.6550 +3739 63931 0.5010 +3739 64960 0.5010 +3739 64963 0.5010 +3739 64969 0.4640 +3739 65003 0.4780 +3739 65008 0.4690 +3739 79590 0.5160 +3739 81033 0.7420 +3739 84260 0.4290 +3739 84708 0.5380 +3739 90134 0.4210 +3739 114987 0.4460 +3739 126402 0.5030 +3739 140032 0.4890 +3739 140803 0.6240 +3739 143244 0.4260 +3739 147011 0.4300 +3739 162514 0.4560 +3739 200916 0.4750 +3739 283518 0.4210 +3739 285855 0.4500 +3739 338567 0.4170 +3739 343450 0.4640 +3739 347487 0.4220 +3739 387129 0.4520 +3739 100287482 0.4220 +3739 100505478 0.4500 +3739 100526842 0.5030 +3739 100529097 0.4960 +3739 100529239 0.5030 +3741 3742 0.4490 +3741 3743 0.4240 +3741 3744 0.4250 +3741 3745 0.6250 +3741 3751 0.5820 +3741 3752 0.6990 +3741 3753 0.7100 +3741 3756 0.5080 +3741 3757 0.8650 +3741 3759 0.6830 +3741 3760 0.7100 +3741 3761 0.6130 +3741 3762 0.6490 +3741 3764 0.7120 +3741 3767 0.5300 +3741 3768 0.5960 +3741 3775 0.5580 +3741 3776 0.4360 +3741 3777 0.7060 +3741 3778 0.6050 +3741 3780 0.4780 +3741 3782 0.6880 +3741 3784 0.5310 +3741 3785 0.4410 +3741 3786 0.4270 +3741 3790 0.5750 +3741 3921 0.4220 +3741 4093 0.4110 +3741 4633 0.4520 +3741 4645 0.4270 +3741 4736 0.4690 +3741 4846 0.5740 +3741 4878 0.6490 +3741 5469 0.5080 +3741 6122 0.4760 +3741 6123 0.4860 +3741 6124 0.4320 +3741 6125 0.5240 +3741 6128 0.4890 +3741 6129 0.4500 +3741 6132 0.4620 +3741 6133 0.5080 +3741 6135 0.5530 +3741 6136 0.4780 +3741 6137 0.5180 +3741 6138 0.5600 +3741 6139 0.5030 +3741 6141 0.5370 +3741 6142 0.5340 +3741 6143 0.5360 +3741 6144 0.5890 +3741 6146 0.4750 +3741 6147 0.5870 +3741 6152 0.5740 +3741 6154 0.5160 +3741 6155 0.4890 +3741 6156 0.5760 +3741 6158 0.4700 +3741 6159 0.5790 +3741 6160 0.5930 +3741 6164 0.5960 +3741 6165 0.5680 +3741 6166 0.4960 +3741 6168 0.5910 +3741 6169 0.5840 +3741 6173 0.4960 +3741 6175 0.4210 +3741 6176 0.5470 +3741 6181 0.5810 +3741 6183 0.4910 +3741 6187 0.4640 +3741 6188 0.5680 +3741 6189 0.5140 +3741 6191 0.4890 +3741 6192 0.4890 +3741 6193 0.6010 +3741 6194 0.5810 +3741 6201 0.5200 +3741 6202 0.5350 +3741 6203 0.4950 +3741 6204 0.5030 +3741 6205 0.5550 +3741 6207 0.5010 +3741 6208 0.5010 +3741 6209 0.5540 +3741 6217 0.4320 +3741 6218 0.5750 +3741 6222 0.5830 +3741 6223 0.5820 +3741 6224 0.5090 +3741 6227 0.5720 +3741 6228 0.4910 +3741 6229 0.5870 +3741 6230 0.5530 +3741 6231 0.5580 +3741 6232 0.5040 +3741 6233 0.4450 +3741 6234 0.5990 +3741 6235 0.5010 +3741 6262 0.5820 +3741 6324 0.5110 +3741 6326 0.4690 +3741 6327 0.5100 +3741 6329 0.4820 +3741 6330 0.5440 +3741 6331 0.8380 +3741 6334 0.4400 +3741 6335 0.4380 +3741 6336 0.4370 +3741 6546 0.4120 +3741 6613 0.4120 +3741 6714 0.7610 +3741 6833 0.4270 +3741 7167 0.8020 +3741 7225 0.4190 +3741 7311 0.5580 +3741 7341 0.4490 +3741 7450 0.6180 +3741 7881 0.9860 +3741 8514 0.9740 +3741 8645 0.4510 +3741 8912 0.4480 +3741 8913 0.4850 +3741 9033 0.4600 +3741 9045 0.4890 +3741 9132 0.4370 +3741 9196 0.9400 +3741 9211 0.5440 +3741 9312 0.5650 +3741 9349 0.5820 +3741 9496 0.4570 +3741 9631 0.4980 +3741 9858 0.4220 +3741 9992 0.8720 +3741 10008 0.5810 +3741 10021 0.6090 +3741 10060 0.4630 +3741 10399 0.6190 +3741 10412 0.4460 +3741 10473 0.4780 +3741 11222 0.4760 +3741 11224 0.5770 +3741 23521 0.4570 +3741 23630 0.5710 +3741 23704 0.5540 +3741 25873 0.5260 +3741 28998 0.4570 +3741 29093 0.5030 +3741 30819 0.8360 +3741 30820 0.4730 +3741 51065 0.5040 +3741 51069 0.4620 +3741 51073 0.4320 +3741 51081 0.5030 +3741 51116 0.4220 +3741 51121 0.5160 +3741 51149 0.5010 +3741 51154 0.4210 +3741 51305 0.5100 +3741 51350 0.5170 +3741 54795 0.4030 +3741 55173 0.5090 +3741 55272 0.4950 +3741 55316 0.5010 +3741 55800 0.5040 +3741 56479 0.4060 +3741 56648 0.4260 +3741 58498 0.4010 +3741 63931 0.5010 +3741 64960 0.5010 +3741 64963 0.5010 +3741 64969 0.4640 +3741 65003 0.4780 +3741 65008 0.4690 +3741 79572 0.4160 +3741 79590 0.5160 +3741 114987 0.4460 +3741 126402 0.5030 +3741 140032 0.4890 +3741 140803 0.4290 +3741 143244 0.4260 +3741 200916 0.4750 +3741 285855 0.4500 +3741 347487 0.4220 +3741 387129 0.4660 +3741 440275 0.4080 +3741 100287482 0.4220 +3741 100505478 0.4500 +3741 100526842 0.5030 +3741 100529097 0.4960 +3741 100529239 0.5030 +3742 3743 0.4300 +3742 3744 0.4440 +3742 3756 0.4690 +3742 3757 0.5530 +3742 3778 0.5330 +3742 3783 0.5190 +3742 3785 0.4330 +3742 3786 0.4060 +3742 3921 0.4220 +3742 4736 0.4690 +3742 5469 0.5080 +3742 5988 0.5510 +3742 6122 0.4760 +3742 6123 0.4760 +3742 6124 0.4320 +3742 6125 0.5240 +3742 6128 0.4890 +3742 6129 0.4500 +3742 6132 0.4620 +3742 6133 0.5080 +3742 6135 0.5530 +3742 6136 0.4780 +3742 6137 0.5180 +3742 6138 0.5600 +3742 6139 0.5030 +3742 6141 0.5370 +3742 6142 0.5340 +3742 6143 0.5360 +3742 6144 0.5890 +3742 6146 0.4750 +3742 6147 0.5870 +3742 6152 0.5740 +3742 6154 0.5160 +3742 6155 0.4890 +3742 6156 0.5760 +3742 6158 0.4700 +3742 6159 0.5790 +3742 6160 0.5930 +3742 6164 0.5960 +3742 6165 0.5680 +3742 6166 0.4960 +3742 6168 0.5910 +3742 6169 0.5840 +3742 6173 0.4960 +3742 6175 0.4210 +3742 6176 0.5470 +3742 6181 0.5810 +3742 6183 0.4910 +3742 6187 0.4640 +3742 6188 0.5680 +3742 6189 0.5140 +3742 6191 0.4890 +3742 6192 0.4890 +3742 6193 0.5320 +3742 6194 0.5810 +3742 6201 0.5200 +3742 6202 0.5350 +3742 6203 0.4950 +3742 6204 0.5030 +3742 6205 0.5550 +3742 6207 0.5010 +3742 6208 0.5010 +3742 6209 0.5540 +3742 6217 0.4320 +3742 6218 0.5750 +3742 6222 0.5830 +3742 6223 0.5820 +3742 6224 0.5090 +3742 6227 0.5720 +3742 6228 0.4910 +3742 6229 0.5870 +3742 6230 0.5530 +3742 6231 0.5580 +3742 6232 0.5040 +3742 6234 0.5990 +3742 6235 0.5010 +3742 6323 0.4470 +3742 6326 0.5350 +3742 6328 0.4400 +3742 6329 0.5080 +3742 6331 0.4440 +3742 6334 0.5300 +3742 6335 0.4380 +3742 6336 0.4200 +3742 7167 0.7660 +3742 7311 0.5580 +3742 7881 0.9040 +3742 8514 0.9520 +3742 9045 0.4890 +3742 9196 0.7950 +3742 9349 0.5820 +3742 9858 0.4220 +3742 10399 0.4460 +3742 10412 0.4460 +3742 10473 0.4780 +3742 11222 0.4760 +3742 11224 0.5770 +3742 22845 0.6020 +3742 23521 0.4570 +3742 23729 0.7170 +3742 25873 0.5260 +3742 28998 0.4570 +3742 29093 0.5030 +3742 51065 0.5040 +3742 51069 0.4620 +3742 51073 0.4320 +3742 51081 0.5030 +3742 51116 0.4220 +3742 51121 0.5160 +3742 51149 0.5010 +3742 51154 0.4210 +3742 51280 0.4470 +3742 55173 0.5090 +3742 55272 0.4950 +3742 55316 0.5010 +3742 56648 0.4260 +3742 63931 0.5010 +3742 64960 0.5010 +3742 64963 0.5010 +3742 64969 0.4640 +3742 65003 0.4780 +3742 65008 0.4690 +3742 79590 0.5160 +3742 114987 0.4460 +3742 126402 0.5050 +3742 140032 0.4890 +3742 143244 0.4260 +3742 200916 0.4750 +3742 285855 0.4500 +3742 347487 0.4220 +3742 387129 0.4530 +3742 100287482 0.4220 +3742 100505478 0.4500 +3742 100526842 0.5030 +3742 100529097 0.4960 +3742 100529239 0.5030 +3743 3744 0.4500 +3743 3748 0.5240 +3743 3768 0.4300 +3743 3770 0.4250 +3743 3772 0.4080 +3743 3778 0.4490 +3743 3783 0.4730 +3743 3921 0.4220 +3743 4736 0.4690 +3743 5469 0.5080 +3743 6122 0.4760 +3743 6123 0.5090 +3743 6124 0.4320 +3743 6125 0.5240 +3743 6128 0.4890 +3743 6129 0.4500 +3743 6132 0.4620 +3743 6133 0.5080 +3743 6135 0.5530 +3743 6136 0.4780 +3743 6137 0.5180 +3743 6138 0.5600 +3743 6139 0.5030 +3743 6141 0.5370 +3743 6142 0.5340 +3743 6143 0.5490 +3743 6144 0.5890 +3743 6146 0.4750 +3743 6147 0.5870 +3743 6152 0.5740 +3743 6154 0.5160 +3743 6155 0.4890 +3743 6156 0.5760 +3743 6158 0.4700 +3743 6159 0.5790 +3743 6160 0.5930 +3743 6164 0.5960 +3743 6165 0.5680 +3743 6166 0.4960 +3743 6168 0.5910 +3743 6169 0.5840 +3743 6173 0.4960 +3743 6175 0.4210 +3743 6176 0.5470 +3743 6181 0.5810 +3743 6183 0.4920 +3743 6187 0.4640 +3743 6188 0.5680 +3743 6189 0.5140 +3743 6191 0.4890 +3743 6192 0.4890 +3743 6193 0.5930 +3743 6194 0.5810 +3743 6201 0.5200 +3743 6202 0.5350 +3743 6203 0.4950 +3743 6204 0.5030 +3743 6205 0.5550 +3743 6207 0.5010 +3743 6208 0.5010 +3743 6209 0.5540 +3743 6217 0.4320 +3743 6218 0.5750 +3743 6222 0.5830 +3743 6223 0.5820 +3743 6224 0.5090 +3743 6227 0.5720 +3743 6228 0.4910 +3743 6229 0.5870 +3743 6230 0.5530 +3743 6231 0.5580 +3743 6232 0.5040 +3743 6234 0.5990 +3743 6235 0.5010 +3743 6323 0.4950 +3743 6324 0.7110 +3743 6326 0.5280 +3743 6328 0.5990 +3743 6329 0.7130 +3743 6331 0.5990 +3743 7311 0.5580 +3743 7881 0.7690 +3743 8514 0.7340 +3743 9045 0.4890 +3743 9196 0.7750 +3743 9349 0.5820 +3743 9858 0.4220 +3743 10399 0.4460 +3743 10412 0.4460 +3743 10473 0.4780 +3743 11222 0.4760 +3743 11224 0.5770 +3743 23521 0.4570 +3743 23729 0.4360 +3743 25873 0.5260 +3743 28998 0.4570 +3743 29093 0.5030 +3743 51065 0.5040 +3743 51069 0.4620 +3743 51073 0.4320 +3743 51081 0.5030 +3743 51116 0.4220 +3743 51121 0.5160 +3743 51149 0.5010 +3743 51154 0.4210 +3743 54795 0.8290 +3743 55173 0.5090 +3743 55272 0.4950 +3743 55316 0.5010 +3743 55800 0.4710 +3743 56648 0.4260 +3743 63931 0.5010 +3743 64960 0.5010 +3743 64963 0.5010 +3743 64969 0.4650 +3743 65003 0.4780 +3743 65008 0.4690 +3743 79590 0.5160 +3743 114987 0.4620 +3743 126402 0.5110 +3743 140032 0.4890 +3743 143244 0.4260 +3743 153201 0.6460 +3743 157855 0.4020 +3743 162514 0.4080 +3743 200916 0.4750 +3743 285855 0.4500 +3743 347487 0.4220 +3743 387129 0.4520 +3743 401036 0.8000 +3743 100287482 0.4220 +3743 100505478 0.4500 +3743 100526842 0.5030 +3743 100529097 0.4960 +3743 100529239 0.5030 +3744 3921 0.4220 +3744 4736 0.4690 +3744 4951 0.4210 +3744 5469 0.5080 +3744 6122 0.4760 +3744 6123 0.4850 +3744 6124 0.4320 +3744 6125 0.5240 +3744 6128 0.4890 +3744 6129 0.4500 +3744 6132 0.4620 +3744 6133 0.5080 +3744 6135 0.5530 +3744 6136 0.4780 +3744 6137 0.5180 +3744 6138 0.5600 +3744 6139 0.5030 +3744 6141 0.5370 +3744 6142 0.5340 +3744 6143 0.5360 +3744 6144 0.5890 +3744 6146 0.4750 +3744 6147 0.5870 +3744 6152 0.5740 +3744 6154 0.5160 +3744 6155 0.4890 +3744 6156 0.5760 +3744 6158 0.4700 +3744 6159 0.5790 +3744 6160 0.5930 +3744 6164 0.5960 +3744 6165 0.5680 +3744 6166 0.4960 +3744 6168 0.5910 +3744 6169 0.5840 +3744 6173 0.4960 +3744 6175 0.4210 +3744 6176 0.5470 +3744 6181 0.6030 +3744 6183 0.4910 +3744 6187 0.4640 +3744 6188 0.5680 +3744 6189 0.5140 +3744 6191 0.4890 +3744 6192 0.4890 +3744 6193 0.5100 +3744 6194 0.5810 +3744 6201 0.5200 +3744 6202 0.5350 +3744 6203 0.4950 +3744 6204 0.5030 +3744 6205 0.5550 +3744 6207 0.5010 +3744 6208 0.5010 +3744 6209 0.5540 +3744 6217 0.4320 +3744 6218 0.5750 +3744 6222 0.5830 +3744 6223 0.5820 +3744 6224 0.5090 +3744 6227 0.5720 +3744 6228 0.4910 +3744 6229 0.5870 +3744 6230 0.5530 +3744 6231 0.5580 +3744 6232 0.5040 +3744 6234 0.5990 +3744 6235 0.5010 +3744 7311 0.5580 +3744 7881 0.7660 +3744 8514 0.8440 +3744 9045 0.4890 +3744 9196 0.6640 +3744 9349 0.5820 +3744 9858 0.4220 +3744 10399 0.4460 +3744 10412 0.4460 +3744 10473 0.4780 +3744 11222 0.4760 +3744 11224 0.5770 +3744 23521 0.4570 +3744 25873 0.5260 +3744 27133 0.4550 +3744 28998 0.4570 +3744 29093 0.5030 +3744 51065 0.5040 +3744 51069 0.4620 +3744 51073 0.4320 +3744 51081 0.5030 +3744 51116 0.4220 +3744 51121 0.5160 +3744 51149 0.5010 +3744 51154 0.4210 +3744 55173 0.5090 +3744 55272 0.4950 +3744 55316 0.5010 +3744 56648 0.4260 +3744 63931 0.5010 +3744 64960 0.5010 +3744 64963 0.5010 +3744 64969 0.4640 +3744 65003 0.4780 +3744 65008 0.4690 +3744 65055 0.4260 +3744 79590 0.5160 +3744 114987 0.4460 +3744 126402 0.5030 +3744 131096 0.4130 +3744 140032 0.4890 +3744 143244 0.4260 +3744 200916 0.4750 +3744 285855 0.4500 +3744 347487 0.4220 +3744 387129 0.4570 +3744 728957 0.4460 +3744 100287482 0.4220 +3744 100505478 0.4500 +3744 100526842 0.5030 +3744 100529097 0.4960 +3744 100529239 0.5030 +3745 3746 0.5460 +3745 3747 0.4700 +3745 3752 0.6280 +3745 3753 0.5510 +3745 3754 0.6460 +3745 3756 0.7290 +3745 3757 0.6880 +3745 3758 0.4390 +3745 3759 0.4120 +3745 3760 0.4840 +3745 3761 0.4710 +3745 3763 0.4650 +3745 3764 0.5490 +3745 3766 0.4740 +3745 3767 0.5290 +3745 3768 0.5240 +3745 3770 0.4260 +3745 3775 0.5310 +3745 3776 0.4750 +3745 3777 0.5470 +3745 3780 0.4070 +3745 3782 0.4580 +3745 3784 0.4360 +3745 3785 0.5090 +3745 3786 0.5050 +3745 3787 0.7300 +3745 3788 0.5940 +3745 3790 0.9640 +3745 3921 0.4220 +3745 4580 0.5130 +3745 4736 0.4690 +3745 5149 0.5570 +3745 5469 0.5080 +3745 5566 0.6550 +3745 5567 0.6530 +3745 5568 0.6530 +3745 5573 0.5710 +3745 5575 0.5960 +3745 5576 0.5120 +3745 5577 0.5130 +3745 5791 0.4830 +3745 5816 0.4060 +3745 6122 0.4860 +3745 6123 0.4870 +3745 6124 0.4320 +3745 6125 0.5240 +3745 6128 0.4890 +3745 6129 0.4500 +3745 6132 0.4620 +3745 6133 0.5080 +3745 6135 0.5530 +3745 6136 0.4780 +3745 6137 0.5180 +3745 6138 0.5600 +3745 6139 0.5030 +3745 6141 0.5370 +3745 6142 0.5410 +3745 6143 0.5360 +3745 6144 0.5890 +3745 6146 0.4750 +3745 6147 0.5870 +3745 6152 0.5740 +3745 6154 0.5160 +3745 6155 0.4890 +3745 6156 0.5760 +3745 6158 0.4700 +3745 6159 0.5790 +3745 6160 0.5930 +3745 6164 0.5960 +3745 6165 0.5680 +3745 6166 0.4960 +3745 6168 0.5910 +3745 6169 0.5840 +3745 6173 0.4960 +3745 6175 0.4210 +3745 6176 0.5470 +3745 6181 0.5450 +3745 6183 0.4910 +3745 6187 0.4640 +3745 6188 0.5680 +3745 6189 0.5140 +3745 6191 0.4890 +3745 6192 0.4890 +3745 6193 0.6220 +3745 6194 0.5810 +3745 6201 0.5200 +3745 6202 0.5350 +3745 6203 0.4950 +3745 6204 0.5030 +3745 6205 0.5550 +3745 6207 0.5010 +3745 6208 0.5010 +3745 6209 0.5540 +3745 6217 0.4320 +3745 6218 0.5750 +3745 6222 0.5830 +3745 6223 0.5820 +3745 6224 0.5090 +3745 6227 0.5720 +3745 6228 0.4910 +3745 6229 0.5870 +3745 6230 0.5530 +3745 6231 0.5580 +3745 6232 0.5040 +3745 6234 0.5990 +3745 6235 0.5010 +3745 6323 0.6530 +3745 6324 0.4600 +3745 6326 0.4580 +3745 6329 0.6230 +3745 6331 0.6090 +3745 6334 0.6500 +3745 6335 0.6090 +3745 6336 0.4850 +3745 6531 0.6760 +3745 6616 0.7760 +3745 6714 0.4830 +3745 6792 0.4350 +3745 6804 0.9800 +3745 6812 0.4230 +3745 6833 0.4720 +3745 6844 0.6280 +3745 7311 0.5580 +3745 7881 0.8580 +3745 8514 0.8220 +3745 8826 0.5070 +3745 8913 0.4940 +3745 9045 0.4890 +3745 9132 0.4480 +3745 9196 0.7460 +3745 9217 0.8040 +3745 9218 0.8960 +3745 9312 0.7820 +3745 9349 0.5820 +3745 9495 0.6090 +3745 9600 0.5060 +3745 9858 0.4220 +3745 9992 0.6690 +3745 10008 0.4170 +3745 10021 0.4290 +3745 10280 0.6050 +3745 10399 0.4500 +3745 10412 0.4460 +3745 10473 0.4780 +3745 11222 0.4760 +3745 11224 0.5770 +3745 11280 0.5070 +3745 23415 0.4220 +3745 23416 0.5020 +3745 23521 0.4570 +3745 23630 0.5060 +3745 25873 0.5260 +3745 26137 0.4350 +3745 27012 0.4520 +3745 27133 0.5190 +3745 28998 0.4570 +3745 29093 0.5030 +3745 30818 0.4020 +3745 30819 0.6500 +3745 30820 0.4570 +3745 50801 0.4090 +3745 51065 0.5040 +3745 51069 0.4620 +3745 51073 0.4480 +3745 51081 0.5030 +3745 51116 0.4220 +3745 51121 0.5370 +3745 51149 0.5010 +3745 51154 0.4210 +3745 51319 0.4360 +3745 51350 0.5070 +3745 51806 0.4380 +3745 54207 0.4370 +3745 54442 0.4770 +3745 55173 0.5090 +3745 55272 0.4950 +3745 55316 0.5010 +3745 55800 0.4060 +3745 56479 0.4520 +3745 56648 0.4260 +3745 57463 0.7160 +3745 57582 0.5760 +3745 63931 0.5010 +3745 64960 0.5010 +3745 64963 0.5010 +3745 64969 0.4760 +3745 65003 0.4860 +3745 65008 0.4870 +3745 79590 0.5160 +3745 83546 0.4110 +3745 89796 0.5490 +3745 90134 0.4360 +3745 91860 0.4420 +3745 93107 0.9420 +3745 114987 0.4510 +3745 126402 0.5030 +3745 140032 0.4890 +3745 143244 0.4260 +3745 163688 0.4380 +3745 169522 0.4320 +3745 170850 0.6900 +3745 200916 0.4750 +3745 285855 0.4500 +3745 347487 0.4220 +3745 347902 0.4620 +3745 386724 0.4190 +3745 387129 0.4520 +3745 729431 0.4350 +3745 729993 0.4020 +3745 100132399 0.4580 +3745 100287482 0.4220 +3745 100505478 0.4500 +3745 100526842 0.5030 +3745 100529097 0.4960 +3745 100529239 0.5030 +3746 3747 0.7630 +3746 3748 0.7860 +3746 3749 0.9100 +3746 3751 0.4410 +3746 3752 0.4260 +3746 3753 0.5270 +3746 3754 0.5540 +3746 3756 0.6850 +3746 3757 0.6850 +3746 3760 0.4520 +3746 3761 0.4890 +3746 3765 0.5990 +3746 3766 0.4600 +3746 3767 0.4070 +3746 3768 0.4080 +3746 3775 0.4640 +3746 3776 0.4630 +3746 3777 0.4550 +3746 3780 0.4440 +3746 3782 0.4060 +3746 3783 0.5340 +3746 3784 0.4320 +3746 3785 0.6010 +3746 3786 0.5040 +3746 3798 0.4300 +3746 3921 0.4220 +3746 3948 0.7740 +3746 4580 0.5610 +3746 4654 0.4280 +3746 4736 0.4690 +3746 4747 0.4880 +3746 5173 0.4040 +3746 5298 0.6090 +3746 5469 0.5080 +3746 5816 0.6980 +3746 5957 0.7910 +3746 6122 0.4760 +3746 6123 0.4760 +3746 6124 0.4320 +3746 6125 0.5240 +3746 6128 0.4890 +3746 6129 0.4500 +3746 6132 0.4620 +3746 6133 0.5080 +3746 6135 0.5530 +3746 6136 0.4780 +3746 6137 0.5180 +3746 6138 0.5600 +3746 6139 0.5030 +3746 6141 0.5370 +3746 6142 0.5340 +3746 6143 0.5360 +3746 6144 0.5890 +3746 6146 0.4750 +3746 6147 0.5870 +3746 6152 0.5740 +3746 6154 0.5160 +3746 6155 0.4890 +3746 6156 0.5760 +3746 6158 0.4700 +3746 6159 0.5790 +3746 6160 0.5930 +3746 6164 0.5960 +3746 6165 0.5680 +3746 6166 0.4960 +3746 6168 0.5910 +3746 6169 0.5840 +3746 6173 0.4960 +3746 6175 0.4210 +3746 6176 0.5470 +3746 6181 0.5450 +3746 6183 0.4910 +3746 6187 0.4640 +3746 6188 0.5680 +3746 6189 0.5140 +3746 6191 0.4890 +3746 6192 0.4890 +3746 6193 0.5730 +3746 6194 0.5810 +3746 6201 0.5200 +3746 6202 0.5350 +3746 6203 0.4950 +3746 6204 0.5030 +3746 6205 0.5550 +3746 6207 0.5010 +3746 6208 0.5010 +3746 6209 0.5540 +3746 6217 0.4320 +3746 6218 0.5750 +3746 6222 0.5830 +3746 6223 0.5820 +3746 6224 0.5410 +3746 6227 0.5720 +3746 6228 0.4910 +3746 6229 0.5870 +3746 6230 0.5530 +3746 6231 0.5580 +3746 6232 0.5040 +3746 6234 0.5990 +3746 6235 0.5010 +3746 6288 0.5770 +3746 6289 0.4400 +3746 6291 0.5890 +3746 6323 0.5810 +3746 6324 0.4410 +3746 6326 0.6870 +3746 6327 0.4690 +3746 6328 0.4390 +3746 6329 0.5220 +3746 6330 0.5390 +3746 6331 0.5180 +3746 6334 0.6680 +3746 6335 0.4610 +3746 6336 0.4240 +3746 6529 0.4140 +3746 6616 0.4760 +3746 6620 0.5000 +3746 6750 0.4820 +3746 6804 0.4030 +3746 6833 0.4650 +3746 7166 0.4210 +3746 7311 0.5580 +3746 7447 0.7260 +3746 7881 0.9070 +3746 8165 0.4370 +3746 8514 0.8910 +3746 8618 0.6200 +3746 9045 0.4890 +3746 9132 0.4360 +3746 9196 0.7920 +3746 9349 0.5820 +3746 9732 0.4090 +3746 9858 0.4220 +3746 9914 0.4230 +3746 9992 0.4800 +3746 10008 0.4830 +3746 10399 0.4580 +3746 10412 0.4460 +3746 10473 0.4780 +3746 10814 0.4770 +3746 11141 0.5430 +3746 11222 0.4760 +3746 11224 0.5770 +3746 22927 0.4310 +3746 23413 0.8810 +3746 23415 0.4200 +3746 23416 0.5230 +3746 23521 0.4570 +3746 23704 0.4020 +3746 25873 0.5260 +3746 26251 0.5270 +3746 27133 0.4830 +3746 28998 0.4570 +3746 29093 0.5030 +3746 30818 0.9890 +3746 30819 0.9870 +3746 30820 0.9960 +3746 50801 0.4160 +3746 51065 0.5040 +3746 51069 0.4620 +3746 51073 0.4320 +3746 51081 0.5030 +3746 51116 0.4220 +3746 51121 0.5160 +3746 51149 0.5010 +3746 51154 0.4210 +3746 51305 0.5650 +3746 51350 0.4480 +3746 51806 0.4730 +3746 55173 0.5090 +3746 55272 0.4950 +3746 55316 0.5010 +3746 55800 0.4350 +3746 56479 0.4370 +3746 56648 0.4260 +3746 57030 0.4400 +3746 57084 0.4070 +3746 57468 0.5070 +3746 57582 0.5820 +3746 57628 0.8310 +3746 57657 0.4220 +3746 63931 0.5010 +3746 64960 0.5010 +3746 64963 0.5010 +3746 64969 0.4640 +3746 65003 0.4860 +3746 65008 0.4690 +3746 79590 0.5160 +3746 80333 0.9400 +3746 83482 0.5410 +3746 89796 0.4300 +3746 90134 0.4220 +3746 91860 0.4310 +3746 93377 0.5730 +3746 114987 0.4460 +3746 126402 0.5050 +3746 127933 0.6610 +3746 131096 0.4540 +3746 140032 0.4890 +3746 140679 0.5350 +3746 143244 0.4260 +3746 149111 0.4790 +3746 163688 0.4310 +3746 200916 0.4750 +3746 285855 0.4500 +3746 347487 0.4220 +3746 387129 0.4850 +3746 392617 0.4200 +3746 404037 0.5130 +3746 100287482 0.4220 +3746 100505478 0.4500 +3746 100526842 0.5030 +3746 100528017 0.6550 +3746 100529097 0.4960 +3746 100529239 0.5030 +3747 3748 0.4610 +3747 3749 0.4280 +3747 3756 0.4220 +3747 3760 0.4260 +3747 3765 0.5150 +3747 3785 0.4670 +3747 3786 0.4570 +3747 3921 0.4220 +3747 4736 0.4690 +3747 5469 0.5080 +3747 5566 0.5250 +3747 5567 0.5400 +3747 5568 0.5250 +3747 5573 0.5060 +3747 5575 0.5220 +3747 5576 0.5060 +3747 5577 0.5060 +3747 5816 0.5990 +3747 6122 0.4760 +3747 6123 0.4760 +3747 6124 0.4320 +3747 6125 0.5240 +3747 6128 0.4890 +3747 6129 0.4500 +3747 6132 0.4620 +3747 6133 0.5080 +3747 6135 0.5530 +3747 6136 0.4780 +3747 6137 0.5180 +3747 6138 0.5600 +3747 6139 0.5030 +3747 6141 0.5370 +3747 6142 0.5340 +3747 6143 0.5360 +3747 6144 0.5890 +3747 6146 0.4750 +3747 6147 0.5870 +3747 6152 0.5740 +3747 6154 0.5160 +3747 6155 0.4890 +3747 6156 0.5760 +3747 6158 0.4700 +3747 6159 0.5790 +3747 6160 0.5930 +3747 6164 0.5960 +3747 6165 0.5680 +3747 6166 0.4960 +3747 6168 0.5910 +3747 6169 0.5840 +3747 6173 0.4960 +3747 6175 0.4210 +3747 6176 0.5470 +3747 6181 0.5450 +3747 6183 0.4910 +3747 6187 0.4640 +3747 6188 0.5680 +3747 6189 0.5140 +3747 6191 0.4890 +3747 6192 0.4890 +3747 6193 0.5030 +3747 6194 0.5810 +3747 6201 0.5200 +3747 6202 0.5350 +3747 6203 0.4950 +3747 6204 0.5030 +3747 6205 0.5550 +3747 6207 0.5010 +3747 6208 0.5010 +3747 6209 0.5540 +3747 6217 0.4320 +3747 6218 0.5750 +3747 6222 0.5830 +3747 6223 0.5820 +3747 6224 0.5090 +3747 6227 0.5720 +3747 6228 0.4910 +3747 6229 0.5870 +3747 6230 0.5530 +3747 6231 0.5580 +3747 6232 0.5040 +3747 6234 0.5990 +3747 6235 0.5010 +3747 6323 0.6490 +3747 6324 0.7560 +3747 6326 0.6600 +3747 6327 0.4560 +3747 6328 0.6690 +3747 6329 0.5000 +3747 6330 0.4190 +3747 6331 0.4390 +3747 6334 0.5060 +3747 6718 0.4190 +3747 6750 0.4330 +3747 7311 0.5580 +3747 7417 0.4070 +3747 7881 0.7700 +3747 8001 0.5100 +3747 8514 0.7710 +3747 8826 0.5070 +3747 8913 0.4450 +3747 8989 0.4410 +3747 9045 0.4890 +3747 9196 0.7360 +3747 9349 0.5820 +3747 9495 0.5170 +3747 9858 0.4220 +3747 10399 0.4460 +3747 10412 0.4460 +3747 10473 0.4780 +3747 11222 0.4760 +3747 11224 0.5770 +3747 22927 0.5930 +3747 23416 0.5030 +3747 23521 0.4570 +3747 23729 0.5800 +3747 25873 0.5260 +3747 28998 0.4570 +3747 29093 0.5030 +3747 30819 0.4600 +3747 30820 0.4070 +3747 50651 0.4680 +3747 51065 0.5040 +3747 51069 0.4620 +3747 51073 0.4320 +3747 51081 0.5030 +3747 51116 0.4220 +3747 51121 0.5160 +3747 51149 0.5010 +3747 51154 0.4210 +3747 51305 0.4430 +3747 55173 0.5090 +3747 55272 0.4950 +3747 55316 0.5010 +3747 55800 0.6340 +3747 56648 0.4260 +3747 56674 0.4340 +3747 63931 0.5010 +3747 64960 0.5010 +3747 64963 0.5010 +3747 64969 0.4640 +3747 65003 0.4860 +3747 65008 0.4690 +3747 79050 0.4420 +3747 79590 0.5160 +3747 80737 0.4250 +3747 81543 0.4090 +3747 89822 0.4920 +3747 90134 0.4020 +3747 92002 0.4360 +3747 93377 0.4800 +3747 114987 0.4470 +3747 126402 0.5070 +3747 131096 0.5230 +3747 140032 0.4890 +3747 140679 0.4220 +3747 143244 0.4260 +3747 165257 0.4710 +3747 200916 0.4750 +3747 256356 0.4200 +3747 285855 0.4500 +3747 286148 0.4520 +3747 347487 0.4220 +3747 387129 0.4610 +3747 552889 0.4200 +3747 100287482 0.4220 +3747 100505478 0.4500 +3747 100526842 0.5030 +3747 100529097 0.4960 +3747 100529239 0.5030 +3748 3749 0.7400 +3748 3757 0.4010 +3748 3766 0.4110 +3748 3775 0.4010 +3748 3785 0.4300 +3748 3786 0.4250 +3748 3921 0.4220 +3748 4287 0.4800 +3748 4736 0.4690 +3748 5173 0.4150 +3748 5469 0.5080 +3748 5521 0.5990 +3748 5582 0.6770 +3748 5816 0.4420 +3748 6122 0.4760 +3748 6123 0.4830 +3748 6124 0.4320 +3748 6125 0.5240 +3748 6128 0.4890 +3748 6129 0.4500 +3748 6132 0.4640 +3748 6133 0.5080 +3748 6135 0.5530 +3748 6136 0.4780 +3748 6137 0.5180 +3748 6138 0.5600 +3748 6139 0.5030 +3748 6141 0.5370 +3748 6142 0.5340 +3748 6143 0.5360 +3748 6144 0.5890 +3748 6146 0.4750 +3748 6147 0.5890 +3748 6152 0.5740 +3748 6154 0.5160 +3748 6155 0.4890 +3748 6156 0.5760 +3748 6158 0.5020 +3748 6159 0.5790 +3748 6160 0.5930 +3748 6164 0.5960 +3748 6165 0.5680 +3748 6166 0.4960 +3748 6168 0.5910 +3748 6169 0.5840 +3748 6173 0.4960 +3748 6175 0.4210 +3748 6176 0.5470 +3748 6181 0.5450 +3748 6183 0.4920 +3748 6187 0.4640 +3748 6188 0.5680 +3748 6189 0.5230 +3748 6191 0.4890 +3748 6192 0.4890 +3748 6193 0.5210 +3748 6194 0.5810 +3748 6201 0.5200 +3748 6202 0.5350 +3748 6203 0.4950 +3748 6204 0.5030 +3748 6205 0.5550 +3748 6207 0.5010 +3748 6208 0.5050 +3748 6209 0.5550 +3748 6217 0.4320 +3748 6218 0.5750 +3748 6222 0.5830 +3748 6223 0.5820 +3748 6224 0.5090 +3748 6227 0.5720 +3748 6228 0.4910 +3748 6229 0.5870 +3748 6230 0.5530 +3748 6231 0.5580 +3748 6232 0.5040 +3748 6234 0.5990 +3748 6235 0.5010 +3748 6310 0.5410 +3748 6311 0.4790 +3748 6314 0.6640 +3748 6323 0.6130 +3748 6324 0.7450 +3748 6326 0.5440 +3748 6328 0.6300 +3748 6329 0.6240 +3748 6330 0.4640 +3748 6334 0.5440 +3748 6712 0.7380 +3748 6908 0.4730 +3748 7311 0.5580 +3748 7881 0.7720 +3748 8514 0.7850 +3748 9045 0.4890 +3748 9196 0.7430 +3748 9349 0.5820 +3748 9858 0.4270 +3748 10399 0.4460 +3748 10412 0.4460 +3748 10473 0.4780 +3748 10528 0.4470 +3748 10939 0.5980 +3748 11154 0.4180 +3748 11222 0.4760 +3748 11224 0.5770 +3748 22927 0.4170 +3748 22997 0.4300 +3748 23094 0.4290 +3748 23416 0.5220 +3748 23521 0.4570 +3748 25814 0.6950 +3748 25873 0.5260 +3748 25894 0.5050 +3748 26873 0.4070 +3748 27133 0.4180 +3748 28998 0.4570 +3748 29093 0.5030 +3748 30819 0.4630 +3748 51065 0.5040 +3748 51069 0.4620 +3748 51073 0.4320 +3748 51081 0.5030 +3748 51116 0.4220 +3748 51121 0.5160 +3748 51149 0.5010 +3748 51154 0.4210 +3748 55173 0.5590 +3748 55272 0.4990 +3748 55316 0.5010 +3748 55700 0.4020 +3748 55800 0.5800 +3748 56479 0.6280 +3748 56648 0.4260 +3748 57030 0.8120 +3748 57582 0.4910 +3748 57657 0.4220 +3748 63931 0.5010 +3748 64374 0.5690 +3748 64960 0.5010 +3748 64963 0.5010 +3748 64969 0.4640 +3748 65003 0.4860 +3748 65008 0.4690 +3748 79590 0.5160 +3748 80333 0.4200 +3748 114987 0.4480 +3748 126402 0.5790 +3748 140032 0.4890 +3748 143244 0.4260 +3748 146057 0.6610 +3748 200916 0.4750 +3748 285855 0.4500 +3748 339453 0.4970 +3748 343641 0.4190 +3748 347487 0.4220 +3748 387129 0.4520 +3748 392617 0.4490 +3748 100287482 0.4220 +3748 100505478 0.4500 +3748 100526842 0.5030 +3748 100529097 0.4960 +3748 100529239 0.5030 +3749 3750 0.5650 +3749 3752 0.6210 +3749 3753 0.7330 +3749 3756 0.4890 +3749 3757 0.7640 +3749 3761 0.4470 +3749 3768 0.4800 +3749 3775 0.4010 +3749 3776 0.4020 +3749 3777 0.4040 +3749 3783 0.4690 +3749 3784 0.4760 +3749 3785 0.4150 +3749 3786 0.4260 +3749 3921 0.4220 +3749 4736 0.4690 +3749 5469 0.5080 +3749 6122 0.4760 +3749 6123 0.4760 +3749 6124 0.4320 +3749 6125 0.5240 +3749 6128 0.4890 +3749 6129 0.4500 +3749 6132 0.4620 +3749 6133 0.5080 +3749 6135 0.5530 +3749 6136 0.4780 +3749 6137 0.5180 +3749 6138 0.5600 +3749 6139 0.5030 +3749 6141 0.5370 +3749 6142 0.5340 +3749 6143 0.5360 +3749 6144 0.5890 +3749 6146 0.4750 +3749 6147 0.5870 +3749 6152 0.5740 +3749 6154 0.5160 +3749 6155 0.4890 +3749 6156 0.5760 +3749 6158 0.4900 +3749 6159 0.5790 +3749 6160 0.5930 +3749 6164 0.5960 +3749 6165 0.5680 +3749 6166 0.4960 +3749 6168 0.5910 +3749 6169 0.5840 +3749 6173 0.4960 +3749 6175 0.4210 +3749 6176 0.5470 +3749 6181 0.5450 +3749 6183 0.4910 +3749 6187 0.4640 +3749 6188 0.5680 +3749 6189 0.5140 +3749 6191 0.4890 +3749 6192 0.4890 +3749 6193 0.5380 +3749 6194 0.5810 +3749 6201 0.5200 +3749 6202 0.5350 +3749 6203 0.4950 +3749 6204 0.5030 +3749 6205 0.5550 +3749 6207 0.5010 +3749 6208 0.5010 +3749 6209 0.5540 +3749 6217 0.4320 +3749 6218 0.5750 +3749 6222 0.5830 +3749 6223 0.5820 +3749 6224 0.5090 +3749 6227 0.5720 +3749 6228 0.4910 +3749 6229 0.5870 +3749 6230 0.5530 +3749 6231 0.5580 +3749 6232 0.5040 +3749 6234 0.5990 +3749 6235 0.5010 +3749 6323 0.4070 +3749 6326 0.4050 +3749 6329 0.4220 +3749 6334 0.4790 +3749 6335 0.4150 +3749 6336 0.4030 +3749 6532 0.4350 +3749 6751 0.4420 +3749 7311 0.5580 +3749 7881 0.7970 +3749 8514 0.8440 +3749 8913 0.4020 +3749 9045 0.4890 +3749 9132 0.5520 +3749 9196 0.7460 +3749 9349 0.5820 +3749 9858 0.4220 +3749 9992 0.6200 +3749 10008 0.9100 +3749 10399 0.4460 +3749 10412 0.4460 +3749 10473 0.4780 +3749 11080 0.4320 +3749 11222 0.4760 +3749 11224 0.5770 +3749 22927 0.4090 +3749 23416 0.5010 +3749 23521 0.4570 +3749 23704 0.8390 +3749 23729 0.5600 +3749 25873 0.5260 +3749 27133 0.4040 +3749 28998 0.4570 +3749 29093 0.5030 +3749 30819 0.4740 +3749 30820 0.4880 +3749 51065 0.5040 +3749 51069 0.4620 +3749 51073 0.4370 +3749 51081 0.5030 +3749 51116 0.4220 +3749 51121 0.5160 +3749 51149 0.5010 +3749 51154 0.4210 +3749 54442 0.5560 +3749 55173 0.5090 +3749 55186 0.4070 +3749 55272 0.4950 +3749 55316 0.5010 +3749 56479 0.4210 +3749 56648 0.4260 +3749 57628 0.4020 +3749 63931 0.5010 +3749 64960 0.5010 +3749 64963 0.5010 +3749 64969 0.4640 +3749 65003 0.4860 +3749 65008 0.4690 +3749 79590 0.5160 +3749 80333 0.4200 +3749 114987 0.4510 +3749 126402 0.5030 +3749 140032 0.4890 +3749 143244 0.4260 +3749 200916 0.4750 +3749 285855 0.4500 +3749 338567 0.4350 +3749 347487 0.4220 +3749 387129 0.4520 +3749 100287482 0.4220 +3749 100505478 0.4500 +3749 100526842 0.5030 +3749 100529097 0.4960 +3749 100529239 0.5030 +3750 3751 0.6310 +3750 3752 0.7610 +3750 3756 0.4520 +3750 3757 0.4240 +3750 3775 0.4130 +3750 3783 0.4470 +3750 3784 0.4130 +3750 3785 0.4380 +3750 3786 0.4170 +3750 3921 0.4220 +3750 4736 0.4690 +3750 5298 0.6690 +3750 5469 0.5220 +3750 5957 0.5930 +3750 6122 0.4760 +3750 6123 0.4760 +3750 6124 0.4320 +3750 6125 0.5240 +3750 6128 0.4890 +3750 6129 0.4500 +3750 6132 0.4620 +3750 6133 0.5080 +3750 6135 0.5530 +3750 6136 0.4780 +3750 6137 0.5180 +3750 6138 0.5600 +3750 6139 0.5030 +3750 6141 0.5370 +3750 6142 0.5340 +3750 6143 0.5360 +3750 6144 0.5890 +3750 6146 0.4750 +3750 6147 0.5870 +3750 6152 0.5740 +3750 6154 0.5160 +3750 6155 0.4890 +3750 6156 0.5760 +3750 6158 0.4700 +3750 6159 0.5790 +3750 6160 0.5930 +3750 6164 0.5960 +3750 6165 0.5680 +3750 6166 0.4960 +3750 6168 0.5910 +3750 6169 0.5840 +3750 6173 0.4960 +3750 6175 0.4210 +3750 6176 0.5470 +3750 6181 0.5450 +3750 6183 0.4910 +3750 6187 0.4640 +3750 6188 0.5680 +3750 6189 0.5140 +3750 6191 0.4940 +3750 6192 0.4890 +3750 6193 0.5030 +3750 6194 0.5810 +3750 6201 0.5200 +3750 6202 0.5350 +3750 6203 0.4950 +3750 6204 0.5030 +3750 6205 0.5550 +3750 6207 0.5010 +3750 6208 0.5010 +3750 6209 0.5540 +3750 6217 0.4320 +3750 6218 0.5750 +3750 6222 0.5830 +3750 6223 0.5820 +3750 6224 0.5090 +3750 6227 0.5720 +3750 6228 0.4910 +3750 6229 0.5870 +3750 6230 0.5530 +3750 6231 0.5580 +3750 6232 0.5040 +3750 6234 0.5990 +3750 6235 0.5010 +3750 6329 0.4080 +3750 6331 0.4110 +3750 6335 0.4150 +3750 7311 0.5580 +3750 7447 0.7000 +3750 7881 0.7740 +3750 8514 0.7780 +3750 8618 0.6490 +3750 9045 0.4890 +3750 9132 0.4260 +3750 9196 0.6450 +3750 9312 0.4680 +3750 9349 0.5820 +3750 9858 0.4270 +3750 10399 0.4460 +3750 10412 0.4460 +3750 10473 0.4780 +3750 11141 0.6430 +3750 11222 0.4760 +3750 11224 0.5770 +3750 23413 0.6730 +3750 23416 0.4640 +3750 23521 0.4570 +3750 25873 0.5260 +3750 27133 0.5390 +3750 28998 0.4570 +3750 29093 0.5030 +3750 30818 0.8740 +3750 30819 0.8900 +3750 30820 0.9460 +3750 51065 0.5040 +3750 51069 0.4620 +3750 51073 0.4320 +3750 51081 0.5030 +3750 51116 0.4220 +3750 51121 0.5160 +3750 51149 0.5010 +3750 51154 0.4210 +3750 55173 0.5090 +3750 55272 0.4950 +3750 55316 0.5100 +3750 56479 0.4540 +3750 56648 0.4260 +3750 57628 0.5630 +3750 63931 0.5010 +3750 64960 0.5010 +3750 64963 0.5010 +3750 64969 0.4640 +3750 65003 0.4780 +3750 65008 0.4690 +3750 79590 0.5160 +3750 80333 0.9680 +3750 90134 0.4040 +3750 114987 0.4460 +3750 126402 0.5050 +3750 140032 0.4980 +3750 143244 0.4260 +3750 200916 0.4750 +3750 285855 0.4500 +3750 347487 0.4220 +3750 387129 0.4930 +3750 100287482 0.4220 +3750 100505478 0.4500 +3750 100526842 0.5030 +3750 100529097 0.4960 +3750 100529239 0.5030 +3751 3752 0.9320 +3751 3753 0.7600 +3751 3756 0.5880 +3751 3757 0.7980 +3751 3759 0.6230 +3751 3760 0.6190 +3751 3761 0.6020 +3751 3762 0.4950 +3751 3763 0.4630 +3751 3764 0.5700 +3751 3765 0.5800 +3751 3766 0.4580 +3751 3767 0.5000 +3751 3768 0.6210 +3751 3775 0.4400 +3751 3776 0.4490 +3751 3777 0.5430 +3751 3780 0.4900 +3751 3782 0.4060 +3751 3783 0.4070 +3751 3784 0.4860 +3751 3785 0.7200 +3751 3786 0.5070 +3751 3787 0.5540 +3751 3790 0.4280 +3751 3921 0.4220 +3751 4736 0.4690 +3751 4884 0.4210 +3751 5298 0.5950 +3751 5300 0.4320 +3751 5469 0.5080 +3751 5957 0.5660 +3751 6122 0.4760 +3751 6123 0.4760 +3751 6124 0.4320 +3751 6125 0.5240 +3751 6128 0.4890 +3751 6129 0.4500 +3751 6132 0.4620 +3751 6133 0.5080 +3751 6135 0.5530 +3751 6136 0.4780 +3751 6137 0.5180 +3751 6138 0.5600 +3751 6139 0.5030 +3751 6141 0.5370 +3751 6142 0.5340 +3751 6143 0.5360 +3751 6144 0.5890 +3751 6146 0.4750 +3751 6147 0.5870 +3751 6152 0.5740 +3751 6154 0.5160 +3751 6155 0.4890 +3751 6156 0.5760 +3751 6158 0.4700 +3751 6159 0.5790 +3751 6160 0.5930 +3751 6164 0.5960 +3751 6165 0.5680 +3751 6166 0.4960 +3751 6168 0.5910 +3751 6169 0.5840 +3751 6173 0.4960 +3751 6175 0.4210 +3751 6176 0.5470 +3751 6181 0.5450 +3751 6183 0.4910 +3751 6187 0.4640 +3751 6188 0.5680 +3751 6189 0.5140 +3751 6191 0.4890 +3751 6192 0.4890 +3751 6193 0.5290 +3751 6194 0.5880 +3751 6201 0.5200 +3751 6202 0.5350 +3751 6203 0.4950 +3751 6204 0.5030 +3751 6205 0.5550 +3751 6207 0.5010 +3751 6208 0.5010 +3751 6209 0.5540 +3751 6217 0.4320 +3751 6218 0.5750 +3751 6222 0.5830 +3751 6223 0.5820 +3751 6224 0.5090 +3751 6227 0.5720 +3751 6228 0.4910 +3751 6229 0.5870 +3751 6230 0.5530 +3751 6231 0.5580 +3751 6232 0.5040 +3751 6234 0.5990 +3751 6235 0.5010 +3751 6262 0.5960 +3751 6323 0.6030 +3751 6324 0.5990 +3751 6326 0.6070 +3751 6327 0.5820 +3751 6328 0.4910 +3751 6329 0.5190 +3751 6330 0.4680 +3751 6331 0.7200 +3751 6334 0.5710 +3751 6335 0.5380 +3751 6336 0.5320 +3751 7311 0.5580 +3751 7447 0.6670 +3751 7881 0.8410 +3751 8514 0.8860 +3751 8618 0.5970 +3751 8911 0.4870 +3751 8912 0.4940 +3751 8913 0.5290 +3751 9045 0.4890 +3751 9132 0.4130 +3751 9196 0.7540 +3751 9349 0.5820 +3751 9464 0.4120 +3751 9472 0.4370 +3751 9732 0.4120 +3751 9858 0.4220 +3751 9992 0.8380 +3751 10008 0.6060 +3751 10021 0.6230 +3751 10060 0.4340 +3751 10265 0.8840 +3751 10399 0.4460 +3751 10412 0.4460 +3751 10473 0.4780 +3751 11141 0.5920 +3751 11222 0.4760 +3751 11224 0.5770 +3751 23171 0.4240 +3751 23191 0.4270 +3751 23413 0.8700 +3751 23416 0.4460 +3751 23510 0.6510 +3751 23521 0.4570 +3751 23630 0.6280 +3751 23704 0.6260 +3751 25873 0.5260 +3751 26047 0.4010 +3751 27133 0.5340 +3751 28964 0.4160 +3751 28998 0.4570 +3751 29093 0.5030 +3751 29098 0.4920 +3751 29119 0.4560 +3751 30010 0.4540 +3751 30818 0.9880 +3751 30819 0.9990 +3751 30820 0.9990 +3751 51065 0.5040 +3751 51069 0.4620 +3751 51073 0.4320 +3751 51081 0.5030 +3751 51116 0.4220 +3751 51121 0.5160 +3751 51149 0.5010 +3751 51154 0.4210 +3751 51305 0.4840 +3751 51806 0.4340 +3751 54442 0.8620 +3751 54795 0.4260 +3751 55173 0.5090 +3751 55272 0.4950 +3751 55316 0.5010 +3751 55800 0.5540 +3751 56479 0.4610 +3751 56648 0.4260 +3751 57576 0.6790 +3751 57582 0.4470 +3751 57628 0.9800 +3751 63931 0.5010 +3751 64960 0.5010 +3751 64963 0.5010 +3751 64969 0.4640 +3751 65003 0.4780 +3751 65008 0.4690 +3751 79192 0.8390 +3751 79590 0.5160 +3751 79734 0.6300 +3751 80333 0.9490 +3751 83992 0.7020 +3751 91860 0.4300 +3751 114987 0.4460 +3751 116443 0.6230 +3751 116444 0.5710 +3751 126402 0.5030 +3751 127933 0.5610 +3751 140032 0.4890 +3751 143244 0.4260 +3751 150572 0.7420 +3751 163688 0.4300 +3751 169522 0.4420 +3751 200916 0.4750 +3751 285855 0.4500 +3751 347487 0.4220 +3751 387129 0.4680 +3751 100287482 0.4220 +3751 100505478 0.4500 +3751 100526842 0.5030 +3751 100529097 0.4960 +3751 100529239 0.5030 +3752 3753 0.7480 +3752 3756 0.5590 +3752 3757 0.8550 +3752 3759 0.7320 +3752 3760 0.7660 +3752 3761 0.6310 +3752 3762 0.6380 +3752 3763 0.4230 +3752 3764 0.7400 +3752 3765 0.4100 +3752 3767 0.6150 +3752 3768 0.6410 +3752 3775 0.4960 +3752 3776 0.4150 +3752 3777 0.5360 +3752 3780 0.5200 +3752 3782 0.4870 +3752 3783 0.4070 +3752 3784 0.5540 +3752 3785 0.4860 +3752 3786 0.6640 +3752 3790 0.5330 +3752 3921 0.4220 +3752 4633 0.4480 +3752 4736 0.4690 +3752 4878 0.4230 +3752 5318 0.5100 +3752 5469 0.5080 +3752 5521 0.4320 +3752 5582 0.4620 +3752 5957 0.7200 +3752 6122 0.4760 +3752 6123 0.5250 +3752 6124 0.4320 +3752 6125 0.5240 +3752 6128 0.4890 +3752 6129 0.4500 +3752 6132 0.4620 +3752 6133 0.5080 +3752 6135 0.5530 +3752 6136 0.4780 +3752 6137 0.5180 +3752 6138 0.5600 +3752 6139 0.5030 +3752 6141 0.5370 +3752 6142 0.5340 +3752 6143 0.5360 +3752 6144 0.5890 +3752 6146 0.4750 +3752 6147 0.5870 +3752 6152 0.5740 +3752 6154 0.5160 +3752 6155 0.4890 +3752 6156 0.5760 +3752 6158 0.4700 +3752 6159 0.5790 +3752 6160 0.5930 +3752 6164 0.5960 +3752 6165 0.5680 +3752 6166 0.4960 +3752 6168 0.5910 +3752 6169 0.5840 +3752 6173 0.4960 +3752 6175 0.4210 +3752 6176 0.5470 +3752 6181 0.5450 +3752 6183 0.4910 +3752 6187 0.4640 +3752 6188 0.5680 +3752 6189 0.5140 +3752 6191 0.4890 +3752 6192 0.4890 +3752 6193 0.5350 +3752 6194 0.5810 +3752 6201 0.5200 +3752 6202 0.5350 +3752 6203 0.4950 +3752 6204 0.5030 +3752 6205 0.5550 +3752 6207 0.5010 +3752 6208 0.5010 +3752 6209 0.5540 +3752 6217 0.4320 +3752 6218 0.5750 +3752 6222 0.5830 +3752 6223 0.5820 +3752 6224 0.5090 +3752 6227 0.5720 +3752 6228 0.4910 +3752 6229 0.5870 +3752 6230 0.5530 +3752 6231 0.5580 +3752 6232 0.5040 +3752 6234 0.5990 +3752 6235 0.5010 +3752 6262 0.6570 +3752 6314 0.4290 +3752 6323 0.5400 +3752 6324 0.8850 +3752 6326 0.5260 +3752 6327 0.6990 +3752 6328 0.4780 +3752 6329 0.4790 +3752 6330 0.5790 +3752 6331 0.8240 +3752 6334 0.5030 +3752 6335 0.5090 +3752 6336 0.6440 +3752 6546 0.4600 +3752 6712 0.5190 +3752 6833 0.4070 +3752 7139 0.4040 +3752 7311 0.5580 +3752 7871 0.5810 +3752 7881 0.8370 +3752 8514 0.7980 +3752 8911 0.4800 +3752 8912 0.6050 +3752 8913 0.6020 +3752 9045 0.4890 +3752 9132 0.4880 +3752 9196 0.7210 +3752 9349 0.5820 +3752 9472 0.4360 +3752 9631 0.4330 +3752 9749 0.4180 +3752 9858 0.4220 +3752 9992 0.7710 +3752 10008 0.9460 +3752 10021 0.7160 +3752 10060 0.6090 +3752 10345 0.4280 +3752 10371 0.6860 +3752 10399 0.4460 +3752 10412 0.4460 +3752 10473 0.4780 +3752 10939 0.4510 +3752 11222 0.4760 +3752 11224 0.5770 +3752 23171 0.6640 +3752 23413 0.7880 +3752 23521 0.4570 +3752 23630 0.7560 +3752 23704 0.7240 +3752 25814 0.4330 +3752 25873 0.5260 +3752 26608 0.4540 +3752 27133 0.4820 +3752 28998 0.4570 +3752 29093 0.5030 +3752 29098 0.6800 +3752 30818 0.9720 +3752 30819 0.9990 +3752 30820 0.9990 +3752 51065 0.5040 +3752 51069 0.4620 +3752 51073 0.4320 +3752 51081 0.5030 +3752 51116 0.4220 +3752 51121 0.5160 +3752 51149 0.5010 +3752 51154 0.4210 +3752 54795 0.5380 +3752 55173 0.5090 +3752 55272 0.4950 +3752 55316 0.5010 +3752 55800 0.7410 +3752 56479 0.4430 +3752 56648 0.4260 +3752 57628 0.9770 +3752 63931 0.5010 +3752 64374 0.4440 +3752 64960 0.5010 +3752 64963 0.5010 +3752 64969 0.4640 +3752 65003 0.4780 +3752 65008 0.4690 +3752 79590 0.5160 +3752 80333 0.9710 +3752 114987 0.4470 +3752 126402 0.5030 +3752 127933 0.7000 +3752 140032 0.4890 +3752 143244 0.4260 +3752 146057 0.4530 +3752 200916 0.4750 +3752 285855 0.4500 +3752 339453 0.4870 +3752 347487 0.4220 +3752 387129 0.4660 +3752 100287482 0.4220 +3752 100505478 0.4500 +3752 100526842 0.5030 +3752 100529097 0.4960 +3752 100529239 0.5030 +3753 3755 0.5030 +3753 3757 0.9940 +3753 3758 0.4600 +3753 3759 0.8910 +3753 3760 0.4890 +3753 3762 0.7990 +3753 3764 0.5520 +3753 3766 0.5810 +3753 3767 0.4380 +3753 3768 0.4320 +3753 3778 0.4290 +3753 3780 0.4320 +3753 3782 0.4290 +3753 3784 0.9990 +3753 3785 0.8490 +3753 3786 0.8670 +3753 4607 0.4940 +3753 4625 0.4330 +3753 5030 0.4770 +3753 5172 0.4440 +3753 5318 0.5090 +3753 5566 0.9520 +3753 5567 0.9520 +3753 5568 0.9520 +3753 6262 0.7670 +3753 6324 0.6550 +3753 6327 0.5210 +3753 6329 0.5920 +3753 6330 0.8560 +3753 6331 0.9770 +3753 6336 0.5020 +3753 6528 0.4120 +3753 6546 0.4060 +3753 6558 0.4680 +3753 6640 0.7970 +3753 7137 0.4020 +3753 7139 0.4060 +3753 7257 0.4240 +3753 7273 0.6060 +3753 7809 0.4750 +3753 7881 0.4140 +3753 8557 0.5900 +3753 9132 0.8790 +3753 9312 0.4130 +3753 9722 0.6680 +3753 9992 0.5590 +3753 10008 0.9710 +3753 10021 0.6290 +3753 10060 0.4630 +3753 10142 0.9830 +3753 10345 0.5710 +3753 10804 0.6050 +3753 23171 0.5500 +3753 23327 0.6160 +3753 23630 0.9050 +3753 23704 0.9140 +3753 30819 0.6080 +3753 51422 0.4080 +3753 51806 0.4350 +3753 55800 0.6040 +3753 56479 0.6640 +3753 57158 0.4190 +3753 64072 0.4060 +3753 79188 0.4050 +3753 85027 0.4950 +3753 91860 0.4180 +3753 163688 0.4180 +3754 3755 0.5290 +3754 3756 0.4550 +3754 3785 0.4160 +3754 3797 0.5150 +3754 3921 0.4220 +3754 4299 0.4650 +3754 4736 0.4690 +3754 4857 0.4680 +3754 4858 0.7080 +3754 4915 0.4290 +3754 4978 0.4650 +3754 5093 0.5710 +3754 5094 0.5830 +3754 5469 0.5080 +3754 6122 0.4760 +3754 6123 0.4760 +3754 6124 0.4320 +3754 6125 0.5430 +3754 6128 0.4890 +3754 6129 0.4500 +3754 6130 0.4060 +3754 6132 0.4620 +3754 6133 0.5080 +3754 6135 0.5530 +3754 6136 0.4780 +3754 6137 0.5180 +3754 6138 0.5600 +3754 6139 0.5030 +3754 6141 0.5370 +3754 6142 0.5340 +3754 6143 0.5360 +3754 6144 0.5890 +3754 6146 0.4750 +3754 6147 0.5870 +3754 6152 0.5740 +3754 6154 0.5160 +3754 6155 0.4890 +3754 6156 0.5760 +3754 6158 0.4700 +3754 6159 0.5790 +3754 6160 0.5930 +3754 6164 0.5960 +3754 6165 0.5680 +3754 6166 0.4960 +3754 6168 0.5910 +3754 6169 0.5840 +3754 6173 0.4960 +3754 6175 0.4210 +3754 6176 0.5470 +3754 6181 0.5450 +3754 6183 0.4910 +3754 6187 0.4640 +3754 6188 0.5830 +3754 6189 0.5140 +3754 6191 0.4890 +3754 6192 0.4890 +3754 6193 0.5030 +3754 6194 0.5810 +3754 6201 0.5200 +3754 6202 0.5350 +3754 6203 0.4950 +3754 6204 0.6110 +3754 6205 0.5550 +3754 6207 0.5010 +3754 6208 0.5150 +3754 6209 0.5540 +3754 6217 0.4320 +3754 6218 0.5750 +3754 6222 0.5830 +3754 6223 0.5820 +3754 6224 0.5090 +3754 6227 0.5720 +3754 6228 0.4910 +3754 6229 0.5870 +3754 6230 0.5530 +3754 6231 0.5580 +3754 6232 0.5040 +3754 6234 0.5990 +3754 6235 0.5010 +3754 6240 0.4190 +3754 6241 0.5350 +3754 6323 0.4510 +3754 6854 0.4250 +3754 6942 0.4510 +3754 7311 0.5580 +3754 7881 0.7260 +3754 8087 0.6290 +3754 8514 0.7470 +3754 8570 0.4800 +3754 9045 0.4890 +3754 9196 0.7720 +3754 9312 0.5850 +3754 9349 0.5820 +3754 9513 0.6880 +3754 9732 0.4090 +3754 9858 0.4330 +3754 9987 0.5910 +3754 10320 0.5090 +3754 10369 0.6700 +3754 10399 0.4620 +3754 10412 0.4460 +3754 10473 0.4780 +3754 10642 0.4450 +3754 11222 0.4760 +3754 11224 0.5770 +3754 22806 0.4340 +3754 23191 0.4990 +3754 23415 0.4950 +3754 23416 0.5890 +3754 23521 0.4570 +3754 25873 0.5260 +3754 26747 0.5750 +3754 27230 0.4870 +3754 28998 0.4570 +3754 29093 0.5030 +3754 51065 0.5040 +3754 51069 0.4620 +3754 51073 0.4320 +3754 51081 0.5030 +3754 51116 0.4220 +3754 51121 0.5160 +3754 51149 0.5010 +3754 51154 0.4210 +3754 55173 0.5090 +3754 55272 0.4950 +3754 55316 0.5010 +3754 56001 0.4240 +3754 56648 0.4260 +3754 57532 0.5540 +3754 63931 0.5010 +3754 64960 0.5010 +3754 64963 0.5010 +3754 64969 0.4640 +3754 65003 0.4860 +3754 65008 0.4690 +3754 79590 0.5160 +3754 79954 0.4750 +3754 114798 0.4620 +3754 114987 0.4460 +3754 126402 0.5030 +3754 130814 0.4460 +3754 131096 0.4360 +3754 140032 0.4890 +3754 143244 0.4260 +3754 200916 0.4750 +3754 245973 0.8000 +3754 285855 0.4500 +3754 347487 0.4220 +3754 387129 0.4520 +3754 728343 0.4240 +3754 100287482 0.4220 +3754 100505478 0.4500 +3754 100526842 0.5030 +3754 100529097 0.4960 +3754 100529239 0.5030 +3755 3797 0.4930 +3755 3921 0.4220 +3755 4736 0.4690 +3755 4858 0.6280 +3755 5093 0.8200 +3755 5094 0.8400 +3755 5469 0.5080 +3755 6122 0.4760 +3755 6123 0.4770 +3755 6124 0.4320 +3755 6125 0.5490 +3755 6128 0.4890 +3755 6129 0.4500 +3755 6132 0.4620 +3755 6133 0.5080 +3755 6135 0.5530 +3755 6136 0.4780 +3755 6137 0.5190 +3755 6138 0.5600 +3755 6139 0.5030 +3755 6141 0.5370 +3755 6142 0.5340 +3755 6143 0.5360 +3755 6144 0.5890 +3755 6146 0.4750 +3755 6147 0.5870 +3755 6152 0.5740 +3755 6154 0.5160 +3755 6155 0.4890 +3755 6156 0.5760 +3755 6158 0.4700 +3755 6159 0.5790 +3755 6160 0.5930 +3755 6164 0.5960 +3755 6165 0.5680 +3755 6166 0.5160 +3755 6168 0.5910 +3755 6169 0.5840 +3755 6173 0.4960 +3755 6175 0.4210 +3755 6176 0.5470 +3755 6181 0.5450 +3755 6183 0.4920 +3755 6187 0.4640 +3755 6188 0.5680 +3755 6189 0.5140 +3755 6191 0.4890 +3755 6192 0.4890 +3755 6193 0.5030 +3755 6194 0.5890 +3755 6201 0.5200 +3755 6202 0.5350 +3755 6203 0.4950 +3755 6204 0.5810 +3755 6205 0.5550 +3755 6207 0.5010 +3755 6208 0.5010 +3755 6209 0.5540 +3755 6217 0.4320 +3755 6218 0.5750 +3755 6222 0.7110 +3755 6223 0.5820 +3755 6224 0.5090 +3755 6227 0.5720 +3755 6228 0.4910 +3755 6229 0.5870 +3755 6230 0.5530 +3755 6231 0.5710 +3755 6232 0.5040 +3755 6234 0.6000 +3755 6235 0.5010 +3755 6942 0.4020 +3755 7311 0.5580 +3755 7881 0.6700 +3755 8087 0.8300 +3755 8514 0.6700 +3755 9045 0.4890 +3755 9196 0.7850 +3755 9349 0.5820 +3755 9413 0.4260 +3755 9424 0.5080 +3755 9513 0.8730 +3755 9858 0.4220 +3755 9987 0.5420 +3755 10399 0.4510 +3755 10412 0.4460 +3755 10473 0.4780 +3755 10576 0.4150 +3755 11222 0.4760 +3755 11224 0.5770 +3755 23191 0.5550 +3755 23415 0.4990 +3755 23416 0.4960 +3755 23521 0.4570 +3755 25873 0.5260 +3755 26251 0.4520 +3755 26747 0.5750 +3755 28998 0.4570 +3755 29093 0.5030 +3755 51065 0.5040 +3755 51069 0.4630 +3755 51073 0.4320 +3755 51081 0.5030 +3755 51116 0.4240 +3755 51121 0.5160 +3755 51149 0.5010 +3755 51154 0.4210 +3755 55173 0.5090 +3755 55272 0.4950 +3755 55316 0.5010 +3755 56001 0.4220 +3755 56648 0.4260 +3755 56659 0.5260 +3755 57532 0.5780 +3755 63931 0.5010 +3755 64960 0.5010 +3755 64963 0.5010 +3755 64969 0.4640 +3755 65003 0.6280 +3755 65008 0.4690 +3755 79001 0.5820 +3755 79590 0.5160 +3755 79738 0.4130 +3755 92154 0.4290 +3755 93107 0.4670 +3755 114987 0.4460 +3755 126402 0.5030 +3755 131096 0.4080 +3755 140032 0.4890 +3755 143244 0.4260 +3755 170850 0.4640 +3755 200916 0.4750 +3755 285855 0.4500 +3755 338567 0.4010 +3755 347487 0.4220 +3755 387129 0.4520 +3755 728343 0.4220 +3755 100287482 0.4220 +3755 100505478 0.4500 +3755 100526842 0.5030 +3755 100529097 0.4960 +3755 100529239 0.5030 +3756 3761 0.4650 +3756 3765 0.4140 +3756 3768 0.4220 +3756 3778 0.6820 +3756 3780 0.4310 +3756 3782 0.4550 +3756 3783 0.5140 +3756 3784 0.5670 +3756 3785 0.6010 +3756 3786 0.5780 +3756 3914 0.5830 +3756 5525 0.7810 +3756 6331 0.6020 +3756 6334 0.4540 +3756 6335 0.4070 +3756 7881 0.7480 +3756 8514 0.7280 +3756 8573 0.4880 +3756 8831 0.4190 +3756 9196 0.6960 +3756 9312 0.4250 +3756 9926 0.8330 +3756 27133 0.4470 +3756 27349 0.4670 +3756 50801 0.4490 +3756 51305 0.5190 +3756 51350 0.4660 +3756 51806 0.7640 +3756 56479 0.4700 +3756 57582 0.5410 +3756 84876 0.5590 +3756 91860 0.7220 +3756 163688 0.7220 +3757 3758 0.5030 +3757 3759 0.9300 +3757 3760 0.6050 +3757 3761 0.5800 +3757 3762 0.7910 +3757 3764 0.6250 +3757 3767 0.6000 +3757 3768 0.6030 +3757 3775 0.6110 +3757 3776 0.5390 +3757 3777 0.5250 +3757 3778 0.6290 +3757 3780 0.5030 +3757 3782 0.5000 +3757 3783 0.5590 +3757 3784 0.9830 +3757 3785 0.6640 +3757 3786 0.5370 +3757 4000 0.4260 +3757 4607 0.5820 +3757 4624 0.4850 +3757 4625 0.5780 +3757 4633 0.5390 +3757 4634 0.4500 +3757 4684 0.4360 +3757 4734 0.4750 +3757 4878 0.4150 +3757 5243 0.4100 +3757 5318 0.6200 +3757 5481 0.4220 +3757 6193 0.4800 +3757 6262 0.7460 +3757 6271 0.4200 +3757 6323 0.5150 +3757 6324 0.6730 +3757 6326 0.5600 +3757 6327 0.6130 +3757 6328 0.4280 +3757 6329 0.7460 +3757 6330 0.8340 +3757 6331 0.9780 +3757 6334 0.5030 +3757 6335 0.5110 +3757 6336 0.6230 +3757 6508 0.4410 +3757 6546 0.4490 +3757 6582 0.4950 +3757 6640 0.6730 +3757 6714 0.5600 +3757 6722 0.4830 +3757 6833 0.4850 +3757 6910 0.4130 +3757 7124 0.5150 +3757 7137 0.5520 +3757 7139 0.5940 +3757 7168 0.4280 +3757 7273 0.4460 +3757 7531 0.4130 +3757 7852 0.4830 +3757 7871 0.4470 +3757 7881 0.6940 +3757 8514 0.6910 +3757 8645 0.4520 +3757 8856 0.4560 +3757 8912 0.4840 +3757 8913 0.4790 +3757 9132 0.7520 +3757 9196 0.6290 +3757 9311 0.4110 +3757 9312 0.4550 +3757 9360 0.6680 +3757 9532 0.5970 +3757 9631 0.4120 +3757 9722 0.7520 +3757 9868 0.4260 +3757 9992 0.9980 +3757 10008 0.9500 +3757 10021 0.5760 +3757 10060 0.6040 +3757 10142 0.7960 +3757 10190 0.4400 +3757 10273 0.7110 +3757 10280 0.7220 +3757 10345 0.5890 +3757 11255 0.4130 +3757 23171 0.5960 +3757 23327 0.6790 +3757 23416 0.5170 +3757 23630 0.8300 +3757 23704 0.8570 +3757 23770 0.6680 +3757 29098 0.5710 +3757 30819 0.6450 +3757 51305 0.4700 +3757 51350 0.4800 +3757 51422 0.5030 +3757 51806 0.6120 +3757 54207 0.4440 +3757 54795 0.5360 +3757 55800 0.6540 +3757 56479 0.4410 +3757 57470 0.4040 +3757 57582 0.4640 +3757 79188 0.4510 +3757 81033 0.8830 +3757 89796 0.6640 +3757 90134 0.6240 +3757 91752 0.4140 +3757 91860 0.6120 +3757 117584 0.4440 +3757 144245 0.6360 +3757 163688 0.6120 +3757 255738 0.5190 +3757 338567 0.4650 +3757 388591 0.7610 +3758 3766 0.5610 +3758 3775 0.4260 +3758 3776 0.4150 +3758 3777 0.4220 +3758 3778 0.8020 +3758 3779 0.4100 +3758 3784 0.5220 +3758 3785 0.4190 +3758 4306 0.4780 +3758 5172 0.5550 +3758 5972 0.5770 +3758 6337 0.7070 +3758 6338 0.7430 +3758 6340 0.7150 +3758 6446 0.9750 +3758 6453 0.8110 +3758 6521 0.4060 +3758 6523 0.4110 +3758 6550 0.6350 +3758 6557 0.9880 +3758 6558 0.5470 +3758 6559 0.9650 +3758 6569 0.5160 +3758 6833 0.6800 +3758 7369 0.7410 +3758 7809 0.9200 +3758 8671 0.4590 +3758 9247 0.4430 +3758 9351 0.5910 +3758 9365 0.4500 +3758 9368 0.5450 +3758 9376 0.4230 +3758 9635 0.4400 +3758 9943 0.7620 +3758 9992 0.4040 +3758 10060 0.4070 +3758 10686 0.6740 +3758 10723 0.4190 +3758 10916 0.4470 +3758 11194 0.6280 +3758 23327 0.6830 +3758 23562 0.4800 +3758 26249 0.5570 +3758 27347 0.8450 +3758 50617 0.4400 +3758 50618 0.6670 +3758 51305 0.4390 +3758 51458 0.4200 +3758 55503 0.4480 +3758 55586 0.4790 +3758 56302 0.7220 +3758 57630 0.4080 +3758 65125 0.9360 +3758 65266 0.9700 +3758 65267 0.8530 +3758 65268 0.6350 +3758 83795 0.4200 +3758 89822 0.4580 +3758 120939 0.4740 +3758 127833 0.4290 +3758 140803 0.5260 +3758 142680 0.4760 +3758 149461 0.5830 +3759 3760 0.6010 +3759 3761 0.9580 +3759 3762 0.5610 +3759 3763 0.7100 +3759 3765 0.5320 +3759 3766 0.5630 +3759 3768 0.9730 +3759 3770 0.9050 +3759 3772 0.8150 +3759 3775 0.4460 +3759 3777 0.4190 +3759 3778 0.4490 +3759 3782 0.4520 +3759 3784 0.9920 +3759 3785 0.9330 +3759 3786 0.9330 +3759 4487 0.4050 +3759 4607 0.5150 +3759 4624 0.5420 +3759 4625 0.5390 +3759 4633 0.5330 +3759 4634 0.4500 +3759 4878 0.5070 +3759 5318 0.4800 +3759 6262 0.7290 +3759 6324 0.6650 +3759 6327 0.5980 +3759 6329 0.8240 +3759 6330 0.8560 +3759 6331 0.8960 +3759 6336 0.4700 +3759 6546 0.5150 +3759 6640 0.7830 +3759 6662 0.7820 +3759 6772 0.4060 +3759 6833 0.5230 +3759 6910 0.5110 +3759 7135 0.4480 +3759 7137 0.5670 +3759 7139 0.5640 +3759 7273 0.4290 +3759 7475 0.4180 +3759 8190 0.4970 +3759 8912 0.4500 +3759 8913 0.4440 +3759 9132 0.9250 +3759 9464 0.5590 +3759 9568 0.5400 +3759 9631 0.5010 +3759 9722 0.5270 +3759 9992 0.8900 +3759 10008 0.6830 +3759 10021 0.7350 +3759 10060 0.6580 +3759 10142 0.7760 +3759 10345 0.6840 +3759 10681 0.5590 +3759 23171 0.5210 +3759 23630 0.6120 +3759 23704 0.4960 +3759 26086 0.4100 +3759 30819 0.6180 +3759 51422 0.4590 +3759 51764 0.5410 +3759 51778 0.4380 +3759 54331 0.5540 +3759 54795 0.4110 +3759 55800 0.6090 +3759 55970 0.5280 +3759 56479 0.9290 +3759 57158 0.4620 +3759 58498 0.5150 +3759 59345 0.5670 +3759 65125 0.4280 +3759 65266 0.4860 +3759 93649 0.4330 +3759 94235 0.5410 +3759 253017 0.4470 +3759 388591 0.4360 +3759 100134444 0.9230 +3760 3761 0.5710 +3760 3762 0.9970 +3760 3763 0.9980 +3760 3764 0.4650 +3760 3765 0.9900 +3760 3766 0.5650 +3760 3768 0.5650 +3760 3772 0.5680 +3760 3775 0.5650 +3760 3776 0.4620 +3760 3777 0.5730 +3760 3778 0.4280 +3760 3780 0.5080 +3760 3782 0.4550 +3760 3784 0.6150 +3760 3785 0.5060 +3760 3786 0.4730 +3760 3787 0.4030 +3760 4633 0.4210 +3760 4761 0.7730 +3760 4878 0.4350 +3760 5037 0.4360 +3760 5566 0.9240 +3760 5567 0.9240 +3760 5568 0.9230 +3760 5999 0.4770 +3760 6000 0.4360 +3760 6262 0.5230 +3760 6295 0.5380 +3760 6331 0.5990 +3760 6546 0.4090 +3760 6833 0.6740 +3760 6910 0.4290 +3760 7447 0.4410 +3760 8801 0.8920 +3760 8913 0.4620 +3760 9568 0.9590 +3760 9628 0.5100 +3760 10021 0.6310 +3760 10060 0.4900 +3760 10681 0.8670 +3760 11069 0.4250 +3760 30819 0.6170 +3760 50805 0.6060 +3760 51305 0.5480 +3760 51350 0.4470 +3760 51764 0.7390 +3760 54331 0.8960 +3760 55970 0.7080 +3760 58498 0.4240 +3760 59345 0.7360 +3760 79057 0.4370 +3760 84687 0.4830 +3760 90134 0.4590 +3760 94235 0.7050 +3760 220296 0.6230 +3760 100130742 0.4430 +3761 3762 0.5470 +3761 3763 0.5530 +3761 3765 0.6660 +3761 3766 0.7560 +3761 3768 0.9770 +3761 3770 0.9060 +3761 3772 0.5720 +3761 3775 0.4680 +3761 3777 0.4710 +3761 3778 0.4220 +3761 3780 0.4420 +3761 3784 0.9480 +3761 3785 0.9510 +3761 3786 0.9430 +3761 6262 0.4170 +3761 6324 0.4150 +3761 6327 0.4710 +3761 6331 0.5900 +3761 6334 0.4240 +3761 6640 0.4570 +3761 6833 0.6490 +3761 8573 0.6040 +3761 8645 0.5710 +3761 8825 0.7400 +3761 8913 0.4790 +3761 9132 0.9360 +3761 9568 0.6280 +3761 10021 0.4200 +3761 10681 0.5510 +3761 23096 0.5490 +3761 23109 0.5180 +3761 23416 0.4230 +3761 30819 0.5180 +3761 30851 0.7480 +3761 50801 0.4430 +3761 51305 0.5370 +3761 51764 0.6250 +3761 54331 0.5540 +3761 55327 0.6770 +3761 55970 0.5370 +3761 56479 0.9250 +3761 56660 0.4290 +3761 57699 0.4100 +3761 59345 0.5420 +3761 64130 0.5150 +3761 94235 0.5390 +3761 100134444 0.9030 +3762 3763 0.9240 +3762 3765 0.9170 +3762 3766 0.5670 +3762 3768 0.5520 +3762 3772 0.6970 +3762 3775 0.5210 +3762 3776 0.4080 +3762 3777 0.6020 +3762 3780 0.5310 +3762 3782 0.4660 +3762 3784 0.7450 +3762 4158 0.4010 +3762 4306 0.4250 +3762 4878 0.4180 +3762 5037 0.4220 +3762 5443 0.4630 +3762 5566 0.9320 +3762 5567 0.9290 +3762 5568 0.9250 +3762 5662 0.4530 +3762 5972 0.5420 +3762 5999 0.4590 +3762 6262 0.5270 +3762 6263 0.4280 +3762 6295 0.4120 +3762 6324 0.6050 +3762 6327 0.5620 +3762 6329 0.4910 +3762 6330 0.8410 +3762 6331 0.7630 +3762 6336 0.5120 +3762 6640 0.7700 +3762 6833 0.5970 +3762 7275 0.4300 +3762 7447 0.4370 +3762 8522 0.5050 +3762 8622 0.4090 +3762 8801 0.7410 +3762 8912 0.7060 +3762 8913 0.4030 +3762 9568 0.9110 +3762 9992 0.8060 +3762 10008 0.6740 +3762 10021 0.6360 +3762 10060 0.6370 +3762 10142 0.7690 +3762 10345 0.5190 +3762 10681 0.7730 +3762 22852 0.4910 +3762 23171 0.4380 +3762 23630 0.5100 +3762 23704 0.4160 +3762 30819 0.4790 +3762 50940 0.4310 +3762 51305 0.5630 +3762 51764 0.6830 +3762 54331 0.8810 +3762 54504 0.4440 +3762 55800 0.6090 +3762 55970 0.6690 +3762 59345 0.7730 +3762 79798 0.6240 +3762 94235 0.6890 +3762 114294 0.4820 +3762 100134444 0.4130 +3763 3764 0.4490 +3763 3765 0.9940 +3763 3766 0.5510 +3763 3768 0.5590 +3763 3772 0.5770 +3763 3777 0.4270 +3763 3784 0.4260 +3763 3785 0.5810 +3763 3786 0.5140 +3763 3787 0.4240 +3763 4009 0.6850 +3763 4010 0.5250 +3763 4681 0.8790 +3763 4929 0.6100 +3763 4988 0.5320 +3763 5015 0.5190 +3763 5121 0.4950 +3763 5309 0.6640 +3763 5566 0.9160 +3763 5567 0.9170 +3763 5568 0.9160 +3763 5916 0.4200 +3763 5999 0.4110 +3763 6000 0.6500 +3763 6531 0.6740 +3763 6571 0.6930 +3763 6647 0.4620 +3763 6833 0.5850 +3763 7054 0.5700 +3763 7185 0.5370 +3763 7186 0.5020 +3763 8801 0.6860 +3763 9212 0.9040 +3763 9568 0.9620 +3763 10060 0.4380 +3763 10454 0.7950 +3763 10542 0.4350 +3763 10681 0.7890 +3763 23101 0.5300 +3763 27012 0.4270 +3763 51305 0.4700 +3763 51764 0.6980 +3763 54331 0.8980 +3763 55143 0.9270 +3763 55970 0.6690 +3763 56479 0.4200 +3763 57084 0.4380 +3763 57156 0.8440 +3763 59345 0.8150 +3763 83903 0.4890 +3763 94235 0.7200 +3763 151246 0.5460 +3763 151648 0.4910 +3764 3765 0.4430 +3764 3767 0.9910 +3764 3775 0.4430 +3764 3776 0.4300 +3764 3777 0.5050 +3764 3778 0.4970 +3764 3780 0.4350 +3764 3784 0.6170 +3764 3790 0.4490 +3764 5025 0.4060 +3764 5159 0.4280 +3764 5318 0.5180 +3764 5348 0.6100 +3764 5350 0.6780 +3764 5581 0.9010 +3764 5826 0.5990 +3764 6262 0.4760 +3764 6324 0.7200 +3764 6327 0.6330 +3764 6330 0.4960 +3764 6331 0.6790 +3764 6336 0.5620 +3764 6548 0.5820 +3764 6833 0.9990 +3764 7871 0.5940 +3764 7881 0.4260 +3764 8490 0.4070 +3764 8514 0.4520 +3764 8714 0.5230 +3764 9992 0.5520 +3764 10008 0.7340 +3764 10021 0.6540 +3764 10058 0.5560 +3764 10060 0.9990 +3764 10345 0.4220 +3764 11069 0.5070 +3764 11194 0.7040 +3764 23171 0.6850 +3764 23439 0.4480 +3764 23630 0.7260 +3764 23704 0.5060 +3764 29098 0.6940 +3764 51350 0.4120 +3764 54795 0.6180 +3764 55800 0.7310 +3764 64135 0.6450 +3764 64240 0.5820 +3764 64241 0.5710 +3764 254827 0.4200 +3764 340273 0.5110 +3765 3766 0.6580 +3765 3768 0.5740 +3765 3772 0.5670 +3765 3780 0.4400 +3765 3784 0.4060 +3765 3785 0.5840 +3765 3786 0.5090 +3765 3787 0.4410 +3765 4062 0.4020 +3765 4099 0.4290 +3765 4504 0.4650 +3765 4978 0.4260 +3765 5566 0.9090 +3765 5567 0.9130 +3765 5568 0.9090 +3765 5997 0.5240 +3765 6000 0.6530 +3765 6327 0.4950 +3765 6529 0.4080 +3765 6534 0.4010 +3765 6620 0.4510 +3765 6833 0.6010 +3765 6900 0.4390 +3765 8514 0.4160 +3765 8913 0.5120 +3765 9362 0.4450 +3765 9568 0.9460 +3765 9796 0.4110 +3765 10368 0.4240 +3765 10681 0.9080 +3765 23017 0.4020 +3765 23416 0.4640 +3765 23620 0.4490 +3765 51286 0.4340 +3765 51305 0.5480 +3765 51440 0.5020 +3765 51764 0.7810 +3765 54331 0.7820 +3765 55800 0.4040 +3765 55970 0.6690 +3765 56660 0.4070 +3765 56934 0.4430 +3765 57084 0.4040 +3765 57512 0.4060 +3765 57582 0.4930 +3765 58157 0.4750 +3765 59284 0.4130 +3765 59345 0.7500 +3765 60484 0.4200 +3765 81551 0.4180 +3765 81609 0.7640 +3765 83482 0.4690 +3765 84249 0.4120 +3765 85397 0.4330 +3765 93377 0.7710 +3765 94235 0.7600 +3765 132204 0.4550 +3765 140679 0.4220 +3765 158931 0.4340 +3765 221938 0.4020 +3765 283999 0.4850 +3765 441151 0.4040 +3765 642968 0.4220 +3766 3768 0.6700 +3766 3772 0.6910 +3766 3775 0.5930 +3766 3776 0.5810 +3766 3777 0.4130 +3766 3778 0.5400 +3766 3782 0.4130 +3766 3783 0.4270 +3766 3784 0.6490 +3766 3785 0.5390 +3766 3786 0.5760 +3766 4155 0.6060 +3766 4340 0.6440 +3766 5172 0.9290 +3766 6261 0.4070 +3766 6285 0.5730 +3766 6323 0.4720 +3766 6326 0.4610 +3766 6334 0.4890 +3766 6506 0.7600 +3766 6507 0.6950 +3766 6529 0.4640 +3766 6538 0.4350 +3766 6557 0.5190 +3766 6558 0.6260 +3766 6559 0.6050 +3766 6640 0.6460 +3766 6833 0.6090 +3766 7082 0.4650 +3766 7170 0.4390 +3766 7402 0.5210 +3766 7809 0.5890 +3766 8038 0.4400 +3766 8404 0.4110 +3766 8645 0.4270 +3766 8671 0.4240 +3766 9129 0.4690 +3766 9132 0.5130 +3766 9381 0.4010 +3766 9568 0.5890 +3766 10681 0.5410 +3766 10686 0.4160 +3766 10723 0.4050 +3766 10804 0.6700 +3766 10840 0.5260 +3766 22820 0.5080 +3766 23209 0.6310 +3766 27347 0.5060 +3766 51305 0.4590 +3766 51350 0.5420 +3766 51764 0.5660 +3766 54207 0.4730 +3766 54331 0.5550 +3766 55283 0.6170 +3766 55970 0.5260 +3766 56262 0.6700 +3766 57165 0.4750 +3766 57192 0.5790 +3766 57468 0.4560 +3766 57582 0.4840 +3766 59341 0.6510 +3766 59345 0.5340 +3766 64218 0.4280 +3766 65125 0.4050 +3766 65266 0.5060 +3766 80131 0.4350 +3766 94235 0.5260 +3766 140803 0.4830 +3766 146713 0.4010 +3766 220296 0.7190 +3766 283578 0.4200 +3766 375790 0.5690 +3767 3768 0.4520 +3767 3775 0.4210 +3767 3777 0.4700 +3767 3778 0.4740 +3767 3784 0.7490 +3767 3785 0.4290 +3767 4160 0.4050 +3767 4210 0.5420 +3767 4261 0.6270 +3767 4544 0.7450 +3767 4671 0.5930 +3767 4760 0.6280 +3767 4821 0.4980 +3767 4825 0.5870 +3767 4853 0.4170 +3767 4925 0.5120 +3767 5078 0.6460 +3767 5122 0.5580 +3767 5126 0.5340 +3767 5325 0.5440 +3767 5468 0.7480 +3767 5539 0.5070 +3767 5566 0.5990 +3767 5567 0.5980 +3767 5568 0.5990 +3767 6324 0.4300 +3767 6331 0.5940 +3767 6514 0.8150 +3767 6566 0.7460 +3767 6750 0.5190 +3767 6833 0.9990 +3767 6927 0.8290 +3767 6928 0.5440 +3767 6934 0.8390 +3767 7103 0.5340 +3767 7167 0.5090 +3767 7351 0.6980 +3767 7466 0.7250 +3767 7529 0.5700 +3767 8290 0.5990 +3767 8337 0.4910 +3767 8338 0.4880 +3767 8356 0.4380 +3767 8462 0.5830 +3767 8872 0.6440 +3767 8972 0.4610 +3767 9212 0.7600 +3767 9451 0.4710 +3767 9568 0.9100 +3767 10008 0.4760 +3767 10021 0.4450 +3767 10060 0.9990 +3767 10083 0.4080 +3767 10392 0.4120 +3767 10411 0.7870 +3767 10560 0.5060 +3767 10644 0.7800 +3767 11004 0.5760 +3767 11069 0.8250 +3767 11132 0.7500 +3767 22861 0.4080 +3767 23244 0.5090 +3767 26060 0.4350 +3767 26297 0.4550 +3767 27429 0.5130 +3767 30819 0.4620 +3767 50674 0.5790 +3767 51124 0.5070 +3767 54512 0.4470 +3767 54629 0.4430 +3767 54739 0.5750 +3767 54795 0.5230 +3767 54901 0.8570 +3767 55800 0.4590 +3767 55920 0.4160 +3767 56999 0.5110 +3767 57118 0.5480 +3767 57448 0.6380 +3767 58484 0.4470 +3767 79054 0.4260 +3767 79068 0.7250 +3767 79444 0.7240 +3767 83795 0.4760 +3767 83903 0.7190 +3767 84504 0.5250 +3767 93587 0.4460 +3767 116985 0.4030 +3767 145741 0.4780 +3767 169026 0.8400 +3767 169792 0.5950 +3767 221895 0.6090 +3767 222546 0.6260 +3767 256297 0.7090 +3767 340273 0.8570 +3767 346171 0.6150 +3767 388125 0.4180 +3767 440093 0.4370 +3767 440686 0.4370 +3767 653604 0.4370 +3768 3770 0.9060 +3768 3772 0.5630 +3768 3775 0.5080 +3768 3776 0.4090 +3768 3777 0.4700 +3768 3778 0.4570 +3768 3780 0.4290 +3768 3784 0.9540 +3768 3785 0.9480 +3768 3786 0.9340 +3768 5970 0.4190 +3768 6262 0.4610 +3768 6324 0.4600 +3768 6329 0.4450 +3768 6331 0.6250 +3768 6546 0.4120 +3768 6640 0.5170 +3768 6833 0.6490 +3768 7881 0.4530 +3768 8573 0.5740 +3768 8825 0.7560 +3768 8912 0.4500 +3768 8913 0.4900 +3768 9132 0.9340 +3768 9312 0.4010 +3768 9568 0.5430 +3768 10021 0.5530 +3768 10060 0.5160 +3768 10681 0.5430 +3768 23416 0.4530 +3768 30819 0.4880 +3768 51305 0.4480 +3768 51350 0.6040 +3768 51678 0.6580 +3768 51764 0.5960 +3768 54331 0.5540 +3768 55327 0.7560 +3768 55970 0.5280 +3768 56479 0.9360 +3768 59345 0.5610 +3768 64130 0.5470 +3768 79943 0.4110 +3768 94235 0.5650 +3768 254773 0.4210 +3768 387836 0.4060 +3768 100134444 0.9010 +3769 3780 0.4710 +3769 3783 0.9320 +3769 3784 0.9340 +3769 3787 0.5930 +3769 4160 0.6710 +3769 5010 0.4470 +3769 5443 0.4280 +3769 6121 0.4910 +3769 6549 0.4570 +3769 6833 0.5080 +3769 7287 0.5050 +3769 7439 0.4110 +3769 8645 0.9290 +3769 9227 0.4220 +3769 9424 0.5220 +3769 9657 0.6320 +3769 10008 0.9200 +3769 23059 0.4160 +3769 23746 0.5430 +3769 54102 0.4270 +3769 55812 0.5990 +3769 57010 0.5190 +3769 57096 0.4870 +3769 57835 0.4370 +3769 64802 0.4880 +3769 65266 0.4080 +3769 80184 0.5020 +3769 83795 0.4280 +3769 90134 0.4520 +3769 145226 0.5060 +3769 152404 0.4860 +3769 167691 0.5400 +3769 343035 0.5790 +3769 401124 0.4540 +3770 3784 0.9170 +3770 3785 0.9250 +3770 3786 0.9190 +3770 6329 0.4340 +3770 6833 0.4080 +3770 9132 0.9170 +3770 9312 0.4420 +3770 9424 0.4850 +3770 54363 0.4100 +3770 56479 0.9300 +3770 90693 0.4650 +3770 116966 0.4580 +3770 126147 0.4700 +3770 137695 0.4760 +3770 340745 0.5170 +3770 100134444 0.9040 +3772 3784 0.4720 +3772 5167 0.4220 +3772 5506 0.4260 +3772 6833 0.6200 +3772 7021 0.4260 +3772 7466 0.4400 +3772 9424 0.4050 +3772 9568 0.5090 +3772 10681 0.5410 +3772 11132 0.4260 +3772 51764 0.5260 +3772 54331 0.5570 +3772 55970 0.5450 +3772 56729 0.4490 +3772 59345 0.5530 +3772 84666 0.4240 +3772 94235 0.5260 +3775 3776 0.9750 +3775 3777 0.8050 +3775 3778 0.4440 +3775 3780 0.4710 +3775 3783 0.4720 +3775 3785 0.4480 +3775 3787 0.4190 +3775 5905 0.4610 +3775 6335 0.4020 +3775 6613 0.4080 +3775 7329 0.6640 +3775 7336 0.4280 +3775 7341 0.6730 +3775 8645 0.6520 +3775 8836 0.4500 +3775 9424 0.5490 +3775 10054 0.5330 +3775 10055 0.6310 +3775 10089 0.5490 +3775 29843 0.7290 +3775 50801 0.6490 +3775 51305 0.7920 +3775 51350 0.9750 +3775 54207 0.6020 +3775 56659 0.6370 +3775 56660 0.6480 +3775 56852 0.4360 +3775 60598 0.6310 +3775 83795 0.6280 +3775 89822 0.6310 +3775 131096 0.4260 +3775 338567 0.7340 +3776 3777 0.6770 +3776 3778 0.5460 +3776 3783 0.4940 +3776 3784 0.4100 +3776 3785 0.5060 +3776 3786 0.4300 +3776 5338 0.6220 +3776 5566 0.9600 +3776 5567 0.9600 +3776 5568 0.9600 +3776 6331 0.4370 +3776 6334 0.4260 +3776 6335 0.4810 +3776 6336 0.5090 +3776 7220 0.6060 +3776 7222 0.4480 +3776 7223 0.4990 +3776 7224 0.4830 +3776 7225 0.4820 +3776 7439 0.4860 +3776 7442 0.6340 +3776 8645 0.6100 +3776 8989 0.6340 +3776 9311 0.4890 +3776 9341 0.4090 +3776 9368 0.4140 +3776 9424 0.5950 +3776 9780 0.7350 +3776 10089 0.5990 +3776 10591 0.4390 +3776 11149 0.7510 +3776 11280 0.4530 +3776 50801 0.8160 +3776 51305 0.6650 +3776 51350 0.9030 +3776 51393 0.4840 +3776 54207 0.9680 +3776 54795 0.4310 +3776 55669 0.4260 +3776 56659 0.6510 +3776 56660 0.6390 +3776 57731 0.7230 +3776 59341 0.5950 +3776 60598 0.6190 +3776 63895 0.6780 +3776 64091 0.7650 +3776 64208 0.5530 +3776 79054 0.6300 +3776 80036 0.4310 +3776 83795 0.5650 +3776 89822 0.5790 +3776 115557 0.4990 +3776 162514 0.4480 +3776 338567 0.6810 +3776 441027 0.4350 +3777 3778 0.5240 +3777 3780 0.4620 +3777 3783 0.4690 +3777 3784 0.4360 +3777 3787 0.6410 +3777 3790 0.4110 +3777 4093 0.6460 +3777 5566 0.5670 +3777 5567 0.5720 +3777 5568 0.5720 +3777 5972 0.5520 +3777 6281 0.9570 +3777 6282 0.4420 +3777 6331 0.4050 +3777 6335 0.5160 +3777 6336 0.7500 +3777 6529 0.4550 +3777 6833 0.5380 +3777 7442 0.4340 +3777 7529 0.7540 +3777 8645 0.8140 +3777 8912 0.4090 +3777 9424 0.6280 +3777 9482 0.4800 +3777 9496 0.6340 +3777 10021 0.4320 +3777 10089 0.6500 +3777 30819 0.4390 +3777 50801 0.6840 +3777 51305 0.9860 +3777 51350 0.8780 +3777 54207 0.7810 +3777 54346 0.4170 +3777 56302 0.6060 +3777 56659 0.6300 +3777 56660 0.6430 +3777 60598 0.5510 +3777 79572 0.6520 +3777 83795 0.6440 +3777 85452 0.4910 +3777 89822 0.6630 +3777 147381 0.5050 +3777 338567 0.8080 +3777 440275 0.6010 +3778 3779 0.9990 +3778 3780 0.9800 +3778 3782 0.9660 +3778 3783 0.9810 +3778 3784 0.5590 +3778 3790 0.4210 +3778 4846 0.4760 +3778 5566 0.9440 +3778 5567 0.9440 +3778 5568 0.9440 +3778 5592 0.9410 +3778 5593 0.9260 +3778 5747 0.4280 +3778 6323 0.5930 +3778 6324 0.4410 +3778 6326 0.5880 +3778 6328 0.4440 +3778 6329 0.4910 +3778 6331 0.4900 +3778 6334 0.6050 +3778 6335 0.5420 +3778 6336 0.4030 +3778 6538 0.5210 +3778 6558 0.4290 +3778 6559 0.6290 +3778 6616 0.4100 +3778 6714 0.5300 +3778 6812 0.4390 +3778 6833 0.4290 +3778 6915 0.8360 +3778 7059 0.4010 +3778 7220 0.6640 +3778 7222 0.4570 +3778 7225 0.5220 +3778 7417 0.6380 +3778 7442 0.4080 +3778 7881 0.5000 +3778 8514 0.4050 +3778 8536 0.5090 +3778 8645 0.4600 +3778 8727 0.4580 +3778 8911 0.4520 +3778 8912 0.5720 +3778 8913 0.5580 +3778 9132 0.5780 +3778 9223 0.4090 +3778 9361 0.4970 +3778 9659 0.4160 +3778 9943 0.5590 +3778 10139 0.4520 +3778 10242 0.9700 +3778 27094 0.9950 +3778 27133 0.4640 +3778 27345 0.9980 +3778 27347 0.7040 +3778 50801 0.6400 +3778 51185 0.9170 +3778 51305 0.5580 +3778 51350 0.5820 +3778 51806 0.5120 +3778 54205 0.4260 +3778 54899 0.7600 +3778 55107 0.4650 +3778 55799 0.5080 +3778 56479 0.5970 +3778 57118 0.5410 +3778 57192 0.5390 +3778 57582 0.4620 +3778 57863 0.4510 +3778 59341 0.5440 +3778 65125 0.6210 +3778 65266 0.6850 +3778 65267 0.4260 +3778 83752 0.5480 +3778 84329 0.4060 +3778 91860 0.5230 +3778 92737 0.4670 +3778 112476 0.4680 +3778 126755 0.5110 +3778 128408 0.5060 +3778 157855 0.9110 +3778 163688 0.4750 +3778 219527 0.5010 +3778 259232 0.4720 +3778 338440 0.4230 +3778 389816 0.9700 +3778 440699 0.8020 +3779 3780 0.9450 +3779 3782 0.9360 +3779 3783 0.9420 +3779 3790 0.5590 +3779 4246 0.5000 +3779 4512 0.5760 +3779 4589 0.4370 +3779 4629 0.5790 +3779 5319 0.4420 +3779 5566 0.9190 +3779 5567 0.9200 +3779 5568 0.9190 +3779 5592 0.9260 +3779 5593 0.9130 +3779 5740 0.5610 +3779 6331 0.4760 +3779 6369 0.4130 +3779 7881 0.4170 +3779 7941 0.6900 +3779 10242 0.9290 +3779 11251 0.4280 +3779 25802 0.5340 +3779 27094 0.9200 +3779 27345 0.9510 +3779 51131 0.4450 +3779 51320 0.4890 +3779 51752 0.4300 +3779 57582 0.4790 +3779 80332 0.4500 +3779 89796 0.5930 +3779 93649 0.4010 +3779 117156 0.4700 +3779 126755 0.7340 +3779 128408 0.4780 +3779 130535 0.4300 +3779 157855 0.9540 +3779 219527 0.7190 +3779 343450 0.4230 +3779 389816 0.9480 +3779 440699 0.8580 +3780 3782 0.9070 +3780 3783 0.9390 +3780 3784 0.6460 +3780 3785 0.5210 +3780 3786 0.4540 +3780 3787 0.4060 +3780 5578 0.9070 +3780 5579 0.9090 +3780 5582 0.9170 +3780 6324 0.4900 +3780 6327 0.4770 +3780 6329 0.4860 +3780 6331 0.4370 +3780 6336 0.4930 +3780 8938 0.4460 +3780 9312 0.4690 +3780 9992 0.4300 +3780 10008 0.4460 +3780 10242 0.9330 +3780 27012 0.4190 +3780 27094 0.9370 +3780 27345 0.9370 +3780 30820 0.4190 +3780 51305 0.4560 +3780 51806 0.6040 +3780 55800 0.4350 +3780 56660 0.4740 +3780 57582 0.5740 +3780 57657 0.4690 +3780 91860 0.5510 +3780 157855 0.9580 +3780 163688 0.5470 +3780 170850 0.4780 +3780 257240 0.4670 +3780 343450 0.5310 +3782 3783 0.9230 +3782 3784 0.6980 +3782 3785 0.4220 +3782 3786 0.4210 +3782 4217 0.4740 +3782 4684 0.6300 +3782 4831 0.4800 +3782 5308 0.4880 +3782 5578 0.9120 +3782 5579 0.9100 +3782 5582 0.9110 +3782 5788 0.5650 +3782 6331 0.4330 +3782 6402 0.4470 +3782 6908 0.4090 +3782 7220 0.8070 +3782 7345 0.6320 +3782 10004 0.7740 +3782 10021 0.5070 +3782 10242 0.9310 +3782 10286 0.4650 +3782 27087 0.4510 +3782 27094 0.9290 +3782 27345 0.9820 +3782 50488 0.4680 +3782 50943 0.5710 +3782 51806 0.7280 +3782 57211 0.5760 +3782 57657 0.4460 +3782 59341 0.5960 +3782 79933 0.4760 +3782 84684 0.5710 +3782 84876 0.9180 +3782 84909 0.4180 +3782 91860 0.6960 +3782 157855 0.9420 +3782 163688 0.6860 +3782 343450 0.4100 +3783 3784 0.9360 +3783 3785 0.5690 +3783 4831 0.9310 +3783 5578 0.9180 +3783 5579 0.9170 +3783 5582 0.9220 +3783 5978 0.4530 +3783 6262 0.6830 +3783 6326 0.5530 +3783 6331 0.4510 +3783 6549 0.4170 +3783 6558 0.4630 +3783 6714 0.4230 +3783 6786 0.5510 +3783 7001 0.4370 +3783 7097 0.5620 +3783 7220 0.5220 +3783 7222 0.4800 +3783 7225 0.6480 +3783 8193 0.4240 +3783 8645 0.9550 +3783 8912 0.4020 +3783 8989 0.5930 +3783 9101 0.4270 +3783 9107 0.7580 +3783 9424 0.4230 +3783 9635 0.4080 +3783 9780 0.6620 +3783 9968 0.4620 +3783 10008 0.9470 +3783 10106 0.4260 +3783 10217 0.4390 +3783 10242 0.9250 +3783 11075 0.4280 +3783 23729 0.7310 +3783 27094 0.9340 +3783 27345 0.9750 +3783 29085 0.8160 +3783 51305 0.4970 +3783 51350 0.5750 +3783 51393 0.4220 +3783 51412 0.4240 +3783 51806 0.8590 +3783 54795 0.5190 +3783 54822 0.5190 +3783 55107 0.5220 +3783 55274 0.4240 +3783 55503 0.7010 +3783 56302 0.4230 +3783 57338 0.4670 +3783 57582 0.4880 +3783 58190 0.4460 +3783 59341 0.7130 +3783 65010 0.4060 +3783 84502 0.4630 +3783 84876 0.5150 +3783 91860 0.8440 +3783 115019 0.4070 +3783 157855 0.9540 +3783 163688 0.8430 +3783 343450 0.4670 +3783 346171 0.5420 +3783 654364 0.4470 +3784 3785 0.9670 +3784 3786 0.9340 +3784 3921 0.4220 +3784 3955 0.4380 +3784 4232 0.5550 +3784 4544 0.6650 +3784 4607 0.6430 +3784 4624 0.4610 +3784 4625 0.5870 +3784 4633 0.5290 +3784 4634 0.4570 +3784 4646 0.4640 +3784 4647 0.4950 +3784 4676 0.5970 +3784 4734 0.4140 +3784 4736 0.4690 +3784 4809 0.4420 +3784 4853 0.4050 +3784 4878 0.5880 +3784 5002 0.8690 +3784 5030 0.4440 +3784 5172 0.5210 +3784 5178 0.4480 +3784 5318 0.5720 +3784 5325 0.5200 +3784 5468 0.4340 +3784 5469 0.5080 +3784 5566 0.9700 +3784 5567 0.9590 +3784 5568 0.9590 +3784 5923 0.4410 +3784 6122 0.4760 +3784 6123 0.4780 +3784 6124 0.4320 +3784 6125 0.5240 +3784 6128 0.4890 +3784 6129 0.4500 +3784 6132 0.4620 +3784 6133 0.5080 +3784 6135 0.5530 +3784 6136 0.4780 +3784 6137 0.5180 +3784 6138 0.5600 +3784 6139 0.5030 +3784 6141 0.5370 +3784 6142 0.5340 +3784 6143 0.5460 +3784 6144 0.5890 +3784 6146 0.4750 +3784 6147 0.5870 +3784 6150 0.4900 +3784 6152 0.5740 +3784 6154 0.5160 +3784 6155 0.4890 +3784 6156 0.5760 +3784 6158 0.4700 +3784 6159 0.5790 +3784 6160 0.5930 +3784 6164 0.5960 +3784 6165 0.5680 +3784 6166 0.4960 +3784 6168 0.6050 +3784 6169 0.5840 +3784 6173 0.4960 +3784 6175 0.4370 +3784 6176 0.5470 +3784 6181 0.5450 +3784 6183 0.4910 +3784 6187 0.4640 +3784 6188 0.5680 +3784 6189 0.5140 +3784 6191 0.4890 +3784 6192 0.4890 +3784 6193 0.6090 +3784 6194 0.5810 +3784 6201 0.5200 +3784 6202 0.5350 +3784 6203 0.4950 +3784 6204 0.5030 +3784 6205 0.5550 +3784 6206 0.4260 +3784 6207 0.5010 +3784 6208 0.5010 +3784 6209 0.5540 +3784 6217 0.4320 +3784 6218 0.5750 +3784 6222 0.5830 +3784 6223 0.5820 +3784 6224 0.5090 +3784 6227 0.5720 +3784 6228 0.4910 +3784 6229 0.5870 +3784 6230 0.5530 +3784 6231 0.5580 +3784 6232 0.5040 +3784 6234 0.5990 +3784 6235 0.5010 +3784 6262 0.7270 +3784 6323 0.4430 +3784 6324 0.6040 +3784 6327 0.4890 +3784 6329 0.6510 +3784 6330 0.7130 +3784 6331 0.9730 +3784 6336 0.5360 +3784 6508 0.4080 +3784 6528 0.5480 +3784 6546 0.4740 +3784 6558 0.9500 +3784 6581 0.4930 +3784 6582 0.4520 +3784 6638 0.6160 +3784 6640 0.6650 +3784 6833 0.5600 +3784 6910 0.4060 +3784 6934 0.7140 +3784 7103 0.4950 +3784 7137 0.4820 +3784 7139 0.5540 +3784 7262 0.9040 +3784 7273 0.4710 +3784 7311 0.5580 +3784 7325 0.4700 +3784 7337 0.4040 +3784 7466 0.6390 +3784 7709 0.4180 +3784 7762 0.4240 +3784 7809 0.4580 +3784 7881 0.7170 +3784 8165 0.6750 +3784 8514 0.7000 +3784 8645 0.9390 +3784 8788 0.6360 +3784 8872 0.6440 +3784 8912 0.4120 +3784 8913 0.4350 +3784 9045 0.4890 +3784 9132 0.9470 +3784 9196 0.6330 +3784 9349 0.5820 +3784 9472 0.5480 +3784 9499 0.4510 +3784 9631 0.5130 +3784 9722 0.6660 +3784 9858 0.4220 +3784 9992 0.9990 +3784 10008 0.9990 +3784 10021 0.6900 +3784 10060 0.4790 +3784 10077 0.6100 +3784 10078 0.8190 +3784 10142 0.9990 +3784 10345 0.5650 +3784 10399 0.4570 +3784 10412 0.4460 +3784 10473 0.4780 +3784 10644 0.7390 +3784 10664 0.6830 +3784 10919 0.4890 +3784 11132 0.4470 +3784 11222 0.4760 +3784 11224 0.5770 +3784 22822 0.4670 +3784 23089 0.4360 +3784 23171 0.6690 +3784 23327 0.8480 +3784 23521 0.4660 +3784 23630 0.8720 +3784 23704 0.9250 +3784 25873 0.5260 +3784 27133 0.4680 +3784 27338 0.5000 +3784 28998 0.4570 +3784 29093 0.5030 +3784 30819 0.6590 +3784 51065 0.5040 +3784 51069 0.4620 +3784 51073 0.4320 +3784 51081 0.5030 +3784 51116 0.4430 +3784 51121 0.5160 +3784 51149 0.5010 +3784 51154 0.4210 +3784 51422 0.4440 +3784 51806 0.9880 +3784 54058 0.5940 +3784 54469 0.4360 +3784 54776 0.4370 +3784 54795 0.4660 +3784 54901 0.8330 +3784 55109 0.4240 +3784 55173 0.5090 +3784 55272 0.4950 +3784 55316 0.5010 +3784 55800 0.6110 +3784 56479 0.9720 +3784 56648 0.4340 +3784 56999 0.4790 +3784 57118 0.5440 +3784 57194 0.4100 +3784 58498 0.4020 +3784 63931 0.5010 +3784 64960 0.5010 +3784 64963 0.5010 +3784 64969 0.4640 +3784 65003 0.4780 +3784 65008 0.4690 +3784 79068 0.5810 +3784 79188 0.4540 +3784 79590 0.5160 +3784 80320 0.4770 +3784 83795 0.4490 +3784 84327 0.4330 +3784 89796 0.4100 +3784 91860 0.9850 +3784 114879 0.5170 +3784 114987 0.4460 +3784 116985 0.4990 +3784 117531 0.4070 +3784 126402 0.5030 +3784 136259 0.5250 +3784 140032 0.4890 +3784 143244 0.4260 +3784 145741 0.5870 +3784 163688 0.9840 +3784 169026 0.7550 +3784 169792 0.4180 +3784 200916 0.4750 +3784 221895 0.6000 +3784 253012 0.5990 +3784 285855 0.4500 +3784 347487 0.4220 +3784 387129 0.4520 +3784 388125 0.4900 +3784 388591 0.4630 +3784 723961 0.4200 +3784 100134444 0.9280 +3784 100287482 0.4220 +3784 100505478 0.4500 +3784 100526842 0.5030 +3784 100529097 0.4960 +3784 100529239 0.5380 +3785 3786 0.9990 +3785 3787 0.4440 +3785 3788 0.4480 +3785 3827 0.4160 +3785 3921 0.4220 +3785 4204 0.4480 +3785 4736 0.4690 +3785 4884 0.4960 +3785 4897 0.7500 +3785 5333 0.4150 +3785 5428 0.4010 +3785 5443 0.4590 +3785 5469 0.5080 +3785 5566 0.5000 +3785 5567 0.5150 +3785 5568 0.5090 +3785 5577 0.4540 +3785 5816 0.4730 +3785 5859 0.4750 +3785 6122 0.4760 +3785 6123 0.4770 +3785 6124 0.4320 +3785 6125 0.5240 +3785 6128 0.4890 +3785 6129 0.4500 +3785 6132 0.4620 +3785 6133 0.5080 +3785 6135 0.5530 +3785 6136 0.4780 +3785 6137 0.5180 +3785 6138 0.5600 +3785 6139 0.5030 +3785 6141 0.5370 +3785 6142 0.5340 +3785 6143 0.5360 +3785 6144 0.5890 +3785 6146 0.4750 +3785 6147 0.5870 +3785 6152 0.5740 +3785 6154 0.5160 +3785 6155 0.4890 +3785 6156 0.5760 +3785 6158 0.4700 +3785 6159 0.5790 +3785 6160 0.5930 +3785 6164 0.5960 +3785 6165 0.5680 +3785 6166 0.4960 +3785 6168 0.5910 +3785 6169 0.5840 +3785 6173 0.4960 +3785 6175 0.4210 +3785 6176 0.5470 +3785 6181 0.5450 +3785 6183 0.4910 +3785 6187 0.4640 +3785 6188 0.5680 +3785 6189 0.5140 +3785 6191 0.4890 +3785 6192 0.4890 +3785 6193 0.5540 +3785 6194 0.5810 +3785 6201 0.5200 +3785 6202 0.5350 +3785 6203 0.4950 +3785 6204 0.5030 +3785 6205 0.5550 +3785 6207 0.5010 +3785 6208 0.5010 +3785 6209 0.5540 +3785 6217 0.4320 +3785 6218 0.5750 +3785 6222 0.5830 +3785 6223 0.5820 +3785 6224 0.5090 +3785 6227 0.5730 +3785 6228 0.4910 +3785 6229 0.5870 +3785 6230 0.5530 +3785 6231 0.5580 +3785 6232 0.5040 +3785 6234 0.5990 +3785 6235 0.5010 +3785 6323 0.9340 +3785 6324 0.7830 +3785 6326 0.9420 +3785 6327 0.7420 +3785 6328 0.7510 +3785 6329 0.6770 +3785 6330 0.6770 +3785 6331 0.6990 +3785 6332 0.5680 +3785 6334 0.9500 +3785 6335 0.7580 +3785 6336 0.6950 +3785 6506 0.6050 +3785 6507 0.4720 +3785 6513 0.5640 +3785 6526 0.6360 +3785 6529 0.5160 +3785 6531 0.5070 +3785 6708 0.5240 +3785 6709 0.8520 +3785 6710 0.5820 +3785 6711 0.6290 +3785 6712 0.6180 +3785 6792 0.8440 +3785 6812 0.8550 +3785 6833 0.4260 +3785 6900 0.4970 +3785 7311 0.5580 +3785 7442 0.4640 +3785 7545 0.4610 +3785 7881 0.7450 +3785 8165 0.5290 +3785 8506 0.5040 +3785 8514 0.7430 +3785 8831 0.4810 +3785 8913 0.4740 +3785 8989 0.4030 +3785 9045 0.4890 +3785 9132 0.9410 +3785 9196 0.6440 +3785 9211 0.5270 +3785 9228 0.4070 +3785 9312 0.4790 +3785 9349 0.5820 +3785 9378 0.4370 +3785 9495 0.6840 +3785 9681 0.5560 +3785 9732 0.4030 +3785 9858 0.4220 +3785 9992 0.5300 +3785 10008 0.7050 +3785 10399 0.4540 +3785 10412 0.4460 +3785 10473 0.4780 +3785 10479 0.4240 +3785 11222 0.4760 +3785 11224 0.5770 +3785 11280 0.6730 +3785 11284 0.6800 +3785 22941 0.5300 +3785 23040 0.5160 +3785 23096 0.4340 +3785 23114 0.8670 +3785 23229 0.6780 +3785 23236 0.6410 +3785 23416 0.5240 +3785 23467 0.4820 +3785 23521 0.4570 +3785 23704 0.4810 +3785 25791 0.4100 +3785 25873 0.5260 +3785 26047 0.5620 +3785 27133 0.5650 +3785 28964 0.4150 +3785 28998 0.4570 +3785 29093 0.5030 +3785 50801 0.5390 +3785 51065 0.5130 +3785 51069 0.4620 +3785 51073 0.4320 +3785 51081 0.5030 +3785 51116 0.4270 +3785 51121 0.5160 +3785 51149 0.5010 +3785 51154 0.4210 +3785 51280 0.5860 +3785 51305 0.5050 +3785 51332 0.5260 +3785 51350 0.4470 +3785 51806 0.9650 +3785 54207 0.4300 +3785 54715 0.4110 +3785 55163 0.5120 +3785 55173 0.5090 +3785 55272 0.4950 +3785 55316 0.5010 +3785 55800 0.6140 +3785 56479 0.9960 +3785 56648 0.4260 +3785 57465 0.5060 +3785 57468 0.5120 +3785 57526 0.8780 +3785 57575 0.8380 +3785 57582 0.7900 +3785 57731 0.8840 +3785 63827 0.4040 +3785 63931 0.5010 +3785 64960 0.5010 +3785 64963 0.5010 +3785 64969 0.4640 +3785 65003 0.4780 +3785 65008 0.4690 +3785 79590 0.5160 +3785 79751 0.7900 +3785 79868 0.4460 +3785 80036 0.4290 +3785 90134 0.4820 +3785 91860 0.9550 +3785 112476 0.7150 +3785 112755 0.4310 +3785 114987 0.4460 +3785 126402 0.5060 +3785 131096 0.4020 +3785 140032 0.4890 +3785 143244 0.4260 +3785 146330 0.4770 +3785 163688 0.9550 +3785 166378 0.4380 +3785 170302 0.6150 +3785 200916 0.4750 +3785 246269 0.4310 +3785 285855 0.4500 +3785 338567 0.4200 +3785 342035 0.4700 +3785 343450 0.4210 +3785 347487 0.4220 +3785 387129 0.4520 +3785 100134444 0.9240 +3785 100287482 0.4220 +3785 100505478 0.4500 +3785 100526842 0.5030 +3785 100529097 0.4960 +3785 100529239 0.5030 +3786 3787 0.4480 +3786 3788 0.4690 +3786 3921 0.4220 +3786 4200 0.5380 +3786 4736 0.4690 +3786 4897 0.7090 +3786 5469 0.5080 +3786 5566 0.4930 +3786 5567 0.5090 +3786 5568 0.5000 +3786 5859 0.4210 +3786 6122 0.4760 +3786 6123 0.5040 +3786 6124 0.4320 +3786 6125 0.5240 +3786 6128 0.4890 +3786 6129 0.4500 +3786 6132 0.4620 +3786 6133 0.5080 +3786 6135 0.5530 +3786 6136 0.4780 +3786 6137 0.5180 +3786 6138 0.5600 +3786 6139 0.5030 +3786 6141 0.5370 +3786 6142 0.5340 +3786 6143 0.5360 +3786 6144 0.5890 +3786 6146 0.4750 +3786 6147 0.5870 +3786 6152 0.5740 +3786 6154 0.5160 +3786 6155 0.4890 +3786 6156 0.5760 +3786 6158 0.4700 +3786 6159 0.5790 +3786 6160 0.5930 +3786 6164 0.5960 +3786 6165 0.5680 +3786 6166 0.4960 +3786 6168 0.5910 +3786 6169 0.5840 +3786 6173 0.4960 +3786 6175 0.4210 +3786 6176 0.5470 +3786 6181 0.5450 +3786 6183 0.4910 +3786 6187 0.4640 +3786 6188 0.5680 +3786 6189 0.5140 +3786 6191 0.4890 +3786 6192 0.4890 +3786 6193 0.5340 +3786 6194 0.5810 +3786 6201 0.5200 +3786 6202 0.5350 +3786 6203 0.4950 +3786 6204 0.5030 +3786 6205 0.5550 +3786 6207 0.5010 +3786 6208 0.5010 +3786 6209 0.5540 +3786 6217 0.4320 +3786 6218 0.5750 +3786 6222 0.5830 +3786 6223 0.5820 +3786 6224 0.5090 +3786 6227 0.5720 +3786 6228 0.4910 +3786 6229 0.5870 +3786 6230 0.5530 +3786 6231 0.5580 +3786 6232 0.5040 +3786 6234 0.5990 +3786 6235 0.5010 +3786 6323 0.8450 +3786 6324 0.7570 +3786 6326 0.8590 +3786 6327 0.4980 +3786 6328 0.6950 +3786 6329 0.6180 +3786 6330 0.5980 +3786 6331 0.6250 +3786 6332 0.5380 +3786 6334 0.8230 +3786 6335 0.6990 +3786 6336 0.6350 +3786 6506 0.5640 +3786 6529 0.4630 +3786 6708 0.5060 +3786 6709 0.7200 +3786 6710 0.5510 +3786 6711 0.5800 +3786 6712 0.5970 +3786 6792 0.5270 +3786 6812 0.5130 +3786 7311 0.5580 +3786 7881 0.7470 +3786 8506 0.4270 +3786 8514 0.7300 +3786 8629 0.5300 +3786 8912 0.4340 +3786 9045 0.4890 +3786 9132 0.9560 +3786 9196 0.7040 +3786 9201 0.4250 +3786 9211 0.5260 +3786 9312 0.4580 +3786 9349 0.5820 +3786 9681 0.4190 +3786 9732 0.4120 +3786 9858 0.4220 +3786 9992 0.4580 +3786 10008 0.4580 +3786 10399 0.4460 +3786 10412 0.4460 +3786 10473 0.4780 +3786 10982 0.4230 +3786 11222 0.4760 +3786 11224 0.5770 +3786 11280 0.6530 +3786 23114 0.7410 +3786 23415 0.4030 +3786 23416 0.5690 +3786 23521 0.4670 +3786 23630 0.4430 +3786 23704 0.4150 +3786 25873 0.5260 +3786 26047 0.4590 +3786 26575 0.4250 +3786 27012 0.4010 +3786 27133 0.5870 +3786 28998 0.4570 +3786 29093 0.5030 +3786 50801 0.4970 +3786 51065 0.5040 +3786 51069 0.4620 +3786 51073 0.4320 +3786 51081 0.5030 +3786 51116 0.4220 +3786 51121 0.5160 +3786 51149 0.5010 +3786 51154 0.4210 +3786 51305 0.4760 +3786 51332 0.4990 +3786 51350 0.4530 +3786 51806 0.8210 +3786 54207 0.4060 +3786 55163 0.4370 +3786 55173 0.5090 +3786 55272 0.4950 +3786 55316 0.5010 +3786 55800 0.5540 +3786 56479 0.9980 +3786 56648 0.4260 +3786 57526 0.5170 +3786 57575 0.4380 +3786 57582 0.6620 +3786 57731 0.7590 +3786 63931 0.5010 +3786 64960 0.5010 +3786 64963 0.5010 +3786 64969 0.4640 +3786 65003 0.4780 +3786 65008 0.4690 +3786 79590 0.5160 +3786 79728 0.4150 +3786 81033 0.4070 +3786 84059 0.4290 +3786 90134 0.4760 +3786 91860 0.7680 +3786 112476 0.5520 +3786 114327 0.4450 +3786 114987 0.4460 +3786 126402 0.5040 +3786 131096 0.4110 +3786 140032 0.4890 +3786 143244 0.4260 +3786 144165 0.4710 +3786 147015 0.4850 +3786 163688 0.7680 +3786 167681 0.4160 +3786 200916 0.4750 +3786 285855 0.4500 +3786 338567 0.4190 +3786 342035 0.4460 +3786 343450 0.4030 +3786 347487 0.4220 +3786 387129 0.4600 +3786 100134444 0.9230 +3786 100287482 0.4220 +3786 100505478 0.4500 +3786 100526842 0.5030 +3786 100529097 0.4960 +3786 100529239 0.5030 +3787 3788 0.6180 +3787 3790 0.5190 +3787 3921 0.4220 +3787 4736 0.4690 +3787 4988 0.4750 +3787 5469 0.5080 +3787 5973 0.4170 +3787 6122 0.4760 +3787 6123 0.4760 +3787 6124 0.4320 +3787 6125 0.5240 +3787 6128 0.4890 +3787 6129 0.4500 +3787 6132 0.4620 +3787 6133 0.5080 +3787 6135 0.5530 +3787 6136 0.4780 +3787 6137 0.5180 +3787 6138 0.5600 +3787 6139 0.5030 +3787 6141 0.5370 +3787 6142 0.5340 +3787 6143 0.5360 +3787 6144 0.5890 +3787 6146 0.4750 +3787 6147 0.5870 +3787 6152 0.5740 +3787 6154 0.5160 +3787 6155 0.4890 +3787 6156 0.5760 +3787 6158 0.4700 +3787 6159 0.5790 +3787 6160 0.5930 +3787 6164 0.5960 +3787 6165 0.5680 +3787 6166 0.4960 +3787 6168 0.5910 +3787 6169 0.5840 +3787 6173 0.4960 +3787 6175 0.4210 +3787 6176 0.5470 +3787 6181 0.5450 +3787 6183 0.4910 +3787 6187 0.4640 +3787 6188 0.5680 +3787 6189 0.5140 +3787 6191 0.4890 +3787 6192 0.4890 +3787 6193 0.5030 +3787 6194 0.5810 +3787 6201 0.5200 +3787 6202 0.5350 +3787 6203 0.4950 +3787 6204 0.5030 +3787 6205 0.5550 +3787 6207 0.5010 +3787 6208 0.5010 +3787 6209 0.5540 +3787 6217 0.4320 +3787 6218 0.5750 +3787 6222 0.5830 +3787 6223 0.5820 +3787 6224 0.5090 +3787 6227 0.5720 +3787 6228 0.4910 +3787 6229 0.5870 +3787 6230 0.5530 +3787 6231 0.5580 +3787 6232 0.5040 +3787 6234 0.5990 +3787 6235 0.5010 +3787 6335 0.5410 +3787 6336 0.4130 +3787 7311 0.5580 +3787 7881 0.6840 +3787 8514 0.7000 +3787 9045 0.4890 +3787 9196 0.6420 +3787 9312 0.7090 +3787 9349 0.5820 +3787 9732 0.4070 +3787 9848 0.4680 +3787 9858 0.4220 +3787 10369 0.4950 +3787 10399 0.4460 +3787 10412 0.4460 +3787 10473 0.4780 +3787 11222 0.4760 +3787 11224 0.5770 +3787 11280 0.4250 +3787 23416 0.4560 +3787 23521 0.4570 +3787 25873 0.5260 +3787 28998 0.4570 +3787 29093 0.5030 +3787 30820 0.4040 +3787 50632 0.4520 +3787 51065 0.5040 +3787 51069 0.4620 +3787 51073 0.4320 +3787 51081 0.5030 +3787 51116 0.4220 +3787 51121 0.5160 +3787 51149 0.5010 +3787 51154 0.4210 +3787 51232 0.4780 +3787 51305 0.6910 +3787 51388 0.5910 +3787 55173 0.5090 +3787 55272 0.4950 +3787 55316 0.5010 +3787 55799 0.4180 +3787 55800 0.5150 +3787 56479 0.4320 +3787 56648 0.4260 +3787 56660 0.4310 +3787 60598 0.8640 +3787 63931 0.5010 +3787 64960 0.5010 +3787 64963 0.5010 +3787 64969 0.4640 +3787 65003 0.4860 +3787 65008 0.4690 +3787 79590 0.5160 +3787 81849 0.4290 +3787 90134 0.4160 +3787 114987 0.4460 +3787 126006 0.4360 +3787 126402 0.5050 +3787 140032 0.4890 +3787 140832 0.4580 +3787 143244 0.4260 +3787 145270 0.5080 +3787 200916 0.4750 +3787 220202 0.4060 +3787 253559 0.5250 +3787 285855 0.4500 +3787 338567 0.4340 +3787 347487 0.4220 +3787 375035 0.5060 +3787 387129 0.4520 +3787 389941 0.4990 +3787 100287482 0.4220 +3787 100505478 0.4500 +3787 100526842 0.5030 +3787 100529097 0.4960 +3787 100529239 0.5030 +3788 3790 0.4930 +3788 3921 0.4220 +3788 4736 0.4690 +3788 5469 0.5080 +3788 6122 0.4760 +3788 6123 0.4760 +3788 6124 0.4320 +3788 6125 0.5240 +3788 6128 0.4890 +3788 6129 0.4500 +3788 6132 0.4620 +3788 6133 0.5080 +3788 6135 0.5530 +3788 6136 0.4780 +3788 6137 0.5180 +3788 6138 0.5600 +3788 6139 0.5030 +3788 6141 0.5370 +3788 6142 0.5950 +3788 6143 0.5360 +3788 6144 0.5890 +3788 6146 0.4750 +3788 6147 0.5870 +3788 6152 0.5740 +3788 6154 0.5160 +3788 6155 0.4890 +3788 6156 0.5760 +3788 6158 0.4700 +3788 6159 0.5790 +3788 6160 0.5930 +3788 6164 0.5960 +3788 6165 0.5680 +3788 6166 0.4960 +3788 6168 0.6310 +3788 6169 0.5840 +3788 6173 0.4960 +3788 6175 0.4350 +3788 6176 0.5470 +3788 6181 0.5450 +3788 6183 0.4910 +3788 6187 0.4640 +3788 6188 0.5680 +3788 6189 0.5140 +3788 6191 0.4890 +3788 6192 0.4890 +3788 6193 0.5030 +3788 6194 0.5810 +3788 6201 0.5200 +3788 6202 0.5350 +3788 6203 0.4950 +3788 6204 0.5030 +3788 6205 0.5550 +3788 6207 0.5010 +3788 6208 0.5010 +3788 6209 0.5540 +3788 6217 0.4320 +3788 6218 0.5750 +3788 6222 0.5830 +3788 6223 0.5820 +3788 6224 0.5090 +3788 6227 0.5720 +3788 6228 0.4910 +3788 6229 0.5870 +3788 6230 0.5530 +3788 6231 0.5580 +3788 6232 0.5040 +3788 6234 0.5990 +3788 6235 0.5010 +3788 6329 0.4790 +3788 7311 0.5580 +3788 7881 0.7250 +3788 8514 0.6280 +3788 9045 0.4890 +3788 9196 0.6640 +3788 9349 0.5820 +3788 9732 0.4120 +3788 9858 0.4220 +3788 10399 0.4460 +3788 10412 0.4460 +3788 10473 0.4780 +3788 11222 0.4760 +3788 11224 0.5770 +3788 11280 0.5010 +3788 23415 0.5080 +3788 23416 0.5240 +3788 23521 0.4730 +3788 25873 0.5260 +3788 26011 0.4990 +3788 28998 0.5190 +3788 29093 0.5030 +3788 51065 0.5040 +3788 51069 0.4620 +3788 51073 0.4320 +3788 51081 0.5280 +3788 51116 0.4220 +3788 51121 0.5160 +3788 51149 0.5010 +3788 51154 0.4210 +3788 55173 0.5090 +3788 55272 0.4950 +3788 55316 0.5010 +3788 55351 0.4800 +3788 56479 0.4210 +3788 56648 0.4260 +3788 63931 0.5010 +3788 64854 0.5060 +3788 64960 0.5010 +3788 64963 0.5010 +3788 64969 0.4640 +3788 65003 0.4860 +3788 65008 0.4690 +3788 79590 0.5160 +3788 84894 0.4320 +3788 84960 0.5390 +3788 90134 0.4840 +3788 114987 0.4460 +3788 126402 0.5190 +3788 134391 0.4560 +3788 140032 0.4890 +3788 143244 0.4260 +3788 200916 0.4750 +3788 285855 0.4500 +3788 347487 0.4220 +3788 387129 0.4520 +3788 404037 0.6710 +3788 100287482 0.4220 +3788 100505478 0.4500 +3788 100526842 0.5030 +3788 100529097 0.4960 +3788 100529239 0.5030 +3788 100996717 0.4500 +3790 3921 0.4220 +3790 4246 0.5570 +3790 4589 0.5470 +3790 4736 0.4690 +3790 5365 0.4070 +3790 5469 0.5080 +3790 5566 0.5330 +3790 5567 0.5330 +3790 5568 0.5340 +3790 5573 0.5130 +3790 5575 0.5320 +3790 5576 0.5060 +3790 5577 0.5060 +3790 5816 0.4290 +3790 6122 0.4800 +3790 6123 0.4800 +3790 6124 0.4320 +3790 6125 0.5240 +3790 6128 0.4890 +3790 6129 0.4500 +3790 6132 0.4620 +3790 6133 0.5080 +3790 6135 0.5530 +3790 6136 0.4780 +3790 6137 0.5180 +3790 6138 0.5600 +3790 6139 0.5030 +3790 6141 0.5370 +3790 6142 0.5340 +3790 6143 0.5360 +3790 6144 0.5890 +3790 6146 0.4750 +3790 6147 0.5870 +3790 6152 0.5740 +3790 6154 0.5160 +3790 6155 0.4890 +3790 6156 0.5760 +3790 6158 0.4700 +3790 6159 0.5790 +3790 6160 0.5930 +3790 6164 0.5960 +3790 6165 0.5900 +3790 6166 0.4960 +3790 6168 0.5910 +3790 6169 0.5840 +3790 6173 0.4960 +3790 6175 0.4210 +3790 6176 0.5470 +3790 6181 0.5450 +3790 6183 0.4910 +3790 6187 0.4640 +3790 6188 0.5680 +3790 6189 0.5140 +3790 6191 0.4890 +3790 6192 0.4890 +3790 6193 0.5030 +3790 6194 0.5810 +3790 6201 0.5200 +3790 6202 0.5350 +3790 6203 0.4950 +3790 6204 0.5030 +3790 6205 0.5550 +3790 6207 0.5260 +3790 6208 0.5010 +3790 6209 0.5540 +3790 6217 0.4320 +3790 6218 0.5750 +3790 6222 0.5910 +3790 6223 0.5820 +3790 6224 0.5090 +3790 6227 0.5720 +3790 6228 0.4910 +3790 6229 0.5870 +3790 6230 0.5530 +3790 6231 0.5580 +3790 6232 0.5040 +3790 6234 0.5990 +3790 6235 0.5010 +3790 6369 0.4450 +3790 7311 0.5580 +3790 7881 0.8110 +3790 7941 0.5500 +3790 8514 0.7390 +3790 8826 0.5080 +3790 9045 0.4890 +3790 9132 0.4070 +3790 9196 0.7540 +3790 9312 0.4370 +3790 9349 0.5820 +3790 9495 0.4990 +3790 9732 0.4230 +3790 9858 0.4350 +3790 10344 0.4490 +3790 10399 0.4740 +3790 10412 0.4460 +3790 10473 0.4780 +3790 11222 0.4760 +3790 11224 0.5770 +3790 11251 0.5160 +3790 23521 0.4570 +3790 25873 0.5260 +3790 27253 0.4180 +3790 28998 0.4570 +3790 29093 0.5030 +3790 51065 0.5040 +3790 51069 0.4620 +3790 51073 0.4320 +3790 51081 0.5030 +3790 51116 0.4220 +3790 51121 0.5160 +3790 51131 0.5000 +3790 51149 0.5010 +3790 51154 0.4210 +3790 51319 0.4150 +3790 55173 0.5090 +3790 55272 0.4950 +3790 55316 0.5010 +3790 56479 0.5790 +3790 56648 0.4260 +3790 63931 0.5010 +3790 64960 0.5010 +3790 64963 0.5010 +3790 64969 0.4640 +3790 65003 0.4860 +3790 65008 0.4690 +3790 79590 0.5160 +3790 80332 0.5100 +3790 90134 0.4060 +3790 114987 0.4460 +3790 117156 0.5470 +3790 126402 0.5030 +3790 130576 0.4370 +3790 140032 0.4890 +3790 143244 0.4260 +3790 200916 0.4750 +3790 285855 0.4500 +3790 347487 0.4220 +3790 347730 0.4190 +3790 387129 0.6020 +3790 100287482 0.4220 +3790 100505478 0.4500 +3790 100526842 0.5030 +3790 100529097 0.4960 +3790 100529239 0.5030 +3791 3815 0.4290 +3791 3827 0.5190 +3791 3845 0.7800 +3791 3920 0.4040 +3791 3956 0.4540 +3791 3958 0.9110 +3791 3976 0.4010 +3791 4005 0.4670 +3791 4015 0.4150 +3791 4035 0.6300 +3791 4072 0.4450 +3791 4087 0.6460 +3791 4088 0.5950 +3791 4089 0.5080 +3791 4162 0.9410 +3791 4170 0.4450 +3791 4193 0.4330 +3791 4208 0.4780 +3791 4233 0.8510 +3791 4254 0.9340 +3791 4292 0.4300 +3791 4312 0.4310 +3791 4313 0.6280 +3791 4314 0.4040 +3791 4318 0.8110 +3791 4323 0.4530 +3791 4352 0.4740 +3791 4360 0.4150 +3791 4609 0.7230 +3791 4633 0.4090 +3791 4690 0.9420 +3791 4691 0.4580 +3791 4763 0.4240 +3791 4790 0.4610 +3791 4803 0.8760 +3791 4846 0.7160 +3791 4851 0.6010 +3791 4854 0.4410 +3791 4855 0.5370 +3791 4868 0.7310 +3791 4869 0.6130 +3791 4881 0.6040 +3791 4893 0.5580 +3791 4907 0.5270 +3791 4908 0.7210 +3791 4909 0.7150 +3791 5029 0.5160 +3791 5054 0.4530 +3791 5062 0.5530 +3791 5080 0.4350 +3791 5133 0.4790 +3791 5154 0.8980 +3791 5155 0.9160 +3791 5159 0.9860 +3791 5175 0.9990 +3791 5176 0.6360 +3791 5228 0.9990 +3791 5241 0.4110 +3791 5243 0.4600 +3791 5290 0.9750 +3791 5291 0.9320 +3791 5293 0.9280 +3791 5294 0.4280 +3791 5295 0.9430 +3791 5296 0.9310 +3791 5327 0.4210 +3791 5328 0.4850 +3791 5329 0.4020 +3791 5330 0.6560 +3791 5331 0.6990 +3791 5332 0.6560 +3791 5335 0.9740 +3791 5336 0.9180 +3791 5340 0.5270 +3791 5361 0.9000 +3791 5362 0.5060 +3791 5420 0.4520 +3791 5460 0.5770 +3791 5468 0.6440 +3791 5566 0.4700 +3791 5567 0.4720 +3791 5568 0.4680 +3791 5578 0.4080 +3791 5594 0.4040 +3791 5595 0.4670 +3791 5600 0.5920 +3791 5603 0.5600 +3791 5604 0.5480 +3791 5605 0.4640 +3791 5629 0.4610 +3791 5728 0.6190 +3791 5739 0.4580 +3791 5743 0.5110 +3791 5747 0.9580 +3791 5754 0.5160 +3791 5770 0.9380 +3791 5771 0.6540 +3791 5777 0.9720 +3791 5781 0.9190 +3791 5782 0.5720 +3791 5787 0.7540 +3791 5788 0.8090 +3791 5795 0.7300 +3791 5829 0.7350 +3791 5868 0.4410 +3791 5879 0.6240 +3791 5921 0.7140 +3791 6005 0.4520 +3791 6093 0.6540 +3791 6300 0.5650 +3791 6347 0.7580 +3791 6355 0.4860 +3791 6357 0.5180 +3791 6382 0.5600 +3791 6387 0.8930 +3791 6401 0.6200 +3791 6403 0.4530 +3791 6461 0.8410 +3791 6464 0.9950 +3791 6469 0.4940 +3791 6513 0.6110 +3791 6591 0.4680 +3791 6598 0.4530 +3791 6615 0.5120 +3791 6657 0.5630 +3791 6667 0.5720 +3791 6678 0.6280 +3791 6696 0.6440 +3791 6714 0.9980 +3791 6774 0.6550 +3791 6776 0.5820 +3791 6850 0.4120 +3791 6876 0.4210 +3791 6886 0.4930 +3791 6910 0.4830 +3791 7010 0.7440 +3791 7015 0.4750 +3791 7026 0.4410 +3791 7039 0.8240 +3791 7040 0.7340 +3791 7042 0.6380 +3791 7043 0.4040 +3791 7046 0.4760 +3791 7048 0.5190 +3791 7052 0.5600 +3791 7057 0.8730 +3791 7058 0.4040 +3791 7066 0.5930 +3791 7070 0.6200 +3791 7075 0.6670 +3791 7076 0.6810 +3791 7077 0.6420 +3791 7078 0.9670 +3791 7082 0.5120 +3791 7099 0.4390 +3791 7122 0.6150 +3791 7124 0.6170 +3791 7132 0.5870 +3791 7139 0.4870 +3791 7157 0.7300 +3791 7220 0.8360 +3791 7291 0.4290 +3791 7409 0.6050 +3791 7410 0.6360 +3791 7414 0.5190 +3791 7423 0.9990 +3791 7424 0.9990 +3791 7448 0.7600 +3791 7450 0.8480 +3791 7471 0.5600 +3791 7472 0.5590 +3791 7490 0.4490 +3791 7525 0.4850 +3791 7804 0.5880 +3791 7852 0.6750 +3791 7867 0.5200 +3791 8074 0.7630 +3791 8202 0.4470 +3791 8404 0.4600 +3791 8440 0.7410 +3791 8503 0.9220 +3791 8817 0.9270 +3791 8822 0.9270 +3791 8823 0.9300 +3791 8826 0.9460 +3791 8828 0.9440 +3791 8829 0.9990 +3791 8842 0.7960 +3791 8862 0.4700 +3791 8878 0.4020 +3791 8900 0.5450 +3791 8936 0.5140 +3791 8945 0.7680 +3791 9047 0.9910 +3791 9261 0.5640 +3791 9314 0.5270 +3791 9365 0.5290 +3791 9429 0.5110 +3791 9475 0.6220 +3791 9564 0.6580 +3791 9723 0.8040 +3791 9732 0.5140 +3791 9844 0.5280 +3791 9922 0.4500 +3791 9965 0.8060 +3791 10006 0.5160 +3791 10112 0.4950 +3791 10152 0.5160 +3791 10163 0.5290 +3791 10365 0.5010 +3791 10371 0.6540 +3791 10451 0.5860 +3791 10458 0.5490 +3791 10524 0.4220 +3791 10553 0.4450 +3791 10563 0.4440 +3791 10630 0.4960 +3791 10631 0.4280 +3791 10755 0.7690 +3791 10763 0.6050 +3791 10787 0.5240 +3791 10810 0.5300 +3791 10894 0.8050 +3791 11082 0.4350 +3791 22861 0.4030 +3791 22918 0.6040 +3791 22953 0.4140 +3791 23129 0.9420 +3791 23189 0.5120 +3791 23191 0.5010 +3791 23236 0.7290 +3791 23411 0.5240 +3791 23414 0.4700 +3791 23462 0.4650 +3791 23493 0.4760 +3791 23627 0.4100 +3791 23646 0.4390 +3791 25759 0.9720 +3791 25816 0.4700 +3791 26281 0.9280 +3791 26291 0.7920 +3791 26585 0.7450 +3791 26999 0.5010 +3791 27006 0.9300 +3791 27242 0.4610 +3791 27306 0.4500 +3791 27329 0.4100 +3791 29119 0.4610 +3791 29126 0.6110 +3791 50507 0.6130 +3791 51129 0.6110 +3791 51162 0.4540 +3791 51378 0.8620 +3791 51554 0.4380 +3791 51705 0.6770 +3791 53358 0.9410 +3791 54345 0.7400 +3791 54361 0.4870 +3791 54538 0.5520 +3791 54567 0.8180 +3791 54922 0.4370 +3791 55294 0.4540 +3791 55298 0.4470 +3791 55845 0.4990 +3791 56034 0.9970 +3791 57057 0.5250 +3791 57509 0.4300 +3791 57556 0.5790 +3791 57758 0.6040 +3791 58498 0.4070 +3791 60675 0.4530 +3791 63916 0.5120 +3791 64123 0.5050 +3791 64321 0.6820 +3791 79031 0.6140 +3791 79652 0.7880 +3791 79812 0.4380 +3791 79923 0.5460 +3791 80031 0.4320 +3791 80310 0.8470 +3791 80781 0.9600 +3791 83483 0.4770 +3791 83595 0.5000 +3791 83881 0.5000 +3791 84168 0.8200 +3791 84335 0.4160 +3791 89780 0.4190 +3791 90952 0.6370 +3791 91584 0.5290 +3791 116159 0.5360 +3791 161198 0.6110 +3791 161882 0.4530 +3791 196883 0.4010 +3791 221395 0.5510 +3791 259197 0.4080 +3791 339390 0.4280 +3791 399694 0.9120 +3791 641700 0.4320 +3791 100506658 0.4540 +3792 4059 0.5520 +3792 5304 0.7750 +3792 6005 0.7590 +3792 6006 0.7850 +3792 6007 0.7850 +3792 6521 0.6600 +3792 6563 0.5610 +3792 6708 0.6770 +3792 7172 0.4420 +3792 7504 0.9900 +3792 9911 0.4180 +3792 10107 0.6520 +3792 10661 0.6200 +3792 23230 0.7280 +3792 23762 0.4530 +3792 51327 0.4620 +3792 57595 0.4280 +3792 114625 0.5210 +3792 114786 0.5310 +3792 150165 0.8890 +3792 222642 0.4910 +3792 286046 0.5050 +3792 389668 0.4030 +3792 402415 0.8650 +3795 5091 0.4900 +3795 5213 0.4020 +3795 5313 0.5480 +3795 5631 0.6290 +3795 6514 0.6550 +3795 6518 0.7960 +3795 6652 0.9610 +3795 6720 0.4800 +3795 7360 0.4590 +3795 9942 0.4350 +3795 10297 0.7170 +3795 10400 0.4160 +3795 10982 0.7740 +3795 11117 0.7150 +3795 22919 0.7170 +3795 22924 0.7720 +3795 23451 0.4350 +3795 23621 0.4380 +3795 26007 0.7440 +3795 29988 0.4100 +3795 51085 0.6660 +3795 55196 0.4080 +3795 56606 0.4120 +3795 56956 0.6570 +3795 57544 0.4300 +3795 57818 0.4690 +3795 79815 0.4090 +3795 79982 0.4200 +3795 80201 0.9200 +3795 92579 0.4590 +3795 125061 0.4020 +3795 154091 0.4140 +3795 197258 0.8000 +3795 414328 0.4310 +3796 3797 0.6430 +3796 3798 0.6600 +3796 3799 0.6830 +3796 3800 0.6960 +3796 3801 0.6620 +3796 3831 0.6700 +3796 3832 0.7740 +3796 3833 0.6840 +3796 3834 0.6280 +3796 3835 0.7150 +3796 3925 0.4140 +3796 4085 0.6410 +3796 4130 0.5480 +3796 4131 0.4710 +3796 4751 0.6820 +3796 4756 0.4060 +3796 4926 0.4400 +3796 4957 0.8000 +3796 5048 0.5430 +3796 5116 0.4220 +3796 5347 0.9270 +3796 5929 0.5210 +3796 6491 0.4490 +3796 6683 0.4310 +3796 6790 0.7190 +3796 6795 0.4190 +3796 6993 0.4110 +3796 7157 0.4600 +3796 7257 0.8130 +3796 7272 0.4590 +3796 7283 0.5930 +3796 7803 0.4280 +3796 7846 0.5100 +3796 8729 0.5040 +3796 9055 0.6080 +3796 9133 0.5300 +3796 9184 0.6100 +3796 9212 0.6160 +3796 9371 0.6460 +3796 9470 0.4170 +3796 9493 0.7290 +3796 9585 0.6860 +3796 9700 0.6900 +3796 9738 0.5720 +3796 9764 0.4280 +3796 9787 0.5170 +3796 9793 0.5470 +3796 9859 0.9620 +3796 9928 0.7700 +3796 10013 0.4650 +3796 10112 0.6930 +3796 10121 0.5380 +3796 10300 0.4070 +3796 10376 0.9340 +3796 10403 0.6000 +3796 10460 0.4300 +3796 10540 0.5860 +3796 10671 0.5070 +3796 10726 0.8090 +3796 10733 0.5240 +3796 10749 0.6000 +3796 11004 0.8520 +3796 11064 0.7790 +3796 11127 0.6520 +3796 11258 0.5670 +3796 22897 0.4220 +3796 22919 0.5170 +3796 22920 0.6990 +3796 22924 0.5480 +3796 22974 0.4560 +3796 23046 0.6460 +3796 23095 0.6300 +3796 23122 0.4340 +3796 23271 0.4200 +3796 23303 0.6400 +3796 23332 0.7870 +3796 23476 0.5420 +3796 24137 0.6240 +3796 26153 0.6260 +3796 26286 0.5000 +3796 26586 0.5710 +3796 27185 0.4310 +3796 27436 0.7810 +3796 29127 0.6080 +3796 51164 0.5090 +3796 51199 0.8370 +3796 51512 0.5260 +3796 51594 0.5040 +3796 51741 0.5310 +3796 53407 0.5040 +3796 54477 0.4110 +3796 54806 0.4090 +3796 54820 0.7760 +3796 54916 0.4420 +3796 55083 0.6350 +3796 55132 0.6300 +3796 55143 0.4390 +3796 55201 0.5720 +3796 55521 0.4850 +3796 55582 0.6260 +3796 55605 0.6910 +3796 55614 0.5840 +3796 55700 0.5520 +3796 55738 0.5030 +3796 55835 0.4620 +3796 55850 0.5010 +3796 55860 0.5100 +3796 56992 0.7210 +3796 57509 0.5470 +3796 57576 0.6890 +3796 57606 0.5300 +3796 57662 0.5880 +3796 60561 0.5200 +3796 63901 0.4050 +3796 63971 0.6280 +3796 64837 0.6160 +3796 79598 0.4600 +3796 79649 0.6200 +3796 79884 0.4970 +3796 80323 0.7630 +3796 81565 0.7120 +3796 81930 0.8840 +3796 83473 0.4220 +3796 83540 0.5510 +3796 84364 0.5060 +3796 84516 0.5040 +3796 84630 0.4050 +3796 84643 0.8130 +3796 84722 0.6570 +3796 89953 0.4410 +3796 90060 0.7870 +3796 90990 0.6380 +3796 93661 0.5340 +3796 116540 0.4200 +3796 116987 0.4870 +3796 117286 0.4240 +3796 120892 0.5100 +3796 124602 0.7120 +3796 145508 0.7910 +3796 146057 0.4550 +3796 146909 0.7070 +3796 147700 0.5110 +3796 151246 0.4210 +3796 157922 0.5250 +3796 220134 0.4340 +3796 220965 0.4570 +3796 221150 0.7300 +3796 221458 0.6110 +3796 256714 0.5190 +3796 259266 0.6870 +3796 283638 0.5860 +3796 284403 0.5830 +3796 284697 0.4980 +3796 285643 0.5970 +3796 347733 0.9460 +3796 374654 0.6530 +3796 729440 0.7330 +3797 3798 0.6770 +3797 3799 0.6480 +3797 3800 0.6640 +3797 3801 0.6440 +3797 3831 0.8200 +3797 3832 0.6360 +3797 3833 0.6320 +3797 3834 0.6110 +3797 3835 0.6050 +3797 4148 0.5690 +3797 4644 0.5320 +3797 4750 0.4060 +3797 4858 0.4880 +3797 5048 0.4080 +3797 5164 0.6440 +3797 6608 0.4070 +3797 8087 0.5210 +3797 8100 0.4560 +3797 8729 0.4990 +3797 9183 0.5150 +3797 9371 0.6730 +3797 9493 0.5980 +3797 9513 0.5480 +3797 9585 0.6010 +3797 9928 0.5940 +3797 10112 0.6090 +3797 10121 0.5210 +3797 10540 0.5700 +3797 10671 0.5090 +3797 10749 0.6120 +3797 11004 0.6260 +3797 11127 0.9920 +3797 11258 0.5850 +3797 22920 0.9990 +3797 23046 0.6100 +3797 23059 0.4040 +3797 23095 0.5980 +3797 23191 0.4310 +3797 23303 0.5830 +3797 24137 0.5090 +3797 26128 0.6260 +3797 26153 0.5840 +3797 26286 0.4990 +3797 26747 0.4940 +3797 27185 0.5600 +3797 29127 0.4420 +3797 51098 0.5780 +3797 51164 0.5720 +3797 51594 0.5120 +3797 53407 0.5150 +3797 54820 0.5610 +3797 55081 0.5590 +3797 55083 0.6020 +3797 55252 0.7740 +3797 55582 0.5940 +3797 55605 0.6200 +3797 55614 0.5860 +3797 55738 0.4990 +3797 55764 0.4040 +3797 55850 0.4990 +3797 55860 0.5000 +3797 56001 0.4700 +3797 56912 0.4190 +3797 56992 0.5810 +3797 57532 0.4970 +3797 57576 0.6100 +3797 57662 0.5510 +3797 60561 0.4990 +3797 63971 0.5880 +3797 64837 0.7060 +3797 81565 0.5680 +3797 81930 0.6060 +3797 84364 0.4990 +3797 84516 0.5080 +3797 84643 0.6050 +3797 89953 0.4940 +3797 90410 0.5220 +3797 90990 0.6440 +3797 93661 0.4990 +3797 124602 0.5990 +3797 144100 0.7030 +3797 146909 0.5910 +3797 147700 0.5830 +3797 171023 0.5890 +3797 221458 0.5630 +3797 285643 0.4940 +3797 344148 0.4820 +3797 374654 0.6010 +3797 728343 0.4680 +3798 3799 0.9700 +3798 3800 0.9650 +3798 3801 0.6690 +3798 3831 0.9990 +3798 3832 0.7170 +3798 3833 0.6470 +3798 3834 0.6280 +3798 3835 0.6060 +3798 3895 0.5750 +3798 3899 0.6080 +3798 4137 0.4160 +3798 4644 0.5490 +3798 4741 0.9360 +3798 4744 0.9470 +3798 4747 0.9500 +3798 4750 0.5570 +3798 5048 0.5440 +3798 5216 0.5070 +3798 5354 0.5080 +3798 5599 0.9070 +3798 5601 0.9020 +3798 5649 0.5080 +3798 5832 0.5520 +3798 5879 0.5200 +3798 5929 0.4320 +3798 6253 0.4970 +3798 6311 0.4500 +3798 6506 0.4680 +3798 6583 0.4420 +3798 6616 0.4920 +3798 6622 0.9240 +3798 6647 0.4780 +3798 6683 0.8320 +3798 6687 0.6050 +3798 6780 0.4320 +3798 6812 0.4300 +3798 7128 0.4840 +3798 7277 0.6440 +3798 7280 0.4600 +3798 7415 0.4480 +3798 7846 0.8820 +3798 8729 0.4990 +3798 8764 0.5360 +3798 9001 0.4990 +3798 9183 0.5120 +3798 9197 0.4810 +3798 9217 0.4640 +3798 9371 0.6340 +3798 9420 0.4350 +3798 9475 0.4370 +3798 9479 0.4150 +3798 9493 0.5940 +3798 9585 0.6030 +3798 9637 0.4190 +3798 9638 0.4690 +3798 9751 0.4250 +3798 9782 0.4890 +3798 9896 0.4470 +3798 9897 0.8400 +3798 9907 0.4800 +3798 9927 0.4120 +3798 9928 0.6140 +3798 10112 0.6060 +3798 10121 0.5560 +3798 10133 0.4330 +3798 10381 0.4600 +3798 10382 0.5720 +3798 10540 0.7210 +3798 10671 0.4990 +3798 10717 0.4570 +3798 10749 0.6580 +3798 10908 0.4820 +3798 11004 0.6470 +3798 11075 0.5280 +3798 11127 0.6760 +3798 11154 0.4350 +3798 11160 0.4180 +3798 11258 0.5590 +3798 11337 0.5120 +3798 22906 0.8830 +3798 22920 0.7530 +3798 22924 0.4020 +3798 23025 0.4710 +3798 23046 0.6510 +3798 23064 0.4490 +3798 23095 0.6860 +3798 23111 0.5450 +3798 23162 0.4100 +3798 23259 0.4570 +3798 23299 0.4740 +3798 23303 0.6650 +3798 23431 0.4450 +3798 23435 0.6590 +3798 23499 0.4920 +3798 23503 0.5800 +3798 23569 0.5210 +3798 24137 0.5520 +3798 25923 0.4450 +3798 26153 0.6250 +3798 26191 0.5430 +3798 26286 0.5200 +3798 26580 0.6460 +3798 27031 0.4060 +3798 27185 0.4800 +3798 29110 0.4250 +3798 29127 0.4510 +3798 29978 0.5130 +3798 51062 0.6100 +3798 51164 0.5870 +3798 51308 0.5440 +3798 51324 0.5920 +3798 51440 0.4060 +3798 51594 0.4990 +3798 53407 0.4990 +3798 54332 0.5000 +3798 54820 0.6420 +3798 55083 0.6190 +3798 55288 0.6300 +3798 55582 0.5970 +3798 55605 0.6800 +3798 55614 0.5900 +3798 55638 0.4590 +3798 55738 0.5130 +3798 55763 0.4730 +3798 55801 0.4050 +3798 55850 0.4990 +3798 55860 0.5780 +3798 56992 0.6260 +3798 57165 0.4290 +3798 57576 0.6560 +3798 57679 0.5420 +3798 57704 0.4020 +3798 60561 0.5040 +3798 63971 0.6550 +3798 64225 0.4270 +3798 64446 0.4040 +3798 64837 0.9990 +3798 65055 0.8550 +3798 66008 0.8600 +3798 79152 0.4980 +3798 79258 0.4970 +3798 79837 0.7290 +3798 80179 0.4370 +3798 80208 0.6530 +3798 80821 0.4430 +3798 81565 0.7420 +3798 81930 0.6280 +3798 84079 0.7550 +3798 84364 0.5200 +3798 84516 0.5360 +3798 84617 0.4240 +3798 84643 0.6370 +3798 89953 0.9980 +3798 90990 0.6800 +3798 91574 0.4430 +3798 93661 0.5230 +3798 118813 0.7750 +3798 120400 0.4780 +3798 123606 0.7920 +3798 124602 0.6090 +3798 137492 0.4130 +3798 140679 0.4880 +3798 146909 0.5970 +3798 147700 0.9980 +3798 167826 0.5450 +3798 203228 0.5450 +3798 221458 0.5910 +3798 283106 0.6720 +3798 285643 0.5380 +3798 347733 0.8970 +3798 374654 0.6120 +3798 400916 0.4850 +3798 100532724 0.6030 +3799 3800 0.9590 +3799 3801 0.6590 +3799 3831 0.9990 +3799 3832 0.7080 +3799 3833 0.6430 +3799 3834 0.6920 +3799 3835 0.6040 +3799 3845 0.5770 +3799 3895 0.7310 +3799 4008 0.5560 +3799 4204 0.4100 +3799 4478 0.5670 +3799 4627 0.4690 +3799 4644 0.7200 +3799 4645 0.5370 +3799 4700 0.4740 +3799 4741 0.9370 +3799 4744 0.9180 +3799 4747 0.9100 +3799 4869 0.7820 +3799 4893 0.4170 +3799 4914 0.4570 +3799 5048 0.5510 +3799 5290 0.6880 +3799 5295 0.6660 +3799 5335 0.5000 +3799 5495 0.5870 +3799 5573 0.7340 +3799 5599 0.9110 +3799 5601 0.9030 +3799 5774 0.4060 +3799 5781 0.4970 +3799 5867 0.5600 +3799 5868 0.6410 +3799 5870 0.5960 +3799 5879 0.5360 +3799 5903 0.9920 +3799 5912 0.4390 +3799 5929 0.4260 +3799 5979 0.8240 +3799 6098 0.6940 +3799 6197 0.4790 +3799 6238 0.6630 +3799 6249 0.4890 +3799 6336 0.6470 +3799 6464 0.5480 +3799 6616 0.5520 +3799 6622 0.9160 +3799 6672 0.4570 +3799 6709 0.5060 +3799 6774 0.5980 +3799 6780 0.4630 +3799 6801 0.8050 +3799 6804 0.4630 +3799 6814 0.4890 +3799 7046 0.4670 +3799 7170 0.8340 +3799 7171 0.7730 +3799 7175 0.6360 +3799 7280 0.9440 +3799 7337 0.4080 +3799 7414 0.5880 +3799 7431 0.4270 +3799 7533 0.6230 +3799 7534 0.6590 +3799 7812 0.5250 +3799 7846 0.9500 +3799 8030 0.7760 +3799 8031 0.6220 +3799 8079 0.5540 +3799 8301 0.5150 +3799 8411 0.4530 +3799 8496 0.6410 +3799 8655 0.5130 +3799 8729 0.5730 +3799 8766 0.4150 +3799 8773 0.6860 +3799 8878 0.7660 +3799 8927 0.7760 +3799 9001 0.4460 +3799 9043 0.5750 +3799 9053 0.5670 +3799 9183 0.5670 +3799 9371 0.6550 +3799 9451 0.5640 +3799 9475 0.6530 +3799 9479 0.6250 +3799 9493 0.6010 +3799 9522 0.4560 +3799 9585 0.6020 +3799 9637 0.4260 +3799 9638 0.7700 +3799 9648 0.6700 +3799 9751 0.7220 +3799 9759 0.4140 +3799 9928 0.7270 +3799 9972 0.5130 +3799 10059 0.4550 +3799 10112 0.6080 +3799 10121 0.6240 +3799 10342 0.8050 +3799 10376 0.9350 +3799 10381 0.4240 +3799 10540 0.7000 +3799 10568 0.4470 +3799 10590 0.6360 +3799 10640 0.5320 +3799 10671 0.5070 +3799 10749 0.6490 +3799 10817 0.4990 +3799 10818 0.5440 +3799 10971 0.4540 +3799 11004 0.6600 +3799 11052 0.5270 +3799 11127 0.6900 +3799 11177 0.4640 +3799 11258 0.5290 +3799 22872 0.7600 +3799 22906 0.8870 +3799 22919 0.4270 +3799 22920 0.7370 +3799 22924 0.4660 +3799 22931 0.5580 +3799 23046 0.6310 +3799 23085 0.4790 +3799 23095 0.6550 +3799 23135 0.4170 +3799 23162 0.5220 +3799 23207 0.8540 +3799 23299 0.6910 +3799 23303 0.6460 +3799 23361 0.4340 +3799 24137 0.5540 +3799 26153 0.6120 +3799 26286 0.5770 +3799 27031 0.4110 +3799 27185 0.4360 +3799 27436 0.9050 +3799 28962 0.4540 +3799 29127 0.4180 +3799 51143 0.4540 +3799 51164 0.6580 +3799 51361 0.4280 +3799 51582 0.6670 +3799 51592 0.6760 +3799 51594 0.5130 +3799 51710 0.4340 +3799 53335 0.5720 +3799 53407 0.5070 +3799 54820 0.6380 +3799 55083 0.6140 +3799 55288 0.7770 +3799 55582 0.5950 +3799 55605 0.6650 +3799 55614 0.6260 +3799 55638 0.9660 +3799 55680 0.4460 +3799 55733 0.6260 +3799 55738 0.5200 +3799 55850 0.5290 +3799 55860 0.5930 +3799 55930 0.5740 +3799 56992 0.6270 +3799 57096 0.4910 +3799 57120 0.4370 +3799 57448 0.6980 +3799 57551 0.4500 +3799 57576 0.6540 +3799 57614 0.4500 +3799 57674 0.4490 +3799 60561 0.5790 +3799 63971 0.6540 +3799 64151 0.4480 +3799 64446 0.4630 +3799 64837 0.9990 +3799 66008 0.8100 +3799 79443 0.5520 +3799 79659 0.4250 +3799 79829 0.5910 +3799 80179 0.5780 +3799 80304 0.7280 +3799 80818 0.4330 +3799 81555 0.4460 +3799 81565 0.6680 +3799 81930 0.6330 +3799 84364 0.6540 +3799 84376 0.5760 +3799 84516 0.5400 +3799 84643 0.6290 +3799 89941 0.4650 +3799 89953 0.9980 +3799 90990 0.6710 +3799 93661 0.5230 +3799 115560 0.4320 +3799 124602 0.6120 +3799 144100 0.4380 +3799 146909 0.6040 +3799 147700 0.9990 +3799 148266 0.4360 +3799 161176 0.5520 +3799 163183 0.9250 +3799 203068 0.4550 +3799 221079 0.4490 +3799 221458 0.5830 +3799 256714 0.4210 +3799 283106 0.6630 +3799 283209 0.4350 +3799 284390 0.4340 +3799 285643 0.5260 +3799 286187 0.5200 +3799 347733 0.9340 +3799 374654 0.6160 +3799 729857 0.5610 +3799 100532724 0.6030 +3800 3801 0.6560 +3800 3831 0.9990 +3800 3832 0.6950 +3800 3833 0.6400 +3800 3834 0.6970 +3800 3835 0.6680 +3800 3895 0.5720 +3800 4289 0.5230 +3800 4644 0.5010 +3800 4741 0.9370 +3800 4744 0.9260 +3800 4747 0.9400 +3800 5048 0.6330 +3800 5599 0.9140 +3800 5601 0.9040 +3800 5903 0.9920 +3800 6616 0.4600 +3800 6622 0.9160 +3800 6672 0.5040 +3800 6804 0.4900 +3800 6812 0.4430 +3800 6860 0.4210 +3800 7277 0.4670 +3800 7280 0.5820 +3800 7283 0.5900 +3800 7846 0.9620 +3800 9001 0.5240 +3800 9053 0.4240 +3800 9371 0.6390 +3800 9475 0.4370 +3800 9479 0.5070 +3800 9493 0.6650 +3800 9585 0.5840 +3800 9637 0.4190 +3800 9638 0.5760 +3800 9751 0.4950 +3800 9759 0.4190 +3800 9928 0.6090 +3800 10112 0.6690 +3800 10381 0.6000 +3800 10382 0.6020 +3800 10383 0.4240 +3800 10749 0.6520 +3800 11004 0.6510 +3800 11075 0.4800 +3800 11127 0.7000 +3800 22906 0.8490 +3800 22920 0.7130 +3800 22924 0.4890 +3800 23046 0.6510 +3800 23095 0.6710 +3800 23162 0.5050 +3800 23299 0.4540 +3800 23303 0.6510 +3800 23426 0.5570 +3800 23435 0.4670 +3800 26128 0.4190 +3800 26153 0.6240 +3800 27031 0.4060 +3800 27185 0.5040 +3800 27249 0.4220 +3800 51309 0.4210 +3800 51582 0.5010 +3800 51807 0.5830 +3800 54820 0.7340 +3800 55083 0.6140 +3800 55288 0.6580 +3800 55582 0.6080 +3800 55605 0.6970 +3800 55614 0.6120 +3800 55638 0.4720 +3800 55700 0.4300 +3800 55777 0.4100 +3800 55791 0.4100 +3800 56992 0.6200 +3800 57096 0.5570 +3800 57576 0.6440 +3800 57698 0.5150 +3800 63971 0.6400 +3800 64837 0.9980 +3800 66008 0.9230 +3800 79649 0.4590 +3800 80179 0.4860 +3800 81565 0.6710 +3800 81930 0.6170 +3800 84617 0.4620 +3800 84643 0.6200 +3800 89953 0.9980 +3800 90990 0.6570 +3800 124602 0.6350 +3800 130576 0.5460 +3800 140679 0.4130 +3800 146909 0.5960 +3800 147700 0.9970 +3800 203068 0.5100 +3800 221458 0.5990 +3800 283106 0.6910 +3800 284403 0.4940 +3800 347733 0.9700 +3800 374654 0.6230 +3800 100532724 0.6030 +3801 3831 0.6660 +3801 3832 0.9570 +3801 3833 0.6220 +3801 3834 0.5850 +3801 3835 0.7210 +3801 3853 0.5300 +3801 4085 0.5540 +3801 5689 0.4130 +3801 6499 0.4050 +3801 6774 0.4080 +3801 6950 0.4990 +3801 7157 0.4230 +3801 7203 0.4990 +3801 8841 0.4060 +3801 9134 0.4160 +3801 9212 0.4150 +3801 9371 0.7740 +3801 9493 0.8060 +3801 9513 0.4280 +3801 9585 0.6900 +3801 9787 0.5290 +3801 9793 0.4740 +3801 9859 0.8970 +3801 9928 0.7300 +3801 10112 0.7700 +3801 10142 0.4430 +3801 10445 0.4520 +3801 10517 0.4110 +3801 10540 0.4130 +3801 10574 0.4990 +3801 10575 0.4990 +3801 10576 0.5350 +3801 10693 0.4990 +3801 10694 0.5160 +3801 10749 0.6180 +3801 10982 0.4140 +3801 11004 0.6560 +3801 11127 0.7640 +3801 11328 0.4240 +3801 22919 0.4440 +3801 22920 0.8120 +3801 22924 0.4630 +3801 22948 0.4990 +3801 23046 0.6800 +3801 23095 0.6080 +3801 23303 0.6100 +3801 26153 0.6300 +3801 26190 0.4010 +3801 26330 0.4060 +3801 26747 0.4460 +3801 26999 0.4940 +3801 27185 0.4190 +3801 27241 0.4020 +3801 54443 0.5000 +3801 54461 0.4040 +3801 54820 0.5470 +3801 55031 0.4610 +3801 55063 0.6130 +3801 55083 0.6420 +3801 55135 0.4010 +3801 55212 0.5290 +3801 55294 0.4110 +3801 55582 0.6760 +3801 55605 0.6480 +3801 55614 0.5920 +3801 56992 0.7940 +3801 57010 0.4770 +3801 57532 0.4160 +3801 57576 0.7050 +3801 57662 0.9760 +3801 63971 0.6480 +3801 64837 0.8140 +3801 81565 0.5920 +3801 81930 0.7850 +3801 84140 0.4290 +3801 84261 0.4120 +3801 84643 0.6620 +3801 84839 0.4190 +3801 89953 0.4740 +3801 90990 0.6510 +3801 124602 0.7030 +3801 137209 0.6230 +3801 144100 0.9610 +3801 146909 0.7320 +3801 147700 0.6000 +3801 152098 0.6130 +3801 196951 0.5140 +3801 221458 0.6030 +3801 259266 0.4030 +3801 284403 0.5250 +3801 374654 0.6910 +3801 100532724 0.4450 +3802 3804 0.9990 +3802 3805 0.9520 +3802 3811 0.9930 +3802 3812 0.9930 +3802 3820 0.6690 +3802 3821 0.9900 +3802 3822 0.9870 +3802 3823 0.5580 +3802 3824 0.9950 +3802 3902 0.4610 +3802 3916 0.6060 +3802 4277 0.5310 +3802 4684 0.7520 +3802 5551 0.7680 +3802 5777 0.9310 +3802 5781 0.9750 +3802 5788 0.4090 +3802 5817 0.4790 +3802 5819 0.5050 +3802 6402 0.4310 +3802 6504 0.5320 +3802 6769 0.8160 +3802 6993 0.5560 +3802 7305 0.8010 +3802 8302 0.9310 +3802 8764 0.4060 +3802 9436 0.7650 +3802 9873 0.6970 +3802 10225 0.4660 +3802 10578 0.5420 +3802 10580 0.8740 +3802 10666 0.7010 +3802 10859 0.4690 +3802 10870 0.4410 +3802 10871 0.5160 +3802 11126 0.5370 +3802 11314 0.4160 +3802 22914 0.7910 +3802 23111 0.7630 +3802 27036 0.4440 +3802 27087 0.6870 +3802 29126 0.5510 +3802 30009 0.4190 +3802 51348 0.6940 +3802 51513 0.4800 +3802 51744 0.7310 +3802 54209 0.4440 +3802 54210 0.4930 +3802 79168 0.5130 +3802 79465 0.4910 +3802 80263 0.8510 +3802 80328 0.5020 +3802 80329 0.5550 +3802 84662 0.4330 +3802 84868 0.4910 +3802 85451 0.4430 +3802 114836 0.4700 +3802 115653 0.9910 +3802 117157 0.5080 +3802 144811 0.5880 +3802 201633 0.5120 +3802 219736 0.4290 +3802 259197 0.8090 +3802 282617 0.5020 +3802 343413 0.4040 +3802 374383 0.4020 +3804 3805 0.9990 +3804 3811 0.9980 +3804 3812 0.9860 +3804 3820 0.6350 +3804 3821 0.9940 +3804 3822 0.9780 +3804 3823 0.5010 +3804 3824 0.9960 +3804 3916 0.5820 +3804 4277 0.5020 +3804 4589 0.4200 +3804 4684 0.7500 +3804 5551 0.7940 +3804 5777 0.9780 +3804 5781 0.9490 +3804 5817 0.4330 +3804 5819 0.4330 +3804 6769 0.5940 +3804 6993 0.7090 +3804 7305 0.8210 +3804 8302 0.9340 +3804 9436 0.7220 +3804 9873 0.5980 +3804 10447 0.4090 +3804 10578 0.5940 +3804 10580 0.8140 +3804 10666 0.6680 +3804 11126 0.4650 +3804 11314 0.4080 +3804 22914 0.7520 +3804 23111 0.6590 +3804 27036 0.4390 +3804 27087 0.6680 +3804 30834 0.4240 +3804 51348 0.6180 +3804 51513 0.5060 +3804 51744 0.6560 +3804 79465 0.4630 +3804 80263 0.6690 +3804 80328 0.4590 +3804 80329 0.5020 +3804 84868 0.4010 +3804 85451 0.5580 +3804 114836 0.4620 +3804 115653 0.9990 +3804 117157 0.4340 +3804 140683 0.5260 +3804 201633 0.4540 +3804 259197 0.7850 +3804 282617 0.5220 +3804 727897 0.4340 +3805 3811 0.8690 +3805 3812 0.8960 +3805 3821 0.7890 +3805 3822 0.6310 +3805 3823 0.5300 +3805 3824 0.8070 +3805 4684 0.7490 +3805 4818 0.5510 +3805 5551 0.7000 +3805 5777 0.5300 +3805 5781 0.6860 +3805 6769 0.7940 +3805 6772 0.4510 +3805 7305 0.8830 +3805 7917 0.4320 +3805 8320 0.5130 +3805 8859 0.4760 +3805 9436 0.8210 +3805 9873 0.6400 +3805 10044 0.5070 +3805 10045 0.5700 +3805 10225 0.5480 +3805 10288 0.5760 +3805 10578 0.5960 +3805 10580 0.6640 +3805 10666 0.4550 +3805 10859 0.5760 +3805 10870 0.7380 +3805 11126 0.7200 +3805 11314 0.5400 +3805 22914 0.6110 +3805 23111 0.6200 +3805 51348 0.5280 +3805 51513 0.4740 +3805 80263 0.8060 +3805 84662 0.7610 +3805 85451 0.4550 +3805 92521 0.6200 +3805 115653 0.9040 +3805 259197 0.6200 +3805 400668 0.6090 +3811 3812 0.9870 +3811 3820 0.6140 +3811 3821 0.9810 +3811 3822 0.9780 +3811 3823 0.4970 +3811 3824 0.9860 +3811 3902 0.4470 +3811 3916 0.5980 +3811 4153 0.5970 +3811 4277 0.5000 +3811 4684 0.8170 +3811 5047 0.4220 +3811 5551 0.7480 +3811 5648 0.8290 +3811 5777 0.9350 +3811 5781 0.9550 +3811 5817 0.4350 +3811 5819 0.4460 +3811 6402 0.4230 +3811 6431 0.4080 +3811 6480 0.4930 +3811 6769 0.7200 +3811 7305 0.8170 +3811 8302 0.9390 +3811 8547 0.8030 +3811 9436 0.7200 +3811 9560 0.4040 +3811 9873 0.7200 +3811 10578 0.4660 +3811 10580 0.7730 +3811 10584 0.7050 +3811 10666 0.6700 +3811 10747 0.7760 +3811 10827 0.4200 +3811 10871 0.5040 +3811 11025 0.4140 +3811 11126 0.5120 +3811 11148 0.4090 +3811 22914 0.7520 +3811 23111 0.7250 +3811 23284 0.4450 +3811 23534 0.4240 +3811 27036 0.4710 +3811 27087 0.6930 +3811 30009 0.4160 +3811 30834 0.4260 +3811 51348 0.7500 +3811 51513 0.5070 +3811 51744 0.5730 +3811 53637 0.5370 +3811 55275 0.4240 +3811 56300 0.4460 +3811 78989 0.6910 +3811 79168 0.4550 +3811 79465 0.4760 +3811 80263 0.7730 +3811 80328 0.5010 +3811 80329 0.5300 +3811 81577 0.4290 +3811 84662 0.6920 +3811 84868 0.4530 +3811 114836 0.5130 +3811 115653 0.9990 +3811 117157 0.4960 +3811 169355 0.4740 +3811 201633 0.4920 +3811 259197 0.7730 +3812 3821 0.9590 +3812 3822 0.9520 +3812 3823 0.4270 +3812 3824 0.9660 +3812 4684 0.4710 +3812 5551 0.5900 +3812 5777 0.9070 +3812 5781 0.9130 +3812 6769 0.7160 +3812 7305 0.4540 +3812 7441 0.6680 +3812 8302 0.9230 +3812 8572 0.5670 +3812 9436 0.4410 +3812 9873 0.6610 +3812 10225 0.5050 +3812 10578 0.4020 +3812 10580 0.7900 +3812 10666 0.4250 +3812 11314 0.4880 +3812 22914 0.4840 +3812 23111 0.6680 +3812 23284 0.9370 +3812 27087 0.4290 +3812 27130 0.5140 +3812 51348 0.6010 +3812 51513 0.4740 +3812 53637 0.4610 +3812 80263 0.7230 +3812 84300 0.4140 +3812 92799 0.4570 +3812 113246 0.4470 +3812 115653 0.9850 +3812 259197 0.5250 +3812 100423062 0.5250 +3814 3827 0.6400 +3814 3952 0.9360 +3814 3953 0.6680 +3814 3972 0.4210 +3814 3973 0.5200 +3814 4160 0.4050 +3814 4295 0.4300 +3814 4828 0.4850 +3814 4829 0.5600 +3814 4830 0.5850 +3814 4852 0.8070 +3814 4922 0.5770 +3814 4935 0.6430 +3814 5020 0.7370 +3814 5069 0.5180 +3814 5173 0.8410 +3814 5241 0.4590 +3814 5330 0.5170 +3814 5331 0.5170 +3814 5367 0.7790 +3814 5368 0.4550 +3814 5443 0.6930 +3814 5471 0.4060 +3814 5617 0.5910 +3814 5832 0.4570 +3814 6462 0.5180 +3814 6770 0.4070 +3814 6863 0.6210 +3814 6870 0.9580 +3814 7054 0.4860 +3814 7200 0.6350 +3814 7201 0.5420 +3814 7204 0.5060 +3814 7252 0.4610 +3814 7372 0.9570 +3814 7432 0.5190 +3814 7681 0.6960 +3814 8038 0.4480 +3814 8620 0.8540 +3814 8833 0.6150 +3814 8997 0.4990 +3814 9112 0.4560 +3814 9394 0.4790 +3814 9607 0.8630 +3814 9962 0.7040 +3814 9963 0.7040 +3814 10316 0.5270 +3814 10570 0.6050 +3814 10606 0.4190 +3814 10761 0.4800 +3814 10800 0.4990 +3814 10874 0.5310 +3814 10886 0.5920 +3814 10887 0.5560 +3814 10911 0.5000 +3814 22984 0.4850 +3814 23236 0.5860 +3814 23373 0.5170 +3814 25855 0.5300 +3814 26012 0.6850 +3814 51052 0.5860 +3814 51083 0.6860 +3814 51167 0.5530 +3814 51700 0.5360 +3814 51706 0.5380 +3814 51738 0.7400 +3814 54328 0.5230 +3814 55270 0.5060 +3814 55636 0.7320 +3814 56896 0.6050 +3814 56923 0.5320 +3814 57084 0.4420 +3814 57105 0.4990 +3814 60675 0.8590 +3814 64106 0.7200 +3814 64111 0.8520 +3814 64207 0.4470 +3814 80763 0.5730 +3814 84109 0.5790 +3814 84312 0.5290 +3814 84432 0.5300 +3814 84634 0.9990 +3814 85569 0.4180 +3814 89894 0.6430 +3814 92106 0.5360 +3814 115557 0.5700 +3814 127845 0.4690 +3814 128674 0.8130 +3814 129521 0.6120 +3814 139596 0.4320 +3814 162417 0.4470 +3814 256933 0.4020 +3814 257313 0.4400 +3814 347148 0.7990 +3814 387129 0.5980 +3814 594857 0.5770 +3814 606495 0.5360 +3815 3820 0.4850 +3815 3824 0.5070 +3815 3845 0.9760 +3815 3852 0.6140 +3815 3855 0.7170 +3815 3856 0.5200 +3815 3861 0.5050 +3815 3875 0.4800 +3815 3880 0.5930 +3815 3958 0.5900 +3815 3976 0.4050 +3815 4005 0.5080 +3815 4067 0.9280 +3815 4072 0.6070 +3815 4085 0.4210 +3815 4089 0.5080 +3815 4145 0.6770 +3815 4157 0.7570 +3815 4162 0.5150 +3815 4170 0.5440 +3815 4193 0.5800 +3815 4208 0.4740 +3815 4211 0.5490 +3815 4233 0.5940 +3815 4254 0.9990 +3815 4267 0.7230 +3815 4277 0.6500 +3815 4286 0.7830 +3815 4292 0.4800 +3815 4297 0.5050 +3815 4298 0.4270 +3815 4300 0.5960 +3815 4301 0.4020 +3815 4311 0.7450 +3815 4316 0.5270 +3815 4318 0.5410 +3815 4345 0.4180 +3815 4352 0.6940 +3815 4353 0.7050 +3815 4356 0.4990 +3815 4436 0.4030 +3815 4599 0.4630 +3815 4602 0.4950 +3815 4609 0.6740 +3815 4613 0.4640 +3815 4629 0.6090 +3815 4654 0.4210 +3815 4656 0.4930 +3815 4684 0.7850 +3815 4763 0.7150 +3815 4771 0.4160 +3815 4790 0.4410 +3815 4803 0.7860 +3815 4804 0.4810 +3815 4811 0.4230 +3815 4851 0.6470 +3815 4853 0.4690 +3815 4869 0.7650 +3815 4893 0.9810 +3815 4897 0.4530 +3815 4907 0.6440 +3815 4908 0.6990 +3815 4909 0.6910 +3815 4948 0.4040 +3815 5077 0.6160 +3815 5079 0.5710 +3815 5133 0.4470 +3815 5154 0.8010 +3815 5155 0.8760 +3815 5156 0.4490 +3815 5169 0.4120 +3815 5175 0.7740 +3815 5228 0.7980 +3815 5241 0.5410 +3815 5243 0.4510 +3815 5287 0.5340 +3815 5290 0.9860 +3815 5291 0.9610 +3815 5293 0.9400 +3815 5294 0.8520 +3815 5295 0.9950 +3815 5296 0.9680 +3815 5330 0.6660 +3815 5331 0.6750 +3815 5332 0.7180 +3815 5335 0.8860 +3815 5336 0.4140 +3815 5460 0.7070 +3815 5468 0.4390 +3815 5578 0.9120 +3815 5595 0.5160 +3815 5688 0.7200 +3815 5727 0.4160 +3815 5728 0.7190 +3815 5743 0.4310 +3815 5777 0.8560 +3815 5781 0.9900 +3815 5782 0.5460 +3815 5788 0.9060 +3815 5795 0.5160 +3815 5873 0.4960 +3815 5879 0.5510 +3815 5896 0.5230 +3815 5914 0.6060 +3815 5921 0.4310 +3815 6198 0.5910 +3815 6223 0.4450 +3815 6320 0.9930 +3815 6347 0.6870 +3815 6348 0.5480 +3815 6354 0.4690 +3815 6369 0.4140 +3815 6370 0.4870 +3815 6382 0.5840 +3815 6387 0.9740 +3815 6389 0.5870 +3815 6390 0.7220 +3815 6391 0.7330 +3815 6392 0.7000 +3815 6402 0.5150 +3815 6427 0.5820 +3815 6464 0.9670 +3815 6469 0.4640 +3815 6490 0.4880 +3815 6504 0.8020 +3815 6591 0.7440 +3815 6598 0.5850 +3815 6608 0.4350 +3815 6615 0.4250 +3815 6654 0.5670 +3815 6657 0.6130 +3815 6662 0.4530 +3815 6663 0.6040 +3815 6688 0.6720 +3815 6693 0.6690 +3815 6696 0.4370 +3815 6714 0.8020 +3815 6772 0.8740 +3815 6774 0.9600 +3815 6776 0.9590 +3815 6777 0.9710 +3815 6778 0.4670 +3815 6790 0.4680 +3815 6850 0.6260 +3815 6855 0.6460 +3815 6863 0.4160 +3815 6886 0.5020 +3815 6925 0.4310 +3815 6929 0.4740 +3815 7006 0.8060 +3815 7015 0.6090 +3815 7021 0.7760 +3815 7030 0.5460 +3815 7037 0.7730 +3815 7039 0.8600 +3815 7040 0.7020 +3815 7066 0.7560 +3815 7070 0.7890 +3815 7075 0.5030 +3815 7080 0.4500 +3815 7099 0.4760 +3815 7124 0.6080 +3815 7157 0.8160 +3815 7177 0.4280 +3815 7249 0.4460 +3815 7291 0.6040 +3815 7293 0.4590 +3815 7294 0.5480 +3815 7299 0.6330 +3815 7306 0.5510 +3815 7307 0.5750 +3815 7345 0.4470 +3815 7408 0.4510 +3815 7409 0.6700 +3815 7412 0.7290 +3815 7423 0.8070 +3815 7424 0.8500 +3815 7431 0.4080 +3815 7450 0.6020 +3815 7490 0.6750 +3815 7525 0.7070 +3815 7704 0.6000 +3815 7849 0.5440 +3815 7852 0.8330 +3815 8074 0.7440 +3815 8233 0.5260 +3815 8289 0.4180 +3815 8290 0.4250 +3815 8320 0.4020 +3815 8328 0.4160 +3815 8356 0.4390 +3815 8503 0.9320 +3815 8549 0.4530 +3815 8639 0.6650 +3815 8648 0.4160 +3815 8650 0.4800 +3815 8651 0.7750 +3815 8767 0.4760 +3815 8817 0.8480 +3815 8822 0.8520 +3815 8823 0.8500 +3815 8835 0.6100 +3815 8842 0.7890 +3815 9034 0.4380 +3815 9096 0.5120 +3815 9173 0.8140 +3815 9253 0.4810 +3815 9306 0.8600 +3815 9314 0.5380 +3815 9332 0.4380 +3815 9402 0.8020 +3815 9429 0.6150 +3815 9436 0.5070 +3815 9437 0.5660 +3815 9846 0.9320 +3815 9965 0.7680 +3815 10000 0.4200 +3815 10018 0.4270 +3815 10019 0.8750 +3815 10044 0.4360 +3815 10076 0.9320 +3815 10219 0.4350 +3815 10320 0.5260 +3815 10451 0.5710 +3815 10544 0.4160 +3815 10603 0.7200 +3815 10661 0.4350 +3815 10735 0.4790 +3815 10750 0.7910 +3815 10763 0.5870 +3815 10894 0.4100 +3815 11197 0.4810 +3815 11251 0.5740 +3815 22914 0.4170 +3815 22918 0.4400 +3815 23236 0.6640 +3815 23600 0.4790 +3815 25759 0.9340 +3815 26040 0.5290 +3815 26281 0.8500 +3815 26291 0.7480 +3815 27006 0.8480 +3815 27087 0.4460 +3815 27436 0.4550 +3815 29110 0.4860 +3815 29126 0.6180 +3815 30009 0.4540 +3815 50511 0.4580 +3815 50616 0.4470 +3815 50846 0.4770 +3815 50943 0.5290 +3815 51090 0.4250 +3815 51176 0.4020 +3815 51200 0.4530 +3815 51378 0.7270 +3815 53358 0.9250 +3815 54474 0.6080 +3815 54514 0.4980 +3815 54567 0.4160 +3815 54790 0.7860 +3815 55107 0.8920 +3815 55294 0.6360 +3815 55366 0.4570 +3815 55500 0.5260 +3815 55821 0.4270 +3815 56034 0.7650 +3815 57167 0.5230 +3815 64321 0.4870 +3815 79633 0.5140 +3815 79727 0.4460 +3815 79923 0.6540 +3815 80310 0.7350 +3815 80312 0.5140 +3815 80380 0.4050 +3815 81608 0.5980 +3815 81858 0.6400 +3815 84295 0.5070 +3815 84335 0.4340 +3815 85480 0.4320 +3815 90865 0.5490 +3815 90993 0.4170 +3815 91663 0.5200 +3815 117157 0.5170 +3815 117194 0.5110 +3815 137902 0.6130 +3815 140885 0.4640 +3815 144195 0.4130 +3815 146433 0.4700 +3815 161742 0.7510 +3815 170482 0.4110 +3815 171023 0.6690 +3815 200424 0.4750 +3815 200734 0.6930 +3815 254251 0.4810 +3815 283652 0.4970 +3815 339345 0.4290 +3815 342977 0.4390 +3815 346673 0.6010 +3815 373863 0.4460 +3815 399473 0.4990 +3815 399694 0.9210 +3815 400566 0.5920 +3815 402381 0.4370 +3815 440093 0.4220 +3815 440686 0.4400 +3815 653604 0.4400 +3815 728378 0.4280 +3815 100133941 0.6690 +3815 100532731 0.5100 +3815 102723407 0.4790 +3816 3817 0.9050 +3816 3818 0.5580 +3816 3827 0.9530 +3816 4803 0.6360 +3816 5004 0.4610 +3816 5104 0.7860 +3816 5265 0.5430 +3816 5267 0.9970 +3816 5328 0.5440 +3816 5329 0.4100 +3816 5340 0.5130 +3816 5624 0.4100 +3816 5653 0.4870 +3816 5655 0.5470 +3816 5972 0.4190 +3816 6237 0.4230 +3816 6692 0.6980 +3816 6906 0.4830 +3816 7369 0.4850 +3816 8170 0.6390 +3816 9372 0.4140 +3816 10105 0.4080 +3816 10551 0.5070 +3816 10653 0.5800 +3816 11005 0.4880 +3816 23491 0.4630 +3816 51752 0.4400 +3816 79679 0.4260 +3816 84661 0.4340 +3816 93650 0.5140 +3816 94025 0.5540 +3816 259307 0.5970 +3816 404203 0.4740 +3817 3818 0.6020 +3817 3827 0.9100 +3817 4317 0.4360 +3817 4318 0.5160 +3817 4477 0.8750 +3817 4803 0.4580 +3817 4824 0.7140 +3817 5054 0.5120 +3817 5104 0.8660 +3817 5267 0.9970 +3817 5269 0.5440 +3817 5270 0.5180 +3817 5340 0.5230 +3817 5345 0.4030 +3817 5585 0.5970 +3817 5644 0.4710 +3817 5645 0.4490 +3817 6406 0.5460 +3817 6407 0.6030 +3817 6692 0.6570 +3817 6715 0.4990 +3817 6716 0.5980 +3817 6822 0.5050 +3817 6906 0.4680 +3817 7047 0.8530 +3817 8000 0.4660 +3817 8331 0.4990 +3817 8334 0.4990 +3817 8337 0.5340 +3817 8338 0.5340 +3817 8340 0.4990 +3817 8341 0.4990 +3817 8342 0.4990 +3817 8345 0.4990 +3817 8347 0.4990 +3817 8348 0.4990 +3817 8349 0.5110 +3817 8356 0.5610 +3817 8361 0.5020 +3817 8970 0.4990 +3817 9066 0.5050 +3817 9314 0.4160 +3817 9563 0.4390 +3817 10105 0.4080 +3817 10481 0.5430 +3817 10653 0.5620 +3817 11012 0.4450 +3817 11132 0.4080 +3817 23028 0.5870 +3817 23600 0.4790 +3817 50636 0.7520 +3817 51752 0.4400 +3817 54145 0.4990 +3817 54510 0.4080 +3817 55766 0.4990 +3817 56937 0.4230 +3817 79689 0.6120 +3817 84467 0.5250 +3817 85236 0.4990 +3817 85414 0.8480 +3817 94239 0.5300 +3817 124583 0.5050 +3817 128312 0.4990 +3817 220965 0.5060 +3817 255626 0.5000 +3817 261729 0.7390 +3817 284366 0.4510 +3817 474382 0.4990 +3817 653604 0.5590 +3818 3827 0.9990 +3818 3848 0.4360 +3818 3881 0.5100 +3818 4153 0.6890 +3818 4312 0.4840 +3818 4314 0.5080 +3818 4477 0.7980 +3818 4824 0.6050 +3818 5054 0.5760 +3818 5104 0.8930 +3818 5176 0.6310 +3818 5265 0.5150 +3818 5267 0.4230 +3818 5270 0.4510 +3818 5328 0.6600 +3818 5329 0.6540 +3818 5340 0.9360 +3818 5345 0.8230 +3818 5444 0.4420 +3818 5547 0.7840 +3818 5624 0.7070 +3818 5644 0.5100 +3818 5645 0.4840 +3818 5648 0.6530 +3818 5744 0.4260 +3818 5972 0.6930 +3818 7035 0.5710 +3818 7047 0.8260 +3818 7056 0.6700 +3818 7122 0.4160 +3818 7140 0.4490 +3818 7177 0.4470 +3818 7448 0.4070 +3818 7980 0.6300 +3818 8529 0.4100 +3818 8547 0.6580 +3818 9066 0.5010 +3818 9510 0.4130 +3818 9733 0.5420 +3818 10481 0.4160 +3818 10584 0.5940 +3818 10747 0.6990 +3818 11012 0.4770 +3818 22885 0.4090 +3818 27429 0.5550 +3818 50636 0.6860 +3818 51109 0.4950 +3818 51156 0.4010 +3818 59272 0.4210 +3818 78989 0.6170 +3818 79689 0.6440 +3818 85414 0.8600 +3818 261729 0.6840 +3818 284366 0.4850 +3818 285440 0.4520 +3818 448831 0.6240 +3820 3821 0.6210 +3820 3822 0.8790 +3820 3823 0.7270 +3820 3824 0.7910 +3820 3902 0.5300 +3820 3916 0.4790 +3820 3965 0.5300 +3820 4068 0.5930 +3820 4345 0.4470 +3820 4585 0.4240 +3820 4684 0.7340 +3820 4818 0.7300 +3820 5133 0.6570 +3820 5551 0.7690 +3820 5788 0.6770 +3820 6097 0.6010 +3820 6351 0.4550 +3820 6364 0.4330 +3820 6375 0.6790 +3820 6402 0.6040 +3820 6609 0.8980 +3820 6689 0.4570 +3820 6775 0.4860 +3820 6846 0.5280 +3820 7124 0.5650 +3820 7293 0.4060 +3820 7305 0.6810 +3820 7535 0.4120 +3820 7704 0.7010 +3820 7852 0.4320 +3820 8302 0.6400 +3820 8320 0.6590 +3820 8477 0.4160 +3820 8530 0.4370 +3820 8764 0.4900 +3820 8807 0.4930 +3820 8809 0.7080 +3820 9034 0.8810 +3820 9332 0.5280 +3820 9436 0.6680 +3820 9437 0.8120 +3820 10004 0.5000 +3820 10068 0.4190 +3820 10071 0.4400 +3820 10158 0.4190 +3820 10225 0.5710 +3820 10447 0.4340 +3820 10538 0.5570 +3820 10578 0.7300 +3820 10663 0.7290 +3820 10666 0.6200 +3820 10803 0.4370 +3820 10859 0.5840 +3820 10870 0.5120 +3820 11126 0.5870 +3820 11251 0.6960 +3820 22914 0.9630 +3820 25945 0.4470 +3820 27036 0.4670 +3820 27087 0.6280 +3820 29121 0.9990 +3820 29126 0.6030 +3820 29851 0.6780 +3820 29909 0.4720 +3820 30009 0.7010 +3820 50616 0.6210 +3820 50852 0.7050 +3820 50943 0.6240 +3820 51266 0.7590 +3820 51348 0.5920 +3820 51564 0.5710 +3820 51744 0.5580 +3820 55540 0.4130 +3820 56253 0.5130 +3820 56667 0.4360 +3820 57823 0.4010 +3820 80329 0.4190 +3820 83888 0.4530 +3820 84868 0.5230 +3820 85443 0.8290 +3820 90865 0.4480 +3820 112744 0.5100 +3820 114836 0.4400 +3820 117157 0.4210 +3820 140453 0.4400 +3820 149233 0.5960 +3820 160364 0.4640 +3820 168537 0.4080 +3820 170482 0.4250 +3820 171558 0.4150 +3820 200958 0.4410 +3820 201633 0.7530 +3820 257101 0.4520 +3820 259197 0.7190 +3820 387836 0.8170 +3821 3822 0.9650 +3821 3824 0.9990 +3821 3902 0.6620 +3821 3903 0.7010 +3821 3916 0.7160 +3821 3965 0.6380 +3821 4277 0.9410 +3821 4684 0.8030 +3821 4818 0.4520 +3821 5133 0.7430 +3821 5551 0.7850 +3821 5777 0.9910 +3821 5781 0.9540 +3821 5788 0.6080 +3821 5817 0.8960 +3821 5819 0.8090 +3821 6125 0.8360 +3821 6348 0.4720 +3821 6351 0.4980 +3821 6375 0.4310 +3821 6402 0.6140 +3821 6693 0.4130 +3821 6850 0.4250 +3821 7124 0.5990 +3821 7293 0.6200 +3821 7305 0.7940 +3821 7535 0.4250 +3821 7704 0.4010 +3821 7852 0.4190 +3821 8302 0.9200 +3821 8320 0.6200 +3821 8743 0.4410 +3821 8744 0.4450 +3821 9034 0.4040 +3821 9436 0.8400 +3821 9437 0.8860 +3821 10225 0.7780 +3821 10288 0.5040 +3821 10578 0.5840 +3821 10580 0.5070 +3821 10663 0.5510 +3821 10666 0.8730 +3821 10859 0.9010 +3821 10870 0.6310 +3821 11126 0.6660 +3821 11314 0.5770 +3821 22914 0.8470 +3821 23111 0.4710 +3821 27036 0.6010 +3821 27087 0.7730 +3821 29121 0.8120 +3821 29126 0.8880 +3821 29851 0.5430 +3821 30009 0.6210 +3821 50616 0.4270 +3821 50943 0.6000 +3821 51348 0.5620 +3821 51744 0.6840 +3821 57823 0.4790 +3821 79037 0.5240 +3821 79168 0.4900 +3821 79465 0.5870 +3821 80328 0.6060 +3821 80329 0.6440 +3821 80381 0.4220 +3821 84662 0.5170 +3821 84868 0.7110 +3821 85451 0.4460 +3821 114836 0.6070 +3821 115653 0.9460 +3821 117157 0.4570 +3821 131450 0.4650 +3821 135250 0.4880 +3821 146722 0.4990 +3821 151888 0.4390 +3821 201633 0.8260 +3821 259197 0.9030 +3821 374383 0.7340 +3821 100507436 0.6210 +3822 3823 0.9990 +3822 3824 0.9990 +3822 3902 0.5370 +3822 3916 0.6200 +3822 3937 0.5930 +3822 4277 0.7440 +3822 4684 0.7450 +3822 4818 0.4820 +3822 5290 0.5020 +3822 5291 0.5020 +3822 5295 0.5110 +3822 5296 0.4990 +3822 5335 0.5210 +3822 5336 0.5640 +3822 5551 0.7400 +3822 5788 0.4230 +3822 5817 0.7050 +3822 5819 0.6990 +3822 5879 0.5240 +3822 6125 0.6140 +3822 6351 0.4240 +3822 6375 0.4670 +3822 6402 0.5190 +3822 6464 0.5090 +3822 6654 0.5270 +3822 6846 0.5410 +3822 6850 0.7360 +3822 7124 0.4710 +3822 7305 0.9990 +3822 7410 0.5200 +3822 7535 0.4510 +3822 7704 0.4590 +3822 8302 0.9770 +3822 8320 0.5580 +3822 9402 0.5490 +3822 9436 0.7910 +3822 9437 0.8350 +3822 9976 0.5000 +3822 10225 0.5170 +3822 10451 0.5340 +3822 10578 0.6780 +3822 10663 0.5350 +3822 10666 0.8670 +3822 10859 0.7660 +3822 10870 0.7640 +3822 11126 0.5660 +3822 22914 0.9310 +3822 27036 0.5810 +3822 27040 0.5430 +3822 27087 0.8070 +3822 29851 0.4110 +3822 30009 0.5220 +3822 50943 0.4730 +3822 51266 0.4120 +3822 51348 0.5420 +3822 51744 0.6090 +3822 54209 0.4700 +3822 57823 0.4550 +3822 79465 0.4910 +3822 80328 0.4970 +3822 80329 0.5480 +3822 84662 0.4030 +3822 84868 0.5160 +3822 114836 0.5900 +3822 115653 0.9390 +3822 117157 0.6440 +3822 201633 0.6240 +3822 259197 0.8890 +3822 374383 0.7110 +3823 3824 0.9950 +3823 4818 0.4470 +3823 5551 0.5100 +3823 5781 0.4060 +3823 6375 0.4090 +3823 6846 0.4680 +3823 7305 0.8580 +3823 8302 0.8590 +3823 9436 0.4800 +3823 9437 0.5850 +3823 10578 0.6180 +3823 10666 0.4270 +3823 10859 0.4280 +3823 10870 0.4990 +3823 11126 0.4940 +3823 22914 0.8780 +3823 51348 0.7270 +3823 83888 0.4200 +3823 259197 0.5370 +3824 3902 0.6420 +3824 3903 0.4080 +3824 3916 0.6100 +3824 3937 0.6450 +3824 4068 0.7430 +3824 4277 0.8790 +3824 4684 0.8130 +3824 4818 0.9070 +3824 5133 0.6780 +3824 5290 0.5150 +3824 5291 0.5020 +3824 5295 0.5330 +3824 5296 0.5060 +3824 5335 0.5720 +3824 5336 0.6000 +3824 5551 0.9510 +3824 5597 0.5090 +3824 5605 0.4220 +3824 5729 0.5150 +3824 5777 0.9220 +3824 5781 0.9370 +3824 5788 0.7410 +3824 5817 0.7650 +3824 5819 0.7480 +3824 5879 0.5330 +3824 6125 0.8990 +3824 6348 0.4500 +3824 6351 0.5050 +3824 6375 0.5960 +3824 6402 0.7030 +3824 6464 0.5120 +3824 6504 0.4490 +3824 6654 0.5260 +3824 6693 0.4100 +3824 6775 0.4630 +3824 6846 0.5270 +3824 6850 0.7050 +3824 6993 0.4630 +3824 7124 0.5820 +3824 7305 0.9990 +3824 7409 0.6490 +3824 7410 0.5260 +3824 7535 0.5270 +3824 7704 0.4030 +3824 7957 0.4280 +3824 8302 0.9540 +3824 8320 0.7560 +3824 8530 0.4710 +3824 8743 0.4160 +3824 8807 0.4180 +3824 8809 0.4790 +3824 9034 0.4030 +3824 9289 0.5350 +3824 9402 0.5590 +3824 9436 0.8230 +3824 9437 0.9070 +3824 9450 0.4130 +3824 10219 0.6080 +3824 10225 0.6720 +3824 10288 0.5210 +3824 10451 0.5480 +3824 10578 0.9040 +3824 10580 0.4720 +3824 10663 0.6440 +3824 10666 0.8980 +3824 10859 0.8620 +3824 10870 0.8010 +3824 11126 0.8390 +3824 11251 0.5220 +3824 11314 0.5940 +3824 22914 0.9380 +3824 23111 0.4460 +3824 27036 0.5280 +3824 27040 0.5700 +3824 27087 0.7600 +3824 27294 0.5760 +3824 29121 0.6640 +3824 29126 0.7800 +3824 29851 0.4480 +3824 30009 0.7720 +3824 50616 0.4730 +3824 50943 0.4990 +3824 51348 0.8150 +3824 51744 0.8540 +3824 53637 0.7140 +3824 54209 0.5060 +3824 56253 0.6370 +3824 57823 0.5420 +3824 64167 0.4370 +3824 79037 0.4240 +3824 79168 0.4710 +3824 79465 0.6760 +3824 80328 0.8280 +3824 80329 0.7500 +3824 80381 0.5500 +3824 83888 0.6590 +3824 84662 0.5160 +3824 84868 0.6340 +3824 85451 0.4620 +3824 114836 0.6750 +3824 115653 0.9690 +3824 117157 0.6770 +3824 135250 0.4410 +3824 146722 0.4640 +3824 149628 0.5090 +3824 154075 0.6330 +3824 170482 0.4400 +3824 201633 0.6950 +3824 257101 0.6540 +3824 259197 0.8760 +3824 374383 0.7570 +3824 378884 0.4240 +3824 100507436 0.6300 +3827 3848 0.9270 +3827 4151 0.4090 +3827 4153 0.4810 +3827 4224 0.6360 +3827 4225 0.5010 +3827 4254 0.4470 +3827 4295 0.5560 +3827 4311 0.7410 +3827 4312 0.6470 +3827 4318 0.4740 +3827 4609 0.4590 +3827 4695 0.5010 +3827 4698 0.5020 +3827 4700 0.5030 +3827 4704 0.4650 +3827 4706 0.4990 +3827 4723 0.5160 +3827 4724 0.5030 +3827 4726 0.5120 +3827 4728 0.5260 +3827 4729 0.5020 +3827 4803 0.8460 +3827 4804 0.4180 +3827 4828 0.7350 +3827 4829 0.6100 +3827 4842 0.5610 +3827 4843 0.4240 +3827 4846 0.8320 +3827 4852 0.7600 +3827 4878 0.6800 +3827 4879 0.4290 +3827 4880 0.5150 +3827 4886 0.5540 +3827 4887 0.5510 +3827 4889 0.5310 +3827 4908 0.4590 +3827 4909 0.4820 +3827 4914 0.5950 +3827 4915 0.4770 +3827 4922 0.9490 +3827 4923 0.5740 +3827 4985 0.9390 +3827 4988 0.6930 +3827 5004 0.4970 +3827 5005 0.4480 +3827 5020 0.8240 +3827 5024 0.5300 +3827 5029 0.4040 +3827 5031 0.5200 +3827 5049 0.4040 +3827 5054 0.5780 +3827 5104 0.4040 +3827 5173 0.8960 +3827 5176 0.4750 +3827 5179 0.7230 +3827 5196 0.7280 +3827 5197 0.4870 +3827 5265 0.9430 +3827 5267 0.4980 +3827 5320 0.4390 +3827 5327 0.6740 +3827 5328 0.6180 +3827 5329 0.6810 +3827 5330 0.5690 +3827 5331 0.6190 +3827 5340 0.8980 +3827 5345 0.6690 +3827 5367 0.6380 +3827 5368 0.6540 +3827 5443 0.8680 +3827 5444 0.5570 +3827 5465 0.5000 +3827 5473 0.5730 +3827 5539 0.5330 +3827 5540 0.5020 +3827 5547 0.8580 +3827 5550 0.5950 +3827 5566 0.5370 +3827 5567 0.5340 +3827 5568 0.5430 +3827 5581 0.4400 +3827 5592 0.6030 +3827 5595 0.4520 +3827 5624 0.4660 +3827 5648 0.5060 +3827 5653 0.4020 +3827 5660 0.5160 +3827 5697 0.5960 +3827 5733 0.4140 +3827 5743 0.6980 +3827 5768 0.4490 +3827 5788 0.4470 +3827 5831 0.4640 +3827 5972 0.9500 +3827 5996 0.5480 +3827 5998 0.5080 +3827 5999 0.5750 +3827 6003 0.5500 +3827 6004 0.5450 +3827 6288 0.5540 +3827 6336 0.4660 +3827 6347 0.4810 +3827 6368 0.4600 +3827 6387 0.4700 +3827 6401 0.4410 +3827 6402 0.5880 +3827 6403 0.6590 +3827 6550 0.4370 +3827 6647 0.4780 +3827 6696 0.5210 +3827 6714 0.7190 +3827 6750 0.8330 +3827 6751 0.5030 +3827 6752 0.5400 +3827 6753 0.5140 +3827 6754 0.5180 +3827 6755 0.5450 +3827 6850 0.4760 +3827 6863 0.9910 +3827 6868 0.4330 +3827 6869 0.5570 +3827 6999 0.5910 +3827 7018 0.6950 +3827 7035 0.4520 +3827 7037 0.5010 +3827 7040 0.5570 +3827 7041 0.5000 +3827 7056 0.4390 +3827 7057 0.5220 +3827 7064 0.9880 +3827 7076 0.5690 +3827 7099 0.4040 +3827 7113 0.4660 +3827 7124 0.7690 +3827 7167 0.5600 +3827 7200 0.5980 +3827 7201 0.5210 +3827 7204 0.5250 +3827 7276 0.6560 +3827 7369 0.4910 +3827 7384 0.4490 +3827 7386 0.5350 +3827 7412 0.4490 +3827 7432 0.5730 +3827 7442 0.9180 +3827 7448 0.8030 +3827 7450 0.7380 +3827 7498 0.4490 +3827 7511 0.8180 +3827 7512 0.8060 +3827 7837 0.4030 +3827 7852 0.4710 +3827 8170 0.5590 +3827 8484 0.4990 +3827 8490 0.5730 +3827 8564 0.4070 +3827 8620 0.6680 +3827 8802 0.4120 +3827 8811 0.5430 +3827 8858 0.4360 +3827 8862 0.8540 +3827 8928 0.4180 +3827 8942 0.5850 +3827 8989 0.9280 +3827 8997 0.5060 +3827 9002 0.5660 +3827 9132 0.4310 +3827 9172 0.5600 +3827 9283 0.5200 +3827 9311 0.5200 +3827 9512 0.4490 +3827 9622 0.9970 +3827 9635 0.4180 +3827 9718 0.5850 +3827 9737 0.4570 +3827 9823 0.4660 +3827 10206 0.6160 +3827 10287 0.5520 +3827 10316 0.5360 +3827 10335 0.5870 +3827 10342 0.4300 +3827 10653 0.4240 +3827 10681 0.5390 +3827 10747 0.5860 +3827 10800 0.6000 +3827 10841 0.4420 +3827 10874 0.4940 +3827 10887 0.5290 +3827 10911 0.5500 +3827 11076 0.4470 +3827 11104 0.4160 +3827 11251 0.4420 +3827 23203 0.4850 +3827 23236 0.6250 +3827 23620 0.5050 +3827 26509 0.4080 +3827 26575 0.5480 +3827 51056 0.6000 +3827 51083 0.7950 +3827 51094 0.4260 +3827 51156 0.4320 +3827 51393 0.4250 +3827 51738 0.6950 +3827 51752 0.4810 +3827 51764 0.5170 +3827 51806 0.5950 +3827 54101 0.4420 +3827 54205 0.5060 +3827 54331 0.5180 +3827 54811 0.4380 +3827 54826 0.4220 +3827 55937 0.4140 +3827 55967 0.5030 +3827 55970 0.5170 +3827 56923 0.5140 +3827 56975 0.6360 +3827 57105 0.5330 +3827 57113 0.4010 +3827 57393 0.5450 +3827 57486 0.7120 +3827 58503 0.5920 +3827 59272 0.9480 +3827 59341 0.5850 +3827 59345 0.5560 +3827 60675 0.5100 +3827 63940 0.4160 +3827 64407 0.5420 +3827 79054 0.7980 +3827 79258 0.6790 +3827 79602 0.4210 +3827 79728 0.4870 +3827 84432 0.5000 +3827 84539 0.4990 +3827 84634 0.5420 +3827 91860 0.5990 +3827 94235 0.5170 +3827 115557 0.5260 +3827 116511 0.4230 +3827 116512 0.4260 +3827 128674 0.4990 +3827 129521 0.4280 +3827 137902 0.4030 +3827 162514 0.4270 +3827 163688 0.5950 +3827 256933 0.4990 +3827 283869 0.4990 +3827 285220 0.4170 +3827 339403 0.4970 +3827 347148 0.5360 +3827 387129 0.6350 +3827 431704 0.5520 +3827 440387 0.4950 +3827 594857 0.4450 +3831 3832 0.6610 +3831 3833 0.6630 +3831 3834 0.6080 +3831 3835 0.6010 +3831 3895 0.8230 +3831 4008 0.5790 +3831 4035 0.4040 +3831 4089 0.5130 +3831 4137 0.5290 +3831 4294 0.5160 +3831 4478 0.5380 +3831 4610 0.6100 +3831 4647 0.4280 +3831 4741 0.9200 +3831 4744 0.9230 +3831 4747 0.9200 +3831 4763 0.4050 +3831 4869 0.6030 +3831 5048 0.5020 +3831 5295 0.5040 +3831 5335 0.5100 +3831 5337 0.4390 +3831 5495 0.5940 +3831 5573 0.6440 +3831 5599 0.9220 +3831 5601 0.9120 +3831 5663 0.6000 +3831 5664 0.4170 +3831 5774 0.4360 +3831 5879 0.5400 +3831 5903 0.8280 +3831 6098 0.5500 +3831 6238 0.6060 +3831 6252 0.4220 +3831 6421 0.7010 +3831 6464 0.5400 +3831 6500 0.4440 +3831 6622 0.9210 +3831 6774 0.5420 +3831 6801 0.7800 +3831 6993 0.4240 +3831 7046 0.4320 +3831 7170 0.6440 +3831 7171 0.6340 +3831 7175 0.6000 +3831 7205 0.4410 +3831 7414 0.5150 +3831 7533 0.4560 +3831 7534 0.4120 +3831 7804 0.4660 +3831 8447 0.5610 +3831 8496 0.6410 +3831 8729 0.5930 +3831 8766 0.5570 +3831 8878 0.5980 +3831 8936 0.4660 +3831 9001 0.8820 +3831 9043 0.8520 +3831 9053 0.4270 +3831 9183 0.5450 +3831 9371 0.7200 +3831 9451 0.5430 +3831 9479 0.9900 +3831 9493 0.6030 +3831 9513 0.5260 +3831 9520 0.4650 +3831 9578 0.4070 +3831 9585 0.5410 +3831 9638 0.4920 +3831 9648 0.5960 +3831 9696 0.5440 +3831 9746 0.4190 +3831 9751 0.4700 +3831 9928 0.6000 +3831 10112 0.5920 +3831 10121 0.6740 +3831 10313 0.4300 +3831 10342 0.7990 +3831 10383 0.4930 +3831 10519 0.5580 +3831 10540 0.7180 +3831 10671 0.5070 +3831 10749 0.6850 +3831 10817 0.4990 +3831 10818 0.5040 +3831 10890 0.6380 +3831 10971 0.4860 +3831 11004 0.5930 +3831 11127 0.7830 +3831 11133 0.4350 +3831 11258 0.5230 +3831 22872 0.6670 +3831 22883 0.9810 +3831 22906 0.5330 +3831 22920 0.8630 +3831 23046 0.6240 +3831 23095 0.7440 +3831 23162 0.9910 +3831 23168 0.4230 +3831 23207 0.8650 +3831 23224 0.5580 +3831 23303 0.6410 +3831 23345 0.5350 +3831 23385 0.4610 +3831 23542 0.8480 +3831 23557 0.7040 +3831 23621 0.5250 +3831 23623 0.5220 +3831 24137 0.5200 +3831 25825 0.4590 +3831 26153 0.6210 +3831 26160 0.5250 +3831 26286 0.5130 +3831 26747 0.4330 +3831 27185 0.4700 +3831 27436 0.8510 +3831 28964 0.4210 +3831 29127 0.4300 +3831 29882 0.4250 +3831 51107 0.4390 +3831 51164 0.5160 +3831 51382 0.4020 +3831 51582 0.7340 +3831 51594 0.5070 +3831 53335 0.5940 +3831 53407 0.5060 +3831 54629 0.6440 +3831 54820 0.6410 +3831 54932 0.4330 +3831 55083 0.6040 +3831 55288 0.4710 +3831 55582 0.5680 +3831 55605 0.7120 +3831 55614 0.6480 +3831 55638 0.5820 +3831 55738 0.5240 +3831 55850 0.5370 +3831 55851 0.4550 +3831 55860 0.6170 +3831 56992 0.6240 +3831 57448 0.7060 +3831 57498 0.5080 +3831 57511 0.4220 +3831 57576 0.7300 +3831 60561 0.5070 +3831 63971 0.6580 +3831 64084 0.6960 +3831 64837 0.9920 +3831 66008 0.8530 +3831 79443 0.5810 +3831 80304 0.6620 +3831 81565 0.6390 +3831 81930 0.6330 +3831 84334 0.5080 +3831 84364 0.5100 +3831 84516 0.5170 +3831 84643 0.6410 +3831 85300 0.8200 +3831 89796 0.4660 +3831 89953 0.9920 +3831 90990 0.6850 +3831 93661 0.5170 +3831 117286 0.5210 +3831 123169 0.4820 +3831 124602 0.5970 +3831 127829 0.4710 +3831 146909 0.5680 +3831 147700 0.9860 +3831 163183 0.8020 +3831 163590 0.4050 +3831 221079 0.7070 +3831 221458 0.5910 +3831 283106 0.6740 +3831 285643 0.4290 +3831 374654 0.6010 +3831 100532724 0.4110 +3832 3833 0.9630 +3832 3834 0.9340 +3832 3835 0.8970 +3832 3838 0.5850 +3832 3875 0.4800 +3832 3925 0.4600 +3832 4001 0.5210 +3832 4085 0.9730 +3832 4171 0.8480 +3832 4172 0.8460 +3832 4173 0.8740 +3832 4174 0.8370 +3832 4175 0.8460 +3832 4176 0.7450 +3832 4288 0.9310 +3832 4436 0.4240 +3832 4605 0.5480 +3832 4609 0.4020 +3832 4678 0.4570 +3832 4693 0.4860 +3832 4750 0.4050 +3832 4751 0.9590 +3832 4869 0.4720 +3832 4926 0.7780 +3832 4998 0.5830 +3832 5048 0.5800 +3832 5111 0.5920 +3832 5116 0.6120 +3832 5347 0.9190 +3832 5422 0.6700 +3832 5426 0.4050 +3832 5427 0.5660 +3832 5501 0.4040 +3832 5557 0.5600 +3832 5558 0.4090 +3832 5728 0.4820 +3832 5888 0.6950 +3832 5983 0.6250 +3832 5984 0.5600 +3832 6240 0.7880 +3832 6241 0.9470 +3832 6249 0.4590 +3832 6491 0.8580 +3832 6502 0.4860 +3832 6599 0.4450 +3832 6790 0.9720 +3832 6795 0.7840 +3832 6907 0.4340 +3832 6928 0.4330 +3832 6934 0.6230 +3832 7083 0.7610 +3832 7103 0.4130 +3832 7112 0.5750 +3832 7153 0.9750 +3832 7155 0.4740 +3832 7157 0.5140 +3832 7272 0.9840 +3832 7277 0.5920 +3832 7278 0.5460 +3832 7280 0.6120 +3832 7283 0.4900 +3832 7298 0.7260 +3832 7443 0.4750 +3832 7465 0.4410 +3832 7468 0.5400 +3832 7516 0.4370 +3832 7846 0.6330 +3832 8208 0.4410 +3832 8241 0.4990 +3832 8290 0.4770 +3832 8317 0.5800 +3832 8318 0.7800 +3832 8322 0.4130 +3832 8340 0.5800 +3832 8341 0.5680 +3832 8342 0.5810 +3832 8345 0.5820 +3832 8347 0.5580 +3832 8348 0.5810 +3832 8349 0.4240 +3832 8356 0.5590 +3832 8379 0.5990 +3832 8438 0.6570 +3832 8467 0.4130 +3832 8697 0.4080 +3832 8729 0.5680 +3832 8900 0.7030 +3832 8914 0.5580 +3832 8970 0.5880 +3832 9055 0.9720 +3832 9088 0.4410 +3832 9126 0.4330 +3832 9133 0.9440 +3832 9134 0.5330 +3832 9156 0.7720 +3832 9183 0.6630 +3832 9184 0.6510 +3832 9212 0.9640 +3832 9232 0.8590 +3832 9319 0.7890 +3832 9371 0.7780 +3832 9493 0.9940 +3832 9585 0.8950 +3832 9618 0.7010 +3832 9696 0.5890 +3832 9700 0.9470 +3832 9735 0.9150 +3832 9768 0.8570 +3832 9787 0.9970 +3832 9793 0.8720 +3832 9810 0.4380 +3832 9824 0.8210 +3832 9833 0.9410 +3832 9837 0.6580 +3832 9918 0.8600 +3832 9928 0.9300 +3832 10024 0.5980 +3832 10036 0.5070 +3832 10051 0.9270 +3832 10112 0.9800 +3832 10121 0.6080 +3832 10198 0.4040 +3832 10376 0.9740 +3832 10381 0.5870 +3832 10382 0.5360 +3832 10383 0.7520 +3832 10403 0.9720 +3832 10426 0.4140 +3832 10460 0.8510 +3832 10540 0.7650 +3832 10579 0.4150 +3832 10592 0.9670 +3832 10615 0.9540 +3832 10635 0.8640 +3832 10642 0.5900 +3832 10644 0.5780 +3832 10671 0.5330 +3832 10721 0.5170 +3832 10733 0.9120 +3832 10744 0.5440 +3832 10749 0.6230 +3832 10769 0.5810 +3832 10783 0.5640 +3832 10844 0.4460 +3832 10926 0.4530 +3832 11004 0.9680 +3832 11065 0.9160 +3832 11073 0.4160 +3832 11113 0.6250 +3832 11127 0.7760 +3832 11130 0.9280 +3832 11169 0.8530 +3832 11200 0.6380 +3832 11258 0.5000 +3832 11339 0.8730 +3832 22919 0.4690 +3832 22920 0.7910 +3832 22924 0.6050 +3832 22974 0.9650 +3832 22981 0.4040 +3832 23046 0.7030 +3832 23095 0.6280 +3832 23303 0.5980 +3832 23310 0.5130 +3832 23332 0.4340 +3832 23397 0.9080 +3832 23554 0.6050 +3832 23594 0.4800 +3832 24137 0.9520 +3832 25821 0.4290 +3832 25886 0.4370 +3832 25926 0.4170 +3832 26153 0.6470 +3832 26271 0.7840 +3832 26286 0.5000 +3832 26586 0.8360 +3832 27152 0.4630 +3832 27185 0.4110 +3832 29028 0.6970 +3832 29089 0.5190 +3832 29127 0.9780 +3832 29128 0.7080 +3832 29980 0.4320 +3832 49856 0.4660 +3832 50484 0.6300 +3832 51053 0.6310 +3832 51164 0.5210 +3832 51175 0.5570 +3832 51203 0.9740 +3832 51343 0.5540 +3832 51512 0.6030 +3832 51514 0.8500 +3832 51594 0.5000 +3832 51659 0.5850 +3832 51750 0.4470 +3832 51807 0.5970 +3832 53407 0.5030 +3832 54069 0.5020 +3832 54145 0.5960 +3832 54443 0.9470 +3832 54478 0.5700 +3832 54801 0.6150 +3832 54820 0.6500 +3832 54821 0.6500 +3832 54892 0.8480 +3832 54901 0.6380 +3832 54908 0.6790 +3832 54962 0.5580 +3832 55010 0.6860 +3832 55055 0.8570 +3832 55083 0.6510 +3832 55125 0.5010 +3832 55143 0.9640 +3832 55165 0.9970 +3832 55215 0.8560 +3832 55247 0.5640 +3832 55255 0.4420 +3832 55320 0.7700 +3832 55355 0.9300 +3832 55388 0.8980 +3832 55582 0.6970 +3832 55605 0.7570 +3832 55614 0.5690 +3832 55632 0.4600 +3832 55635 0.8390 +3832 55723 0.6750 +3832 55738 0.5030 +3832 55789 0.8420 +3832 55835 0.6390 +3832 55839 0.7960 +3832 55850 0.5000 +3832 55860 0.6740 +3832 56254 0.4370 +3832 56992 0.9830 +3832 57082 0.7590 +3832 57165 0.4070 +3832 57405 0.7960 +3832 57576 0.8740 +3832 57650 0.6580 +3832 57829 0.4590 +3832 60529 0.6130 +3832 60561 0.5160 +3832 63967 0.6830 +3832 63971 0.5750 +3832 63979 0.4330 +3832 64105 0.6560 +3832 64151 0.9750 +3832 64785 0.4430 +3832 64837 0.7730 +3832 64946 0.6000 +3832 79019 0.7990 +3832 79068 0.4850 +3832 79075 0.4960 +3832 79172 0.4360 +3832 79682 0.6470 +3832 79733 0.8700 +3832 79797 0.6320 +3832 79801 0.8630 +3832 79841 0.4610 +3832 79861 0.5700 +3832 79866 0.5430 +3832 79915 0.6910 +3832 79935 0.4510 +3832 79968 0.5860 +3832 79980 0.4600 +3832 80086 0.5460 +3832 80152 0.5450 +3832 80306 0.4370 +3832 81027 0.6130 +3832 81565 0.6530 +3832 81610 0.6860 +3832 81620 0.7950 +3832 81624 0.5250 +3832 81930 0.9700 +3832 83461 0.9220 +3832 83473 0.5300 +3832 83540 0.9750 +3832 83879 0.5290 +3832 83903 0.5210 +3832 83990 0.6140 +3832 84057 0.5810 +3832 84364 0.5040 +3832 84515 0.4900 +3832 84516 0.5040 +3832 84617 0.5680 +3832 84643 0.7340 +3832 84722 0.4220 +3832 84790 0.6250 +3832 84823 0.4780 +3832 84930 0.7760 +3832 85236 0.6410 +3832 85378 0.5370 +3832 85417 0.4830 +3832 89839 0.6640 +3832 89953 0.4980 +3832 90381 0.6020 +3832 90417 0.6250 +3832 90990 0.9230 +3832 91754 0.5160 +3832 93661 0.4990 +3832 112714 0.5700 +3832 113130 0.8440 +3832 113457 0.5700 +3832 114799 0.4080 +3832 114803 0.6270 +3832 117286 0.5210 +3832 121441 0.5860 +3832 124602 0.7420 +3832 126520 0.5500 +3832 128239 0.6580 +3832 128312 0.5810 +3832 140609 0.4220 +3832 144455 0.4610 +3832 146909 0.8710 +3832 147700 0.5230 +3832 147841 0.5530 +3832 149041 0.5100 +3832 150468 0.8060 +3832 151246 0.6340 +3832 151648 0.8410 +3832 157313 0.9040 +3832 157570 0.6820 +3832 158983 0.5740 +3832 163786 0.5170 +3832 166979 0.7230 +3832 169026 0.7900 +3832 203068 0.6670 +3832 220134 0.8370 +3832 221150 0.6750 +3832 221458 0.6210 +3832 255626 0.5580 +3832 259266 0.9890 +3832 260334 0.5220 +3832 283431 0.4080 +3832 285643 0.7530 +3832 286436 0.5750 +3832 347240 0.4080 +3832 347688 0.5600 +3832 347733 0.9740 +3832 348654 0.4100 +3832 374654 0.7150 +3832 387103 0.6390 +3832 440093 0.4770 +3832 440686 0.4770 +3832 440689 0.5830 +3832 653604 0.4770 +3832 728833 0.4050 +3832 114483833 0.5880 +3833 3834 0.5910 +3833 3835 0.8810 +3833 3838 0.7310 +3833 3842 0.4480 +3833 4001 0.4770 +3833 4085 0.7790 +3833 4171 0.5020 +3833 4172 0.6290 +3833 4173 0.6140 +3833 4174 0.4810 +3833 4175 0.5480 +3833 4176 0.4290 +3833 4288 0.7950 +3833 4605 0.7310 +3833 4751 0.8060 +3833 4926 0.7490 +3833 4998 0.4030 +3833 5116 0.5210 +3833 5347 0.7270 +3833 5861 0.4990 +3833 5863 0.8610 +3833 6015 0.7110 +3833 6222 0.8430 +3833 6241 0.6450 +3833 6257 0.7460 +3833 6790 0.7180 +3833 6892 0.7510 +3833 6941 0.4680 +3833 7083 0.4670 +3833 7153 0.8590 +3833 7272 0.7310 +3833 7280 0.6690 +3833 7283 0.5310 +3833 7298 0.4580 +3833 7922 0.8620 +3833 7923 0.8200 +3833 8208 0.4200 +3833 8318 0.7070 +3833 8348 0.4450 +3833 8350 0.4630 +3833 8379 0.4320 +3833 8438 0.6150 +3833 8729 0.5060 +3833 8914 0.4430 +3833 9055 0.7470 +3833 9088 0.6490 +3833 9133 0.7860 +3833 9156 0.5160 +3833 9183 0.6190 +3833 9184 0.4020 +3833 9212 0.9060 +3833 9232 0.7010 +3833 9277 0.4280 +3833 9319 0.5340 +3833 9371 0.6330 +3833 9493 0.9130 +3833 9585 0.7430 +3833 9700 0.8120 +3833 9735 0.4830 +3833 9768 0.5820 +3833 9787 0.9150 +3833 9793 0.7970 +3833 9824 0.4960 +3833 9833 0.6850 +3833 9918 0.4550 +3833 9928 0.7870 +3833 9972 0.6600 +3833 10024 0.7890 +3833 10112 0.9410 +3833 10403 0.6610 +3833 10460 0.6750 +3833 10471 0.8290 +3833 10535 0.4080 +3833 10540 0.5910 +3833 10615 0.8660 +3833 10635 0.4630 +3833 10733 0.6820 +3833 10749 0.6220 +3833 10762 0.5780 +3833 10982 0.4150 +3833 11004 0.9320 +3833 11065 0.8390 +3833 11127 0.6270 +3833 11130 0.5570 +3833 11339 0.4810 +3833 22919 0.5110 +3833 22920 0.6740 +3833 22924 0.5460 +3833 22974 0.8260 +3833 23046 0.6740 +3833 23095 0.5970 +3833 23303 0.6130 +3833 23397 0.6790 +3833 23636 0.5240 +3833 24137 0.7760 +3833 26153 0.6250 +3833 26286 0.5060 +3833 26586 0.4070 +3833 27241 0.4020 +3833 29028 0.4750 +3833 29089 0.4940 +3833 29127 0.8010 +3833 29128 0.5460 +3833 49856 0.5030 +3833 51203 0.7860 +3833 51512 0.6950 +3833 51514 0.4650 +3833 51594 0.5000 +3833 51659 0.5520 +3833 53407 0.5320 +3833 54443 0.6710 +3833 54478 0.5890 +3833 54820 0.5720 +3833 54821 0.4760 +3833 54892 0.4240 +3833 55063 0.6130 +3833 55083 0.6350 +3833 55143 0.8440 +3833 55165 0.6830 +3833 55212 0.5490 +3833 55215 0.4390 +3833 55355 0.8450 +3833 55388 0.5320 +3833 55582 0.6740 +3833 55605 0.6450 +3833 55614 0.5910 +3833 55635 0.5130 +3833 55723 0.5870 +3833 55738 0.5090 +3833 55755 0.8550 +3833 55789 0.4270 +3833 55835 0.4310 +3833 55839 0.5200 +3833 55850 0.5040 +3833 56992 0.8660 +3833 57405 0.4770 +3833 57576 0.7060 +3833 60561 0.5130 +3833 63922 0.4220 +3833 63971 0.5980 +3833 64105 0.4360 +3833 64151 0.8410 +3833 64837 0.6590 +3833 79019 0.6650 +3833 79733 0.6080 +3833 79801 0.4630 +3833 80013 0.4370 +3833 80152 0.5170 +3833 81565 0.5570 +3833 81610 0.5190 +3833 81620 0.6940 +3833 81930 0.9020 +3833 83461 0.8300 +3833 83540 0.7850 +3833 83903 0.4230 +3833 84364 0.5120 +3833 84617 0.4100 +3833 84643 0.6570 +3833 84790 0.4010 +3833 89953 0.5040 +3833 90381 0.4470 +3833 90990 0.6370 +3833 113130 0.7860 +3833 117178 0.5150 +3833 117286 0.4110 +3833 124602 0.7100 +3833 128239 0.4500 +3833 146909 0.8820 +3833 147700 0.5600 +3833 147841 0.5720 +3833 150468 0.8390 +3833 151648 0.5690 +3833 152098 0.6130 +3833 157313 0.6340 +3833 157570 0.4120 +3833 166979 0.6910 +3833 203068 0.7030 +3833 220134 0.5450 +3833 221150 0.5620 +3833 221458 0.5910 +3833 259266 0.8450 +3833 285643 0.5640 +3833 374654 0.6980 +3833 387103 0.4630 +3833 401250 0.4090 +3833 100532724 0.4450 +3834 3835 0.6990 +3834 4085 0.5540 +3834 6991 0.5580 +3834 8632 0.4220 +3834 8729 0.4990 +3834 9183 0.5850 +3834 9371 0.6000 +3834 9493 0.7120 +3834 9585 0.6810 +3834 9787 0.5290 +3834 9793 0.4640 +3834 9859 0.4990 +3834 9928 0.6060 +3834 10112 0.7520 +3834 10216 0.4100 +3834 10749 0.5940 +3834 10982 0.4140 +3834 11004 0.6110 +3834 11127 0.6040 +3834 22919 0.4140 +3834 22920 0.6290 +3834 22924 0.4140 +3834 23046 0.6690 +3834 23095 0.5960 +3834 23303 0.6000 +3834 24137 0.5380 +3834 26153 0.6060 +3834 26286 0.5050 +3834 27241 0.4020 +3834 29127 0.5560 +3834 51594 0.4990 +3834 53407 0.5000 +3834 54820 0.5630 +3834 55063 0.6220 +3834 55083 0.6020 +3834 55212 0.5290 +3834 55274 0.4830 +3834 55582 0.6690 +3834 55605 0.6510 +3834 55614 0.5790 +3834 55738 0.4990 +3834 55850 0.4990 +3834 56992 0.6370 +3834 57576 0.6720 +3834 60561 0.5240 +3834 63971 0.5900 +3834 64094 0.4690 +3834 64837 0.6080 +3834 79981 0.6320 +3834 81565 0.5470 +3834 81930 0.7800 +3834 84364 0.5050 +3834 84643 0.6200 +3834 89953 0.4890 +3834 90990 0.6040 +3834 113402 0.4180 +3834 116844 0.4020 +3834 124602 0.6910 +3834 146909 0.7240 +3834 147700 0.4910 +3834 152098 0.6150 +3834 168002 0.5610 +3834 170692 0.5110 +3834 221458 0.6010 +3834 253769 0.4620 +3834 259266 0.4030 +3834 284403 0.4610 +3834 285643 0.5460 +3834 337974 0.4330 +3834 374654 0.6690 +3834 100532724 0.4450 +3834 110806296 0.4110 +3835 3838 0.4790 +3835 3839 0.5680 +3835 3840 0.5850 +3835 3933 0.7800 +3835 4085 0.6410 +3835 4150 0.8880 +3835 4171 0.5320 +3835 4172 0.4850 +3835 4173 0.4400 +3835 4174 0.6530 +3835 4176 0.4590 +3835 4288 0.4330 +3835 4926 0.4530 +3835 5048 0.4720 +3835 5347 0.8600 +3835 5531 0.6340 +3835 5888 0.4060 +3835 5985 0.4230 +3835 6241 0.4570 +3835 6790 0.8020 +3835 6911 0.4230 +3835 7153 0.4180 +3835 7272 0.5360 +3835 8208 0.4120 +3835 8318 0.5490 +3835 8448 0.6080 +3835 8479 0.7070 +3835 8729 0.5040 +3835 8900 0.4060 +3835 9055 0.8710 +3835 9133 0.5640 +3835 9183 0.6080 +3835 9212 0.6660 +3835 9232 0.5070 +3835 9344 0.5420 +3835 9371 0.5940 +3835 9493 0.7450 +3835 9500 0.4220 +3835 9585 0.7480 +3835 9700 0.5170 +3835 9735 0.5820 +3835 9768 0.4230 +3835 9787 0.5450 +3835 9793 0.6570 +3835 9833 0.5500 +3835 9918 0.5480 +3835 9928 0.7410 +3835 10024 0.4160 +3835 10036 0.4280 +3835 10051 0.5770 +3835 10112 0.8350 +3835 10121 0.5270 +3835 10403 0.6160 +3835 10423 0.5990 +3835 10460 0.8920 +3835 10540 0.6030 +3835 10592 0.4740 +3835 10615 0.6290 +3835 10635 0.4350 +3835 10671 0.5020 +3835 10749 0.5810 +3835 11004 0.9160 +3835 11065 0.7460 +3835 11127 0.5840 +3835 11130 0.6280 +3835 11151 0.4940 +3835 11169 0.4400 +3835 11258 0.5170 +3835 22920 0.6750 +3835 22924 0.4290 +3835 22974 0.7490 +3835 23046 0.5640 +3835 23095 0.5780 +3835 23303 0.5930 +3835 23363 0.5230 +3835 23397 0.7360 +3835 23475 0.4690 +3835 24137 0.8330 +3835 26153 0.6120 +3835 26286 0.5010 +3835 26470 0.6430 +3835 26586 0.5650 +3835 29127 0.8610 +3835 29128 0.4660 +3835 29781 0.6020 +3835 29989 0.8910 +3835 29991 0.8530 +3835 51164 0.5040 +3835 51203 0.6140 +3835 51343 0.4370 +3835 51538 0.4460 +3835 51594 0.5000 +3835 53407 0.5060 +3835 54478 0.4510 +3835 54820 0.6240 +3835 54854 0.4440 +3835 54892 0.4390 +3835 55010 0.4370 +3835 55055 0.4430 +3835 55083 0.6070 +3835 55143 0.8150 +3835 55582 0.5570 +3835 55605 0.8130 +3835 55614 0.5940 +3835 55723 0.5700 +3835 55738 0.5040 +3835 55743 0.6710 +3835 55835 0.4900 +3835 55839 0.4980 +3835 55850 0.5030 +3835 55860 0.5160 +3835 55871 0.5860 +3835 56992 0.7180 +3835 57405 0.4580 +3835 57576 0.6320 +3835 60312 0.4130 +3835 60561 0.5140 +3835 63922 0.4400 +3835 63971 0.6070 +3835 64105 0.5360 +3835 64151 0.6270 +3835 64837 0.6090 +3835 64946 0.4170 +3835 79019 0.5470 +3835 79153 0.5060 +3835 79447 0.6510 +3835 79801 0.4340 +3835 79866 0.4070 +3835 80152 0.4030 +3835 81565 0.5700 +3835 81610 0.6740 +3835 81620 0.4430 +3835 81930 0.6710 +3835 83461 0.8330 +3835 83540 0.5430 +3835 83719 0.5860 +3835 83723 0.4730 +3835 84364 0.5370 +3835 84516 0.5360 +3835 84643 0.7040 +3835 89953 0.4030 +3835 90417 0.5160 +3835 90990 0.7100 +3835 93661 0.4990 +3835 112476 0.5650 +3835 124446 0.5240 +3835 124602 0.6960 +3835 128876 0.4330 +3835 140683 0.4530 +3835 146378 0.5030 +3835 146909 0.7560 +3835 147700 0.4870 +3835 147841 0.4830 +3835 151648 0.4340 +3835 157313 0.5760 +3835 166979 0.6930 +3835 220134 0.5750 +3835 221150 0.4250 +3835 221458 0.5770 +3835 253980 0.6900 +3835 253982 0.6610 +3835 259266 0.4810 +3835 283897 0.5420 +3835 283899 0.5270 +3835 285643 0.8330 +3835 374654 0.5710 +3835 399909 0.4370 +3835 653808 0.4180 +3836 3837 0.9990 +3836 3838 0.7000 +3836 3839 0.9460 +3836 3840 0.9630 +3836 3841 0.5760 +3836 3842 0.6660 +3836 3843 0.8290 +3836 4001 0.6080 +3836 4686 0.8220 +3836 4790 0.9230 +3836 4869 0.5590 +3836 4928 0.7730 +3836 4998 0.5350 +3836 4999 0.5430 +3836 5000 0.5720 +3836 5001 0.5530 +3836 5130 0.4150 +3836 5315 0.7090 +3836 5356 0.4110 +3836 5394 0.6070 +3836 5460 0.4190 +3836 5537 0.4170 +3836 5610 0.5220 +3836 5896 0.8980 +3836 5901 0.8870 +3836 5902 0.6030 +3836 5903 0.8310 +3836 5905 0.5170 +3836 5928 0.5140 +3836 5965 0.6520 +3836 5970 0.9500 +3836 5971 0.8230 +3836 6103 0.5650 +3836 6429 0.4890 +3836 6431 0.4850 +3836 6502 0.5700 +3836 6603 0.4570 +3836 6657 0.9060 +3836 6772 0.9990 +3836 6773 0.9000 +3836 6774 0.6490 +3836 6790 0.4080 +3836 6908 0.4180 +3836 7015 0.9130 +3836 7029 0.4190 +3836 7247 0.5060 +3836 7297 0.6680 +3836 7322 0.4760 +3836 7323 0.4320 +3836 7398 0.7840 +3836 7514 0.7120 +3836 7547 0.5280 +3836 7597 0.4280 +3836 7707 0.4950 +3836 7846 0.4070 +3836 8125 0.4040 +3836 8450 0.4640 +3836 8451 0.4730 +3836 8454 0.5500 +3836 8480 0.4110 +3836 8517 0.4420 +3836 8731 0.6610 +3836 9156 0.4770 +3836 9172 0.4770 +3836 9320 0.5360 +3836 9622 0.4390 +3836 9648 0.4480 +3836 9670 0.4300 +3836 9730 0.4890 +3836 9921 0.4310 +3836 9972 0.8100 +3836 10045 0.4440 +3836 10073 0.6470 +3836 10146 0.4840 +3836 10204 0.4580 +3836 10379 0.6800 +3836 10514 0.5620 +3836 10519 0.5680 +3836 10526 0.4760 +3836 10527 0.4960 +3836 10541 0.6390 +3836 10762 0.9920 +3836 11073 0.6640 +3836 11091 0.4520 +3836 11196 0.4770 +3836 11260 0.4760 +3836 11331 0.4140 +3836 22803 0.5610 +3836 22916 0.8960 +3836 23039 0.4400 +3836 23214 0.4360 +3836 23378 0.5350 +3836 23435 0.5740 +3836 23534 0.5440 +3836 23594 0.5070 +3836 23595 0.5420 +3836 23633 0.8870 +3836 23636 0.5680 +3836 26130 0.4940 +3836 26168 0.4260 +3836 26190 0.4600 +3836 26227 0.7960 +3836 26953 0.4840 +3836 29843 0.5170 +3836 30000 0.5270 +3836 51194 0.4670 +3836 51366 0.6720 +3836 51496 0.4760 +3836 51571 0.4310 +3836 51574 0.6030 +3836 51602 0.6190 +3836 51663 0.4790 +3836 51808 0.4770 +3836 53371 0.6280 +3836 54952 0.4240 +3836 55122 0.4070 +3836 55602 0.4500 +3836 55705 0.4610 +3836 55729 0.4120 +3836 56257 0.4310 +3836 56922 0.4390 +3836 57223 0.4670 +3836 57379 0.5100 +3836 57510 0.7280 +3836 57679 0.5110 +3836 57680 0.5170 +3836 59343 0.6630 +3836 79711 0.5570 +3836 79882 0.4730 +3836 81611 0.5340 +3836 83640 0.4280 +3836 84220 0.4530 +3836 84286 0.4200 +3836 136332 0.4590 +3836 197131 0.4730 +3836 200162 0.4090 +3836 205564 0.4210 +3836 283383 0.4850 +3836 286827 0.4020 +3836 347744 0.4080 +3836 392517 0.4890 +3836 402569 0.6370 +3836 653489 0.4570 +3836 729540 0.4530 +3837 3838 0.9990 +3837 3839 0.9900 +3837 3840 0.9950 +3837 3841 0.9790 +3837 3842 0.9370 +3837 3843 0.9000 +3837 3921 0.6400 +3837 3930 0.9390 +3837 4001 0.4230 +3837 4343 0.4230 +3837 4686 0.8170 +3837 4691 0.6340 +3837 4692 0.4240 +3837 4831 0.4300 +3837 4869 0.7750 +3837 4904 0.5230 +3837 4926 0.6660 +3837 4927 0.7640 +3837 4928 0.9810 +3837 4998 0.5950 +3837 4999 0.5210 +3837 5000 0.5170 +3837 5001 0.5070 +3837 5034 0.4930 +3837 5036 0.4670 +3837 5042 0.5270 +3837 5093 0.4110 +3837 5094 0.4980 +3837 5202 0.4590 +3837 5204 0.4410 +3837 5394 0.9580 +3837 5434 0.5340 +3837 5501 0.5360 +3837 5518 0.5810 +3837 5682 0.6020 +3837 5683 0.5660 +3837 5684 0.6300 +3837 5685 0.5560 +3837 5686 0.6850 +3837 5687 0.5270 +3837 5688 0.6430 +3837 5690 0.4610 +3837 5700 0.4670 +3837 5701 0.4300 +3837 5702 0.4570 +3837 5705 0.5390 +3837 5707 0.6770 +3837 5708 0.6430 +3837 5709 0.4970 +3837 5710 0.4310 +3837 5714 0.4110 +3837 5717 0.8940 +3837 5718 0.5880 +3837 5744 0.9780 +3837 5757 0.4080 +3837 5901 0.9990 +3837 5902 0.9600 +3837 5903 0.9930 +3837 5905 0.9080 +3837 5965 0.4200 +3837 5970 0.4500 +3837 5976 0.5210 +3837 6117 0.4400 +3837 6122 0.5090 +3837 6124 0.6950 +3837 6125 0.5240 +3837 6128 0.6750 +3837 6129 0.5770 +3837 6130 0.5300 +3837 6132 0.4750 +3837 6133 0.6340 +3837 6135 0.4820 +3837 6136 0.6830 +3837 6137 0.5090 +3837 6138 0.5300 +3837 6139 0.4280 +3837 6141 0.4600 +3837 6142 0.5070 +3837 6143 0.4200 +3837 6144 0.4040 +3837 6154 0.4370 +3837 6155 0.6380 +3837 6156 0.4960 +3837 6157 0.6300 +3837 6158 0.5310 +3837 6160 0.4320 +3837 6164 0.5010 +3837 6165 0.5430 +3837 6168 0.4010 +3837 6175 0.5360 +3837 6181 0.4340 +3837 6187 0.6370 +3837 6188 0.6440 +3837 6189 0.6670 +3837 6191 0.6540 +3837 6193 0.4250 +3837 6194 0.4960 +3837 6201 0.4080 +3837 6202 0.7000 +3837 6203 0.5360 +3837 6205 0.4750 +3837 6206 0.5210 +3837 6207 0.4430 +3837 6208 0.5530 +3837 6210 0.4240 +3837 6217 0.7020 +3837 6222 0.4360 +3837 6224 0.6460 +3837 6229 0.4420 +3837 6230 0.6320 +3837 6231 0.5300 +3837 6396 0.6610 +3837 6426 0.5670 +3837 6499 0.5430 +3837 6606 0.7720 +3837 6615 0.9300 +3837 6628 0.5310 +3837 6720 0.8230 +3837 6721 0.9620 +3837 6736 0.5490 +3837 6772 0.6360 +3837 6773 0.5740 +3837 6907 0.4310 +3837 6950 0.5780 +3837 7013 0.6790 +3837 7014 0.5320 +3837 7157 0.4680 +3837 7175 0.7600 +3837 7203 0.5960 +3837 7317 0.5660 +3837 7329 0.5900 +3837 7336 0.4280 +3837 7341 0.6920 +3837 7398 0.4870 +3837 7415 0.6180 +3837 7514 0.9020 +3837 7529 0.6120 +3837 7846 0.5070 +3837 8021 0.9110 +3837 8086 0.7050 +3837 8106 0.4500 +3837 8161 0.5650 +3837 8314 0.5100 +3837 8349 0.4380 +3837 8450 0.4160 +3837 8451 0.4840 +3837 8480 0.8800 +3837 8570 0.5120 +3837 8607 0.7640 +3837 8658 0.4050 +3837 8661 0.4710 +3837 8662 0.6220 +3837 8665 0.4690 +3837 8666 0.4330 +3837 8668 0.6300 +3837 8826 0.8420 +3837 8882 0.4020 +3837 8894 0.4300 +3837 9045 0.5520 +3837 9156 0.5100 +3837 9189 0.7750 +3837 9221 0.5080 +3837 9255 0.4160 +3837 9349 0.4280 +3837 9401 0.5500 +3837 9576 0.5960 +3837 9631 0.8270 +3837 9648 0.5520 +3837 9670 0.6240 +3837 9688 0.9260 +3837 9755 0.5160 +3837 9787 0.8530 +3837 9818 0.7930 +3837 9883 0.8320 +3837 9972 0.9960 +3837 10038 0.4360 +3837 10045 0.6610 +3837 10073 0.9980 +3837 10075 0.5940 +3837 10146 0.5370 +3837 10204 0.7660 +3837 10213 0.4790 +3837 10236 0.6920 +3837 10285 0.4530 +3837 10379 0.5760 +3837 10393 0.5420 +3837 10399 0.6860 +3837 10471 0.4290 +3837 10480 0.5020 +3837 10482 0.8500 +3837 10492 0.6650 +3837 10514 0.6020 +3837 10526 0.9170 +3837 10527 0.9460 +3837 10574 0.7690 +3837 10575 0.7210 +3837 10576 0.7410 +3837 10598 0.4330 +3837 10694 0.7190 +3837 10726 0.4320 +3837 10762 0.9390 +3837 10856 0.6870 +3837 11097 0.6210 +3837 11123 0.4060 +3837 11200 0.5300 +3837 11218 0.4940 +3837 11260 0.6200 +3837 22916 0.8840 +3837 22948 0.7320 +3837 23039 0.4850 +3837 23165 0.8650 +3837 23214 0.4680 +3837 23225 0.7680 +3837 23279 0.8360 +3837 23378 0.9540 +3837 23405 0.6330 +3837 23435 0.5080 +3837 23476 0.5930 +3837 23511 0.6850 +3837 23517 0.5750 +3837 23521 0.4790 +3837 23534 0.6500 +3837 23594 0.5090 +3837 23595 0.5100 +3837 23633 0.9950 +3837 23636 0.9630 +3837 25913 0.5420 +3837 25929 0.4370 +3837 25962 0.4010 +3837 26168 0.6370 +3837 26227 0.7060 +3837 26277 0.4590 +3837 26354 0.4300 +3837 26953 0.7990 +3837 26986 0.4500 +3837 26995 0.5750 +3837 27327 0.4490 +3837 29107 0.4240 +3837 29843 0.6500 +3837 29889 0.4010 +3837 30000 0.5830 +3837 50809 0.4770 +3837 51194 0.8480 +3837 51203 0.8660 +3837 51496 0.4290 +3837 51574 0.6730 +3837 51606 0.6920 +3837 51808 0.5690 +3837 53371 0.9120 +3837 54433 0.4090 +3837 54830 0.5710 +3837 54856 0.4670 +3837 54952 0.7560 +3837 55257 0.4620 +3837 55374 0.5960 +3837 55601 0.5480 +3837 55611 0.4180 +3837 55705 0.7960 +3837 55706 0.7610 +3837 55720 0.4880 +3837 55746 0.7930 +3837 55916 0.4030 +3837 56000 0.4620 +3837 56001 0.4620 +3837 56257 0.4280 +3837 57122 0.9340 +3837 57187 0.4790 +3837 57510 0.7680 +3837 57727 0.5420 +3837 59343 0.7560 +3837 64328 0.4170 +3837 64858 0.4930 +3837 79023 0.7610 +3837 79711 0.8210 +3837 79760 0.4370 +3837 79833 0.4470 +3837 79882 0.4190 +3837 79902 0.9070 +3837 81929 0.7400 +3837 84220 0.5540 +3837 120892 0.5530 +3837 129401 0.7300 +3837 129685 0.4350 +3837 134492 0.4080 +3837 142940 0.7500 +3837 205564 0.5150 +3837 220988 0.5330 +3837 283383 0.8360 +3837 347744 0.7540 +3837 348995 0.7570 +3837 392517 0.5540 +3837 402569 0.9270 +3837 642475 0.4210 +3837 653489 0.5660 +3837 728343 0.4620 +3837 728378 0.4570 +3837 729540 0.5540 +3837 100101267 0.9210 +3838 3839 0.8150 +3838 3840 0.8520 +3838 3841 0.4880 +3838 3842 0.7790 +3838 3843 0.7490 +3838 4001 0.4910 +3838 4085 0.6360 +3838 4091 0.5940 +3838 4172 0.5040 +3838 4173 0.5240 +3838 4175 0.4980 +3838 4176 0.4050 +3838 4288 0.4350 +3838 4292 0.5970 +3838 4343 0.6930 +3838 4361 0.5860 +3838 4605 0.4240 +3838 4609 0.7010 +3838 4678 0.5150 +3838 4683 0.9090 +3838 4686 0.9940 +3838 4751 0.5280 +3838 4790 0.7770 +3838 4869 0.5580 +3838 4926 0.7790 +3838 4927 0.4070 +3838 4928 0.6680 +3838 5111 0.5270 +3838 5324 0.4720 +3838 5347 0.5080 +3838 5394 0.6190 +3838 5431 0.4340 +3838 5434 0.4550 +3838 5460 0.6960 +3838 5499 0.4560 +3838 5501 0.5430 +3838 5598 0.4300 +3838 5599 0.5380 +3838 5601 0.4080 +3838 5757 0.4760 +3838 5888 0.5070 +3838 5896 0.7890 +3838 5901 0.9440 +3838 5902 0.8100 +3838 5903 0.8090 +3838 5905 0.7060 +3838 5925 0.6100 +3838 5931 0.5270 +3838 5965 0.8460 +3838 5970 0.6880 +3838 5971 0.4660 +3838 5976 0.4010 +3838 5983 0.4360 +3838 5984 0.4550 +3838 6093 0.4670 +3838 6103 0.5650 +3838 6197 0.4590 +3838 6240 0.4110 +3838 6241 0.7430 +3838 6249 0.4170 +3838 6277 0.5050 +3838 6429 0.4750 +3838 6431 0.4850 +3838 6502 0.4890 +3838 6514 0.7650 +3838 6597 0.6890 +3838 6598 0.6030 +3838 6601 0.6420 +3838 6602 0.5650 +3838 6604 0.5060 +3838 6613 0.5430 +3838 6657 0.5670 +3838 6732 0.4290 +3838 6736 0.4970 +3838 6772 0.7600 +3838 6790 0.6160 +3838 6928 0.4550 +3838 6950 0.5780 +3838 7027 0.5660 +3838 7083 0.7070 +3838 7153 0.7420 +3838 7157 0.4120 +3838 7158 0.6380 +3838 7185 0.5190 +3838 7272 0.5610 +3838 7295 0.4540 +3838 7298 0.5000 +3838 7415 0.4580 +3838 7514 0.8320 +3838 7764 0.5470 +3838 7874 0.4230 +3838 7884 0.4060 +3838 8202 0.5050 +3838 8318 0.5480 +3838 8331 0.5070 +3838 8334 0.5150 +3838 8337 0.5280 +3838 8338 0.5230 +3838 8340 0.5150 +3838 8341 0.5110 +3838 8342 0.5070 +3838 8345 0.5360 +3838 8347 0.5240 +3838 8348 0.5110 +3838 8349 0.5480 +3838 8356 0.6240 +3838 8361 0.6810 +3838 8438 0.4370 +3838 8454 0.4850 +3838 8493 0.4960 +3838 8565 0.4090 +3838 8607 0.6480 +3838 8662 0.5390 +3838 8731 0.4530 +3838 8970 0.5110 +3838 9055 0.6570 +3838 9133 0.7940 +3838 9156 0.6630 +3838 9188 0.7170 +3838 9212 0.6530 +3838 9219 0.4320 +3838 9221 0.4410 +3838 9232 0.6500 +3838 9274 0.6060 +3838 9412 0.4650 +3838 9493 0.7780 +3838 9584 0.4100 +3838 9622 0.4470 +3838 9631 0.5470 +3838 9648 0.4410 +3838 9688 0.4490 +3838 9733 0.4460 +3838 9735 0.4140 +3838 9787 0.7050 +3838 9833 0.7190 +3838 9837 0.5720 +3838 9883 0.6130 +3838 9918 0.4050 +3838 9928 0.5320 +3838 9972 0.9690 +3838 10013 0.4300 +3838 10038 0.4650 +3838 10045 0.6650 +3838 10051 0.5750 +3838 10055 0.4260 +3838 10073 0.8120 +3838 10075 0.5430 +3838 10111 0.5090 +3838 10112 0.6600 +3838 10124 0.7230 +3838 10139 0.5910 +3838 10146 0.6620 +3838 10158 0.4710 +3838 10204 0.5220 +3838 10213 0.4280 +3838 10288 0.4100 +3838 10376 0.4330 +3838 10399 0.5200 +3838 10403 0.5770 +3838 10450 0.4070 +3838 10460 0.4730 +3838 10482 0.4010 +3838 10514 0.5830 +3838 10526 0.4360 +3838 10527 0.6190 +3838 10592 0.5200 +3838 10615 0.5390 +3838 10623 0.4950 +3838 10628 0.6970 +3838 10643 0.4460 +3838 10664 0.5470 +3838 10762 0.9210 +3838 10856 0.6640 +3838 10859 0.4060 +3838 11004 0.6120 +3838 11065 0.8060 +3838 11130 0.4950 +3838 11200 0.6490 +3838 11260 0.5390 +3838 11331 0.4110 +3838 11335 0.5410 +3838 22916 0.9850 +3838 22974 0.8670 +3838 23028 0.6210 +3838 23039 0.4030 +3838 23112 0.5070 +3838 23165 0.4880 +3838 23378 0.5280 +3838 23397 0.4880 +3838 23435 0.6670 +3838 23468 0.6020 +3838 23534 0.4250 +3838 23633 0.7200 +3838 23636 0.7130 +3838 23647 0.5960 +3838 24137 0.4610 +3838 26168 0.4110 +3838 26227 0.8320 +3838 26523 0.5100 +3838 27161 0.5670 +3838 27327 0.5160 +3838 27338 0.4620 +3838 27430 0.4480 +3838 29028 0.5130 +3838 29089 0.4020 +3838 29117 0.4870 +3838 29127 0.7140 +3838 29843 0.5080 +3838 29946 0.4220 +3838 30000 0.4610 +3838 51155 0.5410 +3838 51202 0.4240 +3838 51203 0.6620 +3838 51496 0.6040 +3838 51574 0.7050 +3838 51593 0.5260 +3838 51602 0.5550 +3838 53371 0.4610 +3838 54145 0.5070 +3838 54431 0.4380 +3838 54443 0.7140 +3838 54596 0.5150 +3838 54821 0.4670 +3838 54840 0.5350 +3838 54952 0.4080 +3838 54973 0.5780 +3838 55122 0.4140 +3838 55143 0.6210 +3838 55165 0.6560 +3838 55646 0.4260 +3838 55756 0.7100 +3838 55766 0.5000 +3838 55839 0.4770 +3838 55920 0.4010 +3838 56257 0.4290 +3838 56992 0.4530 +3838 57122 0.5260 +3838 57379 0.5100 +3838 57496 0.4610 +3838 57510 0.7080 +3838 57679 0.4880 +3838 57680 0.5890 +3838 59343 0.5010 +3838 64151 0.6140 +3838 64802 0.4400 +3838 79711 0.6300 +3838 79727 0.4630 +3838 79801 0.5690 +3838 79923 0.4140 +3838 79935 0.5890 +3838 81620 0.5610 +3838 81930 0.4750 +3838 83461 0.4900 +3838 83540 0.5310 +3838 83737 0.4140 +3838 84148 0.9030 +3838 84220 0.5890 +3838 84790 0.4200 +3838 85236 0.5200 +3838 94239 0.6640 +3838 113130 0.4390 +3838 128312 0.5090 +3838 129685 0.9350 +3838 136332 0.4590 +3838 136991 0.5790 +3838 146909 0.4360 +3838 151648 0.4380 +3838 157313 0.7020 +3838 192669 0.5100 +3838 192670 0.5100 +3838 200162 0.4010 +3838 255626 0.5070 +3838 259266 0.6680 +3838 283383 0.4850 +3838 347744 0.4080 +3838 392517 0.4890 +3838 402569 0.5640 +3838 474382 0.4990 +3838 653489 0.5010 +3838 653604 0.6120 +3838 728741 0.5040 +3838 729540 0.5030 +3838 100101267 0.5940 +3839 3840 0.9820 +3839 3841 0.5310 +3839 3842 0.6400 +3839 3843 0.8010 +3839 4204 0.4590 +3839 4686 0.8000 +3839 4790 0.9490 +3839 4869 0.4730 +3839 4928 0.4850 +3839 5393 0.4120 +3839 5394 0.5770 +3839 5619 0.4020 +3839 5707 0.4520 +3839 5901 0.8540 +3839 5902 0.7670 +3839 5903 0.8180 +3839 5905 0.5450 +3839 5925 0.4100 +3839 5928 0.5280 +3839 5965 0.5680 +3839 5970 0.9630 +3839 6103 0.5650 +3839 6429 0.5040 +3839 6431 0.5160 +3839 6594 0.5950 +3839 7141 0.6450 +3839 7142 0.7710 +3839 7514 0.6690 +3839 8019 0.5380 +3839 8454 0.5310 +3839 9188 0.5770 +3839 9318 0.5850 +3839 9373 0.5180 +3839 9592 0.4080 +3839 9622 0.4390 +3839 9648 0.4420 +3839 9670 0.4760 +3839 9883 0.6800 +3839 9972 0.7380 +3839 10073 0.5910 +3839 10204 0.4550 +3839 10213 0.4400 +3839 10482 0.4570 +3839 10514 0.5580 +3839 10526 0.6890 +3839 10527 0.5600 +3839 10640 0.4560 +3839 10762 0.5920 +3839 10951 0.5170 +3839 11060 0.4080 +3839 22916 0.9180 +3839 23039 0.4810 +3839 23378 0.5310 +3839 23435 0.5550 +3839 23468 0.6240 +3839 23476 0.5490 +3839 23534 0.4690 +3839 23633 0.7990 +3839 26168 0.4150 +3839 26227 0.7900 +3839 26240 0.4220 +3839 26953 0.4680 +3839 29843 0.5280 +3839 30000 0.5020 +3839 51194 0.4660 +3839 51496 0.5000 +3839 51574 0.6810 +3839 51808 0.4110 +3839 53371 0.5200 +3839 54952 0.4120 +3839 55122 0.4180 +3839 55213 0.5090 +3839 55421 0.5660 +3839 55705 0.6700 +3839 56257 0.4200 +3839 57213 0.5250 +3839 57510 0.7070 +3839 57679 0.4980 +3839 59343 0.5080 +3839 64328 0.4490 +3839 79711 0.5240 +3839 83852 0.4120 +3839 84220 0.4530 +3839 115584 0.6210 +3839 136332 0.4590 +3839 151987 0.4500 +3839 169200 0.4100 +3839 220107 0.4280 +3839 283383 0.4850 +3839 347744 0.4080 +3839 392517 0.4890 +3839 402569 0.6260 +3839 653489 0.4550 +3839 729540 0.4530 +3839 100101267 0.6240 +3840 3841 0.5300 +3840 3842 0.8020 +3840 3843 0.6360 +3840 4001 0.4410 +3840 4087 0.4880 +3840 4204 0.5790 +3840 4686 0.7340 +3840 4790 0.9920 +3840 4869 0.4040 +3840 4928 0.6050 +3840 5091 0.5100 +3840 5394 0.5580 +3840 5707 0.5370 +3840 5901 0.9270 +3840 5902 0.7290 +3840 5903 0.8090 +3840 5905 0.7460 +3840 5965 0.7920 +3840 5970 0.9960 +3840 6093 0.4740 +3840 6103 0.5650 +3840 6657 0.9340 +3840 6772 0.5590 +3840 6774 0.6990 +3840 6950 0.4150 +3840 7141 0.4910 +3840 7142 0.5480 +3840 7157 0.6010 +3840 7158 0.9070 +3840 7203 0.5980 +3840 7329 0.4040 +3840 7514 0.7310 +3840 7871 0.4130 +3840 8021 0.4050 +3840 8450 0.4120 +3840 8498 0.9430 +3840 8565 0.4150 +3840 8607 0.6560 +3840 9112 0.6400 +3840 9156 0.4930 +3840 9172 0.4480 +3840 9188 0.4480 +3840 9320 0.4790 +3840 9441 0.4400 +3840 9592 0.4200 +3840 9611 0.4780 +3840 9631 0.4150 +3840 9648 0.4500 +3840 9670 0.4660 +3840 9883 0.5350 +3840 9972 0.8250 +3840 10051 0.4370 +3840 10073 0.5910 +3840 10204 0.4610 +3840 10482 0.5430 +3840 10514 0.5650 +3840 10526 0.4840 +3840 10527 0.7830 +3840 10574 0.6150 +3840 10575 0.4160 +3840 10576 0.6350 +3840 10612 0.7330 +3840 10693 0.5220 +3840 10694 0.4910 +3840 10762 0.9000 +3840 11260 0.4130 +3840 22916 0.7570 +3840 23028 0.9100 +3840 23039 0.4030 +3840 23214 0.4370 +3840 23378 0.5340 +3840 23429 0.4190 +3840 23435 0.6740 +3840 23468 0.5500 +3840 23534 0.5780 +3840 23633 0.6870 +3840 23636 0.4440 +3840 26227 0.8490 +3840 26471 0.7350 +3840 26953 0.4190 +3840 29843 0.5120 +3840 30000 0.5440 +3840 51105 0.5330 +3840 51194 0.4700 +3840 51496 0.6140 +3840 51574 0.5770 +3840 53371 0.5490 +3840 54880 0.4650 +3840 54932 0.4680 +3840 54952 0.4120 +3840 55122 0.5470 +3840 55421 0.6770 +3840 55705 0.5560 +3840 55966 0.4680 +3840 57122 0.5380 +3840 57510 0.7120 +3840 57679 0.4980 +3840 59343 0.5840 +3840 64710 0.4800 +3840 79711 0.5570 +3840 80232 0.4690 +3840 84220 0.4530 +3840 85409 0.4690 +3840 112939 0.4010 +3840 136332 0.4590 +3840 151987 0.4710 +3840 200162 0.4280 +3840 205564 0.4450 +3840 221937 0.4710 +3840 283383 0.4850 +3840 347744 0.4080 +3840 374786 0.4150 +3840 392517 0.4890 +3840 402569 0.6070 +3840 653489 0.5500 +3840 729540 0.4530 +3840 100101267 0.4770 +3841 3842 0.5490 +3841 3843 0.7500 +3841 4686 0.5120 +3841 4928 0.4290 +3841 5394 0.5330 +3841 5901 0.6430 +3841 5902 0.5290 +3841 5903 0.7130 +3841 5905 0.4250 +3841 6103 0.5670 +3841 6772 0.6120 +3841 7514 0.5260 +3841 8405 0.4930 +3841 8731 0.6300 +3841 8732 0.5290 +3841 8900 0.4720 +3841 9156 0.4770 +3841 9648 0.4530 +3841 9670 0.4700 +3841 9972 0.9310 +3841 10526 0.4780 +3841 10527 0.5150 +3841 10541 0.7770 +3841 10762 0.8750 +3841 11260 0.4180 +3841 11331 0.4230 +3841 22916 0.4900 +3841 23214 0.4140 +3841 23245 0.8050 +3841 23378 0.5280 +3841 23534 0.4260 +3841 23650 0.4360 +3841 26168 0.4040 +3841 26258 0.7550 +3841 26953 0.4200 +3841 27152 0.4010 +3841 29843 0.5130 +3841 30000 0.5600 +3841 51057 0.7820 +3841 51194 0.4750 +3841 51574 0.5850 +3841 54885 0.7660 +3841 54952 0.4080 +3841 55705 0.4750 +3841 55709 0.5060 +3841 56257 0.4150 +3841 57188 0.4890 +3841 57489 0.4130 +3841 57536 0.7690 +3841 57679 0.5150 +3841 59343 0.5070 +3841 79711 0.6060 +3841 79871 0.6550 +3841 84220 0.4770 +3841 121053 0.4980 +3841 136332 0.4590 +3841 145282 0.7820 +3841 205564 0.4060 +3841 283383 0.4850 +3841 339745 0.7720 +3841 347744 0.4080 +3841 392517 0.4890 +3841 402569 0.5190 +3841 653489 0.4530 +3841 729540 0.4680 +3842 3843 0.8210 +3842 3921 0.4830 +3842 4303 0.7900 +3842 4440 0.5330 +3842 4665 0.5210 +3842 4670 0.9710 +3842 4927 0.4250 +3842 4928 0.9140 +3842 5093 0.4370 +3842 5202 0.4460 +3842 5314 0.5020 +3842 5393 0.5310 +3842 5431 0.4690 +3842 5434 0.4250 +3842 5518 0.5510 +3842 5682 0.4490 +3842 5683 0.4970 +3842 5684 0.5020 +3842 5685 0.4370 +3842 5686 0.4350 +3842 5687 0.4720 +3842 5688 0.4470 +3842 5707 0.4570 +3842 5708 0.4290 +3842 5710 0.4060 +3842 5717 0.6970 +3842 5718 0.4030 +3842 5901 0.9950 +3842 5902 0.6360 +3842 5903 0.8200 +3842 5905 0.6540 +3842 6010 0.4540 +3842 6122 0.4290 +3842 6124 0.4750 +3842 6125 0.4070 +3842 6128 0.4870 +3842 6129 0.4770 +3842 6130 0.4490 +3842 6132 0.4200 +3842 6133 0.5120 +3842 6135 0.4970 +3842 6136 0.4430 +3842 6142 0.4280 +3842 6147 0.5280 +3842 6155 0.4330 +3842 6157 0.4370 +3842 6165 0.4370 +3842 6175 0.5010 +3842 6187 0.4790 +3842 6188 0.5410 +3842 6189 0.5050 +3842 6191 0.4780 +3842 6202 0.4930 +3842 6203 0.4440 +3842 6205 0.4420 +3842 6206 0.4370 +3842 6208 0.6190 +3842 6210 0.4120 +3842 6217 0.5680 +3842 6224 0.5300 +3842 6231 0.4430 +3842 6396 0.6850 +3842 6426 0.6660 +3842 6427 0.7470 +3842 6434 0.5230 +3842 6728 0.4160 +3842 6919 0.4410 +3842 6950 0.4400 +3842 7072 0.4390 +3842 7124 0.4490 +3842 7329 0.5330 +3842 7411 0.4790 +3842 7415 0.4860 +3842 7514 0.8680 +3842 7529 0.5610 +3842 7538 0.9050 +3842 7919 0.4080 +3842 8021 0.6160 +3842 8028 0.6500 +3842 8106 0.5730 +3842 8148 0.5600 +3842 8314 0.9280 +3842 8350 0.9030 +3842 8351 0.9030 +3842 8352 0.9080 +3842 8353 0.9070 +3842 8354 0.9030 +3842 8355 0.9030 +3842 8356 0.9140 +3842 8357 0.9030 +3842 8358 0.9030 +3842 8517 0.4150 +3842 8607 0.6520 +3842 8662 0.5310 +3842 8665 0.4220 +3842 8668 0.4300 +3842 8826 0.4510 +3842 8968 0.9030 +3842 9255 0.4150 +3842 9261 0.7500 +3842 9631 0.5190 +3842 9648 0.4960 +3842 9670 0.6770 +3842 9688 0.5390 +3842 9782 0.4140 +3842 9818 0.4070 +3842 9972 0.9310 +3842 9987 0.5580 +3842 10075 0.4440 +3842 10146 0.6030 +3842 10189 0.5100 +3842 10204 0.7570 +3842 10236 0.4310 +3842 10381 0.5300 +3842 10399 0.5020 +3842 10471 0.4400 +3842 10480 0.4060 +3842 10482 0.9700 +3842 10492 0.4450 +3842 10526 0.8750 +3842 10527 0.9450 +3842 10574 0.5570 +3842 10575 0.5440 +3842 10576 0.4910 +3842 10640 0.5190 +3842 10694 0.4600 +3842 10762 0.5250 +3842 10856 0.5340 +3842 11052 0.5120 +3842 11097 0.4200 +3842 11260 0.6780 +3842 11315 0.4750 +3842 11340 0.5520 +3842 22894 0.5690 +3842 22948 0.4480 +3842 23016 0.6060 +3842 23019 0.4020 +3842 23039 0.6320 +3842 23165 0.4720 +3842 23214 0.5040 +3842 23279 0.7180 +3842 23404 0.5430 +3842 23435 0.6940 +3842 23534 0.9740 +3842 23584 0.4240 +3842 23633 0.5920 +3842 23636 0.7610 +3842 25814 0.4110 +3842 26227 0.9140 +3842 26528 0.5470 +3842 26953 0.7650 +3842 29102 0.4200 +3842 51010 0.5700 +3842 51013 0.5740 +3842 51194 0.7030 +3842 51501 0.4450 +3842 51715 0.5420 +3842 53371 0.6190 +3842 53840 0.5280 +3842 54443 0.5050 +3842 54464 0.5840 +3842 54512 0.5500 +3842 54542 0.5280 +3842 55319 0.4910 +3842 55705 0.8940 +3842 55746 0.6820 +3842 55802 0.5430 +3842 55832 0.4480 +3842 56915 0.5530 +3842 57122 0.7580 +3842 57510 0.5820 +3842 57576 0.9580 +3842 57620 0.4750 +3842 64328 0.5520 +3842 64901 0.5060 +3842 79023 0.6490 +3842 79711 0.7400 +3842 79882 0.7980 +3842 79902 0.6890 +3842 81929 0.5960 +3842 84220 0.8700 +3842 84876 0.4390 +3842 85363 0.5470 +3842 118460 0.5450 +3842 120892 0.5270 +3842 124540 0.5670 +3842 126961 0.9030 +3842 144983 0.9310 +3842 167227 0.5210 +3842 220988 0.5400 +3842 283383 0.5630 +3842 284131 0.4180 +3842 286753 0.4840 +3842 333932 0.9030 +3842 348995 0.6490 +3842 402569 0.4560 +3842 440093 0.9120 +3842 440686 0.9120 +3842 445372 0.5320 +3842 653604 0.9120 +3842 729857 0.7190 +3843 4116 0.7010 +3843 4869 0.6140 +3843 4928 0.7270 +3843 5018 0.6740 +3843 5036 0.6410 +3843 5091 0.5080 +3843 5108 0.4350 +3843 5161 0.4180 +3843 5296 0.4440 +3843 5431 0.5820 +3843 5537 0.5090 +3843 5901 0.9810 +3843 5902 0.5840 +3843 5903 0.6960 +3843 5905 0.7300 +3843 6047 0.4100 +3843 6059 0.4940 +3843 6123 0.4030 +3843 6125 0.4070 +3843 6129 0.4030 +3843 6136 0.7660 +3843 6137 0.5480 +3843 6147 0.8920 +3843 6780 0.4370 +3843 7430 0.4830 +3843 7514 0.8600 +3843 8021 0.6050 +3843 8314 0.4210 +3843 8350 0.4230 +3843 8356 0.4150 +3843 8361 0.5290 +3843 8428 0.4190 +3843 8480 0.4660 +3843 8498 0.5830 +3843 8520 0.4330 +3843 8555 0.5190 +3843 8556 0.5190 +3843 8602 0.4050 +3843 8661 0.4290 +3843 8662 0.4240 +3843 8833 0.6730 +3843 9401 0.5260 +3843 9631 0.5160 +3843 9669 0.4190 +3843 9670 0.7420 +3843 9688 0.5140 +3843 9818 0.4690 +3843 9883 0.4140 +3843 9939 0.5640 +3843 9972 0.6710 +3843 9987 0.5350 +3843 10189 0.8690 +3843 10204 0.4800 +3843 10436 0.6790 +3843 10477 0.4990 +3843 10482 0.6100 +3843 10526 0.7010 +3843 10527 0.8840 +3843 10528 0.4080 +3843 10576 0.4050 +3843 11124 0.4090 +3843 11128 0.4100 +3843 11137 0.4420 +3843 11168 0.4350 +3843 11260 0.6920 +3843 23039 0.6610 +3843 23076 0.4100 +3843 23165 0.5060 +3843 23214 0.5260 +3843 23223 0.5040 +3843 23279 0.4690 +3843 23348 0.5110 +3843 23534 0.6500 +3843 23551 0.5870 +3843 23560 0.4270 +3843 23633 0.7070 +3843 23636 0.5450 +3843 25879 0.5040 +3843 25885 0.6350 +3843 26168 0.8370 +3843 26354 0.5310 +3843 26528 0.4440 +3843 27043 0.6610 +3843 29789 0.4270 +3843 29843 0.7060 +3843 30000 0.6360 +3843 51068 0.4720 +3843 51194 0.9080 +3843 51406 0.4380 +3843 51501 0.4980 +3843 53371 0.5640 +3843 54552 0.4110 +3843 54606 0.6210 +3843 54881 0.4010 +3843 55110 0.6880 +3843 55127 0.4870 +3843 55226 0.4760 +3843 55705 0.8250 +3843 55720 0.4610 +3843 55746 0.4140 +3843 55832 0.4220 +3843 57107 0.6720 +3843 57122 0.4120 +3843 57124 0.6750 +3843 57418 0.6590 +3843 57510 0.4900 +3843 59343 0.7050 +3843 64328 0.5400 +3843 64901 0.5050 +3843 64981 0.4370 +3843 65083 0.4570 +3843 79023 0.4210 +3843 79050 0.4740 +3843 79707 0.7330 +3843 79711 0.8570 +3843 80823 0.6550 +3843 81887 0.7140 +3843 84172 0.4130 +3843 84271 0.4940 +3843 120892 0.5260 +3843 124637 0.4240 +3843 133482 0.4570 +3843 205564 0.4470 +3843 283383 0.6240 +3843 345630 0.4700 +3843 402569 0.5050 +3843 100130733 0.7270 +3843 100528062 0.5720 +3845 3852 0.5080 +3845 3855 0.6160 +3845 3872 0.4450 +3845 3880 0.6070 +3845 3902 0.4660 +3845 3958 0.9590 +3845 3996 0.4570 +3845 4000 0.5520 +3845 4001 0.5740 +3845 4015 0.5990 +3845 4067 0.8740 +3845 4072 0.5900 +3845 4082 0.6200 +3845 4087 0.5560 +3845 4088 0.4680 +3845 4089 0.9170 +3845 4094 0.4730 +3845 4140 0.6950 +3845 4150 0.4800 +3845 4155 0.4670 +3845 4170 0.6290 +3845 4193 0.6700 +3845 4194 0.4730 +3845 4214 0.9530 +3845 4233 0.9790 +3845 4254 0.6470 +3845 4255 0.6030 +3845 4286 0.4190 +3845 4292 0.8680 +3845 4296 0.5460 +3845 4297 0.5120 +3845 4301 0.9450 +3845 4313 0.4550 +3845 4316 0.4550 +3845 4318 0.5170 +3845 4342 0.6870 +3845 4354 0.4010 +3845 4363 0.4770 +3845 4436 0.8180 +3845 4437 0.4890 +3845 4486 0.5500 +3845 4585 0.4850 +3845 4586 0.5480 +3845 4588 0.5230 +3845 4594 0.5230 +3845 4595 0.6600 +3845 4605 0.5130 +3845 4609 0.8720 +3845 4610 0.4330 +3845 4613 0.5820 +3845 4684 0.7350 +3845 4691 0.6560 +3845 4747 0.5400 +3845 4751 0.4040 +3845 4762 0.4460 +3845 4763 0.9960 +3845 4771 0.6240 +3845 4780 0.5600 +3845 4790 0.8050 +3845 4792 0.4480 +3845 4842 0.9030 +3845 4851 0.8530 +3845 4853 0.5620 +3845 4854 0.4510 +3845 4869 0.8030 +3845 4893 0.9440 +3845 4902 0.4170 +3845 4904 0.4380 +3845 4908 0.5300 +3845 4909 0.5360 +3845 4914 0.6630 +3845 4915 0.7030 +3845 4921 0.5970 +3845 4968 0.4760 +3845 5037 0.7650 +3845 5058 0.6080 +3845 5062 0.6110 +3845 5063 0.5370 +3845 5077 0.4930 +3845 5079 0.4140 +3845 5128 0.4430 +3845 5133 0.6100 +3845 5147 0.8740 +3845 5154 0.6610 +3845 5155 0.6820 +3845 5156 0.9780 +3845 5159 0.9590 +3845 5170 0.7200 +3845 5175 0.4520 +3845 5241 0.6970 +3845 5243 0.5040 +3845 5245 0.6750 +3845 5266 0.5790 +3845 5290 0.9980 +3845 5291 0.9730 +3845 5293 0.9740 +3845 5294 0.9680 +3845 5295 0.9630 +3845 5296 0.9460 +3845 5297 0.5320 +3845 5315 0.4780 +3845 5333 0.4320 +3845 5335 0.5380 +3845 5347 0.6440 +3845 5378 0.5910 +3845 5395 0.7760 +3845 5424 0.4530 +3845 5426 0.6800 +3845 5460 0.4640 +3845 5468 0.7570 +3845 5478 0.5430 +3845 5500 0.4240 +3845 5515 0.6240 +3845 5516 0.5780 +3845 5518 0.8320 +3845 5519 0.5270 +3845 5525 0.5180 +3845 5526 0.4640 +3845 5527 0.5070 +3845 5528 0.4410 +3845 5529 0.5390 +3845 5530 0.5090 +3845 5532 0.5580 +3845 5536 0.4280 +3845 5537 0.4570 +3845 5555 0.4270 +3845 5562 0.5110 +3845 5566 0.4350 +3845 5567 0.4710 +3845 5568 0.4200 +3845 5573 0.4670 +3845 5578 0.9320 +3845 5579 0.9230 +3845 5580 0.6630 +3845 5581 0.9260 +3845 5582 0.9110 +3845 5584 0.5240 +3845 5588 0.7980 +3845 5590 0.6310 +3845 5591 0.4480 +3845 5593 0.7840 +3845 5594 0.9880 +3845 5595 0.9820 +3845 5598 0.4900 +3845 5599 0.9480 +3845 5601 0.9350 +3845 5604 0.9950 +3845 5605 0.9660 +3845 5623 0.4260 +3845 5690 0.5120 +3845 5727 0.5800 +3845 5728 0.9360 +3845 5743 0.7180 +3845 5747 0.7290 +3845 5753 0.5490 +3845 5754 0.4060 +3845 5770 0.4350 +3845 5781 0.9530 +3845 5788 0.5240 +3845 5789 0.4350 +3845 5819 0.4130 +3845 5863 0.9580 +3845 5868 0.5140 +3845 5877 0.4970 +3845 5878 0.4960 +3845 5888 0.4130 +3845 5894 0.9990 +3845 5898 0.7590 +3845 5899 0.7900 +3845 5900 0.9990 +3845 5906 0.7030 +3845 5908 0.5610 +3845 5910 0.8300 +3845 5911 0.4250 +3845 5912 0.4050 +3845 5914 0.4190 +3845 5921 0.9710 +3845 5922 0.9470 +3845 5923 0.9490 +3845 5924 0.9460 +3845 5925 0.4330 +3845 5928 0.4680 +3845 5970 0.6920 +3845 5979 0.8840 +3845 6046 0.5490 +3845 6093 0.4630 +3845 6098 0.8620 +3845 6194 0.4480 +3845 6195 0.9560 +3845 6196 0.9400 +3845 6197 0.9500 +3845 6198 0.6390 +3845 6199 0.4750 +3845 6222 0.4690 +3845 6233 0.6360 +3845 6239 0.4220 +3845 6240 0.4130 +3845 6249 0.4370 +3845 6251 0.5190 +3845 6347 0.4100 +3845 6387 0.4470 +3845 6391 0.4170 +3845 6416 0.5040 +3845 6423 0.4370 +3845 6426 0.5350 +3845 6427 0.5990 +3845 6440 0.4380 +3845 6453 0.5770 +3845 6464 0.7580 +3845 6469 0.5370 +3845 6500 0.5390 +3845 6510 0.7200 +3845 6513 0.5300 +3845 6515 0.4640 +3845 6520 0.6770 +3845 6541 0.5160 +3845 6558 0.4080 +3845 6566 0.4790 +3845 6591 0.5110 +3845 6597 0.6000 +3845 6598 0.5420 +3845 6608 0.4620 +3845 6615 0.5840 +3845 6616 0.5160 +3845 6654 0.9990 +3845 6655 0.9850 +3845 6657 0.5510 +3845 6659 0.5080 +3845 6662 0.5140 +3845 6708 0.6690 +3845 6709 0.6030 +3845 6710 0.4990 +3845 6711 0.6380 +3845 6712 0.6000 +3845 6714 0.9900 +3845 6772 0.4300 +3845 6774 0.8170 +3845 6776 0.4730 +3845 6777 0.5070 +3845 6790 0.5180 +3845 6794 0.8800 +3845 6809 0.4440 +3845 6850 0.9360 +3845 6934 0.4280 +3845 7010 0.6630 +3845 7015 0.6590 +3845 7027 0.4580 +3845 7037 0.5430 +3845 7038 0.5340 +3845 7039 0.7620 +3845 7040 0.5370 +3845 7046 0.5050 +3845 7048 0.6480 +3845 7074 0.9670 +3845 7080 0.5980 +3845 7094 0.5810 +3845 7099 0.4190 +3845 7124 0.7170 +3845 7153 0.4050 +3845 7157 0.9490 +3845 7170 0.4230 +3845 7189 0.5000 +3845 7248 0.4310 +3845 7249 0.6050 +3845 7273 0.5440 +3845 7291 0.5380 +3845 7297 0.6480 +3845 7298 0.5960 +3845 7299 0.4580 +3845 7307 0.6230 +3845 7311 0.5630 +3845 7314 0.5760 +3845 7316 0.5950 +3845 7356 0.4460 +3845 7403 0.5620 +3845 7409 0.6540 +3845 7414 0.6820 +3845 7416 0.4820 +3845 7417 0.5050 +3845 7419 0.5080 +3845 7430 0.4400 +3845 7431 0.4510 +3845 7450 0.6160 +3845 7465 0.4190 +3845 7474 0.4170 +3845 7486 0.4150 +3845 7490 0.7550 +3845 7514 0.4250 +3845 7516 0.4560 +3845 7525 0.7920 +3845 7529 0.7020 +3845 7531 0.4740 +3845 7534 0.5430 +3845 7750 0.5460 +3845 7837 0.5640 +3845 7849 0.7470 +3845 7852 0.4660 +3845 7905 0.5720 +3845 8019 0.5400 +3845 8030 0.5270 +3845 8031 0.4800 +3845 8034 0.4470 +3845 8036 0.9890 +3845 8061 0.4020 +3845 8074 0.5760 +3845 8085 0.5460 +3845 8087 0.5250 +3845 8091 0.6520 +3845 8140 0.5990 +3845 8216 0.9210 +3845 8233 0.5940 +3845 8241 0.4820 +3845 8243 0.4600 +3845 8289 0.8730 +3845 8290 0.4530 +3845 8312 0.4820 +3845 8313 0.4370 +3845 8315 0.9030 +3845 8356 0.4810 +3845 8394 0.6590 +3845 8405 0.4500 +3845 8437 0.7410 +3845 8452 0.6180 +3845 8493 0.4010 +3845 8503 0.9520 +3845 8546 0.4650 +3845 8549 0.5780 +3845 8650 0.4770 +3845 8651 0.6190 +3845 8660 0.6510 +3845 8678 0.4580 +3845 8754 0.5170 +3845 8773 0.4760 +3845 8795 0.4250 +3845 8805 0.5240 +3845 8817 0.7130 +3845 8822 0.6920 +3845 8823 0.6880 +3845 8826 0.7830 +3845 8831 0.8050 +3845 8842 0.6180 +3845 8844 0.7120 +3845 8877 0.5950 +3845 8878 0.4050 +3845 8913 0.4730 +3845 8945 0.5420 +3845 9048 0.4510 +3845 9061 0.4010 +3845 9113 0.4130 +3845 9126 0.4370 +3845 9201 0.5030 +3845 9212 0.4560 +3845 9223 0.5100 +3845 9241 0.4850 +3845 9252 0.4680 +3845 9314 0.4380 +3845 9321 0.5560 +3845 9365 0.5360 +3845 9429 0.4470 +3845 9444 0.5330 +3845 9448 0.5600 +3845 9451 0.5850 +3845 9459 0.9120 +3845 9462 0.7730 +3845 9474 0.4710 +3845 9475 0.5210 +3845 9476 0.5440 +3845 9530 0.5450 +3845 9542 0.5860 +3845 9610 0.9690 +3845 9659 0.5730 +3845 9693 0.9390 +3845 9715 0.5130 +3845 9768 0.4910 +3845 9770 0.8210 +3845 9771 0.9110 +3845 9817 0.6670 +3845 9839 0.4540 +3845 9846 0.6530 +3845 9961 0.4720 +3845 9965 0.6460 +3845 9986 0.8010 +3845 10000 0.5660 +3845 10018 0.7130 +3845 10019 0.4120 +3845 10048 0.5170 +3845 10097 0.4730 +3845 10125 0.9370 +3845 10142 0.5360 +3845 10156 0.7670 +3845 10232 0.4470 +3845 10235 0.9220 +3845 10253 0.4120 +3845 10256 0.6140 +3845 10298 0.5580 +3845 10320 0.5010 +3845 10381 0.4050 +3845 10413 0.6010 +3845 10434 0.5740 +3845 10451 0.4640 +3845 10458 0.6570 +3845 10460 0.4200 +3845 10533 0.6410 +3845 10551 0.4440 +3845 10568 0.4010 +3845 10652 0.6130 +3845 10664 0.4610 +3845 10672 0.4140 +3845 10681 0.7160 +3845 10718 0.5520 +3845 10723 0.4790 +3845 10735 0.5740 +3845 10746 0.4430 +3845 10788 0.4150 +3845 10801 0.5640 +3845 10817 0.5350 +3845 10818 0.7140 +3845 10827 0.4830 +3845 10928 0.9410 +3845 10938 0.4580 +3845 10988 0.4270 +3845 11044 0.4050 +3845 11140 0.6040 +3845 11145 0.4990 +3845 11160 0.5180 +3845 11186 0.9870 +3845 11197 0.5170 +3845 11200 0.5360 +3845 11336 0.4030 +3845 22821 0.7290 +3845 22852 0.4220 +3845 22866 0.5690 +3845 22871 0.4160 +3845 22878 0.4320 +3845 22894 0.5260 +3845 22906 0.4310 +3845 22916 0.4250 +3845 23092 0.6370 +3845 23164 0.4720 +3845 23179 0.9970 +3845 23239 0.5050 +3845 23345 0.4160 +3845 23365 0.9190 +3845 23405 0.5990 +3845 23411 0.4520 +3845 23463 0.8100 +3845 23476 0.4470 +3845 23513 0.4540 +3845 23533 0.9210 +3845 23657 0.4840 +3845 23705 0.4770 +3845 25759 0.5870 +3845 25780 0.9260 +3845 25998 0.4600 +3845 26040 0.5940 +3845 26060 0.5580 +3845 26281 0.6880 +3845 26499 0.4460 +3845 26986 0.5880 +3845 27006 0.6850 +3845 27035 0.4090 +3845 27040 0.5300 +3845 27044 0.5130 +3845 27123 0.5170 +3845 27161 0.7340 +3845 27330 0.9180 +3845 27436 0.9800 +3845 29072 0.5340 +3845 29102 0.4730 +3845 29110 0.6530 +3845 29126 0.7740 +3845 30835 0.5340 +3845 50618 0.5570 +3845 50848 0.4670 +3845 50943 0.4900 +3845 51090 0.4540 +3845 51104 0.5350 +3845 51114 0.5550 +3845 51125 0.5520 +3845 51196 0.9710 +3845 51332 0.5450 +3845 51755 0.4410 +3845 51764 0.6500 +3845 51806 0.9980 +3845 53353 0.5460 +3845 53358 0.5600 +3845 54205 0.4850 +3845 54331 0.6680 +3845 54474 0.6070 +3845 54518 0.5700 +3845 54756 0.5400 +3845 54790 0.6690 +3845 54845 0.5020 +3845 54855 0.5070 +3845 54894 0.6700 +3845 55109 0.4320 +3845 55193 0.5740 +3845 55247 0.4230 +3845 55294 0.7680 +3845 55500 0.4070 +3845 55750 0.4640 +3845 55914 0.7090 +3845 55970 0.6690 +3845 56829 0.4660 +3845 57085 0.4160 +3845 57110 0.5200 +3845 57139 0.8200 +3845 57446 0.4010 +3845 57492 0.5650 +3845 57509 0.5960 +3845 57521 0.5020 +3845 57554 0.6060 +3845 57580 0.4990 +3845 57610 0.5070 +3845 57670 0.6070 +3845 57731 0.5020 +3845 58489 0.5430 +3845 58508 0.7560 +3845 59084 0.4270 +3845 59345 0.7020 +3845 63035 0.5040 +3845 64223 0.4880 +3845 64855 0.5810 +3845 64926 0.7010 +3845 65009 0.6080 +3845 65975 0.6800 +3845 79109 0.9740 +3845 79633 0.4260 +3845 79643 0.4260 +3845 79727 0.4250 +3845 79728 0.5160 +3845 79834 0.4200 +3845 79923 0.4490 +3845 80243 0.4960 +3845 80380 0.4700 +3845 80853 0.4270 +3845 81669 0.4180 +3845 81848 0.4210 +3845 81926 0.5560 +3845 83593 0.9810 +3845 84260 0.5030 +3845 84295 0.5660 +3845 84868 0.4600 +3845 89780 0.4090 +3845 91860 0.9980 +3845 94025 0.5390 +3845 94235 0.6500 +3845 114788 0.4920 +3845 115727 0.9250 +3845 124540 0.5460 +3845 127665 0.4050 +3845 137902 0.5620 +3845 139285 0.5060 +3845 140456 0.4260 +3845 140885 0.4630 +3845 145957 0.5480 +3845 146433 0.5160 +3845 146850 0.9040 +3845 152217 0.5460 +3845 152831 0.5200 +3845 153090 0.6600 +3845 161742 0.8680 +3845 163688 0.9980 +3845 168400 0.4190 +3845 171023 0.6910 +3845 196528 0.5520 +3845 200734 0.7420 +3845 200958 0.5800 +3845 221002 0.4530 +3845 253260 0.6420 +3845 255324 0.5980 +3845 255738 0.5650 +3845 256297 0.5730 +3845 283349 0.5150 +3845 284654 0.4460 +3845 285282 0.4030 +3845 389421 0.4680 +3845 389549 0.5790 +3845 392517 0.4270 +3845 399473 0.5850 +3845 399687 0.5940 +3845 400566 0.5960 +3845 440093 0.4530 +3845 440686 0.4530 +3845 653604 0.4720 +3845 728378 0.4230 +3845 100133941 0.4590 +3845 100271927 0.6700 +3845 100506658 0.4130 +3845 100532731 0.4730 +3845 102723407 0.4480 +3846 5007 0.5650 +3846 5499 0.5210 +3846 5837 0.5710 +3846 6919 0.4500 +3846 9672 0.6210 +3846 9725 0.4160 +3846 51360 0.4970 +3846 57830 0.5780 +3846 84869 0.4020 +3846 85290 0.5230 +3846 337880 0.6350 +3846 353143 0.5910 +3846 353144 0.6090 +3846 387264 0.9520 +3846 387266 0.4920 +3846 387267 0.7100 +3846 440021 0.5110 +3846 440023 0.5200 +3846 440051 0.4750 +3848 3849 0.9560 +3848 3850 0.6490 +3848 3851 0.4810 +3848 3852 0.9230 +3848 3853 0.6490 +3848 3854 0.6580 +3848 3855 0.4310 +3848 3856 0.6950 +3848 3857 0.6170 +3848 3858 0.9990 +3848 3866 0.5170 +3848 3884 0.4880 +3848 3887 0.4480 +3848 3888 0.4210 +3848 3889 0.4480 +3848 3890 0.4170 +3848 3891 0.4190 +3848 3892 0.4440 +3848 4014 0.9530 +3848 4627 0.4670 +3848 5266 0.4950 +3848 5317 0.4340 +3848 5328 0.4830 +3848 5329 0.7000 +3848 5644 0.7860 +3848 5790 0.4250 +3848 5916 0.5100 +3848 5987 0.4360 +3848 6187 0.4330 +3848 6194 0.4350 +3848 6278 0.4760 +3848 6521 0.4620 +3848 6698 0.4720 +3848 6699 0.5830 +3848 6701 0.4050 +3848 6707 0.4580 +3848 7051 0.6720 +3848 7053 0.4590 +3848 7082 0.4310 +3848 7477 0.4270 +3848 7837 0.4990 +3848 8312 0.4490 +3848 8974 0.4930 +3848 9119 0.4430 +3848 9622 0.4230 +3848 9775 0.5560 +3848 11005 0.4180 +3848 11322 0.4170 +3848 23581 0.5430 +3848 23636 0.4770 +3848 26154 0.4590 +3848 51327 0.4060 +3848 51350 0.4270 +3848 51574 0.5320 +3848 55613 0.5720 +3848 57822 0.4110 +3848 59344 0.4610 +3848 65078 0.4060 +3848 66036 0.5260 +3848 79755 0.4190 +3848 93099 0.4350 +3848 112802 0.4270 +3848 117159 0.5010 +3848 121391 0.4290 +3848 126410 0.4610 +3848 140807 0.4720 +3848 144501 0.4200 +3848 162514 0.6190 +3848 170679 0.4220 +3848 196374 0.4410 +3848 204219 0.4470 +3848 285220 0.7320 +3848 285848 0.4530 +3848 286887 0.5760 +3848 319101 0.4610 +3848 338785 0.4300 +3848 348938 0.4460 +3848 374454 0.8980 +3848 374897 0.4630 +3848 388533 0.6130 +3848 388697 0.4190 +3848 388698 0.9550 +3848 389816 0.7260 +3848 728378 0.4070 +3849 3850 0.4280 +3849 3851 0.4410 +3849 3852 0.8710 +3849 3853 0.4450 +3849 3854 0.6660 +3849 3855 0.4420 +3849 3856 0.6570 +3849 3857 0.5210 +3849 3858 0.9040 +3849 3866 0.5440 +3849 3880 0.5690 +3849 3881 0.5530 +3849 3887 0.4510 +3849 3888 0.4200 +3849 3889 0.4490 +3849 3890 0.4540 +3849 3891 0.4270 +3849 3892 0.4620 +3849 3963 0.5820 +3849 4014 0.8000 +3849 5644 0.7450 +3849 5916 0.5670 +3849 6694 0.4480 +3849 7051 0.4920 +3849 7057 0.4520 +3849 8435 0.7380 +3849 8687 0.6640 +3849 9119 0.4400 +3849 9333 0.4190 +3849 11005 0.4330 +3849 23581 0.4500 +3849 26154 0.4230 +3849 26239 0.5970 +3849 29978 0.4580 +3849 51350 0.4450 +3849 51574 0.5320 +3849 51806 0.4760 +3849 59344 0.4840 +3849 112802 0.4350 +3849 121391 0.4470 +3849 125115 0.5130 +3849 126410 0.4720 +3849 132724 0.4340 +3849 140258 0.4090 +3849 140807 0.4970 +3849 144501 0.4400 +3849 145264 0.5590 +3849 147409 0.4030 +3849 149041 0.5160 +3849 196374 0.4830 +3849 285848 0.4540 +3849 286887 0.4430 +3849 319101 0.5370 +3849 337977 0.4050 +3849 338785 0.6130 +3849 348938 0.4900 +3849 374454 0.8940 +3849 374897 0.5680 +3849 388533 0.6140 +3849 388698 0.7800 +3849 448834 0.4770 +3849 448835 0.4720 +3849 653499 0.5670 +3850 3851 0.4590 +3850 3852 0.7750 +3850 3853 0.4370 +3850 3854 0.4320 +3850 3855 0.4260 +3850 3856 0.4770 +3850 3861 0.7090 +3850 3887 0.4680 +3850 3888 0.4220 +3850 3889 0.4570 +3850 3890 0.4370 +3850 3891 0.4260 +3850 3892 0.4420 +3850 4060 0.4090 +3850 4070 0.4390 +3850 4166 0.5830 +3850 4586 0.4210 +3850 5080 0.4790 +3850 7045 0.4860 +3850 8829 0.5720 +3850 9119 0.5200 +3850 9429 0.6510 +3850 11081 0.6150 +3850 29914 0.5490 +3850 51350 0.4470 +3850 83959 0.4430 +3850 112802 0.4190 +3850 121391 0.4150 +3850 139728 0.4480 +3850 140807 0.4240 +3850 144501 0.4100 +3850 196374 0.4670 +3850 286887 0.4300 +3850 319101 0.4240 +3850 338785 0.4360 +3850 339327 0.4100 +3850 340273 0.4330 +3850 374454 0.4330 +3850 405754 0.4010 +3851 3852 0.5310 +3851 3853 0.5220 +3851 3854 0.4840 +3851 3855 0.4860 +3851 3856 0.4930 +3851 3860 0.9860 +3851 3866 0.5930 +3851 3883 0.6140 +3851 3884 0.5250 +3851 3887 0.4810 +3851 3888 0.4460 +3851 3889 0.4700 +3851 3890 0.4440 +3851 3891 0.4400 +3851 3892 0.4610 +3851 4014 0.4740 +3851 4489 0.6660 +3851 4493 0.4910 +3851 4502 0.5900 +3851 4586 0.4900 +3851 4691 0.4140 +3851 5783 0.4590 +3851 6698 0.5020 +3851 6700 0.4560 +3851 6701 0.4460 +3851 6707 0.6790 +3851 7051 0.4390 +3851 7053 0.5200 +3851 7356 0.4140 +3851 8796 0.4970 +3851 9119 0.4450 +3851 11005 0.4270 +3851 26085 0.4330 +3851 49860 0.7040 +3851 51350 0.4390 +3851 63826 0.6700 +3851 83896 0.4330 +3851 84518 0.4180 +3851 84560 0.5460 +3851 89777 0.4670 +3851 112802 0.4220 +3851 121391 0.4290 +3851 126638 0.4520 +3851 132724 0.4520 +3851 140807 0.4290 +3851 144501 0.4440 +3851 196374 0.5630 +3851 283152 0.4380 +3851 286887 0.4690 +3851 319101 0.4190 +3851 338785 0.4720 +3851 374454 0.4370 +3851 388533 0.5450 +3851 388698 0.4550 +3852 3853 0.9150 +3852 3854 0.8610 +3852 3855 0.4620 +3852 3856 0.4780 +3852 3858 0.7930 +3852 3860 0.4830 +3852 3861 0.9990 +3852 3866 0.7490 +3852 3868 0.8610 +3852 3872 0.8660 +3852 3875 0.4630 +3852 3887 0.4750 +3852 3888 0.4140 +3852 3889 0.4550 +3852 3890 0.4320 +3852 3891 0.4270 +3852 3892 0.4600 +3852 3909 0.4660 +3852 3914 0.4950 +3852 3918 0.4990 +3852 3963 0.6200 +3852 4014 0.8150 +3852 4070 0.4570 +3852 4072 0.6730 +3852 4103 0.4070 +3852 4267 0.5410 +3852 4288 0.4730 +3852 4311 0.5970 +3852 4586 0.6230 +3852 4609 0.5080 +3852 4625 0.4430 +3852 4644 0.5040 +3852 4684 0.5930 +3852 4790 0.4730 +3852 4804 0.4160 +3852 4811 0.4070 +3852 4824 0.5710 +3852 4851 0.4530 +3852 5175 0.5870 +3852 5241 0.7770 +3852 5268 0.6180 +3852 5275 0.5160 +3852 5290 0.4520 +3852 5304 0.6700 +3852 5317 0.8350 +3852 5339 0.7500 +3852 5650 0.4070 +3852 5653 0.4540 +3852 5728 0.5130 +3852 5734 0.5070 +3852 5788 0.5760 +3852 5970 0.4160 +3852 6098 0.4310 +3852 6278 0.4190 +3852 6347 0.5100 +3852 6363 0.5840 +3852 6364 0.6360 +3852 6440 0.6160 +3852 6469 0.4300 +3852 6591 0.4660 +3852 6615 0.4100 +3852 6657 0.6730 +3852 6662 0.5320 +3852 6663 0.5180 +3852 6699 0.4770 +3852 6855 0.6970 +3852 7038 0.4270 +3852 7051 0.5200 +3852 7056 0.4500 +3852 7080 0.7280 +3852 7113 0.4300 +3852 7124 0.5580 +3852 7157 0.7370 +3852 7273 0.4440 +3852 7348 0.4250 +3852 7356 0.7290 +3852 7379 0.5740 +3852 7380 0.5830 +3852 7490 0.6820 +3852 7837 0.4770 +3852 7849 0.6010 +3852 8140 0.4270 +3852 8456 0.5400 +3852 8549 0.4840 +3852 8626 0.8610 +3852 8842 0.4610 +3852 9119 0.4900 +3852 9476 0.7920 +3852 9635 0.5040 +3852 9982 0.4180 +3852 10232 0.4610 +3852 10630 0.5790 +3852 11005 0.4270 +3852 11188 0.4090 +3852 23308 0.4090 +3852 23363 0.5260 +3852 23509 0.4110 +3852 23600 0.7230 +3852 23650 0.8020 +3852 25818 0.5210 +3852 27076 0.4200 +3852 29126 0.4790 +3852 30008 0.4200 +3852 51350 0.4180 +3852 51574 0.5320 +3852 56676 0.4530 +3852 59352 0.4280 +3852 84260 0.4210 +3852 84525 0.4150 +3852 84951 0.4110 +3852 93099 0.5040 +3852 112802 0.4370 +3852 117156 0.5450 +3852 121391 0.4450 +3852 122706 0.4480 +3852 137902 0.4770 +3852 140807 0.4410 +3852 144501 0.4210 +3852 196374 0.4920 +3852 256646 0.4360 +3852 286887 0.7230 +3852 319101 0.4220 +3852 338785 0.4400 +3852 374454 0.4410 +3852 388533 0.5430 +3852 388698 0.7250 +3852 400566 0.8240 +3852 653499 0.5130 +3852 727897 0.5130 +3852 100133941 0.5870 +3853 3854 0.8860 +3853 3855 0.4710 +3853 3856 0.4720 +3853 3860 0.9000 +3853 3861 0.7320 +3853 3866 0.7660 +3853 3868 0.9280 +3853 3872 0.8110 +3853 3881 0.7320 +3853 3887 0.4850 +3853 3888 0.4340 +3853 3889 0.4660 +3853 3890 0.4400 +3853 3891 0.4360 +3853 3892 0.4690 +3853 3918 0.5670 +3853 3963 0.5360 +3853 4014 0.4160 +3853 5268 0.5440 +3853 5275 0.6490 +3853 5317 0.5800 +3853 5329 0.4090 +3853 6278 0.6270 +3853 6283 0.4520 +3853 6317 0.5880 +3853 6318 0.4250 +3853 6364 0.4310 +3853 6695 0.4050 +3853 6698 0.7130 +3853 6699 0.8820 +3853 6700 0.4980 +3853 6701 0.5320 +3853 6703 0.5150 +3853 6707 0.7000 +3853 7051 0.4820 +3853 7348 0.4290 +3853 7379 0.4250 +3853 8140 0.4040 +3853 8626 0.5040 +3853 8687 0.6440 +3853 8796 0.4410 +3853 9119 0.5050 +3853 9635 0.5010 +3853 9982 0.5340 +3853 10226 0.4130 +3853 10331 0.4410 +3853 11202 0.4450 +3853 23650 0.5390 +3853 24144 0.4800 +3853 25818 0.5380 +3853 51350 0.4300 +3853 53836 0.4250 +3853 54535 0.6480 +3853 57159 0.5100 +3853 112802 0.4320 +3853 121391 0.4400 +3853 125115 0.5530 +3853 131566 0.4410 +3853 140807 0.4380 +3853 144501 0.4470 +3853 163778 0.4100 +3853 196374 0.5170 +3853 259266 0.4500 +3853 286887 0.7100 +3853 319101 0.4330 +3853 338324 0.4610 +3853 338785 0.4450 +3853 374454 0.5770 +3853 388533 0.4160 +3853 388698 0.4390 +3853 653499 0.4690 +3853 728113 0.4150 +3854 3855 0.4620 +3854 3856 0.6540 +3854 3857 0.5630 +3854 3858 0.5220 +3854 3860 0.5530 +3854 3861 0.8350 +3854 3866 0.5770 +3854 3868 0.9380 +3854 3872 0.8740 +3854 3880 0.4960 +3854 3887 0.4860 +3854 3888 0.4300 +3854 3889 0.4620 +3854 3890 0.4360 +3854 3891 0.4340 +3854 3892 0.4610 +3854 3918 0.4050 +3854 3963 0.5680 +3854 4014 0.4160 +3854 4851 0.4700 +3854 5125 0.7340 +3854 5266 0.4140 +3854 5268 0.5520 +3854 5275 0.6000 +3854 5317 0.6280 +3854 5650 0.5700 +3854 5653 0.5420 +3854 5655 0.4430 +3854 6278 0.6320 +3854 6317 0.5430 +3854 6318 0.5690 +3854 6698 0.6650 +3854 6699 0.7410 +3854 6700 0.5440 +3854 6701 0.5890 +3854 6703 0.5090 +3854 6704 0.4320 +3854 6707 0.6070 +3854 7051 0.4260 +3854 7157 0.5190 +3854 8626 0.4720 +3854 8687 0.6190 +3854 9119 0.5550 +3854 9159 0.5230 +3854 9407 0.4140 +3854 9635 0.4580 +3854 11005 0.4310 +3854 11202 0.5080 +3854 23650 0.5450 +3854 25818 0.5590 +3854 51350 0.4250 +3854 51458 0.4480 +3854 112802 0.4290 +3854 121391 0.4330 +3854 126393 0.4740 +3854 140807 0.4400 +3854 144501 0.4430 +3854 196374 0.4950 +3854 286887 0.7720 +3854 319101 0.4180 +3854 338324 0.4150 +3854 338785 0.4430 +3854 374454 0.4470 +3854 388533 0.5380 +3854 388698 0.4420 +3855 3856 0.7460 +3855 3868 0.5990 +3855 3872 0.4720 +3855 3875 0.4490 +3855 3880 0.7010 +3855 3887 0.5460 +3855 3888 0.4080 +3855 3889 0.4660 +3855 3890 0.4160 +3855 3891 0.4260 +3855 3892 0.5040 +3855 4070 0.6080 +3855 4072 0.7350 +3855 4233 0.4100 +3855 4267 0.7160 +3855 4282 0.7600 +3855 4292 0.4500 +3855 4311 0.8040 +3855 4436 0.4360 +3855 4585 0.4700 +3855 4586 0.7450 +3855 4588 0.6970 +3855 4656 0.4310 +3855 4684 0.7360 +3855 4741 0.4640 +3855 4893 0.4070 +3855 5076 0.5470 +3855 5175 0.6080 +3855 5241 0.7060 +3855 5265 0.4160 +3855 5266 0.4320 +3855 5290 0.4400 +3855 5304 0.8480 +3855 5395 0.4490 +3855 5460 0.4600 +3855 5546 0.4720 +3855 5734 0.5070 +3855 5788 0.5820 +3855 6098 0.5250 +3855 6382 0.4660 +3855 6598 0.5270 +3855 6657 0.4200 +3855 6662 0.4950 +3855 6663 0.5680 +3855 6855 0.8400 +3855 6928 0.5170 +3855 7022 0.4150 +3855 7030 0.6280 +3855 7038 0.6470 +3855 7056 0.4110 +3855 7080 0.8730 +3855 7088 0.4390 +3855 7104 0.4460 +3855 7124 0.4510 +3855 7157 0.7870 +3855 7270 0.4180 +3855 7345 0.4590 +3855 7379 0.5210 +3855 7380 0.6210 +3855 7490 0.8320 +3855 7837 0.4860 +3855 7849 0.8760 +3855 8521 0.4270 +3855 8549 0.4360 +3855 8558 0.5140 +3855 8626 0.4330 +3855 8842 0.5170 +3855 9119 0.4320 +3855 9476 0.8810 +3855 10232 0.4550 +3855 10551 0.4980 +3855 10562 0.4430 +3855 11074 0.4280 +3855 11151 0.4150 +3855 23314 0.5410 +3855 23600 0.8110 +3855 27087 0.6240 +3855 27436 0.4610 +3855 29126 0.4790 +3855 30813 0.4200 +3855 51350 0.4160 +3855 55107 0.5610 +3855 55508 0.4660 +3855 57167 0.5520 +3855 79923 0.4230 +3855 112802 0.4210 +3855 121391 0.4190 +3855 137902 0.4680 +3855 140807 0.4400 +3855 144501 0.5610 +3855 196374 0.4340 +3855 256646 0.4350 +3855 286887 0.4330 +3855 319101 0.4350 +3855 338785 0.4320 +3855 374454 0.4140 +3855 400566 0.9600 +3856 3857 0.5270 +3856 3860 0.4210 +3856 3861 0.5020 +3856 3866 0.4340 +3856 3868 0.4200 +3856 3872 0.5790 +3856 3875 0.9990 +3856 3880 0.7960 +3856 3883 0.4530 +3856 3887 0.4500 +3856 3888 0.4480 +3856 3889 0.4340 +3856 3890 0.4550 +3856 3891 0.4150 +3856 3892 0.4380 +3856 4000 0.4260 +3856 4070 0.5410 +3856 4072 0.8450 +3856 4267 0.4310 +3856 4288 0.4110 +3856 4311 0.5430 +3856 4586 0.4570 +3856 4591 0.4430 +3856 4609 0.5170 +3856 4684 0.5050 +3856 4824 0.5830 +3856 5175 0.5820 +3856 5241 0.5880 +3856 5304 0.4200 +3856 5317 0.6570 +3856 5318 0.5360 +3856 5327 0.4050 +3856 5339 0.7830 +3856 5340 0.6460 +3856 5460 0.5030 +3856 5493 0.7910 +3856 5594 0.4070 +3856 5728 0.5200 +3856 5788 0.6220 +3856 6275 0.5810 +3856 6591 0.5050 +3856 6615 0.4970 +3856 6657 0.6390 +3856 6662 0.4860 +3856 6855 0.6210 +3856 6908 0.4790 +3856 7052 0.5830 +3856 7057 0.4930 +3856 7062 0.4430 +3856 7070 0.4010 +3856 7080 0.4180 +3856 7082 0.6000 +3856 7113 0.4090 +3856 7133 0.7080 +3856 7157 0.7630 +3856 7291 0.4670 +3856 7314 0.4710 +3856 7324 0.4880 +3856 7348 0.4100 +3856 7356 0.4080 +3856 7415 0.4640 +3856 7431 0.4940 +3856 7490 0.4230 +3856 7837 0.4920 +3856 7849 0.4780 +3856 8091 0.4800 +3856 8456 0.4420 +3856 8517 0.5590 +3856 8626 0.4060 +3856 8687 0.4870 +3856 8795 0.4230 +3856 8805 0.4300 +3856 8842 0.4820 +3856 8878 0.7980 +3856 9076 0.4280 +3856 9119 0.4570 +3856 9191 0.6000 +3856 10049 0.4120 +3856 10376 0.4880 +3856 10551 0.6620 +3856 10763 0.4370 +3856 11187 0.6260 +3856 23600 0.4360 +3856 25898 0.6000 +3856 51350 0.4560 +3856 54474 0.4090 +3856 55848 0.4380 +3856 79923 0.5150 +3856 79968 0.5110 +3856 83481 0.5860 +3856 84260 0.4310 +3856 112802 0.4380 +3856 121391 0.4210 +3856 122706 0.4280 +3856 137902 0.4750 +3856 140807 0.4240 +3856 144501 0.5130 +3856 162989 0.6680 +3856 196374 0.4510 +3856 200895 0.4840 +3856 286887 0.4540 +3856 319101 0.4180 +3856 338785 0.4560 +3856 374454 0.4480 +3856 400566 0.7200 +3856 728378 0.5730 +3856 100133941 0.6460 +3856 100506658 0.4080 +3856 114108587 0.4260 +3857 3858 0.5750 +3857 3859 0.4530 +3857 3860 0.4400 +3857 3861 0.5370 +3857 3866 0.4420 +3857 3868 0.5470 +3857 3872 0.4940 +3857 3875 0.6520 +3857 3880 0.5520 +3857 3881 0.4680 +3857 3882 0.5580 +3857 3883 0.4390 +3857 3884 0.4430 +3857 3885 0.4330 +3857 4014 0.4270 +3857 5790 0.4360 +3857 6187 0.4620 +3857 6194 0.4110 +3857 7474 0.4730 +3857 8065 0.4200 +3857 8451 0.4480 +3857 8453 0.4050 +3857 8454 0.4610 +3857 8687 0.4290 +3857 8688 0.4160 +3857 8689 0.4380 +3857 9775 0.5560 +3857 10763 0.4560 +3857 25984 0.4380 +3857 54474 0.7710 +3857 55613 0.6610 +3857 55832 0.4160 +3857 66036 0.6120 +3857 79719 0.7320 +3857 117159 0.5400 +3857 125115 0.4300 +3857 147183 0.4430 +3857 149041 0.5160 +3857 162605 0.4330 +3857 192666 0.4140 +3857 342574 0.4360 +3857 353288 0.4380 +3857 390792 0.4010 +3857 400566 0.5950 +3858 3859 0.4330 +3858 3860 0.4300 +3858 3861 0.4930 +3858 3866 0.4340 +3858 3868 0.7880 +3858 3872 0.4830 +3858 3875 0.4450 +3858 3880 0.4230 +3858 3881 0.4240 +3858 3882 0.4440 +3858 3883 0.4390 +3858 3884 0.4140 +3858 3885 0.4180 +3858 4000 0.4230 +3858 4014 0.9480 +3858 5175 0.5090 +3858 5460 0.4120 +3858 5644 0.7800 +3858 5650 0.4570 +3858 5653 0.5660 +3858 5655 0.4230 +3858 6278 0.5110 +3858 6707 0.4420 +3858 7051 0.7200 +3858 7053 0.4700 +3858 7082 0.4460 +3858 7299 0.4440 +3858 7369 0.4430 +3858 8294 0.4340 +3858 8359 0.4350 +3858 8360 0.4300 +3858 8361 0.4300 +3858 8362 0.4340 +3858 8363 0.4350 +3858 8364 0.4310 +3858 8366 0.4340 +3858 8367 0.4330 +3858 8368 0.4350 +3858 8370 0.4320 +3858 8687 0.4060 +3858 8688 0.4150 +3858 8689 0.4390 +3858 9076 0.4110 +3858 9333 0.4510 +3858 11005 0.4990 +3858 11012 0.4360 +3858 23581 0.4910 +3858 25984 0.4440 +3858 26154 0.4700 +3858 30816 0.4930 +3858 54474 0.4250 +3858 57822 0.4090 +3858 59344 0.4460 +3858 121504 0.4310 +3858 125115 0.4110 +3858 126410 0.4400 +3858 147183 0.4360 +3858 162605 0.4360 +3858 170679 0.4050 +3858 192666 0.4260 +3858 204219 0.4910 +3858 285220 0.7310 +3858 285848 0.4810 +3858 342574 0.4490 +3858 348938 0.4560 +3858 353288 0.4380 +3858 374454 0.8040 +3858 374897 0.4610 +3858 388533 0.5820 +3858 388697 0.4320 +3858 388698 0.9320 +3858 390792 0.4020 +3858 400566 0.4180 +3858 405754 0.5020 +3858 448834 0.4080 +3858 554313 0.4410 +3859 3860 0.4220 +3859 3861 0.4200 +3859 3866 0.4260 +3859 3868 0.4060 +3859 3872 0.4070 +3859 3875 0.4100 +3859 3880 0.4230 +3859 3881 0.4260 +3859 3882 0.4080 +3859 3883 0.4440 +3859 3884 0.4330 +3859 3885 0.4410 +3859 4060 0.4050 +3859 4070 0.4020 +3859 4166 0.5950 +3859 4318 0.4890 +3859 4586 0.4270 +3859 5078 0.4240 +3859 5080 0.7850 +3859 5539 0.4630 +3859 6657 0.4530 +3859 7045 0.4600 +3859 8687 0.4090 +3859 8688 0.4090 +3859 8689 0.4350 +3859 9429 0.5830 +3859 11081 0.6970 +3859 25984 0.4230 +3859 26610 0.5120 +3859 29914 0.5160 +3859 54474 0.5730 +3859 63973 0.4260 +3859 83959 0.4190 +3859 120526 0.5120 +3859 125115 0.4400 +3859 147183 0.4130 +3859 162605 0.4130 +3859 192666 0.4230 +3859 196294 0.4680 +3859 340273 0.5000 +3859 341019 0.4970 +3859 342574 0.4670 +3859 353288 0.4050 +3859 390792 0.4100 +3860 3861 0.5610 +3860 3866 0.6760 +3860 3868 0.5960 +3860 3872 0.5960 +3860 3875 0.4890 +3860 3880 0.6580 +3860 3881 0.4500 +3860 3882 0.4800 +3860 3883 0.4370 +3860 3884 0.4010 +3860 3885 0.4040 +3860 4014 0.4440 +3860 4070 0.4500 +3860 4489 0.5880 +3860 4493 0.5840 +3860 4502 0.5570 +3860 4586 0.4790 +3860 4637 0.4430 +3860 4804 0.4540 +3860 5784 0.6040 +3860 6657 0.4770 +3860 6698 0.4740 +3860 6699 0.4710 +3860 6707 0.7590 +3860 7051 0.4310 +3860 7053 0.4740 +3860 7067 0.4330 +3860 7348 0.4420 +3860 7356 0.4290 +3860 7379 0.4150 +3860 7380 0.4480 +3860 8581 0.4210 +3860 8626 0.4110 +3860 8687 0.4070 +3860 8688 0.4190 +3860 8689 0.4570 +3860 23286 0.4060 +3860 25984 0.4590 +3860 26122 0.4020 +3860 27076 0.4410 +3860 49860 0.5410 +3860 54474 0.6240 +3860 84518 0.4030 +3860 84560 0.4850 +3860 125115 0.4270 +3860 147183 0.4060 +3860 162605 0.4030 +3860 166785 0.6330 +3860 192666 0.4890 +3860 200895 0.5110 +3860 342574 0.4300 +3860 353288 0.4040 +3860 388533 0.4900 +3860 388698 0.4640 +3860 400566 0.5200 +3861 3866 0.7310 +3861 3868 0.8680 +3861 3872 0.8140 +3861 3875 0.6370 +3861 3880 0.4700 +3861 3881 0.4460 +3861 3882 0.4250 +3861 3883 0.4600 +3861 3884 0.4160 +3861 3885 0.4270 +3861 3909 0.4850 +3861 3910 0.4050 +3861 3914 0.5000 +3861 3918 0.4850 +3861 3963 0.6120 +3861 4014 0.7820 +3861 4015 0.4210 +3861 4070 0.4180 +3861 4072 0.5870 +3861 4193 0.4250 +3861 4222 0.5120 +3861 4288 0.4140 +3861 4311 0.4660 +3861 4586 0.4420 +3861 4609 0.4840 +3861 4741 0.5120 +3861 4747 0.4750 +3861 4824 0.4180 +3861 4851 0.4670 +3861 5175 0.5210 +3861 5241 0.7340 +3861 5268 0.5660 +3861 5317 0.7770 +3861 5339 0.8480 +3861 5460 0.5850 +3861 5493 0.4390 +3861 5650 0.4430 +3861 5728 0.6780 +3861 5788 0.5120 +3861 5925 0.4230 +3861 6278 0.4550 +3861 6347 0.5320 +3861 6363 0.5620 +3861 6364 0.6490 +3861 6469 0.4620 +3861 6591 0.4960 +3861 6615 0.4310 +3861 6657 0.5200 +3861 6662 0.5490 +3861 6663 0.4470 +3861 6698 0.4240 +3861 6699 0.5640 +3861 6707 0.4080 +3861 6855 0.4180 +3861 7051 0.5450 +3861 7070 0.4020 +3861 7080 0.4980 +3861 7124 0.5360 +3861 7157 0.6030 +3861 7356 0.5030 +3861 7379 0.5080 +3861 7380 0.5070 +3861 7431 0.4760 +3861 7837 0.4500 +3861 8456 0.4790 +3861 8549 0.5150 +3861 8626 0.7900 +3861 8687 0.4130 +3861 8688 0.4130 +3861 8689 0.4520 +3861 8842 0.6100 +3861 9118 0.4640 +3861 9314 0.4230 +3861 9333 0.4170 +3861 9635 0.4130 +3861 9775 0.5560 +3861 10117 0.5810 +3861 10763 0.5860 +3861 11187 0.5570 +3861 23363 0.5260 +3861 23600 0.5050 +3861 23650 0.5190 +3861 25818 0.4510 +3861 25984 0.4580 +3861 26018 0.4650 +3861 27076 0.5090 +3861 50489 0.4980 +3861 51176 0.4810 +3861 54474 0.4250 +3861 54535 0.5800 +3861 55326 0.4050 +3861 59352 0.4930 +3861 60681 0.5900 +3861 79755 0.4100 +3861 79923 0.4270 +3861 81493 0.4080 +3861 83987 0.5170 +3861 125115 0.4160 +3861 134147 0.4950 +3861 137902 0.4480 +3861 140807 0.4010 +3861 147183 0.4350 +3861 161176 0.5950 +3861 162605 0.4230 +3861 192666 0.4480 +3861 286887 0.5540 +3861 342574 0.4600 +3861 353288 0.4330 +3861 388533 0.5670 +3861 388698 0.6970 +3861 390792 0.4180 +3861 400566 0.6220 +3861 653499 0.4210 +3861 100133941 0.5670 +3866 3868 0.6210 +3866 3872 0.6180 +3866 3875 0.6260 +3866 3880 0.5700 +3866 3881 0.4550 +3866 3882 0.4610 +3866 3883 0.4750 +3866 3884 0.4100 +3866 3885 0.4170 +3866 3892 0.4110 +3866 4014 0.5320 +3866 4070 0.4620 +3866 4288 0.4570 +3866 4345 0.5060 +3866 4493 0.4220 +3866 4804 0.4350 +3866 5268 0.4220 +3866 5317 0.6030 +3866 5653 0.4020 +3866 6363 0.4050 +3866 6364 0.4630 +3866 6662 0.5020 +3866 7532 0.4060 +3866 8549 0.5430 +3866 8626 0.5370 +3866 8687 0.4130 +3866 8688 0.4060 +3866 8689 0.4540 +3866 9355 0.4750 +3866 9429 0.4330 +3866 9982 0.4340 +3866 10763 0.4510 +3866 11081 0.4190 +3866 22822 0.4220 +3866 22836 0.4340 +3866 25984 0.4680 +3866 26018 0.6450 +3866 27076 0.4150 +3866 54474 0.5770 +3866 59352 0.6210 +3866 112869 0.5020 +3866 125115 0.4070 +3866 147183 0.4220 +3866 162605 0.4150 +3866 192666 0.4320 +3866 200895 0.4930 +3866 340273 0.4960 +3866 342574 0.4550 +3866 349633 0.4450 +3866 353288 0.4210 +3866 388698 0.4740 +3866 390792 0.4060 +3868 3872 0.8800 +3868 3875 0.4730 +3868 3880 0.4690 +3868 3881 0.4440 +3868 3882 0.4420 +3868 3883 0.4700 +3868 3884 0.4320 +3868 3885 0.4380 +3868 3963 0.5850 +3868 4014 0.6210 +3868 4741 0.4670 +3868 5266 0.5600 +3868 5317 0.5760 +3868 5493 0.4500 +3868 5650 0.5170 +3868 5653 0.4690 +3868 6278 0.8180 +3868 6317 0.5260 +3868 6318 0.4800 +3868 6698 0.6380 +3868 6699 0.6870 +3868 6700 0.4720 +3868 6701 0.5680 +3868 6703 0.5000 +3868 6707 0.5820 +3868 7051 0.6090 +3868 7062 0.5100 +3868 8581 0.4950 +3868 8687 0.4150 +3868 8688 0.4310 +3868 8689 0.4590 +3868 8796 0.4560 +3868 9119 0.4580 +3868 9775 0.5560 +3868 11202 0.4500 +3868 23650 0.4530 +3868 25818 0.4790 +3868 25984 0.4800 +3868 50616 0.4240 +3868 54474 0.4150 +3868 54535 0.7000 +3868 56300 0.4190 +3868 79651 0.4890 +3868 125115 0.4070 +3868 140807 0.6100 +3868 147183 0.4290 +3868 162605 0.4260 +3868 192666 0.4390 +3868 200895 0.4240 +3868 284366 0.5420 +3868 286887 0.5020 +3868 338324 0.6190 +3868 342574 0.4540 +3868 353142 0.4090 +3868 353288 0.4380 +3868 374897 0.4890 +3868 388533 0.4770 +3868 388698 0.6440 +3872 3875 0.6860 +3872 3880 0.5090 +3872 3881 0.4280 +3872 3882 0.4230 +3872 3883 0.4560 +3872 3884 0.4210 +3872 3885 0.4270 +3872 3914 0.5250 +3872 3918 0.4860 +3872 3963 0.4250 +3872 4014 0.4700 +3872 4072 0.4100 +3872 4586 0.4010 +3872 5241 0.5280 +3872 5268 0.6270 +3872 5317 0.4700 +3872 6278 0.4190 +3872 6317 0.4030 +3872 6364 0.4860 +3872 6423 0.4420 +3872 6424 0.4220 +3872 6662 0.4160 +3872 6698 0.4050 +3872 6699 0.4850 +3872 6774 0.4130 +3872 7051 0.4150 +3872 7157 0.4380 +3872 8312 0.4330 +3872 8626 0.4700 +3872 8687 0.4140 +3872 8688 0.4160 +3872 8689 0.4500 +3872 8717 0.5230 +3872 9119 0.4220 +3872 10190 0.8980 +3872 23135 0.4260 +3872 23363 0.5260 +3872 23650 0.5880 +3872 25984 0.4580 +3872 54474 0.4230 +3872 54535 0.6790 +3872 125115 0.4300 +3872 140807 0.5130 +3872 147183 0.4250 +3872 162605 0.4190 +3872 192666 0.4100 +3872 200895 0.4240 +3872 283748 0.4040 +3872 339366 0.4190 +3872 342574 0.4810 +3872 353288 0.4210 +3872 388698 0.4600 +3872 390792 0.4080 +3872 400566 0.5810 +3875 3880 0.9280 +3875 3881 0.4080 +3875 3882 0.4060 +3875 3883 0.5630 +3875 3884 0.4030 +3875 3885 0.4210 +3875 3888 0.4430 +3875 3958 0.4990 +3875 4072 0.7890 +3875 4233 0.4120 +3875 4311 0.4900 +3875 4586 0.4420 +3875 4609 0.5040 +3875 4627 0.5180 +3875 4684 0.4490 +3875 4824 0.4740 +3875 5052 0.5180 +3875 5175 0.5210 +3875 5241 0.5340 +3875 5265 0.4550 +3875 5310 0.6800 +3875 5317 0.5050 +3875 5318 0.4340 +3875 5339 0.7820 +3875 5411 0.5960 +3875 5460 0.5780 +3875 5728 0.5990 +3875 5788 0.5710 +3875 5894 0.4040 +3875 6047 0.5450 +3875 6144 0.4170 +3875 6591 0.5170 +3875 6615 0.5090 +3875 6657 0.5060 +3875 6662 0.4520 +3875 6692 0.4180 +3875 6712 0.4050 +3875 6855 0.5070 +3875 6898 0.4670 +3875 6999 0.5030 +3875 7040 0.4790 +3875 7062 0.4830 +3875 7070 0.5110 +3875 7076 0.5720 +3875 7082 0.5050 +3875 7083 0.4910 +3875 7113 0.4450 +3875 7124 0.4810 +3875 7133 0.9410 +3875 7157 0.5470 +3875 7291 0.4280 +3875 7431 0.5880 +3875 7490 0.6310 +3875 7531 0.5000 +3875 7533 0.4760 +3875 7534 0.8090 +3875 7837 0.4750 +3875 8361 0.6010 +3875 8476 0.4950 +3875 8687 0.4050 +3875 8688 0.4020 +3875 8689 0.4290 +3875 8717 0.7660 +3875 8842 0.5240 +3875 8878 0.4750 +3875 9076 0.4150 +3875 9191 0.7060 +3875 9232 0.4440 +3875 9314 0.4040 +3875 9370 0.6080 +3875 10049 0.6660 +3875 10399 0.4380 +3875 10551 0.4910 +3875 10615 0.4970 +3875 10763 0.6110 +3875 10971 0.7320 +3875 11187 0.7070 +3875 22800 0.4160 +3875 22827 0.4250 +3875 25984 0.4480 +3875 26269 0.5530 +3875 27122 0.4580 +3875 30816 0.5140 +3875 51429 0.4490 +3875 54474 0.6470 +3875 56729 0.5310 +3875 59272 0.4490 +3875 64321 0.4510 +3875 79923 0.5520 +3875 79968 0.5170 +3875 80339 0.4280 +3875 83481 0.6930 +3875 84260 0.4180 +3875 84666 0.5280 +3875 125115 0.4130 +3875 137902 0.4510 +3875 147183 0.4210 +3875 162605 0.4180 +3875 162989 0.6690 +3875 192666 0.4060 +3875 200895 0.4260 +3875 342574 0.4460 +3875 353288 0.4330 +3875 390792 0.4270 +3875 400566 0.8010 +3875 405754 0.5120 +3875 100133941 0.5900 +3875 100506658 0.4250 +3880 3881 0.4030 +3880 3882 0.4150 +3880 3883 0.4360 +3880 3885 0.4060 +3880 3958 0.7470 +3880 4015 0.4100 +3880 4060 0.5320 +3880 4070 0.5530 +3880 4072 0.8880 +3880 4088 0.5130 +3880 4089 0.4250 +3880 4233 0.6720 +3880 4250 0.5140 +3880 4267 0.4800 +3880 4288 0.4210 +3880 4311 0.5950 +3880 4318 0.4160 +3880 4493 0.4120 +3880 4586 0.6250 +3880 4588 0.5440 +3880 4609 0.4580 +3880 4635 0.4240 +3880 4684 0.6080 +3880 4778 0.4110 +3880 4825 0.4630 +3880 4851 0.4960 +3880 4853 0.4090 +3880 4907 0.4090 +3880 5008 0.4180 +3880 5034 0.4350 +3880 5175 0.7810 +3880 5241 0.5330 +3880 5244 0.4630 +3880 5265 0.4860 +3880 5304 0.4840 +3880 5357 0.4570 +3880 5460 0.6730 +3880 5539 0.4060 +3880 5595 0.4060 +3880 5728 0.4070 +3880 5737 0.5820 +3880 5764 0.4830 +3880 5788 0.6110 +3880 5894 0.4050 +3880 6275 0.6790 +3880 6344 0.4360 +3880 6387 0.6510 +3880 6591 0.5010 +3880 6615 0.5070 +3880 6657 0.4660 +3880 6662 0.7310 +3880 6692 0.4150 +3880 6696 0.4530 +3880 6750 0.4430 +3880 6855 0.6090 +3880 6876 0.4100 +3880 6898 0.4120 +3880 6908 0.5110 +3880 6928 0.5170 +3880 7015 0.4190 +3880 7031 0.4180 +3880 7038 0.6030 +3880 7040 0.4870 +3880 7052 0.4090 +3880 7070 0.7310 +3880 7076 0.5540 +3880 7080 0.5790 +3880 7082 0.4130 +3880 7124 0.6330 +3880 7157 0.6250 +3880 7169 0.5350 +3880 7276 0.4160 +3880 7283 0.4610 +3880 7291 0.4810 +3880 7324 0.4030 +3880 7534 0.4280 +3880 7837 0.5180 +3880 7849 0.5340 +3880 8549 0.5830 +3880 8687 0.4050 +3880 8688 0.4120 +3880 8689 0.4280 +3880 8788 0.4420 +3880 8842 0.8120 +3880 9076 0.6170 +3880 9201 0.6340 +3880 9429 0.4720 +3880 9476 0.4790 +3880 10232 0.4300 +3880 10406 0.5110 +3880 10551 0.5950 +3880 10763 0.6960 +3880 11187 0.4340 +3880 11200 0.4500 +3880 23600 0.4300 +3880 25984 0.4420 +3880 29941 0.4220 +3880 50674 0.4790 +3880 51257 0.4480 +3880 54474 0.6640 +3880 57111 0.4540 +3880 57167 0.4590 +3880 57402 0.4210 +3880 64321 0.4630 +3880 79923 0.5350 +3880 79968 0.5170 +3880 81577 0.4170 +3880 83987 0.4170 +3880 84504 0.4110 +3880 85236 0.4580 +3880 114569 0.6140 +3880 125115 0.4180 +3880 137902 0.4950 +3880 144501 0.6610 +3880 147183 0.4080 +3880 162605 0.4050 +3880 168620 0.4100 +3880 192666 0.4110 +3880 200895 0.4280 +3880 256297 0.5640 +3880 342574 0.4320 +3880 353288 0.4100 +3880 390792 0.4010 +3880 400566 0.8770 +3880 100133941 0.6360 +3880 100532731 0.4320 +3881 3882 0.5100 +3881 3883 0.7760 +3881 3884 0.5450 +3881 3885 0.5270 +3881 3887 0.4850 +3881 3888 0.4900 +3881 3889 0.4980 +3881 3891 0.5190 +3881 3892 0.4930 +3881 6274 0.4280 +3881 7062 0.4700 +3881 8456 0.4020 +3881 8687 0.4810 +3881 8688 0.4730 +3881 8689 0.4730 +3881 25984 0.4620 +3881 51176 0.4900 +3881 51350 0.6390 +3881 54474 0.4440 +3881 81851 0.4200 +3881 83755 0.4040 +3881 83896 0.5430 +3881 83897 0.5710 +3881 83900 0.4400 +3881 85290 0.4580 +3881 85293 0.4160 +3881 112802 0.5000 +3881 125115 0.4390 +3881 147183 0.5490 +3881 147409 0.5300 +3881 162605 0.4890 +3881 192666 0.4450 +3881 342574 0.5970 +3881 353288 0.5030 +3881 390792 0.4150 +3882 3883 0.4850 +3882 3884 0.6050 +3882 3885 0.4900 +3882 3888 0.4050 +3882 3891 0.4320 +3882 4488 0.4930 +3882 4741 0.4280 +3882 8687 0.5580 +3882 8688 0.5510 +3882 8689 0.4620 +3882 25984 0.4450 +3882 49860 0.4960 +3882 54474 0.4230 +3882 83896 0.4410 +3882 83897 0.4060 +3882 85293 0.4050 +3882 125115 0.4410 +3882 144501 0.6720 +3882 147183 0.5060 +3882 162605 0.4470 +3882 192666 0.4340 +3882 337879 0.4050 +3882 337880 0.6160 +3882 342574 0.5610 +3882 353288 0.4770 +3882 390792 0.4310 +3883 3884 0.7110 +3883 3885 0.7070 +3883 3887 0.4160 +3883 3889 0.4570 +3883 3891 0.4540 +3883 4489 0.5500 +3883 4493 0.5570 +3883 4502 0.4970 +3883 6700 0.4030 +3883 6701 0.4120 +3883 6707 0.5410 +3883 7053 0.4540 +3883 8687 0.4850 +3883 8688 0.4450 +3883 8689 0.5090 +3883 25984 0.4660 +3883 54474 0.5710 +3883 81850 0.5100 +3883 81851 0.4770 +3883 83896 0.4590 +3883 84560 0.5010 +3883 112802 0.4460 +3883 125115 0.4390 +3883 147183 0.5390 +3883 147409 0.5280 +3883 162605 0.4900 +3883 192666 0.4340 +3883 200895 0.4950 +3883 337880 0.4110 +3883 342574 0.6240 +3883 353288 0.4840 +3883 390792 0.4180 +3884 3885 0.8550 +3884 3887 0.4210 +3884 3888 0.5380 +3884 3889 0.6410 +3884 3891 0.6030 +3884 3892 0.6020 +3884 7062 0.5540 +3884 8687 0.7030 +3884 8688 0.5420 +3884 8689 0.5280 +3884 9119 0.4220 +3884 25770 0.4500 +3884 25984 0.4420 +3884 51193 0.5110 +3884 54474 0.4180 +3884 55507 0.4110 +3884 81850 0.8150 +3884 81851 0.7860 +3884 81870 0.6940 +3884 81872 0.5430 +3884 83755 0.6440 +3884 83895 0.6420 +3884 83896 0.8780 +3884 83897 0.7450 +3884 83900 0.7790 +3884 83901 0.4780 +3884 83902 0.7440 +3884 84616 0.4040 +3884 85280 0.6770 +3884 85285 0.4400 +3884 85289 0.5340 +3884 85290 0.5400 +3884 85291 0.5240 +3884 85293 0.4330 +3884 112802 0.6290 +3884 125115 0.4390 +3884 140258 0.5550 +3884 147183 0.5920 +3884 147409 0.6250 +3884 162605 0.4700 +3884 192666 0.4120 +3884 196374 0.6370 +3884 254773 0.4550 +3884 337879 0.6510 +3884 337880 0.7610 +3884 337882 0.4320 +3884 338785 0.5510 +3884 342574 0.6720 +3884 353288 0.4760 +3884 390792 0.4200 +3884 400629 0.4020 +3884 728224 0.4780 +3884 100132476 0.8450 +3885 3887 0.4360 +3885 3889 0.4780 +3885 3891 0.6580 +3885 3892 0.4400 +3885 6274 0.4540 +3885 8687 0.5250 +3885 8688 0.4650 +3885 8689 0.4860 +3885 8710 0.4370 +3885 9119 0.7170 +3885 25984 0.4540 +3885 27287 0.5920 +3885 54474 0.4520 +3885 81850 0.4740 +3885 81851 0.7000 +3885 83895 0.7730 +3885 83896 0.6420 +3885 83900 0.4990 +3885 83902 0.4280 +3885 85280 0.4790 +3885 85293 0.4640 +3885 112802 0.4540 +3885 121391 0.4160 +3885 125115 0.4240 +3885 134285 0.4040 +3885 140258 0.4120 +3885 147183 0.5590 +3885 147409 0.5460 +3885 162605 0.4620 +3885 192666 0.4310 +3885 337878 0.4640 +3885 337879 0.4600 +3885 342574 0.6360 +3885 353288 0.4930 +3885 390792 0.4230 +3885 730755 0.5820 +3885 100132476 0.4260 +3885 100505753 0.5270 +3887 3888 0.5060 +3887 3889 0.5520 +3887 3890 0.4690 +3887 3891 0.4990 +3887 3892 0.8630 +3887 4762 0.4350 +3887 5013 0.5860 +3887 5653 0.4470 +3887 6278 0.4410 +3887 8687 0.6590 +3887 8688 0.6870 +3887 9119 0.4870 +3887 23116 0.4820 +3887 25818 0.4310 +3887 51350 0.4510 +3887 54916 0.4450 +3887 55582 0.4810 +3887 64399 0.4240 +3887 83896 0.4080 +3887 112802 0.4960 +3887 121391 0.4710 +3887 126637 0.4890 +3887 140258 0.4010 +3887 140807 0.4720 +3887 144501 0.5330 +3887 147409 0.7560 +3887 196374 0.4460 +3887 286887 0.4650 +3887 319101 0.4760 +3887 338785 0.4500 +3887 374454 0.4490 +3887 374654 0.5110 +3888 3889 0.6410 +3888 3890 0.5160 +3888 3891 0.5010 +3888 3892 0.5540 +3888 7062 0.4400 +3888 8687 0.5500 +3888 9119 0.5230 +3888 51350 0.4390 +3888 83896 0.6980 +3888 83901 0.4280 +3888 83902 0.4900 +3888 85289 0.4260 +3888 85290 0.4010 +3888 85291 0.4780 +3888 112802 0.6310 +3888 121391 0.6030 +3888 125115 0.4260 +3888 140258 0.4960 +3888 140807 0.4880 +3888 144501 0.4140 +3888 147183 0.4600 +3888 147409 0.7130 +3888 196374 0.4300 +3888 200634 0.4570 +3888 219957 0.4130 +3888 286887 0.4260 +3888 319101 0.4640 +3888 337878 0.7140 +3888 337879 0.6510 +3888 337880 0.6240 +3888 337970 0.4240 +3888 338785 0.4480 +3888 342574 0.4840 +3888 374454 0.4680 +3888 386678 0.4800 +3888 728224 0.4380 +3888 100132476 0.4720 +3889 3890 0.5180 +3889 3891 0.5440 +3889 3892 0.6640 +3889 7062 0.4970 +3889 7634 0.4040 +3889 8687 0.5870 +3889 8689 0.4040 +3889 9119 0.5180 +3889 51350 0.4600 +3889 54535 0.4010 +3889 81851 0.5800 +3889 83755 0.4190 +3889 83896 0.5990 +3889 83900 0.5120 +3889 85280 0.4710 +3889 85293 0.7120 +3889 85354 0.4460 +3889 112802 0.5590 +3889 121391 0.5340 +3889 123811 0.4780 +3889 139604 0.4060 +3889 140258 0.4960 +3889 140807 0.4810 +3889 144501 0.4650 +3889 147183 0.6160 +3889 147409 0.9130 +3889 148109 0.4530 +3889 196374 0.4430 +3889 220082 0.4390 +3889 286887 0.4490 +3889 319101 0.4800 +3889 337878 0.4920 +3889 337879 0.4970 +3889 337880 0.4550 +3889 337966 0.4350 +3889 337977 0.4340 +3889 338785 0.4580 +3889 339327 0.4820 +3889 342574 0.4370 +3889 353332 0.4080 +3889 374454 0.4600 +3889 390883 0.4290 +3889 100505753 0.4380 +3890 3891 0.4480 +3890 3892 0.4610 +3890 8456 0.4040 +3890 8581 0.4240 +3890 8689 0.6090 +3890 8991 0.4260 +3890 9119 0.4700 +3890 51350 0.5280 +3890 56257 0.4240 +3890 57016 0.4310 +3890 57519 0.4290 +3890 83896 0.5720 +3890 112802 0.4640 +3890 121391 0.4750 +3890 140258 0.5660 +3890 140807 0.4410 +3890 144501 0.4410 +3890 147409 0.5500 +3890 163778 0.4130 +3890 196374 0.4360 +3890 286887 0.4300 +3890 319101 0.4350 +3890 338785 0.4340 +3890 339105 0.4450 +3890 374454 0.4510 +3890 390260 0.5060 +3891 3892 0.6360 +3891 7062 0.4220 +3891 8688 0.6390 +3891 9119 0.4820 +3891 51350 0.4260 +3891 81850 0.4780 +3891 81872 0.4950 +3891 83755 0.5030 +3891 83896 0.6790 +3891 83897 0.4870 +3891 83902 0.4610 +3891 84616 0.4780 +3891 85290 0.6400 +3891 112802 0.7860 +3891 121391 0.5740 +3891 140807 0.4420 +3891 144501 0.4390 +3891 147183 0.5070 +3891 147409 0.4470 +3891 196374 0.4220 +3891 254773 0.4010 +3891 286887 0.4140 +3891 319101 0.4560 +3891 337878 0.4130 +3891 337879 0.4360 +3891 337880 0.8420 +3891 338785 0.4610 +3891 342574 0.6280 +3891 374454 0.4380 +3891 731220 0.4620 +3891 100132476 0.6580 +3892 4330 0.4180 +3892 6331 0.4330 +3892 8022 0.4160 +3892 8687 0.4080 +3892 9119 0.4960 +3892 23203 0.4360 +3892 51176 0.5690 +3892 51350 0.5640 +3892 83896 0.6190 +3892 83897 0.4380 +3892 83900 0.5290 +3892 85280 0.4940 +3892 85289 0.4460 +3892 85290 0.5350 +3892 112802 0.5850 +3892 121391 0.5350 +3892 140807 0.4700 +3892 144501 0.4890 +3892 147183 0.4540 +3892 147409 0.8850 +3892 196374 0.4350 +3892 286887 0.4500 +3892 319101 0.4760 +3892 337880 0.4030 +3892 338785 0.4620 +3892 342574 0.4620 +3892 374454 0.4510 +3892 390792 0.6620 +3892 100132476 0.4110 +3895 3930 0.4380 +3895 3998 0.5660 +3895 4076 0.4410 +3895 4869 0.5070 +3895 5108 0.5730 +3895 5706 0.4500 +3895 5713 0.4630 +3895 5777 0.4010 +3895 5879 0.6470 +3895 5903 0.5270 +3895 6745 0.5110 +3895 6786 0.5340 +3895 6811 0.4050 +3895 7095 0.4890 +3895 7444 0.4290 +3895 7905 0.5290 +3895 8153 0.5890 +3895 8661 0.6510 +3895 9217 0.5570 +3895 9360 0.4330 +3895 10134 0.5560 +3895 10424 0.4140 +3895 10430 0.5560 +3895 10652 0.4060 +3895 10970 0.6880 +3895 23331 0.5690 +3895 23344 0.4100 +3895 23557 0.4070 +3895 23592 0.4390 +3895 25923 0.5210 +3895 25963 0.4110 +3895 26128 0.5170 +3895 26528 0.4010 +3895 51062 0.4830 +3895 54757 0.4580 +3895 54867 0.4120 +3895 55219 0.4040 +3895 55605 0.4280 +3895 55852 0.4010 +3895 56975 0.5030 +3895 57142 0.4880 +3895 57493 0.4020 +3895 64225 0.5210 +3895 64837 0.6670 +3895 65055 0.4390 +3895 65989 0.5660 +3895 84317 0.4310 +3895 84461 0.6620 +3895 89953 0.6760 +3895 92922 0.4600 +3895 147700 0.6400 +3897 3908 0.4080 +3897 3912 0.5910 +3897 3915 0.7250 +3897 3958 0.4920 +3897 4099 0.5140 +3897 4137 0.4160 +3897 4162 0.4860 +3897 4204 0.6670 +3897 4267 0.5670 +3897 4478 0.7610 +3897 4684 0.9820 +3897 4685 0.9230 +3897 4747 0.4550 +3897 4803 0.4090 +3897 4907 0.4430 +3897 4978 0.4190 +3897 5067 0.5480 +3897 5354 0.6700 +3897 5361 0.7340 +3897 5364 0.6400 +3897 5365 0.6800 +3897 5594 0.8190 +3897 5621 0.6280 +3897 5793 0.5150 +3897 5803 0.4590 +3897 5825 0.4240 +3897 5902 0.4280 +3897 5962 0.8460 +3897 5973 0.8260 +3897 5978 0.5680 +3897 6195 0.5140 +3897 6196 0.5070 +3897 6197 0.5610 +3897 6326 0.5290 +3897 6405 0.4040 +3897 6456 0.8160 +3897 6507 0.5690 +3897 6520 0.4300 +3897 6535 0.5710 +3897 6616 0.4140 +3897 6658 0.4330 +3897 6663 0.4400 +3897 6708 0.5140 +3897 6709 0.6090 +3897 6710 0.5480 +3897 6711 0.6080 +3897 6712 0.6480 +3897 6714 0.8320 +3897 6772 0.4740 +3897 6792 0.4960 +3897 6853 0.5050 +3897 6855 0.7290 +3897 6900 0.9860 +3897 7040 0.5570 +3897 7057 0.4960 +3897 7070 0.5730 +3897 7103 0.6170 +3897 7157 0.4100 +3897 7430 0.9390 +3897 7869 0.4390 +3897 8260 0.7490 +3897 8263 0.4470 +3897 8269 0.7620 +3897 8270 0.6790 +3897 8277 0.5680 +3897 8317 0.4810 +3897 8492 0.4480 +3897 8506 0.4090 +3897 8538 0.6620 +3897 8650 0.6710 +3897 8777 0.4160 +3897 8828 0.6330 +3897 8829 0.9990 +3897 8842 0.5070 +3897 8986 0.5100 +3897 9118 0.4170 +3897 9252 0.5140 +3897 9378 0.5300 +3897 9379 0.4060 +3897 9423 0.4210 +3897 9723 0.4660 +3897 10048 0.9620 +3897 10134 0.5110 +3897 10215 0.4510 +3897 10371 0.7900 +3897 10512 0.4260 +3897 10631 0.4020 +3897 10763 0.4240 +3897 11001 0.4500 +3897 22829 0.4200 +3897 22871 0.4890 +3897 23129 0.5790 +3897 23205 0.4800 +3897 24137 0.5260 +3897 26052 0.6430 +3897 27255 0.6600 +3897 27330 0.5240 +3897 29126 0.4770 +3897 51332 0.5450 +3897 53942 0.4290 +3897 54413 0.4960 +3897 55558 0.4280 +3897 56934 0.4550 +3897 57502 0.4800 +3897 57555 0.5020 +3897 57698 0.9800 +3897 57731 0.8000 +3897 65998 0.5280 +3897 80347 0.4350 +3897 91584 0.6490 +3897 93185 0.4660 +3897 140679 0.4810 +3897 152330 0.4180 +3897 223117 0.4100 +3897 284217 0.5670 +3897 285643 0.5030 +3897 440193 0.4780 +3897 100133941 0.9840 +3898 5017 0.4070 +3898 7448 0.4210 +3898 11187 0.5270 +3898 26528 0.4250 +3898 54845 0.4310 +3898 57111 0.4620 +3898 57402 0.4630 +3898 145581 0.4430 +3899 3927 0.4480 +3899 4297 0.6310 +3899 4298 0.9590 +3899 4299 0.7690 +3899 4300 0.9640 +3899 4301 0.4290 +3899 4302 0.5740 +3899 5413 0.4470 +3899 5828 0.5400 +3899 6583 0.4380 +3899 6749 0.5670 +3899 6827 0.5920 +3899 6829 0.5910 +3899 6830 0.5400 +3899 6867 0.4090 +3899 6919 0.5760 +3899 6921 0.5560 +3899 6923 0.5400 +3899 6924 0.5400 +3899 7128 0.5070 +3899 7469 0.5400 +3899 7936 0.5900 +3899 8028 0.6150 +3899 8178 0.8340 +3899 8458 0.5430 +3899 8621 0.5780 +3899 8631 0.4090 +3899 8812 0.5570 +3899 8833 0.4370 +3899 9646 0.6050 +3899 10155 0.4310 +3899 10460 0.4270 +3899 10923 0.5740 +3899 10978 0.4320 +3899 11198 0.5570 +3899 22936 0.7820 +3899 23048 0.4390 +3899 23157 0.4790 +3899 23168 0.5750 +3899 23365 0.4100 +3899 23379 0.5430 +3899 23569 0.5030 +3899 25920 0.5440 +3899 26149 0.4020 +3899 26191 0.6230 +3899 26610 0.5570 +3899 26747 0.5780 +3899 27125 0.8350 +3899 51497 0.5400 +3899 51755 0.5740 +3899 54623 0.5530 +3899 55033 0.4130 +3899 55250 0.5650 +3899 55784 0.4770 +3899 55840 0.5400 +3899 55971 0.4180 +3899 57082 0.4260 +3899 79577 0.5680 +3899 79664 0.5570 +3899 79722 0.5110 +3899 79837 0.4220 +3899 79932 0.4570 +3899 80114 0.5060 +3899 80237 0.7010 +3899 80349 0.5800 +3899 84324 0.4600 +3899 84337 0.5410 +3899 84524 0.6000 +3899 84548 0.5190 +3899 85403 0.9000 +3899 90355 0.4040 +3899 123169 0.5860 +3899 161497 0.4110 +3899 164832 0.6650 +3899 167826 0.4710 +3899 201514 0.4280 +3899 221035 0.4920 +3899 440686 0.4070 +3902 3903 0.5050 +3902 3916 0.5210 +3902 3958 0.9900 +3902 3965 0.9930 +3902 4277 0.4180 +3902 4283 0.6520 +3902 4345 0.4790 +3902 4360 0.4110 +3902 4684 0.5450 +3902 4818 0.8070 +3902 4907 0.6350 +3902 5027 0.4140 +3902 5133 0.9500 +3902 5175 0.4300 +3902 5230 0.4200 +3902 5426 0.4150 +3902 5551 0.8160 +3902 5781 0.4340 +3902 5788 0.6270 +3902 5817 0.7510 +3902 5819 0.7660 +3902 5970 0.4810 +3902 6347 0.4920 +3902 6348 0.5060 +3902 6351 0.7350 +3902 6363 0.4170 +3902 6366 0.6060 +3902 6367 0.4740 +3902 6373 0.4520 +3902 6375 0.4660 +3902 6387 0.4520 +3902 6402 0.7180 +3902 6490 0.4780 +3902 6622 0.9060 +3902 6693 0.5490 +3902 6772 0.5960 +3902 6774 0.5440 +3902 6775 0.5170 +3902 6776 0.4890 +3902 6777 0.4880 +3902 6846 0.4380 +3902 6932 0.5710 +3902 7040 0.6770 +3902 7124 0.6640 +3902 7157 0.4770 +3902 7292 0.7130 +3902 7293 0.7970 +3902 7453 0.4020 +3902 7535 0.5420 +3902 7852 0.4630 +3902 8034 0.4310 +3902 8320 0.7030 +3902 8530 0.4340 +3902 8639 0.4310 +3902 8740 0.4260 +3902 8744 0.5760 +3902 8764 0.7620 +3902 8784 0.7860 +3902 8829 0.4160 +3902 8995 0.6090 +3902 9034 0.4840 +3902 9332 0.5310 +3902 9437 0.5150 +3902 9518 0.4160 +3902 9760 0.4190 +3902 10004 0.5000 +3902 10219 0.7410 +3902 10225 0.7650 +3902 10232 0.4700 +3902 10538 0.5730 +3902 10563 0.4990 +3902 10578 0.7860 +3902 10663 0.6490 +3902 10666 0.6220 +3902 10859 0.4690 +3902 10875 0.4310 +3902 11006 0.4260 +3902 11126 0.8300 +3902 11148 0.5050 +3902 22807 0.5130 +3902 22914 0.6450 +3902 23308 0.5420 +3902 27087 0.5850 +3902 29126 0.9760 +3902 29851 0.8070 +3902 30009 0.7460 +3902 50615 0.6130 +3902 50943 0.8070 +3902 51284 0.4270 +3902 51338 0.4230 +3902 51744 0.7230 +3902 54106 0.4090 +3902 55835 0.4820 +3902 56833 0.4780 +3902 57509 0.7240 +3902 57823 0.5240 +3902 64115 0.7160 +3902 79037 0.5360 +3902 79679 0.6430 +3902 80321 0.4470 +3902 80380 0.8720 +3902 80381 0.7340 +3902 84868 0.9220 +3902 84969 0.4150 +3902 114836 0.5230 +3902 126259 0.5070 +3902 131450 0.4850 +3902 140885 0.4180 +3902 143903 0.4980 +3902 151888 0.8870 +3902 152404 0.5610 +3902 168400 0.4770 +3902 169355 0.6370 +3902 201633 0.9550 +3902 220082 0.4150 +3902 256957 0.4200 +3902 257101 0.4600 +3902 259197 0.5160 +3902 284194 0.9910 +3902 284266 0.5970 +3902 339390 0.9920 +3902 654346 0.9910 +3903 3937 0.4240 +3903 3965 0.4970 +3903 4072 0.4870 +3903 4345 0.6180 +3903 4921 0.4010 +3903 5016 0.4990 +3903 5133 0.4380 +3903 5175 0.4020 +3903 5777 0.9490 +3903 5781 0.9380 +3903 5788 0.4430 +3903 6203 0.4250 +3903 6441 0.9590 +3903 6693 0.7080 +3903 7305 0.5060 +3903 8431 0.4420 +3903 8740 0.4890 +3903 8764 0.4680 +3903 8832 0.4010 +3903 8995 0.4210 +3903 9050 0.5970 +3903 9051 0.4760 +3903 9332 0.4280 +3903 9437 0.4480 +3903 9473 0.4130 +3903 10219 0.5610 +3903 10288 0.4370 +3903 10563 0.4330 +3903 10859 0.5010 +3903 10870 0.4130 +3903 10871 0.6260 +3903 11006 0.5130 +3903 11027 0.5920 +3903 11126 0.4590 +3903 11148 0.4600 +3903 11314 0.6030 +3903 23547 0.6360 +3903 27036 0.6110 +3903 27180 0.5120 +3903 29121 0.5700 +3903 29126 0.4270 +3903 29851 0.4190 +3903 29990 0.7670 +3903 29992 0.8380 +3903 51206 0.5690 +3903 51348 0.5200 +3903 51744 0.5330 +3903 53829 0.4660 +3903 54209 0.5370 +3903 54210 0.4900 +3903 57126 0.4120 +3903 57348 0.4610 +3903 64115 0.4250 +3903 79165 0.4180 +3903 79168 0.4490 +3903 80380 0.4360 +3903 80739 0.5480 +3903 83417 0.5100 +3903 84868 0.6220 +3903 114823 0.5640 +3903 114836 0.5310 +3903 126014 0.4170 +3903 126259 0.5040 +3903 131450 0.5540 +3903 140885 0.4070 +3903 148170 0.5150 +3903 151888 0.5220 +3903 201633 0.5130 +3903 284021 0.4590 +3903 353514 0.4370 +3903 100423062 0.9680 +3904 6441 0.7330 +3904 9437 0.4240 +3904 10859 0.4700 +3904 10871 0.5110 +3904 23547 0.5220 +3904 57348 0.4590 +3904 114823 0.5730 +3906 3938 0.9140 +3906 4025 0.9530 +3906 4057 0.9990 +3906 4151 0.9180 +3906 4240 0.4870 +3906 5047 0.6270 +3906 5284 0.5400 +3906 5617 0.6340 +3906 5816 0.5430 +3906 6035 0.7090 +3906 6696 0.5600 +3906 7018 0.5930 +3906 7498 0.4520 +3906 8704 0.9250 +3906 8708 0.4930 +3906 10384 0.4500 +3906 10385 0.4630 +3906 10917 0.4470 +3906 11118 0.4360 +3906 11119 0.4150 +3906 11120 0.4510 +3906 51806 0.4170 +3906 54205 0.7130 +3906 79908 0.4450 +3906 91860 0.4150 +3906 114625 0.4630 +3906 124872 0.6110 +3906 153579 0.4480 +3906 163688 0.4150 +3906 387521 0.5480 +3906 440387 0.5940 +3908 3909 0.6940 +3908 3910 0.7680 +3908 3911 0.7540 +3908 3912 0.9650 +3908 3913 0.9770 +3908 3914 0.8280 +3908 3915 0.9810 +3908 3918 0.8780 +3908 3921 0.4690 +3908 4000 0.4890 +3908 4060 0.4640 +3908 4233 0.4670 +3908 4625 0.4270 +3908 4628 0.5100 +3908 4644 0.4180 +3908 4753 0.5110 +3908 4811 0.9080 +3908 4897 0.4560 +3908 4969 0.4320 +3908 5156 0.4330 +3908 5328 0.5540 +3908 5329 0.5720 +3908 5346 0.4690 +3908 5747 0.6980 +3908 5959 0.4080 +3908 6261 0.4560 +3908 6392 0.4400 +3908 6442 0.9100 +3908 6443 0.7030 +3908 6444 0.8100 +3908 6445 0.7320 +3908 6469 0.4520 +3908 6695 0.4490 +3908 6943 0.4590 +3908 7058 0.6170 +3908 7060 0.5410 +3908 7273 0.4380 +3908 7373 0.5350 +3908 7402 0.8650 +3908 7448 0.6770 +3908 8082 0.5930 +3908 8291 0.8710 +3908 8404 0.4020 +3908 8515 0.7670 +3908 8516 0.8700 +3908 8557 0.5480 +3908 9215 0.4130 +3908 9242 0.4050 +3908 9499 0.4500 +3908 9899 0.6580 +3908 9900 0.6630 +3908 10105 0.6020 +3908 10319 0.9390 +3908 10417 0.5910 +3908 10516 0.4180 +3908 10580 0.4470 +3908 10585 0.8090 +3908 10631 0.5610 +3908 11117 0.5870 +3908 22795 0.8430 +3908 22801 0.7710 +3908 22881 0.4080 +3908 22915 0.5670 +3908 22987 0.6720 +3908 23224 0.4420 +3908 27115 0.4270 +3908 29925 0.4280 +3908 29954 0.7440 +3908 50509 0.4640 +3908 55624 0.7260 +3908 56479 0.4540 +3908 57190 0.7620 +3908 57369 0.4360 +3908 57453 0.4150 +3908 57716 0.6090 +3908 59277 0.5940 +3908 63923 0.5870 +3908 79147 0.9170 +3908 84319 0.4200 +3908 92312 0.7070 +3908 131873 0.4020 +3908 169792 0.4140 +3908 203859 0.4470 +3908 284217 0.9210 +3908 375790 0.7890 +3908 643136 0.5070 +3908 646960 0.5510 +3908 729920 0.5780 +3909 3910 0.6580 +3909 3911 0.7430 +3909 3912 0.9500 +3909 3913 0.9110 +3909 3914 0.9980 +3909 3915 0.9310 +3909 3918 0.9980 +3909 4233 0.5110 +3909 4312 0.5390 +3909 4313 0.5360 +3909 4314 0.5300 +3909 4316 0.7010 +3909 4321 0.5160 +3909 4322 0.5020 +3909 4323 0.5080 +3909 4327 0.4710 +3909 4811 0.8130 +3909 5118 0.4480 +3909 5327 0.5620 +3909 5328 0.5070 +3909 5339 0.6140 +3909 5340 0.5760 +3909 5747 0.7090 +3909 6382 0.6320 +3909 6383 0.4610 +3909 7058 0.5480 +3909 7059 0.4440 +3909 7092 0.5860 +3909 7093 0.6580 +3909 7253 0.4140 +3909 7373 0.4180 +3909 7391 0.4360 +3909 8515 0.7250 +3909 8516 0.8100 +3909 8646 0.4430 +3909 9313 0.6030 +3909 9333 0.4240 +3909 9899 0.7000 +3909 9900 0.6630 +3909 10117 0.5060 +3909 10319 0.8370 +3909 22795 0.6920 +3909 22798 0.6020 +3909 22801 0.7200 +3909 22854 0.5620 +3909 22987 0.6690 +3909 54757 0.4380 +3909 55612 0.4980 +3909 59277 0.6480 +3909 80781 0.4020 +3909 81545 0.4060 +3909 84628 0.5500 +3909 147463 0.4660 +3909 152816 0.5740 +3909 164656 0.4030 +3909 256764 0.5030 +3909 284217 0.7020 +3909 286077 0.4560 +3909 375790 0.5960 +3909 401138 0.4590 +3910 3911 0.7800 +3910 3912 0.9920 +3910 3913 0.9300 +3910 3914 0.9930 +3910 3915 0.9800 +3910 3918 0.9930 +3910 3965 0.4430 +3910 4060 0.4760 +3910 4162 0.9610 +3910 4199 0.7320 +3910 4233 0.4640 +3910 4312 0.6170 +3910 4313 0.4290 +3910 4316 0.4900 +3910 4607 0.4070 +3910 4625 0.4150 +3910 4811 0.7970 +3910 5118 0.4910 +3910 5156 0.4070 +3910 5175 0.5240 +3910 5327 0.4670 +3910 5328 0.4930 +3910 5339 0.4160 +3910 5347 0.4720 +3910 5352 0.5200 +3910 5747 0.7170 +3910 6444 0.6370 +3910 6678 0.4370 +3910 7057 0.4690 +3910 7058 0.6620 +3910 7059 0.4680 +3910 7078 0.4050 +3910 7092 0.5290 +3910 7093 0.5690 +3910 7157 0.5400 +3910 7373 0.5430 +3910 8515 0.7330 +3910 8516 0.8270 +3910 8646 0.4130 +3910 9212 0.4420 +3910 9899 0.6830 +3910 9900 0.6850 +3910 10060 0.4460 +3910 10117 0.4450 +3910 10319 0.9500 +3910 10631 0.5030 +3910 22795 0.8960 +3910 22801 0.8000 +3910 22862 0.4640 +3910 22987 0.6690 +3910 23452 0.4070 +3910 29992 0.6120 +3910 50509 0.4660 +3910 57381 0.4710 +3910 59277 0.6670 +3910 79147 0.4370 +3910 84665 0.4100 +3910 131873 0.4190 +3910 152816 0.4760 +3910 161198 0.4190 +3910 256764 0.4480 +3910 282996 0.4370 +3910 284217 0.6550 +3910 286077 0.6010 +3910 375790 0.6030 +3910 401138 0.4030 +3911 3912 0.9980 +3911 3913 0.9240 +3911 3914 0.8420 +3911 3915 0.9990 +3911 3918 0.9230 +3911 4059 0.9460 +3911 4162 0.4250 +3911 4233 0.4630 +3911 4323 0.4820 +3911 4673 0.4350 +3911 4811 0.8490 +3911 5046 0.4270 +3911 5155 0.4570 +3911 5578 0.4460 +3911 5747 0.7110 +3911 7057 0.5310 +3911 7058 0.4590 +3911 7448 0.5660 +3911 8515 0.7360 +3911 8516 0.7530 +3911 9241 0.4480 +3911 9885 0.5570 +3911 9899 0.7060 +3911 9900 0.8060 +3911 9918 0.4250 +3911 10319 0.7460 +3911 10585 0.5880 +3911 11004 0.4030 +3911 22795 0.8490 +3911 22798 0.6200 +3911 22801 0.7460 +3911 22854 0.5580 +3911 22987 0.6700 +3911 23557 0.4080 +3911 51019 0.4230 +3911 57595 0.5470 +3911 59277 0.6340 +3911 80781 0.4210 +3911 84628 0.5450 +3911 84955 0.6200 +3911 124093 0.4550 +3911 164656 0.4040 +3911 284217 0.9510 +3911 375790 0.6900 +3912 3913 0.7830 +3912 3914 0.7760 +3912 3915 0.9990 +3912 3918 0.8920 +3912 3965 0.4480 +3912 4060 0.4860 +3912 4233 0.5090 +3912 4323 0.5540 +3912 4811 0.8920 +3912 4897 0.5150 +3912 5328 0.6280 +3912 5329 0.5750 +3912 5339 0.4680 +3912 5577 0.5110 +3912 5747 0.7050 +3912 5831 0.4170 +3912 6655 0.5490 +3912 6678 0.4450 +3912 7057 0.5950 +3912 7058 0.4160 +3912 7373 0.6240 +3912 7402 0.5450 +3912 7448 0.6850 +3912 8515 0.8170 +3912 8516 0.7410 +3912 9899 0.7000 +3912 9900 0.6830 +3912 10124 0.6010 +3912 10319 0.9680 +3912 10631 0.4120 +3912 10644 0.4090 +3912 11117 0.5740 +3912 22795 0.9280 +3912 22798 0.5940 +3912 22801 0.8400 +3912 22854 0.6070 +3912 22915 0.5450 +3912 22987 0.6990 +3912 54757 0.4670 +3912 54829 0.4160 +3912 55054 0.5280 +3912 56975 0.5170 +3912 57453 0.4390 +3912 57716 0.5240 +3912 59277 0.5950 +3912 63923 0.5730 +3912 80781 0.7000 +3912 81035 0.4650 +3912 84628 0.5410 +3912 164656 0.4020 +3912 284217 0.9830 +3912 375790 0.6220 +3913 3914 0.6250 +3913 3915 0.9620 +3913 3918 0.9560 +3913 4233 0.4650 +3913 4811 0.7340 +3913 5328 0.6250 +3913 5329 0.6530 +3913 5747 0.6730 +3913 6678 0.4200 +3913 7059 0.4020 +3913 7399 0.4530 +3913 7448 0.6030 +3913 8515 0.6950 +3913 8516 0.7180 +3913 9899 0.6820 +3913 9900 0.6820 +3913 10319 0.9460 +3913 11117 0.6760 +3913 22795 0.7500 +3913 22798 0.5530 +3913 22801 0.7000 +3913 22854 0.6070 +3913 22915 0.5450 +3913 22987 0.6820 +3913 23607 0.6900 +3913 54757 0.4620 +3913 56975 0.5440 +3913 59277 0.5860 +3913 63923 0.5570 +3913 84273 0.4080 +3913 84628 0.5410 +3913 84955 0.6190 +3913 284217 0.8480 +3913 375790 0.6220 +3914 3915 0.8220 +3914 3918 0.9990 +3914 4054 0.4460 +3914 4060 0.4100 +3914 4233 0.5450 +3914 4312 0.5910 +3914 4313 0.5560 +3914 4314 0.5600 +3914 4316 0.7180 +3914 4318 0.4350 +3914 4321 0.5340 +3914 4322 0.5350 +3914 4323 0.5670 +3914 4327 0.4720 +3914 4680 0.4540 +3914 4792 0.5460 +3914 4794 0.4260 +3914 5268 0.4350 +3914 5317 0.4350 +3914 5328 0.5740 +3914 5339 0.7280 +3914 5340 0.4370 +3914 5525 0.6640 +3914 5747 0.7070 +3914 6786 0.4120 +3914 7015 0.4320 +3914 7057 0.5400 +3914 7399 0.4790 +3914 8111 0.5170 +3914 8515 0.7320 +3914 8516 0.7650 +3914 9313 0.6840 +3914 9333 0.4220 +3914 9622 0.5600 +3914 9899 0.6880 +3914 9900 0.6770 +3914 9926 0.6970 +3914 10117 0.6740 +3914 10319 0.7370 +3914 11187 0.4150 +3914 22798 0.6940 +3914 22801 0.7340 +3914 22854 0.6070 +3914 22987 0.6870 +3914 54757 0.5830 +3914 55612 0.5330 +3914 59277 0.5720 +3914 80317 0.5810 +3914 84628 0.5470 +3914 93650 0.4160 +3914 123041 0.6050 +3914 152816 0.6020 +3914 164656 0.4210 +3914 255743 0.5020 +3914 256764 0.7070 +3914 284217 0.7900 +3914 286077 0.6860 +3914 401138 0.6200 +3915 3918 0.4770 +3915 3956 0.6310 +3915 3958 0.4390 +3915 4052 0.5790 +3915 4060 0.4840 +3915 4162 0.4250 +3915 4233 0.4970 +3915 4313 0.5550 +3915 4323 0.5580 +3915 4811 0.9970 +3915 4897 0.4420 +3915 5054 0.4670 +3915 5159 0.4200 +3915 5328 0.6290 +3915 5329 0.6070 +3915 5549 0.4410 +3915 5621 0.9070 +3915 5728 0.5440 +3915 5747 0.7150 +3915 5935 0.4020 +3915 6281 0.4230 +3915 6575 0.5500 +3915 6678 0.4420 +3915 7040 0.7450 +3915 7057 0.6090 +3915 7058 0.4490 +3915 7070 0.4280 +3915 7078 0.5850 +3915 7203 0.4150 +3915 7373 0.6460 +3915 7399 0.4950 +3915 7402 0.5640 +3915 7448 0.6560 +3915 8515 0.7660 +3915 8516 0.7630 +3915 9213 0.4100 +3915 9899 0.7110 +3915 9900 0.6960 +3915 10000 0.5360 +3915 10121 0.4370 +3915 10319 0.4390 +3915 10631 0.5260 +3915 10644 0.4390 +3915 10894 0.4740 +3915 11117 0.6320 +3915 11167 0.5570 +3915 22795 0.9840 +3915 22798 0.6170 +3915 22801 0.7650 +3915 22854 0.5480 +3915 22915 0.5580 +3915 22943 0.4490 +3915 22987 0.7000 +3915 23172 0.4010 +3915 29919 0.7490 +3915 54757 0.4990 +3915 54829 0.4200 +3915 56975 0.5390 +3915 57453 0.4170 +3915 57716 0.5780 +3915 59277 0.6540 +3915 63923 0.5470 +3915 79633 0.6830 +3915 80781 0.7930 +3915 84142 0.4520 +3915 84628 0.5480 +3915 84955 0.6200 +3915 85301 0.7830 +3915 115908 0.4840 +3915 120114 0.6530 +3915 123624 0.4040 +3915 163782 0.5410 +3915 164656 0.4060 +3915 255631 0.7310 +3915 284217 0.9440 +3915 346007 0.5110 +3915 375790 0.6150 +3916 3920 0.9990 +3916 3956 0.5940 +3916 3958 0.8620 +3916 3959 0.4440 +3916 3964 0.5530 +3916 3965 0.7140 +3916 3988 0.4370 +3916 3998 0.4920 +3916 4074 0.5600 +3916 4077 0.4880 +3916 4130 0.6500 +3916 4131 0.5820 +3916 4155 0.4630 +3916 4218 0.4820 +3916 4277 0.4760 +3916 4360 0.6570 +3916 4609 0.4580 +3916 4669 0.6570 +3916 4684 0.7720 +3916 4734 0.4850 +3916 4758 0.8130 +3916 4851 0.5780 +3916 4864 0.7160 +3916 5071 0.4770 +3916 5104 0.4650 +3916 5133 0.4830 +3916 5289 0.6410 +3916 5306 0.4480 +3916 5337 0.4480 +3916 5354 0.5390 +3916 5476 0.6010 +3916 5538 0.4490 +3916 5551 0.8450 +3916 5595 0.4240 +3916 5660 0.8080 +3916 5663 0.5320 +3916 5788 0.6310 +3916 5817 0.5040 +3916 5819 0.4640 +3916 5861 0.4040 +3916 5862 0.5420 +3916 5867 0.7000 +3916 5868 0.8540 +3916 5869 0.6360 +3916 5870 0.4460 +3916 5873 0.6910 +3916 5878 0.5080 +3916 6009 0.5150 +3916 6198 0.5300 +3916 6238 0.4340 +3916 6272 0.6250 +3916 6347 0.4190 +3916 6348 0.4240 +3916 6351 0.5850 +3916 6396 0.9950 +3916 6401 0.4610 +3916 6402 0.6200 +3916 6484 0.4540 +3916 6490 0.4330 +3916 6556 0.5430 +3916 6609 0.4650 +3916 6622 0.5190 +3916 6642 0.5620 +3916 6643 0.4520 +3916 6647 0.4790 +3916 6648 0.4940 +3916 6714 0.4250 +3916 6810 0.4690 +3916 6811 0.4470 +3916 6813 0.4350 +3916 6844 0.4510 +3916 6845 0.8040 +3916 6855 0.4910 +3916 6890 0.4840 +3916 6891 0.4320 +3916 7030 0.5140 +3916 7037 0.8550 +3916 7047 0.4010 +3916 7097 0.4300 +3916 7099 0.4610 +3916 7124 0.7250 +3916 7157 0.4760 +3916 7251 0.8210 +3916 7305 0.4050 +3916 7306 0.6270 +3916 7405 0.5760 +3916 7412 0.6570 +3916 7415 0.5420 +3916 7416 0.4290 +3916 7542 0.4340 +3916 7805 0.7480 +3916 7837 0.6230 +3916 7852 0.4100 +3916 7879 0.7800 +3916 7942 0.7690 +3916 8218 0.5490 +3916 8266 0.7970 +3916 8320 0.5110 +3916 8408 0.5620 +3916 8411 0.9190 +3916 8417 0.5660 +3916 8546 0.6990 +3916 8639 0.4800 +3916 8649 0.4790 +3916 8673 0.5690 +3916 8676 0.5060 +3916 8678 0.8520 +3916 8724 0.4850 +3916 8766 0.8180 +3916 8773 0.4390 +3916 8878 0.7820 +3916 8943 0.4580 +3916 9066 0.6840 +3916 9114 0.6170 +3916 9123 0.4640 +3916 9140 0.6760 +3916 9146 0.5800 +3916 9179 0.5990 +3916 9194 0.4240 +3916 9218 0.4580 +3916 9341 0.7170 +3916 9342 0.5480 +3916 9367 0.4490 +3916 9436 0.6080 +3916 9437 0.7050 +3916 9474 0.7930 +3916 9482 0.5260 +3916 9554 0.4700 +3916 9559 0.4850 +3916 9567 0.7570 +3916 9681 0.9940 +3916 9711 0.5830 +3916 9744 0.4770 +3916 9776 0.5280 +3916 9804 0.6280 +3916 9821 0.4990 +3916 9842 0.4560 +3916 9927 0.4220 +3916 10004 0.4450 +3916 10134 0.4410 +3916 10211 0.6730 +3916 10219 0.5800 +3916 10228 0.6870 +3916 10241 0.4660 +3916 10325 0.5380 +3916 10332 0.4030 +3916 10410 0.4330 +3916 10447 0.8120 +3916 10490 0.5460 +3916 10533 0.7380 +3916 10577 0.5980 +3916 10578 0.6390 +3916 10618 0.7370 +3916 10641 0.9960 +3916 10652 0.4580 +3916 10666 0.6030 +3916 10670 0.4090 +3916 10724 0.4860 +3916 10859 0.4790 +3916 10890 0.5010 +3916 10938 0.4110 +3916 11021 0.4680 +3916 11126 0.4180 +3916 11133 0.9940 +3916 11337 0.6110 +3916 11345 0.7520 +3916 22863 0.5560 +3916 22914 0.7290 +3916 23001 0.4390 +3916 23011 0.4310 +3916 23192 0.4650 +3916 23207 0.4060 +3916 23327 0.4130 +3916 23334 0.9940 +3916 23339 0.5100 +3916 23385 0.7470 +3916 23400 0.6530 +3916 23457 0.7750 +3916 23527 0.4350 +3916 23539 0.4220 +3916 23557 0.4130 +3916 23621 0.4270 +3916 23673 0.4560 +3916 23710 0.7590 +3916 25934 0.5490 +3916 25978 0.4800 +3916 26003 0.4160 +3916 26100 0.5670 +3916 26276 0.4070 +3916 26503 0.7770 +3916 27074 0.9110 +3916 27087 0.6150 +3916 27131 0.5070 +3916 27141 0.8710 +3916 27319 0.4820 +3916 28956 0.7380 +3916 29126 0.5580 +3916 29887 0.4930 +3916 30009 0.5140 +3916 30816 0.4340 +3916 30835 0.5850 +3916 30849 0.4580 +3916 50943 0.5860 +3916 51107 0.4790 +3916 51160 0.6360 +3916 51284 0.4040 +3916 51449 0.7810 +3916 51552 0.4260 +3916 51606 0.5120 +3916 51622 0.4770 +3916 51699 0.5790 +3916 51744 0.4980 +3916 54106 0.4670 +3916 54468 0.9940 +3916 54664 0.5070 +3916 54822 0.4130 +3916 55004 0.7110 +3916 55014 0.5890 +3916 55054 0.5830 +3916 55062 0.4970 +3916 55201 0.6090 +3916 55283 0.4040 +3916 55335 0.5480 +3916 55737 0.7880 +3916 55823 0.5410 +3916 55846 0.9940 +3916 55851 0.4800 +3916 57142 0.4760 +3916 57192 0.6840 +3916 57521 0.9960 +3916 57617 0.5240 +3916 58533 0.4060 +3916 64083 0.4650 +3916 64116 0.4240 +3916 64121 0.4800 +3916 64422 0.5780 +3916 64601 0.4790 +3916 64837 0.5050 +3916 65018 0.5960 +3916 65082 0.5150 +3916 79065 0.5180 +3916 79465 0.4590 +3916 79726 0.9940 +3916 80328 0.5030 +3916 80329 0.5290 +3916 80381 0.4010 +3916 81609 0.4320 +3916 81631 0.8690 +3916 81876 0.4140 +3916 81929 0.9940 +3916 83464 0.4940 +3916 83547 0.4970 +3916 83734 0.4600 +3916 84219 0.9950 +3916 84557 0.6970 +3916 84868 0.6030 +3916 90809 0.4240 +3916 114899 0.4420 +3916 116987 0.5410 +3916 121599 0.5920 +3916 126433 0.4250 +3916 127829 0.5010 +3916 137492 0.6810 +3916 137902 0.6230 +3916 146713 0.4230 +3916 147700 0.4870 +3916 200576 0.5470 +3916 201294 0.4860 +3916 201633 0.4910 +3916 201931 0.6730 +3916 219931 0.4420 +3916 221079 0.4320 +3916 221960 0.4550 +3916 255231 0.4290 +3916 259197 0.6540 +3916 284194 0.5920 +3916 284415 0.4980 +3916 340485 0.6400 +3916 374383 0.4210 +3916 387733 0.4290 +3916 441925 0.4770 +3916 654346 0.5910 +3916 768239 0.4770 +3918 4233 0.5310 +3918 4312 0.6160 +3918 4313 0.5730 +3918 4314 0.5360 +3918 4316 0.7530 +3918 4319 0.4410 +3918 4321 0.5150 +3918 4322 0.5180 +3918 4323 0.5590 +3918 4327 0.4300 +3918 4688 0.4340 +3918 4811 0.5010 +3918 5268 0.4570 +3918 5327 0.4610 +3918 5328 0.6150 +3918 5339 0.6930 +3918 5340 0.4600 +3918 5655 0.4310 +3918 5747 0.7190 +3918 6662 0.4360 +3918 7057 0.5710 +3918 7092 0.5470 +3918 7093 0.5940 +3918 7399 0.5060 +3918 8515 0.7170 +3918 8516 0.7450 +3918 8646 0.4360 +3918 9313 0.4870 +3918 9887 0.6790 +3918 9899 0.7210 +3918 9900 0.7210 +3918 10319 0.4600 +3918 22795 0.5130 +3918 22798 0.4670 +3918 22801 0.7550 +3918 22987 0.7400 +3918 23057 0.7630 +3918 55612 0.4840 +3918 59277 0.4670 +3918 80323 0.4130 +3918 84062 0.4200 +3918 164656 0.4060 +3918 284217 0.6090 +3918 390038 0.4380 +3920 3925 0.4320 +3920 3956 0.5280 +3920 3958 0.7530 +3920 3964 0.5190 +3920 4000 0.5830 +3920 4074 0.5490 +3920 4077 0.4740 +3920 4130 0.6300 +3920 4131 0.5930 +3920 4240 0.4840 +3920 4360 0.4670 +3920 4478 0.5130 +3920 4607 0.5820 +3920 4609 0.4400 +3920 4625 0.5430 +3920 4633 0.4600 +3920 4634 0.5280 +3920 4669 0.7490 +3920 4694 0.4340 +3920 4758 0.5010 +3920 4864 0.5720 +3920 5071 0.4330 +3920 5116 0.5660 +3920 5230 0.4640 +3920 5289 0.6350 +3920 5476 0.4050 +3920 5538 0.4160 +3920 5551 0.7270 +3920 5571 0.4680 +3920 5660 0.4760 +3920 5781 0.4840 +3920 5868 0.8050 +3920 5869 0.5160 +3920 5873 0.6630 +3920 5874 0.5460 +3920 6009 0.6270 +3920 6035 0.5170 +3920 6191 0.5850 +3920 6198 0.4810 +3920 6233 0.5070 +3920 6401 0.4440 +3920 6403 0.5180 +3920 6622 0.7120 +3920 6627 0.4560 +3920 6642 0.5100 +3920 6747 0.4080 +3920 6811 0.4350 +3920 6845 0.6000 +3920 6890 0.5290 +3920 6891 0.5570 +3920 7030 0.4690 +3920 7037 0.4980 +3920 7094 0.4470 +3920 7097 0.5060 +3920 7124 0.5710 +3920 7137 0.4920 +3920 7139 0.4770 +3920 7157 0.4360 +3920 7168 0.5330 +3920 7249 0.4530 +3920 7251 0.5870 +3920 7311 0.4990 +3920 7314 0.5260 +3920 7316 0.5460 +3920 7345 0.7040 +3920 7405 0.5120 +3920 7412 0.4400 +3920 7415 0.4690 +3920 7430 0.4350 +3920 7805 0.7630 +3920 7837 0.4910 +3920 7879 0.6510 +3920 7942 0.6940 +3920 8048 0.4450 +3920 8100 0.5030 +3920 8408 0.5430 +3920 8411 0.8640 +3920 8417 0.4480 +3920 8450 0.4230 +3920 8546 0.6310 +3920 8557 0.4280 +3920 8673 0.5670 +3920 8678 0.7960 +3920 8766 0.6220 +3920 8878 0.9030 +3920 8988 0.4530 +3920 8992 0.4010 +3920 9140 0.6430 +3920 9341 0.5100 +3920 9342 0.4640 +3920 9367 0.4670 +3920 9474 0.7480 +3920 9531 0.4640 +3920 9554 0.4030 +3920 9776 0.5500 +3920 9804 0.4770 +3920 9821 0.5660 +3920 9896 0.8230 +3920 10013 0.6410 +3920 10134 0.4550 +3920 10159 0.5750 +3920 10211 0.6080 +3920 10226 0.6400 +3920 10241 0.4250 +3920 10325 0.6670 +3920 10490 0.5800 +3920 10533 0.7100 +3920 10577 0.6430 +3920 10618 0.5480 +3920 10670 0.4790 +3920 11155 0.4180 +3920 11315 0.6260 +3920 11337 0.4890 +3920 11342 0.4430 +3920 11345 0.5710 +3920 22863 0.6580 +3920 23157 0.4360 +3920 23192 0.4160 +3920 23400 0.4050 +3920 23457 0.8990 +3920 23545 0.4210 +3920 23710 0.5850 +3920 27141 0.5590 +3920 27163 0.7780 +3920 27319 0.5930 +3920 27339 0.4500 +3920 29071 0.5060 +3920 30849 0.5060 +3920 51422 0.8180 +3920 51606 0.5070 +3920 53917 0.5150 +3920 55004 0.6350 +3920 55014 0.5960 +3920 55054 0.5710 +3920 55062 0.4290 +3920 55201 0.6080 +3920 55697 0.8120 +3920 55737 0.5980 +3920 57192 0.4750 +3920 57521 0.5750 +3920 58528 0.4580 +3920 60673 0.4260 +3920 64121 0.5660 +3920 64422 0.5900 +3920 65018 0.5260 +3920 65082 0.4120 +3920 79065 0.4310 +3920 81631 0.7840 +3920 81671 0.4310 +3920 83734 0.4930 +3920 84557 0.7870 +3920 120892 0.4790 +3920 121268 0.4230 +3920 126433 0.4480 +3920 137902 0.4870 +3920 153129 0.6020 +3920 200576 0.7280 +3920 200894 0.5320 +3920 201931 0.8020 +3920 203547 0.6020 +3920 441925 0.5070 +3921 3958 0.8210 +3921 4141 0.7250 +3921 4478 0.4990 +3921 4508 0.4930 +3921 4528 0.7640 +3921 4660 0.4880 +3921 4666 0.8570 +3921 4670 0.4700 +3921 4720 0.4390 +3921 4733 0.6730 +3921 4734 0.4140 +3921 4736 0.9990 +3921 4738 0.4310 +3921 4799 0.4590 +3921 4809 0.7680 +3921 4830 0.6490 +3921 4831 0.7830 +3921 4832 0.5460 +3921 4833 0.5620 +3921 4849 0.4100 +3921 4869 0.6770 +3921 4904 0.6890 +3921 5034 0.4840 +3921 5036 0.9700 +3921 5037 0.5430 +3921 5052 0.4010 +3921 5093 0.5800 +3921 5094 0.5080 +3921 5111 0.4780 +3921 5162 0.7130 +3921 5202 0.5010 +3921 5204 0.5000 +3921 5230 0.4450 +3921 5245 0.6120 +3921 5313 0.6430 +3921 5315 0.6900 +3921 5431 0.6810 +3921 5432 0.8270 +3921 5435 0.8430 +3921 5441 0.6400 +3921 5464 0.5750 +3921 5469 0.9290 +3921 5478 0.4510 +3921 5500 0.6470 +3921 5501 0.4240 +3921 5518 0.5310 +3921 5566 0.4190 +3921 5567 0.4090 +3921 5595 0.4500 +3921 5599 0.5240 +3921 5601 0.4620 +3921 5621 0.9400 +3921 5663 0.4330 +3921 5682 0.5980 +3921 5683 0.7160 +3921 5684 0.7680 +3921 5685 0.5630 +3921 5686 0.7230 +3921 5687 0.5810 +3921 5688 0.6990 +3921 5689 0.4320 +3921 5692 0.4050 +3921 5695 0.4820 +3921 5700 0.5040 +3921 5701 0.6490 +3921 5702 0.4730 +3921 5704 0.4510 +3921 5705 0.5720 +3921 5707 0.7450 +3921 5708 0.7200 +3921 5710 0.5140 +3921 5713 0.4650 +3921 5717 0.6750 +3921 5718 0.5110 +3921 5725 0.5490 +3921 5757 0.4050 +3921 5814 0.7120 +3921 5859 0.6650 +3921 5901 0.6540 +3921 5917 0.4340 +3921 5955 0.4150 +3921 5976 0.5320 +3921 6059 0.9680 +3921 6122 0.9990 +3921 6123 0.9800 +3921 6124 0.9990 +3921 6125 0.9990 +3921 6128 0.9990 +3921 6129 0.9990 +3921 6130 0.9990 +3921 6132 0.9990 +3921 6133 0.9990 +3921 6135 0.9990 +3921 6136 0.9990 +3921 6137 0.9990 +3921 6138 0.9990 +3921 6139 0.9990 +3921 6141 0.9990 +3921 6142 0.9990 +3921 6143 0.9990 +3921 6144 0.9990 +3921 6146 0.9980 +3921 6147 0.9990 +3921 6150 0.6120 +3921 6152 0.9990 +3921 6154 0.9990 +3921 6155 0.9990 +3921 6156 0.9990 +3921 6157 0.9990 +3921 6158 0.9990 +3921 6159 0.9990 +3921 6160 0.9990 +3921 6161 0.9990 +3921 6164 0.9990 +3921 6165 0.9990 +3921 6166 0.9910 +3921 6167 0.9990 +3921 6168 0.9990 +3921 6169 0.9990 +3921 6170 0.9970 +3921 6171 0.4500 +3921 6173 0.9920 +3921 6175 0.9990 +3921 6176 0.9990 +3921 6181 0.9990 +3921 6182 0.9100 +3921 6183 0.8250 +3921 6187 0.9990 +3921 6188 0.9990 +3921 6189 0.9990 +3921 6191 0.9990 +3921 6192 0.9960 +3921 6193 0.9990 +3921 6194 0.9990 +3921 6201 0.9990 +3921 6202 0.9990 +3921 6203 0.9990 +3921 6204 0.9990 +3921 6205 0.9990 +3921 6206 0.9990 +3921 6207 0.9990 +3921 6208 0.9990 +3921 6209 0.9990 +3921 6210 0.9990 +3921 6217 0.9990 +3921 6218 0.9990 +3921 6222 0.9990 +3921 6223 0.9990 +3921 6224 0.9990 +3921 6227 0.9990 +3921 6228 0.9990 +3921 6229 0.9990 +3921 6230 0.9990 +3921 6231 0.9990 +3921 6232 0.9990 +3921 6233 0.9990 +3921 6234 0.9990 +3921 6235 0.9990 +3921 6387 0.4130 +3921 6414 0.7200 +3921 6426 0.4450 +3921 6434 0.4410 +3921 6499 0.5090 +3921 6625 0.4040 +3921 6633 0.4160 +3921 6635 0.4210 +3921 6648 0.5230 +3921 6726 0.8520 +3921 6727 0.8170 +3921 6728 0.8510 +3921 6729 0.9380 +3921 6730 0.8670 +3921 6741 0.6550 +3921 6742 0.5670 +3921 6888 0.4780 +3921 6897 0.4900 +3921 6950 0.7110 +3921 7153 0.4160 +3921 7167 0.5300 +3921 7178 0.9250 +3921 7184 0.4810 +3921 7203 0.6500 +3921 7284 0.9120 +3921 7311 0.9990 +3921 7314 0.5100 +3921 7316 0.5370 +3921 7336 0.4380 +3921 7357 0.4440 +3921 7384 0.4740 +3921 7403 0.4540 +3921 7404 0.4540 +3921 7407 0.5470 +3921 7411 0.4800 +3921 7458 0.6310 +3921 7494 0.8200 +3921 7529 0.4430 +3921 7818 0.7180 +3921 7846 0.4020 +3921 7866 0.7770 +3921 7919 0.5280 +3921 7965 0.5330 +3921 8106 0.5290 +3921 8260 0.5620 +3921 8266 0.6250 +3921 8382 0.5180 +3921 8562 0.9040 +3921 8565 0.7210 +3921 8607 0.6120 +3921 8624 0.6360 +3921 8638 0.5620 +3921 8661 0.9880 +3921 8662 0.9920 +3921 8663 0.9750 +3921 8664 0.9490 +3921 8665 0.9800 +3921 8666 0.9690 +3921 8667 0.9110 +3921 8668 0.9900 +3921 8669 0.9620 +3921 8682 0.4240 +3921 8721 0.9180 +3921 8780 0.5240 +3921 8833 0.4090 +3921 8894 0.9860 +3921 9045 0.9990 +3921 9047 0.4460 +3921 9086 0.8760 +3921 9132 0.4220 +3921 9141 0.6480 +3921 9255 0.6300 +3921 9312 0.4220 +3921 9343 0.7500 +3921 9349 0.9990 +3921 9521 0.4260 +3921 9528 0.4590 +3921 9533 0.8270 +3921 9553 0.8630 +3921 9584 0.4400 +3921 9617 0.4920 +3921 9636 0.7690 +3921 9652 0.4300 +3921 9669 0.9780 +3921 9732 0.9250 +3921 9789 0.4370 +3921 9790 0.5510 +3921 9801 0.9100 +3921 10056 0.4850 +3921 10061 0.4790 +3921 10102 0.7100 +3921 10130 0.4020 +3921 10135 0.5060 +3921 10146 0.4260 +3921 10171 0.4600 +3921 10201 0.5490 +3921 10209 0.9600 +3921 10213 0.5720 +3921 10236 0.7320 +3921 10289 0.7990 +3921 10376 0.4850 +3921 10381 0.4020 +3921 10399 0.9990 +3921 10412 0.7850 +3921 10432 0.4180 +3921 10471 0.4280 +3921 10473 0.7480 +3921 10476 0.4070 +3921 10480 0.9700 +3921 10492 0.7840 +3921 10537 0.4870 +3921 10557 0.6170 +3921 10574 0.7940 +3921 10575 0.8220 +3921 10576 0.7560 +3921 10614 0.5010 +3921 10694 0.7530 +3921 10726 0.5550 +3921 10767 0.8750 +3921 10856 0.4520 +3921 10949 0.4770 +3921 10952 0.8730 +3921 10963 0.5880 +3921 10971 0.5990 +3921 10985 0.9000 +3921 10988 0.6490 +3921 11074 0.5740 +3921 11103 0.9390 +3921 11128 0.6400 +3921 11222 0.7770 +3921 11224 0.9990 +3921 11315 0.4490 +3921 22927 0.8320 +3921 22948 0.7840 +3921 22984 0.9110 +3921 23054 0.4290 +3921 23107 0.4120 +3921 23135 0.4550 +3921 23148 0.6980 +3921 23173 0.5790 +3921 23204 0.9470 +3921 23212 0.5860 +3921 23223 0.8450 +3921 23252 0.6200 +3921 23322 0.4350 +3921 23395 0.4080 +3921 23405 0.5240 +3921 23435 0.5220 +3921 23451 0.4670 +3921 23478 0.4660 +3921 23480 0.8340 +3921 23521 0.9990 +3921 23640 0.6780 +3921 23708 0.5920 +3921 23732 0.4100 +3921 25789 0.4590 +3921 25813 0.4510 +3921 25873 0.9990 +3921 25885 0.6580 +3921 25914 0.5330 +3921 26051 0.8510 +3921 26135 0.9870 +3921 26156 0.4500 +3921 26251 0.4220 +3921 26271 0.5020 +3921 26589 0.6870 +3921 26986 0.6070 +3921 27012 0.4220 +3921 27068 0.5050 +3921 27292 0.5880 +3921 27316 0.5780 +3921 27335 0.9170 +3921 28957 0.4190 +3921 28972 0.4190 +3921 28985 0.8450 +3921 28987 0.9930 +3921 28991 0.5220 +3921 28998 0.8100 +3921 29088 0.5510 +3921 29093 0.7760 +3921 29102 0.5270 +3921 29789 0.5290 +3921 29922 0.5080 +3921 29927 0.9570 +3921 29978 0.4990 +3921 29979 0.6010 +3921 30850 0.5980 +3921 50613 0.5350 +3921 51021 0.9120 +3921 51023 0.5980 +3921 51065 0.9820 +3921 51067 0.4180 +3921 51069 0.7730 +3921 51073 0.7810 +3921 51081 0.8580 +3921 51106 0.4890 +3921 51119 0.6490 +3921 51121 0.9950 +3921 51149 0.9170 +3921 51154 0.8320 +3921 51187 0.6890 +3921 51263 0.5150 +3921 51264 0.9060 +3921 51314 0.5440 +3921 51319 0.9280 +3921 51386 0.9600 +3921 51504 0.8260 +3921 51520 0.4300 +3921 51569 0.4130 +3921 51574 0.5990 +3921 51649 0.4160 +3921 53918 0.8780 +3921 54148 0.4320 +3921 54464 0.5220 +3921 54472 0.5590 +3921 54505 0.7550 +3921 54516 0.4920 +3921 54596 0.4780 +3921 54948 0.6840 +3921 55052 0.9100 +3921 55143 0.5330 +3921 55157 0.4220 +3921 55168 0.6020 +3921 55173 0.8420 +3921 55176 0.7830 +3921 55272 0.8680 +3921 55316 0.9070 +3921 55324 0.5140 +3921 55591 0.5800 +3921 55629 0.5040 +3921 55646 0.8240 +3921 55651 0.6600 +3921 55703 0.6790 +3921 55720 0.9630 +3921 55781 0.9680 +3921 55802 0.5360 +3921 55854 0.6610 +3921 55862 0.4210 +3921 56474 0.5210 +3921 56479 0.4220 +3921 56648 0.8810 +3921 56893 0.5800 +3921 56902 0.9070 +3921 56945 0.4500 +3921 56965 0.6430 +3921 57129 0.6650 +3921 57470 0.8960 +3921 60488 0.6840 +3921 60558 0.6210 +3921 60559 0.4050 +3921 60678 0.9520 +3921 63875 0.9120 +3921 63925 0.4700 +3921 63931 0.7750 +3921 64146 0.6140 +3921 64216 0.4830 +3921 64221 0.4990 +3921 64374 0.6800 +3921 64432 0.6290 +3921 64745 0.4980 +3921 64763 0.6170 +3921 64960 0.7770 +3921 64963 0.8930 +3921 64965 0.9100 +3921 64968 0.9040 +3921 64969 0.8280 +3921 64975 0.6980 +3921 64976 0.6430 +3921 64978 0.5020 +3921 64979 0.9070 +3921 64981 0.6120 +3921 64983 0.9100 +3921 65003 0.6880 +3921 65005 0.9020 +3921 65008 0.7830 +3921 65080 0.5270 +3921 65095 0.4950 +3921 65121 0.5390 +3921 65122 0.5390 +3921 65993 0.6270 +3921 79048 0.8160 +3921 79188 0.4300 +3921 79571 0.4320 +3921 79590 0.7750 +3921 79631 0.6950 +3921 79668 0.6430 +3921 79932 0.6170 +3921 79968 0.5250 +3921 80222 0.4760 +3921 80349 0.5910 +3921 83732 0.8420 +3921 83939 0.5770 +3921 84172 0.6810 +3921 84285 0.8350 +3921 84294 0.6660 +3921 84545 0.7450 +3921 84701 0.5570 +3921 84790 0.4440 +3921 84851 0.5330 +3921 84946 0.9830 +3921 84993 0.4390 +3921 85377 0.4620 +3921 85395 0.8080 +3921 85437 0.6840 +3921 85476 0.6980 +3921 90313 0.4580 +3921 90701 0.4710 +3921 90957 0.7300 +3921 91408 0.4890 +3921 91574 0.4940 +3921 91875 0.5150 +3921 92196 0.8080 +3921 92399 0.8990 +3921 93107 0.4220 +3921 93550 0.5030 +3921 114987 0.8930 +3921 115098 0.8910 +3921 116541 0.4700 +3921 116832 0.9680 +3921 118487 0.5280 +3921 120892 0.5160 +3921 123283 0.4830 +3921 124454 0.6290 +3921 124995 0.5560 +3921 126402 0.8780 +3921 134637 0.7790 +3921 139596 0.4020 +3921 140032 0.9840 +3921 140467 0.4560 +3921 140801 0.9980 +3921 143244 0.8820 +3921 143630 0.4430 +3921 152518 0.4590 +3921 153443 0.4800 +3921 157310 0.4880 +3921 164153 0.4870 +3921 169522 0.4890 +3921 170850 0.4220 +3921 200916 0.9640 +3921 201595 0.5130 +3921 219927 0.9060 +3921 254268 0.8860 +3921 255308 0.6820 +3921 283518 0.4220 +3921 285855 0.9830 +3921 339390 0.4080 +3921 342538 0.6980 +3921 343068 0.5390 +3921 343070 0.5390 +3921 345051 0.4100 +3921 374659 0.6040 +3921 387129 0.8490 +3921 387712 0.4620 +3921 390999 0.5390 +3921 391002 0.5390 +3921 400735 0.5390 +3921 400736 0.5390 +3921 440560 0.5390 +3921 440561 0.5390 +3921 441873 0.5390 +3921 641776 0.6640 +3921 642489 0.4100 +3921 643909 0.6640 +3921 645051 0.6260 +3921 645073 0.6260 +3921 645359 0.5390 +3921 653619 0.5390 +3921 654364 0.6110 +3921 728524 0.6640 +3921 728689 0.8390 +3921 729396 0.6260 +3921 729422 0.6260 +3921 729428 0.6260 +3921 729431 0.6260 +3921 729442 0.6260 +3921 729447 0.6260 +3921 729528 0.5390 +3921 100008586 0.6260 +3921 100132399 0.6260 +3921 100505478 0.6860 +3921 100526842 0.9950 +3921 100529097 0.9210 +3921 100529239 0.9940 +3921 100996746 0.6640 +3921 101929983 0.5390 +3921 102724473 0.6260 +3921 105180390 0.6640 +3921 105180391 0.6640 +3921 114483834 0.4910 +3925 4082 0.4530 +3925 4088 0.4190 +3925 4131 0.4590 +3925 4134 0.7300 +3925 4137 0.6830 +3925 4288 0.5070 +3925 4609 0.5240 +3925 4610 0.4280 +3925 4830 0.4810 +3925 5037 0.5580 +3925 5216 0.4370 +3925 5223 0.4950 +3925 5230 0.4120 +3925 5245 0.4920 +3925 5347 0.4750 +3925 5594 0.9490 +3925 5595 0.9310 +3925 5728 0.4310 +3925 5868 0.5010 +3925 5978 0.5210 +3925 6241 0.4180 +3925 6249 0.6420 +3925 6647 0.4190 +3925 6659 0.4770 +3925 6774 0.9540 +3925 6790 0.4430 +3925 7153 0.5880 +3925 7157 0.7660 +3925 7169 0.5710 +3925 7170 0.5270 +3925 7224 0.5270 +3925 7251 0.6020 +3925 7277 0.5570 +3925 7280 0.4530 +3925 7283 0.5370 +3925 7298 0.7210 +3925 7415 0.5290 +3925 7532 0.5060 +3925 7846 0.4190 +3925 8091 0.4430 +3925 8125 0.4530 +3925 8771 0.6700 +3925 8909 0.4470 +3925 9055 0.4060 +3925 9124 0.4630 +3925 9133 0.5440 +3925 9212 0.4840 +3925 9232 0.5030 +3925 9338 0.4720 +3925 9768 0.4270 +3925 9793 0.5370 +3925 9821 0.7150 +3925 10112 0.4390 +3925 10204 0.4440 +3925 10376 0.6370 +3925 10381 0.5920 +3925 10383 0.4450 +3925 10458 0.4780 +3925 10572 0.6870 +3925 10744 0.4680 +3925 10815 0.4330 +3925 10963 0.6590 +3925 11004 0.6810 +3925 11065 0.4500 +3925 11075 0.7030 +3925 11130 0.4080 +3925 11315 0.5080 +3925 11338 0.6050 +3925 23593 0.5080 +3925 27010 0.4490 +3925 27175 0.4410 +3925 29124 0.4300 +3925 50861 0.6490 +3925 51132 0.5910 +3925 51155 0.5170 +3925 51160 0.4230 +3925 51203 0.4550 +3925 51806 0.5670 +3925 55165 0.4840 +3925 84971 0.4550 +3925 90678 0.4550 +3925 90861 0.4550 +3925 91860 0.5470 +3925 127933 0.9170 +3925 150465 0.6960 +3925 163688 0.5470 +3925 203068 0.5390 +3925 219670 0.4470 +3927 4297 0.4150 +3927 4298 0.4840 +3927 4299 0.5030 +3927 4300 0.4670 +3927 4301 0.4130 +3927 4302 0.8030 +3927 4627 0.4680 +3927 5413 0.4460 +3927 6455 0.5500 +3927 6615 0.4440 +3927 6624 0.4390 +3927 6774 0.4280 +3927 7058 0.4790 +3927 7408 0.8570 +3927 7430 0.6180 +3927 7791 0.9290 +3927 8028 0.5170 +3927 8407 0.4620 +3927 8833 0.5600 +3927 9319 0.5650 +3927 9414 0.6740 +3927 9618 0.7370 +3927 9673 0.4600 +3927 10096 0.4410 +3927 10243 0.4410 +3927 10324 0.7860 +3927 10923 0.4910 +3927 10978 0.5130 +3927 10987 0.4870 +3927 23022 0.8780 +3927 23048 0.6590 +3927 23157 0.4800 +3927 23365 0.4740 +3927 26532 0.4350 +3927 27143 0.4830 +3927 29128 0.6560 +3927 51755 0.4450 +3927 55055 0.5170 +3927 57082 0.5480 +3927 57623 0.5300 +3927 81034 0.4160 +3927 84324 0.5410 +3927 124989 0.4300 +3927 129138 0.5520 +3927 160140 0.4710 +3927 254251 0.4600 +3927 259287 0.4240 +3929 3934 0.5720 +3929 4057 0.4370 +3929 4312 0.4190 +3929 4313 0.4470 +3929 4314 0.4620 +3929 4318 0.4980 +3929 5004 0.5830 +3929 5005 0.5650 +3929 5336 0.5070 +3929 5443 0.4550 +3929 6288 0.7000 +3929 6289 0.5420 +3929 6291 0.4280 +3929 6347 0.4030 +3929 6774 0.6060 +3929 6778 0.5230 +3929 7040 0.5030 +3929 7076 0.4840 +3929 7097 0.7120 +3929 7099 0.9790 +3929 7124 0.6890 +3929 7276 0.6840 +3929 8993 0.4230 +3929 9332 0.4290 +3929 10216 0.4630 +3929 23643 0.9790 +3929 51297 0.5860 +3929 57817 0.5330 +3929 81494 0.4290 +3929 112744 0.4350 +3929 116844 0.5480 +3929 135228 0.4300 +3929 140683 0.6440 +3930 3998 0.4880 +3930 4000 0.7470 +3930 4001 0.9990 +3930 4047 0.5700 +3930 4204 0.9750 +3930 4597 0.4260 +3930 4598 0.4640 +3930 4609 0.4100 +3930 4790 0.4480 +3930 4791 0.4010 +3930 4928 0.4130 +3930 5245 0.4540 +3930 5635 0.4090 +3930 5725 0.4050 +3930 5740 0.5190 +3930 5879 0.6100 +3930 5880 0.5900 +3930 5881 0.5790 +3930 5966 0.4840 +3930 6294 0.4730 +3930 6307 0.9760 +3930 6309 0.9410 +3930 6370 0.4680 +3930 6556 0.4290 +3930 6672 0.5900 +3930 6713 0.9100 +3930 6732 0.6300 +3930 6839 0.6970 +3930 7044 0.4290 +3930 7108 0.9060 +3930 7112 0.7400 +3930 7175 0.4180 +3930 7444 0.5030 +3930 7486 0.4700 +3930 7884 0.5320 +3930 8290 0.8750 +3930 8350 0.5490 +3930 8356 0.8750 +3930 8361 0.6720 +3930 8369 0.5550 +3930 8815 0.8520 +3930 8841 0.5910 +3930 9023 0.6460 +3930 9133 0.5240 +3930 9212 0.5990 +3930 9217 0.5290 +3930 9420 0.5190 +3930 9486 0.4250 +3930 9667 0.4210 +3930 9688 0.4130 +3930 9775 0.4310 +3930 9972 0.6980 +3930 10134 0.5090 +3930 10269 0.4600 +3930 10280 0.8840 +3930 10380 0.4200 +3930 10424 0.5330 +3930 10637 0.4950 +3930 10654 0.4140 +3930 10664 0.5940 +3930 10682 0.7590 +3930 10762 0.4860 +3930 10803 0.4240 +3930 10826 0.6450 +3930 10951 0.8280 +3930 11161 0.8970 +3930 11270 0.6520 +3930 11335 0.9550 +3930 23013 0.5150 +3930 23076 0.4430 +3930 23165 0.4090 +3930 23224 0.5570 +3930 23225 0.6250 +3930 23345 0.6740 +3930 23353 0.7720 +3930 23468 0.9270 +3930 23524 0.4100 +3930 23592 0.9410 +3930 23636 0.4590 +3930 25777 0.7320 +3930 25909 0.6570 +3930 25963 0.4010 +3930 26092 0.4510 +3930 26166 0.4450 +3930 26586 0.4530 +3930 26993 0.5280 +3930 27430 0.4560 +3930 29984 0.5820 +3930 50814 0.7180 +3930 51302 0.5190 +3930 51478 0.9000 +3930 51479 0.4080 +3930 55251 0.4190 +3930 55552 0.4190 +3930 55692 0.4840 +3930 55746 0.4610 +3930 57122 0.4720 +3930 57412 0.4450 +3930 65992 0.4640 +3930 78994 0.6900 +3930 79980 0.6600 +3930 80270 0.5790 +3930 84317 0.4100 +3930 84814 0.4140 +3930 84823 0.9980 +3930 84976 0.5420 +3930 91734 0.4270 +3930 93517 0.5560 +3930 120892 0.5230 +3930 140836 0.8210 +3930 147991 0.4720 +3930 158747 0.4870 +3930 163033 0.6290 +3930 163183 0.4170 +3930 221496 0.5760 +3930 286151 0.4490 +3930 347475 0.5190 +3930 440093 0.8700 +3930 440686 0.8700 +3930 653604 0.8700 +3931 3949 0.5580 +3931 3990 0.8930 +3931 3991 0.6280 +3931 4018 0.8960 +3931 4023 0.8930 +3931 4481 0.5740 +3931 4507 0.4100 +3931 4547 0.4630 +3931 4598 0.4640 +3931 5337 0.9210 +3931 5338 0.9220 +3931 5360 0.9500 +3931 5444 0.9650 +3931 5465 0.4590 +3931 5468 0.4110 +3931 5681 0.8110 +3931 5699 0.7820 +3931 6189 0.5420 +3931 6288 0.7180 +3931 6289 0.6950 +3931 6291 0.6610 +3931 6342 0.4350 +3931 6558 0.4930 +3931 6646 0.6710 +3931 6720 0.4010 +3931 6721 0.4240 +3931 7436 0.6900 +3931 7450 0.4460 +3931 7753 0.4670 +3931 7941 0.8360 +3931 8399 0.4490 +3931 8435 0.7120 +3931 8504 0.7210 +3931 8542 0.8760 +3931 8612 0.4100 +3931 8613 0.4510 +3931 8694 0.6270 +3931 8858 0.5280 +3931 9332 0.5830 +3931 9388 0.6920 +3931 9619 0.7170 +3931 9791 0.9180 +3931 10390 0.9300 +3931 10400 0.9470 +3931 10430 0.5310 +3931 10434 0.9230 +3931 10554 0.4170 +3931 10555 0.4230 +3931 10558 0.4020 +3931 10858 0.4380 +3931 10908 0.9200 +3931 11145 0.9140 +3931 23646 0.9130 +3931 23659 0.9050 +3931 26119 0.4020 +3931 27329 0.5130 +3931 29881 0.6590 +3931 51279 0.6100 +3931 51449 0.7710 +3931 51599 0.5600 +3931 51741 0.4100 +3931 55829 0.7200 +3931 55911 0.5420 +3931 55937 0.8850 +3931 56994 0.9310 +3931 64240 0.5750 +3931 64241 0.5360 +3931 64788 0.4240 +3931 79135 0.5940 +3931 79888 0.4050 +3931 80168 0.4200 +3931 84649 0.6060 +3931 116255 0.4610 +3931 116519 0.8970 +3931 122618 0.9070 +3931 129642 0.5190 +3931 151056 0.9210 +3931 158833 0.5460 +3931 158835 0.4810 +3931 200576 0.5460 +3931 255738 0.5070 +3931 338328 0.4140 +3931 346606 0.4190 +3931 347516 0.4190 +3931 375775 0.9310 +3931 440387 0.5810 +3931 100423062 0.9070 +3931 100528017 0.5970 +3931 102723407 0.9040 +3933 3934 0.8600 +3933 3959 0.4010 +3933 4057 0.9230 +3933 4069 0.7180 +3933 4246 0.5780 +3933 5004 0.7340 +3933 5047 0.8440 +3933 5173 0.4600 +3933 5265 0.4600 +3933 5304 0.6820 +3933 5730 0.7640 +3933 5950 0.7020 +3933 6280 0.4470 +3933 6422 0.5110 +3933 6425 0.6390 +3933 7018 0.4820 +3933 7295 0.5010 +3933 7479 0.8030 +3933 10648 0.6720 +3933 11272 0.7190 +3933 29989 0.4730 +3933 51297 0.4750 +3933 55716 0.9600 +3933 55825 0.5310 +3933 58503 0.4580 +3933 84569 0.7870 +3933 90070 0.8630 +3933 117159 0.5070 +3933 124220 0.4710 +3933 138307 0.6080 +3933 158062 0.5800 +3933 204474 0.4320 +3933 286256 0.6490 +3933 341350 0.5760 +3933 389812 0.6500 +3933 392399 0.7270 +3933 414332 0.4120 +3933 102723971 0.4340 +3934 3936 0.4850 +3934 3952 0.5160 +3934 3958 0.6750 +3934 3976 0.5200 +3934 4017 0.5020 +3934 4036 0.9840 +3934 4057 0.9960 +3934 4069 0.5440 +3934 4082 0.4290 +3934 4151 0.4530 +3934 4159 0.4030 +3934 4160 0.8770 +3934 4233 0.4580 +3934 4283 0.4100 +3934 4312 0.6110 +3934 4313 0.9070 +3934 4314 0.6190 +3934 4316 0.4690 +3934 4317 0.7940 +3934 4318 0.9980 +3934 4353 0.6830 +3934 4585 0.5120 +3934 4680 0.6450 +3934 4790 0.4480 +3934 4868 0.4270 +3934 4878 0.4180 +3934 4879 0.4320 +3934 4891 0.4310 +3934 5004 0.7070 +3934 5005 0.6480 +3934 5008 0.5420 +3934 5047 0.6170 +3934 5054 0.4800 +3934 5068 0.4600 +3934 5265 0.4260 +3934 5266 0.5660 +3934 5267 0.4410 +3934 5443 0.7200 +3934 5468 0.4740 +3934 5657 0.7380 +3934 5743 0.4180 +3934 5806 0.4160 +3934 5919 0.4740 +3934 5950 0.5450 +3934 5968 0.4950 +3934 5972 0.5920 +3934 6278 0.5400 +3934 6279 0.5350 +3934 6280 0.5930 +3934 6283 0.6130 +3934 6286 0.4570 +3934 6288 0.6960 +3934 6289 0.4820 +3934 6347 0.7810 +3934 6348 0.4170 +3934 6364 0.5200 +3934 6374 0.5110 +3934 6401 0.4400 +3934 6403 0.4340 +3934 6520 0.9100 +3934 6556 0.5590 +3934 6590 0.8960 +3934 6591 0.4970 +3934 6659 0.4070 +3934 6696 0.7430 +3934 6774 0.7440 +3934 6778 0.6010 +3934 6947 0.7330 +3934 6948 0.4210 +3934 7033 0.5430 +3934 7037 0.4420 +3934 7040 0.6740 +3934 7048 0.4520 +3934 7076 0.8500 +3934 7077 0.6470 +3934 7097 0.4680 +3934 7099 0.5560 +3934 7124 0.6700 +3934 7130 0.4090 +3934 7157 0.4180 +3934 7168 0.4300 +3934 7369 0.5900 +3934 7412 0.4730 +3934 7431 0.5630 +3934 7837 0.4250 +3934 8029 0.4120 +3934 8074 0.5050 +3934 8600 0.5180 +3934 8822 0.4950 +3934 8876 0.4410 +3934 8993 0.6890 +3934 9021 0.5160 +3934 9365 0.4160 +3934 9370 0.5780 +3934 9518 0.4490 +3934 9659 0.5130 +3934 10068 0.4340 +3934 10135 0.4540 +3934 10158 0.6770 +3934 10321 0.6270 +3934 10409 0.4380 +3934 10562 0.8560 +3934 10724 0.7200 +3934 11202 0.4690 +3934 23428 0.8020 +3934 23569 0.5960 +3934 23765 0.4080 +3934 27161 0.4110 +3934 30061 0.4640 +3934 50506 0.4270 +3934 50616 0.6020 +3934 51310 0.9980 +3934 51561 0.5700 +3934 54575 0.4320 +3934 55291 0.4380 +3934 55600 0.5020 +3934 56729 0.7110 +3934 57126 0.4440 +3934 57817 0.9880 +3934 58516 0.5570 +3934 64320 0.5040 +3934 64332 0.4880 +3934 79944 0.4240 +3934 81027 0.4580 +3934 84518 0.4820 +3934 84666 0.5530 +3934 90527 0.4050 +3934 112744 0.6340 +3934 116844 0.4140 +3934 130120 0.5790 +3934 137902 0.4240 +3934 200958 0.4060 +3934 405753 0.4730 +3934 414325 0.7700 +3934 727897 0.5090 +3934 728358 0.4250 +3934 100133941 0.4210 +3934 100289462 0.4580 +3936 3937 0.4770 +3936 4005 0.4420 +3936 4069 0.5210 +3936 4318 0.4010 +3936 4353 0.5020 +3936 4478 0.5620 +3936 4542 0.4420 +3936 4602 0.5350 +3936 4689 0.4800 +3936 4837 0.5380 +3936 5216 0.5320 +3936 5341 0.5830 +3936 5357 0.4050 +3936 5358 0.8180 +3936 5777 0.4210 +3936 5788 0.5340 +3936 5868 0.4460 +3936 5880 0.6740 +3936 6277 0.4170 +3936 6279 0.4190 +3936 6311 0.6030 +3936 6456 0.4950 +3936 6457 0.5100 +3936 6624 0.8160 +3936 6688 0.6490 +3936 6775 0.7570 +3936 6876 0.5940 +3936 7124 0.4470 +3936 7168 0.5690 +3936 7280 0.5250 +3936 7305 0.4140 +3936 7430 0.4530 +3936 7454 0.6200 +3936 7805 0.7860 +3936 8294 0.5240 +3936 8407 0.4900 +3936 9535 0.4390 +3936 9595 0.4050 +3936 9948 0.4500 +3936 10092 0.4970 +3936 10093 0.4590 +3936 10096 0.5810 +3936 10097 0.6160 +3936 10320 0.6360 +3936 10487 0.5900 +3936 11151 0.6630 +3936 23406 0.5420 +3936 25801 0.8420 +3936 28988 0.4730 +3936 29114 0.4140 +3936 51806 0.5330 +3936 54715 0.4240 +3936 55843 0.4140 +3936 55893 0.4970 +3936 56731 0.4300 +3936 57180 0.5360 +3936 57705 0.4120 +3936 83706 0.5520 +3936 85477 0.4570 +3936 89857 0.4820 +3936 91860 0.5210 +3936 163688 0.5210 +3936 203068 0.5070 +3936 219972 0.6020 +3936 375189 0.4500 +3936 653857 0.5480 +3936 728378 0.4130 +3937 3958 0.4710 +3937 4033 0.4380 +3937 4067 0.9670 +3937 4068 0.4210 +3937 4214 0.5920 +3937 4332 0.5030 +3937 4542 0.5200 +3937 4688 0.4210 +3937 4689 0.4790 +3937 4690 0.9990 +3937 4772 0.4190 +3937 4773 0.4120 +3937 4775 0.4570 +3937 5058 0.5910 +3937 5062 0.5390 +3937 5063 0.5190 +3937 5175 0.6960 +3937 5290 0.5690 +3937 5291 0.6220 +3937 5294 0.4270 +3937 5295 0.8500 +3937 5296 0.5620 +3937 5327 0.6540 +3937 5330 0.4350 +3937 5335 0.9990 +3937 5336 0.9980 +3937 5341 0.7240 +3937 5551 0.4480 +3937 5588 0.6930 +3937 5747 0.5590 +3937 5777 0.9780 +3937 5781 0.9480 +3937 5788 0.9350 +3937 5829 0.5450 +3937 5877 0.9770 +3937 5879 0.6430 +3937 5880 0.5870 +3937 5905 0.9170 +3937 5906 0.9250 +3937 5908 0.9260 +3937 5996 0.4240 +3937 6039 0.4280 +3937 6402 0.5490 +3937 6404 0.4270 +3937 6452 0.4060 +3937 6461 0.6410 +3937 6464 0.9450 +3937 6503 0.5250 +3937 6504 0.4020 +3937 6654 0.9310 +3937 6655 0.7120 +3937 6688 0.5910 +3937 6693 0.4290 +3937 6714 0.9690 +3937 6776 0.4070 +3937 6850 0.9990 +3937 7006 0.9170 +3937 7094 0.4670 +3937 7097 0.4170 +3937 7099 0.4460 +3937 7124 0.4270 +3937 7294 0.7830 +3937 7305 0.9600 +3937 7341 0.4720 +3937 7408 0.7760 +3937 7409 0.9990 +3937 7410 0.9950 +3937 7454 0.9790 +3937 7456 0.8050 +3937 7462 0.8770 +3937 7534 0.4630 +3937 7535 0.9990 +3937 7805 0.6160 +3937 7852 0.4190 +3937 7940 0.4100 +3937 8440 0.9770 +3937 8477 0.4150 +3937 8491 0.4640 +3937 8631 0.9870 +3937 8832 0.4230 +3937 8844 0.4110 +3937 8915 0.4330 +3937 8935 0.8510 +3937 9046 0.5510 +3937 9051 0.4320 +3937 9398 0.4570 +3937 9402 0.9990 +3937 9450 0.5730 +3937 9473 0.4860 +3937 9564 0.5360 +3937 9595 0.5240 +3937 9840 0.5860 +3937 9846 0.5350 +3937 9938 0.5700 +3937 10125 0.7650 +3937 10188 0.5690 +3937 10235 0.4380 +3937 10254 0.4300 +3937 10288 0.4740 +3937 10320 0.5510 +3937 10399 0.4140 +3937 10451 0.9990 +3937 10630 0.6830 +3937 10750 0.9710 +3937 10870 0.5640 +3937 10894 0.4210 +3937 11151 0.4850 +3937 11184 0.9330 +3937 11314 0.6460 +3937 22914 0.7190 +3937 23533 0.4460 +3937 26191 0.4600 +3937 26499 0.4320 +3937 27040 0.9990 +3937 27071 0.6320 +3937 29760 0.9910 +3937 29851 0.6090 +3937 30011 0.5050 +3937 50852 0.5500 +3937 51052 0.4520 +3937 51206 0.7800 +3937 51266 0.8050 +3937 51284 0.4880 +3937 51311 0.5010 +3937 51348 0.4990 +3937 51466 0.5570 +3937 51744 0.4810 +3937 53347 0.8670 +3937 54209 0.7600 +3937 54440 0.5050 +3937 54518 0.7010 +3937 55740 0.4990 +3937 55824 0.5210 +3937 55843 0.5490 +3937 56242 0.4260 +3937 57705 0.4710 +3937 64092 0.5300 +3937 64098 0.5330 +3937 64283 0.4190 +3937 64407 0.4480 +3937 64926 0.4350 +3937 80342 0.4490 +3937 80381 0.5480 +3937 81704 0.4140 +3937 83593 0.4990 +3937 83660 0.4500 +3937 83706 0.5660 +3937 84106 0.6700 +3937 84433 0.5760 +3937 84868 0.7250 +3937 84959 0.8270 +3937 114836 0.4050 +3937 117289 0.5030 +3937 133482 0.4840 +3937 140885 0.4980 +3937 257106 0.4150 +3937 285220 0.4090 +3937 339229 0.4280 +3937 387357 0.5690 +3937 388325 0.5180 +3937 390714 0.5310 +3937 441168 0.4590 +3937 474344 0.4070 +3937 653361 0.4160 +3938 4175 0.8240 +3938 5092 0.5480 +3938 6476 0.8560 +3938 6523 0.6450 +3938 6927 0.7720 +3938 7462 0.7160 +3938 8704 0.9000 +3938 8972 0.7840 +3938 11181 0.4590 +3938 55723 0.4450 +3938 57016 0.9070 +3938 57451 0.4780 +3938 57818 0.9010 +3938 80201 0.9110 +3938 91749 0.4890 +3938 92579 0.9000 +3938 93432 0.6500 +3938 130589 0.9200 +3938 140628 0.8180 +3938 150223 0.4240 +3948 4199 0.9510 +3948 4200 0.9520 +3948 4357 0.9200 +3948 4654 0.5000 +3948 4706 0.5160 +3948 4728 0.5680 +3948 4942 0.4110 +3948 4967 0.4450 +3948 5091 0.9660 +3948 5096 0.5440 +3948 5105 0.5170 +3948 5106 0.4860 +3948 5161 0.9510 +3948 5162 0.9420 +3948 5211 0.5380 +3948 5213 0.5490 +3948 5214 0.5280 +3948 5223 0.4610 +3948 5224 0.4690 +3948 5226 0.4130 +3948 5230 0.5890 +3948 5232 0.6960 +3948 5313 0.9860 +3948 5315 0.9830 +3948 5620 0.4360 +3948 5834 0.4270 +3948 5836 0.4170 +3948 5837 0.4270 +3948 6288 0.6840 +3948 6289 0.5230 +3948 6291 0.6970 +3948 6389 0.5520 +3948 6390 0.5900 +3948 6652 0.4900 +3948 6888 0.9070 +3948 6898 0.4090 +3948 7086 0.8960 +3948 7141 0.4280 +3948 7166 0.4890 +3948 7167 0.7160 +3948 7251 0.9540 +3948 7263 0.9110 +3948 7284 0.4810 +3948 8277 0.9060 +3948 8789 0.5110 +3948 8801 0.5530 +3948 8802 0.7360 +3948 8803 0.5840 +3948 8836 0.5610 +3948 8852 0.4060 +3948 9172 0.4120 +3948 9380 0.4230 +3948 9563 0.9260 +3948 10463 0.4850 +3948 10873 0.9560 +3948 10923 0.5790 +3948 10993 0.8200 +3948 26330 0.7800 +3948 51071 0.8060 +3948 55753 0.4160 +3948 56965 0.5360 +3948 57469 0.4640 +3948 64087 0.5440 +3948 64902 0.8420 +3948 79668 0.5360 +3948 79728 0.5160 +3948 83639 0.5820 +3948 84076 0.8980 +3948 84706 0.6020 +3948 113675 0.8200 +3948 122970 0.4050 +3948 124975 0.6340 +3948 132158 0.8230 +3948 137362 0.9800 +3948 160287 0.7860 +3948 197257 0.9500 +3948 255626 0.4100 +3948 374768 0.4050 +3948 387712 0.5480 +3948 548596 0.7250 +3948 100528017 0.7300 +3949 3990 0.5410 +3949 4018 0.6000 +3949 4023 0.5530 +3949 4036 0.5020 +3949 4043 0.7340 +3949 4074 0.5610 +3949 4313 0.4600 +3949 4481 0.5400 +3949 5360 0.5770 +3949 5444 0.5630 +3949 6233 0.4990 +3949 6288 0.5540 +3949 6289 0.5540 +3949 6291 0.5570 +3949 6453 0.5310 +3949 6455 0.5150 +3949 6456 0.5080 +3949 6457 0.5080 +3949 6572 0.4990 +3949 6713 0.4630 +3949 6844 0.4990 +3949 6845 0.4990 +3949 6857 0.5470 +3949 6869 0.4990 +3949 7018 0.5200 +3949 7037 0.5680 +3949 7039 0.4990 +3949 7057 0.4620 +3949 7311 0.5180 +3949 7314 0.4990 +3949 7316 0.5000 +3949 7436 0.5830 +3949 7474 0.5520 +3949 7941 0.5400 +3949 8027 0.5000 +3949 8218 0.5380 +3949 8301 0.5090 +3949 8322 0.5570 +3949 8504 0.5400 +3949 8542 0.5400 +3949 8673 0.4990 +3949 8674 0.4990 +3949 9146 0.5280 +3949 9185 0.4990 +3949 9341 0.4990 +3949 9856 0.4990 +3949 9892 0.5090 +3949 10254 0.4990 +3949 10618 0.5030 +3949 11037 0.4990 +3949 22848 0.5080 +3949 22905 0.5030 +3949 23149 0.5000 +3949 23208 0.5270 +3949 25977 0.5170 +3949 26119 0.9930 +3949 29116 0.9780 +3949 29924 0.5070 +3949 29978 0.4990 +3949 29988 0.5030 +3949 30011 0.5150 +3949 50618 0.5310 +3949 51449 0.5400 +3949 51540 0.4480 +3949 51599 0.5550 +3949 55707 0.5170 +3949 55829 0.5500 +3949 55911 0.5400 +3949 55937 0.5480 +3949 58513 0.5120 +3949 79135 0.5400 +3949 83999 0.4220 +3949 84251 0.5000 +3949 85021 0.4990 +3949 85439 0.4990 +3949 90019 0.4990 +3949 115548 0.5170 +3949 116519 0.5420 +3949 127833 0.5470 +3949 143425 0.4990 +3949 255324 0.4990 +3949 255738 0.9990 +3949 375790 0.4550 +3949 100528017 0.5540 +3950 4018 0.7060 +3950 4153 0.5110 +3950 5340 0.7310 +3950 5624 0.4010 +3950 6288 0.4630 +3950 6289 0.4440 +3950 6291 0.4360 +3950 6414 0.5070 +3950 7075 0.7520 +3950 7276 0.4090 +3950 9104 0.4120 +3950 10599 0.6470 +3950 11061 0.9100 +3950 26291 0.4350 +3950 28234 0.6290 +3950 51646 0.4200 +3950 54994 0.4220 +3950 64795 0.4350 +3950 83854 0.5090 +3950 100528017 0.4240 +3950 115072896 0.6060 +3952 3953 0.9990 +3952 3973 0.5000 +3952 3976 0.4170 +3952 3977 0.7610 +3952 3990 0.4080 +3952 3991 0.7600 +3952 4015 0.4640 +3952 4023 0.8280 +3952 4035 0.7350 +3952 4036 0.5740 +3952 4057 0.5700 +3952 4091 0.4190 +3952 4092 0.4030 +3952 4157 0.4090 +3952 4158 0.5950 +3952 4159 0.8260 +3952 4160 0.9440 +3952 4161 0.5220 +3952 4254 0.5470 +3952 4283 0.5890 +3952 4295 0.5630 +3952 4306 0.4870 +3952 4313 0.4460 +3952 4314 0.4470 +3952 4317 0.5290 +3952 4318 0.6490 +3952 4323 0.4810 +3952 4352 0.7920 +3952 4353 0.4310 +3952 4780 0.4060 +3952 4790 0.5250 +3952 4803 0.4800 +3952 4846 0.5450 +3952 4851 0.4110 +3952 4852 0.9960 +3952 4878 0.4180 +3952 4886 0.4590 +3952 4887 0.6110 +3952 4889 0.4240 +3952 4915 0.4110 +3952 4922 0.6600 +3952 4925 0.7610 +3952 5020 0.6360 +3952 5021 0.4590 +3952 5054 0.8510 +3952 5105 0.7270 +3952 5106 0.4850 +3952 5122 0.8040 +3952 5140 0.5670 +3952 5156 0.7360 +3952 5159 0.7350 +3952 5166 0.4340 +3952 5173 0.4340 +3952 5175 0.4580 +3952 5196 0.5170 +3952 5228 0.4890 +3952 5241 0.5990 +3952 5295 0.4960 +3952 5296 0.4520 +3952 5321 0.4290 +3952 5327 0.4060 +3952 5340 0.5410 +3952 5346 0.8460 +3952 5367 0.7690 +3952 5406 0.5160 +3952 5443 0.9920 +3952 5444 0.6570 +3952 5465 0.8390 +3952 5467 0.7110 +3952 5468 0.9480 +3952 5469 0.5640 +3952 5539 0.6230 +3952 5563 0.4370 +3952 5566 0.6420 +3952 5567 0.6420 +3952 5568 0.6430 +3952 5571 0.4280 +3952 5595 0.6910 +3952 5599 0.4180 +3952 5617 0.9850 +3952 5618 0.8480 +3952 5697 0.9080 +3952 5728 0.5090 +3952 5741 0.7360 +3952 5743 0.5200 +3952 5744 0.4610 +3952 5770 0.6970 +3952 5771 0.4180 +3952 5781 0.8080 +3952 5788 0.4070 +3952 5919 0.7250 +3952 5950 0.7410 +3952 5972 0.7020 +3952 6198 0.4940 +3952 6256 0.6650 +3952 6303 0.4550 +3952 6319 0.7230 +3952 6343 0.5890 +3952 6347 0.7690 +3952 6348 0.5050 +3952 6351 0.4160 +3952 6355 0.5140 +3952 6356 0.6780 +3952 6369 0.5240 +3952 6376 0.4110 +3952 6387 0.4400 +3952 6401 0.5070 +3952 6425 0.4520 +3952 6462 0.7630 +3952 6476 0.4180 +3952 6492 0.6620 +3952 6513 0.5830 +3952 6514 0.7300 +3952 6517 0.8390 +3952 6523 0.4160 +3952 6524 0.5050 +3952 6548 0.4510 +3952 6696 0.7640 +3952 6714 0.5390 +3952 6720 0.8360 +3952 6721 0.4490 +3952 6750 0.7940 +3952 6770 0.4160 +3952 6772 0.5860 +3952 6774 0.9330 +3952 6776 0.7220 +3952 6777 0.7260 +3952 6778 0.6180 +3952 6794 0.4740 +3952 6837 0.5120 +3952 6863 0.4250 +3952 6934 0.4430 +3952 7010 0.5460 +3952 7039 0.6070 +3952 7040 0.7210 +3952 7054 0.6440 +3952 7066 0.9450 +3952 7069 0.4050 +3952 7075 0.4520 +3952 7076 0.5070 +3952 7077 0.5640 +3952 7097 0.4430 +3952 7099 0.6920 +3952 7124 0.8920 +3952 7157 0.5450 +3952 7200 0.7450 +3952 7253 0.4810 +3952 7276 0.4180 +3952 7349 0.5940 +3952 7350 0.8740 +3952 7351 0.8850 +3952 7352 0.6090 +3952 7412 0.5860 +3952 7425 0.4330 +3952 7432 0.5740 +3952 7442 0.5570 +3952 7450 0.4090 +3952 7494 0.5990 +3952 7837 0.7420 +3952 8074 0.6700 +3952 8202 0.5650 +3952 8310 0.4390 +3952 8519 0.4220 +3952 8600 0.5450 +3952 8648 0.6060 +3952 8651 0.4130 +3952 8660 0.8910 +3952 8694 0.5780 +3952 8788 0.4340 +3952 8817 0.4500 +3952 8822 0.4470 +3952 8823 0.4460 +3952 8835 0.5490 +3952 8862 0.6710 +3952 8864 0.5420 +3952 8972 0.4190 +3952 8991 0.4460 +3952 9021 0.9080 +3952 9180 0.6850 +3952 9213 0.4490 +3952 9241 0.4420 +3952 9282 0.5070 +3952 9317 0.5320 +3952 9340 0.4750 +3952 9365 0.4300 +3952 9370 0.9940 +3952 9388 0.4340 +3952 9412 0.6630 +3952 9439 0.4990 +3952 9440 0.5190 +3952 9441 0.4990 +3952 9442 0.4990 +3952 9443 0.4990 +3952 9466 0.6600 +3952 9477 0.5120 +3952 9518 0.6370 +3952 9572 0.4040 +3952 9607 0.8470 +3952 9862 0.4990 +3952 9967 0.5080 +3952 9968 0.4990 +3952 9969 0.5570 +3952 9971 0.5370 +3952 10001 0.4990 +3952 10025 0.4990 +3952 10062 0.4180 +3952 10135 0.8400 +3952 10468 0.4340 +3952 10499 0.5720 +3952 10555 0.6460 +3952 10645 0.5650 +3952 10874 0.6360 +3952 10891 0.9030 +3952 23097 0.4990 +3952 23175 0.5710 +3952 23389 0.5050 +3952 23410 0.4770 +3952 23411 0.6240 +3952 23484 0.4830 +3952 25970 0.9360 +3952 26281 0.4450 +3952 26291 0.7260 +3952 26580 0.6260 +3952 27006 0.4490 +3952 29079 0.4990 +3952 30835 0.4400 +3952 50615 0.6720 +3952 50964 0.5380 +3952 51003 0.4990 +3952 51052 0.4310 +3952 51083 0.5770 +3952 51085 0.5600 +3952 51094 0.9490 +3952 51129 0.5370 +3952 51428 0.5470 +3952 51586 0.4990 +3952 51738 0.9940 +3952 53832 0.6580 +3952 53833 0.6560 +3952 54205 0.4890 +3952 54741 0.6360 +3952 54797 0.5120 +3952 55054 0.4140 +3952 55090 0.4990 +3952 55588 0.4990 +3952 55600 0.7180 +3952 55620 0.4800 +3952 56477 0.4470 +3952 56729 0.9320 +3952 57104 0.6640 +3952 57678 0.5850 +3952 57818 0.5570 +3952 58985 0.6720 +3952 59272 0.4160 +3952 63924 0.7730 +3952 63976 0.5980 +3952 64102 0.5270 +3952 64111 0.5600 +3952 79068 0.7610 +3952 79071 0.5750 +3952 79602 0.8980 +3952 79966 0.4870 +3952 80306 0.5140 +3952 80339 0.5320 +3952 81857 0.4990 +3952 83756 0.4080 +3952 84246 0.4990 +3952 84498 0.4990 +3952 84634 0.6810 +3952 84649 0.5120 +3952 84666 0.9270 +3952 84706 0.5060 +3952 84803 0.4710 +3952 85441 0.5190 +3952 85569 0.4270 +3952 90390 0.4990 +3952 91860 0.4220 +3952 92579 0.5470 +3952 96459 0.4350 +3952 112950 0.4990 +3952 114899 0.6350 +3952 116379 0.6640 +3952 126129 0.4450 +3952 137902 0.7420 +3952 145264 0.7040 +3952 145957 0.4020 +3952 149233 0.6930 +3952 151306 0.4500 +3952 152831 0.5600 +3952 163702 0.6550 +3952 219623 0.4130 +3952 252995 0.6600 +3952 257202 0.5400 +3952 286753 0.4590 +3952 338557 0.5980 +3952 353131 0.5550 +3952 390259 0.5490 +3952 400569 0.4990 +3952 440503 0.4070 +3952 493869 0.5770 +3952 619373 0.5120 +3952 723961 0.7150 +3952 729359 0.4630 +3953 3976 0.8240 +3953 3991 0.5810 +3953 4023 0.4510 +3953 4036 0.5430 +3953 4159 0.5840 +3953 4160 0.8810 +3953 4254 0.4800 +3953 4852 0.8620 +3953 4854 0.4130 +3953 4889 0.4100 +3953 4925 0.6720 +3953 5008 0.8110 +3953 5105 0.4260 +3953 5122 0.6840 +3953 5139 0.4430 +3953 5154 0.6760 +3953 5155 0.6850 +3953 5156 0.4340 +3953 5175 0.4070 +3953 5346 0.5710 +3953 5367 0.4970 +3953 5443 0.9170 +3953 5465 0.6120 +3953 5468 0.7340 +3953 5594 0.4380 +3953 5595 0.5850 +3953 5617 0.8500 +3953 5697 0.6750 +3953 5770 0.7400 +3953 5781 0.9100 +3953 5788 0.4710 +3953 6347 0.4450 +3953 6387 0.6330 +3953 6492 0.4190 +3953 6514 0.4230 +3953 6517 0.5120 +3953 6642 0.7740 +3953 6643 0.8300 +3953 6696 0.4010 +3953 6720 0.4800 +3953 6773 0.4070 +3953 6774 0.9210 +3953 6776 0.8480 +3953 6777 0.8590 +3953 6778 0.4780 +3953 6934 0.4310 +3953 7066 0.7400 +3953 7124 0.5340 +3953 7200 0.4750 +3953 7297 0.7380 +3953 7350 0.6770 +3953 7351 0.5850 +3953 7837 0.6710 +3953 7840 0.4260 +3953 8525 0.5950 +3953 8648 0.4210 +3953 8660 0.8190 +3953 8723 0.8460 +3953 8724 0.6390 +3953 8835 0.5260 +3953 9021 0.9940 +3953 9370 0.8680 +3953 9607 0.8400 +3953 10135 0.5070 +3953 10763 0.5700 +3953 10891 0.4720 +3953 10999 0.4080 +3953 11009 0.6500 +3953 23411 0.4040 +3953 23484 0.7350 +3953 25970 0.8680 +3953 26291 0.6420 +3953 29949 0.6500 +3953 50604 0.6500 +3953 50616 0.6900 +3953 51094 0.7250 +3953 51561 0.6500 +3953 51738 0.6960 +3953 53342 0.6500 +3953 54465 0.4550 +3953 54741 0.8930 +3953 55620 0.7200 +3953 55764 0.4700 +3953 56729 0.6060 +3953 56832 0.6500 +3953 57818 0.4440 +3953 58533 0.6660 +3953 59067 0.6580 +3953 79047 0.4750 +3953 79068 0.7020 +3953 79602 0.6260 +3953 79738 0.4490 +3953 79827 0.4240 +3953 79908 0.4250 +3953 84666 0.5920 +3953 85480 0.6520 +3953 92579 0.5410 +3953 121340 0.4480 +3953 129787 0.5050 +3953 132789 0.4870 +3953 137902 0.6710 +3953 166379 0.4080 +3953 257194 0.5030 +3953 282616 0.6500 +3953 282617 0.6500 +3953 282618 0.6500 +3953 338376 0.6500 +3953 104909134 0.4970 +3954 4487 0.5600 +3954 4967 0.4610 +3954 5018 0.5750 +3954 5162 0.4890 +3954 6124 0.4340 +3954 6125 0.4430 +3954 6128 0.4320 +3954 6132 0.4970 +3954 6135 0.5120 +3954 6137 0.4300 +3954 6138 0.4390 +3954 6141 0.4300 +3954 6142 0.4330 +3954 6143 0.4330 +3954 6144 0.4780 +3954 6147 0.4330 +3954 6152 0.4330 +3954 6155 0.4070 +3954 6156 0.4320 +3954 6160 0.4470 +3954 6164 0.4390 +3954 6165 0.4530 +3954 6168 0.4320 +3954 6187 0.5010 +3954 6188 0.4330 +3954 6194 0.4330 +3954 6201 0.5260 +3954 6202 0.4330 +3954 6203 0.5060 +3954 6205 0.4940 +3954 6209 0.4560 +3954 6217 0.4320 +3954 6222 0.4940 +3954 6223 0.4330 +3954 6224 0.4300 +3954 6229 0.4330 +3954 6230 0.4330 +3954 6231 0.4330 +3954 6233 0.4320 +3954 7109 0.9060 +3954 7311 0.4290 +3954 7351 0.4340 +3954 7416 0.4970 +3954 7468 0.8600 +3954 7469 0.6830 +3954 9349 0.4940 +3954 9927 0.4290 +3954 10367 0.8390 +3954 10460 0.4390 +3954 10469 0.4860 +3954 10939 0.4150 +3954 10989 0.7400 +3954 11331 0.4980 +3954 25873 0.4690 +3954 29093 0.4500 +3954 54872 0.4880 +3954 54927 0.5910 +3954 55013 0.6740 +3954 55173 0.4270 +3954 55210 0.4040 +3954 55272 0.4230 +3954 56993 0.5190 +3954 63933 0.7330 +3954 64963 0.4520 +3954 64969 0.5060 +3954 64979 0.5930 +3954 79085 0.4980 +3954 80024 0.8640 +3954 84311 0.5180 +3954 84701 0.4730 +3954 84769 0.4490 +3954 90550 0.7660 +3954 91689 0.6500 +3954 120892 0.4070 +3954 221154 0.7630 +3954 286097 0.5300 +3955 4242 0.9090 +3955 4851 0.9730 +3955 4853 0.9790 +3955 4854 0.9690 +3955 4855 0.9380 +3955 5468 0.4030 +3955 5663 0.4910 +3955 5986 0.9060 +3955 6911 0.7450 +3955 6939 0.6230 +3955 8313 0.5380 +3955 10253 0.4850 +3955 10574 0.4200 +3955 10683 0.8480 +3955 10690 0.4260 +3955 22943 0.4380 +3955 23462 0.6700 +3955 23493 0.4160 +3955 23509 0.7550 +3955 28514 0.9030 +3955 51593 0.4460 +3955 53947 0.4010 +3955 54567 0.5210 +3955 55504 0.4360 +3955 55897 0.5890 +3955 56983 0.4080 +3955 79586 0.4550 +3955 84002 0.4600 +3955 84667 0.5110 +3955 84752 0.4330 +3955 85407 0.5860 +3955 94234 0.4240 +3955 113878 0.4080 +3955 134701 0.5710 +3955 145873 0.9250 +3955 340260 0.5270 +3955 388585 0.7700 +3955 441478 0.6960 +3956 3957 0.6740 +3956 3958 0.7350 +3956 3959 0.8260 +3956 3964 0.4550 +3956 3965 0.4420 +3956 4015 0.5150 +3956 4060 0.7130 +3956 4267 0.4490 +3956 4637 0.4810 +3956 4790 0.4090 +3956 5339 0.4470 +3956 5618 0.5090 +3956 5669 0.5010 +3956 5671 0.4040 +3956 5675 0.4180 +3956 5680 0.4470 +3956 5788 0.9050 +3956 5803 0.4110 +3956 6234 0.4540 +3956 6275 0.7370 +3956 6277 0.6280 +3956 6281 0.5900 +3956 6282 0.6120 +3956 6693 0.5800 +3956 6696 0.5440 +3956 6717 0.6560 +3956 7076 0.5170 +3956 7124 0.4990 +3956 7200 0.4510 +3956 7430 0.4830 +3956 7431 0.8790 +3956 7441 0.4510 +3956 7534 0.5280 +3956 8826 0.5220 +3956 9168 0.4270 +3956 9378 0.5400 +3956 9516 0.5270 +3956 10457 0.5150 +3956 10464 0.7120 +3956 22871 0.5400 +3956 29124 0.4630 +3956 29965 0.4700 +3956 54538 0.4240 +3956 54757 0.4510 +3956 56241 0.5170 +3956 56891 0.5640 +3956 56975 0.5210 +3956 79883 0.4540 +3956 91754 0.5890 +3956 123920 0.4020 +3956 148003 0.4580 +3956 284086 0.6030 +3956 285335 0.7170 +3957 3965 0.5810 +3957 4049 0.8070 +3957 4886 0.5080 +3957 7103 0.4040 +3957 7124 0.4450 +3957 8436 0.4990 +3957 8484 0.5800 +3957 8811 0.6030 +3957 9378 0.5400 +3957 9421 0.4110 +3957 10462 0.4250 +3957 10606 0.7670 +3957 22871 0.5400 +3957 29124 0.5990 +3957 51083 0.7840 +3957 51477 0.4350 +3957 55636 0.7200 +3957 56891 0.5070 +3957 64131 0.4180 +3957 80763 0.7060 +3957 253512 0.4220 +3958 3959 0.9990 +3958 3960 0.7300 +3958 3963 0.4300 +3958 3964 0.7560 +3958 3965 0.8190 +3958 3982 0.4450 +3958 4049 0.4930 +3958 4072 0.5780 +3958 4087 0.4510 +3958 4088 0.4510 +3958 4210 0.4520 +3958 4233 0.5380 +3958 4249 0.8910 +3958 4267 0.4210 +3958 4312 0.6120 +3958 4313 0.6950 +3958 4314 0.4170 +3958 4316 0.5140 +3958 4318 0.8240 +3958 4321 0.4210 +3958 4353 0.4430 +3958 4360 0.5410 +3958 4478 0.5060 +3958 4481 0.5410 +3958 4585 0.6410 +3958 4588 0.4930 +3958 4609 0.4300 +3958 4627 0.5300 +3958 4691 0.4930 +3958 4772 0.4850 +3958 4774 0.4040 +3958 4790 0.6190 +3958 4869 0.5810 +3958 4878 0.4020 +3958 4879 0.5760 +3958 4893 0.5900 +3958 4926 0.5540 +3958 4928 0.4820 +3958 5004 0.5190 +3958 5005 0.5130 +3958 5133 0.5360 +3958 5175 0.6840 +3958 5243 0.4980 +3958 5290 0.4300 +3958 5339 0.4550 +3958 5468 0.6780 +3958 5530 0.4240 +3958 5589 0.6090 +3958 5595 0.5260 +3958 5684 0.4140 +3958 5743 0.4170 +3958 5788 0.9830 +3958 5795 0.4380 +3958 5803 0.4600 +3958 5806 0.4150 +3958 5894 0.5010 +3958 5962 0.4790 +3958 5972 0.4130 +3958 6202 0.4420 +3958 6275 0.5200 +3958 6277 0.6390 +3958 6281 0.4230 +3958 6282 0.5420 +3958 6288 0.4560 +3958 6347 0.7610 +3958 6348 0.4200 +3958 6386 0.4540 +3958 6387 0.7440 +3958 6401 0.4110 +3958 6403 0.5350 +3958 6441 0.4570 +3958 6480 0.4390 +3958 6520 0.8290 +3958 6558 0.5900 +3958 6614 0.4180 +3958 6622 0.5030 +3958 6647 0.4100 +3958 6693 0.8900 +3958 6696 0.6190 +3958 6714 0.6350 +3958 6774 0.4490 +3958 7037 0.6540 +3958 7038 0.4800 +3958 7040 0.6860 +3958 7048 0.5650 +3958 7057 0.5590 +3958 7076 0.7430 +3958 7097 0.9480 +3958 7099 0.9380 +3958 7112 0.4060 +3958 7124 0.6260 +3958 7137 0.4290 +3958 7157 0.4740 +3958 7159 0.6900 +3958 7287 0.6510 +3958 7295 0.4350 +3958 7301 0.5540 +3958 7305 0.4220 +3958 7409 0.4310 +3958 7412 0.8050 +3958 7430 0.5160 +3958 7431 0.7780 +3958 7448 0.8680 +3958 7450 0.8400 +3958 7837 0.5460 +3958 7849 0.7640 +3958 7852 0.4160 +3958 7879 0.5910 +3958 8347 0.4060 +3958 8434 0.4120 +3958 8530 0.4050 +3958 8743 0.4910 +3958 8797 0.4790 +3958 8826 0.5510 +3958 8878 0.4810 +3958 9332 0.4770 +3958 9436 0.4410 +3958 9518 0.6670 +3958 9902 0.4420 +3958 10015 0.4140 +3958 10063 0.4740 +3958 10146 0.6990 +3958 10216 0.4780 +3958 10241 0.6590 +3958 10257 0.4640 +3958 10457 0.6470 +3958 10461 0.9180 +3958 10626 0.9930 +3958 10631 0.4030 +3958 11198 0.4180 +3958 11331 0.4470 +3958 22875 0.4550 +3958 22914 0.4310 +3958 23705 0.6260 +3958 26253 0.4460 +3958 27181 0.4400 +3958 27250 0.4180 +3958 29071 0.4920 +3958 29124 0.5290 +3958 29126 0.6160 +3958 30835 0.5900 +3958 50626 0.5470 +3958 50628 0.9450 +3958 50852 0.4390 +3958 50943 0.4180 +3958 51127 0.5850 +3958 51206 0.9740 +3958 54209 0.8210 +3958 54458 0.5220 +3958 55075 0.7840 +3958 55600 0.4860 +3958 57124 0.5310 +3958 57670 0.4720 +3958 64121 0.4560 +3958 64581 0.9940 +3958 64805 0.4500 +3958 79180 0.4410 +3958 80380 0.4020 +3958 80763 0.5810 +3958 83706 0.4160 +3958 84557 0.5080 +3958 84868 0.8580 +3958 90865 0.4440 +3958 93487 0.5160 +3958 93978 0.4370 +3958 94025 0.9470 +3958 121260 0.4830 +3958 137902 0.5420 +3958 203859 0.4120 +3958 259197 0.8990 +3958 284217 0.4900 +3958 338773 0.5000 +3958 339390 0.5290 +3958 375790 0.7200 +3958 653499 0.4250 +3958 654346 0.7400 +3959 3963 0.9050 +3959 3964 0.6150 +3959 3965 0.6390 +3959 3998 0.5360 +3959 4053 0.4310 +3959 4054 0.4340 +3959 4060 0.5190 +3959 4061 0.5020 +3959 4072 0.4870 +3959 4313 0.5030 +3959 4512 0.4320 +3959 5267 0.4720 +3959 5304 0.4500 +3959 5480 0.6130 +3959 5919 0.4080 +3959 6280 0.4290 +3959 6401 0.6820 +3959 6406 0.6120 +3959 6407 0.5750 +3959 6414 0.4690 +3959 6694 0.4120 +3959 6836 0.4030 +3959 7057 0.5690 +3959 7076 0.5580 +3959 7078 0.4670 +3959 7123 0.4740 +3959 7283 0.7400 +3959 7412 0.4740 +3959 8349 0.4040 +3959 9169 0.4220 +3959 9370 0.5310 +3959 9636 0.4080 +3959 10146 0.4190 +3959 10426 0.7140 +3959 10447 0.4400 +3959 10561 0.4340 +3959 10844 0.6280 +3959 23197 0.5140 +3959 27180 0.6150 +3959 29110 0.4650 +3959 29922 0.5190 +3959 30835 0.7960 +3959 57124 0.6380 +3959 80097 0.4570 +3959 85378 0.6870 +3959 89790 0.6120 +3959 114791 0.6280 +3959 124583 0.7970 +3959 134864 0.4520 +3959 440145 0.4410 +3959 653499 0.9050 +3959 653784 0.7180 +3960 3998 0.4140 +3960 4015 0.4020 +3960 4131 0.4460 +3960 4208 0.4870 +3960 4217 0.4120 +3960 4292 0.4450 +3960 4478 0.4770 +3960 4502 0.4490 +3960 4609 0.6960 +3960 4640 0.6500 +3960 4851 0.4310 +3960 4923 0.4460 +3960 5222 0.6490 +3960 5241 0.7010 +3960 5432 0.4910 +3960 5465 0.4770 +3960 5468 0.5290 +3960 5566 0.4150 +3960 5567 0.4120 +3960 5568 0.4130 +3960 5604 0.5140 +3960 5606 0.5370 +3960 5607 0.6120 +3960 5608 0.4160 +3960 5673 0.5810 +3960 5705 0.4890 +3960 5868 0.5750 +3960 5894 0.4410 +3960 5906 0.4660 +3960 6009 0.4060 +3960 6010 0.5180 +3960 6161 0.6630 +3960 6256 0.4920 +3960 6389 0.5130 +3960 6390 0.4930 +3960 6391 0.5110 +3960 6416 0.6050 +3960 6594 0.4080 +3960 6598 0.6290 +3960 6622 0.4610 +3960 6693 0.4020 +3960 6714 0.4200 +3960 6717 0.4140 +3960 6811 0.4480 +3960 6857 0.4320 +3960 6878 0.6460 +3960 6880 0.5930 +3960 6883 0.7130 +3960 6908 0.9620 +3960 7035 0.5420 +3960 7054 0.5070 +3960 7124 0.4280 +3960 7157 0.7640 +3960 7247 0.4290 +3960 7275 0.5820 +3960 7341 0.5780 +3960 7468 0.4330 +3960 7514 0.4890 +3960 7644 0.4790 +3960 7692 0.5670 +3960 7695 0.5570 +3960 7699 0.5570 +3960 7837 0.5300 +3960 7867 0.4240 +3960 8202 0.6090 +3960 8290 0.6230 +3960 8295 0.6600 +3960 8337 0.4460 +3960 8338 0.4460 +3960 8349 0.5440 +3960 8356 0.6230 +3960 8408 0.4450 +3960 8648 0.4430 +3960 8650 0.4090 +3960 8675 0.4430 +3960 8766 0.5870 +3960 8850 0.6560 +3960 8856 0.4570 +3960 8914 0.4460 +3960 8989 0.5420 +3960 8993 0.4440 +3960 9153 0.4120 +3960 9271 0.4410 +3960 9278 0.6690 +3960 9342 0.4430 +3960 9440 0.5990 +3960 9525 0.4320 +3960 9611 0.4480 +3960 10194 0.4630 +3960 10228 0.4220 +3960 10413 0.4110 +3960 10587 0.4830 +3960 10606 0.7910 +3960 10664 0.5510 +3960 10957 0.4180 +3960 11181 0.4030 +3960 11318 0.4650 +3960 11337 0.5420 +3960 22931 0.4530 +3960 22953 0.4020 +3960 22980 0.4950 +3960 23019 0.4180 +3960 23118 0.4260 +3960 23435 0.4180 +3960 23513 0.5950 +3960 26147 0.5260 +3960 26227 0.8570 +3960 26511 0.5070 +3960 27346 0.6800 +3960 30014 0.6400 +3960 50632 0.4410 +3960 51586 0.6500 +3960 51593 0.5410 +3960 51806 0.4040 +3960 54432 0.4810 +3960 54474 0.4660 +3960 55248 0.5060 +3960 55636 0.8200 +3960 55811 0.5750 +3960 55869 0.4020 +3960 56288 0.5700 +3960 57231 0.4050 +3960 57396 0.4180 +3960 57616 0.4830 +3960 57711 0.4180 +3960 63976 0.5840 +3960 64078 0.4220 +3960 64648 0.5510 +3960 79039 0.4360 +3960 80012 0.6460 +3960 80331 0.4760 +3960 81606 0.5550 +3960 83860 0.4020 +3960 83998 0.4220 +3960 84699 0.4120 +3960 84868 0.4310 +3960 84969 0.6000 +3960 85446 0.4160 +3960 91860 0.4210 +3960 92283 0.5140 +3960 92799 0.7080 +3960 94239 0.5410 +3960 116039 0.5490 +3960 123169 0.4150 +3960 128553 0.4880 +3960 130497 0.4150 +3960 133482 0.7520 +3960 137902 0.5050 +3960 143689 0.4500 +3960 148266 0.4020 +3960 163688 0.4050 +3960 219972 0.4880 +3960 260434 0.5070 +3960 284111 0.4110 +3960 340547 0.4020 +3960 387755 0.5980 +3960 440093 0.6280 +3960 440686 0.6230 +3960 653604 0.6230 +3960 728695 0.6500 +3960 728712 0.6700 +3963 4057 0.4130 +3963 4088 0.7050 +3963 4249 0.4500 +3963 6278 0.4290 +3963 6317 0.4310 +3963 6401 0.4780 +3963 8361 0.4930 +3963 8369 0.4850 +3963 9097 0.4220 +3963 9646 0.4820 +3963 10606 0.6690 +3963 30835 0.4380 +3963 51377 0.4420 +3963 51806 0.5480 +3963 55636 0.6020 +3963 57599 0.4150 +3963 80740 0.4800 +3963 374897 0.5510 +3963 388533 0.7370 +3963 653499 0.9860 +3964 3965 0.6170 +3964 4077 0.5280 +3964 4162 0.5540 +3964 5420 0.5420 +3964 5788 0.4640 +3964 5795 0.4270 +3964 5818 0.6220 +3964 6386 0.5060 +3964 6737 0.4420 +3964 7189 0.4180 +3964 8878 0.4820 +3964 8887 0.8990 +3964 9474 0.4220 +3964 9821 0.4030 +3964 9902 0.4250 +3964 10133 0.5820 +3964 10241 0.9990 +3964 10626 0.8030 +3964 10630 0.7670 +3964 10871 0.4750 +3964 11145 0.4480 +3964 25851 0.4210 +3964 26100 0.4330 +3964 26503 0.4960 +3964 27181 0.4310 +3964 29110 0.4100 +3964 51127 0.6060 +3964 54991 0.4510 +3964 55054 0.4490 +3964 57493 0.4800 +3964 84888 0.4730 +3964 90678 0.6460 +3964 115361 0.4080 +3964 115362 0.4140 +3964 153129 0.4370 +3964 206358 0.4730 +3964 221935 0.4070 +3964 257144 0.4910 +3964 440738 0.4790 +3965 4125 0.4410 +3965 4233 0.4020 +3965 4249 0.6220 +3965 4283 0.4270 +3965 4345 0.4380 +3965 4360 0.5890 +3965 4599 0.4920 +3965 4600 0.5070 +3965 4772 0.4800 +3965 4938 0.4630 +3965 4939 0.4580 +3965 4940 0.4200 +3965 5034 0.7500 +3965 5133 0.9690 +3965 5175 0.4340 +3965 5420 0.4100 +3965 5551 0.5000 +3965 5781 0.5600 +3965 5788 0.9230 +3965 5795 0.7280 +3965 5796 0.4990 +3965 5817 0.6670 +3965 5819 0.6050 +3965 6347 0.4190 +3965 6402 0.4260 +3965 6482 0.4200 +3965 6514 0.7180 +3965 6533 0.4230 +3965 6558 0.5890 +3965 6614 0.4280 +3965 6653 0.5710 +3965 6688 0.4310 +3965 6772 0.4740 +3965 6774 0.4260 +3965 7040 0.4360 +3965 7099 0.4300 +3965 7124 0.5770 +3965 7133 0.5470 +3965 7292 0.5310 +3965 7293 0.5830 +3965 7305 0.4010 +3965 7412 0.4160 +3965 7849 0.4240 +3965 7917 0.4410 +3965 8740 0.4640 +3965 8743 0.6180 +3965 8744 0.5520 +3965 8764 0.8420 +3965 8784 0.7040 +3965 8988 0.7690 +3965 8995 0.4840 +3965 9332 0.4270 +3965 9497 0.4360 +3965 9636 0.4450 +3965 9760 0.4230 +3965 9990 0.5120 +3965 10130 0.6410 +3965 10219 0.4420 +3965 10225 0.4910 +3965 10325 0.4280 +3965 10666 0.4640 +3965 10673 0.4420 +3965 11126 0.5800 +3965 11148 0.5110 +3965 11274 0.5400 +3965 11342 0.4880 +3965 22875 0.4180 +3965 22914 0.4560 +3965 23308 0.5150 +3965 23586 0.4130 +3965 23705 0.5710 +3965 29126 0.8960 +3965 29851 0.7190 +3965 30009 0.4480 +3965 50943 0.6040 +3965 51284 0.4130 +3965 51744 0.5520 +3965 55423 0.4830 +3965 64115 0.7570 +3965 64121 0.6000 +3965 64581 0.9870 +3965 79065 0.5030 +3965 79679 0.5910 +3965 80380 0.8070 +3965 80381 0.6510 +3965 84868 0.9990 +3965 85329 0.4230 +3965 91543 0.6880 +3965 91937 0.5870 +3965 126259 0.4800 +3965 131450 0.4270 +3965 140807 0.4010 +3965 151888 0.8380 +3965 153129 0.4420 +3965 169355 0.4720 +3965 201633 0.9750 +3965 201931 0.4080 +3965 284194 0.7640 +3965 284217 0.5790 +3965 339390 0.4610 +3965 654346 0.7800 +3972 3973 0.9520 +3972 5307 0.4920 +3972 5443 0.6810 +3972 5617 0.4230 +3972 6277 0.5000 +3972 6343 0.4050 +3972 6714 0.5040 +3972 6770 0.4740 +3972 7252 0.6120 +3972 7253 0.4880 +3972 7432 0.4210 +3972 9851 0.6030 +3972 54756 0.5430 +3972 57084 0.4340 +3972 57105 0.4990 +3972 64377 0.7570 +3972 79625 0.6080 +3972 79924 0.4200 +3972 93659 0.5570 +3972 94115 0.5570 +3972 113091 0.4330 +3972 117579 0.5020 +3972 122876 0.4260 +3972 170589 0.5880 +3972 594857 0.4080 +3973 4153 0.4400 +3973 4158 0.6390 +3973 4160 0.5130 +3973 4598 0.5570 +3973 4878 0.9090 +3973 5241 0.5350 +3973 5443 0.9410 +3973 5566 0.5970 +3973 5567 0.5960 +3973 5568 0.5870 +3973 5617 0.6930 +3973 5618 0.5270 +3973 5732 0.4140 +3973 5737 0.4470 +3973 5806 0.4170 +3973 5869 0.5190 +3973 6013 0.4240 +3973 6019 0.4420 +3973 6217 0.4490 +3973 6462 0.4380 +3973 6654 0.4250 +3973 6662 0.4410 +3973 6714 0.5490 +3973 6715 0.5690 +3973 6716 0.4640 +3973 6770 0.7700 +3973 6821 0.4860 +3973 6915 0.5440 +3973 7039 0.4020 +3973 7252 0.9540 +3973 7253 0.7160 +3973 7432 0.9050 +3973 9210 0.7450 +3973 9630 0.6720 +3973 10424 0.4050 +3973 10755 0.4040 +3973 10857 0.4390 +3973 11036 0.4280 +3973 11103 0.4450 +3973 24140 0.4570 +3973 27324 0.5470 +3973 50846 0.4680 +3973 51129 0.4290 +3973 51458 0.4820 +3973 54331 0.8000 +3973 57105 0.4860 +3973 57706 0.7210 +3973 64426 0.4320 +3973 79154 0.5840 +3973 80204 0.5050 +3973 84467 0.4870 +3973 84634 0.6690 +3973 84909 0.5440 +3973 93659 0.9670 +3973 94115 0.9190 +3973 122876 0.7830 +3973 134147 0.5440 +3973 135935 0.4830 +3973 170589 0.7820 +3973 286749 0.4460 +3973 344018 0.4640 +3973 653519 0.5120 +3975 4212 0.4150 +3975 4222 0.4200 +3975 4435 0.5920 +3975 4760 0.4020 +3975 4761 0.4650 +3975 4762 0.6960 +3975 4808 0.4400 +3975 4821 0.7390 +3975 4825 0.4710 +3975 4990 0.5590 +3975 5015 0.7170 +3975 5076 0.8050 +3975 5420 0.4200 +3975 5455 0.5100 +3975 5457 0.4790 +3975 5862 0.7260 +3975 6299 0.5500 +3975 6469 0.4580 +3975 6473 0.4860 +3975 6492 0.4590 +3975 6495 0.4250 +3975 6496 0.5320 +3975 6656 0.4070 +3975 6657 0.4570 +3975 6658 0.4330 +3975 6911 0.5990 +3975 6928 0.4270 +3975 7252 0.4280 +3975 7473 0.6020 +3975 7484 0.5880 +3975 7490 0.5850 +3975 7545 0.5730 +3975 7546 0.5660 +3975 7547 0.4310 +3975 7704 0.4420 +3975 7849 0.6820 +3975 8022 0.4730 +3975 8320 0.6950 +3975 8812 0.8400 +3975 8861 0.9330 +3975 8928 0.4240 +3975 9079 0.8610 +3975 9350 0.4940 +3975 9480 0.4350 +3975 10215 0.4650 +3975 10637 0.4110 +3975 10660 0.4780 +3975 10736 0.6870 +3975 23336 0.4930 +3975 26574 0.4180 +3975 27022 0.4090 +3975 27023 0.4710 +3975 27319 0.4860 +3975 30012 0.5450 +3975 50674 0.4070 +3975 51132 0.6480 +3975 54361 0.6000 +3975 55273 0.4160 +3975 56751 0.5200 +3975 57057 0.5190 +3975 57084 0.4380 +3975 58524 0.4110 +3975 63973 0.8120 +3975 64321 0.4970 +3975 79190 0.4160 +3975 79191 0.4590 +3975 79922 0.4500 +3975 84504 0.4730 +3975 120237 0.4810 +3975 121643 0.4380 +3975 167826 0.4430 +3975 170463 0.8560 +3975 255877 0.6300 +3975 256297 0.5560 +3975 284099 0.4100 +3975 339345 0.4660 +3975 343472 0.5070 +3975 344191 0.5210 +3975 389549 0.4120 +3975 402381 0.4450 +3975 440097 0.4120 +3976 3977 0.9990 +3976 4254 0.6410 +3976 4312 0.5480 +3976 4313 0.5790 +3976 4314 0.5480 +3976 4318 0.5970 +3976 4352 0.7010 +3976 4488 0.4040 +3976 4609 0.7290 +3976 4684 0.5920 +3976 4744 0.5140 +3976 4771 0.4260 +3976 4803 0.5970 +3976 4908 0.5050 +3976 4914 0.5200 +3976 5008 0.9660 +3976 5080 0.4900 +3976 5156 0.7730 +3976 5159 0.7360 +3976 5175 0.4050 +3976 5321 0.4020 +3976 5443 0.5780 +3976 5460 0.8790 +3976 5595 0.4330 +3976 5618 0.6740 +3976 5743 0.4660 +3976 6272 0.4470 +3976 6288 0.4470 +3976 6347 0.7240 +3976 6348 0.6680 +3976 6351 0.6470 +3976 6356 0.4230 +3976 6363 0.4930 +3976 6364 0.6530 +3976 6367 0.5070 +3976 6387 0.4800 +3976 6469 0.4490 +3976 6656 0.5220 +3976 6657 0.8020 +3976 6696 0.6010 +3976 6772 0.6060 +3976 6774 0.9240 +3976 6776 0.5450 +3976 6777 0.5430 +3976 6778 0.6340 +3976 6926 0.7170 +3976 7040 0.6920 +3976 7076 0.5980 +3976 7082 0.4200 +3976 7124 0.7410 +3976 7157 0.4180 +3976 7297 0.6780 +3976 7476 0.5050 +3976 7837 0.4180 +3976 8433 0.4140 +3976 8609 0.4180 +3976 8817 0.6190 +3976 8822 0.6190 +3976 8823 0.6090 +3976 9021 0.6910 +3976 9096 0.4570 +3976 9180 0.9320 +3976 9314 0.8630 +3976 9466 0.7440 +3976 10215 0.4110 +3976 10401 0.4460 +3976 10763 0.6240 +3976 10850 0.5690 +3976 11082 0.4120 +3976 23529 0.6340 +3976 23566 0.4730 +3976 26281 0.6080 +3976 27006 0.6320 +3976 50615 0.6710 +3976 51083 0.4770 +3976 51561 0.4570 +3976 53832 0.6680 +3976 53833 0.6540 +3976 54583 0.4460 +3976 58191 0.4350 +3976 58985 0.6930 +3976 63978 0.4210 +3976 64321 0.5380 +3976 79727 0.4810 +3976 79923 0.8330 +3976 112744 0.5210 +3976 116379 0.6510 +3976 116448 0.4900 +3976 132625 0.4460 +3976 137902 0.4070 +3976 140885 0.4430 +3976 149233 0.6980 +3976 163702 0.6530 +3976 200895 0.4950 +3976 201456 0.4990 +3976 340784 0.5420 +3976 359787 0.4180 +3976 386653 0.5060 +3976 414062 0.4540 +3977 4233 0.4150 +3977 4803 0.5070 +3977 5008 0.9990 +3977 5154 0.6930 +3977 5155 0.6780 +3977 5290 0.9150 +3977 5291 0.9030 +3977 5293 0.9110 +3977 5295 0.9110 +3977 5296 0.9000 +3977 5460 0.4590 +3977 5617 0.7600 +3977 5781 0.7300 +3977 5803 0.4290 +3977 6272 0.4750 +3977 6464 0.4870 +3977 6657 0.4720 +3977 6772 0.4340 +3977 6774 0.9400 +3977 6926 0.5720 +3977 7066 0.6700 +3977 7297 0.9230 +3977 8503 0.9080 +3977 8651 0.4410 +3977 9021 0.5090 +3977 9180 0.9130 +3977 9244 0.7390 +3977 9314 0.4310 +3977 9782 0.4980 +3977 10763 0.4010 +3977 11009 0.6660 +3977 11170 0.4470 +3977 23529 0.9820 +3977 29949 0.6590 +3977 50604 0.6500 +3977 50616 0.6740 +3977 51561 0.6500 +3977 53342 0.6720 +3977 54583 0.5030 +3977 56832 0.6500 +3977 59067 0.6580 +3977 79923 0.4930 +3977 85480 0.6690 +3977 116448 0.4500 +3977 246778 0.4710 +3977 282616 0.6500 +3977 282617 0.6500 +3977 282618 0.6600 +3977 338376 0.6500 +3978 3980 0.7850 +3978 3981 0.5970 +3978 4171 0.8190 +3978 4172 0.8220 +3978 4173 0.8430 +3978 4174 0.9470 +3978 4175 0.8610 +3978 4176 0.8550 +3978 4292 0.6580 +3978 4331 0.4840 +3978 4350 0.6410 +3978 4361 0.6000 +3978 4436 0.7200 +3978 4437 0.7510 +3978 4595 0.6790 +3978 4683 0.4310 +3978 4860 0.5040 +3978 4913 0.7010 +3978 4968 0.8670 +3978 4998 0.5790 +3978 5001 0.4760 +3978 5111 0.9990 +3978 5378 0.4980 +3978 5395 0.6350 +3978 5422 0.7610 +3978 5423 0.9960 +3978 5424 0.9730 +3978 5425 0.7930 +3978 5426 0.9310 +3978 5427 0.8410 +3978 5429 0.7560 +3978 5431 0.4600 +3978 5432 0.4770 +3978 5433 0.4130 +3978 5434 0.4150 +3978 5435 0.4300 +3978 5436 0.4190 +3978 5437 0.4490 +3978 5438 0.4860 +3978 5439 0.4060 +3978 5440 0.4030 +3978 5441 0.4030 +3978 5557 0.6920 +3978 5558 0.6080 +3978 5591 0.7180 +3978 5810 0.5030 +3978 5883 0.7600 +3978 5884 0.7130 +3978 5887 0.7760 +3978 5888 0.8240 +3978 5889 0.4420 +3978 5890 0.4380 +3978 5892 0.4870 +3978 5893 0.8270 +3978 5932 0.7400 +3978 5965 0.5720 +3978 5980 0.5210 +3978 5981 0.8560 +3978 5982 0.8080 +3978 5983 0.8250 +3978 5984 0.9590 +3978 5985 0.8300 +3978 6117 0.8040 +3978 6118 0.7340 +3978 6119 0.6930 +3978 6233 0.4520 +3978 6240 0.5820 +3978 6241 0.4800 +3978 6596 0.4050 +3978 6612 0.5590 +3978 6742 0.4180 +3978 6749 0.4380 +3978 6790 0.4180 +3978 6917 0.5200 +3978 6996 0.5800 +3978 7013 0.4910 +3978 7014 0.4220 +3978 7150 0.5460 +3978 7153 0.5700 +3978 7155 0.4900 +3978 7157 0.4750 +3978 7158 0.6690 +3978 7298 0.6370 +3978 7314 0.4490 +3978 7316 0.4490 +3978 7329 0.4390 +3978 7334 0.4030 +3978 7374 0.9520 +3978 7486 0.8950 +3978 7507 0.8230 +3978 7508 0.4430 +3978 7515 0.9970 +3978 7516 0.4210 +3978 7517 0.6940 +3978 7518 0.8470 +3978 7520 0.7690 +3978 7874 0.5450 +3978 8086 0.4510 +3978 8317 0.4430 +3978 8318 0.7730 +3978 8438 0.5350 +3978 8450 0.5180 +3978 8451 0.6820 +3978 8505 0.4310 +3978 8914 0.5800 +3978 8930 0.5750 +3978 9088 0.4280 +3978 9156 0.9230 +3978 9401 0.6880 +3978 9656 0.5290 +3978 9716 0.4050 +3978 9735 0.5430 +3978 9918 0.5160 +3978 9978 0.4970 +3978 10036 0.5580 +3978 10038 0.5980 +3978 10039 0.4140 +3978 10051 0.4450 +3978 10155 0.4520 +3978 10238 0.4310 +3978 10403 0.4850 +3978 10450 0.4260 +3978 10459 0.4450 +3978 10535 0.6470 +3978 10592 0.4340 +3978 10714 0.8570 +3978 10721 0.6670 +3978 10919 0.8240 +3978 11044 0.6020 +3978 11073 0.4860 +3978 11169 0.7130 +3978 11200 0.5510 +3978 11201 0.6530 +3978 11284 0.6430 +3978 23310 0.4110 +3978 23583 0.6380 +3978 23649 0.5140 +3978 23705 0.5130 +3978 25913 0.4880 +3978 26277 0.4340 +3978 27030 0.4370 +3978 27301 0.6390 +3978 27339 0.5000 +3978 27343 0.8630 +3978 27434 0.8250 +3978 29128 0.9870 +3978 50484 0.4470 +3978 51426 0.5800 +3978 51455 0.7540 +3978 51514 0.4740 +3978 51567 0.5910 +3978 54107 0.6130 +3978 54386 0.4490 +3978 54840 0.7040 +3978 54892 0.4760 +3978 54962 0.4540 +3978 55215 0.5090 +3978 55247 0.6200 +3978 55388 0.6200 +3978 55723 0.4460 +3978 55775 0.6640 +3978 56655 0.6210 +3978 56852 0.4890 +3978 56949 0.6400 +3978 57379 0.4920 +3978 57654 0.6350 +3978 57697 0.5510 +3978 57804 0.8290 +3978 63922 0.8350 +3978 63967 0.4350 +3978 64151 0.4010 +3978 64785 0.4020 +3978 64858 0.6470 +3978 79621 0.5210 +3978 79661 0.6090 +3978 79840 0.5300 +3978 79892 0.4280 +3978 79915 0.6310 +3978 79991 0.4060 +3978 80119 0.6610 +3978 80198 0.4700 +3978 81620 0.7380 +3978 84296 0.4550 +3978 84515 0.5360 +3978 91603 0.4200 +3978 116211 0.4660 +3978 116447 0.4230 +3978 157777 0.4660 +3978 252969 0.4340 +3978 254394 0.6020 +3978 348654 0.5130 +3978 404672 0.6280 +3978 548593 0.4090 +3978 100533467 0.4780 +3980 3981 0.4460 +3980 4174 0.6440 +3980 4176 0.4260 +3980 4287 0.6130 +3980 4292 0.4520 +3980 4331 0.4430 +3980 4350 0.5680 +3980 4361 0.8310 +3980 4436 0.5530 +3980 4437 0.5690 +3980 4595 0.6500 +3980 4683 0.7930 +3980 4691 0.4550 +3980 4904 0.5130 +3980 4913 0.7240 +3980 4968 0.9030 +3980 4998 0.4410 +3980 5111 0.9160 +3980 5395 0.4810 +3980 5423 0.9990 +3980 5424 0.8620 +3980 5425 0.6340 +3980 5426 0.8790 +3980 5427 0.5300 +3980 5428 0.5080 +3980 5431 0.4820 +3980 5432 0.4790 +3980 5433 0.4330 +3980 5434 0.4070 +3980 5435 0.4080 +3980 5436 0.4210 +3980 5437 0.4460 +3980 5438 0.4460 +3980 5439 0.4270 +3980 5440 0.4030 +3980 5441 0.4080 +3980 5442 0.4310 +3980 5558 0.5020 +3980 5591 0.8140 +3980 5883 0.4210 +3980 5884 0.5190 +3980 5887 0.5430 +3980 5888 0.6200 +3980 5889 0.4550 +3980 5890 0.4010 +3980 5892 0.4690 +3980 5893 0.7280 +3980 5932 0.8040 +3980 5980 0.4230 +3980 5981 0.6480 +3980 5982 0.6170 +3980 5983 0.5660 +3980 5984 0.6050 +3980 5985 0.5670 +3980 6117 0.7810 +3980 6118 0.7730 +3980 6119 0.5890 +3980 6233 0.4500 +3980 6742 0.6700 +3980 6749 0.4460 +3980 6917 0.4980 +3980 6996 0.5730 +3980 7150 0.8110 +3980 7155 0.4410 +3980 7156 0.4930 +3980 7157 0.6210 +3980 7158 0.7000 +3980 7314 0.4490 +3980 7316 0.4490 +3980 7374 0.7010 +3980 7416 0.4240 +3980 7486 0.7770 +3980 7507 0.6430 +3980 7515 0.9990 +3980 7516 0.4700 +3980 7517 0.5660 +3980 7518 0.9440 +3980 7520 0.9640 +3980 7874 0.4320 +3980 8242 0.4800 +3980 8318 0.4620 +3980 8350 0.4660 +3980 8361 0.5670 +3980 8450 0.4640 +3980 8451 0.5250 +3980 8505 0.6680 +3980 8930 0.4770 +3980 9126 0.5560 +3980 9156 0.7890 +3980 9184 0.4580 +3980 9354 0.5360 +3980 9493 0.7470 +3980 9656 0.6760 +3980 9716 0.4460 +3980 9937 0.4220 +3980 9941 0.5820 +3980 9978 0.4540 +3980 10036 0.5420 +3980 10038 0.9910 +3980 10039 0.5720 +3980 10111 0.8090 +3980 10273 0.4120 +3980 10277 0.5110 +3980 10450 0.4240 +3980 10459 0.4510 +3980 10535 0.4300 +3980 10714 0.5200 +3980 10721 0.7870 +3980 11144 0.4110 +3980 11198 0.6130 +3980 11200 0.5270 +3980 11284 0.9970 +3980 22976 0.4160 +3980 23476 0.6560 +3980 23583 0.5130 +3980 23640 0.5030 +3980 27301 0.6280 +3980 27339 0.4370 +3980 27343 0.6890 +3980 27434 0.5470 +3980 29127 0.8550 +3980 51426 0.5110 +3980 51699 0.4220 +3980 54107 0.4850 +3980 54840 0.9750 +3980 55247 0.5990 +3980 55743 0.7580 +3980 55775 0.9920 +3980 56652 0.6260 +3980 56655 0.4560 +3980 56949 0.6360 +3980 57461 0.4050 +3980 57654 0.4940 +3980 57697 0.5200 +3980 57804 0.4090 +3980 79661 0.8610 +3980 79840 0.6080 +3980 79968 0.4350 +3980 80119 0.4990 +3980 80198 0.4440 +3980 81847 0.7810 +3980 91603 0.4240 +3980 92552 0.4690 +3980 92667 0.6360 +3980 116447 0.4350 +3980 149840 0.4260 +3980 200558 0.9690 +3980 221443 0.4980 +3980 246243 0.4420 +3980 252969 0.7600 +3980 348654 0.4380 +3980 378708 0.4430 +3980 404672 0.5130 +3980 100533467 0.4980 +3981 4066 0.4310 +3981 4173 0.4130 +3981 4174 0.6330 +3981 4176 0.4360 +3981 4193 0.5200 +3981 4255 0.5060 +3981 4292 0.8070 +3981 4361 0.7040 +3981 4436 0.9640 +3981 4437 0.8780 +3981 4595 0.4530 +3981 4683 0.8210 +3981 4860 0.4950 +3981 4913 0.5550 +3981 4968 0.6740 +3981 4998 0.4340 +3981 5111 0.8660 +3981 5378 0.7070 +3981 5395 0.7530 +3981 5423 0.6020 +3981 5424 0.9510 +3981 5425 0.5170 +3981 5426 0.4930 +3981 5558 0.4950 +3981 5591 0.9990 +3981 5883 0.5390 +3981 5884 0.6130 +3981 5886 0.4860 +3981 5887 0.9520 +3981 5888 0.7940 +3981 5889 0.6430 +3981 5890 0.6060 +3981 5892 0.5740 +3981 5893 0.8810 +3981 5896 0.5760 +3981 5932 0.7770 +3981 5965 0.4180 +3981 5980 0.6440 +3981 6117 0.4540 +3981 6119 0.4100 +3981 7014 0.4960 +3981 7015 0.4810 +3981 7150 0.5440 +3981 7153 0.4790 +3981 7155 0.4540 +3981 7156 0.4980 +3981 7157 0.5320 +3981 7158 0.9340 +3981 7374 0.5620 +3981 7486 0.7510 +3981 7507 0.8140 +3981 7508 0.9230 +3981 7515 0.9280 +3981 7516 0.7100 +3981 7517 0.8240 +3981 7518 0.9990 +3981 7520 0.9990 +3981 7743 0.4420 +3981 8243 0.5220 +3981 8318 0.5050 +3981 8340 0.4630 +3981 8341 0.4630 +3981 8342 0.4630 +3981 8345 0.4630 +3981 8347 0.4750 +3981 8348 0.4710 +3981 8349 0.5020 +3981 8438 0.5540 +3981 8505 0.4590 +3981 8970 0.4700 +3981 9025 0.4190 +3981 9156 0.7900 +3981 9400 0.5060 +3981 9401 0.5840 +3981 9656 0.6250 +3981 9937 0.4460 +3981 10038 0.5780 +3981 10039 0.5360 +3981 10111 0.5360 +3981 10459 0.6060 +3981 10592 0.4380 +3981 10653 0.4350 +3981 10721 0.6960 +3981 10973 0.5920 +3981 11073 0.4210 +3981 11200 0.6100 +3981 11284 0.8330 +3981 22976 0.6890 +3981 23028 0.9090 +3981 23064 0.4080 +3981 23137 0.5490 +3981 23186 0.9040 +3981 23383 0.8310 +3981 23626 0.5800 +3981 25788 0.7420 +3981 25900 0.5310 +3981 27030 0.7550 +3981 27301 0.4260 +3981 27343 0.9060 +3981 27434 0.8730 +3981 50485 0.4020 +3981 51008 0.5670 +3981 51317 0.9120 +3981 51455 0.5880 +3981 51567 0.5560 +3981 51750 0.5910 +3981 54145 0.4650 +3981 54840 0.8260 +3981 55215 0.7820 +3981 55218 0.4070 +3981 55247 0.5150 +3981 55745 0.4460 +3981 55775 0.7030 +3981 57379 0.6080 +3981 57697 0.6370 +3981 60528 0.4450 +3981 64421 0.9970 +3981 64858 0.4360 +3981 78996 0.4460 +3981 79677 0.4930 +3981 79728 0.8000 +3981 79840 0.9990 +3981 80010 0.4270 +3981 80119 0.5640 +3981 80198 0.6520 +3981 81620 0.4430 +3981 83990 0.5750 +3981 84164 0.5670 +3981 84464 0.4400 +3981 84945 0.5580 +3981 85236 0.4630 +3981 91419 0.9060 +3981 91442 0.4530 +3981 113510 0.5440 +3981 116447 0.4060 +3981 125150 0.9000 +3981 126074 0.9000 +3981 128312 0.4630 +3981 135458 0.4300 +3981 144715 0.4010 +3981 146956 0.5130 +3981 149840 0.4140 +3981 158983 0.4660 +3981 165918 0.5180 +3981 200558 0.9350 +3981 255626 0.4630 +3981 286257 0.9880 +3981 286436 0.4670 +3981 348654 0.5480 +3981 353497 0.4860 +3981 375748 0.4690 +3981 440689 0.4700 +3981 548593 0.5430 +3981 100423062 0.4830 +3981 100533467 0.6320 +3981 102723407 0.6990 +3981 105375355 0.5400 +3981 114483833 0.4680 +3982 4005 0.5640 +3982 4284 0.8850 +3982 4508 0.7940 +3982 4728 0.6030 +3982 5309 0.6100 +3982 5376 0.6390 +3982 5598 0.4170 +3982 5698 0.4370 +3982 5829 0.4770 +3982 5979 0.4260 +3982 6189 0.4370 +3982 6464 0.4240 +3982 6876 0.6450 +3982 7403 0.4050 +3982 7404 0.4240 +3982 7408 0.4140 +3982 7414 0.4400 +3982 7791 0.5650 +3982 8022 0.7650 +3982 8165 0.4280 +3982 8419 0.7200 +3982 8643 0.5480 +3982 8861 0.5060 +3982 8992 0.7990 +3982 9113 0.4020 +3982 9114 0.9750 +3982 9260 0.5630 +3982 9296 0.9940 +3982 9343 0.4370 +3982 9472 0.4300 +3982 9550 0.6820 +3982 10159 0.5450 +3982 10312 0.8860 +3982 10411 0.4360 +3982 10611 0.5350 +3982 23135 0.4050 +3982 23424 0.5000 +3982 23545 0.8860 +3982 29114 0.7710 +3982 50617 0.9400 +3982 51382 0.9850 +3982 51557 0.4970 +3982 51606 0.9480 +3982 55143 0.4520 +3982 57707 0.5510 +3982 79443 0.4090 +3982 79631 0.4370 +3982 79877 0.5610 +3982 80347 0.5610 +3982 83660 0.4220 +3982 85476 0.4370 +3982 90423 0.9750 +3982 125875 0.5170 +3982 127124 0.6820 +3982 128866 0.6090 +3982 155051 0.5100 +3982 155066 0.7990 +3982 163882 0.9750 +3982 221264 0.4450 +3982 245972 0.9750 +3982 245973 0.8290 +3982 283953 0.9370 +3982 387700 0.4040 +3982 400746 0.6020 +3982 440400 0.8600 +3984 3985 0.9620 +3984 4015 0.4260 +3984 4155 0.4050 +3984 4214 0.4550 +3984 4323 0.4970 +3984 4478 0.4610 +3984 4659 0.5570 +3984 4739 0.4990 +3984 4763 0.5410 +3984 4929 0.4640 +3984 5058 0.9670 +3984 5062 0.9440 +3984 5063 0.9140 +3984 5071 0.4430 +3984 5216 0.4730 +3984 5230 0.4160 +3984 5337 0.5230 +3984 5361 0.6340 +3984 5362 0.5630 +3984 5500 0.4800 +3984 5566 0.4350 +3984 5728 0.4030 +3984 5877 0.4260 +3984 5879 0.7320 +3984 5880 0.4200 +3984 5894 0.4730 +3984 5962 0.4220 +3984 5982 0.6120 +3984 6049 0.4520 +3984 6093 0.9400 +3984 6195 0.4450 +3984 6722 0.6300 +3984 6804 0.6030 +3984 6993 0.4290 +3984 7040 0.4060 +3984 7074 0.4970 +3984 7408 0.4150 +3984 7430 0.4160 +3984 7454 0.5680 +3984 7458 0.8080 +3984 7461 0.8710 +3984 7534 0.8370 +3984 8326 0.6390 +3984 8468 0.6510 +3984 8829 0.5940 +3984 8874 0.4310 +3984 8936 0.4270 +3984 8976 0.5330 +3984 8997 0.4460 +3984 9024 0.4550 +3984 9031 0.6590 +3984 9113 0.6270 +3984 9181 0.4560 +3984 9258 0.4330 +3984 9261 0.4080 +3984 9275 0.5990 +3984 9289 0.4910 +3984 9459 0.4140 +3984 9475 0.9370 +3984 9569 0.7580 +3984 9743 0.5100 +3984 9826 0.4240 +3984 10095 0.5660 +3984 10097 0.4810 +3984 10298 0.9680 +3984 10371 0.6590 +3984 10434 0.6030 +3984 11034 0.6410 +3984 11188 0.6790 +3984 23157 0.4020 +3984 23369 0.5080 +3984 26281 0.4250 +3984 26608 0.7010 +3984 51085 0.5020 +3984 54434 0.9620 +3984 54805 0.6000 +3984 54961 0.9320 +3984 55558 0.5940 +3984 55695 0.5550 +3984 56288 0.4920 +3984 56924 0.9420 +3984 57026 0.7860 +3984 57144 0.9190 +3984 60681 0.6260 +3984 65078 0.5530 +3984 80258 0.4120 +3984 81624 0.4250 +3984 83475 0.4610 +3984 85464 0.9150 +3984 90627 0.5600 +3984 91445 0.5730 +3984 91584 0.5590 +3984 114791 0.4090 +3984 123606 0.4170 +3984 135892 0.6480 +3984 146713 0.4050 +3984 150248 0.4200 +3984 345456 0.4970 +3984 375189 0.5310 +3984 645811 0.4320 +3985 4659 0.4340 +3985 4763 0.4680 +3985 5058 0.9160 +3985 5062 0.9100 +3985 5063 0.9070 +3985 6093 0.9670 +3985 8476 0.5630 +3985 9094 0.4800 +3985 9475 0.9320 +3985 10298 0.9430 +3985 11034 0.5760 +3985 11140 0.5060 +3985 26472 0.4550 +3985 54434 0.6430 +3985 54961 0.5890 +3985 55784 0.4040 +3985 56288 0.4280 +3985 56924 0.9120 +3985 57026 0.5330 +3985 57144 0.9120 +3985 81035 0.9260 +3985 85464 0.5300 +3985 91445 0.7780 +3985 645811 0.4790 +3987 4690 0.6090 +3987 5747 0.6430 +3987 5829 0.9330 +3987 5932 0.5220 +3987 6251 0.9990 +3987 6521 0.4290 +3987 7013 0.4240 +3987 7094 0.9650 +3987 7114 0.9800 +3987 7205 0.4130 +3987 7298 0.4700 +3987 7408 0.6080 +3987 7414 0.9610 +3987 7791 0.4070 +3987 8440 0.9990 +3987 9087 0.4200 +3987 9564 0.4950 +3987 10254 0.4060 +3987 10979 0.8560 +3987 23493 0.5440 +3987 29780 0.9990 +3987 55612 0.5110 +3987 55679 0.4180 +3987 55742 0.9990 +3987 55907 0.4220 +3987 64098 0.9990 +3987 80895 0.6850 +3987 83660 0.9640 +3987 83706 0.6170 +3987 120103 0.5610 +3987 285641 0.6420 +3988 3990 0.7160 +3988 3991 0.6230 +3988 4023 0.4380 +3988 4047 0.4140 +3988 4706 0.5060 +3988 4864 0.6770 +3988 5346 0.4130 +3988 5406 0.9070 +3988 5468 0.4180 +3988 5538 0.4280 +3988 5641 0.4250 +3988 6609 0.4240 +3988 6646 0.5650 +3988 6713 0.4410 +3988 6820 0.8030 +3988 7942 0.5300 +3988 8435 0.4400 +3988 8694 0.4770 +3988 9023 0.8810 +3988 9388 0.4600 +3988 9619 0.5340 +3988 10226 0.4140 +3988 10577 0.7090 +3988 10647 0.9600 +3988 10858 0.8460 +3988 11343 0.5440 +3988 26119 0.5020 +3988 26228 0.4510 +3988 51099 0.4050 +3988 55811 0.6790 +3988 57104 0.6170 +3988 57552 0.5920 +3988 64240 0.4130 +3988 64241 0.4080 +3988 79728 0.4990 +3988 80339 0.4650 +3988 132949 0.5060 +3988 150379 0.5310 +3988 255738 0.4270 +3990 3991 0.6040 +3990 4018 0.8720 +3990 4023 0.9570 +3990 4035 0.4660 +3990 4043 0.4440 +3990 4481 0.5500 +3990 4547 0.5520 +3990 4598 0.4500 +3990 5053 0.5720 +3990 5167 0.4520 +3990 5340 0.5060 +3990 5360 0.9290 +3990 5406 0.9350 +3990 5407 0.9200 +3990 5444 0.7930 +3990 5465 0.5960 +3990 5468 0.4850 +3990 5547 0.4770 +3990 5770 0.4270 +3990 6272 0.4600 +3990 6288 0.6130 +3990 6289 0.6110 +3990 6291 0.6260 +3990 6514 0.5310 +3990 6554 0.5370 +3990 6555 0.4810 +3990 6579 0.4730 +3990 6720 0.5270 +3990 6721 0.4200 +3990 6927 0.5550 +3990 7078 0.4430 +3990 7436 0.8420 +3990 7941 0.6890 +3990 8431 0.5140 +3990 8504 0.5400 +3990 8513 0.9800 +3990 8525 0.6520 +3990 8526 0.6500 +3990 8527 0.6630 +3990 8542 0.6400 +3990 8612 0.7240 +3990 8613 0.7320 +3990 8694 0.7980 +3990 9162 0.6520 +3990 9370 0.4970 +3990 9388 0.9100 +3990 9619 0.5280 +3990 9663 0.7270 +3990 9971 0.6290 +3990 10062 0.4080 +3990 10221 0.5350 +3990 10647 0.7610 +3990 10747 0.4180 +3990 11132 0.5140 +3990 11343 0.9340 +3990 23175 0.7520 +3990 23205 0.6240 +3990 23305 0.6480 +3990 23539 0.5010 +3990 26119 0.4630 +3990 27329 0.6690 +3990 29881 0.4510 +3990 51085 0.4930 +3990 51129 0.4790 +3990 51449 0.5420 +3990 51599 0.5520 +3990 51703 0.7830 +3990 55304 0.4660 +3990 55750 0.9020 +3990 55829 0.5400 +3990 55911 0.5400 +3990 55937 0.7400 +3990 56729 0.4970 +3990 56999 0.4120 +3990 57104 0.9560 +3990 57480 0.4130 +3990 60481 0.4390 +3990 64240 0.6010 +3990 64241 0.5310 +3990 64788 0.9770 +3990 64900 0.6860 +3990 79135 0.6420 +3990 80168 0.7010 +3990 80339 0.9560 +3990 81616 0.6220 +3990 84513 0.9120 +3990 84649 0.7990 +3990 84666 0.4570 +3990 84722 0.4350 +3990 84811 0.4230 +3990 91289 0.7350 +3990 116255 0.7320 +3990 116519 0.9140 +3990 119548 0.9020 +3990 139189 0.6590 +3990 145173 0.5090 +3990 148113 0.4360 +3990 160851 0.6680 +3990 196051 0.9090 +3990 255738 0.6080 +3990 326625 0.4860 +3990 338328 0.7710 +3990 346606 0.6560 +3990 387715 0.7200 +3990 643418 0.4280 +3990 100528017 0.5720 +3991 4023 0.9030 +3991 4547 0.6740 +3991 4695 0.4720 +3991 4698 0.4790 +3991 4700 0.4740 +3991 4706 0.4200 +3991 4723 0.5100 +3991 4724 0.4740 +3991 4726 0.4800 +3991 4728 0.4980 +3991 4729 0.4730 +3991 5049 0.4420 +3991 5050 0.5280 +3991 5105 0.5770 +3991 5106 0.4370 +3991 5140 0.5890 +3991 5166 0.5220 +3991 5346 0.9990 +3991 5406 0.5920 +3991 5443 0.4850 +3991 5465 0.8070 +3991 5467 0.5180 +3991 5468 0.8570 +3991 5562 0.9270 +3991 5563 0.9260 +3991 5564 0.9150 +3991 5565 0.9110 +3991 5566 0.9890 +3991 5567 0.9890 +3991 5568 0.9890 +3991 5571 0.9190 +3991 5573 0.9100 +3991 5575 0.9060 +3991 5576 0.9170 +3991 5577 0.9280 +3991 5592 0.9260 +3991 5593 0.9090 +3991 5834 0.6370 +3991 5836 0.6760 +3991 5837 0.4990 +3991 6261 0.4190 +3991 6319 0.6520 +3991 6514 0.4290 +3991 6517 0.8100 +3991 6648 0.4930 +3991 6713 0.4640 +3991 6720 0.7690 +3991 6721 0.5170 +3991 6770 0.4720 +3991 6999 0.5680 +3991 7124 0.4610 +3991 7275 0.4970 +3991 7350 0.8020 +3991 7351 0.6030 +3991 7352 0.5660 +3991 7385 0.4500 +3991 7386 0.5000 +3991 7391 0.5540 +3991 7392 0.4480 +3991 8228 0.8030 +3991 8310 0.5790 +3991 8484 0.4140 +3991 8660 0.4040 +3991 8694 0.7460 +3991 8942 0.5770 +3991 9370 0.8600 +3991 10062 0.4030 +3991 10226 0.7930 +3991 10449 0.4420 +3991 10533 0.4040 +3991 10555 0.5650 +3991 10628 0.4890 +3991 10891 0.7010 +3991 10999 0.6430 +3991 11145 0.4670 +3991 11343 0.9270 +3991 23175 0.5300 +3991 23411 0.4860 +3991 23491 0.7860 +3991 26291 0.5700 +3991 26580 0.5020 +3991 50486 0.6060 +3991 51085 0.9000 +3991 51094 0.4240 +3991 51099 0.9190 +3991 51129 0.4630 +3991 51422 0.9210 +3991 51703 0.4260 +3991 53632 0.9190 +3991 55967 0.4740 +3991 56729 0.5500 +3991 56971 0.4450 +3991 57104 0.9710 +3991 57406 0.4810 +3991 57678 0.5750 +3991 57818 0.4330 +3991 63874 0.5240 +3991 63924 0.8120 +3991 63976 0.6100 +3991 79071 0.4730 +3991 79602 0.4300 +3991 79728 0.4200 +3991 80221 0.8250 +3991 80339 0.8830 +3991 83401 0.4800 +3991 83886 0.4250 +3991 84649 0.7010 +3991 84666 0.4910 +3991 84803 0.4720 +3991 92579 0.4380 +3991 126129 0.5560 +3991 132949 0.6930 +3991 137964 0.4800 +3991 150379 0.5770 +3991 158833 0.4750 +3991 219623 0.4340 +3991 284119 0.5420 +3991 376497 0.7940 +3991 440503 0.8590 +3991 646480 0.6680 +3991 646486 0.6270 +3991 653604 0.4060 +3991 729359 0.7050 +3992 5465 0.7430 +3992 5469 0.4310 +3992 6256 0.4350 +3992 6307 0.6700 +3992 6309 0.9760 +3992 6319 0.9590 +3992 6713 0.5600 +3992 6720 0.5700 +3992 6721 0.4180 +3992 6785 0.6060 +3992 6907 0.4400 +3992 8648 0.4300 +3992 8694 0.5020 +3992 9023 0.5440 +3992 9200 0.9180 +3992 9524 0.9200 +3992 10498 0.4060 +3992 10499 0.4050 +3992 10682 0.8330 +3992 10826 0.5800 +3992 23042 0.4050 +3992 51144 0.9310 +3992 51167 0.4640 +3992 51495 0.9080 +3992 54898 0.9770 +3992 54995 0.4390 +3992 60481 0.8360 +3992 64834 0.6140 +3992 79071 0.7010 +3992 79718 0.4090 +3992 79966 0.5690 +3992 79993 0.4700 +3992 80205 0.4030 +3992 83401 0.5690 +3992 112812 0.5670 +3992 201562 0.9140 +3992 283985 0.4460 +3992 401494 0.9050 +3993 3996 0.9930 +3993 4072 0.4290 +3993 5584 0.9960 +3993 5590 0.9940 +3993 6165 0.5940 +3993 7337 0.9010 +3993 8140 0.8830 +3993 9231 0.8590 +3993 9730 0.4390 +3993 10207 0.6370 +3993 10362 0.4890 +3993 10437 0.4300 +3993 10652 0.7370 +3993 11187 0.4510 +3993 23199 0.4390 +3993 23418 0.4530 +3993 23513 0.9590 +3993 27134 0.5830 +3993 50855 0.9500 +3993 55327 0.4390 +3993 56288 0.7530 +3993 56852 0.4320 +3993 60412 0.4140 +3993 64398 0.5110 +3993 79767 0.4590 +3993 84078 0.4230 +3993 84552 0.9350 +3993 84612 0.9710 +3993 91862 0.4430 +3993 92359 0.7630 +3993 117583 0.4250 +3993 118856 0.4090 +3993 153562 0.5260 +3993 221078 0.7000 +3993 440138 0.5260 +3995 6307 0.5440 +3995 6309 0.6020 +3995 6319 0.9050 +3995 6713 0.4250 +3995 6785 0.4090 +3995 7357 0.4030 +3995 8560 0.5200 +3995 9023 0.5440 +3995 10424 0.5080 +3995 10826 0.5440 +3995 54898 0.4830 +3995 54995 0.4660 +3995 60481 0.4580 +3995 79071 0.4360 +3995 79966 0.4710 +3995 80777 0.9000 +3995 83401 0.4340 +3995 112812 0.5710 +3995 283985 0.4690 +3996 4356 0.6900 +3996 4893 0.4120 +3996 5584 0.9930 +3996 5590 0.9950 +3996 6165 0.4610 +3996 6470 0.4290 +3996 7156 0.4130 +3996 7337 0.9050 +3996 7430 0.4120 +3996 7732 0.5790 +3996 7881 0.5490 +3996 8237 0.6210 +3996 8533 0.6910 +3996 8650 0.6180 +3996 8825 0.4670 +3996 9231 0.8410 +3996 9253 0.6200 +3996 9368 0.4410 +3996 10048 0.4950 +3996 10207 0.4780 +3996 10294 0.4200 +3996 10462 0.7430 +3996 23141 0.4740 +3996 23513 0.9640 +3996 50855 0.8310 +3996 55327 0.4960 +3996 56288 0.6420 +3996 56953 0.6720 +3996 60412 0.4260 +3996 64398 0.4950 +3996 83450 0.4850 +3996 84249 0.4500 +3996 84552 0.7340 +3996 84612 0.9490 +3996 117583 0.5130 +3998 4124 0.5210 +3998 4153 0.7700 +3998 4253 0.7040 +3998 4695 0.4220 +3998 4705 0.4080 +3998 4905 0.5770 +3998 5034 0.5200 +3998 5104 0.4620 +3998 5265 0.7700 +3998 5420 0.4170 +3998 5584 0.4230 +3998 5611 0.6140 +3998 5861 0.4290 +3998 5862 0.4570 +3998 5870 0.4930 +3998 5880 0.5740 +3998 5881 0.5710 +3998 6184 0.5940 +3998 6185 0.4300 +3998 6396 0.8440 +3998 6400 0.4010 +3998 6745 0.6610 +3998 6747 0.5340 +3998 6748 0.4530 +3998 6811 0.7670 +3998 6835 0.4360 +3998 6836 0.9490 +3998 7037 0.4240 +3998 7039 0.5060 +3998 7184 0.5810 +3998 7841 0.4490 +3998 8411 0.5140 +3998 8615 0.7820 +3998 8766 0.4130 +3998 8774 0.5290 +3998 8775 0.6050 +3998 8869 0.4010 +3998 9117 0.6320 +3998 9217 0.5630 +3998 9276 0.7390 +3998 9321 0.4490 +3998 9527 0.4920 +3998 9554 0.8770 +3998 9570 0.7990 +3998 9601 0.5560 +3998 9632 0.9180 +3998 9695 0.5140 +3998 9761 0.4490 +3998 9871 0.7850 +3998 9919 0.9370 +3998 9950 0.5130 +3998 10113 0.8430 +3998 10130 0.4240 +3998 10134 0.7210 +3998 10175 0.6370 +3998 10282 0.8610 +3998 10342 0.5960 +3998 10424 0.5370 +3998 10427 0.8380 +3998 10483 0.6270 +3998 10484 0.9020 +3998 10618 0.7140 +3998 10652 0.6540 +3998 10802 0.8130 +3998 10945 0.4970 +3998 10952 0.4370 +3998 10956 0.4430 +3998 10959 0.8500 +3998 10960 0.7180 +3998 10972 0.8250 +3998 11079 0.5990 +3998 11196 0.6560 +3998 11231 0.7410 +3998 11316 0.4980 +3998 22818 0.4010 +3998 22872 0.9520 +3998 22926 0.4940 +3998 22930 0.4010 +3998 23071 0.9030 +3998 23193 0.5520 +3998 23256 0.7010 +3998 23385 0.5390 +3998 25870 0.5020 +3998 25963 0.4600 +3998 26003 0.6020 +3998 26286 0.4230 +3998 26984 0.6690 +3998 27248 0.6350 +3998 27333 0.4030 +3998 29880 0.4010 +3998 29927 0.4900 +3998 29984 0.5690 +3998 50999 0.4250 +3998 51128 0.7680 +3998 51290 0.5490 +3998 51614 0.4740 +3998 51726 0.4700 +3998 53407 0.4140 +3998 54431 0.4410 +3998 54732 0.5130 +3998 55014 0.5800 +3998 55219 0.4830 +3998 55757 0.4020 +3998 55831 0.5880 +3998 55852 0.4760 +3998 56681 0.7610 +3998 56886 0.7200 +3998 57222 0.8750 +3998 63908 0.4990 +3998 64083 0.7330 +3998 64689 0.7560 +3998 65992 0.4770 +3998 79748 0.5980 +3998 79912 0.4070 +3998 80267 0.6920 +3998 81502 0.4630 +3998 81542 0.4270 +3998 81555 0.4140 +3998 81562 0.7240 +3998 81876 0.8530 +3998 83541 0.4060 +3998 84317 0.4240 +3998 89866 0.8700 +3998 90411 0.9990 +3998 133619 0.4320 +3998 149111 0.5070 +3998 201595 0.5150 +3998 222068 0.4050 +3998 254263 0.5070 +3998 339302 0.7210 +3998 375056 0.6950 +4000 4001 0.9960 +4000 4154 0.4790 +4000 4292 0.4360 +4000 4436 0.5030 +4000 4607 0.6990 +4000 4609 0.6050 +4000 4624 0.6610 +4000 4625 0.6940 +4000 4633 0.4610 +4000 4634 0.4900 +4000 4654 0.5130 +4000 4670 0.5090 +4000 4780 0.4720 +4000 4792 0.5010 +4000 4869 0.5450 +4000 4878 0.4540 +4000 4893 0.4920 +4000 4914 0.6510 +4000 4928 0.7360 +4000 5037 0.4680 +4000 5093 0.7060 +4000 5130 0.4820 +4000 5245 0.4370 +4000 5286 0.4260 +4000 5318 0.7540 +4000 5339 0.6440 +4000 5468 0.6660 +4000 5515 0.5530 +4000 5518 0.5470 +4000 5520 0.5570 +4000 5578 0.6140 +4000 5579 0.5480 +4000 5594 0.4960 +4000 5595 0.6260 +4000 5604 0.7190 +4000 5605 0.7130 +4000 5610 0.4230 +4000 5728 0.4860 +4000 5781 0.4750 +4000 5813 0.4610 +4000 5885 0.5380 +4000 5894 0.4620 +4000 5903 0.4040 +4000 5925 0.8170 +4000 5928 0.4580 +4000 6117 0.5220 +4000 6262 0.5020 +4000 6331 0.6510 +4000 6348 0.4070 +4000 6351 0.4580 +4000 6442 0.4890 +4000 6443 0.4470 +4000 6444 0.8150 +4000 6445 0.4450 +4000 6613 0.4710 +4000 6657 0.5260 +4000 6671 0.5750 +4000 6714 0.6720 +4000 6720 0.9350 +4000 6811 0.4200 +4000 6847 0.5410 +4000 7043 0.4420 +4000 7111 0.4460 +4000 7112 0.9890 +4000 7124 0.5230 +4000 7137 0.5400 +4000 7139 0.6400 +4000 7157 0.6760 +4000 7158 0.6350 +4000 7168 0.6140 +4000 7170 0.5470 +4000 7273 0.7270 +4000 7314 0.4660 +4000 7329 0.6910 +4000 7414 0.4890 +4000 7431 0.4760 +4000 7486 0.7270 +4000 7494 0.8110 +4000 7528 0.6310 +4000 7529 0.5290 +4000 7703 0.4060 +4000 7837 0.5990 +4000 7852 0.4100 +4000 7874 0.4580 +4000 7965 0.4060 +4000 8048 0.4710 +4000 8082 0.4410 +4000 8087 0.5180 +4000 8187 0.8450 +4000 8243 0.5930 +4000 8290 0.4690 +4000 8291 0.5450 +4000 8349 0.4080 +4000 8356 0.5000 +4000 8361 0.6660 +4000 8468 0.5070 +4000 8546 0.5140 +4000 8557 0.5780 +4000 8805 0.5580 +4000 8815 0.9960 +4000 8844 0.5080 +4000 8851 0.7500 +4000 8888 0.4750 +4000 9019 0.4040 +4000 9061 0.5000 +4000 9126 0.5790 +4000 9212 0.4650 +4000 9308 0.5270 +4000 9401 0.4930 +4000 9444 0.5580 +4000 9499 0.5290 +4000 9531 0.5750 +4000 9584 0.4420 +4000 9631 0.7280 +4000 9656 0.4180 +4000 9715 0.5100 +4000 9782 0.4430 +4000 9812 0.6540 +4000 9883 0.6510 +4000 9972 0.8340 +4000 9985 0.5080 +4000 9986 0.5970 +4000 10018 0.5960 +4000 10142 0.6020 +4000 10269 0.9610 +4000 10274 0.5600 +4000 10383 0.4860 +4000 10388 0.4990 +4000 10424 0.4640 +4000 10533 0.5930 +4000 10555 0.7420 +4000 10585 0.4470 +4000 10664 0.6540 +4000 10734 0.5390 +4000 10735 0.5260 +4000 10762 0.6820 +4000 10827 0.5130 +4000 10938 0.4020 +4000 11044 0.4990 +4000 11083 0.5000 +4000 11155 0.5830 +4000 22906 0.4990 +4000 22919 0.9060 +4000 22998 0.4070 +4000 23141 0.5870 +4000 23164 0.5910 +4000 23224 0.9940 +4000 23345 0.9960 +4000 23353 0.9970 +4000 23411 0.7010 +4000 23450 0.5140 +4000 23463 0.6170 +4000 23476 0.4260 +4000 23592 0.9360 +4000 23633 0.6430 +4000 25777 0.9990 +4000 25900 0.4100 +4000 25909 0.6920 +4000 26092 0.7280 +4000 26227 0.5520 +4000 26502 0.7150 +4000 26524 0.4620 +4000 26580 0.8060 +4000 27044 0.5570 +4000 27127 0.5650 +4000 27327 0.5840 +4000 29102 0.4670 +4000 29119 0.4320 +4000 29843 0.5800 +4000 29895 0.4250 +4000 29954 0.4180 +4000 50511 0.5170 +4000 51207 0.6580 +4000 51422 0.7520 +4000 51548 0.5080 +4000 51586 0.4370 +4000 51741 0.4920 +4000 54332 0.4470 +4000 54443 0.4400 +4000 54845 0.5480 +4000 54904 0.4740 +4000 55109 0.4990 +4000 55145 0.4550 +4000 55746 0.6960 +4000 55750 0.5670 +4000 55788 0.4070 +4000 56158 0.4990 +4000 56829 0.5060 +4000 57085 0.5010 +4000 57190 0.5210 +4000 57670 0.5250 +4000 79041 0.4370 +4000 79147 0.5730 +4000 79188 0.8050 +4000 79728 0.4280 +4000 79968 0.5100 +4000 80853 0.4990 +4000 81693 0.4280 +4000 84617 0.4230 +4000 84665 0.4790 +4000 84823 0.9920 +4000 90523 0.6120 +4000 93426 0.5640 +4000 137902 0.5910 +4000 140836 0.8340 +4000 199953 0.6270 +4000 200539 0.4060 +4000 203068 0.4540 +4000 203859 0.4300 +4000 221496 0.8340 +4000 256126 0.4990 +4000 282996 0.6660 +4000 284119 0.5100 +4000 440093 0.4670 +4000 440686 0.4760 +4000 448831 0.4120 +4000 644186 0.5050 +4000 653604 0.6760 +4000 728378 0.5950 +4000 100288687 0.6160 +4001 4082 0.5100 +4001 4162 0.4500 +4001 4173 0.4270 +4001 4288 0.5080 +4001 4440 0.4010 +4001 4605 0.6050 +4001 4609 0.6660 +4001 4613 0.5130 +4001 4644 0.4170 +4001 4691 0.6130 +4001 4780 0.5560 +4001 4790 0.5220 +4001 4792 0.6740 +4001 4869 0.8010 +4001 4926 0.5940 +4001 4927 0.4020 +4001 4928 0.5740 +4001 5147 0.5940 +4001 5339 0.4500 +4001 5347 0.4760 +4001 5361 0.4460 +4001 5364 0.5300 +4001 5451 0.7420 +4001 5515 0.5920 +4001 5518 0.5600 +4001 5520 0.5440 +4001 5549 0.4160 +4001 5567 0.5050 +4001 5568 0.5130 +4001 5578 0.7220 +4001 5579 0.7750 +4001 5595 0.5050 +4001 5743 0.4250 +4001 5879 0.4030 +4001 5885 0.6230 +4001 5886 0.4090 +4001 5888 0.5710 +4001 5902 0.4040 +4001 5903 0.5140 +4001 5905 0.6870 +4001 5970 0.4450 +4001 6117 0.6710 +4001 6119 0.5460 +4001 6241 0.6070 +4001 6402 0.4410 +4001 6427 0.5810 +4001 6597 0.6240 +4001 6608 0.4160 +4001 6615 0.4030 +4001 6657 0.5560 +4001 6720 0.5140 +4001 6774 0.4840 +4001 6775 0.7590 +4001 6847 0.5580 +4001 7027 0.4340 +4001 7099 0.4110 +4001 7108 0.6420 +4001 7112 0.9810 +4001 7124 0.5190 +4001 7153 0.5330 +4001 7157 0.6600 +4001 7158 0.5490 +4001 7175 0.4050 +4001 7290 0.4510 +4001 7329 0.6190 +4001 7343 0.5540 +4001 7414 0.4860 +4001 7416 0.4140 +4001 7431 0.4740 +4001 7514 0.5180 +4001 7528 0.4700 +4001 7837 0.7280 +4001 7879 0.4300 +4001 8091 0.6070 +4001 8187 0.5570 +4001 8243 0.6480 +4001 8290 0.7440 +4001 8318 0.4090 +4001 8338 0.4520 +4001 8349 0.5200 +4001 8356 0.7550 +4001 8361 0.6260 +4001 8468 0.5070 +4001 8678 0.4100 +4001 8703 0.4120 +4001 8704 0.4030 +4001 8773 0.4150 +4001 8776 0.4340 +4001 8815 0.9220 +4001 8851 0.7600 +4001 8900 0.4360 +4001 8987 0.4160 +4001 9055 0.4440 +4001 9063 0.5190 +4001 9126 0.6330 +4001 9134 0.4380 +4001 9156 0.4840 +4001 9188 0.4630 +4001 9212 0.5110 +4001 9341 0.4220 +4001 9401 0.4640 +4001 9414 0.4470 +4001 9451 0.4630 +4001 9497 0.4040 +4001 9555 0.4050 +4001 9584 0.4600 +4001 9590 0.4360 +4001 9631 0.4470 +4001 9688 0.5150 +4001 9774 0.4010 +4001 9782 0.4950 +4001 9787 0.4140 +4001 9817 0.5630 +4001 9833 0.6380 +4001 9928 0.4980 +4001 9972 0.7660 +4001 9985 0.5210 +4001 9986 0.6000 +4001 10112 0.7310 +4001 10250 0.4500 +4001 10269 0.7770 +4001 10274 0.6020 +4001 10388 0.4990 +4001 10409 0.4210 +4001 10635 0.5050 +4001 10664 0.5140 +4001 10734 0.5390 +4001 10735 0.6060 +4001 10762 0.5070 +4001 10919 0.5310 +4001 10951 0.4710 +4001 11083 0.5130 +4001 11113 0.4180 +4001 11130 0.8480 +4001 11200 0.5080 +4001 11270 0.5740 +4001 11335 0.4800 +4001 11345 0.5250 +4001 23141 0.6190 +4001 23165 0.6820 +4001 23224 0.9630 +4001 23225 0.4340 +4001 23279 0.5640 +4001 23344 0.4300 +4001 23345 0.9560 +4001 23353 0.9820 +4001 23397 0.4630 +4001 23411 0.6430 +4001 23463 0.5850 +4001 23468 0.6170 +4001 23476 0.4340 +4001 23523 0.4350 +4001 23592 0.9270 +4001 23633 0.4140 +4001 23636 0.4850 +4001 23710 0.5330 +4001 24137 0.5550 +4001 25777 0.9570 +4001 25842 0.5670 +4001 25909 0.5360 +4001 25942 0.4750 +4001 26049 0.6490 +4001 26092 0.7830 +4001 26168 0.6040 +4001 26227 0.5000 +4001 26271 0.5500 +4001 26354 0.4560 +4001 26586 0.6080 +4001 27127 0.5810 +4001 29128 0.4530 +4001 29843 0.5520 +4001 29855 0.4420 +4001 29984 0.5660 +4001 50511 0.5870 +4001 51203 0.4060 +4001 51547 0.4800 +4001 54205 0.4080 +4001 54443 0.4900 +4001 54509 0.5730 +4001 55143 0.4240 +4001 55226 0.4150 +4001 55240 0.4110 +4001 55329 0.8480 +4001 55388 0.4200 +4001 55706 0.4140 +4001 55723 0.4030 +4001 55746 0.4970 +4001 55832 0.4350 +4001 55914 0.8200 +4001 55971 0.4160 +4001 56158 0.4990 +4001 56924 0.4410 +4001 56992 0.4160 +4001 57122 0.5230 +4001 57520 0.5450 +4001 59343 0.7950 +4001 63891 0.4140 +4001 65124 0.4030 +4001 79180 0.4370 +4001 79902 0.4460 +4001 79923 0.4130 +4001 80115 0.4160 +4001 80728 0.4620 +4001 81565 0.6370 +4001 81620 0.4530 +4001 81624 0.5280 +4001 81631 0.6120 +4001 81839 0.4260 +4001 83879 0.5180 +4001 84250 0.4350 +4001 84557 0.4760 +4001 84823 0.9990 +4001 93426 0.5070 +4001 115004 0.4250 +4001 120892 0.5300 +4001 124245 0.4300 +4001 124404 0.5980 +4001 129401 0.6030 +4001 133482 0.4420 +4001 137902 0.7270 +4001 140836 0.8080 +4001 144402 0.4110 +4001 170506 0.5040 +4001 199953 0.7340 +4001 221496 0.7440 +4001 256126 0.5080 +4001 256979 0.4070 +4001 259266 0.6120 +4001 345630 0.4370 +4001 440093 0.7440 +4001 440686 0.7490 +4001 445582 0.4680 +4001 644186 0.5170 +4001 653604 0.7530 +4001 729857 0.6250 +4004 4005 0.6390 +4004 4007 0.5940 +4004 4010 0.4260 +4004 4066 0.8860 +4004 4602 0.5660 +4004 4613 0.5670 +4004 4747 0.4270 +4004 4851 0.4640 +4004 6474 0.6540 +4004 6491 0.5170 +4004 6678 0.5020 +4004 6764 0.6860 +4004 6886 0.9640 +4004 6887 0.8940 +4004 6929 0.8500 +4004 6938 0.5800 +4004 7080 0.4420 +4004 7275 0.4290 +4004 8021 0.4380 +4004 8028 0.6250 +4004 8543 0.6270 +4004 8861 0.9960 +4004 8929 0.5810 +4004 9079 0.9550 +4004 9355 0.4290 +4004 9404 0.6090 +4004 9670 0.5630 +4004 10425 0.6820 +4004 11266 0.5520 +4004 23095 0.4120 +4004 23635 0.4200 +4004 26136 0.6850 +4004 30012 0.8240 +4004 51144 0.6220 +4004 54514 0.5120 +4004 55876 0.4180 +4004 56169 0.4920 +4004 56956 0.4060 +4004 57758 0.6920 +4004 64718 0.5910 +4004 64843 0.5010 +4004 64901 0.6150 +4004 64919 0.6470 +4004 65975 0.6730 +4004 79608 0.5930 +4004 84295 0.4270 +4004 118472 0.5910 +4004 133396 0.5840 +4004 170302 0.6470 +4004 170463 0.5170 +4004 284110 0.6960 +4004 389421 0.6040 +4005 4009 0.4490 +4005 4066 0.9980 +4005 4076 0.5380 +4005 4208 0.5100 +4005 4211 0.6030 +4005 4297 0.4020 +4005 4301 0.8670 +4005 4311 0.4490 +4005 4330 0.4880 +4005 4437 0.4060 +4005 4602 0.8320 +4005 4603 0.5640 +4005 4609 0.4760 +4005 4778 0.5850 +4005 4807 0.6370 +4005 4808 0.7470 +4005 4851 0.5350 +4005 5075 0.4010 +4005 5079 0.5350 +4005 5083 0.5320 +4005 5087 0.4570 +4005 5175 0.4170 +4005 5336 0.4380 +4005 5431 0.6190 +4005 5432 0.6240 +4005 5433 0.6260 +4005 5434 0.4120 +4005 5435 0.5430 +4005 5436 0.6990 +4005 5438 0.5330 +4005 5439 0.4440 +4005 5441 0.4590 +4005 5688 0.4870 +4005 5788 0.4690 +4005 5896 0.4530 +4005 5927 0.6320 +4005 6304 0.4940 +4005 6348 0.7050 +4005 6366 0.4260 +4005 6491 0.4370 +4005 6598 0.4040 +4005 6678 0.4030 +4005 6688 0.7510 +4005 6689 0.4070 +4005 6886 0.9990 +4005 6887 0.9030 +4005 6929 0.9960 +4005 6938 0.9780 +4005 7157 0.4990 +4005 7158 0.4220 +4005 7539 0.4980 +4005 7572 0.4010 +4005 8021 0.4240 +4005 8028 0.4050 +4005 8328 0.8450 +4005 8356 0.5190 +4005 8522 0.4150 +4005 8861 0.9990 +4005 9079 0.9980 +4005 9139 0.5070 +4005 9352 0.4530 +4005 9400 0.6300 +4005 10127 0.4460 +4005 10284 0.4810 +4005 10320 0.5850 +4005 10661 0.7990 +4005 10664 0.5680 +4005 10951 0.4390 +4005 10982 0.5320 +4005 11107 0.4320 +4005 11321 0.5950 +4005 22919 0.4660 +4005 23248 0.4500 +4005 23389 0.4200 +4005 23414 0.4560 +4005 23468 0.4730 +4005 23493 0.4760 +4005 23512 0.5660 +4005 23583 0.5930 +4005 23635 0.8020 +4005 25758 0.5360 +4005 26040 0.4460 +4005 26273 0.4990 +4005 30012 0.7900 +4005 51132 0.6600 +4005 51176 0.4130 +4005 53335 0.5980 +4005 55197 0.4220 +4005 55278 0.7830 +4005 55553 0.4970 +4005 55859 0.8950 +4005 57379 0.4610 +4005 58490 0.6110 +4005 63976 0.4380 +4005 63978 0.4180 +4005 64843 0.5300 +4005 64901 0.4290 +4005 64919 0.6470 +4005 79871 0.5130 +4005 84295 0.4450 +4005 84707 0.9230 +4005 140628 0.5780 +4005 161882 0.9730 +4005 170463 0.5610 +4005 171017 0.5200 +4005 171558 0.4360 +4005 257144 0.5800 +4005 327657 0.5120 +4007 5754 0.5410 +4007 6259 0.5370 +4007 6855 0.6890 +4007 7474 0.5450 +4007 7481 0.5760 +4007 7976 0.6370 +4007 8312 0.4120 +4007 8321 0.4100 +4007 8323 0.6500 +4007 8324 0.4780 +4007 8326 0.5730 +4007 9620 0.7830 +4007 10076 0.6990 +4007 10501 0.4090 +4007 22881 0.8520 +4007 23002 0.6020 +4007 23513 0.5250 +4007 24147 0.4510 +4007 27130 0.6680 +4007 27152 0.5870 +4007 27328 0.4810 +4007 29984 0.4160 +4007 51057 0.4230 +4007 55558 0.4420 +4007 57216 0.9970 +4007 57584 0.6870 +4007 79633 0.4190 +4007 81839 0.9900 +4007 91584 0.4110 +4007 126374 0.5510 +4008 4301 0.9830 +4008 4478 0.5220 +4008 4738 0.5330 +4008 4869 0.5430 +4008 5100 0.4140 +4008 5295 0.5260 +4008 5335 0.5000 +4008 5495 0.5460 +4008 5573 0.5130 +4008 5818 0.6890 +4008 5903 0.5580 +4008 6238 0.5920 +4008 6464 0.5140 +4008 6500 0.6720 +4008 6774 0.5340 +4008 6801 0.5710 +4008 7074 0.4240 +4008 7153 0.4140 +4008 7170 0.5420 +4008 7171 0.5620 +4008 7175 0.5380 +4008 7316 0.4470 +4008 7345 0.6550 +4008 7347 0.8760 +4008 7414 0.6060 +4008 7533 0.4010 +4008 8454 0.4750 +4008 8496 0.5770 +4008 8878 0.5180 +4008 8883 0.5070 +4008 9021 0.4440 +4008 9039 0.5140 +4008 9040 0.5030 +4008 9451 0.4990 +4008 9648 0.5970 +4008 9892 0.4050 +4008 9978 0.4010 +4008 10342 0.5500 +4008 10383 0.4310 +4008 10801 0.5960 +4008 10817 0.5070 +4008 10818 0.5270 +4008 22848 0.4050 +4008 22872 0.5800 +4008 23143 0.4080 +4008 23314 0.4070 +4008 26232 0.4060 +4008 27295 0.4580 +4008 27436 0.5880 +4008 53335 0.5140 +4008 54443 0.4740 +4008 54550 0.4160 +4008 55832 0.5030 +4008 57448 0.5680 +4008 79026 0.4500 +4008 80304 0.4990 +4008 113146 0.4700 +4008 117178 0.5420 +4008 121227 0.4080 +4008 123879 0.4990 +4008 170622 0.8650 +4008 345930 0.4170 +4008 554251 0.4580 +4009 4010 0.4020 +4009 4066 0.4240 +4009 4487 0.8050 +4009 4488 0.5060 +4009 4618 0.4570 +4009 4760 0.5890 +4009 4762 0.5020 +4009 4821 0.7540 +4009 4825 0.5860 +4009 4929 0.8490 +4009 5013 0.5380 +4009 5015 0.7600 +4009 5075 0.4800 +4009 5076 0.7060 +4009 5080 0.6220 +4009 5184 0.4220 +4009 5309 0.6060 +4009 5454 0.6190 +4009 5456 0.4010 +4009 5457 0.4410 +4009 5460 0.4310 +4009 6469 0.6870 +4009 6495 0.4030 +4009 6531 0.6230 +4009 6571 0.6130 +4009 6656 0.5860 +4009 6657 0.5160 +4009 6886 0.5190 +4009 7054 0.6850 +4009 7471 0.7640 +4009 7545 0.4050 +4009 8022 0.4390 +4009 8861 0.5760 +4009 9079 0.5710 +4009 10215 0.4230 +4009 10699 0.6110 +4009 10763 0.5130 +4009 22844 0.4310 +4009 23040 0.5950 +4009 26050 0.4090 +4009 26281 0.4320 +4009 56751 0.5660 +4009 63950 0.4300 +4009 63973 0.8720 +4009 84504 0.4860 +4009 120237 0.4800 +4009 147948 0.4070 +4009 151449 0.5010 +4009 167826 0.4600 +4009 170825 0.4080 +4009 222894 0.4350 +4009 285888 0.4580 +4010 4038 0.6210 +4010 4081 0.8380 +4010 4211 0.8150 +4010 4212 0.8720 +4010 4487 0.5370 +4010 4643 0.4720 +4010 4653 0.6820 +4010 4821 0.8950 +4010 4825 0.4700 +4010 4868 0.7170 +4010 4929 0.7170 +4010 5013 0.4610 +4010 5076 0.8820 +4010 5080 0.5210 +4010 5087 0.8300 +4010 5089 0.7590 +4010 5090 0.8460 +4010 5309 0.6020 +4010 5454 0.6120 +4010 5455 0.5720 +4010 5457 0.4330 +4010 5800 0.4180 +4010 6469 0.7670 +4010 6473 0.4440 +4010 6531 0.5690 +4010 6532 0.4930 +4010 6571 0.5940 +4010 6834 0.4220 +4010 6838 0.6320 +4010 6913 0.4490 +4010 6943 0.4980 +4010 7054 0.5750 +4010 7166 0.4070 +4010 7225 0.4820 +4010 7471 0.5630 +4010 7476 0.7070 +4010 7490 0.5900 +4010 7827 0.7730 +4010 8214 0.4230 +4010 8861 0.9760 +4010 8929 0.5350 +4010 9079 0.7640 +4010 9496 0.6890 +4010 9935 0.5450 +4010 10133 0.4080 +4010 10660 0.5450 +4010 10699 0.4230 +4010 23040 0.6870 +4010 23090 0.4030 +4010 23607 0.5670 +4010 23635 0.8170 +4010 25973 0.4360 +4010 26468 0.4780 +4010 27235 0.5280 +4010 30012 0.6740 +4010 50485 0.5330 +4010 50674 0.4350 +4010 51004 0.4820 +4010 51196 0.5300 +4010 54738 0.4960 +4010 55269 0.4550 +4010 55885 0.4950 +4010 57084 0.4470 +4010 57107 0.4810 +4010 57628 0.4070 +4010 57720 0.7260 +4010 58524 0.4670 +4010 63876 0.7120 +4010 63973 0.5840 +4010 64423 0.5700 +4010 64843 0.6520 +4010 84504 0.4440 +4010 84864 0.5890 +4010 84942 0.4420 +4010 91734 0.8310 +4010 92129 0.4320 +4010 93986 0.4600 +4010 120237 0.4720 +4010 121278 0.5130 +4010 136371 0.5890 +4010 152330 0.4260 +4010 167826 0.4240 +4010 170463 0.7980 +4010 219402 0.4760 +4010 256297 0.4450 +4012 4170 0.4610 +4012 4218 0.7080 +4012 4926 0.5950 +4012 5020 0.8650 +4012 5021 0.4460 +4012 5862 0.4220 +4012 5872 0.5480 +4012 5921 0.4490 +4012 5972 0.4950 +4012 6051 0.4270 +4012 6272 0.6110 +4012 6506 0.4010 +4012 6517 0.8970 +4012 6535 0.5030 +4012 6810 0.4200 +4012 6844 0.6530 +4012 6892 0.4890 +4012 7013 0.7220 +4012 7037 0.4240 +4012 7064 0.6000 +4012 7174 0.6530 +4012 7529 0.5750 +4012 7531 0.5720 +4012 7532 0.5760 +4012 7533 0.5680 +4012 7534 0.5680 +4012 8658 0.8940 +4012 8766 0.4360 +4012 9370 0.4160 +4012 9882 0.9780 +4012 9896 0.4390 +4012 10228 0.4520 +4012 10618 0.5070 +4012 10890 0.7940 +4012 10971 0.5710 +4012 23048 0.4230 +4012 23431 0.4070 +4012 23549 0.5640 +4012 25884 0.5540 +4012 29761 0.4190 +4012 51056 0.6110 +4012 51552 0.8370 +4012 55697 0.4980 +4012 57486 0.4870 +4012 59272 0.4770 +4012 80351 0.9060 +4012 85456 0.8020 +4012 93594 0.4340 +4012 167410 0.8680 +4012 200576 0.5470 +4012 283385 0.4480 +4013 5316 0.6240 +4013 5827 0.4360 +4013 6663 0.6630 +4013 8505 0.4180 +4013 11160 0.4050 +4013 23318 0.4800 +4013 27085 0.4120 +4013 29907 0.4750 +4013 57156 0.4580 +4013 57484 0.4600 +4013 58487 0.4120 +4013 63876 0.5470 +4013 148113 0.4140 +4013 729597 0.5070 +4014 5017 0.4840 +4014 5266 0.8880 +4014 5317 0.8100 +4014 5318 0.5370 +4014 5339 0.4530 +4014 5493 0.8720 +4014 5641 0.6190 +4014 5650 0.5110 +4014 6271 0.5700 +4014 6277 0.6270 +4014 6278 0.6030 +4014 6281 0.7570 +4014 6361 0.4010 +4014 6698 0.9170 +4014 6699 0.9280 +4014 6700 0.7470 +4014 6701 0.7650 +4014 6703 0.6950 +4014 6704 0.6540 +4014 6705 0.5650 +4014 6706 0.7630 +4014 6707 0.9300 +4014 7051 0.9330 +4014 7052 0.4680 +4014 7053 0.9070 +4014 7062 0.9890 +4014 8502 0.5070 +4014 8706 0.4670 +4014 9076 0.4740 +4014 9333 0.5230 +4014 11005 0.6610 +4014 11187 0.5720 +4014 23581 0.7950 +4014 25818 0.4980 +4014 26154 0.6630 +4014 26239 0.8890 +4014 49860 0.5570 +4014 50616 0.4750 +4014 54544 0.5450 +4014 57115 0.5160 +4014 57822 0.4070 +4014 59344 0.4510 +4014 84518 0.8290 +4014 84648 0.7670 +4014 85480 0.5070 +4014 114771 0.6260 +4014 126638 0.8470 +4014 145264 0.4800 +4014 147409 0.6230 +4014 149018 0.6200 +4014 151516 0.4330 +4014 163778 0.6910 +4014 199834 0.6030 +4014 254910 0.6080 +4014 353131 0.8650 +4014 353132 0.8350 +4014 353133 0.7050 +4014 353134 0.6330 +4014 353135 0.6440 +4014 353137 0.6760 +4014 353139 0.7460 +4014 353140 0.7170 +4014 353141 0.7300 +4014 353142 0.6720 +4014 353143 0.8420 +4014 353144 0.8470 +4014 353145 0.6710 +4014 374454 0.4990 +4014 374897 0.4820 +4014 386653 0.5080 +4014 388533 0.6990 +4014 388697 0.5950 +4014 388698 0.9990 +4014 414325 0.4170 +4014 448834 0.6410 +4014 448835 0.6800 +4014 100129271 0.4630 +4015 4016 0.6610 +4015 4017 0.7530 +4015 4048 0.4080 +4015 4052 0.5880 +4015 4053 0.5100 +4015 4060 0.5980 +4015 4087 0.4530 +4015 4088 0.4680 +4015 4089 0.4250 +4015 4233 0.4160 +4015 4236 0.4560 +4015 4237 0.8820 +4015 4238 0.4940 +4015 4239 0.4300 +4015 4312 0.5170 +4015 4313 0.7300 +4015 4314 0.6690 +4015 4318 0.6140 +4015 4322 0.4850 +4015 4323 0.6810 +4015 4353 0.4100 +4015 4609 0.7080 +4015 4629 0.4500 +4015 4638 0.4050 +4015 4781 0.4670 +4015 4790 0.4910 +4015 4811 0.4090 +4015 4846 0.4050 +4015 4851 0.4130 +4015 4921 0.4160 +4015 4922 0.4120 +4015 4928 0.4520 +4015 4973 0.7620 +4015 5033 0.6040 +4015 5037 0.6240 +4015 5054 0.5730 +4015 5118 0.6490 +4015 5156 0.4990 +4015 5159 0.4850 +4015 5175 0.5270 +4015 5214 0.4530 +4015 5320 0.5130 +4015 5321 0.5540 +4015 5328 0.4200 +4015 5340 0.5920 +4015 5351 0.7800 +4015 5352 0.7040 +4015 5396 0.5010 +4015 5443 0.4520 +4015 5465 0.4160 +4015 5468 0.5410 +4015 5479 0.4030 +4015 5480 0.4620 +4015 5595 0.5840 +4015 5728 0.5460 +4015 5734 0.4070 +4015 5740 0.5210 +4015 5742 0.4930 +4015 5743 0.7660 +4015 5747 0.4320 +4015 5788 0.5110 +4015 5816 0.4220 +4015 5831 0.4330 +4015 5894 0.6560 +4015 6010 0.4960 +4015 6275 0.4690 +4015 6347 0.7100 +4015 6364 0.4890 +4015 6376 0.5010 +4015 6387 0.5000 +4015 6469 0.4670 +4015 6513 0.4340 +4015 6591 0.5880 +4015 6615 0.7250 +4015 6657 0.5810 +4015 6662 0.4440 +4015 6678 0.5500 +4015 6696 0.5150 +4015 6714 0.5090 +4015 6774 0.6640 +4015 6876 0.4850 +4015 7010 0.4930 +4015 7040 0.6230 +4015 7042 0.5220 +4015 7043 0.5100 +4015 7045 0.4510 +4015 7046 0.4530 +4015 7048 0.5030 +4015 7052 0.6590 +4015 7054 0.4170 +4015 7057 0.8070 +4015 7058 0.5460 +4015 7070 0.4140 +4015 7076 0.6490 +4015 7077 0.5400 +4015 7078 0.5420 +4015 7092 0.5330 +4015 7093 0.4720 +4015 7099 0.4800 +4015 7124 0.5940 +4015 7157 0.6060 +4015 7184 0.4220 +4015 7276 0.4470 +4015 7291 0.4910 +4015 7299 0.4570 +4015 7412 0.5100 +4015 7414 0.4440 +4015 7424 0.4760 +4015 7428 0.5410 +4015 7431 0.4150 +4015 7450 0.4950 +4015 7474 0.4100 +4015 7498 0.4490 +4015 7837 0.6200 +4015 7852 0.4790 +4015 8076 0.7040 +4015 8290 0.4070 +4015 8349 0.5070 +4015 8356 0.4070 +4015 8399 0.4470 +4015 8817 0.4260 +4015 8823 0.4040 +4015 8974 0.6240 +4015 8985 0.4140 +4015 9314 0.4020 +4015 9360 0.6220 +4015 9388 0.4470 +4015 9507 0.6210 +4015 9508 0.5880 +4015 9509 0.7500 +4015 9510 0.5800 +4015 9518 0.5610 +4015 9536 0.4190 +4015 9669 0.5490 +4015 9719 0.4760 +4015 9978 0.4100 +4015 10162 0.4770 +4015 10413 0.4310 +4015 10472 0.4130 +4015 10516 0.9690 +4015 10631 0.8110 +4015 10763 0.5410 +4015 11174 0.4880 +4015 23545 0.7080 +4015 23567 0.5750 +4015 26038 0.5270 +4015 26281 0.4050 +4015 27006 0.4420 +4015 29102 0.4920 +4015 30008 0.9510 +4015 50507 0.4040 +4015 51129 0.4820 +4015 51450 0.4330 +4015 51703 0.4560 +4015 54363 0.6890 +4015 54507 0.5590 +4015 54583 0.5360 +4015 54805 0.4260 +4015 54829 0.4040 +4015 57084 0.4480 +4015 57110 0.4440 +4015 57124 0.5080 +4015 59344 0.8130 +4015 60681 0.4610 +4015 64065 0.4190 +4015 64759 0.4570 +4015 64843 0.4170 +4015 65124 0.4650 +4015 81794 0.5310 +4015 84168 0.4900 +4015 84171 0.6320 +4015 84627 0.4240 +4015 84695 0.6230 +4015 85365 0.5200 +4015 112398 0.4770 +4015 112399 0.5490 +4015 130557 0.4090 +4015 136853 0.4960 +4015 137902 0.5640 +4015 146713 0.4010 +4015 170691 0.4510 +4015 256297 0.4220 +4015 257202 0.4480 +4015 260434 0.4090 +4015 440093 0.4060 +4015 440387 0.4980 +4015 440686 0.4070 +4015 493869 0.5560 +4015 653604 0.4060 +4015 728378 0.4280 +4016 4017 0.6730 +4016 4052 0.7160 +4016 4053 0.8520 +4016 4054 0.8450 +4016 4060 0.5130 +4016 4237 0.8770 +4016 4239 0.4550 +4016 4313 0.5240 +4016 4314 0.4070 +4016 4653 0.5450 +4016 5118 0.6720 +4016 5351 0.4660 +4016 5352 0.4890 +4016 5729 0.4600 +4016 6103 0.4090 +4016 6591 0.5110 +4016 6615 0.5180 +4016 6678 0.5420 +4016 7040 0.5060 +4016 7052 0.4090 +4016 7058 0.4370 +4016 7076 0.4780 +4016 7077 0.4400 +4016 7078 0.4790 +4016 7092 0.4940 +4016 7093 0.4230 +4016 8076 0.7560 +4016 8425 0.4820 +4016 8985 0.4270 +4016 9509 0.5680 +4016 10516 0.9970 +4016 10631 0.5120 +4016 22795 0.4360 +4016 30008 0.6930 +4016 54829 0.4010 +4016 57124 0.4090 +4016 57136 0.5040 +4016 60681 0.4530 +4016 84171 0.6740 +4016 84695 0.6330 +4016 84955 0.6190 +4016 140766 0.4080 +4016 219902 0.5010 +4016 255743 0.4520 +4017 4237 0.5370 +4017 4313 0.6430 +4017 4318 0.4310 +4017 4322 0.5280 +4017 4323 0.4320 +4017 4846 0.4330 +4017 4921 0.4190 +4017 5033 0.5420 +4017 5034 0.4120 +4017 5054 0.4040 +4017 5118 0.5920 +4017 5329 0.4640 +4017 5351 0.5260 +4017 5352 0.6280 +4017 6591 0.4700 +4017 6615 0.9730 +4017 6774 0.4780 +4017 6876 0.4350 +4017 7040 0.6630 +4017 7076 0.4260 +4017 7092 0.5020 +4017 7093 0.4710 +4017 7291 0.4290 +4017 7373 0.4760 +4017 7412 0.4860 +4017 7424 0.4090 +4017 7450 0.4620 +4017 8076 0.5440 +4017 8974 0.5100 +4017 10516 0.8590 +4017 10631 0.5490 +4017 10919 0.5010 +4017 54681 0.4350 +4017 55193 0.4400 +4017 64129 0.4790 +4017 84171 0.5490 +4017 84695 0.5490 +4018 4023 0.7940 +4018 4036 0.4580 +4018 4481 0.5930 +4018 4547 0.7560 +4018 5054 0.4470 +4018 5265 0.4610 +4018 5343 0.4900 +4018 5345 0.6020 +4018 5360 0.8560 +4018 5444 0.8750 +4018 5624 0.4590 +4018 6288 0.6610 +4018 6289 0.6510 +4018 6291 0.6520 +4018 6347 0.5050 +4018 6694 0.4360 +4018 7035 0.7450 +4018 7099 0.4810 +4018 7276 0.6420 +4018 7436 0.6940 +4018 7448 0.4970 +4018 7941 0.8480 +4018 8504 0.7280 +4018 8542 0.8140 +4018 9170 0.7160 +4018 9619 0.6630 +4018 10516 0.6220 +4018 10599 0.4440 +4018 10841 0.4210 +4018 27329 0.5010 +4018 29881 0.4050 +4018 51449 0.7200 +4018 51599 0.5810 +4018 55811 0.5280 +4018 55829 0.7210 +4018 55911 0.5730 +4018 55937 0.8710 +4018 79135 0.5920 +4018 116519 0.9470 +4018 255738 0.7100 +4018 100528017 0.6110 +4023 4035 0.9870 +4023 4036 0.7860 +4023 4057 0.6800 +4023 4481 0.6240 +4023 4547 0.6250 +4023 4852 0.4140 +4023 4973 0.5910 +4023 5045 0.5110 +4023 5046 0.4650 +4023 5054 0.4180 +4023 5105 0.4200 +4023 5125 0.7770 +4023 5166 0.5390 +4023 5327 0.4450 +4023 5346 0.6670 +4023 5360 0.8860 +4023 5406 0.9220 +4023 5407 0.9170 +4023 5444 0.7340 +4023 5465 0.8360 +4023 5467 0.5900 +4023 5468 0.9410 +4023 5469 0.5560 +4023 5587 0.4140 +4023 5697 0.4100 +4023 5740 0.4390 +4023 5950 0.4260 +4023 6256 0.6410 +4023 6272 0.8310 +4023 6288 0.6590 +4023 6289 0.6370 +4023 6291 0.6140 +4023 6319 0.6670 +4023 6347 0.4590 +4023 6385 0.4060 +4023 6517 0.7160 +4023 6653 0.6930 +4023 6696 0.4630 +4023 6720 0.7320 +4023 6721 0.5180 +4023 6837 0.4990 +4023 7099 0.4310 +4023 7124 0.5500 +4023 7350 0.6320 +4023 7351 0.5200 +4023 7352 0.5220 +4023 7436 0.9110 +4023 7837 0.6100 +4023 7941 0.6730 +4023 8202 0.5200 +4023 8310 0.6560 +4023 8504 0.5400 +4023 8513 0.9710 +4023 8522 0.4140 +4023 8525 0.9000 +4023 8526 0.9000 +4023 8527 0.9060 +4023 8542 0.5810 +4023 8612 0.9130 +4023 8613 0.9170 +4023 8648 0.5710 +4023 8660 0.4280 +4023 8694 0.7610 +4023 8841 0.5210 +4023 9076 0.4150 +4023 9162 0.9000 +4023 9213 0.5410 +4023 9282 0.4990 +4023 9370 0.7940 +4023 9388 0.9070 +4023 9412 0.4990 +4023 9439 0.4990 +4023 9440 0.4990 +4023 9441 0.4990 +4023 9442 0.4990 +4023 9443 0.4990 +4023 9477 0.5840 +4023 9611 0.6020 +4023 9612 0.5470 +4023 9619 0.5710 +4023 9663 0.9100 +4023 9862 0.4990 +4023 9967 0.4990 +4023 9968 0.4990 +4023 9969 0.4990 +4023 9971 0.5680 +4023 10001 0.4990 +4023 10025 0.4990 +4023 10062 0.4430 +4023 10499 0.5480 +4023 10891 0.7970 +4023 10999 0.5070 +4023 11343 0.9670 +4023 23090 0.4690 +4023 23097 0.4990 +4023 23175 0.9370 +4023 23205 0.8160 +4023 23305 0.8990 +4023 23389 0.4990 +4023 23411 0.4240 +4023 26119 0.5480 +4023 26291 0.5170 +4023 27329 0.9930 +4023 29079 0.4990 +4023 29881 0.5060 +4023 51003 0.4990 +4023 51085 0.5780 +4023 51099 0.4400 +4023 51129 0.9940 +4023 51449 0.5510 +4023 51586 0.4990 +4023 51599 0.5720 +4023 51703 0.9050 +4023 51738 0.4480 +4023 54797 0.4990 +4023 55022 0.4450 +4023 55090 0.4990 +4023 55588 0.4990 +4023 55829 0.5400 +4023 55911 0.5640 +4023 55937 0.6410 +4023 56729 0.5780 +4023 57104 0.9700 +4023 57678 0.5010 +4023 57818 0.4320 +4023 63924 0.4610 +4023 63976 0.4040 +4023 64240 0.4480 +4023 64241 0.4320 +4023 64788 0.9370 +4023 64900 0.9050 +4023 79135 0.5530 +4023 80168 0.9140 +4023 80306 0.4990 +4023 80339 0.9400 +4023 80347 0.4450 +4023 81616 0.8180 +4023 81857 0.4990 +4023 84230 0.5480 +4023 84246 0.4990 +4023 84498 0.4990 +4023 84513 0.9000 +4023 84649 0.6140 +4023 84666 0.5410 +4023 85441 0.4990 +4023 90390 0.4990 +4023 92579 0.4340 +4023 112950 0.4990 +4023 114294 0.6060 +4023 116255 0.9190 +4023 116519 0.9640 +4023 119548 0.9020 +4023 132949 0.5400 +4023 137902 0.6100 +4023 139189 0.9000 +4023 151742 0.5620 +4023 158833 0.4110 +4023 160851 0.9020 +4023 196051 0.9000 +4023 255738 0.5780 +4023 338328 0.9990 +4023 346606 0.9050 +4023 375611 0.6660 +4023 376497 0.5940 +4023 400569 0.4990 +4023 440503 0.4340 +4023 643418 0.4230 +4023 100528017 0.6000 +4025 4057 0.9480 +4025 4589 0.5340 +4025 5172 0.4060 +4025 5284 0.5120 +4025 5304 0.5100 +4025 5544 0.4300 +4025 6779 0.6180 +4025 53905 0.5330 +4025 405753 0.4060 +4025 440387 0.4220 +4033 4603 0.4110 +4033 5788 0.5500 +4033 6003 0.4230 +4033 6676 0.4160 +4033 8449 0.4090 +4033 9686 0.4420 +4033 9938 0.4040 +4033 23224 0.4940 +4033 23345 0.4830 +4033 23353 0.4770 +4033 25777 0.4410 +4033 54440 0.5370 +4033 55259 0.5420 +4033 55843 0.4740 +4033 64407 0.4670 +4033 140732 0.4390 +4033 144363 0.4470 +4033 147872 0.8460 +4033 160492 0.5510 +4033 161176 0.4660 +4033 163183 0.6230 +4033 256979 0.4900 +4033 646892 0.5190 +4034 4958 0.4090 +4034 5549 0.4520 +4034 8549 0.4790 +4034 9744 0.4430 +4034 10188 0.4490 +4034 10446 0.4380 +4034 11081 0.4470 +4034 22859 0.5480 +4034 23143 0.7570 +4034 23266 0.5230 +4034 23284 0.5230 +4034 54540 0.4510 +4034 54674 0.4400 +4034 56996 0.4400 +4034 57142 0.4310 +4034 57689 0.4440 +4034 64101 0.4810 +4034 79414 0.4380 +4034 80059 0.4940 +4034 81704 0.8350 +4034 81857 0.5520 +4034 84859 0.8000 +4034 152330 0.4180 +4034 157567 0.4350 +4034 285362 0.4590 +4034 347730 0.4740 +4034 347731 0.5170 +4034 375387 0.4620 +4034 105375355 0.4970 +4035 4036 0.9420 +4035 4043 0.9970 +4035 4057 0.9020 +4035 4099 0.5010 +4035 4137 0.6320 +4035 4153 0.7910 +4035 4155 0.5410 +4035 4192 0.6640 +4035 4223 0.5630 +4035 4240 0.4280 +4035 4311 0.6520 +4035 4313 0.6960 +4035 4318 0.8890 +4035 4323 0.5550 +4035 4803 0.4500 +4035 4973 0.6850 +4035 5027 0.5440 +4035 5029 0.5160 +4035 5045 0.4060 +4035 5054 0.9880 +4035 5155 0.4470 +4035 5159 0.6440 +4035 5265 0.4360 +4035 5270 0.4320 +4035 5327 0.9870 +4035 5328 0.4670 +4035 5329 0.7180 +4035 5340 0.4770 +4035 5359 0.4060 +4035 5621 0.8060 +4035 5663 0.4620 +4035 5803 0.5290 +4035 6252 0.4120 +4035 6253 0.4230 +4035 6272 0.6500 +4035 6327 0.4060 +4035 6382 0.6800 +4035 6383 0.4700 +4035 6385 0.4840 +4035 6441 0.8900 +4035 6464 0.7720 +4035 6517 0.5150 +4035 6714 0.5170 +4035 6844 0.4370 +4035 7037 0.4770 +4035 7057 0.9580 +4035 7058 0.6990 +4035 7096 0.4950 +4035 7097 0.6970 +4035 7099 0.7740 +4035 7124 0.4770 +4035 7184 0.9960 +4035 7436 0.4730 +4035 7450 0.5840 +4035 8029 0.5910 +4035 8301 0.4030 +4035 8321 0.5000 +4035 8766 0.6110 +4035 9270 0.5100 +4035 9332 0.5270 +4035 9370 0.5290 +4035 9479 0.7780 +4035 9672 0.4810 +4035 9784 0.5530 +4035 9882 0.4680 +4035 10082 0.4220 +4035 10313 0.4290 +4035 10461 0.4410 +4035 22919 0.5270 +4035 23166 0.4630 +4035 23542 0.6630 +4035 23621 0.7740 +4035 25825 0.4970 +4035 26119 0.5990 +4035 28982 0.4050 +4035 29881 0.4570 +4035 50507 0.4350 +4035 50964 0.6370 +4035 51094 0.4090 +4035 51454 0.8990 +4035 51537 0.4140 +4035 55022 0.4650 +4035 55576 0.6070 +4035 55764 0.5670 +4035 57142 0.4020 +4035 64240 0.4870 +4035 64837 0.4370 +4035 79258 0.7130 +4035 79602 0.4220 +4035 83999 0.4610 +4035 89796 0.4220 +4035 89953 0.4270 +4035 91937 0.4180 +4035 116519 0.5360 +4035 140885 0.7730 +4035 147700 0.4220 +4035 221914 0.4100 +4035 255738 0.6060 +4035 340273 0.5190 +4035 375790 0.7500 +4035 376497 0.4120 +4035 440387 0.4750 +4036 4037 0.4170 +4036 4043 0.9940 +4036 4057 0.9680 +4036 4074 0.5970 +4036 4093 0.4360 +4036 4241 0.5890 +4036 4318 0.7350 +4036 4493 0.8710 +4036 4646 0.7010 +4036 4771 0.4170 +4036 4864 0.4100 +4036 4868 0.5940 +4036 4952 0.6060 +4036 5045 0.4310 +4036 5054 0.6880 +4036 5327 0.5780 +4036 5328 0.4350 +4036 5340 0.8530 +4036 5420 0.4390 +4036 5727 0.9320 +4036 5741 0.8840 +4036 5803 0.4310 +4036 5867 0.5630 +4036 5868 0.5850 +4036 5972 0.4860 +4036 6233 0.4990 +4036 6382 0.4690 +4036 6385 0.4500 +4036 6414 0.4510 +4036 6453 0.5310 +4036 6455 0.4990 +4036 6456 0.5220 +4036 6457 0.5210 +4036 6462 0.7090 +4036 6469 0.9920 +4036 6524 0.4220 +4036 6550 0.8010 +4036 6557 0.4500 +4036 6559 0.4280 +4036 6569 0.5010 +4036 6572 0.4990 +4036 6582 0.4770 +4036 6844 0.5090 +4036 6845 0.5130 +4036 6857 0.7040 +4036 6869 0.4990 +4036 6948 0.8040 +4036 7018 0.5360 +4036 7037 0.6840 +4036 7038 0.9660 +4036 7039 0.5470 +4036 7042 0.4340 +4036 7124 0.5610 +4036 7276 0.9050 +4036 7311 0.4990 +4036 7314 0.4990 +4036 7316 0.4990 +4036 7369 0.6060 +4036 7436 0.4200 +4036 7474 0.6020 +4036 7490 0.4960 +4036 7804 0.4650 +4036 7827 0.5900 +4036 7837 0.6340 +4036 8027 0.4990 +4036 8029 0.9990 +4036 8074 0.4680 +4036 8218 0.6040 +4036 8301 0.6660 +4036 8322 0.5660 +4036 8625 0.6310 +4036 8643 0.9240 +4036 8673 0.5000 +4036 8674 0.4990 +4036 9146 0.5670 +4036 9185 0.5040 +4036 9341 0.5160 +4036 9381 0.4990 +4036 9479 0.8200 +4036 9672 0.4060 +4036 9784 0.4500 +4036 9856 0.4990 +4036 9892 0.5920 +4036 10082 0.4100 +4036 10254 0.4990 +4036 10287 0.4750 +4036 10418 0.4900 +4036 10618 0.5340 +4036 10755 0.9610 +4036 11037 0.4990 +4036 11060 0.4220 +4036 11261 0.4930 +4036 11346 0.6010 +4036 22848 0.5200 +4036 22905 0.5350 +4036 22925 0.5130 +4036 23095 0.4120 +4036 23149 0.5260 +4036 23208 0.5220 +4036 23345 0.4980 +4036 23542 0.7290 +4036 23774 0.4200 +4036 25977 0.5170 +4036 26119 0.9800 +4036 29924 0.5310 +4036 29978 0.4990 +4036 29988 0.5090 +4036 30011 0.5050 +4036 50618 0.5310 +4036 50846 0.9180 +4036 50937 0.9240 +4036 51310 0.7150 +4036 51592 0.4200 +4036 55707 0.5170 +4036 55805 0.7020 +4036 57554 0.4590 +4036 57763 0.9970 +4036 58513 0.5230 +4036 64083 0.4290 +4036 81693 0.9980 +4036 83999 0.4430 +4036 84251 0.5040 +4036 85021 0.4990 +4036 85439 0.4990 +4036 90019 0.4990 +4036 91653 0.9160 +4036 115548 0.5000 +4036 116085 0.6200 +4036 120227 0.5760 +4036 127833 0.7110 +4036 128240 0.7150 +4036 137902 0.6330 +4036 143425 0.5290 +4036 221914 0.4160 +4036 221981 0.4460 +4036 255324 0.4990 +4036 284338 0.6390 +4036 375790 0.9140 +4037 4041 0.4170 +4037 4043 0.7510 +4037 8447 0.4430 +4037 10811 0.4470 +4037 23062 0.6080 +4037 26088 0.5670 +4037 29119 0.4010 +4037 84918 0.5600 +4037 90113 0.4090 +4037 163882 0.4560 +4037 401944 0.5080 +4038 4487 0.4510 +4038 4593 0.9990 +4038 4914 0.4230 +4038 5913 0.6420 +4038 6469 0.4140 +4038 7289 0.4100 +4038 7476 0.7510 +4038 7741 0.4530 +4038 8292 0.4890 +4038 10418 0.5030 +4038 22943 0.4240 +4038 23184 0.4360 +4038 29058 0.5120 +4038 50964 0.7180 +4038 83999 0.4980 +4038 84864 0.7830 +4038 84918 0.5240 +4038 148753 0.4650 +4038 222389 0.4200 +4038 285268 0.4560 +4038 285489 0.7030 +4038 375790 0.9990 +4040 4041 0.9990 +4040 4170 0.4200 +4040 4192 0.6320 +4040 4609 0.5990 +4040 4693 0.8860 +4040 4708 0.4240 +4040 4909 0.6660 +4040 4914 0.5430 +4040 4920 0.4590 +4040 5083 0.4700 +4040 5159 0.6400 +4040 5176 0.9410 +4040 5218 0.4380 +4040 5251 0.4020 +4040 5267 0.7770 +4040 5515 0.5510 +4040 5516 0.5110 +4040 5518 0.5140 +4040 5519 0.5320 +4040 5525 0.5390 +4040 5526 0.5040 +4040 5527 0.5120 +4040 5528 0.5200 +4040 5529 0.5310 +4040 5597 0.4400 +4040 5741 0.7250 +4040 5745 0.9830 +4040 5754 0.8190 +4040 5792 0.4740 +4040 5803 0.5030 +4040 6233 0.6300 +4040 6259 0.6380 +4040 6422 0.9010 +4040 6423 0.7970 +4040 6424 0.6930 +4040 6425 0.6090 +4040 6469 0.4160 +4040 6608 0.4010 +4040 6714 0.5990 +4040 6932 0.4220 +4040 6934 0.5090 +4040 7184 0.5700 +4040 7311 0.5010 +4040 7314 0.4990 +4040 7316 0.4990 +4040 7471 0.9990 +4040 7472 0.9820 +4040 7473 0.9870 +4040 7474 0.9530 +4040 7475 0.8980 +4040 7476 0.9870 +4040 7477 0.9530 +4040 7478 0.8980 +4040 7479 0.8650 +4040 7480 0.9810 +4040 7481 0.8620 +4040 7482 0.9340 +4040 7483 0.8090 +4040 7484 0.8980 +4040 7837 0.4010 +4040 7855 0.9760 +4040 7957 0.4290 +4040 7976 0.9130 +4040 8312 0.9990 +4040 8313 0.7820 +4040 8321 0.9760 +4040 8322 0.9990 +4040 8323 0.9590 +4040 8324 0.9890 +4040 8325 0.9940 +4040 8326 0.9200 +4040 8434 0.4630 +4040 8549 0.7370 +4040 8600 0.4840 +4040 8658 0.4960 +4040 8838 0.5930 +4040 8840 0.4210 +4040 8945 0.5400 +4040 9101 0.4470 +4040 9241 0.4930 +4040 9368 0.4030 +4040 10023 0.5250 +4040 10159 0.5430 +4040 10914 0.4240 +4040 11197 0.8170 +4040 11211 0.9300 +4040 22943 0.9990 +4040 23184 0.9130 +4040 23401 0.4850 +4040 23499 0.4430 +4040 23551 0.4430 +4040 23554 0.5790 +4040 25805 0.9630 +4040 25928 0.5770 +4040 25960 0.8050 +4040 26119 0.5000 +4040 27120 0.4490 +4040 27121 0.9990 +4040 27122 0.7180 +4040 27123 0.9990 +4040 29843 0.4230 +4040 50964 0.9990 +4040 51176 0.6830 +4040 51339 0.4610 +4040 51384 0.8820 +4040 51762 0.4610 +4040 53944 0.6270 +4040 54361 0.9120 +4040 54894 0.7960 +4040 55361 0.7020 +4040 55366 0.6310 +4040 56903 0.4220 +4040 57216 0.4220 +4040 59352 0.6440 +4040 64750 0.5240 +4040 64840 0.5470 +4040 64852 0.4310 +4040 64895 0.4400 +4040 65981 0.4390 +4040 79370 0.4990 +4040 79412 0.9090 +4040 79971 0.4230 +4040 80326 0.9140 +4040 80351 0.4720 +4040 81029 0.9010 +4040 83539 0.4310 +4040 83999 0.9970 +4040 84133 0.9240 +4040 84168 0.8700 +4040 84870 0.6520 +4040 89780 0.9990 +4040 118429 0.8760 +4040 120892 0.8640 +4040 121340 0.4330 +4040 128178 0.5020 +4040 130574 0.8240 +4040 130576 0.5450 +4040 139285 0.6870 +4040 219771 0.5240 +4040 284654 0.9590 +4040 340419 0.5220 +4040 374946 0.5790 +4040 375790 0.6660 +4040 378884 0.4260 +4041 4087 0.4060 +4041 4088 0.4010 +4041 4089 0.4100 +4041 4316 0.4120 +4041 4609 0.6260 +4041 4693 0.9980 +4041 4708 0.4360 +4041 4776 0.4890 +4041 4919 0.4590 +4041 4920 0.5450 +4041 4982 0.6690 +4041 5125 0.6700 +4041 5159 0.4980 +4041 5176 0.9330 +4041 5251 0.5390 +4041 5468 0.4250 +4041 5515 0.5600 +4041 5516 0.5110 +4041 5518 0.5270 +4041 5519 0.4990 +4041 5525 0.5250 +4041 5526 0.5170 +4041 5527 0.5080 +4041 5528 0.5370 +4041 5529 0.5500 +4041 5589 0.4090 +4041 5741 0.6580 +4041 5745 0.6280 +4041 5754 0.7260 +4041 6095 0.6640 +4041 6233 0.4990 +4041 6259 0.8620 +4041 6422 0.9100 +4041 6423 0.8860 +4041 6424 0.7240 +4041 6425 0.6780 +4041 6469 0.4490 +4041 6608 0.4660 +4041 6615 0.4030 +4041 6662 0.4510 +4041 6696 0.4530 +4041 6714 0.6360 +4041 6932 0.5000 +4041 6934 0.5370 +4041 7040 0.4230 +4041 7162 0.5000 +4041 7166 0.6220 +4041 7189 0.4150 +4041 7311 0.4990 +4041 7314 0.4990 +4041 7316 0.5140 +4041 7367 0.4300 +4041 7471 0.9990 +4041 7472 0.9820 +4041 7473 0.9950 +4041 7474 0.9930 +4041 7475 0.9360 +4041 7476 0.9960 +4041 7477 0.9800 +4041 7478 0.9010 +4041 7479 0.8750 +4041 7480 0.9970 +4041 7481 0.9460 +4041 7482 0.9470 +4041 7483 0.8960 +4041 7484 0.8940 +4041 7855 0.9550 +4041 7976 0.9390 +4041 8074 0.4300 +4041 8312 0.9990 +4041 8313 0.8540 +4041 8321 0.9980 +4041 8322 0.9990 +4041 8323 0.9520 +4041 8324 0.9420 +4041 8325 0.9740 +4041 8326 0.9240 +4041 8434 0.5000 +4041 8549 0.5560 +4041 8600 0.8000 +4041 8658 0.4960 +4041 8792 0.4310 +4041 8817 0.4040 +4041 8840 0.4620 +4041 8945 0.6170 +4041 9101 0.4360 +4041 9784 0.5010 +4041 9923 0.6820 +4041 10023 0.4250 +4041 10491 0.4690 +4041 11197 0.8650 +4041 11211 0.9360 +4041 22943 0.9990 +4041 23002 0.4260 +4041 23184 0.9350 +4041 23499 0.5940 +4041 23551 0.4540 +4041 23554 0.9850 +4041 25805 0.9160 +4041 25928 0.8800 +4041 25960 0.9080 +4041 26168 0.4260 +4041 27120 0.8100 +4041 27121 0.9990 +4041 27122 0.9640 +4041 27123 0.9990 +4041 29843 0.4260 +4041 50964 0.9990 +4041 51176 0.7280 +4041 51343 0.4530 +4041 51384 0.9190 +4041 51701 0.5740 +4041 54361 0.9410 +4041 54894 0.8810 +4041 55366 0.7740 +4041 56955 0.4310 +4041 56998 0.5590 +4041 57154 0.5110 +4041 57216 0.4170 +4041 59352 0.4220 +4041 60681 0.4340 +4041 64175 0.4350 +4041 64750 0.5190 +4041 64840 0.5580 +4041 65981 0.8210 +4041 79412 0.9060 +4041 79797 0.6460 +4041 79971 0.6920 +4041 80320 0.6810 +4041 80326 0.9310 +4041 80351 0.6160 +4041 81029 0.8630 +4041 83439 0.4280 +4041 83539 0.4380 +4041 83999 0.9950 +4041 84133 0.8810 +4041 84168 0.4880 +4041 84870 0.4920 +4041 85407 0.4260 +4041 89780 0.9990 +4041 118429 0.4420 +4041 120892 0.7360 +4041 121340 0.8370 +4041 139285 0.7160 +4041 147111 0.4130 +4041 147495 0.9910 +4041 153769 0.4590 +4041 161882 0.4110 +4041 171017 0.4140 +4041 284654 0.9610 +4041 340419 0.5190 +4041 374946 0.4990 +4041 375790 0.6930 +4041 387733 0.4280 +4041 643418 0.8720 +4041 100131390 0.5820 +4043 4301 0.5940 +4043 5547 0.5270 +4043 5566 0.4780 +4043 5567 0.4750 +4043 5568 0.4750 +4043 5861 0.4830 +4043 5863 0.4480 +4043 5877 0.7190 +4043 5894 0.7890 +4043 5898 0.8810 +4043 5900 0.9960 +4043 5906 0.8450 +4043 5908 0.8250 +4043 5909 0.5910 +4043 5911 0.8320 +4043 5912 0.5220 +4043 5921 0.6910 +4043 6002 0.6740 +4043 6237 0.7190 +4043 6272 0.8410 +4043 6653 0.9110 +4043 7187 0.4390 +4043 7436 0.8460 +4043 7804 0.8970 +4043 9230 0.6110 +4043 9545 0.7090 +4043 9693 0.5760 +4043 9997 0.5170 +4043 10235 0.4470 +4043 10411 0.9010 +4043 10636 0.8190 +4043 10900 0.5420 +4043 10961 0.4440 +4043 11021 0.5900 +4043 11069 0.9500 +4043 22808 0.4850 +4043 22941 0.4540 +4043 23077 0.8510 +4043 23179 0.5040 +4043 23184 0.4330 +4043 26037 0.4870 +4043 26119 0.4100 +4043 51655 0.4190 +4043 51735 0.4470 +4043 53353 0.5280 +4043 54518 0.4350 +4043 54922 0.7830 +4043 55214 0.5650 +4043 55788 0.4300 +4043 56243 0.4460 +4043 57826 0.4690 +4043 64411 0.4160 +4043 81502 0.4440 +4043 81876 0.6030 +4043 84146 0.6240 +4043 84458 0.4500 +4043 85358 0.6690 +4043 133482 0.7770 +4043 253959 0.8130 +4043 283375 0.5920 +4045 4897 0.4130 +4045 5621 0.5820 +4045 5797 0.4420 +4045 6507 0.4460 +4045 6855 0.4790 +4045 7070 0.4350 +4045 22871 0.4300 +4045 50863 0.4030 +4045 51440 0.4130 +4045 54413 0.4380 +4045 55172 0.4220 +4045 64067 0.4590 +4045 79012 0.4530 +4045 85329 0.4190 +4045 149281 0.4270 +4045 196740 0.5180 +4045 257194 0.4100 +4045 347730 0.4360 +4046 4214 0.7610 +4046 4542 0.4120 +4046 5788 0.4540 +4046 5888 0.4120 +4046 5890 0.7030 +4046 5894 0.9000 +4046 6304 0.4130 +4046 6688 0.4300 +4046 7111 0.4320 +4046 7136 0.4170 +4046 7140 0.4130 +4046 8676 0.4120 +4046 8844 0.9970 +4046 9261 0.9670 +4046 9497 0.7430 +4046 9641 0.9430 +4046 10332 0.9020 +4046 10859 0.8300 +4046 10884 0.5050 +4046 23365 0.9190 +4046 25829 0.4190 +4046 27324 0.8920 +4046 29767 0.5990 +4046 30835 0.9910 +4046 50489 0.4920 +4046 64005 0.4390 +4046 64581 0.9160 +4046 79728 0.5480 +4046 85477 0.4650 +4046 91624 0.5190 +4046 145173 0.5480 +4046 152110 0.7390 +4046 252983 0.4130 +4046 339229 0.4550 +4046 374354 0.4730 +4047 4051 0.4950 +4047 4597 0.9180 +4047 4598 0.8170 +4047 5740 0.7790 +4047 6307 0.9580 +4047 6309 0.9890 +4047 6319 0.5120 +4047 6469 0.5400 +4047 6713 0.9990 +4047 6720 0.8570 +4047 6721 0.9140 +4047 7108 0.7790 +4047 7264 0.4690 +4047 8529 0.4950 +4047 8564 0.7300 +4047 9023 0.9000 +4047 9420 0.8120 +4047 9453 0.8370 +4047 9524 0.4610 +4047 9853 0.6380 +4047 10280 0.4160 +4047 10449 0.5080 +4047 10654 0.7360 +4047 10682 0.7330 +4047 10826 0.8760 +4047 10857 0.4110 +4047 10858 0.6320 +4047 11161 0.9770 +4047 11283 0.4960 +4047 11343 0.5630 +4047 22937 0.4170 +4047 23590 0.5900 +4047 23623 0.7130 +4047 25953 0.4730 +4047 26166 0.6400 +4047 27235 0.7560 +4047 27430 0.6900 +4047 29914 0.4430 +4047 50814 0.9570 +4047 51004 0.7300 +4047 51110 0.4140 +4047 51167 0.4120 +4047 51179 0.5920 +4047 51302 0.8030 +4047 51478 0.9920 +4047 51725 0.6710 +4047 54363 0.5920 +4047 55902 0.4340 +4047 56603 0.5050 +4047 57107 0.5900 +4047 57404 0.4780 +4047 57412 0.6400 +4047 57834 0.4950 +4047 65985 0.5250 +4047 66002 0.4950 +4047 80146 0.4680 +4047 80270 0.8240 +4047 80347 0.4140 +4047 91734 0.9530 +4047 93517 0.7660 +4047 126410 0.5200 +4047 132949 0.5430 +4047 137682 0.4730 +4047 196410 0.4270 +4047 199974 0.4950 +4047 260293 0.4950 +4047 284541 0.5230 +4047 285440 0.5510 +4047 286151 0.6400 +4047 340390 0.4730 +4047 347475 0.7690 +4048 4051 0.9360 +4048 4056 0.9920 +4048 4360 0.5260 +4048 4363 0.5950 +4048 4843 0.4570 +4048 5320 0.7450 +4048 5321 0.6320 +4048 5550 0.4480 +4048 5742 0.5420 +4048 5743 0.4550 +4048 6362 0.4470 +4048 6556 0.5060 +4048 6873 0.4130 +4048 7097 0.4500 +4048 7124 0.4080 +4048 7141 0.4220 +4048 7180 0.5910 +4048 7429 0.4490 +4048 8529 0.9200 +4048 9536 0.5210 +4048 10289 0.4570 +4048 10321 0.5500 +4048 10800 0.6940 +4048 22949 0.4960 +4048 23406 0.6820 +4048 28998 0.4900 +4048 54802 0.8860 +4048 55748 0.4300 +4048 56413 0.8920 +4048 56729 0.4860 +4048 57105 0.6680 +4048 57213 0.5060 +4048 64174 0.4120 +4048 80142 0.4090 +4048 84666 0.4610 +4048 144811 0.5090 +4048 151056 0.4710 +4048 160857 0.4930 +4048 259307 0.6040 +4049 4050 0.9990 +4049 4055 0.9990 +4049 4240 0.4870 +4049 4277 0.6390 +4049 4283 0.6140 +4049 4318 0.4350 +4049 4790 0.4890 +4049 4791 0.6010 +4049 4795 0.7650 +4049 4803 0.4550 +4049 5551 0.4990 +4049 5682 0.4080 +4049 5684 0.4080 +4049 5685 0.4100 +4049 5686 0.4090 +4049 5687 0.4470 +4049 5688 0.4080 +4049 5689 0.4080 +4049 5690 0.4520 +4049 5691 0.4080 +4049 5693 0.4140 +4049 5694 0.4600 +4049 5695 0.4080 +4049 5696 0.4790 +4049 5698 0.5450 +4049 5699 0.4280 +4049 5701 0.4130 +4049 5714 0.4010 +4049 5720 0.4140 +4049 5721 0.4150 +4049 5788 0.6510 +4049 5971 0.6330 +4049 6320 0.5420 +4049 6347 0.6680 +4049 6348 0.7370 +4049 6351 0.7360 +4049 6354 0.6260 +4049 6356 0.7160 +4049 6357 0.5170 +4049 6361 0.5620 +4049 6363 0.5880 +4049 6364 0.5150 +4049 6366 0.6210 +4049 6367 0.6040 +4049 6374 0.4300 +4049 6376 0.5850 +4049 6387 0.5050 +4049 6402 0.4270 +4049 6614 0.4670 +4049 7039 0.5700 +4049 7040 0.5050 +4049 7099 0.4650 +4049 7124 0.9840 +4049 7132 0.9990 +4049 7133 0.9990 +4049 7157 0.5610 +4049 7186 0.6370 +4049 7187 0.6710 +4049 7292 0.4260 +4049 7293 0.4790 +4049 7412 0.5440 +4049 7919 0.4280 +4049 7920 0.6920 +4049 7940 0.7600 +4049 8174 0.4470 +4049 8600 0.8480 +4049 8718 0.4140 +4049 8737 0.4100 +4049 8740 0.8220 +4049 8742 0.7880 +4049 8743 0.4440 +4049 8764 0.9990 +4049 8792 0.5820 +4049 8797 0.5630 +4049 9020 0.7410 +4049 10344 0.5070 +4049 10563 0.7510 +4049 10578 0.4520 +4049 10673 0.7340 +4049 10850 0.5450 +4049 10870 0.5190 +4049 11126 0.5310 +4049 22914 0.7060 +4049 26279 0.4480 +4049 29126 0.4080 +4049 29851 0.4700 +4049 30009 0.4850 +4049 50616 0.6190 +4049 50943 0.4680 +4049 51330 0.5840 +4049 54106 0.4040 +4049 55856 0.4220 +4049 79465 0.5030 +4049 80328 0.5010 +4049 80329 0.5180 +4049 90865 0.4040 +4049 112744 0.6620 +4049 115650 0.6770 +4049 122706 0.4110 +4049 123803 0.5060 +4049 143471 0.4240 +4049 151888 0.5740 +4049 203068 0.4340 +4049 221527 0.4590 +4049 246330 0.4220 +4049 259197 0.6130 +4049 386653 0.5740 +4050 4055 0.9990 +4050 4240 0.4410 +4050 4790 0.6240 +4050 4791 0.7940 +4050 4792 0.4550 +4050 4794 0.4430 +4050 4795 0.5780 +4050 5687 0.4010 +4050 5689 0.4010 +4050 5691 0.4010 +4050 5693 0.4180 +4050 5694 0.4280 +4050 5696 0.4990 +4050 5698 0.5140 +4050 5699 0.4750 +4050 5705 0.4030 +4050 5720 0.4160 +4050 5721 0.4150 +4050 5788 0.5590 +4050 5790 0.5680 +4050 5966 0.4940 +4050 5970 0.5110 +4050 5971 0.8280 +4050 6351 0.4330 +4050 6363 0.6520 +4050 6366 0.6530 +4050 6402 0.4540 +4050 7124 0.7070 +4050 7132 0.8030 +4050 7133 0.8740 +4050 7186 0.5840 +4050 7187 0.8230 +4050 7412 0.4350 +4050 7940 0.8300 +4050 8174 0.5080 +4050 8517 0.4500 +4050 8600 0.7600 +4050 8698 0.4990 +4050 8740 0.7500 +4050 8742 0.7420 +4050 8743 0.5040 +4050 8764 0.8200 +4050 8771 0.5400 +4050 8792 0.5910 +4050 9020 0.7760 +4050 10189 0.4070 +4050 10563 0.6680 +4050 10673 0.8520 +4050 11151 0.4140 +4050 23495 0.4810 +4050 25928 0.4700 +4050 27074 0.4140 +4050 27121 0.4390 +4050 27242 0.4080 +4050 29851 0.4570 +4050 30009 0.4420 +4050 50616 0.4190 +4050 51330 0.6210 +4050 84957 0.4010 +4050 91937 0.4700 +4050 115650 0.8260 +4050 118461 0.4830 +4050 122706 0.4300 +4050 123803 0.5710 +4050 143471 0.4160 +4050 151888 0.4180 +4050 259197 0.6600 +4051 4552 0.8090 +4051 5319 0.6730 +4051 5320 0.6560 +4051 5321 0.7090 +4051 5322 0.6500 +4051 5324 0.4120 +4051 5447 0.9510 +4051 5742 0.9130 +4051 5743 0.9460 +4051 6307 0.4150 +4051 6713 0.4950 +4051 7365 0.4290 +4051 8293 0.4160 +4051 8398 0.6790 +4051 8399 0.6680 +4051 8529 0.9770 +4051 8605 0.6650 +4051 8681 0.6500 +4051 9023 0.4150 +4051 9360 0.7310 +4051 10826 0.4260 +4051 10936 0.5220 +4051 11145 0.6640 +4051 11283 0.9060 +4051 23552 0.4100 +4051 26279 0.6500 +4051 27158 0.8750 +4051 29785 0.4660 +4051 30814 0.6810 +4051 50487 0.6950 +4051 54575 0.5190 +4051 54576 0.5520 +4051 54577 0.5150 +4051 54578 0.5580 +4051 54579 0.4010 +4051 54600 0.4760 +4051 54657 0.5170 +4051 54658 0.5120 +4051 54659 0.5120 +4051 54905 0.4630 +4051 64600 0.6500 +4051 64816 0.4340 +4051 80777 0.6150 +4051 81579 0.6960 +4051 84647 0.6790 +4051 113612 0.9450 +4051 123745 0.6930 +4051 132949 0.5460 +4051 151056 0.6760 +4051 255189 0.6820 +4051 283748 0.6770 +4051 284541 0.9140 +4051 348938 0.6110 +4051 391013 0.6910 +4051 100137049 0.6820 +4052 4053 0.7860 +4052 4054 0.7740 +4052 4087 0.6810 +4052 4088 0.4570 +4052 4091 0.4410 +4052 4092 0.4550 +4052 4237 0.5600 +4052 4239 0.5470 +4052 4313 0.6220 +4052 4314 0.5840 +4052 4323 0.4080 +4052 4854 0.4050 +4052 4904 0.4470 +4052 5118 0.6220 +4052 5467 0.4030 +4052 5530 0.4620 +4052 5654 0.4140 +4052 6655 0.4120 +4052 7040 0.9990 +4052 7042 0.9780 +4052 7043 0.9840 +4052 7046 0.4890 +4052 7048 0.4630 +4052 7057 0.9670 +4052 7078 0.6010 +4052 8425 0.6630 +4052 8516 0.5900 +4052 9509 0.4830 +4052 9719 0.9560 +4052 10631 0.6390 +4052 11174 0.5720 +4052 30008 0.7220 +4052 54507 0.5690 +4052 56975 0.6590 +4052 57188 0.5010 +4052 81794 0.8760 +4052 84695 0.4640 +4052 115908 0.5030 +4052 170691 0.5320 +4053 4054 0.4930 +4053 4092 0.4050 +4053 4237 0.6790 +4053 4239 0.4950 +4053 4313 0.5560 +4053 4487 0.6410 +4053 4624 0.4340 +4053 4629 0.4250 +4053 4653 0.6810 +4053 4776 0.4060 +4053 5083 0.7000 +4053 6640 0.4020 +4053 7040 0.9590 +4053 7041 0.4780 +4053 7042 0.9410 +4053 7043 0.7400 +4053 7045 0.5050 +4053 7048 0.4310 +4053 7057 0.4770 +4053 7058 0.4340 +4053 7076 0.5620 +4053 7077 0.4090 +4053 7078 0.4770 +4053 8076 0.6590 +4053 8425 0.6990 +4053 9358 0.4870 +4053 9719 0.4960 +4053 10220 0.6210 +4053 10516 0.8810 +4053 10631 0.6160 +4053 11117 0.4760 +4053 51226 0.4540 +4053 51450 0.4050 +4053 54507 0.5590 +4053 54828 0.4070 +4053 55237 0.4610 +4053 55750 0.4270 +4053 60681 0.4530 +4053 63906 0.4140 +4053 80326 0.7510 +4053 81031 0.5610 +4053 81794 0.7920 +4053 84627 0.4250 +4053 84913 0.4030 +4053 92106 0.4010 +4053 136371 0.5730 +4053 151887 0.4260 +4053 170691 0.5780 +4053 401036 0.4040 +4054 4092 0.4370 +4054 4237 0.5410 +4054 4239 0.4440 +4054 4296 0.4570 +4054 4313 0.5230 +4054 4487 0.6520 +4054 4653 0.5890 +4054 5083 0.7100 +4054 7040 0.9960 +4054 7042 0.9910 +4054 7043 0.9500 +4054 7076 0.5370 +4054 7480 0.4560 +4054 8425 0.7280 +4054 8516 0.5680 +4054 9719 0.5150 +4054 10117 0.4540 +4054 10220 0.6410 +4054 10272 0.4230 +4054 10516 0.7120 +4054 11117 0.4080 +4054 23625 0.5000 +4054 54507 0.5250 +4054 55237 0.4150 +4054 79026 0.4750 +4054 80326 0.7930 +4054 81031 0.4320 +4054 81794 0.7590 +4054 123041 0.4130 +4054 128178 0.4830 +4054 170691 0.4850 +4054 286077 0.4240 +4054 401138 0.4420 +4055 4240 0.5860 +4055 4314 0.4140 +4055 4609 0.4840 +4055 4790 0.6960 +4055 4791 0.9010 +4055 4792 0.6470 +4055 4851 0.4030 +4055 4957 0.4220 +4055 5621 0.4010 +4055 5682 0.4080 +4055 5684 0.4090 +4055 5685 0.4260 +4055 5686 0.4080 +4055 5687 0.4200 +4055 5688 0.4220 +4055 5689 0.4130 +4055 5690 0.4080 +4055 5691 0.4080 +4055 5692 0.4180 +4055 5693 0.4380 +4055 5694 0.4340 +4055 5695 0.4520 +4055 5696 0.4950 +4055 5698 0.4710 +4055 5699 0.4620 +4055 5700 0.4090 +4055 5701 0.4080 +4055 5702 0.4070 +4055 5704 0.4280 +4055 5705 0.4050 +4055 5706 0.4070 +4055 5708 0.4010 +4055 5709 0.4120 +4055 5713 0.4280 +4055 5715 0.4080 +4055 5717 0.4350 +4055 5718 0.4250 +4055 5720 0.4210 +4055 5721 0.4110 +4055 5788 0.4690 +4055 5966 0.5330 +4055 5970 0.6250 +4055 5971 0.8750 +4055 6363 0.7340 +4055 6366 0.6800 +4055 6387 0.4540 +4055 6497 0.4380 +4055 6774 0.5900 +4055 7124 0.9600 +4055 7132 0.8410 +4055 7133 0.8720 +4055 7185 0.7540 +4055 7186 0.9870 +4055 7187 0.9990 +4055 7188 0.9960 +4055 7189 0.6250 +4055 7293 0.4960 +4055 7412 0.4920 +4055 7424 0.5000 +4055 8174 0.7140 +4055 8517 0.7770 +4055 8600 0.7780 +4055 8717 0.4010 +4055 8718 0.5820 +4055 8740 0.9990 +4055 8742 0.7280 +4055 8764 0.5640 +4055 8767 0.4010 +4055 8771 0.4850 +4055 8784 0.5810 +4055 8792 0.5740 +4055 8795 0.4790 +4055 8995 0.5450 +4055 9020 0.9680 +4055 9055 0.4570 +4055 9146 0.4420 +4055 9448 0.4790 +4055 9618 0.4800 +4055 9641 0.5590 +4055 9966 0.6540 +4055 10010 0.5250 +4055 10014 0.4560 +4055 10189 0.5220 +4055 10197 0.4290 +4055 10563 0.6620 +4055 10616 0.5050 +4055 10630 0.4890 +4055 10673 0.9120 +4055 23137 0.4150 +4055 23370 0.5610 +4055 23495 0.4430 +4055 26010 0.4310 +4055 27141 0.4370 +4055 29070 0.4700 +4055 50616 0.4080 +4055 50863 0.4270 +4055 51094 0.4370 +4055 51283 0.6170 +4055 51330 0.7400 +4055 51567 0.4050 +4055 55022 0.4280 +4055 55504 0.5270 +4055 57506 0.4910 +4055 60401 0.4120 +4055 79635 0.4200 +4055 80149 0.4730 +4055 80342 0.4450 +4055 81858 0.4570 +4055 84260 0.4650 +4055 84957 0.6020 +4055 90326 0.4200 +4055 93594 0.4760 +4055 115650 0.9670 +4055 122706 0.5900 +4055 123803 0.6030 +4055 143471 0.4080 +4055 151888 0.4060 +4055 153733 0.4410 +4056 4257 0.9320 +4056 4259 0.8960 +4056 4363 0.6820 +4056 5321 0.6070 +4056 5730 0.4310 +4056 5732 0.5790 +4056 5734 0.6270 +4056 5742 0.7090 +4056 6363 0.4430 +4056 6915 0.5110 +4056 8328 0.4200 +4056 8370 0.5820 +4056 8644 0.4430 +4056 9536 0.8700 +4056 10800 0.9460 +4056 11251 0.4620 +4056 23406 0.5230 +4056 25988 0.5540 +4056 27199 0.5880 +4056 27306 0.4880 +4056 30009 0.4350 +4056 56413 0.8720 +4056 57105 0.9300 +4056 64174 0.4190 +4056 80758 0.4650 +4056 83463 0.4150 +4056 140876 0.4190 +4056 646892 0.4160 +4057 4069 0.9010 +4057 4151 0.7070 +4057 4153 0.5130 +4057 4240 0.8260 +4057 4246 0.4440 +4057 4313 0.5430 +4057 4314 0.5170 +4057 4317 0.8300 +4057 4318 0.7680 +4057 4325 0.4110 +4057 4353 0.9980 +4057 4586 0.4680 +4057 4589 0.8630 +4057 4680 0.4390 +4057 4691 0.8360 +4057 4878 0.5920 +4057 4891 0.5380 +4057 4907 0.4180 +4057 5004 0.7150 +4057 5005 0.4630 +4057 5265 0.6540 +4057 5266 0.4390 +4057 5284 0.8380 +4057 5304 0.7350 +4057 5328 0.4570 +4057 5340 0.5100 +4057 5354 0.4940 +4057 5552 0.4700 +4057 5589 0.4340 +4057 5610 0.4140 +4057 5617 0.7710 +4057 5621 0.4310 +4057 5657 0.9860 +4057 5743 0.4010 +4057 5788 0.4960 +4057 5806 0.6360 +4057 5867 0.4400 +4057 6036 0.4310 +4057 6037 0.5650 +4057 6278 0.4960 +4057 6279 0.7010 +4057 6280 0.6660 +4057 6283 0.6270 +4057 6288 0.5800 +4057 6347 0.4320 +4057 6402 0.4620 +4057 6403 0.4070 +4057 6406 0.9630 +4057 6441 0.5460 +4057 6462 0.4120 +4057 6513 0.4220 +4057 6556 0.6350 +4057 6590 0.8110 +4057 6622 0.5940 +4057 6677 0.4050 +4057 6690 0.4990 +4057 6696 0.7720 +4057 6779 0.6050 +4057 6947 0.8610 +4057 6948 0.8400 +4057 7036 0.4470 +4057 7037 0.8890 +4057 7042 0.5310 +4057 7045 0.7050 +4057 7086 0.4600 +4057 7097 0.6890 +4057 7099 0.8270 +4057 7124 0.6270 +4057 7157 0.5590 +4057 7276 0.8030 +4057 7448 0.4100 +4057 7837 0.5050 +4057 8029 0.4650 +4057 8277 0.4810 +4057 8290 0.4980 +4057 8337 0.5200 +4057 8338 0.5210 +4057 8349 0.5300 +4057 8356 0.5010 +4057 8993 0.7810 +4057 9445 0.4500 +4057 9474 0.4440 +4057 10321 0.5610 +4057 10384 0.5900 +4057 10385 0.5970 +4057 10536 0.4950 +4057 10562 0.8120 +4057 10648 0.4110 +4057 10917 0.5920 +4057 11118 0.5730 +4057 11119 0.5620 +4057 11120 0.5820 +4057 11272 0.4470 +4057 23114 0.4370 +4057 23491 0.4610 +4057 23569 0.6460 +4057 26119 0.6660 +4057 30061 0.4380 +4057 30816 0.7190 +4057 30835 0.7660 +4057 50506 0.5410 +4057 51185 0.4540 +4057 51297 0.7350 +4057 51310 0.5430 +4057 51599 0.4760 +4057 53905 0.5460 +4057 55423 0.4280 +4057 55600 0.9720 +4057 56729 0.6140 +4057 57119 0.9040 +4057 57126 0.6880 +4057 57506 0.4650 +4057 57817 0.6130 +4057 58477 0.5570 +4057 59272 0.6240 +4057 64184 0.4120 +4057 64581 0.4910 +4057 79672 0.4470 +4057 79908 0.5950 +4057 84076 0.4610 +4057 84569 0.7620 +4057 84659 0.4180 +4057 84666 0.5040 +4057 90070 0.7450 +4057 92747 0.4350 +4057 114625 0.5930 +4057 117159 0.4880 +4057 124912 0.4630 +4057 130940 0.4280 +4057 137902 0.4840 +4057 140596 0.5970 +4057 140885 0.6370 +4057 142683 0.6920 +4057 153579 0.5740 +4057 221223 0.4790 +4057 405754 0.7190 +4057 414325 0.5410 +4057 440093 0.4950 +4057 440387 0.4310 +4057 440686 0.4950 +4057 493869 0.4250 +4057 653499 0.4080 +4057 653509 0.7430 +4057 653604 0.4970 +4057 727897 0.7880 +4057 728358 0.6080 +4057 729238 0.7250 +4057 100289462 0.4750 +4058 5295 0.7810 +4058 5797 0.4370 +4058 6464 0.5230 +4058 10188 0.5980 +4058 27436 0.4070 +4058 285016 0.9050 +4058 389658 0.9840 +4059 7329 0.5480 +4059 8425 0.4190 +4059 11275 0.6250 +4059 27255 0.7920 +4059 57106 0.4300 +4059 57595 0.7490 +4059 151112 0.5250 +4060 4147 0.6940 +4060 4148 0.6730 +4060 4166 0.9070 +4060 4193 0.9030 +4060 4233 0.4540 +4060 4237 0.5690 +4060 4239 0.7320 +4060 4256 0.4980 +4060 4312 0.5120 +4060 4313 0.7800 +4060 4314 0.5430 +4060 4318 0.4790 +4060 4321 0.4120 +4060 4322 0.4920 +4060 4323 0.7700 +4060 4325 0.4440 +4060 4345 0.4120 +4060 4684 0.6160 +4060 4739 0.4090 +4060 4811 0.4850 +4060 4921 0.5680 +4060 4958 0.7420 +4060 4969 0.8590 +4060 4974 0.4680 +4060 5034 0.5040 +4060 5118 0.5820 +4060 5156 0.6260 +4060 5159 0.4940 +4060 5176 0.4880 +4060 5327 0.4140 +4060 5396 0.4480 +4060 5510 0.4790 +4060 5549 0.7710 +4060 5552 0.4250 +4060 5645 0.4310 +4060 5793 0.4180 +4060 5836 0.4300 +4060 5899 0.4040 +4060 5908 0.4030 +4060 5950 0.5530 +4060 6281 0.4770 +4060 6382 0.4660 +4060 6387 0.5170 +4060 6414 0.4780 +4060 6423 0.4580 +4060 6591 0.4170 +4060 6657 0.4130 +4060 6678 0.9540 +4060 6696 0.6440 +4060 6876 0.5540 +4060 7040 0.7520 +4060 7042 0.8080 +4060 7043 0.6710 +4060 7045 0.5740 +4060 7046 0.5870 +4060 7048 0.4470 +4060 7057 0.5410 +4060 7058 0.8260 +4060 7060 0.4970 +4060 7076 0.6590 +4060 7078 0.5630 +4060 7099 0.5590 +4060 7123 0.4070 +4060 7124 0.5640 +4060 7148 0.5150 +4060 7373 0.7260 +4060 7412 0.4210 +4060 7431 0.4560 +4060 7448 0.4490 +4060 7450 0.4080 +4060 8076 0.5020 +4060 8406 0.6100 +4060 8407 0.5190 +4060 8483 0.6020 +4060 8534 0.8470 +4060 8702 0.4720 +4060 8703 0.4200 +4060 8704 0.4160 +4060 8785 0.6710 +4060 8974 0.4620 +4060 9334 0.4370 +4060 9358 0.4590 +4060 9435 0.6380 +4060 9469 0.7590 +4060 9507 0.4520 +4060 9508 0.4390 +4060 9509 0.4760 +4060 9564 0.4620 +4060 10164 0.4450 +4060 10216 0.4230 +4060 10331 0.4030 +4060 10516 0.6840 +4060 10537 0.4220 +4060 10631 0.9130 +4060 10678 0.4690 +4060 11081 0.8060 +4060 11328 0.4010 +4060 22795 0.5180 +4060 22859 0.5140 +4060 22918 0.4520 +4060 23213 0.5290 +4060 23266 0.5250 +4060 23284 0.5180 +4060 23563 0.8290 +4060 25878 0.4390 +4060 26002 0.4540 +4060 27233 0.7290 +4060 27284 0.7250 +4060 50509 0.9290 +4060 50848 0.4130 +4060 54829 0.6640 +4060 55222 0.4550 +4060 55227 0.5160 +4060 55379 0.4620 +4060 55631 0.6300 +4060 57124 0.4500 +4060 57470 0.4690 +4060 60681 0.4230 +4060 63827 0.6530 +4060 64102 0.5220 +4060 79442 0.5190 +4060 79633 0.4390 +4060 80781 0.4020 +4060 83468 0.4220 +4060 84467 0.6440 +4060 85301 0.4560 +4060 93010 0.5150 +4060 115908 0.4930 +4060 116064 0.5100 +4060 118738 0.4990 +4060 122769 0.5790 +4060 123355 0.4960 +4060 131578 0.4300 +4060 151887 0.4430 +4060 169044 0.4820 +4060 220416 0.4420 +4060 255252 0.5190 +4060 339291 0.5120 +4060 375790 0.4130 +4060 376132 0.5200 +4060 390205 0.5200 +4060 442038 0.7290 +4060 474354 0.5140 +4061 4599 0.7680 +4061 4600 0.5330 +4061 4938 0.8140 +4061 4939 0.6520 +4061 4940 0.7400 +4061 5359 0.4830 +4061 5610 0.5690 +4061 6224 0.4520 +4061 6614 0.5080 +4061 6772 0.5280 +4061 6773 0.4210 +4061 7512 0.4300 +4061 8000 0.8970 +4061 8519 0.6140 +4061 8638 0.6280 +4061 9246 0.4120 +4061 9636 0.7750 +4061 10379 0.4480 +4061 10410 0.7170 +4061 10561 0.7580 +4061 10581 0.4950 +4061 10964 0.8370 +4061 11274 0.6020 +4061 23586 0.4420 +4061 24138 0.4250 +4061 26010 0.4950 +4061 30816 0.5220 +4061 51191 0.6860 +4061 54739 0.6170 +4061 54742 0.5130 +4061 54855 0.4460 +4061 55008 0.5650 +4061 55601 0.5600 +4061 56005 0.4530 +4061 57152 0.6520 +4061 58530 0.4750 +4061 64108 0.5580 +4061 64135 0.4690 +4061 83666 0.4780 +4061 83942 0.4040 +4061 89765 0.6560 +4061 91543 0.7240 +4061 94240 0.6850 +4061 129607 0.4860 +4061 137797 0.6250 +4061 255231 0.5090 +4061 405754 0.4040 +4061 440400 0.4420 +4061 100169851 0.4070 +4061 101928108 0.4710 +4062 7042 0.4630 +4062 8000 0.5070 +4062 54742 0.7380 +4062 57152 0.7210 +4062 58496 0.4760 +4062 58530 0.5430 +4062 66004 0.8070 +4062 79608 0.5240 +4062 80740 0.4720 +4062 80741 0.4330 +4062 83482 0.4260 +4062 90441 0.4370 +4062 114800 0.4470 +4062 128434 0.4110 +4062 130574 0.7130 +4062 130576 0.6150 +4062 137797 0.7150 +4062 147719 0.6450 +4062 160065 0.4990 +4062 171169 0.5470 +4062 259215 0.4330 +4062 284348 0.5700 +4062 338328 0.6720 +4062 390940 0.5430 +4062 399967 0.5700 +4062 399968 0.5440 +4062 100169851 0.5930 +4063 4068 0.9800 +4063 5597 0.4770 +4063 5781 0.6860 +4063 5788 0.5420 +4063 6504 0.7060 +4063 6714 0.5130 +4063 6846 0.4380 +4063 7409 0.5430 +4063 7535 0.4470 +4063 8832 0.4620 +4063 9046 0.5390 +4063 9214 0.4500 +4063 9437 0.5310 +4063 10225 0.4100 +4063 22914 0.4490 +4063 26191 0.5080 +4063 29121 0.4310 +4063 50615 0.4130 +4063 51744 0.5360 +4063 54675 0.4470 +4063 54900 0.5140 +4063 55507 0.4030 +4063 56833 0.6740 +4063 57823 0.4520 +4063 83416 0.4670 +4063 84247 0.4090 +4063 114836 0.7640 +4063 117157 0.9390 +4063 149628 0.4690 +4063 151888 0.4070 +4063 340152 0.4780 +4064 4599 0.4870 +4064 4600 0.4960 +4064 4609 0.4220 +4064 5788 0.4200 +4064 6280 0.5110 +4064 6688 0.5210 +4064 6693 0.4180 +4064 7096 0.5680 +4064 7097 0.8710 +4064 7099 0.9040 +4064 8832 0.5160 +4064 9450 0.9990 +4064 22859 0.5210 +4064 23098 0.4690 +4064 23266 0.5210 +4064 23284 0.5210 +4064 23586 0.5000 +4064 23643 0.9230 +4064 27069 0.5520 +4064 29760 0.4870 +4064 50508 0.4560 +4064 51284 0.5270 +4064 57763 0.4480 +4064 59307 0.4280 +4064 79132 0.4320 +4064 83416 0.4380 +4064 89885 0.4760 +4064 130074 0.4130 +4064 254427 0.5390 +4064 283420 0.5500 +4064 441168 0.4470 +4065 4072 0.4080 +4065 4277 0.4170 +4065 4684 0.5660 +4065 4973 0.4490 +4065 5551 0.5900 +4065 5788 0.6890 +4065 6382 0.4300 +4065 6402 0.4480 +4065 6614 0.4670 +4065 7056 0.6090 +4065 7096 0.4350 +4065 7097 0.4940 +4065 7098 0.5800 +4065 7099 0.6860 +4065 7100 0.4050 +4065 7124 0.5120 +4065 7507 0.4400 +4065 8456 0.4400 +4065 8553 0.4470 +4065 8764 0.4040 +4065 8829 0.4190 +4065 9308 0.6310 +4065 9332 0.4290 +4065 9436 0.5390 +4065 9437 0.5320 +4065 9936 0.5550 +4065 10232 0.4070 +4065 10279 0.4690 +4065 10457 0.4360 +4065 10803 0.4240 +4065 10870 0.4200 +4065 22914 0.4770 +4065 23601 0.5580 +4065 27074 0.5460 +4065 29126 0.4640 +4065 30835 0.8680 +4065 50489 0.7870 +4065 50616 0.4370 +4065 50856 0.8770 +4065 50943 0.6630 +4065 51284 0.5620 +4065 51311 0.4450 +4065 54106 0.6750 +4065 55509 0.5950 +4065 64581 0.7390 +4065 65258 0.5950 +4065 80381 0.4330 +4065 85457 0.4290 +4065 122706 0.5880 +4065 140685 0.4630 +4065 140885 0.5950 +4065 160364 0.5160 +4065 170482 0.5720 +4065 259197 0.5180 +4065 283420 0.7910 +4065 100133941 0.4180 +4066 4208 0.4520 +4066 4211 0.4560 +4066 4778 0.4580 +4066 4851 0.4860 +4066 5989 0.4310 +4066 5990 0.4690 +4066 5991 0.5480 +4066 5993 0.4490 +4066 6156 0.5480 +4066 6688 0.6580 +4066 6886 0.8050 +4066 6887 0.4290 +4066 6925 0.4780 +4066 6929 0.9960 +4066 6938 0.6610 +4066 8021 0.4500 +4066 8328 0.7860 +4066 8861 0.9680 +4066 9079 0.9660 +4066 9139 0.5240 +4066 10215 0.5410 +4066 10320 0.6680 +4066 10661 0.5190 +4066 23635 0.5620 +4066 30012 0.8520 +4066 51176 0.4330 +4066 53335 0.4070 +4066 64901 0.6520 +4066 64919 0.7420 +4066 171558 0.5410 +4067 4145 0.6510 +4067 4170 0.6550 +4067 4193 0.4970 +4067 4254 0.6850 +4067 4311 0.7440 +4067 4609 0.5030 +4067 4680 0.4730 +4067 4688 0.4230 +4067 4689 0.4450 +4067 4690 0.7170 +4067 4734 0.9200 +4067 4739 0.7560 +4067 4790 0.5070 +4067 4792 0.4650 +4067 4893 0.7940 +4067 4914 0.4340 +4067 5141 0.6100 +4067 5144 0.6150 +4067 5156 0.6160 +4067 5170 0.4900 +4067 5175 0.8020 +4067 5179 0.4420 +4067 5290 0.9350 +4067 5291 0.9570 +4067 5293 0.9560 +4067 5294 0.9820 +4067 5295 0.9640 +4067 5296 0.9300 +4067 5324 0.6070 +4067 5329 0.4810 +4067 5335 0.8650 +4067 5336 0.9610 +4067 5341 0.6920 +4067 5468 0.5000 +4067 5515 0.6120 +4067 5516 0.5710 +4067 5518 0.5330 +4067 5519 0.5320 +4067 5525 0.5500 +4067 5526 0.5320 +4067 5527 0.5610 +4067 5528 0.5460 +4067 5529 0.5620 +4067 5578 0.9140 +4067 5579 0.9470 +4067 5580 0.6910 +4067 5582 0.9030 +4067 5588 0.5450 +4067 5591 0.7450 +4067 5594 0.8290 +4067 5595 0.8320 +4067 5599 0.5280 +4067 5601 0.5130 +4067 5698 0.5850 +4067 5728 0.4800 +4067 5747 0.9700 +4067 5770 0.4210 +4067 5777 0.9530 +4067 5781 0.8070 +4067 5788 0.9810 +4067 5795 0.4100 +4067 5805 0.4140 +4067 5829 0.8290 +4067 5877 0.5810 +4067 5879 0.6510 +4067 5880 0.6130 +4067 5894 0.5760 +4067 5908 0.4090 +4067 5921 0.6130 +4067 6004 0.4460 +4067 6093 0.4810 +4067 6198 0.4030 +4067 6233 0.5810 +4067 6387 0.6430 +4067 6401 0.4680 +4067 6461 0.4850 +4067 6464 0.9910 +4067 6654 0.7390 +4067 6655 0.5640 +4067 6688 0.4520 +4067 6714 0.9890 +4067 6772 0.7430 +4067 6774 0.9380 +4067 6776 0.8580 +4067 6777 0.7820 +4067 6778 0.4380 +4067 6786 0.4300 +4067 6850 0.9990 +4067 6900 0.5090 +4067 6919 0.4970 +4067 6920 0.5120 +4067 6921 0.5270 +4067 6923 0.5240 +4067 7006 0.7720 +4067 7041 0.4740 +4067 7074 0.6460 +4067 7096 0.4010 +4067 7097 0.5510 +4067 7099 0.5420 +4067 7124 0.6490 +4067 7128 0.4160 +4067 7157 0.6120 +4067 7187 0.6300 +4067 7188 0.4870 +4067 7189 0.6230 +4067 7294 0.7250 +4067 7297 0.8060 +4067 7305 0.5120 +4067 7311 0.5410 +4067 7314 0.5540 +4067 7316 0.5720 +4067 7321 0.5760 +4067 7322 0.5690 +4067 7323 0.5730 +4067 7325 0.5020 +4067 7409 0.9930 +4067 7410 0.7010 +4067 7412 0.4670 +4067 7454 0.4270 +4067 7462 0.8510 +4067 7474 0.4650 +4067 7525 0.8230 +4067 7535 0.7880 +4067 7852 0.4400 +4067 8065 0.5530 +4067 8431 0.5000 +4067 8440 0.4810 +4067 8503 0.9210 +4067 8516 0.4060 +4067 8517 0.4480 +4067 8563 0.5000 +4067 8631 0.6290 +4067 8651 0.7510 +4067 8660 0.8320 +4067 8754 0.5240 +4067 8767 0.4900 +4067 8831 0.4300 +4067 8877 0.5430 +4067 8935 0.7810 +4067 9021 0.6410 +4067 9046 0.4330 +4067 9094 0.5980 +4067 9322 0.4050 +4067 9343 0.4900 +4067 9402 0.7460 +4067 9451 0.4200 +4067 9473 0.6550 +4067 9564 0.8870 +4067 9616 0.5260 +4067 9844 0.9080 +4067 9846 0.9770 +4067 10000 0.6040 +4067 10055 0.4090 +4067 10077 0.4130 +4067 10312 0.4020 +4067 10399 0.4040 +4067 10437 0.4350 +4067 10451 0.7960 +4067 10565 0.4860 +4067 10603 0.6000 +4067 10657 0.7720 +4067 10673 0.6040 +4067 10724 0.4290 +4067 10746 0.7700 +4067 10892 0.4110 +4067 10971 0.5530 +4067 11012 0.4450 +4067 22933 0.4390 +4067 23230 0.5160 +4067 23236 0.4570 +4067 23533 0.9200 +4067 23624 0.6090 +4067 25759 0.9120 +4067 25791 0.5020 +4067 25921 0.4470 +4067 26191 0.5310 +4067 26253 0.4980 +4067 26499 0.4800 +4067 27040 0.8870 +4067 27071 0.9640 +4067 27181 0.4020 +4067 29760 0.9990 +4067 30011 0.7020 +4067 43847 0.4160 +4067 51206 0.9970 +4067 51284 0.4510 +4067 51466 0.6070 +4067 51776 0.4500 +4067 51806 0.5850 +4067 53358 0.9160 +4067 54106 0.4630 +4067 54414 0.4840 +4067 54443 0.4550 +4067 54923 0.7700 +4067 55024 0.8540 +4067 55824 0.9610 +4067 56848 0.6000 +4067 57506 0.4630 +4067 58191 0.5080 +4067 59341 0.7730 +4067 64135 0.4410 +4067 79145 0.5090 +4067 79930 0.5480 +4067 80739 0.5540 +4067 81608 0.5200 +4067 81704 0.4930 +4067 84106 0.4030 +4067 84433 0.6410 +4067 91860 0.5860 +4067 93978 0.5050 +4067 116449 0.5730 +4067 118788 0.5140 +4067 129138 0.5480 +4067 133482 0.4910 +4067 139716 0.8530 +4067 146433 0.5090 +4067 146850 0.9070 +4067 163688 0.5830 +4067 201161 0.5910 +4067 246777 0.4290 +4067 387129 0.4070 +4067 388325 0.6700 +4067 390714 0.4480 +4067 399694 0.9070 +4067 653361 0.5120 +4067 100133941 0.6120 +4067 100423062 0.5060 +4067 100533467 0.4210 +4067 102723407 0.9470 +4068 4690 0.5130 +4068 4790 0.4190 +4068 4818 0.4270 +4068 5133 0.6750 +4068 5551 0.6520 +4068 5597 0.5900 +4068 5605 0.4950 +4068 5781 0.7120 +4068 5788 0.5130 +4068 5873 0.6040 +4068 6504 0.9990 +4068 6714 0.5780 +4068 6813 0.7640 +4068 6932 0.4090 +4068 7409 0.6970 +4068 7535 0.6990 +4068 7957 0.4690 +4068 8320 0.4640 +4068 8546 0.6080 +4068 8676 0.7880 +4068 8832 0.9890 +4068 8874 0.6370 +4068 9046 0.4950 +4068 9402 0.6400 +4068 9437 0.6680 +4068 10018 0.4820 +4068 10125 0.5540 +4068 10188 0.6090 +4068 10219 0.4070 +4068 10225 0.6650 +4068 10538 0.4260 +4068 10563 0.4330 +4068 10663 0.5490 +4068 10666 0.4540 +4068 11151 0.6560 +4068 22914 0.5770 +4068 27036 0.5960 +4068 27040 0.4180 +4068 27180 0.5010 +4068 27181 0.5470 +4068 27339 0.5040 +4068 29851 0.8190 +4068 30009 0.5130 +4068 43847 0.4220 +4068 50615 0.4870 +4068 50852 0.8500 +4068 50943 0.4220 +4068 51176 0.4010 +4068 51744 0.9990 +4068 53347 0.4910 +4068 55423 0.5670 +4068 56253 0.5520 +4068 56833 0.4710 +4068 57823 0.8340 +4068 59067 0.4640 +4068 79037 0.4200 +4068 80380 0.4380 +4068 81704 0.4140 +4068 84061 0.6600 +4068 84174 0.4680 +4068 84636 0.4150 +4068 89884 0.6060 +4068 89886 0.4880 +4068 92747 0.4050 +4068 114836 0.9980 +4068 128611 0.4530 +4068 145553 0.6100 +4068 151888 0.4690 +4068 154075 0.4240 +4068 201294 0.7780 +4068 201633 0.5220 +4068 378884 0.4370 +4068 387357 0.6380 +4068 100528064 0.4200 +4069 4091 0.5390 +4069 4239 0.4160 +4069 4240 0.4640 +4069 4332 0.6560 +4069 4353 0.9180 +4069 4818 0.5790 +4069 4878 0.4210 +4069 5265 0.5000 +4069 5284 0.6390 +4069 5304 0.6860 +4069 5320 0.4100 +4069 5617 0.4510 +4069 5657 0.9070 +4069 5788 0.4450 +4069 6037 0.5560 +4069 6039 0.4240 +4069 6278 0.4340 +4069 6279 0.5120 +4069 6280 0.6830 +4069 6283 0.5250 +4069 6288 0.5000 +4069 6406 0.4160 +4069 6622 0.4770 +4069 6688 0.5050 +4069 7018 0.4120 +4069 7045 0.5590 +4069 7124 0.4510 +4069 7177 0.4010 +4069 7276 0.7190 +4069 7305 0.6130 +4069 7805 0.4330 +4069 8089 0.4460 +4069 8477 0.4640 +4069 8549 0.4320 +4069 9308 0.4740 +4069 9445 0.4850 +4069 10562 0.4410 +4069 10578 0.5100 +4069 10648 0.4380 +4069 11151 0.4590 +4069 11272 0.4740 +4069 23547 0.4110 +4069 23569 0.4600 +4069 51237 0.4450 +4069 54959 0.4060 +4069 63940 0.4350 +4069 64231 0.4380 +4069 84569 0.9060 +4069 84868 0.4330 +4069 89780 0.4470 +4069 90070 0.5730 +4069 117159 0.5370 +4069 124220 0.4810 +4069 219972 0.6970 +4069 728358 0.6520 +4070 4166 0.5070 +4070 4192 0.6810 +4070 4680 0.5690 +4070 5241 0.4240 +4070 6657 0.4140 +4070 6692 0.4580 +4070 6768 0.4910 +4070 7038 0.7220 +4070 7045 0.4170 +4070 8000 0.4100 +4070 9076 0.8990 +4070 10232 0.4360 +4070 10551 0.4160 +4070 25800 0.4500 +4070 27076 0.5220 +4070 29126 0.4300 +4070 29914 0.4470 +4070 57111 0.4430 +4070 81607 0.6000 +4070 83959 0.4220 +4070 168374 0.7250 +4071 4651 0.6480 +4071 6302 0.6320 +4071 7048 0.4340 +4071 7103 0.5570 +4071 7105 0.5970 +4071 10103 0.8020 +4071 10438 0.4630 +4071 27111 0.5900 +4071 54510 0.4240 +4071 84002 0.4390 +4071 92211 0.5480 +4071 337985 0.4160 +4071 345274 0.4410 +4071 347902 0.4730 +4072 4089 0.5060 +4072 4162 0.5400 +4072 4233 0.7210 +4072 4288 0.4550 +4072 4292 0.8370 +4072 4311 0.4480 +4072 4318 0.4520 +4072 4345 0.4850 +4072 4436 0.9140 +4072 4437 0.4320 +4072 4595 0.6090 +4072 4609 0.5830 +4072 4645 0.7500 +4072 4680 0.4030 +4072 4684 0.5450 +4072 4851 0.5100 +4072 4907 0.4640 +4072 5054 0.5380 +4072 5133 0.4350 +4072 5156 0.5200 +4072 5159 0.5090 +4072 5175 0.7270 +4072 5241 0.5180 +4072 5290 0.4800 +4072 5378 0.6990 +4072 5395 0.8640 +4072 5424 0.5060 +4072 5426 0.5070 +4072 5460 0.6990 +4072 5652 0.4360 +4072 5664 0.5080 +4072 5728 0.5820 +4072 5734 0.5760 +4072 5788 0.8400 +4072 5889 0.5200 +4072 5892 0.5710 +4072 6382 0.4380 +4072 6387 0.4330 +4072 6401 0.4850 +4072 6440 0.5700 +4072 6469 0.4070 +4072 6510 0.4910 +4072 6520 0.4930 +4072 6591 0.6140 +4072 6615 0.6240 +4072 6657 0.6640 +4072 6662 0.6100 +4072 6692 0.5110 +4072 6696 0.4010 +4072 6768 0.4980 +4072 6774 0.5120 +4072 6776 0.4300 +4072 6777 0.4200 +4072 6794 0.5070 +4072 7015 0.4310 +4072 7033 0.4210 +4072 7038 0.5690 +4072 7040 0.5100 +4072 7048 0.5360 +4072 7057 0.5200 +4072 7070 0.7790 +4072 7080 0.4740 +4072 7082 0.6000 +4072 7103 0.8120 +4072 7113 0.4350 +4072 7124 0.4870 +4072 7157 0.6450 +4072 7251 0.6600 +4072 7291 0.5710 +4072 7356 0.5700 +4072 7429 0.4120 +4072 7431 0.6340 +4072 7472 0.6970 +4072 7490 0.5060 +4072 7837 0.4950 +4072 7849 0.4540 +4072 7852 0.7080 +4072 8000 0.4480 +4072 8220 0.5590 +4072 8313 0.5050 +4072 8349 0.5040 +4072 8456 0.4750 +4072 8549 0.6890 +4072 8639 0.5960 +4072 8788 0.4510 +4072 8842 0.8640 +4072 9071 0.5500 +4072 9076 0.4080 +4072 9201 0.5090 +4072 9241 0.5160 +4072 9314 0.5150 +4072 9414 0.4780 +4072 9429 0.5920 +4072 9839 0.5080 +4072 10134 0.5570 +4072 10223 0.5900 +4072 10232 0.5860 +4072 10551 0.4690 +4072 10630 0.6010 +4072 10653 0.8800 +4072 10763 0.4060 +4072 11200 0.4730 +4072 27030 0.6810 +4072 29126 0.6090 +4072 30816 0.4750 +4072 50489 0.4830 +4072 50674 0.6430 +4072 50943 0.4820 +4072 51176 0.4170 +4072 51208 0.4600 +4072 54474 0.6220 +4072 54845 0.6560 +4072 56667 0.5010 +4072 57111 0.5940 +4072 57167 0.4880 +4072 57823 0.5020 +4072 64321 0.4910 +4072 79727 0.4230 +4072 79728 0.5420 +4072 79923 0.6820 +4072 79977 0.5130 +4072 80321 0.6160 +4072 80380 0.4200 +4072 89780 0.4390 +4072 90139 0.4640 +4072 91862 0.4290 +4072 94025 0.4260 +4072 114569 0.5280 +4072 122706 0.4260 +4072 126695 0.4730 +4072 137902 0.4910 +4072 140885 0.5730 +4072 255743 0.4320 +4072 284654 0.4870 +4072 390243 0.5470 +4072 400566 0.5420 +4072 405754 0.4800 +4072 100133941 0.9100 +4072 100506658 0.5000 +4072 100532731 0.5540 +4074 4905 0.5030 +4074 5340 0.4710 +4074 5538 0.4800 +4074 5660 0.4370 +4074 5868 0.4100 +4074 6272 0.5480 +4074 6293 0.6050 +4074 6456 0.4990 +4074 6476 0.5260 +4074 6642 0.4690 +4074 6643 0.4180 +4074 6844 0.5640 +4074 6845 0.6580 +4074 7037 0.6040 +4074 8027 0.4850 +4074 8301 0.5080 +4074 8673 0.5870 +4074 8674 0.5270 +4074 8675 0.6150 +4074 8677 0.6310 +4074 8774 0.5160 +4074 8775 0.5340 +4074 8804 0.5580 +4074 8905 0.5420 +4074 8907 0.6720 +4074 8972 0.5180 +4074 9146 0.5440 +4074 9341 0.6240 +4074 9367 0.5470 +4074 9559 0.4700 +4074 9648 0.6680 +4074 9829 0.5160 +4074 9856 0.4160 +4074 9892 0.5170 +4074 10053 0.5650 +4074 10226 0.8720 +4074 10244 0.5060 +4074 10254 0.4750 +4074 10618 0.7480 +4074 22836 0.5170 +4074 23062 0.9110 +4074 23163 0.9930 +4074 23503 0.5860 +4074 26088 0.9570 +4074 26119 0.5000 +4074 29978 0.5200 +4074 51172 0.5230 +4074 51209 0.4990 +4074 51542 0.5810 +4074 55275 0.5790 +4074 55690 0.4220 +4074 55737 0.4070 +4074 63908 0.4990 +4074 81567 0.5050 +4074 130340 0.4990 +4074 143187 0.7450 +4076 4176 0.5080 +4076 4343 0.4080 +4076 4609 0.5570 +4076 4841 0.4830 +4076 4904 0.7300 +4076 5094 0.4090 +4076 5610 0.5680 +4076 5976 0.7200 +4076 6059 0.4400 +4076 6129 0.4840 +4076 6194 0.5980 +4076 6311 0.7780 +4076 6421 0.5790 +4076 6772 0.7700 +4076 6774 0.4410 +4076 6780 0.6570 +4076 7072 0.8590 +4076 7073 0.8610 +4076 7415 0.6040 +4076 7514 0.5280 +4076 7532 0.4290 +4076 7812 0.7560 +4076 7916 0.4770 +4076 8087 0.8910 +4076 8405 0.8090 +4076 8454 0.4270 +4076 8539 0.5540 +4076 8570 0.5700 +4076 8662 0.7700 +4076 8761 0.4300 +4076 9100 0.9000 +4076 9513 0.8980 +4076 9589 0.4850 +4076 9698 0.5160 +4076 9898 0.8340 +4076 9908 0.9930 +4076 9961 0.4510 +4076 9987 0.5770 +4076 10016 0.4170 +4076 10044 0.4910 +4076 10146 0.9990 +4076 10204 0.5160 +4076 10399 0.4790 +4076 10480 0.4380 +4076 10492 0.5960 +4076 10642 0.6580 +4076 10657 0.6140 +4076 11052 0.4840 +4076 11231 0.4690 +4076 11338 0.4580 +4076 22907 0.4600 +4076 23019 0.4610 +4076 23091 0.4660 +4076 23185 0.4130 +4076 23215 0.6970 +4076 23367 0.4600 +4076 23369 0.4820 +4076 23405 0.4390 +4076 23435 0.7630 +4076 23644 0.5350 +4076 25962 0.6340 +4076 26065 0.6640 +4076 26135 0.6450 +4076 26986 0.8370 +4076 27044 0.6030 +4076 29890 0.4130 +4076 29896 0.4860 +4076 51386 0.4320 +4076 51441 0.5390 +4076 51493 0.4180 +4076 54464 0.6680 +4076 54542 0.4980 +4076 54915 0.5270 +4076 55226 0.9380 +4076 55239 0.7060 +4076 55421 0.4390 +4076 55749 0.5850 +4076 55802 0.6010 +4076 55833 0.5670 +4076 57532 0.7980 +4076 57721 0.4980 +4076 64783 0.4490 +4076 79048 0.4020 +4076 79171 0.4260 +4076 79727 0.4390 +4076 83939 0.4750 +4076 84305 0.4360 +4076 90957 0.6220 +4076 92140 0.4560 +4076 113251 0.4130 +4076 120526 0.4280 +4076 149041 0.4040 +4076 149986 0.5320 +4076 253943 0.5520 +4076 404734 0.4220 +4077 4123 0.5700 +4077 4130 0.7740 +4077 4131 0.7620 +4077 4215 0.6980 +4077 4607 0.5020 +4077 4738 0.4550 +4077 5071 0.6470 +4077 5170 0.6250 +4077 5190 0.5820 +4077 5192 0.6290 +4077 5289 0.7610 +4077 5571 0.4590 +4077 5578 0.5180 +4077 5663 0.5450 +4077 5710 0.5790 +4077 5825 0.6680 +4077 5828 0.5030 +4077 5830 0.9570 +4077 5869 0.7850 +4077 5886 0.5210 +4077 5887 0.5060 +4077 6233 0.9730 +4077 6642 0.4650 +4077 6738 0.4250 +4077 6860 0.5970 +4077 7095 0.4730 +4077 7189 0.4510 +4077 7273 0.9860 +4077 7311 0.9140 +4077 7314 0.9630 +4077 7316 0.9890 +4077 7317 0.4110 +4077 7405 0.5610 +4077 7415 0.4410 +4077 7416 0.6020 +4077 7942 0.5450 +4077 8031 0.5970 +4077 8153 0.6990 +4077 8408 0.7050 +4077 8424 0.5860 +4077 8452 0.4190 +4077 8504 0.4510 +4077 8508 0.7760 +4077 8557 0.5430 +4077 8678 0.7870 +4077 8692 0.4100 +4077 8737 0.5910 +4077 8773 0.4260 +4077 8878 0.9990 +4077 8887 0.9020 +4077 8987 0.5290 +4077 9101 0.5070 +4077 9140 0.9070 +4077 9148 0.4660 +4077 9217 0.4830 +4077 9236 0.5980 +4077 9342 0.4580 +4077 9416 0.4010 +4077 9474 0.8090 +4077 9531 0.6750 +4077 9636 0.4660 +4077 9638 0.4100 +4077 9706 0.5540 +4077 9710 0.4690 +4077 9711 0.4250 +4077 9776 0.8090 +4077 9804 0.6410 +4077 9817 0.7620 +4077 9821 0.9090 +4077 9842 0.4740 +4077 9927 0.7160 +4077 10013 0.6770 +4077 10059 0.4610 +4077 10133 0.9500 +4077 10241 0.9510 +4077 10273 0.5050 +4077 10533 0.8110 +4077 10537 0.5740 +4077 10871 0.9210 +4077 11152 0.5190 +4077 11331 0.5780 +4077 11337 0.9990 +4077 11345 0.9990 +4077 22863 0.6800 +4077 22930 0.4370 +4077 23001 0.8390 +4077 23130 0.5440 +4077 23192 0.6980 +4077 23304 0.4050 +4077 23710 0.9990 +4077 23770 0.5800 +4077 23786 0.6800 +4077 25851 0.4130 +4077 26100 0.7280 +4077 26190 0.5300 +4077 26751 0.4060 +4077 26960 0.4310 +4077 29110 0.7050 +4077 29978 0.7510 +4077 29979 0.7350 +4077 30816 0.4540 +4077 30849 0.7200 +4077 50613 0.4790 +4077 51024 0.4070 +4077 51368 0.5110 +4077 51806 0.4300 +4077 53349 0.5980 +4077 54463 0.7180 +4077 54472 0.6780 +4077 54492 0.4660 +4077 54998 0.4180 +4077 55014 0.5880 +4077 55054 0.8720 +4077 55062 0.7020 +4077 55102 0.5430 +4077 55103 0.4560 +4077 55165 0.5740 +4077 55201 0.7650 +4077 55486 0.5560 +4077 55626 0.6130 +4077 55669 0.6560 +4077 56270 0.4040 +4077 56893 0.4770 +4077 57120 0.4370 +4077 57154 0.4190 +4077 57159 0.7750 +4077 57506 0.5020 +4077 57724 0.5440 +4077 60673 0.7380 +4077 64419 0.4340 +4077 64422 0.7920 +4077 64786 0.5120 +4077 65018 0.7260 +4077 79065 0.6560 +4077 79443 0.6520 +4077 79594 0.4270 +4077 81631 0.9990 +4077 83734 0.7360 +4077 83752 0.4410 +4077 84033 0.6200 +4077 84141 0.4280 +4077 84557 0.9700 +4077 84665 0.5170 +4077 84675 0.7500 +4077 84676 0.9070 +4077 84749 0.4660 +4077 84938 0.5720 +4077 84971 0.5710 +4077 84993 0.4170 +4077 89849 0.5100 +4077 90678 0.4470 +4077 91754 0.5360 +4077 91860 0.4300 +4077 93550 0.4020 +4077 115201 0.5930 +4077 136991 0.4600 +4077 139341 0.7750 +4077 146862 0.4620 +4077 163688 0.4300 +4077 200576 0.5180 +4077 200734 0.8090 +4077 221477 0.5050 +4077 257397 0.4710 +4077 285973 0.4720 +4077 405754 0.4510 +4077 440738 0.9530 +4077 441925 0.4920 +4077 643246 0.8840 +4081 4093 0.6680 +4081 4211 0.8700 +4081 4212 0.8720 +4081 5080 0.4350 +4081 5087 0.8410 +4081 5089 0.8110 +4081 5090 0.8370 +4081 6496 0.4680 +4081 7040 0.4440 +4081 9201 0.7750 +4081 26960 0.9020 +4081 84915 0.7840 +4081 728591 0.4710 +4082 4137 0.4160 +4082 4155 0.5360 +4082 4900 0.5170 +4082 5037 0.4300 +4082 5341 0.4550 +4082 5566 0.4560 +4082 5578 0.9080 +4082 5579 0.5810 +4082 5580 0.9520 +4082 5581 0.9170 +4082 5585 0.4030 +4082 5589 0.8340 +4082 5590 0.4530 +4082 5728 0.4050 +4082 6624 0.5230 +4082 6714 0.6250 +4082 6853 0.8350 +4082 6854 0.8090 +4082 7168 0.5580 +4082 7369 0.4080 +4082 8224 0.8140 +4082 8345 0.4010 +4082 8347 0.4070 +4082 8348 0.4010 +4082 8525 0.8450 +4082 8877 0.4470 +4082 8970 0.4170 +4082 9162 0.7550 +4082 10409 0.9460 +4082 10643 0.5180 +4082 26499 0.4160 +4082 51806 0.9950 +4082 54145 0.4010 +4082 55930 0.5670 +4082 58480 0.4300 +4082 65108 0.9410 +4082 85236 0.4150 +4082 91860 0.9950 +4082 128312 0.4010 +4082 158983 0.4010 +4082 163688 0.9950 +4082 286436 0.4010 +4082 440689 0.4010 +4082 114483833 0.4010 +4084 4149 0.9990 +4084 4335 0.7270 +4084 4601 0.6280 +4084 4609 0.9190 +4084 4610 0.4050 +4084 4613 0.4130 +4084 5926 0.7710 +4084 6945 0.6300 +4084 7027 0.5630 +4084 8819 0.4790 +4084 9096 0.5400 +4084 10459 0.4110 +4084 10589 0.5400 +4084 10608 0.5030 +4084 11023 0.4040 +4084 22877 0.6420 +4084 23269 0.5690 +4084 23309 0.6280 +4084 25803 0.4160 +4084 25942 0.9960 +4084 51085 0.4370 +4084 51742 0.6360 +4084 55205 0.4330 +4084 64426 0.8420 +4084 79595 0.6390 +4084 79685 0.4940 +4084 83463 0.4980 +4084 83746 0.4430 +4084 84159 0.4120 +4084 84312 0.6440 +4084 132660 0.5400 +4085 4139 0.4770 +4085 4171 0.7570 +4085 4172 0.7930 +4085 4173 0.8550 +4085 4174 0.8450 +4085 4175 0.8250 +4085 4176 0.7970 +4085 4288 0.5230 +4085 4436 0.5180 +4085 4605 0.4770 +4085 4609 0.4600 +4085 4678 0.5190 +4085 4751 0.9990 +4085 4928 0.9230 +4085 4998 0.5940 +4085 5048 0.5000 +4085 5111 0.7920 +4085 5127 0.4410 +4085 5128 0.4280 +4085 5129 0.4240 +4085 5203 0.4200 +4085 5218 0.4330 +4085 5347 0.9330 +4085 5422 0.5090 +4085 5424 0.4150 +4085 5427 0.5330 +4085 5499 0.4800 +4085 5501 0.6430 +4085 5515 0.5960 +4085 5516 0.5650 +4085 5518 0.6140 +4085 5519 0.6360 +4085 5525 0.5620 +4085 5526 0.5480 +4085 5527 0.6980 +4085 5528 0.6410 +4085 5529 0.5320 +4085 5557 0.6540 +4085 5558 0.5660 +4085 5591 0.5480 +4085 5714 0.5880 +4085 5885 0.6430 +4085 5888 0.7960 +4085 5889 0.5100 +4085 5902 0.4180 +4085 5903 0.9310 +4085 5905 0.5830 +4085 5928 0.4020 +4085 5931 0.4050 +4085 5980 0.8220 +4085 5982 0.4870 +4085 5983 0.8590 +4085 5984 0.9470 +4085 5985 0.5270 +4085 6119 0.5850 +4085 6232 0.5410 +4085 6233 0.5500 +4085 6240 0.6870 +4085 6241 0.8830 +4085 6249 0.5720 +4085 6396 0.5150 +4085 6502 0.4640 +4085 6598 0.4420 +4085 6790 0.9290 +4085 6795 0.6240 +4085 6868 0.8110 +4085 6877 0.4950 +4085 6904 0.6990 +4085 6907 0.4550 +4085 7011 0.4180 +4085 7083 0.7140 +4085 7112 0.4690 +4085 7153 0.8900 +4085 7157 0.4440 +4085 7175 0.9470 +4085 7272 0.9950 +4085 7280 0.4480 +4085 7283 0.5320 +4085 7298 0.9000 +4085 7311 0.4990 +4085 7314 0.5260 +4085 7316 0.5260 +4085 7321 0.6660 +4085 7324 0.5770 +4085 7443 0.5510 +4085 7465 0.4800 +4085 7514 0.6020 +4085 7529 0.4660 +4085 7884 0.5030 +4085 8089 0.4820 +4085 8161 0.4350 +4085 8243 0.7080 +4085 8317 0.6590 +4085 8318 0.8620 +4085 8350 0.4010 +4085 8379 0.9990 +4085 8438 0.5300 +4085 8556 0.4390 +4085 8655 0.6030 +4085 8697 0.9930 +4085 8728 0.6690 +4085 8751 0.6950 +4085 8754 0.7160 +4085 8881 0.9980 +4085 8888 0.9020 +4085 8900 0.7490 +4085 9055 0.8020 +4085 9088 0.6620 +4085 9126 0.4830 +4085 9133 0.9620 +4085 9134 0.5440 +4085 9156 0.8000 +4085 9183 0.8110 +4085 9184 0.9990 +4085 9212 0.9300 +4085 9232 0.8910 +4085 9319 0.9940 +4085 9493 0.8210 +4085 9521 0.4230 +4085 9584 0.4140 +4085 9585 0.5540 +4085 9587 0.9960 +4085 9631 0.4300 +4085 9700 0.9410 +4085 9735 0.8730 +4085 9768 0.7740 +4085 9787 0.9060 +4085 9793 0.9110 +4085 9817 0.6360 +4085 9824 0.4610 +4085 9833 0.9460 +4085 9837 0.6130 +4085 9918 0.5190 +4085 9928 0.6020 +4085 9972 0.9050 +4085 10036 0.4820 +4085 10051 0.7630 +4085 10112 0.9130 +4085 10381 0.4340 +4085 10382 0.4300 +4085 10383 0.4250 +4085 10393 0.9990 +4085 10403 0.9680 +4085 10459 0.9750 +4085 10460 0.8000 +4085 10535 0.4640 +4085 10537 0.6810 +4085 10592 0.7540 +4085 10606 0.4260 +4085 10615 0.7450 +4085 10635 0.8590 +4085 10726 0.5370 +4085 10733 0.8930 +4085 10744 0.5160 +4085 10769 0.6080 +4085 10926 0.5520 +4085 10982 0.5730 +4085 11004 0.9270 +4085 11051 0.4890 +4085 11065 0.9290 +4085 11130 0.8990 +4085 11169 0.5990 +4085 11200 0.7120 +4085 11243 0.5910 +4085 11339 0.8540 +4085 22884 0.4150 +4085 22919 0.7980 +4085 22924 0.5710 +4085 22929 0.4420 +4085 22974 0.8630 +4085 23122 0.6060 +4085 23279 0.5710 +4085 23306 0.4190 +4085 23310 0.4100 +4085 23332 0.5790 +4085 23397 0.7340 +4085 23421 0.6930 +4085 23594 0.6420 +4085 24137 0.7260 +4085 24139 0.4150 +4085 25847 0.9320 +4085 25886 0.4940 +4085 25906 0.9050 +4085 25909 0.5270 +4085 25936 0.6700 +4085 26271 0.8380 +4085 26586 0.5260 +4085 26608 0.4230 +4085 27035 0.4020 +4085 27097 0.4150 +4085 27127 0.5260 +4085 27152 0.8540 +4085 27175 0.4780 +4085 27338 0.6690 +4085 27436 0.6970 +4085 29028 0.5820 +4085 29089 0.8380 +4085 29127 0.8700 +4085 29128 0.5210 +4085 29882 0.9690 +4085 29893 0.4240 +4085 29945 0.9990 +4085 50484 0.4420 +4085 51053 0.6140 +4085 51143 0.7740 +4085 51174 0.4560 +4085 51175 0.4130 +4085 51203 0.8470 +4085 51343 0.9920 +4085 51429 0.4260 +4085 51433 0.9500 +4085 51434 0.9780 +4085 51455 0.5620 +4085 51512 0.4380 +4085 51514 0.4720 +4085 51529 0.6690 +4085 51659 0.6020 +4085 51750 0.4020 +4085 54014 0.4150 +4085 54069 0.5770 +4085 54443 0.6820 +4085 54584 0.4200 +4085 54820 0.5880 +4085 54821 0.9330 +4085 54892 0.7410 +4085 54908 0.7090 +4085 54921 0.5410 +4085 54951 0.5040 +4085 54962 0.4130 +4085 55010 0.5680 +4085 55023 0.4160 +4085 55055 0.8520 +4085 55063 0.6760 +4085 55143 0.9350 +4085 55165 0.7300 +4085 55166 0.7110 +4085 55215 0.6930 +4085 55247 0.6030 +4085 55255 0.4960 +4085 55339 0.4230 +4085 55355 0.5170 +4085 55388 0.7980 +4085 55635 0.5830 +4085 55723 0.5110 +4085 55746 0.6060 +4085 55764 0.4150 +4085 55779 0.4150 +4085 55789 0.6560 +4085 55795 0.9660 +4085 55839 0.8990 +4085 55920 0.6030 +4085 56943 0.9020 +4085 56992 0.6540 +4085 57082 0.8150 +4085 57122 0.6350 +4085 57405 0.9130 +4085 57418 0.4600 +4085 57495 0.4150 +4085 57551 0.6940 +4085 57560 0.4200 +4085 57590 0.4150 +4085 57650 0.4110 +4085 57710 0.4150 +4085 60558 0.5390 +4085 63922 0.6780 +4085 64105 0.8480 +4085 64151 0.8370 +4085 64682 0.9910 +4085 64946 0.8440 +4085 65061 0.4240 +4085 79003 0.5290 +4085 79019 0.8180 +4085 79023 0.7610 +4085 79075 0.6010 +4085 79084 0.4400 +4085 79172 0.5790 +4085 79682 0.8370 +4085 79718 0.4390 +4085 79733 0.4490 +4085 79801 0.7120 +4085 79866 0.4990 +4085 79892 0.4490 +4085 79902 0.5810 +4085 79935 0.5060 +4085 79980 0.8020 +4085 80010 0.5160 +4085 80152 0.6370 +4085 80776 0.4990 +4085 81027 0.4160 +4085 81037 0.4960 +4085 81565 0.5410 +4085 81610 0.4300 +4085 81620 0.6910 +4085 81628 0.5040 +4085 81929 0.6170 +4085 81930 0.9260 +4085 83461 0.7220 +4085 83540 0.9810 +4085 83879 0.5110 +4085 83990 0.4900 +4085 84057 0.8370 +4085 84318 0.4120 +4085 84515 0.5100 +4085 84617 0.4300 +4085 84643 0.5930 +4085 85417 0.5600 +4085 90417 0.4300 +4085 90665 0.4150 +4085 90990 0.5540 +4085 91687 0.7360 +4085 91833 0.4150 +4085 92292 0.4060 +4085 94239 0.5190 +4085 113130 0.6850 +4085 114799 0.4420 +4085 115825 0.4150 +4085 119504 0.9070 +4085 126520 0.5860 +4085 129401 0.6650 +4085 140735 0.5270 +4085 144455 0.4100 +4085 146909 0.5010 +4085 147841 0.7910 +4085 150468 0.4140 +4085 151246 0.8830 +4085 151648 0.9050 +4085 152098 0.6760 +4085 157313 0.5170 +4085 157570 0.6320 +4085 161436 0.4150 +4085 166979 0.8800 +4085 201798 0.4100 +4085 203068 0.5730 +4085 219970 0.4060 +4085 220134 0.7830 +4085 221150 0.5550 +4085 246184 0.9600 +4085 254065 0.4150 +4085 254394 0.5240 +4085 256364 0.4150 +4085 259266 0.8120 +4085 260334 0.4080 +4085 284067 0.4150 +4085 284434 0.4150 +4085 284439 0.4040 +4085 347688 0.4160 +4085 347733 0.4240 +4085 348235 0.7480 +4085 348995 0.6910 +4085 378708 0.6310 +4085 387103 0.6720 +4085 400954 0.4150 +4085 401541 0.6160 +4085 440145 0.4460 +4085 728642 0.4050 +4085 100287520 0.4060 +4086 4087 0.9790 +4086 4088 0.9540 +4086 4089 0.9970 +4086 4090 0.9400 +4086 4091 0.9850 +4086 4092 0.9440 +4086 4093 0.9370 +4086 4734 0.5520 +4086 5594 0.9650 +4086 5595 0.9220 +4086 5692 0.6300 +4086 6497 0.9080 +4086 6498 0.7910 +4086 6606 0.5760 +4086 6774 0.5830 +4086 7040 0.5210 +4086 7046 0.6140 +4086 7050 0.4010 +4086 7314 0.4110 +4086 7316 0.5270 +4086 7321 0.4290 +4086 7323 0.4280 +4086 8021 0.6690 +4086 8091 0.8030 +4086 8239 0.5350 +4086 8928 0.5460 +4086 9372 0.7100 +4086 9765 0.5850 +4086 9817 0.4300 +4086 9839 0.4870 +4086 9958 0.7640 +4086 9972 0.4360 +4086 10273 0.7360 +4086 10413 0.9620 +4086 10468 0.4120 +4086 11059 0.6390 +4086 23090 0.7580 +4086 23592 0.9820 +4086 25925 0.4150 +4086 25937 0.4010 +4086 27250 0.5050 +4086 29102 0.6160 +4086 51176 0.4400 +4086 57154 0.9980 +4086 64750 0.9370 +4086 64837 0.4080 +4086 81491 0.4180 +4086 114792 0.4420 +4086 170261 0.5150 +4087 4088 0.9990 +4087 4089 0.9990 +4087 4090 0.9720 +4087 4091 0.9720 +4087 4092 0.9830 +4087 4093 0.9590 +4087 4193 0.6050 +4087 4205 0.4210 +4087 4208 0.4680 +4087 4214 0.5340 +4087 4233 0.5610 +4087 4301 0.4400 +4087 4303 0.6470 +4087 4312 0.4570 +4087 4313 0.6200 +4087 4314 0.4980 +4087 4318 0.6960 +4087 4322 0.5280 +4087 4323 0.4200 +4087 4594 0.4080 +4087 4609 0.9820 +4087 4617 0.4290 +4087 4654 0.5430 +4087 4656 0.4890 +4087 4734 0.7800 +4087 4739 0.4270 +4087 4772 0.6200 +4087 4775 0.7090 +4087 4790 0.5630 +4087 4792 0.4630 +4087 4838 0.8770 +4087 4851 0.6630 +4087 4855 0.6660 +4087 4904 0.6160 +4087 5045 0.6870 +4087 5047 0.4330 +4087 5054 0.8460 +4087 5074 0.4070 +4087 5077 0.4240 +4087 5081 0.4230 +4087 5087 0.7670 +4087 5159 0.4820 +4087 5175 0.5350 +4087 5290 0.5830 +4087 5300 0.6010 +4087 5316 0.4720 +4087 5340 0.4270 +4087 5371 0.6300 +4087 5460 0.9280 +4087 5468 0.7070 +4087 5494 0.9390 +4087 5578 0.5680 +4087 5580 0.4750 +4087 5594 0.9670 +4087 5595 0.9790 +4087 5599 0.4930 +4087 5600 0.4020 +4087 5604 0.5360 +4087 5672 0.4510 +4087 5678 0.5130 +4087 5728 0.6320 +4087 5743 0.4880 +4087 5747 0.5280 +4087 5788 0.4730 +4087 5903 0.5060 +4087 5914 0.4510 +4087 5921 0.4020 +4087 5933 0.9190 +4087 5971 0.4750 +4087 5972 0.4400 +4087 5998 0.4550 +4087 6093 0.4710 +4087 6198 0.4750 +4087 6233 0.6790 +4087 6275 0.6430 +4087 6279 0.5800 +4087 6347 0.4920 +4087 6373 0.4710 +4087 6387 0.4200 +4087 6391 0.4380 +4087 6469 0.7260 +4087 6497 0.9970 +4087 6498 0.9990 +4087 6500 0.9180 +4087 6591 0.8120 +4087 6597 0.7170 +4087 6599 0.7390 +4087 6601 0.7100 +4087 6606 0.4180 +4087 6608 0.4170 +4087 6615 0.7820 +4087 6657 0.7560 +4087 6662 0.6770 +4087 6667 0.9590 +4087 6696 0.4800 +4087 6714 0.6120 +4087 6722 0.4760 +4087 6772 0.6650 +4087 6774 0.6900 +4087 6776 0.4520 +4087 6777 0.4480 +4087 6778 0.4130 +4087 6862 0.6420 +4087 6876 0.4540 +4087 6885 0.5620 +4087 6886 0.5060 +4087 6938 0.6310 +4087 6997 0.8900 +4087 7004 0.7890 +4087 7027 0.9090 +4087 7029 0.5010 +4087 7040 0.9830 +4087 7042 0.9410 +4087 7043 0.8650 +4087 7044 0.5040 +4087 7046 0.9990 +4087 7048 0.9980 +4087 7049 0.5940 +4087 7050 0.9910 +4087 7057 0.5340 +4087 7070 0.4320 +4087 7076 0.6000 +4087 7077 0.5130 +4087 7078 0.4090 +4087 7080 0.4890 +4087 7082 0.4870 +4087 7099 0.4820 +4087 7124 0.6260 +4087 7157 0.9930 +4087 7184 0.5470 +4087 7189 0.8770 +4087 7225 0.4310 +4087 7249 0.4600 +4087 7268 0.5520 +4087 7291 0.5550 +4087 7311 0.5240 +4087 7314 0.5310 +4087 7316 0.5860 +4087 7321 0.4890 +4087 7323 0.4750 +4087 7391 0.5060 +4087 7412 0.4060 +4087 7415 0.4060 +4087 7431 0.4720 +4087 7471 0.4290 +4087 7472 0.4270 +4087 7474 0.4530 +4087 7476 0.4180 +4087 7480 0.4020 +4087 7525 0.4640 +4087 7528 0.5460 +4087 7532 0.4300 +4087 7546 0.6670 +4087 7547 0.5050 +4087 7837 0.6760 +4087 7852 0.4680 +4087 7874 0.4220 +4087 8021 0.7970 +4087 8061 0.5610 +4087 8091 0.9410 +4087 8200 0.4540 +4087 8202 0.7090 +4087 8239 0.5000 +4087 8289 0.4840 +4087 8290 0.4490 +4087 8312 0.6320 +4087 8313 0.4480 +4087 8320 0.9140 +4087 8321 0.4020 +4087 8324 0.4130 +4087 8356 0.4490 +4087 8425 0.6300 +4087 8454 0.9260 +4087 8463 0.6090 +4087 8498 0.7830 +4087 8600 0.4270 +4087 8626 0.6060 +4087 8646 0.5300 +4087 8678 0.5310 +4087 8812 0.4190 +4087 8817 0.5180 +4087 8822 0.5160 +4087 8823 0.5380 +4087 8841 0.4790 +4087 8842 0.4440 +4087 8850 0.8650 +4087 8928 0.9990 +4087 8988 0.5390 +4087 9110 0.8850 +4087 9146 0.6600 +4087 9184 0.4040 +4087 9210 0.5910 +4087 9241 0.4840 +4087 9314 0.8320 +4087 9372 0.9990 +4087 9392 0.4960 +4087 9451 0.4320 +4087 9518 0.4660 +4087 9573 0.5880 +4087 9589 0.9820 +4087 9610 0.6060 +4087 9611 0.8320 +4087 9612 0.7300 +4087 9719 0.5440 +4087 9759 0.7250 +4087 9765 0.9410 +4087 9817 0.5660 +4087 9839 0.6390 +4087 9958 0.8650 +4087 9972 0.4760 +4087 9978 0.9160 +4087 10018 0.4060 +4087 10140 0.4760 +4087 10155 0.6010 +4087 10220 0.6960 +4087 10272 0.4160 +4087 10273 0.5090 +4087 10370 0.6910 +4087 10401 0.4340 +4087 10413 0.9790 +4087 10419 0.6440 +4087 10468 0.7720 +4087 10521 0.4610 +4087 10589 0.6890 +4087 10631 0.4810 +4087 10637 0.5310 +4087 10657 0.4680 +4087 10914 0.7280 +4087 10987 0.5170 +4087 11059 0.7760 +4087 11060 0.6350 +4087 11171 0.4170 +4087 11322 0.5320 +4087 22938 0.8940 +4087 22943 0.4230 +4087 23034 0.5820 +4087 23054 0.6840 +4087 23098 0.4180 +4087 23135 0.8170 +4087 23327 0.9620 +4087 23339 0.4790 +4087 23405 0.6400 +4087 23411 0.5040 +4087 23439 0.4990 +4087 23476 0.5880 +4087 23592 0.9820 +4087 25805 0.5010 +4087 25932 0.5380 +4087 25937 0.9330 +4087 25942 0.5170 +4087 26281 0.5380 +4087 26524 0.4830 +4087 27006 0.5270 +4087 27250 0.7100 +4087 27302 0.4610 +4087 28514 0.8760 +4087 28996 0.7950 +4087 29102 0.9780 +4087 30009 0.4110 +4087 50507 0.5800 +4087 50943 0.6970 +4087 51176 0.9780 +4087 51377 0.6170 +4087 51586 0.7700 +4087 51588 0.5650 +4087 51592 0.9990 +4087 51806 0.5430 +4087 54487 0.5520 +4087 54778 0.9350 +4087 55611 0.4540 +4087 55914 0.8880 +4087 55997 0.6420 +4087 56339 0.9770 +4087 56937 0.9620 +4087 57060 0.4990 +4087 57154 0.9760 +4087 57167 0.6090 +4087 57492 0.6620 +4087 57664 0.4680 +4087 57721 0.9810 +4087 60436 0.9310 +4087 60528 0.6450 +4087 63976 0.4260 +4087 63978 0.7130 +4087 64102 0.5380 +4087 64321 0.6300 +4087 64397 0.4660 +4087 64750 0.9990 +4087 64837 0.5190 +4087 65125 0.6970 +4087 79727 0.6380 +4087 79753 0.6050 +4087 79923 0.8560 +4087 81794 0.4400 +4087 83737 0.6820 +4087 83881 0.7140 +4087 84676 0.6760 +4087 84891 0.5330 +4087 89780 0.5050 +4087 91860 0.5440 +4087 93649 0.5760 +4087 114907 0.4860 +4087 121340 0.4230 +4087 130399 0.9820 +4087 137902 0.6760 +4087 145258 0.5890 +4087 147700 0.5020 +4087 151449 0.4070 +4087 154075 0.6680 +4087 163126 0.4970 +4087 163688 0.5440 +4087 168002 0.4480 +4087 203286 0.4450 +4087 333929 0.5330 +4087 344022 0.5120 +4087 387332 0.5220 +4087 440093 0.4460 +4087 440686 0.4630 +4087 642658 0.5220 +4087 653604 0.4650 +4087 729857 0.4410 +4088 4089 0.9990 +4088 4090 0.9800 +4088 4091 0.9330 +4088 4092 0.9760 +4088 4093 0.9900 +4088 4149 0.6560 +4088 4208 0.6930 +4088 4233 0.4300 +4088 4303 0.7560 +4088 4312 0.4280 +4088 4313 0.5950 +4088 4314 0.4520 +4088 4318 0.6820 +4088 4322 0.5020 +4088 4609 0.9930 +4088 4617 0.4250 +4088 4629 0.5050 +4088 4638 0.4480 +4088 4654 0.9290 +4088 4656 0.4890 +4088 4734 0.8960 +4088 4739 0.9250 +4088 4772 0.6030 +4088 4773 0.9300 +4088 4780 0.5930 +4088 4782 0.6110 +4088 4790 0.7650 +4088 4791 0.5360 +4088 4792 0.4730 +4088 4801 0.4340 +4088 4802 0.4970 +4088 4838 0.7110 +4088 4851 0.9580 +4088 4853 0.4380 +4088 4854 0.4030 +4088 4855 0.9470 +4088 4904 0.9410 +4088 5045 0.7150 +4088 5047 0.5180 +4088 5054 0.8480 +4088 5080 0.7990 +4088 5081 0.4240 +4088 5093 0.9280 +4088 5156 0.5390 +4088 5159 0.6250 +4088 5175 0.4790 +4088 5190 0.4300 +4088 5270 0.5150 +4088 5290 0.5310 +4088 5300 0.6420 +4088 5308 0.4290 +4088 5325 0.4240 +4088 5340 0.4970 +4088 5352 0.5160 +4088 5371 0.6110 +4088 5454 0.6050 +4088 5460 0.9620 +4088 5465 0.4080 +4088 5467 0.5830 +4088 5468 0.9500 +4088 5494 0.9200 +4088 5566 0.6370 +4088 5567 0.5950 +4088 5568 0.5940 +4088 5592 0.4180 +4088 5594 0.9620 +4088 5595 0.9640 +4088 5598 0.5630 +4088 5599 0.9770 +4088 5601 0.9270 +4088 5604 0.6400 +4088 5605 0.4480 +4088 5606 0.4220 +4088 5717 0.4840 +4088 5725 0.4400 +4088 5728 0.6110 +4088 5743 0.4940 +4088 5744 0.6130 +4088 5747 0.4560 +4088 5771 0.5520 +4088 5775 0.5100 +4088 5777 0.6100 +4088 5778 0.5100 +4088 5780 0.5140 +4088 5781 0.7310 +4088 5782 0.5510 +4088 5783 0.5280 +4088 5784 0.5670 +4088 5788 0.4430 +4088 5791 0.4670 +4088 5799 0.4760 +4088 5914 0.5160 +4088 5916 0.5470 +4088 5917 0.4880 +4088 5933 0.9390 +4088 5966 0.5920 +4088 5970 0.9500 +4088 5971 0.5080 +4088 5972 0.4400 +4088 5989 0.4300 +4088 6093 0.4040 +4088 6198 0.4320 +4088 6233 0.6540 +4088 6256 0.5590 +4088 6275 0.7990 +4088 6279 0.7650 +4088 6347 0.5150 +4088 6372 0.4540 +4088 6373 0.4450 +4088 6387 0.4140 +4088 6391 0.4750 +4088 6469 0.7020 +4088 6495 0.4500 +4088 6497 0.9830 +4088 6498 0.9980 +4088 6500 0.9190 +4088 6591 0.6890 +4088 6595 0.4270 +4088 6597 0.6980 +4088 6599 0.6120 +4088 6601 0.6100 +4088 6604 0.4400 +4088 6615 0.9940 +4088 6657 0.9290 +4088 6662 0.7780 +4088 6667 0.9780 +4088 6688 0.6760 +4088 6696 0.4380 +4088 6711 0.8550 +4088 6714 0.5620 +4088 6721 0.4120 +4088 6722 0.5110 +4088 6736 0.5050 +4088 6772 0.8490 +4088 6774 0.9090 +4088 6776 0.5020 +4088 6777 0.4970 +4088 6778 0.4810 +4088 6839 0.4530 +4088 6862 0.5820 +4088 6876 0.4470 +4088 6885 0.8030 +4088 6886 0.4890 +4088 6925 0.5380 +4088 6934 0.4300 +4088 6938 0.6510 +4088 6997 0.6860 +4088 7004 0.8990 +4088 7027 0.9450 +4088 7029 0.4990 +4088 7030 0.7600 +4088 7040 0.9900 +4088 7041 0.7790 +4088 7042 0.9660 +4088 7043 0.8650 +4088 7045 0.4100 +4088 7046 0.9990 +4088 7048 0.9980 +4088 7049 0.5620 +4088 7050 0.9740 +4088 7057 0.5350 +4088 7076 0.5970 +4088 7077 0.4890 +4088 7080 0.8880 +4088 7082 0.4580 +4088 7099 0.6300 +4088 7124 0.6320 +4088 7157 0.9630 +4088 7189 0.9550 +4088 7225 0.4040 +4088 7249 0.6430 +4088 7268 0.7740 +4088 7291 0.5250 +4088 7311 0.6710 +4088 7314 0.5260 +4088 7316 0.5590 +4088 7321 0.4760 +4088 7323 0.4580 +4088 7412 0.6040 +4088 7431 0.4150 +4088 7471 0.4090 +4088 7474 0.4310 +4088 7476 0.4210 +4088 7477 0.4010 +4088 7528 0.7160 +4088 7531 0.4020 +4088 7546 0.5150 +4088 7718 0.7250 +4088 7837 0.6380 +4088 7849 0.8390 +4088 7852 0.4310 +4088 7874 0.5560 +4088 7942 0.4880 +4088 8021 0.7070 +4088 8091 0.9630 +4088 8200 0.4660 +4088 8202 0.4880 +4088 8239 0.6420 +4088 8289 0.4710 +4088 8290 0.4490 +4088 8312 0.7850 +4088 8313 0.4200 +4088 8320 0.8710 +4088 8321 0.4310 +4088 8324 0.4510 +4088 8356 0.4520 +4088 8411 0.4190 +4088 8454 0.9470 +4088 8463 0.6100 +4088 8498 0.7840 +4088 8554 0.5740 +4088 8570 0.4920 +4088 8600 0.4070 +4088 8646 0.4740 +4088 8648 0.5730 +4088 8809 0.4310 +4088 8812 0.4260 +4088 8817 0.4610 +4088 8822 0.4580 +4088 8823 0.4820 +4088 8841 0.5200 +4088 8850 0.9260 +4088 8878 0.4940 +4088 8928 0.9980 +4088 8945 0.5100 +4088 9063 0.4340 +4088 9110 0.7980 +4088 9149 0.4640 +4088 9210 0.4860 +4088 9314 0.4840 +4088 9372 0.9990 +4088 9531 0.5170 +4088 9564 0.5090 +4088 9586 0.4450 +4088 9589 0.7400 +4088 9611 0.9230 +4088 9612 0.7090 +4088 9734 0.4340 +4088 9759 0.9440 +4088 9765 0.9530 +4088 9817 0.5890 +4088 9839 0.8680 +4088 9958 0.8470 +4088 9972 0.6030 +4088 9978 0.9410 +4088 10014 0.7300 +4088 10018 0.6940 +4088 10140 0.6060 +4088 10220 0.5750 +4088 10273 0.9790 +4088 10370 0.6600 +4088 10392 0.4790 +4088 10393 0.7590 +4088 10399 0.5540 +4088 10401 0.6700 +4088 10413 0.9650 +4088 10419 0.6560 +4088 10454 0.5880 +4088 10468 0.7000 +4088 10499 0.5050 +4088 10521 0.4290 +4088 10526 0.4510 +4088 10589 0.4050 +4088 10631 0.4440 +4088 10637 0.5280 +4088 10664 0.7020 +4088 10725 0.4840 +4088 10891 0.4310 +4088 10979 0.5130 +4088 10992 0.4960 +4088 11030 0.5220 +4088 11059 0.9010 +4088 11060 0.8120 +4088 11171 0.4370 +4088 22861 0.4360 +4088 22938 0.7220 +4088 22943 0.4090 +4088 23034 0.5710 +4088 23135 0.8350 +4088 23291 0.4040 +4088 23327 0.9990 +4088 23339 0.4700 +4088 23411 0.7030 +4088 23439 0.4990 +4088 23462 0.6270 +4088 23476 0.6310 +4088 23592 0.9730 +4088 25805 0.4700 +4088 25930 0.5200 +4088 25932 0.7110 +4088 25937 0.8810 +4088 25942 0.5120 +4088 26095 0.5060 +4088 26281 0.4820 +4088 26469 0.5200 +4088 27006 0.4710 +4088 27035 0.4280 +4088 27063 0.4330 +4088 27161 0.5870 +4088 27178 0.9800 +4088 27250 0.6810 +4088 28514 0.7230 +4088 28984 0.6300 +4088 28996 0.6740 +4088 29102 0.9070 +4088 29117 0.4780 +4088 30008 0.4070 +4088 30009 0.6550 +4088 50507 0.8050 +4088 50943 0.8050 +4088 51176 0.9780 +4088 51377 0.7080 +4088 51429 0.4900 +4088 51586 0.6800 +4088 51588 0.8960 +4088 51592 0.9970 +4088 51741 0.7560 +4088 54487 0.5450 +4088 54778 0.9750 +4088 55223 0.4520 +4088 55869 0.7970 +4088 55876 0.5910 +4088 55914 0.8410 +4088 55958 0.4640 +4088 55997 0.5660 +4088 56339 0.9150 +4088 56658 0.4020 +4088 56937 0.8820 +4088 57007 0.4190 +4088 57060 0.4990 +4088 57154 0.9520 +4088 57178 0.4640 +4088 57528 0.5770 +4088 57591 0.5250 +4088 57664 0.4700 +4088 57721 0.7900 +4088 57761 0.7750 +4088 60436 0.9580 +4088 63976 0.6740 +4088 63978 0.4560 +4088 64102 0.4870 +4088 64321 0.5030 +4088 64328 0.6390 +4088 64750 0.9970 +4088 65243 0.6180 +4088 79869 0.4440 +4088 79923 0.8840 +4088 80125 0.4730 +4088 81031 0.4850 +4088 81603 0.4640 +4088 83439 0.5630 +4088 83737 0.5820 +4088 83881 0.6460 +4088 84676 0.6490 +4088 84867 0.5060 +4088 89780 0.4180 +4088 90865 0.4050 +4088 93649 0.7700 +4088 94103 0.4400 +4088 114907 0.4320 +4088 130399 0.9630 +4088 131578 0.4210 +4088 137902 0.6340 +4088 140690 0.4950 +4088 145258 0.5800 +4088 154075 0.6200 +4088 163126 0.5280 +4088 203068 0.4170 +4088 283078 0.5220 +4088 284312 0.4590 +4088 344022 0.5120 +4088 387332 0.8060 +4088 390598 0.6130 +4088 440093 0.4470 +4088 440686 0.4630 +4088 642658 0.4680 +4088 653499 0.7050 +4088 653604 0.4670 +4089 4090 0.9990 +4089 4091 0.9890 +4089 4092 0.9470 +4089 4093 0.9990 +4089 4170 0.4300 +4089 4193 0.4870 +4089 4194 0.4570 +4089 4233 0.4630 +4089 4292 0.6870 +4089 4294 0.5110 +4089 4296 0.6850 +4089 4303 0.8460 +4089 4313 0.7090 +4089 4318 0.7240 +4089 4435 0.7470 +4089 4436 0.6250 +4089 4437 0.4630 +4089 4488 0.6370 +4089 4586 0.4210 +4089 4588 0.4010 +4089 4594 0.4230 +4089 4595 0.6210 +4089 4609 0.9310 +4089 4654 0.4500 +4089 4734 0.4900 +4089 4763 0.8730 +4089 4771 0.4760 +4089 4784 0.4790 +4089 4790 0.5410 +4089 4792 0.5380 +4089 4824 0.4650 +4089 4838 0.6960 +4089 4851 0.8110 +4089 4853 0.4080 +4089 4854 0.4010 +4089 4855 0.4840 +4089 4869 0.4160 +4089 4893 0.6700 +4089 4904 0.8040 +4089 4913 0.4100 +4089 4914 0.4170 +4089 4921 0.4470 +4089 5045 0.6750 +4089 5054 0.8730 +4089 5080 0.5010 +4089 5087 0.7720 +4089 5156 0.5100 +4089 5289 0.4070 +4089 5290 0.8050 +4089 5295 0.4530 +4089 5315 0.5520 +4089 5316 0.4990 +4089 5335 0.4630 +4089 5340 0.4640 +4089 5395 0.6290 +4089 5424 0.5540 +4089 5426 0.5840 +4089 5460 0.7200 +4089 5468 0.4360 +4089 5494 0.6950 +4089 5592 0.6970 +4089 5594 0.8160 +4089 5595 0.7440 +4089 5599 0.9800 +4089 5601 0.9320 +4089 5604 0.6950 +4089 5609 0.4670 +4089 5629 0.4300 +4089 5727 0.4700 +4089 5728 0.9120 +4089 5747 0.4140 +4089 5777 0.4740 +4089 5781 0.5050 +4089 5892 0.4310 +4089 5915 0.4990 +4089 5921 0.4470 +4089 5933 0.9340 +4089 5970 0.4020 +4089 5971 0.6720 +4089 5979 0.5560 +4089 6093 0.4810 +4089 6098 0.4790 +4089 6154 0.4200 +4089 6233 0.6580 +4089 6256 0.4910 +4089 6258 0.4240 +4089 6275 0.4050 +4089 6279 0.4810 +4089 6295 0.4140 +4089 6391 0.4500 +4089 6416 0.5390 +4089 6422 0.4050 +4089 6464 0.4210 +4089 6469 0.5310 +4089 6496 0.4120 +4089 6497 0.9980 +4089 6498 0.9990 +4089 6502 0.7750 +4089 6591 0.8490 +4089 6597 0.6440 +4089 6598 0.5140 +4089 6599 0.4990 +4089 6601 0.4640 +4089 6606 0.5850 +4089 6615 0.9600 +4089 6633 0.4350 +4089 6654 0.6350 +4089 6657 0.8200 +4089 6659 0.6090 +4089 6662 0.6860 +4089 6664 0.5080 +4089 6667 0.9330 +4089 6670 0.5800 +4089 6696 0.4470 +4089 6711 0.6730 +4089 6714 0.7250 +4089 6722 0.4440 +4089 6772 0.4200 +4089 6774 0.7680 +4089 6794 0.8470 +4089 6862 0.5810 +4089 6885 0.5810 +4089 6911 0.4100 +4089 6932 0.9250 +4089 6934 0.9480 +4089 6997 0.6880 +4089 7015 0.4350 +4089 7026 0.7280 +4089 7027 0.9320 +4089 7029 0.5120 +4089 7030 0.5980 +4089 7036 0.4700 +4089 7040 0.9590 +4089 7041 0.6450 +4089 7042 0.8770 +4089 7043 0.8070 +4089 7046 0.9980 +4089 7048 0.9960 +4089 7049 0.5140 +4089 7050 0.7890 +4089 7057 0.4280 +4089 7067 0.4490 +4089 7074 0.4870 +4089 7076 0.4460 +4089 7077 0.5430 +4089 7082 0.4020 +4089 7124 0.5150 +4089 7126 0.4710 +4089 7157 0.8750 +4089 7189 0.4930 +4089 7216 0.4180 +4089 7268 0.4850 +4089 7291 0.8470 +4089 7311 0.4990 +4089 7314 0.5090 +4089 7316 0.5380 +4089 7321 0.4920 +4089 7323 0.4890 +4089 7329 0.7740 +4089 7341 0.4890 +4089 7375 0.4950 +4089 7403 0.4390 +4089 7465 0.4110 +4089 7471 0.4070 +4089 7472 0.4330 +4089 7474 0.4120 +4089 7514 0.6230 +4089 7528 0.7080 +4089 7531 0.4110 +4089 7786 0.4400 +4089 7837 0.5610 +4089 7849 0.6120 +4089 7874 0.4790 +4089 7942 0.4760 +4089 8019 0.4280 +4089 8021 0.7480 +4089 8091 0.9360 +4089 8200 0.4470 +4089 8239 0.9710 +4089 8289 0.6760 +4089 8290 0.4020 +4089 8312 0.5810 +4089 8313 0.5620 +4089 8320 0.6570 +4089 8356 0.4120 +4089 8453 0.5060 +4089 8543 0.5200 +4089 8549 0.4350 +4089 8626 0.4920 +4089 8646 0.6710 +4089 8650 0.5120 +4089 8692 0.6430 +4089 8812 0.4510 +4089 8817 0.4420 +4089 8822 0.4310 +4089 8823 0.4720 +4089 8841 0.5170 +4089 8842 0.4260 +4089 8844 0.5140 +4089 8848 0.5030 +4089 8928 0.9970 +4089 8945 0.8890 +4089 9063 0.4570 +4089 9146 0.5990 +4089 9175 0.6940 +4089 9201 0.4220 +4089 9241 0.7200 +4089 9253 0.4870 +4089 9314 0.7090 +4089 9372 0.8950 +4089 9392 0.8190 +4089 9464 0.4410 +4089 9479 0.6260 +4089 9611 0.8550 +4089 9612 0.7250 +4089 9759 0.4980 +4089 9765 0.8160 +4089 9817 0.5620 +4089 9839 0.6990 +4089 9958 0.7430 +4089 9960 0.4130 +4089 9972 0.6060 +4089 10000 0.4930 +4089 10018 0.6920 +4089 10140 0.7660 +4089 10155 0.5280 +4089 10220 0.5860 +4089 10273 0.5010 +4089 10401 0.4710 +4089 10413 0.9430 +4089 10419 0.6440 +4089 10468 0.5320 +4089 10521 0.4690 +4089 10589 0.5780 +4089 10664 0.6540 +4089 10783 0.4650 +4089 10892 0.4080 +4089 10987 0.9060 +4089 11059 0.7870 +4089 11060 0.4310 +4089 11200 0.4720 +4089 22800 0.4350 +4089 22938 0.6380 +4089 22943 0.4230 +4089 23028 0.6820 +4089 23034 0.4450 +4089 23072 0.4100 +4089 23090 0.8580 +4089 23098 0.5240 +4089 23135 0.6480 +4089 23162 0.5170 +4089 23186 0.4440 +4089 23314 0.4950 +4089 23327 0.8600 +4089 23339 0.7800 +4089 23405 0.5040 +4089 23411 0.5690 +4089 23439 0.4990 +4089 23542 0.6030 +4089 23592 0.6710 +4089 25805 0.5050 +4089 25925 0.6500 +4089 25937 0.8750 +4089 25942 0.6120 +4089 26281 0.4720 +4089 26585 0.5070 +4089 26994 0.6500 +4089 27006 0.4620 +4089 27161 0.5530 +4089 27250 0.7430 +4089 27302 0.5720 +4089 27338 0.5170 +4089 28514 0.7190 +4089 29072 0.5050 +4089 29102 0.7010 +4089 29126 0.4470 +4089 30812 0.4780 +4089 30827 0.4240 +4089 50943 0.4260 +4089 51143 0.4220 +4089 51176 0.9990 +4089 51295 0.4440 +4089 51322 0.5670 +4089 51341 0.4080 +4089 51586 0.7060 +4089 51588 0.8080 +4089 51592 0.9860 +4089 51701 0.5300 +4089 51741 0.5830 +4089 53353 0.4110 +4089 54474 0.4020 +4089 54487 0.5190 +4089 54778 0.7190 +4089 54894 0.6450 +4089 55193 0.6150 +4089 55278 0.4300 +4089 55294 0.6770 +4089 55656 0.5040 +4089 55802 0.8830 +4089 55914 0.4230 +4089 55997 0.5640 +4089 56288 0.5870 +4089 57045 0.4660 +4089 57060 0.4990 +4089 57107 0.4680 +4089 57154 0.9120 +4089 57167 0.6000 +4089 57510 0.5980 +4089 57630 0.4590 +4089 57664 0.4680 +4089 57817 0.5060 +4089 58508 0.5340 +4089 60436 0.6310 +4089 63976 0.4910 +4089 63978 0.5750 +4089 64750 0.9590 +4089 64837 0.6180 +4089 79727 0.5930 +4089 79728 0.5450 +4089 79753 0.6920 +4089 79923 0.8520 +4089 80895 0.4140 +4089 81579 0.4310 +4089 83439 0.9250 +4089 83593 0.5200 +4089 83737 0.4680 +4089 83881 0.6440 +4089 84676 0.5820 +4089 84891 0.5210 +4089 89780 0.4650 +4089 89884 0.4820 +4089 89953 0.4810 +4089 90378 0.5480 +4089 90993 0.5220 +4089 91107 0.4120 +4089 93974 0.4350 +4089 114790 0.8150 +4089 115908 0.4070 +4089 121340 0.4820 +4089 130399 0.8170 +4089 137902 0.5550 +4089 139285 0.4750 +4089 144125 0.6950 +4089 145258 0.5780 +4089 147700 0.6260 +4089 148738 0.7580 +4089 151449 0.5590 +4089 154075 0.6350 +4089 163126 0.5400 +4089 164656 0.4450 +4089 196513 0.4560 +4089 196528 0.5000 +4089 253260 0.7650 +4089 333929 0.5370 +4089 387332 0.5160 +4089 440093 0.4020 +4089 440275 0.5840 +4089 440686 0.4060 +4089 653604 0.4160 +4090 4091 0.9530 +4090 4092 0.9550 +4090 4093 0.9950 +4090 4208 0.4890 +4090 4734 0.4380 +4090 5074 0.4350 +4090 5080 0.4470 +4090 5286 0.4610 +4090 5594 0.9230 +4090 5595 0.9310 +4090 6045 0.4130 +4090 6093 0.4770 +4090 6497 0.8210 +4090 6498 0.8120 +4090 6572 0.4650 +4090 6625 0.5300 +4090 6696 0.4180 +4090 7040 0.8240 +4090 7042 0.5490 +4090 7043 0.5310 +4090 7046 0.8300 +4090 7048 0.6140 +4090 7321 0.4610 +4090 7323 0.4280 +4090 8091 0.8400 +4090 8200 0.4780 +4090 8452 0.4960 +4090 8554 0.4720 +4090 8646 0.5940 +4090 8850 0.4710 +4090 8928 0.5490 +4090 9146 0.6040 +4090 9210 0.4970 +4090 9241 0.5870 +4090 9372 0.4670 +4090 9577 0.4110 +4090 9765 0.6610 +4090 10140 0.4450 +4090 10220 0.4560 +4090 10273 0.4040 +4090 10413 0.5700 +4090 10468 0.6350 +4090 10521 0.4950 +4090 10755 0.4930 +4090 10987 0.6200 +4090 11059 0.5890 +4090 23327 0.6570 +4090 23414 0.4260 +4090 23592 0.6560 +4090 25805 0.4230 +4090 27123 0.4460 +4090 27161 0.4630 +4090 27250 0.7660 +4090 27302 0.5260 +4090 27338 0.4530 +4090 29102 0.8240 +4090 29851 0.4480 +4090 51177 0.4430 +4090 57057 0.5030 +4090 57154 0.9940 +4090 57520 0.4750 +4090 57664 0.4680 +4090 57817 0.4060 +4090 64750 0.9540 +4090 79723 0.6630 +4090 90378 0.4870 +4090 121340 0.5250 +4090 130399 0.5950 +4090 148738 0.4420 +4090 151449 0.4430 +4090 168667 0.6530 +4090 202151 0.4540 +4091 4092 0.9840 +4091 4093 0.9560 +4091 4487 0.4050 +4091 4488 0.4460 +4091 4678 0.5970 +4091 4734 0.6450 +4091 4851 0.4990 +4091 5284 0.5560 +4091 6498 0.8000 +4091 6591 0.4210 +4091 6615 0.4530 +4091 6885 0.7000 +4091 6899 0.4520 +4091 6909 0.5130 +4091 6926 0.4620 +4091 7040 0.8460 +4091 7042 0.7600 +4091 7043 0.6310 +4091 7046 0.9820 +4091 7048 0.6970 +4091 7049 0.4720 +4091 7189 0.5730 +4091 8021 0.4150 +4091 8091 0.6030 +4091 8237 0.4100 +4091 8646 0.6850 +4091 8848 0.4100 +4091 9076 0.4190 +4091 9210 0.4270 +4091 9241 0.5760 +4091 9372 0.5160 +4091 9765 0.6600 +4091 9958 0.4180 +4091 10002 0.4520 +4091 10401 0.4880 +4091 10413 0.5680 +4091 10454 0.4220 +4091 10468 0.4750 +4091 11059 0.8480 +4091 11060 0.7590 +4091 23034 0.4820 +4091 23072 0.4430 +4091 23327 0.8010 +4091 23592 0.4040 +4091 25805 0.7050 +4091 27250 0.4290 +4091 27302 0.4880 +4091 29102 0.4150 +4091 51297 0.5390 +4091 51588 0.4020 +4091 54345 0.4420 +4091 54778 0.6200 +4091 54982 0.5490 +4091 57154 0.9990 +4091 57161 0.5090 +4091 57162 0.8270 +4091 57520 0.4470 +4091 63893 0.5570 +4091 64750 0.9980 +4091 79753 0.4830 +4091 83737 0.7510 +4091 84913 0.4070 +4091 130399 0.5480 +4091 130497 0.4060 +4091 140628 0.4420 +4091 151449 0.4640 +4091 168667 0.4630 +4091 246330 0.5290 +4091 392255 0.4160 +4092 4093 0.9700 +4092 4208 0.5180 +4092 4313 0.4970 +4092 4318 0.5060 +4092 4595 0.4220 +4092 4609 0.6360 +4092 4654 0.7460 +4092 4656 0.5300 +4092 4734 0.7980 +4092 4790 0.4150 +4092 4792 0.4090 +4092 4851 0.4840 +4092 5054 0.8030 +4092 5190 0.4240 +4092 5295 0.4620 +4092 5468 0.4530 +4092 5478 0.4200 +4092 5499 0.5440 +4092 5500 0.8770 +4092 5501 0.8760 +4092 5595 0.4770 +4092 5606 0.8120 +4092 5728 0.5400 +4092 5744 0.5390 +4092 6093 0.5450 +4092 6233 0.6500 +4092 6279 0.4610 +4092 6373 0.6230 +4092 6497 0.7150 +4092 6498 0.8890 +4092 6502 0.4250 +4092 6591 0.6750 +4092 6615 0.6350 +4092 6714 0.4270 +4092 6722 0.5250 +4092 6772 0.9020 +4092 6774 0.5300 +4092 6885 0.5950 +4092 6934 0.6610 +4092 7003 0.5080 +4092 7040 0.9890 +4092 7041 0.6580 +4092 7042 0.8980 +4092 7043 0.7830 +4092 7046 0.9990 +4092 7048 0.9940 +4092 7049 0.5250 +4092 7050 0.6800 +4092 7052 0.4300 +4092 7057 0.4500 +4092 7069 0.5070 +4092 7071 0.6920 +4092 7076 0.4730 +4092 7124 0.5400 +4092 7157 0.6650 +4092 7159 0.5320 +4092 7189 0.4230 +4092 7311 0.4990 +4092 7314 0.5130 +4092 7316 0.5410 +4092 7332 0.5210 +4092 7514 0.5500 +4092 7528 0.5780 +4092 7837 0.4710 +4092 8091 0.6800 +4092 8237 0.6540 +4092 8312 0.9240 +4092 8313 0.6640 +4092 8462 0.4220 +4092 8554 0.5150 +4092 8646 0.5490 +4092 8841 0.6750 +4092 8848 0.4460 +4092 8850 0.4350 +4092 8916 0.4140 +4092 9021 0.4300 +4092 9223 0.4060 +4092 9241 0.4370 +4092 9314 0.4400 +4092 9372 0.7780 +4092 9765 0.6680 +4092 9817 0.5060 +4092 9839 0.4510 +4092 9958 0.9470 +4092 10013 0.6200 +4092 10014 0.5780 +4092 10413 0.9980 +4092 10454 0.6260 +4092 10468 0.4560 +4092 10617 0.5990 +4092 10766 0.4950 +4092 10987 0.4640 +4092 11059 0.9740 +4092 11060 0.9470 +4092 11171 0.9590 +4092 11228 0.4260 +4092 22938 0.7810 +4092 23072 0.4930 +4092 23118 0.9400 +4092 23327 0.9990 +4092 23411 0.7200 +4092 23414 0.4610 +4092 23439 0.7850 +4092 23558 0.4590 +4092 23645 0.9450 +4092 25805 0.9770 +4092 25937 0.6700 +4092 26585 0.6150 +4092 26994 0.5170 +4092 27161 0.5430 +4092 27250 0.6980 +4092 29102 0.5870 +4092 50507 0.4050 +4092 50943 0.4420 +4092 51132 0.7130 +4092 51176 0.8110 +4092 51377 0.9930 +4092 51588 0.7480 +4092 54778 0.9970 +4092 56937 0.4590 +4092 57154 0.9990 +4092 57162 0.5470 +4092 57520 0.4920 +4092 60436 0.6710 +4092 64750 0.9990 +4092 79026 0.5020 +4092 83737 0.8660 +4092 84294 0.4250 +4092 130399 0.5250 +4092 137902 0.4650 +4092 151449 0.4210 +4092 154796 0.4740 +4092 220213 0.4980 +4092 257397 0.8980 +4092 344658 0.5950 +4093 4094 0.4240 +4093 4853 0.5170 +4093 5074 0.5110 +4093 5091 0.4330 +4093 5132 0.4160 +4093 5396 0.4540 +4093 5594 0.9150 +4093 5595 0.9220 +4093 5678 0.4590 +4093 6497 0.7370 +4093 6498 0.6270 +4093 6572 0.5500 +4093 6907 0.5160 +4093 7040 0.7380 +4093 7042 0.6240 +4093 7043 0.4940 +4093 7046 0.7680 +4093 7048 0.5540 +4093 7173 0.4140 +4093 7321 0.4280 +4093 7323 0.4280 +4093 7832 0.4810 +4093 8091 0.8160 +4093 8200 0.4610 +4093 8646 0.5130 +4093 9201 0.5410 +4093 9210 0.4410 +4093 9241 0.4950 +4093 9372 0.4140 +4093 9496 0.5680 +4093 9765 0.6560 +4093 10140 0.5670 +4093 10220 0.4230 +4093 10287 0.4510 +4093 10755 0.6390 +4093 23095 0.4060 +4093 23592 0.8810 +4093 26960 0.6820 +4093 27302 0.5050 +4093 57154 0.8250 +4093 57817 0.5310 +4093 58487 0.4440 +4093 64750 0.8230 +4093 79572 0.5140 +4093 81603 0.6090 +4093 130399 0.5950 +4093 147381 0.4060 +4093 147409 0.4050 +4093 148738 0.4080 +4093 151449 0.4910 +4093 202151 0.4620 +4093 392255 0.4170 +4093 440275 0.5880 +4094 4097 0.4140 +4094 4159 0.5320 +4094 4360 0.5600 +4094 4602 0.4350 +4094 4609 0.5060 +4094 4646 0.4060 +4094 4647 0.4240 +4094 4772 0.5530 +4094 4773 0.4090 +4094 4778 0.9860 +4094 4779 0.9700 +4094 4780 0.9980 +4094 4783 0.4620 +4094 4790 0.6500 +4094 4864 0.5210 +4094 4893 0.4020 +4094 5021 0.5210 +4094 5080 0.9000 +4094 5122 0.4560 +4094 5309 0.6790 +4094 5336 0.4630 +4094 5468 0.4190 +4094 5578 0.4200 +4094 5925 0.5440 +4094 6095 0.5530 +4094 6097 0.5460 +4094 6304 0.5980 +4094 6382 0.4200 +4094 6659 0.5670 +4094 6660 0.6030 +4094 6662 0.6640 +4094 6688 0.4730 +4094 6772 0.4740 +4094 6774 0.5850 +4094 6775 0.4640 +4094 6776 0.4190 +4094 6777 0.4160 +4094 6778 0.5200 +4094 6907 0.4830 +4094 6932 0.4210 +4094 7040 0.5730 +4094 7050 0.4210 +4094 7124 0.4870 +4094 7157 0.7310 +4094 7189 0.4280 +4094 7295 0.4450 +4094 7392 0.4540 +4094 7399 0.5150 +4094 7466 0.4560 +4094 7468 0.6550 +4094 8034 0.4180 +4094 8061 0.8490 +4094 8078 0.5920 +4094 8320 0.4120 +4094 8419 0.4910 +4094 8452 0.6780 +4094 8467 0.5650 +4094 8549 0.4160 +4094 8841 0.5750 +4094 9034 0.4270 +4094 9314 0.5420 +4094 9603 0.9050 +4094 9817 0.8540 +4094 9935 0.7460 +4094 9978 0.4550 +4094 10413 0.5750 +4094 10536 0.6590 +4094 10538 0.8180 +4094 10664 0.4190 +4094 11254 0.5070 +4094 22806 0.4140 +4094 25925 0.5270 +4094 25937 0.5170 +4094 25970 0.5130 +4094 27306 0.4290 +4094 29851 0.6120 +4094 30009 0.7450 +4094 50615 0.4080 +4094 50616 0.4590 +4094 50943 0.5850 +4094 51095 0.7350 +4094 51741 0.5890 +4094 55553 0.5140 +4094 55733 0.5780 +4094 55922 0.6530 +4094 60468 0.9930 +4094 63893 0.4220 +4094 64798 0.6480 +4094 79068 0.5900 +4094 79661 0.9460 +4094 80790 0.5760 +4094 81603 0.5750 +4094 84232 0.5890 +4094 84301 0.4490 +4094 84922 0.5470 +4094 112744 0.4130 +4094 117531 0.4010 +4094 122953 0.6720 +4094 149233 0.4710 +4094 246213 0.4250 +4094 252969 0.5740 +4094 338557 0.4150 +4094 102723407 0.7490 +4097 4486 0.4070 +4097 4778 0.9980 +4097 4779 0.9980 +4097 4780 0.9990 +4097 4783 0.4440 +4097 5021 0.6050 +4097 5226 0.5990 +4097 5833 0.4060 +4097 5966 0.4050 +4097 7399 0.4460 +4097 7975 0.9750 +4097 8061 0.5350 +4097 8452 0.5060 +4097 8878 0.8150 +4097 9603 0.9370 +4097 9817 0.6280 +4097 9841 0.4320 +4097 9935 0.5180 +4097 10538 0.4960 +4097 11243 0.4330 +4097 23764 0.9100 +4097 51547 0.5290 +4097 55509 0.4170 +4097 55733 0.7370 +4097 57343 0.4470 +4097 57680 0.8770 +4097 60468 0.9810 +4097 79661 0.6420 +4097 84301 0.4970 +4097 122953 0.5990 +4097 159989 0.5910 +4097 252969 0.4450 +4097 100527963 0.4400 +4099 4118 0.5610 +4099 4131 0.6170 +4099 4133 0.5390 +4099 4137 0.4260 +4099 4155 0.9890 +4099 4336 0.7630 +4099 4340 0.9350 +4099 4504 0.4320 +4099 4548 0.4040 +4099 4741 0.4310 +4099 4744 0.5410 +4099 4747 0.5120 +4099 4803 0.5260 +4099 4804 0.8720 +4099 4821 0.4350 +4099 4908 0.5880 +4099 4909 0.5020 +4099 4923 0.4560 +4099 4974 0.9930 +4099 5010 0.5950 +4099 5156 0.5190 +4099 5354 0.8970 +4099 5375 0.4010 +4099 5376 0.5210 +4099 5802 0.4540 +4099 5803 0.4160 +4099 5818 0.4490 +4099 6252 0.5150 +4099 6253 0.4470 +4099 6272 0.5540 +4099 6285 0.4690 +4099 6480 0.4490 +4099 6489 0.4820 +4099 6614 0.5100 +4099 6663 0.9050 +4099 6853 0.4060 +4099 6855 0.5870 +4099 6900 0.4540 +4099 7368 0.5930 +4099 7905 0.4390 +4099 8506 0.6410 +4099 8655 0.9520 +4099 9019 0.8210 +4099 9172 0.8170 +4099 9294 0.4910 +4099 9362 0.4090 +4099 9444 0.6340 +4099 10215 0.7080 +4099 10313 0.4640 +4099 10371 0.4690 +4099 10436 0.4790 +4099 23114 0.4780 +4099 23620 0.4730 +4099 27090 0.4120 +4099 28986 0.4830 +4099 29992 0.6830 +4099 30815 0.4400 +4099 51090 0.4910 +4099 55504 0.8390 +4099 57142 0.9890 +4099 57165 0.6290 +4099 57471 0.5600 +4099 57716 0.6340 +4099 57863 0.4190 +4099 60484 0.5770 +4099 63827 0.4910 +4099 64834 0.4020 +4099 65078 0.9990 +4099 84059 0.7880 +4099 84894 0.9490 +4099 93377 0.8770 +4099 116150 0.5940 +4099 116448 0.6940 +4099 118442 0.4030 +4099 132204 0.5070 +4099 146713 0.4530 +4099 146760 0.7640 +4099 158931 0.4380 +4099 203190 0.4370 +4099 256472 0.4110 +4099 283999 0.7990 +4099 284266 0.6600 +4099 349667 0.9230 +4100 4102 0.6820 +4100 4103 0.5470 +4100 4105 0.7820 +4100 4109 0.5200 +4100 4110 0.4650 +4100 4111 0.7910 +4100 4113 0.4350 +4100 4114 0.5270 +4100 4115 0.4990 +4100 4253 0.4590 +4100 4609 0.4580 +4100 4675 0.4110 +4100 5090 0.4380 +4100 5891 0.7810 +4100 5987 0.4840 +4100 6351 0.4240 +4100 6404 0.6300 +4100 6490 0.7510 +4100 6674 0.4540 +4100 6756 0.7260 +4100 6757 0.8160 +4100 6758 0.4110 +4100 6759 0.6370 +4100 7157 0.5570 +4100 7299 0.7020 +4100 7490 0.4570 +4100 8712 0.5450 +4100 8900 0.4290 +4100 9447 0.4340 +4100 9947 0.4900 +4100 10155 0.5310 +4100 11074 0.8780 +4100 22858 0.6340 +4100 22938 0.8470 +4100 23137 0.4240 +4100 23532 0.7280 +4100 26057 0.4230 +4100 30014 0.5980 +4100 30848 0.8450 +4100 50834 0.4010 +4100 51438 0.4890 +4100 51473 0.5610 +4100 54471 0.6210 +4100 54780 0.7680 +4100 54882 0.4220 +4100 54967 0.4710 +4100 55510 0.8820 +4100 55511 0.7270 +4100 56000 0.4090 +4100 56001 0.4160 +4100 56904 0.4700 +4100 64219 0.5150 +4100 64663 0.4950 +4100 64770 0.5340 +4100 79663 0.4200 +4100 80028 0.4390 +4100 81569 0.4210 +4100 84708 0.5090 +4100 90678 0.5430 +4100 127247 0.4290 +4100 139135 0.5930 +4100 140690 0.4320 +4100 158511 0.8200 +4100 158809 0.6470 +4100 197370 0.6270 +4100 203413 0.6140 +4100 266743 0.6550 +4100 286053 0.4310 +4100 339512 0.4190 +4100 389903 0.4320 +4100 493861 0.6320 +4100 541466 0.4970 +4100 548313 0.6160 +4100 645073 0.7060 +4100 653067 0.4760 +4100 653220 0.6190 +4100 727837 0.6790 +4100 728075 0.5840 +4100 728343 0.4010 +4100 728712 0.5930 +4100 729447 0.9420 +4100 100008586 0.9580 +4100 102723547 0.4310 +4100 102724473 0.4280 +4101 4102 0.8670 +4101 4105 0.6450 +4101 4111 0.7760 +4101 6490 0.6400 +4101 6756 0.4250 +4101 6757 0.4900 +4101 7157 0.5750 +4101 7299 0.5750 +4101 8841 0.4280 +4101 10155 0.5940 +4101 23137 0.4940 +4101 23532 0.5620 +4101 30848 0.7940 +4101 54780 0.4400 +4101 55510 0.5500 +4101 64110 0.4970 +4101 64648 0.4170 +4101 64663 0.4590 +4101 79677 0.4920 +4101 158511 0.8680 +4101 197370 0.5510 +4101 266740 0.9990 +4101 286053 0.5080 +4101 389903 0.6110 +4101 493861 0.4260 +4101 541466 0.4570 +4101 645073 0.5450 +4101 653220 0.4530 +4101 727837 0.4290 +4101 729428 0.5150 +4101 729447 0.6140 +4101 100008586 0.4630 +4101 102723547 0.4470 +4102 4103 0.5720 +4102 4105 0.9990 +4102 4107 0.4180 +4102 4111 0.9990 +4102 4113 0.4130 +4102 5562 0.4070 +4102 6431 0.4200 +4102 6490 0.8700 +4102 6756 0.6590 +4102 6757 0.7180 +4102 6758 0.4190 +4102 6759 0.6300 +4102 7157 0.7070 +4102 7179 0.7840 +4102 7273 0.7130 +4102 7293 0.4260 +4102 7299 0.8910 +4102 7490 0.5360 +4102 9240 0.4280 +4102 9912 0.4160 +4102 9947 0.5280 +4102 10042 0.4350 +4102 10155 0.9960 +4102 10232 0.4510 +4102 10687 0.4360 +4102 11153 0.6010 +4102 23137 0.5060 +4102 23532 0.7770 +4102 25766 0.5290 +4102 25853 0.4730 +4102 29126 0.5680 +4102 30014 0.4820 +4102 30848 0.8970 +4102 51213 0.4430 +4102 51270 0.4320 +4102 51438 0.4390 +4102 54780 0.4360 +4102 55660 0.6240 +4102 56160 0.4780 +4102 57559 0.6240 +4102 64110 0.5330 +4102 64663 0.4670 +4102 79677 0.4920 +4102 124944 0.6200 +4102 139135 0.6110 +4102 158511 0.9800 +4102 197370 0.5000 +4102 203413 0.5570 +4102 266740 0.8080 +4102 286053 0.4750 +4102 387267 0.4350 +4102 389903 0.7210 +4102 493861 0.4800 +4102 541466 0.4810 +4102 548313 0.6060 +4102 645073 0.5430 +4102 653067 0.4120 +4102 653220 0.5390 +4102 727837 0.6910 +4102 728712 0.4680 +4102 729428 0.4280 +4102 729447 0.9570 +4102 100008586 0.9550 +4102 102723547 0.5070 +4102 102724473 0.4700 +4103 4105 0.4210 +4103 4107 0.4150 +4103 4108 0.6510 +4103 4109 0.8630 +4103 4111 0.4690 +4103 5620 0.4300 +4103 5716 0.5480 +4103 6490 0.4960 +4103 6657 0.5110 +4103 6756 0.6380 +4103 6757 0.7200 +4103 6759 0.6420 +4103 7022 0.4430 +4103 7083 0.4600 +4103 7141 0.4360 +4103 7259 0.4880 +4103 7381 0.6200 +4103 8087 0.4240 +4103 8433 0.4390 +4103 10806 0.5140 +4103 23137 0.5290 +4103 23270 0.6100 +4103 23532 0.7390 +4103 23558 0.5340 +4103 30014 0.4520 +4103 30848 0.9240 +4103 53340 0.4330 +4103 54514 0.4750 +4103 54780 0.5120 +4103 54967 0.4710 +4103 55511 0.5050 +4103 56852 0.8880 +4103 56890 0.5330 +4103 64648 0.4610 +4103 64663 0.4620 +4103 66037 0.4240 +4103 79677 0.5130 +4103 80700 0.4340 +4103 84948 0.5510 +4103 139135 0.5400 +4103 139604 0.6410 +4103 140691 0.7630 +4103 150483 0.4250 +4103 154796 0.5970 +4103 154810 0.4210 +4103 158521 0.4100 +4103 166647 0.5200 +4103 170626 0.4330 +4103 197370 0.5000 +4103 203413 0.4970 +4103 220042 0.4090 +4103 286053 0.4920 +4103 389903 0.4180 +4103 493861 0.4910 +4103 541466 0.5500 +4103 548313 0.6260 +4103 645073 0.5390 +4103 653067 0.4720 +4103 653220 0.5040 +4103 727837 0.7060 +4103 728712 0.4580 +4103 729428 0.4080 +4103 729447 0.5470 +4103 100008586 0.5270 +4103 102723547 0.4470 +4105 4110 0.5300 +4105 4111 0.9990 +4105 6757 0.4890 +4105 7289 0.5250 +4105 7299 0.4260 +4105 9912 0.4720 +4105 9947 0.4350 +4105 10155 0.7240 +4105 23137 0.4940 +4105 23532 0.4150 +4105 23619 0.4160 +4105 29945 0.4460 +4105 30848 0.8780 +4105 51434 0.4370 +4105 51438 0.4080 +4105 51529 0.4340 +4105 54780 0.4260 +4105 64682 0.4220 +4105 79677 0.4920 +4105 158511 0.9250 +4105 197370 0.5000 +4105 246184 0.4370 +4105 266740 0.4680 +4105 266743 0.4700 +4105 286053 0.4750 +4105 390078 0.4310 +4105 493861 0.4260 +4105 645073 0.4780 +4105 729447 0.5050 +4105 100008586 0.5620 +4105 102723547 0.4450 +4107 23137 0.4940 +4107 23424 0.4570 +4107 25801 0.6920 +4107 51438 0.4020 +4107 54780 0.4260 +4107 79677 0.4920 +4107 158521 0.4310 +4107 197370 0.5000 +4107 286053 0.4750 +4107 340542 0.6270 +4107 493861 0.4260 +4107 541578 0.4020 +4107 101927685 0.5120 +4108 4109 0.6470 +4108 9947 0.4470 +4108 26060 0.5850 +4108 30848 0.5940 +4108 144110 0.4320 +4108 246100 0.4180 +4108 101927685 0.4460 +4109 4111 0.4770 +4109 5451 0.4200 +4109 5585 0.4230 +4109 6191 0.4060 +4109 6490 0.6940 +4109 6756 0.5480 +4109 6757 0.6400 +4109 6759 0.6210 +4109 7299 0.4830 +4109 8204 0.4870 +4109 8850 0.5990 +4109 9749 0.4250 +4109 9947 0.4020 +4109 10474 0.6070 +4109 10499 0.5660 +4109 23137 0.4940 +4109 23532 0.5720 +4109 29902 0.6340 +4109 30848 0.7610 +4109 51438 0.4720 +4109 51480 0.4830 +4109 54780 0.4260 +4109 54967 0.5360 +4109 55511 0.4370 +4109 55810 0.6380 +4109 56001 0.4100 +4109 57325 0.4200 +4109 64784 0.4240 +4109 79677 0.4970 +4109 84250 0.5370 +4109 90459 0.5910 +4109 139135 0.7110 +4109 158511 0.5800 +4109 158521 0.4340 +4109 197370 0.5100 +4109 203413 0.4110 +4109 286053 0.4750 +4109 389903 0.6570 +4109 493861 0.4260 +4109 541466 0.4820 +4109 548313 0.5960 +4109 653067 0.4200 +4109 653220 0.4800 +4109 727837 0.5930 +4109 728075 0.4740 +4109 728096 0.4470 +4109 729447 0.4380 +4109 102723547 0.4470 +4109 102723631 0.4040 +4110 5241 0.6350 +4110 6770 0.6090 +4110 9767 0.5850 +4110 10075 0.7280 +4110 10155 0.4450 +4110 10499 0.7840 +4110 23059 0.5100 +4110 23137 0.5140 +4110 25953 0.6830 +4110 30848 0.4630 +4110 51585 0.7780 +4110 54583 0.7520 +4110 54780 0.4500 +4110 55621 0.5970 +4110 64770 0.4280 +4110 79677 0.5080 +4110 81850 0.4140 +4110 112398 0.5520 +4110 112399 0.5570 +4110 130013 0.4260 +4110 197370 0.5120 +4110 286053 0.4890 +4110 353141 0.4600 +4110 493861 0.4610 +4110 100008586 0.4150 +4110 101927685 0.4400 +4110 102723547 0.4180 +4111 4113 0.4250 +4111 6490 0.5670 +4111 6756 0.5330 +4111 6757 0.5300 +4111 7273 0.5850 +4111 7299 0.4260 +4111 8712 0.4670 +4111 9502 0.4160 +4111 9947 0.5380 +4111 10214 0.4410 +4111 23137 0.4940 +4111 23532 0.6310 +4111 29979 0.4110 +4111 30848 0.6920 +4111 51438 0.5100 +4111 54780 0.4260 +4111 64663 0.4380 +4111 64693 0.4980 +4111 79677 0.5000 +4111 158511 0.9990 +4111 197370 0.5100 +4111 266740 0.5180 +4111 286053 0.4860 +4111 339345 0.6260 +4111 388272 0.4640 +4111 389903 0.5700 +4111 493861 0.4260 +4111 541466 0.4740 +4111 645073 0.5600 +4111 727837 0.4170 +4111 729428 0.5680 +4111 729447 0.6160 +4111 100008586 0.5870 +4111 102723547 0.4800 +4112 5207 0.4030 +4112 6756 0.4310 +4112 6757 0.4990 +4112 6758 0.4600 +4112 8712 0.4490 +4112 9506 0.4120 +4112 10214 0.4050 +4112 23137 0.5240 +4112 30014 0.4650 +4112 30848 0.4740 +4112 53940 0.4360 +4112 54780 0.5670 +4112 90933 0.4960 +4112 121273 0.5700 +4112 139793 0.4740 +4112 158521 0.4190 +4112 255313 0.4610 +4112 493861 0.6200 +4112 728712 0.4340 +4113 4674 0.4540 +4113 4675 0.5050 +4113 5502 0.4290 +4113 6756 0.4840 +4113 6757 0.4300 +4113 6758 0.4040 +4113 7047 0.4470 +4113 8228 0.4350 +4113 8712 0.4700 +4113 30014 0.4710 +4113 51438 0.4130 +4113 51481 0.4010 +4113 53336 0.4910 +4113 53940 0.4830 +4113 55859 0.4250 +4113 64648 0.5020 +4113 64663 0.4760 +4113 204474 0.6090 +4113 283518 0.4230 +4113 389860 0.4950 +4113 645073 0.5380 +4113 653220 0.4450 +4113 654254 0.4020 +4113 728712 0.4580 +4113 729428 0.5310 +4113 729447 0.5250 +4113 100008586 0.4130 +4114 5510 0.5930 +4114 57481 0.4440 +4114 256643 0.5270 +4114 339416 0.4240 +4115 6093 0.5910 +4115 10881 0.4210 +4115 56154 0.4880 +4115 56159 0.5050 +4115 80705 0.4340 +4115 84225 0.4750 +4115 93426 0.4240 +4115 170626 0.4440 +4115 197370 0.4050 +4115 646603 0.4200 +4116 4236 0.4730 +4116 4343 0.4940 +4116 4670 0.8020 +4116 4686 0.8990 +4116 4809 0.6180 +4116 4904 0.6530 +4116 4927 0.6360 +4116 4928 0.5720 +4116 5198 0.5660 +4116 5356 0.9310 +4116 5411 0.9700 +4116 5431 0.4070 +4116 5686 0.5420 +4116 5725 0.6040 +4116 5903 0.5500 +4116 5935 0.6470 +4116 5976 0.9940 +4116 6118 0.4190 +4116 6122 0.6760 +4116 6124 0.6900 +4116 6128 0.6770 +4116 6129 0.6500 +4116 6130 0.7110 +4116 6132 0.6580 +4116 6137 0.6780 +4116 6138 0.6370 +4116 6139 0.6380 +4116 6141 0.6720 +4116 6143 0.6450 +4116 6144 0.5670 +4116 6152 0.6260 +4116 6154 0.5800 +4116 6158 0.6760 +4116 6188 0.6920 +4116 6194 0.6190 +4116 6202 0.6890 +4116 6203 0.6890 +4116 6205 0.5540 +4116 6229 0.6330 +4116 6396 0.6410 +4116 6426 0.9990 +4116 6427 0.8830 +4116 6428 0.9980 +4116 6429 0.8530 +4116 6430 0.6980 +4116 6431 0.8560 +4116 6432 0.9000 +4116 6434 0.8410 +4116 6625 0.7700 +4116 6626 0.5180 +4116 6627 0.8680 +4116 6628 0.9400 +4116 6629 0.8790 +4116 6631 0.4440 +4116 6632 0.9150 +4116 6633 0.9310 +4116 6634 0.9630 +4116 6635 0.9570 +4116 6636 0.9400 +4116 6637 0.9150 +4116 6651 0.6610 +4116 6936 0.5030 +4116 7175 0.7480 +4116 7307 0.7530 +4116 7314 0.4500 +4116 7341 0.4120 +4116 7431 0.5590 +4116 7737 0.4810 +4116 7913 0.5220 +4116 7919 0.9830 +4116 8021 0.5410 +4116 8086 0.7670 +4116 8106 0.5350 +4116 8148 0.4380 +4116 8175 0.4530 +4116 8290 0.6190 +4116 8347 0.5920 +4116 8361 0.6000 +4116 8449 0.4840 +4116 8480 0.8260 +4116 8531 0.6170 +4116 8563 0.6010 +4116 8683 0.8670 +4116 8896 0.8610 +4116 8899 0.6240 +4116 9295 0.5600 +4116 9343 0.9470 +4116 9410 0.9400 +4116 9584 0.6560 +4116 9631 0.5330 +4116 9670 0.9380 +4116 9688 0.5660 +4116 9704 0.4520 +4116 9716 0.9310 +4116 9774 0.7920 +4116 9775 0.9990 +4116 9782 0.7890 +4116 9785 0.9130 +4116 9818 0.5550 +4116 9877 0.8110 +4116 9883 0.4990 +4116 9887 0.6480 +4116 9939 0.9990 +4116 9967 0.6750 +4116 9972 0.5420 +4116 9984 0.6150 +4116 9987 0.6360 +4116 10189 0.9920 +4116 10212 0.8100 +4116 10236 0.5560 +4116 10250 0.9590 +4116 10262 0.4160 +4116 10283 0.5320 +4116 10284 0.9650 +4116 10286 0.9360 +4116 10291 0.7960 +4116 10376 0.5260 +4116 10432 0.4980 +4116 10450 0.9290 +4116 10465 0.4960 +4116 10482 0.7550 +4116 10492 0.4250 +4116 10521 0.7400 +4116 10569 0.9170 +4116 10576 0.4320 +4116 10594 0.9480 +4116 10657 0.4170 +4116 10694 0.4180 +4116 10762 0.5640 +4116 10772 0.7450 +4116 10921 0.9890 +4116 10929 0.6660 +4116 10946 0.5440 +4116 10949 0.4250 +4116 10978 0.5510 +4116 10992 0.7600 +4116 11051 0.8420 +4116 11052 0.6830 +4116 11097 0.7150 +4116 11325 0.5300 +4116 11338 0.7430 +4116 22794 0.9990 +4116 22913 0.6630 +4116 22916 0.8240 +4116 22938 0.9370 +4116 22985 0.9500 +4116 23020 0.9410 +4116 23049 0.8990 +4116 23091 0.6070 +4116 23165 0.5290 +4116 23225 0.5040 +4116 23279 0.6020 +4116 23293 0.7500 +4116 23381 0.6580 +4116 23398 0.8330 +4116 23435 0.4970 +4116 23450 0.7910 +4116 23451 0.7940 +4116 23511 0.5090 +4116 23521 0.6360 +4116 23524 0.9290 +4116 23636 0.5810 +4116 23658 0.4920 +4116 24144 0.5750 +4116 25949 0.8110 +4116 26017 0.8380 +4116 26019 0.9810 +4116 26093 0.9570 +4116 26097 0.9200 +4116 26986 0.4800 +4116 27238 0.4880 +4116 27258 0.5470 +4116 27316 0.5240 +4116 27339 0.9470 +4116 29107 0.4160 +4116 29896 0.7680 +4116 51121 0.5560 +4116 51213 0.6300 +4116 51340 0.9190 +4116 51362 0.9630 +4116 51503 0.9380 +4116 51585 0.5710 +4116 51634 0.5170 +4116 51639 0.7350 +4116 51645 0.8340 +4116 51755 0.4880 +4116 53371 0.6230 +4116 54464 0.4050 +4116 55100 0.8140 +4116 55110 0.9950 +4116 55181 0.6290 +4116 55421 0.6370 +4116 55629 0.6740 +4116 55696 0.9390 +4116 55702 0.8250 +4116 55706 0.5200 +4116 55746 0.6190 +4116 55802 0.7060 +4116 56006 0.6180 +4116 56949 0.9230 +4116 57107 0.6890 +4116 57122 0.5640 +4116 57187 0.7090 +4116 57703 0.9710 +4116 58506 0.6300 +4116 58509 0.8330 +4116 64221 0.5350 +4116 65109 0.9990 +4116 65110 0.9990 +4116 79018 0.7520 +4116 79023 0.6360 +4116 79084 0.5470 +4116 79228 0.5580 +4116 79576 0.8030 +4116 79634 0.5440 +4116 79706 0.8410 +4116 79753 0.7110 +4116 79869 0.7440 +4116 79882 0.6710 +4116 79902 0.5400 +4116 80011 0.8000 +4116 80145 0.6130 +4116 81929 0.7080 +4116 83443 0.6230 +4116 84248 0.8410 +4116 84271 0.8940 +4116 84305 0.9990 +4116 84321 0.6110 +4116 84324 0.8630 +4116 84811 0.4360 +4116 84844 0.6080 +4116 91746 0.6250 +4116 129401 0.5790 +4116 135295 0.6600 +4116 143884 0.6010 +4116 163859 0.8020 +4116 167227 0.4070 +4116 192111 0.5980 +4116 199746 0.5290 +4116 220988 0.4520 +4116 221613 0.5970 +4116 317649 0.5160 +4116 348995 0.6020 +4116 100101267 0.5070 +4116 100534599 0.8050 +4117 4171 0.7870 +4117 4172 0.8010 +4117 4173 0.7820 +4117 4174 0.7820 +4117 4175 0.7820 +4117 4176 0.7820 +4117 4998 0.5720 +4117 4999 0.7820 +4117 5000 0.7830 +4117 5001 0.7820 +4117 5961 0.4100 +4117 6100 0.4120 +4117 6103 0.4860 +4117 8202 0.4430 +4117 9145 0.5400 +4117 23247 0.5490 +4117 23595 0.7830 +4117 25945 0.6710 +4117 51343 0.4520 +4117 79947 0.4140 +4117 81620 0.7820 +4117 84515 0.4490 +4117 116211 0.4490 +4117 157777 0.4490 +4117 196446 0.4170 +4117 254394 0.5820 +4118 4155 0.5170 +4118 4336 0.4100 +4118 4867 0.6420 +4118 5354 0.4860 +4118 5376 0.4060 +4118 6557 0.4430 +4118 6714 0.4930 +4118 6804 0.5190 +4118 7096 0.4700 +4118 8689 0.4850 +4118 23157 0.5070 +4118 23705 0.4070 +4118 51090 0.6820 +4118 64423 0.7120 +4118 84929 0.4370 +4118 93377 0.4140 +4118 170482 0.4870 +4118 100506658 0.7010 +4121 4122 0.8480 +4121 4123 0.6500 +4121 4124 0.9700 +4121 4125 0.5260 +4121 4245 0.9590 +4121 4247 0.6350 +4121 4249 0.5320 +4121 4905 0.5750 +4121 5557 0.4030 +4121 6400 0.4200 +4121 6441 0.4750 +4121 6480 0.4790 +4121 6484 0.4660 +4121 6578 0.5980 +4121 6811 0.5350 +4121 7541 0.4080 +4121 7841 0.7390 +4121 8774 0.5280 +4121 8775 0.5010 +4121 8813 0.4960 +4121 9382 0.5260 +4121 9527 0.5660 +4121 9950 0.5010 +4121 10195 0.5270 +4121 10332 0.4630 +4121 10466 0.5170 +4121 10652 0.4990 +4121 10905 0.9230 +4121 10956 0.4710 +4121 10959 0.4750 +4121 11253 0.9450 +4121 11282 0.5280 +4121 11320 0.4450 +4121 22796 0.5670 +4121 23193 0.5580 +4121 23324 0.4170 +4121 23592 0.5450 +4121 25839 0.6260 +4121 26003 0.4840 +4121 27248 0.5060 +4121 27333 0.5000 +4121 29880 0.4100 +4121 29929 0.4550 +4121 30835 0.5980 +4121 50489 0.5340 +4121 51272 0.4990 +4121 51385 0.4320 +4121 55757 0.5460 +4121 55890 0.4140 +4121 56886 0.6040 +4121 57134 0.9070 +4121 57511 0.5170 +4121 63908 0.4990 +4121 64772 0.5410 +4121 79087 0.4880 +4121 79623 0.4460 +4121 83452 0.5070 +4121 83548 0.5210 +4121 91949 0.5500 +4121 146664 0.4160 +4121 170384 0.4300 +4122 4123 0.4950 +4122 4124 0.9060 +4122 4245 0.9700 +4122 4247 0.9710 +4122 4248 0.4270 +4122 4249 0.6320 +4122 4905 0.5030 +4122 6480 0.4070 +4122 6811 0.6180 +4122 7841 0.4880 +4122 8774 0.5380 +4122 8775 0.5040 +4122 9331 0.6040 +4122 9382 0.6300 +4122 9527 0.7090 +4122 9950 0.5460 +4122 10466 0.5400 +4122 10618 0.4630 +4122 10652 0.5260 +4122 10678 0.4030 +4122 10905 0.8110 +4122 11046 0.8240 +4122 11253 0.6290 +4122 11282 0.5900 +4122 11320 0.4870 +4122 22796 0.5660 +4122 23169 0.8110 +4122 25839 0.5110 +4122 27333 0.5930 +4122 51272 0.5080 +4122 55343 0.8550 +4122 55624 0.4860 +4122 57134 0.8280 +4122 57511 0.5570 +4122 63908 0.5090 +4122 64689 0.4440 +4122 83452 0.5060 +4122 83548 0.5470 +4122 83639 0.4220 +4122 91949 0.5690 +4122 146664 0.4540 +4123 4124 0.5480 +4123 4125 0.9940 +4123 4126 0.7810 +4123 4245 0.4420 +4123 4351 0.5640 +4123 5265 0.5770 +4123 5728 0.7320 +4123 6400 0.5100 +4123 6476 0.6130 +4123 6532 0.5130 +4123 7494 0.5170 +4123 7841 0.7950 +4123 7915 0.4070 +4123 7916 0.4570 +4123 7993 0.4040 +4123 8707 0.4400 +4123 8720 0.4480 +4123 8878 0.5540 +4123 8972 0.6540 +4123 9695 0.9420 +4123 10020 0.6020 +4123 10073 0.4330 +4123 10724 0.5910 +4123 10905 0.5780 +4123 10956 0.6690 +4123 11253 0.9650 +4123 11345 0.4980 +4123 22926 0.4760 +4123 23193 0.4540 +4123 23324 0.9280 +4123 23549 0.5150 +4123 23710 0.4970 +4123 27248 0.6290 +4123 29926 0.4310 +4123 29990 0.4390 +4123 54103 0.4820 +4123 54431 0.6420 +4123 54464 0.7430 +4123 55741 0.7170 +4123 55757 0.4860 +4123 55768 0.5990 +4123 56886 0.6150 +4123 57134 0.5010 +4123 64772 0.8380 +4123 79087 0.4650 +4123 80267 0.6030 +4123 81858 0.5090 +4123 85378 0.6330 +4123 93432 0.4540 +4123 118460 0.4960 +4123 132158 0.8180 +4123 142678 0.5480 +4123 143570 0.4050 +4123 148789 0.4140 +4123 166979 0.4630 +4123 285203 0.4220 +4123 339669 0.4470 +4124 4245 0.9720 +4124 4247 0.9780 +4124 4248 0.5060 +4124 4249 0.6730 +4124 4905 0.5130 +4124 5727 0.4650 +4124 5870 0.4560 +4124 6480 0.5830 +4124 6521 0.4970 +4124 6811 0.7000 +4124 7841 0.5460 +4124 8774 0.5730 +4124 8775 0.5470 +4124 9276 0.8590 +4124 9334 0.4050 +4124 9382 0.6870 +4124 9527 0.7700 +4124 9695 0.6530 +4124 9950 0.6640 +4124 10466 0.6620 +4124 10483 0.4940 +4124 10618 0.5290 +4124 10652 0.6170 +4124 10678 0.4300 +4124 10905 0.9360 +4124 11046 0.7670 +4124 11253 0.9300 +4124 11282 0.5490 +4124 11320 0.4480 +4124 22796 0.6760 +4124 22872 0.4060 +4124 23169 0.7760 +4124 23193 0.4570 +4124 25834 0.4180 +4124 25839 0.6760 +4124 26003 0.4650 +4124 27333 0.6660 +4124 29071 0.4050 +4124 51272 0.5630 +4124 55204 0.4150 +4124 55343 0.8270 +4124 55568 0.4010 +4124 55624 0.5000 +4124 55741 0.8150 +4124 56913 0.5160 +4124 57134 0.8180 +4124 57511 0.6560 +4124 57578 0.4060 +4124 60487 0.4400 +4124 63908 0.4990 +4124 64083 0.4620 +4124 64689 0.5120 +4124 65084 0.6180 +4124 79053 0.4360 +4124 79087 0.4270 +4124 80267 0.9060 +4124 83452 0.5140 +4124 83548 0.7580 +4124 90355 0.4730 +4124 91949 0.6930 +4124 146059 0.4280 +4124 146664 0.4460 +4124 159989 0.5710 +4124 201595 0.4130 +4125 4126 0.9760 +4125 4668 0.7430 +4125 4669 0.6440 +4125 5476 0.4620 +4125 5547 0.4050 +4125 5641 0.4130 +4125 6448 0.5380 +4125 6609 0.4410 +4125 7841 0.4060 +4125 8635 0.4170 +4125 10577 0.4910 +4125 11253 0.4930 +4125 23324 0.9230 +4125 26270 0.4430 +4125 57134 0.4210 +4125 79158 0.4600 +4125 84572 0.5020 +4125 92922 0.4010 +4125 138050 0.4580 +4126 4668 0.5490 +4126 4669 0.4120 +4126 4758 0.5240 +4126 5188 0.4920 +4126 5621 0.4010 +4126 5832 0.4780 +4126 6448 0.9010 +4126 6888 0.4460 +4126 7357 0.4340 +4126 8972 0.4120 +4126 9563 0.4020 +4126 9942 0.4680 +4126 10993 0.4340 +4126 11181 0.4450 +4126 22901 0.4200 +4126 23196 0.4070 +4126 23324 0.4510 +4126 53371 0.4090 +4126 55278 0.4660 +4126 55349 0.4510 +4126 56898 0.4730 +4126 56912 0.4130 +4126 63826 0.4730 +4126 79158 0.5100 +4126 79642 0.4100 +4126 84063 0.4360 +4126 84572 0.4190 +4126 93210 0.4730 +4126 113675 0.4340 +4126 130589 0.5220 +4126 153642 0.4080 +4126 158584 0.4610 +4126 340075 0.4400 +4126 347527 0.4180 +4126 493856 0.4070 +4128 4129 0.9650 +4128 4524 0.4200 +4128 4693 0.5090 +4128 4803 0.4180 +4128 4852 0.4460 +4128 4915 0.4560 +4128 4988 0.5130 +4128 5020 0.4840 +4128 5021 0.4740 +4128 5053 0.4060 +4128 5071 0.9490 +4128 5163 0.4310 +4128 5164 0.4380 +4128 5165 0.4420 +4128 5166 0.5290 +4128 5179 0.4800 +4128 5199 0.4480 +4128 5232 0.4090 +4128 5409 0.9570 +4128 5443 0.5410 +4128 5468 0.4050 +4128 5550 0.4160 +4128 5617 0.4640 +4128 5663 0.5780 +4128 5743 0.4660 +4128 5860 0.5700 +4128 6303 0.9180 +4128 6403 0.4060 +4128 6530 0.7380 +4128 6531 0.8900 +4128 6532 0.9420 +4128 6570 0.5060 +4128 6571 0.7930 +4128 6581 0.4860 +4128 6622 0.7100 +4128 6774 0.4930 +4128 6857 0.5200 +4128 6863 0.4290 +4128 6869 0.4850 +4128 6999 0.5140 +4128 7037 0.4710 +4128 7054 0.7850 +4128 7076 0.4540 +4128 7124 0.4090 +4128 7166 0.7290 +4128 7299 0.5060 +4128 7403 0.5290 +4128 7416 0.4690 +4128 7498 0.6050 +4128 7837 0.4560 +4128 7915 0.4430 +4128 8290 0.4830 +4128 8356 0.4820 +4128 8564 0.4830 +4128 8573 0.4040 +4128 8639 0.9590 +4128 9177 0.5120 +4128 9360 0.5310 +4128 9380 0.8200 +4128 9563 0.4100 +4128 9739 0.4800 +4128 9927 0.4250 +4128 10059 0.4160 +4128 10280 0.4180 +4128 10295 0.4310 +4128 10327 0.4660 +4128 10362 0.4590 +4128 10786 0.4070 +4128 11185 0.9300 +4128 11188 0.4530 +4128 11315 0.4360 +4128 23186 0.6790 +4128 23411 0.4560 +4128 23621 0.4540 +4128 26275 0.4240 +4128 50507 0.5620 +4128 51317 0.4710 +4128 54205 0.4450 +4128 54471 0.4910 +4128 55268 0.4800 +4128 55278 0.4290 +4128 55328 0.6440 +4128 55536 0.7380 +4128 55758 0.5230 +4128 57016 0.4350 +4128 57687 0.4800 +4128 60482 0.4590 +4128 60506 0.4700 +4128 65018 0.6520 +4128 84656 0.8800 +4128 112483 0.9040 +4128 121278 0.6870 +4128 134864 0.4750 +4128 137682 0.4970 +4128 137902 0.4540 +4128 145482 0.4020 +4128 148811 0.4080 +4128 158584 0.4500 +4128 169355 0.9380 +4128 220074 0.9890 +4128 222962 0.4060 +4128 255239 0.5420 +4128 257202 0.5470 +4128 259307 0.9520 +4128 283248 0.5020 +4128 340390 0.4970 +4128 440093 0.4830 +4128 440686 0.4830 +4128 493869 0.5470 +4128 653604 0.4830 +4128 728378 0.4620 +4128 104909134 0.5060 +4129 4137 0.5280 +4129 4693 0.5270 +4129 4803 0.4500 +4129 4915 0.4720 +4129 4929 0.5080 +4129 4942 0.4060 +4129 5053 0.4020 +4129 5071 0.9700 +4129 5163 0.4310 +4129 5164 0.4470 +4129 5165 0.4590 +4129 5166 0.5180 +4129 5409 0.9580 +4129 5443 0.4470 +4129 5550 0.4370 +4129 5617 0.4580 +4129 5663 0.4110 +4129 5743 0.4960 +4129 5860 0.5920 +4129 6303 0.9200 +4129 6506 0.4380 +4129 6529 0.4050 +4129 6530 0.6850 +4129 6531 0.8820 +4129 6532 0.8680 +4129 6570 0.4740 +4129 6571 0.7920 +4129 6581 0.4740 +4129 6622 0.8150 +4129 6647 0.4150 +4129 6709 0.4900 +4129 6774 0.4820 +4129 6855 0.4070 +4129 6863 0.4440 +4129 6869 0.5240 +4129 6999 0.4770 +4129 7054 0.7920 +4129 7124 0.4220 +4129 7166 0.7560 +4129 7299 0.4870 +4129 7416 0.4590 +4129 7439 0.5050 +4129 7498 0.6020 +4129 7837 0.4780 +4129 7915 0.4530 +4129 8290 0.4620 +4129 8356 0.4620 +4129 8564 0.4770 +4129 8639 0.9740 +4129 9177 0.4360 +4129 9360 0.5250 +4129 9380 0.8210 +4129 9446 0.4200 +4129 9627 0.4470 +4129 9739 0.4850 +4129 9927 0.4530 +4129 10059 0.4320 +4129 10280 0.4470 +4129 10295 0.4440 +4129 10327 0.4790 +4129 10362 0.4570 +4129 10840 0.4460 +4129 11185 0.9500 +4129 11188 0.4520 +4129 11255 0.4980 +4129 11315 0.5830 +4129 23186 0.6880 +4129 23411 0.4150 +4129 23435 0.4220 +4129 23621 0.5410 +4129 51317 0.4680 +4129 54205 0.4890 +4129 55278 0.4290 +4129 55328 0.7130 +4129 55758 0.5240 +4129 57016 0.4570 +4129 60506 0.4730 +4129 65018 0.7430 +4129 80258 0.4380 +4129 84656 0.8800 +4129 112483 0.9040 +4129 119391 0.4090 +4129 120892 0.5250 +4129 121278 0.6920 +4129 134864 0.5000 +4129 137682 0.4970 +4129 137902 0.4780 +4129 158584 0.4560 +4129 169355 0.9330 +4129 220074 0.9900 +4129 257202 0.5810 +4129 259307 0.9500 +4129 283248 0.5100 +4129 340390 0.4970 +4129 440093 0.4620 +4129 440686 0.4620 +4129 493869 0.5810 +4129 653604 0.4620 +4129 728378 0.4280 +4130 4133 0.6610 +4130 4137 0.5220 +4130 4684 0.5450 +4130 4780 0.4160 +4130 5071 0.5710 +4130 5289 0.7200 +4130 6198 0.5450 +4130 6511 0.5180 +4130 6622 0.4820 +4130 6712 0.5160 +4130 6857 0.4900 +4130 7157 0.4760 +4130 7405 0.6020 +4130 7837 0.5370 +4130 7942 0.6020 +4130 8408 0.7690 +4130 8678 0.9460 +4130 8878 0.9940 +4130 8887 0.4670 +4130 9021 0.4280 +4130 9140 0.9280 +4130 9342 0.4020 +4130 9474 0.9040 +4130 9706 0.5100 +4130 9711 0.4050 +4130 9776 0.6770 +4130 9804 0.4470 +4130 9821 0.6660 +4130 9826 0.5490 +4130 9927 0.4830 +4130 10059 0.4810 +4130 10133 0.7560 +4130 10241 0.8960 +4130 10533 0.8660 +4130 10871 0.9120 +4130 10891 0.4660 +4130 11331 0.5730 +4130 11337 0.7870 +4130 11345 0.9230 +4130 22863 0.6670 +4130 23192 0.7390 +4130 23394 0.4080 +4130 23411 0.4480 +4130 23435 0.4180 +4130 23710 0.9260 +4130 26100 0.5180 +4130 30849 0.6200 +4130 51024 0.6110 +4130 53349 0.4700 +4130 54205 0.5050 +4130 55014 0.5100 +4130 55054 0.8560 +4130 55062 0.5060 +4130 55486 0.4600 +4130 55626 0.5980 +4130 55669 0.4460 +4130 55686 0.4450 +4130 57104 0.4010 +4130 57521 0.4180 +4130 58476 0.4830 +4130 60673 0.5990 +4130 64422 0.8750 +4130 64786 0.4420 +4130 65018 0.6360 +4130 79065 0.4970 +4130 79443 0.5610 +4130 81631 0.9680 +4130 83544 0.6880 +4130 83734 0.6570 +4130 84557 0.8660 +4130 84938 0.5030 +4130 84971 0.4770 +4130 115201 0.5190 +4130 137902 0.5370 +4130 139341 0.9360 +4130 440738 0.8410 +4130 441925 0.6630 +4131 4133 0.7240 +4131 4134 0.5700 +4131 4137 0.7520 +4131 4684 0.6210 +4131 4741 0.4480 +4131 4744 0.4410 +4131 4747 0.4780 +4131 5071 0.4790 +4131 5289 0.6680 +4131 5599 0.4040 +4131 6195 0.4760 +4131 6198 0.5060 +4131 6334 0.5750 +4131 6511 0.4310 +4131 6616 0.5700 +4131 6622 0.6390 +4131 6640 0.4410 +4131 6657 0.4420 +4131 6683 0.4360 +4131 6712 0.4620 +4131 6788 0.5180 +4131 6789 0.6790 +4131 6853 0.6770 +4131 6854 0.6750 +4131 6855 0.5520 +4131 6857 0.4340 +4131 7074 0.6370 +4131 7124 0.4050 +4131 7157 0.7400 +4131 7317 0.5110 +4131 7332 0.4320 +4131 7337 0.5250 +4131 7341 0.4350 +4131 7405 0.5740 +4131 7414 0.4890 +4131 7431 0.4330 +4131 7837 0.5150 +4131 7942 0.5190 +4131 8087 0.7900 +4131 8139 0.9860 +4131 8218 0.4490 +4131 8224 0.7030 +4131 8408 0.7130 +4131 8678 0.9240 +4131 8878 0.9700 +4131 9021 0.4360 +4131 9118 0.4080 +4131 9140 0.9250 +4131 9423 0.6240 +4131 9472 0.4610 +4131 9474 0.8670 +4131 9513 0.8720 +4131 9706 0.4740 +4131 9776 0.6210 +4131 9821 0.6080 +4131 9826 0.4500 +4131 9853 0.4670 +4131 9927 0.4190 +4131 10059 0.4060 +4131 10133 0.6540 +4131 10241 0.7020 +4131 10243 0.4370 +4131 10381 0.5530 +4131 10533 0.7840 +4131 10871 0.7650 +4131 11075 0.5170 +4131 11186 0.8320 +4131 11315 0.4690 +4131 11337 0.7540 +4131 11345 0.9050 +4131 22863 0.6200 +4131 22924 0.5180 +4131 23173 0.6270 +4131 23191 0.7210 +4131 23192 0.6050 +4131 23394 0.4330 +4131 23435 0.5430 +4131 23499 0.5970 +4131 23637 0.4220 +4131 23710 0.9030 +4131 26100 0.4740 +4131 30849 0.5820 +4131 51024 0.5540 +4131 53349 0.4170 +4131 54205 0.4180 +4131 54708 0.4610 +4131 55014 0.4310 +4131 55054 0.7910 +4131 55062 0.4590 +4131 55626 0.6200 +4131 55686 0.4350 +4131 56850 0.5220 +4131 60673 0.5510 +4131 60682 0.6710 +4131 64422 0.8050 +4131 64786 0.4140 +4131 65018 0.6860 +4131 79065 0.4230 +4131 79443 0.5320 +4131 79759 0.4160 +4131 79968 0.5100 +4131 80174 0.4380 +4131 80852 0.5310 +4131 81631 0.9710 +4131 83544 0.8720 +4131 83593 0.4200 +4131 83734 0.6860 +4131 84229 0.4200 +4131 84557 0.9140 +4131 84938 0.4760 +4131 84971 0.4470 +4131 112858 0.5160 +4131 115201 0.4740 +4131 120892 0.7320 +4131 126393 0.4700 +4131 137902 0.4820 +4131 139341 0.5940 +4131 146059 0.5480 +4131 254042 0.7690 +4131 347730 0.5740 +4131 375790 0.4710 +4131 440738 0.7850 +4131 441925 0.5760 +4133 4135 0.4110 +4133 4137 0.6610 +4133 4155 0.7900 +4133 4204 0.4490 +4133 4440 0.4170 +4133 4478 0.4060 +4133 4625 0.5040 +4133 4653 0.4280 +4133 4684 0.5210 +4133 4741 0.5950 +4133 4744 0.6390 +4133 4747 0.8480 +4133 4760 0.4900 +4133 4803 0.6200 +4133 4897 0.4230 +4133 4908 0.4930 +4133 4915 0.5190 +4133 5071 0.4620 +4133 5080 0.5780 +4133 5175 0.6150 +4133 5327 0.4870 +4133 5460 0.4570 +4133 5566 0.7920 +4133 5567 0.6150 +4133 5568 0.6310 +4133 5576 0.6990 +4133 5577 0.7800 +4133 5599 0.4740 +4133 5621 0.5320 +4133 5663 0.4950 +4133 5816 0.4640 +4133 5903 0.4030 +4133 5957 0.4230 +4133 6285 0.5770 +4133 6506 0.4640 +4133 6507 0.4840 +4133 6616 0.6090 +4133 6622 0.5140 +4133 6656 0.4840 +4133 6657 0.5630 +4133 6714 0.4260 +4133 6853 0.7800 +4133 6854 0.6610 +4133 6855 0.8740 +4133 6857 0.4620 +4133 7054 0.6660 +4133 7070 0.4200 +4133 7345 0.4020 +4133 7416 0.6890 +4133 7837 0.5560 +4133 7846 0.6310 +4133 8224 0.6450 +4133 9118 0.4330 +4133 9423 0.4310 +4133 9456 0.4070 +4133 9495 0.4050 +4133 9764 0.4060 +4133 10215 0.5760 +4133 10270 0.4230 +4133 10326 0.4210 +4133 10381 0.7340 +4133 10716 0.4610 +4133 10763 0.8070 +4133 11215 0.4580 +4133 22919 0.5010 +4133 22924 0.4140 +4133 23040 0.4070 +4133 23435 0.4300 +4133 23621 0.4730 +4133 26960 0.4670 +4133 29127 0.4290 +4133 29802 0.4220 +4133 51806 0.6810 +4133 54205 0.4460 +4133 55156 0.4220 +4133 55423 0.4040 +4133 55521 0.4940 +4133 57030 0.6880 +4133 57084 0.5620 +4133 63967 0.4890 +4133 63973 0.4180 +4133 79866 0.5220 +4133 79923 0.4110 +4133 84687 0.4100 +4133 91860 0.6640 +4133 128646 0.4040 +4133 137902 0.5580 +4133 140679 0.5390 +4133 140885 0.4150 +4133 146713 0.8130 +4133 163688 0.6640 +4133 284759 0.4040 +4133 374383 0.4040 +4133 440603 0.4770 +4133 100423062 0.4930 +4134 4137 0.4230 +4134 4139 0.4120 +4134 4140 0.8530 +4134 4735 0.6390 +4134 5903 0.4680 +4134 6224 0.4370 +4134 6234 0.4170 +4134 6249 0.5870 +4134 8125 0.7750 +4134 8379 0.4140 +4134 8408 0.4090 +4134 8844 0.5540 +4134 9053 0.4160 +4134 9700 0.4060 +4134 9928 0.4560 +4134 9972 0.4340 +4134 11014 0.4150 +4134 22897 0.4510 +4134 22920 0.4320 +4134 22924 0.4740 +4134 23122 0.6150 +4134 23332 0.5250 +4134 23476 0.5260 +4134 26146 0.4800 +4134 55201 0.4020 +4134 55700 0.4800 +4134 55752 0.5680 +4134 57787 0.6080 +4134 81533 0.4070 +4134 91074 0.4470 +4134 120892 0.4590 +4134 126820 0.4280 +4134 164684 0.4090 +4134 206338 0.4200 +4134 283160 0.4440 +4134 374969 0.4080 +4135 6616 0.4030 +4135 23394 0.4460 +4135 51806 0.7150 +4135 54664 0.7970 +4135 84867 0.4720 +4135 91860 0.7150 +4135 158471 0.5870 +4135 163688 0.7150 +4137 4139 0.9020 +4137 4154 0.4770 +4137 4155 0.5000 +4137 4287 0.4460 +4137 4311 0.5450 +4137 4336 0.5280 +4137 4535 0.6680 +4137 4536 0.6710 +4137 4537 0.6640 +4137 4538 0.6590 +4137 4539 0.6500 +4137 4540 0.6500 +4137 4541 0.6720 +4137 4659 0.4270 +4137 4684 0.4560 +4137 4691 0.4230 +4137 4694 0.6500 +4137 4695 0.6560 +4137 4696 0.6610 +4137 4697 0.6730 +4137 4698 0.6630 +4137 4700 0.6660 +4137 4701 0.6790 +4137 4702 0.6500 +4137 4704 0.6810 +4137 4705 0.6710 +4137 4706 0.6590 +4137 4707 0.6500 +4137 4708 0.6650 +4137 4709 0.6500 +4137 4710 0.6690 +4137 4711 0.6500 +4137 4712 0.6600 +4137 4713 0.6500 +4137 4714 0.6650 +4137 4715 0.6500 +4137 4716 0.6500 +4137 4717 0.6500 +4137 4718 0.6610 +4137 4720 0.6500 +4137 4722 0.6740 +4137 4723 0.6850 +4137 4724 0.6620 +4137 4725 0.6500 +4137 4726 0.6500 +4137 4728 0.6600 +4137 4729 0.6800 +4137 4731 0.6500 +4137 4741 0.7380 +4137 4744 0.7310 +4137 4747 0.7970 +4137 4803 0.4940 +4137 4884 0.4870 +4137 4900 0.5430 +4137 4905 0.4260 +4137 4915 0.4640 +4137 4928 0.4530 +4137 5034 0.6490 +4137 5071 0.9200 +4137 5093 0.4010 +4137 5252 0.7720 +4137 5295 0.5870 +4137 5300 0.7160 +4137 5335 0.5580 +4137 5336 0.4590 +4137 5354 0.5280 +4137 5481 0.6850 +4137 5499 0.5990 +4137 5500 0.4190 +4137 5501 0.4240 +4137 5515 0.6840 +4137 5516 0.5610 +4137 5518 0.4030 +4137 5524 0.6710 +4137 5536 0.6710 +4137 5562 0.5520 +4137 5563 0.5480 +4137 5564 0.4990 +4137 5565 0.4990 +4137 5566 0.9150 +4137 5567 0.6660 +4137 5568 0.4660 +4137 5571 0.4990 +4137 5578 0.4480 +4137 5579 0.4190 +4137 5581 0.4230 +4137 5582 0.6540 +4137 5590 0.4180 +4137 5594 0.9520 +4137 5595 0.9680 +4137 5599 0.7570 +4137 5600 0.6020 +4137 5601 0.6070 +4137 5603 0.6070 +4137 5621 0.8840 +4137 5641 0.6100 +4137 5649 0.6450 +4137 5654 0.7540 +4137 5663 0.9500 +4137 5664 0.8830 +4137 5701 0.5230 +4137 5708 0.5520 +4137 5725 0.4310 +4137 5781 0.6460 +4137 5864 0.4110 +4137 5878 0.4050 +4137 6014 0.4770 +4137 6158 0.5120 +4137 6175 0.5590 +4137 6198 0.6370 +4137 6233 0.5300 +4137 6241 0.4220 +4137 6249 0.4650 +4137 6252 0.4930 +4137 6277 0.4290 +4137 6285 0.9060 +4137 6300 0.4620 +4137 6311 0.6200 +4137 6421 0.7800 +4137 6428 0.4200 +4137 6429 0.4500 +4137 6431 0.6380 +4137 6446 0.6720 +4137 6506 0.6240 +4137 6531 0.5170 +4137 6606 0.4030 +4137 6607 0.4210 +4137 6616 0.6190 +4137 6620 0.7000 +4137 6622 0.9940 +4137 6625 0.5690 +4137 6647 0.6420 +4137 6653 0.6000 +4137 6709 0.6700 +4137 6714 0.8970 +4137 6727 0.5100 +4137 6733 0.6040 +4137 6767 0.4860 +4137 6780 0.6230 +4137 6790 0.4380 +4137 6812 0.5300 +4137 6850 0.4080 +4137 6853 0.8930 +4137 6854 0.5040 +4137 6855 0.8550 +4137 6857 0.6940 +4137 6868 0.4910 +4137 7054 0.6730 +4137 7072 0.8780 +4137 7124 0.4790 +4137 7139 0.4080 +4137 7157 0.4420 +4137 7277 0.9810 +4137 7280 0.9570 +4137 7314 0.6320 +4137 7316 0.4130 +4137 7345 0.7210 +4137 7415 0.7130 +4137 7416 0.9750 +4137 7425 0.4970 +4137 7436 0.6500 +4137 7447 0.6040 +4137 7473 0.6790 +4137 7529 0.8990 +4137 7531 0.8360 +4137 7532 0.7310 +4137 7533 0.6330 +4137 7534 0.9740 +4137 7804 0.7180 +4137 7837 0.5020 +4137 7846 0.9780 +4137 7879 0.4050 +4137 7942 0.4570 +4137 7957 0.4420 +4137 8148 0.4190 +4137 8224 0.4500 +4137 8301 0.7440 +4137 8312 0.4140 +4137 8398 0.4510 +4137 8473 0.4040 +4137 8562 0.7370 +4137 8851 0.9690 +4137 8867 0.5840 +4137 8878 0.8380 +4137 8900 0.4460 +4137 8934 0.6390 +4137 9024 0.5310 +4137 9118 0.4130 +4137 9143 0.5510 +4137 9378 0.4190 +4137 9445 0.4130 +4137 9446 0.4240 +4137 9479 0.7210 +4137 9520 0.6360 +4137 9542 0.4270 +4137 9627 0.6000 +4137 9722 0.4510 +4137 9782 0.5230 +4137 9804 0.4740 +4137 9829 0.5930 +4137 9884 0.5050 +4137 9900 0.5200 +4137 9987 0.4980 +4137 10013 0.8790 +4137 10059 0.6610 +4137 10105 0.5980 +4137 10133 0.4740 +4137 10146 0.4820 +4137 10150 0.4370 +4137 10190 0.5130 +4137 10215 0.4040 +4137 10236 0.4290 +4137 10273 0.9440 +4137 10294 0.6490 +4137 10326 0.4120 +4137 10347 0.5740 +4137 10376 0.9950 +4137 10381 0.9870 +4137 10382 0.9530 +4137 10383 0.9430 +4137 10452 0.4310 +4137 10458 0.4090 +4137 10479 0.5340 +4137 10492 0.4210 +4137 10519 0.4290 +4137 10540 0.5840 +4137 10577 0.4350 +4137 10598 0.4630 +4137 10657 0.4040 +4137 10658 0.4300 +4137 10763 0.4020 +4137 10768 0.4270 +4137 10949 0.4010 +4137 10963 0.4190 +4137 10971 0.9580 +4137 10982 0.4540 +4137 10988 0.5400 +4137 11075 0.5610 +4137 11076 0.5710 +4137 11140 0.5610 +4137 11189 0.4990 +4137 11315 0.7720 +4137 22919 0.7440 +4137 22924 0.6590 +4137 22933 0.4940 +4137 22948 0.5420 +4137 23038 0.5410 +4137 23057 0.5040 +4137 23208 0.5450 +4137 23385 0.6460 +4137 23400 0.7240 +4137 23411 0.7210 +4137 23435 0.9700 +4137 23524 0.6010 +4137 23607 0.4630 +4137 23621 0.7700 +4137 23646 0.4010 +4137 25793 0.4770 +4137 25797 0.4350 +4137 25825 0.4160 +4137 25978 0.7450 +4137 26046 0.4760 +4137 26227 0.4600 +4137 26986 0.4300 +4137 27316 0.4070 +4137 29110 0.4520 +4137 29802 0.4220 +4137 29911 0.4540 +4137 29978 0.6530 +4137 29979 0.6160 +4137 29993 0.6530 +4137 51079 0.6500 +4137 51107 0.6080 +4137 51326 0.4310 +4137 51422 0.5220 +4137 51440 0.4320 +4137 51741 0.5120 +4137 51806 0.7060 +4137 51807 0.9610 +4137 53632 0.4990 +4137 54205 0.4080 +4137 54209 0.7330 +4137 54664 0.7490 +4137 55156 0.5920 +4137 55284 0.6760 +4137 55423 0.4040 +4137 55521 0.4700 +4137 55607 0.4440 +4137 55700 0.4400 +4137 55737 0.5710 +4137 55851 0.6240 +4137 55967 0.6690 +4137 56893 0.6060 +4137 56901 0.6560 +4137 56922 0.4180 +4137 57030 0.4760 +4137 57447 0.4650 +4137 57731 0.4570 +4137 57787 0.6590 +4137 64710 0.5440 +4137 64802 0.5220 +4137 64837 0.5140 +4137 65018 0.7560 +4137 79258 0.6170 +4137 79861 0.9150 +4137 79882 0.7090 +4137 81027 0.9240 +4137 83889 0.4300 +4137 84295 0.5060 +4137 84446 0.5270 +4137 84617 0.9410 +4137 84630 0.6820 +4137 84660 0.4770 +4137 84679 0.5030 +4137 84790 0.9380 +4137 89953 0.4700 +4137 91683 0.5030 +4137 91860 0.5950 +4137 92335 0.4460 +4137 112714 0.9180 +4137 112755 0.6700 +4137 113457 0.9150 +4137 120892 0.9320 +4137 126328 0.6600 +4137 128646 0.4040 +4137 130013 0.4190 +4137 137902 0.5020 +4137 140885 0.4210 +4137 146713 0.6440 +4137 146779 0.4010 +4137 147700 0.4750 +4137 148479 0.4450 +4137 148811 0.5120 +4137 162540 0.5590 +4137 163688 0.5960 +4137 203068 0.9430 +4137 203228 0.8510 +4137 220988 0.4730 +4137 246744 0.8070 +4137 254428 0.5170 +4137 256714 0.4680 +4137 284058 0.7850 +4137 284759 0.4040 +4137 343035 0.5710 +4137 347688 0.9140 +4137 347733 0.9940 +4137 374291 0.6690 +4137 374383 0.4040 +4137 374819 0.4750 +4137 400916 0.4720 +4137 402665 0.4100 +4137 728378 0.4800 +4137 100423062 0.9680 +4137 104909134 0.7470 +4139 4609 0.5310 +4139 6456 0.4090 +4139 6794 0.4710 +4139 7157 0.4560 +4139 7436 0.4480 +4139 7529 0.5560 +4139 7531 0.5240 +4139 7532 0.4650 +4139 7534 0.6850 +4139 7804 0.4950 +4139 8379 0.4700 +4139 9520 0.4350 +4139 10590 0.4290 +4139 10971 0.6270 +4139 23235 0.5050 +4139 23387 0.4490 +4139 23513 0.4190 +4139 27005 0.7410 +4139 27430 0.4390 +4139 29911 0.5920 +4139 57578 0.4080 +4139 63940 0.4710 +4139 79187 0.4630 +4139 79882 0.6620 +4139 126789 0.4930 +4140 4296 0.4530 +4140 4893 0.6740 +4140 5037 0.4030 +4140 5292 0.6700 +4140 5318 0.7040 +4140 5515 0.4180 +4140 5516 0.4980 +4140 5518 0.7240 +4140 5519 0.4160 +4140 5520 0.5750 +4140 5525 0.4400 +4140 5526 0.4360 +4140 5527 0.4450 +4140 5528 0.4450 +4140 5529 0.4360 +4140 5594 0.5490 +4140 5595 0.5510 +4140 5604 0.5770 +4140 5605 0.5580 +4140 5796 0.4970 +4140 5894 0.5140 +4140 5906 0.4540 +4140 5908 0.4610 +4140 6714 0.4690 +4140 7024 0.4330 +4140 7094 0.4160 +4140 7414 0.4370 +4140 7450 0.4850 +4140 7529 0.9260 +4140 7531 0.8470 +4140 7532 0.8880 +4140 7533 0.8330 +4140 7534 0.9280 +4140 8312 0.4360 +4140 8315 0.6310 +4140 8317 0.4290 +4140 8826 0.4510 +4140 8844 0.9760 +4140 8856 0.4020 +4140 9181 0.5190 +4140 9923 0.4590 +4140 10014 0.4020 +4140 10256 0.5210 +4140 10746 0.4120 +4140 10971 0.7740 +4140 22866 0.4320 +4140 23122 0.7540 +4140 23332 0.4670 +4140 23499 0.4340 +4140 25820 0.4770 +4140 27005 0.7600 +4140 28969 0.4190 +4140 54518 0.4090 +4140 54756 0.4990 +4140 55421 0.4370 +4140 55844 0.4800 +4140 56288 0.5360 +4140 57787 0.5710 +4140 63940 0.4090 +4140 64093 0.4140 +4140 80232 0.5600 +4140 140710 0.4290 +4140 340419 0.5100 +4141 4143 0.4960 +4141 4144 0.4880 +4141 4524 0.5470 +4141 4528 0.4270 +4141 4548 0.9460 +4141 4677 0.8860 +4141 4736 0.4270 +4141 4953 0.4070 +4141 5036 0.5060 +4141 5188 0.4660 +4141 5226 0.4050 +4141 5230 0.4020 +4141 5245 0.4080 +4141 5303 0.4130 +4141 5431 0.6560 +4141 5432 0.8000 +4141 5435 0.5980 +4141 5464 0.6310 +4141 5469 0.4580 +4141 5471 0.4550 +4141 5611 0.4130 +4141 5682 0.4370 +4141 5683 0.4420 +4141 5684 0.5000 +4141 5686 0.4530 +4141 5688 0.4300 +4141 5707 0.4670 +4141 5708 0.4770 +4141 5710 0.4330 +4141 5717 0.4460 +4141 5832 0.4320 +4141 5859 0.9990 +4141 5917 0.9990 +4141 6059 0.5150 +4141 6122 0.5150 +4141 6123 0.4440 +4141 6124 0.4380 +4141 6125 0.7570 +4141 6128 0.4170 +4141 6129 0.6010 +4141 6130 0.4370 +4141 6132 0.4910 +4141 6133 0.5670 +4141 6135 0.6080 +4141 6136 0.4790 +4141 6137 0.5770 +4141 6141 0.4660 +4141 6154 0.4130 +4141 6155 0.4540 +4141 6157 0.5640 +4141 6160 0.4120 +4141 6170 0.7320 +4141 6175 0.6380 +4141 6182 0.4840 +4141 6183 0.4220 +4141 6187 0.6670 +4141 6188 0.7160 +4141 6189 0.4480 +4141 6191 0.4770 +4141 6193 0.5190 +4141 6194 0.4150 +4141 6201 0.4100 +4141 6202 0.5440 +4141 6203 0.5720 +4141 6205 0.5490 +4141 6206 0.4070 +4141 6207 0.5370 +4141 6208 0.4130 +4141 6209 0.5560 +4141 6217 0.5070 +4141 6222 0.6220 +4141 6224 0.4800 +4141 6228 0.4780 +4141 6301 0.8950 +4141 6386 0.8230 +4141 6470 0.4680 +4141 6472 0.6290 +4141 6611 0.4060 +4141 6613 0.4060 +4141 6723 0.4250 +4141 6729 0.4970 +4141 6734 0.4460 +4141 6742 0.5550 +4141 6897 0.8810 +4141 6950 0.4700 +4141 7086 0.4700 +4141 7153 0.4280 +4141 7155 0.4190 +4141 7157 0.5040 +4141 7167 0.5170 +4141 7184 0.4110 +4141 7203 0.6290 +4141 7284 0.4610 +4141 7295 0.4210 +4141 7407 0.9020 +4141 7453 0.9230 +4141 7511 0.4080 +4141 7965 0.9990 +4141 8260 0.4080 +4141 8277 0.4560 +4141 8565 0.9990 +4141 8661 0.4020 +4141 8662 0.6060 +4141 8663 0.5440 +4141 8665 0.5330 +4141 8666 0.5420 +4141 8667 0.4060 +4141 8668 0.6800 +4141 8697 0.4740 +4141 8833 0.5790 +4141 8894 0.5970 +4141 8988 0.6600 +4141 9045 0.4720 +4141 9097 0.4580 +4141 9255 0.9990 +4141 9343 0.5750 +4141 9349 0.5150 +4141 9521 0.9990 +4141 9533 0.8000 +4141 9563 0.4260 +4141 9669 0.8270 +4141 9775 0.4020 +4141 9858 0.5050 +4141 9927 0.4510 +4141 10056 0.7050 +4141 10102 0.6890 +4141 10209 0.6800 +4141 10213 0.5180 +4141 10352 0.8970 +4141 10399 0.5910 +4141 10412 0.4590 +4141 10480 0.4890 +4141 10574 0.5330 +4141 10575 0.5440 +4141 10576 0.5110 +4141 10667 0.7700 +4141 10694 0.4330 +4141 10767 0.4110 +4141 10768 0.5010 +4141 10988 0.4210 +4141 11128 0.6800 +4141 11222 0.4410 +4141 11232 0.4420 +4141 11260 0.6550 +4141 11315 0.4150 +4141 22934 0.4030 +4141 22948 0.4950 +4141 22984 0.4890 +4141 23382 0.5020 +4141 23395 0.9940 +4141 23438 0.8270 +4141 23481 0.4310 +4141 23521 0.6220 +4141 23708 0.5540 +4141 25885 0.7390 +4141 25973 0.9240 +4141 26330 0.4330 +4141 27068 0.6380 +4141 27102 0.4410 +4141 27301 0.4160 +4141 28998 0.5710 +4141 29789 0.6780 +4141 29968 0.5200 +4141 51011 0.4480 +4141 51022 0.4300 +4141 51067 0.9270 +4141 51069 0.4300 +4141 51081 0.4950 +4141 51095 0.5150 +4141 51116 0.5450 +4141 51149 0.4330 +4141 51154 0.4860 +4141 51314 0.4720 +4141 51386 0.4430 +4141 51520 0.9990 +4141 54148 0.4730 +4141 54332 0.4220 +4141 54431 0.4560 +4141 54505 0.5310 +4141 54802 0.4570 +4141 54938 0.8440 +4141 54965 0.4530 +4141 55052 0.4630 +4141 55157 0.6140 +4141 55269 0.4710 +4141 55272 0.4430 +4141 55278 0.4040 +4141 55526 0.4640 +4141 55591 0.4390 +4141 55699 0.9950 +4141 55703 0.6430 +4141 56648 0.4980 +4141 57019 0.4730 +4141 57038 0.9710 +4141 57176 0.8970 +4141 57469 0.4320 +4141 57470 0.6510 +4141 57505 0.8410 +4141 60678 0.5190 +4141 63875 0.5320 +4141 64146 0.4560 +4141 64960 0.4320 +4141 64963 0.4270 +4141 64965 0.5480 +4141 64969 0.4910 +4141 65008 0.4210 +4141 79587 0.8420 +4141 79631 0.5220 +4141 79731 0.8890 +4141 80222 0.8400 +4141 80273 0.4690 +4141 81889 0.4550 +4141 83743 0.4410 +4141 84076 0.4560 +4141 84172 0.6430 +4141 84340 0.4660 +4141 84464 0.5710 +4141 85476 0.6800 +4141 90353 0.4130 +4141 90850 0.4670 +4141 91893 0.4820 +4141 92399 0.6410 +4141 92935 0.9450 +4141 93974 0.7340 +4141 116832 0.7330 +4141 122622 0.4390 +4141 123263 0.9620 +4141 123283 0.8410 +4141 124454 0.9830 +4141 126402 0.4820 +4141 137362 0.4160 +4141 143244 0.4860 +4141 146212 0.4150 +4141 151313 0.4440 +4141 285855 0.5360 +4141 347487 0.5250 +4141 374395 0.4990 +4141 374659 0.4210 +4141 387129 0.5220 +4141 440275 0.6970 +4141 728689 0.4760 +4141 100287482 0.5050 +4141 100505478 0.4940 +4141 100885850 0.4040 +4141 101927367 0.4340 +4142 5423 0.4380 +4142 5972 0.5880 +4142 6865 0.5930 +4142 7374 0.4970 +4142 8620 0.9610 +4142 10159 0.4630 +4142 11245 0.4410 +4142 23583 0.6500 +4142 50837 0.4540 +4142 57019 0.6310 +4142 57589 0.4160 +4142 59272 0.6620 +4142 64848 0.4290 +4142 84993 0.6230 +4142 126299 0.6910 +4142 126969 0.6420 +4143 4144 0.9910 +4143 4482 0.4690 +4143 4507 0.5080 +4143 4522 0.6030 +4143 4524 0.9360 +4143 4548 0.9850 +4143 4552 0.5780 +4143 4598 0.4880 +4143 4602 0.6340 +4143 4942 0.5790 +4143 4953 0.4780 +4143 5053 0.4150 +4143 5092 0.4010 +4143 5111 0.4330 +4143 5130 0.4680 +4143 5230 0.4510 +4143 5313 0.4190 +4143 5832 0.5470 +4143 6389 0.4070 +4143 6470 0.7780 +4143 6472 0.7440 +4143 6609 0.7850 +4143 6611 0.8110 +4143 6723 0.8350 +4143 6729 0.4180 +4143 6898 0.9520 +4143 7124 0.4160 +4143 7167 0.4590 +4143 7298 0.4570 +4143 7407 0.4130 +4143 8565 0.5320 +4143 8833 0.4250 +4143 9563 0.4140 +4143 10400 0.5990 +4143 10768 0.6900 +4143 10797 0.5350 +4143 10841 0.4100 +4143 10845 0.4200 +4143 10998 0.4010 +4143 22984 0.4070 +4143 23382 0.7290 +4143 23743 0.9810 +4143 25902 0.5050 +4143 26227 0.4250 +4143 27165 0.4460 +4143 27232 0.7910 +4143 27430 0.9950 +4143 29958 0.5350 +4143 29968 0.4600 +4143 51076 0.4260 +4143 51380 0.4310 +4143 51805 0.6230 +4143 54802 0.4700 +4143 54995 0.4270 +4143 55256 0.4730 +4143 55349 0.4080 +4143 56267 0.5250 +4143 64902 0.4430 +4143 79058 0.4930 +4143 79814 0.4050 +4143 84245 0.4010 +4143 84680 0.4650 +4143 84706 0.5500 +4143 113451 0.4290 +4143 118881 0.5160 +4143 123688 0.4570 +4143 137362 0.5160 +4143 220074 0.5360 +4143 259307 0.9000 +4143 390110 0.4650 +4143 441024 0.4650 +4143 120356740 0.5150 +4144 4170 0.4290 +4144 4482 0.4300 +4144 4507 0.7160 +4144 4522 0.6330 +4144 4524 0.9160 +4144 4548 0.9810 +4144 4552 0.5190 +4144 4602 0.6950 +4144 4860 0.4220 +4144 4904 0.4450 +4144 4942 0.4870 +4144 4953 0.4520 +4144 5111 0.4450 +4144 5230 0.4840 +4144 5245 0.4330 +4144 5315 0.4330 +4144 5471 0.4220 +4144 5832 0.5630 +4144 6390 0.4810 +4144 6391 0.4190 +4144 6470 0.7650 +4144 6472 0.7460 +4144 6611 0.8090 +4144 6723 0.8170 +4144 6729 0.4280 +4144 6898 0.9450 +4144 7167 0.4620 +4144 7298 0.4320 +4144 7358 0.4750 +4144 7407 0.4250 +4144 7549 0.4880 +4144 8076 0.4930 +4144 8192 0.4030 +4144 8565 0.5480 +4144 8602 0.8300 +4144 8833 0.5070 +4144 9343 0.5490 +4144 9563 0.4280 +4144 9589 0.4880 +4144 9669 0.4170 +4144 9869 0.5900 +4144 10181 0.4060 +4144 10400 0.4630 +4144 10419 0.4850 +4144 10436 0.8640 +4144 10574 0.5920 +4144 10713 0.4230 +4144 10768 0.7020 +4144 10772 0.4100 +4144 10791 0.4170 +4144 10797 0.5330 +4144 10845 0.4280 +4144 22948 0.4780 +4144 22984 0.4200 +4144 23091 0.4640 +4144 23382 0.7060 +4144 23476 0.5500 +4144 23743 0.9730 +4144 25902 0.6280 +4144 25962 0.6190 +4144 26227 0.4160 +4144 27232 0.6520 +4144 27430 0.9990 +4144 29063 0.5380 +4144 29081 0.4670 +4144 29890 0.4090 +4144 29958 0.5010 +4144 29968 0.4540 +4144 51076 0.4270 +4144 51255 0.4250 +4144 51441 0.4510 +4144 51585 0.4170 +4144 51805 0.5910 +4144 54495 0.4020 +4144 54802 0.4350 +4144 54890 0.4140 +4144 54915 0.4150 +4144 54995 0.4270 +4144 55256 0.4740 +4144 55902 0.4460 +4144 56267 0.4670 +4144 56339 0.5930 +4144 57721 0.5600 +4144 58478 0.4400 +4144 64783 0.4710 +4144 64848 0.4800 +4144 79066 0.8010 +4144 79872 0.4020 +4144 83732 0.4340 +4144 84174 0.4410 +4144 84245 0.4240 +4144 84680 0.4650 +4144 84706 0.4810 +4144 91746 0.5650 +4144 118881 0.5150 +4144 123688 0.4570 +4144 137362 0.5160 +4144 220074 0.5420 +4144 253943 0.4140 +4144 259307 0.9070 +4144 390110 0.4650 +4144 441024 0.4430 +4144 120356740 0.5150 +4145 4211 0.4840 +4145 4254 0.6230 +4145 4300 0.5520 +4145 4352 0.5090 +4145 4356 0.6870 +4145 4512 0.5670 +4145 4519 0.4130 +4145 4535 0.4450 +4145 4540 0.4160 +4145 4599 0.5860 +4145 4609 0.4180 +4145 4851 0.4010 +4145 4914 0.9300 +4145 4915 0.9000 +4145 5175 0.4060 +4145 5551 0.4230 +4145 5688 0.7960 +4145 5781 0.5880 +4145 5788 0.8100 +4145 5829 0.4730 +4145 5896 0.4190 +4145 6146 0.4730 +4145 6161 0.6800 +4145 6187 0.4080 +4145 6188 0.4120 +4145 6202 0.4160 +4145 6209 0.4990 +4145 6217 0.7790 +4145 6223 0.4520 +4145 6387 0.4900 +4145 6504 0.8840 +4145 6688 0.5980 +4145 6693 0.5010 +4145 6714 0.6380 +4145 6776 0.4280 +4145 6777 0.4240 +4145 7037 0.4840 +4145 7066 0.6010 +4145 7525 0.4860 +4145 7852 0.4080 +4145 8192 0.6130 +4145 8639 0.5210 +4145 9542 0.5270 +4145 9619 0.7170 +4145 10320 0.4440 +4145 10544 0.4300 +4145 10718 0.4990 +4145 10803 0.4480 +4145 51350 0.5390 +4145 54790 0.4330 +4145 55824 0.4040 +4145 79705 0.4830 +4145 93974 0.4630 +4145 140885 0.7700 +4145 145957 0.5090 +4146 4148 0.6390 +4146 4544 0.4100 +4146 5593 0.5290 +4146 5744 0.4850 +4146 6591 0.4070 +4146 6662 0.6500 +4146 6663 0.4310 +4146 6736 0.4400 +4146 8190 0.5730 +4146 8785 0.7630 +4146 9968 0.4250 +4146 10660 0.4080 +4146 11199 0.5980 +4146 22897 0.4010 +4146 23532 0.4300 +4146 27022 0.4760 +4146 54361 0.4220 +4146 399979 0.4040 +4147 7060 0.4680 +4147 7474 0.4110 +4147 8323 0.4200 +4147 8530 0.4020 +4147 10404 0.4060 +4147 10631 0.4650 +4147 10875 0.4450 +4147 51015 0.4430 +4147 79815 0.4150 +4147 128153 0.4240 +4148 5479 0.4100 +4148 6382 0.5050 +4148 6696 0.4370 +4148 6907 0.4240 +4148 7018 0.4880 +4148 7184 0.4300 +4148 7295 0.4560 +4148 8200 0.7650 +4148 8483 0.4660 +4148 8785 0.4380 +4148 8841 0.6030 +4148 9601 0.7080 +4148 9611 0.4450 +4148 9612 0.4910 +4148 9615 0.4040 +4148 9741 0.4440 +4148 10085 0.4090 +4148 10106 0.9260 +4148 10130 0.5070 +4148 10525 0.4100 +4148 10956 0.4960 +4148 11061 0.5040 +4148 23143 0.4330 +4148 25828 0.4380 +4148 51659 0.6180 +4148 51806 0.4100 +4148 54829 0.9400 +4148 55869 0.6030 +4148 56975 0.5430 +4148 64081 0.6080 +4148 79174 0.6770 +4148 90665 0.4340 +4148 148113 0.4770 +4149 4150 0.5900 +4149 4297 0.9050 +4149 4335 0.9430 +4149 4436 0.6260 +4149 4601 0.9980 +4149 4609 0.9990 +4149 4610 0.9620 +4149 4613 0.9960 +4149 4763 0.5720 +4149 5156 0.4490 +4149 5451 0.4800 +4149 5460 0.4010 +4149 5600 0.9020 +4149 5603 0.9020 +4149 5929 0.9070 +4149 5979 0.5430 +4149 6015 0.8020 +4149 6045 0.9650 +4149 6300 0.9020 +4149 6389 0.5100 +4149 6390 0.5420 +4149 6391 0.5150 +4149 6392 0.5910 +4149 6872 0.9130 +4149 6874 0.9030 +4149 6878 0.9070 +4149 6879 0.9030 +4149 6880 0.9310 +4149 7027 0.9030 +4149 7029 0.6390 +4149 7046 0.4050 +4149 7391 0.6130 +4149 7528 0.4530 +4149 7709 0.9470 +4149 7812 0.4470 +4149 7917 0.4060 +4149 8089 0.4990 +4149 8242 0.4990 +4149 8295 0.8710 +4149 8607 0.9350 +4149 8886 0.5490 +4149 9070 0.6280 +4149 9096 0.5400 +4149 9134 0.5300 +4149 9757 0.5500 +4149 10138 0.8280 +4149 10445 0.9000 +4149 10524 0.5890 +4149 10589 0.5430 +4149 10608 0.8970 +4149 10856 0.9500 +4149 10902 0.4370 +4149 10919 0.5280 +4149 11091 0.9450 +4149 11335 0.7640 +4149 22877 0.4720 +4149 23022 0.5030 +4149 23269 0.9950 +4149 23429 0.6290 +4149 23476 0.5540 +4149 25942 0.8240 +4149 26121 0.9000 +4149 26122 0.5100 +4149 26168 0.9030 +4149 27043 0.9030 +4149 29915 0.5560 +4149 51171 0.4360 +4149 51230 0.9000 +4149 54556 0.4360 +4149 54799 0.4510 +4149 54881 0.9000 +4149 54949 0.6280 +4149 55294 0.4620 +4149 55654 0.7680 +4149 55898 0.5960 +4149 55929 0.6400 +4149 57634 0.8190 +4149 57680 0.9030 +4149 79595 0.5030 +4149 79813 0.5380 +4149 81887 0.9020 +4149 83463 0.9060 +4149 83746 0.9240 +4149 84108 0.9230 +4149 84148 0.9010 +4149 84223 0.4560 +4149 84661 0.5430 +4149 124944 0.9020 +4149 125476 0.9000 +4149 132660 0.5430 +4149 139628 0.6240 +4149 199720 0.4300 +4149 284058 0.9000 +4149 100529209 0.5490 +4150 4601 0.4410 +4150 4609 0.7220 +4150 4691 0.4070 +4150 4831 0.4380 +4150 4893 0.4540 +4150 4968 0.4420 +4150 5451 0.4730 +4150 5454 0.5540 +4150 5531 0.4770 +4150 5595 0.5320 +4150 5885 0.4230 +4150 5989 0.5630 +4150 6047 0.7690 +4150 6595 0.4450 +4150 7157 0.4360 +4150 7343 0.4270 +4150 7391 0.6200 +4150 7392 0.5320 +4150 7528 0.5910 +4150 7555 0.4730 +4150 8448 0.5140 +4150 8479 0.5260 +4150 8553 0.5360 +4150 9230 0.4170 +4150 9344 0.4920 +4150 9374 0.5500 +4150 9423 0.4360 +4150 10155 0.5940 +4150 10423 0.4020 +4150 10664 0.5080 +4150 23411 0.4400 +4150 23433 0.4120 +4150 23522 0.4240 +4150 26470 0.5360 +4150 28999 0.4260 +4150 51621 0.4640 +4150 60468 0.5730 +4150 79447 0.5500 +4150 79842 0.4030 +4150 84231 0.7930 +4150 124446 0.4230 +4150 253980 0.5470 +4150 253982 0.4860 +4150 283897 0.4320 +4150 283899 0.5020 +4150 284312 0.6580 +4151 4267 0.4470 +4151 4353 0.4470 +4151 4513 0.4990 +4151 4519 0.9680 +4151 4604 0.5880 +4151 4618 0.4500 +4151 4619 0.6150 +4151 4620 0.7320 +4151 4622 0.5600 +4151 4624 0.5600 +4151 4625 0.6630 +4151 4632 0.7960 +4151 4633 0.8350 +4151 4634 0.5630 +4151 4654 0.6010 +4151 4656 0.6610 +4151 4842 0.4130 +4151 4846 0.5820 +4151 4878 0.4110 +4151 4879 0.6120 +4151 4891 0.5270 +4151 4892 0.4850 +4151 4953 0.4550 +4151 5224 0.7730 +4151 5230 0.5700 +4151 5232 0.5520 +4151 5265 0.4160 +4151 5286 0.7890 +4151 5428 0.4460 +4151 5467 0.4790 +4151 5468 0.4600 +4151 5562 0.4190 +4151 5573 0.4140 +4151 5834 0.7960 +4151 5836 0.7650 +4151 5837 0.8100 +4151 5972 0.4480 +4151 6035 0.9300 +4151 6261 0.5160 +4151 6588 0.6480 +4151 6863 0.5140 +4151 7036 0.5040 +4151 7037 0.5660 +4151 7038 0.9720 +4151 7124 0.4790 +4151 7125 0.5380 +4151 7134 0.4470 +4151 7135 0.5960 +4151 7136 0.6020 +4151 7137 0.8450 +4151 7138 0.6080 +4151 7139 0.7620 +4151 7140 0.5370 +4151 7273 0.5820 +4151 7295 0.4060 +4151 7402 0.4610 +4151 7498 0.5750 +4151 7837 0.6960 +4151 8048 0.6870 +4151 8557 0.5600 +4151 8792 0.5070 +4151 9172 0.5020 +4151 9499 0.5290 +4151 10324 0.4740 +4151 10345 0.6240 +4151 10891 0.6370 +4151 23175 0.4160 +4151 23676 0.4040 +4151 28982 0.4020 +4151 29895 0.5950 +4151 30061 0.4440 +4151 51778 0.6450 +4151 51806 0.4240 +4151 54205 0.9960 +4151 54363 0.4790 +4151 54829 0.4590 +4151 57113 0.4780 +4151 57639 0.4650 +4151 57817 0.5830 +4151 58157 0.9640 +4151 58529 0.6050 +4151 59272 0.4780 +4151 79747 0.7230 +4151 79901 0.4620 +4151 80777 0.9880 +4151 84706 0.4730 +4151 84817 0.5060 +4151 91860 0.4050 +4151 92579 0.4220 +4151 113235 0.4530 +4151 114757 0.4690 +4151 129446 0.4430 +4151 133522 0.4930 +4151 137902 0.6950 +4151 148738 0.4530 +4151 163688 0.4170 +4151 202333 0.4110 +4151 257202 0.5880 +4151 440387 0.7530 +4151 442721 0.5350 +4151 493869 0.5880 +4151 548596 0.4040 +4152 4204 0.6310 +4152 5914 0.5790 +4152 6613 0.4810 +4152 6839 0.7340 +4152 7329 0.4320 +4152 7341 0.7320 +4152 8208 0.5180 +4152 8498 0.5340 +4152 8554 0.7340 +4152 8930 0.4160 +4152 9869 0.8530 +4152 10036 0.7440 +4152 10401 0.6000 +4152 10919 0.4160 +4152 10951 0.5180 +4152 11335 0.5810 +4152 22992 0.4550 +4152 23339 0.4020 +4152 23468 0.8330 +4152 23759 0.4840 +4152 30827 0.6170 +4152 55130 0.4710 +4152 55729 0.9050 +4152 57805 0.4460 +4152 64800 0.4650 +4152 79645 0.4460 +4152 80063 0.4800 +4152 83538 0.4770 +4152 84678 0.4930 +4152 93233 0.4790 +4152 115948 0.4730 +4152 200424 0.4370 +4152 220136 0.7820 +4152 100128569 0.4290 +4153 4154 0.4050 +4153 4179 0.6810 +4153 4360 0.5440 +4153 5199 0.7800 +4153 5265 0.4220 +4153 5328 0.5990 +4153 5329 0.5610 +4153 5340 0.5440 +4153 5624 0.6730 +4153 5644 0.7540 +4153 5645 0.9910 +4153 5646 0.4910 +4153 5648 0.9980 +4153 5657 0.4980 +4153 5682 0.5260 +4153 5684 0.6100 +4153 5687 0.6100 +4153 5689 0.5260 +4153 5690 0.4870 +4153 5691 0.4630 +4153 5692 0.5090 +4153 5695 0.4760 +4153 5806 0.9720 +4153 5950 0.4190 +4153 6013 0.4970 +4153 6019 0.4970 +4153 6347 0.4100 +4153 6440 0.5730 +4153 6441 0.5060 +4153 6906 0.4850 +4153 7038 0.4570 +4153 7040 0.4820 +4153 7056 0.6790 +4153 7092 0.6750 +4153 7096 0.5110 +4153 7097 0.6250 +4153 7098 0.5460 +4153 7099 0.7200 +4153 7124 0.5070 +4153 7448 0.4750 +4153 8106 0.4220 +4153 8547 0.9880 +4153 8939 0.5090 +4153 9622 0.4210 +4153 9775 0.4820 +4153 10246 0.4370 +4153 10584 0.8550 +4153 10747 0.9990 +4153 10877 0.4800 +4153 10878 0.4130 +4153 22918 0.8100 +4153 22925 0.4430 +4153 23198 0.4770 +4153 26998 0.4720 +4153 27202 0.4840 +4153 27429 0.5600 +4153 30835 0.8370 +4153 51311 0.5310 +4153 54106 0.6170 +4153 55660 0.4830 +4153 59272 0.4240 +4153 64083 0.7830 +4153 64127 0.5890 +4153 64581 0.5070 +4153 78989 0.9420 +4153 81494 0.5490 +4153 84466 0.4160 +4153 90411 0.5750 +4153 93978 0.4160 +4153 116519 0.5020 +4153 140885 0.4740 +4153 220296 0.4100 +4153 390714 0.4080 +4154 4287 0.6020 +4154 4654 0.4120 +4154 4656 0.5540 +4154 4670 0.6430 +4154 4691 0.4080 +4154 4784 0.4850 +4154 4857 0.6210 +4154 4858 0.5540 +4154 4904 0.4080 +4154 5093 0.6170 +4154 5094 0.4990 +4154 5725 0.8010 +4154 5813 0.7820 +4154 5936 0.5050 +4154 5976 0.4530 +4154 6261 0.6260 +4154 6310 0.4270 +4154 6421 0.6550 +4154 6426 0.8520 +4154 6427 0.7170 +4154 6428 0.6980 +4154 6431 0.5470 +4154 6432 0.5980 +4154 6434 0.6860 +4154 6506 0.4100 +4154 6538 0.7560 +4154 6606 0.4180 +4154 6607 0.4470 +4154 6625 0.5660 +4154 6626 0.5280 +4154 6632 0.4570 +4154 6633 0.5210 +4154 6634 0.4980 +4154 6635 0.5700 +4154 6636 0.5280 +4154 6637 0.4980 +4154 6667 0.4640 +4154 6736 0.5680 +4154 6741 0.4280 +4154 6780 0.4110 +4154 7072 0.4620 +4154 7073 0.6220 +4154 7139 0.7840 +4154 7140 0.7520 +4154 7158 0.4470 +4154 7273 0.4360 +4154 7274 0.5480 +4154 7307 0.7710 +4154 7514 0.5350 +4154 7536 0.4100 +4154 7549 0.5120 +4154 7555 0.9600 +4154 7919 0.7060 +4154 8087 0.6380 +4154 8106 0.6970 +4154 8148 0.4770 +4154 8570 0.5370 +4154 8669 0.4270 +4154 8683 0.4550 +4154 8776 0.5710 +4154 9295 0.4220 +4154 9444 0.9240 +4154 9513 0.4110 +4154 9584 0.5160 +4154 9774 0.4360 +4154 9775 0.4710 +4154 9782 0.6230 +4154 9887 0.4290 +4154 9939 0.5450 +4154 9987 0.5920 +4154 10114 0.4630 +4154 10150 0.8130 +4154 10189 0.5780 +4154 10236 0.6000 +4154 10284 0.4310 +4154 10286 0.4130 +4154 10432 0.6360 +4154 10492 0.4430 +4154 10521 0.7620 +4154 10594 0.4110 +4154 10656 0.5110 +4154 10657 0.6850 +4154 10658 0.9850 +4154 10659 0.7610 +4154 10664 0.4480 +4154 10772 0.5020 +4154 10949 0.4470 +4154 11051 0.5340 +4154 11052 0.4770 +4154 11155 0.8020 +4154 11189 0.4990 +4154 11338 0.7180 +4154 23020 0.4270 +4154 23060 0.5630 +4154 23332 0.4230 +4154 23405 0.4360 +4154 23435 0.7690 +4154 23451 0.4120 +4154 23481 0.4120 +4154 23543 0.8130 +4154 25814 0.5150 +4154 26097 0.4450 +4154 26986 0.4100 +4154 27161 0.5490 +4154 27316 0.7820 +4154 27339 0.4180 +4154 29896 0.5120 +4154 51493 0.4570 +4154 54502 0.5210 +4154 54715 0.6780 +4154 54845 0.6000 +4154 55740 0.4530 +4154 55796 0.7860 +4154 56652 0.6720 +4154 56853 0.4990 +4154 57338 0.6720 +4154 58155 0.6020 +4154 60677 0.4440 +4154 60680 0.4440 +4154 80004 0.5560 +4154 83641 0.4930 +4154 84530 0.4810 +4154 84844 0.4400 +4154 92906 0.4320 +4154 133482 0.5060 +4154 147912 0.7510 +4154 203228 0.5290 +4154 220988 0.5800 +4154 221662 0.5120 +4154 253943 0.4480 +4154 282996 0.5660 +4154 283373 0.5150 +4154 285525 0.5930 +4154 389874 0.4940 +4155 4217 0.4570 +4155 4318 0.4630 +4155 4336 0.7540 +4155 4340 0.9550 +4155 4661 0.4550 +4155 4684 0.4400 +4155 4741 0.4950 +4155 4744 0.7180 +4155 4747 0.7540 +4155 4803 0.6030 +4155 4804 0.4120 +4155 4821 0.5420 +4155 4900 0.4180 +4155 4908 0.6110 +4155 4915 0.4290 +4155 4974 0.7030 +4155 5010 0.6170 +4155 5091 0.4410 +4155 5156 0.7070 +4155 5354 0.9880 +4155 5375 0.5780 +4155 5376 0.5520 +4155 5578 0.4170 +4155 5580 0.5690 +4155 5584 0.4030 +4155 5590 0.6010 +4155 5594 0.9530 +4155 5595 0.8640 +4155 5596 0.5360 +4155 5599 0.4490 +4155 5600 0.4580 +4155 5603 0.4260 +4155 5604 0.5220 +4155 5621 0.5240 +4155 5788 0.5000 +4155 5816 0.6600 +4155 5871 0.5090 +4155 5891 0.5470 +4155 5894 0.4540 +4155 6285 0.7590 +4155 6300 0.4390 +4155 6347 0.4030 +4155 6506 0.4280 +4155 6507 0.4280 +4155 6622 0.6740 +4155 6662 0.4130 +4155 6663 0.9330 +4155 6709 0.4310 +4155 6714 0.7150 +4155 6786 0.4930 +4155 6788 0.6460 +4155 6789 0.5740 +4155 6853 0.5100 +4155 6854 0.4140 +4155 6855 0.6300 +4155 6900 0.5630 +4155 7054 0.5180 +4155 7099 0.4260 +4155 7124 0.6060 +4155 7345 0.5110 +4155 7368 0.5700 +4155 7837 0.7200 +4155 8349 0.5520 +4155 8408 0.5440 +4155 8428 0.5670 +4155 8443 0.5560 +4155 8506 0.8200 +4155 8537 0.4160 +4155 8797 0.6100 +4155 9019 0.8590 +4155 9568 0.4010 +4155 9874 0.6360 +4155 10106 0.4510 +4155 10211 0.5600 +4155 10215 0.8430 +4155 10217 0.8330 +4155 10381 0.4750 +4155 10419 0.4440 +4155 10424 0.4180 +4155 10763 0.6350 +4155 11011 0.5150 +4155 11076 0.5810 +4155 11240 0.5590 +4155 22858 0.4570 +4155 23114 0.6220 +4155 23435 0.5910 +4155 27348 0.5370 +4155 28996 0.4210 +4155 50488 0.5210 +4155 50943 0.5100 +4155 51082 0.5710 +4155 51090 0.4250 +4155 51806 0.9870 +4155 57030 0.4140 +4155 57142 0.5770 +4155 57165 0.4300 +4155 57396 0.6580 +4155 57471 0.7220 +4155 57571 0.4180 +4155 57716 0.7260 +4155 58190 0.9000 +4155 65078 0.4310 +4155 65125 0.4980 +4155 65268 0.5420 +4155 83983 0.5930 +4155 84894 0.5370 +4155 91860 0.9870 +4155 93377 0.5430 +4155 116448 0.7680 +4155 120892 0.9200 +4155 133482 0.4460 +4155 137902 0.7200 +4155 146713 0.7390 +4155 147746 0.5070 +4155 163688 0.9870 +4155 343035 0.4090 +4157 4158 0.4590 +4157 4159 0.7350 +4157 4160 0.6420 +4157 4161 0.6870 +4157 4254 0.5520 +4157 4286 0.8470 +4157 4342 0.4240 +4157 4507 0.8220 +4157 4519 0.4920 +4157 4893 0.4780 +4157 4929 0.4450 +4157 4935 0.5980 +4157 4948 0.9360 +4157 4988 0.4320 +4157 5077 0.4290 +4157 5443 0.9990 +4157 5566 0.5450 +4157 5567 0.5450 +4157 5568 0.5460 +4157 6010 0.5030 +4157 6490 0.6400 +4157 6663 0.5260 +4157 6714 0.5600 +4157 7015 0.4780 +4157 7157 0.4300 +4157 7200 0.4610 +4157 7299 0.9600 +4157 7306 0.9340 +4157 8013 0.5890 +4157 8398 0.7100 +4157 8412 0.4570 +4157 8455 0.7680 +4157 8558 0.4050 +4157 8801 0.4140 +4157 8894 0.4770 +4157 22913 0.7260 +4157 22980 0.5060 +4157 23295 0.8810 +4157 23596 0.5430 +4157 26033 0.5940 +4157 51151 0.9090 +4157 54331 0.8160 +4157 54386 0.5060 +4157 54796 0.4800 +4157 54849 0.5540 +4157 55014 0.7570 +4157 55894 0.5500 +4157 56246 0.5940 +4157 79083 0.4320 +4157 81037 0.5590 +4157 84539 0.5020 +4157 84627 0.4110 +4157 112609 0.7060 +4157 123041 0.7310 +4157 126321 0.5280 +4157 128869 0.6120 +4157 219931 0.6950 +4157 254251 0.4430 +4157 283652 0.8580 +4157 387129 0.4350 +4157 414325 0.7590 +4158 4159 0.4760 +4158 4160 0.6340 +4158 4161 0.6720 +4158 4173 0.4280 +4158 4306 0.5510 +4158 4782 0.4290 +4158 4878 0.9120 +4158 5020 0.5390 +4158 5122 0.4330 +4158 5443 0.9990 +4158 5566 0.4940 +4158 5567 0.4660 +4158 5568 0.4660 +4158 5573 0.4470 +4158 5972 0.6410 +4158 6010 0.5200 +4158 6714 0.5260 +4158 6770 0.8320 +4158 7252 0.9220 +4158 7253 0.5350 +4158 7432 0.9410 +4158 8086 0.6510 +4158 8622 0.4160 +4158 9677 0.4260 +4158 10887 0.5100 +4158 23295 0.5250 +4158 23530 0.4740 +4158 29930 0.4340 +4158 50940 0.4920 +4158 54331 0.8290 +4158 54829 0.6430 +4158 56246 0.9990 +4158 57105 0.4010 +4158 79798 0.5820 +4158 89846 0.6780 +4158 112609 0.9410 +4158 375484 0.4200 +4158 387129 0.4010 +4158 594857 0.6140 +4158 104909134 0.6510 +4159 4160 0.5050 +4159 4161 0.4740 +4159 4502 0.6840 +4159 4852 0.8270 +4159 4864 0.4480 +4159 4886 0.4930 +4159 4889 0.4700 +4159 4915 0.4530 +4159 4922 0.4270 +4159 5020 0.4240 +4159 5122 0.7470 +4159 5167 0.4590 +4159 5367 0.5150 +4159 5443 0.9990 +4159 5697 0.7610 +4159 6492 0.5130 +4159 6531 0.4390 +4159 6714 0.5490 +4159 7200 0.4940 +4159 7349 0.5430 +4159 7350 0.4050 +4159 7351 0.5230 +4159 8034 0.4330 +4159 8694 0.4120 +4159 8722 0.5830 +4159 9607 0.6220 +4159 9672 0.5440 +4159 11254 0.6270 +4159 23596 0.4070 +4159 23788 0.4470 +4159 25970 0.6930 +4159 51738 0.8380 +4159 54112 0.4480 +4159 54765 0.5220 +4159 56246 0.6880 +4159 79068 0.7010 +4159 112609 0.8330 +4159 132789 0.5330 +4159 140689 0.4540 +4159 257194 0.6040 +4159 338557 0.6800 +4159 387129 0.4530 +4159 594857 0.5220 +4159 619373 0.4280 +4160 4161 0.5370 +4160 4502 0.5710 +4160 4808 0.6220 +4160 4852 0.9160 +4160 4864 0.4180 +4160 4886 0.6630 +4160 4887 0.6910 +4160 4889 0.6830 +4160 4915 0.7050 +4160 4922 0.5840 +4160 4925 0.4510 +4160 5020 0.7570 +4160 5021 0.4290 +4160 5122 0.8530 +4160 5126 0.4100 +4160 5149 0.5000 +4160 5167 0.4850 +4160 5173 0.4640 +4160 5367 0.6430 +4160 5443 0.9990 +4160 5468 0.5160 +4160 5547 0.4920 +4160 5617 0.5520 +4160 5697 0.8050 +4160 5754 0.4140 +4160 6010 0.5080 +4160 6283 0.4770 +4160 6319 0.4030 +4160 6492 0.8380 +4160 6608 0.4580 +4160 6714 0.5650 +4160 6750 0.4470 +4160 6753 0.5180 +4160 6934 0.5710 +4160 7021 0.5440 +4160 7054 0.5520 +4160 7200 0.6800 +4160 7224 0.4830 +4160 7349 0.5210 +4160 7350 0.5880 +4160 7351 0.6950 +4160 8455 0.8710 +4160 8484 0.4730 +4160 8811 0.4380 +4160 8894 0.4220 +4160 9317 0.4800 +4160 9369 0.5330 +4160 9370 0.5700 +4160 9607 0.7370 +4160 9672 0.5480 +4160 10617 0.6120 +4160 10681 0.5080 +4160 10887 0.4040 +4160 22913 0.5240 +4160 23017 0.6480 +4160 23295 0.5250 +4160 23322 0.4820 +4160 23788 0.7930 +4160 25970 0.8670 +4160 26033 0.6950 +4160 51083 0.4750 +4160 51086 0.5160 +4160 51141 0.5940 +4160 51277 0.4810 +4160 51738 0.8830 +4160 54814 0.4940 +4160 54901 0.4770 +4160 56246 0.7970 +4160 56259 0.4510 +4160 57084 0.4270 +4160 59345 0.7590 +4160 79047 0.9070 +4160 79068 0.9440 +4160 89796 0.4720 +4160 89866 0.8230 +4160 112609 0.8570 +4160 127018 0.4720 +4160 129787 0.9280 +4160 132789 0.8740 +4160 140679 0.4140 +4160 144233 0.4770 +4160 164045 0.4970 +4160 169026 0.4200 +4160 219402 0.4360 +4160 257194 0.8450 +4160 338557 0.4890 +4160 387129 0.4570 +4160 594857 0.5270 +4160 619373 0.6420 +4160 100526835 0.5160 +4161 4502 0.6490 +4161 4852 0.4940 +4161 4887 0.4270 +4161 5443 0.9990 +4161 6010 0.5770 +4161 6714 0.5090 +4161 6750 0.4250 +4161 56246 0.6990 +4161 84539 0.4240 +4161 112609 0.8350 +4161 387129 0.4400 +4161 594857 0.4060 +4162 4240 0.4810 +4162 4311 0.6370 +4162 4313 0.4340 +4162 4340 0.4750 +4162 4478 0.5980 +4162 4585 0.5310 +4162 4628 0.4350 +4162 4638 0.4950 +4162 4650 0.4200 +4162 4684 0.5240 +4162 4804 0.6340 +4162 4810 0.4410 +4162 4897 0.4600 +4162 4907 0.8020 +4162 5058 0.4380 +4162 5062 0.4250 +4162 5156 0.4500 +4162 5159 0.6230 +4162 5175 0.8520 +4162 5290 0.4560 +4162 5295 0.4150 +4162 5296 0.4130 +4162 5361 0.4140 +4162 5364 0.4160 +4162 5420 0.4350 +4162 5460 0.4360 +4162 5478 0.4390 +4162 5585 0.4080 +4162 5590 0.4120 +4162 5788 0.7770 +4162 5867 0.5350 +4162 5879 0.5580 +4162 5880 0.5580 +4162 5881 0.5580 +4162 5962 0.6560 +4162 6093 0.4550 +4162 6387 0.5360 +4162 6401 0.6260 +4162 6403 0.4080 +4162 6657 0.4070 +4162 6662 0.4010 +4162 6696 0.4410 +4162 6768 0.4650 +4162 6793 0.4020 +4162 7010 0.4390 +4162 7037 0.6100 +4162 7040 0.5030 +4162 7056 0.4450 +4162 7058 0.4760 +4162 7070 0.8050 +4162 7112 0.4440 +4162 7430 0.6790 +4162 7450 0.6200 +4162 7474 0.7690 +4162 7852 0.4750 +4162 7879 0.4150 +4162 7976 0.8060 +4162 8326 0.4840 +4162 8503 0.4010 +4162 8763 0.4160 +4162 8773 0.4170 +4162 8776 0.4030 +4162 8826 0.4290 +4162 8842 0.6570 +4162 9341 0.4080 +4162 9414 0.4310 +4162 9423 0.6710 +4162 9475 0.4490 +4162 9497 0.4080 +4162 9590 0.5170 +4162 9710 0.4010 +4162 9748 0.4080 +4162 9815 0.4030 +4162 10006 0.4080 +4162 10071 0.5610 +4162 10152 0.4070 +4162 10160 0.4360 +4162 10163 0.4010 +4162 10211 0.4380 +4162 10298 0.4380 +4162 10409 0.4290 +4162 10630 0.4120 +4162 10763 0.6330 +4162 10787 0.4340 +4162 10979 0.4740 +4162 11113 0.4050 +4162 11135 0.4240 +4162 23075 0.4010 +4162 23114 0.4220 +4162 23191 0.4090 +4162 23344 0.4240 +4162 23545 0.6270 +4162 23580 0.4110 +4162 26049 0.4320 +4162 26050 0.4380 +4162 29941 0.4240 +4162 29984 0.5580 +4162 50855 0.4970 +4162 51347 0.4020 +4162 54443 0.4110 +4162 54509 0.5720 +4162 55004 0.4280 +4162 55845 0.4010 +4162 55914 0.4380 +4162 56241 0.5070 +4162 56288 0.4570 +4162 56667 0.5830 +4162 56924 0.4170 +4162 57124 0.4520 +4162 57381 0.5140 +4162 57595 0.5480 +4162 65124 0.4320 +4162 79180 0.4060 +4162 79923 0.4390 +4162 80728 0.4470 +4162 81624 0.4230 +4162 81839 0.4120 +4162 91010 0.4050 +4162 91828 0.4580 +4162 94025 0.5450 +4162 115650 0.4220 +4162 128239 0.4100 +4162 134549 0.7110 +4162 140453 0.5270 +4162 143098 0.4190 +4162 143662 0.5840 +4162 144402 0.4130 +4162 154796 0.4910 +4162 200958 0.4030 +4162 284119 0.4880 +4162 392255 0.4440 +4162 445582 0.4050 +4162 100133941 0.4450 +4163 4793 0.6000 +4163 4809 0.6060 +4163 4839 0.4010 +4163 4931 0.4020 +4163 5095 0.6620 +4163 5393 0.5260 +4163 5394 0.5560 +4163 5822 0.8370 +4163 6124 0.4390 +4163 6130 0.4110 +4163 6175 0.4050 +4163 6183 0.5220 +4163 6189 0.6460 +4163 6191 0.4610 +4163 6192 0.4610 +4163 6193 0.4480 +4163 6194 0.6400 +4163 6201 0.6370 +4163 6202 0.6690 +4163 6203 0.6600 +4163 6205 0.6210 +4163 6206 0.4110 +4163 6207 0.4950 +4163 6208 0.4820 +4163 6217 0.5640 +4163 6222 0.6500 +4163 6223 0.6810 +4163 6228 0.7500 +4163 6229 0.6180 +4163 6232 0.5080 +4163 6234 0.6180 +4163 6907 0.4990 +4163 8568 0.4240 +4163 8602 0.8760 +4163 9136 0.8940 +4163 9277 0.8570 +4163 9533 0.5250 +4163 9704 0.4130 +4163 9724 0.7260 +4163 9732 0.4110 +4163 9790 0.8860 +4163 9904 0.4690 +4163 10083 0.6950 +4163 10153 0.4400 +4163 10199 0.8260 +4163 10436 0.8110 +4163 10438 0.4700 +4163 10528 0.7990 +4163 10557 0.6060 +4163 10607 0.8700 +4163 10813 0.7120 +4163 10849 0.4060 +4163 10885 0.8910 +4163 11056 0.4150 +4163 11103 0.8610 +4163 11340 0.5170 +4163 22984 0.8440 +4163 23016 0.4550 +4163 23054 0.6770 +4163 23076 0.4410 +4163 23160 0.8790 +4163 23212 0.4410 +4163 23223 0.5460 +4163 23246 0.4120 +4163 23378 0.4970 +4163 23404 0.4560 +4163 23513 0.7610 +4163 23517 0.5940 +4163 23560 0.5890 +4163 23774 0.4990 +4163 25879 0.8080 +4163 25983 0.9120 +4163 26155 0.6510 +4163 26156 0.7720 +4163 26354 0.4670 +4163 26574 0.8760 +4163 27042 0.4410 +4163 27154 0.4200 +4163 27292 0.5590 +4163 27340 0.8710 +4163 27341 0.8570 +4163 28987 0.5820 +4163 29889 0.6020 +4163 30836 0.8240 +4163 51010 0.4720 +4163 51013 0.5680 +4163 51065 0.5080 +4163 51068 0.4030 +4163 51073 0.4250 +4163 51077 0.8070 +4163 51081 0.4480 +4163 51096 0.8930 +4163 51106 0.4660 +4163 51118 0.7910 +4163 51149 0.4950 +4163 51154 0.6690 +4163 51187 0.4220 +4163 51202 0.4200 +4163 51319 0.4110 +4163 51388 0.6740 +4163 51493 0.7300 +4163 51538 0.4130 +4163 51602 0.8780 +4163 51611 0.4450 +4163 51760 0.4140 +4163 54475 0.4020 +4163 54512 0.4170 +4163 54552 0.4670 +4163 54555 0.4900 +4163 54606 0.5910 +4163 55006 0.5710 +4163 55127 0.8540 +4163 55131 0.4540 +4163 55140 0.4470 +4163 55226 0.8550 +4163 55272 0.8240 +4163 55299 0.6170 +4163 55651 0.6180 +4163 55720 0.7020 +4163 55759 0.6290 +4163 55760 0.5540 +4163 55781 0.5530 +4163 55794 0.4200 +4163 55813 0.9210 +4163 56902 0.6740 +4163 56915 0.5900 +4163 56919 0.4140 +4163 56922 0.9170 +4163 57050 0.8690 +4163 57418 0.4560 +4163 57495 0.4930 +4163 57647 0.4130 +4163 57805 0.4280 +4163 60487 0.5640 +4163 60625 0.4130 +4163 64087 0.9060 +4163 64216 0.5590 +4163 64794 0.4280 +4163 64960 0.4610 +4163 64963 0.4530 +4163 65083 0.8280 +4163 65095 0.5080 +4163 79050 0.9120 +4163 79571 0.7200 +4163 79665 0.4130 +4163 79718 0.4880 +4163 79954 0.8070 +4163 80135 0.4230 +4163 81609 0.4700 +4163 83743 0.6740 +4163 83878 0.4140 +4163 84128 0.8050 +4163 84135 0.8190 +4163 84154 0.6260 +4163 84294 0.4220 +4163 84365 0.4510 +4163 84549 0.4220 +4163 84916 0.9130 +4163 84946 0.6590 +4163 90121 0.4560 +4163 92370 0.4110 +4163 92856 0.9200 +4163 115708 0.5710 +4163 118460 0.4170 +4163 126402 0.4480 +4163 140032 0.4610 +4163 152110 0.4390 +4163 153443 0.4670 +4163 155368 0.4050 +4163 165545 0.5500 +4163 221078 0.4010 +4163 221830 0.5880 +4163 256380 0.4380 +4163 345630 0.6740 +4166 4958 0.4230 +4166 4969 0.5330 +4166 7045 0.5700 +4166 8702 0.6060 +4166 10164 0.6000 +4166 10402 0.4430 +4166 10678 0.4290 +4166 11081 0.8290 +4166 23563 0.4480 +4166 27233 0.9020 +4166 27284 0.9020 +4166 29914 0.6350 +4166 30813 0.4080 +4166 50515 0.5640 +4166 55204 0.4250 +4166 55501 0.4620 +4166 64377 0.4740 +4166 83539 0.6250 +4166 83959 0.6280 +4166 93010 0.6920 +4166 113189 0.4550 +4166 128025 0.4430 +4166 166012 0.4710 +4166 442038 0.9050 +4168 4830 0.6720 +4168 5066 0.5120 +4168 5341 0.9770 +4168 5877 0.9350 +4168 5879 0.7210 +4168 5880 0.6970 +4168 5881 0.4430 +4168 5921 0.4320 +4168 5923 0.6630 +4168 5924 0.6950 +4168 5962 0.7030 +4168 5996 0.6190 +4168 5999 0.6400 +4168 6000 0.6920 +4168 6001 0.7060 +4168 6002 0.6950 +4168 6003 0.6950 +4168 6004 0.6790 +4168 6453 0.7430 +4168 6654 0.5330 +4168 6655 0.4120 +4168 6714 0.6850 +4168 7074 0.4420 +4168 7430 0.8360 +4168 7454 0.4450 +4168 7984 0.6080 +4168 8490 0.7010 +4168 8601 0.7070 +4168 8786 0.6990 +4168 8821 0.5820 +4168 9138 0.8910 +4168 9181 0.6320 +4168 9546 0.4270 +4168 9628 0.6890 +4168 9732 0.4040 +4168 9826 0.7450 +4168 9844 0.4200 +4168 10188 0.7070 +4168 10287 0.6730 +4168 10672 0.8250 +4168 11214 0.7830 +4168 22899 0.7080 +4168 23075 0.4870 +4168 23229 0.5610 +4168 23348 0.5070 +4168 23365 0.7660 +4168 23370 0.4360 +4168 23433 0.4320 +4168 25791 0.7440 +4168 26499 0.9690 +4168 26575 0.7090 +4168 27237 0.4050 +4168 28988 0.4530 +4168 50618 0.7360 +4168 50619 0.4750 +4168 50650 0.6780 +4168 55114 0.4240 +4168 57449 0.6220 +4168 57572 0.4350 +4168 57647 0.5710 +4168 64145 0.4180 +4168 64283 0.7000 +4168 64407 0.6950 +4168 80005 0.4240 +4168 84904 0.4320 +4168 85397 0.7390 +4168 139818 0.4010 +4168 154796 0.4080 +4168 431704 0.7230 +4170 4193 0.7500 +4170 4194 0.4270 +4170 4217 0.4490 +4170 4233 0.4610 +4170 4313 0.4340 +4170 4318 0.5290 +4170 4605 0.4310 +4170 4609 0.8570 +4170 4613 0.4140 +4170 4780 0.4350 +4170 4790 0.6130 +4170 4792 0.5760 +4170 4843 0.4840 +4170 4851 0.5460 +4170 4893 0.5540 +4170 4926 0.4660 +4170 5054 0.4460 +4170 5071 0.5380 +4170 5159 0.4270 +4170 5209 0.5150 +4170 5243 0.4230 +4170 5245 0.5070 +4170 5289 0.4740 +4170 5290 0.4920 +4170 5293 0.4270 +4170 5295 0.5880 +4170 5300 0.4340 +4170 5347 0.4340 +4170 5366 0.9990 +4170 5506 0.4160 +4170 5562 0.7500 +4170 5564 0.7230 +4170 5565 0.7210 +4170 5571 0.6060 +4170 5594 0.7400 +4170 5595 0.6330 +4170 5597 0.4310 +4170 5599 0.5170 +4170 5600 0.5270 +4170 5603 0.5130 +4170 5604 0.5500 +4170 5605 0.4520 +4170 5728 0.7630 +4170 5743 0.5420 +4170 5747 0.4130 +4170 5781 0.4040 +4170 5788 0.4480 +4170 5894 0.5190 +4170 5966 0.4090 +4170 5970 0.4700 +4170 6005 0.4560 +4170 6184 0.4420 +4170 6185 0.4390 +4170 6195 0.4140 +4170 6198 0.5520 +4170 6300 0.5110 +4170 6387 0.4080 +4170 6416 0.6980 +4170 6500 0.7090 +4170 6615 0.4620 +4170 6624 0.4610 +4170 6714 0.6070 +4170 6772 0.7140 +4170 6774 0.8830 +4170 6776 0.6250 +4170 6777 0.6240 +4170 6778 0.6750 +4170 6790 0.5980 +4170 6850 0.4650 +4170 7013 0.6440 +4170 7099 0.4560 +4170 7124 0.6360 +4170 7132 0.5840 +4170 7157 0.9180 +4170 7178 0.8400 +4170 7189 0.5540 +4170 7249 0.4040 +4170 7409 0.4540 +4170 7416 0.9710 +4170 7417 0.7350 +4170 7419 0.7250 +4170 7431 0.5170 +4170 7441 0.4620 +4170 7465 0.4040 +4170 7494 0.4960 +4170 7529 0.6210 +4170 7532 0.6030 +4170 7538 0.4370 +4170 7837 0.6140 +4170 7852 0.5190 +4170 7957 0.4410 +4170 8115 0.4800 +4170 8178 0.4450 +4170 8239 0.9580 +4170 8290 0.4450 +4170 8312 0.5100 +4170 8356 0.4350 +4170 8454 0.7070 +4170 8651 0.4230 +4170 8658 0.8360 +4170 8678 0.9980 +4170 8717 0.4060 +4170 8737 0.4620 +4170 8739 0.9850 +4170 8743 0.6990 +4170 8772 0.5950 +4170 8795 0.7050 +4170 8797 0.6380 +4170 8837 0.7910 +4170 8870 0.7600 +4170 8878 0.5500 +4170 8900 0.4950 +4170 8945 0.8840 +4170 8975 0.7280 +4170 9020 0.4300 +4170 9021 0.7070 +4170 9140 0.9880 +4170 9294 0.4890 +4170 9314 0.4200 +4170 9429 0.4070 +4170 9451 0.5410 +4170 9474 0.5500 +4170 9530 0.5630 +4170 9531 0.7170 +4170 9623 0.4790 +4170 9868 0.5140 +4170 9927 0.4420 +4170 9991 0.4430 +4170 10017 0.8050 +4170 10018 0.9990 +4170 10075 0.9960 +4170 10135 0.4970 +4170 10273 0.4070 +4170 10533 0.4870 +4170 10575 0.4530 +4170 10659 0.5980 +4170 10673 0.4820 +4170 10818 0.4540 +4170 11040 0.4900 +4170 11200 0.4180 +4170 22809 0.6590 +4170 22926 0.4580 +4170 22933 0.4260 +4170 23048 0.4330 +4170 23410 0.4380 +4170 23411 0.5890 +4170 23476 0.4220 +4170 23657 0.4220 +4170 26272 0.4300 +4170 27113 0.9980 +4170 27161 0.4650 +4170 27250 0.4080 +4170 27429 0.4580 +4170 29126 0.4520 +4170 51185 0.6540 +4170 54205 0.8170 +4170 54507 0.4460 +4170 55294 0.9450 +4170 55669 0.4330 +4170 57519 0.5610 +4170 58480 0.4340 +4170 64422 0.4100 +4170 64764 0.5410 +4170 65018 0.7450 +4170 79370 0.4180 +4170 79444 0.4510 +4170 79680 0.9570 +4170 80351 0.9610 +4170 81559 0.5830 +4170 81631 0.5010 +4170 81669 0.5220 +4170 84260 0.4380 +4170 84557 0.5830 +4170 85456 0.6900 +4170 90427 0.9700 +4170 133482 0.5510 +4170 137902 0.6140 +4170 220213 0.4100 +4170 377630 0.6010 +4170 378884 0.4330 +4170 390714 0.5250 +4170 440093 0.4350 +4170 440686 0.4350 +4170 441925 0.5570 +4170 653145 0.4420 +4170 653604 0.4350 +4170 100423062 0.5410 +4170 100529063 0.5690 +4170 102723407 0.7080 +4171 4172 0.9990 +4171 4173 0.9990 +4171 4174 0.9990 +4171 4175 0.9990 +4171 4176 0.9990 +4171 4288 0.5470 +4171 4292 0.4090 +4171 4436 0.6730 +4171 4605 0.4890 +4171 4678 0.5680 +4171 4686 0.4350 +4171 4796 0.9640 +4171 4998 0.9980 +4171 4999 0.9990 +4171 5000 0.9970 +4171 5001 0.9980 +4171 5111 0.9390 +4171 5230 0.4610 +4171 5347 0.6890 +4171 5422 0.9770 +4171 5424 0.9590 +4171 5425 0.5920 +4171 5426 0.9970 +4171 5427 0.9920 +4171 5496 0.4830 +4171 5557 0.8420 +4171 5558 0.9510 +4171 5718 0.4360 +4171 5810 0.4870 +4171 5884 0.6250 +4171 5888 0.7340 +4171 5891 0.7880 +4171 5893 0.4460 +4171 5925 0.5040 +4171 5980 0.6150 +4171 5981 0.5370 +4171 5982 0.6890 +4171 5983 0.9160 +4171 5984 0.8770 +4171 5985 0.8690 +4171 6117 0.9580 +4171 6118 0.9020 +4171 6119 0.8400 +4171 6147 0.4070 +4171 6233 0.5310 +4171 6240 0.9140 +4171 6241 0.8490 +4171 6500 0.4340 +4171 6502 0.4690 +4171 6749 0.9140 +4171 6790 0.6680 +4171 6795 0.4090 +4171 6921 0.8030 +4171 6923 0.8030 +4171 7083 0.5280 +4171 7097 0.5440 +4171 7153 0.6890 +4171 7158 0.5990 +4171 7272 0.6060 +4171 7298 0.8130 +4171 7311 0.5130 +4171 7314 0.5150 +4171 7316 0.5150 +4171 7372 0.4340 +4171 7374 0.4010 +4171 7486 0.4440 +4171 7884 0.4840 +4171 8208 0.6110 +4171 8243 0.4580 +4171 8294 0.9450 +4171 8317 0.9990 +4171 8318 0.9990 +4171 8350 0.9580 +4171 8351 0.9230 +4171 8352 0.9490 +4171 8353 0.9240 +4171 8354 0.9390 +4171 8355 0.9540 +4171 8356 0.9770 +4171 8357 0.9550 +4171 8358 0.9450 +4171 8359 0.9090 +4171 8360 0.9090 +4171 8361 0.9840 +4171 8362 0.9280 +4171 8363 0.9120 +4171 8364 0.9410 +4171 8366 0.9510 +4171 8367 0.9100 +4171 8368 0.9480 +4171 8370 0.9090 +4171 8438 0.5640 +4171 8453 0.8170 +4171 8479 0.4740 +4171 8520 0.4310 +4171 8833 0.4810 +4171 8900 0.6980 +4171 8914 0.9980 +4171 8968 0.9500 +4171 9055 0.7080 +4171 9088 0.6670 +4171 9126 0.4300 +4171 9133 0.8730 +4171 9134 0.5170 +4171 9156 0.7860 +4171 9212 0.7020 +4171 9319 0.4460 +4171 9329 0.4150 +4171 9401 0.8380 +4171 9493 0.7330 +4171 9584 0.4490 +4171 9585 0.4130 +4171 9700 0.4520 +4171 9735 0.6700 +4171 9768 0.4140 +4171 9780 0.6060 +4171 9787 0.5390 +4171 9833 0.6010 +4171 9837 0.9990 +4171 9918 0.7130 +4171 9928 0.4250 +4171 9978 0.8090 +4171 10036 0.8230 +4171 10051 0.6770 +4171 10112 0.5780 +4171 10155 0.5090 +4171 10293 0.4440 +4171 10403 0.5260 +4171 10528 0.4730 +4171 10535 0.7320 +4171 10592 0.6570 +4171 10615 0.4270 +4171 10635 0.4930 +4171 10721 0.4610 +4171 10733 0.4870 +4171 10763 0.4160 +4171 10926 0.9960 +4171 11004 0.5690 +4171 11011 0.4180 +4171 11065 0.5250 +4171 11073 0.5920 +4171 11130 0.4460 +4171 11143 0.4050 +4171 11169 0.9980 +4171 11198 0.7350 +4171 11200 0.6080 +4171 11339 0.4520 +4171 22858 0.7870 +4171 22948 0.4210 +4171 22974 0.5850 +4171 23165 0.5090 +4171 23234 0.9440 +4171 23310 0.4210 +4171 23397 0.6500 +4171 23451 0.6220 +4171 23476 0.5480 +4171 23594 0.9490 +4171 23595 0.9930 +4171 23649 0.8430 +4171 24137 0.4970 +4171 25842 0.9920 +4171 25939 0.4160 +4171 26013 0.5250 +4171 29028 0.4750 +4171 29089 0.4440 +4171 29127 0.5160 +4171 29128 0.5510 +4171 29935 0.7220 +4171 29980 0.7550 +4171 50484 0.7310 +4171 51053 0.7390 +4171 51203 0.4950 +4171 51514 0.7720 +4171 51659 0.9980 +4171 54107 0.8000 +4171 54443 0.6780 +4171 54815 0.4240 +4171 54892 0.4890 +4171 54962 0.9980 +4171 55143 0.5930 +4171 55215 0.5660 +4171 55355 0.6540 +4171 55388 0.9970 +4171 55506 0.4010 +4171 55671 0.4170 +4171 55723 0.9960 +4171 55920 0.4210 +4171 56655 0.6380 +4171 56992 0.4700 +4171 63895 0.5940 +4171 63922 0.9100 +4171 63967 0.9760 +4171 64151 0.5740 +4171 64682 0.4450 +4171 64785 0.9990 +4171 79019 0.4770 +4171 79075 0.4510 +4171 79621 0.4290 +4171 79682 0.4490 +4171 79892 0.9320 +4171 79915 0.8340 +4171 80174 0.6560 +4171 81620 0.9990 +4171 83461 0.4430 +4171 83540 0.4370 +4171 83879 0.4540 +4171 84126 0.7810 +4171 84296 0.9990 +4171 84515 0.9810 +4171 84823 0.5880 +4171 90381 0.4770 +4171 113130 0.6430 +4171 116028 0.4650 +4171 116211 0.8060 +4171 121504 0.9090 +4171 122769 0.8490 +4171 126961 0.9240 +4171 140767 0.4350 +4171 146956 0.4670 +4171 150094 0.4010 +4171 157313 0.4020 +4171 157570 0.5740 +4171 157777 0.8060 +4171 166979 0.4180 +4171 222229 0.4080 +4171 253714 0.7050 +4171 254394 0.9000 +4171 254528 0.5640 +4171 255626 0.4200 +4171 259266 0.5400 +4171 284439 0.4220 +4171 333932 0.9200 +4171 387103 0.4150 +4171 474343 0.4800 +4171 554313 0.9090 +4171 653604 0.9700 +4172 4173 0.9990 +4172 4174 0.9990 +4172 4175 0.9990 +4172 4176 0.9990 +4172 4288 0.6450 +4172 4436 0.6150 +4172 4605 0.5620 +4172 4609 0.6720 +4172 4678 0.6570 +4172 4686 0.4870 +4172 4796 0.4610 +4172 4904 0.4260 +4172 4927 0.4430 +4172 4998 0.9960 +4172 4999 0.9980 +4172 5000 0.9940 +4172 5001 0.9970 +4172 5111 0.9750 +4172 5245 0.4430 +4172 5314 0.5190 +4172 5347 0.8270 +4172 5422 0.9880 +4172 5424 0.9850 +4172 5425 0.8960 +4172 5426 0.9960 +4172 5427 0.9990 +4172 5428 0.7410 +4172 5519 0.4030 +4172 5557 0.9490 +4172 5558 0.9750 +4172 5591 0.4560 +4172 5884 0.5110 +4172 5885 0.5160 +4172 5888 0.7530 +4172 5891 0.7830 +4172 5893 0.4280 +4172 5928 0.6200 +4172 5931 0.5200 +4172 5980 0.8980 +4172 5982 0.8460 +4172 5983 0.9420 +4172 5984 0.9710 +4172 5985 0.9130 +4172 6117 0.9380 +4172 6118 0.9580 +4172 6119 0.8310 +4172 6182 0.4240 +4172 6233 0.5130 +4172 6240 0.9130 +4172 6241 0.8480 +4172 6347 0.5610 +4172 6426 0.5810 +4172 6432 0.4450 +4172 6500 0.5650 +4172 6502 0.5370 +4172 6613 0.5050 +4172 6749 0.7780 +4172 6787 0.5770 +4172 6790 0.6540 +4172 6795 0.4070 +4172 6839 0.4250 +4172 6921 0.8290 +4172 6923 0.8320 +4172 6941 0.5390 +4172 7027 0.4170 +4172 7083 0.6850 +4172 7112 0.4900 +4172 7150 0.4590 +4172 7153 0.7530 +4172 7155 0.5500 +4172 7157 0.4850 +4172 7158 0.4170 +4172 7272 0.5900 +4172 7298 0.7040 +4172 7311 0.4990 +4172 7314 0.5000 +4172 7316 0.4990 +4172 7329 0.4030 +4172 7374 0.4900 +4172 7465 0.5140 +4172 7534 0.4440 +4172 7884 0.4810 +4172 8208 0.5100 +4172 8243 0.6140 +4172 8290 0.4130 +4172 8317 0.9990 +4172 8318 0.9990 +4172 8349 0.4090 +4172 8356 0.8180 +4172 8361 0.4160 +4172 8438 0.5020 +4172 8452 0.5350 +4172 8453 0.8550 +4172 8467 0.5880 +4172 8833 0.6320 +4172 8881 0.4530 +4172 8888 0.9880 +4172 8900 0.7490 +4172 8914 0.9930 +4172 9055 0.5130 +4172 9088 0.5640 +4172 9126 0.5790 +4172 9133 0.6680 +4172 9134 0.5610 +4172 9156 0.7360 +4172 9184 0.4730 +4172 9212 0.6690 +4172 9232 0.5640 +4172 9319 0.5590 +4172 9343 0.5250 +4172 9401 0.7000 +4172 9493 0.7120 +4172 9584 0.4290 +4172 9585 0.4030 +4172 9631 0.5370 +4172 9656 0.4100 +4172 9700 0.5690 +4172 9735 0.5990 +4172 9768 0.4380 +4172 9780 0.4240 +4172 9782 0.4630 +4172 9787 0.4630 +4172 9817 0.8630 +4172 9833 0.6810 +4172 9837 0.9990 +4172 9918 0.6580 +4172 9928 0.4460 +4172 9978 0.8520 +4172 10036 0.8200 +4172 10051 0.8370 +4172 10055 0.4400 +4172 10072 0.5650 +4172 10112 0.6540 +4172 10155 0.4790 +4172 10293 0.5120 +4172 10319 0.5840 +4172 10403 0.6100 +4172 10459 0.7850 +4172 10528 0.4270 +4172 10535 0.7360 +4172 10574 0.5340 +4172 10592 0.6410 +4172 10606 0.4870 +4172 10615 0.5440 +4172 10635 0.4840 +4172 10714 0.9390 +4172 10733 0.4920 +4172 10735 0.4120 +4172 10856 0.4730 +4172 10926 0.9970 +4172 11004 0.5450 +4172 11065 0.5210 +4172 11073 0.9800 +4172 11113 0.4380 +4172 11130 0.6820 +4172 11143 0.5790 +4172 11169 0.9990 +4172 11198 0.4700 +4172 11200 0.7080 +4172 11232 0.7350 +4172 11339 0.5800 +4172 22858 0.8000 +4172 23137 0.4550 +4172 23165 0.5100 +4172 23234 0.5340 +4172 23310 0.5380 +4172 23397 0.6840 +4172 23476 0.5850 +4172 23594 0.9190 +4172 23595 0.9730 +4172 23636 0.5480 +4172 23649 0.9290 +4172 24137 0.5880 +4172 25792 0.7530 +4172 25842 0.6150 +4172 25949 0.7300 +4172 26271 0.4340 +4172 27127 0.4260 +4172 27152 0.4170 +4172 27297 0.7200 +4172 29028 0.5600 +4172 29127 0.5450 +4172 29128 0.6550 +4172 29935 0.7700 +4172 29980 0.8670 +4172 50484 0.7350 +4172 51053 0.8640 +4172 51203 0.4720 +4172 51343 0.5440 +4172 51514 0.6770 +4172 51659 0.9990 +4172 54107 0.8740 +4172 54108 0.7590 +4172 54517 0.4280 +4172 54815 0.4040 +4172 54892 0.7300 +4172 54962 0.9930 +4172 55063 0.4390 +4172 55143 0.7150 +4172 55215 0.6620 +4172 55355 0.5840 +4172 55388 0.9990 +4172 55536 0.4040 +4172 55723 0.8320 +4172 55746 0.5430 +4172 55794 0.4450 +4172 55920 0.4240 +4172 56655 0.7770 +4172 56852 0.4690 +4172 56992 0.4430 +4172 57122 0.4840 +4172 57804 0.5460 +4172 63895 0.4210 +4172 63922 0.7860 +4172 63967 0.9520 +4172 64151 0.5750 +4172 64682 0.5160 +4172 64785 0.9990 +4172 79053 0.4210 +4172 79075 0.5900 +4172 79682 0.5330 +4172 79728 0.4840 +4172 79733 0.6590 +4172 79892 0.9980 +4172 79902 0.4190 +4172 79915 0.4660 +4172 80119 0.4400 +4172 80174 0.6040 +4172 81620 0.9990 +4172 81624 0.5060 +4172 81669 0.4160 +4172 83461 0.6070 +4172 83540 0.5070 +4172 83879 0.4810 +4172 83932 0.4690 +4172 84126 0.7260 +4172 84250 0.9160 +4172 84296 0.9990 +4172 84515 0.9930 +4172 84823 0.7520 +4172 85417 0.4170 +4172 90381 0.7240 +4172 91607 0.4520 +4172 113130 0.5680 +4172 116028 0.4140 +4172 116211 0.9000 +4172 122769 0.9320 +4172 140767 0.5960 +4172 144455 0.4160 +4172 152098 0.4390 +4172 157570 0.5250 +4172 157777 0.9160 +4172 166979 0.6160 +4172 203068 0.5100 +4172 253714 0.5890 +4172 254394 0.9980 +4172 254528 0.4110 +4172 259266 0.4510 +4172 284439 0.5290 +4172 387103 0.5520 +4172 440093 0.4140 +4172 440686 0.4120 +4172 653604 0.4240 +4173 4174 0.9990 +4173 4175 0.9990 +4173 4176 0.9990 +4173 4288 0.5860 +4173 4360 0.5020 +4173 4436 0.6060 +4173 4522 0.4730 +4173 4605 0.5330 +4173 4609 0.6510 +4173 4616 0.4190 +4173 4678 0.5990 +4173 4686 0.4220 +4173 4751 0.5160 +4173 4796 0.6170 +4173 4998 0.9980 +4173 4999 0.9880 +4173 5000 0.9950 +4173 5001 0.9920 +4173 5111 0.9650 +4173 5347 0.8510 +4173 5422 0.9780 +4173 5424 0.8720 +4173 5425 0.4880 +4173 5426 0.9950 +4173 5427 0.9980 +4173 5557 0.9110 +4173 5558 0.9440 +4173 5591 0.8870 +4173 5718 0.5070 +4173 5822 0.4180 +4173 5832 0.4210 +4173 5883 0.4560 +4173 5884 0.5510 +4173 5885 0.6250 +4173 5888 0.8090 +4173 5889 0.4310 +4173 5890 0.4410 +4173 5891 0.7830 +4173 5892 0.4520 +4173 5893 0.6620 +4173 5902 0.5310 +4173 5931 0.4570 +4173 5980 0.6620 +4173 5981 0.4010 +4173 5982 0.8280 +4173 5983 0.9220 +4173 5984 0.8980 +4173 5985 0.9230 +4173 6117 0.9120 +4173 6118 0.9130 +4173 6119 0.6670 +4173 6233 0.5170 +4173 6240 0.9520 +4173 6241 0.8990 +4173 6426 0.5080 +4173 6491 0.4030 +4173 6500 0.5560 +4173 6502 0.5200 +4173 6742 0.4420 +4173 6749 0.9430 +4173 6790 0.6960 +4173 6813 0.4650 +4173 6921 0.8150 +4173 6923 0.8130 +4173 7027 0.4220 +4173 7048 0.4440 +4173 7083 0.5290 +4173 7112 0.4840 +4173 7150 0.5860 +4173 7153 0.8140 +4173 7155 0.4040 +4173 7156 0.4110 +4173 7157 0.7220 +4173 7158 0.4870 +4173 7272 0.7090 +4173 7298 0.9380 +4173 7311 0.4990 +4173 7314 0.5130 +4173 7316 0.5330 +4173 7465 0.4830 +4173 7486 0.5660 +4173 7517 0.4720 +4173 7874 0.4990 +4173 7884 0.5820 +4173 8208 0.7740 +4173 8243 0.5500 +4173 8317 0.9990 +4173 8318 0.9990 +4173 8337 0.4280 +4173 8350 0.5580 +4173 8355 0.5320 +4173 8356 0.8310 +4173 8357 0.5280 +4173 8361 0.8270 +4173 8364 0.5000 +4173 8366 0.5170 +4173 8368 0.5100 +4173 8438 0.5730 +4173 8453 0.8250 +4173 8833 0.5600 +4173 8900 0.9230 +4173 8914 0.9930 +4173 9055 0.7030 +4173 9088 0.5860 +4173 9126 0.5810 +4173 9133 0.8660 +4173 9134 0.7730 +4173 9156 0.8960 +4173 9212 0.7220 +4173 9232 0.5750 +4173 9319 0.7410 +4173 9329 0.4070 +4173 9343 0.4170 +4173 9401 0.8100 +4173 9493 0.7780 +4173 9584 0.4030 +4173 9585 0.5110 +4173 9633 0.4080 +4173 9700 0.5750 +4173 9735 0.6520 +4173 9768 0.6030 +4173 9780 0.8250 +4173 9787 0.6090 +4173 9817 0.4680 +4173 9833 0.6860 +4173 9837 0.9990 +4173 9918 0.7320 +4173 9928 0.5790 +4173 9978 0.8470 +4173 10036 0.8060 +4173 10051 0.7360 +4173 10112 0.8240 +4173 10155 0.5910 +4173 10291 0.5730 +4173 10293 0.5000 +4173 10319 0.4270 +4173 10403 0.5130 +4173 10460 0.4860 +4173 10535 0.6710 +4173 10540 0.4370 +4173 10592 0.7480 +4173 10606 0.5540 +4173 10615 0.5550 +4173 10635 0.5000 +4173 10714 0.4560 +4173 10733 0.6450 +4173 10856 0.4220 +4173 10926 0.9990 +4173 10982 0.5050 +4173 10992 0.4050 +4173 11004 0.6170 +4173 11065 0.6530 +4173 11073 0.7920 +4173 11113 0.4480 +4173 11130 0.6060 +4173 11169 0.9990 +4173 11198 0.7220 +4173 11200 0.9270 +4173 11339 0.4700 +4173 22858 0.7890 +4173 22974 0.7230 +4173 23310 0.4740 +4173 23397 0.7110 +4173 23450 0.4270 +4173 23514 0.4520 +4173 23530 0.4240 +4173 23594 0.9870 +4173 23595 0.9900 +4173 23649 0.9400 +4173 24137 0.5700 +4173 25842 0.8990 +4173 26013 0.4710 +4173 26271 0.4040 +4173 27085 0.4760 +4173 29028 0.8600 +4173 29089 0.4860 +4173 29127 0.5990 +4173 29128 0.6020 +4173 29935 0.6570 +4173 29980 0.6930 +4173 50484 0.7500 +4173 51053 0.8380 +4173 51203 0.6640 +4173 51339 0.4970 +4173 51343 0.4350 +4173 51426 0.4880 +4173 51434 0.4290 +4173 51512 0.4620 +4173 51514 0.7070 +4173 51659 0.9990 +4173 54069 0.4030 +4173 54107 0.8690 +4173 54443 0.8410 +4173 54478 0.4160 +4173 54821 0.5250 +4173 54892 0.7990 +4173 54962 0.9970 +4173 55055 0.4480 +4173 55063 0.4240 +4173 55143 0.6940 +4173 55165 0.6150 +4173 55215 0.6510 +4173 55226 0.4540 +4173 55355 0.5110 +4173 55388 0.9990 +4173 55671 0.4110 +4173 55723 0.9180 +4173 55839 0.5160 +4173 56655 0.6760 +4173 56992 0.4880 +4173 57082 0.5160 +4173 57122 0.4620 +4173 57418 0.9570 +4173 63895 0.8230 +4173 63922 0.7320 +4173 63967 0.9710 +4173 64105 0.4560 +4173 64151 0.6980 +4173 64785 0.9990 +4173 64946 0.4200 +4173 79019 0.5780 +4173 79075 0.8140 +4173 79682 0.4440 +4173 79733 0.5980 +4173 79801 0.4130 +4173 79892 0.9970 +4173 79902 0.4580 +4173 79915 0.7600 +4173 79968 0.6110 +4173 79991 0.4190 +4173 80119 0.5510 +4173 80174 0.8460 +4173 81620 0.9990 +4173 83461 0.6690 +4173 83540 0.5720 +4173 83879 0.5830 +4173 84057 0.6550 +4173 84061 0.4010 +4173 84126 0.6130 +4173 84250 0.4720 +4173 84296 0.9990 +4173 84515 0.9970 +4173 84823 0.5510 +4173 85417 0.4090 +4173 85456 0.5650 +4173 90381 0.9390 +4173 113130 0.6610 +4173 116028 0.5290 +4173 116211 0.8980 +4173 122769 0.8380 +4173 144455 0.5130 +4173 150468 0.4490 +4173 152098 0.4240 +4173 157313 0.5160 +4173 157570 0.6420 +4173 157777 0.9090 +4173 166979 0.4250 +4173 253714 0.6480 +4173 254394 0.9980 +4173 254528 0.4430 +4173 255626 0.4260 +4173 259266 0.6780 +4173 284439 0.4930 +4173 347733 0.4380 +4173 387103 0.5840 +4173 390081 0.4280 +4173 653604 0.4030 +4174 4175 0.9990 +4174 4176 0.9990 +4174 4288 0.6570 +4174 4292 0.5480 +4174 4436 0.6310 +4174 4605 0.5790 +4174 4609 0.4300 +4174 4678 0.6640 +4174 4686 0.4530 +4174 4796 0.6550 +4174 4904 0.5760 +4174 4998 0.9980 +4174 4999 0.9990 +4174 5000 0.9760 +4174 5001 0.9990 +4174 5111 0.9180 +4174 5245 0.5980 +4174 5347 0.7470 +4174 5422 0.9580 +4174 5424 0.9690 +4174 5425 0.7160 +4174 5426 0.9970 +4174 5427 0.9980 +4174 5557 0.9450 +4174 5558 0.9480 +4174 5692 0.7990 +4174 5884 0.5670 +4174 5888 0.6760 +4174 5891 0.7820 +4174 5925 0.6690 +4174 5928 0.4420 +4174 5931 0.4670 +4174 5933 0.5070 +4174 5934 0.5310 +4174 5980 0.7030 +4174 5981 0.4860 +4174 5982 0.8740 +4174 5983 0.9370 +4174 5984 0.9490 +4174 5985 0.9490 +4174 6117 0.9020 +4174 6118 0.9250 +4174 6119 0.6530 +4174 6233 0.5220 +4174 6240 0.9570 +4174 6241 0.9440 +4174 6426 0.5140 +4174 6500 0.4980 +4174 6502 0.5440 +4174 6594 0.4700 +4174 6599 0.4070 +4174 6749 0.7670 +4174 6772 0.5960 +4174 6790 0.6030 +4174 6921 0.8110 +4174 6923 0.8010 +4174 7083 0.8090 +4174 7112 0.4770 +4174 7153 0.7550 +4174 7155 0.4880 +4174 7157 0.6760 +4174 7272 0.5950 +4174 7298 0.8960 +4174 7311 0.5130 +4174 7314 0.5110 +4174 7316 0.5110 +4174 7486 0.6090 +4174 7884 0.6360 +4174 8208 0.7080 +4174 8237 0.4180 +4174 8243 0.5570 +4174 8317 0.9990 +4174 8318 0.9990 +4174 8356 0.4050 +4174 8361 0.4460 +4174 8438 0.4650 +4174 8453 0.8320 +4174 8467 0.5500 +4174 8518 0.5590 +4174 8833 0.4510 +4174 8900 0.9020 +4174 8914 0.9950 +4174 9055 0.6200 +4174 9088 0.4870 +4174 9126 0.5760 +4174 9133 0.8160 +4174 9134 0.6260 +4174 9156 0.8300 +4174 9184 0.4020 +4174 9212 0.7020 +4174 9232 0.4530 +4174 9319 0.5820 +4174 9343 0.4040 +4174 9401 0.8110 +4174 9493 0.8410 +4174 9557 0.4090 +4174 9584 0.4290 +4174 9585 0.6020 +4174 9700 0.4900 +4174 9735 0.7280 +4174 9787 0.5270 +4174 9833 0.5280 +4174 9837 0.9990 +4174 9918 0.7360 +4174 9928 0.4210 +4174 9978 0.8360 +4174 10036 0.8940 +4174 10042 0.8660 +4174 10043 0.8440 +4174 10051 0.7850 +4174 10112 0.7230 +4174 10146 0.4330 +4174 10155 0.4780 +4174 10291 0.5120 +4174 10293 0.5340 +4174 10319 0.4480 +4174 10403 0.5980 +4174 10460 0.5310 +4174 10528 0.4120 +4174 10535 0.8350 +4174 10592 0.7540 +4174 10635 0.5030 +4174 10714 0.4590 +4174 10733 0.4560 +4174 10856 0.5240 +4174 10926 0.9910 +4174 10946 0.4820 +4174 10963 0.4530 +4174 11004 0.4990 +4174 11065 0.5470 +4174 11073 0.9850 +4174 11113 0.4640 +4174 11130 0.4460 +4174 11151 0.4460 +4174 11169 0.9990 +4174 11198 0.5060 +4174 11200 0.8110 +4174 11284 0.4050 +4174 22858 0.7880 +4174 22974 0.4880 +4174 23137 0.5310 +4174 23165 0.4050 +4174 23264 0.4210 +4174 23310 0.4180 +4174 23331 0.4170 +4174 23397 0.6950 +4174 23451 0.4740 +4174 23476 0.5870 +4174 23587 0.5520 +4174 23594 0.9750 +4174 23595 0.9940 +4174 23649 0.9100 +4174 24137 0.5280 +4174 25842 0.6820 +4174 26610 0.5820 +4174 27127 0.4590 +4174 27304 0.6730 +4174 29028 0.5060 +4174 29066 0.4310 +4174 29127 0.4480 +4174 29128 0.5770 +4174 29935 0.7120 +4174 29980 0.5370 +4174 50484 0.8040 +4174 51053 0.8470 +4174 51203 0.5230 +4174 51343 0.5190 +4174 51504 0.5770 +4174 51514 0.6460 +4174 51550 0.5590 +4174 51605 0.4090 +4174 51659 0.9990 +4174 54107 0.8590 +4174 54443 0.6820 +4174 54815 0.4180 +4174 54821 0.4020 +4174 54859 0.5140 +4174 54892 0.6150 +4174 54962 0.9890 +4174 54970 0.5180 +4174 55038 0.4060 +4174 55063 0.5990 +4174 55140 0.6500 +4174 55143 0.6200 +4174 55215 0.5610 +4174 55255 0.4060 +4174 55388 0.9970 +4174 55577 0.5100 +4174 55705 0.4840 +4174 55723 0.8630 +4174 55839 0.4050 +4174 55920 0.4390 +4174 56655 0.6890 +4174 57604 0.4100 +4174 63922 0.8980 +4174 63967 0.9580 +4174 64151 0.4920 +4174 64682 0.4650 +4174 64785 0.9990 +4174 79019 0.5750 +4174 79075 0.5550 +4174 79682 0.4310 +4174 79733 0.4570 +4174 79892 0.9950 +4174 79915 0.5240 +4174 79968 0.5340 +4174 79991 0.4780 +4174 80174 0.7220 +4174 81605 0.6970 +4174 81620 0.9990 +4174 81624 0.4680 +4174 83461 0.6150 +4174 83540 0.5520 +4174 83879 0.5350 +4174 84126 0.8340 +4174 84250 0.8940 +4174 84296 0.9990 +4174 84515 0.9960 +4174 90353 0.7260 +4174 90381 0.6580 +4174 91801 0.5300 +4174 94239 0.4010 +4174 112970 0.5710 +4174 113130 0.5530 +4174 114898 0.4650 +4174 116211 0.8920 +4174 122769 0.9160 +4174 140767 0.5980 +4174 152098 0.5990 +4174 157313 0.4950 +4174 157570 0.5240 +4174 157777 0.9100 +4174 163786 0.4440 +4174 166979 0.6270 +4174 253714 0.6880 +4174 254394 0.9980 +4174 254528 0.6010 +4174 259266 0.5560 +4174 283373 0.4150 +4174 284439 0.5030 +4174 285381 0.4300 +4174 348180 0.4510 +4174 348654 0.4160 +4174 387103 0.5880 +4174 440686 0.4380 +4175 4176 0.9990 +4175 4288 0.6560 +4175 4292 0.4390 +4175 4360 0.4820 +4175 4436 0.6370 +4175 4605 0.4200 +4175 4609 0.4240 +4175 4678 0.7090 +4175 4686 0.4320 +4175 4796 0.7330 +4175 4869 0.4060 +4175 4880 0.4910 +4175 4883 0.5490 +4175 4998 0.9970 +4175 4999 0.9860 +4175 5000 0.9970 +4175 5001 0.9940 +4175 5111 0.9120 +4175 5245 0.4030 +4175 5347 0.8620 +4175 5422 0.9560 +4175 5424 0.8400 +4175 5425 0.4490 +4175 5426 0.9800 +4175 5427 0.9950 +4175 5557 0.9320 +4175 5558 0.9000 +4175 5884 0.4310 +4175 5885 0.5360 +4175 5888 0.7740 +4175 5889 0.4030 +4175 5891 0.7820 +4175 5928 0.4290 +4175 5931 0.5210 +4175 5980 0.4090 +4175 5982 0.8270 +4175 5983 0.9610 +4175 5984 0.9450 +4175 5985 0.9010 +4175 6117 0.9460 +4175 6118 0.7770 +4175 6119 0.7060 +4175 6233 0.5250 +4175 6240 0.9530 +4175 6241 0.8660 +4175 6426 0.4580 +4175 6500 0.6250 +4175 6502 0.4590 +4175 6749 0.8650 +4175 6790 0.7430 +4175 6921 0.8190 +4175 6923 0.8130 +4175 6927 0.5280 +4175 7083 0.4740 +4175 7084 0.4900 +4175 7150 0.4330 +4175 7153 0.7890 +4175 7157 0.4790 +4175 7272 0.6200 +4175 7298 0.8750 +4175 7311 0.5010 +4175 7314 0.5090 +4175 7316 0.5090 +4175 7337 0.6760 +4175 7374 0.4150 +4175 7398 0.4140 +4175 7465 0.4300 +4175 7486 0.4440 +4175 7884 0.6140 +4175 8208 0.7470 +4175 8243 0.7430 +4175 8317 0.9990 +4175 8318 0.9990 +4175 8350 0.6680 +4175 8356 0.6290 +4175 8357 0.4840 +4175 8361 0.8090 +4175 8364 0.4910 +4175 8366 0.5020 +4175 8368 0.5240 +4175 8438 0.4920 +4175 8453 0.8480 +4175 8467 0.4090 +4175 8833 0.5550 +4175 8881 0.4250 +4175 8900 0.9170 +4175 8914 0.9880 +4175 8968 0.4560 +4175 9055 0.7150 +4175 9088 0.4840 +4175 9126 0.5530 +4175 9133 0.8370 +4175 9134 0.6690 +4175 9156 0.8440 +4175 9184 0.5190 +4175 9212 0.6120 +4175 9232 0.6780 +4175 9319 0.5330 +4175 9329 0.4270 +4175 9401 0.7520 +4175 9493 0.7860 +4175 9584 0.4250 +4175 9585 0.5940 +4175 9631 0.4080 +4175 9688 0.4230 +4175 9700 0.5370 +4175 9735 0.7500 +4175 9768 0.4480 +4175 9787 0.5550 +4175 9793 0.4980 +4175 9833 0.6340 +4175 9837 0.9980 +4175 9918 0.6260 +4175 9978 0.8300 +4175 10036 0.6050 +4175 10051 0.7340 +4175 10112 0.6350 +4175 10155 0.6150 +4175 10291 0.4080 +4175 10293 0.5860 +4175 10319 0.4330 +4175 10403 0.4820 +4175 10535 0.7430 +4175 10592 0.7500 +4175 10615 0.4430 +4175 10635 0.6730 +4175 10733 0.5280 +4175 10762 0.4730 +4175 10769 0.4390 +4175 10926 0.9930 +4175 10982 0.8460 +4175 11004 0.5220 +4175 11065 0.5720 +4175 11073 0.7220 +4175 11130 0.4820 +4175 11169 0.9980 +4175 11198 0.5160 +4175 11200 0.5500 +4175 11339 0.4300 +4175 22858 0.7820 +4175 22974 0.5810 +4175 23137 0.4510 +4175 23165 0.4690 +4175 23234 0.5330 +4175 23310 0.4450 +4175 23397 0.5610 +4175 23476 0.5320 +4175 23594 0.9610 +4175 23595 0.9510 +4175 23649 0.8650 +4175 24137 0.5220 +4175 25842 0.9000 +4175 29028 0.6490 +4175 29089 0.4320 +4175 29127 0.7280 +4175 29128 0.6920 +4175 29935 0.6700 +4175 29980 0.6150 +4175 50484 0.7290 +4175 51053 0.9510 +4175 51203 0.5540 +4175 51514 0.6190 +4175 51659 0.9980 +4175 54107 0.8260 +4175 54443 0.6670 +4175 54478 0.4400 +4175 54815 0.4300 +4175 54892 0.5640 +4175 54962 0.9930 +4175 55055 0.4460 +4175 55143 0.5640 +4175 55165 0.4230 +4175 55215 0.5360 +4175 55388 0.9990 +4175 55671 0.4020 +4175 55723 0.9390 +4175 55746 0.4630 +4175 55839 0.4630 +4175 56655 0.6260 +4175 56852 0.4110 +4175 56992 0.4040 +4175 57211 0.6460 +4175 57697 0.4010 +4175 63922 0.5470 +4175 63967 0.9530 +4175 64105 0.4240 +4175 64151 0.6840 +4175 64318 0.9570 +4175 64682 0.5250 +4175 64785 0.9990 +4175 64946 0.4070 +4175 79023 0.4310 +4175 79075 0.6120 +4175 79621 0.4170 +4175 79677 0.4400 +4175 79682 0.4840 +4175 79733 0.4670 +4175 79892 0.9880 +4175 79902 0.4360 +4175 79915 0.6910 +4175 79968 0.4270 +4175 80174 0.5250 +4175 81620 0.9990 +4175 81846 0.5890 +4175 83461 0.5110 +4175 83540 0.6280 +4175 83879 0.5830 +4175 83932 0.6130 +4175 84083 0.4250 +4175 84126 0.7190 +4175 84289 0.4410 +4175 84296 0.9990 +4175 84515 0.9880 +4175 90381 0.6590 +4175 113130 0.5900 +4175 114799 0.4360 +4175 116028 0.4020 +4175 122769 0.8660 +4175 126520 0.4310 +4175 140628 0.5490 +4175 146909 0.4800 +4175 151987 0.4080 +4175 157313 0.4670 +4175 157570 0.5280 +4175 253714 0.7870 +4175 254394 0.9820 +4175 259266 0.6150 +4175 283383 0.6850 +4175 283652 0.4030 +4175 284439 0.4500 +4175 387103 0.5460 +4175 389421 0.5840 +4175 440093 0.4060 +4175 474343 0.4220 +4176 4288 0.4590 +4176 4292 0.4950 +4176 4436 0.7100 +4176 4438 0.6410 +4176 4605 0.4550 +4176 4609 0.6840 +4176 4678 0.8100 +4176 4686 0.5750 +4176 4691 0.4630 +4176 4738 0.4230 +4176 4739 0.4050 +4176 4751 0.4600 +4176 4791 0.4100 +4176 4792 0.5070 +4176 4796 0.4800 +4176 4869 0.6130 +4176 4998 0.9970 +4176 4999 0.9970 +4176 5000 0.9950 +4176 5001 0.9910 +4176 5111 0.9850 +4176 5245 0.7240 +4176 5347 0.7500 +4176 5422 0.9440 +4176 5424 0.8330 +4176 5425 0.5710 +4176 5426 0.9860 +4176 5427 0.9820 +4176 5431 0.7520 +4176 5496 0.4870 +4176 5499 0.4540 +4176 5557 0.9190 +4176 5558 0.9340 +4176 5728 0.4400 +4176 5813 0.5960 +4176 5832 0.4450 +4176 5884 0.6580 +4176 5885 0.5900 +4176 5888 0.6640 +4176 5889 0.4180 +4176 5891 0.7830 +4176 5925 0.8460 +4176 5928 0.5140 +4176 5931 0.5210 +4176 5933 0.4950 +4176 5934 0.5010 +4176 5980 0.6380 +4176 5981 0.4120 +4176 5982 0.8940 +4176 5983 0.9370 +4176 5984 0.9060 +4176 5985 0.9390 +4176 6117 0.9050 +4176 6118 0.8220 +4176 6119 0.6700 +4176 6194 0.4390 +4176 6233 0.6760 +4176 6240 0.9210 +4176 6241 0.8780 +4176 6426 0.6150 +4176 6500 0.5860 +4176 6502 0.5350 +4176 6599 0.4780 +4176 6626 0.4360 +4176 6722 0.6640 +4176 6749 0.8920 +4176 6790 0.6170 +4176 6921 0.9260 +4176 6923 0.8460 +4176 6950 0.4550 +4176 7014 0.4850 +4176 7027 0.4090 +4176 7040 0.4760 +4176 7064 0.4100 +4176 7083 0.5000 +4176 7112 0.5280 +4176 7150 0.5400 +4176 7153 0.7060 +4176 7155 0.4750 +4176 7157 0.5380 +4176 7167 0.4320 +4176 7203 0.4660 +4176 7272 0.4220 +4176 7298 0.7340 +4176 7311 0.5460 +4176 7314 0.5550 +4176 7316 0.5830 +4176 7337 0.6750 +4176 7353 0.5460 +4176 7374 0.4030 +4176 7415 0.5680 +4176 7486 0.4580 +4176 7520 0.4320 +4176 7791 0.5100 +4176 7884 0.7230 +4176 8208 0.6350 +4176 8237 0.4020 +4176 8243 0.6970 +4176 8290 0.7410 +4176 8317 0.9990 +4176 8318 0.9990 +4176 8356 0.8690 +4176 8361 0.7760 +4176 8438 0.4560 +4176 8452 0.6770 +4176 8453 0.9020 +4176 8454 0.4320 +4176 8467 0.4380 +4176 8480 0.4920 +4176 8517 0.4230 +4176 8833 0.4930 +4176 8900 0.9130 +4176 8914 0.9960 +4176 9055 0.6440 +4176 9088 0.4510 +4176 9126 0.5530 +4176 9133 0.7520 +4176 9134 0.6510 +4176 9156 0.8200 +4176 9184 0.5160 +4176 9212 0.7850 +4176 9319 0.7990 +4176 9329 0.4440 +4176 9343 0.5770 +4176 9400 0.4490 +4176 9401 0.7780 +4176 9493 0.7010 +4176 9531 0.4070 +4176 9559 0.7480 +4176 9584 0.4490 +4176 9585 0.4170 +4176 9631 0.5370 +4176 9688 0.4200 +4176 9700 0.5740 +4176 9735 0.5430 +4176 9775 0.4460 +4176 9787 0.4540 +4176 9833 0.4010 +4176 9837 0.9990 +4176 9878 0.4270 +4176 9918 0.7730 +4176 9928 0.6250 +4176 9939 0.5170 +4176 9978 0.8630 +4176 9984 0.4070 +4176 10013 0.4640 +4176 10014 0.4050 +4176 10018 0.5740 +4176 10036 0.6610 +4176 10051 0.8370 +4176 10112 0.5520 +4176 10155 0.7130 +4176 10212 0.4550 +4176 10293 0.7130 +4176 10403 0.4350 +4176 10436 0.4400 +4176 10460 0.5840 +4176 10528 0.4800 +4176 10535 0.8630 +4176 10574 0.4100 +4176 10592 0.7000 +4176 10615 0.4260 +4176 10733 0.5990 +4176 10769 0.4140 +4176 10856 0.4390 +4176 10926 0.9970 +4176 10963 0.4760 +4176 10982 0.5390 +4176 11004 0.6660 +4176 11065 0.6950 +4176 11073 0.5770 +4176 11113 0.5150 +4176 11124 0.4460 +4176 11130 0.4530 +4176 11169 0.9960 +4176 11198 0.4350 +4176 11200 0.6630 +4176 11331 0.4070 +4176 22858 0.7970 +4176 22974 0.6600 +4176 23137 0.4910 +4176 23165 0.4780 +4176 23248 0.4270 +4176 23264 0.4460 +4176 23310 0.4570 +4176 23331 0.4430 +4176 23397 0.5470 +4176 23476 0.5800 +4176 23594 0.9990 +4176 23595 0.9910 +4176 23649 0.8470 +4176 23650 0.4300 +4176 24137 0.4140 +4176 25842 0.8790 +4176 26013 0.4660 +4176 26024 0.4100 +4176 26043 0.4560 +4176 26168 0.4140 +4176 26259 0.4260 +4176 29028 0.4870 +4176 29066 0.5270 +4176 29089 0.4130 +4176 29127 0.6770 +4176 29128 0.5250 +4176 29935 0.6600 +4176 29980 0.5470 +4176 50484 0.7690 +4176 51053 0.7290 +4176 51203 0.5040 +4176 51514 0.5430 +4176 51659 0.9990 +4176 51699 0.6250 +4176 54107 0.7730 +4176 54443 0.6930 +4176 54815 0.4100 +4176 54892 0.6160 +4176 54962 0.9990 +4176 54970 0.4430 +4176 55063 0.4100 +4176 55143 0.6580 +4176 55170 0.4540 +4176 55197 0.4270 +4176 55215 0.7440 +4176 55388 0.9990 +4176 55666 0.4820 +4176 55720 0.7040 +4176 55723 0.9000 +4176 55737 0.7020 +4176 55759 0.4700 +4176 56655 0.5760 +4176 58490 0.4110 +4176 60681 0.4200 +4176 63922 0.6980 +4176 63967 0.9560 +4176 64151 0.4680 +4176 64785 0.9990 +4176 79019 0.4910 +4176 79075 0.4580 +4176 79677 0.4770 +4176 79892 0.9960 +4176 79902 0.4700 +4176 79915 0.6640 +4176 79991 0.5410 +4176 80119 0.4930 +4176 80174 0.5820 +4176 81620 0.9990 +4176 81624 0.4120 +4176 81669 0.4240 +4176 81930 0.4740 +4176 83540 0.4210 +4176 83743 0.5690 +4176 83879 0.4160 +4176 83932 0.4900 +4176 84057 0.4510 +4176 84126 0.9780 +4176 84181 0.4460 +4176 84296 0.9990 +4176 84515 0.9970 +4176 84823 0.7490 +4176 84864 0.4360 +4176 85417 0.4060 +4176 90381 0.6030 +4176 93611 0.4510 +4176 94239 0.5090 +4176 112483 0.4940 +4176 113130 0.4940 +4176 116211 0.8790 +4176 122769 0.9470 +4176 140767 0.5030 +4176 152185 0.4090 +4176 157570 0.5050 +4176 157777 0.8960 +4176 158067 0.5130 +4176 203068 0.4910 +4176 220134 0.4340 +4176 253714 0.6370 +4176 254394 0.9970 +4176 259266 0.5090 +4176 284439 0.6130 +4176 387103 0.6260 +4176 389856 0.4420 +4176 440093 0.6500 +4176 440193 0.4820 +4176 440686 0.6500 +4176 653604 0.6550 +4179 4345 0.5230 +4179 4478 0.9850 +4179 4608 0.9930 +4179 4700 0.5030 +4179 5199 0.6720 +4179 5289 0.6340 +4179 5538 0.4310 +4179 5551 0.5870 +4179 5648 0.5460 +4179 5664 0.5360 +4179 5724 0.4060 +4179 5738 0.4300 +4179 5817 0.4110 +4179 5867 0.4220 +4179 5937 0.5500 +4179 5939 0.5060 +4179 5955 0.4330 +4179 6504 0.9670 +4179 6528 0.5210 +4179 6714 0.4410 +4179 7035 0.4150 +4179 7056 0.8200 +4179 7099 0.6060 +4179 7103 0.4050 +4179 7124 0.4620 +4179 7184 0.4570 +4179 7293 0.5640 +4179 7448 0.6850 +4179 7450 0.4500 +4179 7534 0.4650 +4179 8038 0.4520 +4179 8526 0.7640 +4179 8547 0.4420 +4179 8678 0.6790 +4179 9172 0.9480 +4179 10103 0.4070 +4179 10544 0.4690 +4179 10747 0.5830 +4179 10877 0.6420 +4179 10878 0.7200 +4179 11025 0.4150 +4179 11093 0.7120 +4179 11326 0.5060 +4179 23646 0.4930 +4179 25974 0.5350 +4179 27202 0.5490 +4179 27347 0.6400 +4179 29126 0.5230 +4179 29851 0.4780 +4179 30816 0.7410 +4179 30817 0.5540 +4179 30835 0.4890 +4179 57120 0.8920 +4179 80380 0.4470 +4179 81494 0.7200 +4179 81607 0.8090 +4179 340351 0.7240 +4179 405754 0.6350 +4184 4956 0.5610 +4184 5619 0.4660 +4184 5620 0.5360 +4184 6414 0.8390 +4184 7141 0.5270 +4184 7142 0.5740 +4184 7295 0.5430 +4184 8655 0.5910 +4184 8852 0.4190 +4184 83755 0.6210 +4184 83899 0.4200 +4184 130749 0.4120 +4184 199834 0.4990 +4184 440023 0.4830 +4185 4224 0.4050 +4185 9211 0.9100 +4185 54507 0.4230 +4185 55203 0.5890 +4185 151050 0.4270 +4185 163175 0.7210 +4185 203190 0.5530 +4185 257194 0.4570 +4185 339366 0.4220 +4188 4223 0.5390 +4188 4599 0.4310 +4188 4617 0.4170 +4188 4654 0.8920 +4188 4656 0.4930 +4188 5013 0.6390 +4188 7376 0.4120 +4188 7547 0.5330 +4188 7695 0.4690 +4188 8673 0.4200 +4188 8862 0.4530 +4188 9139 0.4660 +4188 9454 0.5040 +4188 9455 0.4930 +4188 9456 0.4810 +4188 10252 0.6360 +4188 22943 0.4370 +4188 23503 0.6000 +4188 50717 0.4240 +4188 51806 0.4830 +4188 57326 0.4860 +4188 79843 0.5040 +4188 84648 0.5910 +4188 84707 0.6190 +4188 84733 0.4190 +4188 90060 0.4580 +4188 91860 0.4730 +4188 126070 0.4200 +4188 129807 0.5660 +4188 163688 0.4730 +4188 414157 0.5490 +4189 4820 0.5500 +4189 5034 0.5430 +4189 5481 0.5540 +4189 5610 0.4490 +4189 5611 0.5640 +4189 5920 0.4210 +4189 6400 0.5570 +4189 6440 0.4300 +4189 6444 0.4490 +4189 6622 0.4340 +4189 6648 0.4360 +4189 6782 0.8590 +4189 6872 0.4140 +4189 7184 0.8690 +4189 7248 0.4180 +4189 7415 0.4990 +4189 7494 0.9520 +4189 7818 0.4180 +4189 8600 0.4300 +4189 8720 0.4010 +4189 9093 0.5140 +4189 9197 0.6880 +4189 9349 0.4460 +4189 9360 0.5510 +4189 9451 0.6650 +4189 9528 0.5610 +4189 9601 0.6870 +4189 9695 0.8420 +4189 9709 0.7970 +4189 9829 0.5150 +4189 9871 0.4010 +4189 10130 0.6620 +4189 10131 0.4180 +4189 10237 0.4370 +4189 10294 0.6000 +4189 10483 0.5130 +4189 10525 0.9450 +4189 10595 0.5080 +4189 10598 0.4820 +4189 10808 0.7250 +4189 10915 0.4120 +4189 10954 0.5030 +4189 10956 0.4310 +4189 10963 0.5450 +4189 11145 0.4200 +4189 11168 0.4040 +4189 11222 0.4490 +4189 11231 0.5580 +4189 22824 0.7370 +4189 22926 0.7240 +4189 23071 0.4840 +4189 23193 0.4690 +4189 23640 0.6330 +4189 23645 0.5680 +4189 23753 0.4030 +4189 25789 0.5220 +4189 26589 0.4430 +4189 27230 0.5090 +4189 27248 0.5760 +4189 28998 0.4610 +4189 29927 0.5140 +4189 30001 0.5540 +4189 50640 0.5330 +4189 51009 0.4560 +4189 51014 0.4300 +4189 51182 0.7350 +4189 51314 0.4680 +4189 51726 0.5610 +4189 54979 0.4210 +4189 55466 0.5830 +4189 55829 0.5220 +4189 56605 0.6160 +4189 56886 0.4660 +4189 57110 0.4200 +4189 57129 0.4110 +4189 57761 0.4340 +4189 60559 0.5050 +4189 63875 0.4610 +4189 64374 0.9490 +4189 79139 0.4220 +4189 79174 0.4730 +4189 80267 0.6470 +4189 80273 0.4600 +4189 81570 0.5220 +4189 84447 0.4150 +4189 84545 0.4060 +4189 91319 0.4260 +4189 116835 0.4520 +4189 118461 0.4200 +4189 134266 0.4980 +4189 168451 0.5830 +4189 259217 0.4880 +4189 339416 0.4290 +4189 388633 0.4200 +4191 4199 0.9800 +4191 4200 0.9770 +4191 4351 0.4360 +4191 4519 0.4200 +4191 4522 0.4190 +4191 4594 0.8300 +4191 4698 0.4590 +4191 4701 0.4680 +4191 4702 0.5940 +4191 4704 0.8170 +4191 4705 0.4830 +4191 4706 0.7860 +4191 4711 0.6280 +4191 4713 0.4890 +4191 4714 0.5790 +4191 4715 0.6020 +4191 4716 0.4320 +4191 4720 0.7550 +4191 4722 0.6590 +4191 4723 0.8730 +4191 4726 0.5490 +4191 4728 0.8260 +4191 4729 0.4860 +4191 4763 0.4130 +4191 4942 0.4310 +4191 4967 0.8450 +4191 5009 0.4230 +4191 5037 0.6260 +4191 5052 0.5570 +4191 5071 0.4770 +4191 5091 0.9860 +4191 5095 0.4730 +4191 5096 0.6870 +4191 5105 0.9560 +4191 5106 0.9640 +4191 5161 0.5620 +4191 5162 0.8500 +4191 5191 0.4740 +4191 5211 0.6220 +4191 5213 0.6770 +4191 5214 0.5750 +4191 5223 0.5910 +4191 5224 0.5290 +4191 5226 0.6760 +4191 5230 0.7380 +4191 5232 0.6500 +4191 5236 0.7080 +4191 5238 0.4040 +4191 5239 0.5480 +4191 5250 0.5510 +4191 5256 0.4790 +4191 5313 0.7700 +4191 5315 0.8290 +4191 5464 0.4300 +4191 5518 0.4930 +4191 5689 0.4750 +4191 5696 0.5100 +4191 5699 0.4660 +4191 5702 0.4320 +4191 5705 0.4780 +4191 5714 0.4930 +4191 5813 0.7690 +4191 5830 0.5160 +4191 5832 0.4740 +4191 5834 0.4130 +4191 5836 0.4280 +4191 5837 0.4330 +4191 5888 0.7580 +4191 5979 0.4180 +4191 6120 0.5960 +4191 6175 0.4560 +4191 6389 0.9050 +4191 6390 0.9710 +4191 6391 0.7180 +4191 6392 0.7930 +4191 6472 0.5540 +4191 6576 0.4830 +4191 6647 0.7470 +4191 6648 0.6550 +4191 6652 0.5010 +4191 6742 0.4490 +4191 6804 0.4310 +4191 6888 0.6480 +4191 7001 0.4430 +4191 7019 0.4380 +4191 7037 0.4360 +4191 7083 0.5840 +4191 7086 0.6180 +4191 7167 0.8560 +4191 7203 0.4150 +4191 7284 0.8950 +4191 7332 0.4700 +4191 7384 0.9210 +4191 7385 0.7050 +4191 7386 0.6580 +4191 7407 0.4760 +4191 7415 0.5770 +4191 7416 0.7510 +4191 7417 0.7040 +4191 7419 0.5260 +4191 7453 0.5710 +4191 7812 0.4370 +4191 7915 0.9100 +4191 8050 0.5890 +4191 8128 0.4530 +4191 8192 0.5990 +4191 8277 0.5680 +4191 8402 0.8490 +4191 8604 0.4670 +4191 8659 0.4230 +4191 8789 0.6400 +4191 8801 0.7330 +4191 8802 0.9470 +4191 8803 0.8450 +4191 9377 0.9030 +4191 9380 0.4930 +4191 9512 0.7050 +4191 9563 0.7220 +4191 10165 0.4110 +4191 10383 0.5280 +4191 10422 0.5560 +4191 10449 0.6900 +4191 10452 0.4490 +4191 10463 0.5220 +4191 10476 0.7240 +4191 10551 0.5300 +4191 10574 0.5030 +4191 10797 0.4250 +4191 10841 0.4020 +4191 10845 0.6670 +4191 10873 0.9810 +4191 10891 0.4030 +4191 10935 0.5180 +4191 10975 0.4930 +4191 10989 0.4130 +4191 11315 0.5760 +4191 11331 0.4770 +4191 22934 0.5400 +4191 22948 0.4360 +4191 23095 0.4490 +4191 23530 0.4190 +4191 25824 0.4380 +4191 25828 0.4530 +4191 25874 0.5390 +4191 26227 0.4830 +4191 26330 0.6780 +4191 27068 0.4610 +4191 27089 0.6890 +4191 29796 0.5410 +4191 29968 0.4480 +4191 30968 0.5270 +4191 51031 0.4420 +4191 51079 0.4470 +4191 51117 0.4110 +4191 51497 0.4290 +4191 51520 0.4020 +4191 51555 0.4560 +4191 51651 0.4160 +4191 54205 0.5870 +4191 54583 0.4920 +4191 54949 0.6290 +4191 54994 0.4810 +4191 55143 0.4950 +4191 55276 0.5190 +4191 55526 0.5850 +4191 55554 0.4210 +4191 55654 0.6470 +4191 55753 0.6930 +4191 55902 0.6150 +4191 56922 0.4180 +4191 56954 0.9030 +4191 56965 0.6020 +4191 57176 0.4020 +4191 57407 0.4380 +4191 57469 0.4640 +4191 57494 0.8090 +4191 64087 0.5560 +4191 79018 0.6450 +4191 79158 0.7980 +4191 79611 0.4190 +4191 79668 0.6010 +4191 79728 0.6020 +4191 79944 0.6760 +4191 80201 0.4620 +4191 80273 0.5730 +4191 81889 0.4500 +4191 84076 0.5500 +4191 84532 0.5830 +4191 84701 0.4530 +4191 84706 0.5410 +4191 112398 0.4190 +4191 125061 0.8310 +4191 126328 0.5120 +4191 130752 0.6250 +4191 137362 0.9780 +4191 160287 0.5050 +4191 221223 0.4470 +4191 259307 0.8380 +4191 285527 0.6480 +4191 374291 0.6140 +4191 387712 0.5930 +4191 441531 0.5420 +4191 729020 0.5510 +4192 4313 0.5290 +4192 4613 0.5910 +4192 4684 0.4030 +4192 4691 0.9570 +4192 4803 0.5370 +4192 4804 0.4840 +4192 4853 0.9720 +4192 4908 0.4970 +4192 4914 0.5620 +4192 5015 0.4400 +4192 5080 0.4100 +4192 5290 0.6410 +4192 5291 0.5460 +4192 5295 0.5390 +4192 5296 0.5160 +4192 5335 0.5460 +4192 5359 0.4410 +4192 5594 0.5340 +4192 5743 0.5140 +4192 5764 0.7920 +4192 5777 0.4610 +4192 5787 0.8250 +4192 5803 0.9780 +4192 6091 0.5730 +4192 6272 0.4460 +4192 6382 0.8250 +4192 6385 0.7150 +4192 6401 0.4780 +4192 6464 0.6330 +4192 6513 0.6520 +4192 6653 0.8400 +4192 6696 0.6750 +4192 6714 0.6500 +4192 6772 0.5010 +4192 6774 0.6960 +4192 7076 0.4700 +4192 7157 0.4530 +4192 7474 0.5250 +4192 8795 0.4010 +4192 8929 0.5010 +4192 9507 0.4540 +4192 9508 0.4570 +4192 9672 0.6770 +4192 10675 0.5790 +4192 10818 0.5580 +4192 11082 0.4590 +4192 11096 0.4120 +4192 27035 0.4710 +4192 50507 0.5660 +4192 50964 0.4500 +4192 51435 0.4310 +4192 57669 0.4220 +4192 63973 0.4370 +4192 80205 0.5240 +4192 93649 0.4960 +4192 221914 0.7940 +4192 259282 0.5360 +4193 4194 0.9990 +4193 4214 0.5610 +4193 4217 0.5890 +4193 4233 0.4600 +4193 4255 0.4920 +4193 4303 0.8680 +4193 4318 0.6280 +4193 4361 0.4750 +4193 4436 0.4130 +4193 4609 0.8130 +4193 4610 0.5370 +4193 4613 0.7440 +4193 4618 0.4370 +4193 4646 0.4240 +4193 4656 0.4370 +4193 4683 0.7740 +4193 4691 0.8580 +4193 4734 0.6470 +4193 4738 0.6940 +4193 4763 0.6230 +4193 4771 0.4200 +4193 4780 0.4010 +4193 4790 0.7190 +4193 4792 0.4730 +4193 4804 0.4110 +4193 4851 0.8430 +4193 4855 0.4250 +4193 4869 0.9740 +4193 4893 0.6090 +4193 4904 0.5180 +4193 4914 0.4240 +4193 4927 0.4320 +4193 4928 0.5470 +4193 5036 0.5810 +4193 5071 0.5190 +4193 5111 0.5530 +4193 5155 0.4100 +4193 5156 0.8430 +4193 5159 0.4350 +4193 5164 0.5230 +4193 5170 0.6450 +4193 5241 0.5960 +4193 5243 0.4720 +4193 5290 0.6420 +4193 5292 0.6170 +4193 5295 0.6750 +4193 5315 0.7220 +4193 5347 0.7720 +4193 5355 0.4050 +4193 5366 0.7190 +4193 5371 0.9340 +4193 5422 0.4260 +4193 5460 0.4250 +4193 5467 0.5420 +4193 5468 0.6820 +4193 5499 0.6090 +4193 5510 0.4130 +4193 5514 0.4040 +4193 5515 0.6130 +4193 5516 0.5420 +4193 5518 0.6020 +4193 5519 0.5510 +4193 5527 0.6850 +4193 5528 0.4120 +4193 5562 0.4290 +4193 5579 0.5500 +4193 5591 0.5370 +4193 5594 0.6350 +4193 5595 0.4840 +4193 5599 0.4100 +4193 5601 0.4790 +4193 5604 0.6130 +4193 5684 0.5700 +4193 5688 0.5840 +4193 5702 0.5450 +4193 5708 0.5930 +4193 5710 0.8290 +4193 5716 0.9860 +4193 5728 0.9020 +4193 5743 0.4390 +4193 5747 0.5450 +4193 5884 0.4110 +4193 5886 0.4510 +4193 5888 0.4310 +4193 5894 0.4110 +4193 5903 0.7670 +4193 5914 0.5260 +4193 5925 0.9990 +4193 5928 0.4510 +4193 5930 0.9030 +4193 5934 0.4950 +4193 5970 0.7460 +4193 5978 0.5880 +4193 5987 0.6510 +4193 6045 0.6980 +4193 6047 0.5610 +4193 6049 0.4050 +4193 6122 0.5170 +4193 6124 0.7630 +4193 6125 0.9990 +4193 6128 0.6470 +4193 6129 0.4940 +4193 6135 0.9990 +4193 6138 0.5060 +4193 6146 0.5350 +4193 6147 0.4480 +4193 6154 0.9900 +4193 6167 0.8610 +4193 6173 0.4040 +4193 6187 0.5970 +4193 6188 0.9590 +4193 6194 0.7910 +4193 6198 0.6600 +4193 6201 0.9590 +4193 6205 0.4050 +4193 6208 0.9400 +4193 6209 0.9250 +4193 6223 0.6390 +4193 6224 0.8540 +4193 6229 0.5290 +4193 6230 0.8370 +4193 6231 0.6910 +4193 6232 0.8750 +4193 6233 0.9940 +4193 6240 0.6730 +4193 6271 0.7960 +4193 6275 0.7060 +4193 6277 0.6760 +4193 6285 0.8300 +4193 6295 0.6690 +4193 6302 0.4210 +4193 6342 0.5310 +4193 6391 0.4700 +4193 6426 0.7210 +4193 6446 0.8330 +4193 6477 0.4410 +4193 6500 0.4890 +4193 6502 0.6050 +4193 6591 0.8530 +4193 6595 0.4490 +4193 6597 0.6390 +4193 6612 0.5060 +4193 6613 0.6160 +4193 6615 0.8510 +4193 6657 0.4460 +4193 6659 0.4810 +4193 6667 0.7990 +4193 6714 0.8820 +4193 6720 0.5610 +4193 6772 0.6220 +4193 6774 0.7150 +4193 6776 0.5240 +4193 6790 0.6430 +4193 6794 0.7250 +4193 6839 0.8930 +4193 6872 0.6300 +4193 6880 0.5020 +4193 6908 0.7810 +4193 6923 0.5060 +4193 7015 0.7970 +4193 7124 0.6250 +4193 7153 0.4270 +4193 7157 0.9990 +4193 7158 0.6810 +4193 7161 0.9980 +4193 7175 0.4530 +4193 7178 0.5010 +4193 7184 0.4890 +4193 7249 0.5180 +4193 7251 0.6020 +4193 7270 0.4150 +4193 7291 0.6040 +4193 7299 0.4010 +4193 7311 0.9670 +4193 7314 0.9610 +4193 7316 0.9900 +4193 7317 0.6120 +4193 7319 0.5960 +4193 7320 0.4010 +4193 7321 0.9970 +4193 7322 0.9990 +4193 7323 0.9670 +4193 7324 0.4630 +4193 7325 0.6970 +4193 7328 0.4140 +4193 7329 0.8600 +4193 7332 0.7230 +4193 7334 0.7020 +4193 7335 0.5070 +4193 7337 0.7170 +4193 7341 0.8580 +4193 7343 0.5880 +4193 7345 0.7340 +4193 7375 0.5700 +4193 7398 0.4080 +4193 7409 0.4200 +4193 7415 0.4980 +4193 7428 0.5700 +4193 7443 0.4440 +4193 7465 0.4830 +4193 7486 0.5390 +4193 7490 0.4660 +4193 7494 0.4440 +4193 7514 0.6660 +4193 7515 0.4010 +4193 7528 0.8920 +4193 7529 0.5350 +4193 7532 0.5180 +4193 7534 0.5050 +4193 7799 0.4040 +4193 7832 0.4240 +4193 7837 0.5930 +4193 7874 0.9990 +4193 7917 0.5280 +4193 7975 0.4030 +4193 8021 0.4470 +4193 8065 0.4090 +4193 8091 0.6360 +4193 8202 0.5770 +4193 8241 0.4590 +4193 8266 0.6470 +4193 8289 0.4810 +4193 8290 0.7760 +4193 8309 0.5010 +4193 8349 0.5450 +4193 8356 0.5330 +4193 8431 0.8120 +4193 8445 0.7030 +4193 8450 0.7110 +4193 8451 0.8940 +4193 8453 0.5600 +4193 8454 0.7410 +4193 8480 0.4100 +4193 8493 0.8580 +4193 8544 0.4240 +4193 8553 0.4100 +4193 8554 0.7950 +4193 8557 0.5390 +4193 8626 0.9000 +4193 8650 0.9980 +4193 8678 0.7510 +4193 8795 0.5320 +4193 8837 0.4560 +4193 8841 0.4260 +4193 8850 0.8710 +4193 8864 0.7370 +4193 8874 0.4470 +4193 8900 0.8100 +4193 8925 0.5530 +4193 8945 0.9600 +4193 8970 0.4270 +4193 9025 0.5890 +4193 9040 0.7970 +4193 9063 0.5600 +4193 9097 0.5600 +4193 9099 0.8480 +4193 9100 0.4320 +4193 9101 0.4010 +4193 9112 0.4010 +4193 9113 0.5210 +4193 9141 0.4610 +4193 9212 0.5990 +4193 9221 0.4430 +4193 9232 0.5370 +4193 9253 0.9920 +4193 9260 0.4390 +4193 9261 0.6030 +4193 9271 0.5210 +4193 9349 0.9410 +4193 9495 0.5320 +4193 9518 0.6400 +4193 9540 0.6450 +4193 9631 0.4140 +4193 9636 0.6010 +4193 9656 0.7380 +4193 9669 0.4050 +4193 9688 0.4150 +4193 9759 0.5200 +4193 9817 0.6290 +4193 9818 0.4130 +4193 9867 0.4370 +4193 9869 0.5910 +4193 9883 0.4470 +4193 9908 0.6160 +4193 9915 0.5340 +4193 9958 0.7670 +4193 9972 0.4520 +4193 9978 0.6660 +4193 10000 0.9660 +4193 10013 0.7010 +4193 10018 0.5800 +4193 10075 0.8660 +4193 10155 0.9000 +4193 10197 0.6920 +4193 10202 0.5250 +4193 10206 0.4680 +4193 10273 0.6020 +4193 10277 0.9380 +4193 10368 0.4990 +4193 10369 0.4990 +4193 10413 0.4020 +4193 10425 0.5970 +4193 10454 0.4710 +4193 10477 0.6920 +4193 10521 0.4380 +4193 10524 0.9150 +4193 10572 0.6400 +4193 10614 0.4070 +4193 10762 0.4230 +4193 10818 0.4350 +4193 10848 0.6230 +4193 10951 0.5180 +4193 10971 0.6210 +4193 10987 0.7380 +4193 11040 0.5070 +4193 11059 0.5460 +4193 11074 0.4060 +4193 11097 0.4210 +4193 11167 0.4440 +4193 11168 0.4660 +4193 11186 0.8920 +4193 11200 0.9830 +4193 11201 0.5910 +4193 11236 0.4010 +4193 22933 0.5180 +4193 22954 0.4590 +4193 23035 0.5480 +4193 23165 0.4630 +4193 23225 0.4380 +4193 23239 0.5950 +4193 23279 0.4060 +4193 23291 0.9500 +4193 23405 0.4590 +4193 23410 0.4670 +4193 23411 0.6990 +4193 23429 0.6850 +4193 23462 0.4750 +4193 23468 0.5420 +4193 23476 0.4430 +4193 23511 0.4310 +4193 23512 0.7680 +4193 23521 0.5220 +4193 23522 0.5340 +4193 23612 0.4730 +4193 23636 0.4260 +4193 23741 0.7010 +4193 25788 0.4220 +4193 25898 0.9230 +4193 25942 0.4990 +4193 26156 0.5860 +4193 26168 0.4740 +4193 26287 0.4470 +4193 26354 0.9790 +4193 26524 0.9660 +4193 26574 0.7180 +4193 27085 0.9390 +4193 27092 0.4990 +4193 27113 0.6740 +4193 27244 0.5270 +4193 27338 0.6220 +4193 28996 0.8760 +4193 29102 0.5330 +4193 29116 0.4670 +4193 29117 0.4040 +4193 29126 0.5180 +4193 29997 0.4580 +4193 50484 0.7500 +4193 50943 0.5270 +4193 51065 0.6230 +4193 51132 0.4550 +4193 51185 0.7000 +4193 51230 0.4950 +4193 51514 0.6760 +4193 51547 0.4590 +4193 51548 0.7050 +4193 51564 0.4530 +4193 51588 0.4120 +4193 51720 0.4650 +4193 51741 0.8030 +4193 51806 0.5540 +4193 54205 0.5980 +4193 54700 0.6300 +4193 54739 0.4830 +4193 54876 0.4810 +4193 54971 0.8130 +4193 55003 0.5070 +4193 55159 0.7920 +4193 55226 0.4180 +4193 55294 0.6880 +4193 55367 0.5260 +4193 55508 0.7320 +4193 55544 0.7010 +4193 55602 0.5740 +4193 55611 0.5310 +4193 55684 0.4170 +4193 55706 0.4070 +4193 55746 0.4790 +4193 55832 0.4510 +4193 56890 0.6690 +4193 56924 0.5810 +4193 57103 0.5500 +4193 57113 0.4440 +4193 57122 0.4820 +4193 57154 0.6920 +4193 57402 0.4060 +4193 57541 0.6080 +4193 57575 0.4250 +4193 57646 0.4050 +4193 59283 0.5110 +4193 63970 0.5070 +4193 64065 0.4530 +4193 64326 0.5000 +4193 64393 0.5200 +4193 79023 0.4080 +4193 79728 0.4580 +4193 79813 0.4330 +4193 80279 0.5870 +4193 80854 0.6900 +4193 81669 0.8000 +4193 81858 0.4400 +4193 83593 0.9420 +4193 83667 0.5100 +4193 83737 0.6800 +4193 83844 0.4790 +4193 84129 0.4090 +4193 84132 0.4910 +4193 84196 0.5830 +4193 84260 0.9970 +4193 84263 0.5100 +4193 84335 0.4610 +4193 84708 0.6510 +4193 84897 0.4270 +4193 91860 0.5530 +4193 92140 0.4370 +4193 92344 0.6100 +4193 94241 0.4380 +4193 112399 0.4160 +4193 117177 0.4030 +4193 129401 0.4050 +4193 133482 0.4760 +4193 133746 0.6930 +4193 134637 0.6510 +4193 137902 0.5930 +4193 140465 0.7350 +4193 143689 0.5140 +4193 145270 0.6020 +4193 146956 0.4560 +4193 149628 0.6190 +4193 163688 0.5550 +4193 166824 0.6160 +4193 203068 0.4350 +4193 204851 0.5780 +4193 219333 0.5140 +4193 221302 0.7210 +4193 256646 0.5070 +4193 266743 0.5340 +4193 286827 0.4090 +4193 348995 0.4100 +4193 387032 0.5680 +4193 415116 0.4340 +4193 440093 0.5320 +4193 440686 0.5320 +4193 440730 0.4020 +4193 653583 0.4360 +4193 653604 0.5320 +4193 100101267 0.4430 +4193 100132406 0.4050 +4193 100532731 0.7750 +4193 109703458 0.4770 +4194 4255 0.5510 +4194 4303 0.4920 +4194 4361 0.4350 +4194 4609 0.5070 +4194 4610 0.5330 +4194 4613 0.5390 +4194 4763 0.4970 +4194 4824 0.4380 +4194 5156 0.4490 +4194 5287 0.4810 +4194 5290 0.4520 +4194 5366 0.5050 +4194 5467 0.6030 +4194 5562 0.4670 +4194 5716 0.4850 +4194 5728 0.7320 +4194 5888 0.5290 +4194 5925 0.6820 +4194 6045 0.6870 +4194 6125 0.6150 +4194 6135 0.6950 +4194 6167 0.4960 +4194 6209 0.4470 +4194 6224 0.4460 +4194 6233 0.9700 +4194 6285 0.6490 +4194 6342 0.5310 +4194 6908 0.4320 +4194 7015 0.4500 +4194 7153 0.4580 +4194 7157 0.9990 +4194 7161 0.9220 +4194 7311 0.9520 +4194 7314 0.9590 +4194 7316 0.9670 +4194 7317 0.4320 +4194 7321 0.7480 +4194 7322 0.9530 +4194 7323 0.6310 +4194 7337 0.4830 +4194 7490 0.5080 +4194 7529 0.7990 +4194 7531 0.7570 +4194 7532 0.8540 +4194 7533 0.7180 +4194 7534 0.6590 +4194 7681 0.4930 +4194 7874 0.9730 +4194 8289 0.4030 +4194 8309 0.5010 +4194 8409 0.5080 +4194 8445 0.4730 +4194 8493 0.7490 +4194 8603 0.4140 +4194 8626 0.5270 +4194 8650 0.5060 +4194 9099 0.8190 +4194 9253 0.4960 +4194 9314 0.4560 +4194 9858 0.4040 +4194 9928 0.4300 +4194 10018 0.5200 +4194 10075 0.4050 +4194 10971 0.7440 +4194 11126 0.4800 +4194 11200 0.9200 +4194 11328 0.4010 +4194 23326 0.4100 +4194 23476 0.4210 +4194 25788 0.4120 +4194 25898 0.6860 +4194 26524 0.5630 +4194 27034 0.4390 +4194 27085 0.5300 +4194 27113 0.4330 +4194 28996 0.7180 +4194 51230 0.4230 +4194 54033 0.5590 +4194 54205 0.5410 +4194 54510 0.4030 +4194 54790 0.4560 +4194 55971 0.4060 +4194 57113 0.5660 +4194 57162 0.6820 +4194 57404 0.4850 +4194 57492 0.4350 +4194 57634 0.5070 +4194 64326 0.4680 +4194 79707 0.4250 +4194 79728 0.4190 +4194 79892 0.4040 +4194 80351 0.4370 +4194 84260 0.8630 +4194 84263 0.5090 +4194 122011 0.4420 +4194 133746 0.5070 +4194 134637 0.4290 +4194 145270 0.4230 +4194 171023 0.4450 +4194 284680 0.7210 +4194 109703458 0.4770 +4199 4200 0.9060 +4199 4351 0.4510 +4199 4522 0.5080 +4199 4780 0.8490 +4199 4942 0.4070 +4199 4967 0.4470 +4199 5091 0.9970 +4199 5096 0.6070 +4199 5105 0.5480 +4199 5106 0.5530 +4199 5161 0.9240 +4199 5162 0.9510 +4199 5213 0.4730 +4199 5226 0.8380 +4199 5230 0.5190 +4199 5232 0.5190 +4199 5238 0.7380 +4199 5313 0.9690 +4199 5315 0.9740 +4199 5465 0.6290 +4199 5469 0.4340 +4199 5832 0.4240 +4199 6120 0.4710 +4199 6256 0.5020 +4199 6296 0.4060 +4199 6319 0.4540 +4199 6389 0.5760 +4199 6390 0.4860 +4199 6391 0.4230 +4199 6470 0.4640 +4199 6472 0.5010 +4199 6576 0.4400 +4199 6888 0.8320 +4199 6907 0.4100 +4199 7068 0.5520 +4199 7086 0.6220 +4199 7167 0.5420 +4199 7295 0.4910 +4199 7296 0.6120 +4199 7915 0.4470 +4199 8050 0.4210 +4199 8277 0.5950 +4199 8452 0.4780 +4199 8697 0.4120 +4199 8789 0.4600 +4199 8801 0.4500 +4199 8802 0.7320 +4199 8803 0.4950 +4199 9563 0.8100 +4199 9817 0.4210 +4199 10449 0.4610 +4199 10498 0.4300 +4199 10499 0.4050 +4199 10797 0.4890 +4199 10873 0.9020 +4199 10951 0.5470 +4199 10994 0.6070 +4199 22934 0.5530 +4199 23530 0.4270 +4199 23657 0.4550 +4199 26061 0.6070 +4199 51444 0.4020 +4199 54941 0.4020 +4199 54988 0.4450 +4199 55293 0.4150 +4199 55902 0.5700 +4199 56965 0.5440 +4199 57505 0.4110 +4199 57645 0.4320 +4199 64087 0.5800 +4199 65220 0.4230 +4199 65985 0.4930 +4199 79611 0.4120 +4199 79668 0.5440 +4199 79718 0.4100 +4199 80205 0.4200 +4199 84076 0.6160 +4199 84532 0.5290 +4199 84706 0.4930 +4199 85441 0.4080 +4199 92483 0.9540 +4199 116285 0.4360 +4199 123876 0.4060 +4199 125061 0.8030 +4199 130752 0.5160 +4199 137362 0.4700 +4199 160287 0.9540 +4199 160428 0.4280 +4199 197257 0.9290 +4199 341392 0.4060 +4199 348158 0.4060 +4199 493869 0.4520 +4200 4942 0.4590 +4200 4967 0.5510 +4200 4988 0.6340 +4200 5091 0.9830 +4200 5096 0.5940 +4200 5105 0.4520 +4200 5106 0.6090 +4200 5161 0.9240 +4200 5162 0.9480 +4200 5163 0.4370 +4200 5211 0.4350 +4200 5213 0.4220 +4200 5214 0.4230 +4200 5225 0.4300 +4200 5226 0.5740 +4200 5230 0.5000 +4200 5232 0.5010 +4200 5313 0.9660 +4200 5315 0.9620 +4200 6120 0.4550 +4200 6296 0.4060 +4200 6389 0.5460 +4200 6390 0.5020 +4200 6470 0.5100 +4200 6472 0.5740 +4200 6888 0.7180 +4200 6898 0.4560 +4200 7086 0.4020 +4200 7167 0.5200 +4200 7915 0.4710 +4200 8050 0.4730 +4200 8629 0.8250 +4200 8697 0.4150 +4200 8789 0.4530 +4200 8801 0.4920 +4200 8802 0.7450 +4200 8803 0.5140 +4200 9563 0.5780 +4200 10449 0.4130 +4200 10873 0.9060 +4200 10994 0.6070 +4200 22934 0.4950 +4200 26061 0.6090 +4200 51444 0.4410 +4200 54941 0.4070 +4200 54988 0.4060 +4200 55293 0.4300 +4200 55902 0.5180 +4200 56965 0.5680 +4200 57505 0.4680 +4200 57645 0.5210 +4200 64087 0.6250 +4200 65985 0.4060 +4200 79611 0.4580 +4200 79668 0.5520 +4200 84532 0.5350 +4200 84706 0.4980 +4200 92483 0.9520 +4200 116285 0.4060 +4200 123876 0.4060 +4200 125061 0.8030 +4200 130752 0.5160 +4200 137362 0.5000 +4200 150274 0.4100 +4200 160287 0.9530 +4200 197257 0.9260 +4200 202915 0.4200 +4200 255252 0.4610 +4200 341392 0.4060 +4200 348158 0.4060 +4200 729020 0.5090 +4201 4695 0.4270 +4201 4701 0.4070 +4201 4702 0.4100 +4201 4725 0.4280 +4201 4728 0.4020 +4201 5261 0.4520 +4201 5528 0.9340 +4201 6736 0.4370 +4201 6954 0.4290 +4201 7543 0.6490 +4201 7544 0.7160 +4201 8907 0.6180 +4201 9296 0.4220 +4201 9814 0.4550 +4201 9918 0.6040 +4201 9972 0.5670 +4201 10053 0.4590 +4201 10204 0.5250 +4201 10428 0.4300 +4201 11316 0.4040 +4201 23386 0.4510 +4201 51069 0.4240 +4201 51258 0.6490 +4201 51364 0.4420 +4201 55845 0.7630 +4201 57626 0.7610 +4201 83893 0.8300 +4201 84661 0.5980 +4201 89953 0.4920 +4201 116138 0.9440 +4201 117245 0.4300 +4201 132851 0.4340 +4201 253959 0.6080 +4201 374291 0.7590 +4204 4208 0.8520 +4204 4233 0.7780 +4204 4288 0.4180 +4204 4297 0.5890 +4204 4336 0.7850 +4204 4343 0.7450 +4204 4609 0.6160 +4204 4613 0.5720 +4204 4616 0.4470 +4204 4644 0.4100 +4204 4869 0.7320 +4204 4904 0.9780 +4204 4915 0.4600 +4204 4988 0.5920 +4204 5021 0.5050 +4204 5178 0.4880 +4204 5348 0.6990 +4204 5354 0.4660 +4204 5367 0.7500 +4204 5460 0.4560 +4204 5468 0.8830 +4204 5538 0.4880 +4204 5566 0.5390 +4204 5649 0.5510 +4204 5728 0.4960 +4204 5770 0.7760 +4204 5775 0.7590 +4204 5813 0.5500 +4204 5816 0.8860 +4204 5928 0.6920 +4204 5931 0.4260 +4204 5966 0.4390 +4204 5970 0.4450 +4204 5973 0.4370 +4204 5978 0.7680 +4204 5989 0.4340 +4204 6047 0.5850 +4204 6323 0.5760 +4204 6326 0.5260 +4204 6405 0.5410 +4204 6446 0.8570 +4204 6497 0.5450 +4204 6515 0.7810 +4204 6532 0.4720 +4204 6535 0.6030 +4204 6595 0.8310 +4204 6597 0.7290 +4204 6598 0.4880 +4204 6601 0.5960 +4204 6605 0.6480 +4204 6638 0.6180 +4204 6657 0.9210 +4204 6658 0.4700 +4204 6667 0.6590 +4204 6670 0.4120 +4204 6688 0.7640 +4204 6709 0.4520 +4204 6750 0.8400 +4204 6774 0.6270 +4204 6776 0.8590 +4204 6777 0.4640 +4204 6792 0.9750 +4204 6812 0.4740 +4204 6832 0.4200 +4204 6839 0.9930 +4204 6853 0.4990 +4204 6872 0.4300 +4204 6907 0.8240 +4204 6996 0.5630 +4204 7014 0.4480 +4204 7054 0.4090 +4204 7157 0.6560 +4204 7222 0.8420 +4204 7249 0.5070 +4204 7337 0.8460 +4204 7403 0.4050 +4204 7454 0.4600 +4204 7528 0.7390 +4204 8087 0.4380 +4204 8242 0.6230 +4204 8243 0.4440 +4204 8269 0.5740 +4204 8277 0.5020 +4204 8290 0.7830 +4204 8337 0.4780 +4204 8338 0.7200 +4204 8349 0.7730 +4204 8356 0.8480 +4204 8361 0.7880 +4204 8369 0.4570 +4204 8819 0.5760 +4204 8831 0.5050 +4204 8841 0.7630 +4204 8930 0.4380 +4204 9055 0.5260 +4204 9112 0.5810 +4204 9126 0.6680 +4204 9129 0.4190 +4204 9212 0.7700 +4204 9219 0.4340 +4204 9314 0.4030 +4204 9378 0.5940 +4204 9379 0.4340 +4204 9513 0.5760 +4204 9555 0.4700 +4204 9611 0.9970 +4204 9612 0.7870 +4204 9682 0.4320 +4204 9734 0.4030 +4204 9743 0.5090 +4204 9759 0.5440 +4204 9869 0.5930 +4204 10009 0.6900 +4204 10013 0.5100 +4204 10014 0.4940 +4204 10075 0.4520 +4204 10155 0.4520 +4204 10243 0.4580 +4204 10284 0.5560 +4204 10361 0.4430 +4204 10362 0.4160 +4204 10365 0.4690 +4204 10479 0.4920 +4204 10614 0.5720 +4204 10664 0.7750 +4204 10763 0.4130 +4204 10919 0.7390 +4204 10951 0.6870 +4204 11051 0.4080 +4204 11141 0.4050 +4204 11152 0.4570 +4204 11168 0.6060 +4204 11176 0.4610 +4204 11177 0.6840 +4204 11284 0.4470 +4204 11335 0.8140 +4204 22854 0.6720 +4204 22871 0.4740 +4204 22933 0.4610 +4204 22941 0.7060 +4204 23028 0.5160 +4204 23030 0.4860 +4204 23089 0.6070 +4204 23096 0.4990 +4204 23112 0.6210 +4204 23186 0.9940 +4204 23229 0.5350 +4204 23309 0.8280 +4204 23345 0.5910 +4204 23405 0.4230 +4204 23411 0.6790 +4204 23468 0.8490 +4204 23476 0.5350 +4204 25766 0.6490 +4204 25942 0.9990 +4204 25988 0.6880 +4204 26047 0.5990 +4204 26053 0.5770 +4204 26523 0.6180 +4204 27161 0.6900 +4204 27185 0.4480 +4204 27327 0.5610 +4204 27436 0.6040 +4204 28514 0.7850 +4204 28996 0.9190 +4204 29102 0.4380 +4204 29128 0.7840 +4204 29947 0.6900 +4204 30827 0.6010 +4204 50944 0.4750 +4204 51111 0.6600 +4204 51317 0.4060 +4204 51574 0.4900 +4204 51742 0.5510 +4204 54108 0.5510 +4204 54413 0.7750 +4204 54487 0.9740 +4204 54552 0.4240 +4204 54715 0.8360 +4204 54790 0.5350 +4204 54815 0.6230 +4204 55170 0.8440 +4204 55506 0.4040 +4204 55536 0.4160 +4204 55660 0.7400 +4204 55777 0.5240 +4204 55869 0.4600 +4204 57030 0.4470 +4204 57468 0.4880 +4204 57502 0.7320 +4204 57526 0.6830 +4204 57555 0.4240 +4204 57575 0.6380 +4204 57649 0.5680 +4204 57659 0.5370 +4204 57680 0.6020 +4204 64324 0.5280 +4204 64426 0.6530 +4204 79718 0.9710 +4204 79751 0.5050 +4204 79800 0.5090 +4204 79813 0.7220 +4204 79923 0.4060 +4204 80312 0.7810 +4204 83992 0.4190 +4204 84628 0.5700 +4204 84679 0.4760 +4204 84787 0.6450 +4204 85358 0.7410 +4204 85509 0.6670 +4204 90665 0.4780 +4204 91752 0.5160 +4204 92002 0.5070 +4204 93986 0.4590 +4204 114787 0.8620 +4204 115426 0.6080 +4204 116442 0.4070 +4204 126961 0.5420 +4204 139411 0.6000 +4204 140679 0.6520 +4204 140690 0.4760 +4204 146713 0.4370 +4204 170302 0.5950 +4204 192669 0.5870 +4204 192670 0.5720 +4204 200424 0.6030 +4204 253461 0.5100 +4204 266743 0.4190 +4204 283248 0.4270 +4204 285195 0.4460 +4204 440093 0.7830 +4204 440686 0.7910 +4204 440689 0.4260 +4204 653604 0.8480 +4205 4208 0.9400 +4205 4209 0.9910 +4205 4319 0.5180 +4205 4617 0.8810 +4205 4618 0.8600 +4205 4624 0.5140 +4205 4625 0.4070 +4205 4654 0.9670 +4205 4656 0.9410 +4205 4772 0.9250 +4205 4773 0.9230 +4205 4775 0.9310 +4205 4776 0.9330 +4205 4878 0.4100 +4205 5021 0.4200 +4205 5081 0.4620 +4205 5166 0.4010 +4205 5308 0.4180 +4205 5451 0.4030 +4205 5530 0.6440 +4205 5575 0.4400 +4205 5576 0.4060 +4205 5588 0.6060 +4205 5594 0.7120 +4205 5595 0.5200 +4205 5597 0.4370 +4205 5598 0.9720 +4205 5600 0.8910 +4205 5603 0.7000 +4205 5607 0.5970 +4205 5608 0.5310 +4205 5747 0.5020 +4205 6300 0.8460 +4205 6517 0.7070 +4205 6613 0.4490 +4205 6657 0.5310 +4205 6660 0.4770 +4205 6722 0.4460 +4205 6792 0.4160 +4205 6872 0.4160 +4205 6908 0.4420 +4205 6910 0.6710 +4205 6925 0.5450 +4205 6929 0.5720 +4205 6932 0.4530 +4205 6938 0.6620 +4205 7003 0.6420 +4205 7019 0.4480 +4205 7067 0.4980 +4205 7140 0.4910 +4205 7329 0.5090 +4205 7341 0.7180 +4205 7391 0.4070 +4205 7469 0.4790 +4205 7528 0.4430 +4205 8085 0.4140 +4205 8290 0.4140 +4205 8536 0.5230 +4205 8736 0.4170 +4205 8831 0.4100 +4205 8841 0.4400 +4205 8850 0.6610 +4205 8928 0.4260 +4205 9043 0.5760 +4205 9172 0.4350 +4205 9421 0.4290 +4205 9464 0.7320 +4205 9472 0.5660 +4205 9611 0.5590 +4205 9612 0.5270 +4205 9734 0.9440 +4205 9759 0.9730 +4205 10009 0.4720 +4205 10014 0.9280 +4205 10114 0.4190 +4205 10365 0.5560 +4205 10380 0.4970 +4205 10498 0.4350 +4205 10499 0.5020 +4205 10658 0.4700 +4205 10664 0.4010 +4205 10891 0.4340 +4205 11016 0.4720 +4205 23380 0.4230 +4205 23433 0.4130 +4205 23523 0.7700 +4205 28999 0.7560 +4205 50937 0.5580 +4205 51442 0.4360 +4205 51564 0.9590 +4205 51806 0.6040 +4205 53335 0.5590 +4205 56731 0.7460 +4205 57057 0.4280 +4205 57118 0.5230 +4205 57708 0.4390 +4205 64746 0.5060 +4205 84449 0.4130 +4205 91653 0.5330 +4205 91860 0.5940 +4205 93649 0.4350 +4205 121340 0.5170 +4205 129446 0.7610 +4205 155038 0.4100 +4205 163688 0.5950 +4205 202333 0.6050 +4205 245806 0.5180 +4205 100271849 0.9870 +4208 4209 0.6020 +4208 4211 0.5280 +4208 4212 0.6030 +4208 4313 0.4730 +4208 4609 0.5370 +4208 4617 0.8760 +4208 4618 0.7650 +4208 4619 0.4020 +4208 4620 0.4390 +4208 4621 0.4170 +4208 4624 0.7140 +4208 4625 0.5630 +4208 4629 0.4220 +4208 4633 0.6320 +4208 4634 0.5690 +4208 4654 0.9560 +4208 4656 0.9640 +4208 4772 0.4050 +4208 4780 0.4700 +4208 4803 0.4680 +4208 4851 0.4350 +4208 4878 0.5860 +4208 4928 0.5010 +4208 5077 0.5000 +4208 5079 0.6240 +4208 5081 0.5270 +4208 5156 0.6190 +4208 5175 0.4590 +4208 5336 0.4900 +4208 5341 0.4570 +4208 5348 0.4110 +4208 5460 0.5280 +4208 5467 0.5080 +4208 5583 0.6040 +4208 5590 0.4220 +4208 5594 0.4820 +4208 5595 0.5470 +4208 5597 0.4480 +4208 5598 0.9560 +4208 5600 0.8640 +4208 5603 0.6850 +4208 5606 0.4590 +4208 5607 0.6550 +4208 5608 0.4910 +4208 5728 0.4080 +4208 5747 0.9140 +4208 5996 0.4610 +4208 6262 0.4380 +4208 6281 0.4010 +4208 6300 0.8410 +4208 6517 0.5460 +4208 6591 0.5150 +4208 6595 0.4010 +4208 6597 0.6300 +4208 6598 0.4680 +4208 6601 0.4730 +4208 6604 0.5710 +4208 6653 0.7290 +4208 6657 0.6260 +4208 6662 0.6410 +4208 6667 0.4230 +4208 6688 0.5130 +4208 6774 0.5470 +4208 6792 0.4820 +4208 6886 0.4180 +4208 6909 0.4270 +4208 6910 0.9140 +4208 6925 0.7660 +4208 6926 0.4540 +4208 6929 0.6340 +4208 6938 0.6400 +4208 7003 0.5290 +4208 7026 0.7580 +4208 7137 0.4770 +4208 7139 0.7080 +4208 7169 0.4610 +4208 7184 0.4420 +4208 7291 0.6140 +4208 7320 0.4170 +4208 7337 0.4770 +4208 7391 0.4150 +4208 7431 0.5190 +4208 7528 0.4190 +4208 7534 0.4890 +4208 7584 0.4270 +4208 8289 0.4630 +4208 8301 0.5320 +4208 8536 0.4220 +4208 8554 0.4260 +4208 8648 0.4370 +4208 8831 0.4830 +4208 8850 0.6730 +4208 8928 0.6770 +4208 9043 0.5220 +4208 9070 0.5340 +4208 9079 0.4730 +4208 9096 0.4660 +4208 9314 0.5180 +4208 9355 0.4640 +4208 9464 0.8790 +4208 9612 0.6500 +4208 9734 0.8980 +4208 9759 0.9840 +4208 9794 0.7500 +4208 9839 0.4710 +4208 9972 0.4620 +4208 10014 0.9240 +4208 10021 0.4490 +4208 10062 0.4380 +4208 10085 0.4390 +4208 10114 0.4580 +4208 10262 0.4010 +4208 10320 0.4260 +4208 10347 0.5820 +4208 10376 0.4020 +4208 10498 0.5600 +4208 10499 0.7330 +4208 10658 0.5830 +4208 10763 0.4910 +4208 10891 0.9430 +4208 10919 0.5450 +4208 10979 0.5420 +4208 22927 0.5000 +4208 22938 0.4190 +4208 22948 0.4060 +4208 23225 0.7010 +4208 23411 0.4880 +4208 23414 0.6720 +4208 23462 0.4210 +4208 23523 0.4530 +4208 23607 0.5010 +4208 25865 0.4600 +4208 25957 0.4620 +4208 26053 0.4220 +4208 27063 0.5480 +4208 28996 0.6170 +4208 50805 0.5130 +4208 50937 0.5920 +4208 50964 0.4480 +4208 51176 0.4010 +4208 51314 0.6260 +4208 51564 0.7340 +4208 53335 0.6430 +4208 54209 0.4260 +4208 54345 0.5160 +4208 54715 0.5330 +4208 55031 0.4290 +4208 55063 0.6240 +4208 55103 0.4460 +4208 55534 0.5430 +4208 55553 0.4300 +4208 55897 0.7090 +4208 56731 0.5630 +4208 57057 0.6340 +4208 57091 0.6250 +4208 57118 0.4170 +4208 58498 0.5460 +4208 58527 0.4150 +4208 64067 0.4060 +4208 64231 0.4990 +4208 64321 0.6190 +4208 64919 0.4060 +4208 79885 0.5520 +4208 79890 0.5260 +4208 79923 0.4540 +4208 84159 0.4800 +4208 84441 0.5390 +4208 89795 0.6110 +4208 91653 0.5330 +4208 93649 0.8110 +4208 93986 0.5910 +4208 114787 0.4100 +4208 114907 0.4780 +4208 117581 0.5490 +4208 121340 0.4010 +4208 123041 0.5440 +4208 140628 0.4440 +4208 147746 0.4360 +4208 150572 0.4560 +4208 153396 0.6200 +4208 204851 0.4200 +4208 284358 0.6820 +4208 643680 0.4090 +4208 100271849 0.8630 +4209 4297 0.4640 +4209 4617 0.7850 +4209 4618 0.7890 +4209 4624 0.4430 +4209 4654 0.9030 +4209 4656 0.9260 +4209 4772 0.9330 +4209 4773 0.9520 +4209 4775 0.9260 +4209 4776 0.9210 +4209 4929 0.4390 +4209 5081 0.4450 +4209 5087 0.6490 +4209 5295 0.4100 +4209 5463 0.4430 +4209 5530 0.5290 +4209 5566 0.4580 +4209 5594 0.4610 +4209 5595 0.4780 +4209 5597 0.4130 +4209 5598 0.7330 +4209 5600 0.8300 +4209 5603 0.6460 +4209 5607 0.4150 +4209 5608 0.4740 +4209 5747 0.4170 +4209 5966 0.4540 +4209 6300 0.8290 +4209 6457 0.5090 +4209 6517 0.6060 +4209 6622 0.6310 +4209 6667 0.4400 +4209 6722 0.8680 +4209 6907 0.4980 +4209 6925 0.5540 +4209 6929 0.5950 +4209 6938 0.7330 +4209 7436 0.4150 +4209 7975 0.4630 +4209 8013 0.4380 +4209 8061 0.6000 +4209 8085 0.6180 +4209 8831 0.4090 +4209 8841 0.4500 +4209 8850 0.4080 +4209 8851 0.4510 +4209 9043 0.5290 +4209 9070 0.9050 +4209 9611 0.5770 +4209 9734 0.8850 +4209 9739 0.5650 +4209 9759 0.9630 +4209 10014 0.9360 +4209 10419 0.4230 +4209 10498 0.4710 +4209 10750 0.4380 +4209 10891 0.7900 +4209 10971 0.5090 +4209 11100 0.4070 +4209 11336 0.4240 +4209 23235 0.4410 +4209 23237 0.5570 +4209 23245 0.4250 +4209 23387 0.4920 +4209 23468 0.4190 +4209 23523 0.9400 +4209 23543 0.4140 +4209 25793 0.4430 +4209 26168 0.4070 +4209 26528 0.5430 +4209 27161 0.4390 +4209 50937 0.5420 +4209 51547 0.4770 +4209 51564 0.8250 +4209 51621 0.4520 +4209 51806 0.6020 +4209 54862 0.5660 +4209 55810 0.4660 +4209 56731 0.6670 +4209 56987 0.4060 +4209 57335 0.4280 +4209 58508 0.4660 +4209 60468 0.4090 +4209 80774 0.4080 +4209 91653 0.5260 +4209 91860 0.5920 +4209 163688 0.5920 +4209 171017 0.7790 +4209 100271849 0.9790 +4209 100288687 0.7180 +4210 4261 0.8020 +4210 4332 0.7460 +4210 4353 0.4130 +4210 4598 0.6750 +4210 4671 0.9790 +4210 4780 0.4310 +4210 4790 0.6650 +4210 4792 0.6740 +4210 4992 0.7780 +4210 5027 0.7030 +4210 5585 0.9600 +4210 5586 0.9560 +4210 5610 0.4370 +4210 5743 0.4430 +4210 5782 0.6330 +4210 5970 0.5600 +4210 6050 0.4630 +4210 6195 0.9110 +4210 6196 0.9060 +4210 6197 0.9060 +4210 6288 0.6580 +4210 6289 0.4020 +4210 6347 0.5070 +4210 6404 0.4620 +4210 6556 0.5040 +4210 6774 0.4180 +4210 7096 0.4450 +4210 7097 0.6190 +4210 7098 0.5300 +4210 7099 0.7240 +4210 7100 0.4720 +4210 7124 0.6950 +4210 7132 0.5940 +4210 7189 0.4790 +4210 7295 0.4090 +4210 7454 0.5210 +4210 7531 0.9320 +4210 7727 0.4460 +4210 7752 0.6090 +4210 7755 0.7320 +4210 8408 0.4330 +4210 8424 0.5070 +4210 8678 0.8890 +4210 8737 0.6090 +4210 8767 0.6730 +4210 8772 0.5690 +4210 9051 0.9990 +4210 9081 0.4790 +4210 9447 0.9990 +4210 9663 0.4750 +4210 10127 0.4980 +4210 10392 0.6890 +4210 10628 0.6170 +4210 11035 0.5020 +4210 11118 0.4920 +4210 11124 0.4420 +4210 11337 0.4620 +4210 11345 0.6520 +4210 22861 0.9990 +4210 22900 0.9290 +4210 23411 0.4020 +4210 23586 0.6440 +4210 23710 0.6490 +4210 24145 0.5120 +4210 26253 0.4370 +4210 27202 0.5340 +4210 27330 0.9010 +4210 29108 0.9990 +4210 29110 0.5130 +4210 50507 0.4320 +4210 50852 0.5110 +4210 51135 0.4160 +4210 51284 0.6960 +4210 51311 0.4890 +4210 54106 0.5710 +4210 55054 0.8910 +4210 55655 0.9250 +4210 55876 0.5230 +4210 56919 0.6760 +4210 57506 0.5860 +4210 58484 0.9990 +4210 59082 0.6290 +4210 59272 0.4160 +4210 64127 0.7490 +4210 64135 0.5320 +4210 64170 0.4140 +4210 64581 0.5800 +4210 79132 0.5070 +4210 79671 0.5430 +4210 79792 0.9110 +4210 80831 0.4330 +4210 81030 0.7080 +4210 81631 0.4200 +4210 83464 0.4010 +4210 84166 0.5750 +4210 84557 0.5060 +4210 84639 0.4990 +4210 90865 0.4710 +4210 91662 0.9670 +4210 114548 0.9960 +4210 115004 0.5900 +4210 115362 0.4010 +4210 123041 0.4780 +4210 126204 0.7610 +4210 126205 0.8230 +4210 126206 0.6650 +4210 140609 0.6040 +4210 147945 0.7670 +4210 149628 0.7880 +4210 152138 0.6460 +4210 171389 0.9840 +4210 197259 0.4760 +4210 197358 0.6080 +4210 199713 0.9080 +4210 204801 0.8150 +4210 260434 0.4570 +4210 284110 0.6140 +4210 338321 0.9160 +4210 338322 0.4480 +4210 338323 0.7710 +4210 440738 0.4060 +4210 441925 0.4180 +4210 442862 0.5050 +4211 4212 0.9900 +4211 4222 0.4990 +4211 4297 0.7050 +4211 4298 0.6930 +4211 4299 0.6670 +4211 4300 0.7320 +4211 4301 0.4120 +4211 4302 0.6020 +4211 4602 0.4050 +4211 4609 0.4480 +4211 4781 0.4160 +4211 4869 0.4410 +4211 4928 0.9090 +4211 5015 0.5290 +4211 5076 0.4070 +4211 5080 0.7610 +4211 5087 0.9990 +4211 5089 0.6800 +4211 5090 0.7030 +4211 5308 0.4070 +4211 5455 0.4120 +4211 5607 0.6740 +4211 5688 0.4760 +4211 5789 0.5190 +4211 5914 0.6990 +4211 5916 0.6100 +4211 5927 0.6680 +4211 5928 0.5830 +4211 5931 0.5490 +4211 6256 0.6100 +4211 6657 0.4620 +4211 6659 0.4250 +4211 6688 0.5710 +4211 6886 0.5300 +4211 6910 0.4640 +4211 6926 0.4270 +4211 6929 0.5270 +4211 7182 0.4130 +4211 7490 0.4340 +4211 7994 0.4440 +4211 8028 0.6590 +4211 8178 0.4790 +4211 8202 0.5760 +4211 8290 0.4780 +4211 8328 0.5780 +4211 8356 0.4740 +4211 8726 0.6350 +4211 9464 0.4020 +4211 9611 0.5780 +4211 10234 0.4210 +4211 10481 0.9640 +4211 10586 0.7940 +4211 11091 0.4100 +4211 11168 0.5790 +4211 23512 0.6570 +4211 27324 0.4600 +4211 51043 0.4740 +4211 54790 0.4320 +4211 57057 0.6620 +4211 57616 0.6260 +4211 64324 0.4460 +4211 64919 0.4430 +4211 79142 0.6950 +4211 79733 0.4200 +4211 80059 0.4070 +4211 80714 0.7900 +4211 84444 0.6670 +4211 84662 0.4030 +4211 84824 0.7660 +4211 84915 0.7800 +4211 114781 0.7650 +4211 116039 0.4330 +4211 130497 0.4030 +4211 390598 0.8440 +4211 440093 0.4780 +4211 440686 0.4780 +4211 653604 0.4780 +4212 4222 0.4230 +4212 5015 0.6250 +4212 5028 0.4670 +4212 5080 0.8430 +4212 5087 0.9870 +4212 5089 0.9640 +4212 5090 0.9450 +4212 6233 0.4270 +4212 6469 0.4410 +4212 6657 0.5690 +4212 6907 0.4190 +4212 6909 0.4130 +4212 6929 0.4390 +4212 7025 0.4830 +4212 7026 0.4410 +4212 7080 0.4120 +4212 7091 0.5530 +4212 7545 0.4400 +4212 8817 0.4490 +4212 8822 0.4300 +4212 8823 0.4300 +4212 8854 0.4020 +4212 9355 0.4380 +4212 9487 0.5740 +4212 9978 0.5170 +4212 10194 0.6750 +4212 10320 0.4330 +4212 10481 0.9270 +4212 10514 0.4770 +4212 10586 0.8500 +4212 22806 0.4660 +4212 25942 0.4290 +4212 26281 0.4330 +4212 26468 0.4200 +4212 26585 0.4240 +4212 26610 0.4240 +4212 27006 0.4230 +4212 27022 0.4140 +4212 29948 0.4150 +4212 50945 0.4370 +4212 51185 0.8380 +4212 56917 0.5270 +4212 57616 0.5600 +4212 64211 0.4140 +4212 80714 0.8630 +4212 84529 0.4840 +4212 84858 0.4310 +4212 84915 0.7850 +4212 90060 0.4200 +4212 93986 0.4680 +4212 121340 0.4160 +4212 135398 0.4660 +4212 146562 0.6260 +4212 170825 0.5740 +4212 342184 0.4420 +4214 4216 0.6870 +4214 4609 0.6760 +4214 4616 0.5090 +4214 4763 0.4840 +4214 4790 0.7960 +4214 4791 0.6680 +4214 4792 0.7760 +4214 4793 0.6470 +4214 4851 0.5580 +4214 4853 0.4090 +4214 4893 0.9490 +4214 5058 0.8610 +4214 5062 0.8180 +4214 5144 0.4390 +4214 5241 0.4220 +4214 5290 0.6320 +4214 5295 0.4720 +4214 5335 0.5940 +4214 5336 0.5670 +4214 5530 0.5080 +4214 5594 0.8580 +4214 5595 0.8190 +4214 5598 0.4500 +4214 5599 0.9930 +4214 5600 0.4250 +4214 5601 0.9560 +4214 5603 0.4260 +4214 5604 0.9890 +4214 5605 0.9710 +4214 5606 0.9260 +4214 5607 0.5940 +4214 5608 0.9240 +4214 5609 0.9810 +4214 5728 0.7120 +4214 5747 0.4440 +4214 5871 0.7980 +4214 5879 0.6440 +4214 5880 0.9290 +4214 5881 0.9190 +4214 5890 0.4150 +4214 5894 0.6170 +4214 5966 0.4100 +4214 5970 0.6920 +4214 5971 0.4100 +4214 6233 0.4320 +4214 6237 0.9290 +4214 6300 0.4190 +4214 6416 0.9950 +4214 6464 0.6100 +4214 6654 0.6960 +4214 6655 0.4370 +4214 6662 0.5450 +4214 6714 0.5650 +4214 6736 0.4090 +4214 6776 0.4860 +4214 6926 0.4600 +4214 7046 0.4410 +4214 7124 0.6060 +4214 7128 0.4670 +4214 7132 0.7450 +4214 7133 0.4820 +4214 7157 0.8660 +4214 7185 0.5830 +4214 7186 0.9840 +4214 7187 0.8120 +4214 7189 0.9730 +4214 7323 0.5900 +4214 7329 0.5900 +4214 7334 0.7960 +4214 7409 0.5930 +4214 7410 0.6030 +4214 7490 0.5520 +4214 7529 0.5420 +4214 7531 0.6410 +4214 7532 0.6550 +4214 7534 0.6050 +4214 7706 0.5410 +4214 8289 0.4200 +4214 8303 0.4840 +4214 8312 0.9380 +4214 8491 0.9220 +4214 8517 0.9750 +4214 8556 0.4160 +4214 8767 0.4640 +4214 8887 0.5740 +4214 8915 0.5350 +4214 9149 0.4710 +4214 9402 0.5490 +4214 9448 0.6470 +4214 9497 0.4440 +4214 9564 0.9090 +4214 9611 0.4190 +4214 9901 0.4470 +4214 10010 0.4660 +4214 10023 0.4120 +4214 10046 0.4330 +4214 10238 0.8820 +4214 10413 0.4070 +4214 10451 0.5680 +4214 10454 0.7570 +4214 10758 0.4830 +4214 10884 0.4200 +4214 10913 0.4070 +4214 10980 0.5990 +4214 11315 0.4740 +4214 11329 0.5560 +4214 22800 0.9380 +4214 22808 0.9340 +4214 22845 0.4070 +4214 23118 0.5720 +4214 23162 0.9640 +4214 23380 0.4550 +4214 23586 0.5750 +4214 26150 0.4630 +4214 27040 0.5030 +4214 27324 0.8380 +4214 27338 0.4980 +4214 28951 0.5630 +4214 28996 0.4870 +4214 51103 0.4400 +4214 51295 0.9010 +4214 54622 0.4230 +4214 57506 0.5820 +4214 57761 0.4170 +4214 58508 0.5310 +4214 64135 0.5740 +4214 79722 0.4070 +4214 79870 0.5990 +4214 80342 0.4020 +4214 83475 0.4120 +4214 84282 0.5280 +4214 84433 0.4690 +4214 85458 0.4910 +4214 89122 0.5200 +4214 133383 0.4540 +4214 149603 0.5170 +4214 152110 0.4660 +4214 374920 0.4690 +4215 4217 0.5030 +4215 4633 0.4840 +4215 4670 0.4040 +4215 5058 0.9220 +4215 5062 0.9220 +4215 5465 0.4330 +4215 5515 0.4360 +4215 5566 0.4890 +4215 5594 0.5800 +4215 5595 0.6000 +4215 5597 0.4070 +4215 5598 0.5290 +4215 5603 0.4430 +4215 5604 0.7050 +4215 5605 0.5610 +4215 5606 0.9700 +4215 5607 0.9990 +4215 5608 0.9270 +4215 5609 0.4720 +4215 5783 0.4940 +4215 5879 0.5200 +4215 6300 0.4420 +4215 6416 0.6480 +4215 6654 0.4130 +4215 6885 0.7830 +4215 7056 0.4030 +4215 7189 0.9630 +4215 7325 0.4040 +4215 7529 0.6830 +4215 7531 0.8430 +4215 7532 0.5410 +4215 7533 0.4840 +4215 7534 0.6780 +4215 8517 0.9490 +4215 8555 0.4180 +4215 8737 0.4910 +4215 8878 0.9730 +4215 9043 0.4020 +4215 9270 0.8340 +4215 9618 0.6930 +4215 9641 0.4760 +4215 10197 0.5310 +4215 10365 0.5110 +4215 10454 0.4370 +4215 10746 0.9520 +4215 10971 0.4910 +4215 11235 0.8760 +4215 23164 0.4700 +4215 23765 0.6190 +4215 26524 0.4070 +4215 27161 0.4230 +4215 51154 0.4240 +4215 51684 0.4760 +4215 51763 0.4190 +4215 54891 0.4590 +4215 57154 0.5790 +4215 64318 0.4380 +4215 64900 0.4080 +4215 83605 0.9990 +4215 84231 0.8840 +4215 140706 0.7400 +4215 151742 0.4240 +4215 390714 0.4390 +4215 728378 0.4590 +4216 4616 0.9990 +4216 5163 0.5540 +4216 5164 0.5540 +4216 5165 0.5510 +4216 5166 0.5500 +4216 5594 0.4590 +4216 5595 0.4400 +4216 5596 0.4090 +4216 5598 0.4370 +4216 5599 0.5670 +4216 5600 0.4520 +4216 5603 0.6530 +4216 5604 0.7240 +4216 5605 0.6960 +4216 5606 0.9870 +4216 5607 0.6880 +4216 5608 0.9860 +4216 5609 0.4570 +4216 5803 0.4250 +4216 5879 0.4260 +4216 6300 0.4400 +4216 6416 0.7810 +4216 6654 0.5780 +4216 7073 0.4170 +4216 7189 0.4450 +4216 7490 0.4610 +4216 8027 0.4250 +4216 8111 0.7610 +4216 8312 0.6740 +4216 9258 0.4040 +4216 9618 0.6370 +4216 10023 0.6950 +4216 10295 0.5850 +4216 10912 0.9970 +4216 29933 0.7610 +4216 30011 0.6990 +4216 51389 0.5750 +4216 56895 0.4390 +4216 85458 0.7020 +4216 201965 0.5750 +4216 225689 0.4120 +4217 4240 0.4200 +4217 4609 0.4890 +4217 4616 0.4770 +4217 4689 0.4700 +4217 4690 0.4490 +4217 4780 0.5010 +4217 4790 0.4880 +4217 4792 0.4460 +4217 4842 0.6570 +4217 5052 0.8900 +4217 5170 0.4470 +4217 5295 0.4290 +4217 5478 0.4660 +4217 5530 0.5060 +4217 5534 0.4200 +4217 5536 0.9700 +4217 5566 0.9090 +4217 5567 0.9100 +4217 5568 0.9080 +4217 5594 0.4950 +4217 5599 0.9780 +4217 5600 0.9280 +4217 5601 0.9320 +4217 5603 0.9260 +4217 5604 0.5130 +4217 5606 0.9880 +4217 5608 0.9930 +4217 5609 0.9640 +4217 5610 0.4700 +4217 5728 0.4790 +4217 5770 0.6050 +4217 5781 0.4470 +4217 5859 0.7990 +4217 5894 0.5550 +4217 6295 0.5740 +4217 6300 0.9250 +4217 6416 0.9980 +4217 6647 0.7210 +4217 6774 0.8070 +4217 6885 0.7750 +4217 6923 0.4370 +4217 7001 0.4180 +4217 7009 0.5650 +4217 7097 0.4120 +4217 7099 0.5220 +4217 7124 0.6460 +4217 7128 0.7610 +4217 7132 0.6780 +4217 7157 0.5970 +4217 7184 0.4460 +4217 7185 0.8240 +4217 7186 0.9990 +4217 7187 0.6620 +4217 7188 0.8260 +4217 7189 0.9660 +4217 7295 0.9990 +4217 7296 0.4990 +4217 7494 0.7580 +4217 7498 0.6100 +4217 7529 0.8120 +4217 7531 0.5220 +4217 7532 0.6960 +4217 7533 0.6720 +4217 7534 0.9550 +4217 7791 0.4330 +4217 8239 0.4380 +4217 8454 0.5600 +4217 8518 0.4310 +4217 8651 0.7070 +4217 8678 0.4210 +4217 8717 0.4620 +4217 8772 0.7220 +4217 8795 0.4160 +4217 8837 0.6510 +4217 9021 0.4040 +4217 9064 0.8010 +4217 9448 0.5620 +4217 9451 0.6000 +4217 9462 0.4600 +4217 9474 0.4230 +4217 9479 0.4140 +4217 9618 0.4850 +4217 9817 0.6210 +4217 9821 0.9120 +4217 9966 0.4370 +4217 9978 0.5250 +4217 10000 0.9110 +4217 10018 0.5750 +4217 10190 0.4190 +4217 10273 0.8280 +4217 10286 0.6310 +4217 10445 0.5860 +4217 10519 0.7920 +4217 10595 0.6510 +4217 10628 0.8420 +4217 10630 0.4490 +4217 10672 0.4040 +4217 10673 0.5750 +4217 10971 0.5750 +4217 10987 0.4390 +4217 11221 0.5270 +4217 11266 0.5720 +4217 11315 0.9910 +4217 22926 0.7120 +4217 23043 0.5300 +4217 23162 0.8020 +4217 23291 0.5660 +4217 23567 0.4300 +4217 25828 0.9700 +4217 25929 0.6420 +4217 26524 0.4620 +4217 27035 0.6550 +4217 27115 0.4480 +4217 30001 0.4970 +4217 50488 0.5230 +4217 50507 0.5210 +4217 53905 0.4260 +4217 54205 0.6370 +4217 54888 0.4430 +4217 54956 0.4020 +4217 79139 0.4140 +4217 80149 0.4010 +4217 80824 0.4260 +4217 90441 0.5770 +4217 124454 0.4090 +4217 142679 0.7670 +4217 151742 0.5180 +4217 153090 0.9950 +4217 192111 0.5500 +4217 257202 0.4100 +4217 493869 0.4180 +4218 4641 0.5290 +4218 4644 0.8950 +4218 4645 0.9960 +4218 4653 0.4290 +4218 4751 0.5680 +4218 4867 0.6560 +4218 4893 0.4460 +4218 4952 0.9970 +4218 4957 0.8750 +4218 5048 0.5440 +4218 5108 0.8270 +4218 5116 0.7850 +4218 5147 0.4370 +4218 5294 0.7710 +4218 5310 0.6810 +4218 5311 0.7100 +4218 5314 0.5410 +4218 5347 0.8060 +4218 5518 0.5470 +4218 5566 0.5980 +4218 5577 0.5130 +4218 5861 0.9140 +4218 5866 0.9930 +4218 5868 0.5930 +4218 5869 0.5460 +4218 5870 0.8780 +4218 5871 0.7430 +4218 5872 0.6580 +4218 5873 0.4370 +4218 5874 0.4920 +4218 5875 0.7410 +4218 5876 0.7490 +4218 5877 0.9980 +4218 5878 0.5920 +4218 5880 0.4180 +4218 5898 0.7490 +4218 5899 0.5310 +4218 5906 0.5980 +4218 5908 0.6170 +4218 5921 0.8210 +4218 6009 0.4960 +4218 6010 0.8050 +4218 6103 0.7890 +4218 6342 0.4780 +4218 6517 0.9680 +4218 6608 0.4270 +4218 6620 0.4040 +4218 6622 0.7030 +4218 6642 0.4320 +4218 6753 0.4040 +4218 6790 0.5700 +4218 6809 0.8290 +4218 6810 0.7550 +4218 6813 0.4520 +4218 6814 0.6810 +4218 6844 0.8240 +4218 6845 0.5070 +4218 7037 0.8910 +4218 7251 0.6060 +4218 7277 0.5960 +4218 7283 0.5430 +4218 7529 0.5610 +4218 7531 0.5540 +4218 7532 0.5440 +4218 7533 0.5460 +4218 7534 0.5560 +4218 7840 0.5640 +4218 7846 0.5840 +4218 7879 0.6900 +4218 8100 0.6280 +4218 8266 0.5910 +4218 8411 0.5660 +4218 8481 0.7180 +4218 8517 0.7140 +4218 8567 0.6000 +4218 8636 0.5040 +4218 8655 0.5780 +4218 8673 0.5420 +4218 8674 0.4160 +4218 8729 0.4040 +4218 8766 0.9390 +4218 8773 0.7660 +4218 8878 0.9500 +4218 8934 0.5070 +4218 9043 0.6660 +4218 9135 0.8530 +4218 9218 0.4710 +4218 9230 0.6070 +4218 9341 0.8060 +4218 9342 0.5180 +4218 9501 0.7610 +4218 9554 0.4030 +4218 9559 0.4370 +4218 9639 0.6530 +4218 9645 0.7490 +4218 9657 0.7590 +4218 9662 0.7040 +4218 9699 0.5010 +4218 9702 0.4990 +4218 9727 0.7300 +4218 9731 0.4940 +4218 9738 0.9720 +4218 9776 0.4780 +4218 9784 0.4310 +4218 9786 0.5860 +4218 9793 0.5540 +4218 9814 0.5040 +4218 9842 0.4250 +4218 9847 0.5500 +4218 9882 0.9340 +4218 9905 0.6750 +4218 10121 0.5520 +4218 10133 0.9990 +4218 10142 0.5620 +4218 10228 0.4270 +4218 10382 0.5100 +4218 10383 0.5190 +4218 10490 0.4690 +4218 10540 0.6960 +4218 10618 0.4450 +4218 10640 0.8780 +4218 10733 0.7140 +4218 10806 0.5960 +4218 10890 0.8310 +4218 10938 0.8760 +4218 10971 0.5640 +4218 11021 0.4780 +4218 11064 0.6690 +4218 11116 0.5050 +4218 11127 0.4270 +4218 11190 0.5230 +4218 11258 0.5070 +4218 11336 0.8270 +4218 22832 0.5500 +4218 22841 0.5160 +4218 22873 0.6000 +4218 22895 0.8810 +4218 22897 0.8710 +4218 22919 0.5890 +4218 22931 0.4150 +4218 22981 0.6150 +4218 22994 0.6360 +4218 22995 0.5390 +4218 22999 0.5450 +4218 23061 0.6280 +4218 23085 0.5950 +4218 23162 0.4610 +4218 23216 0.9550 +4218 23233 0.4270 +4218 23265 0.7980 +4218 23301 0.9860 +4218 23322 0.6960 +4218 23329 0.4310 +4218 23332 0.5520 +4218 23354 0.5040 +4218 23527 0.5630 +4218 26003 0.5330 +4218 26005 0.5530 +4218 26123 0.5200 +4218 26146 0.9100 +4218 27077 0.5850 +4218 27095 0.4080 +4218 27241 0.8280 +4218 27289 0.4840 +4218 27352 0.7270 +4218 28988 0.4060 +4218 29062 0.5710 +4218 29110 0.6240 +4218 29911 0.4480 +4218 30845 0.6120 +4218 50807 0.7320 +4218 50852 0.8580 +4218 51134 0.7100 +4218 51199 0.5910 +4218 51259 0.5620 +4218 51552 0.7080 +4218 51622 0.4670 +4218 51699 0.4210 +4218 51762 0.9850 +4218 54536 0.9730 +4218 54734 0.5910 +4218 54801 0.5010 +4218 54806 0.9580 +4218 54820 0.5990 +4218 54885 0.5610 +4218 54900 0.9450 +4218 54903 0.6260 +4218 54930 0.5080 +4218 54952 0.4240 +4218 55125 0.5470 +4218 55142 0.4990 +4218 55212 0.8400 +4218 55255 0.9620 +4218 55559 0.5080 +4218 55667 0.4630 +4218 55722 0.6200 +4218 55737 0.5740 +4218 55755 0.5450 +4218 55763 0.8250 +4218 55770 0.8200 +4218 55835 0.8120 +4218 55930 0.9000 +4218 56850 0.4400 +4218 57096 0.6250 +4218 57453 0.4380 +4218 57460 0.6430 +4218 57531 0.4350 +4218 57545 0.7920 +4218 57553 0.9660 +4218 57787 0.4570 +4218 58477 0.4290 +4218 60412 0.8580 +4218 60673 0.4750 +4218 64083 0.4350 +4218 64145 0.4340 +4218 64601 0.5660 +4218 64780 0.8710 +4218 64786 0.5710 +4218 64792 0.4470 +4218 65018 0.4070 +4218 79058 0.5190 +4218 79083 0.6430 +4218 79363 0.4970 +4218 79441 0.4990 +4218 79598 0.5060 +4218 79600 0.5860 +4218 79735 0.7760 +4218 79778 0.9890 +4218 79866 0.5010 +4218 79867 0.5580 +4218 79958 0.5130 +4218 79959 0.5360 +4218 80184 0.9610 +4218 80321 0.4990 +4218 80776 0.6090 +4218 81631 0.4620 +4218 81876 0.8010 +4218 84131 0.4990 +4218 84315 0.4320 +4218 84902 0.7020 +4218 84958 0.5700 +4218 85302 0.6530 +4218 85377 0.8870 +4218 90410 0.9320 +4218 91147 0.6290 +4218 92359 0.5430 +4218 92482 0.8340 +4218 93323 0.5030 +4218 94121 0.9380 +4218 94122 0.4110 +4218 95681 0.5860 +4218 115106 0.5000 +4218 116442 0.9440 +4218 116841 0.4020 +4218 117177 0.9990 +4218 120892 0.6990 +4218 121441 0.5090 +4218 124997 0.5670 +4218 127833 0.4680 +4218 129049 0.6850 +4218 129880 0.8400 +4218 132320 0.6630 +4218 140775 0.9720 +4218 146057 0.6510 +4218 149371 0.8090 +4218 163786 0.4480 +4218 196383 0.9970 +4218 199221 0.5300 +4218 200894 0.6120 +4218 203068 0.5500 +4218 203228 0.9800 +4218 219931 0.5180 +4218 221960 0.4600 +4218 254102 0.8500 +4218 261734 0.6780 +4218 283229 0.4160 +4218 347240 0.5850 +4218 353116 0.9430 +4218 374882 0.4510 +4222 4223 0.8300 +4222 4281 0.5700 +4222 4435 0.4730 +4222 4617 0.5150 +4222 4654 0.6510 +4222 4656 0.6830 +4222 5075 0.8590 +4222 5077 0.5460 +4222 5083 0.4190 +4222 5119 0.6270 +4222 5463 0.4810 +4222 6495 0.7140 +4222 6656 0.4210 +4222 6662 0.4040 +4222 6911 0.7740 +4222 6939 0.6330 +4222 8578 0.4170 +4222 9542 0.4330 +4222 10736 0.5090 +4222 22899 0.4790 +4222 50964 0.8100 +4222 51380 0.4450 +4222 56920 0.4570 +4222 64321 0.5690 +4222 83595 0.4080 +4222 83881 0.5270 +4222 92129 0.4020 +4222 134701 0.5760 +4222 145873 0.5350 +4222 192666 0.8270 +4222 339896 0.4910 +4222 343930 0.5930 +4222 392255 0.4340 +4223 4617 0.6730 +4223 4654 0.6310 +4223 4656 0.4970 +4223 5075 0.6480 +4223 5077 0.5350 +4223 5083 0.5660 +4223 6299 0.4510 +4223 6469 0.4880 +4223 6495 0.6020 +4223 6863 0.4300 +4223 6939 0.8370 +4223 7432 0.4390 +4223 9839 0.6970 +4223 9921 0.4860 +4223 9935 0.5800 +4223 25813 0.4200 +4223 50945 0.5350 +4223 92370 0.4330 +4223 93649 0.4280 +4223 116039 0.4250 +4223 130497 0.4710 +4223 283078 0.4020 +4223 353332 0.4290 +4223 386676 0.4430 +4223 392636 0.6700 +4224 4225 0.9310 +4224 4311 0.9170 +4224 4318 0.4020 +4224 4481 0.5250 +4224 4640 0.5470 +4224 4922 0.7180 +4224 5547 0.9500 +4224 5651 0.4010 +4224 5741 0.5550 +4224 6476 0.7060 +4224 7039 0.4550 +4224 7276 0.4590 +4224 7512 0.9510 +4224 8646 0.4550 +4224 8972 0.5000 +4224 11012 0.5600 +4224 26998 0.9000 +4224 59272 0.9610 +4224 79799 0.4670 +4224 80168 0.4320 +4224 93432 0.5110 +4224 119467 0.5720 +4224 134288 0.6080 +4224 644844 0.4270 +4225 4311 0.9250 +4225 4852 0.4200 +4225 4922 0.6110 +4225 5547 0.9370 +4225 5802 0.6480 +4225 5805 0.4950 +4225 6476 0.5460 +4225 7039 0.4580 +4225 7276 0.4740 +4225 7512 0.9490 +4225 8646 0.4200 +4225 8972 0.5000 +4225 10076 0.7660 +4225 10956 0.4890 +4225 56667 0.4340 +4225 59272 0.9570 +4225 81577 0.4930 +4225 93432 0.5060 +4225 165082 0.4270 +4225 388364 0.4010 +4232 4692 0.5970 +4232 4706 0.5060 +4232 4826 0.7190 +4232 5002 0.4830 +4232 5178 0.9120 +4232 5325 0.8710 +4232 5923 0.5140 +4232 6638 0.8040 +4232 6657 0.4290 +4232 7051 0.4670 +4232 7262 0.6360 +4232 7337 0.4020 +4232 8788 0.7790 +4232 8910 0.6830 +4232 9077 0.6220 +4232 10904 0.4310 +4232 23089 0.8650 +4232 23619 0.8210 +4232 26013 0.4160 +4232 26240 0.5780 +4232 26958 0.9090 +4232 29947 0.4040 +4232 51200 0.7240 +4232 54551 0.5000 +4232 55089 0.4920 +4232 55422 0.4290 +4232 55607 0.4280 +4232 57683 0.5250 +4232 79728 0.4960 +4232 93979 0.5380 +4232 95681 0.8770 +4232 132949 0.4680 +4232 136332 0.4040 +4232 146434 0.4600 +4232 266812 0.6060 +4232 346171 0.7640 +4232 353274 0.4210 +4232 388015 0.4410 +4232 100101490 0.5420 +4233 4254 0.8950 +4233 4255 0.4510 +4233 4286 0.4560 +4233 4313 0.7030 +4233 4316 0.4130 +4233 4318 0.7460 +4233 4323 0.4180 +4233 4485 0.7580 +4233 4486 0.5000 +4233 4609 0.6720 +4233 4613 0.4040 +4233 4617 0.5010 +4233 4654 0.4910 +4233 4656 0.4480 +4233 4763 0.4820 +4233 4771 0.4160 +4233 4790 0.4500 +4233 4803 0.7550 +4233 4851 0.5230 +4233 4893 0.9660 +4233 4908 0.6940 +4233 4909 0.6950 +4233 4914 0.6460 +4233 5077 0.5240 +4233 5081 0.4980 +4233 5093 0.4910 +4233 5133 0.4320 +4233 5154 0.8360 +4233 5155 0.8490 +4233 5159 0.4060 +4233 5175 0.4650 +4233 5228 0.7790 +4233 5243 0.4120 +4233 5268 0.4200 +4233 5290 0.9610 +4233 5291 0.9250 +4233 5293 0.9220 +4233 5295 0.8720 +4233 5296 0.7680 +4233 5315 0.4280 +4233 5328 0.7650 +4233 5329 0.4120 +4233 5330 0.6500 +4233 5331 0.6570 +4233 5332 0.6750 +4233 5335 0.9640 +4233 5336 0.9160 +4233 5340 0.4910 +4233 5364 0.9960 +4233 5365 0.9560 +4233 5460 0.4460 +4233 5546 0.5870 +4233 5728 0.7550 +4233 5743 0.4220 +4233 5747 0.9350 +4233 5754 0.4310 +4233 5764 0.4890 +4233 5770 0.9540 +4233 5771 0.5270 +4233 5781 0.9270 +4233 5787 0.4490 +4233 5788 0.5140 +4233 5792 0.5350 +4233 5795 0.9360 +4233 5805 0.5260 +4233 5829 0.4900 +4233 5867 0.6060 +4233 5879 0.7030 +4233 5898 0.4090 +4233 5906 0.6660 +4233 5908 0.6600 +4233 5962 0.5580 +4233 5979 0.5590 +4233 6009 0.4160 +4233 6199 0.5060 +4233 6233 0.5310 +4233 6237 0.7100 +4233 6279 0.9270 +4233 6382 0.4130 +4233 6385 0.6000 +4233 6387 0.9020 +4233 6403 0.4660 +4233 6405 0.4220 +4233 6426 0.4470 +4233 6455 0.5510 +4233 6456 0.5620 +4233 6457 0.7820 +4233 6461 0.4910 +4233 6464 0.9920 +4233 6469 0.4350 +4233 6591 0.5040 +4233 6615 0.7310 +4233 6654 0.8820 +4233 6657 0.4940 +4233 6692 0.4030 +4233 6696 0.4480 +4233 6714 0.9930 +4233 6768 0.5340 +4233 6774 0.9810 +4233 6777 0.4040 +4233 6794 0.5080 +4233 6850 0.5050 +4233 7015 0.5410 +4233 7030 0.5570 +4233 7037 0.6950 +4233 7039 0.8500 +4233 7040 0.7390 +4233 7042 0.4270 +4233 7057 0.6270 +4233 7082 0.4080 +4233 7124 0.6570 +4233 7157 0.8040 +4233 7291 0.4190 +4233 7299 0.5590 +4233 7301 0.5050 +4233 7311 0.5240 +4233 7314 0.5320 +4233 7316 0.5690 +4233 7412 0.4160 +4233 7423 0.7550 +4233 7424 0.8180 +4233 7430 0.5410 +4233 7448 0.4360 +4233 7450 0.5270 +4233 7472 0.5380 +4233 7474 0.4020 +4233 7535 0.4210 +4233 7837 0.4950 +4233 7852 0.7970 +4233 7869 0.5920 +4233 7942 0.4720 +4233 7982 0.4450 +4233 8027 0.6080 +4233 8061 0.4310 +4233 8074 0.6870 +4233 8312 0.4300 +4233 8411 0.5700 +4233 8503 0.8440 +4233 8549 0.4250 +4233 8651 0.5150 +4233 8662 0.4020 +4233 8766 0.4460 +4233 8817 0.8650 +4233 8822 0.8650 +4233 8823 0.8650 +4233 8828 0.6510 +4233 8829 0.4620 +4233 8842 0.5970 +4233 9093 0.4610 +4233 9101 0.4990 +4233 9146 0.7090 +4233 9235 0.9210 +4233 9429 0.4920 +4233 9564 0.4490 +4233 9672 0.5750 +4233 9839 0.4180 +4233 9846 0.4300 +4233 9922 0.4950 +4233 9965 0.7460 +4233 10048 0.7160 +4233 10232 0.4180 +4233 10254 0.6320 +4233 10273 0.4040 +4233 10319 0.4350 +4233 10371 0.4590 +4233 10413 0.4290 +4233 10507 0.9030 +4233 10512 0.4230 +4233 10763 0.4250 +4233 22914 0.5070 +4233 22918 0.4330 +4233 22941 0.4560 +4233 23163 0.6930 +4233 23236 0.6620 +4233 23624 0.6380 +4233 23654 0.9570 +4233 25759 0.9250 +4233 26018 0.9760 +4233 26047 0.4560 +4233 26053 0.4520 +4233 26281 0.8650 +4233 26291 0.7090 +4233 27006 0.8650 +4233 27289 0.6800 +4233 27436 0.6380 +4233 28234 0.4020 +4233 28954 0.4240 +4233 29126 0.7430 +4233 30011 0.9190 +4233 30816 0.5740 +4233 51378 0.6820 +4233 51741 0.4940 +4233 53358 0.9220 +4233 53916 0.5720 +4233 54413 0.4490 +4233 56034 0.7550 +4233 57381 0.4020 +4233 57502 0.4720 +4233 57556 0.5690 +4233 57610 0.6630 +4233 58480 0.4050 +4233 64759 0.6450 +4233 64866 0.5820 +4233 79923 0.4560 +4233 79932 0.4610 +4233 80176 0.4090 +4233 80310 0.7150 +4233 83992 0.5560 +4233 84951 0.6410 +4233 85440 0.5470 +4233 90273 0.4480 +4233 93986 0.6010 +4233 133482 0.4360 +4233 137902 0.4810 +4233 139411 0.4500 +4233 200958 0.5610 +4233 255738 0.4590 +4233 284217 0.4670 +4233 285195 0.4750 +4233 346389 0.8110 +4233 399694 0.9200 +4233 405754 0.5780 +4233 100133941 0.6590 +4233 100532731 0.4010 +4233 102723407 0.9200 +4234 4809 0.6170 +4234 4839 0.7620 +4234 5028 0.5270 +4234 5032 0.5310 +4234 5036 0.7010 +4234 5394 0.4050 +4234 5434 0.7040 +4234 5822 0.4230 +4234 6129 0.5340 +4234 6301 0.8100 +4234 6302 0.6090 +4234 6871 0.8590 +4234 6894 0.7180 +4234 7011 0.4290 +4234 7298 0.4760 +4234 7726 0.4970 +4234 8227 0.4550 +4234 8464 0.4980 +4234 8565 0.4290 +4234 8602 0.5490 +4234 8731 0.4550 +4234 8846 0.4580 +4234 8886 0.5770 +4234 9136 0.5150 +4234 9188 0.4520 +4234 9277 0.4380 +4234 9533 0.4270 +4234 9589 0.5670 +4234 9801 0.4060 +4234 9837 0.4370 +4234 9904 0.4240 +4234 10102 0.7120 +4234 10107 0.4890 +4234 10171 0.4010 +4234 10199 0.4500 +4234 10360 0.4410 +4234 10412 0.4150 +4234 10528 0.4680 +4234 10557 0.4300 +4234 10576 0.4700 +4234 10621 0.4040 +4234 10623 0.5360 +4234 10785 0.9990 +4234 10849 0.5520 +4234 10956 0.5350 +4234 10969 0.4270 +4234 11056 0.6820 +4234 11062 0.5580 +4234 11103 0.6870 +4234 11180 0.4240 +4234 22803 0.5290 +4234 22984 0.4470 +4234 23029 0.8360 +4234 23054 0.6220 +4234 23212 0.7040 +4234 23246 0.7260 +4234 23274 0.4330 +4234 23378 0.4170 +4234 23481 0.7320 +4234 24140 0.7960 +4234 25895 0.6630 +4234 25962 0.4790 +4234 26155 0.6020 +4234 26156 0.5540 +4234 26354 0.4370 +4234 26574 0.7100 +4234 26995 0.7840 +4234 27037 0.6770 +4234 27079 0.4790 +4234 27292 0.8050 +4234 27341 0.6080 +4234 28987 0.4030 +4234 28989 0.5730 +4234 29063 0.4980 +4234 29081 0.5140 +4234 29104 0.4820 +4234 29889 0.4280 +4234 29960 0.6420 +4234 51018 0.5480 +4234 51042 0.4520 +4234 51068 0.4500 +4234 51095 0.4320 +4234 51096 0.4170 +4234 51106 0.5190 +4234 51154 0.6710 +4234 51187 0.6850 +4234 51202 0.8170 +4234 51388 0.7820 +4234 51504 0.7910 +4234 51512 0.4160 +4234 51575 0.5200 +4234 51602 0.6730 +4234 51603 0.4070 +4234 51605 0.9500 +4234 51654 0.4520 +4234 54433 0.4170 +4234 54464 0.5400 +4234 54482 0.5080 +4234 54517 0.7860 +4234 54552 0.4260 +4234 54555 0.4270 +4234 54606 0.7470 +4234 54663 0.8290 +4234 54802 0.6220 +4234 54865 0.4390 +4234 54888 0.8710 +4234 54890 0.4080 +4234 54901 0.4440 +4234 54920 0.5980 +4234 54931 0.8610 +4234 54938 0.4760 +4234 54984 0.5920 +4234 54987 0.4110 +4234 55006 0.9130 +4234 55039 0.6100 +4234 55110 0.4190 +4234 55140 0.4210 +4234 55178 0.7670 +4234 55226 0.7770 +4234 55239 0.4030 +4234 55299 0.6500 +4234 55520 0.4070 +4234 55578 0.5250 +4234 55621 0.8070 +4234 55622 0.4050 +4234 55623 0.4920 +4234 55646 0.5830 +4234 55651 0.6510 +4234 55687 0.4750 +4234 55695 0.6320 +4234 55703 0.4320 +4234 55759 0.6420 +4234 55781 0.4150 +4234 55794 0.6590 +4234 55798 0.4960 +4234 56339 0.6990 +4234 56342 0.5570 +4234 56474 0.4130 +4234 56647 0.4840 +4234 56902 0.6280 +4234 56915 0.5850 +4234 56931 0.7100 +4234 57418 0.6810 +4234 57570 0.6960 +4234 57604 0.4600 +4234 57721 0.5870 +4234 60437 0.4040 +4234 60487 0.7720 +4234 60528 0.4470 +4234 63892 0.4170 +4234 63899 0.6820 +4234 64118 0.6750 +4234 64216 0.7030 +4234 64425 0.4800 +4234 64745 0.4550 +4234 64794 0.4700 +4234 64848 0.4100 +4234 64863 0.4690 +4234 65003 0.4120 +4234 79018 0.4510 +4234 79050 0.5270 +4234 79066 0.5810 +4234 79068 0.4660 +4234 79571 0.6040 +4234 79691 0.5160 +4234 79693 0.5160 +4234 79730 0.5600 +4234 79738 0.4630 +4234 79828 0.4130 +4234 79922 0.4860 +4234 79979 0.5830 +4234 80324 0.8050 +4234 81627 0.6740 +4234 81890 0.5920 +4234 81894 0.6730 +4234 83448 0.6470 +4234 83480 0.6690 +4234 83743 0.7540 +4234 84154 0.7520 +4234 84190 0.4160 +4234 84365 0.6160 +4234 84549 0.6990 +4234 84705 0.4200 +4234 84881 0.4780 +4234 84916 0.4270 +4234 88745 0.5510 +4234 89870 0.4910 +4234 90353 0.7970 +4234 91419 0.5650 +4234 91801 0.5270 +4234 91893 0.4460 +4234 92342 0.6900 +4234 92856 0.6320 +4234 93587 0.8370 +4234 93624 0.5500 +4234 112869 0.8690 +4234 113000 0.5060 +4234 113179 0.6260 +4234 113802 0.4620 +4234 115708 0.9640 +4234 117246 0.8970 +4234 126789 0.5970 +4234 131965 0.5100 +4234 134637 0.6280 +4234 142940 0.8550 +4234 144233 0.4630 +4234 144453 0.4110 +4234 149281 0.4310 +4234 149465 0.5120 +4234 152992 0.7440 +4234 153443 0.5050 +4234 155368 0.6460 +4234 158234 0.6960 +4234 161424 0.4040 +4234 196074 0.6010 +4234 196410 0.4100 +4234 221078 0.6490 +4234 221143 0.4890 +4234 221830 0.5710 +4234 285367 0.4620 +4234 285855 0.5330 +4234 339175 0.4880 +4234 345630 0.4090 +4234 374395 0.6210 +4234 376132 0.4350 +4234 387129 0.5260 +4234 387338 0.6870 +4234 399818 0.5820 +4234 692312 0.5270 +4234 751071 0.4300 +4234 100505478 0.4020 +4236 4237 0.9120 +4236 4238 0.8780 +4236 4686 0.8600 +4236 4809 0.9890 +4236 5356 0.8740 +4236 5478 0.4470 +4236 5725 0.4110 +4236 6426 0.8780 +4236 6428 0.4480 +4236 6434 0.4380 +4236 6625 0.7390 +4236 6626 0.6930 +4236 6627 0.9990 +4236 6628 0.9930 +4236 6629 0.9880 +4236 6631 0.6180 +4236 6632 0.9990 +4236 6633 0.9990 +4236 6634 0.9970 +4236 6635 0.9840 +4236 6636 0.9910 +4236 6637 0.9990 +4236 6638 0.9540 +4236 6651 0.4080 +4236 6829 0.7570 +4236 7057 0.4170 +4236 7307 0.7160 +4236 7415 0.4630 +4236 7536 0.4550 +4236 7737 0.9120 +4236 7919 0.8940 +4236 8175 0.9910 +4236 8449 0.9320 +4236 8570 0.4280 +4236 8880 0.4220 +4236 8896 0.8450 +4236 8899 0.8100 +4236 9092 0.9990 +4236 9128 0.9990 +4236 9129 0.9950 +4236 9136 0.4220 +4236 9343 0.9990 +4236 9360 0.4600 +4236 9410 0.9920 +4236 9416 0.5690 +4236 9584 0.7390 +4236 9646 0.4590 +4236 9716 0.8080 +4236 9775 0.8930 +4236 9785 0.8130 +4236 9879 0.9700 +4236 9939 0.5130 +4236 9984 0.5400 +4236 10084 0.8730 +4236 10169 0.5390 +4236 10181 0.5340 +4236 10189 0.8490 +4236 10250 0.9680 +4236 10262 0.9990 +4236 10283 0.9310 +4236 10285 0.4670 +4236 10286 0.5410 +4236 10291 0.9990 +4236 10421 0.4590 +4236 10450 0.8070 +4236 10465 0.9410 +4236 10523 0.4140 +4236 10569 0.6320 +4236 10594 0.9990 +4236 10657 0.5000 +4236 10713 0.4730 +4236 10907 0.9830 +4236 10915 0.9950 +4236 10943 0.5660 +4236 10946 0.9990 +4236 10973 0.6000 +4236 10992 0.9850 +4236 11017 0.6080 +4236 11051 0.4450 +4236 11052 0.5940 +4236 11091 0.6210 +4236 11157 0.9820 +4236 11193 0.9950 +4236 11325 0.4160 +4236 11338 0.6250 +4236 22794 0.4460 +4236 22826 0.4110 +4236 22916 0.9280 +4236 22938 0.9670 +4236 22944 0.8080 +4236 23020 0.9990 +4236 23063 0.4240 +4236 23350 0.4960 +4236 23398 0.4750 +4236 23435 0.6730 +4236 23450 0.9990 +4236 23451 0.9990 +4236 23476 0.5230 +4236 23517 0.8250 +4236 23524 0.9330 +4236 23617 0.6710 +4236 23658 0.9860 +4236 23759 0.9600 +4236 24144 0.5070 +4236 24148 0.9990 +4236 25764 0.4210 +4236 25804 0.9840 +4236 25949 0.7250 +4236 26121 0.9990 +4236 27238 0.8460 +4236 27258 0.9830 +4236 27316 0.4220 +4236 27339 0.5870 +4236 51340 0.9320 +4236 51362 0.9830 +4236 51428 0.4290 +4236 51503 0.8360 +4236 51593 0.8800 +4236 51634 0.9880 +4236 51639 0.9920 +4236 51645 0.8170 +4236 51690 0.9830 +4236 51691 0.9820 +4236 51729 0.9720 +4236 53938 0.8090 +4236 54517 0.6920 +4236 54554 0.5840 +4236 54883 0.4300 +4236 55094 0.5950 +4236 55100 0.4950 +4236 55110 0.9090 +4236 55234 0.9990 +4236 55660 0.6420 +4236 55677 0.7130 +4236 55696 0.8580 +4236 55702 0.5200 +4236 56257 0.4490 +4236 56259 0.8930 +4236 56833 0.4120 +4236 56949 0.8970 +4236 57541 0.5190 +4236 57703 0.9480 +4236 57819 0.9900 +4236 58517 0.6380 +4236 59286 0.9930 +4236 60625 0.4320 +4236 65109 0.4350 +4236 79009 0.4320 +4236 79171 0.6850 +4236 79607 0.4630 +4236 79631 0.5040 +4236 79753 0.9940 +4236 79768 0.4070 +4236 81608 0.6100 +4236 83443 0.9870 +4236 83938 0.7780 +4236 83942 0.6520 +4236 84081 0.5970 +4236 84316 0.4930 +4236 84328 0.4360 +4236 84811 0.9990 +4236 84844 0.9850 +4236 84950 0.9990 +4236 84967 0.8440 +4236 84991 0.4480 +4236 85313 0.5950 +4236 85476 0.4830 +4236 117583 0.4170 +4236 118924 0.5500 +4236 123169 0.4010 +4236 126259 0.4930 +4236 147650 0.4930 +4236 151903 0.8140 +4236 153527 0.9990 +4236 164045 0.5860 +4236 164781 0.7880 +4236 220074 0.7780 +4236 256536 0.8920 +4236 343413 0.4340 +4236 348793 0.7970 +4236 619189 0.4030 +4237 4238 0.9410 +4237 4239 0.8100 +4237 4851 0.5270 +4237 7042 0.5590 +4237 7124 0.4260 +4237 7448 0.6670 +4237 8076 0.9430 +4237 10516 0.8570 +4237 22795 0.4400 +4237 28514 0.5040 +4237 30008 0.7940 +4237 54507 0.4110 +4237 57649 0.4530 +4237 64098 0.4020 +4237 83890 0.4790 +4237 84171 0.4830 +4237 84467 0.7170 +4237 84695 0.4980 +4238 5149 0.4180 +4238 8076 0.6570 +4238 8795 0.4570 +4238 10516 0.5520 +4238 10827 0.5860 +4238 11249 0.4610 +4238 29099 0.4880 +4238 30008 0.5270 +4238 55568 0.5090 +4238 65083 0.4710 +4238 84945 0.5280 +4238 118812 0.5350 +4238 285605 0.4240 +4239 4316 0.4960 +4239 4969 0.5830 +4239 5156 0.4290 +4239 5320 0.4510 +4239 5549 0.4590 +4239 7076 0.5510 +4239 7123 0.4180 +4239 7373 0.7100 +4239 8076 0.7130 +4239 8425 0.6520 +4239 9719 0.5760 +4239 10351 0.5010 +4239 10516 0.8420 +4239 10631 0.4580 +4239 23090 0.4370 +4239 30008 0.7050 +4239 54507 0.4410 +4239 54829 0.4170 +4239 57124 0.4090 +4239 79987 0.4620 +4239 81794 0.4160 +4239 91851 0.4960 +4239 151887 0.4040 +4239 170691 0.4430 +4239 219654 0.5660 +4239 219972 0.5790 +4239 283298 0.4290 +4240 4477 0.4240 +4240 4684 0.4270 +4240 4878 0.4170 +4240 5159 0.4090 +4240 5581 0.4480 +4240 5617 0.4700 +4240 5621 0.5840 +4240 5627 0.5980 +4240 6223 0.4240 +4240 6229 0.4030 +4240 6234 0.4140 +4240 6288 0.4560 +4240 6406 0.4610 +4240 6604 0.4260 +4240 6622 0.5180 +4240 7045 0.5190 +4240 7052 0.4600 +4240 7057 0.6260 +4240 7058 0.5210 +4240 7251 0.6140 +4240 7276 0.5340 +4240 7301 0.6710 +4240 7412 0.4610 +4240 7448 0.5750 +4240 7498 0.6270 +4240 8578 0.5720 +4240 8622 0.4200 +4240 8740 0.4950 +4240 9445 0.4920 +4240 9577 0.4300 +4240 9843 0.6920 +4240 10015 0.4310 +4240 10211 0.5000 +4240 10384 0.7890 +4240 10385 0.7950 +4240 10461 0.8190 +4240 10597 0.4180 +4240 10917 0.7910 +4240 11118 0.7830 +4240 11119 0.7770 +4240 11120 0.7890 +4240 25802 0.4870 +4240 27111 0.4270 +4240 30816 0.4720 +4240 50863 0.6690 +4240 51454 0.4310 +4240 54757 0.4750 +4240 54915 0.4200 +4240 54959 0.4110 +4240 55022 0.6350 +4240 55113 0.4750 +4240 55576 0.6680 +4240 56975 0.5790 +4240 79908 0.7860 +4240 91937 0.6600 +4240 114625 0.7940 +4240 132949 0.4260 +4240 143662 0.4950 +4240 145864 0.5260 +4240 153579 0.7840 +4240 286410 0.4160 +4240 341208 0.7560 +4240 405754 0.5550 +4241 4493 0.4610 +4241 4891 0.4190 +4241 5340 0.8800 +4241 7037 0.7920 +4241 7448 0.4650 +4241 7512 0.4390 +4241 10232 0.4410 +4241 27306 0.6580 +4241 54757 0.4410 +4241 56975 0.5060 +4241 58477 0.5600 +4241 79178 0.4630 +4241 80235 0.4640 +4241 255798 0.4040 +4241 348793 0.4660 +4241 388960 0.4150 +4242 4851 0.9450 +4242 4853 0.9460 +4242 4854 0.9550 +4242 4855 0.9370 +4242 5663 0.4760 +4242 5986 0.9080 +4242 8869 0.4610 +4242 9794 0.5240 +4242 10683 0.6430 +4242 10690 0.4420 +4242 23462 0.4100 +4242 23509 0.6700 +4242 28514 0.6010 +4242 51593 0.4360 +4242 54567 0.5250 +4242 55534 0.4020 +4242 92737 0.4600 +4242 388585 0.5660 +4245 4247 0.9430 +4245 4248 0.8790 +4245 4249 0.8680 +4245 6403 0.4250 +4245 6480 0.5650 +4245 6482 0.4460 +4245 6484 0.4240 +4245 7542 0.4770 +4245 7841 0.4520 +4245 8694 0.7950 +4245 9215 0.6630 +4245 10195 0.5850 +4245 10585 0.4790 +4245 10678 0.5000 +4245 10905 0.9500 +4245 11253 0.5530 +4245 11282 0.6090 +4245 11320 0.5760 +4245 23266 0.9250 +4245 23275 0.4320 +4245 23592 0.4170 +4245 26229 0.4550 +4245 29954 0.4540 +4245 55624 0.4720 +4245 56886 0.4080 +4245 56913 0.6080 +4245 57134 0.9350 +4245 64772 0.4610 +4245 79087 0.5360 +4245 80168 0.4580 +4245 84034 0.4510 +4245 84649 0.5630 +4245 113829 0.5350 +4245 116255 0.4430 +4245 132949 0.4360 +4245 146664 0.4250 +4245 152586 0.6310 +4245 201595 0.4790 +4245 346606 0.4710 +4245 440138 0.5460 +4246 4250 0.8410 +4246 4589 0.6170 +4246 5290 0.4690 +4246 5304 0.4900 +4246 6369 0.4280 +4246 7356 0.7420 +4246 7941 0.5520 +4246 10344 0.4260 +4246 10647 0.9300 +4246 10648 0.9270 +4246 11251 0.5420 +4246 11272 0.5860 +4246 51131 0.4990 +4246 58503 0.4070 +4246 80332 0.4970 +4246 90070 0.4880 +4246 91074 0.4010 +4246 114960 0.5120 +4246 117156 0.6230 +4246 124220 0.4180 +4246 130940 0.4220 +4246 339965 0.4590 +4247 4248 0.9700 +4247 4249 0.7890 +4247 5373 0.4950 +4247 5824 0.4050 +4247 6480 0.4460 +4247 6487 0.5570 +4247 7841 0.5080 +4247 10195 0.6270 +4247 10905 0.4350 +4247 11253 0.4880 +4247 11282 0.9680 +4247 11320 0.9670 +4247 23275 0.4370 +4247 26229 0.4150 +4247 27352 0.4560 +4247 54480 0.4160 +4247 55624 0.6540 +4247 56913 0.4270 +4247 79087 0.4160 +4247 146664 0.5490 +4247 152586 0.9440 +4247 170384 0.4180 +4247 414328 0.4800 +4247 440138 0.4020 +4248 4249 0.9510 +4248 5817 0.4420 +4248 5818 0.4670 +4248 6480 0.6050 +4248 6482 0.4350 +4248 6615 0.4040 +4248 7184 0.4350 +4248 7248 0.4280 +4248 9804 0.4710 +4248 10131 0.4280 +4248 10452 0.4420 +4248 10454 0.4030 +4248 10469 0.4500 +4248 11282 0.9690 +4248 11320 0.9680 +4248 27254 0.5650 +4248 53827 0.5140 +4248 56993 0.6320 +4248 84134 0.4420 +4248 92609 0.4120 +4248 146664 0.8120 +4248 152586 0.9000 +4248 387990 0.4710 +4249 5818 0.4310 +4249 6480 0.7370 +4249 6482 0.5860 +4249 6483 0.4260 +4249 6484 0.6330 +4249 6487 0.5600 +4249 6615 0.4440 +4249 6782 0.4130 +4249 7841 0.4410 +4249 8492 0.4070 +4249 8693 0.5430 +4249 8702 0.4510 +4249 8703 0.4410 +4249 8704 0.6570 +4249 9215 0.5320 +4249 9245 0.5000 +4249 9334 0.4890 +4249 10317 0.4910 +4249 10331 0.4390 +4249 10402 0.5150 +4249 10678 0.6020 +4249 10690 0.4460 +4249 10905 0.4230 +4249 11226 0.4240 +4249 11282 0.9920 +4249 11320 0.9910 +4249 25834 0.9550 +4249 25929 0.4160 +4249 27254 0.4820 +4249 29071 0.4470 +4249 29907 0.4080 +4249 53827 0.4440 +4249 55599 0.4290 +4249 55624 0.7080 +4249 55808 0.5060 +4249 56913 0.5180 +4249 57134 0.4860 +4249 121665 0.4800 +4249 146664 0.9100 +4249 152586 0.9260 +4249 170384 0.4300 +4249 374907 0.4130 +4249 653499 0.4700 +4250 5304 0.7290 +4250 7031 0.4360 +4250 7356 0.7390 +4250 10647 0.9990 +4250 10648 0.7210 +4250 91074 0.5720 +4250 117159 0.5020 +4250 118430 0.9610 +4253 6396 0.7130 +4253 6399 0.6610 +4253 6836 0.5470 +4253 8287 0.4640 +4253 8572 0.4010 +4253 9632 0.7880 +4253 9871 0.5890 +4253 9919 0.8480 +4253 10113 0.9990 +4253 10282 0.5340 +4253 10342 0.4180 +4253 10427 0.7830 +4253 10483 0.4860 +4253 10484 0.7510 +4253 10656 0.4590 +4253 10802 0.4930 +4253 22872 0.5990 +4253 23256 0.4930 +4253 25956 0.4060 +4253 26206 0.4020 +4253 51128 0.5820 +4253 51156 0.4250 +4253 53407 0.4870 +4253 56681 0.5650 +4253 58477 0.4590 +4253 59349 0.6130 +4253 64083 0.4600 +4253 80323 0.9600 +4253 122553 0.4360 +4253 149345 0.5510 +4253 153657 0.5140 +4253 254170 0.4290 +4253 340307 0.6630 +4253 375056 0.9990 +4254 4286 0.5780 +4254 4300 0.4140 +4254 4318 0.9210 +4254 4352 0.8570 +4254 4609 0.4710 +4254 4684 0.4480 +4254 4763 0.5510 +4254 4803 0.6120 +4254 4804 0.7620 +4254 4851 0.4100 +4254 4893 0.6690 +4254 4907 0.4260 +4254 4914 0.9980 +4254 4915 0.7000 +4254 4948 0.6110 +4254 5008 0.4100 +4254 5156 0.9810 +4254 5159 0.9510 +4254 5175 0.5410 +4254 5228 0.4470 +4254 5290 0.4980 +4254 5293 0.4300 +4254 5295 0.4990 +4254 5296 0.5070 +4254 5460 0.5450 +4254 5553 0.4610 +4254 5578 0.5070 +4254 5595 0.4470 +4254 5688 0.6960 +4254 5728 0.6080 +4254 5777 0.5550 +4254 5781 0.5960 +4254 5788 0.6970 +4254 5879 0.4250 +4254 5880 0.4570 +4254 5896 0.4050 +4254 6036 0.4930 +4254 6194 0.4430 +4254 6198 0.5360 +4254 6223 0.6180 +4254 6224 0.5250 +4254 6320 0.7130 +4254 6347 0.5330 +4254 6348 0.5050 +4254 6351 0.4330 +4254 6356 0.4780 +4254 6387 0.8390 +4254 6469 0.4550 +4254 6500 0.4970 +4254 6504 0.5900 +4254 6654 0.4780 +4254 6657 0.4830 +4254 6662 0.4050 +4254 6688 0.4470 +4254 6693 0.4310 +4254 6696 0.4480 +4254 6714 0.6670 +4254 6772 0.7640 +4254 6774 0.7250 +4254 6775 0.4380 +4254 6776 0.7420 +4254 6777 0.7420 +4254 6863 0.4440 +4254 7006 0.4990 +4254 7010 0.9220 +4254 7037 0.5220 +4254 7040 0.5110 +4254 7066 0.9740 +4254 7070 0.6360 +4254 7099 0.5490 +4254 7124 0.5940 +4254 7157 0.6290 +4254 7177 0.5560 +4254 7299 0.6970 +4254 7306 0.6810 +4254 7409 0.5550 +4254 7412 0.5710 +4254 7450 0.4230 +4254 7525 0.5310 +4254 7837 0.4530 +4254 7852 0.9600 +4254 8454 0.4610 +4254 8503 0.4870 +4254 8549 0.6280 +4254 8651 0.5620 +4254 8817 0.5140 +4254 8822 0.5110 +4254 8823 0.5070 +4254 8842 0.7130 +4254 9210 0.6320 +4254 9306 0.5610 +4254 9314 0.4350 +4254 9402 0.5780 +4254 9846 0.4950 +4254 9965 0.5140 +4254 10019 0.6230 +4254 10212 0.4910 +4254 10544 0.4210 +4254 10563 0.4550 +4254 10603 0.5230 +4254 10661 0.4020 +4254 10750 0.5120 +4254 10763 0.5320 +4254 10818 0.4290 +4254 10850 0.5660 +4254 11314 0.4650 +4254 23008 0.4770 +4254 23705 0.4950 +4254 26281 0.5070 +4254 27006 0.5080 +4254 30816 0.4930 +4254 50846 0.4960 +4254 51151 0.5650 +4254 51200 0.4170 +4254 51554 0.4280 +4254 54567 0.4480 +4254 55770 0.4410 +4254 55861 0.6700 +4254 57198 0.4610 +4254 59340 0.4570 +4254 79923 0.4870 +4254 80070 0.4410 +4254 81037 0.4500 +4254 81848 0.4420 +4254 84250 0.4530 +4254 90865 0.4590 +4254 117194 0.4420 +4254 123041 0.5890 +4254 126206 0.4750 +4254 137902 0.4380 +4254 200734 0.4460 +4254 200895 0.4570 +4254 219931 0.5480 +4254 283652 0.5690 +4254 392255 0.4030 +4254 405754 0.4790 +4255 4292 0.8660 +4255 4312 0.4040 +4255 4350 0.8490 +4255 4361 0.5650 +4255 4436 0.7880 +4255 4437 0.5750 +4255 4524 0.4580 +4255 4595 0.6110 +4255 4609 0.6300 +4255 4762 0.4460 +4255 4763 0.5730 +4255 4851 0.5590 +4255 4853 0.4780 +4255 4854 0.4750 +4255 4893 0.4120 +4255 4913 0.6140 +4255 4968 0.8020 +4255 5111 0.5360 +4255 5156 0.6950 +4255 5243 0.4330 +4255 5290 0.5060 +4255 5295 0.5230 +4255 5378 0.5770 +4255 5395 0.8050 +4255 5423 0.4310 +4255 5424 0.5500 +4255 5426 0.4420 +4255 5578 0.5590 +4255 5591 0.5350 +4255 5728 0.7110 +4255 5888 0.5230 +4255 5913 0.4950 +4255 5915 0.7050 +4255 5980 0.4810 +4255 6422 0.6780 +4255 6423 0.4470 +4255 6469 0.6090 +4255 6596 0.4450 +4255 6657 0.4310 +4255 6774 0.4360 +4255 6996 0.4570 +4255 7015 0.7140 +4255 7057 0.4180 +4255 7078 0.6440 +4255 7150 0.4540 +4255 7157 0.7700 +4255 7161 0.4800 +4255 7298 0.4120 +4255 7374 0.5230 +4255 7431 0.4860 +4255 7486 0.5190 +4255 7507 0.6070 +4255 7515 0.7310 +4255 7517 0.5810 +4255 7837 0.4030 +4255 7980 0.4180 +4255 8290 0.5690 +4255 8356 0.4480 +4255 8361 0.4120 +4255 8651 0.6550 +4255 8714 0.4420 +4255 8842 0.5750 +4255 8846 0.6350 +4255 8913 0.4310 +4255 9156 0.7090 +4255 9211 0.4590 +4255 9320 0.5440 +4255 9429 0.4480 +4255 9682 0.4340 +4255 9770 0.4050 +4255 10009 0.5790 +4255 10215 0.4840 +4255 10763 0.4860 +4255 10801 0.6830 +4255 11186 0.8680 +4255 11197 0.4790 +4255 11200 0.4370 +4255 23604 0.5100 +4255 23671 0.4490 +4255 27030 0.5700 +4255 29126 0.5070 +4255 29997 0.4480 +4255 29998 0.5790 +4255 51455 0.4030 +4255 51750 0.4510 +4255 54890 0.4680 +4255 55247 0.4680 +4255 55270 0.4040 +4255 55743 0.5820 +4255 57659 0.6310 +4255 80324 0.4160 +4255 83480 0.4040 +4255 85443 0.4460 +4255 121642 0.5070 +4255 126789 0.4040 +4255 137902 0.4020 +4255 140628 0.4710 +4255 253461 0.6410 +4255 440093 0.4160 +4255 440686 0.4160 +4255 653604 0.4170 +4255 100533467 0.5450 +4256 4488 0.5790 +4256 4629 0.4700 +4256 4640 0.4950 +4256 4653 0.4600 +4256 4958 0.4070 +4256 4969 0.4960 +4256 5167 0.6110 +4256 5627 0.8800 +4256 5638 0.4790 +4256 5741 0.6210 +4256 6168 0.4210 +4256 6575 0.4110 +4256 6649 0.4940 +4256 6678 0.6520 +4256 6694 0.7300 +4256 6696 0.9240 +4256 6876 0.6120 +4256 7045 0.4500 +4256 7407 0.4340 +4256 7448 0.6890 +4256 8074 0.6090 +4256 8076 0.5090 +4256 8404 0.4950 +4256 8483 0.4380 +4256 8600 0.4990 +4256 8614 0.4160 +4256 9365 0.6120 +4256 10117 0.4010 +4256 10516 0.4160 +4256 10631 0.6490 +4256 26585 0.4190 +4256 50964 0.4330 +4256 56172 0.4610 +4256 56934 0.4520 +4256 57176 0.4360 +4256 79001 0.8480 +4256 79057 0.4180 +4256 121340 0.5480 +4256 121506 0.4600 +4256 221044 0.7620 +4256 401138 0.4170 +4256 493869 0.4460 +4257 4258 0.9880 +4257 4259 0.9820 +4257 5481 0.4460 +4257 8694 0.4350 +4257 9446 0.8590 +4257 9588 0.9280 +4257 10105 0.5120 +4257 10728 0.4590 +4257 22949 0.4230 +4257 27306 0.9110 +4257 29785 0.6750 +4257 51060 0.9080 +4257 54020 0.4120 +4257 79094 0.6560 +4257 93185 0.4440 +4257 119391 0.8120 +4257 124975 0.6750 +4257 133482 0.6460 +4257 137964 0.4410 +4257 221357 0.7650 +4257 257202 0.7640 +4257 373156 0.5830 +4257 493869 0.7810 +4257 494143 0.6500 +4257 653689 0.8170 +4258 4259 0.8280 +4258 9446 0.8570 +4258 9536 0.8500 +4258 9588 0.9110 +4258 27306 0.9070 +4258 29785 0.6770 +4258 51060 0.9040 +4258 79094 0.6780 +4258 119391 0.8180 +4258 124975 0.7280 +4258 221357 0.7950 +4258 257202 0.7420 +4258 373156 0.5510 +4258 493869 0.7610 +4258 494143 0.7830 +4258 653689 0.7770 +4259 6390 0.4310 +4259 9446 0.8400 +4259 9536 0.8280 +4259 9588 0.9140 +4259 10007 0.4220 +4259 10379 0.4170 +4259 10728 0.4110 +4259 22859 0.5140 +4259 23266 0.5140 +4259 23284 0.5140 +4259 26873 0.5670 +4259 27089 0.4030 +4259 27306 0.8590 +4259 29785 0.6710 +4259 51060 0.9130 +4259 54499 0.4020 +4259 57645 0.4790 +4259 57863 0.4560 +4259 79094 0.6680 +4259 119391 0.7630 +4259 124975 0.6710 +4259 221357 0.7520 +4259 257202 0.7140 +4259 373156 0.4730 +4259 440699 0.6390 +4259 493869 0.7730 +4259 494143 0.6960 +4259 653689 0.7780 +4261 4283 0.5100 +4261 4656 0.4960 +4261 4671 0.9310 +4261 4790 0.5740 +4261 4795 0.4050 +4261 4800 0.9600 +4261 4801 0.9500 +4261 4802 0.9600 +4261 4904 0.4080 +4261 5079 0.4990 +4261 5361 0.5560 +4261 5456 0.4340 +4261 5468 0.4160 +4261 5595 0.4080 +4261 5696 0.4100 +4261 5698 0.4830 +4261 5705 0.6980 +4261 5788 0.5180 +4261 5966 0.4460 +4261 5989 0.9580 +4261 5990 0.5260 +4261 5993 0.9990 +4261 5994 0.9960 +4261 6050 0.4950 +4261 6597 0.4720 +4261 6688 0.5060 +4261 6689 0.5460 +4261 6772 0.9570 +4261 6878 0.4720 +4261 6879 0.4690 +4261 6880 0.6520 +4261 6892 0.5190 +4261 6908 0.4360 +4261 7096 0.4120 +4261 7097 0.4800 +4261 7098 0.4070 +4261 7099 0.4480 +4261 7124 0.4880 +4261 7514 0.6400 +4261 7789 0.4570 +4261 8625 0.9980 +4261 8648 0.4160 +4261 8651 0.5020 +4261 8850 0.6280 +4261 9447 0.4520 +4261 9759 0.4230 +4261 10013 0.4980 +4261 10320 0.4050 +4261 10346 0.4920 +4261 10437 0.5530 +4261 10537 0.4170 +4261 10578 0.4480 +4261 10614 0.4710 +4261 22861 0.4230 +4261 23274 0.6810 +4261 23411 0.4020 +4261 23586 0.4300 +4261 26191 0.4440 +4261 28955 0.5930 +4261 29108 0.7480 +4261 29126 0.5160 +4261 51284 0.4470 +4261 51744 0.4230 +4261 51752 0.4130 +4261 56253 0.4570 +4261 58484 0.6080 +4261 64127 0.4130 +4261 79364 0.8030 +4261 79671 0.5930 +4261 80380 0.4700 +4261 84166 0.6540 +4261 84433 0.4680 +4261 91662 0.4430 +4261 114548 0.4820 +4261 115361 0.5790 +4261 117289 0.4870 +4261 140685 0.4180 +4261 152138 0.4250 +4261 199713 0.4740 +4267 4311 0.7200 +4267 4353 0.5520 +4267 4654 0.5840 +4267 4656 0.7200 +4267 4665 0.6470 +4267 4684 0.7290 +4267 4821 0.5420 +4267 4935 0.4430 +4267 5079 0.4750 +4267 5175 0.7780 +4267 5230 0.4300 +4267 5241 0.4550 +4267 5514 0.6410 +4267 5788 0.7430 +4267 5817 0.5160 +4267 5819 0.4770 +4267 6402 0.4360 +4267 6473 0.7770 +4267 6598 0.6470 +4267 6663 0.5050 +4267 6670 0.4370 +4267 6693 0.7250 +4267 6736 0.4690 +4267 6756 0.5820 +4267 6757 0.6650 +4267 6760 0.5820 +4267 6778 0.6050 +4267 6855 0.8190 +4267 7037 0.4160 +4267 7076 0.4350 +4267 7080 0.4750 +4267 7088 0.7010 +4267 7157 0.4670 +4267 7317 0.4440 +4267 7431 0.6470 +4267 7490 0.7010 +4267 7499 0.8910 +4267 7592 0.4260 +4267 7712 0.5450 +4267 7849 0.4460 +4267 8013 0.4910 +4267 8148 0.4800 +4267 8227 0.4790 +4267 8623 0.4780 +4267 8839 0.4220 +4267 8856 0.4410 +4267 9084 0.4610 +4267 9319 0.5200 +4267 10225 0.5440 +4267 10389 0.5490 +4267 10666 0.5170 +4267 23598 0.6110 +4267 27087 0.5230 +4267 29990 0.9240 +4267 29992 0.9740 +4267 50848 0.6250 +4267 51481 0.4890 +4267 54474 0.6620 +4267 55107 0.5810 +4267 80331 0.4260 +4267 85417 0.5420 +4267 201161 0.6560 +4267 256646 0.4800 +4267 353513 0.4610 +4267 392255 0.4790 +4267 400566 0.6090 +4267 727837 0.4470 +4267 100288687 0.5830 +4277 4684 0.5630 +4277 4795 0.4200 +4277 5551 0.5900 +4277 5698 0.4370 +4277 5788 0.4780 +4277 5817 0.6630 +4277 5819 0.6640 +4277 6382 0.4180 +4277 6776 0.5620 +4277 6777 0.5570 +4277 6868 0.4060 +4277 7040 0.5880 +4277 7100 0.4190 +4277 7124 0.6170 +4277 7305 0.4850 +4277 7932 0.4380 +4277 8519 0.4630 +4277 8718 0.5670 +4277 8795 0.5600 +4277 8797 0.5440 +4277 9436 0.9320 +4277 9437 0.9550 +4277 9774 0.4220 +4277 9976 0.6330 +4277 10130 0.8190 +4277 10225 0.4810 +4277 10384 0.4970 +4277 10665 0.5390 +4277 10666 0.8020 +4277 10859 0.8310 +4277 10870 0.9640 +4277 11118 0.5000 +4277 11119 0.5660 +4277 22914 0.9990 +4277 23568 0.4480 +4277 29126 0.5020 +4277 30834 0.4380 +4277 51196 0.4380 +4277 51348 0.6850 +4277 51604 0.4030 +4277 79465 0.5080 +4277 80328 0.9710 +4277 80329 0.9730 +4277 80381 0.4120 +4277 84868 0.4290 +4277 114836 0.4420 +4277 154064 0.7790 +4277 170679 0.4130 +4277 170685 0.6660 +4277 201633 0.4140 +4277 259197 0.9450 +4277 353091 0.7940 +4277 374383 0.6370 +4277 401250 0.5670 +4277 100507436 0.9180 +4277 100526664 0.4150 +4281 4591 0.4200 +4281 4869 0.5860 +4281 5371 0.4510 +4281 5515 0.9140 +4281 5518 0.5430 +4281 5524 0.6350 +4281 5987 0.4510 +4281 6772 0.5050 +4281 7321 0.8400 +4281 7322 0.8070 +4281 7323 0.8600 +4281 7324 0.6240 +4281 7325 0.6530 +4281 7334 0.4620 +4281 8424 0.8010 +4281 8987 0.4200 +4281 9081 0.4180 +4281 10399 0.6690 +4281 10477 0.6130 +4281 10615 0.4230 +4281 10761 0.4880 +4281 11043 0.9090 +4281 22954 0.4270 +4281 50852 0.6460 +4281 51619 0.4320 +4281 55040 0.4700 +4281 55217 0.5880 +4281 58526 0.7080 +4281 80019 0.4670 +4281 442862 0.4320 +4282 4283 0.4550 +4282 4318 0.4920 +4282 4738 0.4760 +4282 4830 0.7320 +4282 4831 0.6010 +4282 5037 0.6680 +4282 5054 0.4780 +4282 5162 0.6230 +4282 5165 0.6120 +4282 5216 0.5110 +4282 5223 0.5720 +4282 5230 0.6300 +4282 5478 0.4610 +4282 5595 0.4110 +4282 5617 0.4790 +4282 5654 0.6740 +4282 5743 0.4430 +4282 5757 0.4250 +4282 5950 0.4550 +4282 6188 0.6310 +4282 6193 0.4130 +4282 6223 0.6170 +4282 6320 0.4540 +4282 6347 0.8360 +4282 6348 0.5150 +4282 6351 0.5020 +4282 6354 0.5980 +4282 6356 0.4250 +4282 6367 0.5100 +4282 6382 0.5000 +4282 6387 0.7370 +4282 6401 0.5840 +4282 6647 0.7440 +4282 6696 0.4290 +4282 6775 0.7800 +4282 6898 0.9100 +4282 7037 0.4210 +4282 7040 0.4340 +4282 7076 0.4030 +4282 7086 0.4610 +4282 7099 0.5190 +4282 7124 0.6560 +4282 7157 0.7310 +4282 7167 0.5930 +4282 7276 0.4840 +4282 7295 0.5230 +4282 7412 0.4210 +4282 7852 0.9910 +4282 8050 0.6150 +4282 8722 0.4090 +4282 8764 0.4920 +4282 9370 0.4130 +4282 9709 0.4020 +4282 10018 0.4040 +4282 10213 0.5170 +4282 10273 0.4390 +4282 10628 0.4760 +4282 10663 0.5000 +4282 10850 0.4310 +4282 10987 0.9760 +4282 11236 0.4240 +4282 11315 0.7180 +4282 25873 0.4680 +4282 56729 0.5120 +4282 57007 0.7180 +4282 84666 0.5090 +4282 93974 0.4130 +4282 96459 0.4910 +4282 137362 0.9070 +4282 201163 0.4300 +4282 259307 0.9020 +4282 345651 0.4050 +4283 4312 0.6110 +4283 4314 0.6320 +4283 4318 0.5730 +4283 4321 0.5060 +4283 4360 0.5640 +4283 4481 0.4350 +4283 4599 0.6330 +4283 4600 0.4890 +4283 4684 0.4270 +4283 4790 0.5100 +4283 4803 0.5450 +4283 4818 0.4760 +4283 4843 0.4250 +4283 4938 0.4550 +4283 4939 0.4570 +4283 5133 0.6030 +4283 5175 0.4930 +4283 5196 0.9990 +4283 5197 0.9720 +4283 5320 0.4430 +4283 5473 0.9970 +4283 5551 0.6390 +4283 5601 0.4330 +4283 5696 0.4080 +4283 5698 0.5360 +4283 5699 0.4120 +4283 5743 0.6520 +4283 5788 0.6460 +4283 6283 0.5350 +4283 6288 0.5680 +4283 6289 0.5670 +4283 6320 0.5200 +4283 6346 0.8720 +4283 6347 0.9990 +4283 6348 0.8840 +4283 6351 0.9590 +4283 6354 0.8530 +4283 6355 0.8460 +4283 6356 0.9990 +4283 6357 0.9990 +4283 6358 0.5310 +4283 6359 0.5980 +4283 6360 0.7560 +4283 6361 0.7910 +4283 6362 0.7760 +4283 6363 0.9620 +4283 6364 0.8660 +4283 6366 0.9990 +4283 6367 0.8430 +4283 6368 0.6180 +4283 6369 0.7080 +4283 6370 0.8050 +4283 6372 0.6600 +4283 6373 0.9990 +4283 6374 0.6930 +4283 6375 0.9970 +4283 6376 0.9260 +4283 6387 0.9990 +4283 6401 0.5250 +4283 6402 0.5560 +4283 6403 0.4410 +4283 6440 0.6430 +4283 6614 0.4890 +4283 6714 0.6430 +4283 6772 0.8820 +4283 6773 0.4820 +4283 6774 0.5650 +4283 6775 0.6130 +4283 6778 0.4100 +4283 6846 0.4520 +4283 7040 0.5110 +4283 7076 0.4780 +4283 7096 0.4330 +4283 7097 0.7390 +4283 7098 0.6180 +4283 7099 0.6190 +4283 7124 0.8150 +4283 7132 0.6410 +4283 7133 0.6530 +4283 7293 0.4590 +4283 7305 0.4860 +4283 7412 0.6750 +4283 7850 0.6030 +4283 7852 0.9940 +4283 8320 0.4070 +4283 8638 0.4880 +4283 8651 0.4930 +4283 8740 0.4050 +4283 8743 0.5230 +4283 8823 0.4060 +4283 9021 0.4260 +4283 9034 0.9520 +4283 9235 0.5530 +4283 9308 0.4800 +4283 9332 0.7810 +4283 9547 0.9970 +4283 9560 0.5780 +4283 9636 0.6710 +4283 10068 0.4900 +4283 10225 0.5130 +4283 10344 0.9970 +4283 10379 0.5970 +4283 10537 0.8780 +4283 10561 0.4490 +4283 10563 0.9960 +4283 10578 0.4650 +4283 10663 0.9840 +4283 10673 0.5600 +4283 10803 0.7970 +4283 10850 0.8860 +4283 11274 0.4280 +4283 22914 0.5240 +4283 23586 0.5120 +4283 27006 0.4110 +4283 27299 0.4910 +4283 29126 0.7610 +4283 29851 0.5570 +4283 30009 0.6090 +4283 30835 0.4340 +4283 50615 0.5140 +4283 50616 0.5970 +4283 50943 0.6480 +4283 51284 0.5700 +4283 51311 0.6740 +4283 51554 0.6790 +4283 54106 0.5070 +4283 54210 0.4260 +4283 55509 0.5430 +4283 56477 0.9970 +4283 56833 0.4780 +4283 57007 0.8070 +4283 57509 0.4440 +4283 57823 0.4060 +4283 58191 0.9070 +4283 59272 0.4230 +4283 60675 0.4320 +4283 63940 0.4160 +4283 64108 0.4350 +4283 64127 0.4060 +4283 64135 0.5140 +4283 64581 0.4510 +4283 65258 0.4500 +4283 80380 0.6120 +4283 80381 0.4820 +4283 80781 0.4930 +4283 84166 0.4010 +4283 84868 0.5990 +4283 84870 0.4120 +4283 90865 0.5860 +4283 91543 0.4820 +4283 112744 0.5440 +4283 115004 0.4120 +4283 115361 0.6740 +4283 115362 0.7790 +4283 116071 0.4700 +4283 169355 0.4890 +4283 201633 0.5440 +4283 282618 0.4530 +4283 284340 0.9960 +4283 414062 0.6450 +4283 441168 0.4680 +4284 4478 0.4860 +4284 5309 0.5060 +4284 5700 0.4500 +4284 5701 0.4500 +4284 5705 0.4500 +4284 5832 0.4150 +4284 7111 0.4160 +4284 8419 0.7850 +4284 10052 0.6910 +4284 10818 0.4200 +4284 11104 0.4600 +4284 23729 0.4500 +4284 29028 0.4500 +4284 51557 0.5060 +4284 51806 0.9870 +4284 54454 0.4500 +4284 55277 0.4500 +4284 57151 0.4030 +4284 57716 0.4560 +4284 59341 0.5220 +4284 83473 0.4780 +4284 84056 0.4600 +4284 89872 0.9660 +4284 91860 0.9840 +4284 128866 0.5680 +4284 163688 0.9840 +4284 256356 0.4500 +4284 282679 0.9400 +4284 283377 0.4710 +4284 283953 0.4460 +4284 445815 0.6260 +4284 653437 0.5220 +4284 728858 0.4130 +4285 4898 0.4410 +4285 5018 0.4910 +4285 5184 0.4500 +4285 5550 0.4030 +4285 6051 0.4210 +4285 6175 0.4040 +4285 6368 0.4880 +4285 6445 0.4060 +4285 6641 0.4220 +4285 6687 0.4530 +4285 7023 0.4970 +4285 7384 0.4580 +4285 7386 0.5380 +4285 8192 0.4550 +4285 8803 0.4730 +4285 9054 0.4070 +4285 9114 0.4230 +4285 9361 0.4500 +4285 9512 0.6640 +4285 9578 0.4020 +4285 9699 0.5880 +4285 10072 0.5300 +4285 10469 0.4700 +4285 10531 0.5160 +4285 10651 0.4450 +4285 10730 0.4400 +4285 10767 0.9200 +4285 10845 0.4720 +4285 10939 0.4370 +4285 10980 0.4400 +4285 23173 0.4210 +4285 23203 0.6860 +4285 26515 0.4830 +4285 26519 0.5000 +4285 26520 0.4680 +4285 26521 0.4190 +4285 29090 0.4120 +4285 51025 0.5280 +4285 51805 0.5200 +4285 53335 0.6120 +4285 54205 0.4010 +4285 54968 0.5310 +4285 55486 0.4440 +4285 55504 0.7130 +4285 56993 0.4180 +4285 57001 0.4710 +4285 63929 0.7400 +4285 79072 0.4020 +4285 79922 0.4040 +4285 83943 0.6500 +4285 91419 0.5400 +4285 92609 0.4060 +4285 115209 0.4970 +4285 131118 0.4800 +4285 135154 0.4090 +4285 196294 0.4860 +4285 282763 0.4860 +4285 285521 0.4950 +4285 387911 0.6040 +4285 390058 0.4540 +4286 4609 0.6590 +4286 4644 0.4600 +4286 4763 0.5230 +4286 4772 0.7040 +4286 4893 0.6640 +4286 4935 0.7130 +4286 4948 0.6310 +4286 5013 0.4350 +4286 5015 0.4870 +4286 5077 0.8810 +4286 5080 0.9110 +4286 5081 0.4650 +4286 5158 0.4730 +4286 5443 0.7990 +4286 5454 0.5490 +4286 5460 0.4010 +4286 5546 0.6440 +4286 5566 0.5140 +4286 5567 0.5150 +4286 5568 0.5140 +4286 5584 0.4220 +4286 5594 0.9320 +4286 5595 0.9400 +4286 5604 0.4380 +4286 5728 0.5460 +4286 5873 0.4990 +4286 5905 0.4180 +4286 5979 0.5140 +4286 6017 0.5390 +4286 6121 0.6030 +4286 6490 0.7730 +4286 6502 0.4620 +4286 6591 0.7360 +4286 6597 0.4170 +4286 6604 0.4510 +4286 6657 0.4980 +4286 6662 0.5990 +4286 6663 0.9400 +4286 6688 0.9680 +4286 6736 0.4540 +4286 6774 0.4010 +4286 6909 0.4200 +4286 6925 0.4520 +4286 7015 0.4570 +4286 7030 0.9960 +4286 7077 0.4480 +4286 7157 0.5880 +4286 7299 0.9810 +4286 7306 0.9360 +4286 7329 0.7430 +4286 7341 0.7310 +4286 7439 0.6070 +4286 7529 0.4060 +4286 7532 0.4100 +4286 7534 0.4840 +4286 7942 0.9760 +4286 8320 0.6660 +4286 8570 0.4830 +4286 8600 0.4800 +4286 8764 0.4480 +4286 8878 0.5140 +4286 8975 0.5040 +4286 9839 0.4560 +4286 10059 0.4920 +4286 10213 0.5750 +4286 10401 0.7770 +4286 10457 0.5280 +4286 10526 0.4340 +4286 10642 0.5080 +4286 10765 0.4060 +4286 22797 0.6930 +4286 27022 0.6540 +4286 51151 0.6090 +4286 51176 0.8720 +4286 51747 0.4790 +4286 54386 0.4520 +4286 54487 0.4070 +4286 57610 0.4160 +4286 79058 0.5270 +4286 79083 0.4550 +4286 81501 0.4830 +4286 126014 0.4020 +4286 146433 0.4040 +4286 201163 0.5140 +4286 202559 0.4790 +4286 283652 0.6160 +4286 338917 0.5240 +4286 400961 0.4510 +4287 4303 0.9740 +4287 4594 0.4250 +4287 4738 0.5730 +4287 5071 0.9960 +4287 5289 0.4160 +4287 5371 0.5790 +4287 5521 0.7140 +4287 5582 0.6260 +4287 5710 0.5210 +4287 5713 0.6880 +4287 5886 0.9990 +4287 5887 0.9970 +4287 6233 0.9780 +4287 6310 0.9120 +4287 6311 0.9930 +4287 6314 0.8950 +4287 6389 0.5210 +4287 6456 0.4050 +4287 6622 0.7220 +4287 6647 0.5300 +4287 6648 0.7950 +4287 6712 0.6830 +4287 6767 0.6700 +4287 6874 0.6870 +4287 6908 0.6360 +4287 7103 0.7120 +4287 7157 0.4990 +4287 7189 0.4330 +4287 7295 0.4930 +4287 7311 0.9420 +4287 7314 0.9580 +4287 7316 0.9960 +4287 7317 0.4980 +4287 7323 0.4370 +4287 7332 0.4130 +4287 7337 0.4100 +4287 7341 0.6480 +4287 7345 0.6590 +4287 7347 0.7090 +4287 7353 0.7500 +4287 7375 0.4130 +4287 7398 0.6570 +4287 7415 0.9990 +4287 7514 0.5340 +4287 7874 0.6300 +4287 8078 0.6750 +4287 8237 0.4330 +4287 8239 0.4260 +4287 8340 0.6020 +4287 8341 0.6020 +4287 8342 0.6020 +4287 8345 0.6030 +4287 8347 0.5970 +4287 8348 0.6030 +4287 8349 0.4760 +4287 8398 0.4990 +4287 8451 0.4240 +4287 8454 0.6340 +4287 8678 0.9890 +4287 8841 0.6320 +4287 8850 0.6390 +4287 8878 0.5250 +4287 8970 0.6030 +4287 8975 0.8100 +4287 9001 0.5550 +4287 9093 0.4930 +4287 9097 0.6970 +4287 9099 0.4680 +4287 9101 0.5560 +4287 9140 0.4960 +4287 9321 0.4590 +4287 9354 0.5400 +4287 9531 0.5200 +4287 9611 0.7360 +4287 9656 0.5690 +4287 9929 0.9540 +4287 9958 0.4820 +4287 10013 0.9210 +4287 10213 0.6050 +4287 10273 0.9830 +4287 10277 0.8420 +4287 10533 0.5120 +4287 10617 0.4430 +4287 10869 0.5340 +4287 10939 0.4170 +4287 10987 0.4990 +4287 11047 0.4290 +4287 11124 0.5230 +4287 11273 0.9170 +4287 11284 0.8560 +4287 11337 0.6690 +4287 23032 0.4060 +4287 23197 0.4590 +4287 23295 0.6700 +4287 23435 0.6140 +4287 25793 0.5620 +4287 25814 0.5900 +4287 25894 0.5550 +4287 26058 0.5260 +4287 27005 0.4940 +4287 27338 0.4700 +4287 27429 0.4300 +4287 29761 0.6670 +4287 29978 0.6960 +4287 29979 0.9430 +4287 51377 0.5380 +4287 51586 0.4260 +4287 54145 0.6040 +4287 54726 0.4230 +4287 55284 0.8360 +4287 55432 0.6990 +4287 55593 0.4680 +4287 55611 0.5490 +4287 55666 0.8040 +4287 57338 0.5940 +4287 57646 0.4030 +4287 57695 0.4210 +4287 64219 0.5880 +4287 64422 0.5810 +4287 65018 0.4630 +4287 78990 0.5000 +4287 80124 0.6540 +4287 80208 0.4180 +4287 80335 0.4200 +4287 80700 0.6200 +4287 83737 0.4550 +4287 83892 0.6490 +4287 84447 0.4260 +4287 84557 0.5540 +4287 84669 0.5030 +4287 84749 0.4840 +4287 84954 0.5540 +4287 85236 0.6000 +4287 92552 0.9030 +4287 114803 0.4390 +4287 120892 0.4340 +4287 121536 0.4350 +4287 126119 0.5580 +4287 127002 0.6490 +4287 128312 0.6040 +4287 158983 0.6040 +4287 166378 0.4090 +4287 203228 0.5130 +4287 220213 0.4300 +4287 221302 0.7040 +4287 222255 0.6320 +4287 255626 0.6010 +4287 286436 0.6040 +4287 373509 0.4050 +4287 373863 0.5380 +4287 377630 0.4240 +4287 387990 0.6370 +4287 440689 0.6040 +4287 440738 0.4030 +4287 441925 0.9130 +4287 114483833 0.6040 +4288 4605 0.7830 +4288 4609 0.5300 +4288 4691 0.4570 +4288 4751 0.8510 +4288 4763 0.4750 +4288 4818 0.5010 +4288 4869 0.5570 +4288 5133 0.4180 +4288 5136 0.5650 +4288 5159 0.4480 +4288 5175 0.5210 +4288 5241 0.6440 +4288 5347 0.8310 +4288 5426 0.6140 +4288 5427 0.4070 +4288 5499 0.6290 +4288 5501 0.9640 +4288 5728 0.4700 +4288 5788 0.5100 +4288 5888 0.4910 +4288 6240 0.5630 +4288 6241 0.9450 +4288 6491 0.4500 +4288 6790 0.8500 +4288 7083 0.6930 +4288 7124 0.4020 +4288 7153 0.9930 +4288 7157 0.6260 +4288 7182 0.5190 +4288 7272 0.8650 +4288 7298 0.6650 +4288 7431 0.4740 +4288 7468 0.4360 +4288 7837 0.4660 +4288 8318 0.7080 +4288 8350 0.4040 +4288 8438 0.5180 +4288 8549 0.4500 +4288 8568 0.7660 +4288 8900 0.4270 +4288 9055 0.8730 +4288 9088 0.4130 +4288 9133 0.8700 +4288 9134 0.4800 +4288 9156 0.6780 +4288 9212 0.8650 +4288 9232 0.6330 +4288 9319 0.5560 +4288 9493 0.8800 +4288 9582 0.4160 +4288 9585 0.5410 +4288 9700 0.8560 +4288 9735 0.5100 +4288 9768 0.7670 +4288 9787 0.9020 +4288 9824 0.8120 +4288 9833 0.9110 +4288 9837 0.4390 +4288 9918 0.4530 +4288 9928 0.8940 +4288 9968 0.4270 +4288 10024 0.7040 +4288 10036 0.4130 +4288 10051 0.6480 +4288 10112 0.9250 +4288 10146 0.6400 +4288 10293 0.4030 +4288 10399 0.4620 +4288 10403 0.7960 +4288 10460 0.5690 +4288 10592 0.6240 +4288 10615 0.8690 +4288 10635 0.5530 +4288 10721 0.4620 +4288 10733 0.6180 +4288 11004 0.8920 +4288 11065 0.9160 +4288 11113 0.4560 +4288 11130 0.8940 +4288 11185 0.4090 +4288 11335 0.4420 +4288 11339 0.4780 +4288 22974 0.9540 +4288 23076 0.5390 +4288 23397 0.7000 +4288 23476 0.5630 +4288 23512 0.4750 +4288 23560 0.5600 +4288 24137 0.8710 +4288 26271 0.4140 +4288 26586 0.7320 +4288 29028 0.5060 +4288 29089 0.4070 +4288 29127 0.7290 +4288 29128 0.7240 +4288 50484 0.5420 +4288 50943 0.4430 +4288 51203 0.9430 +4288 51237 0.4010 +4288 51512 0.8340 +4288 51514 0.6890 +4288 51659 0.4040 +4288 54443 0.7450 +4288 54478 0.5390 +4288 54821 0.4850 +4288 54892 0.5930 +4288 55143 0.9230 +4288 55165 0.9040 +4288 55215 0.5920 +4288 55247 0.5280 +4288 55355 0.9460 +4288 55388 0.6940 +4288 55635 0.7050 +4288 55723 0.5310 +4288 55789 0.5100 +4288 56992 0.9350 +4288 57082 0.5620 +4288 57405 0.5860 +4288 63922 0.4010 +4288 63967 0.7230 +4288 64151 0.9080 +4288 79019 0.6820 +4288 79682 0.5070 +4288 79733 0.7820 +4288 79801 0.7430 +4288 79968 0.4440 +4288 81610 0.5710 +4288 81620 0.6700 +4288 81624 0.5190 +4288 81930 0.6910 +4288 83461 0.7550 +4288 83540 0.7590 +4288 83879 0.4890 +4288 83903 0.4180 +4288 84033 0.4380 +4288 84365 0.9960 +4288 84823 0.5590 +4288 85865 0.8400 +4288 89839 0.5560 +4288 90378 0.4500 +4288 90381 0.7330 +4288 94025 0.5130 +4288 113130 0.6350 +4288 116028 0.4400 +4288 124602 0.4040 +4288 128239 0.6280 +4288 144455 0.5250 +4288 146909 0.7910 +4288 150468 0.5940 +4288 151648 0.6100 +4288 157313 0.5980 +4288 157570 0.4160 +4288 166979 0.6140 +4288 220134 0.5560 +4288 221150 0.5870 +4288 259266 0.9620 +4289 5048 0.6830 +4289 5049 0.5000 +4289 5733 0.5370 +4289 6423 0.7120 +4289 6660 0.4140 +4289 6907 0.7330 +4289 6949 0.7620 +4289 6997 0.4200 +4289 7328 0.5040 +4289 8239 0.4370 +4289 8481 0.7810 +4289 8801 0.6720 +4289 9221 0.7660 +4289 9320 0.5340 +4289 9736 0.7900 +4289 9877 0.4470 +4289 9931 0.5510 +4289 10048 0.9980 +4289 10296 0.9120 +4289 10528 0.5910 +4289 10565 0.6340 +4289 11231 0.4190 +4289 22878 0.4410 +4289 22930 0.4550 +4289 22974 0.4130 +4289 23008 0.5220 +4289 23046 0.4190 +4289 23304 0.4380 +4289 23369 0.4790 +4289 25852 0.9260 +4289 26130 0.4710 +4289 26958 0.4860 +4289 26959 0.4440 +4289 27332 0.4380 +4289 51646 0.7690 +4289 54465 0.4110 +4289 54737 0.7650 +4289 54816 0.4670 +4289 54820 0.4360 +4289 54994 0.9950 +4289 55031 0.4470 +4289 55630 0.4170 +4289 55914 0.4360 +4289 57532 0.4630 +4289 57610 0.9490 +4289 64777 0.7220 +4289 64795 0.9900 +4289 79018 0.9150 +4289 79718 0.4260 +4289 80232 0.9610 +4289 84255 0.4600 +4289 114960 0.5320 +4289 116151 0.4150 +4289 116225 0.6740 +4289 133482 0.4420 +4289 134829 0.4390 +4289 144321 0.5960 +4289 158358 0.4700 +4289 167691 0.4390 +4289 197131 0.5310 +4289 285527 0.5300 +4289 375056 0.4910 +4289 401720 0.4010 +4289 100129239 0.4220 +4292 4350 0.5250 +4292 4361 0.8230 +4292 4436 0.9990 +4292 4437 0.9990 +4292 4438 0.9860 +4292 4439 0.9710 +4292 4524 0.4080 +4292 4595 0.9200 +4292 4609 0.6550 +4292 4656 0.5290 +4292 4683 0.8910 +4292 4762 0.6590 +4292 4763 0.7640 +4292 4771 0.4120 +4292 4851 0.4610 +4292 4869 0.4690 +4292 4893 0.6270 +4292 4913 0.7790 +4292 4968 0.6810 +4292 5111 0.8930 +4292 5133 0.4710 +4292 5156 0.4770 +4292 5241 0.4180 +4292 5290 0.7890 +4292 5378 0.9990 +4292 5395 0.9990 +4292 5424 0.9440 +4292 5425 0.5440 +4292 5426 0.8790 +4292 5428 0.5010 +4292 5429 0.6470 +4292 5518 0.4510 +4292 5558 0.4450 +4292 5591 0.8630 +4292 5644 0.5070 +4292 5682 0.4280 +4292 5728 0.8300 +4292 5781 0.4430 +4292 5832 0.4590 +4292 5883 0.6190 +4292 5884 0.5100 +4292 5885 0.4750 +4292 5886 0.4530 +4292 5887 0.7450 +4292 5888 0.8930 +4292 5889 0.8220 +4292 5890 0.6430 +4292 5892 0.8590 +4292 5893 0.6930 +4292 5915 0.5810 +4292 5932 0.5490 +4292 5965 0.5440 +4292 5979 0.5820 +4292 5980 0.4850 +4292 5981 0.7030 +4292 5982 0.8570 +4292 5983 0.6270 +4292 5984 0.8900 +4292 5985 0.6350 +4292 6091 0.4150 +4292 6098 0.4070 +4292 6117 0.6840 +4292 6118 0.5920 +4292 6119 0.6340 +4292 6422 0.4460 +4292 6426 0.4610 +4292 6596 0.5420 +4292 6597 0.4700 +4292 6598 0.5950 +4292 6709 0.4390 +4292 6794 0.7300 +4292 6847 0.5350 +4292 6996 0.4460 +4292 7015 0.4630 +4292 7048 0.7020 +4292 7078 0.5500 +4292 7114 0.5200 +4292 7153 0.4640 +4292 7155 0.4370 +4292 7156 0.7780 +4292 7157 0.9650 +4292 7158 0.5620 +4292 7161 0.4340 +4292 7298 0.6450 +4292 7374 0.4580 +4292 7486 0.8350 +4292 7490 0.4090 +4292 7507 0.8380 +4292 7508 0.6690 +4292 7515 0.7730 +4292 7516 0.6090 +4292 7517 0.7050 +4292 7518 0.7180 +4292 7520 0.7610 +4292 7869 0.4470 +4292 7905 0.7280 +4292 7980 0.4280 +4292 8000 0.4140 +4292 8243 0.6320 +4292 8289 0.6530 +4292 8290 0.6950 +4292 8314 0.4670 +4292 8318 0.4950 +4292 8340 0.5090 +4292 8341 0.5110 +4292 8342 0.5110 +4292 8345 0.5110 +4292 8347 0.5160 +4292 8348 0.5220 +4292 8349 0.6020 +4292 8356 0.4380 +4292 8361 0.6210 +4292 8438 0.4470 +4292 8539 0.4140 +4292 8651 0.5700 +4292 8772 0.4550 +4292 8913 0.6730 +4292 8930 0.9660 +4292 8970 0.5090 +4292 9126 0.4790 +4292 9156 0.9990 +4292 9400 0.4690 +4292 9401 0.8130 +4292 9656 0.4150 +4292 9852 0.5350 +4292 9877 0.6380 +4292 9985 0.5290 +4292 10013 0.6070 +4292 10038 0.6180 +4292 10111 0.5550 +4292 10481 0.4370 +4292 10535 0.5230 +4292 10641 0.4070 +4292 10801 0.4500 +4292 10973 0.7340 +4292 11073 0.4090 +4292 11144 0.7530 +4292 11186 0.7210 +4292 11197 0.4430 +4292 11200 0.8340 +4292 22888 0.6160 +4292 22909 0.9970 +4292 23028 0.6230 +4292 23137 0.4900 +4292 23186 0.5700 +4292 23583 0.4210 +4292 23626 0.7710 +4292 26585 0.4330 +4292 27030 0.9990 +4292 27301 0.4960 +4292 29126 0.6240 +4292 50511 0.6430 +4292 51008 0.5560 +4292 51317 0.5750 +4292 51455 0.6040 +4292 51534 0.4210 +4292 51750 0.4150 +4292 51755 0.4310 +4292 54145 0.5100 +4292 54474 0.5090 +4292 54841 0.4060 +4292 54894 0.5070 +4292 55086 0.6750 +4292 55120 0.4200 +4292 55157 0.4100 +4292 55193 0.4250 +4292 55215 0.7890 +4292 55247 0.4240 +4292 55294 0.5750 +4292 55743 0.5460 +4292 56159 0.5110 +4292 56916 0.4800 +4292 57509 0.4400 +4292 57697 0.7050 +4292 64210 0.4140 +4292 64421 0.6170 +4292 79008 0.4020 +4292 79577 0.4410 +4292 79621 0.4050 +4292 79677 0.4420 +4292 79728 0.8920 +4292 79840 0.6560 +4292 80010 0.5870 +4292 80198 0.6880 +4292 83932 0.4200 +4292 83990 0.9990 +4292 84057 0.4790 +4292 84072 0.4370 +4292 84142 0.4870 +4292 84164 0.5500 +4292 84464 0.4900 +4292 84515 0.7290 +4292 84893 0.6710 +4292 85236 0.5100 +4292 91419 0.5440 +4292 91442 0.4510 +4292 122786 0.6610 +4292 125150 0.5400 +4292 126074 0.5460 +4292 128312 0.5140 +4292 136541 0.5420 +4292 146956 0.5610 +4292 150280 0.4130 +4292 164045 0.8250 +4292 220082 0.7120 +4292 254394 0.9260 +4292 255626 0.5110 +4292 285498 0.4510 +4292 286257 0.5830 +4292 348654 0.5360 +4292 400566 0.4820 +4292 440093 0.4150 +4292 440686 0.4150 +4292 548593 0.5490 +4292 642636 0.4160 +4292 653604 0.4230 +4292 100533467 0.6080 +4292 105375355 0.5400 +4293 4609 0.4490 +4293 5599 0.5840 +4293 6416 0.4180 +4293 6722 0.5110 +4293 7581 0.4060 +4293 9685 0.4560 +4293 23413 0.6210 +4293 57591 0.4130 +4293 83787 0.5350 +4294 5594 0.4220 +4294 5599 0.5570 +4294 5601 0.4680 +4294 5609 0.9490 +4294 6416 0.5730 +4294 6514 0.4410 +4294 7531 0.4170 +4294 9479 0.8210 +4294 10256 0.6970 +4294 11127 0.8780 +4294 23542 0.9320 +4294 57576 0.5600 +4294 58509 0.4780 +4294 64837 0.6390 +4294 84451 0.5800 +4294 89953 0.5080 +4294 115704 0.7800 +4294 147700 0.4850 +4295 4828 0.6620 +4295 4829 0.5880 +4295 4852 0.5950 +4295 4878 0.4340 +4295 4922 0.9240 +4295 4923 0.7580 +4295 5020 0.5430 +4295 5173 0.4270 +4295 5330 0.4990 +4295 5331 0.4990 +4295 5367 0.5130 +4295 5443 0.4340 +4295 5539 0.8690 +4295 5697 0.7410 +4295 6343 0.8400 +4295 6750 0.8310 +4295 6863 0.8240 +4295 7200 0.5630 +4295 7201 0.5490 +4295 7204 0.5160 +4295 7280 0.5830 +4295 7432 0.8100 +4295 7857 0.4460 +4295 8620 0.6830 +4295 8997 0.5160 +4295 9002 0.4990 +4295 10316 0.6830 +4295 10800 0.5000 +4295 10874 0.7850 +4295 10887 0.5340 +4295 10911 0.4570 +4295 23236 0.4990 +4295 23620 0.6100 +4295 27019 0.4970 +4295 27344 0.4320 +4295 51083 0.5340 +4295 51314 0.4220 +4295 51738 0.8980 +4295 55172 0.4950 +4295 56923 0.6410 +4295 57105 0.5000 +4295 60675 0.4120 +4295 64446 0.4330 +4295 84432 0.4110 +4295 84539 0.5110 +4295 84634 0.5000 +4295 115557 0.4990 +4295 123872 0.4290 +4295 128674 0.5290 +4295 129521 0.5130 +4295 203068 0.5490 +4295 221421 0.4930 +4295 345895 0.4930 +4295 347148 0.6570 +4295 387129 0.5200 +4295 594857 0.5010 +4295 619373 0.5970 +4296 4771 0.4280 +4296 4893 0.5290 +4296 5058 0.4660 +4296 5062 0.4660 +4296 5331 0.7730 +4296 5393 0.4090 +4296 5595 0.5340 +4296 5599 0.6700 +4296 5605 0.5730 +4296 5609 0.9850 +4296 5834 0.4340 +4296 5836 0.4230 +4296 5837 0.7960 +4296 5871 0.4590 +4296 5879 0.7070 +4296 5894 0.4570 +4296 5970 0.7520 +4296 5977 0.6910 +4296 6094 0.7670 +4296 6416 0.8290 +4296 6494 0.4830 +4296 6714 0.5140 +4296 7180 0.4980 +4296 7186 0.4300 +4296 7188 0.5280 +4296 7189 0.7960 +4296 7356 0.7630 +4296 7529 0.4880 +4296 7534 0.4120 +4296 7536 0.7680 +4296 8061 0.8150 +4296 8826 0.4270 +4296 8844 0.4470 +4296 8976 0.4470 +4296 9479 0.9920 +4296 9830 0.4200 +4296 10256 0.4940 +4296 10788 0.4520 +4296 10963 0.4730 +4296 11127 0.6000 +4296 11140 0.6900 +4296 11184 0.9610 +4296 23162 0.9660 +4296 23542 0.9850 +4296 23625 0.5530 +4296 25771 0.4360 +4296 56996 0.4830 +4296 57140 0.4240 +4296 57630 0.7310 +4296 64837 0.4030 +4296 79026 0.7840 +4296 81624 0.4180 +4296 91056 0.4970 +4296 115557 0.6020 +4296 121227 0.4020 +4296 171177 0.5640 +4296 399909 0.4270 +4297 4298 0.9620 +4297 4299 0.9900 +4297 4300 0.9820 +4297 4301 0.8650 +4297 4302 0.7910 +4297 4311 0.4180 +4297 4343 0.4300 +4297 4534 0.6280 +4297 4602 0.9550 +4297 4609 0.6480 +4297 4613 0.5090 +4297 4629 0.5500 +4297 4763 0.4840 +4297 4851 0.4620 +4297 4869 0.6580 +4297 4893 0.5860 +4297 4928 0.6360 +4297 5079 0.6610 +4297 5081 0.5270 +4297 5087 0.7750 +4297 5351 0.6540 +4297 5352 0.6640 +4297 5413 0.5400 +4297 5499 0.4820 +4297 5591 0.4960 +4297 5728 0.5380 +4297 5781 0.4660 +4297 5885 0.4280 +4297 5914 0.5750 +4297 5927 0.6920 +4297 5928 0.4200 +4297 5929 0.9990 +4297 5931 0.4170 +4297 6045 0.9430 +4297 6046 0.4740 +4297 6233 0.8270 +4297 6305 0.7550 +4297 6418 0.7430 +4297 6427 0.4740 +4297 6502 0.5420 +4297 6595 0.4740 +4297 6597 0.4650 +4297 6598 0.9010 +4297 6601 0.5610 +4297 6657 0.4270 +4297 6667 0.4100 +4297 6688 0.6120 +4297 6829 0.4480 +4297 6872 0.9460 +4297 6874 0.9090 +4297 6878 0.9460 +4297 6879 0.9000 +4297 6880 0.9520 +4297 6886 0.6960 +4297 6929 0.5260 +4297 6936 0.5170 +4297 7015 0.5470 +4297 7057 0.4260 +4297 7153 0.4620 +4297 7155 0.4790 +4297 7157 0.7570 +4297 7182 0.4070 +4297 7291 0.4710 +4297 7307 0.4760 +4297 7311 0.8560 +4297 7314 0.8250 +4297 7316 0.8250 +4297 7403 0.8690 +4297 7404 0.4450 +4297 7490 0.5470 +4297 7799 0.4300 +4297 7862 0.6690 +4297 7913 0.6390 +4297 7994 0.8260 +4297 8019 0.4570 +4297 8021 0.5970 +4297 8028 0.8510 +4297 8085 0.9970 +4297 8178 0.8460 +4297 8233 0.4740 +4297 8242 0.6180 +4297 8243 0.4620 +4297 8284 0.5020 +4297 8289 0.5590 +4297 8290 0.9890 +4297 8294 0.8290 +4297 8295 0.4680 +4297 8329 0.9100 +4297 8330 0.9100 +4297 8331 0.5530 +4297 8332 0.9100 +4297 8334 0.9530 +4297 8335 0.9100 +4297 8336 0.9100 +4297 8337 0.6740 +4297 8338 0.6740 +4297 8340 0.6010 +4297 8341 0.5990 +4297 8342 0.6010 +4297 8345 0.6010 +4297 8347 0.6150 +4297 8348 0.6030 +4297 8349 0.7290 +4297 8350 0.9880 +4297 8351 0.9150 +4297 8352 0.9170 +4297 8353 0.9170 +4297 8354 0.9150 +4297 8355 0.9150 +4297 8356 0.9890 +4297 8357 0.9150 +4297 8358 0.9250 +4297 8359 0.8290 +4297 8360 0.8290 +4297 8361 0.9820 +4297 8362 0.8290 +4297 8363 0.8290 +4297 8364 0.8290 +4297 8366 0.8290 +4297 8367 0.8380 +4297 8368 0.8290 +4297 8370 0.8290 +4297 8607 0.9130 +4297 8726 0.5780 +4297 8833 0.4260 +4297 8850 0.6640 +4297 8898 0.4990 +4297 8968 0.9150 +4297 8969 0.9100 +4297 8970 0.9580 +4297 8985 0.6560 +4297 9070 0.9990 +4297 9126 0.4500 +4297 9400 0.4300 +4297 9401 0.4380 +4297 9575 0.6820 +4297 9611 0.4690 +4297 9646 0.4340 +4297 9656 0.4500 +4297 9739 0.9330 +4297 9757 0.9730 +4297 9759 0.5570 +4297 10120 0.4580 +4297 10121 0.4280 +4297 10152 0.4330 +4297 10320 0.6300 +4297 10363 0.4120 +4297 10445 0.9200 +4297 10450 0.9860 +4297 10664 0.4260 +4297 10735 0.5290 +4297 10765 0.6320 +4297 10847 0.4740 +4297 10856 0.9130 +4297 10962 0.8590 +4297 10978 0.4240 +4297 11083 0.4270 +4297 11091 0.9990 +4297 11143 0.4020 +4297 11168 0.9880 +4297 11335 0.5200 +4297 22976 0.5920 +4297 22992 0.4350 +4297 23013 0.4370 +4297 23028 0.5580 +4297 23049 0.4240 +4297 23054 0.6140 +4297 23067 0.8520 +4297 23112 0.4750 +4297 23133 0.8820 +4297 23135 0.6560 +4297 23157 0.5540 +4297 23269 0.9120 +4297 23309 0.5800 +4297 23365 0.4770 +4297 23389 0.4530 +4297 23411 0.4860 +4297 23440 0.4500 +4297 23476 0.8700 +4297 23512 0.5680 +4297 23522 0.4410 +4297 23644 0.4550 +4297 23645 0.6150 +4297 25836 0.5150 +4297 25942 0.7620 +4297 26040 0.5160 +4297 26108 0.5690 +4297 26121 0.9020 +4297 26137 0.4070 +4297 26168 0.9600 +4297 26523 0.4790 +4297 27043 0.9080 +4297 27125 0.9240 +4297 27327 0.5280 +4297 29072 0.6260 +4297 29102 0.5430 +4297 29123 0.5140 +4297 29128 0.4760 +4297 29915 0.8830 +4297 30827 0.7390 +4297 51111 0.4010 +4297 51230 0.9460 +4297 51676 0.4030 +4297 51742 0.4870 +4297 54145 0.6010 +4297 54464 0.4110 +4297 54545 0.5080 +4297 54554 0.9110 +4297 54623 0.6250 +4297 54790 0.6560 +4297 54881 0.9040 +4297 54904 0.5490 +4297 55011 0.4690 +4297 55170 0.6040 +4297 55187 0.4020 +4297 55193 0.4310 +4297 55209 0.4270 +4297 55252 0.5460 +4297 55294 0.6750 +4297 55617 0.8410 +4297 55766 0.5900 +4297 55870 0.6730 +4297 55904 0.7180 +4297 56252 0.4910 +4297 56979 0.5710 +4297 56980 0.4460 +4297 57082 0.5960 +4297 57332 0.5190 +4297 57492 0.5350 +4297 57591 0.6000 +4297 57634 0.4930 +4297 57649 0.4220 +4297 57680 0.9460 +4297 58508 0.9470 +4297 63035 0.4460 +4297 63976 0.4120 +4297 64324 0.4580 +4297 64754 0.5920 +4297 64783 0.6260 +4297 79577 0.4530 +4297 79813 0.4250 +4297 79823 0.7920 +4297 80312 0.6230 +4297 80335 0.6750 +4297 80854 0.6280 +4297 81887 0.9120 +4297 84148 0.9660 +4297 84181 0.4490 +4297 84193 0.5440 +4297 84295 0.8390 +4297 84444 0.8940 +4297 84661 0.9950 +4297 84662 0.4650 +4297 84678 0.5900 +4297 85236 0.9580 +4297 90780 0.5290 +4297 94239 0.5950 +4297 121504 0.8290 +4297 123169 0.4780 +4297 124944 0.9040 +4297 125476 0.9000 +4297 126961 0.9370 +4297 128312 0.6010 +4297 140460 0.4060 +4297 161882 0.5420 +4297 168400 0.4120 +4297 171017 0.6200 +4297 171023 0.6490 +4297 192669 0.5000 +4297 192670 0.4630 +4297 196528 0.4720 +4297 255626 0.6010 +4297 256646 0.4340 +4297 259282 0.4460 +4297 284058 0.9530 +4297 286530 0.5150 +4297 333932 0.9150 +4297 374569 0.6370 +4297 440093 0.9620 +4297 440686 0.9620 +4297 474382 0.5530 +4297 554313 0.8290 +4297 653604 0.9800 +4297 100288687 0.4820 +4297 100529209 0.5400 +4297 102723407 0.4510 +4298 4299 0.9990 +4298 4300 0.9990 +4298 4301 0.8750 +4298 4302 0.9740 +4298 4303 0.4160 +4298 4629 0.4830 +4298 4686 0.5210 +4298 4869 0.4180 +4298 4928 0.5950 +4298 5087 0.6900 +4298 5413 0.5300 +4298 5431 0.6980 +4298 5432 0.8130 +4298 5433 0.7050 +4298 5434 0.6930 +4298 5435 0.6550 +4298 5436 0.6370 +4298 5437 0.6310 +4298 5438 0.7020 +4298 5439 0.7550 +4298 5440 0.6480 +4298 5441 0.6310 +4298 5828 0.9000 +4298 5914 0.4960 +4298 5926 0.6150 +4298 5929 0.4130 +4298 5990 0.4220 +4298 5991 0.4900 +4298 6045 0.4610 +4298 6156 0.4700 +4298 6455 0.5990 +4298 6598 0.6860 +4298 6643 0.4120 +4298 6749 0.5840 +4298 6827 0.9300 +4298 6829 0.9360 +4298 6830 0.8280 +4298 6872 0.5750 +4298 6873 0.5560 +4298 6878 0.4430 +4298 6881 0.4850 +4298 6883 0.4120 +4298 6884 0.4840 +4298 6886 0.4340 +4298 6908 0.5530 +4298 6917 0.8500 +4298 6919 0.9280 +4298 6921 0.9040 +4298 6923 0.9030 +4298 6924 0.9070 +4298 6929 0.4960 +4298 6944 0.6820 +4298 7153 0.4850 +4298 7155 0.4930 +4298 7469 0.9010 +4298 7936 0.9320 +4298 7994 0.7410 +4298 8019 0.4070 +4298 8028 0.9860 +4298 8089 0.6770 +4298 8178 0.9990 +4298 8290 0.8620 +4298 8295 0.7620 +4298 8338 0.5000 +4298 8349 0.4850 +4298 8350 0.9320 +4298 8351 0.9130 +4298 8352 0.9140 +4298 8353 0.9130 +4298 8354 0.9140 +4298 8355 0.9150 +4298 8356 0.9820 +4298 8357 0.9130 +4298 8358 0.9130 +4298 8361 0.6370 +4298 8458 0.7290 +4298 8464 0.4560 +4298 8473 0.5400 +4298 8522 0.6380 +4298 8607 0.7470 +4298 8621 0.5970 +4298 8812 0.6620 +4298 8833 0.4500 +4298 8850 0.4800 +4298 8968 0.9130 +4298 9150 0.8320 +4298 9441 0.6590 +4298 9646 0.9240 +4298 9739 0.4410 +4298 10445 0.5590 +4298 10474 0.4260 +4298 10499 0.4240 +4298 10524 0.7530 +4298 10614 0.5150 +4298 10629 0.4200 +4298 10856 0.6810 +4298 10902 0.5820 +4298 10933 0.6520 +4298 10943 0.6580 +4298 10962 0.5750 +4298 10978 0.4910 +4298 11091 0.8990 +4298 11168 0.4820 +4298 11198 0.5560 +4298 22916 0.5010 +4298 22936 0.9990 +4298 23048 0.5570 +4298 23067 0.4030 +4298 23157 0.6660 +4298 23168 0.9290 +4298 23379 0.9060 +4298 23411 0.4310 +4298 23476 0.6950 +4298 25920 0.9320 +4298 26122 0.7090 +4298 26610 0.9000 +4298 26747 0.7280 +4298 27097 0.4150 +4298 27125 0.9990 +4298 27443 0.4060 +4298 51105 0.5500 +4298 51224 0.5710 +4298 51230 0.5970 +4298 51412 0.6990 +4298 51497 0.9030 +4298 51574 0.6740 +4298 51742 0.6160 +4298 51755 0.5940 +4298 54556 0.6500 +4298 54623 0.9530 +4298 54799 0.5540 +4298 54880 0.8670 +4298 54934 0.5750 +4298 55167 0.5430 +4298 55250 0.7410 +4298 55257 0.7290 +4298 55617 0.6430 +4298 55677 0.8110 +4298 55683 0.5440 +4298 55689 0.6870 +4298 55840 0.9300 +4298 55929 0.8440 +4298 56257 0.6880 +4298 57082 0.5010 +4298 57332 0.8190 +4298 57634 0.6720 +4298 64769 0.7410 +4298 65980 0.4300 +4298 79142 0.4030 +4298 79577 0.9460 +4298 79664 0.9080 +4298 80237 0.9970 +4298 80314 0.7280 +4298 80349 0.9100 +4298 84148 0.6890 +4298 84324 0.4240 +4298 84337 0.5520 +4298 84444 0.9950 +4298 84524 0.9050 +4298 84759 0.5620 +4298 85403 0.9900 +4298 85456 0.5000 +4298 123169 0.9260 +4298 126961 0.9130 +4298 129685 0.4840 +4298 138474 0.4680 +4298 151050 0.5440 +4298 171017 0.4610 +4298 246721 0.5220 +4298 284058 0.5680 +4298 333932 0.9130 +4298 339287 0.6040 +4298 345651 0.5900 +4298 387332 0.4220 +4298 440093 0.8110 +4298 440686 0.9800 +4298 548644 0.5220 +4298 653604 0.9800 +4298 100532731 0.8820 +4299 4300 0.9990 +4299 4301 0.8520 +4299 4302 0.8620 +4299 4303 0.4060 +4299 4311 0.4240 +4299 4609 0.5410 +4299 4629 0.5430 +4299 4869 0.5400 +4299 4928 0.5300 +4299 5079 0.4230 +4299 5087 0.8520 +4299 5305 0.4460 +4299 5413 0.5250 +4299 5828 0.9000 +4299 5914 0.5300 +4299 5928 0.4320 +4299 5929 0.5190 +4299 6455 0.4910 +4299 6477 0.6010 +4299 6478 0.5090 +4299 6749 0.6120 +4299 6827 0.9210 +4299 6829 0.9390 +4299 6830 0.5890 +4299 6886 0.4750 +4299 6919 0.9190 +4299 6921 0.9030 +4299 6923 0.9000 +4299 6924 0.9150 +4299 6929 0.6910 +4299 7015 0.4160 +4299 7153 0.5470 +4299 7155 0.5740 +4299 7403 0.4040 +4299 7469 0.9050 +4299 7936 0.9230 +4299 7994 0.4240 +4299 8021 0.4490 +4299 8028 0.9850 +4299 8178 0.9990 +4299 8290 0.6130 +4299 8356 0.4750 +4299 8458 0.7220 +4299 8522 0.5970 +4299 8532 0.9080 +4299 8621 0.6280 +4299 8812 0.6670 +4299 8833 0.4910 +4299 9070 0.5210 +4299 9441 0.5800 +4299 9646 0.9260 +4299 9757 0.5440 +4299 10006 0.4350 +4299 10243 0.4080 +4299 10320 0.6510 +4299 10498 0.4210 +4299 10614 0.8580 +4299 10923 0.6110 +4299 10962 0.6540 +4299 10978 0.4330 +4299 11168 0.4860 +4299 11198 0.5780 +4299 22806 0.4570 +4299 22936 0.9990 +4299 23048 0.4270 +4299 23157 0.6450 +4299 23168 0.9220 +4299 23365 0.4230 +4299 23379 0.9130 +4299 23476 0.7490 +4299 25920 0.9070 +4299 26610 0.9030 +4299 26747 0.7510 +4299 27125 0.9990 +4299 29072 0.4270 +4299 29102 0.4840 +4299 29950 0.4170 +4299 51224 0.4320 +4299 51497 0.9000 +4299 51574 0.8650 +4299 51755 0.6300 +4299 54205 0.4660 +4299 54623 0.9050 +4299 54880 0.5580 +4299 55209 0.4860 +4299 55250 0.7220 +4299 55617 0.4900 +4299 55840 0.9190 +4299 56257 0.7960 +4299 57082 0.4480 +4299 57492 0.4160 +4299 58508 0.4500 +4299 63976 0.4490 +4299 64324 0.5690 +4299 79577 0.9200 +4299 79664 0.9230 +4299 80237 0.9980 +4299 80349 0.9150 +4299 84324 0.4470 +4299 84337 0.5490 +4299 84444 0.9510 +4299 84524 0.9070 +4299 84548 0.5280 +4299 84661 0.4680 +4299 85403 0.9970 +4299 123169 0.9260 +4299 124790 0.6350 +4299 133482 0.4620 +4299 171017 0.4730 +4299 374569 0.4360 +4299 440093 0.4760 +4299 440686 0.4760 +4299 653604 0.4760 +4299 102723407 0.4370 +4300 4301 0.8600 +4300 4302 0.9800 +4300 4303 0.4270 +4300 4609 0.6210 +4300 4629 0.5970 +4300 4686 0.5330 +4300 4763 0.5190 +4300 4869 0.5730 +4300 4893 0.4480 +4300 4928 0.6350 +4300 5087 0.7300 +4300 5090 0.4190 +4300 5413 0.5220 +4300 5431 0.7040 +4300 5432 0.8030 +4300 5433 0.7050 +4300 5434 0.6900 +4300 5435 0.6620 +4300 5436 0.6370 +4300 5437 0.6310 +4300 5438 0.7020 +4300 5439 0.6750 +4300 5440 0.6480 +4300 5441 0.6310 +4300 5688 0.5770 +4300 5788 0.4590 +4300 5828 0.9000 +4300 5914 0.6510 +4300 5926 0.5640 +4300 5929 0.4680 +4300 6045 0.6270 +4300 6046 0.4500 +4300 6446 0.6620 +4300 6455 0.5310 +4300 6500 0.5800 +4300 6597 0.4100 +4300 6598 0.7370 +4300 6688 0.4120 +4300 6749 0.5750 +4300 6827 0.9270 +4300 6829 0.9300 +4300 6830 0.8310 +4300 6872 0.5940 +4300 6873 0.5420 +4300 6878 0.4240 +4300 6881 0.4790 +4300 6883 0.4460 +4300 6884 0.4730 +4300 6886 0.4400 +4300 6908 0.5530 +4300 6917 0.8450 +4300 6919 0.9230 +4300 6921 0.9010 +4300 6923 0.9020 +4300 6924 0.9070 +4300 6929 0.4730 +4300 6944 0.6890 +4300 7153 0.5390 +4300 7155 0.5660 +4300 7157 0.4470 +4300 7469 0.9000 +4300 7776 0.4740 +4300 7913 0.5320 +4300 7936 0.9190 +4300 7994 0.6570 +4300 8019 0.4680 +4300 8021 0.4730 +4300 8028 0.9960 +4300 8089 0.6740 +4300 8178 0.9990 +4300 8204 0.4080 +4300 8290 0.9910 +4300 8294 0.9110 +4300 8295 0.8180 +4300 8350 0.9540 +4300 8351 0.9150 +4300 8352 0.9170 +4300 8353 0.9180 +4300 8354 0.9150 +4300 8355 0.9150 +4300 8356 0.9910 +4300 8357 0.9150 +4300 8358 0.9130 +4300 8359 0.9110 +4300 8360 0.9110 +4300 8361 0.9560 +4300 8362 0.9110 +4300 8363 0.9110 +4300 8364 0.9110 +4300 8366 0.9110 +4300 8367 0.9110 +4300 8368 0.9110 +4300 8369 0.5870 +4300 8370 0.9110 +4300 8458 0.7290 +4300 8473 0.5650 +4300 8522 0.6260 +4300 8607 0.7470 +4300 8621 0.5880 +4300 8812 0.6740 +4300 8833 0.5140 +4300 8850 0.5170 +4300 8968 0.9150 +4300 9070 0.4070 +4300 9150 0.8320 +4300 9441 0.6070 +4300 9646 0.9210 +4300 9739 0.4240 +4300 10006 0.6130 +4300 10445 0.5550 +4300 10474 0.4320 +4300 10524 0.8450 +4300 10614 0.4480 +4300 10856 0.7150 +4300 10902 0.6030 +4300 10923 0.4350 +4300 10933 0.6630 +4300 10943 0.6490 +4300 10962 0.5690 +4300 10978 0.5410 +4300 11091 0.7540 +4300 11143 0.4120 +4300 11168 0.5300 +4300 11198 0.5770 +4300 22916 0.5010 +4300 22936 0.9990 +4300 23028 0.5310 +4300 23048 0.4500 +4300 23157 0.6490 +4300 23168 0.9290 +4300 23365 0.4580 +4300 23379 0.9070 +4300 23411 0.4890 +4300 23476 0.6420 +4300 23522 0.4360 +4300 25920 0.9060 +4300 26122 0.7130 +4300 26610 0.9000 +4300 26747 0.7280 +4300 27125 0.9990 +4300 27443 0.4640 +4300 29102 0.4500 +4300 51105 0.5500 +4300 51224 0.5430 +4300 51230 0.5890 +4300 51412 0.6940 +4300 51497 0.9000 +4300 51574 0.6400 +4300 51742 0.5590 +4300 51755 0.5950 +4300 54556 0.6550 +4300 54623 0.9280 +4300 54784 0.4160 +4300 54790 0.6780 +4300 54799 0.5670 +4300 54880 0.9940 +4300 54934 0.5730 +4300 55167 0.5460 +4300 55250 0.7410 +4300 55257 0.7270 +4300 55617 0.4300 +4300 55677 0.8140 +4300 55683 0.5400 +4300 55689 0.6890 +4300 55840 0.9200 +4300 55929 0.8500 +4300 56257 0.6400 +4300 57082 0.4780 +4300 57332 0.9690 +4300 57634 0.6570 +4300 57669 0.4380 +4300 64324 0.6400 +4300 64769 0.7420 +4300 79577 0.9460 +4300 79664 0.9110 +4300 79961 0.4100 +4300 80237 0.9970 +4300 80314 0.7260 +4300 80349 0.9120 +4300 84148 0.7020 +4300 84324 0.4540 +4300 84337 0.5490 +4300 84444 0.9980 +4300 84524 0.9050 +4300 84759 0.6140 +4300 85403 0.9910 +4300 112869 0.4320 +4300 121504 0.9110 +4300 123169 0.9240 +4300 126961 0.9130 +4300 129685 0.4840 +4300 138474 0.5100 +4300 151050 0.5450 +4300 171017 0.5160 +4300 171023 0.4470 +4300 171482 0.4520 +4300 221037 0.4020 +4300 284058 0.5890 +4300 333932 0.9130 +4300 339287 0.5590 +4300 345651 0.5900 +4300 387332 0.4220 +4300 440093 0.9910 +4300 440686 0.9910 +4300 554313 0.9110 +4300 653604 0.9910 +4300 100532731 0.6210 +4301 4302 0.7960 +4301 4356 0.5790 +4301 4629 0.4130 +4301 4893 0.9750 +4301 5071 0.6420 +4301 5216 0.7930 +4301 5217 0.4810 +4301 5413 0.4320 +4301 5590 0.4380 +4301 5788 0.6700 +4301 5817 0.7630 +4301 5818 0.9990 +4301 5819 0.9990 +4301 5877 0.5610 +4301 5880 0.5330 +4301 5898 0.5750 +4301 5900 0.8050 +4301 5906 0.9780 +4301 5908 0.9710 +4301 5909 0.6790 +4301 5911 0.6970 +4301 6237 0.9570 +4301 6259 0.5730 +4301 6402 0.5260 +4301 6455 0.5110 +4301 6494 0.9650 +4301 6504 0.4910 +4301 6687 0.7200 +4301 6693 0.4350 +4301 6714 0.6900 +4301 6840 0.4030 +4301 7074 0.5630 +4301 7082 0.9990 +4301 7122 0.5660 +4301 7408 0.4100 +4301 7414 0.8490 +4301 7416 0.7200 +4301 7417 0.5400 +4301 7419 0.5400 +4301 7430 0.5160 +4301 7533 0.4270 +4301 8028 0.8990 +4301 8178 0.8080 +4301 8239 0.7360 +4301 8470 0.4120 +4301 8502 0.4200 +4301 8573 0.4170 +4301 8639 0.6640 +4301 8833 0.4150 +4301 8997 0.5180 +4301 9076 0.4250 +4301 9223 0.5930 +4301 9411 0.5780 +4301 9414 0.9990 +4301 9463 0.4580 +4301 9610 0.7630 +4301 9693 0.6760 +4301 10006 0.4220 +4301 10076 0.5170 +4301 10086 0.5720 +4301 10105 0.7200 +4301 10174 0.5790 +4301 10225 0.4570 +4301 10411 0.6080 +4301 10452 0.5410 +4301 10580 0.9960 +4301 10666 0.5360 +4301 10763 0.4350 +4301 10962 0.5050 +4301 11069 0.6060 +4301 11345 0.4360 +4301 22800 0.9560 +4301 22808 0.9700 +4301 23157 0.5980 +4301 23365 0.4460 +4301 23476 0.4160 +4301 23513 0.4750 +4301 23705 0.4870 +4301 25945 0.9990 +4301 27134 0.9410 +4301 29119 0.9340 +4301 29899 0.4670 +4301 50848 0.9970 +4301 50943 0.4760 +4301 51176 0.4160 +4301 51248 0.8900 +4301 51474 0.5180 +4301 51678 0.5800 +4301 51735 0.8250 +4301 54932 0.4220 +4301 55617 0.5330 +4301 55914 0.5810 +4301 56288 0.6770 +4301 57082 0.4310 +4301 57369 0.7010 +4301 57530 0.9780 +4301 57863 0.6200 +4301 63971 0.4040 +4301 64398 0.5030 +4301 80312 0.4630 +4301 81607 0.9970 +4301 81609 0.5300 +4301 83447 0.7200 +4301 83593 0.4700 +4301 83700 0.5070 +4301 84134 0.5400 +4301 84444 0.7780 +4301 84445 0.4110 +4301 84952 0.5450 +4301 90952 0.5030 +4301 91624 0.4790 +4301 117159 0.5400 +4301 117178 0.9860 +4301 122786 0.5110 +4301 144100 0.9080 +4301 153562 0.8200 +4301 257397 0.5040 +4301 340348 0.7570 +4301 345456 0.6030 +4301 375189 0.6150 +4301 548313 0.4100 +4301 727837 0.4220 +4301 728378 0.5030 +4301 729330 0.4970 +4301 100506658 0.9730 +4302 4928 0.4020 +4302 5413 0.5390 +4302 6455 0.5160 +4302 6500 0.5340 +4302 7407 0.6310 +4302 7862 0.4330 +4302 8028 0.9820 +4302 8089 0.4420 +4302 8178 0.8310 +4302 8290 0.5620 +4302 8295 0.5260 +4302 8356 0.5560 +4302 8833 0.5530 +4302 9586 0.6480 +4302 9618 0.7160 +4302 10006 0.5740 +4302 10243 0.4490 +4302 10923 0.4260 +4302 10962 0.6210 +4302 10978 0.6690 +4302 11016 0.5180 +4302 11190 0.4120 +4302 23048 0.6220 +4302 23157 0.7450 +4302 23365 0.4740 +4302 27125 0.6550 +4302 51586 0.4190 +4302 57082 0.5860 +4302 80196 0.4370 +4302 84311 0.4210 +4302 84324 0.4950 +4302 84444 0.9710 +4302 284106 0.5410 +4302 440093 0.5630 +4302 440686 0.5610 +4302 653604 0.5610 +4303 4609 0.4090 +4303 4654 0.4730 +4303 4656 0.5300 +4303 4773 0.4540 +4303 4800 0.5470 +4303 4801 0.5300 +4303 4802 0.5320 +4303 5077 0.5880 +4303 5081 0.5920 +4303 5087 0.5930 +4303 5105 0.6260 +4303 5165 0.6280 +4303 5170 0.4100 +4303 5290 0.4330 +4303 5291 0.4780 +4303 5347 0.4800 +4303 5468 0.4070 +4303 5562 0.7270 +4303 5563 0.7160 +4303 5564 0.6750 +4303 5565 0.6790 +4303 5571 0.6620 +4303 5594 0.9220 +4303 5595 0.9340 +4303 5599 0.9380 +4303 5600 0.9250 +4303 5601 0.9240 +4303 5603 0.9180 +4303 5717 0.4710 +4303 5728 0.8190 +4303 5934 0.5590 +4303 6198 0.4780 +4303 6300 0.9200 +4303 6446 0.9520 +4303 6464 0.4190 +4303 6648 0.8710 +4303 6774 0.9360 +4303 6789 0.9140 +4303 6794 0.9370 +4303 6876 0.4540 +4303 7157 0.9950 +4303 7249 0.4300 +4303 7295 0.8130 +4303 7494 0.4540 +4303 7514 0.4460 +4303 7529 0.7220 +4303 7531 0.5320 +4303 7532 0.6930 +4303 7534 0.8690 +4303 7874 0.9780 +4303 8061 0.4460 +4303 8266 0.4810 +4303 8473 0.4120 +4303 8660 0.4100 +4303 8678 0.4020 +4303 10000 0.9530 +4303 10018 0.7830 +4303 10110 0.9230 +4303 10253 0.5040 +4303 10533 0.4390 +4303 10628 0.5230 +4303 10891 0.6570 +4303 10935 0.4650 +4303 10971 0.6040 +4303 22809 0.4260 +4303 22933 0.4320 +4303 23410 0.4550 +4303 23411 0.9320 +4303 23676 0.6550 +4303 23678 0.9110 +4303 23710 0.4040 +4303 26548 0.5980 +4303 51422 0.6750 +4303 51547 0.4010 +4303 51548 0.4550 +4303 51701 0.9340 +4303 53632 0.6640 +4303 57060 0.5220 +4303 57521 0.4280 +4303 65018 0.4400 +4303 80854 0.9140 +4303 92140 0.4090 +4303 92552 0.4980 +4303 93649 0.7750 +4303 114907 0.8380 +4303 143686 0.4050 +4303 200186 0.4930 +4303 221937 0.4470 +4303 100132074 0.7160 +4303 100288687 0.4530 +4306 4311 0.7630 +4306 4548 0.4470 +4306 4846 0.4360 +4306 4878 0.5280 +4306 4879 0.6920 +4306 5096 0.4560 +4306 5241 0.7080 +4306 5443 0.7270 +4306 5469 0.5540 +4306 5742 0.4270 +4306 5743 0.5020 +4306 5879 0.4490 +4306 5917 0.4450 +4306 5972 0.9440 +4306 6256 0.4120 +4306 6337 0.7440 +4306 6338 0.7990 +4306 6340 0.8580 +4306 6446 0.6850 +4306 6524 0.7150 +4306 6550 0.4060 +4306 6559 0.6730 +4306 6772 0.4390 +4306 6801 0.5530 +4306 7040 0.5880 +4306 7124 0.4110 +4306 7329 0.5740 +4306 7341 0.6310 +4306 7411 0.4300 +4306 7431 0.4760 +4306 7534 0.4020 +4306 8204 0.6360 +4306 8452 0.4540 +4306 8554 0.4470 +4306 8648 0.9730 +4306 8655 0.4020 +4306 8805 0.6510 +4306 9611 0.6370 +4306 9612 0.6740 +4306 10121 0.4090 +4306 10159 0.4300 +4306 10422 0.6580 +4306 10499 0.6620 +4306 10540 0.4200 +4306 10728 0.8640 +4306 10891 0.4330 +4306 10963 0.5550 +4306 11124 0.5190 +4306 23327 0.4350 +4306 29123 0.4990 +4306 51143 0.4030 +4306 54106 0.4160 +4306 55860 0.4090 +4306 57124 0.4030 +4306 59272 0.5900 +4306 65125 0.4530 +4306 65266 0.5600 +4306 79258 0.8410 +4306 138199 0.5040 +4306 140735 0.4020 +4306 219736 0.4690 +4306 104909134 0.6340 +4311 4318 0.4680 +4311 4345 0.6740 +4311 4353 0.6700 +4311 4586 0.5780 +4311 4588 0.6270 +4311 4603 0.4670 +4311 4609 0.6230 +4311 4680 0.4230 +4311 4684 0.8580 +4311 4878 0.8320 +4311 4879 0.6420 +4311 4880 0.5940 +4311 4881 0.6720 +4311 4882 0.4860 +4311 4883 0.6150 +4311 4907 0.5480 +4311 4922 0.5790 +4311 4985 0.4120 +4311 5020 0.5100 +4311 5076 0.5060 +4311 5079 0.8430 +4311 5159 0.4520 +4311 5175 0.5870 +4311 5241 0.6090 +4311 5304 0.6690 +4311 5547 0.9520 +4311 5550 0.6620 +4311 5663 0.7620 +4311 5664 0.6880 +4311 5728 0.6750 +4311 5788 0.7750 +4311 5962 0.9110 +4311 5972 0.7740 +4311 6382 0.7140 +4311 6402 0.4390 +4311 6490 0.4470 +4311 6524 0.5830 +4311 6664 0.5070 +4311 6693 0.7630 +4311 6750 0.6210 +4311 6855 0.6670 +4311 6863 0.7210 +4311 6869 0.6730 +4311 7030 0.5830 +4311 7037 0.5790 +4311 7038 0.4300 +4311 7064 0.6520 +4311 7070 0.6160 +4311 7072 0.4770 +4311 7080 0.4450 +4311 7099 0.5050 +4311 7124 0.4560 +4311 7157 0.5960 +4311 7251 0.4850 +4311 7430 0.4100 +4311 7490 0.5820 +4311 7512 0.9360 +4311 7837 0.4740 +4311 7849 0.7190 +4311 7852 0.4340 +4311 8074 0.4170 +4311 8842 0.4550 +4311 9368 0.5190 +4311 9476 0.4560 +4311 9520 0.4330 +4311 9622 0.4050 +4311 10004 0.4370 +4311 10072 0.4750 +4311 10159 0.4090 +4311 10206 0.4240 +4311 10563 0.5060 +4311 10699 0.4980 +4311 10972 0.4400 +4311 22925 0.4750 +4311 23385 0.6740 +4311 23600 0.7240 +4311 23621 0.7900 +4311 25797 0.5270 +4311 25992 0.4050 +4311 27087 0.5710 +4311 27202 0.5270 +4311 29126 0.4180 +4311 51107 0.6340 +4311 54209 0.4740 +4311 54474 0.7290 +4311 55107 0.4220 +4311 55851 0.6130 +4311 57126 0.4290 +4311 57486 0.4930 +4311 58503 0.6750 +4311 59272 0.9640 +4311 83417 0.4760 +4311 84684 0.4790 +4311 89780 0.4370 +4311 137902 0.4620 +4311 205428 0.5940 +4311 221981 0.4100 +4311 257144 0.4760 +4311 327657 0.7130 +4311 374569 0.5120 +4311 400566 0.7240 +4311 100133941 0.6380 +4311 100423062 0.4160 +4311 102723407 0.7730 +4312 4313 0.9300 +4312 4314 0.9850 +4312 4316 0.8780 +4312 4318 0.9740 +4312 4319 0.7890 +4312 4320 0.7720 +4312 4321 0.6250 +4312 4322 0.6740 +4312 4323 0.6230 +4312 4353 0.5930 +4312 4524 0.4210 +4312 4609 0.4340 +4312 4790 0.6590 +4312 4792 0.4320 +4312 4811 0.5830 +4312 4886 0.4140 +4312 5008 0.6280 +4312 5054 0.7730 +4312 5055 0.4590 +4312 5175 0.4200 +4312 5327 0.6610 +4312 5328 0.8520 +4312 5329 0.6790 +4312 5340 0.7060 +4312 5443 0.5100 +4312 5595 0.4870 +4312 5644 0.4820 +4312 5645 0.4960 +4312 5743 0.7570 +4312 5806 0.4370 +4312 6288 0.6120 +4312 6347 0.7740 +4312 6348 0.4500 +4312 6351 0.4020 +4312 6354 0.4290 +4312 6364 0.6780 +4312 6372 0.4290 +4312 6373 0.6630 +4312 6374 0.7290 +4312 6382 0.5660 +4312 6387 0.5340 +4312 6401 0.4690 +4312 6422 0.5200 +4312 6591 0.4490 +4312 6615 0.6400 +4312 6624 0.5490 +4312 6648 0.4290 +4312 6678 0.5000 +4312 6695 0.4920 +4312 6696 0.5340 +4312 6714 0.4060 +4312 6750 0.4480 +4312 6774 0.8690 +4312 6778 0.5930 +4312 6868 0.4500 +4312 6947 0.4390 +4312 7035 0.5460 +4312 7039 0.4180 +4312 7040 0.8120 +4312 7042 0.6300 +4312 7043 0.4170 +4312 7057 0.6110 +4312 7058 0.6020 +4312 7076 0.9990 +4312 7077 0.9360 +4312 7078 0.7490 +4312 7079 0.7840 +4312 7097 0.4150 +4312 7099 0.4460 +4312 7124 0.7240 +4312 7130 0.4110 +4312 7157 0.5150 +4312 7177 0.4490 +4312 7291 0.4150 +4312 7298 0.4200 +4312 7412 0.5670 +4312 7424 0.4980 +4312 7450 0.5510 +4312 7837 0.4830 +4312 7852 0.4690 +4312 7980 0.4450 +4312 8038 0.5730 +4312 8061 0.4590 +4312 8600 0.6990 +4312 8740 0.5090 +4312 8743 0.5140 +4312 8817 0.4220 +4312 8822 0.4020 +4312 8823 0.4030 +4312 8829 0.4980 +4312 9021 0.5440 +4312 9034 0.5450 +4312 9507 0.6790 +4312 9508 0.7700 +4312 9510 0.4610 +4312 9806 0.4260 +4312 10144 0.4510 +4312 10531 0.8010 +4312 10544 0.4900 +4312 10563 0.6370 +4312 10631 0.4980 +4312 11096 0.6460 +4312 23420 0.4240 +4312 23621 0.4360 +4312 25816 0.5640 +4312 26281 0.4030 +4312 27000 0.4280 +4312 50507 0.5400 +4312 50859 0.4850 +4312 51129 0.6890 +4312 51561 0.4750 +4312 53616 0.4050 +4312 54205 0.5300 +4312 55004 0.5490 +4312 59341 0.4710 +4312 63827 0.6070 +4312 81849 0.4570 +4312 112744 0.5500 +4312 137902 0.4660 +4312 284217 0.4940 +4313 4314 0.5270 +4313 4316 0.9610 +4313 4317 0.4630 +4313 4318 0.9180 +4313 4319 0.7210 +4313 4320 0.6440 +4313 4321 0.4920 +4313 4322 0.4900 +4313 4323 0.9970 +4313 4325 0.6350 +4313 4327 0.5850 +4313 4353 0.4740 +4313 4594 0.4120 +4313 4609 0.6340 +4313 4617 0.4260 +4313 4621 0.4110 +4313 4626 0.4140 +4313 4684 0.5390 +4313 4688 0.9170 +4313 4689 0.9120 +4313 4790 0.5970 +4313 4792 0.5070 +4313 4803 0.4220 +4313 4811 0.6080 +4313 4846 0.5310 +4313 4851 0.6780 +4313 4914 0.5990 +4313 4921 0.4560 +4313 5008 0.5740 +4313 5045 0.4480 +4313 5054 0.7550 +4313 5118 0.5880 +4313 5156 0.5120 +4313 5159 0.5710 +4313 5175 0.7500 +4313 5176 0.4240 +4313 5228 0.4590 +4313 5241 0.4430 +4313 5243 0.4200 +4313 5327 0.6410 +4313 5328 0.7550 +4313 5329 0.5780 +4313 5340 0.7720 +4313 5443 0.5290 +4313 5460 0.4260 +4313 5465 0.5310 +4313 5468 0.5110 +4313 5594 0.4080 +4313 5595 0.6730 +4313 5599 0.5120 +4313 5604 0.4500 +4313 5728 0.7450 +4313 5743 0.7640 +4313 5747 0.6220 +4313 5829 0.4740 +4313 5879 0.5600 +4313 5972 0.4880 +4313 6093 0.4320 +4313 6198 0.6280 +4313 6275 0.4980 +4313 6288 0.5300 +4313 6347 0.7040 +4313 6348 0.6160 +4313 6354 0.7170 +4313 6363 0.4370 +4313 6382 0.4190 +4313 6387 0.7620 +4313 6401 0.4920 +4313 6403 0.4470 +4313 6513 0.4260 +4313 6517 0.4010 +4313 6591 0.7190 +4313 6597 0.4220 +4313 6615 0.7310 +4313 6624 0.6220 +4313 6657 0.4430 +4313 6667 0.5700 +4313 6678 0.7010 +4313 6695 0.5610 +4313 6696 0.8430 +4313 6714 0.9720 +4313 6772 0.4120 +4313 6774 0.9160 +4313 6778 0.6310 +4313 6868 0.5470 +4313 6876 0.4270 +4313 6934 0.4470 +4313 7001 0.4830 +4313 7010 0.4820 +4313 7037 0.5220 +4313 7039 0.4470 +4313 7040 0.9620 +4313 7042 0.7210 +4313 7043 0.5160 +4313 7045 0.6210 +4313 7046 0.4840 +4313 7048 0.5020 +4313 7057 0.9850 +4313 7058 0.8900 +4313 7070 0.4610 +4313 7076 0.9970 +4313 7077 0.9990 +4313 7078 0.9960 +4313 7079 0.9630 +4313 7082 0.5360 +4313 7097 0.6390 +4313 7099 0.6790 +4313 7122 0.4800 +4313 7124 0.7290 +4313 7157 0.6690 +4313 7291 0.6420 +4313 7373 0.5300 +4313 7412 0.6400 +4313 7423 0.4110 +4313 7424 0.6270 +4313 7430 0.5650 +4313 7431 0.5460 +4313 7450 0.4830 +4313 7474 0.4980 +4313 7534 0.5070 +4313 7837 0.6920 +4313 7850 0.5120 +4313 7852 0.6100 +4313 7980 0.4130 +4313 8038 0.4690 +4313 8434 0.7830 +4313 8483 0.5260 +4313 8600 0.5110 +4313 8809 0.4120 +4313 8817 0.5310 +4313 8822 0.5100 +4313 8823 0.5180 +4313 8829 0.5840 +4313 8842 0.4800 +4313 8878 0.4590 +4313 8900 0.4180 +4313 8985 0.5070 +4313 9076 0.4110 +4313 9313 0.4460 +4313 9332 0.4560 +4313 9451 0.5730 +4313 9507 0.5440 +4313 9508 0.5670 +4313 9509 0.4610 +4313 9510 0.4490 +4313 9806 0.4710 +4313 9839 0.5280 +4313 10163 0.4150 +4313 10298 0.4790 +4313 10406 0.6300 +4313 10516 0.4470 +4313 10631 0.7870 +4313 10763 0.4020 +4313 10894 0.5030 +4313 11010 0.4720 +4313 11096 0.5200 +4313 11140 0.4830 +4313 11167 0.4300 +4313 11173 0.5300 +4313 22918 0.4410 +4313 23127 0.4750 +4313 23411 0.4490 +4313 23621 0.5510 +4313 23643 0.4010 +4313 26254 0.7670 +4313 26281 0.5170 +4313 27006 0.5110 +4313 29126 0.4710 +4313 50507 0.4660 +4313 50859 0.6940 +4313 51129 0.5900 +4313 51561 0.4520 +4313 54205 0.4940 +4313 54829 0.5060 +4313 63827 0.6340 +4313 64114 0.5480 +4313 80339 0.4020 +4313 80781 0.9600 +4313 81631 0.5120 +4313 81669 0.4020 +4313 85477 0.4640 +4313 92140 0.4010 +4313 112744 0.5230 +4313 115908 0.6660 +4313 117581 0.4330 +4313 137902 0.6470 +4313 222663 0.8300 +4313 255738 0.5910 +4313 257202 0.4240 +4313 284119 0.5030 +4313 493869 0.4890 +4313 653361 0.9280 +4313 727897 0.4040 +4313 100506658 0.5250 +4314 4316 0.7870 +4314 4317 0.4720 +4314 4318 0.9560 +4314 4319 0.9730 +4314 4321 0.7640 +4314 4322 0.5570 +4314 4323 0.5370 +4314 4327 0.5900 +4314 4353 0.6160 +4314 4609 0.6230 +4314 4790 0.6950 +4314 4792 0.5130 +4314 4803 0.4430 +4314 4811 0.8440 +4314 4843 0.5270 +4314 4886 0.4460 +4314 4908 0.4070 +4314 4924 0.6250 +4314 5008 0.6260 +4314 5010 0.4630 +4314 5045 0.4740 +4314 5054 0.8770 +4314 5055 0.4050 +4314 5159 0.4040 +4314 5175 0.4830 +4314 5327 0.8370 +4314 5328 0.7640 +4314 5329 0.6600 +4314 5340 0.8950 +4314 5443 0.5050 +4314 5468 0.4230 +4314 5578 0.8010 +4314 5594 0.5000 +4314 5595 0.6450 +4314 5644 0.4630 +4314 5657 0.4220 +4314 5743 0.6730 +4314 5788 0.4060 +4314 5802 0.4530 +4314 5806 0.4200 +4314 6288 0.6160 +4314 6347 0.8060 +4314 6348 0.5060 +4314 6351 0.4200 +4314 6356 0.4340 +4314 6357 0.5590 +4314 6364 0.6780 +4314 6372 0.6110 +4314 6374 0.6960 +4314 6385 0.6610 +4314 6387 0.5760 +4314 6401 0.4900 +4314 6591 0.4720 +4314 6615 0.6520 +4314 6662 0.5920 +4314 6678 0.5300 +4314 6696 0.9970 +4314 6772 0.4090 +4314 6774 0.8920 +4314 6778 0.6420 +4314 6868 0.5460 +4314 6942 0.6550 +4314 7040 0.7870 +4314 7042 0.4480 +4314 7043 0.4770 +4314 7057 0.5160 +4314 7058 0.4960 +4314 7076 0.9990 +4314 7077 0.9670 +4314 7078 0.9180 +4314 7079 0.8820 +4314 7097 0.4390 +4314 7099 0.5100 +4314 7122 0.4090 +4314 7124 0.8530 +4314 7130 0.4030 +4314 7132 0.4280 +4314 7157 0.5070 +4314 7166 0.4300 +4314 7291 0.4210 +4314 7412 0.5650 +4314 7424 0.4960 +4314 7474 0.4460 +4314 7533 0.4260 +4314 7707 0.5160 +4314 7837 0.5470 +4314 7852 0.4180 +4314 8038 0.4050 +4314 8200 0.4160 +4314 8600 0.6130 +4314 8817 0.4680 +4314 8822 0.4240 +4314 8823 0.4320 +4314 9313 0.4460 +4314 9332 0.4330 +4314 9358 0.5400 +4314 9370 0.4180 +4314 9507 0.8630 +4314 9508 0.8790 +4314 9509 0.4450 +4314 9510 0.4740 +4314 10216 0.4720 +4314 10563 0.6270 +4314 10631 0.5330 +4314 11096 0.8900 +4314 11117 0.4180 +4314 22943 0.4160 +4314 23213 0.4720 +4314 26281 0.4330 +4314 27006 0.4240 +4314 43847 0.5030 +4314 50616 0.5860 +4314 51176 0.5340 +4314 51561 0.5120 +4314 54829 0.4230 +4314 56729 0.4100 +4314 63827 0.6770 +4314 64102 0.4310 +4314 64131 0.4230 +4314 79932 0.4220 +4314 80781 0.7670 +4314 81029 0.8270 +4314 112744 0.6200 +4314 126014 0.4060 +4314 137902 0.5310 +4314 338872 0.4270 +4314 100506658 0.4010 +4316 4317 0.5980 +4316 4318 0.8830 +4316 4319 0.8500 +4316 4320 0.7500 +4316 4321 0.7370 +4316 4322 0.5640 +4316 4327 0.5160 +4316 4605 0.4200 +4316 4609 0.6390 +4316 4804 0.4540 +4316 4811 0.8520 +4316 4848 0.7780 +4316 4849 0.7960 +4316 4908 0.4220 +4316 4909 0.4610 +4316 4914 0.4870 +4316 4915 0.4580 +4316 5034 0.5630 +4316 5045 0.4350 +4316 5047 0.5160 +4316 5054 0.7870 +4316 5284 0.4450 +4316 5320 0.5370 +4316 5328 0.7460 +4316 5329 0.4530 +4316 5340 0.6870 +4316 5595 0.4490 +4316 5644 0.5200 +4316 5728 0.4050 +4316 5743 0.6710 +4316 6272 0.4220 +4316 6347 0.4900 +4316 6362 0.5270 +4316 6363 0.4390 +4316 6373 0.5320 +4316 6374 0.4360 +4316 6382 0.7510 +4316 6387 0.4680 +4316 6401 0.4750 +4316 6424 0.5690 +4316 6441 0.5540 +4316 6591 0.5050 +4316 6615 0.5950 +4316 6662 0.4050 +4316 6696 0.9410 +4316 6709 0.4260 +4316 6714 0.4410 +4316 6774 0.4940 +4316 6868 0.5770 +4316 6947 0.6320 +4316 7040 0.5710 +4316 7057 0.6030 +4316 7076 0.9250 +4316 7077 0.9510 +4316 7078 0.9220 +4316 7079 0.7180 +4316 7123 0.4250 +4316 7124 0.6050 +4316 7157 0.7740 +4316 7273 0.4610 +4316 7412 0.4360 +4316 7448 0.6390 +4316 7471 0.4740 +4316 7474 0.4480 +4316 7481 0.4020 +4316 7837 0.4690 +4316 7852 0.4490 +4316 8038 0.4050 +4316 8312 0.5270 +4316 8313 0.5370 +4316 8549 0.4310 +4316 9021 0.4780 +4316 9076 0.4170 +4316 9125 0.7770 +4316 9313 0.4940 +4316 9337 0.6730 +4316 9370 0.4930 +4316 9507 0.4350 +4316 9508 0.4060 +4316 9622 0.4010 +4316 9672 0.4440 +4316 9782 0.5490 +4316 10143 0.6730 +4316 10232 0.4040 +4316 10516 0.4970 +4316 10562 0.5030 +4316 10563 0.5550 +4316 10631 0.4090 +4316 11096 0.4070 +4316 22943 0.4500 +4316 23019 0.7840 +4316 25792 0.5570 +4316 25852 0.4250 +4316 25904 0.8030 +4316 26254 0.7730 +4316 29883 0.8350 +4316 51176 0.5040 +4316 51564 0.4120 +4316 54345 0.7000 +4316 54994 0.5660 +4316 55571 0.8160 +4316 57472 0.7880 +4316 57817 0.4130 +4316 63827 0.6410 +4316 64795 0.4180 +4316 79800 0.4240 +4316 80781 0.6410 +4316 85456 0.7890 +4316 89780 0.4500 +4316 130120 0.4050 +4316 137902 0.4690 +4316 171017 0.4220 +4316 246175 0.8000 +4316 284217 0.4260 +4316 728358 0.4730 +4316 100532731 0.5550 +4317 4318 0.6080 +4317 4319 0.4420 +4317 4321 0.4440 +4317 4353 0.8370 +4317 4680 0.4160 +4317 5054 0.4180 +4317 5241 0.4210 +4317 5265 0.6300 +4317 5340 0.6490 +4317 5550 0.4040 +4317 5644 0.4720 +4317 5657 0.6140 +4317 6037 0.4950 +4317 6279 0.4180 +4317 6283 0.4760 +4317 6347 0.5280 +4317 6348 0.5120 +4317 6374 0.4470 +4317 6402 0.5440 +4317 6624 0.4120 +4317 6678 0.4210 +4317 6696 0.4120 +4317 6868 0.4710 +4317 6947 0.8030 +4317 7035 0.4930 +4317 7040 0.4800 +4317 7076 0.8350 +4317 7077 0.8600 +4317 7078 0.7780 +4317 7079 0.8360 +4317 7124 0.6150 +4317 7850 0.4640 +4317 8600 0.4780 +4317 8822 0.5320 +4317 8993 0.7320 +4317 9507 0.5180 +4317 9508 0.5060 +4317 10321 0.6720 +4317 10562 0.8580 +4317 10893 0.5440 +4317 11096 0.4770 +4317 51129 0.4750 +4317 54210 0.4360 +4317 56729 0.7470 +4317 57126 0.6020 +4317 63827 0.6240 +4317 64386 0.5860 +4317 79148 0.5580 +4317 84666 0.5220 +4317 154664 0.4110 +4317 728358 0.4850 +4318 4319 0.6240 +4318 4321 0.6970 +4318 4322 0.5890 +4318 4323 0.8310 +4318 4324 0.4590 +4318 4352 0.4290 +4318 4353 0.9690 +4318 4481 0.4190 +4318 4493 0.5300 +4318 4586 0.4410 +4318 4594 0.4640 +4318 4609 0.7040 +4318 4684 0.6310 +4318 4688 0.9410 +4318 4689 0.9360 +4318 4758 0.5390 +4318 4772 0.6830 +4318 4778 0.4610 +4318 4780 0.5360 +4318 4790 0.8020 +4318 4791 0.4220 +4318 4792 0.7040 +4318 4803 0.5450 +4318 4811 0.6440 +4318 4828 0.4930 +4318 4829 0.4490 +4318 4842 0.5770 +4318 4843 0.6810 +4318 4846 0.7300 +4318 4851 0.6060 +4318 4853 0.4100 +4318 4854 0.4320 +4318 4869 0.4870 +4318 4878 0.4300 +4318 4907 0.4070 +4318 4914 0.4470 +4318 4973 0.5150 +4318 5004 0.5510 +4318 5005 0.4870 +4318 5008 0.6890 +4318 5010 0.4960 +4318 5045 0.6780 +4318 5054 0.8010 +4318 5055 0.4800 +4318 5133 0.4050 +4318 5154 0.6300 +4318 5155 0.5140 +4318 5156 0.4350 +4318 5159 0.6980 +4318 5175 0.7430 +4318 5176 0.4070 +4318 5196 0.4720 +4318 5228 0.7020 +4318 5241 0.5180 +4318 5243 0.4600 +4318 5265 0.5610 +4318 5268 0.4060 +4318 5327 0.8930 +4318 5328 0.8710 +4318 5329 0.7720 +4318 5330 0.4830 +4318 5340 0.8290 +4318 5351 0.5010 +4318 5443 0.5730 +4318 5460 0.4780 +4318 5465 0.4700 +4318 5467 0.5850 +4318 5468 0.7650 +4318 5473 0.4400 +4318 5478 0.4520 +4318 5551 0.4080 +4318 5552 0.6540 +4318 5566 0.4210 +4318 5567 0.4220 +4318 5568 0.4120 +4318 5578 0.4580 +4318 5594 0.6840 +4318 5595 0.7410 +4318 5599 0.7350 +4318 5600 0.4310 +4318 5603 0.4620 +4318 5604 0.5420 +4318 5644 0.5110 +4318 5645 0.5130 +4318 5657 0.7100 +4318 5728 0.7660 +4318 5734 0.4310 +4318 5742 0.4540 +4318 5743 0.8150 +4318 5744 0.4270 +4318 5747 0.6580 +4318 5788 0.7110 +4318 5806 0.4410 +4318 5829 0.5080 +4318 5858 0.4570 +4318 5880 0.4140 +4318 5894 0.4370 +4318 5915 0.5060 +4318 5966 0.4560 +4318 5970 0.6580 +4318 5971 0.4940 +4318 5972 0.5580 +4318 6036 0.5400 +4318 6093 0.4870 +4318 6198 0.4900 +4318 6275 0.6060 +4318 6279 0.4930 +4318 6280 0.5160 +4318 6283 0.7070 +4318 6285 0.4800 +4318 6288 0.7020 +4318 6289 0.5110 +4318 6300 0.4280 +4318 6347 0.8090 +4318 6348 0.6640 +4318 6351 0.6180 +4318 6354 0.4540 +4318 6355 0.4020 +4318 6356 0.4850 +4318 6361 0.4550 +4318 6362 0.5940 +4318 6363 0.4770 +4318 6364 0.5530 +4318 6366 0.6390 +4318 6367 0.6740 +4318 6372 0.6020 +4318 6373 0.5010 +4318 6374 0.8300 +4318 6376 0.6940 +4318 6382 0.9680 +4318 6387 0.8910 +4318 6391 0.4320 +4318 6401 0.6500 +4318 6402 0.4840 +4318 6403 0.6010 +4318 6404 0.4050 +4318 6469 0.4710 +4318 6513 0.4060 +4318 6517 0.4920 +4318 6590 0.4250 +4318 6591 0.7250 +4318 6597 0.4950 +4318 6615 0.7870 +4318 6647 0.4300 +4318 6648 0.4480 +4318 6657 0.4880 +4318 6662 0.4890 +4318 6667 0.4410 +4318 6678 0.6630 +4318 6688 0.4580 +4318 6696 0.9470 +4318 6709 0.4300 +4318 6714 0.9700 +4318 6750 0.5080 +4318 6772 0.7270 +4318 6774 0.8900 +4318 6776 0.4490 +4318 6777 0.4180 +4318 6778 0.7200 +4318 6850 0.4440 +4318 6863 0.4100 +4318 6868 0.6160 +4318 6876 0.6380 +4318 6947 0.4680 +4318 7001 0.5190 +4318 7010 0.5760 +4318 7015 0.4100 +4318 7039 0.5590 +4318 7040 0.9680 +4318 7042 0.7800 +4318 7043 0.5280 +4318 7045 0.7380 +4318 7046 0.5420 +4318 7048 0.5960 +4318 7056 0.4280 +4318 7057 0.9970 +4318 7058 0.9680 +4318 7066 0.4930 +4318 7070 0.6520 +4318 7076 0.9990 +4318 7077 0.9980 +4318 7078 0.9950 +4318 7079 0.8990 +4318 7082 0.6780 +4318 7096 0.6090 +4318 7097 0.8020 +4318 7098 0.4320 +4318 7099 0.9340 +4318 7122 0.7560 +4318 7124 0.9300 +4318 7130 0.4480 +4318 7132 0.5540 +4318 7133 0.6440 +4318 7157 0.8380 +4318 7171 0.4250 +4318 7185 0.4170 +4318 7189 0.5620 +4318 7291 0.6090 +4318 7295 0.4360 +4318 7299 0.5380 +4318 7305 0.6260 +4318 7316 0.4540 +4318 7373 0.8540 +4318 7402 0.4240 +4318 7412 0.7480 +4318 7414 0.4030 +4318 7423 0.4380 +4318 7424 0.6260 +4318 7430 0.5900 +4318 7431 0.7090 +4318 7448 0.7410 +4318 7450 0.8050 +4318 7471 0.4340 +4318 7474 0.5410 +4318 7498 0.5640 +4318 7837 0.7550 +4318 7850 0.5080 +4318 7852 0.8440 +4318 7941 0.4780 +4318 8019 0.4160 +4318 8038 0.6280 +4318 8061 0.4390 +4318 8290 0.6680 +4318 8356 0.6680 +4318 8434 0.7580 +4318 8483 0.4900 +4318 8492 0.4500 +4318 8600 0.7570 +4318 8678 0.4730 +4318 8692 0.4310 +4318 8743 0.4360 +4318 8751 0.4040 +4318 8754 0.4500 +4318 8817 0.5990 +4318 8822 0.5930 +4318 8823 0.6000 +4318 8829 0.5980 +4318 8837 0.4280 +4318 8842 0.5730 +4318 8900 0.4810 +4318 8976 0.4530 +4318 8985 0.4740 +4318 8988 0.4050 +4318 8993 0.6220 +4318 9021 0.5100 +4318 9034 0.6260 +4318 9076 0.4870 +4318 9313 0.5180 +4318 9314 0.4590 +4318 9332 0.6660 +4318 9370 0.5450 +4318 9429 0.4380 +4318 9451 0.5800 +4318 9507 0.6410 +4318 9508 0.6130 +4318 9510 0.4980 +4318 9518 0.4180 +4318 9536 0.4090 +4318 9775 0.4720 +4318 9817 0.4050 +4318 9839 0.5860 +4318 9935 0.5040 +4318 10018 0.4130 +4318 10135 0.4010 +4318 10288 0.4020 +4318 10406 0.4960 +4318 10516 0.4260 +4318 10563 0.7010 +4318 10575 0.4180 +4318 10631 0.6920 +4318 10673 0.5570 +4318 10763 0.4020 +4318 10855 0.4050 +4318 11096 0.6290 +4318 11173 0.5390 +4318 22943 0.6680 +4318 23376 0.5890 +4318 23411 0.5970 +4318 23643 0.5150 +4318 23705 0.4080 +4318 23765 0.4200 +4318 25816 0.4440 +4318 26281 0.6000 +4318 27006 0.5980 +4318 27035 0.5250 +4318 27299 0.4240 +4318 29126 0.5950 +4318 50507 0.5380 +4318 50616 0.4470 +4318 50943 0.5290 +4318 51050 0.4880 +4318 51129 0.4040 +4318 51176 0.4180 +4318 51284 0.6300 +4318 51297 0.4430 +4318 51310 0.4200 +4318 51311 0.6170 +4318 51554 0.4440 +4318 51561 0.5460 +4318 53905 0.4120 +4318 54106 0.4420 +4318 54205 0.7310 +4318 54209 0.4200 +4318 54210 0.4710 +4318 54567 0.4030 +4318 56729 0.6210 +4318 56950 0.4730 +4318 58191 0.4940 +4318 59272 0.4070 +4318 60675 0.4910 +4318 64114 0.5300 +4318 64386 0.4090 +4318 79258 0.4880 +4318 79923 0.4530 +4318 80279 0.5960 +4318 80781 0.9200 +4318 81501 0.7530 +4318 81669 0.4710 +4318 84666 0.6020 +4318 89780 0.4550 +4318 90865 0.4850 +4318 91522 0.4830 +4318 112744 0.6070 +4318 114548 0.4790 +4318 115908 0.5390 +4318 121340 0.4380 +4318 126014 0.4640 +4318 128506 0.6320 +4318 129807 0.4560 +4318 137902 0.7550 +4318 140885 0.4730 +4318 200576 0.4250 +4318 222663 0.8450 +4318 245972 0.4520 +4318 257202 0.5190 +4318 283212 0.4130 +4318 284119 0.4770 +4318 374403 0.4100 +4318 440093 0.6620 +4318 440686 0.6810 +4318 493869 0.5370 +4318 653361 0.9500 +4318 653604 0.6810 +4318 100133941 0.4560 +4318 100506658 0.7660 +4319 4320 0.7800 +4319 4322 0.6600 +4319 5054 0.6740 +4319 5265 0.5060 +4319 5328 0.6150 +4319 5340 0.6200 +4319 5644 0.4270 +4319 5725 0.4670 +4319 5743 0.4420 +4319 6347 0.4780 +4319 6363 0.4260 +4319 6374 0.4040 +4319 6626 0.8920 +4319 6947 0.5260 +4319 7040 0.4180 +4319 7072 0.4200 +4319 7076 0.9880 +4319 7077 0.9810 +4319 7078 0.6760 +4319 7079 0.6610 +4319 7124 0.4720 +4319 7157 0.5530 +4319 7273 0.4060 +4319 9094 0.4800 +4319 9508 0.4050 +4319 9543 0.5850 +4319 10642 0.4080 +4319 51564 0.8070 +4319 54847 0.4280 +4319 63827 0.6130 +4319 85437 0.4260 +4319 440387 0.4680 +4320 4322 0.4430 +4320 4585 0.4980 +4320 4605 0.4390 +4320 5045 0.8930 +4320 6386 0.8150 +4320 6422 0.4610 +4320 6752 0.4410 +4320 6764 0.7750 +4320 6925 0.5000 +4320 7058 0.5980 +4320 7076 0.6250 +4320 7077 0.6910 +4320 7078 0.6660 +4320 7079 0.4970 +4320 8038 0.5180 +4320 9939 0.4310 +4320 10631 0.4030 +4320 10946 0.4520 +4320 23450 0.4160 +4320 50507 0.4860 +4320 57758 0.5960 +4320 84181 0.4950 +4320 84525 0.4030 +4320 284217 0.4590 +4321 4322 0.5390 +4321 4327 0.5920 +4321 4353 0.5560 +4321 4360 0.4840 +4321 4811 0.5720 +4321 5054 0.4370 +4321 5055 0.4390 +4321 5265 0.4970 +4321 5328 0.5080 +4321 5340 0.7070 +4321 5657 0.4020 +4321 5743 0.5730 +4321 6347 0.7500 +4321 6348 0.4870 +4321 6354 0.4040 +4321 6357 0.4150 +4321 6361 0.4300 +4321 6362 0.5870 +4321 6364 0.4420 +4321 6367 0.4620 +4321 6373 0.4270 +4321 6374 0.4690 +4321 6678 0.4470 +4321 6696 0.5620 +4321 6819 0.4080 +4321 6868 0.4420 +4321 7035 0.5050 +4321 7040 0.7240 +4321 7076 0.9230 +4321 7077 0.7350 +4321 7078 0.6910 +4321 7079 0.6850 +4321 7124 0.7250 +4321 7412 0.4220 +4321 7448 0.4570 +4321 9313 0.4650 +4321 9332 0.4700 +4321 9507 0.4740 +4321 9508 0.6290 +4321 9518 0.5220 +4321 10144 0.6260 +4321 10457 0.4620 +4321 10516 0.5090 +4321 10563 0.4600 +4321 10631 0.4320 +4321 11096 0.4200 +4321 27299 0.5670 +4321 50489 0.4280 +4321 50616 0.4880 +4321 54209 0.4450 +4321 80781 0.5830 +4321 151887 0.4110 +4322 4323 0.8280 +4322 4325 0.8020 +4322 4327 0.5890 +4322 4790 0.4920 +4322 4792 0.5090 +4322 4843 0.4100 +4322 4921 0.4500 +4322 4958 0.5630 +4322 5008 0.4460 +4322 5054 0.4670 +4322 5175 0.4140 +4322 5327 0.6020 +4322 5328 0.4970 +4322 5340 0.9130 +4322 5468 0.4230 +4322 5552 0.5400 +4322 5595 0.4880 +4322 5644 0.7650 +4322 5741 0.4660 +4322 5743 0.6600 +4322 5744 0.6260 +4322 5745 0.4130 +4322 6347 0.7230 +4322 6387 0.4990 +4322 6660 0.4640 +4322 6662 0.7770 +4322 6678 0.5240 +4322 6696 0.6460 +4322 6736 0.4040 +4322 6772 0.5540 +4322 6774 0.6550 +4322 6868 0.4370 +4322 6876 0.4070 +4322 6947 0.4280 +4322 7040 0.6640 +4322 7042 0.4630 +4322 7043 0.5870 +4322 7046 0.4090 +4322 7048 0.4180 +4322 7058 0.5430 +4322 7076 0.8860 +4322 7077 0.9630 +4322 7078 0.7460 +4322 7079 0.6670 +4322 7099 0.4650 +4322 7124 0.7120 +4322 7133 0.4820 +4322 7157 0.4350 +4322 7227 0.4150 +4322 7292 0.4220 +4322 7373 0.8140 +4322 7412 0.4180 +4322 7474 0.4050 +4322 7837 0.5550 +4322 7852 0.6290 +4322 8200 0.5240 +4322 8600 0.7470 +4322 8817 0.4630 +4322 8864 0.4080 +4322 9313 0.4770 +4322 9507 0.9020 +4322 9508 0.9080 +4322 9509 0.4840 +4322 9510 0.5290 +4322 9679 0.4070 +4322 9759 0.4300 +4322 10216 0.5490 +4322 10631 0.5210 +4322 11096 0.8990 +4322 22943 0.4070 +4322 23411 0.4380 +4322 23705 0.4540 +4322 26254 0.7710 +4322 50964 0.5230 +4322 55553 0.4600 +4322 55734 0.4240 +4322 55888 0.4350 +4322 56955 0.4450 +4322 63827 0.6260 +4322 64102 0.4410 +4322 80005 0.4220 +4322 80712 0.4380 +4322 80781 0.8100 +4322 90627 0.4040 +4322 114548 0.4950 +4322 121340 0.5540 +4322 137902 0.5520 +4323 4324 0.7030 +4323 4325 0.7010 +4323 4326 0.7320 +4323 4327 0.5590 +4323 4609 0.6550 +4323 4690 0.5680 +4323 4811 0.8550 +4323 4837 0.4360 +4323 4921 0.4450 +4323 5045 0.9100 +4323 5054 0.5250 +4323 5155 0.5920 +4323 5156 0.5710 +4323 5159 0.6270 +4323 5175 0.4130 +4323 5328 0.7640 +4323 5329 0.5250 +4323 5340 0.5270 +4323 5595 0.4580 +4323 5743 0.6020 +4323 5747 0.6780 +4323 5829 0.4690 +4323 5962 0.9250 +4323 6347 0.4710 +4323 6382 0.4650 +4323 6387 0.5150 +4323 6591 0.5320 +4323 6615 0.5660 +4323 6678 0.4820 +4323 6695 0.6270 +4323 6696 0.4420 +4323 6714 0.7420 +4323 6774 0.4480 +4323 6845 0.6230 +4323 6868 0.6180 +4323 6876 0.4460 +4323 7040 0.6010 +4323 7042 0.4010 +4323 7043 0.5430 +4323 7045 0.4400 +4323 7048 0.5890 +4323 7052 0.5130 +4323 7057 0.4930 +4323 7058 0.4590 +4323 7076 0.9990 +4323 7077 0.9990 +4323 7078 0.9300 +4323 7079 0.8850 +4323 7082 0.5700 +4323 7094 0.4050 +4323 7124 0.5050 +4323 7157 0.4180 +4323 7291 0.4400 +4323 7412 0.4740 +4323 7424 0.4740 +4323 7454 0.5450 +4323 7837 0.4570 +4323 7852 0.4710 +4323 8038 0.5390 +4323 8434 0.8940 +4323 8751 0.6070 +4323 8754 0.4330 +4323 8826 0.5200 +4323 8874 0.4750 +4323 8976 0.6600 +4323 9076 0.5430 +4323 9370 0.4530 +4323 9507 0.6540 +4323 9508 0.6600 +4323 9509 0.4170 +4323 9510 0.4160 +4323 9564 0.5570 +4323 9644 0.7580 +4323 9806 0.6120 +4323 9902 0.5060 +4323 10631 0.4430 +4323 10893 0.5270 +4323 11096 0.4920 +4323 23022 0.4890 +4323 23095 0.4850 +4323 27076 0.5190 +4323 30008 0.4120 +4323 50859 0.8460 +4323 54503 0.4730 +4323 55256 0.9480 +4323 55662 0.5530 +4323 58494 0.4870 +4323 64386 0.5760 +4323 80712 0.4220 +4323 80781 0.5090 +4323 83660 0.4040 +4323 84612 0.4450 +4323 85477 0.4690 +4323 137902 0.4280 +4323 221496 0.4910 +4323 285590 0.8620 +4324 4325 0.6330 +4324 4326 0.5190 +4324 4811 0.7980 +4324 5045 0.6650 +4324 7048 0.4110 +4324 7076 0.6770 +4324 7077 0.8890 +4324 7078 0.7810 +4324 7079 0.6200 +4324 9510 0.4020 +4324 10893 0.4460 +4324 11095 0.4030 +4324 23363 0.5230 +4324 64386 0.4750 +4325 4326 0.4940 +4325 5004 0.4320 +4325 5005 0.4320 +4325 5045 0.6370 +4325 5327 0.5110 +4325 5340 0.5590 +4325 6695 0.8080 +4325 7076 0.7770 +4325 7077 0.9130 +4325 7078 0.7320 +4325 7079 0.6430 +4325 7444 0.4770 +4325 7726 0.4130 +4325 8379 0.4370 +4325 9507 0.4070 +4325 9508 0.4100 +4325 9806 0.8170 +4325 9973 0.4230 +4325 10893 0.4210 +4325 22978 0.5070 +4325 50859 0.8480 +4325 64386 0.4690 +4325 91752 0.4020 +4325 257202 0.4060 +4325 493869 0.4240 +4326 4327 0.4910 +4326 5045 0.7730 +4326 6382 0.5140 +4326 7076 0.7060 +4326 7077 0.8370 +4326 7078 0.5930 +4326 7079 0.5270 +4326 7124 0.5320 +4326 9507 0.4620 +4326 9508 0.4620 +4326 10893 0.4850 +4326 27023 0.4240 +4326 64386 0.4630 +4327 4811 0.8220 +4327 5045 0.5830 +4327 5340 0.5130 +4327 7076 0.5630 +4327 7077 0.6240 +4327 7078 0.5960 +4327 7079 0.4910 +4327 8510 0.5090 +4327 9313 0.6350 +4327 9509 0.4150 +4327 63827 0.4070 +4329 4594 0.4420 +4329 5095 0.9600 +4329 5096 0.9670 +4329 5832 0.6300 +4329 5996 0.4190 +4329 6470 0.4390 +4329 6576 0.4180 +4329 7167 0.4910 +4329 7915 0.4870 +4329 8309 0.4320 +4329 8310 0.9240 +4329 8659 0.5400 +4329 8801 0.4410 +4329 8908 0.4900 +4329 9145 0.4040 +4329 10244 0.4320 +4329 10398 0.4090 +4329 10449 0.9570 +4329 10455 0.5390 +4329 10768 0.4030 +4329 11112 0.9960 +4329 23417 0.9160 +4329 26275 0.8110 +4329 27034 0.5460 +4329 54511 0.4310 +4329 55268 0.4810 +4329 55526 0.5520 +4329 55862 0.9420 +4329 55902 0.9250 +4329 56922 0.5470 +4329 57508 0.7690 +4329 64087 0.5770 +4329 64577 0.7180 +4329 64902 0.9330 +4329 79230 0.4440 +4329 79611 0.9310 +4329 80131 0.4010 +4329 84263 0.4010 +4329 84532 0.9450 +4329 84656 0.7970 +4329 126133 0.4350 +4329 134526 0.8020 +4329 137872 0.6260 +4329 140467 0.4270 +4329 373156 0.4820 +4329 374291 0.6380 +4330 4869 0.5440 +4330 5431 0.4240 +4330 5914 0.4940 +4330 6373 0.5490 +4330 6477 0.4130 +4330 7490 0.4640 +4330 8563 0.4930 +4330 8988 0.5540 +4330 9604 0.4910 +4330 10432 0.4240 +4330 10499 0.4020 +4330 10519 0.4400 +4330 23305 0.5710 +4330 23632 0.4170 +4330 26353 0.7670 +4330 26580 0.5240 +4330 27085 0.4070 +4330 51703 0.5580 +4330 55234 0.4300 +4330 55269 0.4240 +4330 55683 0.5120 +4330 59341 0.4950 +4330 65998 0.5300 +4330 79870 0.7810 +4330 115650 0.4070 +4330 139105 0.6860 +4330 139628 0.4450 +4330 440829 0.4150 +4330 100526737 0.4670 +4331 4686 0.5230 +4331 5111 0.9070 +4331 5431 0.9640 +4331 5432 0.9770 +4331 5433 0.9940 +4331 5434 0.9620 +4331 5435 0.9670 +4331 5436 0.9930 +4331 5437 0.9650 +4331 5438 0.9680 +4331 5439 0.9570 +4331 5440 0.9700 +4331 5441 0.9620 +4331 5469 0.8080 +4331 5886 0.6590 +4331 5887 0.7220 +4331 5892 0.5120 +4331 5984 0.4210 +4331 6233 0.5240 +4331 6346 0.9530 +4331 6749 0.5870 +4331 6827 0.6090 +4331 6829 0.7160 +4331 6837 0.8420 +4331 6872 0.9080 +4331 6873 0.9330 +4331 6874 0.8980 +4331 6875 0.5020 +4331 6877 0.9020 +4331 6878 0.9190 +4331 6879 0.9040 +4331 6880 0.9120 +4331 6881 0.9150 +4331 6882 0.9080 +4331 6883 0.9120 +4331 6884 0.9390 +4331 6908 0.9710 +4331 6917 0.5900 +4331 6919 0.4360 +4331 6920 0.4160 +4331 6921 0.5550 +4331 6923 0.5070 +4331 6924 0.5130 +4331 6938 0.4030 +4331 7157 0.5740 +4331 7158 0.5240 +4331 7270 0.5400 +4331 7311 0.4990 +4331 7314 0.5190 +4331 7316 0.5190 +4331 7343 0.5300 +4331 7469 0.5290 +4331 7507 0.7410 +4331 7508 0.7130 +4331 7515 0.5200 +4331 7936 0.5230 +4331 8148 0.5130 +4331 8178 0.5050 +4331 8260 0.4610 +4331 8294 0.8340 +4331 8359 0.8340 +4331 8360 0.8340 +4331 8361 0.8380 +4331 8362 0.8340 +4331 8363 0.8350 +4331 8364 0.8350 +4331 8366 0.8370 +4331 8367 0.8340 +4331 8368 0.8340 +4331 8370 0.8340 +4331 8450 0.6350 +4331 8451 0.6370 +4331 8533 0.5210 +4331 8621 0.7800 +4331 8731 0.5150 +4331 8732 0.5940 +4331 8812 0.6730 +4331 8883 0.4090 +4331 8900 0.4690 +4331 8970 0.8130 +4331 9013 0.5940 +4331 9014 0.5430 +4331 9015 0.5220 +4331 9040 0.4510 +4331 9112 0.7700 +4331 9134 0.4290 +4331 9150 0.6040 +4331 9282 0.9550 +4331 9318 0.5650 +4331 9325 0.4050 +4331 9412 0.9550 +4331 9439 0.8380 +4331 9440 0.9300 +4331 9441 0.8580 +4331 9442 0.8290 +4331 9443 0.9460 +4331 9477 0.8350 +4331 9519 0.4940 +4331 9533 0.7290 +4331 9557 0.5270 +4331 9616 0.5110 +4331 9656 0.5620 +4331 9862 0.8390 +4331 9978 0.7280 +4331 10001 0.9770 +4331 10025 0.8420 +4331 10038 0.6320 +4331 10681 0.9000 +4331 10849 0.5650 +4331 10920 0.5800 +4331 10980 0.5350 +4331 10987 0.5960 +4331 11036 0.5390 +4331 11198 0.5250 +4331 22916 0.5220 +4331 23534 0.6020 +4331 23552 0.8420 +4331 25885 0.5350 +4331 25920 0.5880 +4331 29079 0.8580 +4331 29893 0.5480 +4331 30834 0.6710 +4331 50813 0.5070 +4331 51003 0.9570 +4331 51082 0.5120 +4331 51138 0.5880 +4331 51224 0.4990 +4331 51497 0.5080 +4331 51586 0.8420 +4331 51616 0.5070 +4331 51750 0.6880 +4331 51755 0.7730 +4331 54165 0.4670 +4331 54457 0.4990 +4331 54700 0.5210 +4331 54797 0.8610 +4331 55090 0.8270 +4331 55215 0.5710 +4331 55588 0.8200 +4331 55703 0.4010 +4331 56647 0.9150 +4331 56949 0.4510 +4331 64210 0.9390 +4331 64425 0.5170 +4331 64708 0.5460 +4331 79101 0.5140 +4331 79664 0.5900 +4331 80155 0.7680 +4331 80306 0.8120 +4331 81857 0.8180 +4331 83860 0.9130 +4331 83990 0.6950 +4331 84172 0.6760 +4331 84246 0.9370 +4331 84725 0.4480 +4331 90390 0.8180 +4331 112950 0.8480 +4331 121504 0.8340 +4331 126961 0.8270 +4331 129685 0.8260 +4331 138474 0.5190 +4331 139599 0.6000 +4331 140739 0.4110 +4331 221830 0.5280 +4331 246721 0.5080 +4331 284119 0.5040 +4331 285231 0.8420 +4331 286749 0.5090 +4331 333932 0.8270 +4331 387332 0.5760 +4331 399949 0.4800 +4331 400569 0.8630 +4331 404672 0.9810 +4331 548644 0.5080 +4331 554313 0.8340 +4331 653604 0.8380 +4331 728340 0.9610 +4331 100134938 0.4390 +4331 100533467 0.4700 +4331 107983993 0.4390 +4332 4343 0.4490 +4332 4542 0.4530 +4332 4688 0.8110 +4332 4689 0.5320 +4332 4818 0.4510 +4332 5341 0.5590 +4332 5552 0.5840 +4332 5788 0.5430 +4332 6036 0.5120 +4332 6039 0.6540 +4332 6279 0.5090 +4332 6280 0.5650 +4332 6283 0.6020 +4332 6402 0.4760 +4332 6688 0.8090 +4332 6708 0.5430 +4332 7096 0.4300 +4332 7097 0.4550 +4332 7099 0.4230 +4332 7305 0.9200 +4332 7528 0.4770 +4332 7805 0.4850 +4332 7940 0.4730 +4332 8698 0.4790 +4332 8875 0.5800 +4332 9188 0.4500 +4332 9332 0.4470 +4332 9447 0.5230 +4332 9450 0.5420 +4332 9473 0.5800 +4332 9938 0.4020 +4332 10094 0.5660 +4332 10261 0.7030 +4332 10288 0.7970 +4332 10514 0.4140 +4332 10673 0.4670 +4332 10875 0.5910 +4332 11024 0.7870 +4332 11025 0.4620 +4332 11027 0.4610 +4332 11314 0.5030 +4332 22861 0.4630 +4332 22907 0.4700 +4332 22918 0.4060 +4332 22984 0.4550 +4332 27180 0.4220 +4332 29108 0.6180 +4332 50856 0.5330 +4332 51311 0.9060 +4332 53829 0.7760 +4332 54210 0.4720 +4332 54606 0.4440 +4332 55303 0.4040 +4332 55922 0.4320 +4332 57705 0.4310 +4332 58475 0.4440 +4332 58484 0.4830 +4332 63940 0.4020 +4332 64092 0.4410 +4332 64127 0.4550 +4332 64231 0.6850 +4332 64407 0.5270 +4332 64581 0.4460 +4332 79132 0.4800 +4332 79626 0.4060 +4332 84689 0.4820 +4332 91662 0.4280 +4332 117289 0.4860 +4332 120425 0.4150 +4332 124599 0.5250 +4332 146722 0.5880 +4332 147945 0.4190 +4332 150372 0.4230 +4332 160364 0.4510 +4332 168537 0.4230 +4332 199675 0.4280 +4332 202309 0.4570 +4332 219972 0.5330 +4332 653361 0.4900 +4335 4601 0.4280 +4335 4609 0.8340 +4335 4610 0.5900 +4335 4613 0.7020 +4335 5178 0.4140 +4335 5306 0.5020 +4335 5313 0.5960 +4335 6945 0.9490 +4335 7291 0.4800 +4335 7531 0.4610 +4335 10608 0.8970 +4335 10664 0.5280 +4335 22877 0.5700 +4335 23269 0.4290 +4335 25942 0.8170 +4335 26118 0.5480 +4335 51085 0.7290 +4335 55847 0.5900 +4335 56996 0.4810 +4335 57019 0.4700 +4335 57787 0.5370 +4335 60491 0.6660 +4335 83463 0.7390 +4335 284106 0.4470 +4335 493856 0.4480 +4336 4340 0.8970 +4336 4974 0.4130 +4336 5010 0.6560 +4336 5354 0.8310 +4336 6506 0.4820 +4336 6579 0.4520 +4336 6616 0.4160 +4336 6622 0.5120 +4336 6663 0.5350 +4336 6900 0.5330 +4336 7368 0.4910 +4336 8537 0.4110 +4336 10215 0.6060 +4336 10228 0.5830 +4336 10840 0.4740 +4336 23025 0.5540 +4336 23114 0.4280 +4336 23256 0.4740 +4336 23620 0.4190 +4336 51090 0.6040 +4336 57165 0.4800 +4336 57471 0.7850 +4336 60484 0.4210 +4336 79152 0.4720 +4336 84504 0.4810 +4336 93377 0.7930 +4336 116448 0.6310 +4336 118442 0.4410 +4336 203228 0.4470 +4337 4338 0.9990 +4337 4728 0.4490 +4337 4830 0.8000 +4337 4831 0.8000 +4337 4832 0.8000 +4337 4833 0.8000 +4337 4881 0.8240 +4337 4882 0.8180 +4337 4942 0.4450 +4337 5092 0.5050 +4337 5167 0.8090 +4337 5169 0.8060 +4337 5300 0.4630 +4337 5313 0.8030 +4337 5315 0.8000 +4337 5860 0.4100 +4337 6619 0.4060 +4337 6821 0.9780 +4337 6904 0.4150 +4337 7167 0.4790 +4337 7298 0.5930 +4337 7317 0.5060 +4337 7318 0.5060 +4337 7389 0.7920 +4337 7390 0.4700 +4337 7464 0.4400 +4337 7498 0.5040 +4337 8883 0.5060 +4337 9039 0.5060 +4337 9054 0.4560 +4337 10054 0.5060 +4337 10055 0.5060 +4337 10201 0.8000 +4337 10243 0.9920 +4337 10391 0.4640 +4337 10533 0.5060 +4337 11019 0.5780 +4337 11151 0.4400 +4337 23474 0.5320 +4337 23479 0.4590 +4337 23484 0.4360 +4337 23500 0.4400 +4337 23603 0.4400 +4337 25854 0.4420 +4337 27304 0.9040 +4337 28971 0.4630 +4337 29922 0.8000 +4337 51174 0.4230 +4337 51654 0.5380 +4337 51805 0.4340 +4337 54901 0.4710 +4337 54995 0.4720 +4337 54996 0.9050 +4337 55034 0.6900 +4337 55236 0.5060 +4337 55253 0.6220 +4337 55316 0.4900 +4337 55811 0.8050 +4337 57175 0.4400 +4337 64284 0.4460 +4337 64757 0.4430 +4337 79729 0.4510 +4337 79876 0.5060 +4337 80207 0.4100 +4337 81689 0.5400 +4337 84940 0.4500 +4337 90353 0.5460 +4337 113444 0.4920 +4337 122618 0.4010 +4337 122961 0.5480 +4337 132158 0.4200 +4337 149345 0.4800 +4337 196883 0.8120 +4337 203069 0.4340 +4337 221264 0.8000 +4337 284131 0.7920 +4337 377841 0.8030 +4337 654364 0.8000 +4337 100130890 0.4020 +4337 100131187 0.4020 +4338 4357 0.8710 +4338 4724 0.4500 +4338 5190 0.5600 +4338 5191 0.5610 +4338 5192 0.4890 +4338 5194 0.5770 +4338 5195 0.4470 +4338 5824 0.7660 +4338 5825 0.4790 +4338 5830 0.5180 +4338 5860 0.4270 +4338 6821 0.9690 +4338 6904 0.4060 +4338 7263 0.9390 +4338 7317 0.7160 +4338 7318 0.7160 +4338 7498 0.4080 +4338 8504 0.6770 +4338 8664 0.4430 +4338 8799 0.5080 +4338 8800 0.4840 +4338 8883 0.7250 +4338 9039 0.7250 +4338 9054 0.5700 +4338 9409 0.6090 +4338 9487 0.4330 +4338 10054 0.7200 +4338 10055 0.7180 +4338 10243 0.9980 +4338 10283 0.4430 +4338 10478 0.4250 +4338 10533 0.7230 +4338 11212 0.4570 +4338 26009 0.4390 +4338 27304 0.9990 +4338 28991 0.5320 +4338 51167 0.4150 +4338 51555 0.4060 +4338 54107 0.5350 +4338 54996 0.9180 +4338 55034 0.5020 +4338 55163 0.4040 +4338 55236 0.7160 +4338 55670 0.4470 +4338 55687 0.4080 +4338 63922 0.4460 +4338 79876 0.7720 +4338 81605 0.4520 +4338 84896 0.5480 +4338 89894 0.4670 +4338 90353 0.5510 +4338 92960 0.4180 +4338 112869 0.9570 +4338 728116 0.4830 +4338 100130890 0.8700 +4338 100131187 0.8700 +4340 4741 0.4010 +4340 4744 0.4810 +4340 4747 0.5550 +4340 4803 0.5610 +4340 4804 0.4830 +4340 4974 0.6590 +4340 5010 0.5400 +4340 5156 0.5400 +4340 5354 0.9030 +4340 5788 0.6100 +4340 5803 0.5020 +4340 5896 0.5080 +4340 6097 0.4640 +4340 6285 0.4830 +4340 6347 0.4860 +4340 6402 0.4950 +4340 6506 0.4410 +4340 6663 0.5260 +4340 6774 0.4440 +4340 6775 0.5210 +4340 6863 0.4250 +4340 6900 0.7730 +4340 7099 0.5550 +4340 7124 0.6130 +4340 7297 0.4560 +4340 7837 0.4260 +4340 7932 0.4940 +4340 8506 0.4700 +4340 8639 0.4790 +4340 9034 0.4790 +4340 9211 0.6890 +4340 10215 0.6460 +4340 10507 0.4490 +4340 10687 0.5880 +4340 22933 0.4640 +4340 23114 0.5410 +4340 26047 0.6270 +4340 29098 0.5820 +4340 29126 0.4040 +4340 30009 0.5750 +4340 30835 0.7240 +4340 50616 0.6230 +4340 50943 0.7180 +4340 51090 0.4940 +4340 51561 0.6490 +4340 55504 0.4560 +4340 56896 0.5910 +4340 57030 0.4090 +4340 57142 0.6920 +4340 57165 0.4400 +4340 57471 0.5290 +4340 57628 0.5640 +4340 60484 0.4170 +4340 64218 0.4850 +4340 65078 0.7660 +4340 79152 0.4520 +4340 84107 0.4790 +4340 84868 0.4690 +4340 84894 0.4840 +4340 92737 0.4150 +4340 93377 0.6880 +4340 112744 0.4500 +4340 116448 0.7540 +4340 137902 0.4260 +4340 146713 0.5010 +4340 149233 0.6680 +4340 163882 0.4180 +4340 282890 0.4010 +4340 346171 0.7060 +4340 402665 0.5870 +4342 4440 0.6750 +4342 4519 0.5280 +4342 4536 0.4340 +4342 4538 0.5330 +4342 4654 0.5200 +4342 4893 0.6870 +4342 5525 0.6310 +4342 5529 0.5140 +4342 5604 0.9340 +4342 5605 0.9340 +4342 5896 0.4320 +4342 6237 0.6890 +4342 9088 0.9130 +4342 9210 0.5680 +4342 9454 0.6370 +4342 22800 0.6870 +4342 22808 0.6870 +4342 23277 0.4290 +4342 51765 0.6030 +4342 54766 0.4700 +4342 57448 0.5190 +4342 64506 0.7490 +4342 85481 0.4030 +4343 4609 0.5680 +4343 4686 0.5020 +4343 4799 0.4260 +4343 4851 0.5290 +4343 4853 0.5130 +4343 4854 0.5020 +4343 4855 0.4990 +4343 4904 0.7690 +4343 4940 0.4170 +4343 5371 0.6370 +4343 5600 0.5030 +4343 5610 0.5540 +4343 5725 0.5450 +4343 5728 0.5450 +4343 5928 0.5000 +4343 5929 0.4390 +4343 5931 0.5030 +4343 5976 0.9120 +4343 6015 0.6400 +4343 6041 0.5850 +4343 6045 0.6410 +4343 6256 0.5040 +4343 6257 0.5040 +4343 6426 0.5370 +4343 6657 0.5280 +4343 6667 0.5090 +4343 6714 0.5270 +4343 6738 0.5040 +4343 6780 0.7420 +4343 6885 0.5090 +4343 6894 0.4130 +4343 7027 0.4990 +4343 7029 0.5030 +4343 7073 0.5500 +4343 7157 0.7730 +4343 7376 0.5130 +4343 7681 0.4570 +4343 7764 0.5130 +4343 7867 0.5040 +4343 8085 0.4210 +4343 8087 0.7590 +4343 8202 0.5170 +4343 8331 0.4990 +4343 8334 0.5000 +4343 8337 0.5070 +4343 8338 0.4990 +4343 8340 0.5190 +4343 8341 0.4990 +4343 8342 0.4990 +4343 8345 0.5040 +4343 8347 0.5110 +4343 8348 0.5190 +4343 8349 0.5110 +4343 8356 0.5860 +4343 8361 0.5100 +4343 8531 0.4930 +4343 8535 0.6580 +4343 8607 0.4210 +4343 8638 0.5120 +4343 8648 0.5070 +4343 8726 0.5480 +4343 8761 0.6630 +4343 8850 0.4990 +4343 8970 0.4990 +4343 9070 0.4110 +4343 9188 0.6350 +4343 9271 0.5550 +4343 9513 0.7630 +4343 9638 0.4180 +4343 9687 0.4990 +4343 9704 0.4050 +4343 9739 0.4370 +4343 9757 0.4350 +4343 9775 0.4460 +4343 9782 0.7220 +4343 9794 0.4990 +4343 9869 0.4440 +4343 9887 0.6030 +4343 9908 0.4290 +4343 9939 0.4290 +4343 10046 0.5140 +4343 10062 0.5100 +4343 10123 0.5020 +4343 10146 0.5740 +4343 10155 0.6170 +4343 10212 0.5260 +4343 10399 0.5290 +4343 10419 0.5850 +4343 10434 0.6140 +4343 10521 0.6110 +4343 10642 0.7260 +4343 10643 0.5540 +4343 10856 0.4660 +4343 10940 0.5070 +4343 11091 0.4170 +4343 11179 0.4440 +4343 22913 0.5110 +4343 22938 0.5530 +4343 22955 0.5520 +4343 23019 0.4380 +4343 23067 0.4820 +4343 23070 0.5050 +4343 23112 0.9880 +4343 23135 0.5190 +4343 23196 0.4860 +4343 23309 0.4080 +4343 23318 0.5740 +4343 23367 0.5420 +4343 23369 0.8910 +4343 23381 0.6430 +4343 23405 0.9910 +4343 23466 0.8800 +4343 23492 0.4620 +4343 23512 0.5310 +4343 23586 0.4730 +4343 23608 0.4380 +4343 23644 0.4520 +4343 25939 0.6220 +4343 25942 0.4460 +4343 26019 0.5670 +4343 26065 0.4640 +4343 26523 0.9880 +4343 26986 0.6970 +4343 27067 0.4480 +4343 27161 0.9970 +4343 27287 0.4990 +4343 27327 0.8670 +4343 29102 0.5970 +4343 29896 0.4360 +4343 50628 0.4470 +4343 51574 0.5860 +4343 51701 0.4990 +4343 54145 0.4990 +4343 54464 0.5530 +4343 54487 0.4740 +4343 54542 0.6740 +4343 54625 0.4210 +4343 54967 0.6510 +4343 55110 0.5040 +4343 55124 0.4830 +4343 55170 0.4210 +4343 55337 0.7050 +4343 55421 0.4590 +4343 55534 0.4990 +4343 55601 0.4590 +4343 55766 0.4990 +4343 55802 0.5450 +4343 55904 0.4370 +4343 56829 0.6650 +4343 57332 0.7830 +4343 57510 0.4090 +4343 58508 0.4170 +4343 60489 0.8110 +4343 64135 0.4180 +4343 64761 0.5210 +4343 65109 0.5030 +4343 79132 0.4410 +4343 79670 0.5830 +4343 79727 0.6430 +4343 80012 0.5010 +4343 80153 0.4840 +4343 81844 0.4280 +4343 84441 0.5030 +4343 84661 0.4350 +4343 84733 0.5610 +4343 85236 0.5000 +4343 85363 0.4200 +4343 85364 0.6780 +4343 91543 0.4370 +4343 94239 0.5060 +4343 128312 0.4990 +4343 140564 0.4280 +4343 143689 0.5450 +4343 149041 0.6660 +4343 161882 0.4040 +4343 167227 0.4810 +4343 170506 0.5230 +4343 192669 0.6740 +4343 192670 0.5990 +4343 200316 0.4480 +4343 201164 0.4180 +4343 219988 0.5430 +4343 255626 0.4990 +4343 474382 0.4990 +4343 653604 0.5730 +4345 4360 0.4530 +4345 4684 0.4560 +4345 4907 0.4780 +4345 5077 0.4750 +4345 5133 0.4320 +4345 5175 0.4050 +4345 5788 0.9370 +4345 6347 0.4150 +4345 6376 0.8340 +4345 6610 0.4240 +4345 6693 0.4760 +4345 7070 0.4950 +4345 7124 0.5110 +4345 7185 0.5290 +4345 7293 0.4210 +4345 7305 0.5100 +4345 7412 0.4070 +4345 8764 0.4330 +4345 8792 0.4660 +4345 9046 0.5200 +4345 10219 0.5050 +4345 10225 0.5290 +4345 10666 0.5100 +4345 11126 0.4340 +4345 11148 0.4200 +4345 23239 0.6870 +4345 23621 0.4180 +4345 26018 0.4410 +4345 26586 0.4600 +4345 27242 0.6220 +4345 29126 0.5730 +4345 29802 0.4060 +4345 29851 0.4860 +4345 50943 0.4440 +4345 54209 0.7760 +4345 80380 0.4920 +4345 80381 0.4600 +4345 84868 0.4750 +4345 114132 0.4950 +4345 114836 0.4400 +4345 131450 0.9990 +4345 140885 0.9830 +4345 146433 0.5260 +4345 146722 0.5030 +4345 151888 0.8250 +4345 169355 0.4230 +4345 201633 0.4570 +4345 338785 0.4050 +4345 344807 0.6220 +4345 102723407 0.4770 +4350 4595 0.6200 +4350 4656 0.4910 +4350 4913 0.8060 +4350 4968 0.8430 +4350 5225 0.6800 +4350 5395 0.4130 +4350 5423 0.5520 +4350 6742 0.4220 +4350 6996 0.6580 +4350 7374 0.7450 +4350 7507 0.4260 +4350 7508 0.4020 +4350 7515 0.7560 +4350 8518 0.7490 +4350 8846 0.5280 +4350 8930 0.6680 +4350 10227 0.4640 +4350 10573 0.4170 +4350 11284 0.4820 +4350 23583 0.6650 +4350 27301 0.5120 +4350 27343 0.4720 +4350 27434 0.4080 +4350 29128 0.4480 +4350 51171 0.5800 +4350 55140 0.6210 +4350 55247 0.6480 +4350 55250 0.6520 +4350 55709 0.5300 +4350 55775 0.4080 +4350 57617 0.8310 +4350 64285 0.5800 +4350 79661 0.6230 +4350 79745 0.5720 +4350 121642 0.6040 +4350 221120 0.4640 +4350 252969 0.7100 +4350 284131 0.6010 +4351 4860 0.4720 +4351 5207 0.9170 +4351 5208 0.9100 +4351 5209 0.9100 +4351 5210 0.9130 +4351 5211 0.9300 +4351 5213 0.9360 +4351 5214 0.9310 +4351 5226 0.7890 +4351 5236 0.6180 +4351 5238 0.8700 +4351 5372 0.9910 +4351 5373 0.9990 +4351 5805 0.4110 +4351 6120 0.5740 +4351 6652 0.4990 +4351 6888 0.8780 +4351 7072 0.4840 +4351 7083 0.4820 +4351 7086 0.4380 +4351 7167 0.7080 +4351 7264 0.5250 +4351 7358 0.6240 +4351 7360 0.4330 +4351 8226 0.8580 +4351 8789 0.9140 +4351 8813 0.5230 +4351 8891 0.4940 +4351 8893 0.4910 +4351 9563 0.8300 +4351 9942 0.4920 +4351 9945 0.9380 +4351 10007 0.9430 +4351 10020 0.6320 +4351 10724 0.5630 +4351 10873 0.4870 +4351 22845 0.4950 +4351 22934 0.4760 +4351 23483 0.4890 +4351 23760 0.4290 +4351 25796 0.4430 +4351 29880 0.4580 +4351 29925 0.7950 +4351 29926 0.7020 +4351 29929 0.5110 +4351 51071 0.4050 +4351 51167 0.4060 +4351 55276 0.8520 +4351 56052 0.5670 +4351 57103 0.9060 +4351 64080 0.4680 +4351 79053 0.4780 +4351 79087 0.7200 +4351 79644 0.8610 +4351 80201 0.9370 +4351 85365 0.5820 +4351 130589 0.5410 +4351 132789 0.9350 +4351 144402 0.4240 +4351 283209 0.8180 +4351 390637 0.5460 +4351 440138 0.4630 +4351 606495 0.4150 +4351 729020 0.5170 +4352 4778 0.4460 +4352 5008 0.7090 +4352 5154 0.6600 +4352 5155 0.6590 +4352 5196 0.5900 +4352 5197 0.5030 +4352 5617 0.7080 +4352 5688 0.4480 +4352 5788 0.5410 +4352 6366 0.4930 +4352 6387 0.5890 +4352 6403 0.5220 +4352 6427 0.4180 +4352 6504 0.4850 +4352 6774 0.4320 +4352 6776 0.5810 +4352 6777 0.5830 +4352 6850 0.5540 +4352 7066 0.9990 +4352 7075 0.4830 +4352 7297 0.8260 +4352 7450 0.5410 +4352 7852 0.5550 +4352 8328 0.4960 +4352 8651 0.5190 +4352 9846 0.4200 +4352 9939 0.4870 +4352 10019 0.7570 +4352 10217 0.4330 +4352 10563 0.4120 +4352 10726 0.6930 +4352 10850 0.4240 +4352 11009 0.6590 +4352 23218 0.4240 +4352 29949 0.6500 +4352 50604 0.6500 +4352 50616 0.6630 +4352 51206 0.5470 +4352 51266 0.4290 +4352 51554 0.4280 +4352 51561 0.6500 +4352 53342 0.6500 +4352 54790 0.6440 +4352 55821 0.4400 +4352 56832 0.6500 +4352 59067 0.6500 +4352 80739 0.4030 +4352 81027 0.4370 +4352 84519 0.4220 +4352 85480 0.6680 +4352 161882 0.4310 +4352 171023 0.5150 +4352 282616 0.6500 +4352 282617 0.6630 +4352 282618 0.6500 +4352 338376 0.6500 +4352 340205 0.4310 +4353 4360 0.4360 +4353 4478 0.4780 +4353 4602 0.4250 +4353 4680 0.5080 +4353 4684 0.6090 +4353 4688 0.5220 +4353 4689 0.4830 +4353 4780 0.5250 +4353 4790 0.5180 +4353 4792 0.5750 +4353 4804 0.4260 +4353 4842 0.4360 +4353 4843 0.5150 +4353 4846 0.5360 +4353 4869 0.4110 +4353 4879 0.4160 +4353 4973 0.4940 +4353 5054 0.6850 +4353 5079 0.5260 +4353 5175 0.5320 +4353 5196 0.5000 +4353 5199 0.7180 +4353 5265 0.7530 +4353 5327 0.5070 +4353 5340 0.4640 +4353 5444 0.7740 +4353 5468 0.4860 +4353 5473 0.4430 +4353 5553 0.5190 +4353 5595 0.4350 +4353 5657 0.9990 +4353 5743 0.6410 +4353 5788 0.6850 +4353 5806 0.7010 +4353 5868 0.4280 +4353 5880 0.4040 +4353 5914 0.4780 +4353 5972 0.4280 +4353 6036 0.6540 +4353 6037 0.9230 +4353 6279 0.5520 +4353 6280 0.6670 +4353 6283 0.7660 +4353 6347 0.6920 +4353 6348 0.5870 +4353 6351 0.4660 +4353 6374 0.4530 +4353 6382 0.4750 +4353 6401 0.7430 +4353 6402 0.5460 +4353 6403 0.6750 +4353 6404 0.4690 +4353 6441 0.6260 +4353 6648 0.4070 +4353 6688 0.5740 +4353 6693 0.6140 +4353 6774 0.5300 +4353 6869 0.4480 +4353 7037 0.4060 +4353 7040 0.5190 +4353 7056 0.4220 +4353 7076 0.5150 +4353 7082 0.4800 +4353 7083 0.4140 +4353 7097 0.6110 +4353 7099 0.7280 +4353 7124 0.8320 +4353 7132 0.4150 +4353 7133 0.4070 +4353 7137 0.4480 +4353 7139 0.5460 +4353 7157 0.4600 +4353 7295 0.4020 +4353 7412 0.6210 +4353 7442 0.4690 +4353 7450 0.5800 +4353 7498 0.6470 +4353 7706 0.4900 +4353 7852 0.4230 +4353 7941 0.6280 +4353 8290 0.8860 +4353 8337 0.5830 +4353 8338 0.5830 +4353 8356 0.8860 +4353 8807 0.4300 +4353 8841 0.4040 +4353 8993 0.6760 +4353 9076 0.4250 +4353 9332 0.5540 +4353 9370 0.5890 +4353 9518 0.4160 +4353 10562 0.4580 +4353 10724 0.4550 +4353 11093 0.4460 +4353 11240 0.4590 +4353 23569 0.8400 +4353 27035 0.4280 +4353 29943 0.4150 +4353 30833 0.4300 +4353 50507 0.4350 +4353 50616 0.4760 +4353 50943 0.4850 +4353 51702 0.4300 +4353 54106 0.4660 +4353 54205 0.4590 +4353 54210 0.6510 +4353 56729 0.7570 +4353 57126 0.6090 +4353 59272 0.4190 +4353 79664 0.4710 +4353 84569 0.8530 +4353 84639 0.4080 +4353 84666 0.6080 +4353 84706 0.4360 +4353 90865 0.4300 +4353 114548 0.5440 +4353 147495 0.4060 +4353 151056 0.4300 +4353 162979 0.7640 +4353 257202 0.7150 +4353 353238 0.4070 +4353 400668 0.7730 +4353 440093 0.8860 +4353 440686 0.8880 +4353 493869 0.7170 +4353 653361 0.5630 +4353 653604 0.8880 +4353 728358 0.4790 +4353 100506658 0.5610 +4354 4478 0.5890 +4354 4627 0.5130 +4354 4641 0.5020 +4354 4647 0.5060 +4354 4771 0.4850 +4354 5260 0.5620 +4354 5261 0.7160 +4354 5357 0.5190 +4354 5435 0.4820 +4354 5681 0.6020 +4354 5756 0.5080 +4354 5962 0.5530 +4354 6624 0.5120 +4354 6709 0.5780 +4354 6711 0.6120 +4354 6714 0.4290 +4354 7082 0.5600 +4354 7298 0.4280 +4354 7399 0.5010 +4354 7430 0.5390 +4354 7867 0.4660 +4354 8536 0.7100 +4354 8573 0.8290 +4354 8825 0.7580 +4354 8833 0.4240 +4354 9231 0.5670 +4354 9563 0.5200 +4354 9750 0.5080 +4354 10174 0.6550 +4354 10257 0.4280 +4354 11078 0.5140 +4354 11344 0.8080 +4354 23136 0.6650 +4354 23303 0.7840 +4354 23549 0.4800 +4354 25794 0.5060 +4354 25861 0.9620 +4354 51168 0.9090 +4354 53405 0.4990 +4354 53904 0.8060 +4354 55327 0.5310 +4354 55359 0.4360 +4354 57118 0.6510 +4354 57172 0.4870 +4354 57689 0.6740 +4354 64130 0.5300 +4354 64787 0.8460 +4354 83715 0.8140 +4354 84059 0.5330 +4354 85481 0.4250 +4354 124590 0.5700 +4354 129446 0.5200 +4354 139728 0.4890 +4354 140469 0.8060 +4354 286262 0.4990 +4354 339768 0.8110 +4354 389207 0.5150 +4354 494513 0.4990 +4354 643226 0.5070 +4355 4356 0.5390 +4355 5261 0.4740 +4355 5435 0.4820 +4355 5581 0.4310 +4355 6574 0.5800 +4355 6857 0.5820 +4355 7082 0.5910 +4355 7298 0.4260 +4355 8536 0.4830 +4355 8777 0.5940 +4355 8825 0.9720 +4355 8831 0.5180 +4355 8833 0.4240 +4355 8997 0.4420 +4355 9076 0.4360 +4355 9228 0.4780 +4355 9229 0.6860 +4355 9231 0.4110 +4355 9369 0.4130 +4355 9378 0.4970 +4355 9456 0.5480 +4355 10458 0.5320 +4355 22941 0.5530 +4355 23096 0.5140 +4355 23513 0.4550 +4355 26047 0.5390 +4355 26052 0.4560 +4355 26053 0.5240 +4355 29119 0.5810 +4355 50848 0.6380 +4355 50944 0.6340 +4355 51678 0.7860 +4355 55327 0.9270 +4355 55568 0.4460 +4355 56288 0.5150 +4355 56923 0.4610 +4355 57118 0.4410 +4355 57154 0.4100 +4355 58512 0.4010 +4355 64130 0.8320 +4355 84552 0.4750 +4355 84708 0.5340 +4355 85358 0.4260 +4355 93643 0.8490 +4355 117583 0.5280 +4355 133482 0.4470 +4355 152330 0.6280 +4356 4734 0.4350 +4356 4983 0.4120 +4356 5062 0.5830 +4356 5435 0.4820 +4356 5688 0.5060 +4356 5817 0.5630 +4356 5818 0.6340 +4356 5819 0.5210 +4356 6504 0.6830 +4356 6616 0.4760 +4356 7059 0.4950 +4356 7267 0.4080 +4356 7298 0.4260 +4356 7430 0.4690 +4356 7881 0.5680 +4356 8615 0.4050 +4356 8777 0.5540 +4356 8825 0.8740 +4356 8833 0.4240 +4356 9368 0.4730 +4356 9578 0.4460 +4356 9640 0.4240 +4356 9758 0.5300 +4356 10207 0.5770 +4356 22839 0.4930 +4356 23024 0.4410 +4356 23095 0.4640 +4356 23136 0.5850 +4356 23229 0.4970 +4356 23513 0.6490 +4356 23705 0.9250 +4356 25945 0.6320 +4356 26086 0.4090 +4356 51678 0.4670 +4356 55203 0.4350 +4356 55327 0.9400 +4356 57863 0.8540 +4356 64130 0.7700 +4356 79658 0.5880 +4356 84708 0.4910 +4356 199731 0.5380 +4356 200933 0.7190 +4356 286204 0.5520 +4356 100271715 0.4510 +4357 4524 0.4450 +4357 4548 0.4890 +4357 4842 0.4060 +4357 4843 0.5850 +4357 4846 0.4520 +4357 6362 0.4700 +4357 6531 0.4650 +4357 6821 0.9770 +4357 7167 0.4320 +4357 7263 0.9290 +4357 7295 0.5270 +4357 7317 0.4070 +4357 7318 0.4060 +4357 8030 0.9060 +4357 8883 0.4060 +4357 8991 0.8540 +4357 9039 0.4070 +4357 9054 0.9920 +4357 9060 0.4060 +4357 9061 0.4040 +4357 9217 0.4730 +4357 9817 0.4060 +4357 10054 0.4200 +4357 10055 0.4060 +4357 10533 0.4310 +4357 23474 0.9770 +4357 25828 0.9150 +4357 26520 0.4540 +4357 26610 0.4040 +4357 27304 0.9910 +4357 51504 0.4340 +4357 51540 0.7470 +4357 54205 0.4660 +4357 55034 0.8080 +4357 55236 0.4070 +4357 56267 0.9110 +4357 58472 0.7620 +4357 79587 0.6190 +4357 79876 0.4090 +4357 80308 0.4070 +4357 81605 0.8170 +4357 90353 0.8310 +4357 92483 0.9220 +4357 137362 0.9610 +4357 160287 0.9220 +4357 348180 0.5080 +4357 387521 0.6190 +4357 548645 0.4290 +4357 100130890 0.4310 +4357 100131187 0.5590 +4358 4513 0.4220 +4358 4720 0.4320 +4358 5192 0.6030 +4358 5194 0.5960 +4358 5195 0.5070 +4358 5428 0.9210 +4358 5828 0.5660 +4358 5830 0.6550 +4358 6233 0.5170 +4358 6335 0.8100 +4358 6341 0.4060 +4358 6342 0.5570 +4358 6834 0.5530 +4358 7084 0.7140 +4358 7311 0.5390 +4358 7314 0.5360 +4358 7316 0.5230 +4358 7321 0.5420 +4358 7322 0.5350 +4358 7323 0.5540 +4358 7349 0.7240 +4358 7378 0.4310 +4358 8799 0.4070 +4358 8802 0.8290 +4358 8803 0.9220 +4358 10989 0.8500 +4358 11232 0.6780 +4358 26235 0.5430 +4358 50484 0.9010 +4358 51021 0.4670 +4358 54968 0.4050 +4358 55687 0.5100 +4358 56652 0.8920 +4358 57038 0.4870 +4358 63894 0.4320 +4358 84769 0.9200 +4358 84947 0.4770 +4358 92579 0.4500 +4358 92667 0.5920 +4358 219743 0.5430 +4358 246243 0.4050 +4358 255027 0.9120 +4358 388962 0.4280 +4360 4481 0.7950 +4360 4684 0.4310 +4360 4790 0.4670 +4360 4792 0.4280 +4360 4843 0.6560 +4360 5133 0.5820 +4360 5154 0.4520 +4360 5175 0.6630 +4360 5327 0.5940 +4360 5468 0.7300 +4360 5641 0.4230 +4360 5743 0.5140 +4360 5788 0.8020 +4360 5883 0.6180 +4360 5971 0.4550 +4360 6347 0.8270 +4360 6348 0.6020 +4360 6351 0.5340 +4360 6354 0.4040 +4360 6355 0.4050 +4360 6357 0.4740 +4360 6361 0.6200 +4360 6362 0.7710 +4360 6367 0.6360 +4360 6369 0.5420 +4360 6373 0.4220 +4360 6376 0.6270 +4360 6387 0.4940 +4360 6402 0.7130 +4360 6556 0.5230 +4360 6599 0.4810 +4360 6614 0.6910 +4360 6688 0.4530 +4360 6696 0.4110 +4360 6772 0.5730 +4360 6774 0.5820 +4360 6778 0.6610 +4360 7010 0.4520 +4360 7040 0.6000 +4360 7052 0.4250 +4360 7056 0.4430 +4360 7070 0.4260 +4360 7076 0.5360 +4360 7097 0.6380 +4360 7098 0.4280 +4360 7099 0.7900 +4360 7124 0.7900 +4360 7130 0.5420 +4360 7150 0.4500 +4360 7305 0.5090 +4360 7412 0.4730 +4360 7414 0.4870 +4360 7450 0.4100 +4360 7837 0.5140 +4360 7852 0.4890 +4360 8318 0.9580 +4360 8639 0.4570 +4360 8685 0.5540 +4360 8914 0.8750 +4360 9021 0.4570 +4360 9308 0.5530 +4360 9332 0.9300 +4360 9370 0.4320 +4360 9902 0.9130 +4360 10232 0.5270 +4360 10457 0.4100 +4360 10461 0.6230 +4360 10462 0.5040 +4360 10894 0.7610 +4360 11169 0.9760 +4360 11198 0.4040 +4360 11200 0.5690 +4360 11326 0.6960 +4360 22918 0.4160 +4360 22925 0.9080 +4360 23166 0.6640 +4360 27069 0.4400 +4360 27159 0.5860 +4360 29108 0.4890 +4360 29126 0.6270 +4360 30835 0.4540 +4360 50487 0.4460 +4360 50489 0.5220 +4360 50943 0.6770 +4360 51284 0.4870 +4360 51311 0.4750 +4360 51338 0.5110 +4360 54106 0.4600 +4360 54209 0.6550 +4360 54518 0.4100 +4360 54962 0.9110 +4360 55388 0.9640 +4360 56729 0.4470 +4360 63967 0.7490 +4360 64805 0.5380 +4360 80142 0.4280 +4360 80380 0.4860 +4360 80381 0.4530 +4360 81469 0.4090 +4360 81624 0.5110 +4360 84666 0.7000 +4360 84868 0.5000 +4360 90865 0.5120 +4360 90952 0.4730 +4360 91937 0.5500 +4360 114548 0.4430 +4360 114609 0.4360 +4360 131450 0.5890 +4360 137902 0.5110 +4360 140885 0.5790 +4360 146433 0.4400 +4360 151516 0.4770 +4360 168400 0.4010 +4360 169355 0.4290 +4360 338773 0.5220 +4360 345611 0.4290 +4361 4436 0.8470 +4361 4437 0.6540 +4361 4438 0.6700 +4361 4439 0.4990 +4361 4519 0.5220 +4361 4595 0.7590 +4361 4683 0.9990 +4361 4684 0.4600 +4361 4763 0.4220 +4361 4913 0.4910 +4361 4968 0.5850 +4361 5069 0.4150 +4361 5111 0.5820 +4361 5172 0.4360 +4361 5378 0.6450 +4361 5395 0.8500 +4361 5422 0.4930 +4361 5424 0.7940 +4361 5425 0.5210 +4361 5426 0.8090 +4361 5427 0.4750 +4361 5428 0.4390 +4361 5429 0.5940 +4361 5431 0.4460 +4361 5536 0.4310 +4361 5558 0.4830 +4361 5591 0.8540 +4361 5599 0.6840 +4361 5728 0.5740 +4361 5810 0.6900 +4361 5883 0.7250 +4361 5884 0.8730 +4361 5885 0.5720 +4361 5888 0.9840 +4361 5889 0.9330 +4361 5890 0.9080 +4361 5892 0.9460 +4361 5893 0.8790 +4361 5932 0.9970 +4361 5965 0.4380 +4361 5980 0.4600 +4361 5981 0.7380 +4361 5982 0.6880 +4361 5983 0.7030 +4361 5984 0.7440 +4361 5985 0.6960 +4361 6047 0.4160 +4361 6117 0.9530 +4361 6118 0.7080 +4361 6119 0.6870 +4361 6208 0.6180 +4361 6233 0.5540 +4361 6391 0.4090 +4361 6502 0.4820 +4361 6573 0.4050 +4361 6596 0.4610 +4361 6599 0.4210 +4361 6601 0.4450 +4361 6613 0.8230 +4361 6794 0.5070 +4361 7001 0.5080 +4361 7013 0.6250 +4361 7014 0.9490 +4361 7015 0.5300 +4361 7150 0.5660 +4361 7153 0.6340 +4361 7155 0.4420 +4361 7156 0.8110 +4361 7157 0.9050 +4361 7158 0.9380 +4361 7298 0.5040 +4361 7311 0.5010 +4361 7314 0.5530 +4361 7316 0.5560 +4361 7319 0.4810 +4361 7329 0.6210 +4361 7334 0.7300 +4361 7336 0.7240 +4361 7341 0.7690 +4361 7415 0.5460 +4361 7468 0.6670 +4361 7486 0.9450 +4361 7507 0.4890 +4361 7508 0.4460 +4361 7515 0.9020 +4361 7516 0.9120 +4361 7517 0.8830 +4361 7518 0.5330 +4361 7520 0.9790 +4361 7979 0.5890 +4361 8237 0.4540 +4361 8243 0.8230 +4361 8290 0.7050 +4361 8314 0.5130 +4361 8318 0.6080 +4361 8331 0.5460 +4361 8334 0.5540 +4361 8337 0.6060 +4361 8338 0.6020 +4361 8340 0.5170 +4361 8341 0.5170 +4361 8342 0.5180 +4361 8345 0.5170 +4361 8347 0.5170 +4361 8348 0.5250 +4361 8349 0.6170 +4361 8361 0.8060 +4361 8438 0.7300 +4361 8458 0.4140 +4361 8891 0.4990 +4361 8900 0.5480 +4361 8924 0.5330 +4361 8940 0.5300 +4361 8970 0.5170 +4361 9025 0.7370 +4361 9126 0.4800 +4361 9128 0.5880 +4361 9156 0.9850 +4361 9319 0.4740 +4361 9400 0.8110 +4361 9401 0.8820 +4361 9447 0.4950 +4361 9577 0.5930 +4361 9656 0.9560 +4361 9682 0.5060 +4361 9937 0.7760 +4361 10038 0.6720 +4361 10111 0.9990 +4361 10524 0.6900 +4361 10635 0.6640 +4361 10714 0.5710 +4361 10721 0.7740 +4361 10861 0.4360 +4361 11073 0.7330 +4361 11144 0.4720 +4361 11200 0.9000 +4361 11284 0.5050 +4361 22976 0.7420 +4361 23030 0.5180 +4361 23064 0.4910 +4361 23137 0.5320 +4361 23411 0.4800 +4361 23514 0.5070 +4361 23626 0.7810 +4361 23645 0.5220 +4361 25788 0.6240 +4361 25913 0.6040 +4361 26168 0.4360 +4361 26277 0.6670 +4361 27030 0.5940 +4361 27301 0.4510 +4361 29086 0.6890 +4361 29110 0.4990 +4361 51032 0.4650 +4361 51426 0.5780 +4361 51455 0.4050 +4361 51588 0.5740 +4361 51720 0.7460 +4361 51750 0.6410 +4361 51755 0.4660 +4361 54107 0.4050 +4361 54145 0.5170 +4361 54386 0.9290 +4361 54840 0.4250 +4361 54841 0.6000 +4361 55120 0.4790 +4361 55183 0.6290 +4361 55215 0.5420 +4361 55218 0.4020 +4361 55247 0.4410 +4361 55294 0.6020 +4361 55655 0.5100 +4361 55703 0.4470 +4361 55766 0.5460 +4361 55775 0.5520 +4361 56655 0.4570 +4361 56852 0.6480 +4361 56893 0.6100 +4361 57082 0.4910 +4361 57128 0.8400 +4361 57544 0.4140 +4361 57697 0.7000 +4361 57804 0.4100 +4361 60561 0.5310 +4361 63922 0.4410 +4361 64421 0.8330 +4361 64858 0.5440 +4361 65010 0.4360 +4361 79184 0.5850 +4361 79677 0.4320 +4361 79728 0.8700 +4361 79915 0.6390 +4361 79991 0.4080 +4361 80010 0.7640 +4361 80119 0.6110 +4361 80198 0.8060 +4361 81341 0.5220 +4361 83695 0.5000 +4361 83932 0.4910 +4361 83990 0.9980 +4361 84057 0.4040 +4361 84126 0.7220 +4361 84142 0.8430 +4361 84172 0.4080 +4361 84219 0.4360 +4361 84263 0.4090 +4361 84464 0.8060 +4361 84893 0.6670 +4361 85236 0.5170 +4361 91300 0.5220 +4361 92797 0.5510 +4361 93183 0.7970 +4361 94239 0.5070 +4361 113510 0.4510 +4361 115019 0.4360 +4361 115111 0.4360 +4361 116028 0.5660 +4361 116369 0.4360 +4361 116447 0.5230 +4361 128312 0.5170 +4361 135458 0.4100 +4361 144715 0.6120 +4361 146956 0.6630 +4361 161502 0.4380 +4361 165918 0.7200 +4361 197342 0.6080 +4361 203259 0.5430 +4361 254528 0.5330 +4361 255626 0.5170 +4361 283489 0.4870 +4361 284129 0.4360 +4361 339122 0.4660 +4361 340061 0.4730 +4361 348654 0.8610 +4361 353299 0.6020 +4361 375611 0.4360 +4361 474382 0.5460 +4361 548593 0.5640 +4361 100533467 0.7560 +4363 4609 0.6160 +4363 4629 0.5360 +4363 5243 0.5890 +4363 5244 0.5280 +4363 5579 0.4480 +4363 5663 0.4330 +4363 6059 0.4970 +4363 6363 0.4340 +4363 6554 0.4150 +4363 6573 0.4930 +4363 6579 0.5830 +4363 6580 0.5410 +4363 6581 0.4360 +4363 6583 0.4460 +4363 6584 0.4390 +4363 6657 0.4110 +4363 6774 0.4020 +4363 7157 0.4920 +4363 7298 0.4690 +4363 7365 0.4550 +4363 7366 0.4210 +4363 7419 0.4430 +4363 8140 0.4040 +4363 8647 0.5420 +4363 8714 0.4190 +4363 8842 0.4720 +4363 8856 0.5870 +4363 8877 0.4710 +4363 9356 0.4620 +4363 9360 0.4610 +4363 9376 0.4880 +4363 9429 0.9710 +4363 9619 0.6140 +4363 9665 0.4460 +4363 9961 0.7020 +4363 10057 0.5170 +4363 10351 0.5530 +4363 10599 0.5870 +4363 10864 0.5180 +4363 11309 0.5940 +4363 23205 0.4130 +4363 27306 0.4410 +4363 28231 0.4110 +4363 28234 0.5250 +4363 51081 0.9250 +4363 51703 0.4010 +4363 54575 0.5150 +4363 54576 0.5200 +4363 54577 0.5330 +4363 54578 0.5580 +4363 54657 0.5370 +4363 54658 0.5260 +4363 54659 0.4070 +4363 55244 0.4640 +4363 55324 0.4360 +4363 55867 0.4260 +4363 56413 0.7010 +4363 56848 0.4290 +4363 64078 0.4640 +4363 64137 0.5550 +4363 79799 0.4650 +4363 85413 0.4570 +4363 113235 0.4170 +4363 114571 0.4160 +4363 123811 0.4100 +4363 124976 0.6090 +4363 206358 0.4540 +4363 255738 0.4240 +4363 285331 0.4160 +4363 340273 0.4780 +4363 388931 0.5040 +4430 4641 0.9060 +4430 4642 0.4590 +4430 5290 0.4240 +4430 5500 0.4660 +4430 5501 0.4380 +4430 5728 0.4680 +4430 5756 0.4210 +4430 6249 0.4720 +4430 6774 0.4180 +4430 7082 0.4690 +4430 8615 0.4130 +4430 8826 0.5320 +4430 9253 0.4170 +4430 10095 0.5050 +4430 10096 0.4800 +4430 10097 0.4340 +4430 10458 0.4600 +4430 51751 0.4240 +4430 51806 0.6650 +4430 54443 0.5160 +4430 55160 0.4930 +4430 55196 0.4170 +4430 55604 0.5380 +4430 56344 0.4090 +4430 80216 0.4530 +4430 84085 0.4210 +4430 91860 0.5640 +4430 120892 0.6420 +4430 163688 0.5630 +4430 399687 0.4690 +4430 100529144 0.5990 +4435 5076 0.5900 +4435 5933 0.4280 +4435 6299 0.5910 +4435 6495 0.4660 +4435 6899 0.5450 +4435 6908 0.5450 +4435 7021 0.6810 +4435 7022 0.6750 +4435 7031 0.5080 +4435 7039 0.5340 +4435 7157 0.4090 +4435 7350 0.6010 +4435 7484 0.5880 +4435 7490 0.5380 +4435 7545 0.4150 +4435 7849 0.4860 +4435 8202 0.4230 +4435 8648 0.4200 +4435 10370 0.5960 +4435 10498 0.5010 +4435 10736 0.7840 +4435 10891 0.4160 +4435 51430 0.4750 +4435 51592 0.4890 +4435 54361 0.5190 +4435 55802 0.4930 +4435 63976 0.5240 +4435 83741 0.5020 +4435 219623 0.6630 +4435 339488 0.5020 +4435 387837 0.4190 +4435 431707 0.4220 +4436 4437 0.9990 +4436 4438 0.6340 +4436 4439 0.6820 +4436 4595 0.9460 +4436 4609 0.8530 +4436 4678 0.4500 +4436 4683 0.8240 +4436 4763 0.7260 +4436 4893 0.6840 +4436 4904 0.5500 +4436 4913 0.7230 +4436 4928 0.4060 +4436 4968 0.8190 +4436 5111 0.9720 +4436 5133 0.4470 +4436 5290 0.6180 +4436 5347 0.5510 +4436 5378 0.9990 +4436 5395 0.9990 +4436 5422 0.6540 +4436 5423 0.4200 +4436 5424 0.9940 +4436 5425 0.4900 +4436 5426 0.9470 +4436 5427 0.5790 +4436 5429 0.6610 +4436 5557 0.7680 +4436 5591 0.9570 +4436 5644 0.5120 +4436 5728 0.7780 +4436 5810 0.4070 +4436 5832 0.5590 +4436 5883 0.7310 +4436 5884 0.5100 +4436 5885 0.6020 +4436 5886 0.4640 +4436 5887 0.9460 +4436 5888 0.9440 +4436 5889 0.8480 +4436 5890 0.6470 +4436 5892 0.8120 +4436 5893 0.8570 +4436 5932 0.5940 +4436 5965 0.7220 +4436 5979 0.4570 +4436 5980 0.5820 +4436 5981 0.7150 +4436 5982 0.8840 +4436 5983 0.7700 +4436 5984 0.9350 +4436 5985 0.7170 +4436 6117 0.8550 +4436 6118 0.7260 +4436 6119 0.7290 +4436 6240 0.5230 +4436 6502 0.5490 +4436 6596 0.5800 +4436 6597 0.4880 +4436 6598 0.4160 +4436 6613 0.7800 +4436 6742 0.4350 +4436 6749 0.6550 +4436 6794 0.6940 +4436 6996 0.5140 +4436 7014 0.5060 +4436 7015 0.4410 +4436 7048 0.5220 +4436 7150 0.6130 +4436 7153 0.6230 +4436 7155 0.5000 +4436 7156 0.5590 +4436 7157 0.9740 +4436 7158 0.6190 +4436 7178 0.4790 +4436 7272 0.4200 +4436 7298 0.6020 +4436 7374 0.7010 +4436 7486 0.8290 +4436 7507 0.9080 +4436 7508 0.9440 +4436 7515 0.7810 +4436 7516 0.6300 +4436 7517 0.6980 +4436 7518 0.9530 +4436 7520 0.9730 +4436 7905 0.7340 +4436 8208 0.4220 +4436 8243 0.6360 +4436 8289 0.9740 +4436 8317 0.8230 +4436 8318 0.6350 +4436 8356 0.4070 +4436 8361 0.4550 +4436 8438 0.5620 +4436 8467 0.5050 +4436 8520 0.4250 +4436 8570 0.4060 +4436 8607 0.4040 +4436 8930 0.4460 +4436 9100 0.4110 +4436 9126 0.6100 +4436 9156 0.9990 +4436 9319 0.4510 +4436 9400 0.4620 +4436 9401 0.7810 +4436 9656 0.6420 +4436 9734 0.4010 +4436 9735 0.4160 +4436 9759 0.4140 +4436 9937 0.5870 +4436 10013 0.6640 +4436 10038 0.5350 +4436 10111 0.6130 +4436 10403 0.4570 +4436 10481 0.4500 +4436 10535 0.5450 +4436 10565 0.4010 +4436 10592 0.5570 +4436 10606 0.4540 +4436 10714 0.4270 +4436 10973 0.7030 +4436 11073 0.5040 +4436 11169 0.6940 +4436 11198 0.5320 +4436 11200 0.9340 +4436 11201 0.5280 +4436 22909 0.4390 +4436 23028 0.9250 +4436 23137 0.4550 +4436 23186 0.9040 +4436 23244 0.4160 +4436 23476 0.5770 +4436 23583 0.4270 +4436 23626 0.5490 +4436 23649 0.4960 +4436 25788 0.5680 +4436 26585 0.4470 +4436 27030 0.9990 +4436 27301 0.5240 +4436 27343 0.4090 +4436 27434 0.5050 +4436 29028 0.4190 +4436 29072 0.4010 +4436 29089 0.4290 +4436 29126 0.6210 +4436 29127 0.5540 +4436 29128 0.6130 +4436 29935 0.5630 +4436 51008 0.5570 +4436 51053 0.4290 +4436 51317 0.9070 +4436 51426 0.5060 +4436 51455 0.6900 +4436 51514 0.5850 +4436 51659 0.4750 +4436 51741 0.4230 +4436 51755 0.4800 +4436 54386 0.4330 +4436 54474 0.4840 +4436 54841 0.4060 +4436 54894 0.4490 +4436 54962 0.4380 +4436 55120 0.5490 +4436 55215 0.7840 +4436 55247 0.4450 +4436 55294 0.4160 +4436 55536 0.4190 +4436 55611 0.6060 +4436 56159 0.4210 +4436 56660 0.4210 +4436 56852 0.6230 +4436 56916 0.9440 +4436 57082 0.4590 +4436 57379 0.5320 +4436 57509 0.4590 +4436 57697 0.8370 +4436 64421 0.9440 +4436 64858 0.5020 +4436 79075 0.4050 +4436 79621 0.4370 +4436 79677 0.4330 +4436 79695 0.4720 +4436 79728 0.8980 +4436 79840 0.9320 +4436 79915 0.4680 +4436 79968 0.5300 +4436 80010 0.4790 +4436 80119 0.4510 +4436 80198 0.7520 +4436 80204 0.4950 +4436 81611 0.4650 +4436 81620 0.4110 +4436 83540 0.4420 +4436 83933 0.4760 +4436 83990 0.7930 +4436 84057 0.5930 +4436 84072 0.5430 +4436 84126 0.6840 +4436 84142 0.5270 +4436 84164 0.5430 +4436 84464 0.9720 +4436 84515 0.6990 +4436 84893 0.4170 +4436 91419 0.9100 +4436 91442 0.6150 +4436 114799 0.4130 +4436 116447 0.4290 +4436 120892 0.5440 +4436 125150 0.9050 +4436 126074 0.9120 +4436 128710 0.5050 +4436 136541 0.5410 +4436 146956 0.5410 +4436 150280 0.5250 +4436 157570 0.4470 +4436 164045 0.4870 +4436 254394 0.9380 +4436 254528 0.4440 +4436 286257 0.9180 +4436 348654 0.5230 +4436 348995 0.4380 +4436 400566 0.4540 +4436 548593 0.6360 +4436 100533467 0.6170 +4436 105375355 0.5400 +4437 4438 0.5800 +4437 4439 0.6860 +4437 4595 0.8120 +4437 4609 0.4110 +4437 4683 0.4280 +4437 4913 0.7350 +4437 4915 0.4320 +4437 4968 0.9220 +4437 4978 0.4420 +4437 5111 0.9580 +4437 5290 0.4410 +4437 5378 0.9990 +4437 5395 0.9990 +4437 5422 0.4790 +4437 5423 0.4310 +4437 5424 0.9460 +4437 5425 0.4270 +4437 5426 0.8170 +4437 5429 0.6170 +4437 5591 0.8720 +4437 5728 0.4750 +4437 5810 0.4280 +4437 5876 0.4170 +4437 5883 0.5720 +4437 5884 0.4930 +4437 5886 0.4920 +4437 5887 0.8700 +4437 5888 0.7520 +4437 5889 0.5260 +4437 5890 0.6160 +4437 5892 0.6040 +4437 5893 0.7740 +4437 5917 0.4040 +4437 5932 0.4140 +4437 5980 0.6200 +4437 5981 0.4300 +4437 5982 0.6200 +4437 5983 0.4280 +4437 5984 0.5590 +4437 5985 0.4490 +4437 6117 0.8950 +4437 6118 0.7580 +4437 6119 0.7110 +4437 6596 0.5140 +4437 6742 0.4160 +4437 6996 0.5660 +4437 7014 0.4200 +4437 7048 0.5920 +4437 7150 0.4120 +4437 7156 0.4950 +4437 7157 0.5410 +4437 7158 0.6160 +4437 7374 0.5860 +4437 7486 0.6980 +4437 7507 0.9040 +4437 7508 0.8260 +4437 7515 0.7440 +4437 7516 0.4860 +4437 7517 0.6470 +4437 7518 0.8590 +4437 7520 0.9000 +4437 7799 0.6040 +4437 7905 0.5720 +4437 8313 0.4200 +4437 8361 0.5670 +4437 8930 0.4970 +4437 9126 0.4560 +4437 9150 0.4480 +4437 9156 0.9860 +4437 9400 0.4680 +4437 9401 0.5760 +4437 9765 0.5040 +4437 9937 0.4230 +4437 10013 0.4190 +4437 10111 0.7120 +4437 10535 0.4470 +4437 10714 0.4530 +4437 10973 0.6220 +4437 11169 0.5550 +4437 11200 0.5770 +4437 22800 0.4300 +4437 22909 0.4940 +4437 23028 0.7710 +4437 23047 0.4520 +4437 23137 0.4280 +4437 23186 0.7260 +4437 23583 0.4510 +4437 23626 0.5410 +4437 25788 0.4750 +4437 25842 0.4650 +4437 27030 0.9990 +4437 27343 0.4810 +4437 29886 0.9940 +4437 29935 0.5410 +4437 51008 0.5520 +4437 51317 0.7440 +4437 51455 0.4690 +4437 54386 0.5680 +4437 54840 0.4410 +4437 54894 0.4330 +4437 55109 0.5370 +4437 55215 0.7050 +4437 55247 0.4770 +4437 56852 0.5580 +4437 56916 0.4470 +4437 57697 0.8220 +4437 64421 0.8160 +4437 79621 0.4210 +4437 79661 0.4810 +4437 79677 0.4520 +4437 79728 0.8020 +4437 79840 0.8190 +4437 79915 0.4770 +4437 79968 0.6280 +4437 80010 0.4300 +4437 80198 0.8380 +4437 83990 0.4100 +4437 84164 0.5500 +4437 84224 0.4100 +4437 84464 0.9670 +4437 84893 0.4470 +4437 91419 0.7330 +4437 91442 0.5350 +4437 123263 0.4530 +4437 125150 0.7670 +4437 126074 0.7550 +4437 128710 0.7080 +4437 140733 0.4180 +4437 146956 0.6830 +4437 200558 0.4550 +4437 200895 0.5520 +4437 201163 0.5460 +4437 252969 0.4070 +4437 254394 0.8240 +4437 286257 0.7600 +4437 348654 0.4620 +4437 548593 0.8350 +4437 100533467 0.6060 +4437 105375355 0.5400 +4438 4439 0.9990 +4438 5111 0.5790 +4438 5378 0.9420 +4438 5395 0.9320 +4438 5424 0.5000 +4438 5426 0.4910 +4438 5443 0.4180 +4438 5876 0.4310 +4438 5885 0.6080 +4438 5888 0.9670 +4438 5889 0.5240 +4438 5890 0.4540 +4438 5893 0.5990 +4438 5980 0.4130 +4438 6117 0.7340 +4438 6118 0.6060 +4438 6119 0.6600 +4438 6847 0.6880 +4438 7141 0.4670 +4438 7142 0.4510 +4438 7156 0.8250 +4438 7411 0.9110 +4438 7486 0.5090 +4438 7517 0.5220 +4438 7782 0.4210 +4438 8290 0.5990 +4438 8317 0.4060 +4438 8340 0.5070 +4438 8341 0.5070 +4438 8342 0.5070 +4438 8345 0.5070 +4438 8347 0.5070 +4438 8348 0.5070 +4438 8349 0.5250 +4438 8361 0.5490 +4438 8438 0.4010 +4438 8841 0.4850 +4438 8970 0.5070 +4438 9126 0.5740 +4438 9156 0.7530 +4438 9319 0.5700 +4438 9401 0.5880 +4438 9985 0.8110 +4438 10734 0.6280 +4438 10815 0.4580 +4438 10973 0.4020 +4438 11077 0.4210 +4438 11144 0.8630 +4438 22911 0.4160 +4438 23137 0.5810 +4438 23244 0.6940 +4438 23516 0.4870 +4438 23626 0.8910 +4438 25788 0.4210 +4438 27030 0.9950 +4438 27127 0.5170 +4438 27173 0.8240 +4438 29893 0.6350 +4438 50511 0.9470 +4438 51750 0.4940 +4438 54145 0.5070 +4438 56158 0.4810 +4438 56159 0.8250 +4438 56979 0.5670 +4438 57697 0.8400 +4438 63979 0.4810 +4438 64779 0.4050 +4438 79008 0.4230 +4438 79677 0.5730 +4438 80010 0.5730 +4438 80198 0.8330 +4438 80349 0.4910 +4438 84057 0.7950 +4438 84072 0.9420 +4438 84464 0.5080 +4438 84515 0.6310 +4438 84690 0.4990 +4438 85236 0.5070 +4438 91252 0.4870 +4438 91442 0.4980 +4438 91754 0.4440 +4438 93426 0.6370 +4438 113510 0.5070 +4438 124817 0.7210 +4438 126074 0.4590 +4438 128312 0.5070 +4438 135935 0.4260 +4438 146956 0.6020 +4438 150280 0.9360 +4438 150365 0.4760 +4438 157777 0.6180 +4438 158401 0.7600 +4438 164045 0.9830 +4438 254394 0.5800 +4438 254528 0.7050 +4438 255626 0.5230 +4438 256006 0.4010 +4438 256126 0.5460 +4438 283677 0.6980 +4438 285498 0.8240 +4438 317761 0.5110 +4438 348654 0.4610 +4438 388649 0.8630 +4438 548593 0.5890 +4438 642636 0.6260 +4438 729475 0.4120 +4438 100507650 0.6230 +4438 100533467 0.4330 +4439 4524 0.4120 +4439 5111 0.5820 +4439 5378 0.9150 +4439 5395 0.9490 +4439 5424 0.5070 +4439 5426 0.4710 +4439 5884 0.6160 +4439 5885 0.5250 +4439 5888 0.9150 +4439 5890 0.4720 +4439 5893 0.5800 +4439 5980 0.4070 +4439 5985 0.4870 +4439 6117 0.6890 +4439 6118 0.6060 +4439 6119 0.6000 +4439 6847 0.4660 +4439 7156 0.7860 +4439 7486 0.4270 +4439 7517 0.4740 +4439 7520 0.4640 +4439 7917 0.5240 +4439 8284 0.6510 +4439 8290 0.5820 +4439 8340 0.5260 +4439 8341 0.5480 +4439 8342 0.5130 +4439 8345 0.5130 +4439 8347 0.5130 +4439 8348 0.5130 +4439 8349 0.5400 +4439 8361 0.5610 +4439 8970 0.5160 +4439 9156 0.7210 +4439 9401 0.5180 +4439 9985 0.7060 +4439 10557 0.4010 +4439 10734 0.4690 +4439 11144 0.7590 +4439 23495 0.4450 +4439 23516 0.5610 +4439 23626 0.8560 +4439 27030 0.9860 +4439 27173 0.7510 +4439 29893 0.4830 +4439 50511 0.6310 +4439 51750 0.4300 +4439 54145 0.5130 +4439 55355 0.9320 +4439 56159 0.7490 +4439 56652 0.4340 +4439 57697 0.7900 +4439 63943 0.5560 +4439 80010 0.5010 +4439 80198 0.7650 +4439 80737 0.4720 +4439 81037 0.4790 +4439 83990 0.5630 +4439 84057 0.8040 +4439 84072 0.7720 +4439 84515 0.5840 +4439 84690 0.4060 +4439 84893 0.4150 +4439 85236 0.5130 +4439 91442 0.4250 +4439 93426 0.4770 +4439 115650 0.5060 +4439 124817 0.7640 +4439 128312 0.5130 +4439 133482 0.4020 +4439 135935 0.4480 +4439 146956 0.5600 +4439 150280 0.7800 +4439 158401 0.5840 +4439 164045 0.9560 +4439 254394 0.6470 +4439 254528 0.5670 +4439 255626 0.5130 +4439 256126 0.5300 +4439 283677 0.4600 +4439 285498 0.7650 +4439 342977 0.4770 +4439 344018 0.4280 +4439 348654 0.4670 +4439 388649 0.8100 +4439 401251 0.4270 +4439 548593 0.4410 +4439 642636 0.4500 +4439 100507650 0.4230 +4440 4605 0.5550 +4440 4609 0.4310 +4440 4851 0.6710 +4440 4857 0.4590 +4440 4928 0.5180 +4440 5080 0.5530 +4440 5460 0.5750 +4440 5770 0.4310 +4440 5928 0.5790 +4440 5931 0.6670 +4440 6091 0.5240 +4440 6092 0.5610 +4440 6311 0.4200 +4440 6427 0.4880 +4440 6431 0.4240 +4440 6656 0.5550 +4440 6657 0.8030 +4440 6658 0.4340 +4440 6662 0.4690 +4440 6921 0.4990 +4440 6923 0.4990 +4440 8453 0.5150 +4440 8549 0.6250 +4440 8650 0.7990 +4440 8842 0.6780 +4440 9201 0.5370 +4440 9253 0.8020 +4440 9314 0.4140 +4440 9355 0.6480 +4440 9429 0.4310 +4440 9978 0.4990 +4440 10215 0.4750 +4440 10562 0.5180 +4440 10763 0.7750 +4440 10929 0.4280 +4440 23053 0.5040 +4440 23283 0.6410 +4440 23367 0.7680 +4440 23369 0.4520 +4440 26018 0.5910 +4440 26528 0.9110 +4440 26986 0.5530 +4440 29896 0.4690 +4440 30000 0.5370 +4440 55957 0.6860 +4440 56956 0.5540 +4440 60680 0.4170 +4440 64094 0.4770 +4440 64221 0.8220 +4440 64506 0.7700 +4440 79727 0.4810 +4440 79882 0.8290 +4440 79923 0.5750 +4440 85437 0.4070 +4440 92312 0.4830 +4440 124540 0.9450 +4440 132660 0.6650 +4440 146713 0.6630 +4440 286826 0.6700 +4440 100133941 0.4320 +4440 100532731 0.6270 +4477 4824 0.7230 +4477 5104 0.4700 +4477 5284 0.4460 +4477 5621 0.8020 +4477 5631 0.9190 +4477 5634 0.8980 +4477 5635 0.6520 +4477 5636 0.6490 +4477 5660 0.4040 +4477 6015 0.6950 +4477 6041 0.4290 +4477 6045 0.4360 +4477 6191 0.4260 +4477 6406 0.4490 +4477 6407 0.5300 +4477 6590 0.4500 +4477 6690 0.5530 +4477 6716 0.4890 +4477 6928 0.5100 +4477 7047 0.8500 +4477 7113 0.5910 +4477 7180 0.4170 +4477 7372 0.4750 +4477 7528 0.4370 +4477 7703 0.4990 +4477 8000 0.4770 +4477 8031 0.6070 +4477 8895 0.5030 +4477 9066 0.4890 +4477 9518 0.4290 +4477 10321 0.7260 +4477 10481 0.4200 +4477 10972 0.4630 +4477 22853 0.7260 +4477 22955 0.6710 +4477 23295 0.4630 +4477 23301 0.6670 +4477 23600 0.5990 +4477 23627 0.5070 +4477 50863 0.4930 +4477 55022 0.4890 +4477 55190 0.5790 +4477 57704 0.4400 +4477 60528 0.4820 +4477 79054 0.5640 +4477 79689 0.5010 +4477 84733 0.4990 +4477 85414 0.7690 +4477 92747 0.5290 +4477 221476 0.8440 +4477 221823 0.9260 +4477 221895 0.6670 +4477 261729 0.5440 +4477 503542 0.4700 +4477 692094 0.7770 +4477 100532731 0.8790 +4478 4627 0.9410 +4478 4641 0.8240 +4478 4647 0.8960 +4478 4659 0.5800 +4478 4688 0.4930 +4478 4689 0.6540 +4478 4771 0.4830 +4478 4780 0.4010 +4478 4869 0.6450 +4478 5175 0.5700 +4478 5216 0.5230 +4478 5295 0.5480 +4478 5335 0.6140 +4478 5339 0.5510 +4478 5341 0.7490 +4478 5357 0.8620 +4478 5420 0.5760 +4478 5493 0.6870 +4478 5495 0.5270 +4478 5500 0.5430 +4478 5552 0.5530 +4478 5566 0.5440 +4478 5567 0.5390 +4478 5568 0.5390 +4478 5573 0.5370 +4478 5581 0.9070 +4478 5599 0.5340 +4478 5728 0.7040 +4478 5738 0.5900 +4478 5747 0.5860 +4478 5756 0.8210 +4478 5829 0.7650 +4478 5868 0.4210 +4478 5880 0.4880 +4478 5903 0.5480 +4478 5962 0.9990 +4478 6093 0.5210 +4478 6238 0.5090 +4478 6383 0.9120 +4478 6386 0.4300 +4478 6402 0.8630 +4478 6404 0.7930 +4478 6464 0.6010 +4478 6548 0.9970 +4478 6550 0.7090 +4478 6557 0.4770 +4478 6558 0.4900 +4478 6624 0.4490 +4478 6677 0.4100 +4478 6693 0.9700 +4478 6696 0.5360 +4478 6709 0.6880 +4478 6711 0.6540 +4478 6714 0.7480 +4478 6774 0.6650 +4478 6775 0.7610 +4478 6793 0.5590 +4478 6801 0.5740 +4478 6850 0.7450 +4478 7082 0.6530 +4478 7086 0.4390 +4478 7087 0.5240 +4478 7094 0.7180 +4478 7132 0.5370 +4478 7157 0.4140 +4478 7170 0.6470 +4478 7171 0.6550 +4478 7175 0.5090 +4478 7248 0.6370 +4478 7251 0.5470 +4478 7408 0.8020 +4478 7409 0.6560 +4478 7412 0.9820 +4478 7414 0.9510 +4478 7430 0.9990 +4478 7431 0.4840 +4478 7454 0.6010 +4478 8395 0.4180 +4478 8407 0.4720 +4478 8428 0.4610 +4478 8496 0.5360 +4478 8500 0.4070 +4478 8544 0.6000 +4478 8573 0.6440 +4478 8766 0.7950 +4478 8772 0.5040 +4478 8795 0.4750 +4478 8826 0.4050 +4478 8878 0.5430 +4478 8976 0.6880 +4478 9351 0.9080 +4478 9368 0.9990 +4478 9448 0.6220 +4478 9451 0.5280 +4478 9475 0.6980 +4478 9564 0.5600 +4478 9644 0.4650 +4478 9648 0.5080 +4478 9727 0.4790 +4478 9750 0.8070 +4478 9784 0.4840 +4478 9948 0.4760 +4478 10097 0.4120 +4478 10163 0.4010 +4478 10207 0.6180 +4478 10270 0.4120 +4478 10342 0.6160 +4478 10630 0.8370 +4478 10755 0.4670 +4478 10817 0.5030 +4478 10818 0.5030 +4478 10899 0.4390 +4478 10979 0.4500 +4478 11078 0.5240 +4478 11151 0.5150 +4478 11215 0.4090 +4478 11216 0.4170 +4478 11314 0.4360 +4478 11344 0.6200 +4478 22841 0.4910 +4478 22872 0.6310 +4478 22918 0.6900 +4478 23022 0.4740 +4478 23114 0.5840 +4478 23136 0.6270 +4478 23336 0.4230 +4478 23418 0.6590 +4478 23499 0.5340 +4478 25794 0.8110 +4478 25861 0.7270 +4478 26051 0.6570 +4478 26151 0.5050 +4478 26499 0.6510 +4478 26960 0.4170 +4478 27436 0.5280 +4478 51168 0.7730 +4478 51466 0.4130 +4478 51765 0.4280 +4478 51806 0.6000 +4478 53335 0.5020 +4478 53405 0.8410 +4478 53904 0.5420 +4478 55107 0.5500 +4478 55612 0.5000 +4478 56288 0.4140 +4478 57111 0.4750 +4478 57448 0.5340 +4478 57468 0.4120 +4478 57471 0.6980 +4478 57716 0.4860 +4478 64398 0.6410 +4478 64787 0.6030 +4478 79026 0.4900 +4478 79180 0.4570 +4478 80223 0.4510 +4478 80304 0.4990 +4478 80342 0.4470 +4478 81609 0.4500 +4478 83547 0.6740 +4478 83660 0.7480 +4478 83706 0.5220 +4478 83715 0.7120 +4478 84958 0.4080 +4478 85477 0.4970 +4478 90627 0.5370 +4478 90678 0.4920 +4478 91860 0.6000 +4478 92359 0.5490 +4478 93185 0.6360 +4478 93663 0.4400 +4478 94025 0.4360 +4478 94122 0.4110 +4478 103910 0.4500 +4478 118987 0.5040 +4478 120892 0.9520 +4478 124599 0.4260 +4478 129446 0.8050 +4478 140469 0.5200 +4478 143903 0.5130 +4478 163688 0.5990 +4478 169166 0.5230 +4478 286204 0.5890 +4478 286262 0.8130 +4478 339768 0.5250 +4478 340348 0.4650 +4478 342035 0.4180 +4478 345456 0.4310 +4478 375189 0.4260 +4478 389207 0.8000 +4478 494513 0.4990 +4478 643226 0.8000 +4478 653361 0.7050 +4478 728378 0.5280 +4481 4791 0.4060 +4481 4818 0.6100 +4481 4973 0.7390 +4481 5125 0.4090 +4481 5133 0.5050 +4481 5360 0.6030 +4481 5444 0.5810 +4481 5468 0.4060 +4481 5589 0.6320 +4481 5609 0.4330 +4481 5651 0.5110 +4481 5788 0.4660 +4481 6041 0.7020 +4481 6280 0.5170 +4481 6288 0.5750 +4481 6289 0.5760 +4481 6291 0.5400 +4481 6347 0.5860 +4481 6348 0.4270 +4481 6355 0.4190 +4481 6361 0.4360 +4481 6362 0.5930 +4481 6367 0.5030 +4481 6387 0.4270 +4481 6614 0.6460 +4481 6716 0.4650 +4481 6772 0.4220 +4481 6774 0.4450 +4481 7040 0.4020 +4481 7097 0.7320 +4481 7099 0.5820 +4481 7113 0.4270 +4481 7124 0.5230 +4481 7184 0.5510 +4481 7189 0.4290 +4481 7412 0.4170 +4481 7436 0.5840 +4481 7450 0.4880 +4481 7941 0.6250 +4481 8504 0.5420 +4481 8542 0.5660 +4481 8578 0.4580 +4481 8685 0.5700 +4481 9332 0.5450 +4481 10461 0.4630 +4481 10462 0.4080 +4481 10575 0.5720 +4481 11012 0.4050 +4481 11326 0.5290 +4481 22853 0.4180 +4481 23127 0.5720 +4481 23166 0.5170 +4481 23484 0.5310 +4481 23643 0.4560 +4481 26998 0.5590 +4481 29126 0.4860 +4481 30816 0.5080 +4481 30835 0.4960 +4481 50943 0.4210 +4481 51338 0.5060 +4481 51435 0.4150 +4481 51449 0.5620 +4481 51599 0.5810 +4481 54209 0.6770 +4481 55829 0.5470 +4481 55911 0.5640 +4481 55937 0.5490 +4481 60528 0.7130 +4481 64581 0.5370 +4481 79135 0.5400 +4481 80380 0.4170 +4481 84868 0.4780 +4481 91937 0.4820 +4481 116519 0.5530 +4481 131450 0.4360 +4481 405754 0.5130 +4481 100528017 0.5400 +4482 4548 0.4920 +4482 4595 0.4190 +4482 5034 0.4790 +4482 5428 0.5330 +4482 6389 0.4610 +4482 6647 0.4880 +4482 6648 0.5460 +4482 6649 0.4090 +4482 6821 0.4600 +4482 7021 0.4830 +4482 7284 0.4070 +4482 7295 0.9530 +4482 7296 0.5320 +4482 8192 0.4800 +4482 8565 0.4940 +4482 8658 0.4510 +4482 9060 0.4110 +4482 9061 0.4090 +4482 9258 0.4280 +4482 9378 0.4250 +4482 9380 0.4080 +4482 9601 0.4800 +4482 9728 0.4790 +4482 10130 0.4790 +4482 10190 0.5030 +4482 10269 0.4130 +4482 10587 0.5110 +4482 10721 0.5270 +4482 10806 0.4790 +4482 10845 0.5490 +4482 10954 0.4820 +4482 22921 0.9780 +4482 23017 0.4270 +4482 23071 0.4830 +4482 25824 0.4120 +4482 25828 0.8940 +4482 51022 0.7940 +4482 51031 0.4270 +4482 51061 0.4780 +4482 51314 0.7160 +4482 51714 0.5360 +4482 51734 0.9100 +4482 54431 0.6490 +4482 54495 0.4800 +4482 55002 0.4010 +4482 55052 0.4060 +4482 55247 0.4400 +4482 56255 0.4940 +4482 57544 0.4780 +4482 60678 0.4520 +4482 64714 0.4780 +4482 66036 0.4080 +4482 79048 0.6180 +4482 80273 0.4910 +4482 81542 0.4830 +4482 81567 0.4800 +4482 81570 0.4400 +4482 83595 0.8630 +4482 83642 0.6050 +4482 84203 0.6020 +4482 84245 0.4430 +4482 84693 0.4540 +4482 89866 0.4470 +4482 90353 0.4700 +4482 94137 0.9440 +4482 113510 0.5270 +4482 114112 0.4450 +4482 115209 0.4050 +4482 121506 0.4780 +4482 127018 0.5470 +4482 129787 0.5200 +4482 132789 0.4520 +4482 134266 0.4100 +4482 200895 0.4400 +4482 204474 0.5200 +4482 253827 0.9900 +4482 255220 0.6020 +4482 257202 0.4850 +4482 284716 0.4230 +4482 286046 0.4950 +4482 347736 0.5580 +4482 353497 0.5270 +4482 374659 0.4910 +4482 493869 0.4950 +4485 4486 0.9990 +4485 4914 0.6720 +4485 6426 0.5950 +4485 6692 0.8470 +4485 6768 0.5080 +4485 6901 0.4500 +4485 7450 0.5010 +4485 9113 0.6760 +4485 9407 0.4030 +4485 10507 0.4610 +4485 10653 0.8180 +4485 26151 0.4450 +4485 60485 0.8170 +4485 63891 0.4010 +4485 92597 0.4810 +4485 147199 0.4160 +4485 653486 0.4150 +4486 4893 0.4110 +4486 5361 0.4810 +4486 5364 0.7490 +4486 5493 0.4060 +4486 5494 0.4290 +4486 5954 0.4490 +4486 6383 0.4070 +4486 6405 0.5790 +4486 6426 0.8490 +4486 6428 0.4020 +4486 6464 0.4700 +4486 6550 0.4110 +4486 6627 0.4640 +4486 6677 0.8120 +4486 6768 0.5690 +4486 7047 0.4140 +4486 7162 0.4590 +4486 7316 0.4380 +4486 7529 0.4270 +4486 7531 0.4270 +4486 7532 0.4270 +4486 7533 0.4440 +4486 7534 0.4380 +4486 7869 0.6310 +4486 8692 0.8730 +4486 9397 0.4080 +4486 9846 0.7040 +4486 10505 0.4500 +4486 10507 0.4070 +4486 10971 0.5740 +4486 11187 0.4200 +4486 11214 0.4140 +4486 23624 0.5950 +4486 29903 0.4350 +4486 29984 0.4380 +4486 30816 0.4980 +4486 54509 0.4400 +4486 57556 0.6110 +4486 84896 0.5880 +4487 4488 0.9570 +4487 4618 0.4550 +4487 4654 0.6550 +4487 4904 0.4450 +4487 4929 0.4210 +4487 5075 0.6870 +4487 5076 0.4560 +4487 5077 0.7190 +4487 5083 0.9830 +4487 5087 0.5410 +4487 5308 0.5790 +4487 5396 0.5080 +4487 5460 0.4360 +4487 5727 0.4150 +4487 5818 0.6520 +4487 6423 0.5610 +4487 6424 0.4360 +4487 6469 0.7830 +4487 6495 0.7160 +4487 6591 0.5770 +4487 6615 0.7460 +4487 6656 0.4400 +4487 6657 0.5710 +4487 6658 0.4170 +4487 6662 0.6310 +4487 6663 0.5760 +4487 6667 0.4270 +4487 6908 0.8060 +4487 6909 0.5080 +4487 6910 0.4110 +4487 6926 0.5140 +4487 7021 0.4040 +4487 7039 0.5970 +4487 7043 0.8340 +4487 7089 0.4290 +4487 7157 0.5410 +4487 7291 0.5580 +4487 7468 0.4160 +4487 7471 0.5450 +4487 7473 0.4090 +4487 7474 0.4660 +4487 7476 0.5710 +4487 7480 0.4730 +4487 7481 0.5450 +4487 7545 0.6220 +4487 7849 0.4250 +4487 8190 0.4070 +4487 8313 0.6360 +4487 8554 0.4540 +4487 8646 0.5260 +4487 8817 0.5000 +4487 8822 0.4080 +4487 8823 0.4250 +4487 9241 0.6730 +4487 9355 0.7800 +4487 9464 0.6710 +4487 10763 0.4020 +4487 10913 0.5720 +4487 10919 0.5190 +4487 22943 0.4240 +4487 23133 0.6170 +4487 23310 0.5520 +4487 23314 0.7220 +4487 23566 0.4140 +4487 26281 0.4400 +4487 26468 0.7380 +4487 26585 0.4870 +4487 27006 0.4340 +4487 27022 0.6450 +4487 27065 0.5570 +4487 28986 0.4120 +4487 50945 0.6410 +4487 51176 0.8290 +4487 51804 0.4400 +4487 53407 0.6240 +4487 54551 0.5660 +4487 54892 0.5450 +4487 55351 0.4040 +4487 56033 0.6590 +4487 56034 0.4610 +4487 63973 0.6980 +4487 64321 0.4870 +4487 64388 0.4150 +4487 64651 0.8450 +4487 79190 0.4180 +4487 79191 0.4810 +4487 79192 0.4330 +4487 79727 0.4910 +4487 80326 0.7600 +4487 83716 0.4310 +4487 84864 0.4300 +4487 89780 0.4240 +4487 114335 0.4570 +4487 116039 0.8730 +4487 117581 0.4440 +4487 121340 0.4180 +4487 128178 0.5890 +4487 132884 0.6220 +4487 347853 0.5820 +4487 431707 0.8530 +4488 4763 0.4030 +4488 5077 0.4740 +4488 5083 0.7560 +4488 5308 0.6000 +4488 5396 0.4810 +4488 5727 0.4030 +4488 6469 0.6360 +4488 6495 0.6160 +4488 6496 0.4670 +4488 6591 0.4710 +4488 6657 0.4370 +4488 6662 0.6270 +4488 6670 0.4400 +4488 6696 0.5970 +4488 6722 0.4890 +4488 6772 0.5450 +4488 6876 0.4450 +4488 6909 0.6500 +4488 6910 0.6030 +4488 6926 0.6940 +4488 7022 0.5600 +4488 7291 0.9010 +4488 7473 0.4710 +4488 7474 0.4750 +4488 7475 0.5270 +4488 7476 0.4350 +4488 7481 0.5370 +4488 8313 0.5010 +4488 8456 0.5260 +4488 8600 0.4360 +4488 8646 0.4380 +4488 8817 0.4620 +4488 9241 0.5180 +4488 9355 0.4720 +4488 9464 0.6590 +4488 9500 0.4660 +4488 10117 0.4730 +4488 10273 0.5470 +4488 10767 0.4650 +4488 11059 0.4990 +4488 11266 0.5180 +4488 22943 0.5060 +4488 23013 0.8920 +4488 23314 0.5640 +4488 25928 0.4810 +4488 26190 0.4350 +4488 26281 0.4200 +4488 26468 0.4770 +4488 27022 0.4260 +4488 51176 0.5690 +4488 55553 0.4810 +4488 59269 0.5450 +4488 60529 0.4270 +4488 64783 0.6430 +4488 66000 0.5140 +4488 79191 0.4640 +4488 80139 0.5170 +4488 89780 0.4610 +4488 93166 0.6130 +4488 116039 0.5230 +4488 117581 0.6420 +4488 121340 0.7140 +4488 347853 0.5950 +4488 392255 0.4740 +4488 431707 0.5620 +4489 4493 0.4790 +4489 4495 0.6810 +4489 4496 0.6850 +4489 4499 0.4810 +4489 4501 0.6770 +4489 4502 0.4290 +4489 4520 0.5490 +4489 5320 0.4290 +4489 5770 0.4030 +4489 6005 0.4370 +4489 7157 0.6330 +4489 7779 0.6160 +4489 9248 0.4540 +4489 9531 0.6520 +4489 9532 0.6350 +4489 27173 0.4420 +4489 64924 0.4360 +4489 148268 0.4450 +4490 4495 0.6410 +4490 4496 0.6020 +4490 4501 0.5420 +4490 5320 0.4930 +4490 5770 0.4430 +4490 7779 0.4480 +4493 4494 0.7970 +4493 4495 0.7950 +4493 4496 0.9990 +4493 4499 0.8530 +4493 4501 0.7980 +4493 4502 0.8290 +4493 4504 0.8910 +4493 4520 0.8910 +4493 4780 0.4890 +4493 4891 0.6130 +4493 5033 0.4290 +4493 5554 0.4440 +4493 6556 0.4130 +4493 6622 0.4540 +4493 6647 0.4970 +4493 6678 0.5080 +4493 6927 0.5480 +4493 7124 0.4460 +4493 7157 0.6790 +4493 7276 0.5700 +4493 7295 0.5510 +4493 7779 0.7910 +4493 7780 0.6200 +4493 7781 0.4910 +4493 7782 0.5770 +4493 7922 0.4930 +4493 8029 0.5230 +4493 8974 0.5620 +4493 9315 0.4680 +4493 9633 0.8700 +4493 9973 0.4540 +4493 10063 0.7540 +4493 23516 0.7680 +4493 25800 0.4640 +4493 27173 0.6110 +4493 30816 0.4360 +4493 54205 0.4170 +4493 55532 0.5180 +4493 55630 0.4150 +4493 55676 0.4550 +4493 57181 0.4940 +4493 57829 0.4520 +4493 60529 0.4310 +4493 64116 0.5960 +4493 64924 0.5940 +4493 84560 0.8200 +4493 133482 0.4320 +4493 148867 0.5380 +4493 200895 0.5160 +4493 257202 0.6720 +4493 283375 0.4510 +4493 405754 0.4320 +4493 493869 0.6710 +4493 645745 0.7860 +4494 4495 0.9110 +4494 4496 0.9920 +4494 4499 0.8580 +4494 4501 0.9950 +4494 4502 0.7720 +4494 5320 0.6460 +4494 5770 0.4420 +4494 7779 0.5270 +4494 645745 0.7440 +4495 4496 0.9990 +4495 4499 0.9040 +4495 4501 0.7900 +4495 4502 0.7830 +4495 4520 0.4020 +4495 7157 0.5010 +4495 7779 0.4310 +4495 8031 0.4180 +4495 9694 0.4070 +4495 55847 0.5070 +4495 84651 0.5100 +4495 645745 0.6620 +4496 4499 0.8690 +4496 4501 0.8600 +4496 4502 0.7880 +4496 4520 0.4320 +4496 5320 0.5250 +4496 5770 0.4540 +4496 7779 0.4350 +4496 10332 0.4330 +4496 84651 0.5290 +4496 645745 0.8640 +4499 4501 0.8660 +4499 4502 0.6620 +4499 645745 0.5580 +4501 4502 0.8660 +4501 4520 0.4580 +4501 5320 0.5280 +4501 5770 0.4430 +4501 7779 0.6110 +4501 10439 0.4310 +4501 11130 0.4230 +4501 23201 0.5440 +4501 645745 0.8610 +4502 4504 0.4280 +4502 4520 0.5130 +4502 4609 0.5150 +4502 4751 0.4020 +4502 5320 0.5720 +4502 5443 0.4470 +4502 6772 0.6010 +4502 6773 0.4750 +4502 6774 0.5420 +4502 7157 0.5580 +4502 7779 0.6220 +4502 8407 0.5230 +4502 9315 0.5570 +4502 9946 0.7670 +4502 22823 0.7630 +4502 27173 0.4150 +4502 30061 0.5470 +4502 79618 0.5760 +4502 84651 0.5670 +4502 91966 0.8260 +4502 114548 0.4670 +4502 645745 0.5490 +4504 5320 0.4180 +4504 6529 0.4050 +4504 6620 0.4770 +4504 7276 0.4130 +4504 7779 0.5500 +4504 7781 0.6610 +4504 7782 0.4580 +4504 9362 0.4020 +4504 9973 0.4330 +4504 23017 0.4020 +4504 23620 0.4170 +4504 51129 0.4350 +4504 51231 0.4450 +4504 84560 0.4200 +4504 93377 0.4380 +4504 493869 0.4040 +4504 645745 0.7250 +4507 4771 0.4320 +4507 4809 0.5230 +4507 4860 0.5490 +4507 4907 0.8690 +4507 4935 0.4300 +4507 4948 0.6230 +4507 4953 0.5890 +4507 4968 0.8070 +4507 5226 0.5640 +4507 5238 0.5160 +4507 6189 0.5620 +4507 6611 0.9860 +4507 6634 0.4580 +4507 6723 0.9850 +4507 6775 0.7580 +4507 6888 0.4300 +4507 7015 0.5600 +4507 7157 0.4630 +4507 7299 0.7190 +4507 7306 0.6650 +4507 7372 0.4570 +4507 7378 0.7660 +4507 7498 0.6460 +4507 8314 0.4980 +4507 8398 0.7710 +4507 8833 0.7160 +4507 9615 0.7230 +4507 10137 0.4250 +4507 10210 0.4570 +4507 10419 0.7710 +4507 10557 0.4280 +4507 10768 0.4580 +4507 11196 0.4330 +4507 23057 0.5490 +4507 23382 0.4770 +4507 23583 0.5290 +4507 27430 0.4270 +4507 27440 0.4100 +4507 29934 0.4260 +4507 30833 0.5940 +4507 50808 0.4140 +4507 51020 0.8120 +4507 51074 0.7430 +4507 51151 0.6460 +4507 51292 0.4880 +4507 51602 0.5210 +4507 51816 0.5320 +4507 54870 0.4660 +4507 55034 0.6650 +4507 55152 0.4670 +4507 55256 0.5510 +4507 55276 0.5280 +4507 55856 0.6050 +4507 55958 0.5240 +4507 56952 0.7310 +4507 56953 0.5880 +4507 57026 0.4140 +4507 58478 0.6200 +4507 63951 0.5670 +4507 64077 0.4090 +4507 64080 0.5720 +4507 64802 0.5870 +4507 79084 0.5770 +4507 81932 0.5790 +4507 83475 0.4750 +4507 83732 0.6650 +4507 84064 0.4130 +4507 84245 0.9910 +4507 90353 0.7950 +4507 92949 0.6810 +4507 113179 0.5290 +4507 134637 0.5330 +4507 140838 0.5790 +4507 144193 0.7420 +4507 151531 0.7570 +4507 154141 0.5580 +4507 161823 0.5210 +4507 221264 0.4020 +4507 283209 0.5130 +4507 283652 0.4300 +4507 283871 0.4100 +4507 349565 0.5550 +4508 4509 0.9990 +4508 4512 0.9980 +4508 4513 0.9990 +4508 4514 0.9990 +4508 4519 0.9990 +4508 4528 0.5310 +4508 4535 0.9990 +4508 4536 0.9990 +4508 4537 0.9950 +4508 4538 0.9990 +4508 4539 0.9990 +4508 4540 0.9990 +4508 4541 0.9950 +4508 4695 0.6020 +4508 4704 0.5050 +4508 4714 0.7600 +4508 4720 0.6870 +4508 4722 0.8050 +4508 4723 0.7090 +4508 4724 0.6690 +4508 4728 0.7330 +4508 4729 0.5950 +4508 4899 0.4350 +4508 5018 0.7080 +4508 5096 0.4150 +4508 5428 0.6340 +4508 5431 0.7200 +4508 5432 0.6990 +4508 5442 0.6170 +4508 5464 0.7700 +4508 5469 0.7370 +4508 5742 0.8840 +4508 5831 0.6580 +4508 5896 0.4520 +4508 5927 0.8900 +4508 6122 0.7520 +4508 6123 0.7310 +4508 6124 0.7030 +4508 6125 0.8670 +4508 6128 0.4770 +4508 6132 0.7300 +4508 6133 0.7370 +4508 6135 0.9390 +4508 6139 0.5620 +4508 6147 0.8300 +4508 6154 0.4110 +4508 6175 0.4920 +4508 6182 0.7500 +4508 6183 0.8140 +4508 6187 0.8280 +4508 6188 0.9140 +4508 6193 0.6220 +4508 6198 0.4280 +4508 6199 0.4080 +4508 6203 0.4670 +4508 6204 0.4140 +4508 6205 0.5510 +4508 6207 0.5690 +4508 6208 0.7040 +4508 6210 0.6420 +4508 6217 0.7030 +4508 6222 0.8850 +4508 6223 0.4120 +4508 6224 0.6990 +4508 6228 0.8080 +4508 6235 0.7790 +4508 6389 0.7430 +4508 6390 0.6820 +4508 6391 0.5930 +4508 6392 0.5020 +4508 6446 0.4080 +4508 6470 0.4260 +4508 6472 0.4520 +4508 6648 0.5590 +4508 6667 0.5150 +4508 6687 0.5300 +4508 6742 0.4470 +4508 6832 0.5860 +4508 6834 0.7800 +4508 7019 0.6690 +4508 7086 0.4220 +4508 7153 0.4090 +4508 7155 0.4130 +4508 7167 0.5150 +4508 7276 0.4160 +4508 7284 0.5920 +4508 7349 0.6880 +4508 7372 0.4620 +4508 7381 0.4320 +4508 7384 0.4350 +4508 7385 0.5160 +4508 7386 0.9110 +4508 7403 0.9120 +4508 7404 0.9120 +4508 7407 0.5450 +4508 7416 0.4810 +4508 7978 0.4080 +4508 8192 0.5390 +4508 8242 0.8900 +4508 8277 0.4220 +4508 8284 0.8900 +4508 8802 0.4900 +4508 8803 0.4520 +4508 9045 0.4170 +4508 9086 0.5680 +4508 9114 0.5780 +4508 9296 0.6950 +4508 9343 0.5260 +4508 9349 0.9000 +4508 9377 0.4660 +4508 9533 0.7010 +4508 9551 0.9970 +4508 9556 0.9970 +4508 9669 0.4500 +4508 9801 0.4790 +4508 9804 0.4100 +4508 9858 0.5210 +4508 9927 0.4480 +4508 10102 0.8860 +4508 10105 0.4460 +4508 10110 0.4080 +4508 10128 0.6300 +4508 10159 0.6600 +4508 10312 0.7630 +4508 10352 0.4160 +4508 10476 0.9990 +4508 10632 0.9960 +4508 10667 0.4340 +4508 10730 0.4520 +4508 10765 0.8900 +4508 10845 0.4210 +4508 10891 0.4520 +4508 10939 0.5270 +4508 11222 0.7310 +4508 23135 0.9140 +4508 23204 0.6390 +4508 23395 0.4250 +4508 23521 0.6300 +4508 23545 0.7670 +4508 23640 0.5670 +4508 23645 0.7670 +4508 25821 0.4700 +4508 26024 0.4010 +4508 26164 0.4400 +4508 26289 0.5810 +4508 27068 0.7690 +4508 27109 0.6700 +4508 28976 0.6050 +4508 28998 0.5970 +4508 29093 0.5530 +4508 29927 0.7890 +4508 50617 0.7680 +4508 50808 0.6270 +4508 51021 0.7640 +4508 51067 0.4880 +4508 51069 0.7320 +4508 51073 0.7060 +4508 51079 0.4020 +4508 51081 0.6590 +4508 51095 0.5010 +4508 51116 0.5280 +4508 51121 0.4070 +4508 51154 0.4560 +4508 51204 0.6140 +4508 51350 0.4180 +4508 51382 0.8110 +4508 51727 0.5880 +4508 54205 0.6160 +4508 54859 0.7290 +4508 54948 0.6290 +4508 54968 0.7920 +4508 54995 0.5030 +4508 55002 0.4190 +4508 55028 0.8460 +4508 55143 0.9750 +4508 55157 0.5410 +4508 55173 0.7050 +4508 55176 0.7890 +4508 55272 0.4470 +4508 55316 0.7750 +4508 55572 0.5200 +4508 55703 0.4270 +4508 55856 0.4520 +4508 56648 0.4110 +4508 56952 0.8160 +4508 56975 0.7600 +4508 57038 0.4090 +4508 57176 0.4850 +4508 60528 0.4900 +4508 63931 0.7940 +4508 64077 0.6500 +4508 64216 0.4390 +4508 64374 0.5700 +4508 64756 0.6260 +4508 64960 0.4170 +4508 64963 0.6360 +4508 64968 0.4770 +4508 64969 0.7000 +4508 64979 0.8050 +4508 65003 0.4140 +4508 65018 0.5190 +4508 65121 0.4090 +4508 79133 0.5040 +4508 79156 0.5260 +4508 79590 0.4150 +4508 79631 0.5290 +4508 79693 0.5080 +4508 81341 0.7890 +4508 81559 0.5110 +4508 81892 0.4410 +4508 84076 0.4220 +4508 84172 0.4230 +4508 84277 0.6480 +4508 84701 0.5050 +4508 84833 0.9980 +4508 84939 0.5030 +4508 85476 0.6160 +4508 87178 0.6060 +4508 90423 0.4670 +4508 91300 0.7670 +4508 91419 0.6010 +4508 91647 0.8450 +4508 91942 0.4710 +4508 92399 0.6950 +4508 93974 0.7930 +4508 115209 0.4130 +4508 122481 0.5810 +4508 126402 0.5750 +4508 129607 0.4060 +4508 137682 0.5350 +4508 139221 0.5030 +4508 140801 0.5670 +4508 143244 0.4110 +4508 155066 0.5400 +4508 158067 0.5810 +4508 163882 0.8000 +4508 219927 0.4150 +4508 221264 0.5810 +4508 267020 0.9660 +4508 285521 0.6300 +4508 347487 0.4890 +4508 374291 0.7850 +4508 388753 0.4290 +4508 440400 0.5430 +4508 641776 0.6250 +4508 643909 0.6250 +4508 728317 0.5030 +4508 728524 0.6250 +4508 100287482 0.4890 +4508 100526740 0.5400 +4508 100526842 0.5490 +4508 100996746 0.6250 +4508 105180390 0.6250 +4508 105180391 0.6250 +4509 4512 0.8970 +4509 4513 0.9380 +4509 4514 0.9570 +4509 4519 0.9430 +4509 4535 0.9250 +4509 4536 0.9500 +4509 4537 0.9740 +4509 4538 0.9700 +4509 4539 0.9900 +4509 4540 0.9710 +4509 4541 0.9500 +4509 4700 0.4320 +4509 4714 0.4010 +4509 4731 0.4060 +4509 5442 0.4030 +4509 5464 0.6500 +4509 5742 0.8820 +4509 5927 0.4670 +4509 6188 0.6620 +4509 7019 0.7880 +4509 7276 0.4030 +4509 7349 0.6970 +4509 7385 0.4230 +4509 7403 0.4670 +4509 7404 0.4670 +4509 8242 0.4680 +4509 8284 0.4670 +4509 9551 0.9940 +4509 9556 0.9970 +4509 10476 0.9980 +4509 10632 0.9890 +4509 10765 0.4670 +4509 23135 0.4750 +4509 23545 0.4130 +4509 27068 0.6540 +4509 27109 0.6690 +4509 50617 0.4240 +4509 54859 0.6680 +4509 54968 0.8760 +4509 55028 0.8030 +4509 55143 0.7040 +4509 56975 0.7150 +4509 60493 0.4160 +4509 64077 0.6900 +4509 64756 0.6540 +4509 84833 0.9970 +4509 91647 0.8790 +4509 93974 0.8770 +4509 118813 0.5500 +4509 267020 0.9350 +4509 100526740 0.5400 +4512 4513 0.9990 +4512 4514 0.9990 +4512 4519 0.9990 +4512 4535 0.9990 +4512 4536 0.9990 +4512 4537 0.9980 +4512 4538 0.9990 +4512 4539 0.9920 +4512 4540 0.9990 +4512 4541 0.9950 +4512 4694 0.8730 +4512 4695 0.8730 +4512 4696 0.8600 +4512 4697 0.9930 +4512 4698 0.8940 +4512 4700 0.8840 +4512 4701 0.8500 +4512 4702 0.8880 +4512 4704 0.9840 +4512 4705 0.9090 +4512 4706 0.8910 +4512 4707 0.8640 +4512 4708 0.8070 +4512 4709 0.8700 +4512 4710 0.8690 +4512 4711 0.8690 +4512 4712 0.9090 +4512 4713 0.8770 +4512 4714 0.9860 +4512 4715 0.8820 +4512 4716 0.8810 +4512 4717 0.8330 +4512 4718 0.8540 +4512 4720 0.9900 +4512 4722 0.9930 +4512 4723 0.9900 +4512 4724 0.9310 +4512 4725 0.8790 +4512 4726 0.8740 +4512 4728 0.9860 +4512 4729 0.9870 +4512 4731 0.8400 +4512 4790 0.4360 +4512 4899 0.5280 +4512 4967 0.6080 +4512 5016 0.4070 +4512 5018 0.5180 +4512 5162 0.4700 +4512 5188 0.6540 +4512 5428 0.5570 +4512 5431 0.5920 +4512 5442 0.6200 +4512 5468 0.6260 +4512 5625 0.7350 +4512 5664 0.5620 +4512 5742 0.6580 +4512 5896 0.5730 +4512 6010 0.4560 +4512 6132 0.4440 +4512 6133 0.4080 +4512 6175 0.4420 +4512 6182 0.5640 +4512 6183 0.5090 +4512 6187 0.4390 +4512 6188 0.5160 +4512 6193 0.6490 +4512 6222 0.4140 +4512 6228 0.4560 +4512 6341 0.9740 +4512 6389 0.9820 +4512 6390 0.9910 +4512 6391 0.9510 +4512 6392 0.4460 +4512 6647 0.7200 +4512 6648 0.6260 +4512 6649 0.6160 +4512 6668 0.4110 +4512 6742 0.4100 +4512 6832 0.4700 +4512 6834 0.8730 +4512 7019 0.7680 +4512 7167 0.5850 +4512 7276 0.4500 +4512 7284 0.6980 +4512 7349 0.7170 +4512 7350 0.5370 +4512 7351 0.7250 +4512 7352 0.5320 +4512 7372 0.4020 +4512 7381 0.9950 +4512 7384 0.9950 +4512 7385 0.9990 +4512 7386 0.9990 +4512 7388 0.9880 +4512 7389 0.4300 +4512 7416 0.6780 +4512 7450 0.4120 +4512 7837 0.4260 +4512 8050 0.4440 +4512 8192 0.5800 +4512 8290 0.4410 +4512 8356 0.4400 +4512 8454 0.4410 +4512 8540 0.5210 +4512 8801 0.5500 +4512 8802 0.4290 +4512 8803 0.6020 +4512 9156 0.5210 +4512 9167 0.9690 +4512 9361 0.5920 +4512 9377 0.9990 +4512 9512 0.8870 +4512 9563 0.4940 +4512 9582 0.5610 +4512 9804 0.6210 +4512 9927 0.5850 +4512 9978 0.4290 +4512 9997 0.9690 +4512 10059 0.4700 +4512 10063 0.4950 +4512 10102 0.4140 +4512 10128 0.6600 +4512 10553 0.5320 +4512 10730 0.5220 +4512 10891 0.8000 +4512 10975 0.9730 +4512 10994 0.8290 +4512 11315 0.4560 +4512 22868 0.5640 +4512 23155 0.6040 +4512 23203 0.7120 +4512 23521 0.4150 +4512 23567 0.8990 +4512 23645 0.9750 +4512 25994 0.5680 +4512 26024 0.4240 +4512 26061 0.8300 +4512 26284 0.4020 +4512 27089 0.9960 +4512 27159 0.4590 +4512 27350 0.5680 +4512 28958 0.8670 +4512 29087 0.8370 +4512 29090 0.4390 +4512 29796 0.9930 +4512 29803 0.4470 +4512 51024 0.4560 +4512 51069 0.4100 +4512 51079 0.8940 +4512 51081 0.5250 +4512 51106 0.4620 +4512 51204 0.8130 +4512 51350 0.8880 +4512 51751 0.4340 +4512 54205 0.9960 +4512 54516 0.4070 +4512 54539 0.8670 +4512 54851 0.5460 +4512 54948 0.4680 +4512 55034 0.4310 +4512 55180 0.5970 +4512 55526 0.5710 +4512 55669 0.5000 +4512 55687 0.4710 +4512 55703 0.5010 +4512 55753 0.5560 +4512 55967 0.8740 +4512 56624 0.4410 +4512 56901 0.5890 +4512 56907 0.4590 +4512 57143 0.5540 +4512 57379 0.5480 +4512 57407 0.5340 +4512 58510 0.7220 +4512 60489 0.5750 +4512 64111 0.9600 +4512 64216 0.4680 +4512 65018 0.4550 +4512 79002 0.8250 +4512 79068 0.4180 +4512 79893 0.5130 +4512 79934 0.5810 +4512 80012 0.4950 +4512 80195 0.5310 +4512 81341 0.9800 +4512 81892 0.4140 +4512 83475 0.7960 +4512 83641 0.5400 +4512 84172 0.4980 +4512 84419 0.5660 +4512 84501 0.4910 +4512 84701 0.9610 +4512 84886 0.9330 +4512 84939 0.7740 +4512 84987 0.7090 +4512 90956 0.5600 +4512 91300 0.9750 +4512 123346 0.4340 +4512 125965 0.9400 +4512 126328 0.8630 +4512 137902 0.4170 +4512 139221 0.7740 +4512 140564 0.5480 +4512 164668 0.5620 +4512 170712 0.8520 +4512 192286 0.5070 +4512 197257 0.5130 +4512 200315 0.5640 +4512 200316 0.5790 +4512 203054 0.5540 +4512 254042 0.4250 +4512 283459 0.8090 +4512 285521 0.4890 +4512 341947 0.6580 +4512 374291 0.9770 +4512 388753 0.9030 +4512 440093 0.4410 +4512 440567 0.9280 +4512 440686 0.4410 +4512 613227 0.4340 +4512 653604 0.4450 +4512 728317 0.7740 +4513 4514 0.9990 +4513 4519 0.9990 +4513 4535 0.9990 +4513 4536 0.9990 +4513 4537 0.9980 +4513 4538 0.9990 +4513 4539 0.9950 +4513 4540 0.9990 +4513 4541 0.9910 +4513 4694 0.8110 +4513 4695 0.8130 +4513 4696 0.7650 +4513 4697 0.9960 +4513 4698 0.8180 +4513 4700 0.8100 +4513 4701 0.6020 +4513 4702 0.8000 +4513 4704 0.8850 +4513 4705 0.8590 +4513 4706 0.7930 +4513 4707 0.7900 +4513 4709 0.8090 +4513 4710 0.8010 +4513 4711 0.7960 +4513 4712 0.8080 +4513 4713 0.8090 +4513 4714 0.9380 +4513 4715 0.8230 +4513 4716 0.8220 +4513 4717 0.4290 +4513 4718 0.6280 +4513 4720 0.9850 +4513 4722 0.9870 +4513 4723 0.9720 +4513 4724 0.8590 +4513 4725 0.8000 +4513 4726 0.8120 +4513 4728 0.9720 +4513 4729 0.9730 +4513 4731 0.5730 +4513 4783 0.5920 +4513 4899 0.4070 +4513 4967 0.6390 +4513 5016 0.6630 +4513 5018 0.9300 +4513 5071 0.5000 +4513 5162 0.5410 +4513 5245 0.7230 +4513 5428 0.7360 +4513 5431 0.4190 +4513 5442 0.6260 +4513 5625 0.7450 +4513 5664 0.5300 +4513 5742 0.5960 +4513 5888 0.4110 +4513 6142 0.4300 +4513 6175 0.4380 +4513 6182 0.5670 +4513 6183 0.5300 +4513 6188 0.4590 +4513 6193 0.4480 +4513 6222 0.5350 +4513 6228 0.5040 +4513 6341 0.9960 +4513 6389 0.9580 +4513 6390 0.9800 +4513 6391 0.9720 +4513 6647 0.6000 +4513 6648 0.5620 +4513 6649 0.4890 +4513 6690 0.4930 +4513 6745 0.5120 +4513 6748 0.4250 +4513 6834 0.8900 +4513 7008 0.5920 +4513 7019 0.7350 +4513 7084 0.5230 +4513 7284 0.5100 +4513 7295 0.4620 +4513 7298 0.4790 +4513 7349 0.5310 +4513 7381 0.9920 +4513 7384 0.9790 +4513 7385 0.9990 +4513 7386 0.9990 +4513 7388 0.9560 +4513 7416 0.8110 +4513 7417 0.4620 +4513 7419 0.5330 +4513 7852 0.4510 +4513 7915 0.4120 +4513 7920 0.4500 +4513 8479 0.5290 +4513 8540 0.5680 +4513 8803 0.6170 +4513 9131 0.4440 +4513 9167 0.9450 +4513 9343 0.4340 +4513 9377 0.9990 +4513 9512 0.9030 +4513 9563 0.4500 +4513 9582 0.6650 +4513 9804 0.6190 +4513 9927 0.4710 +4513 9997 0.9960 +4513 10063 0.8940 +4513 10102 0.4660 +4513 10128 0.6300 +4513 10165 0.4220 +4513 10452 0.4080 +4513 10476 0.4140 +4513 10553 0.6560 +4513 10730 0.5520 +4513 10891 0.5960 +4513 10975 0.9570 +4513 10994 0.8280 +4513 11232 0.5620 +4513 11331 0.4980 +4513 22868 0.6330 +4513 23155 0.4980 +4513 23203 0.8280 +4513 23521 0.4230 +4513 23558 0.5310 +4513 23645 0.9750 +4513 25813 0.5400 +4513 25828 0.4130 +4513 25994 0.7100 +4513 26061 0.8280 +4513 27089 0.9900 +4513 27159 0.6630 +4513 27350 0.6640 +4513 28958 0.7320 +4513 28998 0.4470 +4513 29087 0.8370 +4513 29796 0.9860 +4513 50484 0.5240 +4513 51021 0.5120 +4513 51024 0.4040 +4513 51079 0.8160 +4513 51081 0.5720 +4513 51106 0.4490 +4513 51204 0.6180 +4513 51241 0.5650 +4513 51314 0.5230 +4513 51350 0.4500 +4513 51751 0.6540 +4513 54205 0.9930 +4513 54431 0.4560 +4513 54539 0.8160 +4513 55526 0.4960 +4513 55669 0.4130 +4513 55753 0.5280 +4513 55967 0.8040 +4513 56901 0.5960 +4513 56945 0.4340 +4513 56993 0.4160 +4513 57143 0.5180 +4513 57379 0.6640 +4513 57407 0.6590 +4513 58510 0.7350 +4513 60489 0.6660 +4513 64111 0.7810 +4513 64216 0.4440 +4513 64960 0.4150 +4513 64968 0.4110 +4513 65003 0.4250 +4513 65018 0.4260 +4513 65993 0.4600 +4513 79002 0.8990 +4513 79598 0.4610 +4513 79728 0.6240 +4513 79893 0.5670 +4513 79934 0.5350 +4513 80195 0.6530 +4513 80775 0.5300 +4513 81341 0.9850 +4513 81542 0.4090 +4513 84061 0.4910 +4513 84284 0.4090 +4513 84311 0.4770 +4513 84419 0.5400 +4513 84689 0.5260 +4513 84701 0.9640 +4513 84886 0.9720 +4513 84939 0.8090 +4513 84987 0.4680 +4513 85476 0.4890 +4513 90956 0.5120 +4513 91300 0.9750 +4513 116228 0.7670 +4513 123346 0.6540 +4513 125965 0.9440 +4513 126328 0.6070 +4513 126402 0.4320 +4513 139221 0.8090 +4513 140564 0.6640 +4513 164668 0.6640 +4513 164684 0.5300 +4513 170712 0.8170 +4513 192286 0.7100 +4513 197257 0.5670 +4513 200315 0.6640 +4513 200316 0.6700 +4513 203054 0.5180 +4513 254042 0.5550 +4513 259307 0.5300 +4513 283459 0.9090 +4513 285521 0.9970 +4513 341947 0.7230 +4513 348801 0.7670 +4513 374291 0.9170 +4513 388753 0.9700 +4513 440567 0.9400 +4513 613227 0.6540 +4513 728317 0.8090 +4513 100287932 0.4340 +4513 100532726 0.5390 +4513 105372267 0.5920 +4514 4519 0.9990 +4514 4535 0.9990 +4514 4536 0.9990 +4514 4537 0.9990 +4514 4538 0.9990 +4514 4539 0.9960 +4514 4540 0.9990 +4514 4541 0.9960 +4514 4694 0.8450 +4514 4695 0.9110 +4514 4696 0.8610 +4514 4697 0.9930 +4514 4698 0.8590 +4514 4700 0.8610 +4514 4701 0.8400 +4514 4702 0.9010 +4514 4704 0.9400 +4514 4705 0.8680 +4514 4706 0.8690 +4514 4707 0.8500 +4514 4708 0.8120 +4514 4709 0.8680 +4514 4710 0.8640 +4514 4711 0.8570 +4514 4712 0.8630 +4514 4713 0.8620 +4514 4714 0.8940 +4514 4715 0.8670 +4514 4716 0.8560 +4514 4717 0.8170 +4514 4718 0.8430 +4514 4720 0.9860 +4514 4722 0.9900 +4514 4723 0.9890 +4514 4724 0.9300 +4514 4725 0.8690 +4514 4726 0.8660 +4514 4728 0.9880 +4514 4729 0.9830 +4514 4731 0.8450 +4514 4783 0.4750 +4514 4967 0.4730 +4514 5016 0.6650 +4514 5018 0.5460 +4514 5442 0.4130 +4514 5498 0.4340 +4514 5625 0.7210 +4514 5664 0.5320 +4514 6142 0.4020 +4514 6182 0.5620 +4514 6183 0.4150 +4514 6188 0.4120 +4514 6222 0.4480 +4514 6228 0.4320 +4514 6341 0.9670 +4514 6389 0.9760 +4514 6390 0.9820 +4514 6391 0.9260 +4514 6647 0.5320 +4514 6648 0.4050 +4514 6649 0.4800 +4514 6690 0.4370 +4514 6834 0.8480 +4514 7008 0.4750 +4514 7019 0.5340 +4514 7284 0.6060 +4514 7298 0.4230 +4514 7349 0.5910 +4514 7381 0.9930 +4514 7384 0.9900 +4514 7385 0.9990 +4514 7386 0.9990 +4514 7388 0.9860 +4514 7389 0.4350 +4514 8479 0.5240 +4514 8540 0.6140 +4514 8801 0.4840 +4514 8803 0.5180 +4514 9167 0.9670 +4514 9377 0.9990 +4514 9512 0.8880 +4514 9582 0.6670 +4514 9997 0.9650 +4514 10102 0.4010 +4514 10128 0.7490 +4514 10165 0.4220 +4514 10553 0.5540 +4514 10730 0.4260 +4514 10975 0.9670 +4514 10994 0.8170 +4514 22868 0.6660 +4514 23155 0.4480 +4514 23203 0.7420 +4514 23558 0.4840 +4514 23645 0.9750 +4514 25994 0.7310 +4514 26061 0.8180 +4514 26165 0.4780 +4514 27089 0.9960 +4514 27159 0.6650 +4514 27350 0.6670 +4514 28958 0.6240 +4514 29087 0.8370 +4514 29796 0.9960 +4514 51021 0.4560 +4514 51079 0.8670 +4514 51106 0.4160 +4514 51204 0.7440 +4514 51751 0.6590 +4514 54205 0.9870 +4514 54539 0.8430 +4514 54931 0.4440 +4514 54948 0.4720 +4514 55526 0.4370 +4514 55572 0.5330 +4514 55753 0.4320 +4514 55967 0.8600 +4514 56901 0.5860 +4514 57143 0.5150 +4514 57379 0.6650 +4514 57407 0.5540 +4514 58510 0.7210 +4514 60489 0.6700 +4514 64111 0.9350 +4514 79002 0.9000 +4514 79133 0.5450 +4514 79893 0.6130 +4514 79934 0.5100 +4514 80195 0.5510 +4514 81341 0.9840 +4514 84419 0.5400 +4514 84675 0.4040 +4514 84689 0.5200 +4514 84701 0.9760 +4514 84886 0.9730 +4514 84939 0.7280 +4514 90956 0.5100 +4514 91300 0.9750 +4514 91942 0.5340 +4514 123346 0.6590 +4514 125965 0.9420 +4514 126328 0.8540 +4514 137682 0.5570 +4514 139221 0.7280 +4514 140564 0.6650 +4514 164668 0.6650 +4514 164684 0.4770 +4514 170712 0.8050 +4514 192286 0.7160 +4514 197257 0.6130 +4514 200315 0.6650 +4514 200316 0.6680 +4514 203054 0.5150 +4514 254042 0.5030 +4514 259307 0.5380 +4514 283459 0.9000 +4514 284131 0.4240 +4514 285521 0.5290 +4514 341947 0.7140 +4514 348801 0.4370 +4514 374291 0.9720 +4514 388753 0.9370 +4514 389434 0.8040 +4514 440567 0.9250 +4514 613227 0.6590 +4514 728317 0.7280 +4514 105372267 0.4750 +4515 5600 0.4390 +4515 5603 0.4930 +4515 6300 0.4910 +4515 6648 0.4100 +4515 8115 0.9110 +4515 9623 0.9120 +4515 10000 0.9000 +4515 23479 0.5490 +4515 79145 0.6440 +4515 100272147 0.4760 +4519 4535 0.9990 +4519 4536 0.9990 +4519 4537 0.9990 +4519 4538 0.9990 +4519 4539 0.9990 +4519 4540 0.9990 +4519 4541 0.9970 +4519 4688 0.9500 +4519 4689 0.8240 +4519 4694 0.9240 +4519 4695 0.9250 +4519 4696 0.8740 +4519 4697 0.6800 +4519 4698 0.9350 +4519 4700 0.9200 +4519 4701 0.8570 +4519 4702 0.9320 +4519 4704 0.9810 +4519 4705 0.8930 +4519 4706 0.9250 +4519 4707 0.8650 +4519 4708 0.8190 +4519 4709 0.8820 +4519 4710 0.8860 +4519 4711 0.8740 +4519 4712 0.8910 +4519 4713 0.9400 +4519 4714 0.9230 +4519 4715 0.9290 +4519 4716 0.9170 +4519 4717 0.8320 +4519 4718 0.8720 +4519 4720 0.9880 +4519 4722 0.9870 +4519 4723 0.9850 +4519 4724 0.9560 +4519 4725 0.8820 +4519 4726 0.9470 +4519 4728 0.9870 +4519 4729 0.9850 +4519 4731 0.8470 +4519 4899 0.4520 +4519 5018 0.5270 +4519 5226 0.4280 +4519 5428 0.7020 +4519 5431 0.5380 +4519 5442 0.6110 +4519 5447 0.4660 +4519 5742 0.8960 +4519 5880 0.8370 +4519 5896 0.7990 +4519 5949 0.5930 +4519 6124 0.5070 +4519 6182 0.4450 +4519 6188 0.5210 +4519 6201 0.4320 +4519 6232 0.4040 +4519 6341 0.4840 +4519 6389 0.9240 +4519 6390 0.9460 +4519 6391 0.8810 +4519 6392 0.8700 +4519 6647 0.6050 +4519 6648 0.4390 +4519 6649 0.5530 +4519 6742 0.4180 +4519 6832 0.4570 +4519 6834 0.4600 +4519 6948 0.4020 +4519 7019 0.7520 +4519 7167 0.4100 +4519 7177 0.4040 +4519 7276 0.4350 +4519 7284 0.5950 +4519 7298 0.4280 +4519 7349 0.7070 +4519 7381 0.9990 +4519 7384 0.9990 +4519 7385 0.9990 +4519 7386 0.9990 +4519 7388 0.9980 +4519 7403 0.4280 +4519 7404 0.4480 +4519 7416 0.5140 +4519 7455 0.4320 +4519 7543 0.4260 +4519 7544 0.4950 +4519 7978 0.4110 +4519 8036 0.4220 +4519 8192 0.5550 +4519 8284 0.4050 +4519 8419 0.9760 +4519 9167 0.7550 +4519 9377 0.9880 +4519 9512 0.8550 +4519 9804 0.4490 +4519 9927 0.4400 +4519 9997 0.4600 +4519 10128 0.4710 +4519 10476 0.4600 +4519 10553 0.5500 +4519 10891 0.5550 +4519 10975 0.9980 +4519 11232 0.5180 +4519 23135 0.4280 +4519 23203 0.5730 +4519 23395 0.4200 +4519 23558 0.4110 +4519 25821 0.4040 +4519 25915 0.4610 +4519 25994 0.4250 +4519 26024 0.4360 +4519 26040 0.4010 +4519 26135 0.4870 +4519 27089 0.9990 +4519 29796 0.9990 +4519 29928 0.4180 +4519 51079 0.9220 +4519 51106 0.4750 +4519 51167 0.4650 +4519 51350 0.7160 +4519 51806 0.5550 +4519 54205 0.9980 +4519 54539 0.8900 +4519 54675 0.4670 +4519 54851 0.4150 +4519 54902 0.5170 +4519 54948 0.4310 +4519 55143 0.4210 +4519 55180 0.4470 +4519 55245 0.8240 +4519 55312 0.5120 +4519 55687 0.4240 +4519 55967 0.9180 +4519 56652 0.4500 +4519 56901 0.6100 +4519 56975 0.5110 +4519 57128 0.8380 +4519 57407 0.5450 +4519 60528 0.4220 +4519 64111 0.7040 +4519 64216 0.4960 +4519 79002 0.6630 +4519 79133 0.4310 +4519 79152 0.4180 +4519 79728 0.5710 +4519 79810 0.4540 +4519 79901 0.4910 +4519 80142 0.4830 +4519 80195 0.5340 +4519 80777 0.6260 +4519 81892 0.4430 +4519 84300 0.7250 +4519 84329 0.4090 +4519 84419 0.5400 +4519 84675 0.4350 +4519 84701 0.8830 +4519 84886 0.5290 +4519 84939 0.6610 +4519 84985 0.4130 +4519 87178 0.4690 +4519 90624 0.5000 +4519 91860 0.5330 +4519 91942 0.4790 +4519 112495 0.5680 +4519 112812 0.4790 +4519 125965 0.7880 +4519 126328 0.9300 +4519 128876 0.4130 +4519 129607 0.4160 +4519 139221 0.6610 +4519 163688 0.5330 +4519 164684 0.4110 +4519 170712 0.7960 +4519 192286 0.4400 +4519 200895 0.6000 +4519 283459 0.5770 +4519 341947 0.5600 +4519 374291 0.9470 +4519 388753 0.7440 +4519 440567 0.9330 +4519 642987 0.4210 +4519 653361 0.9500 +4519 728317 0.6610 +4520 4891 0.4150 +4520 5130 0.4680 +4520 5442 0.4050 +4520 5970 0.4690 +4520 6620 0.7520 +4520 6927 0.4350 +4520 7779 0.7060 +4520 7780 0.5320 +4520 7782 0.4230 +4520 8815 0.5270 +4520 8882 0.4440 +4520 10463 0.4450 +4520 22887 0.4340 +4520 27000 0.5090 +4520 27173 0.4010 +4520 30061 0.4260 +4520 53944 0.5390 +4520 57181 0.4270 +4520 64116 0.5780 +4520 64924 0.5180 +4520 148867 0.4260 +4520 150696 0.4320 +4521 4595 0.9280 +4521 4913 0.7060 +4521 4968 0.9220 +4521 5052 0.5740 +4521 7001 0.4400 +4521 10459 0.4630 +4521 10535 0.4820 +4521 11163 0.5230 +4521 11164 0.7670 +4521 25824 0.4270 +4521 25961 0.5870 +4521 26279 0.4050 +4521 29960 0.4420 +4521 55190 0.4640 +4521 55247 0.4310 +4521 55270 0.7630 +4521 55559 0.4340 +4521 79019 0.5600 +4521 79661 0.5720 +4521 79873 0.7650 +4521 83594 0.5350 +4521 84284 0.5990 +4521 84304 0.6530 +4521 200035 0.5860 +4521 256281 0.6520 +4522 4524 0.9960 +4522 4548 0.9970 +4522 4552 0.9410 +4522 4942 0.4110 +4522 5091 0.7470 +4522 5096 0.5410 +4522 5211 0.4050 +4522 5214 0.4600 +4522 5226 0.5230 +4522 5245 0.4040 +4522 5315 0.5100 +4522 5471 0.9000 +4522 5723 0.6380 +4522 5832 0.7260 +4522 5860 0.4930 +4522 6141 0.6650 +4522 6191 0.4350 +4522 6240 0.4590 +4522 6470 0.9990 +4522 6472 0.9960 +4522 6573 0.7060 +4522 6794 0.4080 +4522 6821 0.4410 +4522 6888 0.5490 +4522 6904 0.4060 +4522 6948 0.6340 +4522 7086 0.5140 +4522 7167 0.4770 +4522 7298 0.9860 +4522 7372 0.5280 +4522 7915 0.4320 +4522 8277 0.5020 +4522 8802 0.4060 +4522 8833 0.8790 +4522 8836 0.4740 +4522 9131 0.4160 +4522 9221 0.4360 +4522 9374 0.4360 +4522 9380 0.4030 +4522 9563 0.5660 +4522 9669 0.4810 +4522 10400 0.5730 +4522 10588 0.9870 +4522 10606 0.9000 +4522 10797 0.9790 +4522 10840 0.9700 +4522 10841 0.9920 +4522 22934 0.4150 +4522 22984 0.4050 +4522 23382 0.4130 +4522 23476 0.8970 +4522 23743 0.8010 +4522 25902 0.9440 +4522 26227 0.7040 +4522 27232 0.4740 +4522 29958 0.7200 +4522 29968 0.7690 +4522 51477 0.4020 +4522 54938 0.4290 +4522 55349 0.5680 +4522 55902 0.4130 +4522 56934 0.4160 +4522 64087 0.4190 +4522 64779 0.6970 +4522 65220 0.4440 +4522 81034 0.5560 +4522 84076 0.5030 +4522 94081 0.4010 +4522 113235 0.5840 +4522 123263 0.9740 +4522 160428 0.9760 +4522 200895 0.9850 +4522 286183 0.4090 +4522 441024 0.9860 +4522 100528021 0.9130 +4524 4548 0.9990 +4524 4552 0.9810 +4524 4790 0.5140 +4524 4837 0.7250 +4524 4846 0.6500 +4524 4942 0.4960 +4524 4968 0.4800 +4524 5054 0.6950 +4524 5091 0.4160 +4524 5096 0.4360 +4524 5243 0.5450 +4524 5340 0.5430 +4524 5444 0.6070 +4524 5533 0.4370 +4524 5583 0.4260 +4524 5627 0.4020 +4524 5723 0.4520 +4524 5826 0.4200 +4524 5832 0.4120 +4524 6470 0.9980 +4524 6472 0.9960 +4524 6532 0.6790 +4524 6573 0.8130 +4524 6648 0.5670 +4524 6888 0.4370 +4524 6947 0.4070 +4524 6948 0.7690 +4524 7015 0.4170 +4524 7086 0.4380 +4524 7124 0.4180 +4524 7157 0.4200 +4524 7166 0.5170 +4524 7172 0.6260 +4524 7296 0.6640 +4524 7298 0.9910 +4524 7372 0.6100 +4524 7515 0.6200 +4524 7517 0.4770 +4524 8050 0.6790 +4524 8277 0.4480 +4524 8528 0.4160 +4524 8802 0.4240 +4524 8836 0.5970 +4524 9446 0.5450 +4524 9563 0.4870 +4524 9722 0.4120 +4524 10018 0.4390 +4524 10400 0.6430 +4524 10587 0.6690 +4524 10588 0.6530 +4524 10599 0.4800 +4524 10768 0.6010 +4524 10797 0.9930 +4524 10840 0.5420 +4524 10841 0.6110 +4524 10858 0.4100 +4524 10994 0.4050 +4524 11186 0.5400 +4524 23382 0.6320 +4524 23411 0.4840 +4524 23743 0.9520 +4524 25902 0.8450 +4524 25974 0.5880 +4524 26227 0.5120 +4524 27232 0.7010 +4524 27249 0.7340 +4524 27430 0.4640 +4524 29958 0.8190 +4524 51268 0.4910 +4524 51293 0.4390 +4524 54431 0.8150 +4524 54511 0.4040 +4524 54575 0.4420 +4524 54576 0.4440 +4524 54577 0.4560 +4524 54578 0.4440 +4524 54657 0.4400 +4524 54658 0.4550 +4524 54858 0.4380 +4524 55066 0.7430 +4524 55163 0.4320 +4524 55256 0.6190 +4524 55258 0.4200 +4524 55270 0.4170 +4524 55312 0.4210 +4524 55349 0.5680 +4524 55788 0.6870 +4524 57216 0.4470 +4524 57412 0.4530 +4524 64087 0.4280 +4524 64779 0.4400 +4524 79001 0.4880 +4524 79068 0.4310 +4524 79896 0.4200 +4524 80308 0.4750 +4524 81034 0.4910 +4524 81839 0.6360 +4524 84076 0.4400 +4524 84245 0.5830 +4524 84706 0.4340 +4524 85462 0.4510 +4524 91734 0.7090 +4524 91752 0.4280 +4524 113235 0.5480 +4524 114112 0.6410 +4524 119391 0.4280 +4524 121278 0.4370 +4524 123263 0.5390 +4524 139189 0.4400 +4524 160428 0.4740 +4524 162417 0.4490 +4524 200205 0.8220 +4524 200895 0.7940 +4524 219621 0.4450 +4524 219736 0.5160 +4524 220074 0.4760 +4524 267012 0.5140 +4524 283985 0.5250 +4524 347853 0.4320 +4524 441024 0.9910 +4524 730249 0.4460 +4528 4706 0.5900 +4528 4736 0.8290 +4528 4793 0.4520 +4528 4809 0.6960 +4528 5018 0.7500 +4528 5111 0.4220 +4528 5188 0.4860 +4528 5428 0.4300 +4528 5431 0.8120 +4528 5432 0.6940 +4528 5442 0.6230 +4528 5469 0.9220 +4528 5859 0.7090 +4528 5917 0.5950 +4528 6041 0.6900 +4528 6059 0.4730 +4528 6120 0.4190 +4528 6122 0.8370 +4528 6123 0.8280 +4528 6124 0.8490 +4528 6125 0.9570 +4528 6128 0.5740 +4528 6129 0.7100 +4528 6130 0.6940 +4528 6132 0.8650 +4528 6133 0.9210 +4528 6135 0.9470 +4528 6136 0.7170 +4528 6137 0.8280 +4528 6138 0.8370 +4528 6139 0.7860 +4528 6141 0.8350 +4528 6142 0.8260 +4528 6143 0.8400 +4528 6144 0.8320 +4528 6146 0.6530 +4528 6147 0.9520 +4528 6150 0.8100 +4528 6152 0.8460 +4528 6154 0.7270 +4528 6155 0.5490 +4528 6156 0.8390 +4528 6157 0.5860 +4528 6158 0.4350 +4528 6159 0.8540 +4528 6160 0.8460 +4528 6161 0.4080 +4528 6164 0.8240 +4528 6165 0.8220 +4528 6166 0.5370 +4528 6168 0.8240 +4528 6169 0.8380 +4528 6170 0.5690 +4528 6173 0.5270 +4528 6175 0.8680 +4528 6176 0.8020 +4528 6182 0.9720 +4528 6183 0.9870 +4528 6187 0.9120 +4528 6188 0.9800 +4528 6189 0.8490 +4528 6191 0.6340 +4528 6192 0.6310 +4528 6193 0.7940 +4528 6194 0.8670 +4528 6201 0.7830 +4528 6202 0.8130 +4528 6203 0.9360 +4528 6204 0.6030 +4528 6205 0.9500 +4528 6206 0.8290 +4528 6207 0.7140 +4528 6208 0.8430 +4528 6209 0.9630 +4528 6210 0.6090 +4528 6217 0.8410 +4528 6218 0.8460 +4528 6222 0.9190 +4528 6223 0.8430 +4528 6224 0.8640 +4528 6227 0.5000 +4528 6228 0.8370 +4528 6229 0.8540 +4528 6230 0.7960 +4528 6231 0.7750 +4528 6232 0.6400 +4528 6234 0.8710 +4528 6235 0.7510 +4528 6414 0.4830 +4528 6648 0.5990 +4528 6687 0.5790 +4528 6729 0.4670 +4528 6742 0.4540 +4528 6897 0.5950 +4528 7019 0.4160 +4528 7153 0.4040 +4528 7155 0.4090 +4528 7167 0.4510 +4528 7284 0.8120 +4528 7311 0.5820 +4528 7403 0.4090 +4528 7404 0.4090 +4528 7407 0.5540 +4528 7818 0.9820 +4528 7923 0.5030 +4528 8050 0.4470 +4528 8192 0.4770 +4528 8195 0.4140 +4528 8225 0.5930 +4528 8562 0.4410 +4528 8565 0.5120 +4528 8661 0.5410 +4528 8662 0.7370 +4528 8663 0.6490 +4528 8666 0.5750 +4528 8668 0.4240 +4528 8669 0.4520 +4528 8802 0.4220 +4528 8833 0.5370 +4528 8894 0.5770 +4528 9045 0.5510 +4528 9069 0.4040 +4528 9077 0.4360 +4528 9086 0.8280 +4528 9156 0.4310 +4528 9255 0.4100 +4528 9343 0.6990 +4528 9349 0.9260 +4528 9361 0.4200 +4528 9465 0.4420 +4528 9533 0.6840 +4528 9553 0.9590 +4528 9617 0.8570 +4528 9669 0.4940 +4528 9692 0.4150 +4528 9732 0.6980 +4528 9801 0.9830 +4528 9858 0.7610 +4528 9933 0.4990 +4528 10056 0.4520 +4528 10102 0.9530 +4528 10128 0.4980 +4528 10153 0.5110 +4528 10209 0.4520 +4528 10240 0.9210 +4528 10289 0.4150 +4528 10352 0.5040 +4528 10399 0.6330 +4528 10412 0.5210 +4528 10473 0.7150 +4528 10535 0.4210 +4528 10557 0.7060 +4528 10573 0.9110 +4528 10730 0.5340 +4528 10845 0.4050 +4528 10884 0.9190 +4528 10885 0.4210 +4528 10939 0.6470 +4528 11112 0.4540 +4528 11128 0.8200 +4528 11222 0.9830 +4528 11224 0.9200 +4528 22984 0.7570 +4528 23107 0.9140 +4528 23135 0.4250 +4528 23173 0.4190 +4528 23204 0.6150 +4528 23395 0.6480 +4528 23405 0.4320 +4528 23438 0.4390 +4528 23481 0.4660 +4528 23521 0.7730 +4528 23640 0.7860 +4528 25813 0.4930 +4528 25821 0.4940 +4528 25851 0.4440 +4528 25873 0.8350 +4528 25885 0.8150 +4528 25902 0.4010 +4528 25917 0.5030 +4528 25972 0.4070 +4528 25973 0.4610 +4528 26024 0.6260 +4528 26135 0.4030 +4528 26164 0.8480 +4528 26284 0.7890 +4528 26589 0.9230 +4528 26959 0.4090 +4528 26995 0.8340 +4528 27068 0.4450 +4528 27102 0.4150 +4528 28957 0.9120 +4528 28973 0.9250 +4528 28977 0.9310 +4528 28998 0.9810 +4528 29074 0.9080 +4528 29088 0.9590 +4528 29093 0.9810 +4528 29102 0.5220 +4528 29789 0.4570 +4528 29927 0.6990 +4528 29960 0.5600 +4528 51001 0.4620 +4528 51008 0.4540 +4528 51021 0.9920 +4528 51023 0.9120 +4528 51065 0.6430 +4528 51067 0.5780 +4528 51069 0.9860 +4528 51073 0.9850 +4528 51081 0.9850 +4528 51106 0.5790 +4528 51116 0.9760 +4528 51121 0.7730 +4528 51149 0.7110 +4528 51154 0.8740 +4528 51204 0.6540 +4528 51253 0.9120 +4528 51258 0.9210 +4528 51263 0.9280 +4528 51264 0.9740 +4528 51314 0.4110 +4528 51318 0.9230 +4528 51319 0.7060 +4528 51373 0.9300 +4528 51520 0.5500 +4528 51602 0.4400 +4528 51642 0.9250 +4528 51649 0.9150 +4528 51650 0.9180 +4528 51654 0.4250 +4528 51805 0.4240 +4528 54059 0.6010 +4528 54148 0.9570 +4528 54460 0.9130 +4528 54465 0.5050 +4528 54516 0.8760 +4528 54534 0.7720 +4528 54802 0.5530 +4528 54901 0.4100 +4528 54948 0.9800 +4528 54965 0.5610 +4528 54998 0.9100 +4528 55005 0.5190 +4528 55006 0.5120 +4528 55037 0.9440 +4528 55052 0.9740 +4528 55149 0.4100 +4528 55157 0.6790 +4528 55168 0.9120 +4528 55173 0.9900 +4528 55176 0.6970 +4528 55178 0.6030 +4528 55272 0.9350 +4528 55316 0.7550 +4528 55651 0.6960 +4528 55699 0.5490 +4528 55703 0.7920 +4528 55720 0.4150 +4528 55781 0.4280 +4528 55794 0.5560 +4528 56474 0.5360 +4528 56945 0.9440 +4528 57038 0.6050 +4528 57107 0.4100 +4528 57129 0.9340 +4528 57136 0.7840 +4528 57176 0.4910 +4528 57470 0.4350 +4528 57505 0.5040 +4528 57508 0.4310 +4528 57696 0.4040 +4528 60488 0.9510 +4528 60528 0.4900 +4528 60558 0.5700 +4528 60678 0.6070 +4528 63875 0.9840 +4528 63931 0.9820 +4528 64146 0.4480 +4528 64172 0.4730 +4528 64216 0.5480 +4528 64374 0.7890 +4528 64432 0.9260 +4528 64928 0.9110 +4528 64949 0.9230 +4528 64951 0.9190 +4528 64960 0.9790 +4528 64963 0.9890 +4528 64965 0.9930 +4528 64968 0.9920 +4528 64969 0.9910 +4528 64975 0.7800 +4528 64976 0.7870 +4528 64978 0.9160 +4528 64979 0.9370 +4528 64981 0.9090 +4528 64983 0.9680 +4528 65003 0.9790 +4528 65005 0.9890 +4528 65008 0.9390 +4528 65080 0.9430 +4528 65121 0.5830 +4528 65122 0.5830 +4528 65993 0.9390 +4528 78988 0.7640 +4528 79587 0.4440 +4528 79590 0.9780 +4528 79631 0.7190 +4528 79677 0.4320 +4528 79691 0.4170 +4528 79728 0.5670 +4528 79863 0.4430 +4528 79922 0.6120 +4528 79954 0.4920 +4528 80218 0.4670 +4528 80222 0.5910 +4528 80273 0.4670 +4528 80324 0.5100 +4528 80347 0.4040 +4528 81570 0.6410 +4528 81892 0.4870 +4528 83939 0.4440 +4528 84060 0.4260 +4528 84172 0.7850 +4528 84273 0.4060 +4528 84311 0.9330 +4528 84340 0.6990 +4528 84545 0.9110 +4528 84656 0.4210 +4528 84705 0.5150 +4528 84881 0.5050 +4528 84946 0.4920 +4528 85476 0.7910 +4528 85865 0.6200 +4528 87178 0.8550 +4528 90480 0.7630 +4528 91574 0.6060 +4528 91875 0.5320 +4528 92170 0.4300 +4528 92259 0.6540 +4528 92346 0.5430 +4528 92399 0.8270 +4528 92483 0.5130 +4528 93974 0.7060 +4528 114987 0.6280 +4528 115209 0.4100 +4528 115416 0.6810 +4528 116540 0.9070 +4528 116541 0.6690 +4528 116832 0.5720 +4528 117246 0.4870 +4528 118487 0.9060 +4528 122622 0.4330 +4528 122704 0.9060 +4528 123263 0.7740 +4528 123283 0.5650 +4528 124454 0.6530 +4528 124808 0.4490 +4528 124995 0.9150 +4528 126402 0.7920 +4528 128308 0.7620 +4528 130916 0.4930 +4528 140032 0.6310 +4528 140801 0.7860 +4528 142940 0.7780 +4528 150274 0.4320 +4528 200916 0.6450 +4528 219402 0.9870 +4528 219927 0.9440 +4528 255308 0.6030 +4528 285367 0.4100 +4528 285521 0.4570 +4528 285855 0.7090 +4528 317749 0.4610 +4528 343068 0.5830 +4528 343070 0.5830 +4528 347487 0.7610 +4528 374659 0.4970 +4528 375337 0.4220 +4528 387129 0.7040 +4528 387338 0.4100 +4528 390999 0.5830 +4528 391002 0.5830 +4528 400735 0.5830 +4528 400736 0.5830 +4528 440145 0.4400 +4528 440275 0.4860 +4528 440560 0.5830 +4528 440561 0.5830 +4528 441873 0.5830 +4528 641776 0.6080 +4528 643909 0.6080 +4528 645359 0.5830 +4528 653619 0.5830 +4528 728524 0.6080 +4528 728689 0.6240 +4528 729528 0.5830 +4528 100130890 0.4410 +4528 100131187 0.4460 +4528 100287482 0.7610 +4528 100505478 0.7010 +4528 100526842 0.7810 +4528 100529097 0.5240 +4528 100529239 0.5990 +4528 100996746 0.6080 +4528 101929983 0.5830 +4528 105180390 0.6080 +4528 105180391 0.6080 +4534 4618 0.4820 +4534 4952 0.5560 +4534 5266 0.5460 +4534 5286 0.7990 +4534 5287 0.8420 +4534 5288 0.7660 +4534 5289 0.9770 +4534 5295 0.6520 +4534 5296 0.6680 +4534 5297 0.7420 +4534 5298 0.7090 +4534 5305 0.7200 +4534 5330 0.9030 +4534 5331 0.9030 +4534 5332 0.9060 +4534 5333 0.9290 +4534 5335 0.9060 +4534 5336 0.9050 +4534 5341 0.5500 +4534 5805 0.5220 +4534 5868 0.4800 +4534 6261 0.8460 +4534 6262 0.4010 +4534 6305 0.4270 +4534 7273 0.4560 +4534 8291 0.5690 +4534 8396 0.6990 +4534 8503 0.6500 +4534 8821 0.9280 +4534 9200 0.8620 +4534 9784 0.4730 +4534 9896 0.9590 +4534 10046 0.9120 +4534 10158 0.4160 +4534 10290 0.7030 +4534 10423 0.9260 +4534 22876 0.9050 +4534 23236 0.9130 +4534 26499 0.5620 +4534 29978 0.5880 +4534 30849 0.8280 +4534 51196 0.9020 +4534 51429 0.4290 +4534 51454 0.4690 +4534 54545 0.9500 +4534 54928 0.9150 +4534 55300 0.7180 +4534 55361 0.7150 +4534 55529 0.9190 +4534 55697 0.4390 +4534 56704 0.4420 +4534 57158 0.5310 +4534 57190 0.5250 +4534 63916 0.4080 +4534 64419 0.9500 +4534 79767 0.4070 +4534 79837 0.6900 +4534 84812 0.9020 +4534 89869 0.9020 +4534 90809 0.9200 +4534 113026 0.9020 +4534 113540 0.5770 +4534 124093 0.5960 +4534 124997 0.4210 +4534 131377 0.5440 +4534 200576 0.9540 +4534 205860 0.4260 +4534 285489 0.4240 +4534 390594 0.4470 +4535 4536 0.9990 +4535 4537 0.9990 +4535 4538 0.9990 +4535 4539 0.9990 +4535 4540 0.9990 +4535 4541 0.9990 +4535 4694 0.9990 +4535 4695 0.9990 +4535 4696 0.9980 +4535 4697 0.9640 +4535 4698 0.9990 +4535 4700 0.9990 +4535 4701 0.9980 +4535 4702 0.9990 +4535 4704 0.9990 +4535 4705 0.9970 +4535 4706 0.9990 +4535 4707 0.9880 +4535 4708 0.9940 +4535 4709 0.9990 +4535 4710 0.9960 +4535 4711 0.9970 +4535 4712 0.9980 +4535 4713 0.9990 +4535 4714 0.9990 +4535 4715 0.9990 +4535 4716 0.9990 +4535 4717 0.9950 +4535 4718 0.9950 +4535 4720 0.9990 +4535 4722 0.9990 +4535 4723 0.9990 +4535 4724 0.9990 +4535 4725 0.9990 +4535 4726 0.9990 +4535 4728 0.9990 +4535 4729 0.9990 +4535 4731 0.9980 +4535 4967 0.4410 +4535 5096 0.4510 +4535 5152 0.5490 +4535 5428 0.4930 +4535 5431 0.5240 +4535 5442 0.4410 +4535 5464 0.6100 +4535 5479 0.5760 +4535 5480 0.5750 +4535 5498 0.4160 +4535 5566 0.6760 +4535 5567 0.6770 +4535 5568 0.6770 +4535 5664 0.4670 +4535 5742 0.8800 +4535 5861 0.4030 +4535 6041 0.5090 +4535 6128 0.5770 +4535 6132 0.4370 +4535 6175 0.5170 +4535 6187 0.6340 +4535 6188 0.7870 +4535 6193 0.4200 +4535 6203 0.4210 +4535 6204 0.4500 +4535 6205 0.4320 +4535 6207 0.5390 +4535 6208 0.5730 +4535 6341 0.4790 +4535 6389 0.9490 +4535 6390 0.9710 +4535 6391 0.8240 +4535 6392 0.5810 +4535 6426 0.5650 +4535 6532 0.4060 +4535 6622 0.6870 +4535 6885 0.4060 +4535 7019 0.6220 +4535 7045 0.4470 +4535 7084 0.5610 +4535 7124 0.4230 +4535 7167 0.4110 +4535 7297 0.4120 +4535 7349 0.6210 +4535 7381 0.9620 +4535 7384 0.9550 +4535 7385 0.9570 +4535 7386 0.9970 +4535 7388 0.9650 +4535 7403 0.4930 +4535 7404 0.4930 +4535 7416 0.4530 +4535 7923 0.4710 +4535 7978 0.4930 +4535 8192 0.6030 +4535 8600 0.4780 +4535 8683 0.5660 +4535 8801 0.4520 +4535 8802 0.5450 +4535 8803 0.5360 +4535 8879 0.4140 +4535 9045 0.5510 +4535 9377 0.9070 +4535 9446 0.5610 +4535 9512 0.6930 +4535 9551 0.4280 +4535 9563 0.4230 +4535 9804 0.4140 +4535 10105 0.4240 +4535 10128 0.4350 +4535 10135 0.4440 +4535 10245 0.4320 +4535 10440 0.4850 +4535 10443 0.4920 +4535 10553 0.7110 +4535 10631 0.4470 +4535 10891 0.5190 +4535 10975 0.8500 +4535 11202 0.4200 +4535 11315 0.7550 +4535 11343 0.9390 +4535 23135 0.5220 +4535 23171 0.5810 +4535 23203 0.5920 +4535 23316 0.4700 +4535 23435 0.6620 +4535 23645 0.9480 +4535 25880 0.5460 +4535 25915 0.9470 +4535 26024 0.4760 +4535 27068 0.6220 +4535 27069 0.4230 +4535 27089 0.9150 +4535 27109 0.4400 +4535 28976 0.6840 +4535 29078 0.9560 +4535 29087 0.8100 +4535 29796 0.9740 +4535 29928 0.6510 +4535 29957 0.8770 +4535 51021 0.5030 +4535 51067 0.4340 +4535 51069 0.4360 +4535 51079 0.9990 +4535 51081 0.4120 +4535 51102 0.5800 +4535 51103 0.9960 +4535 51295 0.7940 +4535 51300 0.9970 +4535 51522 0.4300 +4535 54084 0.4350 +4535 54101 0.5290 +4535 54205 0.5650 +4535 54539 0.9990 +4535 54675 0.4280 +4535 54859 0.5230 +4535 54948 0.4180 +4535 55052 0.4180 +4535 55143 0.4310 +4535 55256 0.8180 +4535 55471 0.6620 +4535 55572 0.8610 +4535 55728 0.4920 +4535 55744 0.5070 +4535 55863 0.6130 +4535 55967 0.9990 +4535 56898 0.4630 +4535 56901 0.6660 +4535 56964 0.5400 +4535 56975 0.8440 +4535 57128 0.4660 +4535 57407 0.7100 +4535 58509 0.5180 +4535 64960 0.4290 +4535 64963 0.4680 +4535 65018 0.8380 +4535 79085 0.8790 +4535 79133 0.9080 +4535 79598 0.5110 +4535 79728 0.9140 +4535 79893 0.4710 +4535 79947 0.5040 +4535 80195 0.7100 +4535 80207 0.5810 +4535 80224 0.6530 +4535 81341 0.9530 +4535 83475 0.5490 +4535 84060 0.4130 +4535 84233 0.4840 +4535 84277 0.4690 +4535 84701 0.6610 +4535 84869 0.5700 +4535 84939 0.9750 +4535 87178 0.4870 +4535 90353 0.7080 +4535 90381 0.5730 +4535 90634 0.4920 +4535 91300 0.9480 +4535 91942 0.9730 +4535 112812 0.8780 +4535 114789 0.8790 +4535 119391 0.5580 +4535 126328 0.9980 +4535 137682 0.8700 +4535 139221 0.9750 +4535 144717 0.4910 +4535 254863 0.4240 +4535 283459 0.4370 +4535 284427 0.8760 +4535 374291 0.9990 +4535 388753 0.4330 +4535 414325 0.4120 +4535 440567 0.7420 +4535 440574 0.5260 +4535 493856 0.5300 +4535 728317 0.9750 +4535 100532726 0.8130 +4536 4537 0.9990 +4536 4538 0.9990 +4536 4539 0.9990 +4536 4540 0.9990 +4536 4541 0.9990 +4536 4593 0.4280 +4536 4694 0.9970 +4536 4695 0.9990 +4536 4696 0.9970 +4536 4697 0.9490 +4536 4698 0.9990 +4536 4700 0.9990 +4536 4701 0.9980 +4536 4702 0.9990 +4536 4704 0.9990 +4536 4705 0.9990 +4536 4706 0.9990 +4536 4707 0.9970 +4536 4708 0.9940 +4536 4709 0.9990 +4536 4710 0.9980 +4536 4711 0.9990 +4536 4712 0.9980 +4536 4713 0.9990 +4536 4714 0.9990 +4536 4715 0.9990 +4536 4716 0.9990 +4536 4717 0.9970 +4536 4718 0.9990 +4536 4720 0.9990 +4536 4722 0.9990 +4536 4723 0.9990 +4536 4724 0.9990 +4536 4725 0.9970 +4536 4726 0.9990 +4536 4728 0.9990 +4536 4729 0.9990 +4536 4731 0.9980 +4536 4790 0.4830 +4536 5431 0.4660 +4536 5442 0.5130 +4536 5479 0.5050 +4536 5480 0.4960 +4536 5566 0.6610 +4536 5567 0.6580 +4536 5568 0.6590 +4536 5664 0.4270 +4536 5742 0.8820 +4536 5861 0.4820 +4536 5896 0.5770 +4536 6041 0.4950 +4536 6187 0.4610 +4536 6188 0.7330 +4536 6205 0.4270 +4536 6207 0.4640 +4536 6208 0.4840 +4536 6341 0.4110 +4536 6389 0.8650 +4536 6390 0.8920 +4536 6391 0.6200 +4536 6392 0.5280 +4536 6426 0.4440 +4536 6622 0.6740 +4536 6714 0.7550 +4536 6834 0.5370 +4536 6901 0.8070 +4536 7019 0.7600 +4536 7084 0.4530 +4536 7349 0.6520 +4536 7381 0.9360 +4536 7384 0.9330 +4536 7385 0.9390 +4536 7386 0.9920 +4536 7388 0.9320 +4536 7978 0.4660 +4536 8192 0.4800 +4536 8683 0.4410 +4536 8802 0.4080 +4536 9349 0.4450 +4536 9377 0.8920 +4536 9446 0.4270 +4536 9512 0.5610 +4536 10128 0.5570 +4536 10245 0.4170 +4536 10440 0.4880 +4536 10553 0.6200 +4536 10730 0.4780 +4536 10975 0.8670 +4536 11343 0.8980 +4536 23203 0.5200 +4536 23410 0.4180 +4536 23435 0.6920 +4536 23645 0.7860 +4536 25880 0.6860 +4536 25915 0.9280 +4536 26024 0.5010 +4536 27089 0.9130 +4536 28958 0.4430 +4536 28976 0.8110 +4536 29078 0.9270 +4536 29087 0.7920 +4536 29796 0.9510 +4536 29928 0.4650 +4536 29957 0.8640 +4536 51021 0.4690 +4536 51079 0.9990 +4536 51103 0.9970 +4536 51106 0.4210 +4536 51204 0.5050 +4536 51295 0.7940 +4536 51300 0.8770 +4536 51350 0.4790 +4536 51399 0.4980 +4536 54101 0.4950 +4536 54205 0.4820 +4536 54539 0.9990 +4536 54859 0.4370 +4536 55052 0.4240 +4536 55149 0.4080 +4536 55471 0.5790 +4536 55572 0.9010 +4536 55744 0.9200 +4536 55863 0.8200 +4536 55967 0.9990 +4536 56964 0.5400 +4536 56975 0.6960 +4536 57128 0.5140 +4536 57143 0.4150 +4536 57407 0.6150 +4536 58509 0.4430 +4536 60528 0.4530 +4536 63931 0.4130 +4536 64216 0.4200 +4536 64963 0.4140 +4536 65018 0.7200 +4536 79085 0.8700 +4536 79133 0.8110 +4536 79598 0.4400 +4536 79728 0.9210 +4536 79934 0.4150 +4536 80195 0.6120 +4536 80224 0.6230 +4536 81341 0.8250 +4536 83641 0.4240 +4536 84701 0.4990 +4536 84939 0.9030 +4536 87178 0.5110 +4536 90381 0.4830 +4536 90956 0.4150 +4536 91300 0.7860 +4536 91942 0.9570 +4536 112812 0.7780 +4536 114789 0.8620 +4536 119391 0.4320 +4536 125965 0.4480 +4536 126328 0.9990 +4536 137682 0.7670 +4536 139221 0.9030 +4536 203054 0.4150 +4536 257364 0.4130 +4536 284427 0.8620 +4536 374291 0.9990 +4536 440567 0.5750 +4536 493856 0.4320 +4536 728317 0.9030 +4536 100532726 0.8720 +4537 4538 0.9990 +4537 4539 0.9990 +4537 4540 0.9990 +4537 4541 0.9990 +4537 4694 0.9980 +4537 4695 0.9990 +4537 4696 0.9990 +4537 4697 0.9610 +4537 4698 0.9990 +4537 4700 0.9990 +4537 4701 0.9970 +4537 4702 0.9990 +4537 4704 0.9990 +4537 4705 0.9990 +4537 4706 0.9990 +4537 4707 0.9910 +4537 4708 0.9940 +4537 4709 0.9990 +4537 4710 0.9970 +4537 4711 0.9970 +4537 4712 0.9970 +4537 4713 0.9990 +4537 4714 0.9990 +4537 4715 0.9990 +4537 4716 0.9990 +4537 4717 0.9970 +4537 4718 0.9960 +4537 4720 0.9990 +4537 4722 0.9990 +4537 4723 0.9990 +4537 4724 0.9990 +4537 4725 0.9960 +4537 4726 0.9990 +4537 4728 0.9990 +4537 4729 0.9990 +4537 4731 0.9970 +4537 5431 0.4730 +4537 5442 0.4120 +4537 5464 0.4390 +4537 5479 0.5560 +4537 5480 0.5590 +4537 5566 0.6570 +4537 5567 0.6500 +4537 5568 0.6500 +4537 5664 0.4380 +4537 5742 0.8840 +4537 5896 0.4400 +4537 6041 0.5540 +4537 6183 0.4650 +4537 6187 0.5000 +4537 6188 0.7800 +4537 6205 0.4080 +4537 6207 0.5340 +4537 6208 0.6110 +4537 6228 0.4120 +4537 6389 0.9370 +4537 6390 0.9200 +4537 6391 0.7200 +4537 6392 0.4440 +4537 6426 0.5970 +4537 6622 0.6760 +4537 6834 0.5680 +4537 7019 0.7420 +4537 7045 0.4330 +4537 7084 0.6260 +4537 7349 0.6740 +4537 7381 0.9680 +4537 7384 0.9620 +4537 7385 0.9300 +4537 7386 0.9970 +4537 7388 0.9560 +4537 7403 0.4390 +4537 7404 0.4390 +4537 8192 0.4750 +4537 8683 0.5680 +4537 8879 0.4150 +4537 9296 0.4320 +4537 9349 0.4610 +4537 9377 0.8710 +4537 9446 0.5570 +4537 9512 0.7810 +4537 10105 0.4070 +4537 10128 0.6210 +4537 10245 0.4520 +4537 10440 0.5070 +4537 10443 0.4760 +4537 10553 0.7180 +4537 10631 0.4290 +4537 10975 0.8500 +4537 11343 0.8980 +4537 23135 0.4390 +4537 23203 0.5560 +4537 23435 0.8330 +4537 23645 0.8730 +4537 25880 0.9340 +4537 25915 0.9150 +4537 26024 0.4510 +4537 27068 0.4390 +4537 27089 0.9080 +4537 28976 0.6820 +4537 29078 0.9240 +4537 29796 0.9760 +4537 29928 0.5370 +4537 29957 0.8790 +4537 51021 0.4510 +4537 51079 0.9990 +4537 51091 0.4150 +4537 51103 0.9950 +4537 51204 0.5370 +4537 51295 0.6300 +4537 51300 0.6060 +4537 51380 0.4150 +4537 54101 0.5640 +4537 54205 0.5630 +4537 54539 0.9970 +4537 54675 0.4280 +4537 54859 0.4790 +4537 55052 0.4260 +4537 55149 0.4870 +4537 55256 0.4790 +4537 55471 0.5880 +4537 55572 0.9060 +4537 55728 0.4760 +4537 55744 0.5640 +4537 55863 0.7840 +4537 55967 0.9990 +4537 56901 0.5590 +4537 56964 0.5400 +4537 56975 0.7160 +4537 57128 0.4070 +4537 57407 0.7140 +4537 58509 0.5380 +4537 60528 0.4020 +4537 64963 0.4560 +4537 65018 0.8290 +4537 79085 0.8860 +4537 79133 0.8270 +4537 79598 0.6110 +4537 79728 0.9220 +4537 79893 0.4570 +4537 80195 0.7140 +4537 80224 0.5590 +4537 81341 0.9010 +4537 81892 0.4200 +4537 83641 0.4120 +4537 84701 0.4690 +4537 84886 0.4030 +4537 84939 0.9750 +4537 85476 0.4350 +4537 87178 0.4440 +4537 90353 0.6950 +4537 90381 0.5520 +4537 90634 0.4760 +4537 91300 0.8730 +4537 91942 0.9700 +4537 112812 0.8990 +4537 114789 0.8790 +4537 119391 0.5580 +4537 126328 0.9980 +4537 137682 0.7790 +4537 139221 0.9750 +4537 284427 0.8790 +4537 339896 0.4150 +4537 374291 0.9990 +4537 440567 0.7820 +4537 493856 0.5300 +4537 728317 0.9750 +4537 100532726 0.8520 +4538 4539 0.9990 +4538 4540 0.9990 +4538 4541 0.9990 +4538 4694 0.9990 +4538 4695 0.9990 +4538 4696 0.9970 +4538 4697 0.9610 +4538 4698 0.9990 +4538 4700 0.9990 +4538 4701 0.9980 +4538 4702 0.9990 +4538 4704 0.9990 +4538 4705 0.9990 +4538 4706 0.9990 +4538 4707 0.9990 +4538 4708 0.9940 +4538 4709 0.9990 +4538 4710 0.9990 +4538 4711 0.9990 +4538 4712 0.9990 +4538 4713 0.9990 +4538 4714 0.9990 +4538 4715 0.9990 +4538 4716 0.9990 +4538 4717 0.9950 +4538 4718 0.9990 +4538 4720 0.9990 +4538 4722 0.9990 +4538 4723 0.9990 +4538 4724 0.9990 +4538 4725 0.9990 +4538 4726 0.9990 +4538 4728 0.9990 +4538 4729 0.9990 +4538 4731 0.9980 +4538 4820 0.4210 +4538 5172 0.5060 +4538 5428 0.5650 +4538 5431 0.5140 +4538 5442 0.4870 +4538 5469 0.4480 +4538 5478 0.4030 +4538 5479 0.6520 +4538 5480 0.6460 +4538 5481 0.4100 +4538 5566 0.6640 +4538 5567 0.6660 +4538 5568 0.6630 +4538 5742 0.8880 +4538 5861 0.5380 +4538 5896 0.4590 +4538 6041 0.5440 +4538 6103 0.5730 +4538 6133 0.4510 +4538 6147 0.4900 +4538 6183 0.4390 +4538 6187 0.6200 +4538 6188 0.7910 +4538 6205 0.4770 +4538 6207 0.5890 +4538 6208 0.7270 +4538 6389 0.9220 +4538 6390 0.9580 +4538 6391 0.6960 +4538 6392 0.5070 +4538 6426 0.5440 +4538 6622 0.6870 +4538 6648 0.5460 +4538 6674 0.4770 +4538 6687 0.4030 +4538 7019 0.7960 +4538 7045 0.6650 +4538 7084 0.6670 +4538 7284 0.5240 +4538 7349 0.7130 +4538 7381 0.9750 +4538 7384 0.9710 +4538 7385 0.9530 +4538 7386 0.9970 +4538 7388 0.9690 +4538 7403 0.6740 +4538 7404 0.6740 +4538 7978 0.4700 +4538 8192 0.5270 +4538 8411 0.4650 +4538 8683 0.5460 +4538 8802 0.4580 +4538 8879 0.4290 +4538 8924 0.4670 +4538 8925 0.4640 +4538 9349 0.5630 +4538 9360 0.4270 +4538 9363 0.5340 +4538 9377 0.8910 +4538 9446 0.5550 +4538 9512 0.8090 +4538 9563 0.4350 +4538 9794 0.4620 +4538 10105 0.4040 +4538 10128 0.4430 +4538 10245 0.6850 +4538 10440 0.7230 +4538 10443 0.4930 +4538 10553 0.7190 +4538 10631 0.6650 +4538 10861 0.5060 +4538 10953 0.4730 +4538 10975 0.8520 +4538 11259 0.5340 +4538 11343 0.8980 +4538 22981 0.4620 +4538 23135 0.6880 +4538 23140 0.4580 +4538 23203 0.6140 +4538 23435 0.6670 +4538 23645 0.9500 +4538 24138 0.4730 +4538 25880 0.5960 +4538 25915 0.8640 +4538 25998 0.4570 +4538 26297 0.4620 +4538 27068 0.4070 +4538 27089 0.9480 +4538 29078 0.9220 +4538 29087 0.8100 +4538 29796 0.9780 +4538 29928 0.6250 +4538 29957 0.8770 +4538 51021 0.4540 +4538 51079 0.9990 +4538 51091 0.4280 +4538 51102 0.4340 +4538 51103 0.9800 +4538 51295 0.9950 +4538 51300 0.9950 +4538 51350 0.4850 +4538 51363 0.4620 +4538 51380 0.4280 +4538 54101 0.5510 +4538 54205 0.5070 +4538 54539 0.9990 +4538 54859 0.4870 +4538 54902 0.4270 +4538 54968 0.5480 +4538 55017 0.4720 +4538 55052 0.4170 +4538 55101 0.4450 +4538 55143 0.4410 +4538 55213 0.4620 +4538 55256 0.4690 +4538 55534 0.4620 +4538 55572 0.9140 +4538 55684 0.5350 +4538 55728 0.4930 +4538 55744 0.5400 +4538 55920 0.4630 +4538 55967 0.9990 +4538 56898 0.4320 +4538 56901 0.5320 +4538 56964 0.5400 +4538 56975 0.8000 +4538 57128 0.4680 +4538 57407 0.7140 +4538 57679 0.4690 +4538 58509 0.5170 +4538 60528 0.4210 +4538 63943 0.4720 +4538 64087 0.4050 +4538 64963 0.4450 +4538 65010 0.5060 +4538 65018 0.7240 +4538 79002 0.4400 +4538 79085 0.8820 +4538 79133 0.5870 +4538 79573 0.4720 +4538 79598 0.6230 +4538 79728 0.9160 +4538 80195 0.7140 +4538 80207 0.6590 +4538 80224 0.6610 +4538 81341 0.9550 +4538 81554 0.4770 +4538 81556 0.4730 +4538 81876 0.5360 +4538 83452 0.5440 +4538 83538 0.4720 +4538 83857 0.4720 +4538 84233 0.4720 +4538 84277 0.5310 +4538 84441 0.4620 +4538 84618 0.4720 +4538 84701 0.5660 +4538 84869 0.4280 +4538 84899 0.4720 +4538 84939 0.9750 +4538 84952 0.5350 +4538 87178 0.4450 +4538 90353 0.7230 +4538 90381 0.6440 +4538 90634 0.4930 +4538 91300 0.9500 +4538 91433 0.4620 +4538 91754 0.4630 +4538 91942 0.9650 +4538 93034 0.4720 +4538 112812 0.8870 +4538 114789 0.8760 +4538 115019 0.5060 +4538 115111 0.5060 +4538 116369 0.5060 +4538 119391 0.5580 +4538 125965 0.4910 +4538 126328 0.9990 +4538 130502 0.4720 +4538 137392 0.4620 +4538 139221 0.9750 +4538 158248 0.4720 +4538 160335 0.4720 +4538 160418 0.4770 +4538 161582 0.4720 +4538 164118 0.4720 +4538 283237 0.4770 +4538 283450 0.4620 +4538 284129 0.5060 +4538 284427 0.8760 +4538 339122 0.5350 +4538 339145 0.4620 +4538 339896 0.4280 +4538 374291 0.9990 +4538 375611 0.5060 +4538 387695 0.4180 +4538 388753 0.5190 +4538 401409 0.5340 +4538 439996 0.4720 +4538 440567 0.8070 +4538 440574 0.4190 +4538 493856 0.5620 +4538 497661 0.4160 +4538 728317 0.9750 +4538 100526794 0.4720 +4538 100532726 0.8650 +4539 4540 0.9990 +4539 4541 0.9990 +4539 4694 0.9860 +4539 4695 0.9980 +4539 4696 0.9880 +4539 4697 0.8120 +4539 4698 0.9990 +4539 4700 0.9980 +4539 4701 0.9820 +4539 4702 0.9980 +4539 4704 0.9930 +4539 4705 0.9900 +4539 4706 0.9990 +4539 4707 0.9600 +4539 4708 0.9750 +4539 4709 0.9860 +4539 4710 0.9880 +4539 4711 0.9910 +4539 4712 0.9960 +4539 4713 0.9980 +4539 4714 0.9890 +4539 4715 0.9980 +4539 4716 0.9980 +4539 4717 0.9870 +4539 4718 0.9850 +4539 4720 0.9990 +4539 4722 0.9990 +4539 4723 0.9990 +4539 4724 0.9980 +4539 4725 0.9850 +4539 4726 0.9980 +4539 4728 0.9990 +4539 4729 0.9980 +4539 4731 0.9870 +4539 5431 0.4870 +4539 5442 0.4310 +4539 5479 0.5310 +4539 5480 0.5280 +4539 5566 0.6500 +4539 5567 0.6500 +4539 5568 0.6500 +4539 5742 0.8850 +4539 6187 0.4770 +4539 6188 0.7430 +4539 6207 0.4690 +4539 6208 0.4600 +4539 6223 0.4970 +4539 6426 0.5880 +4539 6622 0.6500 +4539 7019 0.7490 +4539 7084 0.6330 +4539 7349 0.7150 +4539 7381 0.9590 +4539 7384 0.9640 +4539 7385 0.9310 +4539 7386 0.9790 +4539 7388 0.9590 +4539 7920 0.4200 +4539 8192 0.4110 +4539 8683 0.5880 +4539 9377 0.8670 +4539 9446 0.5230 +4539 9512 0.7840 +4539 10443 0.4990 +4539 10553 0.6440 +4539 10975 0.8550 +4539 23203 0.5650 +4539 23435 0.6500 +4539 23645 0.6790 +4539 25915 0.7400 +4539 27089 0.8950 +4539 29078 0.7570 +4539 29796 0.9710 +4539 29928 0.5130 +4539 29957 0.6030 +4539 51021 0.4240 +4539 51079 0.9980 +4539 51103 0.9040 +4539 54539 0.9880 +4539 54859 0.5050 +4539 55572 0.6820 +4539 55728 0.4750 +4539 55863 0.4990 +4539 55967 0.9980 +4539 56964 0.5400 +4539 56975 0.7210 +4539 57128 0.4100 +4539 57407 0.6440 +4539 58509 0.5130 +4539 65018 0.6700 +4539 79085 0.6120 +4539 79598 0.6270 +4539 79728 0.9120 +4539 79893 0.4310 +4539 80195 0.6440 +4539 81341 0.7140 +4539 84701 0.4170 +4539 84939 0.8820 +4539 90381 0.5280 +4539 90634 0.4750 +4539 91300 0.6790 +4539 91942 0.7560 +4539 112812 0.8180 +4539 114789 0.6030 +4539 119391 0.5230 +4539 126328 0.9840 +4539 139221 0.8820 +4539 284427 0.6030 +4539 374291 0.9970 +4539 440567 0.7940 +4539 493856 0.5130 +4539 728317 0.8820 +4539 100532726 0.8480 +4540 4541 0.9990 +4540 4694 0.9990 +4540 4695 0.9990 +4540 4696 0.9980 +4540 4697 0.9480 +4540 4698 0.9990 +4540 4700 0.9990 +4540 4701 0.9980 +4540 4702 0.9990 +4540 4704 0.9990 +4540 4705 0.9970 +4540 4706 0.9990 +4540 4707 0.9920 +4540 4708 0.9970 +4540 4709 0.9990 +4540 4710 0.9990 +4540 4711 0.9990 +4540 4712 0.9990 +4540 4713 0.9990 +4540 4714 0.9990 +4540 4715 0.9990 +4540 4716 0.9990 +4540 4717 0.9950 +4540 4718 0.9980 +4540 4720 0.9990 +4540 4722 0.9990 +4540 4723 0.9990 +4540 4724 0.9990 +4540 4725 0.9990 +4540 4726 0.9990 +4540 4728 0.9990 +4540 4729 0.9990 +4540 4731 0.9980 +4540 5428 0.4930 +4540 5431 0.4620 +4540 5442 0.5340 +4540 5479 0.4900 +4540 5480 0.4900 +4540 5498 0.4650 +4540 5566 0.6580 +4540 5567 0.6570 +4540 5568 0.6560 +4540 5664 0.4630 +4540 5742 0.8830 +4540 6041 0.4990 +4540 6183 0.4120 +4540 6187 0.4660 +4540 6188 0.7230 +4540 6205 0.4170 +4540 6207 0.4700 +4540 6208 0.4890 +4540 6341 0.4470 +4540 6389 0.8810 +4540 6390 0.9280 +4540 6391 0.7270 +4540 6392 0.6640 +4540 6426 0.4310 +4540 6622 0.6880 +4540 6832 0.4740 +4540 6834 0.6270 +4540 6901 0.5030 +4540 7006 0.4070 +4540 7019 0.7690 +4540 7084 0.4850 +4540 7294 0.4070 +4540 7349 0.7030 +4540 7381 0.9470 +4540 7384 0.9420 +4540 7385 0.9460 +4540 7386 0.9930 +4540 7388 0.9440 +4540 7978 0.4800 +4540 8192 0.5290 +4540 8683 0.4340 +4540 8802 0.4720 +4540 9349 0.4450 +4540 9377 0.9000 +4540 9446 0.4450 +4540 9512 0.5700 +4540 9551 0.4700 +4540 10128 0.6070 +4540 10245 0.4450 +4540 10440 0.5120 +4540 10553 0.6210 +4540 10730 0.5110 +4540 10975 0.8830 +4540 11343 0.8980 +4540 23203 0.5150 +4540 23410 0.4270 +4540 23435 0.6770 +4540 23645 0.7860 +4540 25880 0.6020 +4540 25915 0.8410 +4540 26024 0.5120 +4540 27089 0.9310 +4540 27109 0.4150 +4540 28976 0.4070 +4540 29078 0.8610 +4540 29087 0.7930 +4540 29796 0.9560 +4540 29928 0.5100 +4540 29957 0.8630 +4540 51021 0.4520 +4540 51079 0.9990 +4540 51102 0.4960 +4540 51103 0.9880 +4540 51204 0.5250 +4540 51350 0.4670 +4540 54101 0.4950 +4540 54205 0.5010 +4540 54539 0.9990 +4540 54859 0.4870 +4540 54931 0.5300 +4540 55052 0.4180 +4540 55149 0.4300 +4540 55180 0.4180 +4540 55256 0.7360 +4540 55572 0.9040 +4540 55699 0.4660 +4540 55744 0.5650 +4540 55967 0.9990 +4540 56652 0.4300 +4540 56898 0.4240 +4540 56964 0.5400 +4540 56975 0.8170 +4540 57128 0.4440 +4540 57143 0.4150 +4540 57407 0.6120 +4540 58509 0.4250 +4540 60528 0.5490 +4540 64216 0.4300 +4540 64838 0.4200 +4540 65018 0.8600 +4540 79085 0.8640 +4540 79133 0.6380 +4540 79598 0.4400 +4540 79728 0.9230 +4540 79736 0.4150 +4540 79934 0.4380 +4540 80195 0.6120 +4540 80224 0.6320 +4540 81341 0.8250 +4540 81892 0.4390 +4540 83641 0.4140 +4540 84277 0.4490 +4540 84701 0.5230 +4540 84869 0.4760 +4540 84939 0.9030 +4540 87178 0.5780 +4540 90381 0.4830 +4540 90956 0.4150 +4540 91300 0.7860 +4540 91942 0.9610 +4540 112812 0.7780 +4540 114789 0.8610 +4540 119391 0.4370 +4540 126328 0.9990 +4540 133121 0.4100 +4540 137682 0.5940 +4540 139221 0.9030 +4540 203054 0.4150 +4540 254863 0.4350 +4540 284427 0.8610 +4540 374291 0.9990 +4540 440567 0.5990 +4540 440574 0.4320 +4540 493856 0.4290 +4540 728317 0.9030 +4540 100532726 0.8940 +4541 4694 0.9970 +4541 4695 0.9930 +4541 4696 0.9970 +4541 4697 0.8190 +4541 4698 0.9890 +4541 4700 0.9870 +4541 4701 0.9840 +4541 4702 0.9920 +4541 4704 0.9950 +4541 4705 0.9970 +4541 4706 0.9980 +4541 4707 0.9760 +4541 4708 0.9740 +4541 4709 0.9860 +4541 4710 0.9870 +4541 4711 0.9960 +4541 4712 0.9950 +4541 4713 0.9870 +4541 4714 0.9910 +4541 4715 0.9880 +4541 4716 0.9880 +4541 4717 0.9870 +4541 4718 0.9890 +4541 4720 0.9950 +4541 4722 0.9990 +4541 4723 0.9980 +4541 4724 0.9950 +4541 4725 0.9990 +4541 4726 0.9880 +4541 4728 0.9970 +4541 4729 0.9950 +4541 4731 0.9910 +4541 5152 0.5480 +4541 5428 0.4340 +4541 5442 0.5430 +4541 5566 0.6670 +4541 5567 0.6610 +4541 5568 0.6600 +4541 5742 0.8810 +4541 6188 0.6220 +4541 6389 0.5810 +4541 6622 0.6780 +4541 6668 0.5420 +4541 6690 0.4220 +4541 6832 0.4180 +4541 6834 0.5710 +4541 7019 0.7190 +4541 7084 0.6690 +4541 7349 0.7490 +4541 7381 0.8540 +4541 7384 0.8980 +4541 7385 0.9340 +4541 7386 0.8970 +4541 7388 0.8720 +4541 7978 0.4930 +4541 9377 0.8710 +4541 10128 0.6260 +4541 10553 0.5780 +4541 10891 0.4250 +4541 10922 0.6810 +4541 10975 0.8570 +4541 22868 0.6440 +4541 23435 0.8180 +4541 23645 0.4700 +4541 25880 0.6200 +4541 25915 0.9990 +4541 27089 0.8860 +4541 28976 0.9970 +4541 29078 0.9200 +4541 29796 0.8780 +4541 51079 0.9930 +4541 51103 0.8990 +4541 51106 0.4260 +4541 51204 0.5190 +4541 51295 0.6230 +4541 51300 0.5940 +4541 51350 0.4060 +4541 54205 0.4180 +4541 54539 0.9880 +4541 54859 0.4160 +4541 54931 0.4100 +4541 55149 0.4460 +4541 55256 0.7140 +4541 55471 0.5760 +4541 55572 0.8340 +4541 55744 0.5170 +4541 55863 0.6490 +4541 55967 0.9880 +4541 56652 0.4100 +4541 56901 0.5030 +4541 56964 0.5400 +4541 56975 0.6960 +4541 57407 0.5780 +4541 60528 0.4450 +4541 64216 0.5120 +4541 65018 0.8730 +4541 79133 0.8370 +4541 79598 0.6180 +4541 79675 0.5050 +4541 79728 0.8680 +4541 79736 0.4290 +4541 80195 0.5780 +4541 80207 0.6340 +4541 80224 0.5560 +4541 81341 0.5510 +4541 81892 0.5160 +4541 84701 0.4440 +4541 84939 0.6240 +4541 87178 0.4640 +4541 90353 0.6910 +4541 91300 0.4700 +4541 91942 0.9430 +4541 126328 0.9930 +4541 137682 0.7580 +4541 139221 0.6240 +4541 374291 0.9980 +4541 387695 0.4470 +4541 728317 0.6240 +4541 100532726 0.8920 +4542 4637 0.7800 +4542 4641 0.9220 +4542 4646 0.9140 +4542 4649 0.9130 +4542 4688 0.4240 +4542 4689 0.5010 +4542 4975 0.4890 +4542 5199 0.4640 +4542 5330 0.4750 +4542 5341 0.5150 +4542 5724 0.4100 +4542 5777 0.4230 +4542 5788 0.6620 +4542 5880 0.4320 +4542 6452 0.4350 +4542 6688 0.4620 +4542 7305 0.6820 +4542 7409 0.5480 +4542 7454 0.8400 +4542 7456 0.6320 +4542 7805 0.6840 +4542 7940 0.4730 +4542 8518 0.5060 +4542 8530 0.4120 +4542 8698 0.4870 +4542 8976 0.7470 +4542 9050 0.4500 +4542 9051 0.6290 +4542 9322 0.4550 +4542 9473 0.4430 +4542 9938 0.4160 +4542 10083 0.4220 +4542 10094 0.4320 +4542 10095 0.4460 +4542 10097 0.5990 +4542 10112 0.4640 +4542 10288 0.4420 +4542 10312 0.4140 +4542 11151 0.5730 +4542 23048 0.5450 +4542 23406 0.4960 +4542 26254 0.4140 +4542 26578 0.4020 +4542 26610 0.5180 +4542 27128 0.6280 +4542 29920 0.4200 +4542 51078 0.5250 +4542 51291 0.4600 +4542 51311 0.4280 +4542 51806 0.5470 +4542 54440 0.6270 +4542 54874 0.4550 +4542 55140 0.5050 +4542 55898 0.4260 +4542 55911 0.5880 +4542 57705 0.4170 +4542 64072 0.7130 +4542 64098 0.4160 +4542 64174 0.4090 +4542 80301 0.4110 +4542 80342 0.4310 +4542 83706 0.5120 +4542 84106 0.4850 +4542 84700 0.9160 +4542 91662 0.4570 +4542 115727 0.4280 +4542 117289 0.4600 +4542 120425 0.4600 +4542 124989 0.4910 +4542 126326 0.6850 +4542 140465 0.7730 +4542 140735 0.7260 +4542 146779 0.4910 +4542 146862 0.4260 +4542 147179 0.7530 +4542 257106 0.5420 +4543 4544 0.9450 +4543 4835 0.4450 +4543 4862 0.4400 +4543 5617 0.5250 +4543 6096 0.4090 +4543 6714 0.5030 +4543 7166 0.4200 +4543 8600 0.4540 +4543 8601 0.4460 +4543 8863 0.4830 +4543 8864 0.4400 +4543 9217 0.5770 +4543 9248 0.9550 +4543 9290 0.5290 +4543 9293 0.4430 +4543 10681 0.7410 +4543 23066 0.4180 +4543 26086 0.4080 +4543 27199 0.5260 +4543 51442 0.4310 +4543 51764 0.7060 +4543 54331 0.9400 +4543 55970 0.6940 +4543 56099 0.4770 +4543 56670 0.5200 +4543 59345 0.7840 +4543 94235 0.6780 +4543 120114 0.8040 +4543 121278 0.4180 +4543 338442 0.5110 +4543 339976 0.4190 +4544 4853 0.4310 +4544 4862 0.4370 +4544 5075 0.4820 +4544 5468 0.4840 +4544 5617 0.4070 +4544 5629 0.4830 +4544 6514 0.6420 +4544 6714 0.5030 +4544 6833 0.6060 +4544 6927 0.5370 +4544 6934 0.7240 +4544 7103 0.5440 +4544 7166 0.5890 +4544 7466 0.6210 +4544 8647 0.4770 +4544 8863 0.4390 +4544 8864 0.4570 +4544 8872 0.6680 +4544 9248 0.9380 +4544 9290 0.5120 +4544 9340 0.5380 +4544 9575 0.4900 +4544 10644 0.6690 +4544 10681 0.9210 +4544 11132 0.4180 +4544 26086 0.4560 +4544 27199 0.5330 +4544 51764 0.9080 +4544 54331 0.9130 +4544 54469 0.4340 +4544 54796 0.4600 +4544 54901 0.8000 +4544 55970 0.9090 +4544 56670 0.4990 +4544 56999 0.5970 +4544 57118 0.5830 +4544 57818 0.8040 +4544 59345 0.9380 +4544 79068 0.5970 +4544 80201 0.4460 +4544 80320 0.5060 +4544 84327 0.4470 +4544 94235 0.9080 +4544 116985 0.6000 +4544 120103 0.5050 +4544 120114 0.8310 +4544 121278 0.4040 +4544 136259 0.5800 +4544 145741 0.5240 +4544 169026 0.7630 +4544 169792 0.5760 +4544 221895 0.6210 +4544 338442 0.5050 +4544 388125 0.6250 +4544 392636 0.5980 +4547 5007 0.4310 +4547 5033 0.5800 +4547 5034 0.9960 +4547 5105 0.4300 +4547 5321 0.4150 +4547 5360 0.4550 +4547 5465 0.6790 +4547 5468 0.5580 +4547 6319 0.6070 +4547 6400 0.4540 +4547 6514 0.5690 +4547 6720 0.7480 +4547 6721 0.6520 +4547 7274 0.4420 +4547 7295 0.4480 +4547 7436 0.5100 +4547 8310 0.5230 +4547 8431 0.6900 +4547 8435 0.5920 +4547 8694 0.7640 +4547 9076 0.4450 +4547 9213 0.4180 +4547 9619 0.4200 +4547 9926 0.6060 +4547 9971 0.6140 +4547 10062 0.4400 +4547 10400 0.4730 +4547 10842 0.4220 +4547 10891 0.4400 +4547 10998 0.4990 +4547 10999 0.4490 +4547 11001 0.4470 +4547 23197 0.4820 +4547 27141 0.5980 +4547 27329 0.6190 +4547 29881 0.6910 +4547 51009 0.4120 +4547 51085 0.6040 +4547 51128 0.6990 +4547 53345 0.6260 +4547 53630 0.4790 +4547 57104 0.6850 +4547 57678 0.4540 +4547 57818 0.4290 +4547 64240 0.7120 +4547 64241 0.6240 +4547 64714 0.4200 +4547 79135 0.8380 +4547 80339 0.5590 +4547 84447 0.4340 +4547 84647 0.5350 +4547 84649 0.6540 +4547 84699 0.5230 +4547 92579 0.4370 +4547 116519 0.5130 +4547 132949 0.4530 +4547 158833 0.5490 +4547 192669 0.4950 +4547 192670 0.4950 +4547 255738 0.7030 +4547 400499 0.4510 +4548 4552 0.9990 +4548 4594 0.9450 +4548 4843 0.5140 +4548 4942 0.4340 +4548 4953 0.4090 +4548 5020 0.4310 +4548 5062 0.4110 +4548 5091 0.4010 +4548 5095 0.6090 +4548 5096 0.6460 +4548 5723 0.4170 +4548 5740 0.5040 +4548 5826 0.6070 +4548 5832 0.4930 +4548 6093 0.4290 +4548 6303 0.5440 +4548 6470 0.9940 +4548 6472 0.9840 +4548 6510 0.5360 +4548 6573 0.7190 +4548 6898 0.9280 +4548 6947 0.6220 +4548 6948 0.7860 +4548 7037 0.5180 +4548 7263 0.4070 +4548 7296 0.4680 +4548 7298 0.8240 +4548 7351 0.4360 +4548 7415 0.4010 +4548 8029 0.5340 +4548 8050 0.4490 +4548 8528 0.4330 +4548 8991 0.8250 +4548 9061 0.4230 +4548 9341 0.4130 +4548 9475 0.4330 +4548 9497 0.4530 +4548 9528 0.4220 +4548 10400 0.6360 +4548 10587 0.4380 +4548 10588 0.5050 +4548 10768 0.9710 +4548 10797 0.7690 +4548 10840 0.9490 +4548 10841 0.9400 +4548 10993 0.8660 +4548 11214 0.4780 +4548 23382 0.9720 +4548 23499 0.4500 +4548 23743 0.9500 +4548 25902 0.9800 +4548 25974 0.9620 +4548 26227 0.5350 +4548 27158 0.7740 +4548 27232 0.7350 +4548 27249 0.9770 +4548 27430 0.9540 +4548 28960 0.4240 +4548 29105 0.4940 +4548 29958 0.7270 +4548 29968 0.4240 +4548 51074 0.4720 +4548 51268 0.5010 +4548 51293 0.8160 +4548 51320 0.4380 +4548 51380 0.4100 +4548 51733 0.5120 +4548 51752 0.4460 +4548 54205 0.5410 +4548 54431 0.5920 +4548 55004 0.4310 +4548 55034 0.6720 +4548 55066 0.5550 +4548 55075 0.4320 +4548 55256 0.5400 +4548 55349 0.6280 +4548 55717 0.4690 +4548 55788 0.9490 +4548 55929 0.4130 +4548 56267 0.9320 +4548 57412 0.4230 +4548 58478 0.4150 +4548 64111 0.4070 +4548 81034 0.4920 +4548 81693 0.4310 +4548 81839 0.4560 +4548 84245 0.5760 +4548 84693 0.4930 +4548 92935 0.9350 +4548 113235 0.5130 +4548 113675 0.8470 +4548 114112 0.4110 +4548 114885 0.4010 +4548 123263 0.9390 +4548 157769 0.4050 +4548 160428 0.9430 +4548 166785 0.8890 +4548 200205 0.6770 +4548 200895 0.9720 +4548 253959 0.4350 +4548 259307 0.9030 +4548 326625 0.8430 +4548 348654 0.4120 +4548 441024 0.7230 +4548 730249 0.4410 +4552 4594 0.7750 +4552 5826 0.5030 +4552 6470 0.9290 +4552 6472 0.6710 +4552 6573 0.7810 +4552 6611 0.8220 +4552 6947 0.5130 +4552 6948 0.7900 +4552 7298 0.7890 +4552 7386 0.4270 +4552 8029 0.4450 +4552 8529 0.5280 +4552 8836 0.4140 +4552 9060 0.6350 +4552 9061 0.6790 +4552 10299 0.4980 +4552 10400 0.4110 +4552 10588 0.4110 +4552 10797 0.4940 +4552 10840 0.4360 +4552 10858 0.5610 +4552 11283 0.9030 +4552 22921 0.4770 +4552 23743 0.8120 +4552 25902 0.4350 +4552 25974 0.8810 +4552 27232 0.5700 +4552 27249 0.9780 +4552 27430 0.5010 +4552 29958 0.4940 +4552 51167 0.4300 +4552 51293 0.6880 +4552 55236 0.5030 +4552 55349 0.5190 +4552 55788 0.9450 +4552 57019 0.5040 +4552 57834 0.7010 +4552 60561 0.4690 +4552 66002 0.5960 +4552 79072 0.6830 +4552 79888 0.4040 +4552 80308 0.7870 +4552 81034 0.4050 +4552 81573 0.4030 +4552 112812 0.5350 +4552 113235 0.5280 +4552 166752 0.4950 +4552 166785 0.8850 +4552 200895 0.5550 +4552 260293 0.7090 +4552 285440 0.5530 +4552 326625 0.8630 +4552 100861540 0.4730 +4580 5230 0.4410 +4580 5232 0.6020 +4580 5817 0.6430 +4580 5880 0.5530 +4580 7057 0.4010 +4580 7058 0.5600 +4580 7059 0.9080 +4580 7416 0.7720 +4580 7417 0.4210 +4580 8834 0.6690 +4580 9804 0.7990 +4580 9868 0.8360 +4580 9870 0.5750 +4580 10067 0.4640 +4580 10452 0.9500 +4580 10469 0.4060 +4580 10651 0.9960 +4580 10712 0.5270 +4580 10989 0.9650 +4580 11331 0.4880 +4580 11337 0.4580 +4580 25813 0.9980 +4580 26515 0.4050 +4580 26517 0.4560 +4580 26519 0.5410 +4580 26520 0.4940 +4580 27173 0.5320 +4580 29090 0.5250 +4580 29985 0.4910 +4580 29986 0.4790 +4580 54543 0.8420 +4580 54927 0.9400 +4580 55669 0.6330 +4580 55735 0.9490 +4580 55847 0.4710 +4580 56993 0.8940 +4580 79135 0.8990 +4580 80128 0.9080 +4580 84134 0.8720 +4580 84303 0.9490 +4580 84557 0.4130 +4580 92609 0.5680 +4580 125988 0.8890 +4580 131474 0.4760 +4580 139322 0.9050 +4580 200185 0.4590 +4580 344191 0.4060 +4580 345778 0.8470 +4580 387990 0.6780 +4580 401505 0.7710 +4580 440574 0.9430 +4580 440738 0.5480 +4580 100188893 0.7110 +4584 4585 0.7090 +4584 4586 0.8440 +4584 4588 0.8690 +4584 4589 0.9060 +4584 4689 0.4630 +4584 5016 0.6500 +4584 5651 0.5120 +4584 6480 0.4080 +4584 6482 0.4410 +4584 9245 0.4850 +4584 9966 0.4320 +4584 10071 0.8260 +4584 10164 0.4220 +4584 10331 0.5140 +4584 10462 0.4990 +4584 11119 0.5220 +4584 11227 0.4040 +4584 23633 0.5920 +4584 26290 0.4080 +4584 29071 0.4660 +4584 51146 0.4110 +4584 51301 0.4460 +4584 51705 0.5750 +4584 51809 0.4020 +4584 55054 0.4380 +4584 56667 0.9200 +4584 56913 0.4310 +4584 79695 0.4330 +4584 84639 0.6600 +4584 93010 0.4120 +4584 94025 0.9230 +4584 114805 0.8240 +4584 118430 0.5920 +4584 132014 0.4540 +4584 140453 0.7210 +4584 143662 0.9220 +4584 192134 0.4600 +4584 200958 0.9260 +4584 339145 0.4510 +4584 394263 0.8680 +4584 400935 0.4290 +4584 402569 0.7430 +4584 727897 0.9090 +4584 100131827 0.5000 +4584 100507679 0.6240 +4585 4586 0.7340 +4585 4588 0.9110 +4585 4589 0.9020 +4585 4680 0.5890 +4585 4914 0.5430 +4585 5290 0.4550 +4585 5320 0.4370 +4585 5651 0.5080 +4585 5728 0.4310 +4585 6480 0.4830 +4585 6482 0.5130 +4585 6483 0.4660 +4585 6484 0.4800 +4585 6487 0.5250 +4585 6598 0.4080 +4585 6772 0.4750 +4585 7033 0.4340 +4585 7157 0.6650 +4585 7273 0.4980 +4585 8693 0.4780 +4585 9245 0.5940 +4585 9331 0.4050 +4585 9334 0.4470 +4585 9563 0.4340 +4585 10068 0.4130 +4585 10071 0.8510 +4585 10158 0.4410 +4585 10164 0.4610 +4585 10232 0.4480 +4585 10331 0.5460 +4585 10462 0.5320 +4585 10610 0.4560 +4585 10678 0.4250 +4585 10943 0.4750 +4585 11226 0.5470 +4585 11227 0.4400 +4585 26290 0.4440 +4585 27090 0.5010 +4585 27445 0.4670 +4585 29071 0.5580 +4585 50614 0.4410 +4585 51079 0.4240 +4585 51146 0.4500 +4585 51301 0.4570 +4585 51809 0.4130 +4585 55193 0.4060 +4585 55568 0.6270 +4585 56667 0.9650 +4585 56913 0.6060 +4585 63917 0.4030 +4585 64409 0.4040 +4585 64764 0.5740 +4585 79369 0.4050 +4585 79623 0.4950 +4585 79695 0.4810 +4585 84002 0.5370 +4585 84752 0.4050 +4585 90993 0.5300 +4585 93010 0.4970 +4585 94025 0.9690 +4585 114805 0.4030 +4585 118430 0.6150 +4585 140453 0.8310 +4585 143662 0.9200 +4585 145501 0.8100 +4585 146712 0.4460 +4585 192134 0.5670 +4585 200958 0.9740 +4585 256435 0.4310 +4585 374378 0.4030 +4585 374907 0.4050 +4585 394263 0.8850 +4585 442117 0.4010 +4585 727897 0.7830 +4585 100506658 0.4060 +4585 100507679 0.7010 +4586 4588 0.9300 +4586 4589 0.9580 +4586 4680 0.5340 +4586 5016 0.5660 +4586 5225 0.4890 +4586 5320 0.4380 +4586 5457 0.4350 +4586 5595 0.4350 +4586 5651 0.4690 +4586 6356 0.5070 +4586 6426 0.4280 +4586 6440 0.4500 +4586 6480 0.4900 +4586 6482 0.4780 +4586 6483 0.4520 +4586 6484 0.4940 +4586 6487 0.5160 +4586 6523 0.4040 +4586 6778 0.5070 +4586 7031 0.8110 +4586 7032 0.9270 +4586 7033 0.8040 +4586 7039 0.4460 +4586 7040 0.5660 +4586 7080 0.4760 +4586 7082 0.4670 +4586 7097 0.4390 +4586 7099 0.4690 +4586 7124 0.5460 +4586 7157 0.5210 +4586 7356 0.7070 +4586 7837 0.4100 +4586 8549 0.4400 +4586 8693 0.7060 +4586 9245 0.6160 +4586 9331 0.4050 +4586 9334 0.4280 +4586 10071 0.9320 +4586 10164 0.4620 +4586 10331 0.5130 +4586 10462 0.5310 +4586 10551 0.7970 +4586 10595 0.4570 +4586 10610 0.4380 +4586 10678 0.4150 +4586 10943 0.4750 +4586 11199 0.5040 +4586 11226 0.4820 +4586 11227 0.4950 +4586 25803 0.6970 +4586 26290 0.4130 +4586 27090 0.4010 +4586 29071 0.5450 +4586 50614 0.4040 +4586 50856 0.4160 +4586 51146 0.6590 +4586 51208 0.4980 +4586 51297 0.6910 +4586 51301 0.5330 +4586 51809 0.4450 +4586 54474 0.7500 +4586 55568 0.4680 +4586 56287 0.5150 +4586 56667 0.9460 +4586 56913 0.6170 +4586 56956 0.4300 +4586 63917 0.4320 +4586 64409 0.4030 +4586 79369 0.4050 +4586 79623 0.8600 +4586 79695 0.7850 +4586 83998 0.4500 +4586 84002 0.4500 +4586 84752 0.4050 +4586 85480 0.4800 +4586 90865 0.5070 +4586 92747 0.6640 +4586 93010 0.4110 +4586 94025 0.9180 +4586 114805 0.6180 +4586 117156 0.4750 +4586 117248 0.4520 +4586 118430 0.6150 +4586 137902 0.4100 +4586 140453 0.9250 +4586 142683 0.4400 +4586 143662 0.8280 +4586 192134 0.5900 +4586 200504 0.4430 +4586 200958 0.9040 +4586 374378 0.4310 +4586 374907 0.4050 +4586 394263 0.8040 +4586 400566 0.7350 +4586 442117 0.4290 +4586 653509 0.4050 +4586 727897 0.9880 +4586 100506658 0.4300 +4586 100507679 0.5320 +4588 4589 0.9500 +4588 4595 0.4660 +4588 4762 0.4760 +4588 5016 0.6160 +4588 5225 0.5640 +4588 5457 0.5470 +4588 5651 0.5030 +4588 6480 0.4380 +4588 6482 0.4740 +4588 6483 0.4390 +4588 6484 0.4910 +4588 6487 0.4320 +4588 6779 0.4020 +4588 7031 0.7360 +4588 7032 0.8980 +4588 7033 0.6950 +4588 7057 0.4450 +4588 7157 0.5540 +4588 8000 0.7320 +4588 8513 0.4510 +4588 8693 0.4570 +4588 9245 0.5530 +4588 9331 0.4210 +4588 9334 0.4050 +4588 10071 0.9070 +4588 10164 0.4550 +4588 10331 0.5440 +4588 10462 0.5350 +4588 10610 0.4590 +4588 10678 0.4090 +4588 10943 0.4750 +4588 11199 0.4390 +4588 11226 0.4450 +4588 11227 0.4150 +4588 27090 0.4600 +4588 29071 0.5160 +4588 30835 0.5210 +4588 50614 0.4350 +4588 51146 0.8430 +4588 51208 0.4590 +4588 51301 0.7120 +4588 54474 0.7380 +4588 54894 0.4260 +4588 55568 0.4470 +4588 56287 0.6370 +4588 56667 0.8990 +4588 56913 0.6090 +4588 56956 0.5080 +4588 63917 0.4030 +4588 63973 0.4310 +4588 64409 0.4030 +4588 79369 0.4050 +4588 79695 0.4810 +4588 84002 0.4690 +4588 84752 0.4050 +4588 93010 0.4090 +4588 94025 0.8930 +4588 114805 0.4030 +4588 118430 0.5810 +4588 138799 0.4820 +4588 140453 0.9050 +4588 143662 0.8550 +4588 146712 0.4600 +4588 168620 0.4320 +4588 192134 0.5140 +4588 200504 0.4640 +4588 200958 0.8620 +4588 219417 0.4090 +4588 256435 0.4030 +4588 374378 0.4030 +4588 374907 0.4070 +4588 394263 0.8340 +4588 400566 0.7370 +4588 442117 0.4580 +4588 727897 0.8520 +4588 100507679 0.5560 +4589 5016 0.6370 +4589 5284 0.4370 +4589 5304 0.4060 +4589 5542 0.4810 +4589 5544 0.4010 +4589 5651 0.5970 +4589 6280 0.4550 +4589 6369 0.4240 +4589 6480 0.4650 +4589 6482 0.5000 +4589 6483 0.4190 +4589 6484 0.4080 +4589 6487 0.4660 +4589 6779 0.9630 +4589 7351 0.4200 +4589 7941 0.5430 +4589 8693 0.7160 +4589 9129 0.6790 +4589 9245 0.4920 +4589 9334 0.4410 +4589 10071 0.9020 +4589 10164 0.4290 +4589 10231 0.4340 +4589 10331 0.4290 +4589 10344 0.4310 +4589 10462 0.4990 +4589 10610 0.4110 +4589 11226 0.4480 +4589 11227 0.4230 +4589 11251 0.4950 +4589 11272 0.6540 +4589 29071 0.5470 +4589 50614 0.4160 +4589 51131 0.5510 +4589 51146 0.4260 +4589 51301 0.4790 +4589 51705 0.4150 +4589 51809 0.4410 +4589 55568 0.4310 +4589 56667 0.9420 +4589 56913 0.5470 +4589 57118 0.4840 +4589 58503 0.4100 +4589 63917 0.4170 +4589 64409 0.4080 +4589 79623 0.9090 +4589 79695 0.7430 +4589 80332 0.4910 +4589 80333 0.4120 +4589 80341 0.4340 +4589 84002 0.4600 +4589 94025 0.8570 +4589 114805 0.6660 +4589 117156 0.4980 +4589 117248 0.4980 +4589 118430 0.6590 +4589 140453 0.8900 +4589 140683 0.4050 +4589 143662 0.8820 +4589 192134 0.5190 +4589 200958 0.8890 +4589 375790 0.4790 +4589 394263 0.8640 +4589 727897 0.9720 +4589 100507679 0.6680 +4591 5189 0.7220 +4591 5191 0.7040 +4591 5825 0.4260 +4591 5830 0.8100 +4591 5889 0.4410 +4591 5987 0.5510 +4591 6124 0.4910 +4591 6129 0.4700 +4591 6158 0.4220 +4591 6202 0.4200 +4591 6737 0.4990 +4591 7037 0.4960 +4591 7185 0.6200 +4591 7186 0.6350 +4591 7189 0.8440 +4591 7321 0.4650 +4591 7322 0.5830 +4591 7323 0.4120 +4591 7324 0.4050 +4591 7706 0.4300 +4591 7874 0.4570 +4591 8338 0.5030 +4591 8424 0.7270 +4591 8517 0.6060 +4591 8761 0.5400 +4591 8805 0.5220 +4591 9055 0.5170 +4591 9817 0.6020 +4591 9851 0.4610 +4591 10072 0.4270 +4591 10155 0.4720 +4591 10513 0.4480 +4591 10520 0.5410 +4591 10616 0.7100 +4591 10626 0.4100 +4591 10733 0.5260 +4591 22954 0.5080 +4591 23322 0.4270 +4591 23512 0.4050 +4591 50852 0.5810 +4591 51555 0.7380 +4591 51592 0.6020 +4591 54765 0.4840 +4591 54785 0.5330 +4591 54903 0.4110 +4591 55125 0.6770 +4591 55223 0.4250 +4591 55659 0.5560 +4591 57542 0.4980 +4591 64770 0.5490 +4591 79665 0.4140 +4591 80196 0.4880 +4591 81559 0.5400 +4591 84181 0.4350 +4591 84851 0.4190 +4591 91107 0.4580 +4591 116840 0.5750 +4591 117159 0.4200 +4591 135892 0.4680 +4591 140459 0.4820 +4591 201292 0.4470 +4591 286827 0.4940 +4591 348235 0.5530 +4591 440686 0.4070 +4591 445372 0.4030 +4593 4656 0.4830 +4593 5058 0.4460 +4593 5782 0.4730 +4593 5913 0.9910 +4593 6249 0.4050 +4593 6329 0.5260 +4593 6572 0.4020 +4593 6640 0.6700 +4593 6855 0.4110 +4593 7042 0.4610 +4593 7402 0.8170 +4593 7472 0.5480 +4593 7473 0.6050 +4593 7475 0.5410 +4593 7477 0.5310 +4593 7481 0.6570 +4593 7483 0.5760 +4593 7532 0.5520 +4593 8292 0.9850 +4593 8492 0.6310 +4593 9051 0.4410 +4593 9093 0.6250 +4593 9211 0.5140 +4593 9223 0.4440 +4593 23024 0.7560 +4593 23345 0.8670 +4593 26047 0.4470 +4593 27136 0.4080 +4593 29925 0.4480 +4593 30012 0.4300 +4593 54361 0.5850 +4593 54810 0.4620 +4593 55914 0.6070 +4593 64145 0.4370 +4593 89780 0.5520 +4593 199857 0.5260 +4593 285489 0.9980 +4593 375790 0.9990 +4593 399694 0.5180 +4594 4609 0.6170 +4594 4809 0.4580 +4594 5091 0.8320 +4594 5095 0.9060 +4594 5096 0.9370 +4594 5105 0.8320 +4594 5106 0.8270 +4594 5230 0.4040 +4594 5290 0.4120 +4594 5292 0.5250 +4594 5728 0.6200 +4594 5729 0.4770 +4594 5826 0.5940 +4594 6093 0.4070 +4594 6390 0.5840 +4594 6391 0.8830 +4594 6591 0.4110 +4594 6615 0.4520 +4594 6626 0.4300 +4594 6697 0.7610 +4594 6774 0.5280 +4594 6947 0.4530 +4594 6948 0.8080 +4594 7040 0.4360 +4594 7124 0.4280 +4594 7157 0.7510 +4594 7251 0.4220 +4594 7490 0.4300 +4594 7528 0.4230 +4594 7783 0.4370 +4594 7784 0.5550 +4594 7837 0.6640 +4594 8091 0.4650 +4594 8290 0.4300 +4594 8356 0.4360 +4594 8801 0.9570 +4594 8802 0.9400 +4594 8803 0.9450 +4594 9021 0.4790 +4594 9314 0.4040 +4594 9839 0.4180 +4594 10413 0.4190 +4594 22917 0.6730 +4594 23405 0.4170 +4594 23411 0.4530 +4594 25974 0.9100 +4594 26275 0.4900 +4594 26523 0.4580 +4594 27032 0.4600 +4594 27161 0.8400 +4594 27249 0.9590 +4594 51293 0.7910 +4594 53373 0.4770 +4594 54932 0.4880 +4594 55788 0.9330 +4594 55811 0.6140 +4594 56339 0.4330 +4594 56922 0.4520 +4594 57721 0.4020 +4594 57829 0.5450 +4594 84693 0.9960 +4594 134266 0.5450 +4594 137902 0.6610 +4594 166785 0.9970 +4594 197322 0.9250 +4594 200895 0.4910 +4594 202500 0.5450 +4594 220972 0.5380 +4594 326625 0.9730 +4594 440093 0.4300 +4594 440686 0.4310 +4594 653604 0.4380 +4595 4619 0.7290 +4595 4620 0.7580 +4595 4621 0.7690 +4595 4622 0.7980 +4595 4624 0.7440 +4595 4625 0.7470 +4595 4626 0.7570 +4595 4629 0.5200 +4595 4654 0.4730 +4595 4656 0.5180 +4595 4763 0.5020 +4595 4913 0.9010 +4595 4968 0.9740 +4595 5111 0.7110 +4595 5290 0.6320 +4595 5378 0.8280 +4595 5395 0.9040 +4595 5423 0.6670 +4595 5424 0.8900 +4595 5426 0.8220 +4595 5428 0.4690 +4595 5728 0.6010 +4595 5832 0.5980 +4595 5883 0.9490 +4595 5888 0.4890 +4595 5889 0.7700 +4595 5890 0.5060 +4595 5892 0.7830 +4595 5979 0.4440 +4595 6390 0.4210 +4595 6392 0.4180 +4595 6742 0.5340 +4595 6794 0.6960 +4595 6996 0.8310 +4595 7157 0.7460 +4595 7249 0.4120 +4595 7374 0.7750 +4595 7486 0.6580 +4595 7507 0.5490 +4595 7515 0.7280 +4595 7516 0.5980 +4595 7517 0.6220 +4595 8000 0.5490 +4595 8313 0.4470 +4595 8438 0.4430 +4595 8735 0.6490 +4595 8930 0.5160 +4595 9156 0.5010 +4595 9400 0.4330 +4595 9401 0.5730 +4595 10038 0.5310 +4595 10721 0.4240 +4595 11073 0.4010 +4595 11200 0.7390 +4595 11284 0.6230 +4595 23583 0.6430 +4595 26585 0.7010 +4595 27030 0.8670 +4595 27301 0.5710 +4595 27343 0.8080 +4595 27434 0.5080 +4595 51455 0.6130 +4595 51548 0.7900 +4595 54894 0.4350 +4595 55247 0.7860 +4595 55270 0.5610 +4595 56897 0.4410 +4595 57231 0.4280 +4595 57697 0.4200 +4595 60312 0.6250 +4595 64210 0.4280 +4595 79661 0.7540 +4595 79695 0.7360 +4595 79728 0.7320 +4595 80198 0.4380 +4595 83990 0.4090 +4595 84142 0.5070 +4595 114034 0.5800 +4595 121642 0.4270 +4595 201163 0.4460 +4595 252969 0.7240 +4595 348654 0.4040 +4595 353497 0.4390 +4595 100533467 0.5480 +4597 4598 0.9990 +4597 6155 0.6100 +4597 6307 0.7520 +4597 6309 0.7540 +4597 6326 0.4020 +4597 6713 0.9060 +4597 6720 0.8350 +4597 6721 0.8940 +4597 7108 0.7270 +4597 7167 0.4200 +4597 8564 0.4090 +4597 9023 0.4610 +4597 9114 0.4670 +4597 9420 0.4080 +4597 9453 0.9920 +4597 9563 0.4040 +4597 9607 0.5250 +4597 9853 0.7140 +4597 10280 0.4540 +4597 10449 0.7390 +4597 10654 0.9940 +4597 10682 0.6680 +4597 11161 0.4660 +4597 23463 0.4520 +4597 23590 0.7630 +4597 23623 0.7450 +4597 23761 0.4390 +4597 27235 0.4700 +4597 50814 0.8610 +4597 51004 0.4220 +4597 51167 0.4510 +4597 51179 0.8730 +4597 51449 0.5560 +4597 51478 0.6880 +4597 51725 0.7270 +4597 54363 0.8700 +4597 55902 0.4770 +4597 57107 0.6970 +4597 64755 0.8370 +4597 65985 0.4290 +4597 79947 0.5230 +4597 80270 0.4010 +4597 80347 0.5410 +4597 91734 0.9970 +4597 116150 0.4400 +4597 122622 0.4320 +4597 729920 0.5460 +4598 4800 0.5010 +4598 4801 0.5600 +4598 4802 0.5200 +4598 5313 0.5680 +4598 5356 0.4060 +4598 5500 0.5030 +4598 6307 0.7220 +4598 6309 0.7500 +4598 6319 0.4140 +4598 6667 0.5650 +4598 6713 0.8590 +4598 6720 0.7360 +4598 6721 0.8200 +4598 7069 0.4040 +4598 7108 0.7810 +4598 7132 0.5880 +4598 7167 0.4300 +4598 8448 0.4780 +4598 8833 0.5030 +4598 9023 0.4980 +4598 9051 0.6670 +4598 9388 0.4750 +4598 9453 0.8720 +4598 9607 0.6390 +4598 9663 0.5750 +4598 9986 0.4140 +4598 10221 0.4280 +4598 10269 0.4340 +4598 10449 0.8330 +4598 10558 0.4440 +4598 10654 0.9940 +4598 10682 0.6690 +4598 22937 0.4160 +4598 23463 0.4680 +4598 23590 0.4990 +4598 23623 0.4610 +4598 26751 0.8400 +4598 27235 0.5460 +4598 50485 0.4030 +4598 50814 0.8110 +4598 51072 0.4020 +4598 51095 0.5850 +4598 51179 0.5320 +4598 51478 0.7650 +4598 51725 0.4030 +4598 54363 0.5140 +4598 54511 0.8490 +4598 55297 0.5780 +4598 55902 0.4100 +4598 60678 0.4250 +4598 63027 0.4030 +4598 64127 0.4460 +4598 65985 0.5320 +4598 79797 0.5000 +4598 79947 0.6110 +4598 80270 0.4090 +4598 80347 0.5270 +4598 91662 0.5050 +4598 91734 0.8300 +4598 94240 0.4200 +4598 114548 0.5920 +4598 116150 0.4620 +4598 132949 0.4130 +4598 171169 0.5370 +4598 255308 0.4140 +4598 326625 0.7780 +4598 729920 0.5330 +4599 4600 0.9790 +4599 4790 0.4970 +4599 4792 0.4520 +4599 4938 0.9850 +4599 4939 0.9780 +4599 4940 0.9670 +4599 5211 0.4560 +4599 5315 0.6980 +4599 5335 0.4720 +4599 5359 0.6610 +4599 5371 0.5440 +4599 5578 0.4090 +4599 5595 0.5790 +4599 5598 0.4330 +4599 5610 0.9790 +4599 5688 0.4470 +4599 5696 0.5310 +4599 5698 0.5190 +4599 5728 0.4650 +4599 5788 0.5930 +4599 5966 0.4510 +4599 5970 0.5850 +4599 5971 0.4710 +4599 6041 0.7220 +4599 6238 0.4500 +4599 6347 0.5650 +4599 6348 0.4830 +4599 6351 0.5070 +4599 6355 0.4960 +4599 6373 0.6500 +4599 6504 0.4890 +4599 6614 0.7080 +4599 6672 0.7360 +4599 6737 0.6170 +4599 6772 0.9420 +4599 6773 0.9390 +4599 6774 0.4990 +4599 6775 0.4550 +4599 6890 0.5250 +4599 7097 0.5130 +4599 7098 0.7580 +4599 7099 0.5050 +4599 7100 0.4100 +4599 7113 0.6250 +4599 7124 0.6350 +4599 7220 0.7270 +4599 7222 0.5660 +4599 7223 0.5660 +4599 7224 0.5790 +4599 7225 0.5620 +4599 7297 0.6140 +4599 7318 0.6080 +4599 7324 0.4740 +4599 7329 0.4030 +4599 7341 0.5700 +4599 7706 0.8110 +4599 8519 0.8530 +4599 8554 0.5820 +4599 8624 0.6930 +4599 8638 0.9550 +4599 8651 0.5560 +4599 8743 0.7040 +4599 9021 0.5030 +4599 9246 0.8070 +4599 9332 0.4360 +4599 9447 0.4250 +4599 9454 0.4470 +4599 9455 0.4470 +4599 9456 0.4290 +4599 9636 0.9940 +4599 9641 0.4800 +4599 9910 0.4600 +4599 9927 0.4240 +4599 10210 0.4100 +4599 10311 0.5550 +4599 10346 0.7130 +4599 10379 0.9820 +4599 10410 0.8970 +4599 10437 0.4610 +4599 10561 0.9670 +4599 10563 0.5240 +4599 10581 0.6400 +4599 10673 0.4990 +4599 10955 0.4040 +4599 10964 0.9650 +4599 11075 0.4470 +4599 11274 0.9580 +4599 22914 0.4130 +4599 23424 0.4320 +4599 23586 0.9710 +4599 23705 0.4360 +4599 24138 0.8830 +4599 25820 0.4330 +4599 25824 0.5590 +4599 25939 0.7650 +4599 26091 0.4110 +4599 28996 0.4500 +4599 29110 0.5870 +4599 50618 0.4210 +4599 51062 0.4300 +4599 51191 0.9630 +4599 51284 0.6780 +4599 51296 0.4250 +4599 51311 0.5520 +4599 51806 0.4900 +4599 54097 0.4190 +4599 54106 0.5390 +4599 54625 0.6680 +4599 54739 0.9250 +4599 54809 0.6240 +4599 55008 0.8870 +4599 55014 0.6140 +4599 55337 0.5390 +4599 55601 0.8280 +4599 55669 0.4470 +4599 56649 0.4200 +4599 56829 0.4270 +4599 56832 0.5340 +4599 57169 0.6170 +4599 57506 0.6240 +4599 59272 0.4180 +4599 60489 0.5110 +4599 64108 0.8240 +4599 64127 0.4160 +4599 64135 0.9660 +4599 64761 0.6280 +4599 65018 0.4050 +4599 78987 0.5490 +4599 79132 0.8220 +4599 83666 0.8470 +4599 84166 0.4550 +4599 85363 0.5620 +4599 85441 0.6310 +4599 91543 0.9830 +4599 91860 0.4860 +4599 94240 0.9150 +4599 115004 0.5620 +4599 115361 0.6030 +4599 115362 0.6220 +4599 116071 0.4180 +4599 122509 0.4080 +4599 129607 0.8110 +4599 151636 0.7360 +4599 163688 0.4870 +4599 163702 0.6090 +4599 170482 0.4460 +4599 219285 0.6430 +4599 282616 0.6280 +4599 282617 0.6240 +4599 282618 0.7120 +4599 338376 0.4760 +4599 340061 0.4560 +4599 345611 0.5360 +4599 387733 0.4200 +4599 439996 0.7030 +4600 4938 0.9180 +4600 4939 0.9480 +4600 4940 0.8690 +4600 5335 0.4260 +4600 5359 0.5580 +4600 5478 0.4470 +4600 5595 0.4610 +4600 5610 0.9120 +4600 5657 0.6400 +4600 5903 0.4530 +4600 6041 0.5400 +4600 6348 0.4890 +4600 6355 0.4130 +4600 6373 0.5740 +4600 6672 0.5180 +4600 6737 0.6440 +4600 6772 0.8510 +4600 6773 0.8450 +4600 7098 0.5800 +4600 7124 0.4280 +4600 7318 0.4530 +4600 7324 0.4390 +4600 7706 0.6520 +4600 8519 0.7760 +4600 8638 0.8360 +4600 8743 0.4520 +4600 9246 0.6880 +4600 9636 0.9790 +4600 9927 0.4170 +4600 9972 0.5570 +4600 10346 0.7060 +4600 10379 0.8830 +4600 10410 0.7000 +4600 10561 0.8720 +4600 10581 0.5950 +4600 10919 0.4530 +4600 10955 0.5070 +4600 10964 0.8370 +4600 11052 0.5930 +4600 11274 0.9310 +4600 23534 0.4380 +4600 23586 0.9650 +4600 24138 0.7250 +4600 25777 0.4740 +4600 25939 0.8980 +4600 27238 0.9230 +4600 29110 0.4240 +4600 50618 0.4170 +4600 51131 0.4740 +4600 51191 0.9300 +4600 51284 0.5180 +4600 54097 0.4070 +4600 54625 0.5130 +4600 54739 0.8690 +4600 54809 0.6770 +4600 55008 0.8580 +4600 55337 0.4680 +4600 55601 0.6920 +4600 55669 0.4310 +4600 56829 0.4920 +4600 57506 0.4300 +4600 60489 0.6470 +4600 64108 0.7100 +4600 64135 0.8120 +4600 64761 0.5570 +4600 79132 0.7400 +4600 83666 0.6050 +4600 85363 0.7610 +4600 85441 0.5760 +4600 91543 0.9630 +4600 91607 0.4830 +4600 94240 0.6670 +4600 115004 0.4860 +4600 115361 0.6140 +4600 115362 0.6010 +4600 129607 0.7580 +4600 200315 0.4280 +4600 219285 0.6360 +4600 256987 0.4760 +4600 282618 0.4190 +4600 345611 0.5520 +4600 439996 0.4540 +4600 729857 0.5060 +4601 4609 0.9040 +4601 4610 0.4400 +4601 4613 0.5640 +4601 4801 0.5630 +4601 4824 0.4250 +4601 5581 0.4290 +4601 5885 0.7220 +4601 5989 0.4630 +4601 5993 0.4360 +4601 6446 0.4660 +4601 6872 0.4080 +4601 6879 0.4900 +4601 6945 0.4210 +4601 7391 0.4190 +4601 7392 0.4430 +4601 7702 0.5640 +4601 7936 0.5160 +4601 8553 0.4230 +4601 8780 0.6530 +4601 8945 0.5660 +4601 9126 0.7160 +4601 9611 0.7000 +4601 10071 0.4010 +4601 10158 0.4610 +4601 22877 0.5750 +4601 23309 0.8300 +4601 25942 0.8430 +4601 26009 0.5510 +4601 27130 0.6470 +4601 29945 0.9940 +4601 51085 0.4470 +4601 63893 0.4450 +4601 79758 0.4240 +4601 83463 0.6490 +4601 84445 0.6620 +4601 85414 0.4030 +4601 140453 0.4010 +4601 145942 0.4040 +4601 147912 0.6220 +4601 200035 0.4050 +4601 338661 0.4600 +4602 4609 0.7870 +4602 4613 0.4200 +4602 4691 0.7400 +4602 5079 0.7530 +4602 5371 0.4810 +4602 5431 0.5730 +4602 5432 0.4990 +4602 5433 0.5030 +4602 5434 0.4990 +4602 5435 0.5180 +4602 5436 0.5010 +4602 5437 0.5140 +4602 5438 0.5020 +4602 5439 0.4990 +4602 5440 0.5060 +4602 5441 0.4990 +4602 5600 0.4110 +4602 5657 0.5500 +4602 5688 0.5300 +4602 5788 0.4270 +4602 5896 0.6780 +4602 6124 0.4910 +4602 6135 0.5250 +4602 6147 0.4020 +4602 6175 0.4110 +4602 6187 0.5010 +4602 6203 0.4350 +4602 6205 0.4100 +4602 6222 0.4690 +4602 6224 0.4880 +4602 6235 0.4280 +4602 6613 0.4560 +4602 6687 0.4080 +4602 6688 0.9320 +4602 6689 0.4910 +4602 6693 0.4570 +4602 6776 0.5510 +4602 6872 0.4410 +4602 6886 0.9250 +4602 6929 0.6910 +4602 6938 0.5530 +4602 7041 0.4460 +4602 7124 0.4990 +4602 7157 0.7700 +4602 7189 0.6380 +4602 7270 0.7790 +4602 7329 0.7200 +4602 7341 0.4870 +4602 8202 0.4910 +4602 8290 0.7230 +4602 8331 0.5030 +4602 8334 0.5030 +4602 8337 0.5680 +4602 8338 0.5690 +4602 8340 0.6570 +4602 8341 0.6580 +4602 8342 0.6560 +4602 8345 0.6620 +4602 8347 0.6550 +4602 8348 0.6560 +4602 8349 0.5690 +4602 8356 0.8040 +4602 8361 0.6040 +4602 8554 0.5440 +4602 8624 0.4230 +4602 8850 0.6140 +4602 8861 0.6190 +4602 8900 0.4270 +4602 8970 0.6590 +4602 9125 0.7070 +4602 9146 0.4860 +4602 9235 0.4240 +4602 9349 0.4230 +4602 9611 0.5140 +4602 9801 0.4050 +4602 10043 0.4770 +4602 10155 0.6530 +4602 10294 0.5140 +4602 10320 0.5350 +4602 10514 0.9240 +4602 10524 0.5460 +4602 10565 0.4290 +4602 10661 0.5710 +4602 10767 0.4440 +4602 10939 0.4080 +4602 11091 0.4010 +4602 11222 0.5350 +4602 11224 0.4030 +4602 22984 0.4690 +4602 23405 0.4090 +4602 25942 0.8710 +4602 27044 0.7720 +4602 28996 0.6600 +4602 28998 0.4100 +4602 30816 0.4050 +4602 51021 0.4490 +4602 51023 0.4090 +4602 51073 0.4080 +4602 51176 0.8560 +4602 51586 0.8410 +4602 51592 0.5140 +4602 51701 0.6850 +4602 54145 0.6560 +4602 54948 0.4300 +4602 55052 0.4290 +4602 55168 0.4080 +4602 55294 0.6570 +4602 55766 0.5040 +4602 63875 0.4050 +4602 63931 0.5160 +4602 64960 0.4050 +4602 64963 0.4230 +4602 64965 0.4820 +4602 64979 0.4280 +4602 65003 0.4790 +4602 65005 0.4060 +4602 79590 0.4890 +4602 83746 0.7510 +4602 85236 0.6570 +4602 94239 0.5280 +4602 128312 0.6590 +4602 219927 0.5140 +4602 255626 0.6550 +4602 286826 0.5940 +4602 440093 0.6240 +4602 440686 0.6240 +4602 474382 0.5030 +4602 653604 0.8040 +4603 4609 0.4170 +4603 4691 0.5590 +4603 4781 0.5980 +4603 5134 0.5100 +4603 5928 0.7440 +4603 5931 0.4070 +4603 6135 0.4200 +4603 6187 0.4900 +4603 6203 0.4200 +4603 6205 0.4100 +4603 6222 0.4590 +4603 6224 0.4780 +4603 6687 0.4080 +4603 7157 0.5460 +4603 8519 0.4040 +4603 8624 0.4130 +4603 8900 0.4880 +4603 9271 0.4180 +4603 9349 0.4220 +4603 9801 0.4040 +4603 10565 0.5160 +4603 10939 0.4080 +4603 11222 0.5300 +4603 22984 0.4690 +4603 23636 0.4260 +4603 26135 0.4050 +4603 28996 0.4080 +4603 28998 0.4140 +4603 29766 0.4230 +4603 51021 0.4470 +4603 51023 0.4080 +4603 51073 0.4080 +4603 51592 0.4280 +4603 54456 0.4310 +4603 54948 0.4260 +4603 55052 0.4290 +4603 55168 0.4080 +4603 55957 0.9280 +4603 57670 0.5420 +4603 59067 0.4260 +4603 63931 0.5130 +4603 64960 0.4040 +4603 64963 0.4230 +4603 64965 0.4780 +4603 64979 0.4280 +4603 65003 0.4790 +4603 65005 0.4010 +4603 79590 0.4890 +4603 91750 0.8920 +4603 132660 0.9190 +4603 201164 0.4090 +4603 219927 0.5120 +4603 286826 0.9580 +4603 339896 0.4060 +4604 4606 0.6280 +4604 4607 0.6320 +4604 4618 0.4740 +4604 4619 0.6260 +4604 4620 0.7210 +4604 4621 0.8200 +4604 4622 0.4820 +4604 4624 0.7110 +4604 4625 0.6260 +4604 4626 0.7920 +4604 4632 0.8870 +4604 4633 0.8680 +4604 4634 0.7580 +4604 4635 0.6590 +4604 4892 0.4840 +4604 5816 0.4340 +4604 6261 0.5840 +4604 6442 0.5920 +4604 6443 0.5800 +4604 6444 0.5700 +4604 6445 0.5990 +4604 6641 0.6580 +4604 7125 0.6920 +4604 7134 0.4450 +4604 7135 0.5730 +4604 7136 0.7540 +4604 7138 0.7290 +4604 7140 0.7440 +4604 7169 0.5700 +4604 7170 0.4140 +4604 7273 0.8010 +4604 8048 0.5790 +4604 8736 0.4290 +4604 9499 0.5490 +4604 10324 0.5940 +4604 23676 0.4470 +4604 26287 0.5270 +4604 29761 0.4600 +4604 29765 0.4190 +4604 29895 0.7190 +4604 50636 0.4750 +4604 51778 0.5470 +4604 55450 0.4260 +4604 57467 0.4470 +4604 58529 0.6670 +4604 84033 0.6760 +4604 84676 0.4170 +4604 91977 0.4750 +4604 129446 0.4660 +4604 131377 0.4950 +4604 339855 0.7830 +4604 389125 0.4230 +4604 442721 0.5800 +4605 4609 0.6060 +4605 4610 0.4770 +4605 4613 0.6010 +4605 4691 0.4280 +4605 4751 0.4950 +4605 4800 0.4460 +4605 4801 0.4540 +4605 4869 0.8060 +4605 4998 0.6220 +4605 5241 0.4210 +4605 5305 0.4090 +4605 5347 0.8770 +4605 5460 0.5560 +4605 5563 0.4230 +4605 5596 0.4620 +4605 5743 0.5080 +4605 5888 0.5250 +4605 5914 0.4510 +4605 5916 0.4060 +4605 5925 0.4160 +4605 5928 0.9970 +4605 5931 0.4310 +4605 5933 0.8690 +4605 5934 0.8310 +4605 6132 0.4100 +4605 6135 0.4460 +4605 6147 0.4270 +4605 6175 0.5480 +4605 6183 0.4250 +4605 6187 0.5390 +4605 6203 0.4390 +4605 6205 0.4300 +4605 6208 0.4290 +4605 6222 0.4950 +4605 6224 0.5020 +4605 6235 0.4010 +4605 6241 0.7450 +4605 6278 0.4030 +4605 6421 0.4300 +4605 6502 0.5550 +4605 6657 0.5700 +4605 6659 0.4210 +4605 6687 0.4080 +4605 6688 0.4340 +4605 6774 0.4590 +4605 6790 0.8400 +4605 6886 0.4680 +4605 6996 0.4380 +4605 7027 0.8120 +4605 7029 0.5810 +4605 7083 0.7650 +4605 7153 0.7180 +4605 7157 0.7420 +4605 7272 0.6350 +4605 7298 0.6160 +4605 7764 0.4050 +4605 8208 0.4590 +4605 8318 0.6930 +4605 8361 0.4100 +4605 8438 0.6830 +4605 8624 0.4370 +4605 8900 0.9890 +4605 9055 0.4270 +4605 9088 0.6210 +4605 9133 0.8680 +4605 9134 0.4630 +4605 9156 0.6330 +4605 9212 0.7040 +4605 9232 0.5370 +4605 9319 0.5120 +4605 9349 0.4480 +4605 9401 0.4060 +4605 9493 0.5850 +4605 9700 0.6530 +4605 9735 0.4170 +4605 9787 0.6460 +4605 9801 0.4220 +4605 9833 0.8940 +4605 9837 0.4150 +4605 9928 0.7260 +4605 10024 0.5260 +4605 10036 0.5370 +4605 10112 0.6120 +4605 10403 0.4640 +4605 10460 0.4660 +4605 10565 0.4950 +4605 10615 0.5670 +4605 10635 0.4040 +4605 10664 0.4600 +4605 10733 0.4900 +4605 10939 0.4130 +4605 10951 0.4110 +4605 11004 0.6940 +4605 11065 0.7730 +4605 11130 0.5410 +4605 11222 0.5420 +4605 11224 0.4400 +4605 22974 0.7470 +4605 22984 0.4940 +4605 23397 0.7160 +4605 23567 0.5710 +4605 23636 0.4480 +4605 24137 0.6920 +4605 28998 0.4170 +4605 29028 0.4260 +4605 29089 0.4040 +4605 29093 0.5010 +4605 29127 0.4780 +4605 29128 0.5070 +4605 51021 0.4620 +4605 51023 0.4080 +4605 51073 0.4270 +4605 51154 0.4210 +4605 51203 0.5920 +4605 51264 0.4050 +4605 51512 0.4490 +4605 51514 0.5240 +4605 51659 0.4630 +4605 54443 0.4020 +4605 54821 0.4200 +4605 54948 0.4370 +4605 55052 0.4290 +4605 55143 0.6830 +4605 55165 0.5940 +4605 55168 0.4180 +4605 55215 0.4230 +4605 55355 0.5990 +4605 55388 0.5570 +4605 55635 0.5410 +4605 55723 0.6700 +4605 55957 0.9990 +4605 56992 0.5000 +4605 57167 0.5610 +4605 57758 0.5930 +4605 63875 0.4250 +4605 63931 0.5130 +4605 63967 0.4110 +4605 64151 0.6180 +4605 64960 0.4200 +4605 64963 0.4290 +4605 64965 0.4870 +4605 64979 0.4430 +4605 65003 0.5110 +4605 65005 0.4140 +4605 79019 0.4440 +4605 79590 0.4900 +4605 79733 0.6410 +4605 79801 0.4130 +4605 79923 0.5320 +4605 81610 0.4240 +4605 81620 0.6440 +4605 81669 0.4170 +4605 83461 0.5860 +4605 83540 0.6310 +4605 83879 0.4610 +4605 90381 0.4570 +4605 90441 0.9400 +4605 91750 0.9990 +4605 93010 0.4010 +4605 113130 0.6290 +4605 126353 0.5720 +4605 132660 0.9990 +4605 144455 0.5860 +4605 146909 0.5890 +4605 151648 0.4350 +4605 157313 0.5110 +4605 219927 0.5220 +4605 220134 0.4020 +4605 221150 0.5450 +4605 259266 0.5430 +4605 286826 0.9990 +4606 4607 0.5200 +4606 4618 0.4140 +4606 4619 0.8580 +4606 4620 0.7860 +4606 4621 0.7810 +4606 4622 0.5750 +4606 4624 0.8690 +4606 4625 0.7840 +4606 4626 0.7980 +4606 4632 0.8770 +4606 4633 0.9020 +4606 4634 0.8000 +4606 4635 0.6840 +4606 4636 0.5970 +4606 4892 0.4370 +4606 5566 0.4440 +4606 5567 0.4450 +4606 5568 0.4450 +4606 5837 0.5160 +4606 6261 0.4990 +4606 6262 0.4670 +4606 6345 0.5460 +4606 6588 0.4120 +4606 7111 0.4450 +4606 7125 0.6970 +4606 7134 0.5270 +4606 7135 0.6840 +4606 7136 0.7140 +4606 7137 0.6720 +4606 7138 0.5660 +4606 7139 0.5670 +4606 7140 0.8230 +4606 7168 0.6460 +4606 7169 0.4420 +4606 7273 0.9670 +4606 8048 0.8120 +4606 8557 0.6250 +4606 9172 0.5560 +4606 9499 0.4030 +4606 10324 0.4200 +4606 10345 0.5490 +4606 10398 0.7150 +4606 10627 0.6970 +4606 23676 0.4270 +4606 26287 0.4920 +4606 29765 0.7330 +4606 29766 0.4060 +4606 29767 0.4070 +4606 29895 0.8180 +4606 51778 0.4760 +4606 51806 0.7000 +4606 57159 0.5230 +4606 58529 0.6590 +4606 79894 0.5340 +4606 84676 0.6470 +4606 85366 0.4270 +4606 91860 0.6240 +4606 91977 0.4210 +4606 103910 0.5470 +4606 121506 0.4020 +4606 163688 0.6380 +4606 167359 0.4210 +4606 200539 0.6720 +4606 340156 0.4660 +4606 442721 0.5310 +4607 4619 0.5600 +4607 4620 0.5230 +4607 4621 0.7030 +4607 4624 0.9890 +4607 4625 0.9980 +4607 4626 0.6690 +4607 4632 0.7580 +4607 4633 0.9520 +4607 4634 0.9670 +4607 4635 0.7500 +4607 4636 0.4900 +4607 4878 0.6200 +4607 4879 0.4650 +4607 5318 0.7060 +4607 5566 0.6050 +4607 5567 0.6020 +4607 5568 0.6080 +4607 5587 0.4450 +4607 6261 0.4370 +4607 6262 0.7440 +4607 6331 0.8070 +4607 6389 0.4510 +4607 6444 0.6620 +4607 6688 0.5700 +4607 6901 0.4420 +4607 7111 0.4530 +4607 7112 0.6530 +4607 7125 0.4380 +4607 7134 0.6590 +4607 7135 0.6690 +4607 7136 0.4020 +4607 7137 0.9750 +4607 7138 0.6500 +4607 7139 0.9740 +4607 7140 0.4300 +4607 7168 0.9320 +4607 7273 0.9940 +4607 7414 0.5050 +4607 8048 0.9400 +4607 8557 0.8760 +4607 9531 0.5940 +4607 9659 0.7710 +4607 9992 0.4450 +4607 10021 0.4800 +4607 10060 0.7370 +4607 10345 0.4440 +4607 10398 0.7420 +4607 10529 0.5150 +4607 10627 0.7430 +4607 11155 0.7920 +4607 23683 0.4340 +4607 25865 0.4220 +4607 27063 0.6000 +4607 27129 0.4020 +4607 27295 0.5410 +4607 29895 0.6410 +4607 51422 0.8780 +4607 51778 0.6930 +4607 51806 0.8890 +4607 57057 0.4500 +4607 57158 0.6190 +4607 57538 0.5250 +4607 58498 0.5900 +4607 79188 0.6000 +4607 84665 0.4130 +4607 84675 0.4130 +4607 84676 0.8650 +4607 85366 0.6950 +4607 91807 0.4280 +4607 91860 0.8610 +4607 103910 0.5240 +4607 114907 0.4610 +4607 125972 0.5150 +4607 163688 0.8610 +4607 200539 0.5870 +4607 282996 0.8430 +4608 4619 0.5220 +4608 4621 0.6470 +4608 4625 0.5500 +4608 4632 0.4620 +4608 4633 0.5240 +4608 4635 0.4630 +4608 4948 0.9960 +4608 6093 0.4500 +4608 6470 0.4320 +4608 6504 0.9940 +4608 7097 0.8360 +4608 7125 0.4050 +4608 7135 0.4500 +4608 7136 0.4340 +4608 7273 0.4630 +4608 8048 0.4340 +4608 9172 0.4230 +4608 10877 0.7850 +4608 10878 0.7870 +4608 11019 0.5430 +4608 27247 0.4020 +4608 29895 0.6280 +4608 51601 0.6200 +4608 55811 0.5780 +4608 81494 0.7810 +4608 81607 0.9930 +4608 85366 0.4620 +4608 340156 0.6880 +4608 387787 0.5050 +4608 388962 0.4030 +4609 4613 0.9330 +4609 4616 0.4090 +4609 4627 0.6010 +4609 4638 0.5110 +4609 4654 0.8050 +4609 4656 0.4690 +4609 4684 0.5430 +4609 4691 0.9470 +4609 4734 0.4690 +4609 4738 0.4740 +4609 4739 0.4960 +4609 4751 0.6750 +4609 4760 0.4640 +4609 4763 0.6430 +4609 4771 0.5180 +4609 4772 0.5270 +4609 4778 0.4040 +4609 4780 0.9610 +4609 4790 0.9170 +4609 4791 0.6820 +4609 4792 0.6390 +4609 4800 0.4020 +4609 4801 0.7880 +4609 4802 0.5710 +4609 4803 0.4180 +4609 4824 0.5070 +4609 4830 0.5930 +4609 4831 0.6820 +4609 4839 0.4540 +4609 4841 0.7770 +4609 4849 0.5230 +4609 4851 0.8990 +4609 4853 0.5600 +4609 4854 0.6510 +4609 4855 0.4330 +4609 4869 0.8960 +4609 4893 0.6810 +4609 4904 0.8230 +4609 4907 0.5020 +4609 4914 0.5590 +4609 4924 0.4380 +4609 4926 0.4160 +4609 4928 0.4070 +4609 4953 0.7710 +4609 5015 0.4480 +4609 5052 0.7660 +4609 5054 0.5650 +4609 5062 0.6420 +4609 5077 0.4500 +4609 5079 0.7840 +4609 5080 0.6690 +4609 5081 0.4040 +4609 5087 0.4190 +4609 5093 0.4510 +4609 5094 0.4190 +4609 5104 0.4320 +4609 5111 0.4640 +4609 5133 0.4780 +4609 5154 0.4170 +4609 5155 0.5050 +4609 5156 0.5890 +4609 5159 0.6740 +4609 5163 0.5630 +4609 5175 0.5150 +4609 5204 0.9580 +4609 5209 0.4470 +4609 5213 0.5260 +4609 5214 0.4020 +4609 5230 0.6160 +4609 5241 0.7050 +4609 5243 0.5510 +4609 5245 0.6450 +4609 5250 0.4780 +4609 5289 0.5160 +4609 5290 0.7400 +4609 5292 0.7960 +4609 5294 0.4190 +4609 5295 0.6750 +4609 5300 0.8810 +4609 5314 0.4740 +4609 5315 0.8050 +4609 5328 0.7080 +4609 5329 0.4540 +4609 5335 0.5830 +4609 5341 0.4230 +4609 5347 0.8440 +4609 5366 0.5960 +4609 5371 0.7830 +4609 5425 0.4530 +4609 5426 0.4350 +4609 5427 0.4160 +4609 5432 0.4350 +4609 5451 0.7130 +4609 5454 0.4700 +4609 5456 0.5360 +4609 5460 0.9560 +4609 5462 0.6350 +4609 5464 0.4420 +4609 5465 0.6510 +4609 5467 0.6260 +4609 5468 0.5880 +4609 5469 0.5520 +4609 5478 0.6090 +4609 5499 0.4510 +4609 5501 0.4280 +4609 5515 0.7790 +4609 5518 0.4680 +4609 5525 0.5390 +4609 5554 0.4030 +4609 5566 0.5000 +4609 5567 0.5010 +4609 5568 0.4970 +4609 5578 0.5160 +4609 5580 0.4810 +4609 5591 0.7310 +4609 5594 0.9830 +4609 5595 0.9860 +4609 5598 0.4470 +4609 5599 0.6660 +4609 5601 0.4220 +4609 5604 0.6870 +4609 5606 0.7430 +4609 5607 0.4510 +4609 5610 0.5290 +4609 5673 0.4110 +4609 5688 0.4620 +4609 5702 0.4020 +4609 5705 0.4520 +4609 5725 0.8020 +4609 5727 0.5550 +4609 5728 0.9080 +4609 5743 0.7150 +4609 5747 0.5780 +4609 5756 0.4920 +4609 5781 0.6670 +4609 5788 0.6120 +4609 5829 0.4570 +4609 5831 0.4170 +4609 5861 0.5010 +4609 5868 0.6540 +4609 5877 0.4190 +4609 5885 0.8480 +4609 5888 0.5810 +4609 5894 0.7550 +4609 5896 0.4760 +4609 5898 0.4450 +4609 5906 0.5150 +4609 5914 0.6580 +4609 5916 0.4410 +4609 5921 0.4460 +4609 5925 0.8880 +4609 5927 0.6340 +4609 5928 0.4560 +4609 5932 0.4150 +4609 5933 0.6670 +4609 5934 0.4220 +4609 5937 0.7360 +4609 5966 0.7440 +4609 5970 0.8520 +4609 5971 0.5190 +4609 5976 0.4290 +4609 5978 0.4070 +4609 5979 0.5070 +4609 5982 0.6180 +4609 5983 0.5960 +4609 5984 0.4510 +4609 6009 0.5210 +4609 6015 0.4560 +4609 6045 0.4900 +4609 6046 0.7220 +4609 6047 0.6550 +4609 6050 0.4310 +4609 6093 0.7280 +4609 6095 0.5560 +4609 6097 0.5010 +4609 6098 0.4210 +4609 6122 0.6110 +4609 6125 0.5200 +4609 6128 0.5530 +4609 6135 0.8800 +4609 6146 0.4320 +4609 6152 0.5320 +4609 6156 0.4130 +4609 6175 0.4760 +4609 6184 0.4290 +4609 6193 0.4080 +4609 6194 0.5830 +4609 6195 0.5150 +4609 6196 0.4270 +4609 6197 0.4640 +4609 6198 0.6700 +4609 6199 0.5150 +4609 6208 0.4470 +4609 6210 0.4900 +4609 6218 0.4380 +4609 6223 0.4530 +4609 6233 0.8440 +4609 6239 0.5700 +4609 6240 0.4860 +4609 6241 0.5190 +4609 6256 0.5820 +4609 6279 0.4250 +4609 6299 0.5630 +4609 6304 0.5750 +4609 6347 0.6590 +4609 6360 0.4740 +4609 6372 0.4730 +4609 6382 0.7210 +4609 6385 0.5280 +4609 6387 0.5470 +4609 6389 0.4470 +4609 6390 0.5830 +4609 6391 0.6650 +4609 6396 0.5440 +4609 6416 0.4430 +4609 6421 0.4070 +4609 6422 0.5520 +4609 6423 0.4300 +4609 6426 0.5560 +4609 6427 0.4890 +4609 6428 0.4690 +4609 6446 0.6470 +4609 6464 0.6830 +4609 6469 0.6510 +4609 6472 0.4790 +4609 6498 0.4990 +4609 6500 0.9890 +4609 6502 0.9750 +4609 6510 0.6520 +4609 6513 0.7000 +4609 6515 0.4940 +4609 6517 0.4780 +4609 6520 0.4460 +4609 6566 0.4270 +4609 6591 0.7820 +4609 6595 0.6760 +4609 6597 0.9740 +4609 6598 0.9060 +4609 6599 0.7980 +4609 6601 0.4090 +4609 6608 0.5110 +4609 6613 0.4790 +4609 6615 0.7270 +4609 6624 0.4380 +4609 6631 0.4020 +4609 6648 0.6280 +4609 6656 0.4500 +4609 6657 0.9580 +4609 6658 0.4550 +4609 6659 0.7220 +4609 6662 0.5900 +4609 6663 0.4110 +4609 6664 0.4020 +4609 6667 0.9740 +4609 6671 0.4350 +4609 6672 0.5180 +4609 6678 0.4140 +4609 6688 0.5760 +4609 6693 0.4460 +4609 6696 0.4510 +4609 6714 0.8050 +4609 6720 0.8100 +4609 6721 0.6180 +4609 6722 0.4260 +4609 6736 0.5310 +4609 6749 0.6340 +4609 6772 0.7810 +4609 6773 0.6150 +4609 6774 0.9850 +4609 6776 0.7590 +4609 6777 0.6280 +4609 6778 0.7430 +4609 6790 0.9140 +4609 6794 0.7740 +4609 6815 0.4250 +4609 6839 0.5640 +4609 6845 0.4590 +4609 6850 0.4510 +4609 6855 0.4160 +4609 6872 0.6730 +4609 6873 0.5580 +4609 6878 0.4760 +4609 6880 0.4960 +4609 6883 0.6720 +4609 6885 0.4210 +4609 6886 0.5250 +4609 6888 0.4600 +4609 6907 0.4420 +4609 6908 0.9530 +4609 6910 0.5630 +4609 6923 0.4480 +4609 6925 0.7140 +4609 6926 0.4690 +4609 6927 0.4310 +4609 6928 0.5830 +4609 6929 0.6740 +4609 6932 0.4980 +4609 6934 0.8820 +4609 6938 0.7370 +4609 6942 0.5230 +4609 6944 0.4340 +4609 6996 0.4430 +4609 7001 0.5470 +4609 7003 0.6220 +4609 7004 0.4490 +4609 7013 0.4700 +4609 7015 0.9200 +4609 7019 0.5410 +4609 7022 0.9600 +4609 7023 0.4440 +4609 7026 0.5420 +4609 7027 0.7760 +4609 7029 0.6040 +4609 7031 0.5440 +4609 7035 0.4380 +4609 7037 0.5960 +4609 7038 0.4900 +4609 7039 0.5770 +4609 7040 0.7960 +4609 7042 0.4390 +4609 7046 0.5120 +4609 7048 0.5710 +4609 7057 0.6810 +4609 7070 0.5660 +4609 7072 0.4490 +4609 7073 0.4290 +4609 7074 0.5430 +4609 7076 0.4460 +4609 7077 0.4500 +4609 7078 0.4790 +4609 7082 0.5410 +4609 7083 0.4330 +4609 7084 0.4470 +4609 7090 0.5670 +4609 7099 0.4730 +4609 7113 0.4710 +4609 7124 0.7020 +4609 7128 0.4370 +4609 7132 0.6290 +4609 7150 0.6970 +4609 7153 0.5770 +4609 7157 0.9970 +4609 7158 0.7520 +4609 7161 0.7060 +4609 7168 0.4090 +4609 7170 0.4080 +4609 7175 0.5610 +4609 7184 0.4430 +4609 7187 0.4390 +4609 7189 0.4770 +4609 7227 0.4470 +4609 7248 0.6620 +4609 7249 0.5800 +4609 7273 0.4270 +4609 7290 0.4470 +4609 7291 0.8520 +4609 7295 0.5720 +4609 7298 0.4590 +4609 7307 0.4090 +4609 7317 0.4590 +4609 7329 0.7450 +4609 7332 0.4490 +4609 7337 0.9350 +4609 7341 0.5580 +4609 7343 0.4950 +4609 7391 0.6050 +4609 7392 0.6710 +4609 7398 0.4040 +4609 7403 0.6890 +4609 7411 0.4040 +4609 7412 0.4250 +4609 7414 0.6130 +4609 7415 0.6160 +4609 7416 0.5150 +4609 7424 0.4150 +4609 7428 0.5790 +4609 7431 0.5470 +4609 7465 0.6070 +4609 7468 0.4860 +4609 7471 0.7340 +4609 7473 0.4510 +4609 7474 0.5720 +4609 7486 0.4330 +4609 7490 0.6510 +4609 7494 0.5940 +4609 7514 0.6870 +4609 7518 0.5590 +4609 7520 0.7060 +4609 7525 0.4310 +4609 7528 0.9580 +4609 7529 0.4030 +4609 7531 0.4290 +4609 7534 0.6730 +4609 7535 0.4030 +4609 7538 0.4720 +4609 7541 0.5460 +4609 7543 0.7840 +4609 7555 0.6610 +4609 7593 0.5900 +4609 7675 0.4090 +4609 7704 0.6400 +4609 7706 0.4190 +4609 7709 0.9990 +4609 7764 0.5280 +4609 7791 0.5210 +4609 7798 0.4680 +4609 7832 0.4030 +4609 7837 0.7840 +4609 7846 0.5250 +4609 7852 0.5940 +4609 7874 0.7870 +4609 7884 0.6050 +4609 7913 0.5840 +4609 8019 0.7610 +4609 8061 0.6560 +4609 8085 0.4840 +4609 8087 0.4240 +4609 8089 0.9050 +4609 8091 0.7560 +4609 8115 0.4420 +4609 8140 0.5150 +4609 8178 0.4960 +4609 8202 0.8450 +4609 8208 0.5950 +4609 8243 0.7050 +4609 8289 0.6410 +4609 8290 0.8400 +4609 8294 0.4660 +4609 8295 0.9990 +4609 8312 0.7980 +4609 8313 0.7940 +4609 8317 0.5160 +4609 8318 0.6710 +4609 8320 0.4020 +4609 8321 0.4220 +4609 8324 0.4670 +4609 8334 0.5110 +4609 8337 0.7140 +4609 8338 0.7510 +4609 8340 0.7050 +4609 8341 0.6760 +4609 8342 0.7080 +4609 8345 0.6780 +4609 8347 0.6790 +4609 8348 0.6790 +4609 8349 0.8110 +4609 8356 0.9360 +4609 8361 0.9500 +4609 8369 0.6630 +4609 8405 0.7340 +4609 8411 0.4550 +4609 8433 0.6560 +4609 8451 0.6190 +4609 8452 0.4830 +4609 8454 0.9700 +4609 8456 0.4810 +4609 8463 0.4240 +4609 8464 0.6430 +4609 8467 0.5120 +4609 8473 0.6400 +4609 8517 0.5990 +4609 8535 0.5180 +4609 8549 0.6140 +4609 8550 0.8030 +4609 8570 0.6540 +4609 8600 0.4230 +4609 8607 0.9690 +4609 8612 0.4070 +4609 8626 0.6740 +4609 8648 0.6270 +4609 8650 0.4600 +4609 8651 0.4560 +4609 8658 0.4200 +4609 8660 0.4190 +4609 8662 0.4440 +4609 8678 0.5370 +4609 8726 0.4380 +4609 8743 0.4180 +4609 8766 0.5580 +4609 8772 0.6500 +4609 8795 0.4950 +4609 8797 0.4400 +4609 8805 0.4570 +4609 8812 0.4160 +4609 8815 0.5140 +4609 8817 0.5330 +4609 8819 0.4710 +4609 8822 0.5070 +4609 8823 0.5130 +4609 8826 0.4430 +4609 8837 0.6400 +4609 8841 0.9490 +4609 8842 0.6680 +4609 8848 0.5000 +4609 8850 0.9900 +4609 8864 0.4300 +4609 8878 0.5510 +4609 8879 0.5550 +4609 8880 0.8280 +4609 8882 0.6460 +4609 8886 0.5880 +4609 8892 0.4010 +4609 8896 0.5340 +4609 8900 0.6940 +4609 8939 0.5840 +4609 8945 0.7980 +4609 8970 0.6840 +4609 8975 0.4820 +4609 8988 0.4160 +4609 9020 0.5690 +4609 9021 0.5140 +4609 9025 0.5460 +4609 9040 0.5190 +4609 9043 0.5140 +4609 9063 0.8160 +4609 9096 0.5810 +4609 9099 0.4580 +4609 9111 0.9230 +4609 9112 0.6760 +4609 9113 0.5460 +4609 9122 0.4470 +4609 9123 0.4590 +4609 9126 0.7200 +4609 9133 0.4380 +4609 9134 0.7620 +4609 9156 0.6240 +4609 9184 0.4810 +4609 9188 0.5520 +4609 9201 0.4420 +4609 9212 0.7610 +4609 9217 0.4330 +4609 9221 0.4120 +4609 9232 0.4500 +4609 9241 0.4530 +4609 9253 0.4600 +4609 9260 0.5010 +4609 9271 0.4410 +4609 9314 0.9450 +4609 9320 0.4600 +4609 9343 0.7310 +4609 9349 0.5010 +4609 9401 0.5970 +4609 9412 0.4540 +4609 9414 0.7590 +4609 9425 0.5430 +4609 9429 0.5710 +4609 9441 0.4320 +4609 9443 0.4240 +4609 9451 0.5990 +4609 9474 0.6410 +4609 9516 0.4830 +4609 9531 0.4410 +4609 9559 0.5420 +4609 9563 0.4340 +4609 9575 0.4100 +4609 9584 0.4380 +4609 9589 0.4830 +4609 9611 0.6270 +4609 9612 0.8180 +4609 9623 0.4180 +4609 9632 0.5300 +4609 9646 0.5430 +4609 9656 0.4260 +4609 9669 0.5060 +4609 9739 0.5120 +4609 9759 0.4300 +4609 9774 0.4030 +4609 9775 0.4240 +4609 9794 0.7370 +4609 9804 0.5120 +4609 9817 0.5270 +4609 9839 0.5890 +4609 9869 0.4050 +4609 9913 0.5490 +4609 9939 0.4500 +4609 9968 0.4640 +4609 9978 0.8340 +4609 9987 0.8410 +4609 10000 0.4790 +4609 10005 0.4020 +4609 10013 0.5270 +4609 10016 0.5030 +4609 10018 0.6650 +4609 10046 0.5410 +4609 10054 0.4810 +4609 10055 0.4930 +4609 10075 0.8900 +4609 10128 0.4030 +4609 10135 0.4340 +4609 10138 0.6690 +4609 10146 0.7680 +4609 10155 0.7220 +4609 10157 0.4750 +4609 10197 0.4020 +4609 10215 0.4270 +4609 10221 0.5520 +4609 10253 0.5460 +4609 10254 0.4690 +4609 10260 0.5410 +4609 10273 0.8540 +4609 10274 0.6260 +4609 10320 0.7140 +4609 10365 0.7790 +4609 10381 0.4420 +4609 10397 0.7300 +4609 10399 0.4390 +4609 10413 0.6770 +4609 10419 0.6940 +4609 10437 0.4770 +4609 10454 0.5480 +4609 10488 0.5790 +4609 10498 0.7180 +4609 10499 0.6200 +4609 10514 0.4530 +4609 10521 0.4660 +4609 10524 0.9740 +4609 10528 0.5780 +4609 10533 0.4500 +4609 10538 0.7600 +4609 10542 0.5870 +4609 10589 0.5840 +4609 10606 0.5670 +4609 10608 0.4800 +4609 10618 0.4010 +4609 10628 0.5780 +4609 10642 0.9880 +4609 10643 0.6840 +4609 10644 0.5550 +4609 10657 0.4090 +4609 10664 0.7630 +4609 10723 0.4230 +4609 10724 0.4150 +4609 10730 0.4870 +4609 10735 0.6440 +4609 10736 0.5450 +4609 10763 0.6640 +4609 10765 0.9660 +4609 10767 0.4050 +4609 10797 0.4760 +4609 10808 0.5340 +4609 10813 0.5560 +4609 10856 0.9600 +4609 10857 0.4340 +4609 10891 0.5290 +4609 10919 0.4880 +4609 10920 0.4070 +4609 10926 0.5050 +4609 10969 0.5850 +4609 10979 0.4840 +4609 10987 0.6290 +4609 10994 0.4440 +4609 11004 0.5810 +4609 11040 0.5000 +4609 11060 0.5370 +4609 11065 0.4300 +4609 11073 0.5470 +4609 11083 0.4420 +4609 11091 0.9800 +4609 11140 0.4100 +4609 11143 0.4020 +4609 11166 0.4800 +4609 11168 0.5250 +4609 11186 0.5400 +4609 11197 0.4760 +4609 11200 0.6160 +4609 11201 0.5140 +4609 11218 0.5720 +4609 11221 0.5150 +4609 11244 0.5080 +4609 11266 0.5870 +4609 11315 0.5880 +4609 11335 0.6590 +4609 11338 0.4650 +4609 11339 0.5030 +4609 22806 0.4480 +4609 22808 0.4180 +4609 22827 0.7230 +4609 22877 0.6440 +4609 22894 0.4040 +4609 22913 0.5370 +4609 22916 0.5760 +4609 22933 0.6350 +4609 22938 0.7770 +4609 22943 0.6210 +4609 22954 0.4160 +4609 22974 0.4560 +4609 23019 0.4470 +4609 23020 0.4410 +4609 23028 0.9220 +4609 23032 0.5450 +4609 23077 0.9230 +4609 23082 0.4730 +4609 23112 0.5380 +4609 23135 0.4570 +4609 23186 0.4460 +4609 23212 0.4280 +4609 23246 0.4400 +4609 23262 0.4840 +4609 23309 0.7710 +4609 23321 0.4470 +4609 23326 0.8090 +4609 23394 0.5320 +4609 23405 0.6190 +4609 23408 0.4900 +4609 23410 0.4180 +4609 23411 0.8600 +4609 23435 0.4140 +4609 23450 0.4090 +4609 23451 0.4250 +4609 23462 0.4890 +4609 23468 0.4320 +4609 23476 0.9410 +4609 23481 0.4290 +4609 23495 0.4830 +4609 23512 0.8270 +4609 23513 0.4610 +4609 23521 0.4310 +4609 23528 0.6340 +4609 23560 0.4440 +4609 23567 0.9870 +4609 23586 0.4400 +4609 24144 0.4670 +4609 25842 0.4140 +4609 25875 0.4510 +4609 25885 0.5530 +4609 25932 0.5760 +4609 25942 0.5890 +4609 25962 0.5130 +4609 25976 0.5040 +4609 26009 0.4560 +4609 26018 0.5010 +4609 26133 0.5910 +4609 26227 0.7820 +4609 26259 0.4970 +4609 26269 0.5510 +4609 26281 0.5160 +4609 26292 0.9670 +4609 26354 0.5110 +4609 26499 0.4800 +4609 26523 0.7730 +4609 26524 0.5270 +4609 26959 0.4390 +4609 26986 0.5600 +4609 27006 0.5220 +4609 27022 0.6020 +4609 27044 0.4740 +4609 27085 0.5710 +4609 27113 0.4030 +4609 27125 0.5400 +4609 27161 0.8510 +4609 27165 0.4720 +4609 27246 0.4100 +4609 27250 0.4820 +4609 27303 0.7150 +4609 27327 0.5920 +4609 27338 0.4430 +4609 27346 0.6220 +4609 27436 0.4150 +4609 28227 0.5350 +4609 28514 0.4480 +4609 29028 0.6980 +4609 29072 0.6850 +4609 29102 0.6980 +4609 29110 0.4260 +4609 29117 0.5610 +4609 29126 0.6670 +4609 29128 0.4590 +4609 29761 0.5520 +4609 29968 0.4290 +4609 30811 0.5030 +4609 30816 0.4400 +4609 50848 0.5090 +4609 50943 0.5300 +4609 51085 0.4040 +4609 51129 0.4740 +4609 51132 0.4630 +4609 51176 0.8930 +4609 51185 0.5060 +4609 51191 0.4100 +4609 51341 0.5540 +4609 51366 0.8150 +4609 51441 0.5010 +4609 51491 0.5510 +4609 51506 0.5070 +4609 51547 0.7780 +4609 51548 0.9570 +4609 51569 0.4930 +4609 51593 0.4280 +4609 51602 0.4330 +4609 51684 0.4610 +4609 51719 0.4950 +4609 51741 0.4240 +4609 51755 0.5350 +4609 51806 0.4810 +4609 53407 0.4820 +4609 53615 0.4360 +4609 54145 0.7060 +4609 54205 0.6600 +4609 54361 0.4010 +4609 54432 0.5290 +4609 54464 0.4020 +4609 54487 0.4790 +4609 54541 0.4210 +4609 54567 0.4270 +4609 54583 0.5570 +4609 54790 0.6580 +4609 54888 0.7750 +4609 54890 0.4460 +4609 54892 0.5270 +4609 54904 0.6270 +4609 54915 0.5130 +4609 54949 0.4160 +4609 55294 0.9990 +4609 55379 0.5090 +4609 55534 0.6930 +4609 55536 0.9950 +4609 55578 0.5420 +4609 55611 0.4430 +4609 55626 0.4920 +4609 55632 0.4490 +4609 55636 0.5350 +4609 55651 0.5800 +4609 55746 0.4020 +4609 55749 0.5440 +4609 55766 0.4160 +4609 55811 0.5430 +4609 55818 0.4320 +4609 55821 0.7460 +4609 55929 0.4930 +4609 55967 0.4120 +4609 56339 0.7690 +4609 56957 0.4330 +4609 56998 0.4980 +4609 57103 0.4380 +4609 57154 0.4060 +4609 57167 0.5350 +4609 57178 0.5090 +4609 57379 0.7210 +4609 57475 0.4820 +4609 57492 0.4450 +4609 57510 0.5070 +4609 57521 0.5760 +4609 57602 0.7380 +4609 57634 0.9540 +4609 57646 0.9660 +4609 57650 0.8650 +4609 57663 0.4310 +4609 57674 0.4520 +4609 57695 0.4870 +4609 57708 0.4470 +4609 57721 0.4710 +4609 57761 0.4870 +4609 57805 0.7210 +4609 58508 0.4560 +4609 60468 0.6130 +4609 60558 0.4250 +4609 63922 0.5780 +4609 63967 0.6230 +4609 64083 0.4780 +4609 64321 0.6560 +4609 64506 0.5160 +4609 64750 0.4220 +4609 64783 0.5530 +4609 64848 0.4050 +4609 64854 0.4970 +4609 65078 0.4340 +4609 79068 0.6400 +4609 79109 0.5110 +4609 79577 0.7320 +4609 79618 0.4330 +4609 79697 0.6040 +4609 79727 0.8730 +4609 79728 0.5940 +4609 79753 0.7000 +4609 79876 0.4630 +4609 79923 0.9490 +4609 80119 0.6220 +4609 80139 0.4100 +4609 80169 0.4750 +4609 80312 0.5000 +4609 80351 0.5860 +4609 80380 0.4290 +4609 80381 0.5560 +4609 80778 0.4490 +4609 80781 0.4070 +4609 81620 0.5130 +4609 81631 0.4900 +4609 81669 0.8130 +4609 81858 0.5160 +4609 83439 0.7850 +4609 83452 0.4140 +4609 83737 0.4800 +4609 83858 0.4640 +4609 83879 0.5860 +4609 83933 0.5520 +4609 84260 0.6250 +4609 84335 0.4190 +4609 84433 0.4340 +4609 84441 0.6860 +4609 84444 0.8520 +4609 84557 0.4230 +4609 84661 0.6290 +4609 84678 0.4150 +4609 84733 0.5100 +4609 84823 0.7100 +4609 84864 0.6480 +4609 84875 0.9300 +4609 84893 0.4020 +4609 85236 0.6900 +4609 89780 0.6330 +4609 89885 0.4040 +4609 91750 0.4750 +4609 91860 0.4810 +4609 92140 0.5260 +4609 92335 0.4720 +4609 94239 0.5590 +4609 112464 0.4970 +4609 115004 0.4080 +4609 115650 0.5120 +4609 117143 0.4810 +4609 117854 0.6170 +4609 124540 0.5780 +4609 128312 0.7510 +4609 132660 0.6060 +4609 133482 0.7660 +4609 136991 0.4790 +4609 137902 0.7840 +4609 139628 0.8520 +4609 140628 0.4650 +4609 140690 0.4440 +4609 143689 0.4340 +4609 148979 0.5070 +4609 154810 0.9720 +4609 162239 0.7270 +4609 163688 0.4810 +4609 170506 0.6120 +4609 171023 0.4180 +4609 192669 0.5900 +4609 192670 0.5390 +4609 200895 0.4280 +4609 201161 0.4110 +4609 201456 0.6540 +4609 203068 0.5740 +4609 219771 0.5230 +4609 220202 0.4910 +4609 221302 0.4750 +4609 221895 0.4300 +4609 253260 0.7080 +4609 253943 0.4390 +4609 254427 0.4190 +4609 255626 0.6860 +4609 256297 0.5430 +4609 256646 0.4860 +4609 259266 0.5730 +4609 260434 0.4270 +4609 283150 0.8470 +4609 284119 0.5410 +4609 284654 0.4160 +4609 338872 0.4220 +4609 389421 0.7410 +4609 415116 0.4380 +4609 440093 0.8160 +4609 440686 0.8430 +4609 440689 0.4590 +4609 445372 0.4890 +4609 474382 0.4650 +4609 493869 0.4050 +4609 553115 0.5310 +4609 653145 0.4270 +4609 653604 0.9100 +4609 728378 0.5130 +4609 100132074 0.6650 +4609 100133941 0.5810 +4609 100423062 0.7960 +4609 100532731 0.8780 +4609 102723407 0.9220 +4610 4760 0.4140 +4610 4893 0.5460 +4610 5460 0.6450 +4610 5538 0.5240 +4610 5728 0.4590 +4610 6018 0.8050 +4610 6385 0.4400 +4610 6566 0.4310 +4610 6657 0.6980 +4610 6790 0.5470 +4610 6944 0.7350 +4610 7157 0.6350 +4610 7813 0.4650 +4610 7905 0.5800 +4610 8089 0.6510 +4610 8295 0.7500 +4610 8607 0.6550 +4610 8777 0.5200 +4610 9314 0.7160 +4610 10413 0.4620 +4610 10450 0.7330 +4610 10524 0.7270 +4610 10856 0.6920 +4610 10902 0.6820 +4610 10933 0.6760 +4610 11031 0.4060 +4610 22877 0.4050 +4610 23216 0.4340 +4610 26122 0.6830 +4610 51278 0.5490 +4610 54556 0.6530 +4610 54799 0.6880 +4610 55257 0.7200 +4610 55294 0.4560 +4610 55759 0.5730 +4610 55929 0.6650 +4610 57634 0.9600 +4610 64769 0.6420 +4610 79727 0.7700 +4610 79923 0.5710 +4610 80314 0.7640 +4610 81037 0.4420 +4610 140685 0.4660 +4610 147700 0.4140 +4610 148979 0.6790 +4610 221895 0.7250 +4610 284459 0.4990 +4610 342945 0.4990 +4613 4654 0.6350 +4613 4656 0.6090 +4613 4681 0.4320 +4613 4691 0.4600 +4613 4734 0.4320 +4613 4763 0.5110 +4613 4781 0.4120 +4613 4782 0.4450 +4613 4792 0.4880 +4613 4841 0.6900 +4613 4851 0.5170 +4613 4853 0.4180 +4613 4864 0.5300 +4613 4869 0.4740 +4613 4893 0.6900 +4613 4904 0.4840 +4613 4914 0.6070 +4613 4915 0.4760 +4613 4953 0.7340 +4613 5015 0.4800 +4613 5077 0.5020 +4613 5156 0.5110 +4613 5159 0.5980 +4613 5290 0.4810 +4613 5315 0.4210 +4613 5335 0.4090 +4613 5366 0.6780 +4613 5376 0.4040 +4613 5454 0.4300 +4613 5460 0.5690 +4613 5595 0.4100 +4613 5725 0.4240 +4613 5727 0.6240 +4613 5728 0.5990 +4613 5764 0.5090 +4613 5832 0.4280 +4613 5885 0.4990 +4613 5925 0.5540 +4613 5979 0.4250 +4613 6045 0.4900 +4613 6208 0.4150 +4613 6241 0.4790 +4613 6299 0.4500 +4613 6382 0.4290 +4613 6421 0.4690 +4613 6422 0.4120 +4613 6469 0.7590 +4613 6502 0.5740 +4613 6597 0.5020 +4613 6598 0.5080 +4613 6608 0.5650 +4613 6615 0.4500 +4613 6657 0.7590 +4613 6662 0.5670 +4613 6664 0.4060 +4613 6667 0.8400 +4613 6714 0.4290 +4613 6774 0.5050 +4613 6776 0.5290 +4613 6777 0.5330 +4613 6790 0.9980 +4613 6855 0.5060 +4613 6908 0.6040 +4613 6925 0.4190 +4613 6929 0.4410 +4613 7015 0.5880 +4613 7048 0.5950 +4613 7049 0.5190 +4613 7054 0.5020 +4613 7113 0.4970 +4613 7153 0.5520 +4613 7157 0.8520 +4613 7161 0.4900 +4613 7391 0.4220 +4613 7403 0.4240 +4613 7490 0.4480 +4613 7528 0.6580 +4613 7534 0.5380 +4613 7543 0.8800 +4613 7709 0.8290 +4613 7837 0.4210 +4613 7855 0.4100 +4613 7874 0.5180 +4613 7913 0.4320 +4613 8089 0.4010 +4613 8289 0.5160 +4613 8290 0.4800 +4613 8295 0.7190 +4613 8356 0.5080 +4613 8842 0.4740 +4613 8886 0.4310 +4613 8929 0.6850 +4613 9111 0.9900 +4613 9134 0.5430 +4613 9173 0.4430 +4613 9212 0.4830 +4613 9314 0.5310 +4613 9464 0.4840 +4613 9627 0.4120 +4613 10014 0.6430 +4613 10075 0.5850 +4613 10291 0.4230 +4613 10397 0.9370 +4613 10413 0.4210 +4613 10524 0.5000 +4613 10612 0.4080 +4613 10664 0.5360 +4613 10683 0.6060 +4613 10763 0.4660 +4613 10765 0.4250 +4613 11073 0.5200 +4613 11091 0.6890 +4613 22877 0.6670 +4613 22937 0.5370 +4613 22954 0.4640 +4613 23012 0.4180 +4613 23028 0.7170 +4613 23030 0.5590 +4613 23095 0.4650 +4613 23411 0.6920 +4613 23476 0.8900 +4613 23512 0.6920 +4613 23567 0.5800 +4613 26133 0.5530 +4613 27161 0.4120 +4613 27165 0.4420 +4613 27255 0.4140 +4613 29072 0.4890 +4613 29881 0.5270 +4613 51450 0.4300 +4613 51594 0.4700 +4613 51684 0.5800 +4613 51755 0.4260 +4613 54487 0.4020 +4613 55294 0.8740 +4613 55636 0.6820 +4613 55885 0.5250 +4613 57167 0.5670 +4613 57446 0.7980 +4613 57447 0.8680 +4613 57492 0.4460 +4613 57634 0.6570 +4613 57716 0.4340 +4613 65009 0.6000 +4613 65078 0.4570 +4613 79727 0.5310 +4613 79923 0.5780 +4613 81553 0.5060 +4613 81669 0.4470 +4613 84444 0.4200 +4613 84530 0.4230 +4613 84823 0.4010 +4613 92002 0.4300 +4613 113451 0.4540 +4613 121536 0.4850 +4613 137902 0.4210 +4613 169714 0.5030 +4613 283150 0.4850 +4613 284459 0.4470 +4613 285016 0.4220 +4613 342945 0.4470 +4613 389421 0.6990 +4613 440093 0.4800 +4613 440686 0.4800 +4613 653604 0.4800 +4613 100532731 0.4470 +4616 4783 0.4090 +4616 4790 0.4110 +4616 4792 0.6480 +4616 4848 0.6280 +4616 4849 0.7160 +4616 4929 0.4390 +4616 5111 0.9120 +4616 5351 0.4220 +4616 5599 0.5980 +4616 5609 0.9790 +4616 5801 0.4080 +4616 5966 0.5860 +4616 5970 0.5460 +4616 5996 0.4090 +4616 6347 0.5220 +4616 6774 0.5710 +4616 6996 0.6160 +4616 7050 0.4070 +4616 7071 0.4040 +4616 7124 0.4650 +4616 7128 0.5750 +4616 7132 0.4800 +4616 7157 0.9640 +4616 7185 0.4720 +4616 7538 0.5870 +4616 7832 0.5070 +4616 8767 0.4220 +4616 8817 0.4350 +4616 8823 0.4180 +4616 8870 0.4910 +4616 8878 0.4550 +4616 9021 0.5310 +4616 9125 0.7670 +4616 9133 0.9260 +4616 9337 0.6100 +4616 9592 0.5560 +4616 10912 0.9550 +4616 11266 0.4790 +4616 23019 0.7030 +4616 23645 0.6420 +4616 25904 0.7310 +4616 26281 0.4140 +4616 27006 0.4200 +4616 29128 0.4220 +4616 29883 0.7820 +4616 29950 0.5360 +4616 54790 0.5600 +4616 55571 0.7800 +4616 57472 0.7050 +4616 64332 0.4070 +4616 64651 0.8580 +4616 80312 0.4620 +4616 85417 0.9100 +4616 85456 0.6870 +4616 90480 0.8100 +4616 246175 0.6960 +4616 266743 0.4100 +4617 4618 0.9330 +4617 4619 0.6350 +4617 4620 0.6400 +4617 4621 0.6580 +4617 4622 0.6220 +4617 4624 0.7390 +4617 4625 0.5010 +4617 4626 0.5550 +4617 4632 0.5460 +4617 4654 0.6670 +4617 4656 0.8430 +4617 4990 0.4180 +4617 5075 0.4320 +4617 5077 0.9590 +4617 5081 0.9010 +4617 5087 0.5580 +4617 5156 0.5140 +4617 5175 0.4210 +4617 5308 0.4910 +4617 5468 0.5370 +4617 5600 0.5770 +4617 6300 0.6000 +4617 6385 0.6290 +4617 6442 0.4030 +4617 6444 0.4780 +4617 6469 0.4670 +4617 6495 0.8090 +4617 6722 0.4880 +4617 6886 0.4350 +4617 6899 0.4500 +4617 6911 0.4170 +4617 6925 0.6430 +4617 6929 0.9360 +4617 6938 0.7980 +4617 6939 0.4100 +4617 6943 0.6500 +4617 7099 0.4520 +4617 7135 0.4020 +4617 7136 0.4570 +4617 7350 0.7190 +4617 7402 0.4410 +4617 7471 0.4140 +4617 7476 0.4570 +4617 7545 0.4600 +4617 8200 0.4430 +4617 8325 0.4730 +4617 8646 0.4580 +4617 8842 0.4200 +4617 9070 0.4270 +4617 9242 0.7200 +4617 9370 0.4270 +4617 10398 0.4240 +4617 10468 0.5330 +4617 10499 0.4520 +4617 10655 0.4050 +4617 10736 0.4870 +4617 10891 0.5810 +4617 23090 0.4040 +4617 29895 0.4070 +4617 51804 0.4990 +4617 55553 0.4420 +4617 63976 0.8020 +4617 64641 0.5500 +4617 84676 0.5210 +4617 114907 0.6250 +4617 219623 0.5070 +4617 252995 0.4690 +4617 284358 0.5530 +4617 389827 0.6540 +4617 392255 0.4020 +4617 642658 0.4340 +4617 100271849 0.7110 +4617 100288687 0.4110 +4618 4619 0.7800 +4618 4620 0.8400 +4618 4621 0.6320 +4618 4622 0.5880 +4618 4624 0.7100 +4618 4625 0.6710 +4618 4626 0.5680 +4618 4632 0.7950 +4618 4633 0.5790 +4618 4634 0.4090 +4618 4638 0.4220 +4618 4654 0.9270 +4618 4656 0.8860 +4618 4892 0.5190 +4618 5077 0.9000 +4618 5081 0.8500 +4618 5087 0.5660 +4618 5307 0.4700 +4618 5308 0.4390 +4618 5600 0.5450 +4618 6261 0.4850 +4618 6300 0.5620 +4618 6495 0.5660 +4618 6588 0.5580 +4618 6722 0.4610 +4618 6886 0.6130 +4618 6925 0.8570 +4618 6929 0.9250 +4618 6938 0.9120 +4618 7005 0.4330 +4618 7060 0.4610 +4618 7125 0.5740 +4618 7135 0.7190 +4618 7136 0.5520 +4618 7138 0.4990 +4618 7140 0.6300 +4618 7273 0.5200 +4618 7402 0.4010 +4618 8048 0.8360 +4618 8557 0.5740 +4618 9242 0.4520 +4618 9499 0.4590 +4618 10324 0.6130 +4618 10468 0.4100 +4618 10627 0.4050 +4618 10631 0.4260 +4618 10763 0.4980 +4618 23676 0.4010 +4618 29895 0.6020 +4618 51778 0.5770 +4618 51804 0.5140 +4618 56890 0.6780 +4618 57325 0.4200 +4618 58529 0.7000 +4618 63973 0.4390 +4618 64419 0.6060 +4618 84676 0.5570 +4618 91977 0.4060 +4618 114907 0.6070 +4618 116729 0.4440 +4618 129446 0.4670 +4618 131377 0.6140 +4618 245806 0.4010 +4618 246329 0.4280 +4618 389827 0.6630 +4618 442721 0.5460 +4618 643836 0.7690 +4618 100271849 0.7180 +4619 4620 0.9900 +4619 4621 0.8380 +4619 4622 0.8910 +4619 4624 0.9150 +4619 4625 0.9620 +4619 4626 0.9420 +4619 4627 0.9140 +4619 4628 0.9140 +4619 4629 0.7680 +4619 4632 0.9890 +4619 4633 0.9450 +4619 4634 0.9210 +4619 4635 0.8320 +4619 4636 0.8190 +4619 4637 0.7770 +4619 4654 0.6870 +4619 4656 0.8040 +4619 4892 0.4880 +4619 4968 0.4590 +4619 5081 0.5760 +4619 5224 0.4390 +4619 6261 0.4440 +4619 6588 0.4760 +4619 6795 0.5010 +4619 7003 0.4440 +4619 7060 0.5760 +4619 7125 0.8150 +4619 7134 0.4350 +4619 7135 0.7390 +4619 7136 0.8130 +4619 7137 0.4330 +4619 7138 0.6660 +4619 7139 0.6500 +4619 7140 0.8890 +4619 7168 0.8470 +4619 7169 0.6080 +4619 7170 0.5500 +4619 7171 0.4780 +4619 7273 0.7360 +4619 8048 0.7460 +4619 8467 0.6050 +4619 8557 0.6770 +4619 8655 0.6880 +4619 8735 0.9430 +4619 8826 0.5440 +4619 9031 0.7350 +4619 9172 0.6090 +4619 9499 0.6050 +4619 10324 0.6100 +4619 10345 0.5850 +4619 10398 0.8600 +4619 10627 0.7430 +4619 10631 0.4560 +4619 11101 0.4910 +4619 22989 0.5580 +4619 23028 0.5160 +4619 23439 0.4060 +4619 23676 0.4380 +4619 27043 0.4020 +4619 29765 0.6170 +4619 29895 0.9740 +4619 29928 0.4220 +4619 51361 0.4720 +4619 51442 0.4350 +4619 51778 0.5130 +4619 51806 0.6360 +4619 54916 0.4950 +4619 55704 0.4290 +4619 58498 0.5350 +4619 58529 0.6590 +4619 79784 0.9150 +4619 84033 0.4100 +4619 84676 0.4590 +4619 84700 0.6220 +4619 85458 0.4970 +4619 91860 0.5700 +4619 93408 0.7150 +4619 103910 0.7640 +4619 114907 0.4690 +4619 129446 0.7810 +4619 131377 0.4280 +4619 140465 0.8610 +4619 146862 0.7980 +4619 163688 0.5890 +4619 245806 0.5390 +4619 283234 0.5140 +4619 286753 0.4490 +4619 389827 0.4180 +4619 399687 0.5730 +4619 440193 0.4700 +4619 442721 0.4880 +4619 727857 0.4220 +4619 728378 0.7690 +4620 4621 0.7810 +4620 4622 0.7650 +4620 4624 0.9460 +4620 4625 0.9770 +4620 4626 0.9270 +4620 4627 0.9150 +4620 4628 0.9150 +4620 4629 0.7690 +4620 4632 0.9940 +4620 4633 0.9260 +4620 4634 0.9390 +4620 4635 0.7870 +4620 4636 0.8530 +4620 4637 0.8450 +4620 4644 0.5990 +4620 4650 0.4570 +4620 4651 0.5530 +4620 4654 0.7140 +4620 4656 0.7410 +4620 4892 0.5910 +4620 4969 0.4110 +4620 5081 0.6030 +4620 5224 0.4190 +4620 5837 0.4440 +4620 6261 0.5470 +4620 6275 0.5350 +4620 6588 0.8060 +4620 7060 0.4810 +4620 7084 0.4910 +4620 7125 0.8800 +4620 7134 0.5930 +4620 7135 0.8290 +4620 7136 0.8240 +4620 7137 0.4220 +4620 7138 0.7680 +4620 7139 0.4790 +4620 7140 0.8800 +4620 7168 0.7690 +4620 7169 0.6610 +4620 7170 0.6480 +4620 7171 0.4650 +4620 7273 0.8320 +4620 7414 0.5490 +4620 8048 0.8470 +4620 8557 0.7360 +4620 8735 0.9410 +4620 8736 0.4280 +4620 9499 0.6870 +4620 10020 0.7270 +4620 10092 0.5170 +4620 10093 0.5320 +4620 10094 0.5280 +4620 10095 0.4990 +4620 10096 0.5770 +4620 10097 0.5910 +4620 10109 0.5060 +4620 10324 0.8460 +4620 10345 0.6150 +4620 10398 0.8630 +4620 10552 0.6440 +4620 10627 0.7480 +4620 10631 0.4050 +4620 10891 0.5140 +4620 10930 0.5250 +4620 11155 0.4090 +4620 22989 0.5560 +4620 23439 0.4350 +4620 23676 0.6030 +4620 26287 0.4680 +4620 29765 0.4810 +4620 29895 0.9770 +4620 51778 0.6530 +4620 51806 0.4430 +4620 54443 0.5160 +4620 56288 0.5100 +4620 57159 0.6130 +4620 58498 0.5280 +4620 58529 0.7910 +4620 79784 0.9140 +4620 84665 0.4610 +4620 84676 0.7150 +4620 84700 0.6690 +4620 85458 0.6390 +4620 93408 0.4830 +4620 103910 0.7780 +4620 114907 0.5890 +4620 127294 0.4120 +4620 128239 0.5100 +4620 129446 0.8290 +4620 131377 0.6140 +4620 140458 0.4600 +4620 140465 0.8770 +4620 146862 0.6510 +4620 165904 0.4560 +4620 375790 0.4530 +4620 390714 0.4420 +4620 399687 0.5740 +4620 442721 0.6080 +4620 728378 0.4030 +4621 4622 0.9270 +4621 4624 0.9000 +4621 4625 0.7940 +4621 4626 0.7720 +4621 4627 0.7610 +4621 4628 0.7600 +4621 4629 0.7640 +4621 4632 0.9570 +4621 4633 0.8260 +4621 4634 0.8880 +4621 4635 0.8540 +4621 4636 0.8210 +4621 4637 0.7580 +4621 4654 0.7390 +4621 4656 0.8140 +4621 4904 0.5220 +4621 5077 0.4220 +4621 5081 0.6570 +4621 6261 0.4880 +4621 6442 0.4450 +4621 6495 0.7460 +4621 7111 0.6040 +4621 7125 0.8610 +4621 7134 0.6860 +4621 7135 0.9530 +4621 7136 0.9740 +4621 7137 0.7000 +4621 7138 0.8090 +4621 7139 0.7880 +4621 7140 0.9650 +4621 7168 0.7680 +4621 7169 0.9590 +4621 7170 0.7500 +4621 7171 0.7100 +4621 7273 0.8020 +4621 7431 0.5790 +4621 8557 0.8100 +4621 8735 0.7310 +4621 8736 0.5270 +4621 9499 0.4290 +4621 10324 0.5140 +4621 10398 0.8650 +4621 10627 0.7520 +4621 22989 0.5570 +4621 25861 0.4310 +4621 26287 0.6560 +4621 27032 0.4230 +4621 27063 0.5330 +4621 29765 0.6570 +4621 29766 0.5890 +4621 29767 0.5870 +4621 29895 0.9540 +4621 51778 0.4430 +4621 54916 0.6150 +4621 55143 0.4870 +4621 56624 0.5910 +4621 58498 0.5180 +4621 58529 0.5450 +4621 63895 0.4710 +4621 79784 0.7600 +4621 84700 0.7440 +4621 91977 0.4210 +4621 93408 0.4630 +4621 103910 0.7600 +4621 118490 0.4450 +4621 131377 0.4340 +4621 140465 0.8680 +4621 140469 0.4150 +4621 146862 0.5790 +4621 375790 0.4620 +4621 389827 0.6030 +4621 399687 0.5630 +4622 4624 0.7400 +4622 4625 0.8710 +4622 4626 0.9130 +4622 4627 0.7590 +4622 4628 0.7610 +4622 4629 0.7640 +4622 4632 0.9540 +4622 4633 0.7570 +4622 4634 0.9150 +4622 4635 0.7900 +4622 4636 0.8410 +4622 4637 0.7640 +4622 4654 0.6720 +4622 4656 0.7010 +4622 5081 0.5740 +4622 6261 0.4050 +4622 6495 0.6430 +4622 6795 0.4600 +4622 6844 0.4840 +4622 7084 0.4290 +4622 7125 0.6980 +4622 7134 0.4130 +4622 7135 0.7220 +4622 7136 0.7200 +4622 7137 0.4260 +4622 7138 0.6520 +4622 7139 0.4360 +4622 7140 0.7150 +4622 7168 0.7730 +4622 7169 0.6130 +4622 7170 0.5250 +4622 7171 0.4820 +4622 7273 0.6550 +4622 8735 0.8510 +4622 9172 0.5170 +4622 9721 0.4430 +4622 10398 0.8620 +4622 10627 0.7420 +4622 10891 0.4820 +4622 22989 0.5590 +4622 29895 0.9150 +4622 51778 0.5550 +4622 54768 0.4180 +4622 54916 0.6130 +4622 55143 0.4520 +4622 56624 0.4730 +4622 58498 0.5430 +4622 58529 0.7230 +4622 63967 0.4030 +4622 79784 0.7580 +4622 84033 0.5960 +4622 84676 0.4980 +4622 84700 0.5790 +4622 91977 0.5600 +4622 93408 0.5150 +4622 94025 0.4450 +4622 103910 0.8000 +4622 114907 0.5410 +4622 140465 0.8530 +4622 146862 0.4220 +4622 169355 0.4080 +4622 389827 0.4360 +4622 399687 0.5630 +4624 4625 0.9970 +4624 4626 0.9070 +4624 4627 0.9130 +4624 4628 0.9140 +4624 4629 0.7720 +4624 4632 0.9570 +4624 4633 0.9930 +4624 4634 0.9940 +4624 4635 0.9710 +4624 4636 0.9380 +4624 4637 0.7820 +4624 4646 0.4570 +4624 4654 0.8220 +4624 4656 0.8310 +4624 4878 0.8510 +4624 4879 0.7780 +4624 4892 0.4400 +4624 5004 0.4420 +4624 5077 0.5530 +4624 5081 0.7230 +4624 5175 0.4840 +4624 5308 0.4110 +4624 5318 0.4800 +4624 5350 0.5410 +4624 5460 0.4630 +4624 5814 0.6220 +4624 6261 0.4670 +4624 6262 0.6830 +4624 6331 0.7620 +4624 6336 0.6120 +4624 6442 0.5060 +4624 6444 0.4310 +4624 6546 0.4780 +4624 6588 0.4520 +4624 6597 0.6770 +4624 6604 0.6080 +4624 6640 0.5070 +4624 6657 0.4130 +4624 6722 0.4700 +4624 6876 0.4310 +4624 6910 0.9120 +4624 7019 0.5750 +4624 7092 0.4410 +4624 7111 0.6240 +4624 7112 0.5540 +4624 7125 0.7670 +4624 7134 0.7520 +4624 7135 0.9690 +4624 7136 0.8250 +4624 7137 0.9470 +4624 7138 0.8010 +4624 7139 0.9630 +4624 7140 0.8040 +4624 7153 0.4960 +4624 7168 0.9490 +4624 7169 0.8810 +4624 7170 0.7440 +4624 7171 0.7160 +4624 7273 0.9260 +4624 7414 0.4500 +4624 7431 0.7420 +4624 7837 0.4240 +4624 8048 0.8620 +4624 8557 0.8080 +4624 8735 0.9120 +4624 8736 0.5160 +4624 8815 0.4280 +4624 8829 0.4450 +4624 9026 0.4720 +4624 9096 0.4360 +4624 9172 0.4160 +4624 9464 0.5600 +4624 9499 0.4240 +4624 9531 0.5660 +4624 9969 0.6830 +4624 10021 0.6450 +4624 10060 0.6080 +4624 10133 0.5770 +4624 10345 0.4670 +4624 10398 0.8830 +4624 10529 0.4050 +4624 10627 0.7720 +4624 10891 0.5540 +4624 11155 0.5580 +4624 22989 0.5550 +4624 23345 0.4180 +4624 23363 0.5420 +4624 23676 0.4750 +4624 27063 0.5820 +4624 27295 0.5110 +4624 27302 0.8110 +4624 29119 0.5350 +4624 29765 0.6310 +4624 29766 0.5880 +4624 29767 0.5920 +4624 29895 0.9060 +4624 50805 0.4810 +4624 51422 0.7030 +4624 51778 0.7050 +4624 51806 0.6810 +4624 54432 0.6390 +4624 55553 0.5770 +4624 55897 0.4790 +4624 57057 0.7860 +4624 57158 0.5580 +4624 57159 0.4330 +4624 58498 0.8480 +4624 58529 0.6180 +4624 79784 0.9130 +4624 79923 0.4450 +4624 81031 0.4040 +4624 83478 0.4930 +4624 84033 0.4670 +4624 84525 0.4480 +4624 84665 0.5760 +4624 84676 0.7520 +4624 84700 0.6570 +4624 84859 0.4510 +4624 85366 0.6420 +4624 91624 0.5730 +4624 91860 0.6250 +4624 91977 0.5120 +4624 93408 0.6410 +4624 93649 0.5490 +4624 103910 0.8130 +4624 114907 0.6660 +4624 125972 0.4190 +4624 129446 0.4500 +4624 137902 0.4240 +4624 140465 0.8420 +4624 146862 0.5780 +4624 150094 0.4600 +4624 150572 0.6820 +4624 163688 0.6330 +4624 257313 0.4060 +4624 257364 0.4370 +4624 282996 0.7310 +4624 283383 0.4710 +4624 389827 0.4950 +4624 399687 0.5660 +4624 442721 0.4440 +4624 728378 0.4780 +4625 4626 0.9140 +4625 4627 0.9130 +4625 4628 0.9140 +4625 4629 0.7730 +4625 4632 0.9980 +4625 4633 0.9990 +4625 4634 0.9990 +4625 4635 0.9770 +4625 4636 0.8270 +4625 4637 0.8060 +4625 4654 0.5850 +4625 4656 0.6100 +4625 4878 0.8510 +4625 4879 0.7710 +4625 4892 0.6450 +4625 5081 0.4250 +4625 5224 0.5020 +4625 5318 0.6600 +4625 5350 0.5020 +4625 5506 0.4110 +4625 5814 0.6170 +4625 5837 0.4570 +4625 6261 0.6500 +4625 6262 0.7930 +4625 6331 0.7100 +4625 6442 0.4840 +4625 6444 0.5430 +4625 6495 0.5860 +4625 6546 0.4690 +4625 6588 0.8190 +4625 6597 0.6440 +4625 6604 0.4340 +4625 6901 0.5890 +4625 6910 0.5890 +4625 7060 0.5140 +4625 7112 0.5650 +4625 7125 0.7890 +4625 7134 0.7800 +4625 7135 0.9830 +4625 7136 0.8170 +4625 7137 0.9480 +4625 7138 0.8980 +4625 7139 0.9700 +4625 7140 0.8260 +4625 7168 0.9930 +4625 7169 0.8420 +4625 7170 0.7850 +4625 7171 0.5080 +4625 7273 0.9580 +4625 8048 0.9630 +4625 8291 0.4180 +4625 8557 0.9780 +4625 8735 0.9100 +4625 8736 0.6360 +4625 9172 0.4970 +4625 9464 0.4160 +4625 9499 0.6840 +4625 9531 0.5790 +4625 9969 0.5470 +4625 10021 0.5600 +4625 10060 0.6540 +4625 10324 0.7430 +4625 10345 0.5810 +4625 10398 0.8750 +4625 10529 0.5050 +4625 10627 0.7710 +4625 10631 0.5900 +4625 10891 0.4470 +4625 10930 0.5600 +4625 11155 0.8390 +4625 22989 0.5550 +4625 23676 0.5480 +4625 26287 0.6710 +4625 27063 0.6510 +4625 27295 0.5700 +4625 27302 0.7730 +4625 29119 0.4600 +4625 29765 0.4290 +4625 29895 0.9850 +4625 50805 0.4020 +4625 51422 0.8010 +4625 51778 0.8200 +4625 51806 0.4590 +4625 54916 0.4480 +4625 55143 0.4590 +4625 55553 0.6100 +4625 56624 0.4290 +4625 57057 0.4900 +4625 57158 0.6230 +4625 57190 0.4750 +4625 57538 0.4520 +4625 58498 0.8290 +4625 58529 0.8190 +4625 79188 0.5070 +4625 79641 0.4200 +4625 79784 0.9130 +4625 79933 0.5240 +4625 84033 0.5630 +4625 84258 0.4530 +4625 84665 0.6860 +4625 84676 0.5760 +4625 84700 0.6690 +4625 85366 0.7000 +4625 91624 0.6520 +4625 93408 0.5120 +4625 93649 0.4090 +4625 103910 0.8600 +4625 114907 0.4430 +4625 124093 0.4060 +4625 125972 0.4780 +4625 127294 0.5200 +4625 128239 0.4010 +4625 129446 0.8490 +4625 131377 0.5830 +4625 140465 0.8660 +4625 146862 0.6620 +4625 150572 0.5730 +4625 165904 0.4830 +4625 202333 0.4230 +4625 282996 0.8050 +4625 347273 0.4070 +4625 375790 0.4590 +4625 390594 0.4110 +4625 399687 0.5700 +4625 442721 0.7070 +4625 728378 0.4460 +4626 4627 0.9140 +4626 4628 0.9130 +4626 4629 0.7640 +4626 4632 0.9610 +4626 4633 0.7970 +4626 4634 0.8890 +4626 4635 0.8130 +4626 4636 0.8190 +4626 4637 0.7720 +4626 4654 0.5970 +4626 4656 0.6380 +4626 5081 0.4850 +4626 5573 0.8070 +4626 6795 0.6290 +4626 7084 0.4220 +4626 7111 0.5880 +4626 7125 0.8290 +4626 7134 0.6600 +4626 7135 0.7880 +4626 7136 0.8520 +4626 7137 0.6930 +4626 7138 0.8020 +4626 7139 0.7530 +4626 7140 0.8650 +4626 7168 0.8740 +4626 7169 0.8350 +4626 7170 0.7490 +4626 7171 0.7000 +4626 7273 0.7510 +4626 7431 0.5660 +4626 8557 0.6390 +4626 8735 0.9390 +4626 9499 0.4060 +4626 9734 0.4650 +4626 10324 0.4200 +4626 10398 0.8580 +4626 10524 0.4800 +4626 10627 0.7480 +4626 22989 0.5560 +4626 29765 0.6130 +4626 29766 0.5490 +4626 29767 0.5530 +4626 29895 0.9170 +4626 51778 0.4100 +4626 56985 0.5160 +4626 58498 0.4750 +4626 58529 0.5740 +4626 63895 0.4270 +4626 79641 0.4990 +4626 79784 0.9120 +4626 84700 0.6140 +4626 93408 0.4560 +4626 103910 0.7590 +4626 114801 0.4060 +4626 140465 0.8670 +4626 146862 0.4950 +4626 221491 0.4250 +4626 375790 0.4520 +4626 389827 0.5960 +4626 399687 0.5630 +4626 645832 0.4140 +4627 4628 0.9850 +4627 4629 0.9370 +4627 4632 0.9470 +4627 4633 0.9640 +4627 4634 0.8930 +4627 4635 0.7280 +4627 4636 0.8190 +4627 4637 0.9980 +4627 4638 0.7700 +4627 4641 0.8730 +4627 4642 0.4080 +4627 4643 0.4910 +4627 4644 0.6830 +4627 4645 0.4710 +4627 4646 0.4820 +4627 4647 0.8490 +4627 4650 0.5890 +4627 4651 0.5830 +4627 4659 0.7070 +4627 4660 0.7020 +4627 4691 0.4850 +4627 4739 0.4590 +4627 4868 0.6360 +4627 4869 0.5470 +4627 4926 0.4120 +4627 5016 0.5790 +4627 5027 0.4220 +4627 5052 0.4820 +4627 5058 0.5400 +4627 5062 0.5370 +4627 5063 0.5290 +4627 5216 0.5570 +4627 5230 0.4860 +4627 5294 0.4130 +4627 5316 0.4440 +4627 5339 0.5720 +4627 5357 0.8630 +4627 5372 0.4250 +4627 5500 0.6250 +4627 5591 0.4870 +4627 5756 0.8310 +4627 5818 0.6040 +4627 5829 0.4490 +4627 5870 0.5650 +4627 5879 0.6530 +4627 5898 0.5700 +4627 5962 0.8490 +4627 6093 0.7840 +4627 6271 0.4810 +4627 6275 0.9970 +4627 6286 0.4830 +4627 6326 0.5010 +4627 6328 0.5180 +4627 6335 0.5080 +4627 6464 0.4160 +4627 6709 0.8480 +4627 6711 0.6710 +4627 6714 0.6460 +4627 6774 0.5140 +4627 7094 0.8480 +4627 7124 0.4340 +4627 7157 0.5770 +4627 7168 0.7650 +4627 7169 0.7750 +4627 7170 0.6900 +4627 7171 0.8820 +4627 7184 0.5780 +4627 7225 0.4400 +4627 7277 0.6280 +4627 7369 0.4060 +4627 7399 0.5090 +4627 7402 0.4260 +4627 7414 0.6380 +4627 7430 0.9140 +4627 7431 0.4410 +4627 7454 0.6710 +4627 7456 0.4070 +4627 7534 0.4150 +4627 7753 0.4350 +4627 7791 0.5850 +4627 7827 0.5410 +4627 7852 0.4070 +4627 8407 0.4510 +4627 8542 0.8980 +4627 8573 0.5230 +4627 8653 0.4140 +4627 8735 0.9140 +4627 8764 0.5600 +4627 8773 0.4920 +4627 8826 0.8200 +4627 9098 0.6760 +4627 9260 0.4050 +4627 9332 0.9550 +4627 9475 0.6520 +4627 9657 0.4340 +4627 9750 0.8300 +4627 9935 0.4490 +4627 9948 0.7700 +4627 10075 0.4810 +4627 10092 0.6220 +4627 10093 0.6440 +4627 10094 0.6450 +4627 10095 0.7550 +4627 10096 0.8120 +4627 10097 0.8050 +4627 10109 0.6650 +4627 10121 0.4220 +4627 10197 0.4560 +4627 10381 0.4890 +4627 10398 0.9900 +4627 10487 0.5260 +4627 10552 0.5070 +4627 10594 0.4880 +4627 10627 0.9850 +4627 10640 0.4490 +4627 10806 0.6300 +4627 10956 0.6340 +4627 11034 0.4240 +4627 11078 0.6940 +4627 11113 0.6550 +4627 11336 0.4110 +4627 11344 0.6170 +4627 11346 0.4880 +4627 22852 0.5950 +4627 22989 0.6100 +4627 23022 0.4040 +4627 23101 0.4130 +4627 23136 0.5280 +4627 23218 0.4230 +4627 23265 0.4250 +4627 23476 0.5290 +4627 23603 0.4040 +4627 23607 0.4330 +4627 23780 0.4080 +4627 25777 0.4550 +4627 25794 0.8030 +4627 25861 0.7270 +4627 29087 0.4830 +4627 29114 0.4240 +4627 29895 0.8540 +4627 29992 0.4010 +4627 51023 0.4300 +4627 51168 0.6390 +4627 51474 0.6050 +4627 51531 0.4680 +4627 51806 0.4420 +4627 53405 0.8130 +4627 53904 0.6490 +4627 54084 0.4260 +4627 54443 0.6080 +4627 54536 0.4040 +4627 54822 0.4670 +4627 54843 0.4270 +4627 55351 0.4240 +4627 55763 0.4340 +4627 55770 0.4050 +4627 55898 0.5010 +4627 55930 0.4640 +4627 57568 0.4260 +4627 57619 0.4650 +4627 57674 0.8920 +4627 58498 0.7890 +4627 60412 0.4240 +4627 64072 0.4970 +4627 64236 0.6140 +4627 64423 0.7110 +4627 64787 0.5100 +4627 65217 0.5370 +4627 79026 0.6690 +4627 79577 0.4950 +4627 79784 0.9320 +4627 79968 0.4130 +4627 83715 0.7470 +4627 84447 0.6330 +4627 84700 0.5750 +4627 84830 0.4200 +4627 84958 0.4590 +4627 85015 0.4750 +4627 91607 0.4240 +4627 93408 0.7960 +4627 94120 0.4480 +4627 94121 0.4590 +4627 94122 0.4510 +4627 103910 0.9980 +4627 117531 0.4050 +4627 125336 0.4370 +4627 129138 0.4610 +4627 129446 0.8380 +4627 139741 0.4290 +4627 140465 0.9740 +4627 140469 0.5790 +4627 146862 0.4180 +4627 149371 0.4240 +4627 161497 0.5250 +4627 203068 0.5100 +4627 219670 0.5920 +4627 257019 0.6350 +4627 286262 0.8680 +4627 339768 0.6110 +4627 345651 0.5340 +4627 347853 0.4090 +4627 389207 0.8480 +4627 390714 0.4420 +4627 399687 0.6760 +4627 494513 0.6050 +4627 643226 0.8000 +4627 728378 0.6710 +4627 100288687 0.5860 +4628 4629 0.9380 +4628 4632 0.9210 +4628 4633 0.9520 +4628 4634 0.9080 +4628 4635 0.7210 +4628 4636 0.8190 +4628 4637 0.9970 +4628 4638 0.8070 +4628 4641 0.5940 +4628 4644 0.4090 +4628 4651 0.4090 +4628 4659 0.6370 +4628 4660 0.5640 +4628 5058 0.5180 +4628 5062 0.5350 +4628 5063 0.5600 +4628 5154 0.4500 +4628 5467 0.4260 +4628 5500 0.5780 +4628 5870 0.5640 +4628 5879 0.5840 +4628 5898 0.4180 +4628 6093 0.6240 +4628 6326 0.5150 +4628 6328 0.5240 +4628 6335 0.5200 +4628 6714 0.5940 +4628 6876 0.4270 +4628 7082 0.5120 +4628 7094 0.5910 +4628 7135 0.4280 +4628 7139 0.4020 +4628 7168 0.7220 +4628 7169 0.7030 +4628 7170 0.4550 +4628 7171 0.7560 +4628 7352 0.4820 +4628 7408 0.4970 +4628 7431 0.5170 +4628 8516 0.4340 +4628 8542 0.4870 +4628 8735 0.9150 +4628 8766 0.5380 +4628 8826 0.7760 +4628 8976 0.4380 +4628 9358 0.4090 +4628 9448 0.4280 +4628 9475 0.5900 +4628 9493 0.6120 +4628 10013 0.4160 +4628 10096 0.5390 +4628 10097 0.5130 +4628 10134 0.5170 +4628 10398 0.9960 +4628 10627 0.9830 +4628 10788 0.4520 +4628 10806 0.6150 +4628 11113 0.6600 +4628 22989 0.6090 +4628 25945 0.5950 +4628 29127 0.4990 +4628 29895 0.8560 +4628 51806 0.5910 +4628 54443 0.4360 +4628 54558 0.4730 +4628 55083 0.6260 +4628 55108 0.4100 +4628 57619 0.7360 +4628 58498 0.7960 +4628 79784 0.9150 +4628 79968 0.5280 +4628 84700 0.7120 +4628 85015 0.4990 +4628 91860 0.5220 +4628 92521 0.4230 +4628 93408 0.8100 +4628 103910 0.9870 +4628 126129 0.6030 +4628 128239 0.4250 +4628 140465 0.9800 +4628 140469 0.4200 +4628 163688 0.5200 +4628 286187 0.4070 +4628 387082 0.5380 +4628 399687 0.6290 +4628 728378 0.5500 +4628 100288687 0.5860 +4629 4632 0.9100 +4629 4633 0.9600 +4629 4634 0.8610 +4629 4635 0.7670 +4629 4636 0.8190 +4629 4637 0.9810 +4629 4638 0.9470 +4629 4644 0.4890 +4629 4653 0.4260 +4629 4659 0.6570 +4629 4660 0.7810 +4629 4790 0.5390 +4629 4851 0.4400 +4629 4854 0.4510 +4629 4869 0.6670 +4629 4893 0.4470 +4629 4904 0.4020 +4629 4928 0.5170 +4629 4969 0.4470 +4629 5058 0.5180 +4629 5062 0.5250 +4629 5063 0.5400 +4629 5087 0.4480 +4629 5156 0.5440 +4629 5159 0.5790 +4629 5175 0.6410 +4629 5350 0.5370 +4629 5500 0.5750 +4629 5549 0.5230 +4629 5592 0.6840 +4629 5595 0.4130 +4629 5788 0.4180 +4629 5796 0.4240 +4629 5829 0.6180 +4629 5879 0.5480 +4629 5914 0.7290 +4629 6093 0.6010 +4629 6275 0.4510 +4629 6525 0.8030 +4629 6714 0.5980 +4629 6722 0.7170 +4629 6876 0.9270 +4629 6943 0.4860 +4629 7040 0.4590 +4629 7042 0.4570 +4629 7043 0.4550 +4629 7046 0.5680 +4629 7048 0.5990 +4629 7094 0.6320 +4629 7125 0.4310 +4629 7137 0.4900 +4629 7139 0.6090 +4629 7140 0.4480 +4629 7141 0.4230 +4629 7168 0.8820 +4629 7169 0.8970 +4629 7170 0.7950 +4629 7171 0.8400 +4629 7345 0.4300 +4629 7412 0.4070 +4629 7414 0.7060 +4629 7431 0.5910 +4629 7450 0.5940 +4629 7490 0.5840 +4629 7913 0.5750 +4629 8021 0.5750 +4629 8028 0.5070 +4629 8076 0.5310 +4629 8178 0.4310 +4629 8407 0.6030 +4629 8516 0.4200 +4629 8557 0.4050 +4629 8735 0.7590 +4629 8826 0.5450 +4629 9096 0.4250 +4629 9135 0.4260 +4629 9314 0.5050 +4629 9332 0.5180 +4629 9475 0.5880 +4629 9665 0.4500 +4629 9702 0.6470 +4629 10069 0.4260 +4629 10174 0.5160 +4629 10398 0.9860 +4629 10516 0.4430 +4629 10580 0.6460 +4629 10627 0.9560 +4629 10894 0.4010 +4629 11034 0.5670 +4629 11113 0.6350 +4629 22989 0.6070 +4629 23336 0.4310 +4629 23345 0.4430 +4629 23452 0.4340 +4629 25802 0.9510 +4629 25942 0.4370 +4629 27130 0.4840 +4629 27295 0.4530 +4629 28984 0.5610 +4629 29114 0.6320 +4629 29119 0.4420 +4629 29895 0.8440 +4629 30008 0.5530 +4629 50511 0.4050 +4629 51441 0.4140 +4629 51806 0.4630 +4629 54514 0.4480 +4629 54790 0.5010 +4629 55869 0.4930 +4629 57591 0.4220 +4629 57592 0.4400 +4629 58498 0.8480 +4629 79695 0.4120 +4629 79784 0.9150 +4629 81031 0.5960 +4629 84451 0.4190 +4629 84700 0.5910 +4629 84706 0.5520 +4629 85366 0.4780 +4629 93408 0.7940 +4629 93649 0.8200 +4629 103910 0.9680 +4629 123811 0.4520 +4629 124641 0.6030 +4629 140465 0.9560 +4629 171023 0.4840 +4629 171024 0.4620 +4629 399687 0.5860 +4629 728378 0.4450 +4632 4633 0.9700 +4632 4634 0.8380 +4632 4635 0.6440 +4632 4636 0.8680 +4632 4637 0.8440 +4632 4645 0.4190 +4632 4646 0.4010 +4632 4654 0.6320 +4632 4656 0.6800 +4632 4892 0.5470 +4632 5081 0.4140 +4632 5224 0.5740 +4632 5270 0.5400 +4632 5629 0.4600 +4632 5834 0.5350 +4632 5836 0.5140 +4632 5837 0.6380 +4632 6261 0.4660 +4632 6262 0.4930 +4632 6345 0.7130 +4632 6588 0.8450 +4632 7094 0.4140 +4632 7111 0.7070 +4632 7125 0.9510 +4632 7134 0.7410 +4632 7135 0.9750 +4632 7136 0.9730 +4632 7137 0.9390 +4632 7138 0.9490 +4632 7139 0.9170 +4632 7140 0.9770 +4632 7141 0.5490 +4632 7167 0.5190 +4632 7168 0.9430 +4632 7169 0.9280 +4632 7170 0.9330 +4632 7171 0.8560 +4632 7273 0.9650 +4632 7429 0.6090 +4632 7431 0.6000 +4632 8048 0.9010 +4632 8557 0.7840 +4632 8573 0.4940 +4632 8735 0.9730 +4632 8876 0.4360 +4632 9499 0.6570 +4632 10120 0.4330 +4632 10121 0.4480 +4632 10324 0.8580 +4632 10345 0.7470 +4632 10383 0.5320 +4632 10398 0.9640 +4632 10487 0.5260 +4632 10627 0.9380 +4632 10880 0.5080 +4632 10881 0.5050 +4632 10930 0.6590 +4632 22989 0.8500 +4632 23209 0.8800 +4632 23363 0.4360 +4632 23676 0.6450 +4632 26287 0.4210 +4632 27063 0.4460 +4632 27295 0.4570 +4632 29765 0.8210 +4632 29766 0.6420 +4632 29767 0.6300 +4632 29895 0.9950 +4632 51778 0.7140 +4632 51804 0.4780 +4632 58498 0.8250 +4632 58529 0.7570 +4632 79784 0.7570 +4632 80179 0.4210 +4632 81569 0.5050 +4632 83544 0.5190 +4632 84517 0.4280 +4632 84676 0.4080 +4632 84700 0.8750 +4632 85366 0.4550 +4632 93408 0.5880 +4632 103910 0.9790 +4632 116729 0.4300 +4632 127294 0.5270 +4632 129446 0.8270 +4632 131377 0.6110 +4632 139741 0.5050 +4632 140458 0.4580 +4632 140465 0.7370 +4632 140625 0.5050 +4632 146862 0.5750 +4632 151050 0.4360 +4632 202333 0.4140 +4632 245806 0.4130 +4632 284382 0.5050 +4632 345651 0.5160 +4632 389203 0.7380 +4632 399687 0.8330 +4632 442721 0.8350 +4632 445582 0.5180 +4632 493829 0.4310 +4632 548596 0.4630 +4632 653269 0.4660 +4632 728378 0.5120 +4633 4634 0.9990 +4633 4635 0.9730 +4633 4636 0.5290 +4633 4637 0.9480 +4633 4638 0.9410 +4633 4644 0.4170 +4633 4653 0.6900 +4633 4654 0.8570 +4633 4656 0.4390 +4633 4659 0.8640 +4633 4878 0.7270 +4633 4879 0.4380 +4633 4892 0.7260 +4633 5062 0.4550 +4633 5175 0.4400 +4633 5224 0.4190 +4633 5244 0.4650 +4633 5315 0.4730 +4633 5318 0.5070 +4633 5350 0.5290 +4633 5460 0.4260 +4633 5499 0.7420 +4633 5500 0.7770 +4633 5501 0.7520 +4633 5783 0.4310 +4633 5829 0.4730 +4633 5837 0.4510 +4633 6093 0.9580 +4633 6128 0.5800 +4633 6261 0.5070 +4633 6262 0.7120 +4633 6331 0.6450 +4633 6444 0.4190 +4633 6474 0.4380 +4633 6546 0.4200 +4633 6588 0.8750 +4633 6722 0.4230 +4633 6876 0.4110 +4633 6910 0.6750 +4633 7026 0.4070 +4633 7111 0.6250 +4633 7125 0.8740 +4633 7134 0.8960 +4633 7135 0.9370 +4633 7136 0.9050 +4633 7137 0.9500 +4633 7138 0.8990 +4633 7139 0.9500 +4633 7140 0.8790 +4633 7168 0.9140 +4633 7169 0.8760 +4633 7170 0.7990 +4633 7171 0.7130 +4633 7273 0.9440 +4633 7414 0.4450 +4633 7431 0.6140 +4633 8048 0.9560 +4633 8476 0.4680 +4633 8557 0.9450 +4633 8573 0.4390 +4633 8735 0.5420 +4633 8736 0.5360 +4633 8826 0.5940 +4633 8988 0.4200 +4633 9096 0.4600 +4633 9138 0.4470 +4633 9270 0.5490 +4633 9464 0.5200 +4633 9475 0.9840 +4633 9493 0.4950 +4633 9499 0.6600 +4633 9578 0.5480 +4633 9644 0.4200 +4633 10021 0.6530 +4633 10324 0.8020 +4633 10345 0.6900 +4633 10398 0.9090 +4633 10494 0.4700 +4633 10627 0.9070 +4633 10930 0.5480 +4633 11155 0.5820 +4633 11235 0.7130 +4633 22989 0.4820 +4633 23493 0.4160 +4633 23676 0.6950 +4633 26287 0.5340 +4633 27063 0.6220 +4633 27295 0.5380 +4633 29127 0.5100 +4633 29765 0.7520 +4633 29766 0.5970 +4633 29767 0.6030 +4633 29895 0.8700 +4633 50805 0.6370 +4633 51422 0.7840 +4633 51778 0.9050 +4633 54432 0.4780 +4633 54443 0.6370 +4633 54776 0.8170 +4633 54829 0.4030 +4633 55897 0.4080 +4633 57057 0.4870 +4633 57154 0.4850 +4633 57158 0.5760 +4633 57538 0.4140 +4633 57541 0.4910 +4633 58498 0.4650 +4633 58529 0.6800 +4633 79188 0.4760 +4633 79784 0.9180 +4633 79923 0.4040 +4633 80179 0.6010 +4633 83605 0.6720 +4633 84033 0.4250 +4633 84665 0.6640 +4633 84676 0.7310 +4633 84700 0.5410 +4633 85366 0.9770 +4633 91624 0.4070 +4633 91807 0.9810 +4633 93408 0.4130 +4633 93649 0.4700 +4633 103910 0.9060 +4633 116369 0.4990 +4633 125972 0.4590 +4633 127294 0.4620 +4633 129446 0.8370 +4633 133482 0.4290 +4633 137735 0.4180 +4633 140465 0.9410 +4633 146862 0.5630 +4633 150572 0.4950 +4633 153443 0.5820 +4633 160762 0.4290 +4633 165904 0.5100 +4633 282996 0.5120 +4633 283450 0.4180 +4633 340156 0.9280 +4633 340273 0.4550 +4633 399687 0.4210 +4633 401265 0.5060 +4633 442721 0.8500 +4634 4635 0.9630 +4634 4636 0.8490 +4634 4637 0.6780 +4634 4638 0.9330 +4634 4644 0.4020 +4634 4878 0.5420 +4634 4892 0.4320 +4634 5224 0.4530 +4634 5318 0.5710 +4634 5350 0.4380 +4634 5837 0.4420 +4634 6261 0.4520 +4634 6262 0.6490 +4634 6331 0.6110 +4634 6442 0.4190 +4634 6444 0.4920 +4634 6588 0.5780 +4634 6910 0.4050 +4634 7111 0.6570 +4634 7125 0.7760 +4634 7134 0.8040 +4634 7135 0.9260 +4634 7136 0.8910 +4634 7137 0.9600 +4634 7138 0.8340 +4634 7139 0.9530 +4634 7140 0.8650 +4634 7168 0.9490 +4634 7169 0.7940 +4634 7170 0.8320 +4634 7171 0.6600 +4634 7273 0.9310 +4634 7431 0.5610 +4634 8048 0.9300 +4634 8557 0.9390 +4634 8573 0.4390 +4634 8735 0.8490 +4634 8736 0.5500 +4634 8826 0.5260 +4634 9499 0.4480 +4634 9531 0.4180 +4634 10021 0.4380 +4634 10060 0.4310 +4634 10324 0.4620 +4634 10345 0.4720 +4634 10398 0.8600 +4634 10627 0.8470 +4634 11155 0.6360 +4634 22989 0.7240 +4634 23676 0.4150 +4634 26287 0.5350 +4634 27063 0.5910 +4634 27129 0.4070 +4634 27295 0.5410 +4634 29765 0.6970 +4634 29766 0.6040 +4634 29767 0.6060 +4634 29895 0.8990 +4634 51422 0.8710 +4634 51430 0.8900 +4634 51778 0.8290 +4634 54829 0.4240 +4634 57158 0.6550 +4634 57538 0.4800 +4634 58498 0.7720 +4634 58529 0.6070 +4634 79188 0.5710 +4634 79784 0.8350 +4634 84033 0.4970 +4634 84665 0.6670 +4634 84676 0.5750 +4634 84700 0.7530 +4634 85366 0.9820 +4634 91624 0.4540 +4634 91807 0.9380 +4634 93408 0.6570 +4634 103910 0.7430 +4634 125972 0.5500 +4634 127294 0.5310 +4634 129446 0.5170 +4634 131377 0.4730 +4634 140465 0.7490 +4634 150572 0.6050 +4634 165904 0.6070 +4634 282996 0.5510 +4634 340156 0.9350 +4634 399687 0.7980 +4634 401265 0.4940 +4634 442721 0.5070 +4635 4636 0.7300 +4635 4637 0.5620 +4635 4638 0.9230 +4635 4878 0.5550 +4635 5645 0.4400 +4635 5908 0.4280 +4635 6262 0.5020 +4635 6331 0.4050 +4635 6521 0.5280 +4635 6588 0.4810 +4635 7111 0.6650 +4635 7125 0.6030 +4635 7134 0.6540 +4635 7135 0.8360 +4635 7136 0.7850 +4635 7137 0.7890 +4635 7138 0.8060 +4635 7139 0.8300 +4635 7140 0.7470 +4635 7168 0.7360 +4635 7169 0.7430 +4635 7170 0.7030 +4635 7171 0.6540 +4635 7273 0.8240 +4635 7431 0.5820 +4635 8048 0.4920 +4635 8557 0.6830 +4635 8573 0.4390 +4635 8735 0.7250 +4635 9499 0.5600 +4635 10398 0.7880 +4635 10627 0.7240 +4635 10661 0.6090 +4635 22989 0.6760 +4635 27145 0.4590 +4635 29765 0.6020 +4635 29766 0.5700 +4635 29767 0.5650 +4635 29895 0.8880 +4635 51327 0.6890 +4635 51778 0.4640 +4635 55363 0.4260 +4635 55631 0.5210 +4635 58498 0.8450 +4635 79784 0.6250 +4635 84700 0.7390 +4635 85366 0.9270 +4635 91807 0.9260 +4635 93408 0.6130 +4635 103910 0.7790 +4635 140465 0.5720 +4635 150572 0.4460 +4635 340156 0.9270 +4635 399687 0.7220 +4636 4637 0.6960 +4636 4638 0.6930 +4636 4659 0.6720 +4636 5158 0.5600 +4636 5499 0.6980 +4636 5500 0.6980 +4636 5501 0.6980 +4636 5829 0.5580 +4636 6093 0.9060 +4636 6895 0.4410 +4636 7094 0.5210 +4636 7137 0.4180 +4636 7168 0.6360 +4636 7169 0.6370 +4636 7170 0.6360 +4636 7171 0.6360 +4636 7414 0.5100 +4636 8189 0.4570 +4636 8573 0.4390 +4636 8735 0.8490 +4636 8736 0.5070 +4636 9475 0.9110 +4636 10174 0.5210 +4636 10398 0.7480 +4636 10580 0.5210 +4636 10627 0.5610 +4636 22989 0.7030 +4636 25802 0.5090 +4636 29895 0.7580 +4636 51087 0.4370 +4636 54776 0.6810 +4636 58498 0.5340 +4636 64506 0.4420 +4636 79784 0.7550 +4636 84700 0.7030 +4636 85366 0.7010 +4636 91807 0.6950 +4636 93408 0.5100 +4636 103910 0.5800 +4636 140465 0.8280 +4636 326340 0.4750 +4636 340156 0.6950 +4636 399687 0.7030 +4636 414919 0.4440 +4637 4638 0.9390 +4637 4641 0.7670 +4637 4644 0.4410 +4637 4646 0.8140 +4637 4649 0.7950 +4637 4650 0.5910 +4637 4659 0.9320 +4637 4660 0.6230 +4637 5052 0.4170 +4637 5058 0.5580 +4637 5062 0.5600 +4637 5063 0.5570 +4637 5478 0.4530 +4637 5499 0.9210 +4637 5500 0.9460 +4637 5501 0.9340 +4637 5829 0.6200 +4637 5879 0.7550 +4637 6093 0.5980 +4637 6147 0.4460 +4637 6204 0.4020 +4637 6232 0.4680 +4637 6282 0.4050 +4637 6714 0.5750 +4637 6727 0.5160 +4637 6876 0.4840 +4637 7094 0.7510 +4637 7114 0.4970 +4637 7135 0.4800 +4637 7136 0.5260 +4637 7137 0.5360 +4637 7138 0.5090 +4637 7139 0.5130 +4637 7140 0.4850 +4637 7167 0.4160 +4637 7168 0.7650 +4637 7169 0.8190 +4637 7170 0.8290 +4637 7171 0.7820 +4637 7178 0.5050 +4637 7316 0.4230 +4637 7414 0.6770 +4637 7534 0.5030 +4637 7846 0.4710 +4637 8407 0.5130 +4637 8573 0.4520 +4637 8735 0.7670 +4637 8826 0.8480 +4637 9168 0.4160 +4637 9475 0.6120 +4637 9793 0.4570 +4637 9948 0.4530 +4637 10096 0.4700 +4637 10097 0.4560 +4637 10109 0.8230 +4637 10169 0.8880 +4637 10174 0.5460 +4637 10376 0.5060 +4637 10398 0.9860 +4637 10476 0.4660 +4637 10487 0.6580 +4637 10580 0.5460 +4637 10627 0.9920 +4637 11051 0.6900 +4637 11113 0.6440 +4637 22989 0.7340 +4637 23209 0.8510 +4637 25802 0.5470 +4637 29114 0.4310 +4637 29895 0.7420 +4637 51807 0.4020 +4637 54443 0.4050 +4637 54776 0.9200 +4637 58498 0.8230 +4637 79784 0.9680 +4637 80179 0.4310 +4637 81792 0.6220 +4637 84324 0.4040 +4637 84700 0.8110 +4637 84790 0.4840 +4637 85366 0.9250 +4637 91807 0.9340 +4637 93408 0.7480 +4637 103910 0.9980 +4637 112714 0.4150 +4637 113457 0.4160 +4637 120892 0.6490 +4637 140465 0.9770 +4637 140735 0.7960 +4637 340156 0.9270 +4637 399687 0.8920 +4637 728378 0.6060 +4638 4659 0.7390 +4638 4660 0.7420 +4638 5058 0.8300 +4638 5062 0.7660 +4638 5063 0.6600 +4638 5500 0.6920 +4638 5566 0.9080 +4638 5567 0.9070 +4638 5568 0.9050 +4638 5581 0.9050 +4638 5829 0.5860 +4638 5879 0.5430 +4638 6500 0.4090 +4638 6525 0.4690 +4638 6876 0.6340 +4638 7042 0.4600 +4638 7043 0.4460 +4638 7048 0.5110 +4638 7094 0.6420 +4638 7135 0.4190 +4638 7168 0.8570 +4638 7169 0.8200 +4638 7170 0.7500 +4638 7171 0.7070 +4638 7295 0.4080 +4638 7414 0.8140 +4638 8076 0.5300 +4638 8454 0.4670 +4638 8997 0.8190 +4638 10174 0.5420 +4638 10298 0.6730 +4638 10398 0.9890 +4638 10427 0.4250 +4638 10580 0.6260 +4638 10627 0.9720 +4638 22808 0.4410 +4638 23452 0.4860 +4638 25802 0.8220 +4638 25828 0.5740 +4638 29895 0.7380 +4638 30008 0.5640 +4638 51806 0.9980 +4638 56924 0.6690 +4638 57120 0.4340 +4638 57144 0.6640 +4638 57514 0.8160 +4638 58498 0.7290 +4638 79784 0.5720 +4638 81031 0.6430 +4638 91860 0.9970 +4638 93408 0.6920 +4638 93649 0.5460 +4638 103910 0.9460 +4638 140465 0.9090 +4638 163688 0.9970 +4638 283106 0.4110 +4640 4641 0.9090 +4640 4646 0.9230 +4640 5172 0.4250 +4640 5881 0.9010 +4640 6525 0.5460 +4640 7125 0.4560 +4640 7429 0.4150 +4640 8572 0.9080 +4640 9124 0.5640 +4640 9132 0.4490 +4640 9260 0.5800 +4640 9381 0.4230 +4640 10083 0.5530 +4640 10097 0.7160 +4640 10120 0.7580 +4640 10121 0.7220 +4640 10611 0.5940 +4640 10787 0.5520 +4640 11078 0.5100 +4640 11155 0.5400 +4640 23301 0.5460 +4640 23384 0.5440 +4640 23607 0.9070 +4640 27295 0.5660 +4640 29964 0.5810 +4640 51806 0.8300 +4640 53841 0.5210 +4640 53904 0.9250 +4640 54825 0.4780 +4640 55604 0.6490 +4640 56940 0.7200 +4640 64072 0.4450 +4640 64236 0.5570 +4640 65217 0.4300 +4640 79955 0.4010 +4640 79990 0.5580 +4640 80216 0.4810 +4640 83700 0.7300 +4640 83715 0.8800 +4640 91860 0.7990 +4640 92521 0.5440 +4640 117531 0.4180 +4640 146183 0.4790 +4640 163688 0.7900 +4640 219537 0.5460 +4640 222662 0.4450 +4640 254102 0.5560 +4640 259236 0.4740 +4640 286262 0.4350 +4640 342527 0.5400 +4641 4642 0.4110 +4641 4643 0.5300 +4641 4644 0.6160 +4641 4646 0.9160 +4641 4647 0.8220 +4641 4649 0.9130 +4641 4650 0.5010 +4641 4651 0.5400 +4641 5357 0.8140 +4641 5434 0.5050 +4641 5435 0.4990 +4641 5437 0.5040 +4641 5440 0.5050 +4641 5441 0.5070 +4641 5728 0.4570 +4641 5756 0.8640 +4641 5867 0.5280 +4641 5872 0.5400 +4641 5879 0.4130 +4641 5881 0.9010 +4641 5898 0.5750 +4641 5962 0.8200 +4641 6517 0.7240 +4641 6525 0.6280 +4641 6709 0.6000 +4641 6711 0.6120 +4641 6810 0.5510 +4641 6814 0.5700 +4641 6844 0.5620 +4641 6908 0.4990 +4641 7430 0.8350 +4641 7913 0.8060 +4641 8356 0.4120 +4641 8467 0.9040 +4641 8572 0.9040 +4641 8573 0.5490 +4641 8655 0.5770 +4641 8766 0.4550 +4641 8773 0.5390 +4641 8850 0.6300 +4641 9013 0.5010 +4641 9014 0.4990 +4641 9015 0.4990 +4641 9031 0.9000 +4641 9124 0.5650 +4641 9188 0.8380 +4641 9260 0.6300 +4641 9371 0.5070 +4641 9533 0.5540 +4641 9750 0.8010 +4641 9847 0.5000 +4641 10092 0.5060 +4641 10093 0.5060 +4641 10094 0.6060 +4641 10095 0.6010 +4641 10096 0.6020 +4641 10097 0.6090 +4641 10109 0.5040 +4641 10514 0.8050 +4641 10552 0.5350 +4641 10611 0.5590 +4641 10640 0.5210 +4641 10787 0.5600 +4641 10849 0.5030 +4641 10890 0.5280 +4641 11078 0.5930 +4641 11127 0.5340 +4641 11155 0.5410 +4641 11336 0.5300 +4641 11344 0.5970 +4641 22920 0.4990 +4641 23028 0.4240 +4641 23136 0.5080 +4641 23265 0.5180 +4641 23301 0.5500 +4641 23384 0.5490 +4641 23433 0.4220 +4641 23451 0.8190 +4641 23607 0.9030 +4641 25794 0.8060 +4641 25861 0.5210 +4641 25885 0.5090 +4641 27295 0.5820 +4641 29964 0.5470 +4641 30834 0.4990 +4641 51082 0.4990 +4641 51168 0.5560 +4641 51552 0.5030 +4641 53405 0.8080 +4641 53904 0.9240 +4641 54443 0.4780 +4641 54536 0.5000 +4641 55604 0.7770 +4641 55763 0.5030 +4641 55766 0.4100 +4641 55770 0.5120 +4641 55898 0.6230 +4641 56344 0.4700 +4641 56940 0.7200 +4641 60412 0.5180 +4641 64236 0.5590 +4641 64425 0.8060 +4641 64787 0.5430 +4641 79058 0.5040 +4641 79101 0.4990 +4641 79990 0.5840 +4641 83700 0.7200 +4641 83715 0.7370 +4641 84172 0.7010 +4641 84700 0.9130 +4641 92521 0.6060 +4641 120892 0.6330 +4641 129446 0.8120 +4641 140465 0.7700 +4641 140469 0.5770 +4641 140735 0.7240 +4641 149371 0.5010 +4641 219537 0.5460 +4641 221830 0.5040 +4641 254102 0.5590 +4641 286262 0.8360 +4641 339768 0.5160 +4641 342527 0.5400 +4641 389207 0.8020 +4641 390714 0.4130 +4641 494513 0.5450 +4641 643226 0.8250 +4641 728378 0.6500 +4641 100529144 0.6740 +4642 9094 0.7700 +4642 9218 0.4140 +4642 23042 0.5190 +4642 23061 0.4070 +4642 27130 0.6240 +4642 29767 0.4170 +4642 51725 0.4410 +4642 51806 0.5370 +4642 55920 0.4050 +4642 80150 0.4070 +4642 84440 0.8060 +4642 84959 0.6200 +4642 90231 0.5390 +4642 91860 0.5210 +4642 120892 0.5350 +4642 163688 0.5210 +4643 4868 0.5140 +4643 5800 0.5390 +4643 6714 0.4380 +4643 7225 0.4790 +4643 7454 0.8030 +4643 7456 0.5170 +4643 7827 0.5810 +4643 8518 0.5060 +4643 8867 0.6390 +4643 8976 0.7680 +4643 9050 0.4670 +4643 9051 0.4300 +4643 9322 0.5100 +4643 10076 0.4830 +4643 10093 0.4420 +4643 10094 0.4070 +4643 10095 0.4440 +4643 10097 0.6110 +4643 11346 0.5250 +4643 23048 0.5660 +4643 23189 0.4150 +4643 25959 0.4200 +4643 26578 0.7210 +4643 26610 0.5180 +4643 27235 0.4750 +4643 50485 0.4460 +4643 51004 0.5090 +4643 51196 0.5210 +4643 51806 0.5350 +4643 54443 0.7350 +4643 54874 0.4550 +4643 55140 0.5050 +4643 55898 0.6190 +4643 57107 0.4380 +4643 64423 0.7650 +4643 79934 0.4750 +4643 80117 0.6280 +4643 81873 0.4330 +4643 83478 0.4610 +4643 84942 0.4090 +4643 120534 0.6730 +4643 124989 0.4910 +4643 134492 0.4350 +4643 146779 0.4910 +4643 146862 0.4260 +4643 147179 0.7510 +4643 163782 0.4240 +4644 4650 0.6210 +4644 4651 0.6100 +4644 4747 0.8420 +4644 4756 0.4130 +4644 4948 0.5260 +4644 5566 0.5990 +4644 5567 0.6010 +4644 5568 0.5980 +4644 5813 0.4780 +4644 5864 0.8470 +4644 5867 0.4030 +4644 5870 0.4270 +4644 5872 0.7450 +4644 5873 0.9990 +4644 5874 0.8820 +4644 5898 0.6580 +4644 5912 0.7130 +4644 5913 0.6060 +4644 6137 0.5640 +4644 6277 0.4780 +4644 6342 0.4580 +4644 6503 0.4160 +4644 6517 0.6290 +4644 6729 0.4240 +4644 6810 0.6690 +4644 6814 0.6110 +4644 6844 0.6600 +4644 7299 0.5820 +4644 7306 0.6110 +4644 7454 0.4580 +4644 7456 0.4200 +4644 7812 0.4960 +4644 8518 0.5210 +4644 8655 0.8570 +4644 8766 0.9880 +4644 8773 0.6390 +4644 8826 0.4160 +4644 9229 0.4500 +4644 9230 0.5700 +4644 9847 0.5880 +4644 10092 0.6930 +4644 10093 0.5000 +4644 10094 0.5520 +4644 10095 0.5730 +4644 10096 0.6860 +4644 10097 0.6440 +4644 10109 0.6010 +4644 10488 0.4160 +4644 10490 0.4500 +4644 10552 0.5640 +4644 10565 0.5770 +4644 10612 0.8500 +4644 10640 0.7460 +4644 10681 0.7460 +4644 10890 0.9350 +4644 11234 0.4660 +4644 11336 0.8690 +4644 22841 0.5430 +4644 22895 0.8510 +4644 22924 0.4060 +4644 23086 0.6310 +4644 23233 0.5020 +4644 23265 0.7010 +4644 23322 0.4760 +4644 23433 0.4060 +4644 23560 0.4450 +4644 23682 0.4060 +4644 25924 0.9970 +4644 26258 0.4170 +4644 27285 0.4020 +4644 29766 0.4370 +4644 51127 0.4030 +4644 51151 0.5190 +4644 51552 0.6590 +4644 51762 0.4700 +4644 51806 0.8120 +4644 54443 0.4300 +4644 54536 0.8610 +4644 54843 0.7840 +4644 55686 0.8870 +4644 55763 0.6600 +4644 55770 0.8290 +4644 55802 0.4500 +4644 55898 0.4970 +4644 55930 0.4610 +4644 56907 0.4240 +4644 57111 0.4290 +4644 57551 0.5070 +4644 57576 0.4730 +4644 57599 0.4550 +4644 60412 0.9060 +4644 64780 0.4590 +4644 79058 0.5460 +4644 79083 0.9990 +4644 79803 0.4770 +4644 83938 0.4200 +4644 84062 0.6690 +4644 84343 0.4870 +4644 84501 0.9630 +4644 84687 0.4470 +4644 84958 0.8190 +4644 91860 0.6800 +4644 94120 0.5130 +4644 94121 0.7350 +4644 94122 0.5220 +4644 116442 0.6080 +4644 117177 0.4510 +4644 123036 0.5310 +4644 124989 0.4740 +4644 134957 0.4660 +4644 136332 0.4600 +4644 139741 0.4100 +4644 140735 0.7610 +4644 146779 0.4740 +4644 146862 0.4950 +4644 149371 0.6650 +4644 163688 0.6800 +4644 196383 0.8980 +4644 196513 0.4520 +4644 201294 0.6090 +4644 283652 0.5230 +4644 286187 0.4360 +4644 376267 0.4390 +4644 388552 0.4150 +4644 399687 0.5150 +4645 5205 0.5970 +4645 5244 0.4530 +4645 5865 0.4090 +4645 5867 0.5660 +4645 5868 0.4510 +4645 5872 0.5160 +4645 5873 0.5420 +4645 5874 0.4110 +4645 6550 0.4480 +4645 6616 0.4800 +4645 6809 0.7390 +4645 6813 0.5050 +4645 6844 0.5210 +4645 7037 0.6500 +4645 7111 0.4960 +4645 7447 0.4430 +4645 8411 0.4030 +4645 8647 0.5540 +4645 8763 0.4310 +4645 8766 0.9990 +4645 9230 0.8350 +4645 9414 0.4070 +4645 9652 0.4270 +4645 9727 0.5420 +4645 9811 0.4320 +4645 10133 0.9730 +4645 10612 0.5080 +4645 10640 0.5210 +4645 10653 0.7130 +4645 10880 0.4010 +4645 10890 0.9290 +4645 10938 0.4220 +4645 11201 0.4110 +4645 22841 0.9990 +4645 23233 0.4830 +4645 23265 0.4040 +4645 23329 0.5320 +4645 26056 0.9010 +4645 29881 0.5140 +4645 30819 0.4400 +4645 50489 0.4740 +4645 50674 0.6510 +4645 51552 0.4180 +4645 51762 0.5490 +4645 51806 0.5870 +4645 54536 0.8720 +4645 55770 0.4150 +4645 55898 0.5380 +4645 56776 0.7120 +4645 56907 0.5160 +4645 57111 0.9650 +4645 57217 0.4350 +4645 57576 0.4530 +4645 60412 0.5460 +4645 64762 0.4180 +4645 79083 0.6450 +4645 80223 0.8700 +4645 83987 0.4610 +4645 84440 0.4300 +4645 84501 0.4320 +4645 85021 0.5070 +4645 85452 0.4240 +4645 91860 0.4070 +4645 92359 0.5390 +4645 94121 0.4890 +4645 117177 0.7120 +4645 124989 0.4740 +4645 136332 0.4620 +4645 146779 0.4740 +4645 146862 0.4850 +4645 163688 0.4030 +4645 196383 0.5120 +4645 399687 0.4640 +4646 4649 0.9170 +4646 4915 0.5040 +4646 4951 0.5120 +4646 5058 0.9280 +4646 5062 0.4960 +4646 5063 0.9000 +4646 5071 0.7680 +4646 5172 0.6210 +4646 5286 0.5490 +4646 5456 0.4500 +4646 5459 0.5920 +4646 5796 0.4770 +4646 5816 0.4240 +4646 5881 0.9020 +4646 5962 0.5230 +4646 6233 0.9420 +4646 6525 0.5400 +4646 6857 0.5430 +4646 6975 0.4980 +4646 7311 0.9000 +4646 7314 0.9040 +4646 7316 0.9680 +4646 7399 0.6310 +4646 7466 0.5090 +4646 8218 0.5290 +4646 8237 0.4200 +4646 8301 0.6420 +4646 8572 0.9030 +4646 8826 0.4790 +4646 8829 0.5130 +4646 8887 0.9240 +4646 9124 0.5570 +4646 9132 0.6440 +4646 9260 0.5810 +4646 9276 0.4190 +4646 9381 0.9230 +4646 9495 0.4050 +4646 9886 0.5550 +4646 10043 0.9810 +4646 10083 0.5360 +4646 10097 0.5140 +4646 10133 0.9560 +4646 10241 0.8930 +4646 10287 0.7140 +4646 10369 0.4210 +4646 10396 0.4070 +4646 10518 0.4600 +4646 10565 0.5030 +4646 10611 0.5920 +4646 10755 0.9990 +4646 10787 0.6090 +4646 10804 0.4820 +4646 11078 0.5840 +4646 11155 0.5500 +4646 22853 0.7510 +4646 23095 0.4240 +4646 23143 0.4720 +4646 23221 0.5560 +4646 23301 0.5610 +4646 23365 0.8170 +4646 23384 0.5430 +4646 23607 0.9400 +4646 25861 0.4800 +4646 27092 0.4360 +4646 27295 0.5670 +4646 29110 0.4540 +4646 29761 0.4290 +4646 29767 0.5400 +4646 29964 0.5400 +4646 51133 0.4020 +4646 51454 0.4400 +4646 51475 0.4160 +4646 51806 0.5800 +4646 53405 0.4790 +4646 53904 0.9350 +4646 54443 0.4830 +4646 54472 0.4430 +4646 54810 0.8620 +4646 55030 0.7820 +4646 55604 0.5500 +4646 55607 0.4200 +4646 55930 0.4550 +4646 56649 0.6760 +4646 56940 0.7200 +4646 56992 0.4440 +4646 57053 0.5100 +4646 58480 0.5750 +4646 64072 0.6760 +4646 64236 0.7960 +4646 64699 0.7370 +4646 65217 0.6250 +4646 79882 0.4090 +4646 79955 0.4020 +4646 81704 0.4190 +4646 83700 0.7200 +4646 83715 0.8770 +4646 84059 0.6150 +4646 84085 0.6220 +4646 84445 0.4180 +4646 84530 0.4210 +4646 84700 0.9090 +4646 84859 0.8430 +4646 85440 0.9340 +4646 91010 0.4570 +4646 91860 0.4170 +4646 92521 0.5400 +4646 93517 0.4110 +4646 103910 0.5040 +4646 117531 0.6400 +4646 124590 0.5220 +4646 124989 0.4900 +4646 125336 0.5660 +4646 126326 0.6590 +4646 127833 0.5880 +4646 140465 0.8340 +4646 140735 0.7270 +4646 146183 0.5070 +4646 146691 0.7890 +4646 146779 0.4900 +4646 161497 0.5510 +4646 163688 0.4170 +4646 219537 0.5400 +4646 222662 0.4980 +4646 246213 0.5730 +4646 254102 0.5400 +4646 259236 0.4770 +4646 283310 0.4200 +4646 286262 0.7150 +4646 340990 0.5950 +4646 342527 0.5400 +4646 374462 0.5430 +4646 375611 0.6430 +4646 389207 0.4510 +4646 494513 0.4420 +4646 643226 0.4050 +4646 653269 0.4040 +4646 654231 0.4970 +4646 729830 0.4350 +4647 4648 0.4370 +4647 4975 0.7540 +4647 5076 0.5090 +4647 5172 0.7420 +4647 5357 0.8550 +4647 5456 0.5180 +4647 5459 0.7960 +4647 5756 0.8480 +4647 5816 0.4940 +4647 5873 0.8570 +4647 5874 0.5430 +4647 5961 0.4240 +4647 5962 0.9120 +4647 6010 0.4240 +4647 6103 0.5780 +4647 6121 0.6380 +4647 6495 0.4720 +4647 6657 0.5510 +4647 6709 0.5460 +4647 6711 0.5960 +4647 6787 0.5820 +4647 6975 0.4020 +4647 7007 0.4970 +4647 7299 0.4800 +4647 7399 0.9380 +4647 7401 0.9510 +4647 7430 0.8530 +4647 7466 0.5640 +4647 8573 0.4990 +4647 9132 0.6110 +4647 9381 0.7870 +4647 9497 0.4730 +4647 9750 0.8350 +4647 9817 0.7290 +4647 10083 0.9990 +4647 10314 0.6330 +4647 10461 0.4990 +4647 10518 0.8720 +4647 10804 0.7770 +4647 11078 0.7910 +4647 11190 0.4600 +4647 11336 0.4890 +4647 11344 0.8150 +4647 23136 0.5090 +4647 23322 0.4490 +4647 23504 0.4520 +4647 23682 0.7020 +4647 25794 0.8730 +4647 25861 0.9830 +4647 25924 0.9780 +4647 26160 0.4460 +4647 29899 0.4020 +4647 51168 0.6670 +4647 51474 0.5060 +4647 51806 0.7340 +4647 53405 0.8770 +4647 53904 0.6460 +4647 54714 0.4220 +4647 55591 0.9350 +4647 56649 0.5820 +4647 57096 0.4210 +4647 60412 0.4460 +4647 64072 0.9980 +4647 64151 0.4700 +4647 64699 0.6660 +4647 64787 0.7220 +4647 65217 0.9960 +4647 79083 0.6260 +4647 79809 0.4510 +4647 79955 0.8400 +4647 80184 0.4910 +4647 83715 0.8780 +4647 84059 0.9440 +4647 84530 0.4960 +4647 84958 0.4650 +4647 91860 0.6820 +4647 117531 0.8770 +4647 117532 0.7670 +4647 124590 0.9990 +4647 125336 0.5880 +4647 126326 0.4510 +4647 129446 0.8390 +4647 140469 0.5640 +4647 146183 0.5880 +4647 161497 0.6220 +4647 163688 0.6760 +4647 222662 0.7260 +4647 246213 0.6210 +4647 257629 0.6860 +4647 259236 0.5810 +4647 283310 0.4650 +4647 286262 0.8950 +4647 286676 0.4500 +4647 339768 0.6680 +4647 340990 0.5960 +4647 346007 0.4460 +4647 375611 0.6560 +4647 388551 0.4410 +4647 389207 0.8950 +4647 494513 0.7420 +4647 643226 0.8690 +4647 654231 0.5430 +4648 10083 0.9850 +4648 25861 0.6120 +4648 51474 0.4100 +4648 51806 0.5950 +4648 53841 0.8310 +4648 54825 0.8760 +4648 64072 0.4560 +4648 65217 0.4090 +4648 79955 0.4450 +4648 83715 0.4590 +4648 91860 0.5480 +4648 124590 0.7660 +4648 163688 0.5070 +4648 257629 0.9800 +4649 4799 0.4430 +4649 5058 0.4980 +4649 5062 0.5030 +4649 5531 0.4400 +4649 5635 0.4200 +4649 5913 0.4830 +4649 6146 0.4130 +4649 8292 0.4980 +4649 8492 0.4020 +4649 8826 0.4820 +4649 10492 0.4430 +4649 11198 0.4530 +4649 22927 0.4700 +4649 23338 0.4780 +4649 51806 0.6100 +4649 55805 0.4500 +4649 84700 0.9100 +4649 91860 0.6100 +4649 140465 0.8230 +4649 140735 0.7200 +4649 163688 0.6100 +4649 164832 0.5400 +4649 171177 0.6290 +4649 199857 0.5580 +4649 257313 0.4120 +4649 283431 0.4460 +4650 4651 0.5870 +4650 5501 0.4630 +4650 5585 0.5010 +4650 5586 0.4920 +4650 5879 0.5370 +4650 5900 0.4180 +4650 5921 0.6150 +4650 5996 0.4080 +4650 6091 0.5990 +4650 6093 0.5790 +4650 6242 0.4700 +4650 6793 0.6430 +4650 6856 0.5240 +4650 7025 0.5480 +4650 7037 0.4090 +4650 7341 0.4260 +4650 8773 0.4160 +4650 8826 0.5950 +4650 9181 0.6150 +4650 9341 0.4370 +4650 9353 0.5840 +4650 9414 0.4710 +4650 9472 0.5370 +4650 9475 0.5370 +4650 9748 0.4290 +4650 9853 0.5610 +4650 10019 0.4730 +4650 10092 0.5310 +4650 10093 0.5160 +4650 10094 0.5290 +4650 10095 0.5320 +4650 10096 0.6010 +4650 10097 0.5640 +4650 10109 0.5250 +4650 10211 0.4260 +4650 10552 0.5160 +4650 10565 0.9010 +4650 11113 0.5890 +4650 11214 0.4190 +4650 23001 0.4030 +4650 23002 0.4670 +4650 23636 0.4390 +4650 23637 0.5030 +4650 29941 0.4440 +4650 51291 0.4030 +4650 51806 0.6210 +4650 54443 0.4790 +4650 54509 0.5790 +4650 55789 0.4720 +4650 55914 0.4390 +4650 56288 0.4950 +4650 65124 0.4620 +4650 79759 0.4800 +4650 80852 0.5600 +4650 81624 0.4960 +4650 81839 0.4250 +4650 84162 0.6490 +4650 91010 0.6000 +4650 91860 0.6210 +4650 128239 0.4720 +4650 132612 0.6390 +4650 140465 0.5310 +4650 163688 0.6210 +4650 284119 0.4040 +4650 390714 0.4030 +4651 4756 0.8770 +4651 4892 0.4160 +4651 5341 0.5990 +4651 5527 0.4070 +4651 5962 0.5210 +4651 6525 0.4030 +4651 6624 0.6290 +4651 7204 0.4210 +4651 7402 0.4210 +4651 7408 0.8130 +4651 7430 0.5160 +4651 9229 0.4360 +4651 9353 0.4390 +4651 9693 0.4140 +4651 9901 0.4490 +4651 10092 0.5520 +4651 10093 0.4990 +4651 10094 0.5720 +4651 10095 0.5490 +4651 10096 0.5450 +4651 10097 0.5690 +4651 10109 0.5770 +4651 10479 0.4380 +4651 10552 0.5150 +4651 22906 0.6630 +4651 23380 0.4610 +4651 26499 0.5890 +4651 51806 0.6800 +4651 55740 0.4710 +4651 64431 0.4090 +4651 66008 0.7110 +4651 80179 0.5320 +4651 81624 0.5500 +4651 89941 0.5610 +4651 91050 0.5160 +4651 91860 0.6120 +4651 124590 0.4740 +4651 151393 0.5920 +4651 163688 0.6110 +4651 257629 0.5670 +4651 390714 0.5030 +4653 4909 0.7020 +4653 4990 0.5450 +4653 5212 0.4530 +4653 5264 0.4930 +4653 5308 0.6600 +4653 5327 0.5420 +4653 5730 0.5200 +4653 5830 0.7530 +4653 6422 0.4120 +4653 6495 0.4330 +4653 6623 0.7310 +4653 6678 0.4380 +4653 7042 0.4550 +4653 7184 0.6000 +4653 8076 0.5120 +4653 8321 0.4510 +4653 8324 0.4340 +4653 8404 0.8560 +4653 8407 0.4110 +4653 8522 0.5440 +4653 9542 0.4480 +4653 10133 0.9500 +4653 10211 0.8980 +4653 10218 0.6510 +4653 11197 0.5060 +4653 11211 0.5170 +4653 11322 0.4240 +4653 23114 0.5360 +4653 26254 0.5490 +4653 27151 0.4070 +4653 29110 0.4600 +4653 54499 0.6970 +4653 55133 0.5490 +4653 55604 0.5720 +4653 84894 0.7160 +4653 118427 0.9630 +4653 126961 0.4070 +4653 136371 0.8710 +4653 220202 0.4320 +4653 342035 0.5630 +4654 4656 0.8210 +4654 4684 0.5070 +4654 4691 0.4020 +4654 4760 0.7010 +4654 4762 0.4560 +4654 5075 0.4220 +4654 5076 0.5050 +4654 5077 0.9500 +4654 5080 0.4240 +4654 5081 0.9320 +4654 5087 0.7520 +4654 5090 0.4130 +4654 5156 0.4560 +4654 5175 0.5110 +4654 5308 0.5510 +4654 5309 0.4160 +4654 5316 0.5090 +4654 5346 0.4400 +4654 5460 0.5680 +4654 5465 0.5910 +4654 5468 0.5660 +4654 5599 0.4710 +4654 5600 0.6280 +4654 5604 0.6440 +4654 5788 0.4470 +4654 5925 0.6060 +4654 5930 0.4220 +4654 5934 0.4050 +4654 6007 0.4790 +4654 6046 0.4350 +4654 6095 0.4300 +4654 6198 0.4550 +4654 6261 0.4410 +4654 6300 0.6460 +4654 6385 0.5840 +4654 6428 0.4020 +4654 6442 0.5240 +4654 6469 0.4920 +4654 6495 0.8560 +4654 6500 0.4810 +4654 6517 0.4070 +4654 6597 0.9570 +4654 6598 0.4590 +4654 6602 0.5490 +4654 6604 0.9900 +4654 6657 0.5390 +4654 6662 0.4610 +4654 6663 0.4160 +4654 6667 0.4330 +4654 6722 0.8650 +4654 6772 0.5140 +4654 6774 0.5420 +4654 6839 0.7300 +4654 6840 0.4670 +4654 6855 0.4390 +4654 6872 0.4380 +4654 6908 0.9600 +4654 6910 0.5190 +4654 6911 0.4420 +4654 6925 0.9720 +4654 6929 0.9930 +4654 6938 0.9890 +4654 6939 0.4440 +4654 6943 0.6610 +4654 7004 0.5510 +4654 7026 0.6660 +4654 7040 0.4460 +4654 7124 0.4230 +4654 7125 0.5210 +4654 7135 0.5130 +4654 7136 0.5660 +4654 7138 0.4940 +4654 7139 0.4690 +4654 7140 0.4840 +4654 7157 0.7970 +4654 7273 0.4980 +4654 7291 0.5670 +4654 7350 0.5020 +4654 7352 0.5340 +4654 7402 0.5790 +4654 7403 0.5370 +4654 7469 0.4220 +4654 7490 0.4590 +4654 7528 0.6870 +4654 7531 0.4590 +4654 7837 0.4890 +4654 8019 0.4480 +4654 8048 0.8630 +4654 8106 0.6070 +4654 8290 0.5110 +4654 8291 0.4630 +4654 8356 0.5140 +4654 8553 0.4610 +4654 8646 0.4470 +4654 8648 0.5530 +4654 8665 0.4810 +4654 8815 0.6330 +4654 8817 0.4420 +4654 8822 0.4110 +4654 8823 0.4530 +4654 8850 0.9720 +4654 9070 0.6020 +4654 9242 0.7110 +4654 9314 0.4830 +4654 9464 0.6860 +4654 9519 0.9050 +4654 9611 0.4990 +4654 9612 0.4950 +4654 9672 0.5950 +4654 9682 0.4970 +4654 9750 0.5750 +4654 9759 0.8240 +4654 9935 0.4450 +4654 10011 0.4800 +4654 10398 0.7740 +4654 10419 0.6320 +4654 10468 0.6090 +4654 10472 0.5300 +4654 10498 0.4940 +4654 10499 0.6290 +4654 10521 0.8870 +4654 10524 0.7170 +4654 10660 0.5760 +4654 10664 0.4040 +4654 10736 0.5510 +4654 10891 0.6710 +4654 11331 0.4030 +4654 22933 0.4430 +4654 22938 0.6610 +4654 23028 0.5970 +4654 23411 0.8470 +4654 23462 0.5820 +4654 23476 0.5620 +4654 23741 0.6190 +4654 26281 0.4420 +4654 26287 0.6370 +4654 26471 0.6060 +4654 26508 0.4020 +4654 27006 0.4560 +4654 29895 0.4970 +4654 50674 0.4110 +4654 50937 0.4360 +4654 51343 0.4300 +4654 51804 0.5430 +4654 54432 0.5070 +4654 55553 0.5070 +4654 56676 0.5900 +4654 58529 0.4450 +4654 63973 0.4340 +4654 63976 0.4810 +4654 64100 0.5500 +4654 79365 0.6680 +4654 79923 0.4760 +4654 80854 0.7910 +4654 83860 0.8260 +4654 84676 0.6740 +4654 89780 0.4280 +4654 93649 0.7560 +4654 103910 0.7740 +4654 114907 0.9090 +4654 131377 0.4200 +4654 137902 0.4890 +4654 147912 0.5050 +4654 168620 0.5790 +4654 245806 0.7170 +4654 387332 0.9310 +4654 389827 0.7650 +4654 440093 0.5090 +4654 440686 0.5070 +4654 448831 0.5280 +4654 653604 0.5070 +4654 100271849 0.7100 +4654 100288687 0.7290 +4654 100507027 0.9580 +4654 101929726 0.4400 +4656 4684 0.5810 +4656 4773 0.5290 +4656 5077 0.9450 +4656 5081 0.9380 +4656 5087 0.5860 +4656 5089 0.4170 +4656 5156 0.4690 +4656 5175 0.5280 +4656 5308 0.4270 +4656 5422 0.4280 +4656 5432 0.5420 +4656 5468 0.4980 +4656 5595 0.5110 +4656 5600 0.7120 +4656 5603 0.4530 +4656 5608 0.4830 +4656 5788 0.4830 +4656 5979 0.4130 +4656 6007 0.5200 +4656 6198 0.5210 +4656 6261 0.6250 +4656 6300 0.7570 +4656 6442 0.5350 +4656 6495 0.8590 +4656 6500 0.4560 +4656 6517 0.4390 +4656 6588 0.4080 +4656 6591 0.4540 +4656 6597 0.5770 +4656 6598 0.5700 +4656 6604 0.4490 +4656 6663 0.4560 +4656 6667 0.4490 +4656 6722 0.9080 +4656 6855 0.6050 +4656 6908 0.4550 +4656 6925 0.9320 +4656 6929 0.9700 +4656 6938 0.9760 +4656 7003 0.4940 +4656 7048 0.4240 +4656 7088 0.4470 +4656 7125 0.5520 +4656 7135 0.6180 +4656 7136 0.6580 +4656 7138 0.5340 +4656 7139 0.4550 +4656 7140 0.5630 +4656 7157 0.5620 +4656 7273 0.4820 +4656 7350 0.4220 +4656 7352 0.4660 +4656 7402 0.5180 +4656 7469 0.4350 +4656 7490 0.5100 +4656 7528 0.4400 +4656 7837 0.5010 +4656 8048 0.8120 +4656 8106 0.5070 +4656 8202 0.4440 +4656 8290 0.4430 +4656 8291 0.4360 +4656 8356 0.4420 +4656 8648 0.5170 +4656 9242 0.4690 +4656 9464 0.6160 +4656 9750 0.6580 +4656 9759 0.7490 +4656 10014 0.4530 +4656 10220 0.4130 +4656 10234 0.4710 +4656 10419 0.4920 +4656 10468 0.5430 +4656 10498 0.6840 +4656 10499 0.6770 +4656 10736 0.5860 +4656 10763 0.7100 +4656 10891 0.5930 +4656 22938 0.5220 +4656 23059 0.4040 +4656 23405 0.4850 +4656 23462 0.4330 +4656 26287 0.4850 +4656 29102 0.4720 +4656 29895 0.5880 +4656 29984 0.4890 +4656 51343 0.4020 +4656 51442 0.4200 +4656 51804 0.5510 +4656 54432 0.5060 +4656 54474 0.4150 +4656 57159 0.4310 +4656 57617 0.4950 +4656 58529 0.4490 +4656 64641 0.4960 +4656 83860 0.4530 +4656 84525 0.5390 +4656 84676 0.7010 +4656 93649 0.6090 +4656 114907 0.8110 +4656 117154 0.5320 +4656 137902 0.5020 +4656 140628 0.5060 +4656 147912 0.5810 +4656 245806 0.6730 +4656 246329 0.4520 +4656 375790 0.4390 +4656 387332 0.4570 +4656 389827 0.8310 +4656 440093 0.4420 +4656 440686 0.4560 +4656 653604 0.4560 +4656 100271849 0.8640 +4656 100288687 0.5240 +4656 100507027 0.4260 +4656 101929726 0.4880 +4659 4660 0.8740 +4659 4771 0.8220 +4659 4842 0.5760 +4659 4846 0.6920 +4659 5058 0.6570 +4659 5062 0.6090 +4659 5063 0.5500 +4659 5295 0.4970 +4659 5347 0.8160 +4659 5464 0.4630 +4659 5496 0.6810 +4659 5499 0.9700 +4659 5500 0.9990 +4659 5501 0.9990 +4659 5504 0.5490 +4659 5506 0.4460 +4659 5510 0.6690 +4659 5511 0.5970 +4659 5514 0.8240 +4659 5585 0.7080 +4659 5586 0.4080 +4659 5592 0.9870 +4659 5593 0.9110 +4659 5879 0.6090 +4659 5926 0.4090 +4659 5962 0.6000 +4659 6093 0.9960 +4659 6242 0.5550 +4659 6262 0.4320 +4659 6525 0.5090 +4659 6711 0.5250 +4659 6876 0.4820 +4659 7430 0.5160 +4659 7529 0.5820 +4659 7534 0.6360 +4659 8467 0.4380 +4659 8476 0.5880 +4659 8663 0.5050 +4659 8900 0.4560 +4659 9113 0.4970 +4659 9138 0.4320 +4659 9146 0.5070 +4659 9147 0.5550 +4659 9181 0.4410 +4659 9368 0.4040 +4659 9475 0.9750 +4659 9578 0.4240 +4659 9826 0.4250 +4659 9878 0.9120 +4659 9891 0.6030 +4659 10096 0.4730 +4659 10097 0.5590 +4659 10133 0.4180 +4659 10335 0.4220 +4659 10398 0.9820 +4659 10627 0.9390 +4659 23028 0.4460 +4659 23164 0.9570 +4659 23325 0.4310 +4659 23365 0.4550 +4659 23603 0.4400 +4659 25814 0.5020 +4659 25836 0.4090 +4659 29895 0.7450 +4659 51230 0.4730 +4659 51533 0.4890 +4659 51773 0.4860 +4659 51806 0.5400 +4659 54443 0.4940 +4659 54776 0.9360 +4659 57187 0.4620 +4659 58498 0.7180 +4659 58533 0.4800 +4659 64073 0.4280 +4659 79784 0.5940 +4659 80335 0.9020 +4659 80851 0.4240 +4659 80854 0.4430 +4659 84687 0.4870 +4659 91807 0.7500 +4659 91860 0.5390 +4659 93408 0.6720 +4659 94274 0.9960 +4659 103910 0.9760 +4659 126353 0.4440 +4659 140465 0.9190 +4659 163688 0.5390 +4659 219537 0.8030 +4659 286262 0.4450 +4659 100529144 0.4910 +4660 5058 0.5490 +4660 5062 0.5700 +4660 5063 0.5490 +4660 5347 0.4410 +4660 5499 0.5880 +4660 5500 0.9960 +4660 5501 0.7730 +4660 5510 0.4050 +4660 5585 0.5410 +4660 5592 0.4240 +4660 5879 0.5590 +4660 6093 0.6840 +4660 7712 0.4130 +4660 8239 0.4410 +4660 8468 0.5320 +4660 9475 0.6620 +4660 9858 0.4890 +4660 9891 0.4330 +4660 10398 0.7350 +4660 23770 0.5690 +4660 26051 0.4640 +4660 54443 0.4690 +4660 54776 0.5010 +4660 79784 0.5710 +4660 91807 0.5050 +4660 94274 0.7130 +4660 103910 0.6940 +4661 4760 0.4310 +4661 5354 0.8290 +4661 7465 0.4530 +4661 8924 0.9010 +4661 9088 0.8030 +4661 23186 0.5240 +4661 23309 0.5840 +4661 50674 0.5140 +4661 51160 0.4050 +4661 51230 0.5100 +4661 55251 0.4060 +4661 55666 0.4180 +4664 4665 0.5910 +4664 4803 0.4720 +4664 5450 0.4280 +4664 5453 0.4030 +4664 6663 0.6390 +4664 6722 0.6480 +4664 6772 0.4860 +4664 6773 0.5890 +4664 6775 0.5700 +4664 6778 0.5210 +4664 6929 0.4160 +4664 9655 0.4050 +4664 23082 0.4280 +4664 54842 0.4100 +4664 55033 0.4240 +4664 64400 0.5750 +4664 149076 0.5590 +4664 171017 0.5430 +4664 375248 0.4440 +4664 100131211 0.4280 +4665 4803 0.5170 +4665 6663 0.6410 +4665 6722 0.6610 +4665 6772 0.4400 +4665 6773 0.6370 +4665 6775 0.4680 +4665 6778 0.9340 +4665 7071 0.5550 +4665 8851 0.7690 +4665 8941 0.5340 +4665 10189 0.5150 +4665 10482 0.7990 +4665 10658 0.6610 +4665 10659 0.4930 +4665 26986 0.6290 +4665 55726 0.6360 +4665 63920 0.4200 +4665 65108 0.5460 +4665 79637 0.4290 +4665 79882 0.8450 +4665 100507055 0.5120 +4666 4736 0.8930 +4666 4809 0.4350 +4666 4869 0.4240 +4666 4904 0.4390 +4666 5469 0.5710 +4666 5478 0.5050 +4666 5757 0.4280 +4666 6122 0.9660 +4666 6123 0.6690 +4666 6124 0.9850 +4666 6125 0.9800 +4666 6128 0.9830 +4666 6129 0.9810 +4666 6130 0.9770 +4666 6132 0.9640 +4666 6133 0.9660 +4666 6135 0.9650 +4666 6136 0.9620 +4666 6137 0.9670 +4666 6138 0.9780 +4666 6139 0.9820 +4666 6141 0.9800 +4666 6142 0.9870 +4666 6143 0.9850 +4666 6144 0.9710 +4666 6146 0.9000 +4666 6147 0.9820 +4666 6152 0.9900 +4666 6154 0.9550 +4666 6155 0.9710 +4666 6156 0.9800 +4666 6157 0.8960 +4666 6158 0.9450 +4666 6159 0.9290 +4666 6160 0.9730 +4666 6161 0.9710 +4666 6164 0.9590 +4666 6165 0.9640 +4666 6166 0.9180 +4666 6167 0.9080 +4666 6168 0.9200 +4666 6169 0.9170 +4666 6170 0.9530 +4666 6173 0.9080 +4666 6175 0.9840 +4666 6176 0.7470 +4666 6181 0.5570 +4666 6187 0.6340 +4666 6188 0.8550 +4666 6189 0.9990 +4666 6191 0.7270 +4666 6192 0.5420 +4666 6193 0.8410 +4666 6194 0.9130 +4666 6201 0.7730 +4666 6202 0.9140 +4666 6203 0.7280 +4666 6204 0.7030 +4666 6205 0.9770 +4666 6206 0.9140 +4666 6207 0.9180 +4666 6208 0.7180 +4666 6209 0.8240 +4666 6210 0.6730 +4666 6217 0.7670 +4666 6218 0.5120 +4666 6222 0.7960 +4666 6223 0.8020 +4666 6224 0.8020 +4666 6227 0.7530 +4666 6228 0.7400 +4666 6229 0.8760 +4666 6230 0.7580 +4666 6231 0.6900 +4666 6232 0.6700 +4666 6233 0.8690 +4666 6234 0.6830 +4666 6235 0.4960 +4666 6613 0.5650 +4666 6728 0.8540 +4666 6729 0.8520 +4666 6730 0.8290 +4666 7178 0.7820 +4666 7311 0.9080 +4666 8665 0.5360 +4666 8666 0.4760 +4666 8667 0.4920 +4666 8772 0.5130 +4666 9045 0.9790 +4666 9349 0.9620 +4666 9732 0.6530 +4666 9939 0.4120 +4666 10399 0.9300 +4666 10480 0.5850 +4666 10728 0.6680 +4666 10987 0.4300 +4666 11222 0.4540 +4666 11224 0.9550 +4666 23148 0.4440 +4666 23204 0.4330 +4666 23521 0.9690 +4666 25873 0.9120 +4666 26471 0.6180 +4666 26986 0.4100 +4666 27335 0.4840 +4666 28998 0.4480 +4666 29093 0.5110 +4666 51073 0.4160 +4666 51081 0.5100 +4666 51121 0.6730 +4666 51154 0.4260 +4666 51260 0.4010 +4666 51386 0.4700 +4666 54542 0.4530 +4666 55651 0.4290 +4666 56648 0.4300 +4666 79036 0.4170 +4666 79590 0.4510 +4666 91408 0.9700 +4666 91875 0.8210 +4666 114987 0.4900 +4666 116832 0.4150 +4666 126402 0.5000 +4666 140032 0.5390 +4666 140801 0.6710 +4666 143244 0.4300 +4666 203068 0.8200 +4666 285855 0.6280 +4666 342538 0.9300 +4666 347487 0.6000 +4666 387129 0.4800 +4666 100505478 0.4770 +4666 100526842 0.9380 +4666 100529097 0.4630 +4666 100529239 0.4310 +4668 4669 0.4760 +4668 5045 0.4150 +4668 5046 0.4840 +4668 5538 0.4010 +4668 8706 0.9270 +4668 10317 0.9040 +4668 10724 0.6680 +4668 23357 0.4480 +4668 26301 0.9230 +4668 51005 0.4910 +4668 55577 0.4280 +4668 80256 0.4340 +4668 150368 0.5650 +4669 5981 0.4070 +4669 6448 0.9890 +4669 6609 0.4140 +4669 7264 0.5060 +4669 10972 0.8030 +4669 22901 0.5340 +4669 51172 0.4100 +4669 54732 0.8140 +4669 54982 0.5110 +4669 55526 0.4930 +4669 79154 0.6870 +4669 79158 0.4980 +4669 84572 0.4700 +4669 84875 0.4060 +4669 114799 0.5900 +4669 138050 0.9980 +4669 157570 0.5900 +4669 203328 0.4210 +4669 222068 0.7900 +4669 285362 0.5910 +4669 339977 0.4580 +4670 4686 0.8070 +4670 4691 0.6440 +4670 4706 0.4360 +4670 4799 0.5210 +4670 4809 0.4900 +4670 4841 0.9130 +4670 4869 0.5060 +4670 4904 0.7820 +4670 5036 0.5600 +4670 5093 0.9210 +4670 5094 0.7730 +4670 5356 0.4560 +4670 5411 0.4420 +4670 5431 0.6050 +4670 5432 0.6820 +4670 5433 0.5880 +4670 5434 0.5920 +4670 5435 0.6210 +4670 5436 0.7070 +4670 5437 0.6190 +4670 5438 0.5890 +4670 5439 0.5550 +4670 5440 0.6160 +4670 5441 0.6610 +4670 5683 0.6020 +4670 5688 0.5260 +4670 5691 0.4950 +4670 5709 0.4540 +4670 5725 0.9810 +4670 5903 0.4200 +4670 5928 0.4170 +4670 5931 0.5190 +4670 5936 0.7340 +4670 5976 0.4330 +4670 6006 0.4790 +4670 6047 0.5310 +4670 6128 0.4510 +4670 6136 0.4350 +4670 6143 0.4610 +4670 6155 0.4180 +4670 6181 0.4110 +4670 6188 0.6140 +4670 6193 0.4390 +4670 6202 0.4120 +4670 6205 0.4440 +4670 6217 0.4760 +4670 6224 0.4970 +4670 6227 0.4680 +4670 6228 0.4240 +4670 6234 0.4170 +4670 6294 0.6920 +4670 6421 0.9680 +4670 6426 0.9560 +4670 6427 0.8690 +4670 6428 0.9560 +4670 6429 0.6300 +4670 6430 0.7890 +4670 6431 0.8360 +4670 6432 0.9020 +4670 6434 0.9340 +4670 6625 0.8550 +4670 6626 0.7070 +4670 6627 0.7260 +4670 6628 0.6570 +4670 6629 0.4640 +4670 6631 0.6610 +4670 6632 0.7770 +4670 6633 0.8430 +4670 6634 0.8650 +4670 6635 0.8210 +4670 6636 0.8270 +4670 6637 0.8130 +4670 6651 0.4440 +4670 6732 0.6390 +4670 6733 0.6330 +4670 6741 0.7000 +4670 6749 0.6100 +4670 6780 0.4410 +4670 6874 0.4500 +4670 6936 0.5540 +4670 7072 0.6990 +4670 7073 0.8090 +4670 7112 0.6170 +4670 7150 0.4830 +4670 7157 0.4370 +4670 7158 0.4520 +4670 7175 0.4200 +4670 7307 0.9460 +4670 7341 0.4870 +4670 7458 0.5780 +4670 7514 0.5450 +4670 7520 0.5330 +4670 7536 0.6380 +4670 7555 0.4160 +4670 7756 0.9950 +4670 7916 0.4600 +4670 7919 0.7840 +4670 8106 0.6740 +4670 8148 0.8150 +4670 8175 0.4320 +4670 8189 0.4480 +4670 8241 0.6360 +4670 8531 0.5560 +4670 8570 0.7930 +4670 8607 0.4590 +4670 8683 0.7410 +4670 8880 0.7250 +4670 8939 0.5970 +4670 9092 0.4620 +4670 9172 0.6690 +4670 9184 0.4360 +4670 9188 0.6910 +4670 9219 0.5180 +4670 9221 0.5280 +4670 9295 0.6950 +4670 9343 0.7230 +4670 9410 0.5580 +4670 9444 0.4630 +4670 9584 0.7640 +4670 9667 0.5220 +4670 9774 0.5480 +4670 9775 0.8820 +4670 9782 0.9620 +4670 9879 0.4150 +4670 9908 0.4080 +4670 9939 0.4880 +4670 9967 0.6490 +4670 9987 0.9470 +4670 10142 0.4500 +4670 10146 0.6540 +4670 10147 0.6460 +4670 10155 0.4730 +4670 10181 0.4420 +4670 10189 0.8240 +4670 10197 0.5340 +4670 10212 0.5430 +4670 10236 0.9700 +4670 10250 0.6540 +4670 10284 0.5030 +4670 10291 0.6480 +4670 10432 0.8530 +4670 10469 0.6080 +4670 10482 0.4520 +4670 10492 0.8760 +4670 10521 0.9010 +4670 10523 0.5040 +4670 10528 0.6360 +4670 10594 0.7490 +4670 10614 0.5980 +4670 10642 0.4940 +4670 10643 0.6430 +4670 10644 0.4230 +4670 10657 0.9340 +4670 10658 0.5860 +4670 10659 0.5570 +4670 10664 0.4690 +4670 10694 0.4620 +4670 10772 0.7890 +4670 10898 0.5440 +4670 10915 0.7100 +4670 10921 0.6500 +4670 10929 0.6140 +4670 10933 0.4300 +4670 10946 0.6110 +4670 10949 0.9270 +4670 10992 0.7360 +4670 11051 0.7540 +4670 11052 0.8460 +4670 11100 0.7750 +4670 11140 0.6440 +4670 11160 0.6160 +4670 11198 0.4020 +4670 11338 0.9450 +4670 22826 0.4600 +4670 22827 0.6190 +4670 22913 0.8010 +4670 22916 0.6710 +4670 22985 0.4460 +4670 23016 0.4750 +4670 23020 0.6190 +4670 23070 0.4080 +4670 23160 0.4550 +4670 23244 0.4330 +4670 23350 0.6350 +4670 23404 0.4660 +4670 23405 0.4730 +4670 23435 0.9010 +4670 23450 0.7830 +4670 23451 0.7700 +4670 23515 0.4550 +4670 23524 0.6970 +4670 23534 0.4520 +4670 23543 0.8060 +4670 23586 0.4920 +4670 24144 0.6190 +4670 24148 0.5370 +4670 25766 0.4220 +4670 25949 0.5890 +4670 26097 0.6850 +4670 26121 0.4480 +4670 26523 0.4370 +4670 26528 0.4240 +4670 26576 0.4910 +4670 26986 0.4300 +4670 27044 0.4340 +4670 27258 0.5090 +4670 27288 0.5440 +4670 27316 0.9790 +4670 27339 0.6910 +4670 29796 0.4230 +4670 29894 0.7190 +4670 29896 0.7900 +4670 50804 0.6820 +4670 51096 0.4430 +4670 51340 0.5850 +4670 51493 0.7600 +4670 51574 0.5270 +4670 51585 0.4370 +4670 51593 0.8550 +4670 51602 0.5310 +4670 51631 0.7680 +4670 51637 0.4550 +4670 51639 0.5400 +4670 51692 0.5300 +4670 51747 0.4380 +4670 53938 0.4940 +4670 53981 0.5010 +4670 54542 0.5100 +4670 54606 0.6050 +4670 54715 0.6070 +4670 54845 0.9300 +4670 55015 0.4520 +4670 55110 0.4890 +4670 55234 0.6340 +4670 55269 0.5200 +4670 55280 0.5490 +4670 55379 0.5770 +4670 55660 0.4210 +4670 56259 0.7880 +4670 56915 0.5810 +4670 56949 0.5850 +4670 57187 0.5370 +4670 57459 0.4360 +4670 57461 0.5430 +4670 57466 0.4660 +4670 57819 0.6710 +4670 58155 0.4230 +4670 58517 0.6780 +4670 64135 0.4730 +4670 64215 0.4370 +4670 79084 0.6820 +4670 79727 0.4060 +4670 79728 0.4990 +4670 79811 0.4580 +4670 79869 0.5390 +4670 80004 0.9140 +4670 80218 0.4040 +4670 80335 0.5760 +4670 81576 0.5450 +4670 81608 0.6460 +4670 83443 0.5600 +4670 83759 0.4250 +4670 84186 0.5420 +4670 84324 0.4760 +4670 84844 0.5610 +4670 84991 0.5740 +4670 92906 0.4490 +4670 124245 0.4350 +4670 135295 0.4860 +4670 143884 0.5510 +4670 149041 0.5140 +4670 151903 0.5540 +4670 192670 0.4140 +4670 202559 0.4800 +4670 220988 0.9350 +4670 221092 0.6200 +4670 222229 0.5060 +4670 253260 0.4690 +4670 284695 0.6800 +4670 337867 0.6280 +4670 728378 0.4630 +4670 100534599 0.5690 +4670 100996928 0.6710 +4670 101060301 0.4050 +4671 4741 0.4220 +4671 6050 0.5330 +4671 6093 0.4090 +4671 6606 0.8760 +4671 6607 0.8710 +4671 6772 0.5210 +4671 6790 0.5460 +4671 6795 0.5370 +4671 6885 0.5900 +4671 7011 0.7020 +4671 7096 0.4040 +4671 7097 0.4570 +4671 7099 0.5620 +4671 7100 0.5620 +4671 7186 0.5080 +4671 7984 0.4170 +4671 8293 0.8720 +4671 8717 0.6330 +4671 8737 0.6220 +4671 8767 0.5040 +4671 8772 0.4100 +4671 8837 0.4730 +4671 9212 0.5640 +4671 9371 0.4200 +4671 9447 0.9940 +4671 9747 0.4080 +4671 9973 0.4240 +4671 10392 0.6610 +4671 10454 0.6660 +4671 22861 0.9860 +4671 22900 0.7710 +4671 23581 0.4520 +4671 23586 0.4130 +4671 24145 0.4550 +4671 25897 0.4200 +4671 27429 0.4420 +4671 29108 0.9570 +4671 54739 0.5370 +4671 56919 0.6080 +4671 56940 0.5490 +4671 57448 0.4720 +4671 58484 0.9990 +4671 64127 0.6200 +4671 79671 0.5540 +4671 79792 0.8140 +4671 84166 0.5950 +4671 90678 0.5640 +4671 90865 0.4010 +4671 91662 0.7490 +4671 114548 0.9850 +4671 126204 0.4560 +4671 126206 0.4440 +4671 140609 0.4540 +4671 147945 0.9510 +4671 152138 0.4770 +4671 171389 0.9580 +4671 197358 0.6270 +4671 199713 0.7860 +4671 204801 0.4460 +4671 260434 0.6780 +4671 284110 0.4430 +4671 338321 0.6740 +4671 338322 0.5160 +4671 653361 0.4250 +4671 728340 0.7030 +4671 100506658 0.4040 +4673 4676 0.9270 +4673 4678 0.4360 +4673 4691 0.7180 +4673 4736 0.6190 +4673 4869 0.8270 +4673 5501 0.4290 +4673 5928 0.5020 +4673 6125 0.5960 +4673 6128 0.4850 +4673 6133 0.4090 +4673 6136 0.4010 +4673 6138 0.5440 +4673 6139 0.4600 +4673 6147 0.5550 +4673 6152 0.5950 +4673 6160 0.4090 +4673 6170 0.4860 +4673 6173 0.4700 +4673 6188 0.4600 +4673 6189 0.4570 +4673 6191 0.4580 +4673 6194 0.7040 +4673 6418 0.4640 +4673 6613 0.4720 +4673 6749 0.5690 +4673 7186 0.4340 +4673 8329 0.5590 +4673 8331 0.5910 +4673 8336 0.4700 +4673 8337 0.5680 +4673 8338 0.5840 +4673 8349 0.7590 +4673 8350 0.4070 +4673 8361 0.5880 +4673 8467 0.4080 +4673 8525 0.6000 +4673 8667 0.4260 +4673 8969 0.4160 +4673 9024 0.4420 +4673 9364 0.4180 +4673 9401 0.5100 +4673 9531 0.5140 +4673 9555 0.5540 +4673 9584 0.5000 +4673 9700 0.4010 +4673 10006 0.4380 +4673 10010 0.4510 +4673 10152 0.4740 +4673 10155 0.4790 +4673 10189 0.5010 +4673 10209 0.4010 +4673 10527 0.4800 +4673 10916 0.8460 +4673 11100 0.5270 +4673 11198 0.5400 +4673 11335 0.4010 +4673 23160 0.5310 +4673 23481 0.5710 +4673 27316 0.6130 +4673 29789 0.4220 +4673 50809 0.4740 +4673 51547 0.4140 +4673 55153 0.7070 +4673 55188 0.5970 +4673 55294 0.5100 +4673 55705 0.6030 +4673 55766 0.6250 +4673 63893 0.9730 +4673 81611 0.5870 +4673 84446 0.4420 +4673 91754 0.4480 +4673 94239 0.6460 +4673 116832 0.4400 +4673 144983 0.4060 +4673 149345 0.5190 +4673 196528 0.4100 +4673 255626 0.4760 +4673 259266 0.4340 +4673 266812 0.7930 +4673 317772 0.5420 +4673 474381 0.4010 +4673 474382 0.4070 +4673 653604 0.4910 +4674 4675 0.8170 +4674 5502 0.4570 +4674 6170 0.4380 +4674 6194 0.5820 +4674 6495 0.4060 +4674 7259 0.4140 +4674 9024 0.4920 +4674 23270 0.4080 +4674 55153 0.5220 +4674 55705 0.5080 +4674 64061 0.4300 +4674 84446 0.4820 +4674 94239 0.5940 +4674 116832 0.4340 +4674 149345 0.5210 +4674 266812 0.6730 +4674 474381 0.4010 +4675 5502 0.4490 +4675 6000 0.4560 +4675 6170 0.4430 +4675 6194 0.5820 +4675 7259 0.4420 +4675 8228 0.4690 +4675 9024 0.4700 +4675 23270 0.5720 +4675 55153 0.4630 +4675 55705 0.4760 +4675 55859 0.5320 +4675 84446 0.5330 +4675 84838 0.4350 +4675 94239 0.5640 +4675 116832 0.4350 +4675 149345 0.4900 +4675 171482 0.4560 +4676 4691 0.6020 +4676 4869 0.7510 +4676 5002 0.6700 +4676 5496 0.4550 +4676 6150 0.6900 +4676 6170 0.4350 +4676 6194 0.5920 +4676 6874 0.4970 +4676 7051 0.4490 +4676 7262 0.8130 +4676 7761 0.5900 +4676 7762 0.5900 +4676 8290 0.4510 +4676 8329 0.4910 +4676 8337 0.4760 +4676 8338 0.6120 +4676 8349 0.7990 +4676 8361 0.4060 +4676 8525 0.7270 +4676 8661 0.5250 +4676 8663 0.5260 +4676 8697 0.6410 +4676 8788 0.5150 +4676 8881 0.6170 +4676 9024 0.4470 +4676 9401 0.5140 +4676 10078 0.6030 +4676 10393 0.5550 +4676 10527 0.4500 +4676 10664 0.4280 +4676 10916 0.8010 +4676 23481 0.7300 +4676 51434 0.6860 +4676 55153 0.5020 +4676 55705 0.5170 +4676 64061 0.4230 +4676 64324 0.5430 +4676 64682 0.6060 +4676 83860 0.6290 +4676 84446 0.4470 +4676 94239 0.5910 +4676 114879 0.6080 +4676 116832 0.4350 +4676 126961 0.4510 +4676 149345 0.5310 +4676 150684 0.4080 +4676 222229 0.4690 +4676 255626 0.4260 +4676 266812 0.7460 +4676 653604 0.4270 +4676 100130301 0.4320 +4677 5188 0.9960 +4677 5707 0.4220 +4677 5718 0.4770 +4677 5859 0.8870 +4677 5917 0.9090 +4677 6125 0.4450 +4677 6193 0.4610 +4677 6209 0.4420 +4677 6301 0.8430 +4677 6310 0.5180 +4677 6897 0.9240 +4677 6950 0.4630 +4677 7407 0.8370 +4677 7453 0.8400 +4677 7965 0.6000 +4677 8565 0.9660 +4677 8661 0.4460 +4677 8894 0.4480 +4677 9097 0.4520 +4677 9255 0.6920 +4677 9343 0.4120 +4677 9352 0.5310 +4677 9521 0.4620 +4677 9669 0.4440 +4677 10056 0.6830 +4677 10102 0.6220 +4677 10352 0.8370 +4677 10573 0.8460 +4677 10667 0.7580 +4677 10898 0.4140 +4677 11232 0.4720 +4677 23395 0.8480 +4677 23438 0.8330 +4677 25973 0.8760 +4677 51067 0.8570 +4677 51520 0.9540 +4677 51611 0.5260 +4677 54938 0.8140 +4677 55157 0.5400 +4677 55278 0.9760 +4677 55699 0.8890 +4677 55748 0.8560 +4677 57038 0.8430 +4677 57176 0.8030 +4677 57470 0.4670 +4677 57505 0.7910 +4677 57697 0.4480 +4677 79008 0.4880 +4677 79073 0.7300 +4677 79587 0.8290 +4677 79731 0.9210 +4677 79814 0.6780 +4677 80198 0.4720 +4677 80222 0.9010 +4677 85476 0.5490 +4677 92399 0.5050 +4677 92935 0.8670 +4677 123263 0.4220 +4677 123283 0.9020 +4677 124454 0.8750 +4677 127281 0.4440 +4677 142679 0.4280 +4677 158584 0.6320 +4677 220134 0.4150 +4677 283459 0.9570 +4677 374395 0.4370 +4677 440275 0.4100 +4677 548593 0.4880 +4677 101927367 0.4150 +4678 4691 0.4200 +4678 4796 0.4270 +4678 4869 0.7280 +4678 4998 0.5850 +4678 5111 0.6370 +4678 5284 0.4240 +4678 5422 0.5140 +4678 5557 0.5630 +4678 5757 0.4530 +4678 5928 0.9790 +4678 5931 0.9420 +4678 5981 0.4180 +4678 5982 0.4660 +4678 5983 0.4690 +4678 5984 0.5960 +4678 6240 0.5940 +4678 6241 0.5600 +4678 6426 0.5100 +4678 6749 0.6190 +4678 7112 0.5330 +4678 7153 0.4150 +4678 7189 0.4990 +4678 7249 0.4830 +4678 7272 0.4030 +4678 7290 0.5370 +4678 7298 0.5620 +4678 7398 0.4230 +4678 7884 0.9370 +4678 7913 0.4360 +4678 8125 0.4240 +4678 8208 0.7010 +4678 8290 0.9650 +4678 8294 0.9550 +4678 8317 0.4750 +4678 8318 0.5210 +4678 8337 0.7090 +4678 8338 0.7060 +4678 8349 0.7130 +4678 8350 0.9910 +4678 8351 0.9530 +4678 8352 0.9900 +4678 8353 0.9800 +4678 8354 0.9670 +4678 8355 0.9780 +4678 8356 0.9970 +4678 8357 0.9830 +4678 8358 0.9660 +4678 8359 0.9430 +4678 8360 0.9430 +4678 8361 0.9970 +4678 8362 0.9430 +4678 8363 0.9430 +4678 8364 0.9660 +4678 8366 0.9590 +4678 8367 0.9430 +4678 8368 0.9670 +4678 8369 0.8540 +4678 8370 0.9790 +4678 8520 0.9970 +4678 8914 0.4260 +4678 8968 0.9700 +4678 9133 0.4020 +4678 9156 0.4750 +4678 9212 0.5140 +4678 9493 0.4830 +4678 9555 0.4400 +4678 9584 0.4440 +4678 9787 0.4400 +4678 9793 0.4020 +4678 9837 0.5400 +4678 9918 0.4500 +4678 9928 0.5130 +4678 9994 0.4080 +4678 10036 0.5100 +4678 10051 0.4940 +4678 10403 0.5540 +4678 10460 0.4340 +4678 10951 0.4240 +4678 11004 0.5470 +4678 11011 0.4550 +4678 11198 0.7270 +4678 11339 0.5930 +4678 23077 0.7680 +4678 23234 0.4850 +4678 25842 0.9950 +4678 27339 0.4250 +4678 29028 0.4470 +4678 29128 0.4210 +4678 29855 0.4270 +4678 51053 0.5590 +4678 51659 0.5220 +4678 54892 0.5230 +4678 55143 0.4530 +4678 55148 0.7230 +4678 55355 0.4370 +4678 55506 0.5020 +4678 55723 0.9990 +4678 60313 0.4020 +4678 63967 0.4070 +4678 79075 0.5320 +4678 79711 0.7750 +4678 79968 0.4990 +4678 81611 0.4690 +4678 81930 0.4850 +4678 83461 0.4230 +4678 83540 0.5610 +4678 83879 0.5180 +4678 84823 0.4780 +4678 84942 0.6590 +4678 92140 0.6070 +4678 121504 0.9430 +4678 126961 0.9690 +4678 151648 0.4280 +4678 221120 0.4420 +4678 221178 0.4080 +4678 283431 0.4310 +4678 333932 0.9430 +4678 340096 0.5200 +4678 391769 0.5150 +4678 440093 0.9860 +4678 440686 0.8210 +4678 554313 0.9430 +4678 653604 0.9890 +4678 728888 0.4020 +4678 100288332 0.4050 +4680 6590 0.4820 +4680 6947 0.4980 +4680 7033 0.4860 +4680 7329 0.4220 +4680 7594 0.4210 +4680 9607 0.4110 +4680 10071 0.4510 +4680 10158 0.4340 +4680 10321 0.4060 +4680 10551 0.4290 +4680 10562 0.5800 +4680 27128 0.4460 +4680 51079 0.4550 +4680 56667 0.5540 +4680 57578 0.4140 +4680 84868 0.4570 +4680 140453 0.5110 +4680 200958 0.5070 +4680 256356 0.4320 +4680 285175 0.4150 +4680 405754 0.4300 +4680 727897 0.5170 +4680 100133941 0.4170 +4681 6367 0.5040 +4681 6714 0.4150 +4681 7133 0.5480 +4681 8200 0.9230 +4681 9212 0.8280 +4681 25928 0.4440 +4681 55143 0.4470 +4681 151449 0.9080 +4681 353500 0.9060 +4681 392255 0.9050 +4682 4728 0.4160 +4682 5424 0.6980 +4682 5471 0.5630 +4682 6059 0.6010 +4682 7317 0.4320 +4682 8890 0.5030 +4682 9054 0.7980 +4682 9150 0.4010 +4682 9391 0.9690 +4682 10101 0.9220 +4682 10539 0.6760 +4682 10797 0.4240 +4682 10946 0.5300 +4682 11011 0.4340 +4682 11019 0.5540 +4682 23479 0.8200 +4682 25797 0.6840 +4682 25904 0.5050 +4682 26502 0.5680 +4682 27158 0.8830 +4682 27247 0.7370 +4682 51027 0.4370 +4682 51218 0.5240 +4682 51406 0.5340 +4682 51647 0.8940 +4682 51750 0.6560 +4682 54995 0.5370 +4682 55253 0.4690 +4682 55572 0.8310 +4682 55968 0.6320 +4682 57002 0.6340 +4682 57019 0.9670 +4682 57128 0.7330 +4682 63906 0.4080 +4682 64210 0.9300 +4682 64419 0.4650 +4682 64428 0.9590 +4682 79009 0.4100 +4682 79089 0.4040 +4682 79591 0.4660 +4682 79882 0.4820 +4682 80153 0.4970 +4682 81689 0.6350 +4682 83473 0.4370 +4682 83607 0.4660 +4682 83990 0.6660 +4682 84172 0.4040 +4682 84191 0.7910 +4682 84950 0.4860 +4682 90324 0.4930 +4682 91949 0.4370 +4682 112812 0.4970 +4682 122961 0.6240 +4682 150274 0.5850 +4682 200205 0.6330 +4682 220064 0.5600 +4682 388962 0.4270 +4682 552900 0.4120 +4682 654483 0.4320 +4683 4913 0.4170 +4683 5111 0.4580 +4683 5395 0.4960 +4683 5424 0.5490 +4683 5425 0.4400 +4683 5426 0.5560 +4683 5427 0.4190 +4683 5429 0.4950 +4683 5536 0.4090 +4683 5591 0.9180 +4683 5599 0.5330 +4683 5810 0.6590 +4683 5883 0.7270 +4683 5884 0.8540 +4683 5888 0.9250 +4683 5889 0.8160 +4683 5890 0.7290 +4683 5892 0.7920 +4683 5893 0.6910 +4683 5932 0.9990 +4683 5981 0.6130 +4683 5982 0.8490 +4683 5983 0.5630 +4683 5984 0.9060 +4683 5985 0.5600 +4683 6047 0.4110 +4683 6117 0.7500 +4683 6118 0.6740 +4683 6119 0.5780 +4683 6233 0.5480 +4683 6502 0.5770 +4683 6613 0.6460 +4683 6742 0.7230 +4683 6949 0.7490 +4683 7013 0.6830 +4683 7014 0.9930 +4683 7150 0.4980 +4683 7156 0.6470 +4683 7157 0.7630 +4683 7158 0.9230 +4683 7311 0.4990 +4683 7314 0.5200 +4683 7316 0.5440 +4683 7329 0.5340 +4683 7334 0.7020 +4683 7336 0.5340 +4683 7341 0.5510 +4683 7468 0.5320 +4683 7486 0.9270 +4683 7515 0.7490 +4683 7516 0.7070 +4683 7517 0.7940 +4683 7518 0.6750 +4683 7520 0.8890 +4683 7979 0.5960 +4683 8243 0.6510 +4683 8290 0.6830 +4683 8314 0.5690 +4683 8318 0.5570 +4683 8331 0.5130 +4683 8334 0.5210 +4683 8337 0.5900 +4683 8338 0.5860 +4683 8340 0.5090 +4683 8341 0.5090 +4683 8342 0.5090 +4683 8345 0.5100 +4683 8347 0.5080 +4683 8348 0.5170 +4683 8349 0.6090 +4683 8361 0.6640 +4683 8655 0.4020 +4683 8900 0.5790 +4683 8924 0.5110 +4683 8970 0.5090 +4683 9025 0.9160 +4683 9156 0.8680 +4683 9400 0.5020 +4683 9401 0.5290 +4683 9577 0.5920 +4683 9656 0.9940 +4683 9682 0.5200 +4683 9874 0.4410 +4683 10038 0.6260 +4683 10054 0.4250 +4683 10111 0.9990 +4683 10524 0.6950 +4683 10635 0.5130 +4683 10714 0.5110 +4683 10721 0.6130 +4683 10849 0.5400 +4683 11073 0.9220 +4683 11200 0.9350 +4683 11201 0.4520 +4683 22976 0.7550 +4683 23030 0.5080 +4683 23300 0.4780 +4683 23411 0.6260 +4683 23514 0.5640 +4683 23626 0.6430 +4683 23635 0.7610 +4683 25885 0.4930 +4683 25913 0.5990 +4683 26277 0.5540 +4683 29086 0.6540 +4683 50484 0.4340 +4683 51032 0.4720 +4683 51426 0.4550 +4683 51588 0.5140 +4683 51720 0.7680 +4683 51750 0.5260 +4683 54107 0.4400 +4683 54145 0.5090 +4683 54386 0.8960 +4683 54973 0.4590 +4683 55183 0.6320 +4683 55215 0.5080 +4683 55766 0.5130 +4683 55775 0.4610 +4683 56655 0.4240 +4683 56852 0.7770 +4683 57379 0.4160 +4683 57697 0.5610 +4683 57804 0.4100 +4683 58493 0.7660 +4683 64421 0.8420 +4683 65123 0.7580 +4683 79035 0.4040 +4683 79109 0.5480 +4683 79184 0.7100 +4683 79648 0.4360 +4683 79728 0.8010 +4683 79840 0.6770 +4683 80010 0.7810 +4683 80198 0.7280 +4683 83695 0.4990 +4683 83990 0.9980 +4683 84126 0.8970 +4683 84142 0.7730 +4683 84464 0.7030 +4683 85236 0.5080 +4683 94239 0.5340 +4683 116028 0.5770 +4683 128312 0.5090 +4683 144715 0.6450 +4683 146956 0.5450 +4683 165918 0.7870 +4683 197342 0.5040 +4683 203259 0.5300 +4683 253260 0.5640 +4683 255626 0.5080 +4683 348654 0.6440 +4683 474382 0.5130 +4683 548593 0.5310 +4684 4685 0.9060 +4684 4747 0.4580 +4684 4760 0.4990 +4684 4783 0.4270 +4684 4803 0.4410 +4684 4804 0.5280 +4684 4851 0.4560 +4684 4869 0.4010 +4684 4893 0.6890 +4684 4897 0.6260 +4684 4902 0.5200 +4684 4907 0.7340 +4684 4915 0.6930 +4684 5077 0.4140 +4684 5079 0.5820 +4684 5080 0.5350 +4684 5081 0.5300 +4684 5125 0.6140 +4684 5133 0.5770 +4684 5159 0.4310 +4684 5175 0.6070 +4684 5241 0.4350 +4684 5335 0.4100 +4684 5420 0.4650 +4684 5460 0.4670 +4684 5551 0.9250 +4684 5579 0.4250 +4684 5621 0.9950 +4684 5623 0.5050 +4684 5644 0.4100 +4684 5747 0.5600 +4684 5787 0.5900 +4684 5788 0.8750 +4684 5803 0.8950 +4684 5817 0.6240 +4684 5818 0.5820 +4684 5819 0.4790 +4684 5979 0.8170 +4684 6285 0.4610 +4684 6331 0.4160 +4684 6347 0.5180 +4684 6348 0.5190 +4684 6351 0.5770 +4684 6382 0.8420 +4684 6383 0.4690 +4684 6387 0.6950 +4684 6402 0.7940 +4684 6469 0.4670 +4684 6472 0.5910 +4684 6504 0.5620 +4684 6507 0.5800 +4684 6615 0.4920 +4684 6616 0.4760 +4684 6654 0.4380 +4684 6656 0.4270 +4684 6657 0.5490 +4684 6663 0.4720 +4684 6693 0.6430 +4684 6708 0.4270 +4684 6709 0.4810 +4684 6710 0.5880 +4684 6711 0.4430 +4684 6712 0.4220 +4684 6714 0.6010 +4684 6750 0.4550 +4684 6772 0.7090 +4684 6774 0.6250 +4684 6776 0.4360 +4684 6777 0.4890 +4684 6853 0.4160 +4684 6855 0.8990 +4684 6900 0.9500 +4684 7037 0.7200 +4684 7038 0.4350 +4684 7040 0.4680 +4684 7056 0.5720 +4684 7070 0.7770 +4684 7072 0.7270 +4684 7076 0.5260 +4684 7080 0.6320 +4684 7097 0.4310 +4684 7098 0.4190 +4684 7099 0.4630 +4684 7124 0.7010 +4684 7157 0.5810 +4684 7293 0.4330 +4684 7345 0.6880 +4684 7412 0.8020 +4684 7430 0.6070 +4684 7431 0.4430 +4684 7490 0.5710 +4684 7849 0.4460 +4684 7852 0.6020 +4684 7903 0.9540 +4684 8074 0.4200 +4684 8115 0.4330 +4684 8128 0.9640 +4684 8320 0.7550 +4684 8455 0.4380 +4684 8519 0.4710 +4684 8744 0.5060 +4684 8829 0.4790 +4684 8842 0.5890 +4684 8911 0.5340 +4684 8912 0.5470 +4684 8913 0.5520 +4684 9034 0.7170 +4684 9048 0.5160 +4684 9159 0.6060 +4684 9308 0.5830 +4684 9332 0.5850 +4684 9369 0.5380 +4684 9378 0.4160 +4684 9423 0.5580 +4684 9436 0.8930 +4684 9437 0.9030 +4684 9476 0.5850 +4684 9486 0.4830 +4684 9623 0.4310 +4684 10004 0.6470 +4684 10020 0.4910 +4684 10215 0.5060 +4684 10219 0.5510 +4684 10225 0.4200 +4684 10381 0.4360 +4684 10409 0.5020 +4684 10421 0.5280 +4684 10578 0.6910 +4684 10580 0.4180 +4684 10663 0.4980 +4684 10666 0.7010 +4684 10681 0.4220 +4684 10763 0.6650 +4684 10803 0.5710 +4684 10859 0.6410 +4684 10894 0.4160 +4684 10963 0.5170 +4684 11126 0.6550 +4684 11251 0.5740 +4684 22807 0.5010 +4684 22829 0.4670 +4684 22871 0.6470 +4684 22914 0.8300 +4684 22918 0.4450 +4684 23316 0.4970 +4684 23705 0.6630 +4684 26047 0.5520 +4684 27036 0.5220 +4684 27087 0.9270 +4684 27180 0.7520 +4684 27181 0.5840 +4684 29119 0.4470 +4684 29126 0.6580 +4684 29799 0.4160 +4684 29851 0.4850 +4684 30009 0.7360 +4684 30816 0.4130 +4684 30835 0.4750 +4684 50616 0.5070 +4684 50943 0.7080 +4684 51046 0.8000 +4684 51284 0.4630 +4684 51332 0.4220 +4684 51348 0.6180 +4684 51744 0.5240 +4684 54106 0.4530 +4684 54413 0.5800 +4684 54474 0.7230 +4684 54970 0.5520 +4684 55201 0.4860 +4684 57211 0.4710 +4684 57502 0.5120 +4684 57555 0.5090 +4684 57731 0.4790 +4684 57823 0.4600 +4684 57863 0.4380 +4684 59067 0.4630 +4684 59272 0.5210 +4684 63827 0.4200 +4684 64096 0.4790 +4684 79465 0.5430 +4684 79923 0.4420 +4684 80328 0.5760 +4684 80329 0.6050 +4684 80380 0.4330 +4684 84662 0.4790 +4684 84684 0.4650 +4684 84868 0.6040 +4684 84894 0.4150 +4684 85360 0.4600 +4684 85451 0.5300 +4684 114132 0.5150 +4684 114836 0.4040 +4684 115653 0.7110 +4684 131873 0.5510 +4684 136541 0.4100 +4684 146713 0.5990 +4684 146722 0.4940 +4684 152330 0.5140 +4684 163747 0.4010 +4684 170482 0.6840 +4684 200185 0.4070 +4684 201633 0.5700 +4684 255239 0.4620 +4684 259197 0.9100 +4684 284217 0.4450 +4684 374383 0.4380 +4684 374569 0.5020 +4684 375790 0.9270 +4684 400566 0.7020 +4684 100133941 0.5710 +4684 100526664 0.5640 +4684 102723407 0.5820 +4685 5621 0.9380 +4685 5802 0.4320 +4685 7903 0.4370 +4685 8128 0.4240 +4685 9734 0.4570 +4685 10950 0.4540 +4685 140578 0.4540 +4685 151531 0.4230 +4685 347731 0.4420 +4686 4691 0.5170 +4686 4848 0.6060 +4686 4904 0.7540 +4686 4927 0.6990 +4686 4928 0.7080 +4686 5073 0.5840 +4686 5356 0.8930 +4686 5394 0.6920 +4686 5411 0.5580 +4686 5431 0.8090 +4686 5432 0.6350 +4686 5433 0.5170 +4686 5434 0.5330 +4686 5435 0.5000 +4686 5436 0.5480 +4686 5437 0.5170 +4686 5438 0.5230 +4686 5439 0.5180 +4686 5440 0.5040 +4686 5441 0.5130 +4686 5496 0.4150 +4686 5515 0.5290 +4686 5518 0.5280 +4686 5520 0.5080 +4686 5725 0.7050 +4686 5901 0.9450 +4686 5903 0.6510 +4686 5905 0.7040 +4686 5936 0.4650 +4686 5976 0.9800 +4686 6059 0.5030 +4686 6135 0.5590 +4686 6194 0.4280 +4686 6198 0.4330 +4686 6294 0.4380 +4686 6396 0.5240 +4686 6426 0.9810 +4686 6427 0.8160 +4686 6428 0.7270 +4686 6429 0.8090 +4686 6430 0.8270 +4686 6431 0.8570 +4686 6432 0.7500 +4686 6606 0.6300 +4686 6625 0.9580 +4686 6626 0.7910 +4686 6627 0.9400 +4686 6628 0.9800 +4686 6629 0.8880 +4686 6631 0.9890 +4686 6632 0.9930 +4686 6633 0.9970 +4686 6634 0.9860 +4686 6635 0.9900 +4686 6636 0.9910 +4686 6637 0.9900 +4686 6638 0.9660 +4686 6730 0.4190 +4686 6732 0.4650 +4686 6749 0.7130 +4686 6780 0.5900 +4686 6827 0.7860 +4686 6829 0.8190 +4686 6830 0.7400 +4686 6873 0.5070 +4686 6917 0.5450 +4686 6921 0.5350 +4686 6923 0.5070 +4686 6924 0.5170 +4686 6936 0.5100 +4686 7072 0.7380 +4686 7073 0.7230 +4686 7175 0.6240 +4686 7307 0.6400 +4686 7458 0.4200 +4686 7469 0.8320 +4686 7507 0.4470 +4686 7514 0.9570 +4686 7536 0.6240 +4686 7884 0.9540 +4686 7919 0.9680 +4686 7936 0.9970 +4686 8021 0.7550 +4686 8086 0.5130 +4686 8106 0.9780 +4686 8148 0.4540 +4686 8175 0.9300 +4686 8178 0.5300 +4686 8189 0.7030 +4686 8233 0.5340 +4686 8318 0.4080 +4686 8449 0.5360 +4686 8450 0.4090 +4686 8467 0.4010 +4686 8480 0.8050 +4686 8487 0.7060 +4686 8539 0.5340 +4686 8563 0.9060 +4686 8570 0.4790 +4686 8621 0.4740 +4686 8662 0.6720 +4686 8666 0.4640 +4686 8672 0.7010 +4686 8683 0.8750 +4686 8731 0.9390 +4686 8732 0.7540 +4686 8761 0.5150 +4686 8812 0.7570 +4686 8888 0.6230 +4686 8896 0.8080 +4686 9044 0.5700 +4686 9092 0.9720 +4686 9150 0.5580 +4686 9188 0.5750 +4686 9295 0.5430 +4686 9343 0.9660 +4686 9410 0.8670 +4686 9416 0.6820 +4686 9440 0.4470 +4686 9470 0.9350 +4686 9576 0.4820 +4686 9584 0.7000 +4686 9589 0.5260 +4686 9631 0.6240 +4686 9646 0.5580 +4686 9669 0.4430 +4686 9688 0.5960 +4686 9704 0.4600 +4686 9716 0.9370 +4686 9775 0.9400 +4686 9785 0.9210 +4686 9810 0.6700 +4686 9811 0.9630 +4686 9818 0.6270 +4686 9877 0.6780 +4686 9879 0.7330 +4686 9883 0.5580 +4686 9887 0.8300 +4686 9939 0.8260 +4686 9972 0.7690 +4686 9984 0.8420 +4686 9987 0.5710 +4686 10128 0.5430 +4686 10146 0.5340 +4686 10179 0.6570 +4686 10189 0.9980 +4686 10212 0.7000 +4686 10236 0.4290 +4686 10250 0.9690 +4686 10262 0.8570 +4686 10291 0.9490 +4686 10419 0.4010 +4686 10482 0.9170 +4686 10492 0.4730 +4686 10521 0.4580 +4686 10523 0.4470 +4686 10541 0.4340 +4686 10569 0.6170 +4686 10594 0.9350 +4686 10605 0.7540 +4686 10713 0.4500 +4686 10762 0.7580 +4686 10767 0.4850 +4686 10898 0.5210 +4686 10914 0.9030 +4686 10915 0.8600 +4686 10921 0.8000 +4686 10946 0.9290 +4686 10949 0.6470 +4686 10978 0.6120 +4686 10992 0.9220 +4686 11051 0.7090 +4686 11052 0.8180 +4686 11066 0.8270 +4686 11097 0.6190 +4686 11157 0.8290 +4686 11196 0.4680 +4686 11198 0.7350 +4686 11218 0.8000 +4686 11260 0.8720 +4686 11273 0.4270 +4686 11338 0.8800 +4686 22794 0.8700 +4686 22803 0.6630 +4686 22827 0.4300 +4686 22828 0.6810 +4686 22894 0.6210 +4686 22907 0.4160 +4686 22916 0.9990 +4686 22938 0.9100 +4686 22985 0.6550 +4686 23019 0.4150 +4686 23020 0.9300 +4686 23049 0.6960 +4686 23064 0.5140 +4686 23091 0.5550 +4686 23165 0.6430 +4686 23168 0.5920 +4686 23191 0.7260 +4686 23225 0.5030 +4686 23279 0.7960 +4686 23283 0.6980 +4686 23293 0.8470 +4686 23367 0.4730 +4686 23381 0.8660 +4686 23405 0.4750 +4686 23435 0.4410 +4686 23450 0.9580 +4686 23451 0.9420 +4686 23511 0.5890 +4686 23517 0.9130 +4686 23524 0.5050 +4686 23543 0.6080 +4686 23633 0.7230 +4686 23636 0.6080 +4686 23658 0.8660 +4686 24144 0.6420 +4686 24148 0.5310 +4686 24149 0.5700 +4686 25766 0.8190 +4686 25804 0.9170 +4686 25888 0.5600 +4686 25904 0.4620 +4686 25920 0.9590 +4686 25929 0.8430 +4686 26009 0.4500 +4686 26019 0.9310 +4686 26097 0.6490 +4686 26135 0.4020 +4686 26523 0.5490 +4686 26986 0.9550 +4686 27067 0.4180 +4686 27125 0.5640 +4686 27161 0.9500 +4686 27238 0.4850 +4686 27250 0.5320 +4686 27258 0.8240 +4686 27286 0.4060 +4686 27316 0.5020 +4686 27339 0.6850 +4686 29101 0.5320 +4686 29102 0.4830 +4686 29107 0.4870 +4686 29889 0.5800 +4686 29894 0.7450 +4686 29904 0.5370 +4686 50628 0.6770 +4686 51010 0.5780 +4686 51213 0.5340 +4686 51224 0.4990 +4686 51322 0.5570 +4686 51340 0.4980 +4686 51362 0.9780 +4686 51497 0.9460 +4686 51503 0.8070 +4686 51574 0.6850 +4686 51585 0.7950 +4686 51593 0.9990 +4686 51631 0.8340 +4686 51639 0.8490 +4686 51690 0.8370 +4686 51691 0.8910 +4686 51692 0.7750 +4686 51729 0.8760 +4686 51747 0.6400 +4686 51755 0.5000 +4686 51808 0.9920 +4686 53371 0.5910 +4686 53981 0.7220 +4686 54439 0.5350 +4686 54464 0.5990 +4686 54505 0.4760 +4686 54512 0.4270 +4686 54623 0.6390 +4686 54845 0.4990 +4686 54952 0.7700 +4686 54960 0.5560 +4686 55015 0.8750 +4686 55110 0.8750 +4686 55181 0.5210 +4686 55339 0.5710 +4686 55374 0.4820 +4686 55421 0.9960 +4686 55596 0.6730 +4686 55629 0.6780 +4686 55660 0.7420 +4686 55677 0.6740 +4686 55692 0.9000 +4686 55696 0.8080 +4686 55706 0.5630 +4686 55746 0.6950 +4686 55795 0.4180 +4686 55802 0.7150 +4686 55832 0.5340 +4686 55840 0.5000 +4686 55954 0.8290 +4686 56006 0.5830 +4686 56254 0.4210 +4686 56257 0.4100 +4686 56339 0.8540 +4686 56903 0.4140 +4686 56949 0.5100 +4686 57122 0.6810 +4686 57187 0.9660 +4686 57409 0.5470 +4686 57466 0.6350 +4686 57510 0.5810 +4686 57703 0.4210 +4686 57721 0.5320 +4686 57819 0.8620 +4686 58517 0.9970 +4686 59286 0.8020 +4686 64221 0.5150 +4686 64895 0.4630 +4686 65109 0.9340 +4686 65110 0.9090 +4686 79023 0.5400 +4686 79228 0.7780 +4686 79446 0.8430 +4686 79577 0.6990 +4686 79618 0.4500 +4686 79696 0.5450 +4686 79707 0.8240 +4686 79753 0.9230 +4686 79760 0.5220 +4686 79833 0.6010 +4686 79869 0.7540 +4686 79882 0.6150 +4686 79902 0.5790 +4686 80004 0.4990 +4686 80018 0.4580 +4686 80145 0.8720 +4686 80349 0.5610 +4686 81608 0.6100 +4686 81892 0.4190 +4686 81929 0.5930 +4686 83443 0.8110 +4686 83640 0.9030 +4686 84186 0.5890 +4686 84248 0.7200 +4686 84271 0.9440 +4686 84305 0.4310 +4686 84316 0.6760 +4686 84321 0.8520 +4686 84324 0.7430 +4686 84844 0.8690 +4686 84950 0.8850 +4686 84967 0.9170 +4686 84991 0.4310 +4686 85403 0.4990 +4686 85476 0.5580 +4686 123169 0.5500 +4686 124245 0.8030 +4686 126259 0.6390 +4686 129401 0.5680 +4686 133522 0.9010 +4686 134353 0.6020 +4686 143884 0.5010 +4686 147650 0.6390 +4686 153527 0.8400 +4686 167227 0.6050 +4686 169436 0.4760 +4686 196441 0.5050 +4686 199746 0.4990 +4686 221092 0.6170 +4686 253314 0.9230 +4686 317649 0.8960 +4686 347744 0.7650 +4686 348995 0.6130 +4686 353267 0.7740 +4686 392517 0.9580 +4686 402569 0.4980 +4686 404672 0.5390 +4686 100101267 0.5650 +4686 100996928 0.8080 +4688 4689 0.9990 +4688 4846 0.4780 +4688 5062 0.4340 +4688 5300 0.8000 +4688 5321 0.6410 +4688 5341 0.5120 +4688 5366 0.5560 +4688 5578 0.5280 +4688 5579 0.9220 +4688 5580 0.9400 +4688 5590 0.5180 +4688 5594 0.9150 +4688 5595 0.9350 +4688 5600 0.8020 +4688 5603 0.8230 +4688 5724 0.4950 +4688 5788 0.4310 +4688 5879 0.9990 +4688 5880 0.9990 +4688 5881 0.8190 +4688 5906 0.9340 +4688 5912 0.9040 +4688 6279 0.8570 +4688 6280 0.8080 +4688 6283 0.4630 +4688 6300 0.8080 +4688 6648 0.4040 +4688 6649 0.4120 +4688 6688 0.5110 +4688 6714 0.4270 +4688 6850 0.4290 +4688 7096 0.5050 +4688 7097 0.6430 +4688 7099 0.6760 +4688 7124 0.5160 +4688 7177 0.4640 +4688 7305 0.5390 +4688 7409 0.7080 +4688 7410 0.6480 +4688 7412 0.9280 +4688 7498 0.6200 +4688 7504 0.4270 +4688 7805 0.6030 +4688 7837 0.4400 +4688 8036 0.4400 +4688 8676 0.4110 +4688 8698 0.4320 +4688 9463 0.4260 +4688 9588 0.4510 +4688 9887 0.5720 +4688 10261 0.4440 +4688 10288 0.6460 +4688 10437 0.4030 +4688 10451 0.5900 +4688 10673 0.5410 +4688 10811 0.9950 +4688 11025 0.5160 +4688 11326 0.5060 +4688 22920 0.8220 +4688 23057 0.6910 +4688 23075 0.4250 +4688 23435 0.4730 +4688 23560 0.7840 +4688 25894 0.4130 +4688 26030 0.4090 +4688 26073 0.7640 +4688 27035 0.9990 +4688 27236 0.5360 +4688 50506 0.9580 +4688 50507 0.9980 +4688 50508 0.9830 +4688 50856 0.4220 +4688 51311 0.5170 +4688 51534 0.5280 +4688 53905 0.9790 +4688 54205 0.4040 +4688 54210 0.4060 +4688 57217 0.4040 +4688 57705 0.4270 +4688 64127 0.4850 +4688 64581 0.4110 +4688 79400 0.9370 +4688 79415 0.5800 +4688 81624 0.4080 +4688 84366 0.4240 +4688 84958 0.7550 +4688 90527 0.5450 +4688 124056 0.9990 +4688 137902 0.4380 +4688 257202 0.4350 +4688 285590 0.4080 +4688 388646 0.5320 +4688 405753 0.4930 +4688 493869 0.4320 +4688 653361 0.9990 +4688 100529144 0.4770 +4689 5058 0.4420 +4689 5243 0.4080 +4689 5289 0.5540 +4689 5294 0.4140 +4689 5300 0.8000 +4689 5336 0.4680 +4689 5341 0.6010 +4689 5578 0.5100 +4689 5579 0.9260 +4689 5580 0.9310 +4689 5590 0.5140 +4689 5594 0.9240 +4689 5595 0.9380 +4689 5600 0.7170 +4689 5603 0.7290 +4689 5777 0.4480 +4689 5788 0.5440 +4689 5879 0.9260 +4689 5880 0.9990 +4689 5881 0.6630 +4689 5906 0.9230 +4689 5912 0.7110 +4689 6039 0.4050 +4689 6279 0.6240 +4689 6280 0.6470 +4689 6300 0.7220 +4689 6402 0.4300 +4689 6404 0.4260 +4689 6688 0.6230 +4689 6693 0.4230 +4689 6714 0.4440 +4689 6850 0.6550 +4689 7074 0.4580 +4689 7096 0.5180 +4689 7097 0.4940 +4689 7099 0.4610 +4689 7124 0.4890 +4689 7133 0.5130 +4689 7187 0.4560 +4689 7295 0.6980 +4689 7305 0.5920 +4689 7409 0.8170 +4689 7410 0.6050 +4689 7412 0.9200 +4689 7454 0.5820 +4689 7462 0.4420 +4689 7498 0.5700 +4689 7805 0.5660 +4689 7940 0.4760 +4689 8809 0.4300 +4689 8929 0.4440 +4689 8972 0.4470 +4689 9034 0.4320 +4689 9450 0.5980 +4689 9535 0.4090 +4689 9966 0.4310 +4689 10109 0.4090 +4689 10288 0.4260 +4689 10451 0.6030 +4689 10811 0.9980 +4689 11025 0.4930 +4689 11151 0.7240 +4689 23075 0.4040 +4689 23560 0.7630 +4689 25828 0.5640 +4689 26030 0.4070 +4689 26073 0.6180 +4689 27035 0.9990 +4689 27128 0.4030 +4689 50506 0.9190 +4689 50507 0.9860 +4689 50508 0.9320 +4689 51311 0.4050 +4689 51338 0.4170 +4689 53905 0.9680 +4689 54440 0.5140 +4689 54536 0.4080 +4689 55054 0.6090 +4689 55843 0.4280 +4689 55911 0.4780 +4689 57580 0.5040 +4689 57705 0.4870 +4689 64092 0.4040 +4689 64098 0.4450 +4689 64127 0.5990 +4689 64581 0.4090 +4689 79400 0.8610 +4689 79415 0.6410 +4689 79626 0.4560 +4689 79930 0.5110 +4689 83706 0.4520 +4689 90527 0.4540 +4689 117289 0.4040 +4689 124056 0.9980 +4689 132014 0.4320 +4689 257106 0.4480 +4689 339145 0.6640 +4689 400935 0.4910 +4689 405753 0.4090 +4689 645432 0.4260 +4689 653361 0.9990 +4689 100049587 0.4020 +4689 100529144 0.7170 +4690 4739 0.6800 +4690 4780 0.5160 +4690 4868 0.9970 +4690 5058 0.9980 +4690 5062 0.9700 +4690 5063 0.9410 +4690 5154 0.5560 +4690 5155 0.5700 +4690 5156 0.5700 +4690 5159 0.9150 +4690 5216 0.5760 +4690 5295 0.8350 +4690 5327 0.4330 +4690 5335 0.9520 +4690 5336 0.7150 +4690 5339 0.4240 +4690 5341 0.4050 +4690 5499 0.4310 +4690 5501 0.4450 +4690 5506 0.5400 +4690 5507 0.5410 +4690 5509 0.5430 +4690 5510 0.5560 +4690 5566 0.4820 +4690 5567 0.4810 +4690 5568 0.4740 +4690 5586 0.7480 +4690 5600 0.5490 +4690 5603 0.5440 +4690 5747 0.9390 +4690 5770 0.7050 +4690 5781 0.5680 +4690 5782 0.4170 +4690 5829 0.8460 +4690 5877 0.9180 +4690 5879 0.7350 +4690 5921 0.8650 +4690 6091 0.6410 +4690 6237 0.7060 +4690 6251 0.4770 +4690 6300 0.5380 +4690 6453 0.4520 +4690 6461 0.4180 +4690 6464 0.9690 +4690 6654 0.9740 +4690 6655 0.7370 +4690 6714 0.8570 +4690 6776 0.5110 +4690 6777 0.4540 +4690 6850 0.8810 +4690 7009 0.4240 +4690 7094 0.4620 +4690 7157 0.4880 +4690 7204 0.5340 +4690 7294 0.5880 +4690 7408 0.7640 +4690 7409 0.9970 +4690 7410 0.5710 +4690 7414 0.4500 +4690 7454 0.9990 +4690 7456 0.9990 +4690 7535 0.7760 +4690 7827 0.6470 +4690 7867 0.5160 +4690 8036 0.7840 +4690 8428 0.6690 +4690 8440 0.9790 +4690 8446 0.4890 +4690 8631 0.6100 +4690 8651 0.4380 +4690 8731 0.4010 +4690 8732 0.6840 +4690 8751 0.7320 +4690 8826 0.7230 +4690 8853 0.4600 +4690 8867 0.5890 +4690 8871 0.5160 +4690 8874 0.6500 +4690 8878 0.4030 +4690 8894 0.7490 +4690 8915 0.4230 +4690 8936 0.9530 +4690 8976 0.9990 +4690 9031 0.4540 +4690 9046 0.9100 +4690 9047 0.6290 +4690 9185 0.4700 +4690 9261 0.5530 +4690 9353 0.6010 +4690 9402 0.9630 +4690 9423 0.5710 +4690 9448 0.8240 +4690 9459 0.9300 +4690 9564 0.9610 +4690 9644 0.7930 +4690 9815 0.7780 +4690 9844 0.4980 +4690 9846 0.5710 +4690 10006 0.9470 +4690 10092 0.5890 +4690 10093 0.5120 +4690 10094 0.6400 +4690 10095 0.6000 +4690 10096 0.6970 +4690 10097 0.8480 +4690 10109 0.6420 +4690 10152 0.8180 +4690 10163 0.9280 +4690 10188 0.8630 +4690 10298 0.9400 +4690 10451 0.6610 +4690 10458 0.8960 +4690 10552 0.5740 +4690 10553 0.4670 +4690 10657 0.7140 +4690 10750 0.4930 +4690 10787 0.9770 +4690 10801 0.4010 +4690 10810 0.6500 +4690 10987 0.4020 +4690 11184 0.8450 +4690 11346 0.7280 +4690 22885 0.4990 +4690 22905 0.4360 +4690 23043 0.9890 +4690 23157 0.7000 +4690 23191 0.9020 +4690 23552 0.4310 +4690 23607 0.5190 +4690 23645 0.7380 +4690 26191 0.4770 +4690 26999 0.9250 +4690 27040 0.6690 +4690 27071 0.4490 +4690 28964 0.5150 +4690 29110 0.4640 +4690 29760 0.9280 +4690 29789 0.4010 +4690 29941 0.4420 +4690 30011 0.4690 +4690 30837 0.8740 +4690 50488 0.8300 +4690 50807 0.4100 +4690 51429 0.4910 +4690 51517 0.9950 +4690 51806 0.4240 +4690 54956 0.4570 +4690 55003 0.6060 +4690 55040 0.4460 +4690 55243 0.8280 +4690 55752 0.5390 +4690 55845 0.9540 +4690 55971 0.4550 +4690 56924 0.9520 +4690 57144 0.9460 +4690 57224 0.4200 +4690 57513 0.4830 +4690 57524 0.5030 +4690 57648 0.4480 +4690 58480 0.8380 +4690 63916 0.4060 +4690 63939 0.7690 +4690 78999 0.6050 +4690 79660 0.5400 +4690 83660 0.4610 +4690 84448 0.4990 +4690 84687 0.7250 +4690 84919 0.7220 +4690 84959 0.4270 +4690 89801 0.5400 +4690 90506 0.5440 +4690 90673 0.5400 +4690 91860 0.4240 +4690 118788 0.5530 +4690 122809 0.7830 +4690 147179 0.9680 +4690 163688 0.4240 +4690 171177 0.7970 +4690 254050 0.5440 +4690 285590 0.5280 +4690 286187 0.5400 +4690 340527 0.4830 +4690 344148 0.7850 +4690 345456 0.5620 +4690 375189 0.5690 +4690 644150 0.9780 +4690 648791 0.5400 +4690 653604 0.4270 +4691 4736 0.5380 +4691 4791 0.5590 +4691 4799 0.5250 +4691 4809 0.6660 +4691 4831 0.5030 +4691 4841 0.6150 +4691 4869 0.9990 +4691 4904 0.9370 +4691 4928 0.4040 +4691 5036 0.7910 +4691 5045 0.4310 +4691 5079 0.4500 +4691 5093 0.5840 +4691 5094 0.6710 +4691 5245 0.4320 +4691 5267 0.4180 +4691 5303 0.5040 +4691 5328 0.4650 +4691 5394 0.6380 +4691 5460 0.5610 +4691 5499 0.4340 +4691 5500 0.5000 +4691 5501 0.5810 +4691 5725 0.9370 +4691 5754 0.5000 +4691 5757 0.5600 +4691 5764 0.5960 +4691 5803 0.4010 +4691 5813 0.8220 +4691 5822 0.5000 +4691 5884 0.4120 +4691 5888 0.4350 +4691 5901 0.4330 +4691 5905 0.6120 +4691 5935 0.5330 +4691 5940 0.4760 +4691 6122 0.6610 +4691 6124 0.7730 +4691 6125 0.7470 +4691 6128 0.4760 +4691 6129 0.7330 +4691 6130 0.7690 +4691 6132 0.5810 +4691 6133 0.4350 +4691 6135 0.7610 +4691 6138 0.6560 +4691 6143 0.4920 +4691 6144 0.5830 +4691 6147 0.4480 +4691 6154 0.7800 +4691 6156 0.6210 +4691 6157 0.4330 +4691 6168 0.6520 +4691 6175 0.6130 +4691 6187 0.6700 +4691 6188 0.6370 +4691 6189 0.5210 +4691 6191 0.5710 +4691 6193 0.6060 +4691 6194 0.8410 +4691 6199 0.4100 +4691 6201 0.5390 +4691 6202 0.4510 +4691 6203 0.7740 +4691 6208 0.5780 +4691 6217 0.4860 +4691 6223 0.7520 +4691 6224 0.5650 +4691 6228 0.4500 +4691 6229 0.4160 +4691 6240 0.4530 +4691 6282 0.8190 +4691 6311 0.4910 +4691 6402 0.4240 +4691 6404 0.4790 +4691 6414 0.4460 +4691 6418 0.7040 +4691 6421 0.6690 +4691 6426 0.8230 +4691 6427 0.8190 +4691 6428 0.5680 +4691 6434 0.4890 +4691 6606 0.4790 +4691 6613 0.4470 +4691 6622 0.8580 +4691 6625 0.4410 +4691 6626 0.4870 +4691 6628 0.5700 +4691 6631 0.4640 +4691 6632 0.4090 +4691 6634 0.4650 +4691 6657 0.4430 +4691 6667 0.4270 +4691 6714 0.4400 +4691 6737 0.4300 +4691 6738 0.6110 +4691 6741 0.8610 +4691 6749 0.6580 +4691 6780 0.8230 +4691 6795 0.4220 +4691 6827 0.4730 +4691 6829 0.4040 +4691 6830 0.5800 +4691 6838 0.4330 +4691 6950 0.5910 +4691 7013 0.4920 +4691 7015 0.5160 +4691 7026 0.4770 +4691 7099 0.7280 +4691 7124 0.5930 +4691 7150 0.7770 +4691 7157 0.9110 +4691 7158 0.5630 +4691 7159 0.4300 +4691 7175 0.4780 +4691 7178 0.5690 +4691 7184 0.4040 +4691 7343 0.8000 +4691 7443 0.5660 +4691 7458 0.5940 +4691 7486 0.5040 +4691 7514 0.6440 +4691 7520 0.7600 +4691 7528 0.9740 +4691 7538 0.5000 +4691 7555 0.5620 +4691 7812 0.4290 +4691 7837 0.4370 +4691 7874 0.5990 +4691 7919 0.5930 +4691 8087 0.7780 +4691 8106 0.5170 +4691 8125 0.4840 +4691 8161 0.6390 +4691 8290 0.5300 +4691 8337 0.5790 +4691 8338 0.6850 +4691 8340 0.4840 +4691 8341 0.4790 +4691 8342 0.4810 +4691 8345 0.4810 +4691 8347 0.4850 +4691 8348 0.4910 +4691 8349 0.7320 +4691 8356 0.4750 +4691 8361 0.6800 +4691 8369 0.5600 +4691 8467 0.6300 +4691 8517 0.4290 +4691 8568 0.8690 +4691 8570 0.6260 +4691 8602 0.5430 +4691 8660 0.7240 +4691 8661 0.8790 +4691 8662 0.4890 +4691 8663 0.4950 +4691 8664 0.4990 +4691 8668 0.4060 +4691 8672 0.4360 +4691 8683 0.4450 +4691 8886 0.4650 +4691 8970 0.4820 +4691 9045 0.5240 +4691 9136 0.5740 +4691 9188 0.6280 +4691 9221 0.8850 +4691 9277 0.6820 +4691 9343 0.4470 +4691 9392 0.4370 +4691 9401 0.4020 +4691 9507 0.4200 +4691 9509 0.4380 +4691 9513 0.6440 +4691 9533 0.5080 +4691 9584 0.5960 +4691 9611 0.4890 +4691 9656 0.4530 +4691 9669 0.5040 +4691 9724 0.4610 +4691 9775 0.5730 +4691 9782 0.6010 +4691 9790 0.6770 +4691 9933 0.4140 +4691 9987 0.7350 +4691 10036 0.4800 +4691 10146 0.4470 +4691 10155 0.8490 +4691 10171 0.5170 +4691 10189 0.8550 +4691 10196 0.5060 +4691 10199 0.5250 +4691 10213 0.4610 +4691 10236 0.5940 +4691 10360 0.7150 +4691 10361 0.7240 +4691 10399 0.5530 +4691 10419 0.8370 +4691 10432 0.4140 +4691 10436 0.5320 +4691 10482 0.6310 +4691 10492 0.5870 +4691 10498 0.5050 +4691 10514 0.8260 +4691 10528 0.9070 +4691 10541 0.4310 +4691 10565 0.8070 +4691 10574 0.4530 +4691 10605 0.4130 +4691 10607 0.4450 +4691 10625 0.4890 +4691 10657 0.6850 +4691 10664 0.6310 +4691 10813 0.5630 +4691 10849 0.4120 +4691 10885 0.4740 +4691 10915 0.4220 +4691 10923 0.4610 +4691 10949 0.4920 +4691 10969 0.7510 +4691 10988 0.4160 +4691 11033 0.8700 +4691 11056 0.4520 +4691 11091 0.4970 +4691 11103 0.4650 +4691 11157 0.4400 +4691 11198 0.6360 +4691 11201 0.6400 +4691 11273 0.4290 +4691 11315 0.8750 +4691 11338 0.7010 +4691 22826 0.4040 +4691 22981 0.4240 +4691 22984 0.6210 +4691 23076 0.6720 +4691 23160 0.7190 +4691 23191 0.7520 +4691 23212 0.6460 +4691 23246 0.5170 +4691 23435 0.5470 +4691 23468 0.4660 +4691 23476 0.5900 +4691 23481 0.6680 +4691 23517 0.4280 +4691 23521 0.4200 +4691 23560 0.4970 +4691 23586 0.4040 +4691 23636 0.8130 +4691 25879 0.4550 +4691 25885 0.7760 +4691 25926 0.5230 +4691 25929 0.4810 +4691 26065 0.7680 +4691 26135 0.8070 +4691 26155 0.5330 +4691 26227 0.4150 +4691 26354 0.6590 +4691 26523 0.4710 +4691 26747 0.7130 +4691 26986 0.6020 +4691 26999 0.4590 +4691 27000 0.4390 +4691 27042 0.4550 +4691 27132 0.4960 +4691 27161 0.6880 +4691 27288 0.4920 +4691 27316 0.6070 +4691 27339 0.4140 +4691 27340 0.5540 +4691 27341 0.4280 +4691 30816 0.4820 +4691 50486 0.4490 +4691 51077 0.4360 +4691 51096 0.5290 +4691 51118 0.4670 +4691 51119 0.4520 +4691 51121 0.5090 +4691 51202 0.5900 +4691 51231 0.5570 +4691 51316 0.4480 +4691 51386 0.5490 +4691 51434 0.4780 +4691 51574 0.7760 +4691 51602 0.8170 +4691 51808 0.5930 +4691 54145 0.4830 +4691 54433 0.6560 +4691 54487 0.4150 +4691 54496 0.5070 +4691 54555 0.5200 +4691 54606 0.5870 +4691 54700 0.4750 +4691 54840 0.4090 +4691 54888 0.4980 +4691 55127 0.5530 +4691 55170 0.5000 +4691 55206 0.5060 +4691 55225 0.4500 +4691 55272 0.4790 +4691 55352 0.4710 +4691 55367 0.4260 +4691 55646 0.4350 +4691 55651 0.4760 +4691 55720 0.4230 +4691 55813 0.5360 +4691 56341 0.4910 +4691 56902 0.4740 +4691 57050 0.4910 +4691 57062 0.4590 +4691 57647 0.5020 +4691 60678 0.4490 +4691 64397 0.4550 +4691 64425 0.4820 +4691 64682 0.4850 +4691 65083 0.4540 +4691 79048 0.6560 +4691 79050 0.4760 +4691 79697 0.5150 +4691 79718 0.5540 +4691 80781 0.9660 +4691 81887 0.5180 +4691 83732 0.9400 +4691 83743 0.4050 +4691 84128 0.5110 +4691 84135 0.4730 +4691 84172 0.4350 +4691 84365 0.4470 +4691 84823 0.6040 +4691 84916 0.5360 +4691 85236 0.4860 +4691 88745 0.4100 +4691 92856 0.5190 +4691 116447 0.5080 +4691 120892 0.6300 +4691 128312 0.4820 +4691 133482 0.5740 +4691 137902 0.4340 +4691 139804 0.4620 +4691 149041 0.5280 +4691 154150 0.7480 +4691 158983 0.4900 +4691 159163 0.4690 +4691 170506 0.4690 +4691 171568 0.5080 +4691 203228 0.6440 +4691 220988 0.7250 +4691 221002 0.4970 +4691 246243 0.4270 +4691 253314 0.4090 +4691 255626 0.4870 +4691 255967 0.4030 +4691 286436 0.4850 +4691 317649 0.4040 +4691 375790 0.4190 +4691 378948 0.4730 +4691 378949 0.4760 +4691 378950 0.4760 +4691 378951 0.4690 +4691 389874 0.4250 +4691 390243 0.4290 +4691 440093 0.4660 +4691 440686 0.4600 +4691 440689 0.4900 +4691 448831 0.6190 +4691 653604 0.6040 +4691 100288687 0.7210 +4691 102288414 0.5550 +4691 114483833 0.4840 +4692 4747 0.5160 +4692 4803 0.4960 +4692 4804 0.9230 +4692 4808 0.4440 +4692 4826 0.5940 +4692 4923 0.4100 +4692 4925 0.4070 +4692 4948 0.5650 +4692 5002 0.4780 +4692 5020 0.6840 +4692 5178 0.6010 +4692 5325 0.5780 +4692 5987 0.4860 +4692 6272 0.4370 +4692 6451 0.4070 +4692 6638 0.9430 +4692 6657 0.4270 +4692 6774 0.7880 +4692 6778 0.4990 +4692 7157 0.9980 +4692 7262 0.5140 +4692 7307 0.6520 +4692 7337 0.8010 +4692 7681 0.9220 +4692 7857 0.4030 +4692 8471 0.6130 +4692 8788 0.6050 +4692 8910 0.5960 +4692 8926 0.6010 +4692 9083 0.4240 +4692 9397 0.4180 +4692 9867 0.4970 +4692 9978 0.4040 +4692 10155 0.6770 +4692 10891 0.6520 +4692 11074 0.4330 +4692 22890 0.4200 +4692 23089 0.5600 +4692 23137 0.5920 +4692 23191 0.4430 +4692 23411 0.8120 +4692 23609 0.4340 +4692 23741 0.8680 +4692 23742 0.7720 +4692 26958 0.4110 +4692 29903 0.4460 +4692 29946 0.4200 +4692 51043 0.4250 +4692 54518 0.4260 +4692 54531 0.4220 +4692 54551 0.4940 +4692 54780 0.6780 +4692 54900 0.4200 +4692 55607 0.6210 +4692 57194 0.8340 +4692 64219 0.7920 +4692 64753 0.4320 +4692 79677 0.5220 +4692 80318 0.4200 +4692 81614 0.5110 +4692 84062 0.6260 +4692 84708 0.4890 +4692 114791 0.5880 +4692 114879 0.4200 +4692 123606 0.5110 +4692 126272 0.4410 +4692 158511 0.6320 +4692 197370 0.5400 +4692 221143 0.4200 +4692 266743 0.4970 +4692 266812 0.5790 +4692 286053 0.5040 +4692 348487 0.4200 +4692 353500 0.4890 +4692 493861 0.6570 +4693 4708 0.6470 +4693 6229 0.4030 +4693 6234 0.4130 +4693 6259 0.4200 +4693 6678 0.5170 +4693 7122 0.4550 +4693 7474 0.6400 +4693 7476 0.5940 +4693 7477 0.5400 +4693 7855 0.4860 +4693 8321 0.7560 +4693 8322 0.9990 +4693 8324 0.6930 +4693 8325 0.4560 +4693 8326 0.6860 +4693 22943 0.4770 +4693 23554 0.9970 +4693 25960 0.7770 +4693 27121 0.4320 +4693 27123 0.4360 +4693 50964 0.6180 +4693 54894 0.4180 +4693 55366 0.9500 +4693 79797 0.7280 +4693 83483 0.4800 +4693 84133 0.4600 +4693 84879 0.4080 +4693 89780 0.6120 +4693 129293 0.4330 +4693 147495 0.4130 +4693 284654 0.5650 +4693 340419 0.4290 +4694 4695 0.9990 +4694 4696 0.9990 +4694 4697 0.9950 +4694 4698 0.9990 +4694 4700 0.9990 +4694 4701 0.9990 +4694 4702 0.9990 +4694 4704 0.9980 +4694 4705 0.9990 +4694 4706 0.9990 +4694 4707 0.9990 +4694 4708 0.9990 +4694 4709 0.9990 +4694 4710 0.9990 +4694 4711 0.9990 +4694 4712 0.9990 +4694 4713 0.9990 +4694 4714 0.9990 +4694 4715 0.9990 +4694 4716 0.9990 +4694 4717 0.9980 +4694 4718 0.9980 +4694 4720 0.9990 +4694 4722 0.9990 +4694 4723 0.9990 +4694 4724 0.9990 +4694 4725 0.9990 +4694 4726 0.9990 +4694 4728 0.9990 +4694 4729 0.9990 +4694 4731 0.9990 +4694 5566 0.6720 +4694 5567 0.6690 +4694 5568 0.6680 +4694 6166 0.4600 +4694 6360 0.4110 +4694 6389 0.6660 +4694 6390 0.6680 +4694 6391 0.6050 +4694 6392 0.4500 +4694 6622 0.6560 +4694 6633 0.4300 +4694 6648 0.7020 +4694 6727 0.4490 +4694 7084 0.4760 +4694 7381 0.9480 +4694 7384 0.9220 +4694 7385 0.9420 +4694 7386 0.9110 +4694 7388 0.9540 +4694 8803 0.4610 +4694 9296 0.4590 +4694 9377 0.9340 +4694 9551 0.8030 +4694 9553 0.5560 +4694 9556 0.4600 +4694 10063 0.6380 +4694 10476 0.7250 +4694 10553 0.4350 +4694 10632 0.8530 +4694 10975 0.9740 +4694 23157 0.4080 +4694 23435 0.6530 +4694 25880 0.5630 +4694 25915 0.9380 +4694 26521 0.5130 +4694 27089 0.9820 +4694 27258 0.4090 +4694 28976 0.8030 +4694 29078 0.9530 +4694 29796 0.9780 +4694 51023 0.4360 +4694 51079 0.9990 +4694 51103 0.9840 +4694 51258 0.6880 +4694 51295 0.7680 +4694 51300 0.7740 +4694 51372 0.4390 +4694 51650 0.4650 +4694 54460 0.7520 +4694 54539 0.9990 +4694 54543 0.6660 +4694 54675 0.5520 +4694 55471 0.6200 +4694 55572 0.9040 +4694 55744 0.5800 +4694 55863 0.7880 +4694 55967 0.9990 +4694 56901 0.7100 +4694 56964 0.5400 +4694 57407 0.4270 +4694 59286 0.4030 +4694 64216 0.4650 +4694 65018 0.6830 +4694 79133 0.8350 +4694 79598 0.4610 +4694 79728 0.9190 +4694 80195 0.4510 +4694 80224 0.6460 +4694 81892 0.5440 +4694 84277 0.5250 +4694 84701 0.5150 +4694 84833 0.4850 +4694 84939 0.5650 +4694 84987 0.5060 +4694 91689 0.4480 +4694 91942 0.9680 +4694 93974 0.4110 +4694 94030 0.4030 +4694 118487 0.4320 +4694 125965 0.4110 +4694 126328 0.9990 +4694 137682 0.6820 +4694 139221 0.5690 +4694 140823 0.4980 +4694 170712 0.5790 +4694 267020 0.5740 +4694 374291 0.9990 +4694 440567 0.4960 +4694 728317 0.5650 +4694 100532726 0.9190 +4695 4696 0.9990 +4695 4697 0.9990 +4695 4698 0.9990 +4695 4700 0.9990 +4695 4701 0.9990 +4695 4702 0.9990 +4695 4704 0.9990 +4695 4705 0.9990 +4695 4706 0.9990 +4695 4707 0.9990 +4695 4708 0.9990 +4695 4709 0.9990 +4695 4710 0.9990 +4695 4711 0.9990 +4695 4712 0.9990 +4695 4713 0.9990 +4695 4714 0.9990 +4695 4715 0.9990 +4695 4716 0.9990 +4695 4717 0.9990 +4695 4718 0.9990 +4695 4720 0.9990 +4695 4722 0.9990 +4695 4723 0.9990 +4695 4724 0.9990 +4695 4725 0.9990 +4695 4726 0.9990 +4695 4728 0.9990 +4695 4729 0.9990 +4695 4731 0.9990 +4695 4835 0.4040 +4695 5162 0.4660 +4695 5250 0.6260 +4695 5566 0.6520 +4695 5567 0.6500 +4695 5568 0.6500 +4695 5878 0.4250 +4695 6169 0.4620 +4695 6389 0.8560 +4695 6390 0.9580 +4695 6391 0.9080 +4695 6392 0.9850 +4695 6426 0.5950 +4695 6622 0.6600 +4695 6821 0.4110 +4695 6834 0.6150 +4695 7019 0.4270 +4695 7084 0.5620 +4695 7295 0.4770 +4695 7381 0.9970 +4695 7384 0.9920 +4695 7385 0.9740 +4695 7386 0.9980 +4695 7388 0.9960 +4695 7419 0.5030 +4695 7484 0.4200 +4695 8192 0.4280 +4695 8683 0.5970 +4695 9296 0.6430 +4695 9377 0.9720 +4695 9446 0.6100 +4695 9512 0.8980 +4695 9551 0.8940 +4695 9553 0.4900 +4695 9556 0.4470 +4695 9997 0.4180 +4695 10063 0.6490 +4695 10128 0.4920 +4695 10245 0.6880 +4695 10440 0.7050 +4695 10443 0.5210 +4695 10452 0.4390 +4695 10476 0.9780 +4695 10535 0.5260 +4695 10553 0.7790 +4695 10632 0.8440 +4695 10975 0.9940 +4695 11066 0.4340 +4695 11112 0.4080 +4695 11315 0.4550 +4695 11343 0.9170 +4695 23203 0.9070 +4695 23435 0.6560 +4695 23645 0.5410 +4695 23788 0.4860 +4695 25824 0.4030 +4695 25828 0.4580 +4695 25874 0.4340 +4695 25880 0.5640 +4695 25915 0.9530 +4695 26519 0.4140 +4695 26521 0.6590 +4695 27089 0.9980 +4695 28976 0.7450 +4695 29078 0.9520 +4695 29085 0.4200 +4695 29796 0.9990 +4695 29928 0.5470 +4695 29957 0.7510 +4695 51021 0.5300 +4695 51023 0.5980 +4695 51031 0.5440 +4695 51079 0.9990 +4695 51103 0.9830 +4695 51204 0.6060 +4695 51241 0.4640 +4695 51258 0.4800 +4695 51263 0.5340 +4695 51264 0.4370 +4695 51295 0.6610 +4695 51300 0.6530 +4695 51529 0.5610 +4695 51650 0.6400 +4695 54205 0.5830 +4695 54431 0.5650 +4695 54460 0.5500 +4695 54534 0.4890 +4695 54539 0.9990 +4695 54543 0.8400 +4695 55028 0.4480 +4695 55052 0.4570 +4695 55168 0.4490 +4695 55471 0.6650 +4695 55572 0.9300 +4695 55728 0.5200 +4695 55744 0.5600 +4695 55847 0.4780 +4695 55863 0.6470 +4695 55967 0.9990 +4695 56886 0.4600 +4695 56901 0.7410 +4695 56964 0.5400 +4695 57407 0.7770 +4695 57552 0.5100 +4695 58509 0.4120 +4695 59286 0.4950 +4695 64951 0.4020 +4695 65018 0.6670 +4695 78988 0.4370 +4695 79002 0.6320 +4695 79085 0.7520 +4695 79133 0.8700 +4695 79598 0.5580 +4695 79728 0.9380 +4695 79893 0.5110 +4695 80195 0.7770 +4695 80221 0.5140 +4695 80224 0.6300 +4695 81341 0.5460 +4695 81892 0.5910 +4695 84277 0.4900 +4695 84545 0.6150 +4695 84693 0.6080 +4695 84701 0.5690 +4695 84817 0.6550 +4695 84833 0.6210 +4695 84886 0.7210 +4695 84939 0.8610 +4695 84987 0.6110 +4695 90353 0.6930 +4695 90634 0.5200 +4695 91300 0.5430 +4695 91689 0.4490 +4695 91942 0.9840 +4695 93974 0.5530 +4695 112812 0.6610 +4695 114789 0.7570 +4695 116540 0.4750 +4695 116541 0.4460 +4695 118487 0.4760 +4695 119391 0.5800 +4695 122704 0.4140 +4695 125061 0.4720 +4695 125965 0.7640 +4695 126328 0.9990 +4695 126767 0.5010 +4695 131118 0.4680 +4695 137682 0.8240 +4695 139221 0.8610 +4695 140823 0.5680 +4695 150274 0.4100 +4695 150678 0.6100 +4695 170712 0.5150 +4695 192286 0.4490 +4695 254863 0.5600 +4695 267020 0.6380 +4695 283459 0.5720 +4695 284427 0.7480 +4695 343066 0.5010 +4695 344752 0.5010 +4695 374291 0.9990 +4695 388327 0.4840 +4695 388753 0.6320 +4695 388962 0.4460 +4695 404672 0.4480 +4695 440567 0.9740 +4695 440574 0.4630 +4695 493856 0.4260 +4695 728317 0.8610 +4695 100131801 0.7880 +4695 100532726 0.9560 +4696 4697 0.9860 +4696 4698 0.9990 +4696 4700 0.9990 +4696 4701 0.9990 +4696 4702 0.9990 +4696 4704 0.9990 +4696 4705 0.9990 +4696 4706 0.9990 +4696 4707 0.9960 +4696 4708 0.9960 +4696 4709 0.9990 +4696 4710 0.9990 +4696 4711 0.9990 +4696 4712 0.9990 +4696 4713 0.9990 +4696 4714 0.9990 +4696 4715 0.9990 +4696 4716 0.9990 +4696 4717 0.9990 +4696 4718 0.9980 +4696 4720 0.9990 +4696 4722 0.9990 +4696 4723 0.9990 +4696 4724 0.9990 +4696 4725 0.9990 +4696 4726 0.9990 +4696 4728 0.9990 +4696 4729 0.9990 +4696 4731 0.9990 +4696 5438 0.4300 +4696 5566 0.6620 +4696 5567 0.6590 +4696 5568 0.6590 +4696 6389 0.4570 +4696 6390 0.6690 +4696 6391 0.4400 +4696 6392 0.4330 +4696 6622 0.6500 +4696 7084 0.5690 +4696 7381 0.9060 +4696 7384 0.9390 +4696 7385 0.9210 +4696 7386 0.9270 +4696 7388 0.9480 +4696 8802 0.4120 +4696 9167 0.4530 +4696 9377 0.9110 +4696 9512 0.4520 +4696 9514 0.4410 +4696 9551 0.8840 +4696 9556 0.4100 +4696 10476 0.6760 +4696 10553 0.5140 +4696 10632 0.6610 +4696 10975 0.9940 +4696 23435 0.6520 +4696 25880 0.5720 +4696 25915 0.9220 +4696 26121 0.4420 +4696 26521 0.4540 +4696 27089 0.9710 +4696 27109 0.4480 +4696 28976 0.5970 +4696 29078 0.9460 +4696 29085 0.4100 +4696 29796 0.9790 +4696 29844 0.7390 +4696 51079 0.9990 +4696 51102 0.4290 +4696 51103 0.9780 +4696 51295 0.8560 +4696 51300 0.9350 +4696 51805 0.4170 +4696 54187 0.4240 +4696 54460 0.4210 +4696 54539 0.9990 +4696 54543 0.7040 +4696 55101 0.4060 +4696 55471 0.6980 +4696 55572 0.7950 +4696 55744 0.5480 +4696 55863 0.6220 +4696 55967 0.9990 +4696 56901 0.6390 +4696 56964 0.5400 +4696 57407 0.5580 +4696 65018 0.6840 +4696 79133 0.6380 +4696 79598 0.5690 +4696 79728 0.9230 +4696 80195 0.5490 +4696 84277 0.4520 +4696 84701 0.6070 +4696 84833 0.5380 +4696 84939 0.7560 +4696 90353 0.6980 +4696 90871 0.4480 +4696 91942 0.8780 +4696 116729 0.4480 +4696 125965 0.5570 +4696 126328 0.9990 +4696 137682 0.6160 +4696 139221 0.7550 +4696 148170 0.4300 +4696 170712 0.5630 +4696 254863 0.4380 +4696 374291 0.9990 +4696 388753 0.4070 +4696 404672 0.4240 +4696 440567 0.5700 +4696 440574 0.5090 +4696 728317 0.7550 +4696 100532726 0.8740 +4697 4698 0.9950 +4697 4700 0.9990 +4697 4701 0.9930 +4697 4702 0.9890 +4697 4704 0.9880 +4697 4705 0.9880 +4697 4706 0.9900 +4697 4707 0.9840 +4697 4708 0.9900 +4697 4709 0.9940 +4697 4710 0.9930 +4697 4711 0.9960 +4697 4712 0.9910 +4697 4713 0.9820 +4697 4714 0.9960 +4697 4715 0.9950 +4697 4716 0.9890 +4697 4717 0.9820 +4697 4718 0.9880 +4697 4720 0.9880 +4697 4722 0.9890 +4697 4723 0.9880 +4697 4724 0.9900 +4697 4725 0.9820 +4697 4726 0.9880 +4697 4728 0.9890 +4697 4729 0.9910 +4697 4731 0.9790 +4697 5018 0.4380 +4697 5037 0.4200 +4697 5162 0.5130 +4697 5204 0.4670 +4697 5250 0.6680 +4697 5566 0.6510 +4697 5567 0.6560 +4697 5568 0.6500 +4697 5687 0.4920 +4697 5878 0.4510 +4697 6133 0.6050 +4697 6155 0.5210 +4697 6189 0.4340 +4697 6210 0.4800 +4697 6341 0.5670 +4697 6389 0.4760 +4697 6390 0.6030 +4697 6391 0.4540 +4697 6392 0.6940 +4697 6622 0.6760 +4697 6637 0.4090 +4697 6834 0.4650 +4697 7381 0.9410 +4697 7384 0.8900 +4697 7385 0.9800 +4697 7386 0.9760 +4697 7388 0.9260 +4697 9167 0.9380 +4697 9377 0.9970 +4697 9550 0.4250 +4697 9551 0.8080 +4697 9556 0.4130 +4697 9978 0.4890 +4697 9997 0.4970 +4697 10063 0.5080 +4697 10165 0.6220 +4697 10452 0.4320 +4697 10476 0.8790 +4697 10632 0.8860 +4697 10651 0.4940 +4697 10975 0.9580 +4697 11315 0.7770 +4697 23171 0.4030 +4697 23435 0.6580 +4697 23479 0.5180 +4697 25915 0.6620 +4697 25994 0.7610 +4697 26521 0.5060 +4697 27089 0.9800 +4697 28958 0.6860 +4697 28976 0.4730 +4697 29078 0.6850 +4697 29796 0.9610 +4697 51024 0.4600 +4697 51079 0.9890 +4697 51103 0.9630 +4697 51142 0.6750 +4697 51187 0.4240 +4697 51241 0.5200 +4697 51258 0.4620 +4697 51300 0.4250 +4697 51650 0.5060 +4697 54205 0.7910 +4697 54534 0.4980 +4697 54539 0.9870 +4697 54543 0.8150 +4697 55028 0.4010 +4697 55052 0.6190 +4697 55572 0.8080 +4697 55863 0.4110 +4697 55967 0.9990 +4697 56886 0.4480 +4697 56901 0.9040 +4697 56964 0.5400 +4697 65018 0.8140 +4697 79728 0.4960 +4697 80775 0.4400 +4697 81491 0.5180 +4697 81892 0.4390 +4697 84233 0.4470 +4697 84419 0.9830 +4697 84701 0.8060 +4697 84833 0.8100 +4697 84955 0.6220 +4697 84987 0.5330 +4697 90353 0.4710 +4697 91942 0.7200 +4697 92609 0.4180 +4697 93974 0.5000 +4697 94081 0.4830 +4697 114792 0.5570 +4697 116228 0.5420 +4697 116540 0.4140 +4697 125965 0.6030 +4697 126328 0.9800 +4697 140823 0.7170 +4697 170712 0.7170 +4697 192286 0.4190 +4697 267020 0.5910 +4697 285521 0.4090 +4697 341947 0.6310 +4697 374291 0.9830 +4697 388753 0.7020 +4697 440567 0.8430 +4697 100131801 0.4660 +4697 100532726 0.8720 +4698 4700 0.9990 +4698 4701 0.9990 +4698 4702 0.9990 +4698 4704 0.9990 +4698 4705 0.9990 +4698 4706 0.9990 +4698 4707 0.9980 +4698 4708 0.9980 +4698 4709 0.9990 +4698 4710 0.9990 +4698 4711 0.9990 +4698 4712 0.9990 +4698 4713 0.9990 +4698 4714 0.9990 +4698 4715 0.9990 +4698 4716 0.9990 +4698 4717 0.9990 +4698 4718 0.9990 +4698 4720 0.9990 +4698 4722 0.9990 +4698 4723 0.9990 +4698 4724 0.9990 +4698 4725 0.9990 +4698 4726 0.9990 +4698 4728 0.9990 +4698 4729 0.9990 +4698 4731 0.9990 +4698 5162 0.6950 +4698 5431 0.4530 +4698 5432 0.4180 +4698 5434 0.6070 +4698 5435 0.5410 +4698 5437 0.5480 +4698 5440 0.6540 +4698 5441 0.7190 +4698 5566 0.6500 +4698 5567 0.6570 +4698 5568 0.6500 +4698 6147 0.4640 +4698 6203 0.4190 +4698 6208 0.4280 +4698 6389 0.7930 +4698 6390 0.7300 +4698 6391 0.9020 +4698 6392 0.8720 +4698 6426 0.5550 +4698 6622 0.6680 +4698 6742 0.6460 +4698 6908 0.5220 +4698 7019 0.4080 +4698 7084 0.6550 +4698 7136 0.4090 +4698 7295 0.4180 +4698 7311 0.8570 +4698 7381 0.9990 +4698 7384 0.9920 +4698 7385 0.9900 +4698 7386 0.9990 +4698 7388 0.9990 +4698 7411 0.4150 +4698 7416 0.5160 +4698 7417 0.4330 +4698 8683 0.5550 +4698 8802 0.5760 +4698 9093 0.4540 +4698 9141 0.4200 +4698 9377 0.9850 +4698 9446 0.5860 +4698 9512 0.9270 +4698 9519 0.4210 +4698 9533 0.5900 +4698 9551 0.8780 +4698 10063 0.4650 +4698 10229 0.4520 +4698 10245 0.6460 +4698 10440 0.6910 +4698 10443 0.5380 +4698 10476 0.9510 +4698 10535 0.5070 +4698 10553 0.7910 +4698 10632 0.8690 +4698 10651 0.5870 +4698 10849 0.6490 +4698 10935 0.4530 +4698 10975 0.9810 +4698 10987 0.5370 +4698 11112 0.4490 +4698 11128 0.5280 +4698 11343 0.9810 +4698 23078 0.4180 +4698 23203 0.9280 +4698 23435 0.6710 +4698 23645 0.5340 +4698 23788 0.4030 +4698 25880 0.5840 +4698 25885 0.8130 +4698 25915 0.9540 +4698 26519 0.4140 +4698 26521 0.6840 +4698 27089 0.9940 +4698 28976 0.6820 +4698 29078 0.9810 +4698 29796 0.9990 +4698 29928 0.5150 +4698 29957 0.7850 +4698 30834 0.6680 +4698 51023 0.5820 +4698 51079 0.9990 +4698 51082 0.6730 +4698 51103 0.9790 +4698 51258 0.4080 +4698 51295 0.6220 +4698 51300 0.8030 +4698 51318 0.6830 +4698 51642 0.4070 +4698 51650 0.4330 +4698 54205 0.8420 +4698 54431 0.6160 +4698 54460 0.5810 +4698 54534 0.4800 +4698 54539 0.9990 +4698 54543 0.4660 +4698 54700 0.7040 +4698 55028 0.5460 +4698 55471 0.7050 +4698 55572 0.8560 +4698 55703 0.4580 +4698 55728 0.5300 +4698 55744 0.5780 +4698 55753 0.4170 +4698 55863 0.7560 +4698 55967 0.9990 +4698 56901 0.7940 +4698 56964 0.5400 +4698 56993 0.4250 +4698 57017 0.5060 +4698 57407 0.7900 +4698 57552 0.5100 +4698 58472 0.5510 +4698 58509 0.4440 +4698 63931 0.4620 +4698 64111 0.6390 +4698 64425 0.8290 +4698 65018 0.7020 +4698 79002 0.7160 +4698 79085 0.7760 +4698 79133 0.8290 +4698 79135 0.5730 +4698 79598 0.6580 +4698 79728 0.9690 +4698 79893 0.4300 +4698 80195 0.7890 +4698 80221 0.5780 +4698 80325 0.4500 +4698 81341 0.5380 +4698 81892 0.4380 +4698 84172 0.8160 +4698 84277 0.5910 +4698 84300 0.4080 +4698 84701 0.6020 +4698 84833 0.8870 +4698 84886 0.7070 +4698 84939 0.8970 +4698 84955 0.6290 +4698 90353 0.7180 +4698 90634 0.5250 +4698 91300 0.5340 +4698 91942 0.9680 +4698 112812 0.6100 +4698 114789 0.7510 +4698 116540 0.4220 +4698 119391 0.5530 +4698 120892 0.4190 +4698 125061 0.4710 +4698 125965 0.7770 +4698 126328 0.9990 +4698 126767 0.5020 +4698 130752 0.4030 +4698 131118 0.4330 +4698 137682 0.6590 +4698 139221 0.8970 +4698 142685 0.5310 +4698 150274 0.4100 +4698 165721 0.4480 +4698 170712 0.5340 +4698 221830 0.5990 +4698 267020 0.7540 +4698 283459 0.6530 +4698 284184 0.4330 +4698 284427 0.7510 +4698 343066 0.5020 +4698 344752 0.5020 +4698 374291 0.9990 +4698 387332 0.4940 +4698 388753 0.6760 +4698 401505 0.4830 +4698 440567 0.9870 +4698 440574 0.4170 +4698 493856 0.4580 +4698 497661 0.4710 +4698 728317 0.8970 +4698 100287932 0.4970 +4698 100532726 0.9510 +4700 4701 0.9990 +4700 4702 0.9990 +4700 4704 0.9990 +4700 4705 0.9990 +4700 4706 0.9990 +4700 4707 0.9990 +4700 4708 0.9990 +4700 4709 0.9990 +4700 4710 0.9990 +4700 4711 0.9990 +4700 4712 0.9990 +4700 4713 0.9990 +4700 4714 0.9990 +4700 4715 0.9990 +4700 4716 0.9990 +4700 4717 0.9990 +4700 4718 0.9990 +4700 4720 0.9990 +4700 4722 0.9990 +4700 4723 0.9990 +4700 4724 0.9990 +4700 4725 0.9990 +4700 4726 0.9990 +4700 4728 0.9990 +4700 4729 0.9990 +4700 4731 0.9990 +4700 4869 0.6130 +4700 5545 0.4470 +4700 5566 0.6570 +4700 5567 0.6590 +4700 5568 0.6540 +4700 6155 0.4010 +4700 6389 0.7660 +4700 6390 0.8630 +4700 6391 0.8970 +4700 6392 0.9300 +4700 6426 0.5880 +4700 6431 0.5680 +4700 6449 0.4800 +4700 6622 0.6730 +4700 7019 0.4090 +4700 7084 0.5910 +4700 7381 0.9990 +4700 7384 0.9870 +4700 7385 0.9700 +4700 7386 0.9990 +4700 7388 0.9980 +4700 8683 0.5890 +4700 8718 0.5890 +4700 8883 0.4640 +4700 9054 0.4080 +4700 9296 0.4230 +4700 9377 0.9870 +4700 9446 0.5990 +4700 9512 0.8950 +4700 9551 0.8900 +4700 9737 0.4810 +4700 10063 0.4500 +4700 10245 0.6550 +4700 10440 0.6860 +4700 10443 0.5360 +4700 10476 0.9470 +4700 10535 0.5080 +4700 10553 0.7790 +4700 10632 0.9210 +4700 10957 0.4310 +4700 10975 0.9910 +4700 11343 0.9150 +4700 23203 0.9050 +4700 23435 0.6570 +4700 23645 0.5400 +4700 23788 0.5230 +4700 25874 0.6350 +4700 25880 0.5510 +4700 25915 0.9230 +4700 26521 0.5040 +4700 27068 0.4860 +4700 27089 0.9970 +4700 28976 0.6150 +4700 28998 0.4850 +4700 29078 0.9050 +4700 29760 0.4280 +4700 29796 0.9990 +4700 29928 0.4900 +4700 29957 0.7510 +4700 50488 0.5740 +4700 51021 0.4250 +4700 51027 0.4100 +4700 51031 0.5700 +4700 51079 0.9990 +4700 51103 0.9850 +4700 51128 0.4670 +4700 51295 0.6720 +4700 51300 0.6500 +4700 54205 0.5000 +4700 54431 0.6460 +4700 54539 0.9990 +4700 54543 0.4650 +4700 54788 0.5040 +4700 55028 0.6510 +4700 55471 0.6270 +4700 55572 0.8200 +4700 55728 0.5360 +4700 55744 0.5460 +4700 55863 0.7000 +4700 55967 0.9990 +4700 56893 0.5220 +4700 56901 0.7740 +4700 56964 0.5400 +4700 56993 0.4290 +4700 57001 0.4120 +4700 57128 0.6070 +4700 57149 0.4680 +4700 57226 0.4750 +4700 57407 0.7770 +4700 57552 0.5110 +4700 58509 0.4240 +4700 63931 0.5240 +4700 65018 0.6840 +4700 79002 0.6920 +4700 79085 0.7500 +4700 79133 0.6920 +4700 79598 0.5910 +4700 79728 0.9480 +4700 79893 0.5100 +4700 79982 0.5090 +4700 80195 0.7770 +4700 80221 0.5110 +4700 81341 0.5400 +4700 84233 0.4120 +4700 84277 0.6090 +4700 84300 0.4020 +4700 84693 0.6120 +4700 84701 0.6240 +4700 84833 0.8720 +4700 84886 0.7060 +4700 84939 0.9030 +4700 84987 0.4230 +4700 85478 0.6470 +4700 90353 0.6900 +4700 90624 0.4860 +4700 90634 0.5360 +4700 91300 0.5400 +4700 91689 0.4340 +4700 91942 0.9630 +4700 93974 0.5390 +4700 112812 0.6660 +4700 114789 0.7530 +4700 114928 0.4830 +4700 118487 0.4270 +4700 119391 0.5850 +4700 125061 0.4740 +4700 125965 0.7570 +4700 126328 0.9990 +4700 126767 0.5030 +4700 137682 0.6300 +4700 139221 0.9030 +4700 144363 0.4410 +4700 150274 0.5280 +4700 150368 0.4430 +4700 154791 0.4470 +4700 170712 0.5700 +4700 171568 0.4070 +4700 192286 0.4090 +4700 201229 0.5130 +4700 201931 0.4130 +4700 202052 0.4960 +4700 219927 0.4540 +4700 267020 0.8670 +4700 283459 0.7090 +4700 284427 0.7480 +4700 343066 0.5030 +4700 344752 0.5030 +4700 374291 0.9990 +4700 388753 0.5720 +4700 388962 0.8810 +4700 440567 0.9780 +4700 493856 0.4350 +4700 552900 0.4130 +4700 644096 0.4870 +4700 654483 0.4190 +4700 728317 0.9030 +4700 100532726 0.9260 +4701 4702 0.9990 +4701 4704 0.9990 +4701 4705 0.9990 +4701 4706 0.9990 +4701 4707 0.9980 +4701 4708 0.9990 +4701 4709 0.9990 +4701 4710 0.9990 +4701 4711 0.9990 +4701 4712 0.9990 +4701 4713 0.9990 +4701 4714 0.9990 +4701 4715 0.9990 +4701 4716 0.9990 +4701 4717 0.9990 +4701 4718 0.9990 +4701 4720 0.9990 +4701 4722 0.9990 +4701 4723 0.9990 +4701 4724 0.9990 +4701 4725 0.9990 +4701 4726 0.9990 +4701 4728 0.9990 +4701 4729 0.9990 +4701 4731 0.9990 +4701 5300 0.4190 +4701 5435 0.4200 +4701 5441 0.4930 +4701 5566 0.6560 +4701 5567 0.6550 +4701 5568 0.6550 +4701 6150 0.4520 +4701 6234 0.4770 +4701 6341 0.4480 +4701 6342 0.4240 +4701 6390 0.5910 +4701 6391 0.4770 +4701 6392 0.5270 +4701 6622 0.6580 +4701 6834 0.4140 +4701 6923 0.4670 +4701 7084 0.5030 +4701 7381 0.9570 +4701 7384 0.9500 +4701 7385 0.9440 +4701 7386 0.9290 +4701 7388 0.9710 +4701 8192 0.6510 +4701 9296 0.4430 +4701 9377 0.9590 +4701 9512 0.6000 +4701 9551 0.9220 +4701 9556 0.6200 +4701 10245 0.4150 +4701 10476 0.9130 +4701 10553 0.4610 +4701 10632 0.8530 +4701 10975 0.9890 +4701 23203 0.5240 +4701 23435 0.6570 +4701 25828 0.4130 +4701 25880 0.5770 +4701 25915 0.9010 +4701 26519 0.5230 +4701 26521 0.5910 +4701 27089 0.9770 +4701 28974 0.4090 +4701 28976 0.6450 +4701 28977 0.5010 +4701 28998 0.4450 +4701 29078 0.8590 +4701 29085 0.6910 +4701 29796 0.9920 +4701 51023 0.4860 +4701 51079 0.9990 +4701 51103 0.9780 +4701 51295 0.6610 +4701 51300 0.6030 +4701 51529 0.4020 +4701 51650 0.5400 +4701 54439 0.4240 +4701 54460 0.4690 +4701 54534 0.4080 +4701 54539 0.9990 +4701 54543 0.4440 +4701 54998 0.4090 +4701 55028 0.5020 +4701 55471 0.7400 +4701 55572 0.7820 +4701 55744 0.5640 +4701 55863 0.6250 +4701 55967 0.9990 +4701 56901 0.8040 +4701 56964 0.5400 +4701 57407 0.4650 +4701 63931 0.4500 +4701 64077 0.5000 +4701 64928 0.5450 +4701 64951 0.4910 +4701 64976 0.4300 +4701 65018 0.6870 +4701 79002 0.4050 +4701 79133 0.6330 +4701 79598 0.5030 +4701 79728 0.9480 +4701 79922 0.4920 +4701 80195 0.4580 +4701 84277 0.8220 +4701 84300 0.4460 +4701 84681 0.4110 +4701 84701 0.5730 +4701 84833 0.4930 +4701 84886 0.5580 +4701 84939 0.6890 +4701 84987 0.5800 +4701 90353 0.6900 +4701 91942 0.9590 +4701 116540 0.5520 +4701 118487 0.5320 +4701 125965 0.5130 +4701 125988 0.7140 +4701 126328 0.9990 +4701 128308 0.4510 +4701 137682 0.5830 +4701 139221 0.6890 +4701 140823 0.4780 +4701 150274 0.4550 +4701 192286 0.4880 +4701 219927 0.4070 +4701 267020 0.7520 +4701 283459 0.4070 +4701 374291 0.9990 +4701 388753 0.4150 +4701 404672 0.4420 +4701 440567 0.6420 +4701 474354 0.4270 +4701 728317 0.6890 +4701 100532726 0.9350 +4702 4704 0.9990 +4702 4705 0.9990 +4702 4706 0.9990 +4702 4707 0.9990 +4702 4708 0.9970 +4702 4709 0.9990 +4702 4710 0.9990 +4702 4711 0.9990 +4702 4712 0.9990 +4702 4713 0.9990 +4702 4714 0.9990 +4702 4715 0.9990 +4702 4716 0.9990 +4702 4717 0.9980 +4702 4718 0.9990 +4702 4720 0.9990 +4702 4722 0.9990 +4702 4723 0.9990 +4702 4724 0.9990 +4702 4725 0.9990 +4702 4726 0.9990 +4702 4728 0.9990 +4702 4729 0.9990 +4702 4731 0.9990 +4702 5162 0.6160 +4702 5245 0.4750 +4702 5566 0.6500 +4702 5567 0.6500 +4702 5568 0.6500 +4702 5694 0.4270 +4702 5706 0.4050 +4702 6389 0.8130 +4702 6390 0.9520 +4702 6391 0.9140 +4702 6392 0.9510 +4702 6426 0.5680 +4702 6622 0.6620 +4702 7019 0.4270 +4702 7084 0.6380 +4702 7284 0.4140 +4702 7381 0.9990 +4702 7384 0.9920 +4702 7385 0.9880 +4702 7386 0.9970 +4702 7388 0.9960 +4702 7416 0.5130 +4702 7417 0.4440 +4702 8192 0.5700 +4702 8195 0.4890 +4702 8402 0.5230 +4702 8624 0.4170 +4702 8683 0.5760 +4702 8802 0.6670 +4702 9131 0.4420 +4702 9296 0.5350 +4702 9377 0.9890 +4702 9446 0.6030 +4702 9512 0.9240 +4702 9551 0.8050 +4702 9556 0.4600 +4702 9582 0.4620 +4702 10063 0.6190 +4702 10165 0.4470 +4702 10229 0.4160 +4702 10245 0.7370 +4702 10367 0.4350 +4702 10440 0.7800 +4702 10443 0.5100 +4702 10476 0.9700 +4702 10553 0.8270 +4702 10632 0.7910 +4702 10923 0.4910 +4702 10939 0.4950 +4702 10975 0.9830 +4702 11112 0.4420 +4702 11331 0.7400 +4702 11343 0.9300 +4702 23203 0.7460 +4702 23435 0.6540 +4702 23645 0.5840 +4702 25828 0.5700 +4702 25880 0.6170 +4702 25915 0.9990 +4702 26517 0.5580 +4702 26521 0.5960 +4702 27089 0.9950 +4702 27350 0.4610 +4702 27429 0.4150 +4702 28956 0.4190 +4702 28958 0.7380 +4702 28976 0.7170 +4702 29074 0.7800 +4702 29078 0.9370 +4702 29085 0.5250 +4702 29088 0.4660 +4702 29090 0.5430 +4702 29093 0.4390 +4702 29796 0.9990 +4702 29928 0.7590 +4702 29957 0.8290 +4702 51021 0.4660 +4702 51023 0.4600 +4702 51069 0.5610 +4702 51079 0.9990 +4702 51103 0.9950 +4702 51142 0.6040 +4702 51258 0.4360 +4702 51263 0.4010 +4702 51264 0.5300 +4702 51287 0.5430 +4702 51295 0.9380 +4702 51300 0.9990 +4702 51650 0.4460 +4702 54205 0.6160 +4702 54460 0.5550 +4702 54539 0.9990 +4702 54902 0.4630 +4702 54927 0.5890 +4702 54948 0.4780 +4702 54998 0.6100 +4702 55028 0.4510 +4702 55168 0.5120 +4702 55471 0.6000 +4702 55572 0.8750 +4702 55728 0.5090 +4702 55744 0.5440 +4702 55863 0.7100 +4702 55967 0.9990 +4702 56901 0.6630 +4702 56964 0.5400 +4702 56993 0.5380 +4702 57017 0.4750 +4702 57379 0.4600 +4702 57407 0.8320 +4702 57459 0.4120 +4702 58509 0.6200 +4702 60489 0.4730 +4702 64111 0.4780 +4702 64756 0.4150 +4702 64963 0.4600 +4702 64975 0.4160 +4702 64976 0.4180 +4702 64979 0.4100 +4702 65018 0.7120 +4702 65260 0.4650 +4702 79002 0.6510 +4702 79085 0.8200 +4702 79133 0.6950 +4702 79135 0.4240 +4702 79590 0.5060 +4702 79598 0.6380 +4702 79728 0.9450 +4702 79893 0.4300 +4702 80195 0.8280 +4702 81341 0.5990 +4702 84300 0.4330 +4702 84303 0.7950 +4702 84545 0.4930 +4702 84701 0.8100 +4702 84833 0.5610 +4702 84886 0.7270 +4702 84939 0.9430 +4702 84987 0.6300 +4702 90353 0.6900 +4702 90634 0.5090 +4702 90639 0.4450 +4702 90871 0.4230 +4702 91300 0.5840 +4702 91689 0.5460 +4702 91942 0.9500 +4702 92609 0.5000 +4702 93974 0.6620 +4702 94081 0.4070 +4702 112812 0.6720 +4702 114789 0.8530 +4702 116541 0.4090 +4702 118487 0.5420 +4702 119391 0.5460 +4702 125965 0.7150 +4702 125988 0.4450 +4702 126328 0.9990 +4702 128308 0.4010 +4702 131474 0.6460 +4702 137682 0.6610 +4702 139221 0.9420 +4702 140564 0.4600 +4702 140823 0.6590 +4702 164668 0.4600 +4702 170712 0.4580 +4702 192286 0.4650 +4702 200315 0.4600 +4702 200316 0.4680 +4702 219927 0.5020 +4702 221154 0.4070 +4702 254956 0.4820 +4702 267020 0.5250 +4702 283459 0.6110 +4702 284184 0.4090 +4702 284427 0.8020 +4702 374291 0.9990 +4702 388753 0.7530 +4702 388962 0.5550 +4702 400916 0.4030 +4702 401505 0.4970 +4702 440567 0.9610 +4702 440574 0.5110 +4702 493856 0.6460 +4702 728317 0.9420 +4702 100287932 0.4830 +4702 100532726 0.9520 +4704 4705 0.9990 +4704 4706 0.9990 +4704 4707 0.9990 +4704 4708 0.9950 +4704 4709 0.9990 +4704 4710 0.9990 +4704 4711 0.9990 +4704 4712 0.9990 +4704 4713 0.9990 +4704 4714 0.9990 +4704 4715 0.9990 +4704 4716 0.9990 +4704 4717 0.9930 +4704 4718 0.9990 +4704 4720 0.9990 +4704 4722 0.9990 +4704 4723 0.9990 +4704 4724 0.9990 +4704 4725 0.9990 +4704 4726 0.9990 +4704 4728 0.9990 +4704 4729 0.9990 +4704 4731 0.9990 +4704 4967 0.5370 +4704 4976 0.4540 +4704 5018 0.4420 +4704 5162 0.7330 +4704 5245 0.6510 +4704 5250 0.5000 +4704 5447 0.4110 +4704 5566 0.6850 +4704 5567 0.6840 +4704 5568 0.6830 +4704 5664 0.6440 +4704 6182 0.4200 +4704 6389 0.9820 +4704 6390 0.9650 +4704 6391 0.9020 +4704 6392 0.8870 +4704 6426 0.4820 +4704 6622 0.6890 +4704 6648 0.6230 +4704 6834 0.4350 +4704 7019 0.6690 +4704 7084 0.5020 +4704 7284 0.8550 +4704 7351 0.5010 +4704 7356 0.4320 +4704 7381 0.9890 +4704 7384 0.9980 +4704 7385 0.9970 +4704 7386 0.9990 +4704 7388 0.9710 +4704 7416 0.7700 +4704 7417 0.5390 +4704 7419 0.5520 +4704 7818 0.6090 +4704 8192 0.5510 +4704 8402 0.5140 +4704 8683 0.5110 +4704 8802 0.7740 +4704 9093 0.5930 +4704 9167 0.5190 +4704 9361 0.5160 +4704 9377 0.9910 +4704 9446 0.5160 +4704 9512 0.9270 +4704 9551 0.6240 +4704 9804 0.6060 +4704 9862 0.4150 +4704 9927 0.4750 +4704 10102 0.4080 +4704 10128 0.5110 +4704 10229 0.7430 +4704 10245 0.5360 +4704 10328 0.6670 +4704 10425 0.4530 +4704 10440 0.6050 +4704 10443 0.4490 +4704 10452 0.4290 +4704 10476 0.8360 +4704 10535 0.4560 +4704 10553 0.7040 +4704 10632 0.5840 +4704 10891 0.4760 +4704 10939 0.5720 +4704 10975 0.9390 +4704 10989 0.7470 +4704 11112 0.4160 +4704 11331 0.5480 +4704 11343 0.8180 +4704 23203 0.8500 +4704 23408 0.6310 +4704 23409 0.6180 +4704 23410 0.9760 +4704 23435 0.6520 +4704 23530 0.4800 +4704 23590 0.4920 +4704 23645 0.5940 +4704 25813 0.4200 +4704 25828 0.4310 +4704 25880 0.5090 +4704 25915 0.8020 +4704 26151 0.4760 +4704 27089 0.9850 +4704 27235 0.6860 +4704 27247 0.4180 +4704 28958 0.5790 +4704 28973 0.4340 +4704 28976 0.7680 +4704 29078 0.8240 +4704 29103 0.4820 +4704 29796 0.9990 +4704 29928 0.4710 +4704 29957 0.5350 +4704 51004 0.6300 +4704 51067 0.4430 +4704 51069 0.4380 +4704 51079 0.9990 +4704 51081 0.5280 +4704 51102 0.4090 +4704 51103 0.9760 +4704 51117 0.6300 +4704 51295 0.6970 +4704 51300 0.9970 +4704 51642 0.5100 +4704 51759 0.4070 +4704 51805 0.7310 +4704 54205 0.6640 +4704 54431 0.4840 +4704 54539 0.9990 +4704 54927 0.6180 +4704 55143 0.4770 +4704 55471 0.6250 +4704 55572 0.8230 +4704 55669 0.4160 +4704 55728 0.4240 +4704 55744 0.6040 +4704 55863 0.6030 +4704 55967 0.9990 +4704 56901 0.6010 +4704 56945 0.5330 +4704 56964 0.5400 +4704 56993 0.5240 +4704 57017 0.8050 +4704 57552 0.4730 +4704 64077 0.4020 +4704 64969 0.5190 +4704 65003 0.4050 +4704 65018 0.7370 +4704 79002 0.4130 +4704 79085 0.5580 +4704 79133 0.7070 +4704 79135 0.5040 +4704 79598 0.4970 +4704 79728 0.8740 +4704 79893 0.4840 +4704 79934 0.6140 +4704 80221 0.5520 +4704 80224 0.6340 +4704 80273 0.6580 +4704 81341 0.6130 +4704 84274 0.7420 +4704 84277 0.4930 +4704 84311 0.5400 +4704 84532 0.5650 +4704 84693 0.4440 +4704 84701 0.9070 +4704 84886 0.7060 +4704 84939 0.7620 +4704 84987 0.4560 +4704 90353 0.4750 +4704 90550 0.7110 +4704 90634 0.4240 +4704 91300 0.5940 +4704 91942 0.9080 +4704 93974 0.4420 +4704 112812 0.6490 +4704 114789 0.5320 +4704 119391 0.5000 +4704 124995 0.5420 +4704 125965 0.5060 +4704 126328 0.9990 +4704 126767 0.4650 +4704 134266 0.4660 +4704 136332 0.4450 +4704 137682 0.6830 +4704 139221 0.7620 +4704 139322 0.4050 +4704 165721 0.4560 +4704 192286 0.4340 +4704 221143 0.8210 +4704 267020 0.4130 +4704 283459 0.4440 +4704 284427 0.5300 +4704 343066 0.4650 +4704 344752 0.4650 +4704 374291 0.9990 +4704 388753 0.4990 +4704 440567 0.7830 +4704 440574 0.4450 +4704 548645 0.4220 +4704 728317 0.7620 +4704 100287932 0.4250 +4704 100532726 0.8950 +4705 4706 0.9990 +4705 4707 0.9950 +4705 4708 0.9990 +4705 4709 0.9990 +4705 4710 0.9990 +4705 4711 0.9990 +4705 4712 0.9990 +4705 4713 0.9990 +4705 4714 0.9990 +4705 4715 0.9990 +4705 4716 0.9990 +4705 4717 0.9980 +4705 4718 0.9990 +4705 4720 0.9990 +4705 4722 0.9990 +4705 4723 0.9990 +4705 4724 0.9990 +4705 4725 0.9990 +4705 4726 0.9990 +4705 4728 0.9990 +4705 4729 0.9990 +4705 4731 0.9990 +4705 4967 0.4400 +4705 5018 0.4030 +4705 5096 0.4190 +4705 5162 0.5680 +4705 5245 0.5180 +4705 5250 0.5750 +4705 5566 0.6560 +4705 5567 0.6560 +4705 5568 0.6560 +4705 5878 0.4210 +4705 6389 0.7930 +4705 6390 0.6800 +4705 6391 0.5970 +4705 6392 0.4100 +4705 6622 0.6870 +4705 7083 0.5360 +4705 7284 0.8980 +4705 7298 0.6570 +4705 7381 0.9560 +4705 7384 0.9960 +4705 7385 0.9860 +4705 7386 0.9710 +4705 7388 0.9320 +4705 7818 0.5550 +4705 8050 0.5250 +4705 8192 0.4880 +4705 8565 0.4640 +4705 8802 0.8360 +4705 9377 0.9810 +4705 9391 0.4260 +4705 9512 0.9190 +4705 9551 0.5210 +4705 10005 0.4120 +4705 10131 0.4670 +4705 10476 0.6790 +4705 10553 0.5000 +4705 10632 0.4790 +4705 10975 0.9200 +4705 10989 0.6210 +4705 23203 0.4790 +4705 23435 0.6850 +4705 25813 0.5260 +4705 25880 0.5690 +4705 25915 0.8960 +4705 27068 0.4640 +4705 27089 0.9530 +4705 28976 0.7440 +4705 29078 0.9060 +4705 29796 0.9020 +4705 51079 0.9990 +4705 51103 0.9850 +4705 51263 0.4530 +4705 51295 0.6530 +4705 51300 0.7190 +4705 54205 0.4410 +4705 54539 0.9990 +4705 55143 0.4230 +4705 55174 0.4570 +4705 55364 0.5060 +4705 55471 0.7210 +4705 55572 0.8750 +4705 55744 0.6380 +4705 55863 0.7790 +4705 55967 0.9990 +4705 56886 0.4230 +4705 56901 0.5690 +4705 56964 0.5400 +4705 57407 0.5000 +4705 57536 0.4430 +4705 64847 0.6040 +4705 64969 0.5110 +4705 65018 0.8140 +4705 65993 0.4170 +4705 79002 0.4380 +4705 79133 0.8000 +4705 79728 0.9490 +4705 80195 0.4970 +4705 80273 0.6250 +4705 80817 0.4020 +4705 84701 0.8590 +4705 84886 0.5460 +4705 84939 0.6870 +4705 90353 0.7150 +4705 91942 0.9140 +4705 124783 0.4340 +4705 125965 0.5370 +4705 126328 0.9990 +4705 129607 0.5030 +4705 137682 0.8140 +4705 139221 0.6870 +4705 170712 0.5250 +4705 221656 0.4220 +4705 374291 0.9990 +4705 388753 0.4570 +4705 440567 0.4930 +4705 643803 0.4440 +4705 728317 0.6870 +4705 100532726 0.9170 +4706 4707 0.9990 +4706 4708 0.9990 +4706 4709 0.9990 +4706 4710 0.9990 +4706 4711 0.9990 +4706 4712 0.9990 +4706 4713 0.9990 +4706 4714 0.9990 +4706 4715 0.9990 +4706 4716 0.9990 +4706 4717 0.9990 +4706 4718 0.9990 +4706 4720 0.9990 +4706 4722 0.9990 +4706 4723 0.9990 +4706 4724 0.9990 +4706 4725 0.9990 +4706 4726 0.9990 +4706 4728 0.9990 +4706 4729 0.9990 +4706 4731 0.9990 +4706 4904 0.4440 +4706 4967 0.5290 +4706 5095 0.4780 +4706 5096 0.6050 +4706 5162 0.7410 +4706 5163 0.4700 +4706 5164 0.4610 +4706 5165 0.4910 +4706 5213 0.4320 +4706 5226 0.5470 +4706 5236 0.6250 +4706 5300 0.4030 +4706 5303 0.4050 +4706 5315 0.4210 +4706 5432 0.5020 +4706 5435 0.4940 +4706 5464 0.4010 +4706 5478 0.4010 +4706 5566 0.6510 +4706 5567 0.6500 +4706 5568 0.6500 +4706 5686 0.4590 +4706 6122 0.6290 +4706 6123 0.6410 +4706 6136 0.6300 +4706 6150 0.9560 +4706 6154 0.6220 +4706 6175 0.6150 +4706 6182 0.9610 +4706 6183 0.5200 +4706 6205 0.4540 +4706 6222 0.6310 +4706 6224 0.4500 +4706 6228 0.5210 +4706 6235 0.4050 +4706 6301 0.6040 +4706 6389 0.6370 +4706 6390 0.6510 +4706 6391 0.5040 +4706 6392 0.5880 +4706 6426 0.5060 +4706 6472 0.4160 +4706 6622 0.6790 +4706 6647 0.4370 +4706 6742 0.6170 +4706 6888 0.4910 +4706 6894 0.5310 +4706 7084 0.6690 +4706 7167 0.5460 +4706 7284 0.9490 +4706 7381 0.9750 +4706 7384 0.9830 +4706 7385 0.9710 +4706 7386 0.9950 +4706 7388 0.9760 +4706 7419 0.4920 +4706 7818 0.4510 +4706 8050 0.4700 +4706 8192 0.5230 +4706 8225 0.8030 +4706 8443 0.5800 +4706 8513 0.4950 +4706 8624 0.4410 +4706 8683 0.5260 +4706 8802 0.6240 +4706 8808 0.8850 +4706 8809 0.4720 +4706 8813 0.4450 +4706 9054 0.9640 +4706 9141 0.5080 +4706 9349 0.8600 +4706 9377 0.9860 +4706 9446 0.5230 +4706 9512 0.7730 +4706 9533 0.4620 +4706 9550 0.4220 +4706 9551 0.6200 +4706 9553 0.9750 +4706 9563 0.4780 +4706 9669 0.4740 +4706 9801 0.9670 +4706 9804 0.4510 +4706 9862 0.6530 +4706 10063 0.5150 +4706 10102 0.5280 +4706 10105 0.4450 +4706 10213 0.5100 +4706 10245 0.4330 +4706 10294 0.4330 +4706 10440 0.4780 +4706 10455 0.4950 +4706 10465 0.5040 +4706 10473 0.6300 +4706 10476 0.7380 +4706 10535 0.5510 +4706 10539 0.6780 +4706 10553 0.6940 +4706 10573 0.9400 +4706 10632 0.7020 +4706 10845 0.4450 +4706 10884 0.9430 +4706 10901 0.5000 +4706 10975 0.9290 +4706 10989 0.4880 +4706 11112 0.5210 +4706 11222 0.9890 +4706 11343 0.8280 +4706 22982 0.6520 +4706 23171 0.4200 +4706 23181 0.6520 +4706 23203 0.7160 +4706 23435 0.6550 +4706 23479 0.8000 +4706 23521 0.6920 +4706 23645 0.5710 +4706 25864 0.5020 +4706 25874 0.4080 +4706 25880 0.6140 +4706 25915 0.8990 +4706 25953 0.4440 +4706 25988 0.4430 +4706 26024 0.4030 +4706 26063 0.4030 +4706 26164 0.8640 +4706 26284 0.4570 +4706 26354 0.4900 +4706 26519 0.4430 +4706 26521 0.4060 +4706 26589 0.9660 +4706 27068 0.4320 +4706 27079 0.5720 +4706 27089 0.9720 +4706 27177 0.4100 +4706 27247 0.5050 +4706 27349 0.9930 +4706 28972 0.4900 +4706 28976 0.7700 +4706 28977 0.9480 +4706 28998 0.9910 +4706 29074 0.9480 +4706 29078 0.9180 +4706 29083 0.8170 +4706 29088 0.9760 +4706 29093 0.9520 +4706 29796 0.9810 +4706 29880 0.4640 +4706 29889 0.4600 +4706 29928 0.4770 +4706 29957 0.5190 +4706 29960 0.8220 +4706 51021 0.6410 +4706 51023 0.5880 +4706 51027 0.5760 +4706 51031 0.4620 +4706 51067 0.4150 +4706 51069 0.9430 +4706 51073 0.9530 +4706 51079 0.9990 +4706 51081 0.5120 +4706 51099 0.4990 +4706 51102 0.5720 +4706 51103 0.9850 +4706 51106 0.4120 +4706 51109 0.4040 +4706 51110 0.4800 +4706 51121 0.6550 +4706 51138 0.4370 +4706 51142 0.5760 +4706 51144 0.4590 +4706 51154 0.6130 +4706 51218 0.6330 +4706 51250 0.8380 +4706 51253 0.9490 +4706 51258 0.9710 +4706 51263 0.9530 +4706 51264 0.9620 +4706 51295 0.6410 +4706 51300 0.6240 +4706 51314 0.4240 +4706 51318 0.9550 +4706 51400 0.5410 +4706 51444 0.5190 +4706 51497 0.4320 +4706 51540 0.6270 +4706 51601 0.4060 +4706 51637 0.4220 +4706 51642 0.9470 +4706 51645 0.4240 +4706 51650 0.4540 +4706 51805 0.4790 +4706 54059 0.4390 +4706 54148 0.9450 +4706 54205 0.5590 +4706 54431 0.6560 +4706 54517 0.5980 +4706 54534 0.9610 +4706 54539 0.9990 +4706 54552 0.4530 +4706 54596 0.6610 +4706 54938 0.6030 +4706 54941 0.5160 +4706 54948 0.9570 +4706 54995 0.9990 +4706 55052 0.9850 +4706 55168 0.9480 +4706 55173 0.5060 +4706 55178 0.9650 +4706 55272 0.4770 +4706 55276 0.4910 +4706 55293 0.5250 +4706 55301 0.6520 +4706 55316 0.4050 +4706 55341 0.4380 +4706 55347 0.5090 +4706 55471 0.6510 +4706 55572 0.8500 +4706 55733 0.8070 +4706 55744 0.5470 +4706 55794 0.8810 +4706 55830 0.4550 +4706 55856 0.5080 +4706 55863 0.6830 +4706 55967 0.9990 +4706 56061 0.5260 +4706 56901 0.5520 +4706 56922 0.4260 +4706 56964 0.5400 +4706 57001 0.8350 +4706 57128 0.9970 +4706 57129 0.9860 +4706 57149 0.5770 +4706 57226 0.8800 +4706 57406 0.4970 +4706 57407 0.6930 +4706 57467 0.8070 +4706 57508 0.5010 +4706 57552 0.4920 +4706 57609 0.6570 +4706 57678 0.5690 +4706 60496 0.7800 +4706 63874 0.4950 +4706 63875 0.9920 +4706 63931 0.4480 +4706 64087 0.5420 +4706 64745 0.4610 +4706 64756 0.4850 +4706 64928 0.9490 +4706 64960 0.5200 +4706 64968 0.5220 +4706 64975 0.9360 +4706 64976 0.9400 +4706 64978 0.9400 +4706 64979 0.9700 +4706 64981 0.9420 +4706 64983 0.9850 +4706 65003 0.9880 +4706 65005 0.9510 +4706 65008 0.4420 +4706 65018 0.6500 +4706 65080 0.9450 +4706 78988 0.9390 +4706 79002 0.5020 +4706 79085 0.5180 +4706 79133 0.7990 +4706 79575 0.5000 +4706 79590 0.9870 +4706 79598 0.6820 +4706 79852 0.4950 +4706 79922 0.6250 +4706 80195 0.6890 +4706 80221 0.7110 +4706 81341 0.5710 +4706 81892 0.5990 +4706 83448 0.5840 +4706 83451 0.5420 +4706 83693 0.4430 +4706 84263 0.5900 +4706 84264 0.4140 +4706 84273 0.5810 +4706 84311 0.9390 +4706 84516 0.5500 +4706 84545 0.9870 +4706 84656 0.5020 +4706 84701 0.6030 +4706 84705 0.7970 +4706 84817 0.5630 +4706 84833 0.5760 +4706 84836 0.5020 +4706 84869 0.4100 +4706 84881 0.5890 +4706 84886 0.4260 +4706 84939 0.7750 +4706 85865 0.8230 +4706 90353 0.5190 +4706 90480 0.9380 +4706 90624 0.8380 +4706 90865 0.4080 +4706 91300 0.5710 +4706 91574 0.8220 +4706 91647 0.6730 +4706 91942 0.9410 +4706 92170 0.9530 +4706 92483 0.5160 +4706 93650 0.4720 +4706 93974 0.4970 +4706 112812 0.8600 +4706 113000 0.6560 +4706 114789 0.5120 +4706 115416 0.9910 +4706 115817 0.4200 +4706 116540 0.9420 +4706 116541 0.9470 +4706 119391 0.4240 +4706 122704 0.9450 +4706 123263 0.4510 +4706 124454 0.4290 +4706 124995 0.9430 +4706 125061 0.4200 +4706 125965 0.5720 +4706 126328 0.9990 +4706 126410 0.4010 +4706 126767 0.4870 +4706 126789 0.4420 +4706 128308 0.9320 +4706 130752 0.5480 +4706 130916 0.8560 +4706 132949 0.9870 +4706 137682 0.7080 +4706 139221 0.7750 +4706 142910 0.4950 +4706 144363 0.9480 +4706 150763 0.5510 +4706 152206 0.8070 +4706 153364 0.4750 +4706 157869 0.6520 +4706 160287 0.5160 +4706 170712 0.4740 +4706 196074 0.4990 +4706 197322 0.6600 +4706 201229 0.6060 +4706 219927 0.9980 +4706 253152 0.4950 +4706 253190 0.4950 +4706 267020 0.4590 +4706 283459 0.5110 +4706 284184 0.4370 +4706 284427 0.5120 +4706 284697 0.4950 +4706 285367 0.5640 +4706 317749 0.4050 +4706 340654 0.4950 +4706 343066 0.4870 +4706 344752 0.4870 +4706 374291 0.9990 +4706 374395 0.6000 +4706 374659 0.6650 +4706 376497 0.6570 +4706 387338 0.8540 +4706 387787 0.8430 +4706 388649 0.4950 +4706 388753 0.6030 +4706 388962 0.7270 +4706 440567 0.7040 +4706 552900 0.5980 +4706 643414 0.4950 +4706 643418 0.4950 +4706 644096 0.5020 +4706 654483 0.5890 +4706 728317 0.7750 +4706 100130890 0.4370 +4706 100131187 0.4450 +4706 100287932 0.4520 +4706 100532726 0.9840 +4706 127898561 0.9650 +4707 4708 0.9980 +4707 4709 0.9990 +4707 4710 0.9990 +4707 4711 0.9990 +4707 4712 0.9990 +4707 4713 0.9980 +4707 4714 0.9950 +4707 4715 0.9980 +4707 4716 0.9990 +4707 4717 0.9950 +4707 4718 0.9990 +4707 4720 0.9960 +4707 4722 0.9980 +4707 4723 0.9950 +4707 4724 0.9960 +4707 4725 0.9980 +4707 4726 0.9980 +4707 4728 0.9950 +4707 4729 0.9980 +4707 4731 0.9970 +4707 5164 0.4350 +4707 5566 0.6520 +4707 5567 0.6500 +4707 5568 0.6500 +4707 6389 0.4060 +4707 6390 0.6260 +4707 6622 0.6500 +4707 7084 0.4080 +4707 7381 0.9600 +4707 7384 0.8930 +4707 7385 0.9020 +4707 7386 0.9250 +4707 7388 0.9340 +4707 9377 0.9160 +4707 9551 0.6220 +4707 9553 0.6530 +4707 9556 0.5120 +4707 10063 0.7230 +4707 10363 0.4100 +4707 10476 0.6090 +4707 10632 0.6190 +4707 10975 0.9610 +4707 23435 0.6570 +4707 25880 0.5890 +4707 25915 0.5740 +4707 26521 0.4320 +4707 27089 0.9400 +4707 28958 0.4200 +4707 28976 0.6190 +4707 29078 0.8370 +4707 29796 0.9660 +4707 51021 0.5020 +4707 51079 0.9980 +4707 51103 0.9490 +4707 51241 0.5580 +4707 51295 0.9090 +4707 51300 0.7230 +4707 51650 0.6930 +4707 54205 0.5390 +4707 54460 0.4100 +4707 54539 0.9990 +4707 54543 0.4210 +4707 54968 0.6070 +4707 55101 0.4970 +4707 55471 0.5550 +4707 55572 0.8920 +4707 55744 0.5410 +4707 55863 0.6690 +4707 55967 0.9970 +4707 56964 0.5400 +4707 65018 0.6500 +4707 79133 0.6600 +4707 79598 0.4080 +4707 79728 0.8760 +4707 81892 0.6370 +4707 84277 0.4910 +4707 84833 0.6930 +4707 84939 0.4170 +4707 84987 0.4550 +4707 91942 0.7130 +4707 126328 0.9970 +4707 128308 0.4270 +4707 137682 0.6120 +4707 139221 0.4170 +4707 150678 0.4680 +4707 170712 0.5210 +4707 374291 0.9960 +4707 404672 0.4510 +4707 728317 0.4170 +4707 100131801 0.9200 +4707 100532726 0.7990 +4708 4709 0.9990 +4708 4710 0.9990 +4708 4711 0.9980 +4708 4712 0.9970 +4708 4713 0.9990 +4708 4714 0.9990 +4708 4715 0.9990 +4708 4716 0.9990 +4708 4717 0.9980 +4708 4718 0.9960 +4708 4720 0.9960 +4708 4722 0.9960 +4708 4723 0.9960 +4708 4724 0.9960 +4708 4725 0.9950 +4708 4726 0.9970 +4708 4728 0.9960 +4708 4729 0.9970 +4708 4731 0.9980 +4708 5566 0.6500 +4708 5567 0.6500 +4708 5568 0.6500 +4708 6622 0.6710 +4708 6742 0.6530 +4708 7381 0.9130 +4708 7384 0.8660 +4708 7385 0.8600 +4708 7386 0.8800 +4708 7388 0.9050 +4708 7979 0.4200 +4708 8192 0.4190 +4708 8322 0.5490 +4708 9377 0.8840 +4708 9512 0.4440 +4708 9551 0.6300 +4708 9553 0.4390 +4708 10440 0.6690 +4708 10476 0.4400 +4708 10632 0.5180 +4708 10975 0.9370 +4708 23435 0.6500 +4708 25880 0.5440 +4708 25915 0.8480 +4708 27089 0.9560 +4708 28972 0.4750 +4708 28976 0.5630 +4708 29078 0.8610 +4708 29796 0.9250 +4708 51079 0.9970 +4708 51103 0.9770 +4708 51241 0.4270 +4708 51258 0.4290 +4708 51295 0.5260 +4708 51300 0.5490 +4708 51650 0.9290 +4708 54539 0.9970 +4708 54543 0.4180 +4708 55052 0.4860 +4708 55471 0.4990 +4708 55572 0.7480 +4708 55744 0.5570 +4708 55863 0.5560 +4708 55967 0.9960 +4708 56901 0.5490 +4708 56964 0.5400 +4708 59286 0.4010 +4708 64981 0.4110 +4708 65018 0.6740 +4708 78988 0.4630 +4708 79017 0.4960 +4708 79133 0.5490 +4708 79728 0.6420 +4708 81892 0.7700 +4708 84939 0.4290 +4708 91942 0.8640 +4708 126328 0.9960 +4708 137682 0.5140 +4708 139221 0.4280 +4708 374291 0.9960 +4708 728317 0.4280 +4708 100131801 0.4010 +4708 100532726 0.7650 +4709 4710 0.9990 +4709 4711 0.9990 +4709 4712 0.9990 +4709 4713 0.9990 +4709 4714 0.9990 +4709 4715 0.9990 +4709 4716 0.9990 +4709 4717 0.9990 +4709 4718 0.9990 +4709 4720 0.9990 +4709 4722 0.9990 +4709 4723 0.9990 +4709 4724 0.9990 +4709 4725 0.9990 +4709 4726 0.9990 +4709 4728 0.9990 +4709 4729 0.9990 +4709 4731 0.9990 +4709 5566 0.6510 +4709 5567 0.6500 +4709 5568 0.6500 +4709 5685 0.4390 +4709 6389 0.5410 +4709 6390 0.7620 +4709 6391 0.6380 +4709 6392 0.5770 +4709 6622 0.6610 +4709 6635 0.4130 +4709 6637 0.4640 +4709 6834 0.4290 +4709 7084 0.6050 +4709 7295 0.4610 +4709 7381 0.9810 +4709 7384 0.9400 +4709 7385 0.9600 +4709 7386 0.9800 +4709 7388 0.9740 +4709 7453 0.8930 +4709 8565 0.4540 +4709 9377 0.9470 +4709 9512 0.4790 +4709 9551 0.8670 +4709 9553 0.6330 +4709 9556 0.5410 +4709 10063 0.5800 +4709 10245 0.5050 +4709 10440 0.5710 +4709 10476 0.9310 +4709 10553 0.7240 +4709 10632 0.8040 +4709 10651 0.4370 +4709 10935 0.4070 +4709 10975 0.9590 +4709 10987 0.4630 +4709 11343 0.8980 +4709 23203 0.4810 +4709 23435 0.6520 +4709 25880 0.5730 +4709 25915 0.8970 +4709 25994 0.4810 +4709 26521 0.5130 +4709 27089 0.9850 +4709 27109 0.4420 +4709 27247 0.4120 +4709 27258 0.4300 +4709 28958 0.4750 +4709 28976 0.6900 +4709 28998 0.5060 +4709 29078 0.9240 +4709 29796 0.9800 +4709 29957 0.6200 +4709 51023 0.4320 +4709 51079 0.9990 +4709 51103 0.9840 +4709 51108 0.4690 +4709 51121 0.4840 +4709 51241 0.4080 +4709 51258 0.4570 +4709 51263 0.4150 +4709 51295 0.6380 +4709 51300 0.7530 +4709 51372 0.4420 +4709 51650 0.5690 +4709 53938 0.4700 +4709 54460 0.4960 +4709 54539 0.9990 +4709 54543 0.7310 +4709 54951 0.4630 +4709 55028 0.4770 +4709 55471 0.6880 +4709 55572 0.8340 +4709 55744 0.5490 +4709 55856 0.4510 +4709 55863 0.7720 +4709 55967 0.9990 +4709 56901 0.6770 +4709 56964 0.5400 +4709 57407 0.7150 +4709 60491 0.5560 +4709 63931 0.6330 +4709 64077 0.5290 +4709 65018 0.6710 +4709 65260 0.4940 +4709 79002 0.4150 +4709 79085 0.6330 +4709 79133 0.7730 +4709 79135 0.4260 +4709 79598 0.6050 +4709 79728 0.9450 +4709 80195 0.7140 +4709 81892 0.6160 +4709 84233 0.4580 +4709 84274 0.4140 +4709 84277 0.4220 +4709 84661 0.5330 +4709 84701 0.5690 +4709 84833 0.7740 +4709 84886 0.4640 +4709 84939 0.8680 +4709 84987 0.5990 +4709 90353 0.6900 +4709 91942 0.9560 +4709 92259 0.5360 +4709 114789 0.5880 +4709 125965 0.5580 +4709 126328 0.9990 +4709 137682 0.7380 +4709 139221 0.8710 +4709 140823 0.4250 +4709 170712 0.5600 +4709 267020 0.4250 +4709 284427 0.5840 +4709 285172 0.4190 +4709 374291 0.9990 +4709 388753 0.5910 +4709 404672 0.4220 +4709 440567 0.7320 +4709 728317 0.8680 +4709 100532726 0.9360 +4710 4711 0.9990 +4710 4712 0.9990 +4710 4713 0.9990 +4710 4714 0.9990 +4710 4715 0.9990 +4710 4716 0.9990 +4710 4717 0.9990 +4710 4718 0.9990 +4710 4720 0.9990 +4710 4722 0.9990 +4710 4723 0.9990 +4710 4724 0.9990 +4710 4725 0.9990 +4710 4726 0.9990 +4710 4728 0.9990 +4710 4729 0.9990 +4710 4731 0.9990 +4710 4809 0.4800 +4710 4869 0.4320 +4710 5018 0.4150 +4710 5162 0.4920 +4710 5201 0.4370 +4710 5566 0.6500 +4710 5567 0.6510 +4710 5568 0.6500 +4710 6235 0.4360 +4710 6389 0.4540 +4710 6390 0.6870 +4710 6391 0.7060 +4710 6392 0.8060 +4710 6622 0.6580 +4710 6902 0.7730 +4710 7084 0.6180 +4710 7381 0.9950 +4710 7384 0.9670 +4710 7385 0.9510 +4710 7386 0.9800 +4710 7388 0.9520 +4710 7416 0.4170 +4710 8802 0.4330 +4710 9167 0.4100 +4710 9377 0.9880 +4710 9512 0.4610 +4710 9551 0.7670 +4710 9553 0.5190 +4710 10229 0.4970 +4710 10476 0.8390 +4710 10553 0.5550 +4710 10632 0.8280 +4710 10975 0.9750 +4710 23203 0.4030 +4710 23435 0.6590 +4710 25880 0.5730 +4710 25915 0.8730 +4710 27089 0.9970 +4710 28976 0.5880 +4710 28998 0.4650 +4710 29078 0.8880 +4710 29796 0.9940 +4710 51021 0.4040 +4710 51023 0.5060 +4710 51079 0.9990 +4710 51103 0.9760 +4710 51258 0.5560 +4710 51263 0.4260 +4710 51295 0.6060 +4710 51300 0.9970 +4710 51318 0.5350 +4710 51650 0.5680 +4710 51805 0.4380 +4710 54534 0.4160 +4710 54539 0.9990 +4710 54543 0.5720 +4710 54927 0.4320 +4710 54968 0.5260 +4710 55028 0.4690 +4710 55101 0.4720 +4710 55471 0.5400 +4710 55572 0.8100 +4710 55744 0.5220 +4710 55863 0.6970 +4710 55967 0.9990 +4710 56901 0.7670 +4710 56964 0.5400 +4710 57407 0.5520 +4710 63931 0.7700 +4710 64981 0.4470 +4710 65018 0.6910 +4710 79002 0.5090 +4710 79133 0.6130 +4710 79135 0.4730 +4710 79598 0.6190 +4710 79728 0.9730 +4710 80195 0.5520 +4710 81892 0.7090 +4710 84274 0.4340 +4710 84277 0.4590 +4710 84300 0.4240 +4710 84303 0.4280 +4710 84701 0.5310 +4710 84833 0.8890 +4710 84886 0.5380 +4710 84939 0.7730 +4710 84987 0.4480 +4710 90353 0.6900 +4710 91942 0.8920 +4710 118487 0.5510 +4710 122704 0.4070 +4710 122961 0.4010 +4710 125965 0.5510 +4710 126328 0.9990 +4710 128308 0.4420 +4710 137682 0.5160 +4710 139221 0.7730 +4710 139322 0.5080 +4710 170712 0.5200 +4710 267020 0.7310 +4710 283459 0.4520 +4710 374291 0.9990 +4710 388753 0.6010 +4710 440567 0.5340 +4710 728317 0.7730 +4710 100131801 0.7550 +4710 100532726 0.9730 +4711 4712 0.9990 +4711 4713 0.9990 +4711 4714 0.9990 +4711 4715 0.9990 +4711 4716 0.9990 +4711 4717 0.9990 +4711 4718 0.9990 +4711 4720 0.9990 +4711 4722 0.9990 +4711 4723 0.9990 +4711 4724 0.9990 +4711 4725 0.9990 +4711 4726 0.9990 +4711 4728 0.9990 +4711 4729 0.9990 +4711 4731 0.9990 +4711 5162 0.6790 +4711 5250 0.5940 +4711 5422 0.4160 +4711 5464 0.4560 +4711 5566 0.6540 +4711 5567 0.6650 +4711 5568 0.6500 +4711 5684 0.7010 +4711 6182 0.5390 +4711 6389 0.4290 +4711 6390 0.8240 +4711 6391 0.8250 +4711 6392 0.9340 +4711 6622 0.6800 +4711 7019 0.5330 +4711 7084 0.6770 +4711 7257 0.5420 +4711 7381 0.9850 +4711 7384 0.9670 +4711 7385 0.9760 +4711 7386 0.9790 +4711 7388 0.9780 +4711 7417 0.4350 +4711 8802 0.8000 +4711 9167 0.5160 +4711 9377 0.9920 +4711 9512 0.7710 +4711 9551 0.8340 +4711 9553 0.4510 +4711 9582 0.4300 +4711 10063 0.4490 +4711 10232 0.5400 +4711 10240 0.4490 +4711 10476 0.9550 +4711 10553 0.5880 +4711 10632 0.8650 +4711 10651 0.4640 +4711 10891 0.4610 +4711 10935 0.4740 +4711 10975 0.9580 +4711 10987 0.4830 +4711 23203 0.4440 +4711 23435 0.6640 +4711 23788 0.6100 +4711 25828 0.4640 +4711 25880 0.5580 +4711 25915 0.9260 +4711 26521 0.5670 +4711 27068 0.6150 +4711 27069 0.4160 +4711 27089 0.9830 +4711 27350 0.4290 +4711 28976 0.7850 +4711 28977 0.4280 +4711 28998 0.4210 +4711 29078 0.9510 +4711 29796 0.9870 +4711 51023 0.4950 +4711 51079 0.9990 +4711 51103 0.9930 +4711 51258 0.4930 +4711 51263 0.6410 +4711 51295 0.8710 +4711 51300 0.9980 +4711 51318 0.5280 +4711 51642 0.4340 +4711 51650 0.6100 +4711 54205 0.6440 +4711 54539 0.9990 +4711 54927 0.8070 +4711 54968 0.6130 +4711 55028 0.6480 +4711 55052 0.4200 +4711 55101 0.4870 +4711 55471 0.7080 +4711 55572 0.8840 +4711 55744 0.5810 +4711 55863 0.8410 +4711 55967 0.9990 +4711 56901 0.8050 +4711 56945 0.4960 +4711 56964 0.5400 +4711 57017 0.4180 +4711 57379 0.4280 +4711 57407 0.5770 +4711 60489 0.4330 +4711 64216 0.4510 +4711 65018 0.6940 +4711 79002 0.5970 +4711 79133 0.6650 +4711 79135 0.4780 +4711 79598 0.6800 +4711 79728 0.9810 +4711 80195 0.5840 +4711 80273 0.5320 +4711 84277 0.4400 +4711 84303 0.6510 +4711 84545 0.4710 +4711 84701 0.6820 +4711 84833 0.8330 +4711 84886 0.6700 +4711 84939 0.7490 +4711 90353 0.6900 +4711 91942 0.9290 +4711 118487 0.4370 +4711 125965 0.6290 +4711 126328 0.9990 +4711 130752 0.6440 +4711 133121 0.4030 +4711 137682 0.6720 +4711 139221 0.7490 +4711 140564 0.4280 +4711 164668 0.4280 +4711 170712 0.6930 +4711 200315 0.4280 +4711 200316 0.4330 +4711 267020 0.6780 +4711 283459 0.5050 +4711 374291 0.9990 +4711 388753 0.6100 +4711 401397 0.4020 +4711 404672 0.4910 +4711 440567 0.7620 +4711 728317 0.7490 +4711 100532726 0.9760 +4712 4713 0.9990 +4712 4714 0.9990 +4712 4715 0.9990 +4712 4716 0.9990 +4712 4717 0.9980 +4712 4718 0.9990 +4712 4720 0.9990 +4712 4722 0.9990 +4712 4723 0.9990 +4712 4724 0.9990 +4712 4725 0.9990 +4712 4726 0.9990 +4712 4728 0.9990 +4712 4729 0.9990 +4712 4731 0.9990 +4712 4835 0.4330 +4712 5162 0.7700 +4712 5303 0.4060 +4712 5566 0.6510 +4712 5567 0.6500 +4712 5568 0.6500 +4712 5698 0.4040 +4712 6389 0.6570 +4712 6390 0.8590 +4712 6391 0.8310 +4712 6392 0.8040 +4712 6622 0.8540 +4712 7019 0.4120 +4712 7084 0.6660 +4712 7381 0.9880 +4712 7384 0.9450 +4712 7385 0.9550 +4712 7386 0.9850 +4712 7388 0.9560 +4712 7416 0.4650 +4712 8802 0.4490 +4712 9296 0.4360 +4712 9377 0.9940 +4712 9512 0.5360 +4712 9551 0.8500 +4712 9553 0.4210 +4712 9556 0.4110 +4712 9582 0.4770 +4712 10063 0.4210 +4712 10440 0.4730 +4712 10476 0.9300 +4712 10553 0.6410 +4712 10632 0.8300 +4712 10730 0.5040 +4712 10935 0.5510 +4712 10975 0.9630 +4712 23203 0.4260 +4712 23435 0.6660 +4712 25874 0.4940 +4712 25880 0.5750 +4712 25915 0.8700 +4712 25994 0.4510 +4712 26521 0.5810 +4712 27089 0.9880 +4712 27109 0.4160 +4712 27258 0.4130 +4712 27350 0.4740 +4712 28957 0.4840 +4712 28976 0.5920 +4712 28998 0.5090 +4712 29078 0.8950 +4712 29796 0.9830 +4712 51021 0.4410 +4712 51023 0.4230 +4712 51079 0.9990 +4712 51102 0.4540 +4712 51103 0.9870 +4712 51258 0.6170 +4712 51295 0.6540 +4712 51300 0.9980 +4712 51522 0.4080 +4712 51642 0.4600 +4712 51650 0.4960 +4712 54205 0.4780 +4712 54460 0.4120 +4712 54539 0.9990 +4712 54927 0.4050 +4712 54968 0.4740 +4712 55028 0.6550 +4712 55052 0.4380 +4712 55101 0.5310 +4712 55471 0.5890 +4712 55572 0.8710 +4712 55744 0.5850 +4712 55863 0.6990 +4712 55967 0.9990 +4712 56901 0.6880 +4712 56964 0.5400 +4712 57379 0.4730 +4712 57407 0.6370 +4712 60489 0.4840 +4712 63931 0.5360 +4712 64981 0.5020 +4712 65018 0.6830 +4712 79002 0.5640 +4712 79133 0.6620 +4712 79135 0.4430 +4712 79598 0.6680 +4712 79728 0.9460 +4712 80195 0.6350 +4712 84233 0.5080 +4712 84277 0.4770 +4712 84300 0.4510 +4712 84303 0.4060 +4712 84701 0.7730 +4712 84817 0.4780 +4712 84833 0.6950 +4712 84886 0.7590 +4712 84939 0.7320 +4712 90353 0.6900 +4712 91942 0.8980 +4712 118487 0.4770 +4712 119559 0.4130 +4712 125965 0.7920 +4712 126328 0.9990 +4712 131118 0.4480 +4712 137682 0.5720 +4712 139221 0.7320 +4712 140564 0.4730 +4712 140823 0.5110 +4712 164668 0.4730 +4712 170712 0.5070 +4712 200315 0.4730 +4712 200316 0.4820 +4712 219927 0.4020 +4712 254863 0.4340 +4712 267020 0.6200 +4712 283459 0.5880 +4712 374291 0.9990 +4712 388753 0.6390 +4712 401505 0.4390 +4712 440567 0.5850 +4712 440574 0.5390 +4712 728317 0.7320 +4712 100287932 0.4170 +4712 100532726 0.9630 +4713 4714 0.9990 +4713 4715 0.9990 +4713 4716 0.9990 +4713 4717 0.9980 +4713 4718 0.9990 +4713 4720 0.9990 +4713 4722 0.9990 +4713 4723 0.9990 +4713 4724 0.9990 +4713 4725 0.9990 +4713 4726 0.9990 +4713 4728 0.9990 +4713 4729 0.9990 +4713 4731 0.9990 +4713 4738 0.6280 +4713 5435 0.4020 +4713 5441 0.5250 +4713 5498 0.4200 +4713 5566 0.6700 +4713 5567 0.6700 +4713 5568 0.6700 +4713 5694 0.4450 +4713 6182 0.5450 +4713 6341 0.4160 +4713 6389 0.5300 +4713 6390 0.8650 +4713 6391 0.7750 +4713 6392 0.7320 +4713 6426 0.5870 +4713 6622 0.6810 +4713 6923 0.5820 +4713 7084 0.5990 +4713 7381 0.9940 +4713 7384 0.9910 +4713 7385 0.9630 +4713 7386 0.9960 +4713 7388 0.9970 +4713 8192 0.5520 +4713 8402 0.4500 +4713 8683 0.5910 +4713 8721 0.4100 +4713 9296 0.4460 +4713 9377 0.9850 +4713 9446 0.5730 +4713 9512 0.8580 +4713 9551 0.8300 +4713 9556 0.4350 +4713 10063 0.4710 +4713 10165 0.4250 +4713 10245 0.6180 +4713 10367 0.4170 +4713 10430 0.4200 +4713 10440 0.6600 +4713 10443 0.7030 +4713 10476 0.8830 +4713 10553 0.7700 +4713 10632 0.8720 +4713 10651 0.4630 +4713 10975 0.9970 +4713 11112 0.4600 +4713 11315 0.5090 +4713 11331 0.6760 +4713 11343 0.8980 +4713 23078 0.5380 +4713 23203 0.6550 +4713 23435 0.6560 +4713 23645 0.6170 +4713 25828 0.6620 +4713 25880 0.5690 +4713 25915 0.9270 +4713 25994 0.4080 +4713 26517 0.6280 +4713 26519 0.6640 +4713 26521 0.4110 +4713 27089 0.9990 +4713 27429 0.4570 +4713 28974 0.5000 +4713 28976 0.6220 +4713 29058 0.4270 +4713 29078 0.8650 +4713 29085 0.6890 +4713 29090 0.5110 +4713 29796 0.9980 +4713 29928 0.7950 +4713 29957 0.7840 +4713 30968 0.4610 +4713 51021 0.4170 +4713 51069 0.5460 +4713 51079 0.9990 +4713 51102 0.5510 +4713 51103 0.9740 +4713 51295 0.8330 +4713 51300 0.6160 +4713 51522 0.4570 +4713 51529 0.5360 +4713 51550 0.4950 +4713 51690 0.4880 +4713 54460 0.4320 +4713 54539 0.9990 +4713 54543 0.4680 +4713 54902 0.4720 +4713 54927 0.4380 +4713 54998 0.6760 +4713 55028 0.5160 +4713 55052 0.4440 +4713 55471 0.6560 +4713 55572 0.7950 +4713 55728 0.7030 +4713 55744 0.5640 +4713 55863 0.6390 +4713 55967 0.9990 +4713 56901 0.7260 +4713 56964 0.5400 +4713 57407 0.7930 +4713 58509 0.5450 +4713 60489 0.4050 +4713 64077 0.5060 +4713 64928 0.5430 +4713 64951 0.4780 +4713 64963 0.5730 +4713 64975 0.6140 +4713 64976 0.6100 +4713 64979 0.5060 +4713 65003 0.4130 +4713 65018 0.6690 +4713 65993 0.6460 +4713 79002 0.7330 +4713 79085 0.8090 +4713 79133 0.6380 +4713 79598 0.5990 +4713 79728 0.9460 +4713 80195 0.7680 +4713 81341 0.6230 +4713 84266 0.5780 +4713 84277 0.5700 +4713 84304 0.4490 +4713 84316 0.4620 +4713 84545 0.7170 +4713 84701 0.7010 +4713 84833 0.5020 +4713 84869 0.5940 +4713 84886 0.7700 +4713 84939 0.9130 +4713 84987 0.6800 +4713 85437 0.4180 +4713 90353 0.6950 +4713 90480 0.4510 +4713 90550 0.4240 +4713 90634 0.7030 +4713 91300 0.6180 +4713 91689 0.5830 +4713 91942 0.9570 +4713 92609 0.4970 +4713 112812 0.6740 +4713 114789 0.8490 +4713 115098 0.4230 +4713 116541 0.5730 +4713 119391 0.5560 +4713 125965 0.7630 +4713 125988 0.5840 +4713 126328 0.9990 +4713 128308 0.4580 +4713 131474 0.5780 +4713 137682 0.5500 +4713 137964 0.4550 +4713 139221 0.9130 +4713 140823 0.7900 +4713 170712 0.4040 +4713 192286 0.4180 +4713 219927 0.5600 +4713 254863 0.5070 +4713 267020 0.7320 +4713 283459 0.5550 +4713 284427 0.7800 +4713 374291 0.9990 +4713 388753 0.7540 +4713 388962 0.4060 +4713 440567 0.9260 +4713 440574 0.5310 +4713 493856 0.5540 +4713 728317 0.9130 +4713 100287932 0.4270 +4713 100532726 0.9200 +4714 4715 0.9990 +4714 4716 0.9990 +4714 4717 0.9980 +4714 4718 0.9990 +4714 4720 0.9990 +4714 4722 0.9990 +4714 4723 0.9990 +4714 4724 0.9990 +4714 4725 0.9990 +4714 4726 0.9990 +4714 4728 0.9990 +4714 4729 0.9990 +4714 4731 0.9990 +4714 4738 0.4550 +4714 4831 0.5000 +4714 4869 0.4270 +4714 5009 0.4380 +4714 5162 0.5620 +4714 5250 0.6340 +4714 5428 0.4110 +4714 5566 0.6700 +4714 5567 0.6680 +4714 5568 0.6680 +4714 5692 0.4380 +4714 5694 0.7160 +4714 6182 0.8940 +4714 6389 0.9640 +4714 6390 0.9970 +4714 6391 0.9520 +4714 6392 0.9840 +4714 6622 0.6920 +4714 6648 0.4590 +4714 6745 0.4550 +4714 6834 0.4540 +4714 7019 0.7100 +4714 7084 0.6910 +4714 7381 0.9920 +4714 7384 0.9820 +4714 7385 0.9980 +4714 7386 0.9970 +4714 7388 0.9890 +4714 7416 0.7370 +4714 7419 0.5080 +4714 7837 0.4030 +4714 8192 0.4900 +4714 8802 0.5220 +4714 8989 0.4490 +4714 9167 0.4220 +4714 9296 0.6320 +4714 9361 0.4010 +4714 9377 0.9960 +4714 9512 0.8120 +4714 9551 0.8500 +4714 9556 0.5150 +4714 9582 0.4960 +4714 9804 0.6210 +4714 9927 0.5760 +4714 10063 0.5390 +4714 10245 0.8830 +4714 10440 0.8890 +4714 10452 0.7270 +4714 10469 0.5630 +4714 10476 0.9290 +4714 10531 0.4100 +4714 10553 0.7870 +4714 10632 0.8790 +4714 10891 0.5800 +4714 10975 0.9900 +4714 11224 0.4860 +4714 11226 0.4360 +4714 11315 0.5710 +4714 11331 0.4790 +4714 11343 0.9080 +4714 22927 0.4070 +4714 23203 0.7440 +4714 23435 0.6600 +4714 23788 0.6320 +4714 25880 0.5470 +4714 25915 0.9360 +4714 27089 0.9970 +4714 27235 0.4380 +4714 27247 0.4750 +4714 27350 0.4930 +4714 28958 0.4400 +4714 28973 0.5020 +4714 28976 0.6420 +4714 29078 0.8890 +4714 29085 0.5800 +4714 29090 0.8770 +4714 29796 0.9960 +4714 29928 0.7010 +4714 29957 0.5870 +4714 51021 0.4130 +4714 51023 0.4110 +4714 51024 0.5220 +4714 51025 0.5910 +4714 51031 0.6230 +4714 51079 0.9990 +4714 51102 0.4570 +4714 51103 0.9830 +4714 51142 0.4550 +4714 51295 0.8670 +4714 51300 0.9980 +4714 54205 0.7210 +4714 54539 0.9990 +4714 54927 0.4570 +4714 55052 0.6720 +4714 55168 0.4130 +4714 55210 0.5520 +4714 55471 0.6690 +4714 55572 0.8150 +4714 55669 0.4520 +4714 55744 0.6670 +4714 55863 0.7140 +4714 55967 0.9990 +4714 56674 0.4150 +4714 56901 0.8210 +4714 56964 0.5400 +4714 57379 0.4930 +4714 57407 0.7910 +4714 59286 0.4360 +4714 60489 0.5010 +4714 64111 0.4770 +4714 64756 0.4060 +4714 65018 0.7660 +4714 79002 0.4960 +4714 79085 0.6040 +4714 79133 0.6950 +4714 79598 0.6790 +4714 79728 0.9650 +4714 80195 0.7860 +4714 80273 0.5420 +4714 81892 0.4300 +4714 84274 0.5190 +4714 84277 0.5700 +4714 84693 0.6980 +4714 84701 0.8620 +4714 84833 0.5700 +4714 84886 0.8690 +4714 84939 0.9300 +4714 84987 0.6830 +4714 90353 0.6900 +4714 91942 0.9710 +4714 92002 0.4080 +4714 92609 0.7180 +4714 93974 0.6760 +4714 112476 0.6340 +4714 114789 0.5850 +4714 125965 0.7470 +4714 125988 0.6120 +4714 126328 0.9990 +4714 131118 0.5860 +4714 133121 0.4110 +4714 134266 0.5230 +4714 137682 0.6570 +4714 139221 0.9300 +4714 140564 0.4930 +4714 140823 0.7880 +4714 150274 0.5630 +4714 164668 0.4930 +4714 165257 0.4520 +4714 170712 0.4310 +4714 197257 0.4010 +4714 200315 0.4930 +4714 200316 0.5000 +4714 254863 0.4290 +4714 267020 0.6900 +4714 283459 0.7190 +4714 284427 0.5840 +4714 286148 0.4170 +4714 374291 0.9990 +4714 388753 0.5560 +4714 401505 0.4940 +4714 440567 0.9080 +4714 440574 0.4790 +4714 728317 0.9300 +4714 100287932 0.6130 +4714 100532726 0.9750 +4715 4716 0.9990 +4715 4717 0.9980 +4715 4718 0.9990 +4715 4720 0.9990 +4715 4722 0.9990 +4715 4723 0.9990 +4715 4724 0.9990 +4715 4725 0.9990 +4715 4726 0.9990 +4715 4728 0.9990 +4715 4729 0.9990 +4715 4731 0.9990 +4715 4869 0.6760 +4715 4967 0.5360 +4715 5162 0.4310 +4715 5245 0.5690 +4715 5250 0.4200 +4715 5566 0.6500 +4715 5567 0.6500 +4715 5568 0.6500 +4715 5631 0.4320 +4715 5694 0.4420 +4715 6389 0.6470 +4715 6390 0.9660 +4715 6391 0.8330 +4715 6392 0.9470 +4715 6426 0.5980 +4715 6622 0.6550 +4715 6625 0.4170 +4715 6687 0.4010 +4715 7084 0.6460 +4715 7284 0.5210 +4715 7381 0.9980 +4715 7384 0.9960 +4715 7385 0.9760 +4715 7386 0.9990 +4715 7388 0.9960 +4715 7416 0.6250 +4715 7417 0.4780 +4715 8402 0.4440 +4715 8683 0.6010 +4715 8802 0.6330 +4715 9054 0.5000 +4715 9377 0.9960 +4715 9446 0.6590 +4715 9512 0.8860 +4715 9551 0.8710 +4715 9556 0.4820 +4715 9582 0.5910 +4715 10063 0.4960 +4715 10102 0.5610 +4715 10245 0.5700 +4715 10440 0.5900 +4715 10443 0.4970 +4715 10476 0.9850 +4715 10553 0.7910 +4715 10632 0.9260 +4715 10975 0.9860 +4715 11066 0.4170 +4715 11315 0.4490 +4715 11343 0.9170 +4715 23203 0.7160 +4715 23435 0.6670 +4715 23645 0.5460 +4715 23788 0.6690 +4715 25824 0.4550 +4715 25828 0.4460 +4715 25874 0.4090 +4715 25880 0.5830 +4715 25915 0.9360 +4715 26519 0.7290 +4715 26521 0.4020 +4715 26589 0.4650 +4715 27068 0.4480 +4715 27089 0.9970 +4715 27109 0.4470 +4715 27350 0.5910 +4715 28973 0.4230 +4715 28976 0.6590 +4715 28998 0.5050 +4715 29078 0.8980 +4715 29085 0.4140 +4715 29796 0.9980 +4715 29928 0.5700 +4715 29957 0.7630 +4715 30968 0.4140 +4715 50488 0.4480 +4715 51023 0.4290 +4715 51069 0.4520 +4715 51073 0.5020 +4715 51079 0.9990 +4715 51081 0.5210 +4715 51103 0.9850 +4715 51263 0.4340 +4715 51264 0.4530 +4715 51295 0.7390 +4715 51300 0.9970 +4715 54205 0.5120 +4715 54539 0.9990 +4715 54543 0.4660 +4715 54927 0.4090 +4715 55028 0.4460 +4715 55052 0.6820 +4715 55471 0.5590 +4715 55572 0.8230 +4715 55728 0.4990 +4715 55744 0.5620 +4715 55863 0.6110 +4715 55967 0.9990 +4715 56901 0.8240 +4715 56964 0.5400 +4715 57001 0.4720 +4715 57017 0.4540 +4715 57128 0.6010 +4715 57149 0.4910 +4715 57226 0.5240 +4715 57379 0.5900 +4715 57407 0.7910 +4715 58509 0.4280 +4715 60489 0.5960 +4715 63931 0.5600 +4715 64432 0.5280 +4715 64756 0.4820 +4715 64951 0.4980 +4715 64960 0.4310 +4715 64969 0.5110 +4715 64976 0.4510 +4715 65018 0.6620 +4715 79002 0.5810 +4715 79085 0.7540 +4715 79133 0.6280 +4715 79598 0.6460 +4715 79728 0.9700 +4715 80195 0.7880 +4715 81341 0.5520 +4715 83940 0.4740 +4715 84277 0.5000 +4715 84545 0.4070 +4715 84701 0.8830 +4715 84833 0.8560 +4715 84886 0.7720 +4715 84939 0.9310 +4715 84987 0.5570 +4715 90353 0.6900 +4715 90624 0.5410 +4715 90634 0.4970 +4715 91300 0.5460 +4715 91942 0.9760 +4715 93974 0.4920 +4715 112476 0.6360 +4715 112812 0.6800 +4715 114789 0.7510 +4715 119391 0.6390 +4715 125965 0.7440 +4715 125988 0.4630 +4715 126328 0.9990 +4715 128308 0.6340 +4715 133121 0.4750 +4715 137682 0.6170 +4715 139221 0.9310 +4715 140564 0.5900 +4715 140823 0.7490 +4715 144363 0.5850 +4715 154791 0.4380 +4715 164668 0.5900 +4715 170712 0.6650 +4715 192286 0.4320 +4715 200315 0.5930 +4715 200316 0.5960 +4715 201229 0.5420 +4715 219927 0.6850 +4715 254863 0.4020 +4715 267020 0.8450 +4715 283459 0.7320 +4715 284427 0.7500 +4715 374291 0.9990 +4715 388753 0.6270 +4715 388962 0.4250 +4715 401505 0.4950 +4715 440567 0.9240 +4715 493856 0.4420 +4715 644096 0.5240 +4715 728317 0.9310 +4715 100532726 0.9720 +4716 4717 0.9970 +4716 4718 0.9990 +4716 4720 0.9990 +4716 4722 0.9990 +4716 4723 0.9990 +4716 4724 0.9990 +4716 4725 0.9990 +4716 4726 0.9990 +4716 4728 0.9990 +4716 4729 0.9990 +4716 4731 0.9990 +4716 4968 0.4690 +4716 5162 0.6440 +4716 5245 0.4950 +4716 5250 0.4960 +4716 5438 0.4320 +4716 5566 0.6500 +4716 5567 0.6500 +4716 5568 0.6500 +4716 5705 0.4200 +4716 6136 0.4150 +4716 6202 0.4150 +4716 6389 0.5380 +4716 6390 0.8480 +4716 6391 0.6890 +4716 6392 0.7240 +4716 6426 0.5730 +4716 6622 0.6780 +4716 7084 0.6650 +4716 7381 0.9940 +4716 7384 0.9860 +4716 7385 0.9680 +4716 7386 0.9890 +4716 7388 0.9900 +4716 7416 0.4680 +4716 8683 0.5750 +4716 8802 0.4520 +4716 9377 0.9930 +4716 9446 0.5860 +4716 9512 0.8740 +4716 9551 0.8460 +4716 9582 0.5950 +4716 10063 0.4080 +4716 10165 0.4440 +4716 10245 0.6790 +4716 10367 0.4620 +4716 10440 0.7420 +4716 10443 0.4890 +4716 10476 0.9730 +4716 10553 0.7480 +4716 10632 0.7850 +4716 10975 0.9830 +4716 11331 0.6240 +4716 11343 0.8980 +4716 23203 0.7150 +4716 23435 0.6540 +4716 23645 0.5400 +4716 23788 0.4690 +4716 25880 0.6380 +4716 25915 0.9990 +4716 26517 0.6060 +4716 26521 0.5040 +4716 27068 0.4880 +4716 27089 0.9740 +4716 27350 0.5810 +4716 28958 0.4330 +4716 28976 0.6690 +4716 29078 0.9210 +4716 29085 0.4310 +4716 29090 0.6060 +4716 29796 0.9960 +4716 29928 0.7080 +4716 29957 0.7970 +4716 51021 0.4130 +4716 51073 0.5160 +4716 51079 0.9990 +4716 51081 0.5000 +4716 51103 0.9850 +4716 51255 0.4110 +4716 51258 0.5410 +4716 51295 0.6740 +4716 51300 0.9980 +4716 51382 0.4180 +4716 54460 0.6130 +4716 54539 0.9990 +4716 54902 0.4680 +4716 54927 0.5010 +4716 54968 0.6340 +4716 54998 0.4840 +4716 55028 0.6660 +4716 55052 0.4270 +4716 55101 0.5180 +4716 55471 0.6360 +4716 55486 0.4500 +4716 55572 0.9260 +4716 55728 0.4920 +4716 55744 0.5860 +4716 55863 0.6990 +4716 55967 0.9990 +4716 56901 0.6730 +4716 56964 0.5400 +4716 57379 0.5800 +4716 57407 0.7790 +4716 58509 0.4610 +4716 60489 0.5870 +4716 64077 0.5120 +4716 64975 0.4810 +4716 64978 0.4470 +4716 65018 0.6840 +4716 65260 0.4780 +4716 65990 0.4050 +4716 65993 0.5020 +4716 79002 0.4600 +4716 79085 0.7870 +4716 79133 0.6220 +4716 79598 0.6650 +4716 79728 0.9680 +4716 80195 0.7490 +4716 81341 0.5400 +4716 84277 0.6160 +4716 84303 0.4260 +4716 84545 0.4160 +4716 84681 0.4060 +4716 84701 0.9150 +4716 84833 0.4850 +4716 84886 0.6850 +4716 84939 0.9260 +4716 84987 0.6060 +4716 90353 0.7060 +4716 90550 0.4230 +4716 90634 0.4890 +4716 91300 0.5400 +4716 91942 0.9480 +4716 92609 0.4840 +4716 93974 0.5230 +4716 112812 0.6120 +4716 114789 0.8480 +4716 115939 0.4060 +4716 119391 0.5710 +4716 122704 0.4830 +4716 125965 0.5270 +4716 126328 0.9990 +4716 131474 0.6970 +4716 137682 0.6230 +4716 139221 0.9260 +4716 140564 0.5800 +4716 164668 0.5800 +4716 170712 0.5190 +4716 200315 0.5810 +4716 200316 0.5860 +4716 221154 0.4180 +4716 267020 0.6610 +4716 283459 0.6130 +4716 284184 0.4190 +4716 284427 0.7660 +4716 374291 0.9990 +4716 388753 0.6000 +4716 440567 0.9090 +4716 493856 0.4880 +4716 728317 0.9260 +4716 100287932 0.4300 +4716 100532726 0.9670 +4717 4718 0.9990 +4717 4720 0.9970 +4717 4722 0.9970 +4717 4723 0.9980 +4717 4724 0.9970 +4717 4725 0.9950 +4717 4726 0.9990 +4717 4728 0.9970 +4717 4729 0.9990 +4717 4731 0.9990 +4717 5566 0.6500 +4717 5567 0.6500 +4717 5568 0.6500 +4717 6392 0.4480 +4717 6622 0.6500 +4717 7084 0.4380 +4717 7381 0.8960 +4717 7384 0.8940 +4717 7385 0.8740 +4717 7386 0.9030 +4717 7388 0.9260 +4717 9114 0.4790 +4717 9377 0.9160 +4717 9551 0.8770 +4717 9553 0.4620 +4717 9556 0.4440 +4717 10476 0.5700 +4717 10632 0.5840 +4717 10975 0.9720 +4717 23435 0.6560 +4717 25880 0.6810 +4717 25915 0.8600 +4717 26521 0.6790 +4717 27089 0.9640 +4717 28976 0.6250 +4717 28977 0.4020 +4717 28998 0.5260 +4717 29078 0.8800 +4717 29796 0.9610 +4717 51079 0.9970 +4717 51103 0.9790 +4717 51258 0.4020 +4717 51263 0.4090 +4717 51295 0.6310 +4717 51300 0.6260 +4717 51650 0.5460 +4717 54460 0.4070 +4717 54539 0.9970 +4717 54543 0.4510 +4717 55471 0.6000 +4717 55572 0.7950 +4717 55744 0.6010 +4717 55863 0.7300 +4717 55967 0.9990 +4717 56901 0.6240 +4717 56964 0.5400 +4717 65018 0.6610 +4717 79133 0.6610 +4717 79598 0.4380 +4717 79728 0.7650 +4717 81892 0.6740 +4717 84833 0.4990 +4717 84939 0.4880 +4717 90353 0.7000 +4717 91942 0.9000 +4717 118487 0.4070 +4717 126328 0.9970 +4717 137682 0.6800 +4717 139221 0.4880 +4717 170712 0.6440 +4717 374291 0.9970 +4717 728317 0.4880 +4717 100532726 0.8330 +4718 4720 0.9990 +4718 4722 0.9990 +4718 4723 0.9990 +4718 4724 0.9990 +4718 4725 0.9990 +4718 4726 0.9990 +4718 4728 0.9990 +4718 4729 0.9990 +4718 4731 0.9980 +4718 5224 0.4060 +4718 5250 0.4180 +4718 5566 0.6520 +4718 5567 0.6510 +4718 5568 0.6500 +4718 6389 0.4680 +4718 6390 0.6900 +4718 6391 0.6800 +4718 6392 0.6810 +4718 6622 0.6580 +4718 7084 0.5780 +4718 7381 0.9710 +4718 7384 0.9440 +4718 7385 0.9360 +4718 7386 0.9700 +4718 7388 0.9610 +4718 9114 0.4730 +4718 9377 0.9760 +4718 9512 0.4970 +4718 9551 0.6720 +4718 9556 0.5420 +4718 9582 0.4640 +4718 10063 0.4320 +4718 10476 0.8570 +4718 10553 0.5710 +4718 10632 0.8460 +4718 10975 0.9870 +4718 11013 0.4180 +4718 23203 0.4300 +4718 23435 0.6520 +4718 25880 0.6820 +4718 25915 0.8020 +4718 27089 0.9870 +4718 27109 0.4100 +4718 27350 0.4610 +4718 28958 0.5420 +4718 28976 0.8350 +4718 29078 0.9110 +4718 29796 0.9750 +4718 51079 0.9990 +4718 51102 0.4220 +4718 51103 0.9750 +4718 51295 0.9210 +4718 51300 0.9310 +4718 51650 0.4550 +4718 54539 0.9990 +4718 55471 0.6070 +4718 55572 0.8290 +4718 55744 0.6690 +4718 55863 0.9510 +4718 55967 0.9990 +4718 56901 0.6820 +4718 56964 0.5400 +4718 57379 0.4600 +4718 57407 0.5670 +4718 60489 0.4720 +4718 65018 0.6780 +4718 79002 0.4900 +4718 79053 0.5630 +4718 79133 0.7520 +4718 79598 0.5780 +4718 79728 0.9340 +4718 80195 0.5720 +4718 84277 0.4800 +4718 84701 0.7470 +4718 84833 0.7370 +4718 84886 0.5950 +4718 84939 0.6230 +4718 90353 0.4730 +4718 91942 0.8330 +4718 93974 0.4800 +4718 125965 0.6220 +4718 126328 0.9980 +4718 137682 0.6080 +4718 139221 0.6230 +4718 140564 0.4600 +4718 164668 0.4600 +4718 170712 0.4960 +4718 200315 0.4600 +4718 200316 0.4680 +4718 254863 0.4390 +4718 267020 0.6150 +4718 283459 0.5210 +4718 286527 0.4260 +4718 374291 0.9990 +4718 388753 0.5400 +4718 440567 0.6050 +4718 440574 0.4800 +4718 728317 0.6230 +4718 100532726 0.5490 +4720 4722 0.9990 +4720 4723 0.9990 +4720 4724 0.9990 +4720 4725 0.9990 +4720 4726 0.9990 +4720 4728 0.9990 +4720 4729 0.9990 +4720 4731 0.9990 +4720 4817 0.4040 +4720 4967 0.8610 +4720 5096 0.5010 +4720 5162 0.5400 +4720 5245 0.7050 +4720 5250 0.4570 +4720 5431 0.4810 +4720 5464 0.4530 +4720 5479 0.6270 +4720 5480 0.5870 +4720 5518 0.4860 +4720 5566 0.6680 +4720 5567 0.6660 +4720 5568 0.6660 +4720 5664 0.6170 +4720 5927 0.4750 +4720 6041 0.4700 +4720 6132 0.4620 +4720 6183 0.4440 +4720 6193 0.4190 +4720 6341 0.4460 +4720 6389 0.9980 +4720 6390 0.9970 +4720 6391 0.9810 +4720 6392 0.9170 +4720 6426 0.5590 +4720 6622 0.7110 +4720 6687 0.4840 +4720 6834 0.4850 +4720 7019 0.5210 +4720 7045 0.8760 +4720 7084 0.7090 +4720 7167 0.6260 +4720 7284 0.9700 +4720 7381 0.9970 +4720 7384 0.9990 +4720 7385 0.9940 +4720 7386 0.9990 +4720 7388 0.9920 +4720 7403 0.5880 +4720 7404 0.5880 +4720 7416 0.4590 +4720 7417 0.4580 +4720 7419 0.5090 +4720 8050 0.4100 +4720 8192 0.6100 +4720 8242 0.4750 +4720 8284 0.4750 +4720 8402 0.6990 +4720 8683 0.5690 +4720 8801 0.8000 +4720 8802 0.9160 +4720 8803 0.8370 +4720 8833 0.4060 +4720 8879 0.4330 +4720 9126 0.6950 +4720 9167 0.4770 +4720 9296 0.4650 +4720 9343 0.4580 +4720 9377 0.9810 +4720 9446 0.5680 +4720 9512 0.9420 +4720 9551 0.5680 +4720 9582 0.5380 +4720 10102 0.5490 +4720 10229 0.5640 +4720 10245 0.6610 +4720 10383 0.4210 +4720 10440 0.6950 +4720 10443 0.5270 +4720 10452 0.4840 +4720 10476 0.7850 +4720 10540 0.4580 +4720 10553 0.8250 +4720 10631 0.8760 +4720 10632 0.6190 +4720 10765 0.4760 +4720 10901 0.5080 +4720 10922 0.4300 +4720 10935 0.5290 +4720 10939 0.5270 +4720 10960 0.5040 +4720 10975 0.9320 +4720 10989 0.7350 +4720 11315 0.5220 +4720 11331 0.4700 +4720 11343 0.9660 +4720 22823 0.4810 +4720 22868 0.4210 +4720 23135 0.5940 +4720 23203 0.7740 +4720 23435 0.6720 +4720 23645 0.8660 +4720 23788 0.4400 +4720 25813 0.5460 +4720 25824 0.4590 +4720 25880 0.5940 +4720 25915 0.9990 +4720 27068 0.5430 +4720 27089 0.9920 +4720 27235 0.4540 +4720 27247 0.4550 +4720 27350 0.5390 +4720 28976 0.9980 +4720 29078 0.9910 +4720 29087 0.8190 +4720 29093 0.4470 +4720 29796 0.9940 +4720 29928 0.4930 +4720 29957 0.8040 +4720 30968 0.4080 +4720 51021 0.5300 +4720 51031 0.6870 +4720 51069 0.5570 +4720 51073 0.4110 +4720 51079 0.9990 +4720 51081 0.5330 +4720 51091 0.4190 +4720 51103 0.9890 +4720 51204 0.5220 +4720 51295 0.9980 +4720 51300 0.9980 +4720 51380 0.4190 +4720 51382 0.4740 +4720 51506 0.4100 +4720 54101 0.4700 +4720 54205 0.7790 +4720 54516 0.4980 +4720 54539 0.9990 +4720 54543 0.4310 +4720 54675 0.5770 +4720 54927 0.5340 +4720 54948 0.5230 +4720 54968 0.4360 +4720 55052 0.4260 +4720 55143 0.6540 +4720 55157 0.6140 +4720 55249 0.4250 +4720 55471 0.9470 +4720 55526 0.6730 +4720 55572 0.9260 +4720 55676 0.4180 +4720 55699 0.4650 +4720 55703 0.4250 +4720 55728 0.5270 +4720 55744 0.5180 +4720 55753 0.6860 +4720 55863 0.7170 +4720 55967 0.9990 +4720 56901 0.7110 +4720 56964 0.5400 +4720 56993 0.4540 +4720 57017 0.5760 +4720 57128 0.4280 +4720 57143 0.4760 +4720 57379 0.5370 +4720 57407 0.8260 +4720 58509 0.4290 +4720 60314 0.6750 +4720 60489 0.5440 +4720 64111 0.6060 +4720 64960 0.4360 +4720 64963 0.4720 +4720 64979 0.4160 +4720 65018 0.6890 +4720 79002 0.6140 +4720 79085 0.8080 +4720 79133 0.9240 +4720 79598 0.7000 +4720 79728 0.9400 +4720 79893 0.4660 +4720 79934 0.5110 +4720 80195 0.8250 +4720 80224 0.9020 +4720 81341 0.8660 +4720 84134 0.6200 +4720 84172 0.4210 +4720 84233 0.5100 +4720 84263 0.5260 +4720 84277 0.6590 +4720 84693 0.7110 +4720 84701 0.9210 +4720 84816 0.4260 +4720 84886 0.7190 +4720 84939 0.9740 +4720 85476 0.4590 +4720 90353 0.7410 +4720 90381 0.5790 +4720 90634 0.5270 +4720 90956 0.4760 +4720 91300 0.8660 +4720 91942 0.9870 +4720 112812 0.9060 +4720 114789 0.8020 +4720 119391 0.5530 +4720 125965 0.6640 +4720 126328 0.9990 +4720 126402 0.4070 +4720 137682 0.7810 +4720 139221 0.9740 +4720 140564 0.5370 +4720 150274 0.4170 +4720 164668 0.5370 +4720 170712 0.4300 +4720 200315 0.5370 +4720 200316 0.5410 +4720 283459 0.4320 +4720 284184 0.4080 +4720 284427 0.8020 +4720 339896 0.4190 +4720 374291 0.9990 +4720 388753 0.6830 +4720 388962 0.4370 +4720 401505 0.4870 +4720 440567 0.9430 +4720 493856 0.4760 +4720 654790 0.4640 +4720 728317 0.9740 +4720 100532726 0.9190 +4722 4723 0.9990 +4722 4724 0.9990 +4722 4725 0.9990 +4722 4726 0.9990 +4722 4728 0.9990 +4722 4729 0.9990 +4722 4731 0.9990 +4722 4830 0.7070 +4722 4967 0.6590 +4722 5062 0.4030 +4722 5071 0.4070 +4722 5096 0.5320 +4722 5162 0.8230 +4722 5245 0.8410 +4722 5250 0.4670 +4722 5431 0.4230 +4722 5464 0.5350 +4722 5469 0.4240 +4722 5479 0.5540 +4722 5480 0.5480 +4722 5566 0.6660 +4722 5567 0.6610 +4722 5568 0.6600 +4722 5664 0.6220 +4722 5694 0.4780 +4722 5702 0.4720 +4722 5859 0.4230 +4722 5861 0.4010 +4722 6041 0.4420 +4722 6132 0.4780 +4722 6133 0.4440 +4722 6135 0.4230 +4722 6182 0.5120 +4722 6183 0.5350 +4722 6188 0.4190 +4722 6193 0.5620 +4722 6207 0.4080 +4722 6208 0.4340 +4722 6222 0.4110 +4722 6228 0.4820 +4722 6235 0.4410 +4722 6341 0.5590 +4722 6389 0.9920 +4722 6390 0.9960 +4722 6391 0.9200 +4722 6392 0.9310 +4722 6418 0.5160 +4722 6426 0.5810 +4722 6622 0.7250 +4722 6648 0.7050 +4722 6657 0.5460 +4722 6742 0.5530 +4722 6834 0.7760 +4722 6838 0.4200 +4722 7019 0.6720 +4722 7045 0.4290 +4722 7084 0.7140 +4722 7167 0.5310 +4722 7172 0.4110 +4722 7284 0.6510 +4722 7296 0.4140 +4722 7381 0.9970 +4722 7384 0.9950 +4722 7385 0.9950 +4722 7386 0.9990 +4722 7388 0.9880 +4722 7403 0.5560 +4722 7404 0.5560 +4722 7415 0.4330 +4722 7416 0.7630 +4722 7417 0.5340 +4722 7419 0.5670 +4722 8050 0.4050 +4722 8125 0.4270 +4722 8192 0.7000 +4722 8214 0.4670 +4722 8402 0.4730 +4722 8683 0.5800 +4722 8801 0.7310 +4722 8802 0.9300 +4722 8803 0.7740 +4722 8833 0.4220 +4722 8879 0.4140 +4722 9040 0.4200 +4722 9054 0.4670 +4722 9093 0.4140 +4722 9167 0.4540 +4722 9296 0.5320 +4722 9349 0.5480 +4722 9361 0.5750 +4722 9377 0.9960 +4722 9446 0.6050 +4722 9512 0.9250 +4722 9551 0.8090 +4722 9582 0.5100 +4722 9804 0.5810 +4722 9997 0.4750 +4722 10063 0.4130 +4722 10102 0.5110 +4722 10128 0.6380 +4722 10245 0.5220 +4722 10440 0.5160 +4722 10443 0.5090 +4722 10452 0.4760 +4722 10469 0.4080 +4722 10473 0.4160 +4722 10476 0.9540 +4722 10553 0.8710 +4722 10576 0.4340 +4722 10587 0.4410 +4722 10631 0.4290 +4722 10632 0.6760 +4722 10765 0.4360 +4722 10845 0.5230 +4722 10891 0.4300 +4722 10901 0.4920 +4722 10935 0.4910 +4722 10939 0.4180 +4722 10969 0.5680 +4722 10975 0.9260 +4722 10989 0.4830 +4722 10994 0.4380 +4722 11222 0.4830 +4722 11224 0.5280 +4722 11315 0.6640 +4722 11331 0.6140 +4722 11343 0.9590 +4722 22984 0.4170 +4722 23135 0.5680 +4722 23203 0.8030 +4722 23435 0.6760 +4722 23479 0.5480 +4722 23645 0.8690 +4722 23788 0.6950 +4722 25813 0.7260 +4722 25880 0.5790 +4722 25915 0.9990 +4722 26073 0.4690 +4722 26574 0.4290 +4722 27068 0.5310 +4722 27089 0.9850 +4722 27350 0.5090 +4722 28976 0.9980 +4722 29078 0.9950 +4722 29087 0.8240 +4722 29093 0.6250 +4722 29123 0.4060 +4722 29796 0.9940 +4722 29928 0.5180 +4722 29957 0.8170 +4722 29997 0.4300 +4722 30968 0.6110 +4722 51021 0.5830 +4722 51023 0.4280 +4722 51069 0.5310 +4722 51079 0.9990 +4722 51081 0.6500 +4722 51103 0.9990 +4722 51106 0.4190 +4722 51142 0.5570 +4722 51187 0.4380 +4722 51204 0.5970 +4722 51295 0.9980 +4722 51300 0.8820 +4722 51602 0.4820 +4722 51650 0.4040 +4722 51741 0.4740 +4722 54101 0.4460 +4722 54205 0.6710 +4722 54539 0.9990 +4722 54675 0.5680 +4722 54927 0.8650 +4722 54940 0.4930 +4722 54948 0.6370 +4722 55028 0.6520 +4722 55052 0.4980 +4722 55131 0.4020 +4722 55143 0.4870 +4722 55272 0.4120 +4722 55316 0.4320 +4722 55471 0.7350 +4722 55526 0.5080 +4722 55572 0.9460 +4722 55699 0.4370 +4722 55728 0.5090 +4722 55744 0.5830 +4722 55753 0.5050 +4722 55856 0.4280 +4722 55863 0.8930 +4722 55967 0.9990 +4722 56901 0.7260 +4722 56945 0.4400 +4722 56964 0.5400 +4722 56993 0.6590 +4722 57017 0.4680 +4722 57128 0.5560 +4722 57143 0.5350 +4722 57379 0.5090 +4722 57407 0.8740 +4722 57505 0.4140 +4722 58472 0.4380 +4722 58509 0.4140 +4722 60489 0.5160 +4722 63931 0.4930 +4722 64087 0.4150 +4722 64111 0.4250 +4722 64216 0.4210 +4722 64960 0.5600 +4722 64963 0.5580 +4722 64979 0.5060 +4722 65003 0.5530 +4722 65018 0.7840 +4722 79002 0.5000 +4722 79085 0.8170 +4722 79133 0.9600 +4722 79135 0.4010 +4722 79590 0.5100 +4722 79598 0.7140 +4722 79728 0.9690 +4722 79893 0.4440 +4722 79934 0.5400 +4722 80195 0.8700 +4722 80224 0.8850 +4722 80273 0.4110 +4722 81341 0.8690 +4722 81570 0.4800 +4722 81689 0.4690 +4722 81892 0.4050 +4722 84273 0.4070 +4722 84277 0.6160 +4722 84303 0.6830 +4722 84545 0.4040 +4722 84701 0.8340 +4722 84833 0.5230 +4722 84886 0.7040 +4722 84916 0.4430 +4722 84939 0.9740 +4722 84987 0.4650 +4722 85359 0.4230 +4722 85476 0.5110 +4722 88745 0.4250 +4722 90353 0.7310 +4722 90381 0.5470 +4722 90634 0.5090 +4722 90956 0.5410 +4722 91300 0.8690 +4722 91942 0.9820 +4722 93974 0.4240 +4722 112812 0.8900 +4722 114789 0.8190 +4722 114971 0.7280 +4722 116541 0.4100 +4722 117246 0.4580 +4722 119391 0.5330 +4722 120892 0.4410 +4722 122961 0.4640 +4722 125965 0.5270 +4722 126328 0.9990 +4722 126402 0.5040 +4722 130752 0.4200 +4722 137682 0.9010 +4722 139221 0.9740 +4722 140564 0.5090 +4722 150274 0.4860 +4722 164668 0.5090 +4722 170712 0.4410 +4722 200315 0.5090 +4722 200316 0.5130 +4722 203054 0.5340 +4722 219927 0.7580 +4722 267020 0.4040 +4722 283459 0.5360 +4722 284184 0.4810 +4722 284427 0.8160 +4722 374291 0.9990 +4722 388753 0.5490 +4722 400916 0.4550 +4722 440567 0.8960 +4722 493856 0.4460 +4722 728317 0.9740 +4722 100287932 0.4390 +4722 100532726 0.9410 +4723 4724 0.9990 +4723 4725 0.9990 +4723 4726 0.9990 +4723 4728 0.9990 +4723 4729 0.9990 +4723 4731 0.9990 +4723 4967 0.7620 +4723 5019 0.6950 +4723 5096 0.4290 +4723 5152 0.6020 +4723 5162 0.7380 +4723 5245 0.5480 +4723 5250 0.4320 +4723 5425 0.4260 +4723 5447 0.4220 +4723 5464 0.5090 +4723 5547 0.4030 +4723 5566 0.6580 +4723 5567 0.6540 +4723 5568 0.6550 +4723 5664 0.4130 +4723 5702 0.4080 +4723 5705 0.4320 +4723 5833 0.4540 +4723 6182 0.4980 +4723 6341 0.4050 +4723 6389 0.9990 +4723 6390 0.9930 +4723 6391 0.8450 +4723 6392 0.6750 +4723 6426 0.5930 +4723 6622 0.6870 +4723 6625 0.4570 +4723 6648 0.6060 +4723 6821 0.4510 +4723 6834 0.7250 +4723 6904 0.4490 +4723 7019 0.5100 +4723 7084 0.7740 +4723 7167 0.6920 +4723 7284 0.9370 +4723 7295 0.4020 +4723 7381 0.9990 +4723 7384 0.9990 +4723 7385 0.9980 +4723 7386 0.9990 +4723 7388 0.9910 +4723 7403 0.4350 +4723 7404 0.4350 +4723 7416 0.5760 +4723 7417 0.4520 +4723 8050 0.5880 +4723 8192 0.7130 +4723 8402 0.6460 +4723 8565 0.4660 +4723 8635 0.5290 +4723 8683 0.5960 +4723 8801 0.5390 +4723 8802 0.8360 +4723 8803 0.6780 +4723 8879 0.4140 +4723 9093 0.4330 +4723 9167 0.4580 +4723 9361 0.4610 +4723 9377 0.9870 +4723 9380 0.4380 +4723 9399 0.4520 +4723 9446 0.5590 +4723 9512 0.9670 +4723 9551 0.5930 +4723 9582 0.4170 +4723 9941 0.6690 +4723 9997 0.5150 +4723 10128 0.5640 +4723 10245 0.6070 +4723 10440 0.6510 +4723 10443 0.4830 +4723 10452 0.6050 +4723 10476 0.8060 +4723 10535 0.5200 +4723 10553 0.8440 +4723 10579 0.4360 +4723 10587 0.4190 +4723 10632 0.5750 +4723 10975 0.9920 +4723 10989 0.4590 +4723 11315 0.5020 +4723 11316 0.5800 +4723 11331 0.6560 +4723 11343 0.9810 +4723 23135 0.4470 +4723 23171 0.4030 +4723 23203 0.9660 +4723 23435 0.6610 +4723 23479 0.4840 +4723 23558 0.4630 +4723 23645 0.8540 +4723 23788 0.4180 +4723 25802 0.4160 +4723 25813 0.5260 +4723 25828 0.5430 +4723 25880 0.5880 +4723 25915 0.9380 +4723 27068 0.5820 +4723 27089 0.9920 +4723 27235 0.5870 +4723 27350 0.5640 +4723 28958 0.4620 +4723 28976 0.8330 +4723 29078 0.9530 +4723 29085 0.5650 +4723 29087 0.8110 +4723 29796 0.9950 +4723 29928 0.5810 +4723 29957 0.8450 +4723 30968 0.4530 +4723 51022 0.4740 +4723 51069 0.6740 +4723 51079 0.9990 +4723 51102 0.4260 +4723 51103 0.9870 +4723 51204 0.6300 +4723 51295 0.8460 +4723 51300 0.9970 +4723 51557 0.7150 +4723 54205 0.5910 +4723 54431 0.5800 +4723 54539 0.9990 +4723 54675 0.5020 +4723 54927 0.4020 +4723 54998 0.6080 +4723 55143 0.5300 +4723 55471 0.6680 +4723 55526 0.5760 +4723 55572 0.9300 +4723 55728 0.4830 +4723 55744 0.5000 +4723 55753 0.6190 +4723 55863 0.6840 +4723 55967 0.9990 +4723 56901 0.6200 +4723 56964 0.5400 +4723 57017 0.6100 +4723 57379 0.4150 +4723 57407 0.8450 +4723 57552 0.5240 +4723 58509 0.4410 +4723 60489 0.4200 +4723 64077 0.5280 +4723 64969 0.4070 +4723 65018 0.7300 +4723 65993 0.4520 +4723 79002 0.5550 +4723 79085 0.8580 +4723 79133 0.8800 +4723 79598 0.7540 +4723 79728 0.9340 +4723 79893 0.5300 +4723 80195 0.8420 +4723 80221 0.5850 +4723 80224 0.8680 +4723 81341 0.8540 +4723 84277 0.5840 +4723 84331 0.5380 +4723 84701 0.8320 +4723 84886 0.6180 +4723 84939 0.9750 +4723 90353 0.7090 +4723 90634 0.4830 +4723 91300 0.8540 +4723 91647 0.4310 +4723 91942 0.9900 +4723 112812 0.8100 +4723 114789 0.8420 +4723 119391 0.5530 +4723 120892 0.6380 +4723 125061 0.4870 +4723 125965 0.6140 +4723 126328 0.9990 +4723 126767 0.5160 +4723 128240 0.4190 +4723 134510 0.4590 +4723 137682 0.8330 +4723 138428 0.4150 +4723 139221 0.9750 +4723 140564 0.4160 +4723 150274 0.4870 +4723 164668 0.4150 +4723 164684 0.4310 +4723 197322 0.4290 +4723 200315 0.4150 +4723 200316 0.4200 +4723 283358 0.5710 +4723 283985 0.4010 +4723 284427 0.8420 +4723 338707 0.5710 +4723 343066 0.5160 +4723 344752 0.5160 +4723 374291 0.9990 +4723 388753 0.5260 +4723 440567 0.9170 +4723 493856 0.5100 +4723 728317 0.9750 +4723 100532726 0.9020 +4724 4725 0.9990 +4724 4726 0.9990 +4724 4728 0.9990 +4724 4729 0.9990 +4724 4731 0.9990 +4724 4967 0.4800 +4724 5162 0.5450 +4724 5250 0.4430 +4724 5533 0.4220 +4724 5566 0.7140 +4724 5567 0.7110 +4724 5568 0.7110 +4724 6341 0.4460 +4724 6389 0.8770 +4724 6390 0.8900 +4724 6391 0.8990 +4724 6392 0.8500 +4724 6426 0.5890 +4724 6622 0.7240 +4724 6648 0.5220 +4724 6834 0.7560 +4724 7019 0.6250 +4724 7084 0.7370 +4724 7295 0.4670 +4724 7381 0.9990 +4724 7384 0.9930 +4724 7385 0.9970 +4724 7386 0.9990 +4724 7388 0.9960 +4724 7416 0.6180 +4724 7417 0.4490 +4724 7419 0.4100 +4724 8192 0.4100 +4724 8683 0.5890 +4724 9167 0.9960 +4724 9377 0.9880 +4724 9446 0.5730 +4724 9512 0.9550 +4724 9551 0.6810 +4724 9556 0.4030 +4724 9804 0.4340 +4724 9997 0.6550 +4724 10063 0.4500 +4724 10128 0.5730 +4724 10134 0.4670 +4724 10245 0.7770 +4724 10440 0.8080 +4724 10443 0.5150 +4724 10452 0.4270 +4724 10476 0.9570 +4724 10535 0.5070 +4724 10553 0.8040 +4724 10632 0.7120 +4724 10935 0.4850 +4724 10975 0.9540 +4724 10987 0.6140 +4724 11343 0.9670 +4724 23203 0.9300 +4724 23410 0.4640 +4724 23435 0.6670 +4724 23645 0.5400 +4724 25874 0.6180 +4724 25880 0.5680 +4724 25915 0.9470 +4724 27089 0.9890 +4724 28976 0.7160 +4724 28998 0.4680 +4724 29078 0.9580 +4724 29093 0.4500 +4724 29796 0.9970 +4724 29928 0.5310 +4724 29957 0.7630 +4724 51023 0.4940 +4724 51079 0.9990 +4724 51103 0.9850 +4724 51204 0.5640 +4724 51295 0.6560 +4724 51300 0.6450 +4724 51318 0.5040 +4724 51650 0.4870 +4724 54205 0.6550 +4724 54431 0.5690 +4724 54539 0.9990 +4724 54675 0.5490 +4724 54927 0.5530 +4724 55471 0.5850 +4724 55572 0.9370 +4724 55669 0.4020 +4724 55728 0.4830 +4724 55744 0.5080 +4724 55863 0.7300 +4724 55967 0.9990 +4724 56901 0.7090 +4724 56964 0.5400 +4724 57407 0.8020 +4724 57552 0.5130 +4724 58509 0.4650 +4724 63931 0.6830 +4724 64963 0.4150 +4724 65008 0.4270 +4724 65018 0.7530 +4724 79002 0.6210 +4724 79085 0.7600 +4724 79133 0.9140 +4724 79598 0.6570 +4724 79728 0.9710 +4724 79893 0.5220 +4724 80195 0.8020 +4724 80221 0.5990 +4724 80224 0.8340 +4724 81341 0.5400 +4724 81892 0.4280 +4724 84251 0.4100 +4724 84277 0.6530 +4724 84701 0.6490 +4724 84833 0.6840 +4724 84886 0.6110 +4724 84939 0.9000 +4724 89886 0.4180 +4724 90353 0.6900 +4724 90634 0.4860 +4724 91300 0.5400 +4724 91647 0.5010 +4724 91942 0.9960 +4724 93974 0.9250 +4724 112476 0.7760 +4724 112812 0.6490 +4724 114789 0.7560 +4724 119391 0.5530 +4724 125061 0.4740 +4724 125965 0.6760 +4724 126328 0.9990 +4724 126767 0.5030 +4724 131118 0.4700 +4724 137682 0.8560 +4724 139221 0.9000 +4724 150274 0.4460 +4724 170712 0.5070 +4724 267020 0.4410 +4724 283459 0.4960 +4724 284427 0.7560 +4724 343066 0.5030 +4724 344752 0.5030 +4724 374291 0.9990 +4724 388753 0.6110 +4724 404672 0.4180 +4724 440567 0.9530 +4724 493856 0.4860 +4724 728317 0.9000 +4724 100532726 0.9750 +4725 4726 0.9990 +4725 4728 0.9990 +4725 4729 0.9990 +4725 4731 0.9990 +4725 4809 0.4920 +4725 4835 0.4320 +4725 5037 0.4430 +4725 5204 0.4200 +4725 5566 0.6510 +4725 5567 0.6510 +4725 5568 0.6500 +4725 5685 0.4130 +4725 6136 0.4200 +4725 6147 0.5470 +4725 6152 0.4470 +4725 6160 0.4300 +4725 6181 0.4840 +4725 6205 0.4120 +4725 6208 0.4820 +4725 6234 0.8470 +4725 6389 0.6060 +4725 6390 0.8460 +4725 6391 0.6560 +4725 6392 0.5490 +4725 6622 0.6550 +4725 6633 0.5860 +4725 6637 0.5390 +4725 6647 0.4460 +4725 6727 0.4850 +4725 6821 0.4060 +4725 6902 0.4270 +4725 7019 0.4220 +4725 7084 0.5240 +4725 7381 0.9640 +4725 7384 0.9990 +4725 7385 0.9550 +4725 7386 0.9990 +4725 7388 0.9900 +4725 9131 0.7700 +4725 9167 0.9960 +4725 9296 0.4490 +4725 9377 0.9500 +4725 9512 0.4290 +4725 9551 0.8620 +4725 9553 0.5170 +4725 9556 0.4540 +4725 9582 0.4680 +4725 10063 0.4970 +4725 10476 0.8710 +4725 10553 0.4110 +4725 10632 0.8200 +4725 10651 0.5100 +4725 10975 0.9860 +4725 11315 0.4560 +4725 23435 0.6520 +4725 23480 0.4320 +4725 25873 0.4110 +4725 25915 0.9950 +4725 26521 0.7050 +4725 27089 0.9930 +4725 27109 0.4030 +4725 27258 0.4870 +4725 27350 0.4650 +4725 28958 0.5270 +4725 28976 0.9950 +4725 29078 0.9950 +4725 29796 0.9900 +4725 51056 0.6370 +4725 51079 0.9990 +4725 51102 0.4130 +4725 51103 0.9990 +4725 51258 0.4770 +4725 51287 0.4130 +4725 51295 0.9940 +4725 51300 0.9960 +4725 51372 0.4850 +4725 51650 0.6450 +4725 54460 0.7570 +4725 54539 0.9990 +4725 54543 0.6130 +4725 54968 0.9940 +4725 54998 0.4290 +4725 55028 0.5930 +4725 55052 0.4850 +4725 55572 0.9500 +4725 55847 0.4740 +4725 55863 0.6210 +4725 55967 0.9990 +4725 56901 0.4660 +4725 56964 0.5400 +4725 56993 0.4350 +4725 57379 0.4640 +4725 57407 0.4060 +4725 60489 0.4740 +4725 64960 0.4960 +4725 64975 0.4220 +4725 64981 0.4410 +4725 65018 0.6680 +4725 79133 0.4010 +4725 79590 0.4250 +4725 79598 0.5240 +4725 79647 0.4650 +4725 79728 0.9090 +4725 80195 0.4060 +4725 80347 0.4180 +4725 81892 0.6620 +4725 84277 0.4490 +4725 84701 0.7080 +4725 84817 0.5170 +4725 84833 0.5840 +4725 84886 0.4920 +4725 84939 0.6830 +4725 84987 0.7100 +4725 91942 0.7420 +4725 93974 0.8740 +4725 118487 0.4320 +4725 122704 0.4350 +4725 125965 0.4670 +4725 126328 0.9990 +4725 128308 0.4230 +4725 131474 0.8140 +4725 139221 0.6910 +4725 140564 0.4640 +4725 140823 0.4410 +4725 151903 0.4200 +4725 164668 0.4640 +4725 170712 0.4280 +4725 200315 0.4640 +4725 200316 0.4720 +4725 219927 0.4360 +4725 254863 0.4530 +4725 267020 0.5650 +4725 283459 0.4830 +4725 284184 0.5610 +4725 374291 0.9990 +4725 388753 0.6070 +4725 401505 0.5070 +4725 404672 0.4590 +4725 440567 0.7520 +4725 440574 0.4280 +4725 497661 0.5230 +4725 728317 0.6830 +4725 100532726 0.9030 +4726 4728 0.9990 +4726 4729 0.9990 +4726 4731 0.9990 +4726 5250 0.4030 +4726 5441 0.4970 +4726 5566 0.6690 +4726 5567 0.6640 +4726 5568 0.6640 +4726 6183 0.4610 +4726 6389 0.8400 +4726 6390 0.8860 +4726 6391 0.8740 +4726 6392 0.9410 +4726 6426 0.5890 +4726 6622 0.6620 +4726 6834 0.4320 +4726 7084 0.6420 +4726 7179 0.4050 +4726 7295 0.4270 +4726 7381 0.9960 +4726 7384 0.9900 +4726 7385 0.9640 +4726 7386 0.9990 +4726 7388 0.9950 +4726 8192 0.5850 +4726 8683 0.5950 +4726 9296 0.4170 +4726 9377 0.9870 +4726 9446 0.5890 +4726 9512 0.8920 +4726 9551 0.7910 +4726 9582 0.5080 +4726 10063 0.4480 +4726 10245 0.5690 +4726 10440 0.6130 +4726 10443 0.5320 +4726 10476 0.9010 +4726 10535 0.5510 +4726 10553 0.7630 +4726 10632 0.8590 +4726 10975 0.9860 +4726 11343 0.9450 +4726 23203 0.9010 +4726 23435 0.6520 +4726 23464 0.4810 +4726 23479 0.4200 +4726 23645 0.5120 +4726 25874 0.4520 +4726 25880 0.5780 +4726 25915 0.9480 +4726 26517 0.4150 +4726 26521 0.5200 +4726 27089 0.9970 +4726 27247 0.4370 +4726 27350 0.5070 +4726 28976 0.6930 +4726 28977 0.4370 +4726 29078 0.9580 +4726 29085 0.4340 +4726 29796 0.9990 +4726 29928 0.4870 +4726 29957 0.7860 +4726 51023 0.4510 +4726 51031 0.4790 +4726 51079 0.9990 +4726 51103 0.9870 +4726 51142 0.4110 +4726 51263 0.4690 +4726 51295 0.6790 +4726 51300 0.6860 +4726 54205 0.6110 +4726 54431 0.5610 +4726 54460 0.4950 +4726 54539 0.9990 +4726 54543 0.6410 +4726 54617 0.6600 +4726 54675 0.5560 +4726 54802 0.4280 +4726 54998 0.4230 +4726 55028 0.5360 +4726 55052 0.4180 +4726 55268 0.4740 +4726 55471 0.5530 +4726 55572 0.8730 +4726 55728 0.5320 +4726 55744 0.5190 +4726 55863 0.6910 +4726 55967 0.9990 +4726 56901 0.6680 +4726 56964 0.5400 +4726 57379 0.5060 +4726 57407 0.7630 +4726 57552 0.5200 +4726 58509 0.4100 +4726 60489 0.5110 +4726 63931 0.4040 +4726 64077 0.4020 +4726 64111 0.4290 +4726 64432 0.4050 +4726 64975 0.5740 +4726 64979 0.7430 +4726 65018 0.7040 +4726 79002 0.4790 +4726 79085 0.7530 +4726 79133 0.8410 +4726 79598 0.6420 +4726 79728 0.9670 +4726 79893 0.5070 +4726 80195 0.7610 +4726 80221 0.5840 +4726 80224 0.7900 +4726 81341 0.5090 +4726 81889 0.6050 +4726 83460 0.4170 +4726 83548 0.4090 +4726 84277 0.6540 +4726 84300 0.4190 +4726 84693 0.5720 +4726 84701 0.7540 +4726 84833 0.5150 +4726 84886 0.8780 +4726 84939 0.9060 +4726 84987 0.4260 +4726 90353 0.6900 +4726 90634 0.5320 +4726 91300 0.5090 +4726 91942 0.9840 +4726 112812 0.6620 +4726 114789 0.7530 +4726 118487 0.5490 +4726 119391 0.5580 +4726 122704 0.4510 +4726 125061 0.4800 +4726 125965 0.5700 +4726 126328 0.9990 +4726 126767 0.5120 +4726 128308 0.4460 +4726 137682 0.7090 +4726 139221 0.9060 +4726 140564 0.5060 +4726 150274 0.4380 +4726 164668 0.5060 +4726 170712 0.5740 +4726 200315 0.5060 +4726 200316 0.5110 +4726 219431 0.5090 +4726 267020 0.8130 +4726 283459 0.7280 +4726 284427 0.7530 +4726 343066 0.5120 +4726 344752 0.5120 +4726 374291 0.9990 +4726 388753 0.5470 +4726 388962 0.6160 +4726 440567 0.9650 +4726 440574 0.4150 +4726 493856 0.4330 +4726 728317 0.9060 +4726 100532726 0.9340 +4728 4729 0.9990 +4728 4731 0.9990 +4728 4913 0.4500 +4728 4967 0.4940 +4728 5095 0.4370 +4728 5096 0.5830 +4728 5162 0.6840 +4728 5165 0.4110 +4728 5245 0.4600 +4728 5250 0.6140 +4728 5300 0.5040 +4728 5313 0.5210 +4728 5315 0.5480 +4728 5431 0.4180 +4728 5441 0.4390 +4728 5464 0.7030 +4728 5479 0.5790 +4728 5480 0.5620 +4728 5566 0.6600 +4728 5567 0.6590 +4728 5568 0.6590 +4728 5664 0.5400 +4728 5861 0.4400 +4728 6041 0.4780 +4728 6132 0.4320 +4728 6182 0.5250 +4728 6183 0.6030 +4728 6193 0.4600 +4728 6203 0.4070 +4728 6228 0.4740 +4728 6389 0.9990 +4728 6390 0.9980 +4728 6391 0.9880 +4728 6392 0.9840 +4728 6426 0.5620 +4728 6622 0.6690 +4728 6821 0.4230 +4728 6834 0.8130 +4728 7001 0.4160 +4728 7019 0.4910 +4728 7045 0.5270 +4728 7084 0.7030 +4728 7167 0.6750 +4728 7172 0.4160 +4728 7284 0.7100 +4728 7358 0.4170 +4728 7381 0.9980 +4728 7384 0.9980 +4728 7385 0.9880 +4728 7386 0.9990 +4728 7388 0.9940 +4728 7403 0.5170 +4728 7404 0.5230 +4728 7407 0.4520 +4728 7416 0.4130 +4728 7915 0.4260 +4728 7923 0.4180 +4728 8050 0.4460 +4728 8192 0.8140 +4728 8284 0.4100 +4728 8309 0.4520 +4728 8310 0.4840 +4728 8402 0.5750 +4728 8624 0.4910 +4728 8659 0.4490 +4728 8683 0.5710 +4728 8801 0.5300 +4728 8802 0.6200 +4728 8803 0.4960 +4728 8854 0.4260 +4728 8879 0.4330 +4728 9054 0.5480 +4728 9085 0.4540 +4728 9093 0.4650 +4728 9158 0.4130 +4728 9167 0.4040 +4728 9296 0.7170 +4728 9343 0.4710 +4728 9361 0.4800 +4728 9377 0.9940 +4728 9425 0.4550 +4728 9446 0.5820 +4728 9512 0.9730 +4728 9551 0.6660 +4728 9582 0.5510 +4728 9607 0.5420 +4728 9997 0.5470 +4728 10101 0.4780 +4728 10105 0.4020 +4728 10128 0.5800 +4728 10245 0.7130 +4728 10312 0.4470 +4728 10430 0.4150 +4728 10440 0.7300 +4728 10443 0.4790 +4728 10449 0.6170 +4728 10450 0.4150 +4728 10452 0.4320 +4728 10455 0.4350 +4728 10476 0.8200 +4728 10535 0.5980 +4728 10553 0.8250 +4728 10570 0.4140 +4728 10573 0.7240 +4728 10631 0.5260 +4728 10632 0.6350 +4728 10840 0.4110 +4728 10935 0.4540 +4728 10939 0.5940 +4728 10975 0.9700 +4728 11224 0.4390 +4728 11315 0.4220 +4728 11331 0.6570 +4728 11343 0.9560 +4728 23135 0.5300 +4728 23203 0.9340 +4728 23435 0.6660 +4728 23479 0.5900 +4728 23645 0.9150 +4728 25813 0.4660 +4728 25828 0.5870 +4728 25880 0.5870 +4728 25915 0.9990 +4728 26073 0.4470 +4728 26275 0.4090 +4728 26330 0.4850 +4728 27034 0.4520 +4728 27068 0.7040 +4728 27089 0.9980 +4728 27247 0.8900 +4728 27350 0.5500 +4728 28976 0.8270 +4728 29078 0.9880 +4728 29085 0.6880 +4728 29087 0.8150 +4728 29093 0.4850 +4728 29796 0.9980 +4728 29844 0.4060 +4728 29928 0.5890 +4728 29957 0.7620 +4728 51021 0.6290 +4728 51023 0.5290 +4728 51031 0.7820 +4728 51069 0.5760 +4728 51073 0.4630 +4728 51079 0.9990 +4728 51081 0.5500 +4728 51091 0.4320 +4728 51102 0.4120 +4728 51103 0.9860 +4728 51116 0.4640 +4728 51138 0.4380 +4728 51167 0.4390 +4728 51204 0.6300 +4728 51295 0.9390 +4728 51300 0.9980 +4728 51314 0.4390 +4728 51380 0.4320 +4728 51382 0.4340 +4728 51444 0.5460 +4728 51529 0.5050 +4728 51557 0.7940 +4728 54101 0.4780 +4728 54205 0.8370 +4728 54431 0.7010 +4728 54539 0.9990 +4728 54927 0.6350 +4728 54940 0.4020 +4728 54941 0.5460 +4728 54948 0.5620 +4728 55028 0.4920 +4728 55052 0.6010 +4728 55143 0.5010 +4728 55168 0.7790 +4728 55173 0.4250 +4728 55268 0.4390 +4728 55289 0.4390 +4728 55293 0.5530 +4728 55471 0.7910 +4728 55572 0.9390 +4728 55651 0.6590 +4728 55728 0.4790 +4728 55735 0.4240 +4728 55744 0.5360 +4728 55862 0.4450 +4728 55863 0.6880 +4728 55967 0.9990 +4728 56896 0.4140 +4728 56901 0.7360 +4728 56964 0.5400 +4728 56965 0.5030 +4728 56993 0.4740 +4728 57017 0.4250 +4728 57128 0.5320 +4728 57143 0.4720 +4728 57379 0.5490 +4728 57407 0.8300 +4728 57469 0.4630 +4728 57552 0.5340 +4728 58509 0.4830 +4728 60314 0.7140 +4728 60489 0.5560 +4728 64077 0.5160 +4728 64087 0.4470 +4728 64111 0.6580 +4728 64146 0.4850 +4728 64577 0.4050 +4728 64949 0.4160 +4728 64960 0.5350 +4728 64963 0.6100 +4728 64965 0.4080 +4728 64975 0.5240 +4728 64978 0.4060 +4728 64979 0.6360 +4728 65008 0.4160 +4728 65018 0.6780 +4728 65993 0.5180 +4728 79002 0.6140 +4728 79085 0.7690 +4728 79133 0.9290 +4728 79590 0.4160 +4728 79598 0.7030 +4728 79668 0.5030 +4728 79728 0.9580 +4728 79893 0.4640 +4728 79934 0.4890 +4728 79947 0.4040 +4728 80195 0.8180 +4728 80221 0.5930 +4728 80224 0.8980 +4728 80273 0.4420 +4728 80308 0.5500 +4728 81341 0.9140 +4728 81570 0.4170 +4728 81689 0.5730 +4728 81876 0.4400 +4728 84172 0.4130 +4728 84263 0.4970 +4728 84266 0.5560 +4728 84277 0.6470 +4728 84303 0.5530 +4728 84331 0.5160 +4728 84545 0.4780 +4728 84693 0.7690 +4728 84701 0.8370 +4728 84705 0.4020 +4728 84833 0.4720 +4728 84869 0.4560 +4728 84886 0.9000 +4728 84939 0.9750 +4728 85476 0.4160 +4728 90353 0.7140 +4728 90381 0.5590 +4728 90423 0.4080 +4728 90480 0.4860 +4728 90624 0.4070 +4728 90634 0.4790 +4728 90956 0.4970 +4728 91300 0.9140 +4728 91647 0.4260 +4728 91942 0.9920 +4728 92483 0.5530 +4728 112812 0.9160 +4728 114789 0.7710 +4728 116150 0.4010 +4728 119391 0.5520 +4728 122961 0.5640 +4728 124359 0.4540 +4728 125061 0.5020 +4728 125965 0.6390 +4728 126133 0.4740 +4728 126328 0.9990 +4728 126402 0.4060 +4728 126767 0.5260 +4728 130752 0.5460 +4728 134266 0.4270 +4728 137682 0.8520 +4728 137872 0.8600 +4728 139221 0.9740 +4728 140564 0.5500 +4728 150274 0.5080 +4728 160287 0.5540 +4728 160428 0.4050 +4728 164668 0.5490 +4728 196074 0.4420 +4728 197257 0.4540 +4728 200315 0.5490 +4728 200316 0.5530 +4728 203054 0.4750 +4728 219927 0.4330 +4728 253175 0.4540 +4728 267020 0.4060 +4728 283459 0.5380 +4728 283985 0.4790 +4728 284422 0.4390 +4728 284427 0.7580 +4728 339896 0.4320 +4728 343066 0.5260 +4728 344752 0.5260 +4728 374291 0.9990 +4728 387712 0.4940 +4728 388753 0.6350 +4728 388962 0.4720 +4728 401505 0.4150 +4728 440567 0.9490 +4728 493856 0.4880 +4728 728317 0.9740 +4728 100532726 0.9320 +4728 122405565 0.4390 +4729 4731 0.9990 +4729 4736 0.4580 +4729 4967 0.5840 +4729 5152 0.6500 +4729 5162 0.6620 +4729 5250 0.6330 +4729 5395 0.4850 +4729 5464 0.5070 +4729 5566 0.6550 +4729 5567 0.6550 +4729 5568 0.6550 +4729 5664 0.5610 +4729 5682 0.5300 +4729 5683 0.4130 +4729 5684 0.5020 +4729 5710 0.4120 +4729 6182 0.4280 +4729 6240 0.4660 +4729 6341 0.5420 +4729 6389 0.9840 +4729 6390 0.9990 +4729 6391 0.9820 +4729 6392 0.9560 +4729 6426 0.5800 +4729 6622 0.8050 +4729 6648 0.4750 +4729 6834 0.4710 +4729 7019 0.4730 +4729 7084 0.6130 +4729 7167 0.5600 +4729 7284 0.5320 +4729 7295 0.4820 +4729 7381 0.9990 +4729 7384 0.9960 +4729 7385 0.9960 +4729 7386 0.9990 +4729 7388 0.9940 +4729 7416 0.6130 +4729 7417 0.7650 +4729 7419 0.4600 +4729 8050 0.5730 +4729 8192 0.4510 +4729 8450 0.5970 +4729 8451 0.6720 +4729 8683 0.5830 +4729 8801 0.7130 +4729 8802 0.8200 +4729 8803 0.7020 +4729 8879 0.4140 +4729 9093 0.4300 +4729 9377 0.9940 +4729 9446 0.5780 +4729 9512 0.9570 +4729 9550 0.5520 +4729 9551 0.7090 +4729 9582 0.5160 +4729 9804 0.4230 +4729 9997 0.4780 +4729 10063 0.6710 +4729 10245 0.6650 +4729 10440 0.7280 +4729 10443 0.4970 +4729 10476 0.9000 +4729 10531 0.5760 +4729 10535 0.5290 +4729 10539 0.4510 +4729 10553 0.8140 +4729 10588 0.5310 +4729 10630 0.4260 +4729 10632 0.7030 +4729 10651 0.4650 +4729 10935 0.5220 +4729 10939 0.4440 +4729 10975 0.9230 +4729 10980 0.4760 +4729 10987 0.4670 +4729 10989 0.5600 +4729 11112 0.5300 +4729 11186 0.5080 +4729 11315 0.6720 +4729 11343 0.9500 +4729 23203 0.9400 +4729 23253 0.4500 +4729 23435 0.6680 +4729 23645 0.8420 +4729 25828 0.4820 +4729 25880 0.6060 +4729 25915 0.9420 +4729 26289 0.4400 +4729 27068 0.5480 +4729 27089 0.9950 +4729 27247 0.5030 +4729 27249 0.4640 +4729 27350 0.5150 +4729 28976 0.7790 +4729 28998 0.4680 +4729 29078 0.9600 +4729 29087 0.8120 +4729 29093 0.4180 +4729 29796 0.9970 +4729 29928 0.5970 +4729 29957 0.7740 +4729 50640 0.4090 +4729 50808 0.5030 +4729 51023 0.4290 +4729 51079 0.9990 +4729 51091 0.4150 +4729 51103 0.9850 +4729 51142 0.4060 +4729 51295 0.6540 +4729 51300 0.6820 +4729 51314 0.4410 +4729 51380 0.4200 +4729 51642 0.4430 +4729 51727 0.4520 +4729 54205 0.7790 +4729 54431 0.6790 +4729 54534 0.4840 +4729 54539 0.9990 +4729 54675 0.5780 +4729 54927 0.4040 +4729 54968 0.4160 +4729 55028 0.4800 +4729 55256 0.4900 +4729 55471 0.6630 +4729 55526 0.4640 +4729 55572 0.9090 +4729 55728 0.4920 +4729 55744 0.7090 +4729 55753 0.4560 +4729 55863 0.7370 +4729 55967 0.9990 +4729 56901 0.6630 +4729 56964 0.5400 +4729 57017 0.4040 +4729 57045 0.4150 +4729 57143 0.5490 +4729 57379 0.5140 +4729 57407 0.8110 +4729 57552 0.5100 +4729 58509 0.4150 +4729 60489 0.5220 +4729 64111 0.5720 +4729 64779 0.5090 +4729 64960 0.4290 +4729 65018 0.7180 +4729 65991 0.4510 +4729 79002 0.6790 +4729 79085 0.7710 +4729 79133 0.8770 +4729 79598 0.6040 +4729 79728 0.9460 +4729 79893 0.4510 +4729 79934 0.5280 +4729 80195 0.8100 +4729 80221 0.5950 +4729 80224 0.8640 +4729 81341 0.8420 +4729 84203 0.4540 +4729 84233 0.4090 +4729 84277 0.4910 +4729 84701 0.7900 +4729 84833 0.5640 +4729 84886 0.8000 +4729 84939 0.9750 +4729 90353 0.7100 +4729 90423 0.4130 +4729 90634 0.4920 +4729 90956 0.5140 +4729 91300 0.8420 +4729 91942 0.9920 +4729 93974 0.6870 +4729 94081 0.4020 +4729 112812 0.7640 +4729 114789 0.7710 +4729 119391 0.5330 +4729 119559 0.4200 +4729 122481 0.4440 +4729 125061 0.4730 +4729 125965 0.7580 +4729 126328 0.9990 +4729 126767 0.5020 +4729 131118 0.4760 +4729 137682 0.7000 +4729 139221 0.9750 +4729 140564 0.5140 +4729 140807 0.4370 +4729 150274 0.4150 +4729 158067 0.4440 +4729 164668 0.5140 +4729 170712 0.4050 +4729 200315 0.5140 +4729 200316 0.5180 +4729 203054 0.5140 +4729 221264 0.4490 +4729 222234 0.4750 +4729 267020 0.4130 +4729 283459 0.5570 +4729 283985 0.4200 +4729 284427 0.7710 +4729 339291 0.4780 +4729 339896 0.4200 +4729 343066 0.5020 +4729 344752 0.5020 +4729 374291 0.9990 +4729 388753 0.6220 +4729 388962 0.4770 +4729 440567 0.9390 +4729 440574 0.4350 +4729 493753 0.4620 +4729 493856 0.4530 +4729 728317 0.9750 +4729 100287932 0.4930 +4729 100532726 0.9500 +4731 5152 0.7920 +4731 5316 0.6500 +4731 5566 0.6740 +4731 5567 0.6690 +4731 5568 0.6690 +4731 6284 0.4370 +4731 6389 0.5610 +4731 6622 0.6500 +4731 7084 0.5650 +4731 7307 0.5130 +4731 7381 0.8850 +4731 7384 0.9380 +4731 7385 0.9150 +4731 7386 0.9150 +4731 7388 0.9560 +4731 8867 0.6760 +4731 9377 0.9260 +4731 9510 0.4500 +4731 9512 0.5340 +4731 9551 0.7720 +4731 9619 0.4550 +4731 10476 0.8410 +4731 10553 0.5790 +4731 10632 0.7200 +4731 10785 0.7100 +4731 10975 0.9450 +4731 23203 0.4160 +4731 23408 0.4450 +4731 23435 0.6520 +4731 25880 0.5990 +4731 25915 0.8720 +4731 27089 0.9040 +4731 28976 0.6490 +4731 29078 0.8700 +4731 29796 0.9590 +4731 51079 0.9990 +4731 51103 0.9780 +4731 51295 0.6150 +4731 51300 0.9980 +4731 51650 0.4710 +4731 54539 0.9990 +4731 55471 0.6020 +4731 55572 0.8090 +4731 55744 0.5180 +4731 55863 0.6300 +4731 55967 0.9990 +4731 56901 0.6240 +4731 56964 0.5400 +4731 57407 0.5840 +4731 58494 0.5490 +4731 65018 0.6840 +4731 79133 0.6660 +4731 79598 0.5640 +4731 79728 0.9260 +4731 80195 0.5830 +4731 80224 0.5480 +4731 84277 0.7690 +4731 84939 0.5960 +4731 90353 0.6950 +4731 91942 0.9740 +4731 112476 0.6060 +4731 125965 0.4190 +4731 126328 0.9990 +4731 137682 0.5980 +4731 139221 0.6980 +4731 150274 0.4130 +4731 222234 0.4430 +4731 267020 0.6310 +4731 374291 0.9990 +4731 388753 0.4300 +4731 440567 0.6730 +4731 493829 0.4070 +4731 728317 0.5960 +4731 100532726 0.8810 +4733 4736 0.7270 +4733 4809 0.5580 +4733 5036 0.6510 +4733 5037 0.4580 +4733 5245 0.4190 +4733 5427 0.8100 +4733 5432 0.5770 +4733 5434 0.5150 +4733 5683 0.4840 +4733 5686 0.6080 +4733 5687 0.4610 +4733 5690 0.6540 +4733 5695 0.4210 +4733 5700 0.5120 +4733 5701 0.8180 +4733 5702 0.4710 +4733 5704 0.6390 +4733 5705 0.6910 +4733 5859 0.4920 +4733 6059 0.4650 +4733 6122 0.6580 +4733 6123 0.4790 +4733 6124 0.7680 +4733 6125 0.7010 +4733 6128 0.7730 +4733 6129 0.7480 +4733 6130 0.7820 +4733 6132 0.8440 +4733 6133 0.6490 +4733 6135 0.5340 +4733 6136 0.6630 +4733 6137 0.6410 +4733 6138 0.6350 +4733 6139 0.6640 +4733 6141 0.7400 +4733 6142 0.5750 +4733 6143 0.5870 +4733 6144 0.6550 +4733 6146 0.4870 +4733 6147 0.8720 +4733 6152 0.5720 +4733 6154 0.5620 +4733 6155 0.6220 +4733 6156 0.6520 +4733 6157 0.7020 +4733 6159 0.6120 +4733 6160 0.6770 +4733 6161 0.6280 +4733 6164 0.6350 +4733 6165 0.5930 +4733 6167 0.4420 +4733 6168 0.5430 +4733 6169 0.6310 +4733 6170 0.5560 +4733 6171 0.5130 +4733 6175 0.8220 +4733 6187 0.7590 +4733 6188 0.7990 +4733 6189 0.6960 +4733 6191 0.5580 +4733 6193 0.7230 +4733 6194 0.7200 +4733 6201 0.6730 +4733 6202 0.6480 +4733 6203 0.6510 +4733 6204 0.6470 +4733 6205 0.6620 +4733 6206 0.7280 +4733 6207 0.8000 +4733 6208 0.5930 +4733 6209 0.7780 +4733 6210 0.6210 +4733 6217 0.6170 +4733 6218 0.5960 +4733 6222 0.6980 +4733 6223 0.7370 +4733 6224 0.7530 +4733 6227 0.7370 +4733 6228 0.6190 +4733 6229 0.6900 +4733 6230 0.6420 +4733 6231 0.6210 +4733 6232 0.6200 +4733 6233 0.5240 +4733 6234 0.6810 +4733 6235 0.6210 +4733 6576 0.8010 +4733 6780 0.4880 +4733 6804 0.4390 +4733 6809 0.4390 +4733 6810 0.4400 +4733 6950 0.5050 +4733 7203 0.4610 +4733 7247 0.8080 +4733 7329 0.4020 +4733 8480 0.4500 +4733 8533 0.7470 +4733 8576 0.5710 +4733 8634 0.4090 +4733 8662 0.4030 +4733 8666 0.4790 +4733 8668 0.5400 +4733 8676 0.4400 +4733 8833 0.4530 +4733 8834 0.4710 +4733 8892 0.4960 +4733 8894 0.5340 +4733 9045 0.6000 +4733 9349 0.5920 +4733 9470 0.5660 +4733 9533 0.4070 +4733 9669 0.4240 +4733 9790 0.4340 +4733 9861 0.4800 +4733 9939 0.4070 +4733 10056 0.5410 +4733 10171 0.4240 +4733 10213 0.6810 +4733 10244 0.5060 +4733 10399 0.7450 +4733 10436 0.5200 +4733 10489 0.6470 +4733 10528 0.4080 +4733 10539 0.5420 +4733 10556 0.4500 +4733 10574 0.6340 +4733 10575 0.4160 +4733 10694 0.5030 +4733 10946 0.5800 +4733 10969 0.4350 +4733 10985 0.5850 +4733 10988 0.4550 +4733 11137 0.6000 +4733 11222 0.4070 +4733 11224 0.6480 +4733 11321 0.5440 +4733 22916 0.4360 +4733 22948 0.4290 +4733 23008 0.4710 +4733 23066 0.6120 +4733 23160 0.4250 +4733 23178 0.4020 +4733 23204 0.4340 +4733 23481 0.4110 +4733 23521 0.6380 +4733 23560 0.5390 +4733 23588 0.4790 +4733 25873 0.6330 +4733 26354 0.4180 +4733 27000 0.6740 +4733 27292 0.4360 +4733 28987 0.4710 +4733 28989 0.6860 +4733 29093 0.4380 +4733 29789 0.4780 +4733 29889 0.5530 +4733 51065 0.5190 +4733 51081 0.8580 +4733 51121 0.5550 +4733 51149 0.5550 +4733 51154 0.5950 +4733 51174 0.4940 +4733 51182 0.6900 +4733 51202 0.4800 +4733 51258 0.4290 +4733 51319 0.5290 +4733 51389 0.9820 +4733 51493 0.7810 +4733 51574 0.6360 +4733 51602 0.4210 +4733 54455 0.4810 +4733 54470 0.4290 +4733 54606 0.4300 +4733 55173 0.4740 +4733 55239 0.4340 +4733 55272 0.4230 +4733 55299 0.5960 +4733 55651 0.5840 +4733 55717 0.4050 +4733 55720 0.4660 +4733 55759 0.6160 +4733 55854 0.9990 +4733 55968 0.4650 +4733 56257 0.4350 +4733 57003 0.4270 +4733 58490 0.5280 +4733 63932 0.8020 +4733 64960 0.4900 +4733 64963 0.4300 +4733 64978 0.4680 +4733 83447 0.5040 +4733 83743 0.6270 +4733 83877 0.4750 +4733 84154 0.4980 +4733 84365 0.4430 +4733 112755 0.4390 +4733 114987 0.5040 +4733 116832 0.4810 +4733 122773 0.4710 +4733 123207 0.8020 +4733 126823 0.4710 +4733 140801 0.4870 +4733 157310 0.4490 +4733 200916 0.4420 +4733 201965 0.7590 +4733 283106 0.5130 +4733 285855 0.4260 +4733 347487 0.4590 +4733 388701 0.4350 +4733 400506 0.5420 +4733 414157 0.4790 +4733 100526842 0.4620 +4733 100529239 0.4260 +4733 114483834 0.4690 +4734 4738 0.5280 +4734 4778 0.4760 +4734 4851 0.5100 +4734 4891 0.6620 +4734 4914 0.8020 +4734 5045 0.4010 +4734 5156 0.6590 +4734 5347 0.4920 +4734 5468 0.7010 +4734 5639 0.5040 +4734 5652 0.5790 +4734 5710 0.8730 +4734 5727 0.4880 +4734 5728 0.9840 +4734 5911 0.7850 +4734 6059 0.4100 +4734 6233 0.9920 +4734 6295 0.5910 +4734 6326 0.5190 +4734 6331 0.8090 +4734 6334 0.4310 +4734 6337 0.9720 +4734 6338 0.9960 +4734 6339 0.4170 +4734 6340 0.9760 +4734 6440 0.5870 +4734 6446 0.8670 +4734 6478 0.4470 +4734 6498 0.4520 +4734 6500 0.5820 +4734 6531 0.5920 +4734 6548 0.4120 +4734 6556 0.4540 +4734 6608 0.4150 +4734 6613 0.4040 +4734 6622 0.8410 +4734 6640 0.4450 +4734 6647 0.4790 +4734 6714 0.5660 +4734 6850 0.9190 +4734 6921 0.5230 +4734 7046 0.4770 +4734 7157 0.6500 +4734 7159 0.6110 +4734 7189 0.5080 +4734 7251 0.8590 +4734 7311 0.9750 +4734 7314 0.9790 +4734 7316 0.9950 +4734 7317 0.5740 +4734 7318 0.6470 +4734 7321 0.9710 +4734 7322 0.9660 +4734 7323 0.9630 +4734 7324 0.9040 +4734 7325 0.4220 +4734 7329 0.5610 +4734 7332 0.9790 +4734 7334 0.4930 +4734 7416 0.4290 +4734 7417 0.5130 +4734 7419 0.4710 +4734 7430 0.5410 +4734 7514 0.4990 +4734 7528 0.4100 +4734 7532 0.5820 +4734 7805 0.8080 +4734 7874 0.7300 +4734 8027 0.4760 +4734 8065 0.5970 +4734 8078 0.5390 +4734 8218 0.4230 +4734 8239 0.4730 +4734 8394 0.4080 +4734 8408 0.4240 +4734 8416 0.5230 +4734 8452 0.5990 +4734 8454 0.6060 +4734 8519 0.4320 +4734 8650 0.6980 +4734 8660 0.5650 +4734 8678 0.7590 +4734 8805 0.4890 +4734 8878 0.8290 +4734 8887 0.5040 +4734 8906 0.8490 +4734 8945 0.5980 +4734 8975 0.6940 +4734 8988 0.4260 +4734 9097 0.4130 +4734 9099 0.4130 +4734 9101 0.5600 +4734 9110 0.4260 +4734 9113 0.8570 +4734 9146 0.8190 +4734 9172 0.5490 +4734 9246 0.4420 +4734 9253 0.5880 +4734 9516 0.8900 +4734 9616 0.6790 +4734 9619 0.5510 +4734 9636 0.9810 +4734 9683 0.7750 +4734 9693 0.7080 +4734 9741 0.7050 +4734 9766 0.5580 +4734 9958 0.4370 +4734 9978 0.5620 +4734 10015 0.5630 +4734 10067 0.4280 +4734 10133 0.4160 +4734 10188 0.7980 +4734 10193 0.5000 +4734 10241 0.5100 +4734 10253 0.4150 +4734 10273 0.5260 +4734 10410 0.7560 +4734 10477 0.5640 +4734 10537 0.4240 +4734 10617 0.4520 +4734 10628 0.4710 +4734 11059 0.5190 +4734 11274 0.5990 +4734 11337 0.5600 +4734 11345 0.6070 +4734 23032 0.4480 +4734 23043 0.6260 +4734 23138 0.7080 +4734 23163 0.5380 +4734 23239 0.4430 +4734 23295 0.4870 +4734 23327 0.9720 +4734 23558 0.8820 +4734 23710 0.6070 +4734 25939 0.4200 +4734 26258 0.5300 +4734 26524 0.7230 +4734 26994 0.7690 +4734 27106 0.4740 +4734 27183 0.4500 +4734 27338 0.6520 +4734 29110 0.4330 +4734 29116 0.4980 +4734 29761 0.4920 +4734 29965 0.4850 +4734 29997 0.4170 +4734 51160 0.4620 +4734 51643 0.5460 +4734 51806 0.4040 +4734 54206 0.5130 +4734 54476 0.4070 +4734 54541 0.4010 +4734 54885 0.4260 +4734 55026 0.4200 +4734 55294 0.4060 +4734 55353 0.6160 +4734 55432 0.6020 +4734 55527 0.4190 +4734 56929 0.4190 +4734 56937 0.9780 +4734 57154 0.5040 +4734 57561 0.9920 +4734 57646 0.4630 +4734 58513 0.6150 +4734 60485 0.6350 +4734 60489 0.4370 +4734 64750 0.7370 +4734 64854 0.4040 +4734 79056 0.6870 +4734 79057 0.6120 +4734 79643 0.4120 +4734 79710 0.7830 +4734 80028 0.4350 +4734 80762 0.9990 +4734 81631 0.9120 +4734 83606 0.4580 +4734 84557 0.4630 +4734 84676 0.5510 +4734 85363 0.4890 +4734 91947 0.5610 +4734 92714 0.8720 +4734 143458 0.4980 +4734 145282 0.4140 +4734 154796 0.6010 +4734 154810 0.6890 +4734 162461 0.4380 +4734 221302 0.5450 +4734 387733 0.4070 +4734 401036 0.4640 +4734 440738 0.5160 +4734 645432 0.6720 +4734 728378 0.4970 +4735 4751 0.4160 +4735 4867 0.7940 +4735 4957 0.4670 +4735 5046 0.4510 +4735 5048 0.4930 +4735 5108 0.4420 +4735 5116 0.4880 +4735 5347 0.5280 +4735 5413 0.9730 +4735 5414 0.9930 +4735 5518 0.4620 +4735 5566 0.4600 +4735 5577 0.4160 +4735 5998 0.4320 +4735 6182 0.4190 +4735 6616 0.6220 +4735 6620 0.4730 +4735 6855 0.5020 +4735 7251 0.4630 +4735 7277 0.4480 +4735 7283 0.4090 +4735 7531 0.5230 +4735 7532 0.5570 +4735 7840 0.4040 +4735 7846 0.5030 +4735 8481 0.5010 +4735 8636 0.4310 +4735 8655 0.4160 +4735 8878 0.9030 +4735 9657 0.5680 +4735 9662 0.4020 +4735 9702 0.4050 +4735 9793 0.4270 +4735 10097 0.4110 +4735 10121 0.5360 +4735 10142 0.4640 +4735 10382 0.4620 +4735 10383 0.4990 +4735 10435 0.4600 +4735 10540 0.4530 +4735 10733 0.4780 +4735 10801 0.9970 +4735 10806 0.4270 +4735 11064 0.4680 +4735 11116 0.4340 +4735 11190 0.4370 +4735 11258 0.4530 +4735 22832 0.4090 +4735 22897 0.5940 +4735 22919 0.5610 +4735 22981 0.4040 +4735 22994 0.4350 +4735 22995 0.4090 +4735 23157 0.9990 +4735 23176 0.9970 +4735 23322 0.5920 +4735 23332 0.4670 +4735 23352 0.6040 +4735 23354 0.4030 +4735 23580 0.8520 +4735 26005 0.4730 +4735 26123 0.5780 +4735 27077 0.6640 +4735 30011 0.5620 +4735 51057 0.6010 +4735 51134 0.5160 +4735 51259 0.5510 +4735 54443 0.8210 +4735 54504 0.4510 +4735 54801 0.4050 +4735 54806 0.5110 +4735 54903 0.5050 +4735 55125 0.4160 +4735 55142 0.4160 +4735 55752 0.9990 +4735 55835 0.4060 +4735 55964 0.9800 +4735 57545 0.6070 +4735 57787 0.4190 +4735 79441 0.4370 +4735 79583 0.4090 +4735 79600 0.6360 +4735 79867 0.5370 +4735 80184 0.6520 +4735 80321 0.4020 +4735 80776 0.5170 +4735 84131 0.4050 +4735 84902 0.5660 +4735 84955 0.6220 +4735 85302 0.4500 +4735 90120 0.7110 +4735 91147 0.5420 +4735 95681 0.4260 +4735 115106 0.4050 +4735 116983 0.6100 +4735 121441 0.4260 +4735 122809 0.4240 +4735 124404 0.9910 +4735 132320 0.4590 +4735 151011 0.9750 +4735 199221 0.6540 +4735 203068 0.5000 +4735 261734 0.6090 +4735 346288 0.9210 +4735 347240 0.4460 +4736 4738 0.5890 +4736 4799 0.4810 +4736 4809 0.7310 +4736 4831 0.5220 +4736 4839 0.6880 +4736 4869 0.7040 +4736 4904 0.5600 +4736 5036 0.9500 +4736 5188 0.4010 +4736 5204 0.4250 +4736 5211 0.5140 +4736 5313 0.5420 +4736 5315 0.5690 +4736 5394 0.4280 +4736 5431 0.7320 +4736 5432 0.7690 +4736 5435 0.6170 +4736 5441 0.5890 +4736 5464 0.4010 +4736 5469 0.9330 +4736 5610 0.4550 +4736 5683 0.4230 +4736 5700 0.6590 +4736 5701 0.7250 +4736 5704 0.6710 +4736 5705 0.6830 +4736 5859 0.7630 +4736 5886 0.4120 +4736 5887 0.4770 +4736 5901 0.4260 +4736 5902 0.4730 +4736 5917 0.5120 +4736 5927 0.4490 +4736 5935 0.4050 +4736 6059 0.8620 +4736 6122 0.9990 +4736 6123 0.9290 +4736 6124 0.9990 +4736 6125 0.9990 +4736 6128 0.9990 +4736 6129 0.9990 +4736 6130 0.9990 +4736 6132 0.9990 +4736 6133 0.9990 +4736 6135 0.9990 +4736 6136 0.9990 +4736 6137 0.9990 +4736 6138 0.9990 +4736 6139 0.9980 +4736 6141 0.9990 +4736 6142 0.9990 +4736 6143 0.9990 +4736 6144 0.9990 +4736 6146 0.9980 +4736 6147 0.9990 +4736 6152 0.9990 +4736 6154 0.9980 +4736 6155 0.9990 +4736 6156 0.9990 +4736 6157 0.9990 +4736 6158 0.9980 +4736 6159 0.9980 +4736 6160 0.9990 +4736 6161 0.9990 +4736 6164 0.9990 +4736 6165 0.9990 +4736 6166 0.9970 +4736 6167 0.9960 +4736 6168 0.9990 +4736 6169 0.9990 +4736 6170 0.9990 +4736 6171 0.9610 +4736 6173 0.9980 +4736 6175 0.9990 +4736 6176 0.9990 +4736 6181 0.9970 +4736 6182 0.9550 +4736 6183 0.8930 +4736 6187 0.9990 +4736 6188 0.9990 +4736 6189 0.9990 +4736 6191 0.9970 +4736 6192 0.9850 +4736 6193 0.9990 +4736 6194 0.9990 +4736 6201 0.9990 +4736 6202 0.9990 +4736 6203 0.9990 +4736 6204 0.9980 +4736 6205 0.9990 +4736 6206 0.9990 +4736 6207 0.9990 +4736 6208 0.9980 +4736 6209 0.9990 +4736 6210 0.9970 +4736 6217 0.9990 +4736 6218 0.9980 +4736 6222 0.9990 +4736 6223 0.9990 +4736 6224 0.9990 +4736 6227 0.9990 +4736 6228 0.9990 +4736 6229 0.9990 +4736 6230 0.9990 +4736 6231 0.9990 +4736 6232 0.9980 +4736 6233 0.9980 +4736 6234 0.9990 +4736 6235 0.9990 +4736 6627 0.4460 +4736 6633 0.4760 +4736 6723 0.4250 +4736 6729 0.4030 +4736 6734 0.4590 +4736 6742 0.5120 +4736 6780 0.4710 +4736 6897 0.4510 +4736 6950 0.4240 +4736 7157 0.4110 +4736 7178 0.8560 +4736 7203 0.4480 +4736 7284 0.9730 +4736 7311 0.9950 +4736 7314 0.5510 +4736 7316 0.5630 +4736 7403 0.4890 +4736 7404 0.4890 +4736 7407 0.5880 +4736 7555 0.4630 +4736 7866 0.5360 +4736 8225 0.4890 +4736 8242 0.4520 +4736 8266 0.6280 +4736 8284 0.4580 +4736 8565 0.4900 +4736 8624 0.5260 +4736 8638 0.4940 +4736 8662 0.5890 +4736 8663 0.4960 +4736 8664 0.7660 +4736 8665 0.8380 +4736 8666 0.5530 +4736 8667 0.9340 +4736 8668 0.6490 +4736 8721 0.6240 +4736 8833 0.5940 +4736 8883 0.6210 +4736 8886 0.6880 +4736 8894 0.6460 +4736 9045 0.9990 +4736 9069 0.4580 +4736 9086 0.7030 +4736 9132 0.4690 +4736 9141 0.6950 +4736 9312 0.4690 +4736 9343 0.8260 +4736 9349 0.9990 +4736 9533 0.7710 +4736 9553 0.9650 +4736 9584 0.4990 +4736 9617 0.5360 +4736 9636 0.4950 +4736 9669 0.9020 +4736 9732 0.8990 +4736 9789 0.4300 +4736 9801 0.9710 +4736 9858 0.7660 +4736 9875 0.4820 +4736 9958 0.5500 +4736 10056 0.5110 +4736 10061 0.5280 +4736 10102 0.7320 +4736 10135 0.5430 +4736 10146 0.6610 +4736 10200 0.4410 +4736 10209 0.4910 +4736 10399 0.9990 +4736 10412 0.8400 +4736 10438 0.4130 +4736 10473 0.8020 +4736 10480 0.6540 +4736 10492 0.4380 +4736 10528 0.5270 +4736 10537 0.4940 +4736 10557 0.6900 +4736 10574 0.7170 +4736 10575 0.5750 +4736 10576 0.5450 +4736 10657 0.4410 +4736 10694 0.4560 +4736 10765 0.4490 +4736 10840 0.4970 +4736 10952 0.6820 +4736 10969 0.4790 +4736 10988 0.5590 +4736 11047 0.5180 +4736 11128 0.7480 +4736 11137 0.4360 +4736 11222 0.8500 +4736 11224 0.9990 +4736 22894 0.5050 +4736 22948 0.5490 +4736 22984 0.9320 +4736 23029 0.4620 +4736 23076 0.6640 +4736 23135 0.4900 +4736 23148 0.5170 +4736 23173 0.4790 +4736 23185 0.9020 +4736 23195 0.4080 +4736 23204 0.8660 +4736 23246 0.7070 +4736 23252 0.7170 +4736 23378 0.4700 +4736 23395 0.4530 +4736 23478 0.4830 +4736 23480 0.5200 +4736 23481 0.7920 +4736 23517 0.4880 +4736 23521 0.9990 +4736 23560 0.9500 +4736 23640 0.7780 +4736 23708 0.5600 +4736 25873 0.9990 +4736 25885 0.7840 +4736 26135 0.9430 +4736 26155 0.5010 +4736 26156 0.5320 +4736 26164 0.4580 +4736 26168 0.5260 +4736 26251 0.4690 +4736 26271 0.5370 +4736 26289 0.4440 +4736 26575 0.4730 +4736 26986 0.9030 +4736 27000 0.4330 +4736 27012 0.4690 +4736 27043 0.5780 +4736 27292 0.4590 +4736 27335 0.4900 +4736 28972 0.4310 +4736 28991 0.4800 +4736 28998 0.8690 +4736 29088 0.5990 +4736 29093 0.8390 +4736 29102 0.6000 +4736 29789 0.4060 +4736 29889 0.8660 +4736 29927 0.8760 +4736 29978 0.5720 +4736 29979 0.4270 +4736 29997 0.8810 +4736 50808 0.4470 +4736 51021 0.9700 +4736 51023 0.4420 +4736 51042 0.8700 +4736 51065 0.9480 +4736 51068 0.8820 +4736 51069 0.8360 +4736 51073 0.8430 +4736 51081 0.8630 +4736 51116 0.7740 +4736 51119 0.6130 +4736 51121 0.9970 +4736 51149 0.9210 +4736 51154 0.9080 +4736 51187 0.9740 +4736 51264 0.9670 +4736 51319 0.8860 +4736 51386 0.5430 +4736 51388 0.5350 +4736 51520 0.4780 +4736 51574 0.5520 +4736 51602 0.4010 +4736 51727 0.4630 +4736 54148 0.4390 +4736 54475 0.4090 +4736 54516 0.5360 +4736 54881 0.6500 +4736 54948 0.8180 +4736 54965 0.4040 +4736 55035 0.6600 +4736 55052 0.9730 +4736 55143 0.4630 +4736 55153 0.4260 +4736 55157 0.5040 +4736 55168 0.4540 +4736 55173 0.8910 +4736 55176 0.8700 +4736 55272 0.8980 +4736 55299 0.5060 +4736 55308 0.4400 +4736 55316 0.9160 +4736 55319 0.8040 +4736 55324 0.5330 +4736 55341 0.8800 +4736 55591 0.4740 +4736 55607 0.5240 +4736 55629 0.5410 +4736 55646 0.8790 +4736 55651 0.7920 +4736 55703 0.6910 +4736 55759 0.7420 +4736 55802 0.5990 +4736 55854 0.4750 +4736 56474 0.4500 +4736 56479 0.4690 +4736 56648 0.8020 +4736 56829 0.4340 +4736 56893 0.4480 +4736 56965 0.5420 +4736 57038 0.4070 +4736 57136 0.6270 +4736 57418 0.6670 +4736 57470 0.5020 +4736 57532 0.7290 +4736 57696 0.5100 +4736 60558 0.7170 +4736 60559 0.4460 +4736 60672 0.4200 +4736 60678 0.9090 +4736 63875 0.9750 +4736 63931 0.8380 +4736 64221 0.5160 +4736 64318 0.4580 +4736 64374 0.7750 +4736 64960 0.8380 +4736 64963 0.8350 +4736 64965 0.9720 +4736 64968 0.9700 +4736 64969 0.8910 +4736 64979 0.9710 +4736 64983 0.9690 +4736 65003 0.7870 +4736 65005 0.9720 +4736 65121 0.5800 +4736 65122 0.5800 +4736 65992 0.4020 +4736 65993 0.4170 +4736 79048 0.8030 +4736 79159 0.5210 +4736 79590 0.8430 +4736 79631 0.8070 +4736 79668 0.5420 +4736 79682 0.4470 +4736 79707 0.5170 +4736 80222 0.4050 +4736 81875 0.4210 +4736 81887 0.5440 +4736 83743 0.4290 +4736 84172 0.6890 +4736 84186 0.6320 +4736 84298 0.8230 +4736 84365 0.6460 +4736 84705 0.5890 +4736 84993 0.4640 +4736 85378 0.4060 +4736 85476 0.8100 +4736 85865 0.5460 +4736 87178 0.7520 +4736 90441 0.8340 +4736 90459 0.4050 +4736 90701 0.4780 +4736 91574 0.5360 +4736 91875 0.4490 +4736 92399 0.9130 +4736 93107 0.4690 +4736 93550 0.4940 +4736 112840 0.5600 +4736 114987 0.8610 +4736 115098 0.8430 +4736 116832 0.9310 +4736 117246 0.4960 +4736 120892 0.5330 +4736 122481 0.4440 +4736 122622 0.4070 +4736 123283 0.4040 +4736 124454 0.6620 +4736 126402 0.8550 +4736 140032 0.8830 +4736 140801 0.9960 +4736 143244 0.8020 +4736 158067 0.4440 +4736 164153 0.4940 +4736 169522 0.4690 +4736 170850 0.4690 +4736 200916 0.9240 +4736 219927 0.9740 +4736 221078 0.4760 +4736 221264 0.4440 +4736 254268 0.9070 +4736 283518 0.4690 +4736 285855 0.9400 +4736 342538 0.5300 +4736 343068 0.5800 +4736 343070 0.5800 +4736 347487 0.9180 +4736 387129 0.8370 +4736 387712 0.4260 +4736 390999 0.5800 +4736 391002 0.5800 +4736 400735 0.5800 +4736 400736 0.5800 +4736 440560 0.5800 +4736 440561 0.5800 +4736 440689 0.7080 +4736 441873 0.5800 +4736 641776 0.6880 +4736 643909 0.6880 +4736 645051 0.6450 +4736 645073 0.6450 +4736 645359 0.5800 +4736 653619 0.5800 +4736 654364 0.4260 +4736 728524 0.6880 +4736 729396 0.6450 +4736 729422 0.6450 +4736 729428 0.6450 +4736 729431 0.6450 +4736 729442 0.6450 +4736 729447 0.6450 +4736 729528 0.5800 +4736 100008586 0.6450 +4736 100132399 0.6450 +4736 100287482 0.7660 +4736 100505478 0.8050 +4736 100526842 0.9880 +4736 100529097 0.8250 +4736 100529239 0.9850 +4736 100996746 0.6880 +4736 101929983 0.5800 +4736 102724473 0.6450 +4736 105180390 0.6880 +4736 105180391 0.6880 +4736 114483834 0.5610 +4738 4792 0.9260 +4738 4809 0.4700 +4738 5071 0.7180 +4738 5111 0.4660 +4738 5201 0.4290 +4738 5204 0.4910 +4738 5371 0.4510 +4738 5412 0.8000 +4738 5439 0.5950 +4738 5469 0.4130 +4738 5476 0.7630 +4738 5682 0.7840 +4738 5683 0.8280 +4738 5684 0.8360 +4738 5685 0.7650 +4738 5686 0.8000 +4738 5687 0.8840 +4738 5688 0.8820 +4738 5689 0.6690 +4738 5690 0.7320 +4738 5691 0.7970 +4738 5692 0.6980 +4738 5693 0.7260 +4738 5694 0.9180 +4738 5695 0.6970 +4738 5696 0.6350 +4738 5698 0.7410 +4738 5699 0.6830 +4738 5700 0.7100 +4738 5701 0.6080 +4738 5702 0.7080 +4738 5704 0.7040 +4738 5705 0.6380 +4738 5706 0.6420 +4738 5707 0.7040 +4738 5708 0.7820 +4738 5709 0.7340 +4738 5710 0.9320 +4738 5711 0.5670 +4738 5713 0.7870 +4738 5714 0.7630 +4738 5715 0.5910 +4738 5716 0.5950 +4738 5717 0.7360 +4738 5718 0.7490 +4738 5719 0.7270 +4738 5720 0.6160 +4738 5721 0.6070 +4738 5886 0.7750 +4738 5905 0.7650 +4738 5929 0.6470 +4738 5931 0.5800 +4738 6045 0.4490 +4738 6047 0.5820 +4738 6122 0.4250 +4738 6124 0.4530 +4738 6125 0.7400 +4738 6128 0.6500 +4738 6129 0.5670 +4738 6130 0.5650 +4738 6132 0.6530 +4738 6133 0.5810 +4738 6135 0.8670 +4738 6136 0.5860 +4738 6137 0.6910 +4738 6138 0.6330 +4738 6139 0.4340 +4738 6141 0.6500 +4738 6142 0.5500 +4738 6143 0.6570 +4738 6144 0.7170 +4738 6146 0.4210 +4738 6147 0.6460 +4738 6152 0.7290 +4738 6154 0.6430 +4738 6155 0.6210 +4738 6156 0.7160 +4738 6158 0.5550 +4738 6159 0.7020 +4738 6160 0.7190 +4738 6164 0.6350 +4738 6165 0.7420 +4738 6166 0.5630 +4738 6168 0.7620 +4738 6169 0.5910 +4738 6173 0.4630 +4738 6175 0.4950 +4738 6176 0.5400 +4738 6181 0.5660 +4738 6183 0.4300 +4738 6187 0.5960 +4738 6188 0.7460 +4738 6189 0.6500 +4738 6191 0.6500 +4738 6192 0.4780 +4738 6193 0.4910 +4738 6194 0.7050 +4738 6201 0.6950 +4738 6202 0.7280 +4738 6203 0.5200 +4738 6204 0.4720 +4738 6205 0.6620 +4738 6207 0.5740 +4738 6208 0.6910 +4738 6209 0.6170 +4738 6210 0.5740 +4738 6217 0.5990 +4738 6218 0.5950 +4738 6222 0.6210 +4738 6223 0.6010 +4738 6224 0.6570 +4738 6227 0.6330 +4738 6228 0.6010 +4738 6229 0.6400 +4738 6230 0.6630 +4738 6231 0.7370 +4738 6232 0.5530 +4738 6233 0.9790 +4738 6234 0.6160 +4738 6235 0.4890 +4738 6402 0.4370 +4738 6468 0.5000 +4738 6500 0.9940 +4738 6502 0.9740 +4738 6612 0.8460 +4738 6613 0.9730 +4738 6633 0.4850 +4738 6635 0.5170 +4738 6637 0.6420 +4738 6727 0.7570 +4738 6921 0.9980 +4738 6923 0.9980 +4738 6924 0.4790 +4738 7001 0.5320 +4738 7048 0.6000 +4738 7157 0.8080 +4738 7189 0.4340 +4738 7265 0.4350 +4738 7311 0.9830 +4738 7314 0.9600 +4738 7316 0.9500 +4738 7317 0.9470 +4738 7318 0.6910 +4738 7319 0.4530 +4738 7320 0.4700 +4738 7321 0.7720 +4738 7322 0.9840 +4738 7323 0.6710 +4738 7324 0.4560 +4738 7325 0.5600 +4738 7326 0.4940 +4738 7327 0.4280 +4738 7329 0.7940 +4738 7332 0.6110 +4738 7334 0.6630 +4738 7335 0.5280 +4738 7336 0.5510 +4738 7337 0.5370 +4738 7341 0.9780 +4738 7342 0.4470 +4738 7345 0.6230 +4738 7347 0.9710 +4738 7353 0.5060 +4738 7398 0.4360 +4738 7415 0.4580 +4738 7428 0.9610 +4738 7508 0.4540 +4738 7514 0.4540 +4738 7532 0.4300 +4738 7704 0.5490 +4738 7874 0.7140 +4738 7979 0.7060 +4738 8065 0.9990 +4738 8078 0.6030 +4738 8139 0.6020 +4738 8290 0.4110 +4738 8315 0.4420 +4738 8337 0.4350 +4738 8338 0.4210 +4738 8349 0.5090 +4738 8356 0.4200 +4738 8405 0.5010 +4738 8450 0.9580 +4738 8451 0.9950 +4738 8452 0.9940 +4738 8453 0.9990 +4738 8454 0.9990 +4738 8517 0.4540 +4738 8533 0.9640 +4738 8554 0.4850 +4738 8562 0.4510 +4738 8665 0.4190 +4738 8668 0.4730 +4738 8721 0.4120 +4738 8737 0.4690 +4738 8815 0.4050 +4738 8816 0.5780 +4738 8835 0.5440 +4738 8878 0.5330 +4738 8883 0.9990 +4738 8945 0.9840 +4738 8975 0.5230 +4738 9021 0.5230 +4738 9025 0.4940 +4738 9039 0.9990 +4738 9040 0.9990 +4738 9045 0.5970 +4738 9063 0.4530 +4738 9097 0.7190 +4738 9099 0.4870 +4738 9140 0.5400 +4738 9141 0.4290 +4738 9146 0.5470 +4738 9246 0.5670 +4738 9296 0.4880 +4738 9306 0.5360 +4738 9318 0.9560 +4738 9320 0.5090 +4738 9349 0.6790 +4738 9354 0.6680 +4738 9491 0.5480 +4738 9531 0.4490 +4738 9616 0.9960 +4738 9627 0.4390 +4738 9636 0.8120 +4738 9655 0.5310 +4738 9730 0.5920 +4738 9817 0.6470 +4738 9861 0.7500 +4738 9903 0.6260 +4738 9929 0.5580 +4738 9958 0.4620 +4738 9978 0.9990 +4738 10013 0.6310 +4738 10049 0.4450 +4738 10054 0.8810 +4738 10055 0.8250 +4738 10075 0.4950 +4738 10116 0.5770 +4738 10197 0.5850 +4738 10213 0.9570 +4738 10238 0.5390 +4738 10273 0.4090 +4738 10277 0.6980 +4738 10324 0.5920 +4738 10399 0.5190 +4738 10425 0.9380 +4738 10436 0.4960 +4738 10477 0.4930 +4738 10489 0.5410 +4738 10517 0.5880 +4738 10537 0.9200 +4738 10617 0.5830 +4738 10920 0.9780 +4738 10980 0.9950 +4738 10985 0.5180 +4738 10987 0.9990 +4738 11037 0.4990 +4738 11047 0.6320 +4738 11059 0.4080 +4738 11065 0.4360 +4738 11091 0.5860 +4738 11124 0.4570 +4738 11201 0.4450 +4738 11224 0.5820 +4738 11236 0.4440 +4738 11274 0.5680 +4738 11275 0.6100 +4738 11315 0.4480 +4738 11345 0.7100 +4738 22826 0.4310 +4738 22992 0.4900 +4738 23014 0.5930 +4738 23038 0.5470 +4738 23066 0.4840 +4738 23072 0.6090 +4738 23113 0.8950 +4738 23142 0.6030 +4738 23184 0.5230 +4738 23194 0.6170 +4738 23198 0.5650 +4738 23291 0.7610 +4738 23326 0.4090 +4738 23327 0.5150 +4738 23351 0.9730 +4738 23363 0.5750 +4738 23412 0.5520 +4738 23450 0.4230 +4738 23476 0.5860 +4738 23510 0.4330 +4738 23521 0.4810 +4738 23640 0.4010 +4738 23710 0.7000 +4738 23746 0.7030 +4738 25764 0.5790 +4738 25793 0.7560 +4738 25820 0.9810 +4738 25873 0.6240 +4738 25879 0.6360 +4738 26043 0.9130 +4738 26094 0.5240 +4738 26118 0.5780 +4738 26168 0.7970 +4738 26190 0.6540 +4738 26224 0.6610 +4738 26232 0.6850 +4738 26234 0.5580 +4738 26235 0.6080 +4738 26249 0.6510 +4738 26259 0.7100 +4738 26263 0.5800 +4738 26267 0.5120 +4738 26268 0.6050 +4738 26270 0.5980 +4738 26272 0.6530 +4738 26277 0.4450 +4738 27005 0.7060 +4738 27085 0.4740 +4738 27252 0.6030 +4738 27304 0.6200 +4738 27335 0.5190 +4738 27338 0.6510 +4738 27348 0.5120 +4738 28952 0.5060 +4738 28991 0.6290 +4738 28998 0.4760 +4738 29089 0.4660 +4738 29093 0.4060 +4738 29099 0.5350 +4738 29761 0.6780 +4738 29843 0.7230 +4738 29889 0.4710 +4738 29978 0.4850 +4738 29979 0.5440 +4738 29997 0.4780 +4738 50717 0.5380 +4738 50813 0.8880 +4738 51065 0.5370 +4738 51069 0.4630 +4738 51081 0.4650 +4738 51088 0.5520 +4738 51121 0.4870 +4738 51122 0.5070 +4738 51138 0.9810 +4738 51154 0.4340 +4738 51185 0.8820 +4738 51371 0.4830 +4738 51372 0.7170 +4738 51377 0.5510 +4738 51397 0.5170 +4738 51444 0.4080 +4738 51506 0.6270 +4738 51514 0.7490 +4738 51529 0.4300 +4738 51569 0.7910 +4738 51665 0.5630 +4738 51666 0.5320 +4738 51667 0.9940 +4738 51676 0.5660 +4738 51725 0.5040 +4738 53339 0.5350 +4738 54165 0.9960 +4738 54461 0.5830 +4738 54778 0.5260 +4738 54850 0.6340 +4738 54876 0.5130 +4738 54926 0.5350 +4738 54939 0.5750 +4738 54951 0.5540 +4738 55023 0.4480 +4738 55070 0.5660 +4738 55072 0.4190 +4738 55173 0.4560 +4738 55175 0.6060 +4738 55208 0.7390 +4738 55236 0.7360 +4738 55272 0.4630 +4738 55284 0.4790 +4738 55294 0.8160 +4738 55316 0.4540 +4738 55336 0.5950 +4738 55505 0.4520 +4738 55527 0.5320 +4738 55593 0.4990 +4738 55611 0.7970 +4738 55651 0.4450 +4738 55658 0.4030 +4738 55666 0.5600 +4738 55768 0.4330 +4738 55827 0.5290 +4738 55832 0.9680 +4738 55884 0.5430 +4738 55958 0.6280 +4738 55968 0.4180 +4738 56929 0.5690 +4738 56943 0.4130 +4738 56995 0.4990 +4738 57154 0.6350 +4738 57448 0.4920 +4738 57520 0.6130 +4738 57542 0.5670 +4738 57559 0.5830 +4738 57646 0.4880 +4738 59286 0.9430 +4738 63931 0.5290 +4738 64326 0.5860 +4738 64344 0.5470 +4738 64410 0.5060 +4738 64708 0.9580 +4738 64750 0.7370 +4738 64960 0.4020 +4738 64963 0.5210 +4738 64969 0.4300 +4738 65003 0.4100 +4738 65008 0.4170 +4738 65018 0.4490 +4738 65264 0.4180 +4738 78990 0.5270 +4738 79016 0.6090 +4738 79184 0.5750 +4738 79269 0.5840 +4738 79590 0.4410 +4738 79754 0.5320 +4738 79791 0.5430 +4738 79876 0.6770 +4738 80028 0.6190 +4738 80067 0.4990 +4738 80176 0.5030 +4738 80204 0.7680 +4738 80344 0.6450 +4738 81605 0.7020 +4738 81620 0.8240 +4738 83443 0.6690 +4738 83473 0.4630 +4738 83658 0.6920 +4738 83737 0.4030 +4738 83987 0.5750 +4738 84078 0.5460 +4738 84085 0.5840 +4738 84196 0.5730 +4738 84231 0.5950 +4738 84259 0.7420 +4738 84261 0.5940 +4738 84301 0.4210 +4738 84541 0.5690 +4738 84676 0.4110 +4738 84678 0.4910 +4738 84727 0.5030 +4738 84844 0.6280 +4738 84861 0.6010 +4738 84901 0.6750 +4738 84954 0.5170 +4738 84961 0.5500 +4738 84993 0.4990 +4738 85439 0.6590 +4738 89890 0.5410 +4738 90135 0.5130 +4738 90268 0.5260 +4738 90293 0.6020 +4738 90864 0.5150 +4738 92369 0.5030 +4738 92552 0.4100 +4738 92591 0.5320 +4738 93611 0.5270 +4738 93621 0.4300 +4738 114803 0.5110 +4738 114907 0.5740 +4738 114987 0.4460 +4738 115290 0.5170 +4738 116138 0.6230 +4738 122416 0.5320 +4738 122706 0.5790 +4738 122769 0.6410 +4738 123228 0.9990 +4738 123879 0.7480 +4738 126119 0.5410 +4738 126402 0.4410 +4738 126433 0.5120 +4738 127247 0.4990 +4738 133482 0.4270 +4738 134510 0.5250 +4738 135644 0.9240 +4738 136371 0.5320 +4738 140032 0.4780 +4738 140456 0.5450 +4738 140458 0.5320 +4738 140459 0.5680 +4738 140460 0.5320 +4738 140461 0.6600 +4738 140462 0.6320 +4738 140739 0.9910 +4738 140825 0.5090 +4738 142685 0.5320 +4738 142686 0.5320 +4738 142689 0.5420 +4738 143471 0.6650 +4738 144699 0.6220 +4738 146330 0.6020 +4738 149951 0.5070 +4738 150365 0.6870 +4738 150678 0.5750 +4738 150684 0.5860 +4738 150726 0.5150 +4738 154881 0.4990 +4738 170622 0.5550 +4738 171222 0.8640 +4738 200845 0.5300 +4738 200916 0.4210 +4738 201456 0.5470 +4738 205564 0.6520 +4738 219431 0.6100 +4738 221302 0.7330 +4738 222235 0.5930 +4738 246721 0.5840 +4738 283807 0.5980 +4738 285231 0.5260 +4738 286187 0.5010 +4738 387082 0.8530 +4738 390594 0.5910 +4738 401036 0.5320 +4738 440093 0.4140 +4738 440686 0.4120 +4738 548644 0.5840 +4738 653604 0.4160 +4738 100529097 0.4480 +4738 100529239 0.4200 +4738 100652824 0.4390 +4738 112268293 0.6890 +4739 4747 0.4240 +4739 4792 0.4470 +4739 5054 0.4630 +4739 5347 0.5780 +4739 5747 0.9150 +4739 5781 0.4110 +4739 5782 0.6880 +4739 5789 0.4550 +4739 5829 0.6700 +4739 5877 0.5550 +4739 6714 0.9330 +4739 6790 0.9900 +4739 6794 0.6150 +4739 6876 0.5270 +4739 7041 0.5180 +4739 7114 0.4400 +4739 7205 0.7580 +4739 7414 0.4320 +4739 7424 0.5400 +4739 7431 0.4020 +4739 7454 0.4580 +4739 7791 0.6790 +4739 8412 0.9520 +4739 8976 0.4290 +4739 9564 0.8220 +4739 9645 0.8560 +4739 9855 0.4200 +4739 10013 0.8880 +4739 10044 0.6910 +4739 10095 0.5680 +4739 10146 0.4340 +4739 10221 0.4060 +4739 10253 0.4180 +4739 10519 0.4180 +4739 10907 0.6710 +4739 22974 0.6490 +4739 27130 0.5630 +4739 27289 0.4610 +4739 50618 0.4030 +4739 51199 0.4970 +4739 51343 0.5740 +4739 55125 0.5320 +4739 57553 0.8370 +4739 57679 0.4050 +4739 64750 0.4350 +4739 64780 0.9980 +4739 79778 0.7170 +4739 79866 0.7060 +4739 81565 0.5480 +4739 83737 0.4600 +4739 84106 0.4900 +4739 84181 0.4120 +4739 84962 0.5400 +4739 85302 0.4900 +4739 85377 0.7270 +4739 114790 0.4700 +4739 117286 0.4180 +4739 118430 0.4050 +4739 128344 0.5400 +4739 152185 0.4070 +4739 347240 0.4360 +4739 100133941 0.5690 +4741 4744 0.9930 +4741 4747 0.9990 +4741 5080 0.4170 +4741 5093 0.4280 +4741 5094 0.4250 +4741 5339 0.6250 +4741 5354 0.4410 +4741 5522 0.4780 +4741 5566 0.4150 +4741 5600 0.9060 +4741 5603 0.9060 +4741 5630 0.9040 +4741 6285 0.4840 +4741 6300 0.9070 +4741 6423 0.4300 +4741 6506 0.5710 +4741 6616 0.5350 +4741 6622 0.5600 +4741 6647 0.6770 +4741 6853 0.4830 +4741 6855 0.4460 +4741 6857 0.4920 +4741 6860 0.5860 +4741 6863 0.5080 +4741 6876 0.4530 +4741 6900 0.4260 +4741 7153 0.4200 +4741 7345 0.4020 +4741 7431 0.9000 +4741 8139 0.7780 +4741 8334 0.4490 +4741 8878 0.5040 +4741 9118 0.9960 +4741 9371 0.4240 +4741 9378 0.5720 +4741 9973 0.4810 +4741 10381 0.5320 +4741 10398 0.4130 +4741 10763 0.8530 +4741 11075 0.5390 +4741 11127 0.4050 +4741 22920 0.4200 +4741 23435 0.4100 +4741 25897 0.4400 +4741 27185 0.4170 +4741 29903 0.4350 +4741 57084 0.5240 +4741 63895 0.4120 +4741 64283 0.7740 +4741 64837 0.9140 +4741 81493 0.6130 +4741 81565 0.4580 +4741 84687 0.4020 +4741 89953 0.9110 +4741 146713 0.5310 +4741 147700 0.9120 +4741 283209 0.4370 +4741 286077 0.5000 +4741 286343 0.4200 +4741 643836 0.4350 +4744 4747 0.9960 +4744 4750 0.4180 +4744 4771 0.5940 +4744 4803 0.4460 +4744 4842 0.4610 +4744 4915 0.4280 +4744 5071 0.4080 +4744 5216 0.6220 +4744 5457 0.4160 +4744 5585 0.6030 +4744 5600 0.9150 +4744 5603 0.9100 +4744 5630 0.9040 +4744 5816 0.5200 +4744 6285 0.6420 +4744 6300 0.9100 +4744 6311 0.4510 +4744 6506 0.5450 +4744 6607 0.4180 +4744 6616 0.4090 +4744 6622 0.4470 +4744 6647 0.7860 +4744 6853 0.4790 +4744 6854 0.4080 +4744 6855 0.5260 +4744 7054 0.4310 +4744 7277 0.6210 +4744 7345 0.5630 +4744 7415 0.4450 +4744 8139 0.5040 +4744 8506 0.4580 +4744 9118 0.9880 +4744 9217 0.7170 +4744 9896 0.6790 +4744 9973 0.4700 +4744 10133 0.5950 +4744 10215 0.4690 +4744 10381 0.5640 +4744 22920 0.5450 +4744 23025 0.4720 +4744 23064 0.6830 +4744 23435 0.7490 +4744 25897 0.4400 +4744 25978 0.4740 +4744 29978 0.5400 +4744 57030 0.4780 +4744 57679 0.7360 +4744 64283 0.4370 +4744 64837 0.9220 +4744 80208 0.4840 +4744 85358 0.4210 +4744 89953 0.9150 +4744 116512 0.4100 +4744 116519 0.4160 +4744 127833 0.4460 +4744 146713 0.6510 +4744 147700 0.9190 +4744 203228 0.5910 +4744 400916 0.4230 +4745 4753 0.5780 +4745 5214 0.4420 +4745 6857 0.4650 +4745 7148 0.5870 +4745 7579 0.4550 +4745 7869 0.5210 +4745 8328 0.4060 +4745 22925 0.7380 +4745 23363 0.5440 +4745 29991 0.4320 +4745 55107 0.5630 +4745 55223 0.4070 +4745 55785 0.4010 +4745 56955 0.4480 +4745 56980 0.4220 +4745 57582 0.4350 +4745 64221 0.9260 +4745 127933 0.4310 +4745 149076 0.4390 +4745 153090 0.4320 +4745 158135 0.4280 +4745 196527 0.8950 +4745 203859 0.8740 +4745 221981 0.7730 +4745 339324 0.4530 +4745 392399 0.4320 +4745 401115 0.6400 +4745 402381 0.4350 +4747 4760 0.4020 +4747 4803 0.4930 +4747 4842 0.4830 +4747 4885 0.4010 +4747 4893 0.5380 +4747 4897 0.4210 +4747 4900 0.7790 +4747 4914 0.4120 +4747 4915 0.4360 +4747 5080 0.4680 +4747 5179 0.4310 +4747 5354 0.4820 +4747 5368 0.5610 +4747 5376 0.5970 +4747 5457 0.6390 +4747 5458 0.4460 +4747 5600 0.9120 +4747 5603 0.9090 +4747 5621 0.4120 +4747 5630 0.9020 +4747 5663 0.4700 +4747 5923 0.5040 +4747 5924 0.4810 +4747 6285 0.7290 +4747 6300 0.9100 +4747 6305 0.5210 +4747 6334 0.5090 +4747 6347 0.4190 +4747 6496 0.4480 +4747 6506 0.4140 +4747 6507 0.4010 +4747 6616 0.8080 +4747 6620 0.4920 +4747 6622 0.6630 +4747 6623 0.4810 +4747 6647 0.9760 +4747 6657 0.4540 +4747 6696 0.5770 +4747 6709 0.5770 +4747 6714 0.4900 +4747 6853 0.6970 +4747 6854 0.6760 +4747 6855 0.5660 +4747 6857 0.7110 +4747 6860 0.4040 +4747 6900 0.5980 +4747 7070 0.4320 +4747 7124 0.4520 +4747 7248 0.4600 +4747 7345 0.6880 +4747 7431 0.8190 +4747 7447 0.6760 +4747 7976 0.4770 +4747 8139 0.5990 +4747 8224 0.5880 +4747 8326 0.4010 +4747 8731 0.7480 +4747 8898 0.9060 +4747 8988 0.4370 +4747 9019 0.6010 +4747 9118 0.9860 +4747 9172 0.4870 +4747 9255 0.4280 +4747 9516 0.5280 +4747 9900 0.4130 +4747 9927 0.5490 +4747 9973 0.4070 +4747 10002 0.4330 +4747 10190 0.5070 +4747 10215 0.4910 +4747 10381 0.5670 +4747 10457 0.4060 +4747 10540 0.4060 +4747 10763 0.7410 +4747 11075 0.5290 +4747 22920 0.4740 +4747 23095 0.4700 +4747 23114 0.4660 +4747 23321 0.7240 +4747 23336 0.4830 +4747 23435 0.7910 +4747 23621 0.4890 +4747 26353 0.5050 +4747 54209 0.5380 +4747 54332 0.6580 +4747 55079 0.4110 +4747 55669 0.5160 +4747 56159 0.4610 +4747 57030 0.4110 +4747 57084 0.4040 +4747 57468 0.5280 +4747 57554 0.5030 +4747 57716 0.6330 +4747 58157 0.4530 +4747 64283 0.7160 +4747 64837 0.9200 +4747 79628 0.5810 +4747 81493 0.6990 +4747 81565 0.5610 +4747 81846 0.4760 +4747 85358 0.4540 +4747 89953 0.9170 +4747 90678 0.4120 +4747 120892 0.4840 +4747 121512 0.4380 +4747 126206 0.4360 +4747 132204 0.4010 +4747 146713 0.5880 +4747 147700 0.9240 +4747 203228 0.5960 +4747 220202 0.4240 +4747 347730 0.6730 +4750 4751 0.4600 +4750 5216 0.5780 +4750 6311 0.4950 +4750 6647 0.5810 +4750 7277 0.5770 +4750 7415 0.5360 +4750 7448 0.5680 +4750 7533 0.5100 +4750 8022 0.4350 +4750 8100 0.4240 +4750 8481 0.4010 +4750 8878 0.4180 +4750 8928 0.4050 +4750 9217 0.7170 +4750 9321 0.4130 +4750 9371 0.4490 +4750 9637 0.6040 +4750 9696 0.4680 +4750 9731 0.5480 +4750 9742 0.5160 +4750 9782 0.6610 +4750 9786 0.5560 +4750 9896 0.5120 +4750 10133 0.5270 +4750 11127 0.8020 +4750 23025 0.4760 +4750 23064 0.6190 +4750 23256 0.4240 +4750 23299 0.4700 +4750 23322 0.6310 +4750 23435 0.5960 +4750 25978 0.4820 +4750 26160 0.4830 +4750 27152 0.4160 +4750 28981 0.4230 +4750 29978 0.6060 +4750 51098 0.5040 +4750 51626 0.5070 +4750 55081 0.4790 +4750 55112 0.6250 +4750 55297 0.4440 +4750 55764 0.4240 +4750 55812 0.5810 +4750 57096 0.4320 +4750 57539 0.5970 +4750 57560 0.6270 +4750 57679 0.9420 +4750 57728 0.6170 +4750 79598 0.4130 +4750 79659 0.9720 +4750 79705 0.4340 +4750 79809 0.6020 +4750 79848 0.4600 +4750 79858 0.5380 +4750 80184 0.6350 +4750 80208 0.5690 +4750 80709 0.4050 +4750 81554 0.6580 +4750 89891 0.5840 +4750 90410 0.4910 +4750 112752 0.5120 +4750 112936 0.4250 +4750 132884 0.5040 +4750 150483 0.4390 +4750 153241 0.5080 +4750 203228 0.6270 +4750 220082 0.5050 +4750 255758 0.5190 +4750 400916 0.7330 +4751 4752 0.5030 +4751 4869 0.4810 +4751 4928 0.5170 +4751 4998 0.5190 +4751 5116 0.7350 +4751 5347 0.9380 +4751 5468 0.4050 +4751 5499 0.4520 +4751 5500 0.4890 +4751 5501 0.7150 +4751 5504 0.4530 +4751 5557 0.4050 +4751 5594 0.6560 +4751 5885 0.4330 +4751 5888 0.5270 +4751 5903 0.4510 +4751 5983 0.4300 +4751 5984 0.4470 +4751 5987 0.5320 +4751 6233 0.5330 +4751 6241 0.7240 +4751 6426 0.4880 +4751 6427 0.4090 +4751 6491 0.6740 +4751 6502 0.4520 +4751 6649 0.4010 +4751 6732 0.4410 +4751 6788 0.4310 +4751 6790 0.8290 +4751 6795 0.4730 +4751 7013 0.5310 +4751 7083 0.4780 +4751 7112 0.4180 +4751 7153 0.9280 +4751 7157 0.4540 +4751 7272 0.8450 +4751 7298 0.4500 +4751 7311 0.4990 +4751 7314 0.5180 +4751 7316 0.5180 +4751 7321 0.6040 +4751 7324 0.5390 +4751 7874 0.4900 +4751 8208 0.4510 +4751 8317 0.4200 +4751 8318 0.6570 +4751 8438 0.4810 +4751 8658 0.4070 +4751 8697 0.9920 +4751 8766 0.6240 +4751 8881 0.9890 +4751 8900 0.6590 +4751 9055 0.7910 +4751 9088 0.5130 +4751 9133 0.9020 +4751 9134 0.4420 +4751 9156 0.6120 +4751 9184 0.7170 +4751 9212 0.7830 +4751 9232 0.8900 +4751 9319 0.7610 +4751 9371 0.4610 +4751 9493 0.7930 +4751 9585 0.5400 +4751 9662 0.4970 +4751 9696 0.8860 +4751 9700 0.8500 +4751 9735 0.6020 +4751 9738 0.4570 +4751 9768 0.6240 +4751 9787 0.9630 +4751 9793 0.4860 +4751 9824 0.6540 +4751 9833 0.8220 +4751 9837 0.4020 +4751 9918 0.4770 +4751 9928 0.8820 +4751 9987 0.5980 +4751 10024 0.6860 +4751 10051 0.6990 +4751 10112 0.9480 +4751 10133 0.4990 +4751 10381 0.4560 +4751 10393 0.9520 +4751 10403 0.9850 +4751 10460 0.5660 +4751 10592 0.4930 +4751 10615 0.8480 +4751 10635 0.6150 +4751 10733 0.6360 +4751 10735 0.4170 +4751 10744 0.7500 +4751 10797 0.4450 +4751 10856 0.5240 +4751 11004 0.9200 +4751 11065 0.9230 +4751 11130 0.7850 +4751 11190 0.9330 +4751 11339 0.6150 +4751 22853 0.4130 +4751 22974 0.9420 +4751 22981 0.4920 +4751 22983 0.4960 +4751 23031 0.4970 +4751 23070 0.4200 +4751 23139 0.5100 +4751 23354 0.5400 +4751 23397 0.7000 +4751 23594 0.5330 +4751 24137 0.8580 +4751 25847 0.8310 +4751 25906 0.9620 +4751 26271 0.5780 +4751 26586 0.7810 +4751 27152 0.4440 +4751 27338 0.7030 +4751 29028 0.5170 +4751 29089 0.5820 +4751 29127 0.7210 +4751 29128 0.5110 +4751 29882 0.9850 +4751 29945 0.9990 +4751 51199 0.4430 +4751 51203 0.9050 +4751 51343 0.9980 +4751 51384 0.4020 +4751 51433 0.9500 +4751 51434 0.9510 +4751 51512 0.5530 +4751 51514 0.6010 +4751 51529 0.6700 +4751 51659 0.4490 +4751 51684 0.4590 +4751 51806 0.4220 +4751 54069 0.4830 +4751 54443 0.7870 +4751 54478 0.5860 +4751 54801 0.6080 +4751 54821 0.5490 +4751 54875 0.6560 +4751 54892 0.5650 +4751 54930 0.6350 +4751 55010 0.5620 +4751 55055 0.5580 +4751 55125 0.4590 +4751 55142 0.5210 +4751 55143 0.9000 +4751 55165 0.9120 +4751 55215 0.5530 +4751 55247 0.7040 +4751 55355 0.8120 +4751 55388 0.5730 +4751 55559 0.5030 +4751 55632 0.4480 +4751 55635 0.8470 +4751 55723 0.4360 +4751 55740 0.4030 +4751 55755 0.4220 +4751 55789 0.7230 +4751 55835 0.4180 +4751 55839 0.5440 +4751 56992 0.8230 +4751 57082 0.5560 +4751 57405 0.6420 +4751 57587 0.4760 +4751 57650 0.4080 +4751 63941 0.7380 +4751 63967 0.6370 +4751 64105 0.4690 +4751 64151 0.8230 +4751 64682 0.9710 +4751 64946 0.4350 +4751 79019 0.5570 +4751 79075 0.4320 +4751 79441 0.6040 +4751 79598 0.4080 +4751 79682 0.4700 +4751 79733 0.7530 +4751 79801 0.7410 +4751 79858 0.5570 +4751 79866 0.7180 +4751 79935 0.4280 +4751 81610 0.7710 +4751 81620 0.5000 +4751 81624 0.4150 +4751 81930 0.8680 +4751 83461 0.9110 +4751 83540 0.9520 +4751 83879 0.4350 +4751 83903 0.4290 +4751 84057 0.5720 +4751 84643 0.4600 +4751 84823 0.5050 +4751 84930 0.5090 +4751 85378 0.5230 +4751 85417 0.4410 +4751 89839 0.5270 +4751 90381 0.4100 +4751 93323 0.5830 +4751 113130 0.7220 +4751 115106 0.5740 +4751 116840 0.4680 +4751 117177 0.5620 +4751 119504 0.9580 +4751 121441 0.4390 +4751 126961 0.4460 +4751 144455 0.5780 +4751 146909 0.5390 +4751 147841 0.5830 +4751 150468 0.6180 +4751 151246 0.5180 +4751 151648 0.8500 +4751 157313 0.6780 +4751 157570 0.6570 +4751 163786 0.5090 +4751 166979 0.7520 +4751 201255 0.5970 +4751 220134 0.6930 +4751 221150 0.5320 +4751 246184 0.9860 +4751 259266 0.9160 +4751 283149 0.4120 +4751 283431 0.4320 +4751 286151 0.4510 +4751 341676 0.4290 +4751 343035 0.4070 +4751 347240 0.7730 +4751 375449 0.4980 +4751 387103 0.6540 +4751 653604 0.5820 +4751 728642 0.5760 +4752 5618 0.5370 +4752 7179 0.7850 +4752 7409 0.5700 +4752 7410 0.5220 +4752 8621 0.4450 +4752 9829 0.5830 +4752 10300 0.4610 +4752 11326 0.4200 +4752 23299 0.5450 +4752 81554 0.6290 +4752 127733 0.4800 +4752 136332 0.5200 +4752 474354 0.4610 +4753 6091 0.4040 +4753 6092 0.6890 +4753 8082 0.4840 +4753 8425 0.4230 +4753 11151 0.4490 +4753 22807 0.4240 +4753 22881 0.4370 +4753 54674 0.5190 +4753 55107 0.5770 +4753 56675 0.4510 +4753 64221 0.9920 +4753 78989 0.5090 +4753 84216 0.6630 +4753 170591 0.4090 +4753 196527 0.9120 +4753 203859 0.8490 +4753 399665 0.4590 +4753 401115 0.6440 +4756 4857 0.6010 +4756 4858 0.6170 +4756 4917 0.9930 +4756 5601 0.5260 +4756 5747 0.9810 +4756 5781 0.4630 +4756 6091 0.4590 +4756 6092 0.4460 +4756 6405 0.5440 +4756 6585 0.5400 +4756 6586 0.4950 +4756 7036 0.6850 +4756 7124 0.5210 +4756 7869 0.5420 +4756 8200 0.8260 +4756 8633 0.7980 +4756 8861 0.4010 +4756 9423 0.9990 +4756 9764 0.4100 +4756 10079 0.5630 +4756 10243 0.5530 +4756 10371 0.6340 +4756 10512 0.4900 +4756 22854 0.6650 +4756 23033 0.5950 +4756 23041 0.4300 +4756 23365 0.9330 +4756 23767 0.4640 +4756 50937 0.6090 +4756 51277 0.4100 +4756 51317 0.4290 +4756 51466 0.4400 +4756 54538 0.5990 +4756 55740 0.4660 +4756 56935 0.5190 +4756 56963 0.9990 +4756 57556 0.5180 +4756 57817 0.5670 +4756 59277 0.9660 +4756 80380 0.4530 +4756 83641 0.7750 +4756 84628 0.6160 +4756 90249 0.8200 +4756 91653 0.5890 +4756 94134 0.4300 +4756 114088 0.4830 +4756 126147 0.6810 +4756 137970 0.7020 +4756 140689 0.6770 +4756 148738 0.9990 +4756 164656 0.9550 +4756 219699 0.9920 +4756 285704 0.9950 +4756 286410 0.4240 +4756 374868 0.4910 +4756 374946 0.8880 +4758 4759 0.6870 +4758 4828 0.6530 +4758 5476 0.9990 +4758 6482 0.4830 +4758 6483 0.5070 +4758 6647 0.4020 +4758 7097 0.4810 +4758 7368 0.9080 +4758 7412 0.4850 +4758 8869 0.4030 +4758 9334 0.4190 +4758 9514 0.9130 +4758 10020 0.5420 +4758 10559 0.4340 +4758 10825 0.5790 +4758 25854 0.4510 +4758 26503 0.4970 +4758 54187 0.5280 +4758 55907 0.4050 +4758 57465 0.6150 +4758 129807 0.7000 +4758 140838 0.7800 +4758 204219 0.5020 +4758 317662 0.4510 +4759 5476 0.5760 +4759 5830 0.4180 +4759 6480 0.5050 +4759 6482 0.6070 +4759 6483 0.5930 +4759 6484 0.4150 +4759 6487 0.4110 +4759 6489 0.5110 +4759 7023 0.4350 +4759 7097 0.4260 +4759 7368 0.9180 +4759 7755 0.5220 +4759 9514 0.9170 +4759 10610 0.4360 +4759 10635 0.5060 +4759 10825 0.5330 +4759 23480 0.4560 +4759 26151 0.4980 +4759 51070 0.4290 +4759 55808 0.5430 +4759 57017 0.4290 +4759 64090 0.6810 +4759 79411 0.4150 +4759 81849 0.4060 +4759 84620 0.5160 +4759 89790 0.4180 +4759 136306 0.4870 +4759 136332 0.4880 +4759 221120 0.4220 +4759 284403 0.4020 +4759 100049587 0.4380 +4760 4761 0.4590 +4760 4781 0.4030 +4760 4807 0.6660 +4760 4821 0.8100 +4760 4825 0.8050 +4760 4851 0.4100 +4760 4915 0.4070 +4760 4929 0.4930 +4760 5013 0.4380 +4760 5015 0.6240 +4760 5076 0.4900 +4760 5078 0.9450 +4760 5080 0.8630 +4760 5122 0.5870 +4760 5126 0.6090 +4760 5167 0.4070 +4760 5307 0.5890 +4760 5309 0.4030 +4760 5443 0.4150 +4760 5454 0.6940 +4760 5456 0.5380 +4760 5457 0.5880 +4760 5458 0.5620 +4760 5459 0.5450 +4760 5460 0.5670 +4760 5539 0.6110 +4760 5629 0.6730 +4760 5816 0.4020 +4760 5957 0.4120 +4760 5978 0.4470 +4760 6096 0.4320 +4760 6285 0.4550 +4760 6469 0.5580 +4760 6495 0.5130 +4760 6496 0.4860 +4760 6514 0.8660 +4760 6597 0.4900 +4760 6616 0.4610 +4760 6656 0.5680 +4760 6657 0.6990 +4760 6658 0.5170 +4760 6659 0.4260 +4760 6662 0.5840 +4760 6663 0.4820 +4760 6664 0.4820 +4760 6736 0.4180 +4760 6750 0.7260 +4760 6774 0.5640 +4760 6833 0.7040 +4760 6853 0.4170 +4760 6855 0.5250 +4760 6860 0.4960 +4760 6886 0.4680 +4760 6900 0.4090 +4760 6925 0.9310 +4760 6927 0.8560 +4760 6928 0.7620 +4760 6929 0.9640 +4760 6934 0.4510 +4760 6938 0.9940 +4760 7080 0.4140 +4760 7101 0.4230 +4760 7403 0.4320 +4760 7466 0.4480 +4760 7473 0.4470 +4760 7528 0.4020 +4760 7545 0.4930 +4760 8022 0.5440 +4760 8290 0.4020 +4760 8320 0.6500 +4760 8356 0.4020 +4760 8462 0.7760 +4760 9095 0.5780 +4760 9139 0.4510 +4760 9241 0.4370 +4760 9314 0.4320 +4760 9355 0.5400 +4760 9479 0.4300 +4760 9480 0.4110 +4760 9915 0.4670 +4760 9935 0.5860 +4760 10002 0.6760 +4760 10048 0.4100 +4760 10381 0.5220 +4760 10413 0.4320 +4760 10560 0.4180 +4760 10580 0.4220 +4760 10683 0.4410 +4760 10716 0.7000 +4760 10763 0.7350 +4760 10814 0.5840 +4760 11075 0.4930 +4760 11132 0.4930 +4760 22871 0.4850 +4760 23040 0.7700 +4760 23314 0.4420 +4760 23394 0.4380 +4760 23411 0.5310 +4760 25833 0.6470 +4760 28514 0.4940 +4760 50674 0.8820 +4760 51124 0.4700 +4760 51738 0.4460 +4760 54738 0.4730 +4760 55079 0.5180 +4760 55502 0.5090 +4760 56751 0.4380 +4760 57030 0.5260 +4760 57084 0.4390 +4760 57369 0.4090 +4760 57818 0.6980 +4760 64321 0.5540 +4760 64682 0.5400 +4760 64919 0.4090 +4760 79923 0.5290 +4760 83881 0.4830 +4760 84504 0.8020 +4760 84913 0.4850 +4760 89780 0.4850 +4760 90070 0.4220 +4760 114131 0.4560 +4760 121643 0.8680 +4760 146713 0.6660 +4760 147040 0.6070 +4760 169026 0.5070 +4760 169792 0.7520 +4760 170302 0.4420 +4760 222546 0.7740 +4760 338917 0.5590 +4760 343472 0.4590 +4760 375298 0.5480 +4760 388585 0.5980 +4760 389692 0.8390 +4760 440093 0.4020 +4760 440686 0.4020 +4760 653604 0.4020 +4761 4784 0.4910 +4761 4807 0.5470 +4761 4808 0.5170 +4761 5080 0.6690 +4761 5454 0.5660 +4761 5457 0.5650 +4761 6469 0.4160 +4761 6657 0.4340 +4761 6752 0.4900 +4761 6929 0.4850 +4761 8320 0.5290 +4761 9355 0.5770 +4761 10716 0.7240 +4761 10763 0.4560 +4761 10814 0.9020 +4761 23040 0.7240 +4761 23314 0.4910 +4761 55079 0.5210 +4761 57030 0.5130 +4761 59335 0.4370 +4761 64682 0.7710 +4761 64919 0.4050 +4761 79057 0.6650 +4761 93210 0.4400 +4761 139422 0.4650 +4761 146713 0.4690 +4761 220296 0.5010 +4761 388585 0.4160 +4762 4821 0.6760 +4762 4854 0.4490 +4762 4929 0.4100 +4762 4975 0.4720 +4762 5013 0.6340 +4762 5015 0.6280 +4762 5076 0.5620 +4762 5077 0.4360 +4762 5080 0.6810 +4762 5454 0.4910 +4762 5455 0.4820 +4762 5456 0.4080 +4762 5457 0.9110 +4762 5459 0.5440 +4762 5460 0.5460 +4762 6469 0.7340 +4762 6495 0.5490 +4762 6656 0.5200 +4762 6657 0.6260 +4762 6658 0.6720 +4762 6663 0.5210 +4762 6752 0.4290 +4762 6774 0.4720 +4762 6899 0.4330 +4762 6925 0.6230 +4762 6938 0.7120 +4762 7471 0.4260 +4762 7905 0.5800 +4762 8022 0.6000 +4762 8153 0.5480 +4762 8320 0.4840 +4762 8651 0.7030 +4762 8835 0.4490 +4762 8913 0.8110 +4762 8929 0.4290 +4762 9139 0.4400 +4762 9355 0.7190 +4762 10716 0.5120 +4762 10763 0.5910 +4762 22871 0.4250 +4762 23040 0.4110 +4762 27022 0.4970 +4762 27023 0.4580 +4762 28514 0.4320 +4762 50674 0.4590 +4762 55079 0.5010 +4762 56751 0.4110 +4762 56956 0.6200 +4762 59335 0.5570 +4762 60529 0.6250 +4762 64211 0.4750 +4762 64843 0.4180 +4762 84525 0.4340 +4762 120237 0.4660 +4762 140456 0.6360 +4762 146713 0.4040 +4762 147040 0.6370 +4762 170825 0.4100 +4762 219409 0.4070 +4762 338917 0.4040 +4762 374654 0.4200 +4762 388585 0.5900 +4763 4771 0.9700 +4763 4774 0.4900 +4763 4781 0.4980 +4763 4782 0.7650 +4763 4784 0.5370 +4763 4830 0.5150 +4763 4831 0.4480 +4763 4832 0.4490 +4763 4851 0.5880 +4763 4853 0.4220 +4763 4869 0.4320 +4763 4893 0.9940 +4763 4899 0.4230 +4763 4914 0.5530 +4763 4915 0.4160 +4763 4974 0.6960 +4763 5077 0.5080 +4763 5078 0.4240 +4763 5080 0.5030 +4763 5156 0.8040 +4763 5159 0.5460 +4763 5290 0.7930 +4763 5294 0.4150 +4763 5295 0.6080 +4763 5395 0.7450 +4763 5426 0.5470 +4763 5451 0.5840 +4763 5537 0.4550 +4763 5566 0.6760 +4763 5567 0.6780 +4763 5568 0.6770 +4763 5573 0.5500 +4763 5594 0.4850 +4763 5595 0.5470 +4763 5604 0.6860 +4763 5605 0.5910 +4763 5606 0.4010 +4763 5685 0.4030 +4763 5688 0.4860 +4763 5698 0.4240 +4763 5700 0.4120 +4763 5701 0.4300 +4763 5702 0.4060 +4763 5704 0.4230 +4763 5705 0.4370 +4763 5706 0.4230 +4763 5707 0.4250 +4763 5708 0.4050 +4763 5713 0.4120 +4763 5714 0.4380 +4763 5716 0.4010 +4763 5717 0.4260 +4763 5719 0.4380 +4763 5721 0.4060 +4763 5723 0.4080 +4763 5727 0.5150 +4763 5728 0.8740 +4763 5747 0.5510 +4763 5781 0.8520 +4763 5789 0.4290 +4763 5879 0.4280 +4763 5889 0.6060 +4763 5890 0.4090 +4763 5892 0.6170 +4763 5894 0.8120 +4763 5898 0.5360 +4763 5899 0.4710 +4763 5900 0.4250 +4763 5903 0.4420 +4763 5906 0.4770 +4763 5908 0.4650 +4763 5911 0.4490 +4763 5912 0.4430 +4763 5914 0.6850 +4763 5921 0.8090 +4763 5922 0.6170 +4763 5923 0.4950 +4763 5924 0.4510 +4763 5979 0.8390 +4763 5989 0.4740 +4763 6009 0.5380 +4763 6016 0.4790 +4763 6098 0.6450 +4763 6198 0.4810 +4763 6233 0.5420 +4763 6237 0.9600 +4763 6347 0.4750 +4763 6351 0.4100 +4763 6354 0.4630 +4763 6357 0.5540 +4763 6358 0.5490 +4763 6359 0.5580 +4763 6360 0.5500 +4763 6382 0.5870 +4763 6383 0.5930 +4763 6389 0.6530 +4763 6390 0.8220 +4763 6391 0.6280 +4763 6392 0.8350 +4763 6416 0.4060 +4763 6427 0.4780 +4763 6597 0.7510 +4763 6598 0.5860 +4763 6654 0.8340 +4763 6655 0.6330 +4763 6657 0.4340 +4763 6659 0.4270 +4763 6663 0.4920 +4763 6667 0.5190 +4763 6670 0.4660 +4763 6714 0.4760 +4763 6750 0.4150 +4763 6774 0.4830 +4763 6790 0.4880 +4763 6794 0.7280 +4763 6855 0.4540 +4763 7015 0.6650 +4763 7048 0.4360 +4763 7153 0.4670 +4763 7157 0.8800 +4763 7248 0.5270 +4763 7249 0.7090 +4763 7265 0.7370 +4763 7280 0.4760 +4763 7307 0.5110 +4763 7311 0.4990 +4763 7314 0.5280 +4763 7316 0.5590 +4763 7337 0.5380 +4763 7391 0.4130 +4763 7403 0.5130 +4763 7408 0.4390 +4763 7415 0.4620 +4763 7430 0.4200 +4763 7490 0.5400 +4763 7514 0.5670 +4763 7528 0.6880 +4763 7529 0.5150 +4763 7531 0.4400 +4763 7533 0.7010 +4763 7593 0.4110 +4763 7707 0.4510 +4763 7812 0.6430 +4763 8036 0.5230 +4763 8085 0.5490 +4763 8216 0.6600 +4763 8233 0.4800 +4763 8289 0.6500 +4763 8290 0.7590 +4763 8356 0.7790 +4763 8358 0.4410 +4763 8437 0.5230 +4763 8452 0.6690 +4763 8493 0.4350 +4763 8544 0.5680 +4763 8815 0.4780 +4763 8831 0.5990 +4763 8880 0.4710 +4763 9077 0.4180 +4763 9113 0.5660 +4763 9462 0.5850 +4763 9491 0.4010 +4763 9560 0.4970 +4763 9582 0.4860 +4763 9659 0.4130 +4763 9715 0.4180 +4763 9817 0.4060 +4763 9968 0.4580 +4763 9978 0.4920 +4763 10000 0.5380 +4763 10019 0.4350 +4763 10125 0.5820 +4763 10128 0.4580 +4763 10156 0.4990 +4763 10213 0.4120 +4763 10215 0.5070 +4763 10235 0.4810 +4763 10320 0.4500 +4763 10664 0.6470 +4763 10725 0.4190 +4763 10735 0.5360 +4763 10763 0.4500 +4763 10818 0.5470 +4763 10966 0.4630 +4763 11200 0.6120 +4763 11335 0.4100 +4763 22800 0.9580 +4763 22808 0.9550 +4763 22821 0.5350 +4763 23035 0.4060 +4763 23092 0.4010 +4763 23095 0.6600 +4763 23139 0.4590 +4763 23197 0.4330 +4763 23198 0.4540 +4763 23239 0.4690 +4763 23405 0.4640 +4763 23512 0.5930 +4763 23564 0.4710 +4763 23576 0.5060 +4763 25788 0.4730 +4763 26040 0.5050 +4763 26118 0.7250 +4763 27022 0.4520 +4763 27350 0.4480 +4763 27436 0.5290 +4763 28954 0.4270 +4763 29072 0.6050 +4763 29126 0.5520 +4763 51176 0.6200 +4763 51379 0.4180 +4763 51655 0.4160 +4763 51755 0.5730 +4763 53353 0.4750 +4763 54583 0.4600 +4763 54790 0.6100 +4763 54949 0.6660 +4763 55193 0.5540 +4763 55294 0.5890 +4763 55352 0.5200 +4763 55534 0.4080 +4763 55654 0.8830 +4763 55803 0.7140 +4763 55810 0.4140 +4763 57448 0.5090 +4763 57492 0.5670 +4763 57521 0.4470 +4763 57670 0.6510 +4763 57674 0.6370 +4763 58508 0.6450 +4763 60489 0.4180 +4763 63035 0.4350 +4763 64324 0.4140 +4763 64926 0.5210 +4763 79718 0.5340 +4763 79728 0.6060 +4763 79736 0.4960 +4763 79915 0.6130 +4763 84059 0.4060 +4763 84078 0.5160 +4763 84260 0.4500 +4763 84282 0.6840 +4763 84295 0.5510 +4763 84440 0.4320 +4763 85462 0.6050 +4763 93624 0.4080 +4763 114659 0.4450 +4763 114788 0.4470 +4763 115727 0.5500 +4763 120114 0.4450 +4763 140690 0.4370 +4763 144455 0.4370 +4763 153090 0.5480 +4763 161742 0.9920 +4763 171023 0.6070 +4763 196528 0.6540 +4763 200734 0.8840 +4763 203068 0.4730 +4763 253260 0.4340 +4763 284312 0.4120 +4763 399473 0.6840 +4763 414062 0.4890 +4763 440093 0.7600 +4763 440686 0.7590 +4763 653604 0.7600 +4771 4782 0.4020 +4771 4893 0.5680 +4771 5058 0.9140 +4771 5062 0.6490 +4771 5063 0.5450 +4771 5156 0.4750 +4771 5290 0.5700 +4771 5578 0.4260 +4771 5592 0.4360 +4771 5595 0.5440 +4771 5727 0.4320 +4771 5728 0.6060 +4771 5747 0.5780 +4771 5781 0.4100 +4771 5784 0.4500 +4771 5829 0.6670 +4771 5868 0.4310 +4771 5879 0.6340 +4771 5921 0.7060 +4771 5962 0.7740 +4771 5979 0.4440 +4771 6128 0.4460 +4771 6382 0.4830 +4771 6386 0.6640 +4771 6550 0.4800 +4771 6598 0.8300 +4771 6605 0.6860 +4771 6654 0.4260 +4771 6657 0.5070 +4771 6693 0.4900 +4771 6711 0.8820 +4771 6714 0.4540 +4771 6774 0.5000 +4771 6789 0.5440 +4771 6794 0.5220 +4771 7003 0.7090 +4771 7004 0.5370 +4771 7005 0.5350 +4771 7015 0.5970 +4771 7157 0.7730 +4771 7248 0.7610 +4771 7249 0.6850 +4771 7414 0.5960 +4771 7430 0.9600 +4771 7490 0.4190 +4771 8027 0.4190 +4771 8165 0.4320 +4771 8216 0.6560 +4771 8242 0.4480 +4771 8289 0.4550 +4771 8314 0.6000 +4771 8428 0.4300 +4771 8450 0.4140 +4771 8451 0.6240 +4771 8463 0.4620 +4771 8508 0.6460 +4771 8563 0.5630 +4771 8663 0.7400 +4771 9113 0.9970 +4771 9146 0.9690 +4771 9314 0.4490 +4771 9351 0.6450 +4771 9368 0.9540 +4771 9378 0.4510 +4771 9379 0.4400 +4771 9686 0.5440 +4771 9730 0.9560 +4771 9817 0.5130 +4771 10207 0.8830 +4771 10413 0.8730 +4771 11186 0.5170 +4771 11200 0.4170 +4771 23286 0.9960 +4771 23327 0.4100 +4771 23513 0.4320 +4771 23558 0.5120 +4771 25937 0.5890 +4771 26524 0.9960 +4771 27111 0.4750 +4771 27352 0.5810 +4771 29072 0.5900 +4771 29970 0.9710 +4771 29997 0.6090 +4771 51421 0.9870 +4771 51684 0.5840 +4771 55114 0.5260 +4771 55193 0.5490 +4771 55233 0.6360 +4771 57447 0.4320 +4771 57551 0.4720 +4771 60485 0.9380 +4771 64398 0.7860 +4771 79633 0.4020 +4771 79981 0.8270 +4771 80004 0.4050 +4771 80306 0.6960 +4771 81669 0.5130 +4771 84231 0.7370 +4771 84260 0.5860 +4771 92597 0.4730 +4771 93624 0.5010 +4771 94274 0.7070 +4771 114822 0.4100 +4771 116986 0.6000 +4771 122786 0.9810 +4771 134864 0.4290 +4771 143903 0.8280 +4771 154796 0.9980 +4771 154810 0.9910 +4771 286887 0.4360 +4771 613212 0.6700 +4771 654502 0.5760 +4771 100505385 0.9740 +4772 4773 0.9790 +4772 4775 0.9210 +4772 4776 0.5450 +4772 4790 0.7980 +4772 4792 0.6170 +4772 4793 0.4850 +4772 4851 0.5630 +4772 4929 0.4990 +4772 4982 0.4760 +4772 5133 0.4230 +4772 5335 0.6210 +4772 5336 0.6870 +4772 5468 0.6010 +4772 5478 0.5160 +4772 5530 0.9990 +4772 5532 0.9450 +4772 5533 0.9560 +4772 5534 0.9980 +4772 5566 0.9270 +4772 5567 0.9270 +4772 5568 0.9260 +4772 5594 0.9270 +4772 5595 0.9470 +4772 5599 0.9510 +4772 5601 0.9370 +4772 5741 0.4970 +4772 5788 0.4420 +4772 5966 0.7620 +4772 5970 0.4960 +4772 5971 0.4310 +4772 6197 0.4050 +4772 6198 0.4270 +4772 6539 0.4850 +4772 6597 0.7460 +4772 6615 0.4660 +4772 6662 0.6740 +4772 6688 0.8470 +4772 6696 0.4920 +4772 6714 0.6110 +4772 6722 0.9230 +4772 6772 0.4070 +4772 6774 0.6900 +4772 6776 0.4550 +4772 6777 0.4110 +4772 6778 0.6090 +4772 6786 0.4710 +4772 6850 0.6870 +4772 7040 0.4280 +4772 7097 0.4070 +4772 7099 0.4050 +4772 7124 0.6600 +4772 7133 0.4430 +4772 7157 0.4990 +4772 7189 0.7610 +4772 7305 0.6840 +4772 7535 0.4490 +4772 7837 0.4870 +4772 8091 0.4140 +4772 8290 0.4450 +4772 8445 0.4360 +4772 8549 0.5160 +4772 8600 0.9450 +4772 8792 0.5120 +4772 8826 0.4690 +4772 9355 0.4930 +4772 9423 0.4090 +4772 9451 0.4360 +4772 9464 0.4060 +4772 9759 0.4980 +4772 9935 0.4790 +4772 10014 0.4370 +4772 10018 0.5290 +4772 10231 0.5700 +4772 10320 0.4420 +4772 10538 0.4610 +4772 10539 0.4260 +4772 10848 0.4180 +4772 11123 0.6190 +4772 11322 0.4170 +4772 22943 0.4030 +4772 27071 0.5370 +4772 29760 0.5360 +4772 29851 0.4100 +4772 30009 0.5250 +4772 50619 0.5410 +4772 50943 0.7460 +4772 50964 0.4840 +4772 51176 0.5280 +4772 51393 0.4300 +4772 51806 0.7860 +4772 54209 0.4190 +4772 57620 0.4220 +4772 64400 0.5470 +4772 79697 0.4910 +4772 81501 0.8850 +4772 91860 0.7860 +4772 93986 0.4550 +4772 121340 0.9550 +4772 126014 0.7860 +4772 128506 0.7500 +4772 137902 0.4870 +4772 163688 0.7860 +4772 245972 0.7310 +4772 284194 0.4520 +4772 654346 0.4520 +4772 100271849 0.9200 +4773 4775 0.9260 +4773 4776 0.9260 +4773 4790 0.6800 +4773 5335 0.4090 +4773 5451 0.4020 +4773 5467 0.4290 +4773 5478 0.5120 +4773 5518 0.5680 +4773 5530 0.9750 +4773 5532 0.9570 +4773 5533 0.9220 +4773 5534 0.9750 +4773 5590 0.4130 +4773 5594 0.9210 +4773 5595 0.9300 +4773 5599 0.5600 +4773 5601 0.6600 +4773 5728 0.4950 +4773 5788 0.4110 +4773 5826 0.4260 +4773 5966 0.7110 +4773 5970 0.8900 +4773 6304 0.5860 +4773 6660 0.4810 +4773 6663 0.4870 +4773 6670 0.6270 +4773 6722 0.9180 +4773 6774 0.6200 +4773 6776 0.4250 +4773 6778 0.5990 +4773 6786 0.5220 +4773 6880 0.6130 +4773 7025 0.4080 +4773 7026 0.4280 +4773 7110 0.4740 +4773 7124 0.5130 +4773 7157 0.4350 +4773 7528 0.5370 +4773 7535 0.4760 +4773 7750 0.4490 +4773 8061 0.5070 +4773 8445 0.5130 +4773 8549 0.4040 +4773 8600 0.6120 +4773 8651 0.4330 +4773 9021 0.4110 +4773 9423 0.4050 +4773 10018 0.4960 +4773 10231 0.4060 +4773 10320 0.6660 +4773 10538 0.4800 +4773 11123 0.4230 +4773 23314 0.4410 +4773 23598 0.4510 +4773 25949 0.4180 +4773 27040 0.5180 +4773 29851 0.4070 +4773 30009 0.5360 +4773 50619 0.5300 +4773 50943 0.9950 +4773 51176 0.4750 +4773 51659 0.4780 +4773 51806 0.7770 +4773 57085 0.5480 +4773 57459 0.4330 +4773 57620 0.4840 +4773 84876 0.4350 +4773 84901 0.6190 +4773 91860 0.7720 +4773 93986 0.9180 +4773 116449 0.4400 +4773 120892 0.4210 +4773 121340 0.5370 +4773 140628 0.5050 +4773 150709 0.4650 +4773 163688 0.7720 +4773 359948 0.5600 +4773 100271849 0.9150 +4774 4781 0.8120 +4774 4782 0.5800 +4774 4784 0.6600 +4774 5080 0.6090 +4774 6285 0.4380 +4774 6304 0.5550 +4774 6507 0.7560 +4774 6657 0.6170 +4774 6660 0.4610 +4774 6662 0.8710 +4774 6663 0.5800 +4774 6688 0.7910 +4774 6689 0.6490 +4774 7080 0.5510 +4774 7490 0.4140 +4774 7528 0.4710 +4774 8022 0.4810 +4774 9355 0.5300 +4774 10215 0.4910 +4774 10622 0.4100 +4774 10716 0.5210 +4774 10840 0.4160 +4774 26137 0.4670 +4774 50809 0.4480 +4774 51082 0.4050 +4774 51728 0.4120 +4774 55553 0.5050 +4774 57507 0.4360 +4774 63950 0.5130 +4774 63973 0.4360 +4774 63974 0.4430 +4774 116448 0.4060 +4774 343472 0.4120 +4774 388585 0.4050 +4774 653361 0.4220 +4775 4776 0.9200 +4775 4878 0.4590 +4775 4924 0.4290 +4775 5290 0.4190 +4775 5478 0.4460 +4775 5530 0.9460 +4775 5532 0.9560 +4775 5533 0.9320 +4775 5534 0.9870 +4775 5594 0.9300 +4775 5595 0.9290 +4775 5599 0.9950 +4775 5601 0.9520 +4775 5717 0.4990 +4775 5894 0.4060 +4775 5966 0.6010 +4775 6663 0.7590 +4775 6722 0.9300 +4775 6786 0.4480 +4775 7080 0.4950 +4775 8061 0.4210 +4775 9423 0.5180 +4775 9479 0.4060 +4775 10018 0.5530 +4775 10049 0.5440 +4775 10643 0.4560 +4775 51684 0.4960 +4775 51806 0.7320 +4775 57179 0.4540 +4775 57620 0.4320 +4775 57716 0.4430 +4775 91860 0.7230 +4775 93649 0.5030 +4775 133482 0.4140 +4775 163688 0.7230 +4775 100271849 0.9180 +4776 4878 0.4910 +4776 4924 0.4320 +4776 5530 0.9690 +4776 5532 0.9410 +4776 5533 0.9530 +4776 5534 0.9850 +4776 5599 0.4650 +4776 5601 0.4310 +4776 5717 0.5040 +4776 5781 0.4610 +4776 5966 0.5980 +4776 6233 0.4170 +4776 6304 0.4160 +4776 6663 0.9210 +4776 6722 0.9240 +4776 6776 0.4320 +4776 6778 0.4100 +4776 7040 0.5090 +4776 7124 0.5560 +4776 7528 0.4390 +4776 9423 0.5330 +4776 9455 0.4030 +4776 9465 0.4140 +4776 10018 0.4690 +4776 23175 0.6980 +4776 30008 0.4250 +4776 51176 0.4320 +4776 51226 0.4020 +4776 51450 0.4440 +4776 51806 0.7280 +4776 54929 0.4160 +4776 57716 0.4810 +4776 60681 0.4330 +4776 91860 0.7290 +4776 163688 0.7290 +4776 100271849 0.9160 +4778 4779 0.4340 +4778 4780 0.6540 +4778 5081 0.4090 +4778 5191 0.4220 +4778 5194 0.4220 +4778 5195 0.5040 +4778 5454 0.4150 +4778 5916 0.4160 +4778 6597 0.5840 +4778 6688 0.4670 +4778 6874 0.4030 +4778 6886 0.5850 +4778 6929 0.5000 +4778 7024 0.6900 +4778 7066 0.5980 +4778 7124 0.5530 +4778 7295 0.5470 +4778 7391 0.4580 +4778 7392 0.4130 +4778 7490 0.4100 +4778 7707 0.4880 +4778 7975 0.9880 +4778 8328 0.5180 +4778 8452 0.5660 +4778 8861 0.4700 +4778 8945 0.4830 +4778 9079 0.4540 +4778 9603 0.6910 +4778 9757 0.4090 +4778 9817 0.8030 +4778 9935 0.6070 +4778 9978 0.4520 +4778 10661 0.7710 +4778 11059 0.4870 +4778 23764 0.9710 +4778 26994 0.4360 +4778 51327 0.5490 +4778 53335 0.4200 +4778 55733 0.6450 +4778 55922 0.5480 +4778 58508 0.4410 +4778 80344 0.4150 +4778 83737 0.7010 +4778 161882 0.7370 +4778 252969 0.4800 +4778 257202 0.4640 +4778 493869 0.4740 +4779 4783 0.4370 +4779 4899 0.6840 +4779 5694 0.4380 +4779 5715 0.4180 +4779 7019 0.6090 +4779 7975 0.9550 +4779 8473 0.4370 +4779 8943 0.4740 +4779 8945 0.5840 +4779 9361 0.4610 +4779 9603 0.4500 +4779 9817 0.9370 +4779 9935 0.4740 +4779 10000 0.4040 +4779 10072 0.4460 +4779 10320 0.4530 +4779 10891 0.7270 +4779 23764 0.9770 +4779 55294 0.5850 +4779 55733 0.6970 +4779 55768 0.6640 +4779 55922 0.4030 +4779 57720 0.4560 +4779 58487 0.5220 +4779 60468 0.4730 +4779 64772 0.5190 +4779 79170 0.4580 +4779 84301 0.7240 +4779 114881 0.4560 +4779 414301 0.5490 +4780 4790 0.6590 +4780 4792 0.7470 +4780 4843 0.4750 +4780 4846 0.5710 +4780 4851 0.8570 +4780 4899 0.5720 +4780 5052 0.8940 +4780 5071 0.4470 +4780 5175 0.4760 +4780 5226 0.6900 +4780 5290 0.5860 +4780 5465 0.5900 +4780 5468 0.8310 +4780 5578 0.6330 +4780 5580 0.8100 +4780 5594 0.4300 +4780 5595 0.5630 +4780 5598 0.9470 +4780 5599 0.7270 +4780 5601 0.4450 +4780 5604 0.5280 +4780 5608 0.4480 +4780 5610 0.9420 +4780 5682 0.5640 +4780 5683 0.5230 +4780 5684 0.5430 +4780 5685 0.5400 +4780 5686 0.5350 +4780 5687 0.5710 +4780 5688 0.5460 +4780 5689 0.5410 +4780 5690 0.5590 +4780 5691 0.4990 +4780 5692 0.5200 +4780 5693 0.6330 +4780 5694 0.5970 +4780 5695 0.5570 +4780 5696 0.5940 +4780 5698 0.5790 +4780 5699 0.5620 +4780 5700 0.5580 +4780 5701 0.6040 +4780 5702 0.5650 +4780 5704 0.5470 +4780 5705 0.5430 +4780 5706 0.5390 +4780 5707 0.5470 +4780 5708 0.5440 +4780 5709 0.5390 +4780 5710 0.5760 +4780 5711 0.4990 +4780 5713 0.5120 +4780 5714 0.5060 +4780 5715 0.4990 +4780 5716 0.5380 +4780 5717 0.5610 +4780 5718 0.5130 +4780 5719 0.5280 +4780 5720 0.5600 +4780 5721 0.5590 +4780 5728 0.7070 +4780 5743 0.6980 +4780 5757 0.4220 +4780 5782 0.4030 +4780 5914 0.4680 +4780 5962 0.4100 +4780 5966 0.5540 +4780 5970 0.6110 +4780 5972 0.4020 +4780 6198 0.4790 +4780 6233 0.7230 +4780 6256 0.5940 +4780 6303 0.8200 +4780 6347 0.5810 +4780 6387 0.5100 +4780 6500 0.6180 +4780 6506 0.4930 +4780 6520 0.4050 +4780 6595 0.4040 +4780 6597 0.4840 +4780 6622 0.5310 +4780 6647 0.7080 +4780 6648 0.7010 +4780 6649 0.4860 +4780 6657 0.4110 +4780 6688 0.4840 +4780 6714 0.4320 +4780 6720 0.5000 +4780 6772 0.4530 +4780 6773 0.4270 +4780 6774 0.7420 +4780 6776 0.4460 +4780 6794 0.5090 +4780 6888 0.8240 +4780 6908 0.4740 +4780 7001 0.4170 +4780 7008 0.4060 +4780 7015 0.4470 +4780 7019 0.6250 +4780 7040 0.5560 +4780 7082 0.4040 +4780 7086 0.8370 +4780 7097 0.4080 +4780 7099 0.6260 +4780 7124 0.7010 +4780 7132 0.5430 +4780 7138 0.5790 +4780 7157 0.7800 +4780 7295 0.7410 +4780 7296 0.8400 +4780 7311 0.5110 +4780 7314 0.5290 +4780 7316 0.6670 +4780 7351 0.4140 +4780 7353 0.5090 +4780 7412 0.4540 +4780 7415 0.5640 +4780 7430 0.4190 +4780 7494 0.5730 +4780 7498 0.6020 +4780 7528 0.4740 +4780 7837 0.6180 +4780 7942 0.4420 +4780 7975 0.9950 +4780 7979 0.5010 +4780 8031 0.4290 +4780 8061 0.5710 +4780 8289 0.4320 +4780 8290 0.4180 +4780 8312 0.5630 +4780 8356 0.4280 +4780 8452 0.9750 +4780 8454 0.6850 +4780 8507 0.7000 +4780 8678 0.5680 +4780 8737 0.6020 +4780 8841 0.4770 +4780 8856 0.4990 +4780 8878 0.9500 +4780 8945 0.9350 +4780 9360 0.4130 +4780 9370 0.4110 +4780 9446 0.4410 +4780 9451 0.9770 +4780 9474 0.5190 +4780 9491 0.5040 +4780 9563 0.5050 +4780 9603 0.5270 +4780 9611 0.4680 +4780 9612 0.4300 +4780 9817 0.9990 +4780 9861 0.5330 +4780 9927 0.4230 +4780 9935 0.6470 +4780 9970 0.4880 +4780 9971 0.4400 +4780 9978 0.8060 +4780 10000 0.5460 +4780 10059 0.4510 +4780 10062 0.5580 +4780 10072 0.5950 +4780 10133 0.4640 +4780 10155 0.4750 +4780 10197 0.5290 +4780 10213 0.5740 +4780 10488 0.5700 +4780 10533 0.5820 +4780 10626 0.4730 +4780 10628 0.4760 +4780 10725 0.4470 +4780 10765 0.4090 +4780 10848 0.4060 +4780 10891 0.9420 +4780 10935 0.4340 +4780 11130 0.4240 +4780 11243 0.9510 +4780 11315 0.9690 +4780 22926 0.5410 +4780 23082 0.4480 +4780 23198 0.5380 +4780 23410 0.5030 +4780 23411 0.7370 +4780 23621 0.4330 +4780 23645 0.4790 +4780 23657 0.8260 +4780 23764 0.9910 +4780 25828 0.5560 +4780 25936 0.4700 +4780 26043 0.5050 +4780 26224 0.4240 +4780 27022 0.4530 +4780 27035 0.5700 +4780 27102 0.9140 +4780 27306 0.6170 +4780 30061 0.4410 +4780 50506 0.4770 +4780 50507 0.6440 +4780 51322 0.4910 +4780 53905 0.5090 +4780 54205 0.5960 +4780 54575 0.4140 +4780 54576 0.4140 +4780 54577 0.4130 +4780 54578 0.4460 +4780 54657 0.4120 +4780 54658 0.4460 +4780 55666 0.5120 +4780 55922 0.5470 +4780 57521 0.5560 +4780 65018 0.5190 +4780 79661 0.4790 +4780 79728 0.5110 +4780 80344 0.7150 +4780 81631 0.4800 +4780 83667 0.4470 +4780 84181 0.6180 +4780 84447 0.4010 +4780 84823 0.4890 +4780 84883 0.4480 +4780 114548 0.5440 +4780 122706 0.5020 +4780 122953 0.5090 +4780 133482 0.4580 +4780 133522 0.4010 +4780 135152 0.4210 +4780 137902 0.6180 +4780 139285 0.5290 +4780 140809 0.8990 +4780 143471 0.5150 +4780 192111 0.7860 +4780 252969 0.6210 +4780 257202 0.8020 +4780 440093 0.4240 +4780 440275 0.9290 +4780 440686 0.4190 +4780 493869 0.8050 +4780 653361 0.5790 +4780 653604 0.4190 +4780 100506658 0.4410 +4780 100527963 0.9050 +4781 4782 0.8150 +4781 4784 0.8320 +4781 5080 0.6490 +4781 5324 0.4850 +4781 5435 0.4050 +4781 5454 0.4180 +4781 5890 0.4990 +4781 5989 0.4390 +4781 6507 0.7210 +4781 6657 0.7570 +4781 6660 0.4690 +4781 6662 0.6150 +4781 6663 0.5290 +4781 6688 0.4850 +4781 7003 0.4160 +4781 7306 0.4560 +4781 7450 0.4530 +4781 7520 0.4810 +4781 7528 0.4160 +4781 8022 0.4440 +4781 8091 0.7070 +4781 8777 0.7350 +4781 9350 0.4530 +4781 9355 0.5310 +4781 10186 0.4920 +4781 10234 0.4470 +4781 10716 0.4820 +4781 11168 0.4720 +4781 23373 0.5760 +4781 23468 0.4100 +4781 23476 0.4210 +4781 27250 0.5130 +4781 30813 0.4150 +4781 51728 0.4120 +4781 55553 0.4560 +4781 55703 0.4010 +4781 63898 0.4010 +4781 64321 0.4040 +4781 64778 0.4320 +4781 84627 0.4830 +4781 84708 0.6640 +4781 113251 0.4140 +4781 340419 0.4270 +4781 340481 0.5460 +4781 345630 0.4060 +4782 4784 0.6740 +4782 4790 0.4440 +4782 4800 0.4750 +4782 4801 0.5050 +4782 4851 0.4030 +4782 5080 0.4650 +4782 5434 0.4050 +4782 5435 0.4110 +4782 5441 0.4010 +4782 5449 0.4990 +4782 5970 0.4860 +4782 5989 0.6690 +4782 6239 0.4240 +4782 6507 0.4870 +4782 6575 0.6360 +4782 6657 0.5550 +4782 6660 0.4260 +4782 6662 0.4250 +4782 6663 0.4510 +4782 6665 0.4060 +4782 6770 0.4290 +4782 6774 0.4390 +4782 6776 0.4490 +4782 6938 0.4040 +4782 7023 0.4710 +4782 7040 0.5150 +4782 7054 0.6150 +4782 7157 0.5800 +4782 7252 0.4100 +4782 7392 0.5350 +4782 7520 0.4240 +4782 7528 0.5530 +4782 8290 0.5260 +4782 8356 0.5650 +4782 8544 0.4400 +4782 9314 0.5550 +4782 9355 0.4160 +4782 9656 0.4390 +4782 23476 0.4290 +4782 27297 0.4090 +4782 30832 0.4040 +4782 51728 0.4120 +4782 55553 0.4020 +4782 121340 0.5640 +4782 140690 0.4320 +4782 171568 0.4080 +4782 440093 0.5230 +4782 440686 0.5250 +4782 653604 0.5250 +4783 4862 0.9310 +4783 4901 0.4110 +4783 4929 0.4510 +4783 5187 0.6070 +4783 5551 0.4220 +4783 6095 0.9090 +4783 6096 0.9070 +4783 6097 0.8930 +4783 6688 0.4550 +4783 6774 0.4490 +4783 6932 0.5400 +4783 7008 0.5390 +4783 7381 0.4840 +4783 7385 0.4310 +4783 7391 0.4740 +4783 7704 0.6140 +4783 8320 0.7560 +4783 8553 0.9360 +4783 8863 0.9570 +4783 8864 0.9890 +4783 8914 0.7530 +4783 9314 0.4130 +4783 9377 0.6140 +4783 9437 0.5440 +4783 9572 0.9660 +4783 9575 0.8700 +4783 9760 0.4590 +4783 9975 0.9360 +4783 10135 0.4750 +4783 10219 0.4230 +4783 10538 0.5650 +4783 23764 0.4960 +4783 26224 0.4310 +4783 27089 0.4340 +4783 29796 0.4650 +4783 30009 0.6400 +4783 50616 0.4340 +4783 50943 0.6150 +4783 54541 0.4150 +4783 55509 0.5760 +4783 56938 0.5770 +4783 64326 0.5510 +4783 64651 0.4100 +4783 64919 0.4980 +4783 79002 0.4430 +4783 79365 0.9890 +4783 79836 0.4700 +4783 83931 0.7640 +4783 84699 0.4060 +4783 84701 0.4820 +4783 84886 0.5330 +4783 116071 0.4050 +4783 125965 0.4420 +4783 148523 0.4800 +4783 254394 0.5160 +4783 283459 0.4650 +4783 388753 0.4430 +4783 102800317 0.4560 +4784 5080 0.5300 +4784 5081 0.5170 +4784 5441 0.4010 +4784 5585 0.4220 +4784 5989 0.4890 +4784 6507 0.6530 +4784 6657 0.6470 +4784 6660 0.4100 +4784 6663 0.4950 +4784 6774 0.4150 +4784 7157 0.5300 +4784 7391 0.4050 +4784 7392 0.4150 +4784 8498 0.4180 +4784 8544 0.5500 +4784 10150 0.4490 +4784 10153 0.5930 +4784 10622 0.4480 +4784 10716 0.4010 +4784 51082 0.4130 +4784 51728 0.4120 +4784 55553 0.5000 +4784 63974 0.4460 +4784 64131 0.4140 +4784 64324 0.5860 +4790 4791 0.9990 +4790 4792 0.9990 +4790 4793 0.9980 +4790 4794 0.9950 +4790 4803 0.7110 +4790 4804 0.6470 +4790 4843 0.6960 +4790 4846 0.5280 +4790 4851 0.9320 +4790 4854 0.9190 +4790 4856 0.5530 +4790 4869 0.4110 +4790 4893 0.7130 +4790 4907 0.4080 +4790 4914 0.4250 +4790 4929 0.5740 +4790 4968 0.4770 +4790 5037 0.4850 +4790 5045 0.4120 +4790 5052 0.6440 +4790 5054 0.5250 +4790 5079 0.4220 +4790 5087 0.4880 +4790 5133 0.4170 +4790 5170 0.6290 +4790 5175 0.5140 +4790 5241 0.4040 +4790 5243 0.4300 +4790 5266 0.6230 +4790 5284 0.4840 +4790 5290 0.6970 +4790 5291 0.5200 +4790 5294 0.5970 +4790 5295 0.6260 +4790 5315 0.4620 +4790 5328 0.4620 +4790 5335 0.4120 +4790 5336 0.4700 +4790 5340 0.4040 +4790 5366 0.4030 +4790 5444 0.5110 +4790 5452 0.5610 +4790 5460 0.4110 +4790 5465 0.5810 +4790 5467 0.7190 +4790 5468 0.9720 +4790 5499 0.4020 +4790 5515 0.9310 +4790 5516 0.9180 +4790 5518 0.9160 +4790 5519 0.9090 +4790 5520 0.9120 +4790 5521 0.9050 +4790 5522 0.9140 +4790 5531 0.4820 +4790 5551 0.4830 +4790 5566 0.9440 +4790 5567 0.9440 +4790 5568 0.9440 +4790 5578 0.7160 +4790 5579 0.4630 +4790 5580 0.6330 +4790 5588 0.9530 +4790 5590 0.4800 +4790 5591 0.6310 +4790 5594 0.7900 +4790 5595 0.8810 +4790 5599 0.9870 +4790 5600 0.4500 +4790 5601 0.9430 +4790 5603 0.4480 +4790 5604 0.7620 +4790 5606 0.4280 +4790 5610 0.5450 +4790 5682 0.7420 +4790 5683 0.5660 +4790 5684 0.5760 +4790 5685 0.6920 +4790 5686 0.5440 +4790 5687 0.5980 +4790 5688 0.7800 +4790 5689 0.5870 +4790 5690 0.5690 +4790 5691 0.5830 +4790 5692 0.5260 +4790 5693 0.5400 +4790 5694 0.5590 +4790 5695 0.5170 +4790 5696 0.6370 +4790 5698 0.6300 +4790 5699 0.5750 +4790 5700 0.4920 +4790 5701 0.5450 +4790 5702 0.5640 +4790 5704 0.5360 +4790 5705 0.4920 +4790 5706 0.4890 +4790 5707 0.5580 +4790 5708 0.5890 +4790 5709 0.5140 +4790 5710 0.5730 +4790 5711 0.4240 +4790 5713 0.4970 +4790 5714 0.5300 +4790 5715 0.5110 +4790 5716 0.5870 +4790 5717 0.5470 +4790 5718 0.4990 +4790 5719 0.4830 +4790 5720 0.4830 +4790 5721 0.5210 +4790 5728 0.6520 +4790 5734 0.4400 +4790 5742 0.4180 +4790 5743 0.8420 +4790 5747 0.5060 +4790 5770 0.4150 +4790 5777 0.4930 +4790 5781 0.4250 +4790 5788 0.5770 +4790 5880 0.9380 +4790 5881 0.9110 +4790 5885 0.5220 +4790 5894 0.9400 +4790 5921 0.4520 +4790 5966 0.9990 +4790 5970 0.9990 +4790 5971 0.9990 +4790 5972 0.4870 +4790 5977 0.5300 +4790 6091 0.4380 +4790 6093 0.9360 +4790 6188 0.9230 +4790 6198 0.5130 +4790 6209 0.5130 +4790 6233 0.6570 +4790 6256 0.5480 +4790 6283 0.5670 +4790 6285 0.5750 +4790 6288 0.5600 +4790 6300 0.4440 +4790 6311 0.4500 +4790 6347 0.9820 +4790 6348 0.7490 +4790 6351 0.6770 +4790 6363 0.5210 +4790 6364 0.7290 +4790 6367 0.4090 +4790 6373 0.4540 +4790 6374 0.4550 +4790 6375 0.4470 +4790 6376 0.4240 +4790 6387 0.5640 +4790 6390 0.4270 +4790 6391 0.4550 +4790 6401 0.5890 +4790 6402 0.4280 +4790 6403 0.4430 +4790 6416 0.6800 +4790 6500 0.6710 +4790 6513 0.4520 +4790 6517 0.4340 +4790 6586 0.4620 +4790 6591 0.4510 +4790 6615 0.5730 +4790 6624 0.6680 +4790 6647 0.5030 +4790 6648 0.5600 +4790 6657 0.4460 +4790 6667 0.9100 +4790 6688 0.6930 +4790 6696 0.4830 +4790 6714 0.7560 +4790 6720 0.4440 +4790 6722 0.5130 +4790 6745 0.4890 +4790 6772 0.9260 +4790 6773 0.5390 +4790 6774 0.9620 +4790 6775 0.6430 +4790 6776 0.8300 +4790 6777 0.7410 +4790 6778 0.8580 +4790 6790 0.7940 +4790 6850 0.7410 +4790 6868 0.4090 +4790 6880 0.4490 +4790 6885 0.7690 +4790 6907 0.5320 +4790 6908 0.4070 +4790 6923 0.5540 +4790 7004 0.4040 +4790 7015 0.4230 +4790 7019 0.4190 +4790 7025 0.4580 +4790 7040 0.7110 +4790 7042 0.4060 +4790 7046 0.4170 +4790 7048 0.4600 +4790 7057 0.4370 +4790 7076 0.7040 +4790 7077 0.4630 +4790 7082 0.4800 +4790 7096 0.7700 +4790 7097 0.9920 +4790 7098 0.8610 +4790 7099 0.9930 +4790 7100 0.9770 +4790 7113 0.4500 +4790 7124 0.9990 +4790 7128 0.9080 +4790 7132 0.8480 +4790 7133 0.7310 +4790 7157 0.9890 +4790 7158 0.4570 +4790 7185 0.7920 +4790 7186 0.7180 +4790 7187 0.8380 +4790 7188 0.6940 +4790 7189 0.9510 +4790 7220 0.4670 +4790 7291 0.5710 +4790 7295 0.9830 +4790 7297 0.5010 +4790 7311 0.5430 +4790 7314 0.5750 +4790 7316 0.6380 +4790 7321 0.6200 +4790 7322 0.7000 +4790 7323 0.6120 +4790 7324 0.5690 +4790 7334 0.8120 +4790 7335 0.6230 +4790 7369 0.4730 +4790 7410 0.4480 +4790 7412 0.7690 +4790 7415 0.6550 +4790 7431 0.7360 +4790 7442 0.5570 +4790 7450 0.5340 +4790 7494 0.6760 +4790 7498 0.4360 +4790 7514 0.4280 +4790 7518 0.4420 +4790 7528 0.7150 +4790 7535 0.4460 +4790 7538 0.5030 +4790 7704 0.5180 +4790 7706 0.6720 +4790 7837 0.6310 +4790 7850 0.6160 +4790 7852 0.7340 +4790 7979 0.4120 +4790 8061 0.4380 +4790 8091 0.4710 +4790 8202 0.5110 +4790 8290 0.6760 +4790 8356 0.6840 +4790 8361 0.4200 +4790 8454 0.7990 +4790 8517 0.9990 +4790 8544 0.4970 +4790 8600 0.7680 +4790 8626 0.4780 +4790 8648 0.7810 +4790 8651 0.7020 +4790 8668 0.5000 +4790 8678 0.5040 +4790 8697 0.5470 +4790 8717 0.7560 +4790 8737 0.8950 +4790 8742 0.4340 +4790 8743 0.4710 +4790 8767 0.7670 +4790 8772 0.7530 +4790 8784 0.5460 +4790 8795 0.4880 +4790 8797 0.4410 +4790 8817 0.4230 +4790 8822 0.4160 +4790 8823 0.4180 +4790 8837 0.6380 +4790 8841 0.7670 +4790 8842 0.4100 +4790 8877 0.5480 +4790 8878 0.7470 +4790 8881 0.5520 +4790 8887 0.6770 +4790 8915 0.9290 +4790 8945 0.9640 +4790 8988 0.4440 +4790 8995 0.4160 +4790 9020 0.6760 +4790 9021 0.6620 +4790 9043 0.6940 +4790 9126 0.4960 +4790 9173 0.6170 +4790 9252 0.6800 +4790 9260 0.4410 +4790 9276 0.6380 +4790 9308 0.4380 +4790 9314 0.4750 +4790 9325 0.4330 +4790 9332 0.5130 +4790 9353 0.4610 +4790 9360 0.4170 +4790 9370 0.5070 +4790 9402 0.4730 +4790 9429 0.4020 +4790 9447 0.4540 +4790 9451 0.5440 +4790 9459 0.4400 +4790 9474 0.4530 +4790 9475 0.9240 +4790 9491 0.4090 +4790 9524 0.4950 +4790 9611 0.8750 +4790 9612 0.7570 +4790 9636 0.5730 +4790 9641 0.8070 +4790 9755 0.5720 +4790 9759 0.5670 +4790 9817 0.7330 +4790 9861 0.4960 +4790 9922 0.4330 +4790 9966 0.5110 +4790 9971 0.5090 +4790 9978 0.6690 +4790 10000 0.4230 +4790 10010 0.4870 +4790 10013 0.4120 +4790 10014 0.4770 +4790 10018 0.5560 +4790 10127 0.4670 +4790 10135 0.4010 +4790 10197 0.5130 +4790 10213 0.5340 +4790 10232 0.4650 +4790 10273 0.5770 +4790 10318 0.9320 +4790 10320 0.4640 +4790 10365 0.9380 +4790 10379 0.6060 +4790 10392 0.7270 +4790 10393 0.5530 +4790 10437 0.4100 +4790 10451 0.4400 +4790 10454 0.7370 +4790 10498 0.4460 +4790 10524 0.6330 +4790 10533 0.4100 +4790 10538 0.6600 +4790 10549 0.4140 +4790 10563 0.4370 +4790 10587 0.5110 +4790 10664 0.4360 +4790 10673 0.7350 +4790 10765 0.5790 +4790 10848 0.4960 +4790 10856 0.7020 +4790 10891 0.7700 +4790 10892 0.8700 +4790 10913 0.5460 +4790 10919 0.7560 +4790 10987 0.5980 +4790 11009 0.5430 +4790 11035 0.8150 +4790 11065 0.5940 +4790 11151 0.4870 +4790 11168 0.4670 +4790 11180 0.4540 +4790 11200 0.5210 +4790 11213 0.6390 +4790 11243 0.4030 +4790 11336 0.4100 +4790 11345 0.4030 +4790 22861 0.6120 +4790 22882 0.4120 +4790 22900 0.4980 +4790 22926 0.6300 +4790 22933 0.4040 +4790 22984 0.6750 +4790 23054 0.4060 +4790 23098 0.4680 +4790 23118 0.8930 +4790 23135 0.4010 +4790 23186 0.5050 +4790 23198 0.4770 +4790 23291 0.8250 +4790 23405 0.4490 +4790 23410 0.4410 +4790 23411 0.9830 +4790 23435 0.4200 +4790 23476 0.6240 +4790 23495 0.4470 +4790 23512 0.4350 +4790 23586 0.8820 +4790 23621 0.4970 +4790 23643 0.7250 +4790 23765 0.4310 +4790 25778 0.4100 +4790 25803 0.4670 +4790 25855 0.4140 +4790 25906 0.5150 +4790 26281 0.4160 +4790 26525 0.5510 +4790 27006 0.4160 +4790 27035 0.4450 +4790 27177 0.4950 +4790 27178 0.4980 +4790 27179 0.4550 +4790 27287 0.5340 +4790 27338 0.6150 +4790 28511 0.5160 +4790 28512 0.4790 +4790 29108 0.6670 +4790 29110 0.9900 +4790 29126 0.6050 +4790 29775 0.6070 +4790 29851 0.4430 +4790 29882 0.5670 +4790 29883 0.4070 +4790 29927 0.5110 +4790 29945 0.5650 +4790 30009 0.4930 +4790 30835 0.4100 +4790 50507 0.4940 +4790 50616 0.4840 +4790 50943 0.7440 +4790 51135 0.8040 +4790 51176 0.5620 +4790 51284 0.8170 +4790 51295 0.4190 +4790 51311 0.6340 +4790 51343 0.5630 +4790 51397 0.4390 +4790 51433 0.5350 +4790 51434 0.5220 +4790 51529 0.5300 +4790 51548 0.4120 +4790 51639 0.6640 +4790 51744 0.4350 +4790 51773 0.4320 +4790 51806 0.6450 +4790 54106 0.8280 +4790 54205 0.6160 +4790 54210 0.4110 +4790 54472 0.4260 +4790 54951 0.4010 +4790 54998 0.4280 +4790 55072 0.4010 +4790 55081 0.4270 +4790 55210 0.4850 +4790 55294 0.5110 +4790 55655 0.5080 +4790 55662 0.4800 +4790 55770 0.4270 +4790 55844 0.9070 +4790 55922 0.5530 +4790 56300 0.4680 +4790 56957 0.4430 +4790 57154 0.5140 +4790 57506 0.9030 +4790 58484 0.4480 +4790 59272 0.5710 +4790 60401 0.4180 +4790 63891 0.8010 +4790 63897 0.4160 +4790 64127 0.7760 +4790 64135 0.8030 +4790 64170 0.6280 +4790 64332 0.9880 +4790 64581 0.4780 +4790 64682 0.5450 +4790 64919 0.4880 +4790 79092 0.5370 +4790 79132 0.4770 +4790 79155 0.9950 +4790 79365 0.4120 +4790 79718 0.4800 +4790 79813 0.5630 +4790 79918 0.4790 +4790 79923 0.4110 +4790 79931 0.4570 +4790 80380 0.4250 +4790 80381 0.4800 +4790 81030 0.5840 +4790 81631 0.5160 +4790 81669 0.4380 +4790 81793 0.6090 +4790 81892 0.4480 +4790 83463 0.5170 +4790 84231 0.4760 +4790 84260 0.4320 +4790 84282 0.5790 +4790 84433 0.8610 +4790 84557 0.4070 +4790 84666 0.4140 +4790 84676 0.4910 +4790 84807 0.8340 +4790 84868 0.4350 +4790 89122 0.5460 +4790 90390 0.4110 +4790 90865 0.6790 +4790 91662 0.9540 +4790 91860 0.6410 +4790 92140 0.4740 +4790 92610 0.4450 +4790 94274 0.4340 +4790 112744 0.4090 +4790 114548 0.9810 +4790 114609 0.7190 +4790 114907 0.4020 +4790 115004 0.5490 +4790 115650 0.6570 +4790 119504 0.5140 +4790 122706 0.4630 +4790 132014 0.4850 +4790 136319 0.5810 +4790 137902 0.6250 +4790 143471 0.6720 +4790 147945 0.4160 +4790 148022 0.6580 +4790 149951 0.4180 +4790 150684 0.4850 +4790 163688 0.6410 +4790 169355 0.5690 +4790 197259 0.4300 +4790 199675 0.4510 +4790 199713 0.4460 +4790 203068 0.5730 +4790 246184 0.5060 +4790 253260 0.5790 +4790 253943 0.4510 +4790 257202 0.5510 +4790 257397 0.6940 +4790 282618 0.5020 +4790 389421 0.4990 +4790 402569 0.4680 +4790 440093 0.6780 +4790 440686 0.6780 +4790 493869 0.6100 +4790 653361 0.4780 +4790 653604 0.6820 +4790 100506658 0.5000 +4790 102723407 0.4430 +4791 4792 0.9950 +4791 4793 0.9760 +4791 4794 0.9010 +4791 4796 0.5940 +4791 4798 0.4420 +4791 4851 0.5250 +4791 5272 0.4100 +4791 5594 0.5700 +4791 5682 0.6620 +4791 5683 0.4580 +4791 5684 0.5130 +4791 5685 0.4610 +4791 5686 0.4350 +4791 5687 0.5360 +4791 5688 0.4740 +4791 5689 0.4480 +4791 5690 0.4370 +4791 5691 0.4450 +4791 5692 0.4750 +4791 5693 0.5600 +4791 5694 0.4540 +4791 5695 0.4490 +4791 5696 0.5620 +4791 5698 0.5430 +4791 5699 0.5210 +4791 5700 0.5240 +4791 5701 0.4430 +4791 5702 0.4660 +4791 5704 0.4890 +4791 5705 0.5270 +4791 5706 0.5470 +4791 5707 0.5730 +4791 5708 0.5460 +4791 5709 0.5360 +4791 5710 0.4790 +4791 5711 0.4050 +4791 5713 0.5270 +4791 5714 0.4820 +4791 5715 0.4480 +4791 5716 0.4480 +4791 5717 0.6880 +4791 5718 0.4570 +4791 5719 0.5430 +4791 5720 0.4150 +4791 5721 0.4380 +4791 5743 0.4570 +4791 5966 0.9990 +4791 5970 0.9990 +4791 5971 0.9990 +4791 6098 0.4390 +4791 6188 0.6960 +4791 6233 0.6710 +4791 6283 0.4570 +4791 6285 0.4110 +4791 6288 0.4380 +4791 6347 0.4840 +4791 6351 0.5560 +4791 6364 0.4290 +4791 6382 0.4470 +4791 6500 0.8120 +4791 6597 0.6940 +4791 6667 0.5870 +4791 6688 0.6240 +4791 6772 0.5120 +4791 6774 0.8280 +4791 6815 0.4010 +4791 6885 0.4720 +4791 7040 0.4370 +4791 7071 0.4480 +4791 7097 0.4590 +4791 7098 0.4300 +4791 7099 0.5040 +4791 7124 0.7720 +4791 7128 0.7700 +4791 7132 0.5900 +4791 7133 0.4500 +4791 7157 0.5370 +4791 7185 0.6990 +4791 7186 0.7100 +4791 7187 0.7820 +4791 7188 0.4420 +4791 7189 0.7880 +4791 7291 0.4540 +4791 7297 0.5280 +4791 7311 0.4270 +4791 7314 0.4450 +4791 7316 0.4900 +4791 7329 0.5100 +4791 7334 0.6890 +4791 7335 0.6250 +4791 7341 0.6200 +4791 7532 0.4030 +4791 7706 0.5990 +4791 8061 0.4060 +4791 8178 0.4200 +4791 8454 0.7790 +4791 8517 0.9440 +4791 8600 0.4830 +4791 8651 0.5890 +4791 8717 0.4770 +4791 8737 0.7520 +4791 8742 0.5280 +4791 8767 0.4620 +4791 8772 0.4340 +4791 8837 0.4850 +4791 8915 0.5040 +4791 8945 0.9630 +4791 9020 0.9660 +4791 9039 0.4210 +4791 9040 0.4540 +4791 9491 0.4050 +4791 9612 0.5610 +4791 9641 0.7440 +4791 9861 0.4450 +4791 9978 0.5260 +4791 10189 0.6390 +4791 10197 0.4450 +4791 10213 0.4670 +4791 10318 0.5960 +4791 10437 0.4130 +4791 10454 0.4300 +4791 10673 0.8250 +4791 10848 0.5420 +4791 10892 0.5410 +4791 11035 0.6180 +4791 11213 0.5710 +4791 23085 0.4230 +4791 23118 0.4540 +4791 23198 0.4340 +4791 23291 0.8980 +4791 23495 0.5080 +4791 23586 0.6710 +4791 28511 0.4990 +4791 28512 0.4880 +4791 29110 0.7120 +4791 29927 0.4500 +4791 50619 0.4740 +4791 51135 0.4830 +4791 51176 0.4080 +4791 51284 0.4190 +4791 51330 0.4310 +4791 51676 0.4060 +4791 55294 0.8980 +4791 55662 0.4600 +4791 55922 0.4020 +4791 57506 0.6180 +4791 64135 0.6560 +4791 64332 0.8300 +4791 79155 0.7890 +4791 79918 0.4240 +4791 80149 0.4350 +4791 81030 0.5180 +4791 83858 0.4250 +4791 84282 0.5290 +4791 84433 0.5140 +4791 84807 0.9240 +4791 89122 0.5430 +4791 114548 0.5630 +4791 115650 0.8360 +4791 122706 0.4720 +4791 143471 0.6750 +4791 148022 0.4180 +4792 4793 0.9990 +4792 4794 0.9870 +4792 4803 0.6600 +4792 4804 0.5850 +4792 4843 0.6410 +4792 4846 0.4700 +4792 5159 0.5180 +4792 5170 0.5960 +4792 5175 0.4600 +4792 5265 0.4950 +4792 5295 0.7730 +4792 5300 0.4140 +4792 5328 0.4190 +4792 5329 0.5220 +4792 5336 0.4230 +4792 5442 0.6160 +4792 5465 0.5110 +4792 5468 0.6180 +4792 5537 0.5150 +4792 5566 0.9650 +4792 5567 0.9650 +4792 5568 0.9650 +4792 5578 0.7130 +4792 5588 0.5250 +4792 5594 0.4960 +4792 5595 0.7320 +4792 5599 0.7820 +4792 5600 0.4560 +4792 5601 0.6710 +4792 5603 0.4300 +4792 5604 0.5270 +4792 5606 0.4580 +4792 5610 0.5020 +4792 5682 0.6710 +4792 5683 0.5990 +4792 5684 0.4560 +4792 5685 0.7720 +4792 5686 0.4930 +4792 5687 0.6580 +4792 5688 0.5110 +4792 5689 0.5130 +4792 5690 0.4460 +4792 5691 0.4870 +4792 5692 0.5030 +4792 5693 0.5440 +4792 5694 0.5120 +4792 5695 0.5120 +4792 5696 0.6260 +4792 5698 0.6150 +4792 5699 0.6050 +4792 5700 0.4520 +4792 5701 0.4740 +4792 5702 0.5180 +4792 5704 0.5130 +4792 5705 0.4700 +4792 5706 0.4580 +4792 5707 0.4970 +4792 5708 0.4900 +4792 5709 0.6000 +4792 5710 0.5530 +4792 5713 0.4780 +4792 5714 0.5130 +4792 5715 0.4890 +4792 5716 0.5250 +4792 5717 0.5060 +4792 5718 0.4660 +4792 5719 0.4870 +4792 5720 0.5050 +4792 5721 0.5300 +4792 5728 0.5360 +4792 5734 0.4250 +4792 5743 0.8560 +4792 5770 0.5800 +4792 5783 0.7120 +4792 5788 0.5090 +4792 5880 0.4390 +4792 5905 0.6120 +4792 5966 0.9990 +4792 5970 0.9990 +4792 5971 0.9950 +4792 5987 0.4270 +4792 6035 0.4730 +4792 6188 0.7830 +4792 6195 0.7660 +4792 6197 0.4860 +4792 6198 0.4900 +4792 6233 0.9860 +4792 6295 0.4900 +4792 6300 0.4290 +4792 6347 0.7540 +4792 6348 0.7520 +4792 6351 0.5100 +4792 6364 0.5540 +4792 6372 0.4770 +4792 6374 0.4200 +4792 6387 0.4170 +4792 6391 0.4380 +4792 6401 0.6070 +4792 6446 0.4310 +4792 6500 0.9990 +4792 6613 0.5970 +4792 6615 0.4320 +4792 6648 0.7050 +4792 6714 0.7970 +4792 6772 0.9170 +4792 6773 0.4900 +4792 6774 0.7410 +4792 6776 0.6530 +4792 6777 0.4410 +4792 6778 0.4740 +4792 6790 0.4130 +4792 6850 0.7300 +4792 6885 0.8550 +4792 7015 0.5310 +4792 7040 0.6480 +4792 7052 0.6230 +4792 7057 0.4300 +4792 7076 0.4310 +4792 7082 0.4570 +4792 7088 0.4030 +4792 7096 0.5450 +4792 7097 0.7490 +4792 7098 0.6630 +4792 7099 0.8720 +4792 7100 0.7190 +4792 7124 0.9670 +4792 7127 0.4260 +4792 7128 0.8700 +4792 7132 0.8090 +4792 7133 0.4730 +4792 7157 0.9150 +4792 7167 0.4350 +4792 7185 0.6130 +4792 7186 0.7610 +4792 7187 0.6470 +4792 7188 0.5000 +4792 7189 0.9660 +4792 7280 0.4440 +4792 7295 0.4150 +4792 7297 0.4600 +4792 7311 0.9520 +4792 7314 0.9570 +4792 7316 0.9630 +4792 7321 0.9640 +4792 7322 0.9940 +4792 7323 0.6770 +4792 7329 0.8740 +4792 7332 0.4900 +4792 7334 0.8290 +4792 7335 0.6900 +4792 7341 0.8600 +4792 7345 0.4260 +4792 7403 0.4820 +4792 7412 0.7870 +4792 7415 0.8630 +4792 7431 0.4560 +4792 7494 0.4340 +4792 7514 0.4100 +4792 7534 0.5120 +4792 7538 0.6000 +4792 7706 0.6540 +4792 7837 0.7340 +4792 7846 0.5800 +4792 7850 0.5720 +4792 7852 0.4790 +4792 8202 0.5210 +4792 8237 0.9220 +4792 8290 0.5630 +4792 8337 0.5320 +4792 8338 0.5030 +4792 8356 0.5630 +4792 8453 0.5440 +4792 8454 0.9990 +4792 8517 0.9990 +4792 8518 0.7670 +4792 8533 0.6010 +4792 8600 0.6490 +4792 8651 0.5220 +4792 8655 0.4260 +4792 8678 0.4450 +4792 8717 0.6400 +4792 8737 0.8040 +4792 8742 0.4240 +4792 8743 0.4230 +4792 8767 0.5910 +4792 8772 0.6220 +4792 8795 0.4550 +4792 8797 0.4140 +4792 8837 0.6640 +4792 8841 0.4970 +4792 8870 0.5170 +4792 8877 0.5020 +4792 8878 0.8090 +4792 8915 0.8880 +4792 8945 0.9990 +4792 8988 0.6860 +4792 9020 0.8490 +4792 9021 0.7260 +4792 9040 0.5160 +4792 9093 0.4980 +4792 9097 0.4780 +4792 9308 0.4950 +4792 9318 0.5710 +4792 9332 0.4200 +4792 9451 0.6290 +4792 9475 0.4500 +4792 9491 0.4050 +4792 9611 0.4740 +4792 9612 0.6320 +4792 9636 0.4880 +4792 9641 0.8220 +4792 9759 0.4840 +4792 9817 0.5270 +4792 9861 0.4410 +4792 9908 0.7540 +4792 9978 0.9870 +4792 10010 0.6450 +4792 10014 0.4360 +4792 10018 0.4530 +4792 10054 0.5300 +4792 10055 0.5620 +4792 10197 0.5150 +4792 10213 0.5220 +4792 10318 0.5650 +4792 10346 0.4390 +4792 10382 0.4320 +4792 10392 0.6720 +4792 10454 0.8010 +4792 10549 0.4760 +4792 10616 0.6250 +4792 10673 0.5230 +4792 10758 0.4220 +4792 10892 0.8900 +4792 10913 0.4350 +4792 11035 0.7170 +4792 11213 0.5150 +4792 11266 0.4210 +4792 23085 0.7280 +4792 23118 0.7950 +4792 23198 0.4670 +4792 23291 0.9890 +4792 23361 0.4200 +4792 23411 0.5410 +4792 23586 0.7980 +4792 23601 0.4450 +4792 23643 0.5790 +4792 23645 0.4880 +4792 25942 0.4630 +4792 26051 0.4260 +4792 26054 0.4130 +4792 26224 0.4230 +4792 26227 0.5090 +4792 26263 0.9010 +4792 27005 0.4230 +4792 27338 0.5000 +4792 28511 0.8640 +4792 28512 0.7360 +4792 29108 0.4070 +4792 29110 0.9100 +4792 50507 0.4370 +4792 50848 0.4410 +4792 50943 0.4510 +4792 51135 0.6920 +4792 51176 0.4960 +4792 51239 0.5100 +4792 51284 0.5890 +4792 51311 0.5250 +4792 51510 0.4150 +4792 51619 0.9080 +4792 51665 0.4300 +4792 51666 0.4470 +4792 51676 0.4520 +4792 51710 0.4200 +4792 51741 0.5620 +4792 51806 0.4140 +4792 54106 0.7190 +4792 54205 0.5960 +4792 54472 0.6370 +4792 54522 0.5010 +4792 54541 0.5110 +4792 54851 0.4610 +4792 55072 0.5110 +4792 55294 0.4610 +4792 55608 0.4800 +4792 55662 0.7510 +4792 55666 0.4310 +4792 55753 0.4720 +4792 57162 0.4030 +4792 57465 0.4280 +4792 57506 0.8120 +4792 64127 0.7080 +4792 64135 0.7540 +4792 64332 0.7810 +4792 64581 0.4050 +4792 64651 0.4060 +4792 64853 0.4310 +4792 79132 0.4280 +4792 79155 0.5780 +4792 79792 0.5680 +4792 80149 0.5300 +4792 80818 0.4260 +4792 81030 0.5590 +4792 81603 0.4160 +4792 81631 0.4260 +4792 81669 0.4070 +4792 81858 0.4340 +4792 84079 0.5420 +4792 84282 0.5870 +4792 84433 0.8480 +4792 84676 0.5480 +4792 84807 0.5920 +4792 84823 0.6160 +4792 84988 0.4550 +4792 89122 0.5570 +4792 91860 0.4070 +4792 92591 0.4360 +4792 92609 0.4680 +4792 113457 0.5160 +4792 114548 0.6260 +4792 114609 0.5620 +4792 114907 0.4160 +4792 115004 0.4240 +4792 115560 0.4200 +4792 115650 0.4510 +4792 118932 0.4780 +4792 122706 0.4590 +4792 129138 0.4800 +4792 133482 0.4590 +4792 136319 0.6860 +4792 136991 0.5620 +4792 137902 0.7340 +4792 138065 0.4290 +4792 140456 0.4920 +4792 140458 0.5030 +4792 140462 0.5590 +4792 142685 0.4910 +4792 142689 0.4660 +4792 143471 0.4590 +4792 148022 0.4350 +4792 148266 0.4190 +4792 150684 0.8830 +4792 163688 0.4070 +4792 170622 0.4610 +4792 197259 0.4220 +4792 203068 0.6370 +4792 221302 0.4470 +4792 257202 0.4910 +4792 257397 0.7420 +4792 283106 0.9070 +4792 284390 0.4200 +4792 317754 0.5380 +4792 374860 0.5050 +4792 387082 0.6600 +4792 388468 0.5380 +4792 401036 0.4050 +4792 440093 0.5620 +4792 440686 0.5620 +4792 493869 0.4980 +4792 653361 0.4320 +4792 653604 0.5620 +4792 100287399 0.5120 +4792 100288966 0.5380 +4792 100506658 0.4990 +4792 100996331 0.5390 +4792 102723502 0.5360 +4792 102724631 0.5360 +4793 4794 0.9930 +4793 4795 0.4240 +4793 4796 0.6750 +4793 5151 0.4420 +4793 5294 0.4080 +4793 5468 0.4720 +4793 5515 0.4160 +4793 5537 0.5550 +4793 5566 0.4990 +4793 5567 0.4910 +4793 5568 0.4960 +4793 5682 0.4340 +4793 5683 0.4020 +4793 5684 0.4340 +4793 5685 0.4330 +4793 5686 0.4330 +4793 5687 0.4330 +4793 5688 0.4330 +4793 5689 0.4330 +4793 5690 0.4340 +4793 5691 0.4340 +4793 5692 0.4520 +4793 5693 0.4420 +4793 5694 0.4070 +4793 5695 0.4340 +4793 5696 0.4540 +4793 5698 0.4210 +4793 5699 0.4580 +4793 5700 0.4350 +4793 5701 0.4340 +4793 5702 0.4590 +4793 5704 0.5060 +4793 5705 0.4340 +4793 5706 0.4950 +4793 5707 0.4520 +4793 5708 0.4540 +4793 5709 0.4500 +4793 5710 0.4610 +4793 5713 0.4380 +4793 5714 0.5000 +4793 5715 0.4460 +4793 5716 0.4450 +4793 5717 0.4700 +4793 5718 0.4770 +4793 5719 0.4590 +4793 5720 0.4100 +4793 5721 0.4160 +4793 5931 0.4120 +4793 5966 0.9990 +4793 5970 0.9990 +4793 5971 0.9930 +4793 6233 0.5920 +4793 6293 0.5420 +4793 6500 0.9440 +4793 6885 0.6820 +4793 6908 0.5600 +4793 7099 0.4820 +4793 7124 0.7130 +4793 7128 0.4190 +4793 7132 0.4010 +4793 7186 0.6890 +4793 7189 0.8850 +4793 7311 0.5480 +4793 7314 0.5320 +4793 7316 0.5490 +4793 7321 0.9240 +4793 7322 0.9160 +4793 7334 0.6160 +4793 7335 0.5900 +4793 7706 0.5310 +4793 7846 0.5060 +4793 8454 0.9320 +4793 8517 0.9940 +4793 8717 0.4300 +4793 8737 0.6450 +4793 8915 0.7530 +4793 8945 0.9830 +4793 9093 0.5960 +4793 9491 0.4060 +4793 9641 0.4810 +4793 9701 0.4410 +4793 9861 0.4420 +4793 9978 0.9150 +4793 10197 0.4270 +4793 10213 0.4440 +4793 10892 0.7540 +4793 11035 0.5510 +4793 22870 0.4580 +4793 23085 0.5210 +4793 23198 0.4270 +4793 23291 0.9620 +4793 23586 0.7010 +4793 28511 0.8640 +4793 28512 0.9230 +4793 29110 0.5380 +4793 51082 0.4730 +4793 51619 0.9070 +4793 55662 0.7070 +4793 57506 0.5900 +4793 64135 0.6480 +4793 64332 0.6810 +4793 64425 0.4600 +4793 79155 0.5960 +4793 79444 0.5420 +4793 81030 0.5050 +4793 84282 0.5050 +4793 84433 0.7390 +4793 84807 0.8820 +4793 89122 0.5040 +4793 122706 0.4330 +4793 143471 0.4330 +4794 4796 0.4180 +4794 5515 0.6120 +4794 5537 0.9220 +4794 5591 0.4580 +4794 5682 0.4600 +4794 5683 0.4280 +4794 5684 0.4530 +4794 5685 0.4570 +4794 5686 0.5280 +4794 5687 0.4660 +4794 5688 0.4580 +4794 5689 0.4680 +4794 5690 0.4720 +4794 5691 0.4900 +4794 5692 0.4960 +4794 5693 0.4410 +4794 5694 0.4310 +4794 5695 0.4540 +4794 5696 0.4930 +4794 5698 0.4740 +4794 5699 0.4920 +4794 5700 0.4430 +4794 5701 0.4440 +4794 5702 0.4710 +4794 5704 0.4680 +4794 5705 0.4460 +4794 5706 0.4820 +4794 5707 0.4830 +4794 5708 0.4660 +4794 5709 0.4600 +4794 5710 0.4840 +4794 5711 0.4250 +4794 5713 0.4850 +4794 5714 0.5080 +4794 5715 0.4660 +4794 5716 0.7230 +4794 5717 0.4860 +4794 5718 0.4730 +4794 5719 0.4830 +4794 5720 0.4810 +4794 5721 0.5380 +4794 5966 0.9990 +4794 5970 0.9990 +4794 5971 0.9960 +4794 6209 0.4430 +4794 6233 0.5400 +4794 6421 0.4300 +4794 6500 0.6740 +4794 6885 0.6450 +4794 7124 0.7370 +4794 7128 0.6920 +4794 7185 0.5850 +4794 7187 0.4630 +4794 7189 0.4110 +4794 7311 0.5230 +4794 7314 0.5380 +4794 7316 0.5570 +4794 7514 0.4160 +4794 8356 0.4780 +4794 8454 0.6480 +4794 8517 0.9680 +4794 8625 0.4230 +4794 8915 0.6710 +4794 8945 0.7510 +4794 8968 0.4260 +4794 9020 0.4790 +4794 9308 0.5300 +4794 9404 0.4320 +4794 9491 0.4140 +4794 9641 0.4530 +4794 9701 0.8930 +4794 9861 0.4650 +4794 10197 0.5620 +4794 10213 0.4770 +4794 10318 0.4430 +4794 10520 0.4030 +4794 10892 0.6840 +4794 11182 0.4630 +4794 11315 0.4910 +4794 22870 0.9030 +4794 23198 0.4470 +4794 23291 0.6440 +4794 23451 0.4580 +4794 23495 0.4270 +4794 27175 0.4130 +4794 28511 0.5670 +4794 28512 0.6130 +4794 51135 0.4160 +4794 51239 0.4070 +4794 51561 0.4170 +4794 55291 0.7500 +4794 56311 0.4700 +4794 64332 0.7160 +4794 79754 0.4240 +4794 80110 0.4370 +4794 84433 0.7220 +4794 84807 0.6680 +4794 84988 0.4170 +4794 122706 0.4330 +4794 124599 0.4460 +4794 140456 0.4280 +4794 140458 0.4500 +4794 140462 0.4660 +4794 142686 0.4300 +4794 142689 0.4120 +4794 143471 0.4330 +4794 148741 0.4250 +4794 157567 0.4130 +4794 200539 0.4700 +4794 347734 0.4490 +4794 554226 0.4650 +4794 102723407 0.5300 +4795 5411 0.4100 +4795 5635 0.4690 +4795 6583 0.5480 +4795 7111 0.4930 +4795 7124 0.5190 +4795 7185 0.4030 +4795 7272 0.4950 +4795 7407 0.4180 +4795 7916 0.4900 +4795 7919 0.5190 +4795 7940 0.7160 +4795 9242 0.4400 +4795 9406 0.6720 +4795 9486 0.4180 +4795 23162 0.5480 +4795 25842 0.4240 +4795 26056 0.4060 +4795 26191 0.5020 +4795 29765 0.5970 +4795 29766 0.4930 +4795 29767 0.5500 +4795 55251 0.4570 +4795 55692 0.7260 +4795 55723 0.4240 +4795 84132 0.4050 +4795 85403 0.6100 +4795 146206 0.6500 +4795 259197 0.6440 +4795 401250 0.5440 +4796 5426 0.4640 +4796 5888 0.5180 +4796 5966 0.5540 +4796 5970 0.5250 +4796 5971 0.5960 +4796 6426 0.6620 +4796 6749 0.8760 +4796 7108 0.4060 +4796 7277 0.4380 +4796 7278 0.4410 +4796 7846 0.4390 +4796 8294 0.9200 +4796 8318 0.4240 +4796 8350 0.6570 +4796 8352 0.5180 +4796 8353 0.4260 +4796 8356 0.8160 +4796 8359 0.9030 +4796 8360 0.9030 +4796 8361 0.9860 +4796 8362 0.9150 +4796 8363 0.9030 +4796 8364 0.9220 +4796 8366 0.9230 +4796 8367 0.9030 +4796 8368 0.9240 +4796 8369 0.4530 +4796 8370 0.9030 +4796 9156 0.4070 +4796 9401 0.4020 +4796 9555 0.4190 +4796 9684 0.4300 +4796 10376 0.4420 +4796 11198 0.7280 +4796 25842 0.8920 +4796 29894 0.5000 +4796 50485 0.5730 +4796 50626 0.4770 +4796 51160 0.6760 +4796 51807 0.4410 +4796 54840 0.4400 +4796 55086 0.4480 +4796 55506 0.4550 +4796 55723 0.9290 +4796 56946 0.4060 +4796 79075 0.4050 +4796 79861 0.4460 +4796 80086 0.4370 +4796 80728 0.4200 +4796 81620 0.4080 +4796 84083 0.5030 +4796 84790 0.4570 +4796 84893 0.4270 +4796 90990 0.4170 +4796 112714 0.4370 +4796 113457 0.4370 +4796 121504 0.9030 +4796 126961 0.5300 +4796 146909 0.4950 +4796 197335 0.5150 +4796 203054 0.5110 +4796 221927 0.4210 +4796 253714 0.9990 +4796 284403 0.7720 +4796 347688 0.4290 +4796 554313 0.9030 +4796 727957 0.4270 +4798 4799 0.4650 +4798 5571 0.4010 +4798 5886 0.4960 +4798 5887 0.4780 +4798 6046 0.4600 +4798 6233 0.4330 +4798 7182 0.4490 +4798 7311 0.5160 +4798 7314 0.4290 +4798 7316 0.5350 +4798 7508 0.4330 +4798 7528 0.9820 +4798 8019 0.5650 +4798 8295 0.9090 +4798 8314 0.4580 +4798 8450 0.4450 +4798 8451 0.4460 +4798 8533 0.4080 +4798 8607 0.9910 +4798 9282 0.5030 +4798 9318 0.4090 +4798 9416 0.7690 +4798 9640 0.5080 +4798 9733 0.5680 +4798 9869 0.4600 +4798 9978 0.4370 +4798 10277 0.4520 +4798 10428 0.5520 +4798 10445 0.9790 +4798 10467 0.6300 +4798 10524 0.9340 +4798 10847 0.5960 +4798 10856 0.9790 +4798 10902 0.9170 +4798 10920 0.4090 +4798 10980 0.4090 +4798 10987 0.5200 +4798 11047 0.7090 +4798 11083 0.5430 +4798 22796 0.5130 +4798 23133 0.5050 +4798 23383 0.4980 +4798 23582 0.5630 +4798 25904 0.4140 +4798 29844 0.9840 +4798 50813 0.4500 +4798 51138 0.4080 +4798 51340 0.4260 +4798 51377 0.9980 +4798 54556 0.9000 +4798 54617 0.9960 +4798 54891 0.9400 +4798 55929 0.7220 +4798 57325 0.4270 +4798 57634 0.9290 +4798 64426 0.4510 +4798 64431 0.6140 +4798 64708 0.4250 +4798 79913 0.9990 +4798 81611 0.9000 +4798 83444 0.9790 +4798 83548 0.4210 +4798 93973 0.9910 +4798 125476 0.9760 +4798 283899 0.9990 +4799 4802 0.4620 +4799 4809 0.4140 +4799 4904 0.5400 +4799 4928 0.4980 +4799 5394 0.4160 +4799 5531 0.4140 +4799 5557 0.4270 +4799 5663 0.8040 +4799 5886 0.4940 +4799 5887 0.4600 +4799 5903 0.4360 +4799 5993 0.4970 +4799 6122 0.6540 +4799 6124 0.5570 +4799 6125 0.6230 +4799 6128 0.6660 +4799 6129 0.5200 +4799 6130 0.6640 +4799 6132 0.4970 +4799 6133 0.4970 +4799 6135 0.4970 +4799 6137 0.4980 +4799 6138 0.5010 +4799 6139 0.6400 +4799 6141 0.4970 +4799 6142 0.4970 +4799 6144 0.4970 +4799 6146 0.7960 +4799 6147 0.6400 +4799 6152 0.4990 +4799 6154 0.4920 +4799 6155 0.5140 +4799 6156 0.5780 +4799 6157 0.5780 +4799 6159 0.5780 +4799 6160 0.5720 +4799 6161 0.4290 +4799 6164 0.4970 +4799 6165 0.4970 +4799 6168 0.5260 +4799 6169 0.4290 +4799 6173 0.4380 +4799 6187 0.6310 +4799 6188 0.5810 +4799 6189 0.4970 +4799 6191 0.4730 +4799 6193 0.5780 +4799 6194 0.5870 +4799 6201 0.5720 +4799 6202 0.5720 +4799 6203 0.4970 +4799 6204 0.4920 +4799 6205 0.4970 +4799 6206 0.6670 +4799 6207 0.6310 +4799 6208 0.4920 +4799 6209 0.6310 +4799 6210 0.4730 +4799 6217 0.4970 +4799 6218 0.5720 +4799 6222 0.4220 +4799 6223 0.7030 +4799 6224 0.6430 +4799 6227 0.4290 +4799 6228 0.4970 +4799 6229 0.5310 +4799 6230 0.4970 +4799 6232 0.4920 +4799 6233 0.4670 +4799 6234 0.5340 +4799 6235 0.5380 +4799 6428 0.4230 +4799 7157 0.5070 +4799 7337 0.9720 +4799 7343 0.4040 +4799 8021 0.4380 +4799 8239 0.6120 +4799 8367 0.4010 +4799 8662 0.4370 +4799 8761 0.4820 +4799 9349 0.4970 +4799 9521 0.4110 +4799 9759 0.4830 +4799 9790 0.4110 +4799 9939 0.4560 +4799 9958 0.4340 +4799 9972 0.4070 +4799 10181 0.4540 +4799 10189 0.6660 +4799 10399 0.5810 +4799 10432 0.4460 +4799 10482 0.5650 +4799 10492 0.7860 +4799 10856 0.4470 +4799 10898 0.4820 +4799 11198 0.5010 +4799 11222 0.4670 +4799 11224 0.4980 +4799 11340 0.4030 +4799 22907 0.4190 +4799 23185 0.5080 +4799 23274 0.4360 +4799 23367 0.6250 +4799 23521 0.6400 +4799 25873 0.4990 +4799 25942 0.7000 +4799 26354 0.4100 +4799 26986 0.8670 +4799 28998 0.4270 +4799 29107 0.6090 +4799 29894 0.4340 +4799 51069 0.4290 +4799 51073 0.4100 +4799 51081 0.4630 +4799 51319 0.4140 +4799 55226 0.4630 +4799 55234 0.4960 +4799 55308 0.4250 +4799 55646 0.4310 +4799 55683 0.5060 +4799 57169 0.6190 +4799 57187 0.5050 +4799 60561 0.5570 +4799 65008 0.4290 +4799 80153 0.5570 +4799 164832 0.5260 +4799 246243 0.4820 +4799 642489 0.5000 +4800 4801 0.9990 +4800 4802 0.9990 +4800 4863 0.4590 +4800 5079 0.4620 +4800 5090 0.4610 +4800 5451 0.4040 +4800 5989 0.6510 +4800 5993 0.7630 +4800 5994 0.6750 +4800 6309 0.5000 +4800 6667 0.9090 +4800 6688 0.4820 +4800 6713 0.5100 +4800 6720 0.6010 +4800 6721 0.6540 +4800 6722 0.4650 +4800 6872 0.5750 +4800 6883 0.6350 +4800 6908 0.9490 +4800 7003 0.4180 +4800 7071 0.4830 +4800 7108 0.4990 +4800 7157 0.8650 +4800 7161 0.4060 +4800 7184 0.5420 +4800 7391 0.6110 +4800 7392 0.5100 +4800 7494 0.6240 +4800 7528 0.4870 +4800 7702 0.5380 +4800 8337 0.5830 +4800 8338 0.5840 +4800 8531 0.4630 +4800 8625 0.8200 +4800 8720 0.4990 +4800 8850 0.7780 +4800 9282 0.4490 +4800 9360 0.4280 +4800 9451 0.4250 +4800 9453 0.5500 +4800 9519 0.9170 +4800 9869 0.4180 +4800 10009 0.6740 +4800 10018 0.5560 +4800 10127 0.5090 +4800 10153 0.8530 +4800 10654 0.5350 +4800 10664 0.6060 +4800 10963 0.4040 +4800 11091 0.5670 +4800 11244 0.9680 +4800 22882 0.5980 +4800 22926 0.7540 +4800 22937 0.5980 +4800 23051 0.8560 +4800 23070 0.4460 +4800 23133 0.5270 +4800 23163 0.5260 +4800 23186 0.4200 +4800 23476 0.4280 +4800 25942 0.4670 +4800 26009 0.4230 +4800 29803 0.6220 +4800 51360 0.5290 +4800 51631 0.5510 +4800 54108 0.8440 +4800 55633 0.5500 +4800 57678 0.4990 +4800 81669 0.6280 +4800 84166 0.4160 +4800 84872 0.4880 +4800 93380 0.4440 +4800 126298 0.5580 +4800 171017 0.4780 +4800 245711 0.8080 +4800 387332 0.9180 +4800 387778 0.8080 +4801 4802 0.9990 +4801 5159 0.4270 +4801 5468 0.4270 +4801 5937 0.4450 +4801 5978 0.4290 +4801 5989 0.5780 +4801 5993 0.8100 +4801 5994 0.5870 +4801 6041 0.4070 +4801 6309 0.5320 +4801 6667 0.7180 +4801 6713 0.5220 +4801 6716 0.5400 +4801 6720 0.5680 +4801 6721 0.5670 +4801 6886 0.4730 +4801 6908 0.7940 +4801 7108 0.4990 +4801 7157 0.7170 +4801 7161 0.6970 +4801 7227 0.4970 +4801 7391 0.4400 +4801 7392 0.6380 +4801 7494 0.6260 +4801 7702 0.4710 +4801 7978 0.5860 +4801 8270 0.5350 +4801 8625 0.6990 +4801 8721 0.4200 +4801 8850 0.4580 +4801 8895 0.4140 +4801 9001 0.8860 +4801 9133 0.4940 +4801 9453 0.5710 +4801 9572 0.4410 +4801 9670 0.4330 +4801 10018 0.5070 +4801 10153 0.9030 +4801 10589 0.7400 +4801 10654 0.5380 +4801 10664 0.4690 +4801 11244 0.6190 +4801 23266 0.5080 +4801 26009 0.4110 +4801 28996 0.4200 +4801 29803 0.9830 +4801 51501 0.4930 +4801 53335 0.4900 +4801 54108 0.9240 +4801 55644 0.5530 +4801 56655 0.7720 +4801 57678 0.5040 +4801 64754 0.4020 +4801 79657 0.4550 +4801 79902 0.4140 +4801 80298 0.5520 +4801 112869 0.4180 +4801 140628 0.4970 +4801 245711 0.8150 +4801 387778 0.8150 +4801 388523 0.4530 +4801 100125288 0.4970 +4802 4904 0.5620 +4802 5444 0.6280 +4802 5446 0.7780 +4802 5937 0.4800 +4802 5989 0.6410 +4802 5993 0.7540 +4802 5994 0.7520 +4802 6256 0.4210 +4802 6309 0.5240 +4802 6667 0.7040 +4802 6713 0.5170 +4802 6720 0.5810 +4802 6721 0.6960 +4802 6872 0.4300 +4802 6883 0.7100 +4802 6908 0.7690 +4802 7108 0.5200 +4802 7157 0.7110 +4802 7161 0.7070 +4802 7392 0.4050 +4802 7494 0.6270 +4802 8337 0.5670 +4802 8338 0.5640 +4802 8438 0.4760 +4802 8625 0.8640 +4802 8850 0.4490 +4802 9001 0.9430 +4802 9453 0.7190 +4802 10018 0.5420 +4802 10055 0.5720 +4802 10153 0.8860 +4802 10296 0.4450 +4802 10445 0.5050 +4802 10654 0.5550 +4802 11244 0.7180 +4802 22926 0.4620 +4802 27022 0.4010 +4802 29803 0.9270 +4802 54107 0.9290 +4802 57678 0.5090 +4802 79815 0.4080 +4802 84166 0.4260 +4802 100125288 0.4160 +4803 4804 0.9990 +4803 4842 0.4370 +4803 4851 0.4490 +4803 4852 0.6210 +4803 4893 0.4760 +4803 4902 0.7640 +4803 4905 0.4040 +4803 4907 0.4510 +4803 4908 0.8210 +4803 4909 0.9220 +4803 4914 0.9990 +4803 4915 0.9990 +4803 4922 0.4440 +4803 4923 0.7510 +4803 4929 0.4390 +4803 4953 0.4970 +4803 4988 0.4250 +4803 5015 0.5020 +4803 5024 0.6390 +4803 5029 0.6430 +4803 5045 0.6500 +4803 5046 0.4780 +4803 5054 0.4190 +4803 5125 0.5960 +4803 5155 0.5620 +4803 5156 0.7550 +4803 5159 0.7730 +4803 5175 0.4080 +4803 5228 0.5460 +4803 5290 0.5910 +4803 5291 0.5950 +4803 5295 0.5920 +4803 5296 0.5590 +4803 5327 0.5400 +4803 5335 0.7110 +4803 5340 0.4420 +4803 5443 0.5620 +4803 5468 0.4030 +4803 5566 0.5840 +4803 5567 0.5840 +4803 5568 0.5900 +4803 5584 0.5260 +4803 5594 0.5850 +4803 5595 0.7430 +4803 5598 0.4440 +4803 5599 0.6850 +4803 5604 0.4400 +4803 5623 0.4910 +4803 5663 0.6540 +4803 5664 0.5670 +4803 5697 0.4240 +4803 5728 0.4260 +4803 5743 0.5260 +4803 5788 0.4320 +4803 5816 0.4570 +4803 5906 0.5370 +4803 5921 0.4970 +4803 5970 0.6070 +4803 5979 0.7910 +4803 6014 0.5210 +4803 6016 0.5930 +4803 6233 0.5130 +4803 6272 0.9970 +4803 6285 0.5710 +4803 6300 0.4100 +4803 6320 0.5070 +4803 6335 0.6000 +4803 6336 0.6270 +4803 6347 0.6230 +4803 6348 0.4870 +4803 6351 0.4410 +4803 6354 0.4270 +4803 6356 0.6360 +4803 6374 0.4870 +4803 6376 0.4620 +4803 6387 0.5830 +4803 6456 0.5260 +4803 6464 0.7450 +4803 6469 0.4630 +4803 6506 0.4050 +4803 6513 0.4910 +4803 6531 0.4300 +4803 6572 0.5250 +4803 6610 0.8090 +4803 6616 0.4040 +4803 6622 0.5380 +4803 6647 0.4600 +4803 6654 0.6070 +4803 6663 0.4070 +4803 6670 0.4050 +4803 6714 0.5410 +4803 6750 0.4860 +4803 6774 0.8670 +4803 6853 0.5430 +4803 6855 0.6490 +4803 6863 0.8740 +4803 6869 0.5220 +4803 7010 0.7440 +4803 7039 0.6750 +4803 7040 0.7530 +4803 7042 0.4100 +4803 7054 0.7910 +4803 7070 0.5140 +4803 7075 0.7200 +4803 7076 0.4250 +4803 7088 0.4180 +4803 7099 0.4630 +4803 7124 0.7140 +4803 7132 0.6200 +4803 7133 0.5350 +4803 7157 0.5320 +4803 7170 0.4310 +4803 7180 0.4400 +4803 7189 0.6470 +4803 7252 0.4230 +4803 7299 0.4380 +4803 7311 0.4990 +4803 7314 0.4990 +4803 7316 0.5340 +4803 7345 0.5850 +4803 7425 0.7150 +4803 7432 0.5790 +4803 7442 0.8530 +4803 7529 0.5290 +4803 7531 0.5280 +4803 7832 0.4910 +4803 7837 0.6980 +4803 7852 0.4140 +4803 8013 0.5500 +4803 8518 0.5040 +4803 8660 0.5830 +4803 8767 0.5610 +4803 8817 0.7010 +4803 8822 0.6960 +4803 8823 0.6950 +4803 8851 0.4340 +4803 8878 0.5820 +4803 8989 0.9160 +4803 9048 0.7500 +4803 9241 0.4400 +4803 9311 0.5800 +4803 9423 0.4930 +4803 9500 0.7610 +4803 9622 0.7700 +4803 10018 0.6710 +4803 10314 0.4850 +4803 10321 0.4260 +4803 10330 0.4300 +4803 10371 0.6040 +4803 10381 0.4460 +4803 10500 0.4920 +4803 10763 0.6420 +4803 10818 0.6750 +4803 10850 0.4470 +4803 11108 0.7280 +4803 11151 0.4470 +4803 11280 0.5190 +4803 22953 0.4320 +4803 22986 0.8470 +4803 23095 0.4740 +4803 23385 0.4780 +4803 23421 0.4990 +4803 23621 0.4850 +4803 25759 0.5450 +4803 25970 0.5110 +4803 26281 0.6940 +4803 26574 0.5060 +4803 27006 0.7020 +4803 27018 0.7910 +4803 27352 0.4260 +4803 28986 0.4940 +4803 29895 0.4960 +4803 51083 0.5200 +4803 51107 0.4650 +4803 51393 0.4200 +4803 51806 0.8650 +4803 53358 0.7030 +4803 54205 0.6730 +4803 55851 0.4660 +4803 55859 0.5060 +4803 57142 0.4650 +4803 57498 0.6830 +4803 57537 0.9270 +4803 59341 0.7950 +4803 63916 0.4700 +4803 65078 0.4880 +4803 79006 0.5070 +4803 79054 0.7260 +4803 80031 0.4250 +4803 83464 0.4180 +4803 84707 0.4890 +4803 84894 0.4060 +4803 91860 0.8680 +4803 103910 0.4290 +4803 114815 0.4980 +4803 118813 0.5070 +4803 133396 0.4100 +4803 137902 0.6830 +4803 146713 0.6010 +4803 147040 0.4080 +4803 158471 0.4120 +4803 162514 0.4270 +4803 163688 0.8650 +4803 257202 0.5650 +4803 386653 0.6360 +4803 441549 0.4650 +4803 493869 0.5820 +4803 644168 0.4260 +4803 102723407 0.9070 +4804 4897 0.5420 +4804 4907 0.6680 +4804 4908 0.9990 +4804 4909 0.9990 +4804 4914 0.9990 +4804 4915 0.9900 +4804 4923 0.7010 +4804 4974 0.9380 +4804 5015 0.4910 +4804 5046 0.4040 +4804 5077 0.4120 +4804 5154 0.7140 +4804 5155 0.8180 +4804 5156 0.4770 +4804 5159 0.5200 +4804 5175 0.5080 +4804 5228 0.7220 +4804 5290 0.9120 +4804 5291 0.9040 +4804 5293 0.9000 +4804 5295 0.9100 +4804 5296 0.9060 +4804 5330 0.6500 +4804 5331 0.6600 +4804 5332 0.6500 +4804 5460 0.4480 +4804 5567 0.4470 +4804 5584 0.5130 +4804 5595 0.4180 +4804 5599 0.5920 +4804 5621 0.5140 +4804 5663 0.5650 +4804 5664 0.5120 +4804 5734 0.4290 +4804 5788 0.6120 +4804 5970 0.5810 +4804 6233 0.4990 +4804 6272 0.9990 +4804 6285 0.4970 +4804 6297 0.4210 +4804 6387 0.4290 +4804 6464 0.8380 +4804 6490 0.5740 +4804 6521 0.4680 +4804 6610 0.7910 +4804 6624 0.5410 +4804 6653 0.4210 +4804 6657 0.5570 +4804 6662 0.4620 +4804 6663 0.6450 +4804 6863 0.6050 +4804 6868 0.8040 +4804 7039 0.7070 +4804 7049 0.4040 +4804 7067 0.4530 +4804 7070 0.7050 +4804 7083 0.5140 +4804 7124 0.5310 +4804 7132 0.4890 +4804 7157 0.5800 +4804 7161 0.4370 +4804 7186 0.4730 +4804 7189 0.9880 +4804 7276 0.4980 +4804 7311 0.4990 +4804 7314 0.4990 +4804 7316 0.5170 +4804 7412 0.4510 +4804 7423 0.7310 +4804 7424 0.7440 +4804 7442 0.4230 +4804 7531 0.5350 +4804 7786 0.4330 +4804 7837 0.4290 +4804 7852 0.4490 +4804 8074 0.6550 +4804 8503 0.9020 +4804 8600 0.4800 +4804 8717 0.9530 +4804 8767 0.9930 +4804 8772 0.9230 +4804 8817 0.7620 +4804 8822 0.7620 +4804 8823 0.7580 +4804 8826 0.7510 +4804 8842 0.5920 +4804 8878 0.7620 +4804 8997 0.4450 +4804 9021 0.4100 +4804 9124 0.4330 +4804 9223 0.4490 +4804 9500 0.9840 +4804 9618 0.7460 +4804 9965 0.6810 +4804 10018 0.7220 +4804 10048 0.5730 +4804 10342 0.4080 +4804 10507 0.4140 +4804 10572 0.4200 +4804 10763 0.6410 +4804 10782 0.9090 +4804 10913 0.4130 +4804 11108 0.9120 +4804 11213 0.9060 +4804 11248 0.4780 +4804 23236 0.6500 +4804 23385 0.4640 +4804 23421 0.4990 +4804 23621 0.4820 +4804 25759 0.6890 +4804 26281 0.7620 +4804 26291 0.6730 +4804 26574 0.5260 +4804 27006 0.7580 +4804 27018 0.9910 +4804 27242 0.7620 +4804 28986 0.9020 +4804 51107 0.4600 +4804 51135 0.9020 +4804 51378 0.6680 +4804 53358 0.6950 +4804 55504 0.6250 +4804 55534 0.4080 +4804 55558 0.5130 +4804 55851 0.4690 +4804 55859 0.6490 +4804 56034 0.6830 +4804 57142 0.9770 +4804 57498 0.4750 +4804 57537 0.9390 +4804 65078 0.9980 +4804 65989 0.4020 +4804 79923 0.4760 +4804 80310 0.6770 +4804 84707 0.5000 +4804 84894 0.9990 +4804 124872 0.4260 +4804 137902 0.4270 +4804 340273 0.5820 +4804 386724 0.4760 +4804 399694 0.6690 +4804 100133941 0.4320 +4807 4826 0.4250 +4807 5080 0.4070 +4807 5154 0.4240 +4807 5727 0.4090 +4807 5764 0.4080 +4807 6239 0.4100 +4807 6664 0.4870 +4807 6929 0.5470 +4807 6938 0.4340 +4807 7023 0.4060 +4807 7025 0.4450 +4807 7091 0.4140 +4807 8320 0.5250 +4807 8609 0.5090 +4807 9241 0.4240 +4807 10716 0.5730 +4807 23152 0.5160 +4807 27319 0.5330 +4807 55502 0.4150 +4807 56751 0.4590 +4807 56956 0.7190 +4807 63974 0.5050 +4807 388585 0.4330 +4807 390992 0.4910 +4807 401541 0.4220 +4808 5122 0.5770 +4808 5443 0.4270 +4808 5927 0.4540 +4808 6638 0.4010 +4808 6925 0.4860 +4808 6929 0.5750 +4808 6938 0.4460 +4808 7626 0.4020 +4808 8788 0.4050 +4808 8861 0.7720 +4808 9079 0.7740 +4808 10782 0.4260 +4808 23411 0.4480 +4808 23440 0.5520 +4808 27319 0.4730 +4808 55859 0.8400 +4808 55885 0.5330 +4808 57084 0.4110 +4808 63973 0.4370 +4808 63974 0.4690 +4808 84707 0.8390 +4808 340260 0.4040 +4809 4839 0.5260 +4809 4869 0.5650 +4809 5036 0.6690 +4809 5313 0.4970 +4809 5315 0.5050 +4809 5393 0.7330 +4809 5394 0.9480 +4809 5411 0.4200 +4809 5432 0.4280 +4809 5434 0.6770 +4809 5435 0.6440 +4809 5437 0.6760 +4809 5441 0.4820 +4809 5469 0.7750 +4809 5511 0.5420 +4809 5591 0.5820 +4809 5594 0.4970 +4809 5682 0.4060 +4809 5707 0.7730 +4809 5717 0.4180 +4809 5822 0.9880 +4809 5859 0.4900 +4809 5901 0.5110 +4809 6059 0.6090 +4809 6122 0.7590 +4809 6123 0.6870 +4809 6124 0.7850 +4809 6125 0.9000 +4809 6128 0.7860 +4809 6129 0.7560 +4809 6132 0.7520 +4809 6133 0.8390 +4809 6135 0.9190 +4809 6136 0.7310 +4809 6137 0.8530 +4809 6138 0.8690 +4809 6139 0.7160 +4809 6141 0.8890 +4809 6142 0.8570 +4809 6143 0.8920 +4809 6144 0.8600 +4809 6146 0.6830 +4809 6147 0.8920 +4809 6152 0.8640 +4809 6154 0.7060 +4809 6155 0.7550 +4809 6156 0.9190 +4809 6157 0.5950 +4809 6158 0.7500 +4809 6159 0.7820 +4809 6160 0.8710 +4809 6161 0.5840 +4809 6164 0.8580 +4809 6165 0.8520 +4809 6166 0.6880 +4809 6167 0.4170 +4809 6168 0.8770 +4809 6169 0.7260 +4809 6170 0.6180 +4809 6173 0.6730 +4809 6175 0.8640 +4809 6176 0.8220 +4809 6181 0.8100 +4809 6183 0.7910 +4809 6187 0.9030 +4809 6188 0.9160 +4809 6189 0.9950 +4809 6191 0.9720 +4809 6192 0.7920 +4809 6193 0.9960 +4809 6194 0.9970 +4809 6201 0.9960 +4809 6202 0.9960 +4809 6203 0.9970 +4809 6204 0.7680 +4809 6205 0.9960 +4809 6206 0.9440 +4809 6207 0.9960 +4809 6208 0.9900 +4809 6209 0.8780 +4809 6210 0.9790 +4809 6217 0.9920 +4809 6218 0.9620 +4809 6222 0.9920 +4809 6223 0.9920 +4809 6224 0.8520 +4809 6227 0.7610 +4809 6228 0.9980 +4809 6229 0.9950 +4809 6230 0.7840 +4809 6231 0.7930 +4809 6232 0.9820 +4809 6233 0.9380 +4809 6234 0.9950 +4809 6235 0.6870 +4809 6414 0.4870 +4809 6426 0.5440 +4809 6430 0.4090 +4809 6432 0.4890 +4809 6434 0.5620 +4809 6625 0.9360 +4809 6626 0.9740 +4809 6627 0.9930 +4809 6628 0.9920 +4809 6629 0.9940 +4809 6631 0.9030 +4809 6632 0.9940 +4809 6633 0.9960 +4809 6634 0.9980 +4809 6635 0.9950 +4809 6636 0.9960 +4809 6637 0.9950 +4809 6638 0.9650 +4809 6726 0.4050 +4809 6727 0.5490 +4809 6728 0.5090 +4809 6729 0.5380 +4809 6730 0.5340 +4809 6741 0.5320 +4809 6742 0.6290 +4809 6950 0.4860 +4809 7015 0.5810 +4809 7178 0.5930 +4809 7311 0.7410 +4809 7314 0.4130 +4809 7329 0.6830 +4809 7514 0.4190 +4809 7520 0.6290 +4809 7536 0.5320 +4809 7737 0.9180 +4809 7784 0.7630 +4809 7919 0.6840 +4809 8106 0.4100 +4809 8161 0.4710 +4809 8175 0.9910 +4809 8243 0.6300 +4809 8449 0.9310 +4809 8508 0.6010 +4809 8559 0.6410 +4809 8562 0.5740 +4809 8568 0.7390 +4809 8602 0.9720 +4809 8607 0.8930 +4809 8634 0.6130 +4809 8638 0.4340 +4809 8661 0.5850 +4809 8662 0.6250 +4809 8663 0.5630 +4809 8664 0.5710 +4809 8666 0.5110 +4809 8667 0.4270 +4809 8668 0.6680 +4809 8669 0.4220 +4809 8721 0.4630 +4809 8833 0.5530 +4809 8886 0.6360 +4809 8894 0.6260 +4809 8896 0.4100 +4809 8899 0.8530 +4809 9045 0.7310 +4809 9086 0.6370 +4809 9092 0.9990 +4809 9128 0.9990 +4809 9129 0.9990 +4809 9136 0.9990 +4809 9141 0.6500 +4809 9188 0.4740 +4809 9221 0.8500 +4809 9277 0.9930 +4809 9326 0.8910 +4809 9343 0.9980 +4809 9349 0.8790 +4809 9410 0.9670 +4809 9416 0.9910 +4809 9533 0.6420 +4809 9552 0.4110 +4809 9584 0.6340 +4809 9669 0.7020 +4809 9724 0.9350 +4809 9733 0.7400 +4809 9775 0.5550 +4809 9790 0.9950 +4809 9858 0.6540 +4809 9879 0.4440 +4809 9978 0.5200 +4809 10084 0.5020 +4809 10153 0.5010 +4809 10171 0.9890 +4809 10179 0.5210 +4809 10189 0.4320 +4809 10199 0.9980 +4809 10200 0.4600 +4809 10204 0.4310 +4809 10209 0.6140 +4809 10212 0.5080 +4809 10213 0.4450 +4809 10236 0.5330 +4809 10248 0.7320 +4809 10262 0.9920 +4809 10283 0.9160 +4809 10284 0.6870 +4809 10289 0.5920 +4809 10291 0.9940 +4809 10361 0.4470 +4809 10399 0.7750 +4809 10412 0.7630 +4809 10436 0.9960 +4809 10438 0.7900 +4809 10465 0.9990 +4809 10473 0.6200 +4809 10480 0.4620 +4809 10492 0.4660 +4809 10514 0.4510 +4809 10528 0.9990 +4809 10556 0.8700 +4809 10557 0.4590 +4809 10575 0.4650 +4809 10594 0.9970 +4809 10607 0.9950 +4809 10658 0.4660 +4809 10694 0.4540 +4809 10713 0.9800 +4809 10775 0.5750 +4809 10785 0.5130 +4809 10799 0.5740 +4809 10813 0.9900 +4809 10856 0.8690 +4809 10885 0.9940 +4809 10898 0.4120 +4809 10907 0.9940 +4809 10921 0.7520 +4809 10940 0.7210 +4809 10946 0.9930 +4809 10949 0.4140 +4809 10952 0.4710 +4809 10969 0.7350 +4809 10985 0.4680 +4809 10988 0.4820 +4809 10992 0.9910 +4809 11017 0.9200 +4809 11066 0.5410 +4809 11103 0.9950 +4809 11157 0.9970 +4809 11180 0.8270 +4809 11193 0.9810 +4809 11222 0.7010 +4809 11224 0.8560 +4809 11340 0.7910 +4809 22803 0.4800 +4809 22826 0.5610 +4809 22894 0.4270 +4809 22916 0.4980 +4809 22927 0.4970 +4809 22938 0.7940 +4809 22984 0.9860 +4809 22985 0.5390 +4809 23016 0.7840 +4809 23020 0.9990 +4809 23054 0.7330 +4809 23076 0.6760 +4809 23148 0.4410 +4809 23160 0.9960 +4809 23173 0.4820 +4809 23204 0.7770 +4809 23212 0.6440 +4809 23223 0.4650 +4809 23246 0.8550 +4809 23378 0.4240 +4809 23404 0.7690 +4809 23435 0.4190 +4809 23450 0.9940 +4809 23451 0.9920 +4809 23480 0.4470 +4809 23481 0.8680 +4809 23517 0.8440 +4809 23521 0.7310 +4809 23524 0.9010 +4809 23560 0.6690 +4809 23640 0.6020 +4809 23658 0.9960 +4809 24140 0.5380 +4809 24148 0.9990 +4809 25804 0.9930 +4809 25842 0.7930 +4809 25873 0.7950 +4809 25879 0.9920 +4809 25926 0.9290 +4809 25980 0.6020 +4809 25983 0.9920 +4809 26099 0.5110 +4809 26121 0.9990 +4809 26135 0.5160 +4809 26155 0.6220 +4809 26156 0.8930 +4809 26168 0.5350 +4809 26240 0.4800 +4809 26354 0.6670 +4809 26519 0.4280 +4809 26574 0.9930 +4809 26576 0.4160 +4809 26747 0.9650 +4809 26995 0.6840 +4809 27042 0.7010 +4809 27043 0.5910 +4809 27127 0.6360 +4809 27258 0.9980 +4809 27292 0.9390 +4809 27316 0.4340 +4809 27335 0.5180 +4809 27336 0.5520 +4809 27339 0.5370 +4809 27340 0.9950 +4809 27341 0.9940 +4809 27430 0.4360 +4809 28987 0.4080 +4809 28998 0.6850 +4809 29088 0.5140 +4809 29093 0.7090 +4809 29102 0.4590 +4809 29927 0.4360 +4809 29960 0.5780 +4809 29979 0.4060 +4809 29997 0.4050 +4809 30836 0.9830 +4809 51010 0.7420 +4809 51013 0.8150 +4809 51018 0.4700 +4809 51042 0.4730 +4809 51065 0.9080 +4809 51068 0.6190 +4809 51069 0.6930 +4809 51073 0.6860 +4809 51077 0.9950 +4809 51081 0.7190 +4809 51082 0.5920 +4809 51096 0.9970 +4809 51116 0.6380 +4809 51118 0.9960 +4809 51119 0.6140 +4809 51121 0.6700 +4809 51149 0.7440 +4809 51154 0.9060 +4809 51187 0.8360 +4809 51202 0.4870 +4809 51319 0.4380 +4809 51367 0.8360 +4809 51386 0.5220 +4809 51388 0.9140 +4809 51406 0.8140 +4809 51491 0.4970 +4809 51504 0.4140 +4809 51574 0.4220 +4809 51602 0.9990 +4809 51634 0.9510 +4809 51637 0.4130 +4809 51639 0.8700 +4809 51690 0.9980 +4809 51691 0.9930 +4809 51729 0.4290 +4809 51747 0.5350 +4809 54433 0.9650 +4809 54475 0.4350 +4809 54512 0.7830 +4809 54517 0.5170 +4809 54552 0.5150 +4809 54555 0.4170 +4809 54606 0.5580 +4809 54663 0.5800 +4809 54680 0.6640 +4809 54865 0.7920 +4809 54881 0.6350 +4809 54913 0.7350 +4809 54948 0.6080 +4809 54957 0.7910 +4809 54960 0.4150 +4809 54984 0.9620 +4809 55011 0.8390 +4809 55110 0.9490 +4809 55127 0.9970 +4809 55131 0.5350 +4809 55164 0.6250 +4809 55173 0.7920 +4809 55176 0.4150 +4809 55226 0.9920 +4809 55234 0.9830 +4809 55272 0.9940 +4809 55299 0.8260 +4809 55316 0.6740 +4809 55422 0.4420 +4809 55505 0.9940 +4809 55591 0.4680 +4809 55599 0.4650 +4809 55651 0.9920 +4809 55692 0.4370 +4809 55695 0.4130 +4809 55723 0.7910 +4809 55749 0.5070 +4809 55759 0.8420 +4809 55781 0.4740 +4809 55813 0.9940 +4809 56257 0.4460 +4809 56648 0.6130 +4809 56902 0.9560 +4809 56915 0.7950 +4809 56965 0.4970 +4809 57050 0.9940 +4809 57062 0.5600 +4809 57418 0.8000 +4809 57647 0.8490 +4809 57683 0.4230 +4809 57703 0.9130 +4809 57794 0.5260 +4809 57819 0.9930 +4809 59286 0.9010 +4809 60678 0.5680 +4809 63922 0.5390 +4809 63931 0.6810 +4809 63932 0.6000 +4809 64216 0.4980 +4809 64318 0.5410 +4809 64374 0.6000 +4809 64779 0.8190 +4809 64960 0.6560 +4809 64963 0.6700 +4809 64969 0.7160 +4809 65003 0.6410 +4809 65008 0.7030 +4809 65083 0.9920 +4809 65121 0.4960 +4809 65122 0.4960 +4809 79048 0.6080 +4809 79050 0.9960 +4809 79159 0.5890 +4809 79171 0.9260 +4809 79571 0.7350 +4809 79590 0.6790 +4809 79631 0.7010 +4809 79657 0.5960 +4809 79668 0.4970 +4809 79707 0.5650 +4809 79753 0.9500 +4809 79897 0.5140 +4809 79954 0.9910 +4809 80119 0.5690 +4809 80135 0.6070 +4809 80324 0.4650 +4809 81887 0.5550 +4809 83443 0.9910 +4809 83743 0.5020 +4809 84128 0.9950 +4809 84135 0.9990 +4809 84154 0.6090 +4809 84294 0.8090 +4809 84365 0.8400 +4809 84549 0.5670 +4809 84618 0.5300 +4809 84811 0.9520 +4809 84844 0.9920 +4809 84916 0.9980 +4809 84946 0.5810 +4809 84950 0.9850 +4809 84967 0.4800 +4809 85476 0.6820 +4809 88745 0.7540 +4809 90121 0.4970 +4809 91408 0.4630 +4809 91582 0.8250 +4809 92196 0.4280 +4809 92345 0.8300 +4809 92856 0.9940 +4809 93034 0.5300 +4809 113444 0.8050 +4809 114987 0.6960 +4809 116832 0.5630 +4809 117246 0.7620 +4809 118460 0.6340 +4809 121053 0.4980 +4809 124245 0.4860 +4809 124454 0.4790 +4809 126402 0.6960 +4809 128061 0.8000 +4809 138716 0.5780 +4809 140032 0.7920 +4809 140801 0.6330 +4809 142940 0.8000 +4809 143244 0.6130 +4809 146212 0.4530 +4809 153527 0.9940 +4809 200916 0.6580 +4809 201595 0.4230 +4809 221830 0.4780 +4809 253769 0.4900 +4809 255308 0.5190 +4809 266743 0.6770 +4809 284325 0.5400 +4809 285855 0.6580 +4809 317781 0.4510 +4809 342538 0.4010 +4809 343068 0.4960 +4809 343070 0.4960 +4809 345630 0.9840 +4809 347487 0.6110 +4809 387129 0.6510 +4809 390999 0.4960 +4809 391002 0.4960 +4809 400735 0.4960 +4809 400736 0.4960 +4809 440560 0.4960 +4809 440561 0.4960 +4809 441873 0.4960 +4809 641776 0.5640 +4809 642843 0.7200 +4809 643909 0.5640 +4809 645051 0.5380 +4809 645073 0.5380 +4809 645359 0.4960 +4809 653619 0.4960 +4809 728524 0.5640 +4809 728689 0.5510 +4809 729396 0.5380 +4809 729422 0.5380 +4809 729428 0.5380 +4809 729431 0.5380 +4809 729442 0.5380 +4809 729447 0.5380 +4809 729528 0.4960 +4809 100008586 0.5380 +4809 100101490 0.4770 +4809 100132399 0.5380 +4809 100287482 0.6110 +4809 100505478 0.6510 +4809 100526794 0.5300 +4809 100526842 0.6760 +4809 100529097 0.6530 +4809 100529239 0.6980 +4809 100996746 0.5640 +4809 101929983 0.4960 +4809 102724473 0.5380 +4809 105180390 0.5640 +4809 105180391 0.5640 +4810 5058 0.4330 +4810 5062 0.4250 +4810 5290 0.4260 +4810 5295 0.4350 +4810 5296 0.4350 +4810 5338 0.4020 +4810 5493 0.4360 +4810 5879 0.5780 +4810 5880 0.5730 +4810 5881 0.5980 +4810 6342 0.5470 +4810 6792 0.7300 +4810 7037 0.4110 +4810 8440 0.4840 +4810 8503 0.4350 +4810 8826 0.4390 +4810 9321 0.4620 +4810 9341 0.4070 +4810 9815 0.4050 +4810 10006 0.5530 +4810 10152 0.6950 +4810 10163 0.4700 +4810 10298 0.4250 +4810 10742 0.9580 +4810 10787 0.7940 +4810 23191 0.4240 +4810 25894 0.4510 +4810 26030 0.4150 +4810 26050 0.4360 +4810 27189 0.5570 +4810 28964 0.4050 +4810 55789 0.4100 +4810 55845 0.6750 +4810 55914 0.4490 +4810 57534 0.5100 +4810 57648 0.5200 +4810 81624 0.4190 +4810 81839 0.4010 +4810 143098 0.4680 +4811 4868 0.4760 +4811 4948 0.4430 +4811 5159 0.5500 +4811 5328 0.6480 +4811 5329 0.5940 +4811 5792 0.4520 +4811 6382 0.4940 +4811 6442 0.4170 +4811 6443 0.4250 +4811 6445 0.4070 +4811 6678 0.8150 +4811 6975 0.7420 +4811 7007 0.4420 +4811 7040 0.5700 +4811 7042 0.4230 +4811 7057 0.5110 +4811 7075 0.4140 +4811 7143 0.4240 +4811 7373 0.5960 +4811 7399 0.4990 +4811 7402 0.4880 +4811 7448 0.9960 +4811 7450 0.5690 +4811 7455 0.8440 +4811 8817 0.5460 +4811 8822 0.5410 +4811 8823 0.5540 +4811 9068 0.4110 +4811 9378 0.4210 +4811 9436 0.9530 +4811 9437 0.5160 +4811 9900 0.4790 +4811 10319 0.8650 +4811 10488 0.4050 +4811 10585 0.4450 +4811 10631 0.4750 +4811 10675 0.4470 +4811 11117 0.6550 +4811 22795 0.9160 +4811 22915 0.5760 +4811 23435 0.4900 +4811 23767 0.5500 +4811 23768 0.6020 +4811 23769 0.5970 +4811 26281 0.5520 +4811 27006 0.5490 +4811 29954 0.4240 +4811 51019 0.4020 +4811 51378 0.4560 +4811 55624 0.4730 +4811 63923 0.5890 +4811 64093 0.4390 +4811 79147 0.4510 +4811 80781 0.6070 +4811 90070 0.8000 +4811 133584 0.4520 +4811 151887 0.4170 +4811 170690 0.4430 +4811 284217 0.8370 +4811 375790 0.9850 +4814 5714 0.9400 +4814 28987 0.9680 +4814 79792 0.4770 +4815 5144 0.5950 +4815 5308 0.4180 +4815 5583 0.6390 +4815 9546 0.4440 +4815 9935 0.4290 +4815 10100 0.4060 +4815 10346 0.4130 +4815 23136 0.4860 +4815 23767 0.4560 +4815 55351 0.4760 +4815 64838 0.4520 +4815 65125 0.4750 +4815 84283 0.4300 +4815 95681 0.4070 +4815 136332 0.4330 +4815 222008 0.4250 +4815 283953 0.4850 +4815 414919 0.4460 +4815 654429 0.4340 +4817 4907 0.4300 +4817 6611 0.4730 +4817 6723 0.5280 +4817 7156 0.4070 +4817 9191 0.6010 +4817 9349 0.4200 +4817 23057 0.4050 +4817 23475 0.4950 +4817 26873 0.4690 +4817 51567 0.4120 +4817 55256 0.4030 +4817 55270 0.4750 +4817 55278 0.4260 +4817 64802 0.4210 +4817 64850 0.4150 +4817 64902 0.4150 +4817 79085 0.4110 +4817 85007 0.4420 +4817 123688 0.4460 +4817 126328 0.6400 +4817 139760 0.4180 +4817 349565 0.4050 +4817 100131187 0.4580 +4818 5133 0.5700 +4818 5341 0.4090 +4818 5473 0.4340 +4818 5551 0.9330 +4818 5699 0.5080 +4818 5788 0.5330 +4818 5790 0.5600 +4818 5996 0.4880 +4818 6348 0.4060 +4818 6351 0.5890 +4818 6375 0.5470 +4818 6402 0.4180 +4818 6772 0.4040 +4818 6804 0.4870 +4818 6846 0.6010 +4818 6932 0.5360 +4818 7305 0.6380 +4818 7535 0.4580 +4818 8320 0.6740 +4818 8530 0.9000 +4818 8807 0.5510 +4818 9235 0.4250 +4818 9437 0.5150 +4818 10219 0.6300 +4818 10225 0.4520 +4818 10398 0.4300 +4818 10462 0.4030 +4818 10537 0.4510 +4818 10563 0.4120 +4818 10578 0.9510 +4818 10663 0.6600 +4818 10870 0.6380 +4818 11126 0.5400 +4818 11151 0.4460 +4818 11314 0.4030 +4818 22914 0.6130 +4818 23547 0.4190 +4818 26253 0.5990 +4818 29851 0.5040 +4818 30009 0.6620 +4818 50943 0.4460 +4818 51176 0.4380 +4818 51237 0.5150 +4818 51348 0.6700 +4818 51744 0.5430 +4818 53637 0.4710 +4818 54440 0.4340 +4818 57823 0.4120 +4818 83888 0.7700 +4818 84868 0.5010 +4818 117289 0.5080 +4818 201633 0.6500 +4818 257101 0.6160 +4818 259197 0.4860 +4818 343413 0.4610 +4820 5303 0.6990 +4820 5335 0.4300 +4820 5411 0.5180 +4820 5601 0.5540 +4820 6427 0.5710 +4820 6633 0.4140 +4820 6636 0.4110 +4820 6651 0.4010 +4820 7248 0.6100 +4820 7268 0.5040 +4820 7292 0.4050 +4820 7818 0.4280 +4820 9221 0.6280 +4820 9295 0.8030 +4820 9349 0.4620 +4820 9406 0.4270 +4820 9584 0.4470 +4820 10131 0.5970 +4820 10142 0.4890 +4820 10180 0.4230 +4820 10181 0.6900 +4820 10443 0.5040 +4820 10521 0.4330 +4820 10598 0.8080 +4820 10728 0.7300 +4820 10963 0.7530 +4820 11080 0.5630 +4820 11222 0.5080 +4820 22919 0.5400 +4820 23215 0.4560 +4820 23264 0.4190 +4820 23331 0.4180 +4820 23360 0.4960 +4820 23451 0.4350 +4820 23640 0.4720 +4820 25822 0.5500 +4820 25836 0.5070 +4820 25957 0.8750 +4820 26036 0.4910 +4820 26589 0.4590 +4820 27332 0.4400 +4820 27339 0.4460 +4820 28998 0.5090 +4820 29066 0.4340 +4820 29083 0.4010 +4820 29126 0.4040 +4820 51069 0.4540 +4820 51747 0.5800 +4820 54970 0.4180 +4820 55082 0.4110 +4820 55178 0.4220 +4820 55692 0.5410 +4820 55884 0.4730 +4820 55904 0.4140 +4820 57129 0.5090 +4820 57509 0.4070 +4820 57541 0.5370 +4820 58517 0.5890 +4820 63875 0.4660 +4820 64374 0.6470 +4820 65003 0.4940 +4820 79590 0.4860 +4820 79753 0.6390 +4820 80221 0.4900 +4820 80777 0.4210 +4820 81570 0.4620 +4820 84502 0.4470 +4820 84545 0.4560 +4820 84705 0.4180 +4820 92170 0.4440 +4820 96459 0.5610 +4820 112476 0.4090 +4820 115416 0.4200 +4820 124637 0.4210 +4820 132320 0.4010 +4820 140890 0.4320 +4820 196441 0.4770 +4820 219927 0.4820 +4820 254048 0.5880 +4820 374407 0.5500 +4820 493860 0.4320 +4820 100885848 0.5090 +4820 100885850 0.5090 +4821 4825 0.5710 +4821 5015 0.5540 +4821 5076 0.6010 +4821 5077 0.5860 +4821 5078 0.8890 +4821 5080 0.8800 +4821 5081 0.6500 +4821 5122 0.4490 +4821 5126 0.4390 +4821 5156 0.5950 +4821 5354 0.5150 +4821 5449 0.5290 +4821 5454 0.6740 +4821 5455 0.6310 +4821 5456 0.4800 +4821 5457 0.4670 +4821 5539 0.7500 +4821 5629 0.4360 +4821 5727 0.5270 +4821 6469 0.8210 +4821 6492 0.5110 +4821 6496 0.4550 +4821 6514 0.7550 +4821 6608 0.5230 +4821 6656 0.5900 +4821 6657 0.6000 +4821 6658 0.4700 +4821 6662 0.6320 +4821 6663 0.7480 +4821 6664 0.4330 +4821 6750 0.7550 +4821 6833 0.5780 +4821 6887 0.4090 +4821 6934 0.4070 +4821 7088 0.4450 +4821 7090 0.9750 +4821 8022 0.5690 +4821 8403 0.5200 +4821 8646 0.4900 +4821 8861 0.5030 +4821 9079 0.4800 +4821 9355 0.4460 +4821 9935 0.6230 +4821 10215 0.8850 +4821 10763 0.5060 +4821 11166 0.4730 +4821 23040 0.7050 +4821 27319 0.4580 +4821 28514 0.4540 +4821 30812 0.4830 +4821 50674 0.9530 +4821 51124 0.4040 +4821 51738 0.4760 +4821 54738 0.4670 +4821 63973 0.6270 +4821 64211 0.4050 +4821 64321 0.5410 +4821 64843 0.4610 +4821 79190 0.7450 +4821 79191 0.7580 +4821 84504 0.5640 +4821 114131 0.4210 +4821 116448 0.8280 +4821 153572 0.4270 +4821 157848 0.4300 +4821 167826 0.6120 +4821 169792 0.5340 +4821 222546 0.6970 +4821 256297 0.7170 +4821 338917 0.4990 +4821 388585 0.4480 +4821 389692 0.4830 +4821 644524 0.4360 +4824 5460 0.4660 +4824 5728 0.7850 +4824 6041 0.4720 +4824 6294 0.4200 +4824 6657 0.5650 +4824 6690 0.5180 +4824 6722 0.4270 +4824 6774 0.5150 +4824 6855 0.4480 +4824 7113 0.7220 +4824 7150 0.5760 +4824 7157 0.5420 +4824 7528 0.4930 +4824 8000 0.4470 +4824 8031 0.4200 +4824 8405 0.5710 +4824 8515 0.4320 +4824 8600 0.4340 +4824 8644 0.4080 +4824 8928 0.4390 +4824 9314 0.5040 +4824 10000 0.9430 +4824 10210 0.4930 +4824 23300 0.4240 +4824 23600 0.5830 +4824 25803 0.8800 +4824 56937 0.5070 +4824 64077 0.4230 +4824 79098 0.5470 +4824 85414 0.6300 +4824 157848 0.4580 +4824 338661 0.4380 +4825 5048 0.4240 +4825 5075 0.4510 +4825 5078 0.4660 +4825 5080 0.4690 +4825 5122 0.5820 +4825 5126 0.5830 +4825 5456 0.5030 +4825 5460 0.4840 +4825 5500 0.4380 +4825 5539 0.7070 +4825 5649 0.5080 +4825 6469 0.6220 +4825 6514 0.8620 +4825 6585 0.7310 +4825 6586 0.6830 +4825 6656 0.5480 +4825 6657 0.4900 +4825 6662 0.6570 +4825 6750 0.7180 +4825 6833 0.5960 +4825 6927 0.6390 +4825 6928 0.5230 +4825 7090 0.7640 +4825 7091 0.5640 +4825 8022 0.6280 +4825 9241 0.4400 +4825 9353 0.6670 +4825 9935 0.8130 +4825 10215 0.6890 +4825 10763 0.6620 +4825 50674 0.8850 +4825 51738 0.5350 +4825 57818 0.4680 +4825 63973 0.5450 +4825 64321 0.6300 +4825 64843 0.5200 +4825 79190 0.5450 +4825 79191 0.5940 +4825 83648 0.4220 +4825 114131 0.6530 +4825 116448 0.4240 +4825 153572 0.5470 +4825 169026 0.5600 +4825 169792 0.4940 +4825 222546 0.8010 +4825 256297 0.7950 +4825 257177 0.4470 +4825 389692 0.6700 +4826 5002 0.5170 +4826 5178 0.6310 +4826 5325 0.7050 +4826 5730 0.4090 +4826 5745 0.5560 +4826 5764 0.4120 +4826 5923 0.4800 +4826 6638 0.6570 +4826 7022 0.4430 +4826 7262 0.4610 +4826 8788 0.5910 +4826 8910 0.6900 +4826 9077 0.4410 +4826 10904 0.9680 +4826 23089 0.7000 +4826 23619 0.4740 +4826 27289 0.4200 +4826 51666 0.4540 +4826 54551 0.4650 +4826 55089 0.4760 +4826 55970 0.4600 +4826 57683 0.4500 +4826 132204 0.4030 +4826 137970 0.4190 +4826 148281 0.4150 +4826 266812 0.6900 +4826 378884 0.5510 +4826 388015 0.4040 +4826 100101490 0.5710 +4828 4829 0.9990 +4828 4852 0.4350 +4828 4922 0.6850 +4828 4923 0.5620 +4828 5173 0.4760 +4828 5330 0.5490 +4828 5331 0.5570 +4828 5367 0.5000 +4828 5697 0.4590 +4828 5816 0.4440 +4828 6301 0.4880 +4828 6442 0.6730 +4828 6750 0.5090 +4828 6863 0.5740 +4828 6869 0.5480 +4828 7099 0.7470 +4828 7200 0.6340 +4828 7201 0.5830 +4828 7204 0.4990 +4828 7857 0.4330 +4828 8518 0.6300 +4828 8620 0.5130 +4828 8910 0.6760 +4828 8997 0.4990 +4828 9002 0.4990 +4828 10316 0.6470 +4828 10800 0.5070 +4828 10874 0.6720 +4828 10887 0.5110 +4828 10911 0.4200 +4828 11103 0.5180 +4828 23236 0.5120 +4828 23587 0.6290 +4828 23620 0.5210 +4828 26610 0.4430 +4828 27344 0.4480 +4828 28987 0.5840 +4828 51083 0.4970 +4828 51284 0.4380 +4828 51738 0.5430 +4828 54938 0.4880 +4828 55140 0.7040 +4828 56923 0.5780 +4828 57105 0.4990 +4828 57113 0.5070 +4828 60675 0.4130 +4828 84539 0.4990 +4828 84634 0.5340 +4828 84942 0.4250 +4828 90353 0.4020 +4828 114625 0.4160 +4828 115557 0.4990 +4828 117579 0.4090 +4828 128674 0.4990 +4828 129521 0.7620 +4828 256933 0.4760 +4828 257313 0.4480 +4828 347148 0.4330 +4828 374395 0.4880 +4828 387129 0.7070 +4828 594857 0.6180 +4829 4914 0.4610 +4829 4922 0.7160 +4829 4923 0.4570 +4829 5330 0.5180 +4829 5331 0.5330 +4829 5367 0.5920 +4829 5832 0.4950 +4829 7099 0.7740 +4829 7200 0.5980 +4829 7201 0.4860 +4829 7204 0.4990 +4829 8997 0.5000 +4829 9002 0.4310 +4829 10316 0.4710 +4829 10874 0.6030 +4829 10887 0.4630 +4829 10911 0.5970 +4829 23236 0.5360 +4829 23620 0.4770 +4829 51284 0.4410 +4829 51738 0.5560 +4829 56923 0.4810 +4829 57105 0.4010 +4829 60675 0.5400 +4829 80834 0.4390 +4829 83756 0.4270 +4829 84432 0.5760 +4829 84539 0.5090 +4829 84634 0.4230 +4829 115557 0.4990 +4829 128674 0.4250 +4829 129521 0.6650 +4829 257313 0.5090 +4829 387129 0.4990 +4829 390260 0.4280 +4829 594857 0.5930 +4830 4831 0.9950 +4830 4832 0.9890 +4830 4833 0.9840 +4830 4881 0.6630 +4830 4882 0.6630 +4830 5037 0.5390 +4830 5052 0.5300 +4830 5167 0.9310 +4830 5169 0.9280 +4830 5223 0.4350 +4830 5245 0.6040 +4830 5290 0.4930 +4830 5313 0.9140 +4830 5315 0.9230 +4830 5464 0.4680 +4830 5478 0.4460 +4830 5562 0.4200 +4830 5641 0.5150 +4830 5686 0.4110 +4830 5868 0.5590 +4830 5901 0.5760 +4830 6095 0.4360 +4830 6102 0.5830 +4830 6122 0.5080 +4830 6123 0.4540 +4830 6124 0.5200 +4830 6125 0.4020 +4830 6128 0.4270 +4830 6133 0.4680 +4830 6135 0.4400 +4830 6137 0.4030 +4830 6139 0.4050 +4830 6141 0.4020 +4830 6147 0.4090 +4830 6152 0.4400 +4830 6154 0.4500 +4830 6175 0.4290 +4830 6182 0.5410 +4830 6183 0.6240 +4830 6187 0.5250 +4830 6188 0.5290 +4830 6189 0.4910 +4830 6193 0.5590 +4830 6194 0.5920 +4830 6202 0.4120 +4830 6203 0.4320 +4830 6205 0.4120 +4830 6207 0.5820 +4830 6208 0.5090 +4830 6209 0.4030 +4830 6217 0.5010 +4830 6222 0.4850 +4830 6224 0.6220 +4830 6228 0.5980 +4830 6234 0.4730 +4830 6235 0.4730 +4830 6240 0.8460 +4830 6241 0.7960 +4830 6391 0.4980 +4830 6416 0.4350 +4830 6418 0.9120 +4830 6647 0.5620 +4830 6790 0.4720 +4830 7001 0.4400 +4830 7013 0.5020 +4830 7074 0.9650 +4830 7157 0.5980 +4830 7167 0.5920 +4830 7203 0.4770 +4830 7276 0.4810 +4830 7284 0.4760 +4830 7295 0.4470 +4830 8125 0.9780 +4830 8382 0.4200 +4830 8624 0.5030 +4830 8655 0.6740 +4830 8668 0.4120 +4830 8801 0.4070 +4830 8833 0.4170 +4830 8844 0.5850 +4830 8988 0.4790 +4830 9270 0.7170 +4830 9349 0.5050 +4830 9533 0.6170 +4830 9553 0.4410 +4830 9583 0.6590 +4830 9588 0.4980 +4830 9858 0.5250 +4830 10201 0.9290 +4830 10399 0.4030 +4830 10476 0.4300 +4830 10549 0.4560 +4830 10551 0.5100 +4830 10574 0.4890 +4830 10575 0.4020 +4830 10576 0.5900 +4830 10606 0.4520 +4830 11171 0.8970 +4830 11214 0.5740 +4830 11222 0.6000 +4830 11277 0.6740 +4830 11315 0.5340 +4830 22948 0.4530 +4830 22984 0.5660 +4830 23028 0.4810 +4830 23095 0.4040 +4830 23521 0.4910 +4830 23640 0.4010 +4830 25824 0.5100 +4830 25855 0.6500 +4830 25873 0.4110 +4830 26040 0.4580 +4830 26261 0.4150 +4830 26289 0.7810 +4830 27089 0.4430 +4830 28957 0.4880 +4830 28973 0.5180 +4830 28998 0.6100 +4830 29085 0.5340 +4830 29088 0.5570 +4830 29093 0.4060 +4830 29922 0.9290 +4830 50484 0.7590 +4830 50808 0.9300 +4830 51021 0.6540 +4830 51023 0.4070 +4830 51073 0.5370 +4830 51081 0.6470 +4830 51116 0.5460 +4830 51121 0.5040 +4830 51149 0.5220 +4830 51154 0.5150 +4830 51258 0.4150 +4830 51264 0.6150 +4830 51373 0.4870 +4830 51649 0.4940 +4830 51650 0.4860 +4830 51727 0.4340 +4830 51807 0.4930 +4830 54460 0.4370 +4830 54948 0.4510 +4830 55052 0.4710 +4830 55093 0.4310 +4830 55173 0.5770 +4830 55316 0.4620 +4830 55651 0.5120 +4830 55811 0.6940 +4830 55885 0.5450 +4830 56474 0.9390 +4830 56648 0.4090 +4830 56945 0.5900 +4830 57045 0.4070 +4830 58497 0.9420 +4830 63875 0.4440 +4830 63931 0.4930 +4830 64949 0.4930 +4830 64951 0.4190 +4830 64960 0.5730 +4830 64963 0.5270 +4830 64965 0.5140 +4830 64968 0.5450 +4830 64969 0.4670 +4830 64979 0.4550 +4830 64983 0.5190 +4830 65003 0.4100 +4830 65005 0.4070 +4830 79077 0.9300 +4830 79590 0.5530 +4830 84284 0.9460 +4830 84312 0.6240 +4830 84545 0.4230 +4830 116986 0.4990 +4830 118487 0.5090 +4830 122481 0.7740 +4830 124583 0.7030 +4830 126402 0.5090 +4830 129607 0.9350 +4830 131870 0.9050 +4830 143244 0.5080 +4830 158067 0.7590 +4830 196883 0.6630 +4830 219927 0.6190 +4830 221264 0.9390 +4830 246243 0.4960 +4830 347487 0.5070 +4830 374659 0.9460 +4830 377841 0.6700 +4830 387103 0.4220 +4830 654364 0.9810 +4830 100287482 0.4930 +4830 102157402 0.7230 +4831 4832 0.9670 +4831 4833 0.9420 +4831 4881 0.6630 +4831 4882 0.6630 +4831 4904 0.5650 +4831 5036 0.5500 +4831 5037 0.5250 +4831 5052 0.4730 +4831 5167 0.9270 +4831 5169 0.9280 +4831 5202 0.4730 +4831 5204 0.4610 +4831 5250 0.4090 +4831 5287 0.5520 +4831 5313 0.9080 +4831 5315 0.9250 +4831 5329 0.4030 +4831 5460 0.4710 +4831 5464 0.4050 +4831 5515 0.5850 +4831 5682 0.5240 +4831 5683 0.5060 +4831 5684 0.5990 +4831 5685 0.4870 +4831 5686 0.6420 +4831 5687 0.7000 +4831 5688 0.5500 +4831 5707 0.4070 +4831 5708 0.4250 +4831 5710 0.4530 +4831 5901 0.5400 +4831 6095 0.4520 +4831 6102 0.5710 +4831 6122 0.6590 +4831 6123 0.4540 +4831 6124 0.7900 +4831 6125 0.5840 +4831 6128 0.6160 +4831 6129 0.4510 +4831 6130 0.5440 +4831 6132 0.5880 +4831 6133 0.6410 +4831 6135 0.5950 +4831 6136 0.6110 +4831 6137 0.6230 +4831 6138 0.5260 +4831 6139 0.5390 +4831 6141 0.5780 +4831 6142 0.5330 +4831 6143 0.4900 +4831 6144 0.4800 +4831 6147 0.4850 +4831 6152 0.5540 +4831 6154 0.6170 +4831 6155 0.6010 +4831 6156 0.5420 +4831 6157 0.5950 +4831 6158 0.4540 +4831 6159 0.4060 +4831 6160 0.5800 +4831 6161 0.4820 +4831 6164 0.5140 +4831 6165 0.5530 +4831 6169 0.5020 +4831 6175 0.6320 +4831 6181 0.5200 +4831 6182 0.4520 +4831 6183 0.5980 +4831 6187 0.7290 +4831 6188 0.7390 +4831 6189 0.6850 +4831 6191 0.5580 +4831 6193 0.6170 +4831 6194 0.5640 +4831 6201 0.4890 +4831 6202 0.6420 +4831 6203 0.6280 +4831 6205 0.5620 +4831 6206 0.4800 +4831 6207 0.6970 +4831 6208 0.5950 +4831 6209 0.4870 +4831 6210 0.4430 +4831 6217 0.7210 +4831 6222 0.6220 +4831 6223 0.4920 +4831 6224 0.7940 +4831 6227 0.4800 +4831 6228 0.6880 +4831 6229 0.4760 +4831 6230 0.5590 +4831 6231 0.4470 +4831 6234 0.5940 +4831 6235 0.5710 +4831 6240 0.8530 +4831 6241 0.7940 +4831 6391 0.4790 +4831 6418 0.4860 +4831 6647 0.5940 +4831 6950 0.5750 +4831 7086 0.4170 +4831 7167 0.5650 +4831 7203 0.5770 +4831 7284 0.4690 +4831 7336 0.4520 +4831 7372 0.4180 +4831 7411 0.4390 +4831 7416 0.4440 +4831 7430 0.4630 +4831 7431 0.4500 +4831 7555 0.6630 +4831 8125 0.4340 +4831 8260 0.4550 +4831 8361 0.5810 +4831 8407 0.4010 +4831 8662 0.5340 +4831 8666 0.5060 +4831 8668 0.6750 +4831 8801 0.5060 +4831 9045 0.5150 +4831 9107 0.4880 +4831 9270 0.8780 +4831 9349 0.5820 +4831 9553 0.4320 +4831 9583 0.6590 +4831 9588 0.4670 +4831 9636 0.4320 +4831 9698 0.4870 +4831 9858 0.5250 +4831 9933 0.6490 +4831 10201 0.9340 +4831 10250 0.4380 +4831 10399 0.6140 +4831 10471 0.4210 +4831 10476 0.4260 +4831 10492 0.4670 +4831 10574 0.6740 +4831 10575 0.6760 +4831 10576 0.7230 +4831 10577 0.4350 +4831 10694 0.6450 +4831 10726 0.4430 +4831 10963 0.6390 +4831 11171 0.5600 +4831 11218 0.4340 +4831 11222 0.5330 +4831 11224 0.4830 +4831 22948 0.5960 +4831 22984 0.5970 +4831 23028 0.4750 +4831 23369 0.4890 +4831 23521 0.6250 +4831 25873 0.5450 +4831 25914 0.4280 +4831 26289 0.7960 +4831 28957 0.4030 +4831 28973 0.4970 +4831 28998 0.5510 +4831 29085 0.8110 +4831 29088 0.4730 +4831 29922 0.9180 +4831 50484 0.8180 +4831 50808 0.9350 +4831 51021 0.6180 +4831 51023 0.4020 +4831 51073 0.5000 +4831 51081 0.5850 +4831 51116 0.5460 +4831 51121 0.4500 +4831 51149 0.5280 +4831 51176 0.4260 +4831 51264 0.5470 +4831 51373 0.4260 +4831 51649 0.4360 +4831 51650 0.4300 +4831 51727 0.4970 +4831 54460 0.4190 +4831 54948 0.4490 +4831 55052 0.4720 +4831 55168 0.4110 +4831 55173 0.5800 +4831 55316 0.5120 +4831 55811 0.7070 +4831 56474 0.9360 +4831 56648 0.4090 +4831 56945 0.6100 +4831 58497 0.4980 +4831 63931 0.4920 +4831 64077 0.6390 +4831 64506 0.5080 +4831 64949 0.4950 +4831 64951 0.4480 +4831 64960 0.5620 +4831 64963 0.5210 +4831 64965 0.5160 +4831 64968 0.5480 +4831 64969 0.4700 +4831 64979 0.4010 +4831 64983 0.5090 +4831 65005 0.4080 +4831 79077 0.9140 +4831 79590 0.4860 +4831 80305 0.5490 +4831 80755 0.4630 +4831 84284 0.9460 +4831 84545 0.4210 +4831 116844 0.4880 +4831 118487 0.4890 +4831 121504 0.4810 +4831 122481 0.7550 +4831 124583 0.7290 +4831 126402 0.5090 +4831 129607 0.9360 +4831 131870 0.9090 +4831 143244 0.4270 +4831 158067 0.7630 +4831 192111 0.7040 +4831 196883 0.6810 +4831 219927 0.5940 +4831 221264 0.9380 +4831 246243 0.5240 +4831 347487 0.5070 +4831 374659 0.9460 +4831 377841 0.6780 +4831 389874 0.4200 +4831 654364 0.9970 +4831 100287482 0.4930 +4831 100885850 0.4850 +4831 102157402 0.7290 +4832 4833 0.9490 +4832 4881 0.6630 +4832 4882 0.6630 +4832 5167 0.9260 +4832 5169 0.9300 +4832 5313 0.9120 +4832 5315 0.9130 +4832 6102 0.6260 +4832 6122 0.4720 +4832 6123 0.5310 +4832 6124 0.4690 +4832 6133 0.4060 +4832 6135 0.4120 +4832 6152 0.4090 +4832 6169 0.4230 +4832 6182 0.4190 +4832 6183 0.5930 +4832 6187 0.4540 +4832 6188 0.4420 +4832 6189 0.4490 +4832 6193 0.5260 +4832 6207 0.5280 +4832 6208 0.5010 +4832 6209 0.4220 +4832 6217 0.4670 +4832 6222 0.4800 +4832 6224 0.5790 +4832 6228 0.5730 +4832 6234 0.4640 +4832 6235 0.4760 +4832 6240 0.8160 +4832 6241 0.7500 +4832 6390 0.4220 +4832 6391 0.5160 +4832 7284 0.4600 +4832 7388 0.4910 +4832 9349 0.4740 +4832 9553 0.4130 +4832 9583 0.6590 +4832 9858 0.5270 +4832 10201 0.9320 +4832 10476 0.4230 +4832 10524 0.6930 +4832 11222 0.4920 +4832 22984 0.5520 +4832 23521 0.4990 +4832 26289 0.8380 +4832 27241 0.7920 +4832 27351 0.4590 +4832 28973 0.4780 +4832 28998 0.5340 +4832 29088 0.4210 +4832 29922 0.9210 +4832 29928 0.4620 +4832 50484 0.7710 +4832 50808 0.9360 +4832 51021 0.6170 +4832 51073 0.4630 +4832 51081 0.5630 +4832 51116 0.5380 +4832 51121 0.4160 +4832 51149 0.5420 +4832 51176 0.4260 +4832 51264 0.5220 +4832 51727 0.4300 +4832 51728 0.4220 +4832 54460 0.4170 +4832 54948 0.4270 +4832 54985 0.4110 +4832 54995 0.4500 +4832 55052 0.4700 +4832 55173 0.5840 +4832 55212 0.5740 +4832 55272 0.4080 +4832 55316 0.4770 +4832 55811 0.6940 +4832 56474 0.9370 +4832 56648 0.4090 +4832 56945 0.5570 +4832 63931 0.4950 +4832 64847 0.4110 +4832 64949 0.4990 +4832 64960 0.5460 +4832 64963 0.5360 +4832 64965 0.5040 +4832 64968 0.5380 +4832 64969 0.4670 +4832 64983 0.4930 +4832 65990 0.4520 +4832 65993 0.4160 +4832 79077 0.9100 +4832 79092 0.4030 +4832 79590 0.4660 +4832 84284 0.9460 +4832 84545 0.4460 +4832 89941 0.4390 +4832 113655 0.4110 +4832 118487 0.4650 +4832 122481 0.7690 +4832 124583 0.7030 +4832 126402 0.5090 +4832 129607 0.9410 +4832 129880 0.8040 +4832 131870 0.9040 +4832 143244 0.4090 +4832 158067 0.7910 +4832 196883 0.6850 +4832 197335 0.4740 +4832 219927 0.5580 +4832 221264 0.9510 +4832 246243 0.4740 +4832 347487 0.5070 +4832 374659 0.9510 +4832 377841 0.6720 +4832 387103 0.4020 +4832 654364 0.9640 +4832 100287482 0.4930 +4832 102157402 0.7140 +4833 4881 0.6690 +4833 4882 0.6630 +4833 5167 0.9200 +4833 5169 0.9270 +4833 5313 0.9120 +4833 5315 0.9150 +4833 6102 0.5820 +4833 6122 0.4650 +4833 6123 0.4550 +4833 6124 0.4620 +4833 6135 0.4110 +4833 6141 0.4100 +4833 6147 0.4410 +4833 6152 0.4050 +4833 6182 0.4300 +4833 6183 0.6060 +4833 6187 0.4690 +4833 6188 0.4360 +4833 6189 0.4490 +4833 6193 0.5310 +4833 6205 0.4040 +4833 6207 0.5270 +4833 6208 0.4960 +4833 6209 0.4170 +4833 6217 0.4920 +4833 6222 0.4750 +4833 6224 0.5820 +4833 6228 0.5810 +4833 6234 0.4620 +4833 6235 0.4790 +4833 6240 0.8240 +4833 6241 0.7860 +4833 6391 0.4550 +4833 6472 0.4440 +4833 6535 0.6880 +4833 6898 0.4050 +4833 7084 0.6590 +4833 7284 0.5180 +4833 8192 0.4090 +4833 8802 0.6180 +4833 8844 0.4380 +4833 9349 0.4810 +4833 9512 0.4330 +4833 9553 0.4110 +4833 9583 0.6590 +4833 9858 0.5220 +4833 10059 0.4190 +4833 10102 0.4600 +4833 10201 0.9380 +4833 11222 0.4930 +4833 22984 0.5550 +4833 23521 0.4690 +4833 26289 0.7990 +4833 28973 0.4590 +4833 28998 0.5240 +4833 29088 0.4120 +4833 29922 0.9250 +4833 50484 0.7870 +4833 50808 0.9820 +4833 51021 0.6010 +4833 51073 0.4670 +4833 51081 0.5440 +4833 51116 0.5420 +4833 51121 0.4080 +4833 51149 0.5210 +4833 51264 0.5120 +4833 51727 0.8130 +4833 51728 0.6160 +4833 54460 0.4490 +4833 54948 0.4090 +4833 54998 0.4750 +4833 55052 0.4480 +4833 55163 0.4380 +4833 55168 0.4630 +4833 55173 0.5680 +4833 55316 0.4540 +4833 55669 0.4030 +4833 55811 0.6940 +4833 56474 0.9410 +4833 56648 0.4300 +4833 56945 0.5380 +4833 56953 0.7980 +4833 57048 0.6610 +4833 63931 0.4840 +4833 64949 0.5620 +4833 64960 0.5920 +4833 64963 0.5190 +4833 64965 0.4990 +4833 64968 0.5340 +4833 64969 0.4620 +4833 64983 0.4900 +4833 79077 0.9120 +4833 79590 0.4610 +4833 84172 0.4100 +4833 84284 0.9460 +4833 84955 0.6190 +4833 118487 0.4240 +4833 122481 0.7630 +4833 124583 0.7530 +4833 126402 0.5090 +4833 129607 0.9780 +4833 131870 0.9070 +4833 143244 0.4090 +4833 158067 0.7740 +4833 196883 0.6620 +4833 197335 0.4620 +4833 219670 0.4010 +4833 219927 0.5600 +4833 221264 0.9480 +4833 246243 0.4750 +4833 347487 0.5070 +4833 374659 0.9470 +4833 377841 0.6780 +4833 654364 0.9690 +4833 100287482 0.4930 +4833 102157402 0.7060 +4835 6820 0.4400 +4835 7984 0.4910 +4835 8681 0.5640 +4835 9248 0.4780 +4835 27035 0.4250 +4835 55002 0.5890 +4835 55312 0.4130 +4835 55584 0.4030 +4835 56892 0.4280 +4835 57554 0.5360 +4835 79728 0.5030 +4835 135152 0.4850 +4835 389434 0.5390 +4836 5007 0.4010 +4836 5036 0.4190 +4836 5316 0.4890 +4836 6714 0.6310 +4836 7360 0.5570 +4836 9094 0.4140 +4836 9097 0.4270 +4836 9211 0.4460 +4836 9343 0.4030 +4836 10988 0.5030 +4836 11137 0.5310 +4836 23039 0.4390 +4836 23173 0.4520 +4836 23413 0.4180 +4836 29117 0.4250 +4836 29933 0.4340 +4836 51105 0.4010 +4836 55226 0.4320 +4836 55294 0.5230 +4836 57037 0.4210 +4836 79699 0.4070 +4836 79877 0.5370 +4836 81562 0.4230 +4836 84320 0.8220 +4836 115290 0.4040 +4836 284451 0.4970 +4836 653269 0.4940 +4836 653781 0.4620 +4837 4860 0.9170 +4837 5054 0.4130 +4837 6281 0.6780 +4837 6387 0.4050 +4837 6772 0.4040 +4837 6774 0.5470 +4837 6876 0.5560 +4837 8312 0.4190 +4837 9590 0.7350 +4837 10135 0.9660 +4837 10644 0.5440 +4837 22933 0.9160 +4837 23057 0.4190 +4837 23408 0.9190 +4837 23409 0.9150 +4837 23410 0.9270 +4837 23411 0.9420 +4837 27232 0.5230 +4837 51547 0.9100 +4837 51548 0.9200 +4837 54981 0.4070 +4837 64802 0.4840 +4837 284119 0.7880 +4838 4867 0.4930 +4838 5045 0.7780 +4838 5046 0.8360 +4838 5308 0.4610 +4838 5460 0.6220 +4838 6422 0.4040 +4838 6425 0.4090 +4838 6469 0.4330 +4838 6496 0.6210 +4838 6657 0.5660 +4838 6862 0.4030 +4838 6997 0.9860 +4838 7044 0.9920 +4838 7046 0.7180 +4838 7049 0.4530 +4838 7473 0.4480 +4838 7546 0.4480 +4838 7547 0.9290 +4838 8320 0.5050 +4838 8433 0.4910 +4838 8646 0.4610 +4838 8928 0.7210 +4838 9314 0.4530 +4838 9350 0.9410 +4838 9573 0.7300 +4838 10370 0.5090 +4838 10637 0.9900 +4838 22943 0.4090 +4838 27130 0.5490 +4838 29842 0.4660 +4838 55211 0.4550 +4838 55636 0.4520 +4838 55997 0.9580 +4838 63978 0.5100 +4838 64321 0.6020 +4838 78987 0.4790 +4838 79727 0.4400 +4838 79923 0.6200 +4838 83439 0.5140 +4838 83729 0.9080 +4838 83881 0.6230 +4838 84870 0.4470 +4838 84976 0.4790 +4838 89780 0.4150 +4838 128209 0.4270 +4838 130399 0.9680 +4838 132625 0.4400 +4838 145258 0.4970 +4838 151871 0.4310 +4838 154796 0.4030 +4838 199699 0.8120 +4839 4869 0.9240 +4839 4904 0.4820 +4839 4931 0.7240 +4839 5028 0.6900 +4839 5032 0.6920 +4839 5036 0.6810 +4839 5394 0.6620 +4839 5469 0.5470 +4839 5822 0.7850 +4839 5987 0.5420 +4839 6047 0.5330 +4839 6059 0.4650 +4839 6122 0.6680 +4839 6123 0.5830 +4839 6124 0.8650 +4839 6125 0.7560 +4839 6128 0.9150 +4839 6129 0.8230 +4839 6130 0.8280 +4839 6132 0.6610 +4839 6133 0.7660 +4839 6135 0.6320 +4839 6137 0.8180 +4839 6138 0.8660 +4839 6139 0.6070 +4839 6141 0.9110 +4839 6142 0.9120 +4839 6143 0.8150 +4839 6144 0.7730 +4839 6146 0.5860 +4839 6147 0.8680 +4839 6154 0.6540 +4839 6155 0.8080 +4839 6156 0.9030 +4839 6157 0.7710 +4839 6160 0.8190 +4839 6161 0.8180 +4839 6164 0.7730 +4839 6165 0.7610 +4839 6167 0.7630 +4839 6168 0.5120 +4839 6169 0.7870 +4839 6175 0.6050 +4839 6194 0.5760 +4839 6217 0.4330 +4839 6657 0.4630 +4839 6723 0.4290 +4839 6730 0.5580 +4839 6733 0.6110 +4839 6780 0.4630 +4839 6838 0.7970 +4839 6894 0.4730 +4839 6929 0.4410 +4839 7015 0.4300 +4839 7150 0.5120 +4839 7343 0.5140 +4839 8518 0.4420 +4839 8568 0.9080 +4839 8602 0.8310 +4839 8634 0.4670 +4839 8662 0.4350 +4839 8833 0.4530 +4839 8846 0.6120 +4839 8886 0.9830 +4839 8890 0.4420 +4839 9045 0.8550 +4839 9136 0.6940 +4839 9188 0.7610 +4839 9212 0.4130 +4839 9221 0.8710 +4839 9238 0.5900 +4839 9277 0.9060 +4839 9349 0.8090 +4839 9416 0.4520 +4839 9533 0.7450 +4839 9589 0.4470 +4839 9724 0.7050 +4839 9732 0.5930 +4839 9775 0.4450 +4839 9790 0.8630 +4839 9875 0.7460 +4839 9904 0.7960 +4839 9908 0.4110 +4839 9933 0.9730 +4839 10146 0.4660 +4839 10153 0.9630 +4839 10171 0.6130 +4839 10189 0.7680 +4839 10196 0.4510 +4839 10199 0.7660 +4839 10212 0.5060 +4839 10322 0.4760 +4839 10412 0.9830 +4839 10436 0.5500 +4839 10445 0.7810 +4839 10514 0.8640 +4839 10521 0.4510 +4839 10528 0.9690 +4839 10557 0.4100 +4839 10607 0.8390 +4839 10785 0.6890 +4839 10813 0.8660 +4839 10849 0.4610 +4839 10885 0.8530 +4839 10969 0.9970 +4839 11056 0.7130 +4839 11103 0.7410 +4839 11137 0.8280 +4839 11180 0.4240 +4839 11224 0.8280 +4839 22916 0.6010 +4839 22984 0.9270 +4839 23029 0.8450 +4839 23070 0.4180 +4839 23076 0.9370 +4839 23082 0.5360 +4839 23160 0.7570 +4839 23195 0.5520 +4839 23212 0.9440 +4839 23223 0.8440 +4839 23246 0.9900 +4839 23378 0.8690 +4839 23476 0.4270 +4839 23481 0.9830 +4839 23517 0.7630 +4839 23521 0.5600 +4839 23560 0.9930 +4839 24140 0.8300 +4839 25873 0.8070 +4839 25879 0.6580 +4839 25885 0.8560 +4839 25983 0.6920 +4839 26155 0.9930 +4839 26156 0.9820 +4839 26354 0.9660 +4839 26574 0.7260 +4839 26576 0.4280 +4839 26995 0.4920 +4839 27000 0.5130 +4839 27037 0.5340 +4839 27042 0.6080 +4839 27292 0.7380 +4839 27340 0.6330 +4839 27341 0.5650 +4839 28987 0.8550 +4839 28989 0.4360 +4839 29102 0.4060 +4839 29889 0.9450 +4839 29960 0.6380 +4839 29997 0.8220 +4839 30836 0.6200 +4839 51018 0.7750 +4839 51042 0.5570 +4839 51068 0.7680 +4839 51073 0.4020 +4839 51082 0.4770 +4839 51096 0.7630 +4839 51118 0.4030 +4839 51121 0.6560 +4839 51154 0.9880 +4839 51187 0.9870 +4839 51202 0.8200 +4839 51236 0.4670 +4839 51388 0.9970 +4839 51491 0.4220 +4839 51504 0.6410 +4839 51575 0.8230 +4839 51602 0.9740 +4839 51605 0.7020 +4839 51654 0.5250 +4839 54433 0.6270 +4839 54475 0.7480 +4839 54517 0.6890 +4839 54552 0.9360 +4839 54555 0.6750 +4839 54606 0.9370 +4839 54663 0.9820 +4839 54758 0.4170 +4839 54865 0.4970 +4839 54888 0.9190 +4839 54890 0.4780 +4839 54915 0.4070 +4839 54920 0.4260 +4839 54931 0.6080 +4839 54984 0.4880 +4839 55003 0.8330 +4839 55006 0.6460 +4839 55027 0.4190 +4839 55127 0.6660 +4839 55131 0.9900 +4839 55140 0.5030 +4839 55153 0.8560 +4839 55170 0.4630 +4839 55178 0.5170 +4839 55226 0.9200 +4839 55272 0.4490 +4839 55299 0.9860 +4839 55319 0.5550 +4839 55341 0.8330 +4839 55505 0.4380 +4839 55621 0.7680 +4839 55622 0.6150 +4839 55627 0.4500 +4839 55646 0.6670 +4839 55651 0.8700 +4839 55687 0.5380 +4839 55695 0.6490 +4839 55703 0.6330 +4839 55720 0.8740 +4839 55759 0.9750 +4839 55760 0.6070 +4839 55781 0.4440 +4839 55794 0.5590 +4839 55798 0.4310 +4839 55813 0.7560 +4839 56339 0.5100 +4839 56341 0.4670 +4839 56342 0.7810 +4839 56902 0.4320 +4839 56931 0.5640 +4839 56937 0.4260 +4839 57050 0.8020 +4839 57062 0.8870 +4839 57109 0.4030 +4839 57418 0.6380 +4839 57570 0.4040 +4839 57647 0.4550 +4839 57696 0.9510 +4839 57721 0.6260 +4839 60487 0.6310 +4839 60528 0.4980 +4839 63899 0.7630 +4839 64118 0.5760 +4839 64216 0.4820 +4839 64318 0.9780 +4839 64425 0.7360 +4839 64434 0.6910 +4839 64794 0.7560 +4839 64848 0.5230 +4839 65083 0.8810 +4839 65095 0.6880 +4839 79009 0.4780 +4839 79039 0.9340 +4839 79050 0.7710 +4839 79068 0.4020 +4839 79159 0.8740 +4839 79691 0.4790 +4839 79711 0.6750 +4839 79730 0.8400 +4839 79866 0.4030 +4839 79922 0.4070 +4839 79954 0.8740 +4839 79979 0.5550 +4839 80135 0.9510 +4839 80324 0.7230 +4839 81627 0.5720 +4839 81887 0.5650 +4839 81890 0.4390 +4839 83448 0.4770 +4839 83480 0.5890 +4839 83732 0.5200 +4839 83743 0.8960 +4839 84128 0.7310 +4839 84135 0.5010 +4839 84154 0.9890 +4839 84172 0.8790 +4839 84273 0.4870 +4839 84294 0.6470 +4839 84365 0.9940 +4839 84549 0.9540 +4839 84916 0.7530 +4839 84946 0.7990 +4839 90121 0.6170 +4839 90353 0.4790 +4839 91746 0.4320 +4839 91801 0.4220 +4839 91893 0.4690 +4839 92170 0.4390 +4839 92345 0.4250 +4839 92856 0.8380 +4839 93587 0.4930 +4839 115708 0.6890 +4839 116966 0.5970 +4839 117246 0.9970 +4839 123263 0.7250 +4839 130916 0.6070 +4839 131965 0.4420 +4839 142940 0.6710 +4839 146212 0.8110 +4839 155368 0.4550 +4839 158234 0.4820 +4839 161424 0.6420 +4839 165545 0.6090 +4839 200916 0.5800 +4839 221830 0.7120 +4839 254268 0.5250 +4839 285855 0.7410 +4839 317781 0.5230 +4839 339175 0.4230 +4839 345630 0.7430 +4839 387129 0.6600 +4839 387338 0.6230 +4839 692312 0.7550 +4839 100526842 0.5460 +4839 114483834 0.4320 +4841 4869 0.6490 +4841 4904 0.7190 +4841 5093 0.4880 +4841 5094 0.4350 +4841 5187 0.4570 +4841 5241 0.4710 +4841 5316 0.4020 +4841 5411 0.4810 +4841 5431 0.4520 +4841 5499 0.6290 +4841 5546 0.7290 +4841 5591 0.5280 +4841 5599 0.4490 +4841 5725 0.7400 +4841 5888 0.5690 +4841 5892 0.4610 +4841 5928 0.7020 +4841 5931 0.6980 +4841 5935 0.4890 +4841 6095 0.4080 +4841 6124 0.4580 +4841 6125 0.4760 +4841 6136 0.4390 +4841 6240 0.5040 +4841 6241 0.4970 +4841 6294 0.4720 +4841 6421 0.9990 +4841 6426 0.8090 +4841 6427 0.4170 +4841 6428 0.6550 +4841 6431 0.5640 +4841 6432 0.4050 +4841 6434 0.5410 +4841 6502 0.6140 +4841 6597 0.8680 +4841 6598 0.4580 +4841 6599 0.6000 +4841 6602 0.5980 +4841 6606 0.4120 +4841 6612 0.4420 +4841 6613 0.6440 +4841 6625 0.5320 +4841 6626 0.7790 +4841 6633 0.4600 +4841 6635 0.4360 +4841 6636 0.4200 +4841 6662 0.4890 +4841 6688 0.6230 +4841 6741 0.5360 +4841 6742 0.4720 +4841 6749 0.4490 +4841 6760 0.5150 +4841 6774 0.5180 +4841 6780 0.5150 +4841 6790 0.5650 +4841 7030 0.6500 +4841 7150 0.7290 +4841 7158 0.5680 +4841 7280 0.4780 +4841 7307 0.5440 +4841 7319 0.4310 +4841 7458 0.4030 +4841 7520 0.6510 +4841 7531 0.5510 +4841 7534 0.6240 +4841 7536 0.4860 +4841 7760 0.4310 +4841 7919 0.4760 +4841 8087 0.4590 +4841 8148 0.5150 +4841 8161 0.4210 +4841 8241 0.5390 +4841 8361 0.5870 +4841 8366 0.4010 +4841 8570 0.7320 +4841 8683 0.6270 +4841 8850 0.4850 +4841 8864 0.7450 +4841 8880 0.4880 +4841 8914 0.4720 +4841 8976 0.5400 +4841 9025 0.5200 +4841 9184 0.4460 +4841 9188 0.5450 +4841 9203 0.4920 +4841 9584 0.6660 +4841 9604 0.4220 +4841 9782 0.9950 +4841 9817 0.4310 +4841 9967 0.5270 +4841 9987 0.5160 +4841 10075 0.4240 +4841 10084 0.4140 +4841 10146 0.6650 +4841 10155 0.4090 +4841 10189 0.6670 +4841 10236 0.4560 +4841 10399 0.4390 +4841 10432 0.9980 +4841 10492 0.5460 +4841 10523 0.4410 +4841 10614 0.7590 +4841 10643 0.4400 +4841 10657 0.6460 +4841 10664 0.6440 +4841 10949 0.5300 +4841 11051 0.7000 +4841 11052 0.8850 +4841 11073 0.5630 +4841 11091 0.8010 +4841 11315 0.5970 +4841 11338 0.8670 +4841 22803 0.4870 +4841 22827 0.4450 +4841 22913 0.4090 +4841 22916 0.6970 +4841 23067 0.4250 +4841 23225 0.5050 +4841 23283 0.5540 +4841 23435 0.8470 +4841 25942 0.4990 +4841 26471 0.6180 +4841 26993 0.5510 +4841 27316 0.7890 +4841 27339 0.4200 +4841 50848 0.4090 +4841 51428 0.6070 +4841 51493 0.4880 +4841 51586 0.4030 +4841 51593 0.5700 +4841 51747 0.7630 +4841 54469 0.4250 +4841 54606 0.5010 +4841 54790 0.4110 +4841 54894 0.7420 +4841 55269 0.9990 +4841 56252 0.6710 +4841 56257 0.4730 +4841 56259 0.5420 +4841 57575 0.4560 +4841 79058 0.7170 +4841 79724 0.5310 +4841 79733 0.5270 +4841 83638 0.4590 +4841 84276 0.6180 +4841 115004 0.8360 +4841 127933 0.4770 +4841 129831 0.4290 +4841 149041 0.5100 +4841 200186 0.8680 +4841 200424 0.5310 +4841 203068 0.5950 +4841 220988 0.5490 +4841 257397 0.4670 +4841 727837 0.4240 +4841 728378 0.5360 +4841 100526737 0.9950 +4842 4843 0.9390 +4842 4846 0.9060 +4842 4852 0.5480 +4842 4893 0.9000 +4842 4914 0.4800 +4842 4915 0.5640 +4842 5009 0.9230 +4842 5350 0.7510 +4842 5443 0.4850 +4842 5467 0.4060 +4842 5566 0.4630 +4842 5567 0.4610 +4842 5568 0.4720 +4842 5592 0.5820 +4842 5594 0.9150 +4842 5595 0.9360 +4842 5728 0.5380 +4842 5743 0.5150 +4842 5816 0.5360 +4842 5972 0.5130 +4842 6261 0.9540 +4842 6262 0.9580 +4842 6263 0.9180 +4842 6442 0.6660 +4842 6444 0.5900 +4842 6445 0.4950 +4842 6572 0.4810 +4842 6640 0.9790 +4842 6641 0.7370 +4842 6645 0.4610 +4842 6647 0.6670 +4842 6708 0.4420 +4842 6750 0.5020 +4842 6853 0.4710 +4842 6863 0.5430 +4842 6885 0.4240 +4842 6993 0.4300 +4842 7019 0.5230 +4842 7054 0.5500 +4842 7075 0.5930 +4842 7124 0.5300 +4842 7137 0.7710 +4842 7295 0.4700 +4842 7386 0.4290 +4842 7402 0.7580 +4842 7416 0.5170 +4842 7432 0.6960 +4842 7442 0.4820 +4842 7498 0.9230 +4842 7704 0.4100 +4842 7837 0.5100 +4842 8038 0.4220 +4842 8082 0.5620 +4842 8525 0.4060 +4842 8654 0.6480 +4842 8655 0.9570 +4842 8772 0.5330 +4842 8911 0.9190 +4842 8912 0.9200 +4842 8913 0.9160 +4842 9060 0.6350 +4842 9061 0.6350 +4842 9229 0.4410 +4842 9722 0.9990 +4842 10000 0.9000 +4842 10243 0.5870 +4842 10273 0.7620 +4842 23336 0.4310 +4842 23562 0.4080 +4842 23564 0.5910 +4842 23576 0.6060 +4842 27035 0.6220 +4842 50507 0.4520 +4842 51070 0.6580 +4842 51083 0.6130 +4842 51167 0.4380 +4842 51393 0.4300 +4842 51655 0.9900 +4842 51806 0.9990 +4842 53905 0.4280 +4842 54205 0.5630 +4842 55697 0.5920 +4842 57019 0.4940 +4842 80308 0.7680 +4842 91860 0.9990 +4842 112812 0.5350 +4842 113451 0.9400 +4842 133482 0.4840 +4842 137902 0.5100 +4842 146713 0.4740 +4842 163688 0.9990 +4842 257202 0.5280 +4842 493869 0.5210 +4842 653361 0.4350 +4843 4846 0.9120 +4843 4953 0.4440 +4843 4988 0.5040 +4843 5009 0.9220 +4843 5054 0.4010 +4843 5192 0.5120 +4843 5194 0.5080 +4843 5195 0.5200 +4843 5265 0.4100 +4843 5295 0.4190 +4843 5468 0.6990 +4843 5595 0.4610 +4843 5599 0.5450 +4843 5740 0.5080 +4843 5743 0.9080 +4843 5788 0.4730 +4843 5828 0.4990 +4843 5830 0.4990 +4843 5970 0.4640 +4843 5972 0.5460 +4843 6233 0.6570 +4843 6261 0.4190 +4843 6279 0.4110 +4843 6342 0.5450 +4843 6347 0.6330 +4843 6348 0.4570 +4843 6351 0.5420 +4843 6362 0.5140 +4843 6401 0.4760 +4843 6556 0.6520 +4843 6640 0.5110 +4843 6647 0.4680 +4843 6708 0.4420 +4843 6772 0.7380 +4843 6774 0.7490 +4843 6775 0.5020 +4843 6778 0.7180 +4843 6850 0.5440 +4843 7010 0.4210 +4843 7040 0.4950 +4843 7075 0.6140 +4843 7097 0.6920 +4843 7099 0.7540 +4843 7124 0.8580 +4843 7157 0.4180 +4843 7295 0.4090 +4843 7297 0.5910 +4843 7311 0.4990 +4843 7314 0.5500 +4843 7316 0.5640 +4843 7321 0.5250 +4843 7322 0.5340 +4843 7323 0.5250 +4843 7386 0.4180 +4843 7412 0.4720 +4843 7431 0.4370 +4843 7498 0.4930 +4843 7837 0.5250 +4843 7850 0.5770 +4843 8065 0.4930 +4843 8654 0.4620 +4843 8997 0.4530 +4843 9021 0.6130 +4843 9060 0.6350 +4843 9061 0.6350 +4843 9332 0.5180 +4843 9368 0.6100 +4843 10000 0.9040 +4843 11283 0.4660 +4843 11315 0.4300 +4843 27035 0.4050 +4843 50506 0.4220 +4843 50943 0.4750 +4843 51167 0.4290 +4843 51377 0.4200 +4843 51806 0.9930 +4843 54205 0.4700 +4843 55922 0.4840 +4843 57019 0.4940 +4843 58480 0.4060 +4843 80176 0.7360 +4843 80308 0.7680 +4843 84666 0.4950 +4843 84727 0.8670 +4843 84955 0.6190 +4843 91860 0.9930 +4843 92369 0.5840 +4843 112812 0.5350 +4843 113451 0.9270 +4843 114609 0.4320 +4843 137902 0.5250 +4843 163688 0.9930 +4843 169355 0.4350 +4843 200933 0.4760 +4843 219743 0.5080 +4843 257202 0.5290 +4843 493869 0.5210 +4843 653361 0.4330 +4846 4878 0.5440 +4846 4879 0.5370 +4846 4883 0.5800 +4846 4973 0.5420 +4846 5009 0.9230 +4846 5054 0.6100 +4846 5170 0.5590 +4846 5175 0.7310 +4846 5228 0.5140 +4846 5327 0.5230 +4846 5335 0.9160 +4846 5336 0.9090 +4846 5340 0.4750 +4846 5444 0.5270 +4846 5465 0.5290 +4846 5467 0.5860 +4846 5468 0.6270 +4846 5566 0.5980 +4846 5567 0.5970 +4846 5568 0.5990 +4846 5592 0.7750 +4846 5595 0.6030 +4846 5599 0.4120 +4846 5728 0.4220 +4846 5740 0.6370 +4846 5742 0.4590 +4846 5743 0.6420 +4846 5972 0.7240 +4846 6093 0.5870 +4846 6261 0.4250 +4846 6262 0.5610 +4846 6347 0.6280 +4846 6387 0.4710 +4846 6401 0.6590 +4846 6403 0.6020 +4846 6517 0.5190 +4846 6524 0.4060 +4846 6541 0.5010 +4846 6640 0.5750 +4846 6647 0.4360 +4846 6648 0.5180 +4846 6649 0.5230 +4846 6697 0.7000 +4846 6714 0.5860 +4846 6774 0.4890 +4846 6820 0.4130 +4846 6863 0.4300 +4846 7010 0.6840 +4846 7040 0.5870 +4846 7056 0.5670 +4846 7057 0.4420 +4846 7075 0.8820 +4846 7076 0.4150 +4846 7099 0.5220 +4846 7122 0.5120 +4846 7124 0.6930 +4846 7157 0.5060 +4846 7184 0.8320 +4846 7295 0.5370 +4846 7351 0.4160 +4846 7386 0.4370 +4846 7402 0.4960 +4846 7408 0.4360 +4846 7412 0.8100 +4846 7416 0.4950 +4846 7417 0.4220 +4846 7423 0.5650 +4846 7442 0.4340 +4846 7450 0.8110 +4846 7498 0.8280 +4846 7837 0.6150 +4846 7852 0.4240 +4846 8038 0.4240 +4846 8473 0.9100 +4846 8536 0.9360 +4846 8654 0.6800 +4846 8817 0.4480 +4846 8822 0.4470 +4846 8823 0.4500 +4846 8841 0.4200 +4846 8862 0.4900 +4846 8976 0.5140 +4846 9060 0.6350 +4846 9061 0.6350 +4846 9314 0.4050 +4846 9370 0.6060 +4846 9817 0.5790 +4846 10000 0.9170 +4846 10365 0.6160 +4846 10434 0.7940 +4846 10891 0.5830 +4846 23410 0.4820 +4846 23411 0.8410 +4846 23564 0.7860 +4846 23576 0.8650 +4846 26281 0.4490 +4846 27006 0.4580 +4846 27035 0.6110 +4846 30001 0.4090 +4846 50506 0.5950 +4846 50507 0.6970 +4846 51070 0.9930 +4846 51167 0.4760 +4846 51393 0.4730 +4846 51806 0.9990 +4846 53905 0.6060 +4846 54205 0.6170 +4846 55902 0.4490 +4846 56729 0.4030 +4846 57019 0.4940 +4846 57118 0.9080 +4846 57172 0.9070 +4846 58157 0.4440 +4846 59272 0.4770 +4846 59341 0.4560 +4846 79400 0.4960 +4846 80308 0.7680 +4846 91860 0.9990 +4846 92579 0.4180 +4846 112812 0.5350 +4846 113451 0.9400 +4846 115677 0.9110 +4846 137902 0.6140 +4846 163688 0.9990 +4846 200895 0.4520 +4846 253260 0.4530 +4846 257202 0.6560 +4846 284119 0.5290 +4846 285973 0.6050 +4846 340481 0.7940 +4846 375704 0.4100 +4846 493869 0.6510 +4846 653361 0.5980 +4846 100506658 0.6090 +4848 4849 0.9990 +4848 4850 0.9990 +4848 4880 0.4950 +4848 4882 0.6390 +4848 5166 0.4560 +4848 6152 0.4330 +4848 6341 0.4640 +4848 6429 0.4420 +4848 6430 0.4030 +4848 6499 0.4840 +4848 6901 0.5860 +4848 7073 0.4640 +4848 7095 0.6780 +4848 7157 0.5570 +4848 7327 0.8800 +4848 7538 0.6800 +4848 7555 0.4810 +4848 7756 0.4040 +4848 7832 0.5700 +4848 8091 0.4200 +4848 8812 0.8700 +4848 8841 0.4020 +4848 9125 0.9990 +4848 9191 0.4600 +4848 9337 0.9990 +4848 9413 0.4280 +4848 9698 0.4280 +4848 9775 0.4650 +4848 9878 0.4350 +4848 9919 0.4150 +4848 9931 0.5420 +4848 9969 0.4910 +4848 9997 0.4430 +4848 10075 0.4680 +4848 10140 0.9780 +4848 10299 0.8930 +4848 10575 0.4010 +4848 10605 0.5030 +4848 10910 0.4360 +4848 10944 0.4550 +4848 10952 0.8360 +4848 11231 0.6270 +4848 22849 0.9060 +4848 22916 0.4930 +4848 23016 0.8700 +4848 23019 0.9990 +4848 23097 0.5460 +4848 23112 0.5960 +4848 23283 0.4680 +4848 23369 0.4510 +4848 23405 0.4740 +4848 23480 0.6660 +4848 23517 0.8750 +4848 23644 0.5990 +4848 25819 0.7620 +4848 25904 0.9990 +4848 26043 0.4090 +4848 26065 0.5040 +4848 26523 0.4360 +4848 26986 0.6560 +4848 27161 0.5490 +4848 27327 0.6710 +4848 27345 0.4910 +4848 29883 0.9990 +4848 29927 0.6250 +4848 50488 0.4200 +4848 51236 0.4250 +4848 51257 0.5080 +4848 51593 0.4420 +4848 51701 0.4060 +4848 54464 0.6460 +4848 54512 0.8910 +4848 54542 0.7460 +4848 54867 0.9080 +4848 54963 0.4840 +4848 55016 0.5090 +4848 55218 0.9030 +4848 55285 0.4430 +4848 55571 0.9990 +4848 55601 0.4140 +4848 55623 0.4490 +4848 56157 0.7040 +4848 56478 0.4780 +4848 56915 0.6310 +4848 57187 0.5180 +4848 57472 0.9990 +4848 57510 0.4810 +4848 57574 0.4940 +4848 60313 0.6790 +4848 64599 0.5130 +4848 64844 0.5440 +4848 65056 0.4680 +4848 65117 0.5470 +4848 79596 0.5910 +4848 80153 0.4110 +4848 80313 0.6860 +4848 85456 0.9880 +4848 90806 0.4840 +4848 92979 0.5080 +4848 114801 0.4130 +4848 115123 0.5080 +4848 115795 0.4780 +4848 118460 0.6540 +4848 149041 0.8530 +4848 158787 0.6910 +4848 162333 0.5080 +4848 167227 0.6280 +4848 192669 0.4740 +4848 197135 0.7990 +4848 201626 0.6810 +4848 219988 0.8780 +4848 220972 0.5080 +4848 246175 0.9990 +4848 339345 0.7670 +4848 340719 0.6000 +4848 390748 0.4350 +4848 441061 0.5080 +4849 4850 0.9990 +4849 5166 0.5390 +4849 6125 0.6320 +4849 6135 0.4470 +4849 6146 0.4520 +4849 6147 0.4490 +4849 6156 0.4330 +4849 6157 0.4330 +4849 6159 0.4370 +4849 6161 0.4460 +4849 6169 0.4510 +4849 6171 0.4290 +4849 6187 0.4400 +4849 6188 0.4360 +4849 6193 0.4380 +4849 6201 0.4800 +4849 6203 0.4770 +4849 6206 0.4360 +4849 6207 0.4510 +4849 6209 0.4480 +4849 6224 0.5070 +4849 6227 0.4410 +4849 6230 0.5620 +4849 6233 0.4300 +4849 6597 0.4540 +4849 6657 0.4070 +4849 6871 0.7540 +4849 6878 0.4210 +4849 6883 0.4050 +4849 7157 0.7820 +4849 7317 0.4180 +4849 7322 0.5680 +4849 7538 0.6720 +4849 7543 0.6510 +4849 7832 0.5760 +4849 7916 0.4030 +4849 8242 0.5220 +4849 9125 0.9990 +4849 9191 0.4510 +4849 9337 0.9990 +4849 9665 0.4770 +4849 9698 0.4820 +4849 9775 0.5260 +4849 9887 0.4100 +4849 9931 0.4510 +4849 10140 0.9800 +4849 10155 0.6830 +4849 10247 0.6040 +4849 10399 0.4420 +4849 10605 0.5790 +4849 10766 0.6840 +4849 10950 0.6280 +4849 22849 0.9080 +4849 23019 0.9990 +4849 23112 0.5340 +4849 23644 0.4680 +4849 25819 0.7720 +4849 25904 0.9990 +4849 26058 0.5690 +4849 26065 0.4240 +4849 26121 0.7020 +4849 26986 0.7920 +4849 27161 0.6280 +4849 27327 0.8750 +4849 29844 0.4870 +4849 29883 0.9990 +4849 50488 0.4590 +4849 51013 0.8850 +4849 51320 0.4070 +4849 54464 0.6400 +4849 54512 0.8610 +4849 54542 0.6490 +4849 54915 0.4390 +4849 55571 0.9990 +4849 56157 0.7580 +4849 56478 0.5380 +4849 56915 0.4480 +4849 57472 0.9990 +4849 63826 0.5000 +4849 64599 0.5600 +4849 79143 0.4680 +4849 79165 0.6460 +4849 79596 0.6260 +4849 80114 0.4850 +4849 80153 0.6930 +4849 80313 0.6540 +4849 84295 0.4570 +4849 85456 0.9890 +4849 93624 0.7540 +4849 114823 0.4100 +4849 115795 0.5260 +4849 118460 0.5530 +4849 149041 0.8470 +4849 158787 0.6770 +4849 167227 0.4750 +4849 197135 0.8740 +4849 201626 0.6960 +4849 219988 0.9220 +4849 246175 0.9990 +4849 339345 0.9020 +4849 340719 0.7480 +4849 342977 0.4180 +4849 390748 0.5100 +4850 5433 0.4320 +4850 6059 0.5720 +4850 6201 0.5750 +4850 6224 0.4080 +4850 6499 0.6430 +4850 6871 0.8420 +4850 7157 0.5590 +4850 7317 0.4960 +4850 7321 0.7520 +4850 7322 0.9990 +4850 7323 0.5750 +4850 7324 0.6650 +4850 7332 0.4930 +4850 7334 0.4390 +4850 7538 0.6460 +4850 7832 0.5570 +4850 8242 0.7610 +4850 8714 0.4150 +4850 8850 0.5730 +4850 9125 0.9990 +4850 9147 0.6050 +4850 9191 0.4220 +4850 9320 0.4100 +4850 9337 0.9980 +4850 9775 0.5130 +4850 10140 0.6110 +4850 10247 0.8080 +4850 10299 0.5550 +4850 10477 0.6440 +4850 10526 0.4800 +4850 10527 0.4580 +4850 10605 0.4890 +4850 10767 0.6110 +4850 22849 0.6200 +4850 23016 0.9580 +4850 23019 0.9990 +4850 23097 0.8570 +4850 23304 0.4080 +4850 23392 0.7950 +4850 23517 0.9670 +4850 25819 0.7270 +4850 25904 0.9800 +4850 26046 0.8060 +4850 26057 0.4680 +4850 26065 0.5270 +4850 26986 0.7430 +4850 27327 0.7020 +4850 27338 0.5260 +4850 27443 0.5090 +4850 29883 0.9980 +4850 51126 0.4410 +4850 51441 0.4670 +4850 51465 0.4310 +4850 53918 0.5690 +4850 54464 0.7010 +4850 54512 0.7870 +4850 55284 0.4690 +4850 55571 0.9720 +4850 55601 0.4580 +4850 56478 0.6120 +4850 56915 0.5520 +4850 57472 0.9730 +4850 64783 0.4650 +4850 79009 0.4420 +4850 79171 0.4220 +4850 80153 0.4760 +4850 80313 0.6130 +4850 83607 0.4680 +4850 85456 0.9160 +4850 90850 0.6390 +4850 93624 0.8410 +4850 118460 0.7630 +4850 167227 0.4810 +4850 197131 0.5850 +4850 197135 0.8560 +4850 201626 0.6490 +4850 219988 0.8770 +4850 246175 0.9740 +4850 253943 0.4270 +4850 340719 0.4720 +4851 4853 0.9320 +4851 4854 0.8110 +4851 4855 0.8460 +4851 4856 0.8270 +4851 4869 0.5150 +4851 4893 0.7650 +4851 4914 0.4070 +4851 4921 0.4720 +4851 5045 0.6670 +4851 5054 0.5240 +4851 5079 0.6980 +4851 5080 0.5890 +4851 5090 0.4750 +4851 5155 0.5570 +4851 5156 0.5740 +4851 5159 0.4740 +4851 5175 0.5290 +4851 5243 0.4190 +4851 5290 0.7860 +4851 5294 0.5650 +4851 5295 0.6330 +4851 5300 0.4090 +4851 5460 0.6330 +4851 5468 0.4160 +4851 5518 0.4440 +4851 5580 0.4360 +4851 5591 0.4620 +4851 5594 0.5790 +4851 5595 0.7140 +4851 5604 0.5090 +4851 5654 0.4180 +4851 5663 0.9980 +4851 5664 0.8540 +4851 5727 0.5210 +4851 5728 0.7580 +4851 5743 0.4130 +4851 5747 0.5670 +4851 5764 0.5060 +4851 5781 0.5710 +4851 5788 0.5400 +4851 5870 0.4230 +4851 5896 0.4410 +4851 5966 0.7430 +4851 5970 0.5830 +4851 5971 0.6800 +4851 5979 0.5130 +4851 5986 0.9360 +4851 6093 0.4660 +4851 6098 0.4330 +4851 6233 0.6580 +4851 6256 0.5000 +4851 6347 0.4180 +4851 6351 0.4750 +4851 6366 0.4770 +4851 6370 0.4630 +4851 6387 0.5030 +4851 6400 0.4650 +4851 6469 0.6650 +4851 6484 0.4680 +4851 6500 0.7700 +4851 6502 0.4070 +4851 6591 0.6140 +4851 6597 0.6650 +4851 6598 0.5990 +4851 6608 0.5620 +4851 6615 0.7380 +4851 6621 0.4050 +4851 6647 0.4540 +4851 6657 0.6920 +4851 6659 0.4310 +4851 6662 0.7220 +4851 6688 0.4760 +4851 6696 0.4070 +4851 6714 0.7200 +4851 6772 0.4440 +4851 6774 0.6770 +4851 6776 0.4590 +4851 6777 0.4720 +4851 6778 0.4270 +4851 6794 0.5970 +4851 6815 0.4260 +4851 6838 0.4200 +4851 6868 0.9530 +4851 6886 0.5930 +4851 6907 0.6150 +4851 6911 0.5950 +4851 6929 0.5440 +4851 6932 0.5770 +4851 6939 0.4360 +4851 7010 0.4810 +4851 7015 0.5490 +4851 7027 0.5420 +4851 7029 0.5070 +4851 7040 0.6220 +4851 7042 0.4100 +4851 7046 0.6260 +4851 7048 0.5610 +4851 7070 0.4490 +4851 7082 0.5690 +4851 7088 0.5980 +4851 7089 0.5970 +4851 7090 0.6640 +4851 7091 0.6000 +4851 7097 0.4070 +4851 7099 0.4620 +4851 7124 0.7110 +4851 7157 0.7890 +4851 7189 0.4080 +4851 7291 0.5310 +4851 7311 0.4380 +4851 7314 0.6060 +4851 7316 0.5060 +4851 7403 0.5270 +4851 7409 0.5550 +4851 7412 0.4400 +4851 7424 0.4350 +4851 7431 0.4200 +4851 7471 0.5020 +4851 7472 0.6180 +4851 7473 0.4380 +4851 7474 0.4880 +4851 7482 0.4510 +4851 7486 0.4370 +4851 7490 0.5290 +4851 7514 0.4410 +4851 7528 0.8250 +4851 7535 0.5120 +4851 7804 0.4960 +4851 7837 0.5310 +4851 7852 0.5970 +4851 7874 0.8400 +4851 7994 0.4170 +4851 8021 0.4420 +4851 8085 0.6140 +4851 8202 0.4880 +4851 8289 0.5200 +4851 8290 0.4860 +4851 8312 0.6720 +4851 8313 0.4510 +4851 8356 0.4890 +4851 8452 0.5180 +4851 8454 0.7850 +4851 8549 0.5510 +4851 8626 0.4960 +4851 8650 0.9920 +4851 8788 0.8520 +4851 8817 0.4630 +4851 8822 0.4530 +4851 8823 0.4270 +4851 8841 0.5980 +4851 8842 0.6790 +4851 8850 0.8350 +4851 8878 0.5960 +4851 8880 0.4210 +4851 9148 0.5700 +4851 9170 0.4870 +4851 9201 0.6710 +4851 9241 0.4490 +4851 9253 0.9890 +4851 9314 0.6020 +4851 9429 0.5330 +4851 9541 0.5160 +4851 9611 0.6540 +4851 9612 0.7750 +4851 9734 0.6520 +4851 9759 0.6830 +4851 9794 0.9990 +4851 9817 0.4410 +4851 9839 0.5740 +4851 9869 0.5520 +4851 9968 0.4750 +4851 9978 0.5990 +4851 10000 0.5510 +4851 10013 0.6420 +4851 10014 0.6280 +4851 10018 0.4040 +4851 10046 0.5450 +4851 10114 0.6490 +4851 10146 0.4090 +4851 10273 0.4720 +4851 10288 0.4010 +4851 10320 0.6280 +4851 10365 0.4460 +4851 10402 0.4240 +4851 10413 0.5030 +4851 10524 0.7020 +4851 10578 0.7410 +4851 10631 0.9690 +4851 10683 0.9980 +4851 10763 0.7050 +4851 10943 0.4750 +4851 10959 0.4210 +4851 11059 0.4200 +4851 11317 0.9420 +4851 22938 0.9570 +4851 22943 0.4230 +4851 23013 0.7900 +4851 23028 0.6750 +4851 23040 0.4130 +4851 23112 0.5350 +4851 23129 0.6120 +4851 23133 0.5890 +4851 23135 0.6100 +4851 23220 0.7950 +4851 23327 0.4200 +4851 23373 0.4160 +4851 23385 0.9860 +4851 23405 0.4600 +4851 23411 0.5420 +4851 23462 0.9650 +4851 23476 0.6460 +4851 23493 0.9450 +4851 23509 0.7310 +4851 23512 0.4130 +4851 25962 0.4130 +4851 26281 0.4540 +4851 26508 0.8060 +4851 26523 0.5660 +4851 26524 0.4720 +4851 26528 0.4460 +4851 26960 0.9090 +4851 27006 0.4600 +4851 27161 0.6730 +4851 27255 0.5470 +4851 27327 0.5400 +4851 28514 0.9990 +4851 29072 0.4060 +4851 29126 0.4780 +4851 30012 0.5440 +4851 50943 0.4010 +4851 51107 0.9790 +4851 51162 0.4840 +4851 51176 0.8960 +4851 51564 0.6530 +4851 51593 0.9620 +4851 54205 0.5510 +4851 54361 0.4010 +4851 54492 0.5300 +4851 54567 0.9990 +4851 54790 0.5070 +4851 55120 0.5020 +4851 55193 0.5580 +4851 55294 0.9950 +4851 55502 0.5250 +4851 55534 0.9990 +4851 55662 0.9600 +4851 55734 0.5310 +4851 55754 0.4440 +4851 55851 0.9660 +4851 55869 0.5890 +4851 55897 0.4590 +4851 56983 0.7480 +4851 57104 0.4430 +4851 57178 0.7520 +4851 57534 0.5540 +4851 57801 0.5700 +4851 58508 0.5310 +4851 63035 0.4140 +4851 63973 0.4390 +4851 64170 0.4340 +4851 64324 0.4730 +4851 64783 0.6460 +4851 64919 0.6770 +4851 65989 0.4440 +4851 79718 0.6670 +4851 79727 0.5620 +4851 79755 0.4730 +4851 79885 0.5770 +4851 79923 0.6180 +4851 81031 0.4290 +4851 83464 0.7630 +4851 83737 0.7510 +4851 83933 0.6080 +4851 84295 0.6030 +4851 84433 0.4700 +4851 84441 0.9990 +4851 84557 0.6210 +4851 85476 0.4830 +4851 89780 0.5770 +4851 91526 0.4820 +4851 92737 0.6490 +4851 113878 0.7560 +4851 114990 0.5050 +4851 124540 0.5320 +4851 133482 0.4680 +4851 137902 0.5290 +4851 140628 0.4590 +4851 142678 0.5890 +4851 145873 0.5700 +4851 151636 0.7350 +4851 166647 0.4110 +4851 171023 0.4590 +4851 171558 0.5140 +4851 192669 0.5390 +4851 192670 0.5320 +4851 196403 0.7400 +4851 283464 0.6080 +4851 285203 0.4260 +4851 285527 0.5680 +4851 343930 0.5510 +4851 388585 0.9340 +4851 390992 0.4120 +4851 440093 0.4860 +4851 440686 0.4860 +4851 441478 0.9750 +4851 653604 0.4900 +4851 727936 0.5950 +4851 100133941 0.5800 +4851 100271849 0.4010 +4851 100423062 0.4620 +4851 100532731 0.6210 +4851 102723407 0.6430 +4852 4878 0.5130 +4852 4881 0.6880 +4852 4886 0.9990 +4852 4887 0.9990 +4852 4889 0.9990 +4852 4915 0.5390 +4852 4922 0.8500 +4852 4925 0.5830 +4852 4985 0.6320 +4852 4988 0.7750 +4852 5020 0.8490 +4852 5021 0.7930 +4852 5066 0.4330 +4852 5080 0.5180 +4852 5122 0.4060 +4852 5126 0.4190 +4852 5173 0.9320 +4852 5179 0.8610 +4852 5367 0.9490 +4852 5368 0.8700 +4852 5409 0.5860 +4852 5443 0.9860 +4852 5468 0.4790 +4852 5539 0.9490 +4852 5540 0.9850 +4852 5566 0.4920 +4852 5567 0.4910 +4852 5568 0.4920 +4852 5617 0.5500 +4852 5649 0.5900 +4852 5660 0.4990 +4852 5697 0.9800 +4852 5733 0.7060 +4852 5799 0.4930 +4852 5816 0.8270 +4852 5860 0.4310 +4852 5972 0.4560 +4852 6010 0.6370 +4852 6262 0.4700 +4852 6343 0.5210 +4852 6492 0.5200 +4852 6514 0.5520 +4852 6529 0.4140 +4852 6531 0.4760 +4852 6532 0.5200 +4852 6571 0.4490 +4852 6572 0.6150 +4852 6616 0.4300 +4852 6714 0.6070 +4852 6718 0.4020 +4852 6750 0.9800 +4852 6751 0.7540 +4852 6752 0.7510 +4852 6753 0.6270 +4852 6754 0.6210 +4852 6755 0.7180 +4852 6774 0.6490 +4852 6853 0.4520 +4852 6854 0.4060 +4852 6855 0.5270 +4852 6857 0.4340 +4852 6863 0.9320 +4852 6869 0.6050 +4852 6870 0.4600 +4852 7054 0.8300 +4852 7080 0.5070 +4852 7124 0.6770 +4852 7200 0.7660 +4852 7345 0.5840 +4852 7349 0.6910 +4852 7350 0.7560 +4852 7351 0.7640 +4852 7352 0.4310 +4852 7376 0.4460 +4852 7425 0.6920 +4852 7432 0.9800 +4852 7433 0.4340 +4852 7434 0.4890 +4852 7442 0.5320 +4852 7837 0.6260 +4852 7852 0.6930 +4852 7857 0.5830 +4852 8620 0.5750 +4852 8801 0.4650 +4852 8811 0.6870 +4852 8843 0.6680 +4852 8862 0.7720 +4852 8864 0.4890 +4852 9021 0.5070 +4852 9283 0.5350 +4852 9340 0.5140 +4852 9370 0.5960 +4852 9568 0.7210 +4852 9607 0.8890 +4852 10316 0.5870 +4852 10590 0.4010 +4852 10716 0.5600 +4852 10874 0.8000 +4852 10886 0.6700 +4852 10887 0.4500 +4852 10888 0.9700 +4852 10891 0.4350 +4852 23411 0.4410 +4852 23705 0.4230 +4852 26468 0.7110 +4852 27198 0.6770 +4852 27344 0.4130 +4852 29106 0.6030 +4852 51052 0.6910 +4852 51083 0.9820 +4852 51094 0.4100 +4852 51655 0.4100 +4852 51738 0.9830 +4852 54331 0.8110 +4852 56477 0.4800 +4852 56670 0.7680 +4852 56729 0.4470 +4852 56923 0.6410 +4852 57007 0.4140 +4852 57030 0.5250 +4852 57084 0.6370 +4852 63940 0.4170 +4852 64106 0.6620 +4852 64111 0.5420 +4852 80763 0.6080 +4852 80834 0.5310 +4852 80835 0.4590 +4852 83756 0.5390 +4852 84152 0.4520 +4852 84432 0.4460 +4852 84539 0.5970 +4852 84634 0.5300 +4852 84666 0.4350 +4852 85569 0.5420 +4852 93986 0.4840 +4852 114131 0.4520 +4852 124274 0.4310 +4852 129521 0.6990 +4852 137902 0.6240 +4852 140679 0.6260 +4852 146713 0.5290 +4852 246213 0.5040 +4852 255239 0.4270 +4852 256933 0.6630 +4852 283869 0.6750 +4852 338442 0.7910 +4852 338557 0.5270 +4852 347148 0.5070 +4852 390259 0.7260 +4852 594857 0.5790 +4852 619373 0.7090 +4852 100423062 0.5310 +4852 100996758 0.9720 +4852 104909134 0.5940 +4853 4854 0.7770 +4853 4855 0.8230 +4853 4893 0.5180 +4853 5045 0.6330 +4853 5156 0.6320 +4853 5175 0.4390 +4853 5290 0.4980 +4853 5460 0.4350 +4853 5584 0.4980 +4853 5663 0.8230 +4853 5664 0.7820 +4853 5727 0.4900 +4853 5728 0.5420 +4853 5781 0.4140 +4853 5788 0.4650 +4853 5803 0.5330 +4853 5870 0.4210 +4853 5970 0.4920 +4853 5986 0.9310 +4853 6233 0.5550 +4853 6382 0.5340 +4853 6400 0.4580 +4853 6469 0.5530 +4853 6484 0.4130 +4853 6498 0.4210 +4853 6591 0.4440 +4853 6608 0.4060 +4853 6615 0.4680 +4853 6657 0.5040 +4853 6662 0.5550 +4853 6714 0.4150 +4853 6774 0.6930 +4853 6868 0.9420 +4853 6928 0.4330 +4853 6934 0.4780 +4853 7040 0.6440 +4853 7042 0.5270 +4853 7048 0.4180 +4853 7082 0.5120 +4853 7090 0.4350 +4853 7097 0.5630 +4853 7099 0.5930 +4853 7103 0.5080 +4853 7124 0.4290 +4853 7128 0.4040 +4853 7157 0.6070 +4853 7311 0.5260 +4853 7314 0.5350 +4853 7316 0.5360 +4853 7466 0.4720 +4853 7471 0.4190 +4853 7474 0.4530 +4853 7477 0.5360 +4853 7547 0.4400 +4853 7709 0.5280 +4853 7852 0.4200 +4853 8074 0.4420 +4853 8085 0.5340 +4853 8289 0.4500 +4853 8476 0.4050 +4853 8549 0.5180 +4853 8650 0.9750 +4853 8788 0.7870 +4853 8842 0.5120 +4853 8850 0.5600 +4853 8872 0.5880 +4853 9148 0.5230 +4853 9253 0.9750 +4853 9314 0.4950 +4853 9611 0.4900 +4853 9794 0.9910 +4853 10046 0.5730 +4853 10402 0.4010 +4853 10413 0.4380 +4853 10578 0.6480 +4853 10644 0.4480 +4853 10673 0.4980 +4853 10675 0.4270 +4853 10683 0.9980 +4853 10763 0.4310 +4853 10959 0.4600 +4853 11009 0.7280 +4853 11085 0.4940 +4853 11317 0.9500 +4853 22938 0.6000 +4853 23013 0.6080 +4853 23040 0.4150 +4853 23112 0.5290 +4853 23220 0.6960 +4853 23243 0.4130 +4853 23380 0.4750 +4853 23385 0.8400 +4853 23462 0.7880 +4853 23493 0.8030 +4853 23509 0.8030 +4853 26508 0.6200 +4853 26523 0.5410 +4853 27161 0.6000 +4853 27324 0.4210 +4853 27327 0.5190 +4853 28514 0.9990 +4853 29126 0.5590 +4853 30009 0.4400 +4853 51107 0.7900 +4853 51162 0.6710 +4853 51341 0.4270 +4853 51593 0.8180 +4853 53335 0.4970 +4853 54361 0.4390 +4853 54492 0.4920 +4853 54567 0.9990 +4853 54790 0.4100 +4853 54901 0.5120 +4853 55294 0.6360 +4853 55502 0.4630 +4853 55509 0.5140 +4853 55534 0.9660 +4853 55662 0.5170 +4853 55851 0.7750 +4853 56892 0.5650 +4853 56983 0.6740 +4853 56999 0.5870 +4853 57118 0.5320 +4853 57534 0.4710 +4853 57801 0.4990 +4853 58508 0.4720 +4853 64783 0.4090 +4853 79923 0.5580 +4853 83464 0.7200 +4853 84433 0.4370 +4853 84441 0.9680 +4853 84456 0.4240 +4853 91526 0.4190 +4853 113878 0.7800 +4853 115650 0.4200 +4853 140885 0.4310 +4853 142678 0.5020 +4853 145873 0.5070 +4853 151636 0.8620 +4853 152110 0.4090 +4853 169026 0.4490 +4853 192669 0.5340 +4853 192670 0.5340 +4853 196403 0.8210 +4853 221895 0.5810 +4853 260425 0.4820 +4853 388585 0.8920 +4853 441478 0.5100 +4853 100133941 0.4500 +4853 100423062 0.4340 +4853 100532731 0.4060 +4853 102723407 0.5110 +4854 4855 0.8280 +4854 4904 0.7890 +4854 5045 0.6310 +4854 5080 0.5050 +4854 5087 0.6430 +4854 5144 0.4490 +4854 5155 0.4030 +4854 5156 0.4040 +4854 5159 0.7640 +4854 5175 0.4890 +4854 5290 0.4540 +4854 5328 0.4300 +4854 5460 0.4240 +4854 5663 0.8270 +4854 5664 0.8910 +4854 5727 0.4520 +4854 5728 0.5160 +4854 5870 0.4210 +4854 5970 0.9170 +4854 5979 0.4300 +4854 5986 0.9520 +4854 6233 0.5340 +4854 6387 0.4020 +4854 6400 0.4640 +4854 6422 0.5410 +4854 6469 0.5030 +4854 6591 0.4550 +4854 6608 0.4160 +4854 6615 0.4660 +4854 6657 0.4900 +4854 6662 0.5570 +4854 6714 0.4040 +4854 6772 0.6540 +4854 6774 0.4820 +4854 6777 0.5280 +4854 6868 0.9400 +4854 6876 0.4970 +4854 6993 0.4500 +4854 7040 0.4660 +4854 7058 0.5620 +4854 7097 0.4740 +4854 7099 0.5360 +4854 7139 0.6240 +4854 7157 0.7100 +4854 7291 0.4010 +4854 7311 0.5080 +4854 7314 0.5350 +4854 7316 0.5410 +4854 7414 0.4190 +4854 7471 0.5850 +4854 7472 0.4120 +4854 7474 0.4040 +4854 7535 0.4080 +4854 8074 0.4320 +4854 8476 0.4180 +4854 8650 0.9610 +4854 8683 0.4120 +4854 8788 0.6730 +4854 8842 0.4860 +4854 8850 0.5680 +4854 9148 0.5290 +4854 9253 0.9620 +4854 9314 0.4140 +4854 9787 0.5990 +4854 9794 0.9880 +4854 10046 0.5310 +4854 10320 0.6340 +4854 10413 0.4310 +4854 10460 0.9080 +4854 10499 0.4100 +4854 10683 0.9980 +4854 10763 0.4120 +4854 10959 0.4440 +4854 11060 0.9040 +4854 11317 0.9490 +4854 22938 0.6970 +4854 23112 0.5280 +4854 23129 0.5980 +4854 23220 0.6990 +4854 23286 0.5600 +4854 23385 0.8170 +4854 23462 0.8920 +4854 23493 0.8540 +4854 23509 0.7750 +4854 26052 0.4970 +4854 26508 0.8350 +4854 26523 0.5400 +4854 27161 0.5890 +4854 27327 0.5080 +4854 28514 0.9990 +4854 51107 0.8600 +4854 51162 0.6850 +4854 51593 0.7230 +4854 53353 0.4920 +4854 54361 0.5630 +4854 54492 0.5400 +4854 54567 0.9980 +4854 55294 0.5010 +4854 55534 0.9860 +4854 55851 0.7650 +4854 56983 0.6130 +4854 57534 0.4730 +4854 57801 0.5760 +4854 64241 0.6240 +4854 79923 0.5500 +4854 80310 0.4160 +4854 83464 0.7300 +4854 84441 0.9780 +4854 91526 0.4390 +4854 113878 0.7450 +4854 142678 0.4960 +4854 151636 0.7030 +4854 171558 0.8100 +4854 192669 0.5360 +4854 192670 0.5270 +4854 196403 0.7390 +4854 388585 0.9300 +4854 441478 0.7000 +4854 100133941 0.4340 +4854 100423062 0.6130 +4855 4907 0.4010 +4855 5045 0.6240 +4855 5089 0.7380 +4855 5090 0.5480 +4855 5175 0.5220 +4855 5241 0.5370 +4855 5533 0.5120 +4855 5578 0.5370 +4855 5625 0.4240 +4855 5663 0.8430 +4855 5664 0.7520 +4855 5682 0.4210 +4855 5683 0.4130 +4855 5684 0.4210 +4855 5685 0.4210 +4855 5686 0.4210 +4855 5687 0.4240 +4855 5688 0.4940 +4855 5689 0.4350 +4855 5690 0.4210 +4855 5691 0.4240 +4855 5692 0.4210 +4855 5693 0.4380 +4855 5694 0.4010 +4855 5695 0.4230 +4855 5696 0.5860 +4855 5698 0.4580 +4855 5699 0.4260 +4855 5700 0.4150 +4855 5701 0.4150 +4855 5702 0.4110 +4855 5704 0.4110 +4855 5705 0.4150 +4855 5706 0.4110 +4855 5707 0.4020 +4855 5708 0.4170 +4855 5710 0.4330 +4855 5713 0.4360 +4855 5714 0.4080 +4855 5715 0.4140 +4855 5716 0.4490 +4855 5718 0.4410 +4855 5870 0.4280 +4855 5986 0.9260 +4855 5999 0.4470 +4855 6233 0.5340 +4855 6400 0.4090 +4855 6500 0.5230 +4855 6515 0.4020 +4855 6591 0.4090 +4855 6615 0.4140 +4855 6790 0.4400 +4855 6868 0.9380 +4855 6941 0.4010 +4855 7010 0.4750 +4855 7026 0.4210 +4855 7075 0.4350 +4855 7122 0.4090 +4855 7148 0.5600 +4855 7157 0.5730 +4855 7280 0.4290 +4855 7311 0.5080 +4855 7314 0.5350 +4855 7316 0.5350 +4855 7450 0.5190 +4855 7534 0.7430 +4855 8202 0.4620 +4855 8379 0.4340 +4855 8454 0.5020 +4855 8650 0.9520 +4855 8788 0.4570 +4855 8842 0.6290 +4855 8850 0.5560 +4855 9253 0.9520 +4855 9429 0.5380 +4855 9647 0.4100 +4855 9722 0.4430 +4855 9794 0.9840 +4855 9861 0.4150 +4855 9881 0.4340 +4855 9978 0.4810 +4855 10046 0.5180 +4855 10213 0.4360 +4855 10402 0.4130 +4855 10460 0.9070 +4855 10554 0.6260 +4855 10555 0.4010 +4855 10578 0.6410 +4855 10665 0.5280 +4855 10683 0.9980 +4855 10894 0.4020 +4855 10959 0.4140 +4855 11317 0.9330 +4855 22938 0.6000 +4855 23112 0.5320 +4855 23220 0.7050 +4855 23385 0.8220 +4855 23462 0.9110 +4855 23493 0.8960 +4855 23509 0.6400 +4855 26508 0.6380 +4855 26523 0.5270 +4855 27161 0.5350 +4855 27327 0.4990 +4855 28514 0.9980 +4855 29801 0.4140 +4855 51107 0.7880 +4855 51162 0.8440 +4855 51593 0.7850 +4855 51705 0.4780 +4855 54345 0.4520 +4855 54538 0.4520 +4855 54567 0.9980 +4855 54922 0.4420 +4855 55294 0.7800 +4855 55534 0.9810 +4855 55851 0.7720 +4855 56244 0.4980 +4855 56983 0.5380 +4855 57628 0.4370 +4855 57761 0.4200 +4855 57801 0.4880 +4855 64321 0.4180 +4855 79812 0.4020 +4855 83464 0.7200 +4855 84062 0.4690 +4855 84441 0.9710 +4855 91752 0.5560 +4855 113878 0.7340 +4855 151636 0.7020 +4855 192669 0.5270 +4855 192670 0.5310 +4855 196403 0.7740 +4855 267012 0.4950 +4855 319100 0.4190 +4855 388585 0.7970 +4855 441478 0.4810 +4855 100133941 0.4320 +4856 5179 0.4050 +4856 5361 0.5490 +4856 5436 0.6390 +4856 5610 0.4180 +4856 5970 0.5660 +4856 6275 0.6540 +4856 6678 0.7660 +4856 6714 0.5570 +4856 6772 0.4310 +4856 7082 0.4830 +4856 7450 0.7000 +4856 7471 0.6650 +4856 8076 0.4710 +4856 9518 0.4500 +4856 9636 0.4170 +4856 10631 0.6300 +4856 27315 0.5120 +4856 51162 0.4220 +4856 83872 0.4620 +4857 4858 0.7700 +4857 4904 0.5280 +4857 5725 0.7550 +4857 5935 0.4020 +4857 5936 0.4960 +4857 5978 0.5490 +4857 6092 0.4810 +4857 6323 0.5540 +4857 6426 0.6370 +4857 6427 0.4250 +4857 6428 0.5290 +4857 6429 0.4150 +4857 6430 0.4090 +4857 6431 0.5480 +4857 6434 0.4270 +4857 7072 0.4390 +4857 7158 0.4400 +4857 7292 0.4180 +4857 7798 0.4430 +4857 8683 0.4770 +4857 9353 0.4100 +4857 9369 0.7720 +4857 9378 0.6910 +4857 9379 0.7240 +4857 9444 0.4550 +4857 9743 0.4300 +4857 9987 0.4800 +4857 10150 0.5010 +4857 10243 0.5200 +4857 10656 0.4550 +4857 10657 0.4680 +4857 10658 0.5310 +4857 10659 0.4930 +4857 10949 0.4480 +4857 11104 0.4710 +4857 11189 0.4820 +4857 11338 0.4370 +4857 22889 0.4030 +4857 23543 0.6850 +4857 29896 0.4530 +4857 51366 0.7850 +4857 51747 0.4440 +4857 54715 0.7160 +4857 54845 0.4450 +4857 55225 0.4680 +4857 55536 0.4260 +4857 55692 0.4120 +4857 55796 0.4890 +4857 56853 0.4850 +4857 57555 0.4940 +4857 58155 0.8700 +4857 83641 0.8470 +4857 83887 0.4020 +4857 84530 0.6730 +4857 93986 0.4050 +4857 114798 0.4910 +4857 151963 0.4200 +4857 202559 0.4310 +4857 387509 0.4140 +4858 4904 0.4900 +4858 5725 0.6820 +4858 6323 0.7000 +4858 6324 0.5030 +4858 6327 0.5410 +4858 6426 0.5900 +4858 6606 0.4310 +4858 6607 0.4650 +4858 7536 0.4420 +4858 8087 0.5510 +4858 9513 0.5760 +4858 9987 0.6010 +4858 10150 0.4580 +4858 10243 0.5270 +4858 10482 0.4060 +4858 10656 0.4070 +4858 10658 0.5400 +4858 10659 0.4330 +4858 22999 0.4230 +4858 23191 0.4360 +4858 23543 0.6800 +4858 26747 0.4960 +4858 54715 0.6920 +4858 55796 0.4730 +4858 56001 0.4240 +4858 56853 0.4480 +4858 57507 0.4100 +4858 57532 0.4950 +4858 58155 0.8930 +4858 83641 0.8530 +4858 84530 0.6620 +4858 343472 0.4380 +4858 728343 0.4240 +4858 100507341 0.4010 +4860 4907 0.9900 +4860 4968 0.8200 +4860 5226 0.4050 +4860 5238 0.6070 +4860 5464 0.5430 +4860 5471 0.4700 +4860 5591 0.4180 +4860 5631 0.4960 +4860 5634 0.4670 +4860 5743 0.4180 +4860 5834 0.4790 +4860 5836 0.4810 +4860 5837 0.4760 +4860 5896 0.4360 +4860 6035 0.6550 +4860 6611 0.7640 +4860 6723 0.7420 +4860 7070 0.4970 +4860 7084 0.9410 +4860 7167 0.5080 +4860 7371 0.4070 +4860 7372 0.5770 +4860 7378 0.9940 +4860 7498 0.9970 +4860 7535 0.4480 +4860 7837 0.4850 +4860 8833 0.7590 +4860 9446 0.4490 +4860 9563 0.4370 +4860 9615 0.9910 +4860 10135 0.9340 +4860 10606 0.4590 +4860 10653 0.4970 +4860 22933 0.9160 +4860 22978 0.9560 +4860 23057 0.6250 +4860 23408 0.9180 +4860 23409 0.9130 +4860 23410 0.9140 +4860 23411 0.9310 +4860 23475 0.4200 +4860 23583 0.5290 +4860 27068 0.5620 +4860 27231 0.9420 +4860 27440 0.4090 +4860 30833 0.9660 +4860 50808 0.4450 +4860 51020 0.8100 +4860 51071 0.6950 +4860 51074 0.5730 +4860 51251 0.9190 +4860 51292 0.4790 +4860 51547 0.9090 +4860 51548 0.9130 +4860 51602 0.4250 +4860 51726 0.6230 +4860 51727 0.4740 +4860 51816 0.9650 +4860 54870 0.4700 +4860 54981 0.9590 +4860 55034 0.7140 +4860 55152 0.4940 +4860 55191 0.4550 +4860 55256 0.4230 +4860 55276 0.8400 +4860 55856 0.6010 +4860 56952 0.7300 +4860 56953 0.9620 +4860 57026 0.4120 +4860 57412 0.5520 +4860 58478 0.4040 +4860 64077 0.4090 +4860 64080 0.6810 +4860 64802 0.7160 +4860 81932 0.5880 +4860 84064 0.4100 +4860 84245 0.8810 +4860 84618 0.9400 +4860 90353 0.7950 +4860 93034 0.9150 +4860 93100 0.9480 +4860 113179 0.5310 +4860 114112 0.5380 +4860 115024 0.9150 +4860 122481 0.4060 +4860 122622 0.5190 +4860 133686 0.6630 +4860 134637 0.5290 +4860 137902 0.4820 +4860 139596 0.9640 +4860 140838 0.5870 +4860 144193 0.7190 +4860 151531 0.9960 +4860 154141 0.5900 +4860 161823 0.4910 +4860 221823 0.4810 +4860 283209 0.8610 +4860 283871 0.4100 +4860 349565 0.6580 +4860 100526794 0.9150 +4861 4862 0.5660 +4861 5187 0.6440 +4861 5816 0.5150 +4861 7080 0.4460 +4861 9575 0.4950 +4861 9915 0.7670 +4861 10000 0.5140 +4861 25822 0.4270 +4861 26468 0.6790 +4861 51719 0.4020 +4861 54583 0.4910 +4861 56938 0.4020 +4861 56955 0.4920 +4861 79365 0.5420 +4861 81617 0.4020 +4861 84539 0.4130 +4861 112398 0.4720 +4861 112399 0.5920 +4861 139135 0.5620 +4861 266743 0.4170 +4861 431707 0.4500 +4862 5054 0.5630 +4862 5105 0.4470 +4862 5187 0.9100 +4862 5451 0.4470 +4862 5465 0.7970 +4862 5468 0.5630 +4862 5469 0.4520 +4862 5914 0.6780 +4862 6095 0.9810 +4862 6096 0.9270 +4862 6097 0.8890 +4862 6256 0.7900 +4862 6604 0.4230 +4862 6907 0.4910 +4862 7008 0.6560 +4862 7067 0.5220 +4862 7376 0.5480 +4862 7434 0.4220 +4862 7465 0.4130 +4862 8202 0.6280 +4862 8204 0.6050 +4862 8553 0.9720 +4862 8648 0.4570 +4862 8841 0.6060 +4862 8850 0.7420 +4862 8863 0.9110 +4862 8864 0.9880 +4862 8893 0.4590 +4862 8914 0.8960 +4862 8945 0.6410 +4862 9513 0.4850 +4862 9572 0.9850 +4862 9575 0.9980 +4862 9611 0.6410 +4862 9975 0.9470 +4862 10135 0.7220 +4862 10498 0.4030 +4862 10499 0.4750 +4862 10891 0.6760 +4862 23054 0.4470 +4862 23411 0.5350 +4862 25819 0.7050 +4862 26224 0.7980 +4862 28999 0.6120 +4862 56938 0.9970 +4862 57491 0.4250 +4862 64067 0.4080 +4862 79365 0.9690 +4862 79718 0.4490 +4862 79836 0.5250 +4862 80205 0.4430 +4862 85441 0.4260 +4862 85457 0.8020 +4862 94233 0.5510 +4862 96764 0.4150 +4862 139135 0.5610 +4862 148523 0.5870 +4862 266743 0.6620 +4862 102800317 0.7060 +4863 4914 0.4600 +4863 5931 0.4720 +4863 6277 0.4360 +4863 7884 0.5920 +4863 8065 0.4220 +4863 8161 0.7580 +4863 8189 0.5090 +4863 8295 0.8680 +4863 8349 0.6330 +4863 8361 0.7810 +4863 8369 0.6440 +4863 8900 0.4880 +4863 9140 0.4500 +4863 9657 0.4540 +4863 9786 0.6440 +4863 9994 0.8920 +4863 10963 0.6170 +4863 23086 0.4440 +4863 25988 0.8970 +4863 26330 0.4580 +4863 26512 0.4120 +4863 51095 0.4260 +4863 51222 0.6180 +4863 51593 0.4510 +4863 51692 0.7080 +4863 51735 0.4310 +4863 54856 0.6370 +4863 55180 0.4430 +4863 57585 0.7300 +4863 84250 0.4050 +4863 84967 0.7140 +4863 134353 0.8750 +4863 143888 0.5960 +4863 160140 0.5000 +4863 166647 0.4140 +4863 166863 0.4180 +4863 283464 0.4290 +4864 5007 0.6760 +4864 5045 0.4460 +4864 5122 0.5310 +4864 5205 0.4670 +4864 5660 0.4880 +4864 5796 0.4230 +4864 5868 0.4380 +4864 6446 0.4240 +4864 6609 0.7300 +4864 6646 0.5200 +4864 6720 0.8580 +4864 6721 0.9300 +4864 6770 0.6860 +4864 7351 0.4030 +4864 7357 0.5840 +4864 7879 0.4050 +4864 7942 0.4470 +4864 8411 0.4060 +4864 8435 0.4010 +4864 8647 0.4640 +4864 8856 0.6320 +4864 9213 0.4820 +4864 9218 0.4520 +4864 9317 0.5220 +4864 9567 0.9940 +4864 9619 0.7960 +4864 9885 0.4550 +4864 9971 0.5030 +4864 10577 0.9990 +4864 10858 0.4640 +4864 10948 0.8630 +4864 11254 0.5890 +4864 23017 0.4720 +4864 23788 0.4130 +4864 25970 0.6690 +4864 27183 0.4040 +4864 27346 0.9780 +4864 29915 0.4520 +4864 29919 0.4220 +4864 30816 0.6700 +4864 51141 0.5230 +4864 54677 0.5790 +4864 57192 0.5560 +4864 57476 0.8090 +4864 57552 0.5270 +4864 57704 0.4280 +4864 64137 0.4190 +4864 64240 0.4790 +4864 64241 0.4410 +4864 79047 0.4040 +4864 79068 0.6280 +4864 83930 0.7570 +4864 114879 0.9990 +4864 114880 0.4780 +4864 132789 0.4870 +4864 134429 0.4910 +4864 147463 0.6770 +4864 153129 0.9640 +4864 200576 0.4390 +4864 201931 0.4640 +4864 219931 0.5400 +4864 257194 0.4160 +4864 338557 0.4670 +4867 4868 0.4620 +4867 5147 0.4890 +4867 5310 0.8860 +4867 5311 0.7210 +4867 5314 0.7420 +4867 5903 0.4010 +4867 6102 0.4220 +4867 6103 0.9480 +4867 6794 0.7870 +4867 7280 0.6610 +4867 7369 0.6930 +4867 7547 0.4340 +4867 7840 0.4610 +4867 7851 0.9460 +4867 8100 0.7220 +4867 8481 0.8150 +4867 8607 0.4870 +4867 8751 0.6700 +4867 8766 0.6020 +4867 9564 0.8930 +4867 9657 0.9430 +4867 9738 0.6640 +4867 9742 0.5530 +4867 9786 0.4720 +4867 10188 0.5170 +4867 10207 0.7470 +4867 10637 0.4260 +4867 10686 0.4980 +4867 10806 0.8620 +4867 11127 0.4500 +4867 22897 0.7370 +4867 23005 0.4180 +4867 23090 0.4410 +4867 23322 0.9990 +4867 23511 0.4710 +4867 25886 0.4710 +4867 26005 0.5060 +4867 26123 0.7830 +4867 26146 0.5060 +4867 26160 0.5920 +4867 27031 0.9870 +4867 27077 0.9290 +4867 27130 0.9650 +4867 27241 0.7300 +4867 50855 0.5450 +4867 51057 0.5000 +4867 51098 0.4130 +4867 51134 0.4940 +4867 51259 0.9400 +4867 51524 0.7280 +4867 51626 0.4100 +4867 54806 0.9930 +4867 54903 0.9620 +4867 55081 0.4830 +4867 55212 0.6800 +4867 55812 0.5960 +4867 55997 0.5440 +4867 56288 0.5000 +4867 57096 0.9070 +4867 57545 0.9520 +4867 57560 0.4200 +4867 57728 0.5340 +4867 63929 0.6550 +4867 64398 0.8220 +4867 65062 0.9090 +4867 65250 0.6720 +4867 79140 0.4860 +4867 79583 0.8900 +4867 79598 0.6140 +4867 79600 0.8370 +4867 79659 0.4370 +4867 79738 0.6560 +4867 79809 0.6400 +4867 79848 0.5460 +4867 79867 0.7430 +4867 80173 0.4340 +4867 80184 0.9780 +4867 80776 0.8850 +4867 84140 0.4130 +4867 84220 0.5670 +4867 84314 0.7010 +4867 84662 0.7440 +4867 84902 0.4650 +4867 85302 0.4310 +4867 90410 0.5250 +4867 91147 0.9940 +4867 91754 0.6150 +4867 92335 0.4700 +4867 95681 0.6250 +4867 117177 0.6140 +4867 124401 0.7460 +4867 129880 0.6260 +4867 132320 0.5260 +4867 140609 0.5080 +4867 166379 0.6700 +4867 200728 0.8190 +4867 200894 0.8720 +4867 203068 0.7480 +4867 203286 0.7040 +4867 219854 0.4050 +4867 261734 0.9990 +4867 282809 0.5620 +4867 283232 0.4720 +4867 284086 0.7060 +4867 374654 0.5840 +4867 387707 0.4500 +4867 392509 0.4280 +4867 729540 0.5680 +4868 4879 0.4220 +4868 5076 0.7830 +4868 5174 0.5590 +4868 5175 0.4800 +4868 5290 0.5090 +4868 5291 0.5090 +4868 5295 0.5200 +4868 5296 0.4990 +4868 5361 0.4750 +4868 5420 0.9280 +4868 5458 0.4300 +4868 5800 0.6670 +4868 5921 0.4330 +4868 5972 0.7380 +4868 6092 0.4950 +4868 6347 0.4240 +4868 6521 0.4340 +4868 6524 0.4400 +4868 6557 0.6260 +4868 6559 0.5630 +4868 6709 0.6760 +4868 6711 0.6860 +4868 7040 0.5890 +4868 7082 0.9940 +4868 7225 0.9900 +4868 7369 0.5730 +4868 7454 0.5860 +4868 7490 0.9350 +4868 7827 0.9990 +4868 8029 0.5870 +4868 8440 0.9640 +4868 8542 0.7910 +4868 8573 0.7020 +4868 8796 0.6010 +4868 8826 0.9450 +4868 8976 0.9920 +4868 9213 0.4970 +4868 9378 0.4690 +4868 9379 0.4450 +4868 9863 0.7620 +4868 10076 0.4730 +4868 10630 0.5310 +4868 10736 0.5530 +4868 10763 0.5650 +4868 11321 0.4260 +4868 11346 0.9660 +4868 22829 0.4420 +4868 22871 0.4340 +4868 22925 0.5150 +4868 23109 0.7620 +4868 23213 0.5890 +4868 23607 0.9990 +4868 25844 0.5490 +4868 27031 0.5030 +4868 27235 0.5460 +4868 27293 0.4760 +4868 30011 0.6050 +4868 50485 0.4680 +4868 50507 0.4130 +4868 51004 0.5220 +4868 51196 0.9480 +4868 54413 0.4260 +4868 55243 0.9990 +4868 55644 0.5570 +4868 56288 0.5140 +4868 57107 0.4740 +4868 57502 0.4380 +4868 57554 0.5730 +4868 57555 0.4400 +4868 64423 0.9270 +4868 79934 0.5820 +4868 80790 0.4350 +4868 83478 0.5430 +4868 84063 0.9840 +4868 84623 0.9960 +4868 130271 0.5230 +4868 140885 0.6190 +4868 221981 0.4220 +4868 261734 0.4400 +4868 286204 0.4350 +4869 4893 0.8320 +4869 4904 0.8120 +4869 4914 0.4190 +4869 4926 0.8580 +4869 4927 0.5760 +4869 4928 0.7940 +4869 4931 0.4540 +4869 5036 0.8560 +4869 5093 0.4650 +4869 5156 0.5830 +4869 5159 0.4770 +4869 5216 0.4870 +4869 5245 0.6320 +4869 5250 0.5180 +4869 5290 0.7120 +4869 5295 0.7820 +4869 5315 0.4340 +4869 5335 0.7670 +4869 5371 0.7740 +4869 5434 0.4050 +4869 5460 0.5020 +4869 5464 0.4170 +4869 5478 0.7280 +4869 5495 0.4180 +4869 5501 0.5350 +4869 5515 0.6000 +4869 5573 0.7050 +4869 5591 0.4210 +4869 5594 0.5180 +4869 5610 0.6590 +4869 5688 0.4210 +4869 5718 0.4210 +4869 5725 0.4320 +4869 5728 0.5070 +4869 5757 0.5530 +4869 5781 0.7890 +4869 5885 0.5260 +4869 5888 0.4260 +4869 5901 0.8450 +4869 5902 0.4750 +4869 5903 0.7270 +4869 5914 0.9380 +4869 5925 0.8150 +4869 5928 0.9600 +4869 5931 0.8740 +4869 5970 0.5790 +4869 5979 0.5880 +4869 5983 0.4320 +4869 6098 0.4480 +4869 6103 0.5820 +4869 6117 0.4840 +4869 6122 0.7270 +4869 6124 0.9140 +4869 6125 0.9760 +4869 6128 0.7850 +4869 6129 0.7490 +4869 6130 0.7470 +4869 6132 0.6390 +4869 6133 0.4440 +4869 6135 0.7020 +4869 6137 0.5770 +4869 6138 0.7330 +4869 6139 0.5260 +4869 6141 0.4990 +4869 6142 0.5940 +4869 6143 0.5370 +4869 6144 0.4480 +4869 6146 0.4310 +4869 6147 0.8260 +4869 6152 0.5810 +4869 6154 0.4380 +4869 6155 0.5050 +4869 6160 0.4500 +4869 6161 0.4670 +4869 6166 0.4220 +4869 6168 0.8520 +4869 6169 0.4200 +4869 6175 0.7310 +4869 6176 0.6210 +4869 6182 0.6550 +4869 6187 0.5170 +4869 6188 0.6570 +4869 6189 0.7000 +4869 6191 0.6440 +4869 6193 0.7380 +4869 6194 0.7280 +4869 6201 0.6700 +4869 6202 0.5800 +4869 6203 0.8130 +4869 6204 0.5130 +4869 6205 0.5400 +4869 6206 0.4690 +4869 6207 0.4870 +4869 6208 0.6990 +4869 6217 0.7150 +4869 6218 0.4060 +4869 6222 0.4870 +4869 6223 0.6830 +4869 6224 0.7610 +4869 6227 0.4430 +4869 6228 0.5080 +4869 6229 0.5870 +4869 6230 0.5190 +4869 6231 0.4820 +4869 6232 0.4760 +4869 6233 0.5470 +4869 6234 0.6500 +4869 6238 0.6540 +4869 6396 0.5140 +4869 6418 0.7070 +4869 6421 0.5550 +4869 6426 0.7920 +4869 6427 0.7300 +4869 6428 0.6730 +4869 6464 0.8390 +4869 6477 0.4010 +4869 6500 0.5940 +4869 6595 0.4670 +4869 6597 0.6640 +4869 6598 0.5270 +4869 6606 0.4180 +4869 6612 0.6930 +4869 6613 0.8350 +4869 6632 0.4790 +4869 6633 0.6160 +4869 6635 0.4060 +4869 6636 0.5540 +4869 6657 0.4510 +4869 6667 0.6520 +4869 6714 0.6580 +4869 6730 0.4100 +4869 6731 0.4430 +4869 6741 0.4850 +4869 6742 0.4270 +4869 6749 0.5400 +4869 6774 0.7440 +4869 6776 0.8090 +4869 6777 0.7270 +4869 6780 0.5490 +4869 6790 0.6010 +4869 6794 0.4510 +4869 6795 0.4950 +4869 6801 0.5300 +4869 6838 0.9430 +4869 6880 0.4180 +4869 6950 0.6790 +4869 6996 0.4580 +4869 7015 0.5270 +4869 7088 0.4170 +4869 7150 0.6650 +4869 7153 0.5290 +4869 7155 0.5610 +4869 7157 0.9970 +4869 7159 0.4380 +4869 7170 0.8460 +4869 7171 0.8200 +4869 7175 0.6830 +4869 7178 0.5620 +4869 7185 0.4680 +4869 7203 0.4230 +4869 7270 0.4090 +4869 7295 0.4400 +4869 7307 0.7180 +4869 7311 0.5240 +4869 7316 0.4050 +4869 7329 0.5610 +4869 7341 0.7130 +4869 7343 0.8140 +4869 7408 0.5660 +4869 7414 0.5740 +4869 7415 0.5100 +4869 7416 0.4320 +4869 7443 0.4170 +4869 7471 0.4130 +4869 7490 0.7220 +4869 7514 0.7890 +4869 7520 0.4300 +4869 7528 0.7640 +4869 7531 0.6760 +4869 7532 0.4580 +4869 7534 0.7450 +4869 7704 0.7390 +4869 7913 0.6120 +4869 8019 0.6950 +4869 8021 0.7260 +4869 8028 0.4350 +4869 8079 0.5950 +4869 8086 0.5110 +4869 8091 0.5700 +4869 8106 0.4160 +4869 8218 0.4830 +4869 8233 0.6650 +4869 8243 0.5130 +4869 8290 0.5840 +4869 8295 0.4400 +4869 8312 0.4330 +4869 8337 0.6520 +4869 8338 0.7360 +4869 8349 0.8290 +4869 8350 0.8090 +4869 8356 0.6670 +4869 8361 0.9800 +4869 8369 0.8230 +4869 8454 0.5760 +4869 8467 0.6800 +4869 8480 0.5370 +4869 8496 0.5600 +4869 8568 0.8080 +4869 8570 0.6910 +4869 8607 0.8620 +4869 8661 0.4560 +4869 8663 0.4660 +4869 8666 0.4010 +4869 8667 0.4870 +4869 8668 0.5820 +4869 8842 0.4550 +4869 8878 0.7110 +4869 8886 0.5500 +4869 8894 0.6610 +4869 8971 0.5030 +4869 9045 0.7060 +4869 9049 0.4020 +4869 9055 0.4050 +4869 9100 0.4270 +4869 9126 0.5640 +4869 9188 0.8710 +4869 9212 0.6820 +4869 9221 0.4920 +4869 9318 0.4270 +4869 9320 0.6650 +4869 9321 0.4440 +4869 9349 0.6210 +4869 9401 0.5890 +4869 9451 0.5020 +4869 9475 0.7900 +4869 9584 0.5120 +4869 9588 0.4650 +4869 9589 0.4940 +4869 9611 0.5940 +4869 9631 0.5640 +4869 9648 0.5220 +4869 9688 0.5670 +4869 9782 0.5120 +4869 9790 0.4500 +4869 9818 0.5330 +4869 9883 0.4990 +4869 9933 0.7180 +4869 9939 0.4400 +4869 9972 0.5910 +4869 9978 0.6170 +4869 9987 0.4250 +4869 10009 0.4190 +4869 10036 0.4750 +4869 10038 0.7460 +4869 10075 0.4220 +4869 10112 0.4190 +4869 10146 0.5520 +4869 10155 0.7180 +4869 10197 0.4080 +4869 10236 0.5620 +4869 10291 0.4340 +4869 10320 0.4360 +4869 10342 0.6810 +4869 10360 0.9530 +4869 10361 0.8400 +4869 10399 0.7950 +4869 10412 0.5320 +4869 10419 0.4540 +4869 10436 0.4900 +4869 10480 0.6560 +4869 10514 0.8500 +4869 10528 0.7170 +4869 10549 0.4430 +4869 10575 0.4960 +4869 10576 0.6700 +4869 10594 0.4150 +4869 10614 0.5030 +4869 10643 0.5530 +4869 10664 0.9750 +4869 10735 0.6160 +4869 10762 0.6990 +4869 10769 0.8000 +4869 10775 0.5430 +4869 10799 0.6390 +4869 10817 0.7000 +4869 10818 0.8280 +4869 10915 0.5050 +4869 10916 0.5610 +4869 10940 0.4670 +4869 10969 0.7670 +4869 10971 0.5160 +4869 11051 0.5320 +4869 11052 0.4820 +4869 11060 0.5100 +4869 11083 0.4470 +4869 11097 0.5460 +4869 11140 0.4150 +4869 11198 0.4050 +4869 11201 0.6950 +4869 11224 0.6630 +4869 11315 0.4540 +4869 11322 0.6650 +4869 11335 0.5510 +4869 11338 0.4260 +4869 11339 0.5690 +4869 22820 0.4710 +4869 22872 0.7370 +4869 22918 0.4990 +4869 22948 0.4610 +4869 22981 0.4020 +4869 22984 0.5190 +4869 23029 0.5260 +4869 23070 0.5450 +4869 23076 0.6820 +4869 23165 0.6020 +4869 23212 0.5720 +4869 23225 0.5540 +4869 23246 0.7570 +4869 23279 0.5760 +4869 23367 0.4570 +4869 23378 0.6720 +4869 23405 0.4910 +4869 23411 0.5160 +4869 23421 0.5570 +4869 23476 0.5260 +4869 23481 0.4590 +4869 23511 0.5370 +4869 23521 0.6990 +4869 23522 0.4370 +4869 23528 0.4470 +4869 23560 0.6950 +4869 23569 0.4340 +4869 23608 0.4840 +4869 23613 0.4470 +4869 23636 0.7130 +4869 23643 0.4530 +4869 23647 0.4390 +4869 25828 0.4590 +4869 25871 0.7600 +4869 25885 0.5500 +4869 26040 0.6260 +4869 26135 0.4730 +4869 26156 0.6060 +4869 26168 0.9330 +4869 26266 0.4450 +4869 26354 0.8130 +4869 26523 0.7310 +4869 26986 0.4710 +4869 27000 0.4830 +4869 27043 0.5070 +4869 27044 0.4290 +4869 27101 0.4760 +4869 27161 0.9920 +4869 27316 0.5110 +4869 27327 0.4630 +4869 27436 0.8510 +4869 29889 0.9040 +4869 29997 0.6120 +4869 51018 0.4930 +4869 51065 0.4970 +4869 51119 0.5700 +4869 51121 0.4570 +4869 51202 0.4270 +4869 51231 0.4300 +4869 51491 0.6000 +4869 51530 0.5980 +4869 51547 0.4490 +4869 51574 0.6100 +4869 51602 0.6980 +4869 51773 0.5320 +4869 53335 0.4770 +4869 53371 0.5480 +4869 54069 0.6570 +4869 54148 0.4920 +4869 54505 0.4100 +4869 54606 0.6200 +4869 54700 0.4190 +4869 54790 0.7760 +4869 54875 0.4240 +4869 54881 0.6040 +4869 54888 0.8670 +4869 54913 0.4950 +4869 55131 0.4750 +4869 55166 0.5530 +4869 55206 0.4320 +4869 55226 0.4590 +4869 55294 0.6430 +4869 55299 0.6000 +4869 55320 0.5920 +4869 55355 0.9830 +4869 55363 0.5130 +4869 55367 0.4490 +4869 55622 0.4030 +4869 55646 0.4650 +4869 55651 0.4270 +4869 55684 0.4680 +4869 55705 0.4020 +4869 55706 0.5470 +4869 55723 0.6320 +4869 55746 0.5740 +4869 55759 0.5150 +4869 55839 0.5550 +4869 55904 0.4050 +4869 56257 0.5100 +4869 56259 0.4270 +4869 56339 0.4320 +4869 56647 0.4250 +4869 57062 0.4560 +4869 57082 0.5670 +4869 57096 0.4110 +4869 57109 0.4440 +4869 57122 0.5830 +4869 57448 0.4860 +4869 57602 0.6220 +4869 57674 0.5570 +4869 57721 0.4150 +4869 63035 0.5850 +4869 64105 0.6080 +4869 64282 0.4710 +4869 64324 0.4740 +4869 64946 0.6080 +4869 64949 0.4260 +4869 65080 0.4360 +4869 65083 0.7420 +4869 79019 0.5680 +4869 79023 0.6010 +4869 79039 0.5260 +4869 79080 0.4750 +4869 79172 0.5420 +4869 79590 0.4560 +4869 79682 0.6290 +4869 79697 0.5180 +4869 79759 0.5190 +4869 79828 0.4010 +4869 79858 0.4300 +4869 79870 0.6610 +4869 79890 0.4160 +4869 79902 0.5690 +4869 79923 0.5070 +4869 80067 0.6500 +4869 80135 0.4750 +4869 80152 0.5950 +4869 80304 0.6140 +4869 81554 0.4210 +4869 81608 0.4610 +4869 81620 0.4590 +4869 81875 0.6200 +4869 81929 0.5390 +4869 83590 0.4430 +4869 83732 0.4890 +4869 83743 0.5430 +4869 83987 0.4220 +4869 84135 0.4340 +4869 84154 0.5810 +4869 84260 0.6920 +4869 84295 0.7340 +4869 84340 0.5160 +4869 84365 0.6620 +4869 84444 0.5890 +4869 84549 0.6110 +4869 84790 0.4620 +4869 84823 0.5010 +4869 90441 0.4660 +4869 91687 0.5280 +4869 92140 0.6830 +4869 92421 0.4150 +4869 94239 0.4160 +4869 113251 0.4240 +4869 117246 0.5730 +4869 120892 0.5230 +4869 128866 0.5220 +4869 129401 0.5350 +4869 149041 0.5100 +4869 155061 0.5830 +4869 171023 0.8970 +4869 200916 0.4730 +4869 201254 0.5170 +4869 203228 0.5630 +4869 205564 0.8710 +4869 221002 0.4280 +4869 266812 0.4770 +4869 285855 0.6370 +4869 339230 0.6220 +4869 348995 0.5580 +4869 378708 0.5590 +4869 387103 0.6490 +4869 401541 0.5260 +4869 440093 0.4890 +4869 440686 0.4720 +4869 643836 0.4040 +4869 653604 0.4820 +4869 100101267 0.5040 +4878 4879 0.9810 +4878 4880 0.9830 +4878 4881 0.9990 +4878 4882 0.9990 +4878 4883 0.9990 +4878 5020 0.6000 +4878 5054 0.4030 +4878 5225 0.5130 +4878 5350 0.6270 +4878 5443 0.6040 +4878 5465 0.4190 +4878 5468 0.4010 +4878 5566 0.7120 +4878 5567 0.7120 +4878 5568 0.7150 +4878 5592 0.6090 +4878 5593 0.4270 +4878 5595 0.4540 +4878 5599 0.4720 +4878 5604 0.5440 +4878 5610 0.4650 +4878 5617 0.6210 +4878 5732 0.9000 +4878 5741 0.4120 +4878 5972 0.9410 +4878 6197 0.4430 +4878 6262 0.6180 +4878 6288 0.4860 +4878 6331 0.6940 +4878 6474 0.6030 +4878 6517 0.4090 +4878 6524 0.4060 +4878 6546 0.4540 +4878 6588 0.5320 +4878 6604 0.5800 +4878 6622 0.4990 +4878 6722 0.6280 +4878 6750 0.4050 +4878 6863 0.5710 +4878 6909 0.7130 +4878 6910 0.9110 +4878 6911 0.4350 +4878 6926 0.6280 +4878 7040 0.5910 +4878 7045 0.4270 +4878 7124 0.5290 +4878 7134 0.4120 +4878 7135 0.5110 +4878 7137 0.8700 +4878 7138 0.4940 +4878 7139 0.7270 +4878 7168 0.4850 +4878 7253 0.9070 +4878 7273 0.5030 +4878 7276 0.6060 +4878 7432 0.4490 +4878 7434 0.9110 +4878 7837 0.4360 +4878 8048 0.6050 +4878 8618 0.4310 +4878 8654 0.6160 +4878 8850 0.5380 +4878 9096 0.4490 +4878 9370 0.4450 +4878 9464 0.6220 +4878 9496 0.4450 +4878 9499 0.4750 +4878 9518 0.4390 +4878 9622 0.4820 +4878 9718 0.4040 +4878 9969 0.5620 +4878 10021 0.6060 +4878 10631 0.4570 +4878 10699 0.9660 +4878 10891 0.4760 +4878 23125 0.6050 +4878 23261 0.5790 +4878 23467 0.7420 +4878 23493 0.4060 +4878 25937 0.7000 +4878 27063 0.5550 +4878 27302 0.4460 +4878 28996 0.4190 +4878 29777 0.4930 +4878 50507 0.4120 +4878 50805 0.6460 +4878 51776 0.4470 +4878 51778 0.5650 +4878 51806 0.5180 +4878 55742 0.4390 +4878 57057 0.5820 +4878 57591 0.4140 +4878 58498 0.8650 +4878 58503 0.4240 +4878 59272 0.4510 +4878 79258 0.7080 +4878 84033 0.4560 +4878 91608 0.6120 +4878 91860 0.5180 +4878 93649 0.6680 +4878 137902 0.4350 +4878 139760 0.9000 +4878 140628 0.4260 +4878 140838 0.6030 +4878 153443 0.5380 +4878 163688 0.5130 +4878 196500 0.5080 +4878 254552 0.4120 +4878 339324 0.5540 +4878 343263 0.4330 +4879 4880 0.9030 +4879 4881 0.9990 +4879 4882 0.9780 +4879 4883 0.9990 +4879 5286 0.5440 +4879 5350 0.5430 +4879 5741 0.4200 +4879 5816 0.4570 +4879 5972 0.7660 +4879 6262 0.4350 +4879 6331 0.5510 +4879 6524 0.4750 +4879 7040 0.4420 +4879 7124 0.5760 +4879 7135 0.5170 +4879 7137 0.8960 +4879 7139 0.8090 +4879 7273 0.4200 +4879 7276 0.5130 +4879 7447 0.4360 +4879 8048 0.4920 +4879 8074 0.4110 +4879 8654 0.5070 +4879 9370 0.6190 +4879 9518 0.5910 +4879 9542 0.4690 +4879 9759 0.4010 +4879 9969 0.7000 +4879 10699 0.5850 +4879 10718 0.4280 +4879 11123 0.4950 +4879 23467 0.4340 +4879 27063 0.4590 +4879 56729 0.4520 +4879 58498 0.5610 +4879 59272 0.5080 +4879 79258 0.6970 +4879 84666 0.4560 +4879 84706 0.4830 +4879 93649 0.5610 +4879 116512 0.4760 +4879 133396 0.4810 +4879 140838 0.5060 +4879 145957 0.5050 +4879 150572 0.4460 +4880 4881 0.9710 +4880 4882 0.9990 +4880 4883 0.9990 +4880 5139 0.5800 +4880 5225 0.4150 +4880 5592 0.5420 +4880 5593 0.4820 +4880 5744 0.5160 +4880 5972 0.5760 +4880 6473 0.6400 +4880 7180 0.4480 +4880 8576 0.6510 +4880 8654 0.5400 +4880 10321 0.4240 +4880 10699 0.5280 +4880 10763 0.4380 +4880 10952 0.4280 +4880 23467 0.5810 +4880 54867 0.5480 +4880 55218 0.5480 +4880 57092 0.4130 +4880 57211 0.5880 +4880 79258 0.5720 +4880 81846 0.5490 +4880 283383 0.6330 +4880 389421 0.5440 +4881 4882 0.9490 +4881 4883 0.5330 +4881 4886 0.4680 +4881 4887 0.6210 +4881 4889 0.6880 +4881 5136 0.7450 +4881 5137 0.7200 +4881 5138 0.7990 +4881 5139 0.7750 +4881 5140 0.7500 +4881 5141 0.4020 +4881 5145 0.7430 +4881 5146 0.7430 +4881 5147 0.6710 +4881 5148 0.7240 +4881 5149 0.6600 +4881 5152 0.8180 +4881 5153 0.7230 +4881 5158 0.7700 +4881 5167 0.9070 +4881 5169 0.9070 +4881 5225 0.6910 +4881 5313 0.9050 +4881 5315 0.9040 +4881 5361 0.7420 +4881 5443 0.9140 +4881 5566 0.4090 +4881 5567 0.4090 +4881 5568 0.4090 +4881 5592 0.7940 +4881 5593 0.4940 +4881 5972 0.5810 +4881 6295 0.4130 +4881 7252 0.9100 +4881 7295 0.4510 +4881 7424 0.4980 +4881 7432 0.9160 +4881 8452 0.4730 +4881 8654 0.8590 +4881 8829 0.6470 +4881 10201 0.6630 +4881 10371 0.8210 +4881 10699 0.6310 +4881 10846 0.7550 +4881 23467 0.8480 +4881 23567 0.4480 +4881 27019 0.4480 +4881 29922 0.6630 +4881 50940 0.7690 +4881 79258 0.6620 +4881 140738 0.5990 +4881 221264 0.7130 +4881 377841 0.6550 +4881 654364 0.6630 +4882 4883 0.5550 +4882 4975 0.4220 +4882 5136 0.7410 +4882 5137 0.7310 +4882 5138 0.7980 +4882 5139 0.8590 +4882 5140 0.7570 +4882 5141 0.4220 +4882 5145 0.7460 +4882 5146 0.7600 +4882 5147 0.6850 +4882 5148 0.7170 +4882 5149 0.6570 +4882 5152 0.7790 +4882 5153 0.7100 +4882 5158 0.7830 +4882 5167 0.9110 +4882 5169 0.9070 +4882 5225 0.4410 +4882 5313 0.9030 +4882 5315 0.9030 +4882 5592 0.5890 +4882 5593 0.5470 +4882 5972 0.4470 +4882 6473 0.4280 +4882 8654 0.8550 +4882 10201 0.6630 +4882 10699 0.5200 +4882 10846 0.7520 +4882 10952 0.5490 +4882 23467 0.8020 +4882 29922 0.6630 +4882 50940 0.7310 +4882 54867 0.6720 +4882 55218 0.6710 +4882 79258 0.4350 +4882 221264 0.7130 +4882 377841 0.6640 +4882 654364 0.6630 +4883 5225 0.5880 +4883 5592 0.5300 +4883 5593 0.6120 +4883 5972 0.6500 +4883 6550 0.5200 +4883 8654 0.4910 +4883 10699 0.5980 +4883 23037 0.4660 +4883 23467 0.8170 +4883 57211 0.6840 +4883 79258 0.5720 +4883 79849 0.7370 +4883 81846 0.6730 +4883 246744 0.6410 +4883 283383 0.7110 +4883 389421 0.6380 +4884 4885 0.5590 +4884 4948 0.6760 +4884 4969 0.4400 +4884 4976 0.5890 +4884 5955 0.7340 +4884 6904 0.6660 +4884 6999 0.4290 +4884 7068 0.4200 +4884 7425 0.4090 +4884 7474 0.4120 +4884 8910 0.5590 +4884 9573 0.4130 +4884 10225 0.4220 +4884 10458 0.5780 +4884 23466 0.4790 +4884 23467 0.6550 +4884 25945 0.5000 +4884 54881 0.4110 +4884 56954 0.5350 +4884 57030 0.4170 +4884 57622 0.4180 +4884 81706 0.5940 +4884 83943 0.6410 +4884 84631 0.8060 +4884 84866 0.4150 +4884 114798 0.6340 +4884 124626 0.4260 +4884 284069 0.4310 +4885 4948 0.6770 +4885 5020 0.5760 +4885 5173 0.6570 +4885 5179 0.4540 +4885 5367 0.6060 +4885 5955 0.7620 +4885 6622 0.4370 +4885 7094 0.4220 +4885 7425 0.5220 +4885 7980 0.4480 +4885 9456 0.6920 +4885 9463 0.5120 +4885 10040 0.4540 +4885 10769 0.4690 +4885 22871 0.7960 +4885 23466 0.4640 +4885 23467 0.8360 +4885 25893 0.4150 +4885 56154 0.4290 +4885 81706 0.4660 +4885 128178 0.4470 +4885 266743 0.5340 +4885 374918 0.4290 +4886 4887 0.5730 +4886 4889 0.8910 +4886 4985 0.6090 +4886 4988 0.5960 +4886 5020 0.7470 +4886 5173 0.6880 +4886 5179 0.6830 +4886 5367 0.6600 +4886 5368 0.6510 +4886 5443 0.7920 +4886 5539 0.9720 +4886 5540 0.4430 +4886 5660 0.5290 +4886 5697 0.9990 +4886 6295 0.4710 +4886 6347 0.4010 +4886 6364 0.4180 +4886 6372 0.4040 +4886 6374 0.4140 +4886 6714 0.5440 +4886 6750 0.7720 +4886 6751 0.6680 +4886 6752 0.5680 +4886 6753 0.5510 +4886 6754 0.5450 +4886 6755 0.5580 +4886 6863 0.5880 +4886 6869 0.4710 +4886 7054 0.4540 +4886 8620 0.5940 +4886 8862 0.5310 +4886 9283 0.5090 +4886 9607 0.4120 +4886 10316 0.5390 +4886 10563 0.4200 +4886 10874 0.6200 +4886 23213 0.4310 +4886 23240 0.4230 +4886 29899 0.4110 +4886 51052 0.6640 +4886 51083 0.6790 +4886 51738 0.9210 +4886 54331 0.8270 +4886 54951 0.4010 +4886 56923 0.5500 +4886 57484 0.4100 +4886 59350 0.4490 +4886 64106 0.4290 +4886 84539 0.5390 +4886 129521 0.4990 +4886 171024 0.4040 +4886 201798 0.4300 +4886 201895 0.4200 +4886 256933 0.5630 +4886 283869 0.5840 +4886 347148 0.7450 +4886 104909134 0.4450 +4887 4889 0.6280 +4887 4922 0.4250 +4887 4985 0.6130 +4887 4988 0.6270 +4887 5173 0.7040 +4887 5179 0.6330 +4887 5367 0.6650 +4887 5368 0.6490 +4887 5443 0.8280 +4887 5539 0.9890 +4887 5540 0.5490 +4887 5660 0.4990 +4887 5697 0.9990 +4887 5961 0.8270 +4887 6714 0.5030 +4887 6750 0.7040 +4887 6751 0.5800 +4887 6752 0.5560 +4887 6753 0.6200 +4887 6754 0.5760 +4887 6755 0.5500 +4887 6863 0.4510 +4887 7124 0.4230 +4887 7289 0.4110 +4887 7442 0.4340 +4887 8484 0.4310 +4887 8811 0.4380 +4887 8862 0.5230 +4887 9283 0.6150 +4887 9607 0.5020 +4887 10316 0.5510 +4887 10874 0.6470 +4887 25769 0.4210 +4887 26086 0.4080 +4887 26291 0.4490 +4887 51083 0.4170 +4887 51738 0.6960 +4887 54331 0.8420 +4887 56477 0.4150 +4887 56923 0.5480 +4887 84539 0.5260 +4887 127247 0.4750 +4887 129521 0.5360 +4887 131890 0.4140 +4887 256933 0.5640 +4887 266743 0.4450 +4887 283869 0.5420 +4887 339512 0.4630 +4887 104909134 0.4250 +4889 4985 0.5300 +4889 4988 0.5590 +4889 5173 0.6730 +4889 5179 0.5680 +4889 5367 0.6470 +4889 5368 0.6480 +4889 5443 0.8410 +4889 5539 0.9720 +4889 5540 0.5530 +4889 5660 0.4990 +4889 5697 0.9970 +4889 6530 0.4170 +4889 6714 0.4990 +4889 6750 0.6570 +4889 6751 0.7560 +4889 6752 0.6180 +4889 6753 0.6460 +4889 6754 0.6100 +4889 6755 0.7200 +4889 8484 0.4160 +4889 8811 0.4420 +4889 8862 0.5140 +4889 9177 0.5020 +4889 9283 0.5350 +4889 9352 0.4150 +4889 9607 0.4280 +4889 10316 0.5410 +4889 10874 0.5900 +4889 29899 0.4230 +4889 51738 0.4100 +4889 56923 0.5110 +4889 59350 0.4870 +4889 84539 0.6250 +4889 117579 0.6050 +4889 129521 0.4990 +4889 256933 0.5020 +4889 283869 0.5020 +4889 387129 0.4190 +4889 101929926 0.4480 +4891 5071 0.5040 +4891 5093 0.5440 +4891 5094 0.7050 +4891 5621 0.5370 +4891 5728 0.4580 +4891 6520 0.5060 +4891 6556 0.9370 +4891 6564 0.4460 +4891 6569 0.4420 +4891 6622 0.4020 +4891 6647 0.4120 +4891 6648 0.4230 +4891 7036 0.8380 +4891 7037 0.9600 +4891 7054 0.5060 +4891 7779 0.6740 +4891 7780 0.4470 +4891 7781 0.4120 +4891 7782 0.4710 +4891 8029 0.4010 +4891 8031 0.6050 +4891 8724 0.5600 +4891 9054 0.4140 +4891 9669 0.4190 +4891 9843 0.8350 +4891 9973 0.5460 +4891 10058 0.4050 +4891 10063 0.5000 +4891 10162 0.5460 +4891 10190 0.4050 +4891 10463 0.5300 +4891 23327 0.4090 +4891 23400 0.5640 +4891 23479 0.5270 +4891 23516 0.9340 +4891 23657 0.5410 +4891 26234 0.5400 +4891 26872 0.7170 +4891 27032 0.5210 +4891 27173 0.8370 +4891 28982 0.5450 +4891 30061 0.9870 +4891 51310 0.4110 +4891 51312 0.6970 +4891 55240 0.8040 +4891 55532 0.5960 +4891 55630 0.4530 +4891 55737 0.4350 +4891 55847 0.4350 +4891 57817 0.9420 +4891 64116 0.7730 +4891 64746 0.8280 +4891 64924 0.4600 +4891 79901 0.9650 +4891 80255 0.4370 +4891 80762 0.8460 +4891 81894 0.6270 +4891 84883 0.5610 +4891 91252 0.4020 +4891 94033 0.5020 +4891 113235 0.7040 +4891 132949 0.4240 +4891 148738 0.8040 +4891 151176 0.5060 +4891 164656 0.6970 +4891 200895 0.4590 +4891 261729 0.6030 +4891 286133 0.4180 +4892 5224 0.4230 +4892 5506 0.5670 +4892 6123 0.4510 +4892 6262 0.4800 +4892 6442 0.4860 +4892 7135 0.4470 +4892 7136 0.4450 +4892 7140 0.4010 +4892 7273 0.6720 +4892 7414 0.4980 +4892 7791 0.4180 +4892 8048 0.7980 +4892 8557 0.6470 +4892 8736 0.6050 +4892 9172 0.5480 +4892 9499 0.6970 +4892 10324 0.8380 +4892 10345 0.5710 +4892 10930 0.4910 +4892 11155 0.4720 +4892 23676 0.5830 +4892 26287 0.4200 +4892 27129 0.4780 +4892 29765 0.4840 +4892 29895 0.4560 +4892 51725 0.4940 +4892 51778 0.7070 +4892 56203 0.4650 +4892 57159 0.6180 +4892 58529 0.6420 +4892 79789 0.4090 +4892 84033 0.4290 +4892 84665 0.5670 +4892 84676 0.7170 +4892 84700 0.4520 +4892 90441 0.4090 +4892 118461 0.4430 +4892 129446 0.7490 +4892 131377 0.7340 +4892 137735 0.4780 +4892 150572 0.5520 +4892 165904 0.6520 +4892 200539 0.4500 +4892 202333 0.5330 +4892 442721 0.7320 +4893 4902 0.4100 +4893 4908 0.5110 +4893 4909 0.5230 +4893 4914 0.6250 +4893 4915 0.6670 +4893 4921 0.5820 +4893 4928 0.4040 +4893 5037 0.6430 +4893 5058 0.5640 +4893 5062 0.5620 +4893 5063 0.5210 +4893 5077 0.4370 +4893 5079 0.4190 +4893 5133 0.4690 +4893 5154 0.5810 +4893 5155 0.6410 +4893 5156 0.9670 +4893 5159 0.9590 +4893 5170 0.6410 +4893 5217 0.4240 +4893 5245 0.4810 +4893 5290 0.9950 +4893 5291 0.9470 +4893 5293 0.9540 +4893 5294 0.9910 +4893 5295 0.9560 +4893 5296 0.9330 +4893 5297 0.4740 +4893 5347 0.4990 +4893 5395 0.5320 +4893 5426 0.5060 +4893 5468 0.6450 +4893 5515 0.5670 +4893 5516 0.5230 +4893 5518 0.6040 +4893 5519 0.4890 +4893 5525 0.4870 +4893 5526 0.4440 +4893 5527 0.4390 +4893 5528 0.4310 +4893 5529 0.4650 +4893 5536 0.4250 +4893 5537 0.5310 +4893 5573 0.4730 +4893 5578 0.9280 +4893 5579 0.9180 +4893 5580 0.6670 +4893 5581 0.9480 +4893 5582 0.9040 +4893 5590 0.5970 +4893 5594 0.9590 +4893 5595 0.9700 +4893 5599 0.9400 +4893 5601 0.9320 +4893 5604 0.9830 +4893 5605 0.9680 +4893 5609 0.4110 +4893 5623 0.4170 +4893 5727 0.5150 +4893 5728 0.8720 +4893 5747 0.6550 +4893 5781 0.9520 +4893 5788 0.4150 +4893 5792 0.4330 +4893 5796 0.4230 +4893 5863 0.9570 +4893 5870 0.5670 +4893 5873 0.5110 +4893 5877 0.4900 +4893 5885 0.4890 +4893 5894 0.9990 +4893 5898 0.6630 +4893 5899 0.5320 +4893 5900 0.9880 +4893 5903 0.4900 +4893 5906 0.7060 +4893 5908 0.5730 +4893 5910 0.6080 +4893 5914 0.4530 +4893 5921 0.9840 +4893 5922 0.9580 +4893 5923 0.9350 +4893 5924 0.9290 +4893 5970 0.6190 +4893 5979 0.8680 +4893 6093 0.4520 +4893 6098 0.7360 +4893 6195 0.9520 +4893 6196 0.9350 +4893 6197 0.9420 +4893 6198 0.5170 +4893 6233 0.5970 +4893 6427 0.7030 +4893 6453 0.5550 +4893 6464 0.6910 +4893 6490 0.4370 +4893 6494 0.4760 +4893 6510 0.4260 +4893 6520 0.5770 +4893 6541 0.4620 +4893 6566 0.4730 +4893 6597 0.4010 +4893 6598 0.5280 +4893 6654 0.9920 +4893 6655 0.9660 +4893 6663 0.4550 +4893 6708 0.6210 +4893 6709 0.5800 +4893 6710 0.4990 +4893 6711 0.5800 +4893 6712 0.5940 +4893 6714 0.9700 +4893 6774 0.5350 +4893 6777 0.4310 +4893 6790 0.4460 +4893 6794 0.6730 +4893 6850 0.9330 +4893 6867 0.4250 +4893 7010 0.6180 +4893 7015 0.6790 +4893 7037 0.4280 +4893 7038 0.5910 +4893 7039 0.6430 +4893 7048 0.4430 +4893 7074 0.9430 +4893 7094 0.5520 +4893 7157 0.8760 +4893 7187 0.4060 +4893 7249 0.5220 +4893 7252 0.4560 +4893 7253 0.4110 +4893 7298 0.4230 +4893 7299 0.6020 +4893 7307 0.7120 +4893 7311 0.5330 +4893 7314 0.5500 +4893 7316 0.5560 +4893 7329 0.4860 +4893 7403 0.5050 +4893 7409 0.6600 +4893 7414 0.6340 +4893 7450 0.5410 +4893 7468 0.4520 +4893 7490 0.7850 +4893 7525 0.7280 +4893 7529 0.7540 +4893 7531 0.5050 +4893 7532 0.4940 +4893 7533 0.4840 +4893 7534 0.5020 +4893 7750 0.5240 +4893 7812 0.6890 +4893 7837 0.4010 +4893 7849 0.8030 +4893 7913 0.5020 +4893 8019 0.4950 +4893 8031 0.5150 +4893 8036 0.9870 +4893 8045 0.6040 +4893 8074 0.5730 +4893 8085 0.4490 +4893 8087 0.5330 +4893 8140 0.4990 +4893 8216 0.8700 +4893 8233 0.6700 +4893 8243 0.4820 +4893 8289 0.6060 +4893 8315 0.9110 +4893 8437 0.7630 +4893 8493 0.4210 +4893 8503 0.9230 +4893 8546 0.4570 +4893 8651 0.4810 +4893 8660 0.6020 +4893 8805 0.5080 +4893 8817 0.6460 +4893 8822 0.6210 +4893 8823 0.6160 +4893 8826 0.6750 +4893 8831 0.8720 +4893 8844 0.7930 +4893 8859 0.4740 +4893 8877 0.5430 +4893 9048 0.4320 +4893 9061 0.4300 +4893 9126 0.4370 +4893 9321 0.5930 +4893 9341 0.4450 +4893 9365 0.5170 +4893 9444 0.5060 +4893 9448 0.4190 +4893 9451 0.4840 +4893 9459 0.9040 +4893 9462 0.7940 +4893 9475 0.4030 +4893 9530 0.5280 +4893 9542 0.5460 +4893 9610 0.9660 +4893 9693 0.9250 +4893 9715 0.4520 +4893 9771 0.9130 +4893 9817 0.4410 +4893 9965 0.5830 +4893 9986 0.8130 +4893 10000 0.5640 +4893 10018 0.6750 +4893 10019 0.5210 +4893 10048 0.5180 +4893 10125 0.9490 +4893 10142 0.6680 +4893 10156 0.7730 +4893 10235 0.9540 +4893 10256 0.5760 +4893 10298 0.4490 +4893 10320 0.5500 +4893 10434 0.6980 +4893 10533 0.5030 +4893 10563 0.4160 +4893 10652 0.5800 +4893 10681 0.7180 +4893 10718 0.5180 +4893 10735 0.6230 +4893 10817 0.5280 +4893 10818 0.6710 +4893 10827 0.4730 +4893 10928 0.9300 +4893 10971 0.4790 +4893 11044 0.4060 +4893 11140 0.6420 +4893 11160 0.5070 +4893 11186 0.9600 +4893 11200 0.4450 +4893 22821 0.7590 +4893 22852 0.4090 +4893 22866 0.5550 +4893 22894 0.5740 +4893 22906 0.4220 +4893 23011 0.5240 +4893 23092 0.4880 +4893 23164 0.4280 +4893 23179 0.9560 +4893 23365 0.9130 +4893 23405 0.4250 +4893 23463 0.8100 +4893 23513 0.4390 +4893 23533 0.9230 +4893 25759 0.5570 +4893 25780 0.9310 +4893 25921 0.4220 +4893 26040 0.6790 +4893 26281 0.6160 +4893 27006 0.6120 +4893 27040 0.5310 +4893 27044 0.4640 +4893 27330 0.9060 +4893 27436 0.9530 +4893 29072 0.4750 +4893 29126 0.6040 +4893 30835 0.5200 +4893 50618 0.5420 +4893 51104 0.6320 +4893 51114 0.9410 +4893 51125 0.9320 +4893 51196 0.9740 +4893 51332 0.5020 +4893 51735 0.6070 +4893 51764 0.6500 +4893 51806 0.9580 +4893 53358 0.5430 +4893 54331 0.6510 +4893 54474 0.4070 +4893 54518 0.5800 +4893 54756 0.5080 +4893 54790 0.7660 +4893 54845 0.4180 +4893 54855 0.5830 +4893 54894 0.4370 +4893 55109 0.4180 +4893 55193 0.4430 +4893 55252 0.4400 +4893 55294 0.7150 +4893 55500 0.4760 +4893 55750 0.5180 +4893 55970 0.7140 +4893 56829 0.4400 +4893 56852 0.4040 +4893 57139 0.7750 +4893 57492 0.4360 +4893 57554 0.5980 +4893 57580 0.5410 +4893 57610 0.5070 +4893 57670 0.5410 +4893 57731 0.5020 +4893 58489 0.6310 +4893 58508 0.4490 +4893 59345 0.7100 +4893 63035 0.5140 +4893 64926 0.7410 +4893 79109 0.4350 +4893 79643 0.4340 +4893 80243 0.5570 +4893 81848 0.5030 +4893 81926 0.6990 +4893 83593 0.9570 +4893 84295 0.6860 +4893 84451 0.4800 +4893 91860 0.9540 +4893 93380 0.4020 +4893 94235 0.6500 +4893 115727 0.9310 +4893 133482 0.5020 +4893 144568 0.4060 +4893 145957 0.5310 +4893 146850 0.9000 +4893 152831 0.5070 +4893 153090 0.6990 +4893 161742 0.8700 +4893 163688 0.9540 +4893 171023 0.7980 +4893 196528 0.5510 +4893 200734 0.6970 +4893 200958 0.5200 +4893 221002 0.4450 +4893 253260 0.6200 +4893 255324 0.5550 +4893 284459 0.4140 +4893 340273 0.5090 +4893 342945 0.4270 +4893 399473 0.5960 +4893 399687 0.5630 +4893 399694 0.4350 +4893 653604 0.4210 +4893 100271927 0.6700 +4893 102723407 0.4810 +4897 5067 0.4380 +4897 5361 0.7860 +4897 5621 0.5890 +4897 5649 0.5320 +4897 5787 0.7460 +4897 5793 0.5740 +4897 5803 0.9230 +4897 6323 0.6750 +4897 6324 0.6450 +4897 6326 0.7310 +4897 6327 0.5950 +4897 6328 0.6100 +4897 6329 0.5580 +4897 6330 0.6560 +4897 6331 0.5710 +4897 6332 0.5180 +4897 6334 0.8480 +4897 6335 0.5750 +4897 6336 0.5670 +4897 6405 0.7500 +4897 6585 0.4440 +4897 6616 0.4150 +4897 6645 0.4490 +4897 6708 0.5300 +4897 6709 0.6220 +4897 6710 0.6150 +4897 6711 0.8110 +4897 6712 0.5930 +4897 6900 0.9940 +4897 7057 0.4690 +4897 7414 0.4440 +4897 7546 0.6100 +4897 7869 0.6970 +4897 8506 0.6820 +4897 8745 0.4420 +4897 8828 0.9630 +4897 8829 0.5550 +4897 8857 0.4360 +4897 9378 0.5000 +4897 9379 0.4490 +4897 9423 0.4200 +4897 10243 0.6090 +4897 10371 0.6730 +4897 11280 0.6380 +4897 23114 0.9700 +4897 23129 0.4700 +4897 23467 0.4350 +4897 26047 0.6120 +4897 27255 0.4410 +4897 50512 0.4180 +4897 51332 0.5450 +4897 51506 0.5300 +4897 53942 0.9140 +4897 55800 0.6170 +4897 57731 0.9720 +4897 57863 0.4010 +4897 60484 0.7770 +4897 63827 0.7130 +4897 80031 0.8590 +4897 85445 0.8850 +4897 91584 0.4060 +4897 114132 0.5490 +4897 152330 0.4660 +4897 342035 0.9960 +4898 5394 0.6400 +4898 6051 0.4940 +4898 6827 0.4200 +4898 6829 0.4670 +4898 6868 0.4580 +4898 7064 0.6900 +4898 7157 0.4560 +4898 7174 0.6960 +4898 7375 0.4490 +4898 7385 0.4430 +4898 8945 0.4870 +4898 9320 0.4490 +4898 9512 0.4730 +4898 9520 0.4680 +4898 9611 0.4360 +4898 10531 0.5040 +4898 10989 0.6360 +4898 11033 0.7990 +4898 23019 0.4400 +4898 23064 0.9560 +4898 23291 0.4270 +4898 23517 0.4350 +4898 23621 0.5210 +4898 54998 0.4380 +4898 55233 0.5320 +4898 57486 0.5270 +4898 81576 0.4660 +4898 158521 0.4520 +4899 4976 0.4170 +4899 5071 0.4820 +4899 5166 0.4190 +4899 5428 0.4880 +4899 5442 0.4050 +4899 5465 0.6040 +4899 5467 0.5210 +4899 5468 0.6290 +4899 6478 0.4150 +4899 6517 0.4250 +4899 6648 0.5260 +4899 7019 0.9870 +4899 7350 0.5870 +4899 7351 0.6040 +4899 7352 0.5450 +4899 7862 0.4730 +4899 7988 0.4350 +4899 8894 0.7070 +4899 9451 0.4940 +4899 9817 0.4210 +4899 9927 0.6340 +4899 10059 0.5870 +4899 10127 0.4550 +4899 10209 0.6400 +4899 10891 0.9990 +4899 23028 0.5120 +4899 23082 0.9370 +4899 23126 0.4520 +4899 23410 0.5410 +4899 23411 0.8260 +4899 23645 0.4340 +4899 25828 0.4190 +4899 51024 0.6120 +4899 51106 0.7950 +4899 51547 0.7760 +4899 54205 0.8990 +4899 55007 0.5040 +4899 55669 0.6260 +4899 57125 0.4570 +4899 57621 0.4060 +4899 64216 0.7970 +4899 65018 0.5490 +4899 84701 0.4120 +4899 84919 0.7190 +4899 133522 0.9910 +4899 155061 0.6250 +4899 257202 0.4020 +4899 493869 0.4030 +4900 5121 0.4160 +4900 5816 0.4220 +4900 5864 0.4540 +4900 6567 0.5860 +4900 6616 0.6440 +4900 6620 0.4570 +4900 6622 0.7830 +4900 6855 0.4170 +4900 6857 0.4660 +4900 6925 0.5850 +4900 7200 0.4360 +4900 7447 0.7100 +4900 11346 0.4130 +4900 23428 0.5900 +4900 23621 0.4470 +4900 27185 0.5620 +4900 29970 0.7120 +4900 51335 0.5750 +4900 51806 0.9920 +4900 53919 0.4650 +4900 54209 0.4320 +4900 55223 0.4880 +4900 81027 0.5260 +4900 83700 0.5380 +4900 84455 0.5050 +4900 84519 0.4460 +4900 91752 0.7070 +4900 91860 0.9920 +4900 163688 0.9920 +4900 654502 0.7500 +4900 100505385 0.7170 +4901 5013 0.4210 +4901 5015 0.5920 +4901 5080 0.4350 +4901 5145 0.7430 +4901 5146 0.4310 +4901 5148 0.7200 +4901 5149 0.4790 +4901 5158 0.7790 +4901 5949 0.5480 +4901 5957 0.6250 +4901 5961 0.7130 +4901 5995 0.4410 +4901 6010 0.8890 +4901 6011 0.4880 +4901 6017 0.5700 +4901 6094 0.6990 +4901 6096 0.5350 +4901 6100 0.7380 +4901 6101 0.4470 +4901 6103 0.6900 +4901 6121 0.7980 +4901 6295 0.4670 +4901 6314 0.6430 +4901 6671 0.5320 +4901 7068 0.4530 +4901 7181 0.4080 +4901 7287 0.6900 +4901 7391 0.4140 +4901 7399 0.5530 +4901 7401 0.4300 +4901 7439 0.6600 +4901 8061 0.4740 +4901 9129 0.7260 +4901 9227 0.6860 +4901 9935 0.4080 +4901 10002 0.9540 +4901 10133 0.5500 +4901 10210 0.6840 +4901 10461 0.5740 +4901 10524 0.5530 +4901 10538 0.4990 +4901 10594 0.7090 +4901 10692 0.4540 +4901 23020 0.6160 +4901 23746 0.5890 +4901 24148 0.4460 +4901 25794 0.8150 +4901 26121 0.7340 +4901 30062 0.4490 +4901 50939 0.7330 +4901 54714 0.4970 +4901 55812 0.4460 +4901 55975 0.6340 +4901 57096 0.5450 +4901 64218 0.5870 +4901 79947 0.4470 +4901 80184 0.4620 +4901 84140 0.5130 +4901 84839 0.6550 +4901 84922 0.8880 +4901 92211 0.4780 +4901 94233 0.5820 +4901 122953 0.5400 +4901 127002 0.5140 +4901 130557 0.6830 +4901 131890 0.4800 +4901 145226 0.6910 +4901 157657 0.4460 +4901 169522 0.4390 +4901 221391 0.4090 +4901 222255 0.4990 +4901 338917 0.5720 +4901 346007 0.7270 +4901 375298 0.6830 +4901 388939 0.6700 +4901 768206 0.6850 +4902 4908 0.6580 +4902 4909 0.6070 +4902 4914 0.8590 +4902 4915 0.7920 +4902 5290 0.4990 +4902 5291 0.4990 +4902 5293 0.4990 +4902 5295 0.5030 +4902 5296 0.5090 +4902 5335 0.5300 +4902 5566 0.4380 +4902 5567 0.4380 +4902 5568 0.4390 +4902 5578 0.5110 +4902 5598 0.5290 +4902 5623 0.8270 +4902 5781 0.5170 +4902 5909 0.4990 +4902 5979 0.9990 +4902 6464 0.5000 +4902 6622 0.4620 +4902 6654 0.4300 +4902 6663 0.4270 +4902 6714 0.6460 +4902 7054 0.6430 +4902 7079 0.4320 +4902 8503 0.5120 +4902 8929 0.5510 +4902 9046 0.4990 +4902 9048 0.8250 +4902 9260 0.4990 +4902 9672 0.8250 +4902 9846 0.4990 +4902 10818 0.5350 +4902 26128 0.4180 +4902 53358 0.4390 +4902 55715 0.5260 +4902 55816 0.5110 +4902 64096 0.9930 +4902 85358 0.5000 +4902 220164 0.5400 +4902 389400 0.6430 +4902 441549 0.7200 +4904 4913 0.8970 +4904 4968 0.4970 +4904 5036 0.6700 +4904 5042 0.6460 +4904 5093 0.8500 +4904 5094 0.8700 +4904 5111 0.4330 +4904 5175 0.4300 +4904 5230 0.4490 +4904 5243 0.4180 +4904 5295 0.4200 +4904 5317 0.5410 +4904 5423 0.4870 +4904 5431 0.5720 +4904 5432 0.5880 +4904 5433 0.5260 +4904 5434 0.5090 +4904 5435 0.5910 +4904 5436 0.5510 +4904 5437 0.5350 +4904 5438 0.5130 +4904 5439 0.5220 +4904 5440 0.5010 +4904 5441 0.5700 +4904 5460 0.4680 +4904 5496 0.6560 +4904 5594 0.4390 +4904 5663 0.4300 +4904 5664 0.4130 +4904 5684 0.4690 +4904 5725 0.8760 +4904 5728 0.4080 +4904 5770 0.5590 +4904 5813 0.9470 +4904 5814 0.7150 +4904 5836 0.4050 +4904 5901 0.4100 +4904 5928 0.4890 +4904 5930 0.7090 +4904 5976 0.7360 +4904 5993 0.4050 +4904 6122 0.7410 +4904 6124 0.5710 +4904 6125 0.6230 +4904 6128 0.7440 +4904 6129 0.8360 +4904 6130 0.4850 +4904 6132 0.5620 +4904 6133 0.4590 +4904 6135 0.5140 +4904 6136 0.4300 +4904 6137 0.4040 +4904 6139 0.6120 +4904 6142 0.4840 +4904 6143 0.4660 +4904 6144 0.4260 +4904 6147 0.6580 +4904 6150 0.4260 +4904 6154 0.6280 +4904 6157 0.5050 +4904 6160 0.4010 +4904 6175 0.6370 +4904 6176 0.4660 +4904 6182 0.5320 +4904 6187 0.7520 +4904 6188 0.6220 +4904 6189 0.5280 +4904 6191 0.7670 +4904 6193 0.5240 +4904 6194 0.8330 +4904 6195 0.5910 +4904 6196 0.4300 +4904 6197 0.5930 +4904 6201 0.5330 +4904 6202 0.6690 +4904 6203 0.5060 +4904 6204 0.5590 +4904 6205 0.7420 +4904 6206 0.4340 +4904 6207 0.5810 +4904 6208 0.5030 +4904 6209 0.6640 +4904 6217 0.6480 +4904 6222 0.5640 +4904 6223 0.5490 +4904 6224 0.7030 +4904 6228 0.6820 +4904 6229 0.6800 +4904 6230 0.4570 +4904 6233 0.4580 +4904 6234 0.6200 +4904 6235 0.5900 +4904 6386 0.4820 +4904 6421 0.6000 +4904 6426 0.8610 +4904 6427 0.6120 +4904 6428 0.7230 +4904 6429 0.6070 +4904 6430 0.6080 +4904 6431 0.6460 +4904 6432 0.7780 +4904 6434 0.6920 +4904 6615 0.4540 +4904 6627 0.4070 +4904 6628 0.9320 +4904 6632 0.9330 +4904 6633 0.9320 +4904 6634 0.9250 +4904 6635 0.9300 +4904 6636 0.9130 +4904 6637 0.9170 +4904 6652 0.4100 +4904 6657 0.5210 +4904 6659 0.4630 +4904 6667 0.6200 +4904 6670 0.4500 +4904 6693 0.5570 +4904 6727 0.5640 +4904 6732 0.5710 +4904 6737 0.4130 +4904 6741 0.7030 +4904 6780 0.8760 +4904 6790 0.4050 +4904 6835 0.4500 +4904 6936 0.5170 +4904 7013 0.5290 +4904 7072 0.5800 +4904 7073 0.4960 +4904 7082 0.5720 +4904 7101 0.4190 +4904 7157 0.9220 +4904 7178 0.5130 +4904 7251 0.6750 +4904 7284 0.4400 +4904 7311 0.5380 +4904 7329 0.5160 +4904 7343 0.4640 +4904 7417 0.4180 +4904 7486 0.6270 +4904 7490 0.4150 +4904 7515 0.4440 +4904 7520 0.7000 +4904 7538 0.4770 +4904 7555 0.4870 +4904 7812 0.9750 +4904 7818 0.6220 +4904 7846 0.4600 +4904 7884 0.7540 +4904 8038 0.4790 +4904 8087 0.8920 +4904 8106 0.6340 +4904 8140 0.4070 +4904 8175 0.6750 +4904 8189 0.4020 +4904 8233 0.9000 +4904 8241 0.4690 +4904 8453 0.4180 +4904 8531 0.9170 +4904 8557 0.4720 +4904 8570 0.5200 +4904 8662 0.6160 +4904 8668 0.4580 +4904 8683 0.8850 +4904 8761 0.7580 +4904 8886 0.4060 +4904 9100 0.7030 +4904 9188 0.8890 +4904 9212 0.4460 +4904 9271 0.4020 +4904 9295 0.4410 +4904 9349 0.5250 +4904 9513 0.8200 +4904 9553 0.4090 +4904 9584 0.6460 +4904 9615 0.6130 +4904 9733 0.6160 +4904 9775 0.7850 +4904 9782 0.7250 +4904 9801 0.6950 +4904 9898 0.4870 +4904 9908 0.7660 +4904 9939 0.5690 +4904 9987 0.4960 +4904 9991 0.4480 +4904 10038 0.5070 +4904 10044 0.6910 +4904 10081 0.8010 +4904 10146 0.9440 +4904 10150 0.4490 +4904 10155 0.6530 +4904 10189 0.7980 +4904 10212 0.5260 +4904 10236 0.8820 +4904 10240 0.4360 +4904 10262 0.9160 +4904 10286 0.4360 +4904 10399 0.6090 +4904 10432 0.4800 +4904 10492 0.9980 +4904 10516 0.4170 +4904 10521 0.6820 +4904 10528 0.5000 +4904 10574 0.4330 +4904 10576 0.4230 +4904 10642 0.9930 +4904 10643 0.7720 +4904 10644 0.7220 +4904 10657 0.6790 +4904 10664 0.7920 +4904 10667 0.4620 +4904 10772 0.7620 +4904 10929 0.4500 +4904 10949 0.5460 +4904 10963 0.5180 +4904 10992 0.9390 +4904 11066 0.8220 +4904 11091 0.4950 +4904 11100 0.4600 +4904 11164 0.5630 +4904 11168 0.4550 +4904 11187 0.5470 +4904 11222 0.6820 +4904 11224 0.5440 +4904 11273 0.5880 +4904 11338 0.6570 +4904 22849 0.6110 +4904 22907 0.6940 +4904 22913 0.4460 +4904 22916 0.8060 +4904 22927 0.7020 +4904 22948 0.4670 +4904 23020 0.4980 +4904 23047 0.4380 +4904 23107 0.4300 +4904 23185 0.4230 +4904 23191 0.6750 +4904 23196 0.5880 +4904 23327 0.9040 +4904 23367 0.8440 +4904 23385 0.4210 +4904 23405 0.4820 +4904 23435 0.4500 +4904 23450 0.9330 +4904 23451 0.9390 +4904 23468 0.5430 +4904 23521 0.5190 +4904 23543 0.4510 +4904 23608 0.4970 +4904 23645 0.4340 +4904 24144 0.5130 +4904 25962 0.4590 +4904 26024 0.4480 +4904 26065 0.7890 +4904 26135 0.7230 +4904 26156 0.4790 +4904 26287 0.7450 +4904 26523 0.5500 +4904 26747 0.6970 +4904 26986 0.9070 +4904 26999 0.4710 +4904 27063 0.7530 +4904 27067 0.7220 +4904 27161 0.9100 +4904 27258 0.6420 +4904 27288 0.6910 +4904 27316 0.8200 +4904 27327 0.5080 +4904 27339 0.6000 +4904 28957 0.4290 +4904 28998 0.5730 +4904 29088 0.5550 +4904 29093 0.4370 +4904 29102 0.4120 +4904 51069 0.5440 +4904 51081 0.5870 +4904 51087 0.5260 +4904 51091 0.4080 +4904 51107 0.4130 +4904 51142 0.5560 +4904 51253 0.4740 +4904 51264 0.7140 +4904 51441 0.4710 +4904 51574 0.8200 +4904 51639 0.9080 +4904 51663 0.5040 +4904 51690 0.5560 +4904 54514 0.4310 +4904 54542 0.5110 +4904 54551 0.4800 +4904 54606 0.7230 +4904 54888 0.7660 +4904 54948 0.5900 +4904 55037 0.7010 +4904 55052 0.7090 +4904 55132 0.4790 +4904 55173 0.4050 +4904 55226 0.4450 +4904 55234 0.7440 +4904 55239 0.4810 +4904 55285 0.5570 +4904 55379 0.6770 +4904 55599 0.9030 +4904 55629 0.4360 +4904 55646 0.4760 +4904 55683 0.4550 +4904 55695 0.4730 +4904 55794 0.5810 +4904 55802 0.5460 +4904 55954 0.7200 +4904 56257 0.4980 +4904 56829 0.6600 +4904 56945 0.6080 +4904 57107 0.4770 +4904 57332 0.6380 +4904 57532 0.6060 +4904 57680 0.4660 +4904 57721 0.4940 +4904 58155 0.4210 +4904 63875 0.5400 +4904 63899 0.4880 +4904 63931 0.4080 +4904 64506 0.7420 +4904 64969 0.6080 +4904 64976 0.4590 +4904 64979 0.4130 +4904 64983 0.4140 +4904 65005 0.5670 +4904 65008 0.6790 +4904 65080 0.5270 +4904 65122 0.4200 +4904 79048 0.4420 +4904 79618 0.4480 +4904 79727 0.4560 +4904 79730 0.4700 +4904 79923 0.5720 +4904 79968 0.5140 +4904 80315 0.6120 +4904 83443 0.9070 +4904 84844 0.9240 +4904 85437 0.8970 +4904 90459 0.7740 +4904 113251 0.4270 +4904 122953 0.4100 +4904 132864 0.6010 +4904 134353 0.7200 +4904 135295 0.4400 +4904 139804 0.5820 +4904 143689 0.4050 +4904 143884 0.4990 +4904 149041 0.5700 +4904 149986 0.5200 +4904 154007 0.8120 +4904 192670 0.5330 +4904 200316 0.4980 +4904 219927 0.4950 +4904 220988 0.8490 +4904 221078 0.5100 +4904 252969 0.8140 +4904 254170 0.5820 +4904 345630 0.4450 +4904 387332 0.4010 +4904 387338 0.4630 +4904 389421 0.5580 +4904 728378 0.4860 +4905 5096 0.5460 +4905 5245 0.4610 +4905 5265 0.5180 +4905 5372 0.4020 +4905 5532 0.4180 +4905 5714 0.5240 +4905 5717 0.6140 +4905 5719 0.6260 +4905 5861 0.7970 +4905 5864 0.6070 +4905 5868 0.4030 +4905 5870 0.7680 +4905 6293 0.5900 +4905 6396 0.6930 +4905 6453 0.4500 +4905 6456 0.5110 +4905 6616 0.9750 +4905 6708 0.5320 +4905 6709 0.5880 +4905 6710 0.5240 +4905 6711 0.5380 +4905 6712 0.5090 +4905 6804 0.8620 +4905 6809 0.7760 +4905 6810 0.7900 +4905 6811 0.9060 +4905 6812 0.8260 +4905 6813 0.4250 +4905 6814 0.7390 +4905 6836 0.6160 +4905 6843 0.6960 +4905 6844 0.8520 +4905 6845 0.5060 +4905 6853 0.5970 +4905 6854 0.6960 +4905 6857 0.7200 +4905 7039 0.5380 +4905 7110 0.5290 +4905 7353 0.5600 +4905 7415 0.4850 +4905 8218 0.5440 +4905 8411 0.4960 +4905 8417 0.8050 +4905 8615 0.8320 +4905 8673 0.7510 +4905 8674 0.8710 +4905 8675 0.8450 +4905 8676 0.6300 +4905 8677 0.7920 +4905 8773 0.8570 +4905 8774 0.9760 +4905 8775 0.9990 +4905 8867 0.5600 +4905 8927 0.6320 +4905 9117 0.6870 +4905 9183 0.6890 +4905 9276 0.8220 +4905 9341 0.8760 +4905 9342 0.8520 +4905 9367 0.7010 +4905 9373 0.4980 +4905 9378 0.4830 +4905 9379 0.4630 +4905 9382 0.5880 +4905 9392 0.4160 +4905 9463 0.7340 +4905 9482 0.7530 +4905 9527 0.8690 +4905 9554 0.8330 +4905 9570 0.8570 +4905 9632 0.5290 +4905 9648 0.5520 +4905 9827 0.5010 +4905 9861 0.5350 +4905 9871 0.5320 +4905 9884 0.4280 +4905 9919 0.4300 +4905 9950 0.5730 +4905 10013 0.4330 +4905 10059 0.7630 +4905 10113 0.6840 +4905 10139 0.5340 +4905 10175 0.5470 +4905 10228 0.9090 +4905 10244 0.5400 +4905 10282 0.9040 +4905 10427 0.4580 +4905 10466 0.5780 +4905 10484 0.6600 +4905 10490 0.9380 +4905 10497 0.4270 +4905 10618 0.5580 +4905 10640 0.4220 +4905 10652 0.9440 +4905 10791 0.4630 +4905 10814 0.4100 +4905 10815 0.6560 +4905 10905 0.5440 +4905 10945 0.7010 +4905 10959 0.5180 +4905 10960 0.5500 +4905 10972 0.5290 +4905 11014 0.5890 +4905 11015 0.5860 +4905 11070 0.5070 +4905 11231 0.4620 +4905 11311 0.5030 +4905 11316 0.6710 +4905 11336 0.5280 +4905 11337 0.6060 +4905 11345 0.4420 +4905 22796 0.5820 +4905 22818 0.5540 +4905 22820 0.6010 +4905 23237 0.4250 +4905 23256 0.9680 +4905 23339 0.7880 +4905 23423 0.5000 +4905 23426 0.5770 +4905 23673 0.8070 +4905 23710 0.4320 +4905 25839 0.5710 +4905 26003 0.4770 +4905 26043 0.6700 +4905 26276 0.4140 +4905 26958 0.5990 +4905 26984 0.6890 +4905 27072 0.5570 +4905 27095 0.4420 +4905 27333 0.5000 +4905 29927 0.4250 +4905 50618 0.4510 +4905 51014 0.5040 +4905 51209 0.6770 +4905 51226 0.5280 +4905 51272 0.7380 +4905 51332 0.5300 +4905 51542 0.7270 +4905 51560 0.5700 +4905 51594 0.6130 +4905 51622 0.6080 +4905 53407 0.8480 +4905 53917 0.4380 +4905 54536 0.4070 +4905 54732 0.5580 +4905 55014 0.7940 +4905 55275 0.6300 +4905 55666 0.4520 +4905 55770 0.4830 +4905 55823 0.4590 +4905 55850 0.7180 +4905 55879 0.9030 +4905 56904 0.4190 +4905 57134 0.5340 +4905 57511 0.6100 +4905 57589 0.5150 +4905 57617 0.5160 +4905 57731 0.5320 +4905 60561 0.6780 +4905 63908 0.9680 +4905 64080 0.6570 +4905 64083 0.4380 +4905 64601 0.5330 +4905 64689 0.7070 +4905 65082 0.5020 +4905 79058 0.5140 +4905 79571 0.5340 +4905 79748 0.5290 +4905 80700 0.4030 +4905 80852 0.4880 +4905 81562 0.5250 +4905 81876 0.6660 +4905 83548 0.6540 +4905 90196 0.5050 +4905 90411 0.5010 +4905 91949 0.5550 +4905 112755 0.8540 +4905 116841 0.6580 +4905 120892 0.4480 +4905 143187 0.8450 +4905 149111 0.5250 +4905 203062 0.4800 +4905 203245 0.4800 +4905 221960 0.6060 +4905 254263 0.5230 +4905 374819 0.4320 +4905 415117 0.4010 +4907 4968 0.8150 +4907 5023 0.4890 +4907 5027 0.4610 +4907 5028 0.5420 +4907 5029 0.5070 +4907 5030 0.4540 +4907 5031 0.4200 +4907 5032 0.4270 +4907 5125 0.4300 +4907 5133 0.5630 +4907 5136 0.6760 +4907 5137 0.6860 +4907 5138 0.6960 +4907 5139 0.6750 +4907 5140 0.7090 +4907 5141 0.7090 +4907 5142 0.6990 +4907 5143 0.6880 +4907 5144 0.6960 +4907 5145 0.7410 +4907 5146 0.7400 +4907 5147 0.6500 +4907 5148 0.6500 +4907 5149 0.6500 +4907 5150 0.7690 +4907 5151 0.6650 +4907 5152 0.6890 +4907 5153 0.6760 +4907 5156 0.5230 +4907 5158 0.7630 +4907 5159 0.6150 +4907 5167 0.9880 +4907 5169 0.9320 +4907 5175 0.8400 +4907 5460 0.6990 +4907 5468 0.5170 +4907 5551 0.5070 +4907 5571 0.7150 +4907 5743 0.4320 +4907 5788 0.8910 +4907 6275 0.4030 +4907 6347 0.5380 +4907 6382 0.4300 +4907 6387 0.5840 +4907 6402 0.4890 +4907 6535 0.4270 +4907 6567 0.4480 +4907 6652 0.8300 +4907 6657 0.7140 +4907 6662 0.5720 +4907 6678 0.4040 +4907 6693 0.4180 +4907 6696 0.6230 +4907 6774 0.4710 +4907 6821 0.4800 +4907 7010 0.4100 +4907 7037 0.5670 +4907 7040 0.6550 +4907 7042 0.4070 +4907 7043 0.5180 +4907 7070 0.9190 +4907 7076 0.5840 +4907 7084 0.9200 +4907 7099 0.5740 +4907 7124 0.6050 +4907 7130 0.5420 +4907 7251 0.4720 +4907 7293 0.4790 +4907 7298 0.9270 +4907 7372 0.9260 +4907 7378 0.9820 +4907 7412 0.7240 +4907 7430 0.4340 +4907 7450 0.4790 +4907 7837 0.5020 +4907 7852 0.6620 +4907 8622 0.6580 +4907 8654 0.7330 +4907 8763 0.4280 +4907 8784 0.7600 +4907 8817 0.4920 +4907 8822 0.4920 +4907 8823 0.4720 +4907 8829 0.4270 +4907 8833 0.9260 +4907 8842 0.6590 +4907 8875 0.4330 +4907 8876 0.4450 +4907 9131 0.4660 +4907 9153 0.4760 +4907 9154 0.4340 +4907 9159 0.4600 +4907 9314 0.4610 +4907 9332 0.4270 +4907 9583 0.7380 +4907 9615 0.8440 +4907 10135 0.9260 +4907 10763 0.6400 +4907 10846 0.7000 +4907 22914 0.4220 +4907 22943 0.4120 +4907 22978 0.9290 +4907 23057 0.9690 +4907 23583 0.7520 +4907 24145 0.4760 +4907 25961 0.8080 +4907 26281 0.4720 +4907 26289 0.7250 +4907 26504 0.6150 +4907 26505 0.6150 +4907 26507 0.6150 +4907 27006 0.4870 +4907 27115 0.7060 +4907 29126 0.6920 +4907 29851 0.5070 +4907 29944 0.4630 +4907 30009 0.4180 +4907 30833 0.9360 +4907 50808 0.9050 +4907 50940 0.6940 +4907 50943 0.7060 +4907 51094 0.4250 +4907 51095 0.4050 +4907 51179 0.7950 +4907 51251 0.9190 +4907 51292 0.5580 +4907 51422 0.7150 +4907 51592 0.6660 +4907 51733 0.4290 +4907 51816 0.9600 +4907 53632 0.7150 +4907 54205 0.8690 +4907 54363 0.7950 +4907 54805 0.6150 +4907 54870 0.5310 +4907 54981 0.4180 +4907 55152 0.5310 +4907 55191 0.8260 +4907 55270 0.8130 +4907 56953 0.9410 +4907 56954 0.4300 +4907 58472 0.4840 +4907 64078 0.4510 +4907 64111 0.8460 +4907 64802 0.9710 +4907 64805 0.4210 +4907 65220 0.8100 +4907 79077 0.9040 +4907 79912 0.4660 +4907 79923 0.6720 +4907 80380 0.5950 +4907 80381 0.5250 +4907 81932 0.7420 +4907 83594 0.9810 +4907 83693 0.4160 +4907 84618 0.9340 +4907 84868 0.5640 +4907 84883 0.4820 +4907 93034 0.9240 +4907 113179 0.7520 +4907 115024 0.9180 +4907 121340 0.4700 +4907 122481 0.6740 +4907 122622 0.9310 +4907 124583 0.7500 +4907 129607 0.9160 +4907 131870 0.9000 +4907 134637 0.7540 +4907 137902 0.4870 +4907 139596 0.9220 +4907 140838 0.7420 +4907 140885 0.4040 +4907 144193 0.8140 +4907 150209 0.4720 +4907 151531 0.9800 +4907 158067 0.6860 +4907 161823 0.5600 +4907 169355 0.6250 +4907 201633 0.5220 +4907 221264 0.6830 +4907 340595 0.4040 +4907 349565 0.7220 +4907 377841 0.8640 +4907 405754 0.4180 +4907 692312 0.4010 +4907 100133941 0.5260 +4907 100423062 0.9670 +4907 100526794 0.9230 +4907 102157402 0.6790 +4908 4909 0.5630 +4908 4914 0.9990 +4908 4915 0.9990 +4908 4923 0.6520 +4908 5015 0.5010 +4908 5156 0.8430 +4908 5159 0.7250 +4908 5290 0.5290 +4908 5295 0.5140 +4908 5335 0.6370 +4908 5376 0.4960 +4908 5623 0.5550 +4908 5800 0.4370 +4908 5802 0.5440 +4908 5836 0.4290 +4908 5979 0.5920 +4908 6272 0.8990 +4908 6464 0.7800 +4908 6469 0.4870 +4908 6513 0.4470 +4908 6654 0.5290 +4908 6714 0.6080 +4908 6853 0.4210 +4908 6855 0.4310 +4908 6863 0.4760 +4908 7010 0.7010 +4908 7040 0.5930 +4908 7054 0.5540 +4908 7097 0.4290 +4908 7133 0.4160 +4908 7170 0.4750 +4908 7306 0.4780 +4908 7425 0.6310 +4908 7432 0.5100 +4908 7442 0.4270 +4908 8733 0.5420 +4908 8817 0.5060 +4908 8822 0.4830 +4908 8823 0.4850 +4908 9048 0.6570 +4908 9241 0.4340 +4908 9423 0.4010 +4908 9500 0.4870 +4908 9587 0.4220 +4908 10026 0.4950 +4908 10215 0.4300 +4908 10342 0.4240 +4908 10371 0.4680 +4908 10763 0.5660 +4908 23205 0.4220 +4908 26281 0.4960 +4908 27006 0.4910 +4908 51299 0.7140 +4908 51604 0.5420 +4908 55816 0.4230 +4908 57537 0.5670 +4908 63973 0.4180 +4908 79006 0.5790 +4908 79800 0.4510 +4908 146713 0.4680 +4908 220164 0.4030 +4908 441549 0.4190 +4909 4914 0.9990 +4909 4915 0.9990 +4909 4923 0.7080 +4909 4974 0.4550 +4909 5156 0.6960 +4909 5159 0.7020 +4909 5290 0.4990 +4909 5295 0.4990 +4909 5335 0.6710 +4909 5623 0.5750 +4909 5781 0.5500 +4909 5979 0.4890 +4909 6272 0.8830 +4909 6464 0.6710 +4909 6654 0.5170 +4909 7010 0.6780 +4909 7473 0.4310 +4909 8912 0.4950 +4909 8913 0.4350 +4909 9048 0.5940 +4909 10342 0.4280 +4909 10817 0.5050 +4909 10818 0.5970 +4909 55128 0.4760 +4909 79800 0.4540 +4909 91663 0.4800 +4909 126147 0.4500 +4909 136371 0.7200 +4913 4968 0.9870 +4913 5111 0.5520 +4913 5378 0.5760 +4913 5395 0.7350 +4913 5423 0.7800 +4913 5424 0.8030 +4913 5426 0.7720 +4913 5428 0.4510 +4913 5435 0.4720 +4913 5558 0.4350 +4913 5883 0.4100 +4913 5884 0.4930 +4913 5886 0.4490 +4913 5887 0.5310 +4913 5888 0.5100 +4913 5889 0.5450 +4913 5892 0.5300 +4913 5893 0.5620 +4913 5965 0.5330 +4913 5980 0.5740 +4913 6224 0.4860 +4913 6729 0.4170 +4913 6794 0.4290 +4913 6996 0.7750 +4913 7019 0.4810 +4913 7157 0.5420 +4913 7248 0.4690 +4913 7249 0.6880 +4913 7372 0.7230 +4913 7374 0.8150 +4913 7486 0.6280 +4913 7507 0.6850 +4913 7508 0.4300 +4913 7515 0.9780 +4913 7517 0.4600 +4913 7520 0.4260 +4913 8438 0.4190 +4913 8505 0.4520 +4913 8565 0.4700 +4913 8623 0.4230 +4913 8930 0.6460 +4913 9156 0.6360 +4913 9351 0.5190 +4913 9401 0.4730 +4913 10038 0.4590 +4913 10166 0.4290 +4913 10535 0.4690 +4913 10721 0.4290 +4913 11181 0.5600 +4913 11200 0.4610 +4913 11201 0.4390 +4913 11284 0.7490 +4913 23405 0.4930 +4913 23583 0.7580 +4913 26330 0.5190 +4913 26585 0.5070 +4913 27030 0.6500 +4913 27301 0.7470 +4913 27343 0.6230 +4913 27434 0.4950 +4913 29102 0.4720 +4913 51360 0.4760 +4913 51426 0.4120 +4913 51455 0.7450 +4913 51647 0.4500 +4913 51750 0.4730 +4913 54487 0.5860 +4913 54840 0.6080 +4913 54894 0.4510 +4913 55247 0.9610 +4913 55270 0.4550 +4913 55775 0.6620 +4913 57136 0.4060 +4913 57697 0.6400 +4913 64210 0.5180 +4913 79661 0.9840 +4913 79695 0.4790 +4913 79728 0.4920 +4913 80198 0.4180 +4913 80347 0.4160 +4913 83990 0.4890 +4913 84893 0.4080 +4913 87178 0.4240 +4913 91442 0.4390 +4913 113510 0.4040 +4913 121642 0.4370 +4913 252969 0.9820 +4913 284131 0.4870 +4913 348654 0.4750 +4913 353497 0.4270 +4913 404672 0.4430 +4913 100533467 0.5460 +4914 4915 0.9890 +4914 4921 0.5450 +4914 4923 0.7330 +4914 5015 0.4840 +4914 5020 0.5020 +4914 5024 0.5290 +4914 5029 0.4490 +4914 5154 0.7440 +4914 5155 0.7720 +4914 5175 0.4240 +4914 5228 0.9130 +4914 5241 0.4080 +4914 5290 0.9600 +4914 5291 0.9320 +4914 5293 0.9220 +4914 5295 0.9620 +4914 5296 0.9300 +4914 5335 0.9940 +4914 5336 0.9080 +4914 5361 0.5300 +4914 5457 0.4540 +4914 5468 0.4220 +4914 5587 0.4740 +4914 5595 0.6810 +4914 5623 0.7690 +4914 5727 0.4560 +4914 5728 0.6080 +4914 5770 0.4870 +4914 5777 0.6300 +4914 5781 0.5600 +4914 5787 0.5940 +4914 5788 0.5720 +4914 5789 0.5020 +4914 5792 0.4920 +4914 5802 0.6900 +4914 5816 0.4630 +4914 5868 0.4370 +4914 5877 0.5650 +4914 5906 0.6930 +4914 5913 0.4380 +4914 5923 0.6300 +4914 5979 0.6030 +4914 6014 0.5640 +4914 6016 0.5840 +4914 6132 0.4060 +4914 6259 0.4580 +4914 6272 0.9050 +4914 6279 0.4650 +4914 6320 0.5220 +4914 6335 0.4980 +4914 6336 0.5400 +4914 6347 0.6090 +4914 6376 0.4100 +4914 6387 0.6600 +4914 6456 0.5470 +4914 6464 0.9990 +4914 6572 0.4380 +4914 6654 0.7710 +4914 6663 0.4440 +4914 6670 0.4040 +4914 6714 0.5110 +4914 6774 0.8840 +4914 6777 0.6000 +4914 6853 0.5820 +4914 6854 0.5380 +4914 6855 0.4230 +4914 6863 0.6410 +4914 7015 0.4770 +4914 7039 0.8710 +4914 7040 0.6540 +4914 7054 0.4840 +4914 7074 0.4360 +4914 7080 0.5020 +4914 7099 0.5570 +4914 7124 0.6940 +4914 7157 0.6370 +4914 7170 0.9860 +4914 7175 0.9390 +4914 7189 0.8170 +4914 7203 0.4190 +4914 7306 0.5250 +4914 7345 0.4790 +4914 7423 0.8660 +4914 7424 0.8980 +4914 7442 0.6700 +4914 7473 0.5190 +4914 7474 0.8040 +4914 7529 0.5980 +4914 7879 0.5480 +4914 7976 0.4830 +4914 8030 0.4900 +4914 8031 0.4790 +4914 8074 0.6890 +4914 8224 0.5270 +4914 8394 0.4100 +4914 8503 0.9240 +4914 8518 0.5650 +4914 8609 0.5140 +4914 8660 0.7880 +4914 8817 0.8870 +4914 8822 0.8880 +4914 8823 0.8880 +4914 8828 0.5630 +4914 8829 0.7930 +4914 8839 0.4310 +4914 8878 0.8780 +4914 8929 0.4220 +4914 8989 0.5190 +4914 8997 0.5560 +4914 9021 0.5260 +4914 9048 0.8020 +4914 9101 0.7450 +4914 9311 0.4280 +4914 9500 0.5470 +4914 9517 0.4460 +4914 9519 0.4410 +4914 9618 0.4180 +4914 9693 0.6330 +4914 9743 0.5750 +4914 9965 0.7130 +4914 10014 0.5210 +4914 10019 0.9160 +4914 10048 0.7250 +4914 10126 0.4620 +4914 10287 0.6890 +4914 10342 0.9810 +4914 10371 0.4260 +4914 10460 0.4020 +4914 10576 0.4110 +4914 10603 0.9400 +4914 10755 0.8020 +4914 10763 0.4700 +4914 10818 0.9740 +4914 11140 0.4470 +4914 11151 0.4730 +4914 11165 0.4130 +4914 11235 0.4760 +4914 11280 0.4460 +4914 22865 0.6380 +4914 22874 0.4880 +4914 23129 0.5760 +4914 23164 0.5510 +4914 23191 0.4140 +4914 23197 0.5550 +4914 23327 0.5510 +4914 23384 0.5370 +4914 23621 0.5990 +4914 23683 0.4560 +4914 25759 0.9560 +4914 25790 0.4440 +4914 25865 0.4550 +4914 25970 0.9900 +4914 26050 0.6270 +4914 26052 0.4370 +4914 26060 0.9080 +4914 26281 0.8880 +4914 26291 0.7630 +4914 27006 0.8870 +4914 27352 0.6550 +4914 27436 0.7610 +4914 29126 0.5650 +4914 29895 0.4610 +4914 51100 0.4920 +4914 51378 0.8210 +4914 51592 0.4750 +4914 51806 0.5030 +4914 53358 0.9750 +4914 54332 0.4290 +4914 54726 0.4890 +4914 54810 0.4590 +4914 54978 0.5120 +4914 55558 0.5060 +4914 55626 0.4280 +4914 55914 0.4480 +4914 56034 0.8900 +4914 56893 0.5150 +4914 57498 0.9870 +4914 58476 0.4120 +4914 59350 0.4040 +4914 65078 0.4440 +4914 79054 0.4330 +4914 80310 0.7120 +4914 80762 0.5840 +4914 84189 0.5810 +4914 84631 0.5720 +4914 84894 0.4020 +4914 91584 0.5130 +4914 91860 0.5150 +4914 92521 0.5150 +4914 103910 0.4200 +4914 114798 0.5640 +4914 115703 0.4790 +4914 116512 0.4350 +4914 122042 0.4240 +4914 139065 0.5720 +4914 146713 0.4170 +4914 149499 0.4180 +4914 158471 0.4520 +4914 163688 0.5040 +4914 359948 0.5270 +4914 399694 0.9360 +4915 4922 0.4620 +4915 4923 0.7140 +4915 4974 0.4300 +4915 4978 0.5300 +4915 5020 0.6450 +4915 5023 0.4700 +4915 5024 0.4220 +4915 5025 0.4210 +4915 5067 0.4560 +4915 5152 0.4070 +4915 5154 0.6920 +4915 5155 0.7080 +4915 5156 0.5080 +4915 5159 0.5000 +4915 5173 0.4400 +4915 5228 0.6850 +4915 5266 0.5150 +4915 5290 0.6750 +4915 5295 0.7410 +4915 5327 0.4550 +4915 5335 0.9920 +4915 5336 0.9070 +4915 5364 0.4530 +4915 5365 0.4230 +4915 5443 0.4810 +4915 5457 0.4790 +4915 5697 0.4200 +4915 5728 0.4350 +4915 5770 0.4860 +4915 5781 0.9390 +4915 5789 0.5570 +4915 5792 0.7000 +4915 5796 0.4610 +4915 5802 0.5150 +4915 5803 0.5740 +4915 5816 0.6490 +4915 5873 0.5150 +4915 5874 0.4150 +4915 5879 0.6120 +4915 5979 0.5640 +4915 6272 0.9330 +4915 6285 0.4350 +4915 6323 0.4640 +4915 6363 0.4500 +4915 6464 0.9990 +4915 6506 0.4650 +4915 6507 0.4630 +4915 6529 0.5350 +4915 6530 0.5500 +4915 6531 0.4240 +4915 6532 0.5120 +4915 6616 0.6910 +4915 6622 0.5920 +4915 6654 0.7740 +4915 6714 0.7860 +4915 6750 0.4510 +4915 6774 0.4220 +4915 6853 0.6440 +4915 6854 0.5070 +4915 6855 0.6580 +4915 6857 0.4250 +4915 6863 0.7930 +4915 6870 0.4080 +4915 7027 0.4420 +4915 7039 0.7120 +4915 7040 0.5810 +4915 7054 0.5800 +4915 7074 0.9080 +4915 7124 0.6410 +4915 7132 0.4280 +4915 7157 0.4670 +4915 7170 0.4200 +4915 7189 0.4440 +4915 7299 0.4490 +4915 7345 0.4120 +4915 7349 0.4030 +4915 7423 0.6990 +4915 7424 0.7120 +4915 7442 0.5130 +4915 8074 0.6790 +4915 8224 0.4180 +4915 8326 0.4440 +4915 8404 0.4350 +4915 8660 0.5220 +4915 8766 0.4170 +4915 8817 0.7570 +4915 8822 0.7690 +4915 8823 0.7540 +4915 8851 0.6310 +4915 8878 0.6100 +4915 8989 0.4130 +4915 9001 0.6380 +4915 9048 0.6450 +4915 9283 0.4790 +4915 9378 0.4470 +4915 9379 0.4100 +4915 9456 0.4980 +4915 9568 0.5120 +4915 9965 0.6920 +4915 10019 0.9050 +4915 10048 0.6310 +4915 10243 0.4090 +4915 10342 0.4790 +4915 10371 0.6130 +4915 10381 0.4190 +4915 10603 0.9100 +4915 10755 0.4420 +4915 10763 0.5460 +4915 10817 0.5780 +4915 10818 0.9920 +4915 10891 0.4080 +4915 11075 0.4290 +4915 11280 0.7100 +4915 11343 0.4960 +4915 22854 0.4870 +4915 22871 0.5340 +4915 22999 0.4690 +4915 23189 0.4760 +4915 23237 0.6010 +4915 23416 0.4190 +4915 23557 0.4550 +4915 23620 0.7220 +4915 23621 0.4460 +4915 23768 0.4600 +4915 25759 0.9640 +4915 25970 0.9660 +4915 26050 0.6430 +4915 26281 0.7660 +4915 26291 0.6940 +4915 27006 0.7620 +4915 27255 0.4660 +4915 50863 0.4060 +4915 51378 0.6890 +4915 51806 0.6670 +4915 53358 0.9930 +4915 54413 0.4080 +4915 54806 0.6050 +4915 55816 0.5710 +4915 56034 0.8020 +4915 57030 0.6790 +4915 57084 0.6280 +4915 57468 0.7110 +4915 57498 0.6750 +4915 57528 0.4440 +4915 57537 0.4350 +4915 57670 0.4230 +4915 64802 0.4870 +4915 65078 0.4940 +4915 79800 0.4760 +4915 80310 0.6670 +4915 84152 0.4530 +4915 84465 0.4710 +4915 84466 0.4110 +4915 84867 0.4050 +4915 91860 0.6750 +4915 114798 0.6050 +4915 122786 0.4030 +4915 129804 0.4030 +4915 140679 0.4770 +4915 146713 0.6270 +4915 151887 0.4430 +4915 153396 0.4220 +4915 163688 0.6670 +4915 340419 0.4530 +4915 341359 0.4120 +4915 399694 0.9390 +4917 6586 0.4020 +4917 8633 0.7890 +4917 50937 0.5780 +4917 57611 0.4280 +4917 57722 0.5500 +4917 79102 0.4500 +4917 80781 0.4720 +4917 84245 0.4560 +4917 90249 0.6270 +4917 91653 0.5510 +4917 122664 0.4280 +4917 137970 0.5650 +4917 219699 0.7490 +4917 286204 0.4330 +4919 4920 0.9250 +4919 6095 0.5510 +4919 6259 0.5080 +4919 6774 0.4510 +4919 7080 0.4730 +4919 7472 0.4560 +4919 7473 0.5850 +4919 7474 0.9950 +4919 7855 0.7660 +4919 7976 0.7230 +4919 8115 0.6970 +4919 8321 0.7720 +4919 8322 0.7690 +4919 8323 0.7310 +4919 8324 0.7810 +4919 8325 0.7540 +4919 8326 0.7310 +4919 9623 0.5300 +4919 10487 0.5870 +4919 11211 0.7620 +4919 11252 0.6330 +4919 56729 0.4630 +4919 80321 0.5630 +4919 81839 0.4150 +4919 84666 0.4890 +4919 89780 0.6270 +4919 92565 0.4160 +4919 284119 0.5650 +4920 6259 0.4910 +4920 6422 0.4330 +4920 6423 0.4600 +4920 7471 0.5900 +4920 7472 0.5140 +4920 7474 0.9980 +4920 7476 0.6550 +4920 7477 0.4170 +4920 7478 0.5880 +4920 7481 0.8710 +4920 7482 0.4040 +4920 7855 0.8210 +4920 7976 0.7930 +4920 8200 0.5790 +4920 8312 0.4470 +4920 8313 0.4020 +4920 8321 0.9050 +4920 8322 0.8190 +4920 8323 0.7920 +4920 8324 0.8080 +4920 8325 0.8050 +4920 8326 0.7970 +4920 9241 0.6170 +4920 9802 0.5540 +4920 11211 0.7570 +4920 54361 0.5600 +4920 54894 0.4080 +4920 57216 0.8900 +4920 81029 0.4820 +4920 81839 0.4600 +4920 84970 0.4740 +4920 89780 0.5200 +4920 341208 0.4210 +4921 5156 0.4550 +4921 5159 0.5980 +4921 5290 0.6420 +4921 5396 0.5520 +4921 5728 0.5120 +4921 6275 0.4330 +4921 6464 0.7090 +4921 6678 0.4480 +4921 6943 0.4970 +4921 7048 0.4470 +4921 7070 0.4270 +4921 7157 0.4790 +4921 7291 0.4020 +4921 7373 0.5050 +4921 7450 0.6540 +4921 10631 0.5460 +4921 11096 0.4110 +4921 11183 0.4280 +4921 27436 0.6690 +4921 55294 0.4790 +4921 89795 0.4210 +4921 127933 0.4040 +4922 4923 0.9990 +4922 4988 0.5260 +4922 5020 0.9170 +4922 5021 0.4130 +4922 5045 0.5200 +4922 5049 0.4600 +4922 5173 0.9120 +4922 5179 0.6560 +4922 5330 0.5140 +4922 5331 0.5190 +4922 5367 0.7550 +4922 5368 0.5370 +4922 5443 0.7250 +4922 5539 0.7660 +4922 5550 0.6880 +4922 5577 0.4370 +4922 5617 0.4550 +4922 5697 0.7430 +4922 5744 0.5260 +4922 5816 0.4620 +4922 5972 0.6070 +4922 6010 0.6850 +4922 6272 0.9990 +4922 6343 0.7640 +4922 6532 0.4230 +4922 6653 0.8520 +4922 6750 0.9420 +4922 6790 0.4210 +4922 6855 0.5350 +4922 6863 0.9820 +4922 6869 0.8490 +4922 7039 0.4320 +4922 7054 0.6230 +4922 7064 0.6000 +4922 7166 0.4880 +4922 7200 0.9160 +4922 7201 0.6370 +4922 7204 0.4990 +4922 7299 0.4890 +4922 7432 0.8500 +4922 7857 0.4190 +4922 8061 0.4880 +4922 8509 0.4590 +4922 8620 0.6570 +4922 8862 0.6890 +4922 8997 0.4990 +4922 9607 0.5470 +4922 10206 0.6650 +4922 10316 0.6960 +4922 10371 0.4020 +4922 10800 0.6070 +4922 10874 0.8460 +4922 10887 0.5550 +4922 10911 0.6390 +4922 11104 0.4930 +4922 22974 0.4110 +4922 23236 0.5410 +4922 23620 0.9990 +4922 27152 0.4070 +4922 27185 0.4200 +4922 30012 0.4370 +4922 51083 0.8570 +4922 51738 0.8530 +4922 54820 0.4260 +4922 54858 0.7580 +4922 56923 0.7090 +4922 57084 0.5300 +4922 57105 0.6160 +4922 57486 0.9960 +4922 57549 0.4700 +4922 57578 0.4110 +4922 59272 0.7990 +4922 60675 0.5410 +4922 81565 0.4670 +4922 84125 0.4020 +4922 84432 0.4490 +4922 115557 0.4990 +4922 117194 0.5110 +4922 128674 0.5680 +4922 129521 0.6680 +4922 139760 0.4350 +4922 140679 0.4190 +4922 147381 0.4060 +4922 201780 0.4290 +4922 257313 0.4870 +4922 259232 0.8430 +4922 285175 0.8410 +4922 338557 0.4130 +4922 347148 0.6030 +4922 387129 0.6550 +4922 594857 0.6650 +4922 104909134 0.7250 +4923 5118 0.7710 +4923 5330 0.5220 +4923 5331 0.5250 +4923 5788 0.4070 +4923 5901 0.4800 +4923 6272 0.7230 +4923 6295 0.6420 +4923 7200 0.5300 +4923 7201 0.4430 +4923 7204 0.4990 +4923 7205 0.4160 +4923 7295 0.5350 +4923 8021 0.5370 +4923 8997 0.5260 +4923 9152 0.4120 +4923 9630 0.6870 +4923 9785 0.4470 +4923 10204 0.4160 +4923 10316 0.5950 +4923 10468 0.5750 +4923 10800 0.4100 +4923 10874 0.8140 +4923 10887 0.4050 +4923 10911 0.4990 +4923 11274 0.4260 +4923 23020 0.4310 +4923 23236 0.5190 +4923 23620 0.9490 +4923 26227 0.5700 +4923 26577 0.7610 +4923 28986 0.4910 +4923 51738 0.7530 +4923 54331 0.9290 +4923 54883 0.4450 +4923 56923 0.4450 +4923 57105 0.4160 +4923 57486 0.6710 +4923 60675 0.5000 +4923 65078 0.4070 +4923 81532 0.5060 +4923 84432 0.5180 +4923 115557 0.4990 +4923 117166 0.8750 +4923 124857 0.8500 +4923 128674 0.4050 +4923 129521 0.5510 +4923 219972 0.4460 +4923 257313 0.5300 +4923 387129 0.4570 +4923 594857 0.5450 +4923 619373 0.4530 +4923 104909134 0.6220 +4924 4925 0.4580 +4924 4982 0.4770 +4924 5431 0.6690 +4924 5534 0.4370 +4924 5589 0.4900 +4924 5810 0.4470 +4924 6284 0.4270 +4924 8019 0.4910 +4924 8290 0.4350 +4924 8356 0.4450 +4924 10956 0.6830 +4924 23476 0.4170 +4924 23646 0.4200 +4924 26040 0.5420 +4924 26227 0.4060 +4924 54757 0.4330 +4924 55808 0.4110 +4924 56975 0.7890 +4924 57402 0.6650 +4924 127281 0.4930 +4924 440093 0.4350 +4924 440193 0.4170 +4924 440686 0.4350 +4924 653604 0.4350 +4925 5020 0.6110 +4925 5367 0.5300 +4925 5443 0.7480 +4925 5611 0.4110 +4925 5697 0.5410 +4925 7200 0.4900 +4925 8502 0.4270 +4925 8862 0.4720 +4925 9607 0.5910 +4925 10584 0.4450 +4925 26297 0.4650 +4925 29937 0.5240 +4925 51738 0.7170 +4925 51752 0.9240 +4925 129025 0.4350 +4925 145264 0.4100 +4925 252995 0.4390 +4925 389203 0.4200 +4925 619373 0.4470 +4926 4928 0.6020 +4926 5116 0.6470 +4926 5292 0.5490 +4926 5347 0.7470 +4926 5371 0.5920 +4926 5573 0.7110 +4926 5591 0.5700 +4926 5714 0.6310 +4926 5903 0.4740 +4926 5905 0.6100 +4926 5914 0.8340 +4926 6046 0.4370 +4926 6249 0.4230 +4926 6597 0.4040 +4926 6601 0.5130 +4926 6613 0.5920 +4926 6709 0.4040 +4926 6777 0.6490 +4926 6790 0.6940 +4926 7013 0.6760 +4926 7157 0.6200 +4926 7158 0.5970 +4926 7283 0.8240 +4926 7515 0.5550 +4926 7520 0.4010 +4926 7704 0.8280 +4926 8019 0.4130 +4926 8089 0.8640 +4926 8243 0.4510 +4926 8315 0.5040 +4926 8349 0.4550 +4926 8356 0.4290 +4926 8361 0.6610 +4926 8467 0.4190 +4926 8480 0.7720 +4926 8650 0.4110 +4926 8655 0.4720 +4926 8658 0.9210 +4926 8815 0.5260 +4926 9055 0.4580 +4926 9126 0.4240 +4926 9212 0.5410 +4926 9656 0.4050 +4926 9700 0.4650 +4926 9787 0.4890 +4926 9793 0.5880 +4926 9928 0.4190 +4926 9972 0.4180 +4926 9987 0.5200 +4926 10068 0.4200 +4926 10073 0.4680 +4926 10112 0.5050 +4926 10121 0.5190 +4926 10155 0.5890 +4926 10204 0.4400 +4926 10236 0.4780 +4926 10250 0.4010 +4926 10270 0.4800 +4926 10274 0.6460 +4926 10300 0.4710 +4926 10403 0.6630 +4926 10536 0.5700 +4926 10540 0.4460 +4926 10733 0.4310 +4926 10744 0.4660 +4926 10951 0.6820 +4926 11004 0.5220 +4926 11113 0.4010 +4926 11200 0.5420 +4926 22974 0.6040 +4926 22995 0.5580 +4926 23168 0.4920 +4926 23265 0.4570 +4926 23299 0.4270 +4926 23332 0.4300 +4926 23354 0.7410 +4926 23476 0.8230 +4926 24137 0.4090 +4926 25855 0.5000 +4926 26086 0.8960 +4926 26271 0.5210 +4926 29110 0.5620 +4926 29899 0.9970 +4926 51199 0.5080 +4926 51377 0.5220 +4926 51655 0.4530 +4926 54386 0.4130 +4926 54443 0.5130 +4926 54801 0.9240 +4926 54875 0.5880 +4926 54930 0.6930 +4926 55023 0.4870 +4926 55142 0.6700 +4926 55559 0.6390 +4926 55835 0.4870 +4926 55904 0.4670 +4926 56288 0.4910 +4926 57646 0.6200 +4926 60592 0.4640 +4926 60626 0.4630 +4926 63925 0.5280 +4926 64599 0.4960 +4926 64859 0.5060 +4926 79184 0.4180 +4926 79441 0.7550 +4926 79968 0.6280 +4926 80351 0.8280 +4926 81608 0.5850 +4926 81930 0.4660 +4926 83540 0.4770 +4926 84292 0.5980 +4926 84312 0.4140 +4926 84823 0.5980 +4926 85456 0.6510 +4926 90417 0.5170 +4926 93323 0.7030 +4926 115106 0.7140 +4926 121441 0.6860 +4926 124245 0.4350 +4926 256364 0.4180 +4926 259266 0.5160 +4926 284001 0.4470 +4926 387755 0.5450 +4926 402569 0.5470 +4926 653604 0.4750 +4927 4928 0.9990 +4927 5195 0.4040 +4927 5295 0.4230 +4927 5901 0.6840 +4927 5902 0.6700 +4927 5903 0.9990 +4927 5905 0.8740 +4927 6396 0.9770 +4927 6426 0.4510 +4927 6427 0.4600 +4927 6428 0.4870 +4927 6429 0.4230 +4927 6430 0.4160 +4927 6431 0.4210 +4927 6432 0.4540 +4927 6606 0.4080 +4927 6612 0.4630 +4927 6613 0.4630 +4927 6628 0.4350 +4927 6632 0.4600 +4927 6633 0.4600 +4927 6634 0.4300 +4927 6635 0.4260 +4927 6636 0.5050 +4927 6637 0.4400 +4927 6672 0.4080 +4927 6782 0.4090 +4927 6832 0.4410 +4927 7153 0.4190 +4927 7175 0.9590 +4927 7307 0.4490 +4927 7329 0.5890 +4927 7341 0.5140 +4927 7514 0.9970 +4927 7884 0.4430 +4927 7913 0.5380 +4927 8021 0.9990 +4927 8086 0.9940 +4927 8189 0.4250 +4927 8480 0.9420 +4927 8487 0.4160 +4927 8498 0.5590 +4927 8563 0.6020 +4927 8683 0.4130 +4927 9133 0.4160 +4927 9212 0.4830 +4927 9295 0.4410 +4927 9631 0.9950 +4927 9657 0.4710 +4927 9688 0.9950 +4927 9759 0.4160 +4927 9775 0.6000 +4927 9785 0.5450 +4927 9811 0.4120 +4927 9818 0.9870 +4927 9877 0.4660 +4927 9883 0.6900 +4927 9908 0.6760 +4927 9939 0.5130 +4927 9972 0.9950 +4927 9984 0.6000 +4927 10045 0.5120 +4927 10073 0.6890 +4927 10146 0.4010 +4927 10189 0.6250 +4927 10204 0.7740 +4927 10240 0.5080 +4927 10250 0.5420 +4927 10482 0.9190 +4927 10526 0.6030 +4927 10569 0.4380 +4927 10762 0.9750 +4927 10783 0.4360 +4927 10898 0.4250 +4927 10921 0.5650 +4927 11052 0.4270 +4927 11097 0.9440 +4927 11218 0.4270 +4927 11260 0.6210 +4927 11269 0.4240 +4927 11319 0.5110 +4927 11338 0.4670 +4927 22794 0.5280 +4927 22824 0.4150 +4927 22916 0.5930 +4927 23165 0.9950 +4927 23225 0.9850 +4927 23256 0.5130 +4927 23262 0.4040 +4927 23279 0.9880 +4927 23414 0.4030 +4927 23511 0.9920 +4927 23534 0.5040 +4927 23636 0.9990 +4927 25909 0.9490 +4927 25929 0.4380 +4927 26097 0.4770 +4927 26227 0.4690 +4927 27161 0.4050 +4927 29107 0.6630 +4927 29894 0.4160 +4927 50628 0.4520 +4927 51182 0.5150 +4927 51213 0.4830 +4927 51362 0.5450 +4927 51501 0.4540 +4927 51692 0.4700 +4927 51808 0.5380 +4927 53371 0.9840 +4927 53981 0.4530 +4927 54148 0.5080 +4927 54830 0.8000 +4927 54960 0.5040 +4927 55110 0.6300 +4927 55143 0.4200 +4927 55308 0.8480 +4927 55339 0.5230 +4927 55705 0.4030 +4927 55706 0.9790 +4927 55746 0.9860 +4927 57122 0.9940 +4927 57187 0.5920 +4927 65109 0.5290 +4927 79023 0.9820 +4927 79171 0.5910 +4927 79228 0.5610 +4927 79760 0.4180 +4927 79833 0.4160 +4927 79902 0.9980 +4927 80145 0.6480 +4927 81608 0.4650 +4927 81929 0.9930 +4927 84248 0.4200 +4927 84271 0.5130 +4927 84321 0.6340 +4927 84324 0.5810 +4927 91754 0.4620 +4927 129401 0.9960 +4927 140609 0.4050 +4927 348995 0.9910 +4927 400668 0.4180 +4927 728343 0.6330 +4927 729857 0.9770 +4927 100101267 0.7090 +4928 5036 0.5110 +4928 5087 0.6270 +4928 5298 0.5370 +4928 5347 0.6380 +4928 5371 0.5140 +4928 5396 0.8420 +4928 5465 0.4250 +4928 5901 0.7950 +4928 5902 0.7390 +4928 5903 0.9990 +4928 5905 0.8460 +4928 5910 0.7770 +4928 5914 0.5490 +4928 5927 0.9060 +4928 6047 0.4990 +4928 6240 0.5090 +4928 6396 0.9990 +4928 6426 0.6210 +4928 6427 0.5720 +4928 6428 0.5910 +4928 6429 0.4870 +4928 6430 0.4780 +4928 6431 0.5440 +4928 6432 0.5430 +4928 6606 0.4110 +4928 6612 0.4880 +4928 6613 0.5290 +4928 6628 0.4440 +4928 6632 0.4870 +4928 6633 0.5530 +4928 6634 0.6010 +4928 6635 0.5640 +4928 6636 0.5270 +4928 6637 0.5340 +4928 6657 0.4680 +4928 6672 0.4360 +4928 6683 0.6590 +4928 6782 0.4420 +4928 6786 0.5260 +4928 7088 0.4110 +4928 7090 0.4260 +4928 7150 0.6410 +4928 7153 0.4960 +4928 7175 0.9940 +4928 7182 0.4980 +4928 7307 0.5990 +4928 7329 0.7640 +4928 7341 0.6060 +4928 7468 0.4560 +4928 7490 0.4480 +4928 7514 0.9680 +4928 7874 0.5480 +4928 7881 0.4670 +4928 7884 0.4610 +4928 7913 0.4870 +4928 7919 0.6500 +4928 7994 0.6550 +4928 8021 0.9990 +4928 8028 0.7680 +4928 8086 0.9600 +4928 8178 0.4060 +4928 8189 0.4330 +4928 8290 0.5300 +4928 8356 0.4720 +4928 8379 0.9150 +4928 8480 0.9990 +4928 8487 0.4670 +4928 8514 0.4680 +4928 8522 0.4670 +4928 8563 0.5940 +4928 8574 0.4680 +4928 8602 0.4840 +4928 8650 0.4720 +4928 8683 0.4960 +4928 8888 0.9590 +4928 9133 0.4520 +4928 9172 0.7580 +4928 9184 0.8230 +4928 9196 0.4670 +4928 9212 0.6300 +4928 9232 0.7020 +4928 9253 0.5110 +4928 9295 0.5130 +4928 9320 0.4500 +4928 9631 0.9990 +4928 9648 0.4240 +4928 9688 0.9990 +4928 9700 0.6700 +4928 9730 0.4960 +4928 9739 0.6100 +4928 9759 0.4870 +4928 9775 0.6430 +4928 9782 0.4090 +4928 9785 0.5620 +4928 9818 0.9920 +4928 9877 0.4460 +4928 9883 0.6470 +4928 9887 0.5210 +4928 9939 0.5630 +4928 9972 0.9990 +4928 9984 0.5290 +4928 10045 0.6850 +4928 10073 0.4660 +4928 10112 0.4020 +4928 10126 0.5450 +4928 10146 0.4610 +4928 10189 0.7400 +4928 10193 0.4710 +4928 10204 0.8370 +4928 10250 0.5790 +4928 10460 0.5070 +4928 10482 0.9970 +4928 10499 0.5490 +4928 10526 0.6130 +4928 10527 0.4520 +4928 10569 0.4340 +4928 10594 0.4410 +4928 10664 0.5270 +4928 10725 0.4160 +4928 10726 0.5340 +4928 10744 0.6510 +4928 10762 0.9490 +4928 10783 0.5170 +4928 10898 0.5340 +4928 10921 0.5850 +4928 10973 0.4130 +4928 11052 0.5540 +4928 11097 0.8020 +4928 11100 0.7670 +4928 11168 0.8330 +4928 11218 0.5210 +4928 11260 0.6870 +4928 11338 0.5590 +4928 22794 0.5680 +4928 22824 0.4520 +4928 22916 0.7100 +4928 22977 0.4670 +4928 23019 0.5780 +4928 23028 0.4520 +4928 23063 0.4200 +4928 23076 0.4010 +4928 23078 0.4080 +4928 23165 0.9960 +4928 23195 0.4310 +4928 23214 0.5170 +4928 23225 0.9760 +4928 23279 0.9990 +4928 23353 0.4430 +4928 23435 0.4640 +4928 23476 0.5620 +4928 23511 0.9810 +4928 23534 0.5590 +4928 23592 0.4010 +4928 23633 0.4740 +4928 23636 0.9980 +4928 25909 0.9980 +4928 25929 0.5960 +4928 26040 0.8110 +4928 26097 0.5630 +4928 26953 0.6720 +4928 27161 0.5770 +4928 27436 0.5470 +4928 29072 0.4240 +4928 29107 0.9140 +4928 29894 0.5210 +4928 30000 0.8230 +4928 50628 0.4140 +4928 51182 0.4530 +4928 51213 0.4580 +4928 51362 0.4540 +4928 51477 0.4200 +4928 51501 0.5270 +4928 51510 0.4370 +4928 51692 0.5640 +4928 51808 0.4900 +4928 53371 0.9990 +4928 53981 0.4840 +4928 54764 0.5090 +4928 54830 0.7950 +4928 54904 0.8310 +4928 54960 0.4620 +4928 55110 0.5650 +4928 55143 0.5490 +4928 55167 0.5020 +4928 55339 0.4770 +4928 55706 0.9430 +4928 55746 0.9990 +4928 55795 0.9280 +4928 55916 0.6100 +4928 56000 0.8140 +4928 56001 0.7690 +4928 56926 0.4420 +4928 56943 0.9290 +4928 56946 0.4220 +4928 57122 0.9990 +4928 57187 0.6310 +4928 57510 0.6350 +4928 57609 0.4890 +4928 57727 0.4880 +4928 64324 0.9370 +4928 64746 0.4840 +4928 64783 0.4670 +4928 65109 0.5290 +4928 79023 0.9990 +4928 79142 0.9200 +4928 79228 0.6580 +4928 79711 0.4490 +4928 79760 0.4370 +4928 79833 0.4190 +4928 79885 0.4220 +4928 79902 0.9990 +4928 80145 0.5380 +4928 80335 0.6040 +4928 81608 0.6080 +4928 81929 0.9990 +4928 84220 0.5070 +4928 84223 0.4570 +4928 84248 0.5080 +4928 84271 0.6090 +4928 84321 0.5850 +4928 84324 0.6240 +4928 84444 0.4020 +4928 84662 0.5310 +4928 84823 0.4380 +4928 84824 0.7180 +4928 91181 0.4390 +4928 91754 0.5130 +4928 116835 0.4570 +4928 124540 0.8620 +4928 129401 0.9970 +4928 140609 0.4970 +4928 147339 0.4850 +4928 171023 0.4790 +4928 199746 0.4150 +4928 219793 0.4580 +4928 259217 0.4570 +4928 266743 0.4070 +4928 348995 0.9990 +4928 440093 0.4610 +4928 440686 0.4610 +4928 653489 0.5160 +4928 653604 0.4650 +4928 728343 0.8790 +4928 729540 0.5040 +4928 729857 0.8860 +4928 100101267 0.6490 +4929 4973 0.4020 +4929 5015 0.5770 +4929 5071 0.6070 +4929 5080 0.4750 +4929 5309 0.9660 +4929 5454 0.6590 +4929 5469 0.5460 +4929 5595 0.4700 +4929 5743 0.5240 +4929 5816 0.4190 +4929 5970 0.4180 +4929 5996 0.4820 +4929 5997 0.4750 +4929 6256 0.4840 +4929 6257 0.7040 +4929 6364 0.4840 +4929 6387 0.4450 +4929 6469 0.5860 +4929 6492 0.4440 +4929 6531 0.7880 +4929 6571 0.8020 +4929 6597 0.6030 +4929 6612 0.4230 +4929 6613 0.4300 +4929 6622 0.7480 +4929 6657 0.6180 +4929 6938 0.6890 +4929 7054 0.8370 +4929 7057 0.4040 +4929 7124 0.4060 +4929 7329 0.4410 +4929 7471 0.4540 +4929 7832 0.4460 +4929 8013 0.8420 +4929 8148 0.6380 +4929 8462 0.4080 +4929 8553 0.4010 +4929 8648 0.4150 +4929 8864 0.9370 +4929 9314 0.5740 +4929 9592 0.6510 +4929 9611 0.6270 +4929 9612 0.7230 +4929 9627 0.4490 +4929 9734 0.4510 +4929 10155 0.4500 +4929 10231 0.4190 +4929 10418 0.4250 +4929 10763 0.4820 +4929 10891 0.5090 +4929 11266 0.4100 +4929 11315 0.4750 +4929 23040 0.5110 +4929 23186 0.7360 +4929 23764 0.4360 +4929 50674 0.4410 +4929 51176 0.5450 +4929 51564 0.4450 +4929 51588 0.4780 +4929 54206 0.4120 +4929 55014 0.4990 +4929 55269 0.4240 +4929 63973 0.6570 +4929 63974 0.4390 +4929 64651 0.4230 +4929 64919 0.4240 +4929 65018 0.4180 +4929 119391 0.4120 +4929 120892 0.4500 +4929 128434 0.4080 +4929 146713 0.4180 +4929 147381 0.4370 +4929 150094 0.6620 +4929 266743 0.4980 +4929 594855 0.4620 +4931 5036 0.6380 +4931 5394 0.6580 +4931 5822 0.6050 +4931 6125 0.6870 +4931 6135 0.4240 +4931 6147 0.4800 +4931 6628 0.7220 +4931 6634 0.7510 +4931 6635 0.7360 +4931 6714 0.4620 +4931 7011 0.9100 +4931 7015 0.9440 +4931 7353 0.4880 +4931 8518 0.5420 +4931 8602 0.5730 +4931 8634 0.4510 +4931 8886 0.4950 +4931 9136 0.4400 +4931 9188 0.5030 +4931 9277 0.6470 +4931 9373 0.4260 +4931 9397 0.4350 +4931 9669 0.4030 +4931 9724 0.5990 +4931 9790 0.7700 +4931 9887 0.5630 +4931 9904 0.7530 +4931 9933 0.4310 +4931 10153 0.6820 +4931 10171 0.6610 +4931 10199 0.6210 +4931 10277 0.4240 +4931 10412 0.5460 +4931 10528 0.5140 +4931 10607 0.5950 +4931 10728 0.9030 +4931 10813 0.7000 +4931 10845 0.4270 +4931 10885 0.7670 +4931 10969 0.6600 +4931 11128 0.4670 +4931 11137 0.4560 +4931 22796 0.4200 +4931 22984 0.5680 +4931 23029 0.7040 +4931 23160 0.6190 +4931 23195 0.6850 +4931 23223 0.6930 +4931 23246 0.7990 +4931 23293 0.5650 +4931 23378 0.7760 +4931 23381 0.5620 +4931 23476 0.5320 +4931 23481 0.6650 +4931 23517 0.9830 +4931 23560 0.7690 +4931 25879 0.6450 +4931 25885 0.7400 +4931 26043 0.6900 +4931 26155 0.7470 +4931 26156 0.4330 +4931 26354 0.7580 +4931 26574 0.6510 +4931 27042 0.4680 +4931 28987 0.5700 +4931 29889 0.8240 +4931 29997 0.6820 +4931 51042 0.4450 +4931 51068 0.5940 +4931 51096 0.7700 +4931 51154 0.6270 +4931 51187 0.7060 +4931 51202 0.4250 +4931 51388 0.4450 +4931 51602 0.4730 +4931 54433 0.9170 +4931 54475 0.6150 +4931 54552 0.9380 +4931 54606 0.8970 +4931 54663 0.8800 +4931 54865 0.4740 +4931 54881 0.6110 +4931 55051 0.4350 +4931 55131 0.9020 +4931 55135 0.9060 +4931 55153 0.6630 +4931 55226 0.8750 +4931 55299 0.6930 +4931 55341 0.7060 +4931 55505 0.9140 +4931 55622 0.4380 +4931 55651 0.9200 +4931 55666 0.4080 +4931 55703 0.4950 +4931 55720 0.7580 +4931 55759 0.7850 +4931 55781 0.5430 +4931 55813 0.4670 +4931 56342 0.6110 +4931 57050 0.4260 +4931 57062 0.6150 +4931 57418 0.6320 +4931 57696 0.5670 +4931 64318 0.8630 +4931 64425 0.5000 +4931 64434 0.9060 +4931 64794 0.4720 +4931 79009 0.4020 +4931 79039 0.6320 +4931 79631 0.4360 +4931 79707 0.4300 +4931 79902 0.4570 +4931 79954 0.6860 +4931 80135 0.4500 +4931 83743 0.4490 +4931 84128 0.5980 +4931 84135 0.4900 +4931 84154 0.8460 +4931 84172 0.5100 +4931 84294 0.5000 +4931 84365 0.7270 +4931 84450 0.4260 +4931 84549 0.7230 +4931 84916 0.5390 +4931 84946 0.6630 +4931 87178 0.4050 +4931 92856 0.4010 +4931 117246 0.6990 +4931 134353 0.7250 +4931 155368 0.4360 +4931 161424 0.4270 +4931 165324 0.4090 +4931 221078 0.6320 +4931 317781 0.4350 +4935 4942 0.6080 +4935 4948 0.8890 +4935 4953 0.4670 +4935 5009 0.7790 +4935 5077 0.5200 +4935 5080 0.4020 +4935 5188 0.6040 +4935 5330 0.5160 +4935 5331 0.5160 +4935 5471 0.7000 +4935 5832 0.7590 +4935 5873 0.5760 +4935 5956 0.6630 +4935 6490 0.8090 +4935 6663 0.5200 +4935 6907 0.5300 +4935 7030 0.4660 +4935 7107 0.4120 +4935 7204 0.5070 +4935 7299 0.9080 +4935 7306 0.8620 +4935 7372 0.7970 +4935 7942 0.4570 +4935 8565 0.4260 +4935 8801 0.4560 +4935 8833 0.4990 +4935 8908 0.4260 +4935 8997 0.4990 +4935 9962 0.6540 +4935 9963 0.6540 +4935 10457 0.4110 +4935 10570 0.6230 +4935 10800 0.4260 +4935 11234 0.5110 +4935 22797 0.5110 +4935 23236 0.5160 +4935 23682 0.4090 +4935 26258 0.4160 +4935 51026 0.6430 +4935 51151 0.7830 +4935 51167 0.6810 +4935 51557 0.5520 +4935 51582 0.4670 +4935 51700 0.6160 +4935 51706 0.6130 +4935 55157 0.5410 +4935 55278 0.5590 +4935 55344 0.4730 +4935 56896 0.6240 +4935 57105 0.4080 +4935 60506 0.6650 +4935 79073 0.6180 +4935 79803 0.5410 +4935 79814 0.4520 +4935 83938 0.6200 +4935 84343 0.5070 +4935 89781 0.4630 +4935 90167 0.9250 +4935 92106 0.6130 +4935 113451 0.4670 +4935 115557 0.4990 +4935 122622 0.4460 +4935 127845 0.6510 +4935 139596 0.4930 +4935 146167 0.6570 +4935 158584 0.5850 +4935 162417 0.6520 +4935 283554 0.4110 +4935 283652 0.6660 +4935 283985 0.5360 +4935 285148 0.5780 +4935 388552 0.4470 +4935 606495 0.6130 +4938 4939 0.9990 +4938 4940 0.9860 +4938 5359 0.7270 +4938 5610 0.9290 +4938 5618 0.4400 +4938 5696 0.4750 +4938 5698 0.6590 +4938 6041 0.9640 +4938 6059 0.6070 +4938 6347 0.4450 +4938 6351 0.5730 +4938 6355 0.4390 +4938 6373 0.5460 +4938 6402 0.4340 +4938 6614 0.5350 +4938 6672 0.4910 +4938 6737 0.5770 +4938 6772 0.9660 +4938 6773 0.8800 +4938 7097 0.4160 +4938 7098 0.6830 +4938 7099 0.4070 +4938 7124 0.5160 +4938 7297 0.6020 +4938 7318 0.4070 +4938 7706 0.5340 +4938 8519 0.8630 +4938 8638 0.8840 +4938 8651 0.4930 +4938 8743 0.5640 +4938 9021 0.4080 +4938 9246 0.7690 +4938 9447 0.4310 +4938 9474 0.4310 +4938 9636 0.9830 +4938 9641 0.4710 +4938 9830 0.4740 +4938 10346 0.6910 +4938 10379 0.9440 +4938 10410 0.8120 +4938 10437 0.4650 +4938 10561 0.9610 +4938 10563 0.4750 +4938 10581 0.5940 +4938 10590 0.4240 +4938 10640 0.4990 +4938 10673 0.4250 +4938 10964 0.9550 +4938 11274 0.9600 +4938 23424 0.5020 +4938 23480 0.4030 +4938 23586 0.9440 +4938 24138 0.8310 +4938 25939 0.7100 +4938 26010 0.4600 +4938 26191 0.4270 +4938 29110 0.5400 +4938 51056 0.4630 +4938 51135 0.4330 +4938 51191 0.8500 +4938 51284 0.5890 +4938 51311 0.6630 +4938 51434 0.4090 +4938 54585 0.4010 +4938 54625 0.5890 +4938 54739 0.8870 +4938 54809 0.7580 +4938 55008 0.8740 +4938 55337 0.5440 +4938 55601 0.9330 +4938 56829 0.4920 +4938 57506 0.5710 +4938 59272 0.4210 +4938 64108 0.8740 +4938 64127 0.5720 +4938 64135 0.9390 +4938 64761 0.7440 +4938 79132 0.8020 +4938 80830 0.4880 +4938 81030 0.4870 +4938 83666 0.8700 +4938 84166 0.4050 +4938 84271 0.7260 +4938 85363 0.6030 +4938 85441 0.6230 +4938 91039 0.5060 +4938 91543 0.9670 +4938 92092 0.4050 +4938 94240 0.8080 +4938 115004 0.5610 +4938 115361 0.5200 +4938 115362 0.5080 +4938 116071 0.4300 +4938 122509 0.4180 +4938 129607 0.7760 +4938 146857 0.4680 +4938 151636 0.5600 +4938 163702 0.4890 +4938 219285 0.6830 +4938 282616 0.5800 +4938 282617 0.5770 +4938 282618 0.7440 +4938 439996 0.5580 +4939 4940 0.9990 +4939 5359 0.6890 +4939 5371 0.4110 +4939 5592 0.5640 +4939 5610 0.9340 +4939 5696 0.4730 +4939 5698 0.4650 +4939 6041 0.9330 +4939 6059 0.5970 +4939 6146 0.4010 +4939 6288 0.4070 +4939 6289 0.4050 +4939 6347 0.4190 +4939 6351 0.5910 +4939 6355 0.4270 +4939 6373 0.5890 +4939 6614 0.5710 +4939 6672 0.5950 +4939 6737 0.5680 +4939 6772 0.9720 +4939 6773 0.8860 +4939 6891 0.4100 +4939 7098 0.6390 +4939 7124 0.5870 +4939 7297 0.4930 +4939 7318 0.4300 +4939 7706 0.4790 +4939 8519 0.7860 +4939 8638 0.8840 +4939 8651 0.4120 +4939 8743 0.4620 +4939 9246 0.7790 +4939 9447 0.4110 +4939 9636 0.9510 +4939 9641 0.4050 +4939 9830 0.4540 +4939 10346 0.7550 +4939 10379 0.9250 +4939 10410 0.6770 +4939 10561 0.9410 +4939 10563 0.4850 +4939 10581 0.5420 +4939 10964 0.9350 +4939 11274 0.9160 +4939 23424 0.4330 +4939 23480 0.4130 +4939 23586 0.9490 +4939 24138 0.8160 +4939 25939 0.7270 +4939 26010 0.4260 +4939 26586 0.4310 +4939 29110 0.4690 +4939 51056 0.4780 +4939 51191 0.9020 +4939 51284 0.5380 +4939 51311 0.4260 +4939 54625 0.7510 +4939 54739 0.9330 +4939 54809 0.8480 +4939 55008 0.8930 +4939 55337 0.5860 +4939 55601 0.9070 +4939 56829 0.5070 +4939 57506 0.4750 +4939 57674 0.4080 +4939 60489 0.5910 +4939 64108 0.8800 +4939 64127 0.8910 +4939 64135 0.9320 +4939 64761 0.6610 +4939 79132 0.8630 +4939 80830 0.5230 +4939 81030 0.4600 +4939 83666 0.8750 +4939 84166 0.4980 +4939 84271 0.6240 +4939 85363 0.5170 +4939 85441 0.6510 +4939 91039 0.4170 +4939 91543 0.9500 +4939 94240 0.8910 +4939 115004 0.4830 +4939 115361 0.6640 +4939 115362 0.6010 +4939 116071 0.4440 +4939 127281 0.4020 +4939 129607 0.7940 +4939 149628 0.4310 +4939 151636 0.5470 +4939 152185 0.4150 +4939 155038 0.4450 +4939 163351 0.6080 +4939 219285 0.8350 +4939 282616 0.4450 +4939 282617 0.4110 +4939 282618 0.5380 +4939 439996 0.4690 +4940 5359 0.6910 +4940 5551 0.4540 +4940 5610 0.9590 +4940 6041 0.9560 +4940 6059 0.6120 +4940 6351 0.5160 +4940 6355 0.4150 +4940 6373 0.4860 +4940 6374 0.4550 +4940 6614 0.5630 +4940 6672 0.5900 +4940 6737 0.4400 +4940 6772 0.9590 +4940 6773 0.9080 +4940 7098 0.5720 +4940 7124 0.5370 +4940 7297 0.5190 +4940 7706 0.5010 +4940 8519 0.6740 +4940 8638 0.8220 +4940 9246 0.6490 +4940 9636 0.9410 +4940 9830 0.4670 +4940 10044 0.4790 +4940 10346 0.6080 +4940 10379 0.9180 +4940 10410 0.7310 +4940 10561 0.9290 +4940 10563 0.4270 +4940 10581 0.4960 +4940 10964 0.9220 +4940 11274 0.9100 +4940 22895 0.4680 +4940 23424 0.4750 +4940 23586 0.9430 +4940 24138 0.8660 +4940 25939 0.6920 +4940 26010 0.5780 +4940 27154 0.4200 +4940 29110 0.4500 +4940 51056 0.6230 +4940 51191 0.9020 +4940 51284 0.6570 +4940 51311 0.5940 +4940 54585 0.4150 +4940 54625 0.6410 +4940 54739 0.8810 +4940 54809 0.6280 +4940 55008 0.8870 +4940 55337 0.5380 +4940 55601 0.8900 +4940 56829 0.5400 +4940 57506 0.5300 +4940 57674 0.4320 +4940 64108 0.7350 +4940 64127 0.5370 +4940 64135 0.9210 +4940 64761 0.8200 +4940 79132 0.8290 +4940 81030 0.4640 +4940 83666 0.8610 +4940 84271 0.6640 +4940 84955 0.6190 +4940 85363 0.4980 +4940 85441 0.6470 +4940 91039 0.4830 +4940 91543 0.9410 +4940 92521 0.5900 +4940 94240 0.8310 +4940 115004 0.4530 +4940 115361 0.5610 +4940 115362 0.5660 +4940 116071 0.5170 +4940 129607 0.7240 +4940 149628 0.4330 +4940 151636 0.4680 +4940 219285 0.7380 +4940 282618 0.4190 +4940 439996 0.4330 +4942 4943 0.7350 +4942 4953 0.9860 +4942 5009 0.9890 +4942 5226 0.4390 +4942 5245 0.4390 +4942 5471 0.4420 +4942 5498 0.4180 +4942 5550 0.4020 +4942 5566 0.4940 +4942 5567 0.4910 +4942 5568 0.4920 +4942 5573 0.4360 +4942 5575 0.4270 +4942 5576 0.4280 +4942 5577 0.4360 +4942 5592 0.4270 +4942 5593 0.4270 +4942 5613 0.4830 +4942 5625 0.9510 +4942 5723 0.4160 +4942 5831 0.8080 +4942 5832 0.9980 +4942 5917 0.8430 +4942 5965 0.4250 +4942 6389 0.5330 +4942 6470 0.5470 +4942 6472 0.5740 +4942 6542 0.4760 +4942 6611 0.6760 +4942 6648 0.4620 +4942 6652 0.4100 +4942 6723 0.6650 +4942 6888 0.5330 +4942 6898 0.5970 +4942 7037 0.5320 +4942 7167 0.6890 +4942 7284 0.4450 +4942 7453 0.4180 +4942 7915 0.6770 +4942 8078 0.5830 +4942 8192 0.4750 +4942 8565 0.4060 +4942 8566 0.4030 +4942 8659 0.9840 +4942 8802 0.4270 +4942 8833 0.5160 +4942 8854 0.4460 +4942 9563 0.4410 +4942 9945 0.4300 +4942 10157 0.5620 +4942 10166 0.6570 +4942 10352 0.4180 +4942 10724 0.6860 +4942 10840 0.4460 +4942 10908 0.4270 +4942 10993 0.6180 +4942 11128 0.8550 +4942 11153 0.5700 +4942 23395 0.4250 +4942 23564 0.4430 +4942 23576 0.5250 +4942 23583 0.6770 +4942 23743 0.4150 +4942 25885 0.8550 +4942 26275 0.4420 +4942 27020 0.6560 +4942 29920 0.7510 +4942 29968 0.4980 +4942 51166 0.4500 +4942 51167 0.4210 +4942 51324 0.5510 +4942 51380 0.6520 +4942 51520 0.4260 +4942 51557 0.4360 +4942 51582 0.6610 +4942 51806 0.4790 +4942 54511 0.4540 +4942 54529 0.7770 +4942 55258 0.7920 +4942 55748 0.6580 +4942 57038 0.8500 +4942 58510 0.7850 +4942 64577 0.4460 +4942 64902 0.5400 +4942 65263 0.7860 +4942 79814 0.9120 +4942 79896 0.7920 +4942 79944 0.6840 +4942 80347 0.4530 +4942 80764 0.4430 +4942 83884 0.5460 +4942 84706 0.4770 +4942 84735 0.6580 +4942 89894 0.6090 +4942 92399 0.4010 +4942 92483 0.4300 +4942 113179 0.6770 +4942 113451 0.8140 +4942 122622 0.4490 +4942 122945 0.4810 +4942 124989 0.4290 +4942 126133 0.4460 +4942 128866 0.4170 +4942 134637 0.6770 +4942 137362 0.4850 +4942 137872 0.4310 +4942 140894 0.4270 +4942 146779 0.4290 +4942 148811 0.6580 +4942 152815 0.4430 +4942 160287 0.4320 +4942 160428 0.4590 +4942 162417 0.9970 +4942 283578 0.4810 +4942 339896 0.6620 +4942 375775 0.4270 +4942 100526760 0.6580 +4943 5546 0.7160 +4943 5862 0.5740 +4943 5935 0.6570 +4943 5940 0.5360 +4943 6421 0.4690 +4943 6855 0.5580 +4943 7030 0.8310 +4943 7076 0.6350 +4943 7454 0.4460 +4943 7569 0.6130 +4943 7592 0.4040 +4943 8881 0.8110 +4943 9098 0.8160 +4943 9363 0.8380 +4943 9367 0.4190 +4943 9779 0.6530 +4943 10682 0.4200 +4943 11337 0.9180 +4943 11345 0.9820 +4943 22930 0.5210 +4943 23061 0.5310 +4943 23102 0.5510 +4943 23383 0.4100 +4943 23416 0.6900 +4943 23710 0.9520 +4943 24140 0.4700 +4943 25771 0.4430 +4943 25782 0.5060 +4943 26235 0.4740 +4943 54662 0.5020 +4943 54885 0.5300 +4943 55357 0.5640 +4943 55633 0.4090 +4943 55773 0.5650 +4943 57533 0.4110 +4943 64743 0.6440 +4943 64840 0.4340 +4943 79058 0.7070 +4943 79903 0.4400 +4943 81631 0.8360 +4943 83452 0.9400 +4943 83871 0.5220 +4943 83874 0.4070 +4943 84557 0.4790 +4943 84650 0.4580 +4943 113201 0.4870 +4943 128637 0.5960 +4943 254272 0.4100 +4943 347344 0.5640 +4943 378949 0.6520 +4946 4947 0.4770 +4946 4953 0.9990 +4946 5478 0.4490 +4946 5682 0.4550 +4946 5683 0.4510 +4946 5684 0.4880 +4946 5685 0.4250 +4946 5686 0.4620 +4946 5687 0.4520 +4946 5688 0.6300 +4946 5689 0.4680 +4946 5690 0.5360 +4946 5691 0.5020 +4946 5692 0.6640 +4946 5693 0.5600 +4946 5694 0.6810 +4946 5695 0.4440 +4946 5696 0.4730 +4946 5698 0.4980 +4946 5699 0.5140 +4946 5700 0.4610 +4946 5701 0.4280 +4946 5702 0.4880 +4946 5704 0.5190 +4946 5705 0.4300 +4946 5706 0.4250 +4946 5707 0.4040 +4946 5708 0.4560 +4946 5709 0.4700 +4946 5710 0.4840 +4946 5713 0.4520 +4946 5714 0.4790 +4946 5715 0.4050 +4946 5718 0.4390 +4946 5719 0.4130 +4946 5720 0.4620 +4946 5721 0.4350 +4946 6124 0.4520 +4946 6128 0.4060 +4946 6132 0.4260 +4946 6137 0.4130 +4946 6141 0.4230 +4946 6143 0.7260 +4946 6155 0.7970 +4946 6156 0.5440 +4946 6158 0.4150 +4946 6168 0.6460 +4946 6175 0.4010 +4946 6176 0.4270 +4946 6188 0.4570 +4946 6203 0.5430 +4946 6205 0.4130 +4946 6206 0.4750 +4946 6207 0.4800 +4946 6208 0.6380 +4946 6235 0.5640 +4946 6286 0.4500 +4946 6303 0.6220 +4946 6389 0.4710 +4946 6611 0.4830 +4946 6723 0.4710 +4946 6908 0.4410 +4946 7314 0.7390 +4946 7316 0.6180 +4946 7979 0.4030 +4946 8614 0.4790 +4946 8890 0.4270 +4946 9491 0.4200 +4946 10169 0.4880 +4946 10197 0.4150 +4946 10213 0.4090 +4946 11065 0.4190 +4946 11266 0.4320 +4946 23198 0.4100 +4946 23521 0.4030 +4946 26000 0.4120 +4946 27065 0.4420 +4946 51582 0.9990 +4946 51686 0.5610 +4946 54498 0.4010 +4946 54998 0.4460 +4946 56648 0.4500 +4946 64897 0.4480 +4946 80153 0.4070 +4946 83659 0.4350 +4946 84172 0.5360 +4946 84444 0.4260 +4946 113451 0.9410 +4946 122706 0.4250 +4946 143244 0.4550 +4946 143471 0.4960 +4946 196743 0.4390 +4946 203068 0.4110 +4946 653505 0.4010 +4946 728378 0.4210 +4947 4953 0.9800 +4947 5682 0.4630 +4947 5683 0.4250 +4947 5684 0.4910 +4947 5685 0.4170 +4947 5686 0.4920 +4947 5687 0.4210 +4947 5688 0.4430 +4947 5689 0.4390 +4947 5690 0.4390 +4947 5691 0.4240 +4947 5692 0.4480 +4947 5693 0.4340 +4947 5694 0.4500 +4947 5695 0.4230 +4947 5696 0.4310 +4947 5698 0.4400 +4947 5699 0.4230 +4947 5700 0.4910 +4947 5701 0.4140 +4947 5702 0.4520 +4947 5704 0.4330 +4947 5705 0.4930 +4947 5706 0.4220 +4947 5707 0.4050 +4947 5708 0.4780 +4947 5709 0.5010 +4947 5710 0.4590 +4947 5711 0.4840 +4947 5713 0.4160 +4947 5714 0.4270 +4947 5715 0.4050 +4947 5716 0.4600 +4947 5717 0.4090 +4947 5718 0.5270 +4947 5719 0.4260 +4947 5720 0.4190 +4947 5721 0.4790 +4947 6303 0.4630 +4947 6611 0.6090 +4947 6723 0.4690 +4947 9491 0.4210 +4947 9861 0.4110 +4947 10197 0.4590 +4947 10213 0.4080 +4947 23198 0.4080 +4947 51582 0.9920 +4947 51686 0.5450 +4947 54498 0.6130 +4947 80119 0.4060 +4947 89849 0.4340 +4947 93185 0.4230 +4947 113451 0.9600 +4947 120775 0.4180 +4947 122706 0.4250 +4947 143471 0.4410 +4947 171222 0.4160 +4947 196743 0.5690 +4948 5077 0.4490 +4948 5080 0.4760 +4948 5394 0.4800 +4948 5644 0.4430 +4948 5832 0.5170 +4948 5873 0.4700 +4948 5875 0.5440 +4948 6490 0.5820 +4948 6596 0.6760 +4948 6625 0.4700 +4948 6638 0.6720 +4948 6663 0.4330 +4948 6737 0.5050 +4948 6738 0.4080 +4948 6772 0.8460 +4948 6773 0.5570 +4948 6913 0.4340 +4948 6993 0.4430 +4948 7157 0.4310 +4948 7299 0.9890 +4948 7306 0.9720 +4948 7337 0.5990 +4948 7681 0.8020 +4948 8655 0.7940 +4948 8924 0.7920 +4948 9172 0.6650 +4948 9342 0.7800 +4948 10352 0.4470 +4948 10913 0.4370 +4948 11234 0.5720 +4948 11337 0.4350 +4948 23467 0.6370 +4948 23505 0.4080 +4948 23522 0.4260 +4948 23682 0.4750 +4948 23742 0.4400 +4948 26258 0.4180 +4948 29110 0.6190 +4948 51151 0.9770 +4948 54551 0.6430 +4948 54714 0.4480 +4948 54796 0.5780 +4948 54849 0.4480 +4948 55002 0.4670 +4948 55191 0.4830 +4948 55363 0.4110 +4948 55770 0.5210 +4948 55811 0.4260 +4948 57194 0.7430 +4948 64135 0.4020 +4948 79803 0.5750 +4948 83938 0.7110 +4948 84062 0.4120 +4948 84343 0.5770 +4948 89781 0.5370 +4948 114791 0.4790 +4948 123041 0.8570 +4948 123606 0.4340 +4948 126321 0.5790 +4948 146167 0.4460 +4948 219931 0.7860 +4948 283652 0.9520 +4948 353500 0.4560 +4948 388552 0.4510 +4948 390667 0.6600 +4951 5459 0.4560 +4951 8573 0.4390 +4951 9381 0.4960 +4951 9600 0.8660 +4951 53904 0.4240 +4951 117531 0.4760 +4951 117532 0.4050 +4951 161497 0.5780 +4951 375611 0.9030 +4951 400961 0.4260 +4951 100127206 0.4350 +4952 5268 0.4160 +4952 5286 0.9370 +4952 5287 0.9280 +4952 5288 0.9200 +4952 5290 0.6950 +4952 5291 0.7170 +4952 5293 0.6870 +4952 5294 0.6900 +4952 5295 0.6830 +4952 5296 0.7030 +4952 5297 0.7730 +4952 5298 0.8360 +4952 5305 0.9370 +4952 5330 0.6610 +4952 5331 0.6590 +4952 5332 0.6830 +4952 5333 0.7850 +4952 5335 0.7120 +4952 5336 0.6780 +4952 5341 0.5080 +4952 5728 0.9310 +4952 5861 0.4930 +4952 5864 0.4200 +4952 5867 0.4070 +4952 5868 0.9720 +4952 5870 0.9570 +4952 5872 0.4280 +4952 5878 0.6620 +4952 5879 0.6090 +4952 5881 0.5020 +4952 6272 0.5750 +4952 6643 0.5870 +4952 6844 0.7390 +4952 6845 0.5970 +4952 7037 0.6190 +4952 7163 0.5140 +4952 7164 0.5030 +4952 8029 0.4970 +4952 8218 0.6940 +4952 8301 0.5280 +4952 8394 0.9310 +4952 8395 0.9210 +4952 8396 0.9180 +4952 8411 0.5430 +4952 8503 0.6620 +4952 8546 0.5100 +4952 8673 0.5740 +4952 8766 0.5670 +4952 8775 0.5180 +4952 8821 0.9390 +4952 8867 0.9370 +4952 8871 0.9330 +4952 8905 0.5840 +4952 8907 0.5160 +4952 8936 0.4220 +4952 9026 0.6010 +4952 9129 0.4010 +4952 9651 0.6600 +4952 9685 0.8230 +4952 9698 0.5090 +4952 9829 0.6220 +4952 9896 0.5030 +4952 9950 0.8240 +4952 10053 0.5110 +4952 10152 0.4140 +4952 10163 0.4090 +4952 10245 0.4480 +4952 10458 0.4490 +4952 10618 0.6410 +4952 10717 0.5030 +4952 10755 0.4490 +4952 10787 0.4620 +4952 11021 0.9460 +4952 11031 0.8210 +4952 22876 0.9270 +4952 23007 0.6620 +4952 23236 0.6900 +4952 23396 0.9450 +4952 23431 0.5100 +4952 23527 0.6240 +4952 23557 0.5720 +4952 23647 0.4240 +4952 25977 0.5260 +4952 26060 0.9730 +4952 26258 0.4990 +4952 26499 0.5100 +4952 27124 0.5570 +4952 27131 0.5870 +4952 27339 0.5260 +4952 50618 0.4320 +4952 51196 0.6990 +4952 51429 0.7900 +4952 51552 0.7170 +4952 51560 0.4940 +4952 51762 0.5250 +4952 54768 0.5710 +4952 54885 0.5540 +4952 54902 0.4350 +4952 54928 0.4040 +4952 55111 0.7760 +4952 55300 0.7320 +4952 55330 0.4990 +4952 55361 0.7880 +4952 55529 0.9200 +4952 55764 0.4120 +4952 56623 0.9360 +4952 57192 0.4180 +4952 57381 0.4860 +4952 63916 0.4120 +4952 64083 0.5500 +4952 64780 0.6270 +4952 79837 0.9240 +4952 80262 0.4820 +4952 80271 0.4480 +4952 81567 0.5160 +4952 81876 0.5140 +4952 84062 0.4990 +4952 84812 0.6600 +4952 85477 0.4930 +4952 89869 0.6600 +4952 90809 0.9160 +4952 113026 0.6600 +4952 124997 0.4060 +4952 130340 0.5250 +4952 138429 0.9060 +4952 144717 0.9940 +4952 150368 0.9180 +4952 200576 0.5830 +4952 259266 0.5140 +4952 285605 0.4270 +4952 286451 0.6570 +4952 388552 0.4990 +4953 5009 0.5900 +4953 5471 0.4650 +4953 5625 0.4920 +4953 5682 0.4290 +4953 5683 0.4610 +4953 5684 0.4390 +4953 5685 0.4290 +4953 5686 0.4960 +4953 5687 0.4250 +4953 5688 0.4490 +4953 5689 0.4410 +4953 5690 0.4950 +4953 5691 0.4230 +4953 5692 0.4670 +4953 5693 0.4670 +4953 5694 0.4290 +4953 5695 0.4500 +4953 5696 0.4610 +4953 5698 0.4410 +4953 5699 0.4640 +4953 5700 0.4740 +4953 5701 0.4790 +4953 5702 0.4870 +4953 5704 0.5040 +4953 5705 0.4820 +4953 5706 0.4510 +4953 5707 0.4190 +4953 5708 0.4510 +4953 5709 0.4960 +4953 5710 0.5550 +4953 5711 0.4360 +4953 5713 0.4990 +4953 5714 0.4860 +4953 5715 0.5320 +4953 5716 0.4050 +4953 5717 0.4730 +4953 5718 0.4720 +4953 5719 0.4240 +4953 5720 0.4770 +4953 5721 0.4520 +4953 5723 0.4480 +4953 5743 0.4740 +4953 5831 0.4630 +4953 5832 0.6160 +4953 6241 0.7440 +4953 6248 0.4420 +4953 6303 0.9850 +4953 6470 0.4710 +4953 6472 0.4740 +4953 6520 0.4350 +4953 6541 0.4430 +4953 6542 0.4350 +4953 6611 0.9840 +4953 6714 0.5610 +4953 6723 0.9990 +4953 6874 0.4370 +4953 6888 0.4510 +4953 6898 0.7390 +4953 7157 0.4750 +4953 7167 0.5530 +4953 7298 0.4680 +4953 7372 0.4130 +4953 7407 0.4690 +4953 7707 0.7900 +4953 7709 0.4560 +4953 7979 0.4100 +4953 8565 0.4650 +4953 8659 0.4170 +4953 8833 0.4610 +4953 8886 0.5140 +4953 9491 0.4410 +4953 9563 0.5050 +4953 9861 0.4780 +4953 10157 0.8130 +4953 10197 0.4950 +4953 10209 0.4390 +4953 10213 0.5870 +4953 10606 0.4060 +4953 10988 0.5450 +4953 11073 0.4110 +4953 23198 0.5460 +4953 23475 0.4460 +4953 29968 0.5150 +4953 51582 0.5780 +4953 51686 0.9930 +4953 54205 0.4030 +4953 54498 0.7910 +4953 55256 0.4270 +4953 55748 0.4680 +4953 55856 0.4280 +4953 56267 0.5100 +4953 57591 0.5600 +4953 58478 0.4310 +4953 64081 0.7020 +4953 79680 0.4320 +4953 79727 0.4360 +4953 79814 0.9870 +4953 83475 0.6730 +4953 84680 0.4710 +4953 84706 0.5240 +4953 84735 0.4680 +4953 89894 0.4670 +4953 112483 0.9250 +4953 122706 0.4590 +4953 123688 0.4710 +4953 137362 0.5410 +4953 143244 0.4760 +4953 143471 0.4410 +4953 148811 0.4190 +4953 162417 0.5320 +4953 196743 0.8100 +4953 390110 0.4710 +4953 100526760 0.4190 +4956 4957 0.9000 +4956 5082 0.5640 +4956 5116 0.4950 +4956 5620 0.6450 +4956 6676 0.9980 +4956 6954 0.5420 +4956 7141 0.6720 +4956 7142 0.5840 +4956 7180 0.4210 +4956 7203 0.5630 +4956 7283 0.5480 +4956 8100 0.4710 +4956 8852 0.6730 +4956 8988 0.4280 +4956 9371 0.4330 +4956 9859 0.5580 +4956 10566 0.7880 +4956 10575 0.4320 +4956 10615 0.7120 +4956 10693 0.4670 +4956 10880 0.5560 +4956 10942 0.5070 +4956 11055 0.5790 +4956 11064 0.5350 +4956 23345 0.4090 +4956 23617 0.4940 +4956 25777 0.4220 +4956 26256 0.4460 +4956 26330 0.4800 +4956 26353 0.5780 +4956 27120 0.5260 +4956 27129 0.6270 +4956 51175 0.4750 +4956 51199 0.5340 +4956 51361 0.4870 +4956 51686 0.7710 +4956 53340 0.4100 +4956 54558 0.7070 +4956 54763 0.5770 +4956 54855 0.4610 +4956 54875 0.7780 +4956 55582 0.4770 +4956 58531 0.4060 +4956 58985 0.4040 +4956 79902 0.4220 +4956 81833 0.5680 +4956 83893 0.4410 +4956 83983 0.5050 +4956 84519 0.5000 +4956 84691 0.6060 +4956 93661 0.4870 +4956 94086 0.7430 +4956 113746 0.6690 +4956 116840 0.5110 +4956 122616 0.4260 +4956 124404 0.4050 +4956 126393 0.5790 +4956 130560 0.5720 +4956 140625 0.4590 +4956 140732 0.7550 +4956 145508 0.7350 +4956 146849 0.7730 +4956 146852 0.7590 +4956 147700 0.5630 +4956 150280 0.4160 +4956 160298 0.4100 +4956 160419 0.4590 +4956 219938 0.6770 +4956 220082 0.4440 +4956 246777 0.5290 +4956 255220 0.4490 +4956 256979 0.6450 +4956 283417 0.4300 +4956 283629 0.5080 +4956 283847 0.4340 +4956 374768 0.4330 +4956 375686 0.8850 +4957 5108 0.4270 +4957 5116 0.6730 +4957 5347 0.9290 +4957 6047 0.4900 +4957 7813 0.7930 +4957 8100 0.4990 +4957 8481 0.4380 +4957 8766 0.8060 +4957 8852 0.4600 +4957 9414 0.4190 +4957 9576 0.5460 +4957 9662 0.5820 +4957 9696 0.5580 +4957 9738 0.5670 +4957 9859 0.8960 +4957 10133 0.5090 +4957 10142 0.4110 +4957 10733 0.4020 +4957 11064 0.9830 +4957 22873 0.4770 +4957 22897 0.8140 +4957 23354 0.5630 +4957 25876 0.4410 +4957 26123 0.5500 +4957 26256 0.6060 +4957 27285 0.4330 +4957 51134 0.8560 +4957 51175 0.7670 +4957 51199 0.9690 +4957 54558 0.4490 +4957 54763 0.5310 +4957 54801 0.5340 +4957 54806 0.4820 +4957 54875 0.4350 +4957 54930 0.5290 +4957 55125 0.4530 +4957 55142 0.5090 +4957 55329 0.7200 +4957 55559 0.5440 +4957 55755 0.5200 +4957 55779 0.4360 +4957 57545 0.6360 +4957 64518 0.4140 +4957 64770 0.5200 +4957 79441 0.5380 +4957 79582 0.4350 +4957 79598 0.4930 +4957 79705 0.4500 +4957 79866 0.5730 +4957 80184 0.4030 +4957 80217 0.4120 +4957 80323 0.8530 +4957 84517 0.4370 +4957 84902 0.7360 +4957 85302 0.7110 +4957 90060 0.8920 +4957 90410 0.4180 +4957 91147 0.5320 +4957 93034 0.4320 +4957 93323 0.5320 +4957 113177 0.5240 +4957 115106 0.5300 +4957 116840 0.8150 +4957 117177 0.8450 +4957 132320 0.7420 +4957 134359 0.4270 +4957 140625 0.4320 +4957 145508 0.9300 +4957 146849 0.6040 +4957 150483 0.5220 +4957 153241 0.5170 +4957 157310 0.4490 +4957 161502 0.5410 +4957 162333 0.4520 +4957 163786 0.4790 +4957 200162 0.5070 +4957 200894 0.4520 +4957 201243 0.4100 +4957 283629 0.5560 +4957 339829 0.4480 +4957 728642 0.5220 +4957 729440 0.7290 +4957 100505478 0.4220 +4957 105376230 0.4790 +4958 4969 0.9460 +4958 5008 0.4760 +4958 5549 0.8140 +4958 6482 0.4150 +4958 6483 0.4150 +4958 6484 0.4240 +4958 6487 0.4430 +4958 6678 0.6600 +4958 6696 0.4280 +4958 7060 0.4210 +4958 8483 0.4130 +4958 8534 0.4430 +4958 8702 0.4690 +4958 8703 0.4060 +4958 8704 0.4060 +4958 9331 0.4150 +4958 9334 0.4250 +4958 10331 0.4200 +4958 10402 0.4250 +4958 10631 0.4300 +4958 10678 0.4150 +4958 11041 0.4240 +4958 11081 0.6570 +4958 22859 0.5140 +4958 23266 0.5200 +4958 23284 0.5180 +4958 23507 0.4990 +4958 23563 0.4110 +4958 25987 0.4040 +4958 54829 0.8350 +4958 55144 0.4760 +4958 55222 0.4100 +4958 55379 0.4300 +4958 79442 0.4980 +4958 93010 0.4410 +4958 116064 0.4910 +4958 122769 0.5260 +4958 127435 0.4780 +4958 255252 0.4910 +4958 339291 0.5040 +4958 375387 0.4890 +4958 376132 0.5180 +4958 390205 0.5090 +4958 474354 0.4960 +4967 5019 0.4010 +4967 5091 0.6780 +4967 5105 0.4190 +4967 5106 0.4650 +4967 5161 0.6960 +4967 5162 0.9470 +4967 5163 0.4370 +4967 5211 0.5510 +4967 5213 0.5960 +4967 5214 0.5160 +4967 5223 0.4780 +4967 5224 0.6550 +4967 5226 0.4610 +4967 5230 0.5430 +4967 5250 0.4430 +4967 5313 0.4250 +4967 5315 0.5610 +4967 5832 0.4660 +4967 5888 0.4540 +4967 6120 0.4560 +4967 6389 0.9550 +4967 6390 0.9190 +4967 6391 0.8700 +4967 6392 0.6810 +4967 6470 0.5680 +4967 6472 0.5770 +4967 6478 0.4880 +4967 6510 0.4230 +4967 6576 0.4300 +4967 6648 0.4230 +4967 6821 0.4590 +4967 6888 0.5600 +4967 7086 0.5890 +4967 7167 0.6300 +4967 7284 0.6240 +4967 7296 0.6580 +4967 7317 0.4950 +4967 7384 0.6610 +4967 7385 0.6140 +4967 7386 0.5960 +4967 7416 0.5940 +4967 7915 0.9230 +4967 8050 0.9830 +4967 8192 0.5200 +4967 8277 0.5440 +4967 8402 0.5030 +4967 8659 0.4800 +4967 8801 0.9570 +4967 8802 0.9970 +4967 8803 0.9780 +4967 8975 0.5390 +4967 9025 0.8340 +4967 9361 0.4260 +4967 9377 0.5200 +4967 9380 0.8380 +4967 9512 0.4100 +4967 9563 0.6070 +4967 9632 0.4530 +4967 9927 0.4960 +4967 10063 0.4830 +4967 10102 0.5210 +4967 10295 0.6360 +4967 10449 0.4210 +4967 10476 0.5110 +4967 10587 0.6540 +4967 10873 0.4470 +4967 10935 0.4290 +4967 10989 0.5170 +4967 11019 0.5290 +4967 11060 0.4970 +4967 11112 0.4080 +4967 22934 0.5500 +4967 22937 0.5360 +4967 23277 0.4070 +4967 23381 0.4400 +4967 25796 0.4620 +4967 26275 0.4110 +4967 26330 0.4180 +4967 27068 0.5250 +4967 27089 0.4620 +4967 29958 0.4120 +4967 29968 0.4280 +4967 51073 0.5590 +4967 51166 0.4190 +4967 51601 0.6000 +4967 54704 0.4430 +4967 55066 0.5390 +4967 55526 0.5110 +4967 55554 0.5070 +4967 55753 0.9750 +4967 55902 0.4240 +4967 56954 0.8160 +4967 57494 0.8250 +4967 57546 0.4100 +4967 79944 0.5250 +4967 81570 0.6430 +4967 84076 0.5320 +4967 84532 0.4070 +4967 84706 0.8560 +4967 92259 0.9110 +4967 92483 0.4140 +4967 112817 0.6680 +4967 114112 0.6340 +4967 130752 0.6220 +4967 137362 0.8680 +4967 150274 0.4440 +4967 160287 0.4120 +4967 259307 0.8120 +4967 285343 0.6130 +4967 441531 0.4230 +4968 5378 0.5190 +4968 5395 0.6140 +4968 5423 0.8900 +4968 5424 0.5730 +4968 5426 0.4670 +4968 5428 0.5340 +4968 5429 0.8660 +4968 5591 0.4800 +4968 5728 0.5240 +4968 5883 0.6260 +4968 5887 0.5970 +4968 5888 0.6610 +4968 5889 0.4350 +4968 5890 0.4580 +4968 5892 0.4530 +4968 5893 0.8250 +4968 5980 0.6520 +4968 6188 0.5700 +4968 6648 0.5720 +4968 6708 0.5460 +4968 6709 0.7920 +4968 6749 0.4220 +4968 6996 0.8120 +4968 7019 0.5610 +4968 7031 0.4200 +4968 7035 0.6440 +4968 7150 0.6110 +4968 7153 0.4690 +4968 7155 0.4810 +4968 7157 0.5950 +4968 7158 0.6080 +4968 7374 0.8500 +4968 7486 0.6780 +4968 7498 0.4880 +4968 7507 0.8700 +4968 7508 0.6280 +4968 7515 0.9970 +4968 7516 0.4710 +4968 7517 0.8160 +4968 7518 0.7690 +4968 7520 0.6790 +4968 8655 0.4180 +4968 8846 0.5820 +4968 8930 0.6290 +4968 9156 0.6460 +4968 9400 0.4850 +4968 9401 0.4760 +4968 9555 0.4310 +4968 9656 0.4610 +4968 9739 0.4410 +4968 9941 0.4140 +4968 10038 0.4650 +4968 10166 0.5420 +4968 10721 0.4030 +4968 11200 0.4540 +4968 11201 0.6740 +4968 11284 0.8490 +4968 23028 0.7570 +4968 23410 0.5150 +4968 23411 0.4710 +4968 23451 0.4170 +4968 23583 0.8140 +4968 27030 0.5230 +4968 27301 0.7530 +4968 27343 0.7050 +4968 27434 0.5270 +4968 51317 0.4960 +4968 51426 0.4760 +4968 51455 0.8060 +4968 54840 0.8650 +4968 55247 0.9090 +4968 55764 0.4190 +4968 55775 0.7120 +4968 56852 0.5580 +4968 57697 0.6520 +4968 79661 0.9860 +4968 79827 0.7110 +4968 80119 0.4080 +4968 80198 0.4620 +4968 80312 0.6750 +4968 81932 0.4400 +4968 84266 0.4170 +4968 84284 0.5380 +4968 91442 0.4250 +4968 91801 0.4320 +4968 121642 0.4500 +4968 135946 0.4570 +4968 140838 0.4400 +4968 252969 0.9880 +4968 257202 0.4030 +4968 284131 0.5070 +4968 348654 0.4160 +4968 493869 0.4020 +4968 728378 0.4750 +4968 100533467 0.6770 +4969 5118 0.4740 +4969 5157 0.4170 +4969 5346 0.5020 +4969 5443 0.4120 +4969 5549 0.8000 +4969 5764 0.4830 +4969 6424 0.5080 +4969 6484 0.4180 +4969 6678 0.4760 +4969 6696 0.4340 +4969 6714 0.5070 +4969 7057 0.6060 +4969 7060 0.4800 +4969 7157 0.5390 +4969 7373 0.7820 +4969 8483 0.5380 +4969 8534 0.4140 +4969 8600 0.4970 +4969 8702 0.4340 +4969 8703 0.4060 +4969 8704 0.4030 +4969 9068 0.4710 +4969 9435 0.4060 +4969 10516 0.5380 +4969 10631 0.5810 +4969 10678 0.4480 +4969 10695 0.6020 +4969 11081 0.8480 +4969 22859 0.5140 +4969 23266 0.5230 +4969 23284 0.5270 +4969 23566 0.4930 +4969 26577 0.4180 +4969 50964 0.5620 +4969 54829 0.9160 +4969 56944 0.4810 +4969 60506 0.4660 +4969 91851 0.4320 +4969 93010 0.4780 +4969 140460 0.4520 +4969 151887 0.4310 +4973 5054 0.4350 +4973 5444 0.4180 +4973 5468 0.5080 +4973 5724 0.4200 +4973 5742 0.4890 +4973 5743 0.4240 +4973 5787 0.4010 +4973 6347 0.6310 +4973 6401 0.5190 +4973 6403 0.4780 +4973 7097 0.5080 +4973 7099 0.6060 +4973 7124 0.5750 +4973 7412 0.6130 +4973 8578 0.6660 +4973 8995 0.4110 +4973 9308 0.5060 +4973 9619 0.6310 +4973 9976 0.4920 +4973 10469 0.4220 +4973 10575 0.5400 +4973 10630 0.4060 +4973 22918 0.4730 +4973 23166 0.6490 +4973 23601 0.5000 +4973 50507 0.4290 +4973 54209 0.4400 +4973 58191 0.4500 +4973 120939 0.6140 +4973 140885 0.5240 +4973 144455 0.4300 +4973 160364 0.5360 +4973 199675 0.4780 +4973 255738 0.5100 +4973 387836 0.5470 +4973 653361 0.6200 +4973 100423062 0.8100 +4973 100526664 0.4450 +4974 5354 0.5350 +4974 5802 0.7170 +4974 5803 0.4340 +4974 6252 0.5170 +4974 6253 0.5070 +4974 6272 0.4990 +4974 7905 0.4280 +4974 9294 0.4970 +4974 9444 0.4840 +4974 10288 0.6890 +4974 10313 0.5130 +4974 10371 0.4180 +4974 10384 0.4890 +4974 10385 0.4360 +4974 10436 0.6050 +4974 10507 0.4980 +4974 10917 0.4910 +4974 11118 0.4890 +4974 11119 0.4350 +4974 11120 0.4380 +4974 22859 0.5140 +4974 23266 0.5140 +4974 23284 0.5140 +4974 23507 0.4200 +4974 28986 0.4310 +4974 50808 0.5280 +4974 51379 0.5070 +4974 55352 0.5080 +4974 55504 0.9420 +4974 55803 0.4820 +4974 55813 0.5200 +4974 56963 0.4430 +4974 57142 0.9900 +4974 63827 0.5730 +4974 65078 0.9930 +4974 79736 0.4630 +4974 79908 0.4990 +4974 79915 0.4770 +4974 84282 0.4240 +4974 84440 0.5500 +4974 84894 0.8690 +4974 93377 0.4020 +4974 114625 0.4700 +4974 116150 0.5690 +4974 146760 0.7170 +4974 153579 0.4370 +4974 339291 0.4510 +4974 349667 0.6280 +4974 386724 0.4180 +4974 654231 0.4130 +4975 5330 0.4120 +4975 7054 0.6680 +4975 7094 0.4240 +4975 7299 0.4160 +4975 8100 0.4490 +4975 9038 0.4010 +4975 55859 0.7010 +4975 57101 0.5320 +4975 83660 0.4370 +4975 83857 0.7930 +4975 84707 0.5960 +4975 132112 0.4540 +4975 344892 0.4330 +4976 5071 0.7570 +4976 5245 0.7370 +4976 5621 0.4090 +4976 5663 0.5780 +4976 5664 0.4690 +4976 6647 0.4590 +4976 6687 0.5790 +4976 6901 0.4620 +4976 7019 0.6080 +4976 7416 0.5500 +4976 8562 0.5560 +4976 9804 0.5820 +4976 9868 0.5060 +4976 9927 0.9360 +4976 10059 0.6310 +4976 10128 0.4090 +4976 10452 0.4760 +4976 10456 0.5740 +4976 10730 0.7300 +4976 10891 0.5280 +4976 10935 0.5410 +4976 10939 0.5090 +4976 10989 0.6850 +4976 11331 0.9050 +4976 23409 0.5600 +4976 23410 0.7630 +4976 27166 0.4900 +4976 27429 0.7280 +4976 29928 0.4720 +4976 50618 0.4260 +4976 51024 0.9150 +4976 54205 0.7680 +4976 54471 0.6830 +4976 54708 0.6040 +4976 54927 0.5590 +4976 55288 0.5050 +4976 55486 0.8990 +4976 55669 0.9870 +4976 55699 0.4170 +4976 56947 0.7550 +4976 65018 0.8550 +4976 79135 0.5080 +4976 80207 0.4150 +4976 81570 0.4610 +4976 84303 0.4700 +4976 84896 0.8260 +4976 91137 0.7960 +4976 115209 0.9690 +4976 120892 0.6670 +4976 125170 0.7160 +4976 131474 0.4440 +4976 139322 0.5680 +4976 139341 0.5180 +4976 140823 0.5090 +4976 192111 0.4370 +4976 201164 0.4730 +4976 440574 0.5030 +4976 100287932 0.4370 +4978 5097 0.4120 +4978 5144 0.4390 +4978 6263 0.7290 +4978 6323 0.4440 +4978 6616 0.4250 +4978 6653 0.5860 +4978 6854 0.5180 +4978 6900 0.6380 +4978 7070 0.4160 +4978 7512 0.4280 +4978 8927 0.5330 +4978 9196 0.4300 +4978 9369 0.4040 +4978 11186 0.5440 +4978 22800 0.5560 +4978 23017 0.4180 +4978 23284 0.4890 +4978 23416 0.4500 +4978 26052 0.4680 +4978 26232 0.4040 +4978 29087 0.4020 +4978 50863 0.8450 +4978 51741 0.4870 +4978 54715 0.4700 +4978 56934 0.4440 +4978 92691 0.4010 +4978 114798 0.5670 +4978 145581 0.4180 +4978 149281 0.4280 +4978 152006 0.4020 +4978 256536 0.4430 +4978 100131827 0.4050 +4982 5741 0.4790 +4982 6696 0.4700 +4982 7042 0.4830 +4982 7124 0.4810 +4982 7132 0.4580 +4982 7166 0.4230 +4982 8061 0.4310 +4982 8600 0.9990 +4982 8741 0.4620 +4982 8743 0.9190 +4982 8792 0.7620 +4982 8995 0.4730 +4982 9923 0.4490 +4982 22943 0.4800 +4982 50964 0.6790 +4982 51176 0.4670 +4982 51384 0.4570 +4982 56955 0.4180 +4982 57592 0.4020 +4982 64641 0.5790 +4982 83857 0.4050 +4982 84818 0.6230 +4982 93432 0.5040 +4982 121340 0.7350 +4982 125228 0.4240 +4982 284654 0.4810 +4983 5341 0.5200 +4983 5879 0.6350 +4983 5880 0.4550 +4983 5881 0.4080 +4983 6010 0.4460 +4983 6093 0.4050 +4983 6197 0.4100 +4983 6456 0.5820 +4983 6792 0.4320 +4983 7102 0.5540 +4983 7592 0.4560 +4983 7984 0.4860 +4983 8874 0.6670 +4983 8997 0.4160 +4983 9456 0.7460 +4983 9459 0.8490 +4983 9479 0.4380 +4983 9572 0.5500 +4983 9754 0.4410 +4983 10084 0.4430 +4983 10479 0.4470 +4983 10602 0.4050 +4983 10788 0.4440 +4983 11141 0.6130 +4983 22866 0.4150 +4983 23040 0.4150 +4983 23092 0.4200 +4983 23096 0.4670 +4983 23229 0.6710 +4983 23245 0.4590 +4983 23433 0.6640 +4983 23596 0.6210 +4983 26499 0.5460 +4983 27330 0.8140 +4983 29780 0.5430 +4983 30011 0.5760 +4983 51100 0.6010 +4983 51454 0.4470 +4983 54413 0.4010 +4983 55906 0.4890 +4983 56904 0.6220 +4983 57381 0.4040 +4983 57502 0.4130 +4983 64219 0.8400 +4983 84218 0.4470 +4983 84679 0.4520 +4983 85358 0.4050 +4983 90627 0.4150 +4983 94233 0.4790 +4983 116254 0.4310 +4983 124842 0.4310 +4983 221391 0.6240 +4983 254065 0.4040 +4983 259266 0.4600 +4983 286451 0.7570 +4985 4988 0.9670 +4985 5020 0.5370 +4985 5173 0.9790 +4985 5179 0.9840 +4985 5243 0.4660 +4985 5367 0.5410 +4985 5368 0.8640 +4985 5443 0.9660 +4985 5539 0.5100 +4985 5540 0.5380 +4985 5660 0.4990 +4985 5697 0.5420 +4985 5733 0.4840 +4985 5743 0.4670 +4985 6288 0.4990 +4985 6531 0.4630 +4985 6532 0.5150 +4985 6714 0.5310 +4985 6750 0.5890 +4985 6751 0.5310 +4985 6752 0.5770 +4985 6753 0.5410 +4985 6754 0.6640 +4985 6755 0.5270 +4985 6774 0.5310 +4985 6778 0.5520 +4985 7431 0.5070 +4985 7448 0.4300 +4985 7690 0.4440 +4985 8484 0.5000 +4985 8811 0.5210 +4985 8862 0.4990 +4985 9177 0.4680 +4985 9283 0.5470 +4985 9369 0.4670 +4985 9737 0.8380 +4985 10316 0.5130 +4985 10422 0.5060 +4985 10723 0.5330 +4985 10874 0.5330 +4985 11054 0.4280 +4985 23621 0.4200 +4985 25797 0.4540 +4985 50832 0.5120 +4985 50833 0.4930 +4985 51083 0.5950 +4985 51738 0.4890 +4985 54331 0.8160 +4985 56923 0.5290 +4985 63940 0.4410 +4985 64106 0.7690 +4985 79258 0.4240 +4985 84539 0.4990 +4985 129521 0.4990 +4985 255239 0.6830 +4985 256933 0.5080 +4985 283869 0.5200 +4985 285242 0.4030 +4985 728116 0.4630 +4988 5020 0.6140 +4988 5021 0.5600 +4988 5173 0.9870 +4988 5179 0.9990 +4988 5243 0.6510 +4988 5338 0.4460 +4988 5367 0.6760 +4988 5368 0.9150 +4988 5443 0.9990 +4988 5539 0.5560 +4988 5540 0.5280 +4988 5566 0.4180 +4988 5567 0.4170 +4988 5568 0.4320 +4988 5578 0.4850 +4988 5582 0.6150 +4988 5649 0.4140 +4988 5660 0.4990 +4988 5697 0.5770 +4988 5816 0.4730 +4988 5999 0.4310 +4988 6000 0.4200 +4988 6010 0.5740 +4988 6288 0.5140 +4988 6295 0.7700 +4988 6335 0.5100 +4988 6336 0.5100 +4988 6530 0.5200 +4988 6531 0.7040 +4988 6532 0.6950 +4988 6714 0.6540 +4988 6750 0.8230 +4988 6751 0.5260 +4988 6752 0.5550 +4988 6753 0.5260 +4988 6754 0.5370 +4988 6755 0.5420 +4988 6774 0.6070 +4988 6776 0.4710 +4988 6778 0.5880 +4988 6863 0.6770 +4988 6869 0.7420 +4988 7054 0.4870 +4988 7124 0.6030 +4988 7170 0.6390 +4988 7364 0.5750 +4988 7432 0.5540 +4988 7442 0.7180 +4988 7850 0.6750 +4988 7852 0.6680 +4988 8484 0.5180 +4988 8601 0.4310 +4988 8620 0.4180 +4988 8629 0.5810 +4988 8811 0.5250 +4988 8862 0.5650 +4988 8989 0.5080 +4988 9138 0.4330 +4988 9177 0.6360 +4988 9283 0.5260 +4988 9360 0.4360 +4988 9628 0.4050 +4988 9630 0.6020 +4988 9737 0.7780 +4988 10048 0.5190 +4988 10206 0.5880 +4988 10280 0.8050 +4988 10316 0.5240 +4988 10653 0.5070 +4988 10681 0.7680 +4988 10874 0.5590 +4988 11054 0.4100 +4988 22828 0.4500 +4988 25942 0.4110 +4988 26034 0.6080 +4988 26086 0.6670 +4988 26230 0.4220 +4988 26251 0.4030 +4988 26575 0.4670 +4988 29899 0.4350 +4988 51083 0.7280 +4988 51764 0.6890 +4988 54331 0.9350 +4988 55851 0.5010 +4988 55970 0.6920 +4988 56923 0.5180 +4988 57084 0.4430 +4988 59345 0.7030 +4988 63940 0.4120 +4988 79054 0.4060 +4988 79971 0.7190 +4988 81706 0.6560 +4988 84152 0.4310 +4988 84539 0.5140 +4988 94235 0.6780 +4988 121278 0.5590 +4988 126006 0.4230 +4988 127385 0.4520 +4988 129521 0.5070 +4988 133418 0.4220 +4988 149111 0.4560 +4988 154043 0.4710 +4988 220074 0.5430 +4988 246213 0.4410 +4988 255239 0.7220 +4988 256933 0.5520 +4988 283869 0.5280 +4988 285527 0.4310 +4988 374786 0.4260 +4988 391190 0.4140 +4988 104909134 0.5140 +4990 5013 0.4460 +4990 5015 0.8940 +4990 5080 0.6870 +4990 5308 0.4440 +4990 5458 0.5020 +4990 5626 0.4640 +4990 5957 0.4630 +4990 6207 0.4610 +4990 6469 0.4300 +4990 6496 0.6150 +4990 6656 0.4340 +4990 6657 0.5110 +4990 6658 0.4850 +4990 7088 0.7490 +4990 7090 0.5490 +4990 7091 0.6620 +4990 7299 0.4100 +4990 8022 0.4820 +4990 8522 0.5850 +4990 8820 0.4790 +4990 9355 0.6560 +4990 10660 0.6760 +4990 11023 0.5780 +4990 25806 0.6280 +4990 30062 0.5000 +4990 54499 0.7200 +4990 55133 0.5070 +4990 57381 0.6700 +4990 60312 0.5230 +4990 64211 0.4070 +4990 64778 0.4740 +4990 80712 0.4510 +4990 89884 0.4930 +4990 220202 0.6750 +4990 338917 0.7290 +4990 341883 0.4720 +4990 347468 0.4740 +4990 389136 0.4970 +4990 646960 0.5120 +4991 4993 0.5360 +4991 5566 0.6710 +4991 5567 0.6710 +4991 5568 0.6830 +4991 10941 0.4450 +4991 23600 0.5490 +4991 26531 0.5280 +4991 51764 0.7380 +4991 125958 0.5250 +4991 284521 0.5150 +4991 391196 0.5040 +4991 401427 0.5270 +4992 4993 0.5340 +4992 5566 0.6500 +4992 5567 0.6500 +4992 5568 0.6650 +4992 7627 0.4180 +4992 7752 0.8540 +4992 7755 0.8870 +4992 7760 0.4490 +4992 8590 0.5440 +4992 26531 0.5160 +4992 26658 0.5120 +4992 26659 0.5140 +4992 26686 0.5070 +4992 51764 0.6950 +4992 65055 0.4290 +4992 91151 0.4470 +4992 119695 0.5040 +4992 125958 0.5190 +4992 132112 0.5270 +4992 135946 0.5170 +4992 219438 0.5090 +4992 219477 0.5110 +4992 219493 0.5100 +4992 219858 0.4990 +4992 219957 0.5070 +4992 219968 0.5140 +4992 282775 0.5220 +4992 284521 0.5260 +4992 344892 0.5060 +4992 390059 0.5090 +4992 390082 0.4990 +4992 390155 0.5110 +4992 390157 0.5080 +4992 390275 0.5120 +4992 390892 0.5290 +4992 391196 0.5110 +4992 401427 0.5160 +4992 440050 0.4740 +4992 442184 0.5200 +4992 613037 0.4330 +4993 4994 0.5120 +4993 5566 0.6500 +4993 5567 0.6500 +4993 5568 0.6550 +4993 6147 0.4410 +4993 8260 0.5580 +4993 8383 0.5480 +4993 8386 0.5280 +4993 8387 0.5260 +4993 8590 0.5450 +4993 11224 0.4480 +4993 25764 0.4190 +4993 26188 0.5030 +4993 26211 0.5280 +4993 26339 0.5190 +4993 26531 0.4990 +4993 26533 0.4990 +4993 26538 0.5100 +4993 26658 0.5360 +4993 26659 0.5330 +4993 26664 0.5300 +4993 26686 0.5230 +4993 26692 0.5210 +4993 26707 0.5060 +4993 26740 0.4150 +4993 29965 0.4390 +4993 51005 0.4220 +4993 51764 0.6550 +4993 55213 0.4740 +4993 56656 0.5190 +4993 65055 0.4310 +4993 79324 0.4430 +4993 79612 0.6450 +4993 80155 0.6450 +4993 81099 0.4990 +4993 81282 0.4100 +4993 81285 0.5210 +4993 84779 0.5610 +4993 112869 0.5290 +4993 119682 0.5530 +4993 119695 0.4990 +4993 120066 0.5380 +4993 120793 0.5290 +4993 122742 0.5120 +4993 122748 0.5300 +4993 122830 0.4270 +4993 124538 0.5420 +4993 125958 0.5240 +4993 127385 0.5100 +4993 127623 0.5050 +4993 128366 0.5210 +4993 128367 0.5220 +4993 132112 0.5150 +4993 135946 0.5060 +4993 143503 0.5480 +4993 219436 0.4990 +4993 219438 0.5380 +4993 219473 0.5170 +4993 219477 0.5150 +4993 219493 0.5250 +4993 219858 0.5080 +4993 219957 0.4990 +4993 219968 0.5080 +4993 221710 0.5580 +4993 255725 0.4040 +4993 282763 0.5040 +4993 282775 0.5150 +4993 283093 0.5140 +4993 283159 0.5190 +4993 284433 0.4990 +4993 284521 0.7010 +4993 338398 0.4060 +4993 340980 0.5070 +4993 341152 0.4990 +4993 343169 0.4990 +4993 343171 0.5150 +4993 344892 0.5210 +4993 388761 0.4990 +4993 390038 0.4990 +4993 390059 0.5010 +4993 390082 0.5110 +4993 390093 0.4990 +4993 390113 0.4240 +4993 390155 0.5460 +4993 390157 0.5140 +4993 390174 0.5200 +4993 390264 0.5300 +4993 390265 0.5130 +4993 390271 0.5120 +4993 390275 0.5080 +4993 390892 0.5200 +4993 391194 0.5070 +4993 391196 0.5180 +4993 392138 0.5090 +4993 401427 0.5230 +4993 402317 0.5080 +4993 441670 0.4030 +4993 442184 0.5150 +4993 442185 0.5060 +4993 442186 0.5090 +4993 442191 0.5220 +4993 101929989 0.6230 +4994 5566 0.6500 +4994 5567 0.6500 +4994 5568 0.6500 +4994 26531 0.5120 +4994 51764 0.6780 +4994 83901 0.5110 +4994 125958 0.5450 +4994 284521 0.5300 +4994 339168 0.4300 +4994 391196 0.5060 +4994 401427 0.5400 +4994 728318 0.4720 +4994 100505724 0.5950 +4998 4999 0.9990 +4998 5000 0.9990 +4998 5001 0.9990 +4998 5111 0.5260 +4998 5347 0.4870 +4998 5422 0.8230 +4998 5424 0.6830 +4998 5425 0.6130 +4998 5426 0.8150 +4998 5427 0.8520 +4998 5557 0.8310 +4998 5558 0.9270 +4998 5596 0.4150 +4998 5682 0.4110 +4998 5683 0.4160 +4998 5684 0.4090 +4998 5685 0.4680 +4998 5686 0.4210 +4998 5687 0.4180 +4998 5688 0.4130 +4998 5689 0.4070 +4998 5690 0.4320 +4998 5691 0.4440 +4998 5693 0.4350 +4998 5694 0.4260 +4998 5695 0.4160 +4998 5696 0.4080 +4998 5699 0.4070 +4998 5700 0.4470 +4998 5701 0.4550 +4998 5702 0.4980 +4998 5704 0.4360 +4998 5705 0.4590 +4998 5706 0.4310 +4998 5707 0.4050 +4998 5708 0.4110 +4998 5709 0.4050 +4998 5711 0.4430 +4998 5713 0.4050 +4998 5714 0.4700 +4998 5715 0.4010 +4998 5717 0.4140 +4998 5718 0.4590 +4998 5719 0.4090 +4998 5720 0.4170 +4998 5884 0.4180 +4998 5888 0.6230 +4998 5891 0.5720 +4998 5925 0.7190 +4998 5928 0.4710 +4998 5931 0.4710 +4998 5933 0.4750 +4998 5980 0.4470 +4998 5981 0.4960 +4998 5982 0.4680 +4998 5983 0.7620 +4998 5984 0.4920 +4998 5985 0.4910 +4998 6117 0.7290 +4998 6118 0.8360 +4998 6119 0.5800 +4998 6233 0.6400 +4998 6240 0.6550 +4998 6241 0.7460 +4998 6491 0.5240 +4998 6500 0.5210 +4998 6502 0.9250 +4998 6790 0.4960 +4998 7014 0.6300 +4998 7027 0.6490 +4998 7029 0.5870 +4998 7083 0.4590 +4998 7153 0.4770 +4998 7272 0.6310 +4998 7298 0.5880 +4998 7311 0.4990 +4998 7314 0.5010 +4998 7316 0.5010 +4998 7486 0.4150 +4998 7520 0.7520 +4998 8208 0.5520 +4998 8290 0.4590 +4998 8294 0.4650 +4998 8317 0.9300 +4998 8318 0.9900 +4998 8331 0.6120 +4998 8334 0.6040 +4998 8337 0.6380 +4998 8338 0.6960 +4998 8340 0.6590 +4998 8341 0.6480 +4998 8342 0.6480 +4998 8345 0.6580 +4998 8347 0.6570 +4998 8348 0.6580 +4998 8349 0.7740 +4998 8351 0.4010 +4998 8355 0.4080 +4998 8356 0.7250 +4998 8357 0.4110 +4998 8358 0.4180 +4998 8359 0.4650 +4998 8360 0.4650 +4998 8361 0.8310 +4998 8362 0.4650 +4998 8363 0.4760 +4998 8364 0.4700 +4998 8366 0.4770 +4998 8367 0.4670 +4998 8368 0.4720 +4998 8369 0.5620 +4998 8370 0.5500 +4998 8438 0.5530 +4998 8454 0.6320 +4998 8520 0.8810 +4998 8697 0.7220 +4998 8900 0.8790 +4998 8914 0.4970 +4998 8968 0.4040 +4998 8970 0.6540 +4998 9055 0.6190 +4998 9088 0.4210 +4998 9133 0.6730 +4998 9134 0.6220 +4998 9156 0.9320 +4998 9212 0.6150 +4998 9232 0.4200 +4998 9319 0.6810 +4998 9401 0.6780 +4998 9493 0.6290 +4998 9631 0.4030 +4998 9700 0.6890 +4998 9735 0.6360 +4998 9787 0.6260 +4998 9833 0.5350 +4998 9837 0.5620 +4998 9861 0.4190 +4998 9862 0.4260 +4998 9978 0.4250 +4998 10036 0.6200 +4998 10051 0.4930 +4998 10112 0.4930 +4998 10197 0.5050 +4998 10213 0.4160 +4998 10403 0.6880 +4998 10535 0.7140 +4998 10592 0.5250 +4998 10615 0.4560 +4998 10721 0.4510 +4998 10733 0.4560 +4998 10926 0.8720 +4998 11004 0.5900 +4998 11143 0.9250 +4998 11169 0.7960 +4998 11200 0.6280 +4998 22858 0.5720 +4998 22974 0.5510 +4998 23198 0.4010 +4998 23397 0.4790 +4998 23408 0.4870 +4998 23411 0.6100 +4998 23468 0.4370 +4998 23594 0.9990 +4998 23595 0.9990 +4998 23633 0.5370 +4998 23649 0.7980 +4998 24137 0.5540 +4998 29127 0.4650 +4998 29128 0.4840 +4998 29803 0.7220 +4998 29935 0.5790 +4998 29980 0.7930 +4998 50484 0.6080 +4998 51053 0.7340 +4998 51203 0.4140 +4998 51514 0.8560 +4998 51659 0.4960 +4998 54107 0.5960 +4998 54145 0.6470 +4998 54443 0.4200 +4998 54821 0.6360 +4998 54841 0.4540 +4998 54892 0.5640 +4998 54962 0.5940 +4998 55143 0.6500 +4998 55159 0.4400 +4998 55247 0.4140 +4998 55355 0.4220 +4998 55388 0.9300 +4998 55536 0.4280 +4998 55723 0.4250 +4998 55766 0.6040 +4998 56655 0.5030 +4998 56992 0.4990 +4998 57082 0.4370 +4998 57405 0.5640 +4998 63922 0.4670 +4998 63967 0.8510 +4998 64785 0.4340 +4998 79000 0.4430 +4998 79075 0.6110 +4998 79733 0.4800 +4998 79801 0.4130 +4998 79866 0.4220 +4998 79892 0.7040 +4998 79915 0.8430 +4998 81620 0.9990 +4998 81930 0.4630 +4998 83461 0.4300 +4998 83540 0.5980 +4998 84057 0.4400 +4998 84126 0.5910 +4998 84296 0.4970 +4998 84444 0.4920 +4998 84515 0.8940 +4998 84930 0.4970 +4998 84942 0.4050 +4998 85236 0.6590 +4998 90381 0.5480 +4998 92856 0.4020 +4998 94239 0.6330 +4998 113130 0.5740 +4998 116211 0.7530 +4998 121504 0.4650 +4998 122706 0.4070 +4998 126961 0.4040 +4998 128312 0.6490 +4998 140767 0.4100 +4998 143471 0.4080 +4998 151648 0.4320 +4998 157570 0.4320 +4998 157777 0.7500 +4998 220134 0.5400 +4998 221150 0.4130 +4998 222229 0.9740 +4998 254394 0.9450 +4998 254528 0.4450 +4998 255626 0.6430 +4998 259266 0.5410 +4998 333932 0.4040 +4998 348654 0.4750 +4998 440093 0.4590 +4998 440686 0.4590 +4998 474382 0.6040 +4998 554313 0.4650 +4998 653604 0.7180 +4998 100533467 0.4500 +4999 5000 0.9990 +4999 5001 0.9990 +4999 5111 0.5080 +4999 5127 0.4600 +4999 5128 0.4590 +4999 5129 0.4550 +4999 5218 0.4550 +4999 5422 0.6960 +4999 5424 0.4780 +4999 5426 0.6600 +4999 5427 0.6560 +4999 5557 0.8040 +4999 5558 0.8590 +4999 5891 0.7820 +4999 5925 0.4550 +4999 5933 0.4750 +4999 6117 0.8740 +4999 6118 0.8300 +4999 6119 0.5070 +4999 6233 0.5090 +4999 7014 0.5670 +4999 7311 0.5040 +4999 7314 0.5060 +4999 7316 0.5060 +4999 7486 0.4860 +4999 7520 0.5340 +4999 8087 0.6530 +4999 8317 0.8610 +4999 8318 0.9820 +4999 8331 0.5200 +4999 8334 0.5280 +4999 8337 0.5230 +4999 8338 0.5200 +4999 8340 0.5340 +4999 8341 0.5340 +4999 8342 0.5340 +4999 8345 0.5340 +4999 8347 0.5340 +4999 8348 0.5420 +4999 8349 0.6070 +4999 8356 0.6150 +4999 8361 0.6760 +4999 8379 0.9640 +4999 8520 0.9610 +4999 8900 0.7690 +4999 8970 0.5340 +4999 9055 0.4860 +4999 9320 0.4260 +4999 9401 0.7340 +4999 9837 0.4150 +4999 10926 0.9980 +4999 11073 0.4140 +4999 11143 0.4830 +4999 11169 0.4290 +4999 22858 0.7820 +4999 22933 0.4400 +4999 22976 0.5280 +4999 23468 0.4320 +4999 23594 0.9990 +4999 23595 0.9990 +4999 23633 0.5350 +4999 23649 0.6760 +4999 29803 0.7270 +4999 29935 0.5640 +4999 51053 0.6430 +4999 51550 0.6210 +4999 54107 0.5250 +4999 54145 0.5340 +4999 54962 0.5350 +4999 55388 0.9950 +4999 55759 0.4150 +4999 55766 0.5200 +4999 56655 0.5350 +4999 56852 0.5590 +4999 57418 0.9540 +4999 63922 0.5240 +4999 63967 0.6690 +4999 64318 0.9560 +4999 65061 0.4550 +4999 79828 0.4610 +4999 79892 0.7700 +4999 79991 0.4860 +4999 80174 0.5490 +4999 81620 0.9990 +4999 84126 0.7410 +4999 84515 0.9740 +4999 85236 0.5340 +4999 85865 0.5330 +4999 94239 0.5110 +4999 116211 0.5670 +4999 128312 0.5340 +4999 157777 0.5670 +4999 222229 0.9930 +4999 254394 0.9330 +4999 255626 0.5340 +4999 474382 0.5200 +4999 644672 0.4380 +4999 653604 0.5840 +4999 728642 0.4380 +5000 5001 0.9990 +5000 5422 0.6590 +5000 5426 0.7230 +5000 5427 0.7910 +5000 5557 0.6390 +5000 5558 0.7910 +5000 5891 0.7820 +5000 5928 0.5710 +5000 5931 0.5330 +5000 5983 0.5340 +5000 5984 0.4050 +5000 5985 0.5080 +5000 6117 0.5940 +5000 6118 0.8290 +5000 6119 0.6870 +5000 6233 0.5190 +5000 7311 0.4990 +5000 7314 0.5310 +5000 7316 0.5420 +5000 8290 0.5690 +5000 8317 0.8250 +5000 8318 0.9310 +5000 8331 0.5090 +5000 8334 0.5160 +5000 8337 0.5600 +5000 8338 0.5540 +5000 8340 0.5260 +5000 8341 0.5370 +5000 8342 0.5260 +5000 8345 0.5280 +5000 8347 0.5280 +5000 8348 0.5340 +5000 8349 0.6730 +5000 8356 0.7820 +5000 8361 0.6000 +5000 8520 0.9650 +5000 8883 0.6230 +5000 8900 0.6150 +5000 8970 0.5260 +5000 9039 0.4230 +5000 9401 0.6190 +5000 9837 0.4900 +5000 9984 0.6430 +5000 10319 0.4520 +5000 10926 0.9980 +5000 22858 0.7820 +5000 23032 0.4460 +5000 23594 0.9990 +5000 23595 0.9990 +5000 23633 0.5100 +5000 23649 0.7470 +5000 27249 0.5530 +5000 29803 0.7370 +5000 29935 0.5280 +5000 29980 0.4670 +5000 50484 0.5350 +5000 51053 0.8800 +5000 51659 0.4970 +5000 54107 0.5340 +5000 54145 0.5260 +5000 55388 0.9580 +5000 55766 0.5090 +5000 56655 0.5530 +5000 56943 0.6620 +5000 63967 0.5690 +5000 64785 0.6550 +5000 79712 0.4270 +5000 79892 0.4900 +5000 81620 0.9990 +5000 84126 0.6150 +5000 84296 0.6230 +5000 84515 0.8640 +5000 84942 0.4900 +5000 85236 0.5260 +5000 94239 0.5990 +5000 116211 0.6570 +5000 123169 0.4350 +5000 128312 0.5390 +5000 130576 0.4830 +5000 144811 0.4200 +5000 157777 0.7340 +5000 222229 0.9870 +5000 254394 0.9240 +5000 255626 0.5260 +5000 284058 0.4140 +5000 440093 0.5690 +5000 440686 0.5790 +5000 474382 0.5090 +5000 653604 0.7900 +5001 5111 0.5130 +5001 5422 0.7010 +5001 5424 0.4600 +5001 5426 0.7240 +5001 5427 0.6910 +5001 5557 0.8290 +5001 5558 0.8140 +5001 5884 0.4130 +5001 5888 0.4190 +5001 5891 0.7820 +5001 5928 0.6130 +5001 5931 0.6120 +5001 5982 0.6420 +5001 5983 0.6820 +5001 5984 0.7030 +5001 5985 0.5440 +5001 6117 0.5760 +5001 6118 0.8640 +5001 6119 0.6110 +5001 6233 0.5170 +5001 6500 0.4100 +5001 7298 0.4010 +5001 7311 0.4990 +5001 7314 0.5630 +5001 7316 0.5700 +5001 8317 0.9670 +5001 8318 0.9740 +5001 8331 0.5110 +5001 8334 0.5510 +5001 8337 0.5750 +5001 8338 0.5700 +5001 8340 0.5330 +5001 8341 0.5330 +5001 8342 0.5330 +5001 8345 0.5340 +5001 8347 0.5330 +5001 8348 0.5450 +5001 8349 0.5910 +5001 8356 0.6310 +5001 8361 0.7010 +5001 8520 0.9700 +5001 8697 0.4240 +5001 8812 0.4170 +5001 8900 0.6470 +5001 8970 0.5330 +5001 9156 0.4230 +5001 10319 0.5320 +5001 10535 0.4410 +5001 10592 0.4080 +5001 10926 0.9190 +5001 11073 0.4240 +5001 11143 0.4470 +5001 11169 0.7160 +5001 22858 0.7820 +5001 23594 0.9990 +5001 23595 0.9990 +5001 23633 0.5430 +5001 23649 0.7660 +5001 29803 0.7250 +5001 29935 0.5810 +5001 51053 0.6230 +5001 51141 0.5790 +5001 51451 0.5260 +5001 54107 0.5580 +5001 54145 0.5330 +5001 55153 0.5190 +5001 55388 0.8560 +5001 55766 0.5110 +5001 56655 0.5190 +5001 57221 0.4280 +5001 60491 0.6700 +5001 63922 0.4210 +5001 63967 0.6350 +5001 64318 0.9590 +5001 64682 0.5170 +5001 64785 0.5090 +5001 79596 0.6560 +5001 79892 0.5110 +5001 80119 0.9150 +5001 80198 0.4920 +5001 81620 0.9980 +5001 84126 0.5040 +5001 84296 0.6110 +5001 84515 0.9030 +5001 84864 0.5210 +5001 84928 0.4220 +5001 84942 0.5480 +5001 85236 0.5330 +5001 92797 0.6660 +5001 94239 0.5610 +5001 116211 0.7440 +5001 123169 0.4750 +5001 128312 0.5330 +5001 157777 0.8040 +5001 222229 0.9940 +5001 254394 0.9280 +5001 255626 0.5330 +5001 348654 0.4640 +5001 474382 0.5110 +5001 653604 0.6280 +5002 5178 0.4670 +5002 5325 0.4990 +5002 6580 0.5790 +5002 6581 0.6100 +5002 6582 0.5100 +5002 6583 0.4300 +5002 6584 0.5090 +5002 6638 0.6370 +5002 7262 0.9530 +5002 7324 0.5550 +5002 7781 0.4240 +5002 8402 0.4510 +5002 8788 0.5080 +5002 8910 0.5780 +5002 8991 0.4240 +5002 9197 0.4620 +5002 9356 0.4530 +5002 9376 0.6310 +5002 9389 0.6350 +5002 9390 0.5230 +5002 10077 0.6740 +5002 10078 0.8350 +5002 10227 0.5030 +5002 10367 0.4370 +5002 10864 0.4830 +5002 22822 0.5180 +5002 23089 0.4160 +5002 23632 0.4030 +5002 26001 0.8730 +5002 28232 0.4120 +5002 51310 0.5820 +5002 54453 0.5800 +5002 55032 0.4340 +5002 55089 0.4100 +5002 55356 0.6440 +5002 55607 0.4270 +5002 55825 0.4420 +5002 55867 0.4940 +5002 57468 0.4050 +5002 57835 0.4560 +5002 63027 0.6530 +5002 84239 0.4100 +5002 84641 0.4380 +5002 85413 0.5270 +5002 114879 0.7230 +5002 146429 0.6750 +5002 169841 0.4590 +5002 266812 0.5240 +5002 283238 0.5190 +5002 387601 0.6410 +5002 387775 0.6190 +5004 5005 0.9990 +5004 5047 0.6870 +5004 5054 0.7950 +5004 5196 0.4220 +5004 5265 0.9790 +5004 5284 0.5640 +5004 5340 0.4070 +5004 5345 0.4620 +5004 5444 0.6280 +5004 5473 0.5320 +5004 5730 0.7230 +5004 5768 0.5070 +5004 5950 0.5330 +5004 6280 0.4030 +5004 6288 0.7170 +5004 6289 0.5580 +5004 6291 0.6160 +5004 6696 0.5320 +5004 6906 0.5530 +5004 7001 0.4990 +5004 7018 0.7310 +5004 7037 0.6160 +5004 7038 0.6020 +5004 7123 0.5070 +5004 7124 0.4480 +5004 7137 0.4260 +5004 7153 0.4140 +5004 7276 0.8500 +5004 7365 0.4100 +5004 7369 0.6210 +5004 7448 0.4260 +5004 8542 0.5020 +5004 8993 0.4100 +5004 9360 0.4790 +5004 9517 0.9100 +5004 9973 0.4280 +5004 10466 0.4240 +5004 10558 0.9430 +5004 11272 0.4160 +5004 26998 0.6010 +5004 29095 0.8470 +5004 30816 0.4280 +5004 55304 0.9120 +5004 55876 0.4670 +5004 57817 0.5170 +5004 79017 0.4070 +5004 94101 0.8730 +5004 94103 0.8870 +5004 114131 0.4670 +5004 116844 0.5520 +5004 169355 0.4040 +5004 257202 0.4540 +5004 284161 0.4350 +5004 374897 0.4460 +5004 493869 0.4540 +5004 100528017 0.4610 +5005 5047 0.4780 +5005 5054 0.5450 +5005 5196 0.4120 +5005 5265 0.9720 +5005 5345 0.6130 +5005 5768 0.4910 +5005 5950 0.6610 +5005 6288 0.6980 +5005 6289 0.6950 +5005 6291 0.5890 +5005 6898 0.4040 +5005 6906 0.5640 +5005 7001 0.4710 +5005 7018 0.5820 +5005 7037 0.6280 +5005 7038 0.6170 +5005 7124 0.4450 +5005 7137 0.4300 +5005 7276 0.8560 +5005 7365 0.4060 +5005 7369 0.4950 +5005 8540 0.4510 +5005 8542 0.4320 +5005 8993 0.4710 +5005 9360 0.5060 +5005 9517 0.6520 +5005 9973 0.4390 +5005 10466 0.4260 +5005 10558 0.6450 +5005 10562 0.4180 +5005 26998 0.6170 +5005 29095 0.8200 +5005 30816 0.4310 +5005 55304 0.6680 +5005 55937 0.4120 +5005 57817 0.5240 +5005 79017 0.4400 +5005 94101 0.8510 +5005 94103 0.7740 +5005 116844 0.4510 +5005 169355 0.4150 +5005 257202 0.4520 +5005 284161 0.6230 +5005 374897 0.4150 +5005 493869 0.4480 +5005 100528017 0.4600 +5007 5267 0.6860 +5007 5289 0.5570 +5007 5297 0.7150 +5007 5298 0.8180 +5007 5306 0.4560 +5007 5321 0.4150 +5007 5333 0.4640 +5007 5341 0.9080 +5007 5587 0.5400 +5007 5778 0.5280 +5007 5834 0.4730 +5007 5836 0.4960 +5007 5837 0.4220 +5007 6237 0.4170 +5007 6272 0.4210 +5007 6396 0.5970 +5007 6643 0.5720 +5007 6720 0.4960 +5007 6721 0.5240 +5007 6770 0.5240 +5007 6843 0.4520 +5007 6947 0.5400 +5007 7415 0.4050 +5007 8468 0.5260 +5007 8605 0.4150 +5007 8694 0.4970 +5007 8729 0.4680 +5007 9050 0.4780 +5007 9217 0.9670 +5007 9218 0.9990 +5007 9600 0.7260 +5007 9685 0.4060 +5007 9854 0.4520 +5007 10087 0.6420 +5007 10134 0.5280 +5007 10244 0.4190 +5007 10423 0.4220 +5007 10564 0.4230 +5007 10577 0.5560 +5007 10618 0.4540 +5007 10890 0.4170 +5007 10948 0.6760 +5007 22930 0.4020 +5007 22937 0.7540 +5007 23230 0.4560 +5007 23344 0.7190 +5007 23683 0.5480 +5007 23760 0.5310 +5007 23762 0.4730 +5007 25865 0.5470 +5007 26499 0.9090 +5007 51228 0.4090 +5007 55177 0.6160 +5007 55300 0.5550 +5007 55361 0.5560 +5007 56180 0.5150 +5007 57476 0.4850 +5007 57488 0.6700 +5007 57605 0.4240 +5007 57655 0.4360 +5007 64083 0.4610 +5007 64598 0.4910 +5007 64746 0.7860 +5007 65977 0.6110 +5007 79085 0.4220 +5007 83850 0.4310 +5007 83930 0.5020 +5007 84725 0.5880 +5007 91452 0.4250 +5007 114879 0.5320 +5007 114882 0.5340 +5007 114883 0.6520 +5007 114884 0.5130 +5007 114885 0.5220 +5007 118813 0.4590 +5007 118987 0.4550 +5007 132243 0.6590 +5007 134429 0.4980 +5007 151742 0.4980 +5007 158747 0.7910 +5007 219988 0.5010 +5007 493856 0.4390 +5008 5156 0.7410 +5008 5159 0.7210 +5008 5265 0.4360 +5008 5443 0.4750 +5008 5617 0.5900 +5008 5618 0.7920 +5008 5743 0.5080 +5008 5788 0.4470 +5008 5896 0.4260 +5008 6272 0.4180 +5008 6283 0.6320 +5008 6288 0.4710 +5008 6347 0.5330 +5008 6348 0.5610 +5008 6351 0.5090 +5008 6373 0.6490 +5008 6387 0.4180 +5008 6464 0.4550 +5008 6772 0.6990 +5008 6773 0.5130 +5008 6774 0.9110 +5008 6775 0.4830 +5008 6776 0.7610 +5008 6777 0.7260 +5008 6778 0.7770 +5008 6898 0.4550 +5008 7039 0.5370 +5008 7040 0.6700 +5008 7076 0.6400 +5008 7124 0.7180 +5008 7297 0.7210 +5008 7423 0.4180 +5008 7424 0.4570 +5008 7852 0.4220 +5008 8600 0.4450 +5008 8817 0.4280 +5008 8822 0.4210 +5008 8823 0.4180 +5008 9021 0.6560 +5008 9180 0.9990 +5008 9235 0.4480 +5008 9466 0.8410 +5008 9507 0.4430 +5008 10401 0.5240 +5008 10457 0.4280 +5008 10912 0.4330 +5008 11009 0.5400 +5008 23529 0.6020 +5008 26281 0.4180 +5008 27006 0.4180 +5008 50615 0.6930 +5008 50616 0.6630 +5008 51561 0.5140 +5008 53832 0.6810 +5008 53833 0.6720 +5008 54210 0.5290 +5008 55322 0.5440 +5008 55801 0.5150 +5008 58985 0.6990 +5008 64321 0.4200 +5008 80036 0.4540 +5008 89780 0.4320 +5008 112744 0.5140 +5008 114548 0.4160 +5008 116379 0.6760 +5008 133396 0.9280 +5008 149233 0.7180 +5008 163702 0.6710 +5008 386653 0.8430 +5009 5053 0.5160 +5009 5091 0.4560 +5009 5095 0.7300 +5009 5105 0.4480 +5009 5199 0.5710 +5009 5226 0.4200 +5009 5236 0.8700 +5009 5238 0.8300 +5009 5239 0.8700 +5009 5277 0.5410 +5009 5428 0.4140 +5009 5625 0.4650 +5009 5831 0.5240 +5009 5832 0.5740 +5009 5834 0.8360 +5009 5836 0.8400 +5009 5837 0.8360 +5009 6303 0.4830 +5009 6390 0.4080 +5009 6442 0.4260 +5009 6443 0.4670 +5009 6444 0.4120 +5009 6448 0.4630 +5009 6514 0.4860 +5009 6519 0.5100 +5009 6520 0.5260 +5009 6554 0.5160 +5009 6611 0.5280 +5009 6641 0.5460 +5009 6723 0.5410 +5009 6853 0.4360 +5009 6888 0.4980 +5009 6898 0.5000 +5009 7372 0.4990 +5009 7402 0.4220 +5009 7915 0.4270 +5009 8192 0.5760 +5009 8242 0.4270 +5009 8290 0.4120 +5009 8659 0.4990 +5009 8802 0.4950 +5009 8891 0.4930 +5009 8893 0.4930 +5009 9056 0.5470 +5009 9361 0.5580 +5009 9512 0.4600 +5009 9563 0.6320 +5009 9764 0.4900 +5009 9804 0.4490 +5009 10007 0.4300 +5009 10020 0.4810 +5009 10157 0.4410 +5009 10165 0.5060 +5009 10166 0.6180 +5009 10245 0.5450 +5009 10440 0.6600 +5009 10452 0.5840 +5009 10469 0.5470 +5009 22901 0.4150 +5009 23203 0.4410 +5009 23213 0.4180 +5009 27165 0.4250 +5009 27235 0.4180 +5009 27349 0.4430 +5009 29090 0.4990 +5009 29920 0.4320 +5009 29925 0.4930 +5009 29926 0.4930 +5009 29928 0.5130 +5009 29968 0.4240 +5009 51025 0.4990 +5009 51497 0.6780 +5009 54511 0.4080 +5009 55276 0.8240 +5009 55617 0.5770 +5009 55748 0.6200 +5009 55959 0.4180 +5009 56052 0.5250 +5009 56922 0.7390 +5009 57591 0.4730 +5009 64783 0.5740 +5009 64902 0.5850 +5009 65263 0.4090 +5009 79642 0.4310 +5009 79814 0.8740 +5009 80150 0.6090 +5009 80273 0.5930 +5009 84735 0.6310 +5009 85365 0.5250 +5009 89894 0.7690 +5009 92609 0.5260 +5009 113451 0.5930 +5009 121642 0.4900 +5009 131118 0.5410 +5009 132949 0.4070 +5009 134266 0.5930 +5009 148811 0.6220 +5009 153642 0.4150 +5009 162417 0.9770 +5009 196743 0.5780 +5009 197257 0.4350 +5009 283209 0.8240 +5009 284098 0.5250 +5009 286451 0.4680 +5009 340075 0.4300 +5009 347527 0.4150 +5009 400499 0.4020 +5009 440138 0.5250 +5009 644974 0.5250 +5009 100287932 0.5610 +5009 100526760 0.6220 +5010 5101 0.4660 +5010 5354 0.6390 +5010 5376 0.8560 +5010 6662 0.4360 +5010 6663 0.4960 +5010 7082 0.9810 +5010 7122 0.7280 +5010 9069 0.7690 +5010 9071 0.7630 +5010 9073 0.7070 +5010 9074 0.7160 +5010 9075 0.8130 +5010 9076 0.7030 +5010 9080 0.7240 +5010 9414 0.6540 +5010 10099 0.5370 +5010 10215 0.5070 +5010 10686 0.7180 +5010 23562 0.7180 +5010 24146 0.6970 +5010 26285 0.7160 +5010 27134 0.8720 +5010 49861 0.6990 +5010 50511 0.5940 +5010 50848 0.5180 +5010 51090 0.5020 +5010 51208 0.6990 +5010 53842 0.6990 +5010 56288 0.6980 +5010 57471 0.6980 +5010 57717 0.4510 +5010 65266 0.4220 +5010 79152 0.5370 +5010 79827 0.5030 +5010 83700 0.4610 +5010 90952 0.7110 +5010 93377 0.5000 +5010 116448 0.4500 +5010 137075 0.8430 +5010 149461 0.6950 +5010 153562 0.4180 +5010 342977 0.4010 +5010 644672 0.7850 +5010 100132463 0.6950 +5010 100288814 0.7420 +5010 100506658 0.9580 +5013 5015 0.4560 +5013 5076 0.7960 +5013 5454 0.4440 +5013 5458 0.4130 +5013 5649 0.4020 +5013 5957 0.5260 +5013 6469 0.4810 +5013 6495 0.4170 +5013 6496 0.5350 +5013 6596 0.5520 +5013 6656 0.4710 +5013 6657 0.4910 +5013 7015 0.5530 +5013 7101 0.4750 +5013 7439 0.4760 +5013 7545 0.4280 +5013 8320 0.4310 +5013 8601 0.5460 +5013 8646 0.4410 +5013 9355 0.5450 +5013 9480 0.5390 +5013 10120 0.4930 +5013 10121 0.4330 +5013 10716 0.6030 +5013 23301 0.4920 +5013 23314 0.4290 +5013 23316 0.4100 +5013 26257 0.4450 +5013 55079 0.4970 +5013 55100 0.4070 +5013 55582 0.4130 +5013 63973 0.4430 +5013 64919 0.4570 +5013 79191 0.4150 +5013 83897 0.4510 +5013 353132 0.5040 +5013 386676 0.4480 +5013 400961 0.4240 +5015 5076 0.8230 +5015 5080 0.4790 +5015 5308 0.4110 +5015 5449 0.6120 +5015 5453 0.5820 +5015 5454 0.6500 +5015 5457 0.4970 +5015 5458 0.5850 +5015 5460 0.9120 +5015 5816 0.6990 +5015 5957 0.8110 +5015 6010 0.6460 +5015 6017 0.6210 +5015 6096 0.6470 +5015 6121 0.6120 +5015 6258 0.4320 +5015 6297 0.4540 +5015 6299 0.4100 +5015 6469 0.7400 +5015 6495 0.6360 +5015 6496 0.8780 +5015 6513 0.4220 +5015 6596 0.4910 +5015 6599 0.4200 +5015 6656 0.8070 +5015 6657 0.9140 +5015 6658 0.7960 +5015 6659 0.5320 +5015 6662 0.6650 +5015 6663 0.4610 +5015 6664 0.5050 +5015 6795 0.6050 +5015 6862 0.4210 +5015 6926 0.6030 +5015 6997 0.4970 +5015 7022 0.4110 +5015 7044 0.4950 +5015 7054 0.5450 +5015 7068 0.4900 +5015 7091 0.6590 +5015 7101 0.5210 +5015 7268 0.5480 +5015 7276 0.4050 +5015 7299 0.4600 +5015 7439 0.6390 +5015 7471 0.7500 +5015 7473 0.4390 +5015 7482 0.4370 +5015 7545 0.6120 +5015 7546 0.6840 +5015 7547 0.6850 +5015 8022 0.6520 +5015 8216 0.4310 +5015 8320 0.5440 +5015 8433 0.4310 +5015 8646 0.5900 +5015 8817 0.4390 +5015 8822 0.4180 +5015 8823 0.4320 +5015 9241 0.4440 +5015 9314 0.5960 +5015 9350 0.5040 +5015 9573 0.4880 +5015 10002 0.7480 +5015 10120 0.4290 +5015 10121 0.4270 +5015 10215 0.5280 +5015 10365 0.4080 +5015 10371 0.6040 +5015 10381 0.4340 +5015 10586 0.4240 +5015 10637 0.5310 +5015 10699 0.4270 +5015 10716 0.4910 +5015 10736 0.4500 +5015 10763 0.6210 +5015 11166 0.4260 +5015 22943 0.5060 +5015 23746 0.4790 +5015 26257 0.4310 +5015 26281 0.4320 +5015 27006 0.4070 +5015 27022 0.4660 +5015 27164 0.4110 +5015 29842 0.5050 +5015 30062 0.4250 +5015 51804 0.6890 +5015 55079 0.5370 +5015 55636 0.4140 +5015 57030 0.4020 +5015 57167 0.4920 +5015 57381 0.4400 +5015 58158 0.4200 +5015 63973 0.7320 +5015 63978 0.5250 +5015 64220 0.4210 +5015 64321 0.6690 +5015 64399 0.4400 +5015 64919 0.4160 +5015 79190 0.4770 +5015 79191 0.5040 +5015 79192 0.4440 +5015 79727 0.5210 +5015 79923 0.7580 +5015 84504 0.4860 +5015 85416 0.5010 +5015 89780 0.4440 +5015 89884 0.7050 +5015 121643 0.4740 +5015 127343 0.6320 +5015 128674 0.4920 +5015 132625 0.5360 +5015 151871 0.4020 +5015 169792 0.4100 +5015 220202 0.5860 +5015 256297 0.5900 +5015 338917 0.4160 +5015 342900 0.4090 +5015 359787 0.4550 +5015 388585 0.4210 +5015 392255 0.4250 +5016 6677 0.5740 +5016 7381 0.4550 +5016 7384 0.4280 +5016 7385 0.4540 +5016 7783 0.8250 +5016 7784 0.8500 +5016 7849 0.5470 +5016 8747 0.4990 +5016 8748 0.5180 +5016 9377 0.5870 +5016 9512 0.4300 +5016 10071 0.6320 +5016 11085 0.4990 +5016 22917 0.8270 +5016 29796 0.4430 +5016 51206 0.7670 +5016 51705 0.5580 +5016 56667 0.6090 +5016 57829 0.8370 +5016 66005 0.5640 +5016 79002 0.5410 +5016 84886 0.4580 +5016 94025 0.5820 +5016 125965 0.5410 +5016 143662 0.6380 +5016 200958 0.6180 +5016 394263 0.5070 +5016 727897 0.5730 +5016 100507679 0.4180 +5017 6692 0.4620 +5017 7051 0.4170 +5017 11187 0.4330 +5017 29841 0.5220 +5017 54101 0.5180 +5017 54845 0.5680 +5017 57111 0.4110 +5017 57822 0.6910 +5017 79755 0.5830 +5017 79977 0.6740 +5017 91056 0.4700 +5017 126695 0.4510 +5017 284382 0.6200 +5017 388698 0.4190 +5018 5111 0.4390 +5018 5245 0.4810 +5018 5300 0.4090 +5018 5303 0.4240 +5018 5538 0.4190 +5018 6124 0.5040 +5018 6132 0.4640 +5018 6147 0.4650 +5018 6150 0.8860 +5018 6154 0.4380 +5018 6182 0.9110 +5018 6183 0.8600 +5018 6187 0.4880 +5018 6209 0.4600 +5018 6217 0.4250 +5018 6224 0.4400 +5018 6341 0.6600 +5018 6389 0.4180 +5018 6390 0.4940 +5018 6391 0.4520 +5018 6687 0.4310 +5018 6729 0.5850 +5018 6734 0.5540 +5018 6834 0.8310 +5018 6835 0.5810 +5018 6838 0.5560 +5018 7019 0.7870 +5018 7284 0.7460 +5018 7298 0.4570 +5018 7381 0.4110 +5018 7384 0.5040 +5018 7385 0.5010 +5018 7386 0.5730 +5018 7416 0.4200 +5018 7431 0.5750 +5018 7485 0.7700 +5018 7818 0.8890 +5018 8192 0.4950 +5018 8565 0.5230 +5018 9377 0.4460 +5018 9512 0.4060 +5018 9553 0.8610 +5018 9617 0.4200 +5018 9801 0.8690 +5018 9804 0.7930 +5018 9868 0.7460 +5018 9997 0.5540 +5018 10063 0.5700 +5018 10102 0.6650 +5018 10240 0.8360 +5018 10245 0.7030 +5018 10422 0.7180 +5018 10440 0.9270 +5018 10452 0.7050 +5018 10469 0.6860 +5018 10573 0.8770 +5018 10730 0.5880 +5018 10884 0.8430 +5018 10939 0.4260 +5018 10989 0.8540 +5018 11222 0.8780 +5018 11331 0.5450 +5018 22984 0.4440 +5018 23065 0.6130 +5018 23107 0.8320 +5018 23203 0.4970 +5018 23478 0.4240 +5018 23521 0.4410 +5018 23551 0.6680 +5018 23761 0.5360 +5018 25813 0.6470 +5018 25821 0.4980 +5018 26164 0.4320 +5018 26284 0.4540 +5018 26519 0.6850 +5018 26520 0.6720 +5018 26589 0.8470 +5018 28957 0.8050 +5018 28958 0.5140 +5018 28973 0.8690 +5018 28977 0.8390 +5018 28998 0.9180 +5018 29074 0.8310 +5018 29088 0.8590 +5018 29090 0.6520 +5018 29093 0.8620 +5018 29789 0.4860 +5018 29927 0.9090 +5018 51021 0.9040 +5018 51023 0.8150 +5018 51025 0.5080 +5018 51027 0.4270 +5018 51069 0.8940 +5018 51073 0.9200 +5018 51081 0.8900 +5018 51116 0.8680 +5018 51204 0.5500 +5018 51234 0.4280 +5018 51253 0.8610 +5018 51258 0.9120 +5018 51263 0.8640 +5018 51264 0.8910 +5018 51290 0.4520 +5018 51318 0.8030 +5018 51373 0.8150 +5018 51614 0.4960 +5018 51642 0.9100 +5018 51649 0.8050 +5018 51650 0.8120 +5018 54148 0.8410 +5018 54205 0.5330 +5018 54460 0.8060 +5018 54499 0.4840 +5018 54516 0.4550 +5018 54534 0.8710 +5018 54543 0.4770 +5018 54948 0.8770 +5018 54998 0.8010 +5018 55037 0.8640 +5018 55052 0.8970 +5018 55101 0.5430 +5018 55157 0.4500 +5018 55168 0.8210 +5018 55173 0.8520 +5018 55176 0.8530 +5018 55245 0.5690 +5018 55744 0.4060 +5018 55831 0.7380 +5018 56945 0.9070 +5018 56993 0.5990 +5018 57038 0.4350 +5018 57124 0.8820 +5018 57125 0.4080 +5018 57129 0.8790 +5018 57222 0.4780 +5018 60488 0.8430 +5018 60558 0.4580 +5018 63875 0.9170 +5018 63931 0.8340 +5018 64146 0.4120 +5018 64432 0.8310 +5018 64745 0.4170 +5018 64928 0.8110 +5018 64949 0.8500 +5018 64951 0.8060 +5018 64960 0.8410 +5018 64963 0.8450 +5018 64965 0.9040 +5018 64968 0.8280 +5018 64969 0.8870 +5018 64975 0.8430 +5018 64976 0.8480 +5018 64978 0.8510 +5018 64979 0.8380 +5018 64981 0.8380 +5018 64983 0.8630 +5018 65003 0.8740 +5018 65005 0.8560 +5018 65008 0.8390 +5018 65080 0.8640 +5018 65993 0.8190 +5018 78988 0.8090 +5018 79568 0.4370 +5018 79590 0.8810 +5018 80273 0.4600 +5018 81570 0.4810 +5018 83460 0.6270 +5018 83858 0.4070 +5018 83943 0.4450 +5018 84273 0.4310 +5018 84311 0.9440 +5018 84340 0.6930 +5018 84545 0.8050 +5018 84701 0.4250 +5018 84705 0.4900 +5018 84987 0.5740 +5018 85476 0.8960 +5018 87178 0.5080 +5018 90407 0.4040 +5018 90480 0.8500 +5018 90871 0.4480 +5018 91419 0.6570 +5018 91574 0.4690 +5018 91647 0.4190 +5018 92170 0.5000 +5018 92399 0.5190 +5018 92609 0.7190 +5018 115209 0.4760 +5018 115416 0.4540 +5018 116228 0.6060 +5018 116540 0.8920 +5018 116541 0.8140 +5018 118487 0.8880 +5018 118490 0.4110 +5018 122704 0.8440 +5018 124995 0.8290 +5018 128308 0.8530 +5018 131118 0.5190 +5018 131474 0.6820 +5018 150274 0.4080 +5018 196294 0.4360 +5018 219402 0.6700 +5018 219927 0.8540 +5018 246243 0.4650 +5018 285521 0.6720 +5018 388753 0.4870 +5018 440957 0.4950 +5018 493753 0.4040 +5018 100131801 0.4120 +5018 100287932 0.6030 +5018 100303755 0.4610 +5019 5091 0.5310 +5019 5095 0.5590 +5019 5096 0.4710 +5019 5162 0.4780 +5019 5166 0.4030 +5019 6389 0.8740 +5019 6390 0.8160 +5019 6391 0.8040 +5019 6566 0.4510 +5019 6646 0.4350 +5019 8192 0.4870 +5019 8310 0.4710 +5019 8801 0.5040 +5019 8802 0.7370 +5019 8803 0.6100 +5019 9085 0.4300 +5019 9194 0.4620 +5019 9425 0.4340 +5019 9607 0.5620 +5019 10011 0.4450 +5019 10449 0.9590 +5019 10455 0.4790 +5019 23417 0.4020 +5019 26275 0.5500 +5019 27034 0.4310 +5019 28976 0.4640 +5019 54511 0.9640 +5019 55268 0.4480 +5019 55862 0.4490 +5019 55902 0.4230 +5019 56898 0.9640 +5019 56922 0.5480 +5019 57466 0.4240 +5019 64064 0.9610 +5019 64087 0.4500 +5019 65985 0.9580 +5019 83475 0.7690 +5019 83659 0.5310 +5019 84263 0.5240 +5019 84532 0.4600 +5019 84842 0.4100 +5019 124359 0.4300 +5019 137872 0.4380 +5019 253175 0.4300 +5020 5021 0.9990 +5020 5023 0.4290 +5020 5066 0.4230 +5020 5173 0.7960 +5020 5178 0.4240 +5020 5179 0.4860 +5020 5241 0.4950 +5020 5330 0.5710 +5020 5331 0.5780 +5020 5367 0.8120 +5020 5368 0.6060 +5020 5443 0.9360 +5020 5454 0.5670 +5020 5539 0.4040 +5020 5566 0.4400 +5020 5567 0.4470 +5020 5568 0.4390 +5020 5592 0.4470 +5020 5617 0.8990 +5020 5618 0.4270 +5020 5697 0.4940 +5020 5733 0.7440 +5020 5737 0.4650 +5020 5743 0.4680 +5020 5816 0.5320 +5020 5972 0.5070 +5020 6010 0.4070 +5020 6343 0.4540 +5020 6363 0.4520 +5020 6462 0.6480 +5020 6492 0.7880 +5020 6531 0.5050 +5020 6532 0.6350 +5020 6558 0.4390 +5020 6638 0.4540 +5020 6750 0.7690 +5020 6751 0.7030 +5020 6752 0.7040 +5020 6755 0.6860 +5020 6863 0.8640 +5020 6870 0.5770 +5020 7033 0.5220 +5020 7054 0.6260 +5020 7124 0.4180 +5020 7173 0.4060 +5020 7200 0.8060 +5020 7204 0.5070 +5020 7349 0.4770 +5020 7425 0.6680 +5020 7428 0.6490 +5020 7432 0.6020 +5020 7442 0.4250 +5020 7681 0.5390 +5020 7837 0.4070 +5020 7857 0.4500 +5020 8453 0.6190 +5020 8560 0.5050 +5020 8620 0.6690 +5020 8843 0.6690 +5020 8862 0.4100 +5020 8997 0.5500 +5020 9568 0.6920 +5020 9607 0.5920 +5020 10371 0.4200 +5020 10800 0.5230 +5020 10874 0.6270 +5020 23001 0.4240 +5020 23236 0.6030 +5020 23440 0.7420 +5020 26047 0.4460 +5020 27198 0.6890 +5020 51052 0.5530 +5020 51083 0.8620 +5020 51289 0.4080 +5020 51738 0.6520 +5020 51806 0.4320 +5020 54413 0.4310 +5020 54551 0.7960 +5020 56670 0.6530 +5020 57084 0.4730 +5020 57105 0.5050 +5020 57468 0.4610 +5020 64111 0.4180 +5020 85358 0.4810 +5020 91860 0.4220 +5020 113091 0.4140 +5020 115557 0.4990 +5020 117579 0.4570 +5020 129521 0.5990 +5020 137902 0.4070 +5020 151887 0.4350 +5020 163688 0.4270 +5020 192668 0.5060 +5020 256933 0.5140 +5020 283869 0.5580 +5020 285601 0.5850 +5020 338442 0.6940 +5020 347148 0.5550 +5020 387129 0.5760 +5020 594857 0.7390 +5020 104909134 0.6010 +5021 5241 0.6250 +5021 5330 0.5280 +5021 5331 0.5390 +5021 5443 0.6400 +5021 5617 0.5870 +5021 5618 0.4730 +5021 5649 0.4070 +5021 5733 0.4280 +5021 5737 0.5850 +5021 5743 0.5070 +5021 6532 0.6900 +5021 6750 0.7700 +5021 7054 0.4200 +5021 7204 0.5170 +5021 7399 0.5240 +5021 8997 0.5160 +5021 9254 0.6620 +5021 9630 0.6780 +5021 10368 0.6600 +5021 10369 0.6940 +5021 10800 0.4430 +5021 23236 0.5780 +5021 23544 0.4350 +5021 23764 0.6870 +5021 26047 0.4110 +5021 27091 0.6500 +5021 27092 0.6600 +5021 51738 0.7670 +5021 54331 0.8160 +5021 55799 0.6500 +5021 57105 0.4210 +5021 59283 0.6590 +5021 59284 0.6500 +5021 59285 0.6550 +5021 85358 0.4780 +5021 93589 0.6500 +5021 114569 0.4270 +5021 115557 0.5110 +5021 137872 0.4080 +5021 594857 0.4450 +5021 104909134 0.5560 +5023 5024 0.9910 +5023 5025 0.9760 +5023 5026 0.9820 +5023 5027 0.9870 +5023 5028 0.9540 +5023 5029 0.9290 +5023 5030 0.8880 +5023 5031 0.8690 +5023 5032 0.8600 +5023 5214 0.4110 +5023 5738 0.4030 +5023 5794 0.4720 +5023 6363 0.4160 +5023 6688 0.4180 +5023 6786 0.5820 +5023 7442 0.4560 +5023 7456 0.4150 +5023 7562 0.4040 +5023 7576 0.4170 +5023 9127 0.9950 +5023 9934 0.8990 +5023 22953 0.9140 +5023 24145 0.7670 +5023 27334 0.4400 +5023 51206 0.4370 +5023 53829 0.8090 +5023 55204 0.4100 +5023 58492 0.6310 +5023 63910 0.4690 +5023 64805 0.9760 +5023 80264 0.4060 +5023 137209 0.4180 +5023 200407 0.4040 +5023 285672 0.4120 +5023 377841 0.6540 +5023 692312 0.8420 +5024 5025 0.9910 +5024 5026 0.9860 +5024 5027 0.9790 +5024 5028 0.7060 +5024 5029 0.7880 +5024 5030 0.7780 +5024 5031 0.7670 +5024 5032 0.7580 +5024 5330 0.4340 +5024 6335 0.5980 +5024 6336 0.6570 +5024 6616 0.4050 +5024 6863 0.6950 +5024 6869 0.4300 +5024 7442 0.8970 +5024 8989 0.7320 +5024 9127 0.9930 +5024 9311 0.6990 +5024 9934 0.6670 +5024 11280 0.6250 +5024 22953 0.9920 +5024 24145 0.5860 +5024 51393 0.5070 +5024 53829 0.6990 +5024 58492 0.8610 +5024 59341 0.5900 +5024 63895 0.5180 +5024 63910 0.5510 +5024 64805 0.6740 +5024 79054 0.6220 +5024 83756 0.4240 +5024 116512 0.6110 +5024 162514 0.4180 +5024 255022 0.5130 +5024 338567 0.4290 +5024 346562 0.4460 +5024 377841 0.5450 +5024 692312 0.7560 +5025 5026 0.9770 +5025 5027 0.9950 +5025 5028 0.7140 +5025 5029 0.8490 +5025 5030 0.7560 +5025 5031 0.7680 +5025 5032 0.7410 +5025 5319 0.7820 +5025 7442 0.4450 +5025 9127 0.9930 +5025 9311 0.6580 +5025 9917 0.4420 +5025 9934 0.6370 +5025 10645 0.4170 +5025 22953 0.9450 +5025 24145 0.8550 +5025 51806 0.5590 +5025 53829 0.6260 +5025 57192 0.4630 +5025 57468 0.5070 +5025 58492 0.4930 +5025 63910 0.4740 +5025 64805 0.7920 +5025 79415 0.4260 +5025 79934 0.4200 +5025 91860 0.5590 +5025 114548 0.4270 +5025 163688 0.5590 +5025 219931 0.4370 +5025 377841 0.5230 +5025 692312 0.7400 +5026 5027 0.9480 +5026 5028 0.6380 +5026 5029 0.8040 +5026 5030 0.8020 +5026 5031 0.7670 +5026 5032 0.7870 +5026 9127 0.9710 +5026 9311 0.7230 +5026 9934 0.7300 +5026 22953 0.9760 +5026 24145 0.4960 +5026 27334 0.4750 +5026 30851 0.5170 +5026 53829 0.7080 +5026 63976 0.4050 +5026 64805 0.6190 +5026 79084 0.4930 +5026 153201 0.6260 +5026 219623 0.5410 +5026 377841 0.4930 +5026 401251 0.4750 +5026 692312 0.7870 +5027 5028 0.7200 +5027 5029 0.7680 +5027 5030 0.6880 +5027 5031 0.7120 +5027 5032 0.6800 +5027 5742 0.4790 +5027 6347 0.4040 +5027 6850 0.4830 +5027 7097 0.4640 +5027 7099 0.7250 +5027 7124 0.6880 +5027 9127 0.9490 +5027 9447 0.4640 +5027 9934 0.5340 +5027 22861 0.6390 +5027 22900 0.5460 +5027 22953 0.8520 +5027 24145 0.9950 +5027 29108 0.6330 +5027 51806 0.5080 +5027 53829 0.5740 +5027 55655 0.5160 +5027 58484 0.6460 +5027 64170 0.4040 +5027 64805 0.7330 +5027 79792 0.4200 +5027 91860 0.5100 +5027 114548 0.8660 +5027 115761 0.7040 +5027 163688 0.5100 +5027 377841 0.5900 +5027 692312 0.6710 +5027 102723407 0.4470 +5028 5029 0.6790 +5028 5031 0.4890 +5028 5032 0.5320 +5028 5080 0.5880 +5028 5330 0.5890 +5028 5331 0.5820 +5028 5742 0.4800 +5028 5822 0.5390 +5028 6122 0.4310 +5028 6123 0.4310 +5028 6129 0.4890 +5028 6175 0.4330 +5028 6403 0.5790 +5028 6496 0.7620 +5028 6550 0.4240 +5028 6714 0.6030 +5028 6838 0.8350 +5028 6915 0.4780 +5028 7170 0.4220 +5028 7204 0.4990 +5028 7408 0.5820 +5028 7450 0.5080 +5028 8562 0.4880 +5028 8568 0.7010 +5028 8602 0.6160 +5028 8886 0.6780 +5028 8997 0.4990 +5028 9127 0.5900 +5028 9136 0.6810 +5028 9221 0.6140 +5028 9277 0.6890 +5028 9351 0.6620 +5028 9368 0.5880 +5028 9630 0.5110 +5028 9724 0.6200 +5028 9775 0.4030 +5028 9790 0.6450 +5028 9875 0.4270 +5028 9904 0.5150 +5028 9933 0.6910 +5028 9934 0.4840 +5028 10153 0.7990 +5028 10161 0.4440 +5028 10171 0.5470 +5028 10199 0.6730 +5028 10476 0.4030 +5028 10514 0.4260 +5028 10528 0.6010 +5028 10607 0.5380 +5028 10681 0.5280 +5028 10785 0.4050 +5028 10800 0.5760 +5028 10813 0.6200 +5028 10885 0.6730 +5028 10969 0.7910 +5028 11056 0.5920 +5028 11103 0.6910 +5028 11224 0.4060 +5028 22953 0.7100 +5028 22984 0.4920 +5028 23029 0.5910 +5028 23076 0.7010 +5028 23160 0.5900 +5028 23212 0.6900 +5028 23223 0.5230 +5028 23236 0.7080 +5028 23246 0.8400 +5028 23378 0.4300 +5028 23481 0.8050 +5028 23517 0.4060 +5028 23560 0.7560 +5028 24145 0.4710 +5028 25885 0.5480 +5028 25983 0.6000 +5028 26155 0.7810 +5028 26156 0.8360 +5028 26354 0.6260 +5028 26574 0.6530 +5028 26995 0.4710 +5028 27292 0.4220 +5028 27334 0.4740 +5028 27341 0.4280 +5028 28987 0.6120 +5028 29889 0.6110 +5028 29997 0.6140 +5028 51018 0.8460 +5028 51053 0.5480 +5028 51082 0.5240 +5028 51096 0.6870 +5028 51118 0.5700 +5028 51154 0.7010 +5028 51187 0.7440 +5028 51202 0.6450 +5028 51206 0.7740 +5028 51266 0.5350 +5028 51388 0.6420 +5028 51575 0.6100 +5028 51602 0.4440 +5028 51764 0.4990 +5028 53829 0.4470 +5028 54331 0.4990 +5028 54475 0.4140 +5028 54552 0.6260 +5028 54555 0.4550 +5028 54606 0.7710 +5028 54663 0.7840 +5028 54984 0.4320 +5028 55003 0.4340 +5028 55131 0.7760 +5028 55153 0.5960 +5028 55226 0.5600 +5028 55272 0.4520 +5028 55299 0.7300 +5028 55341 0.4320 +5028 55646 0.6340 +5028 55651 0.6490 +5028 55695 0.4650 +5028 55703 0.4270 +5028 55720 0.5860 +5028 55759 0.4640 +5028 55781 0.5520 +5028 55794 0.5690 +5028 55813 0.5530 +5028 55970 0.5150 +5028 56342 0.6860 +5028 57050 0.6630 +5028 57062 0.5450 +5028 57105 0.4700 +5028 57109 0.4390 +5028 57696 0.4540 +5028 59345 0.5340 +5028 64216 0.4650 +5028 64318 0.5910 +5028 64425 0.6060 +5028 64794 0.4530 +5028 64805 0.9570 +5028 65083 0.5900 +5028 65095 0.6540 +5028 79039 0.7170 +5028 79050 0.6150 +5028 79730 0.4330 +5028 79954 0.6380 +5028 80135 0.8270 +5028 80790 0.4250 +5028 81620 0.5290 +5028 83732 0.5470 +5028 83743 0.6900 +5028 84128 0.5590 +5028 84154 0.7770 +5028 84294 0.5240 +5028 84365 0.7580 +5028 84549 0.7460 +5028 84916 0.5470 +5028 84946 0.5340 +5028 90121 0.4160 +5028 91893 0.5220 +5028 92856 0.6750 +5028 94235 0.4990 +5028 115557 0.4990 +5028 117246 0.6050 +5028 142940 0.5330 +5028 146212 0.4980 +5028 161424 0.6430 +5028 221078 0.6900 +5028 285855 0.4890 +5028 317701 0.4260 +5028 377841 0.6850 +5028 387129 0.5120 +5028 100505478 0.4700 +5029 5030 0.5780 +5029 5031 0.7900 +5029 5032 0.7260 +5029 5330 0.5580 +5029 5331 0.7700 +5029 5832 0.5640 +5029 6440 0.7500 +5029 6714 0.7870 +5029 7204 0.4990 +5029 7442 0.4460 +5029 8997 0.5140 +5029 9127 0.7680 +5029 9635 0.4100 +5029 10161 0.4350 +5029 10800 0.4360 +5029 22802 0.4140 +5029 22953 0.8110 +5029 23236 0.7110 +5029 24145 0.7240 +5029 25987 0.4710 +5029 27334 0.6320 +5029 29933 0.4160 +5029 55107 0.4700 +5029 57105 0.5100 +5029 59341 0.4040 +5029 63910 0.4340 +5029 64805 0.5370 +5029 83550 0.4110 +5029 114548 0.5140 +5029 115557 0.5140 +5029 377841 0.7250 +5029 692312 0.5610 +5030 5031 0.4560 +5030 5032 0.5660 +5030 5832 0.5090 +5030 6714 0.5560 +5030 9127 0.8090 +5030 9934 0.6350 +5030 10959 0.4850 +5030 22953 0.8670 +5030 24145 0.5180 +5030 53829 0.7620 +5030 56342 0.8270 +5030 63940 0.4090 +5030 64805 0.7560 +5030 377841 0.5830 +5030 692312 0.5640 +5031 5032 0.7240 +5031 5196 0.4100 +5031 5330 0.5240 +5031 5331 0.5790 +5031 5832 0.4260 +5031 6376 0.5640 +5031 7097 0.4790 +5031 7204 0.4990 +5031 8997 0.5010 +5031 9127 0.7600 +5031 10161 0.4480 +5031 10800 0.4450 +5031 22953 0.8730 +5031 23166 0.4100 +5031 23236 0.5290 +5031 24145 0.5420 +5031 27334 0.4810 +5031 54209 0.5980 +5031 57105 0.5160 +5031 64805 0.5660 +5031 84818 0.4240 +5031 115557 0.4990 +5031 140885 0.4290 +5031 255231 0.4010 +5031 377841 0.6100 +5031 692312 0.5530 +5032 5167 0.5540 +5032 5330 0.5030 +5032 5331 0.5480 +5032 5822 0.5390 +5032 6036 0.4200 +5032 6122 0.4310 +5032 6123 0.4310 +5032 6129 0.4890 +5032 6175 0.4440 +5032 6629 0.4360 +5032 6714 0.5530 +5032 6838 0.8370 +5032 7204 0.4990 +5032 8165 0.4810 +5032 8568 0.7110 +5032 8602 0.6220 +5032 8666 0.8530 +5032 8886 0.6810 +5032 8997 0.4990 +5032 9127 0.7520 +5032 9136 0.6830 +5032 9221 0.6140 +5032 9277 0.6930 +5032 9465 0.4520 +5032 9724 0.6230 +5032 9775 0.4030 +5032 9790 0.6520 +5032 9875 0.4270 +5032 9904 0.5150 +5032 9933 0.6920 +5032 10153 0.8000 +5032 10161 0.4660 +5032 10171 0.5470 +5032 10199 0.6730 +5032 10212 0.4030 +5032 10514 0.4260 +5032 10521 0.4100 +5032 10528 0.6010 +5032 10607 0.5410 +5032 10681 0.5280 +5032 10785 0.4160 +5032 10800 0.4380 +5032 10813 0.6200 +5032 10885 0.6900 +5032 10969 0.7910 +5032 11056 0.5920 +5032 11069 0.4510 +5032 11103 0.6910 +5032 11224 0.4060 +5032 22953 0.7630 +5032 22984 0.4930 +5032 23029 0.5910 +5032 23076 0.7010 +5032 23160 0.5900 +5032 23212 0.6930 +5032 23223 0.5230 +5032 23236 0.5430 +5032 23246 0.8450 +5032 23378 0.4410 +5032 23481 0.8110 +5032 23517 0.4060 +5032 23560 0.7560 +5032 24145 0.5910 +5032 25885 0.5480 +5032 25983 0.6000 +5032 26155 0.7810 +5032 26156 0.8370 +5032 26354 0.6270 +5032 26574 0.6530 +5032 26995 0.4710 +5032 27292 0.4330 +5032 27334 0.5140 +5032 27341 0.4320 +5032 28987 0.6120 +5032 29889 0.6130 +5032 29997 0.6160 +5032 51018 0.8460 +5032 51042 0.4130 +5032 51082 0.5130 +5032 51096 0.6870 +5032 51118 0.5700 +5032 51154 0.7040 +5032 51187 0.7440 +5032 51202 0.6450 +5032 51236 0.4100 +5032 51388 0.6450 +5032 51575 0.6100 +5032 51602 0.4440 +5032 51764 0.4990 +5032 53829 0.8820 +5032 54331 0.4990 +5032 54433 0.4100 +5032 54552 0.6260 +5032 54555 0.4590 +5032 54606 0.7740 +5032 54663 0.7920 +5032 54984 0.4320 +5032 55003 0.4340 +5032 55131 0.7760 +5032 55153 0.5960 +5032 55226 0.5660 +5032 55272 0.4570 +5032 55299 0.7310 +5032 55341 0.4320 +5032 55646 0.6370 +5032 55651 0.6490 +5032 55695 0.4900 +5032 55703 0.4270 +5032 55720 0.5860 +5032 55759 0.4640 +5032 55781 0.5520 +5032 55794 0.5750 +5032 55811 0.4420 +5032 55813 0.5530 +5032 55970 0.4990 +5032 56342 0.9820 +5032 57050 0.6770 +5032 57062 0.5450 +5032 57105 0.4200 +5032 57109 0.4640 +5032 57696 0.4650 +5032 59345 0.5280 +5032 63910 0.4340 +5032 64216 0.4650 +5032 64318 0.5910 +5032 64425 0.6090 +5032 64794 0.4640 +5032 65083 0.5980 +5032 65095 0.6690 +5032 79039 0.7250 +5032 79050 0.6150 +5032 79159 0.4060 +5032 79730 0.4330 +5032 79954 0.6380 +5032 80135 0.8270 +5032 83732 0.5470 +5032 83743 0.6920 +5032 84128 0.5590 +5032 84154 0.7770 +5032 84294 0.5270 +5032 84365 0.7580 +5032 84549 0.7460 +5032 84916 0.5500 +5032 84946 0.5340 +5032 90121 0.4020 +5032 91893 0.5250 +5032 92856 0.6820 +5032 93659 0.4890 +5032 94027 0.5300 +5032 94235 0.4990 +5032 115557 0.5220 +5032 115708 0.4400 +5032 117246 0.6050 +5032 142940 0.5330 +5032 146212 0.4980 +5032 161424 0.6430 +5032 221078 0.6900 +5032 221830 0.4010 +5032 285855 0.4890 +5032 377841 0.6090 +5032 387129 0.6940 +5032 100505478 0.4700 +5033 5034 0.9930 +5033 5163 0.4240 +5033 5223 0.4550 +5033 5230 0.5310 +5033 5351 0.8810 +5033 5352 0.8530 +5033 5479 0.4980 +5033 5625 0.9160 +5033 5831 0.9140 +5033 5832 0.4680 +5033 6513 0.5170 +5033 6606 0.4250 +5033 7083 0.4140 +5033 7162 0.4330 +5033 7167 0.4230 +5033 7373 0.5320 +5033 7415 0.4150 +5033 7428 0.5490 +5033 8974 0.9570 +5033 8985 0.6920 +5033 9601 0.7650 +5033 9669 0.4560 +5033 10262 0.4240 +5033 10397 0.4950 +5033 10491 0.5260 +5033 10536 0.5630 +5033 26523 0.4620 +5033 26993 0.4180 +5033 27161 0.5200 +5033 29920 0.9080 +5033 30001 0.5950 +5033 50509 0.4640 +5033 51056 0.9020 +5033 51060 0.6160 +5033 51129 0.4240 +5033 51373 0.4190 +5033 54431 0.4190 +5033 54443 0.4330 +5033 54583 0.7510 +5033 55015 0.4700 +5033 55214 0.7870 +5033 55662 0.4440 +5033 57642 0.4330 +5033 57829 0.4650 +5033 58510 0.9170 +5033 60681 0.4060 +5033 64175 0.7740 +5033 64344 0.6840 +5033 65263 0.9110 +5033 80781 0.5920 +5033 81578 0.4200 +5033 83667 0.4650 +5033 84570 0.4200 +5033 84617 0.4220 +5033 85301 0.4350 +5033 91252 0.4080 +5033 91522 0.4410 +5033 112398 0.6250 +5033 112399 0.6980 +5033 131873 0.4410 +5033 136227 0.4460 +5033 136332 0.5320 +5033 169044 0.4650 +5033 192669 0.6180 +5033 192670 0.6230 +5033 255631 0.4200 +5033 284131 0.4260 +5033 340267 0.4510 +5033 353322 0.4430 +5033 441531 0.4510 +5034 5042 0.5070 +5034 5052 0.4920 +5034 5223 0.5270 +5034 5226 0.4200 +5034 5245 0.5170 +5034 5315 0.4020 +5034 5351 0.4340 +5034 5352 0.5390 +5034 5358 0.4190 +5034 5479 0.9660 +5034 5480 0.4090 +5034 5589 0.7920 +5034 5611 0.7730 +5034 5645 0.4330 +5034 5954 0.4920 +5034 6184 0.5940 +5034 6185 0.5140 +5034 6241 0.4840 +5034 6389 0.5210 +5034 6400 0.8400 +5034 6461 0.6050 +5034 6469 0.5320 +5034 6470 0.4230 +5034 6472 0.5090 +5034 6647 0.4040 +5034 6657 0.4960 +5034 6745 0.4110 +5034 6836 0.6840 +5034 6892 0.5480 +5034 6950 0.5640 +5034 7001 0.5300 +5034 7086 0.4880 +5034 7167 0.4540 +5034 7184 0.9830 +5034 7277 0.4130 +5034 7280 0.4950 +5034 7296 0.4330 +5034 7317 0.4880 +5034 7363 0.4130 +5034 7373 0.5320 +5034 7384 0.4870 +5034 7385 0.4900 +5034 7415 0.8920 +5034 7450 0.4450 +5034 7494 0.5360 +5034 7529 0.6670 +5034 7841 0.4410 +5034 8189 0.4330 +5034 8349 0.4140 +5034 8669 0.4720 +5034 8974 0.9990 +5034 9352 0.4430 +5034 9588 0.4470 +5034 9601 0.7990 +5034 9695 0.8370 +5034 9709 0.4860 +5034 9871 0.5740 +5034 10130 0.9140 +5034 10134 0.5830 +5034 10237 0.4360 +5034 10376 0.4130 +5034 10381 0.4370 +5034 10382 0.4320 +5034 10383 0.5400 +5034 10483 0.4270 +5034 10484 0.4310 +5034 10491 0.7750 +5034 10525 0.8890 +5034 10536 0.6050 +5034 10539 0.4030 +5034 10549 0.7160 +5034 10551 0.6830 +5034 10574 0.5990 +5034 10618 0.4870 +5034 10945 0.4850 +5034 10952 0.4930 +5034 10954 0.4240 +5034 10956 0.9240 +5034 10959 0.4580 +5034 10961 0.7000 +5034 11014 0.4200 +5034 11231 0.4840 +5034 11315 0.5260 +5034 11316 0.4360 +5034 11328 0.4090 +5034 22926 0.6990 +5034 23036 0.4840 +5034 23193 0.8320 +5034 23197 0.7900 +5034 23435 0.5520 +5034 23753 0.5670 +5034 25824 0.5030 +5034 25828 0.4110 +5034 25843 0.4100 +5034 26523 0.4960 +5034 26986 0.4600 +5034 27044 0.5280 +5034 27161 0.6930 +5034 27248 0.6950 +5034 29927 0.8550 +5034 29979 0.6650 +5034 30001 0.9960 +5034 50509 0.5080 +5034 50846 0.5230 +5034 51009 0.8180 +5034 51060 0.7370 +5034 51138 0.5200 +5034 51237 0.4160 +5034 51272 0.4410 +5034 51360 0.5410 +5034 51430 0.6350 +5034 51465 0.7670 +5034 51561 0.7500 +5034 51692 0.4160 +5034 51726 0.8400 +5034 54431 0.7030 +5034 54490 0.4470 +5034 54575 0.4220 +5034 54576 0.4220 +5034 54577 0.4220 +5034 54578 0.4230 +5034 54657 0.4220 +5034 54658 0.6180 +5034 54732 0.4990 +5034 54757 0.4060 +5034 55015 0.4460 +5034 55151 0.5610 +5034 55176 0.4280 +5034 55214 0.8350 +5034 55379 0.4130 +5034 55631 0.4710 +5034 55666 0.4600 +5034 55741 0.6270 +5034 55757 0.4040 +5034 56005 0.4910 +5034 56255 0.4190 +5034 56605 0.9860 +5034 56886 0.5110 +5034 56893 0.5050 +5034 56975 0.6600 +5034 57621 0.6030 +5034 57642 0.5420 +5034 60681 0.5710 +5034 64175 0.8750 +5034 64714 0.5320 +5034 79139 0.4620 +5034 79174 0.4370 +5034 80124 0.4230 +5034 80267 0.4760 +5034 80781 0.5540 +5034 81502 0.4690 +5034 81567 0.5900 +5034 81578 0.5530 +5034 81608 0.4470 +5034 84447 0.8340 +5034 84570 0.5080 +5034 84617 0.4540 +5034 85301 0.5590 +5034 89122 0.4900 +5034 90993 0.4310 +5034 91319 0.5360 +5034 91522 0.5080 +5034 115098 0.4380 +5034 125972 0.5350 +5034 131873 0.5080 +5034 136227 0.5080 +5034 169044 0.5540 +5034 192669 0.6290 +5034 192670 0.6280 +5034 197131 0.4010 +5034 203068 0.5320 +5034 255631 0.5370 +5034 283208 0.9800 +5034 284131 0.5130 +5034 284194 0.6670 +5034 339416 0.5350 +5034 340267 0.5890 +5034 342538 0.4830 +5034 347688 0.4050 +5034 347733 0.4390 +5034 387733 0.4400 +5034 441531 0.4690 +5034 493869 0.5730 +5034 654346 0.6670 +5034 728378 0.5670 +5036 5093 0.4590 +5036 5094 0.5240 +5036 5204 0.4840 +5036 5245 0.4950 +5036 5394 0.7030 +5036 5431 0.4630 +5036 5432 0.6730 +5036 5434 0.6330 +5036 5469 0.8170 +5036 5495 0.4490 +5036 5496 0.4010 +5036 5578 0.4940 +5036 5610 0.4080 +5036 5631 0.4030 +5036 5682 0.4800 +5036 5683 0.5090 +5036 5684 0.5550 +5036 5685 0.5010 +5036 5686 0.5130 +5036 5687 0.5090 +5036 5688 0.5120 +5036 5690 0.5440 +5036 5694 0.4030 +5036 5695 0.4850 +5036 5701 0.4540 +5036 5705 0.4950 +5036 5707 0.4340 +5036 5708 0.5110 +5036 5710 0.5190 +5036 5717 0.4580 +5036 5725 0.5540 +5036 5793 0.4030 +5036 5822 0.6470 +5036 5832 0.4110 +5036 5859 0.4890 +5036 5886 0.4770 +5036 5901 0.5130 +5036 5902 0.4580 +5036 5903 0.4060 +5036 5925 0.5660 +5036 5928 0.5050 +5036 5976 0.4470 +5036 6059 0.8920 +5036 6122 0.9950 +5036 6123 0.9180 +5036 6124 0.9990 +5036 6125 0.9990 +5036 6128 0.9940 +5036 6129 0.9940 +5036 6130 0.9960 +5036 6132 0.9970 +5036 6133 0.9960 +5036 6135 0.9970 +5036 6136 0.9720 +5036 6137 0.9930 +5036 6138 0.9950 +5036 6139 0.9900 +5036 6141 0.9960 +5036 6142 0.9960 +5036 6143 0.9970 +5036 6144 0.9940 +5036 6146 0.9760 +5036 6147 0.9990 +5036 6152 0.9940 +5036 6154 0.9970 +5036 6155 0.9960 +5036 6156 0.9950 +5036 6157 0.9900 +5036 6158 0.9810 +5036 6159 0.9900 +5036 6160 0.9880 +5036 6161 0.9900 +5036 6164 0.9920 +5036 6165 0.9920 +5036 6166 0.9080 +5036 6167 0.9860 +5036 6168 0.9910 +5036 6169 0.9950 +5036 6170 0.9840 +5036 6171 0.5950 +5036 6173 0.9630 +5036 6175 0.9970 +5036 6181 0.6550 +5036 6182 0.5430 +5036 6183 0.6100 +5036 6187 0.9720 +5036 6188 0.9770 +5036 6189 0.9310 +5036 6191 0.9250 +5036 6193 0.9500 +5036 6194 0.9090 +5036 6201 0.8910 +5036 6202 0.9350 +5036 6203 0.9670 +5036 6204 0.8850 +5036 6205 0.9700 +5036 6206 0.9290 +5036 6207 0.9410 +5036 6208 0.9470 +5036 6209 0.9660 +5036 6210 0.9300 +5036 6217 0.9730 +5036 6218 0.8430 +5036 6222 0.9680 +5036 6223 0.9130 +5036 6224 0.9640 +5036 6227 0.9060 +5036 6228 0.9410 +5036 6229 0.9050 +5036 6230 0.8970 +5036 6231 0.9220 +5036 6232 0.8980 +5036 6233 0.9420 +5036 6234 0.9080 +5036 6235 0.9420 +5036 6421 0.5680 +5036 6597 0.4260 +5036 6634 0.4030 +5036 6637 0.4500 +5036 6741 0.4720 +5036 6839 0.4090 +5036 6950 0.6130 +5036 7167 0.4330 +5036 7203 0.5570 +5036 7284 0.6200 +5036 7311 0.9630 +5036 7336 0.4250 +5036 7415 0.6600 +5036 7458 0.4960 +5036 7514 0.4760 +5036 7528 0.4590 +5036 7919 0.4650 +5036 8106 0.4990 +5036 8260 0.5270 +5036 8480 0.4840 +5036 8565 0.5030 +5036 8602 0.7010 +5036 8607 0.6180 +5036 8634 0.4190 +5036 8661 0.5810 +5036 8662 0.6060 +5036 8663 0.6100 +5036 8666 0.6230 +5036 8668 0.8220 +5036 8833 0.8500 +5036 8886 0.9350 +5036 8894 0.6500 +5036 9045 0.9930 +5036 9086 0.5330 +5036 9097 0.5280 +5036 9136 0.4280 +5036 9188 0.6230 +5036 9221 0.6490 +5036 9255 0.4790 +5036 9277 0.4260 +5036 9319 0.5150 +5036 9343 0.7360 +5036 9349 0.9960 +5036 9533 0.6420 +5036 9553 0.4050 +5036 9669 0.5060 +5036 9732 0.8070 +5036 9775 0.6560 +5036 9790 0.4730 +5036 9858 0.5600 +5036 9875 0.5100 +5036 9904 0.7780 +5036 9933 0.9190 +5036 10014 0.4010 +5036 10055 0.4310 +5036 10056 0.5590 +5036 10061 0.4230 +5036 10102 0.7020 +5036 10146 0.5050 +5036 10153 0.7620 +5036 10155 0.6950 +5036 10171 0.4270 +5036 10196 0.4260 +5036 10197 0.4100 +5036 10213 0.4540 +5036 10236 0.4370 +5036 10273 0.5780 +5036 10399 0.9500 +5036 10409 0.4040 +5036 10412 0.9860 +5036 10419 0.4120 +5036 10436 0.5870 +5036 10438 0.5370 +5036 10473 0.4680 +5036 10482 0.5920 +5036 10492 0.5750 +5036 10521 0.4510 +5036 10528 0.9110 +5036 10539 0.4330 +5036 10557 0.5680 +5036 10574 0.6870 +5036 10575 0.6980 +5036 10576 0.8200 +5036 10607 0.8310 +5036 10694 0.7260 +5036 10726 0.5680 +5036 10728 0.4360 +5036 10785 0.7000 +5036 10813 0.4250 +5036 10856 0.5940 +5036 10885 0.6420 +5036 10946 0.5880 +5036 10959 0.6250 +5036 10969 0.7950 +5036 10988 0.4300 +5036 10989 0.4300 +5036 11056 0.7540 +5036 11128 0.4530 +5036 11137 0.7260 +5036 11198 0.5040 +5036 11201 0.5450 +5036 11222 0.7290 +5036 11224 0.9990 +5036 11266 0.4120 +5036 11331 0.4110 +5036 11338 0.4280 +5036 22927 0.5590 +5036 22934 0.4490 +5036 22948 0.7400 +5036 22984 0.6940 +5036 23029 0.8890 +5036 23054 0.4210 +5036 23133 0.4250 +5036 23160 0.7330 +5036 23195 0.8280 +5036 23204 0.5870 +5036 23212 0.8740 +5036 23223 0.7720 +5036 23246 0.9290 +5036 23363 0.5130 +5036 23378 0.4180 +5036 23435 0.4810 +5036 23481 0.9940 +5036 23517 0.7340 +5036 23521 0.9920 +5036 23560 0.9960 +5036 23640 0.6030 +5036 25873 0.9910 +5036 25879 0.5760 +5036 25885 0.8760 +5036 25914 0.4320 +5036 25942 0.5070 +5036 25983 0.4010 +5036 26135 0.9290 +5036 26155 0.7880 +5036 26156 0.9890 +5036 26289 0.4430 +5036 26354 0.9630 +5036 26574 0.8340 +5036 26953 0.5920 +5036 26986 0.4280 +5036 26995 0.4450 +5036 27037 0.4750 +5036 27042 0.5230 +5036 27043 0.4570 +5036 27292 0.6710 +5036 27316 0.4050 +5036 27340 0.4020 +5036 27343 0.4290 +5036 28998 0.6680 +5036 29088 0.4320 +5036 29093 0.7180 +5036 29789 0.4640 +5036 29889 0.9930 +5036 29927 0.6870 +5036 29997 0.9800 +5036 50808 0.4440 +5036 51014 0.6710 +5036 51018 0.5360 +5036 51021 0.4230 +5036 51042 0.9650 +5036 51065 0.4810 +5036 51068 0.9980 +5036 51069 0.7500 +5036 51073 0.7130 +5036 51081 0.7170 +5036 51096 0.4930 +5036 51116 0.5980 +5036 51118 0.4350 +5036 51119 0.4090 +5036 51121 0.9110 +5036 51149 0.4950 +5036 51154 0.9880 +5036 51187 0.9860 +5036 51202 0.6110 +5036 51319 0.4780 +5036 51388 0.7110 +5036 51602 0.9310 +5036 51605 0.6120 +5036 51727 0.4480 +5036 51805 0.4060 +5036 54433 0.4160 +5036 54463 0.7850 +5036 54475 0.9780 +5036 54517 0.6570 +5036 54552 0.9610 +5036 54555 0.6140 +5036 54606 0.8760 +5036 54663 0.8890 +5036 54700 0.6580 +5036 54881 0.8870 +5036 54888 0.4460 +5036 54948 0.6110 +5036 54961 0.4020 +5036 55003 0.4550 +5036 55052 0.4220 +5036 55127 0.7890 +5036 55131 0.6110 +5036 55152 0.4620 +5036 55153 0.9810 +5036 55170 0.4150 +5036 55173 0.6350 +5036 55176 0.6470 +5036 55226 0.7360 +5036 55272 0.7380 +5036 55294 0.4050 +5036 55299 0.9290 +5036 55316 0.6440 +5036 55341 0.9950 +5036 55573 0.5350 +5036 55621 0.4050 +5036 55622 0.4040 +5036 55646 0.8610 +5036 55651 0.5800 +5036 55703 0.4860 +5036 55720 0.7130 +5036 55759 0.9050 +5036 55760 0.4460 +5036 55781 0.6290 +5036 55794 0.4440 +5036 55813 0.6840 +5036 56000 0.5820 +5036 56001 0.5820 +5036 56254 0.5740 +5036 56341 0.4060 +5036 56648 0.6290 +5036 56902 0.4320 +5036 56915 0.4450 +5036 56931 0.4160 +5036 56937 0.4060 +5036 56993 0.4240 +5036 57003 0.4390 +5036 57062 0.7790 +5036 57109 0.4490 +5036 57418 0.9860 +5036 57470 0.4150 +5036 57696 0.5420 +5036 60487 0.5610 +5036 63875 0.6370 +5036 63931 0.6490 +5036 64146 0.5590 +5036 64216 0.4680 +5036 64318 0.4630 +5036 64374 0.6000 +5036 64425 0.6210 +5036 64794 0.8530 +5036 64960 0.5700 +5036 64963 0.6650 +5036 64968 0.7260 +5036 64969 0.7290 +5036 64979 0.7380 +5036 64983 0.4170 +5036 65003 0.4520 +5036 65008 0.4970 +5036 65083 0.4530 +5036 65121 0.4090 +5036 65122 0.4090 +5036 79009 0.4660 +5036 79029 0.6110 +5036 79039 0.7000 +5036 79050 0.4570 +5036 79137 0.6390 +5036 79571 0.4210 +5036 79590 0.7410 +5036 79631 0.7300 +5036 79711 0.6150 +5036 79954 0.4920 +5036 79979 0.4700 +5036 80135 0.4930 +5036 80218 0.4790 +5036 83475 0.4840 +5036 83743 0.8100 +5036 83860 0.4200 +5036 84128 0.8100 +5036 84135 0.5860 +5036 84154 0.9870 +5036 84172 0.8030 +5036 84365 0.9780 +5036 84549 0.7540 +5036 84872 0.4600 +5036 84916 0.7080 +5036 84946 0.4440 +5036 85476 0.6160 +5036 90441 0.9770 +5036 91893 0.4380 +5036 92196 0.5070 +5036 92399 0.4240 +5036 92856 0.6230 +5036 115098 0.8400 +5036 115708 0.4420 +5036 116832 0.8020 +5036 116966 0.5810 +5036 117246 0.8930 +5036 122481 0.4430 +5036 124454 0.5250 +5036 126402 0.6540 +5036 134218 0.7180 +5036 140801 0.9910 +5036 142940 0.7050 +5036 143244 0.6470 +5036 146212 0.6630 +5036 158067 0.4430 +5036 161424 0.7120 +5036 162427 0.6390 +5036 165545 0.5070 +5036 166378 0.6090 +5036 200916 0.6920 +5036 219927 0.7010 +5036 221078 0.6660 +5036 221264 0.4430 +5036 221830 0.6730 +5036 254268 0.5080 +5036 283987 0.4720 +5036 285855 0.8860 +5036 343068 0.4090 +5036 343070 0.4090 +5036 345630 0.7230 +5036 347487 0.5900 +5036 387129 0.8290 +5036 390999 0.4090 +5036 391002 0.4090 +5036 400735 0.4090 +5036 400736 0.4090 +5036 440560 0.4090 +5036 440561 0.4090 +5036 441873 0.4090 +5036 641776 0.5100 +5036 643909 0.5100 +5036 645359 0.4090 +5036 653619 0.4090 +5036 728343 0.5820 +5036 728524 0.5100 +5036 728689 0.5230 +5036 729528 0.4090 +5036 100287482 0.5600 +5036 100505478 0.7240 +5036 100526842 0.8460 +5036 100529097 0.5410 +5036 100996746 0.5100 +5036 101929983 0.4090 +5036 105180390 0.5100 +5036 105180391 0.5100 +5036 114483834 0.4780 +5037 5052 0.7290 +5037 5223 0.5920 +5037 5230 0.5250 +5037 5245 0.4550 +5037 5270 0.4360 +5037 5315 0.6440 +5037 5427 0.4390 +5037 5469 0.4720 +5037 5476 0.5620 +5037 5478 0.6010 +5037 5594 0.6700 +5037 5595 0.6280 +5037 5599 0.5640 +5037 5601 0.5450 +5037 5604 0.8050 +5037 5605 0.4980 +5037 5870 0.4930 +5037 5894 0.9880 +5037 5901 0.4250 +5037 5906 0.4780 +5037 5908 0.4780 +5037 6122 0.5710 +5037 6123 0.5240 +5037 6124 0.5200 +5037 6132 0.6530 +5037 6133 0.4940 +5037 6135 0.6700 +5037 6136 0.4610 +5037 6139 0.5980 +5037 6142 0.4440 +5037 6150 0.7800 +5037 6183 0.7800 +5037 6187 0.5910 +5037 6193 0.5550 +5037 6203 0.6470 +5037 6205 0.6050 +5037 6207 0.5490 +5037 6208 0.5500 +5037 6217 0.8180 +5037 6222 0.5900 +5037 6224 0.7920 +5037 6228 0.5560 +5037 6235 0.5420 +5037 6295 0.4700 +5037 6386 0.5360 +5037 6576 0.4910 +5037 6615 0.5270 +5037 6634 0.4240 +5037 6647 0.7200 +5037 6648 0.6650 +5037 6714 0.5610 +5037 6774 0.5680 +5037 7001 0.7150 +5037 7086 0.4760 +5037 7094 0.4110 +5037 7167 0.5620 +5037 7184 0.5070 +5037 7189 0.5790 +5037 7388 0.4080 +5037 7414 0.4230 +5037 7450 0.4380 +5037 7528 0.4940 +5037 7529 0.7560 +5037 7531 0.5170 +5037 7532 0.4820 +5037 7534 0.4920 +5037 7818 0.8300 +5037 8087 0.4130 +5037 8091 0.4050 +5037 8546 0.4020 +5037 8624 0.5490 +5037 8801 0.4130 +5037 8805 0.5280 +5037 8826 0.4450 +5037 8844 0.6700 +5037 9061 0.4350 +5037 9349 0.5840 +5037 9377 0.4610 +5037 9444 0.4150 +5037 9553 0.7720 +5037 9588 0.6170 +5037 9715 0.4110 +5037 9801 0.8350 +5037 9858 0.5780 +5037 10018 0.4530 +5037 10142 0.4240 +5037 10162 0.4960 +5037 10256 0.4730 +5037 10399 0.5060 +5037 10473 0.4440 +5037 10533 0.4450 +5037 10827 0.4030 +5037 10935 0.4580 +5037 10964 0.4920 +5037 11044 0.4010 +5037 11222 0.6900 +5037 11315 0.5740 +5037 22866 0.4080 +5037 22906 0.4030 +5037 23107 0.4710 +5037 23164 0.4590 +5037 23193 0.4860 +5037 23405 0.5810 +5037 23521 0.7840 +5037 23640 0.4980 +5037 23732 0.4990 +5037 25824 0.4230 +5037 26275 0.6620 +5037 26589 0.8190 +5037 27044 0.4410 +5037 28998 0.6320 +5037 29093 0.7830 +5037 29102 0.5840 +5037 50814 0.4630 +5037 51021 0.7950 +5037 51023 0.5350 +5037 51058 0.4080 +5037 51069 0.6510 +5037 51073 0.6470 +5037 51081 0.5300 +5037 51116 0.5970 +5037 51149 0.5330 +5037 51263 0.5830 +5037 51264 0.8190 +5037 51727 0.5020 +5037 54518 0.4510 +5037 54845 0.4080 +5037 54948 0.8080 +5037 55168 0.5380 +5037 55173 0.8160 +5037 55272 0.5340 +5037 55316 0.5410 +5037 55750 0.4520 +5037 56829 0.4020 +5037 57129 0.7550 +5037 60488 0.8050 +5037 63875 0.7860 +5037 63931 0.7820 +5037 63932 0.4400 +5037 64083 0.4620 +5037 64374 0.5050 +5037 64432 0.6290 +5037 64960 0.7990 +5037 64963 0.7770 +5037 64965 0.7830 +5037 64968 0.7760 +5037 64969 0.8050 +5037 64975 0.7850 +5037 64976 0.8510 +5037 64979 0.7980 +5037 64981 0.7990 +5037 64983 0.7930 +5037 65003 0.5740 +5037 65080 0.6370 +5037 80146 0.4070 +5037 80212 0.4200 +5037 84545 0.7810 +5037 84687 0.4130 +5037 84883 0.5180 +5037 90313 0.5500 +5037 90624 0.4990 +5037 114781 0.4920 +5037 116541 0.5590 +5037 123207 0.4460 +5037 124995 0.6640 +5037 126402 0.5170 +5037 140801 0.4890 +5037 149478 0.4620 +5037 161742 0.4970 +5037 345051 0.4460 +5037 347487 0.4880 +5037 100287482 0.4880 +5037 100526842 0.5440 +5042 5161 0.4500 +5042 5500 0.4520 +5042 6240 0.5330 +5042 6311 0.6300 +5042 6950 0.4970 +5042 7178 0.4090 +5042 7317 0.4780 +5042 7415 0.4910 +5042 7529 0.4720 +5042 7681 0.5460 +5042 8106 0.8810 +5042 8661 0.5630 +5042 8663 0.4120 +5042 8664 0.4690 +5042 8668 0.4320 +5042 8672 0.6560 +5042 9775 0.4720 +5042 9924 0.7160 +5042 10605 0.9800 +5042 10914 0.4650 +5042 11198 0.4260 +5042 11273 0.5520 +5042 22916 0.4560 +5042 23144 0.4430 +5042 23424 0.5150 +5042 25909 0.4070 +5042 26065 0.4160 +5042 26155 0.5380 +5042 26523 0.4900 +5042 26986 0.5380 +5042 27257 0.5010 +5042 27327 0.6100 +5042 51247 0.5220 +5042 51574 0.4020 +5042 54464 0.4520 +5042 64318 0.4650 +5042 79882 0.4320 +5042 112703 0.4520 +5042 132320 0.4010 +5042 149986 0.4290 +5042 167227 0.4570 +5042 200010 0.4020 +5042 253314 0.4500 +5042 255967 0.6260 +5042 284131 0.4280 +5042 317649 0.4560 +5042 728378 0.4800 +5045 5046 0.6600 +5045 5054 0.4030 +5045 5104 0.4260 +5045 5154 0.7920 +5045 5155 0.8100 +5045 5265 0.5110 +5045 5271 0.5240 +5045 5327 0.4820 +5045 5328 0.4200 +5045 5340 0.5700 +5045 5499 0.6030 +5045 5542 0.4170 +5045 5545 0.4330 +5045 5595 0.4130 +5045 5624 0.8300 +5045 5626 0.5340 +5045 5627 0.7770 +5045 5645 0.4830 +5045 5652 0.7790 +5045 5972 0.6670 +5045 6272 0.7430 +5045 6337 0.4570 +5045 6338 0.5220 +5045 6340 0.4730 +5045 6347 0.4180 +5045 6447 0.4020 +5045 6510 0.4380 +5045 6643 0.4160 +5045 6653 0.6370 +5045 6662 0.5220 +5045 6736 0.4980 +5045 6768 0.7420 +5045 6774 0.4240 +5045 6868 0.9390 +5045 7037 0.4680 +5045 7040 0.8900 +5045 7042 0.6130 +5045 7043 0.4230 +5045 7057 0.6910 +5045 7076 0.6450 +5045 7077 0.4860 +5045 7078 0.4030 +5045 7113 0.8990 +5045 7124 0.7300 +5045 7306 0.4030 +5045 7450 0.5200 +5045 7475 0.5270 +5045 7783 0.4320 +5045 7784 0.6010 +5045 7837 0.4490 +5045 7869 0.4120 +5045 8038 0.4760 +5045 8074 0.5110 +5045 8128 0.4110 +5045 8325 0.4180 +5045 8411 0.4610 +5045 8483 0.6110 +5045 8510 0.6550 +5045 8549 0.5520 +5045 8720 0.6420 +5045 8728 0.4130 +5045 8742 0.4430 +5045 8751 0.5270 +5045 8754 0.4840 +5045 8829 0.8080 +5045 8858 0.7650 +5045 9172 0.6080 +5045 9407 0.6710 +5045 9445 0.4200 +5045 9507 0.7550 +5045 9508 0.7640 +5045 9509 0.5260 +5045 9510 0.7760 +5045 9567 0.6830 +5045 9622 0.4040 +5045 9718 0.4120 +5045 9794 0.5570 +5045 10044 0.5790 +5045 10045 0.6290 +5045 10159 0.4500 +5045 10232 0.4560 +5045 10332 0.6070 +5045 10410 0.4580 +5045 10618 0.8170 +5045 10673 0.5030 +5045 10699 0.6320 +5045 10893 0.6520 +5045 11005 0.4220 +5045 11012 0.4440 +5045 11093 0.4110 +5045 11096 0.6390 +5045 11117 0.4970 +5045 11173 0.7490 +5045 11174 0.7140 +5045 22917 0.4170 +5045 22943 0.5430 +5045 23163 0.4090 +5045 23213 0.5210 +5045 23241 0.5040 +5045 23385 0.4340 +5045 23621 0.8700 +5045 25818 0.4410 +5045 25825 0.4090 +5045 26088 0.4490 +5045 27121 0.6820 +5045 27122 0.6190 +5045 27123 0.5890 +5045 27151 0.5510 +5045 27299 0.4700 +5045 28514 0.4390 +5045 29907 0.4640 +5045 29927 0.4570 +5045 30816 0.7560 +5045 30835 0.5200 +5045 51172 0.5540 +5045 51257 0.5140 +5045 51284 0.4020 +5045 51593 0.4200 +5045 53373 0.4130 +5045 55026 0.4650 +5045 55534 0.5500 +5045 55690 0.9640 +5045 55851 0.4080 +5045 55959 0.6320 +5045 56649 0.6850 +5045 56975 0.4220 +5045 56999 0.6430 +5045 57393 0.5110 +5045 57817 0.4830 +5045 57829 0.4800 +5045 59272 0.9040 +5045 64285 0.4160 +5045 64386 0.7890 +5045 79148 0.8180 +5045 79651 0.4110 +5045 79890 0.4150 +5045 80070 0.6640 +5045 80144 0.4480 +5045 81618 0.5890 +5045 81792 0.7110 +5045 81794 0.4070 +5045 83999 0.4530 +5045 84000 0.5230 +5045 84133 0.6560 +5045 84168 0.7500 +5045 84441 0.5530 +5045 84467 0.6890 +5045 84570 0.8530 +5045 84870 0.7390 +5045 91522 0.8920 +5045 115362 0.4690 +5045 118429 0.6740 +5045 118856 0.6100 +5045 135228 0.6100 +5045 136227 0.7550 +5045 137902 0.4490 +5045 140766 0.5960 +5045 148113 0.6680 +5045 148738 0.4790 +5045 164656 0.5200 +5045 170689 0.5420 +5045 219931 0.4020 +5045 255738 0.6860 +5045 284654 0.6730 +5045 338328 0.5070 +5045 339967 0.6180 +5045 340024 0.4500 +5045 340419 0.5270 +5045 343637 0.8030 +5045 400668 0.5200 +5045 405754 0.5160 +5045 440387 0.4780 +5045 653247 0.4880 +5046 5652 0.4720 +5046 5745 0.4790 +5046 6447 0.5320 +5046 6627 0.4770 +5046 6720 0.4400 +5046 6768 0.5480 +5046 6910 0.4620 +5046 8320 0.4950 +5046 8720 0.8340 +5046 9388 0.4410 +5046 9601 0.4780 +5046 10525 0.5470 +5046 10637 0.4940 +5046 10699 0.6200 +5046 10923 0.4530 +5046 11123 0.4180 +5046 22926 0.4480 +5046 23581 0.4400 +5046 23753 0.4690 +5046 27329 0.4120 +5046 80213 0.4610 +5046 81621 0.4100 +5046 84866 0.4200 +5046 124093 0.4070 +5046 255738 0.6000 +5046 338328 0.5200 +5046 347730 0.5080 +5047 5730 0.7160 +5047 5818 0.5130 +5047 5819 0.4510 +5047 5858 0.4520 +5047 6696 0.5810 +5047 6907 0.4010 +5047 7048 0.4970 +5047 7579 0.4030 +5047 8034 0.5760 +5047 8200 0.9060 +5047 8328 0.4020 +5047 8553 0.4030 +5047 8764 0.4570 +5047 8909 0.5770 +5047 9241 0.7100 +5047 9518 0.5840 +5047 10204 0.4210 +5047 10220 0.5730 +5047 23593 0.4460 +5047 27036 0.4710 +5047 29124 0.4930 +5047 29991 0.4780 +5047 55245 0.4370 +5047 57817 0.4290 +5047 65983 0.7410 +5047 79699 0.4320 +5047 81577 0.4120 +5047 117166 0.5110 +5047 124857 0.4720 +5047 151449 0.8750 +5047 392255 0.8420 +5047 392399 0.4160 +5047 440590 0.4360 +5048 5049 0.9990 +5048 5050 0.9980 +5048 5051 0.9830 +5048 5142 0.4260 +5048 5306 0.8900 +5048 5319 0.6610 +5048 5320 0.6730 +5048 5321 0.6760 +5048 5322 0.6730 +5048 5347 0.8170 +5048 5500 0.4610 +5048 5649 0.7230 +5048 5869 0.4940 +5048 5870 0.5970 +5048 5888 0.4070 +5048 6249 0.9290 +5048 6599 0.4050 +5048 6790 0.6060 +5048 6843 0.4240 +5048 6949 0.4590 +5048 6993 0.5080 +5048 7436 0.4330 +5048 7529 0.6300 +5048 7531 0.9620 +5048 7532 0.5260 +5048 7533 0.4300 +5048 7534 0.4370 +5048 7846 0.8600 +5048 7874 0.6900 +5048 7941 0.9060 +5048 8398 0.6700 +5048 8399 0.6710 +5048 8481 0.4090 +5048 8578 0.7540 +5048 8605 0.6860 +5048 8632 0.5940 +5048 8655 0.9410 +5048 8681 0.6500 +5048 8701 0.5940 +5048 8766 0.6020 +5048 8851 0.5840 +5048 9133 0.4530 +5048 9184 0.5550 +5048 9229 0.4340 +5048 9371 0.4180 +5048 9448 0.5260 +5048 9585 0.4150 +5048 9700 0.5590 +5048 9793 0.6460 +5048 9928 0.4530 +5048 10048 0.5200 +5048 10121 0.8750 +5048 10133 0.5090 +5048 10206 0.4370 +5048 10300 0.4130 +5048 10390 0.9010 +5048 10540 0.9640 +5048 10565 0.4280 +5048 10671 0.6010 +5048 10726 0.9960 +5048 10735 0.4110 +5048 10749 0.4730 +5048 10763 0.4290 +5048 10982 0.4940 +5048 11004 0.4190 +5048 11104 0.6010 +5048 11127 0.4280 +5048 11145 0.6500 +5048 11258 0.8470 +5048 22919 0.6660 +5048 22924 0.4740 +5048 22930 0.6460 +5048 22931 0.5490 +5048 22981 0.4080 +5048 23032 0.4300 +5048 23043 0.5870 +5048 23046 0.4720 +5048 23095 0.5740 +5048 23122 0.4760 +5048 23299 0.7680 +5048 23332 0.6700 +5048 23354 0.5010 +5048 23386 0.6840 +5048 23392 0.4100 +5048 25782 0.6140 +5048 25981 0.4160 +5048 26054 0.4680 +5048 26279 0.6900 +5048 27185 0.9540 +5048 27436 0.5340 +5048 29928 0.6790 +5048 30814 0.6920 +5048 50487 0.6500 +5048 51143 0.9250 +5048 51164 0.7430 +5048 51560 0.5520 +5048 54801 0.5200 +5048 54820 0.9940 +5048 54930 0.4990 +5048 54947 0.9000 +5048 54994 0.6570 +5048 55083 0.4170 +5048 55142 0.5040 +5048 55559 0.4990 +5048 55582 0.4710 +5048 55704 0.4370 +5048 55860 0.7380 +5048 56171 0.4170 +5048 56994 0.9110 +5048 57142 0.4370 +5048 57526 0.5260 +5048 57576 0.5750 +5048 64600 0.6920 +5048 64795 0.7650 +5048 64837 0.4060 +5048 79441 0.5040 +5048 79648 0.4950 +5048 79659 0.6100 +5048 79866 0.4990 +5048 79888 0.9010 +5048 80204 0.6410 +5048 81565 0.9990 +5048 81579 0.6640 +5048 81930 0.6750 +5048 84504 0.4240 +5048 84516 0.6160 +5048 84647 0.6860 +5048 85358 0.4650 +5048 93323 0.4990 +5048 93661 0.5750 +5048 115106 0.4990 +5048 117177 0.5040 +5048 123745 0.6600 +5048 124602 0.4710 +5048 127602 0.4540 +5048 134492 0.6710 +5048 140735 0.7750 +5048 146754 0.5940 +5048 146909 0.4710 +5048 151056 0.6600 +5048 170302 0.5670 +5048 196385 0.5940 +5048 254531 0.9000 +5048 255189 0.6940 +5048 255758 0.4160 +5048 283748 0.6770 +5048 286753 0.7760 +5048 374654 0.5170 +5048 391013 0.6510 +5048 727857 0.7570 +5048 728642 0.5430 +5048 100137049 0.6590 +5049 5050 0.9980 +5049 5051 0.9440 +5049 5173 0.4260 +5049 5319 0.6980 +5049 5320 0.6930 +5049 5321 0.7010 +5049 5322 0.7100 +5049 5550 0.4090 +5049 6790 0.4300 +5049 6843 0.5100 +5049 6907 0.4430 +5049 6949 0.4290 +5049 7436 0.5150 +5049 7941 0.9290 +5049 8218 0.5980 +5049 8398 0.6890 +5049 8399 0.7160 +5049 8481 0.4450 +5049 8605 0.7170 +5049 8624 0.4840 +5049 8681 0.6740 +5049 9221 0.5190 +5049 9926 0.4210 +5049 10206 0.5550 +5049 10390 0.9000 +5049 10741 0.4520 +5049 11104 0.5490 +5049 11145 0.6590 +5049 22919 0.4170 +5049 22974 0.4250 +5049 23152 0.4760 +5049 26279 0.7130 +5049 27185 0.5490 +5049 30814 0.7230 +5049 50487 0.6660 +5049 51104 0.4510 +5049 51400 0.4490 +5049 54820 0.7730 +5049 54947 0.9090 +5049 56994 0.9000 +5049 64600 0.7330 +5049 79888 0.9100 +5049 81565 0.8160 +5049 81579 0.6900 +5049 84647 0.7230 +5049 123745 0.6880 +5049 133619 0.4730 +5049 143384 0.4460 +5049 151056 0.6700 +5049 254531 0.9020 +5049 255189 0.6890 +5049 283150 0.5060 +5049 283742 0.4490 +5049 283748 0.7060 +5049 285148 0.4280 +5049 391013 0.6700 +5049 100137049 0.6880 +5050 5051 0.9400 +5050 5319 0.6640 +5050 5320 0.6680 +5050 5321 0.6830 +5050 5322 0.6610 +5050 5425 0.4140 +5050 5649 0.4740 +5050 6843 0.6400 +5050 7436 0.5120 +5050 7755 0.4440 +5050 7941 0.9240 +5050 8398 0.6830 +5050 8399 0.6850 +5050 8605 0.6710 +5050 8681 0.6740 +5050 10390 0.9010 +5050 10567 0.5390 +5050 11145 0.6500 +5050 22827 0.5160 +5050 23152 0.4620 +5050 26279 0.6670 +5050 30814 0.6730 +5050 50487 0.6520 +5050 50640 0.4030 +5050 51230 0.4110 +5050 54820 0.6530 +5050 54947 0.9190 +5050 56994 0.9000 +5050 57552 0.4030 +5050 64600 0.6720 +5050 64763 0.5290 +5050 79888 0.9310 +5050 81579 0.6500 +5050 84518 0.4790 +5050 84647 0.6640 +5050 84708 0.4500 +5050 91782 0.6540 +5050 92595 0.4900 +5050 123745 0.6750 +5050 151056 0.6600 +5050 221545 0.5160 +5050 254531 0.9030 +5050 255189 0.7160 +5050 283748 0.6740 +5050 284338 0.6310 +5050 284339 0.5880 +5050 391013 0.6580 +5050 100137049 0.6740 +5051 5319 0.7160 +5051 5320 0.7180 +5051 5321 0.7320 +5051 5322 0.7180 +5051 7673 0.5100 +5051 7941 0.9100 +5051 8228 0.4730 +5051 8398 0.7660 +5051 8399 0.7350 +5051 8605 0.7350 +5051 8681 0.7050 +5051 8780 0.4120 +5051 10390 0.9230 +5051 10741 0.4140 +5051 11145 0.7180 +5051 23659 0.4380 +5051 26279 0.7120 +5051 30814 0.7310 +5051 50487 0.6750 +5051 54947 0.9320 +5051 56994 0.9130 +5051 57406 0.5390 +5051 57552 0.5140 +5051 64600 0.7400 +5051 79888 0.9190 +5051 81579 0.7000 +5051 83451 0.6950 +5051 84647 0.7400 +5051 84945 0.5360 +5051 123745 0.7210 +5051 137872 0.5920 +5051 151056 0.7000 +5051 196264 0.4330 +5051 254531 0.9090 +5051 255189 0.7160 +5051 283748 0.7510 +5051 339965 0.4580 +5051 391013 0.6500 +5051 100137049 0.7110 +5052 5071 0.4300 +5052 5216 0.4290 +5052 5223 0.5320 +5052 5226 0.4610 +5052 5230 0.5480 +5052 5232 0.4260 +5052 5245 0.5510 +5052 5315 0.4390 +5052 5478 0.6880 +5052 5621 0.4420 +5052 5663 0.5120 +5052 5682 0.4710 +5052 5684 0.4220 +5052 5685 0.4680 +5052 5686 0.4210 +5052 5687 0.5200 +5052 5689 0.4620 +5052 5690 0.6170 +5052 5693 0.5400 +5052 5694 0.5980 +5052 5695 0.5710 +5052 5728 0.7810 +5052 5770 0.4830 +5052 5870 0.4390 +5052 5888 0.4190 +5052 5901 0.4030 +5052 6188 0.4130 +5052 6390 0.4270 +5052 6391 0.4150 +5052 6415 0.7500 +5052 6647 0.8760 +5052 6648 0.7450 +5052 6649 0.5630 +5052 6821 0.5090 +5052 6888 0.7830 +5052 6950 0.4290 +5052 7001 0.8730 +5052 7086 0.5630 +5052 7097 0.4690 +5052 7099 0.6930 +5052 7124 0.5540 +5052 7157 0.7230 +5052 7167 0.6720 +5052 7178 0.5030 +5052 7184 0.4500 +5052 7203 0.4750 +5052 7284 0.4660 +5052 7295 0.9900 +5052 7296 0.7950 +5052 7385 0.4050 +5052 7386 0.4470 +5052 7415 0.4040 +5052 7416 0.6690 +5052 7417 0.4270 +5052 7529 0.4120 +5052 7531 0.4230 +5052 7532 0.5960 +5052 7533 0.6040 +5052 7534 0.6480 +5052 7837 0.4440 +5052 8218 0.4560 +5052 8277 0.4060 +5052 8658 0.4690 +5052 8668 0.5770 +5052 8851 0.7500 +5052 9040 0.4820 +5052 9352 0.6500 +5052 9401 0.4030 +5052 9446 0.5720 +5052 9563 0.5550 +5052 9588 0.5130 +5052 9601 0.4500 +5052 9636 0.4230 +5052 9641 0.4960 +5052 9817 0.5950 +5052 10130 0.5330 +5052 10327 0.4690 +5052 10399 0.4730 +5052 10449 0.4670 +5052 10476 0.5210 +5052 10539 0.5800 +5052 10549 0.6350 +5052 10551 0.5190 +5052 10574 0.4270 +5052 10575 0.4260 +5052 10576 0.5140 +5052 10587 0.6050 +5052 10628 0.7190 +5052 10935 0.6890 +5052 11315 0.7170 +5052 23071 0.5950 +5052 25824 0.9810 +5052 25828 0.9280 +5052 25962 0.5550 +5052 25974 0.4390 +5052 27244 0.8180 +5052 27306 0.4250 +5052 29110 0.5020 +5052 50507 0.4010 +5052 51022 0.5470 +5052 51314 0.5830 +5052 51377 0.5360 +5052 51573 0.4310 +5052 51714 0.4450 +5052 51727 0.4570 +5052 54205 0.4700 +5052 54431 0.4390 +5052 54575 0.4350 +5052 54576 0.4360 +5052 54577 0.4360 +5052 54578 0.4590 +5052 54657 0.4360 +5052 54658 0.4390 +5052 54857 0.5410 +5052 55367 0.4910 +5052 56915 0.6080 +5052 64843 0.5030 +5052 80273 0.4720 +5052 80351 0.4420 +5052 81544 0.8590 +5052 81567 0.4370 +5052 81857 0.4300 +5052 83667 0.9240 +5052 84076 0.4200 +5052 84203 0.5760 +5052 84299 0.6540 +5052 84790 0.4250 +5052 94031 0.4610 +5052 94033 0.4060 +5052 114112 0.5210 +5052 134266 0.4090 +5052 137902 0.4250 +5052 140809 0.9990 +5052 143686 0.7100 +5052 255220 0.5070 +5052 257202 0.7680 +5052 347736 0.4260 +5052 373156 0.4280 +5052 493869 0.7850 +5053 5092 0.9920 +5053 5265 0.5190 +5053 5319 0.4270 +5053 5340 0.4230 +5053 5409 0.6790 +5053 5624 0.4140 +5053 5805 0.7060 +5053 5860 0.9910 +5053 6514 0.4650 +5053 6554 0.5380 +5053 6555 0.4350 +5053 6579 0.5410 +5053 6697 0.9810 +5053 6898 0.9670 +5053 6915 0.5910 +5053 6999 0.4910 +5053 7054 0.8260 +5053 7173 0.8220 +5053 7276 0.4170 +5053 7299 0.9380 +5053 8431 0.5200 +5053 8564 0.4530 +5053 8942 0.4270 +5053 9104 0.6360 +5053 9971 0.5320 +5053 11001 0.4210 +5053 23498 0.4330 +5053 55163 0.4200 +5053 56521 0.6030 +5053 57016 0.9080 +5053 84105 0.9820 +5053 84842 0.4230 +5053 126206 0.5000 +5053 137362 0.9400 +5053 200895 0.9250 +5053 259307 0.9040 +5053 389434 0.4330 +5053 392636 0.5230 +5054 5055 0.9580 +5054 5104 0.6890 +5054 5155 0.4140 +5054 5159 0.4050 +5054 5175 0.5270 +5054 5176 0.4260 +5054 5196 0.5070 +5054 5197 0.4460 +5054 5228 0.4610 +5054 5267 0.4670 +5054 5269 0.6160 +5054 5270 0.5030 +5054 5327 0.9990 +5054 5328 0.9990 +5054 5329 0.9940 +5054 5340 0.9890 +5054 5345 0.4690 +5054 5351 0.4380 +5054 5444 0.4060 +5054 5465 0.4550 +5054 5468 0.7320 +5054 5473 0.4470 +5054 5595 0.5060 +5054 5604 0.5500 +5054 5617 0.5210 +5054 5624 0.9430 +5054 5627 0.4750 +5054 5728 0.4070 +5054 5743 0.8150 +5054 5806 0.5470 +5054 5919 0.4550 +5054 5950 0.5140 +5054 5972 0.7800 +5054 6256 0.4480 +5054 6275 0.4090 +5054 6279 0.4470 +5054 6288 0.5420 +5054 6289 0.5340 +5054 6347 0.9180 +5054 6348 0.4840 +5054 6351 0.4220 +5054 6356 0.5840 +5054 6362 0.5160 +5054 6374 0.4250 +5054 6387 0.5290 +5054 6401 0.6920 +5054 6403 0.6820 +5054 6462 0.4400 +5054 6513 0.6670 +5054 6515 0.4230 +5054 6517 0.6250 +5054 6591 0.5230 +5054 6596 0.4710 +5054 6615 0.5360 +5054 6653 0.6230 +5054 6657 0.4980 +5054 6667 0.4890 +5054 6678 0.4170 +5054 6696 0.5630 +5054 6714 0.4460 +5054 6774 0.5170 +5054 6818 0.4800 +5054 6876 0.4790 +5054 7035 0.7180 +5054 7039 0.4170 +5054 7040 0.7980 +5054 7042 0.7740 +5054 7043 0.5150 +5054 7045 0.6890 +5054 7046 0.6230 +5054 7048 0.5990 +5054 7050 0.5320 +5054 7052 0.4100 +5054 7056 0.8460 +5054 7057 0.8190 +5054 7058 0.5470 +5054 7076 0.8400 +5054 7077 0.6080 +5054 7078 0.5160 +5054 7099 0.7210 +5054 7124 0.7640 +5054 7132 0.4640 +5054 7157 0.5930 +5054 7276 0.5040 +5054 7392 0.4100 +5054 7412 0.7190 +5054 7424 0.4890 +5054 7431 0.4680 +5054 7436 0.8900 +5054 7448 0.9990 +5054 7450 0.8170 +5054 7791 0.4660 +5054 7837 0.5530 +5054 7980 0.4780 +5054 8061 0.4820 +5054 8576 0.4240 +5054 8817 0.4950 +5054 8822 0.4860 +5054 8823 0.4770 +5054 8862 0.4540 +5054 9213 0.5040 +5054 9365 0.4160 +5054 9370 0.7890 +5054 9446 0.4020 +5054 9518 0.6290 +5054 9575 0.8030 +5054 9622 0.4510 +5054 10135 0.6150 +5054 10544 0.5920 +5054 10631 0.6740 +5054 10891 0.4050 +5054 11093 0.5170 +5054 11202 0.5950 +5054 22915 0.4840 +5054 23411 0.4570 +5054 25937 0.6490 +5054 26135 0.7980 +5054 26281 0.4720 +5054 26291 0.4450 +5054 27006 0.4860 +5054 27122 0.5270 +5054 28983 0.6290 +5054 30846 0.4500 +5054 50507 0.4810 +5054 51129 0.4960 +5054 51330 0.4700 +5054 51738 0.4710 +5054 55600 0.4460 +5054 56729 0.7740 +5054 56938 0.8070 +5054 59272 0.5490 +5054 60436 0.4360 +5054 60676 0.4430 +5054 65124 0.4870 +5054 79365 0.4180 +5054 80781 0.4380 +5054 84666 0.7670 +5054 84925 0.4100 +5054 137902 0.5200 +5054 284293 0.4910 +5054 440387 0.5320 +5054 445329 0.4750 +5054 493869 0.4410 +5054 728378 0.5060 +5055 5269 0.6520 +5055 5271 0.6540 +5055 5327 0.9890 +5055 5328 0.9860 +5055 5329 0.9380 +5055 5340 0.9660 +5055 5345 0.4310 +5055 5624 0.9160 +5055 5689 0.6650 +5055 5694 0.4200 +5055 5743 0.4610 +5055 5925 0.5100 +5055 6347 0.4230 +5055 6574 0.5890 +5055 6775 0.7620 +5055 7035 0.4760 +5055 7056 0.4460 +5055 7057 0.4330 +5055 7076 0.4230 +5055 7099 0.4120 +5055 7124 0.5200 +5055 7448 0.6520 +5055 7538 0.4220 +5055 8710 0.4790 +5055 9635 0.4190 +5055 10628 0.4470 +5055 10631 0.8530 +5055 29880 0.4790 +5055 259307 0.4460 +5058 5062 0.9520 +5058 5063 0.9590 +5058 5093 0.6440 +5058 5236 0.5610 +5058 5290 0.5190 +5058 5291 0.4330 +5058 5295 0.5000 +5058 5296 0.5070 +5058 5335 0.7070 +5058 5336 0.5460 +5058 5338 0.4370 +5058 5361 0.5200 +5058 5362 0.5200 +5058 5500 0.5600 +5058 5515 0.4520 +5058 5596 0.6290 +5058 5597 0.6070 +5058 5599 0.6030 +5058 5600 0.6010 +5058 5603 0.5900 +5058 5604 0.9290 +5058 5605 0.9210 +5058 5609 0.5220 +5058 5829 0.6000 +5058 5877 0.6040 +5058 5879 0.9990 +5058 5880 0.9670 +5058 5881 0.9960 +5058 5894 0.9570 +5058 5921 0.5680 +5058 6016 0.4500 +5058 6091 0.9120 +5058 6092 0.9100 +5058 6093 0.5300 +5058 6242 0.4850 +5058 6300 0.5930 +5058 6416 0.5700 +5058 6464 0.5670 +5058 6510 0.4050 +5058 6654 0.6470 +5058 6655 0.6120 +5058 6709 0.5020 +5058 6711 0.4440 +5058 6714 0.6190 +5058 7037 0.4550 +5058 7046 0.4330 +5058 7074 0.9450 +5058 7112 0.4300 +5058 7170 0.4470 +5058 7171 0.4390 +5058 7409 0.6620 +5058 7410 0.6810 +5058 7415 0.4220 +5058 7454 0.6800 +5058 7535 0.4450 +5058 7879 0.4590 +5058 8027 0.5380 +5058 8239 0.4300 +5058 8440 0.9910 +5058 8476 0.5080 +5058 8503 0.4500 +5058 8655 0.7110 +5058 8773 0.4240 +5058 8826 0.5800 +5058 8829 0.5140 +5058 8874 0.9950 +5058 8976 0.6680 +5058 8997 0.6190 +5058 9020 0.9170 +5058 9146 0.5760 +5058 9181 0.4780 +5058 9231 0.4250 +5058 9322 0.4970 +5058 9341 0.4330 +5058 9353 0.5380 +5058 9402 0.5440 +5058 9459 0.9950 +5058 9475 0.5280 +5058 9497 0.4010 +5058 9528 0.4390 +5058 9578 0.4640 +5058 9644 0.4640 +5058 9815 0.9520 +5058 9844 0.4400 +5058 10006 0.4940 +5058 10095 0.6940 +5058 10152 0.4320 +5058 10163 0.5220 +5058 10254 0.5400 +5058 10298 0.4870 +5058 10371 0.5190 +5058 10376 0.4590 +5058 10398 0.6100 +5058 10435 0.4170 +5058 10451 0.5640 +5058 10458 0.4370 +5058 10519 0.4590 +5058 10602 0.4150 +5058 10627 0.5730 +5058 10681 0.6130 +5058 10746 0.9220 +5058 10787 0.4270 +5058 11060 0.4130 +5058 11180 0.4600 +5058 11188 0.5040 +5058 23048 0.4630 +5058 23075 0.4160 +5058 23191 0.4950 +5058 23219 0.4720 +5058 23380 0.5950 +5058 23433 0.8080 +5058 23513 0.5580 +5058 25894 0.4130 +5058 26030 0.4130 +5058 26050 0.4400 +5058 27040 0.5700 +5058 28964 0.9350 +5058 50618 0.4890 +5058 50855 0.4820 +5058 51347 0.4070 +5058 51764 0.4990 +5058 54331 0.5190 +5058 54874 0.4520 +5058 55003 0.5070 +5058 55004 0.4240 +5058 55075 0.4160 +5058 55558 0.5200 +5058 55789 0.4010 +5058 55845 0.4050 +5058 55914 0.4660 +5058 55968 0.4180 +5058 55970 0.9000 +5058 55971 0.4100 +5058 56924 0.4740 +5058 57144 0.4580 +5058 57381 0.9050 +5058 57473 0.4370 +5058 57514 0.4140 +5058 57630 0.4150 +5058 58480 0.9370 +5058 59345 0.6120 +5058 79784 0.5030 +5058 80895 0.4100 +5058 81624 0.4560 +5058 81839 0.4060 +5058 84446 0.4230 +5058 84612 0.4190 +5058 85366 0.6550 +5058 91584 0.5200 +5058 91807 0.8010 +5058 94134 0.4840 +5058 94235 0.4990 +5058 103910 0.6550 +5058 114885 0.4220 +5058 115703 0.4130 +5058 128239 0.4590 +5058 133482 0.7910 +5058 143098 0.4480 +5058 144402 0.4420 +5058 147179 0.4460 +5058 157769 0.4430 +5058 171177 0.7610 +5058 200894 0.4230 +5058 253959 0.4050 +5058 257106 0.4140 +5058 285590 0.4170 +5058 340156 0.6860 +5058 653361 0.4680 +5062 5063 0.9360 +5062 5290 0.5320 +5062 5295 0.4820 +5062 5296 0.4540 +5062 5335 0.5760 +5062 5336 0.5160 +5062 5337 0.4340 +5062 5338 0.4310 +5062 5361 0.5200 +5062 5362 0.5200 +5062 5494 0.4140 +5062 5500 0.6970 +5062 5594 0.5400 +5062 5595 0.4110 +5062 5596 0.6290 +5062 5597 0.6060 +5062 5600 0.5840 +5062 5603 0.6100 +5062 5604 0.9250 +5062 5609 0.5200 +5062 5682 0.5480 +5062 5683 0.5300 +5062 5684 0.5350 +5062 5685 0.5380 +5062 5686 0.5410 +5062 5687 0.5340 +5062 5688 0.5450 +5062 5689 0.5050 +5062 5690 0.4960 +5062 5691 0.4920 +5062 5692 0.4540 +5062 5693 0.4530 +5062 5694 0.4490 +5062 5695 0.5030 +5062 5696 0.4330 +5062 5698 0.4090 +5062 5699 0.4330 +5062 5700 0.4430 +5062 5701 0.4270 +5062 5702 0.4550 +5062 5704 0.4460 +5062 5705 0.4350 +5062 5706 0.4460 +5062 5707 0.5010 +5062 5708 0.4420 +5062 5709 0.4310 +5062 5710 0.5670 +5062 5711 0.4160 +5062 5713 0.4480 +5062 5714 0.4520 +5062 5715 0.4690 +5062 5716 0.4460 +5062 5717 0.4800 +5062 5718 0.4640 +5062 5719 0.4340 +5062 5720 0.5270 +5062 5721 0.4360 +5062 5829 0.6130 +5062 5879 0.9830 +5062 5880 0.9840 +5062 5881 0.9400 +5062 5894 0.9620 +5062 6091 0.9110 +5062 6092 0.9100 +5062 6093 0.5330 +5062 6233 0.5490 +5062 6300 0.6070 +5062 6416 0.5810 +5062 6426 0.4180 +5062 6464 0.5610 +5062 6472 0.4050 +5062 6510 0.4030 +5062 6654 0.6260 +5062 6655 0.5900 +5062 6657 0.4560 +5062 6709 0.4860 +5062 6711 0.4180 +5062 6714 0.6680 +5062 6775 0.7500 +5062 7037 0.4460 +5062 7112 0.4840 +5062 7170 0.4700 +5062 7171 0.4630 +5062 7311 0.5170 +5062 7314 0.5310 +5062 7316 0.5310 +5062 7409 0.7480 +5062 7410 0.5590 +5062 7415 0.4560 +5062 7454 0.5500 +5062 7535 0.4580 +5062 7867 0.5600 +5062 7879 0.4590 +5062 8027 0.5410 +5062 8087 0.4830 +5062 8239 0.4710 +5062 8440 0.9730 +5062 8476 0.4900 +5062 8503 0.4340 +5062 8569 0.4450 +5062 8773 0.4680 +5062 8826 0.5130 +5062 8829 0.5040 +5062 8874 0.9990 +5062 8976 0.5630 +5062 9146 0.4220 +5062 9231 0.4250 +5062 9261 0.5680 +5062 9322 0.4530 +5062 9341 0.4430 +5062 9352 0.4080 +5062 9353 0.5280 +5062 9402 0.5110 +5062 9459 0.9890 +5062 9475 0.5060 +5062 9491 0.4330 +5062 9497 0.4110 +5062 9528 0.4430 +5062 9578 0.4450 +5062 9644 0.4920 +5062 9732 0.4670 +5062 9738 0.4160 +5062 9815 0.8220 +5062 9861 0.4500 +5062 10006 0.5210 +5062 10094 0.4810 +5062 10096 0.5250 +5062 10097 0.4480 +5062 10152 0.4690 +5062 10163 0.4900 +5062 10174 0.6150 +5062 10197 0.4520 +5062 10213 0.4480 +5062 10254 0.5520 +5062 10298 0.4660 +5062 10371 0.5040 +5062 10376 0.4180 +5062 10398 0.5940 +5062 10451 0.5480 +5062 10602 0.4240 +5062 10627 0.6190 +5062 10658 0.4970 +5062 10746 0.9270 +5062 10769 0.5050 +5062 10787 0.4280 +5062 10788 0.4460 +5062 11060 0.4460 +5062 11076 0.4100 +5062 11135 0.4600 +5062 11180 0.4650 +5062 23048 0.4630 +5062 23075 0.4050 +5062 23191 0.4610 +5062 23198 0.4110 +5062 23219 0.5510 +5062 23380 0.4740 +5062 23433 0.7350 +5062 23513 0.7570 +5062 25894 0.4130 +5062 26030 0.4030 +5062 26050 0.4250 +5062 26286 0.4050 +5062 26532 0.4280 +5062 27040 0.4990 +5062 28964 0.9040 +5062 50618 0.4440 +5062 50855 0.4360 +5062 51164 0.5080 +5062 51347 0.4470 +5062 54874 0.4520 +5062 55004 0.4220 +5062 55075 0.4160 +5062 55558 0.5310 +5062 55717 0.4200 +5062 55845 0.4180 +5062 55914 0.6270 +5062 55968 0.4460 +5062 55970 0.9000 +5062 55971 0.4260 +5062 56924 0.4560 +5062 57144 0.4470 +5062 57381 0.8920 +5062 57473 0.4370 +5062 57514 0.4180 +5062 57630 0.5700 +5062 58480 0.7380 +5062 63916 0.4270 +5062 79598 0.4050 +5062 79658 0.9840 +5062 79784 0.5040 +5062 79834 0.4220 +5062 80005 0.4560 +5062 81624 0.4460 +5062 81839 0.4070 +5062 84516 0.5790 +5062 84612 0.4190 +5062 85366 0.6830 +5062 91010 0.4780 +5062 91584 0.5200 +5062 91807 0.6840 +5062 94134 0.4880 +5062 103910 0.6090 +5062 114885 0.4470 +5062 115703 0.4130 +5062 122706 0.4330 +5062 128239 0.4490 +5062 143098 0.4480 +5062 143471 0.4810 +5062 144402 0.4030 +5062 147179 0.4500 +5062 157769 0.4830 +5062 171177 0.7130 +5062 200894 0.4270 +5062 253959 0.4130 +5062 257106 0.4170 +5062 340156 0.6920 +5062 344558 0.5450 +5063 5295 0.4360 +5063 5296 0.4340 +5063 5361 0.5340 +5063 5362 0.5200 +5063 5500 0.5350 +5063 5594 0.4060 +5063 5596 0.5960 +5063 5597 0.6020 +5063 5604 0.9200 +5063 5877 0.4170 +5063 5879 0.9310 +5063 5880 0.9350 +5063 5881 0.9340 +5063 5894 0.9090 +5063 6091 0.9110 +5063 6092 0.9140 +5063 6654 0.5750 +5063 6655 0.5750 +5063 6709 0.4630 +5063 6711 0.4160 +5063 6714 0.5600 +5063 7037 0.4370 +5063 7112 0.4250 +5063 7409 0.5260 +5063 7410 0.5500 +5063 7454 0.5380 +5063 7879 0.4110 +5063 8027 0.5370 +5063 8239 0.4630 +5063 8440 0.9350 +5063 8476 0.4790 +5063 8773 0.4120 +5063 8826 0.4770 +5063 8829 0.4990 +5063 8874 0.9980 +5063 8976 0.5630 +5063 9146 0.4020 +5063 9231 0.4250 +5063 9341 0.4290 +5063 9353 0.5480 +5063 9459 0.9930 +5063 9578 0.4440 +5063 9815 0.8220 +5063 10254 0.5370 +5063 10298 0.4710 +5063 10371 0.5190 +5063 10398 0.5730 +5063 10451 0.5520 +5063 10627 0.6030 +5063 11060 0.4130 +5063 11158 0.4020 +5063 11180 0.4550 +5063 23048 0.4520 +5063 23229 0.5160 +5063 23380 0.4410 +5063 23513 0.5230 +5063 25894 0.4130 +5063 26030 0.4030 +5063 28964 0.8810 +5063 50618 0.5040 +5063 50855 0.4190 +5063 54874 0.4520 +5063 55004 0.4450 +5063 55131 0.5170 +5063 55558 0.5240 +5063 55789 0.4010 +5063 55970 0.9070 +5063 57381 0.7940 +5063 57514 0.4130 +5063 58480 0.7130 +5063 79784 0.5030 +5063 81624 0.4430 +5063 81839 0.4060 +5063 85366 0.6620 +5063 91584 0.5320 +5063 91807 0.6550 +5063 103910 0.5730 +5063 128239 0.5150 +5063 143098 0.4730 +5063 147179 0.4450 +5063 149371 0.4110 +5063 200894 0.4230 +5063 257106 0.4130 +5063 340156 0.6850 +5064 6616 0.6200 +5064 6857 0.6060 +5064 9066 0.7480 +5064 23390 0.7450 +5064 29801 0.7990 +5064 54503 0.8320 +5064 54873 0.4180 +5064 84293 0.5360 +5066 5122 0.6680 +5066 5126 0.5020 +5066 5443 0.4060 +5066 5799 0.4440 +5066 6447 0.5500 +5066 7299 0.4750 +5066 7857 0.4640 +5066 8997 0.9730 +5066 9182 0.8750 +5066 10015 0.4600 +5066 27185 0.4400 +5066 27433 0.8260 +5066 29106 0.4330 +5066 50848 0.4870 +5066 56961 0.4180 +5066 57514 0.4260 +5066 127933 0.4350 +5067 5793 0.9870 +5067 6900 0.4420 +5067 7476 0.4060 +5067 7512 0.4040 +5067 7866 0.4130 +5067 9378 0.4340 +5067 10752 0.4640 +5067 22854 0.4630 +5067 23024 0.4340 +5067 23114 0.4670 +5067 23769 0.4710 +5067 25912 0.4140 +5067 26047 0.4730 +5067 27124 0.4120 +5067 53942 0.4070 +5067 58524 0.4110 +5067 64420 0.4340 +5067 79937 0.4370 +5067 80031 0.4760 +5067 84465 0.4360 +5067 85445 0.4840 +5067 129684 0.4410 +5068 5266 0.5260 +5068 5320 0.4490 +5068 5644 0.4080 +5068 5645 0.5860 +5068 5646 0.4450 +5068 5967 0.9380 +5068 5968 0.8750 +5068 7099 0.5030 +5068 7132 0.6160 +5068 10136 0.4600 +5068 10562 0.4290 +5068 11330 0.4150 +5068 23436 0.4710 +5068 50506 0.5560 +5068 50616 0.6020 +5068 51032 0.4660 +5068 58985 0.4250 +5068 63036 0.4760 +5068 65018 0.4290 +5068 80149 0.5410 +5068 130120 0.8940 +5068 405753 0.5930 +5068 646627 0.4710 +5069 5228 0.7990 +5069 5340 0.4200 +5069 5553 0.9990 +5069 5669 0.6600 +5069 5670 0.6250 +5069 5671 0.6780 +5069 5672 0.6450 +5069 5673 0.5350 +5069 5675 0.6590 +5069 5676 0.6230 +5069 5678 0.6310 +5069 5680 0.6690 +5069 5770 0.4290 +5069 6781 0.6650 +5069 7137 0.7210 +5069 8038 0.7020 +5069 8125 0.6160 +5069 8614 0.9620 +5069 9365 0.4570 +5069 10272 0.5120 +5069 10761 0.5200 +5069 23452 0.4070 +5069 25836 0.4950 +5069 29124 0.8770 +5069 81611 0.8360 +5069 254827 0.5880 +5069 440533 0.6250 +5071 5111 0.6000 +5071 5116 0.5040 +5071 5134 0.4400 +5071 5289 0.6770 +5071 5290 0.4020 +5071 5315 0.6830 +5071 5335 0.9340 +5071 5337 0.4420 +5071 5347 0.4200 +5071 5413 0.9910 +5071 5414 0.7200 +5071 5420 0.4090 +5071 5428 0.5480 +5071 5563 0.4350 +5071 5594 0.4480 +5071 5621 0.4120 +5071 5631 0.4080 +5071 5663 0.7590 +5071 5664 0.5650 +5071 5682 0.8570 +5071 5683 0.7950 +5071 5684 0.7860 +5071 5685 0.8940 +5071 5686 0.7910 +5071 5687 0.7880 +5071 5688 0.9120 +5071 5689 0.7900 +5071 5690 0.7980 +5071 5691 0.7860 +5071 5692 0.8100 +5071 5693 0.7930 +5071 5694 0.7960 +5071 5695 0.7920 +5071 5700 0.8860 +5071 5701 0.8590 +5071 5702 0.8670 +5071 5704 0.8240 +5071 5705 0.9050 +5071 5706 0.7910 +5071 5707 0.7890 +5071 5708 0.8810 +5071 5709 0.8260 +5071 5710 0.9680 +5071 5711 0.4080 +5071 5713 0.8010 +5071 5714 0.8000 +5071 5715 0.8310 +5071 5716 0.4310 +5071 5717 0.8120 +5071 5718 0.8040 +5071 5719 0.4380 +5071 5720 0.4540 +5071 5721 0.4310 +5071 5728 0.6410 +5071 5833 0.4260 +5071 5864 0.5360 +5071 5886 0.8080 +5071 5887 0.6860 +5071 5903 0.8030 +5071 6015 0.5880 +5071 6059 0.6460 +5071 6194 0.4180 +5071 6233 0.9970 +5071 6295 0.6330 +5071 6310 0.5430 +5071 6311 0.6930 +5071 6382 0.4110 +5071 6455 0.5730 +5071 6456 0.9550 +5071 6457 0.7090 +5071 6477 0.4160 +5071 6531 0.8390 +5071 6571 0.6900 +5071 6620 0.5940 +5071 6622 0.9990 +5071 6647 0.6200 +5071 6648 0.5430 +5071 6714 0.5410 +5071 6767 0.4510 +5071 6853 0.4660 +5071 6950 0.6010 +5071 7019 0.8230 +5071 7037 0.4580 +5071 7054 0.7640 +5071 7157 0.7600 +5071 7184 0.5300 +5071 7186 0.7930 +5071 7189 0.7050 +5071 7277 0.5450 +5071 7283 0.5570 +5071 7284 0.4620 +5071 7295 0.5360 +5071 7311 0.9980 +5071 7314 0.9980 +5071 7316 0.9990 +5071 7317 0.5090 +5071 7319 0.4720 +5071 7321 0.6710 +5071 7322 0.8920 +5071 7323 0.9030 +5071 7324 0.6250 +5071 7325 0.9780 +5071 7326 0.8380 +5071 7327 0.8960 +5071 7332 0.9990 +5071 7334 0.9630 +5071 7335 0.8980 +5071 7337 0.4360 +5071 7341 0.7570 +5071 7345 0.9600 +5071 7384 0.4480 +5071 7415 0.9280 +5071 7416 0.9790 +5071 7417 0.8670 +5071 7419 0.7710 +5071 7494 0.4270 +5071 7533 0.7000 +5071 7846 0.6640 +5071 7879 0.5300 +5071 7942 0.5380 +5071 7965 0.9570 +5071 8100 0.4990 +5071 8266 0.5750 +5071 8398 0.6800 +5071 8408 0.5740 +5071 8450 0.4820 +5071 8454 0.8850 +5071 8508 0.4360 +5071 8517 0.6310 +5071 8562 0.5070 +5071 8573 0.5940 +5071 8638 0.4210 +5071 8678 0.9890 +5071 8737 0.4820 +5071 8825 0.4100 +5071 8867 0.6830 +5071 8878 0.9870 +5071 8880 0.4270 +5071 8887 0.7580 +5071 8934 0.4180 +5071 8945 0.5050 +5071 9037 0.4200 +5071 9040 0.4760 +5071 9097 0.4460 +5071 9101 0.9450 +5071 9140 0.6300 +5071 9246 0.9970 +5071 9319 0.4880 +5071 9354 0.4320 +5071 9361 0.5970 +5071 9456 0.6400 +5071 9463 0.6380 +5071 9474 0.7170 +5071 9529 0.8590 +5071 9532 0.6200 +5071 9627 0.9990 +5071 9636 0.5060 +5071 9706 0.4140 +5071 9711 0.4870 +5071 9759 0.6150 +5071 9776 0.5310 +5071 9782 0.5280 +5071 9804 0.7490 +5071 9817 0.6150 +5071 9821 0.5050 +5071 9829 0.7250 +5071 9861 0.4760 +5071 9868 0.9470 +5071 9927 0.9990 +5071 9958 0.5870 +5071 10013 0.9460 +5071 10043 0.4490 +5071 10059 0.9400 +5071 10075 0.4520 +5071 10128 0.5270 +5071 10131 0.4940 +5071 10133 0.8110 +5071 10193 0.8300 +5071 10197 0.4570 +5071 10213 0.8320 +5071 10241 0.7930 +5071 10273 0.9460 +5071 10367 0.4630 +5071 10376 0.5130 +5071 10412 0.7970 +5071 10452 0.8100 +5071 10477 0.4070 +5071 10533 0.7330 +5071 10537 0.5750 +5071 10576 0.4570 +5071 10616 0.4450 +5071 10716 0.4680 +5071 10871 0.6930 +5071 10891 0.6810 +5071 10935 0.6340 +5071 11035 0.8920 +5071 11047 0.9530 +5071 11076 0.4730 +5071 11124 0.5690 +5071 11315 0.9990 +5071 11331 0.7020 +5071 11337 0.6000 +5071 11345 0.5950 +5071 22863 0.4420 +5071 23032 0.4430 +5071 23178 0.4830 +5071 23208 0.9170 +5071 23219 0.4990 +5071 23245 0.4420 +5071 23277 0.4620 +5071 23317 0.6540 +5071 23400 0.8360 +5071 23410 0.4420 +5071 23411 0.5190 +5071 23435 0.9840 +5071 23532 0.5180 +5071 23586 0.4150 +5071 23640 0.6110 +5071 23705 0.4020 +5071 23710 0.6210 +5071 23770 0.5450 +5071 23786 0.5120 +5071 25793 0.9170 +5071 25820 0.5710 +5071 25897 0.4440 +5071 25978 0.4330 +5071 26020 0.4910 +5071 26058 0.5820 +5071 26100 0.4040 +5071 26227 0.4960 +5071 26232 0.6380 +5071 26270 0.6700 +5071 26272 0.4040 +5071 27161 0.4510 +5071 27338 0.7830 +5071 27429 0.8710 +5071 29058 0.5150 +5071 29110 0.6470 +5071 29978 0.6140 +5071 29979 0.5820 +5071 30968 0.5170 +5071 50613 0.4970 +5071 51001 0.4990 +5071 51024 0.8490 +5071 51142 0.6330 +5071 51343 0.5480 +5071 51465 0.8230 +5071 51706 0.4410 +5071 51725 0.5800 +5071 51741 0.6000 +5071 51762 0.4700 +5071 51806 0.5470 +5071 51807 0.4530 +5071 54205 0.6780 +5071 54471 0.5300 +5071 54472 0.4180 +5071 54541 0.4100 +5071 54704 0.4080 +5071 54708 0.7170 +5071 54813 0.5550 +5071 54832 0.6480 +5071 55014 0.4900 +5071 55054 0.4190 +5071 55062 0.4180 +5071 55072 0.5740 +5071 55201 0.4800 +5071 55288 0.9820 +5071 55294 0.9360 +5071 55486 0.7740 +5071 55626 0.8120 +5071 55669 0.9980 +5071 55737 0.9320 +5071 55832 0.4110 +5071 55847 0.7170 +5071 56893 0.4860 +5071 56947 0.5770 +5071 56993 0.5610 +5071 57154 0.7450 +5071 57506 0.4840 +5071 57521 0.4860 +5071 59286 0.4230 +5071 64127 0.4870 +5071 64326 0.5540 +5071 64422 0.5420 +5071 64757 0.4950 +5071 64786 0.5720 +5071 65018 0.9990 +5071 65264 0.5680 +5071 79065 0.4720 +5071 79594 0.7000 +5071 79608 0.4750 +5071 79861 0.4850 +5071 80208 0.5880 +5071 80227 0.4170 +5071 81631 0.7010 +5071 83734 0.4460 +5071 84260 0.4470 +5071 84557 0.5000 +5071 84749 0.7590 +5071 84790 0.5740 +5071 84993 0.4290 +5071 89941 0.9840 +5071 90678 0.5100 +5071 91860 0.5340 +5071 92552 0.8240 +5071 93550 0.5400 +5071 112714 0.4550 +5071 113457 0.5200 +5071 114548 0.5410 +5071 116442 0.4950 +5071 118424 0.6240 +5071 120892 0.9860 +5071 125170 0.4760 +5071 135138 0.9140 +5071 139341 0.7860 +5071 143471 0.7950 +5071 143630 0.4110 +5071 144811 0.4650 +5071 155061 0.8470 +5071 160857 0.5190 +5071 163688 0.5250 +5071 164153 0.4150 +5071 171222 0.9080 +5071 192111 0.6130 +5071 200894 0.4990 +5071 203068 0.4570 +5071 203228 0.5180 +5071 221302 0.6200 +5071 285527 0.4220 +5071 440738 0.4040 +5071 441925 0.6300 +5071 493869 0.4080 +5071 494470 0.4080 +5073 5393 0.6820 +5073 5394 0.6500 +5073 5976 0.6520 +5073 6176 0.6700 +5073 6440 0.5420 +5073 7004 0.4220 +5073 7013 0.4130 +5073 7015 0.6460 +5073 7072 0.6440 +5073 7073 0.4330 +5073 7157 0.6380 +5073 7158 0.4940 +5073 7227 0.4140 +5073 7538 0.4380 +5073 8106 0.4300 +5073 8189 0.9430 +5073 8350 0.4190 +5073 8570 0.9720 +5073 8880 0.4550 +5073 8939 0.5100 +5073 9191 0.6070 +5073 9261 0.4100 +5073 9337 0.6050 +5073 9656 0.4400 +5073 9775 0.5340 +5073 10460 0.6650 +5073 10498 0.4400 +5073 10605 0.5510 +5073 10658 0.7000 +5073 10813 0.7520 +5073 10914 0.8920 +5073 10949 0.4090 +5073 11022 0.4660 +5073 11340 0.6340 +5073 22803 0.5440 +5073 22849 0.4040 +5073 22894 0.7370 +5073 22916 0.4020 +5073 23016 0.7010 +5073 23019 0.5970 +5073 23223 0.5990 +5073 23318 0.4990 +5073 23357 0.4660 +5073 23404 0.6240 +5073 23405 0.6900 +5073 23517 0.4280 +5073 25819 0.6830 +5073 25983 0.8450 +5073 26019 0.6010 +5073 26277 0.7230 +5073 26523 0.4470 +5073 26986 0.8920 +5073 27161 0.5640 +5073 28960 0.4770 +5073 29102 0.6950 +5073 29883 0.6070 +5073 51010 0.7320 +5073 51013 0.6380 +5073 51692 0.4340 +5073 51750 0.8050 +5073 51808 0.4430 +5073 54464 0.7090 +5073 54487 0.4390 +5073 54512 0.8070 +5073 55135 0.7120 +5073 55149 0.4100 +5073 55505 0.7190 +5073 55596 0.4420 +5073 55651 0.7230 +5073 55720 0.6700 +5073 55802 0.4180 +5073 56829 0.7490 +5073 56903 0.8850 +5073 56915 0.8070 +5073 57472 0.8050 +5073 57647 0.6280 +5073 64282 0.7170 +5073 64506 0.9350 +5073 64852 0.4340 +5073 64895 0.8860 +5073 65109 0.4990 +5073 65982 0.4120 +5073 79650 0.4640 +5073 79670 0.4900 +5073 79991 0.5790 +5073 80169 0.7730 +5073 80315 0.4420 +5073 80336 0.6850 +5073 84930 0.4120 +5073 85395 0.7360 +5073 90806 0.5500 +5073 92105 0.4020 +5073 114034 0.5040 +5073 115752 0.4880 +5073 118460 0.6950 +5073 129563 0.6070 +5073 132864 0.4170 +5073 146279 0.4470 +5073 154197 0.9220 +5073 167153 0.9070 +5073 167227 0.9290 +5073 201164 0.5190 +5073 201626 0.5740 +5073 246175 0.7720 +5073 727897 0.5260 +5073 729238 0.5820 +5074 5590 0.7160 +5074 5612 0.4260 +5074 6240 0.6040 +5074 6572 0.7120 +5074 6737 0.5840 +5074 7124 0.4190 +5074 7490 0.9060 +5074 9002 0.6940 +5074 9391 0.7720 +5074 10363 0.4460 +5074 10989 0.5140 +5074 23376 0.4220 +5074 26574 0.4850 +5074 51078 0.4910 +5074 51806 0.4770 +5074 55075 0.6070 +5074 55145 0.9160 +5074 57215 0.4840 +5074 79180 0.4820 +5074 80176 0.9530 +5074 80764 0.4410 +5074 83591 0.5280 +5074 84727 0.7590 +5074 84792 0.4490 +5074 90326 0.4690 +5074 91860 0.4780 +5074 92369 0.7410 +5074 163688 0.4780 +5074 200933 0.5860 +5074 286262 0.4200 +5074 100529144 0.4050 +5075 5083 0.4320 +5075 5087 0.5820 +5075 5156 0.5190 +5075 5184 0.4610 +5075 5818 0.4490 +5075 6469 0.5330 +5075 6495 0.5000 +5075 6656 0.6150 +5075 6660 0.5040 +5075 6662 0.5440 +5075 6899 0.4950 +5075 6911 0.5350 +5075 6913 0.4280 +5075 6939 0.6890 +5075 7039 0.6120 +5075 7546 0.4470 +5075 7707 0.4330 +5075 8456 0.5990 +5075 8626 0.4250 +5075 9247 0.5900 +5075 10660 0.4420 +5075 23136 0.4740 +5075 23314 0.5110 +5075 23499 0.5200 +5075 29907 0.4970 +5075 54796 0.4030 +5075 54798 0.4880 +5075 55553 0.4570 +5075 56034 0.4990 +5075 60529 0.4210 +5075 80183 0.4470 +5075 81608 0.5410 +5075 134359 0.4490 +5075 145873 0.6550 +5075 147948 0.7760 +5075 151647 0.4800 +5075 340260 0.6050 +5075 642658 0.7130 +5075 644994 0.4480 +5076 5080 0.6270 +5076 5308 0.4130 +5076 5420 0.6450 +5076 5455 0.4490 +5076 5457 0.5090 +5076 5458 0.5320 +5076 5459 0.5500 +5076 5460 0.4600 +5076 5582 0.4610 +5076 5816 0.5370 +5076 5925 0.6580 +5076 5979 0.5450 +5076 6092 0.4420 +5076 6299 0.7020 +5076 6469 0.6200 +5076 6495 0.8320 +5076 6496 0.5700 +5076 6656 0.4740 +5076 6657 0.5990 +5076 6658 0.4330 +5076 6662 0.4750 +5076 6663 0.4450 +5076 6850 0.6510 +5076 6928 0.6500 +5076 7082 0.4930 +5076 7091 0.6280 +5076 7157 0.4660 +5076 7369 0.4770 +5076 7380 0.4350 +5076 7471 0.6920 +5076 7481 0.4700 +5076 7484 0.6130 +5076 7490 0.8560 +5076 7827 0.5800 +5076 7849 0.4850 +5076 8202 0.6470 +5076 8290 0.5570 +5076 8356 0.5570 +5076 8796 0.4950 +5076 8817 0.4160 +5076 8842 0.4460 +5076 9070 0.4080 +5076 9079 0.4090 +5076 9152 0.4180 +5076 9355 0.5090 +5076 9723 0.4590 +5076 10215 0.4610 +5076 10252 0.4080 +5076 10660 0.5030 +5076 10736 0.7840 +5076 10763 0.4920 +5076 11023 0.5940 +5076 11346 0.7190 +5076 22976 0.9810 +5076 23001 0.4540 +5076 23213 0.4490 +5076 23440 0.5880 +5076 23600 0.5050 +5076 23643 0.4180 +5076 25806 0.6750 +5076 25844 0.5480 +5076 26281 0.4420 +5076 27319 0.4720 +5076 30012 0.5860 +5076 50674 0.4340 +5076 51804 0.5050 +5076 54361 0.6560 +5076 54474 0.4020 +5076 55636 0.4890 +5076 55719 0.5790 +5076 55810 0.5640 +5076 56751 0.4650 +5076 56956 0.6010 +5076 57084 0.4650 +5076 58508 0.6930 +5076 63973 0.4840 +5076 64211 0.5820 +5076 64321 0.4010 +5076 64843 0.4300 +5076 79191 0.4240 +5076 79776 0.4150 +5076 127343 0.4890 +5076 130497 0.4440 +5076 145258 0.5940 +5076 146713 0.4180 +5076 167410 0.4060 +5076 256297 0.5470 +5076 338917 0.6290 +5076 340260 0.4080 +5076 340784 0.4930 +5076 440093 0.5570 +5076 440686 0.5570 +5076 653604 0.5570 +5077 5081 0.9070 +5077 5083 0.4520 +5077 5156 0.5080 +5077 5308 0.5370 +5077 5454 0.6500 +5077 5457 0.4600 +5077 5460 0.4940 +5077 5727 0.4410 +5077 5949 0.4250 +5077 5979 0.6090 +5077 6006 0.4040 +5077 6007 0.7050 +5077 6299 0.4440 +5077 6391 0.5310 +5077 6469 0.6140 +5077 6490 0.4370 +5077 6495 0.9250 +5077 6496 0.5050 +5077 6591 0.7840 +5077 6596 0.4400 +5077 6615 0.4950 +5077 6656 0.5760 +5077 6657 0.6550 +5077 6658 0.5090 +5077 6660 0.4810 +5077 6662 0.6330 +5077 6663 0.9970 +5077 6736 0.4960 +5077 6756 0.4530 +5077 6757 0.5280 +5077 6839 0.5530 +5077 6908 0.4420 +5077 6910 0.4890 +5077 6911 0.7290 +5077 6939 0.4230 +5077 6949 0.6030 +5077 7021 0.4740 +5077 7025 0.4620 +5077 7091 0.4860 +5077 7157 0.5090 +5077 7291 0.4550 +5077 7299 0.8440 +5077 7306 0.7070 +5077 7402 0.4880 +5077 7471 0.5690 +5077 7475 0.4670 +5077 7490 0.6020 +5077 7545 0.7960 +5077 7546 0.4160 +5077 7547 0.4150 +5077 7942 0.4210 +5077 8019 0.4020 +5077 8187 0.6980 +5077 8200 0.4010 +5077 8479 0.4490 +5077 8631 0.4570 +5077 8648 0.9360 +5077 9241 0.4130 +5077 9242 0.4530 +5077 9464 0.5900 +5077 9670 0.7170 +5077 9759 0.4030 +5077 10056 0.5880 +5077 10155 0.5710 +5077 10215 0.4770 +5077 10413 0.7090 +5077 10499 0.4350 +5077 10736 0.6450 +5077 10763 0.4770 +5077 10927 0.4220 +5077 22797 0.4320 +5077 23476 0.5200 +5077 23512 0.4250 +5077 25914 0.5330 +5077 26515 0.4310 +5077 26519 0.5680 +5077 26520 0.6290 +5077 27022 0.7310 +5077 27148 0.4890 +5077 29928 0.6730 +5077 30812 0.6880 +5077 51151 0.4310 +5077 51176 0.6630 +5077 51804 0.5660 +5077 55553 0.4330 +5077 57822 0.5500 +5077 58488 0.7880 +5077 63973 0.4870 +5077 63976 0.4530 +5077 64321 0.4010 +5077 79190 0.4520 +5077 79191 0.4550 +5077 83933 0.6500 +5077 84525 0.6050 +5077 89780 0.4830 +5077 94104 0.4980 +5077 116039 0.4710 +5077 245806 0.4840 +5077 440686 0.4020 +5077 644994 0.4800 +5077 653604 0.4020 +5078 5122 0.5160 +5078 5126 0.5550 +5078 5158 0.4800 +5078 5449 0.4580 +5078 5456 0.4970 +5078 5539 0.7340 +5078 5978 0.4410 +5078 5991 0.4810 +5078 6391 0.4930 +5078 6514 0.8030 +5078 6657 0.5430 +5078 6662 0.5510 +5078 6670 0.6580 +5078 6750 0.7500 +5078 6778 0.4010 +5078 6833 0.7660 +5078 6927 0.8910 +5078 6928 0.7090 +5078 6934 0.4360 +5078 7021 0.4040 +5078 7466 0.6430 +5078 8462 0.8090 +5078 9451 0.4380 +5078 9935 0.6530 +5078 10106 0.4050 +5078 10217 0.4320 +5078 11132 0.4620 +5078 23512 0.4050 +5078 26060 0.4860 +5078 26515 0.4310 +5078 26519 0.5740 +5078 26520 0.6290 +5078 27022 0.4200 +5078 29928 0.6730 +5078 29999 0.4210 +5078 50674 0.9800 +5078 51303 0.7180 +5078 51738 0.5480 +5078 54738 0.4510 +5078 55810 0.5110 +5078 57538 0.7100 +5078 58190 0.4080 +5078 60685 0.4170 +5078 63973 0.5970 +5078 64321 0.5100 +5078 64395 0.4110 +5078 79571 0.5470 +5078 79923 0.4130 +5078 83795 0.4400 +5078 84504 0.4410 +5078 84654 0.6350 +5078 115861 0.7550 +5078 140902 0.4750 +5078 153572 0.4700 +5078 169026 0.4970 +5078 169792 0.6050 +5078 170302 0.4080 +5078 222546 0.7330 +5078 256297 0.6910 +5078 389692 0.5830 +5078 493856 0.4650 +5079 5080 0.4380 +5079 5087 0.6050 +5079 5090 0.4590 +5079 5450 0.8840 +5079 5452 0.5500 +5079 5460 0.5620 +5079 5728 0.5850 +5079 5788 0.6890 +5079 5885 0.5280 +5079 5896 0.6310 +5079 5925 0.6100 +5079 6304 0.4510 +5079 6382 0.8210 +5079 6664 0.5120 +5079 6688 0.8170 +5079 6689 0.8000 +5079 6693 0.8150 +5079 6772 0.4140 +5079 6774 0.4370 +5079 6776 0.5070 +5079 6777 0.5130 +5079 6850 0.4380 +5079 6886 0.4870 +5079 6908 0.5030 +5079 6929 0.8560 +5079 6932 0.6190 +5079 7003 0.4250 +5079 7004 0.5110 +5079 7023 0.4230 +5079 7072 0.5070 +5079 7091 0.9360 +5079 7157 0.5980 +5079 7374 0.4100 +5079 7441 0.6830 +5079 7490 0.4140 +5079 7494 0.7550 +5079 7528 0.6880 +5079 7849 0.5550 +5079 8085 0.4040 +5079 8115 0.7240 +5079 9623 0.5390 +5079 10320 0.9540 +5079 10524 0.4430 +5079 10538 0.4340 +5079 10563 0.4050 +5079 10664 0.5550 +5079 10673 0.4420 +5079 22806 0.8990 +5079 22976 0.7750 +5079 23440 0.4110 +5079 23495 0.4280 +5079 26053 0.4800 +5079 29760 0.7600 +5079 29802 0.5780 +5079 30009 0.4250 +5079 30012 0.5100 +5079 50615 0.4350 +5079 51176 0.7390 +5079 51621 0.4120 +5079 53335 0.7200 +5079 57379 0.8760 +5079 57593 0.5630 +5079 58508 0.5410 +5079 60468 0.8030 +5079 64641 0.4800 +5079 64919 0.4730 +5079 84148 0.4050 +5079 84186 0.4440 +5079 84295 0.6070 +5079 84922 0.4340 +5079 115650 0.5490 +5079 127933 0.5220 +5079 140628 0.4650 +5079 140688 0.5770 +5079 145258 0.5940 +5079 171017 0.5230 +5079 253738 0.5290 +5079 286530 0.7100 +5079 100271849 0.4810 +5079 100288687 0.4680 +5079 100423062 0.6430 +5079 102723407 0.8870 +5080 5087 0.7090 +5080 5116 0.4240 +5080 5122 0.4350 +5080 5126 0.4900 +5080 5156 0.5050 +5080 5158 0.6010 +5080 5308 0.6050 +5080 5316 0.7280 +5080 5453 0.4080 +5080 5454 0.6980 +5080 5455 0.4590 +5080 5456 0.5490 +5080 5457 0.6590 +5080 5458 0.6670 +5080 5459 0.4260 +5080 5460 0.8030 +5080 5539 0.5290 +5080 5578 0.4150 +5080 5629 0.7020 +5080 5649 0.5620 +5080 5727 0.4940 +5080 5816 0.5240 +5080 5915 0.4110 +5080 5925 0.5480 +5080 5928 0.5430 +5080 5931 0.5410 +5080 5949 0.5050 +5080 5954 0.5410 +5080 5957 0.6950 +5080 5988 0.7190 +5080 5989 0.4910 +5080 5991 0.4580 +5080 6010 0.6200 +5080 6017 0.6110 +5080 6121 0.6170 +5080 6275 0.4520 +5080 6285 0.5770 +5080 6391 0.5520 +5080 6423 0.4060 +5080 6469 0.8290 +5080 6495 0.6850 +5080 6496 0.9510 +5080 6507 0.5960 +5080 6513 0.4080 +5080 6514 0.5150 +5080 6585 0.6090 +5080 6586 0.5950 +5080 6591 0.4020 +5080 6597 0.7080 +5080 6599 0.4880 +5080 6601 0.5560 +5080 6608 0.5230 +5080 6656 0.8990 +5080 6657 0.9770 +5080 6658 0.6530 +5080 6659 0.4610 +5080 6660 0.6200 +5080 6662 0.7730 +5080 6663 0.6360 +5080 6664 0.5780 +5080 6736 0.5190 +5080 6750 0.6150 +5080 6772 0.5120 +5080 6833 0.4390 +5080 6853 0.5220 +5080 6854 0.4310 +5080 6855 0.4650 +5080 6862 0.4600 +5080 6908 0.7910 +5080 6910 0.6410 +5080 6911 0.4750 +5080 6926 0.4330 +5080 6928 0.4980 +5080 6934 0.4240 +5080 7025 0.6070 +5080 7026 0.4650 +5080 7044 0.4120 +5080 7054 0.5440 +5080 7070 0.4190 +5080 7082 0.4790 +5080 7091 0.4660 +5080 7101 0.5400 +5080 7157 0.6440 +5080 7299 0.4970 +5080 7341 0.4920 +5080 7356 0.4160 +5080 7431 0.5860 +5080 7439 0.5090 +5080 7471 0.5340 +5080 7479 0.4130 +5080 7490 0.7620 +5080 7494 0.4380 +5080 7528 0.8640 +5080 7541 0.4800 +5080 7545 0.6620 +5080 7546 0.4940 +5080 7547 0.4010 +5080 7703 0.5400 +5080 7763 0.7620 +5080 7837 0.4120 +5080 7849 0.4650 +5080 8022 0.6160 +5080 8153 0.4350 +5080 8202 0.8200 +5080 8224 0.4120 +5080 8290 0.5380 +5080 8320 0.8110 +5080 8356 0.5380 +5080 8419 0.6670 +5080 8646 0.4460 +5080 8726 0.6070 +5080 8815 0.9520 +5080 8817 0.5160 +5080 8822 0.6720 +5080 8823 0.4890 +5080 8842 0.4770 +5080 9241 0.6230 +5080 9314 0.6500 +5080 9353 0.5030 +5080 9355 0.5760 +5080 9429 0.4300 +5080 9573 0.6100 +5080 9611 0.6040 +5080 9670 0.8040 +5080 9935 0.6950 +5080 10002 0.4940 +5080 10215 0.8770 +5080 10238 0.9930 +5080 10381 0.6620 +5080 10524 0.4570 +5080 10586 0.5070 +5080 10664 0.4400 +5080 10716 0.9150 +5080 10736 0.4630 +5080 10738 0.6690 +5080 10739 0.6480 +5080 10763 0.8590 +5080 11023 0.4160 +5080 11081 0.4040 +5080 11166 0.4660 +5080 22887 0.4670 +5080 22943 0.4710 +5080 23040 0.4850 +5080 23186 0.6410 +5080 23314 0.7310 +5080 23316 0.5830 +5080 23394 0.5070 +5080 23512 0.7240 +5080 23769 0.4020 +5080 25914 0.4810 +5080 26281 0.4930 +5080 26468 0.6550 +5080 26515 0.4310 +5080 26519 0.5680 +5080 26520 0.6290 +5080 26610 0.8320 +5080 27006 0.5080 +5080 27022 0.6590 +5080 27319 0.5950 +5080 28514 0.4750 +5080 29928 0.6730 +5080 29947 0.5630 +5080 30062 0.4570 +5080 30812 0.4050 +5080 50674 0.7540 +5080 50943 0.4650 +5080 51053 0.6090 +5080 51176 0.4360 +5080 54345 0.4830 +5080 54469 0.5910 +5080 54681 0.8580 +5080 54765 0.7270 +5080 55079 0.7120 +5080 55553 0.4250 +5080 55636 0.4050 +5080 55810 0.4950 +5080 57030 0.6090 +5080 57084 0.5080 +5080 58158 0.6440 +5080 60685 0.6770 +5080 63973 0.9080 +5080 63974 0.5290 +5080 64321 0.8240 +5080 64843 0.5120 +5080 64919 0.7110 +5080 79190 0.5750 +5080 79191 0.6420 +5080 79192 0.4250 +5080 79727 0.5580 +5080 79923 0.8380 +5080 80012 0.7380 +5080 80310 0.4040 +5080 81559 0.4070 +5080 83552 0.5550 +5080 83595 0.4710 +5080 84148 0.4510 +5080 84504 0.4530 +5080 84525 0.5220 +5080 89780 0.5270 +5080 89884 0.4590 +5080 90167 0.4070 +5080 90637 0.5750 +5080 93986 0.6010 +5080 116448 0.6030 +5080 118427 0.6000 +5080 120526 0.6550 +5080 121643 0.5380 +5080 130617 0.4730 +5080 132625 0.4490 +5080 137902 0.4030 +5080 140679 0.4390 +5080 140836 0.4140 +5080 145173 0.4430 +5080 146713 0.6830 +5080 153572 0.4550 +5080 167826 0.4990 +5080 169792 0.4140 +5080 196294 0.6250 +5080 200894 0.4280 +5080 220202 0.6920 +5080 221833 0.6000 +5080 222546 0.6310 +5080 256297 0.6450 +5080 338917 0.5290 +5080 341019 0.7020 +5080 387755 0.4250 +5080 388585 0.6180 +5080 389692 0.5840 +5080 390992 0.4160 +5080 440093 0.5320 +5080 440686 0.5560 +5080 493856 0.4020 +5080 653604 0.5560 +5081 5156 0.5570 +5081 5175 0.5710 +5081 5178 0.5730 +5081 5184 0.4160 +5081 5454 0.4300 +5081 5460 0.4640 +5081 5727 0.4230 +5081 5788 0.5000 +5081 6007 0.5140 +5081 6385 0.4470 +5081 6391 0.5110 +5081 6442 0.4490 +5081 6469 0.7290 +5081 6495 0.7590 +5081 6496 0.4130 +5081 6591 0.7330 +5081 6596 0.5930 +5081 6656 0.5040 +5081 6657 0.5840 +5081 6658 0.4720 +5081 6662 0.4930 +5081 6663 0.7480 +5081 6722 0.4340 +5081 6911 0.4340 +5081 6932 0.4400 +5081 7157 0.4110 +5081 7350 0.4020 +5081 7402 0.5390 +5081 7471 0.4590 +5081 7476 0.4940 +5081 7490 0.4650 +5081 7545 0.5540 +5081 7546 0.4800 +5081 7852 0.4440 +5081 8290 0.4220 +5081 8356 0.4210 +5081 8817 0.4040 +5081 8822 0.4120 +5081 8823 0.4210 +5081 9070 0.8710 +5081 9095 0.4910 +5081 9242 0.4400 +5081 9672 0.4690 +5081 9757 0.5190 +5081 9759 0.4760 +5081 10215 0.5210 +5081 10468 0.4690 +5081 10891 0.4500 +5081 11091 0.6180 +5081 23462 0.4380 +5081 26281 0.4070 +5081 26508 0.4600 +5081 26515 0.4310 +5081 26519 0.5680 +5081 26520 0.6290 +5081 27006 0.4130 +5081 27022 0.5780 +5081 29928 0.6730 +5081 30812 0.4830 +5081 51176 0.4640 +5081 51804 0.5290 +5081 55553 0.4150 +5081 60529 0.4200 +5081 63976 0.5240 +5081 64641 0.4480 +5081 64651 0.6900 +5081 79190 0.4300 +5081 79191 0.4330 +5081 79923 0.4590 +5081 84676 0.5170 +5081 89780 0.6370 +5081 114907 0.6190 +5081 255877 0.4550 +5081 346673 0.4250 +5081 389827 0.5930 +5081 440093 0.4180 +5081 440686 0.4350 +5081 653604 0.4350 +5082 5132 0.4190 +5082 5169 0.4790 +5082 5191 0.6280 +5082 5216 0.6690 +5082 5480 0.4280 +5082 5705 0.8820 +5082 6000 0.6920 +5082 6342 0.4810 +5082 6468 0.6350 +5082 6950 0.6520 +5082 7203 0.8550 +5082 8786 0.6680 +5082 8787 0.5380 +5082 8801 0.7350 +5082 9628 0.6590 +5082 9630 0.5010 +5082 10574 0.9070 +5082 10575 0.7530 +5082 10576 0.8160 +5082 10681 0.9980 +5082 10693 0.5120 +5082 10694 0.7410 +5082 22948 0.8760 +5082 23770 0.4220 +5082 25974 0.4200 +5082 27069 0.7710 +5082 27175 0.4830 +5082 50813 0.5830 +5082 51122 0.4530 +5082 51764 0.5430 +5082 54331 0.6080 +5082 55076 0.4800 +5082 55191 0.4030 +5082 55220 0.6230 +5082 55970 0.6100 +5082 57826 0.6200 +5082 59345 0.9970 +5082 79031 0.7670 +5082 80013 0.4750 +5082 85406 0.5310 +5082 94235 0.5430 +5082 284131 0.4240 +5082 345456 0.7160 +5082 349136 0.5680 +5082 375189 0.7160 +5082 375611 0.5800 +5082 387521 0.7140 +5083 5307 0.4920 +5083 5308 0.7660 +5083 5396 0.7180 +5083 5799 0.4880 +5083 6469 0.6120 +5083 6474 0.4550 +5083 6495 0.4900 +5083 6657 0.4250 +5083 6660 0.4720 +5083 6662 0.5010 +5083 6839 0.5110 +5083 6899 0.5000 +5083 7039 0.5680 +5083 7043 0.5990 +5083 7080 0.5110 +5083 7480 0.5350 +5083 8313 0.6640 +5083 8456 0.5420 +5083 9096 0.5370 +5083 9247 0.4710 +5083 9314 0.4770 +5083 9464 0.4640 +5083 10481 0.4420 +5083 10484 0.5260 +5083 10765 0.8760 +5083 10913 0.6740 +5083 23314 0.6340 +5083 26257 0.9050 +5083 26468 0.5260 +5083 50945 0.5300 +5083 51176 0.6020 +5083 51281 0.4210 +5083 51450 0.8260 +5083 51603 0.4890 +5083 55553 0.4320 +5083 56033 0.6590 +5083 57680 0.4700 +5083 60529 0.6550 +5083 80326 0.8620 +5083 89874 0.5520 +5083 116039 0.8080 +5083 128178 0.6710 +5083 145282 0.4190 +5083 146754 0.4140 +5083 340260 0.4080 +5083 431707 0.8050 +5087 5089 0.5700 +5087 5316 0.9990 +5087 5328 0.4540 +5087 5451 0.4490 +5087 5460 0.8750 +5087 5566 0.9060 +5087 5567 0.9070 +5087 5568 0.9060 +5087 5914 0.7510 +5087 5916 0.7310 +5087 5927 0.5400 +5087 5928 0.5190 +5087 5931 0.5240 +5087 6256 0.6140 +5087 6258 0.4250 +5087 6473 0.6070 +5087 6597 0.7550 +5087 6657 0.8700 +5087 6660 0.4790 +5087 6772 0.5180 +5087 6886 0.6030 +5087 6913 0.4320 +5087 6929 0.9630 +5087 6938 0.5190 +5087 7482 0.4780 +5087 7490 0.4030 +5087 7494 0.4490 +5087 7514 0.4930 +5087 7539 0.4510 +5087 8028 0.4860 +5087 8202 0.5820 +5087 8726 0.5330 +5087 8854 0.5190 +5087 9314 0.8620 +5087 9555 0.4040 +5087 9611 0.6260 +5087 9794 0.6910 +5087 10046 0.5260 +5087 10232 0.4050 +5087 10253 0.4890 +5087 10320 0.5820 +5087 10481 0.4850 +5087 10586 0.7090 +5087 23512 0.5790 +5087 29844 0.5850 +5087 30012 0.4160 +5087 50674 0.5400 +5087 51384 0.5320 +5087 55311 0.6270 +5087 55534 0.5260 +5087 56899 0.5230 +5087 56917 0.6340 +5087 57167 0.6050 +5087 57326 0.6240 +5087 58499 0.4410 +5087 63876 0.9170 +5087 63978 0.5520 +5087 79142 0.5680 +5087 79190 0.4390 +5087 79191 0.4760 +5087 79727 0.5490 +5087 79923 0.8670 +5087 84441 0.5110 +5087 84733 0.4260 +5087 84891 0.5770 +5087 84915 0.7800 +5087 124540 0.5510 +5087 134553 0.4200 +5087 146562 0.4200 +5087 171017 0.5960 +5087 219409 0.4460 +5087 286530 0.5090 +5087 374569 0.4160 +5087 100288687 0.5240 +5087 102723407 0.5060 +5089 5316 0.9720 +5089 6124 0.4350 +5089 6473 0.4710 +5089 6776 0.4670 +5089 6777 0.4560 +5089 8518 0.4200 +5089 9314 0.4620 +5089 10445 0.4200 +5089 10458 0.4230 +5089 10481 0.4470 +5089 10554 0.8090 +5089 10555 0.5990 +5089 10586 0.6810 +5089 10980 0.4200 +5089 11258 0.4200 +5089 23517 0.4200 +5089 23636 0.4220 +5089 26750 0.4270 +5089 54407 0.7600 +5089 54873 0.4350 +5089 55625 0.4360 +5089 56917 0.7260 +5089 63876 0.7750 +5089 63940 0.4880 +5089 64754 0.4260 +5089 79191 0.4020 +5089 80714 0.6640 +5089 81539 0.7190 +5089 84915 0.6760 +5089 90655 0.4070 +5089 134701 0.6250 +5089 219409 0.4360 +5089 283234 0.4460 +5089 338917 0.4840 +5090 5316 0.5650 +5090 6776 0.4190 +5090 6777 0.4080 +5090 6886 0.4900 +5090 6929 0.4160 +5090 7702 0.4840 +5090 10194 0.7140 +5090 10554 0.8100 +5090 10555 0.7110 +5090 10586 0.7220 +5090 55311 0.5450 +5090 56917 0.6880 +5090 57085 0.6150 +5090 63876 0.7630 +5090 79191 0.4230 +5090 84915 0.7820 +5090 146562 0.4420 +5090 219409 0.4160 +5090 343472 0.4430 +5091 5095 0.9220 +5091 5096 0.9890 +5091 5105 0.9780 +5091 5106 0.9860 +5091 5161 0.9380 +5091 5162 0.9590 +5091 5163 0.4610 +5091 5164 0.5050 +5091 5166 0.5270 +5091 5188 0.8370 +5091 5209 0.4110 +5091 5211 0.5920 +5091 5213 0.6560 +5091 5214 0.5000 +5091 5223 0.6080 +5091 5224 0.5650 +5091 5226 0.6680 +5091 5230 0.5510 +5091 5232 0.5500 +5091 5236 0.4760 +5091 5245 0.4230 +5091 5313 0.9640 +5091 5315 0.9670 +5091 5354 0.4600 +5091 5465 0.4310 +5091 5468 0.4190 +5091 5832 0.5990 +5091 5834 0.6320 +5091 5836 0.6370 +5091 5837 0.6170 +5091 6120 0.5340 +5091 6389 0.5690 +5091 6390 0.5260 +5091 6391 0.4700 +5091 6470 0.5830 +5091 6472 0.5690 +5091 6506 0.4180 +5091 6513 0.4820 +5091 6514 0.5620 +5091 6517 0.4660 +5091 6566 0.4100 +5091 6576 0.4670 +5091 6652 0.4990 +5091 6720 0.4560 +5091 6821 0.4200 +5091 6888 0.6430 +5091 7086 0.7240 +5091 7157 0.5020 +5091 7167 0.6260 +5091 7189 0.4360 +5091 7203 0.5240 +5091 7253 0.4220 +5091 7284 0.5010 +5091 7372 0.4080 +5091 7837 0.4060 +5091 7915 0.8850 +5091 8050 0.4990 +5091 8192 0.5070 +5091 8277 0.6020 +5091 8789 0.5900 +5091 8801 0.4180 +5091 8802 0.4740 +5091 8803 0.4910 +5091 8833 0.4350 +5091 8884 0.4010 +5091 9122 0.4200 +5091 9374 0.6160 +5091 9563 0.6730 +5091 9942 0.4520 +5091 10449 0.4990 +5091 10579 0.4090 +5091 10797 0.4660 +5091 10841 0.4580 +5091 10873 0.9860 +5091 10891 0.4610 +5091 10993 0.5070 +5091 25874 0.5010 +5091 25902 0.4770 +5091 26061 0.4140 +5091 26227 0.4500 +5091 29968 0.4080 +5091 51179 0.5870 +5091 51444 0.5560 +5091 51497 0.7280 +5091 51557 0.8500 +5091 51660 0.4280 +5091 54363 0.6000 +5091 54511 0.5010 +5091 54704 0.4530 +5091 54941 0.5560 +5091 55278 0.7170 +5091 55293 0.5570 +5091 55526 0.4790 +5091 55753 0.4910 +5091 55871 0.4210 +5091 55902 0.9230 +5091 56922 0.9220 +5091 56954 0.8190 +5091 57103 0.5730 +5091 57494 0.8000 +5091 57546 0.4580 +5091 57818 0.7360 +5091 64087 0.9790 +5091 79611 0.4490 +5091 79944 0.4980 +5091 80347 0.4030 +5091 81889 0.4780 +5091 84076 0.6020 +5091 84532 0.9220 +5091 84693 0.4270 +5091 84706 0.5380 +5091 84842 0.7430 +5091 92483 0.9650 +5091 92579 0.7430 +5091 112464 0.5740 +5091 125061 0.8050 +5091 130752 0.5990 +5091 137362 0.8790 +5091 137872 0.4150 +5091 137902 0.4060 +5091 158584 0.7160 +5091 160287 0.9660 +5091 162417 0.5230 +5091 197257 0.9210 +5091 259307 0.8150 +5091 283985 0.7740 +5091 285605 0.4020 +5091 441024 0.4340 +5091 441531 0.5530 +5091 729020 0.4940 +5092 5265 0.4410 +5092 5805 0.7840 +5092 5860 0.9960 +5092 6697 0.8520 +5092 6871 0.4320 +5092 6927 0.9950 +5092 6928 0.8920 +5092 7033 0.5290 +5092 7054 0.9870 +5092 7166 0.9870 +5092 7407 0.4980 +5092 7913 0.4040 +5092 9149 0.7820 +5092 9513 0.4620 +5092 54946 0.4550 +5092 56521 0.4660 +5092 57325 0.4180 +5092 84105 0.9590 +5092 84693 0.5180 +5092 84842 0.4920 +5092 91373 0.7910 +5092 121278 0.9780 +5092 125061 0.7550 +5092 137362 0.5340 +5092 140628 0.5960 +5092 140803 0.4240 +5092 389434 0.8040 +5092 405754 0.4220 +5092 100287205 0.4070 +5093 5094 0.9980 +5093 5201 0.4350 +5093 5204 0.4850 +5093 5290 0.5280 +5093 5295 0.5640 +5093 5315 0.7960 +5093 5514 0.4320 +5093 5682 0.5000 +5093 5683 0.5310 +5093 5684 0.5970 +5093 5685 0.4520 +5093 5686 0.4160 +5093 5687 0.5050 +5093 5688 0.4730 +5093 5725 0.9780 +5093 5935 0.5340 +5093 5936 0.4530 +5093 5976 0.5100 +5093 6122 0.4720 +5093 6124 0.5230 +5093 6125 0.4160 +5093 6128 0.5510 +5093 6129 0.7260 +5093 6130 0.4020 +5093 6132 0.4310 +5093 6133 0.4640 +5093 6136 0.5450 +5093 6137 0.4810 +5093 6143 0.4440 +5093 6155 0.5240 +5093 6156 0.4960 +5093 6157 0.5060 +5093 6158 0.4790 +5093 6165 0.4820 +5093 6175 0.4710 +5093 6181 0.5350 +5093 6187 0.4780 +5093 6188 0.5040 +5093 6189 0.4690 +5093 6191 0.5070 +5093 6194 0.6730 +5093 6202 0.5200 +5093 6208 0.4320 +5093 6217 0.6310 +5093 6224 0.5650 +5093 6421 0.6060 +5093 6426 0.8730 +5093 6427 0.8180 +5093 6428 0.8910 +5093 6429 0.6140 +5093 6430 0.5820 +5093 6431 0.6970 +5093 6432 0.7490 +5093 6434 0.8360 +5093 6500 0.4430 +5093 6623 0.5840 +5093 6625 0.6700 +5093 6626 0.8910 +5093 6632 0.4640 +5093 6633 0.6620 +5093 6634 0.5060 +5093 6635 0.6630 +5093 6636 0.5450 +5093 6637 0.5600 +5093 6732 0.4160 +5093 6737 0.4810 +5093 6741 0.6310 +5093 6780 0.6100 +5093 6929 0.4830 +5093 6936 0.5040 +5093 7054 0.4430 +5093 7072 0.6730 +5093 7073 0.5660 +5093 7157 0.4520 +5093 7203 0.4490 +5093 7307 0.5750 +5093 7336 0.4090 +5093 7341 0.4180 +5093 7458 0.6090 +5093 7531 0.5870 +5093 7536 0.4610 +5093 7538 0.4020 +5093 7555 0.4310 +5093 7706 0.4050 +5093 7812 0.4660 +5093 7919 0.7410 +5093 8031 0.6810 +5093 8087 0.4090 +5093 8106 0.7360 +5093 8148 0.5890 +5093 8175 0.6660 +5093 8241 0.6200 +5093 8243 0.5700 +5093 8260 0.4750 +5093 8570 0.4320 +5093 8607 0.5360 +5093 8662 0.6140 +5093 8666 0.5410 +5093 8668 0.5060 +5093 8683 0.6860 +5093 8880 0.6410 +5093 8894 0.4640 +5093 8939 0.4120 +5093 9045 0.4090 +5093 9129 0.5150 +5093 9295 0.4580 +5093 9360 0.7510 +5093 9444 0.5480 +5093 9470 0.5930 +5093 9513 0.4770 +5093 9584 0.8570 +5093 9698 0.4070 +5093 9775 0.4810 +5093 9782 0.7580 +5093 9987 0.8150 +5093 10045 0.4460 +5093 10155 0.4770 +5093 10162 0.4590 +5093 10189 0.6180 +5093 10197 0.4230 +5093 10236 0.9050 +5093 10284 0.4570 +5093 10399 0.8020 +5093 10432 0.7620 +5093 10447 0.5300 +5093 10471 0.4300 +5093 10492 0.7140 +5093 10574 0.4600 +5093 10575 0.5580 +5093 10576 0.4610 +5093 10594 0.9950 +5093 10643 0.4370 +5093 10644 0.5970 +5093 10657 0.6610 +5093 10658 0.7320 +5093 10661 0.4910 +5093 10694 0.4980 +5093 10726 0.4010 +5093 10772 0.6690 +5093 10856 0.5050 +5093 10915 0.4630 +5093 10921 0.4200 +5093 10929 0.4200 +5093 10949 0.8110 +5093 10963 0.4250 +5093 10992 0.5920 +5093 11051 0.6440 +5093 11052 0.5570 +5093 11060 0.4020 +5093 11140 0.5130 +5093 11338 0.7250 +5093 22827 0.5160 +5093 22913 0.4500 +5093 22916 0.6450 +5093 22938 0.5310 +5093 22948 0.4700 +5093 23016 0.4260 +5093 23405 0.4280 +5093 23435 0.8330 +5093 23456 0.4920 +5093 23521 0.4110 +5093 23543 0.7480 +5093 24144 0.5350 +5093 26097 0.4950 +5093 26135 0.4260 +5093 26986 0.7600 +5093 27161 0.6360 +5093 27304 0.4200 +5093 27316 0.7690 +5093 27339 0.4720 +5093 29896 0.5390 +5093 30061 0.4480 +5093 51574 0.5830 +5093 51729 0.4190 +5093 53938 0.7610 +5093 54039 0.4650 +5093 54464 0.4690 +5093 54502 0.4750 +5093 54819 0.4950 +5093 54954 0.4740 +5093 55240 0.4300 +5093 55544 0.4130 +5093 55640 0.4730 +5093 55740 0.4740 +5093 56259 0.4200 +5093 56339 0.4060 +5093 56949 0.4380 +5093 57060 0.4650 +5093 57154 0.4110 +5093 57215 0.4590 +5093 57721 0.4480 +5093 81844 0.5880 +5093 83475 0.4480 +5093 91603 0.9940 +5093 92906 0.4480 +5093 94033 0.4500 +5093 135295 0.4750 +5093 138046 0.4260 +5093 143884 0.4990 +5093 220988 0.9130 +5093 348093 0.5520 +5093 552900 0.4310 +5093 654483 0.5050 +5094 5201 0.4280 +5094 5202 0.4120 +5094 5204 0.5470 +5094 5355 0.4050 +5094 5682 0.5090 +5094 5683 0.5320 +5094 5684 0.5490 +5094 5685 0.4610 +5094 5687 0.4740 +5094 5688 0.6510 +5094 5725 0.9320 +5094 5935 0.5390 +5094 5976 0.4440 +5094 6124 0.6540 +5094 6128 0.4720 +5094 6129 0.6940 +5094 6136 0.4920 +5094 6137 0.4590 +5094 6143 0.4240 +5094 6155 0.4180 +5094 6156 0.4160 +5094 6157 0.4630 +5094 6158 0.5010 +5094 6181 0.5370 +5094 6189 0.4380 +5094 6193 0.5290 +5094 6194 0.6400 +5094 6202 0.4950 +5094 6217 0.5300 +5094 6224 0.5220 +5094 6230 0.4040 +5094 6234 0.4270 +5094 6419 0.4150 +5094 6421 0.6670 +5094 6426 0.8050 +5094 6427 0.7780 +5094 6428 0.9960 +5094 6429 0.7740 +5094 6430 0.6680 +5094 6431 0.7000 +5094 6432 0.6900 +5094 6434 0.7530 +5094 6625 0.5250 +5094 6626 0.7430 +5094 6633 0.4180 +5094 6635 0.4890 +5094 6636 0.4290 +5094 6741 0.6750 +5094 6772 0.5660 +5094 6773 0.4710 +5094 6936 0.5080 +5094 7072 0.9040 +5094 7073 0.8200 +5094 7307 0.4210 +5094 7411 0.4350 +5094 7412 0.4110 +5094 7415 0.5390 +5094 7458 0.5570 +5094 7536 0.4410 +5094 7555 0.4420 +5094 7706 0.6830 +5094 7812 0.6440 +5094 7919 0.5890 +5094 8031 0.5740 +5094 8087 0.4250 +5094 8106 0.5880 +5094 8148 0.4160 +5094 8189 0.4550 +5094 8241 0.5320 +5094 8243 0.5050 +5094 8260 0.4820 +5094 8562 0.4540 +5094 8570 0.4170 +5094 8607 0.4870 +5094 8650 0.4270 +5094 8662 0.4900 +5094 8666 0.5710 +5094 8668 0.5330 +5094 8672 0.4170 +5094 8683 0.7040 +5094 8761 0.4060 +5094 8880 0.4560 +5094 8939 0.5840 +5094 9040 0.5070 +5094 9113 0.4550 +5094 9253 0.4080 +5094 9295 0.5260 +5094 9444 0.4890 +5094 9584 0.6030 +5094 9610 0.4260 +5094 9669 0.4760 +5094 9698 0.4340 +5094 9782 0.4840 +5094 9908 0.4120 +5094 9987 0.8050 +5094 10000 0.5330 +5094 10045 0.5210 +5094 10146 0.4960 +5094 10162 0.4440 +5094 10189 0.4940 +5094 10209 0.4020 +5094 10236 0.8040 +5094 10399 0.7500 +5094 10432 0.5660 +5094 10471 0.4340 +5094 10492 0.8190 +5094 10569 0.6260 +5094 10575 0.4600 +5094 10576 0.4800 +5094 10642 0.5960 +5094 10657 0.6380 +5094 10658 0.6940 +5094 10694 0.4260 +5094 10772 0.6470 +5094 10914 0.4800 +5094 10922 0.4630 +5094 10929 0.4520 +5094 10949 0.6210 +5094 10963 0.5000 +5094 10983 0.5650 +5094 10992 0.8170 +5094 11338 0.5850 +5094 22803 0.5210 +5094 22907 0.4260 +5094 22916 0.6950 +5094 23210 0.4020 +5094 23405 0.7570 +5094 23435 0.6870 +5094 23456 0.4340 +5094 23586 0.7140 +5094 23644 0.4280 +5094 24144 0.5210 +5094 25804 0.4270 +5094 25929 0.5840 +5094 26135 0.4500 +5094 26234 0.4620 +5094 26523 0.4540 +5094 26528 0.4220 +5094 26986 0.9220 +5094 27161 0.7930 +5094 27316 0.8190 +5094 28951 0.4480 +5094 28982 0.4470 +5094 29894 0.4230 +5094 29896 0.5290 +5094 30061 0.8670 +5094 51574 0.5190 +5094 51692 0.4100 +5094 53981 0.5100 +5094 54039 0.4280 +5094 54464 0.4870 +5094 54542 0.5140 +5094 54941 0.4130 +5094 55240 0.4050 +5094 55640 0.4150 +5094 56257 0.4730 +5094 57407 0.4090 +5094 57466 0.6090 +5094 57506 0.8940 +5094 57532 0.4300 +5094 57805 0.4210 +5094 58155 0.4430 +5094 58517 0.4290 +5094 64135 0.7760 +5094 64506 0.5420 +5094 79084 0.5310 +5094 79132 0.4030 +5094 79576 0.6190 +5094 79671 0.6830 +5094 80143 0.4440 +5094 80218 0.4040 +5094 83443 0.4110 +5094 83475 0.4350 +5094 83737 0.9790 +5094 84282 0.5890 +5094 84292 0.4870 +5094 89122 0.5970 +5094 92906 0.6180 +5094 124245 0.4560 +5094 131076 0.5440 +5094 135295 0.4870 +5094 143884 0.4990 +5094 149041 0.5460 +5094 219988 0.5380 +5094 220988 0.9150 +5095 5096 0.9990 +5095 5162 0.6260 +5095 5188 0.7360 +5095 5832 0.7300 +5095 6341 0.4740 +5095 6389 0.4420 +5095 7069 0.4640 +5095 7915 0.4330 +5095 8050 0.4970 +5095 8309 0.4760 +5095 8310 0.9360 +5095 9085 0.4100 +5095 9425 0.4110 +5095 9563 0.4110 +5095 10449 0.9550 +5095 10455 0.4270 +5095 11112 0.9060 +5095 25974 0.4840 +5095 26088 0.4120 +5095 26275 0.6400 +5095 27034 0.5420 +5095 27249 0.5540 +5095 27349 0.7400 +5095 28976 0.4690 +5095 51031 0.5380 +5095 54511 0.5560 +5095 54995 0.7670 +5095 55268 0.4880 +5095 55278 0.6020 +5095 55862 0.9450 +5095 55902 0.9250 +5095 56922 0.7710 +5095 57038 0.4270 +5095 64087 0.9980 +5095 64902 0.8800 +5095 79611 0.9420 +5095 79728 0.4210 +5095 84263 0.4930 +5095 84532 0.9320 +5095 84693 0.9770 +5095 84842 0.6960 +5095 84869 0.4160 +5095 124359 0.4100 +5095 145773 0.4200 +5095 158584 0.5300 +5095 162417 0.5010 +5095 166785 0.5170 +5095 253175 0.4100 +5095 326625 0.6400 +5096 5162 0.7780 +5096 5188 0.8520 +5096 5832 0.4720 +5096 5860 0.4840 +5096 6142 0.4430 +5096 6389 0.4160 +5096 6390 0.5080 +5096 7284 0.4350 +5096 7385 0.4260 +5096 8050 0.6960 +5096 8087 0.4300 +5096 8309 0.5060 +5096 8310 0.9460 +5096 8801 0.4210 +5096 8802 0.6030 +5096 8803 0.4100 +5096 9085 0.4760 +5096 9380 0.4630 +5096 9399 0.4920 +5096 9425 0.4800 +5096 9607 0.4670 +5096 10295 0.4110 +5096 10449 0.9620 +5096 10455 0.6270 +5096 10730 0.4310 +5096 10845 0.4220 +5096 10873 0.6160 +5096 10939 0.5370 +5096 11112 0.9080 +5096 23395 0.4160 +5096 23464 0.4130 +5096 23549 0.4930 +5096 25851 0.5460 +5096 25974 0.6040 +5096 26024 0.5560 +5096 26164 0.4830 +5096 26227 0.4540 +5096 26275 0.7010 +5096 27034 0.6670 +5096 27068 0.4150 +5096 27249 0.5200 +5096 27349 0.8960 +5096 28976 0.6050 +5096 51021 0.6430 +5096 51031 0.6640 +5096 51084 0.4080 +5096 51102 0.4460 +5096 51444 0.5450 +5096 51497 0.9260 +5096 51557 0.6410 +5096 54465 0.5470 +5096 54511 0.7810 +5096 54941 0.5440 +5096 54988 0.4060 +5096 54995 0.5210 +5096 55133 0.4250 +5096 55268 0.5670 +5096 55278 0.5510 +5096 55289 0.4830 +5096 55293 0.5650 +5096 55788 0.4050 +5096 55856 0.4130 +5096 55862 0.9480 +5096 55902 0.9290 +5096 56922 0.9980 +5096 57128 0.4040 +5096 64087 0.8030 +5096 64839 0.5440 +5096 64902 0.8270 +5096 64979 0.4010 +5096 65985 0.4180 +5096 79152 0.4010 +5096 79611 0.9420 +5096 79728 0.5430 +5096 80221 0.5740 +5096 80324 0.4300 +5096 81932 0.4350 +5096 84060 0.5460 +5096 84263 0.6010 +5096 84532 0.9350 +5096 84693 0.9870 +5096 84842 0.8620 +5096 92483 0.5440 +5096 124359 0.4760 +5096 130752 0.5440 +5096 131034 0.4250 +5096 152330 0.4630 +5096 158584 0.5060 +5096 160287 0.5440 +5096 166785 0.6860 +5096 201514 0.4200 +5096 253175 0.4760 +5096 283985 0.5350 +5096 284422 0.4830 +5096 326625 0.7010 +5096 374291 0.4430 +5096 375337 0.5460 +5096 440145 0.5560 +5096 122405565 0.4830 +5097 7082 0.4820 +5097 7122 0.4870 +5097 8642 0.4270 +5097 8777 0.5380 +5097 8825 0.5490 +5097 28513 0.4590 +5097 55591 0.5620 +5097 56138 0.5070 +5097 56141 0.4240 +5097 57575 0.4860 +5097 80332 0.4070 +5097 84708 0.4400 +5097 94103 0.4410 +5097 120114 0.4420 +5097 146664 0.4440 +5098 6939 0.4650 +5098 8312 0.6720 +5098 56102 0.6560 +5098 56112 0.4740 +5098 56114 0.4210 +5098 113235 0.5770 +5100 5179 0.4500 +5100 5649 0.4470 +5100 6804 0.4310 +5100 6863 0.4580 +5100 9344 0.5820 +5100 27328 0.5710 +5100 54550 0.4900 +5100 57030 0.4950 +5100 57526 0.4620 +5100 57575 0.4300 +5100 205428 0.7150 +5101 8455 0.4050 +5101 9378 0.4350 +5101 11141 0.4030 +5101 22986 0.4320 +5101 26047 0.4290 +5101 57628 0.5140 +5101 60482 0.4080 +5101 84255 0.4060 +5101 84620 0.4270 +5101 92140 0.4230 +5101 137970 0.4560 +5101 152330 0.4050 +5104 5269 0.8160 +5104 5327 0.8060 +5104 5328 0.8610 +5104 5340 0.5320 +5104 5345 0.5680 +5104 5624 0.9690 +5104 5648 0.4280 +5104 5651 0.4130 +5104 5914 0.4190 +5104 6391 0.4790 +5104 6407 0.5970 +5104 6504 0.4290 +5104 6590 0.4600 +5104 6606 0.4200 +5104 6607 0.4010 +5104 7056 0.6720 +5104 7448 0.7190 +5104 7450 0.5720 +5104 7837 0.4150 +5104 7980 0.4440 +5104 9213 0.4310 +5104 9407 0.5290 +5104 9622 0.6320 +5104 10423 0.4220 +5104 11202 0.7300 +5104 28983 0.8410 +5104 51643 0.4710 +5104 90411 0.4010 +5104 133482 0.4020 +5104 137902 0.4040 +5104 286205 0.4390 +5104 375056 0.4820 +5104 440387 0.6190 +5104 643394 0.4120 +5105 5106 0.9320 +5105 5161 0.8420 +5105 5162 0.8810 +5105 5166 0.6240 +5105 5207 0.7460 +5105 5209 0.4410 +5105 5210 0.4150 +5105 5211 0.6860 +5105 5213 0.5520 +5105 5214 0.4800 +5105 5230 0.4830 +5105 5294 0.4140 +5105 5313 0.9680 +5105 5315 0.9510 +5105 5346 0.5590 +5105 5465 0.6370 +5105 5468 0.9070 +5105 5469 0.6560 +5105 5834 0.5200 +5105 5836 0.5730 +5105 5837 0.5500 +5105 6256 0.6260 +5105 6257 0.6610 +5105 6258 0.4370 +5105 6319 0.7390 +5105 6389 0.4870 +5105 6391 0.4400 +5105 6513 0.4430 +5105 6514 0.6620 +5105 6517 0.5860 +5105 6720 0.6430 +5105 6721 0.6110 +5105 6837 0.4990 +5105 6888 0.4470 +5105 6898 0.6260 +5105 6927 0.4080 +5105 7069 0.5330 +5105 7167 0.5050 +5105 7350 0.5320 +5105 7351 0.5590 +5105 7352 0.4020 +5105 7915 0.8270 +5105 8202 0.5580 +5105 8204 0.5760 +5105 8309 0.4080 +5105 8608 0.4900 +5105 8648 0.5730 +5105 8660 0.5380 +5105 8694 0.4220 +5105 8789 0.5630 +5105 8841 0.5900 +5105 9282 0.4990 +5105 9370 0.6990 +5105 9412 0.4990 +5105 9439 0.4990 +5105 9440 0.4990 +5105 9441 0.4990 +5105 9442 0.5250 +5105 9443 0.4990 +5105 9477 0.4990 +5105 9563 0.5800 +5105 9611 0.5830 +5105 9612 0.5550 +5105 9619 0.4440 +5105 9862 0.5290 +5105 9967 0.4990 +5105 9968 0.4990 +5105 9969 0.5170 +5105 9971 0.4790 +5105 10001 0.4990 +5105 10020 0.4220 +5105 10025 0.5060 +5105 10062 0.8000 +5105 10146 0.4280 +5105 10249 0.4250 +5105 10449 0.4060 +5105 10499 0.6980 +5105 10847 0.4350 +5105 10873 0.5060 +5105 10891 0.8400 +5105 22933 0.4560 +5105 23090 0.4300 +5105 23097 0.6930 +5105 23175 0.4130 +5105 23389 0.4990 +5105 23411 0.4700 +5105 25852 0.4030 +5105 26291 0.4820 +5105 29079 0.4990 +5105 51003 0.4990 +5105 51085 0.5180 +5105 51129 0.6190 +5105 51141 0.5630 +5105 51179 0.4390 +5105 51366 0.8420 +5105 51478 0.4330 +5105 51586 0.4990 +5105 54797 0.4990 +5105 54994 0.4050 +5105 55090 0.4990 +5105 55588 0.4990 +5105 55902 0.8830 +5105 56954 0.8230 +5105 57104 0.5140 +5105 57494 0.8040 +5105 57678 0.7210 +5105 57818 0.8160 +5105 63924 0.5530 +5105 79071 0.4080 +5105 79966 0.6740 +5105 80306 0.4990 +5105 80308 0.4930 +5105 81857 0.5320 +5105 84246 0.4990 +5105 84498 0.4990 +5105 84532 0.8700 +5105 84649 0.5010 +5105 84699 0.4750 +5105 84706 0.4710 +5105 85441 0.4990 +5105 90390 0.4990 +5105 92483 0.5050 +5105 92579 0.8170 +5105 112950 0.5090 +5105 123876 0.4140 +5105 125061 0.8170 +5105 126129 0.4490 +5105 126328 0.6370 +5105 130752 0.5670 +5105 137362 0.8200 +5105 137964 0.4520 +5105 160287 0.5070 +5105 200186 0.5750 +5105 259307 0.8050 +5105 348158 0.4450 +5105 387712 0.9560 +5105 400569 0.4990 +5106 5161 0.8390 +5106 5162 0.8900 +5106 5166 0.4950 +5106 5209 0.4100 +5106 5211 0.5820 +5106 5213 0.5650 +5106 5214 0.4850 +5106 5230 0.4860 +5106 5313 0.9580 +5106 5315 0.9530 +5106 5465 0.7370 +5106 5468 0.6960 +5106 5478 0.5430 +5106 5723 0.4090 +5106 5834 0.5400 +5106 5836 0.5640 +5106 5837 0.5500 +5106 6319 0.5450 +5106 6389 0.5310 +5106 6390 0.4540 +5106 6391 0.4670 +5106 6472 0.5620 +5106 6513 0.4220 +5106 6514 0.6200 +5106 6517 0.6170 +5106 6709 0.4130 +5106 6720 0.6430 +5106 6888 0.5130 +5106 6898 0.5850 +5106 7167 0.5750 +5106 7182 0.4250 +5106 7332 0.4510 +5106 7350 0.4560 +5106 7351 0.6280 +5106 7750 0.5300 +5106 7915 0.8410 +5106 8660 0.4990 +5106 8694 0.4020 +5106 8789 0.5160 +5106 8801 0.4680 +5106 8802 0.4360 +5106 9361 0.4270 +5106 9370 0.6410 +5106 9563 0.6310 +5106 9971 0.4180 +5106 10873 0.5670 +5106 10891 0.7400 +5106 22933 0.5440 +5106 22934 0.4210 +5106 23371 0.4260 +5106 23411 0.6100 +5106 26227 0.4320 +5106 26291 0.4460 +5106 29968 0.5280 +5106 50507 0.4280 +5106 51085 0.4800 +5106 55666 0.4230 +5106 55753 0.4450 +5106 55829 0.4120 +5106 55902 0.8710 +5106 56954 0.8170 +5106 57104 0.4500 +5106 57494 0.8070 +5106 57761 0.4730 +5106 57818 0.7750 +5106 79094 0.4970 +5106 84532 0.8710 +5106 84649 0.4260 +5106 84706 0.4710 +5106 92483 0.4710 +5106 92579 0.7760 +5106 125061 0.8120 +5106 126129 0.4200 +5106 130752 0.5650 +5106 137362 0.8310 +5106 150094 0.4590 +5106 160287 0.4600 +5106 200186 0.4690 +5106 259307 0.8150 +5106 376497 0.5140 +5106 387712 0.9550 +5108 5116 0.9630 +5108 5347 0.9440 +5108 6744 0.4330 +5108 7259 0.4320 +5108 7531 0.4520 +5108 8031 0.4070 +5108 8100 0.4610 +5108 8239 0.6900 +5108 8473 0.4850 +5108 8481 0.9290 +5108 8643 0.4180 +5108 8766 0.5370 +5108 8924 0.5600 +5108 9001 0.8480 +5108 9133 0.4220 +5108 9736 0.5780 +5108 9738 0.6070 +5108 9786 0.6410 +5108 9851 0.7680 +5108 9857 0.5990 +5108 9859 0.5820 +5108 9899 0.4610 +5108 10121 0.6110 +5108 10133 0.5170 +5108 10142 0.5110 +5108 10403 0.5470 +5108 10445 0.5500 +5108 10464 0.6670 +5108 10540 0.5800 +5108 10733 0.4450 +5108 10806 0.5270 +5108 11060 0.5040 +5108 11116 0.4080 +5108 11190 0.5810 +5108 11215 0.4190 +5108 11337 0.6010 +5108 11345 0.5680 +5108 22832 0.4670 +5108 22897 0.4460 +5108 22994 0.9240 +5108 23137 0.4400 +5108 23299 0.4690 +5108 23322 0.5280 +5108 23354 0.6600 +5108 26054 0.4460 +5108 26160 0.4840 +5108 27185 0.8160 +5108 27241 0.6030 +5108 27332 0.4370 +5108 28981 0.6460 +5108 29079 0.4770 +5108 49856 0.4080 +5108 51019 0.6070 +5108 51199 0.9030 +5108 54550 0.4370 +5108 54801 0.7190 +5108 54806 0.5190 +5108 54820 0.4540 +5108 54875 0.6070 +5108 54930 0.7860 +5108 55054 0.4790 +5108 55125 0.4450 +5108 55142 0.7480 +5108 55187 0.4110 +5108 55212 0.6800 +5108 55559 0.6670 +5108 55722 0.9090 +5108 55755 0.4890 +5108 55870 0.5470 +5108 57534 0.8320 +5108 57835 0.4420 +5108 64770 0.7510 +5108 79441 0.6740 +5108 79598 0.5810 +5108 79632 0.4690 +5108 79848 0.7550 +5108 79866 0.4990 +5108 79902 0.5510 +5108 80184 0.9560 +5108 81565 0.4690 +5108 84318 0.4160 +5108 84376 0.7370 +5108 85444 0.4630 +5108 90410 0.4630 +5108 90799 0.4440 +5108 91978 0.4020 +5108 92482 0.8060 +5108 93323 0.6500 +5108 114088 0.5000 +5108 115106 0.7950 +5108 117177 0.7670 +5108 117178 0.7420 +5108 123811 0.7690 +5108 129880 0.6630 +5108 145508 0.4170 +5108 152185 0.6350 +5108 153241 0.4260 +5108 163786 0.4920 +5108 165055 0.5060 +5108 167691 0.5930 +5108 200894 0.4340 +5108 221037 0.4400 +5108 285331 0.4950 +5108 374355 0.4390 +5108 374654 0.4740 +5108 728642 0.5310 +5111 5163 0.4980 +5111 5164 0.4740 +5111 5165 0.4750 +5111 5166 0.4740 +5111 5213 0.4780 +5111 5245 0.4030 +5111 5313 0.4220 +5111 5347 0.4310 +5111 5378 0.4200 +5111 5395 0.8660 +5111 5422 0.9870 +5111 5423 0.8020 +5111 5424 0.9990 +5111 5425 0.9980 +5111 5426 0.9880 +5111 5427 0.7250 +5111 5429 0.9990 +5111 5471 0.4690 +5111 5557 0.9470 +5111 5558 0.9540 +5111 5591 0.5620 +5111 5805 0.4150 +5111 5883 0.4090 +5111 5884 0.7560 +5111 5885 0.7870 +5111 5888 0.9370 +5111 5889 0.7510 +5111 5890 0.7310 +5111 5892 0.7310 +5111 5893 0.6750 +5111 5928 0.7140 +5111 5931 0.5340 +5111 5932 0.6400 +5111 5934 0.6450 +5111 5980 0.9370 +5111 5981 0.9990 +5111 5982 0.9990 +5111 5983 0.9990 +5111 5984 0.9990 +5111 5985 0.9990 +5111 6117 0.9820 +5111 6118 0.9440 +5111 6119 0.8690 +5111 6132 0.4010 +5111 6205 0.4970 +5111 6233 0.9830 +5111 6240 0.9330 +5111 6241 0.8280 +5111 6470 0.4870 +5111 6472 0.5170 +5111 6596 0.9730 +5111 6612 0.8310 +5111 6613 0.8460 +5111 6742 0.6030 +5111 6749 0.4060 +5111 6790 0.4500 +5111 7013 0.5110 +5111 7014 0.5010 +5111 7027 0.6400 +5111 7029 0.5670 +5111 7083 0.5790 +5111 7150 0.5780 +5111 7153 0.7890 +5111 7155 0.6260 +5111 7156 0.6310 +5111 7157 0.9130 +5111 7158 0.5030 +5111 7167 0.5860 +5111 7298 0.9130 +5111 7311 0.9610 +5111 7314 0.9590 +5111 7316 0.9610 +5111 7318 0.5400 +5111 7319 0.6340 +5111 7320 0.8630 +5111 7323 0.7460 +5111 7329 0.9340 +5111 7334 0.7760 +5111 7336 0.7770 +5111 7341 0.8810 +5111 7353 0.5510 +5111 7372 0.4890 +5111 7374 0.8290 +5111 7398 0.9440 +5111 7407 0.4030 +5111 7415 0.6140 +5111 7443 0.4650 +5111 7468 0.5000 +5111 7486 0.9120 +5111 7507 0.4300 +5111 7515 0.8560 +5111 7516 0.4160 +5111 7517 0.6950 +5111 7520 0.8240 +5111 7706 0.6330 +5111 7884 0.6740 +5111 7979 0.4300 +5111 8192 0.4020 +5111 8208 0.9330 +5111 8242 0.4120 +5111 8317 0.4060 +5111 8318 0.7390 +5111 8350 0.4370 +5111 8438 0.4710 +5111 8450 0.6380 +5111 8451 0.8080 +5111 8458 0.4740 +5111 8467 0.4010 +5111 8505 0.9100 +5111 8520 0.5750 +5111 8554 0.7000 +5111 8565 0.4110 +5111 8566 0.7870 +5111 8659 0.5660 +5111 8900 0.5120 +5111 8908 0.5540 +5111 8914 0.5750 +5111 8940 0.4100 +5111 9025 0.5440 +5111 9055 0.4310 +5111 9063 0.7000 +5111 9100 0.7510 +5111 9133 0.4960 +5111 9134 0.8990 +5111 9156 0.9600 +5111 9184 0.5100 +5111 9212 0.4670 +5111 9232 0.4110 +5111 9246 0.6590 +5111 9319 0.4090 +5111 9400 0.6300 +5111 9401 0.5970 +5111 9436 0.4050 +5111 9493 0.5000 +5111 9533 0.4070 +5111 9636 0.9180 +5111 9768 0.9970 +5111 9833 0.4130 +5111 9837 0.4530 +5111 9924 0.6590 +5111 9937 0.6060 +5111 9978 0.5640 +5111 9985 0.4630 +5111 10036 0.8980 +5111 10051 0.5790 +5111 10075 0.6250 +5111 10111 0.4610 +5111 10112 0.4290 +5111 10155 0.5410 +5111 10212 0.4420 +5111 10293 0.6790 +5111 10295 0.4780 +5111 10309 0.6900 +5111 10401 0.5940 +5111 10403 0.4890 +5111 10459 0.7150 +5111 10498 0.5280 +5111 10514 0.4790 +5111 10524 0.5690 +5111 10535 0.9430 +5111 10572 0.7400 +5111 10592 0.5990 +5111 10606 0.4310 +5111 10635 0.5850 +5111 10681 0.9040 +5111 10714 0.9980 +5111 10845 0.4630 +5111 10856 0.5430 +5111 10912 0.9600 +5111 11065 0.5550 +5111 11130 0.5380 +5111 11144 0.5010 +5111 11169 0.7010 +5111 11200 0.5900 +5111 11201 0.9980 +5111 11219 0.6580 +5111 11277 0.6640 +5111 22909 0.5100 +5111 22934 0.4450 +5111 22948 0.4610 +5111 22974 0.4490 +5111 23028 0.4360 +5111 23047 0.4430 +5111 23252 0.4150 +5111 23510 0.8540 +5111 23649 0.9290 +5111 25788 0.4350 +5111 25821 0.4310 +5111 25898 0.5040 +5111 25913 0.5130 +5111 26271 0.5990 +5111 26277 0.5050 +5111 27030 0.5490 +5111 27301 0.7100 +5111 27338 0.4120 +5111 27343 0.7650 +5111 27349 0.4360 +5111 29089 0.6030 +5111 29127 0.5230 +5111 29128 0.5390 +5111 29893 0.6150 +5111 29935 0.9050 +5111 29980 0.8540 +5111 50484 0.7020 +5111 51053 0.5570 +5111 51069 0.4030 +5111 51141 0.5150 +5111 51203 0.4740 +5111 51290 0.4350 +5111 51426 0.9980 +5111 51455 0.9780 +5111 51512 0.4280 +5111 51514 0.9950 +5111 51588 0.5940 +5111 51614 0.4140 +5111 51659 0.4120 +5111 54107 0.6350 +5111 54386 0.5220 +5111 54586 0.6580 +5111 54617 0.4200 +5111 54821 0.4990 +5111 54841 0.6910 +5111 54892 0.4160 +5111 54921 0.5920 +5111 54962 0.5020 +5111 55010 0.4030 +5111 55120 0.6130 +5111 55247 0.4820 +5111 55270 0.4060 +5111 55388 0.6740 +5111 55536 0.4560 +5111 55611 0.5100 +5111 55666 0.5040 +5111 55699 0.4640 +5111 55723 0.4910 +5111 55957 0.4990 +5111 56655 0.5560 +5111 56852 0.9980 +5111 56897 0.5830 +5111 57082 0.5450 +5111 57109 0.6630 +5111 57178 0.5560 +5111 57222 0.4100 +5111 57455 0.6580 +5111 57501 0.4150 +5111 57599 0.6540 +5111 57697 0.8450 +5111 57804 0.9900 +5111 60558 0.4200 +5111 63922 0.9500 +5111 63967 0.5970 +5111 64151 0.4180 +5111 64172 0.4090 +5111 64782 0.6760 +5111 79075 0.6640 +5111 79621 0.9310 +5111 79728 0.5400 +5111 79892 0.4460 +5111 79915 0.9360 +5111 79991 0.7690 +5111 80010 0.5010 +5111 80119 0.9120 +5111 80169 0.4990 +5111 81611 0.4200 +5111 81620 0.9950 +5111 81691 0.6670 +5111 81875 0.6610 +5111 83637 0.5530 +5111 83932 0.9920 +5111 83990 0.5710 +5111 84083 0.9540 +5111 84515 0.6770 +5111 84705 0.5280 +5111 84893 0.9250 +5111 84901 0.7110 +5111 87178 0.4310 +5111 90353 0.4280 +5111 91750 0.5060 +5111 92399 0.4040 +5111 92797 0.7810 +5111 94031 0.4040 +5111 94239 0.7990 +5111 114799 0.6890 +5111 115426 0.9700 +5111 116028 0.5400 +5111 116211 0.6050 +5111 120892 0.5160 +5111 124739 0.5430 +5111 126961 0.4370 +5111 132660 0.5790 +5111 138428 0.4820 +5111 140767 0.4940 +5111 146059 0.4870 +5111 148581 0.4120 +5111 150274 0.4850 +5111 157570 0.7980 +5111 157777 0.6050 +5111 163786 0.5350 +5111 221656 0.4010 +5111 246243 0.4460 +5111 254394 0.7890 +5111 254528 0.5250 +5111 257218 0.8500 +5111 284439 0.7400 +5111 285521 0.4260 +5111 286826 0.5250 +5111 348180 0.5540 +5111 348654 0.7150 +5111 353497 0.8140 +5111 375748 0.4340 +5111 387082 0.8280 +5111 387103 0.7870 +5111 387893 0.8540 +5111 642636 0.5730 +5111 100134934 0.4990 +5111 100533467 0.6880 +5116 5142 0.4570 +5116 5211 0.5390 +5116 5339 0.5670 +5116 5347 0.9650 +5116 5566 0.4260 +5116 5577 0.4750 +5116 5580 0.4660 +5116 5867 0.5240 +5116 6035 0.4130 +5116 6233 0.4460 +5116 6491 0.6730 +5116 6657 0.4200 +5116 6790 0.5750 +5116 6867 0.4210 +5116 6944 0.5370 +5116 7015 0.4870 +5116 7251 0.4200 +5116 7275 0.4420 +5116 7277 0.4650 +5116 7283 0.8940 +5116 7311 0.4370 +5116 7314 0.4380 +5116 7316 0.4460 +5116 7334 0.5300 +5116 7335 0.5100 +5116 7415 0.5370 +5116 7840 0.6390 +5116 8100 0.7900 +5116 8290 0.4500 +5116 8349 0.4260 +5116 8356 0.4540 +5116 8481 0.8490 +5116 8517 0.4940 +5116 8655 0.8660 +5116 8766 0.7160 +5116 8888 0.4320 +5116 9212 0.5410 +5116 9219 0.4020 +5116 9321 0.4260 +5116 9659 0.4660 +5116 9662 0.8520 +5116 9696 0.7020 +5116 9700 0.6350 +5116 9702 0.5120 +5116 9738 0.7410 +5116 9793 0.7090 +5116 9814 0.5940 +5116 9851 0.6420 +5116 9857 0.7020 +5116 9859 0.7460 +5116 9928 0.4490 +5116 9985 0.4880 +5116 10009 0.4920 +5116 10013 0.5590 +5116 10133 0.5110 +5116 10142 0.8270 +5116 10226 0.4130 +5116 10403 0.5560 +5116 10426 0.8090 +5116 10460 0.5310 +5116 10464 0.7660 +5116 10540 0.7550 +5116 10542 0.5490 +5116 10733 0.9060 +5116 10844 0.8070 +5116 10875 0.4200 +5116 11004 0.4590 +5116 11064 0.8210 +5116 11127 0.4220 +5116 11190 0.7440 +5116 11315 0.4060 +5116 22809 0.5840 +5116 22832 0.4970 +5116 22897 0.7720 +5116 22919 0.4850 +5116 22924 0.5740 +5116 22974 0.4430 +5116 22981 0.4980 +5116 22994 0.7520 +5116 22995 0.8980 +5116 23177 0.4430 +5116 23181 0.5570 +5116 23299 0.4660 +5116 23322 0.7600 +5116 23354 0.6260 +5116 25821 0.4300 +5116 25836 0.5370 +5116 25886 0.5370 +5116 25914 0.4910 +5116 25978 0.4430 +5116 26059 0.9060 +5116 26146 0.5110 +5116 27031 0.4190 +5116 27175 0.5440 +5116 27185 0.9830 +5116 27229 0.6160 +5116 27243 0.4240 +5116 51143 0.9700 +5116 51160 0.4460 +5116 51175 0.4800 +5116 51199 0.9790 +5116 51271 0.4010 +5116 51473 0.5800 +5116 51652 0.4400 +5116 51806 0.8120 +5116 54801 0.7520 +5116 54806 0.4690 +5116 54820 0.5220 +5116 54875 0.9690 +5116 54930 0.5840 +5116 55125 0.9440 +5116 55142 0.7370 +5116 55165 0.5190 +5116 55559 0.5610 +5116 55722 0.5640 +5116 55755 0.9880 +5116 55835 0.9170 +5116 55852 0.4080 +5116 55857 0.6890 +5116 56992 0.4950 +5116 57122 0.6110 +5116 57534 0.6980 +5116 57536 0.4210 +5116 64770 0.6610 +5116 64793 0.4760 +5116 79441 0.5580 +5116 79444 0.4460 +5116 79598 0.5460 +5116 79643 0.4360 +5116 79648 0.5290 +5116 79659 0.5420 +5116 79848 0.6510 +5116 79866 0.5350 +5116 79902 0.9270 +5116 79959 0.4290 +5116 80152 0.4210 +5116 80184 0.9560 +5116 81565 0.4250 +5116 81929 0.4790 +5116 84260 0.5570 +5116 84902 0.4110 +5116 85302 0.4140 +5116 85378 0.5300 +5116 85379 0.4620 +5116 85459 0.6960 +5116 89853 0.4050 +5116 90410 0.4950 +5116 91754 0.4200 +5116 91782 0.4540 +5116 91860 0.7910 +5116 92421 0.4050 +5116 93323 0.6880 +5116 93343 0.4030 +5116 114791 0.4820 +5116 115106 0.6270 +5116 116840 0.9020 +5116 117177 0.6280 +5116 117178 0.7030 +5116 121441 0.8540 +5116 128866 0.4140 +5116 129868 0.4980 +5116 134359 0.4810 +5116 137492 0.4160 +5116 140290 0.4180 +5116 140735 0.6400 +5116 152185 0.7580 +5116 152206 0.4600 +5116 153241 0.8660 +5116 159989 0.4240 +5116 161582 0.4080 +5116 163688 0.7920 +5116 163786 0.8280 +5116 165055 0.5200 +5116 200894 0.8210 +5116 201255 0.4310 +5116 259266 0.6280 +5116 282809 0.5770 +5116 282991 0.4560 +5116 284403 0.5950 +5116 343099 0.5670 +5116 375686 0.7750 +5116 440093 0.4500 +5116 440145 0.6210 +5116 440686 0.4700 +5116 643803 0.4050 +5116 653604 0.4770 +5116 728642 0.5500 +5118 5265 0.4010 +5118 5351 0.4100 +5118 5357 0.4970 +5118 5549 0.4410 +5118 6347 0.4230 +5118 6678 0.5080 +5118 7045 0.4470 +5118 7057 0.7740 +5118 7058 0.4150 +5118 7092 0.5140 +5118 7093 0.9170 +5118 7148 0.4270 +5118 7373 0.4650 +5118 8646 0.4680 +5118 8974 0.4960 +5118 8985 0.4080 +5118 9509 0.5390 +5118 10536 0.4200 +5118 10631 0.4380 +5118 11117 0.4720 +5118 25878 0.4260 +5118 30008 0.4730 +5118 50509 0.5770 +5118 54587 0.4730 +5118 55214 0.4640 +5118 57124 0.4520 +5118 60681 0.4570 +5118 64175 0.4360 +5118 80781 0.6000 +5118 84171 0.4290 +5118 84695 0.5000 +5118 85301 0.5330 +5118 169044 0.4850 +5118 255631 0.5930 +5119 5252 0.6610 +5119 5878 0.4050 +5119 6683 0.5750 +5119 7251 0.8620 +5119 7329 0.6330 +5119 7341 0.5350 +5119 8027 0.8160 +5119 9063 0.7670 +5119 9101 0.8660 +5119 9146 0.8140 +5119 9525 0.9990 +5119 9605 0.4950 +5119 9798 0.9990 +5119 9810 0.4650 +5119 10015 0.7090 +5119 10254 0.7080 +5119 10421 0.6400 +5119 10548 0.5540 +5119 10617 0.9620 +5119 11061 0.5640 +5119 11267 0.8540 +5119 23493 0.4760 +5119 25930 0.4780 +5119 25978 0.9960 +5119 27183 0.9990 +5119 27243 0.9990 +5119 28996 0.5880 +5119 51028 0.8680 +5119 51160 0.8810 +5119 51271 0.8160 +5119 51510 0.9940 +5119 51534 0.9980 +5119 51652 0.9980 +5119 54862 0.6980 +5119 55048 0.7010 +5119 55165 0.4290 +5119 55293 0.7000 +5119 57132 0.9910 +5119 57410 0.4400 +5119 60626 0.4240 +5119 64149 0.4460 +5119 79007 0.4140 +5119 79042 0.4970 +5119 79643 0.9930 +5119 79720 0.8620 +5119 80746 0.4330 +5119 84313 0.9510 +5119 84936 0.4170 +5119 89853 0.6880 +5119 90417 0.4140 +5119 91782 0.9450 +5119 92421 0.9860 +5119 93343 0.7510 +5119 114034 0.4230 +5119 124045 0.4110 +5119 128866 0.9220 +5119 129531 0.9830 +5119 137492 0.8150 +5119 147807 0.4190 +5119 148362 0.5240 +5119 155382 0.6270 +5119 197259 0.9460 +5119 221496 0.4030 +5119 283989 0.5860 +5119 338917 0.4200 +5119 390595 0.5400 +5119 100526767 0.9970 +5121 5816 0.5600 +5121 7267 0.4810 +5121 7466 0.4560 +5121 9454 0.5010 +5121 9619 0.6850 +5121 10636 0.6330 +5121 10777 0.5540 +5121 11030 0.4260 +5121 51806 0.9810 +5121 54550 0.4840 +5121 63982 0.4470 +5121 79959 0.4180 +5121 83442 0.4610 +5121 84253 0.5030 +5121 85397 0.4760 +5121 91860 0.9800 +5121 132204 0.4480 +5121 148281 0.4040 +5121 163688 0.9860 +5121 347902 0.4940 +5122 5167 0.4320 +5122 5443 0.9460 +5122 5697 0.5680 +5122 6041 0.4050 +5122 6447 0.7860 +5122 6492 0.5470 +5122 6514 0.5320 +5122 6616 0.4120 +5122 6750 0.5080 +5122 6833 0.5920 +5122 7113 0.4370 +5122 7124 0.5720 +5122 7132 0.5500 +5122 7275 0.6110 +5122 7289 0.4220 +5122 7351 0.4870 +5122 7857 0.6450 +5122 8717 0.5220 +5122 8720 0.4510 +5122 8737 0.8810 +5122 8772 0.6240 +5122 8837 0.4790 +5122 9388 0.4350 +5122 9394 0.4210 +5122 9607 0.6060 +5122 9672 0.4430 +5122 10105 0.4070 +5122 10226 0.4080 +5122 11035 0.8880 +5122 11132 0.4420 +5122 11254 0.6030 +5122 22836 0.5750 +5122 23301 0.4060 +5122 23788 0.5540 +5122 25970 0.7460 +5122 27344 0.8480 +5122 29106 0.5040 +5122 50674 0.5030 +5122 51738 0.8440 +5122 57194 0.4440 +5122 60528 0.4240 +5122 79047 0.4060 +5122 79068 0.8010 +5122 84504 0.5270 +5122 84634 0.5560 +5122 89866 0.4210 +5122 112609 0.5100 +5122 114131 0.4090 +5122 129787 0.4470 +5122 132789 0.6720 +5122 169026 0.5690 +5122 169355 0.5470 +5122 192111 0.5130 +5122 197259 0.8510 +5122 222546 0.4600 +5122 256297 0.4210 +5122 257194 0.6380 +5122 338557 0.6480 +5125 5158 0.5370 +5125 5788 0.6350 +5125 6013 0.4110 +5125 6041 0.4600 +5125 6447 0.5100 +5125 7113 0.5310 +5125 8379 0.4020 +5125 8720 0.7530 +5125 8895 0.4240 +5125 9388 0.4990 +5125 10220 0.7410 +5125 10379 0.4320 +5125 22853 0.4310 +5125 23301 0.4340 +5125 23600 0.4310 +5125 27232 0.4240 +5125 27344 0.4120 +5125 60528 0.4620 +5125 80320 0.7240 +5125 85414 0.4270 +5125 170589 0.4400 +5125 255738 0.8670 +5125 338328 0.7950 +5125 643418 0.8920 +5125 100131390 0.5540 +5126 5173 0.4200 +5126 5179 0.4210 +5126 5443 0.5800 +5126 5539 0.5510 +5126 5798 0.6490 +5126 5799 0.6100 +5126 5834 0.6130 +5126 6447 0.9830 +5126 6514 0.5440 +5126 6616 0.4620 +5126 6750 0.7010 +5126 6751 0.5330 +5126 6752 0.4920 +5126 6753 0.4430 +5126 6754 0.5990 +5126 6755 0.6460 +5126 6833 0.6060 +5126 6860 0.5540 +5126 7056 0.7790 +5126 7857 0.5300 +5126 8618 0.4080 +5126 8941 0.4110 +5126 10666 0.5680 +5126 23542 0.4490 +5126 27344 0.5760 +5126 28972 0.5070 +5126 29106 0.5020 +5126 50674 0.5060 +5126 57709 0.4330 +5126 80329 0.4030 +5126 84504 0.5320 +5126 114131 0.4240 +5126 169026 0.6140 +5126 340895 0.4110 +5126 389075 0.5650 +5127 5128 0.5350 +5127 5129 0.4420 +5127 5347 0.4200 +5127 5520 0.5230 +5127 5521 0.4110 +5127 6198 0.4490 +5127 6790 0.4070 +5127 7011 0.4300 +5127 7317 0.6030 +5127 7465 0.4710 +5127 7529 0.6310 +5127 7531 0.4660 +5127 7532 0.5870 +5127 7533 0.5400 +5127 7534 0.6770 +5127 8242 0.4360 +5127 8555 0.4070 +5127 8556 0.4090 +5127 8697 0.5350 +5127 8812 0.4810 +5127 8851 0.4550 +5127 8881 0.4920 +5127 8900 0.5150 +5127 9024 0.4040 +5127 9055 0.4110 +5127 9088 0.4940 +5127 9133 0.5360 +5127 9134 0.4590 +5127 9212 0.4160 +5127 10084 0.4120 +5127 10309 0.4520 +5127 10769 0.4350 +5127 10971 0.4190 +5127 10983 0.5940 +5127 11141 0.4120 +5127 11200 0.4210 +5127 22858 0.4830 +5127 23424 0.7090 +5127 27152 0.5270 +5127 51343 0.5550 +5127 54619 0.4400 +5127 55255 0.5360 +5127 55511 0.4140 +5127 64682 0.4620 +5127 79616 0.4140 +5127 79720 0.4290 +5127 79935 0.5360 +5127 85417 0.5560 +5127 91768 0.6540 +5127 92292 0.4210 +5127 151195 0.9570 +5127 159091 0.5000 +5127 166979 0.5270 +5127 219771 0.9700 +5127 219970 0.4210 +5127 345079 0.4400 +5127 494551 0.4200 +5127 645121 0.5630 +5127 100287520 0.4210 +5128 5129 0.6110 +5128 5218 0.7200 +5128 5520 0.5250 +5128 5521 0.4200 +5128 6790 0.4050 +5128 7011 0.4340 +5128 7465 0.4650 +5128 7529 0.5040 +5128 7532 0.4270 +5128 7533 0.4250 +5128 7534 0.4080 +5128 8558 0.4350 +5128 8697 0.5080 +5128 8767 0.4150 +5128 8812 0.4140 +5128 8881 0.4900 +5128 8900 0.6840 +5128 9088 0.4200 +5128 9133 0.6210 +5128 9134 0.5960 +5128 9212 0.4050 +5128 10309 0.4400 +5128 10590 0.5060 +5128 10769 0.4620 +5128 10983 0.4400 +5128 23387 0.4410 +5128 23424 0.9530 +5128 27152 0.5280 +5128 51343 0.5310 +5128 55061 0.4410 +5128 55255 0.5360 +5128 55527 0.4800 +5128 55664 0.4260 +5128 64682 0.4620 +5128 79616 0.4860 +5128 79935 0.5360 +5128 81669 0.5210 +5128 85417 0.5360 +5128 91768 0.8850 +5128 92292 0.4210 +5128 113201 0.4090 +5128 151195 0.4870 +5128 166979 0.5790 +5128 219771 0.5940 +5128 219970 0.4210 +5128 345079 0.4400 +5128 494551 0.4200 +5128 645121 0.4400 +5128 100287520 0.4210 +5129 5770 0.5110 +5129 5862 0.5540 +5129 5883 0.5990 +5129 6790 0.4010 +5129 7011 0.4290 +5129 7153 0.4050 +5129 7317 0.4560 +5129 7465 0.4930 +5129 7529 0.4910 +5129 7534 0.4190 +5129 8266 0.4150 +5129 8555 0.4140 +5129 8697 0.5040 +5129 8812 0.5460 +5129 8881 0.4870 +5129 8900 0.5080 +5129 9088 0.4210 +5129 9133 0.5830 +5129 9134 0.4950 +5129 9212 0.4080 +5129 9413 0.4370 +5129 10309 0.4400 +5129 10769 0.4400 +5129 10783 0.4010 +5129 10971 0.5050 +5129 10983 0.4910 +5129 11200 0.4380 +5129 23424 0.7990 +5129 25870 0.4690 +5129 26003 0.5100 +5129 26097 0.4180 +5129 27152 0.5270 +5129 51343 0.5270 +5129 51560 0.4590 +5129 54619 0.4740 +5129 55255 0.5360 +5129 55577 0.4030 +5129 64682 0.4720 +5129 65061 0.6790 +5129 79616 0.5360 +5129 79935 0.5360 +5129 81669 0.5440 +5129 83894 0.4200 +5129 85417 0.5360 +5129 91768 0.7650 +5129 92292 0.4210 +5129 118980 0.4230 +5129 151195 0.4660 +5129 166979 0.5270 +5129 219771 0.5910 +5129 219970 0.4210 +5129 345079 0.4590 +5129 494551 0.4200 +5129 645121 0.6310 +5129 100287520 0.4210 +5130 5337 0.4400 +5130 5577 0.4030 +5130 5594 0.9080 +5130 5595 0.9110 +5130 5599 0.9090 +5130 5601 0.9070 +5130 5833 0.4250 +5130 6397 0.5040 +5130 6750 0.5870 +5130 7037 0.4420 +5130 7431 0.4610 +5130 8694 0.5030 +5130 8760 0.4690 +5130 9468 0.9740 +5130 9791 0.4990 +5130 10162 0.4210 +5130 10269 0.4020 +5130 10390 0.9870 +5130 10400 0.7290 +5130 10423 0.4790 +5130 10555 0.4780 +5130 10994 0.5940 +5130 22916 0.4570 +5130 23175 0.4220 +5130 23307 0.4820 +5130 23761 0.5720 +5130 25921 0.5070 +5130 26043 0.5550 +5130 26061 0.5940 +5130 26580 0.4700 +5130 51477 0.4410 +5130 54947 0.4370 +5130 55224 0.6350 +5130 55349 0.4840 +5130 55500 0.5960 +5130 55654 0.4370 +5130 56894 0.4570 +5130 56994 0.9840 +5130 64802 0.4620 +5130 79888 0.4410 +5130 80235 0.4340 +5130 81490 0.4160 +5130 84335 0.4040 +5130 84984 0.5040 +5130 85465 0.7570 +5130 116211 0.4490 +5130 131540 0.5800 +5130 162466 0.9270 +5130 165918 0.4920 +5130 200931 0.4040 +5130 200933 0.5470 +5130 205564 0.5170 +5130 221477 0.4570 +5130 255758 0.8150 +5130 255798 0.5300 +5130 286151 0.4040 +5130 348793 0.6340 +5132 5216 0.5070 +5132 5355 0.5320 +5132 5599 0.4250 +5132 5705 0.4910 +5132 5949 0.6010 +5132 5957 0.6640 +5132 5961 0.4960 +5132 6004 0.6050 +5132 6010 0.8280 +5132 6011 0.5070 +5132 6094 0.4990 +5132 6101 0.4220 +5132 6103 0.4910 +5132 6121 0.6620 +5132 6295 0.7720 +5132 8787 0.4170 +5132 8801 0.9330 +5132 10681 0.5070 +5132 27069 0.5810 +5132 131890 0.4980 +5132 132954 0.4480 +5132 345456 0.5730 +5132 375189 0.5740 +5132 387521 0.4480 +5132 388531 0.4390 +5133 5290 0.4730 +5133 5395 0.4480 +5133 5426 0.4780 +5133 5551 0.7000 +5133 5728 0.5970 +5133 5777 0.9610 +5133 5781 0.9980 +5133 5788 0.6900 +5133 5795 0.4180 +5133 5817 0.8830 +5133 5819 0.6700 +5133 5979 0.4180 +5133 6098 0.5050 +5133 6347 0.5090 +5133 6348 0.4710 +5133 6351 0.5020 +5133 6361 0.5880 +5133 6362 0.5460 +5133 6363 0.5530 +5133 6366 0.5790 +5133 6367 0.6370 +5133 6369 0.4420 +5133 6375 0.4110 +5133 6376 0.4260 +5133 6382 0.4210 +5133 6387 0.4470 +5133 6402 0.6460 +5133 6490 0.6830 +5133 6504 0.4280 +5133 6714 0.4250 +5133 6772 0.5480 +5133 6774 0.6390 +5133 6775 0.4270 +5133 6776 0.4450 +5133 6777 0.4330 +5133 6794 0.4040 +5133 6932 0.5810 +5133 7040 0.5200 +5133 7099 0.4460 +5133 7124 0.7000 +5133 7132 0.5640 +5133 7157 0.6170 +5133 7292 0.5640 +5133 7293 0.8120 +5133 7535 0.7300 +5133 7852 0.5310 +5133 8034 0.5740 +5133 8320 0.6070 +5133 8639 0.4450 +5133 8651 0.6360 +5133 8740 0.4110 +5133 8743 0.5500 +5133 8744 0.4820 +5133 8764 0.7740 +5133 8784 0.7090 +5133 9034 0.4720 +5133 9332 0.6750 +5133 9437 0.4820 +5133 9760 0.4140 +5133 10004 0.4790 +5133 10125 0.4080 +5133 10219 0.7600 +5133 10225 0.5640 +5133 10232 0.5050 +5133 10331 0.4220 +5133 10344 0.4610 +5133 10447 0.7340 +5133 10538 0.8020 +5133 10563 0.5880 +5133 10578 0.4830 +5133 10663 0.5890 +5133 10666 0.5570 +5133 10859 0.4160 +5133 10870 0.4310 +5133 11126 0.7800 +5133 11148 0.4790 +5133 11314 0.5240 +5133 22807 0.4220 +5133 22914 0.7390 +5133 23308 0.8900 +5133 25945 0.5070 +5133 26151 0.4120 +5133 27087 0.5810 +5133 29121 0.4910 +5133 29126 0.9990 +5133 29851 0.9410 +5133 30009 0.7000 +5133 50615 0.6420 +5133 50616 0.6060 +5133 50943 0.7990 +5133 51284 0.4390 +5133 51744 0.6490 +5133 54106 0.4730 +5133 54899 0.4230 +5133 54908 0.7560 +5133 55024 0.4740 +5133 56905 0.4090 +5133 57509 0.9080 +5133 57661 0.4070 +5133 57817 0.4250 +5133 57823 0.4510 +5133 59067 0.5170 +5133 64092 0.4850 +5133 64115 0.6260 +5133 79679 0.8510 +5133 80008 0.4090 +5133 80321 0.4320 +5133 80380 0.9990 +5133 80381 0.7840 +5133 80736 0.4350 +5133 84626 0.4230 +5133 84868 0.8910 +5133 84969 0.4180 +5133 114836 0.4650 +5133 115004 0.4170 +5133 124599 0.4650 +5133 126259 0.5110 +5133 140885 0.4740 +5133 143903 0.4160 +5133 151888 0.8950 +5133 168400 0.5830 +5133 169355 0.6230 +5133 201633 0.8460 +5133 259197 0.4900 +5133 282618 0.5070 +5133 284194 0.9470 +5133 284266 0.5690 +5133 654346 0.9480 +5133 100133941 0.6080 +5133 102723407 0.9230 +5134 5689 0.6820 +5134 6187 0.7220 +5134 6908 0.5540 +5134 8443 0.6010 +5134 8519 0.4220 +5134 9141 0.4450 +5134 9519 0.4120 +5134 9611 0.4560 +5134 10196 0.5220 +5134 10846 0.4270 +5134 11179 0.7000 +5134 28987 0.4320 +5134 51057 0.4790 +5134 55179 0.4110 +5134 55780 0.4130 +5134 56647 0.5340 +5134 56902 0.5290 +5134 59067 0.4380 +5134 83743 0.4200 +5134 84306 0.4470 +5134 84498 0.5970 +5134 84946 0.6030 +5134 90121 0.4490 +5134 170850 0.4180 +5134 326625 0.4070 +5136 5137 0.9600 +5136 5138 0.6160 +5136 5141 0.5590 +5136 5143 0.5330 +5136 5144 0.5430 +5136 5150 0.5610 +5136 5151 0.5310 +5136 5152 0.5660 +5136 5153 0.9110 +5136 5167 0.9110 +5136 5169 0.9130 +5136 5592 0.4550 +5136 5915 0.4300 +5136 8505 0.7610 +5136 8622 0.5560 +5136 8654 0.6150 +5136 8833 0.9000 +5136 9131 0.5890 +5136 9583 0.6720 +5136 10001 0.5820 +5136 10411 0.4210 +5136 10846 0.6110 +5136 11069 0.4550 +5136 22978 0.6500 +5136 24137 0.5490 +5136 26289 0.7030 +5136 26468 0.7310 +5136 27115 0.5520 +5136 30833 0.6500 +5136 50808 0.9040 +5136 50940 0.5910 +5136 51251 0.6930 +5136 51764 0.9110 +5136 51806 0.9720 +5136 55811 0.7210 +5136 56953 0.6500 +5136 84618 0.6620 +5136 91860 0.9690 +5136 93034 0.6500 +5136 115024 0.6930 +5136 122481 0.6640 +5136 124583 0.6950 +5136 134829 0.4660 +5136 158067 0.6910 +5136 163688 0.9690 +5136 196883 0.7130 +5136 221264 0.6810 +5136 346562 0.9280 +5136 377841 0.6770 +5136 729665 0.5050 +5136 100526794 0.6500 +5136 102157402 0.6500 +5137 5153 0.9570 +5137 5167 0.9100 +5137 5169 0.9100 +5137 5592 0.4450 +5137 5862 0.5460 +5137 8833 0.9010 +5137 8861 0.4910 +5137 9583 0.6720 +5137 10411 0.4050 +5137 11069 0.4280 +5137 22978 0.6500 +5137 26289 0.6920 +5137 26468 0.8900 +5137 30833 0.6500 +5137 50808 0.9040 +5137 51251 0.6930 +5137 51764 0.9010 +5137 51806 0.9730 +5137 55811 0.7160 +5137 56953 0.6500 +5137 79959 0.4070 +5137 84618 0.6500 +5137 91860 0.9710 +5137 93034 0.6500 +5137 115024 0.6930 +5137 122481 0.6640 +5137 124583 0.6950 +5137 158067 0.6910 +5137 163688 0.9710 +5137 196883 0.7150 +5137 221264 0.6810 +5137 344892 0.4020 +5137 346562 0.9050 +5137 377841 0.6770 +5137 729665 0.4590 +5137 100526794 0.6500 +5137 102157402 0.6500 +5138 5139 0.4090 +5138 5141 0.7420 +5138 5143 0.5350 +5138 5144 0.5640 +5138 5148 0.8650 +5138 5150 0.5860 +5138 5151 0.5710 +5138 5152 0.5640 +5138 5153 0.7320 +5138 5167 0.9180 +5138 5169 0.9140 +5138 5566 0.4350 +5138 5567 0.4410 +5138 5568 0.4270 +5138 5577 0.4020 +5138 8622 0.5330 +5138 8654 0.9500 +5138 8833 0.9000 +5138 9049 0.4970 +5138 9583 0.6500 +5138 10411 0.4260 +5138 10846 0.5040 +5138 22978 0.6680 +5138 26289 0.6750 +5138 26747 0.4460 +5138 26999 0.4840 +5138 27115 0.5830 +5138 30833 0.6500 +5138 50808 0.9040 +5138 50940 0.4910 +5138 51251 0.6840 +5138 55811 0.7440 +5138 56953 0.6820 +5138 84618 0.6590 +5138 93034 0.6890 +5138 115024 0.6840 +5138 122481 0.6660 +5138 124538 0.4020 +5138 124583 0.7170 +5138 158067 0.7090 +5138 196883 0.7980 +5138 221264 0.6660 +5138 377841 0.6580 +5138 100526794 0.6900 +5138 102157402 0.6500 +5139 5140 0.9190 +5139 5141 0.5810 +5139 5167 0.9080 +5139 5169 0.9060 +5139 5294 0.5480 +5139 5339 0.5820 +5139 5566 0.9280 +5139 5567 0.8980 +5139 5568 0.8970 +5139 5573 0.5830 +5139 5592 0.4530 +5139 6262 0.4010 +5139 8654 0.4260 +5139 8833 0.9000 +5139 9465 0.7250 +5139 9583 0.6500 +5139 10411 0.4310 +5139 10846 0.4070 +5139 11069 0.4130 +5139 22978 0.6950 +5139 26289 0.6740 +5139 30833 0.6500 +5139 50808 0.9070 +5139 50940 0.5620 +5139 51251 0.6620 +5139 53919 0.5650 +5139 55106 0.9730 +5139 55716 0.4020 +5139 55811 0.6960 +5139 56953 0.6500 +5139 84618 0.6500 +5139 93034 0.6800 +5139 115024 0.6620 +5139 116236 0.4200 +5139 122481 0.6660 +5139 124583 0.6750 +5139 158067 0.6660 +5139 196883 0.7660 +5139 221264 0.6660 +5139 284403 0.4220 +5139 377841 0.6780 +5139 494551 0.4030 +5139 100526794 0.6810 +5139 102157402 0.6500 +5140 5144 0.6310 +5140 5167 0.9050 +5140 5169 0.9310 +5140 5294 0.7570 +5140 5346 0.5500 +5140 5566 0.8480 +5140 5567 0.8520 +5140 5568 0.8470 +5140 5577 0.4610 +5140 5682 0.4120 +5140 5906 0.4140 +5140 6319 0.4460 +5140 7772 0.5270 +5140 8165 0.5900 +5140 8649 0.7220 +5140 8833 0.9000 +5140 8891 0.5490 +5140 9465 0.4520 +5140 9583 0.6500 +5140 9827 0.7200 +5140 9844 0.7350 +5140 10000 0.9200 +5140 10270 0.4190 +5140 10411 0.7620 +5140 10542 0.7200 +5140 10989 0.4880 +5140 11069 0.4470 +5140 11215 0.4100 +5140 11216 0.4730 +5140 22800 0.4110 +5140 22978 0.6610 +5140 23533 0.6630 +5140 26289 0.6640 +5140 27293 0.4500 +5140 28956 0.7200 +5140 30833 0.7930 +5140 50808 0.9090 +5140 50940 0.5450 +5140 50943 0.5230 +5140 51251 0.6620 +5140 54331 0.4810 +5140 55004 0.7200 +5140 55255 0.7260 +5140 55811 0.6960 +5140 56953 0.6700 +5140 57104 0.4600 +5140 57521 0.4780 +5140 57589 0.7200 +5140 84618 0.6500 +5140 85442 0.7200 +5140 93034 0.6500 +5140 115024 0.6620 +5140 116236 0.7230 +5140 122481 0.6660 +5140 124583 0.6840 +5140 140775 0.7200 +5140 146850 0.7740 +5140 158067 0.6660 +5140 196883 0.7440 +5140 203228 0.7200 +5140 221264 0.6670 +5140 253260 0.4820 +5140 377841 0.6500 +5140 389541 0.7200 +5140 100526794 0.6500 +5140 102157402 0.6500 +5141 5143 0.4280 +5141 5144 0.6820 +5141 5150 0.5340 +5141 5151 0.6220 +5141 5153 0.5550 +5141 5167 0.9070 +5141 5169 0.9070 +5141 5566 0.9660 +5141 5567 0.9640 +5141 5568 0.9640 +5141 5576 0.5450 +5141 5577 0.4700 +5141 5592 0.4730 +5141 5598 0.6380 +5141 5816 0.4910 +5141 6262 0.6040 +5141 6295 0.8110 +5141 7124 0.5760 +5141 8165 0.9730 +5141 8622 0.5410 +5141 8654 0.6360 +5141 8878 0.5730 +5141 9049 0.5310 +5141 9465 0.4880 +5141 9472 0.9410 +5141 9495 0.6470 +5141 10142 0.6260 +5141 10270 0.6230 +5141 10399 0.8420 +5141 10411 0.8970 +5141 10566 0.5820 +5141 10846 0.7420 +5141 11069 0.7250 +5141 11214 0.4640 +5141 22978 0.6610 +5141 23043 0.4330 +5141 26289 0.6640 +5141 27115 0.4730 +5141 27185 0.9930 +5141 30833 0.6510 +5141 50808 0.9040 +5141 50940 0.5640 +5141 51251 0.6640 +5141 51806 0.5410 +5141 54820 0.6750 +5141 55811 0.7670 +5141 56953 0.6500 +5141 60386 0.7410 +5141 81565 0.7150 +5141 84618 0.6520 +5141 91860 0.5360 +5141 93034 0.6520 +5141 115024 0.6640 +5141 120892 0.4580 +5141 122481 0.6660 +5141 126393 0.5700 +5141 158067 0.6920 +5141 163688 0.5290 +5141 196883 0.8020 +5141 221264 0.6660 +5141 377841 0.6500 +5141 100526794 0.6520 +5141 102157402 0.6500 +5142 5144 0.7570 +5142 5167 0.9240 +5142 5169 0.9140 +5142 5294 0.6080 +5142 5566 0.8440 +5142 5567 0.8460 +5142 5568 0.8420 +5142 5598 0.4160 +5142 5743 0.4460 +5142 5816 0.4670 +5142 5966 0.4720 +5142 5971 0.4450 +5142 6261 0.5900 +5142 6872 0.4120 +5142 7124 0.4010 +5142 8165 0.6570 +5142 8912 0.5600 +5142 8913 0.5440 +5142 9254 0.5630 +5142 9465 0.6370 +5142 9472 0.5490 +5142 9495 0.5460 +5142 10215 0.4190 +5142 10368 0.5400 +5142 10369 0.5830 +5142 10411 0.6670 +5142 11069 0.5780 +5142 22809 0.6750 +5142 22978 0.6690 +5142 23780 0.4230 +5142 25858 0.5400 +5142 26146 0.7230 +5142 26289 0.6670 +5142 27092 0.5400 +5142 27185 0.9980 +5142 30833 0.6500 +5142 50808 0.9110 +5142 51251 0.6930 +5142 54820 0.8020 +5142 55799 0.5670 +5142 55811 0.7100 +5142 56953 0.6500 +5142 57685 0.5920 +5142 57731 0.4930 +5142 57828 0.5410 +5142 59283 0.5400 +5142 59284 0.5400 +5142 59285 0.5400 +5142 60386 0.7300 +5142 79820 0.5400 +5142 80832 0.4220 +5142 81565 0.8050 +5142 84152 0.7920 +5142 84618 0.6520 +5142 91752 0.4170 +5142 93034 0.6520 +5142 93589 0.5590 +5142 115024 0.6640 +5142 117144 0.5440 +5142 117155 0.5540 +5142 122481 0.6660 +5142 158067 0.6920 +5142 160851 0.4100 +5142 196883 0.7730 +5142 221264 0.6660 +5142 246329 0.5410 +5142 257044 0.5400 +5142 257062 0.5400 +5142 285588 0.5510 +5142 340393 0.5400 +5142 347732 0.5470 +5142 377841 0.6570 +5142 378807 0.5450 +5142 100130348 0.5400 +5142 100526794 0.6520 +5142 102157402 0.6500 +5143 5144 0.4250 +5143 5150 0.4860 +5143 5151 0.5060 +5143 5153 0.5290 +5143 5167 0.9070 +5143 5169 0.9070 +5143 5311 0.8990 +5143 5449 0.5140 +5143 5566 0.8140 +5143 5567 0.8140 +5143 5568 0.8130 +5143 5864 0.6160 +5143 6717 0.5410 +5143 6752 0.4600 +5143 7039 0.4240 +5143 8622 0.5780 +5143 9049 0.4400 +5143 9495 0.5580 +5143 10846 0.5370 +5143 11069 0.4110 +5143 22978 0.6610 +5143 25987 0.4590 +5143 26289 0.6640 +5143 27115 0.4660 +5143 30833 0.6500 +5143 50808 0.9040 +5143 50940 0.5610 +5143 51251 0.6820 +5143 54898 0.5810 +5143 55811 0.7020 +5143 56953 0.6500 +5143 60386 0.6460 +5143 60481 0.5070 +5143 79839 0.4800 +5143 80320 0.4270 +5143 84618 0.6520 +5143 93034 0.6520 +5143 115024 0.6640 +5143 122481 0.6690 +5143 128178 0.6070 +5143 136259 0.4700 +5143 158067 0.6920 +5143 196883 0.7580 +5143 221264 0.6660 +5143 286827 0.4350 +5143 377841 0.6500 +5143 100526794 0.6520 +5143 102157402 0.6500 +5144 5150 0.4980 +5144 5151 0.5370 +5144 5153 0.5700 +5144 5167 0.9100 +5144 5169 0.9070 +5144 5332 0.4160 +5144 5566 0.9680 +5144 5567 0.9190 +5144 5568 0.9180 +5144 5573 0.6430 +5144 5577 0.4340 +5144 5594 0.4190 +5144 5598 0.5220 +5144 6009 0.5140 +5144 6261 0.7070 +5144 6262 0.4710 +5144 6714 0.6400 +5144 8165 0.8920 +5144 8611 0.4190 +5144 8622 0.5340 +5144 8675 0.4070 +5144 8912 0.5540 +5144 8913 0.5510 +5144 9254 0.5790 +5144 9322 0.4970 +5144 9378 0.4060 +5144 9465 0.8720 +5144 9472 0.9440 +5144 9495 0.6030 +5144 9590 0.8250 +5144 9659 0.9840 +5144 10142 0.8090 +5144 10368 0.5400 +5144 10369 0.5490 +5144 10399 0.8800 +5144 10411 0.9100 +5144 10426 0.4460 +5144 10733 0.4780 +5144 10844 0.4080 +5144 10846 0.5910 +5144 11069 0.5490 +5144 11214 0.6360 +5144 22941 0.4710 +5144 22978 0.6610 +5144 25858 0.5400 +5144 26048 0.4250 +5144 26289 0.6640 +5144 27092 0.5400 +5144 27115 0.5200 +5144 27185 0.6420 +5144 30833 0.6550 +5144 50808 0.9100 +5144 50940 0.5460 +5144 51251 0.6640 +5144 51806 0.6080 +5144 55755 0.6790 +5144 55799 0.5780 +5144 55811 0.7210 +5144 56953 0.6500 +5144 57521 0.4430 +5144 57685 0.5680 +5144 57828 0.5410 +5144 59283 0.5400 +5144 59284 0.5400 +5144 59285 0.5400 +5144 60386 0.7500 +5144 64784 0.4350 +5144 79820 0.5460 +5144 81669 0.4210 +5144 84618 0.6520 +5144 91860 0.6020 +5144 93034 0.6520 +5144 93589 0.5590 +5144 94103 0.5070 +5144 115024 0.6640 +5144 117144 0.5440 +5144 117155 0.5540 +5144 122481 0.6660 +5144 158067 0.6920 +5144 163486 0.5830 +5144 163688 0.5960 +5144 196883 0.7920 +5144 201514 0.4550 +5144 221264 0.6690 +5144 246329 0.5410 +5144 253260 0.4300 +5144 257044 0.5400 +5144 257062 0.5400 +5144 285588 0.5510 +5144 340393 0.5400 +5144 347732 0.5470 +5144 377841 0.6500 +5144 378807 0.5450 +5144 100130348 0.5400 +5144 100526794 0.6520 +5144 102157402 0.6500 +5145 5147 0.6850 +5145 5148 0.9980 +5145 5149 0.7570 +5145 5158 0.9820 +5145 5159 0.4350 +5145 5167 0.7260 +5145 5169 0.7340 +5145 5956 0.4680 +5145 5957 0.6610 +5145 5961 0.7850 +5145 5995 0.4590 +5145 6010 0.8120 +5145 6011 0.5830 +5145 6017 0.6100 +5145 6094 0.8030 +5145 6100 0.7100 +5145 6103 0.7750 +5145 6121 0.8130 +5145 6295 0.5150 +5145 7287 0.8060 +5145 7399 0.6260 +5145 7401 0.5360 +5145 7439 0.7030 +5145 7474 0.5010 +5145 7481 0.4990 +5145 7855 0.5000 +5145 7976 0.4990 +5145 8322 0.5640 +5145 8323 0.4990 +5145 8787 0.5610 +5145 8833 0.9020 +5145 8842 0.5680 +5145 9129 0.6910 +5145 9187 0.6530 +5145 9227 0.5540 +5145 9583 0.6500 +5145 10002 0.7690 +5145 10210 0.6790 +5145 10461 0.6660 +5145 10594 0.7070 +5145 10681 0.6210 +5145 22978 0.6610 +5145 23020 0.6820 +5145 23746 0.7060 +5145 25794 0.7500 +5145 26121 0.7510 +5145 30833 0.6500 +5145 50939 0.7800 +5145 51251 0.6940 +5145 51764 0.5220 +5145 54331 0.5210 +5145 54714 0.6870 +5145 55811 0.6760 +5145 55812 0.5430 +5145 55970 0.5330 +5145 55975 0.6480 +5145 56953 0.6500 +5145 57010 0.5220 +5145 57096 0.6120 +5145 59345 0.6030 +5145 64218 0.6270 +5145 79947 0.4800 +5145 80184 0.4040 +5145 84140 0.5800 +5145 84618 0.6500 +5145 92211 0.4540 +5145 92840 0.4180 +5145 93034 0.6500 +5145 94137 0.6800 +5145 94235 0.5210 +5145 115024 0.6830 +5145 124583 0.6750 +5145 130557 0.7470 +5145 131890 0.6580 +5145 145226 0.7880 +5145 157657 0.4690 +5145 167691 0.4700 +5145 169522 0.4410 +5145 196883 0.7190 +5145 343035 0.4710 +5145 346007 0.8140 +5145 346562 0.4090 +5145 375298 0.8250 +5145 377841 0.6500 +5145 388531 0.7080 +5145 388939 0.7970 +5145 768206 0.8150 +5145 100526794 0.6500 +5146 5147 0.6630 +5146 5148 0.7420 +5146 5149 0.9210 +5146 5158 0.4110 +5146 5167 0.6990 +5146 5169 0.6990 +5146 5956 0.5360 +5146 5957 0.5830 +5146 5959 0.4290 +5146 5961 0.5320 +5146 6010 0.6670 +5146 6011 0.5070 +5146 6094 0.6270 +5146 6103 0.5490 +5146 6121 0.4620 +5146 7439 0.5810 +5146 8833 0.9010 +5146 8882 0.4900 +5146 9187 0.5990 +5146 9211 0.5600 +5146 9583 0.6500 +5146 9626 0.5320 +5146 10002 0.5590 +5146 22926 0.5700 +5146 22978 0.6710 +5146 23746 0.6020 +5146 25769 0.4660 +5146 25794 0.4670 +5146 26504 0.4010 +5146 30833 0.6500 +5146 51251 0.6740 +5146 54714 0.9840 +5146 55212 0.4910 +5146 55811 0.6600 +5146 56953 0.6540 +5146 57096 0.5390 +5146 83394 0.4240 +5146 84618 0.6500 +5146 84839 0.4920 +5146 92211 0.4820 +5146 92292 0.6680 +5146 93034 0.6580 +5146 93589 0.4480 +5146 94137 0.4460 +5146 94233 0.7370 +5146 115024 0.6740 +5146 115861 0.5260 +5146 118924 0.8260 +5146 124583 0.6750 +5146 131890 0.5100 +5146 152206 0.4430 +5146 157657 0.4390 +5146 169522 0.6450 +5146 196883 0.7190 +5146 346007 0.6130 +5146 346562 0.4200 +5146 375298 0.4500 +5146 377841 0.6500 +5146 388531 0.5120 +5146 100526794 0.6500 +5147 5148 0.5010 +5147 5149 0.4780 +5147 5150 0.5420 +5147 5158 0.6140 +5147 5167 0.6500 +5147 5169 0.6500 +5147 5872 0.7350 +5147 5906 0.6740 +5147 6009 0.9820 +5147 6010 0.4050 +5147 6011 0.6730 +5147 6103 0.9940 +5147 7289 0.4530 +5147 8100 0.4840 +5147 8766 0.4330 +5147 8833 0.9040 +5147 9094 0.8460 +5147 9126 0.4210 +5147 9320 0.4080 +5147 9364 0.7630 +5147 9583 0.6500 +5147 9657 0.4850 +5147 9731 0.4900 +5147 11127 0.4180 +5147 22897 0.6380 +5147 22978 0.6740 +5147 23322 0.6680 +5147 25861 0.4440 +5147 26123 0.5440 +5147 26267 0.4070 +5147 27031 0.4430 +5147 27077 0.4760 +5147 27115 0.4310 +5147 27289 0.5420 +5147 30833 0.6720 +5147 51251 0.6600 +5147 51259 0.5500 +5147 51524 0.4530 +5147 54806 0.5410 +5147 54903 0.4300 +5147 55811 0.6540 +5147 55971 0.4140 +5147 56623 0.9800 +5147 56953 0.6620 +5147 57096 0.6670 +5147 57545 0.5440 +5147 57576 0.5260 +5147 65062 0.5390 +5147 65250 0.4770 +5147 79583 0.5310 +5147 79600 0.5800 +5147 79848 0.5500 +5147 79867 0.4350 +5147 80184 0.5300 +5147 81554 0.7260 +5147 83874 0.4200 +5147 83988 0.4180 +5147 84618 0.6500 +5147 84747 0.7150 +5147 91147 0.4180 +5147 93034 0.6500 +5147 95681 0.6090 +5147 115024 0.6720 +5147 121268 0.5020 +5147 124583 0.6500 +5147 131890 0.4580 +5147 165100 0.4130 +5147 196883 0.6660 +5147 200894 0.9560 +5147 374654 0.4360 +5147 377841 0.6500 +5147 392509 0.4900 +5147 100526794 0.6500 +5148 5152 0.5790 +5148 5158 0.9970 +5148 5167 0.6580 +5148 5169 0.6500 +5148 5957 0.4280 +5148 5961 0.7910 +5148 5996 0.4830 +5148 5997 0.4830 +5148 5998 0.4830 +5148 6000 0.5790 +5148 6003 0.4830 +5148 6010 0.7450 +5148 6017 0.4990 +5148 6094 0.7540 +5148 6100 0.6930 +5148 6103 0.5960 +5148 6121 0.6900 +5148 7077 0.4260 +5148 7287 0.7070 +5148 7399 0.4020 +5148 7401 0.5070 +5148 7439 0.6680 +5148 7474 0.5050 +5148 7481 0.5060 +5148 7855 0.4990 +5148 7976 0.4990 +5148 8322 0.5070 +5148 8323 0.5060 +5148 8654 0.9320 +5148 8786 0.7090 +5148 8787 0.8180 +5148 8833 0.9000 +5148 8842 0.4850 +5148 9129 0.6740 +5148 9227 0.4330 +5148 9583 0.6500 +5148 9626 0.4050 +5148 9628 0.5790 +5148 10002 0.6570 +5148 10210 0.6860 +5148 10461 0.5910 +5148 10594 0.6780 +5148 10672 0.5170 +5148 10681 0.6330 +5148 22978 0.6870 +5148 23020 0.6680 +5148 23746 0.4860 +5148 24148 0.4460 +5148 25794 0.7320 +5148 26121 0.6630 +5148 30833 0.6520 +5148 50939 0.7750 +5148 51251 0.7000 +5148 51764 0.5170 +5148 54331 0.5130 +5148 55666 0.4140 +5148 55811 0.6690 +5148 55812 0.5060 +5148 55970 0.5130 +5148 55975 0.6690 +5148 56953 0.6500 +5148 59345 0.5830 +5148 60370 0.4730 +5148 64218 0.6590 +5148 79947 0.5430 +5148 84140 0.5070 +5148 84618 0.6500 +5148 93034 0.6500 +5148 94235 0.5130 +5148 115024 0.6500 +5148 124583 0.6500 +5148 130557 0.7950 +5148 145226 0.6770 +5148 157657 0.4800 +5148 164668 0.4520 +5148 196883 0.7050 +5148 284004 0.4980 +5148 346007 0.7250 +5148 346562 0.8040 +5148 375298 0.7390 +5148 377841 0.6500 +5148 388531 0.4950 +5148 388939 0.7930 +5148 431704 0.4830 +5148 768206 0.7820 +5148 100526794 0.6500 +5149 5158 0.6490 +5149 5167 0.6500 +5149 5169 0.6500 +5149 5956 0.5210 +5149 5957 0.6010 +5149 5961 0.4860 +5149 6010 0.5840 +5149 6011 0.4720 +5149 6017 0.4130 +5149 6094 0.5070 +5149 6103 0.4610 +5149 6121 0.4380 +5149 6295 0.4920 +5149 6623 0.4540 +5149 8833 0.9000 +5149 9187 0.5180 +5149 9583 0.6500 +5149 9626 0.5470 +5149 10002 0.6060 +5149 11249 0.4540 +5149 22926 0.5900 +5149 22978 0.6500 +5149 23746 0.5160 +5149 25769 0.4170 +5149 25794 0.4690 +5149 30010 0.4660 +5149 30833 0.6500 +5149 51251 0.6500 +5149 54714 0.8620 +5149 55811 0.6680 +5149 56953 0.6500 +5149 57096 0.4780 +5149 84618 0.6500 +5149 84839 0.4880 +5149 93034 0.6500 +5149 93589 0.4750 +5149 115024 0.6500 +5149 115861 0.4740 +5149 121506 0.4280 +5149 124583 0.6500 +5149 131890 0.4380 +5149 169522 0.9780 +5149 196883 0.6500 +5149 343035 0.4110 +5149 377841 0.6500 +5149 100526794 0.6500 +5150 5151 0.5750 +5150 5153 0.5580 +5150 5167 0.9240 +5150 5169 0.9260 +5150 5566 0.7840 +5150 5567 0.4800 +5150 5568 0.4780 +5150 7059 0.4730 +5150 8622 0.5270 +5150 8654 0.4060 +5150 9650 0.4080 +5150 10270 0.4950 +5150 10411 0.4450 +5150 10846 0.7410 +5150 11069 0.4540 +5150 22978 0.6640 +5150 26036 0.5180 +5150 26289 0.6790 +5150 27115 0.4330 +5150 30833 0.6500 +5150 50808 0.9040 +5150 50940 0.5760 +5150 51251 0.6850 +5150 55811 0.7220 +5150 56953 0.6500 +5150 84618 0.6610 +5150 91544 0.5340 +5150 93034 0.6610 +5150 115024 0.6770 +5150 122481 0.6660 +5150 158067 0.6990 +5150 196883 0.7660 +5150 221264 0.6800 +5150 377841 0.6500 +5150 100526794 0.6610 +5150 102157402 0.6500 +5151 5153 0.5280 +5151 5167 0.9100 +5151 5169 0.9050 +5151 5573 0.4350 +5151 8165 0.4950 +5151 8622 0.9370 +5151 9094 0.4930 +5151 10846 0.5880 +5151 22978 0.6500 +5151 26289 0.6510 +5151 27115 0.5220 +5151 30833 0.6500 +5151 50808 0.9030 +5151 50940 0.5710 +5151 51251 0.6500 +5151 55556 0.4300 +5151 55811 0.7120 +5151 56953 0.6500 +5151 84618 0.6500 +5151 93034 0.6500 +5151 115024 0.6500 +5151 122481 0.6500 +5151 143458 0.4470 +5151 158067 0.6540 +5151 196883 0.7360 +5151 221264 0.6590 +5151 346389 0.6220 +5151 377841 0.6500 +5151 644994 0.4790 +5151 100526794 0.6500 +5151 102157402 0.6500 +5152 5153 0.5660 +5152 5167 0.6760 +5152 5169 0.6770 +5152 5225 0.4420 +5152 5451 0.4800 +5152 5592 0.4240 +5152 5593 0.5110 +5152 6783 0.4760 +5152 7023 0.4570 +5152 7031 0.6910 +5152 7283 0.4340 +5152 8654 0.5870 +5152 8833 0.9030 +5152 9094 0.5560 +5152 9148 0.5000 +5152 9583 0.6500 +5152 10846 0.5940 +5152 22954 0.8150 +5152 22978 0.6790 +5152 30833 0.6530 +5152 50940 0.5660 +5152 51251 0.6640 +5152 54020 0.4800 +5152 54492 0.4700 +5152 55811 0.6910 +5152 56953 0.6510 +5152 80824 0.4020 +5152 84457 0.7300 +5152 84618 0.6520 +5152 93034 0.6520 +5152 115024 0.6650 +5152 124583 0.6910 +5152 196883 0.7280 +5152 377841 0.6610 +5152 100526794 0.6520 +5153 5167 0.9300 +5153 5169 0.9330 +5153 8622 0.5170 +5153 8654 0.5990 +5153 8833 0.9000 +5153 9583 0.6720 +5153 10411 0.4090 +5153 10846 0.6120 +5153 11069 0.4090 +5153 22978 0.6500 +5153 26289 0.6780 +5153 27115 0.5300 +5153 30833 0.6500 +5153 50808 0.9040 +5153 50940 0.5550 +5153 51251 0.7810 +5153 51764 0.9080 +5153 51806 0.9710 +5153 55811 0.7090 +5153 56953 0.6500 +5153 60386 0.6740 +5153 79837 0.6390 +5153 84152 0.7280 +5153 84618 0.6570 +5153 91860 0.9670 +5153 93034 0.6500 +5153 115024 0.6930 +5153 122481 0.6640 +5153 124583 0.7200 +5153 140465 0.7900 +5153 158067 0.6920 +5153 158131 0.4600 +5153 163688 0.9670 +5153 196883 0.7310 +5153 221264 0.6810 +5153 346562 0.9050 +5153 377841 0.6770 +5153 100526794 0.6500 +5153 102157402 0.6500 +5154 5155 0.9980 +5154 5156 0.9990 +5154 5159 0.9990 +5154 5175 0.4640 +5154 5290 0.7330 +5154 5291 0.4310 +5154 5295 0.4900 +5154 5296 0.4520 +5154 5335 0.6680 +5154 5594 0.4060 +5154 5604 0.4390 +5154 5618 0.6770 +5154 5743 0.5210 +5154 5764 0.4960 +5154 5781 0.5130 +5154 5782 0.4090 +5154 5915 0.4120 +5154 6347 0.4040 +5154 6387 0.4230 +5154 6402 0.4040 +5154 6654 0.4960 +5154 6696 0.6620 +5154 6714 0.5900 +5154 6772 0.5830 +5154 6774 0.7250 +5154 6776 0.5500 +5154 6777 0.5550 +5154 6778 0.5470 +5154 7010 0.8440 +5154 7039 0.9450 +5154 7040 0.6060 +5154 7042 0.6780 +5154 7043 0.4420 +5154 7057 0.6110 +5154 7058 0.5960 +5154 7059 0.5310 +5154 7060 0.5410 +5154 7124 0.6100 +5154 7132 0.4520 +5154 7423 0.5050 +5154 7424 0.6860 +5154 8030 0.4140 +5154 8440 0.5100 +5154 8718 0.4250 +5154 8817 0.5430 +5154 8822 0.4330 +5154 8823 0.4330 +5154 8829 0.4920 +5154 9180 0.6750 +5154 9332 0.4950 +5154 9351 0.4340 +5154 9368 0.4310 +5154 9466 0.6560 +5154 9564 0.5350 +5154 11333 0.8870 +5154 26281 0.4310 +5154 27006 0.4250 +5154 50615 0.6700 +5154 50848 0.4300 +5154 53832 0.6500 +5154 53833 0.6570 +5154 56034 0.9950 +5154 58985 0.6500 +5154 80310 0.9910 +5154 116379 0.6500 +5154 126129 0.4260 +5154 131873 0.4990 +5154 149233 0.6500 +5154 163702 0.6540 +5155 5156 0.9990 +5155 5159 0.9990 +5155 5175 0.5920 +5155 5228 0.5830 +5155 5290 0.5180 +5155 5291 0.4800 +5155 5295 0.6310 +5155 5296 0.4640 +5155 5335 0.5920 +5155 5580 0.5170 +5155 5595 0.5690 +5155 5618 0.6500 +5155 5728 0.4160 +5155 5743 0.5750 +5155 5777 0.4330 +5155 5781 0.5100 +5155 5782 0.4180 +5155 5894 0.4340 +5155 5921 0.5790 +5155 6347 0.5280 +5155 6387 0.5500 +5155 6575 0.6270 +5155 6654 0.4730 +5155 6678 0.4220 +5155 6696 0.6680 +5155 6714 0.6690 +5155 6772 0.6450 +5155 6774 0.7100 +5155 6776 0.6090 +5155 6777 0.6120 +5155 6778 0.5900 +5155 7010 0.8730 +5155 7026 0.4040 +5155 7039 0.9470 +5155 7040 0.7430 +5155 7042 0.4960 +5155 7043 0.4840 +5155 7046 0.6190 +5155 7057 0.7410 +5155 7058 0.5920 +5155 7059 0.5640 +5155 7060 0.5720 +5155 7075 0.4760 +5155 7122 0.4100 +5155 7124 0.4900 +5155 7132 0.4820 +5155 7157 0.4800 +5155 7276 0.4280 +5155 7412 0.5870 +5155 7424 0.6120 +5155 7450 0.4530 +5155 7852 0.6220 +5155 8440 0.5200 +5155 8718 0.4100 +5155 8795 0.4180 +5155 8817 0.6530 +5155 8822 0.6550 +5155 8823 0.6550 +5155 8829 0.8090 +5155 8862 0.4880 +5155 9180 0.6880 +5155 9213 0.4440 +5155 9370 0.4030 +5155 9466 0.6500 +5155 9564 0.5900 +5155 10763 0.4950 +5155 10894 0.6010 +5155 11082 0.5390 +5155 11333 0.7420 +5155 26281 0.6550 +5155 27006 0.6660 +5155 50615 0.6720 +5155 51129 0.5200 +5155 51330 0.4810 +5155 51705 0.4460 +5155 53832 0.6780 +5155 53833 0.6940 +5155 54567 0.6020 +5155 56034 0.9960 +5155 57462 0.6360 +5155 58985 0.6560 +5155 80243 0.4090 +5155 80310 0.9900 +5155 90102 0.4030 +5155 116379 0.6500 +5155 131873 0.5060 +5155 149233 0.6560 +5155 163702 0.6500 +5155 200315 0.4970 +5155 100130733 0.4530 +5156 5159 0.9890 +5156 5175 0.7300 +5156 5228 0.8480 +5156 5290 0.9900 +5156 5291 0.9570 +5156 5293 0.9240 +5156 5294 0.5970 +5156 5295 0.9950 +5156 5296 0.9380 +5156 5330 0.6550 +5156 5331 0.6550 +5156 5332 0.6840 +5156 5335 0.9880 +5156 5336 0.9130 +5156 5346 0.4600 +5156 5354 0.6220 +5156 5396 0.6110 +5156 5460 0.5280 +5156 5468 0.5950 +5156 5606 0.4680 +5156 5607 0.5330 +5156 5617 0.6930 +5156 5727 0.5070 +5156 5728 0.8280 +5156 5743 0.5620 +5156 5747 0.9190 +5156 5781 0.9950 +5156 5782 0.4550 +5156 5788 0.6780 +5156 5921 0.4870 +5156 6092 0.4480 +5156 6275 0.5280 +5156 6285 0.4680 +5156 6320 0.6360 +5156 6347 0.6450 +5156 6387 0.8060 +5156 6389 0.6160 +5156 6390 0.7450 +5156 6391 0.7750 +5156 6392 0.7350 +5156 6455 0.6500 +5156 6456 0.6500 +5156 6457 0.6500 +5156 6464 0.9380 +5156 6469 0.6170 +5156 6507 0.4280 +5156 6591 0.6630 +5156 6598 0.5440 +5156 6608 0.6330 +5156 6615 0.4520 +5156 6654 0.9270 +5156 6655 0.9200 +5156 6657 0.6020 +5156 6662 0.6250 +5156 6663 0.7110 +5156 6667 0.4630 +5156 6695 0.4650 +5156 6696 0.4020 +5156 6714 0.9540 +5156 6772 0.9140 +5156 6774 0.9610 +5156 6776 0.6730 +5156 6777 0.6790 +5156 6778 0.6140 +5156 6850 0.4500 +5156 6876 0.4830 +5156 6910 0.4260 +5156 6943 0.5660 +5156 7015 0.6280 +5156 7037 0.5960 +5156 7039 0.7640 +5156 7040 0.7740 +5156 7042 0.4450 +5156 7043 0.4200 +5156 7046 0.6260 +5156 7048 0.5690 +5156 7058 0.4110 +5156 7066 0.7350 +5156 7070 0.6490 +5156 7080 0.4150 +5156 7124 0.4320 +5156 7132 0.4830 +5156 7139 0.4110 +5156 7157 0.7620 +5156 7189 0.6950 +5156 7249 0.4070 +5156 7291 0.4830 +5156 7297 0.6950 +5156 7350 0.4140 +5156 7373 0.4110 +5156 7412 0.6240 +5156 7423 0.8690 +5156 7424 0.8730 +5156 7431 0.4940 +5156 7450 0.4230 +5156 7472 0.4190 +5156 7474 0.5150 +5156 7490 0.5610 +5156 7852 0.4930 +5156 8074 0.7830 +5156 8313 0.4520 +5156 8356 0.4500 +5156 8358 0.4770 +5156 8434 0.5250 +5156 8440 0.5390 +5156 8503 0.9380 +5156 8516 0.4430 +5156 8549 0.4110 +5156 8788 0.4310 +5156 8817 0.8580 +5156 8822 0.8480 +5156 8823 0.8550 +5156 8828 0.5740 +5156 8829 0.5820 +5156 8842 0.5070 +5156 9096 0.4750 +5156 9180 0.5150 +5156 9212 0.5270 +5156 9314 0.4060 +5156 9368 0.5230 +5156 9444 0.4020 +5156 9547 0.4040 +5156 9564 0.6000 +5156 9846 0.9110 +5156 9965 0.7790 +5156 10193 0.6500 +5156 10215 0.8080 +5156 10371 0.4850 +5156 10413 0.4220 +5156 10630 0.6080 +5156 10631 0.6210 +5156 10763 0.7500 +5156 10840 0.4100 +5156 10894 0.5680 +5156 11009 0.6670 +5156 11059 0.6580 +5156 22887 0.4450 +5156 22905 0.6570 +5156 23090 0.4300 +5156 23203 0.5510 +5156 23236 0.6640 +5156 23327 0.7780 +5156 23624 0.6700 +5156 23768 0.5050 +5156 25759 0.9160 +5156 26040 0.4070 +5156 26281 0.8550 +5156 26291 0.7670 +5156 26511 0.5720 +5156 27006 0.8580 +5156 29126 0.4830 +5156 29949 0.6580 +5156 29997 0.4060 +5156 30011 0.6710 +5156 50604 0.6500 +5156 50616 0.6790 +5156 50846 0.4040 +5156 51378 0.7370 +5156 51561 0.6500 +5156 53342 0.6530 +5156 53358 0.9230 +5156 54790 0.4180 +5156 55040 0.6600 +5156 55107 0.8050 +5156 55294 0.5340 +5156 55553 0.4510 +5156 56034 0.9990 +5156 56832 0.6540 +5156 56904 0.6500 +5156 57124 0.4580 +5156 57154 0.6760 +5156 58513 0.6880 +5156 59067 0.6540 +5156 64321 0.5580 +5156 64750 0.6590 +5156 79633 0.4940 +5156 79923 0.5240 +5156 80310 0.9990 +5156 81608 0.9810 +5156 83595 0.4040 +5156 83737 0.6770 +5156 83881 0.4570 +5156 84922 0.4590 +5156 85480 0.6930 +5156 90865 0.5810 +5156 116448 0.7170 +5156 117156 0.4170 +5156 117581 0.4200 +5156 133121 0.4440 +5156 137902 0.4460 +5156 146713 0.5180 +5156 171023 0.4220 +5156 282616 0.6500 +5156 282617 0.6500 +5156 282618 0.6500 +5156 338376 0.6540 +5156 399694 0.9130 +5156 401994 0.6620 +5156 100133941 0.4300 +5157 6424 0.4050 +5157 7991 0.9620 +5157 26284 0.4320 +5157 56034 0.5630 +5157 56180 0.4120 +5157 60592 0.4110 +5158 5167 0.7260 +5158 5169 0.7260 +5158 5956 0.4190 +5158 5957 0.7190 +5158 5959 0.4470 +5158 5961 0.9690 +5158 6010 0.8980 +5158 6011 0.5840 +5158 6017 0.5940 +5158 6094 0.7640 +5158 6100 0.5730 +5158 6101 0.4050 +5158 6103 0.7940 +5158 6121 0.8460 +5158 6295 0.4790 +5158 6907 0.5830 +5158 7275 0.5890 +5158 7287 0.7660 +5158 7399 0.6120 +5158 7401 0.4470 +5158 7439 0.4970 +5158 7474 0.5010 +5158 7481 0.4990 +5158 7855 0.4990 +5158 7976 0.4990 +5158 8322 0.5260 +5158 8323 0.4990 +5158 8349 0.4320 +5158 8787 0.5020 +5158 8833 0.9020 +5158 8842 0.5440 +5158 9129 0.5680 +5158 9131 0.4950 +5158 9187 0.6810 +5158 9227 0.6740 +5158 9583 0.6500 +5158 9600 0.6960 +5158 9611 0.4480 +5158 9612 0.5060 +5158 9626 0.5350 +5158 10002 0.7130 +5158 10210 0.5590 +5158 10398 0.4370 +5158 10461 0.6850 +5158 10594 0.5530 +5158 10681 0.6460 +5158 22978 0.6610 +5158 23020 0.5320 +5158 23322 0.4090 +5158 23746 0.7540 +5158 25769 0.4040 +5158 25794 0.6140 +5158 26121 0.6490 +5158 30813 0.6190 +5158 30833 0.6500 +5158 50939 0.6470 +5158 51251 0.6990 +5158 51764 0.5210 +5158 54331 0.5210 +5158 54714 0.6390 +5158 55811 0.6790 +5158 55812 0.4350 +5158 55970 0.6380 +5158 55975 0.4870 +5158 56953 0.6500 +5158 57010 0.6490 +5158 57096 0.6650 +5158 59345 0.5790 +5158 60506 0.6470 +5158 64218 0.4890 +5158 79718 0.5870 +5158 79947 0.4180 +5158 80184 0.5900 +5158 80712 0.8690 +5158 83552 0.6100 +5158 84059 0.5420 +5158 84140 0.7880 +5158 84618 0.6500 +5158 90665 0.5520 +5158 92840 0.4720 +5158 93034 0.6500 +5158 93589 0.4730 +5158 94137 0.4120 +5158 94233 0.6290 +5158 94235 0.5290 +5158 103910 0.4370 +5158 115024 0.6830 +5158 115861 0.8360 +5158 124583 0.6750 +5158 130557 0.6030 +5158 131890 0.5180 +5158 145226 0.7390 +5158 196883 0.7190 +5158 283337 0.6240 +5158 338917 0.6620 +5158 343035 0.9170 +5158 345193 0.5570 +5158 346007 0.7270 +5158 346562 0.4190 +5158 375298 0.7330 +5158 377841 0.6500 +5158 388531 0.6450 +5158 388939 0.7030 +5158 440435 0.4790 +5158 768206 0.7500 +5158 100526794 0.6500 +5159 5175 0.7850 +5159 5176 0.4720 +5159 5228 0.9050 +5159 5290 0.9760 +5159 5291 0.9600 +5159 5293 0.9320 +5159 5294 0.7310 +5159 5295 0.9990 +5159 5296 0.9710 +5159 5329 0.5640 +5159 5330 0.6510 +5159 5331 0.6580 +5159 5332 0.6650 +5159 5335 0.9990 +5159 5336 0.9170 +5159 5396 0.4960 +5159 5468 0.6340 +5159 5617 0.6990 +5159 5727 0.5740 +5159 5728 0.9500 +5159 5743 0.5820 +5159 5747 0.9250 +5159 5770 0.7080 +5159 5777 0.6530 +5159 5781 0.9990 +5159 5782 0.7980 +5159 5788 0.6960 +5159 5793 0.4670 +5159 5795 0.5330 +5159 5829 0.6250 +5159 5894 0.7420 +5159 5915 0.4380 +5159 5921 0.9860 +5159 6198 0.4130 +5159 6199 0.5900 +5159 6208 0.4510 +5159 6275 0.5500 +5159 6310 0.4070 +5159 6320 0.6060 +5159 6347 0.5300 +5159 6385 0.5130 +5159 6387 0.8150 +5159 6464 0.9610 +5159 6469 0.4940 +5159 6503 0.5560 +5159 6575 0.5920 +5159 6591 0.4780 +5159 6615 0.4710 +5159 6654 0.9330 +5159 6655 0.9250 +5159 6657 0.4630 +5159 6662 0.4450 +5159 6663 0.4620 +5159 6678 0.4690 +5159 6696 0.4400 +5159 6714 0.9990 +5159 6772 0.8160 +5159 6774 0.9150 +5159 6776 0.8830 +5159 6777 0.7260 +5159 6778 0.6390 +5159 6790 0.4550 +5159 6876 0.7670 +5159 6943 0.4040 +5159 6949 0.4310 +5159 7010 0.4560 +5159 7015 0.4300 +5159 7039 0.8650 +5159 7040 0.8250 +5159 7042 0.6540 +5159 7043 0.5150 +5159 7046 0.4600 +5159 7048 0.4810 +5159 7049 0.4270 +5159 7057 0.4370 +5159 7058 0.4490 +5159 7066 0.7240 +5159 7070 0.8010 +5159 7074 0.4750 +5159 7076 0.4530 +5159 7077 0.4170 +5159 7078 0.4310 +5159 7082 0.4310 +5159 7122 0.6530 +5159 7124 0.4920 +5159 7157 0.6370 +5159 7169 0.4800 +5159 7291 0.4560 +5159 7297 0.8180 +5159 7305 0.4050 +5159 7409 0.4860 +5159 7410 0.5130 +5159 7412 0.5540 +5159 7414 0.5780 +5159 7423 0.8910 +5159 7424 0.8920 +5159 7431 0.6490 +5159 7450 0.6050 +5159 7472 0.4280 +5159 7474 0.4420 +5159 7490 0.4570 +5159 7525 0.4030 +5159 7750 0.5390 +5159 7837 0.5490 +5159 7852 0.7070 +5159 8019 0.4070 +5159 8030 0.5260 +5159 8061 0.4180 +5159 8074 0.7430 +5159 8440 0.8420 +5159 8490 0.5820 +5159 8503 0.9550 +5159 8563 0.5520 +5159 8817 0.8930 +5159 8822 0.8910 +5159 8823 0.8930 +5159 8828 0.4850 +5159 8829 0.4490 +5159 8831 0.4290 +5159 8842 0.5070 +5159 9096 0.4690 +5159 9213 0.4080 +5159 9321 0.6140 +5159 9351 0.6960 +5159 9368 0.8880 +5159 9429 0.4230 +5159 9564 0.6890 +5159 9659 0.7110 +5159 9732 0.4450 +5159 9846 0.9200 +5159 9891 0.4230 +5159 9965 0.7680 +5159 10000 0.4110 +5159 10188 0.5650 +5159 10215 0.4640 +5159 10398 0.4080 +5159 10413 0.4070 +5159 10451 0.4240 +5159 10630 0.5320 +5159 10631 0.6160 +5159 10763 0.6510 +5159 10818 0.6750 +5159 10894 0.5540 +5159 11009 0.6740 +5159 22795 0.4210 +5159 22801 0.6380 +5159 23236 0.6660 +5159 23452 0.4010 +5159 25759 0.9190 +5159 25960 0.4600 +5159 26281 0.8930 +5159 26291 0.7630 +5159 27006 0.8940 +5159 27122 0.5050 +5159 27329 0.4330 +5159 29110 0.4530 +5159 29126 0.5090 +5159 29949 0.6590 +5159 50604 0.6500 +5159 50616 0.6770 +5159 51378 0.7440 +5159 51561 0.6500 +5159 51705 0.5150 +5159 51751 0.4240 +5159 53342 0.6520 +5159 53358 0.9260 +5159 54567 0.4780 +5159 54829 0.4980 +5159 56034 0.9990 +5159 56241 0.5010 +5159 56832 0.6630 +5159 56999 0.4600 +5159 57124 0.6950 +5159 57462 0.5990 +5159 59067 0.6580 +5159 60681 0.4300 +5159 80310 0.9990 +5159 80781 0.4050 +5159 81608 0.7960 +5159 84701 0.4100 +5159 85480 0.6900 +5159 92521 0.5510 +5159 137902 0.5240 +5159 282616 0.6500 +5159 282617 0.6500 +5159 282618 0.6500 +5159 338376 0.6540 +5159 399687 0.5380 +5159 399694 0.9130 +5159 100133941 0.4430 +5159 100506658 0.4930 +5161 5162 0.9990 +5161 5163 0.9270 +5161 5164 0.6250 +5161 5165 0.6900 +5161 5166 0.5810 +5161 5211 0.4020 +5161 5213 0.4070 +5161 5226 0.4190 +5161 5230 0.6560 +5161 5232 0.8590 +5161 5313 0.9400 +5161 5315 0.9450 +5161 5467 0.4990 +5161 5620 0.4760 +5161 5693 0.4250 +5161 5832 0.4650 +5161 5859 0.4080 +5161 5917 0.4180 +5161 6120 0.4150 +5161 6122 0.4450 +5161 6123 0.4450 +5161 6170 0.4080 +5161 6175 0.4200 +5161 6188 0.4490 +5161 6203 0.5200 +5161 6224 0.4010 +5161 6256 0.5130 +5161 6389 0.4510 +5161 6390 0.5150 +5161 6888 0.8780 +5161 7086 0.8790 +5161 7141 0.4980 +5161 7167 0.4550 +5161 7372 0.4530 +5161 8050 0.9980 +5161 8277 0.8740 +5161 8565 0.5090 +5161 8802 0.4820 +5161 8803 0.4440 +5161 9343 0.4130 +5161 9563 0.8900 +5161 10102 0.4270 +5161 10531 0.4790 +5161 10873 0.9240 +5161 10880 0.4870 +5161 11222 0.4450 +5161 26330 0.5100 +5161 26953 0.4060 +5161 51071 0.8370 +5161 51154 0.4050 +5161 51439 0.4610 +5161 51601 0.4630 +5161 54704 0.6330 +5161 55066 0.4880 +5161 55143 0.6010 +5161 55272 0.4560 +5161 55276 0.4490 +5161 55526 0.4790 +5161 55753 0.4710 +5161 55902 0.8370 +5161 56648 0.4150 +5161 57038 0.4180 +5161 57182 0.4610 +5161 57546 0.6370 +5161 64968 0.4530 +5161 79446 0.5030 +5161 79631 0.4130 +5161 79648 0.6840 +5161 84076 0.8900 +5161 84532 0.8420 +5161 84779 0.4110 +5161 85476 0.4130 +5161 92483 0.9270 +5161 112703 0.5420 +5161 116832 0.4080 +5161 124454 0.4080 +5161 131601 0.4560 +5161 132158 0.8140 +5161 143244 0.4150 +5161 144699 0.4230 +5161 160287 0.9230 +5161 197257 0.9320 +5161 200010 0.4360 +5161 219938 0.4180 +5161 255626 0.4470 +5161 259266 0.7610 +5161 284361 0.4320 +5161 388799 0.4460 +5162 5163 0.9840 +5162 5164 0.9740 +5162 5165 0.9610 +5162 5166 0.6740 +5162 5211 0.6630 +5162 5213 0.7070 +5162 5214 0.6660 +5162 5223 0.4030 +5162 5230 0.6110 +5162 5232 0.4930 +5162 5245 0.5010 +5162 5250 0.4360 +5162 5313 0.9660 +5162 5315 0.9830 +5162 5340 0.6930 +5162 5467 0.5110 +5162 5530 0.6270 +5162 5532 0.7430 +5162 5533 0.6180 +5162 5534 0.6740 +5162 5631 0.6540 +5162 5634 0.6610 +5162 5635 0.6200 +5162 5636 0.6090 +5162 5705 0.4120 +5162 5832 0.4060 +5162 5901 0.4820 +5162 6120 0.7580 +5162 6198 0.4080 +5162 6256 0.5090 +5162 6342 0.4010 +5162 6389 0.7310 +5162 6390 0.7350 +5162 6391 0.6240 +5162 6392 0.5240 +5162 6470 0.4500 +5162 6472 0.4560 +5162 6499 0.5100 +5162 6648 0.4180 +5162 6652 0.4290 +5162 6776 0.8040 +5162 6888 0.9790 +5162 6950 0.5160 +5162 7086 0.9130 +5162 7167 0.6810 +5162 7284 0.6150 +5162 7296 0.8370 +5162 7384 0.8260 +5162 7385 0.9050 +5162 7386 0.6700 +5162 7388 0.4610 +5162 7416 0.5000 +5162 7419 0.4800 +5162 7531 0.5440 +5162 7915 0.4200 +5162 8050 0.9990 +5162 8209 0.4150 +5162 8277 0.8850 +5162 8310 0.4170 +5162 8402 0.5900 +5162 8789 0.7350 +5162 8801 0.6530 +5162 8802 0.8210 +5162 8803 0.9210 +5162 9377 0.6980 +5162 9512 0.7710 +5162 9563 0.8910 +5162 9942 0.7920 +5162 10102 0.4200 +5162 10159 0.5060 +5162 10449 0.5360 +5162 10476 0.6210 +5162 10531 0.5040 +5162 10587 0.8400 +5162 10694 0.5260 +5162 10845 0.4700 +5162 10873 0.9500 +5162 10908 0.4300 +5162 10935 0.5610 +5162 10987 0.4150 +5162 10989 0.4910 +5162 10994 0.7030 +5162 11019 0.5130 +5162 11315 0.6540 +5162 22934 0.8750 +5162 23410 0.4450 +5162 25874 0.4900 +5162 26061 0.7620 +5162 26275 0.4710 +5162 26330 0.6280 +5162 27010 0.4510 +5162 27034 0.4810 +5162 27069 0.4350 +5162 27089 0.6020 +5162 27247 0.4200 +5162 28976 0.4640 +5162 51031 0.5150 +5162 51071 0.8410 +5162 51234 0.4320 +5162 51497 0.5420 +5162 51601 0.8210 +5162 54539 0.4580 +5162 54704 0.9150 +5162 54884 0.5880 +5162 54995 0.4850 +5162 55066 0.6100 +5162 55143 0.4600 +5162 55526 0.7500 +5162 55753 0.7150 +5162 55902 0.8760 +5162 55967 0.5490 +5162 56922 0.5570 +5162 56965 0.5570 +5162 56993 0.4170 +5162 57406 0.4500 +5162 57469 0.5690 +5162 57546 0.9440 +5162 64087 0.7080 +5162 64756 0.4520 +5162 79668 0.5570 +5162 79728 0.4740 +5162 81570 0.4630 +5162 84076 0.8850 +5162 84263 0.4900 +5162 84532 0.8610 +5162 84676 0.4780 +5162 90407 0.5430 +5162 92483 0.9460 +5162 114112 0.8300 +5162 130589 0.5450 +5162 130752 0.6640 +5162 132158 0.8230 +5162 137872 0.4550 +5162 160287 0.9440 +5162 169200 0.4290 +5162 197257 0.9340 +5162 200879 0.4270 +5162 221823 0.6590 +5162 347862 0.4470 +5162 375775 0.4300 +5162 387712 0.4210 +5162 387787 0.4750 +5162 440026 0.4420 +5162 441531 0.4310 +5162 729020 0.7090 +5163 5164 0.9610 +5163 5165 0.8330 +5163 5166 0.6040 +5163 5207 0.4280 +5163 5208 0.4280 +5163 5209 0.6160 +5163 5210 0.5150 +5163 5211 0.5300 +5163 5213 0.6390 +5163 5214 0.4090 +5163 5230 0.6870 +5163 5232 0.4110 +5163 5290 0.4130 +5163 5315 0.7440 +5163 5586 0.5460 +5163 5728 0.4510 +5163 5832 0.4900 +5163 5879 0.4230 +5163 6198 0.6990 +5163 6446 0.4440 +5163 6472 0.4490 +5163 6510 0.4660 +5163 6513 0.7440 +5163 6515 0.6280 +5163 6517 0.4280 +5163 6566 0.4780 +5163 6648 0.4750 +5163 7086 0.4400 +5163 7157 0.4180 +5163 7167 0.4290 +5163 7428 0.4470 +5163 8050 0.9040 +5163 8192 0.4200 +5163 8277 0.4520 +5163 8842 0.4560 +5163 9122 0.6100 +5163 9123 0.5950 +5163 9361 0.5840 +5163 9563 0.6120 +5163 9669 0.4980 +5163 10131 0.4280 +5163 10455 0.4910 +5163 10891 0.4510 +5163 23028 0.4690 +5163 23410 0.4650 +5163 23479 0.4490 +5163 26275 0.4580 +5163 27429 0.4030 +5163 28976 0.4470 +5163 54205 0.6940 +5163 54583 0.5140 +5163 54704 0.5940 +5163 55006 0.4420 +5163 57103 0.4290 +5163 57521 0.7650 +5163 57546 0.6070 +5163 64111 0.5710 +5163 65220 0.4300 +5163 79109 0.4270 +5163 84076 0.4110 +5163 84701 0.4750 +5163 112398 0.4190 +5163 112399 0.5240 +5163 132949 0.4590 +5163 150274 0.4110 +5163 221656 0.4310 +5163 253260 0.5100 +5164 5165 0.8400 +5164 5166 0.7950 +5164 5170 0.5750 +5164 5211 0.4310 +5164 5213 0.5500 +5164 5230 0.4110 +5164 5313 0.4110 +5164 5315 0.5150 +5164 5341 0.5110 +5164 5587 0.5790 +5164 5728 0.4780 +5164 6196 0.4100 +5164 6198 0.4650 +5164 6446 0.4350 +5164 6513 0.4880 +5164 6515 0.4380 +5164 6517 0.5250 +5164 6608 0.4280 +5164 6776 0.7960 +5164 6821 0.4210 +5164 7157 0.6150 +5164 7189 0.4800 +5164 7249 0.4740 +5164 8050 0.9460 +5164 9371 0.5880 +5164 9563 0.5950 +5164 9997 0.4970 +5164 10000 0.5170 +5164 10455 0.4540 +5164 10891 0.4060 +5164 11127 0.4970 +5164 23028 0.4380 +5164 23410 0.5810 +5164 23645 0.5720 +5164 26499 0.5100 +5164 27165 0.4440 +5164 28976 0.4260 +5164 51181 0.4440 +5164 54205 0.6630 +5164 54704 0.6050 +5164 55066 0.5480 +5164 55335 0.4470 +5164 57103 0.4720 +5164 57521 0.5000 +5164 57546 0.7300 +5164 64111 0.5710 +5164 64223 0.4390 +5164 65220 0.4300 +5164 79109 0.4530 +5164 91683 0.6070 +5164 132949 0.5040 +5164 221656 0.4310 +5164 253260 0.6900 +5165 5166 0.7950 +5165 5209 0.4180 +5165 5211 0.4070 +5165 5214 0.4620 +5165 5230 0.5870 +5165 5315 0.5140 +5165 5595 0.4940 +5165 5631 0.4680 +5165 5832 0.4140 +5165 6513 0.4790 +5165 6515 0.4270 +5165 6776 0.7820 +5165 7124 0.4070 +5165 8050 0.9580 +5165 8192 0.6140 +5165 9131 0.4660 +5165 9361 0.4170 +5165 9468 0.4570 +5165 9563 0.5140 +5165 10455 0.4570 +5165 11027 0.4050 +5165 23028 0.4390 +5165 23676 0.8970 +5165 26275 0.4170 +5165 26548 0.8330 +5165 27440 0.7510 +5165 28976 0.4120 +5165 54205 0.6220 +5165 54704 0.5860 +5165 55066 0.5930 +5165 55526 0.5020 +5165 57546 0.7360 +5165 64111 0.5710 +5165 65220 0.4950 +5165 115265 0.4220 +5165 132949 0.4510 +5165 150274 0.4080 +5165 197257 0.4440 +5165 221656 0.4360 +5165 221823 0.4420 +5166 5209 0.4850 +5166 5211 0.4300 +5166 5213 0.5480 +5166 5230 0.4290 +5166 5313 0.4470 +5166 5315 0.5150 +5166 5346 0.4210 +5166 5465 0.7400 +5166 5467 0.7020 +5166 5468 0.6510 +5166 6307 0.4520 +5166 6319 0.5220 +5166 6513 0.5450 +5166 6514 0.4200 +5166 6517 0.7530 +5166 6648 0.4860 +5166 6720 0.5650 +5166 7019 0.5090 +5166 7350 0.5480 +5166 7351 0.5370 +5166 7352 0.7340 +5166 7416 0.8290 +5166 8050 0.7850 +5166 8310 0.4440 +5166 8660 0.4530 +5166 8864 0.4080 +5166 9370 0.4400 +5166 9563 0.5530 +5166 9619 0.4460 +5166 10449 0.4680 +5166 10455 0.5300 +5166 10628 0.5140 +5166 10643 0.6080 +5166 10891 0.8380 +5166 10965 0.4960 +5166 23028 0.5110 +5166 23410 0.4310 +5166 23411 0.5280 +5166 23417 0.5300 +5166 25904 0.4200 +5166 26275 0.4290 +5166 26291 0.4850 +5166 51012 0.4090 +5166 51024 0.5250 +5166 51129 0.7390 +5166 54205 0.7180 +5166 54704 0.6120 +5166 54915 0.6170 +5166 55177 0.5090 +5166 55571 0.4480 +5166 57104 0.5450 +5166 57546 0.7170 +5166 57818 0.4660 +5166 64111 0.5710 +5166 65220 0.4680 +5166 84263 0.4070 +5166 84649 0.4330 +5166 84676 0.4930 +5166 92579 0.4680 +5166 114907 0.4860 +5166 126129 0.6390 +5166 127933 0.4770 +5166 132949 0.5740 +5166 133522 0.6050 +5166 151473 0.4050 +5166 221656 0.4450 +5166 284346 0.4080 +5166 375704 0.4160 +5166 376497 0.4900 +5166 440503 0.4290 +5166 641371 0.4670 +5167 5168 0.5620 +5167 5169 0.9090 +5167 5251 0.9080 +5167 5313 0.9030 +5167 5315 0.9050 +5167 5506 0.4410 +5167 5697 0.4360 +5167 5741 0.6290 +5167 5834 0.9140 +5167 5836 0.9130 +5167 5837 0.9110 +5167 6514 0.4890 +5167 6569 0.4670 +5167 6574 0.4960 +5167 6696 0.5560 +5167 6934 0.4160 +5167 7043 0.4330 +5167 7360 0.9090 +5167 7371 0.9020 +5167 7372 0.9060 +5167 8074 0.8610 +5167 8622 0.9070 +5167 8654 0.6900 +5167 8817 0.4550 +5167 8822 0.4430 +5167 8823 0.4520 +5167 8833 0.9020 +5167 8908 0.9020 +5167 9365 0.6360 +5167 9370 0.5520 +5167 9583 0.9120 +5167 9672 0.4590 +5167 9689 0.4400 +5167 10135 0.9140 +5167 10201 0.9200 +5167 10436 0.5460 +5167 10846 0.9290 +5167 11132 0.6810 +5167 22933 0.9030 +5167 22978 0.9070 +5167 23057 0.9120 +5167 23408 0.9000 +5167 23409 0.9020 +5167 23410 0.9000 +5167 23411 0.9100 +5167 23475 0.9130 +5167 23530 0.9000 +5167 23788 0.4390 +5167 25970 0.4390 +5167 26281 0.4470 +5167 26289 0.9040 +5167 27006 0.4430 +5167 27115 0.9180 +5167 27231 0.9010 +5167 28992 0.4410 +5167 29922 0.9200 +5167 30833 0.9110 +5167 50808 0.9020 +5167 50940 0.9140 +5167 50964 0.4030 +5167 51251 0.9280 +5167 51547 0.9000 +5167 51548 0.9000 +5167 53354 0.9000 +5167 54936 0.4610 +5167 54963 0.9020 +5167 54981 0.9010 +5167 55191 0.9130 +5167 55276 0.9040 +5167 55312 0.9070 +5167 55811 0.7860 +5167 56172 0.7950 +5167 56474 0.9050 +5167 56729 0.4370 +5167 56953 0.9000 +5167 56955 0.5000 +5167 56975 0.4350 +5167 60490 0.9020 +5167 64802 0.9120 +5167 65220 0.4740 +5167 79068 0.5940 +5167 79153 0.8280 +5167 79642 0.6240 +5167 79646 0.9020 +5167 80025 0.9000 +5167 80308 0.9130 +5167 80347 0.9010 +5167 83549 0.9010 +5167 83594 0.9080 +5167 84618 0.9070 +5167 93034 0.9000 +5167 93100 0.9130 +5167 115004 0.4350 +5167 115024 0.9120 +5167 122481 0.9020 +5167 124583 0.9150 +5167 129607 0.9000 +5167 131870 0.5480 +5167 132789 0.5050 +5167 133522 0.4040 +5167 133686 0.9090 +5167 139596 0.9000 +5167 142680 0.8180 +5167 158067 0.9090 +5167 162466 0.8220 +5167 196883 0.6610 +5167 221264 0.9140 +5167 257194 0.5510 +5167 283209 0.9040 +5167 284161 0.8350 +5167 338557 0.4240 +5167 377841 0.9510 +5167 654364 0.9240 +5167 692312 0.5500 +5167 100526794 0.9000 +5167 102157402 0.9110 +5168 5169 0.5580 +5168 5319 0.5520 +5168 5320 0.6500 +5168 5321 0.5800 +5168 7276 0.5630 +5168 7448 0.5530 +5168 7941 0.4070 +5168 8398 0.4970 +5168 8399 0.6330 +5168 8611 0.5260 +5168 8612 0.4050 +5168 8613 0.6230 +5168 8877 0.4350 +5168 9170 0.8020 +5168 9586 0.4470 +5168 9971 0.4070 +5168 10161 0.7400 +5168 10537 0.4340 +5168 11145 0.4880 +5168 23171 0.4230 +5168 23324 0.4150 +5168 23566 0.7950 +5168 25833 0.5820 +5168 26279 0.5340 +5168 27334 0.4750 +5168 30814 0.4530 +5168 50487 0.4460 +5168 51200 0.4320 +5168 51365 0.4510 +5168 53836 0.5190 +5168 55556 0.4190 +5168 55750 0.4180 +5168 57121 0.7190 +5168 64600 0.4320 +5168 64805 0.5230 +5168 65220 0.4250 +5168 79153 0.9880 +5168 81579 0.5080 +5168 84647 0.4950 +5168 124976 0.5630 +5168 200879 0.4480 +5168 284161 0.9890 +5168 391013 0.4590 +5169 5313 0.9060 +5169 5315 0.9030 +5169 5834 0.9110 +5169 5836 0.9090 +5169 5837 0.9130 +5169 7360 0.9050 +5169 7371 0.9040 +5169 7372 0.9020 +5169 7448 0.6680 +5169 8622 0.9050 +5169 8654 0.6750 +5169 8833 0.9040 +5169 8908 0.9000 +5169 9509 0.4060 +5169 9583 0.9210 +5169 10135 0.9000 +5169 10201 0.9200 +5169 10846 0.9340 +5169 11251 0.5970 +5169 22933 0.9010 +5169 22978 0.9100 +5169 23057 0.9040 +5169 23408 0.9000 +5169 23409 0.9000 +5169 23410 0.9000 +5169 23411 0.9000 +5169 23475 0.9040 +5169 23530 0.9000 +5169 26289 0.9020 +5169 27069 0.4090 +5169 27115 0.9090 +5169 27231 0.9010 +5169 29922 0.9200 +5169 30833 0.9000 +5169 50651 0.4120 +5169 50808 0.9020 +5169 50940 0.9140 +5169 51206 0.4290 +5169 51251 0.9330 +5169 51547 0.9000 +5169 51548 0.9000 +5169 53354 0.9020 +5169 54963 0.9070 +5169 54981 0.9060 +5169 55191 0.9110 +5169 55276 0.9040 +5169 55312 0.9060 +5169 55811 0.6500 +5169 56474 0.9070 +5169 56674 0.4170 +5169 56953 0.9000 +5169 59084 0.4040 +5169 60490 0.9010 +5169 64802 0.9080 +5169 65220 0.4160 +5169 79050 0.4070 +5169 79153 0.9240 +5169 79646 0.9000 +5169 80025 0.9000 +5169 80308 0.9120 +5169 80347 0.9010 +5169 80737 0.4050 +5169 81543 0.4070 +5169 83549 0.9010 +5169 83594 0.9140 +5169 84618 0.9020 +5169 89822 0.4090 +5169 92002 0.4090 +5169 93034 0.9000 +5169 93100 0.9000 +5169 115024 0.9250 +5169 117194 0.4140 +5169 122481 0.9030 +5169 124583 0.9120 +5169 129607 0.9010 +5169 133686 0.9010 +5169 139596 0.9000 +5169 158067 0.9090 +5169 196883 0.6610 +5169 221264 0.9090 +5169 283209 0.9040 +5169 284161 0.9270 +5169 286148 0.4340 +5169 377841 0.9470 +5169 387521 0.4420 +5169 654364 0.9240 +5169 100526794 0.9000 +5169 102157402 0.9060 +5170 5267 0.5190 +5170 5289 0.4900 +5170 5290 0.9760 +5170 5291 0.9730 +5170 5293 0.9480 +5170 5294 0.9670 +5170 5295 0.9530 +5170 5296 0.9450 +5170 5321 0.4470 +5170 5341 0.5960 +5170 5347 0.4390 +5170 5529 0.5350 +5170 5578 0.9430 +5170 5579 0.7280 +5170 5580 0.6840 +5170 5581 0.4500 +5170 5584 0.4920 +5170 5585 0.9450 +5170 5586 0.9960 +5170 5588 0.9050 +5170 5590 0.9600 +5170 5594 0.6330 +5170 5599 0.4300 +5170 5728 0.8490 +5170 5879 0.5890 +5170 5880 0.5730 +5170 5970 0.6130 +5170 6009 0.5710 +5170 6093 0.5400 +5170 6194 0.5300 +5170 6195 0.5510 +5170 6196 0.5380 +5170 6197 0.8120 +5170 6198 0.9860 +5170 6199 0.9590 +5170 6446 0.9880 +5170 6464 0.6720 +5170 6654 0.7600 +5170 6655 0.4710 +5170 6667 0.5770 +5170 6714 0.6940 +5170 6720 0.4100 +5170 6885 0.6940 +5170 7189 0.5950 +5170 7248 0.5100 +5170 7249 0.8820 +5170 7334 0.5070 +5170 7335 0.5040 +5170 7462 0.5080 +5170 7533 0.4940 +5170 7534 0.4850 +5170 8208 0.4220 +5170 8242 0.7880 +5170 8408 0.4370 +5170 8452 0.4210 +5170 8473 0.9000 +5170 8503 0.9400 +5170 8517 0.5730 +5170 8660 0.4800 +5170 8767 0.4620 +5170 8897 0.4730 +5170 8915 0.5560 +5170 9846 0.5680 +5170 9882 0.5030 +5170 10000 0.9390 +5170 10110 0.9540 +5170 10681 0.5090 +5170 10892 0.5680 +5170 10971 0.6060 +5170 11091 0.9840 +5170 11336 0.4650 +5170 23118 0.5530 +5170 23239 0.4710 +5170 23533 0.9250 +5170 23678 0.9620 +5170 26499 0.5970 +5170 26608 0.6590 +5170 27330 0.4860 +5170 29941 0.9220 +5170 50852 0.4990 +5170 51200 0.4120 +5170 51764 0.5010 +5170 54331 0.5050 +5170 55626 0.4220 +5170 55970 0.5200 +5170 57521 0.5780 +5170 57761 0.5420 +5170 59345 0.5090 +5170 64223 0.5410 +5170 64400 0.6560 +5170 79109 0.6730 +5170 84335 0.7500 +5170 84433 0.8170 +5170 84557 0.4110 +5170 94235 0.5010 +5170 94274 0.5070 +5170 117145 0.7000 +5170 139231 0.7860 +5170 146850 0.9000 +5170 154810 0.5510 +5170 200576 0.5640 +5170 202374 0.4060 +5170 253260 0.8100 +5172 5456 0.6200 +5172 5459 0.4880 +5172 6338 0.5300 +5172 6340 0.5790 +5172 6521 0.7500 +5172 6522 0.5190 +5172 6528 0.9260 +5172 6549 0.4090 +5172 6550 0.5920 +5172 6557 0.6190 +5172 6558 0.5330 +5172 6559 0.6470 +5172 6561 0.6500 +5172 6567 0.5150 +5172 7007 0.5100 +5172 7038 0.8960 +5172 7067 0.4210 +5172 7068 0.4150 +5172 7080 0.7270 +5172 7173 0.8690 +5172 7200 0.5430 +5172 7253 0.7950 +5172 7349 0.5440 +5172 7399 0.5990 +5172 7466 0.6270 +5172 7809 0.5430 +5172 7849 0.7320 +5172 8671 0.6240 +5172 8884 0.5780 +5172 9058 0.5000 +5172 9132 0.6380 +5172 9381 0.9000 +5172 9497 0.6030 +5172 9498 0.7180 +5172 10083 0.5880 +5172 10518 0.4170 +5172 10568 0.4130 +5172 10723 0.4020 +5172 10804 0.7190 +5172 10999 0.4330 +5172 11078 0.5800 +5172 23562 0.5110 +5172 25861 0.5310 +5172 26266 0.6670 +5172 26270 0.5480 +5172 27199 0.4220 +5172 27347 0.4330 +5172 50506 0.8230 +5172 50617 0.4290 +5172 51168 0.8300 +5172 51458 0.4600 +5172 53904 0.5430 +5172 53905 0.5260 +5172 55107 0.5210 +5172 56649 0.6590 +5172 57127 0.5760 +5172 57128 0.4970 +5172 57282 0.4540 +5172 57623 0.5680 +5172 57835 0.4750 +5172 64072 0.7870 +5172 64699 0.7290 +5172 65217 0.6690 +5172 65266 0.4480 +5172 79955 0.5990 +5172 83697 0.5880 +5172 83715 0.4810 +5172 84059 0.5440 +5172 85406 0.5290 +5172 90527 0.5430 +5172 116085 0.5190 +5172 116369 0.5460 +5172 117531 0.8050 +5172 124590 0.5170 +5172 125336 0.6470 +5172 126326 0.4970 +5172 133060 0.6620 +5172 146183 0.6320 +5172 153562 0.4120 +5172 159963 0.5900 +5172 160728 0.8170 +5172 161497 0.6980 +5172 169792 0.4900 +5172 222662 0.5200 +5172 246213 0.4300 +5172 253827 0.4120 +5172 259236 0.5980 +5172 286262 0.4800 +5172 286676 0.4340 +5172 340990 0.5540 +5172 389207 0.4550 +5172 389434 0.9100 +5172 405753 0.8540 +5172 494513 0.6330 +5172 729330 0.6830 +5173 5179 0.9560 +5173 5367 0.8740 +5173 5368 0.9860 +5173 5409 0.5160 +5173 5443 0.9940 +5173 5539 0.6060 +5173 5540 0.5670 +5173 5566 0.5480 +5173 5567 0.5460 +5173 5568 0.5470 +5173 5582 0.5780 +5173 5617 0.4180 +5173 5660 0.4990 +5173 5697 0.6610 +5173 5816 0.6040 +5173 5957 0.4370 +5173 6295 0.4110 +5173 6314 0.6490 +5173 6531 0.5850 +5173 6532 0.4450 +5173 6714 0.5630 +5173 6750 0.9110 +5173 6751 0.5890 +5173 6752 0.6090 +5173 6753 0.5350 +5173 6754 0.5740 +5173 6755 0.5170 +5173 6863 0.9370 +5173 6869 0.5940 +5173 6870 0.7400 +5173 7054 0.6130 +5173 7064 0.4200 +5173 7200 0.5820 +5173 7425 0.4430 +5173 7432 0.7520 +5173 7442 0.4760 +5173 7447 0.5960 +5173 7857 0.5260 +5173 8484 0.5830 +5173 8620 0.5460 +5173 8811 0.5940 +5173 8862 0.7460 +5173 9283 0.5170 +5173 9360 0.4120 +5173 9607 0.6170 +5173 9630 0.4990 +5173 10075 0.5490 +5173 10206 0.8590 +5173 10316 0.5330 +5173 10653 0.7530 +5173 10681 0.5320 +5173 10874 0.6260 +5173 11104 0.4700 +5173 23627 0.6590 +5173 26086 0.4110 +5173 26517 0.6980 +5173 26521 0.5970 +5173 27319 0.5030 +5173 27344 0.4640 +5173 30818 0.6650 +5173 51052 0.4090 +5173 51083 0.9070 +5173 51738 0.4770 +5173 51764 0.5650 +5173 51806 0.5470 +5173 54112 0.4470 +5173 54331 0.5000 +5173 54820 0.4250 +5173 55851 0.5700 +5173 55970 0.5320 +5173 56923 0.6020 +5173 57030 0.4310 +5173 57084 0.6310 +5173 57486 0.4160 +5173 57761 0.4320 +5173 59272 0.7080 +5173 59345 0.5350 +5173 64111 0.4800 +5173 84152 0.7410 +5173 84539 0.5460 +5173 84634 0.7500 +5173 91860 0.5470 +5173 94235 0.5130 +5173 116443 0.9270 +5173 116444 0.9180 +5173 117194 0.4380 +5173 129521 0.5980 +5173 140679 0.5900 +5173 146713 0.4420 +5173 163688 0.5470 +5173 246213 0.4480 +5173 256933 0.6330 +5173 283869 0.6060 +5173 347148 0.4570 +5173 594857 0.4470 +5173 104909134 0.7110 +5174 5540 0.4040 +5174 5576 0.9000 +5174 5739 0.6220 +5174 5830 0.4200 +5174 5962 0.6360 +5174 6048 0.4060 +5174 6337 0.4220 +5174 6519 0.4820 +5174 6550 0.9530 +5174 6561 0.4180 +5174 6568 0.8860 +5174 6569 0.8160 +5174 6583 0.6230 +5174 6584 0.6590 +5174 6714 0.5560 +5174 6794 0.4080 +5174 7031 0.5060 +5174 7082 0.7320 +5174 7357 0.4280 +5174 7430 0.8350 +5174 7827 0.7560 +5174 9368 0.8610 +5174 9390 0.4620 +5174 9429 0.7180 +5174 9687 0.6360 +5174 9747 0.4090 +5174 10050 0.5580 +5174 10158 0.9680 +5174 10202 0.4700 +5174 10257 0.8050 +5174 10598 0.5430 +5174 10728 0.5020 +5174 10786 0.6120 +5174 11216 0.9510 +5174 22864 0.4330 +5174 22941 0.5510 +5174 28513 0.4370 +5174 29974 0.4910 +5174 54545 0.4060 +5174 55243 0.7700 +5174 55604 0.6280 +5174 55867 0.8190 +5174 56606 0.8680 +5174 57120 0.6180 +5174 57608 0.4580 +5174 59272 0.8150 +5174 64398 0.5210 +5174 65010 0.8560 +5174 79849 0.4930 +5174 80704 0.4400 +5174 84063 0.8200 +5174 84623 0.7670 +5174 92912 0.4070 +5174 116085 0.9210 +5174 140453 0.6290 +5174 142680 0.7080 +5174 159963 0.5890 +5174 220963 0.6680 +5174 285498 0.4340 +5174 339451 0.6130 +5174 342850 0.4180 +5174 100996758 0.4010 +5175 5196 0.4700 +5175 5228 0.5830 +5175 5241 0.4360 +5175 5294 0.4490 +5175 5327 0.5020 +5175 5328 0.4770 +5175 5329 0.4070 +5175 5335 0.9410 +5175 5336 0.5840 +5175 5340 0.5170 +5175 5346 0.4790 +5175 5420 0.5280 +5175 5460 0.6200 +5175 5468 0.6540 +5175 5473 0.4550 +5175 5515 0.5220 +5175 5516 0.5130 +5175 5518 0.6300 +5175 5519 0.4990 +5175 5525 0.5080 +5175 5526 0.5010 +5175 5527 0.5000 +5175 5528 0.4990 +5175 5529 0.4990 +5175 5594 0.4490 +5175 5595 0.6070 +5175 5629 0.5770 +5175 5688 0.4360 +5175 5724 0.7240 +5175 5728 0.4810 +5175 5737 0.5480 +5175 5743 0.5150 +5175 5747 0.4920 +5175 5777 0.9790 +5175 5781 0.9990 +5175 5787 0.6290 +5175 5788 0.9120 +5175 5818 0.5650 +5175 5829 0.4440 +5175 6275 0.6440 +5175 6280 0.4500 +5175 6285 0.4040 +5175 6347 0.6700 +5175 6348 0.5280 +5175 6351 0.5060 +5175 6357 0.5260 +5175 6363 0.6850 +5175 6364 0.5820 +5175 6366 0.5320 +5175 6368 0.4660 +5175 6369 0.5130 +5175 6373 0.4070 +5175 6374 0.4760 +5175 6376 0.6550 +5175 6382 0.7180 +5175 6385 0.6320 +5175 6387 0.7450 +5175 6401 0.9590 +5175 6402 0.7970 +5175 6403 0.9080 +5175 6404 0.6890 +5175 6426 0.4120 +5175 6440 0.4680 +5175 6469 0.4860 +5175 6504 0.4810 +5175 6513 0.5120 +5175 6591 0.4820 +5175 6615 0.5070 +5175 6657 0.5960 +5175 6662 0.5200 +5175 6663 0.4350 +5175 6678 0.4430 +5175 6688 0.4080 +5175 6693 0.7160 +5175 6696 0.5950 +5175 6714 0.9480 +5175 6772 0.4470 +5175 6774 0.6210 +5175 6776 0.4070 +5175 6778 0.4490 +5175 6850 0.5870 +5175 6855 0.5130 +5175 6876 0.6450 +5175 6909 0.4510 +5175 7010 0.8420 +5175 7037 0.5460 +5175 7039 0.4190 +5175 7040 0.7020 +5175 7042 0.4800 +5175 7043 0.5040 +5175 7046 0.4250 +5175 7048 0.4880 +5175 7056 0.5920 +5175 7057 0.6280 +5175 7058 0.4280 +5175 7070 0.8780 +5175 7075 0.8270 +5175 7076 0.5000 +5175 7077 0.4780 +5175 7082 0.7880 +5175 7097 0.5330 +5175 7099 0.6080 +5175 7122 0.8450 +5175 7124 0.7280 +5175 7132 0.4900 +5175 7137 0.4320 +5175 7139 0.5480 +5175 7157 0.5980 +5175 7251 0.4240 +5175 7291 0.4230 +5175 7305 0.5190 +5175 7356 0.4320 +5175 7412 0.8200 +5175 7414 0.4860 +5175 7423 0.5660 +5175 7424 0.6560 +5175 7431 0.6610 +5175 7448 0.5230 +5175 7450 0.9180 +5175 7472 0.5160 +5175 7474 0.4070 +5175 7490 0.5840 +5175 7525 0.6160 +5175 7535 0.6920 +5175 7837 0.7430 +5175 7852 0.7840 +5175 8174 0.4790 +5175 8290 0.4530 +5175 8356 0.4530 +5175 8549 0.4510 +5175 8600 0.4220 +5175 8639 0.5700 +5175 8698 0.4450 +5175 8764 0.5230 +5175 8817 0.7280 +5175 8822 0.7280 +5175 8823 0.7410 +5175 8829 0.5430 +5175 8842 0.8330 +5175 8862 0.4140 +5175 9034 0.4700 +5175 9314 0.5330 +5175 9332 0.7080 +5175 9370 0.4590 +5175 9429 0.4210 +5175 9749 0.4050 +5175 9780 0.6010 +5175 10184 0.4010 +5175 10232 0.5320 +5175 10288 0.4530 +5175 10365 0.5430 +5175 10451 0.4540 +5175 10507 0.4900 +5175 10544 0.5100 +5175 10563 0.4100 +5175 10630 0.7760 +5175 10631 0.5040 +5175 10673 0.4210 +5175 10755 0.4240 +5175 10763 0.6950 +5175 10875 0.4250 +5175 10894 0.8220 +5175 11082 0.4220 +5175 22914 0.5010 +5175 22918 0.7920 +5175 23166 0.4860 +5175 23261 0.4340 +5175 23462 0.4550 +5175 25936 0.4990 +5175 26281 0.7410 +5175 27006 0.7460 +5175 28514 0.4200 +5175 29126 0.5150 +5175 29944 0.4410 +5175 30816 0.4540 +5175 50848 0.9320 +5175 50943 0.5960 +5175 51162 0.4710 +5175 51206 0.4410 +5175 51266 0.4240 +5175 51298 0.4460 +5175 51406 0.6850 +5175 51705 0.8030 +5175 51706 0.4090 +5175 54345 0.4420 +5175 54474 0.4850 +5175 54495 0.4380 +5175 54514 0.4290 +5175 54538 0.5240 +5175 54567 0.6360 +5175 55107 0.4150 +5175 55303 0.4830 +5175 56034 0.4080 +5175 57007 0.4520 +5175 57124 0.4650 +5175 57126 0.9980 +5175 58191 0.5510 +5175 58504 0.4700 +5175 64321 0.5210 +5175 79923 0.7300 +5175 80781 0.5550 +5175 83478 0.5440 +5175 83483 0.5850 +5175 83700 0.6250 +5175 84919 0.4400 +5175 89780 0.4280 +5175 90952 0.7280 +5175 94121 0.4170 +5175 116449 0.5440 +5175 121340 0.5070 +5175 123803 0.4710 +5175 135228 0.5130 +5175 137902 0.7410 +5175 140885 0.6000 +5175 146713 0.5740 +5175 158835 0.4570 +5175 161198 0.4460 +5175 168400 0.4370 +5175 256329 0.4480 +5175 259215 0.4100 +5175 400566 0.4640 +5175 405754 0.4660 +5175 440093 0.4540 +5175 440686 0.4540 +5175 653604 0.4540 +5175 728378 0.4400 +5175 100133941 0.8470 +5175 100506658 0.7530 +5176 5196 0.4810 +5176 5197 0.4380 +5176 5228 0.4940 +5176 5265 0.7440 +5176 5306 0.5600 +5176 5327 0.8180 +5176 5328 0.6650 +5176 5329 0.4470 +5176 5340 0.9950 +5176 5352 0.5840 +5176 5358 0.4560 +5176 5360 0.5500 +5176 5444 0.4370 +5176 5445 0.4330 +5176 5479 0.5530 +5176 5624 0.4010 +5176 5858 0.4430 +5176 6017 0.4850 +5176 6121 0.5330 +5176 6387 0.5820 +5176 6652 0.4650 +5176 6678 0.4300 +5176 7035 0.5570 +5176 7045 0.4360 +5176 7056 0.4930 +5176 7057 0.4710 +5176 7058 0.4950 +5176 7076 0.6090 +5176 7077 0.5080 +5176 7078 0.6740 +5176 7123 0.4870 +5176 7276 0.4320 +5176 7295 0.4450 +5176 7423 0.6640 +5176 7424 0.5600 +5176 7439 0.4260 +5176 7448 0.8280 +5176 7450 0.5970 +5176 7471 0.4860 +5176 7531 0.5260 +5176 8578 0.5790 +5176 9172 0.4050 +5176 9622 0.5140 +5176 9852 0.6510 +5176 9871 0.5420 +5176 10457 0.4930 +5176 10491 0.7480 +5176 23181 0.4180 +5176 51129 0.4840 +5176 51299 0.4190 +5176 51360 0.4810 +5176 55151 0.7060 +5176 56034 0.4120 +5176 57104 0.8120 +5176 60681 0.7350 +5176 64175 0.7000 +5176 80781 0.6720 +5176 84898 0.6090 +5176 90993 0.5320 +5176 121340 0.4780 +5176 257202 0.4620 +5176 284293 0.4780 +5176 387733 0.6810 +5176 440387 0.5880 +5176 493869 0.4570 +5178 5325 0.8320 +5178 5348 0.4160 +5178 5420 0.4560 +5178 5923 0.4910 +5178 6477 0.4950 +5178 6638 0.9350 +5178 6908 0.4720 +5178 7157 0.4030 +5178 7262 0.5060 +5178 7474 0.4420 +5178 7490 0.4840 +5178 8678 0.5510 +5178 8788 0.6740 +5178 8882 0.5320 +5178 8910 0.5830 +5178 8926 0.5980 +5178 9077 0.5480 +5178 10376 0.4670 +5178 23089 0.9080 +5178 23619 0.5660 +5178 26240 0.4210 +5178 29947 0.6120 +5178 54715 0.4260 +5178 55089 0.4070 +5178 57194 0.4620 +5178 57663 0.5090 +5178 57683 0.4760 +5178 91833 0.4220 +5178 93986 0.4070 +5178 146894 0.4270 +5178 199713 0.7450 +5178 266812 0.6030 +5178 388015 0.5140 +5178 100101490 0.4790 +5179 5324 0.4360 +5179 5367 0.6400 +5179 5368 0.7020 +5179 5409 0.6850 +5179 5443 0.9880 +5179 5539 0.5720 +5179 5540 0.5080 +5179 5660 0.4990 +5179 5697 0.6010 +5179 5816 0.4790 +5179 5862 0.4380 +5179 6335 0.4300 +5179 6386 0.5700 +5179 6531 0.4350 +5179 6532 0.5170 +5179 6714 0.5960 +5179 6750 0.9360 +5179 6751 0.5930 +5179 6752 0.5940 +5179 6753 0.5120 +5179 6754 0.5980 +5179 6755 0.5450 +5179 6863 0.8630 +5179 7054 0.6050 +5179 7200 0.4550 +5179 7432 0.4550 +5179 7442 0.4260 +5179 7857 0.5870 +5179 8484 0.5480 +5179 8697 0.6260 +5179 8811 0.5730 +5179 8862 0.5680 +5179 9283 0.5440 +5179 9607 0.5110 +5179 10206 0.5430 +5179 10231 0.4170 +5179 10316 0.5670 +5179 10874 0.6140 +5179 11054 0.9870 +5179 27344 0.5940 +5179 29945 0.6330 +5179 51083 0.7640 +5179 51433 0.6310 +5179 54112 0.4220 +5179 54550 0.4080 +5179 54757 0.4010 +5179 56923 0.5250 +5179 56975 0.6610 +5179 57030 0.4420 +5179 57084 0.4440 +5179 64682 0.6230 +5179 79145 0.5460 +5179 84152 0.5500 +5179 84539 0.5510 +5179 85445 0.4150 +5179 90362 0.4170 +5179 114786 0.4210 +5179 119504 0.6210 +5179 128434 0.4440 +5179 129521 0.5570 +5179 147381 0.4390 +5179 195814 0.5340 +5179 203286 0.7690 +5179 246184 0.7190 +5179 256933 0.6360 +5179 259249 0.4840 +5179 283869 0.5620 +5184 5225 0.6580 +5184 5226 0.4090 +5184 5236 0.4340 +5184 5476 0.4200 +5184 5550 0.5350 +5184 5621 0.4910 +5184 5625 0.5320 +5184 5831 0.4480 +5184 5832 0.4090 +5184 6335 0.6150 +5184 6414 0.4120 +5184 6470 0.5170 +5184 6472 0.6000 +5184 6647 0.4250 +5184 7167 0.6080 +5184 7511 0.5780 +5184 7512 0.5700 +5184 7515 0.4110 +5184 7849 0.4070 +5184 8659 0.4270 +5184 9091 0.4940 +5184 9861 0.4540 +5184 10072 0.4810 +5184 10296 0.4860 +5184 23173 0.4760 +5184 23438 0.6330 +5184 23549 0.4220 +5184 29952 0.6540 +5184 29958 0.4090 +5184 50808 0.4260 +5184 51056 0.5840 +5184 54622 0.5100 +5184 54901 0.4150 +5184 55066 0.4300 +5184 55276 0.5260 +5184 55748 0.7200 +5184 55763 0.5530 +5184 57494 0.4060 +5184 60685 0.4760 +5184 65263 0.4250 +5184 79571 0.4620 +5184 79722 0.4660 +5184 80790 0.4160 +5184 83795 0.5060 +5184 84735 0.6310 +5184 93659 0.4850 +5184 116154 0.4270 +5184 127018 0.4890 +5184 128486 0.4180 +5184 140902 0.5070 +5184 170302 0.5380 +5184 338917 0.4300 +5187 5499 0.4360 +5187 5500 0.4380 +5187 5501 0.4360 +5187 5567 0.4270 +5187 5936 0.7500 +5187 6095 0.5650 +5187 6096 0.5510 +5187 6097 0.4090 +5187 6233 0.4990 +5187 6492 0.4920 +5187 6500 0.9010 +5187 7311 0.5020 +5187 7314 0.4990 +5187 7316 0.5090 +5187 7704 0.4260 +5187 8454 0.9000 +5187 8553 0.6420 +5187 8863 0.9970 +5187 8864 0.9970 +5187 8914 0.8880 +5187 8945 0.9620 +5187 9099 0.4580 +5187 9572 0.7620 +5187 9575 0.9130 +5187 9975 0.7020 +5187 9978 0.9120 +5187 11091 0.4260 +5187 11200 0.6470 +5187 23291 0.9380 +5187 23373 0.7580 +5187 26224 0.6540 +5187 56938 0.5580 +5187 79365 0.7190 +5187 139135 0.4620 +5187 148523 0.4100 +5187 150094 0.8380 +5187 102800317 0.5850 +5188 5431 0.5130 +5188 5432 0.5130 +5188 5471 0.8900 +5188 5573 0.4110 +5188 5575 0.4560 +5188 5576 0.4450 +5188 5577 0.4100 +5188 5592 0.4100 +5188 5593 0.4100 +5188 5832 0.8700 +5188 5859 0.9930 +5188 5917 0.5180 +5188 6120 0.5300 +5188 6135 0.5850 +5188 6170 0.8310 +5188 6182 0.4990 +5188 6183 0.4100 +5188 6189 0.5230 +5188 6193 0.4350 +5188 6209 0.4120 +5188 6301 0.4170 +5188 6897 0.4060 +5188 7284 0.5080 +5188 7407 0.6580 +5188 8050 0.4070 +5188 8192 0.6340 +5188 8565 0.5440 +5188 8697 0.4600 +5188 8802 0.5510 +5188 8833 0.9490 +5188 9533 0.4860 +5188 9576 0.4210 +5188 9801 0.4770 +5188 9945 0.8100 +5188 10056 0.5050 +5188 10073 0.4480 +5188 10102 0.6210 +5188 10127 0.4330 +5188 10449 0.4110 +5188 10471 0.4470 +5188 10667 0.4960 +5188 10797 0.4060 +5188 10908 0.4180 +5188 11128 0.4090 +5188 11224 0.6950 +5188 23395 0.6230 +5188 23438 0.5340 +5188 25813 0.4820 +5188 25973 0.6170 +5188 26024 0.5240 +5188 26284 0.4400 +5188 27010 0.4810 +5188 28976 0.4640 +5188 28998 0.4660 +5188 30816 0.5060 +5188 51067 0.5960 +5188 51071 0.5550 +5188 51081 0.5710 +5188 51102 0.6430 +5188 51154 0.4100 +5188 51167 0.4660 +5188 51241 0.7930 +5188 51253 0.4920 +5188 51497 0.7130 +5188 51520 0.4270 +5188 51557 0.8180 +5188 51651 0.7930 +5188 51700 0.4700 +5188 51704 0.4300 +5188 51706 0.4990 +5188 53632 0.4250 +5188 54529 0.7810 +5188 54859 0.4590 +5188 54938 0.4420 +5188 54995 0.4320 +5188 55140 0.4050 +5188 55157 0.9990 +5188 55278 0.9990 +5188 55572 0.5580 +5188 55699 0.5940 +5188 55703 0.5560 +5188 56474 0.7420 +5188 56922 0.7200 +5188 57017 0.5090 +5188 57038 0.5990 +5188 57096 0.4090 +5188 57107 0.4660 +5188 57176 0.7060 +5188 57470 0.4970 +5188 57494 0.7610 +5188 57505 0.6120 +5188 64087 0.7930 +5188 64963 0.4450 +5188 64969 0.4060 +5188 65008 0.4280 +5188 79073 0.8810 +5188 79587 0.5960 +5188 79731 0.9950 +5188 79783 0.4650 +5188 80222 0.5590 +5188 81570 0.5460 +5188 84172 0.5410 +5188 84464 0.8790 +5188 84893 0.4700 +5188 85366 0.4030 +5188 85476 0.5490 +5188 89894 0.6080 +5188 91133 0.4690 +5188 91647 0.4550 +5188 91875 0.7310 +5188 92106 0.4980 +5188 92399 0.4050 +5188 92935 0.4270 +5188 116832 0.8310 +5188 123263 0.6720 +5188 123283 0.4180 +5188 124454 0.9580 +5188 138428 0.8320 +5188 140894 0.4100 +5188 158584 0.9920 +5188 219927 0.4090 +5188 283459 0.9990 +5188 283985 0.8100 +5188 284716 0.7610 +5188 285148 0.8100 +5188 375775 0.4100 +5188 405754 0.5280 +5188 440275 0.4110 +5188 441024 0.4070 +5188 606495 0.4990 +5189 5190 0.9990 +5189 5191 0.9380 +5189 5192 0.9660 +5189 5194 0.9690 +5189 5195 0.9540 +5189 5689 0.4180 +5189 5824 0.9030 +5189 5825 0.7110 +5189 5828 0.9470 +5189 5830 0.9770 +5189 6233 0.5630 +5189 7311 0.6640 +5189 7314 0.5620 +5189 7316 0.5620 +5189 7321 0.6270 +5189 7322 0.6260 +5189 7323 0.6260 +5189 7353 0.4820 +5189 8239 0.5090 +5189 8310 0.6490 +5189 8443 0.6120 +5189 8504 0.8670 +5189 8540 0.6920 +5189 8800 0.4960 +5189 9373 0.4030 +5189 9409 0.8550 +5189 9905 0.4200 +5189 10277 0.4120 +5189 10449 0.5990 +5189 26043 0.6940 +5189 51555 0.9180 +5189 54469 0.7680 +5189 55610 0.4670 +5189 55666 0.4740 +5189 55670 0.9890 +5189 57798 0.4780 +5189 63892 0.4740 +5189 63908 0.4030 +5189 64848 0.5630 +5189 79809 0.6230 +5190 5191 0.9840 +5190 5192 0.9890 +5190 5194 0.9890 +5190 5195 0.9880 +5190 5264 0.8240 +5190 5290 0.4290 +5190 5689 0.4460 +5190 5824 0.9670 +5190 5825 0.7000 +5190 5827 0.4960 +5190 5828 0.9800 +5190 5830 0.9940 +5190 6093 0.4020 +5190 6233 0.5620 +5190 6257 0.4400 +5190 6342 0.5130 +5190 6729 0.5500 +5190 7311 0.5870 +5190 7314 0.5620 +5190 7316 0.5620 +5190 7321 0.7010 +5190 7322 0.7410 +5190 7323 0.6320 +5190 7353 0.5800 +5190 8216 0.5390 +5190 8239 0.7150 +5190 8309 0.4170 +5190 8310 0.4750 +5190 8443 0.4270 +5190 8504 0.9730 +5190 8540 0.8090 +5190 8775 0.4630 +5190 8799 0.8440 +5190 8800 0.8430 +5190 9373 0.4360 +5190 9409 0.9600 +5190 10005 0.4270 +5190 10059 0.4420 +5190 10454 0.5090 +5190 10478 0.5230 +5190 10533 0.4610 +5190 11264 0.4190 +5190 11345 0.9230 +5190 23710 0.8720 +5190 26043 0.6740 +5190 29927 0.4180 +5190 51024 0.5350 +5190 51555 0.9370 +5190 54469 0.9160 +5190 54662 0.4890 +5190 54942 0.8660 +5190 55333 0.6680 +5190 55666 0.4680 +5190 55670 0.9990 +5190 55968 0.4230 +5190 56131 0.4050 +5190 80233 0.5020 +5190 81488 0.4300 +5190 81570 0.4420 +5190 83752 0.4430 +5190 84749 0.4770 +5190 91452 0.4220 +5190 91544 0.5250 +5190 92305 0.7670 +5190 92960 0.7080 +5190 219743 0.6250 +5190 222234 0.5390 +5191 5192 0.9850 +5191 5194 0.9980 +5191 5195 0.9980 +5191 5264 0.9830 +5191 5824 0.9580 +5191 5825 0.6920 +5191 5827 0.4680 +5191 5828 0.9770 +5191 5830 0.9990 +5191 6233 0.4990 +5191 6342 0.4450 +5191 7203 0.5490 +5191 7311 0.4990 +5191 7314 0.5040 +5191 7316 0.5040 +5191 7321 0.6150 +5191 7322 0.6590 +5191 7323 0.5650 +5191 7411 0.4340 +5191 8239 0.5430 +5191 8309 0.5400 +5191 8310 0.6190 +5191 8443 0.8400 +5191 8504 0.9500 +5191 8540 0.9590 +5191 8799 0.8070 +5191 8800 0.8210 +5191 9409 0.9540 +5191 9607 0.5760 +5191 10190 0.6300 +5191 10449 0.6150 +5191 10478 0.5330 +5191 10574 0.5010 +5191 10575 0.5650 +5191 10654 0.7810 +5191 10694 0.6310 +5191 11146 0.4310 +5191 11264 0.4360 +5191 22948 0.6320 +5191 23600 0.5540 +5191 26063 0.4160 +5191 51024 0.4680 +5191 51555 0.9980 +5191 54469 0.6110 +5191 55220 0.7830 +5191 55670 0.9290 +5191 55711 0.4790 +5191 55825 0.4710 +5191 56131 0.4060 +5191 64834 0.4230 +5191 79031 0.7340 +5191 83752 0.4520 +5191 84188 0.6790 +5191 91452 0.4620 +5191 92960 0.7050 +5191 157680 0.4410 +5191 219743 0.7740 +5191 222234 0.7410 +5191 441150 0.8350 +5192 5194 0.9980 +5192 5195 0.9850 +5192 5264 0.7880 +5192 5824 0.9940 +5192 5825 0.7080 +5192 5826 0.4060 +5192 5827 0.4360 +5192 5828 0.9990 +5192 5830 0.9950 +5192 6233 0.5510 +5192 6247 0.4550 +5192 6342 0.6800 +5192 7311 0.4990 +5192 7314 0.5430 +5192 7316 0.5700 +5192 7321 0.8050 +5192 7322 0.8170 +5192 7323 0.7320 +5192 8239 0.6240 +5192 8309 0.6290 +5192 8310 0.8550 +5192 8443 0.7940 +5192 8504 0.9640 +5192 8528 0.5320 +5192 8540 0.9270 +5192 8799 0.8790 +5192 8800 0.8820 +5192 9409 0.9620 +5192 9684 0.5330 +5192 9843 0.4550 +5192 10005 0.7280 +5192 10449 0.6650 +5192 10455 0.7460 +5192 10478 0.5380 +5192 10901 0.6110 +5192 10965 0.5230 +5192 11001 0.5580 +5192 11345 0.9530 +5192 23417 0.5470 +5192 23600 0.6440 +5192 23710 0.9250 +5192 26061 0.6070 +5192 26063 0.5740 +5192 27349 0.4580 +5192 29089 0.4090 +5192 51179 0.4990 +5192 51268 0.6250 +5192 51555 0.9100 +5192 51619 0.4090 +5192 54363 0.5380 +5192 54469 0.6050 +5192 54677 0.6530 +5192 55170 0.4360 +5192 55670 0.9700 +5192 55825 0.5430 +5192 83752 0.6860 +5192 84188 0.6750 +5192 84934 0.5110 +5192 92960 0.7520 +5192 122970 0.5010 +5192 196743 0.6210 +5192 219743 0.7690 +5192 222234 0.5310 +5192 283927 0.4990 +5192 341208 0.4550 +5192 373156 0.5780 +5192 390916 0.5150 +5194 5195 0.9990 +5194 5264 0.8250 +5194 5824 0.9990 +5194 5825 0.8760 +5194 5827 0.7610 +5194 5828 0.9950 +5194 5830 0.9990 +5194 6233 0.4990 +5194 6342 0.7420 +5194 7311 0.4990 +5194 7314 0.4990 +5194 7316 0.4990 +5194 7321 0.6990 +5194 7322 0.7110 +5194 7323 0.6570 +5194 8239 0.5240 +5194 8309 0.6810 +5194 8310 0.8340 +5194 8443 0.7360 +5194 8504 0.9940 +5194 8528 0.5600 +5194 8540 0.9240 +5194 8799 0.9440 +5194 8800 0.9160 +5194 9409 0.9770 +5194 10005 0.7000 +5194 10059 0.4020 +5194 10449 0.6700 +5194 10455 0.6930 +5194 10478 0.8140 +5194 10901 0.5320 +5194 10965 0.5200 +5194 11001 0.5530 +5194 11118 0.5280 +5194 11231 0.4290 +5194 11264 0.7160 +5194 23417 0.5980 +5194 23600 0.6220 +5194 26061 0.6840 +5194 26063 0.5800 +5194 51024 0.7500 +5194 51179 0.5730 +5194 51268 0.6030 +5194 51555 0.9470 +5194 54332 0.5490 +5194 54363 0.5870 +5194 54469 0.5880 +5194 54677 0.5960 +5194 54986 0.4410 +5194 55626 0.4010 +5194 55670 0.9640 +5194 55825 0.6110 +5194 83752 0.7000 +5194 84188 0.5160 +5194 84542 0.5590 +5194 84896 0.6700 +5194 91452 0.7700 +5194 92960 0.8370 +5194 122970 0.5820 +5194 150962 0.5560 +5194 196743 0.5680 +5194 219743 0.7010 +5194 222234 0.8960 +5194 222659 0.5080 +5194 283927 0.5980 +5194 373156 0.6240 +5194 390916 0.6440 +5195 5264 0.7510 +5195 5824 0.9990 +5195 5825 0.8910 +5195 5827 0.6610 +5195 5828 0.9900 +5195 5830 0.9990 +5195 6233 0.5220 +5195 6342 0.7480 +5195 7311 0.6030 +5195 7314 0.5320 +5195 7316 0.5320 +5195 7321 0.6430 +5195 7322 0.6510 +5195 7323 0.6530 +5195 8239 0.5530 +5195 8309 0.6520 +5195 8310 0.8000 +5195 8443 0.7950 +5195 8504 0.9840 +5195 8528 0.5370 +5195 8540 0.9370 +5195 8658 0.5610 +5195 8799 0.9210 +5195 8800 0.8590 +5195 9409 0.9710 +5195 9804 0.4060 +5195 10005 0.5700 +5195 10059 0.5210 +5195 10455 0.5790 +5195 10478 0.6970 +5195 10901 0.6440 +5195 10965 0.5030 +5195 11001 0.6290 +5195 11231 0.4640 +5195 11264 0.5520 +5195 23417 0.5680 +5195 23600 0.5400 +5195 26061 0.5390 +5195 26063 0.5300 +5195 51024 0.7030 +5195 51179 0.5240 +5195 51268 0.5420 +5195 51555 0.9990 +5195 54332 0.5400 +5195 54363 0.5240 +5195 54469 0.5790 +5195 54531 0.4200 +5195 54677 0.5140 +5195 55670 0.9630 +5195 55825 0.5090 +5195 80339 0.4570 +5195 80351 0.4580 +5195 83752 0.6990 +5195 84188 0.4310 +5195 84896 0.7360 +5195 91452 0.7780 +5195 92960 0.7270 +5195 122970 0.5010 +5195 196743 0.5750 +5195 203068 0.4190 +5195 219743 0.7890 +5195 283927 0.5390 +5195 373156 0.5660 +5195 390916 0.5310 +5196 5197 0.9650 +5196 5265 0.6320 +5196 5327 0.5060 +5196 5340 0.5810 +5196 5341 0.4820 +5196 5345 0.4800 +5196 5473 0.9360 +5196 5624 0.6620 +5196 5788 0.4290 +5196 6280 0.4280 +5196 6283 0.4210 +5196 6288 0.4220 +5196 6289 0.4120 +5196 6346 0.8030 +5196 6347 0.9980 +5196 6348 0.7340 +5196 6351 0.7520 +5196 6354 0.4720 +5196 6355 0.6070 +5196 6356 0.9970 +5196 6357 0.9970 +5196 6360 0.6470 +5196 6361 0.9960 +5196 6362 0.4220 +5196 6363 0.7050 +5196 6364 0.9980 +5196 6366 0.9980 +5196 6367 0.4140 +5196 6368 0.4030 +5196 6369 0.6280 +5196 6370 0.9970 +5196 6372 0.9960 +5196 6373 0.9990 +5196 6374 0.5270 +5196 6375 0.9960 +5196 6376 0.7130 +5196 6387 0.9990 +5196 6401 0.4750 +5196 6403 0.9210 +5196 6404 0.5870 +5196 6714 0.6200 +5196 6737 0.4300 +5196 6846 0.9950 +5196 7035 0.4550 +5196 7039 0.4830 +5196 7040 0.6650 +5196 7056 0.7970 +5196 7057 0.7290 +5196 7066 0.6180 +5196 7072 0.4160 +5196 7073 0.4220 +5196 7076 0.4470 +5196 7097 0.4530 +5196 7098 0.5180 +5196 7099 0.6610 +5196 7114 0.5100 +5196 7124 0.7140 +5196 7130 0.4970 +5196 7412 0.4790 +5196 7448 0.6270 +5196 7450 0.9320 +5196 7852 0.8950 +5196 8817 0.5900 +5196 8822 0.5920 +5196 8823 0.5910 +5196 8828 0.4440 +5196 8829 0.4760 +5196 9166 0.4370 +5196 9332 0.4260 +5196 9547 0.9960 +5196 9814 0.6380 +5196 10216 0.4600 +5196 10344 0.9950 +5196 10544 0.5810 +5196 10563 0.9460 +5196 10663 0.7550 +5196 10803 0.8320 +5196 10850 0.6710 +5196 11093 0.5710 +5196 26002 0.4470 +5196 26281 0.5900 +5196 27006 0.5910 +5196 51206 0.6570 +5196 51266 0.7100 +5196 56477 0.9970 +5196 57007 0.6440 +5196 57649 0.6930 +5196 58191 0.7720 +5196 59272 0.4830 +5196 63940 0.4480 +5196 64805 0.5420 +5196 80781 0.6710 +5196 81027 0.6230 +5196 83706 0.5940 +5196 126006 0.4010 +5196 255738 0.4550 +5196 284340 0.9950 +5196 340205 0.5240 +5197 5265 0.4870 +5197 5327 0.4470 +5197 5340 0.7300 +5197 5345 0.4780 +5197 5473 0.7250 +5197 5624 0.5470 +5197 6346 0.7070 +5197 6347 0.4010 +5197 6348 0.5420 +5197 6351 0.4670 +5197 6356 0.9950 +5197 6363 0.9940 +5197 6366 0.9950 +5197 6367 0.9950 +5197 6370 0.9940 +5197 6373 0.9990 +5197 6375 0.9950 +5197 6387 0.9970 +5197 6403 0.9010 +5197 6404 0.4580 +5197 6846 0.9950 +5197 7035 0.4560 +5197 7039 0.4420 +5197 7040 0.5700 +5197 7056 0.6680 +5197 7057 0.6940 +5197 7066 0.5370 +5197 7114 0.4510 +5197 7124 0.6090 +5197 7448 0.5980 +5197 7450 0.8510 +5197 7852 0.7360 +5197 8828 0.4460 +5197 8829 0.4410 +5197 9560 0.9940 +5197 10344 0.9940 +5197 10544 0.5220 +5197 10563 0.9990 +5197 10663 0.6780 +5197 10803 0.6590 +5197 10850 0.9940 +5197 11093 0.4470 +5197 51206 0.6390 +5197 51266 0.5500 +5197 56477 0.9940 +5197 64805 0.4720 +5197 80781 0.6530 +5197 81027 0.4780 +5197 83706 0.4600 +5197 84519 0.4040 +5197 139105 0.4540 +5197 340205 0.5460 +5198 5431 0.6750 +5198 5471 0.9870 +5198 5631 0.4310 +5198 5634 0.4710 +5198 6188 0.4620 +5198 6907 0.4180 +5198 7905 0.9180 +5198 8833 0.6250 +5198 8881 0.4130 +5198 9939 0.7930 +5198 10606 0.8210 +5198 22929 0.4400 +5198 23498 0.5060 +5198 23586 0.4570 +5198 55110 0.5670 +5198 55180 0.5420 +5198 56474 0.4290 +5198 56648 0.4560 +5198 84081 0.4240 +5198 143244 0.4560 +5199 5340 0.4310 +5199 5648 0.7040 +5199 5657 0.6950 +5199 5806 0.5770 +5199 6283 0.4200 +5199 6853 0.5290 +5199 7056 0.4310 +5199 7059 0.4820 +5199 7076 0.4900 +5199 7097 0.4600 +5199 7124 0.4240 +5199 7305 0.4960 +5199 7448 0.5220 +5199 7940 0.5090 +5199 8468 0.5910 +5199 8547 0.6400 +5199 9332 0.4200 +5199 9436 0.5050 +5199 9437 0.9740 +5199 9509 0.5630 +5199 9622 0.4330 +5199 10288 0.4550 +5199 10492 0.4440 +5199 10516 0.4730 +5199 10591 0.4090 +5199 10747 0.7070 +5199 10877 0.7420 +5199 10878 0.5920 +5199 11326 0.5320 +5199 22918 0.4810 +5199 23275 0.5290 +5199 26206 0.5910 +5199 27148 0.4740 +5199 27202 0.5840 +5199 29071 0.4230 +5199 30008 0.5820 +5199 50615 0.4570 +5199 51311 0.5180 +5199 51433 0.4240 +5199 53829 0.4110 +5199 55720 0.4780 +5199 56913 0.4050 +5199 78989 0.5480 +5199 81494 0.6470 +5199 90121 0.4570 +5199 114548 0.4210 +5199 115939 0.6590 +5199 122042 0.5940 +5199 145173 0.8610 +5199 220296 0.4340 +5199 387715 0.5000 +5201 5202 0.9990 +5201 5203 0.9990 +5201 5204 0.9990 +5201 5216 0.6400 +5201 5434 0.5160 +5201 5598 0.4220 +5201 5682 0.6340 +5201 5683 0.6430 +5201 5684 0.5390 +5201 5685 0.5550 +5201 5686 0.4470 +5201 5687 0.5760 +5201 5688 0.4910 +5201 5689 0.4640 +5201 5690 0.4870 +5201 5691 0.4410 +5201 5695 0.4600 +5201 5710 0.4540 +5201 5713 0.4840 +5201 6133 0.4670 +5201 6181 0.4580 +5201 6224 0.4330 +5201 6633 0.4120 +5201 6902 0.6620 +5201 6950 0.9880 +5201 7203 0.9840 +5201 7277 0.5460 +5201 7278 0.5460 +5201 7280 0.5130 +5201 7336 0.4680 +5201 7411 0.9990 +5201 7428 0.4450 +5201 7458 0.4140 +5201 7846 0.7340 +5201 8089 0.6850 +5201 8260 0.4350 +5201 8409 0.6110 +5201 8607 0.5410 +5201 8666 0.4310 +5201 8668 0.4340 +5201 8725 0.5390 +5201 8816 0.4360 +5201 9141 0.7760 +5201 9255 0.4220 +5201 10376 0.4440 +5201 10381 0.5530 +5201 10382 0.5070 +5201 10383 0.6430 +5201 10471 0.9990 +5201 10574 0.9640 +5201 10575 0.9750 +5201 10576 0.9720 +5201 10693 0.5910 +5201 10694 0.9690 +5201 10856 0.4680 +5201 22832 0.4030 +5201 22948 0.9450 +5201 23212 0.4320 +5201 24147 0.4020 +5201 25764 0.6180 +5201 27339 0.4740 +5201 28998 0.5840 +5201 53632 0.4220 +5201 55011 0.4100 +5201 55967 0.4850 +5201 79031 0.6200 +5201 80349 0.4840 +5201 81027 0.5030 +5201 81572 0.7540 +5201 84545 0.4020 +5201 84617 0.5140 +5201 84790 0.6040 +5201 113457 0.5460 +5201 245936 0.4220 +5201 337960 0.4680 +5201 345651 0.7920 +5201 347733 0.5040 +5202 5203 0.9990 +5202 5204 0.9990 +5202 5216 0.6170 +5202 5434 0.9980 +5202 5437 0.6360 +5202 5440 0.4340 +5202 5499 0.6800 +5202 5501 0.6220 +5202 5536 0.5950 +5202 5598 0.4120 +5202 5682 0.5850 +5202 5683 0.6240 +5202 5684 0.5560 +5202 5685 0.6000 +5202 5686 0.5340 +5202 5687 0.5360 +5202 5688 0.6030 +5202 5689 0.4360 +5202 5690 0.4900 +5202 5691 0.4060 +5202 5695 0.4200 +5202 5705 0.5180 +5202 5707 0.4300 +5202 5708 0.4390 +5202 5710 0.5240 +5202 5717 0.5450 +5202 6124 0.4310 +5202 6128 0.4360 +5202 6133 0.4780 +5202 6135 0.4270 +5202 6136 0.4690 +5202 6137 0.4160 +5202 6142 0.4190 +5202 6155 0.4330 +5202 6156 0.4390 +5202 6157 0.4780 +5202 6158 0.4520 +5202 6160 0.4160 +5202 6165 0.4510 +5202 6181 0.5090 +5202 6182 0.5090 +5202 6187 0.4530 +5202 6188 0.4710 +5202 6189 0.4470 +5202 6191 0.4290 +5202 6202 0.4630 +5202 6203 0.4430 +5202 6217 0.5960 +5202 6224 0.5330 +5202 6231 0.4110 +5202 6284 0.4100 +5202 6388 0.5500 +5202 6502 0.4980 +5202 6623 0.4880 +5202 6635 0.4110 +5202 6637 0.4950 +5202 6674 0.6040 +5202 6830 0.5040 +5202 6902 0.6380 +5202 6950 0.9610 +5202 7203 0.9650 +5202 7248 0.5840 +5202 7266 0.4350 +5202 7277 0.7580 +5202 7278 0.5600 +5202 7280 0.5660 +5202 7295 0.4940 +5202 7336 0.5250 +5202 7403 0.4540 +5202 7411 0.9990 +5202 7428 0.4760 +5202 7531 0.5950 +5202 7846 0.6930 +5202 7871 0.5590 +5202 7919 0.4080 +5202 8260 0.4320 +5202 8409 0.9990 +5202 8607 0.9770 +5202 8624 0.6060 +5202 8662 0.4330 +5202 8666 0.4220 +5202 8668 0.5580 +5202 8725 0.9970 +5202 9040 0.4510 +5202 9045 0.4120 +5202 9141 0.4780 +5202 9493 0.6440 +5202 9531 0.5600 +5202 9532 0.6980 +5202 9533 0.4410 +5202 10236 0.4290 +5202 10273 0.5540 +5202 10300 0.5330 +5202 10381 0.6210 +5202 10382 0.7230 +5202 10383 0.7970 +5202 10399 0.5040 +5202 10467 0.4080 +5202 10471 0.9990 +5202 10492 0.4120 +5202 10574 0.9690 +5202 10575 0.9740 +5202 10576 0.9690 +5202 10693 0.6800 +5202 10694 0.9680 +5202 10726 0.6220 +5202 10728 0.7010 +5202 10856 0.9780 +5202 10963 0.7390 +5202 11044 0.7790 +5202 11128 0.5500 +5202 11140 0.6560 +5202 11321 0.6820 +5202 22948 0.9650 +5202 23234 0.5590 +5202 23753 0.5500 +5202 25764 0.4170 +5202 25828 0.5220 +5202 25885 0.4210 +5202 26353 0.5470 +5202 27339 0.4450 +5202 51027 0.4820 +5202 51184 0.5030 +5202 51260 0.4080 +5202 51398 0.5490 +5202 51506 0.4180 +5202 51726 0.5640 +5202 54542 0.4420 +5202 55011 0.9580 +5202 55172 0.5740 +5202 55703 0.6120 +5202 56984 0.5660 +5202 57003 0.5630 +5202 59286 0.5170 +5202 79657 0.9860 +5202 79871 0.7620 +5202 80218 0.4030 +5202 80349 0.4260 +5202 81027 0.5280 +5202 81572 0.9990 +5202 84617 0.5640 +5202 84790 0.6470 +5202 112714 0.8060 +5202 113457 0.7160 +5202 116143 0.9970 +5202 120379 0.6410 +5202 150160 0.6400 +5202 337960 0.4220 +5202 338692 0.4210 +5202 345651 0.8960 +5202 347733 0.5950 +5202 110599588 0.8640 +5203 5204 0.9990 +5203 5434 0.8610 +5203 5440 0.8230 +5203 5531 0.4190 +5203 5598 0.4210 +5203 5648 0.5470 +5203 6233 0.4750 +5203 6502 0.4710 +5203 6629 0.4020 +5203 6635 0.4040 +5203 6902 0.4660 +5203 6904 0.6940 +5203 6944 0.4180 +5203 6950 0.9470 +5203 7203 0.9430 +5203 7277 0.5850 +5203 7278 0.5850 +5203 7280 0.5120 +5203 7411 0.9990 +5203 7428 0.4140 +5203 7846 0.6260 +5203 7871 0.4530 +5203 8409 0.6600 +5203 8562 0.6050 +5203 8607 0.7860 +5203 8725 0.8880 +5203 8816 0.4770 +5203 9141 0.7500 +5203 10146 0.4440 +5203 10300 0.6270 +5203 10376 0.4820 +5203 10381 0.5330 +5203 10382 0.5080 +5203 10383 0.5880 +5203 10467 0.4060 +5203 10471 0.9990 +5203 10544 0.4340 +5203 10574 0.9710 +5203 10575 0.9740 +5203 10576 0.9650 +5203 10693 0.6370 +5203 10694 0.9670 +5203 10747 0.5320 +5203 10856 0.7560 +5203 11017 0.4270 +5203 11044 0.6750 +5203 11104 0.5970 +5203 11157 0.4160 +5203 22948 0.9650 +5203 23658 0.4460 +5203 26496 0.4790 +5203 26973 0.6340 +5203 26986 0.4930 +5203 51119 0.5110 +5203 51690 0.4030 +5203 54542 0.6250 +5203 57129 0.5150 +5203 64083 0.4260 +5203 64983 0.4020 +5203 80349 0.5650 +5203 81027 0.5050 +5203 81572 0.9040 +5203 84617 0.5120 +5203 84790 0.6300 +5203 91942 0.4040 +5203 112714 0.8170 +5203 113457 0.5850 +5203 116154 0.4050 +5203 118426 0.4320 +5203 169981 0.4630 +5203 245936 0.4780 +5203 337960 0.5260 +5203 347733 0.5190 +5203 399694 0.5890 +5204 5434 0.4210 +5204 5598 0.4330 +5204 5682 0.6560 +5204 5683 0.6820 +5204 5684 0.6950 +5204 5685 0.6850 +5204 5686 0.5920 +5204 5687 0.6890 +5204 5688 0.5480 +5204 5689 0.5250 +5204 5690 0.5030 +5204 5691 0.4310 +5204 5695 0.4360 +5204 5704 0.4280 +5204 5707 0.5680 +5204 5710 0.6050 +5204 5714 0.4510 +5204 5725 0.4300 +5204 6122 0.4030 +5204 6124 0.4750 +5204 6125 0.5480 +5204 6128 0.4860 +5204 6129 0.4890 +5204 6133 0.6160 +5204 6135 0.7530 +5204 6136 0.5850 +5204 6137 0.4410 +5204 6139 0.5320 +5204 6141 0.4570 +5204 6142 0.5990 +5204 6143 0.5060 +5204 6144 0.6020 +5204 6146 0.5450 +5204 6152 0.4960 +5204 6154 0.4850 +5204 6155 0.6570 +5204 6156 0.6610 +5204 6157 0.4910 +5204 6158 0.4540 +5204 6159 0.5420 +5204 6160 0.8630 +5204 6164 0.5680 +5204 6165 0.5620 +5204 6166 0.5080 +5204 6168 0.4250 +5204 6169 0.4530 +5204 6170 0.5680 +5204 6175 0.5100 +5204 6176 0.4820 +5204 6181 0.7140 +5204 6187 0.4680 +5204 6188 0.5020 +5204 6189 0.7830 +5204 6191 0.4260 +5204 6193 0.4100 +5204 6194 0.5070 +5204 6201 0.4590 +5204 6202 0.5020 +5204 6203 0.4010 +5204 6204 0.4560 +5204 6205 0.4150 +5204 6206 0.4640 +5204 6207 0.6610 +5204 6208 0.4190 +5204 6209 0.4730 +5204 6210 0.5890 +5204 6217 0.5250 +5204 6218 0.5960 +5204 6222 0.5670 +5204 6223 0.5250 +5204 6224 0.6490 +5204 6229 0.5390 +5204 6230 0.5070 +5204 6232 0.4820 +5204 6234 0.5330 +5204 6235 0.4750 +5204 6284 0.4550 +5204 6633 0.6930 +5204 6634 0.4310 +5204 6635 0.4270 +5204 6636 0.4480 +5204 6637 0.5130 +5204 6902 0.4740 +5204 6921 0.4330 +5204 6923 0.5580 +5204 6950 0.9790 +5204 7203 0.9830 +5204 7277 0.6120 +5204 7278 0.5560 +5204 7280 0.5480 +5204 7336 0.5220 +5204 7411 0.9990 +5204 7428 0.4550 +5204 7458 0.4690 +5204 7846 0.6850 +5204 7919 0.4830 +5204 8106 0.4400 +5204 8195 0.4240 +5204 8260 0.5060 +5204 8409 0.8130 +5204 8453 0.4880 +5204 8607 0.6060 +5204 8662 0.4690 +5204 8665 0.5100 +5204 8666 0.6230 +5204 8668 0.5430 +5204 8721 0.4480 +5204 8725 0.6980 +5204 9045 0.4730 +5204 9141 0.6420 +5204 9255 0.4730 +5204 9349 0.5950 +5204 9978 0.5570 +5204 10155 0.4360 +5204 10169 0.4930 +5204 10236 0.4480 +5204 10284 0.4940 +5204 10376 0.4300 +5204 10381 0.6280 +5204 10382 0.5410 +5204 10383 0.6590 +5204 10399 0.4700 +5204 10432 0.4320 +5204 10471 0.9990 +5204 10480 0.6120 +5204 10492 0.4320 +5204 10574 0.9810 +5204 10575 0.9950 +5204 10576 0.9800 +5204 10693 0.7300 +5204 10694 0.9760 +5204 10726 0.4290 +5204 10856 0.4850 +5204 10963 0.5740 +5204 11224 0.5460 +5204 22948 0.9650 +5204 23521 0.4950 +5204 26517 0.5050 +5204 27246 0.4880 +5204 27258 0.4870 +5204 27339 0.5910 +5204 51187 0.5440 +5204 51372 0.4510 +5204 51398 0.4060 +5204 51637 0.4490 +5204 54543 0.6880 +5204 55780 0.4150 +5204 59286 0.4560 +5204 60314 0.6160 +5204 64083 0.5120 +5204 79031 0.5830 +5204 79096 0.5240 +5204 79577 0.4200 +5204 79738 0.4780 +5204 80218 0.4090 +5204 81027 0.5420 +5204 81572 0.7660 +5204 83443 0.4580 +5204 84140 0.5310 +5204 84617 0.5570 +5204 84790 0.6310 +5204 84844 0.4040 +5204 84975 0.5630 +5204 112714 0.8040 +5204 113457 0.5560 +5204 150082 0.4970 +5204 317749 0.4370 +5204 347733 0.5400 +5205 5244 0.9280 +5205 5741 0.5060 +5205 5962 0.4230 +5205 6554 0.5940 +5205 6555 0.6070 +5205 6718 0.6520 +5205 8431 0.7990 +5205 8647 0.9910 +5205 8714 0.4440 +5205 8856 0.5410 +5205 9076 0.4130 +5205 9414 0.6390 +5205 9420 0.4330 +5205 9429 0.4990 +5205 9619 0.5420 +5205 9971 0.8500 +5205 10165 0.4110 +5205 10257 0.5780 +5205 10396 0.9100 +5205 11153 0.5220 +5205 23120 0.9100 +5205 23200 0.6060 +5205 23250 0.9140 +5205 26276 0.4500 +5205 51761 0.5900 +5205 54532 0.4020 +5205 54677 0.5050 +5205 55754 0.9990 +5205 57194 0.9100 +5205 57198 0.5730 +5205 57205 0.9110 +5205 57719 0.4160 +5205 63894 0.4590 +5205 64240 0.6060 +5205 64241 0.5200 +5205 79895 0.5610 +5205 80270 0.4360 +5205 114880 0.5910 +5205 123264 0.4680 +5205 148229 0.5760 +5205 161291 0.9970 +5205 200931 0.5250 +5205 286410 0.6180 +5207 5208 0.9030 +5207 5209 0.9230 +5207 5210 0.7320 +5207 5211 0.9650 +5207 5213 0.9810 +5207 5214 0.9620 +5207 5223 0.5230 +5207 5224 0.5260 +5207 5230 0.5640 +5207 5232 0.5090 +5207 5315 0.5660 +5207 5515 0.4750 +5207 5516 0.4960 +5207 5518 0.4340 +5207 5519 0.4870 +5207 5528 0.4600 +5207 5562 0.7340 +5207 5563 0.7310 +5207 5564 0.7570 +5207 5565 0.7050 +5207 5566 0.9460 +5207 5567 0.9270 +5207 5568 0.9270 +5207 5571 0.7240 +5207 5834 0.4350 +5207 5836 0.4510 +5207 5837 0.4660 +5207 6470 0.4920 +5207 6472 0.4720 +5207 6513 0.5500 +5207 6515 0.4590 +5207 6517 0.5210 +5207 6714 0.4270 +5207 6927 0.4480 +5207 7086 0.4610 +5207 7167 0.6170 +5207 7276 0.4240 +5207 8277 0.4860 +5207 8789 0.9750 +5207 8813 0.4150 +5207 9563 0.5900 +5207 11097 0.4030 +5207 23339 0.4690 +5207 29880 0.4150 +5207 29968 0.5940 +5207 51422 0.7270 +5207 53632 0.7500 +5207 57103 0.9640 +5207 58478 0.4950 +5207 65220 0.4920 +5207 80201 0.7390 +5207 84076 0.4630 +5207 387712 0.4290 +5207 441531 0.5030 +5208 5209 0.9800 +5208 5210 0.8030 +5208 5211 0.9630 +5208 5213 0.9810 +5208 5214 0.9610 +5208 5223 0.5380 +5208 5224 0.4790 +5208 5230 0.5770 +5208 5232 0.5010 +5208 5315 0.5680 +5208 5562 0.7260 +5208 5563 0.7030 +5208 5564 0.7460 +5208 5565 0.7320 +5208 5571 0.7290 +5208 5836 0.4340 +5208 5837 0.4110 +5208 6470 0.4620 +5208 6472 0.4550 +5208 6513 0.5800 +5208 6515 0.4840 +5208 6517 0.5270 +5208 7086 0.4740 +5208 7167 0.6410 +5208 7529 0.4920 +5208 7532 0.4040 +5208 7533 0.4610 +5208 7534 0.6650 +5208 8277 0.4810 +5208 8789 0.9800 +5208 8813 0.4150 +5208 9123 0.4800 +5208 9563 0.5880 +5208 10000 0.9140 +5208 10045 0.4270 +5208 10971 0.6450 +5208 23339 0.4530 +5208 26330 0.4080 +5208 29880 0.4150 +5208 29968 0.5830 +5208 51422 0.7390 +5208 53632 0.7090 +5208 57103 0.9690 +5208 58478 0.4950 +5208 65220 0.5070 +5208 80201 0.7170 +5208 84076 0.4730 +5208 441531 0.5180 +5209 5210 0.9060 +5209 5211 0.9720 +5209 5213 0.9960 +5209 5214 0.9730 +5209 5223 0.6610 +5209 5224 0.4850 +5209 5226 0.5000 +5209 5230 0.7390 +5209 5232 0.5800 +5209 5315 0.7600 +5209 5562 0.7510 +5209 5563 0.7340 +5209 5564 0.7490 +5209 5565 0.7420 +5209 5571 0.7340 +5209 5834 0.4770 +5209 5836 0.5080 +5209 5837 0.4740 +5209 6470 0.5260 +5209 6472 0.5450 +5209 6513 0.7670 +5209 6514 0.4420 +5209 6515 0.7360 +5209 6517 0.6380 +5209 6566 0.4540 +5209 6648 0.4050 +5209 6794 0.4290 +5209 6888 0.5170 +5209 7086 0.5850 +5209 7124 0.4130 +5209 7157 0.4180 +5209 7167 0.6900 +5209 7534 0.4350 +5209 8277 0.5830 +5209 8789 0.9790 +5209 8813 0.4190 +5209 8878 0.4840 +5209 9122 0.6000 +5209 9123 0.6310 +5209 9563 0.6960 +5209 10135 0.4630 +5209 10325 0.4720 +5209 10628 0.4860 +5209 10891 0.4640 +5209 22934 0.4010 +5209 26330 0.4230 +5209 29880 0.4150 +5209 29968 0.6330 +5209 51422 0.7480 +5209 53632 0.7310 +5209 54541 0.4170 +5209 54583 0.4230 +5209 57103 0.9720 +5209 58478 0.4950 +5209 65220 0.5350 +5209 80201 0.7340 +5209 84076 0.5670 +5209 144195 0.4340 +5209 387712 0.4220 +5209 441531 0.6300 +5210 5211 0.9660 +5210 5213 0.9790 +5210 5214 0.9690 +5210 5223 0.6350 +5210 5224 0.4900 +5210 5230 0.7180 +5210 5232 0.5240 +5210 5315 0.6370 +5210 5562 0.7100 +5210 5563 0.7100 +5210 5564 0.7400 +5210 5565 0.7020 +5210 5571 0.7240 +5210 5836 0.4280 +5210 6470 0.4670 +5210 6472 0.4940 +5210 6513 0.6770 +5210 6515 0.6180 +5210 6517 0.4840 +5210 7086 0.5470 +5210 7157 0.5100 +5210 7167 0.6630 +5210 7534 0.5020 +5210 8202 0.4180 +5210 8277 0.5450 +5210 8789 0.9730 +5210 8813 0.4280 +5210 9122 0.4090 +5210 9123 0.5160 +5210 9563 0.6000 +5210 23339 0.4660 +5210 26999 0.4410 +5210 29880 0.4150 +5210 29968 0.6000 +5210 51422 0.7090 +5210 53632 0.7180 +5210 57103 0.9680 +5210 58478 0.4950 +5210 65220 0.5350 +5210 80201 0.7210 +5210 84076 0.5270 +5210 441531 0.6060 +5211 5213 0.9940 +5211 5214 0.9910 +5211 5223 0.7960 +5211 5224 0.7240 +5211 5226 0.6180 +5211 5230 0.8560 +5211 5232 0.7490 +5211 5236 0.6180 +5211 5238 0.6290 +5211 5239 0.4330 +5211 5313 0.8900 +5211 5315 0.9220 +5211 5372 0.4710 +5211 5373 0.4700 +5211 5631 0.4150 +5211 5634 0.4440 +5211 5822 0.8090 +5211 5832 0.4360 +5211 5834 0.7530 +5211 5836 0.7580 +5211 5837 0.6930 +5211 6120 0.4880 +5211 6389 0.5310 +5211 6390 0.4880 +5211 6472 0.4080 +5211 6513 0.6350 +5211 6515 0.4650 +5211 6612 0.5820 +5211 6613 0.5300 +5211 6888 0.9840 +5211 7031 0.4240 +5211 7037 0.4410 +5211 7086 0.9680 +5211 7167 0.9230 +5211 7360 0.4370 +5211 7407 0.4020 +5211 8050 0.4560 +5211 8226 0.5400 +5211 8277 0.9670 +5211 8636 0.4190 +5211 8789 0.9770 +5211 8802 0.4700 +5211 8833 0.6720 +5211 9123 0.4480 +5211 9380 0.4710 +5211 9563 0.7260 +5211 9618 0.4120 +5211 9817 0.4830 +5211 10007 0.4220 +5211 10020 0.4420 +5211 10567 0.4310 +5211 10589 0.4140 +5211 10873 0.4170 +5211 10965 0.9040 +5211 22827 0.4210 +5211 22934 0.5360 +5211 23770 0.4070 +5211 25796 0.5660 +5211 26059 0.4970 +5211 26330 0.6250 +5211 51071 0.4130 +5211 51074 0.4430 +5211 51282 0.4240 +5211 53347 0.4200 +5211 55276 0.6670 +5211 55753 0.4140 +5211 56965 0.6890 +5211 57103 0.9570 +5211 57469 0.4900 +5211 64080 0.5520 +5211 79668 0.6890 +5211 80201 0.9570 +5211 84076 0.9650 +5211 84705 0.4210 +5211 84959 0.4280 +5211 89941 0.4410 +5211 92483 0.5360 +5211 112398 0.4900 +5211 122970 0.9010 +5211 130752 0.4290 +5211 160287 0.5270 +5211 221823 0.4330 +5211 283209 0.5380 +5211 387712 0.8140 +5211 441531 0.7990 +5211 641371 0.9060 +5211 728378 0.4690 +5211 729020 0.5070 +5212 6229 0.4030 +5212 6234 0.4130 +5212 170850 0.4810 +5213 5214 0.9910 +5213 5223 0.7770 +5213 5224 0.7880 +5213 5226 0.6840 +5213 5230 0.8610 +5213 5232 0.7930 +5213 5236 0.6460 +5213 5238 0.5950 +5213 5239 0.4730 +5213 5255 0.4930 +5213 5256 0.5930 +5213 5257 0.4100 +5213 5313 0.8770 +5213 5315 0.9380 +5213 5372 0.4670 +5213 5373 0.4990 +5213 5464 0.4120 +5213 5634 0.4120 +5213 5832 0.4720 +5213 5834 0.7360 +5213 5836 0.7500 +5213 5837 0.7860 +5213 6120 0.5880 +5213 6389 0.5950 +5213 6390 0.5580 +5213 6391 0.4560 +5213 6470 0.4520 +5213 6472 0.5100 +5213 6510 0.4280 +5213 6513 0.7350 +5213 6514 0.4270 +5213 6515 0.6410 +5213 6517 0.6420 +5213 6566 0.4470 +5213 6613 0.5360 +5213 6652 0.4570 +5213 6888 0.9880 +5213 7003 0.6610 +5213 7086 0.9730 +5213 7157 0.5060 +5213 7167 0.9400 +5213 7360 0.4580 +5213 8050 0.4780 +5213 8226 0.5410 +5213 8277 0.9720 +5213 8789 0.9830 +5213 8802 0.5110 +5213 8803 0.4170 +5213 8833 0.6800 +5213 9122 0.5780 +5213 9123 0.5760 +5213 9380 0.4230 +5213 9493 0.4300 +5213 9563 0.8040 +5213 9942 0.6180 +5213 9945 0.5010 +5213 9997 0.4250 +5213 10007 0.4650 +5213 10020 0.5020 +5213 10131 0.4270 +5213 10325 0.4480 +5213 10873 0.4180 +5213 10891 0.4610 +5213 10965 0.9020 +5213 10979 0.4400 +5213 22934 0.6490 +5213 23171 0.4040 +5213 25796 0.5980 +5213 26227 0.5610 +5213 26330 0.6180 +5213 27165 0.4570 +5213 50617 0.6150 +5213 51071 0.4140 +5213 51074 0.4430 +5213 51806 0.5500 +5213 53347 0.4190 +5213 54704 0.4580 +5213 55276 0.6610 +5213 55313 0.4750 +5213 55753 0.4310 +5213 55802 0.5100 +5213 55902 0.5200 +5213 56965 0.6920 +5213 57103 0.9790 +5213 57469 0.4900 +5213 57818 0.4220 +5213 64080 0.4100 +5213 64359 0.4690 +5213 79668 0.6890 +5213 80201 0.9530 +5213 84076 0.9700 +5213 84532 0.4750 +5213 84959 0.4190 +5213 91860 0.5400 +5213 92483 0.5100 +5213 92579 0.4360 +5213 112398 0.4590 +5213 122970 0.9000 +5213 126393 0.4270 +5213 130589 0.5000 +5213 160287 0.5150 +5213 163688 0.5420 +5213 167227 0.5030 +5213 283209 0.5710 +5213 387712 0.7760 +5213 441531 0.7570 +5213 641371 0.9080 +5213 728378 0.4830 +5213 729020 0.4620 +5214 5223 0.8090 +5214 5224 0.6820 +5214 5226 0.5900 +5214 5230 0.8410 +5214 5232 0.7370 +5214 5236 0.5790 +5214 5238 0.5310 +5214 5239 0.4830 +5214 5286 0.4980 +5214 5313 0.8670 +5214 5315 0.9270 +5214 5372 0.4670 +5214 5373 0.4890 +5214 5591 0.5660 +5214 5832 0.4470 +5214 5834 0.6630 +5214 5836 0.7210 +5214 5837 0.6460 +5214 6389 0.5040 +5214 6390 0.4750 +5214 6472 0.4320 +5214 6513 0.6360 +5214 6515 0.5100 +5214 6573 0.4260 +5214 6652 0.4120 +5214 6657 0.4090 +5214 6774 0.4690 +5214 6888 0.9840 +5214 7086 0.9630 +5214 7112 0.4340 +5214 7167 0.9250 +5214 7168 0.4130 +5214 7417 0.7720 +5214 8226 0.5440 +5214 8277 0.9630 +5214 8773 0.5200 +5214 8789 0.9770 +5214 8802 0.4470 +5214 8833 0.6860 +5214 9122 0.4040 +5214 9123 0.5220 +5214 9388 0.4100 +5214 9493 0.5440 +5214 9563 0.6880 +5214 9666 0.5290 +5214 10007 0.4150 +5214 10020 0.4430 +5214 10094 0.4330 +5214 10797 0.4110 +5214 10873 0.4190 +5214 10965 0.9000 +5214 11083 0.4300 +5214 11130 0.5310 +5214 22934 0.5190 +5214 22982 0.4530 +5214 25796 0.5300 +5214 25902 0.4210 +5214 26330 0.6180 +5214 29968 0.5440 +5214 51071 0.4090 +5214 51074 0.4480 +5214 51341 0.4310 +5214 51703 0.4830 +5214 53347 0.4190 +5214 55276 0.6840 +5214 55753 0.4960 +5214 55764 0.4280 +5214 55902 0.4170 +5214 56965 0.6900 +5214 57103 0.9580 +5214 57469 0.4900 +5214 65124 0.4710 +5214 79068 0.5600 +5214 79668 0.6890 +5214 79814 0.5260 +5214 80201 0.9540 +5214 84076 0.9610 +5214 84959 0.4320 +5214 92483 0.5110 +5214 120892 0.5260 +5214 122970 0.9000 +5214 132789 0.5340 +5214 135228 0.4390 +5214 160287 0.5260 +5214 254394 0.5220 +5214 283209 0.6520 +5214 387712 0.8040 +5214 441531 0.8010 +5214 641371 0.9000 +5214 728378 0.4770 +5214 729020 0.4390 +5216 5217 0.5250 +5216 5230 0.4440 +5216 5315 0.5280 +5216 5341 0.4010 +5216 5358 0.5960 +5216 5478 0.7700 +5216 5479 0.5580 +5216 5499 0.4660 +5216 5728 0.6990 +5216 5756 0.6590 +5216 5829 0.4030 +5216 5870 0.4790 +5216 5879 0.6580 +5216 5880 0.5480 +5216 5898 0.5030 +5216 5906 0.5610 +5216 5962 0.4250 +5216 6091 0.5130 +5216 6132 0.4650 +5216 6233 0.4370 +5216 6237 0.4950 +5216 6282 0.5060 +5216 6311 0.5970 +5216 6342 0.5250 +5216 6418 0.5270 +5216 6470 0.5410 +5216 6613 0.5110 +5216 6624 0.5900 +5216 6647 0.6750 +5216 6714 0.6410 +5216 6767 0.4870 +5216 6876 0.5290 +5216 7062 0.4290 +5216 7094 0.6620 +5216 7097 0.6480 +5216 7098 0.4440 +5216 7099 0.5930 +5216 7100 0.6670 +5216 7111 0.6070 +5216 7114 0.9590 +5216 7167 0.5380 +5216 7170 0.4480 +5216 7171 0.4280 +5216 7178 0.4170 +5216 7189 0.4060 +5216 7267 0.6130 +5216 7277 0.7470 +5216 7295 0.4020 +5216 7408 0.9990 +5216 7409 0.4480 +5216 7414 0.9780 +5216 7415 0.8140 +5216 7430 0.5090 +5216 7454 0.9910 +5216 7456 0.9000 +5216 7531 0.7450 +5216 7532 0.5730 +5216 7534 0.6400 +5216 7791 0.7480 +5216 8022 0.4280 +5216 8178 0.4120 +5216 8290 0.4760 +5216 8347 0.4270 +5216 8349 0.4750 +5216 8356 0.4790 +5216 8407 0.7110 +5216 8440 0.5320 +5216 8678 0.6570 +5216 8801 0.4150 +5216 8815 0.4530 +5216 8826 0.4130 +5216 8878 0.4630 +5216 8936 0.8260 +5216 8976 0.9650 +5216 9168 0.6230 +5216 9217 0.6010 +5216 9353 0.5220 +5216 9475 0.5490 +5216 9588 0.4740 +5216 9636 0.4170 +5216 9650 0.4950 +5216 9782 0.6000 +5216 9896 0.5070 +5216 9948 0.6480 +5216 10006 0.5680 +5216 10015 0.4270 +5216 10092 0.5400 +5216 10093 0.4680 +5216 10094 0.5710 +5216 10095 0.5340 +5216 10096 0.7480 +5216 10097 0.9200 +5216 10109 0.6320 +5216 10121 0.4770 +5216 10133 0.5830 +5216 10163 0.7550 +5216 10243 0.9090 +5216 10273 0.5700 +5216 10280 0.4350 +5216 10458 0.5660 +5216 10486 0.5160 +5216 10487 0.9090 +5216 10541 0.4070 +5216 10552 0.4270 +5216 10627 0.4020 +5216 10652 0.7740 +5216 10733 0.6440 +5216 10971 0.4560 +5216 11034 0.7840 +5216 11151 0.4990 +5216 11315 0.4050 +5216 11344 0.6910 +5216 11346 0.4410 +5216 23002 0.8330 +5216 23022 0.6020 +5216 23048 0.4960 +5216 23064 0.5310 +5216 23191 0.5710 +5216 23214 0.9920 +5216 23242 0.4530 +5216 23360 0.5270 +5216 23380 0.7490 +5216 23406 0.5110 +5216 23433 0.4110 +5216 23435 0.6660 +5216 23500 0.5400 +5216 23643 0.4510 +5216 24142 0.9510 +5216 25802 0.4100 +5216 25978 0.5120 +5216 27445 0.5130 +5216 28988 0.4100 +5216 29109 0.6240 +5216 29110 0.4460 +5216 29765 0.6640 +5216 29766 0.6480 +5216 29767 0.6180 +5216 29978 0.7120 +5216 51284 0.4330 +5216 51311 0.4100 +5216 51466 0.8710 +5216 51755 0.4030 +5216 51806 0.7480 +5216 54106 0.4340 +5216 54443 0.4470 +5216 54518 0.9940 +5216 55660 0.4150 +5216 55705 0.7000 +5216 55740 0.9000 +5216 55845 0.6190 +5216 56203 0.4440 +5216 56776 0.8050 +5216 57180 0.4930 +5216 57224 0.4400 +5216 57591 0.6360 +5216 57679 0.5800 +5216 63925 0.4450 +5216 64423 0.6880 +5216 65059 0.8660 +5216 80208 0.4760 +5216 81624 0.8040 +5216 81793 0.7060 +5216 83442 0.7100 +5216 83660 0.5450 +5216 84790 0.4040 +5216 85462 0.6500 +5216 85477 0.8910 +5216 91010 0.7340 +5216 91860 0.7480 +5216 114609 0.4530 +5216 114793 0.8770 +5216 120892 0.4040 +5216 123720 0.4140 +5216 133746 0.4740 +5216 148022 0.4160 +5216 163688 0.7480 +5216 203068 0.5150 +5216 203228 0.6700 +5216 221613 0.4040 +5216 339344 0.6420 +5216 342184 0.7530 +5216 345456 0.9030 +5216 345651 0.6670 +5216 353376 0.4630 +5216 375189 0.9340 +5216 387521 0.4560 +5216 392862 0.5250 +5216 400916 0.5970 +5216 440093 0.4750 +5216 440686 0.4740 +5216 442721 0.4660 +5216 642489 0.5310 +5216 653604 0.4730 +5216 653857 0.4740 +5216 728378 0.4150 +5216 100302736 0.4630 +5216 100529144 0.4790 +5217 5358 0.4730 +5217 5879 0.5800 +5217 5898 0.5970 +5217 5906 0.5150 +5217 6091 0.5390 +5217 6093 0.4200 +5217 6237 0.5590 +5217 6470 0.6570 +5217 6606 0.4210 +5217 7401 0.5430 +5217 7408 0.9690 +5217 8239 0.4960 +5217 8487 0.4100 +5217 8936 0.6220 +5217 8976 0.6210 +5217 9353 0.5510 +5217 10095 0.4890 +5217 10096 0.4050 +5217 10097 0.4740 +5217 10109 0.5030 +5217 10243 0.4820 +5217 10486 0.5300 +5217 10487 0.4390 +5217 10552 0.7990 +5217 11034 0.4550 +5217 11171 0.4250 +5217 11346 0.4090 +5217 23002 0.5280 +5217 23380 0.5220 +5217 24142 0.7630 +5217 51466 0.8420 +5217 55740 0.8850 +5217 56776 0.4290 +5217 57591 0.5140 +5217 64423 0.4040 +5217 84152 0.4850 +5217 91010 0.5680 +5217 114793 0.6400 +5217 342184 0.4100 +5218 5531 0.4410 +5218 5911 0.4300 +5218 5925 0.6370 +5218 7011 0.4290 +5218 7465 0.4410 +5218 7529 0.6370 +5218 7531 0.6100 +5218 7533 0.7050 +5218 7707 0.4680 +5218 8556 0.4040 +5218 8697 0.5040 +5218 8881 0.4870 +5218 8900 0.5080 +5218 9088 0.4200 +5218 9133 0.5680 +5218 9134 0.4230 +5218 10000 0.6430 +5218 10309 0.4400 +5218 10971 0.6140 +5218 10983 0.4470 +5218 22858 0.6520 +5218 23176 0.4040 +5218 27152 0.5270 +5218 51343 0.5270 +5218 51573 0.4320 +5218 55255 0.5360 +5218 63906 0.4080 +5218 64682 0.4570 +5218 79616 0.4050 +5218 79645 0.4170 +5218 79935 0.5490 +5218 80237 0.4330 +5218 81669 0.6010 +5218 85417 0.5360 +5218 92292 0.4220 +5218 151195 0.6120 +5218 166979 0.5270 +5218 219771 0.9990 +5218 219970 0.4210 +5218 345079 0.4400 +5218 494551 0.4200 +5218 645121 0.4590 +5218 100287520 0.4210 +5222 5236 0.5120 +5222 5340 0.5120 +5222 5462 0.4780 +5222 5624 0.7870 +5222 6440 0.4130 +5222 8513 0.4970 +5222 9476 0.4300 +5222 54535 0.6290 +5222 221914 0.4240 +5222 643834 0.9040 +5222 643847 0.9760 +5223 5224 0.9890 +5223 5226 0.6160 +5223 5230 0.9980 +5223 5232 0.9840 +5223 5236 0.6270 +5223 5313 0.8440 +5223 5315 0.9750 +5223 5340 0.5120 +5223 5478 0.4130 +5223 5832 0.4310 +5223 5836 0.4510 +5223 5837 0.4240 +5223 5908 0.4060 +5223 6175 0.4010 +5223 6389 0.4890 +5223 6390 0.4430 +5223 6470 0.4710 +5223 6472 0.5250 +5223 6513 0.6070 +5223 6515 0.4440 +5223 6647 0.5170 +5223 6648 0.4220 +5223 6888 0.9240 +5223 7001 0.5120 +5223 7086 0.9290 +5223 7167 0.9890 +5223 7170 0.4020 +5223 7295 0.4750 +5223 7384 0.4020 +5223 7417 0.6000 +5223 7534 0.6440 +5223 8050 0.4060 +5223 8277 0.8930 +5223 8493 0.4510 +5223 8802 0.4550 +5223 9123 0.4140 +5223 9562 0.9110 +5223 9563 0.9120 +5223 9588 0.4800 +5223 10376 0.4030 +5223 10549 0.4250 +5223 10574 0.4290 +5223 10576 0.4240 +5223 10935 0.7490 +5223 11315 0.5470 +5223 11332 0.4780 +5223 11339 0.4130 +5223 22934 0.4860 +5223 26227 0.9470 +5223 26330 0.6240 +5223 29968 0.5190 +5223 51071 0.8160 +5223 51373 0.4390 +5223 53347 0.6940 +5223 55276 0.4210 +5223 55631 0.4560 +5223 56965 0.5930 +5223 57103 0.4670 +5223 57469 0.4720 +5223 58478 0.4900 +5223 65018 0.4910 +5223 79668 0.5940 +5223 84076 0.8900 +5223 84617 0.4170 +5223 84790 0.5220 +5223 84959 0.8540 +5223 92483 0.4570 +5223 132158 0.9300 +5223 160287 0.4530 +5223 246243 0.5430 +5223 387712 0.9730 +5223 441531 0.9020 +5224 5226 0.4450 +5224 5230 0.9880 +5224 5232 0.9860 +5224 5236 0.5710 +5224 5255 0.4770 +5224 5256 0.4390 +5224 5257 0.4770 +5224 5260 0.5100 +5224 5261 0.5010 +5224 5313 0.8610 +5224 5315 0.9240 +5224 5834 0.4880 +5224 5836 0.5830 +5224 5837 0.7470 +5224 6123 0.4040 +5224 6261 0.4070 +5224 6389 0.5000 +5224 6390 0.4160 +5224 6472 0.4020 +5224 6517 0.4450 +5224 6888 0.8930 +5224 7086 0.8640 +5224 7125 0.5390 +5224 7136 0.7450 +5224 7140 0.5140 +5224 7167 0.9550 +5224 7273 0.4420 +5224 8277 0.8480 +5224 8557 0.5590 +5224 8789 0.5600 +5224 8802 0.5420 +5224 9172 0.4820 +5224 9499 0.4290 +5224 9562 0.9070 +5224 9563 0.8970 +5224 22933 0.5650 +5224 22934 0.4580 +5224 23676 0.4440 +5224 26227 0.9140 +5224 26330 0.6750 +5224 29895 0.5440 +5224 30819 0.4480 +5224 51071 0.8040 +5224 53347 0.4260 +5224 55276 0.4860 +5224 55753 0.4810 +5224 56965 0.5930 +5224 57159 0.4080 +5224 57469 0.5050 +5224 58478 0.4770 +5224 58529 0.4810 +5224 79668 0.5930 +5224 84076 0.8500 +5224 92483 0.4690 +5224 122622 0.4430 +5224 130589 0.4600 +5224 130752 0.5240 +5224 132158 0.9280 +5224 160287 0.4430 +5224 192111 0.4710 +5224 246243 0.5220 +5224 387712 0.9760 +5224 441531 0.9850 +5225 5226 0.7960 +5225 5236 0.8340 +5225 5238 0.4850 +5225 5340 0.4670 +5225 5624 0.6710 +5225 5650 0.4150 +5225 7032 0.5820 +5225 8513 0.4580 +5225 8654 0.5300 +5225 10873 0.5060 +5225 10877 0.4980 +5225 10878 0.4290 +5225 25818 0.4190 +5225 27159 0.4590 +5225 51196 0.4020 +5225 51208 0.4890 +5225 51727 0.5470 +5225 55276 0.5900 +5225 55748 0.7940 +5225 56287 0.5490 +5225 57617 0.7830 +5225 81494 0.5060 +5225 81623 0.4310 +5225 84735 0.5130 +5225 117285 0.4050 +5225 168620 0.4270 +5225 200504 0.5690 +5226 5230 0.7870 +5226 5232 0.7520 +5226 5236 0.9510 +5226 5238 0.6870 +5226 5239 0.4650 +5226 5313 0.5700 +5226 5315 0.6900 +5226 5471 0.5550 +5226 5832 0.4660 +5226 5834 0.4680 +5226 5836 0.5110 +5226 5837 0.4590 +5226 6006 0.7120 +5226 6007 0.6900 +5226 6120 0.9900 +5226 6389 0.4490 +5226 6391 0.4280 +5226 6470 0.6400 +5226 6472 0.6470 +5226 6576 0.4190 +5226 6652 0.6470 +5226 6888 0.9860 +5226 7086 0.9750 +5226 7167 0.7870 +5226 7284 0.4240 +5226 7295 0.6930 +5226 7296 0.6350 +5226 7347 0.4530 +5226 7358 0.5970 +5226 7360 0.4240 +5226 7915 0.4740 +5226 8277 0.9430 +5226 8565 0.5020 +5226 8789 0.5460 +5226 9104 0.5490 +5226 9380 0.4760 +5226 9563 0.9990 +5226 9817 0.4590 +5226 9942 0.6000 +5226 10007 0.6450 +5226 10020 0.4130 +5226 10449 0.6590 +5226 10587 0.4510 +5226 10873 0.7650 +5226 10935 0.4090 +5226 11112 0.4130 +5226 11181 0.4890 +5226 22934 0.9950 +5226 23530 0.4390 +5226 23657 0.4250 +5226 25796 0.9920 +5226 25828 0.4050 +5226 26227 0.4830 +5226 26330 0.5100 +5226 29968 0.4410 +5226 51071 0.4620 +5226 51074 0.4930 +5226 51081 0.4020 +5226 51477 0.5220 +5226 51727 0.7180 +5226 51741 0.4230 +5226 55276 0.8470 +5226 55554 0.4330 +5226 55902 0.5080 +5226 57103 0.4480 +5226 64080 0.6340 +5226 65220 0.5910 +5226 80201 0.4490 +5226 84076 0.9430 +5226 84532 0.5090 +5226 92483 0.4250 +5226 118881 0.4090 +5226 122622 0.4470 +5226 132789 0.5900 +5226 140809 0.4380 +5226 160287 0.4540 +5226 220074 0.4200 +5226 257202 0.5030 +5226 378708 0.6530 +5226 387712 0.4520 +5226 414328 0.9940 +5226 441531 0.4340 +5226 493869 0.5180 +5226 729020 0.9930 +5226 120356740 0.4080 +5228 5328 0.4010 +5228 5340 0.4790 +5228 5361 0.4490 +5228 5365 0.4220 +5228 5420 0.4060 +5228 5788 0.5270 +5228 6347 0.5770 +5228 6351 0.4070 +5228 6387 0.7110 +5228 6401 0.4220 +5228 6405 0.4900 +5228 6696 0.8500 +5228 7010 0.9140 +5228 7039 0.6300 +5228 7040 0.6680 +5228 7042 0.5580 +5228 7057 0.4500 +5228 7058 0.4080 +5228 7075 0.7150 +5228 7076 0.4790 +5228 7078 0.5470 +5228 7098 0.4020 +5228 7124 0.5710 +5228 7412 0.5080 +5228 7423 0.9640 +5228 7424 0.7700 +5228 7448 0.8800 +5228 7450 0.4350 +5228 7472 0.4590 +5228 7852 0.4340 +5228 8038 0.4430 +5228 8521 0.5630 +5228 8817 0.6090 +5228 8822 0.6110 +5228 8823 0.6100 +5228 8828 0.9680 +5228 8829 0.9970 +5228 10371 0.5180 +5228 26281 0.6090 +5228 27006 0.6200 +5228 29124 0.7230 +5228 54567 0.4340 +5228 56034 0.8760 +5228 57509 0.4160 +5228 80781 0.5770 +5228 85451 0.4910 +5228 91584 0.4080 +5229 5875 0.7670 +5229 5906 0.5210 +5229 9453 0.4320 +5229 9901 0.4550 +5229 9986 0.4850 +5229 10269 0.4080 +5229 23463 0.4940 +5229 26508 0.7680 +5229 60385 0.4550 +5229 83607 0.6760 +5229 84932 0.4730 +5229 84962 0.4450 +5229 85458 0.4070 +5229 126374 0.6920 +5229 153733 0.7200 +5229 255967 0.4590 +5230 5232 0.9600 +5230 5236 0.6440 +5230 5255 0.5950 +5230 5277 0.4720 +5230 5289 0.4600 +5230 5313 0.8380 +5230 5315 0.9360 +5230 5339 0.5320 +5230 5340 0.7700 +5230 5432 0.5490 +5230 5456 0.6180 +5230 5464 0.5530 +5230 5478 0.7530 +5230 5479 0.4830 +5230 5514 0.5490 +5230 5592 0.4210 +5230 5631 0.4910 +5230 5687 0.4180 +5230 5690 0.4580 +5230 5702 0.5480 +5230 5704 0.6010 +5230 5706 0.5450 +5230 5728 0.5230 +5230 5831 0.4940 +5230 5832 0.5180 +5230 5834 0.5750 +5230 5836 0.6810 +5230 5837 0.6080 +5230 5877 0.4400 +5230 5887 0.4170 +5230 5901 0.4820 +5230 6120 0.6260 +5230 6122 0.5070 +5230 6124 0.5280 +5230 6132 0.4080 +5230 6135 0.5260 +5230 6143 0.4830 +5230 6175 0.6640 +5230 6187 0.4650 +5230 6188 0.5550 +5230 6191 0.6680 +5230 6193 0.4670 +5230 6194 0.4050 +5230 6203 0.5070 +5230 6207 0.4280 +5230 6209 0.4080 +5230 6222 0.6840 +5230 6224 0.4390 +5230 6233 0.4040 +5230 6387 0.5100 +5230 6389 0.7330 +5230 6390 0.5760 +5230 6391 0.4230 +5230 6470 0.5520 +5230 6472 0.5790 +5230 6513 0.7200 +5230 6515 0.6360 +5230 6521 0.4930 +5230 6613 0.5550 +5230 6647 0.5500 +5230 6648 0.6340 +5230 6652 0.5560 +5230 6657 0.5020 +5230 6736 0.4800 +5230 6774 0.4820 +5230 6872 0.4720 +5230 6885 0.4290 +5230 6888 0.8290 +5230 6908 0.6490 +5230 6950 0.4580 +5230 7001 0.5030 +5230 7037 0.5270 +5230 7040 0.4910 +5230 7054 0.4300 +5230 7059 0.4010 +5230 7086 0.8310 +5230 7094 0.5370 +5230 7155 0.5830 +5230 7157 0.4330 +5230 7167 0.9990 +5230 7169 0.4640 +5230 7184 0.4290 +5230 7203 0.4300 +5230 7277 0.5000 +5230 7280 0.5700 +5230 7284 0.5560 +5230 7295 0.5590 +5230 7296 0.5520 +5230 7298 0.4250 +5230 7314 0.4250 +5230 7316 0.5740 +5230 7372 0.4320 +5230 7384 0.4400 +5230 7385 0.4470 +5230 7407 0.4390 +5230 7408 0.7940 +5230 7415 0.7350 +5230 7416 0.5860 +5230 7417 0.5500 +5230 7431 0.5210 +5230 7529 0.5110 +5230 7531 0.5320 +5230 7532 0.4050 +5230 7534 0.7870 +5230 7543 0.4520 +5230 7837 0.4890 +5230 7846 0.5660 +5230 7852 0.5490 +5230 7915 0.5280 +5230 7919 0.4340 +5230 8226 0.4010 +5230 8260 0.4370 +5230 8277 0.7490 +5230 8290 0.4200 +5230 8317 0.4170 +5230 8349 0.4060 +5230 8356 0.4270 +5230 8678 0.4930 +5230 8789 0.4980 +5230 8802 0.5250 +5230 8803 0.4280 +5230 8813 0.6500 +5230 8841 0.4360 +5230 9122 0.6390 +5230 9123 0.7010 +5230 9343 0.4160 +5230 9380 0.6800 +5230 9427 0.4640 +5230 9563 0.8060 +5230 9588 0.6330 +5230 9669 0.5990 +5230 9775 0.5450 +5230 9801 0.5140 +5230 9942 0.6620 +5230 9990 0.4810 +5230 10075 0.4480 +5230 10096 0.4400 +5230 10102 0.4810 +5230 10213 0.4440 +5230 10370 0.4350 +5230 10376 0.4640 +5230 10382 0.5060 +5230 10383 0.4290 +5230 10449 0.6420 +5230 10526 0.4810 +5230 10549 0.5210 +5230 10551 0.5470 +5230 10576 0.4500 +5230 10606 0.6420 +5230 10873 0.4860 +5230 10935 0.4650 +5230 10963 0.5580 +5230 10971 0.5130 +5230 11181 0.4420 +5230 11184 0.4180 +5230 11315 0.4680 +5230 11345 0.5140 +5230 22933 0.5080 +5230 22934 0.6490 +5230 22948 0.4700 +5230 23162 0.4320 +5230 23435 0.4110 +5230 23475 0.4260 +5230 23521 0.5910 +5230 23710 0.5080 +5230 25824 0.4320 +5230 25939 0.4150 +5230 26227 0.5060 +5230 26330 0.9910 +5230 27068 0.5290 +5230 29851 0.4040 +5230 29925 0.4160 +5230 29927 0.4610 +5230 29968 0.4060 +5230 30001 0.4390 +5230 30816 0.4930 +5230 50808 0.4350 +5230 51744 0.4090 +5230 54205 0.5040 +5230 54464 0.4700 +5230 54518 0.6620 +5230 54583 0.4810 +5230 54995 0.4420 +5230 55203 0.4020 +5230 55272 0.4030 +5230 55276 0.4650 +5230 55636 0.4190 +5230 55811 0.4770 +5230 56965 0.6870 +5230 57103 0.7340 +5230 57469 0.8120 +5230 57591 0.4340 +5230 58157 0.4190 +5230 65059 0.5680 +5230 79148 0.4110 +5230 79668 0.6870 +5230 80153 0.4940 +5230 80201 0.4600 +5230 83440 0.4790 +5230 83549 0.4050 +5230 83660 0.4990 +5230 84076 0.7530 +5230 84172 0.4350 +5230 84617 0.5200 +5230 84790 0.4150 +5230 85476 0.4250 +5230 92399 0.4420 +5230 92483 0.5630 +5230 93974 0.4520 +5230 112399 0.4570 +5230 121278 0.4020 +5230 126393 0.4680 +5230 129831 0.4650 +5230 130589 0.4750 +5230 130752 0.4860 +5230 132851 0.4730 +5230 137902 0.4910 +5230 139596 0.5160 +5230 160287 0.5610 +5230 167227 0.4860 +5230 197335 0.5380 +5230 203068 0.6810 +5230 221823 0.6160 +5230 246243 0.7310 +5230 259266 0.4470 +5230 283871 0.5330 +5230 387712 0.8550 +5230 405754 0.4900 +5230 440093 0.4200 +5230 440275 0.4150 +5230 440686 0.4210 +5230 441531 0.9940 +5230 653604 0.4220 +5230 728378 0.6900 +5230 729020 0.6340 +5232 5277 0.5440 +5232 5313 0.8380 +5232 5315 0.8400 +5232 5340 0.7450 +5232 5464 0.5200 +5232 5620 0.5390 +5232 5702 0.4970 +5232 5704 0.4890 +5232 5706 0.5240 +5232 5832 0.4780 +5232 5834 0.5420 +5232 5836 0.5370 +5232 5837 0.5730 +5232 5887 0.4010 +5232 6120 0.7320 +5232 6135 0.4510 +5232 6188 0.4060 +5232 6222 0.5000 +5232 6228 0.4230 +5232 6389 0.4690 +5232 6390 0.4400 +5232 6470 0.5990 +5232 6472 0.5350 +5232 6513 0.4620 +5232 6521 0.4560 +5232 6648 0.4210 +5232 6652 0.5070 +5232 6888 0.7920 +5232 7001 0.4030 +5232 7059 0.5480 +5232 7086 0.7750 +5232 7141 0.5010 +5232 7142 0.5410 +5232 7167 0.9980 +5232 7180 0.8210 +5232 7284 0.4940 +5232 7295 0.4080 +5232 7316 0.4600 +5232 7372 0.4080 +5232 7407 0.4330 +5232 8277 0.7760 +5232 8342 0.4520 +5232 8345 0.4530 +5232 8348 0.4530 +5232 8349 0.4990 +5232 8789 0.5080 +5232 8802 0.4650 +5232 8852 0.4510 +5232 9122 0.5110 +5232 9123 0.5350 +5232 9380 0.6450 +5232 9563 0.7150 +5232 9669 0.4200 +5232 9775 0.4880 +5232 9942 0.6140 +5232 10102 0.4770 +5232 10449 0.5520 +5232 10606 0.4150 +5232 10693 0.4080 +5232 10873 0.5310 +5232 10880 0.4650 +5232 11181 0.4860 +5232 22934 0.6550 +5232 23475 0.4080 +5232 26330 0.9940 +5232 27068 0.5010 +5232 29118 0.4140 +5232 30816 0.5090 +5232 54145 0.4270 +5232 54205 0.4320 +5232 54995 0.4020 +5232 56965 0.6870 +5232 57103 0.6910 +5232 57469 0.8120 +5232 57591 0.4340 +5232 59343 0.4020 +5232 64080 0.4820 +5232 79648 0.4970 +5232 79668 0.6870 +5232 80201 0.4180 +5232 83440 0.4050 +5232 84076 0.7660 +5232 85236 0.4230 +5232 85364 0.4330 +5232 92399 0.4170 +5232 92483 0.6100 +5232 126393 0.4800 +5232 129831 0.4650 +5232 130589 0.4800 +5232 130752 0.5610 +5232 132851 0.6250 +5232 139596 0.5430 +5232 160287 0.6560 +5232 197335 0.5380 +5232 246243 0.7120 +5232 255626 0.4430 +5232 259266 0.5490 +5232 387712 0.8820 +5232 405754 0.5070 +5232 440689 0.4530 +5232 441531 0.9810 +5232 729020 0.6860 +5236 5238 0.9650 +5236 5255 0.4600 +5236 5257 0.4350 +5236 5277 0.5530 +5236 5313 0.4430 +5236 5315 0.5240 +5236 5373 0.5620 +5236 5834 0.8970 +5236 5836 0.9140 +5236 5837 0.9160 +5236 6006 0.5230 +5236 6007 0.5010 +5236 6389 0.4410 +5236 6513 0.5970 +5236 6566 0.4350 +5236 6647 0.5190 +5236 6652 0.7080 +5236 6833 0.5050 +5236 6888 0.8150 +5236 7086 0.5050 +5236 7167 0.8160 +5236 7358 0.4400 +5236 7360 0.9870 +5236 7841 0.4960 +5236 7849 0.4200 +5236 8277 0.4760 +5236 8803 0.4120 +5236 8891 0.5590 +5236 8893 0.5550 +5236 9332 0.5070 +5236 9380 0.6490 +5236 9563 0.7780 +5236 9588 0.4710 +5236 9942 0.4910 +5236 10020 0.6370 +5236 11181 0.5970 +5236 22934 0.5380 +5236 23171 0.5090 +5236 25796 0.4480 +5236 29925 0.6080 +5236 29926 0.6410 +5236 29929 0.5200 +5236 51062 0.4180 +5236 51182 0.6790 +5236 51727 0.7060 +5236 55256 0.5340 +5236 55276 0.9930 +5236 55748 0.5130 +5236 56052 0.6770 +5236 79763 0.4020 +5236 80201 0.5140 +5236 84076 0.4420 +5236 84455 0.6250 +5236 85365 0.7440 +5236 91373 0.6920 +5236 92579 0.4010 +5236 114625 0.5140 +5236 130589 0.5530 +5236 130752 0.5690 +5236 148581 0.4830 +5236 283209 0.8250 +5236 284098 0.5410 +5236 285527 0.4210 +5236 286451 0.5010 +5236 387712 0.4760 +5236 440138 0.5580 +5236 441531 0.4630 +5236 644974 0.5020 +5238 5239 0.9510 +5238 5277 0.4870 +5238 5313 0.4170 +5238 5373 0.5920 +5238 5817 0.4600 +5238 5819 0.4230 +5238 5834 0.6370 +5238 5836 0.6400 +5238 5837 0.6670 +5238 5948 0.5200 +5238 6120 0.4660 +5238 6303 0.4010 +5238 6729 0.4160 +5238 6734 0.4350 +5238 6888 0.4370 +5238 7167 0.5160 +5238 7264 0.4550 +5238 7358 0.6220 +5238 7360 0.7720 +5238 7378 0.5220 +5238 7841 0.4390 +5238 8226 0.8230 +5238 8473 0.4130 +5238 8789 0.5780 +5238 8813 0.4650 +5238 8891 0.5870 +5238 8893 0.5840 +5238 9563 0.6390 +5238 9945 0.8600 +5238 10007 0.6390 +5238 10020 0.8610 +5238 10724 0.4620 +5238 11005 0.4030 +5238 11181 0.6160 +5238 22934 0.4530 +5238 23483 0.6360 +5238 29760 0.5340 +5238 29880 0.4010 +5238 29925 0.7560 +5238 29926 0.7950 +5238 50808 0.4240 +5238 51005 0.7150 +5238 51071 0.8040 +5238 51204 0.6080 +5238 51727 0.6010 +5238 54187 0.4110 +5238 55276 0.9290 +5238 55343 0.4750 +5238 55577 0.9700 +5238 56052 0.5620 +5238 56262 0.6920 +5238 58478 0.4570 +5238 64841 0.9970 +5238 65005 0.4090 +5238 79087 0.5790 +5238 80201 0.4310 +5238 81704 0.6770 +5238 81839 0.4180 +5238 83440 0.4970 +5238 83932 0.5610 +5238 84263 0.4740 +5238 84433 0.4540 +5238 84896 0.5650 +5238 84905 0.6110 +5238 85365 0.6470 +5238 90353 0.7380 +5238 91373 0.9920 +5238 112611 0.5560 +5238 120892 0.5200 +5238 130589 0.4330 +5238 130752 0.4540 +5238 132789 0.5610 +5238 151531 0.4990 +5238 170959 0.4350 +5238 283209 0.5180 +5238 284098 0.5100 +5238 340562 0.5060 +5238 440138 0.4650 +5238 644974 0.4120 +5239 5277 0.5100 +5239 5834 0.8410 +5239 5836 0.8440 +5239 5837 0.8620 +5239 6442 0.7630 +5239 6443 0.7200 +5239 6444 0.7750 +5239 6445 0.5490 +5239 6640 0.7250 +5239 6641 0.5440 +5239 6645 0.5510 +5239 6652 0.4240 +5239 6888 0.7200 +5239 7086 0.4230 +5239 7167 0.5540 +5239 7358 0.4220 +5239 7360 0.9720 +5239 7402 0.6890 +5239 7841 0.4270 +5239 8082 0.7470 +5239 8891 0.5520 +5239 8893 0.5520 +5239 8910 0.7400 +5239 9499 0.5860 +5239 9563 0.6870 +5239 9942 0.4090 +5239 10020 0.5880 +5239 11181 0.5580 +5239 22934 0.4320 +5239 23336 0.4660 +5239 29925 0.5570 +5239 29926 0.5520 +5239 54212 0.7220 +5239 54221 0.7200 +5239 55256 0.4610 +5239 55276 0.9530 +5239 56052 0.5020 +5239 58529 0.5640 +5239 80201 0.4220 +5239 84455 0.4560 +5239 85365 0.5020 +5239 91373 0.6620 +5239 130752 0.5350 +5239 137868 0.5400 +5239 165904 0.5720 +5239 169693 0.4100 +5239 171024 0.6600 +5239 283209 0.7820 +5239 284098 0.5100 +5239 286451 0.5000 +5239 387712 0.4760 +5239 440138 0.5020 +5239 644974 0.5020 +5241 5290 0.9610 +5241 5291 0.9200 +5241 5293 0.9110 +5241 5295 0.9310 +5241 5296 0.9120 +5241 5304 0.7220 +5241 5328 0.4480 +5241 5452 0.5530 +5241 5465 0.4610 +5241 5469 0.5890 +5241 5481 0.5100 +5241 5566 0.9370 +5241 5567 0.9370 +5241 5568 0.9370 +5241 5578 0.5470 +5241 5591 0.4200 +5241 5594 0.6620 +5241 5595 0.6880 +5241 5599 0.9210 +5241 5600 0.9090 +5241 5601 0.9080 +5241 5603 0.9080 +5241 5604 0.4760 +5241 5617 0.7420 +5241 5618 0.6390 +5241 5728 0.6670 +5241 5733 0.5050 +5241 5742 0.4740 +5241 5743 0.5870 +5241 5744 0.4660 +5241 5925 0.7820 +5241 5970 0.7020 +5241 6198 0.4220 +5241 6239 0.4030 +5241 6256 0.4540 +5241 6257 0.4290 +5241 6258 0.4320 +5241 6277 0.6210 +5241 6295 0.4030 +5241 6300 0.9100 +5241 6421 0.4480 +5241 6446 0.4020 +5241 6462 0.5270 +5241 6591 0.4800 +5241 6597 0.5860 +5241 6605 0.6240 +5241 6615 0.4960 +5241 6667 0.6630 +5241 6714 0.9370 +5241 6770 0.6100 +5241 6772 0.4260 +5241 6774 0.8580 +5241 6776 0.8850 +5241 6777 0.8790 +5241 6790 0.6280 +5241 6855 0.5610 +5241 6908 0.7150 +5241 6996 0.7160 +5241 7015 0.4480 +5241 7031 0.7670 +5241 7039 0.4220 +5241 7040 0.4150 +5241 7080 0.4790 +5241 7090 0.5870 +5241 7124 0.4440 +5241 7153 0.4230 +5241 7157 0.8490 +5241 7266 0.4180 +5241 7329 0.4900 +5241 7337 0.5990 +5241 7341 0.6910 +5241 7356 0.4690 +5241 7431 0.4510 +5241 7490 0.6910 +5241 7520 0.4460 +5241 7791 0.4130 +5241 7799 0.4040 +5241 7837 0.6260 +5241 7849 0.5440 +5241 7852 0.5450 +5241 8202 0.9860 +5241 8204 0.6880 +5241 8289 0.7520 +5241 8290 0.4190 +5241 8356 0.4150 +5241 8503 0.9110 +5241 8554 0.7010 +5241 8600 0.4280 +5241 8614 0.5180 +5241 8648 0.9970 +5241 8655 0.4020 +5241 8850 0.6140 +5241 8900 0.5390 +5241 9166 0.4240 +5241 9252 0.5070 +5241 9429 0.4230 +5241 9464 0.4030 +5241 9476 0.4840 +5241 9611 0.9930 +5241 9612 0.9920 +5241 9687 0.8300 +5241 9961 0.4030 +5241 10011 0.4070 +5241 10121 0.4380 +5241 10401 0.6130 +5241 10403 0.6570 +5241 10406 0.4180 +5241 10424 0.8720 +5241 10464 0.5540 +5241 10499 0.9110 +5241 10540 0.4090 +5241 10630 0.4140 +5241 10728 0.8560 +5241 10857 0.9440 +5241 10912 0.4270 +5241 10957 0.4220 +5241 10963 0.8170 +5241 10987 0.6450 +5241 11143 0.4370 +5241 11200 0.5010 +5241 23028 0.5250 +5241 23082 0.4070 +5241 23508 0.6410 +5241 23705 0.4450 +5241 26060 0.4420 +5241 26135 0.5540 +5241 27043 0.5550 +5241 27346 0.4850 +5241 29123 0.4520 +5241 29126 0.5720 +5241 51143 0.4030 +5241 54361 0.6220 +5241 54474 0.6750 +5241 54810 0.4280 +5241 54852 0.5340 +5241 55629 0.4120 +5241 55860 0.4090 +5241 55898 0.5620 +5241 57758 0.5560 +5241 59350 0.4450 +5241 63897 0.4180 +5241 79004 0.8340 +5241 79039 0.5830 +5241 79154 0.4090 +5241 79728 0.4480 +5241 79957 0.4150 +5241 84260 0.6060 +5241 84458 0.4980 +5241 85315 0.6120 +5241 93661 0.4230 +5241 122042 0.4170 +5241 122953 0.7550 +5241 124936 0.4590 +5241 132864 0.4390 +5241 137902 0.6260 +5241 140735 0.4020 +5241 146862 0.5090 +5241 164091 0.6340 +5241 400566 0.6150 +5241 440093 0.4180 +5241 440686 0.4320 +5241 653604 0.4310 +5241 100133941 0.5850 +5241 100861540 0.4620 +5243 5244 0.6660 +5243 5444 0.6640 +5243 5460 0.4750 +5243 5578 0.5410 +5243 5595 0.4670 +5243 5728 0.5210 +5243 5743 0.4100 +5243 6059 0.4650 +5243 6469 0.5180 +5243 6513 0.5210 +5243 6519 0.5330 +5243 6532 0.4410 +5243 6554 0.5990 +5243 6555 0.4930 +5243 6564 0.5490 +5243 6565 0.4710 +5243 6573 0.5520 +5243 6578 0.4640 +5243 6579 0.7130 +5243 6580 0.7230 +5243 6581 0.4330 +5243 6582 0.6180 +5243 6583 0.5180 +5243 6584 0.5150 +5243 6615 0.4310 +5243 6648 0.4810 +5243 6657 0.4750 +5243 6667 0.4170 +5243 6696 0.4200 +5243 6714 0.4330 +5243 6774 0.8000 +5243 6833 0.4270 +5243 7082 0.4150 +5243 7122 0.4950 +5243 7124 0.4330 +5243 7150 0.4060 +5243 7153 0.4170 +5243 7157 0.6170 +5243 7170 0.5230 +5243 7172 0.5180 +5243 7298 0.5480 +5243 7355 0.5780 +5243 7363 0.4200 +5243 7364 0.6710 +5243 7365 0.4010 +5243 7366 0.4620 +5243 7367 0.4190 +5243 7837 0.4960 +5243 8529 0.5150 +5243 8714 0.5790 +5243 8842 0.5840 +5243 8856 0.8420 +5243 9356 0.6100 +5243 9360 0.8090 +5243 9376 0.6540 +5243 9429 0.5490 +5243 9961 0.7600 +5243 9970 0.6020 +5243 9971 0.4460 +5243 9988 0.4310 +5243 10057 0.5640 +5243 10060 0.4280 +5243 10061 0.8120 +5243 10257 0.5580 +5243 10351 0.4270 +5243 10381 0.6350 +5243 10399 0.5050 +5243 10456 0.4470 +5243 10549 0.4080 +5243 10599 0.8830 +5243 10864 0.5490 +5243 11309 0.6790 +5243 23411 0.5540 +5243 23460 0.4090 +5243 23461 0.4190 +5243 26154 0.4380 +5243 27306 0.4750 +5243 28234 0.8440 +5243 51081 0.7750 +5243 53919 0.4100 +5243 54205 0.4060 +5243 54575 0.6790 +5243 54576 0.6820 +5243 54577 0.6830 +5243 54578 0.7060 +5243 54600 0.5620 +5243 54657 0.7030 +5243 54658 0.6830 +5243 54659 0.4610 +5243 55244 0.6440 +5243 55324 0.4080 +5243 55867 0.4800 +5243 55915 0.5840 +5243 64078 0.4710 +5243 64805 0.7050 +5243 79001 0.5070 +5243 79728 0.4440 +5243 79799 0.4240 +5243 79923 0.4800 +5243 81570 0.4750 +5243 85320 0.4760 +5243 85413 0.5160 +5243 89845 0.5680 +5243 94160 0.4520 +5243 114571 0.4650 +5243 133482 0.4340 +5243 133688 0.4410 +5243 135152 0.4680 +5243 137902 0.4960 +5243 146802 0.5970 +5243 154661 0.5930 +5243 167127 0.4190 +5243 200895 0.4430 +5243 353189 0.4490 +5243 100133941 0.4880 +5243 100506658 0.4370 +5243 100861540 0.5200 +5243 114483834 0.8120 +5244 5465 0.7190 +5244 5469 0.4230 +5244 6204 0.4090 +5244 6256 0.5200 +5244 6522 0.4320 +5244 6523 0.4640 +5244 6554 0.7890 +5244 6555 0.8580 +5244 6579 0.5990 +5244 6604 0.4080 +5244 6717 0.5950 +5244 6718 0.6050 +5244 6822 0.5170 +5244 6833 0.4100 +5244 6907 0.4550 +5244 8309 0.5210 +5244 8431 0.6160 +5244 8648 0.4440 +5244 8714 0.5570 +5244 8856 0.7100 +5244 9213 0.4380 +5244 9368 0.4360 +5244 9414 0.5200 +5244 9420 0.5150 +5244 9429 0.4530 +5244 9965 0.4550 +5244 9970 0.4650 +5244 9971 0.7530 +5244 10057 0.4610 +5244 10061 0.4060 +5244 10257 0.4900 +5244 10398 0.4750 +5244 10399 0.4610 +5244 10400 0.4470 +5244 10456 0.4990 +5244 10498 0.4550 +5244 10499 0.4170 +5244 10599 0.5990 +5244 10864 0.4590 +5244 23054 0.4260 +5244 28231 0.4310 +5244 28234 0.5020 +5244 29881 0.5010 +5244 51081 0.4140 +5244 53919 0.4220 +5244 54577 0.4060 +5244 54578 0.4420 +5244 54657 0.4180 +5244 54658 0.4180 +5244 55324 0.4100 +5244 64240 0.4920 +5244 64241 0.5230 +5244 79718 0.4180 +5244 80205 0.4260 +5244 85320 0.4360 +5244 85441 0.4230 +5244 89845 0.4260 +5244 94160 0.4380 +5244 96764 0.4310 +5244 103910 0.4810 +5244 123264 0.6080 +5244 151306 0.5360 +5244 152831 0.4040 +5244 154661 0.4230 +5244 200931 0.6610 +5244 646625 0.4040 +5244 114483834 0.4040 +5245 5250 0.5590 +5245 5315 0.4160 +5245 5437 0.4900 +5245 5478 0.6530 +5245 5591 0.4390 +5245 5641 0.4560 +5245 5689 0.4210 +5245 5702 0.4810 +5245 5704 0.5550 +5245 5705 0.5720 +5245 5706 0.4940 +5245 5710 0.4320 +5245 5715 0.4280 +5245 5862 0.4210 +5245 5894 0.9460 +5245 5901 0.4550 +5245 5925 0.7210 +5245 5955 0.4510 +5245 6045 0.5750 +5245 6122 0.4160 +5245 6124 0.5890 +5245 6129 0.7100 +5245 6132 0.4190 +5245 6133 0.4050 +5245 6152 0.4030 +5245 6175 0.4110 +5245 6182 0.6520 +5245 6184 0.4990 +5245 6187 0.4190 +5245 6188 0.4660 +5245 6191 0.5340 +5245 6193 0.4300 +5245 6194 0.4270 +5245 6203 0.4140 +5245 6208 0.4530 +5245 6217 0.4300 +5245 6224 0.4180 +5245 6233 0.4140 +5245 6389 0.6470 +5245 6390 0.4180 +5245 6472 0.4240 +5245 6502 0.5940 +5245 6595 0.5480 +5245 6597 0.6360 +5245 6633 0.4150 +5245 6634 0.4040 +5245 6687 0.8840 +5245 6742 0.6360 +5245 6745 0.5260 +5245 6747 0.6490 +5245 6749 0.4440 +5245 6780 0.5370 +5245 6950 0.4950 +5245 7001 0.5380 +5245 7019 0.7560 +5245 7070 0.4780 +5245 7072 0.4400 +5245 7073 0.4300 +5245 7157 0.8600 +5245 7167 0.4140 +5245 7178 0.4980 +5245 7184 0.5620 +5245 7203 0.6550 +5245 7277 0.4030 +5245 7280 0.4490 +5245 7284 0.7970 +5245 7298 0.4060 +5245 7384 0.5400 +5245 7385 0.6440 +5245 7386 0.4410 +5245 7415 0.7060 +5245 7416 0.8830 +5245 7417 0.9100 +5245 7419 0.5610 +5245 7430 0.4250 +5245 7514 0.6110 +5245 7529 0.6850 +5245 7532 0.5740 +5245 7534 0.5370 +5245 7827 0.4180 +5245 7965 0.4560 +5245 8192 0.4870 +5245 8225 0.4740 +5245 8402 0.6270 +5245 8407 0.4070 +5245 8452 0.4530 +5245 8565 0.4320 +5245 8604 0.4590 +5245 8607 0.4650 +5245 8634 0.4150 +5245 8844 0.4500 +5245 8878 0.4340 +5245 9093 0.5960 +5245 9131 0.6990 +5245 9188 0.4100 +5245 9343 0.4670 +5245 9361 0.5220 +5245 9377 0.5330 +5245 9399 0.5190 +5245 9474 0.4530 +5245 9512 0.5930 +5245 9520 0.5930 +5245 9551 0.4310 +5245 9584 0.5100 +5245 9588 0.5890 +5245 9601 0.4470 +5245 9611 0.6290 +5245 9694 0.5480 +5245 9698 0.4120 +5245 9775 0.4060 +5245 9804 0.5690 +5245 9868 0.4980 +5245 9927 0.4840 +5245 9961 0.4140 +5245 9987 0.4460 +5245 10044 0.5340 +5245 10049 0.4570 +5245 10056 0.4040 +5245 10059 0.4450 +5245 10097 0.5540 +5245 10128 0.4530 +5245 10130 0.4490 +5245 10131 0.4470 +5245 10134 0.6710 +5245 10146 0.4570 +5245 10189 0.5110 +5245 10211 0.5590 +5245 10226 0.4130 +5245 10273 0.4050 +5245 10280 0.5230 +5245 10367 0.6150 +5245 10376 0.4480 +5245 10381 0.4200 +5245 10382 0.4550 +5245 10383 0.4830 +5245 10399 0.4220 +5245 10436 0.4410 +5245 10452 0.6250 +5245 10456 0.4420 +5245 10469 0.4250 +5245 10476 0.5900 +5245 10492 0.6490 +5245 10521 0.4110 +5245 10525 0.5340 +5245 10574 0.5380 +5245 10575 0.5600 +5245 10576 0.5480 +5245 10594 0.4890 +5245 10598 0.4300 +5245 10613 0.9860 +5245 10667 0.4360 +5245 10694 0.4210 +5245 10730 0.8140 +5245 10808 0.4280 +5245 10845 0.6400 +5245 10856 0.4410 +5245 10871 0.4310 +5245 10935 0.6700 +5245 10939 0.9340 +5245 10971 0.4540 +5245 10987 0.4400 +5245 10989 0.7410 +5245 11160 0.9910 +5245 11224 0.4570 +5245 11315 0.5860 +5245 11316 0.4320 +5245 11331 0.9990 +5245 22907 0.4100 +5245 22931 0.4250 +5245 22948 0.5840 +5245 23076 0.5230 +5245 23107 0.4950 +5245 23203 0.7150 +5245 23369 0.4120 +5245 23450 0.5350 +5245 23476 0.5280 +5245 23481 0.4060 +5245 23761 0.4200 +5245 23788 0.4450 +5245 25813 0.4250 +5245 26135 0.4020 +5245 26227 0.4100 +5245 26284 0.4550 +5245 26517 0.5060 +5245 26523 0.4010 +5245 27089 0.4340 +5245 27161 0.5830 +5245 27166 0.4400 +5245 27429 0.4910 +5245 29789 0.4330 +5245 29889 0.4020 +5245 30968 0.9450 +5245 51024 0.5600 +5245 51025 0.4340 +5245 51081 0.7040 +5245 51117 0.4400 +5245 51142 0.4110 +5245 51144 0.5140 +5245 51300 0.4380 +5245 51491 0.4220 +5245 51493 0.4340 +5245 51499 0.4220 +5245 51574 0.5360 +5245 51806 0.4290 +5245 54205 0.7190 +5245 54431 0.4180 +5245 54529 0.5120 +5245 54587 0.4640 +5245 54596 0.4180 +5245 54675 0.5190 +5245 54927 0.5580 +5245 55013 0.5650 +5245 55143 0.4200 +5245 55210 0.7560 +5245 55288 0.4690 +5245 55379 0.4680 +5245 55486 0.6080 +5245 55651 0.4750 +5245 55669 0.4530 +5245 55735 0.4970 +5245 55750 0.4210 +5245 56945 0.4950 +5245 56993 0.6370 +5245 57506 0.5050 +5245 60528 0.4380 +5245 64087 0.4100 +5245 64216 0.4210 +5245 65003 0.5150 +5245 65018 0.4560 +5245 65993 0.4540 +5245 79568 0.8110 +5245 79608 0.5380 +5245 80273 0.6000 +5245 81570 0.5330 +5245 83858 0.4050 +5245 83932 0.5100 +5245 84260 0.5550 +5245 84311 0.4640 +5245 84557 0.4090 +5245 84617 0.4400 +5245 84790 0.4280 +5245 85476 0.4700 +5245 89941 0.4290 +5245 90550 0.6030 +5245 91419 0.7090 +5245 91689 0.5380 +5245 91860 0.4280 +5245 91942 0.4220 +5245 92609 0.6660 +5245 94081 0.5290 +5245 115209 0.5680 +5245 120892 0.5490 +5245 128240 0.5200 +5245 131118 0.8880 +5245 140465 0.4260 +5245 143187 0.5960 +5245 161003 0.4870 +5245 163688 0.4280 +5245 192111 0.6280 +5245 203068 0.5160 +5245 221154 0.5770 +5245 286097 0.4990 +5245 374291 0.5030 +5245 100287932 0.4680 +5245 114483834 0.4070 +5250 5682 0.4740 +5250 6015 0.9840 +5250 6045 0.8240 +5250 6124 0.4120 +5250 6133 0.4770 +5250 6230 0.4180 +5250 6341 0.4170 +5250 6389 0.4920 +5250 6390 0.5470 +5250 6392 0.4360 +5250 6513 0.4610 +5250 6950 0.7130 +5250 7112 0.4090 +5250 7203 0.5480 +5250 7284 0.5280 +5250 7381 0.5340 +5250 7384 0.5750 +5250 7385 0.8910 +5250 7386 0.9570 +5250 7416 0.7250 +5250 7417 0.7900 +5250 7419 0.6810 +5250 7703 0.9070 +5250 7812 0.4510 +5250 8402 0.5760 +5250 8802 0.4460 +5250 9131 0.4610 +5250 9221 0.4220 +5250 9352 0.4140 +5250 9377 0.8880 +5250 9804 0.4180 +5250 10063 0.5230 +5250 10367 0.5190 +5250 10399 0.4360 +5250 10452 0.5200 +5250 10476 0.5670 +5250 10575 0.8250 +5250 10651 0.4040 +5250 10901 0.4730 +5250 10935 0.4100 +5250 10939 0.4380 +5250 10951 0.9830 +5250 10959 0.4170 +5250 11315 0.5620 +5250 11331 0.4670 +5250 23082 0.5430 +5250 23429 0.5070 +5250 23787 0.8640 +5250 23788 0.8680 +5250 26515 0.4160 +5250 51202 0.4590 +5250 54205 0.5430 +5250 55013 0.5100 +5250 55143 0.6510 +5250 55331 0.8750 +5250 55967 0.5800 +5250 56993 0.7120 +5250 63933 0.5360 +5250 83447 0.6000 +5250 84733 0.8760 +5250 84759 0.5140 +5250 84833 0.4280 +5250 93621 0.4570 +5250 116447 0.4050 +5250 130752 0.5580 +5250 149041 0.5100 +5250 374291 0.4010 +5250 100532731 0.9700 +5251 5304 0.6450 +5251 5741 0.8590 +5251 5745 0.4520 +5251 6424 0.6510 +5251 6569 0.9090 +5251 6611 0.8210 +5251 6696 0.6210 +5251 6723 0.4220 +5251 8074 0.9810 +5251 8600 0.5550 +5251 9365 0.8820 +5251 50964 0.7540 +5251 56955 0.9530 +5251 56975 0.6850 +5251 121340 0.5330 +5251 142680 0.9430 +5251 162466 0.4830 +5252 5621 0.4150 +5252 5663 0.4920 +5252 5928 0.9380 +5252 5929 0.4560 +5252 5931 0.9720 +5252 6015 0.4510 +5252 6601 0.4470 +5252 6622 0.6020 +5252 6855 0.4590 +5252 7157 0.8020 +5252 7520 0.6830 +5252 7528 0.4460 +5252 7531 0.5370 +5252 7862 0.4810 +5252 7994 0.5070 +5252 8290 0.9820 +5252 8331 0.4990 +5252 8334 0.4990 +5252 8337 0.6470 +5252 8338 0.6470 +5252 8340 0.5220 +5252 8341 0.5250 +5252 8342 0.5220 +5252 8345 0.5220 +5252 8347 0.5380 +5252 8348 0.5220 +5252 8349 0.6120 +5252 8350 0.9550 +5252 8351 0.9110 +5252 8352 0.9390 +5252 8353 0.9180 +5252 8354 0.9340 +5252 8355 0.9340 +5252 8356 0.9870 +5252 8357 0.9340 +5252 8358 0.9340 +5252 8361 0.7070 +5252 8450 0.5380 +5252 8535 0.4190 +5252 8726 0.9710 +5252 8819 0.4630 +5252 8831 0.4670 +5252 8968 0.9340 +5252 8970 0.5210 +5252 9112 0.4750 +5252 9219 0.4700 +5252 9611 0.4240 +5252 9729 0.5910 +5252 10419 0.4420 +5252 10902 0.4530 +5252 10919 0.5370 +5252 10971 0.4650 +5252 11061 0.4780 +5252 22823 0.9630 +5252 23028 0.5030 +5252 23264 0.6320 +5252 23411 0.4960 +5252 23435 0.6020 +5252 23492 0.4700 +5252 23512 0.9920 +5252 23621 0.4560 +5252 23636 0.4170 +5252 25942 0.4570 +5252 26147 0.9630 +5252 27183 0.4020 +5252 27243 0.6500 +5252 29066 0.4560 +5252 51131 0.4880 +5252 51510 0.4240 +5252 51742 0.4890 +5252 54145 0.5220 +5252 54799 0.7410 +5252 54819 0.4490 +5252 55145 0.4780 +5252 55766 0.4990 +5252 57132 0.6700 +5252 57332 0.4350 +5252 57504 0.4680 +5252 57634 0.4220 +5252 64769 0.8280 +5252 79697 0.4730 +5252 84295 0.4550 +5252 84458 0.9000 +5252 84678 0.4660 +5252 84759 0.4800 +5252 85236 0.5210 +5252 94239 0.5260 +5252 121536 0.9740 +5252 126961 0.9110 +5252 128312 0.5220 +5252 146713 0.4390 +5252 148479 0.6810 +5252 221895 0.7140 +5252 255626 0.5250 +5252 333932 0.9080 +5252 340602 0.6420 +5252 343035 0.5450 +5252 440093 0.6710 +5252 440686 0.9650 +5252 474382 0.4990 +5252 653604 0.9850 +5252 728118 0.5450 +5252 729246 0.5910 +5252 729262 0.4030 +5252 100170841 0.9930 +5253 5927 0.4960 +5253 6194 0.4300 +5253 6839 0.5530 +5253 7403 0.4250 +5253 8242 0.4810 +5253 8290 0.5520 +5253 8356 0.6250 +5253 8361 0.4460 +5253 9682 0.5690 +5253 9739 0.4150 +5253 9827 0.5410 +5253 9869 0.4080 +5253 10765 0.4480 +5253 23028 0.4680 +5253 23030 0.5120 +5253 23067 0.4600 +5253 23081 0.4340 +5253 23133 0.5120 +5253 23135 0.4880 +5253 23201 0.4360 +5253 29072 0.4790 +5253 51068 0.5650 +5253 51111 0.4410 +5253 51780 0.7010 +5253 55693 0.5390 +5253 55818 0.6840 +5253 79697 0.4140 +5253 79723 0.4830 +5253 80853 0.4680 +5253 84159 0.9760 +5253 84787 0.4120 +5253 126961 0.4290 +5253 221037 0.4730 +5253 221656 0.5130 +5253 390245 0.4680 +5253 653604 0.6300 +5255 5256 0.9550 +5255 5257 0.9540 +5255 5260 0.9870 +5255 5261 0.9990 +5255 5499 0.6610 +5255 5500 0.6810 +5255 5501 0.6680 +5255 5506 0.7230 +5255 5507 0.7440 +5255 5509 0.6630 +5255 5566 0.6700 +5255 5567 0.6680 +5255 5568 0.6680 +5255 5834 0.8020 +5255 5836 0.8470 +5255 5837 0.8600 +5255 6191 0.8110 +5255 6192 0.7780 +5255 6567 0.6010 +5255 6872 0.6530 +5255 7543 0.5380 +5255 9427 0.4260 +5255 27239 0.4050 +5255 51806 0.9190 +5255 53632 0.7650 +5255 79660 0.6860 +5255 89801 0.6830 +5255 90673 0.6550 +5255 91860 0.9140 +5255 118881 0.4220 +5255 163688 0.9140 +5255 338872 0.4200 +5256 5257 0.9780 +5256 5260 0.9750 +5256 5261 0.9990 +5256 5313 0.4400 +5256 5499 0.6730 +5256 5500 0.6600 +5256 5501 0.6710 +5256 5506 0.6830 +5256 5507 0.7170 +5256 5509 0.7060 +5256 5566 0.6980 +5256 5567 0.6970 +5256 5568 0.6970 +5256 5834 0.7940 +5256 5836 0.8550 +5256 5837 0.8130 +5256 6120 0.5110 +5256 6888 0.4500 +5256 7086 0.4960 +5256 7167 0.5470 +5256 9563 0.4550 +5256 9564 0.4460 +5256 9924 0.5330 +5256 10897 0.4170 +5256 22934 0.4510 +5256 26273 0.4210 +5256 51806 0.9200 +5256 55715 0.6840 +5256 55902 0.5170 +5256 79660 0.7010 +5256 84532 0.4810 +5256 89801 0.6830 +5256 90673 0.6760 +5256 91860 0.9180 +5256 127428 0.5030 +5256 163688 0.9170 +5257 5260 0.9900 +5257 5261 0.9990 +5257 5499 0.6810 +5257 5500 0.6640 +5257 5501 0.6870 +5257 5506 0.7140 +5257 5507 0.7380 +5257 5509 0.7210 +5257 5566 0.6780 +5257 5567 0.6900 +5257 5568 0.6770 +5257 5834 0.8190 +5257 5836 0.8770 +5257 5837 0.9010 +5257 6451 0.4700 +5257 8801 0.4230 +5257 9663 0.4050 +5257 23178 0.4770 +5257 25999 0.4250 +5257 51806 0.9170 +5257 53632 0.8190 +5257 54976 0.4210 +5257 55715 0.6000 +5257 57214 0.5380 +5257 64377 0.4150 +5257 79660 0.7210 +5257 81533 0.6850 +5257 89801 0.6520 +5257 90673 0.6650 +5257 91860 0.9160 +5257 163688 0.9140 +5257 201501 0.4120 +5257 340895 0.4350 +5260 5261 0.7440 +5260 5834 0.6610 +5260 5836 0.5070 +5260 5837 0.7940 +5260 25870 0.6450 +5260 51142 0.5820 +5260 51806 0.4610 +5260 53632 0.6360 +5260 55066 0.4260 +5260 91860 0.4180 +5260 163688 0.4600 +5260 349075 0.4960 +5261 5499 0.6900 +5261 5500 0.6720 +5261 5501 0.6770 +5261 5506 0.6810 +5261 5507 0.7480 +5261 5509 0.7200 +5261 5562 0.6540 +5261 5564 0.6080 +5261 5565 0.6290 +5261 5566 0.6750 +5261 5567 0.6770 +5261 5568 0.6810 +5261 5571 0.7080 +5261 5834 0.7970 +5261 5836 0.8580 +5261 5837 0.8240 +5261 9054 0.4590 +5261 9814 0.4130 +5261 10590 0.4190 +5261 51006 0.4360 +5261 51422 0.5260 +5261 51678 0.5050 +5261 51806 0.9220 +5261 55715 0.5130 +5261 55847 0.4790 +5261 79660 0.6950 +5261 89801 0.6610 +5261 90673 0.6670 +5261 91860 0.9200 +5261 116138 0.4440 +5261 117245 0.4280 +5261 132851 0.4280 +5261 163688 0.9200 +5264 5824 0.6110 +5264 5825 0.4470 +5264 5828 0.7650 +5264 5830 0.9360 +5264 6233 0.5130 +5264 6342 0.6000 +5264 7167 0.5220 +5264 7311 0.4990 +5264 7314 0.5160 +5264 7316 0.5160 +5264 7321 0.5010 +5264 7322 0.4990 +5264 7323 0.4990 +5264 7345 0.5060 +5264 8310 0.7400 +5264 8443 0.7310 +5264 8504 0.5410 +5264 8540 0.8800 +5264 8799 0.5230 +5264 8800 0.4800 +5264 9409 0.5550 +5264 9415 0.4110 +5264 9796 0.9860 +5264 11146 0.7130 +5264 23305 0.7170 +5264 23324 0.4080 +5264 23600 0.6510 +5264 26061 0.6950 +5264 26063 0.4140 +5264 51179 0.4180 +5264 51555 0.4580 +5264 54363 0.4590 +5264 54677 0.4410 +5264 55556 0.4070 +5264 55670 0.4870 +5264 55856 0.4180 +5264 84918 0.4030 +5264 90806 0.4220 +5264 128387 0.4760 +5264 131149 0.4130 +5264 132949 0.4620 +5264 171483 0.5940 +5264 219743 0.8490 +5264 222389 0.4620 +5264 257144 0.4910 +5264 376497 0.4210 +5264 441150 0.6920 +5265 5266 0.4980 +5265 5284 0.4580 +5265 5292 0.8630 +5265 5327 0.4810 +5265 5329 0.4280 +5265 5340 0.8190 +5265 5345 0.8370 +5265 5444 0.5080 +5265 5478 0.4710 +5265 5578 0.4120 +5265 5624 0.9340 +5265 5644 0.7630 +5265 5645 0.9780 +5265 5646 0.6300 +5265 5657 0.8380 +5265 5768 0.4910 +5265 5858 0.4200 +5265 5950 0.6790 +5265 5968 0.4230 +5265 6195 0.5350 +5265 6280 0.5900 +5265 6288 0.6650 +5265 6289 0.4770 +5265 6291 0.4560 +5265 6347 0.4200 +5265 6396 0.5300 +5265 6400 0.4450 +5265 6441 0.5530 +5265 6464 0.5060 +5265 6554 0.5320 +5265 6590 0.6210 +5265 6648 0.4920 +5265 6654 0.4520 +5265 6657 0.4640 +5265 6688 0.4030 +5265 6694 0.4290 +5265 6714 0.5110 +5265 6737 0.4290 +5265 6811 0.5180 +5265 6898 0.4870 +5265 6927 0.4340 +5265 6999 0.4600 +5265 7018 0.8480 +5265 7035 0.5680 +5265 7037 0.5380 +5265 7039 0.6240 +5265 7040 0.6390 +5265 7042 0.5140 +5265 7056 0.5100 +5265 7076 0.6920 +5265 7099 0.5960 +5265 7113 0.6110 +5265 7124 0.5880 +5265 7276 0.9610 +5265 7369 0.5180 +5265 7415 0.6050 +5265 7436 0.4870 +5265 7448 0.7180 +5265 7450 0.4650 +5265 7494 0.5350 +5265 7837 0.4680 +5265 7852 0.5690 +5265 8542 0.6310 +5265 8615 0.4990 +5265 8647 0.4180 +5265 8774 0.4990 +5265 8775 0.5160 +5265 8857 0.4510 +5265 8878 0.6380 +5265 9117 0.5110 +5265 9133 0.4600 +5265 9213 0.4740 +5265 9507 0.4650 +5265 9518 0.4280 +5265 9554 0.5290 +5265 9570 0.4990 +5265 9622 0.6390 +5265 9632 0.5530 +5265 9695 0.7660 +5265 9871 0.5370 +5265 9919 0.5470 +5265 10113 0.5190 +5265 10144 0.6150 +5265 10175 0.5000 +5265 10282 0.5220 +5265 10342 0.4990 +5265 10423 0.8320 +5265 10427 0.5500 +5265 10484 0.5100 +5265 10652 0.4990 +5265 10747 0.4170 +5265 10802 0.5320 +5265 10956 0.9200 +5265 10959 0.5010 +5265 10960 0.6280 +5265 10972 0.5000 +5265 11196 0.4990 +5265 11253 0.6920 +5265 22872 0.5110 +5265 23256 0.4990 +5265 26984 0.5110 +5265 27248 0.8540 +5265 43847 0.4960 +5265 51009 0.7430 +5265 51128 0.5570 +5265 51643 0.7150 +5265 54431 0.5510 +5265 54757 0.4840 +5265 55014 0.5620 +5265 55741 0.6230 +5265 55757 0.5290 +5265 55937 0.4660 +5265 56886 0.5800 +5265 56975 0.5590 +5265 57556 0.4530 +5265 63908 0.5130 +5265 64689 0.5130 +5265 79003 0.7800 +5265 79139 0.8110 +5265 79748 0.4990 +5265 80267 0.7940 +5265 81562 0.5940 +5265 81619 0.4940 +5265 83706 0.4200 +5265 84447 0.6460 +5265 85477 0.6200 +5265 89866 0.5240 +5265 90411 0.6640 +5265 116519 0.4230 +5265 116844 0.5540 +5265 137902 0.4680 +5265 148156 0.4520 +5265 149111 0.4990 +5265 200576 0.4680 +5265 253260 0.4460 +5265 254263 0.4990 +5265 387923 0.4290 +5265 440193 0.4030 +5265 440387 0.9580 +5266 5267 0.8640 +5266 5268 0.6260 +5266 5269 0.4640 +5266 5289 0.5070 +5266 5290 0.4180 +5266 5291 0.5950 +5266 5293 0.7550 +5266 5296 0.4200 +5266 5317 0.5710 +5266 5318 0.5050 +5266 5341 0.4090 +5266 5493 0.7350 +5266 5595 0.4040 +5266 5655 0.4120 +5266 5657 0.5070 +5266 5728 0.5280 +5266 5781 0.5010 +5266 6278 0.6150 +5266 6283 0.4230 +5266 6305 0.4700 +5266 6317 0.4580 +5266 6318 0.5080 +5266 6364 0.4710 +5266 6406 0.7300 +5266 6407 0.7350 +5266 6590 0.7000 +5266 6698 0.6400 +5266 6699 0.7870 +5266 6700 0.7540 +5266 6701 0.7780 +5266 6703 0.6310 +5266 6704 0.6300 +5266 6705 0.7110 +5266 6706 0.6290 +5266 6707 0.7650 +5266 6714 0.4830 +5266 6774 0.4040 +5266 7051 0.6640 +5266 7062 0.5360 +5266 7124 0.6660 +5266 7132 0.5010 +5266 7157 0.5760 +5266 7430 0.4740 +5266 7455 0.4030 +5266 7534 0.4330 +5266 8502 0.4990 +5266 8503 0.4160 +5266 8678 0.5820 +5266 8785 0.4260 +5266 8898 0.5490 +5266 9146 0.4650 +5266 9644 0.4080 +5266 10406 0.4200 +5266 10725 0.4290 +5266 11187 0.5410 +5266 22863 0.5790 +5266 23581 0.4650 +5266 26239 0.5680 +5266 26499 0.4410 +5266 55062 0.6510 +5266 56300 0.4070 +5266 57418 0.4320 +5266 64145 0.4330 +5266 79443 0.4100 +5266 84648 0.6300 +5266 84659 0.4230 +5266 90199 0.4750 +5266 126638 0.5710 +5266 128488 0.8320 +5266 147409 0.4990 +5266 149018 0.6340 +5266 149708 0.5720 +5266 199834 0.4990 +5266 200576 0.4160 +5266 254910 0.5610 +5266 338324 0.4750 +5266 353131 0.5280 +5266 353132 0.5400 +5266 353133 0.5240 +5266 353134 0.5430 +5266 353135 0.5340 +5266 353137 0.5280 +5266 353139 0.5030 +5266 353140 0.5580 +5266 353141 0.5260 +5266 353142 0.5710 +5266 353143 0.5160 +5266 353144 0.6460 +5266 353145 0.5920 +5266 414325 0.4570 +5266 448835 0.5260 +5266 100289462 0.4130 +5267 5297 0.4830 +5267 5298 0.6410 +5267 5305 0.4500 +5267 5340 0.5890 +5267 5341 0.4790 +5267 5345 0.4510 +5267 5444 0.4900 +5267 5728 0.4220 +5267 5919 0.4590 +5267 6414 0.6730 +5267 6694 0.5120 +5267 6906 0.4240 +5267 7057 0.4500 +5267 7078 0.4080 +5267 7123 0.6820 +5267 9066 0.4190 +5267 9314 0.4400 +5267 9622 0.8480 +5267 9685 0.5750 +5267 10087 0.5320 +5267 10656 0.4650 +5267 11098 0.4150 +5267 23259 0.4220 +5267 23265 0.4310 +5267 26499 0.4790 +5267 54587 0.4070 +5267 54757 0.4290 +5267 55033 0.4500 +5267 55300 0.4790 +5267 55784 0.4170 +5267 64852 0.4450 +5267 65977 0.5070 +5267 200576 0.4150 +5267 202559 0.4670 +5267 440387 0.5000 +5268 5317 0.5600 +5268 5328 0.4470 +5268 5329 0.5040 +5268 5340 0.6480 +5268 5655 0.5010 +5268 5728 0.4710 +5268 6317 0.5090 +5268 6657 0.4280 +5268 7057 0.4300 +5268 7078 0.4320 +5268 7157 0.7090 +5268 7168 0.5750 +5268 8434 0.4210 +5268 8600 0.5190 +5268 9982 0.5090 +5268 10656 0.6120 +5268 11151 0.4100 +5268 11186 0.4180 +5268 23650 0.6040 +5268 27250 0.5730 +5268 28970 0.4750 +5268 51806 0.4060 +5268 53938 0.4680 +5268 55612 0.4780 +5268 56649 0.4090 +5268 57402 0.4400 +5268 64065 0.4290 +5268 83860 0.4310 +5268 85477 0.4780 +5268 93183 0.4500 +5268 114907 0.6190 +5268 124056 0.4390 +5268 144811 0.4590 +5268 149628 0.6210 +5268 653499 0.4990 +5269 5271 0.5450 +5269 5327 0.7310 +5269 5328 0.6290 +5269 5329 0.4460 +5269 5345 0.4330 +5269 6688 0.6520 +5269 7448 0.5910 +5269 11202 0.7790 +5269 26085 0.4670 +5269 53904 0.4140 +5269 64699 0.4520 +5269 92747 0.4080 +5269 117531 0.4180 +5269 125336 0.4010 +5269 126326 0.5060 +5269 146183 0.4280 +5269 259236 0.4550 +5269 286262 0.4790 +5269 389207 0.4800 +5269 643394 0.4580 +5270 5327 0.8780 +5270 5328 0.9460 +5270 5329 0.7350 +5270 5340 0.7260 +5270 5652 0.5520 +5270 5798 0.4380 +5270 6513 0.4230 +5270 6642 0.9230 +5270 6643 0.8650 +5270 6649 0.4450 +5270 6736 0.4230 +5270 6768 0.5640 +5270 7040 0.5690 +5270 7056 0.5030 +5270 7076 0.4530 +5270 7077 0.5550 +5270 7448 0.8030 +5270 7450 0.5390 +5270 7802 0.4440 +5270 8178 0.4240 +5270 8525 0.6020 +5270 8701 0.5410 +5270 8723 0.8950 +5270 8724 0.8330 +5270 8826 0.4040 +5270 8875 0.6190 +5270 8876 0.7700 +5270 9213 0.4190 +5270 9510 0.4110 +5270 9559 0.8430 +5270 9784 0.7850 +5270 10144 0.5800 +5270 10857 0.4310 +5270 11173 0.4060 +5270 23048 0.4310 +5270 23161 0.8140 +5270 23639 0.4460 +5270 26085 0.5220 +5270 27019 0.5090 +5270 27131 0.8840 +5270 29886 0.4290 +5270 29907 0.5730 +5270 43847 0.4120 +5270 51303 0.4190 +5270 51429 0.6430 +5270 51699 0.8940 +5270 54768 0.4800 +5270 54919 0.4350 +5270 55036 0.7470 +5270 55172 0.4490 +5270 55737 0.7350 +5270 55764 0.4200 +5270 56683 0.4200 +5270 58533 0.8390 +5270 59341 0.4430 +5270 64446 0.5440 +5270 81609 0.8010 +5270 85456 0.4700 +5270 85478 0.7900 +5270 89765 0.4790 +5270 92749 0.7040 +5270 93233 0.4340 +5270 115948 0.4020 +5270 123872 0.4730 +5270 161582 0.4030 +5270 202500 0.4180 +5270 221421 0.5290 +5270 284293 0.4910 +5270 339829 0.7550 +5270 345895 0.5710 +5270 352909 0.4790 +5270 388389 0.4470 +5270 440387 0.4900 +5271 5328 0.4730 +5271 5329 0.5880 +5271 5551 0.4270 +5271 6792 0.4670 +5271 10318 0.4590 +5271 51752 0.4220 +5271 64478 0.5350 +5271 125893 0.6290 +5272 5551 0.6820 +5272 6050 0.4280 +5272 6487 0.4920 +5272 7162 0.4160 +5272 7188 0.4330 +5272 79465 0.4550 +5272 91937 0.4990 +5272 93183 0.6760 +5272 643394 0.4200 +5273 6318 0.4530 +5273 6563 0.4060 +5273 7348 0.4010 +5273 10321 0.4420 +5273 10625 0.4020 +5273 27161 0.4040 +5273 92747 0.4720 +5273 254773 0.5210 +5274 5292 0.4220 +5274 5327 0.8740 +5274 5328 0.6350 +5274 5340 0.6710 +5274 5621 0.5780 +5274 5694 0.4120 +5274 6318 0.4670 +5274 6622 0.5450 +5274 10423 0.5010 +5274 10956 0.4340 +5274 11235 0.5590 +5274 128240 0.4680 +5274 255104 0.4140 +5274 284293 0.4840 +5275 5317 0.4410 +5275 5653 0.4920 +5275 6278 0.5580 +5275 6283 0.4780 +5275 6317 0.7790 +5275 6318 0.5280 +5275 6698 0.5120 +5275 6699 0.4960 +5275 6706 0.4580 +5275 6707 0.4860 +5275 7348 0.4230 +5275 8626 0.4260 +5275 9407 0.5170 +5275 9635 0.5440 +5275 11005 0.4440 +5275 25818 0.4560 +5275 26085 0.5210 +5275 43847 0.4570 +5275 92747 0.4840 +5275 163778 0.4530 +5275 204219 0.4590 +5275 286887 0.5030 +5275 353139 0.4150 +5275 374454 0.4340 +5277 5279 0.9990 +5277 5281 0.8490 +5277 5283 0.9990 +5277 5284 0.9910 +5277 5373 0.4680 +5277 5979 0.5130 +5277 7307 0.4160 +5277 7358 0.5630 +5277 8233 0.4420 +5277 8733 0.6790 +5277 8766 0.4440 +5277 8807 0.6220 +5277 8813 0.7430 +5277 8818 0.9990 +5277 8891 0.4620 +5277 8893 0.4660 +5277 8908 0.4060 +5277 9091 0.9990 +5277 9487 0.9910 +5277 9488 0.8110 +5277 9526 0.5170 +5277 9563 0.6660 +5277 10020 0.4910 +5277 10026 0.7760 +5277 10195 0.5540 +5277 10423 0.8400 +5277 10554 0.6610 +5277 10555 0.9120 +5277 22845 0.5000 +5277 23483 0.5050 +5277 23556 0.8960 +5277 23592 0.6170 +5277 27315 0.6910 +5277 29880 0.4560 +5277 29925 0.5090 +5277 29926 0.5000 +5277 29929 0.4270 +5277 51227 0.9990 +5277 51477 0.5010 +5277 51604 0.8400 +5277 54187 0.4100 +5277 54344 0.5430 +5277 54790 0.4180 +5277 54872 0.8760 +5277 55191 0.4090 +5277 55276 0.4330 +5277 55500 0.4350 +5277 55650 0.8110 +5277 57697 0.5250 +5277 58513 0.6060 +5277 63035 0.6720 +5277 64478 0.4070 +5277 64801 0.4140 +5277 64841 0.4310 +5277 79868 0.6360 +5277 80055 0.6760 +5277 80235 0.6370 +5277 84295 0.4050 +5277 84720 0.8120 +5277 84992 0.9990 +5277 90459 0.8040 +5277 93183 0.9350 +5277 93210 0.5830 +5277 94005 0.4160 +5277 171023 0.6970 +5277 283209 0.4120 +5277 284098 0.7100 +5277 374986 0.5600 +5277 100133941 0.5710 +5277 100996939 0.8280 +5279 5283 0.9990 +5279 6714 0.4240 +5279 8674 0.4890 +5279 8733 0.7200 +5279 8799 0.4780 +5279 8813 0.6210 +5279 8818 0.9990 +5279 9091 0.9990 +5279 9487 0.9830 +5279 9488 0.8150 +5279 9526 0.4410 +5279 10026 0.7920 +5279 10423 0.8480 +5279 23215 0.4580 +5279 23556 0.7290 +5279 26052 0.4520 +5279 27315 0.6840 +5279 50999 0.5550 +5279 51003 0.4340 +5279 51227 0.9990 +5279 51603 0.4390 +5279 51604 0.7360 +5279 54344 0.4900 +5279 54872 0.8140 +5279 54965 0.4140 +5279 55650 0.8050 +5279 56052 0.4270 +5279 64801 0.5340 +5279 65258 0.4690 +5279 80055 0.6630 +5279 80235 0.6740 +5279 84720 0.7780 +5279 84992 0.9990 +5279 90459 0.8330 +5279 92346 0.6080 +5279 93183 0.8020 +5279 93210 0.5530 +5279 94005 0.6050 +5279 114803 0.4500 +5279 115209 0.4230 +5279 128869 0.6090 +5279 284098 0.8260 +5279 403313 0.5570 +5279 730159 0.4750 +5279 100996939 0.8390 +5281 5283 0.4100 +5281 8733 0.9160 +5281 8818 0.4530 +5281 9488 0.9350 +5281 10026 0.9420 +5281 22856 0.4120 +5281 23556 0.5060 +5281 51227 0.4070 +5281 51604 0.9320 +5281 54872 0.9360 +5281 79868 0.4360 +5281 84720 0.9370 +5281 90423 0.4700 +5281 94005 0.9210 +5281 128869 0.9110 +5281 140625 0.4090 +5281 388946 0.5600 +5281 440138 0.4430 +5281 100128731 0.4250 +5283 8733 0.7290 +5283 8807 0.4200 +5283 8813 0.6020 +5283 8818 0.9990 +5283 9091 0.9990 +5283 9487 0.9860 +5283 9488 0.8540 +5283 9526 0.5580 +5283 10026 0.7470 +5283 10423 0.8030 +5283 23556 0.7400 +5283 25941 0.5010 +5283 27315 0.6290 +5283 51227 0.9990 +5283 51604 0.7470 +5283 54344 0.5930 +5283 54482 0.4340 +5283 54872 0.8200 +5283 55322 0.4480 +5283 55650 0.8110 +5283 55776 0.5260 +5283 64801 0.5040 +5283 65258 0.4980 +5283 79576 0.4390 +5283 80055 0.5400 +5283 80235 0.6640 +5283 84720 0.7980 +5283 84992 0.9990 +5283 90459 0.6410 +5283 93183 0.8180 +5283 93210 0.5790 +5283 94005 0.4630 +5283 284098 0.7230 +5283 100996939 0.8390 +5284 5304 0.4770 +5284 5724 0.4780 +5284 5865 0.9340 +5284 6401 0.4090 +5284 6402 0.4470 +5284 6440 0.9050 +5284 6590 0.4050 +5284 6850 0.4940 +5284 7032 0.4120 +5284 7033 0.4050 +5284 7037 0.6250 +5284 7047 0.4360 +5284 7099 0.4090 +5284 7124 0.4220 +5284 7163 0.6700 +5284 7165 0.4120 +5284 8766 0.5180 +5284 8857 0.5880 +5284 10577 0.5560 +5284 10673 0.4070 +5284 11272 0.4090 +5284 29071 0.4220 +5284 30816 0.5950 +5284 51056 0.6510 +5284 54453 0.4630 +5284 54923 0.5400 +5284 55276 0.4550 +5284 56913 0.4200 +5284 57050 0.6500 +5284 79003 0.7800 +5284 79368 0.7640 +5284 83416 0.7860 +5284 83417 0.8000 +5284 83953 0.4160 +5284 84569 0.5530 +5284 92747 0.4830 +5284 93183 0.6740 +5284 114569 0.7000 +5284 115350 0.7560 +5284 115352 0.7570 +5284 130120 0.4790 +5284 284340 0.4470 +5284 342898 0.4180 +5284 343413 0.4060 +5284 374986 0.5060 +5284 390714 0.5590 +5284 405754 0.5970 +5284 727897 0.5030 +5284 100423062 0.6500 +5284 102723407 0.9690 +5286 5287 0.9410 +5286 5288 0.9480 +5286 5289 0.6690 +5286 5290 0.7710 +5286 5291 0.7770 +5286 5293 0.7590 +5286 5294 0.6590 +5286 5295 0.9380 +5286 5296 0.9390 +5286 5297 0.9160 +5286 5298 0.9120 +5286 5310 0.4610 +5286 5311 0.4740 +5286 5314 0.5790 +5286 5330 0.6900 +5286 5331 0.6630 +5286 5332 0.6590 +5286 5333 0.7040 +5286 5335 0.7030 +5286 5336 0.6740 +5286 5587 0.4180 +5286 5591 0.5260 +5286 5728 0.9340 +5286 5878 0.5680 +5286 6207 0.6780 +5286 6261 0.4910 +5286 6272 0.5090 +5286 6643 0.5560 +5286 6844 0.4990 +5286 6845 0.5180 +5286 7037 0.5350 +5286 7099 0.4840 +5286 7137 0.5710 +5286 7163 0.5040 +5286 7164 0.4990 +5286 7381 0.5650 +5286 7405 0.6310 +5286 7923 0.4310 +5286 8218 0.5340 +5286 8301 0.9000 +5286 8394 0.9200 +5286 8395 0.9200 +5286 8503 0.9400 +5286 8546 0.5090 +5286 8651 0.5490 +5286 8673 0.5010 +5286 8678 0.6110 +5286 8773 0.5120 +5286 8775 0.5000 +5286 8776 0.7610 +5286 8821 0.9320 +5286 8835 0.5860 +5286 8867 0.9230 +5286 8871 0.9200 +5286 8897 0.7290 +5286 8898 0.7730 +5286 8905 0.5530 +5286 8907 0.5230 +5286 8976 0.6100 +5286 9021 0.5830 +5286 9026 0.5470 +5286 9107 0.6970 +5286 9108 0.6800 +5286 9110 0.7290 +5286 9265 0.6900 +5286 9266 0.6590 +5286 9267 0.6670 +5286 9306 0.5710 +5286 9317 0.5030 +5286 9322 0.5180 +5286 9655 0.5640 +5286 9666 0.6040 +5286 9685 0.8610 +5286 9698 0.5330 +5286 9793 0.4420 +5286 9829 0.6060 +5286 10020 0.5520 +5286 10053 0.5160 +5286 10092 0.5000 +5286 10093 0.5000 +5286 10094 0.5000 +5286 10096 0.5030 +5286 10097 0.5100 +5286 10109 0.5010 +5286 10423 0.9070 +5286 10460 0.5360 +5286 10552 0.5170 +5286 10617 0.6330 +5286 10618 0.5380 +5286 10717 0.5150 +5286 11130 0.4970 +5286 11252 0.5040 +5286 22863 0.6210 +5286 22876 0.9040 +5286 23048 0.5570 +5286 23236 0.6690 +5286 23396 0.9220 +5286 23431 0.5410 +5286 23515 0.4100 +5286 23533 0.7570 +5286 23557 0.5080 +5286 23643 0.4370 +5286 25977 0.5170 +5286 26258 0.5140 +5286 27031 0.5160 +5286 27089 0.4310 +5286 27128 0.6590 +5286 27131 0.5540 +5286 29763 0.5070 +5286 29982 0.4150 +5286 29993 0.4990 +5286 30837 0.5460 +5286 30849 0.7260 +5286 51196 0.6900 +5286 51429 0.8010 +5286 54861 0.5790 +5286 54874 0.5350 +5286 54885 0.5170 +5286 55300 0.9290 +5286 55330 0.4990 +5286 55361 0.9310 +5286 55613 0.6770 +5286 55624 0.4350 +5286 55697 0.5920 +5286 56623 0.9140 +5286 57559 0.6260 +5286 57569 0.4100 +5286 64419 0.6800 +5286 79154 0.4700 +5286 81567 0.5170 +5286 84062 0.4990 +5286 84174 0.5420 +5286 84706 0.6240 +5286 84812 0.6890 +5286 89869 0.6600 +5286 112574 0.7300 +5286 113026 0.6530 +5286 114757 0.5490 +5286 122809 0.6040 +5286 130340 0.5290 +5286 138429 0.9070 +5286 146850 0.6870 +5286 170302 0.4200 +5286 192668 0.5180 +5286 200576 0.9420 +5286 257364 0.6950 +5286 284086 0.7960 +5286 286451 0.5410 +5286 388552 0.4990 +5286 441925 0.5400 +5286 110117498 0.5630 +5287 5288 0.9670 +5287 5289 0.7250 +5287 5290 0.7800 +5287 5291 0.7710 +5287 5293 0.6380 +5287 5294 0.6470 +5287 5295 0.9530 +5287 5296 0.9520 +5287 5297 0.9150 +5287 5298 0.9170 +5287 5330 0.6740 +5287 5331 0.6610 +5287 5332 0.6840 +5287 5333 0.6970 +5287 5335 0.7300 +5287 5336 0.7000 +5287 5580 0.4530 +5287 5728 0.9410 +5287 5987 0.5200 +5287 6453 0.7200 +5287 6464 0.4030 +5287 6654 0.6470 +5287 7405 0.6160 +5287 7534 0.4650 +5287 8394 0.9210 +5287 8395 0.9080 +5287 8503 0.9480 +5287 8651 0.5620 +5287 8678 0.5970 +5287 8776 0.7630 +5287 8821 0.9350 +5287 8835 0.5650 +5287 8867 0.9190 +5287 8871 0.9240 +5287 8897 0.7230 +5287 8898 0.7970 +5287 9021 0.5610 +5287 9107 0.7980 +5287 9108 0.6830 +5287 9110 0.7230 +5287 9265 0.6970 +5287 9266 0.6660 +5287 9267 0.6670 +5287 9306 0.5700 +5287 9524 0.8940 +5287 9655 0.5500 +5287 9846 0.4010 +5287 10006 0.4510 +5287 10423 0.9140 +5287 22863 0.6000 +5287 22876 0.9100 +5287 23236 0.6850 +5287 23396 0.9260 +5287 23533 0.7820 +5287 23607 0.4140 +5287 26751 0.5250 +5287 27128 0.6610 +5287 30837 0.5460 +5287 30849 0.7450 +5287 50618 0.6850 +5287 51196 0.7050 +5287 51429 0.7640 +5287 55224 0.4480 +5287 55300 0.9190 +5287 55361 0.9160 +5287 55500 0.4300 +5287 55613 0.6770 +5287 55697 0.5660 +5287 56623 0.9120 +5287 64419 0.7010 +5287 83889 0.4140 +5287 84174 0.5420 +5287 84812 0.6530 +5287 89869 0.6600 +5287 112574 0.6830 +5287 113026 0.6640 +5287 122809 0.5590 +5287 127845 0.5030 +5287 138429 0.9170 +5287 146850 0.7460 +5287 200576 0.9290 +5287 257364 0.6830 +5287 441925 0.5510 +5287 110117498 0.5630 +5288 5289 0.6470 +5288 5290 0.7650 +5288 5291 0.7580 +5288 5293 0.6390 +5288 5294 0.6540 +5288 5295 0.9430 +5288 5296 0.9480 +5288 5297 0.9110 +5288 5298 0.9130 +5288 5330 0.6500 +5288 5331 0.6500 +5288 5332 0.6720 +5288 5333 0.6690 +5288 5335 0.7040 +5288 5336 0.6850 +5288 5728 0.9380 +5288 7006 0.4090 +5288 7405 0.5780 +5288 8394 0.9200 +5288 8395 0.9230 +5288 8503 0.9450 +5288 8651 0.5590 +5288 8678 0.5800 +5288 8776 0.7270 +5288 8821 0.9390 +5288 8835 0.5870 +5288 8867 0.9170 +5288 8871 0.9200 +5288 8897 0.7150 +5288 8898 0.7460 +5288 9021 0.5870 +5288 9107 0.7050 +5288 9108 0.7070 +5288 9110 0.7710 +5288 9265 0.6780 +5288 9266 0.6590 +5288 9267 0.6590 +5288 9306 0.5650 +5288 9655 0.5620 +5288 10423 0.9000 +5288 22863 0.5900 +5288 22876 0.9000 +5288 23236 0.6580 +5288 23396 0.9240 +5288 23533 0.7960 +5288 27128 0.6590 +5288 30837 0.5460 +5288 30849 0.7740 +5288 51179 0.4180 +5288 51196 0.7100 +5288 51429 0.7690 +5288 55300 0.9210 +5288 55361 0.9120 +5288 55613 0.7150 +5288 55697 0.5490 +5288 56623 0.9030 +5288 64419 0.6510 +5288 79785 0.4370 +5288 81553 0.4110 +5288 84174 0.5420 +5288 84812 0.6530 +5288 89869 0.7190 +5288 112574 0.6960 +5288 113026 0.6530 +5288 122809 0.5720 +5288 138429 0.9070 +5288 146850 0.7210 +5288 200576 0.9260 +5288 257364 0.7030 +5288 441925 0.5570 +5288 110117498 0.5630 +5289 5290 0.7270 +5289 5291 0.8130 +5289 5293 0.6660 +5289 5294 0.7000 +5289 5295 0.9550 +5289 5296 0.9330 +5289 5297 0.9270 +5289 5298 0.9380 +5289 5305 0.5730 +5289 5330 0.6500 +5289 5331 0.6550 +5289 5332 0.6500 +5289 5333 0.7060 +5289 5335 0.6780 +5289 5336 0.6650 +5289 5337 0.6970 +5289 5562 0.7080 +5289 5563 0.6800 +5289 5564 0.6410 +5289 5565 0.5770 +5289 5571 0.6140 +5289 5599 0.6840 +5289 5610 0.5180 +5289 5710 0.7030 +5289 5728 0.9530 +5289 5781 0.5740 +5289 5867 0.4230 +5289 5868 0.9990 +5289 5869 0.9390 +5289 5877 0.4690 +5289 5878 0.9410 +5289 5921 0.4540 +5289 6009 0.7740 +5289 6198 0.6140 +5289 6199 0.4090 +5289 6305 0.5800 +5289 6504 0.7450 +5289 6642 0.5050 +5289 6643 0.4200 +5289 6794 0.4810 +5289 7030 0.4240 +5289 7157 0.5440 +5289 7189 0.6480 +5289 7248 0.4800 +5289 7249 0.6410 +5289 7251 0.4140 +5289 7405 0.9990 +5289 7534 0.4470 +5289 7879 0.5120 +5289 7942 0.6520 +5289 7957 0.4280 +5289 8074 0.4990 +5289 8237 0.4980 +5289 8408 0.9990 +5289 8411 0.9670 +5289 8417 0.4540 +5289 8452 0.6560 +5289 8491 0.4780 +5289 8503 0.9330 +5289 8615 0.5390 +5289 8651 0.5630 +5289 8655 0.5570 +5289 8660 0.5780 +5289 8673 0.6480 +5289 8678 0.9990 +5289 8723 0.4420 +5289 8766 0.5130 +5289 8776 0.7510 +5289 8817 0.5470 +5289 8821 0.9270 +5289 8822 0.5290 +5289 8823 0.5310 +5289 8835 0.5640 +5289 8878 0.8120 +5289 8887 0.4580 +5289 8897 0.8560 +5289 8898 0.9310 +5289 8975 0.5070 +5289 9021 0.5540 +5289 9077 0.6610 +5289 9107 0.8340 +5289 9108 0.8200 +5289 9110 0.8190 +5289 9135 0.4460 +5289 9140 0.9690 +5289 9146 0.6200 +5289 9191 0.6500 +5289 9306 0.5670 +5289 9342 0.6940 +5289 9365 0.5130 +5289 9367 0.5020 +5289 9392 0.5240 +5289 9474 0.9720 +5289 9528 0.4260 +5289 9559 0.5090 +5289 9655 0.5620 +5289 9706 0.9970 +5289 9711 0.9970 +5289 9776 0.9850 +5289 9817 0.7210 +5289 9821 0.9890 +5289 9842 0.5170 +5289 9846 0.5010 +5289 9896 0.9510 +5289 9927 0.4370 +5289 9965 0.4990 +5289 10013 0.4060 +5289 10059 0.4690 +5289 10133 0.5610 +5289 10155 0.4010 +5289 10190 0.7000 +5289 10241 0.6170 +5289 10325 0.4540 +5289 10399 0.5970 +5289 10423 0.9880 +5289 10490 0.4670 +5289 10533 0.9270 +5289 10645 0.4500 +5289 10652 0.4790 +5289 10670 0.4630 +5289 10818 0.5730 +5289 10869 0.4080 +5289 10871 0.7800 +5289 10989 0.5230 +5289 11152 0.6150 +5289 11311 0.5700 +5289 11337 0.9910 +5289 11345 0.9840 +5289 22863 0.9990 +5289 22876 0.9130 +5289 22926 0.4310 +5289 23001 0.4680 +5289 23130 0.6680 +5289 23192 0.7950 +5289 23236 0.6620 +5289 23338 0.4310 +5289 23339 0.6400 +5289 23355 0.4320 +5289 23411 0.4300 +5289 23533 0.8130 +5289 23604 0.5110 +5289 23645 0.4380 +5289 23710 0.9840 +5289 25851 0.4170 +5289 25989 0.7860 +5289 26100 0.9710 +5289 26281 0.5280 +5289 27006 0.5290 +5289 27243 0.4190 +5289 27252 0.6490 +5289 29062 0.6270 +5289 29110 0.4460 +5289 29886 0.6940 +5289 29982 0.9990 +5289 30837 0.5630 +5289 30849 0.9990 +5289 51024 0.4060 +5289 51028 0.4020 +5289 51100 0.9150 +5289 51160 0.4990 +5289 51196 0.6710 +5289 51422 0.6090 +5289 51479 0.4280 +5289 51622 0.6210 +5289 51655 0.5140 +5289 51699 0.7000 +5289 51744 0.4420 +5289 51806 0.9760 +5289 53349 0.8650 +5289 53632 0.5710 +5289 53917 0.4660 +5289 54106 0.5940 +5289 54205 0.4460 +5289 54545 0.6980 +5289 54675 0.7180 +5289 54734 0.4210 +5289 54764 0.5710 +5289 55014 0.7850 +5289 55054 0.9290 +5289 55062 0.9020 +5289 55102 0.6220 +5289 55201 0.7010 +5289 55300 0.9310 +5289 55332 0.4770 +5289 55357 0.4290 +5289 55361 0.9380 +5289 55613 0.8060 +5289 55614 0.4880 +5289 55626 0.9990 +5289 55697 0.7750 +5289 55737 0.8420 +5289 55770 0.5690 +5289 55823 0.6750 +5289 56270 0.5290 +5289 56853 0.6820 +5289 57120 0.6780 +5289 57192 0.4330 +5289 57418 0.4980 +5289 57521 0.7460 +5289 57617 0.6560 +5289 57724 0.6020 +5289 58528 0.4350 +5289 60673 0.9890 +5289 64121 0.4670 +5289 64145 0.7570 +5289 64223 0.5610 +5289 64419 0.7790 +5289 64422 0.9330 +5289 64601 0.5910 +5289 65018 0.6830 +5289 65082 0.6500 +5289 66036 0.4280 +5289 79065 0.8240 +5289 79443 0.5140 +5289 80183 0.6390 +5289 80205 0.4310 +5289 81037 0.5000 +5289 81631 0.8700 +5289 81671 0.9190 +5289 83460 0.5420 +5289 83734 0.8480 +5289 84174 0.5470 +5289 84315 0.5580 +5289 84335 0.4520 +5289 84557 0.8330 +5289 84812 0.6680 +5289 84938 0.7170 +5289 84961 0.4770 +5289 84971 0.6890 +5289 89849 0.5850 +5289 89869 0.6680 +5289 91860 0.9750 +5289 113026 0.6680 +5289 115201 0.6910 +5289 118813 0.4680 +5289 120103 0.4160 +5289 122809 0.5730 +5289 124997 0.7080 +5289 128338 0.4980 +5289 139341 0.4740 +5289 140432 0.4260 +5289 140735 0.5190 +5289 140901 0.7020 +5289 146850 0.6250 +5289 149371 0.7310 +5289 149420 0.7040 +5289 152559 0.4930 +5289 152831 0.4990 +5289 163688 0.9750 +5289 200576 0.9800 +5289 221960 0.6020 +5289 253260 0.4840 +5289 255738 0.4090 +5289 285973 0.7510 +5289 345611 0.5390 +5289 440738 0.8370 +5289 441925 0.9990 +5289 644139 0.6110 +5289 110117498 0.5400 +5290 5291 0.9980 +5290 5293 0.9980 +5290 5294 0.9970 +5290 5295 0.9990 +5290 5296 0.9990 +5290 5305 0.9250 +5290 5321 0.4180 +5290 5330 0.6880 +5290 5331 0.7050 +5290 5332 0.7030 +5290 5333 0.6930 +5290 5335 0.9730 +5290 5336 0.9280 +5290 5338 0.5480 +5290 5341 0.5870 +5290 5347 0.4250 +5290 5395 0.7120 +5290 5424 0.4160 +5290 5426 0.6640 +5290 5468 0.5470 +5290 5518 0.7730 +5290 5530 0.4410 +5290 5532 0.5350 +5290 5578 0.6400 +5290 5579 0.5510 +5290 5580 0.9180 +5290 5584 0.9520 +5290 5590 0.9250 +5290 5591 0.5590 +5290 5594 0.8220 +5290 5595 0.5970 +5290 5599 0.6150 +5290 5604 0.8440 +5290 5605 0.4840 +5290 5606 0.5350 +5290 5623 0.4990 +5290 5727 0.5110 +5290 5728 0.9950 +5290 5747 0.9700 +5290 5764 0.5180 +5290 5777 0.9200 +5290 5781 0.9900 +5290 5788 0.4570 +5290 5789 0.4360 +5290 5879 0.7470 +5290 5880 0.9470 +5290 5881 0.9410 +5290 5889 0.4180 +5290 5894 0.9720 +5290 5898 0.4050 +5290 5900 0.6410 +5290 5906 0.9480 +5290 5908 0.9290 +5290 5921 0.7020 +5290 5925 0.4780 +5290 5970 0.5370 +5290 5979 0.8910 +5290 6009 0.5130 +5290 6091 0.4370 +5290 6093 0.6100 +5290 6098 0.7350 +5290 6194 0.4830 +5290 6195 0.5830 +5290 6197 0.4440 +5290 6198 0.7160 +5290 6199 0.5380 +5290 6237 0.9970 +5290 6416 0.6230 +5290 6446 0.6290 +5290 6464 0.6370 +5290 6597 0.5090 +5290 6598 0.5830 +5290 6615 0.4050 +5290 6624 0.4650 +5290 6654 0.9260 +5290 6655 0.8600 +5290 6657 0.5060 +5290 6711 0.6960 +5290 6714 0.9840 +5290 6772 0.7400 +5290 6774 0.8590 +5290 6790 0.5050 +5290 6794 0.8440 +5290 6801 0.5950 +5290 6850 0.9350 +5290 7010 0.6910 +5290 7015 0.6750 +5290 7037 0.4920 +5290 7039 0.6000 +5290 7046 0.6350 +5290 7048 0.5150 +5290 7067 0.9010 +5290 7068 0.9080 +5290 7074 0.7270 +5290 7080 0.4180 +5290 7099 0.9280 +5290 7112 0.4460 +5290 7132 0.6450 +5290 7157 0.9410 +5290 7161 0.5510 +5290 7186 0.9050 +5290 7187 0.4040 +5290 7189 0.7150 +5290 7248 0.4430 +5290 7249 0.6870 +5290 7273 0.5460 +5290 7294 0.9140 +5290 7297 0.7260 +5290 7305 0.5530 +5290 7403 0.5650 +5290 7405 0.6420 +5290 7409 0.9500 +5290 7410 0.9180 +5290 7462 0.5130 +5290 7525 0.6600 +5290 7534 0.7590 +5290 7535 0.9200 +5290 7750 0.5420 +5290 7764 0.4150 +5290 7837 0.4790 +5290 7849 0.4740 +5290 7852 0.4660 +5290 7879 0.4290 +5290 7905 0.4330 +5290 8030 0.4020 +5290 8074 0.4400 +5290 8085 0.6640 +5290 8216 0.5800 +5290 8241 0.4020 +5290 8289 0.9130 +5290 8312 0.4110 +5290 8314 0.5060 +5290 8356 0.4060 +5290 8394 0.9340 +5290 8395 0.9240 +5290 8396 0.9240 +5290 8405 0.5230 +5290 8452 0.4960 +5290 8471 0.9720 +5290 8473 0.9070 +5290 8493 0.4380 +5290 8503 0.9990 +5290 8563 0.4990 +5290 8626 0.6740 +5290 8651 0.6860 +5290 8660 0.9840 +5290 8678 0.6960 +5290 8805 0.5930 +5290 8817 0.5550 +5290 8821 0.6500 +5290 8822 0.5550 +5290 8823 0.5630 +5290 8826 0.5230 +5290 8831 0.4120 +5290 8835 0.5890 +5290 8867 0.7040 +5290 8871 0.6910 +5290 8874 0.9160 +5290 8878 0.4870 +5290 8900 0.5450 +5290 9021 0.6320 +5290 9047 0.5060 +5290 9048 0.5070 +5290 9077 0.5810 +5290 9208 0.5110 +5290 9212 0.4750 +5290 9265 0.7700 +5290 9266 0.7270 +5290 9267 0.6620 +5290 9306 0.6010 +5290 9321 0.5130 +5290 9341 0.4610 +5290 9365 0.4230 +5290 9368 0.4340 +5290 9402 0.5390 +5290 9414 0.4230 +5290 9448 0.4420 +5290 9451 0.4080 +5290 9530 0.7080 +5290 9542 0.4740 +5290 9630 0.5570 +5290 9651 0.6600 +5290 9655 0.6770 +5290 9681 0.4330 +5290 9710 0.4020 +5290 9815 0.4640 +5290 9817 0.4800 +5290 9846 0.9270 +5290 9965 0.6230 +5290 9968 0.4480 +5290 10000 0.9840 +5290 10006 0.4710 +5290 10013 0.6270 +5290 10018 0.4610 +5290 10152 0.4440 +5290 10163 0.4350 +5290 10298 0.5250 +5290 10413 0.4650 +5290 10451 0.9200 +5290 10460 0.4340 +5290 10681 0.6590 +5290 10718 0.4250 +5290 10735 0.5290 +5290 10746 0.4490 +5290 10787 0.4300 +5290 10818 0.6130 +5290 10870 0.9020 +5290 10989 0.5730 +5290 11052 0.5340 +5290 11064 0.5380 +5290 11116 0.5140 +5290 11140 0.5430 +5290 11160 0.5540 +5290 11186 0.4210 +5290 11200 0.5160 +5290 22800 0.9880 +5290 22808 0.9960 +5290 22863 0.6760 +5290 22914 0.5760 +5290 23007 0.6520 +5290 23075 0.4120 +5290 23191 0.4280 +5290 23236 0.7040 +5290 23239 0.4090 +5290 23308 0.5190 +5290 23327 0.4090 +5290 23345 0.5160 +5290 23396 0.9290 +5290 23411 0.4800 +5290 23533 0.9990 +5290 23551 0.5580 +5290 23607 0.5070 +5290 23678 0.5180 +5290 25894 0.4210 +5290 26030 0.4150 +5290 26050 0.4190 +5290 26060 0.7350 +5290 26127 0.6990 +5290 26281 0.5570 +5290 26499 0.5880 +5290 27006 0.5520 +5290 27040 0.4990 +5290 27128 0.6710 +5290 27436 0.9600 +5290 28964 0.4570 +5290 29072 0.5640 +5290 29126 0.6920 +5290 29760 0.5920 +5290 29851 0.9170 +5290 29982 0.4260 +5290 30837 0.5580 +5290 30849 0.7200 +5290 50506 0.4090 +5290 50852 0.4390 +5290 51196 0.7080 +5290 51297 0.4640 +5290 51347 0.4220 +5290 51429 0.7570 +5290 51537 0.4400 +5290 51755 0.5330 +5290 51764 0.6500 +5290 51806 0.5180 +5290 53353 0.5810 +5290 54106 0.5710 +5290 54165 0.4190 +5290 54209 0.5090 +5290 54331 0.7580 +5290 54474 0.4180 +5290 54776 0.5520 +5290 54894 0.5840 +5290 55004 0.4460 +5290 55193 0.6410 +5290 55243 0.5070 +5290 55294 0.8570 +5290 55315 0.4260 +5290 55529 0.9000 +5290 55697 0.5870 +5290 55789 0.4100 +5290 55914 0.4880 +5290 55970 0.6650 +5290 55971 0.4740 +5290 56623 0.6690 +5290 56980 0.4140 +5290 57111 0.4250 +5290 57418 0.4640 +5290 57492 0.5300 +5290 57509 0.4380 +5290 57521 0.5410 +5290 57580 0.9250 +5290 58508 0.6760 +5290 59345 0.8100 +5290 64096 0.4990 +5290 64324 0.4650 +5290 79633 0.5100 +5290 79718 0.4150 +5290 79728 0.5270 +5290 79755 0.4300 +5290 79837 0.9230 +5290 80243 0.5800 +5290 80380 0.4740 +5290 81839 0.4110 +5290 84174 0.5650 +5290 84231 0.4640 +5290 84335 0.5460 +5290 84634 0.9000 +5290 84812 0.6520 +5290 84868 0.4070 +5290 89869 0.6520 +5290 90809 0.9000 +5290 91860 0.5170 +5290 94025 0.5710 +5290 94235 0.6540 +5290 112574 0.6560 +5290 113026 0.6520 +5290 113791 0.5350 +5290 114788 0.5710 +5290 116986 0.4430 +5290 118788 0.9180 +5290 120114 0.4160 +5290 122809 0.6310 +5290 137902 0.4790 +5290 138429 0.9220 +5290 139285 0.5280 +5290 139716 0.5190 +5290 143098 0.4080 +5290 146433 0.4990 +5290 146850 0.9240 +5290 152831 0.4100 +5290 163688 0.5170 +5290 196528 0.5620 +5290 200576 0.5550 +5290 253260 0.7920 +5290 255324 0.4650 +5290 257364 0.6500 +5290 390714 0.4990 +5290 399687 0.6570 +5290 441925 0.5880 +5290 110117498 0.7490 +5290 110117499 0.6670 +5291 5293 0.9980 +5291 5294 0.9970 +5291 5295 0.9990 +5291 5296 0.9990 +5291 5305 0.9280 +5291 5321 0.4460 +5291 5330 0.7080 +5291 5331 0.7020 +5291 5332 0.6700 +5291 5333 0.7090 +5291 5335 0.9240 +5291 5336 0.9380 +5291 5341 0.6080 +5291 5530 0.4690 +5291 5532 0.4440 +5291 5533 0.4090 +5291 5580 0.9660 +5291 5584 0.9170 +5291 5590 0.9280 +5291 5594 0.6180 +5291 5595 0.6400 +5291 5599 0.5540 +5291 5604 0.4130 +5291 5623 0.4990 +5291 5728 0.9840 +5291 5743 0.4470 +5291 5747 0.9300 +5291 5764 0.4990 +5291 5777 0.9190 +5291 5781 0.9340 +5291 5868 0.9640 +5291 5879 0.6260 +5291 5880 0.9650 +5291 5881 0.9570 +5291 5894 0.9390 +5291 5906 0.9270 +5291 5908 0.9600 +5291 5921 0.5330 +5291 5979 0.6500 +5291 6009 0.4560 +5291 6093 0.4370 +5291 6198 0.5950 +5291 6199 0.4600 +5291 6237 0.9440 +5291 6446 0.5740 +5291 6464 0.6310 +5291 6624 0.4180 +5291 6654 0.7070 +5291 6714 0.9670 +5291 6772 0.6110 +5291 6774 0.6670 +5291 6850 0.9380 +5291 7010 0.5860 +5291 7048 0.5790 +5291 7067 0.9000 +5291 7068 0.9070 +5291 7074 0.7190 +5291 7099 0.9240 +5291 7157 0.4760 +5291 7186 0.9050 +5291 7189 0.5750 +5291 7249 0.5100 +5291 7294 0.9160 +5291 7297 0.7090 +5291 7305 0.5710 +5291 7405 0.6540 +5291 7409 0.9290 +5291 7410 0.9540 +5291 7462 0.5130 +5291 7525 0.5570 +5291 7534 0.5610 +5291 7535 0.9210 +5291 8394 0.9370 +5291 8395 0.9330 +5291 8396 0.9250 +5291 8471 0.9650 +5291 8473 0.9050 +5291 8503 0.9990 +5291 8517 0.4520 +5291 8563 0.5010 +5291 8651 0.6080 +5291 8660 0.9470 +5291 8678 0.7890 +5291 8801 0.5260 +5291 8817 0.4590 +5291 8821 0.5260 +5291 8822 0.4530 +5291 8823 0.4680 +5291 8835 0.5910 +5291 8867 0.7080 +5291 8871 0.7090 +5291 8874 0.9630 +5291 9021 0.6220 +5291 9047 0.5210 +5291 9048 0.4990 +5291 9077 0.9170 +5291 9265 0.7360 +5291 9266 0.6650 +5291 9267 0.6720 +5291 9306 0.6390 +5291 9365 0.4310 +5291 9402 0.5330 +5291 9651 0.6600 +5291 9655 0.6190 +5291 9846 0.9660 +5291 9965 0.4330 +5291 10000 0.9640 +5291 10451 0.9240 +5291 10681 0.6580 +5291 10818 0.4790 +5291 10870 0.9130 +5291 10989 0.8460 +5291 22800 0.8280 +5291 22808 0.9610 +5291 22863 0.8220 +5291 22914 0.5590 +5291 23007 0.6550 +5291 23236 0.7170 +5291 23396 0.9340 +5291 23533 0.9990 +5291 23607 0.7140 +5291 23678 0.4030 +5291 26060 0.5510 +5291 26281 0.4640 +5291 26499 0.6090 +5291 27006 0.4570 +5291 27040 0.5260 +5291 27128 0.6710 +5291 27436 0.9140 +5291 28964 0.4530 +5291 29760 0.5870 +5291 29851 0.9170 +5291 29982 0.4240 +5291 30837 0.5670 +5291 30849 0.8640 +5291 50852 0.4020 +5291 51196 0.6770 +5291 51206 0.7760 +5291 51429 0.6890 +5291 51537 0.6500 +5291 51764 0.6600 +5291 54106 0.5620 +5291 54209 0.5180 +5291 54331 0.6890 +5291 54769 0.8500 +5291 54776 0.6790 +5291 55243 0.5070 +5291 55529 0.9000 +5291 55697 0.5870 +5291 55970 0.6710 +5291 56623 0.6660 +5291 57418 0.4950 +5291 57521 0.4680 +5291 57580 0.9300 +5291 59345 0.6560 +5291 64096 0.4990 +5291 79837 0.9220 +5291 80232 0.4180 +5291 84174 0.5650 +5291 84335 0.4650 +5291 84634 0.9020 +5291 84812 0.6520 +5291 89869 0.6530 +5291 90809 0.9000 +5291 94235 0.6500 +5291 112574 0.6500 +5291 113026 0.6570 +5291 118788 0.9200 +5291 122809 0.5810 +5291 138429 0.9250 +5291 139716 0.5110 +5291 146433 0.4990 +5291 146850 0.9420 +5291 148252 0.9560 +5291 152831 0.4200 +5291 253260 0.7050 +5291 257364 0.6500 +5291 390714 0.4990 +5291 441925 0.5810 +5291 110117498 0.7490 +5291 110117499 0.4890 +5292 5451 0.4500 +5292 5510 0.5640 +5292 6095 0.4250 +5292 6097 0.4140 +5292 6657 0.4270 +5292 6774 0.7330 +5292 6776 0.8330 +5292 6777 0.8210 +5292 6778 0.5550 +5292 7291 0.4450 +5292 7371 0.5180 +5292 8651 0.5670 +5292 10423 0.9140 +5292 10538 0.4830 +5292 11040 0.9240 +5292 26094 0.4360 +5292 51135 0.4190 +5292 51643 0.5040 +5292 55802 0.8490 +5292 57379 0.4040 +5292 58533 0.5270 +5292 79923 0.4060 +5292 80153 0.8430 +5292 196513 0.8340 +5293 5294 0.9940 +5293 5295 0.9990 +5293 5296 0.9990 +5293 5305 0.9240 +5293 5330 0.7430 +5293 5331 0.7020 +5293 5332 0.6600 +5293 5333 0.6750 +5293 5335 0.9270 +5293 5336 0.9740 +5293 5341 0.6450 +5293 5579 0.6290 +5293 5580 0.9230 +5293 5584 0.9080 +5293 5587 0.6120 +5293 5590 0.9160 +5293 5623 0.4990 +5293 5728 0.9730 +5293 5747 0.9240 +5293 5777 0.9260 +5293 5781 0.9310 +5293 5788 0.4760 +5293 5880 0.9570 +5293 5881 0.9330 +5293 5894 0.9320 +5293 5906 0.9220 +5293 5908 0.9250 +5293 5979 0.6080 +5293 6009 0.4160 +5293 6198 0.5570 +5293 6199 0.4390 +5293 6237 0.9970 +5293 6402 0.4350 +5293 6464 0.5520 +5293 6654 0.6320 +5293 6714 0.9670 +5293 6774 0.4210 +5293 6850 0.9760 +5293 7040 0.4470 +5293 7067 0.9000 +5293 7068 0.9000 +5293 7074 0.6830 +5293 7099 0.9340 +5293 7124 0.4310 +5293 7157 0.4620 +5293 7186 0.9050 +5293 7249 0.4600 +5293 7294 0.9230 +5293 7297 0.7600 +5293 7405 0.6160 +5293 7409 0.9450 +5293 7410 0.9170 +5293 7412 0.4790 +5293 7525 0.5440 +5293 7534 0.5170 +5293 7535 0.9440 +5293 7852 0.5100 +5293 8394 0.9480 +5293 8395 0.9230 +5293 8396 0.9210 +5293 8471 0.9190 +5293 8473 0.9020 +5293 8503 0.9990 +5293 8536 0.4290 +5293 8651 0.6130 +5293 8660 0.9320 +5293 8678 0.6180 +5293 8835 0.5580 +5293 8867 0.6920 +5293 8871 0.7060 +5293 8874 0.9550 +5293 9021 0.6000 +5293 9048 0.4990 +5293 9265 0.7080 +5293 9266 0.6590 +5293 9267 0.6930 +5293 9306 0.5750 +5293 9651 0.6630 +5293 9655 0.5600 +5293 9846 0.9140 +5293 10000 0.9500 +5293 10451 0.9180 +5293 10673 0.4770 +5293 10681 0.6540 +5293 10725 0.4260 +5293 10870 0.9210 +5293 10989 0.8030 +5293 22800 0.9890 +5293 22808 0.9540 +5293 22863 0.6520 +5293 23007 0.6520 +5293 23035 0.4690 +5293 23236 0.6830 +5293 23396 0.9420 +5293 23533 0.9990 +5293 26499 0.6100 +5293 27071 0.6170 +5293 27128 0.7230 +5293 27436 0.9090 +5293 29126 0.4020 +5293 29760 0.8190 +5293 29851 0.9440 +5293 30011 0.5670 +5293 30837 0.5580 +5293 30849 0.7100 +5293 51196 0.6600 +5293 51429 0.6600 +5293 51764 0.6500 +5293 54331 0.6600 +5293 54776 0.8230 +5293 55529 0.9000 +5293 55697 0.5620 +5293 55970 0.6500 +5293 56623 0.6660 +5293 57118 0.4860 +5293 57418 0.4350 +5293 57521 0.4440 +5293 57580 0.9270 +5293 59345 0.6540 +5293 64096 0.4990 +5293 79837 0.9160 +5293 84174 0.5760 +5293 84335 0.4020 +5293 84433 0.4680 +5293 84634 0.9000 +5293 84812 0.6520 +5293 89869 0.6520 +5293 90809 0.9020 +5293 94235 0.6620 +5293 112574 0.6550 +5293 113026 0.6520 +5293 118788 0.9180 +5293 122809 0.5600 +5293 138429 0.9400 +5293 146850 0.9450 +5293 253260 0.5000 +5293 257364 0.6500 +5293 390714 0.4990 +5293 441925 0.5750 +5293 100287171 0.4760 +5293 102723407 0.5070 +5293 110117498 0.7490 +5293 110117499 0.4890 +5294 5295 0.9990 +5294 5296 0.9990 +5294 5305 0.9300 +5294 5330 0.8330 +5294 5331 0.7700 +5294 5332 0.6880 +5294 5333 0.6780 +5294 5335 0.7500 +5294 5336 0.8080 +5294 5341 0.7760 +5294 5468 0.5330 +5294 5566 0.5000 +5294 5567 0.5240 +5294 5568 0.4990 +5294 5579 0.6130 +5294 5590 0.9270 +5294 5594 0.4390 +5294 5595 0.4820 +5294 5604 0.6480 +5294 5605 0.4830 +5294 5727 0.4660 +5294 5728 0.8360 +5294 5742 0.4240 +5294 5743 0.5570 +5294 5747 0.9280 +5294 5781 0.7550 +5294 5788 0.5560 +5294 5880 0.5330 +5294 5894 0.6390 +5294 5900 0.6370 +5294 5908 0.4090 +5294 6198 0.6570 +5294 6237 0.9780 +5294 6464 0.7610 +5294 6654 0.4060 +5294 6714 0.9660 +5294 6772 0.6370 +5294 6774 0.7100 +5294 6850 0.8820 +5294 7096 0.4140 +5294 7099 0.4420 +5294 7124 0.6200 +5294 7157 0.5320 +5294 7249 0.4610 +5294 7294 0.5250 +5294 7405 0.6550 +5294 7409 0.7760 +5294 7410 0.6150 +5294 7456 0.5810 +5294 7525 0.5590 +5294 7852 0.5360 +5294 8394 0.9320 +5294 8395 0.9280 +5294 8396 0.9290 +5294 8471 0.9440 +5294 8503 0.9990 +5294 8563 0.5040 +5294 8600 0.4780 +5294 8651 0.6340 +5294 8660 0.9380 +5294 8678 0.9210 +5294 8801 0.7690 +5294 8835 0.5970 +5294 8867 0.7040 +5294 8871 0.6950 +5294 8874 0.4560 +5294 9021 0.6420 +5294 9170 0.6600 +5294 9265 0.7200 +5294 9266 0.6690 +5294 9267 0.6910 +5294 9306 0.5960 +5294 9402 0.6090 +5294 9651 0.7000 +5294 9655 0.5710 +5294 9734 0.4700 +5294 9846 0.5640 +5294 10000 0.9730 +5294 10161 0.6620 +5294 10298 0.4820 +5294 10320 0.5970 +5294 10411 0.5350 +5294 10451 0.6340 +5294 10561 0.4020 +5294 10672 0.9410 +5294 10681 0.6980 +5294 10989 0.9920 +5294 11156 0.4770 +5294 22798 0.5490 +5294 22800 0.9780 +5294 22863 0.7770 +5294 23007 0.6520 +5294 23236 0.7390 +5294 23396 0.9340 +5294 23533 0.9990 +5294 23566 0.6660 +5294 26191 0.4130 +5294 26499 0.7260 +5294 27128 0.7180 +5294 29126 0.4480 +5294 29982 0.4260 +5294 30837 0.5680 +5294 30849 0.7500 +5294 51196 0.6890 +5294 51206 0.7240 +5294 51272 0.4140 +5294 51429 0.6500 +5294 51537 0.4240 +5294 51764 0.6520 +5294 54331 0.8470 +5294 54776 0.9910 +5294 55697 0.5510 +5294 55970 0.6560 +5294 56623 0.6560 +5294 57121 0.6710 +5294 57418 0.4350 +5294 57521 0.4310 +5294 57580 0.6330 +5294 57698 0.5180 +5294 59345 0.6880 +5294 64407 0.4130 +5294 79837 0.9260 +5294 80243 0.4480 +5294 84174 0.5740 +5294 84812 0.6720 +5294 89869 0.6870 +5294 94235 0.6670 +5294 112574 0.6500 +5294 113026 0.6540 +5294 117584 0.4920 +5294 122809 0.5680 +5294 138429 0.9190 +5294 139716 0.5540 +5294 146433 0.5430 +5294 146850 0.9990 +5294 253260 0.4960 +5294 257364 0.6500 +5294 375033 0.4830 +5294 440275 0.4500 +5294 441925 0.5980 +5294 653361 0.5860 +5294 110117498 0.7490 +5294 110117499 0.4860 +5295 5296 0.9990 +5295 5297 0.9240 +5295 5298 0.9250 +5295 5305 0.9210 +5295 5330 0.6870 +5295 5331 0.6690 +5295 5332 0.6940 +5295 5333 0.6880 +5295 5335 0.9670 +5295 5336 0.9790 +5295 5338 0.4160 +5295 5341 0.4840 +5295 5426 0.5140 +5295 5443 0.4710 +5295 5465 0.5230 +5295 5495 0.5090 +5295 5506 0.5890 +5295 5518 0.5200 +5295 5573 0.6170 +5295 5579 0.5150 +5295 5580 0.9340 +5295 5584 0.9190 +5295 5590 0.9330 +5295 5594 0.6590 +5295 5595 0.4880 +5295 5599 0.6830 +5295 5600 0.4640 +5295 5601 0.4790 +5295 5604 0.5010 +5295 5623 0.4990 +5295 5728 0.9970 +5295 5747 0.9880 +5295 5764 0.5540 +5295 5770 0.5600 +5295 5777 0.9710 +5295 5781 0.9960 +5295 5795 0.5150 +5295 5829 0.7670 +5295 5868 0.7920 +5295 5879 0.7940 +5295 5880 0.9340 +5295 5881 0.9100 +5295 5894 0.9440 +5295 5903 0.5370 +5295 5906 0.9200 +5295 5908 0.9120 +5295 5914 0.6410 +5295 5917 0.4760 +5295 5921 0.4430 +5295 5979 0.8980 +5295 5996 0.4510 +5295 6009 0.4020 +5295 6098 0.5460 +5295 6198 0.5840 +5295 6237 0.9270 +5295 6238 0.5050 +5295 6256 0.4750 +5295 6288 0.5000 +5295 6300 0.4390 +5295 6347 0.4630 +5295 6389 0.4110 +5295 6416 0.4370 +5295 6453 0.4540 +5295 6464 0.9710 +5295 6517 0.4470 +5295 6597 0.5500 +5295 6622 0.4200 +5295 6624 0.4430 +5295 6654 0.9270 +5295 6655 0.4210 +5295 6696 0.7730 +5295 6711 0.4130 +5295 6714 0.9980 +5295 6737 0.4050 +5295 6752 0.4330 +5295 6772 0.7430 +5295 6774 0.9180 +5295 6776 0.5800 +5295 6777 0.6090 +5295 6778 0.5880 +5295 6794 0.4390 +5295 6801 0.4350 +5295 6850 0.9800 +5295 6926 0.4560 +5295 7010 0.7350 +5295 7015 0.4160 +5295 7037 0.4750 +5295 7039 0.4980 +5295 7040 0.4850 +5295 7046 0.8060 +5295 7048 0.7720 +5295 7067 0.9560 +5295 7068 0.9660 +5295 7074 0.7300 +5295 7088 0.6630 +5295 7089 0.6560 +5295 7090 0.4950 +5295 7097 0.6410 +5295 7098 0.5740 +5295 7099 0.9250 +5295 7112 0.4390 +5295 7132 0.6440 +5295 7157 0.8530 +5295 7170 0.4950 +5295 7171 0.4190 +5295 7175 0.5110 +5295 7186 0.9070 +5295 7189 0.6510 +5295 7249 0.5240 +5295 7253 0.4170 +5295 7294 0.9270 +5295 7297 0.7160 +5295 7301 0.5490 +5295 7305 0.5700 +5295 7405 0.5850 +5295 7409 0.9800 +5295 7410 0.9100 +5295 7414 0.5600 +5295 7417 0.4070 +5295 7423 0.4720 +5295 7431 0.6810 +5295 7450 0.5690 +5295 7454 0.7460 +5295 7462 0.4990 +5295 7494 0.8020 +5295 7525 0.7070 +5295 7531 0.6400 +5295 7534 0.9610 +5295 7535 0.9490 +5295 7750 0.5490 +5295 7879 0.4360 +5295 8030 0.4290 +5295 8038 0.7900 +5295 8153 0.5540 +5295 8289 0.5820 +5295 8394 0.9260 +5295 8395 0.9190 +5295 8396 0.9110 +5295 8405 0.4210 +5295 8452 0.4370 +5295 8471 0.9890 +5295 8473 0.9080 +5295 8477 0.4280 +5295 8496 0.5320 +5295 8503 0.9970 +5295 8563 0.5010 +5295 8570 0.4120 +5295 8651 0.8190 +5295 8660 0.9980 +5295 8678 0.6420 +5295 8776 0.6520 +5295 8805 0.5320 +5295 8817 0.5000 +5295 8821 0.9490 +5295 8822 0.5010 +5295 8823 0.4970 +5295 8826 0.4980 +5295 8835 0.5740 +5295 8842 0.5510 +5295 8867 0.6830 +5295 8871 0.7030 +5295 8878 0.6740 +5295 8897 0.6750 +5295 8898 0.6790 +5295 8976 0.6850 +5295 9021 0.6620 +5295 9047 0.7320 +5295 9048 0.4990 +5295 9107 0.6590 +5295 9108 0.6500 +5295 9110 0.6500 +5295 9208 0.5060 +5295 9306 0.7090 +5295 9321 0.5200 +5295 9341 0.4050 +5295 9365 0.4470 +5295 9402 0.8170 +5295 9451 0.6170 +5295 9474 0.4480 +5295 9530 0.7080 +5295 9542 0.4330 +5295 9564 0.6680 +5295 9630 0.5380 +5295 9648 0.5090 +5295 9655 0.6250 +5295 9815 0.4180 +5295 9817 0.5120 +5295 9846 0.9960 +5295 9908 0.4150 +5295 9965 0.4730 +5295 10000 0.9770 +5295 10006 0.5020 +5295 10152 0.4260 +5295 10163 0.5180 +5295 10240 0.4340 +5295 10298 0.8000 +5295 10342 0.5290 +5295 10399 0.6400 +5295 10423 0.9040 +5295 10451 0.9330 +5295 10587 0.4280 +5295 10657 0.8540 +5295 10681 0.6770 +5295 10718 0.4110 +5295 10787 0.4420 +5295 10818 0.5020 +5295 10870 0.9510 +5295 11052 0.5000 +5295 11064 0.5040 +5295 11116 0.5310 +5295 11140 0.5140 +5295 11160 0.5000 +5295 11188 0.6130 +5295 22800 0.7940 +5295 22808 0.9190 +5295 22863 0.5760 +5295 22872 0.5060 +5295 22876 0.9000 +5295 22914 0.5710 +5295 23075 0.4210 +5295 23191 0.4350 +5295 23236 0.7310 +5295 23308 0.5540 +5295 23396 0.9250 +5295 23405 0.5120 +5295 23411 0.4560 +5295 23414 0.9610 +5295 23512 0.4360 +5295 23533 0.9660 +5295 23607 0.5340 +5295 23769 0.6000 +5295 25827 0.5780 +5295 26060 0.6830 +5295 26127 0.5070 +5295 26281 0.4950 +5295 26499 0.4750 +5295 27006 0.4940 +5295 27040 0.8220 +5295 27071 0.5270 +5295 27289 0.5800 +5295 27436 0.9170 +5295 28964 0.4060 +5295 29117 0.8530 +5295 29760 0.7580 +5295 29851 0.9760 +5295 29907 0.4160 +5295 29984 0.4650 +5295 29998 0.4110 +5295 30011 0.8570 +5295 30837 0.5660 +5295 30849 0.6700 +5295 50852 0.5900 +5295 50855 0.4130 +5295 51176 0.4600 +5295 51196 0.6670 +5295 51206 0.5700 +5295 51347 0.4350 +5295 51366 0.4230 +5295 51429 0.7590 +5295 51729 0.4190 +5295 51764 0.6500 +5295 53335 0.5410 +5295 53358 0.4160 +5295 54106 0.5560 +5295 54209 0.5220 +5295 54331 0.6910 +5295 54509 0.4900 +5295 54545 0.4420 +5295 54900 0.4020 +5295 55004 0.4220 +5295 55243 0.5090 +5295 55294 0.5540 +5295 55300 0.9160 +5295 55361 0.9140 +5295 55529 0.9000 +5295 55613 0.6500 +5295 55697 0.5450 +5295 55704 0.4510 +5295 55789 0.4100 +5295 55845 0.4010 +5295 55914 0.4600 +5295 55970 0.6700 +5295 55971 0.4480 +5295 56034 0.4250 +5295 56623 0.6790 +5295 56924 0.4960 +5295 57381 0.4650 +5295 57448 0.5340 +5295 57521 0.4120 +5295 57580 0.9160 +5295 57624 0.4410 +5295 58480 0.6030 +5295 58508 0.4490 +5295 59345 0.7930 +5295 64096 0.4990 +5295 64419 0.6510 +5295 79602 0.4480 +5295 79837 0.9130 +5295 80304 0.4990 +5295 81624 0.4050 +5295 81839 0.4160 +5295 84174 0.5870 +5295 84445 0.4730 +5295 84632 0.5500 +5295 84634 0.9360 +5295 84812 0.6550 +5295 84868 0.5590 +5295 89869 0.6520 +5295 90809 0.9000 +5295 94235 0.6500 +5295 113026 0.7430 +5295 116986 0.4470 +5295 118788 0.9580 +5295 122809 0.6020 +5295 139716 0.5170 +5295 143098 0.4130 +5295 146433 0.5000 +5295 146850 0.9370 +5295 152831 0.4050 +5295 171177 0.5740 +5295 196528 0.4720 +5295 200576 0.9170 +5295 219670 0.6230 +5295 253260 0.4720 +5295 387129 0.4200 +5295 390714 0.4990 +5295 399687 0.5570 +5295 441925 0.5540 +5295 653361 0.4790 +5295 728378 0.4160 +5295 100506658 0.4840 +5295 110117498 0.5400 +5295 110117499 0.4740 +5296 5297 0.9250 +5296 5298 0.9290 +5296 5305 0.9230 +5296 5330 0.6680 +5296 5331 0.6780 +5296 5332 0.6810 +5296 5333 0.6590 +5296 5335 0.9260 +5296 5336 0.9100 +5296 5338 0.4400 +5296 5341 0.4690 +5296 5431 0.4330 +5296 5537 0.4730 +5296 5580 0.9160 +5296 5584 0.9160 +5296 5590 0.9140 +5296 5595 0.4090 +5296 5599 0.4860 +5296 5623 0.4990 +5296 5728 0.9850 +5296 5747 0.9340 +5296 5764 0.5050 +5296 5777 0.9120 +5296 5781 0.9600 +5296 5795 0.4430 +5296 5867 0.4670 +5296 5879 0.5120 +5296 5880 0.9210 +5296 5881 0.9170 +5296 5894 0.9250 +5296 5906 0.9120 +5296 5908 0.9080 +5296 5921 0.5030 +5296 5979 0.7820 +5296 6198 0.4380 +5296 6237 0.9140 +5296 6464 0.7310 +5296 6654 0.6130 +5296 6714 0.9590 +5296 6721 0.4110 +5296 6737 0.5460 +5296 6774 0.7240 +5296 6794 0.4420 +5296 6801 0.4010 +5296 6850 0.9640 +5296 7010 0.6040 +5296 7037 0.4250 +5296 7046 0.4210 +5296 7048 0.7890 +5296 7067 0.9170 +5296 7068 0.9110 +5296 7074 0.6850 +5296 7099 0.9120 +5296 7112 0.4390 +5296 7186 0.9050 +5296 7189 0.5900 +5296 7249 0.5010 +5296 7294 0.9090 +5296 7297 0.6940 +5296 7305 0.5260 +5296 7405 0.5640 +5296 7409 0.9090 +5296 7410 0.9130 +5296 7442 0.4480 +5296 7462 0.4990 +5296 7494 0.9360 +5296 7525 0.5540 +5296 7534 0.6050 +5296 7535 0.9520 +5296 7702 0.4190 +5296 7879 0.4190 +5296 7965 0.4430 +5296 8074 0.4020 +5296 8153 0.5560 +5296 8394 0.9250 +5296 8395 0.9130 +5296 8396 0.9150 +5296 8471 0.9860 +5296 8473 0.9020 +5296 8503 0.9990 +5296 8651 0.6670 +5296 8660 0.9810 +5296 8678 0.6170 +5296 8776 0.6640 +5296 8817 0.4850 +5296 8821 0.9570 +5296 8822 0.4790 +5296 8823 0.4740 +5296 8826 0.4990 +5296 8835 0.5540 +5296 8867 0.6720 +5296 8871 0.6750 +5296 8897 0.6570 +5296 8898 0.7010 +5296 9021 0.5860 +5296 9047 0.5140 +5296 9048 0.4990 +5296 9101 0.7520 +5296 9107 0.6620 +5296 9108 0.6500 +5296 9110 0.6560 +5296 9306 0.7020 +5296 9402 0.5860 +5296 9630 0.5170 +5296 9655 0.6810 +5296 9695 0.5380 +5296 9815 0.4080 +5296 9846 0.9730 +5296 10000 0.9670 +5296 10006 0.4570 +5296 10152 0.4260 +5296 10163 0.4450 +5296 10298 0.4990 +5296 10423 0.9090 +5296 10451 0.9070 +5296 10454 0.4440 +5296 10681 0.6640 +5296 10787 0.4220 +5296 10818 0.4430 +5296 10870 0.9430 +5296 10898 0.6400 +5296 10989 0.4780 +5296 11135 0.4130 +5296 11188 0.6090 +5296 22800 0.7340 +5296 22808 0.9030 +5296 22863 0.5610 +5296 22876 0.9000 +5296 22914 0.5220 +5296 22926 0.4150 +5296 23191 0.4300 +5296 23236 0.6930 +5296 23308 0.4990 +5296 23396 0.9280 +5296 23405 0.4090 +5296 23513 0.4200 +5296 23533 0.9800 +5296 23580 0.4130 +5296 23607 0.5240 +5296 23769 0.5480 +5296 25827 0.8730 +5296 25894 0.4050 +5296 26030 0.4050 +5296 26060 0.4170 +5296 26281 0.4750 +5296 26499 0.4810 +5296 27006 0.4750 +5296 27040 0.5010 +5296 27289 0.5800 +5296 27436 0.9080 +5296 28964 0.4370 +5296 29117 0.6470 +5296 29760 0.5550 +5296 29851 0.9150 +5296 29984 0.4870 +5296 30837 0.5520 +5296 30849 0.6940 +5296 50852 0.4400 +5296 50855 0.4150 +5296 51162 0.5600 +5296 51196 0.6820 +5296 51206 0.5100 +5296 51347 0.4130 +5296 51435 0.4020 +5296 51764 0.6500 +5296 54106 0.5150 +5296 54209 0.5110 +5296 54331 0.6500 +5296 54509 0.4840 +5296 54850 0.4390 +5296 55004 0.4290 +5296 55243 0.5080 +5296 55300 0.9210 +5296 55361 0.9280 +5296 55529 0.9010 +5296 55613 0.6680 +5296 55697 0.5700 +5296 55845 0.4050 +5296 55914 0.4060 +5296 55970 0.6500 +5296 55971 0.4090 +5296 56623 0.6990 +5296 57381 0.4710 +5296 57489 0.4330 +5296 57580 0.9080 +5296 58480 0.6060 +5296 59345 0.6500 +5296 64096 0.5040 +5296 64419 0.6650 +5296 79837 0.9240 +5296 81624 0.4050 +5296 81839 0.4160 +5296 84174 0.5670 +5296 84634 0.9000 +5296 84812 0.6650 +5296 89869 0.6500 +5296 90809 0.9000 +5296 94235 0.6500 +5296 113026 0.6520 +5296 118788 0.9230 +5296 120939 0.4510 +5296 122809 0.5860 +5296 143098 0.4010 +5296 146850 0.9450 +5296 161742 0.8110 +5296 168620 0.5440 +5296 200576 0.9140 +5296 390714 0.4990 +5296 441925 0.5510 +5296 110117498 0.5400 +5297 5298 0.9690 +5297 5305 0.6360 +5297 5330 0.6920 +5297 5331 0.6690 +5297 5332 0.6690 +5297 5333 0.7510 +5297 5335 0.6950 +5297 5336 0.6760 +5297 5341 0.5600 +5297 5478 0.6220 +5297 5728 0.9160 +5297 6545 0.5280 +5297 6812 0.4360 +5297 6857 0.4040 +5297 7625 0.5310 +5297 8216 0.6620 +5297 8394 0.9600 +5297 8395 0.9580 +5297 8396 0.5420 +5297 8503 0.9180 +5297 8618 0.4930 +5297 8729 0.4610 +5297 8766 0.4990 +5297 8776 0.6770 +5297 8867 0.7920 +5297 8871 0.8500 +5297 8897 0.6910 +5297 8898 0.7110 +5297 9107 0.7130 +5297 9108 0.6830 +5297 9110 0.7290 +5297 9145 0.4820 +5297 9217 0.6080 +5297 9218 0.7030 +5297 9342 0.7410 +5297 9600 0.4310 +5297 9896 0.4090 +5297 10087 0.4500 +5297 10423 0.9760 +5297 10618 0.4260 +5297 22876 0.9120 +5297 22979 0.8390 +5297 23167 0.8690 +5297 23236 0.7170 +5297 23396 0.9660 +5297 23413 0.5830 +5297 23541 0.5280 +5297 26499 0.5560 +5297 26873 0.4350 +5297 29801 0.4400 +5297 51196 0.6970 +5297 51586 0.4340 +5297 54584 0.5070 +5297 54675 0.5490 +5297 55300 0.9760 +5297 55361 0.9760 +5297 55613 0.6790 +5297 55697 0.4310 +5297 55852 0.4930 +5297 56180 0.4180 +5297 56623 0.7570 +5297 57217 0.8850 +5297 63891 0.4430 +5297 64419 0.6670 +5297 64598 0.4180 +5297 64746 0.4580 +5297 65977 0.4180 +5297 79763 0.4380 +5297 79837 0.5510 +5297 80764 0.6850 +5297 84668 0.9590 +5297 84812 0.6920 +5297 84861 0.4380 +5297 85359 0.4040 +5297 85376 0.4020 +5297 89869 0.6830 +5297 91179 0.4080 +5297 91750 0.4070 +5297 113026 0.6830 +5297 114879 0.5600 +5297 114882 0.5320 +5297 129303 0.4920 +5297 130813 0.4200 +5297 138429 0.9370 +5297 145567 0.9910 +5297 150209 0.5310 +5297 200576 0.9560 +5297 255738 0.6270 +5297 284611 0.4060 +5297 285172 0.6050 +5297 387755 0.4060 +5297 387893 0.5990 +5297 399665 0.4060 +5298 5305 0.6990 +5298 5330 0.6680 +5298 5331 0.6810 +5298 5332 0.6530 +5298 5333 0.7730 +5298 5335 0.6960 +5298 5336 0.6680 +5298 5587 0.6160 +5298 5728 0.9140 +5298 5862 0.4150 +5298 5867 0.4060 +5298 5877 0.5210 +5298 5957 0.7880 +5298 6517 0.4300 +5298 6642 0.4700 +5298 7447 0.8850 +5298 7529 0.7660 +5298 7531 0.4670 +5298 7532 0.8660 +5298 7533 0.5720 +5298 7534 0.5480 +5298 8372 0.4160 +5298 8394 0.9710 +5298 8395 0.9640 +5298 8396 0.6890 +5298 8503 0.9230 +5298 8548 0.5710 +5298 8618 0.8140 +5298 8729 0.7420 +5298 8766 0.9980 +5298 8776 0.7420 +5298 8867 0.7730 +5298 8871 0.7550 +5298 8897 0.7100 +5298 8898 0.7220 +5298 9107 0.7050 +5298 9108 0.6770 +5298 9110 0.7320 +5298 9218 0.5580 +5298 9219 0.4200 +5298 9230 0.9260 +5298 9478 0.4470 +5298 9600 0.5000 +5298 9626 0.4880 +5298 9632 0.5380 +5298 9640 0.4370 +5298 9727 0.8030 +5298 9776 0.4310 +5298 9777 0.4360 +5298 9807 0.4930 +5298 9810 0.6300 +5298 10087 0.6600 +5298 10421 0.4300 +5298 10423 0.9910 +5298 10564 0.4190 +5298 10565 0.4410 +5298 10618 0.4950 +5298 10971 0.7460 +5298 11141 0.6760 +5298 11158 0.6480 +5298 11159 0.6450 +5298 22876 0.9020 +5298 22979 0.4880 +5298 23011 0.4200 +5298 23062 0.4550 +5298 23163 0.5170 +5298 23167 0.4770 +5298 23236 0.6760 +5298 23381 0.4290 +5298 23396 0.9720 +5298 23413 0.9920 +5298 23644 0.4710 +5298 23683 0.6210 +5298 23760 0.4530 +5298 23762 0.4270 +5298 25771 0.4910 +5298 25865 0.6200 +5298 26225 0.4780 +5298 30818 0.5150 +5298 30819 0.4950 +5298 30820 0.5210 +5298 51196 0.7350 +5298 51440 0.6380 +5298 51552 0.4400 +5298 51763 0.4440 +5298 54675 0.7490 +5298 55204 0.5550 +5298 55300 0.9830 +5298 55361 0.9780 +5298 55613 0.6890 +5298 55633 0.4280 +5298 56623 0.7510 +5298 56895 0.4630 +5298 57111 0.6870 +5298 57217 0.5750 +5298 57410 0.4530 +5298 57805 0.4500 +5298 60626 0.4560 +5298 64083 0.6010 +5298 64419 0.7200 +5298 64689 0.4090 +5298 64746 0.9960 +5298 64747 0.5380 +5298 65977 0.6200 +5298 79065 0.5630 +5298 79591 0.9250 +5298 79645 0.4880 +5298 79837 0.7270 +5298 80117 0.4200 +5298 80333 0.4880 +5298 80831 0.4140 +5298 81876 0.4380 +5298 83698 0.5220 +5298 83988 0.6380 +5298 84440 0.4950 +5298 84725 0.7180 +5298 84812 0.6920 +5298 89869 0.7060 +5298 113026 0.6880 +5298 114879 0.5680 +5298 114882 0.5470 +5298 114883 0.5280 +5298 114884 0.4660 +5298 114885 0.5390 +5298 115761 0.4770 +5298 116143 0.4880 +5298 117177 0.4690 +5298 138429 0.9460 +5298 145567 0.5310 +5298 151742 0.4780 +5298 164633 0.5720 +5298 200576 0.9610 +5298 201299 0.6190 +5298 221079 0.4210 +5298 284611 0.4910 +5298 387755 0.4950 +5298 399665 0.5090 +5298 399687 0.4190 +5298 400668 0.4850 +5300 5303 0.5580 +5300 5305 0.6050 +5300 5315 0.5560 +5300 5347 0.8210 +5300 5371 0.8360 +5300 5431 0.4250 +5300 5478 0.5290 +5300 5515 0.4430 +5300 5578 0.4280 +5300 5579 0.4260 +5300 5580 0.4210 +5300 5590 0.4160 +5300 5894 0.6860 +5300 5914 0.4020 +5300 6737 0.4530 +5300 6829 0.6940 +5300 6923 0.4140 +5300 7157 0.9460 +5300 7284 0.4130 +5300 7465 0.4650 +5300 7726 0.5010 +5300 8192 0.6900 +5300 8312 0.4040 +5300 8396 0.5260 +5300 8468 0.4210 +5300 8558 0.6330 +5300 8812 0.4070 +5300 8841 0.4210 +5300 9088 0.4130 +5300 9150 0.5370 +5300 9612 0.7320 +5300 9636 0.5610 +5300 10243 0.5950 +5300 10616 0.4520 +5300 23469 0.4880 +5300 23479 0.4470 +5300 25813 0.5210 +5300 27247 0.4170 +5300 28996 0.9650 +5300 29101 0.5520 +5300 29114 0.4450 +5300 29934 0.4160 +5300 51527 0.4050 +5300 51585 0.4470 +5300 55010 0.4100 +5300 55294 0.6630 +5300 55572 0.4610 +5300 58490 0.4370 +5300 64506 0.5610 +5300 79837 0.5270 +5300 81570 0.4020 +5300 83985 0.5370 +5300 85313 0.4250 +5300 90853 0.4280 +5300 94056 0.7770 +5300 94241 0.4990 +5300 286827 0.6100 +5300 386677 0.4240 +5300 642489 0.6950 +5300 653361 0.8000 +5300 654364 0.4180 +5303 5347 0.5550 +5303 5481 0.4160 +5303 6223 0.5530 +5303 6636 0.4120 +5303 6742 0.4830 +5303 6902 0.4970 +5303 7013 0.4270 +5303 7284 0.4080 +5303 7407 0.4120 +5303 8192 0.4620 +5303 8228 0.4310 +5303 8856 0.5420 +5303 9360 0.5540 +5303 9997 0.4080 +5303 10243 0.5350 +5303 10460 0.4080 +5303 22944 0.6300 +5303 23479 0.4740 +5303 23600 0.4730 +5303 25813 0.5020 +5303 26517 0.4130 +5303 26521 0.5000 +5303 27247 0.4370 +5303 29085 0.4090 +5303 51060 0.4110 +5303 51218 0.5410 +5303 51360 0.4830 +5303 51363 0.5270 +5303 51645 0.4490 +5303 55841 0.4340 +5303 55967 0.4140 +5303 57599 0.8190 +5303 81570 0.4330 +5303 84300 0.4610 +5303 118487 0.4570 +5303 139596 0.4160 +5303 286451 0.4700 +5303 347475 0.4150 +5303 642489 0.4050 +5304 6280 0.5210 +5304 6281 0.5060 +5304 6406 0.5700 +5304 6407 0.5210 +5304 6779 0.4390 +5304 6855 0.4800 +5304 7038 0.4220 +5304 7047 0.4640 +5304 7080 0.5820 +5304 7157 0.4150 +5304 7490 0.4790 +5304 7849 0.5820 +5304 9476 0.5920 +5304 9567 0.5420 +5304 10647 0.4700 +5304 10648 0.4480 +5304 11272 0.5560 +5304 27020 0.4240 +5304 51206 0.7060 +5304 54474 0.8400 +5304 58503 0.5150 +5304 84569 0.6630 +5304 90070 0.5780 +5304 117159 0.5680 +5304 118430 0.5640 +5304 124220 0.4320 +5304 140683 0.6400 +5304 253017 0.4770 +5304 400566 0.8100 +5305 5330 0.7380 +5305 5331 0.7360 +5305 5332 0.7050 +5305 5333 0.8180 +5305 5335 0.7380 +5305 5336 0.7220 +5305 5728 0.9570 +5305 5962 0.4230 +5305 6046 0.6270 +5305 6093 0.9030 +5305 6651 0.6420 +5305 7094 0.7200 +5305 7145 0.4590 +5305 7414 0.9110 +5305 8019 0.6380 +5305 8178 0.4340 +5305 8394 0.9350 +5305 8395 0.9210 +5305 8396 0.9730 +5305 8503 0.9280 +5305 8776 0.7830 +5305 8867 0.9400 +5305 8871 0.9300 +5305 8897 0.7570 +5305 8898 0.7510 +5305 9107 0.6740 +5305 9108 0.6620 +5305 9110 0.7250 +5305 9406 0.5920 +5305 9475 0.9030 +5305 9651 0.7330 +5305 10320 0.5630 +5305 10768 0.4050 +5305 10914 0.7990 +5305 11317 0.4270 +5305 22936 0.6220 +5305 23007 0.7340 +5305 23236 0.7580 +5305 23396 0.9260 +5305 23476 0.6850 +5305 23480 0.6080 +5305 25793 0.4230 +5305 51196 0.7330 +5305 51329 0.6270 +5305 55300 0.4690 +5305 55361 0.6910 +5305 55437 0.4640 +5305 55529 0.9490 +5305 55613 0.6500 +5305 55840 0.6100 +5305 56623 0.9270 +5305 56903 0.6370 +5305 64077 0.5950 +5305 64419 0.7440 +5305 64852 0.8220 +5305 64895 0.6910 +5305 79837 0.9730 +5305 80237 0.6070 +5305 83660 0.7290 +5305 84159 0.7000 +5305 84812 0.7400 +5305 85403 0.5090 +5305 85477 0.9080 +5305 89869 0.7460 +5305 90809 0.9410 +5305 113026 0.8430 +5305 138429 0.9280 +5305 148362 0.4200 +5305 200576 0.9430 +5305 256297 0.6130 +5305 100532731 0.5330 +5306 5335 0.5580 +5306 5961 0.4220 +5306 6342 0.4910 +5306 6632 0.4060 +5306 6775 0.7500 +5306 7531 0.9010 +5306 8394 0.4080 +5306 8578 0.8580 +5306 9218 0.4980 +5306 9423 0.7000 +5306 10087 0.4410 +5306 10423 0.5200 +5306 10482 0.5940 +5306 23300 0.4060 +5306 23760 0.6380 +5306 26207 0.4020 +5306 29928 0.7680 +5306 51763 0.4080 +5306 58488 0.4210 +5306 83394 0.9340 +5306 83693 0.5790 +5306 132001 0.4240 +5306 286753 0.8170 +5306 399687 0.4470 +5306 727857 0.8340 +5307 5351 0.4330 +5307 5443 0.6010 +5307 5449 0.8450 +5307 5617 0.4050 +5307 6399 0.6100 +5307 6469 0.4240 +5307 6495 0.4770 +5307 6657 0.6070 +5307 6658 0.4120 +5307 6662 0.4140 +5307 6899 0.4920 +5307 6909 0.5710 +5307 6910 0.8150 +5307 6911 0.5830 +5307 6926 0.6120 +5307 7252 0.4480 +5307 7546 0.4030 +5307 7700 0.4160 +5307 8022 0.6760 +5307 8200 0.4890 +5307 8437 0.4590 +5307 8626 0.6300 +5307 8861 0.4540 +5307 8883 0.4700 +5307 9095 0.8850 +5307 9496 0.9230 +5307 10078 0.4010 +5307 10120 0.5120 +5307 10121 0.4880 +5307 10127 0.4340 +5307 10716 0.4470 +5307 10746 0.4770 +5307 11030 0.6300 +5307 54796 0.4230 +5307 54819 0.5700 +5307 57167 0.4820 +5307 89884 0.6500 +5307 121340 0.4270 +5307 145282 0.6520 +5307 347732 0.4300 +5307 392255 0.4310 +5307 448831 0.4180 +5307 100288687 0.4060 +5308 5309 0.8200 +5308 5351 0.4360 +5308 5396 0.4740 +5308 5449 0.7750 +5308 5617 0.5140 +5308 5915 0.4130 +5308 6299 0.4280 +5308 6331 0.4150 +5308 6469 0.7790 +5308 6495 0.6810 +5308 6496 0.6640 +5308 6657 0.5030 +5308 6658 0.4040 +5308 6662 0.6010 +5308 6899 0.6720 +5308 6909 0.5030 +5308 6910 0.7480 +5308 6926 0.6040 +5308 6943 0.4510 +5308 6997 0.5510 +5308 7022 0.5930 +5308 7026 0.4460 +5308 7044 0.9220 +5308 7472 0.4330 +5308 7474 0.5560 +5308 7475 0.4410 +5308 7481 0.4140 +5308 7482 0.4440 +5308 7545 0.5530 +5308 7547 0.6940 +5308 7706 0.6010 +5308 8019 0.4060 +5308 8022 0.7160 +5308 8701 0.5140 +5308 8823 0.5670 +5308 8928 0.4940 +5308 9096 0.4600 +5308 9148 0.4260 +5308 9242 0.4330 +5308 9464 0.6490 +5308 9496 0.6180 +5308 9592 0.4610 +5308 9734 0.4390 +5308 10021 0.7580 +5308 10100 0.4180 +5308 10120 0.4560 +5308 10121 0.4760 +5308 10370 0.6430 +5308 10637 0.8730 +5308 10736 0.5520 +5308 10768 0.6160 +5308 10969 0.5240 +5308 11091 0.5920 +5308 23382 0.4670 +5308 23767 0.4070 +5308 25914 0.5330 +5308 27022 0.6220 +5308 27123 0.4270 +5308 27130 0.4100 +5308 27302 0.5570 +5308 50805 0.4250 +5308 51176 0.7760 +5308 54361 0.4230 +5308 55366 0.6040 +5308 55553 0.4750 +5308 55997 0.6110 +5308 57057 0.4960 +5308 57167 0.4870 +5308 64321 0.4300 +5308 79190 0.4280 +5308 79191 0.4840 +5308 79933 0.4830 +5308 81669 0.4450 +5308 89884 0.5860 +5308 90506 0.4390 +5308 94234 0.4800 +5308 116039 0.7700 +5308 145173 0.5130 +5308 145282 0.6570 +5308 157506 0.4600 +5308 168667 0.4560 +5308 199699 0.5380 +5308 221037 0.4550 +5309 5351 0.4480 +5309 5454 0.6200 +5309 6469 0.5860 +5309 6496 0.4830 +5309 6531 0.6690 +5309 6571 0.7000 +5309 6622 0.5110 +5309 6656 0.5110 +5309 6657 0.4710 +5309 7054 0.7970 +5309 7057 0.4530 +5309 7471 0.6300 +5309 8013 0.4850 +5309 8022 0.4790 +5309 8419 0.8780 +5309 10763 0.4500 +5309 11315 0.5260 +5309 23186 0.4590 +5309 23424 0.4210 +5309 23621 0.4330 +5309 63973 0.6490 +5309 121340 0.4150 +5309 128866 0.5070 +5309 145173 0.4480 +5309 283953 0.4900 +5310 5311 0.9990 +5310 5314 0.9690 +5310 5327 0.7120 +5310 5587 0.8930 +5310 5589 0.7740 +5310 5747 0.7300 +5310 5829 0.5380 +5310 5909 0.4430 +5310 6000 0.6090 +5310 6010 0.7380 +5310 6194 0.4100 +5310 6198 0.4390 +5310 6261 0.4930 +5310 6262 0.4640 +5310 6608 0.4290 +5310 6714 0.4920 +5310 6717 0.4650 +5310 6753 0.4490 +5310 6772 0.4020 +5310 6778 0.6260 +5310 6794 0.5600 +5310 6928 0.4160 +5310 7094 0.4860 +5310 7220 0.9020 +5310 7222 0.4900 +5310 7223 0.8030 +5310 7224 0.4070 +5310 7225 0.4890 +5310 7226 0.4920 +5310 7248 0.7890 +5310 7249 0.9510 +5310 7289 0.5340 +5310 7442 0.5450 +5310 7483 0.4840 +5310 8100 0.8160 +5310 8481 0.5160 +5310 8766 0.6020 +5310 8989 0.5160 +5310 9024 0.5470 +5310 9033 0.7160 +5310 9709 0.4410 +5310 9727 0.5640 +5310 9734 0.5170 +5310 9742 0.4100 +5310 9759 0.4600 +5310 9780 0.6490 +5310 10399 0.4100 +5310 10640 0.6260 +5310 11127 0.7320 +5310 11231 0.6840 +5310 11252 0.5340 +5310 11336 0.5570 +5310 23193 0.6150 +5310 23265 0.5600 +5310 27031 0.6610 +5310 27039 0.5230 +5310 27130 0.5630 +5310 50807 0.6320 +5310 51393 0.4960 +5310 51726 0.4180 +5310 54461 0.4050 +5310 54536 0.5580 +5310 54795 0.5460 +5310 54822 0.4860 +5310 55212 0.4100 +5310 55283 0.4460 +5310 55503 0.4530 +5310 55763 0.5140 +5310 55770 0.5140 +5310 56302 0.4710 +5310 57192 0.5890 +5310 59341 0.8720 +5310 60412 0.5870 +5310 79053 0.4460 +5310 79054 0.4840 +5310 80036 0.4590 +5310 80184 0.4150 +5310 90410 0.5760 +5310 91754 0.7050 +5310 117177 0.6610 +5310 124401 0.5320 +5310 140609 0.4410 +5310 140803 0.4590 +5310 149371 0.5170 +5310 162514 0.4100 +5310 168507 0.4040 +5310 192668 0.6370 +5310 200894 0.5110 +5310 203286 0.4190 +5310 261734 0.6840 +5310 284086 0.7610 +5310 342372 0.5210 +5311 5314 0.9830 +5311 5566 0.6310 +5311 5567 0.6330 +5311 5568 0.6320 +5311 5587 0.8300 +5311 5589 0.8930 +5311 6010 0.6860 +5311 6261 0.5120 +5311 6262 0.5100 +5311 6608 0.4880 +5311 6753 0.5190 +5311 6786 0.4110 +5311 7168 0.4830 +5311 7220 0.9970 +5311 7222 0.5790 +5311 7223 0.7340 +5311 7224 0.8040 +5311 7226 0.5530 +5311 7289 0.4360 +5311 7442 0.5850 +5311 8100 0.8230 +5311 8481 0.4920 +5311 8678 0.5920 +5311 8766 0.6400 +5311 9321 0.4020 +5311 9371 0.4360 +5311 9495 0.4490 +5311 9709 0.4550 +5311 9727 0.5610 +5311 9742 0.5700 +5311 9780 0.5350 +5311 10133 0.5530 +5311 10134 0.5680 +5311 10438 0.4020 +5311 10456 0.5680 +5311 10618 0.4230 +5311 10640 0.8920 +5311 11020 0.5770 +5311 11127 0.8580 +5311 11231 0.6290 +5311 11336 0.6800 +5311 23193 0.5680 +5311 23241 0.7900 +5311 23265 0.5590 +5311 23322 0.4550 +5311 23557 0.4270 +5311 26160 0.6150 +5311 27031 0.6680 +5311 27130 0.7030 +5311 28981 0.4020 +5311 29882 0.4350 +5311 50807 0.6160 +5311 51098 0.5000 +5311 51393 0.5770 +5311 54536 0.6320 +5311 54795 0.6350 +5311 54822 0.5950 +5311 55161 0.4910 +5311 55212 0.5110 +5311 55503 0.5430 +5311 55653 0.4220 +5311 55690 0.8560 +5311 55763 0.6100 +5311 55770 0.5650 +5311 56302 0.5440 +5311 57192 0.7800 +5311 57545 0.4370 +5311 57576 0.4170 +5311 59341 0.9740 +5311 60412 0.6260 +5311 63895 0.4380 +5311 79054 0.5410 +5311 79600 0.4180 +5311 79809 0.4620 +5311 80036 0.7510 +5311 80184 0.5280 +5311 90410 0.7150 +5311 91754 0.6990 +5311 117177 0.6640 +5311 122786 0.4070 +5311 129880 0.4540 +5311 131177 0.5250 +5311 140803 0.5340 +5311 149371 0.5920 +5311 162514 0.4630 +5311 192668 0.5990 +5311 200894 0.7340 +5311 261734 0.6900 +5311 284086 0.7480 +5311 342372 0.7330 +5311 400668 0.4280 +5313 5315 0.9190 +5313 5360 0.4090 +5313 5432 0.4220 +5313 5435 0.5070 +5313 5469 0.7130 +5313 5610 0.4480 +5313 5631 0.5320 +5313 5634 0.5690 +5313 5832 0.4110 +5313 5834 0.5560 +5313 5836 0.6000 +5313 5837 0.5790 +5313 6120 0.4510 +5313 6122 0.6750 +5313 6123 0.6780 +5313 6124 0.6100 +5313 6125 0.9100 +5313 6128 0.5440 +5313 6129 0.6090 +5313 6130 0.4970 +5313 6132 0.7090 +5313 6133 0.7130 +5313 6135 0.8900 +5313 6136 0.5540 +5313 6138 0.8510 +5313 6139 0.6840 +5313 6141 0.8400 +5313 6142 0.6500 +5313 6143 0.8410 +5313 6144 0.7710 +5313 6147 0.8790 +5313 6152 0.7870 +5313 6154 0.7030 +5313 6155 0.5940 +5313 6156 0.6860 +5313 6160 0.7850 +5313 6161 0.4960 +5313 6164 0.7220 +5313 6165 0.6330 +5313 6166 0.5080 +5313 6168 0.7610 +5313 6173 0.5080 +5313 6175 0.7270 +5313 6183 0.6950 +5313 6187 0.6860 +5313 6188 0.8500 +5313 6189 0.7120 +5313 6191 0.6520 +5313 6192 0.6520 +5313 6193 0.6080 +5313 6194 0.7270 +5313 6203 0.6700 +5313 6205 0.8070 +5313 6206 0.4970 +5313 6207 0.5400 +5313 6208 0.5980 +5313 6209 0.8260 +5313 6210 0.5700 +5313 6217 0.6100 +5313 6218 0.7010 +5313 6222 0.7650 +5313 6223 0.7550 +5313 6224 0.5840 +5313 6228 0.6940 +5313 6229 0.7330 +5313 6234 0.7230 +5313 6235 0.6590 +5313 6240 0.9130 +5313 6241 0.9030 +5313 6319 0.4750 +5313 6389 0.4260 +5313 6470 0.4250 +5313 6472 0.4070 +5313 6513 0.4130 +5313 6514 0.7630 +5313 6517 0.4740 +5313 6708 0.4200 +5313 6720 0.4500 +5313 6888 0.9080 +5313 6927 0.8750 +5313 6945 0.6510 +5313 7025 0.5500 +5313 7069 0.4640 +5313 7086 0.9200 +5313 7167 0.8740 +5313 7284 0.4830 +5313 7296 0.4710 +5313 7311 0.6290 +5313 7357 0.5450 +5313 8050 0.5060 +5313 8277 0.9130 +5313 8540 0.4020 +5313 8789 0.6560 +5313 8802 0.6460 +5313 9045 0.5440 +5313 9349 0.8620 +5313 9380 0.7700 +5313 9493 0.4010 +5313 9533 0.4220 +5313 9563 0.9490 +5313 9583 0.9000 +5313 9732 0.4970 +5313 9858 0.6430 +5313 10020 0.4210 +5313 10201 0.9070 +5313 10412 0.6130 +5313 10473 0.5540 +5313 10557 0.4970 +5313 10587 0.4500 +5313 10608 0.6800 +5313 10864 0.4530 +5313 10873 0.9700 +5313 10994 0.5530 +5313 11128 0.4530 +5313 11222 0.6750 +5313 11224 0.8550 +5313 22934 0.5310 +5313 22984 0.4320 +5313 23204 0.5400 +5313 23521 0.6010 +5313 23640 0.4780 +5313 25885 0.4530 +5313 26007 0.5400 +5313 26061 0.5490 +5313 26227 0.5000 +5313 26289 0.9130 +5313 26330 0.6570 +5313 28998 0.5930 +5313 29093 0.6840 +5313 29922 0.9100 +5313 50484 0.9010 +5313 50808 0.9130 +5313 51069 0.7090 +5313 51071 0.8260 +5313 51073 0.6100 +5313 51081 0.6080 +5313 51085 0.8210 +5313 51116 0.6490 +5313 51119 0.5710 +5313 51121 0.6710 +5313 51149 0.5400 +5313 51154 0.7040 +5313 51179 0.6300 +5313 51319 0.4970 +5313 51444 0.5200 +5313 54363 0.6130 +5313 54941 0.5200 +5313 54948 0.4780 +5313 54995 0.4610 +5313 55173 0.5840 +5313 55272 0.6630 +5313 55293 0.5200 +5313 55316 0.6040 +5313 55651 0.5090 +5313 55753 0.4180 +5313 55811 0.6590 +5313 55902 0.4490 +5313 57103 0.5660 +5313 57469 0.5080 +5313 57818 0.5320 +5313 60491 0.7220 +5313 63931 0.6040 +5313 64080 0.4460 +5313 64374 0.4780 +5313 64960 0.5400 +5313 64963 0.5980 +5313 64969 0.6950 +5313 65003 0.5540 +5313 65008 0.5420 +5313 79071 0.6080 +5313 79590 0.6710 +5313 79893 0.4020 +5313 80201 0.5720 +5313 84076 0.9130 +5313 84284 0.9000 +5313 84706 0.4530 +5313 92483 0.9860 +5313 92579 0.5580 +5313 114112 0.4260 +5313 122481 0.9150 +5313 124583 0.9080 +5313 126402 0.6080 +5313 130589 0.4610 +5313 130752 0.7290 +5313 132158 0.8690 +5313 137362 0.4640 +5313 140032 0.6520 +5313 140801 0.4780 +5313 146059 0.4470 +5313 158067 0.9130 +5313 160287 0.9860 +5313 196883 0.6610 +5313 197257 0.9460 +5313 221264 0.9130 +5313 221294 0.4350 +5313 221823 0.5480 +5313 285855 0.6090 +5313 347487 0.6430 +5313 374659 0.9140 +5313 377841 0.9020 +5313 387129 0.6060 +5313 387496 0.4120 +5313 387712 0.9840 +5313 400735 0.4090 +5313 441531 0.8350 +5313 641776 0.5400 +5313 643909 0.5400 +5313 645051 0.5070 +5313 645073 0.5100 +5313 654364 0.9080 +5313 728524 0.5400 +5313 729020 0.4710 +5313 729396 0.4960 +5313 729422 0.5070 +5313 729428 0.5070 +5313 729431 0.4960 +5313 729442 0.4960 +5313 729447 0.5070 +5313 100008586 0.5100 +5313 100132399 0.5070 +5313 100287482 0.6430 +5313 100505478 0.6040 +5313 100526842 0.6840 +5313 100529097 0.5080 +5313 100996746 0.5400 +5313 102157402 0.9030 +5313 102724473 0.4960 +5313 105180390 0.5400 +5313 105180391 0.5400 +5314 5587 0.7330 +5314 5589 0.6690 +5314 5732 0.5200 +5314 5734 0.5060 +5314 6495 0.4700 +5314 6608 0.4130 +5314 6753 0.4510 +5314 6927 0.5830 +5314 6928 0.8520 +5314 7273 0.4890 +5314 7364 0.4390 +5314 7369 0.8510 +5314 8085 0.4970 +5314 8100 0.7960 +5314 8405 0.5310 +5314 8481 0.4770 +5314 9657 0.4090 +5314 9697 0.7410 +5314 9742 0.5040 +5314 10952 0.4780 +5314 11127 0.6800 +5314 11231 0.6210 +5314 11236 0.4090 +5314 23193 0.6010 +5314 27031 0.7470 +5314 27130 0.5640 +5314 29072 0.4180 +5314 50674 0.4390 +5314 51726 0.4410 +5314 54510 0.4370 +5314 54903 0.4570 +5314 79053 0.5700 +5314 80114 0.4050 +5314 80184 0.4480 +5314 90410 0.4690 +5314 91147 0.5160 +5314 91754 0.4470 +5314 93035 0.4190 +5314 94137 0.4340 +5314 192668 0.8230 +5314 199221 0.6700 +5314 200894 0.4700 +5314 259266 0.4200 +5314 261734 0.4350 +5314 283871 0.4100 +5314 284086 0.6370 +5315 5432 0.4270 +5315 5435 0.5110 +5315 5460 0.9690 +5315 5467 0.5170 +5315 5468 0.4180 +5315 5469 0.7130 +5315 5471 0.4280 +5315 5478 0.5840 +5315 5566 0.9270 +5315 5567 0.9260 +5315 5568 0.9250 +5315 5590 0.5170 +5315 5594 0.5350 +5315 5595 0.4990 +5315 5605 0.4530 +5315 5610 0.5410 +5315 5631 0.4690 +5315 5634 0.4720 +5315 5702 0.4050 +5315 5704 0.4270 +5315 5723 0.5200 +5315 5725 0.8800 +5315 5728 0.5190 +5315 5743 0.5080 +5315 5770 0.4680 +5315 5834 0.5570 +5315 5836 0.5500 +5315 5837 0.5760 +5315 6122 0.6990 +5315 6123 0.6840 +5315 6124 0.6540 +5315 6125 0.9050 +5315 6128 0.5660 +5315 6129 0.6340 +5315 6130 0.5200 +5315 6132 0.7240 +5315 6133 0.7210 +5315 6135 0.8850 +5315 6136 0.5680 +5315 6138 0.8400 +5315 6139 0.6860 +5315 6141 0.8300 +5315 6142 0.6620 +5315 6143 0.8490 +5315 6144 0.7710 +5315 6147 0.8820 +5315 6152 0.7890 +5315 6154 0.6800 +5315 6155 0.5500 +5315 6156 0.6900 +5315 6157 0.4240 +5315 6160 0.7760 +5315 6161 0.5030 +5315 6164 0.7330 +5315 6165 0.5930 +5315 6166 0.5300 +5315 6168 0.7800 +5315 6173 0.5260 +5315 6175 0.7510 +5315 6183 0.6970 +5315 6187 0.7170 +5315 6188 0.8660 +5315 6189 0.7150 +5315 6191 0.6650 +5315 6192 0.6530 +5315 6193 0.6430 +5315 6194 0.7840 +5315 6198 0.4120 +5315 6203 0.6870 +5315 6205 0.8080 +5315 6206 0.5010 +5315 6207 0.5550 +5315 6208 0.6000 +5315 6209 0.8300 +5315 6210 0.5430 +5315 6217 0.6340 +5315 6218 0.6890 +5315 6222 0.7840 +5315 6223 0.7310 +5315 6224 0.6080 +5315 6228 0.7070 +5315 6229 0.7160 +5315 6234 0.7050 +5315 6235 0.6140 +5315 6240 0.9280 +5315 6241 0.9240 +5315 6319 0.4320 +5315 6389 0.5890 +5315 6390 0.5400 +5315 6391 0.4700 +5315 6426 0.5450 +5315 6428 0.4250 +5315 6430 0.5340 +5315 6470 0.7190 +5315 6472 0.6450 +5315 6510 0.5350 +5315 6513 0.8140 +5315 6514 0.4080 +5315 6515 0.6890 +5315 6517 0.5550 +5315 6520 0.4730 +5315 6566 0.4930 +5315 6597 0.7960 +5315 6615 0.4120 +5315 6648 0.5500 +5315 6696 0.4820 +5315 6714 0.4540 +5315 6720 0.6560 +5315 6750 0.4160 +5315 6774 0.5970 +5315 6794 0.4280 +5315 6888 0.9250 +5315 6925 0.4180 +5315 7001 0.5490 +5315 7070 0.4520 +5315 7083 0.4180 +5315 7086 0.9510 +5315 7094 0.4480 +5315 7124 0.5620 +5315 7157 0.8250 +5315 7167 0.9630 +5315 7168 0.6450 +5315 7169 0.6810 +5315 7171 0.5570 +5315 7184 0.5290 +5315 7205 0.7790 +5315 7280 0.5400 +5315 7284 0.5500 +5315 7295 0.4360 +5315 7296 0.5170 +5315 7298 0.4680 +5315 7311 0.7500 +5315 7341 0.6240 +5315 7384 0.4420 +5315 7386 0.4240 +5315 7390 0.4010 +5315 7403 0.4320 +5315 7414 0.5060 +5315 7415 0.5750 +5315 7416 0.4880 +5315 7419 0.5560 +5315 7531 0.4130 +5315 7534 0.5420 +5315 7837 0.4500 +5315 7874 0.6090 +5315 8050 0.5940 +5315 8277 0.9340 +5315 8290 0.6600 +5315 8349 0.7250 +5315 8356 0.6950 +5315 8402 0.5000 +5315 8408 0.4030 +5315 8540 0.4100 +5315 8789 0.5890 +5315 8802 0.5120 +5315 8803 0.4110 +5315 8815 0.4050 +5315 8833 0.4020 +5315 8841 0.5220 +5315 9021 0.5790 +5315 9045 0.5500 +5315 9122 0.6460 +5315 9123 0.6980 +5315 9212 0.4060 +5315 9343 0.6690 +5315 9349 0.8630 +5315 9380 0.7830 +5315 9533 0.4300 +5315 9563 0.9580 +5315 9583 0.9020 +5315 9588 0.4290 +5315 9618 0.6290 +5315 9669 0.4070 +5315 9732 0.4970 +5315 9858 0.6530 +5315 9927 0.5760 +5315 9948 0.5040 +5315 9987 0.7760 +5315 10007 0.4290 +5315 10013 0.5300 +5315 10020 0.4430 +5315 10059 0.4590 +5315 10121 0.4440 +5315 10131 0.4260 +5315 10155 0.4320 +5315 10201 0.9080 +5315 10273 0.4570 +5315 10295 0.5200 +5315 10376 0.4480 +5315 10397 0.4290 +5315 10399 0.6030 +5315 10412 0.6140 +5315 10449 0.6600 +5315 10473 0.5620 +5315 10551 0.5190 +5315 10557 0.5000 +5315 10587 0.4760 +5315 10606 0.4500 +5315 10657 0.4990 +5315 10659 0.4250 +5315 10664 0.4010 +5315 10797 0.4990 +5315 10873 0.9630 +5315 10891 0.4800 +5315 10933 0.5730 +5315 10994 0.5530 +5315 11128 0.4550 +5315 11184 0.4570 +5315 11200 0.4440 +5315 11222 0.6790 +5315 11224 0.8550 +5315 11339 0.7750 +5315 11340 0.6620 +5315 22934 0.4940 +5315 22984 0.4420 +5315 23081 0.4280 +5315 23087 0.5010 +5315 23135 0.4640 +5315 23204 0.5440 +5315 23286 0.5260 +5315 23305 0.5390 +5315 23408 0.4660 +5315 23410 0.4530 +5315 23411 0.4900 +5315 23521 0.6440 +5315 23532 0.6750 +5315 23640 0.4890 +5315 23729 0.4070 +5315 25885 0.4570 +5315 25902 0.4040 +5315 25962 0.4040 +5315 26007 0.4230 +5315 26061 0.5500 +5315 26227 0.7180 +5315 26289 0.9150 +5315 26330 0.6130 +5315 27165 0.4550 +5315 28976 0.4810 +5315 28998 0.5970 +5315 29093 0.6840 +5315 29922 0.9110 +5315 29968 0.5540 +5315 50484 0.9070 +5315 50808 0.9340 +5315 51069 0.7140 +5315 51071 0.8310 +5315 51073 0.6190 +5315 51081 0.6270 +5315 51116 0.6530 +5315 51119 0.4280 +5315 51121 0.6730 +5315 51149 0.5400 +5315 51154 0.7110 +5315 51179 0.5480 +5315 51319 0.4980 +5315 51400 0.4900 +5315 51444 0.5200 +5315 51548 0.4350 +5315 51703 0.5470 +5315 51741 0.4250 +5315 54205 0.4600 +5315 54363 0.6900 +5315 54583 0.5820 +5315 54941 0.5200 +5315 54948 0.4820 +5315 54995 0.4230 +5315 55173 0.5900 +5315 55272 0.6680 +5315 55276 0.4830 +5315 55293 0.5270 +5315 55316 0.6040 +5315 55651 0.5190 +5315 55753 0.4230 +5315 55811 0.8810 +5315 55902 0.5140 +5315 56915 0.4320 +5315 57103 0.7600 +5315 57469 0.5070 +5315 57664 0.5410 +5315 58155 0.5370 +5315 58478 0.5900 +5315 60436 0.5800 +5315 63931 0.6090 +5315 64077 0.5160 +5315 64374 0.4820 +5315 64960 0.5470 +5315 64963 0.6050 +5315 64969 0.6950 +5315 65003 0.5670 +5315 65008 0.5460 +5315 78990 0.5440 +5315 79590 0.6720 +5315 79831 0.8710 +5315 79893 0.4020 +5315 80201 0.6230 +5315 81631 0.4180 +5315 84076 0.9340 +5315 84284 0.9000 +5315 84532 0.4800 +5315 84676 0.6520 +5315 84706 0.4840 +5315 92483 0.9820 +5315 92906 0.4120 +5315 112399 0.7930 +5315 114112 0.4260 +5315 120892 0.5640 +5315 122481 0.9160 +5315 124583 0.9030 +5315 126402 0.6080 +5315 130752 0.6010 +5315 132158 0.8670 +5315 135228 0.4300 +5315 137902 0.4410 +5315 140032 0.6540 +5315 140801 0.4800 +5315 158067 0.9170 +5315 160287 0.9860 +5315 196883 0.6610 +5315 197257 0.9460 +5315 203068 0.4470 +5315 220988 0.4530 +5315 221264 0.9170 +5315 221823 0.4280 +5315 253827 0.4390 +5315 285855 0.6190 +5315 345456 0.4050 +5315 347487 0.6430 +5315 374659 0.9150 +5315 375189 0.4060 +5315 377841 0.9020 +5315 387129 0.6210 +5315 387712 0.9790 +5315 440093 0.6600 +5315 440686 0.6600 +5315 441531 0.9490 +5315 641776 0.5400 +5315 642489 0.4290 +5315 643909 0.5400 +5315 645051 0.4960 +5315 645073 0.4960 +5315 653604 0.6950 +5315 654364 0.9110 +5315 728524 0.5400 +5315 729396 0.4960 +5315 729422 0.4960 +5315 729428 0.4960 +5315 729431 0.4960 +5315 729442 0.4960 +5315 729447 0.4960 +5315 100008586 0.4960 +5315 100132399 0.4960 +5315 100287482 0.6430 +5315 100505478 0.6040 +5315 100526842 0.6840 +5315 100529097 0.5080 +5315 100996746 0.5400 +5315 102157402 0.9020 +5315 102724473 0.4960 +5315 105180390 0.5400 +5315 105180391 0.5400 +5316 5451 0.4630 +5316 5914 0.5360 +5316 5916 0.5330 +5316 5928 0.5340 +5316 5931 0.5400 +5316 6189 0.4180 +5316 6256 0.5630 +5316 6347 0.4220 +5316 6473 0.6580 +5316 7307 0.5590 +5316 8202 0.5300 +5316 8726 0.5850 +5316 8867 0.5440 +5316 8976 0.4310 +5316 9510 0.4530 +5316 9611 0.5380 +5316 9619 0.5170 +5316 9841 0.4440 +5316 10201 0.5370 +5316 10514 0.4690 +5316 10691 0.7180 +5316 10785 0.6760 +5316 23512 0.5640 +5316 54785 0.4870 +5316 54952 0.7790 +5316 55048 0.4250 +5316 58493 0.4570 +5316 58494 0.5930 +5316 64601 0.4300 +5316 65082 0.4420 +5316 80714 0.8160 +5316 84516 0.4380 +5316 90060 0.4260 +5316 127428 0.4390 +5316 131965 0.5320 +5316 134553 0.4310 +5316 143187 0.5450 +5316 197131 0.6920 +5317 5318 0.6310 +5317 5339 0.7220 +5317 5493 0.8660 +5317 6317 0.4360 +5317 6698 0.7230 +5317 6699 0.7560 +5317 6700 0.6180 +5317 6701 0.6690 +5317 6703 0.6130 +5317 6704 0.5550 +5317 6705 0.6180 +5317 6706 0.5660 +5317 6707 0.6390 +5317 6780 0.5400 +5317 7051 0.7340 +5317 7053 0.4660 +5317 7062 0.5510 +5317 7431 0.4440 +5317 7532 0.5400 +5317 7534 0.4990 +5317 8036 0.6940 +5317 8502 0.6370 +5317 8626 0.5610 +5317 9333 0.5860 +5317 9635 0.4600 +5317 10146 0.5100 +5317 11187 0.9160 +5317 22849 0.5400 +5317 23086 0.4920 +5317 23581 0.4180 +5317 23650 0.5830 +5317 26065 0.5400 +5317 27067 0.5400 +5317 29119 0.4490 +5317 54101 0.4110 +5317 55612 0.4720 +5317 56339 0.4200 +5317 57822 0.4210 +5317 64065 0.7880 +5317 64506 0.5400 +5317 79026 0.4600 +5317 79755 0.4060 +5317 79983 0.4400 +5317 80315 0.5400 +5317 89777 0.4730 +5317 126638 0.5300 +5317 127845 0.4050 +5317 132864 0.7200 +5317 147409 0.8030 +5317 388698 0.4960 +5318 5339 0.6640 +5318 5493 0.6710 +5318 5578 0.7270 +5318 5738 0.4070 +5318 5796 0.4460 +5318 6262 0.8280 +5318 6324 0.6040 +5318 6327 0.5750 +5318 6330 0.4730 +5318 6331 0.9760 +5318 6336 0.5120 +5318 6444 0.4320 +5318 6640 0.4750 +5318 6698 0.4990 +5318 6699 0.5000 +5318 6700 0.4990 +5318 6701 0.4990 +5318 6703 0.4990 +5318 6704 0.4990 +5318 6705 0.4990 +5318 6706 0.4990 +5318 6707 0.5250 +5318 6872 0.4200 +5318 7043 0.8620 +5318 7044 0.4230 +5318 7051 0.5880 +5318 7062 0.5070 +5318 7082 0.6630 +5318 7137 0.5750 +5318 7139 0.6030 +5318 7168 0.5550 +5318 7273 0.6540 +5318 7414 0.6620 +5318 7431 0.5580 +5318 7534 0.4450 +5318 7547 0.4480 +5318 7871 0.5760 +5318 8048 0.5170 +5318 8502 0.7380 +5318 8557 0.4800 +5318 9531 0.4310 +5318 9534 0.4020 +5318 9866 0.4200 +5318 9992 0.5250 +5318 10008 0.5950 +5318 10021 0.5730 +5318 10052 0.5820 +5318 10060 0.5910 +5318 10112 0.5820 +5318 10142 0.4630 +5318 10345 0.4760 +5318 10902 0.4200 +5318 10971 0.4180 +5318 10987 0.4720 +5318 11128 0.6360 +5318 11155 0.5120 +5318 11187 0.7960 +5318 23171 0.6460 +5318 23630 0.5810 +5318 25852 0.4740 +5318 27443 0.4200 +5318 29098 0.6650 +5318 29119 0.9820 +5318 51422 0.5230 +5318 51778 0.4160 +5318 54443 0.5030 +5318 54795 0.5060 +5318 55023 0.4200 +5318 55800 0.6050 +5318 56339 0.4390 +5318 57158 0.4030 +5318 57589 0.5480 +5318 64065 0.6790 +5318 79026 0.4040 +5318 79188 0.9330 +5318 81565 0.5180 +5318 84665 0.4610 +5318 91624 0.4310 +5318 126638 0.5070 +5318 147409 0.6980 +5318 282996 0.5840 +5318 376132 0.4040 +5318 100820829 0.4140 +5319 5320 0.7090 +5319 5321 0.8140 +5319 5322 0.6130 +5319 5337 0.7010 +5319 5338 0.6740 +5319 5406 0.7640 +5319 5407 0.7110 +5319 5539 0.4240 +5319 5594 0.7010 +5319 5595 0.6800 +5319 5644 0.4670 +5319 5740 0.5930 +5319 5742 0.7590 +5319 5743 0.7480 +5319 6401 0.4120 +5319 7941 0.8460 +5319 8228 0.4100 +5319 8398 0.5620 +5319 8399 0.7690 +5319 8529 0.6650 +5319 9415 0.6500 +5319 9791 0.6820 +5319 10136 0.7120 +5319 10390 0.7090 +5319 10400 0.6590 +5319 10434 0.6740 +5319 10908 0.6870 +5319 11145 0.7400 +5319 11283 0.6600 +5319 11330 0.4630 +5319 22925 0.8850 +5319 23436 0.6020 +5319 23646 0.6560 +5319 23659 0.7320 +5319 23761 0.6500 +5319 26279 0.5910 +5319 30814 0.5910 +5319 50487 0.7290 +5319 51032 0.6350 +5319 51320 0.4910 +5319 51752 0.4680 +5319 54947 0.7140 +5319 55349 0.6000 +5319 56994 0.7140 +5319 63036 0.5290 +5319 64600 0.5820 +5319 66004 0.6370 +5319 79153 0.7090 +5319 79888 0.7310 +5319 81490 0.6630 +5319 81579 0.7620 +5319 84647 0.5600 +5319 85465 0.6500 +5319 113612 0.6550 +5319 122618 0.6500 +5319 133121 0.6500 +5319 151056 0.7730 +5319 254531 0.6710 +5319 255043 0.6580 +5319 284161 0.7090 +5319 284541 0.6540 +5319 342898 0.4660 +5319 375775 0.6740 +5319 387521 0.6520 +5319 387522 0.6670 +5320 5321 0.9180 +5320 5322 0.5730 +5320 5337 0.6800 +5320 5338 0.7070 +5320 5594 0.6830 +5320 5595 0.7380 +5320 5742 0.7970 +5320 5743 0.9240 +5320 6289 0.4090 +5320 6403 0.5420 +5320 6714 0.4790 +5320 7124 0.4800 +5320 7180 0.5150 +5320 7941 0.8950 +5320 8228 0.4370 +5320 8398 0.8300 +5320 8399 0.7250 +5320 8529 0.6660 +5320 8574 0.5970 +5320 8605 0.9100 +5320 9415 0.7110 +5320 9536 0.4890 +5320 9791 0.6740 +5320 10071 0.4370 +5320 10086 0.5490 +5320 10321 0.5070 +5320 10390 0.6900 +5320 10400 0.6660 +5320 10434 0.6820 +5320 10908 0.7620 +5320 11145 0.8470 +5320 11283 0.6730 +5320 22925 0.9300 +5320 22977 0.5690 +5320 23193 0.6290 +5320 23646 0.6580 +5320 23659 0.8450 +5320 23761 0.6500 +5320 25833 0.5420 +5320 25884 0.4480 +5320 26279 0.5490 +5320 30814 0.5660 +5320 50487 0.9340 +5320 50640 0.9210 +5320 51806 0.6740 +5320 54947 0.7690 +5320 55349 0.6000 +5320 56667 0.4530 +5320 56994 0.6850 +5320 64600 0.5520 +5320 79153 0.7730 +5320 79888 0.7720 +5320 81490 0.6750 +5320 81579 0.9350 +5320 84647 0.8070 +5320 85465 0.6800 +5320 91860 0.6740 +5320 113612 0.6690 +5320 122618 0.6500 +5320 123745 0.4570 +5320 130120 0.5270 +5320 133121 0.6500 +5320 151056 0.8420 +5320 163688 0.6690 +5320 254531 0.7600 +5320 255043 0.6500 +5320 255189 0.4700 +5320 259307 0.4490 +5320 283748 0.4890 +5320 284161 0.7800 +5320 284541 0.6560 +5320 375775 0.6780 +5320 387521 0.6520 +5320 387522 0.6670 +5320 727897 0.4310 +5321 5322 0.6010 +5321 5335 0.9320 +5321 5336 0.9360 +5321 5337 0.7430 +5321 5338 0.7880 +5321 5465 0.4450 +5321 5467 0.5120 +5321 5530 0.4650 +5321 5532 0.4050 +5321 5536 0.6320 +5321 5538 0.4600 +5321 5578 0.8580 +5321 5579 0.7380 +5321 5582 0.7170 +5321 5590 0.4400 +5321 5594 0.9700 +5321 5595 0.9560 +5321 5730 0.5710 +5321 5733 0.4530 +5321 5734 0.4930 +5321 5740 0.4600 +5321 5742 0.9140 +5321 5743 0.9620 +5321 6281 0.6770 +5321 6616 0.4100 +5321 6714 0.4160 +5321 6774 0.6400 +5321 6844 0.4090 +5321 6857 0.4810 +5321 7099 0.4380 +5321 7124 0.4640 +5321 7416 0.4220 +5321 7941 0.8640 +5321 7994 0.4540 +5321 8398 0.8390 +5321 8399 0.8580 +5321 8529 0.6760 +5321 8605 0.4010 +5321 8694 0.4970 +5321 9050 0.4080 +5321 9374 0.5830 +5321 9415 0.7290 +5321 9536 0.6610 +5321 9630 0.5090 +5321 9791 0.6740 +5321 10390 0.7260 +5321 10400 0.6780 +5321 10434 0.7300 +5321 10524 0.6930 +5321 10598 0.4770 +5321 10672 0.6890 +5321 10728 0.4850 +5321 10800 0.4200 +5321 10856 0.5000 +5321 10908 0.7830 +5321 11145 0.8280 +5321 11283 0.6850 +5321 11343 0.6430 +5321 23566 0.5440 +5321 23646 0.6880 +5321 23659 0.8440 +5321 23761 0.7060 +5321 25833 0.4450 +5321 26279 0.6920 +5321 26292 0.4610 +5321 30814 0.4710 +5321 50487 0.4810 +5321 50640 0.5930 +5321 54947 0.7900 +5321 54982 0.4970 +5321 55349 0.6180 +5321 56413 0.4610 +5321 56994 0.7530 +5321 57506 0.6340 +5321 64600 0.6520 +5321 64781 0.7200 +5321 79153 0.7820 +5321 79657 0.4350 +5321 79887 0.4320 +5321 79888 0.7720 +5321 80142 0.5110 +5321 81490 0.6680 +5321 81579 0.4890 +5321 84647 0.4160 +5321 84649 0.4210 +5321 85465 0.6800 +5321 113612 0.6830 +5321 122618 0.6780 +5321 123745 0.5260 +5321 133121 0.6620 +5321 151056 0.7630 +5321 254531 0.7440 +5321 255043 0.6500 +5321 255189 0.5110 +5321 255738 0.4150 +5321 283748 0.5240 +5321 284161 0.7800 +5321 284541 0.6630 +5321 375775 0.7570 +5321 387521 0.6500 +5321 387522 0.6500 +5321 391013 0.4680 +5321 653361 0.7930 +5321 100137049 0.5930 +5322 5337 0.6710 +5322 5338 0.6890 +5322 5594 0.6800 +5322 5595 0.6990 +5322 5742 0.7130 +5322 5743 0.7260 +5322 7580 0.4320 +5322 7941 0.7660 +5322 8398 0.6230 +5322 8399 0.5880 +5322 8529 0.6500 +5322 8605 0.4430 +5322 9415 0.6500 +5322 9791 0.6500 +5322 10390 0.6800 +5322 10400 0.6600 +5322 10434 0.6740 +5322 10908 0.6930 +5322 11145 0.8110 +5322 11283 0.6500 +5322 23646 0.6680 +5322 23659 0.8090 +5322 23761 0.6500 +5322 26279 0.5520 +5322 30814 0.5600 +5322 50487 0.8240 +5322 54947 0.7000 +5322 55349 0.6000 +5322 56994 0.6500 +5322 64600 0.5710 +5322 79153 0.6650 +5322 79888 0.6870 +5322 81490 0.6500 +5322 81579 0.7830 +5322 84647 0.5250 +5322 85465 0.6500 +5322 113612 0.6730 +5322 122618 0.6500 +5322 133121 0.6520 +5322 151056 0.7020 +5322 254531 0.6600 +5322 255043 0.6500 +5322 283748 0.9570 +5322 284161 0.6650 +5322 284541 0.6750 +5322 375775 0.6520 +5322 387521 0.6520 +5322 387522 0.6670 +5322 100137049 0.8490 +5324 6224 0.5110 +5324 6256 0.4060 +5324 6304 0.4240 +5324 6917 0.8940 +5324 6919 0.7720 +5324 6920 0.7700 +5324 7391 0.4290 +5324 8091 0.8230 +5324 9049 0.4180 +5324 11283 0.7310 +5324 23373 0.5430 +5324 27146 0.4120 +5324 51081 0.4800 +5324 54928 0.4940 +5324 64151 0.5780 +5324 79145 0.9470 +5324 90362 0.4860 +5324 114786 0.6070 +5324 137695 0.6040 +5324 195814 0.5830 +5324 254251 0.7110 +5325 5923 0.4900 +5325 5992 0.4840 +5325 6256 0.4430 +5325 6638 0.6970 +5325 6833 0.5620 +5325 7157 0.8560 +5325 7161 0.4690 +5325 7262 0.5880 +5325 8745 0.4520 +5325 8788 0.8000 +5325 8910 0.6750 +5325 9049 0.4320 +5325 9077 0.5900 +5325 9749 0.6370 +5325 10904 0.4420 +5325 23089 0.7460 +5325 26240 0.5330 +5325 51081 0.4750 +5325 51305 0.4900 +5325 51666 0.4150 +5325 54551 0.4440 +5325 55089 0.4490 +5325 55607 0.4520 +5325 57683 0.5110 +5325 84189 0.4140 +5325 200185 0.4430 +5325 222546 0.7330 +5325 266812 0.6270 +5325 346171 0.4180 +5325 388015 0.4720 +5325 100101490 0.4160 +5326 5688 0.4180 +5326 5756 0.4370 +5326 5896 0.4220 +5326 6997 0.4800 +5326 7112 0.4450 +5326 7329 0.5090 +5326 7475 0.4050 +5326 7716 0.4100 +5326 8507 0.5090 +5326 9371 0.7480 +5326 9777 0.7170 +5326 22850 0.4700 +5326 23038 0.4060 +5326 23509 0.8040 +5326 25898 0.4610 +5326 54329 0.4890 +5326 55324 0.4130 +5326 57495 0.4810 +5326 81928 0.4540 +5326 140893 0.4560 +5326 257364 0.4570 +5326 541468 0.4180 +5327 5328 0.8370 +5327 5329 0.8510 +5327 5340 0.9980 +5327 5345 0.9480 +5327 5473 0.4820 +5327 5552 0.4850 +5327 5587 0.5300 +5327 5595 0.4230 +5327 5621 0.5390 +5327 5743 0.4100 +5327 5972 0.5390 +5327 6281 0.9870 +5327 6347 0.5750 +5327 6376 0.5190 +5327 6401 0.6000 +5327 6403 0.7830 +5327 6654 0.4690 +5327 6655 0.4210 +5327 6714 0.4020 +5327 6818 0.5110 +5327 6876 0.4740 +5327 7035 0.7880 +5327 7040 0.4640 +5327 7056 0.9130 +5327 7057 0.5570 +5327 7076 0.5620 +5327 7077 0.7510 +5327 7078 0.4310 +5327 7082 0.4220 +5327 7099 0.4360 +5327 7122 0.4890 +5327 7123 0.6760 +5327 7124 0.6250 +5327 7409 0.4460 +5327 7412 0.7560 +5327 7448 0.8810 +5327 7450 0.9340 +5327 7837 0.5070 +5327 7980 0.5280 +5327 8817 0.4930 +5327 8822 0.4950 +5327 8823 0.4950 +5327 8858 0.5290 +5327 9332 0.5640 +5327 9402 0.7270 +5327 9718 0.4270 +5327 10045 0.4350 +5327 10344 0.4760 +5327 10544 0.5780 +5327 10750 0.4490 +5327 11093 0.5820 +5327 11202 0.6060 +5327 23411 0.5270 +5327 26281 0.4950 +5327 27006 0.4950 +5327 30835 0.4390 +5327 50489 0.4200 +5327 51156 0.6960 +5327 51206 0.4220 +5327 53353 0.5160 +5327 55239 0.5060 +5327 55848 0.7610 +5327 56034 0.8050 +5327 57380 0.4740 +5327 57823 0.4090 +5327 59272 0.5290 +5327 64805 0.4480 +5327 80310 0.5540 +5327 125336 0.7920 +5327 137902 0.4760 +5327 143458 0.4050 +5327 146713 0.4160 +5327 168507 0.6080 +5327 342372 0.6790 +5327 389289 0.5200 +5327 390714 0.5160 +5327 445329 0.5070 +5327 653145 0.5910 +5327 100423062 0.9460 +5327 100506658 0.5500 +5327 102723407 0.4990 +5328 5329 0.9990 +5328 5340 0.9890 +5328 5345 0.7190 +5328 5468 0.5040 +5328 5595 0.4950 +5328 5604 0.5000 +5328 5624 0.6340 +5328 5648 0.7100 +5328 5724 0.4390 +5328 5728 0.4030 +5328 5742 0.4020 +5328 5743 0.5520 +5328 5747 0.4400 +5328 5806 0.4130 +5328 5879 0.4550 +5328 6281 0.6240 +5328 6347 0.5940 +5328 6367 0.5200 +5328 6387 0.4940 +5328 6591 0.4500 +5328 6615 0.4720 +5328 6678 0.5720 +5328 6692 0.4650 +5328 6696 0.5440 +5328 6714 0.5680 +5328 6774 0.5360 +5328 7035 0.6020 +5328 7039 0.4580 +5328 7040 0.5990 +5328 7056 0.8020 +5328 7057 0.7380 +5328 7058 0.4670 +5328 7076 0.6860 +5328 7077 0.7180 +5328 7078 0.4440 +5328 7124 0.7510 +5328 7157 0.5080 +5328 7297 0.5910 +5328 7412 0.5530 +5328 7424 0.5040 +5328 7436 0.6570 +5328 7448 0.9980 +5328 7450 0.5080 +5328 7474 0.4270 +5328 7837 0.4750 +5328 7852 0.5150 +5328 7980 0.5020 +5328 8061 0.4630 +5328 8509 0.4340 +5328 8547 0.5590 +5328 8877 0.5600 +5328 8879 0.5210 +5328 9241 0.4170 +5328 9622 0.5620 +5328 9902 0.8410 +5328 10045 0.4180 +5328 10329 0.7190 +5328 10330 0.4310 +5328 10331 0.5040 +5328 10584 0.5460 +5328 10653 0.4040 +5328 10678 0.5040 +5328 10747 0.5970 +5328 11117 0.5640 +5328 11202 0.6150 +5328 22915 0.5790 +5328 23476 0.4310 +5328 26119 0.4220 +5328 27076 0.5590 +5328 27286 0.7410 +5328 27429 0.5800 +5328 29119 0.4570 +5328 53353 0.4260 +5328 54541 0.4610 +5328 55034 0.5030 +5328 55848 0.4220 +5328 56034 0.5200 +5328 57152 0.5400 +5328 63923 0.5530 +5328 65217 0.5100 +5328 78989 0.5460 +5328 79369 0.5430 +5328 80381 0.4690 +5328 80781 0.4380 +5328 81537 0.4130 +5328 136853 0.4830 +5328 137902 0.4490 +5328 143458 0.4010 +5328 255022 0.4740 +5328 284217 0.5690 +5328 390714 0.5160 +5328 653145 0.4560 +5328 768239 0.4400 +5328 100423062 0.4860 +5328 102723407 0.5030 +5329 5340 0.9740 +5329 5345 0.4780 +5329 5595 0.4060 +5329 5624 0.5750 +5329 5648 0.5700 +5329 5724 0.5260 +5329 5743 0.4890 +5329 5747 0.4680 +5329 5879 0.4100 +5329 6281 0.4740 +5329 6283 0.4170 +5329 6347 0.5220 +5329 6348 0.5980 +5329 6351 0.4430 +5329 6403 0.4400 +5329 6448 0.4160 +5329 6615 0.4260 +5329 6653 0.6590 +5329 6695 0.4460 +5329 6696 0.4210 +5329 6714 0.7000 +5329 6774 0.4180 +5329 7040 0.4590 +5329 7056 0.7160 +5329 7057 0.4760 +5329 7076 0.7680 +5329 7077 0.5200 +5329 7099 0.6680 +5329 7124 0.4970 +5329 7132 0.5700 +5329 7157 0.4540 +5329 7297 0.8080 +5329 7448 0.9990 +5329 7837 0.5130 +5329 7852 0.4780 +5329 8061 0.5030 +5329 8140 0.4580 +5329 8434 0.5250 +5329 8547 0.5470 +5329 8609 0.4360 +5329 8720 0.4440 +5329 8807 0.4450 +5329 8870 0.4150 +5329 8991 0.5850 +5329 9214 0.5080 +5329 9314 0.5510 +5329 9332 0.4470 +5329 9493 0.5170 +5329 9507 0.4390 +5329 9902 0.8530 +5329 10026 0.4160 +5329 10226 0.4280 +5329 10584 0.5410 +5329 10747 0.5660 +5329 11117 0.5430 +5329 11282 0.4220 +5329 22915 0.5400 +5329 27076 0.7040 +5329 27238 0.5070 +5329 27286 0.8800 +5329 27429 0.5490 +5329 51330 0.4220 +5329 53353 0.5010 +5329 54210 0.4680 +5329 55848 0.4780 +5329 57126 0.7500 +5329 57152 0.7170 +5329 57466 0.5310 +5329 63923 0.5400 +5329 66004 0.6790 +5329 78989 0.5410 +5329 80055 0.7570 +5329 80317 0.4970 +5329 83605 0.4410 +5329 83639 0.8110 +5329 93986 0.5210 +5329 116372 0.6970 +5329 128869 0.4230 +5329 171169 0.8200 +5329 203547 0.5380 +5329 284217 0.5400 +5329 390940 0.4730 +5329 653145 0.4370 +5330 5331 0.8350 +5330 5332 0.7070 +5330 5333 0.7300 +5330 5335 0.7470 +5330 5336 0.7730 +5330 5341 0.4970 +5330 5367 0.5280 +5330 5530 0.6730 +5330 5532 0.6760 +5330 5533 0.7120 +5330 5534 0.6500 +5330 5578 0.9280 +5330 5579 0.9310 +5330 5580 0.9180 +5330 5582 0.9150 +5330 5592 0.9040 +5330 5593 0.9000 +5330 5724 0.5770 +5330 5726 0.8780 +5330 5728 0.9110 +5330 5731 0.5050 +5330 5737 0.5290 +5330 5879 0.4870 +5330 5880 0.4150 +5330 5881 0.9000 +5330 6288 0.4990 +5330 6368 0.5230 +5330 6375 0.5100 +5330 6523 0.5750 +5330 6616 0.6420 +5330 6623 0.5190 +5330 6640 0.4560 +5330 6781 0.4020 +5330 6846 0.5180 +5330 6863 0.6070 +5330 6865 0.5230 +5330 6869 0.5150 +5330 6870 0.5100 +5330 6915 0.6820 +5330 7010 0.6550 +5330 7200 0.5210 +5330 7201 0.5170 +5330 7220 0.4520 +5330 7289 0.4380 +5330 7409 0.5050 +5330 7474 0.5440 +5330 7481 0.5500 +5330 7855 0.5080 +5330 7976 0.5190 +5330 8111 0.5290 +5330 8322 0.5370 +5330 8323 0.5050 +5330 8394 0.7150 +5330 8395 0.7400 +5330 8396 0.7350 +5330 8477 0.5490 +5330 8503 0.6740 +5330 8525 0.7230 +5330 8526 0.6930 +5330 8527 0.6710 +5330 8620 0.5130 +5330 8776 0.6590 +5330 8801 0.8030 +5330 8867 0.6720 +5330 8871 0.6980 +5330 8897 0.6590 +5330 8898 0.6590 +5330 9002 0.5730 +5330 9033 0.7390 +5330 9107 0.6590 +5330 9108 0.6590 +5330 9110 0.6510 +5330 9162 0.7990 +5330 9170 0.5710 +5330 9201 0.5280 +5330 9368 0.5160 +5330 9562 0.9000 +5330 9628 0.5780 +5330 9630 0.9570 +5330 10161 0.5480 +5330 10235 0.4520 +5330 10316 0.5070 +5330 10423 0.9010 +5330 10681 0.8750 +5330 10800 0.5280 +5330 10874 0.5220 +5330 10886 0.5160 +5330 10887 0.5020 +5330 10911 0.4990 +5330 22876 0.9030 +5330 22953 0.4090 +5330 23236 0.8010 +5330 23396 0.7220 +5330 23533 0.6000 +5330 23566 0.5270 +5330 23620 0.5190 +5330 25833 0.5110 +5330 26086 0.5700 +5330 27124 0.6960 +5330 27334 0.5350 +5330 29933 0.5230 +5330 50832 0.8880 +5330 50834 0.4090 +5330 50837 0.6130 +5330 50839 0.5920 +5330 51196 0.6910 +5330 51738 0.6480 +5330 51763 0.6640 +5330 51764 0.9660 +5330 51806 0.7040 +5330 54331 0.9160 +5330 54429 0.4720 +5330 54795 0.5650 +5330 54822 0.6290 +5330 54928 0.6810 +5330 55300 0.6500 +5330 55361 0.6500 +5330 55613 0.6590 +5330 55970 0.6800 +5330 56413 0.5190 +5330 56623 0.6680 +5330 56923 0.5380 +5330 57105 0.5710 +5330 57121 0.6020 +5330 59345 0.9400 +5330 60675 0.5410 +5330 64098 0.6470 +5330 64106 0.5160 +5330 64130 0.5010 +5330 64419 0.6550 +5330 79837 0.7100 +5330 80232 0.4040 +5330 80271 0.6950 +5330 80834 0.8660 +5330 80835 0.8610 +5330 83756 0.9370 +5330 84109 0.5140 +5330 84432 0.4990 +5330 84539 0.5030 +5330 84634 0.5020 +5330 84812 0.7030 +5330 89869 0.7060 +5330 91860 0.7070 +5330 94233 0.5890 +5330 94235 0.7020 +5330 113026 0.7050 +5330 119395 0.5420 +5330 128674 0.5020 +5330 129521 0.5130 +5330 133060 0.5720 +5330 138429 0.6820 +5330 139189 0.6580 +5330 160851 0.6920 +5330 163688 0.7010 +5330 200576 0.9000 +5330 222545 0.9120 +5330 253430 0.9010 +5330 255022 0.7300 +5330 257313 0.5220 +5330 259285 0.4190 +5330 259289 0.8670 +5330 259290 0.7260 +5330 259292 0.8980 +5330 338557 0.7020 +5330 342372 0.5340 +5330 346562 0.9980 +5330 347148 0.5230 +5330 387129 0.5020 +5330 594857 0.4990 +5331 5332 0.8080 +5331 5333 0.7250 +5331 5335 0.7570 +5331 5336 0.7500 +5331 5367 0.5250 +5331 5530 0.6820 +5331 5532 0.6730 +5331 5533 0.7110 +5331 5534 0.6550 +5331 5578 0.9360 +5331 5579 0.9180 +5331 5580 0.9220 +5331 5582 0.9230 +5331 5592 0.9190 +5331 5593 0.9070 +5331 5724 0.5590 +5331 5728 0.9090 +5331 5731 0.5210 +5331 5737 0.5050 +5331 5837 0.7920 +5331 5970 0.6920 +5331 5997 0.5640 +5331 6094 0.7670 +5331 6288 0.4990 +5331 6368 0.4990 +5331 6375 0.4990 +5331 6846 0.4990 +5331 6863 0.5940 +5331 6865 0.5520 +5331 6869 0.5840 +5331 6870 0.5050 +5331 6915 0.6060 +5331 7010 0.6500 +5331 7200 0.5270 +5331 7201 0.5170 +5331 7356 0.7650 +5331 7430 0.4120 +5331 7442 0.4460 +5331 7474 0.5470 +5331 7481 0.5220 +5331 7536 0.7740 +5331 7855 0.5290 +5331 7976 0.5040 +5331 8061 0.7740 +5331 8111 0.5050 +5331 8322 0.5480 +5331 8323 0.5120 +5331 8394 0.7200 +5331 8395 0.7270 +5331 8396 0.7100 +5331 8477 0.5160 +5331 8503 0.6610 +5331 8525 0.7390 +5331 8526 0.6980 +5331 8527 0.6590 +5331 8620 0.4990 +5331 8776 0.6610 +5331 8801 0.5100 +5331 8867 0.6720 +5331 8871 0.6740 +5331 8897 0.6610 +5331 8898 0.6590 +5331 9002 0.5120 +5331 9107 0.6640 +5331 9108 0.6590 +5331 9110 0.6540 +5331 9162 0.7310 +5331 9170 0.7430 +5331 9351 0.7810 +5331 9368 0.8320 +5331 9414 0.4580 +5331 9562 0.9000 +5331 9630 0.9460 +5331 10161 0.5190 +5331 10207 0.4410 +5331 10316 0.5020 +5331 10423 0.9100 +5331 10681 0.7290 +5331 10800 0.5580 +5331 10874 0.5080 +5331 10886 0.5160 +5331 10887 0.5020 +5331 10911 0.5000 +5331 22876 0.9030 +5331 22941 0.5180 +5331 23236 0.8540 +5331 23396 0.7220 +5331 23566 0.6100 +5331 23620 0.5250 +5331 26086 0.5660 +5331 27124 0.6810 +5331 27319 0.4140 +5331 27334 0.4990 +5331 29933 0.4990 +5331 51196 0.7910 +5331 51738 0.5150 +5331 51763 0.6590 +5331 51764 0.9020 +5331 51806 0.7420 +5331 54331 0.8210 +5331 54928 0.6580 +5331 55003 0.5530 +5331 55300 0.7020 +5331 55361 0.6820 +5331 55613 0.6590 +5331 55970 0.6630 +5331 56288 0.6000 +5331 56413 0.5350 +5331 56623 0.6750 +5331 56923 0.5020 +5331 57105 0.6290 +5331 57121 0.6290 +5331 59345 0.8140 +5331 60675 0.4990 +5331 64106 0.5160 +5331 64419 0.6510 +5331 64754 0.4070 +5331 79026 0.7870 +5331 79612 0.4570 +5331 79837 0.7100 +5331 80271 0.7070 +5331 84109 0.5140 +5331 84432 0.4990 +5331 84539 0.5020 +5331 84634 0.5020 +5331 84812 0.7070 +5331 85358 0.4400 +5331 89869 0.7050 +5331 91860 0.7380 +5331 94233 0.5560 +5331 94235 0.7000 +5331 112939 0.4350 +5331 113026 0.7200 +5331 115557 0.4190 +5331 116512 0.4090 +5331 128674 0.5020 +5331 129521 0.5260 +5331 138429 0.6830 +5331 139189 0.6580 +5331 160851 0.7150 +5331 163688 0.7350 +5331 200576 0.9120 +5331 222545 0.9100 +5331 253430 0.9100 +5331 257313 0.5070 +5331 260425 0.5210 +5331 338557 0.5270 +5331 346562 0.9240 +5331 347148 0.5310 +5331 387129 0.5020 +5331 594857 0.4990 +5332 5333 0.6910 +5332 5335 0.7310 +5332 5336 0.7230 +5332 5530 0.7070 +5332 5532 0.6720 +5332 5533 0.7120 +5332 5534 0.6800 +5332 5578 0.9330 +5332 5579 0.9240 +5332 5580 0.9170 +5332 5582 0.9420 +5332 5592 0.9180 +5332 5593 0.9110 +5332 5728 0.9150 +5332 7010 0.6590 +5332 7222 0.4240 +5332 7225 0.5070 +5332 7267 0.4200 +5332 7587 0.4280 +5332 8314 0.4450 +5332 8394 0.7110 +5332 8395 0.7240 +5332 8396 0.6900 +5332 8503 0.6850 +5332 8525 0.6700 +5332 8526 0.6770 +5332 8527 0.6670 +5332 8776 0.7180 +5332 8867 0.6760 +5332 8871 0.6760 +5332 8897 0.6590 +5332 8898 0.6990 +5332 9107 0.6590 +5332 9108 0.6590 +5332 9110 0.6590 +5332 9162 0.6730 +5332 9562 0.9050 +5332 9630 0.9440 +5332 10207 0.9110 +5332 10423 0.9010 +5332 10681 0.6860 +5332 22876 0.9050 +5332 23236 0.7830 +5332 23335 0.4150 +5332 23396 0.7110 +5332 27124 0.6780 +5332 51196 0.6880 +5332 51763 0.6540 +5332 51764 0.9040 +5332 51806 0.7180 +5332 54331 0.6890 +5332 54928 0.6550 +5332 55300 0.6500 +5332 55361 0.6590 +5332 55613 0.7040 +5332 55970 0.6890 +5332 56623 0.6760 +5332 57105 0.7270 +5332 59345 0.6640 +5332 64419 0.6500 +5332 79837 0.7210 +5332 80271 0.7090 +5332 84812 0.6860 +5332 89869 0.6830 +5332 91860 0.7080 +5332 94233 0.5390 +5332 94235 0.6550 +5332 113026 0.6870 +5332 138429 0.6820 +5332 139189 0.6830 +5332 160851 0.7120 +5332 163688 0.7060 +5332 200576 0.9010 +5332 222545 0.9000 +5332 253430 0.9070 +5332 346562 0.9160 +5333 5335 0.7370 +5333 5336 0.7060 +5333 5341 0.8930 +5333 5578 0.9310 +5333 5579 0.9120 +5333 5582 0.9280 +5333 5728 0.9220 +5333 5898 0.8270 +5333 7052 0.5710 +5333 7223 0.4350 +5333 8394 0.7900 +5333 8395 0.7910 +5333 8396 0.7750 +5333 8503 0.6660 +5333 8525 0.7350 +5333 8526 0.7060 +5333 8527 0.6660 +5333 8776 0.6900 +5333 8867 0.8050 +5333 8871 0.7650 +5333 8897 0.6690 +5333 8898 0.7180 +5333 9107 0.6920 +5333 9108 0.6660 +5333 9110 0.6660 +5333 9162 0.7170 +5333 9265 0.5170 +5333 9562 0.9000 +5333 9630 0.4190 +5333 9651 0.5970 +5333 9754 0.7480 +5333 9940 0.7660 +5333 9943 0.5490 +5333 10226 0.4110 +5333 10395 0.9120 +5333 10423 0.9260 +5333 11072 0.4720 +5333 11151 0.4970 +5333 22876 0.9030 +5333 23007 0.5880 +5333 23236 0.7390 +5333 23396 0.8370 +5333 26499 0.9020 +5333 27124 0.7150 +5333 50853 0.4220 +5333 51196 0.6840 +5333 51763 0.7440 +5333 51806 0.5830 +5333 54928 0.6710 +5333 55040 0.4030 +5333 55300 0.7260 +5333 55361 0.7240 +5333 55613 0.6660 +5333 56623 0.7620 +5333 59338 0.4800 +5333 64419 0.6800 +5333 65977 0.5720 +5333 79837 0.7800 +5333 80271 0.6780 +5333 83442 0.4080 +5333 84812 0.9360 +5333 89869 0.7140 +5333 90627 0.4850 +5333 91860 0.5760 +5333 113026 0.9110 +5333 138429 0.7300 +5333 139189 0.6660 +5333 149628 0.4260 +5333 160851 0.6790 +5333 163688 0.5770 +5333 200576 0.9360 +5333 253430 0.9210 +5333 100529144 0.7140 +5334 10207 0.4710 +5334 55879 0.9000 +5334 66037 0.4270 +5334 91526 0.4030 +5334 130132 0.4980 +5335 5336 0.9640 +5335 5337 0.6420 +5335 5338 0.5040 +5335 5341 0.6950 +5335 5460 0.4130 +5335 5495 0.5430 +5335 5499 0.4540 +5335 5530 0.9430 +5335 5532 0.9120 +5335 5533 0.9060 +5335 5534 0.9120 +5335 5573 0.5070 +5335 5578 0.9580 +5335 5579 0.9520 +5335 5580 0.9240 +5335 5581 0.7270 +5335 5582 0.9180 +5335 5587 0.7010 +5335 5588 0.9710 +5335 5590 0.6040 +5335 5594 0.7690 +5335 5595 0.7580 +5335 5610 0.4690 +5335 5623 0.5180 +5335 5728 0.9380 +5335 5747 0.8450 +5335 5764 0.4990 +5335 5777 0.7000 +5335 5781 0.7480 +5335 5787 0.4490 +5335 5788 0.4040 +5335 5795 0.5340 +5335 5829 0.6430 +5335 5877 0.5480 +5335 5879 0.7130 +5335 5903 0.5150 +5335 5921 0.8790 +5335 5924 0.4700 +5335 5979 0.8500 +5335 6093 0.4660 +5335 6197 0.5420 +5335 6238 0.5260 +5335 6366 0.4290 +5335 6387 0.4700 +5335 6452 0.9860 +5335 6461 0.5000 +5335 6464 0.8960 +5335 6494 0.4240 +5335 6654 0.9570 +5335 6655 0.7300 +5335 6657 0.4080 +5335 6714 0.9360 +5335 6772 0.5800 +5335 6774 0.4590 +5335 6777 0.4290 +5335 6786 0.5320 +5335 6801 0.5040 +5335 6850 0.9980 +5335 7001 0.5490 +5335 7006 0.9140 +5335 7039 0.6050 +5335 7057 0.4330 +5335 7094 0.4100 +5335 7124 0.4180 +5335 7157 0.4730 +5335 7170 0.5460 +5335 7171 0.5040 +5335 7175 0.5010 +5335 7220 0.8000 +5335 7222 0.9230 +5335 7223 0.6060 +5335 7224 0.6190 +5335 7225 0.6150 +5335 7294 0.7710 +5335 7305 0.6260 +5335 7324 0.4250 +5335 7326 0.4310 +5335 7409 0.9980 +5335 7410 0.9550 +5335 7414 0.6120 +5335 7429 0.5930 +5335 7442 0.4890 +5335 7454 0.8660 +5335 7462 0.8640 +5335 7529 0.4480 +5335 7535 0.9590 +5335 7706 0.4110 +5335 7750 0.5330 +5335 8074 0.5300 +5335 8394 0.7850 +5335 8395 0.7130 +5335 8396 0.7480 +5335 8496 0.5340 +5335 8503 0.9220 +5335 8525 0.8420 +5335 8526 0.7170 +5335 8527 0.6890 +5335 8533 0.9110 +5335 8605 0.9020 +5335 8615 0.4240 +5335 8631 0.7510 +5335 8660 0.6770 +5335 8681 0.9000 +5335 8776 0.6660 +5335 8805 0.5040 +5335 8817 0.6040 +5335 8822 0.6070 +5335 8823 0.6280 +5335 8867 0.7000 +5335 8871 0.6850 +5335 8878 0.5320 +5335 8897 0.6780 +5335 8898 0.6660 +5335 8915 0.6230 +5335 9047 0.9540 +5335 9048 0.4990 +5335 9063 0.4500 +5335 9107 0.6770 +5335 9108 0.6530 +5335 9110 0.6930 +5335 9162 0.6640 +5335 9169 0.4030 +5335 9208 0.5130 +5335 9246 0.4410 +5335 9318 0.9120 +5335 9365 0.5130 +5335 9398 0.4130 +5335 9402 0.9980 +5335 9423 0.5490 +5335 9451 0.6430 +5335 9459 0.4290 +5335 9530 0.5220 +5335 9531 0.6880 +5335 9542 0.5190 +5335 9562 0.9050 +5335 9636 0.5610 +5335 9648 0.5090 +5335 9651 0.5760 +5335 9840 0.9500 +5335 9844 0.4170 +5335 9846 0.4980 +5335 9965 0.5250 +5335 10019 0.5960 +5335 10125 0.9620 +5335 10155 0.4760 +5335 10342 0.5000 +5335 10399 0.4650 +5335 10401 0.4670 +5335 10423 0.9050 +5335 10451 0.9280 +5335 10634 0.4490 +5335 10657 0.9290 +5335 10681 0.6630 +5335 10718 0.5070 +5335 10725 0.5170 +5335 10750 0.8980 +5335 10818 0.6390 +5335 10870 0.9210 +5335 10920 0.9040 +5335 10980 0.9050 +5335 10987 0.9010 +5335 11052 0.5000 +5335 11062 0.5200 +5335 11064 0.5160 +5335 11116 0.5350 +5335 11140 0.5030 +5335 11160 0.5040 +5335 11171 0.4790 +5335 11184 0.7460 +5335 22872 0.5010 +5335 22876 0.9020 +5335 22914 0.6120 +5335 23007 0.5680 +5335 23236 0.7710 +5335 23396 0.7390 +5335 23524 0.4210 +5335 23586 0.4430 +5335 23678 0.4400 +5335 25820 0.6520 +5335 26127 0.5280 +5335 26281 0.6270 +5335 26499 0.6990 +5335 27006 0.6170 +5335 27040 0.9990 +5335 27071 0.6740 +5335 27124 0.6690 +5335 27436 0.9370 +5335 28964 0.6400 +5335 28988 0.4790 +5335 29760 0.8530 +5335 50813 0.9060 +5335 50852 0.5380 +5335 51138 0.9090 +5335 51196 0.7260 +5335 51744 0.4880 +5335 51763 0.6620 +5335 51764 0.6500 +5335 51806 0.9390 +5335 53335 0.5080 +5335 53347 0.5560 +5335 54209 0.5500 +5335 54331 0.6680 +5335 54822 0.4690 +5335 54900 0.4910 +5335 54928 0.6560 +5335 55300 0.6750 +5335 55361 0.6650 +5335 55613 0.6720 +5335 55620 0.4980 +5335 55876 0.4230 +5335 55914 0.5240 +5335 55969 0.4060 +5335 55970 0.6770 +5335 56169 0.4790 +5335 56623 0.6780 +5335 57113 0.4990 +5335 57448 0.5040 +5335 59345 0.6630 +5335 64096 0.4990 +5335 64419 0.6520 +5335 64708 0.9080 +5335 79716 0.4780 +5335 79837 0.7120 +5335 79890 0.5700 +5335 79892 0.4840 +5335 80271 0.7450 +5335 80304 0.5070 +5335 84433 0.7050 +5335 84812 0.7060 +5335 84868 0.4340 +5335 84876 0.4300 +5335 89853 0.4140 +5335 89869 0.7080 +5335 91860 0.9370 +5335 94235 0.6500 +5335 113026 0.6940 +5335 116449 0.5160 +5335 117157 0.5770 +5335 123745 0.9020 +5335 138429 0.7170 +5335 139189 0.6730 +5335 145957 0.5080 +5335 150678 0.9000 +5335 152831 0.5320 +5335 160851 0.6870 +5335 163688 0.9370 +5335 200576 0.9100 +5335 253430 0.9160 +5335 255189 0.9020 +5335 255324 0.5260 +5335 257202 0.4010 +5335 283748 0.9040 +5335 338328 0.6460 +5335 387357 0.9140 +5335 390714 0.4990 +5335 399687 0.5040 +5335 493869 0.4080 +5335 100137049 0.9040 +5335 102723407 0.9100 +5336 5337 0.5940 +5336 5341 0.6410 +5336 5530 0.9120 +5336 5532 0.9140 +5336 5533 0.9070 +5336 5534 0.9050 +5336 5578 0.9490 +5336 5579 0.9730 +5336 5580 0.9400 +5336 5582 0.9000 +5336 5586 0.4510 +5336 5587 0.4500 +5336 5595 0.4610 +5336 5728 0.9310 +5336 5747 0.6360 +5336 5777 0.5590 +5336 5781 0.9340 +5336 5788 0.6750 +5336 5829 0.4980 +5336 5877 0.5720 +5336 5879 0.5670 +5336 5880 0.9670 +5336 6403 0.4920 +5336 6452 0.9700 +5336 6464 0.9300 +5336 6654 0.5640 +5336 6714 0.9750 +5336 6772 0.6480 +5336 6774 0.7810 +5336 6786 0.4460 +5336 6850 0.9990 +5336 7006 0.9190 +5336 7099 0.6320 +5336 7124 0.4160 +5336 7157 0.4380 +5336 7222 0.4470 +5336 7294 0.5920 +5336 7305 0.8630 +5336 7408 0.4040 +5336 7409 0.9980 +5336 7410 0.9320 +5336 7450 0.4610 +5336 7454 0.6540 +5336 7462 0.7760 +5336 7525 0.8200 +5336 7535 0.8510 +5336 8394 0.7050 +5336 8395 0.7110 +5336 8396 0.7170 +5336 8503 0.9090 +5336 8525 0.7180 +5336 8526 0.8080 +5336 8527 0.6770 +5336 8563 0.8060 +5336 8600 0.4500 +5336 8605 0.9120 +5336 8660 0.5470 +5336 8681 0.9000 +5336 8776 0.6570 +5336 8867 0.6500 +5336 8871 0.6620 +5336 8897 0.6800 +5336 8898 0.6790 +5336 8915 0.5080 +5336 8935 0.5820 +5336 9047 0.9120 +5336 9107 0.6740 +5336 9108 0.6530 +5336 9110 0.6830 +5336 9162 0.6520 +5336 9402 0.8940 +5336 9562 0.9000 +5336 9564 0.4690 +5336 9651 0.5690 +5336 9846 0.9540 +5336 10125 0.6350 +5336 10156 0.4310 +5336 10235 0.4530 +5336 10320 0.5770 +5336 10347 0.4290 +5336 10423 0.9030 +5336 10451 0.9410 +5336 10536 0.4020 +5336 10630 0.6870 +5336 10673 0.4270 +5336 10681 0.6630 +5336 10870 0.9450 +5336 10892 0.4770 +5336 22876 0.9020 +5336 22914 0.6450 +5336 23007 0.5720 +5336 23236 0.7340 +5336 23396 0.7290 +5336 23492 0.4050 +5336 23495 0.5620 +5336 23533 0.4910 +5336 23643 0.6230 +5336 25780 0.9330 +5336 26253 0.6380 +5336 26499 0.5260 +5336 27040 0.9160 +5336 27071 0.9620 +5336 27124 0.6670 +5336 27436 0.9000 +5336 29760 0.9990 +5336 30011 0.6880 +5336 50943 0.4890 +5336 51196 0.7110 +5336 51206 0.8800 +5336 51225 0.6700 +5336 51266 0.8220 +5336 51744 0.5180 +5336 51763 0.6660 +5336 51764 0.6500 +5336 51806 0.9300 +5336 54209 0.7820 +5336 54331 0.6720 +5336 54928 0.6520 +5336 55024 0.6540 +5336 55300 0.6810 +5336 55361 0.6600 +5336 55613 0.6530 +5336 55970 0.6680 +5336 56623 0.6610 +5336 59345 0.6630 +5336 64419 0.6520 +5336 64581 0.8530 +5336 64805 0.4450 +5336 79837 0.7080 +5336 79930 0.4120 +5336 80271 0.7130 +5336 83648 0.4160 +5336 83660 0.5280 +5336 83706 0.4150 +5336 84106 0.4850 +5336 84433 0.5750 +5336 84812 0.6970 +5336 89869 0.7060 +5336 90070 0.4060 +5336 91860 0.9270 +5336 93978 0.6480 +5336 94235 0.6560 +5336 113026 0.6950 +5336 115650 0.4380 +5336 117157 0.5330 +5336 118788 0.4730 +5336 123745 0.9100 +5336 138429 0.7010 +5336 139189 0.6630 +5336 139716 0.5130 +5336 146433 0.5780 +5336 160851 0.7050 +5336 163688 0.9270 +5336 200576 0.9100 +5336 253430 0.9110 +5336 255189 0.9050 +5336 283748 0.9020 +5336 377841 0.4180 +5336 100137049 0.9080 +5336 102723407 0.9450 +5337 5338 0.9060 +5337 5578 0.9600 +5337 5585 0.6430 +5337 5663 0.7110 +5337 5664 0.4270 +5337 5723 0.6420 +5337 5864 0.6470 +5337 5879 0.5990 +5337 5898 0.9840 +5337 5899 0.9640 +5337 6009 0.7680 +5337 6197 0.4090 +5337 6237 0.9120 +5337 6610 0.4580 +5337 6622 0.4480 +5337 6714 0.4970 +5337 6812 0.5900 +5337 8398 0.7040 +5337 8399 0.6550 +5337 8525 0.7600 +5337 8526 0.6970 +5337 8527 0.6760 +5337 8605 0.6720 +5337 8612 0.7590 +5337 8613 0.7850 +5337 8681 0.7270 +5337 8682 0.8540 +5337 8760 0.9510 +5337 8773 0.5180 +5337 8826 0.4240 +5337 8877 0.9290 +5337 8987 0.4040 +5337 9162 0.7120 +5337 9468 0.4570 +5337 9627 0.5990 +5337 9663 0.7230 +5337 9791 0.9220 +5337 10066 0.5630 +5337 10162 0.9130 +5337 10390 0.9380 +5337 10400 0.9330 +5337 10423 0.4240 +5337 10554 0.7230 +5337 10555 0.7360 +5337 10628 0.4020 +5337 10788 0.4340 +5337 11113 0.4380 +5337 11145 0.9100 +5337 22800 0.9150 +5337 23075 0.4050 +5337 23175 0.7370 +5337 23385 0.5220 +5337 23479 0.5430 +5337 23646 0.9230 +5337 23761 0.9740 +5337 26030 0.4050 +5337 26279 0.6500 +5337 29941 0.4330 +5337 30814 0.6540 +5337 50487 0.6530 +5337 51107 0.5350 +5337 51762 0.6190 +5337 51806 0.5420 +5337 54583 0.6380 +5337 54675 0.4280 +5337 54947 0.9250 +5337 55004 0.4720 +5337 55326 0.6850 +5337 55349 0.8190 +5337 55851 0.5490 +5337 56848 0.9220 +5337 56894 0.6880 +5337 56895 0.6900 +5337 56994 0.9410 +5337 63893 0.4260 +5337 64600 0.6530 +5337 64837 0.4590 +5337 64900 0.7250 +5337 79888 0.9280 +5337 80117 0.5400 +5337 81490 0.9260 +5337 81579 0.6500 +5337 81624 0.4060 +5337 83464 0.4020 +5337 84513 0.9260 +5337 84647 0.6990 +5337 85465 0.9240 +5337 89953 0.5150 +5337 90070 0.4420 +5337 91860 0.5200 +5337 122618 0.9240 +5337 123745 0.6720 +5337 128239 0.4030 +5337 129642 0.9260 +5337 139189 0.6640 +5337 147700 0.4570 +5337 151056 0.6840 +5337 154141 0.9000 +5337 160851 0.6740 +5337 163688 0.5200 +5337 196051 0.9260 +5337 253558 0.7060 +5337 254531 0.9100 +5337 255189 0.6720 +5337 283748 0.6720 +5337 360226 0.4040 +5337 387521 0.9000 +5337 387522 0.9020 +5337 391013 0.6620 +5337 440712 0.4200 +5337 728378 0.4270 +5337 100137049 0.6720 +5338 5341 0.4740 +5338 5578 0.9520 +5338 5580 0.4810 +5338 5723 0.6400 +5338 5770 0.4830 +5338 5877 0.5900 +5338 5879 0.5310 +5338 5880 0.9390 +5338 5898 0.9740 +5338 5899 0.9260 +5338 6198 0.6960 +5338 6199 0.5400 +5338 6237 0.9140 +5338 6386 0.7730 +5338 6610 0.5020 +5338 6622 0.6490 +5338 6714 0.8440 +5338 7037 0.5770 +5338 7112 0.4020 +5338 7454 0.5640 +5338 7879 0.5140 +5338 8398 0.7330 +5338 8399 0.7090 +5338 8503 0.4170 +5338 8525 0.8010 +5338 8526 0.7680 +5338 8527 0.7130 +5338 8605 0.7070 +5338 8611 0.4280 +5338 8612 0.7820 +5338 8613 0.7910 +5338 8681 0.7270 +5338 8682 0.4440 +5338 8760 0.9460 +5338 8766 0.4060 +5338 8826 0.5170 +5338 8877 0.9320 +5338 9162 0.7430 +5338 9341 0.5240 +5338 9468 0.4200 +5338 9663 0.7270 +5338 9710 0.4380 +5338 9791 0.9240 +5338 10006 0.4100 +5338 10152 0.4080 +5338 10162 0.9060 +5338 10163 0.4780 +5338 10298 0.4200 +5338 10383 0.4430 +5338 10390 0.9310 +5338 10400 0.9180 +5338 10423 0.4010 +5338 10554 0.7480 +5338 10555 0.7150 +5338 11135 0.4160 +5338 11145 0.9170 +5338 22800 0.9080 +5338 23075 0.4120 +5338 23175 0.7570 +5338 23191 0.4220 +5338 23396 0.5650 +5338 23479 0.5420 +5338 23580 0.4650 +5338 23646 0.9650 +5338 23761 0.9710 +5338 25894 0.4050 +5338 26030 0.4080 +5338 26050 0.4050 +5338 26279 0.7040 +5338 26499 0.4550 +5338 28964 0.4260 +5338 29907 0.4540 +5338 30814 0.6790 +5338 50487 0.7030 +5338 51347 0.4150 +5338 54207 0.6470 +5338 54947 0.9160 +5338 55004 0.4170 +5338 55326 0.6940 +5338 55349 0.8430 +5338 55512 0.4080 +5338 55789 0.4080 +5338 55914 0.4050 +5338 55971 0.4220 +5338 56848 0.9310 +5338 56894 0.7360 +5338 56895 0.7100 +5338 56994 0.9440 +5338 57521 0.8050 +5338 64600 0.6590 +5338 64900 0.7450 +5338 79888 0.9220 +5338 81490 0.9260 +5338 81579 0.6640 +5338 81624 0.4210 +5338 84513 0.9260 +5338 84647 0.6540 +5338 85465 0.9220 +5338 122618 0.9560 +5338 123745 0.6870 +5338 129642 0.9380 +5338 139189 0.7270 +5338 143098 0.4090 +5338 151056 0.6840 +5338 154141 0.9050 +5338 160851 0.7180 +5338 196051 0.9260 +5338 200150 0.6400 +5338 201164 0.7050 +5338 222236 0.9180 +5338 253558 0.7020 +5338 254531 0.9160 +5338 255189 0.6770 +5338 283748 0.6940 +5338 387521 0.9000 +5338 387522 0.9020 +5338 391013 0.6840 +5338 653361 0.5350 +5338 728378 0.4310 +5338 100137049 0.6840 +5339 5493 0.7340 +5339 5738 0.4130 +5339 5829 0.7300 +5339 5859 0.4860 +5339 5913 0.4770 +5339 5962 0.4730 +5339 6442 0.5890 +5339 6443 0.5910 +5339 6444 0.5420 +5339 6445 0.5680 +5339 6497 0.4070 +5339 6506 0.5750 +5339 6624 0.5680 +5339 6645 0.4850 +5339 6676 0.4490 +5339 6708 0.5340 +5339 6709 0.7950 +5339 6714 0.6110 +5339 7051 0.5010 +5339 7062 0.5670 +5339 7082 0.4410 +5339 7094 0.7060 +5339 7124 0.4240 +5339 7273 0.5010 +5339 7314 0.5510 +5339 7402 0.5540 +5339 7414 0.7190 +5339 7415 0.5780 +5339 7431 0.9230 +5339 7798 0.5020 +5339 7852 0.4850 +5339 7871 0.7240 +5339 8082 0.4080 +5339 8139 0.4560 +5339 8290 0.4070 +5339 8291 0.6010 +5339 8292 0.4530 +5339 8557 0.7150 +5339 8615 0.4200 +5339 8988 0.9480 +5339 9260 0.5030 +5339 9499 0.7510 +5339 9531 0.5740 +5339 9612 0.4010 +5339 10049 0.4490 +5339 10399 0.7960 +5339 10458 0.4610 +5339 10585 0.5740 +5339 10634 0.6190 +5339 10763 0.5950 +5339 11155 0.4450 +5339 11187 0.4460 +5339 11344 0.4240 +5339 11346 0.5110 +5339 22954 0.4950 +5339 23086 0.4360 +5339 23224 0.6910 +5339 23336 0.8810 +5339 23345 0.8280 +5339 23353 0.6440 +5339 23363 0.6260 +5339 25777 0.6610 +5339 25791 0.4120 +5339 29954 0.5490 +5339 50626 0.4440 +5339 51422 0.4320 +5339 51474 0.6190 +5339 51806 0.6740 +5339 54438 0.4180 +5339 54443 0.4350 +5339 54848 0.4570 +5339 55421 0.4670 +5339 55612 0.4440 +5339 55624 0.5020 +5339 57716 0.5680 +5339 58529 0.5320 +5339 79026 0.7300 +5339 79147 0.5480 +5339 80323 0.4290 +5339 80781 0.4450 +5339 81493 0.5940 +5339 83660 0.6510 +5339 84033 0.4440 +5339 84823 0.4600 +5339 84875 0.8660 +5339 85477 0.5480 +5339 91860 0.5890 +5339 116443 0.4430 +5339 120892 0.5280 +5339 140732 0.4280 +5339 144568 0.6020 +5339 147872 0.6490 +5339 161176 0.9980 +5339 163183 0.8370 +5339 163688 0.5970 +5339 203859 0.6060 +5339 256979 0.5000 +5339 285489 0.4610 +5339 375790 0.4940 +5339 100820829 0.5650 +5340 5345 0.9990 +5340 5444 0.6510 +5340 5473 0.6590 +5340 5595 0.4190 +5340 5621 0.5940 +5340 5624 0.5120 +5340 5627 0.6390 +5340 5644 0.8320 +5340 5645 0.4890 +5340 5743 0.4300 +5340 5806 0.4070 +5340 5950 0.4230 +5340 5970 0.4030 +5340 5972 0.6040 +5340 6281 0.9920 +5340 6291 0.4250 +5340 6317 0.6140 +5340 6318 0.6900 +5340 6347 0.6830 +5340 6387 0.4180 +5340 6401 0.5230 +5340 6403 0.6020 +5340 6440 0.4540 +5340 6441 0.4110 +5340 6678 0.5320 +5340 6690 0.4600 +5340 6694 0.4550 +5340 6696 0.4380 +5340 6714 0.4820 +5340 6774 0.6110 +5340 6888 0.4470 +5340 6950 0.4310 +5340 7001 0.4570 +5340 7010 0.4440 +5340 7018 0.6230 +5340 7035 0.8150 +5340 7040 0.6230 +5340 7056 0.8960 +5340 7057 0.8790 +5340 7058 0.7540 +5340 7070 0.4890 +5340 7076 0.7430 +5340 7077 0.5980 +5340 7078 0.4010 +5340 7086 0.4570 +5340 7098 0.4790 +5340 7099 0.4220 +5340 7123 0.9960 +5340 7124 0.6730 +5340 7157 0.4970 +5340 7167 0.7230 +5340 7177 0.4310 +5340 7276 0.5060 +5340 7341 0.6380 +5340 7412 0.5860 +5340 7416 0.4800 +5340 7424 0.4930 +5340 7436 0.4810 +5340 7448 0.9950 +5340 7450 0.7980 +5340 7837 0.4710 +5340 7980 0.6330 +5340 8277 0.4570 +5340 8340 0.8670 +5340 8341 0.8670 +5340 8342 0.8670 +5340 8345 0.8670 +5340 8347 0.8660 +5340 8348 0.8670 +5340 8349 0.9330 +5340 8526 0.4460 +5340 8547 0.5260 +5340 8607 0.4540 +5340 8710 0.4190 +5340 8817 0.5110 +5340 8822 0.5120 +5340 8823 0.5080 +5340 8858 0.4700 +5340 8970 0.8730 +5340 9002 0.6970 +5340 9172 0.9880 +5340 9313 0.4740 +5340 9370 0.5800 +5340 10536 0.5950 +5340 10544 0.4460 +5340 10567 0.8550 +5340 10733 0.9240 +5340 10747 0.4320 +5340 10841 0.4770 +5340 10857 0.4710 +5340 11093 0.5780 +5340 11330 0.4720 +5340 26281 0.5110 +5340 27006 0.5120 +5340 27329 0.5810 +5340 30816 0.9760 +5340 51056 0.4480 +5340 51156 0.7340 +5340 54145 0.8730 +5340 55848 0.9860 +5340 56034 0.5820 +5340 56288 0.6500 +5340 56302 0.5150 +5340 56729 0.5050 +5340 57126 0.4630 +5340 59272 0.4650 +5340 64581 0.4060 +5340 80310 0.5190 +5340 80781 0.8890 +5340 84076 0.4620 +5340 84666 0.4800 +5340 85236 0.8750 +5340 116519 0.6860 +5340 128312 0.8670 +5340 136991 0.4320 +5340 137902 0.4710 +5340 153562 0.4310 +5340 154796 0.9930 +5340 158983 0.8670 +5340 171425 0.4260 +5340 255626 0.8670 +5340 286436 0.8670 +5340 374569 0.4160 +5340 405754 0.9770 +5340 440387 0.5010 +5340 440689 0.8770 +5340 643834 0.5530 +5340 643847 0.5350 +5340 653145 0.8680 +5340 102723407 0.9170 +5340 114483833 0.8670 +5341 5552 0.4830 +5341 5566 0.4520 +5341 5567 0.4450 +5341 5568 0.4420 +5341 5587 0.6500 +5341 5662 0.4470 +5341 5710 0.5510 +5341 5728 0.6600 +5341 5777 0.4010 +5341 5781 0.4780 +5341 5788 0.5630 +5341 5829 0.4530 +5341 5868 0.5100 +5341 5877 0.8610 +5341 5880 0.7320 +5341 5908 0.4180 +5341 5921 0.7980 +5341 5922 0.5260 +5341 5923 0.4950 +5341 5924 0.4810 +5341 5962 0.6960 +5341 5996 0.7510 +5341 5999 0.6450 +5341 6000 0.7330 +5341 6001 0.7060 +5341 6002 0.6930 +5341 6003 0.7020 +5341 6004 0.6830 +5341 6009 0.5090 +5341 6093 0.4040 +5341 6195 0.4120 +5341 6198 0.5270 +5341 6199 0.4330 +5341 6305 0.5500 +5341 6348 0.4840 +5341 6351 0.5020 +5341 6402 0.4400 +5341 6446 0.4910 +5341 6452 0.5780 +5341 6453 0.6200 +5341 6464 0.4700 +5341 6647 0.4490 +5341 6654 0.6170 +5341 6655 0.4450 +5341 6688 0.6060 +5341 6710 0.4420 +5341 6711 0.5330 +5341 6712 0.5060 +5341 6714 0.8770 +5341 6813 0.4230 +5341 6850 0.6220 +5341 7074 0.7110 +5341 7094 0.7800 +5341 7124 0.4920 +5341 7157 0.4180 +5341 7222 0.6510 +5341 7249 0.5210 +5341 7262 0.5580 +5341 7273 0.4670 +5341 7277 0.4360 +5341 7294 0.6430 +5341 7305 0.7100 +5341 7408 0.6480 +5341 7409 0.6970 +5341 7410 0.4950 +5341 7414 0.6040 +5341 7415 0.4760 +5341 7430 0.5600 +5341 7454 0.6650 +5341 7456 0.4150 +5341 7535 0.4080 +5341 7805 0.6820 +5341 7855 0.4200 +5341 8115 0.4970 +5341 8407 0.4280 +5341 8411 0.5710 +5341 8436 0.6280 +5341 8437 0.5830 +5341 8471 0.5310 +5341 8477 0.4620 +5341 8490 0.6780 +5341 8503 0.4310 +5341 8526 0.4220 +5341 8527 0.6760 +5341 8530 0.4210 +5341 8601 0.6950 +5341 8631 0.6690 +5341 8660 0.5780 +5341 8786 0.7450 +5341 8787 0.4300 +5341 8801 0.7000 +5341 8821 0.6370 +5341 8853 0.4100 +5341 8856 0.4090 +5341 8867 0.4180 +5341 8874 0.4370 +5341 8898 0.5920 +5341 8935 0.5690 +5341 8976 0.4260 +5341 8997 0.5860 +5341 9046 0.5430 +5341 9138 0.5540 +5341 9181 0.5940 +5341 9218 0.6150 +5341 9265 0.8270 +5341 9266 0.7350 +5341 9267 0.9200 +5341 9450 0.5210 +5341 9459 0.4300 +5341 9462 0.4360 +5341 9475 0.4450 +5341 9595 0.4880 +5341 9628 0.7690 +5341 9681 0.4210 +5341 9685 0.4870 +5341 9744 0.6450 +5341 9826 0.6090 +5341 9842 0.7040 +5341 9846 0.5740 +5341 9855 0.4300 +5341 9885 0.6660 +5341 9922 0.5940 +5341 9938 0.5590 +5341 9948 0.4600 +5341 10000 0.7230 +5341 10019 0.6680 +5341 10059 0.5550 +5341 10087 0.7510 +5341 10125 0.5790 +5341 10156 0.5540 +5341 10160 0.6940 +5341 10256 0.5390 +5341 10261 0.5060 +5341 10287 0.7180 +5341 10288 0.4290 +5341 10320 0.4090 +5341 10411 0.4300 +5341 10451 0.4720 +5341 10673 0.4210 +5341 10681 0.5210 +5341 10870 0.4290 +5341 10871 0.4190 +5341 10979 0.7160 +5341 11033 0.7070 +5341 11047 0.6480 +5341 11078 0.5710 +5341 11151 0.4520 +5341 11214 0.6190 +5341 11314 0.4580 +5341 22821 0.6310 +5341 22822 0.6620 +5341 22874 0.6480 +5341 22899 0.4590 +5341 22905 0.5070 +5341 23007 0.5250 +5341 23011 0.4960 +5341 23035 0.6850 +5341 23052 0.4030 +5341 23164 0.4650 +5341 23187 0.6130 +5341 23207 0.5950 +5341 23229 0.6810 +5341 23239 0.7860 +5341 23263 0.5460 +5341 23348 0.5400 +5341 23365 0.4470 +5341 23527 0.5790 +5341 23533 0.6350 +5341 23612 0.5990 +5341 23683 0.7670 +5341 23762 0.7240 +5341 25791 0.4800 +5341 25865 0.6700 +5341 25998 0.4760 +5341 26031 0.7240 +5341 26052 0.6240 +5341 26060 0.6780 +5341 26228 0.5600 +5341 26230 0.5680 +5341 26575 0.6960 +5341 27071 0.7530 +5341 27128 0.5740 +5341 27241 0.5970 +5341 29760 0.4520 +5341 29780 0.5400 +5341 30011 0.4890 +5341 50618 0.5340 +5341 50649 0.4980 +5341 50650 0.6440 +5341 50807 0.7190 +5341 51028 0.5090 +5341 51094 0.4290 +5341 51100 0.4330 +5341 51177 0.6700 +5341 51228 0.6020 +5341 51311 0.4390 +5341 51332 0.4710 +5341 51806 0.5180 +5341 54212 0.5140 +5341 54221 0.4830 +5341 54440 0.4840 +5341 54477 0.5710 +5341 54518 0.6020 +5341 54704 0.4170 +5341 55040 0.5210 +5341 55041 0.5990 +5341 55200 0.4780 +5341 55212 0.6020 +5341 55612 0.7720 +5341 55635 0.5930 +5341 55671 0.4740 +5341 55701 0.5360 +5341 55715 0.6980 +5341 55742 0.6180 +5341 55789 0.4800 +5341 55803 0.6470 +5341 55816 0.6370 +5341 55843 0.6820 +5341 57223 0.4960 +5341 57449 0.6780 +5341 57480 0.5020 +5341 57521 0.6550 +5341 57569 0.4560 +5341 57580 0.6560 +5341 57584 0.5260 +5341 57636 0.4540 +5341 57647 0.4460 +5341 57664 0.7350 +5341 57705 0.5900 +5341 58473 0.5420 +5341 58504 0.6040 +5341 60312 0.6160 +5341 64005 0.5640 +5341 64092 0.4250 +5341 64098 0.6180 +5341 64223 0.4470 +5341 64283 0.6050 +5341 64407 0.7890 +5341 64411 0.5640 +5341 64419 0.4510 +5341 64581 0.4260 +5341 64781 0.5330 +5341 64798 0.4470 +5341 64857 0.4600 +5341 64926 0.4040 +5341 65059 0.4860 +5341 65977 0.7820 +5341 79109 0.5050 +5341 79674 0.5960 +5341 79930 0.4700 +5341 80243 0.4800 +5341 81704 0.4110 +5341 81846 0.4850 +5341 83660 0.6290 +5341 83706 0.8330 +5341 84033 0.4610 +5341 84335 0.6140 +5341 84632 0.5380 +5341 84725 0.6870 +5341 85397 0.6960 +5341 89869 0.6920 +5341 90102 0.5490 +5341 90167 0.4150 +5341 91404 0.5020 +5341 91860 0.5190 +5341 92482 0.5860 +5341 94134 0.7120 +5341 113026 0.4300 +5341 114876 0.5730 +5341 114879 0.7240 +5341 114880 0.6910 +5341 114881 0.6630 +5341 114882 0.6990 +5341 114883 0.5110 +5341 114884 0.6030 +5341 114885 0.6170 +5341 115557 0.6280 +5341 116984 0.6430 +5341 116985 0.6680 +5341 116986 0.5540 +5341 116987 0.4850 +5341 117289 0.5510 +5341 121512 0.5540 +5341 129880 0.6390 +5341 133482 0.4800 +5341 139716 0.6440 +5341 144100 0.5010 +5341 146850 0.4080 +5341 160851 0.5650 +5341 163688 0.5180 +5341 200576 0.5760 +5341 219972 0.4320 +5341 220164 0.4740 +5341 221178 0.5030 +5341 253260 0.5740 +5341 401190 0.5080 +5341 431704 0.7140 +5341 440073 0.4510 +5341 653361 0.4720 +5342 170062 0.5120 +5342 201140 0.4970 +5342 285605 0.4140 +5342 388555 0.4480 +5342 729422 0.5710 +5342 729428 0.4470 +5342 729431 0.4760 +5342 100132399 0.5410 +5343 7448 0.4940 +5343 7783 0.7560 +5343 58503 0.8550 +5345 5348 0.5900 +5345 5360 0.4470 +5345 5473 0.4800 +5345 5624 0.9720 +5345 5858 0.6180 +5345 6694 0.4140 +5345 6906 0.5180 +5345 7035 0.6150 +5345 7056 0.6240 +5345 7057 0.8580 +5345 7076 0.4870 +5345 7077 0.4100 +5345 7276 0.4070 +5345 7448 0.8850 +5345 7450 0.6610 +5345 9622 0.5840 +5345 10841 0.5700 +5345 10875 0.7560 +5345 11093 0.4810 +5345 11112 0.6100 +5345 23181 0.4890 +5345 27071 0.4770 +5345 30061 0.5510 +5345 51156 0.5370 +5345 55937 0.5820 +5345 57817 0.5700 +5345 64577 0.4330 +5345 79651 0.4420 +5345 81494 0.4570 +5345 90525 0.5780 +5345 136991 0.5220 +5345 256394 0.4330 +5345 257202 0.4260 +5345 284293 0.4840 +5345 440387 0.6340 +5345 493869 0.4300 +5346 5406 0.4210 +5346 5465 0.6330 +5346 5467 0.4210 +5346 5468 0.9290 +5346 5469 0.5690 +5346 5499 0.4760 +5346 5500 0.4730 +5346 5501 0.4760 +5346 5566 0.9610 +5346 5567 0.9600 +5346 5568 0.9610 +5346 5592 0.9160 +5346 5593 0.9010 +5346 6256 0.6310 +5346 6257 0.5020 +5346 6319 0.5780 +5346 6342 0.4120 +5346 6513 0.4830 +5346 6517 0.7570 +5346 6720 0.6520 +5346 6721 0.4010 +5346 6837 0.5020 +5346 7069 0.7280 +5346 7097 0.5630 +5346 7124 0.4260 +5346 7350 0.7590 +5346 7351 0.4720 +5346 7352 0.4380 +5346 7376 0.5390 +5346 7837 0.4230 +5346 8120 0.6430 +5346 8202 0.5150 +5346 8648 0.5340 +5346 8694 0.6710 +5346 8788 0.4220 +5346 8841 0.5700 +5346 8878 0.5850 +5346 9282 0.5310 +5346 9308 0.4380 +5346 9370 0.9470 +5346 9412 0.5120 +5346 9439 0.4990 +5346 9440 0.5090 +5346 9441 0.5080 +5346 9442 0.5070 +5346 9443 0.5130 +5346 9477 0.4990 +5346 9611 0.6040 +5346 9612 0.6220 +5346 9807 0.4950 +5346 9862 0.5070 +5346 9927 0.8950 +5346 9967 0.5190 +5346 9968 0.5270 +5346 9969 0.5220 +5346 10001 0.5130 +5346 10025 0.5190 +5346 10062 0.6310 +5346 10226 0.4960 +5346 10384 0.4400 +5346 10385 0.4480 +5346 10499 0.5340 +5346 10555 0.6220 +5346 10891 0.7880 +5346 10917 0.4480 +5346 10999 0.5980 +5346 11001 0.5480 +5346 11027 0.4950 +5346 11118 0.4340 +5346 11119 0.4260 +5346 11120 0.4410 +5346 11151 0.5020 +5346 11343 0.6780 +5346 22931 0.5280 +5346 23097 0.5250 +5346 23175 0.5010 +5346 23389 0.5030 +5346 23411 0.4040 +5346 26291 0.4740 +5346 26580 0.7320 +5346 27141 0.7290 +5346 29079 0.5020 +5346 29923 0.4450 +5346 50486 0.5440 +5346 51003 0.5110 +5346 51085 0.4470 +5346 51099 0.9990 +5346 51129 0.4050 +5346 51586 0.4990 +5346 54797 0.4990 +5346 55090 0.4990 +5346 55588 0.4990 +5346 56729 0.5940 +5346 57104 0.9450 +5346 57678 0.5490 +5346 63924 0.9900 +5346 63976 0.6420 +5346 64083 0.4360 +5346 64102 0.5150 +5346 79888 0.4360 +5346 79908 0.4430 +5346 80306 0.5190 +5346 80339 0.5510 +5346 81857 0.5190 +5346 83401 0.6360 +5346 84246 0.5110 +5346 84498 0.5970 +5346 84649 0.6900 +5346 84666 0.4200 +5346 84803 0.5790 +5346 85441 0.5440 +5346 90390 0.4990 +5346 112950 0.5020 +5346 114625 0.4470 +5346 116519 0.4100 +5346 126129 0.4040 +5346 128486 0.5140 +5346 132949 0.6260 +5346 137902 0.4230 +5346 137964 0.5300 +5346 150379 0.4410 +5346 153579 0.4690 +5346 158833 0.4100 +5346 219623 0.4130 +5346 284119 0.4820 +5346 286753 0.5460 +5346 345275 0.4470 +5346 376497 0.6540 +5346 400258 0.4470 +5346 400569 0.5040 +5346 440503 0.5990 +5346 641371 0.4310 +5346 728378 0.4210 +5346 729359 0.9800 +5347 5424 0.4240 +5347 5444 0.4870 +5347 5499 0.4380 +5347 5500 0.6660 +5347 5501 0.9040 +5347 5510 0.4310 +5347 5515 0.8240 +5347 5516 0.7840 +5347 5518 0.8900 +5347 5519 0.5760 +5347 5520 0.8150 +5347 5521 0.5960 +5347 5525 0.6830 +5347 5526 0.5990 +5347 5527 0.6270 +5347 5528 0.7110 +5347 5529 0.6020 +5347 5531 0.8310 +5347 5537 0.6250 +5347 5566 0.8190 +5347 5577 0.8120 +5347 5591 0.6020 +5347 5688 0.4140 +5347 5693 0.4080 +5347 5728 0.8700 +5347 5832 0.4270 +5347 5861 0.5250 +5347 5862 0.5660 +5347 5884 0.5640 +5347 5885 0.8940 +5347 5887 0.4010 +5347 5888 0.8480 +5347 5894 0.5140 +5347 5903 0.9020 +5347 5905 0.8820 +5347 5925 0.4120 +5347 5928 0.6200 +5347 5932 0.5080 +5347 5934 0.4640 +5347 5970 0.6670 +5347 5983 0.4610 +5347 5984 0.6560 +5347 6232 0.8010 +5347 6233 0.5540 +5347 6240 0.5470 +5347 6241 0.8730 +5347 6249 0.9020 +5347 6396 0.5250 +5347 6491 0.5580 +5347 6500 0.7530 +5347 6502 0.6280 +5347 6717 0.4120 +5347 6774 0.6270 +5347 6788 0.4480 +5347 6790 0.9970 +5347 6793 0.4340 +5347 6795 0.5170 +5347 6839 0.4920 +5347 6950 0.4870 +5347 7083 0.5900 +5347 7110 0.4180 +5347 7153 0.9310 +5347 7155 0.4850 +5347 7156 0.8320 +5347 7157 0.9810 +5347 7158 0.8700 +5347 7159 0.4710 +5347 7178 0.5920 +5347 7248 0.5110 +5347 7249 0.4340 +5347 7272 0.6530 +5347 7277 0.8860 +5347 7283 0.9430 +5347 7298 0.4740 +5347 7311 0.5170 +5347 7314 0.5890 +5347 7316 0.5610 +5347 7321 0.5830 +5347 7324 0.5210 +5347 7341 0.4140 +5347 7415 0.5260 +5347 7431 0.5450 +5347 7443 0.5020 +5347 7444 0.5520 +5347 7450 0.4190 +5347 7465 0.9920 +5347 7486 0.4070 +5347 7514 0.8680 +5347 7531 0.8340 +5347 7532 0.8370 +5347 7813 0.7780 +5347 7837 0.4240 +5347 7840 0.8080 +5347 7846 0.8880 +5347 7874 0.6620 +5347 7919 0.5080 +5347 8208 0.5300 +5347 8237 0.4070 +5347 8243 0.9240 +5347 8290 0.8190 +5347 8313 0.4590 +5347 8317 0.7110 +5347 8318 0.7770 +5347 8331 0.5170 +5347 8334 0.5350 +5347 8337 0.6520 +5347 8338 0.6530 +5347 8340 0.6900 +5347 8341 0.6870 +5347 8342 0.7150 +5347 8345 0.6930 +5347 8347 0.6830 +5347 8348 0.6910 +5347 8349 0.7220 +5347 8356 0.8230 +5347 8361 0.6390 +5347 8379 0.8440 +5347 8438 0.5790 +5347 8452 0.6940 +5347 8453 0.4020 +5347 8454 0.7390 +5347 8481 0.8920 +5347 8517 0.4250 +5347 8522 0.4310 +5347 8548 0.5520 +5347 8555 0.5840 +5347 8556 0.8290 +5347 8615 0.5140 +5347 8636 0.8050 +5347 8655 0.8940 +5347 8697 0.7660 +5347 8766 0.6350 +5347 8772 0.4290 +5347 8850 0.5290 +5347 8881 0.7920 +5347 8900 0.8660 +5347 8914 0.5380 +5347 8945 0.9520 +5347 8970 0.6900 +5347 9025 0.4630 +5347 9043 0.6350 +5347 9050 0.4640 +5347 9051 0.4660 +5347 9055 0.9550 +5347 9088 0.9870 +5347 9126 0.9150 +5347 9133 0.9950 +5347 9134 0.4950 +5347 9149 0.4610 +5347 9156 0.7770 +5347 9183 0.6970 +5347 9184 0.8520 +5347 9212 0.9390 +5347 9232 0.9560 +5347 9314 0.4250 +5347 9319 0.7340 +5347 9401 0.6340 +5347 9475 0.4630 +5347 9493 0.9880 +5347 9585 0.5730 +5347 9587 0.4370 +5347 9590 0.6310 +5347 9600 0.5330 +5347 9656 0.5130 +5347 9662 0.9050 +5347 9688 0.5220 +5347 9696 0.5110 +5347 9700 0.9940 +5347 9701 0.6850 +5347 9702 0.8340 +5347 9730 0.5840 +5347 9735 0.7400 +5347 9738 0.8970 +5347 9748 0.9090 +5347 9768 0.4360 +5347 9787 0.8070 +5347 9793 0.9170 +5347 9814 0.8470 +5347 9824 0.5320 +5347 9833 0.8090 +5347 9859 0.8060 +5347 9860 0.4550 +5347 9903 0.6420 +5347 9918 0.6090 +5347 9928 0.6110 +5347 9985 0.7520 +5347 10010 0.6860 +5347 10013 0.5390 +5347 10024 0.8050 +5347 10051 0.8210 +5347 10112 0.9900 +5347 10121 0.8310 +5347 10133 0.8310 +5347 10142 0.8810 +5347 10155 0.4810 +5347 10210 0.7610 +5347 10273 0.4550 +5347 10274 0.7610 +5347 10309 0.4310 +5347 10368 0.4240 +5347 10381 0.4750 +5347 10382 0.8400 +5347 10383 0.8500 +5347 10393 0.6850 +5347 10399 0.5310 +5347 10403 0.9510 +5347 10426 0.4430 +5347 10460 0.8840 +5347 10540 0.8400 +5347 10579 0.4050 +5347 10592 0.7430 +5347 10615 0.9420 +5347 10671 0.6300 +5347 10726 0.9900 +5347 10733 0.9560 +5347 10734 0.4420 +5347 10735 0.8170 +5347 10744 0.8110 +5347 10746 0.4090 +5347 10769 0.5940 +5347 10801 0.6370 +5347 10806 0.8570 +5347 10926 0.7430 +5347 11004 0.9940 +5347 11064 0.8840 +5347 11065 0.9270 +5347 11073 0.8140 +5347 11078 0.5700 +5347 11116 0.8420 +5347 11130 0.9300 +5347 11143 0.6550 +5347 11169 0.4130 +5347 11190 0.8890 +5347 11200 0.9000 +5347 11243 0.5510 +5347 11258 0.8220 +5347 11329 0.4240 +5347 11339 0.5930 +5347 22849 0.9140 +5347 22897 0.8780 +5347 22919 0.9000 +5347 22974 0.9440 +5347 22981 0.9460 +5347 22994 0.8670 +5347 22995 0.8820 +5347 23012 0.4210 +5347 23047 0.6830 +5347 23063 0.7850 +5347 23122 0.8670 +5347 23137 0.4590 +5347 23165 0.4920 +5347 23177 0.4140 +5347 23243 0.5490 +5347 23244 0.7460 +5347 23279 0.5560 +5347 23291 0.7010 +5347 23299 0.7030 +5347 23310 0.7990 +5347 23332 0.8770 +5347 23353 0.5060 +5347 23354 0.5690 +5347 23397 0.7510 +5347 23405 0.4160 +5347 23421 0.6030 +5347 23476 0.6790 +5347 23594 0.4390 +5347 24137 0.8210 +5347 25886 0.5080 +5347 25906 0.5950 +5347 25909 0.8340 +5347 25936 0.5530 +5347 26003 0.6770 +5347 26064 0.4670 +5347 26271 0.9780 +5347 26586 0.4220 +5347 27044 0.4040 +5347 27127 0.6550 +5347 27152 0.4820 +5347 27229 0.6030 +5347 27243 0.4330 +5347 27338 0.7300 +5347 27436 0.6530 +5347 28984 0.6320 +5347 28996 0.4220 +5347 29089 0.4040 +5347 29127 0.9610 +5347 29128 0.4690 +5347 29781 0.6890 +5347 29882 0.6220 +5347 29945 0.6290 +5347 30816 0.4790 +5347 50484 0.4450 +5347 51053 0.6240 +5347 51143 0.5550 +5347 51175 0.4600 +5347 51185 0.4350 +5347 51199 0.6320 +5347 51203 0.8110 +5347 51307 0.6290 +5347 51343 0.9990 +5347 51433 0.6280 +5347 51434 0.6630 +5347 51512 0.9820 +5347 51529 0.6530 +5347 51530 0.4020 +5347 51652 0.4120 +5347 51806 0.5090 +5347 54069 0.6570 +5347 54145 0.6830 +5347 54386 0.4830 +5347 54443 0.7030 +5347 54478 0.4040 +5347 54801 0.8100 +5347 54820 0.8600 +5347 54821 0.9980 +5347 54875 0.5230 +5347 54892 0.9190 +5347 54908 0.8890 +5347 54930 0.6070 +5347 54935 0.4760 +5347 55051 0.5780 +5347 55055 0.7710 +5347 55125 0.9260 +5347 55142 0.5170 +5347 55143 0.9740 +5347 55165 0.8370 +5347 55166 0.7880 +5347 55215 0.5700 +5347 55255 0.5770 +5347 55294 0.7210 +5347 55320 0.7320 +5347 55355 0.8590 +5347 55388 0.5880 +5347 55559 0.5040 +5347 55635 0.6000 +5347 55706 0.4140 +5347 55722 0.8440 +5347 55723 0.7250 +5347 55743 0.7840 +5347 55746 0.5990 +5347 55755 0.9120 +5347 55766 0.5070 +5347 55789 0.4570 +5347 55835 0.9530 +5347 55839 0.7720 +5347 55844 0.6650 +5347 55857 0.4820 +5347 55920 0.9240 +5347 55957 0.6480 +5347 56992 0.5770 +5347 57082 0.8400 +5347 57122 0.6210 +5347 57405 0.7740 +5347 57448 0.5250 +5347 57506 0.7100 +5347 57551 0.8130 +5347 57646 0.6190 +5347 57650 0.7050 +5347 57695 0.4260 +5347 57697 0.5060 +5347 58513 0.5520 +5347 63967 0.9330 +5347 64105 0.7030 +5347 64151 0.6930 +5347 64506 0.9330 +5347 64682 0.7480 +5347 64689 0.9420 +5347 64946 0.7210 +5347 79003 0.5320 +5347 79019 0.7450 +5347 79023 0.6030 +5347 79172 0.7500 +5347 79441 0.5870 +5347 79598 0.4350 +5347 79682 0.9960 +5347 79705 0.5800 +5347 79733 0.4240 +5347 79801 0.4500 +5347 79866 0.9970 +5347 79902 0.5940 +5347 79935 0.6050 +5347 79959 0.8460 +5347 79980 0.7300 +5347 80010 0.5320 +5347 80119 0.4770 +5347 80152 0.7280 +5347 80174 0.5770 +5347 80184 0.8650 +5347 80198 0.8170 +5347 80315 0.9180 +5347 80321 0.8150 +5347 80776 0.8050 +5347 81565 0.8540 +5347 81610 0.5990 +5347 81620 0.7950 +5347 81669 0.5970 +5347 81876 0.5140 +5347 81929 0.6570 +5347 81930 0.9270 +5347 83461 0.9040 +5347 83540 0.8650 +5347 83903 0.8730 +5347 83990 0.6110 +5347 84131 0.8180 +5347 84464 0.9380 +5347 84516 0.4160 +5347 84643 0.9130 +5347 84678 0.4250 +5347 84722 0.4430 +5347 84823 0.4540 +5347 84861 0.8030 +5347 84930 0.5070 +5347 84950 0.4380 +5347 84962 0.4710 +5347 85236 0.6890 +5347 85417 0.9680 +5347 85459 0.4110 +5347 90381 0.4720 +5347 90417 0.6600 +5347 91272 0.7840 +5347 91687 0.5920 +5347 91750 0.6580 +5347 91754 0.8560 +5347 93323 0.6470 +5347 94239 0.6210 +5347 95681 0.8090 +5347 113130 0.8930 +5347 115106 0.6190 +5347 116840 0.5810 +5347 117177 0.5520 +5347 117178 0.4210 +5347 119504 0.5700 +5347 119710 0.4200 +5347 121441 0.9770 +5347 128239 0.4300 +5347 128312 0.6850 +5347 128710 0.6350 +5347 132660 0.6720 +5347 132864 0.9150 +5347 133482 0.4460 +5347 136647 0.5370 +5347 137902 0.4220 +5347 140735 0.5010 +5347 146909 0.6810 +5347 146956 0.6910 +5347 147841 0.7420 +5347 150468 0.5260 +5347 151246 0.9590 +5347 151648 0.9730 +5347 157313 0.7230 +5347 157570 0.4450 +5347 163786 0.6380 +5347 166979 0.9060 +5347 203068 0.8690 +5347 220134 0.9370 +5347 221150 0.9340 +5347 246184 0.6060 +5347 253260 0.4080 +5347 255626 0.6830 +5347 259266 0.7040 +5347 259282 0.5980 +5347 284257 0.5400 +5347 285643 0.4420 +5347 286151 0.9920 +5347 286436 0.4020 +5347 286826 0.7150 +5347 347240 0.6030 +5347 348235 0.8570 +5347 348995 0.5710 +5347 378708 0.7000 +5347 400793 0.4030 +5347 401541 0.6830 +5347 405754 0.4650 +5347 440093 0.6530 +5347 440686 0.6610 +5347 440689 0.4250 +5347 474382 0.5070 +5347 494551 0.4750 +5347 548593 0.6990 +5347 642636 0.6990 +5347 653604 0.8240 +5347 728637 0.6930 +5347 728642 0.6970 +5347 100526767 0.4050 +5348 5350 0.7960 +5348 5566 0.9430 +5348 5567 0.9420 +5348 5568 0.9420 +5348 5826 0.7200 +5348 6262 0.4330 +5348 6546 0.6130 +5348 6548 0.7950 +5348 6792 0.4180 +5348 6833 0.5660 +5348 6863 0.7560 +5348 7846 0.4310 +5348 10058 0.7200 +5348 10060 0.5830 +5348 10376 0.5850 +5348 10733 0.4550 +5348 11194 0.7200 +5348 23089 0.4700 +5348 23439 0.9010 +5348 25921 0.6940 +5348 53822 0.4250 +5348 53827 0.6900 +5348 53828 0.6850 +5348 54715 0.5310 +5348 56262 0.5180 +5348 56650 0.4830 +5348 57446 0.4470 +5348 64240 0.7200 +5348 64241 0.7240 +5348 65009 0.4230 +5348 114787 0.5480 +5348 140679 0.4270 +5348 163175 0.4620 +5349 5652 0.4520 +5349 6690 0.5140 +5349 6714 0.4770 +5349 9725 0.4340 +5349 10103 0.4200 +5349 10551 0.5020 +5349 53822 0.7740 +5349 53827 0.7380 +5349 54521 0.4510 +5349 54845 0.4130 +5349 57111 0.4050 +5349 79170 0.4880 +5350 5499 0.9000 +5350 5500 0.9010 +5350 5501 0.9000 +5350 5566 0.9640 +5350 5567 0.9640 +5350 5568 0.9630 +5350 5592 0.9500 +5350 5593 0.9030 +5350 5613 0.4160 +5350 5826 0.7200 +5350 6262 0.7440 +5350 6331 0.4730 +5350 6546 0.8200 +5350 6548 0.7200 +5350 6588 0.9860 +5350 6833 0.5790 +5350 6910 0.4510 +5350 7135 0.4360 +5350 7137 0.5700 +5350 7139 0.6070 +5350 8048 0.5470 +5350 9697 0.7630 +5350 10058 0.7200 +5350 10060 0.6770 +5350 11194 0.7230 +5350 23676 0.4170 +5350 23786 0.4650 +5350 51778 0.5640 +5350 58498 0.4880 +5350 64240 0.7200 +5350 64241 0.7200 +5350 84978 0.4610 +5350 93649 0.4630 +5350 171024 0.4790 +5351 5352 0.9770 +5351 5479 0.6610 +5351 6839 0.6590 +5351 7148 0.5280 +5351 7373 0.6810 +5351 7468 0.6600 +5351 7799 0.6500 +5351 8085 0.6500 +5351 8292 0.6320 +5351 8974 0.9080 +5351 8985 0.9650 +5351 9507 0.4540 +5351 9509 0.5710 +5351 9739 0.6530 +5351 9757 0.6570 +5351 9869 0.6500 +5351 10269 0.4670 +5351 10491 0.6970 +5351 10536 0.6660 +5351 10609 0.8080 +5351 10919 0.6560 +5351 11107 0.4580 +5351 11285 0.5650 +5351 11322 0.4310 +5351 22916 0.5920 +5351 23067 0.6500 +5351 23127 0.9290 +5351 23363 0.4400 +5351 25821 0.4770 +5351 25914 0.4090 +5351 30008 0.4950 +5351 50509 0.6210 +5351 54904 0.6550 +5351 55033 0.6920 +5351 55122 0.5430 +5351 55214 0.4890 +5351 55870 0.6500 +5351 55904 0.6500 +5351 56950 0.6750 +5351 56979 0.6530 +5351 57085 0.4770 +5351 57642 0.5440 +5351 58508 0.6500 +5351 60681 0.5350 +5351 64175 0.7420 +5351 64324 0.8250 +5351 64754 0.7020 +5351 79709 0.9650 +5351 79723 0.6630 +5351 79813 0.6500 +5351 79823 0.9000 +5351 80781 0.6970 +5351 80854 0.6980 +5351 81031 0.4850 +5351 81578 0.7990 +5351 83852 0.6500 +5351 84171 0.4530 +5351 84444 0.6540 +5351 84570 0.6930 +5351 84627 0.8000 +5351 84695 0.4240 +5351 85301 0.5840 +5351 90231 0.6170 +5351 91252 0.5690 +5351 91522 0.7660 +5351 93166 0.6510 +5351 113189 0.8250 +5351 114897 0.4300 +5351 121340 0.4090 +5351 126792 0.5030 +5351 131873 0.5530 +5351 136227 0.5650 +5351 150572 0.6670 +5351 169044 0.5470 +5351 255631 0.5700 +5351 283208 0.5300 +5351 340267 0.5120 +5351 387893 0.6520 +5352 5358 0.6090 +5352 5479 0.6360 +5352 6337 0.4180 +5352 6678 0.4300 +5352 6839 0.6570 +5352 7040 0.6000 +5352 7373 0.6140 +5352 7468 0.6600 +5352 7471 0.4460 +5352 7799 0.6500 +5352 8085 0.6500 +5352 8292 0.7040 +5352 8743 0.4280 +5352 8974 0.8410 +5352 8985 0.9480 +5352 9474 0.4310 +5352 9739 0.6500 +5352 9757 0.6560 +5352 9869 0.6500 +5352 9871 0.6210 +5352 10491 0.7590 +5352 10536 0.5310 +5352 10584 0.4440 +5352 10919 0.6550 +5352 10956 0.4200 +5352 10993 0.6970 +5352 23067 0.6500 +5352 23127 0.9570 +5352 25821 0.4370 +5352 50509 0.6090 +5352 51360 0.5300 +5352 54904 0.6550 +5352 55151 0.7330 +5352 55214 0.4520 +5352 55818 0.4060 +5352 55870 0.6500 +5352 55904 0.6500 +5352 56950 0.6770 +5352 56979 0.6620 +5352 57642 0.5780 +5352 58508 0.6500 +5352 60681 0.9260 +5352 64175 0.7440 +5352 64324 0.6550 +5352 64754 0.6830 +5352 78989 0.4750 +5352 79709 0.9450 +5352 79723 0.6600 +5352 79813 0.6500 +5352 79823 0.9000 +5352 80781 0.5940 +5352 80854 0.6810 +5352 81578 0.8380 +5352 83852 0.6500 +5352 84171 0.4850 +5352 84444 0.6550 +5352 84570 0.5690 +5352 84627 0.6510 +5352 84695 0.4190 +5352 85301 0.6170 +5352 90993 0.5650 +5352 91522 0.8290 +5352 93166 0.6580 +5352 112399 0.4170 +5352 113189 0.6470 +5352 113675 0.7650 +5352 114899 0.4690 +5352 121340 0.5030 +5352 131873 0.5480 +5352 136227 0.5640 +5352 150572 0.6670 +5352 169044 0.6000 +5352 255631 0.5960 +5352 283208 0.4290 +5352 340267 0.5610 +5352 387733 0.6290 +5352 387893 0.6500 +5354 5355 0.9940 +5354 5375 0.5960 +5354 5376 0.6020 +5354 5493 0.4240 +5354 5621 0.6260 +5354 5764 0.4180 +5354 5798 0.8010 +5354 5803 0.5660 +5354 6253 0.4610 +5354 6285 0.6890 +5354 6506 0.4800 +5354 6507 0.4490 +5354 6529 0.4100 +5354 6567 0.4110 +5354 6616 0.5240 +5354 6657 0.4530 +5354 6663 0.8830 +5354 6683 0.4160 +5354 6687 0.6250 +5354 6857 0.4560 +5354 6900 0.4850 +5354 6939 0.5020 +5354 7368 0.5270 +5354 7905 0.4050 +5354 8506 0.4460 +5354 8537 0.7610 +5354 8731 0.5220 +5354 8892 0.4520 +5354 8893 0.5360 +5354 9019 0.5220 +5354 9255 0.5540 +5354 9444 0.7220 +5354 10100 0.4160 +5354 10215 0.7330 +5354 10382 0.4560 +5354 10749 0.5130 +5354 10763 0.4380 +5354 10840 0.4160 +5354 11030 0.4060 +5354 22933 0.5250 +5354 23034 0.4070 +5354 23114 0.4560 +5354 23435 0.4540 +5354 23586 0.4390 +5354 28513 0.6040 +5354 30812 0.4410 +5354 50846 0.4330 +5354 51062 0.5670 +5354 51090 0.7050 +5354 57165 0.6910 +5354 57471 0.6620 +5354 57716 0.5110 +5354 60484 0.4600 +5354 65055 0.6160 +5354 79152 0.5740 +5354 83446 0.4670 +5354 84504 0.4500 +5354 84668 0.5620 +5354 84894 0.4680 +5354 85027 0.4870 +5354 92840 0.4260 +5354 93377 0.6940 +5354 116448 0.8150 +5354 118813 0.5750 +5354 133121 0.4310 +5354 146713 0.4820 +5354 166336 0.4490 +5354 282808 0.4970 +5355 5499 0.5690 +5355 6282 0.5450 +5355 6950 0.5880 +5355 7113 0.5500 +5355 7280 0.6490 +5355 8678 0.7740 +5355 9099 0.4440 +5355 9101 0.4080 +5355 9636 0.4870 +5355 10044 0.5720 +5355 10045 0.4790 +5355 23586 0.4060 +5355 79031 0.8400 +5355 132954 0.8940 +5355 203068 0.6500 +5355 221302 0.5530 +5355 400668 0.4390 +5356 5441 0.4570 +5356 5481 0.4030 +5356 5496 0.4490 +5356 5582 0.7650 +5356 6147 0.4220 +5356 6194 0.6000 +5356 6426 0.8360 +5356 6626 0.8960 +5356 6627 0.9990 +5356 6628 0.9940 +5356 6629 0.9980 +5356 6631 0.4600 +5356 6632 0.9980 +5356 6633 0.9990 +5356 6634 0.9970 +5356 6635 0.9980 +5356 6636 0.9990 +5356 6637 0.9980 +5356 6638 0.9690 +5356 7307 0.6180 +5356 7415 0.4600 +5356 7486 0.4100 +5356 7536 0.5290 +5356 7737 0.9240 +5356 8175 0.9920 +5356 8361 0.5300 +5356 8449 0.9840 +5356 8480 0.4400 +5356 8537 0.4410 +5356 8559 0.6760 +5356 8896 0.9990 +5356 8899 0.4160 +5356 9092 0.4040 +5356 9128 0.4440 +5356 9129 0.6360 +5356 9343 0.9990 +5356 9360 0.8670 +5356 9410 0.9920 +5356 9416 0.6790 +5356 9419 0.8030 +5356 9541 0.8030 +5356 9584 0.6770 +5356 9704 0.5410 +5356 9716 0.9980 +5356 9775 0.9450 +5356 9785 0.9890 +5356 9879 0.4970 +5356 9939 0.8100 +5356 9987 0.5490 +5356 10084 0.8070 +5356 10181 0.4940 +5356 10189 0.4390 +5356 10197 0.5690 +5356 10250 0.8300 +5356 10262 0.9280 +5356 10283 0.9340 +5356 10286 0.9990 +5356 10291 0.9820 +5356 10421 0.4310 +5356 10450 0.9960 +5356 10558 0.4590 +5356 10569 0.9370 +5356 10594 0.9990 +5356 10617 0.5490 +5356 10891 0.8240 +5356 10907 0.8010 +5356 10915 0.9800 +5356 10946 0.9710 +5356 10949 0.4470 +5356 10954 0.4210 +5356 10973 0.8210 +5356 10992 0.9780 +5356 11137 0.8200 +5356 11157 0.8040 +5356 11193 0.4330 +5356 11338 0.8790 +5356 22794 0.8090 +5356 22803 0.4140 +5356 22916 0.9470 +5356 22938 0.9990 +5356 22944 0.8080 +5356 23020 0.9960 +5356 23082 0.8250 +5356 23091 0.4690 +5356 23398 0.8230 +5356 23450 0.9730 +5356 23451 0.9990 +5356 23462 0.4650 +5356 23476 0.5230 +5356 23517 0.5230 +5356 23524 0.9970 +5356 23658 0.8360 +5356 23759 0.9280 +5356 24144 0.9330 +5356 24148 0.6810 +5356 25804 0.8310 +5356 25879 0.6070 +5356 25949 0.9990 +5356 25980 0.4620 +5356 26017 0.8060 +5356 26121 0.4250 +5356 27238 0.8430 +5356 27258 0.8240 +5356 27339 0.9990 +5356 51031 0.5110 +5356 51340 0.9990 +5356 51362 0.9990 +5356 51377 0.6400 +5356 51503 0.9990 +5356 51538 0.4760 +5356 51574 0.5430 +5356 51634 0.9250 +5356 51639 0.8250 +5356 51645 0.9920 +5356 51690 0.8160 +5356 51691 0.8050 +5356 51729 0.9630 +5356 54505 0.4080 +5356 54840 0.5110 +5356 54883 0.9600 +5356 55094 0.8580 +5356 55100 0.8130 +5356 55110 0.8400 +5356 55180 0.6300 +5356 55192 0.4230 +5356 55234 0.5830 +5356 55285 0.7580 +5356 55599 0.7570 +5356 55696 0.9990 +5356 55702 0.9990 +5356 55760 0.6370 +5356 55795 0.4580 +5356 56259 0.9960 +5356 56919 0.5480 +5356 56949 0.9990 +5356 57019 0.5340 +5356 57187 0.5400 +5356 57461 0.9970 +5356 57647 0.5840 +5356 57703 0.9980 +5356 57819 0.8660 +5356 58509 0.8030 +5356 59286 0.8860 +5356 60625 0.8390 +5356 64429 0.4510 +5356 79005 0.8030 +5356 79446 0.8520 +5356 79576 0.8050 +5356 79631 0.7010 +5356 79637 0.9220 +5356 79650 0.8330 +5356 79665 0.4410 +5356 79706 0.8010 +5356 79753 0.9570 +5356 80011 0.8030 +5356 80331 0.8470 +5356 80349 0.4240 +5356 83443 0.9000 +5356 83938 0.8060 +5356 84060 0.8030 +5356 84126 0.4350 +5356 84316 0.6420 +5356 84811 0.9190 +5356 84844 0.9720 +5356 84950 0.9890 +5356 84967 0.7930 +5356 85437 0.4460 +5356 85476 0.6970 +5356 85479 0.8460 +5356 91603 0.4180 +5356 93973 0.4310 +5356 126259 0.6360 +5356 143884 0.9730 +5356 147650 0.6360 +5356 153527 0.9080 +5356 154007 0.6940 +5356 163859 0.8130 +5356 164045 0.7930 +5356 165545 0.6290 +5356 170506 0.4590 +5356 199746 0.5980 +5356 220074 0.8060 +5356 222183 0.8170 +5356 256536 0.8400 +5356 392517 0.4890 +5356 100534599 0.9920 +5357 5358 0.6450 +5357 5756 0.8530 +5357 5962 0.8700 +5357 6624 0.7770 +5357 6709 0.6190 +5357 6711 0.5040 +5357 6850 0.4300 +5357 7220 0.5490 +5357 7429 0.4660 +5357 7430 0.8990 +5357 8573 0.5390 +5357 9750 0.8160 +5357 9928 0.4260 +5357 10083 0.4190 +5357 10092 0.4120 +5357 10096 0.4420 +5357 10097 0.4950 +5357 10787 0.4250 +5357 11078 0.5930 +5357 11344 0.6340 +5357 23136 0.5140 +5357 23406 0.4070 +5357 25794 0.8840 +5357 25861 0.6740 +5357 26577 0.8260 +5357 28988 0.4830 +5357 51168 0.6380 +5357 51477 0.4960 +5357 53405 0.8620 +5357 53904 0.6370 +5357 55763 0.4340 +5357 57180 0.4600 +5357 64787 0.7290 +5357 79657 0.4080 +5357 83715 0.8270 +5357 85409 0.4200 +5357 129446 0.8570 +5357 131965 0.5100 +5357 140469 0.5980 +5357 145748 0.4800 +5357 286262 0.8150 +5357 339768 0.7350 +5357 389207 0.8170 +5357 445582 0.4090 +5357 494513 0.6050 +5357 643226 0.8100 +5357 653857 0.4640 +5358 5479 0.4410 +5358 5868 0.5020 +5358 6311 0.6200 +5358 6456 0.4690 +5358 6457 0.5040 +5358 6606 0.8560 +5358 6607 0.8340 +5358 6624 0.7820 +5358 6876 0.5280 +5358 7280 0.4690 +5358 7430 0.5550 +5358 7454 0.4030 +5358 7471 0.4760 +5358 8161 0.4340 +5358 8293 0.4940 +5358 8407 0.5290 +5358 8487 0.5720 +5358 8570 0.4630 +5358 8882 0.5420 +5358 8976 0.4270 +5358 9343 0.4870 +5358 9871 0.5640 +5358 10073 0.4380 +5358 10092 0.4550 +5358 10096 0.5720 +5358 10097 0.5110 +5358 10121 0.4370 +5358 10236 0.5490 +5358 10486 0.4270 +5358 10491 0.6320 +5358 10492 0.4760 +5358 11034 0.4240 +5358 11218 0.4150 +5358 11261 0.6040 +5358 23022 0.4580 +5358 23406 0.4070 +5358 23435 0.4100 +5358 23603 0.8180 +5358 25929 0.4760 +5358 26064 0.4200 +5358 28988 0.4540 +5358 51360 0.4990 +5358 51808 0.4480 +5358 55033 0.5140 +5358 55151 0.6790 +5358 55603 0.4680 +5358 55893 0.4350 +5358 57048 0.5770 +5358 57180 0.4890 +5358 60681 0.6460 +5358 64175 0.6000 +5358 79760 0.4240 +5358 83715 0.4150 +5358 83988 0.6490 +5358 84967 0.4380 +5358 85477 0.4730 +5358 90993 0.5180 +5358 203068 0.4540 +5358 342184 0.4020 +5358 345456 0.4750 +5358 375189 0.5680 +5358 387733 0.6200 +5358 440026 0.4340 +5358 653857 0.4940 +5359 5610 0.5580 +5359 5698 0.5440 +5359 5930 0.4480 +5359 6252 0.5920 +5359 6253 0.5440 +5359 6323 0.4260 +5359 6327 0.5410 +5359 6464 0.6060 +5359 6590 0.6270 +5359 6672 0.5450 +5359 6772 0.7230 +5359 6773 0.6330 +5359 7224 0.6790 +5359 8519 0.5670 +5359 8638 0.6530 +5359 9111 0.4670 +5359 9246 0.5240 +5359 9636 0.6580 +5359 9830 0.5570 +5359 10313 0.5460 +5359 10346 0.5220 +5359 10379 0.4820 +5359 10410 0.5790 +5359 10561 0.7130 +5359 10581 0.4500 +5359 10964 0.7320 +5359 11274 0.5680 +5359 23155 0.4650 +5359 23163 0.4360 +5359 23586 0.6510 +5359 23621 0.7260 +5359 24138 0.4870 +5359 25825 0.5490 +5359 25978 0.4060 +5359 26010 0.4990 +5359 51056 0.4260 +5359 51191 0.6300 +5359 51316 0.6130 +5359 51573 0.4200 +5359 54106 0.5690 +5359 54625 0.4320 +5359 54739 0.6220 +5359 54809 0.4150 +5359 55008 0.5710 +5359 55113 0.4980 +5359 55601 0.6810 +5359 57088 0.4330 +5359 57142 0.4950 +5359 64108 0.5900 +5359 64135 0.7050 +5359 64837 0.4210 +5359 79132 0.5020 +5359 83666 0.7130 +5359 85013 0.4740 +5359 85441 0.4940 +5359 89796 0.5490 +5359 89953 0.4240 +5359 91543 0.7350 +5359 94240 0.5820 +5359 129607 0.4560 +5359 147700 0.4120 +5359 151636 0.5920 +5359 162427 0.4240 +5359 196527 0.4910 +5359 219285 0.4570 +5359 768211 0.4050 +5360 5406 0.4120 +5360 5444 0.8970 +5360 5446 0.5130 +5360 5465 0.4430 +5360 6256 0.5830 +5360 6257 0.5050 +5360 6288 0.8280 +5360 6289 0.8130 +5360 6291 0.6870 +5360 6342 0.4320 +5360 6363 0.4150 +5360 6366 0.4390 +5360 6720 0.4220 +5360 7035 0.4310 +5360 7069 0.4760 +5360 7274 0.4310 +5360 7368 0.4640 +5360 7376 0.6500 +5360 7436 0.7190 +5360 7941 0.8280 +5360 8504 0.7200 +5360 8542 0.8940 +5360 9213 0.4790 +5360 9249 0.4180 +5360 9388 0.6730 +5360 9619 0.6850 +5360 9971 0.5150 +5360 10016 0.6480 +5360 10062 0.7070 +5360 10809 0.4500 +5360 23231 0.6530 +5360 27163 0.5070 +5360 27329 0.5070 +5360 29881 0.7170 +5360 29929 0.7490 +5360 51249 0.4250 +5360 51297 0.8390 +5360 51449 0.8310 +5360 51599 0.5560 +5360 54332 0.4110 +5360 55825 0.4240 +5360 55829 0.7200 +5360 55911 0.5400 +5360 55937 0.8850 +5360 56052 0.7620 +5360 56265 0.4380 +5360 57817 0.4470 +5360 58488 0.4350 +5360 64240 0.5460 +5360 64241 0.5480 +5360 79135 0.5440 +5360 84872 0.5090 +5360 116519 0.8560 +5360 255738 0.4220 +5360 257202 0.4390 +5360 339230 0.4390 +5360 493869 0.4560 +5360 553115 0.4670 +5360 100528017 0.7050 +5361 5362 0.7090 +5361 5364 0.8180 +5361 5365 0.6120 +5361 5754 0.4250 +5361 5879 0.8150 +5361 5880 0.9430 +5361 5881 0.9380 +5361 6091 0.5010 +5361 6092 0.4900 +5361 6237 0.7980 +5361 6405 0.9920 +5361 6585 0.4830 +5361 6586 0.6930 +5361 6714 0.6850 +5361 7094 0.5830 +5361 7112 0.4010 +5361 7124 0.4740 +5361 7305 0.9060 +5361 7869 0.8570 +5361 7879 0.4350 +5361 8139 0.4020 +5361 8153 0.4110 +5361 8482 0.7880 +5361 8828 0.9970 +5361 8829 0.9990 +5361 8851 0.5220 +5361 9037 0.8620 +5361 9341 0.4160 +5361 9423 0.5110 +5361 9497 0.4190 +5361 9590 0.4110 +5361 9723 0.8240 +5361 9855 0.8750 +5361 10048 0.5790 +5361 10154 0.6560 +5361 10371 0.9990 +5361 10500 0.9360 +5361 10501 0.6410 +5361 10505 0.4910 +5361 10507 0.7430 +5361 10509 0.6090 +5361 10512 0.9650 +5361 10570 0.5730 +5361 10755 0.4180 +5361 23023 0.6880 +5361 23129 0.7930 +5361 23344 0.4160 +5361 23396 0.5610 +5361 23654 0.6160 +5361 27289 0.9900 +5361 28999 0.6580 +5361 29984 0.9730 +5361 50512 0.7380 +5361 54209 0.8980 +5361 54437 0.8100 +5361 54910 0.4380 +5361 55240 0.4130 +5361 55558 0.7630 +5361 56896 0.5470 +5361 56920 0.6520 +5361 56924 0.4310 +5361 57522 0.4870 +5361 57553 0.4190 +5361 57556 0.9200 +5361 59277 0.4680 +5361 64218 0.6240 +5361 64221 0.4560 +5361 64780 0.8880 +5361 79180 0.4640 +5361 80031 0.9990 +5361 80728 0.5090 +5361 81624 0.4110 +5361 81839 0.5110 +5361 83637 0.5050 +5361 84162 0.4440 +5361 90070 0.4140 +5361 90249 0.4150 +5361 91584 0.9540 +5361 128272 0.4320 +5361 144402 0.4300 +5361 170482 0.4920 +5361 223117 0.7770 +5361 259173 0.4560 +5361 284217 0.5480 +5361 348807 0.6880 +5361 375790 0.5350 +5362 5364 0.6230 +5362 5365 0.6060 +5362 5533 0.4460 +5362 5879 0.7660 +5362 5880 0.9240 +5362 5881 0.9190 +5362 5908 0.4060 +5362 5997 0.4080 +5362 5999 0.4880 +5362 6092 0.4260 +5362 6237 0.7450 +5362 6405 0.6900 +5362 6586 0.4180 +5362 7094 0.5310 +5362 7166 0.4120 +5362 7869 0.8620 +5362 8482 0.6150 +5362 8828 0.9530 +5362 8829 0.9990 +5362 8851 0.5280 +5362 9037 0.6800 +5362 9722 0.4350 +5362 9723 0.7920 +5362 9855 0.7660 +5362 10048 0.5240 +5362 10154 0.6470 +5362 10371 0.9990 +5362 10500 0.8120 +5362 10501 0.9740 +5362 10505 0.4330 +5362 10507 0.9150 +5362 10512 0.9610 +5362 10570 0.5770 +5362 23129 0.6210 +5362 23396 0.5250 +5362 23654 0.5950 +5362 27185 0.4780 +5362 27289 0.9950 +5362 29801 0.4120 +5362 29883 0.4170 +5362 29984 0.9170 +5362 51466 0.6160 +5362 54910 0.4330 +5362 55558 0.5600 +5362 56131 0.4100 +5362 56896 0.5190 +5362 56920 0.4040 +5362 57214 0.6130 +5362 57553 0.4250 +5362 57556 0.9990 +5362 64218 0.6500 +5362 64780 0.7840 +5362 65078 0.4190 +5362 80031 0.8640 +5362 84062 0.5310 +5362 85443 0.4240 +5362 91584 0.5740 +5362 91752 0.5830 +5362 132884 0.4220 +5362 154664 0.4070 +5362 170589 0.4200 +5362 223117 0.4190 +5362 267012 0.5200 +5364 5365 0.9310 +5364 5754 0.4050 +5364 5877 0.4830 +5364 5879 0.6290 +5364 5880 0.9660 +5364 5881 0.9910 +5364 5912 0.6270 +5364 5921 0.6700 +5364 6093 0.5990 +5364 6237 0.9930 +5364 6405 0.6990 +5364 6608 0.4090 +5364 7082 0.5120 +5364 7112 0.4010 +5364 7113 0.4210 +5364 7356 0.9000 +5364 7869 0.8540 +5364 7879 0.4180 +5364 8153 0.9570 +5364 8482 0.7740 +5364 8828 0.8560 +5364 8829 0.9430 +5364 9037 0.7900 +5364 9341 0.5340 +5364 9475 0.5370 +5364 9497 0.4030 +5364 9590 0.4110 +5364 9723 0.6590 +5364 9826 0.9940 +5364 10154 0.6480 +5364 10371 0.8420 +5364 10500 0.4330 +5364 10501 0.6560 +5364 10505 0.9550 +5364 10507 0.9990 +5364 10509 0.9370 +5364 10512 0.6570 +5364 10672 0.5710 +5364 22808 0.7770 +5364 23129 0.7430 +5364 23365 0.9970 +5364 23654 0.9440 +5364 23676 0.4990 +5364 25930 0.4510 +5364 27289 0.9990 +5364 29984 0.9570 +5364 54437 0.6460 +5364 54557 0.5900 +5364 54910 0.9520 +5364 55558 0.6170 +5364 56920 0.5030 +5364 56924 0.4420 +5364 57556 0.5910 +5364 57715 0.9430 +5364 64218 0.9870 +5364 79172 0.5980 +5364 79180 0.4090 +5364 79682 0.5510 +5364 80031 0.4520 +5364 80728 0.4710 +5364 81624 0.4030 +5364 81839 0.4060 +5364 91584 0.6030 +5364 223117 0.4950 +5365 5825 0.6440 +5365 5826 0.5560 +5365 5880 0.9150 +5365 5881 0.9150 +5365 6237 0.9370 +5365 6405 0.5980 +5365 6624 0.4130 +5365 7869 0.7900 +5365 8482 0.5710 +5365 8828 0.6830 +5365 8829 0.6700 +5365 9037 0.9990 +5365 9723 0.5510 +5365 9826 0.8610 +5365 10134 0.7240 +5365 10154 0.6350 +5365 10371 0.5210 +5365 10500 0.4760 +5365 10501 0.4480 +5365 10505 0.9500 +5365 10507 0.9910 +5365 10509 0.9340 +5365 10512 0.6520 +5365 11001 0.5710 +5365 23129 0.7390 +5365 23205 0.6710 +5365 23365 0.9790 +5365 23654 0.9120 +5365 27289 0.9340 +5365 54437 0.7110 +5365 54910 0.9500 +5365 55558 0.6430 +5365 56920 0.4940 +5365 57556 0.6330 +5365 57595 0.4600 +5365 57689 0.4230 +5365 57715 0.9390 +5365 64101 0.4270 +5365 64218 0.9720 +5365 80031 0.5260 +5365 80347 0.6500 +5365 91584 0.6090 +5365 223117 0.4480 +5366 5728 0.4470 +5366 7027 0.5450 +5366 7029 0.5110 +5366 7124 0.4700 +5366 7157 0.9700 +5366 7161 0.4090 +5366 7494 0.4310 +5366 7837 0.4600 +5366 8065 0.5790 +5366 8678 0.6840 +5366 8739 0.8830 +5366 8743 0.4790 +5366 8772 0.5070 +5366 8795 0.7000 +5366 8797 0.5930 +5366 8837 0.5970 +5366 8878 0.4790 +5366 9451 0.4430 +5366 9616 0.5200 +5366 10017 0.7920 +5366 10018 0.9960 +5366 10075 0.5350 +5366 10273 0.4340 +5366 10563 0.4330 +5366 11200 0.4880 +5366 22926 0.4470 +5366 23586 0.6060 +5366 23645 0.4080 +5366 26155 0.4970 +5366 27035 0.5380 +5366 27113 0.9870 +5366 27244 0.4090 +5366 27429 0.4780 +5366 50484 0.4500 +5366 54205 0.8550 +5366 55332 0.4250 +5366 55367 0.5240 +5366 57103 0.4860 +5366 63970 0.6630 +5366 64065 0.6020 +5366 64393 0.4330 +5366 79370 0.4230 +5366 79680 0.8400 +5366 84260 0.5070 +5366 90427 0.8550 +5366 112770 0.7500 +5366 137902 0.4560 +5366 140739 0.5250 +5366 145270 0.5410 +5366 100529063 0.5400 +5367 5368 0.8110 +5367 5443 0.9310 +5367 5539 0.6660 +5367 5540 0.5090 +5367 5660 0.4990 +5367 5697 0.7480 +5367 5996 0.5190 +5367 5998 0.4990 +5367 5999 0.5400 +5367 6003 0.5360 +5367 6004 0.5330 +5367 6288 0.4130 +5367 6368 0.4160 +5367 6531 0.4470 +5367 6714 0.5510 +5367 6750 0.7280 +5367 6751 0.6570 +5367 6752 0.5620 +5367 6753 0.6100 +5367 6754 0.5360 +5367 6755 0.5330 +5367 6863 0.6330 +5367 7054 0.4520 +5367 7200 0.7730 +5367 7201 0.5770 +5367 7204 0.5370 +5367 7432 0.4590 +5367 7732 0.4300 +5367 8484 0.5640 +5367 8490 0.5200 +5367 8620 0.7060 +5367 8811 0.5780 +5367 8862 0.6190 +5367 8997 0.5650 +5367 9236 0.4060 +5367 9283 0.5310 +5367 9607 0.7730 +5367 10287 0.5180 +5367 10316 0.5470 +5367 10681 0.4990 +5367 10800 0.4990 +5367 10874 0.7140 +5367 10887 0.5430 +5367 10911 0.5820 +5367 23236 0.5140 +5367 23339 0.4500 +5367 26575 0.5230 +5367 29106 0.7600 +5367 51083 0.8300 +5367 51652 0.4220 +5367 51738 0.7980 +5367 51764 0.5600 +5367 54331 0.5480 +5367 55010 0.8970 +5367 55970 0.5320 +5367 56923 0.5970 +5367 57084 0.5060 +5367 57105 0.5000 +5367 59345 0.4990 +5367 60675 0.4490 +5367 63940 0.4070 +5367 64407 0.5220 +5367 84432 0.4370 +5367 84539 0.9990 +5367 85569 0.4030 +5367 94235 0.6000 +5367 115557 0.5090 +5367 117579 0.5580 +5367 128674 0.5190 +5367 129521 0.5700 +5367 140679 0.4860 +5367 256933 0.6350 +5367 257313 0.4770 +5367 283869 0.7400 +5367 347148 0.6600 +5367 387129 0.5840 +5367 390259 0.4080 +5367 431704 0.5320 +5367 594857 0.6480 +5367 100526767 0.4240 +5368 5443 0.9090 +5368 5450 0.5330 +5368 5533 0.6600 +5368 5539 0.5900 +5368 5540 0.6150 +5368 5660 0.4990 +5368 5697 0.5880 +5368 5729 0.4360 +5368 6295 0.4380 +5368 6714 0.5430 +5368 6750 0.7530 +5368 6751 0.7070 +5368 6752 0.6320 +5368 6753 0.6070 +5368 6754 0.5640 +5368 6755 0.5850 +5368 6863 0.7540 +5368 6869 0.4240 +5368 7442 0.4310 +5368 8484 0.6150 +5368 8620 0.6200 +5368 8811 0.6170 +5368 8862 0.5590 +5368 9283 0.5490 +5368 10316 0.5520 +5368 10653 0.7240 +5368 10874 0.6090 +5368 10886 0.4010 +5368 51083 0.8620 +5368 51738 0.4220 +5368 56923 0.5780 +5368 57699 0.4800 +5368 59345 0.4410 +5368 63940 0.4260 +5368 83416 0.5720 +5368 84539 0.5800 +5368 84824 0.5160 +5368 117579 0.4810 +5368 126006 0.4130 +5368 129521 0.6060 +5368 140679 0.4430 +5368 246213 0.4580 +5368 256933 0.5910 +5368 283869 0.5470 +5368 347148 0.4240 +5368 387129 0.4060 +5368 594857 0.5440 +5368 646424 0.4750 +5368 104909134 0.5450 +5371 5468 0.4700 +5371 5573 0.4650 +5371 5594 0.5830 +5371 5595 0.4210 +5371 5598 0.6230 +5371 5728 0.5430 +5371 5888 0.6490 +5371 5893 0.4730 +5371 5903 0.7010 +5371 5905 0.4910 +5371 5914 0.9980 +5371 5925 0.5710 +5371 5928 0.5150 +5371 5931 0.5160 +5371 5970 0.6510 +5371 5987 0.7750 +5371 6047 0.9440 +5371 6125 0.4050 +5371 6135 0.7350 +5371 6233 0.4470 +5371 6256 0.5180 +5371 6304 0.4980 +5371 6310 0.4300 +5371 6396 0.4050 +5371 6477 0.4170 +5371 6612 0.7680 +5371 6613 0.9320 +5371 6667 0.6810 +5371 6672 0.9810 +5371 6688 0.9380 +5371 6737 0.5950 +5371 6772 0.9010 +5371 6773 0.5880 +5371 6774 0.4900 +5371 6777 0.4680 +5371 6778 0.4490 +5371 6907 0.4370 +5371 6925 0.4160 +5371 6996 0.5600 +5371 7013 0.8360 +5371 7014 0.4400 +5371 7050 0.5310 +5371 7157 0.9670 +5371 7158 0.6200 +5371 7175 0.4150 +5371 7181 0.4960 +5371 7289 0.4760 +5371 7311 0.4130 +5371 7314 0.4470 +5371 7316 0.5560 +5371 7329 0.9810 +5371 7337 0.4620 +5371 7341 0.9990 +5371 7704 0.6600 +5371 7706 0.5920 +5371 7750 0.5250 +5371 7862 0.5040 +5371 7874 0.7200 +5371 7994 0.6790 +5371 8021 0.4520 +5371 8237 0.4010 +5371 8290 0.5850 +5371 8329 0.5300 +5371 8331 0.5300 +5371 8334 0.5260 +5371 8337 0.5800 +5371 8338 0.5790 +5371 8340 0.5350 +5371 8341 0.5310 +5371 8342 0.5420 +5371 8345 0.5590 +5371 8347 0.5350 +5371 8348 0.5650 +5371 8349 0.5760 +5371 8356 0.7870 +5371 8361 0.6500 +5371 8424 0.5830 +5371 8480 0.4180 +5371 8554 0.5570 +5371 8726 0.5020 +5371 8805 0.5030 +5371 8841 0.5730 +5371 8878 0.4410 +5371 8970 0.5340 +5371 9015 0.4030 +5371 9063 0.6200 +5371 9219 0.4010 +5371 9372 0.7770 +5371 9611 0.8210 +5371 9612 0.8420 +5371 9631 0.4200 +5371 9636 0.4070 +5371 9641 0.4150 +5371 9656 0.5170 +5371 9688 0.4030 +5371 9818 0.4010 +5371 9830 0.5020 +5371 9866 0.5940 +5371 9883 0.4110 +5371 9972 0.4570 +5371 9978 0.6130 +5371 10000 0.4160 +5371 10005 0.5280 +5371 10155 0.5260 +5371 10197 0.5830 +5371 10206 0.4590 +5371 10210 0.5810 +5371 10346 0.7120 +5371 10524 0.4060 +5371 10626 0.6260 +5371 10762 0.4010 +5371 10951 0.5460 +5371 11043 0.4650 +5371 11073 0.5560 +5371 11097 0.4410 +5371 11200 0.4690 +5371 11262 0.5750 +5371 11315 0.6390 +5371 22954 0.4690 +5371 23112 0.5110 +5371 23165 0.4050 +5371 23184 0.4980 +5371 23224 0.6020 +5371 23225 0.5350 +5371 23279 0.4030 +5371 23411 0.7770 +5371 23511 0.4050 +5371 23512 0.6450 +5371 23586 0.6510 +5371 23636 0.4130 +5371 23650 0.4110 +5371 23774 0.5640 +5371 26036 0.4200 +5371 26168 0.5740 +5371 26523 0.5320 +5371 27154 0.4990 +5371 27161 0.5500 +5371 27252 0.8410 +5371 27327 0.4990 +5371 27335 0.6120 +5371 28996 0.8920 +5371 29117 0.4990 +5371 29843 0.6690 +5371 50852 0.6980 +5371 51127 0.7410 +5371 51564 0.7750 +5371 51643 0.8980 +5371 53371 0.4030 +5371 53615 0.4110 +5371 54145 0.5320 +5371 54778 0.5500 +5371 54790 0.6020 +5371 54815 0.4110 +5371 54971 0.5140 +5371 55023 0.4450 +5371 55217 0.4200 +5371 55729 0.4220 +5371 55746 0.4010 +5371 55766 0.5260 +5371 55893 0.4240 +5371 55904 0.4530 +5371 57122 0.4010 +5371 59067 0.4210 +5371 64769 0.4990 +5371 79023 0.4190 +5371 79132 0.4030 +5371 79718 0.4220 +5371 79902 0.4050 +5371 81559 0.5110 +5371 81603 0.4520 +5371 81929 0.4030 +5371 84106 0.6660 +5371 84260 0.5560 +5371 84289 0.5060 +5371 84851 0.4110 +5371 85235 0.5260 +5371 85236 0.5320 +5371 85363 0.6680 +5371 92815 0.5260 +5371 93349 0.5740 +5371 94239 0.5260 +5371 116071 0.4250 +5371 128312 0.5320 +5371 129401 0.4090 +5371 136991 0.4960 +5371 140691 0.5530 +5371 192669 0.5280 +5371 192670 0.5280 +5371 204851 0.6740 +5371 205860 0.4350 +5371 221613 0.5260 +5371 255626 0.5320 +5371 283106 0.5400 +5371 317772 0.5260 +5371 348995 0.4050 +5371 440093 0.5850 +5371 440686 0.5860 +5371 440689 0.5430 +5371 442862 0.4100 +5371 445372 0.4060 +5371 474382 0.5260 +5371 653604 0.7840 +5371 100101267 0.4160 +5372 5373 0.9770 +5372 5832 0.4090 +5372 5870 0.7340 +5372 6184 0.4060 +5372 6185 0.4140 +5372 6751 0.4290 +5372 6888 0.5110 +5372 7083 0.8250 +5372 7167 0.5360 +5372 7360 0.4050 +5372 7378 0.4520 +5372 7464 0.4450 +5372 8226 0.5010 +5372 8789 0.4910 +5372 8813 0.5380 +5372 8891 0.5910 +5372 8893 0.5990 +5372 9563 0.5560 +5372 10020 0.5050 +5372 10350 0.5410 +5372 10391 0.4370 +5372 11151 0.4360 +5372 22845 0.4750 +5372 23603 0.4360 +5372 29914 0.7760 +5372 29925 0.9240 +5372 29926 0.9810 +5372 29929 0.4400 +5372 54187 0.4090 +5372 54870 0.4300 +5372 55312 0.4080 +5372 56052 0.5290 +5372 57175 0.4610 +5372 80201 0.9280 +5372 84940 0.4360 +5372 85365 0.4450 +5372 140838 0.4050 +5372 286451 0.8110 +5372 341208 0.4260 +5372 440138 0.4070 +5372 445582 0.4340 +5372 644974 0.4050 +5372 102800317 0.4390 +5373 5589 0.4360 +5373 5832 0.4310 +5373 6888 0.4720 +5373 7083 0.8270 +5373 7167 0.4850 +5373 7378 0.4520 +5373 7464 0.4490 +5373 7841 0.7800 +5373 8226 0.4950 +5373 8789 0.4680 +5373 8813 0.6120 +5373 8891 0.5960 +5373 8893 0.5960 +5373 9382 0.6010 +5373 9526 0.5580 +5373 9563 0.5390 +5373 10020 0.5260 +5373 10195 0.7330 +5373 10350 0.6350 +5373 10391 0.4360 +5373 10466 0.5370 +5373 10559 0.7480 +5373 11102 0.4290 +5373 11151 0.4370 +5373 22845 0.8900 +5373 23545 0.4510 +5373 23592 0.4830 +5373 23603 0.4360 +5373 25839 0.6960 +5373 29880 0.5480 +5373 29914 0.7970 +5373 29925 0.9450 +5373 29926 0.9850 +5373 29929 0.9080 +5373 54187 0.5300 +5373 54344 0.7210 +5373 55312 0.4080 +5373 55343 0.5860 +5373 55768 0.4230 +5373 55858 0.4840 +5373 56052 0.8390 +5373 57175 0.4380 +5373 79053 0.8590 +5373 79087 0.6920 +5373 79170 0.4300 +5373 79644 0.8620 +5373 79947 0.4100 +5373 80201 0.9280 +5373 84940 0.4360 +5373 85365 0.9380 +5373 90407 0.4240 +5373 91703 0.6000 +5373 91869 0.7810 +5373 93183 0.5130 +5373 284098 0.4730 +5373 286451 0.8180 +5373 440138 0.9070 +5373 644974 0.4050 +5373 102800317 0.4200 +5375 5824 0.6100 +5375 6285 0.4010 +5375 7639 0.4030 +5375 8731 0.7480 +5375 9370 0.6070 +5375 54332 0.8420 +5375 57716 0.8700 +5375 79628 0.4010 +5375 90196 0.4640 +5375 93377 0.4420 +5375 150274 0.7520 +5375 200407 0.4180 +5375 389813 0.5500 +5375 400746 0.5100 +5375 414149 0.4290 +5376 6663 0.6460 +5376 7003 0.5810 +5376 7276 0.4300 +5376 8731 0.9710 +5376 8732 0.7180 +5376 8898 0.7230 +5376 9019 0.9550 +5376 9516 0.5100 +5376 9927 0.4470 +5376 10413 0.5220 +5376 11079 0.4260 +5376 25937 0.5230 +5376 54332 0.5070 +5376 57716 0.7840 +5376 64065 0.4190 +5376 64518 0.4620 +5376 79628 0.7250 +5376 85027 0.6340 +5378 5395 0.9910 +5378 5424 0.9170 +5378 5425 0.4930 +5378 5426 0.6880 +5378 5591 0.7970 +5378 5728 0.4360 +5378 5832 0.4550 +5378 5883 0.4190 +5378 5884 0.4330 +5378 5887 0.7190 +5378 5888 0.6980 +5378 5889 0.5780 +5378 5890 0.5740 +5378 5892 0.5500 +5378 5893 0.6590 +5378 5980 0.5840 +5378 5981 0.4090 +5378 5982 0.5210 +5378 5983 0.4730 +5378 5984 0.5310 +5378 5985 0.4700 +5378 6794 0.4180 +5378 7048 0.5270 +5378 7156 0.4170 +5378 7157 0.7060 +5378 7158 0.4910 +5378 7298 0.4720 +5378 7374 0.4280 +5378 7486 0.5700 +5378 7507 0.7790 +5378 7508 0.6820 +5378 7515 0.6180 +5378 7516 0.4710 +5378 7517 0.4480 +5378 7518 0.7030 +5378 7520 0.8320 +5378 7905 0.4780 +5378 7965 0.4270 +5378 8287 0.4650 +5378 8930 0.4710 +5378 9126 0.5750 +5378 9156 0.9490 +5378 9400 0.4500 +5378 9401 0.4820 +5378 10111 0.4180 +5378 10973 0.6540 +5378 11200 0.6960 +5378 22909 0.9610 +5378 23028 0.5500 +5378 23186 0.5490 +5378 23548 0.4760 +5378 23626 0.5120 +5378 25788 0.4150 +5378 26275 0.4450 +5378 26585 0.4120 +5378 27030 0.9900 +5378 51008 0.5780 +5378 51317 0.5670 +5378 51426 0.4350 +5378 51455 0.4370 +5378 51534 0.4370 +5378 55215 0.7940 +5378 55247 0.4430 +5378 55608 0.4220 +5378 57697 0.5620 +5378 64421 0.7680 +5378 79677 0.4530 +5378 79695 0.5960 +5378 79728 0.7650 +5378 79840 0.6240 +5378 80198 0.5530 +5378 83990 0.7500 +5378 84057 0.4260 +5378 84164 0.5400 +5378 84893 0.6530 +5378 91419 0.5400 +5378 94101 0.4520 +5378 125150 0.5430 +5378 126074 0.5400 +5378 150709 0.4900 +5378 164045 0.6530 +5378 254394 0.7920 +5378 286257 0.5500 +5378 348654 0.4390 +5378 100533467 0.4640 +5378 105375355 0.5580 +5393 5394 0.9990 +5393 5822 0.7060 +5393 5981 0.5150 +5393 6187 0.4330 +5393 6189 0.4440 +5393 6193 0.5240 +5393 6194 0.6520 +5393 6201 0.6520 +5393 6202 0.4390 +5393 6203 0.6740 +5393 6205 0.4440 +5393 6207 0.5200 +5393 6208 0.5910 +5393 6217 0.5250 +5393 6222 0.4610 +5393 6223 0.5000 +5393 6228 0.4810 +5393 6229 0.4610 +5393 6232 0.4330 +5393 6234 0.4540 +5393 6499 0.9010 +5393 6613 0.6610 +5393 6625 0.4300 +5393 6737 0.4490 +5393 6741 0.4170 +5393 6832 0.9010 +5393 7341 0.4850 +5393 7443 0.4760 +5393 7538 0.5470 +5393 7919 0.4770 +5393 8106 0.4080 +5393 8570 0.5810 +5393 8602 0.7270 +5393 8634 0.6030 +5393 8899 0.4750 +5393 9136 0.7620 +5393 9277 0.8040 +5393 9567 0.7380 +5393 9652 0.8560 +5393 9724 0.7210 +5393 9790 0.8300 +5393 9984 0.4480 +5393 10055 0.4480 +5393 10171 0.8150 +5393 10179 0.8210 +5393 10199 0.8820 +5393 10200 0.9980 +5393 10210 0.4290 +5393 10436 0.7940 +5393 10438 0.9990 +5393 10526 0.5300 +5393 10527 0.5300 +5393 10528 0.8680 +5393 10556 0.5650 +5393 10557 0.5200 +5393 10607 0.7860 +5393 10767 0.9890 +5393 10813 0.7480 +5393 10885 0.7420 +5393 10914 0.4850 +5393 11044 0.4990 +5393 11056 0.5360 +5393 11103 0.8140 +5393 11340 0.9990 +5393 22803 0.6520 +5393 22894 0.9990 +5393 22984 0.9160 +5393 23016 0.9990 +5393 23054 0.8230 +5393 23064 0.8130 +5393 23160 0.8900 +5393 23363 0.5190 +5393 23404 0.9990 +5393 23451 0.4030 +5393 23515 0.5050 +5393 23517 0.9990 +5393 25879 0.9140 +5393 25903 0.4020 +5393 25926 0.6160 +5393 26156 0.6270 +5393 26574 0.5920 +5393 27042 0.5580 +5393 27292 0.7350 +5393 27340 0.9370 +5393 27341 0.8550 +5393 29997 0.4470 +5393 30836 0.6530 +5393 51010 0.9990 +5393 51013 0.9990 +5393 51065 0.4430 +5393 51077 0.7950 +5393 51095 0.4580 +5393 51096 0.8080 +5393 51106 0.4500 +5393 51118 0.7980 +5393 51149 0.4290 +5393 51154 0.4540 +5393 51202 0.5740 +5393 51388 0.4530 +5393 51575 0.4080 +5393 51592 0.5400 +5393 51602 0.7970 +5393 51605 0.4460 +5393 54464 0.7340 +5393 54512 0.9990 +5393 54555 0.5160 +5393 54881 0.4280 +5393 55003 0.4070 +5393 55127 0.9500 +5393 55153 0.5530 +5393 55212 0.4640 +5393 55226 0.6930 +5393 55272 0.8280 +5393 55299 0.5710 +5393 55596 0.6720 +5393 55601 0.5280 +5393 55646 0.4900 +5393 55781 0.4730 +5393 55802 0.6060 +5393 55813 0.8280 +5393 56902 0.8470 +5393 56903 0.4550 +5393 56915 0.9990 +5393 57050 0.8230 +5393 57647 0.5740 +5393 57696 0.5200 +5393 57703 0.4090 +5393 57822 0.4750 +5393 64216 0.6260 +5393 64282 0.4840 +5393 64895 0.4580 +5393 65008 0.4990 +5393 65083 0.9320 +5393 79009 0.4970 +5393 79050 0.8250 +5393 79571 0.8240 +5393 79954 0.7120 +5393 80349 0.7590 +5393 81887 0.4490 +5393 83743 0.4960 +5393 84128 0.8180 +5393 84135 0.7720 +5393 84186 0.7070 +5393 84240 0.4780 +5393 84294 0.4250 +5393 84365 0.5870 +5393 84549 0.4040 +5393 84916 0.8230 +5393 85441 0.8250 +5393 85446 0.4070 +5393 87178 0.9500 +5393 88745 0.5080 +5393 91056 0.4450 +5393 92856 0.8000 +5393 114034 0.4530 +5393 115708 0.4520 +5393 115752 0.9990 +5393 116541 0.4200 +5393 118460 0.9990 +5393 124808 0.4640 +5393 129563 0.9500 +5393 132332 0.5310 +5393 153443 0.4430 +5393 167227 0.6970 +5393 196441 0.9480 +5393 283989 0.4940 +5393 345630 0.4650 +5393 729991 0.4300 +5394 5431 0.5350 +5394 5432 0.6010 +5394 5479 0.4230 +5394 5480 0.4350 +5394 5822 0.9620 +5394 5888 0.4060 +5394 5976 0.8070 +5394 6122 0.6920 +5394 6123 0.6600 +5394 6124 0.6860 +5394 6125 0.7830 +5394 6128 0.7510 +5394 6129 0.7050 +5394 6130 0.6820 +5394 6132 0.6490 +5394 6133 0.6480 +5394 6135 0.6790 +5394 6136 0.4440 +5394 6137 0.6480 +5394 6138 0.6790 +5394 6139 0.5920 +5394 6141 0.6550 +5394 6142 0.7070 +5394 6143 0.6520 +5394 6144 0.6630 +5394 6146 0.5990 +5394 6147 0.8000 +5394 6152 0.4130 +5394 6154 0.7030 +5394 6155 0.6990 +5394 6156 0.7050 +5394 6157 0.7100 +5394 6158 0.4660 +5394 6159 0.4360 +5394 6160 0.7190 +5394 6161 0.7040 +5394 6164 0.6470 +5394 6165 0.6490 +5394 6166 0.4300 +5394 6167 0.6740 +5394 6168 0.6490 +5394 6169 0.6970 +5394 6170 0.7020 +5394 6171 0.4290 +5394 6173 0.4180 +5394 6175 0.7140 +5394 6176 0.4350 +5394 6181 0.4500 +5394 6187 0.4660 +5394 6189 0.8970 +5394 6191 0.8570 +5394 6193 0.9030 +5394 6194 0.9500 +5394 6201 0.9350 +5394 6202 0.9020 +5394 6203 0.9410 +5394 6205 0.8840 +5394 6206 0.8490 +5394 6207 0.9250 +5394 6208 0.9270 +5394 6210 0.8570 +5394 6217 0.9010 +5394 6218 0.8120 +5394 6222 0.8980 +5394 6223 0.9110 +5394 6228 0.8880 +5394 6229 0.8940 +5394 6232 0.8840 +5394 6233 0.8170 +5394 6234 0.8840 +5394 6421 0.5780 +5394 6499 0.9100 +5394 6613 0.5800 +5394 6625 0.8380 +5394 6723 0.4640 +5394 6737 0.8200 +5394 6738 0.7640 +5394 6741 0.5830 +5394 6829 0.6030 +5394 6830 0.6640 +5394 6832 0.9150 +5394 6838 0.5260 +5394 7150 0.5800 +5394 7311 0.4470 +5394 7343 0.6510 +5394 7486 0.4880 +5394 7919 0.6900 +5394 8106 0.6450 +5394 8449 0.4470 +5394 8480 0.5500 +5394 8498 0.6420 +5394 8518 0.4080 +5394 8563 0.5190 +5394 8568 0.6280 +5394 8602 0.9290 +5394 8634 0.5810 +5394 8718 0.4600 +5394 8886 0.4140 +5394 8888 0.5150 +5394 8890 0.4760 +5394 9045 0.7080 +5394 9129 0.7130 +5394 9136 0.9630 +5394 9191 0.4840 +5394 9221 0.6330 +5394 9277 0.9800 +5394 9343 0.4700 +5394 9349 0.6800 +5394 9401 0.5260 +5394 9416 0.5150 +5394 9533 0.4650 +5394 9567 0.7620 +5394 9576 0.5090 +5394 9652 0.8270 +5394 9724 0.9210 +5394 9775 0.5190 +5394 9785 0.4060 +5394 9790 0.9920 +5394 9924 0.4340 +5394 9933 0.4630 +5394 9987 0.4010 +5394 10055 0.5060 +5394 10153 0.6350 +5394 10171 0.9660 +5394 10179 0.9120 +5394 10189 0.6000 +5394 10199 0.9750 +5394 10200 0.9980 +5394 10212 0.4900 +5394 10412 0.6040 +5394 10436 0.9520 +5394 10438 0.9990 +5394 10482 0.7030 +5394 10526 0.5590 +5394 10527 0.5590 +5394 10528 0.9770 +5394 10557 0.4900 +5394 10607 0.9770 +5394 10767 0.9480 +5394 10813 0.9900 +5394 10849 0.4230 +5394 10856 0.5790 +5394 10885 0.9840 +5394 10914 0.7740 +5394 10946 0.6220 +5394 10969 0.6900 +5394 10989 0.4280 +5394 11044 0.8750 +5394 11056 0.5640 +5394 11103 0.7410 +5394 11128 0.4550 +5394 11219 0.5110 +5394 11224 0.6490 +5394 11277 0.4160 +5394 11340 0.9990 +5394 22803 0.8560 +5394 22828 0.6510 +5394 22894 0.9990 +5394 22907 0.5800 +5394 22916 0.5050 +5394 22984 0.9390 +5394 23016 0.9990 +5394 23019 0.6920 +5394 23029 0.4790 +5394 23054 0.8090 +5394 23064 0.8180 +5394 23076 0.5310 +5394 23160 0.9720 +5394 23173 0.4160 +5394 23212 0.7880 +5394 23223 0.6110 +5394 23246 0.5010 +5394 23318 0.4440 +5394 23363 0.5260 +5394 23367 0.4050 +5394 23378 0.6460 +5394 23404 0.9990 +5394 23405 0.5600 +5394 23420 0.5910 +5394 23435 0.7510 +5394 23438 0.4610 +5394 23476 0.5260 +5394 23481 0.7600 +5394 23515 0.7260 +5394 23517 0.9990 +5394 23521 0.6110 +5394 23560 0.8350 +5394 23589 0.4420 +5394 23633 0.5420 +5394 23644 0.5040 +5394 25873 0.6500 +5394 25879 0.9760 +5394 25885 0.5570 +5394 25904 0.4430 +5394 25926 0.8910 +5394 25983 0.5060 +5394 26019 0.7950 +5394 26063 0.4070 +5394 26155 0.7620 +5394 26156 0.6420 +5394 26168 0.5620 +5394 26354 0.7430 +5394 26574 0.4840 +5394 26986 0.4930 +5394 27042 0.4570 +5394 27043 0.4400 +5394 27161 0.5420 +5394 27257 0.5450 +5394 27292 0.9010 +5394 27340 0.9630 +5394 27341 0.9680 +5394 28987 0.7440 +5394 29072 0.4030 +5394 29101 0.5160 +5394 29102 0.6560 +5394 29889 0.8960 +5394 29997 0.7050 +5394 30836 0.9450 +5394 51010 0.9990 +5394 51013 0.9990 +5394 51018 0.5130 +5394 51042 0.6160 +5394 51065 0.4360 +5394 51077 0.9570 +5394 51082 0.4280 +5394 51096 0.9880 +5394 51106 0.4200 +5394 51118 0.9810 +5394 51121 0.6750 +5394 51149 0.4560 +5394 51154 0.8200 +5394 51187 0.7330 +5394 51202 0.7480 +5394 51388 0.4670 +5394 51406 0.8330 +5394 51490 0.5290 +5394 51575 0.7930 +5394 51585 0.5790 +5394 51592 0.6290 +5394 51593 0.4410 +5394 51602 0.9650 +5394 51691 0.5630 +5394 51692 0.4240 +5394 51728 0.4110 +5394 54464 0.8950 +5394 54475 0.6070 +5394 54512 0.9990 +5394 54517 0.5280 +5394 54552 0.7400 +5394 54555 0.6460 +5394 54586 0.4350 +5394 54606 0.7350 +5394 54663 0.4440 +5394 54841 0.4440 +5394 54870 0.4060 +5394 54881 0.5470 +5394 55051 0.4010 +5394 55127 0.9780 +5394 55131 0.8000 +5394 55153 0.7370 +5394 55226 0.6080 +5394 55272 0.9530 +5394 55299 0.7010 +5394 55319 0.5360 +5394 55341 0.7100 +5394 55374 0.5130 +5394 55520 0.5170 +5394 55596 0.8240 +5394 55601 0.5810 +5394 55651 0.4550 +5394 55760 0.4720 +5394 55781 0.5270 +5394 55795 0.5050 +5394 55802 0.4160 +5394 55813 0.9720 +5394 56342 0.4370 +5394 56902 0.9590 +5394 56903 0.7600 +5394 56915 0.9990 +5394 57050 0.9910 +5394 57062 0.4670 +5394 57109 0.5100 +5394 57136 0.8680 +5394 57187 0.4420 +5394 57379 0.5720 +5394 57418 0.5350 +5394 57455 0.5220 +5394 57466 0.5960 +5394 57647 0.9130 +5394 57819 0.4900 +5394 60528 0.5850 +5394 64118 0.5700 +5394 64135 0.5560 +5394 64216 0.4390 +5394 64282 0.8720 +5394 64318 0.4380 +5394 64425 0.4350 +5394 64782 0.4540 +5394 64794 0.4140 +5394 64852 0.4070 +5394 64895 0.7740 +5394 64960 0.4010 +5394 65080 0.4090 +5394 65082 0.4140 +5394 65083 0.9720 +5394 65095 0.4270 +5394 65109 0.5520 +5394 65110 0.5300 +5394 79050 0.9880 +5394 79159 0.5210 +5394 79571 0.8050 +5394 79586 0.5910 +5394 79590 0.4240 +5394 79670 0.4540 +5394 79693 0.4260 +5394 79707 0.5160 +5394 79882 0.6100 +5394 79954 0.6730 +5394 80135 0.4750 +5394 80222 0.4540 +5394 80349 0.6810 +5394 81691 0.5550 +5394 81875 0.5550 +5394 81887 0.6080 +5394 83448 0.4240 +5394 83480 0.4280 +5394 83706 0.5910 +5394 83743 0.6690 +5394 84128 0.9720 +5394 84135 0.9510 +5394 84154 0.8620 +5394 84172 0.5110 +5394 84186 0.9020 +5394 84273 0.4260 +5394 84294 0.4280 +5394 84365 0.6420 +5394 84916 0.9800 +5394 84946 0.4600 +5394 85441 0.8880 +5394 87178 0.9930 +5394 88745 0.4460 +5394 90121 0.4940 +5394 90381 0.4180 +5394 90459 0.5970 +5394 91582 0.8050 +5394 92856 0.9730 +5394 93643 0.4640 +5394 93973 0.4230 +5394 114034 0.4200 +5394 115752 0.9990 +5394 116447 0.5770 +5394 116832 0.6700 +5394 117246 0.6810 +5394 118460 0.9990 +5394 124245 0.5860 +5394 129563 0.9910 +5394 140801 0.4200 +5394 147837 0.4490 +5394 153443 0.4390 +5394 165545 0.4720 +5394 167227 0.6970 +5394 196441 0.9680 +5394 200916 0.5770 +5394 221078 0.5590 +5394 221830 0.6150 +5394 246243 0.5720 +5394 285855 0.5340 +5394 345630 0.5380 +5394 349565 0.4150 +5394 353267 0.4970 +5394 378708 0.4460 +5394 387129 0.4990 +5394 402569 0.5330 +5394 643677 0.4090 +5394 100505478 0.4590 +5394 100533467 0.4440 +5395 5424 0.9610 +5395 5425 0.4860 +5395 5426 0.8930 +5395 5591 0.8500 +5395 5644 0.5070 +5395 5728 0.6890 +5395 5832 0.4510 +5395 5859 0.5500 +5395 5884 0.4160 +5395 5887 0.7230 +5395 5888 0.7840 +5395 5889 0.8070 +5395 5890 0.6680 +5395 5892 0.7960 +5395 5893 0.6230 +5395 5917 0.4560 +5395 5965 0.4260 +5395 5979 0.4790 +5395 5980 0.5210 +5395 5982 0.5010 +5395 5983 0.4670 +5395 5984 0.5770 +5395 5985 0.4450 +5395 6117 0.5710 +5395 6118 0.5340 +5395 6119 0.6270 +5395 6392 0.4430 +5395 6573 0.4140 +5395 6597 0.4770 +5395 6598 0.4180 +5395 6742 0.4070 +5395 6794 0.7120 +5395 7046 0.4620 +5395 7048 0.7510 +5395 7157 0.9360 +5395 7158 0.5630 +5395 7161 0.6950 +5395 7249 0.4060 +5395 7298 0.5240 +5395 7328 0.4130 +5395 7374 0.5220 +5395 7486 0.7690 +5395 7507 0.8970 +5395 7508 0.6560 +5395 7515 0.6590 +5395 7516 0.7600 +5395 7517 0.6060 +5395 7518 0.7120 +5395 7520 0.7720 +5395 7905 0.6970 +5395 7965 0.6070 +5395 8243 0.5200 +5395 8289 0.5870 +5395 8438 0.5140 +5395 9126 0.4490 +5395 9156 0.9950 +5395 9400 0.5790 +5395 9401 0.6050 +5395 10038 0.5600 +5395 10481 0.4740 +5395 10973 0.6410 +5395 11073 0.4420 +5395 11200 0.7340 +5395 22909 0.9920 +5395 23028 0.5710 +5395 23186 0.5640 +5395 23583 0.4550 +5395 23626 0.5520 +5395 25788 0.4310 +5395 26585 0.4740 +5395 27030 0.9910 +5395 29126 0.6090 +5395 29998 0.4350 +5395 51008 0.5930 +5395 51317 0.5670 +5395 51455 0.4290 +5395 51534 0.4210 +5395 54474 0.5090 +5395 54894 0.4460 +5395 55120 0.4350 +5395 55215 0.8660 +5395 55247 0.4500 +5395 56852 0.5650 +5395 57038 0.5940 +5395 57509 0.4370 +5395 57697 0.6890 +5395 60561 0.4140 +5395 63967 0.4440 +5395 64421 0.6210 +5395 79577 0.4630 +5395 79695 0.6930 +5395 79728 0.9470 +5395 79840 0.6640 +5395 80198 0.4870 +5395 83990 0.9930 +5395 84142 0.5290 +5395 84164 0.5470 +5395 84464 0.4020 +5395 84893 0.6680 +5395 91419 0.5400 +5395 125150 0.5440 +5395 126074 0.5400 +5395 136541 0.5670 +5395 201163 0.4230 +5395 222967 0.5190 +5395 256987 0.5020 +5395 286257 0.5790 +5395 348654 0.5090 +5395 400566 0.5070 +5395 728194 0.5110 +5395 100310846 0.4570 +5395 100533467 0.5540 +5395 105375355 0.5800 +5396 5910 0.6160 +5396 6495 0.6460 +5396 6591 0.6030 +5396 6615 0.5440 +5396 6662 0.5400 +5396 6722 0.5780 +5396 6909 0.4250 +5396 6910 0.4440 +5396 6913 0.4630 +5396 6926 0.5920 +5396 7043 0.5630 +5396 7058 0.4250 +5396 7150 0.4020 +5396 7291 0.7940 +5396 7994 0.4410 +5396 8480 0.4160 +5396 9096 0.4780 +5396 9464 0.6530 +5396 9839 0.4650 +5396 10481 0.6620 +5396 10631 0.5740 +5396 11168 0.5830 +5396 23224 0.4300 +5396 26040 0.5310 +5396 51226 0.4470 +5396 51603 0.8440 +5396 54904 0.5550 +5396 60681 0.4290 +5396 64324 0.5940 +5396 79142 0.5160 +5396 79933 0.5140 +5396 84909 0.4830 +5396 116039 0.5920 +5396 117581 0.5880 +5396 121340 0.5040 +5396 130497 0.5790 +5396 148979 0.4190 +5406 5407 0.9840 +5406 5465 0.4610 +5406 5468 0.4930 +5406 5539 0.4790 +5406 5644 0.7290 +5406 5645 0.4800 +5406 5646 0.4210 +5406 5651 0.4590 +5406 5834 0.4440 +5406 5836 0.4320 +5406 6476 0.7280 +5406 6720 0.4680 +5406 7350 0.4050 +5406 7351 0.4710 +5406 8513 0.9980 +5406 8525 0.6680 +5406 8526 0.6500 +5406 8527 0.6610 +5406 8612 0.7260 +5406 8613 0.7040 +5406 8694 0.8000 +5406 8864 0.4730 +5406 8972 0.7220 +5406 9162 0.6910 +5406 9370 0.4660 +5406 9388 0.9210 +5406 9663 0.6900 +5406 9843 0.5930 +5406 10136 0.8880 +5406 10647 0.5280 +5406 11330 0.5630 +5406 11343 0.9400 +5406 23175 0.7010 +5406 23205 0.6040 +5406 23305 0.6630 +5406 23436 0.6800 +5406 29072 0.4450 +5406 29881 0.4430 +5406 51032 0.6740 +5406 51703 0.6840 +5406 51738 0.4380 +5406 55750 0.9020 +5406 57104 0.9560 +5406 63036 0.5470 +5406 64788 0.5570 +5406 64900 0.6760 +5406 80168 0.7220 +5406 80339 0.9480 +5406 81616 0.6040 +5406 84513 0.9040 +5406 84649 0.7740 +5406 116255 0.6860 +5406 119548 0.9050 +5406 136541 0.4110 +5406 139189 0.6550 +5406 160851 0.6750 +5406 196051 0.9040 +5406 259217 0.4020 +5406 338328 0.4490 +5406 342898 0.6230 +5406 346606 0.6590 +5406 440387 0.8560 +5407 5644 0.4390 +5407 8513 0.9920 +5407 8525 0.6680 +5407 8526 0.6500 +5407 8527 0.6550 +5407 8612 0.6630 +5407 8613 0.6750 +5407 8694 0.6840 +5407 9162 0.6810 +5407 9388 0.9050 +5407 9663 0.6890 +5407 10136 0.7960 +5407 11317 0.4530 +5407 11330 0.7250 +5407 11343 0.9110 +5407 23175 0.6860 +5407 23205 0.6040 +5407 23305 0.6180 +5407 23436 0.6600 +5407 51032 0.6390 +5407 51703 0.6150 +5407 55750 0.9020 +5407 57104 0.9050 +5407 57698 0.4440 +5407 63036 0.7980 +5407 64714 0.4680 +5407 64900 0.6710 +5407 80168 0.7010 +5407 80339 0.9080 +5407 81616 0.6070 +5407 84513 0.9040 +5407 84649 0.6700 +5407 116255 0.6630 +5407 119548 0.9050 +5407 139189 0.6560 +5407 154141 0.4740 +5407 160851 0.6630 +5407 196051 0.9040 +5407 259217 0.4510 +5407 342898 0.8490 +5407 346606 0.6660 +5407 440387 0.5400 +5407 653808 0.4760 +5409 5443 0.6660 +5409 5741 0.4320 +5409 6390 0.4160 +5409 6392 0.5280 +5409 6530 0.4810 +5409 6570 0.4090 +5409 6571 0.4550 +5409 6667 0.4360 +5409 6855 0.4890 +5409 7054 0.9510 +5409 8557 0.5830 +5409 9095 0.4570 +5409 55654 0.5180 +5409 220074 0.9620 +5409 392636 0.4170 +5411 5930 0.6250 +5411 5976 0.6560 +5411 6426 0.5750 +5411 6427 0.6770 +5411 6428 0.5290 +5411 6429 0.7600 +5411 6430 0.5160 +5411 6431 0.4710 +5411 6432 0.4560 +5411 6434 0.8370 +5411 6625 0.7590 +5411 6626 0.6340 +5411 6631 0.6540 +5411 6732 0.6670 +5411 6733 0.5360 +5411 6936 0.5240 +5411 7913 0.7190 +5411 7919 0.7650 +5411 8175 0.6620 +5411 8539 0.4060 +5411 8683 0.4500 +5411 8899 0.9510 +5411 8927 0.5120 +5411 9092 0.4450 +5411 9128 0.4380 +5411 9129 0.5360 +5411 9295 0.9420 +5411 9360 0.9060 +5411 9584 0.8040 +5411 9722 0.4890 +5411 9774 0.8740 +5411 9775 0.9590 +5411 9879 0.4180 +5411 9939 0.9050 +5411 9967 0.8770 +5411 9987 0.5070 +5411 10181 0.5630 +5411 10189 0.8360 +5411 10212 0.4290 +5411 10250 0.9790 +5411 10284 0.9970 +5411 10286 0.4120 +5411 10291 0.4830 +5411 10465 0.4270 +5411 10482 0.7810 +5411 10594 0.4670 +5411 10713 0.4590 +5411 10772 0.7080 +5411 10915 0.4670 +5411 10921 0.9990 +5411 10946 0.4120 +5411 11017 0.5050 +5411 11052 0.4220 +5411 11157 0.4160 +5411 11338 0.6900 +5411 22794 0.8820 +5411 22916 0.4290 +5411 22938 0.5610 +5411 22985 0.9780 +5411 23350 0.6290 +5411 23360 0.5090 +5411 23378 0.4150 +5411 23451 0.5750 +5411 23476 0.5380 +5411 23524 0.8440 +5411 23645 0.4140 +5411 23658 0.4920 +5411 24144 0.5550 +5411 24148 0.4130 +5411 25804 0.4770 +5411 25957 0.9510 +5411 26019 0.7640 +5411 26093 0.5370 +5411 26097 0.4790 +5411 26121 0.4650 +5411 27258 0.4160 +5411 29896 0.6110 +5411 51103 0.6370 +5411 51340 0.4380 +5411 51362 0.4270 +5411 51428 0.6140 +5411 51538 0.7600 +5411 51631 0.5940 +5411 51690 0.4210 +5411 51691 0.4570 +5411 51747 0.7960 +5411 55082 0.5940 +5411 55110 0.8720 +5411 55119 0.7130 +5411 55216 0.5700 +5411 55421 0.8070 +5411 55660 0.8210 +5411 55692 0.4700 +5411 55696 0.4730 +5411 55884 0.5740 +5411 56006 0.4260 +5411 56949 0.4650 +5411 57142 0.4780 +5411 57187 0.4110 +5411 57703 0.6410 +5411 57819 0.4420 +5411 58517 0.8120 +5411 65109 0.8910 +5411 65110 0.8070 +5411 65117 0.4360 +5411 79171 0.5860 +5411 79576 0.4470 +5411 79753 0.8230 +5411 79882 0.7180 +5411 84324 0.5260 +5411 91746 0.5350 +5411 122553 0.5030 +5411 124245 0.7140 +5411 138046 0.4260 +5411 140890 0.8450 +5411 143884 0.5550 +5411 145581 0.4010 +5411 151613 0.4360 +5411 222194 0.4050 +5411 728642 0.5430 +5412 7157 0.4120 +5412 7341 0.8000 +5412 8266 0.5370 +5412 9474 0.4140 +5412 9636 0.4180 +5412 10845 0.4290 +5412 51406 0.4490 +5412 51569 0.4280 +5412 56852 0.4220 +5412 59286 0.9290 +5412 126364 0.4800 +5413 5414 0.9860 +5413 5625 0.6700 +5413 5902 0.5910 +5413 6015 0.5160 +5413 6182 0.4520 +5413 6397 0.4200 +5413 6455 0.5270 +5413 6616 0.8320 +5413 6622 0.5160 +5413 6810 0.7340 +5413 6812 0.4140 +5413 6844 0.4310 +5413 6853 0.4030 +5413 6855 0.7770 +5413 6899 0.7560 +5413 6943 0.4910 +5413 7625 0.4030 +5413 8028 0.5710 +5413 8218 0.4660 +5413 8318 0.5110 +5413 8522 0.4190 +5413 8646 0.5300 +5413 8829 0.4700 +5413 8833 0.4970 +5413 8851 0.4100 +5413 9127 0.5120 +5413 9242 0.4290 +5413 9627 0.7270 +5413 9993 0.5390 +5413 10006 0.4150 +5413 10243 0.4100 +5413 10801 0.9420 +5413 10978 0.4240 +5413 23048 0.4300 +5413 23154 0.4120 +5413 23157 0.9960 +5413 23176 0.9900 +5413 23208 0.5320 +5413 23365 0.4160 +5413 23466 0.4230 +5413 23580 0.8780 +5413 23617 0.4850 +5413 27037 0.4820 +5413 29801 0.5200 +5413 54443 0.4140 +5413 54487 0.5240 +5413 54584 0.8960 +5413 55175 0.5760 +5413 55752 0.9970 +5413 55964 0.9890 +5413 56970 0.4590 +5413 57082 0.4650 +5413 57498 0.4820 +5413 58510 0.4220 +5413 64976 0.4480 +5413 65078 0.5320 +5413 83667 0.4240 +5413 84324 0.4260 +5413 84446 0.4060 +5413 90120 0.7110 +5413 116983 0.6900 +5413 124404 0.9880 +5413 128977 0.4320 +5413 128989 0.4750 +5413 151011 0.9750 +5413 220074 0.5030 +5413 346288 0.9050 +5414 6242 0.7500 +5414 6397 0.5690 +5414 6490 0.5940 +5414 6622 0.6940 +5414 6663 0.4110 +5414 7299 0.4910 +5414 8505 0.4630 +5414 10801 0.9910 +5414 11047 0.5700 +5414 11060 0.4210 +5414 11345 0.4380 +5414 23157 0.9990 +5414 23176 0.9810 +5414 23580 0.8830 +5414 23710 0.4370 +5414 27285 0.4180 +5414 51669 0.4560 +5414 54443 0.5050 +5414 55062 0.4260 +5414 55752 0.9980 +5414 55964 0.9950 +5414 90120 0.7110 +5414 93377 0.4800 +5414 116369 0.4540 +5414 118932 0.4230 +5414 124404 0.9970 +5414 140735 0.5500 +5414 151011 0.9790 +5414 346288 0.9170 +5414 374407 0.7330 +5420 5458 0.4980 +5420 5460 0.5000 +5420 5745 0.4350 +5420 5788 0.4940 +5420 5800 0.6000 +5420 5962 0.5390 +5420 6311 0.4030 +5420 6401 0.7000 +5420 6402 0.9200 +5420 6495 0.4970 +5420 6615 0.4920 +5420 6657 0.4420 +5420 6693 0.4900 +5420 6736 0.4310 +5420 7082 0.6830 +5420 7369 0.4470 +5420 7430 0.9940 +5420 7474 0.4760 +5420 7490 0.7800 +5420 7827 0.8710 +5420 7852 0.4330 +5420 8029 0.4050 +5420 8128 0.4210 +5420 8398 0.4370 +5420 8766 0.4570 +5420 8796 0.5280 +5420 8826 0.4250 +5420 8867 0.5150 +5420 9351 0.9890 +5420 9368 0.9630 +5420 9829 0.5020 +5420 10020 0.7690 +5420 10164 0.4180 +5420 10630 0.7030 +5420 10736 0.5190 +5420 11021 0.8090 +5420 11346 0.9260 +5420 23022 0.5120 +5420 23213 0.5260 +5420 23236 0.4520 +5420 23317 0.4650 +5420 23400 0.4410 +5420 23607 0.6090 +5420 23705 0.4800 +5420 25793 0.4690 +5420 25844 0.4970 +5420 26056 0.4550 +5420 27121 0.4210 +5420 27429 0.4120 +5420 51142 0.4740 +5420 51705 0.7240 +5420 53405 0.4050 +5420 54832 0.4950 +5420 54922 0.5490 +5420 55243 0.4750 +5420 55737 0.4400 +5420 56956 0.5190 +5420 57554 0.4880 +5420 64321 0.4360 +5420 65018 0.4210 +5420 79608 0.5450 +5420 79923 0.4660 +5420 80208 0.4080 +5420 80230 0.7650 +5420 92359 0.4010 +5420 123803 0.4450 +5420 146894 0.6390 +5422 5424 0.9890 +5422 5425 0.9930 +5422 5426 0.9970 +5422 5427 0.9960 +5422 5428 0.9290 +5422 5429 0.4820 +5422 5431 0.4370 +5422 5557 0.9990 +5422 5558 0.9990 +5422 5884 0.4790 +5422 5885 0.4730 +5422 5888 0.7870 +5422 5893 0.5370 +5422 5925 0.7240 +5422 5931 0.4030 +5422 5980 0.9460 +5422 5981 0.7590 +5422 5982 0.8550 +5422 5983 0.8510 +5422 5984 0.8460 +5422 5985 0.8220 +5422 6117 0.9790 +5422 6118 0.9390 +5422 6119 0.9270 +5422 6182 0.4180 +5422 6240 0.8360 +5422 6241 0.6100 +5422 6474 0.4890 +5422 6749 0.7320 +5422 6829 0.4080 +5422 7013 0.5450 +5422 7014 0.5180 +5422 7027 0.5550 +5422 7029 0.5350 +5422 7150 0.4380 +5422 7153 0.6150 +5422 7155 0.4570 +5422 7156 0.5140 +5422 7157 0.4340 +5422 7158 0.5930 +5422 7175 0.4610 +5422 7272 0.4400 +5422 7298 0.6700 +5422 7374 0.4350 +5422 7402 0.4910 +5422 7486 0.6090 +5422 7507 0.4310 +5422 7520 0.4680 +5422 7543 0.4920 +5422 7884 0.4970 +5422 8208 0.7020 +5422 8243 0.7390 +5422 8317 0.7480 +5422 8318 0.9640 +5422 8337 0.4760 +5422 8338 0.4710 +5422 8349 0.4690 +5422 8350 0.5410 +5422 8438 0.4260 +5422 8636 0.4180 +5422 8908 0.4130 +5422 8914 0.8810 +5422 8940 0.4010 +5422 9126 0.5290 +5422 9156 0.8460 +5422 9337 0.4810 +5422 9391 0.4210 +5422 9401 0.7300 +5422 9468 0.4230 +5422 9493 0.4510 +5422 9557 0.4850 +5422 9585 0.4470 +5422 9670 0.5010 +5422 9735 0.5140 +5422 9759 0.4850 +5422 9837 0.8380 +5422 9904 0.4140 +5422 9918 0.9000 +5422 9994 0.4390 +5422 10036 0.8060 +5422 10051 0.7960 +5422 10459 0.9680 +5422 10514 0.4290 +5422 10528 0.4190 +5422 10535 0.7590 +5422 10592 0.8640 +5422 10635 0.4380 +5422 10714 0.9850 +5422 10721 0.5330 +5422 10735 0.4550 +5422 10926 0.6680 +5422 11073 0.5810 +5422 11169 0.9980 +5422 11198 0.8110 +5422 11200 0.5530 +5422 11201 0.5890 +5422 11232 0.9250 +5422 22976 0.4150 +5422 23047 0.6400 +5422 23165 0.4060 +5422 23195 0.4060 +5422 23244 0.6610 +5422 23310 0.5170 +5422 23397 0.6820 +5422 23468 0.4480 +5422 23586 0.5630 +5422 23594 0.6680 +5422 23595 0.6660 +5422 23649 0.9990 +5422 24137 0.4500 +5422 25913 0.6230 +5422 26277 0.5490 +5422 27127 0.4910 +5422 27229 0.4500 +5422 27297 0.9050 +5422 27343 0.4200 +5422 29028 0.5390 +5422 29102 0.4260 +5422 29127 0.4420 +5422 29128 0.4510 +5422 29883 0.4700 +5422 29935 0.9260 +5422 29980 0.9380 +5422 50484 0.4330 +5422 51053 0.4510 +5422 51426 0.5570 +5422 51455 0.5410 +5422 51514 0.4170 +5422 51601 0.4520 +5422 51659 0.7980 +5422 54107 0.9850 +5422 54108 0.9060 +5422 54386 0.5760 +5422 54443 0.4710 +5422 54700 0.5070 +5422 54821 0.5400 +5422 54841 0.4360 +5422 54892 0.5970 +5422 54921 0.7050 +5422 54962 0.7570 +5422 55125 0.4560 +5422 55143 0.4110 +5422 55215 0.5520 +5422 55342 0.4690 +5422 55388 0.9230 +5422 55536 0.4470 +5422 56655 0.9850 +5422 56852 0.5790 +5422 56992 0.6010 +5422 57405 0.4440 +5422 57697 0.8130 +5422 57804 0.7410 +5422 63922 0.9670 +5422 63967 0.7460 +5422 64151 0.5760 +5422 64210 0.5590 +5422 64785 0.7150 +5422 79075 0.8680 +5422 79135 0.4320 +5422 79621 0.5180 +5422 79677 0.4100 +5422 79892 0.7740 +5422 79915 0.6290 +5422 79968 0.4800 +5422 79991 0.9780 +5422 80119 0.5070 +5422 80169 0.9830 +5422 81620 0.6600 +5422 83540 0.4640 +5422 84296 0.9420 +5422 84515 0.8240 +5422 85456 0.6170 +5422 92797 0.4530 +5422 113510 0.9260 +5422 116211 0.5260 +5422 116447 0.5270 +5422 157777 0.5260 +5422 170302 0.6870 +5422 201973 0.4150 +5422 221927 0.4110 +5422 246243 0.4960 +5422 254394 0.8650 +5422 254528 0.4090 +5422 283431 0.4390 +5422 348180 0.4180 +5422 348654 0.4980 +5422 353497 0.9390 +5422 642636 0.4200 +5422 100134934 0.9480 +5422 100533467 0.4700 +5423 5424 0.8400 +5423 5425 0.5540 +5423 5426 0.8380 +5423 5427 0.5950 +5423 5591 0.4470 +5423 5883 0.6010 +5423 5888 0.4850 +5423 5893 0.4830 +5423 5981 0.5420 +5423 5982 0.6750 +5423 5983 0.5500 +5423 5984 0.5530 +5423 5985 0.5150 +5423 6117 0.6460 +5423 6118 0.5600 +5423 6119 0.6310 +5423 6749 0.6280 +5423 6996 0.5260 +5423 7150 0.4440 +5423 7157 0.8380 +5423 7158 0.4050 +5423 7174 0.7430 +5423 7374 0.8560 +5423 7486 0.8570 +5423 7507 0.4960 +5423 7508 0.7720 +5423 7515 0.9990 +5423 7517 0.4940 +5423 7518 0.6790 +5423 7520 0.7310 +5423 8458 0.5100 +5423 8505 0.7360 +5423 8930 0.5190 +5423 8969 0.4880 +5423 9156 0.5450 +5423 9179 0.4350 +5423 9184 0.4130 +5423 9354 0.4930 +5423 9401 0.6500 +5423 10038 0.9950 +5423 10075 0.4160 +5423 10273 0.4170 +5423 10714 0.5370 +5423 10721 0.4100 +5423 11044 0.4330 +5423 11198 0.6300 +5423 11284 0.9950 +5423 23304 0.6530 +5423 23583 0.7470 +5423 23640 0.4640 +5423 27301 0.4330 +5423 27434 0.7100 +5423 51478 0.4210 +5423 54107 0.5560 +5423 54840 0.9000 +5423 55031 0.9540 +5423 55170 0.7790 +5423 55247 0.4400 +5423 55775 0.9630 +5423 55869 0.4400 +5423 56655 0.5530 +5423 57804 0.5010 +5423 64852 0.4790 +5423 79101 0.7710 +5423 79661 0.9570 +5423 197131 0.5160 +5423 200558 0.8880 +5423 252969 0.8630 +5423 317772 0.4490 +5423 378708 0.4610 +5424 5425 0.9990 +5424 5426 0.9990 +5424 5427 0.9920 +5424 5428 0.9660 +5424 5429 0.8160 +5424 5431 0.4700 +5424 5557 0.9900 +5424 5558 0.9920 +5424 5591 0.9470 +5424 5728 0.5610 +5424 5810 0.4410 +5424 5883 0.4030 +5424 5884 0.5940 +5424 5887 0.9250 +5424 5888 0.9210 +5424 5889 0.8120 +5424 5890 0.7680 +5424 5892 0.8560 +5424 5893 0.7820 +5424 5925 0.4640 +5424 5932 0.5450 +5424 5965 0.6230 +5424 5980 0.9840 +5424 5981 0.7600 +5424 5982 0.8070 +5424 5983 0.8440 +5424 5984 0.9160 +5424 5985 0.8280 +5424 6117 0.9890 +5424 6118 0.9710 +5424 6119 0.9800 +5424 6210 0.6240 +5424 6233 0.5070 +5424 6240 0.5770 +5424 6241 0.4930 +5424 6596 0.4210 +5424 6597 0.4130 +5424 6613 0.4130 +5424 6749 0.4900 +5424 6790 0.4680 +5424 6794 0.5860 +5424 6795 0.6130 +5424 7013 0.5320 +5424 7014 0.6810 +5424 7015 0.4190 +5424 7150 0.5010 +5424 7153 0.5100 +5424 7156 0.7690 +5424 7157 0.5920 +5424 7158 0.8340 +5424 7298 0.5760 +5424 7311 0.5430 +5424 7314 0.5020 +5424 7316 0.5020 +5424 7320 0.6230 +5424 7374 0.4640 +5424 7398 0.5770 +5424 7486 0.9010 +5424 7507 0.8080 +5424 7508 0.9190 +5424 7515 0.9040 +5424 7516 0.6410 +5424 7517 0.8390 +5424 7518 0.9320 +5424 7520 0.9630 +5424 7979 0.4480 +5424 8208 0.5100 +5424 8243 0.4150 +5424 8313 0.4350 +5424 8317 0.5020 +5424 8318 0.8860 +5424 8438 0.7280 +5424 8450 0.5760 +5424 8451 0.5440 +5424 8890 0.4350 +5424 8908 0.6020 +5424 8914 0.6920 +5424 8940 0.4810 +5424 9088 0.4780 +5424 9110 0.4140 +5424 9133 0.4430 +5424 9156 0.9500 +5424 9212 0.7240 +5424 9277 0.4220 +5424 9391 0.8390 +5424 9400 0.4690 +5424 9401 0.8430 +5424 9533 0.4220 +5424 9636 0.5100 +5424 9656 0.6380 +5424 9700 0.4560 +5424 9735 0.4870 +5424 9768 0.5920 +5424 9837 0.6970 +5424 9894 0.4080 +5424 9918 0.4720 +5424 9978 0.5470 +5424 10036 0.6210 +5424 10101 0.6470 +5424 10111 0.7410 +5424 10155 0.4790 +5424 10269 0.4200 +5424 10459 0.9780 +5424 10524 0.4900 +5424 10528 0.4370 +5424 10535 0.7130 +5424 10635 0.5810 +5424 10714 0.9990 +5424 10721 0.7730 +5424 10856 0.4600 +5424 10973 0.5750 +5424 11073 0.5960 +5424 11128 0.5120 +5424 11169 0.8550 +5424 11198 0.4440 +5424 11200 0.7530 +5424 11201 0.6550 +5424 11232 0.9040 +5424 11284 0.4800 +5424 23028 0.9060 +5424 23186 0.9060 +5424 23594 0.4350 +5424 23649 0.9940 +5424 25788 0.5700 +5424 25804 0.4580 +5424 25885 0.5090 +5424 25886 0.4190 +5424 25913 0.5250 +5424 26073 0.7200 +5424 26277 0.5350 +5424 26585 0.7090 +5424 27030 0.9120 +5424 27158 0.7380 +5424 27297 0.9000 +5424 27343 0.5830 +5424 27434 0.6790 +5424 29126 0.4310 +5424 29935 0.9360 +5424 29980 0.9380 +5424 51008 0.5440 +5424 51082 0.4300 +5424 51317 0.9190 +5424 51426 0.8230 +5424 51455 0.6820 +5424 51514 0.6610 +5424 51548 0.4140 +5424 51647 0.8490 +5424 51659 0.6060 +5424 51750 0.8190 +5424 54107 0.9850 +5424 54108 0.9060 +5424 54386 0.6920 +5424 54840 0.5370 +5424 54841 0.4320 +5424 54894 0.4470 +5424 54921 0.6910 +5424 54929 0.4380 +5424 54932 0.5430 +5424 54962 0.5410 +5424 55215 0.7780 +5424 55388 0.6710 +5424 55723 0.4240 +5424 56655 0.9680 +5424 56852 0.8350 +5424 56897 0.6670 +5424 56915 0.4470 +5424 57019 0.7340 +5424 57509 0.4100 +5424 57599 0.5580 +5424 57697 0.8310 +5424 57804 0.9990 +5424 63922 0.9550 +5424 63967 0.4520 +5424 64151 0.4860 +5424 64210 0.9130 +5424 64421 0.9230 +5424 64428 0.6360 +5424 64785 0.6770 +5424 79050 0.4840 +5424 79075 0.8300 +5424 79621 0.4950 +5424 79695 0.7560 +5424 79728 0.8050 +5424 79840 0.9240 +5424 79915 0.5420 +5424 80010 0.5790 +5424 80119 0.4460 +5424 80198 0.6440 +5424 81620 0.7460 +5424 83694 0.4600 +5424 83932 0.7720 +5424 83990 0.8000 +5424 84126 0.5230 +5424 84164 0.5460 +5424 84172 0.4200 +5424 84215 0.4900 +5424 84250 0.4500 +5424 84296 0.7940 +5424 84515 0.6280 +5424 85415 0.6960 +5424 91419 0.9000 +5424 113510 0.4430 +5424 116028 0.5030 +5424 116211 0.4860 +5424 116447 0.4530 +5424 120892 0.5220 +5424 124739 0.5820 +5424 125150 0.9240 +5424 126074 0.9000 +5424 146956 0.4990 +5424 147807 0.5350 +5424 150274 0.4100 +5424 157777 0.4860 +5424 254394 0.8620 +5424 254528 0.4990 +5424 285368 0.4110 +5424 286257 0.9050 +5424 348180 0.6300 +5424 348654 0.5380 +5424 353497 0.7110 +5424 374655 0.5070 +5424 100533467 0.6510 +5424 105375355 0.5400 +5425 5426 0.9910 +5425 5427 0.9870 +5425 5428 0.9160 +5425 5429 0.8290 +5425 5431 0.4510 +5425 5536 0.4060 +5425 5557 0.9610 +5425 5558 0.9690 +5425 5884 0.4580 +5425 5888 0.7830 +5425 5889 0.5880 +5425 5890 0.5850 +5425 5892 0.5850 +5425 5932 0.5130 +5425 5965 0.4900 +5425 5980 0.9990 +5425 5981 0.6630 +5425 5982 0.8240 +5425 5983 0.8420 +5425 5984 0.8780 +5425 5985 0.8300 +5425 6117 0.9380 +5425 6118 0.9320 +5425 6119 0.9700 +5425 6233 0.5100 +5425 7013 0.5440 +5425 7014 0.6290 +5425 7126 0.7290 +5425 7156 0.7410 +5425 7311 0.5110 +5425 7314 0.4990 +5425 7316 0.4990 +5425 7320 0.5730 +5425 7398 0.5500 +5425 7486 0.7300 +5425 7515 0.5910 +5425 7516 0.4670 +5425 7517 0.5940 +5425 7520 0.5130 +5425 7706 0.4450 +5425 7979 0.4430 +5425 8318 0.6520 +5425 8450 0.5510 +5425 8451 0.5550 +5425 8908 0.6190 +5425 9156 0.9020 +5425 9400 0.4140 +5425 9401 0.5170 +5425 9636 0.5230 +5425 9768 0.7070 +5425 9837 0.4170 +5425 9978 0.5680 +5425 10111 0.4150 +5425 10189 0.4560 +5425 10459 0.9990 +5425 10524 0.4330 +5425 10535 0.6570 +5425 10635 0.5620 +5425 10714 0.9990 +5425 10730 0.4070 +5425 11169 0.4680 +5425 11200 0.4140 +5425 11201 0.4020 +5425 11232 0.9080 +5425 23386 0.4570 +5425 23594 0.5850 +5425 23649 0.9870 +5425 25913 0.5130 +5425 26073 0.9100 +5425 26273 0.6690 +5425 26277 0.4990 +5425 27030 0.5080 +5425 27245 0.4010 +5425 27297 0.9000 +5425 27301 0.5110 +5425 27343 0.5790 +5425 27434 0.5920 +5425 29935 0.9360 +5425 29980 0.9520 +5425 51426 0.7540 +5425 51455 0.8400 +5425 51514 0.5980 +5425 51548 0.4200 +5425 51659 0.4680 +5425 54107 0.9700 +5425 54108 0.9010 +5425 54386 0.5110 +5425 54841 0.5500 +5425 54921 0.5390 +5425 54932 0.5810 +5425 56655 0.9750 +5425 56852 0.7920 +5425 56897 0.7220 +5425 57418 0.4730 +5425 57599 0.5460 +5425 57804 0.9990 +5425 63922 0.6810 +5425 64210 0.6080 +5425 64785 0.5230 +5425 79075 0.5720 +5425 79728 0.5230 +5425 80010 0.6020 +5425 81620 0.4470 +5425 83892 0.7980 +5425 83932 0.5250 +5425 83990 0.4900 +5425 84268 0.4580 +5425 84271 0.5910 +5425 116028 0.4940 +5425 124739 0.4990 +5425 146956 0.5510 +5425 201973 0.4560 +5425 253980 0.8760 +5425 254394 0.4620 +5425 348180 0.6320 +5425 348654 0.5740 +5425 100533467 0.6160 +5426 5427 0.9990 +5426 5428 0.9660 +5426 5429 0.7740 +5426 5431 0.4190 +5426 5518 0.5880 +5426 5557 0.9900 +5426 5558 0.9880 +5426 5591 0.4190 +5426 5718 0.4180 +5426 5728 0.6440 +5426 5884 0.7300 +5426 5888 0.8280 +5426 5889 0.8130 +5426 5890 0.7670 +5426 5892 0.8530 +5426 5893 0.5880 +5426 5932 0.5090 +5426 5979 0.4260 +5426 5980 0.9890 +5426 5981 0.7460 +5426 5982 0.7590 +5426 5983 0.8880 +5426 5984 0.7990 +5426 5985 0.7480 +5426 6098 0.4140 +5426 6117 0.8260 +5426 6118 0.6400 +5426 6119 0.6610 +5426 6233 0.5030 +5426 6240 0.5470 +5426 6500 0.4450 +5426 6594 0.5530 +5426 6596 0.4820 +5426 6597 0.5060 +5426 6598 0.4180 +5426 6749 0.4390 +5426 6794 0.6070 +5426 6829 0.4310 +5426 6871 0.5440 +5426 6921 0.8030 +5426 6923 0.8040 +5426 7015 0.4610 +5426 7150 0.6770 +5426 7153 0.6460 +5426 7155 0.4560 +5426 7156 0.5890 +5426 7157 0.6970 +5426 7158 0.6470 +5426 7266 0.4560 +5426 7311 0.5320 +5426 7314 0.5130 +5426 7316 0.5130 +5426 7320 0.5690 +5426 7374 0.4530 +5426 7398 0.5390 +5426 7486 0.7820 +5426 7507 0.5380 +5426 7515 0.9110 +5426 7516 0.6160 +5426 7517 0.7490 +5426 8085 0.4080 +5426 8208 0.6110 +5426 8243 0.4690 +5426 8289 0.6720 +5426 8295 0.5110 +5426 8313 0.4160 +5426 8317 0.7110 +5426 8318 0.9950 +5426 8340 0.4850 +5426 8349 0.4030 +5426 8438 0.5780 +5426 8450 0.5560 +5426 8451 0.5500 +5426 8453 0.8140 +5426 8467 0.6120 +5426 8664 0.4200 +5426 8859 0.4300 +5426 8908 0.4390 +5426 8914 0.9800 +5426 9110 0.4810 +5426 9126 0.4660 +5426 9156 0.8890 +5426 9391 0.6770 +5426 9401 0.7110 +5426 9636 0.5420 +5426 9656 0.4400 +5426 9700 0.5480 +5426 9735 0.6140 +5426 9768 0.5770 +5426 9780 0.5710 +5426 9837 0.9890 +5426 9918 0.4740 +5426 9978 0.9060 +5426 10036 0.5140 +5426 10051 0.4850 +5426 10111 0.6050 +5426 10403 0.4080 +5426 10459 0.9700 +5426 10524 0.4490 +5426 10535 0.8610 +5426 10592 0.4650 +5426 10635 0.5460 +5426 10714 0.9630 +5426 10721 0.7340 +5426 10926 0.6230 +5426 11073 0.8270 +5426 11169 0.9920 +5426 11177 0.5580 +5426 11200 0.7780 +5426 11201 0.4830 +5426 11232 0.9030 +5426 23264 0.4130 +5426 23331 0.4100 +5426 23361 0.4030 +5426 23405 0.6000 +5426 23594 0.6320 +5426 23595 0.6790 +5426 23649 0.9930 +5426 25885 0.5050 +5426 26585 0.5760 +5426 27030 0.6880 +5426 27297 0.9060 +5426 27343 0.4680 +5426 27434 0.6080 +5426 29113 0.4060 +5426 29126 0.6200 +5426 29128 0.4250 +5426 29935 0.6450 +5426 51426 0.7140 +5426 51455 0.7370 +5426 51514 0.7830 +5426 51659 0.9520 +5426 51755 0.5520 +5426 54107 0.9990 +5426 54108 0.9570 +5426 54840 0.6380 +5426 54841 0.4320 +5426 54894 0.5730 +5426 54921 0.8400 +5426 54962 0.9530 +5426 55143 0.5050 +5426 55193 0.4100 +5426 55215 0.5290 +5426 55247 0.4140 +5426 55294 0.5400 +5426 55388 0.8690 +5426 56655 0.9990 +5426 56852 0.7600 +5426 57509 0.5480 +5426 57599 0.5370 +5426 57697 0.8300 +5426 57804 0.7990 +5426 63895 0.5370 +5426 63922 0.9900 +5426 63967 0.9220 +5426 64210 0.8050 +5426 64785 0.9780 +5426 79075 0.9430 +5426 79621 0.4400 +5426 79677 0.4340 +5426 79695 0.5080 +5426 79728 0.7640 +5426 79915 0.6360 +5426 80010 0.5010 +5426 80119 0.5760 +5426 80198 0.6520 +5426 81620 0.6190 +5426 83990 0.6600 +5426 84191 0.4200 +5426 84250 0.6300 +5426 84296 0.9940 +5426 84464 0.4170 +5426 84515 0.8190 +5426 90506 0.6140 +5426 116028 0.4990 +5426 116211 0.4900 +5426 116447 0.6450 +5426 120892 0.4370 +5426 122769 0.8140 +5426 124739 0.5070 +5426 139285 0.4010 +5426 148266 0.4090 +5426 157777 0.4900 +5426 196374 0.4410 +5426 201266 0.5560 +5426 246243 0.4620 +5426 254394 0.9280 +5426 259266 0.4270 +5426 284403 0.4370 +5426 348180 0.4970 +5426 348654 0.5810 +5426 353497 0.6430 +5426 100533467 0.6290 +5427 5428 0.9260 +5427 5429 0.5640 +5427 5557 0.9860 +5427 5558 0.9860 +5427 5718 0.4520 +5427 5824 0.7900 +5427 5884 0.5250 +5427 5888 0.7880 +5427 5889 0.6370 +5427 5890 0.5530 +5427 5892 0.5560 +5427 5932 0.5140 +5427 5980 0.9730 +5427 5981 0.7080 +5427 5982 0.8330 +5427 5983 0.9060 +5427 5984 0.9350 +5427 5985 0.8490 +5427 6117 0.7370 +5427 6118 0.6780 +5427 6119 0.7200 +5427 6209 0.4400 +5427 6233 0.5240 +5427 6240 0.4330 +5427 6241 0.6000 +5427 6500 0.4290 +5427 6576 0.8100 +5427 6594 0.5410 +5427 6790 0.4070 +5427 6804 0.4390 +5427 6809 0.4390 +5427 6810 0.4390 +5427 6871 0.5950 +5427 6921 0.8030 +5427 6923 0.8000 +5427 7153 0.5340 +5427 7156 0.4800 +5427 7272 0.5730 +5427 7298 0.6480 +5427 7311 0.4990 +5427 7314 0.5290 +5427 7316 0.5150 +5427 7320 0.5150 +5427 7398 0.5540 +5427 7486 0.6030 +5427 7515 0.5240 +5427 7516 0.5320 +5427 7517 0.5920 +5427 7979 0.4030 +5427 8208 0.5180 +5427 8317 0.7990 +5427 8318 0.9990 +5427 8340 0.5470 +5427 8349 0.4680 +5427 8438 0.5090 +5427 8450 0.5380 +5427 8451 0.5590 +5427 8453 0.8030 +5427 8467 0.5860 +5427 8676 0.4450 +5427 8914 0.9660 +5427 9133 0.4550 +5427 9134 0.5670 +5427 9156 0.8660 +5427 9212 0.6610 +5427 9319 0.5030 +5427 9401 0.4570 +5427 9463 0.5390 +5427 9493 0.4810 +5427 9636 0.5410 +5427 9735 0.5050 +5427 9768 0.7290 +5427 9780 0.4140 +5427 9787 0.5130 +5427 9833 0.4890 +5427 9837 0.9960 +5427 9928 0.4030 +5427 9978 0.9070 +5427 10036 0.4360 +5427 10051 0.4120 +5427 10078 0.4440 +5427 10111 0.4470 +5427 10112 0.7610 +5427 10244 0.4470 +5427 10459 0.9260 +5427 10524 0.4570 +5427 10535 0.6820 +5427 10592 0.4300 +5427 10635 0.7380 +5427 10714 0.9610 +5427 10721 0.5770 +5427 10733 0.5310 +5427 10926 0.6980 +5427 11004 0.4020 +5427 11073 0.7050 +5427 11130 0.5430 +5427 11169 0.9950 +5427 11177 0.5620 +5427 11200 0.4450 +5427 11232 0.9150 +5427 11339 0.4430 +5427 23008 0.4830 +5427 23397 0.4080 +5427 23588 0.5690 +5427 23594 0.7340 +5427 23595 0.7050 +5427 23649 0.9910 +5427 24137 0.4170 +5427 25788 0.4640 +5427 27297 0.9000 +5427 29028 0.4290 +5427 29089 0.5520 +5427 29128 0.6710 +5427 29935 0.6180 +5427 29980 0.5250 +5427 51053 0.4810 +5427 51203 0.4370 +5427 51426 0.5270 +5427 51514 0.7620 +5427 51659 0.9960 +5427 54107 0.9990 +5427 54108 0.9630 +5427 54455 0.4530 +5427 54821 0.4560 +5427 54962 0.9770 +5427 55010 0.4680 +5427 55055 0.4460 +5427 55143 0.4790 +5427 55165 0.4310 +5427 55215 0.4860 +5427 55247 0.5960 +5427 55388 0.9610 +5427 56655 0.9990 +5427 56852 0.6160 +5427 56992 0.5020 +5427 57405 0.4710 +5427 57599 0.5240 +5427 57804 0.7300 +5427 63895 0.4240 +5427 63922 0.9340 +5427 63932 0.7970 +5427 63967 0.8940 +5427 64151 0.5730 +5427 64785 0.9890 +5427 64978 0.4390 +5427 79023 0.4090 +5427 79075 0.6100 +5427 79621 0.4170 +5427 79728 0.5310 +5427 79892 0.4620 +5427 79915 0.5670 +5427 80010 0.5480 +5427 81620 0.7340 +5427 83447 0.4870 +5427 83461 0.6300 +5427 83540 0.4520 +5427 83879 0.4320 +5427 83990 0.6000 +5427 84250 0.6130 +5427 84296 0.9930 +5427 84515 0.8630 +5427 90381 0.4440 +5427 90506 0.5270 +5427 112755 0.4390 +5427 116028 0.5980 +5427 116211 0.6410 +5427 122769 0.8680 +5427 122773 0.4660 +5427 123207 0.7980 +5427 124739 0.5130 +5427 126823 0.4390 +5427 157310 0.4390 +5427 157313 0.4220 +5427 157777 0.6400 +5427 221150 0.4240 +5427 253714 0.4620 +5427 254394 0.8170 +5427 259266 0.4940 +5427 283106 0.5130 +5427 286826 0.4080 +5427 353497 0.4520 +5427 415117 0.4290 +5428 5442 0.8580 +5428 5557 0.9490 +5428 5558 0.9120 +5428 5664 0.5130 +5428 5980 0.9400 +5428 6323 0.4760 +5428 6389 0.4420 +5428 6390 0.4720 +5428 6687 0.6570 +5428 6742 0.9580 +5428 6772 0.4090 +5428 6792 0.4460 +5428 6834 0.6500 +5428 7019 0.9510 +5428 7084 0.6460 +5428 7157 0.4110 +5428 7167 0.5980 +5428 7274 0.4310 +5428 7284 0.5080 +5428 7374 0.6110 +5428 7486 0.4670 +5428 7841 0.5330 +5428 7978 0.4400 +5428 8192 0.5790 +5428 8398 0.4150 +5428 8802 0.7280 +5428 8803 0.8890 +5428 8861 0.4570 +5428 9043 0.7490 +5428 9092 0.4460 +5428 9093 0.6640 +5428 9401 0.5830 +5428 9416 0.5290 +5428 9640 0.4220 +5428 9785 0.5400 +5428 9804 0.4970 +5428 9874 0.5070 +5428 9927 0.6120 +5428 9941 0.6770 +5428 9997 0.4100 +5428 10059 0.4170 +5428 10459 0.9220 +5428 10535 0.4040 +5428 10714 0.9100 +5428 10721 0.8940 +5428 10891 0.4710 +5428 10908 0.4250 +5428 10939 0.6280 +5428 11060 0.4320 +5428 11083 0.5810 +5428 11232 0.9990 +5428 11315 0.4570 +5428 22937 0.4350 +5428 23064 0.4730 +5428 23070 0.7820 +5428 23163 0.5300 +5428 23370 0.4560 +5428 23381 0.4380 +5428 23395 0.4760 +5428 23400 0.4160 +5428 23644 0.7790 +5428 23649 0.9170 +5428 25793 0.4910 +5428 26164 0.4800 +5428 26235 0.5740 +5428 27297 0.9030 +5428 27343 0.4240 +5428 27434 0.6170 +5428 28976 0.4990 +5428 50484 0.9430 +5428 51106 0.6780 +5428 51720 0.5150 +5428 54107 0.9040 +5428 54108 0.9020 +5428 54840 0.5600 +5428 54968 0.4600 +5428 55129 0.4170 +5428 55157 0.5310 +5428 55247 0.6130 +5428 55526 0.4480 +5428 55669 0.4430 +5428 55687 0.5170 +5428 55719 0.5020 +5428 55775 0.4460 +5428 56652 0.9960 +5428 56655 0.9070 +5428 56953 0.6150 +5428 57038 0.4510 +5428 57505 0.5080 +5428 57526 0.4740 +5428 57804 0.5400 +5428 58506 0.6230 +5428 64216 0.6930 +5428 64374 0.4460 +5428 65018 0.5930 +5428 80198 0.4430 +5428 80207 0.4180 +5428 80347 0.4640 +5428 83637 0.4750 +5428 83858 0.4570 +5428 84162 0.4090 +5428 84515 0.4450 +5428 84545 0.5040 +5428 84749 0.4230 +5428 90070 0.4060 +5428 92667 0.7090 +5428 112476 0.4050 +5428 113510 0.4290 +5428 128272 0.4240 +5428 246243 0.6070 +5428 259173 0.4460 +5428 283899 0.4700 +5428 286205 0.4020 +5428 353497 0.6640 +5429 5884 0.4530 +5429 5888 0.8930 +5429 5889 0.6470 +5429 5890 0.6180 +5429 5892 0.6300 +5429 5893 0.6980 +5429 5932 0.4870 +5429 5980 0.9860 +5429 5981 0.5840 +5429 5982 0.6170 +5429 5983 0.5840 +5429 5984 0.6000 +5429 5985 0.5780 +5429 6117 0.5810 +5429 6118 0.5710 +5429 6119 0.5220 +5429 6233 0.8080 +5429 6596 0.6170 +5429 7156 0.5820 +5429 7311 0.5200 +5429 7314 0.6500 +5429 7316 0.9080 +5429 7318 0.5620 +5429 7320 0.5440 +5429 7334 0.6960 +5429 7335 0.4730 +5429 7336 0.8660 +5429 7353 0.5460 +5429 7374 0.8100 +5429 7415 0.5470 +5429 7486 0.5770 +5429 7507 0.6450 +5429 7508 0.4100 +5429 7516 0.4810 +5429 7517 0.6490 +5429 7706 0.5040 +5429 7874 0.5450 +5429 7979 0.4410 +5429 8554 0.4770 +5429 9100 0.4990 +5429 9156 0.7460 +5429 9246 0.5410 +5429 9636 0.5640 +5429 10111 0.6790 +5429 10459 0.9360 +5429 10524 0.4080 +5429 10535 0.5280 +5429 10606 0.5140 +5429 10714 0.6940 +5429 10721 0.4180 +5429 11044 0.5920 +5429 11200 0.5890 +5429 11201 0.8440 +5429 23705 0.6520 +5429 25898 0.9660 +5429 27343 0.7730 +5429 27434 0.9290 +5429 50485 0.5620 +5429 51426 0.7980 +5429 51455 0.9970 +5429 54107 0.5630 +5429 55666 0.5370 +5429 56655 0.5720 +5429 56852 0.9700 +5429 56897 0.5240 +5429 57082 0.4820 +5429 57379 0.4240 +5429 57697 0.4840 +5429 57804 0.5940 +5429 79728 0.6700 +5429 79915 0.4790 +5429 80010 0.4850 +5429 80119 0.4600 +5429 80198 0.4940 +5429 83932 0.7220 +5429 83990 0.5610 +5429 84083 0.4070 +5429 113510 0.4030 +5429 114799 0.4950 +5429 116028 0.4560 +5429 124739 0.5490 +5429 201973 0.5240 +5429 246243 0.4100 +5429 353497 0.4900 +5429 387521 0.4040 +5429 387522 0.4040 +5431 5432 0.9990 +5431 5433 0.9990 +5431 5434 0.9990 +5431 5435 0.9990 +5431 5436 0.9990 +5431 5437 0.9990 +5431 5438 0.9990 +5431 5439 0.9990 +5431 5440 0.9990 +5431 5441 0.9990 +5431 5442 0.6980 +5431 5469 0.9780 +5431 5471 0.4710 +5431 5515 0.8500 +5431 5518 0.8390 +5431 5537 0.5340 +5431 5558 0.4860 +5431 5573 0.4140 +5431 5593 0.4190 +5431 5683 0.4470 +5431 5701 0.4270 +5431 5725 0.5100 +5431 5822 0.5760 +5431 5831 0.5940 +5431 5832 0.4080 +5431 5888 0.5100 +5431 5890 0.4620 +5431 5892 0.6510 +5431 5901 0.6050 +5431 5917 0.5170 +5431 5927 0.4890 +5431 5928 0.5990 +5431 5929 0.5850 +5431 5931 0.6340 +5431 6059 0.5750 +5431 6117 0.4100 +5431 6119 0.5310 +5431 6122 0.7940 +5431 6123 0.7720 +5431 6124 0.7740 +5431 6125 0.9230 +5431 6129 0.7250 +5431 6132 0.8240 +5431 6133 0.8720 +5431 6135 0.9230 +5431 6136 0.8060 +5431 6139 0.8070 +5431 6147 0.9160 +5431 6154 0.7540 +5431 6157 0.5680 +5431 6175 0.8610 +5431 6182 0.9180 +5431 6183 0.8270 +5431 6187 0.8950 +5431 6188 0.9560 +5431 6193 0.8570 +5431 6203 0.8670 +5431 6205 0.9530 +5431 6207 0.6370 +5431 6208 0.7730 +5431 6209 0.9390 +5431 6210 0.6250 +5431 6217 0.8350 +5431 6222 0.9400 +5431 6224 0.8870 +5431 6228 0.7980 +5431 6233 0.5610 +5431 6235 0.8230 +5431 6240 0.4550 +5431 6390 0.4260 +5431 6421 0.4410 +5431 6426 0.6540 +5431 6427 0.5680 +5431 6431 0.5900 +5431 6432 0.5290 +5431 6499 0.4610 +5431 6619 0.5650 +5431 6625 0.8860 +5431 6626 0.6420 +5431 6629 0.4870 +5431 6632 0.5930 +5431 6633 0.5810 +5431 6634 0.5590 +5431 6635 0.6710 +5431 6636 0.5720 +5431 6637 0.5510 +5431 6648 0.4630 +5431 6729 0.4920 +5431 6749 0.9250 +5431 6827 0.9990 +5431 6829 0.9990 +5431 6830 0.9820 +5431 6837 0.9390 +5431 6872 0.9490 +5431 6873 0.9550 +5431 6874 0.9000 +5431 6875 0.4990 +5431 6877 0.9310 +5431 6878 0.9350 +5431 6879 0.9110 +5431 6880 0.9140 +5431 6881 0.9220 +5431 6882 0.9230 +5431 6883 0.9250 +5431 6884 0.9020 +5431 6907 0.4390 +5431 6908 0.9820 +5431 6917 0.9980 +5431 6919 0.9570 +5431 6920 0.9560 +5431 6921 0.5290 +5431 6923 0.5240 +5431 6924 0.7870 +5431 6936 0.5080 +5431 6950 0.4700 +5431 7072 0.5910 +5431 7073 0.5930 +5431 7155 0.4150 +5431 7167 0.4020 +5431 7182 0.4300 +5431 7266 0.5350 +5431 7275 0.5830 +5431 7277 0.5220 +5431 7284 0.8340 +5431 7311 0.6770 +5431 7314 0.5610 +5431 7316 0.5460 +5431 7317 0.4220 +5431 7403 0.7790 +5431 7404 0.5730 +5431 7407 0.8430 +5431 7415 0.4040 +5431 7469 0.9570 +5431 7508 0.4970 +5431 7514 0.5630 +5431 7515 0.4700 +5431 7703 0.5080 +5431 7705 0.6510 +5431 7905 0.5890 +5431 7936 0.8090 +5431 7979 0.4260 +5431 8085 0.5110 +5431 8089 0.4410 +5431 8148 0.5850 +5431 8178 0.7020 +5431 8192 0.4230 +5431 8218 0.4030 +5431 8233 0.4990 +5431 8242 0.4470 +5431 8284 0.4420 +5431 8290 0.5360 +5431 8294 0.8830 +5431 8329 0.8560 +5431 8330 0.8560 +5431 8331 0.6410 +5431 8332 0.8560 +5431 8334 0.9280 +5431 8335 0.8560 +5431 8336 0.8560 +5431 8337 0.6940 +5431 8338 0.6910 +5431 8340 0.6350 +5431 8341 0.6350 +5431 8342 0.6350 +5431 8345 0.6350 +5431 8347 0.6430 +5431 8348 0.6400 +5431 8349 0.7310 +5431 8351 0.4060 +5431 8356 0.7620 +5431 8359 0.8870 +5431 8360 0.8830 +5431 8361 0.9600 +5431 8362 0.8830 +5431 8363 0.8830 +5431 8364 0.8830 +5431 8366 0.8830 +5431 8367 0.8830 +5431 8368 0.8830 +5431 8369 0.4990 +5431 8370 0.8830 +5431 8409 0.4290 +5431 8450 0.5750 +5431 8451 0.9160 +5431 8458 0.4050 +5431 8467 0.5180 +5431 8480 0.4020 +5431 8533 0.5810 +5431 8539 0.9990 +5431 8565 0.6530 +5431 8607 0.6140 +5431 8634 0.4040 +5431 8697 0.4850 +5431 8725 0.5510 +5431 8726 0.5430 +5431 8731 0.6630 +5431 8732 0.7460 +5431 8797 0.4120 +5431 8812 0.5330 +5431 8833 0.7120 +5431 8841 0.5690 +5431 8969 0.8560 +5431 8970 0.9230 +5431 9070 0.5630 +5431 9086 0.6680 +5431 9150 0.9350 +5431 9221 0.5110 +5431 9282 0.9950 +5431 9295 0.4230 +5431 9318 0.5950 +5431 9343 0.6940 +5431 9349 0.9270 +5431 9400 0.6960 +5431 9410 0.5400 +5431 9412 0.9910 +5431 9439 0.8500 +5431 9440 0.9820 +5431 9441 0.9710 +5431 9442 0.9020 +5431 9443 0.9910 +5431 9477 0.8520 +5431 9519 0.4830 +5431 9521 0.4650 +5431 9533 0.9730 +5431 9553 0.5520 +5431 9555 0.5080 +5431 9584 0.4800 +5431 9589 0.4350 +5431 9604 0.5040 +5431 9611 0.5550 +5431 9646 0.9710 +5431 9656 0.5330 +5431 9669 0.7790 +5431 9696 0.4140 +5431 9716 0.5700 +5431 9782 0.5630 +5431 9790 0.4730 +5431 9801 0.8280 +5431 9858 0.7480 +5431 9862 0.8680 +5431 9933 0.4080 +5431 9978 0.9420 +5431 10001 0.9930 +5431 10025 0.8560 +5431 10056 0.5370 +5431 10094 0.4270 +5431 10102 0.7300 +5431 10153 0.5940 +5431 10209 0.4490 +5431 10213 0.4970 +5431 10289 0.4490 +5431 10383 0.6660 +5431 10432 0.4490 +5431 10473 0.7760 +5431 10514 0.5440 +5431 10526 0.6990 +5431 10527 0.4680 +5431 10528 0.4420 +5431 10594 0.5310 +5431 10607 0.5020 +5431 10621 0.8560 +5431 10622 0.5630 +5431 10623 0.8190 +5431 10694 0.6440 +5431 10730 0.4190 +5431 10765 0.4580 +5431 10768 0.4300 +5431 10849 0.7590 +5431 10856 0.6400 +5431 10885 0.6220 +5431 10920 0.5430 +5431 10921 0.4850 +5431 10923 0.5460 +5431 10939 0.4070 +5431 10980 0.5690 +5431 10987 0.5960 +5431 10988 0.4740 +5431 11036 0.5030 +5431 11052 0.4130 +5431 11059 0.5150 +5431 11060 0.6550 +5431 11066 0.5520 +5431 11091 0.5850 +5431 11128 0.9500 +5431 11137 0.4210 +5431 11198 0.9880 +5431 11201 0.5670 +5431 11222 0.8250 +5431 11224 0.9100 +5431 11260 0.4510 +5431 11321 0.9750 +5431 22803 0.4060 +5431 22828 0.5820 +5431 22894 0.4270 +5431 22916 0.7390 +5431 22936 0.8130 +5431 22976 0.5170 +5431 22984 0.9190 +5431 23019 0.5560 +5431 23028 0.4450 +5431 23054 0.6190 +5431 23064 0.5540 +5431 23065 0.6190 +5431 23091 0.9940 +5431 23135 0.5730 +5431 23168 0.9820 +5431 23173 0.7070 +5431 23201 0.4830 +5431 23204 0.6590 +5431 23223 0.5010 +5431 23246 0.5210 +5431 23248 0.8430 +5431 23279 0.5100 +5431 23395 0.5120 +5431 23469 0.5880 +5431 23476 0.5460 +5431 23481 0.4290 +5431 23512 0.5510 +5431 23517 0.5680 +5431 23521 0.7760 +5431 23543 0.4990 +5431 23560 0.4380 +5431 23640 0.7170 +5431 24144 0.5600 +5431 25774 0.4490 +5431 25788 0.4270 +5431 25813 0.4370 +5431 25828 0.8090 +5431 25885 0.9800 +5431 25896 0.8610 +5431 25920 0.9310 +5431 25962 0.4210 +5431 26015 0.7460 +5431 26043 0.4550 +5431 26155 0.4700 +5431 26173 0.9980 +5431 26512 0.9980 +5431 26523 0.5700 +5431 26995 0.4050 +5431 27125 0.5910 +5431 27161 0.5760 +5431 27297 0.7190 +5431 27339 0.4860 +5431 28998 0.7520 +5431 29072 0.9180 +5431 29079 0.8800 +5431 29088 0.5760 +5431 29093 0.8350 +5431 29101 0.8850 +5431 29113 0.8720 +5431 29789 0.4050 +5431 29889 0.4330 +5431 29927 0.7310 +5431 29928 0.4080 +5431 30834 0.7690 +5431 50813 0.5040 +5431 51003 0.9920 +5431 51021 0.8110 +5431 51067 0.4630 +5431 51068 0.4350 +5431 51069 0.8120 +5431 51073 0.7680 +5431 51081 0.8050 +5431 51082 0.9180 +5431 51092 0.4140 +5431 51096 0.4550 +5431 51116 0.7500 +5431 51121 0.7530 +5431 51138 0.5900 +5431 51149 0.6140 +5431 51154 0.8520 +5431 51184 0.9030 +5431 51187 0.4250 +5431 51202 0.4270 +5431 51224 0.5900 +5431 51264 0.7430 +5431 51292 0.4620 +5431 51314 0.6290 +5431 51350 0.4770 +5431 51388 0.4150 +5431 51497 0.9310 +5431 51520 0.5090 +5431 51550 0.4110 +5431 51585 0.8460 +5431 51586 0.8250 +5431 51602 0.4670 +5431 51616 0.5590 +5431 51692 0.4110 +5431 51728 0.7720 +5431 51741 0.4400 +5431 51755 0.5770 +5431 51806 0.6730 +5431 54145 0.6350 +5431 54431 0.4370 +5431 54433 0.4280 +5431 54457 0.5270 +5431 54505 0.4100 +5431 54529 0.4350 +5431 54555 0.6120 +5431 54623 0.9600 +5431 54700 0.7130 +5431 54707 0.9410 +5431 54797 0.9470 +5431 54845 0.4990 +5431 54847 0.4140 +5431 54870 0.5700 +5431 54948 0.7820 +5431 54973 0.8580 +5431 54995 0.5270 +5431 55011 0.8270 +5431 55052 0.7580 +5431 55090 0.9300 +5431 55127 0.4780 +5431 55133 0.4320 +5431 55143 0.5840 +5431 55152 0.4530 +5431 55153 0.5000 +5431 55173 0.8630 +5431 55174 0.5340 +5431 55176 0.7270 +5431 55180 0.5750 +5431 55197 0.9650 +5431 55215 0.5040 +5431 55226 0.6010 +5431 55269 0.4690 +5431 55272 0.8660 +5431 55290 0.4920 +5431 55316 0.8230 +5431 55339 0.4450 +5431 55588 0.8980 +5431 55591 0.4830 +5431 55636 0.5510 +5431 55656 0.9350 +5431 55677 0.9200 +5431 55689 0.4610 +5431 55699 0.4870 +5431 55718 0.8160 +5431 55720 0.8080 +5431 55756 0.9200 +5431 55759 0.5390 +5431 55766 0.6410 +5431 55813 0.4050 +5431 55814 0.5410 +5431 55840 0.7440 +5431 56259 0.7100 +5431 56339 0.5930 +5431 56474 0.5630 +5431 56916 0.4640 +5431 57038 0.5330 +5431 57050 0.6610 +5431 57121 0.4140 +5431 57136 0.7040 +5431 57176 0.5090 +5431 57466 0.6340 +5431 57470 0.5170 +5431 57508 0.8770 +5431 57654 0.8250 +5431 57721 0.4740 +5431 58490 0.9830 +5431 58508 0.5110 +5431 60558 0.4170 +5431 60678 0.4500 +5431 63875 0.9030 +5431 63931 0.8760 +5431 64374 0.7170 +5431 64425 0.8010 +5431 64682 0.4610 +5431 64708 0.5040 +5431 64960 0.7020 +5431 64963 0.8140 +5431 64965 0.7700 +5431 64968 0.8320 +5431 64969 0.8640 +5431 64979 0.8580 +5431 64983 0.6350 +5431 65003 0.9340 +5431 65005 0.7750 +5431 65008 0.7060 +5431 65083 0.6420 +5431 65121 0.5640 +5431 65122 0.5640 +5431 65123 0.9940 +5431 79447 0.5010 +5431 79577 0.9800 +5431 79590 0.7530 +5431 79631 0.6690 +5431 79657 0.8170 +5431 79871 0.9860 +5431 80004 0.4990 +5431 80237 0.4060 +5431 80306 0.9980 +5431 80349 0.8280 +5431 80789 0.9980 +5431 80820 0.4230 +5431 81488 0.9770 +5431 81556 0.4150 +5431 81570 0.4120 +5431 81572 0.4320 +5431 81857 0.8330 +5431 83444 0.4010 +5431 83743 0.5540 +5431 83860 0.8950 +5431 84128 0.5160 +5431 84138 0.8260 +5431 84172 0.7100 +5431 84232 0.4750 +5431 84246 0.9890 +5431 84265 0.5590 +5431 84273 0.7140 +5431 84337 0.9500 +5431 84661 0.4620 +5431 84893 0.5810 +5431 84946 0.4330 +5431 84962 0.5070 +5431 84967 0.4810 +5431 85236 0.6350 +5431 85302 0.8010 +5431 85403 0.9020 +5431 85456 0.8010 +5431 85476 0.7010 +5431 87178 0.7330 +5431 90390 0.8750 +5431 90853 0.4720 +5431 91860 0.6380 +5431 91875 0.5540 +5431 91893 0.4190 +5431 92105 0.8670 +5431 92399 0.5270 +5431 94239 0.5170 +5431 112950 0.8920 +5431 114803 0.4160 +5431 116143 0.5080 +5431 121504 0.8830 +5431 122622 0.4410 +5431 123169 0.9760 +5431 126402 0.7980 +5431 126961 0.8690 +5431 127428 0.6480 +5431 128312 0.6350 +5431 129685 0.9120 +5431 138474 0.5480 +5431 140459 0.6430 +5431 140801 0.7150 +5431 142940 0.4170 +5431 143884 0.5530 +5431 149483 0.4140 +5431 151613 0.4380 +5431 163688 0.6380 +5431 170082 0.6450 +5431 171568 0.8900 +5431 200933 0.5500 +5431 202243 0.4200 +5431 219927 0.7260 +5431 221830 0.8930 +5431 246721 0.9600 +5431 255626 0.6350 +5431 285331 0.6570 +5431 285855 0.7230 +5431 286749 0.4080 +5431 333932 0.8690 +5431 340602 0.4140 +5431 343068 0.5640 +5431 343070 0.5640 +5431 345630 0.4500 +5431 347487 0.6780 +5431 353267 0.4620 +5431 387129 0.7150 +5431 387332 0.6610 +5431 389524 0.4520 +5431 390999 0.5640 +5431 391002 0.5640 +5431 399949 0.4590 +5431 400569 0.8760 +5431 400735 0.5640 +5431 400736 0.5640 +5431 404672 0.9110 +5431 440093 0.5360 +5431 440560 0.5640 +5431 440561 0.5640 +5431 440686 0.5340 +5431 441873 0.5640 +5431 448834 0.4140 +5431 474382 0.6410 +5431 548644 0.9580 +5431 554313 0.8830 +5431 641776 0.6190 +5431 643909 0.6190 +5431 645359 0.5640 +5431 653604 0.9500 +5431 653619 0.5640 +5431 653689 0.4490 +5431 728340 0.6000 +5431 728524 0.6190 +5431 729528 0.5640 +5431 100134938 0.5980 +5431 100287482 0.6780 +5431 100505478 0.7150 +5431 100526737 0.4460 +5431 100526842 0.8000 +5431 100996746 0.6190 +5431 101929983 0.5640 +5431 105180390 0.6190 +5431 105180391 0.6190 +5431 107983993 0.5980 +5431 122455342 0.4140 +5432 5433 0.9990 +5432 5434 0.9990 +5432 5435 0.9990 +5432 5436 0.9990 +5432 5437 0.9990 +5432 5438 0.9990 +5432 5439 0.9990 +5432 5440 0.9990 +5432 5441 0.9990 +5432 5465 0.4080 +5432 5469 0.9740 +5432 5515 0.8550 +5432 5518 0.8350 +5432 5525 0.4270 +5432 5635 0.4310 +5432 5636 0.4320 +5432 5686 0.4730 +5432 5725 0.5390 +5432 5892 0.6270 +5432 5901 0.5270 +5432 5917 0.4520 +5432 5927 0.4800 +5432 5928 0.5730 +5432 5929 0.5950 +5432 5931 0.5860 +5432 6122 0.8660 +5432 6123 0.8560 +5432 6124 0.8420 +5432 6125 0.9390 +5432 6129 0.8170 +5432 6130 0.4120 +5432 6132 0.8690 +5432 6133 0.8500 +5432 6135 0.9440 +5432 6136 0.8140 +5432 6139 0.8200 +5432 6141 0.8450 +5432 6143 0.7160 +5432 6146 0.4790 +5432 6147 0.9460 +5432 6154 0.8570 +5432 6157 0.5490 +5432 6161 0.4990 +5432 6168 0.5340 +5432 6175 0.8750 +5432 6176 0.4470 +5432 6182 0.9380 +5432 6183 0.9170 +5432 6187 0.9460 +5432 6188 0.9830 +5432 6189 0.7000 +5432 6191 0.4140 +5432 6192 0.4050 +5432 6193 0.9030 +5432 6203 0.9400 +5432 6205 0.9810 +5432 6206 0.5260 +5432 6207 0.8860 +5432 6208 0.8810 +5432 6209 0.9810 +5432 6210 0.7370 +5432 6217 0.8210 +5432 6222 0.9810 +5432 6224 0.9460 +5432 6228 0.9190 +5432 6229 0.6060 +5432 6233 0.5490 +5432 6234 0.4550 +5432 6235 0.8580 +5432 6389 0.4040 +5432 6426 0.7170 +5432 6427 0.5600 +5432 6431 0.6030 +5432 6432 0.5720 +5432 6594 0.4500 +5432 6619 0.5590 +5432 6625 0.6250 +5432 6626 0.6240 +5432 6629 0.5160 +5432 6632 0.5970 +5432 6633 0.5770 +5432 6634 0.7070 +5432 6635 0.5550 +5432 6636 0.6010 +5432 6637 0.5410 +5432 6687 0.4290 +5432 6729 0.5020 +5432 6742 0.4200 +5432 6749 0.9360 +5432 6827 0.9980 +5432 6829 0.9990 +5432 6830 0.9910 +5432 6837 0.9750 +5432 6872 0.9180 +5432 6873 0.9470 +5432 6874 0.9150 +5432 6875 0.5470 +5432 6877 0.9380 +5432 6878 0.9200 +5432 6879 0.9280 +5432 6880 0.9240 +5432 6881 0.9220 +5432 6882 0.9240 +5432 6883 0.9310 +5432 6884 0.9380 +5432 6908 0.9830 +5432 6917 0.9920 +5432 6919 0.9220 +5432 6920 0.9220 +5432 6921 0.5140 +5432 6923 0.5260 +5432 6924 0.5600 +5432 6936 0.5040 +5432 7072 0.5920 +5432 7073 0.6140 +5432 7150 0.4750 +5432 7156 0.4810 +5432 7167 0.4630 +5432 7284 0.9060 +5432 7311 0.6870 +5432 7314 0.5390 +5432 7316 0.5830 +5432 7403 0.7950 +5432 7404 0.6070 +5432 7407 0.8580 +5432 7469 0.9530 +5432 7515 0.4320 +5432 7520 0.4380 +5432 7703 0.5280 +5432 7936 0.8560 +5432 8079 0.4480 +5432 8085 0.5340 +5432 8089 0.5810 +5432 8148 0.6820 +5432 8178 0.7270 +5432 8192 0.5650 +5432 8233 0.5170 +5432 8242 0.4860 +5432 8284 0.4750 +5432 8290 0.5740 +5432 8294 0.8860 +5432 8329 0.8610 +5432 8330 0.8610 +5432 8331 0.6530 +5432 8332 0.8610 +5432 8334 0.9280 +5432 8335 0.8610 +5432 8336 0.8610 +5432 8337 0.7390 +5432 8338 0.8050 +5432 8340 0.6640 +5432 8341 0.6630 +5432 8342 0.6640 +5432 8345 0.6640 +5432 8347 0.6620 +5432 8348 0.6700 +5432 8349 0.7900 +5432 8356 0.7800 +5432 8359 0.8860 +5432 8360 0.8860 +5432 8361 0.9640 +5432 8362 0.8860 +5432 8363 0.8860 +5432 8364 0.8860 +5432 8366 0.8920 +5432 8367 0.8860 +5432 8368 0.8860 +5432 8369 0.5450 +5432 8370 0.8860 +5432 8450 0.5370 +5432 8451 0.9130 +5432 8467 0.4440 +5432 8480 0.4820 +5432 8533 0.6300 +5432 8565 0.4660 +5432 8607 0.5420 +5432 8621 0.4270 +5432 8634 0.4230 +5432 8668 0.4010 +5432 8697 0.4210 +5432 8725 0.4020 +5432 8726 0.5590 +5432 8731 0.6220 +5432 8732 0.7850 +5432 8812 0.6380 +5432 8833 0.6620 +5432 8841 0.6910 +5432 8850 0.4050 +5432 8890 0.4190 +5432 8940 0.4660 +5432 8969 0.8610 +5432 8970 0.9290 +5432 9070 0.5340 +5432 9086 0.7850 +5432 9100 0.4380 +5432 9128 0.5160 +5432 9150 0.9600 +5432 9221 0.4620 +5432 9282 0.9970 +5432 9318 0.5590 +5432 9343 0.7690 +5432 9349 0.9430 +5432 9391 0.4610 +5432 9400 0.6540 +5432 9412 0.9950 +5432 9439 0.8470 +5432 9440 0.9960 +5432 9441 0.9800 +5432 9442 0.9120 +5432 9443 0.9940 +5432 9477 0.9660 +5432 9519 0.5910 +5432 9521 0.6590 +5432 9533 0.7230 +5432 9553 0.9050 +5432 9589 0.4160 +5432 9611 0.5510 +5432 9646 0.9830 +5432 9656 0.5170 +5432 9669 0.6870 +5432 9696 0.4840 +5432 9732 0.4030 +5432 9739 0.6230 +5432 9782 0.5250 +5432 9801 0.9190 +5432 9858 0.8220 +5432 9862 0.8640 +5432 9978 0.9090 +5432 10001 0.9960 +5432 10025 0.8370 +5432 10056 0.5490 +5432 10102 0.8260 +5432 10201 0.4680 +5432 10212 0.4540 +5432 10456 0.4430 +5432 10473 0.7970 +5432 10526 0.5380 +5432 10557 0.4150 +5432 10574 0.4030 +5432 10606 0.4250 +5432 10621 0.8870 +5432 10622 0.6630 +5432 10623 0.8090 +5432 10667 0.5180 +5432 10730 0.4400 +5432 10765 0.4750 +5432 10849 0.8400 +5432 10885 0.4240 +5432 10920 0.6570 +5432 10923 0.4980 +5432 10939 0.4440 +5432 10980 0.6250 +5432 10987 0.5970 +5432 10988 0.6450 +5432 11036 0.5430 +5432 11059 0.5010 +5432 11060 0.7250 +5432 11066 0.4340 +5432 11091 0.6200 +5432 11103 0.4170 +5432 11128 0.9700 +5432 11198 0.9940 +5432 11201 0.5290 +5432 11222 0.8640 +5432 11224 0.9300 +5432 11321 0.9500 +5432 22803 0.4600 +5432 22828 0.4980 +5432 22901 0.4090 +5432 22916 0.6650 +5432 22936 0.6220 +5432 22976 0.5260 +5432 22984 0.9360 +5432 23054 0.6140 +5432 23064 0.6270 +5432 23067 0.4010 +5432 23097 0.4070 +5432 23135 0.6080 +5432 23168 0.9840 +5432 23173 0.6560 +5432 23201 0.4770 +5432 23204 0.7350 +5432 23212 0.4650 +5432 23248 0.6200 +5432 23395 0.5370 +5432 23469 0.6290 +5432 23512 0.5280 +5432 23521 0.8320 +5432 23543 0.4990 +5432 23640 0.7690 +5432 23774 0.4300 +5432 24144 0.5480 +5432 25774 0.6360 +5432 25885 0.9630 +5432 25896 0.8010 +5432 25920 0.9470 +5432 26015 0.8220 +5432 26043 0.4930 +5432 26155 0.5150 +5432 26173 0.8320 +5432 26289 0.5570 +5432 26512 0.9980 +5432 26523 0.5680 +5432 26995 0.5300 +5432 27125 0.5820 +5432 27161 0.5680 +5432 27297 0.8720 +5432 27301 0.4090 +5432 27341 0.4300 +5432 27349 0.5670 +5432 28998 0.8200 +5432 29072 0.9360 +5432 29079 0.9070 +5432 29088 0.5480 +5432 29093 0.8250 +5432 29101 0.8150 +5432 29102 0.4120 +5432 29113 0.8600 +5432 29789 0.4700 +5432 29796 0.4050 +5432 29927 0.7910 +5432 30834 0.8060 +5432 50808 0.6040 +5432 50813 0.5350 +5432 51003 0.9950 +5432 51021 0.9770 +5432 51069 0.8730 +5432 51073 0.8260 +5432 51081 0.9150 +5432 51082 0.9970 +5432 51092 0.4820 +5432 51116 0.8310 +5432 51121 0.8570 +5432 51138 0.5960 +5432 51149 0.8630 +5432 51154 0.8940 +5432 51184 0.9420 +5432 51224 0.5460 +5432 51264 0.9390 +5432 51319 0.4640 +5432 51388 0.6010 +5432 51497 0.9310 +5432 51520 0.4830 +5432 51550 0.5780 +5432 51585 0.8070 +5432 51586 0.8700 +5432 51592 0.4250 +5432 51602 0.5390 +5432 51616 0.5400 +5432 51692 0.4210 +5432 51727 0.5780 +5432 51728 0.8310 +5432 51755 0.7120 +5432 54145 0.6640 +5432 54457 0.5750 +5432 54464 0.4870 +5432 54535 0.4940 +5432 54623 0.9740 +5432 54700 0.6960 +5432 54707 0.9060 +5432 54797 0.9840 +5432 54802 0.4100 +5432 54845 0.5240 +5432 54847 0.4820 +5432 54948 0.7860 +5432 54973 0.8220 +5432 54995 0.4650 +5432 55011 0.8400 +5432 55052 0.9350 +5432 55090 0.9440 +5432 55133 0.5710 +5432 55143 0.4830 +5432 55157 0.4140 +5432 55173 0.9460 +5432 55176 0.7870 +5432 55197 0.6520 +5432 55215 0.5040 +5432 55272 0.9370 +5432 55290 0.4960 +5432 55299 0.5940 +5432 55316 0.8620 +5432 55588 0.9160 +5432 55591 0.6350 +5432 55636 0.5130 +5432 55651 0.4780 +5432 55656 0.8100 +5432 55677 0.9060 +5432 55689 0.5640 +5432 55703 0.9400 +5432 55718 0.8540 +5432 55756 0.8250 +5432 55766 0.6530 +5432 55814 0.4640 +5432 55840 0.6890 +5432 55968 0.4850 +5432 56254 0.4580 +5432 56339 0.4610 +5432 56474 0.5110 +5432 56478 0.5240 +5432 56648 0.4880 +5432 56965 0.4270 +5432 57017 0.4170 +5432 57038 0.4760 +5432 57121 0.4820 +5432 57136 0.7410 +5432 57466 0.5930 +5432 57470 0.5330 +5432 57508 0.8270 +5432 57654 0.8240 +5432 57680 0.4090 +5432 57721 0.4880 +5432 58490 0.9260 +5432 58508 0.5320 +5432 63875 0.9390 +5432 63931 0.8660 +5432 64374 0.7620 +5432 64425 0.8470 +5432 64708 0.5520 +5432 64960 0.8770 +5432 64963 0.8890 +5432 64965 0.9810 +5432 64968 0.9780 +5432 64969 0.9210 +5432 64979 0.9260 +5432 64983 0.9300 +5432 65003 0.8160 +5432 65005 0.9470 +5432 65008 0.7700 +5432 65121 0.5380 +5432 65122 0.5380 +5432 65123 0.9940 +5432 79447 0.5010 +5432 79577 0.9730 +5432 79590 0.8610 +5432 79629 0.4230 +5432 79631 0.7030 +5432 79657 0.5950 +5432 79668 0.4220 +5432 79728 0.4180 +5432 79871 0.9840 +5432 80004 0.5240 +5432 80237 0.4790 +5432 80306 0.9350 +5432 80324 0.7040 +5432 80349 0.8360 +5432 80789 0.9980 +5432 80820 0.5680 +5432 81488 0.9820 +5432 81857 0.8280 +5432 83480 0.7110 +5432 83743 0.4150 +5432 83860 0.9150 +5432 84138 0.9270 +5432 84154 0.6300 +5432 84172 0.9440 +5432 84181 0.4020 +5432 84232 0.4690 +5432 84246 0.9920 +5432 84265 0.5860 +5432 84337 0.9420 +5432 84365 0.4330 +5432 84893 0.4040 +5432 84955 0.6260 +5432 84962 0.4990 +5432 84967 0.4850 +5432 85236 0.6700 +5432 85403 0.7750 +5432 85456 0.8390 +5432 85476 0.7110 +5432 87178 0.7420 +5432 90353 0.4570 +5432 90390 0.8950 +5432 90853 0.4830 +5432 91875 0.4740 +5432 91893 0.5330 +5432 92105 0.8130 +5432 92399 0.7870 +5432 94239 0.6830 +5432 112939 0.4440 +5432 112950 0.9520 +5432 121504 0.8860 +5432 122481 0.5570 +5432 123169 0.9730 +5432 126402 0.8770 +5432 126789 0.7040 +5432 126961 0.8740 +5432 127428 0.6410 +5432 128312 0.6640 +5432 129685 0.9140 +5432 138474 0.5650 +5432 140032 0.4050 +5432 140459 0.4740 +5432 140801 0.7590 +5432 142940 0.5170 +5432 143244 0.4880 +5432 143884 0.4990 +5432 145781 0.4260 +5432 149483 0.4820 +5432 158067 0.5570 +5432 170082 0.6330 +5432 171568 0.9390 +5432 219927 0.9330 +5432 221264 0.5570 +5432 221830 0.9340 +5432 246721 0.9790 +5432 255626 0.6620 +5432 285855 0.7810 +5432 286749 0.4540 +5432 333932 0.8740 +5432 340602 0.4820 +5432 343068 0.5380 +5432 343070 0.5380 +5432 345630 0.4220 +5432 347487 0.8220 +5432 347527 0.4090 +5432 387129 0.7750 +5432 387332 0.7260 +5432 387712 0.6150 +5432 390999 0.5380 +5432 391002 0.5380 +5432 399949 0.5540 +5432 400569 0.9340 +5432 400735 0.5380 +5432 400736 0.5380 +5432 404672 0.9040 +5432 440093 0.5740 +5432 440560 0.5380 +5432 440561 0.5380 +5432 440686 0.5740 +5432 441873 0.5380 +5432 448834 0.4820 +5432 474382 0.6530 +5432 548644 0.9800 +5432 554313 0.8860 +5432 641776 0.7320 +5432 643909 0.7320 +5432 645051 0.4600 +5432 645073 0.4600 +5432 645359 0.5380 +5432 653604 0.9540 +5432 653619 0.5380 +5432 653689 0.6360 +5432 728340 0.6470 +5432 728524 0.7320 +5432 729396 0.4600 +5432 729422 0.4600 +5432 729428 0.4600 +5432 729431 0.4600 +5432 729442 0.4600 +5432 729447 0.4600 +5432 729528 0.5380 +5432 100008586 0.4600 +5432 100132399 0.4600 +5432 100134938 0.5900 +5432 100272147 0.4290 +5432 100287482 0.8220 +5432 100505478 0.7750 +5432 100526842 0.8170 +5432 100996746 0.7320 +5432 101929983 0.5380 +5432 102724473 0.4600 +5432 105180390 0.7320 +5432 105180391 0.7320 +5432 107983993 0.5900 +5432 122455342 0.4820 +5433 5434 0.9990 +5433 5435 0.9990 +5433 5436 0.9990 +5433 5437 0.9990 +5433 5438 0.9990 +5433 5439 0.9990 +5433 5440 0.9990 +5433 5441 0.9990 +5433 5469 0.8760 +5433 5515 0.8360 +5433 5518 0.8080 +5433 5725 0.5110 +5433 5892 0.5350 +5433 5901 0.5940 +5433 5928 0.5270 +5433 5929 0.5170 +5433 5931 0.5180 +5433 5950 0.5720 +5433 6119 0.6420 +5433 6233 0.5350 +5433 6426 0.7500 +5433 6427 0.5370 +5433 6431 0.5870 +5433 6432 0.5350 +5433 6604 0.4200 +5433 6619 0.5310 +5433 6625 0.5530 +5433 6626 0.6310 +5433 6629 0.5310 +5433 6632 0.6060 +5433 6633 0.7120 +5433 6634 0.5680 +5433 6635 0.6630 +5433 6636 0.6280 +5433 6637 0.6410 +5433 6749 0.9460 +5433 6827 0.9990 +5433 6829 0.9990 +5433 6830 0.9880 +5433 6837 0.9910 +5433 6871 0.9140 +5433 6872 0.9060 +5433 6873 0.9140 +5433 6874 0.8980 +5433 6875 0.5060 +5433 6877 0.9010 +5433 6878 0.9110 +5433 6879 0.8990 +5433 6880 0.9010 +5433 6881 0.9090 +5433 6882 0.9170 +5433 6883 0.9240 +5433 6884 0.9100 +5433 6908 0.9860 +5433 6917 0.9920 +5433 6919 0.9280 +5433 6920 0.9270 +5433 6921 0.5650 +5433 6923 0.5360 +5433 6924 0.5220 +5433 6936 0.5010 +5433 7072 0.5900 +5433 7073 0.5970 +5433 7311 0.5130 +5433 7314 0.5640 +5433 7316 0.5510 +5433 7403 0.5720 +5433 7469 0.9070 +5433 7515 0.4160 +5433 7703 0.4990 +5433 7936 0.7710 +5433 8085 0.5170 +5433 8089 0.4730 +5433 8148 0.5340 +5433 8178 0.6420 +5433 8233 0.5070 +5433 8290 0.4200 +5433 8294 0.8780 +5433 8329 0.8540 +5433 8330 0.8540 +5433 8331 0.6360 +5433 8332 0.8540 +5433 8334 0.9240 +5433 8335 0.8650 +5433 8336 0.8540 +5433 8337 0.6700 +5433 8338 0.6690 +5433 8340 0.6370 +5433 8341 0.6370 +5433 8342 0.6410 +5433 8345 0.6350 +5433 8347 0.6450 +5433 8348 0.6390 +5433 8349 0.7190 +5433 8351 0.4250 +5433 8356 0.7030 +5433 8359 0.8780 +5433 8360 0.8770 +5433 8361 0.9620 +5433 8362 0.8780 +5433 8363 0.8780 +5433 8364 0.8780 +5433 8366 0.8790 +5433 8367 0.8780 +5433 8368 0.8800 +5433 8369 0.4190 +5433 8370 0.8770 +5433 8450 0.5060 +5433 8451 0.8970 +5433 8533 0.5170 +5433 8663 0.5110 +5433 8669 0.4730 +5433 8726 0.5080 +5433 8731 0.5390 +5433 8732 0.8060 +5433 8812 0.5200 +5433 8841 0.5470 +5433 8969 0.8540 +5433 8970 0.9240 +5433 9070 0.5040 +5433 9125 0.4410 +5433 9150 0.9220 +5433 9221 0.4580 +5433 9282 0.9950 +5433 9318 0.5070 +5433 9400 0.8920 +5433 9412 0.9960 +5433 9439 0.8290 +5433 9440 0.9940 +5433 9441 0.9720 +5433 9442 0.8940 +5433 9443 0.9900 +5433 9477 0.8910 +5433 9519 0.5370 +5433 9533 0.9560 +5433 9589 0.4080 +5433 9611 0.5180 +5433 9646 0.9390 +5433 9656 0.5090 +5433 9696 0.5630 +5433 9862 0.8400 +5433 9978 0.9140 +5433 10001 0.9950 +5433 10025 0.8280 +5433 10526 0.5050 +5433 10621 0.4690 +5433 10622 0.5540 +5433 10623 0.4640 +5433 10849 0.5240 +5433 10920 0.5300 +5433 10980 0.5310 +5433 10987 0.5370 +5433 11036 0.5220 +5433 11059 0.4540 +5433 11060 0.7060 +5433 11091 0.5970 +5433 11128 0.5510 +5433 11198 0.9780 +5433 11201 0.4780 +5433 11321 0.7710 +5433 22901 0.4200 +5433 22916 0.5880 +5433 22936 0.5070 +5433 22976 0.5170 +5433 23054 0.4990 +5433 23064 0.4200 +5433 23165 0.4030 +5433 23168 0.9160 +5433 23201 0.4790 +5433 23248 0.6490 +5433 23469 0.5740 +5433 23512 0.5040 +5433 23543 0.5020 +5433 24144 0.5090 +5433 25885 0.5470 +5433 25896 0.8150 +5433 25920 0.9060 +5433 26043 0.5660 +5433 26173 0.8010 +5433 26512 0.9980 +5433 26523 0.5230 +5433 27125 0.5630 +5433 27161 0.6430 +5433 27257 0.4940 +5433 27297 0.6340 +5433 27341 0.4090 +5433 29072 0.4760 +5433 29079 0.9590 +5433 29101 0.6840 +5433 29113 0.8900 +5433 30834 0.8380 +5433 50813 0.5070 +5433 51003 0.9930 +5433 51082 0.6750 +5433 51092 0.5620 +5433 51138 0.5360 +5433 51184 0.9080 +5433 51224 0.5160 +5433 51497 0.9060 +5433 51585 0.4840 +5433 51586 0.8270 +5433 51616 0.5040 +5433 51728 0.8830 +5433 51750 0.4190 +5433 51755 0.5790 +5433 54145 0.6360 +5433 54457 0.5020 +5433 54464 0.4070 +5433 54623 0.9120 +5433 54707 0.4280 +5433 54797 0.9610 +5433 54845 0.4990 +5433 54847 0.5620 +5433 54973 0.8040 +5433 55011 0.8390 +5433 55090 0.9150 +5433 55133 0.4750 +5433 55197 0.9060 +5433 55215 0.5240 +5433 55588 0.9050 +5433 55636 0.4060 +5433 55656 0.8020 +5433 55677 0.5610 +5433 55689 0.4740 +5433 55703 0.8850 +5433 55718 0.6970 +5433 55756 0.8030 +5433 55766 0.6360 +5433 55840 0.6440 +5433 56339 0.4050 +5433 57121 0.5620 +5433 57466 0.4810 +5433 57508 0.8180 +5433 57654 0.8290 +5433 57721 0.4110 +5433 57819 0.4970 +5433 58490 0.9250 +5433 58508 0.5030 +5433 64220 0.5460 +5433 64708 0.5210 +5433 65123 0.9940 +5433 79447 0.5010 +5433 79577 0.9320 +5433 79657 0.4290 +5433 79871 0.9920 +5433 80004 0.4990 +5433 80306 0.9280 +5433 80349 0.8570 +5433 80789 0.9980 +5433 80820 0.4710 +5433 81488 0.9650 +5433 81857 0.8160 +5433 83860 0.9010 +5433 83990 0.4320 +5433 84138 0.7670 +5433 84172 0.9170 +5433 84246 0.9870 +5433 84265 0.4640 +5433 84337 0.9000 +5433 84955 0.6240 +5433 84962 0.5020 +5433 84967 0.5000 +5433 85236 0.6350 +5433 85360 0.6870 +5433 85403 0.7450 +5433 85456 0.7940 +5433 90390 0.8730 +5433 90853 0.4290 +5433 92105 0.8020 +5433 94239 0.5750 +5433 112950 0.9750 +5433 116362 0.7590 +5433 121504 0.8770 +5433 123169 0.9080 +5433 126961 0.8620 +5433 127428 0.6270 +5433 128312 0.6370 +5433 129685 0.9130 +5433 138474 0.5350 +5433 140459 0.6380 +5433 143884 0.4990 +5433 149483 0.5850 +5433 170082 0.6240 +5433 171568 0.5450 +5433 221184 0.4680 +5433 221830 0.7670 +5433 246721 0.9780 +5433 255626 0.6340 +5433 286749 0.4930 +5433 333932 0.8620 +5433 340602 0.5620 +5433 347527 0.4200 +5433 387332 0.6100 +5433 399949 0.5100 +5433 400569 0.9050 +5433 404672 0.9270 +5433 440093 0.4200 +5433 440686 0.4200 +5433 448834 0.5620 +5433 474382 0.6360 +5433 548644 0.9870 +5433 554313 0.8780 +5433 653604 0.9370 +5433 728340 0.7050 +5433 100134938 0.6840 +5433 107983993 0.6840 +5433 122455342 0.5620 +5434 5435 0.9990 +5434 5436 0.9990 +5434 5437 0.9990 +5434 5438 0.9990 +5434 5439 0.9990 +5434 5440 0.9990 +5434 5441 0.9990 +5434 5451 0.5040 +5434 5464 0.4710 +5434 5469 0.9980 +5434 5499 0.8540 +5434 5501 0.6430 +5434 5510 0.4650 +5434 5515 0.8370 +5434 5518 0.8540 +5434 5702 0.5450 +5434 5705 0.4920 +5434 5714 0.5050 +5434 5725 0.5610 +5434 5831 0.5970 +5434 5892 0.5180 +5434 5901 0.5480 +5434 5928 0.5530 +5434 5929 0.6020 +5434 5931 0.5570 +5434 5976 0.4690 +5434 6129 0.5270 +5434 6130 0.4120 +5434 6156 0.4420 +5434 6175 0.7240 +5434 6183 0.4290 +5434 6188 0.4260 +5434 6203 0.4580 +5434 6206 0.4230 +5434 6224 0.4380 +5434 6233 0.5820 +5434 6426 0.6200 +5434 6427 0.5480 +5434 6431 0.5930 +5434 6432 0.5810 +5434 6502 0.6850 +5434 6617 0.5150 +5434 6618 0.5240 +5434 6619 0.7660 +5434 6621 0.5100 +5434 6625 0.5860 +5434 6626 0.6070 +5434 6629 0.4820 +5434 6632 0.6510 +5434 6633 0.7250 +5434 6634 0.6110 +5434 6635 0.8940 +5434 6636 0.6170 +5434 6637 0.7340 +5434 6741 0.5350 +5434 6742 0.4140 +5434 6749 0.9000 +5434 6827 0.9970 +5434 6829 0.9980 +5434 6830 0.9770 +5434 6837 0.9460 +5434 6872 0.9530 +5434 6873 0.9300 +5434 6874 0.9050 +5434 6875 0.4990 +5434 6877 0.9270 +5434 6878 0.9400 +5434 6879 0.9130 +5434 6880 0.9200 +5434 6881 0.9380 +5434 6882 0.9180 +5434 6883 0.9210 +5434 6884 0.9230 +5434 6908 0.9930 +5434 6917 0.9960 +5434 6919 0.9260 +5434 6920 0.9230 +5434 6921 0.5480 +5434 6923 0.6040 +5434 6924 0.5160 +5434 6936 0.5040 +5434 7072 0.5720 +5434 7073 0.5950 +5434 7157 0.4680 +5434 7268 0.4220 +5434 7270 0.5260 +5434 7311 0.7280 +5434 7314 0.5290 +5434 7316 0.5320 +5434 7343 0.5650 +5434 7372 0.4260 +5434 7403 0.7370 +5434 7469 0.9190 +5434 7515 0.4250 +5434 7702 0.5200 +5434 7703 0.4990 +5434 7913 0.5060 +5434 7936 0.8090 +5434 8085 0.5040 +5434 8089 0.4360 +5434 8148 0.7040 +5434 8178 0.6340 +5434 8233 0.5030 +5434 8294 0.8750 +5434 8329 0.8550 +5434 8330 0.8550 +5434 8331 0.6380 +5434 8332 0.8550 +5434 8334 0.9260 +5434 8335 0.8550 +5434 8336 0.8550 +5434 8337 0.6530 +5434 8338 0.6500 +5434 8340 0.6240 +5434 8341 0.6240 +5434 8342 0.6240 +5434 8345 0.6260 +5434 8347 0.6240 +5434 8348 0.6270 +5434 8349 0.6810 +5434 8356 0.6830 +5434 8359 0.8750 +5434 8360 0.8750 +5434 8361 0.9520 +5434 8362 0.8750 +5434 8363 0.8750 +5434 8364 0.8760 +5434 8366 0.8750 +5434 8367 0.8750 +5434 8368 0.8750 +5434 8369 0.4120 +5434 8370 0.8750 +5434 8409 0.9940 +5434 8450 0.5130 +5434 8451 0.8990 +5434 8467 0.5900 +5434 8533 0.6030 +5434 8568 0.4160 +5434 8607 0.9750 +5434 8666 0.6440 +5434 8667 0.4010 +5434 8668 0.4170 +5434 8725 0.9990 +5434 8726 0.5130 +5434 8731 0.5400 +5434 8732 0.6730 +5434 8812 0.5250 +5434 8841 0.5460 +5434 8850 0.5330 +5434 8886 0.4180 +5434 8969 0.8550 +5434 8970 0.9210 +5434 9013 0.5730 +5434 9014 0.5720 +5434 9015 0.5650 +5434 9031 0.5120 +5434 9040 0.4930 +5434 9070 0.5130 +5434 9086 0.4910 +5434 9150 0.8090 +5434 9188 0.6880 +5434 9221 0.4200 +5434 9282 0.9920 +5434 9318 0.5480 +5434 9328 0.5110 +5434 9329 0.5680 +5434 9330 0.5390 +5434 9343 0.4090 +5434 9400 0.7800 +5434 9412 0.9900 +5434 9439 0.8290 +5434 9440 0.9810 +5434 9441 0.9720 +5434 9442 0.8890 +5434 9443 0.9910 +5434 9477 0.8540 +5434 9519 0.6340 +5434 9533 0.9990 +5434 9589 0.4190 +5434 9611 0.5440 +5434 9646 0.9630 +5434 9656 0.5040 +5434 9675 0.6680 +5434 9696 0.5650 +5434 9732 0.4010 +5434 9775 0.4470 +5434 9862 0.8330 +5434 9939 0.4250 +5434 9968 0.9940 +5434 9978 0.9090 +5434 10001 0.9940 +5434 10025 0.8940 +5434 10155 0.4380 +5434 10171 0.4130 +5434 10201 0.5070 +5434 10302 0.5190 +5434 10412 0.4090 +5434 10436 0.4580 +5434 10471 0.9880 +5434 10514 0.6020 +5434 10526 0.5440 +5434 10528 0.5000 +5434 10556 0.4550 +5434 10557 0.5290 +5434 10574 0.4150 +5434 10575 0.4920 +5434 10576 0.5010 +5434 10621 0.9990 +5434 10622 0.9990 +5434 10623 0.9990 +5434 10634 0.4220 +5434 10785 0.5590 +5434 10849 0.9990 +5434 10856 0.9790 +5434 10920 0.5540 +5434 10969 0.5420 +5434 10980 0.6110 +5434 10987 0.6160 +5434 11036 0.5030 +5434 11044 0.7260 +5434 11060 0.5250 +5434 11091 0.6130 +5434 11103 0.6930 +5434 11128 0.9990 +5434 11198 0.9660 +5434 11201 0.5970 +5434 11321 0.8940 +5434 22827 0.4160 +5434 22904 0.4340 +5434 22916 0.5320 +5434 22936 0.5070 +5434 22976 0.5130 +5434 23016 0.4150 +5434 23029 0.4400 +5434 23054 0.6900 +5434 23076 0.4020 +5434 23160 0.4100 +5434 23168 0.9020 +5434 23212 0.5360 +5434 23246 0.6010 +5434 23248 0.5850 +5434 23451 0.5110 +5434 23469 0.7990 +5434 23512 0.5060 +5434 23526 0.5280 +5434 23543 0.4990 +5434 23560 0.4330 +5434 24140 0.4310 +5434 24144 0.5500 +5434 25885 0.9990 +5434 25896 0.8360 +5434 25920 0.9480 +5434 25983 0.4090 +5434 26043 0.5650 +5434 26155 0.4080 +5434 26156 0.6090 +5434 26173 0.8450 +5434 26512 0.9980 +5434 26523 0.5410 +5434 26589 0.4670 +5434 26995 0.4160 +5434 27125 0.5770 +5434 27161 0.5160 +5434 27292 0.5290 +5434 27297 0.9990 +5434 27335 0.4060 +5434 27341 0.6200 +5434 29072 0.5200 +5434 29079 0.8780 +5434 29101 0.5350 +5434 29113 0.8860 +5434 29889 0.4170 +5434 29960 0.4320 +5434 30834 0.9990 +5434 30836 0.4220 +5434 30968 0.4780 +5434 50813 0.5440 +5434 51003 0.9920 +5434 51013 0.5960 +5434 51018 0.6050 +5434 51042 0.5470 +5434 51069 0.4620 +5434 51082 0.9990 +5434 51092 0.5630 +5434 51138 0.5960 +5434 51154 0.9210 +5434 51184 0.8820 +5434 51187 0.8210 +5434 51202 0.5670 +5434 51224 0.4990 +5434 51264 0.4120 +5434 51319 0.4130 +5434 51388 0.8630 +5434 51491 0.5370 +5434 51497 0.9230 +5434 51504 0.4340 +5434 51550 0.4040 +5434 51585 0.8010 +5434 51586 0.8360 +5434 51602 0.7130 +5434 51616 0.5370 +5434 51645 0.4620 +5434 51691 0.4560 +5434 51728 0.9990 +5434 51750 0.4410 +5434 51755 0.5900 +5434 54145 0.6240 +5434 54433 0.4610 +5434 54457 0.5190 +5434 54475 0.4610 +5434 54512 0.5150 +5434 54606 0.4250 +5434 54623 0.9100 +5434 54700 0.9760 +5434 54707 0.4810 +5434 54797 0.9660 +5434 54845 0.4990 +5434 54847 0.5630 +5434 54973 0.8570 +5434 55009 0.4300 +5434 55011 0.9770 +5434 55090 0.9220 +5434 55127 0.5410 +5434 55133 0.5260 +5434 55173 0.4360 +5434 55174 0.4780 +5434 55197 0.5880 +5434 55215 0.5370 +5434 55272 0.7550 +5434 55290 0.7580 +5434 55299 0.8340 +5434 55505 0.4330 +5434 55588 0.8980 +5434 55646 0.4140 +5434 55651 0.9370 +5434 55656 0.8380 +5434 55677 0.7760 +5434 55689 0.4130 +5434 55703 0.9990 +5434 55718 0.9990 +5434 55756 0.8410 +5434 55759 0.6150 +5434 55766 0.6380 +5434 55794 0.4540 +5434 55814 0.8270 +5434 55840 0.6440 +5434 56339 0.4010 +5434 56647 0.4410 +5434 56902 0.4320 +5434 56915 0.6310 +5434 56949 0.5980 +5434 57121 0.5630 +5434 57418 0.5330 +5434 57466 0.4670 +5434 57508 0.8390 +5434 57654 0.8030 +5434 57721 0.4140 +5434 58490 0.8940 +5434 58508 0.5010 +5434 64216 0.4020 +5434 64425 0.9990 +5434 64708 0.5320 +5434 64969 0.5140 +5434 65123 0.9940 +5434 79101 0.5900 +5434 79447 0.5230 +5434 79571 0.4110 +5434 79577 0.9470 +5434 79657 0.9880 +5434 79871 0.9890 +5434 80004 0.4990 +5434 80306 0.9980 +5434 80349 0.8180 +5434 80789 0.9980 +5434 80820 0.5220 +5434 81488 0.9680 +5434 81572 0.9850 +5434 81627 0.4160 +5434 81857 0.8180 +5434 83443 0.4030 +5434 83743 0.4640 +5434 83758 0.4790 +5434 83860 0.8950 +5434 83990 0.4410 +5434 84138 0.8230 +5434 84153 0.4400 +5434 84154 0.8350 +5434 84172 0.9990 +5434 84232 0.5550 +5434 84246 0.9850 +5434 84265 0.9740 +5434 84337 0.8920 +5434 84365 0.8210 +5434 84656 0.4320 +5434 84916 0.4810 +5434 84962 0.4990 +5434 84967 0.5030 +5434 85236 0.6240 +5434 85403 0.7420 +5434 85456 0.7670 +5434 90390 0.8910 +5434 90853 0.6020 +5434 92105 0.8390 +5434 92856 0.7950 +5434 94239 0.5330 +5434 112495 0.5040 +5434 112950 0.8580 +5434 116143 0.9960 +5434 116541 0.5020 +5434 117246 0.6270 +5434 118460 0.4240 +5434 121504 0.8750 +5434 123169 0.9230 +5434 126961 0.8620 +5434 127428 0.6510 +5434 128312 0.6240 +5434 129685 0.9190 +5434 138474 0.5010 +5434 142940 0.5390 +5434 143884 0.4990 +5434 149483 0.5630 +5434 151903 0.4630 +5434 170082 0.6670 +5434 171568 0.9990 +5434 221830 0.9990 +5434 246721 0.9740 +5434 255626 0.6240 +5434 284119 0.5070 +5434 285855 0.5350 +5434 286749 0.4590 +5434 333932 0.8620 +5434 340602 0.5630 +5434 345630 0.4950 +5434 347688 0.5290 +5434 387129 0.5190 +5434 387332 0.7880 +5434 399949 0.6280 +5434 400569 0.8930 +5434 404672 0.9180 +5434 448834 0.5630 +5434 474354 0.5210 +5434 474382 0.6380 +5434 548644 0.9690 +5434 554313 0.8750 +5434 653604 0.9340 +5434 728340 0.5640 +5434 100134938 0.6960 +5434 100505478 0.4180 +5434 107983993 0.6960 +5434 110599588 0.7100 +5434 122455342 0.5630 +5435 5436 0.9990 +5435 5437 0.9990 +5435 5438 0.9990 +5435 5439 0.9990 +5435 5440 0.9990 +5435 5441 0.9990 +5435 5451 0.5160 +5435 5469 0.9830 +5435 5515 0.8520 +5435 5518 0.8010 +5435 5539 0.4820 +5435 5573 0.4560 +5435 5575 0.4560 +5435 5576 0.4560 +5435 5577 0.4560 +5435 5592 0.4560 +5435 5593 0.4560 +5435 5594 0.4040 +5435 5694 0.5770 +5435 5725 0.5370 +5435 5831 0.6430 +5435 5892 0.5200 +5435 5901 0.5550 +5435 5928 0.5280 +5435 5929 0.5720 +5435 5931 0.5320 +5435 6122 0.6220 +5435 6123 0.5430 +5435 6124 0.7890 +5435 6125 0.9320 +5435 6129 0.7160 +5435 6132 0.8120 +5435 6133 0.7880 +5435 6135 0.9290 +5435 6136 0.6890 +5435 6138 0.7320 +5435 6139 0.8080 +5435 6141 0.8190 +5435 6142 0.4960 +5435 6147 0.8740 +5435 6154 0.8260 +5435 6157 0.4490 +5435 6161 0.4370 +5435 6175 0.9250 +5435 6176 0.8060 +5435 6182 0.8010 +5435 6183 0.9280 +5435 6187 0.6250 +5435 6188 0.8930 +5435 6191 0.5630 +5435 6192 0.5370 +5435 6193 0.7150 +5435 6203 0.9130 +5435 6205 0.9420 +5435 6207 0.6990 +5435 6208 0.8670 +5435 6209 0.8680 +5435 6210 0.6590 +5435 6217 0.7970 +5435 6218 0.4360 +5435 6222 0.9600 +5435 6224 0.6720 +5435 6228 0.9300 +5435 6229 0.6050 +5435 6233 0.6120 +5435 6235 0.8260 +5435 6426 0.6130 +5435 6427 0.5830 +5435 6431 0.6170 +5435 6432 0.6070 +5435 6500 0.4130 +5435 6617 0.5040 +5435 6618 0.5090 +5435 6619 0.7680 +5435 6621 0.5380 +5435 6625 0.5970 +5435 6626 0.5430 +5435 6628 0.4220 +5435 6629 0.4890 +5435 6632 0.6790 +5435 6633 0.8590 +5435 6634 0.7350 +5435 6635 0.7440 +5435 6636 0.7870 +5435 6637 0.7130 +5435 6734 0.5010 +5435 6741 0.4450 +5435 6749 0.8910 +5435 6827 0.9970 +5435 6829 0.9980 +5435 6830 0.9610 +5435 6837 0.9250 +5435 6872 0.9000 +5435 6873 0.9020 +5435 6874 0.8980 +5435 6875 0.5060 +5435 6877 0.9040 +5435 6878 0.9040 +5435 6879 0.8950 +5435 6880 0.9010 +5435 6881 0.9150 +5435 6882 0.9000 +5435 6883 0.9000 +5435 6884 0.9070 +5435 6894 0.4260 +5435 6908 0.9670 +5435 6917 0.9940 +5435 6919 0.8880 +5435 6920 0.8850 +5435 6921 0.5300 +5435 6923 0.6050 +5435 6924 0.5380 +5435 6936 0.4990 +5435 7072 0.5880 +5435 7073 0.5880 +5435 7270 0.5470 +5435 7284 0.4730 +5435 7311 0.8000 +5435 7314 0.5520 +5435 7316 0.5340 +5435 7343 0.5910 +5435 7372 0.5360 +5435 7403 0.6300 +5435 7407 0.5620 +5435 7469 0.9240 +5435 7515 0.4260 +5435 7702 0.5720 +5435 7703 0.5050 +5435 7913 0.5000 +5435 7936 0.8320 +5435 8085 0.5200 +5435 8148 0.5540 +5435 8178 0.6540 +5435 8192 0.5350 +5435 8225 0.5690 +5435 8233 0.5040 +5435 8294 0.8800 +5435 8329 0.8550 +5435 8330 0.8550 +5435 8331 0.6360 +5435 8332 0.8550 +5435 8334 0.9240 +5435 8335 0.8540 +5435 8336 0.8550 +5435 8337 0.6550 +5435 8338 0.6550 +5435 8340 0.6040 +5435 8341 0.6040 +5435 8342 0.6050 +5435 8345 0.6040 +5435 8347 0.6040 +5435 8348 0.6040 +5435 8349 0.6240 +5435 8356 0.6840 +5435 8359 0.8800 +5435 8360 0.8800 +5435 8361 0.9540 +5435 8362 0.8800 +5435 8363 0.8800 +5435 8364 0.8840 +5435 8366 0.8810 +5435 8367 0.8800 +5435 8368 0.8810 +5435 8369 0.4260 +5435 8370 0.8800 +5435 8450 0.5020 +5435 8451 0.8970 +5435 8467 0.6920 +5435 8533 0.5110 +5435 8573 0.4880 +5435 8666 0.4670 +5435 8726 0.5210 +5435 8731 0.4990 +5435 8732 0.5310 +5435 8812 0.5500 +5435 8841 0.5540 +5435 8850 0.5650 +5435 8969 0.8550 +5435 8970 0.9170 +5435 9013 0.5900 +5435 9014 0.5550 +5435 9015 0.5610 +5435 9031 0.5400 +5435 9070 0.5390 +5435 9086 0.5810 +5435 9150 0.8250 +5435 9188 0.5690 +5435 9231 0.4820 +5435 9282 0.9890 +5435 9318 0.4990 +5435 9328 0.6310 +5435 9329 0.6250 +5435 9330 0.6060 +5435 9343 0.4870 +5435 9349 0.9140 +5435 9400 0.6850 +5435 9412 0.9880 +5435 9439 0.8320 +5435 9440 0.9760 +5435 9441 0.9600 +5435 9442 0.8730 +5435 9443 0.9870 +5435 9477 0.8630 +5435 9519 0.5590 +5435 9521 0.5520 +5435 9533 0.9990 +5435 9553 0.6930 +5435 9589 0.4060 +5435 9611 0.5530 +5435 9646 0.9220 +5435 9656 0.5070 +5435 9696 0.5630 +5435 9775 0.4230 +5435 9801 0.7260 +5435 9858 0.8330 +5435 9862 0.8200 +5435 9978 0.9500 +5435 10001 0.9910 +5435 10025 0.8240 +5435 10102 0.4680 +5435 10171 0.4020 +5435 10302 0.5040 +5435 10436 0.5000 +5435 10471 0.5120 +5435 10473 0.6390 +5435 10514 0.5390 +5435 10526 0.5320 +5435 10528 0.4850 +5435 10557 0.4250 +5435 10621 0.9980 +5435 10622 0.9940 +5435 10623 0.9980 +5435 10849 0.9990 +5435 10908 0.4560 +5435 10920 0.5330 +5435 10975 0.4530 +5435 10980 0.5830 +5435 10987 0.5730 +5435 11036 0.5050 +5435 11066 0.4250 +5435 11091 0.5780 +5435 11128 0.9990 +5435 11198 0.9350 +5435 11201 0.6330 +5435 11222 0.5350 +5435 11224 0.9500 +5435 11321 0.7910 +5435 22916 0.5090 +5435 22936 0.5240 +5435 22976 0.5060 +5435 22984 0.6770 +5435 23054 0.5430 +5435 23164 0.4450 +5435 23168 0.9090 +5435 23204 0.6470 +5435 23248 0.5980 +5435 23405 0.4230 +5435 23451 0.5030 +5435 23469 0.5070 +5435 23512 0.5440 +5435 23521 0.8090 +5435 23543 0.5330 +5435 23640 0.4180 +5435 24144 0.5430 +5435 25774 0.5310 +5435 25885 0.9990 +5435 25896 0.8350 +5435 25920 0.9280 +5435 26043 0.5630 +5435 26173 0.8360 +5435 26512 0.8310 +5435 26519 0.7130 +5435 26523 0.5310 +5435 27125 0.5830 +5435 27161 0.5440 +5435 27258 0.4020 +5435 27297 0.9960 +5435 27301 0.4040 +5435 28998 0.7820 +5435 29079 0.8450 +5435 29088 0.4110 +5435 29093 0.8450 +5435 29101 0.5570 +5435 29102 0.4130 +5435 29113 0.8670 +5435 29775 0.4820 +5435 29796 0.4340 +5435 29907 0.4350 +5435 30834 0.9990 +5435 50813 0.5040 +5435 51003 0.9860 +5435 51021 0.8900 +5435 51069 0.7810 +5435 51073 0.8110 +5435 51079 0.4570 +5435 51081 0.7280 +5435 51082 0.9990 +5435 51092 0.5630 +5435 51116 0.8350 +5435 51121 0.8370 +5435 51138 0.5250 +5435 51149 0.6930 +5435 51154 0.9250 +5435 51184 0.9130 +5435 51187 0.4080 +5435 51224 0.5260 +5435 51264 0.8610 +5435 51388 0.6240 +5435 51497 0.9250 +5435 51504 0.4690 +5435 51550 0.4870 +5435 51585 0.7950 +5435 51586 0.8470 +5435 51602 0.4160 +5435 51616 0.5200 +5435 51678 0.4830 +5435 51728 0.9990 +5435 51750 0.4490 +5435 51755 0.5610 +5435 54145 0.6040 +5435 54457 0.4990 +5435 54512 0.4640 +5435 54623 0.9390 +5435 54663 0.5040 +5435 54700 0.9930 +5435 54797 0.9260 +5435 54845 0.4990 +5435 54847 0.5630 +5435 54948 0.4220 +5435 54973 0.8410 +5435 55011 0.5980 +5435 55052 0.8340 +5435 55090 0.8610 +5435 55133 0.4440 +5435 55173 0.7060 +5435 55178 0.4350 +5435 55197 0.7540 +5435 55215 0.5070 +5435 55272 0.9090 +5435 55290 0.7500 +5435 55299 0.6090 +5435 55316 0.8130 +5435 55588 0.8880 +5435 55651 0.8590 +5435 55656 0.8340 +5435 55677 0.5340 +5435 55703 0.9990 +5435 55718 0.9940 +5435 55756 0.8430 +5435 55766 0.6370 +5435 55814 0.8820 +5435 55840 0.6450 +5435 56339 0.4560 +5435 56648 0.5370 +5435 56965 0.5070 +5435 57026 0.4300 +5435 57050 0.5910 +5435 57121 0.5630 +5435 57508 0.8350 +5435 57654 0.8530 +5435 57721 0.4420 +5435 58490 0.8960 +5435 58508 0.5260 +5435 58538 0.4820 +5435 63875 0.7730 +5435 63931 0.8240 +5435 64374 0.4100 +5435 64398 0.4820 +5435 64425 0.9990 +5435 64708 0.5210 +5435 64960 0.7330 +5435 64963 0.8880 +5435 64965 0.6610 +5435 64968 0.7070 +5435 64969 0.6250 +5435 64976 0.5720 +5435 64979 0.6030 +5435 64983 0.7460 +5435 65003 0.6590 +5435 65005 0.6930 +5435 65008 0.6200 +5435 65062 0.4860 +5435 65080 0.4250 +5435 79092 0.4820 +5435 79101 0.5250 +5435 79447 0.5440 +5435 79577 0.9320 +5435 79587 0.4360 +5435 79590 0.8280 +5435 79631 0.4780 +5435 79657 0.7010 +5435 79668 0.5070 +5435 79693 0.4200 +5435 79694 0.4820 +5435 79728 0.4560 +5435 79871 0.9850 +5435 79922 0.4310 +5435 80004 0.4990 +5435 80306 0.8250 +5435 80349 0.8490 +5435 80789 0.8000 +5435 80820 0.4440 +5435 81488 0.9550 +5435 81570 0.4020 +5435 81857 0.8430 +5435 83443 0.5910 +5435 83860 0.9050 +5435 83990 0.4490 +5435 84138 0.5760 +5435 84154 0.6560 +5435 84172 0.9990 +5435 84232 0.5590 +5435 84246 0.9810 +5435 84265 0.9650 +5435 84271 0.4400 +5435 84337 0.8770 +5435 84365 0.5620 +5435 84433 0.4820 +5435 84545 0.4740 +5435 84962 0.5010 +5435 84967 0.5500 +5435 85236 0.6040 +5435 85403 0.7420 +5435 85456 0.7780 +5435 85476 0.4780 +5435 90390 0.9240 +5435 90853 0.4290 +5435 92105 0.8350 +5435 94239 0.5380 +5435 112495 0.5130 +5435 112950 0.8610 +5435 115416 0.4410 +5435 121504 0.8800 +5435 122704 0.5780 +5435 123169 0.9140 +5435 123263 0.4340 +5435 126328 0.5170 +5435 126402 0.7070 +5435 126961 0.8690 +5435 127428 0.6310 +5435 128308 0.5040 +5435 128312 0.6040 +5435 129685 0.9000 +5435 136332 0.4850 +5435 138474 0.5250 +5435 140032 0.5370 +5435 140801 0.4090 +5435 140823 0.5670 +5435 140894 0.4560 +5435 143098 0.4820 +5435 143244 0.5370 +5435 143884 0.5280 +5435 149175 0.4830 +5435 149483 0.5630 +5435 170082 0.6310 +5435 171568 0.9990 +5435 219927 0.8350 +5435 221830 0.9990 +5435 246721 0.9760 +5435 255626 0.6040 +5435 260425 0.4820 +5435 284119 0.4990 +5435 285855 0.7260 +5435 286749 0.4770 +5435 333932 0.8690 +5435 340096 0.4030 +5435 340602 0.5630 +5435 341405 0.4820 +5435 347487 0.8330 +5435 374659 0.4910 +5435 375775 0.4560 +5435 387129 0.7150 +5435 387332 0.6150 +5435 387712 0.5780 +5435 391769 0.4030 +5435 399949 0.5500 +5435 400569 0.8180 +5435 404672 0.9140 +5435 440093 0.4240 +5435 448834 0.5630 +5435 474382 0.6370 +5435 548644 0.9740 +5435 554313 0.8800 +5435 641776 0.6470 +5435 643909 0.6470 +5435 651746 0.4820 +5435 653604 0.9340 +5435 653689 0.5310 +5435 728340 0.5500 +5435 728524 0.6470 +5435 100134938 0.7180 +5435 100287482 0.8330 +5435 100505478 0.7150 +5435 100526842 0.8030 +5435 100996746 0.6470 +5435 105180390 0.6470 +5435 105180391 0.6470 +5435 107983993 0.7180 +5435 122455342 0.5630 +5436 5437 0.9990 +5436 5438 0.9990 +5436 5439 0.9990 +5436 5440 0.9990 +5436 5441 0.9990 +5436 5469 0.8630 +5436 5515 0.8030 +5436 5518 0.8120 +5436 5725 0.5850 +5436 5892 0.5030 +5436 5901 0.5680 +5436 5928 0.5800 +5436 5929 0.5430 +5436 5931 0.5900 +5436 6118 0.4090 +5436 6119 0.6220 +5436 6233 0.5560 +5436 6426 0.6320 +5436 6427 0.5740 +5436 6431 0.6320 +5436 6432 0.5900 +5436 6619 0.5320 +5436 6625 0.6080 +5436 6626 0.6710 +5436 6629 0.5250 +5436 6631 0.5280 +5436 6632 0.6050 +5436 6633 0.6900 +5436 6634 0.6520 +5436 6635 0.5990 +5436 6636 0.6640 +5436 6637 0.5840 +5436 6727 0.4220 +5436 6749 0.9130 +5436 6827 0.9980 +5436 6829 0.9990 +5436 6830 0.9860 +5436 6837 0.9560 +5436 6872 0.9460 +5436 6873 0.9010 +5436 6874 0.9050 +5436 6875 0.4990 +5436 6877 0.9150 +5436 6878 0.9130 +5436 6879 0.9060 +5436 6880 0.9120 +5436 6881 0.9170 +5436 6882 0.9150 +5436 6883 0.8990 +5436 6884 0.9110 +5436 6908 0.9740 +5436 6917 0.9890 +5436 6919 0.8850 +5436 6920 0.8840 +5436 6921 0.6160 +5436 6923 0.6460 +5436 6924 0.5590 +5436 6936 0.5060 +5436 7072 0.5930 +5436 7073 0.6060 +5436 7311 0.5730 +5436 7314 0.5680 +5436 7316 0.5510 +5436 7403 0.5750 +5436 7428 0.5720 +5436 7469 0.9110 +5436 7515 0.4350 +5436 7703 0.4990 +5436 7936 0.8000 +5436 8085 0.5140 +5436 8148 0.7080 +5436 8178 0.6310 +5436 8233 0.5010 +5436 8290 0.4060 +5436 8294 0.8740 +5436 8329 0.8540 +5436 8330 0.8540 +5436 8331 0.6360 +5436 8332 0.8540 +5436 8334 0.9250 +5436 8335 0.8540 +5436 8336 0.8540 +5436 8337 0.6730 +5436 8338 0.6670 +5436 8340 0.6290 +5436 8341 0.6250 +5436 8342 0.6280 +5436 8344 0.4580 +5436 8345 0.6280 +5436 8347 0.7230 +5436 8348 0.6360 +5436 8349 0.6530 +5436 8356 0.7000 +5436 8359 0.8740 +5436 8360 0.8740 +5436 8361 0.9360 +5436 8362 0.8740 +5436 8363 0.8740 +5436 8364 0.8770 +5436 8366 0.8760 +5436 8367 0.8740 +5436 8368 0.8750 +5436 8370 0.8740 +5436 8450 0.5200 +5436 8451 0.9010 +5436 8533 0.5560 +5436 8726 0.5730 +5436 8731 0.6380 +5436 8732 0.8290 +5436 8812 0.5580 +5436 8841 0.5850 +5436 8859 0.5050 +5436 8969 0.8540 +5436 8970 0.9210 +5436 9070 0.6030 +5436 9150 0.9720 +5436 9282 0.9950 +5436 9318 0.5080 +5436 9400 0.8950 +5436 9401 0.4050 +5436 9412 0.9910 +5436 9439 0.8330 +5436 9440 0.9940 +5436 9441 0.9830 +5436 9442 0.8630 +5436 9443 0.9940 +5436 9477 0.8960 +5436 9519 0.5390 +5436 9533 0.9550 +5436 9589 0.4260 +5436 9611 0.5770 +5436 9646 0.9380 +5436 9656 0.5090 +5436 9696 0.5670 +5436 9862 0.8490 +5436 9968 0.4950 +5436 9978 0.9410 +5436 10001 0.9940 +5436 10025 0.8500 +5436 10168 0.4580 +5436 10291 0.4320 +5436 10526 0.5140 +5436 10621 0.4900 +5436 10623 0.4450 +5436 10849 0.5700 +5436 10920 0.6340 +5436 10923 0.4200 +5436 10954 0.4910 +5436 10980 0.5930 +5436 10987 0.5490 +5436 11036 0.5030 +5436 11044 0.5720 +5436 11059 0.4980 +5436 11060 0.6330 +5436 11091 0.5770 +5436 11198 0.9630 +5436 11201 0.5300 +5436 11321 0.9150 +5436 22803 0.4170 +5436 22916 0.6510 +5436 22936 0.5070 +5436 22976 0.5290 +5436 23054 0.5150 +5436 23064 0.5630 +5436 23168 0.9100 +5436 23201 0.4460 +5436 23248 0.9220 +5436 23469 0.5180 +5436 23478 0.8500 +5436 23512 0.5160 +5436 23543 0.5270 +5436 24144 0.5170 +5436 25896 0.8040 +5436 25920 0.9100 +5436 26015 0.4630 +5436 26043 0.5700 +5436 26173 0.8070 +5436 26512 0.9980 +5436 26523 0.5550 +5436 27125 0.5580 +5436 27161 0.5410 +5436 27257 0.4620 +5436 27297 0.6320 +5436 27352 0.4990 +5436 29072 0.5890 +5436 29079 0.8770 +5436 29101 0.7330 +5436 29113 0.8900 +5436 30834 0.8250 +5436 50813 0.5090 +5436 51003 0.9920 +5436 51082 0.6650 +5436 51092 0.5760 +5436 51138 0.5620 +5436 51184 0.8820 +5436 51224 0.5550 +5436 51497 0.9080 +5436 51504 0.5070 +5436 51585 0.5070 +5436 51586 0.8550 +5436 51616 0.5050 +5436 51728 0.8460 +5436 51750 0.4020 +5436 51755 0.5710 +5436 54145 0.6260 +5436 54457 0.4990 +5436 54464 0.4760 +5436 54623 0.9420 +5436 54707 0.4380 +5436 54797 0.9740 +5436 54845 0.4990 +5436 54847 0.5670 +5436 54973 0.8070 +5436 55003 0.4770 +5436 55011 0.8380 +5436 55090 0.9250 +5436 55133 0.5430 +5436 55197 0.9220 +5436 55215 0.5070 +5436 55588 0.8910 +5436 55656 0.8110 +5436 55677 0.6120 +5436 55703 0.8680 +5436 55718 0.4990 +5436 55756 0.8080 +5436 55766 0.6420 +5436 55840 0.6440 +5436 55845 0.5030 +5436 56339 0.4610 +5436 57121 0.5670 +5436 57466 0.4820 +5436 57508 0.8030 +5436 57654 0.8060 +5436 57721 0.4510 +5436 57819 0.8480 +5436 58490 0.9260 +5436 58506 0.4960 +5436 58508 0.5100 +5436 64425 0.5420 +5436 64708 0.5090 +5436 65123 0.9940 +5436 79447 0.5220 +5436 79577 0.9510 +5436 79657 0.4760 +5436 79871 0.9950 +5436 80004 0.4990 +5436 80306 0.9200 +5436 80349 0.8480 +5436 80789 0.9980 +5436 80820 0.5310 +5436 81488 0.9670 +5436 81857 0.8260 +5436 83860 0.9210 +5436 83990 0.4020 +5436 84138 0.6800 +5436 84172 0.8740 +5436 84246 0.9830 +5436 84337 0.8830 +5436 84955 0.6220 +5436 84962 0.5040 +5436 84967 0.4910 +5436 85236 0.6350 +5436 85403 0.7420 +5436 85456 0.7670 +5436 90390 0.9350 +5436 90701 0.7700 +5436 90853 0.4290 +5436 92105 0.8080 +5436 94239 0.5490 +5436 112950 0.9470 +5436 116362 0.5130 +5436 121504 0.8740 +5436 123169 0.9380 +5436 126961 0.8600 +5436 127428 0.5830 +5436 128312 0.6260 +5436 129685 0.8980 +5436 138474 0.5390 +5436 140459 0.4780 +5436 143884 0.4990 +5436 149483 0.5670 +5436 170082 0.5830 +5436 171568 0.5020 +5436 221830 0.6560 +5436 246721 0.9800 +5436 255626 0.6240 +5436 286749 0.4770 +5436 333932 0.8600 +5436 340602 0.5670 +5436 387332 0.6260 +5436 399949 0.5220 +5436 400569 0.8850 +5436 404672 0.9170 +5436 440093 0.4060 +5436 440686 0.4060 +5436 448834 0.5670 +5436 474382 0.6360 +5436 548644 0.9800 +5436 554313 0.8740 +5436 653604 0.9360 +5436 728340 0.6060 +5436 100134938 0.7160 +5436 107983993 0.7160 +5436 122455342 0.5670 +5437 5438 0.9990 +5437 5439 0.9990 +5437 5440 0.9990 +5437 5441 0.9990 +5437 5451 0.5040 +5437 5469 0.8470 +5437 5515 0.8150 +5437 5518 0.8070 +5437 5725 0.5560 +5437 5892 0.5260 +5437 5901 0.5660 +5437 5902 0.4370 +5437 5917 0.4140 +5437 5928 0.5470 +5437 5929 0.5170 +5437 5931 0.5440 +5437 5984 0.5790 +5437 5985 0.4620 +5437 6175 0.5120 +5437 6193 0.5260 +5437 6206 0.4130 +5437 6233 0.6300 +5437 6234 0.4010 +5437 6426 0.6310 +5437 6427 0.5500 +5437 6431 0.6140 +5437 6432 0.5570 +5437 6617 0.5040 +5437 6618 0.5040 +5437 6619 0.8070 +5437 6621 0.5320 +5437 6625 0.5740 +5437 6626 0.6900 +5437 6629 0.6420 +5437 6632 0.6040 +5437 6633 0.7590 +5437 6634 0.6820 +5437 6635 0.7800 +5437 6636 0.7920 +5437 6637 0.7270 +5437 6741 0.4890 +5437 6749 0.9070 +5437 6827 0.9950 +5437 6829 0.9980 +5437 6830 0.9250 +5437 6837 0.9400 +5437 6872 0.9090 +5437 6873 0.9360 +5437 6874 0.9030 +5437 6875 0.4990 +5437 6877 0.9100 +5437 6878 0.9190 +5437 6879 0.9050 +5437 6880 0.9120 +5437 6881 0.9240 +5437 6882 0.9200 +5437 6883 0.9250 +5437 6884 0.9290 +5437 6908 0.9750 +5437 6917 0.9860 +5437 6919 0.8780 +5437 6920 0.8750 +5437 6921 0.5190 +5437 6923 0.5200 +5437 6924 0.5810 +5437 6936 0.5040 +5437 7072 0.5850 +5437 7073 0.6010 +5437 7178 0.4160 +5437 7270 0.5090 +5437 7311 0.7160 +5437 7314 0.5540 +5437 7316 0.5500 +5437 7343 0.5970 +5437 7403 0.5800 +5437 7469 0.9420 +5437 7515 0.4130 +5437 7702 0.5300 +5437 7703 0.5010 +5437 7913 0.5100 +5437 7936 0.7860 +5437 8085 0.5040 +5437 8148 0.5570 +5437 8178 0.6600 +5437 8233 0.5150 +5437 8294 0.8750 +5437 8329 0.8540 +5437 8330 0.8550 +5437 8331 0.6360 +5437 8332 0.8540 +5437 8334 0.9240 +5437 8335 0.8540 +5437 8336 0.8550 +5437 8337 0.6770 +5437 8338 0.6780 +5437 8340 0.6440 +5437 8341 0.6460 +5437 8342 0.6490 +5437 8345 0.6430 +5437 8347 0.6450 +5437 8348 0.6510 +5437 8349 0.6600 +5437 8356 0.6770 +5437 8359 0.8750 +5437 8360 0.8750 +5437 8361 0.9530 +5437 8362 0.8750 +5437 8363 0.8770 +5437 8364 0.8780 +5437 8366 0.8770 +5437 8367 0.8750 +5437 8368 0.8780 +5437 8369 0.4040 +5437 8370 0.8750 +5437 8409 0.6380 +5437 8450 0.5350 +5437 8451 0.9090 +5437 8467 0.6040 +5437 8533 0.5310 +5437 8568 0.4090 +5437 8607 0.4180 +5437 8725 0.6990 +5437 8726 0.5700 +5437 8731 0.5750 +5437 8732 0.5930 +5437 8812 0.5300 +5437 8835 0.4290 +5437 8841 0.5620 +5437 8850 0.5290 +5437 8969 0.8540 +5437 8970 0.9260 +5437 9013 0.6310 +5437 9014 0.5830 +5437 9015 0.5790 +5437 9031 0.5430 +5437 9070 0.5130 +5437 9150 0.7030 +5437 9188 0.5840 +5437 9282 0.9900 +5437 9318 0.5110 +5437 9328 0.5820 +5437 9329 0.6190 +5437 9330 0.5930 +5437 9412 0.9890 +5437 9439 0.8470 +5437 9440 0.9760 +5437 9441 0.9720 +5437 9442 0.8520 +5437 9443 0.9890 +5437 9477 0.8450 +5437 9519 0.6240 +5437 9533 0.9990 +5437 9589 0.4160 +5437 9611 0.5360 +5437 9646 0.9580 +5437 9656 0.5380 +5437 9696 0.5590 +5437 9862 0.8450 +5437 9978 0.9230 +5437 10001 0.9920 +5437 10025 0.8200 +5437 10302 0.5500 +5437 10436 0.4300 +5437 10471 0.5320 +5437 10514 0.6410 +5437 10526 0.5390 +5437 10556 0.4310 +5437 10557 0.6460 +5437 10621 0.9990 +5437 10622 0.9860 +5437 10623 0.9990 +5437 10775 0.4080 +5437 10849 0.9960 +5437 10856 0.5490 +5437 10920 0.5080 +5437 10980 0.5510 +5437 10987 0.5920 +5437 11036 0.5030 +5437 11044 0.4690 +5437 11091 0.5830 +5437 11103 0.6430 +5437 11128 0.9990 +5437 11198 0.9360 +5437 11201 0.6020 +5437 11321 0.4760 +5437 22916 0.6020 +5437 22936 0.5070 +5437 22976 0.5130 +5437 23054 0.5800 +5437 23076 0.4080 +5437 23168 0.8980 +5437 23212 0.5960 +5437 23248 0.6390 +5437 23378 0.4450 +5437 23451 0.5180 +5437 23469 0.5130 +5437 23476 0.5160 +5437 23512 0.5060 +5437 23543 0.4990 +5437 24144 0.5090 +5437 25885 0.9990 +5437 25896 0.8030 +5437 25920 0.9280 +5437 26043 0.5600 +5437 26173 0.9980 +5437 26512 0.9980 +5437 26523 0.5030 +5437 27125 0.5560 +5437 27161 0.5010 +5437 27297 0.9990 +5437 27301 0.4230 +5437 27341 0.4100 +5437 29079 0.8620 +5437 29101 0.4160 +5437 29113 0.8370 +5437 29980 0.4210 +5437 30834 0.9990 +5437 50813 0.5090 +5437 51003 0.9880 +5437 51010 0.4380 +5437 51013 0.6170 +5437 51042 0.4220 +5437 51082 0.9990 +5437 51092 0.5590 +5437 51138 0.5170 +5437 51154 0.7200 +5437 51184 0.6670 +5437 51187 0.4520 +5437 51224 0.5720 +5437 51367 0.4590 +5437 51388 0.6140 +5437 51497 0.9070 +5437 51504 0.5700 +5437 51585 0.5000 +5437 51586 0.8180 +5437 51616 0.5730 +5437 51728 0.9990 +5437 51750 0.4030 +5437 51755 0.5370 +5437 54145 0.6420 +5437 54457 0.4990 +5437 54512 0.4150 +5437 54623 0.8990 +5437 54700 0.9680 +5437 54707 0.4320 +5437 54797 0.9410 +5437 54845 0.4990 +5437 54847 0.5580 +5437 54973 0.8120 +5437 55011 0.7160 +5437 55090 0.8870 +5437 55133 0.4090 +5437 55197 0.7440 +5437 55215 0.5410 +5437 55272 0.5690 +5437 55284 0.4560 +5437 55285 0.4430 +5437 55290 0.7460 +5437 55299 0.5910 +5437 55505 0.4650 +5437 55588 0.8680 +5437 55599 0.4430 +5437 55646 0.4100 +5437 55651 0.8350 +5437 55656 0.8050 +5437 55677 0.5180 +5437 55703 0.9990 +5437 55718 0.9910 +5437 55756 0.8450 +5437 55759 0.5580 +5437 55766 0.6360 +5437 55814 0.8790 +5437 55840 0.6620 +5437 56339 0.4430 +5437 56915 0.4120 +5437 57121 0.5580 +5437 57473 0.4380 +5437 57508 0.8020 +5437 57654 0.8000 +5437 57721 0.4340 +5437 58490 0.7110 +5437 58508 0.5020 +5437 64425 0.9960 +5437 64708 0.5170 +5437 65123 0.9940 +5437 79101 0.5450 +5437 79447 0.5210 +5437 79577 0.9720 +5437 79657 0.6810 +5437 79871 0.9770 +5437 80004 0.5000 +5437 80306 0.8430 +5437 80349 0.8290 +5437 80789 0.9980 +5437 80820 0.4050 +5437 81488 0.9210 +5437 81572 0.4910 +5437 81857 0.8160 +5437 83860 0.9290 +5437 83990 0.4430 +5437 84135 0.4500 +5437 84138 0.5800 +5437 84154 0.6960 +5437 84172 0.9990 +5437 84232 0.6070 +5437 84246 0.9770 +5437 84265 0.9200 +5437 84294 0.4340 +5437 84337 0.8790 +5437 84365 0.4250 +5437 84955 0.6240 +5437 84962 0.5030 +5437 84967 0.4900 +5437 85236 0.6470 +5437 85403 0.7450 +5437 85456 0.8160 +5437 90390 0.8760 +5437 90853 0.4290 +5437 92105 0.8020 +5437 94239 0.5300 +5437 112495 0.5040 +5437 112950 0.8430 +5437 116143 0.5840 +5437 121504 0.8750 +5437 122704 0.4120 +5437 123169 0.9120 +5437 126961 0.8610 +5437 127428 0.6280 +5437 128312 0.6450 +5437 129685 0.9060 +5437 138474 0.5140 +5437 143884 0.4990 +5437 149483 0.5580 +5437 170082 0.6280 +5437 171568 0.9990 +5437 221830 0.9990 +5437 246721 0.9420 +5437 255626 0.6420 +5437 284119 0.5070 +5437 286749 0.4770 +5437 333932 0.8610 +5437 340602 0.5580 +5437 387332 0.6090 +5437 399949 0.5290 +5437 400569 0.8450 +5437 404672 0.9210 +5437 448834 0.5580 +5437 474382 0.6360 +5437 548644 0.9400 +5437 554313 0.8750 +5437 653604 0.9310 +5437 728340 0.5830 +5437 100134938 0.6840 +5437 102157402 0.5470 +5437 107983993 0.6840 +5437 122455342 0.5580 +5438 5439 0.9990 +5438 5440 0.9990 +5438 5441 0.9990 +5438 5469 0.8570 +5438 5515 0.8160 +5438 5518 0.8080 +5438 5725 0.5630 +5438 5831 0.5800 +5438 5892 0.5290 +5438 5901 0.5470 +5438 5902 0.4250 +5438 5928 0.5370 +5438 5929 0.5750 +5438 5931 0.5460 +5438 6193 0.4200 +5438 6233 0.5280 +5438 6426 0.6220 +5438 6427 0.5160 +5438 6431 0.5750 +5438 6432 0.5510 +5438 6619 0.5220 +5438 6625 0.5560 +5438 6626 0.6130 +5438 6629 0.4840 +5438 6632 0.5760 +5438 6633 0.8110 +5438 6634 0.5620 +5438 6635 0.6740 +5438 6636 0.6880 +5438 6637 0.6420 +5438 6749 0.8980 +5438 6827 0.9980 +5438 6829 0.9980 +5438 6830 0.9300 +5438 6837 0.9530 +5438 6872 0.9070 +5438 6873 0.9150 +5438 6874 0.9140 +5438 6875 0.5030 +5438 6877 0.9030 +5438 6878 0.9070 +5438 6879 0.9030 +5438 6880 0.9100 +5438 6881 0.9280 +5438 6882 0.9090 +5438 6883 0.9210 +5438 6884 0.9000 +5438 6908 0.9770 +5438 6917 0.9970 +5438 6919 0.9650 +5438 6920 0.9630 +5438 6921 0.6180 +5438 6923 0.6270 +5438 6924 0.5400 +5438 6936 0.5040 +5438 7072 0.5520 +5438 7073 0.5890 +5438 7311 0.6280 +5438 7314 0.5320 +5438 7316 0.5200 +5438 7403 0.5510 +5438 7469 0.9420 +5438 7515 0.4630 +5438 7703 0.4990 +5438 7936 0.7910 +5438 8085 0.5170 +5438 8089 0.4700 +5438 8148 0.5650 +5438 8178 0.6450 +5438 8233 0.5070 +5438 8290 0.4450 +5438 8294 0.8770 +5438 8329 0.8690 +5438 8330 0.8580 +5438 8331 0.6470 +5438 8332 0.8580 +5438 8334 0.9310 +5438 8335 0.8620 +5438 8336 0.8730 +5438 8337 0.6880 +5438 8338 0.6850 +5438 8340 0.6190 +5438 8341 0.6130 +5438 8342 0.6190 +5438 8345 0.6190 +5438 8347 0.6140 +5438 8348 0.6180 +5438 8349 0.6600 +5438 8356 0.7120 +5438 8359 0.8770 +5438 8360 0.8770 +5438 8361 0.9560 +5438 8362 0.8770 +5438 8363 0.8800 +5438 8364 0.8820 +5438 8366 0.8790 +5438 8367 0.8770 +5438 8368 0.8780 +5438 8369 0.4510 +5438 8370 0.8770 +5438 8409 0.6530 +5438 8450 0.5190 +5438 8451 0.8990 +5438 8533 0.5650 +5438 8666 0.4040 +5438 8726 0.5340 +5438 8731 0.5240 +5438 8732 0.7460 +5438 8812 0.5810 +5438 8841 0.5500 +5438 8969 0.8580 +5438 8970 0.9190 +5438 9070 0.5470 +5438 9150 0.8300 +5438 9282 0.9910 +5438 9318 0.5320 +5438 9400 0.6200 +5438 9412 0.9920 +5438 9439 0.8250 +5438 9440 0.9800 +5438 9441 0.9710 +5438 9442 0.8570 +5438 9443 0.9900 +5438 9477 0.8520 +5438 9519 0.4250 +5438 9533 0.8490 +5438 9589 0.4250 +5438 9611 0.5230 +5438 9646 0.9170 +5438 9656 0.5090 +5438 9862 0.8450 +5438 9978 0.9110 +5438 10001 0.9910 +5438 10025 0.8230 +5438 10526 0.5250 +5438 10621 0.6290 +5438 10623 0.6190 +5438 10849 0.7450 +5438 10920 0.5490 +5438 10980 0.6120 +5438 10987 0.6610 +5438 11036 0.5030 +5438 11059 0.4440 +5438 11060 0.6220 +5438 11091 0.5870 +5438 11128 0.9770 +5438 11198 0.9470 +5438 11201 0.5860 +5438 11321 0.4120 +5438 22916 0.5190 +5438 22936 0.5240 +5438 22976 0.5260 +5438 23054 0.5360 +5438 23064 0.4780 +5438 23168 0.9340 +5438 23201 0.4310 +5438 23248 0.6080 +5438 23469 0.5530 +5438 23512 0.5140 +5438 23543 0.4990 +5438 24144 0.5130 +5438 25885 0.7180 +5438 25896 0.8040 +5438 25920 0.9480 +5438 26173 0.8110 +5438 26512 0.8080 +5438 26519 0.4340 +5438 26523 0.5320 +5438 27125 0.5590 +5438 27161 0.5310 +5438 27297 0.6320 +5438 29079 0.8910 +5438 29101 0.5940 +5438 29113 0.8170 +5438 30834 0.8500 +5438 50813 0.5110 +5438 51003 0.9920 +5438 51082 0.8800 +5438 51138 0.5130 +5438 51184 0.8750 +5438 51224 0.5260 +5438 51497 0.9040 +5438 51585 0.8410 +5438 51586 0.8500 +5438 51616 0.5110 +5438 51728 0.8460 +5438 51755 0.5560 +5438 54145 0.6130 +5438 54457 0.5150 +5438 54623 0.9060 +5438 54700 0.5120 +5438 54707 0.4400 +5438 54797 0.9510 +5438 54845 0.4990 +5438 54973 0.8890 +5438 55011 0.8480 +5438 55090 0.8650 +5438 55197 0.6320 +5438 55215 0.5120 +5438 55299 0.5350 +5438 55588 0.9280 +5438 55636 0.4170 +5438 55651 0.4420 +5438 55656 0.8860 +5438 55677 0.5580 +5438 55689 0.4440 +5438 55703 0.7290 +5438 55718 0.6820 +5438 55756 0.8850 +5438 55766 0.6470 +5438 55840 0.7500 +5438 56339 0.4670 +5438 57117 0.4500 +5438 57508 0.8030 +5438 57654 0.8300 +5438 57721 0.4420 +5438 58490 0.9180 +5438 58508 0.5140 +5438 64425 0.7560 +5438 64708 0.5060 +5438 65123 0.4560 +5438 65993 0.4500 +5438 79447 0.5110 +5438 79577 0.9340 +5438 79871 0.9790 +5438 80004 0.5040 +5438 80306 0.8420 +5438 80349 0.8410 +5438 80789 0.8120 +5438 81488 0.9630 +5438 81857 0.8210 +5438 83860 0.9020 +5438 84138 0.7670 +5438 84172 0.8990 +5438 84246 0.9630 +5438 84337 0.6400 +5438 84844 0.4200 +5438 84962 0.5020 +5438 84967 0.4790 +5438 85236 0.6210 +5438 85360 0.5770 +5438 85403 0.9010 +5438 85456 0.7860 +5438 90390 0.8900 +5438 90853 0.4730 +5438 92105 0.8100 +5438 94239 0.5910 +5438 112950 0.8670 +5438 121504 0.8770 +5438 123169 0.9340 +5438 126961 0.8640 +5438 127428 0.6340 +5438 128308 0.4410 +5438 128312 0.6160 +5438 129685 0.9100 +5438 138474 0.5160 +5438 140459 0.4340 +5438 143884 0.4990 +5438 170082 0.6340 +5438 171568 0.6730 +5438 221830 0.8230 +5438 246721 0.9540 +5438 255626 0.6130 +5438 286749 0.4080 +5438 333932 0.8640 +5438 387332 0.5850 +5438 400569 0.8830 +5438 404672 0.9290 +5438 440093 0.4450 +5438 440686 0.4450 +5438 474382 0.6450 +5438 548644 0.9520 +5438 554313 0.8770 +5438 653604 0.9400 +5438 728340 0.5680 +5438 100134938 0.7480 +5438 107983993 0.7480 +5439 5440 0.9990 +5439 5441 0.9990 +5439 5469 0.8850 +5439 5515 0.8130 +5439 5518 0.8120 +5439 5599 0.4130 +5439 5725 0.5210 +5439 5892 0.4990 +5439 5901 0.5360 +5439 5928 0.5490 +5439 5929 0.5480 +5439 5931 0.5540 +5439 5976 0.4280 +5439 6233 0.5330 +5439 6426 0.5810 +5439 6427 0.5150 +5439 6431 0.5670 +5439 6432 0.5400 +5439 6619 0.4390 +5439 6625 0.4200 +5439 6626 0.4810 +5439 6629 0.4270 +5439 6632 0.5880 +5439 6633 0.5860 +5439 6634 0.5310 +5439 6635 0.7180 +5439 6636 0.6010 +5439 6637 0.6770 +5439 6749 0.7900 +5439 6827 0.9910 +5439 6829 0.9950 +5439 6830 0.9340 +5439 6837 0.9500 +5439 6872 0.9050 +5439 6873 0.9120 +5439 6874 0.9270 +5439 6875 0.5860 +5439 6877 0.9000 +5439 6878 0.9260 +5439 6879 0.9010 +5439 6880 0.9240 +5439 6881 0.9180 +5439 6882 0.9090 +5439 6883 0.9120 +5439 6884 0.9070 +5439 6908 0.9560 +5439 6917 0.9730 +5439 6919 0.7970 +5439 6920 0.7590 +5439 6921 0.5340 +5439 6923 0.6250 +5439 6924 0.5160 +5439 6936 0.5040 +5439 7072 0.5510 +5439 7073 0.5710 +5439 7311 0.5190 +5439 7314 0.5330 +5439 7316 0.5260 +5439 7403 0.5480 +5439 7469 0.9410 +5439 7515 0.4150 +5439 7703 0.4990 +5439 7936 0.7300 +5439 8085 0.5030 +5439 8089 0.4610 +5439 8148 0.5170 +5439 8178 0.6230 +5439 8233 0.5270 +5439 8294 0.8570 +5439 8329 0.8470 +5439 8330 0.8440 +5439 8331 0.6170 +5439 8332 0.8450 +5439 8334 0.9190 +5439 8335 0.8450 +5439 8336 0.8470 +5439 8337 0.6560 +5439 8338 0.6510 +5439 8340 0.5690 +5439 8341 0.5680 +5439 8342 0.5690 +5439 8345 0.5770 +5439 8347 0.5720 +5439 8348 0.5770 +5439 8349 0.6040 +5439 8356 0.6620 +5439 8359 0.8570 +5439 8360 0.8570 +5439 8361 0.9270 +5439 8362 0.8570 +5439 8363 0.8590 +5439 8364 0.8570 +5439 8366 0.8580 +5439 8367 0.8570 +5439 8368 0.8580 +5439 8370 0.8570 +5439 8409 0.5610 +5439 8450 0.5170 +5439 8451 0.9010 +5439 8533 0.5200 +5439 8607 0.7220 +5439 8636 0.4690 +5439 8725 0.5990 +5439 8726 0.5210 +5439 8731 0.5030 +5439 8732 0.6080 +5439 8812 0.5520 +5439 8841 0.5370 +5439 8874 0.4410 +5439 8896 0.4590 +5439 8969 0.8440 +5439 8970 0.9100 +5439 9070 0.5480 +5439 9150 0.9050 +5439 9282 0.9830 +5439 9318 0.5470 +5439 9400 0.6190 +5439 9412 0.9580 +5439 9439 0.8670 +5439 9440 0.9870 +5439 9441 0.9730 +5439 9442 0.8700 +5439 9443 0.9730 +5439 9477 0.9390 +5439 9533 0.9480 +5439 9589 0.4160 +5439 9611 0.5130 +5439 9646 0.9150 +5439 9656 0.5040 +5439 9862 0.8890 +5439 9978 0.9130 +5439 10001 0.9740 +5439 10025 0.8570 +5439 10284 0.4120 +5439 10471 0.8020 +5439 10526 0.5240 +5439 10849 0.5010 +5439 10856 0.6660 +5439 10920 0.5670 +5439 10980 0.6220 +5439 10987 0.5370 +5439 11036 0.4180 +5439 11060 0.4800 +5439 11091 0.5650 +5439 11198 0.8200 +5439 11201 0.4470 +5439 11321 0.9620 +5439 22916 0.5470 +5439 22976 0.5290 +5439 23054 0.4990 +5439 23168 0.8950 +5439 23248 0.7050 +5439 23469 0.4270 +5439 23512 0.5090 +5439 23543 0.4990 +5439 24144 0.5180 +5439 25885 0.5180 +5439 25896 0.8040 +5439 25920 0.9430 +5439 26015 0.9470 +5439 26173 0.8130 +5439 26512 0.9980 +5439 26523 0.5350 +5439 26574 0.8000 +5439 27125 0.5450 +5439 27161 0.5430 +5439 27258 0.4170 +5439 27297 0.4660 +5439 28974 0.5840 +5439 29079 0.8940 +5439 29093 0.4060 +5439 29101 0.5580 +5439 29113 0.5050 +5439 29796 0.4820 +5439 30834 0.7290 +5439 50813 0.5290 +5439 51003 0.9640 +5439 51082 0.6090 +5439 51138 0.5160 +5439 51184 0.8490 +5439 51224 0.4990 +5439 51255 0.5920 +5439 51497 0.9080 +5439 51585 0.4980 +5439 51586 0.8560 +5439 51616 0.5070 +5439 51728 0.7780 +5439 51755 0.5070 +5439 54145 0.5650 +5439 54457 0.4990 +5439 54623 0.8760 +5439 54707 0.9280 +5439 54797 0.9750 +5439 54845 0.5010 +5439 54973 0.8050 +5439 55011 0.8320 +5439 55090 0.9130 +5439 55197 0.7960 +5439 55215 0.5040 +5439 55588 0.9320 +5439 55603 0.4830 +5439 55636 0.4090 +5439 55656 0.8880 +5439 55677 0.5670 +5439 55703 0.6020 +5439 55718 0.4880 +5439 55756 0.8690 +5439 55766 0.6130 +5439 55840 0.6280 +5439 56339 0.4080 +5439 57117 0.4620 +5439 57508 0.8030 +5439 57654 0.8000 +5439 57721 0.4290 +5439 58490 0.9070 +5439 58508 0.5000 +5439 59286 0.4820 +5439 64425 0.4190 +5439 64708 0.5070 +5439 65123 0.9980 +5439 79447 0.5030 +5439 79577 0.9250 +5439 79657 0.9360 +5439 79871 0.9910 +5439 80004 0.5010 +5439 80306 0.9360 +5439 80349 0.8250 +5439 80789 0.9980 +5439 81488 0.9630 +5439 81857 0.8300 +5439 83443 0.5080 +5439 83860 0.9070 +5439 84138 0.5920 +5439 84172 0.7660 +5439 84246 0.9580 +5439 84337 0.7190 +5439 84844 0.6650 +5439 84962 0.4990 +5439 84967 0.4950 +5439 85236 0.5720 +5439 85360 0.5480 +5439 85403 0.6870 +5439 85456 0.4970 +5439 90390 0.9150 +5439 92105 0.8050 +5439 94239 0.6250 +5439 112950 0.9060 +5439 116143 0.4620 +5439 116540 0.5130 +5439 121504 0.8570 +5439 123169 0.8950 +5439 126961 0.8540 +5439 127428 0.4120 +5439 128312 0.5650 +5439 129685 0.9110 +5439 138474 0.4990 +5439 140459 0.6080 +5439 143884 0.4990 +5439 145781 0.4650 +5439 170082 0.4120 +5439 221830 0.4760 +5439 246721 0.9180 +5439 255626 0.5650 +5439 333932 0.8540 +5439 387332 0.4690 +5439 400569 0.8680 +5439 404672 0.9220 +5439 474382 0.6120 +5439 548644 0.9020 +5439 554313 0.8570 +5439 653604 0.9290 +5439 728340 0.6390 +5440 5441 0.9990 +5440 5451 0.4990 +5440 5469 0.8140 +5440 5515 0.8410 +5440 5518 0.8290 +5440 5725 0.4990 +5440 5892 0.4990 +5440 5901 0.5290 +5440 5928 0.5360 +5440 5929 0.4990 +5440 5931 0.5510 +5440 6142 0.5120 +5440 6233 0.5800 +5440 6426 0.6150 +5440 6427 0.5070 +5440 6431 0.6100 +5440 6432 0.5340 +5440 6617 0.5750 +5440 6618 0.5840 +5440 6619 0.8200 +5440 6621 0.5720 +5440 6625 0.8790 +5440 6626 0.6370 +5440 6629 0.5040 +5440 6632 0.6810 +5440 6633 0.6870 +5440 6634 0.6480 +5440 6635 0.8710 +5440 6636 0.6620 +5440 6637 0.7980 +5440 6741 0.4980 +5440 6749 0.8980 +5440 6827 0.9960 +5440 6829 0.9980 +5440 6830 0.9440 +5440 6837 0.9260 +5440 6872 0.8990 +5440 6873 0.9080 +5440 6874 0.9110 +5440 6875 0.5070 +5440 6877 0.9110 +5440 6878 0.9080 +5440 6879 0.9080 +5440 6880 0.9170 +5440 6881 0.9080 +5440 6882 0.9070 +5440 6883 0.9230 +5440 6884 0.9320 +5440 6908 0.9710 +5440 6917 0.9900 +5440 6919 0.9070 +5440 6920 0.9020 +5440 6921 0.6840 +5440 6923 0.5410 +5440 6924 0.5080 +5440 6936 0.5160 +5440 7072 0.6060 +5440 7073 0.6030 +5440 7270 0.5040 +5440 7311 0.9510 +5440 7314 0.5280 +5440 7316 0.5290 +5440 7343 0.5590 +5440 7381 0.5080 +5440 7403 0.5880 +5440 7469 0.9180 +5440 7702 0.5130 +5440 7703 0.4990 +5440 7913 0.5240 +5440 7936 0.7860 +5440 8085 0.5070 +5440 8148 0.5220 +5440 8178 0.6310 +5440 8233 0.6450 +5440 8294 0.8750 +5440 8329 0.8550 +5440 8330 0.8550 +5440 8331 0.6390 +5440 8332 0.8540 +5440 8334 0.9240 +5440 8335 0.8550 +5440 8336 0.8540 +5440 8337 0.6490 +5440 8338 0.6480 +5440 8340 0.6250 +5440 8341 0.6250 +5440 8342 0.6240 +5440 8345 0.6310 +5440 8347 0.6260 +5440 8348 0.6250 +5440 8349 0.6320 +5440 8356 0.6690 +5440 8359 0.8750 +5440 8360 0.8760 +5440 8361 0.9530 +5440 8362 0.8750 +5440 8363 0.8780 +5440 8364 0.8760 +5440 8366 0.8760 +5440 8367 0.8760 +5440 8368 0.8750 +5440 8369 0.4170 +5440 8370 0.8750 +5440 8409 0.4470 +5440 8450 0.5110 +5440 8451 0.8980 +5440 8467 0.5660 +5440 8533 0.5740 +5440 8726 0.5210 +5440 8731 0.5010 +5440 8732 0.5040 +5440 8812 0.5230 +5440 8841 0.5110 +5440 8850 0.5060 +5440 8969 0.8540 +5440 8970 0.9210 +5440 9013 0.5500 +5440 9014 0.5930 +5440 9015 0.5550 +5440 9031 0.4990 +5440 9070 0.5160 +5440 9141 0.6170 +5440 9150 0.7150 +5440 9188 0.5440 +5440 9282 0.9900 +5440 9318 0.6210 +5440 9328 0.6340 +5440 9329 0.5600 +5440 9330 0.6840 +5440 9412 0.9930 +5440 9439 0.8160 +5440 9440 0.9690 +5440 9441 0.9430 +5440 9442 0.8460 +5440 9443 0.9880 +5440 9477 0.8420 +5440 9519 0.5610 +5440 9533 0.9990 +5440 9589 0.4100 +5440 9611 0.5230 +5440 9646 0.9010 +5440 9656 0.4990 +5440 9696 0.5630 +5440 9862 0.8170 +5440 9978 0.9130 +5440 10001 0.9880 +5440 10025 0.8120 +5440 10302 0.6150 +5440 10412 0.4050 +5440 10514 0.5300 +5440 10526 0.5130 +5440 10621 0.9820 +5440 10622 0.9730 +5440 10623 0.9840 +5440 10849 0.9950 +5440 10920 0.5510 +5440 10980 0.5270 +5440 10987 0.6640 +5440 11036 0.5030 +5440 11066 0.5650 +5440 11091 0.5570 +5440 11128 0.9970 +5440 11198 0.9540 +5440 11201 0.6430 +5440 11222 0.4410 +5440 11321 0.5310 +5440 22916 0.5450 +5440 22936 0.5070 +5440 22976 0.5000 +5440 23016 0.4200 +5440 23054 0.5590 +5440 23168 0.9510 +5440 23248 0.6380 +5440 23451 0.5000 +5440 23469 0.5070 +5440 23512 0.5030 +5440 23543 0.5140 +5440 23658 0.7040 +5440 24144 0.4990 +5440 25879 0.4280 +5440 25885 0.9990 +5440 25896 0.8350 +5440 25920 0.9170 +5440 26015 0.4530 +5440 26043 0.5630 +5440 26173 0.8340 +5440 26512 0.8350 +5440 26523 0.4990 +5440 27125 0.5570 +5440 27161 0.4990 +5440 27258 0.4120 +5440 27297 0.9870 +5440 28998 0.6390 +5440 29079 0.8730 +5440 29101 0.4800 +5440 29113 0.8450 +5440 30834 0.9990 +5440 50484 0.4310 +5440 50804 0.4720 +5440 50813 0.5040 +5440 51002 0.4390 +5440 51003 0.9890 +5440 51082 0.9990 +5440 51092 0.5630 +5440 51119 0.4900 +5440 51121 0.4940 +5440 51138 0.5510 +5440 51184 0.8000 +5440 51224 0.4990 +5440 51497 0.9190 +5440 51585 0.4010 +5440 51586 0.8120 +5440 51616 0.5090 +5440 51639 0.4510 +5440 51690 0.5230 +5440 51728 0.9970 +5440 51750 0.4510 +5440 51755 0.4990 +5440 54145 0.6250 +5440 54457 0.5160 +5440 54543 0.4270 +5440 54623 0.8960 +5440 54700 0.9740 +5440 54707 0.7290 +5440 54797 0.9240 +5440 54845 0.6260 +5440 54847 0.5630 +5440 54973 0.8400 +5440 55090 0.8340 +5440 55197 0.7460 +5440 55215 0.5010 +5440 55290 0.8350 +5440 55505 0.6120 +5440 55588 0.8490 +5440 55656 0.8490 +5440 55677 0.5070 +5440 55703 0.9990 +5440 55718 0.9940 +5440 55756 0.8400 +5440 55766 0.6370 +5440 55814 0.8580 +5440 55840 0.6470 +5440 57121 0.5630 +5440 57508 0.8350 +5440 57654 0.8000 +5440 57721 0.4050 +5440 58490 0.6710 +5440 58508 0.5070 +5440 64425 0.9960 +5440 64708 0.4990 +5440 79101 0.5610 +5440 79447 0.4990 +5440 79577 0.9190 +5440 79657 0.6120 +5440 79825 0.4260 +5440 79871 0.9630 +5440 80004 0.5510 +5440 80135 0.6370 +5440 80306 0.8420 +5440 80349 0.8130 +5440 80789 0.8760 +5440 81488 0.9250 +5440 81572 0.4080 +5440 81857 0.8120 +5440 81892 0.4130 +5440 83860 0.9070 +5440 83940 0.4330 +5440 83990 0.4530 +5440 84138 0.4740 +5440 84154 0.4780 +5440 84172 0.9990 +5440 84232 0.5350 +5440 84246 0.9740 +5440 84265 0.8630 +5440 84337 0.5380 +5440 84962 0.4990 +5440 84967 0.5530 +5440 85236 0.6250 +5440 85403 0.7450 +5440 85456 0.7670 +5440 90390 0.8420 +5440 90853 0.4290 +5440 92105 0.8340 +5440 94239 0.5490 +5440 112495 0.5170 +5440 112950 0.8450 +5440 116362 0.4670 +5440 121504 0.8750 +5440 123169 0.9090 +5440 126961 0.8640 +5440 127428 0.6340 +5440 128312 0.6250 +5440 129685 0.9160 +5440 138474 0.5040 +5440 143884 0.4990 +5440 149483 0.5630 +5440 170082 0.6340 +5440 171568 0.9980 +5440 221830 0.9990 +5440 246721 0.9450 +5440 255626 0.6250 +5440 284119 0.4990 +5440 286749 0.4770 +5440 333932 0.8640 +5440 340602 0.5630 +5440 387332 0.5780 +5440 399949 0.4990 +5440 400569 0.8140 +5440 404672 0.9320 +5440 448834 0.5630 +5440 474382 0.6360 +5440 548644 0.9430 +5440 554313 0.8750 +5440 653604 0.9310 +5440 728340 0.5500 +5440 100134938 0.7460 +5440 107983993 0.7460 +5440 122455342 0.5630 +5441 5451 0.5060 +5441 5469 0.9450 +5441 5515 0.8200 +5441 5518 0.8220 +5441 5694 0.5070 +5441 5725 0.6510 +5441 5892 0.4990 +5441 5901 0.5460 +5441 5928 0.5410 +5441 5929 0.5290 +5441 5931 0.5520 +5441 6124 0.5120 +5441 6125 0.5450 +5441 6129 0.4270 +5441 6132 0.5540 +5441 6133 0.7340 +5441 6139 0.6120 +5441 6141 0.7280 +5441 6143 0.8280 +5441 6147 0.8430 +5441 6150 0.4050 +5441 6152 0.6510 +5441 6156 0.4390 +5441 6157 0.4260 +5441 6161 0.4780 +5441 6169 0.4240 +5441 6175 0.6570 +5441 6176 0.7420 +5441 6187 0.6900 +5441 6188 0.8390 +5441 6189 0.7050 +5441 6191 0.4630 +5441 6192 0.4040 +5441 6203 0.7860 +5441 6205 0.5070 +5441 6207 0.6240 +5441 6208 0.6600 +5441 6209 0.8410 +5441 6217 0.5040 +5441 6222 0.6820 +5441 6229 0.6920 +5441 6233 0.5530 +5441 6234 0.5160 +5441 6235 0.6170 +5441 6426 0.7200 +5441 6427 0.5590 +5441 6431 0.6080 +5441 6432 0.6710 +5441 6617 0.5800 +5441 6618 0.5310 +5441 6619 0.7980 +5441 6621 0.5690 +5441 6625 0.6500 +5441 6626 0.6320 +5441 6629 0.4630 +5441 6632 0.7210 +5441 6633 0.7580 +5441 6634 0.7410 +5441 6635 0.7890 +5441 6636 0.7910 +5441 6637 0.7800 +5441 6741 0.5280 +5441 6749 0.8830 +5441 6827 0.9950 +5441 6829 0.9950 +5441 6830 0.9400 +5441 6837 0.9280 +5441 6872 0.8960 +5441 6873 0.9100 +5441 6874 0.9120 +5441 6875 0.4990 +5441 6877 0.9020 +5441 6878 0.9100 +5441 6879 0.8960 +5441 6880 0.9090 +5441 6881 0.9240 +5441 6882 0.8980 +5441 6883 0.8970 +5441 6884 0.9060 +5441 6908 0.9710 +5441 6917 0.9860 +5441 6919 0.8790 +5441 6920 0.8730 +5441 6921 0.5560 +5441 6923 0.6810 +5441 6924 0.5160 +5441 6936 0.5040 +5441 7072 0.5570 +5441 7073 0.6490 +5441 7270 0.4990 +5441 7311 0.7770 +5441 7314 0.5440 +5441 7316 0.5540 +5441 7343 0.5850 +5441 7403 0.5690 +5441 7469 0.9070 +5441 7515 0.4100 +5441 7702 0.5700 +5441 7703 0.4990 +5441 7913 0.5040 +5441 7936 0.7670 +5441 8085 0.5150 +5441 8148 0.6270 +5441 8161 0.5450 +5441 8178 0.6310 +5441 8233 0.5640 +5441 8294 0.8750 +5441 8329 0.8550 +5441 8330 0.8540 +5441 8331 0.6360 +5441 8332 0.8540 +5441 8334 0.9240 +5441 8335 0.8550 +5441 8336 0.8550 +5441 8337 0.6590 +5441 8338 0.6570 +5441 8340 0.6240 +5441 8341 0.6240 +5441 8342 0.6240 +5441 8345 0.6250 +5441 8347 0.6240 +5441 8348 0.6290 +5441 8349 0.6290 +5441 8356 0.6620 +5441 8359 0.8750 +5441 8360 0.8750 +5441 8361 0.9550 +5441 8362 0.8750 +5441 8363 0.8750 +5441 8364 0.8770 +5441 8366 0.8750 +5441 8367 0.8750 +5441 8368 0.8750 +5441 8369 0.4310 +5441 8370 0.8750 +5441 8409 0.5260 +5441 8450 0.5210 +5441 8451 0.8990 +5441 8467 0.5990 +5441 8533 0.5730 +5441 8725 0.4610 +5441 8726 0.5340 +5441 8731 0.5040 +5441 8732 0.7050 +5441 8812 0.5110 +5441 8841 0.5420 +5441 8850 0.5010 +5441 8969 0.8540 +5441 8970 0.9210 +5441 9013 0.5790 +5441 9014 0.5410 +5441 9015 0.5460 +5441 9031 0.5210 +5441 9070 0.5130 +5441 9150 0.6820 +5441 9188 0.5170 +5441 9282 0.9880 +5441 9318 0.5170 +5441 9328 0.5090 +5441 9329 0.5080 +5441 9330 0.5120 +5441 9343 0.5140 +5441 9349 0.8270 +5441 9400 0.6090 +5441 9412 0.9910 +5441 9439 0.8150 +5441 9440 0.9680 +5441 9441 0.9670 +5441 9442 0.8440 +5441 9443 0.9870 +5441 9477 0.8440 +5441 9519 0.5700 +5441 9533 0.9990 +5441 9589 0.4210 +5441 9611 0.5130 +5441 9646 0.9130 +5441 9656 0.5040 +5441 9696 0.5640 +5441 9858 0.5900 +5441 9862 0.8210 +5441 9978 0.9300 +5441 10001 0.9880 +5441 10025 0.8170 +5441 10284 0.4770 +5441 10302 0.5290 +5441 10471 0.4120 +5441 10514 0.5590 +5441 10526 0.5190 +5441 10557 0.4500 +5441 10621 0.9920 +5441 10622 0.9780 +5441 10623 0.9960 +5441 10849 0.9990 +5441 10920 0.5230 +5441 10946 0.4880 +5441 10949 0.4270 +5441 10975 0.6930 +5441 10980 0.5370 +5441 10987 0.5720 +5441 11036 0.5030 +5441 11060 0.4410 +5441 11091 0.5660 +5441 11128 0.9980 +5441 11157 0.5090 +5441 11198 0.9400 +5441 11201 0.6160 +5441 11321 0.6480 +5441 22916 0.6140 +5441 22936 0.5070 +5441 22976 0.5210 +5441 23054 0.4990 +5441 23168 0.9540 +5441 23248 0.6880 +5441 23451 0.5160 +5441 23469 0.5620 +5441 23476 0.5170 +5441 23512 0.5070 +5441 23521 0.6780 +5441 23543 0.4990 +5441 24144 0.5160 +5441 25764 0.4480 +5441 25885 0.9990 +5441 25896 0.8020 +5441 25920 0.9030 +5441 26015 0.7330 +5441 26043 0.5630 +5441 26173 0.8050 +5441 26512 0.9980 +5441 26517 0.4240 +5441 26519 0.6200 +5441 26523 0.5040 +5441 27089 0.4060 +5441 27125 0.5560 +5441 27161 0.5040 +5441 27297 0.9980 +5441 28998 0.6650 +5441 29079 0.8460 +5441 29093 0.6130 +5441 29101 0.4330 +5441 29113 0.8170 +5441 29796 0.5710 +5441 30834 0.9990 +5441 50813 0.5160 +5441 51003 0.9860 +5441 51069 0.5380 +5441 51073 0.4810 +5441 51082 0.9990 +5441 51092 0.5620 +5441 51116 0.6040 +5441 51121 0.4110 +5441 51138 0.5260 +5441 51149 0.6000 +5441 51154 0.6350 +5441 51184 0.9110 +5441 51224 0.4990 +5441 51398 0.4270 +5441 51497 0.9030 +5441 51529 0.5320 +5441 51585 0.5230 +5441 51586 0.8170 +5441 51616 0.5150 +5441 51690 0.4920 +5441 51728 0.9980 +5441 51750 0.4520 +5441 51755 0.5180 +5441 54145 0.6240 +5441 54439 0.4840 +5441 54457 0.5040 +5441 54512 0.4680 +5441 54623 0.9530 +5441 54700 0.9800 +5441 54707 0.9130 +5441 54797 0.9260 +5441 54845 0.4990 +5441 54847 0.5620 +5441 54973 0.8160 +5441 54998 0.4190 +5441 55011 0.8190 +5441 55090 0.8000 +5441 55133 0.4040 +5441 55197 0.7600 +5441 55215 0.5010 +5441 55272 0.8000 +5441 55290 0.7820 +5441 55316 0.5990 +5441 55505 0.6360 +5441 55588 0.8720 +5441 55651 0.6360 +5441 55656 0.8050 +5441 55677 0.5280 +5441 55703 0.9990 +5441 55718 0.9980 +5441 55756 0.8070 +5441 55766 0.6380 +5441 55814 0.7840 +5441 55840 0.6440 +5441 56339 0.4440 +5441 57121 0.5620 +5441 57508 0.8010 +5441 57654 0.8000 +5441 57721 0.4530 +5441 58490 0.8880 +5441 58508 0.5140 +5441 59286 0.6530 +5441 63931 0.6110 +5441 64425 0.9970 +5441 64708 0.5060 +5441 64960 0.6170 +5441 64963 0.6540 +5441 64969 0.6740 +5441 64975 0.4650 +5441 64976 0.4420 +5441 65008 0.5460 +5441 79101 0.5260 +5441 79447 0.5130 +5441 79577 0.9280 +5441 79590 0.4580 +5441 79631 0.4630 +5441 79657 0.7480 +5441 79871 0.9700 +5441 80004 0.4990 +5441 80306 0.8880 +5441 80349 0.8130 +5441 80789 0.9980 +5441 81488 0.9630 +5441 81857 0.8180 +5441 83443 0.7410 +5441 83860 0.8950 +5441 83990 0.4520 +5441 84138 0.6930 +5441 84172 0.9990 +5441 84246 0.9620 +5441 84265 0.9250 +5441 84337 0.8850 +5441 84545 0.4930 +5441 84962 0.4990 +5441 84967 0.5550 +5441 85236 0.6260 +5441 85403 0.7420 +5441 85456 0.7700 +5441 85476 0.4590 +5441 90390 0.8470 +5441 90853 0.4360 +5441 92105 0.8030 +5441 94239 0.5240 +5441 112495 0.5210 +5441 112950 0.8430 +5441 121504 0.8750 +5441 123169 0.8990 +5441 124961 0.5610 +5441 126328 0.5370 +5441 126961 0.8590 +5441 127428 0.6170 +5441 128312 0.6240 +5441 129685 0.9060 +5441 138474 0.5040 +5441 140032 0.4030 +5441 140823 0.6780 +5441 143884 0.4990 +5441 149483 0.5620 +5441 150678 0.5020 +5441 170082 0.6170 +5441 171568 0.9990 +5441 221830 0.9990 +5441 246721 0.9840 +5441 255626 0.6240 +5441 284119 0.5100 +5441 285855 0.4100 +5441 286749 0.4770 +5441 333932 0.8590 +5441 340602 0.5620 +5441 347487 0.5890 +5441 387129 0.4050 +5441 387332 0.6240 +5441 387712 0.4960 +5441 399949 0.5620 +5441 400569 0.8200 +5441 404672 0.9210 +5441 448834 0.5620 +5441 474382 0.6360 +5441 493753 0.4300 +5441 548644 0.9900 +5441 554313 0.8750 +5441 645051 0.4070 +5441 645073 0.4070 +5441 653604 0.9290 +5441 728340 0.5750 +5441 729396 0.4070 +5441 729422 0.4070 +5441 729428 0.4070 +5441 729431 0.4070 +5441 729442 0.4070 +5441 729447 0.4070 +5441 100008586 0.4070 +5441 100132399 0.4070 +5441 100134938 0.7530 +5441 100287482 0.5890 +5441 100505478 0.4050 +5441 100526842 0.5980 +5441 102724473 0.4070 +5441 107983993 0.7530 +5441 122455342 0.5620 +5442 5471 0.4090 +5442 5822 0.5550 +5442 6182 0.9620 +5442 6188 0.4490 +5442 6668 0.7010 +5442 6742 0.8730 +5442 6832 0.6950 +5442 7019 0.9990 +5442 7157 0.4190 +5442 7284 0.5270 +5442 7385 0.4260 +5442 7978 0.8300 +5442 8192 0.5480 +5442 9013 0.5100 +5442 9156 0.4950 +5442 9361 0.7030 +5442 9401 0.5150 +5442 9669 0.7170 +5442 9684 0.4660 +5442 9692 0.5580 +5442 10128 0.7220 +5442 10155 0.4110 +5442 10535 0.4470 +5442 10891 0.5150 +5442 10914 0.4190 +5442 10922 0.4420 +5442 11201 0.4440 +5442 11232 0.7600 +5442 11276 0.4500 +5442 22907 0.8420 +5442 23107 0.5600 +5442 23644 0.4040 +5442 25885 0.5970 +5442 26024 0.6640 +5442 26173 0.4670 +5442 26284 0.4900 +5442 27292 0.6630 +5442 28987 0.6050 +5442 51001 0.7600 +5442 51078 0.5340 +5442 51106 0.9990 +5442 51116 0.4800 +5442 51204 0.5100 +5442 51250 0.4550 +5442 51295 0.4030 +5442 54555 0.5200 +5442 54931 0.4480 +5442 55037 0.8060 +5442 55149 0.5730 +5442 55178 0.4700 +5442 55210 0.6880 +5442 55658 0.5030 +5442 55687 0.4510 +5442 55703 0.6590 +5442 55794 0.5900 +5442 56652 0.8750 +5442 57050 0.6220 +5442 57505 0.4340 +5442 60493 0.4010 +5442 60528 0.6340 +5442 64216 0.9990 +5442 64852 0.4200 +5442 64895 0.4350 +5442 65080 0.4220 +5442 65083 0.6010 +5442 79039 0.4520 +5442 79736 0.9970 +5442 79810 0.5470 +5442 79863 0.4090 +5442 80119 0.5220 +5442 80298 0.6550 +5442 81892 0.6410 +5442 83743 0.4440 +5442 83858 0.4270 +5442 84172 0.8610 +5442 84219 0.4380 +5442 84273 0.4460 +5442 84340 0.4660 +5442 87178 0.5030 +5442 89941 0.4230 +5442 92170 0.4150 +5442 92667 0.7130 +5442 116447 0.6970 +5442 117246 0.4500 +5442 126789 0.4170 +5442 130916 0.7370 +5442 153443 0.8980 +5442 201973 0.6140 +5442 219402 0.4420 +5442 246243 0.7010 +5442 387338 0.5600 +5443 5449 0.7370 +5443 5465 0.4340 +5443 5468 0.5340 +5443 5539 0.8030 +5443 5540 0.5700 +5443 5547 0.4060 +5443 5566 0.7700 +5443 5567 0.7690 +5443 5568 0.7680 +5443 5573 0.7300 +5443 5595 0.4460 +5443 5617 0.9710 +5443 5626 0.7870 +5443 5660 0.5090 +5443 5697 0.9500 +5443 5728 0.5710 +5443 5731 0.4710 +5443 5732 0.9060 +5443 5741 0.8000 +5443 5743 0.4200 +5443 5744 0.6040 +5443 5770 0.4560 +5443 5919 0.5120 +5443 5972 0.9280 +5443 5979 0.5410 +5443 6010 0.6260 +5443 6019 0.4360 +5443 6288 0.5640 +5443 6342 0.4300 +5443 6343 0.7020 +5443 6344 0.4980 +5443 6447 0.4970 +5443 6462 0.6640 +5443 6492 0.7400 +5443 6514 0.4180 +5443 6517 0.4900 +5443 6531 0.5020 +5443 6532 0.6010 +5443 6663 0.5580 +5443 6714 0.6600 +5443 6750 0.9440 +5443 6751 0.7130 +5443 6752 0.7600 +5443 6753 0.7740 +5443 6754 0.6600 +5443 6755 0.7900 +5443 6770 0.7700 +5443 6774 0.8520 +5443 6776 0.5120 +5443 6778 0.6030 +5443 6855 0.5900 +5443 6863 0.8500 +5443 6870 0.5880 +5443 7038 0.7000 +5443 7040 0.6120 +5443 7054 0.7480 +5443 7064 0.4700 +5443 7076 0.4880 +5443 7080 0.4160 +5443 7099 0.4720 +5443 7124 0.6640 +5443 7157 0.6590 +5443 7173 0.4550 +5443 7200 0.9140 +5443 7201 0.4170 +5443 7224 0.4610 +5443 7252 0.8880 +5443 7253 0.9340 +5443 7299 0.7770 +5443 7306 0.7290 +5443 7349 0.8260 +5443 7350 0.6470 +5443 7351 0.7250 +5443 7352 0.4020 +5443 7425 0.5480 +5443 7432 0.8740 +5443 7434 0.9320 +5443 7442 0.6300 +5443 7448 0.6860 +5443 7837 0.5500 +5443 7857 0.4120 +5443 8022 0.7100 +5443 8086 0.7590 +5443 8260 0.4500 +5443 8484 0.6690 +5443 8811 0.6880 +5443 8820 0.4890 +5443 8862 0.7110 +5443 8864 0.4520 +5443 9021 0.7110 +5443 9032 0.4370 +5443 9095 0.8780 +5443 9101 0.5070 +5443 9283 0.5330 +5443 9370 0.6090 +5443 9563 0.5760 +5443 9575 0.4300 +5443 9607 0.8700 +5443 9630 0.5360 +5443 9672 0.4400 +5443 10206 0.6200 +5443 10316 0.7240 +5443 10542 0.4040 +5443 10617 0.4770 +5443 10681 0.5460 +5443 10874 0.7900 +5443 10886 0.4010 +5443 10891 0.4710 +5443 23411 0.4390 +5443 23566 0.6640 +5443 25970 0.4790 +5443 26291 0.4010 +5443 27344 0.7230 +5443 29106 0.7550 +5443 29899 0.4230 +5443 50940 0.4790 +5443 51052 0.5480 +5443 51083 0.8920 +5443 51094 0.4040 +5443 51277 0.4610 +5443 51561 0.4160 +5443 51738 0.9330 +5443 51764 0.5030 +5443 51806 0.8300 +5443 54205 0.5510 +5443 54331 0.8950 +5443 55851 0.4100 +5443 55970 0.4990 +5443 56246 0.9980 +5443 56729 0.4270 +5443 56923 0.7390 +5443 57084 0.5220 +5443 57105 0.5920 +5443 59345 0.5460 +5443 63940 0.4150 +5443 64106 0.4670 +5443 64111 0.6290 +5443 79068 0.5030 +5443 79798 0.5760 +5443 79924 0.6970 +5443 80155 0.4520 +5443 80712 0.4450 +5443 84539 0.6350 +5443 84634 0.6660 +5443 85569 0.4350 +5443 89884 0.7250 +5443 90226 0.7090 +5443 91860 0.8320 +5443 92211 0.4340 +5443 94235 0.5040 +5443 112609 0.6290 +5443 112744 0.4390 +5443 113091 0.5130 +5443 114131 0.6680 +5443 117579 0.6180 +5443 121278 0.4090 +5443 122876 0.6250 +5443 124274 0.5720 +5443 129521 0.6630 +5443 137902 0.5510 +5443 139760 0.9260 +5443 140679 0.4190 +5443 162514 0.4200 +5443 163688 0.8310 +5443 170589 0.5930 +5443 246744 0.6630 +5443 256933 0.5980 +5443 283869 0.6680 +5443 347148 0.5500 +5443 387129 0.5870 +5443 594857 0.7440 +5443 619373 0.5210 +5443 643418 0.4980 +5443 104909134 0.9190 +5444 5445 0.5370 +5444 5446 0.9570 +5444 5465 0.4200 +5444 5468 0.4540 +5444 5620 0.4240 +5444 5663 0.4080 +5444 5950 0.5960 +5444 6189 0.4930 +5444 6288 0.7630 +5444 6289 0.7350 +5444 6291 0.7150 +5444 6347 0.4590 +5444 6441 0.4370 +5444 6554 0.4380 +5444 6648 0.7220 +5444 7040 0.4280 +5444 7123 0.5090 +5444 7124 0.4770 +5444 7276 0.5970 +5444 7436 0.6310 +5444 7448 0.4040 +5444 7498 0.4800 +5444 7941 0.9170 +5444 8504 0.7200 +5444 8542 0.9120 +5444 8650 0.6000 +5444 8710 0.5130 +5444 9253 0.6080 +5444 9360 0.4160 +5444 9370 0.4790 +5444 9388 0.4210 +5444 9619 0.5070 +5444 9844 0.4280 +5444 10452 0.4030 +5444 11216 0.4590 +5444 23025 0.4890 +5444 51441 0.4350 +5444 51449 0.8730 +5444 51599 0.5400 +5444 55829 0.7290 +5444 55911 0.5400 +5444 55937 0.9060 +5444 64805 0.4480 +5444 79135 0.5540 +5444 79665 0.6500 +5444 83538 0.4510 +5444 85477 0.5070 +5444 116519 0.8540 +5444 130271 0.4910 +5444 257202 0.7440 +5444 493869 0.7420 +5444 100528017 0.6000 +5445 5446 0.6910 +5445 7157 0.4800 +5445 9486 0.5380 +5445 9860 0.5510 +5445 11315 0.5390 +5445 55501 0.5390 +5445 79665 0.7650 +5445 153642 0.4950 +5446 6347 0.5980 +5446 7276 0.4510 +5446 8542 0.5740 +5446 50810 0.4100 +5446 51449 0.5620 +5446 55937 0.5130 +5446 79665 0.5890 +5447 6185 0.4050 +5447 6307 0.4460 +5447 6309 0.5260 +5447 6713 0.5560 +5447 6822 0.5110 +5447 7291 0.4260 +5447 7386 0.4260 +5447 8074 0.4410 +5447 8310 0.4040 +5447 8529 0.9400 +5447 9060 0.7200 +5447 9061 0.6670 +5447 9218 0.4100 +5447 9360 0.9440 +5447 9563 0.4690 +5447 9917 0.6690 +5447 10162 0.5010 +5447 10424 0.4730 +5447 10857 0.6360 +5447 10858 0.9280 +5447 11283 0.9110 +5447 26151 0.7270 +5447 50814 0.4240 +5447 51009 0.6200 +5447 51167 0.7260 +5447 51234 0.5040 +5447 51700 0.6530 +5447 51706 0.7090 +5447 54205 0.6790 +5447 54757 0.5880 +5447 56975 0.6940 +5447 57019 0.5040 +5447 57834 0.9190 +5447 66002 0.9260 +5447 79139 0.6280 +5447 80270 0.4250 +5447 80308 0.7730 +5447 80700 0.5820 +5447 80777 0.9970 +5447 84883 0.4640 +5447 112812 0.5370 +5447 126410 0.5330 +5447 199974 0.5460 +5447 200185 0.4400 +5447 257202 0.4020 +5447 260293 0.9140 +5447 284541 0.6620 +5447 285440 0.9110 +5447 493869 0.4180 +5447 606495 0.6980 +5447 100861540 0.9360 +5449 5617 0.9210 +5449 5626 0.9720 +5449 5989 0.4620 +5449 6575 0.6100 +5449 6657 0.4730 +5449 6658 0.6770 +5449 6659 0.4360 +5449 6752 0.5180 +5449 6870 0.4180 +5449 6927 0.6940 +5449 7080 0.4830 +5449 7200 0.7360 +5449 7201 0.5050 +5449 7252 0.9090 +5449 8022 0.8810 +5449 8622 0.5740 +5449 8820 0.9500 +5449 9095 0.7590 +5449 9611 0.5420 +5449 9970 0.7080 +5449 25978 0.4370 +5449 51390 0.4080 +5449 54756 0.4110 +5449 80712 0.7890 +5449 89884 0.9100 +5449 128674 0.5020 +5449 285989 0.4250 +5449 389136 0.4330 +5449 641372 0.4130 +5450 5451 0.9950 +5450 5452 0.8840 +5450 5460 0.4620 +5450 5788 0.4870 +5450 6477 0.5810 +5450 6688 0.6540 +5450 6689 0.8740 +5450 6850 0.8190 +5450 6929 0.4290 +5450 7374 0.4910 +5450 7441 0.4510 +5450 7494 0.6340 +5450 7535 0.5060 +5450 7849 0.4760 +5450 8115 0.5500 +5450 9034 0.4410 +5450 9214 0.4400 +5450 9595 0.4010 +5450 10320 0.4040 +5450 10563 0.4240 +5450 11040 0.4300 +5450 11101 0.5910 +5450 22806 0.8110 +5450 23495 0.5730 +5450 29760 0.5790 +5450 29802 0.6470 +5450 29997 0.4190 +5450 50615 0.4500 +5450 51237 0.8910 +5450 54900 0.4840 +5450 55809 0.4210 +5450 55843 0.5220 +5450 57379 0.6030 +5450 57569 0.5140 +5450 60468 0.5240 +5450 83416 0.8170 +5450 84636 0.4890 +5450 84824 0.6550 +5450 91319 0.5260 +5450 115650 0.6680 +5450 120376 0.4990 +5450 151888 0.6210 +5450 341032 0.5530 +5450 100423062 0.5270 +5450 102723407 0.6920 +5451 5452 0.9810 +5451 5591 0.5420 +5451 5914 0.4230 +5451 5970 0.4830 +5451 6095 0.5460 +5451 6097 0.4260 +5451 6256 0.7390 +5451 6617 0.5680 +5451 6618 0.5220 +5451 6619 0.5510 +5451 6621 0.8190 +5451 6657 0.9730 +5451 6667 0.8720 +5451 6774 0.7060 +5451 6777 0.4400 +5451 6778 0.5670 +5451 6827 0.4090 +5451 6829 0.4200 +5451 6877 0.5280 +5451 6878 0.5070 +5451 6880 0.5240 +5451 6882 0.5280 +5451 6884 0.4990 +5451 6908 0.7550 +5451 6927 0.5330 +5451 7003 0.4040 +5451 7025 0.4090 +5451 7067 0.5270 +5451 7124 0.5730 +5451 7291 0.5130 +5451 7376 0.4180 +5451 7520 0.7450 +5451 7528 0.8060 +5451 7593 0.4830 +5451 7702 0.8400 +5451 7942 0.4250 +5451 8331 0.5250 +5451 8334 0.5040 +5451 8337 0.5310 +5451 8338 0.6670 +5451 8340 0.6280 +5451 8341 0.6270 +5451 8342 0.6290 +5451 8345 0.6270 +5451 8347 0.6190 +5451 8348 0.6290 +5451 8349 0.7300 +5451 8356 0.5770 +5451 8361 0.5320 +5451 8521 0.5430 +5451 8812 0.5180 +5451 8815 0.4580 +5451 8970 0.6270 +5451 9533 0.5000 +5451 9612 0.6590 +5451 9856 0.4300 +5451 10302 0.5560 +5451 10488 0.6200 +5451 10538 0.4610 +5451 10621 0.5040 +5451 10622 0.5150 +5451 10623 0.5320 +5451 10690 0.4430 +5451 11128 0.5320 +5451 23028 0.5340 +5451 23262 0.4260 +5451 25833 0.9800 +5451 26052 0.5800 +5451 27297 0.5040 +5451 29101 0.4140 +5451 29915 0.8410 +5451 51082 0.5040 +5451 51473 0.4980 +5451 51567 0.4320 +5451 51585 0.4700 +5451 51728 0.5640 +5451 54145 0.6290 +5451 55290 0.5040 +5451 55703 0.5060 +5451 55718 0.5060 +5451 55766 0.4990 +5451 55810 0.4060 +5451 55814 0.5270 +5451 55856 0.4990 +5451 58487 0.5950 +5451 79923 0.5420 +5451 84265 0.4990 +5451 85236 0.6200 +5451 94239 0.5030 +5451 128312 0.6350 +5451 129685 0.5040 +5451 148327 0.4100 +5451 171568 0.4990 +5451 254048 0.4190 +5451 255626 0.6230 +5451 284312 0.5010 +5451 474382 0.4990 +5451 653604 0.5760 +5452 6256 0.4690 +5452 6617 0.5200 +5452 6618 0.5040 +5452 6619 0.5210 +5452 6621 0.4990 +5452 6667 0.5060 +5452 6688 0.4620 +5452 6689 0.4730 +5452 6700 0.4910 +5452 6701 0.4910 +5452 6829 0.4130 +5452 6877 0.5130 +5452 6878 0.4990 +5452 6880 0.5130 +5452 6882 0.4990 +5452 6884 0.4990 +5452 6908 0.7260 +5452 7702 0.6510 +5452 8812 0.4990 +5452 10135 0.4610 +5452 10232 0.4770 +5452 10302 0.4990 +5452 10488 0.5950 +5452 10538 0.4460 +5452 23040 0.4820 +5452 25833 0.9800 +5452 29101 0.4010 +5452 29915 0.7710 +5452 51585 0.4300 +5452 53335 0.5900 +5452 66000 0.4140 +5452 129685 0.4990 +5453 5454 0.8860 +5453 5460 0.4330 +5453 6258 0.4780 +5453 6597 0.4870 +5453 6656 0.4630 +5453 6657 0.5830 +5453 6658 0.5190 +5453 6663 0.9240 +5453 6664 0.4330 +5453 6886 0.4620 +5453 6926 0.4030 +5453 7546 0.6360 +5453 8022 0.5040 +5453 8030 0.7250 +5453 8453 0.4240 +5453 9355 0.4050 +5453 10215 0.5510 +5453 11166 0.4240 +5453 29842 0.4160 +5453 56413 0.4090 +5453 57167 0.4180 +5453 57211 0.8240 +5453 57716 0.4280 +5453 63974 0.5040 +5453 79923 0.4440 +5453 85477 0.4210 +5453 116448 0.4280 +5453 132625 0.4140 +5453 150684 0.4260 +5453 255877 0.4610 +5453 645191 0.4350 +5454 5728 0.5510 +5454 5992 0.4770 +5454 6258 0.4750 +5454 6297 0.8460 +5454 6469 0.4360 +5454 6492 0.7070 +5454 6656 0.7360 +5454 6657 0.8990 +5454 6658 0.5160 +5454 6659 0.4090 +5454 6660 0.4740 +5454 6662 0.5990 +5454 6663 0.9410 +5454 6664 0.5870 +5454 6736 0.4570 +5454 6853 0.4430 +5454 6855 0.4010 +5454 6886 0.4630 +5454 6908 0.4210 +5454 6932 0.4620 +5454 6934 0.4930 +5454 7025 0.5020 +5454 7101 0.4350 +5454 7157 0.6330 +5454 7349 0.4310 +5454 7391 0.4730 +5454 7471 0.4890 +5454 7490 0.4460 +5454 7545 0.4620 +5454 7546 0.5470 +5454 7593 0.4640 +5454 8022 0.5870 +5454 8030 0.5080 +5454 8320 0.5420 +5454 9314 0.5140 +5454 9355 0.5260 +5454 9480 0.4460 +5454 9915 0.5280 +5454 10084 0.8090 +5454 10215 0.6990 +5454 10716 0.7410 +5454 10763 0.5840 +5454 11166 0.4730 +5454 23040 0.9700 +5454 23089 0.4100 +5454 23314 0.6430 +5454 23316 0.4960 +5454 23440 0.7890 +5454 27164 0.4070 +5454 27319 0.4830 +5454 28514 0.7220 +5454 30812 0.4270 +5454 50674 0.4270 +5454 51176 0.5300 +5454 54345 0.4880 +5454 55079 0.5530 +5454 55810 0.7070 +5454 57030 0.5250 +5454 60529 0.4460 +5454 63973 0.7420 +5454 64321 0.6220 +5454 64919 0.6720 +5454 79923 0.5270 +5454 83439 0.5250 +5454 84504 0.4020 +5454 84530 0.5090 +5454 116448 0.4780 +5454 146713 0.4830 +5454 255877 0.4070 +5454 284312 0.4570 +5454 388585 0.4200 +5455 5728 0.4790 +5455 5885 0.4740 +5455 6299 0.4520 +5455 6656 0.5860 +5455 6657 0.6810 +5455 6658 0.4580 +5455 6664 0.6850 +5455 6862 0.6330 +5455 6932 0.4550 +5455 6934 0.4580 +5455 7025 0.4260 +5455 7157 0.5470 +5455 8030 0.5860 +5455 9355 0.4510 +5455 10051 0.8110 +5455 10215 0.4500 +5455 10716 0.6040 +5455 10736 0.4330 +5455 11166 0.5190 +5455 11322 0.4940 +5455 23040 0.8400 +5455 23244 0.4610 +5455 23316 0.4230 +5455 23397 0.7840 +5455 28514 0.7480 +5455 30812 0.4050 +5455 55079 0.4550 +5455 63973 0.6260 +5455 64151 0.9160 +5455 64919 0.4110 +5455 79191 0.4110 +5455 83439 0.4810 +5456 5631 0.7260 +5456 5989 0.5270 +5456 5990 0.5760 +5456 5993 0.5760 +5456 5994 0.5870 +5456 6656 0.4740 +5456 6657 0.7050 +5456 6663 0.4810 +5456 6664 0.4250 +5456 6975 0.4910 +5456 7466 0.4460 +5456 7552 0.4030 +5456 7809 0.4070 +5456 8022 0.4240 +5456 8030 0.5720 +5456 8625 0.5500 +5456 9131 0.4170 +5456 9132 0.4730 +5456 9314 0.5870 +5456 9381 0.5080 +5456 9968 0.4170 +5456 10215 0.4370 +5456 10804 0.4910 +5456 23040 0.4720 +5456 23630 0.4100 +5456 23676 0.6550 +5456 50674 0.4990 +5456 51168 0.5830 +5456 53336 0.4030 +5456 53904 0.4050 +5456 56649 0.4350 +5456 57053 0.4070 +5456 63973 0.4250 +5456 64072 0.5120 +5456 64321 0.4360 +5456 64699 0.5430 +5456 65217 0.4470 +5456 84504 0.4870 +5456 117154 0.4140 +5456 117531 0.5130 +5456 124590 0.4640 +5456 125336 0.5120 +5456 126326 0.4110 +5456 146183 0.5000 +5456 161497 0.5750 +5456 170302 0.4550 +5456 221823 0.6920 +5456 259236 0.4050 +5456 340562 0.4430 +5456 340990 0.5470 +5456 387755 0.4390 +5456 494513 0.4090 +5457 5578 0.5110 +5457 5900 0.4970 +5457 5957 0.6170 +5457 6010 0.5700 +5457 6014 0.8330 +5457 6017 0.4830 +5457 6469 0.4010 +5457 6496 0.4450 +5457 6572 0.4230 +5457 6623 0.5300 +5457 6657 0.4830 +5457 6662 0.4090 +5457 6663 0.5460 +5457 6664 0.4100 +5457 7070 0.4850 +5457 7157 0.7660 +5457 7490 0.4210 +5457 8022 0.4810 +5457 9355 0.4690 +5457 9610 0.4290 +5457 10381 0.4600 +5457 11030 0.7110 +5457 27319 0.4960 +5457 30012 0.5080 +5457 56751 0.5360 +5457 56956 0.8070 +5457 57030 0.4550 +5457 57084 0.5070 +5457 58158 0.4820 +5457 59335 0.4230 +5457 63973 0.8340 +5457 64843 0.5860 +5457 94233 0.6940 +5457 146713 0.5060 +5457 220202 0.6510 +5457 246213 0.4100 +5457 338917 0.7540 +5457 644168 0.5520 +5458 5463 0.5150 +5458 5957 0.6210 +5458 6010 0.5470 +5458 6014 0.7020 +5458 6017 0.4880 +5458 6496 0.6020 +5458 6623 0.5890 +5458 6657 0.4170 +5458 6659 0.5620 +5458 6662 0.5470 +5458 6664 0.4960 +5458 6736 0.4290 +5458 7070 0.4510 +5458 7082 0.4080 +5458 7157 0.7430 +5458 7490 0.5620 +5458 7710 0.5500 +5458 7799 0.5510 +5458 8022 0.4060 +5458 8320 0.4140 +5458 8796 0.5470 +5458 9589 0.5950 +5458 10002 0.4780 +5458 11030 0.6420 +5458 11346 0.5160 +5458 23213 0.4990 +5458 25844 0.4970 +5458 27253 0.6340 +5458 27319 0.5220 +5458 29855 0.4970 +5458 30813 0.6040 +5458 56956 0.4220 +5458 57084 0.4660 +5458 58158 0.5940 +5458 63973 0.4790 +5458 64843 0.5700 +5458 94233 0.7190 +5458 121643 0.6000 +5458 220202 0.8390 +5458 256297 0.4640 +5458 338917 0.7920 +5458 343472 0.5990 +5459 6014 0.4510 +5459 6495 0.5460 +5459 6623 0.5650 +5459 6656 0.4180 +5459 6657 0.5340 +5459 6663 0.4020 +5459 7007 0.4420 +5459 7466 0.4310 +5459 8022 0.5070 +5459 9132 0.5790 +5459 9381 0.6310 +5459 11030 0.4580 +5459 25861 0.4060 +5459 51168 0.5700 +5459 51475 0.4060 +5459 53904 0.4100 +5459 56751 0.6080 +5459 57053 0.4360 +5459 64072 0.4820 +5459 64699 0.5040 +5459 64843 0.4790 +5459 65217 0.4530 +5459 80110 0.4130 +5459 83715 0.6040 +5459 94233 0.4460 +5459 117531 0.6040 +5459 125336 0.4490 +5459 146183 0.5180 +5459 147948 0.4050 +5459 152137 0.4180 +5459 161497 0.5070 +5459 220202 0.5860 +5459 222662 0.4470 +5459 246213 0.5580 +5459 338917 0.4660 +5459 340990 0.4560 +5459 375611 0.6060 +5459 389207 0.4530 +5459 643226 0.4140 +5459 654231 0.4670 +5460 5462 0.9700 +5460 5468 0.4780 +5460 5478 0.4030 +5460 5591 0.4420 +5460 5595 0.4750 +5460 5716 0.5960 +5460 5727 0.4350 +5460 5728 0.5450 +5460 5788 0.6230 +5460 5887 0.7540 +5460 5916 0.5590 +5460 5928 0.4110 +5460 5931 0.5840 +5460 6045 0.6090 +5460 6119 0.4330 +5460 6146 0.5280 +5460 6297 0.6200 +5460 6299 0.8190 +5460 6387 0.4720 +5460 6391 0.4140 +5460 6469 0.6200 +5460 6513 0.4220 +5460 6591 0.6760 +5460 6597 0.8180 +5460 6599 0.5020 +5460 6601 0.5310 +5460 6608 0.4460 +5460 6615 0.7110 +5460 6656 0.7520 +5460 6657 0.9990 +5460 6658 0.6080 +5460 6659 0.9220 +5460 6662 0.6930 +5460 6663 0.5570 +5460 6664 0.4890 +5460 6665 0.5190 +5460 6688 0.4250 +5460 6696 0.4750 +5460 6714 0.4070 +5460 6736 0.7000 +5460 6774 0.9460 +5460 6839 0.4300 +5460 6862 0.8680 +5460 6886 0.4220 +5460 6908 0.4690 +5460 6910 0.5490 +5460 6911 0.4740 +5460 6925 0.8780 +5460 6926 0.8980 +5460 6927 0.4480 +5460 6929 0.6300 +5460 6932 0.6630 +5460 6941 0.7100 +5460 6996 0.5280 +5460 6997 0.8630 +5460 7004 0.7180 +5460 7015 0.6390 +5460 7022 0.6090 +5460 7026 0.7030 +5460 7040 0.5520 +5460 7044 0.8400 +5460 7070 0.7380 +5460 7073 0.5290 +5460 7080 0.4040 +5460 7082 0.4050 +5460 7124 0.4230 +5460 7139 0.6020 +5460 7157 0.8240 +5460 7158 0.4530 +5460 7178 0.5090 +5460 7249 0.4240 +5460 7291 0.6710 +5460 7299 0.4730 +5460 7329 0.5270 +5460 7403 0.5610 +5460 7431 0.6710 +5460 7448 0.5170 +5460 7471 0.4170 +5460 7473 0.6480 +5460 7474 0.4590 +5460 7490 0.4560 +5460 7508 0.5460 +5460 7528 0.9170 +5460 7541 0.4850 +5460 7543 0.5630 +5460 7545 0.4060 +5460 7546 0.5990 +5460 7547 0.8940 +5460 7702 0.5140 +5460 7704 0.6980 +5460 7726 0.4210 +5460 7783 0.4070 +5460 7784 0.4680 +5460 7837 0.5790 +5460 7846 0.5560 +5460 7852 0.6260 +5460 7874 0.5370 +5460 8091 0.6080 +5460 8115 0.5000 +5460 8290 0.6310 +5460 8294 0.8110 +5460 8313 0.4340 +5460 8320 0.8250 +5460 8335 0.8000 +5460 8349 0.4130 +5460 8350 0.8050 +5460 8351 0.8080 +5460 8352 0.8380 +5460 8353 0.8380 +5460 8354 0.8080 +5460 8355 0.8100 +5460 8356 0.9230 +5460 8357 0.8080 +5460 8358 0.8100 +5460 8359 0.8070 +5460 8360 0.8150 +5460 8361 0.9120 +5460 8362 0.8070 +5460 8363 0.8070 +5460 8364 0.8140 +5460 8366 0.8090 +5460 8367 0.8080 +5460 8368 0.8110 +5460 8370 0.8070 +5460 8433 0.7370 +5460 8451 0.4200 +5460 8473 0.4400 +5460 8549 0.6060 +5460 8554 0.4790 +5460 8609 0.4570 +5460 8726 0.4930 +5460 8788 0.5340 +5460 8815 0.8370 +5460 8817 0.6850 +5460 8820 0.5740 +5460 8822 0.7130 +5460 8823 0.6840 +5460 8842 0.8460 +5460 8928 0.8970 +5460 8968 0.8080 +5460 8970 0.8340 +5460 9070 0.6890 +5460 9074 0.4270 +5460 9096 0.5400 +5460 9126 0.4510 +5460 9210 0.4640 +5460 9241 0.5740 +5460 9271 0.4050 +5460 9314 0.9940 +5460 9350 0.4300 +5460 9355 0.4420 +5460 9429 0.7230 +5460 9464 0.4070 +5460 9573 0.7600 +5460 9612 0.4300 +5460 9623 0.4930 +5460 9636 0.4650 +5460 9669 0.5080 +5460 9839 0.5460 +5460 9869 0.7380 +5460 9968 0.4610 +5460 10155 0.7380 +5460 10215 0.6140 +5460 10273 0.6660 +5460 10320 0.4140 +5460 10365 0.7690 +5460 10381 0.6730 +5460 10382 0.5600 +5460 10413 0.8530 +5460 10551 0.4040 +5460 10620 0.5140 +5460 10637 0.7210 +5460 10664 0.9550 +5460 10716 0.4610 +5460 10763 0.8350 +5460 10912 0.5220 +5460 10919 0.6350 +5460 10951 0.5110 +5460 11060 0.9300 +5460 11091 0.9910 +5460 11143 0.4350 +5460 11166 0.6180 +5460 22917 0.4470 +5460 22943 0.5120 +5460 23028 0.7740 +5460 23040 0.4140 +5460 23089 0.5120 +5460 23135 0.4190 +5460 23186 0.4110 +5460 23394 0.4570 +5460 23405 0.4670 +5460 23411 0.4300 +5460 23462 0.4200 +5460 23468 0.4820 +5460 23476 0.6370 +5460 23512 0.7070 +5460 23528 0.8000 +5460 23598 0.5960 +5460 25942 0.8560 +5460 26281 0.6820 +5460 26354 0.4850 +5460 27006 0.6850 +5460 27022 0.9670 +5460 27164 0.5210 +5460 29128 0.4060 +5460 29842 0.6380 +5460 29947 0.5520 +5460 50511 0.5090 +5460 50674 0.7280 +5460 51053 0.5620 +5460 51132 0.6110 +5460 51176 0.7410 +5460 51523 0.4570 +5460 51592 0.6210 +5460 53615 0.6610 +5460 54345 0.5410 +5460 54514 0.6350 +5460 54535 0.5890 +5460 54596 0.7530 +5460 54776 0.4540 +5460 54790 0.6880 +5460 54845 0.5320 +5460 54881 0.5020 +5460 54937 0.4080 +5460 55124 0.5140 +5460 55211 0.8850 +5460 55294 0.4060 +5460 55311 0.4630 +5460 55636 0.4630 +5460 55897 0.4380 +5460 57167 0.9980 +5460 57215 0.5850 +5460 57459 0.4290 +5460 57492 0.4050 +5460 57634 0.5700 +5460 57680 0.4720 +5460 63973 0.5230 +5460 63978 0.9720 +5460 64321 0.9880 +5460 79727 0.9940 +5460 79923 0.9990 +5460 80312 0.7890 +5460 80712 0.5890 +5460 80755 0.4080 +5460 83439 0.5590 +5460 83595 0.7470 +5460 83737 0.5640 +5460 83881 0.6660 +5460 84101 0.4620 +5460 84504 0.4560 +5460 84525 0.5370 +5460 84661 0.6720 +5460 84678 0.7320 +5460 84733 0.4630 +5460 84759 0.6410 +5460 84891 0.9130 +5460 85416 0.4680 +5460 89780 0.5590 +5460 112939 0.7430 +5460 116448 0.4270 +5460 121504 0.8840 +5460 128209 0.4830 +5460 132625 0.7560 +5460 135935 0.7020 +5460 137902 0.5740 +5460 140690 0.6070 +5460 145258 0.5150 +5460 146713 0.4420 +5460 148979 0.5810 +5460 151871 0.6450 +5460 162979 0.4790 +5460 166647 0.4670 +5460 200424 0.5200 +5460 201456 0.8370 +5460 201516 0.5260 +5460 203068 0.4110 +5460 256297 0.5240 +5460 286133 0.4460 +5460 339345 0.5440 +5460 340168 0.5860 +5460 342977 0.5950 +5460 346171 0.5630 +5460 346673 0.6340 +5460 359787 0.8070 +5460 373863 0.4310 +5460 387332 0.8310 +5460 388112 0.6110 +5460 389421 0.7110 +5460 390992 0.4650 +5460 402381 0.4480 +5460 440093 0.6290 +5460 440686 0.6450 +5460 554313 0.8080 +5460 642623 0.5650 +5460 653604 0.7310 +5460 728378 0.4560 +5460 100133941 0.7340 +5460 100526761 0.4070 +5460 100532731 0.7450 +5460 100885850 0.4080 +5462 6934 0.5820 +5462 11278 0.4060 +5462 54535 0.4770 +5462 57167 0.4170 +5462 63978 0.5720 +5462 79727 0.4160 +5462 79923 0.7160 +5462 157638 0.6420 +5462 388112 0.6300 +5463 6774 0.4450 +5463 8578 0.4260 +5463 9542 0.4920 +5463 22899 0.4580 +5463 51380 0.4690 +5463 55810 0.4050 +5463 339896 0.4740 +5464 5501 0.4010 +5464 5592 0.7450 +5464 5832 0.5470 +5464 5901 0.4360 +5464 5928 0.4840 +5464 5931 0.4890 +5464 6125 0.4560 +5464 6147 0.4890 +5464 6154 0.4210 +5464 6175 0.5030 +5464 6182 0.7310 +5464 6183 0.4200 +5464 6188 0.5240 +5464 6202 0.4430 +5464 6222 0.5050 +5464 6224 0.6450 +5464 6228 0.4520 +5464 6301 0.4390 +5464 6389 0.4860 +5464 6390 0.5240 +5464 6470 0.4630 +5464 6472 0.6630 +5464 6594 0.4560 +5464 6648 0.4050 +5464 6888 0.5700 +5464 6897 0.4760 +5464 7001 0.4500 +5464 7086 0.4760 +5464 7153 0.5730 +5464 7157 0.5530 +5464 7167 0.6820 +5464 7184 0.4260 +5464 7295 0.5040 +5464 7317 0.4600 +5464 7322 0.4400 +5464 7329 0.4300 +5464 7360 0.5970 +5464 7386 0.4180 +5464 7407 0.5940 +5464 7417 0.5020 +5464 7597 0.4210 +5464 8277 0.4550 +5464 8356 0.5140 +5464 8467 0.4700 +5464 8565 0.5790 +5464 8801 0.4280 +5464 8833 0.4390 +5464 8968 0.4340 +5464 8992 0.6550 +5464 9060 0.7890 +5464 9061 0.7960 +5464 9114 0.6640 +5464 9343 0.4720 +5464 9349 0.4400 +5464 9521 0.4030 +5464 9550 0.6650 +5464 9551 0.6810 +5464 9563 0.5600 +5464 9801 0.4040 +5464 9858 0.4390 +5464 9869 0.4450 +5464 9973 0.5240 +5464 10054 0.4240 +5464 10055 0.4930 +5464 10102 0.6370 +5464 10131 0.4150 +5464 10247 0.4070 +5464 10285 0.4040 +5464 10312 0.7510 +5464 10476 0.7410 +5464 10549 0.4150 +5464 10576 0.4930 +5464 10632 0.7060 +5464 10856 0.4140 +5464 10873 0.4270 +5464 10963 0.4370 +5464 10987 0.4830 +5464 11065 0.4220 +5464 11171 0.4080 +5464 11222 0.4520 +5464 11224 0.4660 +5464 11232 0.4740 +5464 22934 0.4600 +5464 22984 0.4610 +5464 23164 0.8420 +5464 23395 0.4640 +5464 23521 0.6380 +5464 23545 0.7730 +5464 25973 0.5090 +5464 26289 0.4120 +5464 27068 0.9110 +5464 28998 0.6490 +5464 29925 0.4710 +5464 50617 0.7580 +5464 50808 0.5400 +5464 51067 0.4850 +5464 51116 0.4500 +5464 51121 0.4100 +5464 51128 0.5630 +5464 51154 0.4370 +5464 51314 0.4090 +5464 51382 0.7490 +5464 51520 0.4800 +5464 51606 0.6910 +5464 51727 0.4980 +5464 51806 0.4260 +5464 54617 0.4800 +5464 54938 0.4330 +5464 55062 0.4750 +5464 55173 0.6280 +5464 55270 0.5340 +5464 55699 0.5690 +5464 56648 0.6520 +5464 56681 0.5090 +5464 57505 0.4680 +5464 58497 0.5320 +5464 64077 0.9440 +5464 64965 0.4470 +5464 64968 0.6440 +5464 79004 0.4090 +5464 79631 0.4070 +5464 79690 0.4220 +5464 79693 0.4220 +5464 80222 0.4160 +5464 83594 0.4760 +5464 84076 0.4530 +5464 84942 0.4070 +5464 85476 0.5270 +5464 90353 0.5430 +5464 90423 0.7250 +5464 91860 0.4240 +5464 92399 0.4880 +5464 92935 0.4220 +5464 122622 0.4170 +5464 123283 0.4120 +5464 124454 0.4410 +5464 126328 0.4280 +5464 133482 0.4330 +5464 143244 0.6540 +5464 163688 0.4240 +5464 219927 0.4320 +5464 221264 0.4600 +5464 245972 0.6600 +5464 245973 0.6930 +5464 347487 0.4540 +5464 347688 0.5990 +5464 374291 0.5310 +5464 100287482 0.4390 +5464 101927367 0.4660 +5465 5467 0.8870 +5465 5468 0.6470 +5465 5469 0.8860 +5465 5525 0.4070 +5465 5566 0.9460 +5465 5567 0.9450 +5465 5568 0.9450 +5465 5578 0.5240 +5465 5580 0.4590 +5465 5595 0.5100 +5465 5599 0.4200 +5465 5604 0.4530 +5465 5728 0.4640 +5465 5743 0.7290 +5465 5770 0.4370 +5465 5825 0.4390 +5465 5917 0.6330 +5465 5970 0.5350 +5465 5972 0.4810 +5465 6135 0.5700 +5465 6198 0.4490 +5465 6256 0.9990 +5465 6257 0.9320 +5465 6258 0.8890 +5465 6294 0.4290 +5465 6319 0.7660 +5465 6347 0.6160 +5465 6376 0.5190 +5465 6476 0.5520 +5465 6513 0.6930 +5465 6514 0.5940 +5465 6517 0.7450 +5465 6524 0.4530 +5465 6541 0.5580 +5465 6554 0.6580 +5465 6555 0.7540 +5465 6584 0.4830 +5465 6602 0.5450 +5465 6604 0.5710 +5465 6647 0.4790 +5465 6648 0.4940 +5465 6714 0.6080 +5465 6720 0.8850 +5465 6721 0.8220 +5465 6772 0.5650 +5465 6774 0.5730 +5465 6776 0.5930 +5465 6777 0.4030 +5465 6778 0.5900 +5465 6794 0.5190 +5465 6822 0.6740 +5465 6907 0.6140 +5465 6908 0.4040 +5465 6927 0.4920 +5465 7003 0.4490 +5465 7019 0.6350 +5465 7026 0.4630 +5465 7040 0.5650 +5465 7054 0.4940 +5465 7067 0.4030 +5465 7076 0.4150 +5465 7097 0.4650 +5465 7098 0.4060 +5465 7099 0.6340 +5465 7124 0.8100 +5465 7141 0.4400 +5465 7157 0.5410 +5465 7296 0.5910 +5465 7329 0.6090 +5465 7341 0.5220 +5465 7350 0.9190 +5465 7351 0.8210 +5465 7352 0.7290 +5465 7376 0.6670 +5465 7391 0.5740 +5465 7412 0.5670 +5465 7436 0.5290 +5465 7442 0.7180 +5465 7494 0.4620 +5465 7498 0.6120 +5465 7837 0.5680 +5465 7942 0.6030 +5465 8202 0.5540 +5465 8204 0.7610 +5465 8309 0.6510 +5465 8310 0.8210 +5465 8431 0.7650 +5465 8647 0.4960 +5465 8648 0.9980 +5465 8660 0.5680 +5465 8694 0.7210 +5465 8799 0.5100 +5465 8800 0.9040 +5465 8841 0.6480 +5465 8856 0.5600 +5465 8863 0.6090 +5465 8864 0.9890 +5465 8972 0.5530 +5465 9021 0.4270 +5465 9049 0.7620 +5465 9213 0.9700 +5465 9290 0.7460 +5465 9360 0.5070 +5465 9370 0.9140 +5465 9415 0.5320 +5465 9510 0.4320 +5465 9563 0.4610 +5465 9575 0.7640 +5465 9611 0.9910 +5465 9612 0.9960 +5465 9619 0.5810 +5465 9663 0.7800 +5465 9817 0.4660 +5465 9862 0.7620 +5465 9927 0.4300 +5465 9965 0.5000 +5465 10005 0.8010 +5465 10014 0.5140 +5465 10062 0.8600 +5465 10075 0.5490 +5465 10105 0.7610 +5465 10135 0.5020 +5465 10226 0.4220 +5465 10370 0.4720 +5465 10379 0.4830 +5465 10449 0.4950 +5465 10498 0.5940 +5465 10499 0.9090 +5465 10501 0.5410 +5465 10527 0.4050 +5465 10533 0.4200 +5465 10587 0.6000 +5465 10891 0.9990 +5465 10965 0.7580 +5465 10998 0.5190 +5465 10999 0.7050 +5465 11001 0.5830 +5465 11010 0.5380 +5465 11213 0.4330 +5465 11343 0.6070 +5465 22926 0.4420 +5465 23054 0.8010 +5465 23082 0.4820 +5465 23090 0.4670 +5465 23135 0.8080 +5465 23175 0.9740 +5465 23179 0.5130 +5465 23309 0.5030 +5465 23408 0.4170 +5465 23409 0.4420 +5465 23410 0.5980 +5465 23411 0.9060 +5465 23417 0.5910 +5465 23491 0.5620 +5465 25942 0.5380 +5465 26060 0.4260 +5465 26230 0.4990 +5465 26291 0.8630 +5465 26471 0.5180 +5465 27063 0.5340 +5465 27163 0.7020 +5465 27242 0.5370 +5465 27329 0.4640 +5465 28999 0.6840 +5465 29841 0.5060 +5465 29881 0.5370 +5465 29947 0.4260 +5465 29982 0.5590 +5465 50486 0.6650 +5465 50507 0.4630 +5465 51085 0.7380 +5465 51094 0.8560 +5465 51099 0.5170 +5465 51102 0.4400 +5465 51129 0.8430 +5465 51141 0.4750 +5465 51302 0.5660 +5465 51441 0.5040 +5465 51548 0.4320 +5465 51588 0.4800 +5465 51703 0.4880 +5465 51738 0.4410 +5465 51806 0.5780 +5465 53345 0.4250 +5465 54205 0.5290 +5465 54512 0.5080 +5465 54575 0.4310 +5465 54576 0.4430 +5465 54577 0.4300 +5465 54578 0.4560 +5465 54583 0.4830 +5465 54600 0.6410 +5465 54657 0.4490 +5465 54658 0.4530 +5465 54898 0.4320 +5465 55554 0.5700 +5465 55818 0.6520 +5465 55902 0.4370 +5465 56729 0.5720 +5465 57104 0.7680 +5465 57146 0.6740 +5465 57678 0.7300 +5465 57761 0.9290 +5465 57818 0.6100 +5465 60481 0.5670 +5465 63924 0.5570 +5465 63976 0.7800 +5465 64240 0.5880 +5465 64241 0.5370 +5465 64900 0.7080 +5465 79071 0.7410 +5465 79602 0.9000 +5465 79718 0.5480 +5465 80205 0.8120 +5465 80339 0.5870 +5465 80347 0.4730 +5465 83401 0.5420 +5465 84649 0.6780 +5465 84666 0.5430 +5465 84676 0.4230 +5465 84699 0.8350 +5465 84706 0.4830 +5465 85441 0.9080 +5465 91860 0.5460 +5465 92579 0.6070 +5465 96764 0.5690 +5465 116255 0.4260 +5465 116519 0.7850 +5465 126129 0.6810 +5465 132949 0.5720 +5465 133482 0.5420 +5465 133522 0.8910 +5465 137902 0.5680 +5465 137964 0.5300 +5465 139760 0.7060 +5465 151306 0.4780 +5465 152559 0.4130 +5465 152831 0.7180 +5465 158833 0.4980 +5465 163688 0.5460 +5465 164091 0.5980 +5465 171023 0.4080 +5465 200186 0.4880 +5465 219623 0.4290 +5465 222236 0.5880 +5465 246329 0.4470 +5465 252995 0.4800 +5465 255738 0.6200 +5465 257202 0.5170 +5465 338557 0.4480 +5465 376497 0.8020 +5465 440503 0.8540 +5465 493869 0.5260 +5465 641371 0.8010 +5465 729359 0.4120 +5467 5468 0.7150 +5467 5469 0.7100 +5467 5530 0.4310 +5467 5578 0.5320 +5467 5595 0.4240 +5467 5740 0.4640 +5467 5743 0.6610 +5467 5894 0.4140 +5467 5914 0.4780 +5467 5917 0.7290 +5467 5948 0.5250 +5467 5970 0.5130 +5467 6256 0.9950 +5467 6257 0.9480 +5467 6258 0.8910 +5467 6261 0.4010 +5467 6294 0.4210 +5467 6319 0.5060 +5467 6347 0.4470 +5467 6517 0.7390 +5467 6555 0.4630 +5467 6598 0.4100 +5467 6601 0.4200 +5467 6640 0.4830 +5467 6655 0.4010 +5467 6667 0.5240 +5467 6720 0.6370 +5467 6721 0.4510 +5467 6772 0.5220 +5467 6774 0.5520 +5467 6776 0.4110 +5467 6778 0.4590 +5467 7019 0.5800 +5467 7040 0.4240 +5467 7056 0.4240 +5467 7099 0.4280 +5467 7100 0.4520 +5467 7124 0.5630 +5467 7314 0.4010 +5467 7350 0.7440 +5467 7351 0.7430 +5467 7352 0.7710 +5467 7376 0.5260 +5467 7402 0.5900 +5467 7425 0.4480 +5467 8038 0.4800 +5467 8050 0.5640 +5467 8202 0.7040 +5467 8204 0.4600 +5467 8289 0.4380 +5467 8310 0.7150 +5467 8431 0.6290 +5467 8648 0.8820 +5467 8694 0.4740 +5467 8841 0.6180 +5467 9213 0.7480 +5467 9370 0.6130 +5467 9611 0.9740 +5467 9612 0.9190 +5467 9619 0.4200 +5467 9663 0.5420 +5467 9734 0.4360 +5467 9759 0.4180 +5467 9971 0.5140 +5467 10005 0.5160 +5467 10062 0.5330 +5467 10499 0.7240 +5467 10531 0.4090 +5467 10891 0.9690 +5467 10999 0.6120 +5467 23082 0.5550 +5467 23090 0.4330 +5467 23411 0.6040 +5467 23621 0.4150 +5467 25865 0.4370 +5467 26291 0.4880 +5467 51085 0.4880 +5467 51129 0.6260 +5467 51393 0.4180 +5467 51605 0.4390 +5467 55031 0.4100 +5467 56947 0.4540 +5467 57104 0.5570 +5467 57678 0.5530 +5467 79885 0.4400 +5467 84649 0.6080 +5467 84879 0.4200 +5467 85441 0.5620 +5467 126129 0.7370 +5467 133522 0.7750 +5467 376497 0.5250 +5467 387082 0.4580 +5467 440503 0.4020 +5468 5469 0.9990 +5468 5506 0.5710 +5468 5562 0.5320 +5468 5563 0.5100 +5468 5566 0.5770 +5468 5567 0.5770 +5468 5568 0.5770 +5468 5578 0.8080 +5468 5581 0.5290 +5468 5594 0.7360 +5468 5595 0.6700 +5468 5598 0.6380 +5468 5599 0.5050 +5468 5604 0.8130 +5468 5617 0.4030 +5468 5629 0.6570 +5468 5728 0.8300 +5468 5730 0.4120 +5468 5741 0.4040 +5468 5742 0.6890 +5468 5743 0.7350 +5468 5770 0.5560 +5468 5781 0.5690 +5468 5788 0.5800 +5468 5837 0.4280 +5468 5914 0.8480 +5468 5917 0.7040 +5468 5919 0.4260 +5468 5925 0.4510 +5468 5928 0.5220 +5468 5929 0.5350 +5468 5931 0.5130 +5468 5950 0.4850 +5468 5970 0.9980 +5468 5972 0.6080 +5468 5978 0.5770 +5468 5979 0.5870 +5468 5993 0.6090 +5468 6015 0.5310 +5468 6045 0.5170 +5468 6198 0.5650 +5468 6256 0.9990 +5468 6257 0.9800 +5468 6258 0.9630 +5468 6294 0.4200 +5468 6319 0.7460 +5468 6347 0.7310 +5468 6348 0.4330 +5468 6387 0.4620 +5468 6391 0.4470 +5468 6401 0.4780 +5468 6421 0.6360 +5468 6462 0.4080 +5468 6476 0.5710 +5468 6513 0.5750 +5468 6514 0.5990 +5468 6517 0.9340 +5468 6524 0.5460 +5468 6578 0.4780 +5468 6591 0.6430 +5468 6595 0.9120 +5468 6597 0.9660 +5468 6599 0.9100 +5468 6601 0.9070 +5468 6602 0.9110 +5468 6603 0.9010 +5468 6604 0.9350 +5468 6605 0.9060 +5468 6615 0.6810 +5468 6647 0.5110 +5468 6648 0.5410 +5468 6657 0.4610 +5468 6662 0.6080 +5468 6667 0.9160 +5468 6678 0.4100 +5468 6688 0.6290 +5468 6696 0.6090 +5468 6714 0.7360 +5468 6720 0.9820 +5468 6721 0.9400 +5468 6772 0.8170 +5468 6774 0.8260 +5468 6776 0.8330 +5468 6777 0.6650 +5468 6778 0.8330 +5468 6794 0.5160 +5468 6820 0.4030 +5468 6833 0.6410 +5468 6837 0.4990 +5468 6839 0.5140 +5468 6850 0.5880 +5468 6854 0.4670 +5468 6867 0.4100 +5468 6907 0.5380 +5468 6908 0.6490 +5468 6925 0.7640 +5468 6927 0.4930 +5468 6934 0.6560 +5468 6996 0.4830 +5468 7003 0.4800 +5468 7015 0.5010 +5468 7019 0.6840 +5468 7026 0.7790 +5468 7040 0.9220 +5468 7041 0.6440 +5468 7043 0.4130 +5468 7046 0.6390 +5468 7048 0.4030 +5468 7050 0.5300 +5468 7054 0.4280 +5468 7069 0.4620 +5468 7070 0.5120 +5468 7073 0.4020 +5468 7076 0.5440 +5468 7079 0.4130 +5468 7097 0.5900 +5468 7099 0.7380 +5468 7101 0.5170 +5468 7124 0.8070 +5468 7157 0.9490 +5468 7184 0.4060 +5468 7253 0.4380 +5468 7294 0.4330 +5468 7295 0.4510 +5468 7299 0.5090 +5468 7316 0.4130 +5468 7329 0.8160 +5468 7341 0.5880 +5468 7350 0.9250 +5468 7351 0.8590 +5468 7352 0.7740 +5468 7376 0.6470 +5468 7385 0.6120 +5468 7412 0.6350 +5468 7416 0.4100 +5468 7436 0.4740 +5468 7442 0.6490 +5468 7450 0.4540 +5468 7465 0.4680 +5468 7466 0.4790 +5468 7474 0.4380 +5468 7480 0.5450 +5468 7494 0.4600 +5468 7498 0.4810 +5468 7514 0.4420 +5468 7528 0.4070 +5468 7709 0.4250 +5468 7791 0.4190 +5468 7837 0.6610 +5468 7849 0.9940 +5468 7852 0.4520 +5468 7942 0.4750 +5468 8031 0.5710 +5468 8202 0.9090 +5468 8204 0.8540 +5468 8289 0.9140 +5468 8290 0.4960 +5468 8309 0.4300 +5468 8310 0.6550 +5468 8356 0.4950 +5468 8431 0.9760 +5468 8462 0.5230 +5468 8473 0.5090 +5468 8503 0.4850 +5468 8535 0.5140 +5468 8554 0.6630 +5468 8600 0.5470 +5468 8648 0.9990 +5468 8660 0.5950 +5468 8678 0.4510 +5468 8694 0.6990 +5468 8726 0.5340 +5468 8788 0.5670 +5468 8805 0.4400 +5468 8817 0.4290 +5468 8822 0.4290 +5468 8823 0.4440 +5468 8841 0.9650 +5468 8862 0.4170 +5468 8864 0.9160 +5468 8872 0.4270 +5468 8972 0.5710 +5468 9021 0.5350 +5468 9063 0.4940 +5468 9070 0.5330 +5468 9112 0.5310 +5468 9213 0.9960 +5468 9219 0.5050 +5468 9282 0.8160 +5468 9290 0.5940 +5468 9314 0.6840 +5468 9326 0.5670 +5468 9332 0.4990 +5468 9360 0.4440 +5468 9365 0.4200 +5468 9370 0.9650 +5468 9412 0.5170 +5468 9415 0.4240 +5468 9429 0.4080 +5468 9439 0.6000 +5468 9440 0.5500 +5468 9441 0.5220 +5468 9442 0.5270 +5468 9443 0.5180 +5468 9451 0.6260 +5468 9477 0.5650 +5468 9536 0.4430 +5468 9563 0.4560 +5468 9575 0.5080 +5468 9611 0.9990 +5468 9612 0.9990 +5468 9619 0.7600 +5468 9734 0.6870 +5468 9759 0.8000 +5468 9817 0.5660 +5468 9862 0.7490 +5468 9869 0.5660 +5468 9882 0.4100 +5468 9927 0.4590 +5468 9965 0.4030 +5468 9967 0.7320 +5468 9968 0.5660 +5468 9969 0.5740 +5468 9971 0.5390 +5468 10001 0.5270 +5468 10005 0.5100 +5468 10014 0.6200 +5468 10025 0.5480 +5468 10059 0.4460 +5468 10062 0.8650 +5468 10135 0.5890 +5468 10159 0.4800 +5468 10226 0.5060 +5468 10269 0.5490 +5468 10273 0.4890 +5468 10280 0.5270 +5468 10298 0.5920 +5468 10365 0.4620 +5468 10370 0.5670 +5468 10461 0.4210 +5468 10499 0.9980 +5468 10524 0.4590 +5468 10533 0.4210 +5468 10555 0.6410 +5468 10587 0.5340 +5468 10644 0.5090 +5468 10891 0.9990 +5468 10974 0.7890 +5468 10999 0.6550 +5468 11001 0.4400 +5468 11132 0.5100 +5468 11213 0.5420 +5468 11343 0.5990 +5468 22926 0.4310 +5468 22933 0.4740 +5468 22943 0.4460 +5468 22955 0.5150 +5468 22976 0.6270 +5468 23028 0.6430 +5468 23054 0.9400 +5468 23081 0.4070 +5468 23082 0.6410 +5468 23090 0.7110 +5468 23097 0.5420 +5468 23135 0.4180 +5468 23175 0.9090 +5468 23186 0.5680 +5468 23389 0.5250 +5468 23409 0.4010 +5468 23410 0.5940 +5468 23411 0.9980 +5468 23426 0.5590 +5468 23466 0.4990 +5468 23512 0.5740 +5468 23621 0.4930 +5468 25819 0.4420 +5468 25942 0.4780 +5468 26281 0.4440 +5468 26291 0.7030 +5468 26471 0.4060 +5468 26580 0.5070 +5468 27006 0.4540 +5468 27034 0.4230 +5468 27035 0.4110 +5468 27044 0.6270 +5468 27250 0.4970 +5468 27306 0.5830 +5468 27332 0.7960 +5468 28999 0.5070 +5468 29079 0.6980 +5468 50507 0.5420 +5468 50943 0.8730 +5468 50964 0.4060 +5468 51003 0.5100 +5468 51085 0.6850 +5468 51094 0.7400 +5468 51099 0.4970 +5468 51129 0.8750 +5468 51141 0.4820 +5468 51378 0.4020 +5468 51412 0.9010 +5468 51547 0.5590 +5468 51548 0.6050 +5468 51564 0.5830 +5468 51586 0.5870 +5468 51703 0.4250 +5468 51738 0.5280 +5468 51780 0.9000 +5468 51806 0.4160 +5468 53615 0.5160 +5468 54205 0.5960 +5468 54331 0.4080 +5468 54457 0.4650 +5468 54512 0.6720 +5468 54518 0.4060 +5468 54790 0.5320 +5468 54797 0.5110 +5468 54815 0.5260 +5468 54901 0.5930 +5468 55090 0.5190 +5468 55252 0.4510 +5468 55588 0.4990 +5468 55619 0.4750 +5468 55669 0.4080 +5468 55818 0.9870 +5468 55847 0.6000 +5468 55902 0.4620 +5468 56729 0.8580 +5468 57104 0.7690 +5468 57146 0.5060 +5468 57167 0.5690 +5468 57332 0.5160 +5468 57459 0.5190 +5468 57492 0.9060 +5468 57504 0.5190 +5468 57521 0.9370 +5468 57561 0.5140 +5468 57678 0.7090 +5468 57761 0.5050 +5468 57818 0.7000 +5468 59272 0.4200 +5468 60481 0.4290 +5468 63924 0.8500 +5468 63976 0.9960 +5468 64240 0.4140 +5468 64318 0.4530 +5468 64412 0.4030 +5468 64641 0.7900 +5468 65018 0.4010 +5468 79068 0.6090 +5468 79071 0.5100 +5468 79188 0.4140 +5468 79602 0.6310 +5468 79718 0.4630 +5468 79923 0.4840 +5468 80012 0.5170 +5468 80221 0.4860 +5468 80306 0.4990 +5468 80312 0.8420 +5468 80339 0.5210 +5468 80746 0.4160 +5468 81857 0.5150 +5468 83401 0.5570 +5468 84166 0.4390 +5468 84230 0.4340 +5468 84232 0.5200 +5468 84246 0.5250 +5468 84335 0.9180 +5468 84458 0.5810 +5468 84498 0.8110 +5468 84649 0.6540 +5468 84666 0.7820 +5468 84676 0.4680 +5468 84706 0.4280 +5468 84733 0.4990 +5468 84803 0.6250 +5468 85441 0.7110 +5468 89780 0.4360 +5468 90390 0.5380 +5468 90865 0.4470 +5468 92579 0.7090 +5468 96764 0.4890 +5468 112950 0.5210 +5468 114548 0.4940 +5468 114907 0.4110 +5468 114984 0.4180 +5468 116255 0.4270 +5468 116519 0.4410 +5468 121340 0.6090 +5468 126129 0.5860 +5468 129787 0.4870 +5468 132949 0.4380 +5468 133522 0.9210 +5468 135112 0.6140 +5468 137902 0.6610 +5468 139760 0.5360 +5468 149685 0.6250 +5468 151306 0.4180 +5468 152831 0.4940 +5468 164091 0.4390 +5468 168544 0.7980 +5468 169026 0.5700 +5468 200186 0.5620 +5468 219623 0.5350 +5468 221895 0.5770 +5468 252995 0.5780 +5468 255738 0.4320 +5468 257202 0.5930 +5468 338442 0.4320 +5468 338557 0.7010 +5468 376497 0.5870 +5468 400569 0.5210 +5468 440093 0.5080 +5468 440503 0.6160 +5468 440686 0.5030 +5468 493869 0.5990 +5468 653361 0.4090 +5468 653604 0.5030 +5468 729359 0.4770 +5468 100506658 0.4080 +5469 5566 0.9130 +5469 5567 0.9130 +5469 5568 0.9130 +5469 5595 0.5350 +5469 5599 0.9530 +5469 5600 0.9230 +5469 5601 0.9520 +5469 5603 0.9230 +5469 5859 0.7480 +5469 5886 0.4290 +5469 5887 0.4810 +5469 5914 0.9580 +5469 5915 0.9370 +5469 5916 0.6060 +5469 5917 0.7690 +5469 5927 0.5040 +5469 6046 0.6680 +5469 6059 0.4840 +5469 6095 0.5240 +5469 6096 0.5300 +5469 6097 0.5020 +5469 6122 0.9230 +5469 6123 0.9220 +5469 6124 0.9780 +5469 6125 0.9820 +5469 6128 0.9810 +5469 6129 0.8610 +5469 6130 0.9200 +5469 6132 0.9790 +5469 6135 0.9840 +5469 6136 0.8350 +5469 6137 0.9770 +5469 6138 0.9750 +5469 6139 0.9330 +5469 6141 0.9790 +5469 6142 0.9780 +5469 6143 0.9820 +5469 6144 0.9800 +5469 6146 0.9050 +5469 6147 0.9820 +5469 6150 0.7770 +5469 6152 0.9780 +5469 6154 0.9370 +5469 6155 0.9160 +5469 6156 0.9780 +5469 6157 0.9770 +5469 6158 0.9750 +5469 6159 0.9640 +5469 6160 0.9760 +5469 6161 0.6750 +5469 6164 0.9780 +5469 6165 0.9740 +5469 6166 0.8530 +5469 6167 0.9050 +5469 6168 0.9720 +5469 6169 0.9690 +5469 6170 0.9240 +5469 6173 0.8470 +5469 6175 0.9800 +5469 6176 0.9680 +5469 6181 0.9590 +5469 6182 0.9820 +5469 6183 0.9470 +5469 6184 0.4360 +5469 6187 0.9790 +5469 6188 0.9820 +5469 6189 0.9750 +5469 6191 0.8670 +5469 6192 0.8650 +5469 6193 0.8920 +5469 6194 0.9800 +5469 6198 0.9080 +5469 6199 0.9030 +5469 6201 0.9790 +5469 6202 0.9750 +5469 6203 0.9660 +5469 6204 0.9060 +5469 6205 0.9820 +5469 6206 0.8700 +5469 6207 0.9360 +5469 6208 0.9380 +5469 6209 0.9830 +5469 6210 0.7410 +5469 6217 0.9780 +5469 6218 0.9760 +5469 6222 0.9820 +5469 6223 0.9740 +5469 6224 0.9800 +5469 6227 0.9770 +5469 6228 0.9790 +5469 6229 0.9770 +5469 6230 0.9760 +5469 6231 0.9750 +5469 6232 0.9300 +5469 6233 0.9720 +5469 6234 0.9800 +5469 6235 0.9340 +5469 6256 0.9860 +5469 6257 0.7340 +5469 6258 0.7090 +5469 6300 0.9230 +5469 6391 0.4880 +5469 6517 0.5430 +5469 6604 0.4880 +5469 6648 0.5100 +5469 6651 0.4550 +5469 6667 0.9280 +5469 6687 0.5020 +5469 6714 0.9220 +5469 6720 0.6190 +5469 6729 0.8950 +5469 6734 0.6740 +5469 6822 0.4800 +5469 6837 0.9990 +5469 6872 0.8760 +5469 6873 0.8620 +5469 6874 0.8100 +5469 6877 0.8180 +5469 6878 0.8050 +5469 6879 0.8110 +5469 6880 0.8290 +5469 6881 0.8030 +5469 6882 0.8080 +5469 6883 0.8140 +5469 6884 0.8000 +5469 6897 0.4470 +5469 6907 0.6260 +5469 6908 0.9540 +5469 6924 0.4960 +5469 7025 0.5740 +5469 7067 0.9700 +5469 7068 0.7320 +5469 7101 0.5290 +5469 7157 0.9060 +5469 7158 0.4890 +5469 7178 0.7590 +5469 7181 0.5330 +5469 7182 0.5460 +5469 7264 0.4930 +5469 7284 0.9820 +5469 7296 0.4530 +5469 7311 0.9770 +5469 7314 0.4980 +5469 7316 0.4980 +5469 7376 0.8160 +5469 7391 0.8010 +5469 7392 0.8010 +5469 7403 0.6100 +5469 7404 0.5180 +5469 7407 0.6910 +5469 7818 0.8430 +5469 8013 0.4990 +5469 8019 0.4150 +5469 8192 0.4080 +5469 8202 0.9740 +5469 8204 0.7260 +5469 8225 0.8200 +5469 8242 0.5500 +5469 8266 0.5020 +5469 8284 0.4630 +5469 8294 0.8040 +5469 8295 0.4210 +5469 8359 0.8040 +5469 8360 0.8030 +5469 8361 0.9130 +5469 8362 0.8040 +5469 8363 0.8040 +5469 8364 0.8030 +5469 8366 0.8040 +5469 8367 0.8040 +5469 8368 0.8040 +5469 8370 0.8040 +5469 8396 0.4200 +5469 8431 0.6350 +5469 8464 0.6320 +5469 8565 0.4590 +5469 8568 0.5560 +5469 8624 0.6370 +5469 8638 0.4980 +5469 8648 0.8980 +5469 8666 0.4130 +5469 8841 0.5650 +5469 8856 0.6560 +5469 8886 0.5550 +5469 8970 0.8050 +5469 9045 0.9800 +5469 9069 0.4650 +5469 9086 0.7590 +5469 9132 0.5080 +5469 9141 0.6020 +5469 9147 0.5230 +5469 9282 0.9990 +5469 9312 0.5080 +5469 9325 0.9940 +5469 9343 0.8490 +5469 9349 0.9820 +5469 9370 0.5930 +5469 9412 0.9980 +5469 9439 0.9990 +5469 9440 0.9990 +5469 9441 0.9990 +5469 9442 0.9990 +5469 9443 0.9980 +5469 9444 0.9940 +5469 9477 0.9990 +5469 9533 0.8480 +5469 9553 0.9800 +5469 9572 0.5430 +5469 9611 0.8110 +5469 9612 0.8170 +5469 9617 0.5110 +5469 9623 0.7360 +5469 9636 0.4990 +5469 9669 0.9460 +5469 9732 0.9220 +5469 9774 0.6730 +5469 9801 0.9810 +5469 9858 0.8210 +5469 9862 0.9990 +5469 9900 0.4030 +5469 9913 0.6280 +5469 9967 0.9540 +5469 9968 0.9990 +5469 9969 0.9990 +5469 9970 0.9310 +5469 9971 0.8950 +5469 9975 0.5570 +5469 10001 0.9990 +5469 10002 0.5650 +5469 10025 0.9990 +5469 10061 0.5790 +5469 10062 0.8670 +5469 10102 0.7700 +5469 10135 0.5070 +5469 10201 0.4010 +5469 10320 0.4400 +5469 10399 0.9170 +5469 10412 0.8750 +5469 10473 0.8400 +5469 10498 0.9440 +5469 10499 0.7740 +5469 10537 0.4980 +5469 10557 0.7850 +5469 10615 0.4730 +5469 10661 0.4260 +5469 10667 0.4630 +5469 10730 0.5330 +5469 10765 0.4950 +5469 10891 0.8300 +5469 10939 0.5050 +5469 10964 0.4560 +5469 10969 0.7620 +5469 10985 0.8710 +5469 10988 0.7830 +5469 11128 0.8560 +5469 11222 0.8900 +5469 11224 0.9820 +5469 22927 0.7500 +5469 22984 0.9760 +5469 23054 0.8870 +5469 23076 0.5630 +5469 23091 0.9940 +5469 23097 0.9990 +5469 23135 0.5550 +5469 23148 0.5700 +5469 23173 0.7860 +5469 23204 0.7390 +5469 23246 0.7660 +5469 23252 0.8170 +5469 23309 0.5540 +5469 23389 0.9760 +5469 23395 0.4270 +5469 23405 0.6800 +5469 23423 0.4390 +5469 23476 0.8890 +5469 23480 0.4760 +5469 23481 0.7930 +5469 23517 0.4070 +5469 23521 0.9370 +5469 23523 0.4520 +5469 23560 0.7340 +5469 23640 0.8290 +5469 23732 0.6380 +5469 24140 0.4300 +5469 25873 0.9760 +5469 25885 0.8540 +5469 25942 0.6200 +5469 26135 0.7610 +5469 26155 0.7690 +5469 26156 0.6230 +5469 26164 0.4700 +5469 26227 0.4220 +5469 26230 0.4020 +5469 26251 0.5080 +5469 26271 0.5160 +5469 26289 0.5480 +5469 26354 0.5860 +5469 26589 0.8760 +5469 27012 0.5080 +5469 27063 0.4330 +5469 27349 0.4140 +5469 27430 0.5000 +5469 28998 0.8900 +5469 29079 0.9990 +5469 29088 0.6140 +5469 29093 0.8900 +5469 29102 0.5920 +5469 29789 0.4200 +5469 29841 0.4180 +5469 29889 0.5040 +5469 29927 0.9070 +5469 29959 0.5040 +5469 29960 0.4270 +5469 29978 0.4160 +5469 29979 0.4200 +5469 29982 0.4990 +5469 29997 0.7580 +5469 50613 0.4080 +5469 50808 0.5520 +5469 50814 0.4930 +5469 51003 0.9960 +5469 51014 0.4380 +5469 51021 0.9810 +5469 51023 0.6300 +5469 51065 0.9290 +5469 51068 0.5300 +5469 51069 0.8890 +5469 51073 0.8900 +5469 51081 0.8900 +5469 51116 0.8240 +5469 51119 0.5360 +5469 51121 0.9370 +5469 51129 0.5410 +5469 51149 0.9350 +5469 51154 0.9520 +5469 51187 0.8600 +5469 51224 0.4630 +5469 51263 0.5490 +5469 51264 0.9720 +5469 51314 0.4190 +5469 51319 0.8680 +5469 51388 0.8020 +5469 51398 0.4290 +5469 51520 0.4030 +5469 51586 0.9990 +5469 51727 0.5490 +5469 51755 0.5480 +5469 54148 0.4470 +5469 54464 0.4260 +5469 54516 0.5100 +5469 54552 0.5920 +5469 54663 0.7560 +5469 54797 0.9990 +5469 54948 0.8300 +5469 54965 0.4400 +5469 54995 0.4280 +5469 55052 0.9800 +5469 55090 0.9980 +5469 55143 0.4740 +5469 55157 0.4640 +5469 55168 0.6400 +5469 55173 0.9470 +5469 55176 0.9060 +5469 55193 0.4820 +5469 55272 0.9440 +5469 55294 0.5330 +5469 55299 0.7730 +5469 55316 0.9330 +5469 55324 0.5870 +5469 55341 0.5180 +5469 55588 0.9990 +5469 55591 0.7820 +5469 55619 0.4750 +5469 55651 0.7750 +5469 55699 0.4540 +5469 55703 0.8750 +5469 55759 0.7720 +5469 55854 0.4610 +5469 55893 0.4280 +5469 56474 0.5290 +5469 56479 0.5080 +5469 56648 0.8360 +5469 56893 0.4240 +5469 56965 0.7130 +5469 57038 0.4720 +5469 57129 0.8480 +5469 57136 0.4510 +5469 57176 0.4150 +5469 57448 0.4980 +5469 57471 0.4870 +5469 57761 0.4210 +5469 58505 0.4330 +5469 60488 0.8240 +5469 60558 0.8230 +5469 63875 0.9830 +5469 63931 0.8910 +5469 63976 0.4360 +5469 64146 0.8190 +5469 64318 0.7620 +5469 64324 0.4230 +5469 64374 0.8300 +5469 64960 0.8830 +5469 64963 0.8900 +5469 64965 0.9830 +5469 64968 0.9810 +5469 64969 0.9440 +5469 64975 0.8240 +5469 64976 0.7420 +5469 64978 0.4730 +5469 64979 0.9820 +5469 64981 0.8590 +5469 64983 0.9810 +5469 65003 0.8290 +5469 65005 0.9810 +5469 65008 0.8890 +5469 65080 0.5730 +5469 65121 0.6090 +5469 65122 0.6090 +5469 65993 0.4010 +5469 79036 0.4290 +5469 79159 0.4220 +5469 79590 0.8900 +5469 79631 0.8530 +5469 79668 0.7130 +5469 79718 0.6270 +5469 79871 0.6130 +5469 79991 0.9940 +5469 80135 0.7710 +5469 80146 0.4930 +5469 80205 0.7020 +5469 80222 0.4400 +5469 80270 0.4890 +5469 80306 0.9990 +5469 81857 0.9990 +5469 83860 0.8090 +5469 84154 0.4940 +5469 84172 0.8730 +5469 84246 0.9970 +5469 84273 0.4970 +5469 84340 0.4330 +5469 84365 0.7850 +5469 84498 0.5740 +5469 84545 0.8560 +5469 84549 0.7680 +5469 84705 0.4310 +5469 84955 0.6240 +5469 84993 0.4420 +5469 85441 0.6120 +5469 85476 0.8470 +5469 85865 0.4750 +5469 87178 0.4650 +5469 90390 0.9990 +5469 90624 0.4650 +5469 91408 0.4920 +5469 91574 0.5100 +5469 91875 0.5290 +5469 91893 0.4380 +5469 92170 0.5010 +5469 92196 0.6180 +5469 92399 0.9250 +5469 93107 0.5080 +5469 93517 0.4890 +5469 93550 0.4980 +5469 96764 0.7730 +5469 112950 0.9990 +5469 114781 0.4560 +5469 114987 0.9160 +5469 115416 0.4290 +5469 116519 0.4730 +5469 116541 0.4060 +5469 116832 0.9240 +5469 116931 0.9660 +5469 117246 0.7710 +5469 121504 0.8030 +5469 122481 0.5480 +5469 123283 0.4360 +5469 124454 0.7420 +5469 126382 0.5110 +5469 126402 0.8880 +5469 126961 0.8180 +5469 129685 0.8080 +5469 133522 0.9170 +5469 140032 0.8650 +5469 140801 0.9030 +5469 143244 0.8360 +5469 143630 0.4080 +5469 146212 0.5400 +5469 148022 0.4370 +5469 149478 0.4560 +5469 157310 0.4690 +5469 158067 0.5480 +5469 161882 0.5860 +5469 164153 0.4980 +5469 169522 0.5080 +5469 170850 0.5080 +5469 200916 0.9040 +5469 201595 0.6090 +5469 219927 0.9810 +5469 221078 0.5390 +5469 221264 0.5480 +5469 254268 0.9050 +5469 256643 0.5400 +5469 283518 0.5080 +5469 285855 0.8610 +5469 333932 0.8180 +5469 342538 0.5700 +5469 343068 0.6090 +5469 343070 0.6090 +5469 345051 0.6380 +5469 347487 0.9280 +5469 353376 0.4370 +5469 374659 0.8640 +5469 376497 0.5340 +5469 387129 0.8590 +5469 387712 0.5290 +5469 390999 0.6090 +5469 391002 0.6090 +5469 400569 0.9970 +5469 400735 0.6090 +5469 400736 0.6090 +5469 404672 0.8000 +5469 440560 0.6090 +5469 440561 0.6090 +5469 441873 0.6090 +5469 554313 0.8040 +5469 641776 0.7370 +5469 643909 0.7370 +5469 645051 0.6730 +5469 645073 0.6730 +5469 645359 0.6090 +5469 653604 0.8610 +5469 653619 0.6090 +5469 728524 0.7370 +5469 729396 0.6730 +5469 729422 0.6730 +5469 729428 0.6730 +5469 729431 0.6730 +5469 729442 0.6730 +5469 729447 0.6730 +5469 729528 0.6090 +5469 100008586 0.6730 +5469 100128731 0.4550 +5469 100132399 0.6730 +5469 100287482 0.8210 +5469 100302736 0.4370 +5469 100505478 0.8420 +5469 100526842 0.9320 +5469 100529097 0.8470 +5469 100529239 0.9040 +5469 100996746 0.7370 +5469 101929983 0.6090 +5469 102724473 0.6730 +5469 105180390 0.7370 +5469 105180391 0.7370 +5469 114483834 0.5960 +5470 5520 0.4870 +5470 5521 0.4870 +5470 5721 0.4140 +5470 6010 0.7310 +5470 6992 0.4780 +5470 9576 0.4960 +5470 9626 0.4470 +5470 22858 0.4160 +5470 26049 0.4210 +5470 26073 0.4320 +5470 26103 0.5330 +5470 26273 0.4320 +5470 27163 0.6450 +5470 29894 0.4020 +5470 53632 0.4790 +5470 80335 0.4380 +5470 84288 0.5550 +5470 85366 0.4450 +5470 114327 0.4340 +5470 132160 0.4160 +5470 136332 0.4210 +5470 140767 0.9720 +5470 151987 0.4080 +5470 339965 0.4850 +5470 340745 0.6170 +5470 645545 0.4130 +5471 5571 0.4450 +5471 5631 0.9750 +5471 5634 0.9750 +5471 5723 0.6040 +5471 5805 0.4750 +5471 5832 0.4960 +5471 6059 0.4570 +5471 6240 0.4350 +5471 6389 0.4330 +5471 6391 0.4090 +5471 6470 0.8870 +5471 6472 0.8630 +5471 6888 0.6390 +5471 7083 0.5080 +5471 7086 0.5580 +5471 7153 0.4540 +5471 7298 0.7120 +5471 7372 0.7830 +5471 7498 0.4470 +5471 8277 0.5270 +5471 8458 0.4410 +5471 8833 0.8860 +5471 9391 0.5830 +5471 9401 0.4590 +5471 9563 0.5780 +5471 9615 0.4780 +5471 9945 0.9370 +5471 9962 0.4270 +5471 9963 0.4270 +5471 10606 0.9990 +5471 10797 0.7260 +5471 11128 0.4760 +5471 11164 0.5120 +5471 25796 0.4250 +5471 25885 0.5940 +5471 25902 0.8450 +5471 26227 0.4940 +5471 27165 0.9380 +5471 28987 0.6980 +5471 29968 0.6120 +5471 51026 0.4260 +5471 51292 0.5360 +5471 51422 0.4360 +5471 51557 0.6170 +5471 51647 0.7150 +5471 51750 0.4160 +5471 53632 0.4360 +5471 54870 0.5300 +5471 54995 0.4710 +5471 55152 0.5290 +5471 55191 0.4210 +5471 55247 0.4080 +5471 55276 0.7420 +5471 55278 0.7000 +5471 55703 0.4670 +5471 56474 0.6830 +5471 56952 0.4060 +5471 57050 0.4090 +5471 64210 0.8200 +5471 64428 0.4560 +5471 79073 0.8460 +5471 80347 0.4450 +5471 83447 0.4020 +5471 83549 0.4420 +5471 83990 0.4030 +5471 84076 0.5380 +5471 84172 0.5400 +5471 89894 0.7000 +5471 91875 0.4960 +5471 92399 0.4060 +5471 122622 0.7990 +5471 127845 0.4060 +5471 130589 0.4040 +5471 158584 0.6940 +5471 221823 0.9660 +5471 283985 0.5880 +5471 441024 0.5270 +5473 5551 0.4360 +5473 5595 0.4310 +5473 5788 0.4260 +5473 5901 0.6420 +5473 6279 0.4270 +5473 6283 0.5640 +5473 6288 0.5370 +5473 6289 0.5280 +5473 6346 0.6750 +5473 6347 0.6530 +5473 6348 0.7050 +5473 6351 0.8420 +5473 6354 0.4730 +5473 6355 0.9970 +5473 6356 0.4250 +5473 6357 0.9980 +5473 6358 0.4560 +5473 6360 0.6570 +5473 6361 0.7130 +5473 6362 0.6940 +5473 6363 0.8180 +5473 6364 0.8140 +5473 6366 0.9980 +5473 6367 0.7090 +5473 6368 0.4310 +5473 6369 0.4530 +5473 6370 0.6640 +5473 6372 0.9970 +5473 6373 0.9990 +5473 6374 0.8330 +5473 6375 0.4040 +5473 6376 0.6940 +5473 6387 0.9990 +5473 6402 0.4690 +5473 6403 0.8870 +5473 6404 0.4530 +5473 6696 0.5250 +5473 6714 0.5920 +5473 6750 0.4160 +5473 7040 0.4300 +5473 7056 0.4630 +5473 7057 0.4210 +5473 7076 0.4240 +5473 7077 0.5000 +5473 7124 0.5530 +5473 7412 0.4520 +5473 7450 0.7730 +5473 7852 0.9630 +5473 9034 0.4430 +5473 9547 0.9960 +5473 9934 0.5080 +5473 10344 0.9950 +5473 10563 0.8530 +5473 10663 0.8390 +5473 10803 0.7030 +5473 10850 0.6760 +5473 23218 0.4020 +5473 27074 0.4110 +5473 29126 0.4290 +5473 30009 0.4030 +5473 51206 0.4890 +5473 51266 0.5550 +5473 56477 0.9970 +5473 57007 0.6230 +5473 58191 0.7080 +5473 60489 0.4720 +5473 63940 0.4370 +5473 64407 0.4900 +5473 81027 0.6860 +5473 85480 0.5210 +5473 164668 0.4150 +5473 340205 0.4970 +5475 5506 0.4120 +5475 5518 0.5140 +5475 5519 0.4590 +5475 5520 0.5630 +5475 5521 0.5230 +5475 5524 0.4450 +5475 5525 0.4790 +5475 5526 0.4580 +5475 5527 0.4460 +5475 5528 0.4470 +5475 5529 0.4200 +5475 6010 0.9240 +5475 6792 0.7740 +5475 6992 0.4780 +5475 7732 0.4010 +5475 8909 0.5400 +5475 9701 0.4380 +5475 9989 0.5320 +5475 10137 0.4130 +5475 10389 0.8540 +5475 22870 0.4870 +5475 23195 0.4590 +5475 26073 0.4320 +5475 26273 0.4320 +5475 27163 0.4650 +5475 29894 0.4020 +5475 30968 0.5270 +5475 51132 0.4050 +5475 51806 0.5790 +5475 55291 0.4120 +5475 55671 0.4520 +5475 57198 0.4330 +5475 57223 0.4280 +5475 57718 0.5230 +5475 64083 0.9200 +5475 79645 0.4150 +5475 80335 0.4380 +5475 83605 0.4480 +5475 91860 0.5740 +5475 136332 0.4210 +5475 142689 0.4980 +5475 151987 0.5350 +5475 163688 0.5690 +5475 170394 0.4390 +5475 645545 0.4130 +5476 5547 0.5020 +5476 5641 0.4930 +5476 5660 0.5230 +5476 6400 0.4170 +5476 7174 0.4560 +5476 7311 0.4670 +5476 7314 0.4280 +5476 7942 0.4660 +5476 8451 0.4230 +5476 8722 0.5320 +5476 8883 0.6030 +5476 9039 0.5480 +5476 9040 0.6130 +5476 9146 0.4080 +5476 10213 0.5820 +5476 10404 0.5060 +5476 10675 0.5220 +5476 10825 0.5860 +5476 10956 0.5900 +5476 10987 0.4740 +5476 23231 0.4040 +5476 27248 0.5210 +5476 29887 0.4210 +5476 29952 0.4720 +5476 51009 0.4080 +5476 54363 0.4750 +5476 56257 0.4330 +5476 57192 0.5750 +5476 59342 0.4100 +5476 64170 0.4210 +5476 79139 0.4360 +5476 79411 0.6360 +5476 79753 0.4240 +5476 80343 0.4040 +5476 81631 0.5680 +5476 84447 0.4720 +5476 91319 0.4080 +5476 129807 0.8060 +5476 150365 0.6490 +5476 157310 0.5620 +5476 161823 0.5400 +5478 5479 0.5080 +5478 5481 0.9190 +5478 5530 0.9850 +5478 5532 0.5570 +5478 5534 0.9850 +5478 5618 0.5390 +5478 5757 0.7880 +5478 5901 0.7730 +5478 5902 0.7870 +5478 5903 0.5010 +5478 6122 0.6310 +5478 6124 0.7140 +5478 6128 0.4840 +5478 6129 0.6790 +5478 6132 0.4860 +5478 6133 0.4430 +5478 6135 0.4890 +5478 6136 0.4260 +5478 6137 0.5960 +5478 6138 0.5790 +5478 6141 0.4500 +5478 6142 0.4320 +5478 6143 0.6830 +5478 6144 0.5260 +5478 6147 0.7250 +5478 6154 0.4440 +5478 6155 0.4580 +5478 6161 0.5770 +5478 6175 0.7410 +5478 6176 0.6010 +5478 6188 0.5540 +5478 6189 0.5170 +5478 6194 0.6470 +5478 6201 0.4460 +5478 6203 0.5580 +5478 6204 0.4160 +5478 6205 0.5970 +5478 6206 0.4310 +5478 6207 0.5020 +5478 6208 0.6450 +5478 6209 0.5720 +5478 6222 0.5880 +5478 6223 0.5210 +5478 6224 0.4490 +5478 6228 0.4790 +5478 6230 0.4050 +5478 6233 0.5220 +5478 6234 0.4110 +5478 6389 0.4750 +5478 6613 0.6570 +5478 6622 0.5400 +5478 6633 0.4640 +5478 6634 0.5620 +5478 6637 0.4070 +5478 6647 0.6430 +5478 6648 0.5670 +5478 6727 0.5260 +5478 6775 0.7680 +5478 6786 0.6820 +5478 6876 0.4590 +5478 6907 0.4150 +5478 6908 0.5980 +5478 6921 0.4210 +5478 6923 0.4820 +5478 6925 0.4110 +5478 6950 0.5270 +5478 7001 0.4280 +5478 7124 0.4570 +5478 7155 0.4990 +5478 7157 0.6140 +5478 7167 0.6360 +5478 7184 0.6300 +5478 7295 0.6810 +5478 7314 0.5070 +5478 7316 0.6890 +5478 7334 0.4160 +5478 7375 0.7240 +5478 7416 0.4180 +5478 7431 0.4220 +5478 7529 0.4330 +5478 7534 0.5900 +5478 7837 0.4670 +5478 7852 0.4030 +5478 8065 0.5120 +5478 8329 0.6540 +5478 8331 0.6590 +5478 8334 0.6560 +5478 8337 0.6810 +5478 8338 0.6790 +5478 8407 0.7190 +5478 8451 0.4260 +5478 8468 0.5380 +5478 9076 0.5300 +5478 9123 0.4280 +5478 9129 0.8300 +5478 9131 0.9300 +5478 9349 0.5940 +5478 9555 0.6560 +5478 9588 0.4390 +5478 9616 0.4400 +5478 9641 0.4980 +5478 9704 0.4070 +5478 9775 0.4450 +5478 9846 0.4280 +5478 9939 0.4180 +5478 9972 0.7140 +5478 10045 0.6700 +5478 10105 0.5070 +5478 10146 0.4430 +5478 10376 0.6660 +5478 10399 0.5560 +5478 10443 0.4680 +5478 10487 0.5070 +5478 10551 0.5100 +5478 10594 0.5550 +5478 10891 0.4620 +5478 11052 0.7610 +5478 11168 0.4900 +5478 11222 0.4840 +5478 11315 0.5410 +5478 22938 0.4340 +5478 23435 0.4810 +5478 23521 0.7270 +5478 23534 0.5880 +5478 23541 0.4730 +5478 23586 0.6820 +5478 23621 0.4340 +5478 23759 0.4250 +5478 23770 0.5040 +5478 25939 0.5690 +5478 26589 0.4180 +5478 27316 0.6680 +5478 27339 0.5350 +5478 28998 0.4980 +5478 29110 0.5160 +5478 30816 0.5420 +5478 50852 0.5930 +5478 51121 0.4060 +5478 51314 0.4070 +5478 51329 0.4490 +5478 51806 0.4570 +5478 54205 0.4070 +5478 54458 0.4720 +5478 54596 0.4310 +5478 55217 0.4750 +5478 55234 0.4620 +5478 55506 0.6540 +5478 55766 0.6540 +5478 55966 0.6700 +5478 57129 0.4400 +5478 57506 0.4770 +5478 60489 0.5320 +5478 63875 0.4400 +5478 64135 0.6460 +5478 65003 0.4740 +5478 79590 0.4490 +5478 80221 0.4440 +5478 80781 0.4040 +5478 84220 0.6070 +5478 84545 0.4240 +5478 84950 0.4760 +5478 85363 0.8990 +5478 91860 0.4520 +5478 92170 0.4370 +5478 92815 0.6540 +5478 94239 0.7120 +5478 115416 0.4470 +5478 137902 0.4590 +5478 149013 0.4770 +5478 153527 0.4390 +5478 163688 0.4520 +5478 219927 0.4500 +5478 221613 0.6610 +5478 285190 0.5560 +5478 317772 0.6540 +5478 345456 0.5090 +5478 375189 0.5370 +5478 405754 0.4870 +5478 474381 0.6540 +5478 474382 0.6540 +5478 642489 0.7900 +5478 653489 0.6200 +5478 727851 0.5500 +5478 728378 0.4510 +5478 729540 0.6070 +5478 729857 0.8840 +5479 5589 0.4860 +5479 5595 0.4830 +5479 5611 0.4420 +5479 5617 0.6200 +5479 5822 0.5760 +5479 5902 0.5580 +5479 6122 0.4390 +5479 6143 0.4150 +5479 6175 0.5420 +5479 6184 0.6070 +5479 6185 0.5780 +5479 6189 0.4660 +5479 6201 0.4390 +5479 6203 0.4150 +5479 6205 0.4660 +5479 6207 0.4020 +5479 6222 0.4660 +5479 6223 0.4180 +5479 6228 0.4170 +5479 6382 0.5160 +5479 6388 0.5080 +5479 6389 0.4510 +5479 6499 0.4680 +5479 6648 0.5100 +5479 6746 0.4620 +5479 6748 0.6830 +5479 6774 0.5760 +5479 6876 0.4770 +5479 6908 0.4080 +5479 7157 0.4760 +5479 7184 0.9940 +5479 7316 0.5120 +5479 7373 0.5460 +5479 7407 0.4730 +5479 8347 0.4080 +5479 8468 0.7680 +5479 8565 0.5150 +5479 8602 0.5710 +5479 8904 0.4040 +5479 8974 0.4760 +5479 9136 0.4640 +5479 9277 0.6140 +5479 9588 0.4300 +5479 9601 0.9940 +5479 9631 0.4330 +5479 9695 0.4120 +5479 9790 0.6230 +5479 9871 0.5570 +5479 10045 0.6850 +5479 10130 0.8490 +5479 10199 0.5680 +5479 10399 0.4150 +5479 10430 0.4880 +5479 10465 0.4280 +5479 10491 0.9990 +5479 10525 0.9300 +5479 10528 0.5240 +5479 10536 0.5550 +5479 10550 0.4190 +5479 10551 0.4290 +5479 10594 0.4550 +5479 10607 0.6900 +5479 10609 0.8390 +5479 10653 0.4290 +5479 10813 0.4010 +5479 10885 0.5290 +5479 10956 0.7420 +5479 10961 0.5880 +5479 11103 0.4020 +5479 11260 0.5320 +5479 11315 0.5460 +5479 11316 0.4220 +5479 22984 0.4800 +5479 23160 0.5290 +5479 23517 0.4010 +5479 23521 0.4890 +5479 23621 0.4150 +5479 23753 0.7780 +5479 25879 0.4320 +5479 25983 0.4130 +5479 26574 0.5170 +5479 27340 0.5480 +5479 27341 0.5560 +5479 30836 0.4140 +5479 50509 0.5440 +5479 51095 0.4100 +5479 51096 0.6140 +5479 51124 0.4030 +5479 51303 0.5230 +5479 51360 0.4980 +5479 51602 0.5290 +5479 51661 0.4320 +5479 51726 0.9550 +5479 51741 0.4020 +5479 54059 0.4630 +5479 54431 0.7220 +5479 54557 0.5430 +5479 54596 0.4280 +5479 54808 0.4450 +5479 55033 0.4210 +5479 55127 0.6190 +5479 55151 0.6980 +5479 55214 0.6390 +5479 55226 0.6420 +5479 55813 0.6420 +5479 55966 0.7180 +5479 56886 0.5800 +5479 57038 0.4200 +5479 57050 0.4660 +5479 57085 0.4660 +5479 57176 0.4100 +5479 57642 0.5670 +5479 58505 0.4480 +5479 60681 0.8570 +5479 64175 0.9990 +5479 65083 0.6360 +5479 79050 0.6000 +5479 79954 0.4100 +5479 80020 0.4240 +5479 80781 0.4990 +5479 81578 0.6290 +5479 84128 0.6120 +5479 84135 0.6280 +5479 84220 0.4900 +5479 84570 0.5460 +5479 84916 0.6350 +5479 84939 0.4410 +5479 85301 0.5930 +5479 90993 0.5340 +5479 91522 0.5460 +5479 92856 0.5650 +5479 121340 0.4740 +5479 125972 0.4800 +5479 131873 0.5560 +5479 136227 0.5350 +5479 139221 0.4410 +5479 169044 0.5770 +5479 200185 0.5210 +5479 255631 0.5490 +5479 285190 0.4420 +5479 286451 0.4270 +5479 340267 0.6370 +5479 345630 0.6780 +5479 374291 0.4460 +5479 387733 0.5920 +5479 642489 0.5910 +5479 653489 0.5000 +5479 727851 0.4370 +5479 728317 0.4410 +5479 728378 0.4080 +5479 729540 0.4900 +5479 729857 0.5190 +5480 5816 0.4870 +5480 5822 0.5730 +5480 5902 0.5760 +5480 6189 0.4460 +5480 6201 0.4180 +5480 6205 0.4140 +5480 6748 0.4040 +5480 7407 0.4650 +5480 8565 0.5120 +5480 8602 0.5730 +5480 8974 0.5300 +5480 9136 0.4570 +5480 9277 0.6110 +5480 9588 0.4060 +5480 9631 0.4240 +5480 9724 0.4010 +5480 9790 0.6230 +5480 10199 0.5640 +5480 10399 0.4150 +5480 10528 0.4780 +5480 10607 0.6890 +5480 10813 0.4040 +5480 10885 0.5310 +5480 11103 0.4040 +5480 11260 0.5320 +5480 11328 0.5250 +5480 22984 0.4830 +5480 23160 0.5300 +5480 23251 0.4570 +5480 23405 0.4110 +5480 23517 0.4020 +5480 25879 0.4170 +5480 25983 0.4160 +5480 26574 0.5150 +5480 27340 0.5500 +5480 27341 0.5530 +5480 51095 0.4180 +5480 51096 0.6160 +5480 51602 0.5300 +5480 51661 0.4280 +5480 51806 0.5110 +5480 55127 0.6190 +5480 55226 0.6450 +5480 55813 0.6310 +5480 57038 0.4250 +5480 57050 0.4460 +5480 57124 0.4500 +5480 57176 0.4090 +5480 65083 0.6370 +5480 79050 0.6010 +5480 79954 0.4100 +5480 84128 0.6130 +5480 84135 0.6280 +5480 84220 0.4810 +5480 84916 0.6300 +5480 84939 0.4410 +5480 91860 0.5100 +5480 92856 0.5600 +5480 139221 0.4420 +5480 163688 0.5100 +5480 285190 0.4320 +5480 345630 0.6790 +5480 374291 0.4450 +5480 493869 0.4300 +5480 642489 0.4140 +5480 653489 0.4890 +5480 727851 0.4280 +5480 728317 0.4410 +5480 729540 0.4810 +5480 729857 0.4280 +5481 5536 0.5960 +5481 5594 0.5940 +5481 5595 0.4770 +5481 6188 0.4380 +5481 6271 0.7380 +5481 6277 0.5500 +5481 6449 0.4770 +5481 6648 0.5340 +5481 6687 0.6820 +5481 6774 0.4430 +5481 7157 0.9340 +5481 7248 0.6100 +5481 7265 0.4810 +5481 7266 0.5090 +5481 7268 0.7830 +5481 7389 0.4260 +5481 7416 0.9930 +5481 7417 0.9360 +5481 7419 0.9360 +5481 7818 0.4530 +5481 8453 0.6650 +5481 9172 0.4630 +5481 9349 0.4890 +5481 9360 0.4610 +5481 9868 0.5820 +5481 9927 0.4040 +5481 10105 0.9500 +5481 10131 0.6880 +5481 10273 0.5970 +5481 10294 0.5840 +5481 10399 0.7200 +5481 10465 0.4600 +5481 10469 0.4390 +5481 10598 0.9500 +5481 10728 0.9720 +5481 10891 0.4100 +5481 10963 0.9690 +5481 11080 0.5590 +5481 11140 0.8950 +5481 11222 0.5180 +5481 22938 0.4130 +5481 23264 0.4270 +5481 23307 0.4060 +5481 23331 0.4180 +5481 23640 0.6180 +5481 25822 0.5500 +5481 26523 0.7610 +5481 26589 0.5140 +5481 27101 0.4270 +5481 27339 0.4540 +5481 28998 0.5610 +5481 29066 0.4300 +5481 29083 0.4120 +5481 51069 0.4690 +5481 51806 0.5470 +5481 54205 0.4770 +5481 54557 0.4420 +5481 54970 0.4180 +5481 55011 0.5260 +5481 55178 0.4340 +5481 55664 0.6810 +5481 55669 0.4090 +5481 57060 0.5010 +5481 57129 0.4800 +5481 63875 0.4890 +5481 63943 0.4720 +5481 64374 0.6530 +5481 65003 0.4990 +5481 79590 0.4930 +5481 80221 0.4900 +5481 80777 0.4320 +5481 81570 0.4940 +5481 83447 0.9480 +5481 84545 0.4740 +5481 84705 0.4090 +5481 91860 0.5470 +5481 92170 0.4440 +5481 96459 0.5680 +5481 115416 0.4250 +5481 124637 0.4210 +5481 163688 0.5470 +5481 219927 0.5000 +5481 374407 0.5500 +5481 642489 0.4500 +5481 100885848 0.5090 +5481 100885850 0.5090 +5493 5511 0.4070 +5493 5692 0.4230 +5493 5962 0.5240 +5493 6627 0.4250 +5493 6692 0.5060 +5493 6698 0.6150 +5493 6699 0.6690 +5493 6700 0.5650 +5493 6701 0.5890 +5493 6703 0.5650 +5493 6704 0.5460 +5493 6705 0.5350 +5493 6706 0.5500 +5493 6707 0.6690 +5493 7051 0.8400 +5493 7052 0.4570 +5493 7062 0.6300 +5493 7095 0.4020 +5493 7430 0.9570 +5493 7431 0.6360 +5493 8416 0.6420 +5493 8502 0.6120 +5493 8796 0.4320 +5493 9333 0.5860 +5493 10384 0.5690 +5493 10653 0.4070 +5493 11118 0.5770 +5493 11119 0.9320 +5493 11187 0.7970 +5493 23254 0.9800 +5493 23581 0.5790 +5493 26239 0.5070 +5493 27134 0.4090 +5493 29855 0.5870 +5493 51535 0.8950 +5493 57716 0.9730 +5493 79026 0.9630 +5493 83481 0.6920 +5493 84283 0.5420 +5493 84648 0.5090 +5493 84875 0.4100 +5493 126638 0.6940 +5493 144568 0.7210 +5493 147409 0.6440 +5493 149018 0.5470 +5493 199834 0.4990 +5493 254910 0.4990 +5493 353131 0.5430 +5493 353132 0.5060 +5493 353133 0.4990 +5493 353134 0.4990 +5493 353135 0.4990 +5493 353137 0.4990 +5493 353139 0.5070 +5493 353140 0.5000 +5493 353141 0.4990 +5493 353142 0.5320 +5493 353143 0.5140 +5493 353144 0.5260 +5493 353145 0.4990 +5493 388698 0.5520 +5493 390792 0.5910 +5493 448835 0.5070 +5494 5495 0.7910 +5494 5499 0.6280 +5494 5500 0.4050 +5494 5532 0.4070 +5494 5537 0.4510 +5494 5562 0.6540 +5494 5563 0.5960 +5494 5564 0.5670 +5494 5565 0.4890 +5494 5571 0.4720 +5494 5594 0.5930 +5494 5595 0.4470 +5494 5606 0.9220 +5494 5608 0.9140 +5494 5609 0.9160 +5494 6048 0.4940 +5494 6416 0.9460 +5494 6519 0.4520 +5494 6794 0.4290 +5494 6885 0.4720 +5494 7040 0.5320 +5494 7046 0.4070 +5494 7157 0.5020 +5494 7867 0.4220 +5494 8312 0.4030 +5494 8498 0.6320 +5494 8550 0.4270 +5494 9261 0.4050 +5494 9350 0.4350 +5494 9397 0.4410 +5494 9573 0.4460 +5494 10001 0.4680 +5494 10454 0.4490 +5494 11255 0.4930 +5494 23539 0.4930 +5494 23592 0.4020 +5494 25932 0.7510 +5494 26994 0.5950 +5494 29072 0.4680 +5494 29110 0.4220 +5494 29800 0.4180 +5494 29903 0.4520 +5494 51422 0.4290 +5494 51496 0.4420 +5494 53632 0.4240 +5494 54704 0.7420 +5494 56888 0.6200 +5494 64063 0.4290 +5494 79065 0.4050 +5494 79102 0.4620 +5494 79671 0.5260 +5494 79844 0.4470 +5494 80012 0.4020 +5494 81792 0.4530 +5494 81844 0.4580 +5494 84851 0.6980 +5494 115727 0.4330 +5494 123263 0.4190 +5494 147699 0.4450 +5494 160760 0.8260 +5494 197358 0.4760 +5494 219699 0.4320 +5494 333926 0.4620 +5494 375298 0.4480 +5494 440163 0.4200 +5495 5496 0.4970 +5495 5499 0.4770 +5495 5500 0.5400 +5495 5501 0.4900 +5495 5515 0.7120 +5495 5516 0.7940 +5495 5530 0.4520 +5495 5531 0.4550 +5495 5536 0.5480 +5495 5537 0.4840 +5495 5550 0.4950 +5495 5573 0.5080 +5495 5770 0.4670 +5495 5771 0.5650 +5495 5903 0.6470 +5495 6238 0.5200 +5495 6464 0.5040 +5495 6519 0.9680 +5495 6597 0.4130 +5495 6774 0.5430 +5495 6801 0.5430 +5495 6837 0.4210 +5495 6885 0.9460 +5495 7091 0.6100 +5495 7170 0.5090 +5495 7171 0.5060 +5495 7175 0.5510 +5495 7414 0.5470 +5495 7706 0.4850 +5495 8089 0.7510 +5495 8496 0.5580 +5495 8737 0.4660 +5495 8878 0.5650 +5495 9246 0.5160 +5495 9451 0.5010 +5495 9581 0.9670 +5495 9636 0.9620 +5495 9648 0.6330 +5495 9908 0.5220 +5495 9970 0.4230 +5495 10238 0.4860 +5495 10298 0.4670 +5495 10342 0.6130 +5495 10419 0.5370 +5495 10817 0.5180 +5495 10818 0.5280 +5495 11035 0.4190 +5495 11329 0.4840 +5495 22872 0.5510 +5495 23070 0.6400 +5495 25820 0.7260 +5495 27436 0.5010 +5495 29110 0.5810 +5495 51191 0.4600 +5495 51397 0.4120 +5495 53335 0.4120 +5495 53944 0.4340 +5495 54629 0.4150 +5495 54704 0.4490 +5495 57448 0.5160 +5495 79084 0.4530 +5495 79823 0.9530 +5495 80304 0.4990 +5495 83732 0.4470 +5495 83931 0.4820 +5495 123263 0.4200 +5495 138009 0.4930 +5495 147945 0.4200 +5495 160760 0.4790 +5495 197259 0.4970 +5495 286827 0.4770 +5495 375298 0.4680 +5496 5499 0.5720 +5496 5500 0.6890 +5496 5501 0.7270 +5496 5511 0.5560 +5496 5530 0.4260 +5496 5531 0.6230 +5496 5536 0.5980 +5496 5537 0.5700 +5496 5600 0.4430 +5496 5771 0.4760 +5496 6472 0.4410 +5496 6626 0.6670 +5496 6627 0.5670 +5496 6629 0.4260 +5496 6633 0.4740 +5496 6637 0.4730 +5496 6732 0.5490 +5496 6733 0.5710 +5496 6749 0.5170 +5496 6830 0.4240 +5496 7157 0.4520 +5496 7158 0.5660 +5496 7520 0.5260 +5496 7874 0.8740 +5496 8161 0.6090 +5496 8175 0.4470 +5496 8337 0.6360 +5496 8338 0.5780 +5496 8349 0.5840 +5496 8662 0.4310 +5496 8833 0.5260 +5496 8890 0.4390 +5496 8970 0.5000 +5496 9040 0.4150 +5496 9088 0.4450 +5496 9212 0.5100 +5496 9320 0.5290 +5496 9343 0.5170 +5496 9401 0.5700 +5496 9775 0.4050 +5496 9967 0.5930 +5496 10055 0.4320 +5496 10155 0.4900 +5496 10197 0.5670 +5496 10527 0.5500 +5496 10574 0.5740 +5496 10594 0.4820 +5496 10598 0.4270 +5496 10614 0.9180 +5496 10713 0.5890 +5496 10724 0.4310 +5496 10768 0.4530 +5496 10946 0.5740 +5496 10992 0.4220 +5496 11060 0.6550 +5496 11075 0.6920 +5496 11198 0.4780 +5496 11200 0.5790 +5496 11321 0.4740 +5496 22827 0.4620 +5496 23234 0.4270 +5496 23476 0.4550 +5496 23645 0.5080 +5496 24148 0.5260 +5496 25804 0.5100 +5496 29901 0.4310 +5496 29959 0.5450 +5496 51574 0.8750 +5496 51593 0.4800 +5496 54606 0.5140 +5496 56257 0.7870 +5496 57805 0.4020 +5496 57819 0.5170 +5496 80895 0.4410 +5496 83743 0.6090 +5496 84919 0.5150 +5496 84955 0.4280 +5496 85313 0.5500 +5496 93380 0.4190 +5496 94274 0.4380 +5496 123263 0.4280 +5496 132160 0.5980 +5496 151987 0.4290 +5496 160760 0.4210 +5496 255626 0.4310 +5496 317772 0.4380 +5498 6390 0.4730 +5498 6391 0.4300 +5498 6529 0.8260 +5498 6999 0.6650 +5498 7264 0.4200 +5498 7386 0.5190 +5498 7389 0.9990 +5498 7390 0.9040 +5498 8803 0.5640 +5498 9054 0.4040 +5498 9551 0.5040 +5498 9563 0.4030 +5498 10058 0.6740 +5498 23456 0.7110 +5498 27109 0.4240 +5498 28982 0.5670 +5498 51102 0.5470 +5498 51312 0.5870 +5498 51522 0.7440 +5498 51805 0.4660 +5498 54977 0.6940 +5498 54995 0.5230 +5498 55471 0.6740 +5498 55640 0.4790 +5498 55808 0.6310 +5498 81894 0.4930 +5498 84869 0.5160 +5498 124454 0.4480 +5498 254863 0.4550 +5498 284131 0.8970 +5498 374291 0.4810 +5498 440574 0.5250 +5499 5500 0.9970 +5499 5501 0.9980 +5499 5502 0.9600 +5499 5504 0.9810 +5499 5506 0.9830 +5499 5507 0.9690 +5499 5509 0.9770 +5499 5510 0.9920 +5499 5511 0.9830 +5499 5514 0.9890 +5499 5515 0.5150 +5499 5518 0.6760 +5499 5519 0.4790 +5499 5520 0.6670 +5499 5521 0.5750 +5499 5524 0.5150 +5499 5525 0.5270 +5499 5526 0.4340 +5499 5527 0.6170 +5499 5528 0.6790 +5499 5529 0.6690 +5499 5530 0.4480 +5499 5531 0.4760 +5499 5566 0.6930 +5499 5567 0.7040 +5499 5568 0.6860 +5499 5573 0.4090 +5499 5581 0.9110 +5499 5592 0.9170 +5499 5593 0.9070 +5499 5594 0.5400 +5499 5595 0.5490 +5499 5604 0.6330 +5499 5610 0.5470 +5499 5691 0.4100 +5499 5728 0.4890 +5499 5782 0.4560 +5499 5836 0.6190 +5499 5837 0.4680 +5499 5883 0.4050 +5499 5925 0.9840 +5499 5930 0.7380 +5499 5933 0.9150 +5499 5934 0.9140 +5499 6041 0.4460 +5499 6093 0.9230 +5499 6122 0.4850 +5499 6123 0.4550 +5499 6130 0.4740 +5499 6175 0.6770 +5499 6189 0.4930 +5499 6195 0.7050 +5499 6196 0.6720 +5499 6197 0.6670 +5499 6205 0.4290 +5499 6262 0.9400 +5499 6434 0.4240 +5499 6449 0.4550 +5499 6500 0.4480 +5499 6502 0.6190 +5499 6598 0.6510 +5499 6780 0.4570 +5499 6787 0.4280 +5499 6790 0.5790 +5499 6992 0.9420 +5499 7040 0.5620 +5499 7046 0.5670 +5499 7048 0.5580 +5499 7112 0.4170 +5499 7113 0.7130 +5499 7145 0.5060 +5499 7159 0.9840 +5499 7249 0.5460 +5499 7514 0.5130 +5499 7529 0.7380 +5499 7531 0.5180 +5499 7532 0.5120 +5499 7533 0.4360 +5499 7534 0.4180 +5499 8036 0.9510 +5499 8045 0.6650 +5499 8165 0.6630 +5499 8175 0.6160 +5499 8189 0.7280 +5499 8237 0.6800 +5499 8409 0.8230 +5499 8454 0.6300 +5499 8473 0.6430 +5499 8575 0.4660 +5499 8607 0.7370 +5499 8683 0.5820 +5499 8725 0.9170 +5499 8761 0.4170 +5499 8864 0.4710 +5499 8909 0.5830 +5499 9045 0.4820 +5499 9097 0.4150 +5499 9113 0.6280 +5499 9150 0.5180 +5499 9172 0.5890 +5499 9212 0.5900 +5499 9254 0.6550 +5499 9372 0.8250 +5499 9451 0.4160 +5499 9475 0.9170 +5499 9575 0.5370 +5499 9584 0.4150 +5499 9586 0.6970 +5499 9636 0.5140 +5499 9641 0.4320 +5499 9701 0.4160 +5499 9749 0.5120 +5499 9765 0.7470 +5499 9784 0.4340 +5499 9814 0.5130 +5499 9878 0.9770 +5499 9972 0.4510 +5499 9989 0.4270 +5499 10013 0.4130 +5499 10044 0.7470 +5499 10045 0.8760 +5499 10093 0.4380 +5499 10142 0.5400 +5499 10155 0.5270 +5499 10197 0.5560 +5499 10199 0.5500 +5499 10226 0.4130 +5499 10368 0.6500 +5499 10369 0.6540 +5499 10376 0.4380 +5499 10383 0.4500 +5499 10398 0.9210 +5499 10403 0.6560 +5499 10413 0.9590 +5499 10421 0.8510 +5499 10471 0.7700 +5499 10488 0.6540 +5499 10492 0.4060 +5499 10614 0.4070 +5499 10623 0.4520 +5499 10627 0.9180 +5499 10801 0.4250 +5499 10848 0.8700 +5499 10856 0.7220 +5499 10898 0.8390 +5499 10914 0.5370 +5499 10971 0.4650 +5499 11007 0.6240 +5499 11128 0.6650 +5499 11215 0.5400 +5499 11228 0.6540 +5499 11316 0.4950 +5499 11331 0.5000 +5499 22808 0.7290 +5499 22853 0.6920 +5499 22870 0.4840 +5499 22913 0.4720 +5499 23026 0.4650 +5499 23076 0.8320 +5499 23228 0.6510 +5499 23283 0.5070 +5499 23368 0.9380 +5499 23451 0.4050 +5499 23476 0.4830 +5499 23513 0.6680 +5499 23586 0.6770 +5499 23645 0.9980 +5499 25909 0.4200 +5499 25937 0.9570 +5499 26051 0.6780 +5499 26058 0.4210 +5499 26073 0.4470 +5499 26092 0.4310 +5499 26115 0.5730 +5499 26273 0.4480 +5499 26472 0.6780 +5499 26986 0.4840 +5499 27091 0.7560 +5499 27092 0.6520 +5499 27238 0.6040 +5499 27328 0.4230 +5499 27330 0.6540 +5499 29101 0.9240 +5499 29110 0.4280 +5499 29894 0.9220 +5499 29895 0.6980 +5499 30816 0.4260 +5499 51231 0.4210 +5499 51503 0.5290 +5499 51574 0.5570 +5499 51692 0.9300 +5499 51729 0.8580 +5499 51806 0.7880 +5499 53981 0.9010 +5499 54205 0.4700 +5499 54443 0.4620 +5499 54776 0.9550 +5499 54866 0.6600 +5499 54976 0.8140 +5499 55011 0.8540 +5499 55125 0.5960 +5499 55183 0.8340 +5499 55227 0.4950 +5499 55233 0.4020 +5499 55259 0.5820 +5499 55339 0.9440 +5499 55607 0.7690 +5499 55718 0.6170 +5499 55799 0.6550 +5499 55914 0.6700 +5499 55930 0.5190 +5499 56252 0.7180 +5499 56288 0.5830 +5499 56903 0.5340 +5499 57026 0.5700 +5499 57082 0.8370 +5499 57221 0.5190 +5499 57223 0.4030 +5499 57506 0.4920 +5499 57594 0.4390 +5499 57710 0.4790 +5499 57718 0.4330 +5499 58498 0.6980 +5499 59272 0.7740 +5499 59283 0.7560 +5499 59284 0.7560 +5499 59285 0.6500 +5499 60490 0.5030 +5499 60672 0.5430 +5499 63898 0.6080 +5499 64135 0.7590 +5499 64651 0.6660 +5499 64682 0.4320 +5499 64764 0.6580 +5499 64895 0.5340 +5499 65979 0.5770 +5499 79004 0.4070 +5499 79026 0.4250 +5499 79054 0.9000 +5499 79084 0.5010 +5499 79657 0.8500 +5499 79660 0.9850 +5499 79834 0.6130 +5499 80316 0.4790 +5499 80335 0.9960 +5499 81566 0.8320 +5499 81572 0.7860 +5499 81608 0.8350 +5499 81706 0.8050 +5499 81930 0.8790 +5499 83593 0.9150 +5499 83992 0.4580 +5499 84152 0.9430 +5499 84661 0.4300 +5499 84687 0.9720 +5499 84699 0.6500 +5499 84790 0.4230 +5499 84919 0.8130 +5499 84988 0.4220 +5499 89801 0.9290 +5499 90506 0.5720 +5499 90639 0.4350 +5499 90673 0.9490 +5499 90835 0.4210 +5499 90993 0.6500 +5499 91860 0.8120 +5499 92521 0.6860 +5499 93408 0.6980 +5499 93589 0.6550 +5499 93649 0.4230 +5499 94241 0.4040 +5499 94274 0.9490 +5499 103910 0.9300 +5499 112464 0.4680 +5499 114034 0.6250 +5499 116143 0.9040 +5499 116154 0.8880 +5499 116443 0.6580 +5499 116444 0.6580 +5499 116729 0.5590 +5499 120892 0.4160 +5499 136157 0.4060 +5499 136332 0.8510 +5499 136991 0.6390 +5499 137886 0.4440 +5499 140465 0.9160 +5499 140885 0.4020 +5499 143506 0.4060 +5499 148327 0.6580 +5499 151242 0.7010 +5499 151987 0.5250 +5499 153743 0.5750 +5499 153769 0.5910 +5499 154743 0.4860 +5499 157313 0.8210 +5499 161742 0.4110 +5499 163688 0.7760 +5499 163882 0.7850 +5499 168400 0.6860 +5499 170954 0.9560 +5499 196120 0.4060 +5499 200162 0.4620 +5499 203068 0.5360 +5499 219699 0.4440 +5499 220004 0.4250 +5499 220134 0.4240 +5499 221692 0.8590 +5499 221895 0.4660 +5499 254050 0.5540 +5499 284352 0.7350 +5499 286187 0.5530 +5499 286262 0.8070 +5499 317762 0.6130 +5499 390031 0.4060 +5499 390033 0.4060 +5499 400668 0.6530 +5499 440275 0.5740 +5499 441584 0.4060 +5499 642843 0.4830 +5499 645545 0.4130 +5499 648791 0.6720 +5500 5501 0.9970 +5500 5502 0.9590 +5500 5504 0.9560 +5500 5506 0.9900 +5500 5507 0.9820 +5500 5509 0.9550 +5500 5510 0.9930 +5500 5511 0.9410 +5500 5514 0.9640 +5500 5515 0.5160 +5500 5518 0.5920 +5500 5519 0.5060 +5500 5520 0.6360 +5500 5521 0.5580 +5500 5524 0.4040 +5500 5525 0.5520 +5500 5527 0.6140 +5500 5528 0.5230 +5500 5529 0.4430 +5500 5530 0.4960 +5500 5566 0.4080 +5500 5567 0.4180 +5500 5568 0.4050 +5500 5580 0.4930 +5500 5581 0.9150 +5500 5585 0.5640 +5500 5592 0.9250 +5500 5593 0.9070 +5500 5607 0.4690 +5500 5649 0.6070 +5500 5705 0.4080 +5500 5747 0.4980 +5500 5834 0.4020 +5500 5836 0.4300 +5500 5878 0.4690 +5500 5879 0.5770 +5500 5894 0.5650 +5500 5925 0.9530 +5500 5930 0.7240 +5500 5933 0.9110 +5500 5934 0.9130 +5500 6093 0.9280 +5500 6122 0.4530 +5500 6123 0.4480 +5500 6130 0.4540 +5500 6175 0.5530 +5500 6195 0.6920 +5500 6196 0.6680 +5500 6197 0.7010 +5500 6205 0.4200 +5500 6237 0.5300 +5500 6262 0.9420 +5500 6585 0.4180 +5500 6586 0.4100 +5500 6643 0.4040 +5500 6654 0.4280 +5500 6790 0.5950 +5500 6992 0.9550 +5500 7040 0.5560 +5500 7046 0.6240 +5500 7048 0.5750 +5500 7124 0.4500 +5500 7158 0.4990 +5500 7159 0.9570 +5500 7415 0.5170 +5500 7529 0.5440 +5500 8036 0.9790 +5500 8165 0.5690 +5500 8189 0.7240 +5500 8216 0.5380 +5500 8239 0.4040 +5500 8361 0.5620 +5500 8473 0.6520 +5500 8476 0.4780 +5500 8725 0.5840 +5500 8761 0.4580 +5500 8864 0.4520 +5500 8894 0.5350 +5500 9045 0.4670 +5500 9212 0.6960 +5500 9254 0.6550 +5500 9372 0.6680 +5500 9475 0.9240 +5500 9575 0.5330 +5500 9586 0.6910 +5500 9701 0.4540 +5500 9878 0.9740 +5500 9891 0.5850 +5500 9989 0.4580 +5500 10044 0.4380 +5500 10045 0.5530 +5500 10109 0.4980 +5500 10142 0.5240 +5500 10155 0.5700 +5500 10368 0.6510 +5500 10369 0.6770 +5500 10398 0.9740 +5500 10399 0.5450 +5500 10413 0.9120 +5500 10488 0.6500 +5500 10623 0.4460 +5500 10627 0.9300 +5500 10735 0.4310 +5500 10776 0.4020 +5500 10848 0.8480 +5500 10898 0.8300 +5500 10914 0.6650 +5500 11078 0.5230 +5500 11091 0.5180 +5500 11215 0.4750 +5500 22800 0.4490 +5500 22808 0.8850 +5500 22853 0.5440 +5500 22870 0.4830 +5500 22872 0.4220 +5500 23076 0.6970 +5500 23243 0.7340 +5500 23283 0.5120 +5500 23368 0.7380 +5500 23645 0.9960 +5500 25909 0.5300 +5500 25921 0.4450 +5500 25937 0.9080 +5500 26051 0.9800 +5500 26064 0.5970 +5500 26073 0.4360 +5500 26173 0.9940 +5500 26273 0.4590 +5500 26512 0.9940 +5500 26986 0.4850 +5500 27091 0.7560 +5500 27092 0.6540 +5500 27330 0.6540 +5500 29101 0.9090 +5500 29894 0.9320 +5500 29895 0.6980 +5500 29947 0.5000 +5500 51564 0.4030 +5500 51646 0.4970 +5500 51692 0.9260 +5500 51729 0.6120 +5500 51806 0.8070 +5500 53981 0.8980 +5500 54101 0.4470 +5500 54776 0.9950 +5500 54843 0.4680 +5500 55075 0.4540 +5500 55183 0.5510 +5500 55291 0.4590 +5500 55294 0.5140 +5500 55339 0.9400 +5500 55607 0.6890 +5500 55671 0.4140 +5500 55799 0.6550 +5500 56252 0.4650 +5500 56903 0.5060 +5500 57223 0.4480 +5500 57710 0.4790 +5500 57718 0.4480 +5500 58498 0.6980 +5500 59272 0.4300 +5500 59283 0.7560 +5500 59284 0.7560 +5500 59285 0.6500 +5500 60490 0.5500 +5500 63898 0.8690 +5500 64073 0.4250 +5500 64651 0.5990 +5500 64682 0.4710 +5500 64764 0.6580 +5500 64895 0.5110 +5500 79004 0.4770 +5500 79054 0.9000 +5500 79083 0.4650 +5500 79084 0.6170 +5500 79660 0.9700 +5500 79784 0.5020 +5500 80316 0.4820 +5500 80335 0.9950 +5500 80336 0.4490 +5500 81566 0.6120 +5500 81608 0.8310 +5500 81688 0.8020 +5500 81892 0.4480 +5500 83593 0.9080 +5500 84152 0.9340 +5500 84504 0.4390 +5500 84661 0.4350 +5500 84687 0.9300 +5500 84699 0.6720 +5500 84919 0.9470 +5500 84988 0.9040 +5500 89801 0.9350 +5500 90639 0.4350 +5500 90673 0.9670 +5500 90835 0.4210 +5500 90993 0.6500 +5500 91624 0.4930 +5500 91860 0.8280 +5500 93408 0.7090 +5500 93589 0.6550 +5500 94104 0.4010 +5500 94274 0.9860 +5500 103910 0.9520 +5500 116143 0.5060 +5500 116443 0.6580 +5500 116444 0.6580 +5500 132430 0.4490 +5500 136332 0.8510 +5500 136991 0.4330 +5500 137886 0.4110 +5500 139741 0.4040 +5500 140465 0.9170 +5500 148327 0.6550 +5500 151987 0.5600 +5500 153743 0.6200 +5500 154743 0.4010 +5500 157313 0.5180 +5500 161198 0.4350 +5500 163688 0.7960 +5500 170954 0.8820 +5500 200162 0.4370 +5500 200373 0.4490 +5500 221895 0.4850 +5500 286262 0.8860 +5500 317762 0.6600 +5500 440275 0.4140 +5500 642843 0.4830 +5500 645545 0.4130 +5500 648791 0.5430 +5500 100529144 0.4490 +5501 5502 0.9750 +5501 5504 0.9800 +5501 5506 0.9900 +5501 5507 0.9740 +5501 5509 0.9810 +5501 5510 0.9970 +5501 5511 0.9720 +5501 5514 0.9750 +5501 5518 0.6050 +5501 5519 0.5220 +5501 5520 0.6640 +5501 5521 0.5330 +5501 5524 0.4060 +5501 5525 0.5610 +5501 5526 0.4140 +5501 5527 0.6170 +5501 5528 0.5260 +5501 5529 0.5420 +5501 5567 0.4030 +5501 5580 0.5010 +5501 5581 0.9140 +5501 5592 0.9220 +5501 5593 0.9070 +5501 5594 0.5580 +5501 5601 0.4660 +5501 5607 0.4970 +5501 5705 0.4490 +5501 5885 0.4110 +5501 5894 0.6700 +5501 5925 0.9590 +5501 5930 0.5300 +5501 5933 0.9200 +5501 5934 0.9170 +5501 6059 0.4060 +5501 6093 0.9260 +5501 6122 0.6700 +5501 6123 0.4550 +5501 6124 0.4120 +5501 6125 0.4290 +5501 6128 0.4400 +5501 6130 0.5420 +5501 6132 0.4060 +5501 6155 0.5940 +5501 6175 0.5990 +5501 6195 0.6790 +5501 6196 0.6820 +5501 6197 0.6950 +5501 6205 0.6310 +5501 6262 0.9400 +5501 6422 0.5270 +5501 6426 0.4380 +5501 6594 0.4180 +5501 6613 0.4410 +5501 6651 0.6280 +5501 6670 0.5140 +5501 6749 0.4980 +5501 6790 0.6680 +5501 6992 0.9540 +5501 7040 0.5430 +5501 7046 0.6200 +5501 7048 0.5690 +5501 7150 0.8100 +5501 7157 0.4330 +5501 7158 0.4850 +5501 7159 0.9740 +5501 7184 0.5310 +5501 7189 0.6580 +5501 7326 0.4110 +5501 7404 0.4470 +5501 7415 0.7940 +5501 7529 0.6560 +5501 7531 0.4070 +5501 7874 0.5300 +5501 7913 0.4550 +5501 8036 0.9930 +5501 8045 0.6310 +5501 8165 0.5430 +5501 8189 0.7000 +5501 8284 0.4100 +5501 8361 0.4280 +5501 8409 0.8150 +5501 8467 0.5220 +5501 8473 0.6790 +5501 8517 0.4730 +5501 8573 0.4500 +5501 8653 0.8270 +5501 8725 0.9690 +5501 8761 0.4610 +5501 8864 0.4520 +5501 8894 0.5980 +5501 9045 0.5730 +5501 9097 0.4440 +5501 9133 0.5050 +5501 9184 0.7400 +5501 9212 0.9160 +5501 9254 0.6550 +5501 9372 0.8900 +5501 9475 0.9210 +5501 9575 0.5290 +5501 9586 0.7000 +5501 9627 0.6330 +5501 9696 0.4300 +5501 9700 0.6290 +5501 9701 0.4460 +5501 9749 0.5130 +5501 9765 0.7390 +5501 9774 0.5300 +5501 9804 0.4220 +5501 9878 0.9470 +5501 9928 0.4480 +5501 9972 0.4800 +5501 9989 0.4230 +5501 10142 0.5070 +5501 10155 0.5440 +5501 10368 0.6500 +5501 10369 0.6670 +5501 10398 0.9390 +5501 10399 0.5860 +5501 10403 0.5280 +5501 10413 0.9190 +5501 10421 0.4920 +5501 10471 0.6210 +5501 10488 0.6500 +5501 10564 0.7410 +5501 10565 0.6730 +5501 10576 0.4530 +5501 10623 0.4470 +5501 10627 0.9310 +5501 10657 0.4050 +5501 10724 0.6820 +5501 10726 0.8410 +5501 10762 0.5510 +5501 10776 0.4720 +5501 10848 0.7280 +5501 10856 0.5650 +5501 10890 0.4040 +5501 10898 0.8150 +5501 10914 0.6890 +5501 10971 0.6680 +5501 11007 0.6320 +5501 11051 0.5110 +5501 11128 0.4020 +5501 11215 0.4910 +5501 11228 0.4060 +5501 22808 0.9230 +5501 22853 0.8860 +5501 22870 0.5080 +5501 22872 0.4370 +5501 23076 0.8180 +5501 23173 0.4100 +5501 23211 0.4360 +5501 23228 0.6450 +5501 23243 0.7060 +5501 23244 0.4310 +5501 23283 0.5130 +5501 23368 0.8700 +5501 23513 0.7240 +5501 23603 0.4560 +5501 23636 0.4590 +5501 23645 0.9970 +5501 24149 0.5950 +5501 25909 0.6020 +5501 25937 0.9010 +5501 26051 0.8580 +5501 26064 0.4810 +5501 26073 0.4390 +5501 26092 0.4950 +5501 26115 0.6610 +5501 26135 0.4040 +5501 26273 0.4660 +5501 26986 0.5790 +5501 27091 0.7560 +5501 27092 0.6520 +5501 27330 0.6540 +5501 27436 0.5690 +5501 29101 0.8880 +5501 29117 0.4490 +5501 29894 0.9120 +5501 29895 0.6980 +5501 29980 0.4050 +5501 51692 0.9240 +5501 51729 0.8090 +5501 51806 0.8090 +5501 53981 0.8930 +5501 54101 0.4450 +5501 54443 0.4200 +5501 54514 0.8430 +5501 54776 0.9630 +5501 54866 0.4430 +5501 54976 0.8220 +5501 55011 0.7230 +5501 55183 0.8160 +5501 55227 0.5860 +5501 55339 0.9400 +5501 55607 0.9090 +5501 55671 0.4320 +5501 55703 0.5610 +5501 55718 0.5240 +5501 55799 0.6550 +5501 55914 0.7560 +5501 55968 0.4200 +5501 56252 0.7620 +5501 56903 0.4890 +5501 57082 0.9350 +5501 57223 0.5080 +5501 57710 0.4790 +5501 57718 0.4140 +5501 58498 0.6980 +5501 59283 0.7560 +5501 59284 0.7560 +5501 59285 0.6500 +5501 60485 0.5400 +5501 60490 0.5550 +5501 63898 0.4070 +5501 64135 0.4890 +5501 64682 0.4980 +5501 64764 0.6720 +5501 64895 0.4930 +5501 65979 0.6110 +5501 79004 0.4770 +5501 79054 0.9000 +5501 79084 0.4830 +5501 79657 0.8680 +5501 79660 0.9920 +5501 79834 0.6690 +5501 79980 0.5660 +5501 80316 0.4860 +5501 80335 0.9940 +5501 81566 0.8280 +5501 81572 0.7360 +5501 81608 0.8580 +5501 81876 0.4700 +5501 81930 0.8570 +5501 83540 0.5330 +5501 83593 0.9050 +5501 84152 0.9410 +5501 84449 0.4160 +5501 84661 0.4980 +5501 84687 0.9930 +5501 84699 0.6770 +5501 84919 0.9980 +5501 84988 0.8060 +5501 89801 0.9610 +5501 90506 0.5750 +5501 90639 0.4400 +5501 90673 0.9670 +5501 90835 0.4210 +5501 90993 0.6600 +5501 91860 0.8310 +5501 93408 0.7100 +5501 93589 0.6550 +5501 94274 0.9720 +5501 103910 0.9480 +5501 116143 0.9250 +5501 116443 0.6580 +5501 116444 0.6580 +5501 123169 0.4010 +5501 124245 0.4280 +5501 133482 0.4080 +5501 136157 0.4060 +5501 136332 0.8510 +5501 137886 0.5150 +5501 140465 0.9180 +5501 143506 0.4060 +5501 148327 0.6590 +5501 151987 0.5780 +5501 153743 0.6430 +5501 154743 0.4880 +5501 157313 0.9980 +5501 163688 0.7990 +5501 163882 0.7340 +5501 170954 0.7020 +5501 196120 0.4060 +5501 200162 0.4530 +5501 200373 0.4530 +5501 203068 0.4250 +5501 220134 0.5130 +5501 221895 0.4680 +5501 222658 0.4850 +5501 254050 0.5540 +5501 286187 0.5250 +5501 286262 0.6860 +5501 317762 0.6360 +5501 390031 0.4060 +5501 390033 0.4060 +5501 440275 0.6680 +5501 441584 0.4060 +5501 642843 0.4830 +5501 645545 0.4130 +5501 648791 0.6980 +5502 5504 0.8870 +5502 5506 0.6720 +5502 5515 0.9440 +5502 5516 0.9000 +5502 5518 0.9120 +5502 5519 0.9060 +5502 5520 0.9020 +5502 5521 0.9030 +5502 5522 0.9060 +5502 5523 0.9110 +5502 5525 0.9180 +5502 5526 0.9100 +5502 5527 0.9030 +5502 5528 0.9110 +5502 5529 0.9050 +5502 5530 0.9180 +5502 5532 0.9130 +5502 5533 0.9060 +5502 5534 0.9090 +5502 5566 0.9190 +5502 5567 0.9180 +5502 5568 0.9180 +5502 5578 0.9450 +5502 5584 0.6490 +5502 6000 0.4050 +5502 8048 0.5850 +5502 8228 0.4260 +5502 8402 0.4220 +5502 9465 0.5400 +5502 10670 0.4370 +5502 23645 0.5990 +5502 28227 0.9000 +5502 55012 0.9000 +5502 55844 0.9130 +5502 55859 0.4470 +5502 81553 0.4020 +5502 124626 0.4070 +5502 133746 0.4560 +5502 151354 0.4670 +5502 374768 0.5690 +5504 5506 0.7250 +5504 5510 0.8200 +5504 5511 0.4350 +5504 5515 0.7350 +5504 5530 0.6000 +5504 5532 0.6230 +5504 5537 0.5160 +5504 6992 0.7670 +5504 10954 0.4370 +5504 22853 0.8230 +5504 23368 0.4500 +5504 80335 0.4990 +5504 84687 0.4450 +5504 170954 0.4320 +5504 286187 0.4070 +5504 286262 0.6400 +5506 5507 0.9380 +5506 5509 0.9430 +5506 5510 0.8090 +5506 5511 0.8330 +5506 5515 0.5060 +5506 5532 0.4520 +5506 5562 0.4410 +5506 5563 0.4400 +5506 5834 0.4930 +5506 5836 0.4720 +5506 5837 0.5180 +5506 5934 0.9810 +5506 6005 0.9160 +5506 6006 0.8490 +5506 6007 0.8020 +5506 6195 0.6500 +5506 6196 0.6500 +5506 6197 0.6500 +5506 6622 0.4570 +5506 6992 0.5690 +5506 7021 0.4240 +5506 7088 0.5410 +5506 7089 0.5570 +5506 7090 0.4280 +5506 7466 0.4280 +5506 8036 0.6730 +5506 8048 0.4560 +5506 9094 0.6370 +5506 10345 0.5870 +5506 10848 0.5100 +5506 11132 0.4550 +5506 23439 0.4540 +5506 23645 0.5600 +5506 27330 0.6500 +5506 51725 0.4630 +5506 51778 0.4990 +5506 51806 0.6810 +5506 56729 0.4520 +5506 64418 0.4300 +5506 79660 0.9400 +5506 84666 0.4320 +5506 84687 0.7150 +5506 84919 0.6360 +5506 89801 0.9350 +5506 90506 0.5540 +5506 90673 0.9440 +5506 91860 0.6800 +5506 129446 0.5070 +5506 163688 0.6890 +5506 254050 0.5540 +5506 284697 0.4210 +5506 286006 0.4220 +5506 286187 0.5400 +5506 442721 0.4850 +5506 648791 0.7430 +5507 5509 0.9860 +5507 5510 0.6550 +5507 5511 0.8470 +5507 5834 0.6480 +5507 5836 0.6500 +5507 5837 0.6560 +5507 6195 0.6500 +5507 6196 0.6680 +5507 6197 0.6500 +5507 6233 0.4990 +5507 6446 0.4260 +5507 7311 0.4990 +5507 7314 0.5090 +5507 7316 0.5080 +5507 7360 0.4120 +5507 7957 0.9870 +5507 8036 0.5420 +5507 8908 0.9110 +5507 8987 0.8980 +5507 9352 0.7200 +5507 9852 0.6640 +5507 10891 0.4930 +5507 23645 0.5820 +5507 27247 0.7650 +5507 27330 0.6620 +5507 51806 0.6500 +5507 60496 0.4080 +5507 79660 0.9130 +5507 84687 0.5520 +5507 84919 0.5510 +5507 89801 0.9110 +5507 90070 0.4200 +5507 90506 0.5540 +5507 90673 0.9160 +5507 91860 0.6500 +5507 163688 0.6500 +5507 254050 0.5540 +5507 284697 0.4280 +5507 286187 0.5400 +5507 378884 0.9460 +5507 648791 0.6430 +5509 5510 0.5990 +5509 5564 0.5330 +5509 5834 0.7130 +5509 5836 0.5020 +5509 5837 0.4820 +5509 6195 0.6590 +5509 6196 0.6580 +5509 6197 0.6500 +5509 7957 0.7420 +5509 8036 0.5410 +5509 8908 0.4060 +5509 8987 0.8310 +5509 10388 0.4250 +5509 23645 0.5420 +5509 27330 0.6500 +5509 51806 0.6520 +5509 63939 0.5460 +5509 79660 0.9690 +5509 84687 0.5730 +5509 84919 0.5520 +5509 89801 0.9150 +5509 90506 0.5670 +5509 90673 0.9120 +5509 91860 0.6500 +5509 116729 0.4180 +5509 163688 0.6500 +5509 254050 0.5540 +5509 286187 0.5400 +5509 378884 0.5210 +5509 648791 0.6220 +5510 5511 0.6790 +5510 5514 0.6200 +5510 6251 0.5940 +5510 6790 0.5480 +5510 6795 0.5430 +5510 6992 0.9800 +5510 7265 0.7850 +5510 7371 0.7760 +5510 7415 0.6640 +5510 8036 0.6300 +5510 8409 0.4890 +5510 8556 0.4600 +5510 8725 0.4270 +5510 9184 0.4330 +5510 9212 0.7300 +5510 9913 0.4390 +5510 10084 0.5110 +5510 10419 0.5030 +5510 10848 0.6050 +5510 11081 0.4320 +5510 11258 0.4550 +5510 22859 0.5140 +5510 23178 0.9400 +5510 23266 0.5140 +5510 23284 0.5140 +5510 23368 0.4370 +5510 23645 0.6180 +5510 24148 0.4020 +5510 26051 0.7910 +5510 51314 0.4260 +5510 51693 0.4680 +5510 51699 0.4060 +5510 51729 0.5850 +5510 54976 0.4150 +5510 55183 0.4490 +5510 55968 0.6110 +5510 56259 0.4690 +5510 57082 0.4780 +5510 57732 0.4420 +5510 63898 0.7670 +5510 79657 0.4820 +5510 79660 0.6550 +5510 79980 0.4610 +5510 81930 0.5870 +5510 84292 0.4970 +5510 84687 0.6740 +5510 84919 0.5540 +5510 89801 0.5540 +5510 90121 0.4600 +5510 90506 0.5400 +5510 90673 0.5990 +5510 92400 0.4290 +5510 122769 0.6820 +5510 137886 0.8250 +5510 153743 0.5010 +5510 157313 0.6900 +5510 165324 0.5610 +5510 254050 0.5400 +5510 286187 0.6340 +5510 648791 0.5990 +5511 5514 0.7630 +5511 5566 0.4390 +5511 5928 0.4570 +5511 6464 0.4340 +5511 6626 0.5160 +5511 6636 0.4550 +5511 6992 0.5080 +5511 7158 0.4540 +5511 7536 0.6040 +5511 7919 0.6710 +5511 7957 0.4270 +5511 8175 0.6220 +5511 8726 0.6330 +5511 8899 0.6610 +5511 9092 0.5560 +5511 9128 0.5860 +5511 9129 0.5130 +5511 9343 0.6240 +5511 9410 0.6190 +5511 9416 0.6000 +5511 9584 0.8690 +5511 9833 0.5690 +5511 10155 0.5230 +5511 10179 0.5130 +5511 10181 0.8530 +5511 10189 0.5470 +5511 10250 0.5800 +5511 10285 0.5160 +5511 10291 0.4280 +5511 10465 0.6750 +5511 10594 0.6710 +5511 10614 0.4070 +5511 10713 0.5520 +5511 10907 0.5130 +5511 10914 0.4420 +5511 10915 0.8440 +5511 11017 0.6100 +5511 11157 0.5350 +5511 11231 0.5870 +5511 11338 0.5100 +5511 22826 0.8730 +5511 23020 0.6190 +5511 23451 0.9500 +5511 23512 0.4090 +5511 23517 0.6000 +5511 23524 0.8250 +5511 23645 0.5200 +5511 23658 0.5680 +5511 24148 0.5370 +5511 25804 0.6810 +5511 26121 0.5100 +5511 27258 0.6720 +5511 27336 0.8180 +5511 27339 0.4200 +5511 29102 0.4900 +5511 29934 0.4590 +5511 51362 0.8130 +5511 51493 0.4010 +5511 51497 0.4210 +5511 51593 0.8340 +5511 51639 0.4830 +5511 51645 0.6200 +5511 51690 0.5710 +5511 51691 0.5300 +5511 51747 0.5210 +5511 54107 0.4210 +5511 54866 0.4330 +5511 55234 0.5530 +5511 55585 0.5320 +5511 55660 0.8280 +5511 55749 0.8120 +5511 56259 0.6900 +5511 56903 0.4370 +5511 57794 0.8170 +5511 57819 0.6080 +5511 58517 0.8250 +5511 64895 0.4450 +5511 79084 0.5180 +5511 79142 0.5420 +5511 79171 0.5500 +5511 79660 0.8620 +5511 84687 0.5090 +5511 84844 0.4860 +5511 87178 0.9520 +5511 90441 0.4080 +5511 91937 0.5040 +5511 115024 0.4250 +5511 120892 0.4310 +5511 143684 0.4290 +5511 154007 0.4950 +5511 157313 0.4890 +5511 199870 0.4090 +5511 283742 0.4790 +5511 387263 0.4420 +5514 5935 0.5080 +5514 6421 0.4170 +5514 6829 0.4350 +5514 6992 0.4660 +5514 7014 0.7640 +5514 7150 0.4210 +5514 7158 0.5510 +5514 9701 0.4840 +5514 9878 0.9620 +5514 9989 0.4680 +5514 10432 0.4220 +5514 11052 0.4500 +5514 23076 0.4400 +5514 23211 0.4270 +5514 23368 0.4930 +5514 25790 0.4940 +5514 29101 0.4200 +5514 54386 0.4870 +5514 64838 0.4250 +5514 79660 0.4090 +5514 79753 0.7990 +5514 80335 0.9800 +5514 80789 0.4200 +5514 81608 0.4230 +5514 84687 0.5120 +5514 123169 0.4930 +5514 134510 0.4560 +5514 143872 0.4610 +5514 157313 0.7090 +5514 219539 0.4270 +5514 221421 0.4360 +5514 286006 0.4010 +5514 102723407 0.4130 +5515 5516 0.9860 +5515 5518 0.9990 +5515 5519 0.9990 +5515 5520 0.9990 +5515 5521 0.9980 +5515 5522 0.9950 +5515 5523 0.9960 +5515 5524 0.9990 +5515 5525 0.9990 +5515 5526 0.9990 +5515 5527 0.9990 +5515 5528 0.9990 +5515 5529 0.9990 +5515 5530 0.9370 +5515 5531 0.8480 +5515 5532 0.9110 +5515 5533 0.5740 +5515 5534 0.9290 +5515 5537 0.6650 +5515 5562 0.6330 +5515 5566 0.4210 +5515 5567 0.4200 +5515 5568 0.4080 +5515 5578 0.9280 +5515 5579 0.9140 +5515 5580 0.4780 +5515 5582 0.9140 +5515 5584 0.9130 +5515 5590 0.9220 +5515 5591 0.4700 +5515 5594 0.9740 +5515 5595 0.9710 +5515 5598 0.5590 +5515 5604 0.9440 +5515 5605 0.9550 +5515 5682 0.4670 +5515 5684 0.4050 +5515 5728 0.5580 +5515 5757 0.5090 +5515 5781 0.6240 +5515 5829 0.6240 +5515 5879 0.4750 +5515 5885 0.4630 +5515 5894 0.7870 +5515 5898 0.4610 +5515 5925 0.4780 +5515 5933 0.5940 +5515 5934 0.8000 +5515 5970 0.9490 +5515 5976 0.7740 +5515 6122 0.4670 +5515 6124 0.5390 +5515 6133 0.4510 +5515 6156 0.4940 +5515 6198 0.9790 +5515 6199 0.9630 +5515 6233 0.5820 +5515 6237 0.5940 +5515 6249 0.4590 +5515 6262 0.9440 +5515 6310 0.4110 +5515 6418 0.9280 +5515 6446 0.4370 +5515 6500 0.7030 +5515 6632 0.4560 +5515 6714 0.8220 +5515 6731 0.4310 +5515 6772 0.4860 +5515 6783 0.4480 +5515 6788 0.9190 +5515 6789 0.5550 +5515 6801 0.9990 +5515 6829 0.8690 +5515 6850 0.5220 +5515 6872 0.4590 +5515 6950 0.9960 +5515 6992 0.4830 +5515 7041 0.4610 +5515 7048 0.9130 +5515 7112 0.5670 +5515 7137 0.9130 +5515 7157 0.8330 +5515 7184 0.4270 +5515 7189 0.4370 +5515 7203 0.9950 +5515 7249 0.4760 +5515 7311 0.6280 +5515 7314 0.5700 +5515 7316 0.5600 +5515 7323 0.4040 +5515 7334 0.4150 +5515 7415 0.6260 +5515 7416 0.5260 +5515 7458 0.4790 +5515 7469 0.8350 +5515 7471 0.5320 +5515 7478 0.4990 +5515 7479 0.5000 +5515 7514 0.4840 +5515 7525 0.5800 +5515 7529 0.6390 +5515 7531 0.6500 +5515 7532 0.4130 +5515 7534 0.4010 +5515 7538 0.4140 +5515 7871 0.9990 +5515 7874 0.6800 +5515 8030 0.6510 +5515 8125 0.8510 +5515 8290 0.4940 +5515 8312 0.9020 +5515 8321 0.5530 +5515 8356 0.5000 +5515 8408 0.9170 +5515 8428 0.9960 +5515 8452 0.4910 +5515 8454 0.6680 +5515 8499 0.9940 +5515 8500 0.9940 +5515 8517 0.7240 +5515 8536 0.6350 +5515 8541 0.9940 +5515 8569 0.6130 +5515 8575 0.4670 +5515 8649 0.5680 +5515 8678 0.4840 +5515 8766 0.4350 +5515 8815 0.5230 +5515 8844 0.5410 +5515 8870 0.6440 +5515 8881 0.8330 +5515 8894 0.4660 +5515 8900 0.7350 +5515 8945 0.6020 +5515 9133 0.5100 +5515 9150 0.4210 +5515 9181 0.4080 +5515 9184 0.6190 +5515 9212 0.5620 +5515 9232 0.5990 +5515 9254 0.6600 +5515 9319 0.4120 +5515 9342 0.4470 +5515 9448 0.4140 +5515 9513 0.4650 +5515 9700 0.8520 +5515 9701 0.8110 +5515 9706 0.9120 +5515 9734 0.4420 +5515 9759 0.6830 +5515 9887 0.7890 +5515 9978 0.6940 +5515 9985 0.9500 +5515 9989 0.9650 +5515 10000 0.7870 +5515 10014 0.5900 +5515 10023 0.4720 +5515 10059 0.4060 +5515 10197 0.4110 +5515 10211 0.4010 +5515 10253 0.7760 +5515 10269 0.4770 +5515 10368 0.6500 +5515 10369 0.6500 +5515 10399 0.5280 +5515 10413 0.9120 +5515 10494 0.9960 +5515 10574 0.9950 +5515 10575 0.9950 +5515 10576 0.9950 +5515 10694 0.9960 +5515 10726 0.6060 +5515 10733 0.5100 +5515 10769 0.5720 +5515 10776 0.8510 +5515 10842 0.9000 +5515 10971 0.4960 +5515 11116 0.9940 +5515 11200 0.8360 +5515 11235 0.9970 +5515 22870 0.8360 +5515 22916 0.5500 +5515 22948 0.9950 +5515 23049 0.6150 +5515 23141 0.8670 +5515 23194 0.4130 +5515 23235 0.5520 +5515 23293 0.6920 +5515 23381 0.7890 +5515 23401 0.4420 +5515 23451 0.5120 +5515 23463 0.4970 +5515 23592 0.5610 +5515 23770 0.4180 +5515 25843 0.9990 +5515 25896 0.8940 +5515 25920 0.8430 +5515 25937 0.9030 +5515 26040 0.4540 +5515 26073 0.4400 +5515 26127 0.7070 +5515 26173 0.9980 +5515 26233 0.4130 +5515 26273 0.4500 +5515 26472 0.5530 +5515 26512 0.9990 +5515 26747 0.4650 +5515 26986 0.7160 +5515 27091 0.6970 +5515 27092 0.6500 +5515 27250 0.4500 +5515 27436 0.5720 +5515 28227 0.9990 +5515 29888 0.9990 +5515 29894 0.4410 +5515 29945 0.9940 +5515 29966 0.9990 +5515 30011 0.4310 +5515 50488 0.7860 +5515 51070 0.4710 +5515 51085 0.5930 +5515 51135 0.9090 +5515 51400 0.9990 +5515 51434 0.9940 +5515 51451 0.9980 +5515 51490 0.4540 +5515 51497 0.8470 +5515 51765 0.7830 +5515 54850 0.4130 +5515 54866 0.5490 +5515 54973 0.9290 +5515 55012 0.7980 +5515 55038 0.5390 +5515 55181 0.5100 +5515 55233 0.7900 +5515 55276 0.4620 +5515 55291 0.8290 +5515 55629 0.5220 +5515 55656 0.9480 +5515 55671 0.7490 +5515 55756 0.9250 +5515 55799 0.6630 +5515 55802 0.5250 +5515 55844 0.9990 +5515 55917 0.9960 +5515 55922 0.4430 +5515 56006 0.5070 +5515 56256 0.6780 +5515 57117 0.6670 +5515 57223 0.7930 +5515 57464 0.9540 +5515 57508 0.9160 +5515 57650 0.6280 +5515 57718 0.5980 +5515 59283 0.6970 +5515 59284 0.6970 +5515 59285 0.6500 +5515 60673 0.9050 +5515 64682 0.9980 +5515 64839 0.4130 +5515 65123 0.4760 +5515 78994 0.5230 +5515 80005 0.5000 +5515 80143 0.9960 +5515 80335 0.4460 +5515 80342 0.9950 +5515 80789 0.9460 +5515 81556 0.4270 +5515 81706 0.5240 +5515 83992 0.9950 +5515 84152 0.5010 +5515 84930 0.8100 +5515 84955 0.6320 +5515 85369 0.9990 +5515 85407 0.8770 +5515 89780 0.5610 +5515 91860 0.4290 +5515 92105 0.9180 +5515 93589 0.6630 +5515 94274 0.4380 +5515 115399 0.4030 +5515 116224 0.5160 +5515 126520 0.5180 +5515 136332 0.4550 +5515 138639 0.5530 +5515 139285 0.5050 +5515 139420 0.7090 +5515 144699 0.4130 +5515 151246 0.7470 +5515 151648 0.9990 +5515 151987 0.9600 +5515 163071 0.6520 +5515 221496 0.5610 +5515 222235 0.4130 +5515 253143 0.6660 +5515 261726 0.9980 +5515 286151 0.9020 +5515 440093 0.4940 +5515 440686 0.4940 +5515 645545 0.7190 +5515 653604 0.4980 +5515 100506658 0.9170 +5516 5518 0.9990 +5516 5519 0.9990 +5516 5520 0.9990 +5516 5521 0.9970 +5516 5522 0.9770 +5516 5523 0.8650 +5516 5524 0.9170 +5516 5525 0.9920 +5516 5526 0.9660 +5516 5527 0.9950 +5516 5528 0.9990 +5516 5529 0.9900 +5516 5530 0.9080 +5516 5531 0.8850 +5516 5532 0.9150 +5516 5533 0.5850 +5516 5534 0.9180 +5516 5573 0.4830 +5516 5578 0.9200 +5516 5579 0.9150 +5516 5582 0.9070 +5516 5584 0.9150 +5516 5590 0.9110 +5516 5594 0.9540 +5516 5595 0.9250 +5516 5598 0.5140 +5516 5604 0.9280 +5516 5605 0.9210 +5516 5683 0.5020 +5516 5708 0.4900 +5516 5781 0.5550 +5516 5894 0.4890 +5516 5925 0.4810 +5516 5933 0.4500 +5516 5934 0.4500 +5516 5970 0.9350 +5516 6198 0.9200 +5516 6199 0.9190 +5516 6233 0.5360 +5516 6262 0.9000 +5516 6500 0.5960 +5516 6596 0.4190 +5516 6597 0.4790 +5516 6714 0.6350 +5516 6788 0.9170 +5516 6801 0.9980 +5516 6950 0.9950 +5516 6992 0.4800 +5516 7048 0.9260 +5516 7096 0.4280 +5516 7137 0.9040 +5516 7157 0.7140 +5516 7203 0.9940 +5516 7311 0.5740 +5516 7314 0.5400 +5516 7316 0.5480 +5516 7341 0.4560 +5516 7471 0.4990 +5516 7478 0.4990 +5516 7479 0.5000 +5516 7525 0.5490 +5516 7529 0.5460 +5516 7531 0.5230 +5516 7532 0.5420 +5516 7533 0.5570 +5516 7534 0.5450 +5516 7871 0.8150 +5516 7993 0.9640 +5516 8030 0.6230 +5516 8239 0.4650 +5516 8312 0.5250 +5516 8321 0.5330 +5516 8408 0.9130 +5516 8428 0.6970 +5516 8454 0.6030 +5516 8500 0.7310 +5516 8541 0.5070 +5516 8569 0.4220 +5516 8844 0.6220 +5516 8870 0.5100 +5516 8881 0.7670 +5516 8900 0.5650 +5516 8945 0.5450 +5516 9133 0.4740 +5516 9181 0.7190 +5516 9184 0.5630 +5516 9254 0.6700 +5516 9448 0.4330 +5516 9665 0.5330 +5516 9700 0.6780 +5516 9706 0.9120 +5516 9792 0.4770 +5516 9857 0.7660 +5516 9978 0.5290 +5516 9985 0.9150 +5516 9989 0.9640 +5516 10000 0.7170 +5516 10023 0.4260 +5516 10213 0.4320 +5516 10253 0.5350 +5516 10368 0.6500 +5516 10369 0.6500 +5516 10413 0.9020 +5516 10494 0.4870 +5516 10514 0.4980 +5516 10574 0.9940 +5516 10575 0.9940 +5516 10576 0.9940 +5516 10694 0.9950 +5516 10726 0.5330 +5516 10733 0.5220 +5516 10769 0.5220 +5516 10776 0.6490 +5516 10842 0.9000 +5516 10885 0.4300 +5516 10987 0.4060 +5516 11116 0.9940 +5516 11235 0.4520 +5516 22948 0.9940 +5516 23141 0.7440 +5516 23191 0.4660 +5516 23194 0.4130 +5516 23401 0.4260 +5516 25843 0.9970 +5516 25937 0.9030 +5516 26073 0.4540 +5516 26127 0.6640 +5516 26173 0.9940 +5516 26233 0.4130 +5516 26273 0.4340 +5516 26512 0.9940 +5516 27091 0.6970 +5516 27092 0.6500 +5516 27436 0.5630 +5516 28227 0.9470 +5516 29888 0.9960 +5516 29894 0.4020 +5516 29966 0.9960 +5516 51070 0.4060 +5516 51085 0.4460 +5516 51135 0.9080 +5516 51400 0.9660 +5516 51451 0.7090 +5516 51765 0.6480 +5516 54205 0.4010 +5516 54850 0.4130 +5516 55012 0.8910 +5516 55038 0.4850 +5516 55171 0.6200 +5516 55233 0.7780 +5516 55311 0.4030 +5516 55671 0.6970 +5516 55799 0.6630 +5516 55844 0.9940 +5516 55917 0.9950 +5516 56256 0.6900 +5516 57223 0.7360 +5516 57464 0.8590 +5516 57634 0.4010 +5516 57718 0.4660 +5516 59283 0.6970 +5516 59284 0.7030 +5516 59285 0.6500 +5516 60673 0.9000 +5516 64682 0.7650 +5516 64839 0.4130 +5516 65123 0.9940 +5516 78994 0.7790 +5516 80143 0.8060 +5516 80335 0.4420 +5516 80789 0.9940 +5516 81488 0.4300 +5516 83992 0.9950 +5516 84930 0.5670 +5516 85369 0.9950 +5516 85407 0.7340 +5516 89780 0.5110 +5516 93589 0.6630 +5516 116224 0.6030 +5516 126520 0.5520 +5516 136332 0.4550 +5516 139285 0.5050 +5516 139420 0.6920 +5516 144699 0.4130 +5516 151648 0.9730 +5516 151987 0.9450 +5516 222235 0.4640 +5516 253143 0.6470 +5516 261726 0.6300 +5516 286151 0.9020 +5516 645545 0.7190 +5516 100506658 0.9110 +5518 5519 0.9990 +5518 5520 0.9990 +5518 5521 0.9980 +5518 5522 0.9990 +5518 5523 0.9930 +5518 5524 0.9980 +5518 5525 0.9990 +5518 5526 0.9990 +5518 5527 0.9990 +5518 5528 0.9990 +5518 5529 0.9990 +5518 5530 0.9430 +5518 5531 0.9840 +5518 5532 0.9360 +5518 5533 0.7060 +5518 5534 0.9170 +5518 5536 0.4690 +5518 5537 0.7840 +5518 5578 0.9110 +5518 5579 0.9060 +5518 5582 0.9000 +5518 5584 0.9090 +5518 5590 0.9040 +5518 5594 0.9290 +5518 5595 0.9320 +5518 5598 0.4450 +5518 5604 0.9500 +5518 5605 0.9190 +5518 5606 0.4960 +5518 5687 0.5110 +5518 5688 0.4370 +5518 5705 0.5050 +5518 5717 0.8100 +5518 5728 0.5360 +5518 5781 0.6040 +5518 5861 0.4690 +5518 5862 0.4600 +5518 5885 0.6140 +5518 5894 0.5990 +5518 5925 0.4590 +5518 5933 0.4630 +5518 5934 0.4370 +5518 5970 0.9330 +5518 5976 0.6160 +5518 6146 0.4060 +5518 6188 0.4940 +5518 6198 0.9250 +5518 6199 0.9220 +5518 6202 0.4980 +5518 6233 0.5730 +5518 6262 0.9090 +5518 6418 0.5210 +5518 6500 0.5970 +5518 6709 0.4150 +5518 6714 0.6160 +5518 6788 0.9100 +5518 6801 0.9990 +5518 6829 0.8690 +5518 6950 0.6700 +5518 7048 0.9130 +5518 7112 0.5090 +5518 7137 0.9350 +5518 7157 0.9460 +5518 7266 0.4180 +5518 7311 0.5350 +5518 7314 0.5610 +5518 7316 0.5570 +5518 7317 0.4670 +5518 7384 0.4520 +5518 7415 0.7050 +5518 7469 0.8020 +5518 7471 0.4990 +5518 7478 0.4990 +5518 7479 0.4990 +5518 7525 0.5260 +5518 7529 0.8130 +5518 7531 0.5420 +5518 7532 0.6020 +5518 7533 0.5840 +5518 7534 0.5930 +5518 7871 0.9980 +5518 7874 0.6580 +5518 8030 0.7310 +5518 8239 0.4560 +5518 8289 0.9140 +5518 8312 0.7230 +5518 8321 0.5200 +5518 8361 0.5300 +5518 8405 0.4100 +5518 8428 0.9970 +5518 8454 0.6040 +5518 8499 0.9940 +5518 8500 0.9940 +5518 8541 0.6140 +5518 8569 0.4520 +5518 8662 0.4200 +5518 8766 0.6920 +5518 8815 0.5710 +5518 8826 0.7470 +5518 8844 0.4850 +5518 8870 0.4990 +5518 8900 0.7110 +5518 8945 0.6050 +5518 8994 0.4110 +5518 9040 0.4140 +5518 9133 0.4950 +5518 9184 0.5790 +5518 9212 0.6860 +5518 9240 0.5110 +5518 9254 0.6500 +5518 9401 0.5190 +5518 9529 0.5010 +5518 9592 0.4780 +5518 9700 0.8630 +5518 9730 0.5460 +5518 9759 0.6380 +5518 9792 0.4220 +5518 9887 0.5380 +5518 9978 0.5950 +5518 9985 0.9660 +5518 9989 0.8320 +5518 10000 0.7310 +5518 10014 0.4870 +5518 10023 0.5350 +5518 10133 0.5000 +5518 10146 0.4650 +5518 10155 0.4060 +5518 10179 0.6750 +5518 10213 0.4100 +5518 10253 0.6430 +5518 10273 0.5190 +5518 10368 0.6500 +5518 10369 0.6500 +5518 10383 0.6000 +5518 10399 0.5360 +5518 10413 0.9090 +5518 10494 0.9960 +5518 10540 0.5050 +5518 10574 0.4090 +5518 10687 0.5300 +5518 10726 0.5870 +5518 10735 0.6790 +5518 10776 0.8600 +5518 10842 0.9000 +5518 10971 0.5270 +5518 11004 0.4160 +5518 11060 0.5320 +5518 11116 0.4350 +5518 11140 0.5310 +5518 11200 0.6350 +5518 11235 0.9980 +5518 11315 0.4300 +5518 22820 0.4290 +5518 22916 0.5510 +5518 23049 0.5920 +5518 23141 0.8890 +5518 23293 0.5580 +5518 23354 0.5160 +5518 23381 0.5630 +5518 23517 0.6340 +5518 23592 0.5110 +5518 25843 0.9990 +5518 25896 0.8560 +5518 25920 0.8190 +5518 25937 0.9010 +5518 26127 0.6000 +5518 26173 0.9990 +5518 26512 0.9990 +5518 26986 0.6050 +5518 27091 0.6500 +5518 27092 0.6500 +5518 27254 0.7210 +5518 27436 0.5150 +5518 28227 0.9990 +5518 29888 0.9980 +5518 29966 0.9990 +5518 50488 0.6600 +5518 51135 0.9010 +5518 51278 0.6160 +5518 51400 0.9990 +5518 51451 0.7860 +5518 51497 0.8210 +5518 51765 0.8760 +5518 54801 0.5090 +5518 54930 0.4990 +5518 54973 0.9250 +5518 55012 0.7620 +5518 55038 0.7610 +5518 55142 0.4990 +5518 55171 0.6170 +5518 55181 0.5070 +5518 55294 0.6890 +5518 55559 0.4990 +5518 55596 0.6820 +5518 55629 0.5230 +5518 55656 0.9360 +5518 55671 0.6280 +5518 55756 0.9260 +5518 55799 0.6500 +5518 55802 0.5070 +5518 55844 0.9990 +5518 55917 0.9970 +5518 56006 0.5080 +5518 56160 0.4270 +5518 56256 0.8260 +5518 57117 0.5820 +5518 57156 0.4440 +5518 57223 0.6470 +5518 57464 0.9550 +5518 57508 0.9630 +5518 57650 0.8630 +5518 59283 0.6520 +5518 59284 0.6500 +5518 59285 0.6500 +5518 65123 0.9940 +5518 78994 0.7230 +5518 79441 0.4990 +5518 79866 0.4990 +5518 79966 0.4200 +5518 80143 0.9960 +5518 80342 0.9950 +5518 80789 0.9990 +5518 83992 0.9950 +5518 84152 0.5810 +5518 84930 0.8360 +5518 84955 0.6240 +5518 85369 0.9990 +5518 85407 0.8690 +5518 85440 0.4440 +5518 89780 0.5080 +5518 92105 0.9330 +5518 93323 0.4990 +5518 93589 0.6500 +5518 115106 0.4990 +5518 116224 0.8560 +5518 117177 0.4990 +5518 120892 0.5670 +5518 139285 0.5290 +5518 139420 0.5630 +5518 146330 0.4350 +5518 151246 0.8310 +5518 151648 0.9980 +5518 151987 0.9360 +5518 163071 0.6280 +5518 221496 0.5120 +5518 222658 0.4820 +5518 253143 0.6780 +5518 261726 0.9720 +5518 286151 0.9240 +5518 728642 0.5510 +5518 100506658 0.9000 +5519 5520 0.9990 +5519 5521 0.9950 +5519 5522 0.9990 +5519 5523 0.9390 +5519 5524 0.8890 +5519 5525 0.9990 +5519 5526 0.9800 +5519 5527 0.9980 +5519 5528 0.9920 +5519 5529 0.9930 +5519 5530 0.7380 +5519 5531 0.9700 +5519 5532 0.7100 +5519 5533 0.7200 +5519 5534 0.6400 +5519 5537 0.6620 +5519 5578 0.9060 +5519 5579 0.9000 +5519 5582 0.9000 +5519 5584 0.9050 +5519 5590 0.9010 +5519 5594 0.9420 +5519 5595 0.9130 +5519 5598 0.4310 +5519 5604 0.9000 +5519 5605 0.9000 +5519 5781 0.5620 +5519 5894 0.4210 +5519 5898 0.8690 +5519 5925 0.4250 +5519 5933 0.4540 +5519 5934 0.4230 +5519 5970 0.9050 +5519 6198 0.9190 +5519 6199 0.9100 +5519 6233 0.5220 +5519 6262 0.9050 +5519 6500 0.5620 +5519 6596 0.4110 +5519 6714 0.5640 +5519 6788 0.9110 +5519 6801 0.9400 +5519 6850 0.4610 +5519 6950 0.6060 +5519 7048 0.9140 +5519 7137 0.9000 +5519 7157 0.6070 +5519 7311 0.5280 +5519 7314 0.5300 +5519 7316 0.5300 +5519 7471 0.5110 +5519 7478 0.4990 +5519 7479 0.4990 +5519 7525 0.5640 +5519 7529 0.4600 +5519 8175 0.5500 +5519 8289 0.4180 +5519 8312 0.5780 +5519 8321 0.5270 +5519 8428 0.9950 +5519 8454 0.5540 +5519 8517 0.5630 +5519 8844 0.4440 +5519 8870 0.4990 +5519 8900 0.5250 +5519 8945 0.6130 +5519 9133 0.4810 +5519 9184 0.5350 +5519 9254 0.6500 +5519 9575 0.4970 +5519 9592 0.4990 +5519 9700 0.6410 +5519 9792 0.4780 +5519 9978 0.5510 +5519 9985 0.9000 +5519 9989 0.8950 +5519 10000 0.6860 +5519 10368 0.6500 +5519 10369 0.6500 +5519 10413 0.9070 +5519 10494 0.9940 +5519 10726 0.5030 +5519 10776 0.6240 +5519 10842 0.9000 +5519 11235 0.9940 +5519 23235 0.4230 +5519 23291 0.5480 +5519 23451 0.7800 +5519 25843 0.9940 +5519 25937 0.9010 +5519 26127 0.4250 +5519 26173 0.9950 +5519 26512 0.9940 +5519 27091 0.6500 +5519 27092 0.6500 +5519 27436 0.5160 +5519 28227 0.8510 +5519 29888 0.9960 +5519 29966 0.9960 +5519 50488 0.4740 +5519 51135 0.9010 +5519 51400 0.9780 +5519 51451 0.7380 +5519 55012 0.5840 +5519 55038 0.6330 +5519 55171 0.4600 +5519 55671 0.5750 +5519 55799 0.6500 +5519 55844 0.9910 +5519 55917 0.9940 +5519 56256 0.7730 +5519 57223 0.5850 +5519 57650 0.4480 +5519 59283 0.6700 +5519 59284 0.6500 +5519 59285 0.6500 +5519 65123 0.9940 +5519 79365 0.4250 +5519 80005 0.4350 +5519 80143 0.9940 +5519 80342 0.9940 +5519 80789 0.9950 +5519 83992 0.9940 +5519 84152 0.4170 +5519 84930 0.5970 +5519 85369 0.9960 +5519 85407 0.5710 +5519 89780 0.6980 +5519 93589 0.6500 +5519 138639 0.5670 +5519 139285 0.4990 +5519 139420 0.5630 +5519 151246 0.5210 +5519 151648 0.9320 +5519 151987 0.6640 +5519 163071 0.6820 +5519 286151 0.9050 +5519 100506658 0.9000 +5520 5521 0.9510 +5520 5522 0.9270 +5520 5523 0.9510 +5520 5524 0.8730 +5520 5525 0.9930 +5520 5526 0.9160 +5520 5527 0.9950 +5520 5528 0.9670 +5520 5529 0.9720 +5520 5530 0.9600 +5520 5531 0.8920 +5520 5532 0.9500 +5520 5533 0.7690 +5520 5534 0.9150 +5520 5537 0.7900 +5520 5584 0.9140 +5520 5590 0.9100 +5520 5728 0.4220 +5520 5784 0.4720 +5520 5889 0.5440 +5520 5890 0.5760 +5520 5892 0.5510 +5520 5894 0.4990 +5520 5933 0.4260 +5520 5934 0.4490 +5520 5970 0.9070 +5520 5976 0.5300 +5520 6198 0.6620 +5520 6262 0.9000 +5520 6500 0.7780 +5520 6654 0.5380 +5520 6788 0.9040 +5520 6801 0.6320 +5520 7112 0.5090 +5520 7137 0.9020 +5520 7157 0.5190 +5520 7465 0.7140 +5520 8312 0.6830 +5520 8438 0.5460 +5520 8452 0.5910 +5520 8454 0.6130 +5520 8556 0.4820 +5520 8815 0.6480 +5520 8844 0.6300 +5520 8900 0.5830 +5520 9088 0.6440 +5520 9254 0.6530 +5520 9401 0.5250 +5520 9592 0.6610 +5520 9700 0.8960 +5520 9759 0.5660 +5520 9792 0.5540 +5520 9887 0.5760 +5520 9989 0.8980 +5520 10000 0.7080 +5520 10179 0.4290 +5520 10368 0.6500 +5520 10369 0.6500 +5520 10413 0.9100 +5520 10733 0.5700 +5520 10769 0.5750 +5520 10776 0.8050 +5520 11080 0.4200 +5520 11200 0.8440 +5520 11329 0.5140 +5520 22916 0.5530 +5520 23012 0.5360 +5520 23049 0.5670 +5520 23102 0.4050 +5520 23141 0.7510 +5520 23194 0.4720 +5520 23293 0.5330 +5520 23360 0.5620 +5520 23363 0.4120 +5520 23381 0.5090 +5520 23476 0.5840 +5520 23517 0.4190 +5520 23592 0.5410 +5520 25937 0.9040 +5520 26233 0.4720 +5520 26986 0.5320 +5520 27091 0.6770 +5520 27092 0.6500 +5520 27152 0.4620 +5520 28227 0.9030 +5520 29888 0.4580 +5520 29966 0.5000 +5520 50488 0.7220 +5520 51135 0.9060 +5520 51295 0.4660 +5520 51343 0.5100 +5520 51400 0.9070 +5520 51451 0.9800 +5520 51755 0.5260 +5520 54850 0.4720 +5520 55012 0.7800 +5520 55038 0.7850 +5520 55051 0.8610 +5520 55120 0.5110 +5520 55181 0.5060 +5520 55233 0.8580 +5520 55629 0.5070 +5520 55671 0.7130 +5520 55799 0.6630 +5520 55802 0.5490 +5520 55844 0.9950 +5520 56006 0.5090 +5520 56256 0.8260 +5520 57223 0.6280 +5520 57459 0.4030 +5520 57614 0.5570 +5520 57650 0.5240 +5520 57718 0.6160 +5520 59283 0.6770 +5520 59284 0.6770 +5520 59285 0.6500 +5520 64839 0.4970 +5520 79728 0.4020 +5520 80124 0.4030 +5520 84930 0.6610 +5520 85407 0.7240 +5520 85417 0.4080 +5520 93589 0.6580 +5520 116224 0.8400 +5520 120892 0.5370 +5520 126520 0.5750 +5520 138639 0.7840 +5520 139420 0.5870 +5520 143384 0.5190 +5520 144699 0.4720 +5520 146330 0.6390 +5520 151987 0.9500 +5520 166979 0.4620 +5520 221496 0.5060 +5520 222235 0.4720 +5520 261726 0.4250 +5520 494551 0.6350 +5520 728378 0.4140 +5520 100506658 0.9010 +5521 5522 0.9570 +5521 5523 0.8750 +5521 5524 0.7390 +5521 5525 0.8310 +5521 5526 0.8840 +5521 5527 0.8190 +5521 5528 0.8110 +5521 5529 0.8210 +5521 5530 0.7590 +5521 5531 0.9290 +5521 5532 0.7540 +5521 5533 0.7540 +5521 5534 0.5840 +5521 5537 0.6740 +5521 5582 0.7440 +5521 5584 0.9070 +5521 5590 0.9100 +5521 5970 0.9020 +5521 6198 0.4200 +5521 6262 0.9050 +5521 6310 0.7070 +5521 6311 0.6950 +5521 6314 0.9230 +5521 6500 0.7470 +5521 6712 0.5910 +5521 6788 0.9010 +5521 6801 0.4610 +5521 6860 0.4330 +5521 6908 0.6320 +5521 6950 0.6430 +5521 7137 0.9000 +5521 7203 0.6300 +5521 7465 0.6350 +5521 8395 0.5850 +5521 8452 0.6790 +5521 8454 0.5560 +5521 9088 0.6350 +5521 9254 0.6740 +5521 9700 0.8860 +5521 9989 0.8050 +5521 10000 0.6970 +5521 10179 0.4200 +5521 10368 0.6780 +5521 10369 0.6670 +5521 10413 0.9030 +5521 10528 0.5620 +5521 10574 0.6310 +5521 10575 0.6300 +5521 10576 0.6300 +5521 10694 0.4180 +5521 10733 0.5540 +5521 10769 0.5750 +5521 10776 0.6500 +5521 10939 0.5590 +5521 11200 0.8090 +5521 11329 0.5100 +5521 22948 0.6520 +5521 23012 0.5100 +5521 23194 0.4720 +5521 23255 0.4240 +5521 23345 0.6120 +5521 23360 0.5530 +5521 23517 0.6280 +5521 25814 0.8050 +5521 25894 0.4800 +5521 25937 0.9010 +5521 26233 0.4720 +5521 27091 0.6880 +5521 27092 0.6500 +5521 27152 0.4740 +5521 28227 0.8070 +5521 29966 0.4080 +5521 50488 0.5490 +5521 51135 0.9050 +5521 51278 0.5940 +5521 51343 0.4620 +5521 51400 0.6390 +5521 51451 0.4960 +5521 54850 0.4720 +5521 55012 0.7560 +5521 55038 0.4670 +5521 55051 0.8590 +5521 55233 0.8510 +5521 55596 0.6170 +5521 55671 0.6020 +5521 55799 0.7030 +5521 55844 0.9350 +5521 56256 0.4660 +5521 57223 0.6030 +5521 57338 0.4850 +5521 57614 0.5530 +5521 57718 0.5810 +5521 59283 0.6990 +5521 59284 0.7000 +5521 59285 0.6500 +5521 64839 0.4750 +5521 65061 0.4310 +5521 84930 0.4360 +5521 85407 0.6920 +5521 93589 0.6580 +5521 116224 0.4570 +5521 126520 0.5940 +5521 139420 0.5870 +5521 143384 0.5100 +5521 144165 0.5340 +5521 144699 0.4730 +5521 146057 0.6920 +5521 151987 0.6430 +5521 166979 0.4620 +5521 202374 0.4600 +5521 220134 0.6780 +5521 221150 0.4810 +5521 222235 0.4720 +5521 339453 0.4200 +5521 343641 0.4230 +5521 348235 0.5730 +5521 494551 0.6410 +5521 100506658 0.9010 +5522 5523 0.7950 +5522 5524 0.7590 +5522 5525 0.8390 +5522 5526 0.8280 +5522 5527 0.8730 +5522 5528 0.7780 +5522 5529 0.7710 +5522 5530 0.5960 +5522 5531 0.7490 +5522 5532 0.6300 +5522 5533 0.5820 +5522 5534 0.5700 +5522 5584 0.9020 +5522 5590 0.9060 +5522 5970 0.9050 +5522 6262 0.9070 +5522 6788 0.9000 +5522 6801 0.6890 +5522 6950 0.9960 +5522 7137 0.9010 +5522 7203 0.9940 +5522 9254 0.6590 +5522 9532 0.4220 +5522 9592 0.4220 +5522 9792 0.4930 +5522 9989 0.5750 +5522 10000 0.6750 +5522 10368 0.6850 +5522 10369 0.6650 +5522 10413 0.9030 +5522 10574 0.9940 +5522 10575 0.9940 +5522 10576 0.9940 +5522 10694 0.9940 +5522 22948 0.9940 +5522 23235 0.6630 +5522 23255 0.4460 +5522 25937 0.9030 +5522 27091 0.6820 +5522 27092 0.6650 +5522 28227 0.8660 +5522 50488 0.5210 +5522 51135 0.9000 +5522 51278 0.7480 +5522 55012 0.6900 +5522 55038 0.8180 +5522 55671 0.5510 +5522 55799 0.6590 +5522 55844 0.9480 +5522 56256 0.8430 +5522 57223 0.5510 +5522 59283 0.6850 +5522 59284 0.6980 +5522 59285 0.6510 +5522 79269 0.4430 +5522 84912 0.5780 +5522 85407 0.5480 +5522 93589 0.6500 +5522 116224 0.7590 +5522 139420 0.5510 +5522 151987 0.5870 +5522 155061 0.4410 +5522 159090 0.4200 +5522 163071 0.7920 +5522 220134 0.6250 +5522 221150 0.4890 +5522 348235 0.4380 +5522 100506658 0.9060 +5522 100507050 0.4140 +5523 5524 0.9190 +5523 5525 0.9280 +5523 5526 0.9060 +5523 5527 0.9550 +5523 5528 0.8710 +5523 5529 0.8420 +5523 5530 0.7690 +5523 5531 0.7480 +5523 5532 0.7580 +5523 5533 0.6160 +5523 5534 0.7310 +5523 5536 0.4270 +5523 5537 0.4980 +5523 5566 0.4080 +5523 5567 0.4240 +5523 5568 0.4080 +5523 6262 0.9640 +5523 6424 0.4270 +5523 6801 0.7140 +5523 7137 0.9050 +5523 8994 0.5460 +5523 9254 0.6590 +5523 9472 0.4190 +5523 9989 0.8060 +5523 10000 0.6560 +5523 10368 0.6500 +5523 10369 0.6500 +5523 27091 0.6550 +5523 27092 0.6500 +5523 28227 0.8160 +5523 29888 0.4630 +5523 29966 0.5350 +5523 50488 0.7690 +5523 51157 0.4560 +5523 51400 0.4800 +5523 51451 0.5850 +5523 55671 0.5930 +5523 55799 0.6500 +5523 55844 0.9220 +5523 57223 0.5840 +5523 57718 0.4300 +5523 59283 0.6550 +5523 59284 0.6550 +5523 59285 0.6500 +5523 83932 0.8270 +5523 84687 0.6610 +5523 84930 0.4050 +5523 85407 0.8980 +5523 85409 0.5620 +5523 93589 0.6500 +5523 126374 0.6550 +5523 139420 0.5470 +5523 151987 0.7950 +5524 5525 0.8640 +5524 5526 0.7720 +5524 5527 0.9220 +5524 5528 0.7930 +5524 5529 0.7430 +5524 5530 0.8440 +5524 5531 0.9740 +5524 5532 0.8230 +5524 5533 0.7370 +5524 5534 0.7560 +5524 5537 0.7920 +5524 6418 0.4530 +5524 6801 0.4070 +5524 6950 0.4570 +5524 7011 0.5880 +5524 7203 0.4630 +5524 8312 0.7660 +5524 9836 0.5180 +5524 9897 0.4870 +5524 9989 0.8800 +5524 10574 0.4630 +5524 10575 0.4600 +5524 10576 0.4600 +5524 10694 0.4600 +5524 22948 0.4570 +5524 23360 0.5220 +5524 23536 0.4620 +5524 28227 0.8750 +5524 50488 0.4040 +5524 51167 0.4310 +5524 51400 0.7560 +5524 51451 0.8430 +5524 55012 0.4070 +5524 55671 0.9410 +5524 55844 0.8420 +5524 57223 0.7360 +5524 57614 0.5950 +5524 57718 0.6380 +5524 84231 0.4360 +5524 85407 0.7610 +5524 139420 0.7140 +5524 151987 0.9720 +5524 154796 0.6120 +5524 261726 0.5160 +5524 441521 0.4820 +5524 645545 0.4800 +5525 5526 0.8480 +5525 5527 0.9690 +5525 5528 0.9350 +5525 5529 0.9150 +5525 5530 0.9380 +5525 5531 0.7930 +5525 5532 0.9410 +5525 5533 0.6970 +5525 5534 0.9160 +5525 5537 0.6440 +5525 5610 0.6290 +5525 5781 0.5510 +5525 5894 0.4910 +5525 6233 0.5120 +5525 6241 0.4120 +5525 6262 0.9400 +5525 6418 0.5030 +5525 6500 0.5500 +5525 6596 0.4270 +5525 6714 0.5910 +5525 6801 0.6300 +5525 7137 0.9150 +5525 7157 0.5670 +5525 7311 0.5000 +5525 7314 0.5160 +5525 7316 0.5160 +5525 7471 0.4990 +5525 7478 0.4990 +5525 7479 0.4990 +5525 7525 0.5330 +5525 7529 0.4820 +5525 8312 0.8520 +5525 8321 0.5330 +5525 8454 0.5380 +5525 8844 0.6360 +5525 8945 0.5690 +5525 9133 0.4960 +5525 9181 0.4660 +5525 9184 0.6480 +5525 9212 0.4170 +5525 9232 0.4150 +5525 9254 0.6730 +5525 9472 0.4890 +5525 9510 0.4100 +5525 9700 0.7330 +5525 9759 0.4390 +5525 9926 0.8600 +5525 9978 0.5000 +5525 9985 0.9120 +5525 9989 0.8630 +5525 10000 0.7320 +5525 10023 0.4130 +5525 10368 0.6500 +5525 10369 0.6550 +5525 10726 0.5140 +5525 10776 0.4150 +5525 11149 0.7400 +5525 22873 0.6450 +5525 23360 0.4740 +5525 23401 0.4160 +5525 24137 0.4400 +5525 27091 0.6610 +5525 27092 0.6500 +5525 27338 0.6600 +5525 27350 0.4470 +5525 27436 0.5170 +5525 28227 0.9270 +5525 29888 0.4600 +5525 29966 0.4460 +5525 50488 0.6470 +5525 51400 0.7220 +5525 51451 0.5800 +5525 51719 0.4490 +5525 55012 0.7650 +5525 55671 0.5730 +5525 55799 0.6500 +5525 55844 0.9730 +5525 57223 0.5630 +5525 57614 0.4740 +5525 57650 0.5220 +5525 57718 0.4940 +5525 59283 0.6610 +5525 59284 0.6610 +5525 59285 0.6500 +5525 78994 0.7090 +5525 81563 0.6220 +5525 85407 0.7320 +5525 89780 0.7000 +5525 93589 0.6500 +5525 131583 0.5910 +5525 139285 0.4990 +5525 139420 0.5540 +5525 151246 0.6370 +5525 151648 0.9750 +5525 151987 0.9180 +5525 157313 0.5870 +5526 5527 0.8590 +5526 5528 0.7510 +5526 5529 0.7250 +5526 5530 0.7310 +5526 5531 0.7660 +5526 5532 0.7060 +5526 5533 0.7010 +5526 5534 0.6350 +5526 5537 0.5640 +5526 5594 0.6650 +5526 5595 0.5360 +5526 5781 0.5220 +5526 5894 0.4650 +5526 6233 0.5110 +5526 6262 0.9000 +5526 6500 0.5200 +5526 6714 0.5830 +5526 6801 0.4940 +5526 6992 0.4590 +5526 7137 0.9000 +5526 7311 0.4990 +5526 7314 0.5160 +5526 7316 0.5250 +5526 7471 0.5000 +5526 7478 0.4990 +5526 7479 0.4990 +5526 7494 0.7500 +5526 7525 0.5450 +5526 7529 0.4540 +5526 8312 0.5500 +5526 8321 0.5360 +5526 8454 0.5320 +5526 8844 0.6620 +5526 8870 0.7060 +5526 8945 0.6000 +5526 9133 0.4870 +5526 9181 0.5030 +5526 9184 0.5430 +5526 9254 0.6580 +5526 9472 0.4710 +5526 9700 0.5620 +5526 9978 0.5040 +5526 9985 0.9070 +5526 9989 0.7450 +5526 10000 0.7290 +5526 10023 0.4110 +5526 10368 0.6620 +5526 10369 0.6500 +5526 10726 0.5070 +5526 23360 0.4690 +5526 27091 0.6610 +5526 27092 0.6500 +5526 27436 0.5190 +5526 28227 0.8290 +5526 29966 0.4590 +5526 50488 0.6210 +5526 51400 0.6060 +5526 51451 0.4610 +5526 55012 0.6230 +5526 55671 0.5540 +5526 55799 0.6560 +5526 55844 0.8810 +5526 57223 0.5750 +5526 57614 0.4690 +5526 57718 0.4690 +5526 59283 0.6610 +5526 59284 0.6700 +5526 59285 0.6500 +5526 64897 0.4010 +5526 80256 0.4780 +5526 81563 0.4530 +5526 85407 0.5740 +5526 89780 0.7100 +5526 93589 0.6500 +5526 122876 0.5530 +5526 131583 0.6100 +5526 139285 0.5040 +5526 139420 0.5660 +5526 151648 0.9600 +5526 151987 0.5950 +5526 157313 0.5890 +5526 170589 0.7940 +5526 326625 0.4120 +5527 5528 0.8490 +5527 5529 0.9000 +5527 5530 0.9430 +5527 5531 0.8740 +5527 5532 0.9390 +5527 5533 0.7260 +5527 5534 0.9190 +5527 5537 0.6400 +5527 5594 0.6570 +5527 5595 0.5500 +5527 5781 0.5730 +5527 5829 0.5190 +5527 5885 0.5030 +5527 5894 0.6150 +5527 6233 0.5210 +5527 6262 0.9090 +5527 6500 0.5510 +5527 6714 0.5830 +5527 6801 0.7310 +5527 7137 0.9020 +5527 7157 0.8780 +5527 7311 0.5090 +5527 7314 0.5390 +5527 7316 0.5480 +5527 7471 0.4990 +5527 7478 0.5020 +5527 7479 0.4990 +5527 7525 0.5570 +5527 7529 0.5810 +5527 7582 0.4120 +5527 8312 0.7000 +5527 8321 0.5170 +5527 8454 0.5800 +5527 8844 0.5110 +5527 8870 0.7060 +5527 8945 0.5530 +5527 9133 0.5010 +5527 9184 0.6030 +5527 9254 0.6580 +5527 9700 0.5890 +5527 9793 0.4560 +5527 9901 0.4150 +5527 9978 0.5130 +5527 9985 0.9060 +5527 9989 0.8660 +5527 10000 0.7230 +5527 10023 0.4240 +5527 10368 0.6500 +5527 10369 0.6500 +5527 10726 0.5180 +5527 11200 0.5660 +5527 23360 0.4840 +5527 23380 0.4420 +5527 23401 0.4310 +5527 24137 0.6930 +5527 27091 0.6610 +5527 27092 0.6500 +5527 27436 0.5260 +5527 28227 0.8920 +5527 29761 0.4040 +5527 29966 0.4450 +5527 50488 0.6060 +5527 51105 0.4220 +5527 51143 0.4450 +5527 51400 0.9810 +5527 51451 0.5250 +5527 51759 0.4390 +5527 54821 0.4620 +5527 55012 0.5560 +5527 55057 0.4870 +5527 55122 0.4010 +5527 55143 0.4080 +5527 55605 0.4960 +5527 55671 0.5740 +5527 55799 0.6500 +5527 55844 0.9250 +5527 57223 0.5790 +5527 57614 0.4740 +5527 57650 0.4760 +5527 57718 0.5160 +5527 59283 0.6670 +5527 59284 0.6610 +5527 59285 0.6500 +5527 78994 0.6340 +5527 81562 0.4110 +5527 85407 0.7520 +5527 89780 0.5650 +5527 91050 0.5140 +5527 91687 0.4450 +5527 93589 0.6500 +5527 131583 0.4650 +5527 139285 0.4990 +5527 139420 0.5540 +5527 151246 0.5450 +5527 151393 0.4540 +5527 151648 0.9970 +5527 151987 0.9180 +5527 157313 0.9170 +5527 168374 0.4390 +5527 285643 0.6020 +5527 348235 0.4220 +5528 5529 0.5720 +5528 5530 0.7220 +5528 5531 0.9410 +5528 5532 0.7320 +5528 5533 0.7050 +5528 5534 0.6110 +5528 5536 0.4660 +5528 5537 0.6210 +5528 5594 0.4580 +5528 5595 0.4860 +5528 5598 0.4590 +5528 5781 0.5990 +5528 5894 0.4830 +5528 6233 0.5180 +5528 6241 0.4900 +5528 6262 0.9140 +5528 6500 0.5240 +5528 6714 0.5810 +5528 6801 0.5120 +5528 7137 0.9050 +5528 7311 0.5450 +5528 7314 0.5230 +5528 7316 0.5230 +5528 7471 0.4990 +5528 7478 0.5020 +5528 7479 0.4990 +5528 7525 0.5330 +5528 7529 0.5100 +5528 8078 0.4850 +5528 8312 0.5650 +5528 8321 0.5260 +5528 8454 0.5620 +5528 8500 0.8050 +5528 8844 0.5090 +5528 8945 0.5850 +5528 9133 0.5060 +5528 9184 0.5800 +5528 9254 0.6500 +5528 9320 0.4310 +5528 9472 0.6970 +5528 9700 0.5800 +5528 9810 0.4390 +5528 9978 0.5110 +5528 9985 0.9090 +5528 9989 0.8040 +5528 10000 0.7590 +5528 10368 0.6500 +5528 10369 0.6500 +5528 10726 0.5350 +5528 10776 0.4800 +5528 23214 0.4130 +5528 23360 0.4880 +5528 24137 0.5800 +5528 27091 0.6610 +5528 27092 0.6500 +5528 27436 0.5170 +5528 28227 0.8230 +5528 29966 0.5380 +5528 50488 0.6820 +5528 51085 0.4050 +5528 51400 0.8960 +5528 51451 0.5780 +5528 54919 0.4730 +5528 55012 0.4560 +5528 55057 0.4870 +5528 55605 0.4790 +5528 55671 0.5920 +5528 55799 0.6500 +5528 55844 0.9590 +5528 57223 0.6030 +5528 57614 0.4710 +5528 57626 0.4950 +5528 57680 0.4060 +5528 57718 0.5430 +5528 57805 0.4380 +5528 59283 0.6710 +5528 59284 0.6610 +5528 59285 0.6500 +5528 84152 0.6350 +5528 84930 0.4330 +5528 85407 0.5800 +5528 89780 0.6920 +5528 93589 0.6500 +5528 116138 0.9490 +5528 139285 0.5090 +5528 139420 0.5540 +5528 151246 0.6090 +5528 151648 0.9700 +5528 151987 0.6520 +5528 157313 0.6980 +5528 261726 0.4020 +5528 285643 0.4870 +5528 729440 0.4220 +5529 5530 0.7260 +5529 5531 0.7850 +5529 5532 0.7400 +5529 5533 0.7360 +5529 5534 0.6090 +5529 5537 0.6430 +5529 5781 0.5590 +5529 5894 0.4800 +5529 6233 0.5200 +5529 6262 0.9000 +5529 6500 0.5530 +5529 6714 0.5700 +5529 6801 0.6060 +5529 7023 0.4090 +5529 7137 0.9000 +5529 7311 0.5010 +5529 7314 0.5160 +5529 7316 0.5160 +5529 7471 0.4990 +5529 7478 0.4990 +5529 7479 0.4990 +5529 7525 0.5360 +5529 7529 0.5270 +5529 8312 0.5800 +5529 8321 0.5780 +5529 8454 0.5510 +5529 8539 0.4810 +5529 8844 0.6170 +5529 8945 0.5640 +5529 9133 0.4880 +5529 9184 0.5880 +5529 9254 0.6500 +5529 9575 0.4390 +5529 9700 0.5810 +5529 9978 0.5270 +5529 9985 0.9060 +5529 9989 0.7740 +5529 10000 0.7210 +5529 10144 0.4010 +5529 10368 0.6500 +5529 10369 0.6500 +5529 10726 0.5200 +5529 23255 0.5720 +5529 23291 0.4790 +5529 23300 0.5600 +5529 23360 0.4780 +5529 23401 0.4430 +5529 25939 0.4300 +5529 27091 0.6610 +5529 27092 0.6500 +5529 27436 0.5220 +5529 28227 0.7930 +5529 29127 0.4100 +5529 29888 0.4500 +5529 29966 0.5220 +5529 50488 0.5720 +5529 51400 0.6120 +5529 51451 0.5030 +5529 55012 0.5380 +5529 55671 0.5730 +5529 55799 0.6720 +5529 55844 0.8840 +5529 57223 0.5660 +5529 57614 0.4730 +5529 57650 0.4350 +5529 57718 0.4800 +5529 59283 0.6610 +5529 59284 0.6610 +5529 59285 0.6500 +5529 79365 0.4270 +5529 81563 0.4250 +5529 85407 0.5600 +5529 89780 0.6900 +5529 93589 0.6500 +5529 139285 0.4990 +5529 139420 0.5540 +5529 151246 0.4580 +5529 151648 0.9580 +5529 151987 0.6690 +5529 157313 0.5590 +5530 5531 0.5560 +5530 5532 0.9940 +5530 5533 0.9670 +5530 5534 0.9990 +5530 5578 0.7260 +5530 5594 0.6210 +5530 5595 0.5340 +5530 5728 0.4890 +5530 5743 0.4630 +5530 5795 0.4260 +5530 5954 0.5880 +5530 5971 0.4560 +5530 6238 0.4280 +5530 6396 0.5470 +5530 6548 0.9120 +5530 6647 0.9500 +5530 6655 0.4100 +5530 6714 0.4100 +5530 6733 0.4140 +5530 6790 0.5080 +5530 6885 0.4960 +5530 6992 0.4780 +5530 7097 0.5030 +5530 7402 0.5760 +5530 7447 0.4200 +5530 8048 0.4970 +5530 8536 0.4730 +5530 8697 0.6720 +5530 8881 0.7450 +5530 9212 0.4860 +5530 9495 0.9170 +5530 9989 0.8260 +5530 10231 0.9460 +5530 10393 0.6640 +5530 10519 0.4210 +5530 10539 0.5950 +5530 10725 0.6360 +5530 10733 0.6300 +5530 11081 0.8180 +5530 11123 0.9430 +5530 23236 0.7310 +5530 23387 0.6220 +5530 23413 0.6310 +5530 23435 0.9200 +5530 23523 0.6160 +5530 25847 0.6540 +5530 26040 0.6210 +5530 26073 0.4320 +5530 26273 0.4720 +5530 28227 0.7680 +5530 29760 0.4090 +5530 29882 0.6550 +5530 29894 0.4020 +5530 29945 0.6590 +5530 30816 0.4240 +5530 30818 0.4820 +5530 51154 0.4820 +5530 51393 0.4220 +5530 51433 0.6650 +5530 51434 0.6540 +5530 51778 0.4110 +5530 51806 0.9970 +5530 54432 0.4750 +5530 54434 0.9150 +5530 54961 0.9160 +5530 55239 0.4380 +5530 55294 0.5070 +5530 55512 0.4650 +5530 55619 0.4880 +5530 55671 0.7090 +5530 55723 0.4070 +5530 55784 0.4230 +5530 55844 0.7650 +5530 57118 0.4420 +5530 57223 0.7290 +5530 63928 0.4230 +5530 63977 0.4130 +5530 64682 0.7580 +5530 79624 0.5240 +5530 80005 0.4470 +5530 80335 0.6760 +5530 84152 0.9230 +5530 84951 0.4980 +5530 84955 0.6240 +5530 85407 0.7200 +5530 85464 0.9200 +5530 91860 0.9970 +5530 114801 0.4900 +5530 116143 0.6670 +5530 116224 0.7510 +5530 136332 0.4230 +5530 139420 0.7170 +5530 139818 0.4730 +5530 151987 0.9390 +5530 163688 0.9970 +5530 200186 0.9370 +5530 200958 0.4430 +5530 246184 0.6610 +5530 285175 0.4390 +5530 404550 0.8730 +5530 405754 0.4460 +5530 493829 0.5370 +5530 642489 0.5450 +5530 645545 0.4130 +5531 5532 0.5510 +5531 5533 0.5500 +5531 5534 0.6390 +5531 5537 0.4990 +5531 5595 0.6410 +5531 5604 0.4970 +5531 5613 0.4560 +5531 5888 0.6910 +5531 5893 0.4190 +5531 5902 0.6410 +5531 5911 0.4180 +5531 5966 0.4240 +5531 5970 0.7000 +5531 6117 0.5910 +5531 6118 0.7710 +5531 6119 0.4390 +5531 6146 0.4050 +5531 6416 0.4050 +5531 6801 0.4630 +5531 6827 0.4650 +5531 6829 0.8420 +5531 6907 0.4920 +5531 6911 0.4310 +5531 6950 0.8160 +5531 6992 0.4870 +5531 7157 0.4210 +5531 7158 0.5530 +5531 7203 0.7900 +5531 7408 0.5640 +5531 8030 0.9170 +5531 8189 0.4220 +5531 8337 0.4370 +5531 8338 0.4180 +5531 8448 0.5390 +5531 8479 0.6150 +5531 8493 0.6550 +5531 8517 0.6230 +5531 8732 0.5620 +5531 8841 0.4880 +5531 9025 0.5270 +5531 9156 0.4640 +5531 9212 0.4100 +5531 9344 0.4720 +5531 9701 0.6880 +5531 9759 0.5880 +5531 9785 0.5780 +5531 9989 0.9990 +5531 10155 0.6680 +5531 10262 0.5180 +5531 10423 0.5120 +5531 10492 0.4100 +5531 10574 0.8150 +5531 10575 0.7760 +5531 10576 0.7760 +5531 10694 0.7830 +5531 10733 0.5180 +5531 10769 0.7630 +5531 10992 0.4510 +5531 11043 0.4200 +5531 11151 0.5320 +5531 11184 0.5910 +5531 11198 0.5030 +5531 11200 0.7600 +5531 11218 0.5570 +5531 11273 0.5700 +5531 11276 0.4920 +5531 22870 0.7250 +5531 22948 0.8260 +5531 23360 0.4100 +5531 23450 0.4470 +5531 26073 0.4560 +5531 26273 0.4320 +5531 26470 0.5770 +5531 27339 0.4550 +5531 28227 0.7040 +5531 29101 0.4290 +5531 29894 0.4180 +5531 50628 0.6600 +5531 51001 0.4430 +5531 51400 0.6530 +5531 51451 0.8700 +5531 51639 0.4500 +5531 55038 0.4700 +5531 55291 0.6840 +5531 55671 0.9990 +5531 55844 0.9000 +5531 56254 0.4200 +5531 57223 0.9990 +5531 57464 0.4090 +5531 57590 0.5050 +5531 57634 0.4800 +5531 57718 0.9820 +5531 58497 0.5420 +5531 79031 0.4050 +5531 79153 0.4020 +5531 79447 0.5390 +5531 79718 0.4720 +5531 80335 0.5790 +5531 80895 0.4690 +5531 81608 0.4010 +5531 83443 0.4480 +5531 83719 0.5030 +5531 83723 0.4780 +5531 84232 0.4990 +5531 84517 0.4240 +5531 85407 0.5400 +5531 90665 0.4850 +5531 112476 0.4770 +5531 124446 0.4430 +5531 126520 0.7630 +5531 136332 0.4150 +5531 139420 0.9850 +5531 139741 0.4100 +5531 140625 0.4090 +5531 151987 0.9990 +5531 154796 0.4030 +5531 164832 0.4800 +5531 200186 0.9180 +5531 253980 0.7120 +5531 253982 0.5400 +5531 261726 0.9880 +5531 283897 0.4180 +5531 283899 0.5560 +5531 645545 0.8300 +5532 5533 0.9940 +5532 5534 0.9990 +5532 5578 0.5520 +5532 5594 0.6540 +5532 5595 0.5530 +5532 6092 0.5110 +5532 6647 0.9090 +5532 6992 0.4790 +5532 7942 0.6790 +5532 8650 0.4100 +5532 8697 0.6590 +5532 8881 0.7760 +5532 9495 0.7410 +5532 9497 0.7960 +5532 9989 0.8140 +5532 10231 0.9360 +5532 10393 0.6650 +5532 10725 0.4110 +5532 11123 0.9680 +5532 23008 0.5670 +5532 23236 0.7000 +5532 23435 0.9120 +5532 25847 0.6520 +5532 26073 0.4350 +5532 26273 0.4430 +5532 27032 0.4020 +5532 28227 0.7530 +5532 29882 0.6690 +5532 29894 0.4030 +5532 29945 0.6680 +5532 51433 0.6670 +5532 51434 0.6540 +5532 51806 0.9770 +5532 54434 0.9150 +5532 54961 0.9160 +5532 55671 0.7000 +5532 55844 0.7520 +5532 57223 0.6910 +5532 58155 0.4680 +5532 64682 0.7650 +5532 80309 0.4410 +5532 80335 0.6760 +5532 84152 0.9130 +5532 84913 0.6560 +5532 84951 0.4840 +5532 85407 0.7260 +5532 85464 0.9190 +5532 91860 0.9750 +5532 114801 0.6030 +5532 116143 0.7470 +5532 117583 0.4910 +5532 124045 0.4060 +5532 136332 0.4230 +5532 139420 0.6860 +5532 146378 0.4790 +5532 151987 0.9390 +5532 163688 0.9750 +5532 171024 0.5530 +5532 200186 0.9370 +5532 246184 0.6830 +5532 642489 0.5520 +5532 645545 0.4130 +5533 5534 0.9990 +5533 5594 0.5130 +5533 5625 0.5460 +5533 5999 0.5810 +5533 6430 0.4440 +5533 6532 0.4780 +5533 6616 0.4280 +5533 6625 0.4160 +5533 6647 0.9020 +5533 6854 0.4080 +5533 6992 0.4960 +5533 7529 0.5130 +5533 7531 0.5290 +5533 7532 0.5130 +5533 7533 0.5230 +5533 7534 0.5130 +5533 8697 0.6510 +5533 8881 0.7450 +5533 9685 0.4180 +5533 9722 0.5790 +5533 9989 0.6890 +5533 10231 0.8780 +5533 10393 0.6650 +5533 10971 0.5210 +5533 11123 0.9080 +5533 11162 0.4080 +5533 23236 0.7150 +5533 23387 0.4890 +5533 23435 0.9410 +5533 25847 0.6500 +5533 26003 0.4200 +5533 26073 0.4320 +5533 26273 0.4360 +5533 27185 0.5800 +5533 28227 0.5950 +5533 29801 0.6100 +5533 29882 0.6600 +5533 29894 0.4210 +5533 29945 0.6620 +5533 51433 0.6630 +5533 51434 0.6510 +5533 51806 0.9470 +5533 54434 0.9150 +5533 54961 0.9150 +5533 55133 0.5610 +5533 55367 0.4050 +5533 55671 0.6890 +5533 55844 0.5910 +5533 57223 0.6870 +5533 64682 0.7560 +5533 65078 0.4120 +5533 79012 0.4360 +5533 80271 0.5690 +5533 80335 0.4400 +5533 84062 0.7070 +5533 84152 0.9150 +5533 84251 0.4680 +5533 85407 0.5400 +5533 85464 0.9150 +5533 90835 0.4380 +5533 91752 0.6130 +5533 91860 0.9450 +5533 114801 0.4470 +5533 116143 0.6810 +5533 124045 0.5310 +5533 136332 0.4230 +5533 139420 0.6860 +5533 151987 0.7160 +5533 154664 0.4760 +5533 163688 0.9400 +5533 200186 0.9460 +5533 246184 0.6600 +5533 267012 0.6870 +5533 319100 0.6280 +5533 642489 0.5450 +5533 645545 0.4130 +5533 728537 0.4800 +5533 100528030 0.4290 +5534 5578 0.6150 +5534 5594 0.5070 +5534 5595 0.4510 +5534 5704 0.5010 +5534 6455 0.4020 +5534 6548 0.9110 +5534 6647 0.9160 +5534 6663 0.5700 +5534 7529 0.5010 +5534 7531 0.4760 +5534 7532 0.5570 +5534 7533 0.4890 +5534 7534 0.4990 +5534 8573 0.4490 +5534 8697 0.6970 +5534 8881 0.6760 +5534 9284 0.4310 +5534 9352 0.4930 +5534 9423 0.4980 +5534 9463 0.5710 +5534 9495 0.6760 +5534 9657 0.4100 +5534 9989 0.7940 +5534 10018 0.4810 +5534 10231 0.8350 +5534 10393 0.6670 +5534 10449 0.4490 +5534 10725 0.4040 +5534 10887 0.4990 +5534 10971 0.4990 +5534 11123 0.8930 +5534 23236 0.7010 +5534 23435 0.9090 +5534 25847 0.6500 +5534 25927 0.4060 +5534 26227 0.4820 +5534 28227 0.7200 +5534 29882 0.6620 +5534 29945 0.6540 +5534 51433 0.6700 +5534 51434 0.6560 +5534 51806 0.9540 +5534 54432 0.4320 +5534 54434 0.9080 +5534 54961 0.9090 +5534 55133 0.4640 +5534 55671 0.5540 +5534 55844 0.7470 +5534 57223 0.5540 +5534 57551 0.4170 +5534 57716 0.4690 +5534 64682 0.6590 +5534 79577 0.4170 +5534 84152 0.4840 +5534 85407 0.7390 +5534 85464 0.9090 +5534 91860 0.9820 +5534 114801 0.4220 +5534 116143 0.9410 +5534 116224 0.6480 +5534 139420 0.5400 +5534 151987 0.9040 +5534 163688 0.9480 +5534 200186 0.9400 +5534 246184 0.6500 +5534 642489 0.7880 +5536 5537 0.4610 +5536 5538 0.5600 +5536 5594 0.4940 +5536 5595 0.4820 +5536 5606 0.4740 +5536 5607 0.4530 +5536 5608 0.5470 +5536 5709 0.6090 +5536 5771 0.4240 +5536 5894 0.6960 +5536 6041 0.4690 +5536 6388 0.7240 +5536 6416 0.4620 +5536 6674 0.5950 +5536 6885 0.6130 +5536 6950 0.9170 +5536 7158 0.5630 +5536 7184 0.5890 +5536 7203 0.9110 +5536 7248 0.9580 +5536 7334 0.4320 +5536 7336 0.4410 +5536 7468 0.4640 +5536 7529 0.5790 +5536 7531 0.4520 +5536 8078 0.7640 +5536 8290 0.4130 +5536 8340 0.4030 +5536 8342 0.4030 +5536 8348 0.4050 +5536 8349 0.4100 +5536 8361 0.4230 +5536 8409 0.5560 +5536 8607 0.6070 +5536 8624 0.9010 +5536 8725 0.5430 +5536 8844 0.6130 +5536 8924 0.4420 +5536 9025 0.4250 +5536 9328 0.4370 +5536 9531 0.7380 +5536 9532 0.6030 +5536 9564 0.4720 +5536 9656 0.4080 +5536 10111 0.4050 +5536 10131 0.6370 +5536 10273 0.6020 +5536 10471 0.5660 +5536 10524 0.4450 +5536 10574 0.9080 +5536 10575 0.9260 +5536 10576 0.9080 +5536 10598 0.6350 +5536 10693 0.9050 +5536 10694 0.9170 +5536 10726 0.4240 +5536 10728 0.9850 +5536 10856 0.6480 +5536 10963 0.9620 +5536 11140 0.9950 +5536 22919 0.4650 +5536 22948 0.9080 +5536 23234 0.9090 +5536 23481 0.4670 +5536 23753 0.7200 +5536 26155 0.4230 +5536 26353 0.7340 +5536 26523 0.6040 +5536 26548 0.4600 +5536 26973 0.6970 +5536 51398 0.5430 +5536 51588 0.4050 +5536 51726 0.7490 +5536 55172 0.5430 +5536 55269 0.5060 +5536 55664 0.6620 +5536 55735 0.4480 +5536 56984 0.9010 +5536 57003 0.5490 +5536 63893 0.4300 +5536 79624 0.6970 +5536 79657 0.6250 +5536 81572 0.5490 +5536 83743 0.4050 +5536 83940 0.4250 +5536 85440 0.4460 +5536 120379 0.5660 +5536 150160 0.5620 +5536 151742 0.7140 +5536 374407 0.4100 +5536 100885848 0.4470 +5536 100885850 0.4500 +5537 5591 0.7390 +5537 5604 0.4950 +5537 5728 0.4340 +5537 6610 0.4670 +5537 6790 0.5750 +5537 6801 0.4230 +5537 6867 0.5930 +5537 6885 0.6280 +5537 6921 0.4210 +5537 6992 0.4890 +5537 7013 0.4630 +5537 7014 0.4420 +5537 7015 0.6220 +5537 7124 0.4110 +5537 7247 0.4020 +5537 7319 0.5350 +5537 8493 0.5340 +5537 8859 0.6780 +5537 8909 0.5760 +5537 9181 0.5380 +5537 9212 0.6070 +5537 9318 0.4140 +5537 9632 0.4520 +5537 9701 0.9980 +5537 9830 0.8880 +5537 9871 0.4400 +5537 9922 0.4530 +5537 9989 0.6860 +5537 10204 0.4140 +5537 10427 0.4780 +5537 10576 0.6050 +5537 10776 0.5020 +5537 10802 0.4360 +5537 10914 0.4360 +5537 11062 0.4440 +5537 11200 0.4350 +5537 22870 0.9990 +5537 22916 0.4160 +5537 23118 0.6540 +5537 23243 0.9910 +5537 23360 0.4500 +5537 23451 0.7510 +5537 23593 0.5160 +5537 25913 0.4200 +5537 26073 0.4560 +5537 26273 0.4710 +5537 26277 0.4540 +5537 28227 0.4140 +5537 29110 0.4630 +5537 29124 0.4550 +5537 29894 0.4100 +5537 50488 0.5050 +5537 51400 0.5630 +5537 51451 0.5430 +5537 51750 0.4540 +5537 54386 0.4380 +5537 54433 0.4050 +5537 55135 0.4080 +5537 55233 0.4810 +5537 55291 0.9990 +5537 55339 0.6020 +5537 55367 0.4200 +5537 55505 0.4260 +5537 55651 0.4770 +5537 55671 0.5580 +5537 56897 0.6290 +5537 57223 0.6760 +5537 57506 0.4420 +5537 57614 0.4500 +5537 57718 0.6470 +5537 80243 0.4240 +5537 80335 0.4910 +5537 81608 0.4800 +5537 83931 0.6460 +5537 84433 0.4300 +5537 91526 0.9510 +5537 92597 0.6380 +5537 136332 0.4740 +5537 139420 0.4110 +5537 151648 0.4100 +5537 151987 0.7650 +5537 169166 0.6120 +5537 196528 0.5630 +5537 261726 0.9630 +5537 283373 0.9730 +5537 285381 0.4220 +5537 440275 0.8100 +5537 645545 0.9000 +5538 5660 0.5670 +5538 5867 0.4280 +5538 5955 0.4960 +5538 6141 0.4950 +5538 6181 0.4380 +5538 6182 0.4490 +5538 6448 0.6270 +5538 6576 0.4380 +5538 6616 0.6720 +5538 6804 0.5150 +5538 6844 0.5860 +5538 6855 0.4040 +5538 6857 0.5360 +5538 6863 0.4420 +5538 7416 0.5380 +5538 7431 0.5320 +5538 7534 0.4350 +5538 7818 0.4330 +5538 7942 0.4040 +5538 8361 0.4440 +5538 8369 0.4420 +5538 8722 0.6120 +5538 9232 0.4630 +5538 9374 0.9360 +5538 9553 0.4400 +5538 9900 0.4990 +5538 9978 0.4050 +5538 10165 0.4280 +5538 10422 0.6970 +5538 10434 0.6610 +5538 10577 0.4630 +5538 11313 0.6490 +5538 11343 0.4600 +5538 22901 0.5100 +5538 23205 0.8370 +5538 23305 0.8470 +5538 23390 0.5980 +5538 23400 0.6390 +5538 23646 0.4690 +5538 25814 0.4170 +5538 25921 0.5430 +5538 26090 0.5190 +5538 29800 0.4720 +5538 29801 0.4810 +5538 51021 0.4320 +5538 51102 0.9190 +5538 51104 0.4850 +5538 51114 0.4440 +5538 51172 0.5800 +5538 51201 0.5050 +5538 51264 0.4600 +5538 51304 0.5050 +5538 51529 0.4930 +5538 51703 0.8550 +5538 54503 0.5890 +5538 54664 0.4440 +5538 54982 0.9760 +5538 55052 0.4450 +5538 55146 0.4700 +5538 55347 0.4870 +5538 55625 0.5230 +5538 55759 0.6530 +5538 57124 0.4330 +5538 57129 0.4330 +5538 57153 0.4180 +5538 57406 0.4320 +5538 58489 0.5250 +5538 63875 0.4330 +5538 64429 0.5080 +5538 64965 0.4290 +5538 64979 0.4290 +5538 79844 0.4270 +5538 80331 0.9150 +5538 81616 0.8520 +5538 81669 0.6850 +5538 81926 0.6730 +5538 84188 0.4230 +5538 84287 0.4530 +5538 84545 0.4330 +5538 127018 0.4050 +5538 144165 0.5900 +5538 154881 0.8990 +5538 158866 0.5020 +5538 219927 0.4290 +5538 254359 0.5160 +5538 256471 0.9150 +5538 378884 0.5350 +5538 388743 0.4660 +5539 5540 0.9830 +5539 5617 0.4470 +5539 5660 0.5030 +5539 5697 0.9740 +5539 5991 0.5160 +5539 6343 0.8600 +5539 6514 0.5930 +5539 6708 0.4130 +5539 6714 0.5500 +5539 6750 0.9770 +5539 6751 0.6490 +5539 6752 0.6750 +5539 6753 0.6030 +5539 6754 0.6220 +5539 6755 0.6520 +5539 6833 0.5220 +5539 6855 0.5990 +5539 6863 0.6040 +5539 6927 0.5400 +5539 7038 0.5640 +5539 7153 0.4170 +5539 7298 0.4260 +5539 7369 0.7200 +5539 7432 0.8530 +5539 8812 0.4670 +5539 8833 0.4240 +5539 8862 0.5400 +5539 9283 0.5310 +5539 9370 0.4050 +5539 9607 0.4670 +5539 9721 0.4550 +5539 9935 0.4410 +5539 10136 0.8230 +5539 10316 0.4990 +5539 10874 0.5830 +5539 10888 0.9010 +5539 11330 0.7300 +5539 23436 0.7610 +5539 26039 0.4930 +5539 26086 0.5610 +5539 29899 0.5840 +5539 50674 0.8340 +5539 51032 0.6650 +5539 51083 0.6450 +5539 51167 0.5970 +5539 51200 0.5660 +5539 51738 0.9190 +5539 53820 0.4260 +5539 54331 0.8000 +5539 56923 0.5060 +5539 63036 0.6540 +5539 63940 0.4190 +5539 84504 0.6780 +5539 84539 0.4990 +5539 93979 0.5280 +5539 113878 0.4980 +5539 114131 0.5170 +5539 126006 0.5610 +5539 129521 0.5740 +5539 140683 0.4310 +5539 170302 0.5450 +5539 222546 0.7200 +5539 256297 0.5540 +5539 256933 0.5460 +5539 283869 0.5400 +5539 347148 0.4140 +5539 389692 0.4570 +5539 440387 0.6200 +5539 100996758 0.9950 +5540 5660 0.5290 +5540 5697 0.9860 +5540 6714 0.5380 +5540 6750 0.5930 +5540 6751 0.5590 +5540 6752 0.5690 +5540 6753 0.5650 +5540 6754 0.5610 +5540 6755 0.5490 +5540 7984 0.4170 +5540 8862 0.4990 +5540 9283 0.5060 +5540 9721 0.7350 +5540 9747 0.4630 +5540 10316 0.5460 +5540 10874 0.5290 +5540 26086 0.4060 +5540 51704 0.4020 +5540 56923 0.5190 +5540 56940 0.4730 +5540 63940 0.4030 +5540 81300 0.4220 +5540 83849 0.5400 +5540 84539 0.5560 +5540 126006 0.4050 +5540 129521 0.4990 +5540 219431 0.4770 +5540 256933 0.6030 +5540 257194 0.4140 +5540 283869 0.5840 +5540 728340 0.4270 +5540 102724488 0.4750 +5542 5544 0.8170 +5542 5545 0.9990 +5542 5555 0.8900 +5542 5925 0.7860 +5542 6183 0.4100 +5542 6779 0.6730 +5542 7818 0.4140 +5542 9553 0.4020 +5542 11272 0.6230 +5542 26275 0.4060 +5542 26589 0.4100 +5542 27294 0.4660 +5542 29088 0.4110 +5542 51021 0.4180 +5542 51073 0.4010 +5542 51081 0.4030 +5542 51264 0.4030 +5542 58503 0.5440 +5542 63931 0.4030 +5542 64960 0.4060 +5542 64979 0.4100 +5542 84545 0.4110 +5542 653247 0.9090 +5542 653509 0.4960 +5542 729238 0.4990 +5544 5545 0.9990 +5544 5554 0.4660 +5544 5925 0.8090 +5544 6183 0.4100 +5544 6779 0.6090 +5544 7634 0.6800 +5544 9553 0.4020 +5544 11272 0.4800 +5544 26275 0.4060 +5544 26589 0.4100 +5544 27294 0.4660 +5544 29088 0.4110 +5544 51021 0.4180 +5544 51073 0.4010 +5544 51081 0.4030 +5544 51264 0.4030 +5544 63931 0.4030 +5544 64960 0.4060 +5544 64979 0.4100 +5544 84545 0.4110 +5544 91283 0.4450 +5544 135656 0.4150 +5544 386672 0.4200 +5544 386676 0.4710 +5544 386678 0.4180 +5544 386682 0.4320 +5544 494119 0.5160 +5544 653509 0.5350 +5544 728318 0.4820 +5544 729238 0.5330 +5545 5554 0.9240 +5545 5555 0.9160 +5545 5925 0.7800 +5545 6183 0.4100 +5545 6779 0.5220 +5545 9553 0.4020 +5545 11272 0.4370 +5545 26275 0.4060 +5545 26589 0.4100 +5545 27294 0.4660 +5545 29088 0.4110 +5545 51021 0.4180 +5545 51073 0.4010 +5545 51081 0.4030 +5545 51264 0.4030 +5545 63931 0.4030 +5545 64960 0.4060 +5545 64979 0.4100 +5545 84545 0.4110 +5545 219484 0.5060 +5545 653509 0.4740 +5545 729238 0.4950 +5546 6421 0.8180 +5546 6619 0.4090 +5546 6855 0.4260 +5546 7030 0.9680 +5546 7076 0.4240 +5546 7158 0.4480 +5546 7175 0.4610 +5546 7307 0.5210 +5546 7942 0.8200 +5546 8175 0.6980 +5546 8241 0.8470 +5546 8570 0.4520 +5546 8896 0.8030 +5546 9416 0.4850 +5546 9716 0.8040 +5546 9993 0.4300 +5546 10262 0.5220 +5546 10450 0.8130 +5546 10459 0.8340 +5546 10523 0.4450 +5546 10664 0.4310 +5546 10713 0.4620 +5546 10907 0.4050 +5546 10915 0.4360 +5546 11040 0.6830 +5546 11193 0.4690 +5546 11338 0.5600 +5546 22797 0.5130 +5546 22938 0.8830 +5546 22944 0.5300 +5546 23600 0.5230 +5546 23759 0.8790 +5546 24148 0.4600 +5546 27238 0.5200 +5546 27339 0.8050 +5546 49856 0.5440 +5546 51078 0.4550 +5546 51340 0.9440 +5546 51428 0.4470 +5546 51586 0.6550 +5546 51747 0.7240 +5546 54625 0.4890 +5546 54934 0.6760 +5546 55234 0.4080 +5546 55627 0.4370 +5546 55696 0.8120 +5546 56850 0.4660 +5546 56949 0.8910 +5546 57461 0.8010 +5546 57819 0.6360 +5546 59286 0.4050 +5546 79058 0.9680 +5546 79173 0.6260 +5546 84076 0.5920 +5546 84164 0.4540 +5546 84950 0.4440 +5546 85451 0.5310 +5546 91603 0.9410 +5546 114034 0.6540 +5546 153527 0.4480 +5546 171017 0.4750 +5546 199746 0.5000 +5546 286262 0.4810 +5547 5550 0.9000 +5547 5972 0.6730 +5547 6401 0.4140 +5547 7064 0.5940 +5547 7512 0.9350 +5547 8635 0.5130 +5547 9283 0.4280 +5547 9467 0.4450 +5547 9622 0.6000 +5547 10159 0.5060 +5547 10279 0.4160 +5547 10404 0.4850 +5547 10579 0.4750 +5547 25802 0.5130 +5547 26270 0.5400 +5547 54512 0.4270 +5547 54878 0.4650 +5547 57486 0.4330 +5547 59272 0.9720 +5547 59342 0.4290 +5547 79258 0.5370 +5547 91039 0.4410 +5547 220382 0.5090 +5549 5803 0.5080 +5549 6483 0.4210 +5549 6484 0.4100 +5549 6662 0.4540 +5549 6678 0.4130 +5549 7058 0.6070 +5549 7059 0.4440 +5549 7373 0.7320 +5549 8483 0.6000 +5549 8534 0.4130 +5549 8702 0.5030 +5549 8703 0.8510 +5549 8704 0.8510 +5549 9435 0.4680 +5549 10216 0.4140 +5549 10402 0.4510 +5549 10516 0.6000 +5549 10631 0.6760 +5549 10901 0.4270 +5549 10970 0.4200 +5549 11081 0.5390 +5549 22859 0.5280 +5549 23266 0.5490 +5549 23284 0.5290 +5549 23563 0.4020 +5549 25987 0.5330 +5549 54829 0.6560 +5549 55222 0.4680 +5549 55379 0.4860 +5549 63827 0.4380 +5549 79442 0.5410 +5549 80760 0.7000 +5549 116064 0.5220 +5549 122769 0.6630 +5549 123355 0.5090 +5549 127435 0.4290 +5549 220416 0.4370 +5549 375790 0.5400 +5549 376132 0.5270 +5549 474354 0.5260 +5550 5972 0.5210 +5550 6051 0.6140 +5550 6519 0.5750 +5550 6622 0.6980 +5550 6863 0.5090 +5550 6885 0.6530 +5550 7064 0.8240 +5550 7114 0.6060 +5550 7157 0.4360 +5550 7174 0.4430 +5550 7200 0.8420 +5550 8514 0.4840 +5550 9520 0.4190 +5550 9581 0.5070 +5550 9622 0.5600 +5550 10072 0.6460 +5550 10279 0.7830 +5550 23173 0.5040 +5550 23219 0.4100 +5550 23549 0.5370 +5550 29952 0.7200 +5550 29953 0.4310 +5550 51056 0.5250 +5550 51304 0.7870 +5550 54858 0.9480 +5550 54878 0.9550 +5550 57486 0.6780 +5550 57628 0.6740 +5550 58157 0.4020 +5550 59272 0.6060 +5550 79258 0.6530 +5550 79823 0.5240 +5550 91039 0.9460 +5550 151246 0.4640 +5550 440387 0.5480 +5551 5552 0.9560 +5551 5788 0.7160 +5551 5817 0.5070 +5551 5819 0.4730 +5551 5873 0.7520 +5551 5874 0.4780 +5551 5896 0.6460 +5551 6097 0.4100 +5551 6279 0.4870 +5551 6347 0.5800 +5551 6348 0.6280 +5551 6351 0.6930 +5551 6364 0.4080 +5551 6367 0.4120 +5551 6373 0.4660 +5551 6375 0.5690 +5551 6387 0.4530 +5551 6402 0.7380 +5551 6403 0.4150 +5551 6490 0.4460 +5551 6504 0.4540 +5551 6688 0.5610 +5551 6693 0.5240 +5551 6772 0.5760 +5551 6774 0.5470 +5551 6775 0.5840 +5551 6776 0.4960 +5551 6777 0.4800 +5551 6813 0.6700 +5551 6846 0.5010 +5551 6850 0.4350 +5551 6932 0.4770 +5551 7040 0.5330 +5551 7057 0.5150 +5551 7072 0.7790 +5551 7097 0.5290 +5551 7098 0.5160 +5551 7099 0.5780 +5551 7124 0.8080 +5551 7132 0.4870 +5551 7157 0.4480 +5551 7292 0.4210 +5551 7293 0.6160 +5551 7305 0.5390 +5551 7430 0.4530 +5551 7448 0.5080 +5551 7450 0.5190 +5551 7535 0.6420 +5551 7852 0.4960 +5551 8125 0.4140 +5551 8320 0.8390 +5551 8349 0.4260 +5551 8438 0.4460 +5551 8517 0.4160 +5551 8530 0.6860 +5551 8546 0.6270 +5551 8639 0.4900 +5551 8676 0.8260 +5551 8743 0.7760 +5551 8744 0.4790 +5551 8784 0.5380 +5551 8795 0.4560 +5551 8797 0.4320 +5551 8807 0.4420 +5551 8809 0.4530 +5551 9034 0.5890 +5551 9047 0.4330 +5551 9308 0.4070 +5551 9332 0.6020 +5551 9436 0.8670 +5551 9437 0.9070 +5551 10004 0.4370 +5551 10219 0.7570 +5551 10225 0.5640 +5551 10464 0.5220 +5551 10538 0.4060 +5551 10563 0.4360 +5551 10578 0.9990 +5551 10663 0.6980 +5551 10666 0.7360 +5551 10803 0.4220 +5551 10859 0.5430 +5551 10870 0.6400 +5551 10924 0.7110 +5551 11119 0.4280 +5551 11126 0.7090 +5551 11151 0.4400 +5551 11314 0.4230 +5551 22914 0.9320 +5551 23086 0.4970 +5551 23533 0.4400 +5551 23586 0.4020 +5551 27036 0.4050 +5551 27087 0.7490 +5551 27165 0.4120 +5551 27319 0.4220 +5551 29108 0.4080 +5551 29126 0.7190 +5551 29851 0.6410 +5551 30009 0.8720 +5551 30816 0.4970 +5551 50615 0.4730 +5551 50616 0.5990 +5551 50943 0.8370 +5551 51043 0.4160 +5551 51119 0.4220 +5551 51284 0.5260 +5551 51311 0.4820 +5551 51348 0.7340 +5551 51744 0.6730 +5551 53637 0.5790 +5551 54106 0.5540 +5551 54843 0.5560 +5551 56253 0.4070 +5551 57509 0.4530 +5551 57823 0.5260 +5551 79037 0.4260 +5551 79083 0.5090 +5551 79465 0.4680 +5551 80321 0.4800 +5551 80328 0.5320 +5551 80329 0.5640 +5551 80380 0.5250 +5551 80381 0.5950 +5551 83888 0.6220 +5551 84662 0.4030 +5551 84868 0.7540 +5551 90865 0.4320 +5551 112744 0.4030 +5551 114548 0.4270 +5551 114836 0.5530 +5551 117157 0.4860 +5551 149628 0.4060 +5551 151888 0.4950 +5551 154075 0.4320 +5551 168400 0.4470 +5551 169355 0.5730 +5551 201294 0.9050 +5551 201633 0.7050 +5551 219972 0.8270 +5551 257101 0.5370 +5551 259197 0.9270 +5551 284194 0.4750 +5551 340351 0.4220 +5551 374383 0.4500 +5551 405754 0.4960 +5551 415117 0.5800 +5551 654346 0.4800 +5551 100526664 0.5790 +5552 5696 0.4030 +5552 5788 0.5000 +5552 5908 0.4030 +5552 6382 0.4280 +5552 6385 0.4340 +5552 6696 0.4460 +5552 7057 0.4610 +5552 7124 0.6170 +5552 7305 0.6480 +5552 7805 0.7730 +5552 7852 0.5470 +5552 8509 0.5720 +5552 9429 0.5170 +5552 9473 0.6230 +5552 9535 0.4180 +5552 9653 0.4470 +5552 9957 0.4100 +5552 10204 0.4180 +5552 10578 0.5480 +5552 11010 0.5170 +5552 11326 0.4440 +5552 30816 0.4240 +5552 50515 0.4530 +5552 51200 0.6780 +5552 51703 0.4340 +5552 375790 0.5320 +5552 405754 0.4110 +5553 5657 0.5530 +5553 6036 0.9510 +5553 6037 0.8440 +5553 6356 0.4600 +5553 7137 0.5480 +5553 8288 0.8380 +5553 10394 0.5440 +5553 11314 0.7590 +5553 51646 0.5420 +5553 64795 0.5950 +5554 5555 0.9000 +5554 5925 0.6800 +5554 6183 0.4100 +5554 6779 0.4870 +5554 8424 0.5070 +5554 8856 0.5050 +5554 9553 0.4020 +5554 10767 0.4450 +5554 23567 0.7200 +5554 26275 0.4060 +5554 26589 0.4100 +5554 27294 0.4660 +5554 29088 0.4110 +5554 51021 0.4180 +5554 51073 0.4010 +5554 51081 0.4030 +5554 51264 0.4030 +5554 55070 0.8610 +5554 55342 0.5160 +5554 55964 0.4120 +5554 56987 0.6230 +5554 63931 0.4030 +5554 64326 0.4950 +5554 64960 0.4060 +5554 64979 0.4100 +5554 80119 0.8850 +5554 84545 0.4110 +5554 653509 0.5010 +5554 729238 0.5560 +5555 5925 0.6990 +5555 6183 0.4100 +5555 6779 0.5130 +5555 7148 0.4260 +5555 8424 0.5060 +5555 8856 0.4910 +5555 8859 0.5110 +5555 9129 0.4780 +5555 9553 0.4020 +5555 10767 0.4310 +5555 23567 0.7150 +5555 26275 0.4060 +5555 26589 0.4100 +5555 27294 0.4660 +5555 29088 0.4110 +5555 51021 0.4180 +5555 51073 0.4010 +5555 51081 0.4030 +5555 51264 0.4030 +5555 55070 0.8600 +5555 55342 0.5070 +5555 55964 0.4080 +5555 56975 0.5660 +5555 56987 0.6200 +5555 63931 0.4030 +5555 64326 0.4820 +5555 64960 0.4060 +5555 64979 0.4100 +5555 80119 0.8830 +5555 84545 0.4110 +5555 653247 0.8640 +5555 653509 0.4320 +5555 729238 0.4900 +5557 5558 0.9990 +5557 5888 0.6670 +5557 5889 0.4530 +5557 5925 0.6250 +5557 5980 0.9720 +5557 5981 0.7060 +5557 5982 0.8580 +5557 5983 0.8970 +5557 5984 0.9680 +5557 5985 0.8660 +5557 6117 0.9610 +5557 6118 0.9710 +5557 6119 0.9680 +5557 6240 0.7750 +5557 6241 0.6620 +5557 6790 0.4930 +5557 7013 0.5500 +5557 7014 0.5080 +5557 7112 0.4480 +5557 7153 0.5730 +5557 7272 0.5210 +5557 7298 0.7180 +5557 7374 0.4230 +5557 7398 0.4490 +5557 7443 0.4830 +5557 7486 0.4020 +5557 7520 0.4440 +5557 7541 0.4180 +5557 7884 0.4950 +5557 8208 0.6080 +5557 8317 0.7730 +5557 8318 0.9010 +5557 8438 0.4320 +5557 8480 0.6320 +5557 8914 0.5140 +5557 9126 0.4280 +5557 9133 0.5080 +5557 9134 0.4430 +5557 9156 0.7390 +5557 9212 0.4640 +5557 9319 0.5300 +5557 9337 0.4100 +5557 9401 0.6440 +5557 9493 0.4920 +5557 9585 0.4950 +5557 9735 0.5330 +5557 9787 0.5400 +5557 9793 0.4230 +5557 9837 0.5990 +5557 9874 0.5600 +5557 9918 0.5610 +5557 9994 0.4190 +5557 10051 0.5610 +5557 10403 0.4480 +5557 10459 0.9140 +5557 10460 0.4850 +5557 10535 0.8530 +5557 10592 0.5240 +5557 10635 0.5810 +5557 10714 0.9480 +5557 10728 0.4740 +5557 10926 0.6970 +5557 11004 0.5340 +5557 11065 0.5050 +5557 11169 0.7370 +5557 11200 0.4140 +5557 11232 0.9080 +5557 11339 0.5270 +5557 22829 0.7270 +5557 23421 0.4180 +5557 23594 0.8270 +5557 23595 0.6830 +5557 23649 0.9990 +5557 25913 0.5900 +5557 26271 0.4440 +5557 26277 0.5080 +5557 26586 0.4500 +5557 27297 0.9000 +5557 29028 0.5830 +5557 29089 0.4660 +5557 29127 0.7810 +5557 29128 0.4300 +5557 29883 0.4460 +5557 29935 0.9310 +5557 29980 0.9280 +5557 51013 0.4130 +5557 51053 0.6340 +5557 51203 0.4980 +5557 51514 0.4340 +5557 51647 0.5600 +5557 51659 0.6670 +5557 51720 0.4950 +5557 54107 0.9500 +5557 54108 0.9070 +5557 54386 0.5060 +5557 54443 0.4380 +5557 54478 0.4690 +5557 54675 0.4050 +5557 54892 0.4810 +5557 54921 0.5480 +5557 54962 0.7390 +5557 55055 0.5050 +5557 55143 0.4890 +5557 55148 0.4700 +5557 55215 0.5260 +5557 55388 0.8910 +5557 55505 0.4060 +5557 55632 0.4960 +5557 55732 0.4010 +5557 56655 0.9360 +5557 56992 0.4790 +5557 57804 0.5430 +5557 60561 0.5680 +5557 63922 0.7100 +5557 63967 0.4830 +5557 64151 0.4460 +5557 64210 0.6580 +5557 64785 0.4930 +5557 64946 0.4630 +5557 79019 0.4040 +5557 79023 0.4960 +5557 79075 0.8560 +5557 79621 0.5480 +5557 79682 0.5640 +5557 79892 0.5750 +5557 79915 0.4700 +5557 79968 0.5450 +5557 79991 0.9760 +5557 80153 0.5270 +5557 80169 0.9020 +5557 80262 0.5560 +5557 81611 0.4170 +5557 81620 0.6520 +5557 83461 0.4690 +5557 83540 0.5520 +5557 83879 0.4640 +5557 84057 0.4890 +5557 84296 0.5710 +5557 84515 0.8200 +5557 84722 0.4170 +5557 90381 0.4540 +5557 113510 0.5070 +5557 115106 0.4180 +5557 152518 0.4050 +5557 157313 0.4080 +5557 157777 0.4010 +5557 201973 0.7000 +5557 254394 0.5450 +5557 283431 0.4630 +5557 387103 0.4110 +5557 100134934 0.9470 +5558 5634 0.4120 +5558 5810 0.4500 +5558 5884 0.4790 +5558 5888 0.5020 +5558 5925 0.6580 +5558 5980 0.9800 +5558 5981 0.7680 +5558 5982 0.8450 +5558 5983 0.8920 +5558 5984 0.9290 +5558 5985 0.8480 +5558 6059 0.4490 +5558 6117 0.9590 +5558 6118 0.9710 +5558 6119 0.9350 +5558 6136 0.4570 +5558 6240 0.5720 +5558 6241 0.7460 +5558 6749 0.4690 +5558 7013 0.5040 +5558 7014 0.5090 +5558 7153 0.6060 +5558 7298 0.7050 +5558 7486 0.4450 +5558 7884 0.5330 +5558 8208 0.4310 +5558 8317 0.7080 +5558 8318 0.9240 +5558 8480 0.6270 +5558 8914 0.4600 +5558 9156 0.7770 +5558 9337 0.4510 +5558 9391 0.6110 +5558 9401 0.7310 +5558 9837 0.6280 +5558 9918 0.7460 +5558 10036 0.4960 +5558 10051 0.7310 +5558 10459 0.9080 +5558 10535 0.8480 +5558 10592 0.7160 +5558 10714 0.9430 +5558 10926 0.6740 +5558 11169 0.9350 +5558 11198 0.4240 +5558 11200 0.4170 +5558 11232 0.9110 +5558 22829 0.7400 +5558 23302 0.4080 +5558 23397 0.6570 +5558 23594 0.7220 +5558 23595 0.6220 +5558 23649 0.9990 +5558 25913 0.6020 +5558 26277 0.4990 +5558 27297 0.9010 +5558 29883 0.4510 +5558 29935 0.9420 +5558 29980 0.9700 +5558 50484 0.6990 +5558 51013 0.4390 +5558 51514 0.8090 +5558 51647 0.6390 +5558 51659 0.5840 +5558 51750 0.4660 +5558 54107 0.9670 +5558 54108 0.9010 +5558 54386 0.5070 +5558 54841 0.4140 +5558 54892 0.5560 +5558 54921 0.5930 +5558 54962 0.5550 +5558 55388 0.8470 +5558 55703 0.4090 +5558 55723 0.4460 +5558 56655 0.9500 +5558 56992 0.4840 +5558 57019 0.4040 +5558 57804 0.5580 +5558 63922 0.8750 +5558 64151 0.6210 +5558 64210 0.8490 +5558 79075 0.8220 +5558 79892 0.7980 +5558 79915 0.5830 +5558 79991 0.9750 +5558 80169 0.9550 +5558 81620 0.7790 +5558 83540 0.4210 +5558 83990 0.5000 +5558 84172 0.4110 +5558 84296 0.6530 +5558 84515 0.7650 +5558 116211 0.4140 +5558 140767 0.4350 +5558 157777 0.4140 +5558 163786 0.4660 +5558 201973 0.4080 +5558 254394 0.8190 +5558 254528 0.4270 +5558 283871 0.4250 +5558 348654 0.4450 +5558 100134934 0.9470 +5558 100533467 0.4210 +5562 5563 0.9840 +5562 5564 0.9990 +5562 5565 0.9990 +5562 5566 0.9230 +5562 5567 0.9250 +5562 5568 0.9230 +5562 5571 0.9990 +5562 5573 0.6620 +5562 5576 0.7070 +5562 5728 0.4570 +5562 5934 0.4440 +5562 6009 0.6430 +5562 6517 0.4530 +5562 6720 0.4600 +5562 6721 0.4010 +5562 6733 0.4210 +5562 6794 0.9860 +5562 6885 0.9660 +5562 7068 0.4190 +5562 7157 0.7640 +5562 7248 0.9210 +5562 7249 0.9780 +5562 7352 0.5210 +5562 7531 0.4660 +5562 7534 0.5100 +5562 7846 0.4270 +5562 8000 0.4060 +5562 8085 0.9100 +5562 8408 0.8720 +5562 8649 0.5580 +5562 8655 0.5650 +5562 8678 0.8730 +5562 8878 0.4170 +5562 9100 0.5280 +5562 9370 0.4210 +5562 9474 0.4140 +5562 9647 0.4550 +5562 9776 0.6220 +5562 9821 0.6310 +5562 9891 0.4820 +5562 9915 0.4250 +5562 10325 0.5610 +5562 10398 0.4780 +5562 10399 0.5810 +5562 10413 0.5600 +5562 10451 0.4260 +5562 10533 0.4010 +5562 10542 0.5090 +5562 10628 0.4150 +5562 10645 0.9560 +5562 10670 0.5640 +5562 10681 0.6710 +5562 10891 0.9620 +5562 11255 0.4710 +5562 22843 0.4390 +5562 22863 0.5950 +5562 23216 0.9230 +5562 23387 0.4010 +5562 23411 0.5530 +5562 23417 0.9120 +5562 23548 0.4630 +5562 26137 0.4110 +5562 27244 0.6990 +5562 28956 0.5490 +5562 29904 0.9140 +5562 30849 0.6430 +5562 51185 0.5260 +5562 51196 0.4230 +5562 51256 0.9020 +5562 51422 0.9990 +5562 51719 0.9330 +5562 51764 0.6550 +5562 53632 0.9970 +5562 54331 0.6550 +5562 54583 0.5440 +5562 54677 0.5350 +5562 54899 0.4180 +5562 55004 0.6220 +5562 55437 0.9130 +5562 55626 0.6070 +5562 55970 0.6500 +5562 57521 0.9650 +5562 57600 0.6690 +5562 57620 0.6770 +5562 57664 0.4660 +5562 57818 0.4720 +5562 58508 0.8010 +5562 58528 0.5170 +5562 59345 0.6680 +5562 60673 0.5640 +5562 64121 0.5200 +5562 64223 0.6080 +5562 64421 0.8190 +5562 66008 0.5100 +5562 80336 0.4120 +5562 81617 0.9270 +5562 81631 0.4020 +5562 83667 0.7240 +5562 84254 0.5390 +5562 84335 0.7410 +5562 84557 0.4880 +5562 91937 0.4930 +5562 92335 0.9150 +5562 92579 0.4660 +5562 94235 0.6500 +5562 96459 0.7890 +5562 132430 0.4110 +5562 133522 0.5070 +5562 140735 0.5680 +5562 143686 0.6790 +5562 153129 0.5170 +5562 200186 0.9410 +5562 201163 0.7100 +5562 317671 0.4780 +5562 340529 0.4110 +5562 389541 0.5040 +5563 5564 0.9990 +5563 5565 0.9990 +5563 5566 0.9210 +5563 5567 0.9230 +5563 5568 0.9220 +5563 5571 0.9990 +5563 5573 0.6250 +5563 5576 0.6570 +5563 5591 0.4680 +5563 5728 0.5920 +5563 6009 0.7140 +5563 6198 0.5180 +5563 6517 0.4250 +5563 6597 0.4530 +5563 6794 0.9780 +5563 6885 0.9110 +5563 7157 0.6450 +5563 7205 0.5080 +5563 7248 0.9420 +5563 7249 0.9380 +5563 8085 0.4980 +5563 8312 0.4870 +5563 8408 0.8400 +5563 8637 0.4040 +5563 8649 0.5510 +5563 8655 0.5620 +5563 8678 0.6950 +5563 8878 0.4270 +5563 9370 0.6300 +5563 9474 0.4010 +5563 9647 0.4510 +5563 9776 0.6100 +5563 9821 0.6370 +5563 10226 0.5310 +5563 10325 0.7110 +5563 10533 0.4100 +5563 10542 0.5130 +5563 10628 0.6500 +5563 10645 0.9640 +5563 10670 0.7110 +5563 10681 0.6690 +5563 10891 0.9640 +5563 22843 0.4520 +5563 22863 0.5980 +5563 23216 0.9190 +5563 23411 0.5280 +5563 23417 0.9110 +5563 27244 0.7090 +5563 28956 0.5240 +5563 29904 0.9150 +5563 30849 0.6190 +5563 51085 0.7010 +5563 51094 0.5760 +5563 51256 0.9020 +5563 51422 0.9980 +5563 51719 0.9280 +5563 51764 0.6710 +5563 53632 0.9970 +5563 54331 0.6500 +5563 54541 0.4630 +5563 54861 0.4270 +5563 55004 0.7980 +5563 55437 0.9160 +5563 55626 0.5540 +5563 55970 0.6650 +5563 57521 0.9730 +5563 57620 0.7860 +5563 58508 0.5060 +5563 58528 0.7140 +5563 59345 0.6680 +5563 60673 0.5460 +5563 63893 0.4850 +5563 64121 0.6880 +5563 64223 0.7340 +5563 64421 0.8430 +5563 79602 0.6060 +5563 81617 0.9210 +5563 83667 0.7370 +5563 84335 0.7360 +5563 92335 0.9140 +5563 94235 0.6500 +5563 140735 0.5620 +5563 143686 0.7180 +5563 153129 0.5060 +5563 200186 0.9210 +5563 253260 0.4030 +5563 389541 0.4990 +5564 5565 0.9970 +5564 5566 0.6450 +5564 5571 0.9990 +5564 5573 0.5890 +5564 5576 0.6000 +5564 6009 0.6600 +5564 6198 0.5860 +5564 6517 0.4090 +5564 6794 0.9750 +5564 6885 0.9400 +5564 7157 0.6640 +5564 7248 0.9250 +5564 7249 0.9600 +5564 8085 0.9410 +5564 8408 0.8230 +5564 8649 0.6000 +5564 8655 0.5110 +5564 8678 0.6820 +5564 8907 0.4820 +5564 9342 0.4190 +5564 9706 0.4130 +5564 9776 0.6150 +5564 9821 0.5920 +5564 9833 0.5170 +5564 9894 0.4030 +5564 10013 0.4470 +5564 10221 0.4850 +5564 10226 0.4400 +5564 10325 0.5280 +5564 10542 0.5070 +5564 10645 0.9730 +5564 10670 0.5430 +5564 10681 0.6810 +5564 10891 0.9360 +5564 22863 0.5630 +5564 23216 0.9380 +5564 23417 0.9140 +5564 23617 0.4940 +5564 27244 0.8350 +5564 28951 0.4840 +5564 28956 0.6190 +5564 29904 0.9120 +5564 30849 0.5520 +5564 51100 0.4800 +5564 51422 0.9990 +5564 51719 0.7840 +5564 51764 0.6500 +5564 53632 0.9990 +5564 54331 0.6500 +5564 55004 0.7180 +5564 55437 0.7200 +5564 55626 0.5610 +5564 55970 0.6800 +5564 57521 0.9470 +5564 57600 0.7550 +5564 57620 0.6410 +5564 57761 0.4920 +5564 58508 0.8260 +5564 58515 0.4100 +5564 58528 0.5800 +5564 59345 0.6810 +5564 60673 0.5630 +5564 64121 0.6120 +5564 64223 0.6030 +5564 64421 0.8290 +5564 79833 0.5910 +5564 80764 0.4390 +5564 81617 0.6980 +5564 81629 0.4840 +5564 83667 0.8010 +5564 83942 0.4840 +5564 83983 0.4840 +5564 84254 0.5360 +5564 84335 0.7210 +5564 84709 0.4100 +5564 84897 0.4140 +5564 90427 0.4030 +5564 92335 0.7880 +5564 94235 0.6500 +5564 96459 0.7570 +5564 133482 0.4200 +5564 140735 0.5430 +5564 143686 0.6800 +5564 153129 0.5340 +5564 200186 0.9200 +5564 201163 0.7020 +5564 283629 0.4840 +5564 317671 0.4790 +5564 389541 0.5810 +5565 5566 0.7650 +5565 5571 0.9990 +5565 5573 0.7640 +5565 5576 0.7610 +5565 5834 0.4400 +5565 5837 0.4580 +5565 6009 0.6160 +5565 6256 0.4210 +5565 6553 0.4360 +5565 6794 0.9760 +5565 6885 0.9170 +5565 7157 0.7740 +5565 7248 0.9080 +5565 7249 0.9370 +5565 7957 0.7400 +5565 8085 0.7970 +5565 8408 0.6390 +5565 8445 0.4530 +5565 8548 0.4040 +5565 8649 0.5310 +5565 8655 0.5050 +5565 8678 0.5780 +5565 8987 0.5690 +5565 9370 0.5760 +5565 9557 0.7450 +5565 9776 0.5570 +5565 9821 0.5980 +5565 9833 0.5280 +5565 10221 0.4840 +5565 10226 0.4330 +5565 10325 0.5270 +5565 10542 0.4990 +5565 10645 0.9750 +5565 10670 0.5340 +5565 10681 0.6810 +5565 10891 0.9330 +5565 11157 0.4240 +5565 22863 0.5270 +5565 23169 0.4040 +5565 23216 0.9350 +5565 23417 0.9130 +5565 23617 0.4840 +5565 27244 0.7130 +5565 28951 0.5250 +5565 28956 0.5440 +5565 28999 0.4550 +5565 29904 0.9050 +5565 30849 0.5750 +5565 51085 0.5920 +5565 51094 0.5900 +5565 51205 0.7480 +5565 51422 0.9990 +5565 51463 0.6400 +5565 51608 0.4380 +5565 51719 0.7710 +5565 51764 0.6500 +5565 53632 0.9990 +5565 54331 0.6500 +5565 55004 0.6510 +5565 55437 0.7490 +5565 55626 0.5130 +5565 55970 0.6560 +5565 57521 0.9330 +5565 57620 0.7810 +5565 57761 0.5140 +5565 58508 0.6040 +5565 58515 0.4100 +5565 58528 0.6210 +5565 59345 0.6810 +5565 60673 0.5190 +5565 64121 0.5850 +5565 64223 0.5580 +5565 64421 0.7230 +5565 66008 0.4560 +5565 79602 0.5940 +5565 81617 0.7070 +5565 81629 0.4840 +5565 83667 0.7130 +5565 83942 0.4840 +5565 83983 0.4840 +5565 84254 0.4800 +5565 84265 0.5340 +5565 84335 0.6950 +5565 84709 0.4100 +5565 84897 0.4110 +5565 91544 0.4290 +5565 92335 0.7640 +5565 94235 0.6500 +5565 96459 0.4600 +5565 114803 0.4040 +5565 140735 0.5140 +5565 143686 0.6580 +5565 153129 0.5340 +5565 200030 0.5830 +5565 200186 0.9190 +5565 201163 0.4780 +5565 283629 0.4840 +5565 389541 0.5140 +5565 653519 0.5980 +5566 5567 0.9870 +5566 5568 0.9650 +5566 5569 0.9980 +5566 5571 0.6410 +5566 5573 0.9990 +5566 5575 0.9990 +5566 5576 0.9990 +5566 5577 0.9990 +5566 5578 0.4230 +5566 5592 0.6450 +5566 5593 0.4160 +5566 5594 0.9290 +5566 5595 0.9590 +5566 5598 0.6440 +5566 5604 0.9290 +5566 5605 0.9150 +5566 5610 0.4020 +5566 5613 0.6810 +5566 5617 0.4460 +5566 5663 0.9360 +5566 5705 0.4690 +5566 5717 0.4820 +5566 5727 0.5390 +5566 5728 0.4820 +5566 5731 0.5080 +5566 5733 0.5410 +5566 5734 0.7870 +5566 5739 0.4010 +5566 5741 0.6240 +5566 5743 0.5850 +5566 5744 0.6450 +5566 5745 0.4870 +5566 5747 0.9110 +5566 5778 0.4620 +5566 5834 0.6510 +5566 5836 0.6450 +5566 5837 0.6510 +5566 5864 0.5050 +5566 5872 0.9440 +5566 5877 0.6420 +5566 5879 0.4390 +5566 5880 0.4290 +5566 5894 0.9230 +5566 5906 0.9390 +5566 5908 0.9430 +5566 5911 0.5390 +5566 5912 0.4590 +5566 5913 0.5060 +5566 5921 0.4070 +5566 5923 0.9280 +5566 5924 0.9200 +5566 5962 0.6060 +5566 5970 0.9920 +5566 5972 0.4690 +5566 5979 0.4480 +5566 6003 0.5430 +5566 6009 0.4020 +5566 6010 0.4350 +5566 6092 0.5500 +5566 6195 0.4250 +5566 6198 0.9340 +5566 6199 0.9300 +5566 6261 0.5400 +5566 6262 0.9940 +5566 6263 0.4440 +5566 6295 0.5130 +5566 6305 0.4700 +5566 6323 0.9190 +5566 6324 0.9080 +5566 6330 0.9090 +5566 6331 0.9370 +5566 6332 0.9020 +5566 6343 0.4760 +5566 6347 0.4190 +5566 6469 0.5290 +5566 6508 0.4670 +5566 6517 0.4750 +5566 6531 0.4010 +5566 6543 0.9160 +5566 6546 0.9340 +5566 6547 0.9120 +5566 6548 0.9400 +5566 6550 0.5290 +5566 6558 0.9390 +5566 6608 0.9650 +5566 6662 0.9300 +5566 6667 0.9370 +5566 6717 0.5750 +5566 6720 0.4530 +5566 6750 0.4520 +5566 6770 0.8630 +5566 6774 0.4970 +5566 6833 0.9350 +5566 6853 0.4890 +5566 6863 0.5510 +5566 6907 0.5110 +5566 6908 0.4520 +5566 7040 0.5000 +5566 7054 0.5650 +5566 7082 0.4030 +5566 7099 0.4480 +5566 7124 0.5870 +5566 7137 0.9520 +5566 7157 0.5240 +5566 7270 0.9000 +5566 7273 0.4630 +5566 7289 0.5830 +5566 7299 0.4080 +5566 7306 0.4670 +5566 7337 0.6070 +5566 7350 0.5880 +5566 7408 0.9550 +5566 7416 0.6070 +5566 7430 0.9980 +5566 7431 0.4480 +5566 7432 0.5880 +5566 7433 0.4350 +5566 7434 0.4400 +5566 7442 0.9630 +5566 7448 0.4260 +5566 7514 0.5490 +5566 7529 0.6080 +5566 7531 0.4900 +5566 7534 0.6580 +5566 7837 0.5740 +5566 7849 0.9130 +5566 7932 0.6500 +5566 8165 0.9990 +5566 8202 0.9190 +5566 8290 0.4190 +5566 8312 0.4020 +5566 8356 0.4090 +5566 8383 0.6870 +5566 8386 0.6500 +5566 8387 0.6500 +5566 8388 0.6500 +5566 8390 0.6610 +5566 8408 0.9150 +5566 8440 0.4160 +5566 8458 0.9000 +5566 8550 0.4130 +5566 8590 0.6500 +5566 8622 0.4370 +5566 8645 0.4160 +5566 8654 0.5640 +5566 8655 0.6630 +5566 8671 0.5320 +5566 8766 0.6730 +5566 8801 0.4630 +5566 8826 0.7180 +5566 8841 0.5390 +5566 8852 0.9910 +5566 8880 0.4320 +5566 8936 0.9330 +5566 8945 0.4300 +5566 8989 0.6260 +5566 9048 0.4400 +5566 9149 0.4890 +5566 9217 0.6510 +5566 9218 0.6590 +5566 9252 0.4290 +5566 9254 0.6870 +5566 9311 0.4430 +5566 9351 0.6370 +5566 9368 0.9690 +5566 9370 0.4520 +5566 9421 0.4500 +5566 9463 0.4800 +5566 9465 0.9650 +5566 9472 0.9530 +5566 9495 0.9980 +5566 9586 0.7180 +5566 9590 0.9910 +5566 9611 0.5380 +5566 9612 0.4990 +5566 9659 0.8320 +5566 9706 0.9060 +5566 9742 0.5100 +5566 9867 0.5500 +5566 9927 0.4880 +5566 9934 0.4220 +5566 10018 0.5010 +5566 10059 0.5400 +5566 10081 0.4360 +5566 10133 0.5590 +5566 10142 0.9930 +5566 10238 0.4420 +5566 10242 0.9000 +5566 10270 0.8340 +5566 10273 0.5010 +5566 10280 0.5820 +5566 10345 0.6320 +5566 10368 0.6500 +5566 10369 0.7270 +5566 10411 0.9860 +5566 10488 0.7020 +5566 10498 0.9180 +5566 10565 0.4430 +5566 10566 0.6240 +5566 10630 0.4570 +5566 10657 0.4070 +5566 10672 0.5360 +5566 10681 0.7260 +5566 10725 0.4550 +5566 10798 0.6500 +5566 10811 0.4490 +5566 10846 0.7920 +5566 10891 0.7080 +5566 10908 0.5010 +5566 10981 0.7660 +5566 11069 0.9830 +5566 11140 0.6380 +5566 11142 0.6530 +5566 11181 0.5420 +5566 11214 0.9080 +5566 11215 0.9390 +5566 11216 0.9340 +5566 11315 0.4560 +5566 11337 0.9340 +5566 11343 0.5900 +5566 11345 0.9380 +5566 22895 0.4230 +5566 22919 0.7190 +5566 22999 0.5270 +5566 23108 0.4230 +5566 23235 0.9350 +5566 23354 0.5050 +5566 23373 0.5120 +5566 23387 0.5000 +5566 23411 0.5400 +5566 23432 0.9440 +5566 23439 0.6590 +5566 23538 0.6500 +5566 23551 0.5420 +5566 23710 0.9370 +5566 23770 0.4710 +5566 25780 0.4060 +5566 25924 0.5930 +5566 26051 0.4560 +5566 26135 0.4270 +5566 26188 0.6500 +5566 26189 0.6600 +5566 26207 0.4550 +5566 26211 0.6500 +5566 26212 0.6500 +5566 26219 0.6500 +5566 26245 0.6500 +5566 26246 0.6500 +5566 26248 0.6500 +5566 26251 0.5250 +5566 26256 0.4840 +5566 26333 0.6500 +5566 26338 0.7760 +5566 26339 0.6500 +5566 26341 0.6500 +5566 26476 0.6500 +5566 26493 0.6500 +5566 26494 0.6500 +5566 26496 0.6500 +5566 26497 0.6500 +5566 26499 0.4520 +5566 26529 0.6500 +5566 26531 0.6500 +5566 26532 0.6500 +5566 26533 0.6500 +5566 26534 0.6500 +5566 26538 0.6500 +5566 26539 0.6500 +5566 26595 0.6500 +5566 26648 0.6500 +5566 26658 0.6500 +5566 26659 0.6570 +5566 26664 0.6500 +5566 26686 0.6500 +5566 26687 0.6500 +5566 26689 0.6500 +5566 26692 0.6500 +5566 26693 0.6500 +5566 26707 0.6500 +5566 26716 0.6500 +5566 26735 0.6500 +5566 26737 0.6500 +5566 26740 0.6500 +5566 26960 0.7730 +5566 26986 0.4490 +5566 26993 0.4400 +5566 27091 0.6500 +5566 27092 0.6500 +5566 27094 0.9020 +5566 27345 0.9090 +5566 50801 0.4880 +5566 50846 0.4450 +5566 50940 0.6780 +5566 51024 0.4540 +5566 51079 0.6620 +5566 51085 0.5760 +5566 51099 0.5790 +5566 51305 0.5630 +5566 51422 0.7890 +5566 51527 0.7710 +5566 51655 0.4360 +5566 51684 0.9660 +5566 51738 0.4050 +5566 51764 0.6720 +5566 51780 0.9070 +5566 51806 0.9890 +5566 53632 0.6370 +5566 53829 0.4560 +5566 54205 0.5710 +5566 54331 0.6560 +5566 54801 0.5010 +5566 54927 0.4400 +5566 54930 0.4990 +5566 54998 0.4340 +5566 55142 0.4990 +5566 55366 0.4340 +5566 55559 0.5000 +5566 55607 0.4240 +5566 55669 0.4440 +5566 55755 0.7210 +5566 55764 0.5330 +5566 55799 0.6580 +5566 55811 0.9270 +5566 55818 0.9200 +5566 55869 0.4590 +5566 55967 0.6520 +5566 55970 0.6540 +5566 56302 0.9240 +5566 56656 0.6500 +5566 56659 0.4340 +5566 56660 0.4220 +5566 56672 0.8960 +5566 56901 0.6590 +5566 57104 0.6240 +5566 57379 0.5870 +5566 57506 0.4290 +5566 57521 0.4340 +5566 57539 0.4990 +5566 57605 0.4270 +5566 57728 0.5160 +5566 59283 0.6510 +5566 59284 0.6510 +5566 59285 0.6500 +5566 59341 0.4860 +5566 59345 0.7120 +5566 59350 0.4490 +5566 60598 0.4200 +5566 64746 0.5930 +5566 64760 0.4270 +5566 64764 0.6620 +5566 64784 0.5520 +5566 65018 0.5810 +5566 79290 0.6500 +5566 79295 0.6500 +5566 79310 0.6500 +5566 79317 0.6500 +5566 79324 0.6510 +5566 79339 0.6580 +5566 79345 0.6500 +5566 79346 0.6500 +5566 79441 0.4990 +5566 79473 0.6500 +5566 79490 0.6500 +5566 79541 0.6550 +5566 79544 0.6500 +5566 79549 0.6500 +5566 79718 0.4700 +5566 79809 0.5450 +5566 79866 0.4990 +5566 80352 0.4200 +5566 81050 0.6500 +5566 81099 0.6500 +5566 81127 0.6500 +5566 81168 0.6500 +5566 81282 0.6500 +5566 81285 0.6600 +5566 81300 0.6500 +5566 81309 0.6500 +5566 81318 0.6500 +5566 81327 0.6500 +5566 81341 0.6500 +5566 81392 0.6500 +5566 81399 0.6500 +5566 81442 0.6500 +5566 81448 0.6500 +5566 81466 0.6500 +5566 81469 0.6500 +5566 81470 0.6500 +5566 81696 0.6500 +5566 81697 0.6500 +5566 81797 0.6500 +5566 81876 0.5420 +5566 83667 0.4230 +5566 83795 0.4890 +5566 83853 0.5220 +5566 84075 0.5920 +5566 84152 0.9640 +5566 84335 0.9240 +5566 84687 0.7140 +5566 84699 0.6890 +5566 84867 0.4530 +5566 84876 0.9210 +5566 85366 0.9100 +5566 89822 0.4890 +5566 90993 0.6710 +5566 91807 0.9150 +5566 91860 0.9890 +5566 93323 0.4990 +5566 93589 0.6580 +5566 94235 0.6500 +5566 115106 0.4990 +5566 116443 0.7220 +5566 116444 0.6960 +5566 117177 0.5110 +5566 119678 0.6500 +5566 119679 0.6500 +5566 119682 0.6500 +5566 119687 0.6500 +5566 119692 0.6510 +5566 119694 0.6510 +5566 119695 0.6500 +5566 119749 0.6500 +5566 119764 0.6500 +5566 119765 0.6500 +5566 119772 0.6500 +5566 119774 0.6500 +5566 120065 0.6500 +5566 120066 0.6500 +5566 120586 0.6500 +5566 120775 0.6500 +5566 120776 0.6500 +5566 120787 0.6500 +5566 120793 0.6500 +5566 120892 0.5920 +5566 121129 0.6500 +5566 121130 0.6500 +5566 121275 0.6500 +5566 121364 0.6500 +5566 122011 0.9070 +5566 122740 0.6500 +5566 122742 0.6500 +5566 122748 0.6500 +5566 124538 0.6500 +5566 125958 0.6500 +5566 125962 0.6500 +5566 125963 0.6500 +5566 126328 0.6520 +5566 126370 0.6500 +5566 126374 0.4100 +5566 126541 0.6500 +5566 127059 0.6500 +5566 127062 0.6500 +5566 127064 0.6500 +5566 127066 0.6510 +5566 127068 0.6500 +5566 127069 0.6500 +5566 127077 0.6500 +5566 127385 0.6790 +5566 127608 0.6500 +5566 127623 0.6500 +5566 128360 0.6500 +5566 128366 0.6500 +5566 128367 0.6500 +5566 128368 0.6500 +5566 128372 0.6500 +5566 130075 0.6500 +5566 133482 0.4120 +5566 134083 0.6500 +5566 135924 0.6500 +5566 135941 0.6500 +5566 135946 0.6500 +5566 135948 0.6500 +5566 137902 0.5720 +5566 138799 0.6500 +5566 138802 0.6500 +5566 138804 0.6500 +5566 138805 0.6500 +5566 138881 0.6500 +5566 138883 0.6500 +5566 140894 0.4350 +5566 143496 0.6500 +5566 143503 0.6660 +5566 144124 0.6500 +5566 144125 0.6500 +5566 148327 0.6850 +5566 150094 0.4250 +5566 150681 0.6500 +5566 151306 0.4200 +5566 157855 0.9290 +5566 158131 0.6500 +5566 158798 0.9720 +5566 162998 0.6500 +5566 163688 0.9880 +5566 196335 0.6500 +5566 196883 0.7960 +5566 200186 0.4220 +5566 202333 0.4750 +5566 219417 0.6500 +5566 219428 0.6500 +5566 219429 0.6500 +5566 219431 0.6500 +5566 219436 0.6500 +5566 219437 0.6500 +5566 219438 0.6500 +5566 219447 0.6500 +5566 219453 0.6500 +5566 219469 0.6500 +5566 219473 0.6500 +5566 219477 0.6500 +5566 219479 0.6500 +5566 219482 0.6500 +5566 219484 0.6500 +5566 219487 0.6500 +5566 219493 0.6500 +5566 219858 0.6500 +5566 219869 0.6500 +5566 219870 0.6500 +5566 219874 0.6500 +5566 219875 0.6500 +5566 219952 0.6500 +5566 219954 0.6500 +5566 219956 0.6500 +5566 219957 0.6500 +5566 219960 0.6500 +5566 219965 0.6500 +5566 219968 0.6500 +5566 219981 0.6500 +5566 219982 0.6500 +5566 219983 0.6500 +5566 219986 0.6500 +5566 254786 0.6500 +5566 254879 0.6500 +5566 254973 0.6500 +5566 255725 0.6500 +5566 256148 0.6500 +5566 282763 0.6710 +5566 282770 0.6500 +5566 282775 0.6500 +5566 283092 0.6500 +5566 283093 0.6500 +5566 283159 0.6500 +5566 283160 0.6500 +5566 283162 0.6500 +5566 283297 0.6500 +5566 283365 0.6500 +5566 283694 0.6500 +5566 284383 0.6500 +5566 284433 0.6500 +5566 284521 0.6500 +5566 284532 0.6510 +5566 285659 0.6500 +5566 286362 0.6500 +5566 338662 0.6500 +5566 338674 0.6500 +5566 338675 0.6500 +5566 338751 0.6500 +5566 338755 0.6550 +5566 340156 0.9140 +5566 340980 0.6500 +5566 341152 0.6710 +5566 341276 0.6500 +5566 341416 0.6500 +5566 341418 0.6500 +5566 341799 0.6500 +5566 343169 0.6500 +5566 343170 0.6510 +5566 343171 0.6600 +5566 343172 0.6500 +5566 343173 0.6500 +5566 343563 0.6500 +5566 346517 0.6500 +5566 346525 0.6500 +5566 347168 0.6500 +5566 347169 0.6500 +5566 347468 0.6500 +5566 374291 0.6590 +5566 374654 0.7870 +5566 375775 0.4450 +5566 387748 0.6500 +5566 388761 0.6510 +5566 390036 0.6500 +5566 390037 0.6500 +5566 390038 0.6500 +5566 390054 0.6500 +5566 390058 0.6580 +5566 390059 0.6500 +5566 390061 0.6500 +5566 390063 0.6500 +5566 390064 0.6500 +5566 390066 0.6570 +5566 390067 0.6500 +5566 390072 0.6500 +5566 390075 0.6500 +5566 390077 0.6500 +5566 390078 0.6500 +5566 390079 0.6500 +5566 390081 0.6500 +5566 390082 0.6500 +5566 390083 0.6500 +5566 390084 0.6500 +5566 390093 0.6500 +5566 390113 0.6500 +5566 390142 0.6500 +5566 390144 0.6500 +5566 390148 0.6500 +5566 390151 0.6500 +5566 390152 0.6500 +5566 390155 0.6500 +5566 390157 0.6500 +5566 390162 0.6500 +5566 390168 0.6500 +5566 390174 0.6500 +5566 390181 0.6500 +5566 390190 0.6500 +5566 390191 0.6500 +5566 390195 0.6500 +5566 390197 0.6500 +5566 390199 0.6500 +5566 390201 0.6500 +5566 390260 0.6500 +5566 390261 0.6500 +5566 390264 0.6500 +5566 390265 0.6500 +5566 390271 0.6660 +5566 390275 0.6500 +5566 390321 0.6500 +5566 390323 0.6500 +5566 390326 0.6500 +5566 390327 0.6500 +5566 390429 0.6500 +5566 390431 0.6500 +5566 390433 0.6500 +5566 390437 0.6500 +5566 390445 0.6500 +5566 390538 0.6500 +5566 390648 0.6500 +5566 390649 0.6500 +5566 390883 0.6500 +5566 390892 0.6500 +5566 391107 0.6500 +5566 391109 0.6500 +5566 391112 0.6500 +5566 391114 0.6500 +5566 391189 0.6500 +5566 391190 0.6500 +5566 391192 0.6500 +5566 391194 0.6500 +5566 391195 0.6500 +5566 391196 0.6500 +5566 391211 0.6500 +5566 392138 0.6500 +5566 392309 0.6500 +5566 392376 0.6500 +5566 392390 0.6500 +5566 392391 0.6500 +5566 392392 0.6500 +5566 393046 0.6500 +5566 401427 0.6500 +5566 401665 0.6580 +5566 401666 0.6510 +5566 401667 0.6510 +5566 401992 0.6500 +5566 401993 0.6500 +5566 401994 0.6780 +5566 402135 0.6500 +5566 402317 0.6500 +5566 403239 0.6500 +5566 403244 0.6500 +5566 403253 0.6500 +5566 403273 0.6500 +5566 403274 0.6500 +5566 403277 0.6500 +5566 403278 0.6500 +5566 403282 0.6500 +5566 403284 0.6500 +5566 440093 0.4190 +5566 440153 0.6500 +5566 440503 0.4610 +5566 440686 0.4190 +5566 441308 0.6500 +5566 441608 0.6500 +5566 441670 0.6500 +5566 441933 0.6500 +5566 442184 0.6500 +5566 442185 0.6500 +5566 442186 0.6500 +5566 442191 0.6510 +5566 442194 0.6500 +5566 442361 0.6500 +5566 445815 0.9290 +5566 653604 0.4190 +5566 728642 0.5290 +5566 100506658 0.4340 +5566 102723532 0.6500 +5566 104909134 0.6630 +5566 105369274 0.6500 +5567 5568 0.9680 +5567 5569 0.9840 +5567 5573 0.9990 +5567 5575 0.9980 +5567 5576 0.9980 +5567 5577 0.9990 +5567 5578 0.4320 +5567 5592 0.6520 +5567 5593 0.4220 +5567 5594 0.9290 +5567 5595 0.9580 +5567 5598 0.5740 +5567 5604 0.9250 +5567 5605 0.9140 +5567 5610 0.4080 +5567 5613 0.6800 +5567 5617 0.4470 +5567 5663 0.9360 +5567 5705 0.4630 +5567 5727 0.5390 +5567 5728 0.5170 +5567 5731 0.5050 +5567 5733 0.5440 +5567 5734 0.7880 +5567 5741 0.6220 +5567 5743 0.5840 +5567 5744 0.6440 +5567 5745 0.4870 +5567 5747 0.9110 +5567 5834 0.6420 +5567 5836 0.6350 +5567 5837 0.6400 +5567 5864 0.5150 +5567 5872 0.9440 +5567 5877 0.6410 +5567 5880 0.4870 +5567 5894 0.9230 +5567 5906 0.9410 +5567 5908 0.9440 +5567 5911 0.5450 +5567 5912 0.4370 +5567 5913 0.5010 +5567 5921 0.4230 +5567 5923 0.9300 +5567 5924 0.9220 +5567 5962 0.6030 +5567 5970 0.9560 +5567 5972 0.4680 +5567 5979 0.4520 +5567 5999 0.4100 +5567 6010 0.4350 +5567 6092 0.5670 +5567 6195 0.4360 +5567 6198 0.9320 +5567 6199 0.9310 +5567 6261 0.5390 +5567 6262 0.9930 +5567 6263 0.4430 +5567 6295 0.5110 +5567 6323 0.9180 +5567 6324 0.9060 +5567 6330 0.9080 +5567 6331 0.9360 +5567 6332 0.9010 +5567 6343 0.4530 +5567 6347 0.4190 +5567 6426 0.4170 +5567 6469 0.5250 +5567 6508 0.4550 +5567 6517 0.4730 +5567 6543 0.9160 +5567 6546 0.9300 +5567 6547 0.9120 +5567 6548 0.9380 +5567 6550 0.5290 +5567 6558 0.9320 +5567 6608 0.9650 +5567 6662 0.9300 +5567 6667 0.9350 +5567 6717 0.5870 +5567 6720 0.4470 +5567 6750 0.4640 +5567 6770 0.8630 +5567 6774 0.4900 +5567 6833 0.9370 +5567 6853 0.4880 +5567 6863 0.5500 +5567 6908 0.4510 +5567 7040 0.4740 +5567 7054 0.5620 +5567 7082 0.4020 +5567 7099 0.4430 +5567 7124 0.5870 +5567 7137 0.9520 +5567 7157 0.5420 +5567 7187 0.6590 +5567 7189 0.7050 +5567 7270 0.9000 +5567 7273 0.4630 +5567 7289 0.5840 +5567 7299 0.4080 +5567 7306 0.4670 +5567 7341 0.4600 +5567 7350 0.5860 +5567 7408 0.9510 +5567 7416 0.5230 +5567 7430 0.9980 +5567 7432 0.5970 +5567 7433 0.4340 +5567 7434 0.4390 +5567 7442 0.9630 +5567 7514 0.5450 +5567 7529 0.6000 +5567 7534 0.4190 +5567 7837 0.5550 +5567 7849 0.9130 +5567 7932 0.6500 +5567 8165 0.9990 +5567 8202 0.9190 +5567 8290 0.4070 +5567 8356 0.4400 +5567 8383 0.6850 +5567 8386 0.6500 +5567 8387 0.6500 +5567 8388 0.6500 +5567 8390 0.6610 +5567 8408 0.9130 +5567 8440 0.4180 +5567 8458 0.9000 +5567 8550 0.4150 +5567 8590 0.6500 +5567 8622 0.4100 +5567 8645 0.4240 +5567 8654 0.6990 +5567 8655 0.6670 +5567 8671 0.5540 +5567 8801 0.4740 +5567 8826 0.6160 +5567 8852 0.9910 +5567 8880 0.4400 +5567 8936 0.9110 +5567 8989 0.4810 +5567 9048 0.4380 +5567 9217 0.5180 +5567 9218 0.6380 +5567 9252 0.4430 +5567 9254 0.6910 +5567 9351 0.6260 +5567 9368 0.9690 +5567 9370 0.4520 +5567 9463 0.4990 +5567 9465 0.9630 +5567 9472 0.9530 +5567 9495 0.9980 +5567 9586 0.7250 +5567 9590 0.9890 +5567 9659 0.8090 +5567 9706 0.9060 +5567 9742 0.5090 +5567 9867 0.5570 +5567 9927 0.4660 +5567 9934 0.4250 +5567 10059 0.5400 +5567 10081 0.4360 +5567 10142 0.9910 +5567 10238 0.4400 +5567 10242 0.9000 +5567 10270 0.8140 +5567 10280 0.5550 +5567 10345 0.6310 +5567 10368 0.6610 +5567 10369 0.7260 +5567 10411 0.9840 +5567 10488 0.7010 +5567 10498 0.9150 +5567 10565 0.4450 +5567 10566 0.6130 +5567 10630 0.4570 +5567 10657 0.4060 +5567 10681 0.7350 +5567 10798 0.6500 +5567 10846 0.7890 +5567 10891 0.7070 +5567 10908 0.4800 +5567 10981 0.7680 +5567 11069 0.9820 +5567 11142 0.7640 +5567 11181 0.5420 +5567 11214 0.7770 +5567 11215 0.9480 +5567 11216 0.9340 +5567 11337 0.9340 +5567 11343 0.5870 +5567 11345 0.9380 +5567 22895 0.4220 +5567 22919 0.5290 +5567 22999 0.5400 +5567 23108 0.4210 +5567 23235 0.9110 +5567 23373 0.5030 +5567 23411 0.5420 +5567 23432 0.9160 +5567 23439 0.6590 +5567 23538 0.6500 +5567 23551 0.5290 +5567 23710 0.9370 +5567 25924 0.6070 +5567 26051 0.4670 +5567 26135 0.4470 +5567 26188 0.6500 +5567 26189 0.6600 +5567 26207 0.4590 +5567 26211 0.6500 +5567 26212 0.6500 +5567 26219 0.6500 +5567 26245 0.6500 +5567 26246 0.6500 +5567 26248 0.6500 +5567 26251 0.5230 +5567 26256 0.4840 +5567 26333 0.6500 +5567 26338 0.7760 +5567 26339 0.6500 +5567 26341 0.6500 +5567 26476 0.6500 +5567 26493 0.6500 +5567 26494 0.6500 +5567 26496 0.6500 +5567 26497 0.6500 +5567 26499 0.4520 +5567 26529 0.6500 +5567 26531 0.6500 +5567 26532 0.6500 +5567 26533 0.6500 +5567 26534 0.6500 +5567 26538 0.6500 +5567 26539 0.6500 +5567 26595 0.6500 +5567 26648 0.6500 +5567 26658 0.6500 +5567 26659 0.6570 +5567 26664 0.6500 +5567 26686 0.6500 +5567 26687 0.6500 +5567 26689 0.6500 +5567 26692 0.6500 +5567 26693 0.6500 +5567 26707 0.6500 +5567 26716 0.6500 +5567 26735 0.6500 +5567 26737 0.6500 +5567 26740 0.6500 +5567 26960 0.7790 +5567 26993 0.4550 +5567 27091 0.6500 +5567 27092 0.6500 +5567 27094 0.9020 +5567 27345 0.9120 +5567 50801 0.4890 +5567 50846 0.4410 +5567 50940 0.6520 +5567 51024 0.4160 +5567 51079 0.6640 +5567 51085 0.5770 +5567 51099 0.5740 +5567 51305 0.5790 +5567 51527 0.7730 +5567 51655 0.4380 +5567 51684 0.9650 +5567 51738 0.4040 +5567 51764 0.6720 +5567 51780 0.9070 +5567 51806 0.9890 +5567 53829 0.4520 +5567 54205 0.5710 +5567 54331 0.7050 +5567 54927 0.4340 +5567 55366 0.4260 +5567 55607 0.4230 +5567 55669 0.4430 +5567 55755 0.6460 +5567 55764 0.5300 +5567 55799 0.6660 +5567 55811 0.9260 +5567 55818 0.9200 +5567 55967 0.6500 +5567 55970 0.6700 +5567 56302 0.9230 +5567 56656 0.6500 +5567 56659 0.4450 +5567 56660 0.4330 +5567 56672 0.7960 +5567 56901 0.6590 +5567 57104 0.6060 +5567 57506 0.4280 +5567 57521 0.4320 +5567 57539 0.5190 +5567 57605 0.4140 +5567 57728 0.5140 +5567 59283 0.6500 +5567 59284 0.6560 +5567 59285 0.6500 +5567 59341 0.4850 +5567 59345 0.7100 +5567 60598 0.4390 +5567 64746 0.5880 +5567 64760 0.4200 +5567 64764 0.6810 +5567 64784 0.5520 +5567 65018 0.4200 +5567 79290 0.6500 +5567 79295 0.6500 +5567 79310 0.6500 +5567 79317 0.6500 +5567 79324 0.6500 +5567 79339 0.6580 +5567 79345 0.6500 +5567 79346 0.6500 +5567 79473 0.6500 +5567 79490 0.6500 +5567 79541 0.6550 +5567 79544 0.6500 +5567 79549 0.6500 +5567 79809 0.5440 +5567 80352 0.4200 +5567 81050 0.6500 +5567 81099 0.6500 +5567 81127 0.6500 +5567 81168 0.6500 +5567 81282 0.6500 +5567 81285 0.6600 +5567 81300 0.6500 +5567 81309 0.6500 +5567 81318 0.6500 +5567 81327 0.6500 +5567 81341 0.6500 +5567 81392 0.6500 +5567 81399 0.6500 +5567 81442 0.6500 +5567 81448 0.6500 +5567 81466 0.6500 +5567 81469 0.6500 +5567 81470 0.6500 +5567 81669 0.4130 +5567 81696 0.6500 +5567 81697 0.6500 +5567 81797 0.6500 +5567 83795 0.5050 +5567 83853 0.5210 +5567 84075 0.5900 +5567 84152 0.9630 +5567 84335 0.9200 +5567 84687 0.5820 +5567 84699 0.7320 +5567 84823 0.4950 +5567 84867 0.4640 +5567 84876 0.9200 +5567 85366 0.9100 +5567 89822 0.5060 +5567 90993 0.6760 +5567 91807 0.9150 +5567 91860 0.9890 +5567 93589 0.6580 +5567 94235 0.6500 +5567 116443 0.7280 +5567 116444 0.6960 +5567 119678 0.6500 +5567 119679 0.6500 +5567 119682 0.6500 +5567 119687 0.6500 +5567 119692 0.6500 +5567 119694 0.6500 +5567 119695 0.6500 +5567 119749 0.6500 +5567 119764 0.6500 +5567 119765 0.6500 +5567 119772 0.6500 +5567 119774 0.6500 +5567 120065 0.6500 +5567 120066 0.6500 +5567 120586 0.6500 +5567 120775 0.6500 +5567 120776 0.6500 +5567 120787 0.6500 +5567 120793 0.6500 +5567 121129 0.6500 +5567 121130 0.6500 +5567 121275 0.6500 +5567 121364 0.6500 +5567 122011 0.9070 +5567 122740 0.6500 +5567 122742 0.6500 +5567 122748 0.6500 +5567 124538 0.6500 +5567 125958 0.6500 +5567 125962 0.6500 +5567 125963 0.6500 +5567 126328 0.6500 +5567 126370 0.6500 +5567 126374 0.4100 +5567 126541 0.6500 +5567 127059 0.6500 +5567 127062 0.6500 +5567 127064 0.6500 +5567 127066 0.6510 +5567 127068 0.6500 +5567 127069 0.6500 +5567 127077 0.6500 +5567 127385 0.6500 +5567 127608 0.6500 +5567 127623 0.6500 +5567 128360 0.6500 +5567 128366 0.6500 +5567 128367 0.6500 +5567 128368 0.6500 +5567 128372 0.6500 +5567 130075 0.6500 +5567 134083 0.6500 +5567 135924 0.6500 +5567 135941 0.6500 +5567 135946 0.6500 +5567 135948 0.6500 +5567 137902 0.5540 +5567 138799 0.6500 +5567 138802 0.6500 +5567 138804 0.6500 +5567 138805 0.6500 +5567 138881 0.6500 +5567 138883 0.6500 +5567 140894 0.4350 +5567 143496 0.6500 +5567 143503 0.6650 +5567 144124 0.6500 +5567 144125 0.6500 +5567 148327 0.6950 +5567 150681 0.6500 +5567 151306 0.4180 +5567 152273 0.4550 +5567 157855 0.9280 +5567 158131 0.6500 +5567 158798 0.9620 +5567 162998 0.6500 +5567 163688 0.9880 +5567 196335 0.6500 +5567 196883 0.7940 +5567 200186 0.4100 +5567 202333 0.4670 +5567 219417 0.6500 +5567 219428 0.6500 +5567 219429 0.6500 +5567 219431 0.6500 +5567 219436 0.6500 +5567 219437 0.6500 +5567 219438 0.6500 +5567 219447 0.6500 +5567 219453 0.6500 +5567 219469 0.6500 +5567 219473 0.6500 +5567 219477 0.6500 +5567 219479 0.6500 +5567 219482 0.6500 +5567 219484 0.6500 +5567 219487 0.6500 +5567 219493 0.6500 +5567 219858 0.6500 +5567 219869 0.6500 +5567 219870 0.6500 +5567 219874 0.6500 +5567 219875 0.6500 +5567 219952 0.6500 +5567 219954 0.6500 +5567 219956 0.6500 +5567 219957 0.6500 +5567 219960 0.6500 +5567 219965 0.6500 +5567 219968 0.6500 +5567 219981 0.6500 +5567 219982 0.6500 +5567 219983 0.6500 +5567 219986 0.6500 +5567 254786 0.6500 +5567 254879 0.6500 +5567 254973 0.6500 +5567 255725 0.6500 +5567 256148 0.6500 +5567 282763 0.6700 +5567 282770 0.6500 +5567 282775 0.6500 +5567 283092 0.6500 +5567 283093 0.6500 +5567 283159 0.6500 +5567 283160 0.6500 +5567 283162 0.6500 +5567 283297 0.6500 +5567 283365 0.6500 +5567 283694 0.6500 +5567 284383 0.6500 +5567 284433 0.6500 +5567 284521 0.6620 +5567 284532 0.6510 +5567 285659 0.6500 +5567 286362 0.6500 +5567 338662 0.6500 +5567 338674 0.6500 +5567 338675 0.6500 +5567 338751 0.6500 +5567 338755 0.6540 +5567 340156 0.9130 +5567 340980 0.6500 +5567 341152 0.6670 +5567 341276 0.6500 +5567 341416 0.6500 +5567 341418 0.6500 +5567 341799 0.6500 +5567 343169 0.6500 +5567 343170 0.6510 +5567 343171 0.6590 +5567 343172 0.6500 +5567 343173 0.6500 +5567 343563 0.6500 +5567 346517 0.6500 +5567 346525 0.6500 +5567 347168 0.6500 +5567 347169 0.6500 +5567 347468 0.6500 +5567 374291 0.6590 +5567 374654 0.7870 +5567 375775 0.4300 +5567 387748 0.6500 +5567 388761 0.6510 +5567 390036 0.6500 +5567 390037 0.6500 +5567 390038 0.6500 +5567 390054 0.6500 +5567 390058 0.6500 +5567 390059 0.6500 +5567 390061 0.6500 +5567 390063 0.6500 +5567 390064 0.6500 +5567 390066 0.6560 +5567 390067 0.6500 +5567 390072 0.6500 +5567 390075 0.6500 +5567 390077 0.6500 +5567 390078 0.6500 +5567 390079 0.6500 +5567 390081 0.6500 +5567 390082 0.6500 +5567 390083 0.6500 +5567 390084 0.6500 +5567 390093 0.6500 +5567 390113 0.6500 +5567 390142 0.6500 +5567 390144 0.6500 +5567 390148 0.6500 +5567 390151 0.6500 +5567 390152 0.6500 +5567 390155 0.6500 +5567 390157 0.6500 +5567 390162 0.6500 +5567 390168 0.6500 +5567 390174 0.6500 +5567 390181 0.6500 +5567 390190 0.6500 +5567 390191 0.6500 +5567 390195 0.6500 +5567 390197 0.6500 +5567 390199 0.6500 +5567 390201 0.6500 +5567 390260 0.6500 +5567 390261 0.6500 +5567 390264 0.6500 +5567 390265 0.6500 +5567 390271 0.6650 +5567 390275 0.6500 +5567 390321 0.6500 +5567 390323 0.6500 +5567 390326 0.6500 +5567 390327 0.6500 +5567 390429 0.6500 +5567 390431 0.6500 +5567 390433 0.6500 +5567 390437 0.6500 +5567 390445 0.6500 +5567 390538 0.6500 +5567 390648 0.6500 +5567 390649 0.6500 +5567 390883 0.6500 +5567 390892 0.6500 +5567 391107 0.6500 +5567 391109 0.6500 +5567 391112 0.6500 +5567 391114 0.6500 +5567 391189 0.6500 +5567 391190 0.6500 +5567 391192 0.6500 +5567 391194 0.6500 +5567 391195 0.6500 +5567 391196 0.6500 +5567 391211 0.6500 +5567 392138 0.6500 +5567 392309 0.6500 +5567 392376 0.6500 +5567 392390 0.6500 +5567 392391 0.6500 +5567 392392 0.6500 +5567 393046 0.6500 +5567 401427 0.6500 +5567 401665 0.6540 +5567 401666 0.6500 +5567 401667 0.6500 +5567 401992 0.6500 +5567 401993 0.6500 +5567 401994 0.6840 +5567 402135 0.6500 +5567 402317 0.6500 +5567 403239 0.6500 +5567 403244 0.6500 +5567 403253 0.6500 +5567 403273 0.6500 +5567 403274 0.6500 +5567 403277 0.6500 +5567 403278 0.6500 +5567 403282 0.6500 +5567 403284 0.6500 +5567 440093 0.4070 +5567 440153 0.6500 +5567 440503 0.4550 +5567 440686 0.4070 +5567 441308 0.6500 +5567 441608 0.6500 +5567 441670 0.6500 +5567 441933 0.6500 +5567 442184 0.6500 +5567 442185 0.6500 +5567 442186 0.6500 +5567 442191 0.6510 +5567 442194 0.6500 +5567 442361 0.6500 +5567 445815 0.8430 +5567 653604 0.4410 +5567 728378 0.4090 +5567 102723532 0.6500 +5567 104909134 0.6610 +5567 105369274 0.6500 +5568 5569 0.9790 +5568 5573 0.9980 +5568 5575 0.9950 +5568 5576 0.9960 +5568 5577 0.9990 +5568 5578 0.4410 +5568 5592 0.6460 +5568 5593 0.4170 +5568 5594 0.9270 +5568 5595 0.9570 +5568 5598 0.5690 +5568 5604 0.9290 +5568 5605 0.9180 +5568 5610 0.4150 +5568 5617 0.4460 +5568 5623 0.4010 +5568 5663 0.9350 +5568 5705 0.4640 +5568 5727 0.5380 +5568 5728 0.4820 +5568 5731 0.5220 +5568 5733 0.5450 +5568 5734 0.7870 +5568 5741 0.6250 +5568 5743 0.5840 +5568 5744 0.6440 +5568 5745 0.4880 +5568 5747 0.9100 +5568 5834 0.6420 +5568 5836 0.6400 +5568 5837 0.6420 +5568 5864 0.4810 +5568 5872 0.9440 +5568 5877 0.6420 +5568 5880 0.4050 +5568 5894 0.9230 +5568 5906 0.9390 +5568 5908 0.9430 +5568 5911 0.5390 +5568 5912 0.4250 +5568 5913 0.5050 +5568 5921 0.4020 +5568 5923 0.9280 +5568 5924 0.9200 +5568 5962 0.6040 +5568 5970 0.9560 +5568 5972 0.4680 +5568 5979 0.4480 +5568 6010 0.4450 +5568 6092 0.5490 +5568 6195 0.4240 +5568 6198 0.9310 +5568 6199 0.9300 +5568 6261 0.5400 +5568 6262 0.9930 +5568 6263 0.4450 +5568 6295 0.5140 +5568 6323 0.9190 +5568 6324 0.9070 +5568 6330 0.9060 +5568 6331 0.9370 +5568 6332 0.9020 +5568 6343 0.4840 +5568 6347 0.4190 +5568 6469 0.5260 +5568 6508 0.4480 +5568 6517 0.4740 +5568 6531 0.4010 +5568 6543 0.9140 +5568 6546 0.9300 +5568 6547 0.9110 +5568 6548 0.9380 +5568 6550 0.5300 +5568 6558 0.9310 +5568 6608 0.9650 +5568 6662 0.9290 +5568 6667 0.9350 +5568 6717 0.5730 +5568 6720 0.4480 +5568 6750 0.4740 +5568 6770 0.8630 +5568 6774 0.4880 +5568 6833 0.9350 +5568 6853 0.4760 +5568 6863 0.5520 +5568 6908 0.4510 +5568 7040 0.4630 +5568 7054 0.5640 +5568 7082 0.4020 +5568 7099 0.4340 +5568 7124 0.5870 +5568 7137 0.9520 +5568 7157 0.5120 +5568 7270 0.9000 +5568 7273 0.4640 +5568 7289 0.5820 +5568 7299 0.4120 +5568 7306 0.4680 +5568 7350 0.5900 +5568 7408 0.9510 +5568 7416 0.5220 +5568 7430 0.9980 +5568 7432 0.5890 +5568 7433 0.4430 +5568 7434 0.4400 +5568 7442 0.9630 +5568 7514 0.5430 +5568 7529 0.5990 +5568 7837 0.5560 +5568 7849 0.9130 +5568 7932 0.6800 +5568 8165 0.9990 +5568 8202 0.9190 +5568 8290 0.4090 +5568 8356 0.4050 +5568 8383 0.6960 +5568 8386 0.6570 +5568 8387 0.6530 +5568 8388 0.6530 +5568 8390 0.6770 +5568 8408 0.9120 +5568 8440 0.4160 +5568 8458 0.9000 +5568 8550 0.4150 +5568 8590 0.6510 +5568 8645 0.4200 +5568 8654 0.5630 +5568 8655 0.4200 +5568 8671 0.5150 +5568 8801 0.4610 +5568 8826 0.6140 +5568 8852 0.9230 +5568 8880 0.4310 +5568 8936 0.9100 +5568 8989 0.4860 +5568 9048 0.4380 +5568 9049 0.4080 +5568 9252 0.4320 +5568 9254 0.6770 +5568 9351 0.6270 +5568 9368 0.9690 +5568 9370 0.4520 +5568 9463 0.4790 +5568 9465 0.9310 +5568 9472 0.9530 +5568 9495 0.9980 +5568 9586 0.7150 +5568 9590 0.9890 +5568 9706 0.9050 +5568 9742 0.5110 +5568 9867 0.5380 +5568 9927 0.4640 +5568 9934 0.4220 +5568 10059 0.5380 +5568 10081 0.4290 +5568 10142 0.9860 +5568 10242 0.9000 +5568 10270 0.8030 +5568 10280 0.5560 +5568 10345 0.6320 +5568 10368 0.6580 +5568 10369 0.7280 +5568 10411 0.9860 +5568 10488 0.6950 +5568 10498 0.9150 +5568 10565 0.4420 +5568 10566 0.6230 +5568 10630 0.4570 +5568 10657 0.4070 +5568 10681 0.7250 +5568 10798 0.6520 +5568 10846 0.7890 +5568 10891 0.7050 +5568 10908 0.4820 +5568 10981 0.6780 +5568 11069 0.9830 +5568 11142 0.5510 +5568 11181 0.5450 +5568 11214 0.6990 +5568 11215 0.7750 +5568 11216 0.9340 +5568 11337 0.9330 +5568 11343 0.5870 +5568 11345 0.9370 +5568 22895 0.4100 +5568 22999 0.5340 +5568 23108 0.4220 +5568 23235 0.9100 +5568 23373 0.4980 +5568 23411 0.5400 +5568 23432 0.8750 +5568 23439 0.6660 +5568 23538 0.6650 +5568 23551 0.5320 +5568 23710 0.9370 +5568 25924 0.5910 +5568 26051 0.4520 +5568 26135 0.4250 +5568 26188 0.6590 +5568 26189 0.6680 +5568 26207 0.4540 +5568 26211 0.6610 +5568 26212 0.6500 +5568 26219 0.6530 +5568 26245 0.6500 +5568 26246 0.6500 +5568 26248 0.6500 +5568 26251 0.5250 +5568 26256 0.4820 +5568 26333 0.6570 +5568 26338 0.7800 +5568 26339 0.6500 +5568 26341 0.6570 +5568 26476 0.6550 +5568 26493 0.6530 +5568 26494 0.6550 +5568 26496 0.6500 +5568 26497 0.6500 +5568 26499 0.4530 +5568 26529 0.6520 +5568 26531 0.6550 +5568 26532 0.6580 +5568 26533 0.6500 +5568 26534 0.6500 +5568 26538 0.6530 +5568 26539 0.6640 +5568 26595 0.6500 +5568 26648 0.6520 +5568 26658 0.6590 +5568 26659 0.6580 +5568 26664 0.6550 +5568 26686 0.6570 +5568 26687 0.6500 +5568 26689 0.6500 +5568 26692 0.6500 +5568 26693 0.6500 +5568 26707 0.6520 +5568 26716 0.6590 +5568 26735 0.6500 +5568 26737 0.6500 +5568 26740 0.6530 +5568 26960 0.7720 +5568 26993 0.4730 +5568 27091 0.6560 +5568 27092 0.6500 +5568 27094 0.9050 +5568 27345 0.9110 +5568 50801 0.4910 +5568 50846 0.4420 +5568 50940 0.6250 +5568 51024 0.4160 +5568 51079 0.6660 +5568 51085 0.5760 +5568 51099 0.5750 +5568 51305 0.5650 +5568 51527 0.7710 +5568 51655 0.4360 +5568 51684 0.9650 +5568 51738 0.4060 +5568 51764 0.6720 +5568 51780 0.9070 +5568 51806 0.9920 +5568 53829 0.4430 +5568 54205 0.5680 +5568 54331 0.6500 +5568 54763 0.5710 +5568 54927 0.4320 +5568 55366 0.4220 +5568 55607 0.4230 +5568 55669 0.4440 +5568 55764 0.5310 +5568 55799 0.6580 +5568 55811 0.9310 +5568 55818 0.9200 +5568 55967 0.6500 +5568 55970 0.6530 +5568 56302 0.9260 +5568 56656 0.6500 +5568 56659 0.4360 +5568 56660 0.4120 +5568 56672 0.7830 +5568 56901 0.6590 +5568 57104 0.6070 +5568 57521 0.4320 +5568 57539 0.4990 +5568 57728 0.5140 +5568 59283 0.6550 +5568 59284 0.6680 +5568 59285 0.6500 +5568 59341 0.4850 +5568 59345 0.7100 +5568 60598 0.4080 +5568 64096 0.4120 +5568 64746 0.5910 +5568 64760 0.4240 +5568 64764 0.6660 +5568 64784 0.5510 +5568 65018 0.4210 +5568 79290 0.6500 +5568 79295 0.6500 +5568 79310 0.6500 +5568 79317 0.6500 +5568 79324 0.6510 +5568 79339 0.6590 +5568 79345 0.6510 +5568 79346 0.6500 +5568 79473 0.6500 +5568 79490 0.6500 +5568 79541 0.6550 +5568 79544 0.6500 +5568 79549 0.6500 +5568 79809 0.5430 +5568 80352 0.4200 +5568 81050 0.6500 +5568 81099 0.6500 +5568 81127 0.6500 +5568 81168 0.6500 +5568 81282 0.6500 +5568 81285 0.6630 +5568 81300 0.6500 +5568 81309 0.6590 +5568 81318 0.6500 +5568 81327 0.6500 +5568 81341 0.6500 +5568 81392 0.6500 +5568 81399 0.6600 +5568 81442 0.6500 +5568 81448 0.6500 +5568 81466 0.6500 +5568 81469 0.6500 +5568 81470 0.6580 +5568 81669 0.4230 +5568 81696 0.6590 +5568 81697 0.6530 +5568 81797 0.6510 +5568 83795 0.4860 +5568 83853 0.5340 +5568 84075 0.6000 +5568 84152 0.9640 +5568 84335 0.9200 +5568 84687 0.5900 +5568 84699 0.6880 +5568 84823 0.5010 +5568 84867 0.4540 +5568 84876 0.9200 +5568 85366 0.9100 +5568 89822 0.4860 +5568 90993 0.6660 +5568 91807 0.9150 +5568 91860 0.9920 +5568 93589 0.6580 +5568 94235 0.6500 +5568 116443 0.7220 +5568 116444 0.6960 +5568 119678 0.6500 +5568 119679 0.6500 +5568 119682 0.6500 +5568 119687 0.6500 +5568 119692 0.6510 +5568 119694 0.6510 +5568 119695 0.6500 +5568 119749 0.6500 +5568 119764 0.6500 +5568 119765 0.6500 +5568 119772 0.6500 +5568 119774 0.6500 +5568 120065 0.6500 +5568 120066 0.6520 +5568 120586 0.6500 +5568 120775 0.6500 +5568 120776 0.6500 +5568 120787 0.6500 +5568 120793 0.6500 +5568 121129 0.6500 +5568 121130 0.6500 +5568 121275 0.6500 +5568 121364 0.6580 +5568 122011 0.9080 +5568 122740 0.6500 +5568 122742 0.6560 +5568 122748 0.6500 +5568 124538 0.6580 +5568 125958 0.6500 +5568 125962 0.6500 +5568 125963 0.6500 +5568 126328 0.6500 +5568 126370 0.6580 +5568 126374 0.4080 +5568 126541 0.6570 +5568 127059 0.6500 +5568 127062 0.6500 +5568 127064 0.6500 +5568 127066 0.6510 +5568 127068 0.6500 +5568 127069 0.6500 +5568 127077 0.6500 +5568 127385 0.6500 +5568 127608 0.6500 +5568 127623 0.6500 +5568 128360 0.6500 +5568 128366 0.6500 +5568 128367 0.6570 +5568 128368 0.6580 +5568 128372 0.6500 +5568 130075 0.6500 +5568 134083 0.6500 +5568 135924 0.6500 +5568 135941 0.6500 +5568 135946 0.6510 +5568 135948 0.6520 +5568 137902 0.5540 +5568 138799 0.6500 +5568 138802 0.6500 +5568 138804 0.6520 +5568 138805 0.6500 +5568 138881 0.6500 +5568 138883 0.6500 +5568 140894 0.4350 +5568 143496 0.6500 +5568 143503 0.6660 +5568 144124 0.6500 +5568 144125 0.6500 +5568 148327 0.6830 +5568 150681 0.6500 +5568 151306 0.4190 +5568 157855 0.9290 +5568 158131 0.6500 +5568 158798 0.8870 +5568 162998 0.6500 +5568 163688 0.9910 +5568 196335 0.6500 +5568 196883 0.7920 +5568 200186 0.4090 +5568 202333 0.4700 +5568 219417 0.6500 +5568 219428 0.6560 +5568 219429 0.6500 +5568 219431 0.6500 +5568 219436 0.6500 +5568 219437 0.6500 +5568 219438 0.6500 +5568 219447 0.6570 +5568 219453 0.6500 +5568 219469 0.6500 +5568 219473 0.6500 +5568 219477 0.6500 +5568 219479 0.6560 +5568 219482 0.6500 +5568 219484 0.6500 +5568 219487 0.6500 +5568 219493 0.6580 +5568 219858 0.6500 +5568 219869 0.6500 +5568 219870 0.6560 +5568 219874 0.6500 +5568 219875 0.6500 +5568 219952 0.6500 +5568 219954 0.6500 +5568 219956 0.6500 +5568 219957 0.6580 +5568 219960 0.6500 +5568 219965 0.6500 +5568 219968 0.6500 +5568 219981 0.6590 +5568 219982 0.6500 +5568 219983 0.6500 +5568 219986 0.6580 +5568 254786 0.6500 +5568 254879 0.6500 +5568 254973 0.6500 +5568 255725 0.6500 +5568 256148 0.6620 +5568 282763 0.6710 +5568 282770 0.6500 +5568 282775 0.6560 +5568 283092 0.6500 +5568 283093 0.6500 +5568 283159 0.6530 +5568 283160 0.6520 +5568 283162 0.6500 +5568 283297 0.6500 +5568 283365 0.6580 +5568 283694 0.6500 +5568 284383 0.6560 +5568 284433 0.6500 +5568 284521 0.6500 +5568 284532 0.6510 +5568 285659 0.6500 +5568 286362 0.6500 +5568 338662 0.6500 +5568 338674 0.6500 +5568 338675 0.6500 +5568 338751 0.6500 +5568 338755 0.6550 +5568 340156 0.9150 +5568 340980 0.6500 +5568 341152 0.6670 +5568 341276 0.6500 +5568 341416 0.6500 +5568 341418 0.6500 +5568 341799 0.6500 +5568 343169 0.6500 +5568 343170 0.6510 +5568 343171 0.6600 +5568 343172 0.6500 +5568 343173 0.6500 +5568 343563 0.6500 +5568 346517 0.6500 +5568 346525 0.6500 +5568 347168 0.6500 +5568 347169 0.6500 +5568 347468 0.6500 +5568 374291 0.6590 +5568 374654 0.7870 +5568 375775 0.4300 +5568 387748 0.6500 +5568 388761 0.6510 +5568 390036 0.6500 +5568 390037 0.6500 +5568 390038 0.6500 +5568 390054 0.6500 +5568 390058 0.6640 +5568 390059 0.6500 +5568 390061 0.6500 +5568 390063 0.6550 +5568 390064 0.6530 +5568 390066 0.6660 +5568 390067 0.6500 +5568 390072 0.6500 +5568 390075 0.6500 +5568 390077 0.6500 +5568 390078 0.6500 +5568 390079 0.6500 +5568 390081 0.6500 +5568 390082 0.6500 +5568 390083 0.6500 +5568 390084 0.6500 +5568 390093 0.6500 +5568 390113 0.6570 +5568 390142 0.6570 +5568 390144 0.6580 +5568 390148 0.6500 +5568 390151 0.6500 +5568 390152 0.6500 +5568 390155 0.6500 +5568 390157 0.6500 +5568 390162 0.6570 +5568 390168 0.6500 +5568 390174 0.6500 +5568 390181 0.6500 +5568 390190 0.6500 +5568 390191 0.6500 +5568 390195 0.6500 +5568 390197 0.6500 +5568 390199 0.6500 +5568 390201 0.6500 +5568 390260 0.6500 +5568 390261 0.6500 +5568 390264 0.6500 +5568 390265 0.6500 +5568 390271 0.6660 +5568 390275 0.6500 +5568 390321 0.6500 +5568 390323 0.6500 +5568 390326 0.6500 +5568 390327 0.6500 +5568 390429 0.6500 +5568 390431 0.6500 +5568 390433 0.6500 +5568 390437 0.6570 +5568 390445 0.6500 +5568 390538 0.6500 +5568 390648 0.6580 +5568 390649 0.6500 +5568 390883 0.6500 +5568 390892 0.6560 +5568 391107 0.6500 +5568 391109 0.6500 +5568 391112 0.6500 +5568 391114 0.6500 +5568 391189 0.6500 +5568 391190 0.6500 +5568 391192 0.6500 +5568 391194 0.6660 +5568 391195 0.6500 +5568 391196 0.6500 +5568 391211 0.6500 +5568 392138 0.6500 +5568 392309 0.6500 +5568 392376 0.6500 +5568 392390 0.6500 +5568 392391 0.6500 +5568 392392 0.6500 +5568 393046 0.6500 +5568 401427 0.6500 +5568 401665 0.6710 +5568 401666 0.6510 +5568 401667 0.6510 +5568 401992 0.6500 +5568 401993 0.6500 +5568 401994 0.6780 +5568 402135 0.6500 +5568 402317 0.6500 +5568 403239 0.6500 +5568 403244 0.6500 +5568 403253 0.6500 +5568 403273 0.6500 +5568 403274 0.6500 +5568 403277 0.6500 +5568 403278 0.6500 +5568 403282 0.6500 +5568 403284 0.6500 +5568 440093 0.4050 +5568 440153 0.6500 +5568 440503 0.4600 +5568 440686 0.4050 +5568 441308 0.6500 +5568 441608 0.6500 +5568 441670 0.6560 +5568 441933 0.6500 +5568 442184 0.6500 +5568 442185 0.6500 +5568 442186 0.6500 +5568 442191 0.6540 +5568 442194 0.6560 +5568 442361 0.6500 +5568 445815 0.7090 +5568 653604 0.4050 +5568 102723532 0.6500 +5568 104909134 0.6630 +5568 105369274 0.6500 +5569 5613 0.6210 +5569 7514 0.9640 +5569 11142 0.9820 +5569 57221 0.4070 +5569 80764 0.5400 +5569 152815 0.5400 +5569 154467 0.4250 +5569 219681 0.4160 +5569 285016 0.4180 +5570 7818 0.4260 +5570 9687 0.4410 +5570 11142 0.6370 +5570 140576 0.4220 +5570 147660 0.4910 +5570 388697 0.4100 +5571 5573 0.6510 +5571 5575 0.4800 +5571 5576 0.6560 +5571 5836 0.5600 +5571 6009 0.6610 +5571 6193 0.4370 +5571 6198 0.4930 +5571 6224 0.4450 +5571 6652 0.5140 +5571 6794 0.9740 +5571 6821 0.4140 +5571 6885 0.9180 +5571 7157 0.5690 +5571 7248 0.9270 +5571 7249 0.9360 +5571 7284 0.6250 +5571 7296 0.4050 +5571 8085 0.4070 +5571 8408 0.8840 +5571 8649 0.6410 +5571 8655 0.5310 +5571 8678 0.6970 +5571 8833 0.8410 +5571 9776 0.5590 +5571 9821 0.5530 +5571 9833 0.4430 +5571 10221 0.4250 +5571 10226 0.5130 +5571 10325 0.5660 +5571 10542 0.5070 +5571 10587 0.4140 +5571 10606 0.4620 +5571 10645 0.9750 +5571 10670 0.5580 +5571 10681 0.6800 +5571 10891 0.9270 +5571 10987 0.4160 +5571 11132 0.4840 +5571 22796 0.4290 +5571 22863 0.5340 +5571 22921 0.4480 +5571 23032 0.4380 +5571 23216 0.9320 +5571 23417 0.9100 +5571 23617 0.4820 +5571 27244 0.6960 +5571 28951 0.4610 +5571 28956 0.5900 +5571 29844 0.4180 +5571 29904 0.9120 +5571 30833 0.4610 +5571 30849 0.5660 +5571 51020 0.6750 +5571 51422 0.9790 +5571 51719 0.7890 +5571 51764 0.6500 +5571 53632 0.9570 +5571 54331 0.6500 +5571 55004 0.6720 +5571 55437 0.7430 +5571 55626 0.5140 +5571 55970 0.6520 +5571 57521 0.9390 +5571 57600 0.7460 +5571 57620 0.6370 +5571 57761 0.4260 +5571 58528 0.5630 +5571 59345 0.6680 +5571 60412 0.4270 +5571 60673 0.5490 +5571 64121 0.5460 +5571 64223 0.5530 +5571 64421 0.8210 +5571 79833 0.5290 +5571 81617 0.7000 +5571 81629 0.4880 +5571 81631 0.4920 +5571 81932 0.4270 +5571 83667 0.7080 +5571 83942 0.4250 +5571 83983 0.4250 +5571 84064 0.4120 +5571 84254 0.5810 +5571 84335 0.6940 +5571 92335 0.7760 +5571 94235 0.6500 +5571 96459 0.8830 +5571 133482 0.4410 +5571 139341 0.4280 +5571 140735 0.5740 +5571 140838 0.4160 +5571 143686 0.6830 +5571 153129 0.5060 +5571 200186 0.9230 +5571 201163 0.8130 +5571 283629 0.4250 +5571 317671 0.5510 +5571 389541 0.5340 +5571 100130890 0.4380 +5571 100131187 0.4710 +5573 5575 0.9800 +5573 5576 0.9220 +5573 5577 0.9540 +5573 5578 0.4670 +5573 5613 0.9400 +5573 5617 0.5660 +5573 5727 0.5590 +5573 5832 0.4310 +5573 5903 0.6070 +5573 5914 0.6100 +5573 5979 0.7580 +5573 5982 0.5350 +5573 6146 0.4530 +5573 6238 0.5230 +5573 6389 0.4340 +5573 6390 0.5000 +5573 6392 0.4540 +5573 6464 0.5440 +5573 6774 0.5970 +5573 6801 0.5020 +5573 6898 0.7850 +5573 7014 0.4200 +5573 7157 0.4490 +5573 7170 0.7460 +5573 7171 0.5710 +5573 7175 0.5160 +5573 7277 0.4520 +5573 7289 0.6620 +5573 7414 0.5180 +5573 7533 0.4260 +5573 7534 0.4690 +5573 7704 0.5980 +5573 7784 0.4630 +5573 8030 0.5860 +5573 8031 0.6660 +5573 8165 0.8540 +5573 8496 0.5760 +5573 8622 0.8430 +5573 8643 0.7520 +5573 8805 0.4370 +5573 8826 0.5270 +5573 8852 0.7830 +5573 8878 0.5790 +5573 8913 0.5140 +5573 9049 0.5420 +5573 9101 0.4150 +5573 9149 0.4660 +5573 9189 0.4720 +5573 9217 0.5130 +5573 9218 0.4420 +5573 9401 0.4630 +5573 9451 0.4360 +5573 9465 0.6150 +5573 9495 0.5930 +5573 9648 0.5560 +5573 9699 0.4480 +5573 9742 0.5030 +5573 9867 0.5230 +5573 9950 0.4080 +5573 10049 0.4040 +5573 10142 0.4630 +5573 10342 0.6110 +5573 10382 0.4060 +5573 10411 0.5710 +5573 10564 0.5610 +5573 10565 0.5630 +5573 10566 0.6810 +5573 10817 0.4990 +5573 10818 0.5040 +5573 11069 0.5520 +5573 11215 0.8170 +5573 11216 0.9380 +5573 11340 0.4930 +5573 11343 0.5460 +5573 22852 0.5820 +5573 22872 0.6150 +5573 22999 0.5040 +5573 23035 0.4380 +5573 23239 0.4380 +5573 23432 0.9140 +5573 26251 0.5060 +5573 27161 0.5180 +5573 27436 0.6080 +5573 29108 0.6390 +5573 30968 0.6370 +5573 50940 0.9210 +5573 51422 0.7830 +5573 51557 0.4210 +5573 51592 0.4520 +5573 51684 0.6480 +5573 53335 0.4660 +5573 53632 0.6330 +5573 54813 0.4650 +5573 55764 0.5150 +5573 57448 0.4600 +5573 57539 0.4990 +5573 57728 0.5010 +5573 57829 0.4400 +5573 64859 0.5100 +5573 79073 0.4660 +5573 79798 0.6630 +5573 79809 0.5180 +5573 80304 0.6210 +5573 80764 0.4350 +5573 81608 0.5150 +5573 83550 0.6100 +5573 84133 0.4110 +5573 84281 0.7410 +5573 84617 0.4240 +5573 152815 0.4360 +5573 158798 0.5450 +5573 192669 0.5040 +5573 196883 0.6410 +5573 203068 0.4520 +5573 445815 0.5100 +5575 5576 0.9510 +5575 5577 0.9680 +5575 5613 0.8850 +5575 5832 0.4310 +5575 6195 0.4400 +5575 6198 0.7240 +5575 6464 0.4190 +5575 7289 0.5170 +5575 7486 0.4830 +5575 8165 0.7220 +5575 8424 0.4460 +5575 8774 0.4420 +5575 8826 0.5030 +5575 8852 0.5820 +5575 9495 0.5310 +5575 9696 0.4220 +5575 9742 0.5140 +5575 10000 0.5310 +5575 10110 0.5690 +5575 10411 0.5670 +5575 11069 0.5440 +5575 11128 0.4010 +5575 11215 0.5400 +5575 11216 0.6100 +5575 11340 0.4930 +5575 23035 0.4400 +5575 23239 0.4380 +5575 23432 0.7970 +5575 23678 0.4510 +5575 25885 0.4030 +5575 26251 0.5060 +5575 51382 0.4100 +5575 51557 0.4210 +5575 51684 0.5150 +5575 55764 0.5150 +5575 57539 0.4990 +5575 57728 0.4990 +5575 79073 0.4680 +5575 79809 0.5080 +5575 80764 0.4460 +5575 84062 0.4910 +5575 89927 0.4600 +5575 152815 0.4350 +5575 157922 0.6430 +5575 158798 0.5690 +5575 196883 0.6080 +5575 202333 0.7560 +5576 5577 0.9890 +5576 5613 0.8600 +5576 5832 0.4360 +5576 6092 0.4990 +5576 7284 0.4660 +5576 7289 0.5170 +5576 8165 0.9700 +5576 8424 0.4130 +5576 8481 0.4280 +5576 8826 0.5100 +5576 8852 0.9640 +5576 9465 0.9630 +5576 9495 0.9050 +5576 9590 0.7220 +5576 9659 0.5720 +5576 9742 0.5030 +5576 9867 0.5250 +5576 10142 0.5980 +5576 10270 0.5360 +5576 10399 0.4210 +5576 10411 0.5330 +5576 10566 0.6470 +5576 10672 0.4160 +5576 10981 0.7130 +5576 11031 0.4210 +5576 11055 0.4240 +5576 11057 0.6000 +5576 11069 0.5430 +5576 11128 0.4180 +5576 11214 0.7040 +5576 11215 0.7380 +5576 11216 0.9610 +5576 11340 0.4980 +5576 22919 0.7610 +5576 23035 0.4420 +5576 23239 0.4420 +5576 23432 0.5580 +5576 25885 0.4020 +5576 26251 0.5060 +5576 26256 0.7310 +5576 26960 0.9000 +5576 51422 0.7790 +5576 51527 0.4610 +5576 51557 0.4210 +5576 51684 0.5000 +5576 53340 0.7370 +5576 53632 0.6740 +5576 55703 0.4020 +5576 55764 0.5150 +5576 57539 0.4990 +5576 57728 0.4990 +5576 79073 0.4670 +5576 79809 0.5080 +5576 80764 0.4350 +5576 83667 0.4430 +5576 84062 0.4290 +5576 84432 0.4220 +5576 117144 0.4190 +5576 152815 0.4400 +5576 158798 0.9560 +5576 196883 0.6700 +5576 202333 0.8350 +5576 259217 0.4780 +5576 445815 0.6100 +5577 5613 0.9770 +5577 5832 0.4380 +5577 6195 0.4660 +5577 6198 0.5310 +5577 6262 0.4100 +5577 6883 0.5300 +5577 7289 0.5170 +5577 8165 0.9810 +5577 8766 0.5720 +5577 8826 0.4990 +5577 8852 0.6440 +5577 9368 0.4100 +5577 9465 0.9260 +5577 9472 0.4690 +5577 9495 0.9960 +5577 9659 0.6540 +5577 9662 0.4530 +5577 9742 0.5110 +5577 10133 0.4990 +5577 10142 0.9020 +5577 10270 0.5440 +5577 10411 0.6100 +5577 10466 0.5220 +5577 10564 0.4580 +5577 11062 0.5210 +5577 11064 0.4440 +5577 11069 0.7290 +5577 11190 0.4400 +5577 11214 0.6540 +5577 11215 0.8090 +5577 11216 0.8910 +5577 11340 0.4930 +5577 22919 0.4950 +5577 22981 0.4330 +5577 23035 0.4380 +5577 23239 0.4380 +5577 23354 0.4990 +5577 23432 0.5690 +5577 26052 0.4160 +5577 26251 0.5060 +5577 26292 0.4450 +5577 30845 0.4210 +5577 50650 0.4060 +5577 51088 0.5710 +5577 51527 0.4920 +5577 51557 0.4210 +5577 51684 0.4990 +5577 53340 0.5830 +5577 54763 0.6150 +5577 54801 0.5050 +5577 54930 0.4990 +5577 55142 0.4990 +5577 55559 0.4990 +5577 55755 0.7670 +5577 55764 0.5150 +5577 57539 0.4990 +5577 57728 0.4990 +5577 79073 0.5060 +5577 79441 0.5060 +5577 79809 0.5080 +5577 79866 0.4990 +5577 80764 0.4350 +5577 84281 0.5310 +5577 89876 0.8250 +5577 93323 0.4990 +5577 115106 0.5040 +5577 117177 0.4990 +5577 152815 0.4350 +5577 158798 0.9090 +5577 196883 0.6910 +5577 445815 0.6980 +5577 728642 0.5140 +5578 5579 0.9630 +5578 5580 0.9670 +5578 5581 0.7650 +5578 5582 0.9840 +5578 5583 0.6170 +5578 5587 0.9170 +5578 5588 0.4550 +5578 5590 0.6390 +5578 5594 0.9310 +5578 5595 0.9560 +5578 5598 0.4950 +5578 5609 0.9060 +5578 5623 0.5110 +5578 5649 0.5160 +5578 5728 0.4860 +5578 5742 0.4680 +5578 5743 0.6260 +5578 5747 0.9180 +5578 5788 0.5580 +5578 5829 0.6210 +5578 5879 0.4480 +5578 5894 0.9170 +5578 5914 0.4990 +5578 5915 0.5240 +5578 5921 0.7620 +5578 5957 0.6660 +5578 5970 0.4880 +5578 5979 0.5510 +5578 6005 0.4060 +5578 6009 0.4130 +5578 6010 0.7680 +5578 6017 0.4450 +5578 6092 0.5520 +5578 6195 0.4840 +5578 6237 0.9140 +5578 6382 0.5280 +5578 6383 0.4840 +5578 6385 0.9970 +5578 6416 0.9090 +5578 6464 0.7230 +5578 6506 0.4850 +5578 6531 0.9130 +5578 6548 0.9160 +5578 6608 0.9160 +5578 6624 0.4670 +5578 6655 0.5180 +5578 6714 0.8670 +5578 6772 0.5530 +5578 6774 0.6440 +5578 6776 0.4750 +5578 6810 0.5040 +5578 6814 0.5020 +5578 6915 0.5490 +5578 7015 0.4630 +5578 7040 0.4220 +5578 7041 0.4470 +5578 7046 0.5060 +5578 7074 0.4520 +5578 7082 0.6170 +5578 7094 0.5190 +5578 7099 0.4450 +5578 7112 0.5090 +5578 7124 0.6760 +5578 7153 0.4510 +5578 7157 0.7000 +5578 7220 0.4870 +5578 7222 0.9350 +5578 7225 0.4400 +5578 7249 0.4510 +5578 7270 0.9000 +5578 7295 0.4680 +5578 7412 0.4060 +5578 7414 0.6540 +5578 7415 0.4300 +5578 7430 0.9530 +5578 7432 0.4460 +5578 7448 0.4430 +5578 7474 0.7500 +5578 7525 0.4220 +5578 7534 0.4100 +5578 7837 0.4750 +5578 7849 0.9110 +5578 7852 0.5970 +5578 7884 0.4120 +5578 8048 0.5190 +5578 8290 0.4690 +5578 8322 0.4630 +5578 8398 0.9030 +5578 8436 0.5870 +5578 8458 0.9000 +5578 8525 0.5320 +5578 8526 0.4840 +5578 8605 0.6770 +5578 8650 0.5600 +5578 8681 0.6500 +5578 8777 0.4190 +5578 8787 0.4070 +5578 8877 0.9320 +5578 8913 0.4290 +5578 9048 0.5150 +5578 9162 0.5500 +5578 9351 0.7090 +5578 9368 0.9470 +5578 9454 0.4220 +5578 9455 0.4090 +5578 9456 0.4650 +5578 9463 0.9960 +5578 9495 0.8010 +5578 9575 0.4510 +5578 9586 0.7050 +5578 9590 0.7220 +5578 9630 0.5710 +5578 9663 0.5380 +5578 9908 0.4390 +5578 10013 0.6020 +5578 10018 0.5750 +5578 10207 0.4940 +5578 10399 0.9700 +5578 10488 0.6900 +5578 10539 0.4380 +5578 10590 0.4050 +5578 10616 0.6380 +5578 10681 0.7510 +5578 10755 0.4470 +5578 10928 0.5150 +5578 11214 0.4620 +5578 11266 0.4700 +5578 22800 0.9080 +5578 22808 0.9090 +5578 23175 0.6050 +5578 23236 0.9470 +5578 23426 0.7220 +5578 23586 0.4660 +5578 23592 0.5000 +5578 23683 0.9130 +5578 25865 0.9110 +5578 27091 0.4400 +5578 27092 0.4610 +5578 27111 0.5500 +5578 29887 0.4830 +5578 29904 0.9280 +5578 51196 0.9260 +5578 51764 0.7620 +5578 51806 0.7190 +5578 54331 0.7040 +5578 54583 0.9110 +5578 54971 0.4090 +5578 55615 0.5160 +5578 55970 0.6940 +5578 56302 0.9070 +5578 56848 0.9210 +5578 57506 0.4240 +5578 57521 0.5860 +5578 57822 0.4240 +5578 59341 0.9230 +5578 59345 0.7120 +5578 64096 0.4990 +5578 64127 0.4080 +5578 64221 0.5270 +5578 64223 0.5970 +5578 64764 0.6870 +5578 64798 0.5130 +5578 64900 0.5340 +5578 79026 0.5440 +5578 79109 0.7910 +5578 79834 0.4120 +5578 80852 0.4840 +5578 81619 0.4140 +5578 83660 0.5090 +5578 84335 0.4460 +5578 84699 0.6630 +5578 84708 0.4970 +5578 84812 0.9170 +5578 89869 0.9160 +5578 90933 0.4040 +5578 90993 0.6590 +5578 91860 0.7190 +5578 94233 0.4210 +5578 94235 0.6740 +5578 94274 0.5000 +5578 112398 0.9290 +5578 112399 0.9060 +5578 112464 0.4370 +5578 113026 0.9250 +5578 123745 0.6850 +5578 137902 0.4720 +5578 148327 0.6640 +5578 163688 0.7190 +5578 196883 0.6870 +5578 200576 0.5260 +5578 221496 0.5060 +5578 222484 0.4940 +5578 253260 0.8400 +5578 255189 0.6850 +5578 283748 0.6700 +5578 338917 0.5990 +5578 374897 0.5590 +5578 388531 0.5000 +5578 653361 0.9690 +5578 100137049 0.6890 +5579 5580 0.9660 +5579 5581 0.4630 +5579 5582 0.9460 +5579 5583 0.4450 +5579 5585 0.4240 +5579 5587 0.9100 +5579 5588 0.9150 +5579 5590 0.5700 +5579 5594 0.9280 +5579 5595 0.9490 +5579 5747 0.9080 +5579 5880 0.4300 +5579 5894 0.9080 +5579 5921 0.5830 +5579 6195 0.4170 +5579 6237 0.9190 +5579 6338 0.4870 +5579 6340 0.4350 +5579 6464 0.7430 +5579 6531 0.9170 +5579 6548 0.9110 +5579 6708 0.4200 +5579 6709 0.4110 +5579 6711 0.4400 +5579 6799 0.4290 +5579 6810 0.4490 +5579 6814 0.4460 +5579 6850 0.5950 +5579 7040 0.4960 +5579 7112 0.5080 +5579 7124 0.4230 +5579 7132 0.4070 +5579 7153 0.4120 +5579 7157 0.5420 +5579 7222 0.9290 +5579 7270 0.9000 +5579 7299 0.9220 +5579 7341 0.4610 +5579 7409 0.6460 +5579 7412 0.4020 +5579 7430 0.9030 +5579 7474 0.4860 +5579 7529 0.4460 +5579 7534 0.4550 +5579 7849 0.9180 +5579 8322 0.4460 +5579 8356 0.4250 +5579 8398 0.9000 +5579 8458 0.9000 +5579 8605 0.6740 +5579 8681 0.6500 +5579 8877 0.9090 +5579 8915 0.8620 +5579 9368 0.9080 +5579 9463 0.5140 +5579 9586 0.7370 +5579 9663 0.5340 +5579 10399 0.9250 +5579 10488 0.6760 +5579 10611 0.5650 +5579 10616 0.8620 +5579 10636 0.4220 +5579 10659 0.4340 +5579 10672 0.4020 +5579 10681 0.7180 +5579 10772 0.4010 +5579 10892 0.7550 +5579 11151 0.4470 +5579 22800 0.9230 +5579 22808 0.9070 +5579 23028 0.6260 +5579 23035 0.5770 +5579 23175 0.5640 +5579 23236 0.9350 +5579 23239 0.4020 +5579 23411 0.4920 +5579 23426 0.4130 +5579 23586 0.4360 +5579 23592 0.5510 +5579 23683 0.9090 +5579 25780 0.5710 +5579 25865 0.9070 +5579 29760 0.7340 +5579 29775 0.9210 +5579 29904 0.9140 +5579 51196 0.9090 +5579 51317 0.4310 +5579 51764 0.6620 +5579 51806 0.5270 +5579 54101 0.5450 +5579 54331 0.7190 +5579 54583 0.9050 +5579 55970 0.7030 +5579 56302 0.9020 +5579 56848 0.9020 +5579 57181 0.4400 +5579 57822 0.4910 +5579 59341 0.9050 +5579 59345 0.7050 +5579 64764 0.6680 +5579 64900 0.5340 +5579 79092 0.9160 +5579 80852 0.4520 +5579 84433 0.9720 +5579 84699 0.6630 +5579 84812 0.9210 +5579 84908 0.4740 +5579 89869 0.9080 +5579 90993 0.6770 +5579 91860 0.5300 +5579 94235 0.6810 +5579 112398 0.9020 +5579 112399 0.9190 +5579 113026 0.9090 +5579 123745 0.6730 +5579 148327 0.6650 +5579 163688 0.5300 +5579 196883 0.6980 +5579 221496 0.5050 +5579 255189 0.6660 +5579 283748 0.6660 +5579 653361 0.9750 +5579 100137049 0.6850 +5580 5581 0.9100 +5580 5582 0.4990 +5580 5583 0.4690 +5580 5584 0.4870 +5580 5588 0.9350 +5580 5590 0.7800 +5580 5591 0.4850 +5580 5594 0.9290 +5580 5595 0.9350 +5580 5599 0.9180 +5580 5601 0.9120 +5580 5604 0.9250 +5580 5605 0.9240 +5580 5777 0.7600 +5580 5880 0.9460 +5580 5894 0.9120 +5580 5921 0.5770 +5580 6464 0.9240 +5580 6469 0.4050 +5580 6558 0.4280 +5580 6622 0.4490 +5580 6667 0.6780 +5580 6688 0.4490 +5580 6714 0.9830 +5580 6772 0.9100 +5580 6774 0.8460 +5580 6850 0.7410 +5580 7037 0.4210 +5580 7099 0.5590 +5580 7124 0.4390 +5580 7132 0.4720 +5580 7157 0.7670 +5580 7161 0.5320 +5580 7186 0.9100 +5580 7189 0.4130 +5580 7410 0.5210 +5580 7415 0.5590 +5580 7428 0.7570 +5580 7525 0.5280 +5580 7529 0.4770 +5580 7532 0.4050 +5580 7534 0.5760 +5580 8038 0.4340 +5580 8087 0.4090 +5580 8340 0.4440 +5580 8341 0.4450 +5580 8342 0.4390 +5580 8345 0.4540 +5580 8347 0.4460 +5580 8348 0.4450 +5580 8398 0.9070 +5580 8471 0.9090 +5580 8503 0.9150 +5580 8525 0.5390 +5580 8660 0.9190 +5580 8877 0.6410 +5580 8878 0.6080 +5580 8970 0.4510 +5580 9235 0.8960 +5580 9314 0.4320 +5580 9630 0.4530 +5580 9846 0.7050 +5580 9961 0.4160 +5580 10000 0.4550 +5580 10014 0.4360 +5580 10399 0.6540 +5580 10533 0.5970 +5580 10616 0.5770 +5580 10672 0.4240 +5580 10673 0.5260 +5580 10681 0.5900 +5580 10735 0.4470 +5580 10892 0.4900 +5580 10972 0.4460 +5580 23236 0.9160 +5580 23607 0.4610 +5580 26471 0.4570 +5580 28988 0.5080 +5580 51764 0.5330 +5580 51806 0.4450 +5580 54101 0.9490 +5580 54145 0.4510 +5580 54205 0.6610 +5580 54331 0.5600 +5580 54434 0.4840 +5580 54509 0.4080 +5580 55970 0.5000 +5580 57048 0.5270 +5580 57546 0.4070 +5580 57822 0.5230 +5580 58484 0.9250 +5580 59341 0.9050 +5580 59345 0.5860 +5580 64170 0.9550 +5580 64866 0.8100 +5580 65108 0.9040 +5580 81490 0.4290 +5580 84433 0.4940 +5580 85236 0.5300 +5580 91860 0.4270 +5580 94235 0.5420 +5580 112464 0.6780 +5580 114609 0.5370 +5580 128312 0.4510 +5580 158983 0.4390 +5580 163688 0.4250 +5580 196883 0.9080 +5580 255626 0.4440 +5580 286436 0.4440 +5580 440689 0.4510 +5580 653361 0.9660 +5580 114483833 0.4510 +5581 5582 0.4670 +5581 5583 0.5270 +5581 5587 0.6200 +5581 5588 0.9070 +5581 5594 0.4610 +5581 5599 0.9170 +5581 5601 0.9100 +5581 5894 0.9320 +5581 5962 0.9040 +5581 6197 0.4420 +5581 6199 0.6300 +5581 6237 0.9190 +5581 6464 0.4910 +5581 6548 0.9030 +5581 6772 0.5690 +5581 6774 0.6020 +5581 6775 0.4380 +5581 7186 0.9020 +5581 7416 0.9430 +5581 7417 0.9120 +5581 7419 0.9050 +5581 7430 0.9030 +5581 7442 0.9500 +5581 7529 0.4120 +5581 7532 0.5540 +5581 7534 0.9690 +5581 8398 0.9020 +5581 8471 0.9070 +5581 8660 0.9560 +5581 8877 0.9050 +5581 8927 0.4620 +5581 8989 0.9500 +5581 9235 0.6420 +5581 9276 0.7410 +5581 9718 0.5280 +5581 10105 0.9160 +5581 10399 0.8080 +5581 10611 0.8960 +5581 10672 0.4090 +5581 10681 0.7310 +5581 22800 0.9170 +5581 22808 0.9170 +5581 23125 0.4460 +5581 23261 0.4220 +5581 23315 0.4500 +5581 23410 0.5400 +5581 23411 0.4360 +5581 25780 0.5590 +5581 51764 0.6610 +5581 54331 0.7120 +5581 55970 0.7880 +5581 56848 0.9010 +5581 57608 0.4080 +5581 57822 0.5190 +5581 59341 0.9110 +5581 59345 0.7120 +5581 63976 0.4330 +5581 65108 0.9000 +5581 79054 0.4200 +5581 79071 0.5360 +5581 83447 0.9030 +5581 85366 0.9040 +5581 91807 0.9030 +5581 94235 0.6610 +5581 340156 0.9060 +5581 353376 0.6100 +5581 100302736 0.4510 +5581 110599583 0.4910 +5582 5583 0.4330 +5582 5587 0.9060 +5582 5588 0.4420 +5582 5594 0.9110 +5582 5595 0.9130 +5582 5747 0.9040 +5582 5816 0.5340 +5582 5894 0.9030 +5582 6198 0.4590 +5582 6199 0.4450 +5582 6237 0.9100 +5582 6261 0.4840 +5582 6262 0.4080 +5582 6310 0.6480 +5582 6311 0.6680 +5582 6314 0.7800 +5582 6531 0.9050 +5582 6548 0.9010 +5582 6712 0.6850 +5582 6714 0.4480 +5582 6750 0.4030 +5582 6814 0.4410 +5582 6853 0.6180 +5582 6854 0.6060 +5582 6863 0.4710 +5582 6869 0.5150 +5582 7222 0.9710 +5582 7270 0.9000 +5582 7430 0.9030 +5582 7442 0.4200 +5582 7474 0.4130 +5582 7529 0.4150 +5582 7531 0.5050 +5582 7532 0.4420 +5582 7849 0.9040 +5582 8224 0.5510 +5582 8322 0.4400 +5582 8398 0.9000 +5582 8458 0.9000 +5582 8605 0.6660 +5582 8681 0.6500 +5582 8877 0.9010 +5582 9152 0.5090 +5582 9368 0.9080 +5582 9463 0.7710 +5582 9586 0.6800 +5582 10399 0.4600 +5582 10488 0.6790 +5582 10681 0.6920 +5582 10939 0.5440 +5582 10971 0.5230 +5582 22800 0.9060 +5582 22808 0.9080 +5582 23092 0.4410 +5582 23236 0.9300 +5582 23426 0.4410 +5582 23683 0.9010 +5582 25814 0.5970 +5582 25865 0.9020 +5582 25894 0.4220 +5582 26121 0.5840 +5582 27091 0.5360 +5582 29904 0.9130 +5582 51196 0.9090 +5582 51764 0.7460 +5582 54331 0.7160 +5582 54583 0.9010 +5582 54840 0.6110 +5582 55970 0.6830 +5582 56302 0.9020 +5582 56848 0.9000 +5582 56896 0.4070 +5582 57030 0.5320 +5582 57084 0.5200 +5582 57822 0.5470 +5582 59283 0.7950 +5582 59284 0.8430 +5582 59341 0.9110 +5582 59345 0.7100 +5582 64764 0.6590 +5582 79883 0.4050 +5582 80852 0.4640 +5582 84107 0.5120 +5582 84699 0.6770 +5582 84812 0.9110 +5582 89869 0.9080 +5582 90993 0.6530 +5582 92737 0.4300 +5582 94235 0.6690 +5582 112398 0.9010 +5582 112399 0.9010 +5582 113026 0.9100 +5582 116512 0.4070 +5582 123745 0.6760 +5582 140679 0.4910 +5582 146057 0.5700 +5582 146713 0.5020 +5582 148327 0.6710 +5582 196883 0.6890 +5582 246213 0.6810 +5582 255189 0.6690 +5582 283748 0.6800 +5582 339453 0.5150 +5582 653361 0.9030 +5582 100137049 0.7150 +5583 5588 0.4950 +5583 5894 0.6780 +5583 5996 0.6090 +5583 6845 0.4420 +5583 7037 0.4340 +5583 9355 0.4990 +5583 10616 0.7540 +5583 10681 0.5640 +5583 11214 0.4170 +5583 50650 0.4250 +5583 51657 0.5440 +5583 51764 0.5010 +5583 54331 0.5850 +5583 55970 0.5030 +5583 57563 0.4380 +5583 59341 0.9020 +5583 59345 0.5610 +5583 94235 0.5310 +5584 5590 0.9890 +5584 5607 0.4210 +5584 5728 0.9330 +5584 5862 0.4060 +5584 5879 0.5110 +5584 5880 0.9270 +5584 5881 0.9270 +5584 5906 0.9170 +5584 5908 0.9170 +5584 5976 0.5250 +5584 6498 0.5900 +5584 6657 0.5420 +5584 6794 0.9140 +5584 6921 0.4050 +5584 7082 0.4320 +5584 7157 0.6610 +5584 7189 0.5560 +5584 7277 0.5000 +5584 7531 0.4560 +5584 7534 0.5150 +5584 8048 0.5130 +5584 8087 0.5310 +5584 8503 0.9060 +5584 8525 0.4600 +5584 8601 0.4050 +5584 8650 0.5660 +5584 8878 0.9590 +5584 9126 0.4260 +5584 9223 0.9120 +5584 9253 0.5720 +5584 9328 0.4110 +5584 9855 0.4690 +5584 11127 0.5010 +5584 11228 0.6530 +5584 23049 0.6910 +5584 23286 0.6560 +5584 26019 0.5620 +5584 27005 0.6220 +5584 29072 0.4160 +5584 29899 0.4120 +5584 50848 0.5490 +5584 50855 0.9990 +5584 51421 0.9060 +5584 54566 0.9140 +5584 55181 0.6720 +5584 55193 0.4090 +5584 55733 0.4150 +5584 55844 0.9020 +5584 56006 0.6710 +5584 56288 0.9990 +5584 57381 0.8230 +5584 57787 0.4460 +5584 64398 0.4470 +5584 64866 0.4030 +5584 65110 0.5620 +5584 79960 0.4190 +5584 84552 0.9900 +5584 84612 0.9970 +5584 117583 0.7820 +5584 121227 0.5280 +5584 154796 0.9260 +5584 154810 0.9070 +5584 200576 0.4220 +5585 5586 0.9230 +5585 5600 0.4450 +5585 5606 0.9650 +5585 5879 0.6940 +5585 5880 0.4720 +5585 5912 0.5380 +5585 6093 0.5540 +5585 6242 0.8720 +5585 6300 0.4620 +5585 6793 0.4950 +5585 7037 0.4340 +5585 7185 0.4470 +5585 7431 0.4180 +5585 7529 0.5230 +5585 7531 0.8480 +5585 7532 0.5430 +5585 7533 0.5320 +5585 7534 0.5220 +5585 7763 0.5480 +5585 8331 0.5050 +5585 8334 0.5070 +5585 8337 0.5390 +5585 8338 0.5390 +5585 8340 0.5080 +5585 8341 0.5080 +5585 8342 0.5080 +5585 8345 0.5080 +5585 8347 0.5080 +5585 8348 0.5080 +5585 8349 0.5410 +5585 8356 0.6150 +5585 8361 0.5100 +5585 8773 0.4030 +5585 8826 0.4930 +5585 8970 0.5080 +5585 9341 0.4270 +5585 9414 0.4050 +5585 9475 0.5600 +5585 9739 0.4760 +5585 9748 0.4680 +5585 10014 0.4460 +5585 10142 0.8040 +5585 10211 0.4190 +5585 10362 0.4310 +5585 10499 0.8870 +5585 10971 0.5350 +5585 11113 0.4750 +5585 11214 0.4900 +5585 23002 0.4930 +5585 23028 0.8000 +5585 23075 0.4080 +5585 23081 0.7360 +5585 25894 0.4420 +5585 26030 0.4140 +5585 27289 0.4080 +5585 29941 0.9110 +5585 51317 0.4780 +5585 51776 0.9580 +5585 54145 0.5080 +5585 54443 0.4320 +5585 54469 0.6150 +5585 54509 0.4270 +5585 55766 0.5050 +5585 55789 0.4020 +5585 55914 0.4030 +5585 65124 0.4160 +5585 81624 0.4720 +5585 81839 0.4140 +5585 84541 0.6820 +5585 85236 0.5260 +5585 91010 0.4050 +5585 94239 0.5050 +5585 94274 0.7970 +5585 114822 0.8770 +5585 115557 0.4800 +5585 128239 0.4210 +5585 128312 0.5080 +5585 255626 0.5080 +5585 284119 0.4400 +5585 440712 0.4200 +5585 474382 0.5050 +5585 653604 0.6110 +5586 5684 0.4160 +5586 5783 0.5360 +5586 5879 0.8200 +5586 5880 0.4660 +5586 6093 0.6130 +5586 6195 0.7610 +5586 6242 0.4590 +5586 6279 0.4550 +5586 6793 0.5060 +5586 7037 0.4180 +5586 7531 0.8400 +5586 8237 0.4340 +5586 8440 0.7750 +5586 8773 0.4250 +5586 8826 0.5480 +5586 9341 0.4470 +5586 9414 0.4060 +5586 9475 0.6880 +5586 9748 0.5200 +5586 10211 0.4070 +5586 10521 0.4640 +5586 10746 0.5100 +5586 11113 0.4210 +5586 11157 0.5030 +5586 22938 0.6390 +5586 22984 0.6060 +5586 23002 0.5030 +5586 23075 0.4080 +5586 23236 0.4220 +5586 25804 0.4800 +5586 25894 0.4400 +5586 26030 0.4190 +5586 27258 0.4780 +5586 29941 0.9060 +5586 51690 0.4830 +5586 54443 0.4180 +5586 54509 0.4210 +5586 55789 0.4020 +5586 55870 0.5510 +5586 55914 0.6390 +5586 57819 0.4820 +5586 65124 0.4170 +5586 79109 0.4090 +5586 81624 0.4710 +5586 81839 0.4060 +5586 92002 0.4600 +5586 94274 0.6150 +5586 128239 0.4190 +5586 132720 0.4730 +5586 143162 0.5390 +5586 171177 0.4110 +5586 284119 0.4310 +5586 401494 0.4180 +5587 5589 0.6030 +5587 5829 0.8430 +5587 5906 0.9100 +5587 5908 0.9060 +5587 6195 0.4730 +5587 6196 0.5010 +5587 6197 0.4970 +5587 6262 0.5870 +5587 6615 0.4980 +5587 6714 0.4990 +5587 7094 0.7100 +5587 7157 0.5350 +5587 7249 0.5250 +5587 7534 0.5340 +5587 7922 0.4970 +5587 7923 0.5460 +5587 8100 0.5830 +5587 8165 0.5050 +5587 8525 0.4050 +5587 8557 0.5850 +5587 8569 0.4080 +5587 8682 0.4120 +5587 8801 0.4460 +5587 8945 0.6150 +5587 9033 0.4160 +5587 9262 0.4510 +5587 9371 0.4560 +5587 9472 0.4660 +5587 9586 0.6580 +5587 9734 0.4580 +5587 9759 0.4580 +5587 9856 0.5210 +5587 10014 0.8990 +5587 10087 0.7450 +5587 10399 0.5160 +5587 10488 0.6500 +5587 10519 0.4430 +5587 10971 0.5940 +5587 10987 0.4340 +5587 11127 0.5190 +5587 11214 0.8580 +5587 23125 0.4950 +5587 23193 0.4770 +5587 23261 0.4240 +5587 23413 0.5640 +5587 23683 0.9780 +5587 23788 0.4840 +5587 25865 0.9790 +5587 26287 0.4940 +5587 26499 0.6610 +5587 27031 0.6140 +5587 27236 0.5030 +5587 50813 0.5380 +5587 51564 0.6600 +5587 51806 0.5270 +5587 53353 0.4770 +5587 54434 0.7240 +5587 55243 0.4420 +5587 57498 0.6850 +5587 64764 0.6500 +5587 79068 0.5480 +5587 79932 0.6900 +5587 80204 0.5880 +5587 83660 0.7190 +5587 84063 0.4240 +5587 84699 0.6500 +5587 90993 0.6500 +5587 91860 0.5180 +5587 148327 0.6500 +5587 163688 0.5100 +5587 168507 0.7300 +5587 203286 0.7650 +5587 253260 0.4310 +5587 283871 0.4360 +5587 285973 0.4380 +5587 342372 0.7850 +5588 5592 0.4460 +5588 5593 0.7080 +5588 5599 0.9130 +5588 5601 0.9100 +5588 5771 0.4950 +5588 5777 0.9480 +5588 5781 0.9270 +5588 5894 0.6720 +5588 5966 0.5850 +5588 5970 0.9340 +5588 6402 0.4960 +5588 6775 0.4610 +5588 6885 0.9550 +5588 7128 0.4340 +5588 7185 0.4170 +5588 7186 0.9050 +5588 7189 0.7710 +5588 7334 0.5680 +5588 7335 0.5690 +5588 7409 0.6320 +5588 7430 0.8100 +5588 7535 0.7130 +5588 7704 0.4050 +5588 8491 0.4200 +5588 8517 0.9680 +5588 8787 0.4190 +5588 8915 0.9730 +5588 9402 0.4610 +5588 10019 0.4840 +5588 10451 0.4100 +5588 10454 0.6220 +5588 10539 0.9220 +5588 10681 0.5680 +5588 10892 0.9130 +5588 10971 0.4680 +5588 23118 0.5940 +5588 23274 0.5170 +5588 25780 0.5530 +5588 26191 0.4610 +5588 27040 0.4800 +5588 29775 0.9490 +5588 29851 0.4340 +5588 50619 0.5480 +5588 51764 0.5030 +5588 53347 0.5150 +5588 54331 0.5320 +5588 55824 0.4170 +5588 55970 0.4990 +5588 57162 0.4470 +5588 59341 0.9020 +5588 59345 0.5660 +5588 60468 0.5200 +5588 79092 0.9320 +5588 79837 0.4310 +5588 80018 0.4810 +5588 80381 0.4090 +5588 84433 0.9980 +5588 94235 0.5270 +5588 114904 0.5540 +5588 117289 0.6040 +5588 253260 0.4290 +5588 257397 0.5670 +5588 390714 0.4090 +5589 5611 0.4210 +5589 6262 0.4950 +5589 6476 0.5600 +5589 7095 0.5520 +5589 7184 0.8160 +5589 7249 0.5580 +5589 7450 0.4500 +5589 7841 0.7350 +5589 8972 0.5580 +5589 9601 0.5570 +5589 9709 0.7690 +5589 9761 0.7710 +5589 10525 0.4010 +5589 10531 0.4230 +5589 10945 0.4580 +5589 10952 0.6690 +5589 10956 0.5640 +5589 11231 0.9770 +5589 11253 0.4380 +5589 23166 0.4720 +5589 23193 0.9990 +5589 25792 0.4460 +5589 27248 0.5420 +5589 29880 0.4500 +5589 29927 0.5840 +5589 51477 0.4020 +5589 51726 0.5870 +5589 54757 0.4060 +5589 56886 0.5250 +5589 56975 0.5530 +5589 57462 0.5950 +5589 65117 0.4290 +5589 79053 0.7180 +5589 80267 0.5430 +5589 84688 0.5370 +5589 84922 0.4380 +5589 93145 0.4030 +5589 93432 0.5350 +5589 154467 0.4550 +5589 201595 0.4300 +5589 201627 0.4990 +5590 5594 0.9190 +5590 5595 0.9260 +5590 5598 0.9420 +5590 5607 0.7610 +5590 5728 0.9580 +5590 5756 0.4080 +5590 5880 0.9340 +5590 5881 0.9220 +5590 5900 0.4170 +5590 5906 0.9240 +5590 5908 0.9220 +5590 5921 0.6060 +5590 5970 0.7600 +5590 6233 0.5310 +5590 6416 0.4220 +5590 6517 0.5920 +5590 6613 0.9210 +5590 6667 0.7880 +5590 6693 0.4170 +5590 6714 0.6940 +5590 6794 0.9480 +5590 6907 0.4230 +5590 7040 0.6380 +5590 7046 0.5680 +5590 7048 0.6560 +5590 7074 0.9390 +5590 7082 0.7510 +5590 7097 0.5680 +5590 7099 0.5230 +5590 7124 0.4230 +5590 7157 0.9330 +5590 7189 0.8750 +5590 7220 0.4250 +5590 7311 0.5240 +5590 7314 0.5310 +5590 7316 0.5310 +5590 7341 0.9190 +5590 7412 0.5060 +5590 7428 0.6760 +5590 7430 0.4230 +5590 7442 0.4140 +5590 7474 0.5420 +5590 7529 0.4760 +5590 7532 0.4390 +5590 7533 0.4510 +5590 7534 0.6430 +5590 7976 0.4270 +5590 8312 0.4890 +5590 8454 0.4470 +5590 8471 0.9170 +5590 8503 0.9070 +5590 8514 0.7830 +5590 8525 0.4850 +5590 8650 0.7410 +5590 8660 0.9430 +5590 8737 0.5660 +5590 8763 0.4830 +5590 8877 0.6320 +5590 8878 0.9950 +5590 9223 0.9120 +5590 9253 0.6500 +5590 9414 0.6140 +5590 9637 0.6510 +5590 9638 0.6760 +5590 9821 0.4220 +5590 10000 0.9590 +5590 10207 0.4940 +5590 10273 0.6250 +5590 10539 0.5520 +5590 10971 0.4240 +5590 11337 0.5890 +5590 11344 0.4830 +5590 22954 0.4700 +5590 23286 0.9490 +5590 23370 0.5560 +5590 23513 0.6570 +5590 23533 0.9150 +5590 26060 0.4320 +5590 27134 0.5670 +5590 27173 0.7510 +5590 29899 0.4440 +5590 50649 0.4550 +5590 50848 0.8520 +5590 50855 0.9990 +5590 51421 0.9100 +5590 51588 0.9620 +5590 54106 0.4380 +5590 54566 0.9250 +5590 55669 0.6220 +5590 55844 0.9110 +5590 56288 0.9990 +5590 57154 0.7990 +5590 57521 0.4250 +5590 57530 0.6400 +5590 57689 0.4210 +5590 57822 0.4310 +5590 64101 0.4660 +5590 64398 0.4400 +5590 84552 0.9990 +5590 84612 0.9990 +5590 85452 0.5800 +5590 90933 0.4620 +5590 91252 0.4060 +5590 117583 0.7730 +5590 146850 0.9000 +5590 154796 0.9410 +5590 154810 0.9120 +5590 253260 0.4670 +5590 387082 0.9130 +5590 653361 0.8560 +5590 100506658 0.7660 +5591 5595 0.4040 +5591 5599 0.4250 +5591 5601 0.5730 +5591 5719 0.4210 +5591 5728 0.4680 +5591 5822 0.5500 +5591 5883 0.6900 +5591 5884 0.6930 +5591 5885 0.5970 +5591 5887 0.9360 +5591 5888 0.8230 +5591 5889 0.5510 +5591 5890 0.6190 +5591 5892 0.4940 +5591 5893 0.7330 +5591 5896 0.7390 +5591 5903 0.4090 +5591 5932 0.7600 +5591 5965 0.4380 +5591 5970 0.5540 +5591 5976 0.4050 +5591 5982 0.4060 +5591 5984 0.4410 +5591 6047 0.6040 +5591 6117 0.8400 +5591 6118 0.9700 +5591 6119 0.6220 +5591 6124 0.5900 +5591 6125 0.4380 +5591 6194 0.4100 +5591 6198 0.5480 +5591 6199 0.4530 +5591 6201 0.5520 +5591 6203 0.4080 +5591 6233 0.5350 +5591 6421 0.5740 +5591 6426 0.5910 +5591 6446 0.4310 +5591 6613 0.5980 +5591 6667 0.4130 +5591 6709 0.4440 +5591 6729 0.4310 +5591 6737 0.4230 +5591 6749 0.5830 +5591 6782 0.4530 +5591 6787 0.5550 +5591 7013 0.7170 +5591 7014 0.6770 +5591 7015 0.6180 +5591 7112 0.4540 +5591 7113 0.5920 +5591 7150 0.8660 +5591 7153 0.7930 +5591 7157 0.9970 +5591 7158 0.8950 +5591 7184 0.5560 +5591 7249 0.5340 +5591 7311 0.5220 +5591 7314 0.5140 +5591 7316 0.5260 +5591 7332 0.5290 +5591 7334 0.6570 +5591 7336 0.6040 +5591 7374 0.4120 +5591 7391 0.4060 +5591 7441 0.4470 +5591 7443 0.4270 +5591 7465 0.4940 +5591 7468 0.6530 +5591 7486 0.9780 +5591 7507 0.8830 +5591 7508 0.9230 +5591 7514 0.5070 +5591 7515 0.9630 +5591 7516 0.5310 +5591 7517 0.7670 +5591 7518 0.9990 +5591 7520 0.9990 +5591 7528 0.5180 +5591 7750 0.4160 +5591 8243 0.6160 +5591 8290 0.7230 +5591 8295 0.5620 +5591 8318 0.5480 +5591 8337 0.4650 +5591 8338 0.4610 +5591 8340 0.6020 +5591 8341 0.6040 +5591 8342 0.6040 +5591 8345 0.6020 +5591 8347 0.6010 +5591 8348 0.6090 +5591 8349 0.8310 +5591 8350 0.4830 +5591 8356 0.6610 +5591 8361 0.8320 +5591 8408 0.4330 +5591 8438 0.5460 +5591 8456 0.4820 +5591 8467 0.6580 +5591 8505 0.4540 +5591 8517 0.4990 +5591 8602 0.7330 +5591 8607 0.6240 +5591 8773 0.5420 +5591 8826 0.4450 +5591 8841 0.4270 +5591 8924 0.5460 +5591 8970 0.6040 +5591 9025 0.8300 +5591 9136 0.5580 +5591 9156 0.7770 +5591 9203 0.4400 +5591 9208 0.4960 +5591 9212 0.5520 +5591 9277 0.5550 +5591 9400 0.5880 +5591 9401 0.6370 +5591 9493 0.6920 +5591 9557 0.7500 +5591 9656 0.9520 +5591 9666 0.4410 +5591 9675 0.7900 +5591 9701 0.7080 +5591 9724 0.5700 +5591 9781 0.9630 +5591 9782 0.4660 +5591 9894 0.9020 +5591 9937 0.4200 +5591 10000 0.7450 +5591 10013 0.4420 +5591 10038 0.5310 +5591 10039 0.6790 +5591 10111 0.6690 +5591 10112 0.4240 +5591 10155 0.6620 +5591 10186 0.4240 +5591 10199 0.5730 +5591 10325 0.5030 +5591 10432 0.4970 +5591 10436 0.5520 +5591 10438 0.6150 +5591 10459 0.4600 +5591 10518 0.4170 +5591 10519 0.8240 +5591 10524 0.9180 +5591 10528 0.6060 +5591 10594 0.6640 +5591 10664 0.4430 +5591 10670 0.5050 +5591 10721 0.5040 +5591 10813 0.5800 +5591 10856 0.8310 +5591 10885 0.5600 +5591 10973 0.5890 +5591 10985 0.5270 +5591 10989 0.4260 +5591 11073 0.6120 +5591 11103 0.5760 +5591 11130 0.5340 +5591 11198 0.4070 +5591 11200 0.9370 +5591 11284 0.8000 +5591 11329 0.4980 +5591 11335 0.4490 +5591 11340 0.5230 +5591 22870 0.6600 +5591 22894 0.4140 +5591 22916 0.4100 +5591 22976 0.7260 +5591 22984 0.5710 +5591 23012 0.4230 +5591 23020 0.5240 +5591 23028 0.9190 +5591 23186 0.9100 +5591 23197 0.6390 +5591 23198 0.7040 +5591 23476 0.6320 +5591 23514 0.4920 +5591 23678 0.4110 +5591 25788 0.5010 +5591 25879 0.5790 +5591 25900 0.4120 +5591 25913 0.7020 +5591 25983 0.6440 +5591 26227 0.5900 +5591 26277 0.7410 +5591 27030 0.6650 +5591 27042 0.5510 +5591 27340 0.7470 +5591 27343 0.8720 +5591 27434 0.8720 +5591 29072 0.4040 +5591 29110 0.5730 +5591 29126 0.5990 +5591 50485 0.6900 +5591 51008 0.5460 +5591 51077 0.5420 +5591 51096 0.5560 +5591 51118 0.6160 +5591 51119 0.4740 +5591 51317 0.9080 +5591 51341 0.5580 +5591 51366 0.6960 +5591 51548 0.7280 +5591 51567 0.6070 +5591 51588 0.6230 +5591 51602 0.5870 +5591 51720 0.4890 +5591 54145 0.6020 +5591 54443 0.4260 +5591 54840 0.7330 +5591 55127 0.6080 +5591 55183 0.6380 +5591 55215 0.7820 +5591 55269 0.4480 +5591 55272 0.5470 +5591 55291 0.6710 +5591 55294 0.4520 +5591 55367 0.7540 +5591 55775 0.7740 +5591 55813 0.5560 +5591 56852 0.5820 +5591 56916 0.4560 +5591 57050 0.5670 +5591 57122 0.4790 +5591 57379 0.7010 +5591 57521 0.8760 +5591 57697 0.5920 +5591 58528 0.4400 +5591 63967 0.4140 +5591 64121 0.4180 +5591 64135 0.4380 +5591 64223 0.8660 +5591 64421 0.9990 +5591 64858 0.7980 +5591 64919 0.4720 +5591 65018 0.4100 +5591 65083 0.5750 +5591 78996 0.6260 +5591 79050 0.5540 +5591 79109 0.9240 +5591 79728 0.7940 +5591 79828 0.4110 +5591 79840 0.9990 +5591 79902 0.4620 +5591 79954 0.5650 +5591 79968 0.5660 +5591 79991 0.8490 +5591 80185 0.5330 +5591 80198 0.4460 +5591 81611 0.4030 +5591 81847 0.4080 +5591 84126 0.9730 +5591 84148 0.4160 +5591 84164 0.5430 +5591 84294 0.5720 +5591 84464 0.4270 +5591 84916 0.5580 +5591 85236 0.6020 +5591 85441 0.4190 +5591 91419 0.9100 +5591 91442 0.5420 +5591 92856 0.5460 +5591 116447 0.5720 +5591 120892 0.6560 +5591 125150 0.9000 +5591 126074 0.9000 +5591 128312 0.6030 +5591 129138 0.4640 +5591 146956 0.4040 +5591 152110 0.4480 +5591 165918 0.8120 +5591 200558 0.7780 +5591 200895 0.4230 +5591 253260 0.9150 +5591 255626 0.6030 +5591 282974 0.4470 +5591 286257 0.9960 +5591 337867 0.6160 +5591 340061 0.4780 +5591 340252 0.4130 +5591 345630 0.5640 +5591 440093 0.4680 +5591 440686 0.4680 +5591 653604 0.4770 +5591 728378 0.5250 +5591 100526737 0.4440 +5591 100533467 0.4140 +5591 102723407 0.5990 +5591 105371045 0.5670 +5591 105375355 0.5400 +5592 5593 0.9080 +5592 5600 0.9160 +5592 5603 0.9150 +5592 5613 0.4150 +5592 5781 0.5150 +5592 5832 0.4610 +5592 5894 0.9320 +5592 5972 0.4390 +5592 5997 0.9700 +5592 6262 0.4130 +5592 6263 0.4600 +5592 6300 0.9160 +5592 6525 0.4870 +5592 6543 0.9140 +5592 6546 0.9270 +5592 6547 0.9100 +5592 7042 0.4400 +5592 7046 0.4220 +5592 7138 0.4500 +5592 7148 0.4800 +5592 7225 0.9420 +5592 7273 0.4870 +5592 7408 0.9780 +5592 7450 0.4590 +5592 8076 0.4590 +5592 8654 0.8670 +5592 8803 0.4260 +5592 9351 0.5320 +5592 9569 0.9090 +5592 9586 0.7230 +5592 9726 0.6280 +5592 10242 0.9040 +5592 10335 0.9960 +5592 10391 0.4050 +5592 10488 0.6720 +5592 10576 0.4420 +5592 10631 0.5060 +5592 10842 0.9240 +5592 23085 0.4360 +5592 23108 0.5040 +5592 23164 0.7550 +5592 23236 0.9320 +5592 23439 0.9070 +5592 27094 0.9030 +5592 27345 0.9140 +5592 29777 0.4160 +5592 30008 0.4130 +5592 51070 0.5090 +5592 51806 0.5550 +5592 54776 0.9420 +5592 55964 0.8410 +5592 56658 0.7250 +5592 64764 0.6580 +5592 64805 0.4870 +5592 79073 0.4580 +5592 79607 0.4350 +5592 79849 0.4120 +5592 80318 0.8750 +5592 81031 0.4740 +5592 84699 0.6630 +5592 90993 0.6570 +5592 91860 0.5560 +5592 127281 0.4500 +5592 148327 0.6500 +5592 157855 0.9120 +5592 163688 0.5560 +5592 202658 0.8230 +5592 219537 0.7990 +5592 220108 0.4680 +5592 284521 0.4510 +5593 5600 0.9120 +5593 5603 0.9110 +5593 5613 0.4120 +5593 5744 0.4430 +5593 5805 0.7540 +5593 5832 0.4310 +5593 5894 0.9060 +5593 5997 0.9120 +5593 6122 0.4030 +5593 6300 0.9120 +5593 6543 0.9060 +5593 6546 0.9100 +5593 6547 0.9060 +5593 6550 0.5310 +5593 6662 0.5840 +5593 6697 0.7660 +5593 7225 0.9110 +5593 7408 0.9420 +5593 8654 0.5390 +5593 8766 0.4440 +5593 9094 0.5500 +5593 9230 0.9140 +5593 9351 0.4070 +5593 9569 0.9060 +5593 9586 0.6820 +5593 10242 0.9000 +5593 10335 0.9430 +5593 10488 0.6500 +5593 10842 0.9130 +5593 23236 0.9090 +5593 23439 0.9010 +5593 23532 0.4500 +5593 27022 0.4390 +5593 27094 0.9160 +5593 27345 0.9120 +5593 58478 0.4180 +5593 64764 0.6500 +5593 79073 0.4580 +5593 84699 0.6550 +5593 90993 0.6500 +5593 148327 0.6500 +5593 153020 0.9190 +5593 157855 0.9170 +5594 5595 0.9940 +5594 5598 0.5800 +5594 5599 0.7470 +5594 5600 0.9060 +5594 5601 0.6710 +5594 5603 0.9070 +5594 5604 0.9990 +5594 5605 0.9990 +5594 5606 0.9770 +5594 5607 0.5590 +5594 5608 0.9660 +5594 5609 0.6430 +5594 5728 0.6770 +5594 5743 0.7800 +5594 5747 0.5510 +5594 5770 0.5610 +5594 5777 0.9330 +5594 5778 0.9980 +5594 5781 0.9550 +5594 5787 0.4640 +5594 5788 0.5460 +5594 5791 0.4530 +5594 5792 0.4420 +5594 5795 0.4600 +5594 5801 0.9960 +5594 5803 0.4150 +5594 5805 0.5220 +5594 5816 0.4910 +5594 5829 0.8350 +5594 5862 0.5320 +5594 5879 0.6430 +5594 5880 0.9420 +5594 5894 0.9750 +5594 5899 0.4240 +5594 5906 0.6980 +5594 5908 0.6250 +5594 5914 0.4440 +5594 5921 0.4560 +5594 5970 0.7170 +5594 5979 0.4590 +5594 5993 0.5280 +5594 5994 0.4700 +5594 6093 0.9220 +5594 6133 0.4740 +5594 6194 0.6910 +5594 6195 0.9990 +5594 6196 0.9910 +5594 6197 0.9890 +5594 6198 0.9270 +5594 6199 0.9210 +5594 6217 0.4170 +5594 6233 0.4750 +5594 6256 0.4440 +5594 6283 0.5450 +5594 6285 0.5690 +5594 6288 0.5090 +5594 6300 0.9270 +5594 6416 0.6040 +5594 6426 0.5640 +5594 6427 0.5100 +5594 6456 0.8080 +5594 6464 0.9620 +5594 6500 0.6980 +5594 6548 0.9210 +5594 6615 0.5400 +5594 6622 0.6270 +5594 6648 0.4670 +5594 6654 0.7720 +5594 6655 0.5240 +5594 6663 0.4490 +5594 6667 0.9690 +5594 6714 0.9320 +5594 6720 0.4600 +5594 6721 0.5900 +5594 6722 0.4250 +5594 6772 0.9500 +5594 6774 0.9960 +5594 6776 0.8780 +5594 6777 0.6800 +5594 6815 0.6830 +5594 6868 0.4650 +5594 6873 0.4190 +5594 6885 0.9260 +5594 6926 0.9110 +5594 6934 0.4570 +5594 6942 0.4060 +5594 7040 0.4820 +5594 7054 0.4130 +5594 7068 0.9120 +5594 7094 0.6300 +5594 7099 0.6060 +5594 7124 0.7570 +5594 7132 0.6790 +5594 7153 0.4210 +5594 7157 0.9980 +5594 7189 0.6360 +5594 7248 0.9260 +5594 7249 0.9520 +5594 7251 0.4460 +5594 7273 0.5920 +5594 7297 0.5400 +5594 7311 0.5530 +5594 7337 0.4130 +5594 7409 0.6630 +5594 7412 0.6710 +5594 7414 0.7860 +5594 7416 0.4310 +5594 7450 0.5980 +5594 7454 0.4740 +5594 7490 0.4340 +5594 7514 0.4350 +5594 7529 0.7950 +5594 7531 0.5860 +5594 7534 0.6170 +5594 7535 0.4740 +5594 7837 0.7210 +5594 7867 0.5740 +5594 7942 0.4330 +5594 8061 0.5690 +5594 8074 0.4240 +5594 8202 0.6080 +5594 8290 0.4050 +5594 8356 0.4070 +5594 8398 0.6730 +5594 8399 0.6850 +5594 8405 0.4250 +5594 8454 0.6690 +5594 8548 0.4380 +5594 8550 0.6850 +5594 8569 0.9990 +5594 8605 0.9060 +5594 8649 0.9610 +5594 8660 0.5520 +5594 8678 0.4310 +5594 8681 0.9000 +5594 8682 0.9980 +5594 8717 0.5150 +5594 8767 0.4010 +5594 8772 0.5500 +5594 8817 0.5870 +5594 8822 0.5660 +5594 8823 0.5740 +5594 8826 0.9880 +5594 8844 0.7120 +5594 8870 0.7700 +5594 8877 0.9220 +5594 8878 0.5640 +5594 8915 0.9170 +5594 8936 0.4740 +5594 8945 0.4400 +5594 8986 0.6430 +5594 9110 0.4690 +5594 9181 0.4040 +5594 9252 0.9350 +5594 9261 0.8880 +5594 9365 0.4220 +5594 9414 0.4440 +5594 9468 0.9050 +5594 9474 0.5920 +5594 9475 0.9190 +5594 9531 0.4470 +5594 9586 0.9460 +5594 9588 0.4360 +5594 9645 0.5910 +5594 9647 0.4040 +5594 9759 0.4960 +5594 9846 0.6060 +5594 9965 0.4670 +5594 9972 0.4300 +5594 9978 0.6730 +5594 10000 0.9270 +5594 10006 0.4500 +5594 10013 0.6420 +5594 10018 0.9530 +5594 10059 0.6520 +5594 10092 0.5360 +5594 10094 0.5330 +5594 10095 0.5460 +5594 10097 0.6930 +5594 10105 0.5120 +5594 10109 0.5270 +5594 10131 0.4490 +5594 10140 0.6200 +5594 10152 0.4560 +5594 10155 0.4470 +5594 10159 0.4550 +5594 10163 0.4570 +5594 10174 0.5340 +5594 10252 0.5300 +5594 10253 0.4850 +5594 10256 0.4990 +5594 10318 0.6560 +5594 10399 0.5010 +5594 10454 0.4720 +5594 10458 0.4600 +5594 10488 0.9180 +5594 10499 0.4580 +5594 10519 0.5490 +5594 10533 0.6910 +5594 10552 0.5890 +5594 10664 0.4280 +5594 10681 0.7540 +5594 10728 0.4640 +5594 10746 0.5010 +5594 10787 0.4270 +5594 10810 0.4170 +5594 10818 0.7950 +5594 10887 0.4230 +5594 10892 0.9220 +5594 10971 0.4160 +5594 10979 0.5070 +5594 11140 0.5850 +5594 11145 0.7050 +5594 11200 0.6630 +5594 11221 0.8130 +5594 11266 0.8120 +5594 22858 0.5630 +5594 22866 0.5050 +5594 23012 0.4720 +5594 23191 0.4340 +5594 23214 0.5570 +5594 23327 0.4640 +5594 23405 0.5980 +5594 23439 0.9000 +5594 23476 0.4650 +5594 23604 0.9200 +5594 26003 0.6660 +5594 26279 0.6590 +5594 26281 0.5750 +5594 26291 0.4410 +5594 26999 0.4560 +5594 27006 0.5730 +5594 27101 0.5500 +5594 27161 0.4680 +5594 27330 0.9280 +5594 28956 0.6940 +5594 28964 0.5250 +5594 30814 0.6600 +5594 50487 0.7020 +5594 51231 0.4980 +5594 51256 0.9000 +5594 51365 0.6740 +5594 51366 0.5710 +5594 51399 0.5750 +5594 51530 0.5840 +5594 51651 0.4250 +5594 51764 0.6520 +5594 51806 0.4970 +5594 54165 0.5350 +5594 54205 0.7750 +5594 54331 0.6970 +5594 54518 0.5350 +5594 54756 0.5390 +5594 54919 0.4800 +5594 55294 0.5740 +5594 55845 0.4360 +5594 55959 0.4260 +5594 55970 0.7140 +5594 56339 0.4120 +5594 56848 0.9160 +5594 56940 0.5530 +5594 57369 0.9000 +5594 57509 0.4840 +5594 57521 0.6480 +5594 59345 0.7500 +5594 64101 0.5280 +5594 64170 0.9160 +5594 64600 0.6580 +5594 64764 0.9030 +5594 79006 0.4470 +5594 79692 0.4890 +5594 80824 0.8590 +5594 80895 0.5050 +5594 81579 0.6610 +5594 81669 0.5970 +5594 81793 0.4050 +5594 84271 0.7310 +5594 84292 0.6720 +5594 84335 0.4910 +5594 84647 0.6550 +5594 84656 0.4160 +5594 84699 0.9070 +5594 84823 0.5900 +5594 84867 0.9740 +5594 90993 0.9000 +5594 91860 0.4730 +5594 94235 0.6520 +5594 120892 0.4180 +5594 123745 0.9030 +5594 133482 0.5820 +5594 137902 0.7170 +5594 140456 0.4010 +5594 142679 0.4020 +5594 146433 0.4180 +5594 148327 0.9090 +5594 152831 0.6160 +5594 163688 0.4730 +5594 201161 0.4740 +5594 255189 0.9030 +5594 266743 0.7500 +5594 283748 0.9030 +5594 391013 0.6560 +5594 440093 0.4050 +5594 440686 0.4060 +5594 653361 0.9230 +5594 653604 0.4060 +5594 728378 0.6110 +5594 100137049 0.9050 +5595 5598 0.5520 +5595 5599 0.5050 +5595 5600 0.9100 +5595 5601 0.5050 +5595 5603 0.9420 +5595 5604 0.9990 +5595 5605 0.9900 +5595 5606 0.9800 +5595 5607 0.5590 +5595 5608 0.9560 +5595 5610 0.5040 +5595 5617 0.4060 +5595 5728 0.7560 +5595 5734 0.4120 +5595 5743 0.8550 +5595 5770 0.7060 +5595 5777 0.9380 +5595 5778 0.9920 +5595 5781 0.9900 +5595 5787 0.6000 +5595 5788 0.6920 +5595 5791 0.4740 +5595 5795 0.6090 +5595 5801 0.9760 +5595 5803 0.5020 +5595 5805 0.4310 +5595 5829 0.8580 +5595 5832 0.4500 +5595 5862 0.7340 +5595 5868 0.4210 +5595 5877 0.4860 +5595 5879 0.6790 +5595 5880 0.9500 +5595 5894 0.9620 +5595 5896 0.4180 +5595 5898 0.4150 +5595 5900 0.5940 +5595 5906 0.6860 +5595 5908 0.6590 +5595 5921 0.5010 +5595 5924 0.4620 +5595 5925 0.5210 +5595 5966 0.4060 +5595 5970 0.6840 +5595 5972 0.5400 +5595 5979 0.4980 +5595 6009 0.4930 +5595 6093 0.9270 +5595 6143 0.4100 +5595 6189 0.4100 +5595 6194 0.6880 +5595 6195 0.9900 +5595 6196 0.9860 +5595 6197 0.9840 +5595 6198 0.9350 +5595 6199 0.9300 +5595 6217 0.4520 +5595 6237 0.4070 +5595 6251 0.6010 +5595 6256 0.4540 +5595 6275 0.4230 +5595 6283 0.6040 +5595 6285 0.6760 +5595 6288 0.5550 +5595 6295 0.4490 +5595 6300 0.9110 +5595 6347 0.7470 +5595 6348 0.4530 +5595 6385 0.4860 +5595 6387 0.5920 +5595 6391 0.4530 +5595 6401 0.4230 +5595 6464 0.7800 +5595 6469 0.4600 +5595 6513 0.5980 +5595 6517 0.5330 +5595 6548 0.9460 +5595 6591 0.5450 +5595 6597 0.5350 +5595 6615 0.6060 +5595 6622 0.5260 +5595 6623 0.4010 +5595 6647 0.4650 +5595 6648 0.4540 +5595 6654 0.8140 +5595 6655 0.5050 +5595 6657 0.6580 +5595 6662 0.5270 +5595 6667 0.9720 +5595 6696 0.5470 +5595 6714 0.9440 +5595 6720 0.6290 +5595 6721 0.6600 +5595 6722 0.5090 +5595 6770 0.5180 +5595 6772 0.9640 +5595 6774 0.8700 +5595 6776 0.7770 +5595 6777 0.8000 +5595 6778 0.4710 +5595 6794 0.4860 +5595 6810 0.5320 +5595 6815 0.5680 +5595 6853 0.6020 +5595 6854 0.5150 +5595 6863 0.4160 +5595 6868 0.4690 +5595 6885 0.9240 +5595 6926 0.9330 +5595 7010 0.5900 +5595 7015 0.4370 +5595 7039 0.5240 +5595 7040 0.7210 +5595 7042 0.4430 +5595 7043 0.4160 +5595 7054 0.5760 +5595 7057 0.4270 +5595 7068 0.9160 +5595 7070 0.4180 +5595 7076 0.5240 +5595 7077 0.4680 +5595 7082 0.6980 +5595 7094 0.6900 +5595 7097 0.6070 +5595 7098 0.4520 +5595 7099 0.8240 +5595 7100 0.4040 +5595 7124 0.9220 +5595 7132 0.4790 +5595 7157 0.9940 +5595 7184 0.4170 +5595 7187 0.6400 +5595 7189 0.5700 +5595 7248 0.9400 +5595 7249 0.9600 +5595 7289 0.4790 +5595 7291 0.4360 +5595 7295 0.4990 +5595 7297 0.5670 +5595 7299 0.5920 +5595 7316 0.5320 +5595 7324 0.4520 +5595 7343 0.8380 +5595 7409 0.6340 +5595 7412 0.7130 +5595 7414 0.7700 +5595 7416 0.5340 +5595 7423 0.4230 +5595 7424 0.4630 +5595 7430 0.4190 +5595 7442 0.5580 +5595 7448 0.4020 +5595 7450 0.6940 +5595 7465 0.4090 +5595 7473 0.4990 +5595 7474 0.4240 +5595 7490 0.4670 +5595 7494 0.4350 +5595 7498 0.4180 +5595 7529 0.6720 +5595 7545 0.4860 +5595 7706 0.4690 +5595 7837 0.8480 +5595 7852 0.6260 +5595 7867 0.5690 +5595 8061 0.6220 +5595 8074 0.6100 +5595 8224 0.5130 +5595 8290 0.6090 +5595 8312 0.6370 +5595 8313 0.4410 +5595 8356 0.6090 +5595 8361 0.4860 +5595 8398 0.6900 +5595 8399 0.7370 +5595 8411 0.4080 +5595 8448 0.4840 +5595 8493 0.4040 +5595 8517 0.4230 +5595 8548 0.4380 +5595 8549 0.4460 +5595 8550 0.4580 +5595 8569 0.9560 +5595 8600 0.5410 +5595 8605 0.9070 +5595 8649 0.9770 +5595 8654 0.6880 +5595 8660 0.6870 +5595 8678 0.6000 +5595 8681 0.9000 +5595 8682 0.9610 +5595 8698 0.5570 +5595 8751 0.4520 +5595 8766 0.4370 +5595 8767 0.5000 +5595 8772 0.7060 +5595 8788 0.5140 +5595 8795 0.4170 +5595 8801 0.5820 +5595 8817 0.7460 +5595 8822 0.7170 +5595 8823 0.7250 +5595 8826 0.9830 +5595 8837 0.4230 +5595 8842 0.4690 +5595 8844 0.8900 +5595 8862 0.4060 +5595 8870 0.8130 +5595 8877 0.9510 +5595 8878 0.6320 +5595 8900 0.5330 +5595 8915 0.9270 +5595 8936 0.4660 +5595 8988 0.5840 +5595 9021 0.5120 +5595 9076 0.4130 +5595 9181 0.5430 +5595 9246 0.4770 +5595 9252 0.9290 +5595 9261 0.7980 +5595 9290 0.5520 +5595 9294 0.4560 +5595 9306 0.4610 +5595 9314 0.5050 +5595 9344 0.4660 +5595 9365 0.6070 +5595 9370 0.5070 +5595 9423 0.5170 +5595 9429 0.4420 +5595 9468 0.9050 +5595 9474 0.5080 +5595 9475 0.9240 +5595 9564 0.5150 +5595 9586 0.9390 +5595 9636 0.6150 +5595 9759 0.5810 +5595 9791 0.4090 +5595 9817 0.5040 +5595 9846 0.6510 +5595 9965 0.5950 +5595 9970 0.4530 +5595 10000 0.9280 +5595 10006 0.4980 +5595 10013 0.7180 +5595 10018 0.9700 +5595 10059 0.5660 +5595 10125 0.4260 +5595 10128 0.4400 +5595 10131 0.4880 +5595 10152 0.4160 +5595 10155 0.4100 +5595 10159 0.6110 +5595 10163 0.5050 +5595 10174 0.4810 +5595 10253 0.6040 +5595 10256 0.5610 +5595 10273 0.4600 +5595 10365 0.4210 +5595 10399 0.5450 +5595 10411 0.4620 +5595 10413 0.4020 +5595 10454 0.5200 +5595 10458 0.4470 +5595 10488 0.9150 +5595 10533 0.4850 +5595 10672 0.4310 +5595 10681 0.7470 +5595 10728 0.5030 +5595 10746 0.4200 +5595 10763 0.5020 +5595 10787 0.4090 +5595 10788 0.4700 +5595 10810 0.4640 +5595 10818 0.7910 +5595 10887 0.4350 +5595 10891 0.5190 +5595 10892 0.9240 +5595 10935 0.4640 +5595 10987 0.4600 +5595 11069 0.4460 +5595 11075 0.4780 +5595 11140 0.4880 +5595 11145 0.7090 +5595 11188 0.4640 +5595 11200 0.6820 +5595 11214 0.5370 +5595 11221 0.8110 +5595 11266 0.7150 +5595 11274 0.4600 +5595 11315 0.5490 +5595 22866 0.5220 +5595 22916 0.4130 +5595 23035 0.5690 +5595 23175 0.4720 +5595 23191 0.4740 +5595 23213 0.4050 +5595 23224 0.6290 +5595 23239 0.4210 +5595 23345 0.4650 +5595 23411 0.5800 +5595 23439 0.9000 +5595 23513 0.4580 +5595 23521 0.4040 +5595 23566 0.4670 +5595 23586 0.5710 +5595 23604 0.9240 +5595 23621 0.4060 +5595 25820 0.4120 +5595 25953 0.4010 +5595 26003 0.5030 +5595 26279 0.6880 +5595 26281 0.7240 +5595 26291 0.6020 +5595 26499 0.4010 +5595 26548 0.5090 +5595 26999 0.4800 +5595 27006 0.7210 +5595 27035 0.5200 +5595 27101 0.7750 +5595 27330 0.9280 +5595 27429 0.4310 +5595 28956 0.7810 +5595 28964 0.5700 +5595 29108 0.4960 +5595 29126 0.4800 +5595 30814 0.6600 +5595 50487 0.7090 +5595 50507 0.5770 +5595 50943 0.4740 +5595 50964 0.4780 +5595 51094 0.4010 +5595 51107 0.4500 +5595 51191 0.4150 +5595 51231 0.5070 +5595 51256 0.9080 +5595 51365 0.6740 +5595 51655 0.4290 +5595 51738 0.4140 +5595 51744 0.4110 +5595 51764 0.6520 +5595 51806 0.6480 +5595 53905 0.4010 +5595 54106 0.4240 +5595 54165 0.4420 +5595 54205 0.7880 +5595 54331 0.6890 +5595 54518 0.5480 +5595 54756 0.5680 +5595 54961 0.4080 +5595 54997 0.4530 +5595 55294 0.6360 +5595 55622 0.4850 +5595 55750 0.5040 +5595 55845 0.4330 +5595 55959 0.5000 +5595 55970 0.6850 +5595 56339 0.4520 +5595 56848 0.9450 +5595 56907 0.4140 +5595 57153 0.4660 +5595 57369 0.9050 +5595 57521 0.7450 +5595 59272 0.5920 +5595 59341 0.4070 +5595 59345 0.8400 +5595 60675 0.4050 +5595 63904 0.4660 +5595 64101 0.5490 +5595 64170 0.9260 +5595 64600 0.6580 +5595 64764 0.9040 +5595 79006 0.4550 +5595 79923 0.5090 +5595 80331 0.4170 +5595 80824 0.7890 +5595 80895 0.6200 +5595 81579 0.6670 +5595 81631 0.5180 +5595 81669 0.5450 +5595 81848 0.5530 +5595 83719 0.4040 +5595 84260 0.4070 +5595 84292 0.7950 +5595 84335 0.5230 +5595 84432 0.4350 +5595 84647 0.6550 +5595 84699 0.9150 +5595 84790 0.5510 +5595 84823 0.6950 +5595 84867 0.9780 +5595 89780 0.4230 +5595 90865 0.4130 +5595 90993 0.9050 +5595 91860 0.6330 +5595 93649 0.4970 +5595 93986 0.5320 +5595 94235 0.6590 +5595 114548 0.4210 +5595 114907 0.5030 +5595 120892 0.4680 +5595 121340 0.4850 +5595 123745 0.9050 +5595 133482 0.4610 +5595 137902 0.8470 +5595 146433 0.5030 +5595 146713 0.4770 +5595 148327 0.9060 +5595 150290 0.5080 +5595 152831 0.7490 +5595 157310 0.4230 +5595 163688 0.6330 +5595 200576 0.4420 +5595 222545 0.4260 +5595 253260 0.4840 +5595 253980 0.4840 +5595 255189 0.9050 +5595 255738 0.4540 +5595 257202 0.4950 +5595 266743 0.7720 +5595 283748 0.9080 +5595 391013 0.6560 +5595 440093 0.6090 +5595 440686 0.6090 +5595 493869 0.5070 +5595 653361 0.9650 +5595 653604 0.6110 +5595 728378 0.5080 +5595 100137049 0.9020 +5595 100271849 0.4100 +5595 100506658 0.5260 +5596 5597 0.8380 +5596 5599 0.4620 +5596 5604 0.4390 +5596 5605 0.4290 +5596 5606 0.4670 +5596 5607 0.5130 +5596 5608 0.5090 +5596 5728 0.5090 +5596 5879 0.5820 +5596 6217 0.4120 +5596 6416 0.6080 +5596 6801 0.4710 +5596 7514 0.7750 +5596 7867 0.4250 +5596 8202 0.5520 +5596 8550 0.9530 +5596 9261 0.4090 +5596 10642 0.8200 +5596 29966 0.4900 +5596 54822 0.4320 +5596 54903 0.4300 +5596 55770 0.4240 +5596 60493 0.4460 +5596 339302 0.4030 +5597 5604 0.4720 +5597 5605 0.5520 +5597 5606 0.5170 +5597 5607 0.5380 +5597 5608 0.5510 +5597 5682 0.4320 +5597 5683 0.4380 +5597 5684 0.4450 +5597 5685 0.4410 +5597 5686 0.4280 +5597 5687 0.4670 +5597 5688 0.5330 +5597 5689 0.4210 +5597 5690 0.4260 +5597 5691 0.4160 +5597 5692 0.4090 +5597 5693 0.4250 +5597 5694 0.4180 +5597 5695 0.4230 +5597 5696 0.4120 +5597 5698 0.4140 +5597 5699 0.4120 +5597 5700 0.4440 +5597 5701 0.4720 +5597 5702 0.4350 +5597 5704 0.4560 +5597 5705 0.4440 +5597 5706 0.4960 +5597 5707 0.4850 +5597 5708 0.4160 +5597 5709 0.4270 +5597 5710 0.4900 +5597 5711 0.4090 +5597 5713 0.4270 +5597 5714 0.4040 +5597 5715 0.4110 +5597 5716 0.4360 +5597 5717 0.4420 +5597 5718 0.4860 +5597 5781 0.5320 +5597 5879 0.5780 +5597 5956 0.4590 +5597 6217 0.4120 +5597 6218 0.4050 +5597 6233 0.5540 +5597 6790 0.4210 +5597 7311 0.6500 +5597 7314 0.5360 +5597 7316 0.5420 +5597 7337 0.8970 +5597 7409 0.5530 +5597 7514 0.8010 +5597 7576 0.4040 +5597 7867 0.4330 +5597 7957 0.5890 +5597 7979 0.4050 +5597 8202 0.8200 +5597 8312 0.4140 +5597 8550 0.9970 +5597 8555 0.7740 +5597 8556 0.8050 +5597 8801 0.4750 +5597 8832 0.4870 +5597 8924 0.8880 +5597 8997 0.8080 +5597 9261 0.4520 +5597 9437 0.4320 +5597 9859 0.4600 +5597 9861 0.4250 +5597 10023 0.4240 +5597 10197 0.4280 +5597 10213 0.4970 +5597 10399 0.4240 +5597 10435 0.4780 +5597 10602 0.4350 +5597 10746 0.4290 +5597 10868 0.4510 +5597 23198 0.4700 +5597 23401 0.4240 +5597 27202 0.5480 +5597 28998 0.4010 +5597 51744 0.5650 +5597 55173 0.4150 +5597 55662 0.5380 +5597 55700 0.4840 +5597 84461 0.9360 +5597 112399 0.4470 +5597 122706 0.4120 +5597 126017 0.4160 +5597 143471 0.4120 +5597 148170 0.4480 +5597 378884 0.4950 +5598 5604 0.5880 +5598 5605 0.4850 +5598 5606 0.5850 +5598 5607 0.9990 +5598 5608 0.5850 +5598 5609 0.4380 +5598 5623 0.5110 +5598 5728 0.4860 +5598 5781 0.4130 +5598 5801 0.6060 +5598 5894 0.4970 +5598 5979 0.5350 +5598 6093 0.5000 +5598 6195 0.9270 +5598 6196 0.9210 +5598 6197 0.9510 +5598 6217 0.4120 +5598 6262 0.4990 +5598 6446 0.4500 +5598 6714 0.5700 +5598 6774 0.4420 +5598 6907 0.4270 +5598 7124 0.4040 +5598 7157 0.5970 +5598 7185 0.4470 +5598 7189 0.6310 +5598 7411 0.4050 +5598 7529 0.4470 +5598 7531 0.4420 +5598 7581 0.5260 +5598 7867 0.5360 +5598 8061 0.5900 +5598 8165 0.8410 +5598 8550 0.6890 +5598 8772 0.4240 +5598 9048 0.5150 +5598 9261 0.5690 +5598 9314 0.4660 +5598 9472 0.9580 +5598 9618 0.4030 +5598 10013 0.4760 +5598 10365 0.7520 +5598 10399 0.4260 +5598 10411 0.9770 +5598 10454 0.4600 +5598 10471 0.4500 +5598 10746 0.8140 +5598 11016 0.4270 +5598 11065 0.6240 +5598 11069 0.5490 +5598 11266 0.4420 +5598 23518 0.4010 +5598 27077 0.4830 +5598 27330 0.9130 +5598 51231 0.4550 +5598 51684 0.4430 +5598 51806 0.4070 +5598 57369 0.9000 +5598 63940 0.4790 +5598 64096 0.5000 +5598 83605 0.4510 +5598 84186 0.4040 +5598 93649 0.5900 +5598 257397 0.4490 +5598 100271849 0.5520 +5599 5600 0.9130 +5599 5601 0.9990 +5599 5603 0.9100 +5599 5604 0.9340 +5599 5605 0.9240 +5599 5606 0.9630 +5599 5608 0.9400 +5599 5609 0.9960 +5599 5728 0.6990 +5599 5743 0.6020 +5599 5747 0.4380 +5599 5778 0.9170 +5599 5801 0.9130 +5599 5829 0.7510 +5599 5879 0.8770 +5599 5880 0.9530 +5599 5881 0.9140 +5599 5898 0.9260 +5599 5899 0.9210 +5599 5900 0.9150 +5599 5906 0.9270 +5599 5908 0.9200 +5599 5925 0.4250 +5599 5966 0.5520 +5599 5970 0.9750 +5599 6093 0.4920 +5599 6098 0.4270 +5599 6122 0.4860 +5599 6123 0.4820 +5599 6124 0.4610 +5599 6132 0.5070 +5599 6133 0.5030 +5599 6135 0.6730 +5599 6139 0.4810 +5599 6150 0.8110 +5599 6183 0.8420 +5599 6187 0.6110 +5599 6193 0.5650 +5599 6197 0.4940 +5599 6198 0.5170 +5599 6203 0.6560 +5599 6205 0.6770 +5599 6207 0.5370 +5599 6208 0.5390 +5599 6217 0.4620 +5599 6222 0.6510 +5599 6224 0.5450 +5599 6228 0.5920 +5599 6235 0.4830 +5599 6300 0.9110 +5599 6347 0.5270 +5599 6414 0.4240 +5599 6416 0.9990 +5599 6464 0.4410 +5599 6517 0.4120 +5599 6622 0.4880 +5599 6623 0.4250 +5599 6648 0.7150 +5599 6654 0.4100 +5599 6667 0.9620 +5599 6688 0.4150 +5599 6689 0.5620 +5599 6714 0.9590 +5599 6772 0.4960 +5599 6774 0.9000 +5599 6781 0.4100 +5599 6790 0.4750 +5599 6850 0.5580 +5599 6885 0.9710 +5599 7040 0.5340 +5599 7046 0.4330 +5599 7088 0.4070 +5599 7097 0.5070 +5599 7098 0.4110 +5599 7099 0.6150 +5599 7124 0.8900 +5599 7132 0.7150 +5599 7157 0.9970 +5599 7185 0.7290 +5599 7186 0.7710 +5599 7187 0.4240 +5599 7189 0.9720 +5599 7295 0.4370 +5599 7297 0.4640 +5599 7343 0.4040 +5599 7405 0.4080 +5599 7409 0.4840 +5599 7430 0.5390 +5599 7444 0.5780 +5599 7474 0.7100 +5599 7494 0.5380 +5599 7534 0.4460 +5599 7818 0.7900 +5599 7837 0.5960 +5599 7867 0.6480 +5599 8061 0.9480 +5599 8202 0.9650 +5599 8243 0.4120 +5599 8290 0.6870 +5599 8324 0.5770 +5599 8340 0.5250 +5599 8341 0.5260 +5599 8342 0.5260 +5599 8345 0.5260 +5599 8347 0.5270 +5599 8348 0.5270 +5599 8349 0.5700 +5599 8356 0.4020 +5599 8361 0.5600 +5599 8471 0.9060 +5599 8517 0.4260 +5599 8554 0.6500 +5599 8600 0.4460 +5599 8624 0.6690 +5599 8655 0.7770 +5599 8660 0.9360 +5599 8678 0.7690 +5599 8717 0.4440 +5599 8739 0.6330 +5599 8767 0.9320 +5599 8772 0.7090 +5599 8795 0.6720 +5599 8837 0.6050 +5599 8874 0.5000 +5599 8878 0.4250 +5599 8915 0.9260 +5599 8945 0.5880 +5599 8970 0.5260 +5599 8988 0.4310 +5599 9043 0.7810 +5599 9133 0.4750 +5599 9140 0.4460 +5599 9196 0.4380 +5599 9201 0.4360 +5599 9261 0.6540 +5599 9314 0.5340 +5599 9349 0.6620 +5599 9370 0.4180 +5599 9423 0.4530 +5599 9467 0.6460 +5599 9468 0.9060 +5599 9474 0.5490 +5599 9479 0.9990 +5599 9500 0.5520 +5599 9529 0.4210 +5599 9531 0.4420 +5599 9553 0.8190 +5599 9564 0.4700 +5599 9801 0.7870 +5599 9817 0.4340 +5599 9858 0.6570 +5599 9965 0.4570 +5599 10013 0.5130 +5599 10018 0.9480 +5599 10045 0.5160 +5599 10111 0.5060 +5599 10399 0.5160 +5599 10411 0.9190 +5599 10454 0.4250 +5599 10498 0.9150 +5599 10524 0.5590 +5599 10533 0.4670 +5599 10539 0.4170 +5599 10681 0.6560 +5599 10746 0.5040 +5599 10758 0.4770 +5599 10892 0.9210 +5599 10912 0.5370 +5599 10964 0.5120 +5599 11016 0.5200 +5599 11035 0.5230 +5599 11065 0.4350 +5599 11069 0.9190 +5599 11101 0.4030 +5599 11141 0.7710 +5599 11221 0.9930 +5599 11222 0.7770 +5599 11266 0.7600 +5599 22881 0.4470 +5599 22926 0.5140 +5599 23005 0.4820 +5599 23118 0.4340 +5599 23162 0.9800 +5599 23193 0.4680 +5599 23405 0.6210 +5599 23409 0.5250 +5599 23411 0.7270 +5599 23421 0.5110 +5599 23423 0.4520 +5599 23513 0.4010 +5599 23521 0.5180 +5599 23542 0.9710 +5599 23640 0.4770 +5599 26003 0.4180 +5599 26065 0.4300 +5599 26275 0.7910 +5599 26589 0.7910 +5599 27306 0.5600 +5599 28998 0.7910 +5599 29093 0.7860 +5599 29102 0.5820 +5599 29945 0.4080 +5599 50944 0.4340 +5599 51014 0.4460 +5599 51021 0.8010 +5599 51023 0.5610 +5599 51069 0.6170 +5599 51073 0.7840 +5599 51081 0.5790 +5599 51116 0.6630 +5599 51149 0.5170 +5599 51263 0.5890 +5599 51264 0.8060 +5599 51528 0.6310 +5599 51741 0.8460 +5599 51764 0.6540 +5599 51806 0.4030 +5599 54145 0.5260 +5599 54205 0.6010 +5599 54331 0.6730 +5599 54503 0.4550 +5599 54625 0.5930 +5599 54948 0.7840 +5599 55168 0.5670 +5599 55173 0.7990 +5599 55272 0.5280 +5599 55316 0.4790 +5599 55970 0.6790 +5599 56907 0.5170 +5599 57129 0.7720 +5599 57216 0.4430 +5599 57482 0.4240 +5599 57521 0.6770 +5599 58480 0.5380 +5599 59345 0.6500 +5599 60488 0.8030 +5599 63875 0.8160 +5599 63904 0.5030 +5599 63931 0.7910 +5599 64083 0.4130 +5599 64170 0.9210 +5599 64374 0.4420 +5599 64422 0.4010 +5599 64432 0.5460 +5599 64745 0.4050 +5599 64837 0.9180 +5599 64960 0.8110 +5599 64963 0.8330 +5599 64965 0.7910 +5599 64968 0.7950 +5599 64969 0.8470 +5599 64975 0.8350 +5599 64976 0.7870 +5599 64978 0.5140 +5599 64979 0.7930 +5599 64981 0.7960 +5599 64983 0.8010 +5599 65003 0.4520 +5599 65080 0.7950 +5599 79017 0.4340 +5599 79109 0.4160 +5599 80824 0.9980 +5599 81631 0.4160 +5599 83737 0.9580 +5599 84271 0.6020 +5599 84545 0.7900 +5599 84639 0.7690 +5599 84656 0.4340 +5599 84867 0.9070 +5599 85236 0.5270 +5599 89953 0.9170 +5599 90313 0.4630 +5599 90427 0.8590 +5599 90624 0.5150 +5599 91860 0.4050 +5599 94235 0.6570 +5599 114548 0.4030 +5599 114781 0.5180 +5599 116541 0.4720 +5599 122769 0.4650 +5599 124995 0.4540 +5599 126402 0.5520 +5599 128312 0.5250 +5599 133482 0.6470 +5599 137902 0.5880 +5599 140735 0.7540 +5599 140801 0.4350 +5599 147700 0.9160 +5599 148022 0.5320 +5599 149478 0.4780 +5599 150290 0.5300 +5599 157310 0.6850 +5599 163688 0.4040 +5599 166614 0.4420 +5599 200576 0.4370 +5599 255626 0.5250 +5599 284403 0.8730 +5599 285282 0.4880 +5599 347487 0.4600 +5599 353376 0.5070 +5599 642489 0.4370 +5599 653604 0.4050 +5599 100287482 0.4600 +5599 100302736 0.4620 +5599 100526842 0.4770 +5600 5601 0.9080 +5600 5603 0.7650 +5600 5604 0.9510 +5600 5605 0.9470 +5600 5606 0.9760 +5600 5607 0.4640 +5600 5608 0.9770 +5600 5609 0.9270 +5600 5728 0.4240 +5600 5743 0.4670 +5600 5747 0.9130 +5600 5770 0.5250 +5600 5778 0.9360 +5600 5801 0.9350 +5600 5879 0.6040 +5600 5898 0.5850 +5600 5899 0.5620 +5600 6015 0.5230 +5600 6045 0.4990 +5600 6217 0.4120 +5600 6300 0.8560 +5600 6416 0.9300 +5600 6622 0.4620 +5600 6667 0.9390 +5600 6714 0.7510 +5600 6772 0.6400 +5600 6774 0.4330 +5600 6885 0.9230 +5600 6925 0.5220 +5600 6929 0.5430 +5600 6938 0.5080 +5600 7040 0.4310 +5600 7057 0.4380 +5600 7097 0.5150 +5600 7099 0.4690 +5600 7124 0.6040 +5600 7157 0.9600 +5600 7177 0.4300 +5600 7189 0.4460 +5600 7297 0.4820 +5600 7335 0.4200 +5600 7535 0.9510 +5600 7837 0.4070 +5600 7867 0.9940 +5600 8061 0.8050 +5600 8202 0.9060 +5600 8331 0.4990 +5600 8334 0.4990 +5600 8337 0.5190 +5600 8338 0.5130 +5600 8340 0.5210 +5600 8341 0.5270 +5600 8342 0.5200 +5600 8345 0.5200 +5600 8347 0.5290 +5600 8348 0.5200 +5600 8349 0.5340 +5600 8356 0.6310 +5600 8361 0.5610 +5600 8440 0.5290 +5600 8493 0.6200 +5600 8535 0.5220 +5600 8550 0.9530 +5600 8570 0.8100 +5600 8767 0.6350 +5600 8831 0.4710 +5600 8841 0.4050 +5600 8878 0.5020 +5600 8915 0.9110 +5600 8970 0.5190 +5600 8986 0.9330 +5600 8988 0.5990 +5600 9043 0.5950 +5600 9252 0.9420 +5600 9261 0.9970 +5600 10000 0.9250 +5600 10392 0.5730 +5600 10399 0.4080 +5600 10411 0.9220 +5600 10454 0.8990 +5600 10467 0.4120 +5600 10498 0.9140 +5600 10527 0.4320 +5600 10681 0.7370 +5600 10891 0.9280 +5600 10892 0.9150 +5600 11016 0.4360 +5600 11069 0.9150 +5600 11221 0.9080 +5600 11266 0.4490 +5600 11315 0.4260 +5600 22955 0.5110 +5600 23112 0.5200 +5600 23118 0.6140 +5600 23466 0.5130 +5600 23479 0.4600 +5600 23542 0.4480 +5600 23621 0.5010 +5600 23654 0.6570 +5600 26523 0.5080 +5600 27006 0.5010 +5600 27327 0.4990 +5600 27347 0.5870 +5600 50937 0.5170 +5600 51764 0.6680 +5600 51806 0.4340 +5600 54145 0.5210 +5600 54205 0.4330 +5600 54331 0.6640 +5600 55578 0.4680 +5600 55766 0.4990 +5600 55970 0.6610 +5600 56731 0.4760 +5600 57332 0.5330 +5600 59345 0.7370 +5600 64127 0.5740 +5600 64170 0.9430 +5600 80012 0.5080 +5600 80824 0.8820 +5600 84733 0.5020 +5600 84867 0.9210 +5600 85236 0.5190 +5600 91653 0.5160 +5600 91860 0.4010 +5600 93649 0.5430 +5600 94235 0.6610 +5600 94239 0.4990 +5600 120892 0.4520 +5600 128312 0.5210 +5600 137902 0.4120 +5600 151742 0.5260 +5600 163688 0.4200 +5600 192669 0.5080 +5600 192670 0.5080 +5600 255626 0.5210 +5600 257397 0.6690 +5600 474382 0.4990 +5600 653361 0.7640 +5600 653604 0.6300 +5600 100271849 0.8130 +5601 5603 0.9410 +5601 5604 0.9310 +5601 5605 0.9240 +5601 5606 0.9400 +5601 5608 0.9300 +5601 5609 0.9760 +5601 5663 0.4010 +5601 5728 0.4340 +5601 5778 0.9060 +5601 5801 0.9030 +5601 5880 0.9280 +5601 5881 0.9160 +5601 5898 0.9250 +5601 5899 0.9170 +5601 5900 0.9030 +5601 5906 0.9220 +5601 5908 0.9150 +5601 5970 0.9540 +5601 6122 0.4820 +5601 6123 0.4820 +5601 6124 0.4570 +5601 6132 0.5030 +5601 6133 0.5000 +5601 6135 0.7630 +5601 6139 0.4780 +5601 6150 0.8100 +5601 6182 0.4510 +5601 6183 0.8400 +5601 6187 0.6070 +5601 6193 0.5530 +5601 6203 0.6610 +5601 6205 0.6750 +5601 6207 0.5170 +5601 6208 0.5210 +5601 6217 0.4580 +5601 6222 0.6350 +5601 6224 0.5420 +5601 6228 0.5890 +5601 6235 0.4790 +5601 6300 0.9090 +5601 6416 0.9990 +5601 6470 0.5370 +5601 6648 0.6440 +5601 6667 0.9090 +5601 6714 0.9540 +5601 6774 0.5760 +5601 6775 0.4420 +5601 6790 0.4740 +5601 6850 0.5300 +5601 6885 0.9530 +5601 7088 0.4180 +5601 7099 0.4070 +5601 7124 0.6520 +5601 7157 0.9820 +5601 7186 0.7130 +5601 7189 0.9340 +5601 7343 0.5000 +5601 7409 0.4980 +5601 7484 0.4620 +5601 7529 0.4100 +5601 7818 0.7930 +5601 7837 0.4070 +5601 7867 0.6050 +5601 8061 0.9380 +5601 8202 0.9460 +5601 8471 0.9050 +5601 8550 0.5100 +5601 8624 0.5800 +5601 8660 0.9220 +5601 8767 0.9280 +5601 8878 0.5140 +5601 8915 0.9640 +5601 8945 0.4240 +5601 9043 0.6130 +5601 9133 0.4230 +5601 9261 0.6390 +5601 9349 0.6600 +5601 9423 0.4910 +5601 9467 0.4040 +5601 9468 0.9060 +5601 9479 0.9930 +5601 9553 0.8160 +5601 9693 0.4080 +5601 9801 0.7850 +5601 9858 0.6580 +5601 9927 0.4020 +5601 10018 0.6540 +5601 10411 0.9070 +5601 10494 0.4760 +5601 10498 0.9100 +5601 10681 0.6560 +5601 10892 0.9220 +5601 10898 0.4160 +5601 10964 0.5120 +5601 11016 0.6200 +5601 11065 0.4090 +5601 11069 0.9050 +5601 11072 0.4960 +5601 11201 0.5230 +5601 11221 0.9790 +5601 11222 0.7790 +5601 11266 0.4230 +5601 23005 0.5340 +5601 23162 0.9780 +5601 23193 0.4460 +5601 23204 0.4050 +5601 23236 0.4520 +5601 23405 0.5610 +5601 23423 0.4520 +5601 23513 0.5230 +5601 23521 0.5060 +5601 23542 0.9720 +5601 23640 0.4520 +5601 26275 0.7910 +5601 26589 0.7900 +5601 28998 0.7840 +5601 29093 0.7850 +5601 29102 0.5530 +5601 51014 0.4650 +5601 51021 0.8000 +5601 51023 0.5610 +5601 51069 0.5810 +5601 51073 0.7800 +5601 51081 0.5580 +5601 51116 0.6600 +5601 51149 0.5170 +5601 51263 0.5920 +5601 51264 0.8050 +5601 51764 0.6610 +5601 54205 0.5770 +5601 54331 0.6560 +5601 54700 0.6740 +5601 54948 0.7820 +5601 55168 0.5620 +5601 55173 0.7960 +5601 55272 0.5260 +5601 55316 0.4890 +5601 55794 0.4190 +5601 55970 0.6630 +5601 57129 0.7700 +5601 57630 0.9390 +5601 59345 0.6500 +5601 60488 0.8070 +5601 63875 0.8140 +5601 63931 0.7890 +5601 64170 0.9090 +5601 64374 0.4550 +5601 64432 0.5450 +5601 64745 0.4050 +5601 64837 0.9080 +5601 64960 0.8090 +5601 64963 0.8320 +5601 64965 0.7900 +5601 64968 0.7950 +5601 64969 0.8470 +5601 64975 0.8280 +5601 64976 0.7850 +5601 64978 0.5100 +5601 64979 0.7930 +5601 64981 0.7920 +5601 64983 0.7980 +5601 65003 0.4520 +5601 65080 0.7930 +5601 80824 0.9850 +5601 81532 0.4070 +5601 83641 0.5200 +5601 83737 0.9400 +5601 84271 0.7260 +5601 84545 0.7890 +5601 84708 0.4940 +5601 84867 0.9020 +5601 89953 0.9090 +5601 90313 0.4630 +5601 90624 0.5150 +5601 91608 0.4960 +5601 94235 0.6540 +5601 114781 0.5120 +5601 116541 0.4650 +5601 122953 0.4760 +5601 124995 0.4690 +5601 126402 0.5520 +5601 140801 0.4310 +5601 142679 0.7230 +5601 147700 0.9070 +5601 148022 0.4650 +5601 149478 0.4780 +5601 157310 0.5100 +5601 284403 0.8170 +5601 333926 0.4540 +5601 343070 0.4180 +5601 347487 0.6180 +5601 353376 0.4600 +5601 653361 0.4070 +5601 100287482 0.4600 +5601 100302736 0.4610 +5601 100526842 0.4770 +5603 5604 0.9540 +5603 5605 0.9470 +5603 5606 0.9690 +5603 5607 0.4940 +5603 5608 0.9710 +5603 5609 0.9240 +5603 5728 0.4130 +5603 5743 0.4540 +5603 5747 0.9140 +5603 5770 0.5280 +5603 5778 0.9320 +5603 5801 0.9370 +5603 5879 0.6230 +5603 5880 0.5610 +5603 5898 0.5940 +5603 5899 0.5690 +5603 6195 0.4810 +5603 6217 0.4120 +5603 6300 0.9150 +5603 6416 0.9280 +5603 6513 0.4430 +5603 6667 0.9150 +5603 6714 0.7420 +5603 6774 0.5580 +5603 6885 0.9220 +5603 7040 0.4010 +5603 7099 0.4580 +5603 7124 0.5980 +5603 7157 0.9430 +5603 7177 0.4420 +5603 7189 0.4290 +5603 7297 0.4680 +5603 7372 0.4070 +5603 7535 0.9190 +5603 7867 0.9810 +5603 8061 0.8440 +5603 8202 0.9110 +5603 8440 0.5090 +5603 8493 0.4880 +5603 8550 0.9450 +5603 8767 0.6920 +5603 8772 0.4010 +5603 8831 0.4740 +5603 8878 0.6320 +5603 8915 0.9160 +5603 8986 0.9170 +5603 8988 0.5890 +5603 9252 0.9280 +5603 9261 0.9750 +5603 9586 0.4130 +5603 10000 0.9260 +5603 10392 0.5590 +5603 10411 0.9100 +5603 10454 0.8250 +5603 10498 0.9110 +5603 10681 0.7370 +5603 10746 0.4280 +5603 10891 0.9240 +5603 10892 0.9150 +5603 11069 0.9120 +5603 11221 0.8830 +5603 11266 0.4450 +5603 23118 0.6050 +5603 23479 0.4910 +5603 23542 0.8710 +5603 23621 0.4950 +5603 26227 0.4440 +5603 27347 0.5940 +5603 51655 0.4410 +5603 51764 0.6520 +5603 51806 0.4360 +5603 54205 0.4250 +5603 54331 0.6720 +5603 54541 0.4120 +5603 55450 0.4360 +5603 55578 0.4710 +5603 55970 0.6610 +5603 56731 0.4830 +5603 59345 0.7370 +5603 64127 0.5850 +5603 64170 0.9130 +5603 80824 0.8860 +5603 84867 0.9180 +5603 91860 0.4070 +5603 92241 0.6480 +5603 93649 0.4160 +5603 94235 0.6520 +5603 140767 0.4950 +5603 163688 0.4060 +5603 257397 0.5690 +5603 653361 0.7580 +5603 728378 0.4950 +5603 100271849 0.6510 +5604 5605 0.9960 +5604 5728 0.7920 +5604 5743 0.4510 +5604 5778 0.5760 +5604 5781 0.9280 +5604 5783 0.5180 +5604 5801 0.6430 +5604 5829 0.4540 +5604 5877 0.4410 +5604 5879 0.5020 +5604 5880 0.4700 +5604 5894 0.9990 +5604 5898 0.4890 +5604 5899 0.4010 +5604 5900 0.4720 +5604 5906 0.7190 +5604 5908 0.6700 +5604 5921 0.5230 +5604 5922 0.4710 +5604 5925 0.5180 +5604 6009 0.4730 +5604 6194 0.5170 +5604 6233 0.5610 +5604 6237 0.5140 +5604 6300 0.9540 +5604 6416 0.8260 +5604 6446 0.5470 +5604 6464 0.5760 +5604 6615 0.4100 +5604 6654 0.8270 +5604 6655 0.6510 +5604 6714 0.7940 +5604 6737 0.4020 +5604 6772 0.4770 +5604 6774 0.6690 +5604 6776 0.6390 +5604 6777 0.4690 +5604 6790 0.4710 +5604 6794 0.4850 +5604 6885 0.9280 +5604 7015 0.4160 +5604 7039 0.4090 +5604 7040 0.4870 +5604 7094 0.6400 +5604 7097 0.4380 +5604 7099 0.4670 +5604 7124 0.7020 +5604 7157 0.6670 +5604 7187 0.5390 +5604 7249 0.4780 +5604 7297 0.7100 +5604 7311 0.4990 +5604 7314 0.5300 +5604 7316 0.5510 +5604 7329 0.4230 +5604 7409 0.4970 +5604 7414 0.7200 +5604 7444 0.5720 +5604 7450 0.5920 +5604 7525 0.5280 +5604 7529 0.9310 +5604 7531 0.8360 +5604 7532 0.7550 +5604 7533 0.7350 +5604 7534 0.8400 +5604 7707 0.4320 +5604 7837 0.6170 +5604 8019 0.4580 +5604 8021 0.4490 +5604 8027 0.4480 +5604 8036 0.6550 +5604 8061 0.4700 +5604 8087 0.5280 +5604 8202 0.4110 +5604 8216 0.4080 +5604 8290 0.6400 +5604 8312 0.4210 +5604 8356 0.6510 +5604 8546 0.5190 +5604 8569 0.5270 +5604 8649 0.9980 +5604 8651 0.4410 +5604 8743 0.4340 +5604 8772 0.4420 +5604 8805 0.5710 +5604 8817 0.4270 +5604 8826 0.9820 +5604 8831 0.4080 +5604 8837 0.5230 +5604 8844 0.9960 +5604 8894 0.4230 +5604 8945 0.6240 +5604 9020 0.4340 +5604 9061 0.5220 +5604 9423 0.4400 +5604 9444 0.5560 +5604 9459 0.4170 +5604 9715 0.5540 +5604 9815 0.4370 +5604 10018 0.8210 +5604 10125 0.4350 +5604 10142 0.5820 +5604 10163 0.4060 +5604 10211 0.4820 +5604 10221 0.9670 +5604 10254 0.4060 +5604 10256 0.5990 +5604 10298 0.9280 +5604 10413 0.5450 +5604 10459 0.4260 +5604 10527 0.6160 +5604 10533 0.6150 +5604 10746 0.5370 +5604 10827 0.5100 +5604 10971 0.7880 +5604 11044 0.5440 +5604 11140 0.4560 +5604 11214 0.5210 +5604 11266 0.6000 +5604 22800 0.4500 +5604 22808 0.4540 +5604 22866 0.5530 +5604 22906 0.5130 +5604 22933 0.4450 +5604 23162 0.5720 +5604 23164 0.5410 +5604 23411 0.4160 +5604 23476 0.4230 +5604 26150 0.7840 +5604 26548 0.6520 +5604 27044 0.5540 +5604 27173 0.4420 +5604 27436 0.4380 +5604 28951 0.5920 +5604 28954 0.4070 +5604 28956 0.9000 +5604 28964 0.5840 +5604 29126 0.4550 +5604 51588 0.4110 +5604 51655 0.5040 +5604 51741 0.4960 +5604 51806 0.5130 +5604 53358 0.4490 +5604 54205 0.4540 +5604 54518 0.5220 +5604 54756 0.5530 +5604 54845 0.5340 +5604 55109 0.5180 +5604 55294 0.5240 +5604 55585 0.4420 +5604 55671 0.6950 +5604 55750 0.5470 +5604 55754 0.4640 +5604 56829 0.5010 +5604 56924 0.9230 +5604 57085 0.5010 +5604 57139 0.4280 +5604 57144 0.9170 +5604 57154 0.4710 +5604 57223 0.6250 +5604 57496 0.4060 +5604 57670 0.6360 +5604 57761 0.8010 +5604 79155 0.6300 +5604 80122 0.4780 +5604 80853 0.5090 +5604 81669 0.6100 +5604 83737 0.4030 +5604 84292 0.8130 +5604 91860 0.4900 +5604 92335 0.4040 +5604 93649 0.4640 +5604 120892 0.4360 +5604 137902 0.6090 +5604 149603 0.4430 +5604 151987 0.4850 +5604 157310 0.8040 +5604 161742 0.4590 +5604 163688 0.4900 +5604 225689 0.4560 +5604 253260 0.5420 +5604 260425 0.4170 +5604 440093 0.6470 +5604 440686 0.6410 +5604 653604 0.6450 +5605 5728 0.4660 +5605 5781 0.8430 +5605 5783 0.4620 +5605 5829 0.4100 +5605 5894 0.9960 +5605 5906 0.6410 +5605 5908 0.6380 +5605 5922 0.5100 +5605 6196 0.4780 +5605 6237 0.4860 +5605 6300 0.9490 +5605 6446 0.6630 +5605 6548 0.4320 +5605 6654 0.7920 +5605 6655 0.5350 +5605 6714 0.7160 +5605 6794 0.5430 +5605 6885 0.9220 +5605 7094 0.5960 +5605 7124 0.5130 +5605 7157 0.4260 +5605 7249 0.4020 +5605 7297 0.7110 +5605 7409 0.5000 +5605 7414 0.5890 +5605 7450 0.5200 +5605 7525 0.5200 +5605 7529 0.9430 +5605 7531 0.7040 +5605 7532 0.4970 +5605 7533 0.6160 +5605 7534 0.5550 +5605 7957 0.4930 +5605 8027 0.4050 +5605 8036 0.6890 +5605 8087 0.5040 +5605 8216 0.4490 +5605 8428 0.5260 +5605 8473 0.4960 +5605 8546 0.5120 +5605 8569 0.4610 +5605 8649 0.9140 +5605 8805 0.5100 +5605 8826 0.5770 +5605 8832 0.4040 +5605 8844 0.9770 +5605 9020 0.4250 +5605 9061 0.5200 +5605 9423 0.4390 +5605 9444 0.5280 +5605 9715 0.5140 +5605 10018 0.5770 +5605 10142 0.5190 +5605 10254 0.4120 +5605 10256 0.5920 +5605 10295 0.5180 +5605 10533 0.5500 +5605 10746 0.5750 +5605 10827 0.5040 +5605 10971 0.7130 +5605 11044 0.4990 +5605 11140 0.4710 +5605 22800 0.4200 +5605 22866 0.5400 +5605 22906 0.5010 +5605 23164 0.5040 +5605 27044 0.5620 +5605 28956 0.5220 +5605 51744 0.4880 +5605 53358 0.4340 +5605 54518 0.5080 +5605 54756 0.5150 +5605 54845 0.4990 +5605 55109 0.4990 +5605 55750 0.5500 +5605 56829 0.5040 +5605 57085 0.5210 +5605 57670 0.5100 +5605 80122 0.4860 +5605 80853 0.5050 +5605 84292 0.6530 +5605 120892 0.4340 +5605 149603 0.5780 +5605 161742 0.5180 +5605 199800 0.4810 +5605 225689 0.4100 +5605 253260 0.4180 +5605 378884 0.4220 +5606 5608 0.9890 +5606 5728 0.5640 +5606 5879 0.4110 +5606 5880 0.9220 +5606 5881 0.9010 +5606 5906 0.9100 +5606 5908 0.9130 +5606 6300 0.9690 +5606 6416 0.9130 +5606 6591 0.4290 +5606 6774 0.5370 +5606 6790 0.4750 +5606 6794 0.5710 +5606 6885 0.9380 +5606 7040 0.4780 +5606 7099 0.4510 +5606 7124 0.4970 +5606 7157 0.7110 +5606 7186 0.9200 +5606 7187 0.7370 +5606 7188 0.9180 +5606 7189 0.7040 +5606 7295 0.6750 +5606 7334 0.5120 +5606 7335 0.5120 +5606 7867 0.7620 +5606 8428 0.4670 +5606 8517 0.5460 +5606 8550 0.6360 +5606 8678 0.5540 +5606 8717 0.9240 +5606 8737 0.9190 +5606 8767 0.4750 +5606 8780 0.4850 +5606 8988 0.4770 +5606 9043 0.6740 +5606 9064 0.9310 +5606 9149 0.4700 +5606 9261 0.6910 +5606 9344 0.9870 +5606 9448 0.5650 +5606 9479 0.5300 +5606 9722 0.4380 +5606 10392 0.4750 +5606 10454 0.9780 +5606 10527 0.4430 +5606 10746 0.9470 +5606 10749 0.5340 +5606 11186 0.4710 +5606 23043 0.5350 +5606 23098 0.4010 +5606 23118 0.9440 +5606 23162 0.4850 +5606 23476 0.4550 +5606 23542 0.9280 +5606 25979 0.4060 +5606 29888 0.5410 +5606 29966 0.5130 +5606 50488 0.5280 +5606 50507 0.4190 +5606 51347 0.9080 +5606 51776 0.9410 +5606 55917 0.5190 +5606 57551 0.9290 +5606 64127 0.4880 +5606 83605 0.9750 +5606 84105 0.4450 +5606 85369 0.4650 +5606 93649 0.4440 +5606 114907 0.4560 +5606 120892 0.6520 +5606 133482 0.4570 +5606 151742 0.5830 +5606 225689 0.4900 +5606 257397 0.9360 +5606 284403 0.4640 +5606 347853 0.4610 +5607 5728 0.4580 +5607 5789 0.5830 +5607 5894 0.6820 +5607 6300 0.5110 +5607 6714 0.5420 +5607 7531 0.4850 +5607 8027 0.4130 +5607 8801 0.6780 +5607 8844 0.5050 +5607 8878 0.7340 +5607 9020 0.4320 +5607 9472 0.6150 +5607 9618 0.6450 +5607 10254 0.4010 +5607 10365 0.6840 +5607 10746 0.9990 +5607 11140 0.6520 +5607 11165 0.4750 +5607 23017 0.4450 +5607 23243 0.6120 +5607 23765 0.5090 +5607 23788 0.4180 +5607 25970 0.4690 +5607 27324 0.5010 +5607 50855 0.4120 +5607 51277 0.5710 +5607 51704 0.4180 +5607 54814 0.5160 +5607 54958 0.4910 +5607 57213 0.4380 +5607 57507 0.4640 +5607 79047 0.4470 +5607 79068 0.4180 +5607 80122 0.5060 +5607 83605 0.5950 +5607 89866 0.5710 +5607 93649 0.4140 +5607 114781 0.7850 +5607 129787 0.4630 +5607 132789 0.5320 +5607 134359 0.4830 +5607 144110 0.4110 +5607 148362 0.4220 +5607 151742 0.4630 +5607 158038 0.4390 +5607 219402 0.4460 +5607 225689 0.4810 +5607 390598 0.9740 +5608 5610 0.6680 +5608 5880 0.9140 +5608 5881 0.9010 +5608 5906 0.9110 +5608 5908 0.9050 +5608 5970 0.4990 +5608 6300 0.9800 +5608 6416 0.9350 +5608 6885 0.9960 +5608 7098 0.4780 +5608 7157 0.4180 +5608 7186 0.9160 +5608 7188 0.9170 +5608 7189 0.8440 +5608 7295 0.5990 +5608 7334 0.5500 +5608 7335 0.5450 +5608 7581 0.4430 +5608 7867 0.6270 +5608 8396 0.4170 +5608 8517 0.6210 +5608 8550 0.6020 +5608 8717 0.9150 +5608 8737 0.9170 +5608 8767 0.5420 +5608 8831 0.4260 +5608 8988 0.4040 +5608 9043 0.7230 +5608 9064 0.9200 +5608 9261 0.9500 +5608 9344 0.9730 +5608 9448 0.5550 +5608 9479 0.5850 +5608 10349 0.6430 +5608 10392 0.5320 +5608 10454 0.9500 +5608 10746 0.9270 +5608 10912 0.4180 +5608 23043 0.5260 +5608 23118 0.9410 +5608 23460 0.5940 +5608 23461 0.6000 +5608 50488 0.5140 +5608 50937 0.4080 +5608 51347 0.9060 +5608 57167 0.4220 +5608 57551 0.9230 +5608 64127 0.5560 +5608 64170 0.5010 +5608 79758 0.4230 +5608 79791 0.4100 +5608 79837 0.4100 +5608 79923 0.4570 +5608 84656 0.6480 +5608 84678 0.4630 +5608 91653 0.4090 +5608 120892 0.7030 +5608 133482 0.5470 +5608 148979 0.5040 +5608 151742 0.5630 +5608 225689 0.4830 +5608 257397 0.9310 +5608 347853 0.4610 +5608 100271849 0.4410 +5609 5880 0.9200 +5609 5881 0.9110 +5609 5970 0.4960 +5609 6093 0.4830 +5609 6197 0.4230 +5609 6300 0.9340 +5609 6416 0.9560 +5609 6794 0.4930 +5609 6885 0.9870 +5609 7124 0.5330 +5609 7185 0.4950 +5609 7186 0.9240 +5609 7188 0.9190 +5609 7189 0.5930 +5609 7334 0.5030 +5609 7335 0.4680 +5609 7444 0.6330 +5609 7581 0.4320 +5609 7786 0.9460 +5609 8517 0.5810 +5609 8717 0.9180 +5609 8737 0.9200 +5609 8743 0.4610 +5609 8767 0.4890 +5609 8837 0.7040 +5609 8915 0.8020 +5609 9043 0.6490 +5609 9175 0.9790 +5609 9479 0.9990 +5609 9757 0.7870 +5609 10013 0.5190 +5609 10256 0.6260 +5609 10392 0.4370 +5609 10399 0.6340 +5609 10454 0.9430 +5609 10498 0.4460 +5609 10746 0.6640 +5609 11221 0.5250 +5609 23118 0.9580 +5609 23162 0.9940 +5609 23341 0.4250 +5609 23542 0.9970 +5609 25970 0.5350 +5609 26150 0.4930 +5609 51776 0.9530 +5609 57761 0.5870 +5609 64127 0.4390 +5609 80824 0.5780 +5609 80895 0.5000 +5609 81532 0.4620 +5609 84168 0.4760 +5609 84433 0.4910 +5609 84962 0.4290 +5609 120892 0.5520 +5609 142679 0.9480 +5609 200576 0.4900 +5609 257397 0.9500 +5609 261726 0.8210 +5609 284403 0.8140 +5609 344558 0.4310 +5609 641372 0.4070 +5610 5611 0.9950 +5610 5612 0.7280 +5610 5698 0.4010 +5610 5728 0.5010 +5610 5877 0.4230 +5610 5970 0.4340 +5610 6041 0.9110 +5610 6093 0.4420 +5610 6122 0.4350 +5610 6125 0.4620 +5610 6128 0.4880 +5610 6129 0.4030 +5610 6132 0.4910 +5610 6139 0.4190 +5610 6141 0.4080 +5610 6144 0.5060 +5610 6146 0.6040 +5610 6147 0.4460 +5610 6175 0.4870 +5610 6176 0.4110 +5610 6187 0.4860 +5610 6189 0.5120 +5610 6193 0.4420 +5610 6194 0.5260 +5610 6195 0.4890 +5610 6196 0.4680 +5610 6197 0.4900 +5610 6201 0.4360 +5610 6204 0.4320 +5610 6205 0.4930 +5610 6207 0.4060 +5610 6208 0.4320 +5610 6210 0.4990 +5610 6222 0.4320 +5610 6223 0.4660 +5610 6229 0.5140 +5610 6230 0.4780 +5610 6232 0.4200 +5610 6235 0.4150 +5610 6347 0.4840 +5610 6672 0.4780 +5610 6732 0.4070 +5610 6737 0.6000 +5610 6772 0.9800 +5610 6773 0.8800 +5610 6774 0.8790 +5610 6780 0.6130 +5610 6895 0.8440 +5610 7019 0.4030 +5610 7072 0.6210 +5610 7073 0.4600 +5610 7097 0.5180 +5610 7098 0.7720 +5610 7099 0.5910 +5610 7124 0.7960 +5610 7156 0.4700 +5610 7157 0.7750 +5610 7178 0.5090 +5610 7184 0.6160 +5610 7186 0.7620 +5610 7187 0.6540 +5610 7188 0.7830 +5610 7189 0.9690 +5610 7297 0.4800 +5610 7318 0.4050 +5610 7324 0.4750 +5610 7329 0.4170 +5610 7341 0.4340 +5610 7405 0.4900 +5610 7494 0.8430 +5610 7555 0.4140 +5610 7706 0.8660 +5610 7837 0.4610 +5610 8061 0.4700 +5610 8471 0.9060 +5610 8517 0.9330 +5610 8519 0.7110 +5610 8575 0.9890 +5610 8638 0.7730 +5610 8651 0.6410 +5610 8660 0.9220 +5610 8662 0.6190 +5610 8678 0.5250 +5610 8717 0.5130 +5610 8720 0.4120 +5610 8737 0.9740 +5610 8743 0.5270 +5610 8772 0.9440 +5610 8814 0.4380 +5610 8837 0.4090 +5610 8893 0.4900 +5610 8894 0.4940 +5610 9021 0.4130 +5610 9140 0.4140 +5610 9246 0.6870 +5610 9349 0.4380 +5610 9447 0.8870 +5610 9474 0.6490 +5610 9636 0.9910 +5610 9695 0.4720 +5610 9711 0.4360 +5610 9775 0.5850 +5610 9908 0.6140 +5610 9939 0.8230 +5610 10044 0.4380 +5610 10045 0.4830 +5610 10146 0.8980 +5610 10150 0.5120 +5610 10155 0.4290 +5610 10346 0.7370 +5610 10379 0.7690 +5610 10399 0.4050 +5610 10410 0.8390 +5610 10454 0.4090 +5610 10480 0.5320 +5610 10533 0.4190 +5610 10561 0.9510 +5610 10581 0.5280 +5610 10898 0.4540 +5610 10964 0.9270 +5610 11009 0.5340 +5610 11035 0.5450 +5610 11224 0.4070 +5610 11274 0.8750 +5610 22803 0.4960 +5610 22861 0.8750 +5610 22863 0.4850 +5610 22907 0.5560 +5610 22926 0.9110 +5610 23076 0.4560 +5610 23118 0.7640 +5610 23405 0.9230 +5610 23476 0.5650 +5610 23521 0.4350 +5610 23567 0.8890 +5610 23586 0.9910 +5610 23645 0.6970 +5610 24138 0.8550 +5610 25820 0.4620 +5610 26986 0.5520 +5610 27067 0.6750 +5610 27102 0.4710 +5610 27161 0.5930 +5610 29102 0.4970 +5610 30001 0.5010 +5610 30835 0.5100 +5610 30849 0.4460 +5610 51191 0.9170 +5610 51284 0.7440 +5610 51311 0.5830 +5610 54106 0.6980 +5610 54205 0.4690 +5610 54464 0.4280 +5610 54625 0.6720 +5610 54739 0.8970 +5610 54809 0.5840 +5610 54920 0.4590 +5610 55008 0.8020 +5610 55120 0.4050 +5610 55337 0.4340 +5610 55342 0.8050 +5610 55601 0.7010 +5610 55796 0.5120 +5610 56829 0.5790 +5610 56832 0.4160 +5610 57169 0.5910 +5610 57506 0.9200 +5610 57510 0.4360 +5610 57674 0.4170 +5610 58484 0.8760 +5610 60489 0.4030 +5610 60675 0.5890 +5610 64108 0.5290 +5610 64127 0.6200 +5610 64135 0.9620 +5610 64761 0.6680 +5610 79132 0.8700 +5610 81030 0.5120 +5610 81629 0.4770 +5610 81631 0.4030 +5610 83666 0.7740 +5610 83939 0.8150 +5610 84282 0.4320 +5610 84432 0.5470 +5610 85363 0.7000 +5610 85441 0.7830 +5610 85477 0.5180 +5610 87178 0.5070 +5610 90865 0.4410 +5610 91543 0.9530 +5610 94240 0.6140 +5610 114548 0.8960 +5610 114907 0.4410 +5610 115004 0.5600 +5610 115098 0.5560 +5610 129607 0.7450 +5610 137902 0.4610 +5610 148327 0.5140 +5610 163702 0.4560 +5610 165631 0.4490 +5610 170506 0.4210 +5610 219285 0.6240 +5610 282616 0.4570 +5610 282617 0.4760 +5610 282618 0.7050 +5610 374354 0.4600 +5610 439996 0.9420 +5610 440275 0.4460 +5611 5612 0.9070 +5611 5920 0.4200 +5611 6203 0.5160 +5611 6222 0.5120 +5611 6400 0.6110 +5611 6648 0.4320 +5611 6745 0.4560 +5611 6782 0.5040 +5611 7099 0.4160 +5611 7184 0.9270 +5611 7248 0.4130 +5611 7266 0.5540 +5611 7466 0.4540 +5611 7494 0.9510 +5611 7841 0.4090 +5611 8575 0.6160 +5611 8720 0.4780 +5611 9451 0.7250 +5611 9528 0.4610 +5611 9601 0.8120 +5611 9695 0.8220 +5611 9709 0.6670 +5611 9829 0.4650 +5611 10049 0.4970 +5611 10130 0.9440 +5611 10131 0.4010 +5611 10294 0.5660 +5611 10330 0.4720 +5611 10525 0.9280 +5611 10549 0.4060 +5611 10595 0.6200 +5611 10808 0.7290 +5611 10954 0.5100 +5611 10956 0.5620 +5611 10961 0.5740 +5611 11145 0.4200 +5611 11231 0.7500 +5611 22824 0.5550 +5611 22826 0.4450 +5611 22926 0.7680 +5611 23071 0.6280 +5611 23193 0.4830 +5611 23341 0.4940 +5611 23645 0.4950 +5611 23753 0.5680 +5611 25789 0.4200 +5611 25822 0.5360 +5611 27230 0.5200 +5611 27248 0.5170 +5611 29927 0.7620 +5611 30001 0.7190 +5611 51009 0.5390 +5611 51124 0.4790 +5611 51182 0.6570 +5611 51303 0.4220 +5611 51314 0.4870 +5611 51360 0.4980 +5611 51726 0.8310 +5611 54431 0.6380 +5611 54757 0.4010 +5611 54788 0.5970 +5611 54979 0.4210 +5611 55466 0.5550 +5611 55741 0.4700 +5611 55757 0.6110 +5611 56605 0.6460 +5611 56851 0.4250 +5611 56886 0.6190 +5611 56975 0.4990 +5611 57110 0.4200 +5611 60559 0.4660 +5611 64215 0.6620 +5611 64221 0.4890 +5611 64374 0.8090 +5611 79139 0.5700 +5611 79174 0.4790 +5611 79583 0.4330 +5611 80146 0.4310 +5611 80267 0.6040 +5611 80273 0.7330 +5611 81567 0.5680 +5611 81570 0.5020 +5611 84061 0.4320 +5611 84699 0.4170 +5611 84919 0.4150 +5611 91319 0.5360 +5611 116835 0.4970 +5611 118461 0.4200 +5611 124637 0.4920 +5611 134266 0.4520 +5611 201595 0.4130 +5611 203100 0.4170 +5611 259217 0.5250 +5611 285126 0.5390 +5611 339416 0.4750 +5611 388633 0.4200 +5611 440275 0.4810 +5612 6240 0.4460 +5612 6789 0.4050 +5612 6867 0.4890 +5612 8545 0.4750 +5612 8772 0.4200 +5612 23586 0.4790 +5612 51078 0.9050 +5612 55145 0.8950 +5612 56906 0.5930 +5612 57215 0.9050 +5612 64763 0.5920 +5612 79725 0.6110 +5612 80764 0.9120 +5612 89884 0.4240 +5612 90326 0.8820 +5612 146206 0.4040 +5612 152815 0.4800 +5612 168451 0.6480 +5612 199745 0.5850 +5612 389761 0.4330 +5612 389762 0.4770 +5612 552889 0.4160 +5612 728340 0.4050 +5612 112267897 0.4450 +5613 6191 0.5650 +5613 6473 0.4180 +5613 6736 0.5360 +5613 7258 0.6770 +5613 7403 0.4030 +5613 7543 0.6680 +5613 8226 0.5050 +5613 8228 0.4980 +5613 8239 0.5210 +5613 8242 0.5130 +5613 8623 0.4380 +5613 8852 0.5540 +5613 8908 0.6580 +5613 9968 0.5120 +5613 10908 0.4300 +5613 11151 0.4130 +5613 11181 0.4500 +5613 25878 0.4050 +5613 27328 0.5740 +5613 51481 0.7760 +5613 55344 0.4700 +5613 55787 0.5720 +5613 57502 0.6190 +5613 58505 0.8410 +5613 83259 0.7560 +5613 90665 0.6070 +5613 140894 0.4350 +5613 147138 0.4110 +5613 158798 0.5540 +5613 207063 0.4010 +5613 246175 0.4130 +5613 375775 0.4300 +5617 5618 0.9990 +5617 5626 0.8700 +5617 5729 0.4030 +5617 5737 0.4500 +5617 5741 0.6730 +5617 5744 0.4470 +5617 5781 0.6260 +5617 5972 0.5870 +5617 6283 0.6340 +5617 6288 0.5900 +5617 6356 0.5330 +5617 6401 0.5190 +5617 6406 0.4670 +5617 6462 0.8220 +5617 6500 0.5100 +5617 6565 0.4070 +5617 6622 0.4980 +5617 6696 0.8580 +5617 6714 0.4320 +5617 6750 0.7250 +5617 6752 0.4940 +5617 6755 0.4970 +5617 6772 0.6960 +5617 6774 0.7560 +5617 6776 0.9050 +5617 6777 0.9070 +5617 6855 0.5470 +5617 6863 0.7200 +5617 7038 0.5140 +5617 7040 0.4080 +5617 7044 0.4510 +5617 7045 0.4190 +5617 7054 0.5520 +5617 7066 0.9340 +5617 7079 0.5130 +5617 7123 0.4130 +5617 7124 0.5260 +5617 7157 0.4470 +5617 7166 0.5440 +5617 7173 0.4470 +5617 7200 0.9510 +5617 7201 0.6810 +5617 7252 0.9180 +5617 7253 0.4080 +5617 7276 0.7390 +5617 7297 0.5630 +5617 7432 0.6120 +5617 7433 0.5750 +5617 7450 0.4730 +5617 7837 0.4620 +5617 8022 0.7100 +5617 8454 0.5250 +5617 8660 0.6420 +5617 8820 0.6490 +5617 8835 0.6120 +5617 8945 0.5430 +5617 9049 0.5060 +5617 9095 0.6120 +5617 9180 0.6690 +5617 9248 0.4970 +5617 9370 0.5070 +5617 9445 0.4160 +5617 9466 0.6810 +5617 9978 0.5050 +5617 10113 0.6120 +5617 10800 0.4370 +5617 23001 0.4240 +5617 23480 0.8000 +5617 25970 0.5890 +5617 29927 0.9440 +5617 50615 0.6500 +5617 51052 0.7490 +5617 51083 0.5210 +5617 51738 0.6150 +5617 53832 0.6500 +5617 53833 0.6650 +5617 54361 0.5050 +5617 54959 0.4560 +5617 58985 0.6510 +5617 64111 0.4440 +5617 79154 0.4110 +5617 80712 0.4340 +5617 81033 0.5610 +5617 84432 0.4240 +5617 84634 0.4110 +5617 89884 0.6710 +5617 90134 0.6130 +5617 116379 0.6500 +5617 122876 0.4400 +5617 137902 0.4630 +5617 149233 0.6580 +5617 163702 0.6500 +5617 170589 0.4600 +5617 246744 0.5800 +5617 257202 0.4240 +5617 388512 0.4320 +5617 493869 0.4160 +5618 5781 0.6930 +5618 5950 0.4550 +5618 6500 0.5150 +5618 6772 0.7250 +5618 6773 0.4250 +5618 6774 0.6790 +5618 6776 0.9360 +5618 6777 0.9510 +5618 7066 0.7060 +5618 7200 0.4350 +5618 7297 0.7130 +5618 7409 0.5670 +5618 8454 0.5130 +5618 8651 0.6680 +5618 8660 0.5770 +5618 8835 0.7140 +5618 8945 0.6890 +5618 9021 0.4610 +5618 9075 0.4250 +5618 9978 0.5050 +5618 11009 0.6500 +5618 25970 0.4990 +5618 29949 0.6500 +5618 50604 0.6520 +5618 50616 0.6550 +5618 51083 0.4950 +5618 51478 0.6310 +5618 51561 0.6500 +5618 53342 0.6500 +5618 54760 0.4200 +5618 56832 0.6500 +5618 59067 0.6500 +5618 63826 0.6870 +5618 79925 0.5890 +5618 85480 0.6500 +5618 282616 0.6500 +5618 282617 0.6500 +5618 282618 0.6500 +5618 338376 0.6550 +5619 5620 0.9870 +5619 6732 0.4060 +5619 7023 0.7100 +5619 7141 0.9610 +5619 7142 0.9540 +5619 8852 0.4010 +5619 26471 0.8690 +5619 50511 0.4730 +5619 51087 0.4230 +5619 54752 0.4210 +5619 55342 0.5630 +5619 55818 0.8660 +5619 58531 0.5480 +5619 317719 0.8490 +5619 341567 0.4160 +5619 346673 0.4330 +5620 6406 0.6230 +5620 6407 0.5140 +5620 6677 0.4880 +5620 6847 0.5130 +5620 7047 0.6030 +5620 7141 0.9660 +5620 7142 0.9830 +5620 7180 0.5550 +5620 7247 0.4320 +5620 7441 0.5530 +5620 7455 0.5200 +5620 7704 0.4010 +5620 8342 0.4350 +5620 8345 0.4280 +5620 8348 0.4280 +5620 8651 0.4840 +5620 8852 0.6480 +5620 9271 0.4070 +5620 9633 0.4270 +5620 10566 0.4440 +5620 11055 0.4180 +5620 26038 0.4330 +5620 26330 0.4260 +5620 26471 0.4340 +5620 29118 0.5140 +5620 50511 0.6170 +5620 51087 0.4800 +5620 51686 0.5070 +5620 54145 0.4010 +5620 54514 0.4200 +5620 55124 0.4310 +5620 55818 0.6950 +5620 58531 0.8370 +5620 66037 0.4890 +5620 83893 0.4030 +5620 83983 0.5710 +5620 93661 0.4550 +5620 113802 0.4060 +5620 124912 0.5140 +5620 130560 0.5450 +5620 132141 0.4120 +5620 140823 0.4230 +5620 149018 0.4050 +5620 157695 0.5590 +5620 255626 0.4470 +5620 317719 0.8590 +5620 341567 0.6620 +5620 346673 0.5450 +5620 374768 0.6740 +5620 389493 0.4130 +5620 402381 0.4440 +5620 440689 0.4280 +5621 5663 0.8220 +5621 5664 0.7710 +5621 5682 0.6740 +5621 5683 0.6620 +5621 5684 0.7150 +5621 5685 0.6780 +5621 5686 0.6750 +5621 5687 0.6940 +5621 5688 0.6730 +5621 5689 0.6760 +5621 5690 0.6620 +5621 5691 0.6640 +5621 5692 0.6670 +5621 5693 0.7580 +5621 5694 0.6540 +5621 5695 0.6800 +5621 5700 0.6790 +5621 5701 0.6740 +5621 5702 0.6580 +5621 5704 0.6670 +5621 5705 0.6590 +5621 5706 0.6590 +5621 5707 0.6560 +5621 5708 0.7500 +5621 5709 0.6500 +5621 5710 0.6800 +5621 5713 0.6890 +5621 5714 0.6570 +5621 5715 0.6590 +5621 5717 0.6650 +5621 5718 0.6760 +5621 5818 0.5170 +5621 6326 0.5010 +5621 6449 0.6060 +5621 6620 0.5750 +5621 6622 0.9840 +5621 6647 0.7400 +5621 6653 0.4300 +5621 6844 0.5970 +5621 6853 0.5590 +5621 6855 0.5880 +5621 6908 0.5160 +5621 7070 0.4650 +5621 7124 0.6440 +5621 7276 0.8210 +5621 7314 0.4740 +5621 7405 0.4400 +5621 7415 0.4610 +5621 7448 0.4850 +5621 7837 0.4540 +5621 7917 0.5300 +5621 8266 0.5720 +5621 8290 0.4750 +5621 8356 0.4810 +5621 8404 0.4970 +5621 8678 0.5190 +5621 8745 0.4660 +5621 8867 0.4320 +5621 9445 0.4120 +5621 9456 0.5210 +5621 9567 0.4020 +5621 10059 0.4090 +5621 10075 0.5100 +5621 10169 0.4600 +5621 10190 0.4920 +5621 10211 0.4550 +5621 10213 0.7090 +5621 10288 0.6370 +5621 10326 0.4690 +5621 10863 0.4240 +5621 10963 0.9970 +5621 10971 0.6590 +5621 11047 0.6510 +5621 11315 0.6090 +5621 11346 0.4030 +5621 22829 0.4870 +5621 22863 0.4570 +5621 22871 0.5380 +5621 22883 0.5930 +5621 23237 0.4760 +5621 23405 0.4110 +5621 23435 0.8800 +5621 23621 0.7440 +5621 23627 0.9530 +5621 23743 0.5080 +5621 25978 0.4540 +5621 27161 0.4890 +5621 29113 0.5610 +5621 50863 0.7280 +5621 51309 0.4290 +5621 51608 0.5590 +5621 54205 0.4550 +5621 54209 0.4160 +5621 54413 0.4800 +5621 55022 0.4090 +5621 55423 0.4690 +5621 55626 0.4910 +5621 57211 0.5430 +5621 57338 0.6060 +5621 57502 0.4750 +5621 57531 0.6070 +5621 57555 0.4850 +5621 57628 0.4030 +5621 57761 0.4050 +5621 65018 0.4140 +5621 65078 0.5610 +5621 79033 0.7860 +5621 81607 0.5560 +5621 92170 0.5900 +5621 120892 0.5300 +5621 128646 0.4690 +5621 137902 0.4490 +5621 140885 0.5570 +5621 143471 0.6620 +5621 146713 0.4010 +5621 203228 0.5320 +5621 283106 0.9070 +5621 284759 0.4690 +5621 343035 0.4430 +5621 374383 0.4690 +5621 400961 0.6100 +5621 440093 0.4750 +5621 440686 0.4740 +5621 503542 0.8770 +5621 653604 0.4740 +5623 5781 0.5130 +5623 5909 0.4990 +5623 5979 0.9960 +5623 6464 0.4780 +5623 6654 0.4160 +5623 6714 0.6320 +5623 8503 0.4990 +5623 9046 0.5100 +5623 9048 0.7960 +5623 9260 0.4990 +5623 9518 0.4670 +5623 9672 0.5780 +5623 9846 0.4990 +5623 10818 0.5220 +5623 10887 0.4330 +5623 26249 0.5910 +5623 51398 0.4390 +5623 53358 0.4190 +5623 55715 0.5110 +5623 55816 0.5100 +5623 64096 0.9990 +5623 84292 0.4330 +5623 84432 0.5070 +5623 85358 0.4990 +5623 115196 0.4570 +5623 220164 0.5520 +5623 389400 0.7960 +5623 441549 0.5670 +5624 5627 0.8590 +5624 5648 0.6150 +5624 6690 0.6770 +5624 6694 0.5880 +5624 7035 0.7170 +5624 7051 0.4260 +5624 7052 0.4670 +5624 7056 0.9920 +5624 7104 0.4050 +5624 7450 0.6820 +5624 8547 0.5660 +5624 9032 0.4070 +5624 10544 0.9960 +5624 10584 0.5460 +5624 10747 0.6870 +5624 10841 0.4680 +5624 10891 0.4760 +5624 23411 0.4600 +5624 27429 0.5510 +5624 54757 0.4280 +5624 56975 0.5180 +5624 57094 0.4030 +5624 78989 0.5850 +5624 79902 0.5600 +5624 85476 0.4180 +5624 643834 0.8030 +5624 643847 0.8000 +5624 100423062 0.9140 +5625 5831 0.9760 +5625 5832 0.8690 +5625 5902 0.6110 +5625 5999 0.6000 +5625 6305 0.4130 +5625 6389 0.4460 +5625 6510 0.4030 +5625 6523 0.4570 +5625 6524 0.4470 +5625 6526 0.4330 +5625 6527 0.4330 +5625 6528 0.4330 +5625 6576 0.4900 +5625 6899 0.6860 +5625 7157 0.4180 +5625 7353 0.4500 +5625 7625 0.4220 +5625 7837 0.6070 +5625 7915 0.5850 +5625 8214 0.8910 +5625 8318 0.4530 +5625 8542 0.4240 +5625 8659 0.9990 +5625 8854 0.5700 +5625 8884 0.4330 +5625 8974 0.9150 +5625 9378 0.4160 +5625 9563 0.4170 +5625 9722 0.5710 +5625 9993 0.7670 +5625 10587 0.4900 +5625 10625 0.7170 +5625 10765 0.6110 +5625 10840 0.4100 +5625 23780 0.4700 +5625 27037 0.4830 +5625 27165 0.4580 +5625 27185 0.6060 +5625 29801 0.8290 +5625 29920 0.9670 +5625 29968 0.4670 +5625 51056 0.9120 +5625 51268 0.4690 +5625 54363 0.6370 +5625 54487 0.5670 +5625 54584 0.7950 +5625 55349 0.5220 +5625 55902 0.4480 +5625 58472 0.4510 +5625 60482 0.4330 +5625 64577 0.4090 +5625 64850 0.4020 +5625 64902 0.4970 +5625 64976 0.6630 +5625 65078 0.5690 +5625 65263 0.9690 +5625 79814 0.5060 +5625 79944 0.4650 +5625 80832 0.4470 +5625 83667 0.4830 +5625 84062 0.6460 +5625 84532 0.4550 +5625 85359 0.8880 +5625 91752 0.5860 +5625 113451 0.4110 +5625 115584 0.4330 +5625 125206 0.4350 +5625 128989 0.5620 +5625 137902 0.6070 +5625 144110 0.4440 +5625 144811 0.5070 +5625 151295 0.4590 +5625 154664 0.4140 +5625 159963 0.4330 +5625 160728 0.4330 +5625 162417 0.4970 +5625 200010 0.4330 +5625 220074 0.4340 +5625 257202 0.4290 +5625 267012 0.6280 +5625 319100 0.5200 +5625 401265 0.6820 +5625 493869 0.4360 +5626 6496 0.4060 +5626 6657 0.4550 +5626 6658 0.6740 +5626 6870 0.4320 +5626 6927 0.4540 +5626 7080 0.4900 +5626 7088 0.5230 +5626 7200 0.5700 +5626 7201 0.4820 +5626 7252 0.6590 +5626 8022 0.5560 +5626 9095 0.6660 +5626 9496 0.4620 +5626 54039 0.4100 +5626 55636 0.4240 +5626 60675 0.4180 +5626 80712 0.4300 +5626 83550 0.4410 +5626 84634 0.4410 +5626 89884 0.5330 +5626 128674 0.6350 +5627 6462 0.5080 +5627 6678 0.4250 +5627 7035 0.5220 +5627 7277 0.4040 +5627 7287 0.6620 +5627 7301 0.9990 +5627 7450 0.6250 +5627 8529 0.6110 +5627 8651 0.6890 +5627 10461 0.9990 +5627 10544 0.8540 +5627 29914 0.4410 +5627 54209 0.4510 +5627 55851 0.4050 +5627 56255 0.4520 +5627 58189 0.5320 +5627 64805 0.4650 +5627 79001 0.8640 +5627 83464 0.4260 +5627 83595 0.4370 +5627 90952 0.4790 +5627 124626 0.4200 +5627 221044 0.6450 +5627 338773 0.4120 +5629 6366 0.4490 +5629 6492 0.4140 +5629 6496 0.4380 +5629 6498 0.5010 +5629 6597 0.4670 +5629 6657 0.4980 +5629 6909 0.4220 +5629 6927 0.5730 +5629 7026 0.7430 +5629 7042 0.4790 +5629 7157 0.5390 +5629 7341 0.4050 +5629 7423 0.4510 +5629 7424 0.8210 +5629 8828 0.4800 +5629 8841 0.4250 +5629 8842 0.6520 +5629 9480 0.4090 +5629 10365 0.5040 +5629 10630 0.9130 +5629 10894 0.8260 +5629 23705 0.4060 +5629 54345 0.8670 +5629 57205 0.4080 +5629 58158 0.6290 +5629 64321 0.4520 +5629 121643 0.8080 +5629 125997 0.4180 +5629 146713 0.4140 +5629 147372 0.4940 +5629 169026 0.4180 +5629 169792 0.4480 +5629 256297 0.4760 +5629 388125 0.5130 +5629 392636 0.4620 +5630 7431 0.4570 +5630 10763 0.4780 +5631 5634 0.9850 +5631 5635 0.9870 +5631 5636 0.9830 +5631 5832 0.4620 +5631 5859 0.4310 +5631 5917 0.4780 +5631 5987 0.4120 +5631 6120 0.6000 +5631 6122 0.4890 +5631 6123 0.4490 +5631 6132 0.4230 +5631 6170 0.4350 +5631 6175 0.4710 +5631 6188 0.5010 +5631 6191 0.6430 +5631 6192 0.4480 +5631 6193 0.4100 +5631 6194 0.4070 +5631 6203 0.5090 +5631 6217 0.4140 +5631 6224 0.4340 +5631 6888 0.4900 +5631 7086 0.9570 +5631 7167 0.4990 +5631 7296 0.4080 +5631 7298 0.4350 +5631 7317 0.4090 +5631 7372 0.9650 +5631 7403 0.4180 +5631 7543 0.5340 +5631 8050 0.5160 +5631 8277 0.9540 +5631 8565 0.6440 +5631 8802 0.4420 +5631 8833 0.6650 +5631 8898 0.4220 +5631 9131 0.6980 +5631 9343 0.4740 +5631 9397 0.5150 +5631 9563 0.6040 +5631 9968 0.4590 +5631 10102 0.4450 +5631 10606 0.5460 +5631 10625 0.4590 +5631 11043 0.7530 +5631 11164 0.9100 +5631 11222 0.4650 +5631 22934 0.9610 +5631 22978 0.6170 +5631 23173 0.4020 +5631 23229 0.4060 +5631 23521 0.4340 +5631 23676 0.7380 +5631 25796 0.4640 +5631 25855 0.4130 +5631 26580 0.4950 +5631 29789 0.4180 +5631 30833 0.6070 +5631 51154 0.4200 +5631 51251 0.7440 +5631 53343 0.9250 +5631 54332 0.4270 +5631 55140 0.4220 +5631 55172 0.4270 +5631 55173 0.4110 +5631 55270 0.4270 +5631 55272 0.4810 +5631 55276 0.9390 +5631 55526 0.4560 +5631 56648 0.4220 +5631 56985 0.9040 +5631 57038 0.4270 +5631 64080 0.9560 +5631 64968 0.4650 +5631 65005 0.4390 +5631 79628 0.4770 +5631 79631 0.4290 +5631 84076 0.9530 +5631 84955 0.6270 +5631 85476 0.4220 +5631 90678 0.4040 +5631 91574 0.4510 +5631 93100 0.4190 +5631 116832 0.4130 +5631 121512 0.4180 +5631 122622 0.6120 +5631 124454 0.4130 +5631 139596 0.4920 +5631 143244 0.4150 +5631 219927 0.4090 +5631 221823 0.9700 +5631 729020 0.5650 +5634 5635 0.9850 +5634 5636 0.9810 +5634 5832 0.4980 +5634 5859 0.4340 +5634 5917 0.4370 +5634 5987 0.4220 +5634 6120 0.5890 +5634 6122 0.4670 +5634 6123 0.4490 +5634 6147 0.4190 +5634 6170 0.4270 +5634 6175 0.4430 +5634 6183 0.4050 +5634 6188 0.4620 +5634 6191 0.6180 +5634 6194 0.4030 +5634 6203 0.4700 +5634 6224 0.4110 +5634 6470 0.4530 +5634 6472 0.4080 +5634 6888 0.4750 +5634 7086 0.9580 +5634 7167 0.4710 +5634 7296 0.4030 +5634 7298 0.5390 +5634 7372 0.9320 +5634 7403 0.4370 +5634 7543 0.6180 +5634 8050 0.4810 +5634 8277 0.9560 +5634 8565 0.5010 +5634 8801 0.4680 +5634 8802 0.4740 +5634 8805 0.4020 +5634 8833 0.6270 +5634 9343 0.5180 +5634 9397 0.7280 +5634 9563 0.6110 +5634 10102 0.4050 +5634 10606 0.5650 +5634 11043 0.7280 +5634 11164 0.9090 +5634 11222 0.4620 +5634 22934 0.9570 +5634 23173 0.4030 +5634 25796 0.4870 +5634 30833 0.5900 +5634 51154 0.4100 +5634 51251 0.7890 +5634 53343 0.9300 +5634 55173 0.4100 +5634 55272 0.4650 +5634 55276 0.9440 +5634 56474 0.4320 +5634 56648 0.4240 +5634 56985 0.9040 +5634 57038 0.4260 +5634 64080 0.9570 +5634 64968 0.4680 +5634 65005 0.4070 +5634 79631 0.4210 +5634 84076 0.9560 +5634 85476 0.4180 +5634 93100 0.4290 +5634 116832 0.4190 +5634 122622 0.5820 +5634 124454 0.4160 +5634 139596 0.5030 +5634 143244 0.4150 +5634 219927 0.4050 +5634 221823 0.9110 +5634 729020 0.6430 +5635 5636 0.9810 +5635 5832 0.4460 +5635 5859 0.4340 +5635 5917 0.4340 +5635 6122 0.4500 +5635 6123 0.4450 +5635 6170 0.4080 +5635 6175 0.4190 +5635 6188 0.4450 +5635 6203 0.4610 +5635 6872 0.4590 +5635 6939 0.4040 +5635 7372 0.5260 +5635 7781 0.4350 +5635 8050 0.5280 +5635 8471 0.4200 +5635 8546 0.4530 +5635 8565 0.4860 +5635 8776 0.4670 +5635 8833 0.4050 +5635 9343 0.5220 +5635 9486 0.4850 +5635 9563 0.4390 +5635 10102 0.4620 +5635 10587 0.4150 +5635 10625 0.9190 +5635 11182 0.4330 +5635 11222 0.4750 +5635 26056 0.4500 +5635 29789 0.4090 +5635 30012 0.4090 +5635 51073 0.4160 +5635 51081 0.4730 +5635 51154 0.4320 +5635 55173 0.4370 +5635 55251 0.5770 +5635 55272 0.4950 +5635 55805 0.6140 +5635 56474 0.4170 +5635 56648 0.4200 +5635 57038 0.4300 +5635 59336 0.4580 +5635 64968 0.4760 +5635 65005 0.4170 +5635 65082 0.4290 +5635 79631 0.4180 +5635 79651 0.4020 +5635 83873 0.4050 +5635 83881 0.4070 +5635 84524 0.4870 +5635 85476 0.4480 +5635 114112 0.4010 +5635 114804 0.4970 +5635 115811 0.4270 +5635 116832 0.4080 +5635 124454 0.6720 +5635 124512 0.5290 +5635 126204 0.4890 +5635 143244 0.4150 +5635 146223 0.4490 +5635 147991 0.5610 +5635 149175 0.4790 +5635 200931 0.4290 +5635 219927 0.4120 +5635 221823 0.8240 +5635 285367 0.4900 +5635 402381 0.4300 +5635 648791 0.4950 +5635 729991 0.4470 +5636 5832 0.4420 +5636 5859 0.4160 +5636 5917 0.4270 +5636 6122 0.4590 +5636 6123 0.4450 +5636 6170 0.4080 +5636 6175 0.4170 +5636 6188 0.4510 +5636 6203 0.4680 +5636 6209 0.4430 +5636 6224 0.4100 +5636 7296 0.4100 +5636 7372 0.4950 +5636 8050 0.5100 +5636 8533 0.4210 +5636 8565 0.4960 +5636 8774 0.4540 +5636 9343 0.5170 +5636 9563 0.4420 +5636 10102 0.4350 +5636 10587 0.4290 +5636 10625 0.8040 +5636 11222 0.4690 +5636 23173 0.4320 +5636 29789 0.4140 +5636 51154 0.4100 +5636 51768 0.4080 +5636 55052 0.4050 +5636 55173 0.4160 +5636 55272 0.4950 +5636 55591 0.4050 +5636 56474 0.4100 +5636 56648 0.4150 +5636 57038 0.4880 +5636 64968 0.4620 +5636 65005 0.4160 +5636 79018 0.4320 +5636 79631 0.4290 +5636 84895 0.4350 +5636 85476 0.4290 +5636 116832 0.4080 +5636 124454 0.4680 +5636 124565 0.4450 +5636 128977 0.4250 +5636 143244 0.4150 +5636 219927 0.4100 +5636 221823 0.9520 +5638 6990 0.4350 +5638 10413 0.5310 +5638 23446 0.4220 +5638 63874 0.4070 +5638 83604 0.4670 +5638 117584 0.4320 +5638 123920 0.4100 +5638 139604 0.4030 +5638 221044 0.5950 +5638 347404 0.5830 +5639 9113 0.5200 +5639 10413 0.9560 +5639 26524 0.4240 +5639 51070 0.5250 +5639 55222 0.4910 +5639 57333 0.5020 +5639 57479 0.7040 +5639 63970 0.4910 +5639 149345 0.4080 +5639 221044 0.5210 +5641 5660 0.4200 +5641 6418 0.7680 +5641 6733 0.4240 +5641 6892 0.4320 +5641 7053 0.8260 +5641 7189 0.5680 +5641 8029 0.7760 +5641 8125 0.5970 +5641 8530 0.6720 +5641 8722 0.6580 +5641 9456 0.4960 +5641 9700 0.5060 +5641 10437 0.6170 +5641 10457 0.4350 +5641 10533 0.4540 +5641 10954 0.4970 +5641 26040 0.5480 +5641 26154 0.4600 +5641 51284 0.5130 +5641 51752 0.4080 +5641 54106 0.5020 +5641 55862 0.4090 +5641 57471 0.4050 +5641 80380 0.4110 +5641 84868 0.4230 +5641 116986 0.7320 +5641 377630 0.6150 +5641 440387 0.4050 +5644 5645 0.7050 +5644 5646 0.9180 +5644 5651 0.9200 +5644 5654 0.5490 +5644 5967 0.4670 +5644 6402 0.4090 +5644 6622 0.4700 +5644 6690 0.9990 +5644 6779 0.4180 +5644 6794 0.5900 +5644 6947 0.4160 +5644 7035 0.6580 +5644 7177 0.4710 +5644 7306 0.4900 +5644 8547 0.5930 +5644 9002 0.6810 +5644 9075 0.5140 +5644 9372 0.4160 +5644 10136 0.6130 +5644 10653 0.5170 +5644 11330 0.4940 +5644 23022 0.6250 +5644 23436 0.4090 +5644 51151 0.4780 +5644 56288 0.6500 +5644 57113 0.4010 +5644 79710 0.5420 +5644 79728 0.7890 +5644 136541 0.6580 +5644 136853 0.4800 +5644 203100 0.7030 +5644 342898 0.4130 +5644 440387 0.8590 +5645 5646 0.9990 +5645 5654 0.6390 +5645 5968 0.4010 +5645 6690 0.9560 +5645 6779 0.4970 +5645 7035 0.6690 +5645 7177 0.4650 +5645 8547 0.5730 +5645 9075 0.4230 +5645 10136 0.4770 +5645 10653 0.5030 +5645 11330 0.4640 +5645 59272 0.5910 +5645 78989 0.6380 +5645 79710 0.5770 +5645 130120 0.5080 +5645 342898 0.4840 +5645 440387 0.5300 +5646 5654 0.6450 +5646 6690 0.9220 +5646 6779 0.5480 +5646 6947 0.4200 +5646 7035 0.7810 +5646 7038 0.7040 +5646 9002 0.6810 +5646 10653 0.5740 +5646 11005 0.4410 +5646 11330 0.4650 +5646 51154 0.4120 +5646 56288 0.6580 +5646 64318 0.4340 +5646 84221 0.4110 +5646 130120 0.4690 +5646 200634 0.4120 +5646 440387 0.8010 +5646 441459 0.4960 +5648 6288 0.4240 +5648 6289 0.4170 +5648 6441 0.5570 +5648 7056 0.6600 +5648 7448 0.4590 +5648 8547 0.9990 +5648 10584 0.9430 +5648 10747 0.9860 +5648 27202 0.4850 +5648 27429 0.5510 +5648 30816 0.4480 +5648 43847 0.4590 +5648 56995 0.5780 +5648 60490 0.4180 +5648 78989 0.9800 +5648 79841 0.4980 +5648 81494 0.4550 +5648 89782 0.5120 +5648 126353 0.7200 +5648 160364 0.4390 +5648 390714 0.4860 +5648 405754 0.4500 +5649 5747 0.7550 +5649 5816 0.4810 +5649 5819 0.4080 +5649 6326 0.4480 +5649 6529 0.4310 +5649 6532 0.4090 +5649 6585 0.6090 +5649 6586 0.6410 +5649 6622 0.4430 +5649 6750 0.6080 +5649 6794 0.5800 +5649 6863 0.4790 +5649 7436 0.9990 +5649 7531 0.4240 +5649 7804 0.9980 +5649 7846 0.4800 +5649 7852 0.4540 +5649 7980 0.5270 +5649 8515 0.8020 +5649 8516 0.7270 +5649 8615 0.4290 +5649 8997 0.4250 +5649 9353 0.5820 +5649 9378 0.5530 +5649 9980 0.5420 +5649 10319 0.5420 +5649 10452 0.4180 +5649 10494 0.6500 +5649 10716 0.8130 +5649 10971 0.7060 +5649 22801 0.7050 +5649 23314 0.4600 +5649 23316 0.4200 +5649 26047 0.5290 +5649 26053 0.5060 +5649 26468 0.5650 +5649 27185 0.5110 +5649 29947 0.4310 +5649 30011 0.8090 +5649 54413 0.4090 +5649 54550 0.4490 +5649 54733 0.4900 +5649 54820 0.5080 +5649 55079 0.4190 +5649 57453 0.4700 +5649 57502 0.4240 +5649 57680 0.4070 +5649 64061 0.5010 +5649 64083 0.4970 +5649 64211 0.4280 +5649 64689 0.4360 +5649 64919 0.4060 +5649 80312 0.4770 +5649 83729 0.4250 +5649 83943 0.4200 +5649 84504 0.5060 +5649 84623 0.4190 +5649 85358 0.5100 +5649 91752 0.4490 +5649 92335 0.6880 +5649 93986 0.6380 +5649 284217 0.4860 +5650 5653 0.6690 +5650 5655 0.8040 +5650 5858 0.4550 +5650 6699 0.7840 +5650 6701 0.4360 +5650 7051 0.6980 +5650 8796 0.4480 +5650 9333 0.4080 +5650 11005 0.9030 +5650 11012 0.4730 +5650 11202 0.8050 +5650 23581 0.5090 +5650 25818 0.8070 +5650 85480 0.4020 +5650 89869 0.4220 +5650 129303 0.4140 +5650 144568 0.8350 +5650 145264 0.6260 +5650 148979 0.6820 +5650 162239 0.4280 +5650 388533 0.4970 +5650 388697 0.4320 +5650 388698 0.8110 +5650 404203 0.4520 +5650 643394 0.5500 +5651 6476 0.4190 +5651 6523 0.4310 +5651 6527 0.4270 +5651 6690 0.8220 +5651 7295 0.7040 +5651 7301 0.4540 +5651 7450 0.4080 +5651 10071 0.5780 +5651 56667 0.5330 +5651 93594 0.4060 +5651 94025 0.5010 +5651 121006 0.4350 +5651 136853 0.4120 +5651 140453 0.5730 +5651 140578 0.4380 +5651 143662 0.4180 +5651 200958 0.6180 +5651 375790 0.8470 +5651 394263 0.5070 +5651 643394 0.4210 +5651 727897 0.4620 +5652 6337 0.7290 +5652 6338 0.4950 +5652 6340 0.6670 +5652 6692 0.8990 +5652 6768 0.6310 +5652 7113 0.4850 +5652 7712 0.4280 +5652 9725 0.4200 +5652 10053 0.4320 +5652 10406 0.4770 +5652 10653 0.8070 +5652 11005 0.4090 +5652 23327 0.6090 +5652 27134 0.5360 +5652 54845 0.4930 +5652 57111 0.6140 +5652 79977 0.4230 +5652 84148 0.4780 +5652 114569 0.4040 +5652 136853 0.4570 +5653 5655 0.5660 +5653 5858 0.4110 +5653 6318 0.4640 +5653 6622 0.7160 +5653 6699 0.7070 +5653 7051 0.6080 +5653 8614 0.4010 +5653 10138 0.6620 +5653 10406 0.4470 +5653 11005 0.7240 +5653 11202 0.5660 +5653 25818 0.5470 +5653 79152 0.4520 +5653 84106 0.4080 +5653 89777 0.4480 +5653 93377 0.6090 +5653 144568 0.7700 +5653 148979 0.6150 +5653 163778 0.4680 +5653 374454 0.5010 +5653 388533 0.4200 +5653 388698 0.4780 +5653 404203 0.5070 +5653 643394 0.5100 +5654 6279 0.6020 +5654 6690 0.5750 +5654 6779 0.4380 +5654 6872 0.4200 +5654 7040 0.5500 +5654 7045 0.5600 +5654 7057 0.4540 +5654 7078 0.4570 +5654 8192 0.7420 +5654 8200 0.4930 +5654 8560 0.4320 +5654 9073 0.4350 +5654 9788 0.4960 +5654 10730 0.5940 +5654 10845 0.6090 +5654 11012 0.4260 +5654 11330 0.6490 +5654 23225 0.4030 +5654 23476 0.4200 +5654 27290 0.4390 +5654 55486 0.4710 +5654 59338 0.7380 +5654 80273 0.6200 +5654 81570 0.6390 +5654 84866 0.4190 +5654 387715 0.7810 +5654 401262 0.4790 +5654 440387 0.6030 +5655 6707 0.4910 +5655 7165 0.4040 +5655 7514 0.7250 +5655 9372 0.4390 +5655 11005 0.4370 +5655 11012 0.8250 +5655 11202 0.6810 +5655 23491 0.4390 +5655 25818 0.5500 +5655 26085 0.4010 +5655 29968 0.4050 +5655 55165 0.4250 +5655 84661 0.4330 +5655 283130 0.4380 +5655 390327 0.4270 +5657 5806 0.5640 +5657 6036 0.4460 +5657 6037 0.6570 +5657 6283 0.4110 +5657 6347 0.4150 +5657 6441 0.4380 +5657 6590 0.5190 +5657 6625 0.4180 +5657 6696 0.5280 +5657 6737 0.5270 +5657 6741 0.4430 +5657 7035 0.4400 +5657 7038 0.4150 +5657 7057 0.4890 +5657 7099 0.6470 +5657 7124 0.6350 +5657 7173 0.4430 +5657 7490 0.4790 +5657 8290 0.5400 +5657 8337 0.5240 +5657 8338 0.5240 +5657 8349 0.5290 +5657 8356 0.5410 +5657 8935 0.4020 +5657 8993 0.4440 +5657 9235 0.9910 +5657 10068 0.5070 +5657 10294 0.7360 +5657 10389 0.7430 +5657 10544 0.8800 +5657 10673 0.4620 +5657 10747 0.4830 +5657 11005 0.4360 +5657 11093 0.4530 +5657 11222 0.5800 +5657 11240 0.5790 +5657 22925 0.4920 +5657 23438 0.6210 +5657 23532 0.5100 +5657 23569 0.8600 +5657 26013 0.5630 +5657 26054 0.4970 +5657 26191 0.5800 +5657 51091 0.4220 +5657 51279 0.4870 +5657 51643 0.5420 +5657 51702 0.4560 +5657 57126 0.9910 +5657 79841 0.7940 +5657 80012 0.4830 +5657 83746 0.7550 +5657 84569 0.8490 +5657 84823 0.5110 +5657 115352 0.4550 +5657 140738 0.7890 +5657 143689 0.4570 +5657 148738 0.4770 +5657 154215 0.5500 +5657 340351 0.5800 +5657 348801 0.8090 +5657 388698 0.6960 +5657 400668 0.5820 +5657 440093 0.5400 +5657 440686 0.5390 +5657 653604 0.5410 +5657 727897 0.5180 +5660 5697 0.5070 +5660 6272 0.8060 +5660 6441 0.5610 +5660 6590 0.4270 +5660 6609 0.7710 +5660 6622 0.5140 +5660 6714 0.5700 +5660 6750 0.5010 +5660 6751 0.5120 +5660 6752 0.5140 +5660 6753 0.5140 +5660 6754 0.5120 +5660 6755 0.5140 +5660 7251 0.5980 +5660 7357 0.6190 +5660 7415 0.4980 +5660 7942 0.4750 +5660 8218 0.4170 +5660 8484 0.5350 +5660 8722 0.4220 +5660 8811 0.5350 +5660 8862 0.4990 +5660 9283 0.9580 +5660 9584 0.4060 +5660 10316 0.5000 +5660 10330 0.7520 +5660 10577 0.6670 +5660 10578 0.7740 +5660 10874 0.5040 +5660 11140 0.4670 +5660 26086 0.4060 +5660 27076 0.4190 +5660 29116 0.7050 +5660 29899 0.4270 +5660 51083 0.4990 +5660 54664 0.5160 +5660 56923 0.4990 +5660 57017 0.4420 +5660 66005 0.7540 +5660 84539 0.4990 +5660 126006 0.4060 +5660 129521 0.4990 +5660 196463 0.4270 +5660 201595 0.4520 +5660 256933 0.5130 +5660 283869 0.5130 +5660 285888 0.8000 +5660 441549 0.5710 +5660 653509 0.4590 +5660 729238 0.4690 +5660 768239 0.9040 +5662 5877 0.5260 +5662 6642 0.5350 +5662 9744 0.5940 +5662 23163 0.4510 +5662 23761 0.6020 +5662 26499 0.4480 +5662 50807 0.4390 +5662 51363 0.5820 +5662 160622 0.4080 +5663 5664 0.9990 +5663 5669 0.4450 +5663 5670 0.4450 +5663 5676 0.4450 +5663 6009 0.4840 +5663 6262 0.4530 +5663 6263 0.9440 +5663 6310 0.5260 +5663 6323 0.4450 +5663 6396 0.4310 +5663 6506 0.5910 +5663 6515 0.4470 +5663 6620 0.4100 +5663 6622 0.8650 +5663 6647 0.5720 +5663 6653 0.7840 +5663 6767 0.4040 +5663 6804 0.6580 +5663 6812 0.4250 +5663 6853 0.4270 +5663 6855 0.6200 +5663 6857 0.8460 +5663 6868 0.7120 +5663 7009 0.7680 +5663 7015 0.4210 +5663 7046 0.4330 +5663 7070 0.6660 +5663 7087 0.6670 +5663 7124 0.4890 +5663 7189 0.8660 +5663 7305 0.4550 +5663 7316 0.5680 +5663 7341 0.4410 +5663 7345 0.5970 +5663 7348 0.4430 +5663 7415 0.4890 +5663 7416 0.4490 +5663 7837 0.4620 +5663 8301 0.7650 +5663 8312 0.4420 +5663 8502 0.6410 +5663 8650 0.4180 +5663 8678 0.4870 +5663 8754 0.4360 +5663 8766 0.7540 +5663 8867 0.4080 +5663 8878 0.4790 +5663 9066 0.4810 +5663 9445 0.4580 +5663 9451 0.9420 +5663 9474 0.4390 +5663 9588 0.4110 +5663 9709 0.6600 +5663 9718 0.4430 +5663 9794 0.4200 +5663 9910 0.5500 +5663 9927 0.4140 +5663 10059 0.4410 +5663 10060 0.4590 +5663 10273 0.5160 +5663 10347 0.6900 +5663 10369 0.4100 +5663 10452 0.5060 +5663 10524 0.4700 +5663 10533 0.4710 +5663 10730 0.6820 +5663 10971 0.5520 +5663 10972 0.9800 +5663 11160 0.4810 +5663 11315 0.5400 +5663 22883 0.4460 +5663 22926 0.4960 +5663 23220 0.4200 +5663 23237 0.6560 +5663 23385 0.9990 +5663 23400 0.4180 +5663 23411 0.4460 +5663 23426 0.4450 +5663 23435 0.7020 +5663 23607 0.6010 +5663 23621 0.9720 +5663 23646 0.5520 +5663 23787 0.8850 +5663 25797 0.4850 +5663 25825 0.7710 +5663 25959 0.5960 +5663 25978 0.5700 +5663 27429 0.8490 +5663 28514 0.6710 +5663 29119 0.4610 +5663 29978 0.7000 +5663 29979 0.9530 +5663 30818 0.9410 +5663 30849 0.5420 +5663 51024 0.4050 +5663 51107 0.9990 +5663 51176 0.4550 +5663 51225 0.4050 +5663 51314 0.4090 +5663 51338 0.4090 +5663 51422 0.4890 +5663 54103 0.8880 +5663 54205 0.4940 +5663 54209 0.8530 +5663 54567 0.4130 +5663 54822 0.4400 +5663 54933 0.7000 +5663 55294 0.4530 +5663 55486 0.6790 +5663 55737 0.4850 +5663 55798 0.7760 +5663 55851 0.9990 +5663 57091 0.4390 +5663 64231 0.4870 +5663 64759 0.4650 +5663 64837 0.5680 +5663 65018 0.6650 +5663 79258 0.7910 +5663 81502 0.5620 +5663 81559 0.4110 +5663 83464 0.9990 +5663 84171 0.4640 +5663 84441 0.4010 +5663 89796 0.4710 +5663 89953 0.5700 +5663 92737 0.7780 +5663 113878 0.4800 +5663 120892 0.5660 +5663 137902 0.4540 +5663 145873 0.4740 +5663 146713 0.4790 +5663 147700 0.5290 +5663 147841 0.5820 +5663 154796 0.4540 +5663 203228 0.6460 +5663 203413 0.4580 +5663 245802 0.4200 +5663 255022 0.5840 +5663 282996 0.4350 +5663 388585 0.5550 +5663 440533 0.4450 +5663 643680 0.4400 +5664 6262 0.4150 +5664 6263 0.9590 +5664 6515 0.4380 +5664 6620 0.5310 +5664 6622 0.6020 +5664 6647 0.4770 +5664 6653 0.7780 +5664 6672 0.4240 +5664 6687 0.4480 +5664 6717 0.9390 +5664 6868 0.5600 +5664 6872 0.4220 +5664 7009 0.5130 +5664 7056 0.4230 +5664 7087 0.5400 +5664 7112 0.4640 +5664 7189 0.7210 +5664 7274 0.4040 +5664 7348 0.4640 +5664 7407 0.4690 +5664 7415 0.4500 +5664 7447 0.5020 +5664 8192 0.4090 +5664 8301 0.7320 +5664 8754 0.4300 +5664 8795 0.4550 +5664 9217 0.4230 +5664 9445 0.4070 +5664 9451 0.9080 +5664 9866 0.4200 +5664 9927 0.5780 +5664 10060 0.5070 +5664 10195 0.4860 +5664 10229 0.9190 +5664 10347 0.8030 +5664 10380 0.6720 +5664 10452 0.4620 +5664 10497 0.5030 +5664 10519 0.9560 +5664 10730 0.5950 +5664 10858 0.4950 +5664 10902 0.4250 +5664 10939 0.4700 +5664 10971 0.4840 +5664 10972 0.8610 +5664 11146 0.5030 +5664 11315 0.4760 +5664 22938 0.4850 +5664 23064 0.4280 +5664 23385 0.9990 +5664 23435 0.6340 +5664 23590 0.9880 +5664 23607 0.6030 +5664 23621 0.8530 +5664 23646 0.6160 +5664 23774 0.4280 +5664 25797 0.4690 +5664 25825 0.6080 +5664 25959 0.5960 +5664 25978 0.5600 +5664 27235 0.9840 +5664 27250 0.5760 +5664 29978 0.4970 +5664 29979 0.8750 +5664 30818 0.9750 +5664 51004 0.9770 +5664 51100 0.5930 +5664 51107 0.9990 +5664 51117 0.9270 +5664 51295 0.6300 +5664 51314 0.4200 +5664 51338 0.4260 +5664 51592 0.5900 +5664 51643 0.4970 +5664 51805 0.9690 +5664 54205 0.4030 +5664 54209 0.7520 +5664 54840 0.8850 +5664 54933 0.4560 +5664 55023 0.4360 +5664 55063 0.4490 +5664 55129 0.6080 +5664 55157 0.4090 +5664 55486 0.4580 +5664 55737 0.4160 +5664 55798 0.7910 +5664 55851 0.9990 +5664 57017 0.9910 +5664 57091 0.4640 +5664 57107 0.9700 +5664 57143 0.4880 +5664 64231 0.5060 +5664 64746 0.4330 +5664 64837 0.4190 +5664 65018 0.5680 +5664 79156 0.4240 +5664 79258 0.7320 +5664 80219 0.7260 +5664 80333 0.8140 +5664 81502 0.4730 +5664 81559 0.4410 +5664 83464 0.9990 +5664 83661 0.4140 +5664 84274 0.9620 +5664 89953 0.4270 +5664 90956 0.7700 +5664 92737 0.4790 +5664 92840 0.4240 +5664 93058 0.7460 +5664 93185 0.4130 +5664 112812 0.4520 +5664 113878 0.4780 +5664 120892 0.5250 +5664 146227 0.5580 +5664 147841 0.5870 +5664 160760 0.4120 +5664 170482 0.4180 +5664 203054 0.4770 +5664 203228 0.6330 +5664 245802 0.4470 +5664 282996 0.4910 +5664 388585 0.5190 +5664 613227 0.4450 +5664 643680 0.4550 +5669 5670 0.7770 +5669 5671 0.9540 +5669 5672 0.9070 +5669 5673 0.8060 +5669 5675 0.8220 +5669 5676 0.8490 +5669 5678 0.9420 +5669 5680 0.5020 +5669 6382 0.7340 +5669 6383 0.5140 +5669 6385 0.5570 +5669 6403 0.5970 +5669 6948 0.4020 +5669 7040 0.7850 +5669 7980 0.4220 +5669 9672 0.5250 +5669 23293 0.4470 +5669 30849 0.4730 +5669 64763 0.4220 +5669 85236 0.4270 +5669 157567 0.6250 +5669 200895 0.6600 +5669 440533 0.8000 +5670 5671 0.7760 +5670 5672 0.8490 +5670 5673 0.7830 +5670 5675 0.7720 +5670 5676 0.7750 +5670 5678 0.7010 +5670 6382 0.7240 +5670 6383 0.5220 +5670 6385 0.5380 +5670 6403 0.6030 +5670 7040 0.6380 +5670 8459 0.4900 +5670 8460 0.5200 +5670 9672 0.5240 +5670 30849 0.4730 +5670 85236 0.4260 +5671 5672 0.7740 +5671 5673 0.7710 +5671 5675 0.8130 +5671 5676 0.6030 +5671 5678 0.9670 +5671 5680 0.7870 +5671 6382 0.5340 +5671 6383 0.5140 +5671 6385 0.5270 +5671 7040 0.5800 +5671 7980 0.4750 +5671 9672 0.5310 +5671 139067 0.6200 +5671 157567 0.7920 +5671 339967 0.4850 +5671 440533 0.7850 +5672 5673 0.7820 +5672 5675 0.7810 +5672 5676 0.9990 +5672 5678 0.7780 +5672 5680 0.6810 +5672 6382 0.5510 +5672 6383 0.5440 +5672 6385 0.5400 +5672 7040 0.6270 +5672 7980 0.4690 +5672 9672 0.5270 +5672 64763 0.4230 +5672 79987 0.4470 +5672 83895 0.4190 +5672 440533 0.6910 +5672 729528 0.5610 +5673 5675 0.7780 +5673 5676 0.5210 +5673 5678 0.6360 +5673 5914 0.4490 +5673 6382 0.5060 +5673 6383 0.5140 +5673 6385 0.5270 +5673 6390 0.4990 +5673 6391 0.6070 +5673 7040 0.6010 +5673 7075 0.4140 +5673 8202 0.4220 +5673 9672 0.5140 +5673 10499 0.4190 +5673 55811 0.4460 +5673 133482 0.4310 +5675 5676 0.7810 +5675 5678 0.7820 +5675 5680 0.4560 +5675 6382 0.5320 +5675 6383 0.5300 +5675 6385 0.5270 +5675 7040 0.5900 +5675 9672 0.5330 +5675 64763 0.4360 +5675 94115 0.4340 +5675 170626 0.4270 +5675 440533 0.6580 +5676 5678 0.7640 +5676 6382 0.7260 +5676 6383 0.5140 +5676 6385 0.5340 +5676 6403 0.5960 +5676 7040 0.7630 +5676 9672 0.5250 +5676 30849 0.4730 +5676 85236 0.4260 +5678 6382 0.5250 +5678 6383 0.5140 +5678 6385 0.5270 +5678 7040 0.7830 +5678 7043 0.5660 +5678 7046 0.6080 +5678 7048 0.6020 +5678 8938 0.4100 +5678 9672 0.5360 +5678 9728 0.4750 +5678 23780 0.5450 +5678 29068 0.4460 +5678 79801 0.4350 +5678 79830 0.4530 +5678 440533 0.5270 +5680 6382 0.5060 +5680 6383 0.5140 +5680 6385 0.5270 +5680 7040 0.5900 +5680 9672 0.5480 +5680 28974 0.4200 +5680 64763 0.4420 +5680 440533 0.4130 +5681 5699 0.7820 +5681 6558 0.7730 +5681 6559 0.6610 +5681 9993 0.4540 +5681 10454 0.4850 +5681 11253 0.4540 +5681 23644 0.5130 +5681 51678 0.4040 +5681 54662 0.4260 +5681 54868 0.4460 +5681 64852 0.4430 +5681 80233 0.4990 +5681 80789 0.5500 +5681 84288 0.4100 +5681 92305 0.7510 +5681 115557 0.4010 +5681 116729 0.4800 +5681 127665 0.4120 +5681 149345 0.4540 +5681 158427 0.4140 +5681 388284 0.4640 +5682 5683 0.9990 +5682 5684 0.9990 +5682 5685 0.9990 +5682 5686 0.9990 +5682 5687 0.9990 +5682 5688 0.9990 +5682 5689 0.9990 +5682 5690 0.9990 +5682 5691 0.9990 +5682 5692 0.9990 +5682 5693 0.9990 +5682 5694 0.9990 +5682 5695 0.9990 +5682 5696 0.9990 +5682 5698 0.9990 +5682 5699 0.9990 +5682 5700 0.9990 +5682 5701 0.9990 +5682 5702 0.9990 +5682 5704 0.9990 +5682 5705 0.9980 +5682 5706 0.9990 +5682 5707 0.9990 +5682 5708 0.9990 +5682 5709 0.9970 +5682 5710 0.9990 +5682 5711 0.7660 +5682 5713 0.9990 +5682 5714 0.9990 +5682 5716 0.5990 +5682 5717 0.9980 +5682 5718 0.9990 +5682 5719 0.9990 +5682 5720 0.9960 +5682 5721 0.9920 +5682 5725 0.4290 +5682 5728 0.4350 +5682 5757 0.4260 +5682 5887 0.4840 +5682 5901 0.5570 +5682 5955 0.4280 +5682 5966 0.4670 +5682 5970 0.4750 +5682 5971 0.4550 +5682 6059 0.4830 +5682 6124 0.5100 +5682 6128 0.5260 +5682 6132 0.4510 +5682 6133 0.5220 +5682 6136 0.5150 +5682 6155 0.5120 +5682 6156 0.5890 +5682 6157 0.4390 +5682 6165 0.4350 +5682 6175 0.4720 +5682 6181 0.5610 +5682 6187 0.5260 +5682 6188 0.4990 +5682 6189 0.4610 +5682 6191 0.4820 +5682 6202 0.4770 +5682 6203 0.4240 +5682 6206 0.4090 +5682 6207 0.5030 +5682 6217 0.5230 +5682 6224 0.5620 +5682 6233 0.9690 +5682 6272 0.8000 +5682 6284 0.4180 +5682 6396 0.4060 +5682 6469 0.4010 +5682 6500 0.7090 +5682 6502 0.4450 +5682 6622 0.6870 +5682 6633 0.5020 +5682 6634 0.4290 +5682 6635 0.5410 +5682 6636 0.4450 +5682 6647 0.7540 +5682 6653 0.4720 +5682 6790 0.4900 +5682 6921 0.5990 +5682 6923 0.5330 +5682 6950 0.6100 +5682 7124 0.4620 +5682 7133 0.4120 +5682 7157 0.5000 +5682 7167 0.4420 +5682 7186 0.4240 +5682 7187 0.4170 +5682 7203 0.4870 +5682 7251 0.4230 +5682 7311 0.9610 +5682 7314 0.9540 +5682 7316 0.9500 +5682 7319 0.4880 +5682 7321 0.5210 +5682 7324 0.5810 +5682 7334 0.4810 +5682 7336 0.7380 +5682 7337 0.7080 +5682 7341 0.4110 +5682 7347 0.6960 +5682 7353 0.6800 +5682 7411 0.7840 +5682 7415 0.8000 +5682 7417 0.5130 +5682 7419 0.4900 +5682 7458 0.5390 +5682 7919 0.4900 +5682 7936 0.4430 +5682 8106 0.4120 +5682 8125 0.4730 +5682 8260 0.5070 +5682 8312 0.4030 +5682 8313 0.4030 +5682 8452 0.5910 +5682 8453 0.4780 +5682 8454 0.5290 +5682 8600 0.4050 +5682 8607 0.5480 +5682 8624 0.9350 +5682 8650 0.4150 +5682 8658 0.4460 +5682 8662 0.4930 +5682 8665 0.4390 +5682 8666 0.5710 +5682 8668 0.8260 +5682 8697 0.4570 +5682 8742 0.4790 +5682 8881 0.4810 +5682 8900 0.4060 +5682 8994 0.4080 +5682 9020 0.4380 +5682 9097 0.9980 +5682 9134 0.4040 +5682 9141 0.4670 +5682 9212 0.4610 +5682 9255 0.6560 +5682 9352 0.5960 +5682 9491 0.9850 +5682 9690 0.4470 +5682 9817 0.5920 +5682 9861 0.9990 +5682 9978 0.6490 +5682 10197 0.8980 +5682 10213 0.9990 +5682 10236 0.4510 +5682 10284 0.4010 +5682 10383 0.4700 +5682 10393 0.5100 +5682 10399 0.4920 +5682 10471 0.6860 +5682 10480 0.5740 +5682 10492 0.5220 +5682 10537 0.6230 +5682 10574 0.6460 +5682 10575 0.7710 +5682 10576 0.7220 +5682 10673 0.4050 +5682 10694 0.7970 +5682 10726 0.4430 +5682 10856 0.4880 +5682 10963 0.5180 +5682 10980 0.4120 +5682 10987 0.6530 +5682 11047 0.9830 +5682 11059 0.4050 +5682 11065 0.5910 +5682 11316 0.4730 +5682 22800 0.4250 +5682 22948 0.6700 +5682 22986 0.4700 +5682 23072 0.4040 +5682 23194 0.4010 +5682 23198 0.9990 +5682 23392 0.5970 +5682 25898 0.4600 +5682 25906 0.4140 +5682 26043 0.7800 +5682 26271 0.4320 +5682 27249 0.7370 +5682 27338 0.4730 +5682 27351 0.9940 +5682 28985 0.4250 +5682 29882 0.4190 +5682 29945 0.4490 +5682 50846 0.4010 +5682 51031 0.4030 +5682 51053 0.4490 +5682 51138 0.4670 +5682 51330 0.4010 +5682 51343 0.4240 +5682 51371 0.9990 +5682 51377 0.9980 +5682 51433 0.4240 +5682 51434 0.4130 +5682 51493 0.4110 +5682 51512 0.4220 +5682 51529 0.4440 +5682 51637 0.4520 +5682 51639 0.4030 +5682 51667 0.5070 +5682 51684 0.4070 +5682 51686 0.4110 +5682 55122 0.9290 +5682 55294 0.4380 +5682 55626 0.4280 +5682 55666 0.5490 +5682 56061 0.6860 +5682 56851 0.4670 +5682 56893 0.9950 +5682 56984 0.9950 +5682 57537 0.4700 +5682 59269 0.4100 +5682 59349 0.4300 +5682 64221 0.4180 +5682 64326 0.4130 +5682 64344 0.4070 +5682 64682 0.4210 +5682 64750 0.4380 +5682 65975 0.4460 +5682 79184 0.7410 +5682 79752 0.4260 +5682 80011 0.7480 +5682 80351 0.4570 +5682 81847 0.4110 +5682 83473 0.5670 +5682 83737 0.4060 +5682 84196 0.4150 +5682 84262 0.7730 +5682 84954 0.7370 +5682 114803 0.7490 +5682 114815 0.4700 +5682 119504 0.4110 +5682 120227 0.4150 +5682 122706 0.8880 +5682 123228 0.5170 +5682 134510 0.6980 +5682 140809 0.4180 +5682 143471 0.9990 +5682 200734 0.4110 +5682 246184 0.5060 +5682 389362 0.8220 +5682 728378 0.5550 +5682 100652824 0.8440 +5683 5684 0.9990 +5683 5685 0.9990 +5683 5686 0.9990 +5683 5687 0.9990 +5683 5688 0.9990 +5683 5689 0.9990 +5683 5690 0.9990 +5683 5691 0.9990 +5683 5692 0.9990 +5683 5693 0.9990 +5683 5694 0.9990 +5683 5695 0.9990 +5683 5696 0.9990 +5683 5698 0.9990 +5683 5699 0.9990 +5683 5700 0.9990 +5683 5701 0.9990 +5683 5702 0.9990 +5683 5704 0.9990 +5683 5705 0.9990 +5683 5706 0.9990 +5683 5707 0.9990 +5683 5708 0.9990 +5683 5709 0.9990 +5683 5710 0.9990 +5683 5711 0.7580 +5683 5713 0.9990 +5683 5714 0.9990 +5683 5715 0.4920 +5683 5716 0.6710 +5683 5717 0.9990 +5683 5718 0.9990 +5683 5719 0.9990 +5683 5720 0.9920 +5683 5721 0.9940 +5683 5725 0.4240 +5683 5728 0.4010 +5683 5887 0.5680 +5683 5901 0.5510 +5683 5955 0.4320 +5683 5966 0.4630 +5683 5970 0.4480 +5683 5971 0.4220 +5683 6124 0.4750 +5683 6128 0.5290 +5683 6129 0.4130 +5683 6133 0.5040 +5683 6136 0.5840 +5683 6137 0.5320 +5683 6138 0.4320 +5683 6141 0.4810 +5683 6142 0.4210 +5683 6143 0.4140 +5683 6155 0.5730 +5683 6156 0.5360 +5683 6157 0.5020 +5683 6158 0.5440 +5683 6160 0.4790 +5683 6165 0.5400 +5683 6175 0.5830 +5683 6176 0.4100 +5683 6181 0.5800 +5683 6187 0.5820 +5683 6188 0.6080 +5683 6189 0.5440 +5683 6191 0.5240 +5683 6202 0.5400 +5683 6203 0.5580 +5683 6206 0.4540 +5683 6207 0.4420 +5683 6217 0.6060 +5683 6224 0.7010 +5683 6227 0.4090 +5683 6229 0.4320 +5683 6230 0.4630 +5683 6233 0.9750 +5683 6272 0.5070 +5683 6284 0.4300 +5683 6400 0.5130 +5683 6500 0.8230 +5683 6502 0.4560 +5683 6613 0.4400 +5683 6622 0.6820 +5683 6627 0.4510 +5683 6632 0.4760 +5683 6633 0.4920 +5683 6634 0.4070 +5683 6635 0.5390 +5683 6636 0.4700 +5683 6637 0.4520 +5683 6647 0.7440 +5683 6727 0.6340 +5683 6741 0.4420 +5683 6790 0.4810 +5683 6902 0.4630 +5683 6921 0.6470 +5683 6923 0.6190 +5683 6950 0.5700 +5683 7124 0.4610 +5683 7157 0.4780 +5683 7186 0.4130 +5683 7203 0.7460 +5683 7247 0.4870 +5683 7311 0.9310 +5683 7314 0.9670 +5683 7316 0.9450 +5683 7317 0.4100 +5683 7321 0.5130 +5683 7324 0.4700 +5683 7334 0.5570 +5683 7336 0.8260 +5683 7337 0.6730 +5683 7341 0.6080 +5683 7347 0.7000 +5683 7353 0.6350 +5683 7411 0.7730 +5683 7415 0.8590 +5683 7428 0.4100 +5683 7458 0.4230 +5683 7514 0.4040 +5683 7874 0.4890 +5683 7919 0.4890 +5683 7979 0.5500 +5683 8260 0.4830 +5683 8405 0.4050 +5683 8452 0.6060 +5683 8453 0.4130 +5683 8454 0.8020 +5683 8607 0.5550 +5683 8624 0.8370 +5683 8650 0.4050 +5683 8658 0.4020 +5683 8662 0.5010 +5683 8665 0.5820 +5683 8666 0.5820 +5683 8668 0.7950 +5683 8697 0.5150 +5683 8881 0.4690 +5683 8894 0.4720 +5683 8900 0.4100 +5683 8945 0.4550 +5683 8994 0.4280 +5683 9045 0.4670 +5683 9097 0.9970 +5683 9134 0.4100 +5683 9141 0.4910 +5683 9255 0.7180 +5683 9453 0.4290 +5683 9491 0.9780 +5683 9588 0.6870 +5683 9690 0.5790 +5683 9817 0.6010 +5683 9861 0.9990 +5683 9939 0.4680 +5683 9978 0.8060 +5683 10054 0.4150 +5683 10075 0.4340 +5683 10197 0.8600 +5683 10204 0.4340 +5683 10213 0.9990 +5683 10236 0.4600 +5683 10284 0.4810 +5683 10393 0.4650 +5683 10399 0.7200 +5683 10471 0.6630 +5683 10480 0.6030 +5683 10492 0.5110 +5683 10537 0.6090 +5683 10574 0.7680 +5683 10575 0.8430 +5683 10576 0.7400 +5683 10617 0.4280 +5683 10673 0.4030 +5683 10694 0.8450 +5683 10726 0.5310 +5683 10856 0.4270 +5683 10910 0.4120 +5683 10923 0.5590 +5683 10944 0.4270 +5683 10963 0.4940 +5683 10980 0.5900 +5683 10987 0.5520 +5683 11047 0.9720 +5683 11059 0.4630 +5683 11065 0.4870 +5683 11104 0.4210 +5683 11140 0.5500 +5683 11316 0.4140 +5683 22948 0.7370 +5683 23072 0.5180 +5683 23194 0.4230 +5683 23198 0.9980 +5683 23392 0.8320 +5683 23480 0.6090 +5683 23729 0.4120 +5683 25793 0.6320 +5683 25879 0.4630 +5683 25906 0.4380 +5683 26043 0.5090 +5683 26271 0.4680 +5683 27258 0.4150 +5683 27335 0.4350 +5683 27338 0.5030 +5683 27339 0.4570 +5683 27351 0.9940 +5683 28985 0.4130 +5683 28998 0.4400 +5683 29028 0.4390 +5683 29101 0.5960 +5683 29789 0.4020 +5683 29882 0.4160 +5683 29945 0.4350 +5683 29978 0.5140 +5683 29979 0.4710 +5683 51013 0.4150 +5683 51053 0.5080 +5683 51138 0.5550 +5683 51330 0.4050 +5683 51343 0.4300 +5683 51371 0.9950 +5683 51377 0.9980 +5683 51433 0.4620 +5683 51434 0.4080 +5683 51493 0.4220 +5683 51512 0.4290 +5683 51529 0.4260 +5683 51637 0.4930 +5683 51667 0.5060 +5683 51686 0.4200 +5683 51691 0.4490 +5683 51699 0.5230 +5683 54205 0.5380 +5683 54439 0.4550 +5683 54454 0.4200 +5683 54583 0.4050 +5683 54859 0.4890 +5683 55122 0.9320 +5683 55127 0.4520 +5683 55277 0.4120 +5683 55294 0.7850 +5683 55299 0.4520 +5683 55611 0.4520 +5683 55626 0.4760 +5683 55666 0.5070 +5683 55832 0.4940 +5683 56061 0.5370 +5683 56984 0.9540 +5683 57559 0.4170 +5683 59269 0.4020 +5683 59349 0.4450 +5683 63893 0.4700 +5683 64326 0.4180 +5683 64682 0.4450 +5683 64750 0.4560 +5683 64951 0.5180 +5683 79020 0.7050 +5683 79184 0.5530 +5683 79647 0.4650 +5683 80227 0.4670 +5683 80351 0.4020 +5683 81847 0.4010 +5683 83473 0.8170 +5683 83737 0.4580 +5683 84056 0.4110 +5683 84262 0.7870 +5683 84301 0.5120 +5683 84324 0.4590 +5683 84954 0.5490 +5683 84962 0.4250 +5683 114803 0.6330 +5683 118460 0.4040 +5683 119504 0.4410 +5683 122706 0.8950 +5683 123228 0.5170 +5683 126374 0.4200 +5683 134510 0.5550 +5683 143471 0.9960 +5683 161742 0.4260 +5683 200734 0.4260 +5683 246184 0.4160 +5683 256356 0.4110 +5683 286187 0.4120 +5683 339745 0.4010 +5683 389362 0.4690 +5683 399473 0.4260 +5683 728378 0.4770 +5684 5685 0.9990 +5684 5686 0.9990 +5684 5687 0.9990 +5684 5688 0.9990 +5684 5689 0.9990 +5684 5690 0.9990 +5684 5691 0.9990 +5684 5692 0.9990 +5684 5693 0.9990 +5684 5694 0.9990 +5684 5695 0.9990 +5684 5696 0.9990 +5684 5698 0.9990 +5684 5699 0.9990 +5684 5700 0.9990 +5684 5701 0.9990 +5684 5702 0.9990 +5684 5704 0.9980 +5684 5705 0.9980 +5684 5706 0.9990 +5684 5707 0.9990 +5684 5708 0.9990 +5684 5709 0.9980 +5684 5710 0.9990 +5684 5711 0.5500 +5684 5713 0.9990 +5684 5714 0.9990 +5684 5715 0.8220 +5684 5716 0.4640 +5684 5717 0.9990 +5684 5718 0.9990 +5684 5719 0.9980 +5684 5720 0.9860 +5684 5721 0.9920 +5684 5725 0.4730 +5684 5728 0.4450 +5684 5901 0.5510 +5684 5926 0.5270 +5684 5928 0.4730 +5684 5955 0.4550 +5684 5966 0.4310 +5684 5970 0.5000 +5684 5971 0.4270 +5684 6122 0.4650 +5684 6124 0.5680 +5684 6125 0.6040 +5684 6128 0.7030 +5684 6129 0.4990 +5684 6130 0.5260 +5684 6132 0.5100 +5684 6133 0.5910 +5684 6135 0.7060 +5684 6136 0.5530 +5684 6137 0.5820 +5684 6138 0.5310 +5684 6141 0.4890 +5684 6142 0.5050 +5684 6143 0.5130 +5684 6154 0.4930 +5684 6155 0.6740 +5684 6156 0.6030 +5684 6157 0.6430 +5684 6158 0.5290 +5684 6160 0.5660 +5684 6164 0.4650 +5684 6165 0.6270 +5684 6168 0.4070 +5684 6175 0.5890 +5684 6181 0.5940 +5684 6187 0.7170 +5684 6188 0.5930 +5684 6189 0.6120 +5684 6191 0.5960 +5684 6194 0.4050 +5684 6202 0.6720 +5684 6203 0.5920 +5684 6205 0.4540 +5684 6206 0.4710 +5684 6207 0.5460 +5684 6208 0.4310 +5684 6217 0.8190 +5684 6224 0.7740 +5684 6228 0.4500 +5684 6229 0.4370 +5684 6231 0.5180 +5684 6233 0.9740 +5684 6234 0.5060 +5684 6272 0.5150 +5684 6284 0.4290 +5684 6386 0.4530 +5684 6428 0.4530 +5684 6469 0.4010 +5684 6500 0.6830 +5684 6502 0.4560 +5684 6622 0.8020 +5684 6627 0.4800 +5684 6633 0.5090 +5684 6634 0.4100 +5684 6635 0.5500 +5684 6636 0.5710 +5684 6647 0.7380 +5684 6729 0.4050 +5684 6732 0.4250 +5684 6741 0.4220 +5684 6790 0.4130 +5684 6921 0.6710 +5684 6923 0.6400 +5684 6950 0.6530 +5684 7124 0.4680 +5684 7133 0.4110 +5684 7157 0.4980 +5684 7167 0.5100 +5684 7186 0.4130 +5684 7187 0.4160 +5684 7203 0.6670 +5684 7311 0.9400 +5684 7314 0.9450 +5684 7316 0.9480 +5684 7317 0.4370 +5684 7321 0.5030 +5684 7324 0.5220 +5684 7334 0.5640 +5684 7336 0.7450 +5684 7337 0.6790 +5684 7341 0.4200 +5684 7347 0.6740 +5684 7353 0.5910 +5684 7381 0.4210 +5684 7411 0.6580 +5684 7415 0.7480 +5684 7416 0.4030 +5684 7458 0.4670 +5684 7529 0.4050 +5684 7532 0.4830 +5684 7874 0.4660 +5684 7916 0.4250 +5684 7919 0.5170 +5684 7936 0.4860 +5684 8078 0.5370 +5684 8106 0.4190 +5684 8260 0.6490 +5684 8312 0.4030 +5684 8313 0.4030 +5684 8452 0.5300 +5684 8453 0.4400 +5684 8454 0.4790 +5684 8520 0.4710 +5684 8600 0.4050 +5684 8607 0.6040 +5684 8624 0.8180 +5684 8650 0.6050 +5684 8658 0.4330 +5684 8662 0.6330 +5684 8665 0.5360 +5684 8666 0.5770 +5684 8668 0.8050 +5684 8676 0.4280 +5684 8697 0.4280 +5684 8742 0.4150 +5684 8881 0.4650 +5684 8892 0.4450 +5684 8894 0.6200 +5684 8945 0.4850 +5684 8994 0.4060 +5684 9020 0.4050 +5684 9045 0.6090 +5684 9097 0.9910 +5684 9134 0.4050 +5684 9141 0.4650 +5684 9212 0.6370 +5684 9253 0.4330 +5684 9255 0.6270 +5684 9491 0.9420 +5684 9817 0.5550 +5684 9861 0.9990 +5684 9978 0.6670 +5684 10075 0.4090 +5684 10146 0.4520 +5684 10197 0.8020 +5684 10213 0.9990 +5684 10236 0.5120 +5684 10273 0.5420 +5684 10284 0.4420 +5684 10294 0.4050 +5684 10383 0.4300 +5684 10393 0.4950 +5684 10399 0.6940 +5684 10432 0.4580 +5684 10471 0.6800 +5684 10476 0.4280 +5684 10480 0.7390 +5684 10492 0.5340 +5684 10521 0.4050 +5684 10537 0.6100 +5684 10574 0.7740 +5684 10575 0.8020 +5684 10576 0.8500 +5684 10673 0.4530 +5684 10694 0.8470 +5684 10726 0.5350 +5684 10923 0.4340 +5684 10944 0.4710 +5684 10963 0.6190 +5684 10971 0.4400 +5684 10980 0.4230 +5684 10987 0.5050 +5684 11047 0.9600 +5684 11059 0.4040 +5684 11065 0.4980 +5684 11140 0.5340 +5684 22938 0.5370 +5684 22948 0.8060 +5684 23072 0.4040 +5684 23194 0.4050 +5684 23198 0.9970 +5684 23392 0.6520 +5684 23435 0.4170 +5684 25793 0.6510 +5684 25804 0.4630 +5684 25879 0.4690 +5684 25906 0.4410 +5684 25914 0.4290 +5684 26043 0.7330 +5684 26271 0.4640 +5684 27085 0.5680 +5684 27258 0.4440 +5684 27338 0.5040 +5684 29882 0.4130 +5684 29945 0.4680 +5684 50846 0.4010 +5684 51053 0.4650 +5684 51138 0.4600 +5684 51343 0.4210 +5684 51371 0.9990 +5684 51377 0.9980 +5684 51433 0.4630 +5684 51434 0.4350 +5684 51493 0.4070 +5684 51512 0.4710 +5684 51529 0.4180 +5684 51574 0.4370 +5684 51637 0.4960 +5684 51667 0.5060 +5684 51684 0.4070 +5684 51686 0.4380 +5684 51691 0.4830 +5684 54859 0.4730 +5684 55122 0.8540 +5684 55294 0.5710 +5684 55626 0.4280 +5684 55666 0.5670 +5684 56893 0.9950 +5684 56984 0.9810 +5684 59269 0.4100 +5684 59349 0.4270 +5684 64221 0.4020 +5684 64344 0.4070 +5684 64682 0.4050 +5684 64750 0.4040 +5684 79184 0.7810 +5684 80351 0.4380 +5684 81847 0.4060 +5684 83473 0.5660 +5684 83737 0.4050 +5684 84324 0.4380 +5684 84954 0.7790 +5684 84962 0.4050 +5684 85476 0.4820 +5684 114803 0.7790 +5684 115650 0.4110 +5684 118460 0.4370 +5684 119504 0.4110 +5684 122706 0.9310 +5684 123228 0.5170 +5684 126374 0.4010 +5684 131076 0.4480 +5684 134510 0.4250 +5684 143471 0.9950 +5684 161742 0.4060 +5684 167465 0.5260 +5684 200734 0.4060 +5684 246184 0.4130 +5684 399473 0.4060 +5684 100652824 0.5170 +5685 5686 0.9990 +5685 5687 0.9990 +5685 5688 0.9990 +5685 5689 0.9990 +5685 5690 0.9990 +5685 5691 0.9990 +5685 5692 0.9990 +5685 5693 0.9990 +5685 5694 0.9990 +5685 5695 0.9990 +5685 5696 0.9990 +5685 5698 0.9990 +5685 5699 0.9950 +5685 5700 0.9990 +5685 5701 0.9990 +5685 5702 0.9990 +5685 5704 0.9990 +5685 5705 0.9990 +5685 5706 0.9990 +5685 5707 0.9990 +5685 5708 0.9990 +5685 5709 0.9980 +5685 5710 0.9990 +5685 5711 0.7400 +5685 5713 0.9990 +5685 5714 0.9990 +5685 5715 0.6350 +5685 5716 0.4890 +5685 5717 0.9990 +5685 5718 0.9990 +5685 5719 0.9980 +5685 5720 0.9920 +5685 5721 0.9900 +5685 5728 0.4410 +5685 5901 0.6370 +5685 5955 0.4630 +5685 5966 0.4610 +5685 5970 0.4800 +5685 5971 0.5070 +5685 6124 0.4340 +5685 6128 0.5020 +5685 6133 0.5530 +5685 6136 0.4680 +5685 6137 0.5180 +5685 6139 0.4230 +5685 6143 0.4090 +5685 6155 0.5020 +5685 6156 0.4720 +5685 6157 0.5170 +5685 6160 0.4540 +5685 6165 0.4420 +5685 6175 0.4410 +5685 6181 0.4760 +5685 6187 0.5590 +5685 6188 0.4740 +5685 6189 0.4970 +5685 6191 0.4670 +5685 6202 0.4810 +5685 6203 0.4500 +5685 6217 0.5490 +5685 6224 0.5960 +5685 6229 0.5070 +5685 6233 0.9780 +5685 6272 0.8050 +5685 6469 0.4010 +5685 6500 0.7180 +5685 6502 0.4690 +5685 6598 0.4860 +5685 6622 0.6650 +5685 6632 0.4430 +5685 6633 0.4960 +5685 6634 0.6890 +5685 6635 0.5270 +5685 6636 0.5210 +5685 6637 0.4740 +5685 6647 0.7450 +5685 6653 0.4710 +5685 6741 0.6580 +5685 6790 0.4380 +5685 6902 0.4400 +5685 6921 0.6570 +5685 6923 0.5350 +5685 6950 0.5160 +5685 7124 0.4330 +5685 7133 0.4120 +5685 7157 0.4660 +5685 7186 0.4560 +5685 7187 0.4590 +5685 7203 0.5050 +5685 7247 0.4220 +5685 7295 0.4260 +5685 7311 0.9430 +5685 7314 0.9700 +5685 7316 0.9660 +5685 7321 0.5210 +5685 7324 0.5520 +5685 7334 0.5510 +5685 7336 0.8530 +5685 7337 0.6750 +5685 7347 0.6440 +5685 7353 0.5890 +5685 7411 0.6760 +5685 7415 0.8210 +5685 7428 0.4070 +5685 7458 0.4170 +5685 7919 0.4960 +5685 8106 0.4090 +5685 8260 0.4660 +5685 8312 0.4030 +5685 8313 0.4030 +5685 8405 0.4050 +5685 8452 0.5720 +5685 8453 0.4200 +5685 8454 0.6210 +5685 8520 0.4100 +5685 8600 0.4050 +5685 8607 0.5440 +5685 8624 0.7890 +5685 8638 0.4010 +5685 8650 0.4120 +5685 8658 0.4440 +5685 8662 0.5280 +5685 8665 0.4410 +5685 8666 0.5590 +5685 8668 0.6750 +5685 8697 0.4390 +5685 8742 0.4500 +5685 8792 0.4030 +5685 8881 0.4840 +5685 8894 0.4110 +5685 8945 0.4210 +5685 8994 0.4050 +5685 9020 0.4140 +5685 9045 0.4190 +5685 9097 0.9960 +5685 9134 0.4100 +5685 9212 0.4450 +5685 9255 0.6620 +5685 9267 0.4140 +5685 9352 0.4100 +5685 9373 0.4390 +5685 9491 0.9820 +5685 9551 0.4010 +5685 9636 0.4570 +5685 9817 0.5530 +5685 9861 0.9990 +5685 9978 0.7160 +5685 10075 0.4400 +5685 10190 0.4090 +5685 10197 0.8870 +5685 10213 0.9990 +5685 10236 0.4410 +5685 10284 0.4110 +5685 10393 0.5010 +5685 10399 0.5230 +5685 10471 0.6680 +5685 10480 0.5540 +5685 10492 0.4920 +5685 10537 0.6820 +5685 10574 0.6140 +5685 10575 0.6880 +5685 10576 0.7310 +5685 10673 0.4730 +5685 10694 0.7310 +5685 10713 0.4040 +5685 10726 0.4720 +5685 10935 0.4570 +5685 10963 0.4860 +5685 10980 0.4050 +5685 10987 0.5750 +5685 11047 0.9780 +5685 11059 0.4090 +5685 11065 0.4920 +5685 22948 0.6880 +5685 22986 0.4700 +5685 23072 0.4040 +5685 23194 0.4030 +5685 23198 0.9920 +5685 23203 0.4030 +5685 23392 0.6160 +5685 23557 0.6730 +5685 23658 0.4310 +5685 25793 0.5980 +5685 25906 0.4110 +5685 26043 0.7330 +5685 26258 0.4930 +5685 26271 0.4340 +5685 27089 0.4090 +5685 27258 0.5310 +5685 27338 0.4900 +5685 27351 0.9940 +5685 28985 0.4080 +5685 29093 0.6000 +5685 29882 0.4160 +5685 29945 0.4500 +5685 29979 0.4170 +5685 50846 0.4010 +5685 51053 0.5010 +5685 51138 0.4080 +5685 51343 0.4300 +5685 51371 0.9990 +5685 51377 0.9980 +5685 51433 0.5360 +5685 51434 0.4110 +5685 51510 0.5580 +5685 51512 0.4360 +5685 51529 0.4370 +5685 51574 0.4420 +5685 51637 0.4440 +5685 51667 0.5090 +5685 51684 0.4070 +5685 51686 0.4740 +5685 51699 0.4170 +5685 54859 0.4810 +5685 55122 0.9270 +5685 55294 0.6040 +5685 55666 0.5340 +5685 55717 0.5500 +5685 56061 0.6570 +5685 56893 0.9950 +5685 56984 0.9710 +5685 57537 0.4700 +5685 59269 0.4100 +5685 59349 0.4210 +5685 64221 0.4020 +5685 64326 0.4200 +5685 64344 0.4380 +5685 64682 0.4130 +5685 64750 0.4430 +5685 79184 0.7330 +5685 80349 0.4440 +5685 80351 0.4400 +5685 81847 0.4570 +5685 81892 0.4550 +5685 83473 0.5670 +5685 83737 0.4050 +5685 84262 0.6960 +5685 84954 0.7290 +5685 114803 0.7290 +5685 114815 0.4700 +5685 115650 0.4060 +5685 119504 0.4050 +5685 122706 0.8800 +5685 123228 0.5170 +5685 123688 0.8890 +5685 134510 0.7160 +5685 143471 0.9950 +5685 246184 0.4190 +5685 339745 0.4010 +5685 389362 0.4500 +5685 100652824 0.8160 +5686 5687 0.9990 +5686 5688 0.9990 +5686 5689 0.9990 +5686 5690 0.9990 +5686 5691 0.9990 +5686 5692 0.9990 +5686 5693 0.9990 +5686 5694 0.9990 +5686 5695 0.9990 +5686 5696 0.9990 +5686 5698 0.9990 +5686 5699 0.9990 +5686 5700 0.9990 +5686 5701 0.9990 +5686 5702 0.9990 +5686 5704 0.9990 +5686 5705 0.9990 +5686 5706 0.9990 +5686 5707 0.9990 +5686 5708 0.9990 +5686 5709 0.9990 +5686 5710 0.9990 +5686 5711 0.5090 +5686 5713 0.9990 +5686 5714 0.9980 +5686 5715 0.6180 +5686 5716 0.5250 +5686 5717 0.9990 +5686 5718 0.9990 +5686 5719 0.9990 +5686 5720 0.9860 +5686 5721 0.9930 +5686 5728 0.4220 +5686 5901 0.5720 +5686 5955 0.4780 +5686 5966 0.4230 +5686 5970 0.4400 +5686 5971 0.4470 +5686 6059 0.4060 +5686 6122 0.4100 +5686 6124 0.5000 +5686 6125 0.4720 +5686 6128 0.5830 +5686 6129 0.4990 +5686 6130 0.5240 +5686 6133 0.5590 +5686 6135 0.4960 +5686 6136 0.5430 +5686 6137 0.5470 +5686 6138 0.7140 +5686 6141 0.5330 +5686 6142 0.4350 +5686 6143 0.5570 +5686 6154 0.4840 +5686 6155 0.6780 +5686 6156 0.5350 +5686 6157 0.6210 +5686 6158 0.5370 +5686 6160 0.5000 +5686 6164 0.5050 +5686 6165 0.5390 +5686 6175 0.5420 +5686 6181 0.4600 +5686 6187 0.7180 +5686 6188 0.5910 +5686 6189 0.4660 +5686 6191 0.5780 +5686 6201 0.4200 +5686 6202 0.6510 +5686 6203 0.6410 +5686 6206 0.4850 +5686 6207 0.5410 +5686 6208 0.4360 +5686 6210 0.4400 +5686 6217 0.6640 +5686 6222 0.4550 +5686 6224 0.7300 +5686 6228 0.4120 +5686 6231 0.4980 +5686 6233 0.9620 +5686 6272 0.7980 +5686 6396 0.4160 +5686 6469 0.4010 +5686 6500 0.6940 +5686 6502 0.4580 +5686 6622 0.6550 +5686 6647 0.7460 +5686 6790 0.5200 +5686 6921 0.6210 +5686 6923 0.6250 +5686 6950 0.6560 +5686 7124 0.4310 +5686 7133 0.4550 +5686 7157 0.4880 +5686 7167 0.5170 +5686 7186 0.4120 +5686 7187 0.4160 +5686 7203 0.7540 +5686 7247 0.4080 +5686 7311 0.9500 +5686 7314 0.9480 +5686 7316 0.9510 +5686 7321 0.4450 +5686 7324 0.4590 +5686 7328 0.4160 +5686 7332 0.4340 +5686 7334 0.4880 +5686 7336 0.7190 +5686 7337 0.6650 +5686 7341 0.6510 +5686 7347 0.6970 +5686 7353 0.5900 +5686 7398 0.4460 +5686 7411 0.6320 +5686 7415 0.7050 +5686 7419 0.5300 +5686 7534 0.4100 +5686 7874 0.5050 +5686 8078 0.4020 +5686 8260 0.4620 +5686 8312 0.4030 +5686 8313 0.4030 +5686 8405 0.4050 +5686 8452 0.5310 +5686 8453 0.4240 +5686 8454 0.5130 +5686 8600 0.4050 +5686 8607 0.5340 +5686 8624 0.9230 +5686 8650 0.4120 +5686 8658 0.4330 +5686 8662 0.6610 +5686 8665 0.5640 +5686 8666 0.5090 +5686 8668 0.7900 +5686 8697 0.5010 +5686 8742 0.4150 +5686 8881 0.4930 +5686 8892 0.4470 +5686 8894 0.5110 +5686 8896 0.4070 +5686 8945 0.4700 +5686 8994 0.4030 +5686 9045 0.5460 +5686 9097 0.9890 +5686 9134 0.4080 +5686 9141 0.4510 +5686 9255 0.5270 +5686 9276 0.4020 +5686 9320 0.4290 +5686 9491 0.9780 +5686 9657 0.4310 +5686 9690 0.5150 +5686 9817 0.5660 +5686 9861 0.9990 +5686 9978 0.6540 +5686 10075 0.4110 +5686 10197 0.9070 +5686 10213 0.9990 +5686 10236 0.4250 +5686 10393 0.4830 +5686 10399 0.7120 +5686 10471 0.5340 +5686 10480 0.7580 +5686 10492 0.4630 +5686 10537 0.5730 +5686 10574 0.8190 +5686 10575 0.8550 +5686 10576 0.8180 +5686 10673 0.4190 +5686 10694 0.8050 +5686 10726 0.5150 +5686 10963 0.5420 +5686 10980 0.4290 +5686 10987 0.4470 +5686 11047 0.9750 +5686 11059 0.4130 +5686 11065 0.5900 +5686 11315 0.4040 +5686 11321 0.4150 +5686 22948 0.7270 +5686 23072 0.4040 +5686 23194 0.4010 +5686 23198 0.9920 +5686 23203 0.4260 +5686 23392 0.6490 +5686 25793 0.4950 +5686 25906 0.4990 +5686 25914 0.4160 +5686 26043 0.7330 +5686 26271 0.4290 +5686 27338 0.5040 +5686 27351 0.9940 +5686 29882 0.4100 +5686 29945 0.4660 +5686 29979 0.4140 +5686 50846 0.4010 +5686 51053 0.4660 +5686 51081 0.4950 +5686 51138 0.5810 +5686 51258 0.4920 +5686 51330 0.4050 +5686 51343 0.4210 +5686 51371 0.9930 +5686 51377 0.9970 +5686 51386 0.4690 +5686 51433 0.4680 +5686 51434 0.4470 +5686 51493 0.4450 +5686 51512 0.4190 +5686 51529 0.4210 +5686 51667 0.5430 +5686 51684 0.4070 +5686 51686 0.4280 +5686 51699 0.5150 +5686 54583 0.4080 +5686 55122 0.9570 +5686 55139 0.4430 +5686 55294 0.5890 +5686 55626 0.4280 +5686 55666 0.5310 +5686 56061 0.4650 +5686 56893 0.9940 +5686 56984 0.9950 +5686 59269 0.4270 +5686 59349 0.4320 +5686 64221 0.4020 +5686 64326 0.4030 +5686 64344 0.4070 +5686 64682 0.4940 +5686 64750 0.4090 +5686 79184 0.7310 +5686 79647 0.6860 +5686 80351 0.4330 +5686 81847 0.4060 +5686 83473 0.5660 +5686 83737 0.4050 +5686 84262 0.7940 +5686 84954 0.7190 +5686 84962 0.4050 +5686 114803 0.7190 +5686 119504 0.4110 +5686 122706 0.9520 +5686 123228 0.5200 +5686 134510 0.5000 +5686 143471 0.9970 +5686 161742 0.4060 +5686 200734 0.4060 +5686 246184 0.4510 +5686 284612 0.5220 +5686 343263 0.4210 +5686 389362 0.6960 +5686 399473 0.4060 +5686 100652824 0.8170 +5687 5688 0.9990 +5687 5689 0.9990 +5687 5690 0.9990 +5687 5691 0.9990 +5687 5692 0.9990 +5687 5693 0.9990 +5687 5694 0.9990 +5687 5695 0.9990 +5687 5696 0.9990 +5687 5698 0.9990 +5687 5699 0.9990 +5687 5700 0.9990 +5687 5701 0.9990 +5687 5702 0.9990 +5687 5704 0.9990 +5687 5705 0.9990 +5687 5706 0.9990 +5687 5707 0.9990 +5687 5708 0.9980 +5687 5709 0.9970 +5687 5710 0.9990 +5687 5711 0.6980 +5687 5713 0.9980 +5687 5714 0.9980 +5687 5715 0.4700 +5687 5716 0.5480 +5687 5717 0.9990 +5687 5718 0.9990 +5687 5719 0.9980 +5687 5720 0.9930 +5687 5721 0.9820 +5687 5728 0.4540 +5687 5901 0.5630 +5687 5955 0.4220 +5687 5966 0.4390 +5687 5970 0.4460 +5687 5971 0.4510 +5687 6124 0.4880 +5687 6128 0.5200 +5687 6129 0.4150 +5687 6132 0.4140 +5687 6133 0.7120 +5687 6136 0.4660 +5687 6137 0.4210 +5687 6138 0.4700 +5687 6142 0.4350 +5687 6155 0.5200 +5687 6156 0.5650 +5687 6157 0.4970 +5687 6158 0.4380 +5687 6160 0.4710 +5687 6164 0.4560 +5687 6165 0.5210 +5687 6175 0.4920 +5687 6181 0.5320 +5687 6187 0.5130 +5687 6188 0.4780 +5687 6189 0.5290 +5687 6191 0.4850 +5687 6202 0.4530 +5687 6203 0.5400 +5687 6207 0.4010 +5687 6208 0.4090 +5687 6217 0.5410 +5687 6224 0.6290 +5687 6233 0.9800 +5687 6272 0.5690 +5687 6284 0.4180 +5687 6428 0.4870 +5687 6469 0.4010 +5687 6500 0.7100 +5687 6502 0.4310 +5687 6622 0.6630 +5687 6633 0.4700 +5687 6635 0.4990 +5687 6636 0.4260 +5687 6637 0.4260 +5687 6647 0.7540 +5687 6653 0.4020 +5687 6790 0.5270 +5687 6902 0.4340 +5687 6921 0.6530 +5687 6923 0.5470 +5687 6950 0.4980 +5687 7124 0.4500 +5687 7133 0.4110 +5687 7157 0.4780 +5687 7167 0.4230 +5687 7186 0.4420 +5687 7187 0.4320 +5687 7203 0.7200 +5687 7247 0.4300 +5687 7295 0.4080 +5687 7311 0.9500 +5687 7314 0.9510 +5687 7316 0.9660 +5687 7317 0.5050 +5687 7318 0.4430 +5687 7321 0.5470 +5687 7324 0.6340 +5687 7334 0.6430 +5687 7336 0.6410 +5687 7337 0.6590 +5687 7341 0.4890 +5687 7347 0.6570 +5687 7353 0.6310 +5687 7411 0.6710 +5687 7415 0.7740 +5687 7416 0.4100 +5687 7417 0.4940 +5687 7419 0.6430 +5687 7428 0.4150 +5687 7458 0.4450 +5687 7919 0.4030 +5687 7936 0.6920 +5687 8106 0.4090 +5687 8260 0.4590 +5687 8312 0.4030 +5687 8313 0.4030 +5687 8405 0.4050 +5687 8452 0.5710 +5687 8453 0.4100 +5687 8454 0.5850 +5687 8533 0.4410 +5687 8600 0.4280 +5687 8607 0.5470 +5687 8624 0.7250 +5687 8650 0.4120 +5687 8658 0.4330 +5687 8662 0.5260 +5687 8665 0.4320 +5687 8666 0.5330 +5687 8668 0.7820 +5687 8697 0.4220 +5687 8740 0.4030 +5687 8742 0.4150 +5687 8878 0.5690 +5687 8881 0.4640 +5687 8886 0.4690 +5687 8892 0.4090 +5687 8894 0.4180 +5687 8994 0.4130 +5687 9020 0.4080 +5687 9025 0.4540 +5687 9045 0.4580 +5687 9097 0.9950 +5687 9134 0.4050 +5687 9255 0.6550 +5687 9318 0.5740 +5687 9352 0.5910 +5687 9491 0.9580 +5687 9690 0.4630 +5687 9692 0.6480 +5687 9817 0.5380 +5687 9861 0.9990 +5687 9939 0.5630 +5687 9978 0.7650 +5687 10075 0.4100 +5687 10197 0.8240 +5687 10213 0.9990 +5687 10236 0.4520 +5687 10284 0.4420 +5687 10294 0.4850 +5687 10383 0.5080 +5687 10393 0.4860 +5687 10399 0.5940 +5687 10471 0.6670 +5687 10480 0.6950 +5687 10492 0.4510 +5687 10537 0.7790 +5687 10574 0.5660 +5687 10575 0.7660 +5687 10576 0.7200 +5687 10673 0.4730 +5687 10694 0.8230 +5687 10726 0.4810 +5687 10856 0.4230 +5687 10944 0.4720 +5687 10963 0.5150 +5687 10980 0.4090 +5687 10987 0.6450 +5687 11047 0.9670 +5687 11059 0.4080 +5687 11065 0.4590 +5687 11315 0.4410 +5687 11316 0.5310 +5687 22948 0.7370 +5687 23072 0.4040 +5687 23194 0.4080 +5687 23198 0.9940 +5687 23392 0.7020 +5687 23435 0.4450 +5687 25793 0.6220 +5687 25804 0.4080 +5687 25879 0.4370 +5687 25906 0.4450 +5687 26043 0.7800 +5687 26271 0.4180 +5687 27089 0.4130 +5687 27338 0.4710 +5687 27351 0.9940 +5687 29093 0.4700 +5687 29103 0.5170 +5687 29882 0.4150 +5687 29945 0.5480 +5687 29978 0.6770 +5687 29979 0.5090 +5687 50846 0.4010 +5687 51023 0.4180 +5687 51053 0.4660 +5687 51138 0.4540 +5687 51234 0.5380 +5687 51330 0.4010 +5687 51343 0.4210 +5687 51371 0.9990 +5687 51377 0.9970 +5687 51433 0.5660 +5687 51434 0.4080 +5687 51493 0.4380 +5687 51512 0.4100 +5687 51529 0.4370 +5687 51637 0.5120 +5687 51667 0.5060 +5687 51684 0.4070 +5687 51686 0.4160 +5687 51691 0.4160 +5687 51699 0.4650 +5687 54859 0.4800 +5687 55122 0.9270 +5687 55139 0.4420 +5687 55294 0.5860 +5687 55611 0.4110 +5687 55666 0.5810 +5687 56061 0.4210 +5687 56893 0.9940 +5687 56984 0.9640 +5687 59269 0.4100 +5687 59349 0.4160 +5687 64100 0.4270 +5687 64221 0.4020 +5687 64320 0.4440 +5687 64326 0.4090 +5687 64344 0.4380 +5687 64682 0.4420 +5687 64750 0.4040 +5687 79184 0.7250 +5687 79647 0.4500 +5687 80351 0.4330 +5687 81631 0.4540 +5687 81847 0.4290 +5687 81892 0.4440 +5687 83473 0.5660 +5687 83737 0.4060 +5687 84954 0.7230 +5687 84962 0.4110 +5687 91543 0.4140 +5687 114803 0.7230 +5687 119504 0.4260 +5687 122706 0.8720 +5687 123228 0.5170 +5687 126374 0.4080 +5687 131076 0.4770 +5687 134510 0.4520 +5687 143471 0.9930 +5687 246184 0.4160 +5687 100652824 0.7480 +5688 5689 0.9990 +5688 5690 0.9990 +5688 5691 0.9990 +5688 5692 0.9990 +5688 5693 0.9990 +5688 5694 0.9990 +5688 5695 0.9990 +5688 5696 0.9990 +5688 5698 0.9990 +5688 5699 0.9930 +5688 5700 0.9990 +5688 5701 0.9990 +5688 5702 0.9970 +5688 5704 0.9980 +5688 5705 0.9960 +5688 5706 0.9990 +5688 5707 0.9980 +5688 5708 0.9980 +5688 5709 0.9950 +5688 5710 0.9990 +5688 5711 0.7630 +5688 5713 0.9970 +5688 5714 0.9970 +5688 5715 0.5250 +5688 5716 0.4580 +5688 5717 0.9970 +5688 5718 0.9970 +5688 5719 0.9970 +5688 5720 0.9920 +5688 5721 0.9760 +5688 5728 0.5390 +5688 5788 0.6970 +5688 5901 0.5450 +5688 5903 0.5500 +5688 5966 0.4720 +5688 5970 0.5070 +5688 5971 0.4790 +5688 6122 0.4480 +5688 6124 0.5730 +5688 6125 0.4480 +5688 6128 0.5630 +5688 6129 0.4690 +5688 6130 0.4640 +5688 6132 0.4130 +5688 6133 0.6120 +5688 6135 0.4490 +5688 6136 0.4740 +5688 6137 0.5470 +5688 6138 0.5890 +5688 6141 0.4820 +5688 6142 0.4450 +5688 6143 0.5630 +5688 6154 0.5010 +5688 6155 0.6680 +5688 6156 0.5570 +5688 6157 0.5710 +5688 6158 0.4690 +5688 6160 0.4920 +5688 6164 0.4630 +5688 6165 0.5400 +5688 6175 0.5580 +5688 6181 0.4980 +5688 6187 0.6980 +5688 6188 0.5940 +5688 6189 0.4460 +5688 6191 0.6130 +5688 6202 0.6380 +5688 6203 0.5670 +5688 6205 0.4450 +5688 6206 0.5100 +5688 6207 0.4970 +5688 6208 0.5130 +5688 6210 0.4540 +5688 6217 0.7190 +5688 6223 0.5060 +5688 6224 0.6930 +5688 6229 0.4280 +5688 6231 0.5430 +5688 6233 0.9550 +5688 6272 0.8000 +5688 6387 0.6650 +5688 6469 0.4650 +5688 6500 0.6800 +5688 6502 0.4460 +5688 6504 0.7200 +5688 6622 0.6750 +5688 6627 0.4020 +5688 6633 0.4560 +5688 6634 0.4010 +5688 6647 0.7270 +5688 6653 0.4100 +5688 6657 0.4360 +5688 6688 0.5430 +5688 6790 0.5150 +5688 6886 0.4180 +5688 6915 0.4740 +5688 6921 0.5740 +5688 6923 0.5980 +5688 6950 0.5880 +5688 7037 0.4640 +5688 7066 0.6630 +5688 7070 0.5070 +5688 7074 0.6850 +5688 7124 0.6250 +5688 7133 0.4880 +5688 7153 0.4680 +5688 7157 0.6530 +5688 7186 0.4160 +5688 7187 0.4630 +5688 7203 0.6380 +5688 7266 0.4680 +5688 7311 0.9340 +5688 7314 0.9320 +5688 7316 0.9420 +5688 7321 0.4730 +5688 7324 0.4510 +5688 7325 0.4840 +5688 7334 0.4070 +5688 7336 0.6110 +5688 7337 0.6680 +5688 7347 0.5780 +5688 7353 0.6630 +5688 7411 0.5560 +5688 7412 0.4490 +5688 7415 0.7290 +5688 7416 0.5010 +5688 7428 0.4120 +5688 7529 0.4870 +5688 7852 0.6030 +5688 7879 0.5510 +5688 7965 0.5280 +5688 7979 0.4710 +5688 8260 0.4590 +5688 8312 0.4230 +5688 8313 0.4490 +5688 8405 0.4420 +5688 8452 0.6580 +5688 8453 0.4150 +5688 8454 0.6090 +5688 8562 0.4610 +5688 8600 0.5100 +5688 8607 0.5190 +5688 8624 0.9160 +5688 8636 0.4840 +5688 8650 0.4630 +5688 8658 0.4530 +5688 8661 0.4210 +5688 8662 0.5630 +5688 8665 0.5280 +5688 8666 0.4840 +5688 8668 0.7790 +5688 8697 0.4180 +5688 8742 0.4680 +5688 8792 0.4190 +5688 8842 0.4460 +5688 8878 0.4370 +5688 8881 0.4400 +5688 8894 0.5830 +5688 8900 0.4340 +5688 8945 0.4280 +5688 8994 0.4050 +5688 9020 0.4080 +5688 9040 0.4920 +5688 9045 0.5160 +5688 9097 0.9850 +5688 9134 0.4380 +5688 9246 0.4100 +5688 9255 0.8360 +5688 9491 0.9810 +5688 9529 0.4950 +5688 9627 0.4030 +5688 9669 0.4390 +5688 9817 0.5680 +5688 9861 0.9970 +5688 9978 0.6310 +5688 10197 0.8450 +5688 10213 0.9980 +5688 10236 0.4240 +5688 10273 0.4570 +5688 10393 0.4430 +5688 10399 0.6980 +5688 10471 0.5560 +5688 10480 0.5680 +5688 10492 0.4850 +5688 10537 0.5660 +5688 10574 0.7530 +5688 10575 0.8270 +5688 10576 0.7540 +5688 10589 0.4160 +5688 10661 0.4410 +5688 10673 0.4480 +5688 10694 0.7740 +5688 10726 0.4820 +5688 10763 0.4240 +5688 10856 0.4400 +5688 10935 0.4630 +5688 10963 0.4780 +5688 10980 0.4770 +5688 10987 0.4090 +5688 11047 0.9370 +5688 11059 0.4180 +5688 11065 0.5720 +5688 11140 0.5710 +5688 11315 0.5500 +5688 11316 0.5320 +5688 22827 0.5000 +5688 22948 0.7740 +5688 22986 0.4100 +5688 23072 0.4180 +5688 23194 0.4010 +5688 23198 0.9930 +5688 23208 0.4260 +5688 23392 0.9100 +5688 23476 0.4360 +5688 23770 0.5850 +5688 25906 0.4100 +5688 26043 0.7320 +5688 26271 0.4400 +5688 27338 0.5430 +5688 27351 0.9940 +5688 28985 0.4180 +5688 29102 0.4760 +5688 29882 0.4420 +5688 29945 0.4400 +5688 29979 0.4900 +5688 50846 0.4280 +5688 51053 0.4380 +5688 51330 0.4500 +5688 51343 0.4210 +5688 51371 0.9990 +5688 51377 0.9970 +5688 51433 0.4180 +5688 51434 0.4330 +5688 51512 0.4140 +5688 51529 0.4700 +5688 51667 0.5060 +5688 51684 0.4070 +5688 51686 0.4410 +5688 53335 0.4280 +5688 54583 0.4240 +5688 54790 0.5700 +5688 54941 0.4100 +5688 55122 0.9270 +5688 55294 0.4910 +5688 55666 0.5500 +5688 56061 0.4140 +5688 56893 0.9940 +5688 56984 0.9250 +5688 57007 0.4280 +5688 57506 0.6770 +5688 57537 0.4100 +5688 59269 0.4100 +5688 59349 0.4180 +5688 64221 0.4020 +5688 64326 0.4010 +5688 64344 0.4210 +5688 64682 0.4050 +5688 64750 0.4390 +5688 79184 0.4890 +5688 80143 0.4090 +5688 80351 0.4530 +5688 81847 0.4060 +5688 83473 0.5680 +5688 83737 0.4390 +5688 84262 0.8020 +5688 84954 0.4850 +5688 112399 0.4330 +5688 114803 0.5640 +5688 114815 0.4100 +5688 115650 0.4090 +5688 119504 0.4050 +5688 122706 0.9320 +5688 123228 0.5210 +5688 124540 0.4120 +5688 134510 0.4850 +5688 135138 0.4650 +5688 143471 0.9770 +5688 171023 0.4950 +5688 246184 0.4350 +5688 389362 0.5510 +5688 728378 0.5530 +5688 100652824 0.6450 +5689 5690 0.9990 +5689 5691 0.9990 +5689 5692 0.9990 +5689 5693 0.9990 +5689 5694 0.9990 +5689 5695 0.9990 +5689 5696 0.9990 +5689 5698 0.9990 +5689 5699 0.9990 +5689 5700 0.9990 +5689 5701 0.9990 +5689 5702 0.9990 +5689 5704 0.9990 +5689 5705 0.9980 +5689 5706 0.9990 +5689 5707 0.9990 +5689 5708 0.9990 +5689 5709 0.9990 +5689 5710 0.9990 +5689 5711 0.7700 +5689 5713 0.9990 +5689 5714 0.9980 +5689 5715 0.6340 +5689 5717 0.9990 +5689 5718 0.9990 +5689 5719 0.9990 +5689 5720 0.9860 +5689 5721 0.9860 +5689 5728 0.4290 +5689 5824 0.4940 +5689 5966 0.4530 +5689 5970 0.4440 +5689 5971 0.4350 +5689 5987 0.6230 +5689 6125 0.6860 +5689 6135 0.4630 +5689 6141 0.5090 +5689 6157 0.4230 +5689 6175 0.4260 +5689 6181 0.4600 +5689 6217 0.4040 +5689 6224 0.4710 +5689 6228 0.4480 +5689 6233 0.9690 +5689 6272 0.8000 +5689 6396 0.4470 +5689 6469 0.4100 +5689 6500 0.7020 +5689 6502 0.4300 +5689 6622 0.6560 +5689 6635 0.4090 +5689 6636 0.5600 +5689 6647 0.7950 +5689 6653 0.4720 +5689 6790 0.4600 +5689 6921 0.6550 +5689 6923 0.5460 +5689 6940 0.4080 +5689 7124 0.4550 +5689 7133 0.4530 +5689 7157 0.4860 +5689 7167 0.4470 +5689 7186 0.4390 +5689 7187 0.4360 +5689 7311 0.9430 +5689 7314 0.9570 +5689 7316 0.9540 +5689 7319 0.4550 +5689 7321 0.5410 +5689 7324 0.5330 +5689 7336 0.5720 +5689 7337 0.6980 +5689 7347 0.6120 +5689 7353 0.6460 +5689 7411 0.4460 +5689 7415 0.6640 +5689 7428 0.4160 +5689 7979 0.4980 +5689 8312 0.4180 +5689 8313 0.4030 +5689 8452 0.5550 +5689 8453 0.4130 +5689 8454 0.5200 +5689 8600 0.4050 +5689 8607 0.4090 +5689 8624 0.9260 +5689 8650 0.4320 +5689 8658 0.4330 +5689 8666 0.4720 +5689 8668 0.5770 +5689 8697 0.4430 +5689 8742 0.4360 +5689 8881 0.4590 +5689 8945 0.4170 +5689 8994 0.4160 +5689 9020 0.4520 +5689 9040 0.4890 +5689 9097 0.9910 +5689 9204 0.4090 +5689 9255 0.4710 +5689 9491 0.9860 +5689 9690 0.4470 +5689 9817 0.5850 +5689 9861 0.9990 +5689 9978 0.7720 +5689 10197 0.8360 +5689 10213 0.9990 +5689 10393 0.4670 +5689 10471 0.5290 +5689 10476 0.4380 +5689 10537 0.6330 +5689 10574 0.4160 +5689 10575 0.4620 +5689 10576 0.4420 +5689 10673 0.4030 +5689 10980 0.4120 +5689 10982 0.4470 +5689 11047 0.9800 +5689 11059 0.4060 +5689 11065 0.4670 +5689 11315 0.4380 +5689 11335 0.4190 +5689 22948 0.5130 +5689 22986 0.4700 +5689 23072 0.4040 +5689 23194 0.4150 +5689 23198 0.9880 +5689 23392 0.5400 +5689 25793 0.8140 +5689 25906 0.4030 +5689 26043 0.7330 +5689 26271 0.4190 +5689 27316 0.4770 +5689 27338 0.5250 +5689 27351 0.9940 +5689 29882 0.4250 +5689 29945 0.5890 +5689 50846 0.4010 +5689 51053 0.4400 +5689 51138 0.4090 +5689 51330 0.4310 +5689 51343 0.4290 +5689 51371 0.9990 +5689 51377 0.9970 +5689 51433 0.5170 +5689 51434 0.4370 +5689 51512 0.4230 +5689 51529 0.5060 +5689 51569 0.4220 +5689 51667 0.5080 +5689 51684 0.4070 +5689 51686 0.4280 +5689 55122 0.8550 +5689 55294 0.4390 +5689 55644 0.6580 +5689 55666 0.5340 +5689 55780 0.5010 +5689 55929 0.4120 +5689 56851 0.4300 +5689 56893 0.9950 +5689 56984 0.9520 +5689 57537 0.4700 +5689 57685 0.4090 +5689 59269 0.4100 +5689 59349 0.4200 +5689 64221 0.4020 +5689 64326 0.4330 +5689 64344 0.4070 +5689 64682 0.4120 +5689 64750 0.4540 +5689 79077 0.4280 +5689 79184 0.7030 +5689 80011 0.4390 +5689 80351 0.4340 +5689 81847 0.4230 +5689 83473 0.5680 +5689 83737 0.4060 +5689 84262 0.5780 +5689 84447 0.4130 +5689 84498 0.6150 +5689 84954 0.6980 +5689 84962 0.4060 +5689 114803 0.6980 +5689 114815 0.4700 +5689 115265 0.6090 +5689 119504 0.4010 +5689 122706 0.9050 +5689 123228 0.5200 +5689 126374 0.4060 +5689 134510 0.4170 +5689 143471 0.9980 +5689 161742 0.4380 +5689 200734 0.4380 +5689 246184 0.4190 +5689 253769 0.4020 +5689 284371 0.4630 +5689 399473 0.4420 +5689 100652824 0.8990 +5690 5691 0.9990 +5690 5692 0.9990 +5690 5693 0.9990 +5690 5694 0.9990 +5690 5695 0.9990 +5690 5696 0.9990 +5690 5698 0.9990 +5690 5699 0.9990 +5690 5700 0.9990 +5690 5701 0.9990 +5690 5702 0.9990 +5690 5704 0.9990 +5690 5705 0.9990 +5690 5706 0.9990 +5690 5707 0.9990 +5690 5708 0.9990 +5690 5709 0.9980 +5690 5710 0.9990 +5690 5711 0.7560 +5690 5713 0.9990 +5690 5714 0.9990 +5690 5715 0.6470 +5690 5716 0.5440 +5690 5717 0.9990 +5690 5718 0.9990 +5690 5719 0.9990 +5690 5720 0.9840 +5690 5721 0.9810 +5690 5728 0.4500 +5690 5886 0.6340 +5690 5887 0.7170 +5690 5901 0.5130 +5690 5966 0.4260 +5690 5970 0.4450 +5690 5971 0.4210 +5690 6187 0.4310 +5690 6231 0.4370 +5690 6233 0.9670 +5690 6272 0.5190 +5690 6396 0.4170 +5690 6469 0.4010 +5690 6500 0.6370 +5690 6502 0.4180 +5690 6622 0.6830 +5690 6631 0.4650 +5690 6632 0.4740 +5690 6633 0.5580 +5690 6634 0.5360 +5690 6635 0.5270 +5690 6636 0.4010 +5690 6647 0.7340 +5690 6790 0.5100 +5690 6921 0.5550 +5690 6923 0.4980 +5690 7124 0.5730 +5690 7133 0.4390 +5690 7157 0.4840 +5690 7186 0.4230 +5690 7187 0.4100 +5690 7247 0.4310 +5690 7311 0.9480 +5690 7314 0.9860 +5690 7316 0.9880 +5690 7319 0.4340 +5690 7321 0.5120 +5690 7322 0.4980 +5690 7324 0.5020 +5690 7334 0.5220 +5690 7336 0.5570 +5690 7337 0.7550 +5690 7345 0.4010 +5690 7347 0.6800 +5690 7353 0.5840 +5690 7411 0.4530 +5690 7415 0.8990 +5690 7879 0.5770 +5690 7905 0.4120 +5690 8266 0.5300 +5690 8312 0.4030 +5690 8313 0.4550 +5690 8405 0.4050 +5690 8452 0.5490 +5690 8453 0.4200 +5690 8454 0.4560 +5690 8600 0.4050 +5690 8607 0.4730 +5690 8624 0.8460 +5690 8638 0.4170 +5690 8650 0.4160 +5690 8658 0.4740 +5690 8666 0.4400 +5690 8668 0.5610 +5690 8697 0.4240 +5690 8742 0.4150 +5690 8881 0.4470 +5690 8945 0.4160 +5690 8994 0.4080 +5690 9040 0.4180 +5690 9097 0.9950 +5690 9134 0.4090 +5690 9255 0.5420 +5690 9343 0.4270 +5690 9491 0.9830 +5690 9636 0.4330 +5690 9690 0.5080 +5690 9817 0.5970 +5690 9861 0.9990 +5690 9939 0.4830 +5690 9978 0.6360 +5690 10197 0.8130 +5690 10204 0.5520 +5690 10213 0.9990 +5690 10294 0.4010 +5690 10393 0.4450 +5690 10440 0.4860 +5690 10471 0.5290 +5690 10535 0.7700 +5690 10537 0.6910 +5690 10539 0.5320 +5690 10574 0.5020 +5690 10575 0.5350 +5690 10576 0.5110 +5690 10673 0.4570 +5690 10694 0.4750 +5690 10713 0.8990 +5690 10726 0.4020 +5690 10856 0.4360 +5690 10944 0.4010 +5690 10980 0.6180 +5690 11047 0.9870 +5690 11051 0.4760 +5690 11059 0.4180 +5690 11065 0.4730 +5690 11330 0.4350 +5690 22948 0.5310 +5690 23072 0.4180 +5690 23194 0.4010 +5690 23198 0.9950 +5690 23392 0.7190 +5690 23549 0.4900 +5690 25793 0.7950 +5690 25906 0.4600 +5690 25912 0.5910 +5690 26043 0.9830 +5690 26271 0.4400 +5690 27243 0.4900 +5690 27258 0.5010 +5690 27285 0.4670 +5690 27338 0.4950 +5690 28985 0.4040 +5690 29101 0.4500 +5690 29882 0.4200 +5690 29945 0.5500 +5690 30968 0.5310 +5690 50846 0.4010 +5690 51053 0.4540 +5690 51081 0.5730 +5690 51118 0.4210 +5690 51258 0.4620 +5690 51330 0.4070 +5690 51343 0.4210 +5690 51371 0.9990 +5690 51377 0.9980 +5690 51433 0.4750 +5690 51434 0.4330 +5690 51493 0.4070 +5690 51512 0.4260 +5690 51529 0.4600 +5690 51643 0.7340 +5690 51667 0.5320 +5690 51684 0.4070 +5690 51686 0.4340 +5690 51699 0.5820 +5690 51807 0.4030 +5690 54583 0.4050 +5690 55122 0.9220 +5690 55139 0.4810 +5690 55294 0.4310 +5690 55611 0.4630 +5690 55666 0.5360 +5690 55968 0.4650 +5690 56061 0.6170 +5690 56851 0.7790 +5690 56984 0.9810 +5690 59269 0.4100 +5690 59349 0.4210 +5690 64221 0.4070 +5690 64344 0.4070 +5690 64682 0.4130 +5690 64750 0.4220 +5690 79029 0.7060 +5690 79184 0.8040 +5690 79572 0.6950 +5690 80351 0.4640 +5690 81847 0.4060 +5690 83473 0.5680 +5690 83737 0.4180 +5690 84954 0.8010 +5690 84962 0.4080 +5690 93550 0.4410 +5690 114803 0.8010 +5690 119504 0.4200 +5690 122706 0.9050 +5690 123228 0.5290 +5690 134510 0.7480 +5690 143471 0.9980 +5690 161742 0.4380 +5690 164153 0.4080 +5690 166378 0.7010 +5690 200734 0.4380 +5690 203068 0.4290 +5690 246184 0.4050 +5690 344905 0.5470 +5690 399473 0.4420 +5690 100652824 0.8060 +5691 5692 0.9990 +5691 5693 0.9990 +5691 5694 0.9990 +5691 5695 0.9990 +5691 5696 0.9990 +5691 5698 0.9990 +5691 5699 0.9990 +5691 5700 0.9990 +5691 5701 0.9990 +5691 5702 0.9990 +5691 5704 0.9990 +5691 5705 0.9980 +5691 5706 0.9990 +5691 5707 0.9980 +5691 5708 0.9980 +5691 5709 0.9990 +5691 5710 0.9990 +5691 5711 0.7060 +5691 5713 0.9990 +5691 5714 0.9990 +5691 5715 0.6240 +5691 5716 0.4260 +5691 5717 0.9980 +5691 5718 0.9980 +5691 5719 0.9990 +5691 5720 0.9800 +5691 5721 0.9810 +5691 5728 0.4310 +5691 5966 0.4290 +5691 5970 0.4360 +5691 5971 0.4250 +5691 6224 0.4180 +5691 6233 0.9650 +5691 6272 0.5150 +5691 6469 0.4010 +5691 6500 0.6500 +5691 6502 0.4060 +5691 6622 0.6590 +5691 6631 0.4600 +5691 6633 0.7660 +5691 6634 0.4720 +5691 6635 0.4160 +5691 6647 0.7350 +5691 6790 0.4680 +5691 6921 0.7130 +5691 6923 0.5430 +5691 7124 0.4240 +5691 7133 0.4770 +5691 7153 0.5390 +5691 7157 0.6050 +5691 7186 0.4910 +5691 7187 0.4030 +5691 7311 0.9550 +5691 7314 0.9520 +5691 7316 0.9520 +5691 7321 0.4760 +5691 7324 0.5040 +5691 7336 0.5720 +5691 7337 0.6650 +5691 7347 0.6290 +5691 7353 0.6640 +5691 7411 0.4340 +5691 7415 0.6540 +5691 7428 0.4100 +5691 7965 0.4320 +5691 8312 0.4030 +5691 8313 0.4030 +5691 8405 0.4160 +5691 8452 0.5430 +5691 8453 0.4150 +5691 8454 0.4730 +5691 8600 0.4050 +5691 8624 0.8420 +5691 8650 0.4160 +5691 8658 0.4330 +5691 8666 0.4200 +5691 8668 0.5100 +5691 8697 0.4230 +5691 8742 0.4150 +5691 8881 0.4480 +5691 8945 0.4650 +5691 8994 0.4080 +5691 9020 0.4770 +5691 9097 0.9900 +5691 9255 0.4300 +5691 9491 0.9760 +5691 9690 0.4470 +5691 9817 0.5540 +5691 9861 0.9980 +5691 9978 0.8470 +5691 10197 0.8800 +5691 10204 0.4160 +5691 10213 0.9990 +5691 10393 0.4710 +5691 10471 0.5260 +5691 10537 0.6180 +5691 10575 0.4260 +5691 10576 0.4600 +5691 10673 0.4130 +5691 10980 0.4470 +5691 11047 0.9650 +5691 11059 0.4150 +5691 11065 0.5250 +5691 11140 0.5230 +5691 11315 0.4130 +5691 23072 0.4080 +5691 23194 0.4130 +5691 23198 0.9850 +5691 23392 0.5590 +5691 25793 0.7200 +5691 25804 0.4060 +5691 25906 0.4070 +5691 26043 0.7330 +5691 26271 0.4170 +5691 27089 0.4010 +5691 27338 0.5020 +5691 27351 0.9940 +5691 28974 0.6260 +5691 29882 0.4660 +5691 29945 0.4480 +5691 50846 0.4010 +5691 51021 0.4020 +5691 51053 0.5390 +5691 51255 0.4330 +5691 51330 0.4120 +5691 51343 0.4210 +5691 51371 0.9990 +5691 51377 0.9970 +5691 51433 0.4220 +5691 51434 0.4080 +5691 51512 0.4850 +5691 51529 0.5050 +5691 51667 0.5080 +5691 51684 0.4070 +5691 51686 0.4080 +5691 54859 0.4830 +5691 54998 0.4490 +5691 55122 0.9170 +5691 55127 0.4810 +5691 55294 0.4200 +5691 55611 0.4080 +5691 55666 0.5430 +5691 56061 0.5730 +5691 56851 0.4250 +5691 56893 0.9940 +5691 56984 0.9370 +5691 56993 0.6340 +5691 59269 0.4100 +5691 59349 0.4160 +5691 64221 0.4020 +5691 64326 0.4210 +5691 64344 0.4070 +5691 64682 0.4080 +5691 64750 0.4080 +5691 79184 0.6680 +5691 79647 0.5510 +5691 80011 0.4690 +5691 80347 0.4440 +5691 80351 0.4330 +5691 81847 0.4060 +5691 81873 0.4210 +5691 83473 0.5680 +5691 83737 0.4160 +5691 84262 0.7020 +5691 84299 0.4670 +5691 84954 0.6630 +5691 114803 0.6630 +5691 119504 0.4050 +5691 122706 0.9190 +5691 123228 0.5290 +5691 129401 0.4100 +5691 134510 0.5790 +5691 143471 0.9980 +5691 161742 0.4380 +5691 200734 0.4380 +5691 246184 0.4200 +5691 389362 0.5470 +5691 399473 0.4420 +5691 728378 0.5070 +5691 100652824 0.9200 +5692 5693 0.9990 +5692 5694 0.9990 +5692 5695 0.9990 +5692 5696 0.9990 +5692 5698 0.9990 +5692 5699 0.9990 +5692 5700 0.9990 +5692 5701 0.9990 +5692 5702 0.9980 +5692 5704 0.9990 +5692 5705 0.9980 +5692 5706 0.9990 +5692 5707 0.9980 +5692 5708 0.9980 +5692 5709 0.9980 +5692 5710 0.9990 +5692 5711 0.8510 +5692 5713 0.9990 +5692 5714 0.9990 +5692 5715 0.6540 +5692 5716 0.5110 +5692 5717 0.9990 +5692 5718 0.9990 +5692 5719 0.9990 +5692 5720 0.9940 +5692 5721 0.9920 +5692 5728 0.4320 +5692 5824 0.4510 +5692 5901 0.4380 +5692 5966 0.4570 +5692 5970 0.4650 +5692 5971 0.4470 +5692 6155 0.4870 +5692 6159 0.4170 +5692 6224 0.4290 +5692 6233 0.9670 +5692 6272 0.5070 +5692 6469 0.4100 +5692 6500 0.5570 +5692 6502 0.4030 +5692 6622 0.6610 +5692 6632 0.5740 +5692 6633 0.4480 +5692 6647 0.7260 +5692 6790 0.4460 +5692 6921 0.5490 +5692 6923 0.5700 +5692 7124 0.4600 +5692 7157 0.4780 +5692 7186 0.4080 +5692 7203 0.4630 +5692 7311 0.9400 +5692 7314 0.9570 +5692 7316 0.9540 +5692 7321 0.4850 +5692 7324 0.4830 +5692 7337 0.6420 +5692 7347 0.6200 +5692 7353 0.5880 +5692 7415 0.7380 +5692 7428 0.4010 +5692 7818 0.4520 +5692 7874 0.4250 +5692 7879 0.4890 +5692 7905 0.4570 +5692 7936 0.5370 +5692 8452 0.5960 +5692 8453 0.4100 +5692 8454 0.5910 +5692 8624 0.8990 +5692 8650 0.4050 +5692 8658 0.4380 +5692 8665 0.6610 +5692 8666 0.6640 +5692 8668 0.4740 +5692 8697 0.4200 +5692 8881 0.4330 +5692 8900 0.4160 +5692 8945 0.4030 +5692 8994 0.4030 +5692 9020 0.4020 +5692 9040 0.4470 +5692 9097 0.9820 +5692 9125 0.4200 +5692 9134 0.4090 +5692 9255 0.4520 +5692 9352 0.4230 +5692 9491 0.9870 +5692 9690 0.4670 +5692 9734 0.4040 +5692 9804 0.4260 +5692 9817 0.5230 +5692 9861 0.9990 +5692 9939 0.4820 +5692 9978 0.6550 +5692 10197 0.8550 +5692 10213 0.9990 +5692 10393 0.4160 +5692 10537 0.7290 +5692 10539 0.4190 +5692 10574 0.4360 +5692 10575 0.5440 +5692 10617 0.5900 +5692 10673 0.4010 +5692 10694 0.4610 +5692 10980 0.6230 +5692 10987 0.6320 +5692 11047 0.9670 +5692 11059 0.4440 +5692 11065 0.4490 +5692 11104 0.5290 +5692 11315 0.4580 +5692 23072 0.4440 +5692 23194 0.4270 +5692 23198 0.9910 +5692 23729 0.5190 +5692 25793 0.8240 +5692 25804 0.5420 +5692 25906 0.5390 +5692 25912 0.6330 +5692 26043 0.5060 +5692 26271 0.4550 +5692 26953 0.4710 +5692 27243 0.4960 +5692 27338 0.5000 +5692 27339 0.8410 +5692 29028 0.5230 +5692 29882 0.4100 +5692 29945 0.5340 +5692 50846 0.4060 +5692 51035 0.4040 +5692 51053 0.4250 +5692 51185 0.6050 +5692 51330 0.4430 +5692 51343 0.4190 +5692 51371 0.9990 +5692 51377 0.9970 +5692 51433 0.4400 +5692 51434 0.4050 +5692 51529 0.4670 +5692 51667 0.6340 +5692 51686 0.4450 +5692 51699 0.5340 +5692 54454 0.5250 +5692 54583 0.4040 +5692 55122 0.8530 +5692 55277 0.5180 +5692 55294 0.4980 +5692 55666 0.5160 +5692 56061 0.5540 +5692 56851 0.7190 +5692 56984 0.9740 +5692 57559 0.5720 +5692 59269 0.4350 +5692 59349 0.4370 +5692 64118 0.4210 +5692 64221 0.4100 +5692 64326 0.4290 +5692 64682 0.4030 +5692 64750 0.4770 +5692 64969 0.4500 +5692 79184 0.7410 +5692 80351 0.4380 +5692 83473 0.6630 +5692 83737 0.4450 +5692 84056 0.5180 +5692 84262 0.4260 +5692 84954 0.7370 +5692 84962 0.4040 +5692 94056 0.4880 +5692 114803 0.7500 +5692 119504 0.4330 +5692 122706 0.9530 +5692 123228 0.5500 +5692 134510 0.5660 +5692 143471 0.9980 +5692 161742 0.4380 +5692 200734 0.4380 +5692 246184 0.4280 +5692 256356 0.5180 +5692 286187 0.5720 +5692 399473 0.4420 +5692 100652824 0.8940 +5693 5694 0.9990 +5693 5695 0.9990 +5693 5696 0.9620 +5693 5698 0.9970 +5693 5699 0.9920 +5693 5700 0.9990 +5693 5701 0.9990 +5693 5702 0.9990 +5693 5704 0.9990 +5693 5705 0.9990 +5693 5706 0.9990 +5693 5707 0.9970 +5693 5708 0.9970 +5693 5709 0.9920 +5693 5710 0.9980 +5693 5711 0.8240 +5693 5713 0.9950 +5693 5714 0.9910 +5693 5715 0.5090 +5693 5716 0.4770 +5693 5717 0.9940 +5693 5718 0.9970 +5693 5719 0.9950 +5693 5720 0.9880 +5693 5721 0.9890 +5693 5728 0.4660 +5693 5966 0.4660 +5693 5970 0.4480 +5693 5971 0.4670 +5693 6155 0.4220 +5693 6233 0.9430 +5693 6272 0.8000 +5693 6469 0.4010 +5693 6500 0.6020 +5693 6502 0.4500 +5693 6622 0.6880 +5693 6647 0.7280 +5693 6790 0.5320 +5693 6892 0.4630 +5693 6921 0.4800 +5693 6923 0.5340 +5693 7124 0.5030 +5693 7133 0.4500 +5693 7150 0.5150 +5693 7157 0.5420 +5693 7186 0.4200 +5693 7187 0.4680 +5693 7311 0.9360 +5693 7314 0.9430 +5693 7316 0.9360 +5693 7321 0.5180 +5693 7324 0.4920 +5693 7337 0.6730 +5693 7347 0.6010 +5693 7353 0.6220 +5693 7415 0.6790 +5693 7428 0.4050 +5693 7874 0.5280 +5693 8312 0.4150 +5693 8313 0.4150 +5693 8452 0.5890 +5693 8453 0.4150 +5693 8454 0.5040 +5693 8600 0.4130 +5693 8650 0.4180 +5693 8658 0.4330 +5693 8666 0.4380 +5693 8697 0.4140 +5693 8742 0.4240 +5693 8878 0.5060 +5693 8881 0.4380 +5693 8900 0.4090 +5693 8945 0.5880 +5693 8994 0.4190 +5693 9020 0.4100 +5693 9040 0.5660 +5693 9097 0.9900 +5693 9134 0.4190 +5693 9491 0.9280 +5693 9817 0.6470 +5693 9861 0.9970 +5693 9978 0.6320 +5693 10197 0.5970 +5693 10213 0.9980 +5693 10393 0.4500 +5693 10537 0.5930 +5693 10574 0.5500 +5693 10673 0.4460 +5693 10980 0.5760 +5693 11047 0.9610 +5693 11059 0.4040 +5693 11065 0.6230 +5693 11315 0.5250 +5693 23072 0.4040 +5693 23194 0.4010 +5693 23198 0.9950 +5693 23392 0.6810 +5693 23552 0.5200 +5693 25793 0.5420 +5693 25906 0.4160 +5693 26043 0.7310 +5693 26271 0.4340 +5693 27338 0.5650 +5693 27351 0.9940 +5693 29882 0.4790 +5693 29945 0.5040 +5693 30968 0.4630 +5693 50846 0.4010 +5693 51053 0.4620 +5693 51330 0.4230 +5693 51343 0.4590 +5693 51371 0.9990 +5693 51377 0.9470 +5693 51433 0.4420 +5693 51434 0.4290 +5693 51512 0.4190 +5693 51529 0.5190 +5693 51667 0.5140 +5693 51684 0.4160 +5693 51686 0.4250 +5693 54583 0.4010 +5693 54859 0.4830 +5693 55122 0.8550 +5693 55294 0.4350 +5693 55651 0.4150 +5693 55666 0.5470 +5693 56061 0.4020 +5693 56893 0.9940 +5693 56984 0.9360 +5693 59269 0.4100 +5693 59349 0.4260 +5693 64221 0.4020 +5693 64326 0.4170 +5693 64344 0.4280 +5693 64682 0.4050 +5693 64750 0.4160 +5693 65117 0.4190 +5693 65258 0.7270 +5693 79184 0.5620 +5693 80351 0.4330 +5693 81847 0.4080 +5693 83473 0.5620 +5693 83737 0.4050 +5693 84262 0.4960 +5693 84301 0.4370 +5693 84313 0.4130 +5693 84954 0.5640 +5693 84962 0.4330 +5693 112399 0.4010 +5693 114803 0.5610 +5693 115650 0.4100 +5693 122706 0.7580 +5693 123228 0.5040 +5693 126374 0.4160 +5693 128308 0.5410 +5693 134510 0.4170 +5693 143471 0.9910 +5693 144165 0.4160 +5693 161742 0.4160 +5693 200734 0.4160 +5693 246184 0.4140 +5693 399473 0.4280 +5693 100652824 0.6140 +5694 5695 0.9990 +5694 5696 0.9990 +5694 5698 0.9170 +5694 5699 0.9930 +5694 5700 0.9990 +5694 5701 0.9980 +5694 5702 0.9980 +5694 5704 0.9980 +5694 5705 0.9960 +5694 5706 0.9990 +5694 5707 0.9970 +5694 5708 0.9960 +5694 5709 0.9950 +5694 5710 0.9990 +5694 5711 0.6530 +5694 5713 0.9930 +5694 5714 0.9990 +5694 5715 0.5070 +5694 5717 0.9950 +5694 5718 0.9970 +5694 5719 0.9980 +5694 5720 0.9790 +5694 5721 0.9610 +5694 5728 0.4440 +5694 5901 0.4920 +5694 5905 0.4260 +5694 5966 0.4410 +5694 5970 0.4700 +5694 5971 0.4400 +5694 6155 0.4950 +5694 6165 0.4150 +5694 6181 0.5260 +5694 6187 0.4280 +5694 6193 0.5000 +5694 6217 0.4150 +5694 6223 0.4240 +5694 6224 0.4880 +5694 6233 0.9620 +5694 6390 0.4350 +5694 6500 0.5910 +5694 6502 0.4380 +5694 6622 0.6810 +5694 6633 0.5970 +5694 6647 0.7410 +5694 6790 0.4390 +5694 6892 0.4420 +5694 6921 0.6030 +5694 6923 0.6400 +5694 7124 0.5810 +5694 7133 0.4620 +5694 7157 0.4890 +5694 7161 0.4240 +5694 7186 0.4210 +5694 7187 0.4160 +5694 7311 0.9420 +5694 7314 0.9470 +5694 7316 0.9460 +5694 7321 0.4720 +5694 7324 0.4780 +5694 7334 0.4070 +5694 7337 0.6430 +5694 7347 0.5560 +5694 7353 0.6780 +5694 7415 0.7560 +5694 7874 0.4390 +5694 7936 0.5420 +5694 8405 0.4320 +5694 8452 0.5730 +5694 8453 0.4200 +5694 8454 0.4880 +5694 8600 0.4290 +5694 8607 0.5480 +5694 8624 0.6350 +5694 8650 0.4050 +5694 8658 0.4110 +5694 8662 0.5590 +5694 8664 0.4370 +5694 8665 0.6970 +5694 8666 0.4980 +5694 8667 0.4250 +5694 8668 0.6780 +5694 8697 0.4130 +5694 8740 0.4350 +5694 8742 0.4310 +5694 8881 0.4210 +5694 8900 0.4210 +5694 8945 0.4600 +5694 8994 0.4050 +5694 9020 0.4210 +5694 9040 0.5930 +5694 9097 0.9850 +5694 9134 0.4650 +5694 9491 0.9240 +5694 9690 0.4880 +5694 9817 0.5800 +5694 9861 0.9960 +5694 9978 0.8230 +5694 10055 0.5030 +5694 10197 0.7660 +5694 10213 0.9990 +5694 10393 0.4160 +5694 10471 0.4480 +5694 10480 0.5540 +5694 10537 0.6190 +5694 10574 0.5300 +5694 10617 0.4740 +5694 10673 0.4180 +5694 10726 0.4820 +5694 10856 0.4850 +5694 10980 0.6110 +5694 10987 0.6650 +5694 11047 0.9450 +5694 11059 0.4180 +5694 11065 0.4760 +5694 11104 0.4390 +5694 11315 0.4630 +5694 23072 0.4150 +5694 23198 0.9910 +5694 23729 0.4310 +5694 25793 0.5210 +5694 25906 0.4980 +5694 26043 0.5040 +5694 26271 0.4190 +5694 26519 0.4550 +5694 27089 0.4770 +5694 27335 0.5960 +5694 27338 0.5440 +5694 29028 0.4270 +5694 29882 0.4160 +5694 29945 0.4330 +5694 30968 0.4550 +5694 51053 0.4530 +5694 51079 0.5240 +5694 51081 0.5530 +5694 51264 0.5960 +5694 51330 0.4240 +5694 51343 0.4170 +5694 51371 0.9980 +5694 51377 0.9190 +5694 51386 0.4830 +5694 51433 0.4350 +5694 51434 0.4050 +5694 51512 0.4170 +5694 51529 0.5780 +5694 51667 0.5040 +5694 51684 0.4390 +5694 51686 0.4390 +5694 54454 0.4340 +5694 54859 0.5020 +5694 54998 0.5770 +5694 55122 0.8530 +5694 55277 0.4260 +5694 55505 0.4450 +5694 55666 0.5070 +5694 56061 0.5890 +5694 56984 0.7820 +5694 57559 0.4650 +5694 58485 0.4020 +5694 64326 0.4050 +5694 64344 0.4060 +5694 64682 0.4460 +5694 64750 0.4290 +5694 64963 0.4200 +5694 79184 0.5760 +5694 79590 0.4320 +5694 80351 0.4110 +5694 81847 0.4200 +5694 83443 0.4630 +5694 83473 0.5840 +5694 83737 0.4150 +5694 84056 0.4260 +5694 84954 0.5770 +5694 84962 0.4040 +5694 91869 0.6900 +5694 112399 0.4270 +5694 114803 0.5720 +5694 119504 0.4050 +5694 122706 0.8970 +5694 123228 0.5110 +5694 126328 0.5290 +5694 128240 0.5110 +5694 128308 0.5550 +5694 134510 0.5800 +5694 140823 0.4700 +5694 143471 0.9990 +5694 161742 0.5000 +5694 200734 0.4670 +5694 246184 0.4280 +5694 256356 0.4260 +5694 286187 0.4650 +5694 339745 0.4410 +5694 399473 0.4510 +5694 100652824 0.9080 +5695 5696 0.9990 +5695 5698 0.9990 +5695 5699 0.8220 +5695 5700 0.9970 +5695 5701 0.9990 +5695 5702 0.9990 +5695 5704 0.9980 +5695 5705 0.9970 +5695 5706 0.9990 +5695 5707 0.9980 +5695 5708 0.9990 +5695 5709 0.9990 +5695 5710 0.9990 +5695 5711 0.6230 +5695 5713 0.9990 +5695 5714 0.9930 +5695 5715 0.4730 +5695 5716 0.4490 +5695 5717 0.9990 +5695 5718 0.9990 +5695 5719 0.9990 +5695 5720 0.9880 +5695 5721 0.9930 +5695 5728 0.4290 +5695 5886 0.4100 +5695 5887 0.4960 +5695 5966 0.4460 +5695 5970 0.4610 +5695 5971 0.4390 +5695 6124 0.5080 +5695 6128 0.4820 +5695 6133 0.4290 +5695 6136 0.4990 +5695 6137 0.4040 +5695 6155 0.6330 +5695 6156 0.4680 +5695 6157 0.4660 +5695 6165 0.4430 +5695 6175 0.4330 +5695 6181 0.5250 +5695 6187 0.4760 +5695 6188 0.4280 +5695 6189 0.4200 +5695 6191 0.4410 +5695 6202 0.4330 +5695 6217 0.4670 +5695 6224 0.5430 +5695 6233 0.9590 +5695 6272 0.5150 +5695 6396 0.4680 +5695 6469 0.4380 +5695 6500 0.6520 +5695 6502 0.4100 +5695 6622 0.6690 +5695 6627 0.4610 +5695 6633 0.5610 +5695 6647 0.7040 +5695 6790 0.5140 +5695 6892 0.4680 +5695 6921 0.5050 +5695 6923 0.5250 +5695 7124 0.4630 +5695 7133 0.4160 +5695 7157 0.4760 +5695 7186 0.4160 +5695 7187 0.4050 +5695 7203 0.4450 +5695 7311 0.9340 +5695 7314 0.9340 +5695 7316 0.9290 +5695 7321 0.5600 +5695 7324 0.4730 +5695 7337 0.6700 +5695 7347 0.5870 +5695 7353 0.6580 +5695 7411 0.4090 +5695 7415 0.6650 +5695 7458 0.4090 +5695 8078 0.4230 +5695 8260 0.4390 +5695 8312 0.4080 +5695 8313 0.4080 +5695 8452 0.5340 +5695 8453 0.4090 +5695 8454 0.4630 +5695 8600 0.4050 +5695 8607 0.5290 +5695 8624 0.8880 +5695 8650 0.4120 +5695 8658 0.4330 +5695 8665 0.4270 +5695 8666 0.5000 +5695 8668 0.9990 +5695 8697 0.4280 +5695 8740 0.4080 +5695 8742 0.4570 +5695 8881 0.4400 +5695 8945 0.4130 +5695 8994 0.4240 +5695 9020 0.4190 +5695 9040 0.4490 +5695 9045 0.4360 +5695 9097 0.9880 +5695 9134 0.4050 +5695 9491 0.9900 +5695 9690 0.4470 +5695 9817 0.5740 +5695 9861 0.9990 +5695 9978 0.6150 +5695 10075 0.4960 +5695 10197 0.8270 +5695 10213 0.9990 +5695 10393 0.4530 +5695 10399 0.4680 +5695 10471 0.4780 +5695 10492 0.4240 +5695 10537 0.5840 +5695 10539 0.4010 +5695 10574 0.4690 +5695 10575 0.5150 +5695 10576 0.4980 +5695 10673 0.4270 +5695 10694 0.5210 +5695 10856 0.4960 +5695 10944 0.4190 +5695 10980 0.4470 +5695 10987 0.4130 +5695 11047 0.9210 +5695 11059 0.4180 +5695 11065 0.5610 +5695 22948 0.4590 +5695 23072 0.4040 +5695 23194 0.4010 +5695 23198 0.9890 +5695 23392 0.6710 +5695 25793 0.7960 +5695 25906 0.4200 +5695 26043 0.7320 +5695 26271 0.4200 +5695 27338 0.5490 +5695 27351 0.9940 +5695 29882 0.4160 +5695 29945 0.4400 +5695 50846 0.4380 +5695 51053 0.4670 +5695 51330 0.4090 +5695 51343 0.4210 +5695 51371 0.9990 +5695 51377 0.9970 +5695 51433 0.4620 +5695 51434 0.4460 +5695 51493 0.5440 +5695 51512 0.4170 +5695 51529 0.4620 +5695 51643 0.4980 +5695 51667 0.5120 +5695 51684 0.4070 +5695 51686 0.4180 +5695 54583 0.4010 +5695 55122 0.8540 +5695 55139 0.4950 +5695 55294 0.4310 +5695 55666 0.5550 +5695 56061 0.4230 +5695 56984 0.9560 +5695 59269 0.4100 +5695 59349 0.4210 +5695 64221 0.4050 +5695 64344 0.4110 +5695 64682 0.4090 +5695 64750 0.4040 +5695 79184 0.6340 +5695 79590 0.4250 +5695 79647 0.4530 +5695 80018 0.4470 +5695 80351 0.4330 +5695 81847 0.4160 +5695 83473 0.5660 +5695 83737 0.4050 +5695 84262 0.7950 +5695 84954 0.6310 +5695 84962 0.4080 +5695 93974 0.4440 +5695 94056 0.4360 +5695 114803 0.6310 +5695 119504 0.4050 +5695 122706 0.8750 +5695 123228 0.5100 +5695 134510 0.4520 +5695 143471 0.9990 +5695 246184 0.4130 +5695 389362 0.5370 +5695 100652824 0.6240 +5696 5698 0.9990 +5696 5699 0.9990 +5696 5700 0.9750 +5696 5701 0.9720 +5696 5702 0.9660 +5696 5704 0.9870 +5696 5705 0.9810 +5696 5706 0.9540 +5696 5707 0.9480 +5696 5708 0.9340 +5696 5709 0.9090 +5696 5710 0.9730 +5696 5711 0.6020 +5696 5713 0.9320 +5696 5714 0.9570 +5696 5715 0.4020 +5696 5716 0.4050 +5696 5717 0.9030 +5696 5718 0.9680 +5696 5719 0.9380 +5696 5720 0.9850 +5696 5721 0.9870 +5696 5728 0.5040 +5696 5920 0.4490 +5696 5966 0.5430 +5696 5970 0.5440 +5696 5971 0.5760 +5696 6015 0.4040 +5696 6046 0.4690 +5696 6233 0.7170 +5696 6272 0.6080 +5696 6469 0.4110 +5696 6500 0.5520 +5696 6502 0.4320 +5696 6734 0.5400 +5696 6737 0.4180 +5696 6772 0.9060 +5696 6773 0.6880 +5696 6790 0.4350 +5696 6890 0.9730 +5696 6891 0.9170 +5696 6892 0.9130 +5696 6921 0.4290 +5696 6923 0.4450 +5696 7124 0.6900 +5696 7133 0.5240 +5696 7157 0.5560 +5696 7186 0.4130 +5696 7187 0.5200 +5696 7311 0.6980 +5696 7314 0.7040 +5696 7316 0.6730 +5696 7318 0.4910 +5696 7321 0.5150 +5696 7324 0.4790 +5696 7337 0.4230 +5696 7347 0.5590 +5696 7353 0.5610 +5696 7415 0.6520 +5696 7428 0.4100 +5696 7874 0.5160 +5696 7923 0.4250 +5696 8312 0.4240 +5696 8313 0.4150 +5696 8452 0.5460 +5696 8453 0.4060 +5696 8454 0.4580 +5696 8519 0.5010 +5696 8600 0.4460 +5696 8638 0.4300 +5696 8650 0.4150 +5696 8658 0.4330 +5696 8697 0.4030 +5696 8740 0.4250 +5696 8742 0.4770 +5696 8792 0.4170 +5696 8797 0.5110 +5696 8881 0.4450 +5696 8900 0.4230 +5696 8945 0.4390 +5696 8994 0.4160 +5696 9020 0.4160 +5696 9051 0.4500 +5696 9097 0.8310 +5696 9111 0.5660 +5696 9134 0.4110 +5696 9246 0.8880 +5696 9474 0.4680 +5696 9491 0.8400 +5696 9636 0.5520 +5696 9817 0.5820 +5696 9861 0.9550 +5696 9978 0.6010 +5696 10197 0.6960 +5696 10213 0.9700 +5696 10346 0.5680 +5696 10379 0.7470 +5696 10384 0.5600 +5696 10393 0.4290 +5696 10410 0.4080 +5696 10537 0.8300 +5696 10673 0.5700 +5696 11047 0.9320 +5696 11059 0.4130 +5696 11065 0.4710 +5696 11118 0.5240 +5696 11274 0.4720 +5696 23072 0.4040 +5696 23194 0.4010 +5696 23198 0.9860 +5696 23392 0.5470 +5696 23586 0.4610 +5696 25939 0.6830 +5696 26043 0.7310 +5696 26271 0.4190 +5696 27338 0.5460 +5696 29108 0.4840 +5696 29882 0.4260 +5696 29945 0.4600 +5696 50846 0.4010 +5696 51053 0.4160 +5696 51330 0.5630 +5696 51343 0.4190 +5696 51371 0.9990 +5696 51377 0.8200 +5696 51433 0.4100 +5696 51460 0.7780 +5696 51512 0.4210 +5696 51529 0.4370 +5696 51643 0.6060 +5696 51667 0.5750 +5696 51684 0.4360 +5696 51686 0.4250 +5696 51752 0.6320 +5696 54859 0.4480 +5696 55127 0.5020 +5696 55294 0.4520 +5696 55666 0.5270 +5696 56244 0.4380 +5696 56984 0.8780 +5696 59269 0.4100 +5696 59349 0.4160 +5696 64108 0.5100 +5696 64135 0.4960 +5696 64167 0.4970 +5696 64221 0.4020 +5696 64326 0.4010 +5696 64344 0.4130 +5696 64682 0.4010 +5696 64750 0.4040 +5696 65258 0.6650 +5696 79184 0.5620 +5696 80351 0.4330 +5696 81847 0.4090 +5696 83473 0.5630 +5696 83666 0.4440 +5696 83737 0.4060 +5696 84166 0.6030 +5696 84262 0.4280 +5696 84335 0.4840 +5696 84954 0.5610 +5696 84962 0.4160 +5696 91662 0.6920 +5696 114548 0.4760 +5696 114803 0.5610 +5696 115362 0.4170 +5696 115650 0.4030 +5696 119504 0.4010 +5696 122706 0.7680 +5696 123228 0.5010 +5696 126374 0.4160 +5696 134510 0.4500 +5696 143471 0.9940 +5696 144165 0.4160 +5696 161742 0.4160 +5696 200734 0.4160 +5696 246184 0.4090 +5696 339745 0.5930 +5696 389362 0.4110 +5696 399473 0.4270 +5696 440387 0.4470 +5696 100652824 0.6140 +5697 6010 0.4950 +5697 6288 0.4180 +5697 6289 0.4200 +5697 6343 0.7260 +5697 6364 0.4160 +5697 6373 0.4460 +5697 6476 0.4600 +5697 6514 0.4530 +5697 6523 0.5830 +5697 6524 0.4090 +5697 6714 0.5310 +5697 6750 0.9020 +5697 6751 0.5940 +5697 6752 0.5960 +5697 6753 0.5810 +5697 6754 0.5530 +5697 6755 0.6000 +5697 6781 0.5580 +5697 6863 0.6120 +5697 7124 0.4230 +5697 7166 0.6470 +5697 7200 0.5330 +5697 7349 0.6290 +5697 7350 0.4530 +5697 7432 0.6720 +5697 7852 0.4890 +5697 7857 0.4650 +5697 8620 0.4620 +5697 8862 0.6880 +5697 9283 0.5000 +5697 9340 0.4190 +5697 9370 0.6270 +5697 9607 0.6120 +5697 9672 0.4390 +5697 9965 0.4510 +5697 9971 0.6040 +5697 10022 0.6430 +5697 10316 0.5150 +5697 10874 0.7260 +5697 10888 0.9090 +5697 23788 0.4280 +5697 25970 0.4300 +5697 26291 0.4190 +5697 27344 0.4500 +5697 29761 0.4470 +5697 50674 0.4700 +5697 51083 0.5630 +5697 51129 0.4180 +5697 51738 0.9610 +5697 54860 0.4510 +5697 56477 0.7370 +5697 56729 0.5080 +5697 56923 0.5080 +5697 63940 0.4020 +5697 79068 0.5640 +5697 80834 0.5990 +5697 80835 0.5450 +5697 83756 0.6110 +5697 84539 0.4990 +5697 84666 0.5470 +5697 129521 0.6030 +5697 132789 0.4950 +5697 133522 0.4450 +5697 134864 0.4460 +5697 139760 0.6500 +5697 151306 0.7390 +5697 162417 0.4210 +5697 222962 0.4100 +5697 256933 0.5560 +5697 257194 0.5740 +5697 283869 0.6130 +5697 338442 0.5550 +5697 338557 0.7470 +5697 346562 0.4600 +5697 347148 0.5410 +5697 619373 0.5120 +5697 653808 0.4400 +5697 100423062 0.6080 +5697 100996758 0.9590 +5698 5699 0.9990 +5698 5700 0.9860 +5698 5701 0.9630 +5698 5702 0.9560 +5698 5704 0.9880 +5698 5705 0.9240 +5698 5706 0.9750 +5698 5707 0.9720 +5698 5708 0.9710 +5698 5709 0.9740 +5698 5710 0.9920 +5698 5711 0.6530 +5698 5713 0.9750 +5698 5714 0.9830 +5698 5715 0.4040 +5698 5717 0.9770 +5698 5718 0.9850 +5698 5719 0.9830 +5698 5720 0.9930 +5698 5721 0.9900 +5698 5728 0.5190 +5698 5920 0.5590 +5698 5966 0.5100 +5698 5970 0.5420 +5698 5971 0.5710 +5698 6046 0.5080 +5698 6233 0.7340 +5698 6373 0.4340 +5698 6500 0.4680 +5698 6502 0.4560 +5698 6714 0.5940 +5698 6734 0.4970 +5698 6737 0.4540 +5698 6772 0.9010 +5698 6773 0.4010 +5698 6774 0.4180 +5698 6790 0.4190 +5698 6850 0.5730 +5698 6890 0.9810 +5698 6891 0.9480 +5698 6892 0.8900 +5698 6921 0.4750 +5698 6923 0.4750 +5698 7124 0.7080 +5698 7133 0.5350 +5698 7157 0.6030 +5698 7161 0.4360 +5698 7169 0.4290 +5698 7174 0.4020 +5698 7186 0.4160 +5698 7187 0.5270 +5698 7311 0.6410 +5698 7314 0.7350 +5698 7316 0.7210 +5698 7318 0.4910 +5698 7321 0.4990 +5698 7324 0.4420 +5698 7347 0.5560 +5698 7353 0.6250 +5698 7415 0.6020 +5698 7428 0.4110 +5698 7535 0.4240 +5698 7923 0.5560 +5698 8270 0.5940 +5698 8290 0.4150 +5698 8312 0.4130 +5698 8405 0.4380 +5698 8452 0.5570 +5698 8453 0.4250 +5698 8454 0.4750 +5698 8519 0.5150 +5698 8600 0.4590 +5698 8624 0.9080 +5698 8638 0.5160 +5698 8650 0.4050 +5698 8658 0.4110 +5698 8665 0.4650 +5698 8697 0.4050 +5698 8740 0.5060 +5698 8742 0.4500 +5698 8797 0.5040 +5698 8881 0.4050 +5698 8900 0.4550 +5698 8945 0.4440 +5698 8994 0.4090 +5698 9020 0.4500 +5698 9097 0.8620 +5698 9111 0.4880 +5698 9134 0.4150 +5698 9246 0.8560 +5698 9260 0.8400 +5698 9352 0.4100 +5698 9491 0.9580 +5698 9636 0.6230 +5698 9817 0.5430 +5698 9861 0.9760 +5698 9978 0.6720 +5698 10197 0.8190 +5698 10213 0.9850 +5698 10346 0.5040 +5698 10379 0.5250 +5698 10384 0.6880 +5698 10393 0.4080 +5698 10537 0.8000 +5698 10561 0.4400 +5698 10611 0.4890 +5698 10617 0.4690 +5698 10673 0.6090 +5698 10964 0.4510 +5698 10980 0.4890 +5698 10987 0.5220 +5698 11047 0.9110 +5698 11059 0.4150 +5698 11065 0.4910 +5698 11104 0.4280 +5698 11118 0.7460 +5698 11119 0.6750 +5698 23072 0.4150 +5698 23198 0.9930 +5698 23392 0.5190 +5698 23586 0.4800 +5698 23626 0.4610 +5698 23729 0.4300 +5698 25793 0.6140 +5698 25906 0.4980 +5698 26043 0.5010 +5698 26271 0.4090 +5698 27338 0.5270 +5698 29028 0.4300 +5698 29126 0.4840 +5698 29882 0.4170 +5698 29945 0.4090 +5698 51053 0.4420 +5698 51255 0.4720 +5698 51330 0.5710 +5698 51343 0.4050 +5698 51371 0.9990 +5698 51377 0.7740 +5698 51433 0.4060 +5698 51434 0.4030 +5698 51460 0.7360 +5698 51512 0.4010 +5698 51526 0.4230 +5698 51529 0.4160 +5698 51643 0.5700 +5698 51667 0.5760 +5698 51684 0.4410 +5698 51686 0.4390 +5698 51752 0.5680 +5698 54454 0.4280 +5698 54583 0.4070 +5698 55008 0.5070 +5698 55080 0.4450 +5698 55122 0.4830 +5698 55277 0.4260 +5698 55294 0.5580 +5698 55666 0.5000 +5698 56061 0.5380 +5698 56244 0.4380 +5698 56984 0.9470 +5698 57559 0.4770 +5698 59349 0.4010 +5698 60489 0.4020 +5698 64108 0.5800 +5698 64135 0.4920 +5698 64167 0.4550 +5698 64682 0.4070 +5698 64750 0.4150 +5698 79184 0.5780 +5698 79647 0.5090 +5698 80351 0.4110 +5698 81847 0.4260 +5698 83473 0.5840 +5698 83666 0.4920 +5698 83737 0.4190 +5698 84056 0.4260 +5698 84166 0.7570 +5698 84262 0.7930 +5698 84335 0.4440 +5698 84954 0.5720 +5698 112399 0.4240 +5698 114803 0.5720 +5698 115361 0.4970 +5698 115362 0.5440 +5698 115650 0.4260 +5698 122706 0.9910 +5698 123228 0.5000 +5698 134510 0.6010 +5698 143471 0.9970 +5698 151636 0.4090 +5698 161742 0.4460 +5698 200734 0.4460 +5698 219285 0.4520 +5698 246184 0.4090 +5698 256356 0.4260 +5698 286187 0.4650 +5698 339745 0.6320 +5698 389362 0.7700 +5698 399473 0.4310 +5698 100652824 0.9080 +5699 5700 0.8940 +5699 5701 0.9350 +5699 5702 0.8440 +5699 5704 0.9290 +5699 5705 0.8710 +5699 5706 0.9180 +5699 5707 0.8610 +5699 5708 0.8680 +5699 5709 0.8570 +5699 5710 0.9890 +5699 5711 0.5710 +5699 5713 0.9160 +5699 5714 0.9220 +5699 5715 0.4540 +5699 5717 0.9040 +5699 5718 0.9230 +5699 5719 0.8670 +5699 5720 0.9830 +5699 5721 0.9790 +5699 5728 0.4910 +5699 5764 0.6470 +5699 5920 0.4400 +5699 5966 0.5150 +5699 5970 0.4920 +5699 5971 0.5520 +5699 6046 0.4080 +5699 6155 0.4240 +5699 6233 0.7250 +5699 6272 0.4380 +5699 6469 0.4380 +5699 6500 0.5210 +5699 6502 0.4010 +5699 6558 0.5880 +5699 6559 0.4910 +5699 6688 0.4010 +5699 6772 0.7430 +5699 6790 0.4210 +5699 6890 0.6240 +5699 6891 0.6470 +5699 6892 0.8290 +5699 6921 0.4320 +5699 6923 0.4410 +5699 7124 0.6340 +5699 7133 0.5030 +5699 7157 0.5130 +5699 7186 0.4060 +5699 7187 0.4410 +5699 7311 0.6830 +5699 7314 0.7090 +5699 7316 0.6630 +5699 7318 0.4580 +5699 7321 0.4880 +5699 7324 0.4760 +5699 7347 0.5660 +5699 7353 0.6010 +5699 7415 0.6460 +5699 7923 0.4090 +5699 8312 0.4080 +5699 8313 0.4080 +5699 8405 0.4070 +5699 8452 0.5430 +5699 8453 0.4070 +5699 8454 0.4590 +5699 8600 0.4110 +5699 8650 0.4110 +5699 8658 0.4330 +5699 8697 0.4070 +5699 8740 0.4370 +5699 8742 0.4700 +5699 8881 0.4210 +5699 8945 0.4320 +5699 8994 0.4080 +5699 9020 0.4240 +5699 9097 0.8380 +5699 9246 0.7130 +5699 9491 0.8780 +5699 9636 0.4570 +5699 9817 0.5570 +5699 9861 0.9610 +5699 9978 0.5710 +5699 10197 0.7070 +5699 10213 0.9630 +5699 10393 0.4210 +5699 10537 0.7190 +5699 10673 0.5550 +5699 10987 0.4280 +5699 11047 0.8840 +5699 11059 0.4280 +5699 11065 0.5000 +5699 23053 0.4010 +5699 23072 0.4040 +5699 23194 0.4010 +5699 23198 0.9410 +5699 23392 0.5380 +5699 25906 0.4050 +5699 26043 0.7310 +5699 26271 0.4040 +5699 27338 0.5390 +5699 29945 0.4230 +5699 50846 0.4400 +5699 51053 0.4210 +5699 51343 0.4020 +5699 51371 0.9990 +5699 51377 0.6850 +5699 51433 0.4200 +5699 51434 0.4010 +5699 51512 0.4610 +5699 51529 0.4450 +5699 51643 0.6790 +5699 51667 0.6010 +5699 51684 0.4070 +5699 51686 0.4180 +5699 51752 0.5420 +5699 55080 0.4940 +5699 55294 0.4330 +5699 55666 0.5400 +5699 56061 0.4150 +5699 56984 0.7370 +5699 59269 0.4120 +5699 59349 0.4160 +5699 64167 0.4740 +5699 64221 0.4050 +5699 64326 0.4100 +5699 64344 0.4110 +5699 64682 0.4030 +5699 64750 0.4040 +5699 79184 0.6360 +5699 79590 0.4150 +5699 80351 0.4330 +5699 81847 0.4290 +5699 83473 0.5620 +5699 83737 0.4090 +5699 84262 0.5030 +5699 84954 0.6340 +5699 114803 0.6310 +5699 119504 0.4050 +5699 122706 0.9930 +5699 123228 0.5000 +5699 134510 0.4990 +5699 143471 0.9890 +5699 161742 0.4200 +5699 246184 0.4200 +5699 389362 0.4840 +5699 440387 0.6780 +5699 100652824 0.6240 +5700 5701 0.9990 +5700 5702 0.9990 +5700 5704 0.9990 +5700 5705 0.9990 +5700 5706 0.9990 +5700 5707 0.9990 +5700 5708 0.9990 +5700 5709 0.9990 +5700 5710 0.9990 +5700 5711 0.9990 +5700 5713 0.9990 +5700 5714 0.9990 +5700 5715 0.9070 +5700 5716 0.9990 +5700 5717 0.9990 +5700 5718 0.9990 +5700 5719 0.9990 +5700 5720 0.8000 +5700 5721 0.7850 +5700 5728 0.4160 +5700 5771 0.5690 +5700 5886 0.7880 +5700 5887 0.9590 +5700 5902 0.4040 +5700 5925 0.9010 +5700 5933 0.9010 +5700 5934 0.9010 +5700 5966 0.4190 +5700 5970 0.4500 +5700 5971 0.4150 +5700 6122 0.6880 +5700 6124 0.4950 +5700 6125 0.6890 +5700 6128 0.4860 +5700 6129 0.6790 +5700 6130 0.5500 +5700 6132 0.7360 +5700 6133 0.6190 +5700 6135 0.5990 +5700 6136 0.4510 +5700 6137 0.4590 +5700 6138 0.4930 +5700 6139 0.5940 +5700 6142 0.5650 +5700 6143 0.4590 +5700 6144 0.6310 +5700 6146 0.4890 +5700 6147 0.6900 +5700 6154 0.5720 +5700 6155 0.4600 +5700 6157 0.4860 +5700 6158 0.4760 +5700 6160 0.4890 +5700 6164 0.4600 +5700 6169 0.5930 +5700 6175 0.5460 +5700 6176 0.4720 +5700 6184 0.4060 +5700 6187 0.5230 +5700 6188 0.5870 +5700 6189 0.6090 +5700 6191 0.6630 +5700 6193 0.7410 +5700 6194 0.6750 +5700 6201 0.6970 +5700 6202 0.5940 +5700 6203 0.4990 +5700 6204 0.6670 +5700 6205 0.6770 +5700 6206 0.7140 +5700 6207 0.7070 +5700 6208 0.6620 +5700 6209 0.4290 +5700 6210 0.7220 +5700 6217 0.4910 +5700 6222 0.6810 +5700 6223 0.7150 +5700 6224 0.4430 +5700 6227 0.4460 +5700 6228 0.4770 +5700 6229 0.6760 +5700 6230 0.6770 +5700 6231 0.5600 +5700 6232 0.6510 +5700 6233 0.9600 +5700 6234 0.4150 +5700 6235 0.5720 +5700 6396 0.5110 +5700 6500 0.5380 +5700 6502 0.5360 +5700 6591 0.4390 +5700 6613 0.4140 +5700 6622 0.7180 +5700 6647 0.7360 +5700 6790 0.4300 +5700 6921 0.4820 +5700 6923 0.4970 +5700 6950 0.5650 +5700 7124 0.4080 +5700 7157 0.6390 +5700 7158 0.5230 +5700 7186 0.4080 +5700 7187 0.4050 +5700 7203 0.5950 +5700 7311 0.9600 +5700 7314 0.9610 +5700 7316 0.9630 +5700 7317 0.4090 +5700 7321 0.4570 +5700 7324 0.5050 +5700 7337 0.8460 +5700 7347 0.6050 +5700 7353 0.6780 +5700 7415 0.7830 +5700 7419 0.4640 +5700 7428 0.6750 +5700 7965 0.4200 +5700 7979 0.8260 +5700 8078 0.4570 +5700 8312 0.4420 +5700 8313 0.4250 +5700 8405 0.4980 +5700 8452 0.6420 +5700 8453 0.4670 +5700 8454 0.5440 +5700 8533 0.6120 +5700 8562 0.4320 +5700 8624 0.5570 +5700 8650 0.4090 +5700 8658 0.4370 +5700 8663 0.4800 +5700 8664 0.5650 +5700 8665 0.5180 +5700 8668 0.5290 +5700 8697 0.5520 +5700 8792 0.4160 +5700 8881 0.4300 +5700 8894 0.4780 +5700 8900 0.4040 +5700 8945 0.4460 +5700 8994 0.4100 +5700 9020 0.4220 +5700 9040 0.4420 +5700 9097 0.9990 +5700 9134 0.4030 +5700 9318 0.6230 +5700 9349 0.7020 +5700 9352 0.7470 +5700 9491 0.6420 +5700 9531 0.4400 +5700 9611 0.4400 +5700 9787 0.4530 +5700 9817 0.6150 +5700 9861 0.9990 +5700 9978 0.5900 +5700 10075 0.4110 +5700 10112 0.4370 +5700 10197 0.6420 +5700 10210 0.4160 +5700 10213 0.9990 +5700 10300 0.4530 +5700 10393 0.4660 +5700 10399 0.5560 +5700 10480 0.4530 +5700 10537 0.6270 +5700 10574 0.6980 +5700 10575 0.6040 +5700 10576 0.5760 +5700 10694 0.5810 +5700 10840 0.4180 +5700 10980 0.5450 +5700 10987 0.7950 +5700 11004 0.4300 +5700 11047 0.9990 +5700 11059 0.4300 +5700 11065 0.4890 +5700 11200 0.5490 +5700 11224 0.5560 +5700 22948 0.6200 +5700 23072 0.4300 +5700 23135 0.4040 +5700 23194 0.4070 +5700 23198 0.7680 +5700 23392 0.8370 +5700 23514 0.4090 +5700 23521 0.6880 +5700 23770 0.5820 +5700 25873 0.5020 +5700 25906 0.4420 +5700 25962 0.4860 +5700 26003 0.4050 +5700 26043 0.5810 +5700 26135 0.4400 +5700 26271 0.4260 +5700 27338 0.4730 +5700 27351 0.9940 +5700 29882 0.4140 +5700 29945 0.4590 +5700 29968 0.4100 +5700 29978 0.5810 +5700 29979 0.4200 +5700 51021 0.4910 +5700 51035 0.8520 +5700 51053 0.4230 +5700 51330 0.4040 +5700 51343 0.4890 +5700 51371 0.6540 +5700 51377 0.9980 +5700 51433 0.4490 +5700 51434 0.4160 +5700 51529 0.4530 +5700 51667 0.5620 +5700 51686 0.4700 +5700 51741 0.4160 +5700 53347 0.4540 +5700 54583 0.4120 +5700 55051 0.5880 +5700 55100 0.4930 +5700 55294 0.4390 +5700 55308 0.4400 +5700 55666 0.5060 +5700 55768 0.8730 +5700 55968 0.7690 +5700 56061 0.8000 +5700 56893 0.9950 +5700 59269 0.4110 +5700 59349 0.4170 +5700 64221 0.4050 +5700 64326 0.4670 +5700 64682 0.4110 +5700 64708 0.4460 +5700 64750 0.4340 +5700 65056 0.4790 +5700 79084 0.4740 +5700 79139 0.8160 +5700 79184 0.8060 +5700 79944 0.4680 +5700 80212 0.8320 +5700 80227 0.8640 +5700 80351 0.4370 +5700 83737 0.4310 +5700 84954 0.8020 +5700 84962 0.4010 +5700 89872 0.4500 +5700 90007 0.5470 +5700 90557 0.6010 +5700 91409 0.8340 +5700 93621 0.4260 +5700 112399 0.4160 +5700 114803 0.8080 +5700 115098 0.4210 +5700 115650 0.4150 +5700 119504 0.4420 +5700 122706 0.5750 +5700 123228 0.5450 +5700 134510 0.8860 +5700 137886 0.5540 +5700 143471 0.9840 +5700 161742 0.4180 +5700 200734 0.4180 +5700 203562 0.4820 +5700 246184 0.4160 +5700 286187 0.4430 +5700 339745 0.5030 +5700 399473 0.4260 +5700 445582 0.4740 +5700 100509620 0.4500 +5700 100652824 0.6190 +5701 5702 0.9990 +5701 5704 0.9990 +5701 5705 0.9990 +5701 5706 0.9990 +5701 5707 0.9990 +5701 5708 0.9990 +5701 5709 0.9990 +5701 5710 0.9990 +5701 5711 0.9990 +5701 5713 0.9990 +5701 5714 0.9990 +5701 5715 0.9700 +5701 5716 0.9990 +5701 5717 0.9990 +5701 5718 0.9990 +5701 5719 0.9990 +5701 5720 0.7020 +5701 5721 0.7460 +5701 5728 0.4240 +5701 5885 0.4610 +5701 5886 0.8830 +5701 5887 0.9320 +5701 5917 0.4470 +5701 5966 0.4200 +5701 5970 0.6010 +5701 5971 0.4320 +5701 6059 0.5650 +5701 6122 0.7050 +5701 6125 0.6960 +5701 6128 0.5430 +5701 6129 0.6820 +5701 6130 0.6750 +5701 6132 0.7550 +5701 6133 0.6510 +5701 6135 0.6880 +5701 6136 0.4440 +5701 6137 0.4450 +5701 6138 0.5850 +5701 6139 0.6870 +5701 6142 0.6670 +5701 6143 0.5270 +5701 6144 0.6700 +5701 6146 0.5300 +5701 6147 0.7060 +5701 6154 0.5650 +5701 6155 0.5210 +5701 6157 0.4830 +5701 6158 0.4960 +5701 6159 0.4490 +5701 6160 0.4610 +5701 6164 0.4630 +5701 6169 0.6690 +5701 6175 0.6010 +5701 6176 0.5130 +5701 6187 0.5310 +5701 6188 0.6540 +5701 6189 0.6830 +5701 6191 0.7060 +5701 6193 0.7310 +5701 6194 0.7010 +5701 6201 0.7270 +5701 6202 0.6190 +5701 6203 0.5040 +5701 6204 0.7020 +5701 6205 0.6940 +5701 6206 0.6810 +5701 6207 0.7120 +5701 6208 0.6800 +5701 6209 0.4760 +5701 6210 0.7270 +5701 6217 0.4900 +5701 6222 0.6860 +5701 6223 0.7210 +5701 6224 0.4690 +5701 6227 0.4900 +5701 6228 0.5070 +5701 6229 0.7010 +5701 6230 0.6740 +5701 6231 0.6460 +5701 6232 0.7390 +5701 6233 0.9780 +5701 6234 0.4940 +5701 6235 0.5030 +5701 6249 0.4730 +5701 6389 0.4430 +5701 6396 0.4020 +5701 6500 0.5400 +5701 6502 0.4420 +5701 6622 0.6500 +5701 6647 0.7220 +5701 6729 0.4920 +5701 6732 0.4390 +5701 6737 0.4090 +5701 6790 0.4410 +5701 6908 0.5970 +5701 6921 0.5150 +5701 6923 0.4850 +5701 6950 0.5910 +5701 7124 0.4320 +5701 7134 0.4280 +5701 7157 0.4750 +5701 7186 0.4130 +5701 7187 0.4080 +5701 7203 0.5400 +5701 7247 0.5420 +5701 7311 0.9370 +5701 7314 0.9600 +5701 7316 0.9750 +5701 7317 0.4500 +5701 7319 0.4110 +5701 7321 0.4700 +5701 7324 0.4920 +5701 7334 0.5170 +5701 7337 0.6960 +5701 7347 0.6800 +5701 7353 0.6100 +5701 7411 0.4350 +5701 7415 0.8170 +5701 7417 0.4300 +5701 7428 0.4160 +5701 7706 0.4120 +5701 7965 0.4620 +5701 7979 0.8580 +5701 8243 0.7200 +5701 8312 0.4160 +5701 8313 0.4160 +5701 8405 0.4830 +5701 8452 0.5950 +5701 8453 0.5190 +5701 8454 0.6130 +5701 8533 0.4190 +5701 8650 0.4090 +5701 8658 0.4340 +5701 8661 0.4240 +5701 8663 0.4810 +5701 8664 0.6850 +5701 8665 0.5580 +5701 8668 0.5300 +5701 8697 0.5250 +5701 8792 0.4270 +5701 8803 0.4230 +5701 8813 0.4310 +5701 8878 0.6030 +5701 8881 0.4530 +5701 8900 0.4020 +5701 8945 0.4390 +5701 8988 0.5130 +5701 8994 0.4090 +5701 9020 0.4220 +5701 9097 0.9990 +5701 9126 0.6920 +5701 9134 0.4360 +5701 9184 0.4580 +5701 9349 0.7080 +5701 9352 0.4760 +5701 9512 0.5440 +5701 9611 0.4270 +5701 9690 0.4980 +5701 9817 0.5820 +5701 9861 0.9990 +5701 9978 0.6150 +5701 10013 0.4700 +5701 10146 0.4340 +5701 10197 0.8620 +5701 10213 0.9990 +5701 10295 0.7010 +5701 10300 0.4080 +5701 10376 0.4090 +5701 10393 0.4890 +5701 10399 0.6010 +5701 10419 0.5200 +5701 10480 0.4300 +5701 10537 0.5900 +5701 10574 0.5680 +5701 10575 0.6450 +5701 10576 0.6350 +5701 10673 0.4050 +5701 10694 0.7330 +5701 10728 0.4990 +5701 10920 0.4600 +5701 10980 0.5150 +5701 10987 0.6250 +5701 10989 0.6340 +5701 11047 0.9990 +5701 11059 0.4380 +5701 11065 0.6210 +5701 11224 0.7490 +5701 11321 0.5280 +5701 22948 0.5650 +5701 23072 0.4160 +5701 23194 0.4150 +5701 23198 0.7760 +5701 23392 0.9210 +5701 23521 0.6580 +5701 23760 0.4610 +5701 25873 0.6230 +5701 25906 0.4070 +5701 26043 0.5660 +5701 26271 0.4320 +5701 27338 0.5050 +5701 27351 0.9940 +5701 29882 0.4650 +5701 29945 0.5530 +5701 29978 0.6720 +5701 29979 0.7500 +5701 50613 0.4180 +5701 51053 0.4600 +5701 51330 0.4010 +5701 51343 0.4260 +5701 51371 0.7310 +5701 51377 0.9980 +5701 51433 0.4740 +5701 51434 0.4200 +5701 51493 0.6800 +5701 51529 0.4160 +5701 51667 0.5180 +5701 51686 0.4100 +5701 51741 0.4400 +5701 54529 0.4850 +5701 54583 0.4050 +5701 55294 0.4470 +5701 55308 0.4420 +5701 55666 0.5080 +5701 55737 0.6270 +5701 55968 0.4050 +5701 56061 0.8080 +5701 56893 0.9960 +5701 56945 0.4010 +5701 56984 0.5500 +5701 59269 0.4330 +5701 59349 0.4360 +5701 64326 0.4300 +5701 64344 0.4180 +5701 64682 0.4130 +5701 64750 0.4160 +5701 79058 0.5370 +5701 79084 0.4510 +5701 79184 0.6960 +5701 79577 0.4150 +5701 79944 0.4700 +5701 80212 0.7230 +5701 80227 0.9540 +5701 80351 0.4390 +5701 83737 0.4180 +5701 83932 0.5270 +5701 84262 0.4120 +5701 84938 0.4090 +5701 84954 0.6890 +5701 84962 0.4120 +5701 85363 0.5000 +5701 89872 0.4500 +5701 90007 0.4050 +5701 90557 0.4690 +5701 90637 0.5050 +5701 91409 0.8120 +5701 114803 0.6970 +5701 119504 0.4420 +5701 122706 0.5160 +5701 123228 0.5390 +5701 134510 0.9060 +5701 143471 0.9800 +5701 143630 0.4010 +5701 203562 0.4200 +5701 246184 0.4090 +5701 339745 0.5050 +5701 100287932 0.4090 +5701 100509620 0.4500 +5701 100652824 0.5960 +5702 5704 0.9990 +5702 5705 0.9990 +5702 5706 0.9990 +5702 5707 0.9990 +5702 5708 0.9990 +5702 5709 0.9990 +5702 5710 0.9990 +5702 5711 0.9990 +5702 5713 0.9990 +5702 5714 0.9990 +5702 5715 0.9990 +5702 5716 0.9990 +5702 5717 0.9990 +5702 5718 0.9990 +5702 5719 0.9990 +5702 5720 0.8080 +5702 5721 0.7750 +5702 5728 0.4270 +5702 5886 0.7650 +5702 5887 0.7440 +5702 5901 0.5180 +5702 5917 0.4660 +5702 5966 0.4160 +5702 5970 0.4270 +5702 5971 0.4110 +5702 6125 0.4020 +5702 6129 0.4070 +5702 6175 0.4300 +5702 6187 0.5280 +5702 6188 0.4910 +5702 6191 0.5290 +5702 6193 0.4330 +5702 6201 0.4890 +5702 6203 0.4420 +5702 6205 0.4230 +5702 6206 0.4560 +5702 6207 0.7450 +5702 6210 0.4860 +5702 6222 0.4620 +5702 6230 0.4310 +5702 6231 0.4360 +5702 6233 0.9750 +5702 6469 0.4100 +5702 6500 0.4600 +5702 6502 0.4360 +5702 6613 0.4090 +5702 6622 0.9040 +5702 6647 0.8120 +5702 6688 0.4670 +5702 6790 0.4480 +5702 6921 0.6880 +5702 6923 0.7140 +5702 6924 0.4660 +5702 6950 0.5700 +5702 7124 0.4630 +5702 7133 0.4910 +5702 7157 0.5780 +5702 7158 0.4660 +5702 7186 0.4080 +5702 7189 0.4520 +5702 7203 0.5590 +5702 7283 0.4480 +5702 7311 0.9340 +5702 7314 0.9590 +5702 7316 0.9710 +5702 7321 0.4650 +5702 7324 0.4880 +5702 7329 0.4300 +5702 7337 0.7910 +5702 7347 0.6050 +5702 7353 0.8350 +5702 7384 0.5790 +5702 7415 0.7900 +5702 7417 0.4060 +5702 7428 0.8050 +5702 7812 0.4910 +5702 7965 0.5070 +5702 7979 0.7500 +5702 8405 0.4130 +5702 8452 0.5670 +5702 8453 0.6450 +5702 8454 0.5010 +5702 8607 0.4750 +5702 8624 0.5660 +5702 8650 0.4050 +5702 8658 0.4580 +5702 8663 0.4590 +5702 8664 0.4940 +5702 8665 0.5980 +5702 8666 0.4300 +5702 8668 0.5040 +5702 8697 0.4450 +5702 8721 0.4650 +5702 8742 0.4200 +5702 8881 0.4240 +5702 8894 0.4190 +5702 8900 0.4080 +5702 8945 0.4060 +5702 8994 0.4110 +5702 9040 0.6160 +5702 9097 0.9990 +5702 9134 0.4110 +5702 9318 0.5040 +5702 9349 0.4430 +5702 9352 0.7480 +5702 9491 0.6450 +5702 9618 0.5300 +5702 9690 0.5290 +5702 9817 0.6060 +5702 9861 0.9990 +5702 9978 0.5480 +5702 10055 0.4440 +5702 10075 0.4370 +5702 10111 0.4570 +5702 10197 0.7370 +5702 10213 0.9990 +5702 10393 0.4680 +5702 10399 0.6830 +5702 10419 0.4040 +5702 10480 0.4360 +5702 10537 0.7190 +5702 10540 0.4510 +5702 10542 0.4170 +5702 10574 0.7980 +5702 10575 0.6020 +5702 10576 0.5980 +5702 10617 0.4660 +5702 10658 0.4280 +5702 10694 0.5360 +5702 10963 0.5710 +5702 10980 0.7210 +5702 10987 0.4980 +5702 11047 0.9980 +5702 11059 0.4360 +5702 11065 0.4910 +5702 11104 0.4620 +5702 11140 0.5530 +5702 11315 0.4350 +5702 11319 0.4480 +5702 11331 0.4930 +5702 22948 0.6880 +5702 23028 0.5080 +5702 23072 0.4160 +5702 23194 0.4350 +5702 23198 0.7930 +5702 23279 0.5040 +5702 23360 0.5020 +5702 23392 0.9470 +5702 23521 0.4150 +5702 23770 0.4140 +5702 23787 0.4040 +5702 25855 0.4180 +5702 25897 0.5290 +5702 25906 0.4530 +5702 26043 0.5510 +5702 26266 0.5820 +5702 26271 0.4090 +5702 27338 0.5400 +5702 27351 0.9940 +5702 27429 0.4090 +5702 29028 0.4050 +5702 29882 0.5230 +5702 29893 0.7730 +5702 29945 0.5870 +5702 30968 0.6190 +5702 50846 0.4100 +5702 51035 0.4610 +5702 51053 0.4200 +5702 51081 0.4560 +5702 51224 0.4640 +5702 51330 0.4190 +5702 51343 0.4290 +5702 51371 0.8180 +5702 51377 0.9980 +5702 51386 0.4210 +5702 51433 0.5140 +5702 51434 0.4560 +5702 51493 0.4370 +5702 51512 0.4300 +5702 51529 0.4490 +5702 51667 0.5350 +5702 51686 0.4320 +5702 54583 0.5840 +5702 55139 0.4430 +5702 55277 0.4110 +5702 55294 0.4140 +5702 55662 0.4400 +5702 55666 0.5290 +5702 55968 0.4500 +5702 56061 0.7660 +5702 56893 0.9950 +5702 56984 0.8490 +5702 57559 0.4550 +5702 59349 0.4050 +5702 64326 0.4070 +5702 64344 0.4200 +5702 64682 0.4030 +5702 64750 0.4160 +5702 64979 0.4080 +5702 79029 0.4130 +5702 79184 0.7210 +5702 79841 0.4070 +5702 80212 0.7620 +5702 80227 0.9210 +5702 80351 0.4580 +5702 81847 0.4210 +5702 83473 0.6110 +5702 83737 0.4520 +5702 84056 0.4490 +5702 84153 0.4760 +5702 84262 0.4160 +5702 84844 0.5080 +5702 84925 0.4240 +5702 84954 0.7260 +5702 84962 0.4150 +5702 89796 0.4750 +5702 90557 0.4360 +5702 90637 0.5250 +5702 91252 0.5540 +5702 91409 0.7600 +5702 92856 0.4760 +5702 112399 0.5970 +5702 114803 0.7170 +5702 116541 0.4150 +5702 119504 0.4050 +5702 122706 0.6700 +5702 123228 0.5170 +5702 126374 0.4060 +5702 130617 0.6450 +5702 134510 0.7690 +5702 143471 0.9750 +5702 150864 0.4200 +5702 161742 0.4260 +5702 166378 0.4020 +5702 169436 0.6150 +5702 200734 0.4260 +5702 246184 0.4660 +5702 286187 0.4570 +5702 339745 0.4350 +5702 387712 0.4040 +5702 399473 0.4330 +5702 100652824 0.8600 +5704 5705 0.9990 +5704 5706 0.9990 +5704 5707 0.9990 +5704 5708 0.9990 +5704 5709 0.9990 +5704 5710 0.9990 +5704 5711 0.9990 +5704 5713 0.9990 +5704 5714 0.9990 +5704 5715 0.9860 +5704 5716 0.9990 +5704 5717 0.9990 +5704 5718 0.9990 +5704 5719 0.9990 +5704 5720 0.8560 +5704 5721 0.8240 +5704 5728 0.4660 +5704 5886 0.7270 +5704 5887 0.8750 +5704 5917 0.4780 +5704 5966 0.4490 +5704 5970 0.5210 +5704 5971 0.4520 +5704 6059 0.4150 +5704 6122 0.6780 +5704 6125 0.6910 +5704 6128 0.4880 +5704 6129 0.6670 +5704 6130 0.5730 +5704 6132 0.7340 +5704 6133 0.5470 +5704 6135 0.7030 +5704 6136 0.4520 +5704 6137 0.4240 +5704 6138 0.6090 +5704 6139 0.6880 +5704 6142 0.6490 +5704 6143 0.6080 +5704 6144 0.6760 +5704 6146 0.5640 +5704 6147 0.7060 +5704 6154 0.5560 +5704 6155 0.4390 +5704 6156 0.5090 +5704 6157 0.4890 +5704 6158 0.5290 +5704 6159 0.4320 +5704 6164 0.4220 +5704 6168 0.4160 +5704 6169 0.5290 +5704 6175 0.7520 +5704 6176 0.5190 +5704 6181 0.4080 +5704 6187 0.4880 +5704 6188 0.7080 +5704 6189 0.5650 +5704 6191 0.7280 +5704 6193 0.7110 +5704 6194 0.7130 +5704 6201 0.7430 +5704 6202 0.5310 +5704 6203 0.4860 +5704 6204 0.6830 +5704 6205 0.6950 +5704 6206 0.7070 +5704 6207 0.6490 +5704 6208 0.6870 +5704 6209 0.4010 +5704 6210 0.7060 +5704 6217 0.4650 +5704 6222 0.7260 +5704 6223 0.6950 +5704 6228 0.4660 +5704 6229 0.6870 +5704 6230 0.7310 +5704 6231 0.6030 +5704 6232 0.6870 +5704 6233 0.9620 +5704 6234 0.4170 +5704 6235 0.4740 +5704 6469 0.4260 +5704 6500 0.5410 +5704 6502 0.4730 +5704 6613 0.4500 +5704 6622 0.7350 +5704 6647 0.8300 +5704 6790 0.4730 +5704 6908 0.4200 +5704 6921 0.5280 +5704 6923 0.5240 +5704 6950 0.4960 +5704 7068 0.4750 +5704 7124 0.4810 +5704 7133 0.4410 +5704 7157 0.5190 +5704 7158 0.4530 +5704 7186 0.4140 +5704 7187 0.4100 +5704 7203 0.6070 +5704 7277 0.4100 +5704 7311 0.9350 +5704 7314 0.9650 +5704 7316 0.9720 +5704 7317 0.4260 +5704 7321 0.4830 +5704 7324 0.5030 +5704 7337 0.8210 +5704 7347 0.6140 +5704 7353 0.6890 +5704 7415 0.8550 +5704 7428 0.4400 +5704 7534 0.4510 +5704 7965 0.5050 +5704 7979 0.7450 +5704 8078 0.5320 +5704 8312 0.4220 +5704 8313 0.4170 +5704 8445 0.5170 +5704 8452 0.5940 +5704 8453 0.4690 +5704 8454 0.5200 +5704 8518 0.4430 +5704 8533 0.4900 +5704 8624 0.5560 +5704 8650 0.4140 +5704 8658 0.4790 +5704 8663 0.5500 +5704 8664 0.6850 +5704 8665 0.6100 +5704 8668 0.4660 +5704 8697 0.4490 +5704 8742 0.4260 +5704 8881 0.4240 +5704 8894 0.4450 +5704 8900 0.4300 +5704 8945 0.4360 +5704 8994 0.4270 +5704 9040 0.5260 +5704 9097 0.9990 +5704 9134 0.4060 +5704 9318 0.5080 +5704 9349 0.6760 +5704 9352 0.4970 +5704 9491 0.6550 +5704 9611 0.4010 +5704 9627 0.4340 +5704 9690 0.5530 +5704 9698 0.6090 +5704 9801 0.6710 +5704 9817 0.5920 +5704 9861 0.9990 +5704 9978 0.5790 +5704 10111 0.4580 +5704 10131 0.6040 +5704 10197 0.7560 +5704 10213 0.9990 +5704 10291 0.6220 +5704 10393 0.4990 +5704 10399 0.5760 +5704 10419 0.4390 +5704 10526 0.5710 +5704 10537 0.6250 +5704 10574 0.6430 +5704 10575 0.5650 +5704 10576 0.5200 +5704 10598 0.4460 +5704 10617 0.4790 +5704 10694 0.4410 +5704 10845 0.4590 +5704 10856 0.4660 +5704 10887 0.6360 +5704 10980 0.4790 +5704 10987 0.5630 +5704 11047 0.9990 +5704 11059 0.4050 +5704 11065 0.6220 +5704 11104 0.4540 +5704 11224 0.6500 +5704 11331 0.4200 +5704 22938 0.5010 +5704 22948 0.5380 +5704 23072 0.4050 +5704 23194 0.4200 +5704 23198 0.8030 +5704 23392 0.8770 +5704 23435 0.4130 +5704 23521 0.6940 +5704 23729 0.4020 +5704 23770 0.4600 +5704 25873 0.5200 +5704 25906 0.4360 +5704 26043 0.5420 +5704 26266 0.6740 +5704 26271 0.4050 +5704 27338 0.5810 +5704 27351 0.9940 +5704 27429 0.4340 +5704 29028 0.4060 +5704 29882 0.5510 +5704 29945 0.4770 +5704 29978 0.6000 +5704 29979 0.5850 +5704 50846 0.4260 +5704 51053 0.4130 +5704 51330 0.4320 +5704 51343 0.4380 +5704 51371 0.5910 +5704 51377 0.9990 +5704 51433 0.5360 +5704 51434 0.4670 +5704 51512 0.4050 +5704 51529 0.4440 +5704 51574 0.5840 +5704 51667 0.5960 +5704 51686 0.4320 +5704 54583 0.4050 +5704 54859 0.4820 +5704 55122 0.4270 +5704 55277 0.4080 +5704 55294 0.4500 +5704 55308 0.4380 +5704 55651 0.4560 +5704 55666 0.5500 +5704 56061 0.9130 +5704 56984 0.4130 +5704 57559 0.4930 +5704 64326 0.4150 +5704 64344 0.4280 +5704 64682 0.4080 +5704 64750 0.4060 +5704 79084 0.4250 +5704 79171 0.4210 +5704 79184 0.6620 +5704 79577 0.7080 +5704 80212 0.8080 +5704 80227 0.9970 +5704 80351 0.4580 +5704 81847 0.4410 +5704 83473 0.6020 +5704 83737 0.4070 +5704 84056 0.4370 +5704 84262 0.5710 +5704 84301 0.5380 +5704 84954 0.6820 +5704 84962 0.4180 +5704 90557 0.5910 +5704 90637 0.6670 +5704 91409 0.8290 +5704 112399 0.4180 +5704 114803 0.6540 +5704 114907 0.6450 +5704 122706 0.7420 +5704 123228 0.5070 +5704 126374 0.4170 +5704 130617 0.4540 +5704 134510 0.9440 +5704 143471 0.9870 +5704 161742 0.4280 +5704 200734 0.4280 +5704 203562 0.4310 +5704 286187 0.4550 +5704 339745 0.4160 +5704 399473 0.4360 +5704 414301 0.4670 +5704 728378 0.4200 +5704 100652824 0.7590 +5705 5706 0.9990 +5705 5707 0.9990 +5705 5708 0.9990 +5705 5709 0.9990 +5705 5710 0.9990 +5705 5711 0.9990 +5705 5713 0.9990 +5705 5714 0.9990 +5705 5715 0.9810 +5705 5716 0.9990 +5705 5717 0.9990 +5705 5718 0.9990 +5705 5719 0.9990 +5705 5720 0.8420 +5705 5721 0.7730 +5705 5728 0.4170 +5705 5771 0.4630 +5705 5859 0.4580 +5705 5886 0.9010 +5705 5887 0.8670 +5705 5901 0.4020 +5705 5914 0.8210 +5705 5917 0.6720 +5705 5931 0.4570 +5705 5966 0.4200 +5705 5970 0.4600 +5705 5971 0.4290 +5705 6059 0.4020 +5705 6095 0.6090 +5705 6122 0.7290 +5705 6124 0.4980 +5705 6125 0.7600 +5705 6128 0.5490 +5705 6129 0.7760 +5705 6130 0.6720 +5705 6132 0.6950 +5705 6133 0.6490 +5705 6135 0.7250 +5705 6136 0.5530 +5705 6137 0.4990 +5705 6138 0.6560 +5705 6139 0.6470 +5705 6142 0.6590 +5705 6143 0.4930 +5705 6144 0.6490 +5705 6146 0.4990 +5705 6147 0.7400 +5705 6154 0.6580 +5705 6155 0.5640 +5705 6156 0.4220 +5705 6157 0.5540 +5705 6158 0.5480 +5705 6159 0.4780 +5705 6160 0.4650 +5705 6164 0.5630 +5705 6165 0.4490 +5705 6169 0.4820 +5705 6175 0.6370 +5705 6187 0.5830 +5705 6188 0.6770 +5705 6189 0.6590 +5705 6191 0.7180 +5705 6193 0.6940 +5705 6194 0.6520 +5705 6201 0.6810 +5705 6202 0.6650 +5705 6203 0.5830 +5705 6204 0.6440 +5705 6205 0.6730 +5705 6206 0.6810 +5705 6207 0.7050 +5705 6208 0.6750 +5705 6210 0.6800 +5705 6217 0.6080 +5705 6222 0.6810 +5705 6223 0.8210 +5705 6224 0.5060 +5705 6228 0.4590 +5705 6229 0.6950 +5705 6230 0.6570 +5705 6231 0.6810 +5705 6232 0.6750 +5705 6233 0.9750 +5705 6235 0.4420 +5705 6256 0.6680 +5705 6301 0.4200 +5705 6500 0.5380 +5705 6502 0.4330 +5705 6603 0.4570 +5705 6613 0.4510 +5705 6622 0.6820 +5705 6647 0.6980 +5705 6667 0.5230 +5705 6790 0.4540 +5705 6908 0.4460 +5705 6921 0.4740 +5705 6923 0.5630 +5705 6950 0.5760 +5705 7068 0.7060 +5705 7124 0.4310 +5705 7133 0.4080 +5705 7157 0.9030 +5705 7186 0.4070 +5705 7203 0.5940 +5705 7266 0.4850 +5705 7284 0.4390 +5705 7311 0.9660 +5705 7314 0.9500 +5705 7316 0.9670 +5705 7321 0.5000 +5705 7324 0.5110 +5705 7337 0.7070 +5705 7347 0.6240 +5705 7353 0.7200 +5705 7375 0.4660 +5705 7415 0.8080 +5705 7419 0.5700 +5705 7428 0.6930 +5705 7965 0.4460 +5705 7979 0.7680 +5705 8036 0.5330 +5705 8202 0.6830 +5705 8290 0.7360 +5705 8312 0.4140 +5705 8313 0.4140 +5705 8356 0.6580 +5705 8405 0.4990 +5705 8452 0.5960 +5705 8453 0.4620 +5705 8454 0.5480 +5705 8518 0.4760 +5705 8533 0.4980 +5705 8607 0.9310 +5705 8624 0.5490 +5705 8636 0.7700 +5705 8650 0.4080 +5705 8658 0.4340 +5705 8661 0.4360 +5705 8662 0.4760 +5705 8663 0.4400 +5705 8664 0.6330 +5705 8665 0.5680 +5705 8668 0.4880 +5705 8697 0.4560 +5705 8772 0.5050 +5705 8792 0.4160 +5705 8856 0.5640 +5705 8880 0.4630 +5705 8881 0.4540 +5705 8900 0.5190 +5705 8945 0.4170 +5705 8994 0.4080 +5705 9020 0.4220 +5705 9040 0.4710 +5705 9045 0.4650 +5705 9097 0.9990 +5705 9134 0.4080 +5705 9158 0.4490 +5705 9318 0.4140 +5705 9319 0.4440 +5705 9320 0.8870 +5705 9349 0.7350 +5705 9477 0.4510 +5705 9491 0.4730 +5705 9529 0.4110 +5705 9531 0.4270 +5705 9611 0.4740 +5705 9690 0.5510 +5705 9817 0.5580 +5705 9861 0.9990 +5705 9970 0.4130 +5705 9978 0.5530 +5705 10075 0.5550 +5705 10197 0.8920 +5705 10213 0.9990 +5705 10295 0.4280 +5705 10300 0.4340 +5705 10393 0.4770 +5705 10399 0.7230 +5705 10419 0.4240 +5705 10476 0.4220 +5705 10480 0.5090 +5705 10537 0.5900 +5705 10574 0.7650 +5705 10575 0.6710 +5705 10576 0.5710 +5705 10694 0.6000 +5705 10726 0.4690 +5705 10856 0.5530 +5705 10980 0.8750 +5705 10987 0.6200 +5705 10992 0.4710 +5705 11047 0.9980 +5705 11059 0.4360 +5705 11065 0.4820 +5705 11198 0.4380 +5705 11224 0.6280 +5705 11315 0.4610 +5705 11319 0.4860 +5705 11326 0.4020 +5705 22938 0.5710 +5705 22948 0.6210 +5705 23072 0.4310 +5705 23172 0.4440 +5705 23194 0.4190 +5705 23198 0.7150 +5705 23392 0.9110 +5705 23521 0.6550 +5705 23770 0.4640 +5705 25793 0.5490 +5705 25862 0.4740 +5705 25873 0.5060 +5705 25906 0.4850 +5705 26043 0.6400 +5705 26100 0.4120 +5705 26271 0.4150 +5705 26589 0.4040 +5705 27338 0.4700 +5705 27351 0.9940 +5705 29882 0.4240 +5705 29945 0.5710 +5705 51053 0.4240 +5705 51081 0.5750 +5705 51138 0.4930 +5705 51330 0.4010 +5705 51343 0.4640 +5705 51371 0.5200 +5705 51377 0.9980 +5705 51433 0.5080 +5705 51434 0.4350 +5705 51493 0.4070 +5705 51512 0.4050 +5705 51529 0.4580 +5705 51573 0.4090 +5705 51608 0.4080 +5705 51667 0.5920 +5705 51741 0.4180 +5705 54557 0.4110 +5705 54583 0.4020 +5705 54859 0.4910 +5705 55139 0.4300 +5705 55294 0.6010 +5705 55308 0.5070 +5705 55466 0.4090 +5705 55666 0.5430 +5705 55968 0.6970 +5705 56061 0.7700 +5705 56893 0.9950 +5705 56984 0.5770 +5705 57215 0.4350 +5705 57695 0.8170 +5705 58484 0.7580 +5705 59269 0.4110 +5705 59349 0.4350 +5705 60592 0.7090 +5705 64221 0.4060 +5705 64326 0.4380 +5705 64682 0.4540 +5705 64750 0.4360 +5705 64795 0.4040 +5705 79184 0.5310 +5705 79944 0.4680 +5705 80212 0.8140 +5705 80227 0.9980 +5705 80347 0.4040 +5705 80351 0.4340 +5705 80352 0.4500 +5705 83737 0.4380 +5705 84101 0.4970 +5705 84172 0.4180 +5705 84700 0.6380 +5705 84954 0.5240 +5705 89872 0.4500 +5705 90557 0.4820 +5705 91409 0.8150 +5705 112399 0.4010 +5705 113451 0.4410 +5705 114803 0.5600 +5705 116541 0.4340 +5705 117246 0.4240 +5705 119504 0.4480 +5705 122706 0.5770 +5705 123228 0.5430 +5705 130617 0.7140 +5705 134510 0.8710 +5705 143471 0.9650 +5705 161742 0.4230 +5705 200734 0.4230 +5705 220134 0.4690 +5705 246184 0.4280 +5705 339745 0.5070 +5705 375248 0.4180 +5705 399473 0.4300 +5705 440093 0.6410 +5705 440686 0.6410 +5705 653604 0.6470 +5705 100509620 0.4500 +5705 100652824 0.5180 +5706 5707 0.9990 +5706 5708 0.9990 +5706 5709 0.9990 +5706 5710 0.9990 +5706 5711 0.9990 +5706 5713 0.9990 +5706 5714 0.9990 +5706 5715 0.9990 +5706 5716 0.9990 +5706 5717 0.9990 +5706 5718 0.9990 +5706 5719 0.9990 +5706 5720 0.7210 +5706 5721 0.7130 +5706 5728 0.4160 +5706 5886 0.5210 +5706 5887 0.8150 +5706 5917 0.4400 +5706 5966 0.4190 +5706 5970 0.4320 +5706 5971 0.4110 +5706 6059 0.4220 +5706 6125 0.4200 +5706 6130 0.4040 +5706 6146 0.4100 +5706 6175 0.4030 +5706 6188 0.4050 +5706 6189 0.4100 +5706 6191 0.4740 +5706 6193 0.4460 +5706 6201 0.5020 +5706 6203 0.4330 +5706 6206 0.4860 +5706 6210 0.5380 +5706 6222 0.4520 +5706 6223 0.6230 +5706 6230 0.4490 +5706 6232 0.4150 +5706 6233 0.9640 +5706 6469 0.4100 +5706 6500 0.5280 +5706 6502 0.4650 +5706 6561 0.4240 +5706 6622 0.6620 +5706 6647 0.6950 +5706 6741 0.4140 +5706 6790 0.4340 +5706 6815 0.4390 +5706 6921 0.6920 +5706 6923 0.5510 +5706 6950 0.4920 +5706 7124 0.4470 +5706 7133 0.4310 +5706 7157 0.4690 +5706 7186 0.4050 +5706 7311 0.9620 +5706 7314 0.9520 +5706 7316 0.9530 +5706 7321 0.4760 +5706 7324 0.4810 +5706 7334 0.4480 +5706 7336 0.5380 +5706 7337 0.7370 +5706 7347 0.6480 +5706 7353 0.6620 +5706 7411 0.4030 +5706 7415 0.6250 +5706 7419 0.4560 +5706 7428 0.7340 +5706 7965 0.5310 +5706 7979 0.7070 +5706 8312 0.4080 +5706 8313 0.4080 +5706 8405 0.4050 +5706 8452 0.5890 +5706 8453 0.4620 +5706 8454 0.5040 +5706 8467 0.5140 +5706 8518 0.4050 +5706 8520 0.4730 +5706 8650 0.4150 +5706 8658 0.4580 +5706 8664 0.5030 +5706 8665 0.5280 +5706 8697 0.4430 +5706 8721 0.4210 +5706 8742 0.4200 +5706 8813 0.4740 +5706 8881 0.4850 +5706 8883 0.4420 +5706 8894 0.4300 +5706 8900 0.4060 +5706 8945 0.4060 +5706 8994 0.4140 +5706 9039 0.4450 +5706 9097 0.9990 +5706 9134 0.4090 +5706 9318 0.7730 +5706 9349 0.4090 +5706 9352 0.5280 +5706 9412 0.4070 +5706 9491 0.4990 +5706 9690 0.4730 +5706 9817 0.5130 +5706 9861 0.9990 +5706 9978 0.5650 +5706 10056 0.4120 +5706 10111 0.4640 +5706 10190 0.4210 +5706 10197 0.7350 +5706 10213 0.9990 +5706 10393 0.5360 +5706 10480 0.4070 +5706 10537 0.6170 +5706 10539 0.5000 +5706 10574 0.4310 +5706 10575 0.6000 +5706 10576 0.6570 +5706 10600 0.4240 +5706 10617 0.4700 +5706 10673 0.4150 +5706 10694 0.4750 +5706 10772 0.5720 +5706 10980 0.4680 +5706 10987 0.8600 +5706 11047 0.9990 +5706 11059 0.4150 +5706 11065 0.5600 +5706 11104 0.4640 +5706 11331 0.5090 +5706 22948 0.4460 +5706 23072 0.4060 +5706 23194 0.4470 +5706 23198 0.8310 +5706 23392 0.8960 +5706 25906 0.4160 +5706 26043 0.5500 +5706 26266 0.7110 +5706 26271 0.4460 +5706 27338 0.4790 +5706 29028 0.4160 +5706 29882 0.4360 +5706 29945 0.4940 +5706 50846 0.4100 +5706 51053 0.4730 +5706 51126 0.4060 +5706 51138 0.4880 +5706 51143 0.4500 +5706 51184 0.4580 +5706 51187 0.4160 +5706 51343 0.4240 +5706 51371 0.5070 +5706 51377 0.9980 +5706 51433 0.5610 +5706 51434 0.4110 +5706 51529 0.4330 +5706 51574 0.4200 +5706 51637 0.4180 +5706 51667 0.5400 +5706 51686 0.4220 +5706 54583 0.4120 +5706 55139 0.5290 +5706 55277 0.4140 +5706 55294 0.4420 +5706 55666 0.5210 +5706 55968 0.4060 +5706 56061 0.7000 +5706 56893 0.9950 +5706 56984 0.6870 +5706 57544 0.5140 +5706 57559 0.4590 +5706 59269 0.4020 +5706 59349 0.4050 +5706 64326 0.4140 +5706 64344 0.4200 +5706 64682 0.4080 +5706 64750 0.4110 +5706 79184 0.5820 +5706 80212 0.8240 +5706 80227 0.7050 +5706 80351 0.4590 +5706 81847 0.4330 +5706 83473 0.6030 +5706 83737 0.4080 +5706 84056 0.4420 +5706 84954 0.5720 +5706 84962 0.4060 +5706 90557 0.5530 +5706 90637 0.6020 +5706 91409 0.8200 +5706 112399 0.4050 +5706 114803 0.5750 +5706 114908 0.4580 +5706 119504 0.4110 +5706 120892 0.5170 +5706 122706 0.5750 +5706 123169 0.4840 +5706 123228 0.5190 +5706 126374 0.4060 +5706 130617 0.7910 +5706 134510 0.8270 +5706 143471 0.9590 +5706 144165 0.4180 +5706 161742 0.4130 +5706 200734 0.4130 +5706 203562 0.4240 +5706 246184 0.4120 +5706 256356 0.4180 +5706 286187 0.5110 +5706 339745 0.4490 +5706 399473 0.4130 +5706 100652824 0.7410 +5707 5708 0.9990 +5707 5709 0.9990 +5707 5710 0.9990 +5707 5711 0.9990 +5707 5713 0.9990 +5707 5714 0.9990 +5707 5715 0.9750 +5707 5716 0.9990 +5707 5717 0.9990 +5707 5718 0.9990 +5707 5719 0.9990 +5707 5720 0.8630 +5707 5721 0.7340 +5707 5728 0.4520 +5707 5886 0.7700 +5707 5887 0.8360 +5707 5901 0.6130 +5707 5903 0.4300 +5707 5966 0.4070 +5707 5970 0.4430 +5707 5971 0.4110 +5707 6059 0.6490 +5707 6122 0.4530 +5707 6124 0.4980 +5707 6125 0.4640 +5707 6128 0.5800 +5707 6129 0.5180 +5707 6130 0.5240 +5707 6132 0.4110 +5707 6133 0.5460 +5707 6135 0.4300 +5707 6136 0.4280 +5707 6137 0.4890 +5707 6138 0.5520 +5707 6141 0.5530 +5707 6142 0.4910 +5707 6154 0.4730 +5707 6155 0.7280 +5707 6156 0.5450 +5707 6157 0.6340 +5707 6158 0.5440 +5707 6160 0.5060 +5707 6164 0.4890 +5707 6165 0.7040 +5707 6168 0.4010 +5707 6175 0.5140 +5707 6187 0.6940 +5707 6188 0.6120 +5707 6189 0.5280 +5707 6191 0.6970 +5707 6202 0.7120 +5707 6203 0.6860 +5707 6205 0.4710 +5707 6206 0.5740 +5707 6207 0.6770 +5707 6210 0.4550 +5707 6217 0.6490 +5707 6224 0.6800 +5707 6231 0.5280 +5707 6233 0.9760 +5707 6234 0.4090 +5707 6281 0.4110 +5707 6500 0.5060 +5707 6502 0.4040 +5707 6622 0.6740 +5707 6647 0.6870 +5707 6778 0.5310 +5707 6790 0.4370 +5707 6921 0.5960 +5707 6923 0.6520 +5707 6950 0.7800 +5707 7124 0.4330 +5707 7157 0.5800 +5707 7186 0.4140 +5707 7187 0.4320 +5707 7203 0.5620 +5707 7311 0.9400 +5707 7314 0.9570 +5707 7316 0.9660 +5707 7317 0.4990 +5707 7321 0.4650 +5707 7322 0.4610 +5707 7324 0.4210 +5707 7334 0.4860 +5707 7336 0.4180 +5707 7337 0.6870 +5707 7347 0.6500 +5707 7353 0.5880 +5707 7411 0.4100 +5707 7415 0.7780 +5707 7514 0.4130 +5707 7572 0.4290 +5707 7965 0.4670 +5707 7979 0.8370 +5707 8078 0.7080 +5707 8243 0.6030 +5707 8405 0.4040 +5707 8452 0.6430 +5707 8453 0.4920 +5707 8454 0.5710 +5707 8508 0.5860 +5707 8607 0.4790 +5707 8624 0.5890 +5707 8650 0.4030 +5707 8658 0.4510 +5707 8661 0.4690 +5707 8662 0.5940 +5707 8665 0.8310 +5707 8668 0.7610 +5707 8697 0.5060 +5707 8881 0.4160 +5707 8894 0.6020 +5707 8900 0.4140 +5707 8945 0.4010 +5707 8975 0.4280 +5707 8994 0.4030 +5707 9020 0.4060 +5707 9045 0.6330 +5707 9097 0.9990 +5707 9134 0.4190 +5707 9138 0.5350 +5707 9255 0.5640 +5707 9320 0.5260 +5707 9343 0.4070 +5707 9373 0.4480 +5707 9491 0.6050 +5707 9690 0.5960 +5707 9817 0.5500 +5707 9826 0.5230 +5707 9861 0.9990 +5707 9978 0.5430 +5707 10075 0.4080 +5707 10197 0.8290 +5707 10213 0.9990 +5707 10273 0.5360 +5707 10393 0.4180 +5707 10399 0.6810 +5707 10480 0.7620 +5707 10492 0.4040 +5707 10528 0.7190 +5707 10537 0.6450 +5707 10557 0.5800 +5707 10574 0.6770 +5707 10575 0.7710 +5707 10576 0.6810 +5707 10617 0.6290 +5707 10694 0.8010 +5707 10726 0.4800 +5707 10980 0.6470 +5707 10987 0.7360 +5707 11047 0.9990 +5707 11059 0.5070 +5707 11065 0.4710 +5707 11104 0.5700 +5707 11180 0.5110 +5707 22948 0.5840 +5707 23053 0.4050 +5707 23072 0.4600 +5707 23194 0.4530 +5707 23198 0.8180 +5707 23365 0.5230 +5707 23392 0.9090 +5707 23435 0.4330 +5707 23521 0.4380 +5707 23729 0.5580 +5707 25842 0.5900 +5707 25906 0.4050 +5707 25934 0.4030 +5707 26043 0.5160 +5707 26099 0.6790 +5707 26271 0.4390 +5707 27127 0.6010 +5707 27338 0.5210 +5707 29028 0.5700 +5707 29882 0.4080 +5707 29945 0.4540 +5707 29979 0.4050 +5707 51053 0.4380 +5707 51330 0.4010 +5707 51343 0.4330 +5707 51377 0.9750 +5707 51386 0.6420 +5707 51433 0.4710 +5707 51434 0.4140 +5707 51512 0.4050 +5707 51529 0.4090 +5707 51637 0.4180 +5707 51667 0.5040 +5707 51690 0.4230 +5707 54454 0.5620 +5707 55277 0.5580 +5707 55294 0.4120 +5707 55335 0.4020 +5707 55666 0.5550 +5707 55723 0.5920 +5707 56061 0.8230 +5707 56893 0.9960 +5707 56984 0.4700 +5707 57559 0.6070 +5707 59349 0.4050 +5707 64221 0.4040 +5707 64326 0.4110 +5707 64344 0.4780 +5707 64682 0.4450 +5707 64750 0.4650 +5707 64779 0.6790 +5707 65018 0.5280 +5707 79184 0.6640 +5707 79752 0.6800 +5707 80212 0.7790 +5707 80227 0.7700 +5707 80267 0.4700 +5707 80351 0.4600 +5707 83473 0.8570 +5707 83737 0.6040 +5707 84056 0.5600 +5707 84135 0.7520 +5707 84954 0.6430 +5707 84962 0.4020 +5707 90557 0.5860 +5707 90637 0.6570 +5707 91409 0.8340 +5707 113444 0.6860 +5707 114803 0.6640 +5707 122706 0.4930 +5707 123228 0.5570 +5707 134510 0.9010 +5707 143471 0.9240 +5707 161742 0.4280 +5707 200734 0.4280 +5707 201161 0.4010 +5707 203562 0.4460 +5707 246184 0.4050 +5707 256356 0.5580 +5707 257019 0.4470 +5707 286187 0.6300 +5707 399473 0.4140 +5707 100652824 0.8290 +5708 5709 0.9990 +5708 5710 0.9990 +5708 5711 0.9990 +5708 5713 0.9990 +5708 5714 0.9990 +5708 5715 0.9820 +5708 5716 0.9940 +5708 5717 0.9990 +5708 5718 0.9990 +5708 5719 0.9990 +5708 5720 0.6530 +5708 5721 0.7710 +5708 5728 0.4500 +5708 5886 0.9180 +5708 5887 0.9530 +5708 5901 0.6580 +5708 5966 0.4380 +5708 5970 0.4590 +5708 5971 0.4260 +5708 6122 0.4500 +5708 6124 0.4960 +5708 6125 0.4380 +5708 6128 0.5960 +5708 6129 0.5250 +5708 6130 0.4930 +5708 6132 0.4250 +5708 6133 0.5890 +5708 6135 0.5060 +5708 6136 0.4760 +5708 6137 0.4780 +5708 6138 0.5870 +5708 6141 0.4960 +5708 6142 0.4660 +5708 6154 0.5030 +5708 6155 0.6860 +5708 6156 0.4870 +5708 6157 0.6240 +5708 6158 0.5210 +5708 6160 0.5130 +5708 6164 0.4650 +5708 6165 0.5750 +5708 6175 0.5360 +5708 6181 0.4080 +5708 6187 0.7520 +5708 6188 0.6190 +5708 6189 0.5440 +5708 6191 0.6540 +5708 6193 0.4060 +5708 6202 0.6810 +5708 6203 0.6730 +5708 6205 0.5080 +5708 6206 0.5640 +5708 6207 0.4950 +5708 6210 0.4470 +5708 6217 0.6690 +5708 6222 0.4180 +5708 6224 0.6960 +5708 6231 0.5400 +5708 6233 0.9960 +5708 6301 0.4090 +5708 6469 0.4160 +5708 6500 0.5340 +5708 6502 0.4140 +5708 6561 0.7620 +5708 6622 0.6870 +5708 6647 0.8230 +5708 6790 0.4490 +5708 6921 0.5350 +5708 6923 0.6280 +5708 6950 0.7960 +5708 7046 0.4290 +5708 7124 0.5950 +5708 7132 0.6670 +5708 7157 0.7950 +5708 7158 0.4980 +5708 7184 0.6780 +5708 7186 0.6860 +5708 7187 0.4180 +5708 7203 0.7970 +5708 7311 0.9900 +5708 7314 0.9840 +5708 7316 0.9890 +5708 7317 0.5960 +5708 7318 0.4280 +5708 7321 0.4820 +5708 7324 0.5400 +5708 7334 0.4800 +5708 7336 0.5130 +5708 7337 0.7980 +5708 7347 0.6280 +5708 7353 0.7630 +5708 7415 0.9100 +5708 7428 0.5770 +5708 7874 0.4810 +5708 7965 0.5180 +5708 7979 0.8490 +5708 8078 0.4790 +5708 8266 0.5070 +5708 8312 0.5360 +5708 8313 0.4140 +5708 8314 0.4860 +5708 8405 0.4210 +5708 8452 0.6160 +5708 8453 0.6870 +5708 8454 0.5590 +5708 8607 0.4860 +5708 8638 0.4650 +5708 8650 0.4050 +5708 8658 0.4470 +5708 8661 0.5150 +5708 8662 0.6840 +5708 8665 0.7570 +5708 8668 0.8070 +5708 8697 0.4800 +5708 8878 0.4660 +5708 8881 0.4160 +5708 8894 0.5520 +5708 8945 0.4550 +5708 8994 0.4030 +5708 9045 0.6180 +5708 9097 0.9990 +5708 9134 0.4130 +5708 9140 0.5420 +5708 9175 0.4540 +5708 9255 0.4520 +5708 9352 0.4890 +5708 9373 0.4550 +5708 9392 0.7260 +5708 9474 0.5890 +5708 9529 0.4520 +5708 9531 0.5150 +5708 9636 0.4750 +5708 9690 0.8440 +5708 9817 0.6960 +5708 9861 0.9990 +5708 9978 0.5480 +5708 10075 0.4270 +5708 10197 0.8390 +5708 10213 0.9990 +5708 10236 0.4060 +5708 10273 0.4800 +5708 10393 0.4220 +5708 10399 0.7340 +5708 10480 0.7080 +5708 10492 0.5150 +5708 10537 0.7510 +5708 10574 0.8640 +5708 10575 0.8460 +5708 10576 0.8520 +5708 10594 0.4900 +5708 10598 0.5070 +5708 10617 0.6160 +5708 10694 0.7280 +5708 10726 0.4890 +5708 10856 0.4210 +5708 10963 0.5090 +5708 10980 0.6680 +5708 10987 0.6560 +5708 11047 0.9990 +5708 11059 0.4340 +5708 11065 0.5060 +5708 11104 0.5680 +5708 11316 0.4050 +5708 22938 0.5200 +5708 22948 0.7940 +5708 23053 0.4040 +5708 23072 0.4160 +5708 23194 0.4200 +5708 23198 0.8300 +5708 23203 0.4330 +5708 23322 0.9160 +5708 23392 0.8060 +5708 23521 0.4290 +5708 23729 0.5630 +5708 23770 0.6340 +5708 25906 0.4100 +5708 26043 0.6100 +5708 26271 0.4080 +5708 27338 0.5160 +5708 29028 0.5730 +5708 29789 0.4550 +5708 29882 0.4260 +5708 29945 0.4210 +5708 29978 0.7890 +5708 29979 0.8320 +5708 50613 0.5720 +5708 51053 0.4290 +5708 51330 0.4160 +5708 51343 0.4280 +5708 51371 0.6260 +5708 51377 0.9980 +5708 51386 0.6180 +5708 51433 0.4690 +5708 51434 0.4110 +5708 51512 0.4140 +5708 51529 0.4130 +5708 51637 0.4220 +5708 51667 0.6630 +5708 51684 0.4030 +5708 51686 0.4160 +5708 54205 0.4270 +5708 54454 0.5660 +5708 54583 0.4350 +5708 55139 0.4460 +5708 55236 0.4170 +5708 55277 0.5620 +5708 55294 0.5010 +5708 55666 0.8090 +5708 55781 0.7790 +5708 55915 0.4100 +5708 56061 0.8640 +5708 56675 0.4690 +5708 56893 0.7830 +5708 57559 0.6290 +5708 59269 0.4020 +5708 59349 0.4660 +5708 64326 0.4030 +5708 64344 0.4170 +5708 64682 0.4480 +5708 64750 0.4400 +5708 65018 0.6330 +5708 79029 0.5790 +5708 79184 0.6810 +5708 80212 0.8290 +5708 80227 0.9100 +5708 80351 0.4470 +5708 81631 0.4200 +5708 83473 0.9040 +5708 83714 0.5080 +5708 83737 0.4580 +5708 84056 0.5650 +5708 84301 0.7330 +5708 84954 0.6780 +5708 84962 0.4050 +5708 84993 0.5130 +5708 90637 0.6490 +5708 91409 0.8340 +5708 93550 0.4650 +5708 112399 0.4300 +5708 114803 0.6960 +5708 120892 0.5100 +5708 122706 0.6260 +5708 123228 0.5420 +5708 130617 0.5150 +5708 134510 0.9890 +5708 143471 0.9620 +5708 143630 0.6080 +5708 161742 0.4270 +5708 164153 0.4650 +5708 166378 0.5330 +5708 200734 0.4270 +5708 203562 0.4460 +5708 221302 0.4340 +5708 246184 0.4310 +5708 256356 0.5620 +5708 286187 0.5920 +5708 339745 0.4170 +5708 399473 0.4410 +5708 414301 0.5880 +5708 100652824 0.8220 +5709 5710 0.9990 +5709 5711 0.9990 +5709 5713 0.9990 +5709 5714 0.9990 +5709 5715 0.9720 +5709 5716 0.9930 +5709 5717 0.9990 +5709 5718 0.9990 +5709 5719 0.9990 +5709 5720 0.7540 +5709 5721 0.6360 +5709 5728 0.4160 +5709 5886 0.6740 +5709 5887 0.8000 +5709 5966 0.4070 +5709 5970 0.4440 +5709 5971 0.4110 +5709 6176 0.4340 +5709 6201 0.4090 +5709 6210 0.4860 +5709 6233 0.9660 +5709 6469 0.4160 +5709 6500 0.5010 +5709 6502 0.4270 +5709 6622 0.6850 +5709 6647 0.6900 +5709 6790 0.4260 +5709 6921 0.4720 +5709 6923 0.4950 +5709 7124 0.4710 +5709 7157 0.4950 +5709 7186 0.4160 +5709 7187 0.4110 +5709 7283 0.4010 +5709 7311 0.9270 +5709 7314 0.9850 +5709 7316 0.9870 +5709 7321 0.4310 +5709 7324 0.4320 +5709 7337 0.7030 +5709 7347 0.5850 +5709 7353 0.5830 +5709 7415 0.7700 +5709 7428 0.4050 +5709 7979 0.9990 +5709 8312 0.4450 +5709 8314 0.4020 +5709 8405 0.4030 +5709 8452 0.5960 +5709 8453 0.4300 +5709 8454 0.5230 +5709 8624 0.4040 +5709 8650 0.4080 +5709 8658 0.4450 +5709 8664 0.4750 +5709 8665 0.6890 +5709 8697 0.4260 +5709 8792 0.4560 +5709 8881 0.4350 +5709 8900 0.4400 +5709 8945 0.4670 +5709 8994 0.4080 +5709 9097 0.9990 +5709 9361 0.4280 +5709 9491 0.6190 +5709 9690 0.5500 +5709 9817 0.5730 +5709 9861 0.9990 +5709 9862 0.4810 +5709 9978 0.5750 +5709 10075 0.4720 +5709 10155 0.4070 +5709 10197 0.7580 +5709 10213 0.9990 +5709 10393 0.4250 +5709 10452 0.6270 +5709 10537 0.6810 +5709 10574 0.4120 +5709 10617 0.5930 +5709 10948 0.7580 +5709 10980 0.6810 +5709 10987 0.7540 +5709 11047 0.9990 +5709 11059 0.4540 +5709 11065 0.4530 +5709 11104 0.4760 +5709 11140 0.5210 +5709 11267 0.4100 +5709 23053 0.4110 +5709 23072 0.4270 +5709 23099 0.6090 +5709 23194 0.4280 +5709 23198 0.8540 +5709 23322 0.5790 +5709 23327 0.4780 +5709 23392 0.9120 +5709 23476 0.5140 +5709 23481 0.4080 +5709 23590 0.9000 +5709 23729 0.4870 +5709 25906 0.4030 +5709 26043 0.5490 +5709 27335 0.4360 +5709 27338 0.5070 +5709 29028 0.4780 +5709 29882 0.4410 +5709 29945 0.4100 +5709 29978 0.6750 +5709 29979 0.7370 +5709 50613 0.4010 +5709 51053 0.4050 +5709 51255 0.4170 +5709 51330 0.4040 +5709 51343 0.4660 +5709 51371 0.6240 +5709 51377 0.9980 +5709 51386 0.4300 +5709 51433 0.4100 +5709 51434 0.4080 +5709 51512 0.4010 +5709 51529 0.4140 +5709 51667 0.5440 +5709 51684 0.4510 +5709 51686 0.4390 +5709 54454 0.4810 +5709 54583 0.4160 +5709 55049 0.6030 +5709 55127 0.4450 +5709 55139 0.4370 +5709 55210 0.4400 +5709 55277 0.4760 +5709 55294 0.5670 +5709 55626 0.4290 +5709 55666 0.6190 +5709 55795 0.5030 +5709 56061 0.8510 +5709 56893 0.9960 +5709 57559 0.6230 +5709 59269 0.4180 +5709 59349 0.4050 +5709 64061 0.6330 +5709 64682 0.4110 +5709 64750 0.4780 +5709 79184 0.6280 +5709 80212 0.8020 +5709 80227 0.9490 +5709 80351 0.4490 +5709 83473 0.6470 +5709 83737 0.4290 +5709 83931 0.4060 +5709 83932 0.5140 +5709 84056 0.4760 +5709 84262 0.4930 +5709 84299 0.5990 +5709 84954 0.7230 +5709 84993 0.4070 +5709 90557 0.5840 +5709 90637 0.6590 +5709 91409 0.8190 +5709 93210 0.6500 +5709 94103 0.6250 +5709 112399 0.4160 +5709 114803 0.6490 +5709 122706 0.6520 +5709 123228 0.5190 +5709 124245 0.4250 +5709 130617 0.5360 +5709 134510 0.8720 +5709 143471 0.9390 +5709 144165 0.4280 +5709 147179 0.4360 +5709 200734 0.4110 +5709 203562 0.4500 +5709 256356 0.4760 +5709 286187 0.5690 +5709 389362 0.4220 +5709 414301 0.4060 +5709 728378 0.4500 +5709 100505591 0.4340 +5709 100652824 0.6930 +5710 5711 0.9990 +5710 5713 0.9990 +5710 5714 0.9990 +5710 5715 0.9840 +5710 5716 0.9970 +5710 5717 0.9990 +5710 5718 0.9990 +5710 5719 0.9990 +5710 5720 0.8300 +5710 5721 0.7030 +5710 5728 0.6060 +5710 5886 0.9990 +5710 5887 0.9990 +5710 5901 0.4550 +5710 5929 0.4250 +5710 5966 0.4590 +5710 5970 0.6080 +5710 5971 0.4510 +5710 6047 0.4120 +5710 6059 0.5870 +5710 6128 0.4010 +5710 6130 0.4800 +5710 6133 0.4390 +5710 6135 0.7320 +5710 6144 0.4660 +5710 6155 0.4500 +5710 6165 0.4160 +5710 6175 0.4170 +5710 6181 0.5310 +5710 6187 0.4710 +5710 6189 0.4150 +5710 6202 0.4460 +5710 6203 0.4040 +5710 6206 0.4260 +5710 6217 0.4800 +5710 6223 0.4700 +5710 6224 0.5280 +5710 6233 0.9990 +5710 6478 0.6090 +5710 6500 0.7130 +5710 6502 0.4890 +5710 6611 0.4180 +5710 6622 0.7260 +5710 6647 0.8000 +5710 6790 0.4300 +5710 6921 0.6960 +5710 6923 0.5680 +5710 6950 0.4130 +5710 7057 0.4650 +5710 7124 0.5130 +5710 7133 0.4080 +5710 7157 0.8800 +5710 7158 0.5200 +5710 7186 0.4100 +5710 7187 0.4170 +5710 7203 0.6620 +5710 7311 0.9940 +5710 7314 0.9960 +5710 7316 0.9990 +5710 7317 0.6990 +5710 7318 0.4140 +5710 7321 0.6680 +5710 7322 0.5010 +5710 7324 0.5240 +5710 7332 0.4340 +5710 7334 0.5140 +5710 7336 0.5470 +5710 7337 0.9940 +5710 7341 0.4400 +5710 7347 0.6410 +5710 7353 0.9020 +5710 7384 0.7530 +5710 7411 0.5480 +5710 7415 0.9310 +5710 7450 0.5480 +5710 7508 0.5530 +5710 7874 0.7430 +5710 7979 0.9550 +5710 8078 0.6850 +5710 8266 0.5920 +5710 8312 0.4310 +5710 8313 0.4130 +5710 8314 0.8720 +5710 8394 0.5910 +5710 8405 0.4250 +5710 8452 0.6840 +5710 8453 0.4740 +5710 8454 0.7410 +5710 8624 0.5760 +5710 8638 0.5010 +5710 8650 0.4050 +5710 8658 0.4610 +5710 8662 0.4740 +5710 8664 0.4010 +5710 8665 0.7650 +5710 8666 0.5810 +5710 8668 0.6540 +5710 8697 0.4610 +5710 8878 0.7590 +5710 8881 0.4680 +5710 8883 0.4130 +5710 8900 0.4350 +5710 8916 0.4010 +5710 8945 0.7520 +5710 8994 0.4050 +5710 9020 0.4250 +5710 9025 0.4380 +5710 9040 0.4320 +5710 9097 0.9990 +5710 9133 0.6140 +5710 9146 0.4100 +5710 9255 0.4580 +5710 9320 0.4270 +5710 9352 0.9170 +5710 9354 0.7970 +5710 9373 0.4110 +5710 9491 0.7130 +5710 9588 0.4620 +5710 9636 0.5700 +5710 9690 0.7600 +5710 9817 0.7220 +5710 9861 0.9990 +5710 9978 0.6700 +5710 10054 0.5630 +5710 10075 0.4890 +5710 10197 0.8010 +5710 10213 0.9990 +5710 10273 0.8900 +5710 10277 0.8000 +5710 10393 0.4420 +5710 10399 0.4380 +5710 10471 0.5170 +5710 10480 0.4290 +5710 10533 0.5550 +5710 10537 0.9350 +5710 10540 0.4200 +5710 10574 0.6080 +5710 10575 0.6280 +5710 10576 0.5820 +5710 10616 0.5390 +5710 10617 0.7260 +5710 10694 0.6490 +5710 10726 0.4620 +5710 10945 0.4330 +5710 10963 0.6450 +5710 10980 0.7340 +5710 10987 0.8830 +5710 11047 0.9990 +5710 11059 0.6580 +5710 11065 0.6700 +5710 11104 0.6060 +5710 11337 0.6720 +5710 11345 0.9460 +5710 22827 0.5590 +5710 22888 0.4470 +5710 22948 0.5640 +5710 23053 0.4030 +5710 23072 0.6210 +5710 23194 0.4060 +5710 23198 0.9910 +5710 23327 0.8300 +5710 23392 0.9300 +5710 23710 0.9450 +5710 23729 0.6050 +5710 25804 0.4250 +5710 25906 0.4110 +5710 26043 0.6280 +5710 26260 0.5250 +5710 26266 0.4350 +5710 26471 0.6180 +5710 26499 0.5530 +5710 27338 0.6390 +5710 27351 0.9940 +5710 29028 0.6120 +5710 29086 0.7760 +5710 29882 0.4710 +5710 29945 0.5060 +5710 29978 0.9810 +5710 29979 0.9960 +5710 30968 0.5280 +5710 50613 0.7910 +5710 51035 0.5520 +5710 51053 0.4130 +5710 51060 0.4430 +5710 51138 0.4660 +5710 51330 0.4100 +5710 51343 0.4360 +5710 51371 0.7450 +5710 51377 0.9990 +5710 51433 0.5260 +5710 51434 0.4110 +5710 51529 0.4470 +5710 51667 0.9770 +5710 51686 0.4780 +5710 51720 0.5110 +5710 54454 0.6090 +5710 54583 0.4130 +5710 55011 0.4200 +5710 55027 0.4590 +5710 55236 0.5340 +5710 55277 0.6040 +5710 55294 0.5160 +5710 55611 0.4150 +5710 55666 0.7230 +5710 55768 0.4060 +5710 55780 0.4020 +5710 55968 0.4690 +5710 56061 0.8790 +5710 56675 0.4580 +5710 56893 0.9990 +5710 57154 0.4260 +5710 57559 0.7150 +5710 57664 0.4440 +5710 59269 0.4180 +5710 59349 0.4270 +5710 60673 0.4080 +5710 64326 0.4450 +5710 64422 0.5010 +5710 64682 0.4380 +5710 64750 0.6210 +5710 79029 0.5220 +5710 79184 0.8810 +5710 80212 0.8130 +5710 80227 0.9070 +5710 80351 0.4610 +5710 81631 0.6630 +5710 81847 0.4160 +5710 83473 0.9080 +5710 83714 0.4580 +5710 83737 0.6250 +5710 84056 0.6030 +5710 84196 0.4130 +5710 84301 0.6730 +5710 84557 0.5310 +5710 84676 0.6730 +5710 84954 0.8210 +5710 84993 0.5650 +5710 90557 0.6090 +5710 91409 0.8190 +5710 92552 0.4730 +5710 93550 0.5050 +5710 112399 0.4040 +5710 114803 0.8090 +5710 119504 0.4050 +5710 122706 0.9040 +5710 123228 0.5760 +5710 134510 0.9410 +5710 143471 0.9810 +5710 143630 0.7830 +5710 164153 0.5150 +5710 166378 0.5190 +5710 203562 0.4770 +5710 221302 0.6270 +5710 246184 0.4110 +5710 256356 0.6030 +5710 286187 0.6620 +5710 339745 0.4190 +5710 389362 0.5580 +5710 414301 0.7830 +5710 100652824 0.8870 +5711 5713 0.9990 +5711 5714 0.9990 +5711 5715 0.9460 +5711 5716 0.9050 +5711 5717 0.9880 +5711 5718 0.9990 +5711 5719 0.9990 +5711 5720 0.5540 +5711 5721 0.6800 +5711 5966 0.4080 +5711 5970 0.4080 +5711 6233 0.9970 +5711 6500 0.4100 +5711 6502 0.4320 +5711 6790 0.4440 +5711 6921 0.4210 +5711 6923 0.4140 +5711 7124 0.4290 +5711 7157 0.5960 +5711 7186 0.4840 +5711 7187 0.4460 +5711 7311 0.6550 +5711 7314 0.5530 +5711 7316 0.6990 +5711 7321 0.4380 +5711 7324 0.4340 +5711 7347 0.5470 +5711 7353 0.5030 +5711 7415 0.5520 +5711 8312 0.4080 +5711 8452 0.6010 +5711 8453 0.4430 +5711 8454 0.5030 +5711 8650 0.4050 +5711 8658 0.4470 +5711 8697 0.4800 +5711 8740 0.4250 +5711 8881 0.4370 +5711 8900 0.4450 +5711 8945 0.4050 +5711 8994 0.4050 +5711 9097 0.8410 +5711 9133 0.4760 +5711 9134 0.4120 +5711 9361 0.7500 +5711 9419 0.4330 +5711 9491 0.4380 +5711 9817 0.5010 +5711 9861 0.9990 +5711 9978 0.5110 +5711 10197 0.4650 +5711 10213 0.9990 +5711 10393 0.4100 +5711 10537 0.5400 +5711 11047 0.9990 +5711 11059 0.4170 +5711 11065 0.4820 +5711 23072 0.4050 +5711 23322 0.4640 +5711 25906 0.4050 +5711 26043 0.5060 +5711 26190 0.5080 +5711 26271 0.4040 +5711 27338 0.4560 +5711 29882 0.4560 +5711 29945 0.4680 +5711 51053 0.4040 +5711 51343 0.4380 +5711 51377 0.9410 +5711 51433 0.4050 +5711 51434 0.4160 +5711 51529 0.4620 +5711 51667 0.6410 +5711 55294 0.4310 +5711 55666 0.5030 +5711 59349 0.4050 +5711 64344 0.4160 +5711 64682 0.4050 +5711 64750 0.4100 +5711 80212 0.6170 +5711 80227 0.8480 +5711 80267 0.5160 +5711 80351 0.4350 +5711 83737 0.4060 +5711 84172 0.4020 +5711 84955 0.6360 +5711 123228 0.5160 +5711 158135 0.4590 +5711 161742 0.4050 +5711 200734 0.4250 +5711 246184 0.4010 +5713 5714 0.9990 +5713 5715 0.9610 +5713 5716 0.9960 +5713 5717 0.9990 +5713 5718 0.9990 +5713 5719 0.9990 +5713 5720 0.6640 +5713 5721 0.8450 +5713 5728 0.4260 +5713 5886 0.6910 +5713 5887 0.7600 +5713 5901 0.5310 +5713 5966 0.4580 +5713 5970 0.4810 +5713 5971 0.4500 +5713 6130 0.4200 +5713 6181 0.4230 +5713 6187 0.5850 +5713 6188 0.4820 +5713 6191 0.4290 +5713 6194 0.4080 +5713 6201 0.4710 +5713 6202 0.4690 +5713 6203 0.4560 +5713 6207 0.4640 +5713 6209 0.4130 +5713 6217 0.4600 +5713 6223 0.4290 +5713 6224 0.4490 +5713 6231 0.4540 +5713 6233 0.9600 +5713 6301 0.4350 +5713 6500 0.6420 +5713 6502 0.5100 +5713 6622 0.6710 +5713 6647 0.7250 +5713 6790 0.4270 +5713 6921 0.6220 +5713 6923 0.5530 +5713 6950 0.4900 +5713 7124 0.4310 +5713 7157 0.4730 +5713 7186 0.4290 +5713 7187 0.4240 +5713 7227 0.4290 +5713 7311 0.9380 +5713 7314 0.9520 +5713 7316 0.9610 +5713 7317 0.6260 +5713 7318 0.4130 +5713 7319 0.4140 +5713 7320 0.4030 +5713 7321 0.5250 +5713 7324 0.5220 +5713 7334 0.4180 +5713 7337 0.7160 +5713 7347 0.7430 +5713 7353 0.7370 +5713 7407 0.4850 +5713 7415 0.7750 +5713 7428 0.4050 +5713 7979 0.8940 +5713 8078 0.4370 +5713 8312 0.4380 +5713 8313 0.4150 +5713 8314 0.4340 +5713 8405 0.4720 +5713 8452 0.6650 +5713 8453 0.4680 +5713 8454 0.6510 +5713 8533 0.5070 +5713 8562 0.5110 +5713 8565 0.4320 +5713 8650 0.4110 +5713 8658 0.4480 +5713 8661 0.5150 +5713 8662 0.6590 +5713 8663 0.5790 +5713 8664 0.9470 +5713 8665 0.4990 +5713 8666 0.5770 +5713 8667 0.9400 +5713 8668 0.6620 +5713 8669 0.5390 +5713 8697 0.4520 +5713 8792 0.4350 +5713 8881 0.4320 +5713 8883 0.4940 +5713 8894 0.4710 +5713 8900 0.4110 +5713 8945 0.4900 +5713 8994 0.4030 +5713 9020 0.4030 +5713 9039 0.4130 +5713 9040 0.5030 +5713 9097 0.9990 +5713 9131 0.4440 +5713 9134 0.4440 +5713 9252 0.4410 +5713 9255 0.5510 +5713 9318 0.5340 +5713 9352 0.6110 +5713 9690 0.4440 +5713 9817 0.5430 +5713 9861 0.9990 +5713 9929 0.5640 +5713 9939 0.4010 +5713 9958 0.6810 +5713 9978 0.6630 +5713 10054 0.4020 +5713 10075 0.4370 +5713 10197 0.7410 +5713 10213 0.9990 +5713 10294 0.4330 +5713 10393 0.4590 +5713 10399 0.5160 +5713 10480 0.7870 +5713 10537 0.6650 +5713 10574 0.5470 +5713 10575 0.5880 +5713 10576 0.5030 +5713 10617 0.6460 +5713 10673 0.4230 +5713 10694 0.4480 +5713 10920 0.5610 +5713 10980 0.5080 +5713 10987 0.9690 +5713 10988 0.4880 +5713 11047 0.9990 +5713 11059 0.4600 +5713 11065 0.4500 +5713 22948 0.4890 +5713 23072 0.4280 +5713 23172 0.6620 +5713 23194 0.4150 +5713 23198 0.7300 +5713 23392 0.9320 +5713 25906 0.4110 +5713 26043 0.5700 +5713 26271 0.4470 +5713 26589 0.4370 +5713 27335 0.6830 +5713 27338 0.4830 +5713 29882 0.4110 +5713 29945 0.4420 +5713 29978 0.5620 +5713 29979 0.5710 +5713 50813 0.5510 +5713 51031 0.4390 +5713 51053 0.4390 +5713 51081 0.4710 +5713 51138 0.7580 +5713 51330 0.4040 +5713 51343 0.4390 +5713 51371 0.6500 +5713 51377 0.9990 +5713 51386 0.7870 +5713 51433 0.5620 +5713 51434 0.4590 +5713 51512 0.4050 +5713 51529 0.4390 +5713 51667 0.5200 +5713 51686 0.4160 +5713 54764 0.4100 +5713 55031 0.4080 +5713 55049 0.6740 +5713 55139 0.4600 +5713 55173 0.4230 +5713 55236 0.4820 +5713 55294 0.4690 +5713 55666 0.6210 +5713 55968 0.6270 +5713 56061 0.7470 +5713 56984 0.5550 +5713 57470 0.4320 +5713 57559 0.5370 +5713 59269 0.4150 +5713 59349 0.4050 +5713 64326 0.4120 +5713 64344 0.4280 +5713 64682 0.4050 +5713 64708 0.4300 +5713 64750 0.4430 +5713 79184 0.6700 +5713 80124 0.4120 +5713 80212 0.7230 +5713 80227 0.9710 +5713 80351 0.4430 +5713 81847 0.4280 +5713 83473 0.5620 +5713 83737 0.4480 +5713 84142 0.4250 +5713 84954 0.5250 +5713 84962 0.4030 +5713 90557 0.4990 +5713 91409 0.8310 +5713 92552 0.4500 +5713 112939 0.6330 +5713 114803 0.4690 +5713 119504 0.4130 +5713 122706 0.7070 +5713 123228 0.6490 +5713 126119 0.5610 +5713 134510 0.8770 +5713 143471 0.9640 +5713 161742 0.4120 +5713 200734 0.4120 +5713 203562 0.4350 +5713 221302 0.5950 +5713 246184 0.4270 +5713 286187 0.4210 +5713 339745 0.4580 +5713 399473 0.4120 +5713 728689 0.4510 +5713 100652824 0.8620 +5714 5715 0.9800 +5714 5716 0.9880 +5714 5717 0.9990 +5714 5718 0.9990 +5714 5719 0.9990 +5714 5720 0.6560 +5714 5721 0.6010 +5714 5886 0.7520 +5714 5887 0.7420 +5714 5901 0.5320 +5714 5966 0.4130 +5714 5970 0.4160 +5714 5971 0.4080 +5714 6135 0.4430 +5714 6181 0.6390 +5714 6187 0.4200 +5714 6203 0.4030 +5714 6217 0.4490 +5714 6233 0.9640 +5714 6469 0.4160 +5714 6500 0.5350 +5714 6502 0.4290 +5714 6622 0.6700 +5714 6633 0.5600 +5714 6634 0.4800 +5714 6647 0.6910 +5714 6790 0.4380 +5714 6921 0.5320 +5714 6923 0.5910 +5714 7124 0.4220 +5714 7133 0.4100 +5714 7157 0.4600 +5714 7186 0.4230 +5714 7187 0.4150 +5714 7203 0.4120 +5714 7283 0.7300 +5714 7311 0.9360 +5714 7314 0.9540 +5714 7316 0.9540 +5714 7319 0.4020 +5714 7321 0.5090 +5714 7324 0.4910 +5714 7337 0.6930 +5714 7347 0.6310 +5714 7353 0.6440 +5714 7415 0.7970 +5714 7979 0.9940 +5714 7991 0.4090 +5714 8314 0.4300 +5714 8405 0.4050 +5714 8452 0.5490 +5714 8453 0.4480 +5714 8454 0.4990 +5714 8650 0.4030 +5714 8658 0.4690 +5714 8665 0.7390 +5714 8666 0.4560 +5714 8668 0.4540 +5714 8697 0.4270 +5714 8721 0.4100 +5714 8881 0.4280 +5714 8900 0.4380 +5714 8945 0.4460 +5714 8994 0.4050 +5714 9040 0.5110 +5714 9097 0.9980 +5714 9296 0.4260 +5714 9352 0.4830 +5714 9491 0.5870 +5714 9817 0.5950 +5714 9861 0.9990 +5714 9978 0.5740 +5714 10197 0.9140 +5714 10213 0.9990 +5714 10393 0.4150 +5714 10480 0.5250 +5714 10537 0.6900 +5714 10574 0.4870 +5714 10575 0.5540 +5714 10576 0.4290 +5714 10617 0.6300 +5714 10694 0.5100 +5714 10920 0.4450 +5714 10980 0.6940 +5714 10987 0.7130 +5714 11047 0.9990 +5714 11059 0.4770 +5714 11065 0.6490 +5714 11104 0.5550 +5714 11140 0.4180 +5714 22948 0.4560 +5714 23072 0.4380 +5714 23198 0.6590 +5714 23392 0.9360 +5714 23729 0.5550 +5714 25804 0.4240 +5714 25906 0.4120 +5714 26043 0.5090 +5714 26271 0.4120 +5714 27335 0.5760 +5714 27338 0.6020 +5714 27351 0.9940 +5714 28987 0.9680 +5714 29028 0.5550 +5714 29882 0.4080 +5714 29925 0.4030 +5714 29945 0.8130 +5714 29978 0.5840 +5714 29979 0.6400 +5714 30968 0.5050 +5714 50613 0.4250 +5714 50846 0.4160 +5714 51031 0.4470 +5714 51053 0.4110 +5714 51330 0.4110 +5714 51343 0.4520 +5714 51371 0.6350 +5714 51377 0.9990 +5714 51386 0.4980 +5714 51433 0.4550 +5714 51434 0.4110 +5714 51512 0.4160 +5714 51529 0.5470 +5714 51667 0.5930 +5714 51686 0.4110 +5714 54454 0.5600 +5714 54801 0.7510 +5714 55127 0.4840 +5714 55168 0.4110 +5714 55277 0.5540 +5714 55294 0.4840 +5714 55559 0.8330 +5714 55666 0.5420 +5714 55968 0.4030 +5714 56061 0.7610 +5714 56893 0.9960 +5714 56993 0.4040 +5714 57559 0.6340 +5714 59269 0.4010 +5714 59349 0.4290 +5714 64326 0.4040 +5714 64682 0.4750 +5714 64750 0.5100 +5714 79184 0.6570 +5714 80212 0.8750 +5714 80227 0.8660 +5714 80351 0.4690 +5714 83473 0.9270 +5714 83737 0.4910 +5714 83987 0.4030 +5714 84056 0.5540 +5714 84061 0.4230 +5714 84262 0.4230 +5714 84954 0.6600 +5714 84993 0.4710 +5714 90557 0.5840 +5714 91409 0.8170 +5714 91544 0.4180 +5714 114803 0.6670 +5714 119504 0.4110 +5714 122706 0.7210 +5714 123228 0.5770 +5714 134510 0.8950 +5714 140460 0.4030 +5714 143471 0.9620 +5714 200185 0.5290 +5714 201595 0.4260 +5714 203562 0.4410 +5714 246184 0.4160 +5714 256356 0.5540 +5714 286187 0.6070 +5714 389362 0.4270 +5714 399473 0.4630 +5714 414301 0.4140 +5714 100128731 0.5060 +5714 100652824 0.9350 +5715 5716 0.9420 +5715 5717 0.9880 +5715 5718 0.9870 +5715 5719 0.9800 +5715 5720 0.5220 +5715 5721 0.5870 +5715 5728 0.4420 +5715 5901 0.5510 +5715 5966 0.4380 +5715 5970 0.4720 +5715 5971 0.4350 +5715 6135 0.4370 +5715 6193 0.4530 +5715 6208 0.5720 +5715 6210 0.4460 +5715 6217 0.4390 +5715 6222 0.4210 +5715 6224 0.4050 +5715 6233 0.5550 +5715 6500 0.4760 +5715 6502 0.5750 +5715 6561 0.4420 +5715 6622 0.7010 +5715 6647 0.7120 +5715 6921 0.4670 +5715 6923 0.4260 +5715 6929 0.5570 +5715 7124 0.5470 +5715 7157 0.5110 +5715 7161 0.4200 +5715 7186 0.4380 +5715 7311 0.5300 +5715 7314 0.6340 +5715 7316 0.5730 +5715 7321 0.4670 +5715 7324 0.4530 +5715 7347 0.5580 +5715 7353 0.6580 +5715 7415 0.6830 +5715 7979 0.6570 +5715 8312 0.4130 +5715 8405 0.4460 +5715 8452 0.5650 +5715 8453 0.4110 +5715 8454 0.4710 +5715 8650 0.4140 +5715 8658 0.4580 +5715 8697 0.4660 +5715 8881 0.4350 +5715 8945 0.4980 +5715 8994 0.4100 +5715 9020 0.4200 +5715 9097 0.6370 +5715 9349 0.4830 +5715 9491 0.5620 +5715 9817 0.5200 +5715 9861 0.9850 +5715 9978 0.5780 +5715 10197 0.5970 +5715 10213 0.9800 +5715 10393 0.4410 +5715 10422 0.4170 +5715 10537 0.5350 +5715 10673 0.4050 +5715 11047 0.8850 +5715 11065 0.4420 +5715 11104 0.4200 +5715 23198 0.5850 +5715 23304 0.4910 +5715 23392 0.5410 +5715 23557 0.5010 +5715 25906 0.6030 +5715 26043 0.5040 +5715 26258 0.5280 +5715 26266 0.8670 +5715 26271 0.4170 +5715 26995 0.5760 +5715 29882 0.4420 +5715 29945 0.5780 +5715 29979 0.4800 +5715 51053 0.4010 +5715 51330 0.4030 +5715 51343 0.4170 +5715 51371 0.6030 +5715 51377 0.6270 +5715 51433 0.5150 +5715 51434 0.4110 +5715 51512 0.4050 +5715 51517 0.6070 +5715 51529 0.4160 +5715 51667 0.5280 +5715 55036 0.4310 +5715 55294 0.4750 +5715 55666 0.5750 +5715 59269 0.4050 +5715 59349 0.4150 +5715 64221 0.4530 +5715 64326 0.4100 +5715 64682 0.4130 +5715 64750 0.4050 +5715 80227 0.8950 +5715 80351 0.4580 +5715 83737 0.4030 +5715 113444 0.5200 +5715 119504 0.4940 +5715 122706 0.4300 +5715 123228 0.5110 +5715 126374 0.4050 +5715 136647 0.4360 +5715 143471 0.4270 +5715 161742 0.4050 +5715 200734 0.4050 +5715 246184 0.4090 +5715 339745 0.4350 +5715 389362 0.5290 +5715 399473 0.4050 +5716 5717 0.9990 +5716 5718 0.9990 +5716 5719 0.9990 +5716 5720 0.4120 +5716 5721 0.4080 +5716 5728 0.5260 +5716 5887 0.4210 +5716 5925 0.8070 +5716 5966 0.4560 +5716 5970 0.7480 +5716 5971 0.4490 +5716 5982 0.4010 +5716 6233 0.5440 +5716 6500 0.4660 +5716 6502 0.5020 +5716 6657 0.4310 +5716 6790 0.4950 +5716 6921 0.4910 +5716 6923 0.4470 +5716 7124 0.4690 +5716 7157 0.8660 +5716 7161 0.4020 +5716 7186 0.4390 +5716 7187 0.4340 +5716 7311 0.6550 +5716 7314 0.5740 +5716 7316 0.5880 +5716 7319 0.4970 +5716 7321 0.5020 +5716 7324 0.5690 +5716 7337 0.6830 +5716 7347 0.5680 +5716 7353 0.5630 +5716 7411 0.5040 +5716 7415 0.5680 +5716 7428 0.4020 +5716 7979 0.7090 +5716 8312 0.5000 +5716 8313 0.4690 +5716 8405 0.4450 +5716 8452 0.6120 +5716 8453 0.4870 +5716 8454 0.5230 +5716 8636 0.4080 +5716 8650 0.4420 +5716 8658 0.4110 +5716 8697 0.4940 +5716 8881 0.4470 +5716 8900 0.4600 +5716 8945 0.4470 +5716 8994 0.4010 +5716 9020 0.4170 +5716 9097 0.9210 +5716 9134 0.4220 +5716 9474 0.4060 +5716 9817 0.6820 +5716 9861 0.9990 +5716 9978 0.5830 +5716 10213 0.9960 +5716 10393 0.4890 +5716 10413 0.4220 +5716 10533 0.4500 +5716 10537 0.5760 +5716 10658 0.5230 +5716 10959 0.4250 +5716 11047 0.9750 +5716 11059 0.4320 +5716 11060 0.4030 +5716 11065 0.4530 +5716 22916 0.4870 +5716 23053 0.4080 +5716 23072 0.4320 +5716 23194 0.4320 +5716 23198 0.4110 +5716 23392 0.5470 +5716 25906 0.4080 +5716 26043 0.5440 +5716 26266 0.4320 +5716 26271 0.4290 +5716 27338 0.4770 +5716 29882 0.4450 +5716 29945 0.4620 +5716 51053 0.4140 +5716 51343 0.4390 +5716 51371 0.5550 +5716 51377 0.9970 +5716 51433 0.4270 +5716 51434 0.4190 +5716 51529 0.4700 +5716 51534 0.4710 +5716 51667 0.5070 +5716 51684 0.4120 +5716 54583 0.4280 +5716 55294 0.4370 +5716 55666 0.5280 +5716 56061 0.6610 +5716 56180 0.4010 +5716 56984 0.4450 +5716 57037 0.4310 +5716 59269 0.4310 +5716 59349 0.4450 +5716 64221 0.4560 +5716 64326 0.5080 +5716 64344 0.4180 +5716 64682 0.4450 +5716 64750 0.4970 +5716 79923 0.4360 +5716 80212 0.8320 +5716 80227 0.9990 +5716 81847 0.5030 +5716 83737 0.4320 +5716 90557 0.6070 +5716 91409 0.8330 +5716 112399 0.4180 +5716 119504 0.4280 +5716 123228 0.5340 +5716 130617 0.4110 +5716 134510 0.5870 +5716 143471 0.4010 +5716 144165 0.4380 +5716 200734 0.4110 +5716 203562 0.4760 +5716 246184 0.4720 +5716 339745 0.4030 +5716 348995 0.4070 +5716 100423062 0.4120 +5717 5718 0.9990 +5717 5719 0.9990 +5717 5720 0.7340 +5717 5721 0.7130 +5717 5728 0.4260 +5717 5886 0.7020 +5717 5887 0.7840 +5717 5901 0.6340 +5717 5966 0.4210 +5717 5970 0.4650 +5717 5971 0.4400 +5717 6122 0.4760 +5717 6124 0.4920 +5717 6125 0.4100 +5717 6128 0.5400 +5717 6129 0.4590 +5717 6130 0.4840 +5717 6133 0.5350 +5717 6135 0.5230 +5717 6136 0.4200 +5717 6137 0.4770 +5717 6138 0.5460 +5717 6141 0.4780 +5717 6142 0.4500 +5717 6154 0.4330 +5717 6155 0.6630 +5717 6156 0.4990 +5717 6157 0.6280 +5717 6158 0.5170 +5717 6160 0.4780 +5717 6164 0.4650 +5717 6165 0.6070 +5717 6168 0.4100 +5717 6175 0.4990 +5717 6181 0.4320 +5717 6187 0.7110 +5717 6188 0.5720 +5717 6189 0.4970 +5717 6191 0.6280 +5717 6202 0.6820 +5717 6203 0.6550 +5717 6205 0.4480 +5717 6206 0.4920 +5717 6207 0.4580 +5717 6217 0.6430 +5717 6224 0.6740 +5717 6231 0.5210 +5717 6233 0.9750 +5717 6500 0.6430 +5717 6502 0.4500 +5717 6602 0.5230 +5717 6603 0.5890 +5717 6604 0.4140 +5717 6613 0.5260 +5717 6622 0.7120 +5717 6647 0.7110 +5717 6790 0.4780 +5717 6921 0.6000 +5717 6923 0.6700 +5717 6950 0.5700 +5717 7124 0.4430 +5717 7157 0.5170 +5717 7167 0.4330 +5717 7186 0.4410 +5717 7187 0.4340 +5717 7203 0.5690 +5717 7311 0.9430 +5717 7314 0.9530 +5717 7316 0.9590 +5717 7317 0.6770 +5717 7319 0.6550 +5717 7321 0.6600 +5717 7324 0.4680 +5717 7332 0.4910 +5717 7334 0.5050 +5717 7336 0.5040 +5717 7337 0.8000 +5717 7347 0.5710 +5717 7353 0.6010 +5717 7375 0.7220 +5717 7386 0.7150 +5717 7415 0.7850 +5717 7965 0.4530 +5717 7979 0.9980 +5717 8405 0.4050 +5717 8450 0.6410 +5717 8452 0.6380 +5717 8453 0.4280 +5717 8454 0.6230 +5717 8607 0.4580 +5717 8624 0.5650 +5717 8650 0.4050 +5717 8658 0.4520 +5717 8661 0.4220 +5717 8662 0.5830 +5717 8665 0.7990 +5717 8668 0.7930 +5717 8697 0.4400 +5717 8742 0.4310 +5717 8826 0.7920 +5717 8881 0.4430 +5717 8894 0.5230 +5717 8900 0.4140 +5717 8945 0.4610 +5717 8994 0.4030 +5717 9020 0.4010 +5717 9040 0.4230 +5717 9045 0.6200 +5717 9097 0.9990 +5717 9134 0.4530 +5717 9246 0.4750 +5717 9255 0.5100 +5717 9318 0.5170 +5717 9690 0.6610 +5717 9817 0.5650 +5717 9861 0.9990 +5717 9978 0.6040 +5717 10075 0.4600 +5717 10197 0.8960 +5717 10213 0.9990 +5717 10294 0.4520 +5717 10393 0.4910 +5717 10399 0.6740 +5717 10480 0.7900 +5717 10492 0.4020 +5717 10537 0.6740 +5717 10574 0.6990 +5717 10575 0.8210 +5717 10576 0.7640 +5717 10617 0.6440 +5717 10694 0.8000 +5717 10726 0.4350 +5717 10728 0.6660 +5717 10920 0.4880 +5717 10980 0.7270 +5717 10987 0.8090 +5717 11047 0.9990 +5717 11059 0.4560 +5717 11065 0.4560 +5717 11104 0.5610 +5717 22948 0.6500 +5717 23072 0.4090 +5717 23194 0.4290 +5717 23198 0.8500 +5717 23392 0.9370 +5717 23521 0.4180 +5717 23729 0.5600 +5717 25820 0.7610 +5717 25906 0.4160 +5717 26043 0.5430 +5717 26100 0.4250 +5717 26271 0.4150 +5717 27335 0.4190 +5717 27338 0.6910 +5717 27351 0.9940 +5717 29028 0.5760 +5717 29882 0.4810 +5717 29945 0.4160 +5717 29978 0.5870 +5717 29979 0.5940 +5717 50813 0.4230 +5717 51053 0.4250 +5717 51330 0.4160 +5717 51343 0.4350 +5717 51371 0.6600 +5717 51377 0.9980 +5717 51386 0.6330 +5717 51433 0.5200 +5717 51434 0.4520 +5717 51512 0.4100 +5717 51529 0.4050 +5717 51667 0.5440 +5717 54454 0.5640 +5717 55139 0.4230 +5717 55277 0.5600 +5717 55294 0.4760 +5717 55627 0.4260 +5717 55666 0.5870 +5717 56061 0.8520 +5717 56893 0.9960 +5717 56926 0.4230 +5717 57559 0.6440 +5717 59269 0.4150 +5717 59349 0.4310 +5717 64326 0.4030 +5717 64344 0.4260 +5717 64682 0.4260 +5717 64750 0.4170 +5717 79184 0.6210 +5717 80212 0.7910 +5717 80227 0.8970 +5717 80351 0.4610 +5717 81847 0.4290 +5717 83473 0.9530 +5717 83737 0.4190 +5717 84056 0.5600 +5717 84954 0.6810 +5717 84962 0.4050 +5717 90557 0.5750 +5717 90637 0.5580 +5717 91409 0.8050 +5717 114803 0.6170 +5717 119504 0.4440 +5717 120892 0.5310 +5717 122706 0.6310 +5717 123228 0.6000 +5717 130617 0.5620 +5717 134510 0.9500 +5717 137695 0.7440 +5717 140456 0.4530 +5717 143471 0.8670 +5717 203562 0.4220 +5717 256356 0.5600 +5717 286187 0.6070 +5717 100652824 0.8620 +5718 5719 0.9990 +5718 5720 0.7040 +5718 5721 0.6400 +5718 5728 0.4350 +5718 5886 0.5840 +5718 5887 0.7090 +5718 5901 0.5470 +5718 5966 0.4460 +5718 5970 0.4500 +5718 5971 0.4410 +5718 6059 0.4170 +5718 6128 0.5310 +5718 6129 0.4160 +5718 6130 0.4230 +5718 6133 0.4290 +5718 6135 0.4590 +5718 6138 0.4920 +5718 6141 0.4170 +5718 6155 0.4960 +5718 6156 0.4150 +5718 6157 0.4520 +5718 6158 0.5020 +5718 6164 0.4160 +5718 6165 0.4540 +5718 6175 0.5540 +5718 6187 0.5770 +5718 6188 0.5290 +5718 6189 0.4040 +5718 6191 0.5120 +5718 6193 0.4770 +5718 6202 0.4870 +5718 6203 0.5400 +5718 6206 0.4030 +5718 6217 0.4710 +5718 6224 0.4280 +5718 6231 0.4320 +5718 6233 0.9700 +5718 6500 0.5540 +5718 6502 0.4090 +5718 6622 0.6930 +5718 6647 0.6690 +5718 6741 0.4110 +5718 6790 0.4410 +5718 6921 0.6270 +5718 6923 0.5770 +5718 6950 0.6190 +5718 7124 0.4330 +5718 7157 0.4710 +5718 7186 0.4160 +5718 7187 0.4110 +5718 7203 0.4440 +5718 7311 0.9440 +5718 7314 0.9530 +5718 7316 0.9580 +5718 7317 0.4380 +5718 7321 0.4660 +5718 7324 0.4790 +5718 7334 0.4260 +5718 7336 0.4390 +5718 7337 0.7880 +5718 7347 0.6820 +5718 7353 0.6550 +5718 7415 0.8070 +5718 7428 0.4110 +5718 7979 0.9940 +5718 8317 0.4080 +5718 8318 0.4530 +5718 8405 0.4220 +5718 8452 0.7760 +5718 8453 0.5150 +5718 8454 0.6790 +5718 8533 0.5030 +5718 8562 0.6010 +5718 8650 0.4050 +5718 8658 0.4530 +5718 8661 0.6650 +5718 8662 0.5220 +5718 8663 0.7010 +5718 8664 0.8060 +5718 8665 0.7770 +5718 8667 0.6240 +5718 8668 0.4790 +5718 8697 0.4970 +5718 8881 0.4650 +5718 8894 0.4790 +5718 8900 0.4160 +5718 8945 0.4350 +5718 8994 0.4050 +5718 9040 0.4370 +5718 9045 0.4530 +5718 9097 0.9990 +5718 9134 0.4190 +5718 9232 0.5670 +5718 9255 0.4700 +5718 9318 0.5500 +5718 9352 0.6150 +5718 9373 0.6110 +5718 9491 0.5180 +5718 9531 0.4710 +5718 9690 0.5860 +5718 9817 0.5940 +5718 9837 0.4850 +5718 9861 0.9990 +5718 9958 0.4930 +5718 9978 0.6230 +5718 10190 0.4090 +5718 10197 0.8850 +5718 10213 0.9990 +5718 10286 0.4120 +5718 10393 0.4160 +5718 10399 0.5300 +5718 10480 0.8670 +5718 10537 0.6890 +5718 10539 0.4680 +5718 10574 0.5610 +5718 10575 0.7180 +5718 10576 0.6550 +5718 10617 0.7000 +5718 10694 0.6500 +5718 10920 0.5730 +5718 10980 0.8200 +5718 10987 0.9280 +5718 11047 0.9990 +5718 11059 0.4900 +5718 11065 0.5250 +5718 11073 0.8350 +5718 11104 0.5710 +5718 22948 0.5950 +5718 23072 0.4380 +5718 23194 0.4160 +5718 23198 0.8580 +5718 23392 0.9560 +5718 23560 0.6390 +5718 23729 0.5660 +5718 25906 0.4050 +5718 26043 0.5060 +5718 26271 0.4730 +5718 27338 0.4660 +5718 27351 0.9940 +5718 29028 0.5920 +5718 29882 0.5750 +5718 29945 0.5860 +5718 29978 0.7250 +5718 29979 0.6590 +5718 50813 0.5900 +5718 51053 0.4610 +5718 51081 0.4370 +5718 51138 0.5840 +5718 51330 0.4030 +5718 51343 0.4360 +5718 51371 0.7410 +5718 51377 0.9980 +5718 51386 0.7570 +5718 51433 0.5130 +5718 51434 0.4050 +5718 51512 0.4260 +5718 51529 0.4080 +5718 51667 0.5110 +5718 51686 0.4160 +5718 54454 0.5690 +5718 54583 0.4200 +5718 55139 0.4470 +5718 55277 0.5650 +5718 55294 0.4830 +5718 55299 0.4990 +5718 55666 0.5650 +5718 55854 0.4240 +5718 55968 0.5490 +5718 56061 0.8370 +5718 56893 0.9960 +5718 56984 0.5660 +5718 57559 0.7100 +5718 59349 0.4570 +5718 64210 0.4060 +5718 64221 0.4110 +5718 64326 0.4030 +5718 64344 0.4080 +5718 64682 0.4100 +5718 64750 0.5160 +5718 64785 0.4320 +5718 79184 0.6400 +5718 79612 0.4220 +5718 80155 0.5260 +5718 80212 0.8230 +5718 80227 0.9710 +5718 80351 0.4640 +5718 81890 0.6210 +5718 83473 0.8940 +5718 83737 0.4820 +5718 84056 0.5670 +5718 84250 0.9220 +5718 84954 0.7160 +5718 84962 0.4050 +5718 84993 0.4310 +5718 90557 0.5890 +5718 90637 0.6680 +5718 91409 0.8280 +5718 112399 0.4110 +5718 114803 0.6580 +5718 122706 0.7650 +5718 123228 0.5620 +5718 130617 0.5550 +5718 134510 0.9160 +5718 143471 0.9230 +5718 161742 0.4030 +5718 169436 0.6230 +5718 200734 0.4050 +5718 203562 0.4460 +5718 221302 0.4320 +5718 246184 0.4010 +5718 256356 0.5650 +5718 286187 0.7380 +5718 339745 0.4130 +5718 375248 0.4180 +5718 389362 0.4270 +5718 414301 0.4180 +5718 100652824 0.8570 +5719 5720 0.7370 +5719 5721 0.6390 +5719 5886 0.7790 +5719 5887 0.7610 +5719 5966 0.4090 +5719 5970 0.4110 +5719 6121 0.4080 +5719 6125 0.5130 +5719 6129 0.5270 +5719 6156 0.4290 +5719 6203 0.5110 +5719 6233 0.9650 +5719 6500 0.4640 +5719 6502 0.4110 +5719 6709 0.4320 +5719 6790 0.4120 +5719 6835 0.4140 +5719 6921 0.5090 +5719 6923 0.4880 +5719 7124 0.4180 +5719 7133 0.4040 +5719 7157 0.4450 +5719 7158 0.4430 +5719 7186 0.4080 +5719 7311 0.9290 +5719 7314 0.9480 +5719 7316 0.9530 +5719 7321 0.4790 +5719 7324 0.4690 +5719 7337 0.7420 +5719 7347 0.5880 +5719 7353 0.6550 +5719 7415 0.7940 +5719 7979 0.9930 +5719 8405 0.4230 +5719 8452 0.5290 +5719 8453 0.4570 +5719 8454 0.4860 +5719 8650 0.4050 +5719 8658 0.4510 +5719 8665 0.7050 +5719 8697 0.4820 +5719 8881 0.4360 +5719 8900 0.4380 +5719 8945 0.4050 +5719 8994 0.4050 +5719 9040 0.4220 +5719 9097 0.9990 +5719 9352 0.6450 +5719 9442 0.4370 +5719 9690 0.5550 +5719 9817 0.5360 +5719 9861 0.9990 +5719 9978 0.5110 +5719 10093 0.4220 +5719 10197 0.7190 +5719 10213 0.9990 +5719 10393 0.4480 +5719 10445 0.6340 +5719 10537 0.6730 +5719 10574 0.4760 +5719 10594 0.5090 +5719 10617 0.6760 +5719 10980 0.7820 +5719 10987 0.8450 +5719 11047 0.9990 +5719 11059 0.4130 +5719 11065 0.4870 +5719 11104 0.5730 +5719 23072 0.4020 +5719 23198 0.8280 +5719 23353 0.4010 +5719 23392 0.8340 +5719 23410 0.4680 +5719 23729 0.5520 +5719 25855 0.4830 +5719 25906 0.4490 +5719 25980 0.4820 +5719 26043 0.5200 +5719 26271 0.4080 +5719 26589 0.4080 +5719 27335 0.4360 +5719 27338 0.5170 +5719 29028 0.5480 +5719 29882 0.4360 +5719 29945 0.4180 +5719 29978 0.6240 +5719 29979 0.6150 +5719 51001 0.4200 +5719 51053 0.4050 +5719 51272 0.4510 +5719 51330 0.4040 +5719 51343 0.4330 +5719 51371 0.5590 +5719 51377 0.9980 +5719 51386 0.4640 +5719 51433 0.4500 +5719 51434 0.4200 +5719 51493 0.4610 +5719 51529 0.4120 +5719 51667 0.5400 +5719 51684 0.4010 +5719 51692 0.4450 +5719 54454 0.5520 +5719 55049 0.6020 +5719 55139 0.5080 +5719 55277 0.5480 +5719 55666 0.5530 +5719 56061 0.8710 +5719 56893 0.9960 +5719 56984 0.7130 +5719 57559 0.7080 +5719 59269 0.4030 +5719 59349 0.4250 +5719 64216 0.4040 +5719 64326 0.4160 +5719 64682 0.4050 +5719 64750 0.4060 +5719 79029 0.4360 +5719 79184 0.7190 +5719 80212 0.8250 +5719 80227 0.9500 +5719 80351 0.4590 +5719 83473 0.9560 +5719 83737 0.4070 +5719 84056 0.5480 +5719 84065 0.4430 +5719 84337 0.5340 +5719 84954 0.7520 +5719 84993 0.4270 +5719 90557 0.6090 +5719 91409 0.8280 +5719 114803 0.7430 +5719 119504 0.4050 +5719 122706 0.6560 +5719 123228 0.5530 +5719 134510 0.9240 +5719 143471 0.9320 +5719 166378 0.4330 +5719 203562 0.4790 +5719 246184 0.4110 +5719 256356 0.5480 +5719 286187 0.6830 +5719 339745 0.4210 +5719 100652824 0.8610 +5720 5721 0.9990 +5720 5728 0.4320 +5720 5887 0.4880 +5720 5920 0.4520 +5720 5930 0.4280 +5720 5966 0.4390 +5720 5970 0.4480 +5720 5971 0.4620 +5720 6233 0.5970 +5720 6469 0.4980 +5720 6500 0.4710 +5720 6502 0.4120 +5720 6772 0.5810 +5720 6773 0.5340 +5720 6790 0.4090 +5720 6890 0.4450 +5720 6892 0.6570 +5720 6921 0.4140 +5720 6923 0.4140 +5720 7124 0.9200 +5720 7133 0.4720 +5720 7157 0.5020 +5720 7186 0.4060 +5720 7187 0.4230 +5720 7311 0.7230 +5720 7314 0.6110 +5720 7316 0.5870 +5720 7321 0.4380 +5720 7324 0.4360 +5720 7345 0.5000 +5720 7347 0.5250 +5720 7353 0.5450 +5720 7415 0.6120 +5720 7979 0.6660 +5720 8260 0.6800 +5720 8405 0.4130 +5720 8452 0.5540 +5720 8453 0.4080 +5720 8454 0.4690 +5720 8600 0.4200 +5720 8650 0.4050 +5720 8697 0.4590 +5720 8742 0.4250 +5720 8881 0.4080 +5720 8945 0.4170 +5720 8994 0.4030 +5720 9020 0.4180 +5720 9097 0.7950 +5720 9134 0.4130 +5720 9246 0.7550 +5720 9491 0.4520 +5720 9817 0.5400 +5720 9861 0.8780 +5720 9978 0.5380 +5720 10075 0.5620 +5720 10197 0.9650 +5720 10213 0.9400 +5720 10379 0.7430 +5720 10393 0.4350 +5720 10537 0.6160 +5720 10673 0.4840 +5720 10906 0.5050 +5720 11047 0.8140 +5720 11059 0.4150 +5720 11065 0.5010 +5720 23072 0.4040 +5720 23198 0.8430 +5720 23392 0.4550 +5720 25793 0.6190 +5720 25906 0.4010 +5720 26043 0.5040 +5720 26271 0.4030 +5720 27338 0.4940 +5720 29882 0.4050 +5720 29945 0.4050 +5720 50846 0.4980 +5720 51053 0.4120 +5720 51330 0.4160 +5720 51371 0.5270 +5720 51377 0.7650 +5720 51433 0.4120 +5720 51434 0.4030 +5720 51529 0.4030 +5720 51667 0.6060 +5720 51684 0.4250 +5720 51686 0.4100 +5720 51752 0.4690 +5720 55666 0.5010 +5720 56984 0.8060 +5720 64221 0.4160 +5720 64326 0.4130 +5720 64344 0.4250 +5720 64682 0.4010 +5720 80256 0.4750 +5720 80351 0.4010 +5720 81847 0.4280 +5720 83737 0.4110 +5720 84262 0.5690 +5720 119504 0.4080 +5720 122706 0.5720 +5720 123228 0.5170 +5720 143471 0.5810 +5720 246184 0.4170 +5720 100652824 0.5210 +5721 5728 0.4130 +5721 5887 0.4540 +5721 5920 0.4950 +5721 5966 0.4410 +5721 5970 0.4600 +5721 5971 0.4480 +5721 6233 0.5590 +5721 6469 0.4980 +5721 6500 0.4630 +5721 6502 0.4120 +5721 6772 0.7140 +5721 6773 0.6000 +5721 6775 0.7770 +5721 6790 0.4130 +5721 6890 0.5860 +5721 6891 0.4340 +5721 6892 0.5840 +5721 6921 0.4560 +5721 6923 0.4600 +5721 7124 0.9190 +5721 7133 0.4720 +5721 7157 0.4920 +5721 7186 0.4100 +5721 7187 0.4310 +5721 7311 0.6950 +5721 7314 0.5590 +5721 7316 0.5800 +5721 7321 0.4520 +5721 7324 0.4390 +5721 7347 0.5350 +5721 7353 0.5240 +5721 7415 0.6090 +5721 7428 0.4010 +5721 7453 0.4440 +5721 7979 0.5870 +5721 8260 0.6630 +5721 8405 0.4010 +5721 8452 0.5760 +5721 8453 0.4100 +5721 8454 0.5100 +5721 8600 0.4200 +5721 8650 0.4050 +5721 8697 0.4210 +5721 8742 0.4250 +5721 8881 0.4260 +5721 8900 0.4080 +5721 8945 0.4130 +5721 8994 0.4030 +5721 9020 0.4180 +5721 9097 0.7540 +5721 9134 0.4190 +5721 9246 0.7530 +5721 9636 0.5770 +5721 9817 0.5380 +5721 9861 0.8770 +5721 9978 0.5400 +5721 10197 0.9230 +5721 10213 0.9290 +5721 10379 0.7180 +5721 10393 0.4380 +5721 10410 0.4040 +5721 10537 0.6500 +5721 10575 0.4170 +5721 10673 0.4750 +5721 11047 0.7990 +5721 11065 0.4730 +5721 11274 0.4270 +5721 23016 0.4130 +5721 23072 0.4030 +5721 23198 0.6340 +5721 25793 0.6180 +5721 26043 0.5010 +5721 26271 0.4090 +5721 27338 0.4760 +5721 29882 0.4100 +5721 29945 0.4130 +5721 50846 0.4980 +5721 51053 0.4360 +5721 51056 0.6610 +5721 51343 0.4230 +5721 51377 0.7340 +5721 51433 0.4290 +5721 51434 0.4030 +5721 51512 0.4210 +5721 51529 0.4200 +5721 51667 0.6420 +5721 51684 0.4250 +5721 51686 0.4100 +5721 51752 0.4720 +5721 54625 0.4340 +5721 55666 0.5070 +5721 56984 0.5820 +5721 59269 0.4110 +5721 64221 0.4270 +5721 64326 0.4080 +5721 64344 0.4250 +5721 64682 0.4030 +5721 81847 0.4280 +5721 83666 0.5200 +5721 83737 0.4010 +5721 115361 0.4070 +5721 115362 0.4140 +5721 122706 0.5580 +5721 123228 0.5130 +5721 143471 0.5220 +5721 246184 0.4300 +5721 100652824 0.5210 +5723 5831 0.5670 +5723 5832 0.6050 +5723 6240 0.4530 +5723 6390 0.4120 +5723 6464 0.4790 +5723 6470 0.9960 +5723 6472 0.9960 +5723 6509 0.5510 +5723 6510 0.4630 +5723 6713 0.4030 +5723 6821 0.4590 +5723 6888 0.5020 +5723 7249 0.4080 +5723 7298 0.4710 +5723 7358 0.4150 +5723 7372 0.5340 +5723 8443 0.7890 +5723 8458 0.7820 +5723 8565 0.5620 +5723 9453 0.4770 +5723 9489 0.6400 +5723 9517 0.8330 +5723 9563 0.5410 +5723 9853 0.4670 +5723 10423 0.8390 +5723 10558 0.8350 +5723 10606 0.4460 +5723 10797 0.6950 +5723 10993 0.9510 +5723 23171 0.6270 +5723 23590 0.4680 +5723 23623 0.4670 +5723 23761 0.4130 +5723 25870 0.4800 +5723 25902 0.6950 +5723 25961 0.7940 +5723 26227 0.9380 +5723 26330 0.7130 +5723 29958 0.5790 +5723 29968 0.9990 +5723 51095 0.4550 +5723 51179 0.4370 +5723 51725 0.4670 +5723 54363 0.4370 +5723 54511 0.4120 +5723 54675 0.8410 +5723 54802 0.4820 +5723 55157 0.4190 +5723 55258 0.8700 +5723 55304 0.8310 +5723 55825 0.4230 +5723 57107 0.5160 +5723 57469 0.7130 +5723 57678 0.7810 +5723 63826 0.9480 +5723 65263 0.4220 +5723 79094 0.4270 +5723 79896 0.8710 +5723 80308 0.4070 +5723 83594 0.7960 +5723 84706 0.4070 +5723 91734 0.8040 +5723 113675 0.9330 +5723 123263 0.4260 +5723 150763 0.7810 +5723 160428 0.4190 +5723 162417 0.4880 +5723 201164 0.6400 +5723 342538 0.6210 +5723 346288 0.5320 +5723 349075 0.4140 +5723 440275 0.4970 +5723 441024 0.5440 +5724 5733 0.4360 +5724 5747 0.4030 +5724 6772 0.7350 +5724 6773 0.5430 +5724 6774 0.7250 +5724 6776 0.4780 +5724 6777 0.4750 +5724 7040 0.4870 +5724 7096 0.4120 +5724 7097 0.5640 +5724 7099 0.7230 +5724 7124 0.4640 +5724 7133 0.5580 +5724 7204 0.5000 +5724 7297 0.8080 +5724 7305 0.4150 +5724 7941 0.5970 +5724 8111 0.5630 +5724 8477 0.5350 +5724 8989 0.4810 +5724 8997 0.4990 +5724 9021 0.4150 +5724 9630 0.7090 +5724 10261 0.4920 +5724 10472 0.4240 +5724 10800 0.5100 +5724 23236 0.5260 +5724 23566 0.4410 +5724 23601 0.5090 +5724 29933 0.5720 +5724 51311 0.4760 +5724 54947 0.4850 +5724 57105 0.5090 +5724 64582 0.8610 +5724 79888 0.4370 +5724 84418 0.4100 +5724 115557 0.4990 +5724 150275 0.4920 +5724 160364 0.4470 +5724 199675 0.4400 +5724 653361 0.4910 +5725 5935 0.4320 +5725 5936 0.4290 +5725 5976 0.6740 +5725 5978 0.4630 +5725 6124 0.4230 +5725 6136 0.4320 +5725 6157 0.4450 +5725 6181 0.5110 +5725 6188 0.4330 +5725 6189 0.4290 +5725 6202 0.4090 +5725 6217 0.4320 +5725 6224 0.5720 +5725 6230 0.4350 +5725 6234 0.4260 +5725 6240 0.5780 +5725 6241 0.4460 +5725 6294 0.6770 +5725 6418 0.4260 +5725 6421 0.9750 +5725 6426 0.9830 +5725 6427 0.7960 +5725 6428 0.9480 +5725 6429 0.6100 +5725 6430 0.7580 +5725 6431 0.8260 +5725 6432 0.9330 +5725 6434 0.9210 +5725 6625 0.8480 +5725 6626 0.9660 +5725 6627 0.6630 +5725 6628 0.4760 +5725 6629 0.6730 +5725 6631 0.4660 +5725 6632 0.6960 +5725 6633 0.7180 +5725 6634 0.7500 +5725 6635 0.7330 +5725 6636 0.6990 +5725 6637 0.7130 +5725 6657 0.5250 +5725 6733 0.4860 +5725 6741 0.7350 +5725 6780 0.4470 +5725 6847 0.4610 +5725 6874 0.4240 +5725 6926 0.4580 +5725 6936 0.5330 +5725 7072 0.5250 +5725 7073 0.6850 +5725 7157 0.6390 +5725 7168 0.6970 +5725 7169 0.6520 +5725 7205 0.4640 +5725 7307 0.8860 +5725 7341 0.4510 +5725 7342 0.5460 +5725 7458 0.4670 +5725 7520 0.4580 +5725 7536 0.6050 +5725 7750 0.5800 +5725 7804 0.5430 +5725 7919 0.7850 +5725 8087 0.4430 +5725 8091 0.4160 +5725 8106 0.6660 +5725 8148 0.6810 +5725 8193 0.4120 +5725 8241 0.8740 +5725 8260 0.4970 +5725 8290 0.5450 +5725 8356 0.5660 +5725 8531 0.5490 +5725 8570 0.8800 +5725 8607 0.4630 +5725 8662 0.4270 +5725 8666 0.5120 +5725 8668 0.4740 +5725 8683 0.7760 +5725 8726 0.4070 +5725 8880 0.5830 +5725 8939 0.4120 +5725 9295 0.6460 +5725 9343 0.7710 +5725 9444 0.8750 +5725 9513 0.4280 +5725 9584 0.6470 +5725 9589 0.4870 +5725 9601 0.4170 +5725 9733 0.4180 +5725 9774 0.5090 +5725 9775 0.7740 +5725 9782 0.9140 +5725 9987 0.9590 +5725 9991 0.4630 +5725 10137 0.4070 +5725 10146 0.6310 +5725 10150 0.4550 +5725 10181 0.4520 +5725 10189 0.7320 +5725 10197 0.5770 +5725 10212 0.4010 +5725 10236 0.8750 +5725 10250 0.4660 +5725 10262 0.4930 +5725 10284 0.5430 +5725 10291 0.5570 +5725 10307 0.4390 +5725 10399 0.4350 +5725 10432 0.8110 +5725 10436 0.4660 +5725 10471 0.4300 +5725 10492 0.8750 +5725 10521 0.4840 +5725 10524 0.4900 +5725 10576 0.4260 +5725 10594 0.7580 +5725 10614 0.5850 +5725 10642 0.6930 +5725 10643 0.5320 +5725 10644 0.6370 +5725 10657 0.9020 +5725 10658 0.9130 +5725 10659 0.6820 +5725 10694 0.4520 +5725 10726 0.4220 +5725 10772 0.8480 +5725 10898 0.4910 +5725 10921 0.4280 +5725 10929 0.5260 +5725 10933 0.8850 +5725 10946 0.4280 +5725 10949 0.8560 +5725 11051 0.8150 +5725 11052 0.7310 +5725 11100 0.5010 +5725 11184 0.4150 +5725 11338 0.9510 +5725 11339 0.4730 +5725 22826 0.4200 +5725 22827 0.7440 +5725 22913 0.5710 +5725 22916 0.8360 +5725 22948 0.4020 +5725 23016 0.6330 +5725 23160 0.4260 +5725 23283 0.4480 +5725 23369 0.5650 +5725 23404 0.4970 +5725 23435 0.9630 +5725 23450 0.5810 +5725 23451 0.4800 +5725 23543 0.8250 +5725 23644 0.4770 +5725 24144 0.5360 +5725 26019 0.4400 +5725 26097 0.6920 +5725 26135 0.5920 +5725 26528 0.4640 +5725 26986 0.7570 +5725 27044 0.4050 +5725 27161 0.8190 +5725 27258 0.5330 +5725 27316 0.9230 +5725 27339 0.7150 +5725 28996 0.4520 +5725 29894 0.4880 +5725 29896 0.5920 +5725 50804 0.4630 +5725 51412 0.5360 +5725 51593 0.7800 +5725 51602 0.5080 +5725 51634 0.4370 +5725 51637 0.4110 +5725 51639 0.4390 +5725 51691 0.5110 +5725 54502 0.4150 +5725 54715 0.6060 +5725 54815 0.4080 +5725 54845 0.5400 +5725 55110 0.5680 +5725 55225 0.7260 +5725 55274 0.4250 +5725 55544 0.5590 +5725 55660 0.4840 +5725 55696 0.4010 +5725 55796 0.4120 +5725 55802 0.4450 +5725 56259 0.7440 +5725 56339 0.4240 +5725 57187 0.4570 +5725 58155 0.4840 +5725 58190 0.5170 +5725 64506 0.4160 +5725 79727 0.4380 +5725 79869 0.5960 +5725 80004 0.4980 +5725 80218 0.4300 +5725 83443 0.4710 +5725 83641 0.4470 +5725 84324 0.4740 +5725 84530 0.5960 +5725 84557 0.4910 +5725 84844 0.5370 +5725 84991 0.6490 +5725 92906 0.6140 +5725 129831 0.4380 +5725 135295 0.4750 +5725 143884 0.4990 +5725 149041 0.4020 +5725 203068 0.4490 +5725 220988 0.9650 +5725 284695 0.5240 +5725 440093 0.5420 +5725 440686 0.5420 +5725 653604 0.5460 +5725 100507043 0.5780 +5726 6010 0.4750 +5726 6339 0.4180 +5726 6532 0.5030 +5726 6714 0.4990 +5726 8989 0.4460 +5726 9033 0.4040 +5726 9369 0.4910 +5726 9568 0.7580 +5726 29991 0.4180 +5726 50831 0.5170 +5726 50832 0.5920 +5726 50833 0.9660 +5726 50834 0.6210 +5726 50835 0.5280 +5726 50836 0.5540 +5726 50837 0.5720 +5726 50838 0.5410 +5726 50839 0.6050 +5726 50840 0.5450 +5726 51764 0.5120 +5726 54429 0.5550 +5726 57030 0.4910 +5726 57084 0.5420 +5726 79054 0.4440 +5726 80834 0.8880 +5726 80835 0.8550 +5726 83756 0.8570 +5726 117196 0.4590 +5726 120066 0.4840 +5726 222545 0.4710 +5726 255239 0.6180 +5726 259285 0.6110 +5726 259286 0.5280 +5726 259287 0.5490 +5726 259289 0.5990 +5726 259290 0.5990 +5726 259292 0.6000 +5726 259293 0.5400 +5726 259294 0.5680 +5726 259295 0.5460 +5726 259296 0.5290 +5726 283159 0.4400 +5726 338398 0.5450 +5726 346562 0.9750 +5726 353164 0.5430 +5726 100507679 0.4180 +5727 5728 0.5870 +5727 5744 0.6480 +5727 5979 0.9150 +5727 6233 0.4990 +5727 6422 0.5310 +5727 6423 0.4110 +5727 6469 0.9990 +5727 6496 0.6550 +5727 6598 0.4480 +5727 6608 0.9990 +5727 6615 0.4630 +5727 6657 0.5320 +5727 6662 0.5380 +5727 6774 0.4970 +5727 7015 0.4930 +5727 7040 0.4360 +5727 7080 0.4070 +5727 7103 0.6130 +5727 7124 0.4530 +5727 7157 0.6620 +5727 7289 0.4100 +5727 7311 0.4990 +5727 7314 0.4990 +5727 7316 0.5090 +5727 7471 0.4630 +5727 7472 0.4040 +5727 7474 0.4980 +5727 7482 0.4090 +5727 7490 0.4450 +5727 7546 0.6460 +5727 7783 0.4200 +5727 7849 0.5300 +5727 7903 0.4610 +5727 8030 0.8010 +5727 8031 0.9010 +5727 8100 0.7420 +5727 8312 0.6420 +5727 8313 0.5720 +5727 8321 0.4130 +5727 8405 0.4480 +5727 8481 0.4350 +5727 8643 0.9280 +5727 8805 0.5220 +5727 8817 0.4310 +5727 8822 0.4020 +5727 8823 0.4250 +5727 8842 0.4810 +5727 9093 0.4340 +5727 9241 0.4160 +5727 9464 0.4280 +5727 9786 0.4330 +5727 9950 0.4610 +5727 10142 0.4470 +5727 10215 0.4860 +5727 10413 0.6430 +5727 10577 0.5260 +5727 10763 0.4320 +5727 11059 0.5980 +5727 11060 0.4710 +5727 11096 0.5180 +5727 11127 0.7630 +5727 11197 0.4120 +5727 11236 0.4340 +5727 22897 0.4270 +5727 23327 0.4300 +5727 23432 0.6250 +5727 26160 0.7050 +5727 26281 0.4400 +5727 27006 0.4110 +5727 27148 0.6520 +5727 50846 0.9990 +5727 50937 0.9980 +5727 51176 0.4610 +5727 51384 0.4660 +5727 51592 0.5170 +5727 51684 0.9790 +5727 51715 0.4460 +5727 53373 0.7640 +5727 54361 0.4180 +5727 54432 0.4370 +5727 55582 0.6210 +5727 55733 0.5340 +5727 57154 0.9500 +5727 57560 0.4270 +5727 57758 0.4740 +5727 60673 0.5680 +5727 64399 0.9690 +5727 64750 0.9510 +5727 79923 0.4470 +5727 83729 0.4230 +5727 83737 0.4420 +5727 84870 0.5050 +5727 84976 0.5060 +5727 85455 0.5920 +5727 89780 0.4250 +5727 90410 0.4330 +5727 91653 0.9930 +5727 132884 0.4440 +5727 169841 0.5500 +5727 200894 0.6140 +5727 374654 0.7930 +5727 100532731 0.4520 +5728 5743 0.6820 +5728 5747 0.9950 +5728 5770 0.6030 +5728 5771 0.4140 +5728 5781 0.7450 +5728 5782 0.4250 +5728 5784 0.4070 +5728 5788 0.5440 +5728 5789 0.4330 +5728 5792 0.4460 +5728 5805 0.5710 +5728 5829 0.7740 +5728 5861 0.4910 +5728 5877 0.4180 +5728 5880 0.4200 +5728 5888 0.7590 +5728 5889 0.6210 +5728 5890 0.4140 +5728 5892 0.6020 +5728 5893 0.5300 +5728 5894 0.6610 +5728 5898 0.4020 +5728 5921 0.5900 +5728 5925 0.7340 +5728 5928 0.4130 +5728 5934 0.4490 +5728 5966 0.4070 +5728 5970 0.6420 +5728 5979 0.6830 +5728 5980 0.4750 +5728 5987 0.9630 +5728 6009 0.8050 +5728 6093 0.9540 +5728 6098 0.6140 +5728 6194 0.7850 +5728 6195 0.5640 +5728 6196 0.4770 +5728 6197 0.4990 +5728 6198 0.9140 +5728 6199 0.6850 +5728 6233 0.7520 +5728 6295 0.4880 +5728 6300 0.4280 +5728 6347 0.5050 +5728 6387 0.6460 +5728 6390 0.6680 +5728 6391 0.6690 +5728 6392 0.6250 +5728 6416 0.5350 +5728 6440 0.4970 +5728 6446 0.6080 +5728 6464 0.5690 +5728 6469 0.7180 +5728 6500 0.6230 +5728 6502 0.7010 +5728 6513 0.6920 +5728 6517 0.4620 +5728 6556 0.4640 +5728 6591 0.5970 +5728 6597 0.7050 +5728 6598 0.5580 +5728 6608 0.4400 +5728 6615 0.7550 +5728 6622 0.4270 +5728 6624 0.4970 +5728 6648 0.4390 +5728 6654 0.5020 +5728 6655 0.4670 +5728 6657 0.7430 +5728 6659 0.4340 +5728 6662 0.4720 +5728 6664 0.4260 +5728 6667 0.4300 +5728 6696 0.4340 +5728 6714 0.8370 +5728 6720 0.4950 +5728 6772 0.5410 +5728 6774 0.7940 +5728 6776 0.7830 +5728 6777 0.5510 +5728 6778 0.4090 +5728 6790 0.7110 +5728 6794 0.9790 +5728 6850 0.4650 +5728 6855 0.4140 +5728 6885 0.4390 +5728 6907 0.4070 +5728 6927 0.5540 +5728 6932 0.5480 +5728 6934 0.6120 +5728 7013 0.4690 +5728 7015 0.8220 +5728 7039 0.4470 +5728 7040 0.6640 +5728 7046 0.4870 +5728 7048 0.6220 +5728 7057 0.4760 +5728 7073 0.4160 +5728 7074 0.6070 +5728 7076 0.4050 +5728 7078 0.6030 +5728 7080 0.4030 +5728 7082 0.6350 +5728 7099 0.5350 +5728 7101 0.4960 +5728 7113 0.6680 +5728 7124 0.6380 +5728 7153 0.6360 +5728 7157 0.9990 +5728 7158 0.6220 +5728 7161 0.4570 +5728 7168 0.5200 +5728 7179 0.5060 +5728 7189 0.4840 +5728 7205 0.4690 +5728 7225 0.4820 +5728 7248 0.8010 +5728 7249 0.8890 +5728 7251 0.4280 +5728 7273 0.4160 +5728 7291 0.7620 +5728 7295 0.6610 +5728 7311 0.5590 +5728 7314 0.5960 +5728 7316 0.7140 +5728 7317 0.4630 +5728 7322 0.4070 +5728 7329 0.6290 +5728 7332 0.5710 +5728 7337 0.9600 +5728 7341 0.6030 +5728 7375 0.4430 +5728 7403 0.5810 +5728 7412 0.4060 +5728 7414 0.4420 +5728 7424 0.5330 +5728 7428 0.4690 +5728 7430 0.4120 +5728 7465 0.5420 +5728 7468 0.5070 +5728 7471 0.6700 +5728 7472 0.4220 +5728 7474 0.4770 +5728 7486 0.4110 +5728 7490 0.5200 +5728 7528 0.6440 +5728 7706 0.6780 +5728 7804 0.5410 +5728 7832 0.4070 +5728 7837 0.6910 +5728 7849 0.5290 +5728 7852 0.5800 +5728 7874 0.9790 +5728 7979 0.4660 +5728 8085 0.5510 +5728 8091 0.5110 +5728 8202 0.5690 +5728 8237 0.4280 +5728 8239 0.4860 +5728 8242 0.4370 +5728 8289 0.7430 +5728 8290 0.5960 +5728 8312 0.5380 +5728 8313 0.4710 +5728 8314 0.7410 +5728 8356 0.5990 +5728 8394 0.9270 +5728 8395 0.9170 +5728 8396 0.9220 +5728 8405 0.9900 +5728 8408 0.4760 +5728 8434 0.6290 +5728 8450 0.4850 +5728 8452 0.5580 +5728 8454 0.4730 +5728 8471 0.4520 +5728 8493 0.6210 +5728 8503 0.9550 +5728 8517 0.5550 +5728 8549 0.4690 +5728 8626 0.4730 +5728 8650 0.6540 +5728 8651 0.5680 +5728 8658 0.9230 +5728 8660 0.5710 +5728 8678 0.6390 +5728 8743 0.4290 +5728 8772 0.4630 +5728 8795 0.4200 +5728 8817 0.4610 +5728 8821 0.9670 +5728 8822 0.4480 +5728 8823 0.4750 +5728 8826 0.5660 +5728 8831 0.4190 +5728 8837 0.4290 +5728 8841 0.5230 +5728 8842 0.5940 +5728 8850 0.5100 +5728 8867 0.9300 +5728 8871 0.9280 +5728 8874 0.4220 +5728 8878 0.4660 +5728 8880 0.5470 +5728 8898 0.4690 +5728 8900 0.4820 +5728 8945 0.4210 +5728 8975 0.9080 +5728 9021 0.6240 +5728 9100 0.7700 +5728 9101 0.4850 +5728 9113 0.5980 +5728 9134 0.4870 +5728 9140 0.4490 +5728 9212 0.4400 +5728 9218 0.5120 +5728 9223 0.9260 +5728 9253 0.4810 +5728 9271 0.4280 +5728 9314 0.5250 +5728 9351 0.6240 +5728 9368 0.9820 +5728 9429 0.5140 +5728 9451 0.5470 +5728 9474 0.5820 +5728 9475 0.9370 +5728 9562 0.6320 +5728 9564 0.5460 +5728 9611 0.4520 +5728 9651 0.9020 +5728 9656 0.4690 +5728 9759 0.4480 +5728 9776 0.4130 +5728 9817 0.5900 +5728 9821 0.4690 +5728 9839 0.5950 +5728 9861 0.4110 +5728 9863 0.9980 +5728 9927 0.4400 +5728 9961 0.7860 +5728 9968 0.4790 +5728 10000 0.8250 +5728 10013 0.4760 +5728 10018 0.6840 +5728 10059 0.4530 +5728 10197 0.4810 +5728 10213 0.4590 +5728 10215 0.4440 +5728 10252 0.4520 +5728 10253 0.4770 +5728 10273 0.9040 +5728 10298 0.4230 +5728 10320 0.4320 +5728 10365 0.4050 +5728 10371 0.5580 +5728 10395 0.4100 +5728 10397 0.4040 +5728 10413 0.6820 +5728 10423 0.9280 +5728 10445 0.6900 +5728 10477 0.4170 +5728 10481 0.4020 +5728 10533 0.5750 +5728 10575 0.4070 +5728 10580 0.4140 +5728 10630 0.4390 +5728 10642 0.6710 +5728 10664 0.4090 +5728 10763 0.5560 +5728 10891 0.4910 +5728 11059 0.7270 +5728 11060 0.9840 +5728 11091 0.4960 +5728 11186 0.5890 +5728 11197 0.4160 +5728 11200 0.8100 +5728 11275 0.4320 +5728 11315 0.9200 +5728 22829 0.4640 +5728 22871 0.4960 +5728 22876 0.9110 +5728 22983 0.5510 +5728 23007 0.9050 +5728 23028 0.4570 +5728 23031 0.6940 +5728 23035 0.7810 +5728 23072 0.5210 +5728 23112 0.6120 +5728 23129 0.4860 +5728 23139 0.9930 +5728 23198 0.4490 +5728 23236 0.9160 +5728 23239 0.8140 +5728 23252 0.9410 +5728 23293 0.4040 +5728 23396 0.9250 +5728 23405 0.7080 +5728 23408 0.5120 +5728 23409 0.5080 +5728 23410 0.5580 +5728 23411 0.7570 +5728 23476 0.5360 +5728 23512 0.4190 +5728 23513 0.8340 +5728 23533 0.6070 +5728 23600 0.4060 +5728 23608 0.5990 +5728 23678 0.4290 +5728 25828 0.5160 +5728 25879 0.6450 +5728 26047 0.4780 +5728 26224 0.4820 +5728 26281 0.4750 +5728 26499 0.6730 +5728 26523 0.7550 +5728 26524 0.4550 +5728 27006 0.4700 +5728 27030 0.5620 +5728 27113 0.4450 +5728 27161 0.7780 +5728 27244 0.4090 +5728 27250 0.8050 +5728 27327 0.6120 +5728 27338 0.5050 +5728 27436 0.5130 +5728 29072 0.5920 +5728 29102 0.6370 +5728 29110 0.4030 +5728 29126 0.7140 +5728 29761 0.4420 +5728 29775 0.4480 +5728 29997 0.9400 +5728 50507 0.4820 +5728 50855 0.9090 +5728 50943 0.5230 +5728 51176 0.4670 +5728 51196 0.9130 +5728 51320 0.6260 +5728 51343 0.7710 +5728 51548 0.4290 +5728 51684 0.5820 +5728 51741 0.4360 +5728 51755 0.5050 +5728 51806 0.4340 +5728 53353 0.4660 +5728 54205 0.6380 +5728 54361 0.4490 +5728 54413 0.5910 +5728 54487 0.5530 +5728 54541 0.4680 +5728 54545 0.4140 +5728 54790 0.4930 +5728 54861 0.5270 +5728 54894 0.4730 +5728 55054 0.4010 +5728 55135 0.4900 +5728 55193 0.6220 +5728 55294 0.8840 +5728 55300 0.9070 +5728 55361 0.9090 +5728 55505 0.4580 +5728 55529 0.9050 +5728 55611 0.4630 +5728 55651 0.4870 +5728 55662 0.4100 +5728 55669 0.4010 +5728 55870 0.4240 +5728 56288 0.9360 +5728 56339 0.4350 +5728 56623 0.9220 +5728 57045 0.4570 +5728 57103 0.4160 +5728 57154 0.5630 +5728 57418 0.4500 +5728 57492 0.5100 +5728 57502 0.5560 +5728 57509 0.4350 +5728 57510 0.5050 +5728 57521 0.7440 +5728 57555 0.4550 +5728 57680 0.4370 +5728 57721 0.4320 +5728 58508 0.6030 +5728 64218 0.6960 +5728 64223 0.5410 +5728 64324 0.4080 +5728 64798 0.5260 +5728 65018 0.7350 +5728 79109 0.5280 +5728 79718 0.4090 +5728 79728 0.7270 +5728 79837 0.9190 +5728 79923 0.6770 +5728 80243 0.9900 +5728 80325 0.4890 +5728 80351 0.9220 +5728 80380 0.5080 +5728 80762 0.8270 +5728 81609 0.4380 +5728 81631 0.4620 +5728 81669 0.5510 +5728 81847 0.6540 +5728 81858 0.8340 +5728 83439 0.5040 +5728 83737 0.4940 +5728 83932 0.8090 +5728 84260 0.8590 +5728 84295 0.6630 +5728 84335 0.6370 +5728 84445 0.4650 +5728 84552 0.9070 +5728 84612 0.9070 +5728 84812 0.9020 +5728 84868 0.5600 +5728 84951 0.6830 +5728 85358 0.4830 +5728 89780 0.4380 +5728 89869 0.9020 +5728 90809 0.9000 +5728 91860 0.4130 +5728 92140 0.4710 +5728 93649 0.6280 +5728 94025 0.4180 +5728 94241 0.4130 +5728 113026 0.9040 +5728 114971 0.7150 +5728 115908 0.4630 +5728 117145 0.5060 +5728 120892 0.4370 +5728 122706 0.4150 +5728 124402 0.4260 +5728 124540 0.5280 +5728 133482 0.5900 +5728 137902 0.6820 +5728 138429 0.9120 +5728 139341 0.4490 +5728 143471 0.4150 +5728 143689 0.4300 +5728 163688 0.4370 +5728 192111 0.4200 +5728 192669 0.5720 +5728 192670 0.6150 +5728 196528 0.5100 +5728 200576 0.9400 +5728 201163 0.4480 +5728 246175 0.5400 +5728 253260 0.8340 +5728 255738 0.4790 +5728 260425 0.9720 +5728 283106 0.9080 +5728 339745 0.4220 +5728 345456 0.5720 +5728 375189 0.5870 +5728 440093 0.5960 +5728 440686 0.6000 +5728 653604 0.6000 +5728 100132074 0.4570 +5728 100133941 0.5040 +5728 100144748 0.5160 +5728 100532731 0.6340 +5729 5730 0.8880 +5729 5732 0.4670 +5729 5733 0.4700 +5729 5734 0.4790 +5729 5737 0.4370 +5729 5739 0.5950 +5729 5742 0.4840 +5729 5791 0.5240 +5729 6257 0.4080 +5729 6373 0.4560 +5729 6597 0.6010 +5729 6714 0.5800 +5729 7098 0.4340 +5729 8743 0.4600 +5729 9839 0.5190 +5729 10409 0.4490 +5729 10643 0.4720 +5729 10800 0.4150 +5729 11091 0.7080 +5729 11099 0.4280 +5729 11251 0.8920 +5729 11261 0.4240 +5729 11279 0.4870 +5729 23028 0.4940 +5729 23047 0.8160 +5729 26872 0.4300 +5729 27161 0.6110 +5729 27306 0.7040 +5729 51348 0.5080 +5729 55272 0.4340 +5729 56339 0.5480 +5729 57105 0.5580 +5729 60312 0.5700 +5729 81573 0.5110 +5729 84868 0.4630 +5729 94103 0.4660 +5729 114822 0.5280 +5729 147700 0.4100 +5729 147920 0.4790 +5729 149095 0.6000 +5729 154075 0.4430 +5729 163486 0.4200 +5729 387129 0.5560 +5729 727897 0.4930 +5730 5739 0.4020 +5730 5740 0.9560 +5730 5742 0.9490 +5730 5743 0.9450 +5730 6310 0.4260 +5730 6662 0.8170 +5730 6678 0.6130 +5730 6696 0.5830 +5730 7276 0.7040 +5730 8644 0.9440 +5730 8813 0.5720 +5730 9536 0.9610 +5730 9853 0.4600 +5730 10211 0.4930 +5730 10728 0.9460 +5730 11081 0.4110 +5730 11099 0.5100 +5730 11251 0.6110 +5730 11343 0.5050 +5730 27306 0.9910 +5730 29989 0.4370 +5730 29991 0.5540 +5730 50487 0.5810 +5730 80142 0.9520 +5730 115727 0.5110 +5730 118427 0.6280 +5730 138307 0.4500 +5730 401562 0.6370 +5731 5732 0.4450 +5731 5733 0.5900 +5731 5734 0.9770 +5731 5737 0.5930 +5731 5740 0.4900 +5731 5742 0.7140 +5731 5743 0.7530 +5731 5972 0.4350 +5731 6001 0.4310 +5731 6002 0.4220 +5731 6003 0.4390 +5731 6004 0.4220 +5731 6344 0.4300 +5731 6578 0.4320 +5731 6863 0.5100 +5731 6915 0.5240 +5731 7132 0.4400 +5731 7204 0.4990 +5731 7412 0.4610 +5731 8490 0.4260 +5731 8601 0.4240 +5731 8786 0.4340 +5731 8997 0.4990 +5731 9536 0.7140 +5731 9630 0.6830 +5731 10287 0.4440 +5731 10659 0.4220 +5731 10681 0.6820 +5731 10728 0.5700 +5731 10800 0.6230 +5731 10876 0.4480 +5731 11251 0.4900 +5731 11255 0.5330 +5731 23236 0.5150 +5731 23620 0.4520 +5731 26575 0.4260 +5731 29909 0.4120 +5731 51764 0.6780 +5731 54331 0.6780 +5731 55970 0.6790 +5731 56413 0.5180 +5731 57105 0.5800 +5731 59345 0.6820 +5731 64407 0.4240 +5731 79145 0.4100 +5731 80142 0.7030 +5731 81849 0.4680 +5731 84634 0.5410 +5731 85397 0.4240 +5731 94235 0.6790 +5731 115557 0.4990 +5731 124961 0.5960 +5731 431704 0.4390 +5732 5733 0.5370 +5732 5734 0.9620 +5732 5737 0.5360 +5732 5739 0.4570 +5732 5742 0.6330 +5732 5743 0.7120 +5732 6001 0.4350 +5732 6578 0.5590 +5732 6714 0.6540 +5732 7049 0.4320 +5732 7097 0.4870 +5732 7252 0.9000 +5732 7432 0.9000 +5732 8100 0.4350 +5732 8644 0.5690 +5732 9536 0.7370 +5732 9547 0.5880 +5732 10681 0.7470 +5732 51764 0.6780 +5732 54331 0.7200 +5732 55970 0.6910 +5732 59345 0.7910 +5732 64407 0.4660 +5732 80142 0.4850 +5732 81849 0.4220 +5732 94235 0.6780 +5732 192668 0.5990 +5733 5734 0.6670 +5733 5740 0.5500 +5733 5742 0.7000 +5733 5743 0.8020 +5733 5999 0.4810 +5733 6004 0.4340 +5733 6351 0.4340 +5733 6363 0.4940 +5733 6366 0.4790 +5733 6387 0.4650 +5733 6578 0.4620 +5733 6714 0.6470 +5733 6750 0.6960 +5733 6915 0.4810 +5733 7124 0.4010 +5733 7257 0.7380 +5733 7536 0.4070 +5733 8312 0.4630 +5733 8490 0.4010 +5733 8601 0.5410 +5733 9536 0.7490 +5733 9630 0.6900 +5733 9934 0.4830 +5733 10161 0.4800 +5733 10411 0.4040 +5733 10563 0.4480 +5733 10681 0.7020 +5733 10728 0.5970 +5733 10876 0.5830 +5733 11251 0.7450 +5733 23236 0.4450 +5733 26575 0.4630 +5733 27185 0.7060 +5733 51738 0.7810 +5733 51764 0.6800 +5733 54331 0.9340 +5733 55970 0.6830 +5733 56413 0.5910 +5733 57105 0.5350 +5733 57121 0.4120 +5733 59345 0.7100 +5733 64184 0.4510 +5733 64866 0.6950 +5733 80142 0.6500 +5733 81849 0.4240 +5733 94235 0.6780 +5733 267012 0.4010 +5733 319100 0.4160 +5734 5737 0.5210 +5734 5739 0.5140 +5734 5740 0.5080 +5734 5742 0.7510 +5734 5743 0.8950 +5734 5788 0.4560 +5734 5972 0.5330 +5734 6001 0.4020 +5734 6347 0.4120 +5734 6578 0.5320 +5734 6714 0.8400 +5734 6774 0.4250 +5734 7040 0.4400 +5734 7049 0.4390 +5734 7097 0.5990 +5734 7099 0.4590 +5734 7124 0.5950 +5734 7157 0.4020 +5734 7490 0.4370 +5734 7852 0.4280 +5734 8100 0.4500 +5734 8600 0.4420 +5734 8644 0.5990 +5734 9536 0.8710 +5734 9547 0.5730 +5734 10161 0.4430 +5734 10411 0.5070 +5734 10681 0.8030 +5734 10728 0.6380 +5734 10800 0.4980 +5734 10876 0.4760 +5734 11069 0.4790 +5734 11127 0.4360 +5734 11251 0.5080 +5734 22949 0.4210 +5734 51764 0.6780 +5734 54331 0.8340 +5734 54474 0.5070 +5734 55527 0.7340 +5734 55970 0.6780 +5734 56413 0.4640 +5734 57105 0.4550 +5734 59345 0.8540 +5734 64407 0.4150 +5734 80142 0.6710 +5734 80380 0.4350 +5734 94103 0.4550 +5734 94235 0.6780 +5734 149233 0.4280 +5734 192668 0.5810 +5734 400566 0.4790 +5737 5738 0.8410 +5737 5740 0.4060 +5737 5742 0.4820 +5737 5743 0.5790 +5737 6575 0.5350 +5737 6578 0.5510 +5737 6915 0.4890 +5737 7049 0.4300 +5737 7204 0.4990 +5737 8644 0.7280 +5737 8997 0.4990 +5737 9536 0.7130 +5737 9630 0.7060 +5737 10672 0.6930 +5737 10800 0.5770 +5737 11251 0.4510 +5737 23236 0.5060 +5737 57105 0.5280 +5737 64123 0.4870 +5737 80142 0.4180 +5737 80331 0.6010 +5737 80762 0.4200 +5737 115557 0.5110 +5737 255520 0.4930 +5738 5794 0.4390 +5738 5962 0.6190 +5738 6386 0.4290 +5738 6748 0.4280 +5738 6868 0.4430 +5738 7103 0.6480 +5738 7348 0.4810 +5738 7430 0.8160 +5738 10098 0.5290 +5738 10099 0.4070 +5738 10100 0.5950 +5738 10103 0.5610 +5738 10409 0.4800 +5738 10885 0.4420 +5738 23555 0.7080 +5738 51303 0.6160 +5738 54834 0.4410 +5738 57136 0.5710 +5738 81619 0.5700 +5738 90139 0.6450 +5739 5740 0.8320 +5739 5742 0.7530 +5739 5743 0.6720 +5739 6714 0.6200 +5739 6915 0.8250 +5739 7097 0.4170 +5739 8654 0.5340 +5739 8766 0.5970 +5739 9536 0.5140 +5739 10659 0.4720 +5739 10681 0.5640 +5739 11251 0.4510 +5739 51764 0.5440 +5739 54331 0.5410 +5739 55970 0.5410 +5739 57105 0.6010 +5739 59345 0.5680 +5739 79145 0.4370 +5739 79849 0.4140 +5739 80142 0.4410 +5739 81849 0.5420 +5739 94235 0.6870 +5740 5742 0.9730 +5740 5743 0.9880 +5740 5972 0.4980 +5740 6307 0.6980 +5740 6309 0.5570 +5740 6401 0.5050 +5740 6578 0.4130 +5740 6713 0.7290 +5740 7108 0.5630 +5740 8644 0.5860 +5740 8654 0.4090 +5740 8801 0.4150 +5740 9023 0.7040 +5740 9536 0.9710 +5740 10280 0.6450 +5740 10728 0.9610 +5740 10826 0.7020 +5740 11161 0.6510 +5740 26166 0.4770 +5740 27306 0.9430 +5740 27430 0.5010 +5740 29785 0.5220 +5740 50507 0.4650 +5740 50814 0.5100 +5740 51226 0.4030 +5740 51320 0.5490 +5740 51478 0.6480 +5740 51752 0.5680 +5740 57412 0.4940 +5740 79568 0.4160 +5740 80142 0.9580 +5740 80270 0.5030 +5740 81031 0.6100 +5740 93517 0.5010 +5740 132949 0.4860 +5740 286151 0.4760 +5740 389136 0.4160 +5741 5744 0.9990 +5741 5745 0.9990 +5741 5746 0.9970 +5741 5972 0.8340 +5741 5979 0.4170 +5741 6010 0.4970 +5741 6019 0.4060 +5741 6343 0.8420 +5741 6344 0.7760 +5741 6424 0.4190 +5741 6462 0.5820 +5741 6550 0.6500 +5741 6559 0.5660 +5741 6569 0.8650 +5741 6574 0.4520 +5741 6575 0.7130 +5741 6678 0.4650 +5741 6696 0.7910 +5741 6714 0.6600 +5741 6750 0.5060 +5741 6925 0.5290 +5741 6934 0.4200 +5741 7038 0.6440 +5741 7039 0.4180 +5741 7040 0.6420 +5741 7124 0.6050 +5741 7173 0.4880 +5741 7252 0.4400 +5741 7276 0.4470 +5741 7349 0.5760 +5741 7430 0.4950 +5741 7432 0.8710 +5741 7434 0.5480 +5741 7480 0.4530 +5741 7837 0.6310 +5741 8029 0.5920 +5741 8074 0.9760 +5741 8521 0.5860 +5741 8600 0.8750 +5741 8675 0.8140 +5741 8792 0.4350 +5741 8817 0.5980 +5741 8822 0.5950 +5741 8823 0.5970 +5741 8930 0.4960 +5741 9247 0.9060 +5741 9365 0.8430 +5741 9368 0.7960 +5741 9370 0.5070 +5741 9890 0.4990 +5741 10014 0.4780 +5741 10568 0.5410 +5741 10686 0.6960 +5741 10874 0.4040 +5741 22943 0.6460 +5741 23236 0.4330 +5741 26281 0.6020 +5741 27006 0.5970 +5741 27241 0.4420 +5741 50964 0.8870 +5741 51083 0.4200 +5741 51738 0.5970 +5741 54331 0.8000 +5741 55503 0.7150 +5741 55512 0.4460 +5741 55811 0.4510 +5741 56302 0.7950 +5741 56934 0.4390 +5741 56955 0.6980 +5741 57105 0.5000 +5741 57817 0.4320 +5741 63901 0.5270 +5741 79577 0.7520 +5741 79924 0.4740 +5741 79948 0.5820 +5741 84706 0.4470 +5741 113091 0.9620 +5741 114757 0.4320 +5741 117579 0.4460 +5741 120227 0.6940 +5741 121340 0.6590 +5741 122876 0.4440 +5741 137902 0.6380 +5741 140803 0.4750 +5741 142680 0.7660 +5741 149461 0.6260 +5741 170589 0.4080 +5741 197021 0.4190 +5741 594857 0.4180 +5742 5743 0.9460 +5742 5970 0.5740 +5742 6187 0.4090 +5742 6188 0.6090 +5742 6223 0.5130 +5742 6256 0.4520 +5742 6347 0.4410 +5742 6376 0.4160 +5742 6403 0.5130 +5742 6578 0.4100 +5742 6915 0.4750 +5742 7099 0.4500 +5742 7124 0.5610 +5742 7158 0.4390 +5742 7298 0.4090 +5742 7349 0.4750 +5742 7450 0.4180 +5742 7474 0.4390 +5742 8061 0.4420 +5742 8398 0.7820 +5742 8399 0.7910 +5742 8529 0.9140 +5742 8605 0.7340 +5742 8644 0.4420 +5742 8681 0.6670 +5742 9377 0.6770 +5742 9536 0.9730 +5742 10437 0.4630 +5742 10499 0.5550 +5742 10659 0.4150 +5742 10728 0.9560 +5742 11145 0.7080 +5742 11251 0.5640 +5742 11283 0.9090 +5742 24138 0.4160 +5742 26279 0.7080 +5742 27161 0.4390 +5742 27306 0.9460 +5742 29108 0.4740 +5742 30814 0.7190 +5742 50487 0.6770 +5742 51206 0.5030 +5742 51311 0.4310 +5742 54859 0.4450 +5742 56975 0.6870 +5742 57502 0.4080 +5742 58484 0.4850 +5742 64135 0.4010 +5742 64600 0.7190 +5742 64805 0.6530 +5742 79145 0.5120 +5742 79370 0.4030 +5742 80142 0.9620 +5742 81579 0.6860 +5742 81849 0.4330 +5742 84647 0.6770 +5742 84701 0.6080 +5742 84987 0.4180 +5742 113612 0.9020 +5742 114548 0.4820 +5742 118490 0.4260 +5742 123745 0.6910 +5742 151056 0.7130 +5742 255189 0.6970 +5742 283748 0.7140 +5742 284541 0.9040 +5742 375449 0.4410 +5742 391013 0.6990 +5742 100137049 0.7130 +5743 5788 0.4730 +5743 5803 0.4030 +5743 5806 0.4520 +5743 5915 0.5170 +5743 5966 0.5290 +5743 5970 0.7370 +5743 5971 0.5140 +5743 5972 0.5830 +5743 6182 0.4240 +5743 6256 0.4890 +5743 6279 0.4490 +5743 6300 0.4520 +5743 6347 0.8670 +5743 6348 0.7810 +5743 6351 0.6730 +5743 6356 0.6120 +5743 6364 0.6010 +5743 6372 0.4220 +5743 6373 0.4110 +5743 6374 0.5600 +5743 6376 0.6330 +5743 6387 0.5340 +5743 6401 0.5810 +5743 6403 0.4170 +5743 6513 0.4220 +5743 6517 0.5900 +5743 6530 0.4630 +5743 6578 0.4010 +5743 6615 0.4720 +5743 6622 0.4280 +5743 6647 0.5230 +5743 6648 0.5470 +5743 6662 0.4150 +5743 6678 0.5200 +5743 6696 0.5230 +5743 6709 0.4080 +5743 6714 0.7780 +5743 6720 0.4150 +5743 6770 0.5120 +5743 6772 0.6040 +5743 6774 0.9300 +5743 6777 0.4070 +5743 6778 0.7170 +5743 6781 0.4190 +5743 6850 0.4060 +5743 6863 0.6800 +5743 6868 0.5230 +5743 6927 0.6120 +5743 7039 0.5140 +5743 7040 0.6880 +5743 7042 0.6310 +5743 7048 0.4210 +5743 7054 0.4130 +5743 7056 0.4180 +5743 7057 0.4980 +5743 7075 0.4360 +5743 7076 0.5660 +5743 7077 0.4840 +5743 7082 0.4320 +5743 7096 0.4230 +5743 7097 0.7560 +5743 7098 0.4580 +5743 7099 0.7870 +5743 7124 0.9160 +5743 7128 0.6660 +5743 7130 0.7240 +5743 7132 0.4860 +5743 7133 0.5830 +5743 7157 0.9740 +5743 7185 0.4100 +5743 7189 0.4930 +5743 7295 0.4520 +5743 7296 0.4060 +5743 7299 0.5770 +5743 7341 0.5620 +5743 7412 0.7580 +5743 7423 0.4860 +5743 7424 0.5060 +5743 7442 0.6050 +5743 7474 0.4180 +5743 7498 0.7040 +5743 7538 0.4960 +5743 7852 0.5750 +5743 7920 0.4430 +5743 8061 0.4550 +5743 8202 0.4530 +5743 8398 0.7730 +5743 8399 0.9270 +5743 8529 0.9420 +5743 8600 0.5710 +5743 8605 0.7440 +5743 8644 0.5160 +5743 8651 0.4040 +5743 8678 0.4350 +5743 8681 0.6500 +5743 8743 0.6270 +5743 8817 0.4480 +5743 8822 0.4440 +5743 8823 0.4560 +5743 8837 0.5600 +5743 8870 0.4290 +5743 8877 0.4820 +5743 8878 0.5090 +5743 8900 0.4270 +5743 8989 0.4560 +5743 9021 0.5830 +5743 9034 0.5510 +5743 9170 0.5430 +5743 9210 0.5610 +5743 9290 0.4140 +5743 9314 0.4500 +5743 9332 0.4900 +5743 9360 0.4380 +5743 9370 0.5190 +5743 9451 0.4900 +5743 9507 0.5230 +5743 9508 0.4720 +5743 9510 0.4020 +5743 9518 0.4520 +5743 9536 0.9820 +5743 9759 0.4620 +5743 9817 0.5390 +5743 10135 0.5430 +5743 10488 0.4090 +5743 10499 0.5270 +5743 10659 0.7130 +5743 10728 0.9540 +5743 10891 0.5210 +5743 11096 0.5460 +5743 11145 0.7250 +5743 11197 0.4110 +5743 11283 0.9440 +5743 11343 0.5630 +5743 23271 0.4090 +5743 23411 0.5920 +5743 23566 0.5980 +5743 23621 0.4460 +5743 23643 0.4680 +5743 23645 0.4220 +5743 23657 0.4170 +5743 26279 0.7330 +5743 26281 0.4560 +5743 26525 0.4270 +5743 27006 0.4560 +5743 27035 0.5020 +5743 27306 0.9440 +5743 29102 0.5220 +5743 29126 0.5580 +5743 30814 0.7110 +5743 50486 0.4360 +5743 50487 0.8160 +5743 50506 0.4410 +5743 50507 0.5080 +5743 50616 0.4160 +5743 50943 0.5050 +5743 51129 0.4090 +5743 51338 0.4340 +5743 54106 0.6180 +5743 54205 0.7340 +5743 54210 0.4650 +5743 56034 0.4620 +5743 56300 0.4920 +5743 56475 0.4570 +5743 57406 0.4460 +5743 58484 0.4680 +5743 59272 0.6120 +5743 64127 0.4090 +5743 64332 0.6510 +5743 64600 0.7090 +5743 79145 0.4280 +5743 79154 0.4950 +5743 79365 0.4100 +5743 80142 0.9630 +5743 81579 0.6990 +5743 84647 0.7020 +5743 90865 0.4720 +5743 113612 0.9020 +5743 114548 0.7070 +5743 120892 0.4180 +5743 123745 0.6960 +5743 151056 0.7110 +5743 169355 0.5210 +5743 200895 0.4830 +5743 222236 0.4770 +5743 255189 0.6980 +5743 257202 0.6790 +5743 283748 0.6960 +5743 284541 0.9060 +5743 391013 0.6890 +5743 493869 0.6790 +5743 653361 0.4260 +5743 100137049 0.7130 +5743 100506658 0.5340 +5744 5745 0.9990 +5744 5746 0.9750 +5744 6019 0.4500 +5744 6343 0.5610 +5744 6344 0.6710 +5744 6452 0.4870 +5744 6469 0.6700 +5744 6662 0.6360 +5744 6696 0.5860 +5744 6714 0.6470 +5744 6750 0.5520 +5744 7040 0.5100 +5744 7042 0.6310 +5744 7043 0.6180 +5744 7124 0.4460 +5744 7252 0.4140 +5744 7349 0.5340 +5744 7432 0.5660 +5744 8074 0.4770 +5744 8076 0.4240 +5744 8200 0.4840 +5744 8600 0.7840 +5744 8792 0.4570 +5744 8817 0.4640 +5744 8822 0.4230 +5744 8823 0.4190 +5744 10273 0.4050 +5744 10763 0.4140 +5744 11061 0.5500 +5744 11096 0.6060 +5744 11173 0.5210 +5744 22943 0.5610 +5744 26118 0.4630 +5744 26281 0.4240 +5744 27006 0.4230 +5744 50964 0.6320 +5744 54331 0.8000 +5744 55605 0.5120 +5744 57105 0.5060 +5744 57542 0.4840 +5744 64399 0.4320 +5744 79924 0.4410 +5744 113091 0.7130 +5744 117579 0.4150 +5744 121340 0.5440 +5744 122876 0.4500 +5744 170589 0.4270 +5745 5746 0.9050 +5745 6295 0.6270 +5745 6343 0.6220 +5745 6569 0.4400 +5745 6662 0.4650 +5745 6696 0.4380 +5745 6714 0.5720 +5745 7022 0.4990 +5745 7048 0.5570 +5745 7349 0.6890 +5745 7430 0.5120 +5745 7432 0.5900 +5745 7476 0.4150 +5745 8074 0.5220 +5745 8321 0.4770 +5745 8600 0.6230 +5745 8675 0.6850 +5745 9351 0.7630 +5745 9365 0.4030 +5745 9368 0.8890 +5745 10266 0.6180 +5745 10672 0.9170 +5745 22943 0.4020 +5745 23236 0.6140 +5745 27123 0.5050 +5745 50964 0.8520 +5745 51289 0.4010 +5745 51806 0.4620 +5745 54331 0.8230 +5745 55192 0.4040 +5745 55361 0.4240 +5745 81609 0.4780 +5745 84168 0.5120 +5745 91860 0.4580 +5745 113091 0.9770 +5745 118429 0.4920 +5745 121340 0.5710 +5745 142680 0.5280 +5745 163688 0.4580 +5746 6010 0.4930 +5746 6714 0.4990 +5746 7180 0.4340 +5746 7349 0.6830 +5746 7855 0.7690 +5746 10106 0.4950 +5746 10268 0.5500 +5746 54331 0.8230 +5746 113091 0.9990 +5746 140690 0.4340 +5747 5781 0.9970 +5747 5782 0.9220 +5747 5829 0.9990 +5747 5879 0.6870 +5747 5894 0.5270 +5747 5906 0.6150 +5747 5908 0.6120 +5747 5921 0.6150 +5747 5923 0.9070 +5747 5962 0.5710 +5747 5979 0.6640 +5747 6093 0.6560 +5747 6195 0.5020 +5747 6279 0.5710 +5747 6300 0.9130 +5747 6385 0.9530 +5747 6387 0.4710 +5747 6401 0.4720 +5747 6455 0.6050 +5747 6456 0.4520 +5747 6457 0.4220 +5747 6461 0.7500 +5747 6464 0.9950 +5747 6502 0.4150 +5747 6591 0.5040 +5747 6615 0.5810 +5747 6654 0.9990 +5747 6696 0.8170 +5747 6709 0.4370 +5747 6711 0.4340 +5747 6712 0.4380 +5747 6714 0.9990 +5747 6732 0.4380 +5747 6772 0.8500 +5747 6774 0.9280 +5747 6801 0.5490 +5747 6850 0.6050 +5747 6921 0.8080 +5747 6923 0.8160 +5747 7003 0.5080 +5747 7010 0.5580 +5747 7039 0.5820 +5747 7040 0.5210 +5747 7041 0.9170 +5747 7048 0.5790 +5747 7057 0.7640 +5747 7058 0.7080 +5747 7059 0.6590 +5747 7060 0.6720 +5747 7076 0.4170 +5747 7082 0.5120 +5747 7094 0.9990 +5747 7124 0.4470 +5747 7143 0.6510 +5747 7145 0.5790 +5747 7148 0.6610 +5747 7157 0.9280 +5747 7204 0.5410 +5747 7205 0.5180 +5747 7249 0.4760 +5747 7408 0.7790 +5747 7409 0.7840 +5747 7410 0.7930 +5747 7412 0.5670 +5747 7414 0.9980 +5747 7428 0.8120 +5747 7430 0.8400 +5747 7431 0.5610 +5747 7448 0.9030 +5747 7450 0.7380 +5747 7454 0.6450 +5747 7456 0.4550 +5747 7525 0.8370 +5747 7535 0.4780 +5747 7791 0.9340 +5747 7837 0.5690 +5747 7852 0.5920 +5747 8408 0.5870 +5747 8440 0.9600 +5747 8482 0.4270 +5747 8503 0.9710 +5747 8515 0.8270 +5747 8516 0.8300 +5747 8554 0.7690 +5747 8633 0.9090 +5747 8651 0.4340 +5747 8660 0.5090 +5747 8874 0.4070 +5747 8900 0.5830 +5747 8935 0.4570 +5747 8936 0.6030 +5747 8976 0.8580 +5747 9021 0.8070 +5747 9047 0.5210 +5747 9124 0.4050 +5747 9138 0.9390 +5747 9140 0.4430 +5747 9181 0.9500 +5747 9404 0.6640 +5747 9423 0.7990 +5747 9474 0.4150 +5747 9475 0.6440 +5747 9564 0.9990 +5747 9776 0.6560 +5747 9815 0.5590 +5747 9821 0.9940 +5747 9832 0.4680 +5747 9844 0.5740 +5747 10006 0.7510 +5747 10152 0.5400 +5747 10163 0.6480 +5747 10174 0.4080 +5747 10319 0.6530 +5747 10399 0.6490 +5747 10413 0.4380 +5747 10451 0.5830 +5747 10458 0.6330 +5747 10519 0.6720 +5747 10580 0.4690 +5747 10631 0.4440 +5747 10634 0.4300 +5747 10787 0.5890 +5747 10810 0.5790 +5747 10907 0.4970 +5747 10979 0.4110 +5747 22798 0.6500 +5747 22801 0.8490 +5747 22885 0.5010 +5747 23092 0.4280 +5747 23162 0.5650 +5747 23191 0.5650 +5747 23365 0.9290 +5747 23371 0.5520 +5747 23499 0.4560 +5747 23533 0.9020 +5747 25759 0.9150 +5747 26548 0.4120 +5747 26999 0.5470 +5747 28964 0.8780 +5747 29780 0.5940 +5747 29941 0.5200 +5747 50807 0.9280 +5747 50943 0.5070 +5747 51129 0.4040 +5747 51517 0.4430 +5747 51651 0.4030 +5747 53358 0.9090 +5747 54518 0.6380 +5747 55620 0.5800 +5747 55742 0.6790 +5747 55845 0.5410 +5747 57091 0.4410 +5747 59277 0.4810 +5747 60673 0.6200 +5747 63916 0.5840 +5747 63923 0.6580 +5747 64098 0.5560 +5747 64283 0.9220 +5747 64759 0.7830 +5747 79038 0.6740 +5747 79658 0.5140 +5747 79689 0.4800 +5747 79812 0.4220 +5747 83660 0.9990 +5747 84106 0.4260 +5747 84448 0.4990 +5747 84951 0.7390 +5747 89780 0.5410 +5747 90249 0.9070 +5747 131873 0.6580 +5747 133482 0.6160 +5747 137902 0.5550 +5747 137970 0.9050 +5747 140885 0.5700 +5747 146850 0.9000 +5747 152789 0.4680 +5747 219699 0.9460 +5747 255324 0.4130 +5747 282973 0.4680 +5747 284217 0.6840 +5747 375790 0.4640 +5747 390443 0.4160 +5747 399694 0.9090 +5747 493829 0.5340 +5753 5770 0.9260 +5753 5829 0.9430 +5753 5921 0.5710 +5753 6233 0.5310 +5753 6421 0.8360 +5753 6595 0.4260 +5753 6597 0.6240 +5753 6725 0.7770 +5753 6774 0.7070 +5753 7311 0.5240 +5753 7314 0.5310 +5753 7316 0.5310 +5753 8027 0.5200 +5753 8471 0.4280 +5753 8751 0.5950 +5753 9021 0.9410 +5753 9542 0.6480 +5753 9564 0.9430 +5753 9844 0.5130 +5753 10254 0.4590 +5753 10457 0.9780 +5753 10656 0.8930 +5753 10657 0.9880 +5753 10664 0.5150 +5753 10718 0.6350 +5753 10787 0.4880 +5753 10856 0.4160 +5753 11183 0.4180 +5753 23149 0.4150 +5753 23604 0.4390 +5753 26063 0.4390 +5753 27043 0.6000 +5753 50618 0.4280 +5753 55620 0.9960 +5753 55636 0.4160 +5753 55845 0.4180 +5753 57680 0.7890 +5753 63916 0.5130 +5753 79025 0.4140 +5753 79144 0.4820 +5753 80205 0.5260 +5753 84181 0.5010 +5753 116985 0.9190 +5753 120892 0.9300 +5753 145957 0.5090 +5753 147837 0.4670 +5753 202559 0.9140 +5753 643677 0.4080 +5754 5792 0.4890 +5754 6095 0.4480 +5754 6259 0.6090 +5754 6422 0.4160 +5754 6443 0.4610 +5754 6653 0.4790 +5754 7157 0.5400 +5754 7162 0.4040 +5754 7471 0.6300 +5754 7472 0.7260 +5754 7474 0.9830 +5754 7481 0.7210 +5754 7482 0.5670 +5754 7483 0.4060 +5754 7484 0.4240 +5754 7855 0.4450 +5754 7976 0.5900 +5754 8321 0.6760 +5754 8322 0.4020 +5754 8323 0.7560 +5754 8324 0.5420 +5754 8325 0.6390 +5754 8326 0.5120 +5754 8840 0.4300 +5754 9620 0.7800 +5754 10076 0.4230 +5754 10631 0.8240 +5754 10699 0.4430 +5754 22881 0.4550 +5754 23002 0.6630 +5754 23500 0.5280 +5754 23513 0.7100 +5754 26103 0.5420 +5754 29964 0.5450 +5754 51339 0.6970 +5754 54361 0.7910 +5754 55084 0.4080 +5754 56477 0.4180 +5754 57216 0.8910 +5754 58480 0.5200 +5754 81029 0.6100 +5754 81839 0.8820 +5754 89780 0.8690 +5754 144165 0.5700 +5754 144321 0.4300 +5754 150274 0.4540 +5754 166336 0.5530 +5754 284656 0.4690 +5754 345193 0.5420 +5756 5880 0.7030 +5756 5962 0.8410 +5756 6709 0.5150 +5756 6711 0.5240 +5756 7112 0.4080 +5756 7114 0.4200 +5756 7408 0.4170 +5756 7430 0.8350 +5756 7454 0.5020 +5756 7965 0.4830 +5756 8573 0.5120 +5756 8826 0.4890 +5756 8976 0.4480 +5756 9189 0.4690 +5756 9255 0.6280 +5756 9521 0.5210 +5756 9535 0.5430 +5756 9750 0.8040 +5756 9948 0.5410 +5756 10093 0.4590 +5756 10095 0.4880 +5756 10096 0.5050 +5756 10097 0.5930 +5756 10120 0.4460 +5756 10121 0.4570 +5756 10486 0.5590 +5756 10487 0.9120 +5756 10673 0.4220 +5756 11034 0.8570 +5756 11078 0.5900 +5756 11344 0.5520 +5756 23136 0.5000 +5756 23221 0.6130 +5756 23603 0.6540 +5756 25794 0.8260 +5756 25861 0.6430 +5756 28988 0.4380 +5756 29765 0.6430 +5756 29766 0.5170 +5756 51168 0.6410 +5756 51474 0.4550 +5756 53405 0.8160 +5756 53904 0.6170 +5756 54443 0.4440 +5756 55604 0.4890 +5756 55898 0.4580 +5756 57019 0.5370 +5756 58509 0.5110 +5756 64072 0.4550 +5756 64787 0.6570 +5756 80335 0.9020 +5756 81567 0.5100 +5756 83715 0.6940 +5756 85477 0.6480 +5756 115650 0.4940 +5756 129446 0.8030 +5756 136319 0.4090 +5756 140469 0.5740 +5756 286262 0.8100 +5756 339768 0.5900 +5756 345456 0.6670 +5756 375189 0.7350 +5756 389207 0.8120 +5756 494513 0.5090 +5756 643226 0.8340 +5756 100529144 0.4470 +5757 5763 0.9910 +5757 5901 0.5560 +5757 5931 0.4320 +5757 6124 0.5240 +5757 6125 0.5130 +5757 6128 0.5970 +5757 6129 0.7220 +5757 6130 0.4460 +5757 6133 0.4460 +5757 6137 0.6630 +5757 6138 0.7410 +5757 6141 0.4320 +5757 6142 0.6010 +5757 6143 0.4930 +5757 6144 0.6020 +5757 6147 0.7790 +5757 6155 0.5220 +5757 6161 0.6560 +5757 6168 0.5430 +5757 6175 0.5700 +5757 6176 0.7870 +5757 6188 0.7810 +5757 6189 0.4200 +5757 6194 0.5270 +5757 6202 0.4740 +5757 6203 0.6100 +5757 6204 0.4010 +5757 6205 0.5050 +5757 6208 0.5990 +5757 6222 0.6180 +5757 6223 0.7400 +5757 6224 0.4770 +5757 6227 0.4430 +5757 6229 0.4060 +5757 6230 0.4280 +5757 6232 0.4910 +5757 6233 0.5560 +5757 6234 0.5280 +5757 6271 0.4220 +5757 6418 0.7410 +5757 6427 0.5120 +5757 6428 0.7580 +5757 6534 0.7710 +5757 6613 0.5170 +5757 6651 0.5160 +5757 6727 0.4370 +5757 7099 0.6000 +5757 7112 0.6180 +5757 7114 0.6750 +5757 7913 0.5060 +5757 7919 0.4190 +5757 8125 0.8720 +5757 8570 0.5550 +5757 9045 0.5150 +5757 9168 0.4660 +5757 9295 0.4820 +5757 9349 0.5000 +5757 9584 0.4390 +5757 9669 0.4670 +5757 9817 0.9930 +5757 9978 0.4090 +5757 9987 0.5210 +5757 10096 0.4890 +5757 10169 0.4440 +5757 10399 0.4600 +5757 10541 0.5480 +5757 10574 0.4260 +5757 10728 0.5270 +5757 10944 0.6080 +5757 23521 0.6240 +5757 26471 0.8810 +5757 26986 0.6830 +5757 29997 0.4010 +5757 134864 0.5430 +5757 220988 0.4210 +5757 728378 0.5070 +5757 102724473 0.4140 +5763 6534 0.4320 +5763 7114 0.4540 +5763 9168 0.4270 +5763 23770 0.4010 +5763 27111 0.4200 +5764 5777 0.4280 +5764 5787 0.9920 +5764 5788 0.4340 +5764 5802 0.6990 +5764 5803 0.9990 +5764 5914 0.4330 +5764 6382 0.6650 +5764 6383 0.5610 +5764 6385 0.6980 +5764 6387 0.4740 +5764 6464 0.5710 +5764 6513 0.7920 +5764 6678 0.8170 +5764 6714 0.6430 +5764 6718 0.7190 +5764 6750 0.4030 +5764 6774 0.6080 +5764 7025 0.4730 +5764 7123 0.4470 +5764 7472 0.4490 +5764 8404 0.7530 +5764 8614 0.4030 +5764 8829 0.5570 +5764 9672 0.9930 +5764 9905 0.4220 +5764 10406 0.4310 +5764 10675 0.6230 +5764 10818 0.5510 +5764 23512 0.4360 +5764 23654 0.9050 +5764 26292 0.4250 +5764 28964 0.5630 +5764 51676 0.4180 +5764 54810 0.4020 +5764 56729 0.4490 +5764 60489 0.4480 +5764 80781 0.5350 +5764 121227 0.6010 +5764 221914 0.5810 +5764 375790 0.5700 +5764 389658 0.4590 +5764 641700 0.4120 +5768 6590 0.4060 +5768 6646 0.4090 +5768 7047 0.4760 +5768 7076 0.4930 +5768 7295 0.7990 +5768 7450 0.4730 +5768 9588 0.5140 +5768 9857 0.5510 +5768 10549 0.4590 +5768 22926 0.4110 +5768 25903 0.4110 +5768 26092 0.4950 +5768 26330 0.4500 +5768 27076 0.4300 +5768 30001 0.5250 +5768 54757 0.4270 +5768 56605 0.4100 +5768 56975 0.5800 +5768 64222 0.4790 +5768 83468 0.4270 +5768 131474 0.4320 +5768 163589 0.4910 +5768 221223 0.4040 +5770 5771 0.5260 +5770 5781 0.9270 +5770 5782 0.4610 +5770 5792 0.9410 +5770 5805 0.8990 +5770 5862 0.5170 +5770 5906 0.5120 +5770 5908 0.4770 +5770 6300 0.5440 +5770 6464 0.6310 +5770 6476 0.6630 +5770 6517 0.6040 +5770 6615 0.4780 +5770 6714 0.9790 +5770 6720 0.4190 +5770 6772 0.4710 +5770 6773 0.5520 +5770 6774 0.8260 +5770 6776 0.6180 +5770 6777 0.6000 +5770 6778 0.4210 +5770 7009 0.5700 +5770 7094 0.5110 +5770 7124 0.4540 +5770 7157 0.4440 +5770 7295 0.8490 +5770 7296 0.5330 +5770 7297 0.7710 +5770 7415 0.4100 +5770 7450 0.5840 +5770 7529 0.4230 +5770 8202 0.4610 +5770 8471 0.9250 +5770 8554 0.7010 +5770 8648 0.5030 +5770 8651 0.4350 +5770 8660 0.9590 +5770 8764 0.4270 +5770 8972 0.6620 +5770 9021 0.6540 +5770 9051 0.4900 +5770 9217 0.5520 +5770 9370 0.4770 +5770 9537 0.4160 +5770 9564 0.9270 +5770 10254 0.6990 +5770 10891 0.4110 +5770 10987 0.5710 +5770 23411 0.4590 +5770 25828 0.7900 +5770 26003 0.4640 +5770 50507 0.4890 +5770 51115 0.4360 +5770 54518 0.5450 +5770 54935 0.4330 +5770 54956 0.4430 +5770 55177 0.9610 +5770 55503 0.5320 +5770 57674 0.4600 +5770 128853 0.4160 +5770 133482 0.6670 +5770 143162 0.4220 +5770 151393 0.4290 +5770 171017 0.4700 +5771 5775 0.5010 +5771 5777 0.8140 +5771 5778 0.5630 +5771 5780 0.5130 +5771 5781 0.5570 +5771 5782 0.5010 +5771 5783 0.4970 +5771 5784 0.5230 +5771 5805 0.8310 +5771 6464 0.4460 +5771 6714 0.7400 +5771 6772 0.9780 +5771 6773 0.9370 +5771 6774 0.9900 +5771 6775 0.9650 +5771 6776 0.9480 +5771 6777 0.9480 +5771 6778 0.9530 +5771 6856 0.4370 +5771 7297 0.9530 +5771 7341 0.4290 +5771 7407 0.4890 +5771 8021 0.6900 +5771 8266 0.4720 +5771 8651 0.4660 +5771 8807 0.4350 +5771 8809 0.5380 +5771 9021 0.4690 +5771 9472 0.4410 +5771 10019 0.6630 +5771 10213 0.5000 +5771 10807 0.4220 +5771 23274 0.7000 +5771 25930 0.5630 +5771 26095 0.5110 +5771 26469 0.4700 +5771 27178 0.4990 +5771 51115 0.5540 +5771 53347 0.5010 +5771 55054 0.4160 +5771 55177 0.7630 +5771 60468 0.6520 +5771 64127 0.4310 +5771 64135 0.6900 +5771 80018 0.6380 +5771 80852 0.4220 +5771 84295 0.4360 +5771 84792 0.4050 +5771 84867 0.5130 +5771 114904 0.5830 +5771 117289 0.6860 +5771 132612 0.4480 +5771 143162 0.4350 +5771 149233 0.4690 +5771 150962 0.4800 +5771 151393 0.5470 +5771 159296 0.7520 +5771 257019 0.4220 +5771 345611 0.6330 +5771 100289462 0.4220 +5771 100506658 0.4070 +5774 5783 0.4180 +5774 5792 0.4730 +5774 5793 0.4290 +5774 5805 0.8610 +5774 6300 0.9700 +5774 6331 0.6170 +5774 6455 0.4220 +5774 6456 0.4500 +5774 6801 0.4020 +5774 7039 0.4350 +5774 7157 0.4950 +5774 7337 0.6770 +5774 7353 0.4250 +5774 7415 0.7920 +5774 7529 0.6870 +5774 7531 0.5380 +5774 7532 0.6110 +5774 7533 0.5840 +5774 7534 0.6950 +5774 8027 0.4300 +5774 8777 0.5440 +5774 9146 0.4310 +5774 9351 0.5020 +5774 9543 0.5280 +5774 10207 0.4370 +5774 10254 0.4300 +5774 10971 0.5980 +5774 11122 0.4800 +5774 11180 0.5480 +5774 23513 0.4760 +5774 23524 0.4140 +5774 28982 0.4430 +5774 29924 0.4020 +5774 30011 0.4060 +5774 51133 0.4400 +5774 51272 0.5450 +5774 54935 0.4480 +5774 55227 0.4980 +5774 55666 0.5260 +5774 58513 0.4310 +5774 59272 0.5210 +5774 78986 0.4290 +5774 80124 0.5320 +5774 81839 0.4820 +5774 92799 0.4320 +5774 200634 0.4340 +5775 5777 0.5200 +5775 5778 0.5510 +5775 5780 0.5410 +5775 5781 0.5400 +5775 5782 0.5380 +5775 5783 0.5270 +5775 5784 0.5510 +5775 5805 0.8530 +5775 6300 0.7360 +5775 9110 0.4630 +5775 23139 0.4570 +5775 25930 0.5580 +5775 26095 0.5110 +5775 26469 0.5010 +5775 27178 0.4990 +5775 64359 0.4200 +5775 79134 0.4300 +5775 79734 0.4200 +5775 84867 0.5280 +5775 92359 0.4290 +5775 116236 0.4110 +5775 134864 0.7610 +5775 353376 0.7790 +5777 5778 0.5890 +5777 5780 0.5210 +5777 5781 0.9500 +5777 5782 0.7420 +5777 5783 0.5170 +5777 5784 0.4860 +5777 5788 0.5200 +5777 5805 0.6750 +5777 5880 0.4710 +5777 5966 0.4010 +5777 6049 0.5300 +5777 6098 0.5620 +5777 6125 0.5290 +5777 6165 0.5310 +5777 6218 0.4480 +5777 6452 0.5000 +5777 6464 0.6960 +5777 6614 0.6350 +5777 6654 0.5570 +5777 6688 0.4890 +5777 6714 0.9170 +5777 6772 0.6610 +5777 6773 0.5740 +5777 6774 0.7810 +5777 6776 0.6690 +5777 6777 0.7300 +5777 6778 0.4170 +5777 6850 0.9950 +5777 6855 0.6230 +5777 7094 0.4540 +5777 7132 0.6110 +5777 7189 0.9420 +5777 7297 0.9540 +5777 7305 0.5980 +5777 7409 0.9660 +5777 7410 0.9190 +5777 7535 0.9720 +5777 7805 0.5710 +5777 7852 0.4810 +5777 8431 0.4680 +5777 8503 0.9100 +5777 8536 0.5820 +5777 8631 0.5620 +5777 8651 0.4230 +5777 8764 0.6700 +5777 8915 0.4960 +5777 9051 0.4840 +5777 9846 0.4150 +5777 10219 0.4090 +5777 10288 0.9720 +5777 10312 0.5250 +5777 10401 0.4450 +5777 10451 0.9180 +5777 10630 0.5360 +5777 10859 0.9900 +5777 10871 0.7190 +5777 10990 0.9580 +5777 11006 0.9760 +5777 11024 0.9170 +5777 11025 0.9620 +5777 11027 0.9640 +5777 11151 0.5320 +5777 11314 0.7250 +5777 23547 0.9220 +5777 25930 0.5560 +5777 26095 0.5150 +5777 26469 0.5400 +5777 27036 0.4740 +5777 27040 0.4790 +5777 27178 0.4990 +5777 27180 0.4490 +5777 29126 0.6190 +5777 29760 0.6130 +5777 29992 0.7960 +5777 30837 0.4990 +5777 50856 0.5180 +5777 51206 0.5860 +5777 51266 0.5900 +5777 51744 0.6170 +5777 54440 0.4210 +5777 54518 0.5380 +5777 64098 0.4790 +5777 64926 0.4360 +5777 79168 0.9250 +5777 79400 0.5640 +5777 79730 0.6230 +5777 79958 0.4510 +5777 80380 0.5870 +5777 80739 0.8070 +5777 83706 0.4060 +5777 84433 0.6360 +5777 84867 0.4750 +5777 89790 0.4130 +5777 114132 0.4280 +5777 114836 0.4520 +5777 115352 0.5380 +5777 115653 0.9000 +5777 118788 0.4140 +5777 140885 0.9420 +5777 146722 0.6530 +5777 151888 0.7250 +5777 160364 0.6300 +5777 257106 0.4040 +5777 340061 0.4570 +5777 353514 0.9110 +5777 387357 0.4760 +5777 390714 0.5070 +5777 653361 0.4410 +5778 5780 0.5180 +5778 5781 0.7200 +5778 5782 0.5110 +5778 5783 0.5520 +5778 5784 0.5530 +5778 5788 0.4350 +5778 5801 0.9120 +5778 5805 0.9250 +5778 6195 0.5540 +5778 6197 0.5300 +5778 6300 0.9370 +5778 6776 0.4920 +5778 7535 0.4530 +5778 7957 0.4630 +5778 8556 0.4640 +5778 8611 0.4740 +5778 9402 0.4200 +5778 11184 0.4160 +5778 11221 0.4780 +5778 25930 0.5550 +5778 26095 0.5000 +5778 26191 0.4080 +5778 26469 0.5160 +5778 27068 0.4210 +5778 27178 0.4990 +5778 54440 0.5560 +5778 54935 0.5110 +5778 84867 0.9300 +5778 127933 0.4040 +5778 143162 0.5460 +5780 5781 0.5680 +5780 5782 0.5240 +5780 5783 0.5340 +5780 5784 0.5150 +5780 5795 0.5060 +5780 5805 0.7200 +5780 6397 0.8950 +5780 8556 0.4280 +5780 9989 0.6190 +5780 10073 0.4150 +5780 10087 0.4740 +5780 10228 0.5290 +5780 10313 0.6650 +5780 10717 0.4050 +5780 25930 0.5430 +5780 26095 0.4580 +5780 26469 0.5150 +5780 27178 0.4990 +5780 79109 0.4630 +5780 84867 0.4570 +5781 5782 0.7270 +5781 5783 0.5790 +5781 5784 0.5060 +5781 5788 0.4520 +5781 5792 0.9220 +5781 5797 0.4550 +5781 5801 0.5130 +5781 5805 0.8090 +5781 5817 0.4960 +5781 5829 0.9340 +5781 5877 0.8360 +5781 5880 0.4070 +5781 5885 0.4540 +5781 5894 0.7280 +5781 5922 0.6130 +5781 5979 0.8710 +5781 5987 0.4560 +5781 6093 0.5020 +5781 6098 0.5480 +5781 6195 0.5990 +5781 6197 0.5920 +5781 6198 0.4150 +5781 6233 0.5170 +5781 6237 0.4960 +5781 6279 0.9950 +5781 6347 0.5640 +5781 6387 0.4910 +5781 6401 0.4360 +5781 6427 0.5850 +5781 6461 0.5350 +5781 6464 0.9970 +5781 6494 0.6150 +5781 6504 0.9560 +5781 6548 0.4800 +5781 6598 0.5240 +5781 6614 0.5350 +5781 6654 0.9990 +5781 6655 0.9940 +5781 6714 0.9980 +5781 6772 0.9610 +5781 6773 0.6100 +5781 6774 0.9840 +5781 6776 0.9740 +5781 6777 0.9620 +5781 6778 0.6450 +5781 6794 0.5190 +5781 6850 0.9630 +5781 7010 0.8840 +5781 7039 0.5360 +5781 7099 0.6530 +5781 7124 0.5180 +5781 7132 0.6590 +5781 7157 0.6120 +5781 7187 0.5610 +5781 7189 0.9480 +5781 7294 0.5740 +5781 7297 0.9640 +5781 7305 0.6900 +5781 7307 0.5970 +5781 7311 0.4990 +5781 7314 0.5120 +5781 7316 0.5270 +5781 7409 0.9900 +5781 7410 0.9230 +5781 7490 0.5720 +5781 7525 0.8410 +5781 7529 0.4680 +5781 7532 0.4720 +5781 7535 0.9860 +5781 7852 0.5100 +5781 7940 0.4240 +5781 8036 0.7680 +5781 8074 0.4470 +5781 8216 0.5070 +5781 8233 0.6020 +5781 8243 0.4950 +5781 8431 0.8000 +5781 8471 0.6420 +5781 8503 0.9320 +5781 8563 0.8010 +5781 8633 0.9010 +5781 8651 0.7180 +5781 8660 0.8870 +5781 8764 0.7290 +5781 8795 0.5110 +5781 8817 0.6270 +5781 8822 0.6110 +5781 8823 0.6300 +5781 8831 0.4450 +5781 8832 0.6970 +5781 8835 0.5680 +5781 8844 0.4940 +5781 8976 0.4340 +5781 9019 0.9540 +5781 9021 0.8530 +5781 9048 0.5200 +5781 9126 0.4320 +5781 9180 0.4330 +5781 9338 0.4770 +5781 9365 0.4390 +5781 9402 0.9130 +5781 9423 0.5270 +5781 9437 0.5360 +5781 9564 0.6020 +5781 9641 0.5280 +5781 9784 0.4200 +5781 9846 0.9990 +5781 9874 0.4720 +5781 9961 0.5040 +5781 9965 0.5010 +5781 9976 0.4100 +5781 10010 0.4870 +5781 10019 0.5290 +5781 10197 0.6270 +5781 10252 0.6470 +5781 10253 0.7350 +5781 10298 0.4980 +5781 10320 0.5000 +5781 10326 0.7340 +5781 10399 0.4320 +5781 10401 0.4040 +5781 10451 0.9480 +5781 10628 0.9720 +5781 10630 0.5760 +5781 10735 0.5720 +5781 10817 0.9930 +5781 10818 0.9990 +5781 10859 0.6200 +5781 11025 0.4680 +5781 11126 0.5900 +5781 11314 0.5150 +5781 22808 0.4040 +5781 22934 0.6020 +5781 22954 0.4520 +5781 23092 0.4630 +5781 23476 0.4340 +5781 23586 0.4650 +5781 23643 0.4730 +5781 23765 0.4460 +5781 25930 0.5540 +5781 25970 0.5540 +5781 26040 0.6230 +5781 26095 0.5010 +5781 26281 0.6340 +5781 26469 0.5200 +5781 26499 0.4780 +5781 27006 0.6260 +5781 27036 0.6300 +5781 27071 0.4830 +5781 27121 0.4380 +5781 27178 0.5340 +5781 27180 0.7420 +5781 27181 0.4050 +5781 27240 0.4460 +5781 27339 0.9870 +5781 29110 0.8950 +5781 29119 0.4100 +5781 29126 0.9500 +5781 29760 0.4180 +5781 29990 0.9410 +5781 29992 0.9820 +5781 30849 0.5150 +5781 50616 0.5920 +5781 50852 0.4270 +5781 50856 0.7440 +5781 51206 0.6670 +5781 51266 0.6320 +5781 51284 0.4010 +5781 51744 0.8150 +5781 53347 0.4020 +5781 53358 0.4730 +5781 54106 0.6600 +5781 54209 0.4380 +5781 54790 0.6200 +5781 55294 0.7590 +5781 55824 0.6480 +5781 55914 0.5870 +5781 57551 0.6330 +5781 58985 0.5290 +5781 63035 0.4830 +5781 64096 0.4990 +5781 64581 0.4960 +5781 64762 0.5590 +5781 79133 0.4350 +5781 79168 0.6250 +5781 79368 0.4080 +5781 79577 0.6680 +5781 80380 0.8460 +5781 80739 0.9820 +5781 81848 0.4950 +5781 83417 0.7340 +5781 84295 0.6000 +5781 84824 0.4100 +5781 84867 0.4830 +5781 84868 0.5700 +5781 89790 0.4470 +5781 90249 0.9040 +5781 93978 0.5440 +5781 114132 0.8620 +5781 114836 0.8260 +5781 115352 0.7410 +5781 115653 0.9100 +5781 117157 0.7760 +5781 124641 0.5070 +5781 137970 0.9000 +5781 139716 0.8850 +5781 140885 0.9990 +5781 144568 0.4450 +5781 146433 0.5280 +5781 146722 0.6630 +5781 148022 0.4490 +5781 151888 0.9960 +5781 152831 0.7020 +5781 160364 0.9810 +5781 161742 0.5120 +5781 171023 0.7020 +5781 201633 0.6130 +5781 219699 0.9390 +5781 255324 0.4530 +5781 284415 0.4550 +5781 340205 0.6440 +5781 353376 0.4450 +5781 387357 0.8840 +5781 387837 0.5440 +5781 399694 0.4240 +5782 5783 0.5660 +5782 5784 0.5280 +5782 5805 0.9370 +5782 5829 0.9990 +5782 6167 0.4550 +5782 6464 0.9680 +5782 6654 0.5130 +5782 6714 0.8340 +5782 7041 0.7510 +5782 7074 0.4420 +5782 7094 0.5700 +5782 7253 0.4480 +5782 7408 0.5750 +5782 7414 0.4780 +5782 7454 0.7720 +5782 7535 0.4060 +5782 7919 0.4570 +5782 8021 0.4270 +5782 8022 0.5670 +5782 8470 0.4030 +5782 8650 0.4110 +5782 8936 0.4020 +5782 9050 0.8910 +5782 9051 0.9980 +5782 9218 0.4420 +5782 9404 0.8600 +5782 9542 0.5150 +5782 9564 0.9620 +5782 9610 0.4900 +5782 10291 0.4620 +5782 10718 0.4990 +5782 25930 0.5170 +5782 26095 0.4520 +5782 26469 0.4830 +5782 27178 0.4990 +5782 30012 0.4990 +5782 83660 0.5430 +5782 84867 0.4430 +5782 145957 0.5100 +5783 5784 0.6570 +5783 5792 0.4670 +5783 5793 0.6750 +5783 5805 0.6440 +5783 5911 0.4150 +5783 6616 0.4410 +5783 6714 0.7260 +5783 6774 0.4640 +5783 7205 0.7110 +5783 7297 0.4400 +5783 7525 0.5200 +5783 8153 0.5680 +5783 8312 0.4620 +5783 8505 0.4670 +5783 8572 0.6480 +5783 8772 0.6160 +5783 8994 0.4120 +5783 9081 0.6820 +5783 9084 0.5110 +5783 9270 0.4240 +5783 9368 0.4800 +5783 9411 0.8990 +5783 9475 0.4690 +5783 9564 0.4700 +5783 9693 0.7850 +5783 9863 0.4150 +5783 10076 0.5360 +5783 10297 0.4190 +5783 10494 0.6470 +5783 10791 0.5150 +5783 10807 0.8090 +5783 11122 0.4430 +5783 11124 0.4860 +5783 11235 0.7010 +5783 25827 0.5020 +5783 25930 0.5570 +5783 26095 0.4800 +5783 26469 0.5190 +5783 27178 0.4990 +5783 27289 0.5860 +5783 29117 0.5150 +5783 51735 0.9600 +5783 53358 0.4350 +5783 53371 0.4020 +5783 59338 0.9710 +5783 59339 0.9430 +5783 83605 0.4940 +5783 84260 0.4290 +5783 84867 0.4870 +5783 84962 0.4230 +5783 126374 0.4060 +5783 161145 0.4130 +5783 199731 0.5780 +5783 260425 0.4090 +5783 353513 0.5110 +5784 5791 0.4120 +5784 5792 0.4780 +5784 5793 0.5690 +5784 5805 0.7730 +5784 7003 0.4450 +5784 7082 0.4670 +5784 7424 0.5160 +5784 7529 0.5840 +5784 7531 0.4210 +5784 8453 0.4690 +5784 9113 0.8200 +5784 9223 0.6970 +5784 9260 0.4790 +5784 9564 0.5990 +5784 9828 0.4270 +5784 9863 0.4190 +5784 10413 0.9820 +5784 11059 0.5300 +5784 11060 0.6590 +5784 11122 0.5360 +5784 11228 0.5760 +5784 23286 0.9510 +5784 23352 0.5330 +5784 23368 0.4800 +5784 23513 0.4050 +5784 23558 0.5160 +5784 25930 0.6550 +5784 25937 0.4830 +5784 26095 0.5180 +5784 26469 0.4750 +5784 26524 0.5030 +5784 27178 0.4990 +5784 30837 0.6160 +5784 51129 0.4020 +5784 51421 0.5480 +5784 54345 0.4190 +5784 55233 0.4740 +5784 55841 0.7340 +5784 57165 0.4550 +5784 60485 0.6040 +5784 79633 0.4020 +5784 80014 0.5930 +5784 84612 0.6120 +5784 84867 0.5440 +5784 89857 0.4050 +5784 92597 0.4230 +5784 122769 0.4660 +5784 122809 0.4120 +5784 147372 0.5180 +5784 154796 0.8420 +5784 154810 0.4350 +5784 260425 0.5890 +5787 5793 0.4560 +5787 5802 0.4580 +5787 5803 0.5770 +5787 5805 0.8610 +5787 6326 0.4600 +5787 6714 0.6020 +5787 7010 0.8960 +5787 7075 0.7500 +5787 7122 0.6860 +5787 8506 0.7440 +5787 9672 0.4180 +5787 22918 0.5490 +5787 23114 0.7120 +5787 51705 0.5670 +5787 54538 0.5570 +5787 79812 0.5280 +5787 90952 0.4260 +5787 115677 0.4270 +5787 140706 0.4180 +5787 140885 0.4460 +5787 152273 0.4020 +5787 196883 0.4120 +5787 199675 0.4050 +5787 221395 0.6810 +5787 253143 0.4020 +5787 260425 0.4160 +5788 5790 0.9880 +5788 5795 0.5200 +5788 5797 0.4870 +5788 5805 0.5400 +5788 5880 0.6060 +5788 5896 0.8400 +5788 5914 0.4280 +5788 5966 0.5020 +5788 5970 0.4390 +5788 5971 0.4680 +5788 6097 0.4930 +5788 6275 0.4890 +5788 6280 0.4670 +5788 6285 0.4110 +5788 6347 0.7350 +5788 6348 0.6680 +5788 6351 0.6540 +5788 6356 0.4870 +5788 6361 0.4280 +5788 6363 0.6030 +5788 6364 0.4810 +5788 6366 0.6150 +5788 6367 0.4770 +5788 6373 0.4790 +5788 6374 0.4550 +5788 6375 0.4260 +5788 6376 0.6890 +5788 6382 0.8000 +5788 6387 0.8270 +5788 6401 0.5920 +5788 6402 0.9280 +5788 6403 0.6700 +5788 6404 0.7790 +5788 6433 0.4420 +5788 6440 0.4950 +5788 6490 0.5060 +5788 6494 0.4530 +5788 6503 0.4850 +5788 6504 0.8600 +5788 6614 0.6430 +5788 6657 0.5830 +5788 6662 0.5290 +5788 6688 0.7950 +5788 6689 0.6960 +5788 6693 0.9930 +5788 6696 0.5750 +5788 6711 0.4660 +5788 6714 0.6830 +5788 6772 0.7640 +5788 6774 0.6620 +5788 6775 0.4560 +5788 6776 0.6460 +5788 6777 0.6190 +5788 6778 0.5430 +5788 6850 0.7720 +5788 6855 0.5900 +5788 6886 0.4800 +5788 6925 0.4200 +5788 6929 0.4480 +5788 6932 0.5060 +5788 7010 0.6960 +5788 7037 0.8880 +5788 7040 0.7010 +5788 7042 0.4080 +5788 7043 0.5130 +5788 7046 0.4190 +5788 7048 0.4820 +5788 7056 0.5510 +5788 7057 0.4230 +5788 7066 0.5960 +5788 7070 0.9130 +5788 7075 0.4180 +5788 7076 0.4260 +5788 7078 0.4120 +5788 7080 0.4320 +5788 7082 0.4090 +5788 7094 0.4910 +5788 7096 0.5850 +5788 7097 0.7120 +5788 7098 0.6240 +5788 7099 0.7680 +5788 7100 0.5100 +5788 7103 0.4330 +5788 7124 0.8330 +5788 7128 0.4130 +5788 7130 0.4560 +5788 7132 0.5050 +5788 7133 0.5140 +5788 7157 0.6240 +5788 7251 0.4190 +5788 7253 0.4400 +5788 7292 0.4640 +5788 7293 0.5740 +5788 7305 0.8280 +5788 7345 0.5760 +5788 7356 0.4180 +5788 7409 0.7320 +5788 7412 0.8320 +5788 7431 0.5320 +5788 7450 0.6640 +5788 7454 0.6590 +5788 7472 0.4940 +5788 7490 0.4350 +5788 7535 0.8110 +5788 7704 0.4310 +5788 7805 0.6170 +5788 7837 0.7130 +5788 7852 0.9330 +5788 8174 0.4790 +5788 8290 0.4470 +5788 8320 0.6220 +5788 8349 0.5850 +5788 8356 0.4470 +5788 8456 0.4250 +5788 8477 0.5090 +5788 8530 0.6680 +5788 8541 0.4680 +5788 8549 0.5180 +5788 8600 0.5460 +5788 8631 0.5190 +5788 8639 0.8780 +5788 8651 0.4200 +5788 8698 0.4460 +5788 8743 0.4250 +5788 8764 0.4280 +5788 8784 0.6080 +5788 8809 0.4170 +5788 8817 0.5120 +5788 8822 0.4900 +5788 8823 0.5000 +5788 8829 0.4690 +5788 8832 0.5620 +5788 8842 0.7710 +5788 8915 0.5680 +5788 9021 0.5540 +5788 9034 0.6700 +5788 9159 0.6380 +5788 9173 0.4740 +5788 9202 0.4010 +5788 9241 0.5060 +5788 9308 0.6110 +5788 9314 0.4900 +5788 9332 0.8410 +5788 9370 0.4430 +5788 9402 0.4600 +5788 9429 0.4020 +5788 9436 0.5050 +5788 9437 0.7350 +5788 9450 0.5030 +5788 9451 0.4120 +5788 9476 0.5260 +5788 9595 0.5560 +5788 9938 0.5210 +5788 10004 0.5960 +5788 10018 0.4670 +5788 10190 0.4140 +5788 10219 0.7660 +5788 10225 0.4500 +5788 10261 0.4250 +5788 10288 0.6370 +5788 10291 0.4310 +5788 10320 0.8060 +5788 10365 0.4270 +5788 10461 0.5440 +5788 10462 0.5000 +5788 10507 0.9770 +5788 10538 0.4880 +5788 10544 0.4330 +5788 10563 0.6240 +5788 10578 0.4780 +5788 10630 0.6700 +5788 10631 0.4230 +5788 10663 0.5390 +5788 10664 0.5660 +5788 10666 0.5170 +5788 10673 0.7180 +5788 10763 0.6100 +5788 10803 0.5910 +5788 10859 0.4310 +5788 10870 0.5760 +5788 10875 0.5140 +5788 10894 0.6520 +5788 11006 0.4120 +5788 11035 0.4260 +5788 11126 0.4170 +5788 11151 0.5200 +5788 11251 0.5240 +5788 11314 0.4910 +5788 22806 0.5310 +5788 22914 0.7730 +5788 22918 0.6620 +5788 23193 0.6370 +5788 23308 0.4970 +5788 23495 0.4460 +5788 23621 0.4520 +5788 23643 0.4030 +5788 23765 0.4890 +5788 26191 0.5310 +5788 26253 0.4010 +5788 26281 0.4990 +5788 27006 0.4960 +5788 27074 0.4160 +5788 27087 0.6020 +5788 27141 0.5480 +5788 28514 0.4420 +5788 29126 0.7520 +5788 29760 0.5490 +5788 29851 0.7650 +5788 30009 0.7650 +5788 30816 0.5860 +5788 30817 0.4660 +5788 30835 0.5540 +5788 50489 0.6050 +5788 50615 0.5330 +5788 50616 0.5990 +5788 50852 0.4090 +5788 50856 0.4090 +5788 50943 0.8790 +5788 51176 0.4280 +5788 51284 0.8210 +5788 51311 0.6740 +5788 51561 0.4070 +5788 51705 0.4310 +5788 51744 0.6980 +5788 54106 0.7510 +5788 54209 0.5270 +5788 54440 0.6070 +5788 54474 0.5410 +5788 54518 0.6030 +5788 54550 0.4050 +5788 54567 0.4780 +5788 54790 0.4270 +5788 55509 0.5570 +5788 55540 0.4030 +5788 55843 0.5500 +5788 56667 0.4440 +5788 57030 0.4010 +5788 57126 0.4490 +5788 57211 0.4540 +5788 57379 0.5380 +5788 57705 0.4330 +5788 57823 0.4900 +5788 58191 0.4150 +5788 64005 0.4990 +5788 64092 0.5110 +5788 64098 0.4010 +5788 64127 0.4390 +5788 64407 0.4690 +5788 64581 0.7520 +5788 64805 0.5540 +5788 64926 0.4450 +5788 65258 0.5730 +5788 79923 0.6140 +5788 80310 0.4970 +5788 80342 0.5100 +5788 80380 0.6130 +5788 80381 0.7390 +5788 81704 0.5540 +5788 83660 0.4770 +5788 83706 0.5220 +5788 84166 0.4700 +5788 84312 0.4240 +5788 84433 0.4430 +5788 84684 0.4300 +5788 84868 0.7920 +5788 85480 0.4800 +5788 89857 0.4440 +5788 90865 0.5920 +5788 91937 0.4950 +5788 92906 0.8000 +5788 93978 0.4070 +5788 112744 0.4790 +5788 114548 0.4790 +5788 114836 0.5120 +5788 115650 0.5170 +5788 117289 0.5590 +5788 118788 0.4450 +5788 121340 0.5510 +5788 123803 0.4740 +5788 131450 0.4890 +5788 137902 0.7120 +5788 140685 0.4730 +5788 140690 0.4570 +5788 140885 0.7670 +5788 145581 0.4990 +5788 146433 0.6240 +5788 146713 0.5160 +5788 149233 0.4340 +5788 151888 0.7170 +5788 160364 0.5150 +5788 168400 0.5440 +5788 169355 0.5370 +5788 170482 0.5980 +5788 171558 0.4680 +5788 201633 0.5720 +5788 203068 0.4390 +5788 219972 0.4900 +5788 257106 0.5790 +5788 259197 0.4760 +5788 283420 0.5180 +5788 284194 0.7730 +5788 338773 0.5560 +5788 400566 0.4480 +5788 405754 0.5830 +5788 440093 0.4470 +5788 440686 0.4470 +5788 653145 0.4600 +5788 653361 0.5540 +5788 653604 0.4470 +5788 654346 0.7760 +5788 728378 0.5420 +5788 100133941 0.7800 +5788 100423062 0.5000 +5788 100526664 0.6520 +5788 102723407 0.6720 +5789 5792 0.4250 +5789 5802 0.6710 +5789 5805 0.5960 +5789 5915 0.4070 +5789 6529 0.4280 +5789 6543 0.4620 +5789 6774 0.5560 +5789 6794 0.5190 +5789 7080 0.4830 +5789 7128 0.4840 +5789 7157 0.4380 +5789 8437 0.4050 +5789 8495 0.8130 +5789 8496 0.8290 +5789 8497 0.6270 +5789 8499 0.7560 +5789 8500 0.9730 +5789 8541 0.9660 +5789 8641 0.4450 +5789 8777 0.5190 +5789 8872 0.4980 +5789 9046 0.4230 +5789 9229 0.4670 +5789 9369 0.4270 +5789 9378 0.5160 +5789 9379 0.4420 +5789 9788 0.7320 +5789 10082 0.5810 +5789 10178 0.4040 +5789 10335 0.4740 +5789 10716 0.4260 +5789 10777 0.4160 +5789 11141 0.9940 +5789 11221 0.4070 +5789 22865 0.9370 +5789 22871 0.4510 +5789 23284 0.4690 +5789 23414 0.4210 +5789 23426 0.4260 +5789 26045 0.5360 +5789 26050 0.6980 +5789 26053 0.6070 +5789 26059 0.4890 +5789 26280 0.8330 +5789 27324 0.5710 +5789 53353 0.7460 +5789 54413 0.9020 +5789 54715 0.4840 +5789 55714 0.4300 +5789 56923 0.4140 +5789 57030 0.4710 +5789 57537 0.4380 +5789 57622 0.8300 +5789 57633 0.4850 +5789 58508 0.4130 +5789 64478 0.5560 +5789 78999 0.6470 +5789 79414 0.4990 +5789 79930 0.4310 +5789 80790 0.4510 +5789 84189 0.5680 +5789 84631 0.9560 +5789 84708 0.4270 +5789 94030 0.7420 +5789 114781 0.7260 +5789 114788 0.4180 +5789 114798 0.9900 +5789 139065 0.5590 +5789 140458 0.5340 +5789 145581 0.8800 +5789 145741 0.4450 +5789 152330 0.4670 +5789 154215 0.4380 +5789 158038 0.4760 +5789 390598 0.6710 +5789 729238 0.4410 +5790 6187 0.4100 +5790 6194 0.4100 +5790 7037 0.4100 +5790 7535 0.5480 +5790 8631 0.4170 +5790 9744 0.5270 +5790 11151 0.5230 +5790 11184 0.5410 +5790 27240 0.5540 +5790 54440 0.4170 +5790 55031 0.4380 +5790 64926 0.4550 +5790 79037 0.6370 +5790 80342 0.5990 +5790 84824 0.4340 +5790 117159 0.4080 +5790 374403 0.6760 +5791 5793 0.4150 +5791 5795 0.5420 +5791 5805 0.6230 +5791 10800 0.5110 +5791 11091 0.7020 +5791 23043 0.4200 +5791 27115 0.4100 +5791 57622 0.4530 +5791 79414 0.4820 +5791 145581 0.5020 +5791 148823 0.4170 +5791 100526772 0.4150 +5792 5793 0.4170 +5792 5803 0.4850 +5792 5805 0.7340 +5792 5979 0.6070 +5792 7075 0.4080 +5792 7204 0.6020 +5792 8471 0.9130 +5792 8495 0.7030 +5792 8496 0.9570 +5792 8497 0.6960 +5792 8499 0.7970 +5792 8500 0.9970 +5792 8541 0.9960 +5792 8660 0.9150 +5792 8751 0.4940 +5792 9181 0.4020 +5792 11141 0.6510 +5792 22829 0.4520 +5792 22865 0.5110 +5792 22871 0.5310 +5792 23062 0.4180 +5792 23162 0.4950 +5792 23189 0.4770 +5792 23398 0.4300 +5792 26059 0.4400 +5792 26280 0.5110 +5792 28964 0.4500 +5792 50636 0.4690 +5792 51162 0.4210 +5792 54413 0.4870 +5792 54919 0.4700 +5792 55789 0.4380 +5792 57125 0.4130 +5792 57142 0.4060 +5792 57497 0.5250 +5792 57502 0.4750 +5792 57522 0.4300 +5792 57555 0.5180 +5792 57622 0.6180 +5792 65078 0.4800 +5792 78999 0.6580 +5792 79414 0.7670 +5792 84631 0.6000 +5792 94030 0.9820 +5792 114798 0.6490 +5792 145581 0.7360 +5792 146760 0.6580 +5792 148362 0.4060 +5793 5795 0.4190 +5793 5803 0.4660 +5793 5805 0.7710 +5793 6125 0.4760 +5793 6135 0.4330 +5793 6900 0.6540 +5793 7064 0.4230 +5793 8405 0.4090 +5793 9333 0.4080 +5793 10752 0.6030 +5793 11122 0.4180 +5793 11236 0.4440 +5793 23105 0.5420 +5793 23114 0.5360 +5793 23212 0.4620 +5793 26018 0.5610 +5793 27255 0.9340 +5793 53942 0.6980 +5793 55003 0.4200 +5793 56884 0.5410 +5793 60681 0.4350 +5793 79663 0.4930 +5793 83743 0.4680 +5793 84154 0.5400 +5793 84181 0.4070 +5793 84925 0.4240 +5793 152185 0.4040 +5793 152330 0.9600 +5794 5805 0.8250 +5794 6748 0.4570 +5794 7071 0.4090 +5794 7348 0.4510 +5794 8468 0.4540 +5794 10256 0.4420 +5794 23074 0.4310 +5794 55668 0.4570 +5794 79973 0.4330 +5795 5805 0.8300 +5795 6383 0.7880 +5795 6386 0.4330 +5795 6714 0.5290 +5795 6850 0.4510 +5795 7010 0.5750 +5795 7057 0.8160 +5795 7058 0.4640 +5795 8801 0.5030 +5795 8819 0.7790 +5795 9611 0.4110 +5795 11314 0.4420 +5795 23178 0.4170 +5795 27040 0.4050 +5795 64426 0.5840 +5795 64581 0.5500 +5795 80739 0.4120 +5795 84868 0.5080 +5795 200958 0.4340 +5795 284194 0.5100 +5795 654346 0.5090 +5796 5805 0.6230 +5796 6233 0.4030 +5796 7039 0.4190 +5796 7294 0.4480 +5796 7311 0.4170 +5796 7314 0.4500 +5796 7316 0.4020 +5796 8317 0.4300 +5796 9729 0.4320 +5796 10000 0.4200 +5796 10076 0.5560 +5796 10112 0.4550 +5796 10298 0.4690 +5796 23607 0.4380 +5796 51322 0.4140 +5796 54894 0.4840 +5796 55366 0.4180 +5796 79882 0.4250 +5796 80144 0.4710 +5796 84133 0.4440 +5796 84451 0.7480 +5796 84870 0.7010 +5796 85366 0.6920 +5796 89780 0.4260 +5796 92344 0.5310 +5796 112802 0.4800 +5796 149420 0.7400 +5796 255394 0.4020 +5796 284654 0.4500 +5796 340419 0.7900 +5796 387357 0.5100 +5797 5805 0.5880 +5797 6302 0.4230 +5797 6792 0.6390 +5797 8412 0.4370 +5797 10399 0.5990 +5797 22885 0.4920 +5797 92154 0.4280 +5797 256691 0.5150 +5797 266727 0.5060 +5797 339291 0.5280 +5797 374462 0.4930 +5797 646643 0.6200 +5798 5799 0.9420 +5798 5802 0.4080 +5798 5805 0.6160 +5798 5864 0.4900 +5798 6447 0.4950 +5798 6616 0.4360 +5798 6645 0.6690 +5798 6833 0.4410 +5798 6860 0.4230 +5798 7038 0.5670 +5798 7052 0.4170 +5798 7102 0.4700 +5798 7173 0.5840 +5798 7402 0.6680 +5798 7941 0.6010 +5798 8718 0.6600 +5798 8797 0.6210 +5798 9479 0.9100 +5798 9580 0.4060 +5798 9905 0.6300 +5798 10019 0.4550 +5798 11122 0.4520 +5798 23274 0.4570 +5798 23542 0.5620 +5798 51738 0.5570 +5798 55317 0.4910 +5798 55340 0.4120 +5798 55532 0.9320 +5798 57731 0.6950 +5798 57818 0.5170 +5798 60468 0.4990 +5798 80018 0.4220 +5798 84684 0.7890 +5798 114904 0.4630 +5798 117289 0.4360 +5798 126206 0.6150 +5798 169026 0.9650 +5798 399979 0.6440 +5798 619373 0.5000 +5799 5805 0.6710 +5799 5873 0.4140 +5799 5914 0.4310 +5799 6272 0.5230 +5799 6447 0.4530 +5799 6659 0.5980 +5799 6844 0.4020 +5799 6860 0.4270 +5799 8379 0.4600 +5799 9759 0.4560 +5799 9905 0.6440 +5799 10461 0.5850 +5799 23236 0.6280 +5799 29106 0.4490 +5799 51738 0.6910 +5799 54828 0.4180 +5799 55112 0.4550 +5799 55317 0.5860 +5799 55532 0.5870 +5799 55966 0.5110 +5799 57488 0.4400 +5799 57731 0.6940 +5799 83902 0.4960 +5799 90416 0.4280 +5799 146754 0.4230 +5799 169026 0.5800 +5799 202151 0.4720 +5799 342898 0.4030 +5799 619373 0.6260 +5800 5805 0.6210 +5800 6629 0.4740 +5800 6772 0.4510 +5800 6850 0.5260 +5800 7225 0.4360 +5800 7490 0.5090 +5800 7827 0.6710 +5800 8542 0.4350 +5800 11346 0.6280 +5800 23607 0.5070 +5800 27235 0.4360 +5800 51004 0.4340 +5800 51196 0.5420 +5800 54622 0.4760 +5800 55243 0.4130 +5800 57107 0.4250 +5800 64423 0.5070 +5800 79934 0.4330 +5800 83478 0.4250 +5800 84631 0.5910 +5800 90167 0.4560 +5800 93659 0.4830 +5800 94027 0.5250 +5800 149345 0.5560 +5800 159989 0.4180 +5801 5805 0.8930 +5801 6197 0.4300 +5801 6300 0.9340 +5801 6776 0.4420 +5801 11266 0.6200 +5801 84867 0.9330 +5801 93594 0.4270 +5801 147948 0.4810 +5802 5803 0.5850 +5802 5805 0.8540 +5802 5979 0.4980 +5802 6382 0.5420 +5802 6513 0.5020 +5802 6714 0.4050 +5802 7305 0.4010 +5802 8495 0.8340 +5802 8496 0.8640 +5802 8497 0.6940 +5802 8499 0.8020 +5802 8500 0.9850 +5802 8541 0.8940 +5802 9037 0.4780 +5802 9378 0.7500 +5802 9379 0.6050 +5802 9564 0.5420 +5802 10082 0.4780 +5802 10330 0.5350 +5802 11141 0.8790 +5802 22829 0.4060 +5802 22854 0.4020 +5802 22865 0.6960 +5802 22871 0.5920 +5802 23085 0.4080 +5802 23162 0.5490 +5802 23426 0.5190 +5802 26045 0.5280 +5802 26050 0.5920 +5802 28964 0.5520 +5802 54413 0.4760 +5802 54935 0.4090 +5802 57142 0.7120 +5802 57453 0.4410 +5802 57497 0.4670 +5802 57502 0.4740 +5802 57513 0.5530 +5802 57555 0.5460 +5802 57622 0.7370 +5802 57689 0.6580 +5802 63827 0.5150 +5802 64101 0.6430 +5802 64359 0.4310 +5802 65078 0.6220 +5802 78999 0.9110 +5802 79414 0.7220 +5802 80059 0.8990 +5802 84631 0.8060 +5802 92906 0.4240 +5802 94030 0.9890 +5802 114798 0.9420 +5802 126326 0.5580 +5802 145581 0.8750 +5802 146760 0.8300 +5802 148066 0.8550 +5802 221914 0.5240 +5802 347730 0.4990 +5802 347731 0.6720 +5802 349667 0.5500 +5802 375790 0.9590 +5803 5805 0.7190 +5803 6326 0.5260 +5803 6382 0.7430 +5803 6641 0.4190 +5803 6657 0.5860 +5803 6750 0.4290 +5803 6900 0.7520 +5803 7099 0.5450 +5803 7143 0.4100 +5803 7157 0.5470 +5803 8506 0.8610 +5803 8777 0.4810 +5803 8817 0.4810 +5803 8822 0.4960 +5803 8823 0.4850 +5803 9283 0.5180 +5803 9672 0.5590 +5803 10215 0.4520 +5803 10675 0.6390 +5803 11170 0.6510 +5803 23114 0.7540 +5803 23178 0.4080 +5803 26281 0.4770 +5803 27006 0.4760 +5803 28964 0.7390 +5803 55327 0.4180 +5803 55333 0.4200 +5803 56729 0.4330 +5803 57120 0.4770 +5803 57348 0.4230 +5803 57453 0.4210 +5803 57502 0.4030 +5803 60484 0.7560 +5803 63827 0.9900 +5803 84525 0.5970 +5803 92737 0.4210 +5803 146433 0.9250 +5803 146664 0.5200 +5803 146760 0.4020 +5803 152330 0.6120 +5803 260425 0.5000 +5803 404037 0.4760 +5805 5860 0.8030 +5805 6697 0.9850 +5805 6714 0.8520 +5805 6772 0.4020 +5805 6774 0.4970 +5805 6777 0.4210 +5805 6815 0.4600 +5805 7054 0.5890 +5805 7166 0.5470 +5805 7295 0.4240 +5805 7297 0.4040 +5805 7430 0.5100 +5805 7803 0.8440 +5805 7957 0.4730 +5805 8073 0.8960 +5805 8556 0.5110 +5805 8644 0.9020 +5805 8651 0.4100 +5805 9051 0.9010 +5805 9200 0.7570 +5805 9564 0.4260 +5805 10076 0.8430 +5805 11099 0.8650 +5805 11122 0.7310 +5805 11156 0.5190 +5805 11221 0.4490 +5805 25930 0.8370 +5805 26095 0.4320 +5805 26191 0.6840 +5805 26469 0.6210 +5805 27035 0.4100 +5805 27229 0.4450 +5805 50507 0.4160 +5805 54935 0.5310 +5805 56940 0.4090 +5805 57016 0.9010 +5805 57136 0.4170 +5805 60491 0.4810 +5805 64359 0.4710 +5805 78986 0.4200 +5805 79587 0.5640 +5805 79691 0.4830 +5805 80824 0.4010 +5805 81890 0.4780 +5805 83875 0.4350 +5805 84867 0.8840 +5805 87178 0.4290 +5805 89782 0.5930 +5805 114822 0.4890 +5805 114971 0.4280 +5805 121793 0.4500 +5805 139065 0.4630 +5805 200895 0.5880 +5805 728340 0.5030 +5806 6347 0.6170 +5806 6401 0.4380 +5806 6403 0.9330 +5806 6441 0.4760 +5806 6696 0.4300 +5806 7057 0.5190 +5806 7076 0.4930 +5806 7097 0.5640 +5806 7098 0.4890 +5806 7099 0.4330 +5806 7124 0.5900 +5806 7130 0.9750 +5806 7412 0.4350 +5806 8547 0.5840 +5806 8817 0.6680 +5806 8822 0.8640 +5806 8823 0.6690 +5806 9518 0.4550 +5806 10584 0.4480 +5806 22914 0.4210 +5806 26281 0.6680 +5806 27006 0.6680 +5806 54106 0.4930 +5806 56729 0.4180 +5806 64581 0.4380 +5806 81494 0.9160 +5806 255725 0.4720 +5806 344558 0.4070 +5810 5883 0.9990 +5810 5884 0.9850 +5810 5888 0.8220 +5810 5889 0.7160 +5810 5890 0.9820 +5810 5892 0.7020 +5810 5893 0.6530 +5810 5932 0.5670 +5810 5981 0.5490 +5810 5982 0.9380 +5810 5983 0.9010 +5810 5984 0.9820 +5810 5985 0.9500 +5810 6117 0.8250 +5810 6118 0.7170 +5810 6119 0.5620 +5810 6541 0.7120 +5810 6574 0.8270 +5810 6996 0.4560 +5810 7156 0.5690 +5810 7157 0.5780 +5810 7158 0.7380 +5810 7486 0.7970 +5810 7516 0.5460 +5810 7517 0.4750 +5810 7541 0.8380 +5810 7979 0.5040 +5810 8914 0.4340 +5810 9057 0.5520 +5810 9156 0.7260 +5810 9319 0.4660 +5810 9401 0.4560 +5810 9780 0.5670 +5810 10111 0.5600 +5810 10524 0.5070 +5810 11073 0.8620 +5810 11144 0.5160 +5810 11200 0.7400 +5810 54962 0.6490 +5810 55536 0.8430 +5810 56852 0.4320 +5810 57082 0.4230 +5810 57697 0.4850 +5810 63895 0.5670 +5810 79706 0.4440 +5810 79915 0.5710 +5810 80010 0.5130 +5810 80198 0.4210 +5810 83695 0.9890 +5810 83990 0.6080 +5810 84126 0.6420 +5810 84250 0.4380 +5810 116028 0.5210 +5810 135458 0.9880 +5810 144715 0.9880 +5810 221184 0.4700 +5810 254528 0.5200 +5813 5814 0.7800 +5813 5888 0.6620 +5813 5905 0.5810 +5813 5982 0.5960 +5813 5983 0.6640 +5813 6130 0.4030 +5813 6426 0.6880 +5813 6427 0.6320 +5813 7073 0.4220 +5813 7337 0.4090 +5813 7520 0.5240 +5813 7555 0.4380 +5813 8087 0.8840 +5813 9188 0.4120 +5813 9513 0.8920 +5813 9584 0.6030 +5813 9987 0.4110 +5813 10146 0.4760 +5813 10150 0.5290 +5813 10189 0.7230 +5813 10657 0.6050 +5813 10658 0.7950 +5813 11091 0.4550 +5813 22849 0.4710 +5813 23191 0.4890 +5813 23196 0.5630 +5813 23212 0.4290 +5813 23435 0.7030 +5813 23521 0.4260 +5813 25921 0.4110 +5813 26986 0.4920 +5813 27161 0.4530 +5813 29102 0.4560 +5813 51574 0.6210 +5813 54487 0.5050 +5813 54675 0.5920 +5813 55796 0.4980 +5813 56257 0.4210 +5813 64397 0.5910 +5813 65981 0.4380 +5813 79158 0.8740 +5813 79968 0.5100 +5813 80315 0.4110 +5813 84271 0.7920 +5813 84515 0.8110 +5813 85437 0.6160 +5813 132864 0.4220 +5813 203228 0.6110 +5813 220988 0.7430 +5814 5983 0.6570 +5814 6187 0.4710 +5814 9969 0.5580 +5814 23060 0.4400 +5814 23212 0.4670 +5814 51574 0.6370 +5814 54726 0.4700 +5814 55553 0.8700 +5814 55810 0.4370 +5814 57532 0.4750 +5814 80232 0.4510 +5814 84271 0.7950 +5814 200014 0.4460 +5816 5957 0.4660 +5816 5999 0.4200 +5816 6096 0.4290 +5816 6261 0.5780 +5816 6271 0.6220 +5816 6277 0.6380 +5816 6285 0.6620 +5816 6323 0.7980 +5816 6326 0.5150 +5816 6334 0.7410 +5816 6336 0.4060 +5816 6469 0.4140 +5816 6506 0.4690 +5816 6507 0.4380 +5816 6529 0.8100 +5816 6531 0.4820 +5816 6532 0.4150 +5816 6538 0.4110 +5816 6540 0.4150 +5816 6558 0.5100 +5816 6572 0.4850 +5816 6616 0.5030 +5816 6622 0.4390 +5816 6720 0.4330 +5816 6750 0.9370 +5816 6853 0.6980 +5816 6854 0.6420 +5816 6855 0.6940 +5816 6857 0.4770 +5816 6863 0.6170 +5816 6869 0.4250 +5816 6900 0.4170 +5816 7054 0.7940 +5816 7070 0.5120 +5816 7080 0.6270 +5816 7125 0.4160 +5816 7136 0.5360 +5816 7257 0.4160 +5816 7432 0.7900 +5816 7442 0.4910 +5816 7837 0.5900 +5816 8224 0.5930 +5816 8320 0.4420 +5816 8557 0.4330 +5816 8573 0.4550 +5816 8911 0.4450 +5816 9152 0.4450 +5816 9378 0.5140 +5816 9379 0.5020 +5816 9456 0.4080 +5816 9542 0.7000 +5816 10215 0.7290 +5816 10243 0.7670 +5816 10371 0.4110 +5816 10590 0.5110 +5816 10716 0.6420 +5816 10718 0.6230 +5816 10763 0.6570 +5816 11020 0.5030 +5816 22871 0.4450 +5816 22941 0.4060 +5816 23237 0.4120 +5816 23314 0.4520 +5816 23316 0.4030 +5816 23467 0.4190 +5816 24141 0.4360 +5816 26047 0.5090 +5816 26137 0.4270 +5816 26468 0.7640 +5816 27035 0.4280 +5816 27185 0.7960 +5816 27286 0.5830 +5816 29895 0.4570 +5816 50944 0.4500 +5816 51083 0.6280 +5816 51806 0.7750 +5816 54413 0.5440 +5816 55188 0.6380 +5816 55553 0.4050 +5816 57030 0.8060 +5816 57084 0.7650 +5816 57369 0.4530 +5816 57468 0.6530 +5816 57502 0.4370 +5816 57555 0.5630 +5816 58529 0.4120 +5816 63827 0.6530 +5816 64072 0.4810 +5816 64919 0.5220 +5816 66004 0.5100 +5816 84152 0.6360 +5816 85358 0.5410 +5816 85366 0.4450 +5816 91860 0.7760 +5816 93986 0.4690 +5816 116443 0.4340 +5816 116448 0.4210 +5816 127833 0.6300 +5816 132204 0.4900 +5816 137902 0.5900 +5816 140679 0.8120 +5816 145957 0.6640 +5816 146713 0.8010 +5816 163688 0.7740 +5816 164633 0.4050 +5816 170825 0.4260 +5816 221833 0.4210 +5816 222236 0.4750 +5816 246213 0.6140 +5816 266743 0.4590 +5816 392617 0.4090 +5816 404037 0.6090 +5816 431707 0.4520 +5817 5818 0.7060 +5817 5819 0.6530 +5817 6504 0.6850 +5817 6993 0.8610 +5817 7087 0.4530 +5817 7124 0.4180 +5817 7284 0.6320 +5817 7293 0.6190 +5817 7305 0.5570 +5817 7448 0.6710 +5817 8744 0.4990 +5817 8764 0.5420 +5817 9436 0.6200 +5817 9437 0.8220 +5817 9804 0.5270 +5817 9868 0.4420 +5817 10225 0.9990 +5817 10452 0.4500 +5817 10469 0.4680 +5817 10666 0.9990 +5817 10859 0.4460 +5817 10870 0.4180 +5817 10989 0.4180 +5817 11065 0.5050 +5817 11331 0.4120 +5817 22914 0.9300 +5817 23705 0.5530 +5817 25813 0.8260 +5817 25945 0.9900 +5817 26517 0.4500 +5817 26519 0.4610 +5817 27036 0.6040 +5817 29126 0.6300 +5817 29851 0.7620 +5817 50937 0.4140 +5817 51330 0.5840 +5817 51348 0.4670 +5817 51678 0.5970 +5817 51744 0.4140 +5817 54543 0.7450 +5817 56253 0.5580 +5817 56971 0.5050 +5817 56993 0.8520 +5817 79037 0.7790 +5817 79465 0.7390 +5817 80328 0.7240 +5817 80329 0.7220 +5817 80380 0.6530 +5817 80381 0.7340 +5817 84868 0.8820 +5817 92609 0.6370 +5817 114836 0.7410 +5817 135250 0.4480 +5817 151888 0.4770 +5817 201633 0.9990 +5817 259197 0.9380 +5817 284194 0.5900 +5817 345778 0.6400 +5817 353091 0.4160 +5817 374383 0.7550 +5817 387990 0.5270 +5817 654346 0.5890 +5817 100287932 0.4720 +5818 5819 0.9560 +5818 5993 0.4670 +5818 6386 0.4830 +5818 6615 0.4380 +5818 6868 0.4430 +5818 7043 0.5010 +5818 7082 0.6180 +5818 8626 0.4590 +5818 8764 0.8870 +5818 9094 0.5710 +5818 9181 0.4780 +5818 9414 0.4080 +5818 10225 0.9920 +5818 10580 0.6670 +5818 10666 0.9920 +5818 10804 0.5140 +5818 10809 0.4430 +5818 10913 0.5120 +5818 22871 0.4590 +5818 22914 0.5880 +5818 23499 0.4750 +5818 23705 0.6110 +5818 25945 0.9970 +5818 27134 0.4080 +5818 27254 0.4300 +5818 29990 0.4530 +5818 29992 0.6460 +5818 30816 0.8250 +5818 50848 0.7070 +5818 50945 0.4450 +5818 51474 0.4910 +5818 51678 0.6290 +5818 53827 0.4260 +5818 56034 0.5490 +5818 56253 0.7320 +5818 56288 0.9760 +5818 57555 0.4210 +5818 57863 0.9570 +5818 58494 0.5990 +5818 64398 0.4460 +5818 79037 0.7300 +5818 81607 0.9860 +5818 83700 0.4170 +5818 91624 0.6120 +5818 94025 0.4570 +5818 122786 0.4750 +5818 146722 0.4250 +5818 201633 0.9780 +5818 405754 0.4280 +5818 100506658 0.6610 +5819 6382 0.4790 +5819 6653 0.5230 +5819 6714 0.4070 +5819 7293 0.5970 +5819 7414 0.4540 +5819 8519 0.4030 +5819 8764 0.8220 +5819 9436 0.6210 +5819 9437 0.8520 +5819 10225 0.9990 +5819 10452 0.8950 +5819 10580 0.5420 +5819 10666 0.9990 +5819 10859 0.4480 +5819 22914 0.9800 +5819 25771 0.4140 +5819 25945 0.9990 +5819 28514 0.4080 +5819 29126 0.5510 +5819 29851 0.5520 +5819 29990 0.4370 +5819 29992 0.5430 +5819 50848 0.7760 +5819 51330 0.5580 +5819 51348 0.4750 +5819 51474 0.4320 +5819 51678 0.5720 +5819 51744 0.4310 +5819 56253 0.9250 +5819 56288 0.9150 +5819 58494 0.5450 +5819 64115 0.4840 +5819 79037 0.9930 +5819 79465 0.6930 +5819 80328 0.7180 +5819 80329 0.7400 +5819 80380 0.5060 +5819 80381 0.5180 +5819 81607 0.9330 +5819 83700 0.4930 +5819 84868 0.8090 +5819 114836 0.6980 +5819 135250 0.5210 +5819 151888 0.6280 +5819 201633 0.9990 +5819 259197 0.9590 +5819 284194 0.5180 +5819 374383 0.7740 +5819 654346 0.5160 +5822 6122 0.8090 +5822 6123 0.7830 +5822 6124 0.7980 +5822 6129 0.6560 +5822 6130 0.4440 +5822 6175 0.4410 +5822 6183 0.6330 +5822 6187 0.5580 +5822 6189 0.9810 +5822 6191 0.9200 +5822 6192 0.6130 +5822 6193 0.9830 +5822 6194 0.9830 +5822 6201 0.9830 +5822 6202 0.9820 +5822 6203 0.9880 +5822 6205 0.9810 +5822 6206 0.9080 +5822 6207 0.9830 +5822 6208 0.9710 +5822 6210 0.9480 +5822 6217 0.9790 +5822 6218 0.8170 +5822 6222 0.9530 +5822 6223 0.9710 +5822 6228 0.9790 +5822 6229 0.9740 +5822 6232 0.9510 +5822 6233 0.8910 +5822 6234 0.9730 +5822 6838 0.7520 +5822 7109 0.9400 +5822 7520 0.5510 +5822 8568 0.7850 +5822 8602 0.9940 +5822 8634 0.8420 +5822 8833 0.5650 +5822 8886 0.9770 +5822 9136 0.9990 +5822 9188 0.4280 +5822 9221 0.5070 +5822 9277 0.9980 +5822 9533 0.5830 +5822 9704 0.4530 +5822 9724 0.9350 +5822 9732 0.4100 +5822 9790 0.9980 +5822 9875 0.7920 +5822 9904 0.8850 +5822 9933 0.6910 +5822 10153 0.8570 +5822 10171 0.9970 +5822 10199 0.9990 +5822 10200 0.6020 +5822 10237 0.7870 +5822 10436 0.9940 +5822 10438 0.6750 +5822 10514 0.8840 +5822 10528 0.9970 +5822 10557 0.6580 +5822 10607 0.9990 +5822 10785 0.7190 +5822 10813 0.9950 +5822 10885 0.9990 +5822 10969 0.5200 +5822 11056 0.8280 +5822 11103 0.9950 +5822 11128 0.7600 +5822 11137 0.8680 +5822 11180 0.4550 +5822 11222 0.5250 +5822 11340 0.7100 +5822 22803 0.5100 +5822 22894 0.5300 +5822 22984 0.9970 +5822 23016 0.7430 +5822 23054 0.7680 +5822 23076 0.7160 +5822 23160 0.9990 +5822 23195 0.6340 +5822 23204 0.5660 +5822 23212 0.7300 +5822 23223 0.9860 +5822 23246 0.9340 +5822 23378 0.5880 +5822 23404 0.7090 +5822 23476 0.5160 +5822 23481 0.9190 +5822 23517 0.9220 +5822 23560 0.8530 +5822 24140 0.4270 +5822 25879 0.9950 +5822 25885 0.8400 +5822 25926 0.9150 +5822 25983 0.9950 +5822 26155 0.9340 +5822 26156 0.9820 +5822 26168 0.6330 +5822 26354 0.7490 +5822 26574 0.9840 +5822 26995 0.4990 +5822 27037 0.4140 +5822 27042 0.9280 +5822 27043 0.5780 +5822 27292 0.9900 +5822 27340 0.9980 +5822 27341 0.9960 +5822 28987 0.8620 +5822 29777 0.7130 +5822 29889 0.8010 +5822 29997 0.4560 +5822 30834 0.4660 +5822 30836 0.9840 +5822 51010 0.6800 +5822 51013 0.7870 +5822 51018 0.5640 +5822 51065 0.7140 +5822 51068 0.7880 +5822 51073 0.5780 +5822 51077 0.9910 +5822 51081 0.5590 +5822 51096 0.9990 +5822 51106 0.6730 +5822 51118 0.9930 +5822 51149 0.7580 +5822 51154 0.8920 +5822 51187 0.6360 +5822 51202 0.6430 +5822 51236 0.6160 +5822 51319 0.4150 +5822 51388 0.8790 +5822 51406 0.8040 +5822 51490 0.4210 +5822 51575 0.8150 +5822 51602 0.9980 +5822 51605 0.4070 +5822 54433 0.5680 +5822 54475 0.6980 +5822 54512 0.7530 +5822 54552 0.7460 +5822 54555 0.7830 +5822 54606 0.7530 +5822 54663 0.8140 +5822 54700 0.4650 +5822 54853 0.4280 +5822 54859 0.4690 +5822 54865 0.4830 +5822 54881 0.7250 +5822 54888 0.4820 +5822 54984 0.5920 +5822 55003 0.4800 +5822 55006 0.6620 +5822 55127 0.9990 +5822 55131 0.7760 +5822 55140 0.5350 +5822 55153 0.8250 +5822 55226 0.9970 +5822 55239 0.4560 +5822 55272 0.9940 +5822 55299 0.6650 +5822 55341 0.8240 +5822 55505 0.5090 +5822 55621 0.5320 +5822 55622 0.8300 +5822 55646 0.4270 +5822 55651 0.6700 +5822 55695 0.4240 +5822 55703 0.7210 +5822 55720 0.8920 +5822 55759 0.9370 +5822 55760 0.6590 +5822 55781 0.6700 +5822 55794 0.4880 +5822 55813 0.9990 +5822 56342 0.6720 +5822 56474 0.4180 +5822 56902 0.9670 +5822 56915 0.7350 +5822 56919 0.4860 +5822 57050 0.9970 +5822 57062 0.7740 +5822 57418 0.8980 +5822 57647 0.9100 +5822 57696 0.6260 +5822 60487 0.5970 +5822 60528 0.6140 +5822 60625 0.4570 +5822 64118 0.4130 +5822 64216 0.9030 +5822 64318 0.7500 +5822 64425 0.6780 +5822 64434 0.6280 +5822 64794 0.7380 +5822 64960 0.5620 +5822 64963 0.5350 +5822 65083 0.9990 +5822 65095 0.8610 +5822 79039 0.7370 +5822 79050 0.9970 +5822 79159 0.5920 +5822 79571 0.7700 +5822 79707 0.6440 +5822 79711 0.6270 +5822 79954 0.9960 +5822 80135 0.6170 +5822 80324 0.5720 +5822 81627 0.4480 +5822 81887 0.6520 +5822 83480 0.5220 +5822 83732 0.5040 +5822 83743 0.8880 +5822 84128 0.9980 +5822 84135 0.9960 +5822 84154 0.8440 +5822 84172 0.8720 +5822 84273 0.4060 +5822 84294 0.7720 +5822 84365 0.5660 +5822 84549 0.4240 +5822 84916 0.9990 +5822 84946 0.6540 +5822 85395 0.4160 +5822 85441 0.4190 +5822 88745 0.7480 +5822 90121 0.4060 +5822 90381 0.5770 +5822 91582 0.8060 +5822 92170 0.4160 +5822 92856 0.9950 +5822 115708 0.8120 +5822 115752 0.4550 +5822 116966 0.5840 +5822 117246 0.9030 +5822 118460 0.6100 +5822 124454 0.4290 +5822 126402 0.5500 +5822 128061 0.8080 +5822 129563 0.4620 +5822 138716 0.4510 +5822 140032 0.5850 +5822 142940 0.4420 +5822 146212 0.7980 +5822 153443 0.8580 +5822 155368 0.5010 +5822 161424 0.7460 +5822 165545 0.6590 +5822 221078 0.7060 +5822 221830 0.6440 +5822 285855 0.6400 +5822 317781 0.4010 +5822 345630 0.9460 +5822 387129 0.6320 +5822 641776 0.4260 +5822 643909 0.4260 +5822 692312 0.6060 +5822 728524 0.4260 +5822 100505478 0.6080 +5822 100996746 0.4260 +5822 105180390 0.4260 +5822 105180391 0.4260 +5824 5825 0.9910 +5824 5826 0.4290 +5824 5827 0.9160 +5824 5828 0.9890 +5824 5830 0.9590 +5824 7249 0.6230 +5824 7415 0.5490 +5824 7485 0.5050 +5824 8309 0.4260 +5824 8310 0.7630 +5824 8443 0.8410 +5824 8504 0.9990 +5824 8540 0.8520 +5824 8799 0.9960 +5824 8800 0.9170 +5824 9194 0.4850 +5824 9409 0.9990 +5824 9804 0.6310 +5824 10005 0.4840 +5824 10059 0.5270 +5824 10478 0.9360 +5824 10575 0.9590 +5824 11145 0.5500 +5824 11231 0.5340 +5824 11264 0.8990 +5824 23197 0.8420 +5824 29927 0.5560 +5824 51024 0.8480 +5824 51170 0.5230 +5824 51555 0.9000 +5824 51561 0.5440 +5824 54332 0.6960 +5824 54708 0.4260 +5824 54814 0.4470 +5824 54996 0.4710 +5824 55140 0.4500 +5824 55288 0.6490 +5824 55670 0.9880 +5824 55711 0.4320 +5824 56947 0.5400 +5824 79594 0.4190 +5824 84140 0.8520 +5824 84188 0.5520 +5824 84896 0.7410 +5824 91452 0.7510 +5824 92960 0.8160 +5824 123169 0.4510 +5824 192286 0.4310 +5824 196394 0.4070 +5824 219743 0.5510 +5824 222234 0.6030 +5824 337867 0.6580 +5825 5827 0.7270 +5825 5828 0.9210 +5825 5830 0.9060 +5825 5888 0.9580 +5825 5890 0.5380 +5825 5892 0.5380 +5825 6342 0.7710 +5825 8309 0.4820 +5825 8310 0.7590 +5825 8443 0.6350 +5825 8504 0.9420 +5825 8540 0.5870 +5825 8799 0.8670 +5825 8800 0.7040 +5825 8826 0.4080 +5825 8878 0.5530 +5825 9409 0.9370 +5825 9804 0.7700 +5825 10005 0.4090 +5825 10059 0.4100 +5825 10134 0.5940 +5825 10455 0.4600 +5825 10478 0.7980 +5825 11001 0.8000 +5825 11113 0.5570 +5825 11264 0.7170 +5825 23205 0.8170 +5825 23305 0.6720 +5825 51024 0.7200 +5825 51555 0.5760 +5825 51703 0.6850 +5825 54332 0.6090 +5825 54708 0.4650 +5825 55670 0.7500 +5825 56947 0.4030 +5825 80347 0.5900 +5825 81624 0.4010 +5825 83752 0.4670 +5825 84188 0.4090 +5825 84263 0.5000 +5825 84749 0.4730 +5825 84896 0.6430 +5825 84955 0.6220 +5825 91010 0.4090 +5825 91452 0.7710 +5825 92960 0.4300 +5825 128239 0.4060 +5825 132949 0.4590 +5825 219743 0.4280 +5825 283927 0.4020 +5826 5888 0.8540 +5826 5890 0.5420 +5826 5892 0.5700 +5826 6059 0.5390 +5826 6342 0.5520 +5826 6548 0.7250 +5826 6564 0.4310 +5826 6833 0.6660 +5826 6890 0.4910 +5826 6947 0.4790 +5826 6948 0.5400 +5826 8029 0.4290 +5826 8799 0.4110 +5826 9870 0.4280 +5826 10057 0.4020 +5826 10058 0.9430 +5826 10060 0.6840 +5826 10061 0.5970 +5826 10134 0.5480 +5826 10347 0.4900 +5826 10350 0.4430 +5826 10560 0.4770 +5826 10725 0.4280 +5826 11001 0.7510 +5826 11194 0.8020 +5826 23205 0.8290 +5826 23457 0.5820 +5826 23460 0.4150 +5826 23461 0.6110 +5826 25974 0.7350 +5826 26154 0.5530 +5826 27249 0.7140 +5826 51004 0.4320 +5826 51293 0.6000 +5826 55237 0.6500 +5826 55244 0.4120 +5826 55315 0.4470 +5826 55324 0.6650 +5826 55788 0.9900 +5826 64137 0.4770 +5826 64240 0.9410 +5826 64241 0.9400 +5826 80347 0.5450 +5826 81693 0.4330 +5826 85413 0.4230 +5826 132949 0.4470 +5826 154664 0.5790 +5826 166785 0.5710 +5826 197322 0.4040 +5826 283652 0.4030 +5826 326625 0.6250 +5826 114483834 0.6230 +5827 5828 0.5910 +5827 5830 0.4810 +5827 8504 0.7320 +5827 8540 0.4120 +5827 8799 0.8400 +5827 8800 0.6640 +5827 9409 0.8060 +5827 10455 0.4080 +5827 10478 0.7450 +5827 11264 0.7800 +5827 29903 0.4600 +5827 29907 0.4820 +5827 51024 0.6020 +5827 54332 0.5260 +5827 54363 0.4840 +5827 54996 0.4170 +5827 55670 0.6260 +5827 65084 0.4720 +5827 83594 0.4590 +5827 84896 0.6400 +5827 91452 0.7580 +5827 92960 0.5580 +5827 373156 0.4280 +5828 5830 0.9920 +5828 6233 0.5010 +5828 6342 0.7100 +5828 6749 0.5430 +5828 6827 0.9020 +5828 6829 0.9000 +5828 6830 0.5400 +5828 6919 0.9000 +5828 6921 0.9080 +5828 6923 0.9000 +5828 6924 0.9000 +5828 7257 0.4390 +5828 7311 0.4990 +5828 7314 0.4990 +5828 7316 0.4990 +5828 7319 0.4380 +5828 7320 0.4070 +5828 7321 0.7060 +5828 7322 0.8230 +5828 7323 0.6920 +5828 7469 0.9000 +5828 7936 0.9000 +5828 8178 0.9030 +5828 8239 0.5760 +5828 8309 0.5530 +5828 8310 0.7940 +5828 8443 0.8620 +5828 8458 0.7240 +5828 8504 0.9790 +5828 8528 0.5270 +5828 8540 0.8760 +5828 8621 0.5430 +5828 8799 0.9670 +5828 8800 0.8160 +5828 8812 0.5400 +5828 9409 0.9620 +5828 9453 0.4800 +5828 9512 0.4350 +5828 9646 0.9050 +5828 10005 0.5590 +5828 10455 0.5770 +5828 10478 0.7340 +5828 10901 0.5130 +5828 10965 0.5050 +5828 11001 0.5360 +5828 11198 0.5490 +5828 11264 0.5900 +5828 22936 0.9000 +5828 23168 0.9000 +5828 23379 0.9010 +5828 23417 0.5000 +5828 23600 0.5380 +5828 25920 0.9000 +5828 26061 0.6310 +5828 26063 0.5690 +5828 26610 0.9270 +5828 26747 0.7790 +5828 27125 0.9000 +5828 27300 0.4380 +5828 51024 0.6000 +5828 51115 0.4930 +5828 51179 0.5020 +5828 51268 0.5340 +5828 51497 0.9030 +5828 51555 0.8690 +5828 51755 0.5400 +5828 54332 0.5260 +5828 54363 0.5020 +5828 54469 0.5580 +5828 54623 0.9000 +5828 54677 0.6370 +5828 55209 0.4910 +5828 55250 0.7350 +5828 55670 0.9580 +5828 55825 0.5040 +5828 55840 0.9000 +5828 79577 0.9040 +5828 79664 0.9120 +5828 80237 0.9000 +5828 80349 0.9110 +5828 83752 0.5900 +5828 84337 0.5430 +5828 84524 0.9000 +5828 84896 0.5760 +5828 85403 0.9000 +5828 91452 0.6530 +5828 92960 0.5160 +5828 122970 0.5050 +5828 123169 0.9020 +5828 196743 0.5450 +5828 219743 0.5370 +5828 222234 0.6280 +5828 283927 0.5090 +5828 285282 0.4070 +5828 373156 0.5400 +5828 390916 0.5220 +5829 5876 0.4240 +5829 5877 0.5760 +5829 5879 0.7150 +5829 5880 0.4950 +5829 5921 0.9590 +5829 5955 0.5440 +5829 5962 0.5780 +5829 6048 0.4700 +5829 6093 0.5280 +5829 6251 0.6000 +5829 6385 0.5940 +5829 6401 0.5220 +5829 6402 0.5060 +5829 6461 0.5700 +5829 6464 0.8830 +5829 6615 0.4340 +5829 6624 0.4100 +5829 6654 0.5770 +5829 6711 0.4310 +5829 6714 0.9990 +5829 6774 0.7730 +5829 6801 0.4040 +5829 6850 0.6420 +5829 6910 0.4120 +5829 7039 0.5970 +5829 7040 0.4250 +5829 7041 0.5280 +5829 7057 0.5170 +5829 7074 0.4940 +5829 7082 0.5060 +5829 7094 0.9990 +5829 7145 0.6760 +5829 7157 0.6870 +5829 7168 0.6120 +5829 7169 0.6190 +5829 7170 0.5720 +5829 7171 0.5650 +5829 7205 0.5270 +5829 7337 0.4940 +5829 7345 0.4480 +5829 7408 0.9710 +5829 7409 0.6360 +5829 7410 0.4540 +5829 7412 0.4170 +5829 7414 0.9990 +5829 7430 0.8500 +5829 7448 0.6160 +5829 7454 0.7500 +5829 7490 0.4230 +5829 7525 0.4250 +5829 7535 0.6010 +5829 7791 0.9920 +5829 7837 0.4930 +5829 8022 0.4040 +5829 8440 0.6350 +5829 8500 0.5640 +5829 8541 0.4940 +5829 8826 0.5450 +5829 8844 0.5870 +5829 8853 0.8360 +5829 8874 0.9720 +5829 8935 0.5070 +5829 8936 0.6140 +5829 8976 0.6140 +5829 8988 0.4750 +5829 9050 0.4620 +5829 9051 0.7140 +5829 9146 0.4070 +5829 9181 0.8310 +5829 9261 0.5080 +5829 9270 0.4420 +5829 9368 0.4990 +5829 9404 0.4160 +5829 9451 0.5230 +5829 9459 0.9740 +5829 9564 0.9990 +5829 9644 0.5750 +5829 9815 0.9990 +5829 9844 0.5850 +5829 10006 0.6390 +5829 10013 0.4510 +5829 10097 0.4630 +5829 10152 0.5440 +5829 10163 0.6990 +5829 10174 0.9260 +5829 10298 0.5910 +5829 10395 0.6540 +5829 10398 0.7320 +5829 10458 0.6110 +5829 10529 0.5400 +5829 10580 0.9410 +5829 10627 0.6440 +5829 10787 0.5590 +5829 10810 0.5250 +5829 10979 0.9800 +5829 11034 0.4450 +5829 11122 0.4300 +5829 11235 0.9610 +5829 11340 0.4870 +5829 23189 0.6430 +5829 23191 0.5500 +5829 23336 0.4910 +5829 23371 0.6600 +5829 23396 0.4810 +5829 23683 0.5720 +5829 25802 0.5330 +5829 25959 0.5610 +5829 26499 0.4510 +5829 26509 0.4460 +5829 26548 0.5290 +5829 26986 0.6320 +5829 26999 0.5070 +5829 27231 0.6190 +5829 28964 0.9990 +5829 29780 0.9960 +5829 29895 0.5790 +5829 50507 0.4690 +5829 50807 0.9130 +5829 51474 0.5920 +5829 51493 0.5460 +5829 51806 0.5460 +5829 54434 0.5510 +5829 54458 0.4030 +5829 54518 0.6930 +5829 54538 0.8600 +5829 54981 0.5780 +5829 55612 0.4670 +5829 55620 0.4670 +5829 55742 0.9990 +5829 55770 0.5300 +5829 55824 0.6470 +5829 55845 0.5440 +5829 55914 0.4420 +5829 57521 0.5150 +5829 58480 0.5270 +5829 58498 0.6080 +5829 63916 0.5510 +5829 64083 0.4180 +5829 64098 0.9410 +5829 64223 0.5380 +5829 64283 0.6380 +5829 64759 0.7330 +5829 79633 0.4310 +5829 81565 0.5900 +5829 81631 0.8570 +5829 83605 0.4590 +5829 83660 0.9990 +5829 83706 0.7970 +5829 84106 0.4340 +5829 84292 0.4400 +5829 84309 0.5690 +5829 84951 0.6170 +5829 85477 0.8400 +5829 89870 0.6300 +5829 91860 0.5210 +5829 93408 0.5470 +5829 94274 0.4430 +5829 103910 0.7260 +5829 130271 0.4310 +5829 133482 0.4180 +5829 137902 0.4900 +5829 140465 0.5930 +5829 163688 0.5210 +5829 253260 0.7300 +5829 255324 0.5070 +5829 285590 0.4420 +5830 6233 0.6630 +5830 6342 0.9890 +5830 7167 0.4750 +5830 7265 0.7030 +5830 7266 0.5330 +5830 7311 0.5130 +5830 7314 0.5770 +5830 7316 0.5870 +5830 7321 0.7160 +5830 7322 0.7460 +5830 7323 0.6450 +5830 7415 0.4200 +5830 8239 0.7500 +5830 8309 0.9030 +5830 8310 0.9400 +5830 8408 0.4470 +5830 8443 0.9040 +5830 8504 0.9600 +5830 8528 0.6970 +5830 8540 0.9660 +5830 8799 0.9320 +5830 8800 0.8450 +5830 8878 0.9430 +5830 9099 0.4040 +5830 9409 0.9600 +5830 9746 0.4950 +5830 9804 0.4980 +5830 10005 0.8680 +5830 10059 0.4220 +5830 10449 0.6620 +5830 10455 0.8600 +5830 10478 0.6450 +5830 10533 0.4770 +5830 10654 0.7530 +5830 10901 0.7730 +5830 10965 0.5610 +5830 11001 0.5680 +5830 23078 0.4780 +5830 23417 0.5820 +5830 23600 0.6670 +5830 23710 0.4300 +5830 25824 0.4010 +5830 26061 0.9680 +5830 26063 0.7990 +5830 27306 0.4050 +5830 51024 0.5020 +5830 51179 0.5970 +5830 51268 0.6430 +5830 51555 0.9230 +5830 54363 0.6120 +5830 54469 0.6960 +5830 54677 0.6410 +5830 55288 0.4020 +5830 55670 0.9780 +5830 55825 0.8380 +5830 64902 0.6280 +5830 65985 0.4160 +5830 81631 0.5900 +5830 83752 0.8830 +5830 84129 0.6290 +5830 84188 0.4900 +5830 84263 0.6540 +5830 84749 0.7270 +5830 91452 0.7200 +5830 92960 0.7030 +5830 122970 0.6770 +5830 196743 0.5950 +5830 219743 0.8910 +5830 222234 0.7290 +5830 283927 0.5950 +5830 284273 0.6230 +5830 373156 0.8160 +5830 390916 0.5710 +5831 5832 0.9820 +5831 6470 0.4210 +5831 6472 0.5690 +5831 6510 0.4060 +5831 6611 0.4470 +5831 6723 0.4920 +5831 6829 0.4310 +5831 6917 0.4690 +5831 7223 0.4930 +5831 7224 0.4610 +5831 8192 0.4670 +5831 8411 0.4240 +5831 8659 0.9800 +5831 8697 0.5380 +5831 8833 0.4060 +5831 8974 0.9190 +5831 9150 0.5680 +5831 9507 0.5150 +5831 9509 0.6250 +5831 10516 0.6930 +5831 10606 0.4280 +5831 10797 0.4890 +5831 10979 0.6040 +5831 11164 0.8480 +5831 11315 0.4700 +5831 23008 0.4770 +5831 23545 0.8090 +5831 26227 0.4890 +5831 29101 0.6130 +5831 29882 0.4720 +5831 29920 0.9900 +5831 29945 0.4100 +5831 29968 0.5960 +5831 30008 0.7790 +5831 51056 0.9020 +5831 51585 0.9170 +5831 54453 0.4320 +5831 57113 0.5080 +5831 58510 0.9180 +5831 65263 0.9840 +5831 79072 0.4720 +5831 79156 0.6660 +5831 79689 0.6480 +5831 79871 0.4520 +5831 81559 0.6690 +5831 84706 0.4900 +5831 92344 0.8230 +5831 112849 0.6510 +5831 113451 0.4370 +5831 119504 0.4560 +5831 162417 0.4410 +5831 220064 0.7570 +5831 261729 0.6490 +5832 5859 0.4880 +5832 5888 0.4130 +5832 5982 0.4510 +5832 5983 0.4040 +5832 5984 0.4320 +5832 6170 0.4750 +5832 6342 0.4430 +5832 6389 0.4560 +5832 6470 0.6370 +5832 6472 0.8040 +5832 6510 0.4790 +5832 6519 0.4040 +5832 6520 0.4580 +5832 6523 0.4920 +5832 6524 0.4240 +5832 6527 0.4140 +5832 6548 0.4230 +5832 6549 0.4230 +5832 6550 0.4230 +5832 6553 0.4230 +5832 6611 0.5450 +5832 6652 0.4360 +5832 6683 0.7650 +5832 6687 0.5760 +5832 6713 0.4880 +5832 6723 0.6140 +5832 6790 0.4340 +5832 6888 0.5790 +5832 6898 0.5770 +5832 7086 0.5880 +5832 7099 0.5180 +5832 7124 0.4160 +5832 7153 0.4530 +5832 7155 0.4310 +5832 7167 0.5310 +5832 7203 0.4430 +5832 7296 0.4240 +5832 7298 0.6000 +5832 7357 0.4400 +5832 7371 0.4680 +5832 7372 0.4240 +5832 7403 0.4470 +5832 7404 0.4470 +5832 7407 0.4910 +5832 7464 0.4220 +5832 7486 0.4050 +5832 7846 0.4190 +5832 7915 0.7180 +5832 7918 0.4950 +5832 8277 0.5680 +5832 8458 0.5080 +5832 8565 0.5800 +5832 8570 0.4040 +5832 8612 0.4310 +5832 8659 0.9920 +5832 8766 0.4020 +5832 8801 0.5020 +5832 8802 0.4630 +5832 8803 0.4190 +5832 8833 0.9090 +5832 8854 0.6400 +5832 8884 0.4130 +5832 8974 0.4730 +5832 9060 0.4300 +5832 9061 0.4720 +5832 9069 0.7260 +5832 9131 0.4100 +5832 9208 0.4240 +5832 9212 0.4090 +5832 9399 0.5170 +5832 9401 0.5660 +5832 9468 0.4080 +5832 9512 0.4670 +5832 9563 0.4470 +5832 9895 0.4750 +5832 9897 0.7340 +5832 9934 0.5770 +5832 10007 0.4010 +5832 10008 0.4060 +5832 10020 0.5100 +5832 10056 0.4280 +5832 10152 0.4460 +5832 10157 0.5370 +5832 10391 0.4220 +5832 10393 0.4230 +5832 10479 0.4230 +5832 10574 0.4360 +5832 10606 0.6010 +5832 10667 0.4400 +5832 10730 0.4310 +5832 10768 0.4530 +5832 10797 0.7520 +5832 10840 0.6960 +5832 10873 0.4050 +5832 10887 0.7030 +5832 10888 0.6090 +5832 10908 0.5380 +5832 10939 0.5020 +5832 10993 0.5280 +5832 10994 0.4360 +5832 11093 0.4250 +5832 11112 0.4120 +5832 11151 0.4220 +5832 11315 0.4990 +5832 11343 0.4580 +5832 22934 0.5850 +5832 22948 0.4020 +5832 23057 0.5540 +5832 23135 0.4480 +5832 23171 0.4200 +5832 23173 0.4440 +5832 23193 0.6300 +5832 23315 0.4230 +5832 23382 0.4220 +5832 23438 0.4210 +5832 23474 0.4110 +5832 23478 0.4150 +5832 23545 0.5770 +5832 23603 0.4230 +5832 23644 0.5500 +5832 23743 0.4580 +5832 25902 0.5330 +5832 25973 0.6570 +5832 26061 0.4360 +5832 26086 0.5370 +5832 26123 0.5840 +5832 26164 0.7190 +5832 26227 0.7760 +5832 26330 0.4450 +5832 26517 0.4540 +5832 27030 0.4500 +5832 27102 0.4210 +5832 27165 0.9720 +5832 27199 0.7350 +5832 27292 0.4360 +5832 29104 0.4150 +5832 29899 0.4130 +5832 29909 0.4340 +5832 29920 0.9100 +5832 29968 0.8420 +5832 50814 0.4110 +5832 51026 0.5180 +5832 51067 0.5300 +5832 51074 0.4490 +5832 51106 0.4230 +5832 51167 0.4030 +5832 51264 0.6090 +5832 51314 0.5220 +5832 51360 0.5210 +5832 51409 0.4140 +5832 51477 0.4730 +5832 51497 0.7250 +5832 51520 0.4060 +5832 51557 0.4290 +5832 51741 0.4060 +5832 53829 0.6380 +5832 53836 0.7280 +5832 54059 0.5630 +5832 54101 0.4040 +5832 54328 0.6840 +5832 54329 0.6400 +5832 54431 0.4130 +5832 54453 0.5480 +5832 54511 0.5540 +5832 54529 0.8050 +5832 54802 0.5350 +5832 54963 0.4260 +5832 55052 0.4250 +5832 55157 0.5790 +5832 55188 0.4940 +5832 55258 0.5700 +5832 55278 0.7300 +5832 55294 0.5220 +5832 55312 0.5350 +5832 55313 0.5080 +5832 55349 0.4130 +5832 55571 0.4020 +5832 55699 0.5450 +5832 55703 0.5140 +5832 55748 0.5190 +5832 55750 0.4650 +5832 55846 0.4150 +5832 55856 0.4180 +5832 56267 0.5370 +5832 56474 0.8400 +5832 56648 0.5040 +5832 56670 0.5400 +5832 56922 0.7320 +5832 57105 0.6620 +5832 57175 0.4220 +5832 57176 0.4730 +5832 57469 0.4170 +5832 57470 0.4120 +5832 57494 0.5010 +5832 57583 0.4200 +5832 58510 0.5220 +5832 60626 0.6140 +5832 60675 0.6340 +5832 63826 0.4680 +5832 64080 0.4220 +5832 64087 0.4780 +5832 64146 0.4730 +5832 64216 0.4370 +5832 64577 0.7230 +5832 64802 0.5540 +5832 64805 0.5200 +5832 64902 0.4720 +5832 64968 0.4080 +5832 65055 0.6630 +5832 65220 0.4110 +5832 65263 0.9180 +5832 79072 0.5190 +5832 79073 0.4780 +5832 79814 0.4390 +5832 79896 0.5760 +5832 79944 0.4560 +5832 79947 0.4290 +5832 80153 0.6250 +5832 80222 0.5720 +5832 80347 0.4360 +5832 80745 0.5320 +5832 80777 0.4070 +5832 81570 0.4230 +5832 81889 0.4500 +5832 83943 0.4120 +5832 84076 0.5690 +5832 84172 0.4120 +5832 84245 0.5490 +5832 84263 0.5250 +5832 84432 0.7110 +5832 84649 0.4140 +5832 84679 0.4230 +5832 84680 0.5080 +5832 84706 0.6490 +5832 84735 0.5080 +5832 84940 0.4220 +5832 85417 0.4800 +5832 85865 0.7210 +5832 87178 0.4170 +5832 89872 0.4150 +5832 89894 0.7430 +5832 90701 0.4420 +5832 91574 0.4280 +5832 91875 0.8090 +5832 92344 0.4040 +5832 92483 0.4130 +5832 92935 0.4190 +5832 94160 0.4510 +5832 113451 0.5200 +5832 113675 0.4580 +5832 115416 0.5660 +5832 116150 0.4500 +5832 116832 0.4660 +5832 118813 0.8110 +5832 120892 0.4420 +5832 121642 0.4010 +5832 122622 0.5080 +5832 122945 0.7420 +5832 123263 0.5070 +5832 123606 0.6020 +5832 123688 0.5080 +5832 124454 0.5180 +5832 126133 0.7700 +5832 127845 0.4400 +5832 128674 0.6640 +5832 129607 0.5160 +5832 130752 0.4470 +5832 133308 0.4270 +5832 134147 0.4040 +5832 137872 0.4600 +5832 139596 0.8440 +5832 139760 0.6120 +5832 140894 0.4310 +5832 143244 0.5040 +5832 148811 0.5350 +5832 150159 0.4230 +5832 153443 0.4190 +5832 158584 0.7440 +5832 159963 0.4390 +5832 160428 0.7510 +5832 160728 0.4940 +5832 162417 0.7530 +5832 196074 0.5690 +5832 196294 0.4110 +5832 200205 0.4590 +5832 200895 0.5320 +5832 219927 0.6140 +5832 221391 0.7750 +5832 221823 0.4700 +5832 266977 0.4050 +5832 283209 0.4210 +5832 283578 0.7100 +5832 283985 0.8850 +5832 284525 0.4230 +5832 284695 0.5250 +5832 284716 0.4810 +5832 285148 0.8090 +5832 285195 0.4230 +5832 285335 0.4230 +5832 286451 0.4210 +5832 338442 0.5290 +5832 338557 0.5300 +5832 349565 0.5540 +5832 375775 0.4310 +5832 387787 0.4060 +5832 389015 0.4230 +5832 390110 0.5080 +5832 390928 0.5070 +5832 440275 0.5380 +5832 441024 0.6140 +5832 441531 0.4100 +5832 100509620 0.4070 +5832 100526760 0.5080 +5833 6448 0.4010 +5833 6576 0.5850 +5833 7410 0.4100 +5833 8565 0.4250 +5833 8694 0.5040 +5833 8879 0.4140 +5833 8904 0.4430 +5833 9468 0.4220 +5833 9489 0.4700 +5833 9632 0.4670 +5833 9791 0.5130 +5833 10390 0.9910 +5833 10400 0.7360 +5833 10423 0.6700 +5833 10994 0.6210 +5833 22845 0.4280 +5833 23259 0.4190 +5833 23761 0.9850 +5833 26061 0.6070 +5833 51115 0.5150 +5833 51547 0.8670 +5833 51548 0.4710 +5833 54675 0.4450 +5833 54863 0.5380 +5833 54976 0.5260 +5833 55224 0.9910 +5833 55312 0.4280 +5833 55500 0.9900 +5833 55845 0.4720 +5833 56994 0.8910 +5833 57608 0.4370 +5833 64236 0.4210 +5833 64422 0.4260 +5833 64788 0.4120 +5833 64850 0.9280 +5833 79831 0.6600 +5833 80347 0.4950 +5833 81490 0.6200 +5833 84335 0.7380 +5833 85465 0.9920 +5833 132001 0.4690 +5833 162466 0.9270 +5833 255275 0.4950 +5833 283767 0.4010 +5833 284129 0.4190 +5834 5836 0.9840 +5834 5837 0.9590 +5834 6271 0.5340 +5834 6285 0.4820 +5834 6476 0.6800 +5834 6513 0.4160 +5834 6514 0.5370 +5834 6515 0.4220 +5834 6517 0.6140 +5834 6519 0.4710 +5834 6520 0.4900 +5834 6652 0.4520 +5834 6751 0.4720 +5834 6752 0.4260 +5834 6753 0.4250 +5834 6754 0.7480 +5834 6755 0.4250 +5834 6888 0.5690 +5834 7056 0.4290 +5834 7086 0.4480 +5834 7137 0.4330 +5834 7139 0.5380 +5834 7140 0.4200 +5834 7167 0.6730 +5834 7273 0.5420 +5834 7360 0.9870 +5834 7536 0.4320 +5834 7841 0.5390 +5834 7957 0.7580 +5834 8226 0.7460 +5834 8277 0.4400 +5834 8789 0.5750 +5834 8891 0.4370 +5834 8893 0.4740 +5834 8908 0.9100 +5834 8972 0.9690 +5834 8987 0.7810 +5834 9380 0.4360 +5834 9563 0.7920 +5834 9764 0.4750 +5834 10020 0.4210 +5834 10243 0.4290 +5834 10449 0.4030 +5834 11035 0.9570 +5834 11181 0.6330 +5834 26330 0.4030 +5834 29925 0.4560 +5834 29926 0.4610 +5834 51806 0.8720 +5834 55276 0.9620 +5834 57214 0.4920 +5834 57818 0.7820 +5834 79660 0.8250 +5834 80162 0.4020 +5834 84076 0.4360 +5834 89801 0.6030 +5834 90673 0.4300 +5834 91373 0.4220 +5834 91860 0.8600 +5834 92483 0.4580 +5834 92579 0.7920 +5834 93432 0.9510 +5834 114928 0.5410 +5834 120892 0.5390 +5834 121642 0.4710 +5834 128240 0.5660 +5834 160287 0.4590 +5834 163688 0.8600 +5834 283209 0.9590 +5834 286451 0.4460 +5834 378884 0.4820 +5834 387712 0.5260 +5834 648791 0.4640 +5836 5837 0.9550 +5836 6271 0.5000 +5836 6285 0.4570 +5836 6476 0.6680 +5836 6513 0.4660 +5836 6514 0.5670 +5836 6515 0.4340 +5836 6517 0.6140 +5836 6519 0.4710 +5836 6520 0.4810 +5836 6652 0.6510 +5836 6754 0.5490 +5836 6888 0.6020 +5836 7086 0.5790 +5836 7139 0.4260 +5836 7140 0.4160 +5836 7167 0.6800 +5836 7284 0.4150 +5836 7360 0.9880 +5836 7536 0.4500 +5836 7841 0.5370 +5836 7923 0.4280 +5836 7957 0.5170 +5836 8226 0.7440 +5836 8277 0.4370 +5836 8789 0.5750 +5836 8891 0.4520 +5836 8893 0.4670 +5836 8908 0.9160 +5836 8972 0.9700 +5836 8987 0.7280 +5836 9380 0.4370 +5836 9446 0.4080 +5836 9563 0.7910 +5836 9764 0.4710 +5836 10020 0.4180 +5836 10243 0.4260 +5836 10449 0.4170 +5836 11035 0.9660 +5836 11181 0.6340 +5836 23476 0.5100 +5836 26330 0.4030 +5836 27165 0.4120 +5836 29925 0.4560 +5836 29926 0.4590 +5836 51422 0.4100 +5836 51806 0.8610 +5836 53632 0.4030 +5836 55276 0.9660 +5836 57214 0.4810 +5836 57818 0.7820 +5836 64902 0.4150 +5836 79026 0.4040 +5836 79660 0.7270 +5836 79814 0.4090 +5836 80162 0.4020 +5836 84076 0.4350 +5836 90673 0.4170 +5836 91373 0.4180 +5836 91860 0.8540 +5836 92483 0.4350 +5836 92579 0.7890 +5836 93432 0.9520 +5836 114928 0.6010 +5836 121642 0.4710 +5836 130589 0.4370 +5836 138009 0.5840 +5836 160287 0.4370 +5836 163688 0.8540 +5836 283209 0.9610 +5836 286451 0.4460 +5836 378884 0.4490 +5836 387712 0.5700 +5836 648791 0.4340 +5837 5970 0.6570 +5837 5977 0.5470 +5837 6094 0.7860 +5837 6261 0.4650 +5837 6271 0.6570 +5837 6285 0.4680 +5837 6345 0.4970 +5837 6476 0.6750 +5837 6513 0.4280 +5837 6514 0.5380 +5837 6515 0.4040 +5837 6517 0.6560 +5837 6519 0.4710 +5837 6520 0.6190 +5837 6652 0.4500 +5837 6888 0.5350 +5837 7086 0.4580 +5837 7125 0.4850 +5837 7138 0.4780 +5837 7139 0.4630 +5837 7140 0.6500 +5837 7167 0.6890 +5837 7273 0.4730 +5837 7356 0.7650 +5837 7360 0.9870 +5837 7536 0.8260 +5837 7841 0.5250 +5837 7957 0.5180 +5837 8061 0.7630 +5837 8226 0.7430 +5837 8277 0.4510 +5837 8789 0.5910 +5837 8891 0.4340 +5837 8893 0.4630 +5837 8908 0.8400 +5837 8972 0.9690 +5837 8987 0.4190 +5837 9380 0.4270 +5837 9499 0.4090 +5837 9563 0.7900 +5837 9764 0.4800 +5837 10020 0.4380 +5837 10243 0.4240 +5837 11035 0.9580 +5837 11181 0.6290 +5837 26330 0.4030 +5837 29765 0.5180 +5837 29895 0.4600 +5837 29925 0.5250 +5837 29926 0.4500 +5837 51806 0.8670 +5837 53632 0.7080 +5837 55276 0.9660 +5837 56934 0.5610 +5837 57214 0.4900 +5837 57818 0.7810 +5837 58529 0.4900 +5837 79026 0.7700 +5837 79660 0.5470 +5837 80162 0.4030 +5837 84076 0.4490 +5837 90673 0.4200 +5837 91373 0.4170 +5837 91860 0.8570 +5837 92483 0.4510 +5837 92579 0.7890 +5837 93432 0.9510 +5837 121642 0.4710 +5837 130589 0.4370 +5837 130752 0.4200 +5837 160287 0.4580 +5837 163688 0.8600 +5837 283209 0.9570 +5837 286451 0.4460 +5837 378884 0.4500 +5837 387712 0.5500 +5837 643834 0.4370 +5837 643847 0.4370 +5837 648791 0.4390 +5858 6462 0.4590 +5858 7862 0.5840 +5858 23774 0.4130 +5858 64769 0.4500 +5858 440387 0.8370 +5859 5886 0.4170 +5859 5887 0.4300 +5859 5896 0.4250 +5859 5917 0.9990 +5859 6122 0.7490 +5859 6123 0.6240 +5859 6124 0.7620 +5859 6125 0.9150 +5859 6128 0.6520 +5859 6129 0.6670 +5859 6130 0.6150 +5859 6132 0.7600 +5859 6133 0.7700 +5859 6135 0.8580 +5859 6136 0.6610 +5859 6137 0.8240 +5859 6138 0.8770 +5859 6139 0.7400 +5859 6141 0.7930 +5859 6142 0.8150 +5859 6143 0.8630 +5859 6144 0.9100 +5859 6146 0.7020 +5859 6147 0.9220 +5859 6152 0.8550 +5859 6154 0.7330 +5859 6155 0.6710 +5859 6156 0.8920 +5859 6157 0.6130 +5859 6158 0.7980 +5859 6159 0.8970 +5859 6160 0.8720 +5859 6161 0.5520 +5859 6164 0.8580 +5859 6165 0.8420 +5859 6166 0.7680 +5859 6167 0.4070 +5859 6168 0.8580 +5859 6169 0.9080 +5859 6173 0.7210 +5859 6175 0.7570 +5859 6176 0.8490 +5859 6181 0.7810 +5859 6183 0.7340 +5859 6187 0.7230 +5859 6188 0.8770 +5859 6189 0.8720 +5859 6191 0.7170 +5859 6192 0.6530 +5859 6193 0.7700 +5859 6194 0.8310 +5859 6201 0.8280 +5859 6202 0.8550 +5859 6203 0.7450 +5859 6204 0.7410 +5859 6205 0.9070 +5859 6206 0.5890 +5859 6207 0.7690 +5859 6208 0.7710 +5859 6209 0.8860 +5859 6210 0.6530 +5859 6217 0.7970 +5859 6218 0.7820 +5859 6222 0.9040 +5859 6223 0.8670 +5859 6224 0.7610 +5859 6227 0.8760 +5859 6228 0.7640 +5859 6229 0.9100 +5859 6230 0.8550 +5859 6231 0.8230 +5859 6232 0.7510 +5859 6233 0.4040 +5859 6234 0.8330 +5859 6235 0.7670 +5859 6301 0.8520 +5859 6354 0.4180 +5859 6386 0.8070 +5859 6729 0.4690 +5859 6731 0.4210 +5859 6897 0.8070 +5859 7086 0.4470 +5859 7284 0.4990 +5859 7311 0.7680 +5859 7317 0.5870 +5859 7407 0.9100 +5859 7411 0.5630 +5859 7453 0.8880 +5859 7916 0.4310 +5859 7965 0.9990 +5859 8565 0.9590 +5859 8661 0.4070 +5859 8666 0.4360 +5859 8697 0.4020 +5859 8721 0.5730 +5859 8833 0.5170 +5859 9045 0.6430 +5859 9255 0.9990 +5859 9343 0.5930 +5859 9349 0.9210 +5859 9521 0.9960 +5859 9669 0.7810 +5859 9732 0.4830 +5859 9775 0.4190 +5859 9858 0.6300 +5859 10056 0.5770 +5859 10102 0.6200 +5859 10213 0.4180 +5859 10352 0.8930 +5859 10399 0.7460 +5859 10412 0.5480 +5859 10473 0.6090 +5859 10514 0.4160 +5859 10528 0.4570 +5859 10557 0.4870 +5859 10666 0.4250 +5859 10667 0.7350 +5859 10767 0.4390 +5859 10952 0.5600 +5859 10988 0.4290 +5859 11222 0.6320 +5859 11224 0.8470 +5859 11232 0.4660 +5859 11311 0.6380 +5859 22927 0.5090 +5859 22984 0.4320 +5859 23087 0.6190 +5859 23173 0.6210 +5859 23204 0.5430 +5859 23212 0.4010 +5859 23246 0.4490 +5859 23395 0.9910 +5859 23438 0.8100 +5859 23480 0.5590 +5859 23481 0.5610 +5859 23521 0.8740 +5859 23560 0.6040 +5859 23640 0.5300 +5859 24140 0.4270 +5859 25873 0.8840 +5859 25885 0.4730 +5859 25973 0.9810 +5859 26135 0.5890 +5859 26155 0.5990 +5859 26156 0.5170 +5859 26354 0.4510 +5859 26994 0.4880 +5859 27068 0.4060 +5859 28998 0.8620 +5859 29088 0.5240 +5859 29093 0.6710 +5859 29789 0.4930 +5859 29927 0.5740 +5859 29979 0.4060 +5859 29997 0.5980 +5859 50487 0.4250 +5859 51065 0.6860 +5859 51067 0.9060 +5859 51068 0.5140 +5859 51069 0.6880 +5859 51073 0.7060 +5859 51081 0.7010 +5859 51116 0.6410 +5859 51121 0.7150 +5859 51149 0.7030 +5859 51154 0.6680 +5859 51187 0.6290 +5859 51319 0.4750 +5859 51386 0.4570 +5859 51520 0.9990 +5859 51574 0.4100 +5859 51720 0.4410 +5859 54552 0.4500 +5859 54665 0.4860 +5859 54938 0.8470 +5859 54948 0.5390 +5859 55157 0.7840 +5859 55172 0.4040 +5859 55173 0.7400 +5859 55176 0.5460 +5859 55226 0.4260 +5859 55272 0.7190 +5859 55278 0.9800 +5859 55316 0.7060 +5859 55324 0.4760 +5859 55341 0.4450 +5859 55591 0.4180 +5859 55621 0.5390 +5859 55651 0.4930 +5859 55699 0.9920 +5859 55703 0.5130 +5859 55893 0.4390 +5859 56474 0.4020 +5859 56648 0.6050 +5859 56731 0.4380 +5859 56945 0.5930 +5859 57038 0.9990 +5859 57176 0.8840 +5859 57470 0.4240 +5859 57505 0.8750 +5859 63931 0.7090 +5859 64374 0.5300 +5859 64960 0.7100 +5859 64963 0.7520 +5859 64969 0.6510 +5859 65003 0.6120 +5859 65008 0.6610 +5859 65121 0.5100 +5859 65122 0.5100 +5859 79073 0.6500 +5859 79587 0.8370 +5859 79590 0.6840 +5859 79631 0.5430 +5859 79731 0.8900 +5859 80222 0.8060 +5859 83743 0.4130 +5859 84154 0.4760 +5859 84273 0.5050 +5859 84365 0.5220 +5859 84464 0.4700 +5859 84993 0.4130 +5859 85476 0.7000 +5859 91893 0.4060 +5859 92196 0.4610 +5859 92399 0.5100 +5859 92935 0.9880 +5859 93974 0.4810 +5859 114987 0.6030 +5859 117246 0.4720 +5859 123263 0.4730 +5859 123283 0.9180 +5859 124454 0.7000 +5859 126402 0.6750 +5859 140032 0.6530 +5859 140801 0.5290 +5859 143244 0.6050 +5859 147011 0.4250 +5859 154288 0.4250 +5859 158584 0.6760 +5859 200916 0.6590 +5859 221823 0.4080 +5859 283459 0.9600 +5859 285855 0.5850 +5859 343068 0.5100 +5859 343070 0.5100 +5859 347487 0.6270 +5859 374395 0.4870 +5859 387129 0.5820 +5859 390999 0.5100 +5859 391002 0.5100 +5859 400735 0.5100 +5859 400736 0.5100 +5859 440560 0.5100 +5859 440561 0.5100 +5859 441873 0.5100 +5859 619279 0.4250 +5859 641776 0.5370 +5859 642987 0.4250 +5859 643909 0.5370 +5859 645051 0.5170 +5859 645073 0.5170 +5859 645359 0.5100 +5859 653619 0.5100 +5859 728524 0.5370 +5859 729396 0.5170 +5859 729422 0.5170 +5859 729428 0.5170 +5859 729431 0.5170 +5859 729442 0.5170 +5859 729447 0.5170 +5859 729528 0.5100 +5859 100008586 0.5170 +5859 100132399 0.5170 +5859 100287482 0.6270 +5859 100505478 0.5820 +5859 100526842 0.6640 +5859 100529097 0.7010 +5859 100529239 0.6280 +5859 100996746 0.5370 +5859 101927367 0.4380 +5859 101929983 0.5100 +5859 102724473 0.5170 +5859 105180390 0.5370 +5859 105180391 0.5370 +5860 6261 0.9860 +5860 6262 0.7010 +5860 6263 0.4180 +5860 6652 0.4550 +5860 6697 0.9890 +5860 6718 0.5300 +5860 7054 0.9720 +5860 7166 0.9700 +5860 7298 0.4300 +5860 7866 0.4190 +5860 7915 0.4700 +5860 7923 0.5010 +5860 9380 0.4240 +5860 10253 0.4040 +5860 10327 0.4660 +5860 10345 0.5090 +5860 25902 0.4600 +5860 25974 0.4080 +5860 26227 0.4970 +5860 27034 0.4030 +5860 27146 0.4100 +5860 54806 0.4140 +5860 54916 0.4560 +5860 54995 0.4510 +5860 55799 0.4120 +5860 56521 0.5320 +5860 57016 0.9210 +5860 81603 0.4430 +5860 84105 0.9620 +5860 84282 0.4010 +5860 84693 0.6210 +5860 88455 0.4510 +5860 112812 0.4640 +5860 113235 0.8190 +5860 121278 0.9460 +5860 160428 0.4150 +5860 200895 0.9810 +5860 286410 0.4250 +5861 5862 0.8590 +5861 5868 0.5190 +5861 5869 0.5110 +5861 5870 0.8050 +5861 5872 0.4780 +5861 5875 0.9310 +5861 5876 0.9310 +5861 5877 0.9020 +5861 5878 0.6900 +5861 5901 0.4510 +5861 5921 0.4540 +5861 6009 0.5590 +5861 6293 0.5080 +5861 6396 0.6650 +5861 6399 0.9240 +5861 6616 0.5020 +5861 6622 0.7880 +5861 6811 0.9440 +5861 6836 0.6570 +5861 6844 0.6750 +5861 6845 0.5540 +5861 7109 0.8510 +5861 7295 0.5490 +5861 7417 0.5240 +5861 7879 0.8790 +5861 7905 0.4990 +5861 8408 0.9330 +5861 8411 0.5440 +5861 8417 0.4740 +5861 8548 0.6310 +5861 8566 0.4380 +5861 8567 0.7020 +5861 8615 0.9900 +5861 8729 0.8750 +5861 8766 0.8260 +5861 8773 0.5990 +5861 8774 0.5850 +5861 8775 0.6760 +5861 8940 0.4060 +5861 9117 0.4440 +5861 9133 0.4300 +5861 9135 0.5580 +5861 9183 0.6230 +5861 9218 0.4140 +5861 9230 0.7850 +5861 9267 0.7020 +5861 9276 0.6830 +5861 9341 0.4700 +5861 9367 0.5650 +5861 9474 0.4520 +5861 9527 0.7140 +5861 9554 0.8350 +5861 9564 0.4390 +5861 9570 0.7670 +5861 9627 0.4820 +5861 9632 0.6400 +5861 9648 0.6060 +5861 9727 0.6060 +5861 9777 0.4580 +5861 9821 0.4420 +5861 9853 0.7870 +5861 9871 0.6870 +5861 9919 0.7070 +5861 9950 0.8830 +5861 10113 0.5840 +5861 10146 0.4070 +5861 10213 0.4330 +5861 10226 0.4400 +5861 10228 0.4230 +5861 10282 0.8840 +5861 10325 0.4310 +5861 10342 0.5740 +5861 10427 0.7950 +5861 10466 0.4160 +5861 10483 0.5440 +5861 10484 0.4630 +5861 10490 0.4640 +5861 10551 0.5250 +5861 10567 0.7680 +5861 10597 0.6150 +5861 10618 0.6600 +5861 10652 0.8080 +5861 10802 0.7060 +5861 10890 0.6810 +5861 10897 0.7710 +5861 10945 0.6670 +5861 10959 0.8390 +5861 10972 0.8230 +5861 11014 0.5990 +5861 11015 0.5720 +5861 11196 0.4850 +5861 11316 0.5960 +5861 11336 0.4720 +5861 11345 0.6350 +5861 22818 0.6170 +5861 22820 0.7130 +5861 22841 0.5680 +5861 22878 0.9730 +5861 22931 0.4700 +5861 22933 0.4280 +5861 23256 0.9460 +5861 23265 0.5330 +5861 23339 0.6650 +5861 23423 0.5410 +5861 23560 0.5650 +5861 23673 0.5860 +5861 23710 0.6410 +5861 25771 0.4630 +5861 25839 0.4390 +5861 26003 0.8680 +5861 26056 0.4400 +5861 26276 0.7790 +5861 26286 0.5610 +5861 26958 0.5990 +5861 26984 0.4910 +5861 27095 0.9540 +5861 27120 0.4470 +5861 27243 0.5690 +5861 29927 0.4060 +5861 51014 0.7070 +5861 51112 0.7580 +5861 51128 0.7230 +5861 51226 0.6090 +5861 51272 0.5910 +5861 51399 0.9870 +5861 51542 0.4490 +5861 51552 0.4280 +5861 51560 0.5530 +5861 51594 0.5340 +5861 51622 0.4270 +5861 51693 0.7770 +5861 51762 0.6680 +5861 53407 0.7220 +5861 54536 0.5640 +5861 54732 0.6320 +5861 54832 0.4530 +5861 55014 0.6410 +5861 55204 0.5390 +5861 55255 0.7380 +5861 55275 0.5280 +5861 55633 0.4620 +5861 55676 0.4340 +5861 55737 0.4520 +5861 55738 0.5990 +5861 55829 0.4740 +5861 55850 0.5400 +5861 56681 0.5640 +5861 57128 0.5460 +5861 57460 0.4290 +5861 57511 0.6580 +5861 57521 0.4640 +5861 57531 0.4160 +5861 57533 0.4760 +5861 57553 0.5710 +5861 57589 0.5630 +5861 58485 0.9870 +5861 60561 0.6360 +5861 60684 0.5890 +5861 63908 0.5820 +5861 64083 0.7370 +5861 64121 0.4190 +5861 64145 0.5810 +5861 64689 0.7580 +5861 64762 0.4450 +5861 64780 0.4850 +5861 65082 0.7870 +5861 79090 0.9210 +5861 80006 0.7530 +5861 80223 0.6660 +5861 81555 0.6910 +5861 81876 0.9910 +5861 83452 0.4530 +5861 83548 0.6790 +5861 84272 0.4350 +5861 84364 0.5960 +5861 84440 0.5490 +5861 84932 0.4900 +5861 89866 0.5600 +5861 90522 0.6730 +5861 91949 0.4900 +5861 112812 0.4250 +5861 117177 0.5090 +5861 120103 0.9350 +5861 120892 0.6070 +5861 122553 0.8410 +5861 126003 0.9690 +5861 126549 0.6430 +5861 128637 0.8790 +5861 140775 0.7520 +5861 144983 0.6230 +5861 150786 0.5240 +5861 150946 0.4440 +5861 161514 0.5150 +5861 167691 0.4450 +5861 203228 0.9890 +5861 221960 0.4200 +5861 222068 0.4540 +5861 253260 0.4060 +5861 285525 0.5180 +5861 285782 0.5790 +5861 286451 0.5210 +5861 376267 0.4770 +5861 100128327 0.7330 +5862 5867 0.4700 +5862 5868 0.5430 +5862 5869 0.4330 +5862 5870 0.8000 +5862 5873 0.4640 +5862 5875 0.5430 +5862 5876 0.5910 +5862 5878 0.5040 +5862 5894 0.4940 +5862 5921 0.7060 +5862 6386 0.5570 +5862 6396 0.4120 +5862 6453 0.5640 +5862 6517 0.9550 +5862 6646 0.5210 +5862 6742 0.4220 +5862 6811 0.5500 +5862 6845 0.4730 +5862 7260 0.5180 +5862 7416 0.5240 +5862 7417 0.4830 +5862 7879 0.6690 +5862 8022 0.6850 +5862 8417 0.5210 +5862 8548 0.9930 +5862 8615 0.5500 +5862 8675 0.4200 +5862 8766 0.7370 +5862 8861 0.6070 +5862 9321 0.6200 +5862 9341 0.4680 +5862 9342 0.5000 +5862 9355 0.5170 +5862 9527 0.4470 +5862 9554 0.4040 +5862 9609 0.4180 +5862 9648 0.7300 +5862 9700 0.4800 +5862 9882 0.7270 +5862 9905 0.4310 +5862 9950 0.4720 +5862 10213 0.4610 +5862 10228 0.4020 +5862 10490 0.4340 +5862 10567 0.4880 +5862 10652 0.4330 +5862 10945 0.4900 +5862 10959 0.4020 +5862 10972 0.4270 +5862 11021 0.4780 +5862 11160 0.4780 +5862 22931 0.6300 +5862 23216 0.9230 +5862 23339 0.8600 +5862 23637 0.5220 +5862 23673 0.4740 +5862 26000 0.6990 +5862 26003 0.9860 +5862 26468 0.8270 +5862 27243 0.4500 +5862 27335 0.4330 +5862 50618 0.5550 +5862 51560 0.5930 +5862 51622 0.5200 +5862 55014 0.4630 +5862 55088 0.5410 +5862 55275 0.4160 +5862 55296 0.4580 +5862 55823 0.4080 +5862 56956 0.5170 +5862 57559 0.5650 +5862 57617 0.4630 +5862 64083 0.4380 +5862 64211 0.4820 +5862 64689 0.7110 +5862 81555 0.5130 +5862 81876 0.8310 +5862 83874 0.6460 +5862 84315 0.4030 +5862 84932 0.7410 +5862 89884 0.6510 +5862 92689 0.6400 +5862 118813 0.5330 +5862 120892 0.5050 +5862 127343 0.4900 +5862 128637 0.5990 +5862 146923 0.4420 +5862 196472 0.5250 +5862 221079 0.5010 +5862 221960 0.4970 +5862 344191 0.4930 +5862 346653 0.8270 +5862 401409 0.5100 +5862 431707 0.4570 +5863 5894 0.6100 +5863 5898 0.9810 +5863 5899 0.9720 +5863 5900 0.4990 +5863 5906 0.4190 +5863 5908 0.6800 +5863 6015 0.7420 +5863 6222 0.8740 +5863 6237 0.9440 +5863 6257 0.7880 +5863 6293 0.4180 +5863 6892 0.8130 +5863 7922 0.8140 +5863 7923 0.8540 +5863 9610 0.5200 +5863 10471 0.8810 +5863 22800 0.9400 +5863 22808 0.9410 +5863 23042 0.4280 +5863 23179 0.4770 +5863 51225 0.5280 +5863 54809 0.7980 +5863 54887 0.4250 +5863 55770 0.4480 +5863 57139 0.5270 +5863 57148 0.4630 +5863 79447 0.4090 +5863 83593 0.5850 +5863 253959 0.4480 +5863 283349 0.5500 +5864 5865 0.7710 +5864 5866 0.8430 +5864 5875 0.8080 +5864 5876 0.8620 +5864 5877 0.8150 +5864 5921 0.4840 +5864 5932 0.4610 +5864 6305 0.4090 +5864 6453 0.4020 +5864 6456 0.4870 +5864 6531 0.5110 +5864 6571 0.8680 +5864 6572 0.8530 +5864 6616 0.9320 +5864 6620 0.4780 +5864 6622 0.8800 +5864 6804 0.8190 +5864 6810 0.4630 +5864 6812 0.9130 +5864 6843 0.5390 +5864 6844 0.9780 +5864 6845 0.5370 +5864 6853 0.9730 +5864 6854 0.8230 +5864 6855 0.9860 +5864 6857 0.9780 +5864 6860 0.6190 +5864 7533 0.4270 +5864 7857 0.4650 +5864 8218 0.4460 +5864 8224 0.8000 +5864 8447 0.6220 +5864 8448 0.4520 +5864 8497 0.6780 +5864 8499 0.7010 +5864 8500 0.6640 +5864 8541 0.7900 +5864 8567 0.8330 +5864 8573 0.6160 +5864 8673 0.4710 +5864 8773 0.4840 +5864 8775 0.5420 +5864 8825 0.5690 +5864 8867 0.4630 +5864 8925 0.4930 +5864 8927 0.7350 +5864 8994 0.5350 +5864 9066 0.6120 +5864 9143 0.5160 +5864 9145 0.6850 +5864 9256 0.8350 +5864 9341 0.5210 +5864 9342 0.5980 +5864 9378 0.4350 +5864 9379 0.4470 +5864 9381 0.8090 +5864 9482 0.4140 +5864 9501 0.9120 +5864 9627 0.6240 +5864 9699 0.9940 +5864 9892 0.4910 +5864 9899 0.4750 +5864 9900 0.6200 +5864 9905 0.7500 +5864 10490 0.4260 +5864 10497 0.9300 +5864 10567 0.7000 +5864 10618 0.4870 +5864 10814 0.5960 +5864 10815 0.7710 +5864 11069 0.4310 +5864 11315 0.7430 +5864 22895 0.9990 +5864 22930 0.8830 +5864 22999 0.9980 +5864 23025 0.8740 +5864 23085 0.4700 +5864 23208 0.5280 +5864 23312 0.6620 +5864 23335 0.7910 +5864 23504 0.7610 +5864 23560 0.5950 +5864 25782 0.7900 +5864 25924 0.4620 +5864 26000 0.6440 +5864 27106 0.4250 +5864 27335 0.4230 +5864 27352 0.7300 +5864 27445 0.9340 +5864 51762 0.4620 +5864 51806 0.5930 +5864 53916 0.4130 +5864 54843 0.6800 +5864 55327 0.5670 +5864 56907 0.6030 +5864 57030 0.8970 +5864 57589 0.4330 +5864 64130 0.5760 +5864 79083 0.8010 +5864 80331 0.9340 +5864 81846 0.4200 +5864 83452 0.5010 +5864 83874 0.5800 +5864 84079 0.4600 +5864 84144 0.4770 +5864 84258 0.4730 +5864 84446 0.4320 +5864 84958 0.6730 +5864 84962 0.4500 +5864 89781 0.4070 +5864 90113 0.5200 +5864 91683 0.4360 +5864 91860 0.5790 +5864 94120 0.6300 +5864 94121 0.9450 +5864 94122 0.7650 +5864 112755 0.5320 +5864 115827 0.6510 +5864 117177 0.8650 +5864 126374 0.5690 +5864 127833 0.6120 +5864 129049 0.6980 +5864 132204 0.6420 +5864 134957 0.7690 +5864 140679 0.8820 +5864 148281 0.4660 +5864 163688 0.5790 +5864 196383 0.4840 +5864 246213 0.8140 +5864 283229 0.5100 +5864 353116 0.4800 +5865 5873 0.5040 +5865 5875 0.6520 +5865 5876 0.5690 +5865 5877 0.5200 +5865 6616 0.6580 +5865 6809 0.5390 +5865 6812 0.5810 +5865 6844 0.4200 +5865 6857 0.5040 +5865 6860 0.4520 +5865 8189 0.6100 +5865 8447 0.5940 +5865 8531 0.5320 +5865 8567 0.4510 +5865 8673 0.4250 +5865 8766 0.4110 +5865 9341 0.4590 +5865 9501 0.4880 +5865 9522 0.4370 +5865 9699 0.6860 +5865 10369 0.4340 +5865 22895 0.8270 +5865 22930 0.4100 +5865 22999 0.4900 +5865 23025 0.4620 +5865 23208 0.5780 +5865 26056 0.4440 +5865 51806 0.4250 +5865 57530 0.4630 +5865 84735 0.4260 +5865 91860 0.4040 +5865 94121 0.6160 +5865 163688 0.4040 +5865 222537 0.4260 +5865 254170 0.4100 +5865 283229 0.4820 +5865 342510 0.4290 +5865 387849 0.9130 +5866 5870 0.4420 +5866 5872 0.5180 +5866 5873 0.4490 +5866 5877 0.5500 +5866 6305 0.4320 +5866 6844 0.4480 +5866 7879 0.4090 +5866 8200 0.6200 +5866 8328 0.4110 +5866 8541 0.4590 +5866 8766 0.9240 +5866 9230 0.4890 +5866 9321 0.5700 +5866 9699 0.4210 +5866 9807 0.8530 +5866 10133 0.4780 +5866 10147 0.4340 +5866 10640 0.5000 +5866 10890 0.5800 +5866 10966 0.4140 +5866 10981 0.5210 +5866 11069 0.4280 +5866 22895 0.5170 +5866 22999 0.4930 +5866 23011 0.4970 +5866 23233 0.5540 +5866 23426 0.4180 +5866 23589 0.4690 +5866 50855 0.4050 +5866 51560 0.4630 +5866 51762 0.8390 +5866 54536 0.6340 +5866 54927 0.4220 +5866 57403 0.4550 +5866 60412 0.4010 +5866 64762 0.4810 +5866 84079 0.5080 +5866 84938 0.4520 +5866 85440 0.4140 +5866 116442 0.4100 +5866 117177 0.8980 +5866 145567 0.4710 +5866 149371 0.5100 +5866 150946 0.4860 +5866 154796 0.4200 +5866 201305 0.4270 +5866 282808 0.6430 +5866 284114 0.7860 +5866 376267 0.4810 +5867 5868 0.9050 +5867 5870 0.6070 +5867 5875 0.5890 +5867 5876 0.6390 +5867 5877 0.4710 +5867 5898 0.5790 +5867 5921 0.4500 +5867 5955 0.4440 +5867 6293 0.7070 +5867 6453 0.6100 +5867 6517 0.6830 +5867 6532 0.6470 +5867 6642 0.5750 +5867 6643 0.4200 +5867 6810 0.7500 +5867 6844 0.4740 +5867 6845 0.5020 +5867 6872 0.4200 +5867 7037 0.7240 +5867 7074 0.4520 +5867 7410 0.4780 +5867 7454 0.4040 +5867 7474 0.4240 +5867 7534 0.4970 +5867 7879 0.6360 +5867 7976 0.5570 +5867 8165 0.4880 +5867 8218 0.4470 +5867 8411 0.8600 +5867 8517 0.5450 +5867 8674 0.4130 +5867 8723 0.4630 +5867 8724 0.4350 +5867 8766 0.5200 +5867 8772 0.4640 +5867 8773 0.4460 +5867 9135 0.9910 +5867 9146 0.5470 +5867 9341 0.7630 +5867 9367 0.5270 +5867 9371 0.7340 +5867 9559 0.5320 +5867 9712 0.4090 +5867 9727 0.7160 +5867 9784 0.4820 +5867 9882 0.4270 +5867 9905 0.7580 +5867 10228 0.5300 +5867 10397 0.5980 +5867 10618 0.5410 +5867 10640 0.4410 +5867 10938 0.5210 +5867 11127 0.8060 +5867 11188 0.4660 +5867 11216 0.8390 +5867 11311 0.4030 +5867 22841 0.7370 +5867 22920 0.5620 +5867 22931 0.4960 +5867 23011 0.5060 +5867 23163 0.6520 +5867 23258 0.5510 +5867 23265 0.4040 +5867 23607 0.6810 +5867 23637 0.4850 +5867 23673 0.6040 +5867 25814 0.4160 +5867 26056 0.7220 +5867 26060 0.5090 +5867 26088 0.4040 +5867 27314 0.4290 +5867 27352 0.8070 +5867 50618 0.6080 +5867 50855 0.4180 +5867 51097 0.4030 +5867 51143 0.7270 +5867 51542 0.4420 +5867 51552 0.6940 +5867 51699 0.5280 +5867 53916 0.6300 +5867 54536 0.5070 +5867 54734 0.4470 +5867 55275 0.4390 +5867 55610 0.4710 +5867 55737 0.6200 +5867 55754 0.4170 +5867 55814 0.4060 +5867 56850 0.8280 +5867 57403 0.5030 +5867 57511 0.5090 +5867 57531 0.5590 +5867 64145 0.9990 +5867 64786 0.7640 +5867 79735 0.4860 +5867 79874 0.4720 +5867 80223 0.9680 +5867 80230 0.9890 +5867 81609 0.4880 +5867 81876 0.4010 +5867 83547 0.5180 +5867 117177 0.4300 +5867 125058 0.8920 +5867 129049 0.7820 +5867 200576 0.4110 +5867 401409 0.4930 +5867 445815 0.4160 +5868 5869 0.9990 +5868 5870 0.4480 +5868 5875 0.8380 +5868 5876 0.6990 +5868 5877 0.9120 +5868 5878 0.9890 +5868 5906 0.6190 +5868 5908 0.6090 +5868 5921 0.8810 +5868 5923 0.4490 +5868 6014 0.5640 +5868 6252 0.4360 +5868 6272 0.4450 +5868 6382 0.5430 +5868 6386 0.8080 +5868 6453 0.5310 +5868 6455 0.4390 +5868 6457 0.4120 +5868 6531 0.5220 +5868 6550 0.6080 +5868 6622 0.5570 +5868 6642 0.6890 +5868 6643 0.7080 +5868 6653 0.4690 +5868 6654 0.6510 +5868 6657 0.4070 +5868 6714 0.4970 +5868 6809 0.4320 +5868 6810 0.5710 +5868 6811 0.4860 +5868 6844 0.5110 +5868 6845 0.6300 +5868 7037 0.9340 +5868 7074 0.4060 +5868 7124 0.5240 +5868 7163 0.4260 +5868 7248 0.4970 +5868 7249 0.8190 +5868 7251 0.8330 +5868 7295 0.4690 +5868 7306 0.4310 +5868 7405 0.9010 +5868 7410 0.4760 +5868 7454 0.4340 +5868 7837 0.6080 +5868 7879 0.9480 +5868 7942 0.4170 +5868 8027 0.4920 +5868 8029 0.4940 +5868 8218 0.8390 +5868 8301 0.5290 +5868 8408 0.4520 +5868 8411 0.9990 +5868 8417 0.5440 +5868 8567 0.5110 +5868 8650 0.4460 +5868 8673 0.5420 +5868 8674 0.4440 +5868 8675 0.5460 +5868 8678 0.9920 +5868 8723 0.4810 +5868 8724 0.5910 +5868 8766 0.9730 +5868 8773 0.5380 +5868 8775 0.4040 +5868 8867 0.4640 +5868 8878 0.5090 +5868 8881 0.4080 +5868 8883 0.4950 +5868 8925 0.4200 +5868 8934 0.5190 +5868 8976 0.4660 +5868 9024 0.4500 +5868 9043 0.5780 +5868 9094 0.4380 +5868 9135 0.9990 +5868 9140 0.5410 +5868 9146 0.6230 +5868 9218 0.4360 +5868 9230 0.5750 +5868 9341 0.6690 +5868 9342 0.4580 +5868 9367 0.4590 +5868 9372 0.5310 +5868 9392 0.9250 +5868 9474 0.6260 +5868 9482 0.5000 +5868 9497 0.4740 +5868 9522 0.5270 +5868 9525 0.5390 +5868 9554 0.4260 +5868 9559 0.7920 +5868 9610 0.9880 +5868 9648 0.5130 +5868 9685 0.5050 +5868 9712 0.7790 +5868 9727 0.4250 +5868 9776 0.4100 +5868 9777 0.4610 +5868 9779 0.4910 +5868 9784 0.5370 +5868 9821 0.4660 +5868 9892 0.4300 +5868 9905 0.6140 +5868 10006 0.6680 +5868 10015 0.4320 +5868 10066 0.5170 +5868 10133 0.4050 +5868 10163 0.4770 +5868 10211 0.5410 +5868 10226 0.8010 +5868 10228 0.6750 +5868 10241 0.4090 +5868 10254 0.6700 +5868 10266 0.4320 +5868 10267 0.4240 +5868 10268 0.4080 +5868 10490 0.5940 +5868 10533 0.5530 +5868 10567 0.4560 +5868 10618 0.6360 +5868 10628 0.5730 +5868 10640 0.4500 +5868 10644 0.5080 +5868 10652 0.4910 +5868 10755 0.7150 +5868 10938 0.8650 +5868 11031 0.6330 +5868 11188 0.4190 +5868 11311 0.9890 +5868 11337 0.4900 +5868 11345 0.5800 +5868 22841 0.5330 +5868 22863 0.7120 +5868 22879 0.7510 +5868 22895 0.5890 +5868 22905 0.4620 +5868 22930 0.4660 +5868 23011 0.6660 +5868 23062 0.6200 +5868 23102 0.4480 +5868 23158 0.6910 +5868 23163 0.6900 +5868 23258 0.5360 +5868 23317 0.4630 +5868 23339 0.8080 +5868 23355 0.9020 +5868 23513 0.4500 +5868 23527 0.4260 +5868 23557 0.4490 +5868 23621 0.4660 +5868 23673 0.5620 +5868 23710 0.5970 +5868 25777 0.7400 +5868 25930 0.4200 +5868 25978 0.5870 +5868 26060 0.9990 +5868 26088 0.7940 +5868 26100 0.4310 +5868 26130 0.9460 +5868 26146 0.4360 +5868 26258 0.5300 +5868 26276 0.6420 +5868 26499 0.5070 +5868 26998 0.4450 +5868 27072 0.6330 +5868 27111 0.6160 +5868 27131 0.5320 +5868 27183 0.5560 +5868 27243 0.5860 +5868 27352 0.9290 +5868 28991 0.4770 +5868 30011 0.4590 +5868 30844 0.4310 +5868 30845 0.7030 +5868 30846 0.6580 +5868 30849 0.9570 +5868 50618 0.4140 +5868 51094 0.5190 +5868 51100 0.5800 +5868 51160 0.4030 +5868 51164 0.5320 +5868 51361 0.5830 +5868 51429 0.4970 +5868 51454 0.6160 +5868 51479 0.9850 +5868 51510 0.5110 +5868 51552 0.6440 +5868 51560 0.4960 +5868 51622 0.9290 +5868 51652 0.4070 +5868 51655 0.5280 +5868 51699 0.6220 +5868 51762 0.6260 +5868 53349 0.4430 +5868 54453 0.9720 +5868 54469 0.4540 +5868 54536 0.5720 +5868 55014 0.4940 +5868 55040 0.4500 +5868 55054 0.4500 +5868 55062 0.4600 +5868 55198 0.7880 +5868 55255 0.5940 +5868 55283 0.4740 +5868 55357 0.5030 +5868 55614 0.4740 +5868 55647 0.4940 +5868 55737 0.7640 +5868 55770 0.4350 +5868 55773 0.5370 +5868 55823 0.7820 +5868 55969 0.4890 +5868 56850 0.5040 +5868 57192 0.5940 +5868 57465 0.4530 +5868 57617 0.8040 +5868 57679 0.9910 +5868 57706 0.4080 +5868 58533 0.4990 +5868 60412 0.4390 +5868 63971 0.5940 +5868 64083 0.6090 +5868 64145 0.9990 +5868 64422 0.4540 +5868 64601 0.7710 +5868 64689 0.4150 +5868 64786 0.7400 +5868 65082 0.7200 +5868 79065 0.5400 +5868 79602 0.4810 +5868 79643 0.4260 +5868 79735 0.6860 +5868 79874 0.7750 +5868 79890 0.9170 +5868 80208 0.5210 +5868 80223 0.5060 +5868 80230 0.8690 +5868 81609 0.4820 +5868 81631 0.5510 +5868 81876 0.4360 +5868 83460 0.7750 +5868 83547 0.5180 +5868 84067 0.4620 +5868 84079 0.4060 +5868 84313 0.5580 +5868 84315 0.9700 +5868 84971 0.4670 +5868 117177 0.4880 +5868 120892 0.5660 +5868 126432 0.8180 +5868 128637 0.4010 +5868 129049 0.6290 +5868 133482 0.5070 +5868 137902 0.6060 +5868 140775 0.6170 +5868 143187 0.4860 +5868 150684 0.5060 +5868 200576 0.6630 +5868 221079 0.4860 +5868 221960 0.9260 +5868 255231 0.5610 +5868 259173 0.9100 +5868 387849 0.5240 +5868 414059 0.4240 +5868 474383 0.9560 +5868 729873 0.6000 +5868 100506658 0.5720 +5868 100526767 0.4030 +5868 100527943 0.4800 +5869 5870 0.5890 +5869 5875 0.5630 +5869 5876 0.6390 +5869 5877 0.6460 +5869 5878 0.9660 +5869 5906 0.5540 +5869 5908 0.6450 +5869 6249 0.4370 +5869 6455 0.6000 +5869 6642 0.5970 +5869 6821 0.6010 +5869 7037 0.4880 +5869 7251 0.5470 +5869 7879 0.7290 +5869 8091 0.4180 +5869 8218 0.6940 +5869 8411 0.9610 +5869 8567 0.5650 +5869 8766 0.6440 +5869 9135 0.7310 +5869 9230 0.5600 +5869 9392 0.5260 +5869 9525 0.4440 +5869 9610 0.9690 +5869 10066 0.4420 +5869 10413 0.4030 +5869 10516 0.5100 +5869 10857 0.4350 +5869 10890 0.5390 +5869 11103 0.4520 +5869 22879 0.5710 +5869 22905 0.4580 +5869 23062 0.5530 +5869 23163 0.5170 +5869 23332 0.4220 +5869 23339 0.6730 +5869 23355 0.5580 +5869 26060 0.5430 +5869 26088 0.5490 +5869 26130 0.7990 +5869 26276 0.4530 +5869 27072 0.5660 +5869 27324 0.5920 +5869 51479 0.5350 +5869 51552 0.5070 +5869 51622 0.5200 +5869 54453 0.9360 +5869 55054 0.4010 +5869 55737 0.5030 +5869 55823 0.5590 +5869 56850 0.4070 +5869 57617 0.5640 +5869 57679 0.5800 +5869 57706 0.7150 +5869 64145 0.6370 +5869 64601 0.5880 +5869 65082 0.5130 +5869 79890 0.9290 +5869 81876 0.4290 +5869 84067 0.4350 +5869 84315 0.5090 +5869 84909 0.5950 +5869 84932 0.5480 +5869 120892 0.9090 +5869 126432 0.5730 +5869 221960 0.5140 +5869 259173 0.4410 +5869 729873 0.5270 +5870 5873 0.5210 +5870 5875 0.6200 +5870 5876 0.5900 +5870 5877 0.5360 +5870 5898 0.6920 +5870 5899 0.5090 +5870 5903 0.5400 +5870 5908 0.5100 +5870 5921 0.4280 +5870 6010 0.4100 +5870 6293 0.8840 +5870 6642 0.5490 +5870 6643 0.4520 +5870 6811 0.6320 +5870 6845 0.4720 +5870 7110 0.9280 +5870 7163 0.4600 +5870 7879 0.6350 +5870 8411 0.5080 +5870 8517 0.4720 +5870 8548 0.5700 +5870 8567 0.4060 +5870 8615 0.7360 +5870 8655 0.6150 +5870 8674 0.8080 +5870 8675 0.8430 +5870 8677 0.5650 +5870 8729 0.6370 +5870 8766 0.8150 +5870 8774 0.5770 +5870 8775 0.6160 +5870 9135 0.4560 +5870 9183 0.4670 +5870 9230 0.6310 +5870 9321 0.5410 +5870 9341 0.6290 +5870 9367 0.4230 +5870 9382 0.6820 +5870 9392 0.5090 +5870 9493 0.4720 +5870 9527 0.6110 +5870 9554 0.4160 +5870 9559 0.5720 +5870 9570 0.4080 +5870 9639 0.5320 +5870 9648 0.9990 +5870 9712 0.4400 +5870 9779 0.5510 +5870 9827 0.6440 +5870 9950 0.6380 +5870 10059 0.4940 +5870 10112 0.9970 +5870 10121 0.5870 +5870 10139 0.7350 +5870 10226 0.4010 +5870 10228 0.8100 +5870 10282 0.4230 +5870 10466 0.6570 +5870 10490 0.5400 +5870 10497 0.4110 +5870 10540 0.6990 +5870 10567 0.5500 +5870 10618 0.8080 +5870 10652 0.4910 +5870 10671 0.5970 +5870 10749 0.7900 +5870 10890 0.6220 +5870 11252 0.4200 +5870 11258 0.5040 +5870 22796 0.6830 +5870 22841 0.4510 +5870 22930 0.6900 +5870 22931 0.7530 +5870 23085 0.9740 +5870 23256 0.6900 +5870 23258 0.9920 +5870 23299 0.9910 +5870 23339 0.8190 +5870 23426 0.4270 +5870 23534 0.6080 +5870 23637 0.8810 +5870 25782 0.6380 +5870 25839 0.7130 +5870 26000 0.6670 +5870 26003 0.4570 +5870 26052 0.5300 +5870 26059 0.6670 +5870 26276 0.6000 +5870 27333 0.4300 +5870 27335 0.4370 +5870 51143 0.6700 +5870 51164 0.6990 +5870 51542 0.7870 +5870 51552 0.5490 +5870 51560 0.8690 +5870 51699 0.5120 +5870 51727 0.5720 +5870 54536 0.4180 +5870 55275 0.9420 +5870 55296 0.4590 +5870 55614 0.6000 +5870 55737 0.6580 +5870 55770 0.4130 +5870 55860 0.6440 +5870 57410 0.5870 +5870 57511 0.8490 +5870 57553 0.6790 +5870 57589 0.8980 +5870 60561 0.4940 +5870 63908 0.5190 +5870 64083 0.7780 +5870 64145 0.4180 +5870 64689 0.5490 +5870 64786 0.7620 +5870 65082 0.5940 +5870 79571 0.8490 +5870 79735 0.5080 +5870 80306 0.5230 +5870 81555 0.6410 +5870 81876 0.8010 +5870 83548 0.7880 +5870 83658 0.6980 +5870 83874 0.6460 +5870 84376 0.4310 +5870 84516 0.5260 +5870 84833 0.4160 +5870 90102 0.4050 +5870 90196 0.6780 +5870 91949 0.6850 +5870 92344 0.9820 +5870 92558 0.8940 +5870 93661 0.5410 +5870 94122 0.4010 +5870 117177 0.4940 +5870 127833 0.4730 +5870 128637 0.4610 +5870 140735 0.5480 +5870 140775 0.4590 +5870 143187 0.8180 +5870 157680 0.7920 +5870 203228 0.5620 +5870 221079 0.4010 +5870 339122 0.6180 +5870 345456 0.4590 +5870 375189 0.4780 +5870 401409 0.5640 +5871 6416 0.4370 +5871 6494 0.4040 +5871 6629 0.6160 +5871 6801 0.7290 +5871 7186 0.9360 +5871 7871 0.5990 +5871 9113 0.6110 +5871 11235 0.7670 +5871 11337 0.6220 +5871 25843 0.4940 +5871 25873 0.5870 +5871 29888 0.8000 +5871 29966 0.4140 +5871 54847 0.4270 +5871 57464 0.4320 +5871 57649 0.7430 +5871 60485 0.4020 +5871 65003 0.6250 +5871 83605 0.5040 +5871 84305 0.4190 +5871 85369 0.7270 +5871 389421 0.5600 +5872 5875 0.6210 +5872 5876 0.6430 +5872 5877 0.8320 +5872 5898 0.6100 +5872 6009 0.4300 +5872 6103 0.5110 +5872 6232 0.4380 +5872 6517 0.6960 +5872 6764 0.7380 +5872 6810 0.6860 +5872 6814 0.6800 +5872 6844 0.6330 +5872 7082 0.8370 +5872 7529 0.5270 +5872 7531 0.5420 +5872 7532 0.5270 +5872 7533 0.5360 +5872 7534 0.5290 +5872 8189 0.4900 +5872 8447 0.4360 +5872 8531 0.4860 +5872 8567 0.4060 +5872 8766 0.4420 +5872 8773 0.6620 +5872 9645 0.6280 +5872 9847 0.5690 +5872 9882 0.7400 +5872 10640 0.7400 +5872 10890 0.5380 +5872 10971 0.5640 +5872 11336 0.7020 +5872 22898 0.4460 +5872 23062 0.5420 +5872 23216 0.7100 +5872 23258 0.4590 +5872 23265 0.7070 +5872 25959 0.4060 +5872 27156 0.8130 +5872 27289 0.4020 +5872 51065 0.4490 +5872 51552 0.6950 +5872 51622 0.4120 +5872 51762 0.7910 +5872 54536 0.7630 +5872 55255 0.4380 +5872 55763 0.7190 +5872 55770 0.7200 +5872 57175 0.5980 +5872 57530 0.5640 +5872 57553 0.6440 +5872 60412 0.7530 +5872 64601 0.4880 +5872 64780 0.6550 +5872 79058 0.5200 +5872 79778 0.9930 +5872 79958 0.7420 +5872 81876 0.6690 +5872 85377 0.8360 +5872 116984 0.7110 +5872 116985 0.6870 +5872 117177 0.6530 +5872 140775 0.4950 +5872 146439 0.5860 +5872 149371 0.6820 +5872 196383 0.4130 +5872 203228 0.4720 +5872 221960 0.4110 +5872 254102 0.4200 +5872 100506658 0.4020 +5873 5874 0.9260 +5873 5875 0.8440 +5873 5876 0.7050 +5873 6386 0.5790 +5873 6403 0.4340 +5873 6490 0.6650 +5873 6610 0.5420 +5873 6804 0.4460 +5873 6809 0.4660 +5873 6810 0.5500 +5873 6812 0.4520 +5873 6813 0.7790 +5873 6844 0.4460 +5873 6845 0.7540 +5873 6853 0.5130 +5873 6857 0.7540 +5873 7251 0.7300 +5873 7299 0.7280 +5873 7306 0.5630 +5873 7450 0.5520 +5873 8027 0.4030 +5873 8411 0.4060 +5873 8448 0.6810 +5873 8546 0.6650 +5873 8567 0.8190 +5873 8673 0.5450 +5873 8676 0.9310 +5873 8773 0.5970 +5873 9066 0.4990 +5873 9341 0.5240 +5873 9480 0.6870 +5873 9501 0.8930 +5873 9648 0.4870 +5873 10015 0.5240 +5873 10497 0.8180 +5873 10578 0.5140 +5873 10612 0.5430 +5873 10652 0.4500 +5873 10981 0.4480 +5873 11234 0.4340 +5873 11336 0.5550 +5873 22895 0.9470 +5873 22999 0.5860 +5873 23086 0.9810 +5873 23560 0.4720 +5873 23603 0.5810 +5873 25924 0.9990 +5873 26000 0.8520 +5873 26258 0.4870 +5873 26276 0.5220 +5873 27335 0.4240 +5873 51151 0.6340 +5873 51291 0.5630 +5873 51412 0.4260 +5873 51534 0.4420 +5873 54843 0.9980 +5873 55240 0.4280 +5873 55512 0.6590 +5873 55686 0.8330 +5873 55930 0.4320 +5873 60412 0.5750 +5873 79083 0.9990 +5873 79803 0.4160 +5873 83442 0.5200 +5873 83874 0.9000 +5873 84061 0.4150 +5873 84343 0.4460 +5873 84958 0.9970 +5873 85377 0.4820 +5873 94120 0.9570 +5873 94121 0.9990 +5873 94122 0.9360 +5873 201294 0.9990 +5873 283652 0.4860 +5873 340146 0.6670 +5873 374354 0.4200 +5873 415117 0.7770 +5873 440163 0.4470 +5874 5875 0.5650 +5874 5876 0.5350 +5874 6386 0.5070 +5874 6403 0.4710 +5874 6610 0.4520 +5874 6657 0.4180 +5874 6764 0.4660 +5874 6810 0.4120 +5874 6845 0.4560 +5874 7251 0.6480 +5874 8567 0.6550 +5874 8673 0.4550 +5874 8773 0.4570 +5874 9341 0.4130 +5874 9501 0.5700 +5874 10015 0.4590 +5874 10497 0.4960 +5874 10652 0.4210 +5874 11336 0.6060 +5874 22895 0.8290 +5874 23086 0.8150 +5874 25924 0.9680 +5874 54843 0.9480 +5874 55240 0.4350 +5874 55512 0.5750 +5874 55686 0.7000 +5874 55930 0.4030 +5874 60412 0.6120 +5874 79026 0.4180 +5874 79083 0.9950 +5874 79778 0.4390 +5874 80323 0.4370 +5874 83874 0.6140 +5874 84958 0.9680 +5874 94120 0.8480 +5874 94121 0.9370 +5874 94122 0.9320 +5874 201294 0.8950 +5874 404636 0.5280 +5874 440163 0.4730 +5875 5876 0.9990 +5875 5878 0.7560 +5875 6596 0.7610 +5875 6641 0.4550 +5875 7051 0.7300 +5875 7157 0.7560 +5875 7407 0.4350 +5875 7879 0.6630 +5875 8073 0.5040 +5875 8766 0.6230 +5875 8916 0.4240 +5875 8924 0.7680 +5875 8934 0.7960 +5875 9230 0.5430 +5875 9363 0.6110 +5875 9367 0.7890 +5875 9545 0.7020 +5875 9609 0.5960 +5875 10653 0.4020 +5875 10890 0.5840 +5875 10966 0.5950 +5875 10981 0.8870 +5875 11021 0.5780 +5875 11031 0.9250 +5875 11234 0.4230 +5875 22872 0.4340 +5875 22930 0.4250 +5875 22931 0.5780 +5875 23011 0.5060 +5875 23682 0.6830 +5875 25837 0.7480 +5875 27314 0.6090 +5875 51209 0.8550 +5875 51552 0.5590 +5875 51560 0.6390 +5875 51715 0.6280 +5875 51762 0.5480 +5875 53916 0.5210 +5875 53917 0.7440 +5875 54734 0.7190 +5875 55647 0.6180 +5875 55684 0.4650 +5875 57111 0.5900 +5875 57403 0.6980 +5875 57799 0.5300 +5875 64284 0.5680 +5875 80005 0.4260 +5875 81876 0.8610 +5875 83452 0.5600 +5875 83871 0.6720 +5875 84932 0.6350 +5875 84988 0.4520 +5875 89846 0.4920 +5875 115273 0.6260 +5875 115827 0.5720 +5875 116442 0.6920 +5875 117177 0.4580 +5875 142684 0.5260 +5875 202374 0.4730 +5875 285282 0.4890 +5875 326624 0.5140 +5875 338382 0.8780 +5875 339122 0.6120 +5875 342667 0.4610 +5875 347517 0.5460 +5875 376267 0.5450 +5875 401258 0.5460 +5875 401409 0.5690 +5876 5878 0.5490 +5876 6500 0.8320 +5876 7157 0.4990 +5876 7879 0.6050 +5876 8073 0.9580 +5876 8766 0.6520 +5876 8934 0.5010 +5876 9230 0.6000 +5876 9363 0.6700 +5876 9367 0.7240 +5876 9453 0.4520 +5876 9545 0.5120 +5876 9609 0.5450 +5876 10201 0.4620 +5876 10330 0.4070 +5876 10591 0.4620 +5876 10652 0.9420 +5876 10785 0.4530 +5876 10890 0.6090 +5876 10966 0.7370 +5876 10981 0.5010 +5876 11021 0.5340 +5876 11031 0.7420 +5876 11285 0.4490 +5876 22911 0.4940 +5876 22931 0.6070 +5876 23011 0.5760 +5876 23396 0.6730 +5876 23597 0.4570 +5876 23682 0.5670 +5876 25827 0.9700 +5876 25837 0.7030 +5876 27248 0.4890 +5876 27314 0.5010 +5876 51209 0.6960 +5876 51389 0.5410 +5876 51552 0.5530 +5876 51560 0.6160 +5876 51715 0.5250 +5876 51762 0.6440 +5876 53916 0.6130 +5876 53917 0.5480 +5876 54734 0.5560 +5876 55647 0.5530 +5876 57111 0.5960 +5876 57396 0.5090 +5876 57403 0.5470 +5876 57799 0.8320 +5876 57826 0.6200 +5876 64284 0.5920 +5876 64839 0.5240 +5876 79605 0.6010 +5876 81876 0.7860 +5876 83452 0.6750 +5876 83871 0.6090 +5876 84932 0.5880 +5876 84961 0.4430 +5876 84988 0.6190 +5876 92092 0.4410 +5876 115273 0.5500 +5876 115827 0.5670 +5876 116442 0.5730 +5876 142684 0.5730 +5876 326624 0.6030 +5876 338382 0.7880 +5876 339122 0.6820 +5876 347517 0.5450 +5876 375743 0.9990 +5876 376267 0.5990 +5876 401258 0.5950 +5876 401409 0.6840 +5877 5879 0.5460 +5877 5880 0.8690 +5877 5894 0.4710 +5877 5898 0.7340 +5877 5900 0.6720 +5877 5901 0.7920 +5877 5902 0.6800 +5877 5903 0.6230 +5877 5905 0.7230 +5877 5906 0.6080 +5877 5908 0.5620 +5877 5910 0.6440 +5877 5911 0.6370 +5877 5912 0.5860 +5877 5921 0.9300 +5877 5923 0.6430 +5877 5924 0.4750 +5877 5999 0.4010 +5877 6000 0.4270 +5877 6001 0.4070 +5877 6002 0.4250 +5877 6003 0.4250 +5877 6009 0.5610 +5877 6103 0.4990 +5877 6198 0.4170 +5877 6237 0.4920 +5877 6396 0.7160 +5877 6399 0.4810 +5877 6453 0.8610 +5877 6464 0.9020 +5877 6654 0.9800 +5877 6655 0.9650 +5877 6714 0.7600 +5877 6794 0.5970 +5877 6845 0.6430 +5877 6850 0.6390 +5877 6904 0.4480 +5877 7074 0.9330 +5877 7094 0.4890 +5877 7178 0.6720 +5877 7187 0.5100 +5877 7204 0.4980 +5877 7409 0.8050 +5877 7410 0.6770 +5877 7414 0.4320 +5877 7430 0.4040 +5877 7454 0.7270 +5877 7456 0.5680 +5877 7514 0.6250 +5877 7535 0.4320 +5877 7879 0.5100 +5877 8218 0.4370 +5877 8411 0.6880 +5877 8437 0.5060 +5877 8498 0.5640 +5877 8567 0.5540 +5877 8601 0.4190 +5877 8615 0.4290 +5877 8650 0.4830 +5877 8729 0.6690 +5877 8766 0.6630 +5877 8786 0.4270 +5877 8801 0.4180 +5877 8821 0.4760 +5877 8826 0.5310 +5877 8867 0.4930 +5877 8874 0.8040 +5877 8890 0.8600 +5877 8891 0.8490 +5877 8892 0.8670 +5877 8893 0.9010 +5877 8894 0.7670 +5877 8916 0.4570 +5877 8925 0.5460 +5877 8976 0.7120 +5877 8997 0.8480 +5877 9043 0.4510 +5877 9135 0.7000 +5877 9138 0.6350 +5877 9181 0.7920 +5877 9253 0.4760 +5877 9266 0.7240 +5877 9267 0.9130 +5877 9341 0.5220 +5877 9363 0.5210 +5877 9364 0.4500 +5877 9367 0.4570 +5877 9392 0.4040 +5877 9402 0.7610 +5877 9459 0.8260 +5877 9545 0.4860 +5877 9564 0.5020 +5877 9610 0.5090 +5877 9628 0.4270 +5877 9669 0.4650 +5877 9693 0.5890 +5877 9732 0.5000 +5877 9826 0.4950 +5877 9828 0.6340 +5877 9844 0.5810 +5877 9919 0.5380 +5877 9922 0.5290 +5877 10006 0.6730 +5877 10102 0.4790 +5877 10113 0.7340 +5877 10125 0.8270 +5877 10156 0.6250 +5877 10204 0.6560 +5877 10209 0.4740 +5877 10235 0.6310 +5877 10243 0.6340 +5877 10276 0.4340 +5877 10287 0.4320 +5877 10298 0.5370 +5877 10325 0.5970 +5877 10411 0.7430 +5877 10427 0.5700 +5877 10451 0.6480 +5877 10564 0.4400 +5877 10565 0.5950 +5877 10640 0.4150 +5877 10670 0.5970 +5877 10672 0.4620 +5877 10750 0.5730 +5877 10890 0.9110 +5877 10981 0.5150 +5877 11020 0.4240 +5877 11021 0.7500 +5877 11069 0.8830 +5877 11214 0.5280 +5877 11259 0.4780 +5877 22878 0.5220 +5877 22879 0.5700 +5877 22924 0.4780 +5877 23011 0.6270 +5877 23096 0.6130 +5877 23229 0.5790 +5877 23263 0.4300 +5877 23265 0.4890 +5877 23339 0.6020 +5877 23348 0.6670 +5877 23365 0.6890 +5877 23426 0.5190 +5877 23433 0.4770 +5877 23513 0.5580 +5877 23557 0.4110 +5877 23682 0.4890 +5877 25780 0.4480 +5877 25782 0.4120 +5877 25791 0.4470 +5877 26084 0.4470 +5877 26091 0.5450 +5877 26130 0.7050 +5877 26230 0.7210 +5877 26297 0.5760 +5877 26499 0.8460 +5877 26575 0.4180 +5877 27040 0.4090 +5877 27095 0.5120 +5877 27102 0.6510 +5877 27128 0.5240 +5877 27241 0.6570 +5877 28964 0.4700 +5877 28989 0.6520 +5877 29127 0.6260 +5877 29780 0.5810 +5877 50618 0.7370 +5877 50619 0.6050 +5877 50649 0.6080 +5877 50650 0.4040 +5877 51128 0.4070 +5877 51399 0.5500 +5877 51622 0.8430 +5877 51655 0.4550 +5877 51735 0.4370 +5877 51762 0.8040 +5877 51806 0.4930 +5877 54443 0.6100 +5877 54453 0.5770 +5877 54536 0.7460 +5877 55004 0.4030 +5877 55008 0.4850 +5877 55160 0.5510 +5877 55188 0.7850 +5877 55200 0.4240 +5877 55212 0.6120 +5877 55684 0.5110 +5877 55704 0.5070 +5877 55763 0.4390 +5877 55770 0.4300 +5877 55785 0.4750 +5877 55823 0.4390 +5877 56288 0.5570 +5877 56681 0.4730 +5877 56850 0.6630 +5877 57381 0.5560 +5877 57521 0.4950 +5877 57530 0.5590 +5877 57537 0.4610 +5877 57539 0.5280 +5877 57580 0.7930 +5877 57589 0.4080 +5877 57679 0.7480 +5877 57706 0.4130 +5877 57799 0.4400 +5877 58485 0.5940 +5877 58528 0.5960 +5877 60412 0.4770 +5877 60626 0.8740 +5877 63916 0.4680 +5877 64083 0.5050 +5877 64121 0.6700 +5877 64223 0.4120 +5877 64283 0.4570 +5877 64407 0.4020 +5877 64857 0.6150 +5877 79090 0.4460 +5877 79890 0.5790 +5877 80005 0.4300 +5877 80243 0.6650 +5877 81554 0.7370 +5877 81704 0.5070 +5877 81876 0.9540 +5877 83452 0.6060 +5877 83593 0.6220 +5877 83660 0.4790 +5877 84079 0.6230 +5877 84315 0.6810 +5877 84952 0.5010 +5877 85397 0.4060 +5877 85440 0.4010 +5877 91860 0.4710 +5877 92482 0.6800 +5877 115557 0.5740 +5877 115727 0.4590 +5877 115827 0.4080 +5877 116442 0.5230 +5877 117177 0.9100 +5877 121512 0.5910 +5877 126003 0.5030 +5877 129880 0.6680 +5877 132112 0.4860 +5877 133482 0.5070 +5877 139818 0.5620 +5877 142684 0.4010 +5877 149371 0.4460 +5877 158158 0.4080 +5877 160622 0.6230 +5877 163688 0.4660 +5877 196513 0.4240 +5877 200894 0.4160 +5877 219699 0.6150 +5877 221178 0.5020 +5877 221960 0.8360 +5877 253260 0.5570 +5877 259173 0.5630 +5877 282808 0.7500 +5877 285282 0.4030 +5877 285381 0.5000 +5877 339122 0.5670 +5877 344892 0.4540 +5877 376267 0.5380 +5877 389541 0.4500 +5877 401258 0.4200 +5877 401265 0.4290 +5877 401409 0.5610 +5877 431704 0.4350 +5877 440275 0.7920 +5878 5906 0.5380 +5878 5908 0.5540 +5878 6184 0.4700 +5878 6272 0.6250 +5878 6643 0.6390 +5878 6646 0.5320 +5878 6844 0.7620 +5878 6845 0.6110 +5878 6857 0.4400 +5878 7037 0.6590 +5878 7163 0.6130 +5878 7164 0.6070 +5878 7251 0.4180 +5878 7879 0.6700 +5878 8218 0.6580 +5878 8301 0.5620 +5878 8411 0.9880 +5878 8417 0.5170 +5878 8546 0.5390 +5878 8673 0.6090 +5878 8766 0.6480 +5878 8773 0.5260 +5878 8775 0.6050 +5878 8871 0.4270 +5878 8905 0.5080 +5878 8907 0.5530 +5878 9026 0.6870 +5878 9114 0.4230 +5878 9135 0.8430 +5878 9230 0.6300 +5878 9341 0.6640 +5878 9392 0.6650 +5878 9610 0.9380 +5878 9685 0.5850 +5878 9698 0.5270 +5878 9802 0.4160 +5878 9829 0.5780 +5878 10053 0.5410 +5878 10211 0.4640 +5878 10399 0.4300 +5878 10551 0.5400 +5878 10618 0.5950 +5878 10717 0.5200 +5878 10890 0.6610 +5878 11311 0.4170 +5878 22916 0.6020 +5878 23048 0.4370 +5878 23062 0.5440 +5878 23163 0.5440 +5878 23339 0.6070 +5878 23355 0.6590 +5878 23431 0.5490 +5878 23557 0.5390 +5878 25777 0.6340 +5878 25977 0.5110 +5878 26060 0.4620 +5878 26088 0.5290 +5878 26130 0.6710 +5878 26258 0.5530 +5878 26276 0.4530 +5878 27072 0.5230 +5878 27131 0.5780 +5878 51429 0.5500 +5878 51479 0.4940 +5878 51552 0.4970 +5878 51762 0.6210 +5878 54453 0.5640 +5878 54885 0.5110 +5878 55198 0.6800 +5878 55330 0.4990 +5878 55576 0.5010 +5878 55737 0.4450 +5878 55823 0.6080 +5878 57403 0.4820 +5878 57617 0.6110 +5878 57679 0.5710 +5878 64145 0.8670 +5878 64601 0.6320 +5878 65082 0.5120 +5878 79890 0.6960 +5878 81567 0.5060 +5878 81876 0.6030 +5878 84062 0.5040 +5878 92421 0.4070 +5878 126432 0.5790 +5878 130340 0.5080 +5878 152217 0.4450 +5878 259173 0.5770 +5878 286451 0.5050 +5878 346562 0.4490 +5878 388552 0.4990 +5878 392517 0.4930 +5878 729873 0.5260 +5879 5880 0.8230 +5879 5881 0.9180 +5879 5898 0.5490 +5879 5910 0.8400 +5879 5921 0.4050 +5879 5924 0.6460 +5879 6009 0.4650 +5879 6016 0.4230 +5879 6091 0.6130 +5879 6093 0.5070 +5879 6237 0.5890 +5879 6242 0.4080 +5879 6249 0.8030 +5879 6300 0.6240 +5879 6402 0.4810 +5879 6418 0.5430 +5879 6453 0.7410 +5879 6461 0.5490 +5879 6464 0.6180 +5879 6510 0.5560 +5879 6615 0.4910 +5879 6647 0.4480 +5879 6654 0.8400 +5879 6655 0.6650 +5879 6714 0.8560 +5879 6774 0.6930 +5879 6850 0.6540 +5879 7037 0.5810 +5879 7074 0.9660 +5879 7097 0.5610 +5879 7099 0.6060 +5879 7112 0.5650 +5879 7124 0.4500 +5879 7204 0.9940 +5879 7297 0.4010 +5879 7305 0.5810 +5879 7409 0.9720 +5879 7410 0.9260 +5879 7430 0.6100 +5879 7444 0.5610 +5879 7454 0.8980 +5879 7456 0.5320 +5879 7471 0.5960 +5879 7474 0.6210 +5879 7481 0.6130 +5879 7525 0.6660 +5879 7879 0.6380 +5879 7976 0.5410 +5879 7984 0.4240 +5879 8321 0.5680 +5879 8323 0.6140 +5879 8324 0.5710 +5879 8440 0.5910 +5879 8476 0.6470 +5879 8503 0.4140 +5879 8773 0.5910 +5879 8826 0.9880 +5879 8829 0.7050 +5879 8871 0.7080 +5879 8874 0.9570 +5879 8936 0.9060 +5879 8976 0.8480 +5879 8997 0.9590 +5879 9055 0.5380 +5879 9138 0.5540 +5879 9181 0.8230 +5879 9341 0.6160 +5879 9353 0.5780 +5879 9402 0.5860 +5879 9411 0.4910 +5879 9423 0.5950 +5879 9459 0.8180 +5879 9475 0.4820 +5879 9564 0.6360 +5879 9639 0.6040 +5879 9710 0.5870 +5879 9732 0.6570 +5879 9743 0.8230 +5879 9815 0.6040 +5879 9826 0.5980 +5879 9828 0.4380 +5879 9844 0.8390 +5879 9855 0.7730 +5879 9901 0.6830 +5879 9912 0.7600 +5879 9928 0.5750 +5879 9938 0.4600 +5879 10000 0.6200 +5879 10006 0.7740 +5879 10018 0.5570 +5879 10092 0.5580 +5879 10093 0.5740 +5879 10094 0.5760 +5879 10095 0.6390 +5879 10096 0.6610 +5879 10097 0.8120 +5879 10109 0.6450 +5879 10144 0.5900 +5879 10152 0.9660 +5879 10160 0.4630 +5879 10163 0.8820 +5879 10273 0.4160 +5879 10276 0.5870 +5879 10298 0.8090 +5879 10371 0.5680 +5879 10395 0.4700 +5879 10398 0.6070 +5879 10451 0.7770 +5879 10458 0.9640 +5879 10507 0.5800 +5879 10552 0.6710 +5879 10627 0.6210 +5879 10640 0.5230 +5879 10652 0.5780 +5879 10672 0.4940 +5879 10787 0.9900 +5879 10788 0.9190 +5879 10810 0.6150 +5879 10811 0.7460 +5879 10928 0.7580 +5879 10979 0.5930 +5879 11113 0.6340 +5879 11135 0.5440 +5879 11188 0.5680 +5879 11214 0.5800 +5879 11336 0.5230 +5879 22885 0.5310 +5879 22899 0.4060 +5879 22914 0.5350 +5879 22943 0.4790 +5879 23002 0.5050 +5879 23075 0.5920 +5879 23092 0.4210 +5879 23191 0.9930 +5879 23229 0.6300 +5879 23239 0.5130 +5879 23263 0.8250 +5879 23265 0.5610 +5879 23268 0.5570 +5879 23310 0.4040 +5879 23344 0.5490 +5879 23348 0.7040 +5879 23365 0.5410 +5879 23370 0.5800 +5879 23380 0.7400 +5879 23526 0.6700 +5879 23580 0.5490 +5879 23592 0.5470 +5879 23603 0.4150 +5879 23616 0.6340 +5879 23647 0.9930 +5879 25791 0.6190 +5879 25894 0.5830 +5879 26030 0.5980 +5879 26084 0.6120 +5879 26230 0.5380 +5879 26999 0.8710 +5879 27035 0.8110 +5879 27040 0.5830 +5879 27236 0.6880 +5879 27237 0.4150 +5879 27289 0.6570 +5879 28964 0.8260 +5879 29109 0.5670 +5879 29127 0.6440 +5879 29941 0.7930 +5879 50506 0.6440 +5879 50507 0.6910 +5879 50508 0.6600 +5879 50618 0.5940 +5879 50619 0.6030 +5879 50649 0.7300 +5879 50650 0.5390 +5879 50855 0.9100 +5879 51291 0.6820 +5879 51306 0.6090 +5879 51347 0.5820 +5879 51454 0.5470 +5879 51517 0.6330 +5879 51564 0.6180 +5879 51655 0.4370 +5879 51763 0.4420 +5879 53905 0.6720 +5879 54209 0.5340 +5879 54361 0.5550 +5879 54536 0.5460 +5879 54848 0.6020 +5879 55004 0.5650 +5879 55114 0.6200 +5879 55160 0.4090 +5879 55170 0.4150 +5879 55200 0.6270 +5879 55558 0.7930 +5879 55619 0.6480 +5879 55701 0.5070 +5879 55740 0.4950 +5879 55763 0.6340 +5879 55764 0.4560 +5879 55770 0.5370 +5879 55789 0.5520 +5879 55843 0.6750 +5879 55845 0.9640 +5879 55914 0.5860 +5879 55971 0.5930 +5879 56623 0.4380 +5879 56776 0.4780 +5879 56924 0.9340 +5879 56990 0.4080 +5879 57144 0.7730 +5879 57449 0.4370 +5879 57480 0.6440 +5879 57514 0.6560 +5879 57522 0.6600 +5879 57531 0.8660 +5879 57569 0.6080 +5879 57572 0.6860 +5879 57580 0.9930 +5879 57584 0.5140 +5879 57630 0.6080 +5879 57636 0.5930 +5879 57679 0.6450 +5879 58504 0.6480 +5879 60412 0.5470 +5879 63916 0.7890 +5879 64283 0.5330 +5879 64411 0.4560 +5879 64837 0.5330 +5879 64857 0.5770 +5879 79626 0.5960 +5879 79658 0.4160 +5879 79784 0.5220 +5879 80005 0.7390 +5879 80243 0.7790 +5879 80728 0.7100 +5879 81029 0.5520 +5879 81624 0.7370 +5879 81704 0.7240 +5879 81839 0.6080 +5879 83478 0.5020 +5879 83605 0.4620 +5879 84033 0.4400 +5879 84144 0.6450 +5879 84231 0.4890 +5879 84448 0.5310 +5879 84552 0.7430 +5879 84612 0.7770 +5879 84904 0.4380 +5879 85440 0.7760 +5879 89846 0.4140 +5879 89953 0.5330 +5879 91584 0.7730 +5879 94134 0.7010 +5879 94274 0.4990 +5879 103910 0.6490 +5879 115557 0.6570 +5879 115703 0.5030 +5879 116443 0.4340 +5879 116984 0.6300 +5879 116985 0.6080 +5879 117289 0.4850 +5879 120892 0.5700 +5879 121512 0.4090 +5879 124056 0.6920 +5879 128239 0.8110 +5879 128272 0.5960 +5879 139818 0.6840 +5879 140465 0.4110 +5879 143098 0.5890 +5879 143872 0.4690 +5879 147179 0.5790 +5879 147700 0.5320 +5879 149371 0.5010 +5879 152273 0.5780 +5879 221178 0.7090 +5879 221472 0.4160 +5879 257106 0.4730 +5879 284119 0.4670 +5879 347902 0.5900 +5879 389337 0.4690 +5879 390714 0.5070 +5879 445328 0.4060 +5879 644150 0.5250 +5879 653361 0.9760 +5879 100271715 0.4170 +5880 5881 0.9760 +5880 5894 0.4390 +5880 5898 0.9320 +5880 5899 0.9240 +5880 5900 0.9310 +5880 5906 0.5720 +5880 5908 0.6220 +5880 5910 0.6500 +5880 5921 0.6060 +5880 5962 0.4380 +5880 5970 0.9220 +5880 6093 0.5470 +5880 6195 0.4010 +5880 6198 0.5510 +5880 6199 0.5060 +5880 6279 0.7400 +5880 6280 0.6120 +5880 6300 0.5450 +5880 6402 0.4570 +5880 6416 0.9140 +5880 6453 0.6060 +5880 6654 0.4180 +5880 6688 0.4530 +5880 6714 0.9550 +5880 6774 0.5930 +5880 6850 0.7620 +5880 7037 0.5960 +5880 7074 0.9550 +5880 7094 0.4140 +5880 7099 0.4260 +5880 7112 0.5650 +5880 7124 0.4520 +5880 7177 0.4570 +5880 7204 0.6210 +5880 7248 0.5200 +5880 7249 0.5800 +5880 7305 0.4040 +5880 7408 0.4880 +5880 7409 0.9770 +5880 7410 0.9600 +5880 7414 0.4170 +5880 7444 0.5610 +5880 7454 0.9290 +5880 7456 0.5090 +5880 7471 0.5810 +5880 7474 0.6020 +5880 7481 0.5790 +5880 7535 0.4820 +5880 7805 0.6130 +5880 7852 0.4660 +5880 7879 0.6130 +5880 7976 0.5710 +5880 8321 0.5520 +5880 8323 0.6130 +5880 8324 0.5650 +5880 8394 0.9200 +5880 8395 0.9130 +5880 8440 0.9150 +5880 8503 0.9130 +5880 8530 0.5590 +5880 8737 0.5320 +5880 8772 0.4040 +5880 8826 0.9760 +5880 8874 0.9470 +5880 8936 0.9410 +5880 8976 0.9570 +5880 8987 0.5630 +5880 8997 0.4760 +5880 9051 0.4410 +5880 9138 0.4630 +5880 9181 0.4510 +5880 9217 0.5750 +5880 9341 0.6360 +5880 9404 0.5390 +5880 9459 0.9660 +5880 9475 0.4330 +5880 9554 0.4190 +5880 9710 0.5840 +5880 9732 0.5430 +5880 9743 0.5390 +5880 9815 0.6450 +5880 9844 0.9750 +5880 9863 0.4510 +5880 9938 0.4140 +5880 10000 0.6220 +5880 10006 0.7000 +5880 10095 0.5050 +5880 10097 0.5300 +5880 10125 0.4320 +5880 10152 0.9470 +5880 10163 0.9500 +5880 10188 0.4160 +5880 10298 0.9530 +5880 10320 0.4470 +5880 10424 0.5600 +5880 10451 0.9590 +5880 10458 0.9530 +5880 10538 0.4640 +5880 10673 0.5240 +5880 10681 0.7300 +5880 10787 0.9380 +5880 10788 0.9350 +5880 10810 0.9240 +5880 10811 0.9730 +5880 10928 0.9200 +5880 11135 0.5490 +5880 11151 0.6790 +5880 11344 0.6090 +5880 22885 0.9080 +5880 22895 0.4930 +5880 23002 0.5090 +5880 23075 0.5730 +5880 23092 0.5200 +5880 23141 0.6000 +5880 23191 0.9300 +5880 23312 0.4390 +5880 23344 0.5640 +5880 23348 0.4580 +5880 23396 0.9100 +5880 23526 0.4020 +5880 23560 0.4750 +5880 23580 0.5450 +5880 23592 0.5470 +5880 23654 0.9240 +5880 25791 0.9070 +5880 25813 0.5500 +5880 26050 0.5710 +5880 26499 0.4640 +5880 26999 0.9450 +5880 27035 0.9750 +5880 27071 0.9170 +5880 27128 0.4690 +5880 27241 0.7400 +5880 28964 0.7860 +5880 29127 0.8190 +5880 29801 0.4670 +5880 50506 0.8420 +5880 50507 0.7830 +5880 50508 0.7990 +5880 50618 0.5990 +5880 50619 0.7600 +5880 50649 0.9410 +5880 50855 0.9340 +5880 51291 0.4100 +5880 51347 0.5810 +5880 51566 0.5840 +5880 51715 0.4290 +5880 51764 0.6610 +5880 51806 0.4210 +5880 53905 0.7840 +5880 54331 0.6870 +5880 54361 0.5440 +5880 54518 0.5020 +5880 55004 0.5760 +5880 55114 0.5170 +5880 55212 0.7400 +5880 55558 0.9320 +5880 55619 0.6540 +5880 55738 0.6830 +5880 55763 0.4380 +5880 55789 0.5530 +5880 55843 0.5020 +5880 55845 0.6990 +5880 55914 0.5800 +5880 55970 0.6690 +5880 55971 0.5900 +5880 56288 0.9280 +5880 56924 0.9440 +5880 57144 0.9400 +5880 57521 0.4420 +5880 57580 0.9750 +5880 57584 0.5100 +5880 59345 0.7430 +5880 63916 0.9690 +5880 63940 0.6550 +5880 64098 0.4040 +5880 64283 0.5530 +5880 79400 0.6030 +5880 79626 0.4560 +5880 79767 0.6990 +5880 80005 0.6700 +5880 80243 0.4950 +5880 80317 0.5110 +5880 80342 0.4090 +5880 80728 0.5110 +5880 81029 0.5740 +5880 81624 0.7330 +5880 81704 0.5960 +5880 81839 0.6020 +5880 83660 0.4430 +5880 83706 0.4910 +5880 84552 0.9320 +5880 84612 0.9360 +5880 85360 0.5350 +5880 85477 0.5300 +5880 91010 0.4460 +5880 91584 0.9240 +5880 92482 0.7600 +5880 94235 0.6550 +5880 115650 0.5060 +5880 117177 0.7890 +5880 121512 0.5830 +5880 124056 0.9870 +5880 128239 0.9270 +5880 129880 0.7330 +5880 139818 0.4800 +5880 143098 0.5890 +5880 143872 0.4690 +5880 170954 0.4040 +5880 221178 0.9360 +5880 345456 0.4090 +5880 375189 0.4930 +5880 653361 0.9990 +5881 5898 0.9130 +5881 5899 0.9150 +5881 5900 0.9130 +5881 5910 0.5660 +5881 5970 0.9100 +5881 6416 0.9020 +5881 6453 0.5350 +5881 6510 0.5570 +5881 6525 0.5500 +5881 6714 0.9230 +5881 7037 0.5430 +5881 7074 0.9180 +5881 7112 0.5650 +5881 7204 0.9600 +5881 7409 0.9920 +5881 7410 0.9270 +5881 7444 0.5600 +5881 7454 0.5540 +5881 7471 0.5380 +5881 7474 0.5260 +5881 7481 0.5550 +5881 7879 0.5940 +5881 7976 0.5420 +5881 8321 0.5450 +5881 8323 0.5990 +5881 8324 0.5700 +5881 8394 0.9210 +5881 8395 0.9090 +5881 8440 0.9190 +5881 8503 0.9020 +5881 8572 0.9120 +5881 8773 0.5870 +5881 8826 0.9590 +5881 8874 0.9270 +5881 8936 0.9210 +5881 8976 0.9350 +5881 8987 0.5630 +5881 9124 0.5970 +5881 9235 0.5470 +5881 9260 0.6060 +5881 9341 0.5910 +5881 9459 0.9270 +5881 9710 0.5870 +5881 9743 0.4940 +5881 9815 0.5590 +5881 9844 0.9910 +5881 10006 0.6000 +5881 10152 0.9220 +5881 10163 0.9180 +5881 10298 0.9930 +5881 10424 0.5670 +5881 10451 0.9250 +5881 10458 0.9410 +5881 10611 0.5990 +5881 10652 0.5840 +5881 10681 0.7000 +5881 10787 0.9270 +5881 10788 0.9700 +5881 10810 0.9090 +5881 10811 0.5900 +5881 10928 0.9090 +5881 10979 0.5720 +5881 11135 0.5590 +5881 11155 0.5400 +5881 22865 0.5900 +5881 22885 0.9060 +5881 23075 0.5780 +5881 23092 0.4210 +5881 23191 0.9170 +5881 23268 0.4290 +5881 23301 0.6220 +5881 23344 0.5430 +5881 23380 0.5330 +5881 23384 0.5560 +5881 23396 0.9120 +5881 23592 0.5460 +5881 23607 0.9070 +5881 23654 0.9210 +5881 25791 0.9050 +5881 26050 0.5720 +5881 26999 0.9240 +5881 27035 0.8230 +5881 27071 0.9060 +5881 27295 0.5970 +5881 28964 0.5960 +5881 29127 0.5460 +5881 29941 0.4020 +5881 29964 0.6070 +5881 50506 0.5750 +5881 50507 0.5780 +5881 50508 0.5950 +5881 50618 0.5360 +5881 50649 0.9330 +5881 50855 0.9350 +5881 51347 0.5780 +5881 51571 0.8120 +5881 51764 0.6710 +5881 53904 0.9060 +5881 53905 0.5750 +5881 54331 0.6500 +5881 54361 0.5260 +5881 55004 0.5590 +5881 55114 0.4700 +5881 55558 0.9290 +5881 55604 0.6230 +5881 55619 0.9530 +5881 55763 0.4030 +5881 55789 0.5520 +5881 55843 0.5230 +5881 55845 0.5860 +5881 55914 0.5760 +5881 55970 0.6550 +5881 55971 0.5920 +5881 56288 0.9190 +5881 56924 0.9340 +5881 56940 0.7390 +5881 57144 0.9340 +5881 57580 0.9930 +5881 57584 0.4790 +5881 59345 0.7300 +5881 63916 0.9140 +5881 64236 0.6030 +5881 64283 0.4630 +5881 64411 0.5040 +5881 80005 0.9370 +5881 80728 0.5560 +5881 81029 0.5260 +5881 81624 0.6460 +5881 81839 0.6020 +5881 83700 0.7200 +5881 83715 0.7550 +5881 84552 0.9330 +5881 84612 0.9460 +5881 84700 0.4210 +5881 85360 0.5550 +5881 91584 0.9190 +5881 92521 0.5950 +5881 94235 0.6550 +5881 116984 0.4850 +5881 124056 0.6200 +5881 128239 0.9350 +5881 143098 0.5890 +5881 143872 0.4690 +5881 219537 0.5400 +5881 221178 0.9330 +5881 254102 0.5870 +5881 342527 0.5410 +5881 347902 0.5890 +5881 653361 0.8510 +5883 5884 0.9990 +5883 5888 0.9510 +5883 5889 0.7620 +5883 5890 0.7110 +5883 5892 0.7110 +5883 5893 0.8620 +5883 5932 0.8180 +5883 5980 0.5440 +5883 5981 0.5880 +5883 5982 0.9970 +5883 5983 0.9810 +5883 5984 0.9780 +5883 5985 0.9870 +5883 6117 0.9850 +5883 6118 0.8460 +5883 6119 0.7480 +5883 6419 0.4700 +5883 6596 0.4520 +5883 6996 0.4990 +5883 7150 0.4770 +5883 7156 0.7030 +5883 7157 0.8130 +5883 7158 0.9050 +5883 7334 0.4490 +5883 7465 0.4560 +5883 7486 0.8690 +5883 7507 0.5070 +5883 7508 0.4880 +5883 7515 0.5550 +5883 7516 0.6470 +5883 7517 0.5610 +5883 7518 0.5010 +5883 7520 0.8060 +5883 7979 0.5700 +5883 8290 0.8760 +5883 8317 0.4960 +5883 8318 0.7720 +5883 8337 0.8670 +5883 8338 0.8660 +5883 8356 0.8760 +5883 8454 0.4080 +5883 8914 0.6790 +5883 9025 0.4340 +5883 9156 0.8730 +5883 9400 0.4180 +5883 9401 0.4980 +5883 9656 0.9220 +5883 9780 0.4080 +5883 9874 0.8730 +5883 10111 0.6120 +5883 10116 0.6440 +5883 10459 0.6930 +5883 10524 0.6600 +5883 10926 0.4610 +5883 11011 0.4420 +5883 11073 0.9990 +5883 11169 0.4670 +5883 11200 0.9810 +5883 11201 0.5250 +5883 11284 0.4080 +5883 22976 0.5690 +5883 23137 0.8330 +5883 23626 0.4300 +5883 25788 0.4680 +5883 25842 0.5580 +5883 27301 0.4380 +5883 27343 0.6830 +5883 29072 0.4160 +5883 29803 0.4590 +5883 50485 0.4600 +5883 51455 0.5190 +5883 51548 0.7160 +5883 54107 0.4270 +5883 54465 0.6210 +5883 54921 0.5160 +5883 54962 0.7260 +5883 55723 0.5410 +5883 55775 0.5210 +5883 56852 0.5790 +5883 56916 0.4590 +5883 57697 0.5810 +5883 63895 0.4060 +5883 63922 0.6480 +5883 63967 0.9840 +5883 79661 0.5950 +5883 79677 0.8400 +5883 79840 0.6130 +5883 79915 0.8980 +5883 79991 0.5500 +5883 80010 0.7030 +5883 80198 0.5860 +5883 81620 0.4250 +5883 83695 0.9700 +5883 83990 0.8120 +5883 84126 0.9920 +5883 84250 0.6500 +5883 84444 0.6790 +5883 84464 0.6090 +5883 90381 0.6330 +5883 91442 0.4350 +5883 116028 0.6940 +5883 135458 0.9970 +5883 144715 0.9190 +5883 146956 0.5170 +5883 165918 0.4150 +5883 254394 0.4240 +5883 254528 0.5000 +5883 286204 0.8190 +5883 348654 0.4150 +5883 400451 0.4290 +5883 440093 0.8760 +5883 440686 0.8760 +5883 653604 0.8760 +5884 5888 0.8840 +5884 5889 0.7470 +5884 5890 0.7030 +5884 5892 0.7150 +5884 5893 0.8640 +5884 5932 0.7900 +5884 5980 0.6310 +5884 5981 0.8690 +5884 5982 0.9990 +5884 5983 0.9990 +5884 5984 0.9990 +5884 5985 0.9990 +5884 6117 0.9500 +5884 6118 0.8390 +5884 6119 0.8280 +5884 6596 0.4720 +5884 6742 0.4010 +5884 7150 0.4650 +5884 7153 0.4940 +5884 7155 0.4080 +5884 7156 0.8070 +5884 7157 0.8070 +5884 7158 0.9260 +5884 7336 0.4010 +5884 7398 0.4140 +5884 7465 0.5890 +5884 7486 0.8990 +5884 7507 0.4800 +5884 7508 0.4440 +5884 7515 0.5750 +5884 7516 0.6540 +5884 7517 0.5970 +5884 7518 0.4770 +5884 7520 0.7910 +5884 7979 0.5380 +5884 8317 0.5270 +5884 8318 0.7780 +5884 8438 0.4270 +5884 8454 0.4210 +5884 8493 0.4040 +5884 8914 0.7060 +5884 9025 0.4050 +5884 9156 0.8900 +5884 9400 0.4330 +5884 9401 0.7410 +5884 9656 0.8310 +5884 9780 0.5970 +5884 9887 0.4040 +5884 9937 0.4930 +5884 9978 0.5160 +5884 10038 0.4500 +5884 10111 0.8290 +5884 10116 0.5190 +5884 10459 0.6080 +5884 10524 0.6100 +5884 10721 0.4620 +5884 10868 0.5590 +5884 11044 0.5020 +5884 11073 0.9770 +5884 11169 0.5930 +5884 11200 0.8890 +5884 11201 0.5050 +5884 22976 0.6830 +5884 23137 0.8750 +5884 23626 0.5020 +5884 23649 0.4340 +5884 25788 0.5480 +5884 27343 0.5910 +5884 27434 0.5630 +5884 50485 0.4760 +5884 51340 0.4110 +5884 51343 0.4630 +5884 51455 0.4560 +5884 51750 0.4330 +5884 54107 0.4330 +5884 54465 0.5980 +5884 54780 0.6270 +5884 54921 0.7090 +5884 54962 0.8330 +5884 55215 0.4390 +5884 55536 0.8340 +5884 56852 0.7690 +5884 57379 0.5240 +5884 57505 0.5600 +5884 57697 0.6480 +5884 63895 0.5970 +5884 63922 0.9610 +5884 63967 0.9490 +5884 79075 0.7230 +5884 79648 0.4070 +5884 79677 0.7810 +5884 79840 0.5360 +5884 79915 0.9690 +5884 79991 0.6020 +5884 80010 0.6960 +5884 80119 0.4600 +5884 80198 0.6520 +5884 81620 0.6150 +5884 83695 0.6670 +5884 83990 0.8150 +5884 84126 0.9800 +5884 84250 0.5460 +5884 84464 0.4710 +5884 91442 0.4740 +5884 113510 0.4650 +5884 114799 0.4460 +5884 116028 0.6040 +5884 129607 0.5760 +5884 135458 0.8700 +5884 144715 0.9840 +5884 163126 0.4690 +5884 254394 0.5410 +5884 254528 0.4530 +5884 286053 0.4390 +5884 286204 0.4210 +5884 353497 0.4360 +5884 493861 0.6300 +5884 548593 0.4150 +5884 728642 0.4470 +5885 5888 0.6190 +5885 5889 0.4930 +5885 5893 0.4220 +5885 5978 0.5850 +5885 5982 0.5700 +5885 5983 0.7080 +5885 5984 0.6070 +5885 5985 0.6980 +5885 5993 0.4590 +5885 6240 0.4740 +5885 6299 0.4690 +5885 6427 0.5720 +5885 6594 0.4730 +5885 6595 0.6040 +5885 6597 0.7720 +5885 6598 0.4910 +5885 6613 0.4810 +5885 6738 0.4910 +5885 6790 0.6340 +5885 6829 0.5650 +5885 6847 0.7400 +5885 6872 0.4770 +5885 6908 0.7930 +5885 7004 0.5120 +5885 7013 0.6830 +5885 7014 0.5730 +5885 7026 0.4090 +5885 7112 0.4510 +5885 7150 0.6020 +5885 7153 0.6930 +5885 7155 0.6200 +5885 7157 0.5040 +5885 7182 0.4560 +5885 7227 0.4090 +5885 7306 0.4650 +5885 7307 0.5850 +5885 7329 0.5990 +5885 7334 0.4180 +5885 7336 0.4630 +5885 7341 0.5570 +5885 7392 0.5140 +5885 7403 0.4290 +5885 7415 0.4450 +5885 7465 0.7080 +5885 7490 0.4900 +5885 7517 0.4060 +5885 7528 0.9020 +5885 7702 0.8180 +5885 7913 0.5680 +5885 7936 0.4080 +5885 8202 0.7340 +5885 8233 0.5870 +5885 8243 0.9990 +5885 8290 0.7670 +5885 8317 0.5600 +5885 8331 0.5540 +5885 8334 0.5630 +5885 8337 0.6820 +5885 8338 0.6750 +5885 8340 0.6130 +5885 8341 0.6120 +5885 8342 0.6260 +5885 8345 0.6220 +5885 8347 0.6200 +5885 8348 0.6360 +5885 8349 0.6930 +5885 8356 0.8000 +5885 8361 0.8360 +5885 8467 0.9060 +5885 8468 0.5420 +5885 8493 0.4050 +5885 8556 0.6250 +5885 8667 0.6570 +5885 8726 0.5270 +5885 8881 0.4530 +5885 8914 0.5540 +5885 8970 0.6130 +5885 8975 0.4750 +5885 9088 0.6550 +5885 9126 0.9990 +5885 9133 0.8110 +5885 9156 0.5840 +5885 9184 0.5190 +5885 9212 0.8560 +5885 9232 0.7890 +5885 9319 0.5230 +5885 9493 0.5040 +5885 9656 0.4730 +5885 9700 0.9970 +5885 9787 0.4530 +5885 9793 0.5420 +5885 9897 0.6620 +5885 9918 0.8280 +5885 9968 0.4040 +5885 9985 0.9650 +5885 10038 0.5030 +5885 10039 0.4330 +5885 10051 0.9620 +5885 10097 0.4590 +5885 10127 0.5690 +5885 10250 0.4350 +5885 10274 0.9990 +5885 10291 0.4420 +5885 10320 0.6470 +5885 10388 0.6710 +5885 10434 0.5530 +5885 10592 0.8230 +5885 10606 0.4250 +5885 10664 0.9990 +5885 10733 0.5430 +5885 10734 0.9990 +5885 10735 0.9990 +5885 10744 0.6020 +5885 10769 0.6770 +5885 10776 0.5020 +5885 10782 0.4360 +5885 10926 0.4700 +5885 10946 0.4040 +5885 11004 0.5300 +5885 11044 0.4840 +5885 11083 0.5280 +5885 11130 0.4950 +5885 11169 0.6790 +5885 11200 0.4350 +5885 11335 0.6570 +5885 23047 0.9980 +5885 23063 0.9990 +5885 23137 0.9520 +5885 23224 0.5180 +5885 23244 0.9990 +5885 23310 0.6880 +5885 23345 0.5480 +5885 23353 0.5970 +5885 23383 0.9020 +5885 23397 0.8640 +5885 23468 0.4210 +5885 23476 0.6350 +5885 23512 0.7270 +5885 23626 0.7540 +5885 23649 0.5740 +5885 25777 0.5530 +5885 25836 0.9990 +5885 25913 0.5520 +5885 25942 0.5070 +5885 26036 0.5480 +5885 26040 0.4980 +5885 26277 0.6200 +5885 27030 0.4170 +5885 27127 0.9990 +5885 27159 0.5810 +5885 29101 0.6700 +5885 29123 0.5230 +5885 29127 0.5560 +5885 29781 0.5840 +5885 50511 0.7570 +5885 51143 0.4300 +5885 54108 0.5520 +5885 54145 0.6130 +5885 54386 0.5640 +5885 54780 0.7230 +5885 54790 0.5330 +5885 54821 0.5210 +5885 54892 0.7380 +5885 54921 0.7650 +5885 54962 0.4750 +5885 55143 0.5800 +5885 55252 0.4200 +5885 55255 0.4040 +5885 55294 0.4600 +5885 55766 0.5760 +5885 55869 0.8560 +5885 56158 0.6440 +5885 56160 0.8720 +5885 57082 0.6160 +5885 57332 0.5270 +5885 57504 0.4030 +5885 57697 0.4370 +5885 63035 0.5450 +5885 63922 0.8900 +5885 64151 0.8190 +5885 64282 0.6530 +5885 66005 0.4850 +5885 79075 0.7720 +5885 79677 0.9300 +5885 79682 0.4210 +5885 79915 0.5100 +5885 80198 0.4820 +5885 80262 0.4870 +5885 84057 0.5920 +5885 84072 0.5770 +5885 84294 0.6120 +5885 84295 0.5920 +5885 84450 0.5040 +5885 84930 0.4790 +5885 85236 0.6170 +5885 85417 0.4600 +5885 90390 0.5520 +5885 91687 0.5100 +5885 93426 0.6700 +5885 94239 0.6660 +5885 113130 0.9880 +5885 114799 0.9590 +5885 126520 0.6410 +5885 128312 0.6140 +5885 133015 0.4130 +5885 135138 0.4130 +5885 140690 0.8870 +5885 147841 0.4310 +5885 147912 0.6190 +5885 149076 0.4800 +5885 150280 0.5350 +5885 151246 0.9880 +5885 151648 0.9730 +5885 151651 0.4170 +5885 157570 0.9630 +5885 164045 0.4120 +5885 165918 0.4210 +5885 171023 0.6300 +5885 197335 0.5530 +5885 197370 0.6000 +5885 219670 0.4990 +5885 255626 0.6130 +5885 256126 0.6620 +5885 286053 0.7790 +5885 348235 0.4540 +5885 440093 0.5530 +5885 440686 0.5530 +5885 474382 0.5500 +5885 493861 0.6630 +5885 494551 0.6440 +5885 642636 0.7610 +5885 644186 0.5880 +5885 653604 0.7830 +5885 100130958 0.4170 +5886 5887 0.9550 +5886 5888 0.4850 +5886 5893 0.4290 +5886 6117 0.5260 +5886 6118 0.5700 +5886 6119 0.6600 +5886 6124 0.4050 +5886 6125 0.5860 +5886 6128 0.4340 +5886 6132 0.4710 +5886 6133 0.4410 +5886 6135 0.6980 +5886 6137 0.5690 +5886 6138 0.5910 +5886 6141 0.5240 +5886 6142 0.5520 +5886 6143 0.6340 +5886 6144 0.6280 +5886 6146 0.4270 +5886 6147 0.6140 +5886 6152 0.5980 +5886 6154 0.4250 +5886 6155 0.4400 +5886 6156 0.5810 +5886 6158 0.5160 +5886 6159 0.5940 +5886 6160 0.5870 +5886 6164 0.6110 +5886 6165 0.5970 +5886 6166 0.4590 +5886 6168 0.5790 +5886 6169 0.6190 +5886 6173 0.4520 +5886 6175 0.4560 +5886 6176 0.5360 +5886 6181 0.5080 +5886 6183 0.4390 +5886 6187 0.4670 +5886 6188 0.6100 +5886 6189 0.6250 +5886 6191 0.4850 +5886 6192 0.4940 +5886 6193 0.4490 +5886 6194 0.5930 +5886 6201 0.5540 +5886 6202 0.5970 +5886 6203 0.4450 +5886 6204 0.4290 +5886 6205 0.6320 +5886 6208 0.5110 +5886 6209 0.6040 +5886 6218 0.5650 +5886 6222 0.6140 +5886 6223 0.5820 +5886 6224 0.4630 +5886 6227 0.6200 +5886 6228 0.4290 +5886 6229 0.6360 +5886 6230 0.6400 +5886 6231 0.6470 +5886 6232 0.4990 +5886 6233 0.9760 +5886 6234 0.6110 +5886 6235 0.4620 +5886 6314 0.4720 +5886 6449 0.5820 +5886 6500 0.4530 +5886 6596 0.4480 +5886 6612 0.7280 +5886 6613 0.6850 +5886 6647 0.5180 +5886 6996 0.5310 +5886 7150 0.4310 +5886 7157 0.6570 +5886 7178 0.4990 +5886 7186 0.6880 +5886 7264 0.4100 +5886 7267 0.5340 +5886 7291 0.4590 +5886 7311 0.9840 +5886 7314 0.9820 +5886 7316 0.9980 +5886 7317 0.8940 +5886 7322 0.4040 +5886 7323 0.4190 +5886 7329 0.6740 +5886 7332 0.4370 +5886 7334 0.7220 +5886 7335 0.4020 +5886 7336 0.7350 +5886 7337 0.9740 +5886 7341 0.7050 +5886 7347 0.7020 +5886 7353 0.6000 +5886 7398 0.5840 +5886 7415 0.8730 +5886 7507 0.9260 +5886 7508 0.9980 +5886 7515 0.4430 +5886 7528 0.5180 +5886 7837 0.4080 +5886 7874 0.4720 +5886 7979 0.4090 +5886 8078 0.7740 +5886 8340 0.4480 +5886 8341 0.4470 +5886 8342 0.4490 +5886 8345 0.4480 +5886 8347 0.4460 +5886 8348 0.4550 +5886 8361 0.4500 +5886 8450 0.6240 +5886 8451 0.7200 +5886 8452 0.4050 +5886 8454 0.4390 +5886 8468 0.4640 +5886 8533 0.5430 +5886 8554 0.4700 +5886 8607 0.4550 +5886 8666 0.4190 +5886 8721 0.4050 +5886 8878 0.6450 +5886 8970 0.4480 +5886 8975 0.4560 +5886 9025 0.4570 +5886 9039 0.6800 +5886 9045 0.4340 +5886 9097 0.7970 +5886 9146 0.4040 +5886 9156 0.4320 +5886 9187 0.4060 +5886 9318 0.5510 +5886 9320 0.4970 +5886 9349 0.5610 +5886 9354 0.9000 +5886 9557 0.5940 +5886 9709 0.6360 +5886 9861 0.6100 +5886 9929 0.6660 +5886 9978 0.6820 +5886 10038 0.6080 +5886 10054 0.8840 +5886 10213 0.8650 +5886 10277 0.9540 +5886 10300 0.4570 +5886 10399 0.4550 +5886 10401 0.4480 +5886 10425 0.4190 +5886 10445 0.4900 +5886 10535 0.4790 +5886 10537 0.5180 +5886 10661 0.5600 +5886 10844 0.4660 +5886 10920 0.5670 +5886 10963 0.4410 +5886 10980 0.7020 +5886 10987 0.7070 +5886 11047 0.9480 +5886 11140 0.4580 +5886 11224 0.5700 +5886 22888 0.5830 +5886 22992 0.5300 +5886 23392 0.5010 +5886 23521 0.4550 +5886 23548 0.5310 +5886 23583 0.4900 +5886 23640 0.4300 +5886 25769 0.4060 +5886 25873 0.6190 +5886 27246 0.4920 +5886 27319 0.4220 +5886 28998 0.4510 +5886 29115 0.4410 +5886 29761 0.7000 +5886 29844 0.4140 +5886 29978 0.9390 +5886 29979 0.9250 +5886 30827 0.4230 +5886 50613 0.6030 +5886 50813 0.5800 +5886 51035 0.5330 +5886 51065 0.4960 +5886 51069 0.4870 +5886 51073 0.4480 +5886 51081 0.5050 +5886 51116 0.4110 +5886 51121 0.4240 +5886 51138 0.5890 +5886 51154 0.4440 +5886 51280 0.4060 +5886 51377 0.6160 +5886 51608 0.7680 +5886 51720 0.6300 +5886 53335 0.4640 +5886 54033 0.4190 +5886 54145 0.4470 +5886 54557 0.5340 +5886 54617 0.4880 +5886 54665 0.4050 +5886 54778 0.4880 +5886 54891 0.4340 +5886 55173 0.4500 +5886 55236 0.4830 +5886 55272 0.4950 +5886 55316 0.4650 +5886 55611 0.5440 +5886 55651 0.4090 +5886 55666 0.6050 +5886 55768 0.9710 +5886 55811 0.4690 +5886 55968 0.4140 +5886 56061 0.4370 +5886 56675 0.5130 +5886 56852 0.4800 +5886 56893 0.7560 +5886 56949 0.4040 +5886 57419 0.4060 +5886 59286 0.4700 +5886 60678 0.4470 +5886 63893 0.4400 +5886 63931 0.4620 +5886 64374 0.4010 +5886 64708 0.6060 +5886 64960 0.4390 +5886 64963 0.5300 +5886 64969 0.4440 +5886 65008 0.4080 +5886 79016 0.4780 +5886 79029 0.4030 +5886 79184 0.5090 +5886 79590 0.4460 +5886 79913 0.4580 +5886 80013 0.6140 +5886 80198 0.4560 +5886 80233 0.4700 +5886 81858 0.4060 +5886 83444 0.5210 +5886 83473 0.4800 +5886 83714 0.5120 +5886 84153 0.4360 +5886 84196 0.4460 +5886 84231 0.5700 +5886 84301 0.8010 +5886 84678 0.5250 +5886 84954 0.4610 +5886 84993 0.6060 +5886 85236 0.4460 +5886 92552 0.9640 +5886 93973 0.4700 +5886 114803 0.4400 +5886 114987 0.4460 +5886 123041 0.4060 +5886 125476 0.4060 +5886 126119 0.6760 +5886 126402 0.4410 +5886 128312 0.4470 +5886 134510 0.6280 +5886 137902 0.4040 +5886 140032 0.4780 +5886 143630 0.5370 +5886 152518 0.4410 +5886 158983 0.4470 +5886 197342 0.4120 +5886 200916 0.4100 +5886 221302 0.5560 +5886 255626 0.4460 +5886 283652 0.4220 +5886 283899 0.5140 +5886 286436 0.4470 +5886 404672 0.7570 +5886 414301 0.6570 +5886 440689 0.4520 +5886 100529097 0.4480 +5886 100529239 0.4200 +5886 100533467 0.5130 +5886 114483833 0.4470 +5887 5888 0.6110 +5887 5890 0.4370 +5887 5893 0.6260 +5887 6117 0.7980 +5887 6118 0.6910 +5887 6119 0.7560 +5887 6122 0.4190 +5887 6124 0.4060 +5887 6125 0.6220 +5887 6128 0.4670 +5887 6129 0.4270 +5887 6130 0.4010 +5887 6132 0.5070 +5887 6133 0.4530 +5887 6135 0.6810 +5887 6137 0.5850 +5887 6138 0.6060 +5887 6139 0.4500 +5887 6141 0.5160 +5887 6142 0.5740 +5887 6143 0.6530 +5887 6144 0.7400 +5887 6146 0.4360 +5887 6147 0.6580 +5887 6152 0.6090 +5887 6154 0.4570 +5887 6155 0.4490 +5887 6156 0.5860 +5887 6158 0.5250 +5887 6159 0.6060 +5887 6160 0.5980 +5887 6164 0.6210 +5887 6165 0.6050 +5887 6166 0.4860 +5887 6168 0.5810 +5887 6169 0.6370 +5887 6173 0.4480 +5887 6175 0.5010 +5887 6176 0.5680 +5887 6181 0.5170 +5887 6183 0.4460 +5887 6187 0.4860 +5887 6188 0.6140 +5887 6189 0.6440 +5887 6191 0.5080 +5887 6192 0.4840 +5887 6193 0.5020 +5887 6194 0.6200 +5887 6201 0.6020 +5887 6202 0.6080 +5887 6203 0.4520 +5887 6204 0.5120 +5887 6205 0.6040 +5887 6206 0.4090 +5887 6207 0.4390 +5887 6208 0.5540 +5887 6209 0.6450 +5887 6210 0.4390 +5887 6217 0.4080 +5887 6218 0.5650 +5887 6222 0.6580 +5887 6223 0.6300 +5887 6224 0.4630 +5887 6227 0.7090 +5887 6228 0.4650 +5887 6229 0.6780 +5887 6230 0.6720 +5887 6231 0.6600 +5887 6232 0.5540 +5887 6233 0.8220 +5887 6234 0.6370 +5887 6235 0.5240 +5887 6314 0.5460 +5887 6449 0.5810 +5887 6500 0.4480 +5887 6596 0.4760 +5887 6598 0.7380 +5887 6612 0.6900 +5887 6613 0.6620 +5887 6636 0.5360 +5887 6657 0.6420 +5887 6829 0.4050 +5887 6885 0.4200 +5887 6940 0.4190 +5887 6996 0.7480 +5887 7150 0.5000 +5887 7157 0.6760 +5887 7158 0.5850 +5887 7178 0.5160 +5887 7267 0.5350 +5887 7311 0.8740 +5887 7314 0.8370 +5887 7316 0.9700 +5887 7317 0.6420 +5887 7329 0.6590 +5887 7334 0.7510 +5887 7336 0.7520 +5887 7337 0.7590 +5887 7341 0.7150 +5887 7347 0.6140 +5887 7353 0.5840 +5887 7398 0.5810 +5887 7415 0.8780 +5887 7507 0.9970 +5887 7508 0.9990 +5887 7515 0.8070 +5887 7516 0.5980 +5887 7517 0.6910 +5887 7518 0.9420 +5887 7520 0.9470 +5887 7528 0.5550 +5887 7763 0.5810 +5887 7874 0.6030 +5887 7979 0.6720 +5887 8078 0.5900 +5887 8317 0.4890 +5887 8337 0.4220 +5887 8338 0.4200 +5887 8340 0.4180 +5887 8341 0.4390 +5887 8342 0.4200 +5887 8345 0.4400 +5887 8347 0.4400 +5887 8348 0.4580 +5887 8356 0.4210 +5887 8361 0.6650 +5887 8450 0.6650 +5887 8451 0.7830 +5887 8452 0.5890 +5887 8454 0.4280 +5887 8468 0.4680 +5887 8533 0.5090 +5887 8554 0.4680 +5887 8607 0.4590 +5887 8662 0.4190 +5887 8663 0.4120 +5887 8970 0.4400 +5887 9025 0.4720 +5887 9039 0.4630 +5887 9040 0.4510 +5887 9045 0.4440 +5887 9097 0.7620 +5887 9156 0.4650 +5887 9187 0.4060 +5887 9318 0.5800 +5887 9320 0.4670 +5887 9349 0.6110 +5887 9354 0.7990 +5887 9373 0.4010 +5887 9401 0.4520 +5887 9557 0.6450 +5887 9861 0.8650 +5887 9929 0.7760 +5887 9978 0.7210 +5887 10013 0.5240 +5887 10038 0.6210 +5887 10054 0.6700 +5887 10213 0.9510 +5887 10277 0.9690 +5887 10399 0.4660 +5887 10401 0.4830 +5887 10445 0.4320 +5887 10459 0.5100 +5887 10474 0.4770 +5887 10528 0.5660 +5887 10535 0.4580 +5887 10881 0.4210 +5887 10920 0.5550 +5887 10973 0.5670 +5887 10980 0.6190 +5887 10987 0.6870 +5887 11047 0.8170 +5887 11124 0.5110 +5887 11224 0.6210 +5887 11321 0.4950 +5887 22888 0.5400 +5887 22992 0.5310 +5887 23028 0.9100 +5887 23186 0.9040 +5887 23392 0.7380 +5887 23521 0.4820 +5887 23548 0.5310 +5887 23583 0.4230 +5887 23603 0.4860 +5887 25769 0.4060 +5887 25873 0.6310 +5887 26043 0.4770 +5887 26135 0.4120 +5887 27030 0.7130 +5887 27343 0.4390 +5887 28998 0.4580 +5887 29761 0.8490 +5887 29844 0.4090 +5887 29978 0.7780 +5887 29979 0.8810 +5887 50613 0.5360 +5887 50813 0.5520 +5887 51008 0.5610 +5887 51035 0.9010 +5887 51065 0.4960 +5887 51069 0.4580 +5887 51073 0.4010 +5887 51081 0.4450 +5887 51121 0.4330 +5887 51138 0.5830 +5887 51154 0.4350 +5887 51280 0.4070 +5887 51317 0.9080 +5887 51377 0.6330 +5887 51608 0.7640 +5887 54033 0.4190 +5887 54145 0.4400 +5887 54557 0.5350 +5887 54617 0.4960 +5887 54778 0.5930 +5887 54891 0.4350 +5887 55173 0.4480 +5887 55215 0.6940 +5887 55236 0.4170 +5887 55272 0.4540 +5887 55316 0.4540 +5887 55651 0.4180 +5887 55666 0.6810 +5887 55766 0.4460 +5887 55768 0.9970 +5887 55929 0.4010 +5887 56061 0.4540 +5887 56675 0.5120 +5887 56852 0.4920 +5887 56893 0.7000 +5887 56949 0.6150 +5887 57419 0.4060 +5887 57654 0.6390 +5887 58499 0.5040 +5887 63931 0.4620 +5887 63941 0.4200 +5887 64326 0.4170 +5887 64374 0.4010 +5887 64421 0.9190 +5887 64708 0.5520 +5887 64963 0.5080 +5887 64969 0.4250 +5887 65008 0.4110 +5887 79029 0.4150 +5887 79077 0.4490 +5887 79139 0.8360 +5887 79184 0.4970 +5887 79590 0.4250 +5887 79661 0.4210 +5887 79728 0.6470 +5887 79840 0.9330 +5887 79913 0.4750 +5887 79968 0.5550 +5887 80233 0.4470 +5887 83444 0.4990 +5887 83473 0.4790 +5887 83714 0.5120 +5887 83852 0.4560 +5887 84164 0.5720 +5887 84196 0.4480 +5887 84231 0.5660 +5887 84301 0.8510 +5887 84447 0.4600 +5887 84678 0.5250 +5887 84954 0.4400 +5887 84993 0.7750 +5887 85236 0.4170 +5887 91419 0.9050 +5887 92552 0.9650 +5887 93973 0.4700 +5887 114781 0.4470 +5887 114803 0.4530 +5887 114987 0.4460 +5887 123041 0.4060 +5887 125150 0.9000 +5887 125476 0.4070 +5887 126074 0.9000 +5887 126119 0.7700 +5887 126402 0.4410 +5887 127002 0.5110 +5887 128312 0.4400 +5887 134510 0.5970 +5887 140032 0.4780 +5887 143384 0.4390 +5887 143630 0.4800 +5887 152518 0.4410 +5887 152559 0.4220 +5887 158431 0.4070 +5887 158983 0.4390 +5887 161829 0.4230 +5887 162387 0.4090 +5887 200916 0.4180 +5887 221302 0.4560 +5887 222255 0.5070 +5887 255626 0.4190 +5887 283652 0.4060 +5887 283899 0.4830 +5887 286257 0.9070 +5887 286436 0.4400 +5887 337867 0.4930 +5887 404672 0.9240 +5887 414301 0.4930 +5887 440689 0.4550 +5887 100131755 0.4370 +5887 100529097 0.4480 +5887 100529239 0.4200 +5887 100533467 0.6790 +5887 105375355 0.5400 +5887 114483833 0.4400 +5888 5889 0.9960 +5888 5890 0.9040 +5888 5892 0.8870 +5888 5893 0.9990 +5888 5925 0.5480 +5888 5932 0.9540 +5888 5965 0.7800 +5888 5970 0.4300 +5888 5976 0.6320 +5888 5980 0.8810 +5888 5981 0.6200 +5888 5982 0.7860 +5888 5983 0.8330 +5888 5984 0.8880 +5888 5985 0.8690 +5888 6015 0.7820 +5888 6045 0.8040 +5888 6047 0.4970 +5888 6059 0.4810 +5888 6117 0.9960 +5888 6118 0.9550 +5888 6119 0.8510 +5888 6233 0.5120 +5888 6240 0.6210 +5888 6241 0.7090 +5888 6421 0.4700 +5888 6426 0.6770 +5888 6472 0.5090 +5888 6499 0.4790 +5888 6502 0.4100 +5888 6573 0.4360 +5888 6594 0.5250 +5888 6595 0.7720 +5888 6596 0.9200 +5888 6597 0.7650 +5888 6612 0.5330 +5888 6613 0.8180 +5888 6648 0.4020 +5888 6742 0.6620 +5888 6790 0.6710 +5888 6847 0.6150 +5888 6905 0.5430 +5888 6996 0.4690 +5888 7001 0.4110 +5888 7003 0.5010 +5888 7013 0.5060 +5888 7015 0.6420 +5888 7027 0.6030 +5888 7029 0.6220 +5888 7035 0.4280 +5888 7083 0.7440 +5888 7150 0.6880 +5888 7153 0.7990 +5888 7155 0.5040 +5888 7156 0.9680 +5888 7157 0.9990 +5888 7158 0.9400 +5888 7167 0.4850 +5888 7272 0.7680 +5888 7283 0.6120 +5888 7298 0.7530 +5888 7311 0.4560 +5888 7314 0.4810 +5888 7316 0.5040 +5888 7319 0.4780 +5888 7320 0.4770 +5888 7321 0.5580 +5888 7329 0.9550 +5888 7334 0.6800 +5888 7336 0.8320 +5888 7341 0.9720 +5888 7347 0.6090 +5888 7372 0.5240 +5888 7374 0.6880 +5888 7398 0.5160 +5888 7407 0.4300 +5888 7415 0.6370 +5888 7465 0.6050 +5888 7468 0.4230 +5888 7486 0.9930 +5888 7507 0.8460 +5888 7508 0.6190 +5888 7514 0.4680 +5888 7515 0.8370 +5888 7516 0.9810 +5888 7517 0.9980 +5888 7518 0.7480 +5888 7520 0.8550 +5888 7703 0.7440 +5888 7979 0.9790 +5888 8128 0.5070 +5888 8192 0.5310 +5888 8208 0.4390 +5888 8237 0.7200 +5888 8243 0.6100 +5888 8290 0.8750 +5888 8314 0.5150 +5888 8315 0.4540 +5888 8317 0.5310 +5888 8318 0.9270 +5888 8337 0.6130 +5888 8338 0.6130 +5888 8340 0.6320 +5888 8341 0.6310 +5888 8342 0.6310 +5888 8345 0.6340 +5888 8347 0.6240 +5888 8348 0.6340 +5888 8349 0.7150 +5888 8356 0.7640 +5888 8361 0.7160 +5888 8369 0.4480 +5888 8438 0.9920 +5888 8467 0.5580 +5888 8505 0.5960 +5888 8535 0.7680 +5888 8554 0.6790 +5888 8565 0.4720 +5888 8624 0.4160 +5888 8697 0.7860 +5888 8833 0.4170 +5888 8878 0.8390 +5888 8881 0.7590 +5888 8900 0.5390 +5888 8914 0.6970 +5888 8940 0.6870 +5888 8970 0.6350 +5888 9025 0.7170 +5888 9055 0.5410 +5888 9063 0.4610 +5888 9088 0.5740 +5888 9093 0.5230 +5888 9126 0.6430 +5888 9133 0.8110 +5888 9156 0.9970 +5888 9212 0.7850 +5888 9232 0.5900 +5888 9271 0.4740 +5888 9319 0.7740 +5888 9400 0.9470 +5888 9401 0.9820 +5888 9412 0.4640 +5888 9493 0.6400 +5888 9577 0.9750 +5888 9656 0.9650 +5888 9669 0.4340 +5888 9700 0.5780 +5888 9735 0.4960 +5888 9768 0.7450 +5888 9775 0.4580 +5888 9787 0.6950 +5888 9810 0.4860 +5888 9817 0.4420 +5888 9833 0.7630 +5888 9837 0.6020 +5888 9918 0.5230 +5888 9937 0.7150 +5888 9985 0.6310 +5888 10038 0.6590 +5888 10039 0.4530 +5888 10051 0.5920 +5888 10111 0.8580 +5888 10112 0.6440 +5888 10189 0.5090 +5888 10198 0.7860 +5888 10269 0.4160 +5888 10274 0.4070 +5888 10293 0.4590 +5888 10336 0.5630 +5888 10393 0.7270 +5888 10403 0.6770 +5888 10459 0.8910 +5888 10460 0.4680 +5888 10524 0.7590 +5888 10535 0.7390 +5888 10549 0.4010 +5888 10592 0.5920 +5888 10606 0.6750 +5888 10615 0.5230 +5888 10635 0.9960 +5888 10664 0.6520 +5888 10714 0.7960 +5888 10721 0.8220 +5888 10730 0.4510 +5888 10733 0.5590 +5888 10734 0.4180 +5888 10845 0.6940 +5888 10856 0.4480 +5888 10926 0.5170 +5888 10933 0.6520 +5888 10935 0.4100 +5888 11004 0.6630 +5888 11065 0.9040 +5888 11073 0.8930 +5888 11113 0.4050 +5888 11130 0.7360 +5888 11144 0.9910 +5888 11168 0.5870 +5888 11169 0.8820 +5888 11200 0.9300 +5888 11201 0.5910 +5888 11284 0.5250 +5888 11339 0.7980 +5888 22803 0.5730 +5888 22909 0.4100 +5888 22944 0.7660 +5888 22974 0.7140 +5888 22976 0.7640 +5888 23020 0.6450 +5888 23047 0.7950 +5888 23064 0.4530 +5888 23132 0.4090 +5888 23137 0.7450 +5888 23244 0.4780 +5888 23310 0.4060 +5888 23353 0.4500 +5888 23397 0.6150 +5888 23405 0.6420 +5888 23411 0.6340 +5888 23450 0.5320 +5888 23492 0.7310 +5888 23510 0.4490 +5888 23514 0.8840 +5888 23586 0.5280 +5888 23594 0.5040 +5888 23626 0.9650 +5888 23649 0.6050 +5888 24137 0.8030 +5888 25788 0.9970 +5888 25842 0.5380 +5888 25847 0.7200 +5888 25906 0.7230 +5888 25942 0.4450 +5888 26227 0.5610 +5888 26271 0.5670 +5888 26523 0.5150 +5888 27005 0.4220 +5888 27030 0.8760 +5888 27127 0.4450 +5888 27136 0.4500 +5888 27161 0.7810 +5888 27173 0.4400 +5888 27250 0.4640 +5888 27301 0.5350 +5888 27338 0.8650 +5888 27343 0.5690 +5888 27434 0.6190 +5888 29072 0.5000 +5888 29086 0.6560 +5888 29089 0.7280 +5888 29102 0.4480 +5888 29127 0.5290 +5888 29128 0.5980 +5888 29882 0.7340 +5888 29893 0.9080 +5888 29935 0.4950 +5888 29945 0.7230 +5888 50485 0.8420 +5888 50511 0.6940 +5888 51053 0.4400 +5888 51203 0.5950 +5888 51239 0.5430 +5888 51343 0.6630 +5888 51426 0.8400 +5888 51433 0.7240 +5888 51434 0.7250 +5888 51455 0.8670 +5888 51466 0.5570 +5888 51512 0.4430 +5888 51514 0.7220 +5888 51520 0.5020 +5888 51529 0.7390 +5888 51548 0.5300 +5888 51588 0.5780 +5888 51659 0.6990 +5888 51720 0.7830 +5888 51750 0.8120 +5888 51755 0.4910 +5888 54069 0.4840 +5888 54107 0.5510 +5888 54145 0.6270 +5888 54464 0.4600 +5888 54537 0.4460 +5888 54821 0.6760 +5888 54840 0.4810 +5888 54841 0.4630 +5888 54880 0.7220 +5888 54883 0.4720 +5888 54892 0.6650 +5888 54932 0.4230 +5888 54962 0.7640 +5888 55010 0.6630 +5888 55055 0.5850 +5888 55086 0.6010 +5888 55120 0.7470 +5888 55143 0.7950 +5888 55159 0.7490 +5888 55165 0.6460 +5888 55215 0.9490 +5888 55247 0.6450 +5888 55355 0.5350 +5888 55388 0.7840 +5888 55536 0.4430 +5888 55635 0.4170 +5888 55636 0.5200 +5888 55671 0.4480 +5888 55723 0.6840 +5888 55732 0.5200 +5888 55746 0.5950 +5888 55775 0.6450 +5888 55789 0.4190 +5888 55811 0.4200 +5888 55839 0.5350 +5888 56154 0.4880 +5888 56254 0.5530 +5888 56647 0.8930 +5888 56655 0.5280 +5888 56852 0.9940 +5888 56897 0.5800 +5888 56916 0.4770 +5888 56946 0.5130 +5888 56992 0.5490 +5888 57082 0.5890 +5888 57332 0.7310 +5888 57403 0.4070 +5888 57405 0.5700 +5888 57599 0.5700 +5888 57634 0.5830 +5888 57697 0.9730 +5888 57794 0.4070 +5888 63922 0.5730 +5888 63967 0.6380 +5888 63979 0.7830 +5888 64105 0.4480 +5888 64135 0.4920 +5888 64151 0.5780 +5888 64421 0.4110 +5888 64682 0.7390 +5888 64785 0.4860 +5888 64789 0.5360 +5888 64858 0.4930 +5888 64946 0.5890 +5888 79000 0.4360 +5888 79019 0.5490 +5888 79035 0.5440 +5888 79075 0.5900 +5888 79132 0.4920 +5888 79158 0.7070 +5888 79184 0.9690 +5888 79621 0.4480 +5888 79648 0.7630 +5888 79677 0.8000 +5888 79682 0.4880 +5888 79728 0.9990 +5888 79733 0.5270 +5888 79801 0.6460 +5888 79840 0.6420 +5888 79915 0.9120 +5888 79935 0.4740 +5888 79991 0.6910 +5888 80010 0.9560 +5888 80012 0.7420 +5888 80119 0.8780 +5888 80198 0.9860 +5888 80233 0.4440 +5888 80273 0.5720 +5888 81570 0.5580 +5888 81620 0.7240 +5888 81930 0.4120 +5888 83461 0.4950 +5888 83540 0.7880 +5888 83695 0.6240 +5888 83858 0.5510 +5888 83903 0.4400 +5888 83932 0.5300 +5888 83990 0.9510 +5888 84057 0.9920 +5888 84072 0.7080 +5888 84083 0.7800 +5888 84108 0.7440 +5888 84126 0.8940 +5888 84142 0.7240 +5888 84260 0.5570 +5888 84296 0.5340 +5888 84333 0.5520 +5888 84464 0.8530 +5888 84515 0.7380 +5888 84733 0.7360 +5888 84759 0.5690 +5888 84893 0.9620 +5888 85236 0.6300 +5888 85417 0.4370 +5888 87178 0.4190 +5888 90381 0.5140 +5888 90417 0.4060 +5888 91442 0.5810 +5888 92797 0.4460 +5888 94239 0.4200 +5888 113130 0.5680 +5888 113510 0.7230 +5888 114799 0.4980 +5888 116028 0.8580 +5888 116447 0.5670 +5888 119392 0.8020 +5888 119504 0.7200 +5888 124817 0.5640 +5888 126074 0.7310 +5888 128312 0.6280 +5888 133482 0.4480 +5888 140459 0.5430 +5888 143689 0.4620 +5888 144455 0.4680 +5888 144715 0.7150 +5888 146956 0.8810 +5888 147841 0.5750 +5888 149840 0.4730 +5888 150280 0.6690 +5888 150365 0.5680 +5888 151648 0.5930 +5888 157570 0.6530 +5888 164045 0.7100 +5888 165918 0.6680 +5888 166979 0.7150 +5888 197342 0.6030 +5888 199990 0.4160 +5888 201254 0.4300 +5888 201973 0.5440 +5888 220134 0.5820 +5888 221150 0.5290 +5888 223082 0.4040 +5888 246184 0.7200 +5888 246243 0.5610 +5888 253714 0.7130 +5888 254394 0.6520 +5888 254528 0.7110 +5888 255626 0.6240 +5888 257218 0.4510 +5888 259266 0.5250 +5888 259282 0.4460 +5888 283677 0.5190 +5888 285498 0.8080 +5888 286053 0.7310 +5888 348654 0.8210 +5888 353497 0.6190 +5888 375748 0.4910 +5888 378708 0.5030 +5888 387082 0.7260 +5888 414301 0.4470 +5888 440093 0.7580 +5888 440686 0.7580 +5888 548593 0.8500 +5888 642636 0.5600 +5888 653604 0.7580 +5888 729475 0.5420 +5888 100533467 0.6330 +5889 5890 0.9990 +5889 5892 0.9990 +5889 5893 0.9260 +5889 5914 0.4060 +5889 5932 0.7880 +5889 5965 0.6400 +5889 5980 0.7350 +5889 5981 0.5960 +5889 5982 0.6770 +5889 5983 0.6990 +5889 5984 0.7380 +5889 5985 0.6520 +5889 6117 0.8190 +5889 6118 0.6830 +5889 6119 0.7310 +5889 6233 0.4660 +5889 6390 0.4440 +5889 6596 0.5210 +5889 6597 0.4020 +5889 6742 0.4170 +5889 6794 0.6710 +5889 6905 0.5150 +5889 7015 0.5680 +5889 7156 0.7970 +5889 7157 0.6620 +5889 7158 0.6280 +5889 7298 0.4230 +5889 7306 0.4180 +5889 7314 0.4620 +5889 7316 0.4610 +5889 7398 0.4900 +5889 7486 0.8640 +5889 7507 0.4630 +5889 7515 0.5050 +5889 7516 0.9990 +5889 7517 0.9990 +5889 7518 0.4960 +5889 7520 0.6150 +5889 7764 0.4390 +5889 7979 0.7550 +5889 8290 0.5370 +5889 8318 0.4240 +5889 8340 0.4110 +5889 8341 0.4110 +5889 8342 0.4110 +5889 8345 0.4090 +5889 8347 0.4060 +5889 8348 0.4070 +5889 8349 0.4570 +5889 8361 0.4530 +5889 8438 0.8450 +5889 8493 0.5950 +5889 8940 0.4110 +5889 8970 0.4110 +5889 9025 0.4650 +5889 9126 0.4140 +5889 9156 0.8740 +5889 9319 0.5520 +5889 9400 0.6140 +5889 9401 0.8270 +5889 9577 0.4580 +5889 9656 0.6860 +5889 9817 0.4010 +5889 9937 0.4310 +5889 10038 0.5450 +5889 10111 0.7030 +5889 10198 0.4960 +5889 10459 0.7370 +5889 10481 0.4030 +5889 10524 0.6010 +5889 10535 0.4040 +5889 10635 0.7150 +5889 10714 0.5910 +5889 10721 0.5230 +5889 11073 0.7150 +5889 11144 0.6430 +5889 11169 0.4290 +5889 11200 0.8870 +5889 22976 0.6610 +5889 23514 0.6050 +5889 23626 0.6980 +5889 25788 0.7630 +5889 27030 0.5830 +5889 27324 0.5010 +5889 29089 0.8000 +5889 29100 0.4250 +5889 29893 0.4740 +5889 50485 0.4150 +5889 51426 0.6210 +5889 51455 0.5910 +5889 51720 0.4120 +5889 51750 0.6630 +5889 51755 0.6750 +5889 54107 0.5070 +5889 54145 0.4060 +5889 54828 0.4600 +5889 55086 0.4070 +5889 55120 0.9200 +5889 55159 0.6160 +5889 55215 0.9440 +5889 55247 0.4440 +5889 56655 0.5160 +5889 56852 0.9600 +5889 56946 0.5090 +5889 57697 0.9600 +5889 60561 0.5080 +5889 79728 0.9990 +5889 79915 0.6550 +5889 80010 0.7480 +5889 80119 0.4080 +5889 80198 0.8670 +5889 80233 0.6310 +5889 83695 0.5640 +5889 83990 0.9410 +5889 84057 0.8110 +5889 84072 0.4890 +5889 84083 0.4170 +5889 84126 0.6620 +5889 84142 0.7140 +5889 84464 0.8970 +5889 84515 0.4210 +5889 84893 0.7330 +5889 85236 0.4110 +5889 91442 0.6970 +5889 113510 0.7500 +5889 116028 0.6970 +5889 119392 0.9180 +5889 126074 0.6710 +5889 128312 0.4190 +5889 144715 0.6970 +5889 146956 0.7260 +5889 150280 0.4700 +5889 165918 0.4240 +5889 197342 0.6020 +5889 199990 0.5070 +5889 201254 0.4940 +5889 253714 0.4520 +5889 254528 0.4880 +5889 255626 0.4060 +5889 348654 0.7890 +5889 353497 0.4300 +5889 378708 0.4580 +5889 548593 0.7390 +5889 642636 0.4010 +5889 100533467 0.5600 +5890 5892 0.9990 +5890 5893 0.8890 +5890 5932 0.7320 +5890 5980 0.6560 +5890 5981 0.6040 +5890 5982 0.6110 +5890 5983 0.6470 +5890 5984 0.6130 +5890 5985 0.6060 +5890 6117 0.8430 +5890 6118 0.6700 +5890 6119 0.6400 +5890 6233 0.4610 +5890 6574 0.6750 +5890 6596 0.4520 +5890 7015 0.4710 +5890 7046 0.4400 +5890 7156 0.7830 +5890 7157 0.6750 +5890 7158 0.5370 +5890 7311 0.4020 +5890 7314 0.4610 +5890 7316 0.4610 +5890 7374 0.4140 +5890 7486 0.8610 +5890 7507 0.4640 +5890 7515 0.4460 +5890 7516 0.9990 +5890 7517 0.9850 +5890 7518 0.4800 +5890 7520 0.7090 +5890 7979 0.6200 +5890 8091 0.8210 +5890 8356 0.4010 +5890 8438 0.8440 +5890 8565 0.4210 +5890 8816 0.6730 +5890 8940 0.4370 +5890 9156 0.8590 +5890 9400 0.5730 +5890 9401 0.6510 +5890 9497 0.5670 +5890 9656 0.4750 +5890 10111 0.7290 +5890 10123 0.4540 +5890 10186 0.6100 +5890 10198 0.5020 +5890 10459 0.5360 +5890 10524 0.5760 +5890 10635 0.7200 +5890 10714 0.5330 +5890 10721 0.5050 +5890 11073 0.6280 +5890 11144 0.5880 +5890 11200 0.7850 +5890 11259 0.6100 +5890 22976 0.4250 +5890 22990 0.4150 +5890 23514 0.5960 +5890 23539 0.5500 +5890 23626 0.6500 +5890 25788 0.7520 +5890 27030 0.5570 +5890 27324 0.7700 +5890 51426 0.6210 +5890 51442 0.5710 +5890 51455 0.6010 +5890 51750 0.6030 +5890 51755 0.6230 +5890 54107 0.4730 +5890 55120 0.6360 +5890 55215 0.5540 +5890 55247 0.4250 +5890 55666 0.4740 +5890 56655 0.4850 +5890 56852 0.6870 +5890 56999 0.5620 +5890 57697 0.9580 +5890 79677 0.5040 +5890 79728 0.8900 +5890 80010 0.7400 +5890 80119 0.4830 +5890 80198 0.8790 +5890 80205 0.4140 +5890 83695 0.5530 +5890 83990 0.7560 +5890 84057 0.4860 +5890 84083 0.4460 +5890 84126 0.6270 +5890 84142 0.5410 +5890 84268 0.4230 +5890 84464 0.6920 +5890 84893 0.8190 +5890 113510 0.6350 +5890 116028 0.6650 +5890 119392 0.9160 +5890 126074 0.7210 +5890 144715 0.6900 +5890 145173 0.5520 +5890 146956 0.6760 +5890 150280 0.4080 +5890 152110 0.5890 +5890 197342 0.5930 +5890 254528 0.5710 +5890 286053 0.4260 +5890 348654 0.7600 +5890 387715 0.5170 +5890 548593 0.6570 +5890 100533467 0.5380 +5891 9145 0.5350 +5891 11140 0.6370 +5891 23435 0.5350 +5891 23532 0.4340 +5891 23595 0.7820 +5891 55163 0.5390 +5891 80218 0.4750 +5891 81620 0.7830 +5891 84515 0.4510 +5891 116211 0.4490 +5891 157777 0.4490 +5891 196446 0.4170 +5891 254394 0.5790 +5892 5893 0.8810 +5892 5932 0.7730 +5892 5965 0.5980 +5892 5980 0.6450 +5892 5981 0.6170 +5892 5982 0.6480 +5892 5983 0.6660 +5892 5984 0.6380 +5892 5985 0.6540 +5892 6117 0.8240 +5892 6118 0.6510 +5892 6119 0.6810 +5892 6233 0.4610 +5892 6390 0.4280 +5892 6421 0.6160 +5892 6596 0.4720 +5892 6749 0.5270 +5892 6794 0.6890 +5892 6827 0.4990 +5892 6829 0.4990 +5892 6905 0.4630 +5892 6917 0.5440 +5892 6921 0.5170 +5892 6923 0.4990 +5892 6924 0.4990 +5892 7015 0.4260 +5892 7156 0.7960 +5892 7157 0.6410 +5892 7158 0.5760 +5892 7311 0.4020 +5892 7314 0.4940 +5892 7316 0.4610 +5892 7469 0.5110 +5892 7486 0.8790 +5892 7507 0.4450 +5892 7515 0.4410 +5892 7516 0.9990 +5892 7517 0.9780 +5892 7518 0.4380 +5892 7520 0.5820 +5892 7936 0.5020 +5892 7979 0.6280 +5892 8178 0.4990 +5892 8438 0.8760 +5892 8565 0.4080 +5892 8812 0.5230 +5892 8940 0.4110 +5892 9150 0.4990 +5892 9156 0.8610 +5892 9400 0.7250 +5892 9401 0.7270 +5892 9656 0.6650 +5892 10038 0.4490 +5892 10111 0.7210 +5892 10123 0.4290 +5892 10198 0.5070 +5892 10459 0.5610 +5892 10481 0.5070 +5892 10524 0.5680 +5892 10635 0.6390 +5892 10714 0.5510 +5892 10721 0.5230 +5892 11073 0.6260 +5892 11144 0.4710 +5892 11198 0.5200 +5892 11200 0.8900 +5892 22806 0.4460 +5892 22976 0.4730 +5892 23137 0.4280 +5892 23514 0.5840 +5892 23626 0.6230 +5892 25788 0.7450 +5892 25920 0.5180 +5892 26585 0.4320 +5892 27030 0.5490 +5892 51224 0.5640 +5892 51421 0.4530 +5892 51426 0.6500 +5892 51444 0.6580 +5892 51455 0.5880 +5892 51497 0.5080 +5892 51750 0.6550 +5892 51755 0.8090 +5892 54107 0.4610 +5892 55120 0.7080 +5892 55215 0.8050 +5892 55247 0.4430 +5892 56655 0.5050 +5892 56852 0.6320 +5892 56946 0.4680 +5892 57697 0.9790 +5892 57804 0.4110 +5892 60561 0.4880 +5892 63929 0.4880 +5892 79133 0.6860 +5892 79677 0.4850 +5892 79728 0.9490 +5892 79840 0.4260 +5892 80010 0.7560 +5892 80119 0.5200 +5892 80198 0.8910 +5892 83695 0.5770 +5892 83990 0.8390 +5892 84083 0.4090 +5892 84126 0.6220 +5892 84142 0.7190 +5892 84464 0.7600 +5892 84893 0.8050 +5892 89894 0.4560 +5892 91442 0.5470 +5892 113510 0.6100 +5892 116028 0.6350 +5892 119392 0.9230 +5892 125150 0.4140 +5892 126074 0.7590 +5892 144715 0.6130 +5892 146956 0.6840 +5892 197342 0.5960 +5892 201163 0.4210 +5892 254528 0.5710 +5892 348654 0.7760 +5892 404672 0.5940 +5892 548593 0.6520 +5892 100533467 0.5390 +5893 5932 0.8850 +5893 5965 0.6450 +5893 5980 0.9380 +5893 5981 0.5020 +5893 5982 0.7030 +5893 5983 0.7080 +5893 5984 0.6880 +5893 5985 0.6740 +5893 6047 0.4180 +5893 6117 0.9990 +5893 6118 0.9990 +5893 6119 0.9980 +5893 6595 0.7000 +5893 6596 0.7820 +5893 6597 0.6600 +5893 6612 0.7250 +5893 6613 0.7740 +5893 6742 0.6890 +5893 7013 0.7000 +5893 7015 0.7700 +5893 7150 0.7840 +5893 7153 0.6060 +5893 7155 0.5050 +5893 7156 0.9010 +5893 7157 0.5150 +5893 7158 0.9670 +5893 7263 0.4220 +5893 7272 0.5790 +5893 7319 0.7080 +5893 7320 0.6860 +5893 7329 0.9430 +5893 7334 0.8180 +5893 7336 0.9090 +5893 7341 0.9510 +5893 7353 0.6500 +5893 7374 0.4180 +5893 7415 0.6070 +5893 7486 0.9960 +5893 7507 0.7390 +5893 7508 0.5900 +5893 7515 0.5890 +5893 7516 0.6360 +5893 7517 0.9780 +5893 7518 0.6960 +5893 7520 0.9180 +5893 7979 0.7350 +5893 8243 0.5660 +5893 8290 0.4660 +5893 8317 0.6900 +5893 8318 0.7800 +5893 8337 0.4770 +5893 8338 0.4690 +5893 8356 0.4680 +5893 8361 0.4500 +5893 8369 0.4480 +5893 8438 0.9370 +5893 8554 0.6120 +5893 8850 0.5770 +5893 8914 0.5900 +5893 8940 0.5260 +5893 9025 0.4330 +5893 9063 0.7420 +5893 9126 0.4620 +5893 9156 0.9620 +5893 9212 0.4830 +5893 9400 0.8610 +5893 9401 0.9130 +5893 9656 0.7870 +5893 9780 0.4420 +5893 9937 0.5830 +5893 10038 0.6160 +5893 10111 0.8840 +5893 10198 0.5590 +5893 10401 0.5300 +5893 10459 0.7530 +5893 10524 0.6840 +5893 10535 0.6160 +5893 10606 0.7160 +5893 10632 0.4260 +5893 10635 0.4910 +5893 10714 0.6210 +5893 10721 0.6990 +5893 10926 0.7560 +5893 10939 0.4240 +5893 11073 0.8570 +5893 11144 0.7100 +5893 11169 0.7420 +5893 11200 0.8910 +5893 11201 0.5630 +5893 22933 0.4550 +5893 22976 0.7440 +5893 23064 0.5580 +5893 23137 0.7690 +5893 23411 0.5320 +5893 23479 0.5250 +5893 23510 0.5620 +5893 23586 0.4360 +5893 23626 0.7230 +5893 25788 0.9700 +5893 25842 0.6030 +5893 27030 0.5530 +5893 27343 0.5630 +5893 27434 0.5110 +5893 29935 0.6740 +5893 50485 0.6920 +5893 51426 0.4500 +5893 51455 0.7340 +5893 51588 0.6010 +5893 51750 0.6210 +5893 54821 0.4220 +5893 54841 0.4810 +5893 54921 0.5210 +5893 54962 0.7600 +5893 55086 0.4600 +5893 55120 0.5640 +5893 55210 0.4240 +5893 55215 0.6490 +5893 55636 0.4970 +5893 55723 0.6060 +5893 55746 0.5020 +5893 55775 0.6320 +5893 56852 0.9830 +5893 56897 0.4070 +5893 57082 0.5830 +5893 57128 0.4240 +5893 57223 0.4090 +5893 57697 0.9900 +5893 63895 0.4420 +5893 63922 0.7570 +5893 63967 0.4670 +5893 64135 0.4360 +5893 64421 0.4010 +5893 64858 0.4020 +5893 79075 0.4850 +5893 79132 0.4360 +5893 79621 0.4430 +5893 79661 0.5090 +5893 79677 0.7590 +5893 79728 0.8450 +5893 79840 0.6080 +5893 79915 0.9080 +5893 79991 0.8920 +5893 80010 0.9320 +5893 80119 0.9120 +5893 80198 0.9760 +5893 80820 0.4190 +5893 83695 0.5220 +5893 83990 0.7940 +5893 84057 0.7680 +5893 84083 0.5580 +5893 84126 0.7920 +5893 84464 0.7480 +5893 84893 0.9150 +5893 84901 0.5540 +5893 90381 0.7150 +5893 91442 0.5840 +5893 92797 0.6850 +5893 116028 0.7160 +5893 116447 0.6120 +5893 119392 0.5070 +5893 132949 0.4300 +5893 144715 0.6710 +5893 146956 0.6880 +5893 148581 0.4120 +5893 163786 0.4560 +5893 164045 0.4980 +5893 165918 0.4870 +5893 201299 0.8980 +5893 201973 0.5060 +5893 246243 0.6840 +5893 254528 0.8700 +5893 257218 0.7550 +5893 286053 0.7370 +5893 348654 0.7060 +5893 387082 0.7990 +5893 440093 0.4640 +5893 440686 0.4640 +5893 548593 0.7210 +5893 653604 0.4650 +5893 100533467 0.6750 +5894 5898 0.8490 +5894 5899 0.5940 +5894 5900 0.7600 +5894 5906 0.9990 +5894 5908 0.9510 +5894 5911 0.4970 +5894 5912 0.5020 +5894 5921 0.4690 +5894 5925 0.8240 +5894 5970 0.9250 +5894 6009 0.8770 +5894 6016 0.4840 +5894 6047 0.4370 +5894 6233 0.4410 +5894 6237 0.9910 +5894 6337 0.4040 +5894 6338 0.5630 +5894 6339 0.4040 +5894 6340 0.4040 +5894 6446 0.7800 +5894 6464 0.5330 +5894 6654 0.8120 +5894 6655 0.6400 +5894 6714 0.9540 +5894 6774 0.7620 +5894 6788 0.8020 +5894 6790 0.4900 +5894 7094 0.5680 +5894 7157 0.6050 +5894 7187 0.4300 +5894 7248 0.4290 +5894 7249 0.6690 +5894 7311 0.4340 +5894 7314 0.4480 +5894 7316 0.4770 +5894 7409 0.4980 +5894 7414 0.6080 +5894 7416 0.7080 +5894 7430 0.4800 +5894 7450 0.5470 +5894 7529 0.9980 +5894 7531 0.9910 +5894 7532 0.9910 +5894 7533 0.9980 +5894 7534 0.9990 +5894 7812 0.4850 +5894 7837 0.4750 +5894 8036 0.9830 +5894 8087 0.4210 +5894 8216 0.6310 +5894 8315 0.6390 +5894 8503 0.9130 +5894 8533 0.4720 +5894 8546 0.4140 +5894 8625 0.4070 +5894 8649 0.8560 +5894 8805 0.4450 +5894 8826 0.7900 +5894 8837 0.6450 +5894 8844 0.9990 +5894 9061 0.4160 +5894 9077 0.4450 +5894 9322 0.4300 +5894 9444 0.6080 +5894 9462 0.4610 +5894 9610 0.7160 +5894 9715 0.5380 +5894 9817 0.5050 +5894 10000 0.9220 +5894 10018 0.6540 +5894 10048 0.6790 +5894 10110 0.5670 +5894 10125 0.4200 +5894 10142 0.5250 +5894 10190 0.5860 +5894 10252 0.8470 +5894 10253 0.7200 +5894 10256 0.7690 +5894 10273 0.8330 +5894 10298 0.9490 +5894 10411 0.6480 +5894 10533 0.5960 +5894 10818 0.5990 +5894 10827 0.4050 +5894 10971 0.9930 +5894 11044 0.4280 +5894 11059 0.5250 +5894 11069 0.6400 +5894 11140 0.9930 +5894 11331 0.5840 +5894 22800 0.9850 +5894 22808 0.9910 +5894 22866 0.8860 +5894 22906 0.4050 +5894 23162 0.5300 +5894 23164 0.4050 +5894 23327 0.6670 +5894 23373 0.4270 +5894 23380 0.4040 +5894 23551 0.6740 +5894 23609 0.4100 +5894 23678 0.5550 +5894 26548 0.5280 +5894 27044 0.4380 +5894 28956 0.5110 +5894 30835 0.5450 +5894 50717 0.4410 +5894 51655 0.6420 +5894 51806 0.6110 +5894 54518 0.5610 +5894 54756 0.5580 +5894 54845 0.4850 +5894 55109 0.4050 +5894 55147 0.4760 +5894 55170 0.5040 +5894 55664 0.5150 +5894 55750 0.4060 +5894 56829 0.4760 +5894 56924 0.9130 +5894 57085 0.4420 +5894 57139 0.5180 +5894 57144 0.9140 +5894 57446 0.6440 +5894 57670 0.5980 +5894 79444 0.4110 +5894 80853 0.4690 +5894 81848 0.7940 +5894 83475 0.4350 +5894 84292 0.6970 +5894 84955 0.6280 +5894 91860 0.6110 +5894 92609 0.4030 +5894 133482 0.5990 +5894 137902 0.4720 +5894 152559 0.7340 +5894 157310 0.7350 +5894 161742 0.7150 +5894 163688 0.6110 +5894 200734 0.5760 +5894 225689 0.4810 +5894 340273 0.4040 +5896 5949 0.4070 +5896 6097 0.5340 +5896 6124 0.4750 +5896 6125 0.4240 +5896 6128 0.4180 +5896 6132 0.5880 +5896 6137 0.4370 +5896 6138 0.4220 +5896 6141 0.4370 +5896 6142 0.4180 +5896 6143 0.4510 +5896 6144 0.6980 +5896 6147 0.4300 +5896 6152 0.4120 +5896 6157 0.4160 +5896 6158 0.4100 +5896 6159 0.4180 +5896 6160 0.4180 +5896 6164 0.4180 +5896 6165 0.4420 +5896 6168 0.4100 +5896 6169 0.4180 +5896 6170 0.4580 +5896 6176 0.4040 +5896 6187 0.4620 +5896 6188 0.4980 +5896 6189 0.4680 +5896 6194 0.4730 +5896 6201 0.5480 +5896 6202 0.4180 +5896 6203 0.4430 +5896 6205 0.4780 +5896 6209 0.4180 +5896 6217 0.4750 +5896 6218 0.4180 +5896 6222 0.4310 +5896 6223 0.4580 +5896 6224 0.4600 +5896 6227 0.4120 +5896 6228 0.4790 +5896 6229 0.4120 +5896 6230 0.4120 +5896 6231 0.4120 +5896 6234 0.4280 +5896 6235 0.4070 +5896 6401 0.4540 +5896 6402 0.6400 +5896 6403 0.5240 +5896 6404 0.4910 +5896 6688 0.5690 +5896 6689 0.4510 +5896 6693 0.6040 +5896 6772 0.4390 +5896 6774 0.4520 +5896 6776 0.4730 +5896 6777 0.4790 +5896 6813 0.4430 +5896 6850 0.4150 +5896 6929 0.5910 +5896 6932 0.4040 +5896 7070 0.5510 +5896 7097 0.4230 +5896 7098 0.4170 +5896 7099 0.4550 +5896 7124 0.5930 +5896 7157 0.5500 +5896 7311 0.4360 +5896 7316 0.4140 +5896 7321 0.5820 +5896 7322 0.7610 +5896 7328 0.5170 +5896 7412 0.4180 +5896 7441 0.7850 +5896 7518 0.5210 +5896 7520 0.4460 +5896 7535 0.5440 +5896 8290 0.5440 +5896 8320 0.4700 +5896 8349 0.5850 +5896 8356 0.6770 +5896 8456 0.6340 +5896 8507 0.4740 +5896 8639 0.6190 +5896 8653 0.5330 +5896 8676 0.4200 +5896 8784 0.4390 +5896 9034 0.4740 +5896 9045 0.4160 +5896 9241 0.4360 +5896 9349 0.5300 +5896 9437 0.4790 +5896 9524 0.4140 +5896 9656 0.4100 +5896 9730 0.6190 +5896 10219 0.5550 +5896 10320 0.6710 +5896 10335 0.4550 +5896 10563 0.5000 +5896 10630 0.4080 +5896 10673 0.4260 +5896 10803 0.5140 +5896 11005 0.4180 +5896 11224 0.4180 +5896 22806 0.4580 +5896 22914 0.4140 +5896 23521 0.5200 +5896 25873 0.4120 +5896 28998 0.4860 +5896 29760 0.6530 +5896 29851 0.4970 +5896 30009 0.6160 +5896 50616 0.5830 +5896 50943 0.8130 +5896 51043 0.4080 +5896 51069 0.5480 +5896 51363 0.6000 +5896 51561 0.4060 +5896 54014 0.5390 +5896 54101 0.4450 +5896 54106 0.4120 +5896 54514 0.4750 +5896 54826 0.4440 +5896 55509 0.4020 +5896 55974 0.6830 +5896 57128 0.5790 +5896 57379 0.7280 +5896 63931 0.4160 +5896 64127 0.4050 +5896 64421 0.8310 +5896 64919 0.4540 +5896 79605 0.5420 +5896 79725 0.4610 +5896 79840 0.6930 +5896 79987 0.4080 +5896 80198 0.5540 +5896 81341 0.4430 +5896 81704 0.4320 +5896 85480 0.4540 +5896 90865 0.5100 +5896 112744 0.4770 +5896 116832 0.4600 +5896 124454 0.4300 +5896 127540 0.4050 +5896 130120 0.4040 +5896 146956 0.5750 +5896 149233 0.4460 +5896 171558 0.6300 +5896 197342 0.5570 +5896 201294 0.4520 +5896 246778 0.4460 +5896 653604 0.6770 +5896 100423062 0.6480 +5896 102723407 0.8160 +5898 5899 0.9380 +5898 5900 0.9990 +5898 5906 0.4450 +5898 5909 0.4390 +5898 5921 0.9880 +5898 6300 0.5740 +5898 6453 0.5870 +5898 6517 0.7880 +5898 6654 0.5390 +5898 6655 0.4490 +5898 6714 0.8740 +5898 6775 0.7550 +5898 6780 0.4730 +5898 6790 0.5790 +5898 6810 0.6700 +5898 6814 0.6290 +5898 6844 0.6240 +5898 7074 0.5020 +5898 7127 0.4310 +5898 7157 0.4180 +5898 7249 0.5250 +5898 7454 0.5220 +5898 7846 0.4580 +5898 7940 0.6380 +5898 8239 0.4280 +5898 8531 0.7740 +5898 8766 0.7030 +5898 8773 0.6830 +5898 8826 0.6790 +5898 8844 0.6490 +5898 9185 0.7740 +5898 9371 0.5340 +5898 9649 0.6800 +5898 9847 0.5870 +5898 9986 0.4320 +5898 10232 0.4410 +5898 10294 0.4290 +5898 10640 0.9600 +5898 10890 0.6530 +5898 10928 0.9990 +5898 11069 0.4350 +5898 11127 0.5430 +5898 11336 0.8710 +5898 22800 0.4790 +5898 22866 0.8300 +5898 22905 0.4560 +5898 22920 0.5110 +5898 23179 0.9890 +5898 23233 0.8190 +5898 23265 0.8910 +5898 23433 0.5380 +5898 23463 0.4040 +5898 29110 0.6280 +5898 50618 0.5670 +5898 51196 0.4450 +5898 51552 0.5880 +5898 51726 0.4250 +5898 51806 0.8160 +5898 54536 0.8500 +5898 55040 0.4600 +5898 55103 0.7320 +5898 55333 0.7820 +5898 55763 0.9290 +5898 55770 0.9990 +5898 57139 0.7230 +5898 57148 0.8920 +5898 57186 0.8540 +5898 60412 0.9880 +5898 79058 0.5060 +5898 84617 0.4370 +5898 85021 0.6720 +5898 91860 0.7860 +5898 120379 0.5300 +5898 130399 0.4400 +5898 133482 0.5350 +5898 149371 0.9990 +5898 163688 0.7860 +5898 168667 0.6010 +5898 253959 0.5420 +5898 266747 0.8950 +5898 440163 0.5710 +5899 5900 0.9960 +5899 5921 0.4750 +5899 5966 0.4500 +5899 6237 0.4460 +5899 6300 0.5620 +5899 6453 0.5410 +5899 6654 0.4370 +5899 6714 0.8310 +5899 7169 0.4340 +5899 7405 0.4100 +5899 7474 0.4210 +5899 8408 0.4290 +5899 8531 0.7650 +5899 8658 0.4410 +5899 8678 0.4950 +5899 8766 0.4940 +5899 9140 0.4260 +5899 9474 0.4620 +5899 9641 0.5880 +5899 9649 0.5690 +5899 9986 0.4110 +5899 10010 0.5840 +5899 10640 0.5240 +5899 10928 0.9990 +5899 11336 0.5350 +5899 22863 0.4430 +5899 23032 0.5840 +5899 23179 0.9600 +5899 23265 0.5710 +5899 23463 0.4040 +5899 23560 0.5490 +5899 29110 0.9190 +5899 50618 0.5440 +5899 51196 0.4030 +5899 51806 0.5950 +5899 54536 0.5210 +5899 55103 0.4700 +5899 55593 0.5550 +5899 55763 0.6950 +5899 55770 0.9990 +5899 57139 0.7160 +5899 57148 0.4970 +5899 60412 0.6420 +5899 64343 0.6060 +5899 81030 0.5870 +5899 85021 0.6140 +5899 91860 0.5250 +5899 93649 0.4420 +5899 149371 0.9990 +5899 163688 0.5250 +5899 253959 0.4350 +5899 266747 0.5170 +5900 5906 0.9990 +5900 5908 0.9870 +5900 5909 0.6160 +5900 5911 0.8640 +5900 5912 0.9130 +5900 5921 0.5090 +5900 6014 0.5520 +5900 6016 0.4890 +5900 6237 0.9990 +5900 6242 0.5880 +5900 6714 0.7970 +5900 7074 0.5490 +5900 8036 0.4170 +5900 8045 0.4020 +5900 8411 0.4290 +5900 9185 0.6040 +5900 9610 0.8600 +5900 9693 0.4480 +5900 10256 0.8350 +5900 10411 0.5430 +5900 10928 0.7840 +5900 22800 0.9700 +5900 22808 0.9860 +5900 23426 0.4330 +5900 28954 0.4140 +5900 51655 0.4830 +5900 54518 0.5400 +5900 55770 0.7310 +5900 56850 0.7290 +5900 57148 0.4180 +5900 57569 0.4630 +5900 57826 0.4110 +5900 80852 0.6080 +5900 83593 0.7410 +5900 114822 0.6200 +5900 116984 0.4290 +5900 116985 0.4100 +5900 116986 0.4620 +5900 133482 0.7770 +5900 149371 0.5380 +5900 283349 0.5560 +5901 5902 0.9990 +5901 5903 0.9990 +5901 5905 0.9990 +5901 5921 0.6620 +5901 6059 0.4680 +5901 6103 0.8650 +5901 6122 0.6050 +5901 6124 0.5850 +5901 6125 0.5740 +5901 6128 0.5690 +5901 6129 0.6900 +5901 6130 0.5870 +5901 6132 0.4500 +5901 6133 0.4690 +5901 6135 0.4980 +5901 6136 0.5930 +5901 6137 0.5170 +5901 6138 0.5110 +5901 6139 0.5130 +5901 6141 0.6110 +5901 6142 0.5660 +5901 6143 0.4530 +5901 6144 0.5440 +5901 6155 0.5380 +5901 6157 0.4560 +5901 6158 0.4250 +5901 6165 0.4580 +5901 6175 0.5330 +5901 6187 0.6490 +5901 6188 0.6920 +5901 6189 0.6580 +5901 6191 0.5100 +5901 6193 0.5640 +5901 6194 0.5270 +5901 6201 0.4660 +5901 6202 0.6600 +5901 6203 0.5790 +5901 6206 0.4410 +5901 6207 0.4690 +5901 6209 0.4310 +5901 6217 0.5110 +5901 6222 0.6870 +5901 6224 0.5600 +5901 6228 0.4820 +5901 6230 0.4100 +5901 6231 0.4900 +5901 6233 0.4310 +5901 6396 0.6480 +5901 6427 0.5460 +5901 6428 0.4020 +5901 6598 0.5090 +5901 6613 0.5740 +5901 6632 0.4530 +5901 6633 0.4280 +5901 6634 0.4820 +5901 6636 0.4980 +5901 6720 0.4990 +5901 6721 0.5050 +5901 6741 0.4610 +5901 6895 0.6150 +5901 6950 0.7410 +5901 7159 0.4270 +5901 7167 0.4630 +5901 7175 0.6870 +5901 7178 0.4320 +5901 7203 0.5500 +5901 7329 0.9420 +5901 7334 0.4760 +5901 7341 0.7580 +5901 7415 0.4210 +5901 7417 0.4200 +5901 7443 0.4330 +5901 7458 0.4200 +5901 7514 0.9990 +5901 7520 0.4150 +5901 7529 0.4400 +5901 7534 0.4080 +5901 7919 0.4800 +5901 8021 0.9730 +5901 8086 0.5120 +5901 8331 0.5150 +5901 8334 0.5190 +5901 8337 0.5940 +5901 8338 0.5880 +5901 8340 0.5330 +5901 8341 0.5360 +5901 8342 0.5390 +5901 8345 0.5950 +5901 8347 0.5300 +5901 8348 0.5440 +5901 8349 0.5960 +5901 8356 0.6100 +5901 8361 0.7250 +5901 8480 0.7370 +5901 8498 0.8510 +5901 8575 0.5990 +5901 8607 0.5530 +5901 8662 0.4760 +5901 8665 0.4480 +5901 8668 0.6630 +5901 8886 0.4500 +5901 8894 0.6220 +5901 8970 0.5320 +5901 9045 0.5340 +5901 9097 0.4930 +5901 9255 0.4560 +5901 9349 0.4040 +5901 9584 0.4820 +5901 9631 0.6650 +5901 9648 0.5350 +5901 9670 0.9880 +5901 9688 0.7590 +5901 9775 0.5960 +5901 9787 0.7500 +5901 9818 0.6710 +5901 9861 0.4220 +5901 9883 0.6320 +5901 9939 0.5890 +5901 9972 0.9960 +5901 10048 0.4950 +5901 10073 0.9850 +5901 10196 0.4180 +5901 10204 0.9990 +5901 10213 0.7460 +5901 10399 0.6850 +5901 10459 0.5660 +5901 10480 0.5560 +5901 10482 0.7720 +5901 10514 0.7490 +5901 10526 0.8250 +5901 10527 0.9100 +5901 10528 0.4740 +5901 10574 0.7260 +5901 10575 0.8080 +5901 10576 0.8380 +5901 10606 0.4620 +5901 10664 0.4020 +5901 10694 0.7120 +5901 10726 0.4560 +5901 10762 0.9340 +5901 10848 0.4240 +5901 10856 0.4910 +5901 11097 0.6820 +5901 11113 0.4020 +5901 11222 0.4650 +5901 11260 0.9990 +5901 22894 0.6590 +5901 22916 0.9200 +5901 22933 0.9260 +5901 22948 0.8250 +5901 23039 0.6160 +5901 23165 0.6630 +5901 23214 0.6120 +5901 23225 0.6460 +5901 23279 0.6070 +5901 23306 0.7470 +5901 23404 0.5120 +5901 23405 0.7130 +5901 23476 0.5180 +5901 23511 0.6260 +5901 23534 0.9480 +5901 23560 0.5020 +5901 23633 0.8450 +5901 23636 0.8020 +5901 26156 0.4580 +5901 26227 0.4610 +5901 26471 0.6180 +5901 26523 0.6020 +5901 26953 0.8950 +5901 27037 0.5520 +5901 27161 0.6400 +5901 29098 0.9760 +5901 29102 0.5540 +5901 30000 0.8070 +5901 51068 0.9250 +5901 51194 0.7140 +5901 51386 0.4620 +5901 51493 0.4390 +5901 51602 0.4050 +5901 51637 0.4430 +5901 51645 0.4270 +5901 51808 0.9170 +5901 53371 0.7820 +5901 54145 0.5330 +5901 54443 0.4160 +5901 54487 0.4540 +5901 55122 0.7790 +5901 55651 0.4380 +5901 55705 0.7120 +5901 55706 0.6150 +5901 55746 0.6970 +5901 55766 0.5150 +5901 55920 0.4330 +5901 56648 0.6610 +5901 57096 0.5960 +5901 57122 0.8320 +5901 57510 0.9990 +5901 57610 0.4290 +5901 64121 0.5470 +5901 64324 0.5800 +5901 64328 0.7270 +5901 79023 0.6830 +5901 79647 0.6360 +5901 79711 0.9850 +5901 79902 0.7600 +5901 81492 0.4050 +5901 81554 0.7540 +5901 81929 0.7350 +5901 84220 0.8330 +5901 85236 0.5350 +5901 91754 0.5300 +5901 94239 0.6910 +5901 128312 0.5330 +5901 129401 0.6930 +5901 133482 0.5450 +5901 143244 0.6570 +5901 192669 0.5310 +5901 192670 0.5140 +5901 255626 0.5320 +5901 285190 0.4220 +5901 345895 0.4050 +5901 348995 0.6030 +5901 392517 0.9100 +5901 402569 0.7830 +5901 474382 0.5150 +5901 653489 0.7650 +5901 653604 0.5900 +5901 727851 0.7250 +5901 729540 0.7030 +5901 729857 0.8030 +5901 100101267 0.6350 +5901 100131211 0.4680 +5902 5903 0.6470 +5902 5905 0.9990 +5902 5912 0.4680 +5902 5921 0.4310 +5902 6103 0.4150 +5902 6122 0.4610 +5902 6125 0.5040 +5902 6129 0.4230 +5902 6132 0.4250 +5902 6144 0.4260 +5902 6147 0.5010 +5902 6170 0.4240 +5902 6193 0.4220 +5902 6194 0.4620 +5902 6201 0.4340 +5902 6204 0.4320 +5902 6205 0.4460 +5902 6206 0.4180 +5902 6207 0.4460 +5902 6210 0.4090 +5902 6222 0.4410 +5902 6223 0.4410 +5902 6229 0.4730 +5902 6230 0.4520 +5902 6232 0.4210 +5902 6235 0.4290 +5902 6612 0.4230 +5902 6632 0.6700 +5902 6636 0.4810 +5902 6899 0.6020 +5902 6927 0.5370 +5902 7329 0.4960 +5902 7341 0.4950 +5902 7353 0.4500 +5902 7408 0.4410 +5902 7514 0.9690 +5902 8021 0.7440 +5902 8318 0.6770 +5902 8480 0.5620 +5902 8498 0.9580 +5902 8607 0.4460 +5902 8854 0.4340 +5902 9349 0.4220 +5902 9576 0.4400 +5902 9631 0.6690 +5902 9670 0.5460 +5902 9688 0.7060 +5902 9818 0.5540 +5902 9883 0.4210 +5902 9948 0.4460 +5902 9972 0.7660 +5902 9993 0.6230 +5902 10073 0.6720 +5902 10105 0.6910 +5902 10146 0.4800 +5902 10189 0.7060 +5902 10204 0.9280 +5902 10450 0.4660 +5902 10465 0.6760 +5902 10482 0.5440 +5902 10526 0.8510 +5902 10527 0.7980 +5902 10528 0.5840 +5902 10574 0.5830 +5902 10576 0.4260 +5902 10587 0.5200 +5902 10762 0.6060 +5902 10856 0.4150 +5902 10969 0.4320 +5902 11097 0.4670 +5902 11188 0.4270 +5902 11224 0.4480 +5902 11260 0.6350 +5902 22894 0.4100 +5902 22948 0.5080 +5902 22981 0.4070 +5902 23039 0.4630 +5902 23165 0.5540 +5902 23214 0.4620 +5902 23225 0.4740 +5902 23279 0.6050 +5902 23633 0.5330 +5902 23636 0.8180 +5902 26227 0.5320 +5902 26354 0.5550 +5902 26471 0.4710 +5902 27037 0.9330 +5902 28989 0.6610 +5902 29098 0.9420 +5902 29107 0.6810 +5902 29801 0.5870 +5902 29889 0.5210 +5902 30000 0.5370 +5902 51191 0.5360 +5902 51203 0.4970 +5902 53371 0.7150 +5902 54487 0.6900 +5902 54552 0.5380 +5902 54584 0.8050 +5902 55374 0.4400 +5902 55505 0.4800 +5902 55651 0.5810 +5902 55671 0.7390 +5902 55705 0.4290 +5902 55706 0.4500 +5902 55746 0.6030 +5902 55852 0.4080 +5902 57122 0.5990 +5902 57223 0.7580 +5902 57510 0.5550 +5902 57610 0.4440 +5902 57727 0.4190 +5902 64976 0.4750 +5902 79023 0.5070 +5902 79711 0.5690 +5902 79902 0.5830 +5902 81554 0.5140 +5902 83667 0.4380 +5902 84271 0.4190 +5902 120892 0.5180 +5902 128989 0.4700 +5902 129401 0.4240 +5902 145567 0.4040 +5902 151987 0.4380 +5902 161823 0.5350 +5902 283383 0.7030 +5902 345630 0.4460 +5902 348995 0.5010 +5902 402569 0.6350 +5902 644591 0.7290 +5902 645142 0.7230 +5902 653505 0.7420 +5902 653598 0.7350 +5902 728945 0.7280 +5902 730262 0.7280 +5902 100101267 0.4220 +5902 105371242 0.7260 +5903 5905 0.9990 +5903 5921 0.8720 +5903 6047 0.7850 +5903 6103 0.7440 +5903 6205 0.4040 +5903 6238 0.7060 +5903 6396 0.9810 +5903 6426 0.5710 +5903 6427 0.5150 +5903 6428 0.5750 +5903 6429 0.4920 +5903 6430 0.4830 +5903 6431 0.5720 +5903 6432 0.5390 +5903 6464 0.5210 +5903 6576 0.4220 +5903 6606 0.4860 +5903 6612 0.8620 +5903 6613 0.9980 +5903 6628 0.5220 +5903 6632 0.5820 +5903 6633 0.6050 +5903 6634 0.6280 +5903 6635 0.6340 +5903 6636 0.6120 +5903 6637 0.6310 +5903 6651 0.5760 +5903 6672 0.8650 +5903 6774 0.5830 +5903 6782 0.5570 +5903 6801 0.5800 +5903 6996 0.4720 +5903 7015 0.4840 +5903 7046 0.4860 +5903 7060 0.4200 +5903 7153 0.8270 +5903 7155 0.4970 +5903 7157 0.8120 +5903 7170 0.7470 +5903 7171 0.7510 +5903 7175 0.9900 +5903 7178 0.4350 +5903 7184 0.4260 +5903 7248 0.4050 +5903 7307 0.4300 +5903 7325 0.5220 +5903 7329 0.9990 +5903 7336 0.5130 +5903 7341 0.9990 +5903 7414 0.5380 +5903 7454 0.4020 +5903 7514 0.9930 +5903 7884 0.4900 +5903 7919 0.4500 +5903 7965 0.4260 +5903 8021 0.9990 +5903 8086 0.9950 +5903 8189 0.4390 +5903 8361 0.5720 +5903 8379 0.9100 +5903 8480 0.9200 +5903 8487 0.4190 +5903 8496 0.6500 +5903 8535 0.4180 +5903 8554 0.6640 +5903 8563 0.5510 +5903 8565 0.4230 +5903 8655 0.4810 +5903 8683 0.5140 +5903 8878 0.5700 +5903 8888 0.9600 +5903 9044 0.5400 +5903 9063 0.6710 +5903 9133 0.4660 +5903 9184 0.6840 +5903 9212 0.6830 +5903 9295 0.4670 +5903 9320 0.4230 +5903 9343 0.6060 +5903 9349 0.4060 +5903 9406 0.6370 +5903 9451 0.5290 +5903 9576 0.4440 +5903 9631 0.9990 +5903 9648 0.9460 +5903 9670 0.4280 +5903 9688 0.9980 +5903 9698 0.4790 +5903 9700 0.7080 +5903 9734 0.4750 +5903 9742 0.4860 +5903 9759 0.9070 +5903 9774 0.4090 +5903 9775 0.6730 +5903 9785 0.4870 +5903 9790 0.4160 +5903 9818 0.9840 +5903 9862 0.5100 +5903 9877 0.5320 +5903 9883 0.9480 +5903 9939 0.5970 +5903 9972 0.9960 +5903 9984 0.5360 +5903 10054 0.8140 +5903 10055 0.8300 +5903 10073 0.5880 +5903 10075 0.4090 +5903 10087 0.4880 +5903 10138 0.5550 +5903 10146 0.4560 +5903 10155 0.4890 +5903 10171 0.4310 +5903 10189 0.7340 +5903 10204 0.7990 +5903 10208 0.5360 +5903 10210 0.5310 +5903 10212 0.4920 +5903 10250 0.6560 +5903 10273 0.4260 +5903 10342 0.6120 +5903 10399 0.4430 +5903 10401 0.5760 +5903 10411 0.7420 +5903 10482 0.9670 +5903 10521 0.4140 +5903 10526 0.6200 +5903 10527 0.5790 +5903 10569 0.4650 +5903 10594 0.5650 +5903 10607 0.4380 +5903 10726 0.8200 +5903 10728 0.4230 +5903 10762 0.9560 +5903 10783 0.4160 +5903 10817 0.5050 +5903 10818 0.5260 +5903 10856 0.4840 +5903 10898 0.4430 +5903 10921 0.5580 +5903 10971 0.4760 +5903 11052 0.8280 +5903 11097 0.9280 +5903 11127 0.6060 +5903 11160 0.4780 +5903 11168 0.6360 +5903 11188 0.7960 +5903 11200 0.4450 +5903 11218 0.5100 +5903 11222 0.5330 +5903 11260 0.8080 +5903 11338 0.4800 +5903 22794 0.5040 +5903 22824 0.5250 +5903 22872 0.7740 +5903 22913 0.5510 +5903 22916 0.5930 +5903 22938 0.5030 +5903 22982 0.6190 +5903 22984 0.4200 +5903 23011 0.4020 +5903 23020 0.4520 +5903 23049 0.4100 +5903 23065 0.4080 +5903 23137 0.7010 +5903 23165 0.9940 +5903 23181 0.5780 +5903 23208 0.4080 +5903 23214 0.8290 +5903 23225 0.9940 +5903 23279 0.9920 +5903 23299 0.9950 +5903 23306 0.8270 +5903 23327 0.4530 +5903 23350 0.4130 +5903 23353 0.4650 +5903 23361 0.4350 +5903 23369 0.4890 +5903 23405 0.5100 +5903 23426 0.8080 +5903 23429 0.5630 +5903 23476 0.4030 +5903 23511 0.9890 +5903 23534 0.7940 +5903 23560 0.5480 +5903 23633 0.7260 +5903 23636 0.9970 +5903 25777 0.4340 +5903 25909 0.9920 +5903 25929 0.4810 +5903 25939 0.4140 +5903 25950 0.5100 +5903 25962 0.4020 +5903 26036 0.6730 +5903 26054 0.5480 +5903 26097 0.4630 +5903 26168 0.5360 +5903 26227 0.6150 +5903 26589 0.4320 +5903 26953 0.5060 +5903 27101 0.4470 +5903 27161 0.5140 +5903 27235 0.5940 +5903 27339 0.4280 +5903 27341 0.4830 +5903 27436 0.7500 +5903 28998 0.4700 +5903 29072 0.4050 +5903 29098 0.5290 +5903 29107 0.8710 +5903 29843 0.7540 +5903 29894 0.4490 +5903 30000 0.4250 +5903 50628 0.4050 +5903 51029 0.4430 +5903 51068 0.4230 +5903 51154 0.4170 +5903 51182 0.5550 +5903 51203 0.7840 +5903 51213 0.4350 +5903 51314 0.4750 +5903 51340 0.4080 +5903 51362 0.5460 +5903 51366 0.4820 +5903 51501 0.4640 +5903 51588 0.6510 +5903 51602 0.4810 +5903 51692 0.4880 +5903 51710 0.4350 +5903 51808 0.5130 +5903 53335 0.5400 +5903 53371 0.9990 +5903 53981 0.4710 +5903 54431 0.4610 +5903 54596 0.5060 +5903 54780 0.5830 +5903 54820 0.4170 +5903 54830 0.5010 +5903 55110 0.5510 +5903 55143 0.7550 +5903 55210 0.4580 +5903 55226 0.4010 +5903 55288 0.5000 +5903 55301 0.5060 +5903 55339 0.6710 +5903 55374 0.4440 +5903 55638 0.5470 +5903 55706 0.9710 +5903 55719 0.5400 +5903 55746 0.9970 +5903 55795 0.9180 +5903 55813 0.4040 +5903 55916 0.4280 +5903 56157 0.4130 +5903 56160 0.6030 +5903 56943 0.9200 +5903 56949 0.4290 +5903 57096 0.5870 +5903 57122 0.9980 +5903 57129 0.4320 +5903 57187 0.6130 +5903 57337 0.5230 +5903 57448 0.6960 +5903 57510 0.8460 +5903 57609 0.5860 +5903 57679 0.4890 +5903 57727 0.8660 +5903 59343 0.5190 +5903 60482 0.7470 +5903 63875 0.4600 +5903 64328 0.5580 +5903 64682 0.4410 +5903 65003 0.4450 +5903 65109 0.5230 +5903 79023 0.9780 +5903 79228 0.5410 +5903 79571 0.4640 +5903 79590 0.4420 +5903 79631 0.4150 +5903 79677 0.6500 +5903 79711 0.5760 +5903 79728 0.4050 +5903 79760 0.4260 +5903 79833 0.4140 +5903 79902 0.9920 +5903 80145 0.5020 +5903 80221 0.5090 +5903 80304 0.5690 +5903 80818 0.4350 +5903 81492 0.8060 +5903 81565 0.4800 +5903 81608 0.4420 +5903 81929 0.9930 +5903 84135 0.4800 +5903 84248 0.5260 +5903 84250 0.6260 +5903 84271 0.6260 +5903 84321 0.5630 +5903 84324 0.5710 +5903 84545 0.4170 +5903 84823 0.4160 +5903 84901 0.4840 +5903 85363 0.5710 +5903 85476 0.4230 +5903 89941 0.5470 +5903 91074 0.4630 +5903 91754 0.5360 +5903 92170 0.4500 +5903 93380 0.4300 +5903 115416 0.4110 +5903 115560 0.4350 +5903 116835 0.5080 +5903 120892 0.5870 +5903 123169 0.4610 +5903 129401 0.9970 +5903 140609 0.4010 +5903 148266 0.4380 +5903 157869 0.5060 +5903 161176 0.5120 +5903 164668 0.4340 +5903 197322 0.5270 +5903 197370 0.6160 +5903 199746 0.4060 +5903 205564 0.5840 +5903 219927 0.4360 +5903 259217 0.5080 +5903 283383 0.9080 +5903 284390 0.4350 +5903 286053 0.7560 +5903 345630 0.4960 +5903 345895 0.8060 +5903 348995 0.9850 +5903 376497 0.5140 +5903 387082 0.9720 +5903 402569 0.6920 +5903 493861 0.5800 +5903 728343 0.5890 +5903 728741 0.5250 +5903 729857 0.4500 +5903 100101267 0.9440 +5905 5921 0.7730 +5905 6047 0.5980 +5905 6103 0.4640 +5905 6168 0.5060 +5905 6223 0.4620 +5905 6396 0.7280 +5905 6427 0.4390 +5905 6612 0.9090 +5905 6613 0.9990 +5905 6672 0.4040 +5905 6996 0.5330 +5905 7175 0.7350 +5905 7319 0.4560 +5905 7320 0.4190 +5905 7321 0.4900 +5905 7322 0.4730 +5905 7323 0.4480 +5905 7324 0.4190 +5905 7325 0.4420 +5905 7326 0.4200 +5905 7329 0.9990 +5905 7332 0.4250 +5905 7334 0.4760 +5905 7336 0.4900 +5905 7341 0.9990 +5905 7514 0.9790 +5905 8021 0.8480 +5905 8086 0.5970 +5905 8361 0.5630 +5905 8480 0.7980 +5905 8498 0.9280 +5905 8554 0.4800 +5905 8662 0.5540 +5905 8663 0.4190 +5905 8664 0.4270 +5905 8665 0.4320 +5905 8667 0.4580 +5905 8668 0.4520 +5905 8836 0.4750 +5905 8883 0.4020 +5905 9040 0.5300 +5905 9055 0.4410 +5905 9063 0.4230 +5905 9128 0.4270 +5905 9129 0.4130 +5905 9133 0.5340 +5905 9184 0.6420 +5905 9212 0.7080 +5905 9246 0.4340 +5905 9343 0.5980 +5905 9401 0.4060 +5905 9631 0.8360 +5905 9648 0.6150 +5905 9670 0.4220 +5905 9688 0.8580 +5905 9700 0.5740 +5905 9787 0.4170 +5905 9818 0.7000 +5905 9883 0.6160 +5905 9972 0.9250 +5905 10054 0.9180 +5905 10055 0.9400 +5905 10073 0.7130 +5905 10087 0.5350 +5905 10155 0.5000 +5905 10189 0.6580 +5905 10204 0.9320 +5905 10208 0.4520 +5905 10210 0.4590 +5905 10477 0.5630 +5905 10482 0.8520 +5905 10527 0.7030 +5905 10726 0.8340 +5905 10762 0.8080 +5905 10856 0.5010 +5905 11065 0.4910 +5905 11097 0.6170 +5905 11188 0.8640 +5905 11260 0.8780 +5905 22974 0.6480 +5905 23039 0.4190 +5905 23137 0.6180 +5905 23165 0.8480 +5905 23184 0.5010 +5905 23214 0.5470 +5905 23223 0.4140 +5905 23225 0.8330 +5905 23279 0.8610 +5905 23306 0.8460 +5905 23435 0.5520 +5905 23510 0.5630 +5905 23511 0.8350 +5905 23534 0.5900 +5905 23633 0.4340 +5905 23636 0.8380 +5905 25909 0.6240 +5905 26036 0.6690 +5905 26054 0.8500 +5905 26155 0.7980 +5905 26168 0.8500 +5905 26227 0.4610 +5905 27037 0.5030 +5905 27338 0.5330 +5905 27351 0.4080 +5905 27436 0.5170 +5905 29107 0.5240 +5905 29843 0.9960 +5905 29889 0.6600 +5905 30000 0.4180 +5905 51068 0.5200 +5905 51194 0.4580 +5905 51366 0.4700 +5905 51588 0.4800 +5905 51808 0.5420 +5905 53371 0.7700 +5905 54780 0.5460 +5905 55143 0.6930 +5905 55255 0.4790 +5905 55632 0.4090 +5905 55706 0.5830 +5905 55719 0.5400 +5905 55746 0.8510 +5905 55916 0.4250 +5905 56160 0.5800 +5905 56852 0.4030 +5905 57122 0.9650 +5905 57337 0.9010 +5905 57510 0.8810 +5905 59343 0.9890 +5905 63893 0.4480 +5905 64328 0.8360 +5905 64397 0.5260 +5905 65083 0.4990 +5905 65264 0.4160 +5905 79023 0.8120 +5905 79677 0.5870 +5905 79711 0.4080 +5905 79902 0.8750 +5905 79968 0.4800 +5905 81492 0.4420 +5905 81929 0.8310 +5905 83746 0.4050 +5905 84220 0.8630 +5905 84250 0.5780 +5905 84823 0.6980 +5905 129401 0.8420 +5905 140775 0.4080 +5905 197370 0.5550 +5905 203228 0.6080 +5905 205564 0.7510 +5905 220988 0.5780 +5905 283383 0.8900 +5905 286053 0.6760 +5905 345895 0.4420 +5905 348995 0.6650 +5905 387082 0.8280 +5905 493861 0.5400 +5905 653489 0.8320 +5905 729540 0.8290 +5905 729857 0.9980 +5905 100101267 0.6440 +5905 114483834 0.4390 +5906 5908 0.9120 +5906 5909 0.9520 +5906 5910 0.7880 +5906 5921 0.8900 +5906 5922 0.6180 +5906 5923 0.6000 +5906 5999 0.4170 +5906 6093 0.4080 +5906 6453 0.5350 +5906 6464 0.5780 +5906 6494 0.9280 +5906 6502 0.4130 +5906 6654 0.7150 +5906 6714 0.9400 +5906 6850 0.6230 +5906 7074 0.9360 +5906 7082 0.4550 +5906 7094 0.7850 +5906 7157 0.5320 +5906 7187 0.7750 +5906 7249 0.7900 +5906 7409 0.9240 +5906 7410 0.9350 +5906 7414 0.5960 +5906 7450 0.4600 +5906 7529 0.6720 +5906 7534 0.7830 +5906 7879 0.5430 +5906 8503 0.9180 +5906 8631 0.9250 +5906 8649 0.4800 +5906 8826 0.8110 +5906 8831 0.6080 +5906 8844 0.7310 +5906 9138 0.4700 +5906 9162 0.5320 +5906 9223 0.4440 +5906 9270 0.8910 +5906 9453 0.4280 +5906 9564 0.6090 +5906 9693 0.9960 +5906 9732 0.9360 +5906 9771 0.9860 +5906 9844 0.4420 +5906 9855 0.9070 +5906 9905 0.6630 +5906 9928 0.4320 +5906 10125 0.9670 +5906 10235 0.9930 +5906 10256 0.4450 +5906 10411 0.9870 +5906 10451 0.9140 +5906 10567 0.5110 +5906 10631 0.4150 +5906 10636 0.9630 +5906 10818 0.5960 +5906 11069 0.9940 +5906 11235 0.7390 +5906 11346 0.4150 +5906 22821 0.7290 +5906 22866 0.4600 +5906 23108 0.7320 +5906 23179 0.4030 +5906 23560 0.4080 +5906 23683 0.9080 +5906 25780 0.9800 +5906 25865 0.9050 +5906 26037 0.9260 +5906 26054 0.5770 +5906 26499 0.4630 +5906 27352 0.6490 +5906 28956 0.4530 +5906 50618 0.5490 +5906 51196 0.9480 +5906 51735 0.9900 +5906 51762 0.5810 +5906 54518 0.9970 +5906 54756 0.5050 +5906 54922 0.6560 +5906 55004 0.4050 +5906 55255 0.4160 +5906 55698 0.6280 +5906 55715 0.4220 +5906 57139 0.4210 +5906 57337 0.6200 +5906 57498 0.5830 +5906 57568 0.9090 +5906 57589 0.4060 +5906 64411 0.9170 +5906 65059 0.7290 +5906 83593 0.9920 +5906 83605 0.7520 +5906 83660 0.6060 +5906 83706 0.6220 +5906 85358 0.8010 +5906 115727 0.6390 +5906 129049 0.6630 +5906 161514 0.5160 +5906 266747 0.4180 +5906 283349 0.4780 +5906 345456 0.4480 +5906 375189 0.4490 +5906 653361 0.9370 +5908 5909 0.9470 +5908 5910 0.5160 +5908 5921 0.4570 +5908 6453 0.5460 +5908 6464 0.5680 +5908 6494 0.9260 +5908 6654 0.6410 +5908 6714 0.9380 +5908 6775 0.7690 +5908 6850 0.6390 +5908 7074 0.9480 +5908 7094 0.9810 +5908 7408 0.4640 +5908 7409 0.9240 +5908 7410 0.9230 +5908 7414 0.6930 +5908 7448 0.4460 +5908 7450 0.5580 +5908 7529 0.6640 +5908 7534 0.6620 +5908 7879 0.5660 +5908 8503 0.9160 +5908 8631 0.9110 +5908 8826 0.7830 +5908 8844 0.7140 +5908 8874 0.5170 +5908 9270 0.6140 +5908 9564 0.6160 +5908 9610 0.4670 +5908 9693 0.9890 +5908 9732 0.9230 +5908 9771 0.9450 +5908 9855 0.9070 +5908 9905 0.7630 +5908 10096 0.4380 +5908 10109 0.4160 +5908 10125 0.9730 +5908 10155 0.4750 +5908 10235 0.9890 +5908 10256 0.4450 +5908 10411 0.9820 +5908 10451 0.9110 +5908 10633 0.7540 +5908 10636 0.9020 +5908 11069 0.9980 +5908 11235 0.4400 +5908 11275 0.4520 +5908 22821 0.4780 +5908 22866 0.4600 +5908 23108 0.7510 +5908 23179 0.4550 +5908 23229 0.4570 +5908 23390 0.4210 +5908 23683 0.9040 +5908 25780 0.9580 +5908 25865 0.9040 +5908 25940 0.4680 +5908 26037 0.9200 +5908 27352 0.7620 +5908 50618 0.5420 +5908 51196 0.9150 +5908 51206 0.4310 +5908 51735 0.9450 +5908 51762 0.6100 +5908 54518 0.9840 +5908 54536 0.5100 +5908 54756 0.5050 +5908 54886 0.4550 +5908 54922 0.9400 +5908 55631 0.4440 +5908 57493 0.8550 +5908 57521 0.4050 +5908 57568 0.9130 +5908 57621 0.4290 +5908 64411 0.9230 +5908 64805 0.4470 +5908 65059 0.4520 +5908 65095 0.4060 +5908 81565 0.4710 +5908 83593 0.9730 +5908 83605 0.4010 +5908 83660 0.6660 +5908 85358 0.9290 +5908 115727 0.4870 +5908 129049 0.7620 +5908 133482 0.5310 +5909 5911 0.7640 +5909 5912 0.4570 +5909 5921 0.8370 +5909 5979 0.5670 +5909 6755 0.4260 +5909 7248 0.6020 +5909 8320 0.4520 +5909 8945 0.4010 +5909 9024 0.4360 +5909 9048 0.5010 +5909 9693 0.4450 +5909 9771 0.4040 +5909 10235 0.4760 +5909 10411 0.6020 +5909 10636 0.4060 +5909 10716 0.5000 +5909 11069 0.6020 +5909 22821 0.4740 +5909 23108 0.4090 +5909 23373 0.4420 +5909 23762 0.4450 +5909 26086 0.5130 +5909 51655 0.4010 +5909 54518 0.4420 +5909 57826 0.4230 +5909 64096 0.5290 +5909 126006 0.4880 +5910 5911 0.4180 +5910 6237 0.4610 +5910 7150 0.4900 +5910 8021 0.5130 +5910 10260 0.4380 +5910 10633 0.7520 +5910 11168 0.6510 +5910 22800 0.4270 +5910 22827 0.4420 +5910 23173 0.4670 +5910 26040 0.6140 +5910 26235 0.4480 +5910 54509 0.4100 +5910 54769 0.6750 +5910 54892 0.4020 +5910 54904 0.6110 +5910 55288 0.8330 +5910 57826 0.5490 +5910 58473 0.6140 +5910 64324 0.6200 +5910 64927 0.5330 +5910 65997 0.4030 +5910 79142 0.5760 +5910 83544 0.5930 +5910 83871 0.4240 +5910 89941 0.8270 +5910 90693 0.4600 +5910 94086 0.4180 +5910 116984 0.4590 +5910 127247 0.4280 +5910 147991 0.4240 +5910 148252 0.7920 +5910 219487 0.4190 +5910 219493 0.4430 +5910 285282 0.6500 +5910 285555 0.5070 +5911 5921 0.4510 +5911 6002 0.4710 +5911 6416 0.4050 +5911 6453 0.5710 +5911 6494 0.7260 +5911 7046 0.4600 +5911 7529 0.4470 +5911 8905 0.4750 +5911 9024 0.4150 +5911 9270 0.5730 +5911 9411 0.9550 +5911 9448 0.6840 +5911 9693 0.8910 +5911 9771 0.6910 +5911 9905 0.7160 +5911 10125 0.5080 +5911 10235 0.5500 +5911 10411 0.8940 +5911 10636 0.7780 +5911 10767 0.6010 +5911 10900 0.8960 +5911 11069 0.9270 +5911 22902 0.6730 +5911 23043 0.9800 +5911 23179 0.7600 +5911 23432 0.6170 +5911 25780 0.4310 +5911 26054 0.5450 +5911 27352 0.7130 +5911 50488 0.5570 +5911 50618 0.5400 +5911 51196 0.4440 +5911 51735 0.8970 +5911 54461 0.4240 +5911 54518 0.4130 +5911 54922 0.6190 +5911 57337 0.6570 +5911 57826 0.4380 +5911 65095 0.4020 +5911 79012 0.4630 +5911 83593 0.7360 +5911 84896 0.5790 +5911 115727 0.4100 +5911 116519 0.8910 +5911 129049 0.7520 +5911 132946 0.5490 +5911 154661 0.7820 +5911 154796 0.4960 +5911 100533467 0.4500 +5912 5921 0.7110 +5912 6093 0.4840 +5912 6453 0.5350 +5912 6517 0.5330 +5912 6654 0.5060 +5912 6655 0.5150 +5912 6714 0.4370 +5912 7249 0.4420 +5912 8120 0.4770 +5912 8153 0.6100 +5912 8218 0.5780 +5912 8905 0.4660 +5912 8925 0.5670 +5912 8943 0.4590 +5912 8976 0.5050 +5912 9076 0.4720 +5912 9138 0.4670 +5912 9179 0.7550 +5912 9185 0.4440 +5912 9475 0.4450 +5912 9693 0.8280 +5912 9905 0.6520 +5912 10123 0.4050 +5912 10125 0.4600 +5912 10235 0.4260 +5912 10411 0.5060 +5912 10507 0.5640 +5912 10526 0.6130 +5912 10717 0.7500 +5912 10900 0.7910 +5912 10928 0.5130 +5912 11069 0.6370 +5912 11154 0.6910 +5912 11336 0.5270 +5912 22895 0.4860 +5912 22920 0.4510 +5912 23086 0.6700 +5912 23265 0.6040 +5912 23431 0.7150 +5912 23560 0.4760 +5912 27289 0.6990 +5912 27352 0.6490 +5912 50618 0.5540 +5912 51196 0.5090 +5912 51806 0.4300 +5912 54843 0.6680 +5912 55333 0.4890 +5912 57521 0.5620 +5912 60412 0.5730 +5912 63973 0.4740 +5912 79083 0.5810 +5912 90627 0.4280 +5912 129049 0.6510 +5912 342184 0.4920 +5912 653361 0.8120 +5913 6329 0.6370 +5913 6442 0.4110 +5913 6572 0.5790 +5913 6645 0.4370 +5913 7273 0.4790 +5913 7402 0.8870 +5913 7844 0.7850 +5913 8292 0.8780 +5913 8492 0.4520 +5913 8925 0.4200 +5913 9581 0.4430 +5913 10009 0.8140 +5913 10243 0.5250 +5913 23499 0.7620 +5913 26227 0.4070 +5913 29925 0.4910 +5913 57563 0.4690 +5913 57659 0.5860 +5913 60482 0.4330 +5913 79608 0.6200 +5913 91252 0.5040 +5913 199857 0.6270 +5913 253461 0.5960 +5913 285489 0.9830 +5913 375790 0.9880 +5914 5915 0.9840 +5914 5916 0.9580 +5914 5917 0.9410 +5914 5918 0.6130 +5914 5920 0.5330 +5914 5927 0.4150 +5914 5928 0.5870 +5914 5929 0.5560 +5914 5931 0.5730 +5914 5948 0.7400 +5914 5987 0.4880 +5914 6047 0.6490 +5914 6256 0.9990 +5914 6257 0.9930 +5914 6258 0.9830 +5914 6347 0.4640 +5914 6348 0.4790 +5914 6351 0.4250 +5914 6354 0.4290 +5914 6357 0.5430 +5914 6358 0.5490 +5914 6359 0.5490 +5914 6360 0.5800 +5914 6477 0.4260 +5914 6497 0.5400 +5914 6498 0.4610 +5914 6613 0.5930 +5914 6667 0.7290 +5914 6688 0.9780 +5914 6714 0.6310 +5914 6722 0.4300 +5914 6772 0.8260 +5914 6774 0.6010 +5914 6776 0.6880 +5914 6777 0.7770 +5914 6839 0.6810 +5914 6867 0.4860 +5914 6907 0.4430 +5914 6929 0.4480 +5914 6934 0.4640 +5914 6938 0.4860 +5914 6996 0.5660 +5914 7022 0.6650 +5914 7040 0.4060 +5914 7050 0.7010 +5914 7067 0.4040 +5914 7068 0.4460 +5914 7080 0.5850 +5914 7155 0.4530 +5914 7157 0.5910 +5914 7329 0.6000 +5914 7337 0.6520 +5914 7341 0.5820 +5914 7403 0.6600 +5914 7484 0.4220 +5914 7490 0.5810 +5914 7528 0.6270 +5914 7703 0.5720 +5914 7704 0.9970 +5914 7874 0.6330 +5914 7913 0.5350 +5914 8021 0.4340 +5914 8028 0.4770 +5914 8085 0.6050 +5914 8087 0.4290 +5914 8148 0.4280 +5914 8178 0.4870 +5914 8202 0.9480 +5914 8204 0.8950 +5914 8289 0.4300 +5914 8290 0.5810 +5914 8331 0.5000 +5914 8334 0.6300 +5914 8337 0.5820 +5914 8338 0.5820 +5914 8340 0.5330 +5914 8341 0.5310 +5914 8342 0.5360 +5914 8345 0.5320 +5914 8347 0.6500 +5914 8348 0.5310 +5914 8349 0.5960 +5914 8356 0.7010 +5914 8361 0.5940 +5914 8431 0.8570 +5914 8648 0.9960 +5914 8651 0.4630 +5914 8714 0.5110 +5914 8726 0.5500 +5914 8737 0.5240 +5914 8795 0.4400 +5914 8805 0.9240 +5914 8841 0.6870 +5914 8850 0.7960 +5914 8854 0.6380 +5914 8864 0.4970 +5914 8878 0.7530 +5914 8945 0.4650 +5914 8970 0.5300 +5914 9053 0.5210 +5914 9070 0.5600 +5914 9125 0.4320 +5914 9213 0.7540 +5914 9227 0.4800 +5914 9513 0.4280 +5914 9560 0.5140 +5914 9575 0.8710 +5914 9611 0.9990 +5914 9612 0.9990 +5914 9687 0.4580 +5914 9759 0.7420 +5914 9846 0.4340 +5914 9915 0.4640 +5914 9935 0.4910 +5914 9971 0.5200 +5914 10051 0.4170 +5914 10221 0.4980 +5914 10474 0.5670 +5914 10499 0.9920 +5914 10664 0.6520 +5914 10891 0.7430 +5914 11091 0.5640 +5914 11145 0.4790 +5914 11335 0.4290 +5914 22954 0.4170 +5914 22976 0.5100 +5914 23028 0.5590 +5914 23054 0.9490 +5914 23090 0.6430 +5914 23133 0.7700 +5914 23411 0.5760 +5914 23512 0.8260 +5914 23522 0.4590 +5914 23532 0.6550 +5914 25819 0.4010 +5914 25902 0.4960 +5914 25942 0.5030 +5914 27000 0.4380 +5914 27436 0.4510 +5914 51102 0.5670 +5914 51127 0.4090 +5914 51676 0.6520 +5914 51755 0.4840 +5914 53335 0.4420 +5914 54145 0.5300 +5914 54790 0.5120 +5914 54828 0.4140 +5914 55766 0.4990 +5914 55791 0.4170 +5914 55904 0.7120 +5914 56603 0.6100 +5914 57110 0.4500 +5914 57125 0.4020 +5914 57472 0.5190 +5914 57761 0.6310 +5914 58508 0.6030 +5914 63925 0.4180 +5914 64220 0.7610 +5914 64324 0.4290 +5914 79039 0.4420 +5914 79068 0.4550 +5914 79447 0.4990 +5914 79718 0.5720 +5914 81608 0.5070 +5914 84106 0.9510 +5914 84152 0.4070 +5914 84260 0.5120 +5914 84961 0.4060 +5914 84962 0.6540 +5914 85236 0.5330 +5914 90665 0.4220 +5914 94239 0.6560 +5914 128312 0.5300 +5914 135112 0.6880 +5914 143384 0.4990 +5914 147179 0.4420 +5914 157506 0.5410 +5914 171023 0.6050 +5914 255626 0.5280 +5914 283373 0.4010 +5914 340665 0.4950 +5914 346673 0.4010 +5914 414062 0.5000 +5914 440093 0.4100 +5914 440686 0.4090 +5914 474382 0.4990 +5914 653604 0.6920 +5914 100532731 0.7180 +5915 5916 0.9110 +5915 5917 0.9580 +5915 5918 0.5780 +5915 5920 0.6430 +5915 5928 0.5420 +5915 5931 0.5340 +5915 5948 0.6350 +5915 6256 0.9960 +5915 6257 0.9920 +5915 6258 0.9730 +5915 6284 0.5470 +5915 6422 0.4610 +5915 6774 0.4720 +5915 6899 0.4200 +5915 7015 0.4120 +5915 7042 0.5700 +5915 7068 0.4500 +5915 7078 0.5650 +5915 7157 0.6120 +5915 7161 0.4330 +5915 7528 0.5690 +5915 7703 0.5080 +5915 8204 0.5580 +5915 8331 0.5070 +5915 8334 0.4990 +5915 8337 0.5500 +5915 8338 0.5500 +5915 8340 0.5040 +5915 8341 0.5040 +5915 8342 0.5040 +5915 8345 0.5040 +5915 8347 0.5040 +5915 8348 0.5040 +5915 8349 0.5580 +5915 8356 0.6390 +5915 8361 0.5790 +5915 8505 0.4160 +5915 8648 0.9840 +5915 8726 0.5180 +5915 8854 0.6420 +5915 8970 0.5040 +5915 9213 0.6070 +5915 9227 0.4620 +5915 9249 0.4740 +5915 9436 0.4330 +5915 9611 0.7050 +5915 9612 0.7570 +5915 9940 0.4070 +5915 10001 0.4390 +5915 10664 0.5630 +5915 10891 0.4900 +5915 11145 0.5940 +5915 11186 0.7890 +5915 23028 0.4870 +5915 23090 0.4110 +5915 23411 0.4440 +5915 23512 0.5820 +5915 23671 0.4390 +5915 23705 0.4220 +5915 24137 0.4320 +5915 54145 0.5040 +5915 55193 0.5700 +5915 55743 0.5060 +5915 55766 0.5010 +5915 56603 0.6350 +5915 57110 0.6280 +5915 57822 0.5030 +5915 64220 0.6320 +5915 64919 0.4440 +5915 84106 0.4750 +5915 85236 0.5040 +5915 92304 0.4120 +5915 94239 0.5340 +5915 128312 0.5300 +5915 157506 0.5570 +5915 255626 0.5070 +5915 340665 0.5380 +5915 353116 0.5100 +5915 474382 0.5030 +5915 653604 0.6390 +5916 5917 0.9680 +5916 5918 0.5330 +5916 5920 0.7190 +5916 5928 0.5340 +5916 5929 0.5030 +5916 5931 0.5340 +5916 5948 0.6210 +5916 6256 0.9450 +5916 6257 0.9460 +5916 6258 0.9590 +5916 6657 0.5860 +5916 6714 0.5420 +5916 6774 0.4320 +5916 6932 0.4260 +5916 7067 0.4400 +5916 7098 0.4120 +5916 7099 0.4120 +5916 7155 0.6170 +5916 7403 0.5600 +5916 7484 0.4100 +5916 8085 0.5230 +5916 8202 0.5950 +5916 8204 0.5150 +5916 8331 0.5000 +5916 8334 0.4990 +5916 8337 0.4990 +5916 8338 0.4990 +5916 8340 0.5160 +5916 8341 0.5110 +5916 8342 0.5050 +5916 8345 0.5040 +5916 8347 0.5040 +5916 8348 0.5040 +5916 8349 0.5230 +5916 8356 0.5780 +5916 8361 0.4990 +5916 8431 0.6050 +5916 8435 0.6280 +5916 8648 0.5830 +5916 8726 0.5320 +5916 8737 0.4140 +5916 8841 0.5200 +5916 8854 0.6360 +5916 8970 0.5050 +5916 9070 0.5130 +5916 9213 0.6160 +5916 9227 0.4800 +5916 9249 0.4280 +5916 9436 0.4320 +5916 9611 0.7760 +5916 9612 0.7540 +5916 10011 0.8180 +5916 10174 0.4440 +5916 10413 0.4020 +5916 11091 0.5210 +5916 11145 0.6740 +5916 22976 0.5000 +5916 23054 0.5220 +5916 23512 0.6880 +5916 54145 0.5040 +5916 55749 0.6470 +5916 55766 0.5090 +5916 56603 0.6240 +5916 57110 0.6680 +5916 58508 0.5280 +5916 60314 0.4150 +5916 64078 0.4470 +5916 64220 0.5990 +5916 79447 0.4990 +5916 79797 0.4040 +5916 79923 0.5610 +5916 84962 0.6740 +5916 84975 0.4040 +5916 85236 0.5040 +5916 94239 0.5340 +5916 128312 0.5040 +5916 157506 0.5570 +5916 255626 0.5040 +5916 340665 0.5260 +5916 346673 0.4550 +5916 474382 0.4990 +5916 653604 0.5770 +5917 5948 0.7000 +5917 5950 0.5540 +5917 6122 0.4750 +5917 6124 0.4920 +5917 6125 0.6320 +5917 6129 0.4670 +5917 6132 0.4840 +5917 6133 0.5810 +5917 6135 0.6350 +5917 6136 0.4550 +5917 6139 0.4470 +5917 6147 0.4960 +5917 6170 0.5310 +5917 6175 0.6630 +5917 6183 0.5090 +5917 6187 0.5320 +5917 6188 0.7540 +5917 6189 0.4580 +5917 6193 0.7060 +5917 6194 0.4070 +5917 6203 0.7250 +5917 6205 0.5430 +5917 6207 0.4340 +5917 6208 0.5080 +5917 6209 0.4830 +5917 6210 0.4010 +5917 6217 0.6050 +5917 6222 0.5900 +5917 6228 0.5540 +5917 6256 0.8260 +5917 6257 0.7610 +5917 6258 0.4890 +5917 6301 0.9330 +5917 6386 0.7840 +5917 6657 0.4370 +5917 6713 0.4040 +5917 6729 0.4440 +5917 6734 0.4340 +5917 6776 0.5070 +5917 6777 0.5200 +5917 6897 0.8060 +5917 6928 0.5050 +5917 7026 0.6500 +5917 7068 0.4530 +5917 7182 0.5620 +5917 7276 0.4290 +5917 7284 0.4670 +5917 7372 0.4490 +5917 7407 0.9050 +5917 7453 0.7960 +5917 7965 0.9980 +5917 8204 0.6340 +5917 8565 0.9420 +5917 8648 0.5550 +5917 8697 0.4400 +5917 8795 0.6780 +5917 8805 0.7340 +5917 8833 0.8720 +5917 8850 0.4990 +5917 8854 0.6670 +5917 8856 0.6310 +5917 9213 0.5070 +5917 9227 0.5530 +5917 9249 0.5090 +5917 9255 0.9990 +5917 9343 0.4130 +5917 9349 0.5300 +5917 9521 0.9960 +5917 9533 0.4720 +5917 9575 0.4080 +5917 9611 0.9420 +5917 9612 0.9030 +5917 9617 0.4390 +5917 9669 0.6310 +5917 9687 0.4390 +5917 9933 0.4610 +5917 9970 0.5240 +5917 9971 0.6620 +5917 10056 0.7060 +5917 10062 0.6290 +5917 10102 0.5850 +5917 10135 0.4450 +5917 10213 0.4950 +5917 10352 0.8030 +5917 10528 0.5300 +5917 10575 0.4080 +5917 10667 0.5710 +5917 11128 0.5700 +5917 11224 0.4180 +5917 11232 0.4470 +5917 23173 0.4240 +5917 23252 0.5490 +5917 23286 0.4070 +5917 23395 0.9840 +5917 23438 0.8010 +5917 23521 0.6750 +5917 25885 0.4920 +5917 25942 0.6990 +5917 25973 0.9300 +5917 26271 0.4520 +5917 28998 0.6160 +5917 29789 0.7470 +5917 51021 0.4320 +5917 51067 0.8530 +5917 51073 0.4540 +5917 51081 0.6470 +5917 51154 0.4950 +5917 51264 0.4860 +5917 51520 0.9990 +5917 51574 0.5280 +5917 53630 0.6400 +5917 54516 0.4350 +5917 54938 0.9300 +5917 54979 0.4140 +5917 55152 0.5090 +5917 55157 0.7280 +5917 55272 0.6760 +5917 55699 0.9790 +5917 55703 0.5570 +5917 56474 0.6950 +5917 56603 0.6750 +5917 56648 0.4070 +5917 57038 0.9170 +5917 57110 0.4020 +5917 57136 0.4440 +5917 57176 0.8880 +5917 57470 0.6070 +5917 57505 0.7740 +5917 60558 0.5550 +5917 63875 0.4680 +5917 64220 0.6420 +5917 64965 0.4420 +5917 64968 0.4480 +5917 64969 0.4600 +5917 64983 0.4490 +5917 65005 0.4650 +5917 65008 0.4260 +5917 79042 0.4240 +5917 79165 0.4110 +5917 79587 0.8020 +5917 79731 0.7910 +5917 80222 0.7200 +5917 80324 0.5070 +5917 83875 0.5730 +5917 84106 0.5630 +5917 84128 0.4490 +5917 84172 0.4920 +5917 84340 0.4640 +5917 84464 0.4330 +5917 84705 0.4020 +5917 85476 0.5230 +5917 87178 0.4690 +5917 91464 0.4280 +5917 91574 0.4360 +5917 91875 0.6930 +5917 92399 0.5250 +5917 92935 0.9520 +5917 114112 0.5060 +5917 116362 0.4550 +5917 116832 0.5360 +5917 118881 0.4100 +5917 121214 0.4900 +5917 123263 0.5140 +5917 123283 0.9140 +5917 124454 0.8290 +5917 126402 0.6240 +5917 143244 0.4070 +5917 157506 0.6560 +5917 162417 0.8260 +5917 171023 0.4650 +5917 219927 0.6210 +5917 221823 0.4180 +5917 340665 0.6240 +5917 346673 0.4430 +5917 374395 0.4890 +5917 440275 0.4210 +5917 101927367 0.4370 +5918 5920 0.4400 +5918 9249 0.5360 +5918 10656 0.4350 +5918 10657 0.4420 +5918 79841 0.6970 +5918 201931 0.6040 +5919 5950 0.6930 +5919 6347 0.5200 +5919 6363 0.6380 +5919 6387 0.4290 +5919 6414 0.5530 +5919 6694 0.4040 +5919 7078 0.4800 +5919 7123 0.4210 +5919 7124 0.5220 +5919 8862 0.7600 +5919 9034 0.9960 +5919 9248 0.4460 +5919 9370 0.7730 +5919 10135 0.7840 +5919 10888 0.5140 +5919 26291 0.4780 +5919 51094 0.6310 +5919 55600 0.7900 +5919 56729 0.7730 +5919 79602 0.6920 +5919 84666 0.7710 +5919 145264 0.7930 +5919 252995 0.6330 +5919 282616 0.4090 +5919 282617 0.4120 +5920 6187 0.4020 +5920 6188 0.4290 +5920 6209 0.4050 +5920 6224 0.4080 +5920 6256 0.4960 +5920 6449 0.4990 +5920 6714 0.4220 +5920 7052 0.4460 +5920 7184 0.5220 +5920 7248 0.5100 +5920 7266 0.4260 +5920 7318 0.4010 +5920 8192 0.4190 +5920 8519 0.4230 +5920 8542 0.4370 +5920 8743 0.4300 +5920 9093 0.4330 +5920 9246 0.5950 +5920 10049 0.4200 +5920 10131 0.5100 +5920 10294 0.4480 +5920 10537 0.4060 +5920 10576 0.4150 +5920 10647 0.4110 +5920 10693 0.4110 +5920 11080 0.4200 +5920 23234 0.4200 +5920 23341 0.4200 +5920 23479 0.5330 +5920 25822 0.4200 +5920 51314 0.4460 +5920 51726 0.4320 +5920 54431 0.5660 +5920 54788 0.4210 +5920 55466 0.4570 +5920 55735 0.4200 +5920 56667 0.4320 +5920 56990 0.4340 +5920 57506 0.7650 +5920 79962 0.4280 +5920 79982 0.4240 +5920 80273 0.5880 +5920 80331 0.4200 +5920 80830 0.5410 +5920 81570 0.6790 +5920 84260 0.4890 +5920 85479 0.4210 +5920 96459 0.4200 +5920 113444 0.4330 +5920 114880 0.4170 +5920 115361 0.4610 +5920 120526 0.4330 +5920 134266 0.5880 +5920 136332 0.4400 +5920 139135 0.4050 +5920 140432 0.4200 +5920 150353 0.4340 +5920 165721 0.4200 +5920 171425 0.4200 +5920 202052 0.4200 +5920 285126 0.4200 +5920 285282 0.4220 +5920 374407 0.4200 +5920 548645 0.4200 +5920 552891 0.4200 +5920 652968 0.6090 +5920 729438 0.6100 +5921 5922 0.7360 +5921 5924 0.5860 +5921 5996 0.4390 +5921 5997 0.6060 +5921 5999 0.5840 +5921 6000 0.4790 +5921 6001 0.5000 +5921 6002 0.4640 +5921 6003 0.4450 +5921 6004 0.4790 +5921 6009 0.8100 +5921 6041 0.4080 +5921 6092 0.5150 +5921 6194 0.4280 +5921 6195 0.4780 +5921 6198 0.5910 +5921 6199 0.5940 +5921 6237 0.9790 +5921 6396 0.5070 +5921 6453 0.4480 +5921 6464 0.6930 +5921 6494 0.6430 +5921 6517 0.7240 +5921 6654 0.9390 +5921 6655 0.6870 +5921 6714 0.7980 +5921 6774 0.5370 +5921 6776 0.4300 +5921 6794 0.6650 +5921 7037 0.4970 +5921 7074 0.4770 +5921 7157 0.5050 +5921 7248 0.9330 +5921 7249 0.9280 +5921 7409 0.6150 +5921 7525 0.5320 +5921 7533 0.4430 +5921 7535 0.4390 +5921 8036 0.4180 +5921 8202 0.4180 +5921 8411 0.4640 +5921 8437 0.6400 +5921 8440 0.4870 +5921 8490 0.4490 +5921 8517 0.4100 +5921 8601 0.4750 +5921 8651 0.5140 +5921 8766 0.7950 +5921 8777 0.5190 +5921 8786 0.4760 +5921 8826 0.4170 +5921 8831 0.6280 +5921 8853 0.5390 +5921 8874 0.5680 +5921 8877 0.5550 +5921 8881 0.6390 +5921 8894 0.5690 +5921 8976 0.5320 +5921 9021 0.4880 +5921 9046 0.9820 +5921 9098 0.5830 +5921 9135 0.5490 +5921 9138 0.4180 +5921 9353 0.4910 +5921 9402 0.4290 +5921 9423 0.4490 +5921 9448 0.4200 +5921 9459 0.7640 +5921 9462 0.6400 +5921 9493 0.8200 +5921 9628 0.4800 +5921 9650 0.8220 +5921 9681 0.4870 +5921 9712 0.5180 +5921 9722 0.4020 +5921 9743 0.7930 +5921 9744 0.6020 +5921 9779 0.4900 +5921 9815 0.7750 +5921 9826 0.5700 +5921 9882 0.8580 +5921 9901 0.4810 +5921 9908 0.6700 +5921 9919 0.4690 +5921 9922 0.4270 +5921 10000 0.5120 +5921 10006 0.6310 +5921 10113 0.5960 +5921 10125 0.6810 +5921 10146 0.9940 +5921 10156 0.6600 +5921 10209 0.4740 +5921 10235 0.5080 +5921 10252 0.4830 +5921 10287 0.5420 +5921 10325 0.5830 +5921 10395 0.9610 +5921 10399 0.5020 +5921 10413 0.4380 +5921 10427 0.4980 +5921 10484 0.4590 +5921 10507 0.6500 +5921 10565 0.4500 +5921 10641 0.6600 +5921 10657 0.9770 +5921 10670 0.5960 +5921 10755 0.4670 +5921 10890 0.8630 +5921 10928 0.7560 +5921 10945 0.4650 +5921 10981 0.7080 +5921 11021 0.6600 +5921 11031 0.8180 +5921 11033 0.4200 +5921 22800 0.9350 +5921 22808 0.9620 +5921 22821 0.7130 +5921 22872 0.4100 +5921 22919 0.6160 +5921 22930 0.8170 +5921 23092 0.6520 +5921 23216 0.7500 +5921 23312 0.5020 +5921 23317 0.4890 +5921 23365 0.5920 +5921 23380 0.4850 +5921 23435 0.5040 +5921 23527 0.5230 +5921 23560 0.6200 +5921 23607 0.5690 +5921 25782 0.7110 +5921 25836 0.4650 +5921 26130 0.5390 +5921 26499 0.8030 +5921 26575 0.4490 +5921 27289 0.7140 +5921 28954 0.4130 +5921 28964 0.5610 +5921 29127 0.7780 +5921 50618 0.4510 +5921 50807 0.5970 +5921 51024 0.4520 +5921 51128 0.4480 +5921 51256 0.6590 +5921 51306 0.6020 +5921 51552 0.7010 +5921 51622 0.5390 +5921 51655 0.4030 +5921 51806 0.6430 +5921 54468 0.4960 +5921 54536 0.4740 +5921 54922 0.5230 +5921 55531 0.5220 +5921 55615 0.4220 +5921 55616 0.4050 +5921 56681 0.4660 +5921 57148 0.4030 +5921 57514 0.4180 +5921 57521 0.6130 +5921 57522 0.4370 +5921 57576 0.4690 +5921 57584 0.6900 +5921 57636 0.5150 +5921 58528 0.5410 +5921 60682 0.5150 +5921 64083 0.6360 +5921 64121 0.6120 +5921 64223 0.5700 +5921 64407 0.4760 +5921 64786 0.5790 +5921 64798 0.4780 +5921 64926 0.5640 +5921 79109 0.4620 +5921 79930 0.6430 +5921 80176 0.5480 +5921 83478 0.4740 +5921 83605 0.4360 +5921 83667 0.7250 +5921 83706 0.4680 +5921 83874 0.4730 +5921 84173 0.5090 +5921 84219 0.4160 +5921 84315 0.4610 +5921 84335 0.5060 +5921 84708 0.4620 +5921 85397 0.4450 +5921 90627 0.6580 +5921 91860 0.6430 +5921 115727 0.4550 +5921 116987 0.5080 +5921 120892 0.4980 +5921 128239 0.4860 +5921 128637 0.4690 +5921 131450 0.4580 +5921 133482 0.4180 +5921 153090 0.6220 +5921 153129 0.4600 +5921 154743 0.6330 +5921 161742 0.7500 +5921 163688 0.6430 +5921 200734 0.5730 +5921 201163 0.5090 +5921 221960 0.5170 +5921 253260 0.5170 +5921 255520 0.5670 +5921 282808 0.4940 +5921 285220 0.9050 +5921 374403 0.6670 +5921 374654 0.4290 +5921 399473 0.5120 +5921 431704 0.4460 +5921 652968 0.4320 +5921 729857 0.4990 +5922 6237 0.9590 +5922 6654 0.6410 +5922 6655 0.6220 +5922 8036 0.6490 +5922 8045 0.4210 +5922 8216 0.6070 +5922 8437 0.4860 +5922 8831 0.6210 +5922 9462 0.6480 +5922 10000 0.4170 +5922 10156 0.4810 +5922 22800 0.9330 +5922 22808 0.9420 +5922 22821 0.5630 +5922 23522 0.4180 +5922 26130 0.5420 +5922 26499 0.5170 +5922 55970 0.9000 +5922 64926 0.5820 +5922 144568 0.6220 +5922 153090 0.5800 +5922 161742 0.6960 +5922 200734 0.5280 +5922 253461 0.5690 +5922 399473 0.5140 +5923 5924 0.9390 +5923 6237 0.9380 +5923 6638 0.6120 +5923 6714 0.4860 +5923 7157 0.4020 +5923 7529 0.4240 +5923 8788 0.6030 +5923 8831 0.4660 +5923 8911 0.6660 +5923 8912 0.6620 +5923 8913 0.6660 +5923 9254 0.6710 +5923 10221 0.4700 +5923 10368 0.6870 +5923 10369 0.7130 +5923 10681 0.6650 +5923 22800 0.9310 +5923 22808 0.9290 +5923 22836 0.4550 +5923 23089 0.5420 +5923 23619 0.4100 +5923 26499 0.5100 +5923 27091 0.6750 +5923 27092 0.6630 +5923 29947 0.4620 +5923 51764 0.6740 +5923 51806 0.9560 +5923 54331 0.6660 +5923 55799 0.6810 +5923 55970 0.6500 +5923 57369 0.5260 +5923 57554 0.4570 +5923 57683 0.5710 +5923 57713 0.4100 +5923 59283 0.6810 +5923 59284 0.7100 +5923 59285 0.7010 +5923 59345 0.6550 +5923 64170 0.5910 +5923 84867 0.4100 +5923 91833 0.4150 +5923 91860 0.9550 +5923 93589 0.6710 +5923 94235 0.6930 +5923 163688 0.9550 +5923 266812 0.4820 +5923 346171 0.5420 +5923 388015 0.4150 +5923 390616 0.5980 +5923 646960 0.4690 +5924 6237 0.9320 +5924 6464 0.5220 +5924 6654 0.5320 +5924 8911 0.6660 +5924 8912 0.6500 +5924 8913 0.6520 +5924 8997 0.4030 +5924 9138 0.5050 +5924 9254 0.6720 +5924 9274 0.4050 +5924 9693 0.5100 +5924 9765 0.4220 +5924 9826 0.4280 +5924 10125 0.5260 +5924 10368 0.6640 +5924 10369 0.6640 +5924 10672 0.4500 +5924 10681 0.6560 +5924 22800 0.9290 +5924 22808 0.9250 +5924 23635 0.4050 +5924 23671 0.4280 +5924 26499 0.5080 +5924 27091 0.6680 +5924 27092 0.6730 +5924 51764 0.6500 +5924 51806 0.9250 +5924 53346 0.5740 +5924 54331 0.6670 +5924 55799 0.6980 +5924 55970 0.6500 +5924 57554 0.4490 +5924 59283 0.6590 +5924 59284 0.6810 +5924 59285 0.6510 +5924 59345 0.6770 +5924 91860 0.9250 +5924 93589 0.6710 +5924 94235 0.6810 +5924 115727 0.5080 +5924 128272 0.4480 +5924 153478 0.4040 +5924 163688 0.9250 +5924 221002 0.4760 +5924 100271715 0.4210 +5925 5926 0.9840 +5925 5927 0.9470 +5925 5928 0.9470 +5925 5929 0.5990 +5925 5931 0.8620 +5925 5932 0.8350 +5925 5933 0.9230 +5925 5934 0.9490 +5925 5977 0.5490 +5925 5987 0.5820 +5925 6233 0.5600 +5925 6277 0.9210 +5925 6464 0.5210 +5925 6502 0.9850 +5925 6595 0.8320 +5925 6597 0.9790 +5925 6598 0.8020 +5925 6599 0.7410 +5925 6601 0.7280 +5925 6602 0.7420 +5925 6603 0.7380 +5925 6604 0.7360 +5925 6605 0.7310 +5925 6667 0.7300 +5925 6714 0.5920 +5925 6760 0.7300 +5925 6774 0.5370 +5925 6839 0.8990 +5925 6872 0.7630 +5925 6886 0.5190 +5925 6908 0.4310 +5925 7015 0.4580 +5925 7027 0.9990 +5925 7029 0.9870 +5925 7153 0.4440 +5925 7157 0.9360 +5925 7158 0.9280 +5925 7161 0.6170 +5925 7290 0.4760 +5925 7298 0.4300 +5925 7311 0.4990 +5925 7314 0.5510 +5925 7316 0.5510 +5925 7321 0.5250 +5925 7324 0.5530 +5925 7341 0.5210 +5925 7343 0.5490 +5925 7375 0.5140 +5925 7465 0.5000 +5925 7486 0.5170 +5925 7528 0.6460 +5925 7799 0.5660 +5925 7837 0.4480 +5925 7874 0.4120 +5925 8027 0.5130 +5925 8091 0.6700 +5925 8208 0.4370 +5925 8266 0.4690 +5925 8289 0.7860 +5925 8290 0.7440 +5925 8331 0.5100 +5925 8334 0.5100 +5925 8337 0.5920 +5925 8338 0.5920 +5925 8340 0.5360 +5925 8341 0.5370 +5925 8342 0.5380 +5925 8345 0.5370 +5925 8347 0.5370 +5925 8348 0.5360 +5925 8349 0.6080 +5925 8356 0.7450 +5925 8361 0.7270 +5925 8424 0.4500 +5925 8467 0.4900 +5925 8507 0.5400 +5925 8535 0.5520 +5925 8621 0.4460 +5925 8697 0.5200 +5925 8726 0.6310 +5925 8841 0.8480 +5925 8850 0.6410 +5925 8881 0.6960 +5925 8900 0.9950 +5925 8970 0.5420 +5925 9134 0.9570 +5925 9156 0.5380 +5925 9212 0.5050 +5925 9274 0.7200 +5925 9275 0.7220 +5925 9437 0.7200 +5925 9700 0.4150 +5925 9739 0.5050 +5925 9821 0.4930 +5925 9823 0.5530 +5925 9858 0.5650 +5925 10051 0.6130 +5925 10161 0.5660 +5925 10189 0.4150 +5925 10254 0.4970 +5925 10393 0.5460 +5925 10413 0.6200 +5925 10524 0.4340 +5925 10535 0.5000 +5925 10592 0.6440 +5925 10620 0.4770 +5925 10739 0.4360 +5925 10741 0.5180 +5925 10765 0.6980 +5925 10933 0.8070 +5925 10951 0.4080 +5925 11065 0.5610 +5925 11176 0.5520 +5925 11200 0.6310 +5925 11335 0.6630 +5925 22893 0.5400 +5925 22933 0.5890 +5925 23028 0.4440 +5925 23067 0.4400 +5925 23133 0.5180 +5925 23310 0.6820 +5925 23352 0.4090 +5925 23378 0.5400 +5925 23411 0.8210 +5925 23468 0.6100 +5925 23476 0.6140 +5925 23506 0.7200 +5925 23512 0.7440 +5925 23649 0.5330 +5925 23741 0.8920 +5925 25842 0.4830 +5925 25906 0.4990 +5925 25925 0.5190 +5925 25937 0.5600 +5925 25942 0.4800 +5925 25988 0.4910 +5925 26013 0.7110 +5925 26574 0.5190 +5925 26959 0.5410 +5925 27043 0.6120 +5925 27161 0.6480 +5925 27338 0.5680 +5925 28227 0.4650 +5925 28973 0.5210 +5925 28989 0.4360 +5925 29128 0.4340 +5925 29781 0.5520 +5925 29855 0.4610 +5925 29882 0.7580 +5925 29945 0.5280 +5925 29998 0.7200 +5925 51081 0.4390 +5925 51270 0.7390 +5925 51309 0.5540 +5925 51341 0.5390 +5925 51343 0.8900 +5925 51412 0.7470 +5925 51433 0.5000 +5925 51434 0.5030 +5925 51529 0.5050 +5925 51566 0.5570 +5925 51742 0.8310 +5925 53335 0.7360 +5925 54145 0.5360 +5925 54801 0.4360 +5925 54892 0.6090 +5925 55193 0.7850 +5925 55274 0.5510 +5925 55766 0.5100 +5925 56950 0.4210 +5925 57492 0.7330 +5925 57786 0.7600 +5925 60312 0.5490 +5925 64682 0.5400 +5925 64919 0.7690 +5925 65980 0.7340 +5925 79621 0.5000 +5925 79733 0.5260 +5925 79892 0.4040 +5925 80854 0.4980 +5925 81620 0.5750 +5925 81669 0.8530 +5925 84260 0.6260 +5925 84787 0.6360 +5925 84942 0.4040 +5925 85236 0.5370 +5925 91750 0.7780 +5925 93621 0.5170 +5925 94239 0.5340 +5925 115426 0.8170 +5925 119504 0.4990 +5925 128312 0.5360 +5925 132660 0.5860 +5925 137902 0.4470 +5925 138151 0.4340 +5925 144455 0.5150 +5925 196528 0.7630 +5925 246184 0.4990 +5925 255626 0.5350 +5925 286826 0.9000 +5925 402569 0.4940 +5925 440093 0.5080 +5925 440686 0.5090 +5925 474382 0.5100 +5925 653247 0.6800 +5925 653604 0.7430 +5925 100533952 0.5110 +5926 5927 0.7860 +5926 5928 0.9160 +5926 5929 0.4750 +5926 5930 0.7180 +5926 5931 0.9450 +5926 5933 0.8770 +5926 5934 0.8490 +5926 5961 0.4240 +5926 5978 0.5570 +5926 6598 0.5610 +5926 6599 0.5260 +5926 6601 0.5270 +5926 6602 0.4440 +5926 6603 0.4440 +5926 6604 0.4440 +5926 6638 0.5890 +5926 6651 0.6580 +5926 6944 0.4820 +5926 7247 0.4040 +5926 7750 0.4530 +5926 7994 0.4110 +5926 8089 0.5900 +5926 8290 0.5970 +5926 8295 0.6490 +5926 8329 0.5090 +5926 8331 0.4890 +5926 8334 0.5070 +5926 8337 0.5050 +5926 8338 0.5040 +5926 8340 0.4780 +5926 8341 0.4780 +5926 8342 0.4780 +5926 8345 0.4790 +5926 8347 0.5080 +5926 8348 0.4780 +5926 8349 0.5900 +5926 8350 0.5340 +5926 8351 0.5410 +5926 8352 0.5340 +5926 8353 0.5340 +5926 8354 0.5340 +5926 8355 0.5340 +5926 8356 0.7490 +5926 8357 0.5380 +5926 8358 0.5340 +5926 8361 0.8960 +5926 8369 0.6800 +5926 8473 0.7250 +5926 8819 0.9920 +5926 8841 0.6740 +5926 8968 0.5340 +5926 8970 0.4780 +5926 9070 0.4870 +5926 9112 0.6780 +5926 9202 0.4420 +5926 9205 0.4670 +5926 9219 0.4990 +5926 9611 0.5390 +5926 9682 0.5440 +5926 9734 0.4820 +5926 9739 0.4300 +5926 9759 0.4800 +5926 10013 0.4940 +5926 10014 0.4690 +5926 10210 0.5440 +5926 10284 0.6650 +5926 10362 0.5520 +5926 10467 0.4760 +5926 10524 0.4610 +5926 10765 0.6330 +5926 10865 0.5400 +5926 10933 0.6710 +5926 11083 0.4820 +5926 11091 0.4890 +5926 11104 0.4860 +5926 23028 0.5770 +5926 23067 0.4200 +5926 23186 0.6120 +5926 23309 0.9900 +5926 23469 0.4100 +5926 23522 0.4470 +5926 25836 0.5860 +5926 25855 0.9990 +5926 25942 0.9950 +5926 26122 0.5630 +5926 27332 0.4920 +5926 29072 0.5440 +5926 30827 0.6860 +5926 51244 0.4550 +5926 51317 0.6160 +5926 51412 0.8910 +5926 51564 0.4770 +5926 51742 0.9250 +5926 51773 0.4560 +5926 53615 0.5180 +5926 54454 0.4300 +5926 54556 0.6680 +5926 54790 0.5050 +5926 54815 0.5300 +5926 55193 0.7070 +5926 55257 0.6370 +5926 55689 0.5590 +5926 55860 0.4780 +5926 55869 0.7000 +5926 55904 0.4720 +5926 55929 0.5590 +5926 57459 0.5710 +5926 57504 0.5200 +5926 57649 0.9690 +5926 58516 0.9440 +5926 60436 0.6790 +5926 64426 0.9870 +5926 64769 0.4890 +5926 79595 0.8510 +5926 79685 0.9090 +5926 79885 0.4870 +5926 80312 0.8230 +5926 80314 0.5860 +5926 80319 0.4310 +5926 80335 0.5340 +5926 83933 0.4690 +5926 84148 0.4240 +5926 84312 0.9970 +5926 84942 0.4610 +5926 85235 0.4890 +5926 85236 0.4780 +5926 90316 0.6610 +5926 92815 0.4890 +5926 94239 0.5350 +5926 114803 0.5880 +5926 116496 0.4550 +5926 126961 0.6560 +5926 128312 0.4780 +5926 153241 0.4340 +5926 169044 0.5450 +5926 200424 0.4610 +5926 221120 0.5340 +5926 221613 0.4890 +5926 221937 0.6500 +5926 255626 0.4780 +5926 257236 0.4690 +5926 317772 0.4890 +5926 333932 0.5340 +5926 340096 0.5340 +5926 391769 0.5340 +5926 440093 0.5990 +5926 440686 0.5990 +5926 440689 0.4780 +5926 619279 0.6970 +5926 653604 0.7480 +5927 5928 0.7870 +5927 5929 0.4670 +5927 5930 0.6980 +5927 5931 0.8650 +5927 6122 0.4350 +5927 6123 0.4180 +5927 6125 0.5390 +5927 6132 0.4330 +5927 6133 0.4630 +5927 6135 0.6070 +5927 6139 0.4350 +5927 6147 0.4600 +5927 6175 0.4680 +5927 6182 0.4840 +5927 6187 0.4910 +5927 6188 0.6520 +5927 6193 0.4330 +5927 6203 0.4750 +5927 6205 0.5060 +5927 6208 0.4630 +5927 6209 0.5100 +5927 6222 0.6070 +5927 6233 0.4070 +5927 6235 0.4180 +5927 6396 0.4170 +5927 6597 0.4780 +5927 6651 0.6330 +5927 6839 0.5440 +5927 6908 0.4230 +5927 7284 0.6370 +5927 7311 0.4380 +5927 7386 0.5100 +5927 7403 0.7680 +5927 7404 0.4390 +5927 7468 0.4390 +5927 7690 0.5170 +5927 7799 0.4190 +5927 7994 0.5690 +5927 8204 0.5060 +5927 8290 0.7150 +5927 8295 0.4760 +5927 8337 0.4470 +5927 8338 0.4470 +5927 8349 0.4090 +5927 8356 0.8210 +5927 8361 0.5640 +5927 8369 0.4140 +5927 8467 0.4590 +5927 8726 0.5860 +5927 8802 0.4770 +5927 9070 0.7010 +5927 9172 0.4610 +5927 9296 0.4770 +5927 9343 0.4510 +5927 9349 0.4950 +5927 9533 0.4750 +5927 9551 0.4580 +5927 9556 0.5950 +5927 9575 0.9830 +5927 9669 0.4040 +5927 9682 0.4290 +5927 9739 0.6850 +5927 9757 0.5820 +5927 9869 0.5290 +5927 9927 0.4230 +5927 10102 0.4630 +5927 10476 0.7590 +5927 10524 0.4630 +5927 10632 0.5850 +5927 10744 0.4170 +5927 10891 0.5120 +5927 10902 0.4180 +5927 10919 0.7410 +5927 10933 0.9720 +5927 11091 0.4760 +5927 11128 0.5110 +5927 11143 0.4020 +5927 11222 0.4230 +5927 11224 0.4990 +5927 22823 0.4090 +5927 22984 0.4850 +5927 22992 0.7100 +5927 23028 0.8360 +5927 23049 0.5740 +5927 23064 0.4340 +5927 23067 0.6300 +5927 23133 0.6210 +5927 23135 0.6930 +5927 23186 0.4250 +5927 23210 0.4840 +5927 23309 0.9230 +5927 23512 0.8950 +5927 23613 0.6440 +5927 23640 0.4270 +5927 25836 0.4660 +5927 25855 0.4360 +5927 25885 0.4780 +5927 25942 0.4950 +5927 26054 0.5290 +5927 29072 0.7100 +5927 29093 0.4350 +5927 29927 0.4620 +5927 51069 0.4330 +5927 51081 0.4330 +5927 51111 0.4190 +5927 51154 0.4680 +5927 51742 0.8730 +5927 51773 0.4280 +5927 51780 0.5600 +5927 53353 0.4460 +5927 54542 0.4370 +5927 54556 0.4800 +5927 54790 0.4070 +5927 54904 0.4550 +5927 54948 0.4270 +5927 55028 0.4580 +5927 55173 0.4080 +5927 55176 0.4610 +5927 55193 0.5470 +5927 55206 0.4070 +5927 55272 0.4750 +5927 55316 0.4180 +5927 55703 0.4470 +5927 55818 0.6460 +5927 55859 0.4300 +5927 55869 0.4080 +5927 55870 0.5730 +5927 55904 0.5530 +5927 56946 0.9040 +5927 57448 0.4560 +5927 57649 0.9320 +5927 57680 0.4140 +5927 57798 0.9590 +5927 58516 0.4420 +5927 63875 0.4500 +5927 63931 0.4450 +5927 64324 0.7650 +5927 64374 0.4270 +5927 64754 0.4590 +5927 64963 0.4680 +5927 64969 0.4950 +5927 65008 0.4490 +5927 79142 0.8720 +5927 79631 0.4570 +5927 79697 0.4810 +5927 79723 0.4800 +5927 79728 0.4520 +5927 79813 0.4770 +5927 79823 0.4190 +5927 79831 0.5650 +5927 80853 0.6750 +5927 80854 0.5010 +5927 83852 0.4830 +5927 84172 0.4440 +5927 84260 0.4230 +5927 84312 0.4590 +5927 84444 0.5060 +5927 84662 0.4670 +5927 84678 0.7860 +5927 84707 0.4300 +5927 84833 0.6200 +5927 85476 0.4510 +5927 92399 0.4110 +5927 112398 0.5070 +5927 112399 0.4470 +5927 121536 0.4850 +5927 126402 0.4330 +5927 140801 0.4270 +5927 221037 0.4440 +5927 221656 0.6320 +5927 267020 0.5850 +5927 285855 0.4190 +5927 387893 0.4390 +5927 440093 0.7150 +5927 440686 0.7150 +5927 653604 0.8680 +5927 100526842 0.4350 +5928 5929 0.8020 +5928 5930 0.4950 +5928 5931 0.9990 +5928 5933 0.7680 +5928 5934 0.9520 +5928 5978 0.6450 +5928 6015 0.9560 +5928 6045 0.9550 +5928 6217 0.4190 +5928 6233 0.5260 +5928 6241 0.5370 +5928 6256 0.5160 +5928 6299 0.4640 +5928 6418 0.4410 +5928 6421 0.7090 +5928 6426 0.5180 +5928 6431 0.4510 +5928 6591 0.5400 +5928 6594 0.9970 +5928 6595 0.7480 +5928 6597 0.7550 +5928 6598 0.6720 +5928 6599 0.6670 +5928 6601 0.5240 +5928 6605 0.6690 +5928 6613 0.7170 +5928 6615 0.5850 +5928 6657 0.6470 +5928 6667 0.4510 +5928 6732 0.4190 +5928 6749 0.5740 +5928 6774 0.4350 +5928 6839 0.6380 +5928 6907 0.5040 +5928 6908 0.5080 +5928 6942 0.5080 +5928 7027 0.7300 +5928 7029 0.7000 +5928 7101 0.5040 +5928 7132 0.4120 +5928 7153 0.6840 +5928 7157 0.7130 +5928 7182 0.5420 +5928 7227 0.5040 +5928 7270 0.5170 +5928 7290 0.6370 +5928 7306 0.4640 +5928 7311 0.5140 +5928 7316 0.4840 +5928 7324 0.4300 +5928 7341 0.4430 +5928 7343 0.5130 +5928 7391 0.5610 +5928 7403 0.7610 +5928 7468 0.4210 +5928 7520 0.5200 +5928 7528 0.8130 +5928 7532 0.4840 +5928 7703 0.9370 +5928 7756 0.4210 +5928 7846 0.4810 +5928 7862 0.4560 +5928 7884 0.7940 +5928 7919 0.4440 +5928 7994 0.5590 +5928 8085 0.5790 +5928 8099 0.9540 +5928 8202 0.5330 +5928 8208 0.9990 +5928 8290 0.9360 +5928 8294 0.5060 +5928 8314 0.9300 +5928 8329 0.6420 +5928 8331 0.6210 +5928 8334 0.6240 +5928 8337 0.8930 +5928 8338 0.9010 +5928 8340 0.6370 +5928 8341 0.6370 +5928 8342 0.6460 +5928 8345 0.6400 +5928 8347 0.6430 +5928 8348 0.6460 +5928 8349 0.8480 +5928 8350 0.8910 +5928 8352 0.7120 +5928 8353 0.7130 +5928 8356 0.9950 +5928 8357 0.4710 +5928 8358 0.5770 +5928 8359 0.4330 +5928 8360 0.4390 +5928 8361 0.9990 +5928 8362 0.5170 +5928 8363 0.4330 +5928 8364 0.6160 +5928 8366 0.5450 +5928 8367 0.4330 +5928 8368 0.5460 +5928 8369 0.9900 +5928 8370 0.5810 +5928 8450 0.4930 +5928 8451 0.4810 +5928 8467 0.9970 +5928 8473 0.6950 +5928 8520 0.9820 +5928 8535 0.9340 +5928 8607 0.9170 +5928 8726 0.9990 +5928 8815 0.6960 +5928 8819 0.9990 +5928 8820 0.4320 +5928 8841 0.9820 +5928 8900 0.6000 +5928 8932 0.9930 +5928 8968 0.4580 +5928 8969 0.5550 +5928 8970 0.6670 +5928 9014 0.4010 +5928 9015 0.4590 +5928 9031 0.7990 +5928 9070 0.6580 +5928 9112 0.9990 +5928 9133 0.6380 +5928 9134 0.5600 +5928 9184 0.5790 +5928 9203 0.4730 +5928 9219 0.9990 +5928 9425 0.5620 +5928 9440 0.4800 +5928 9557 0.4330 +5928 9584 0.4980 +5928 9611 0.9220 +5928 9612 0.5390 +5928 9633 0.5810 +5928 9658 0.4030 +5928 9734 0.5130 +5928 9739 0.5240 +5928 9759 0.8200 +5928 9839 0.6510 +5928 9869 0.4890 +5928 9898 0.9180 +5928 9935 0.5070 +5928 10013 0.7570 +5928 10014 0.8520 +5928 10036 0.9990 +5928 10042 0.9560 +5928 10112 0.4220 +5928 10138 0.4840 +5928 10146 0.4250 +5928 10155 0.8270 +5928 10284 0.9990 +5928 10320 0.6330 +5928 10336 0.9280 +5928 10362 0.6080 +5928 10389 0.9170 +5928 10430 0.6030 +5928 10607 0.4540 +5928 10664 0.6580 +5928 10714 0.4100 +5928 10743 0.4250 +5928 10765 0.5560 +5928 10856 0.4410 +5928 10919 0.7520 +5928 10921 0.4590 +5928 10933 0.9780 +5928 10943 0.4580 +5928 10951 0.8300 +5928 11052 0.4480 +5928 11091 0.7460 +5928 11177 0.9430 +5928 11198 0.5880 +5928 11329 0.4130 +5928 11335 0.8190 +5928 11339 0.5880 +5928 22823 0.9710 +5928 22826 0.4270 +5928 22955 0.6890 +5928 22976 0.5890 +5928 23028 0.9880 +5928 23054 0.5470 +5928 23112 0.5690 +5928 23135 0.7600 +5928 23186 0.8950 +5928 23244 0.5080 +5928 23309 0.9970 +5928 23367 0.5120 +5928 23411 0.6220 +5928 23414 0.4390 +5928 23421 0.5280 +5928 23429 0.7020 +5928 23466 0.9260 +5928 23468 0.9310 +5928 23476 0.7180 +5928 23492 0.9340 +5928 23512 0.9990 +5928 23595 0.5300 +5928 23774 0.4390 +5928 25842 0.9290 +5928 25855 0.9200 +5928 25925 0.4480 +5928 25942 0.9990 +5928 26038 0.9190 +5928 26060 0.5560 +5928 26122 0.4670 +5928 26135 0.5090 +5928 26147 0.9910 +5928 26523 0.5550 +5928 27068 0.4930 +5928 27154 0.4140 +5928 27316 0.6560 +5928 27327 0.5000 +5928 27443 0.9140 +5928 29072 0.4580 +5928 29117 0.6450 +5928 29945 0.4410 +5928 29947 0.4820 +5928 50484 0.4970 +5928 51222 0.7770 +5928 51230 0.4440 +5928 51317 0.6560 +5928 51412 0.4100 +5928 51564 0.7280 +5928 51742 0.9870 +5928 51773 0.7590 +5928 53335 0.9910 +5928 53615 0.9920 +5928 54069 0.8360 +5928 54107 0.6220 +5928 54108 0.6080 +5928 54145 0.6670 +5928 54556 0.5990 +5928 54799 0.4910 +5928 54815 0.9990 +5928 54828 0.4350 +5928 55166 0.5140 +5928 55252 0.6140 +5928 55320 0.8240 +5928 55355 0.9750 +5928 55723 0.8430 +5928 55766 0.6210 +5928 55839 0.5680 +5928 55869 0.9560 +5928 55870 0.4810 +5928 55904 0.5370 +5928 55957 0.9990 +5928 56848 0.4400 +5928 57082 0.6300 +5928 57167 0.9720 +5928 57332 0.9530 +5928 57459 0.9990 +5928 57473 0.7290 +5928 57504 0.9980 +5928 57597 0.4120 +5928 57621 0.4470 +5928 57649 0.9440 +5928 57798 0.6110 +5928 58508 0.6130 +5928 58516 0.9350 +5928 63976 0.5610 +5928 64105 0.5500 +5928 64324 0.4240 +5928 64426 0.9990 +5928 64769 0.4980 +5928 64919 0.7170 +5928 64946 0.6040 +5928 79019 0.5360 +5928 79084 0.4250 +5928 79101 0.4010 +5928 79172 0.5660 +5928 79447 0.5400 +5928 79595 0.7040 +5928 79682 0.5390 +5928 79685 0.8780 +5928 79718 0.5640 +5928 79885 0.7820 +5928 80012 0.9120 +5928 80152 0.6440 +5928 80312 0.6600 +5928 80314 0.4990 +5928 80816 0.5740 +5928 80854 0.5930 +5928 83746 0.4090 +5928 83933 0.4830 +5928 84071 0.4740 +5928 84108 0.9370 +5928 84232 0.4990 +5928 84260 0.4920 +5928 84289 0.5450 +5928 84295 0.9860 +5928 84312 0.9570 +5928 84333 0.9250 +5928 84458 0.7140 +5928 84661 0.5680 +5928 84678 0.4670 +5928 84733 0.9440 +5928 84759 0.9410 +5928 84962 0.4990 +5928 85235 0.6420 +5928 85236 0.6680 +5928 85509 0.8810 +5928 91687 0.5240 +5928 91750 0.9990 +5928 92815 0.6210 +5928 94239 0.7400 +5928 114825 0.7920 +5928 121504 0.4460 +5928 121536 0.9990 +5928 124944 0.9640 +5928 125997 0.6200 +5928 126961 0.6550 +5928 128312 0.6370 +5928 132625 0.6230 +5928 132660 0.9990 +5928 140767 0.4260 +5928 152485 0.9800 +5928 161882 0.9840 +5928 162979 0.4600 +5928 170394 0.6700 +5928 171023 0.9730 +5928 192669 0.5500 +5928 192670 0.5530 +5928 201254 0.5360 +5928 221481 0.8430 +5928 221613 0.6210 +5928 255626 0.6380 +5928 257218 0.6270 +5928 286826 0.9990 +5928 317772 0.6340 +5928 340096 0.4130 +5928 378708 0.5810 +5928 387103 0.6190 +5928 387893 0.5830 +5928 391769 0.4110 +5928 401541 0.5260 +5928 404281 0.6020 +5928 440093 0.9140 +5928 440686 0.9150 +5928 440689 0.6490 +5928 442319 0.4410 +5928 474382 0.6300 +5928 554313 0.4330 +5928 653604 0.9560 +5928 100170841 0.8470 +5928 100316904 0.4910 +5928 100529209 0.5400 +5928 100532731 0.6440 +5929 5931 0.8060 +5929 6045 0.9450 +5929 6168 0.4930 +5929 6233 0.9910 +5929 6256 0.5410 +5929 6382 0.9890 +5929 6419 0.4610 +5929 6597 0.4220 +5929 6599 0.6010 +5929 6602 0.6850 +5929 6603 0.6000 +5929 6605 0.5300 +5929 6657 0.4950 +5929 6839 0.5890 +5929 6872 0.9280 +5929 6874 0.9070 +5929 6878 0.9200 +5929 6879 0.9150 +5929 6880 0.9180 +5929 6908 0.4680 +5929 6932 0.4990 +5929 6934 0.5160 +5929 6942 0.4060 +5929 6944 0.4170 +5929 7057 0.4020 +5929 7088 0.5110 +5929 7089 0.4990 +5929 7090 0.5240 +5929 7091 0.5270 +5929 7157 0.7480 +5929 7311 0.9880 +5929 7314 0.9800 +5929 7316 0.9810 +5929 7391 0.6380 +5929 7403 0.9990 +5929 7404 0.8340 +5929 7468 0.5240 +5929 7528 0.5860 +5929 7703 0.5910 +5929 8028 0.4070 +5929 8085 0.9970 +5929 8202 0.5410 +5929 8266 0.4170 +5929 8290 0.9490 +5929 8294 0.9400 +5929 8329 0.8530 +5929 8330 0.8530 +5929 8331 0.6340 +5929 8332 0.8530 +5929 8334 0.9250 +5929 8335 0.8530 +5929 8336 0.8540 +5929 8337 0.7440 +5929 8338 0.7430 +5929 8340 0.5770 +5929 8341 0.5760 +5929 8342 0.5770 +5929 8345 0.5770 +5929 8347 0.5770 +5929 8348 0.5830 +5929 8349 0.8270 +5929 8350 0.5040 +5929 8352 0.6150 +5929 8353 0.6150 +5929 8356 0.9590 +5929 8359 0.9400 +5929 8360 0.9420 +5929 8361 0.9880 +5929 8362 0.9400 +5929 8363 0.9400 +5929 8364 0.9400 +5929 8366 0.9400 +5929 8367 0.9400 +5929 8368 0.9400 +5929 8369 0.5780 +5929 8370 0.9400 +5929 8450 0.6520 +5929 8451 0.6420 +5929 8467 0.4350 +5929 8473 0.6910 +5929 8533 0.4100 +5929 8607 0.9040 +5929 8638 0.4030 +5929 8726 0.6780 +5929 8816 0.5040 +5929 8841 0.5910 +5929 8850 0.6610 +5929 8883 0.5130 +5929 8945 0.5160 +5929 8969 0.8540 +5929 8970 0.9550 +5929 9039 0.5320 +5929 9040 0.5080 +5929 9070 0.9990 +5929 9318 0.4130 +5929 9611 0.5980 +5929 9636 0.4070 +5929 9739 0.9990 +5929 9757 0.9780 +5929 9782 0.6410 +5929 9869 0.5990 +5929 9935 0.6630 +5929 9968 0.4080 +5929 9978 0.5490 +5929 10238 0.5210 +5929 10270 0.4520 +5929 10445 0.9400 +5929 10467 0.4130 +5929 10537 0.4030 +5929 10664 0.7610 +5929 10765 0.7540 +5929 10785 0.4840 +5929 10847 0.4240 +5929 10856 0.9090 +5929 10919 0.6000 +5929 10920 0.4250 +5929 10980 0.4250 +5929 10987 0.4130 +5929 11004 0.4520 +5929 11083 0.8860 +5929 11091 0.9990 +5929 11168 0.8910 +5929 22976 0.9990 +5929 22992 0.5550 +5929 23028 0.4800 +5929 23030 0.4260 +5929 23038 0.4990 +5929 23054 0.9980 +5929 23067 0.9990 +5929 23112 0.4110 +5929 23133 0.4410 +5929 23135 0.9610 +5929 23142 0.5130 +5929 23269 0.9050 +5929 23309 0.6330 +5929 23412 0.5220 +5929 23476 0.4810 +5929 23512 0.7410 +5929 25778 0.6360 +5929 25879 0.5180 +5929 25886 0.5960 +5929 25942 0.7180 +5929 26094 0.5480 +5929 26108 0.6580 +5929 26118 0.5970 +5929 26121 0.9000 +5929 26147 0.5120 +5929 26168 0.9540 +5929 26523 0.4290 +5929 27043 0.9070 +5929 27125 0.4440 +5929 27327 0.5670 +5929 28952 0.5100 +5929 28991 0.5080 +5929 29072 0.8300 +5929 29099 0.5180 +5929 29915 0.9550 +5929 30009 0.4750 +5929 30827 0.9990 +5929 50717 0.5070 +5929 50813 0.4080 +5929 51122 0.5170 +5929 51138 0.4160 +5929 51176 0.4990 +5929 51230 0.9400 +5929 51397 0.5210 +5929 51514 0.5550 +5929 51585 0.4090 +5929 54145 0.5770 +5929 54165 0.5510 +5929 54554 0.9770 +5929 54876 0.5520 +5929 54881 0.9160 +5929 54904 0.6550 +5929 54934 0.5660 +5929 54939 0.5130 +5929 54951 0.5490 +5929 55170 0.5680 +5929 55208 0.5040 +5929 55226 0.5390 +5929 55339 0.9650 +5929 55617 0.6160 +5929 55636 0.7030 +5929 55766 0.6340 +5929 55827 0.5010 +5929 55832 0.5110 +5929 55870 0.7360 +5929 55884 0.6000 +5929 55904 0.7210 +5929 56254 0.7650 +5929 56950 0.5430 +5929 56979 0.5130 +5929 57634 0.4340 +5929 57680 0.9810 +5929 57710 0.7880 +5929 58493 0.7810 +5929 58508 0.9990 +5929 63925 0.4210 +5929 64324 0.5210 +5929 64326 0.5120 +5929 64708 0.4130 +5929 64754 0.6950 +5929 79016 0.5130 +5929 79084 0.8360 +5929 79142 0.4100 +5929 79269 0.5920 +5929 79447 0.9940 +5929 79577 0.6890 +5929 79723 0.5480 +5929 79813 0.5280 +5929 79923 0.4850 +5929 80067 0.5090 +5929 80335 0.9990 +5929 80344 0.6320 +5929 80854 0.7960 +5929 81887 0.9100 +5929 83439 0.4990 +5929 83852 0.4410 +5929 83860 0.4080 +5929 84148 0.9610 +5929 84193 0.5080 +5929 84259 0.5130 +5929 84292 0.4900 +5929 84295 0.4180 +5929 84332 0.5470 +5929 84444 0.5360 +5929 84643 0.4640 +5929 84661 0.9990 +5929 84962 0.4990 +5929 85236 0.9560 +5929 90780 0.7940 +5929 91272 0.8750 +5929 93550 0.5620 +5929 94239 0.7080 +5929 114826 0.4010 +5929 121504 0.9400 +5929 124944 0.9200 +5929 125476 0.9000 +5929 126961 0.9520 +5929 128312 0.5770 +5929 143241 0.5420 +5929 146845 0.5960 +5929 149951 0.5130 +5929 150572 0.4630 +5929 150684 0.5130 +5929 152559 0.4850 +5929 161882 0.5080 +5929 164153 0.4030 +5929 170622 0.5170 +5929 192669 0.4620 +5929 192670 0.4030 +5929 197257 0.4960 +5929 255626 0.5750 +5929 259282 0.9150 +5929 282809 0.6100 +5929 283149 0.5020 +5929 284058 0.9590 +5929 333932 0.9350 +5929 387893 0.6650 +5929 388730 0.6510 +5929 401551 0.5960 +5929 440093 0.8690 +5929 440686 0.8690 +5929 474382 0.6340 +5929 554313 0.9400 +5929 653604 0.9930 +5929 100529209 0.5400 +5930 6045 0.4360 +5930 6429 0.4780 +5930 6431 0.4210 +5930 6432 0.4150 +5930 6625 0.4930 +5930 6651 0.8720 +5930 6733 0.4740 +5930 6895 0.5100 +5930 7072 0.4110 +5930 7073 0.4620 +5930 7150 0.4530 +5930 7157 0.9820 +5930 8106 0.4600 +5930 8189 0.9890 +5930 8672 0.4300 +5930 8726 0.4820 +5930 9025 0.4250 +5930 9830 0.4120 +5930 9867 0.4350 +5930 9886 0.5640 +5930 9937 0.5120 +5930 10299 0.4260 +5930 10666 0.4100 +5930 10898 0.9560 +5930 10914 0.9270 +5930 11051 0.5120 +5930 11052 0.6310 +5930 11059 0.5160 +5930 11236 0.4640 +5930 23029 0.4890 +5930 23077 0.4240 +5930 23144 0.6710 +5930 23211 0.6770 +5930 23283 0.8570 +5930 23469 0.5090 +5930 23476 0.4580 +5930 23512 0.5120 +5930 26054 0.6650 +5930 26986 0.5440 +5930 27161 0.4840 +5930 29101 0.7000 +5930 29123 0.4790 +5930 29894 0.9930 +5930 29896 0.6570 +5930 51191 0.4090 +5930 51322 0.4760 +5930 51585 0.9170 +5930 51659 0.4260 +5930 51692 0.9940 +5930 53981 0.9900 +5930 54973 0.5700 +5930 55339 0.9910 +5930 55671 0.5180 +5930 55756 0.5550 +5930 56261 0.4120 +5930 56903 0.9230 +5930 57478 0.4770 +5930 57710 0.8490 +5930 58517 0.4470 +5930 64421 0.5350 +5930 64858 0.5120 +5930 64895 0.9380 +5930 79084 0.8590 +5930 80335 0.9810 +5930 80829 0.4020 +5930 81608 0.9780 +5930 84524 0.6730 +5930 90025 0.9690 +5930 90850 0.4300 +5930 91746 0.4200 +5930 124245 0.6100 +5930 136157 0.5770 +5930 143506 0.5770 +5930 152006 0.4290 +5930 196120 0.5770 +5930 200424 0.4520 +5930 253461 0.8900 +5930 374462 0.4400 +5930 376940 0.6760 +5930 390031 0.5770 +5930 390033 0.5770 +5930 441584 0.5770 +5930 642843 0.8930 +5930 643988 0.5770 +5931 5933 0.4770 +5931 5934 0.5480 +5931 5978 0.7330 +5931 5984 0.4180 +5931 6015 0.9590 +5931 6045 0.9540 +5931 6059 0.4530 +5931 6233 0.4560 +5931 6240 0.4470 +5931 6241 0.5190 +5931 6256 0.5220 +5931 6299 0.6140 +5931 6418 0.4870 +5931 6421 0.6820 +5931 6426 0.5610 +5931 6431 0.4820 +5931 6591 0.5490 +5931 6594 0.9730 +5931 6595 0.4670 +5931 6597 0.6880 +5931 6598 0.5450 +5931 6599 0.5770 +5931 6605 0.4910 +5931 6613 0.6400 +5931 6615 0.5940 +5931 6657 0.6510 +5931 6667 0.4390 +5931 6741 0.4020 +5931 6749 0.5470 +5931 6839 0.6700 +5931 6907 0.5240 +5931 6908 0.5000 +5931 6942 0.4920 +5931 7027 0.6550 +5931 7029 0.6240 +5931 7101 0.5040 +5931 7157 0.6820 +5931 7270 0.5200 +5931 7290 0.6650 +5931 7307 0.4220 +5931 7311 0.5040 +5931 7316 0.4530 +5931 7341 0.4270 +5931 7343 0.5350 +5931 7385 0.4310 +5931 7403 0.7380 +5931 7528 0.7430 +5931 7534 0.4080 +5931 7536 0.4120 +5931 7703 0.9400 +5931 7756 0.4180 +5931 7862 0.4740 +5931 7884 0.7590 +5931 7919 0.4380 +5931 7994 0.5640 +5931 8085 0.5760 +5931 8099 0.9480 +5931 8202 0.5580 +5931 8208 0.9030 +5931 8289 0.4380 +5931 8290 0.9460 +5931 8294 0.4940 +5931 8314 0.9690 +5931 8329 0.6220 +5931 8331 0.6210 +5931 8334 0.6240 +5931 8337 0.7970 +5931 8338 0.8480 +5931 8340 0.6260 +5931 8341 0.6330 +5931 8342 0.6280 +5931 8345 0.6260 +5931 8347 0.6340 +5931 8348 0.6410 +5931 8349 0.8610 +5931 8350 0.8320 +5931 8352 0.7080 +5931 8353 0.7120 +5931 8354 0.4320 +5931 8355 0.4390 +5931 8356 0.9890 +5931 8357 0.4690 +5931 8358 0.5390 +5931 8359 0.4330 +5931 8360 0.4420 +5931 8361 0.9960 +5931 8362 0.4330 +5931 8363 0.4330 +5931 8364 0.5540 +5931 8366 0.5070 +5931 8367 0.4330 +5931 8368 0.5260 +5931 8369 0.9400 +5931 8370 0.5810 +5931 8450 0.8260 +5931 8451 0.8610 +5931 8467 0.9540 +5931 8473 0.6990 +5931 8520 0.9990 +5931 8533 0.5210 +5931 8535 0.9310 +5931 8607 0.8880 +5931 8726 0.9990 +5931 8815 0.4920 +5931 8816 0.4990 +5931 8819 0.9990 +5931 8820 0.4330 +5931 8841 0.9180 +5931 8883 0.6760 +5931 8932 0.9720 +5931 8968 0.4540 +5931 8969 0.5390 +5931 8970 0.6440 +5931 9014 0.4070 +5931 9015 0.4590 +5931 9031 0.6690 +5931 9039 0.5770 +5931 9040 0.6330 +5931 9070 0.6490 +5931 9112 0.9990 +5931 9184 0.7280 +5931 9203 0.5090 +5931 9219 0.9990 +5931 9318 0.5010 +5931 9557 0.4350 +5931 9584 0.6250 +5931 9611 0.9210 +5931 9612 0.5590 +5931 9633 0.4930 +5931 9734 0.5030 +5931 9739 0.5070 +5931 9759 0.4910 +5931 9869 0.4860 +5931 9898 0.9290 +5931 9935 0.4990 +5931 9978 0.5380 +5931 10013 0.4970 +5931 10014 0.7890 +5931 10036 0.5940 +5931 10042 0.5820 +5931 10075 0.5960 +5931 10155 0.8400 +5931 10197 0.4530 +5931 10238 0.6140 +5931 10284 0.9990 +5931 10320 0.4640 +5931 10336 0.9260 +5931 10362 0.6100 +5931 10363 0.4540 +5931 10389 0.9240 +5931 10430 0.6110 +5931 10432 0.4130 +5931 10664 0.6470 +5931 10728 0.4420 +5931 10765 0.5370 +5931 10856 0.4990 +5931 10919 0.7380 +5931 10920 0.4550 +5931 10921 0.4250 +5931 10933 0.9700 +5931 10943 0.4940 +5931 10951 0.7180 +5931 10980 0.4670 +5931 10987 0.4600 +5931 11051 0.4390 +5931 11052 0.4640 +5931 11091 0.6150 +5931 11177 0.6860 +5931 11198 0.5960 +5931 11335 0.7640 +5931 11339 0.6630 +5931 22823 0.9780 +5931 22955 0.6380 +5931 22976 0.5970 +5931 23028 0.9790 +5931 23038 0.5380 +5931 23054 0.5360 +5931 23067 0.4560 +5931 23090 0.7330 +5931 23112 0.5390 +5931 23135 0.7230 +5931 23142 0.5090 +5931 23186 0.8180 +5931 23309 0.9980 +5931 23367 0.5040 +5931 23411 0.6570 +5931 23412 0.5110 +5931 23414 0.4240 +5931 23421 0.5760 +5931 23429 0.4240 +5931 23466 0.9310 +5931 23468 0.7680 +5931 23476 0.5950 +5931 23492 0.9350 +5931 23512 0.9990 +5931 23595 0.5670 +5931 23774 0.4230 +5931 25804 0.4970 +5931 25842 0.9350 +5931 25855 0.9480 +5931 25879 0.5420 +5931 25925 0.8030 +5931 25942 0.9990 +5931 26038 0.9690 +5931 26060 0.5380 +5931 26094 0.5000 +5931 26147 0.9400 +5931 26354 0.5020 +5931 26523 0.5310 +5931 27068 0.5210 +5931 27154 0.4140 +5931 27316 0.4180 +5931 27327 0.5000 +5931 27443 0.6070 +5931 28952 0.5200 +5931 28991 0.5040 +5931 29072 0.4390 +5931 29099 0.5210 +5931 29117 0.5220 +5931 29855 0.4240 +5931 29947 0.4780 +5931 50484 0.4970 +5931 50717 0.5110 +5931 50813 0.4050 +5931 51105 0.6870 +5931 51122 0.5130 +5931 51138 0.5000 +5931 51222 0.7540 +5931 51230 0.4310 +5931 51317 0.6860 +5931 51397 0.5110 +5931 51514 0.6690 +5931 51564 0.7310 +5931 51593 0.4610 +5931 51637 0.4120 +5931 51742 0.9700 +5931 51773 0.6330 +5931 53335 0.9090 +5931 53615 0.9950 +5931 54069 0.8740 +5931 54107 0.6470 +5931 54108 0.7020 +5931 54145 0.6450 +5931 54165 0.5040 +5931 54556 0.5530 +5931 54799 0.4540 +5931 54815 0.9990 +5931 54828 0.4030 +5931 54876 0.5160 +5931 54939 0.5450 +5931 54951 0.5640 +5931 55166 0.5580 +5931 55208 0.4990 +5931 55252 0.6160 +5931 55320 0.8720 +5931 55355 0.9170 +5931 55723 0.8640 +5931 55766 0.6340 +5931 55827 0.5060 +5931 55832 0.6170 +5931 55839 0.5990 +5931 55869 0.8650 +5931 55870 0.4170 +5931 55957 0.5740 +5931 56259 0.4680 +5931 56474 0.4150 +5931 56848 0.4400 +5931 56946 0.6690 +5931 57082 0.6300 +5931 57167 0.6180 +5931 57332 0.9390 +5931 57459 0.9990 +5931 57473 0.7890 +5931 57504 0.9990 +5931 57592 0.5310 +5931 57597 0.6480 +5931 57621 0.6650 +5931 57649 0.9720 +5931 57798 0.8480 +5931 58508 0.6180 +5931 58516 0.9250 +5931 59348 0.4940 +5931 60496 0.6380 +5931 64105 0.5480 +5931 64326 0.5000 +5931 64426 0.9990 +5931 64708 0.4420 +5931 64769 0.4680 +5931 64919 0.7130 +5931 64925 0.5670 +5931 64946 0.6290 +5931 79016 0.5100 +5931 79019 0.5510 +5931 79084 0.4350 +5931 79101 0.4090 +5931 79172 0.5860 +5931 79269 0.5610 +5931 79447 0.5360 +5931 79595 0.8510 +5931 79682 0.5720 +5931 79685 0.9450 +5931 79711 0.5540 +5931 79718 0.5400 +5931 79885 0.4950 +5931 79923 0.5590 +5931 80012 0.9100 +5931 80067 0.5000 +5931 80152 0.6390 +5931 80312 0.6420 +5931 80314 0.5570 +5931 80335 0.4630 +5931 80344 0.5080 +5931 80816 0.5650 +5931 80854 0.5770 +5931 83734 0.4210 +5931 83933 0.4680 +5931 84108 0.9370 +5931 84232 0.5040 +5931 84259 0.5650 +5931 84271 0.5790 +5931 84289 0.5310 +5931 84295 0.6420 +5931 84312 0.9560 +5931 84333 0.9290 +5931 84458 0.5570 +5931 84619 0.5960 +5931 84678 0.4180 +5931 84733 0.9410 +5931 84759 0.9410 +5931 84962 0.5030 +5931 85235 0.6220 +5931 85236 0.6500 +5931 85509 0.8690 +5931 90316 0.4470 +5931 91687 0.5500 +5931 91750 0.6540 +5931 92815 0.6210 +5931 94056 0.4740 +5931 94239 0.7150 +5931 114825 0.5760 +5931 120892 0.5170 +5931 121504 0.4560 +5931 121536 0.9990 +5931 124944 0.8090 +5931 125997 0.6940 +5931 126961 0.4390 +5931 128312 0.6260 +5931 132625 0.6160 +5931 132660 0.7320 +5931 138151 0.4180 +5931 140767 0.4260 +5931 149951 0.5070 +5931 150684 0.5040 +5931 152485 0.4330 +5931 161882 0.6250 +5931 170394 0.4600 +5931 170622 0.5060 +5931 171023 0.9110 +5931 192669 0.5270 +5931 192670 0.5340 +5931 196528 0.4690 +5931 201254 0.5410 +5931 221613 0.6210 +5931 221937 0.4090 +5931 253461 0.4100 +5931 255626 0.6290 +5931 257218 0.6810 +5931 286826 0.9060 +5931 317772 0.6280 +5931 378708 0.6040 +5931 387103 0.6300 +5931 387893 0.4080 +5931 401541 0.5330 +5931 404281 0.6020 +5931 440093 0.8940 +5931 440686 0.8940 +5931 440689 0.6330 +5931 474382 0.6410 +5931 554313 0.4330 +5931 653604 0.9750 +5931 100170841 0.8590 +5931 100316904 0.4910 +5931 100529209 0.5400 +5931 100532731 0.6530 +5932 5933 0.4100 +5932 5934 0.8070 +5932 5965 0.5660 +5932 5970 0.5050 +5932 5980 0.4230 +5932 5981 0.4270 +5932 5982 0.7250 +5932 5983 0.6220 +5932 5984 0.7370 +5932 5985 0.5750 +5932 6047 0.5200 +5932 6117 0.8810 +5932 6118 0.8690 +5932 6119 0.7080 +5932 6168 0.4900 +5932 6233 0.5280 +5932 6477 0.5590 +5932 6491 0.4920 +5932 6742 0.7900 +5932 7013 0.4160 +5932 7027 0.5830 +5932 7029 0.5520 +5932 7150 0.5810 +5932 7153 0.5240 +5932 7156 0.7620 +5932 7157 0.6990 +5932 7158 0.9160 +5932 7276 0.4100 +5932 7311 0.6010 +5932 7314 0.5240 +5932 7316 0.7490 +5932 7329 0.4530 +5932 7334 0.6990 +5932 7336 0.5980 +5932 7375 0.9470 +5932 7398 0.4410 +5932 7465 0.4130 +5932 7468 0.6180 +5932 7486 0.8730 +5932 7507 0.4430 +5932 7515 0.9120 +5932 7516 0.7400 +5932 7517 0.7790 +5932 7518 0.7290 +5932 7520 0.8650 +5932 7846 0.4090 +5932 7979 0.6680 +5932 8290 0.8180 +5932 8315 0.6640 +5932 8318 0.4500 +5932 8337 0.5200 +5932 8338 0.5200 +5932 8340 0.5820 +5932 8341 0.5840 +5932 8342 0.5820 +5932 8345 0.5810 +5932 8347 0.5780 +5932 8348 0.5810 +5932 8349 0.6620 +5932 8356 0.6510 +5932 8361 0.6790 +5932 8452 0.4270 +5932 8467 0.4380 +5932 8543 0.8530 +5932 8861 0.7640 +5932 8900 0.7240 +5932 8924 0.4990 +5932 8970 0.5790 +5932 9025 0.8280 +5932 9079 0.7260 +5932 9156 0.9950 +5932 9400 0.4570 +5932 9401 0.7770 +5932 9541 0.4930 +5932 9577 0.7150 +5932 9611 0.4590 +5932 9612 0.6580 +5932 9656 0.9580 +5932 10038 0.7130 +5932 10055 0.4990 +5932 10111 0.9990 +5932 10320 0.7200 +5932 10459 0.6040 +5932 10522 0.5100 +5932 10524 0.7330 +5932 10567 0.5480 +5932 10635 0.6660 +5932 10664 0.5920 +5932 10714 0.6280 +5932 10721 0.8210 +5932 10916 0.4740 +5932 11065 0.4080 +5932 11073 0.8630 +5932 11168 0.9590 +5932 11169 0.7440 +5932 11200 0.7850 +5932 11284 0.6080 +5932 22976 0.6390 +5932 23013 0.6030 +5932 23172 0.5750 +5932 23514 0.5190 +5932 23626 0.8630 +5932 23635 0.7250 +5932 25788 0.5460 +5932 26574 0.4310 +5932 27343 0.4820 +5932 27434 0.4400 +5932 27445 0.5520 +5932 29086 0.8480 +5932 50485 0.5690 +5932 51343 0.4260 +5932 51426 0.4640 +5932 51444 0.4960 +5932 51548 0.9470 +5932 51567 0.5460 +5932 51588 0.7320 +5932 51720 0.9580 +5932 51750 0.6600 +5932 54107 0.4970 +5932 54145 0.5820 +5932 54465 0.4190 +5932 54537 0.5810 +5932 54805 0.6290 +5932 54840 0.4410 +5932 55120 0.4350 +5932 55215 0.5730 +5932 55218 0.6480 +5932 55775 0.6660 +5932 55835 0.4700 +5932 56655 0.5270 +5932 56852 0.5090 +5932 56916 0.5010 +5932 57697 0.5640 +5932 58493 0.8320 +5932 59348 0.9900 +5932 63967 0.5110 +5932 64858 0.4040 +5932 65123 0.7400 +5932 79184 0.8690 +5932 79648 0.4770 +5932 79728 0.9530 +5932 79840 0.7930 +5932 79991 0.6180 +5932 80010 0.8080 +5932 80119 0.4560 +5932 80198 0.8220 +5932 80311 0.8550 +5932 81620 0.4010 +5932 83695 0.5860 +5932 83932 0.4030 +5932 83990 0.9020 +5932 84083 0.4850 +5932 84126 0.8590 +5932 84142 0.8960 +5932 84146 0.4450 +5932 84464 0.7940 +5932 85236 0.5820 +5932 90627 0.5090 +5932 91442 0.4110 +5932 91603 0.5000 +5932 91768 0.4010 +5932 116028 0.7000 +5932 128312 0.5860 +5932 132949 0.5050 +5932 144715 0.5960 +5932 146956 0.7510 +5932 149840 0.5070 +5932 165918 0.8300 +5932 197342 0.6080 +5932 200558 0.4560 +5932 254225 0.4020 +5932 255626 0.5780 +5932 259266 0.5430 +5932 259282 0.4690 +5932 283677 0.4160 +5932 286257 0.4880 +5932 348654 0.6920 +5932 353497 0.4260 +5932 440093 0.6510 +5932 440686 0.6510 +5932 548593 0.7370 +5932 653604 0.6510 +5933 5934 0.9690 +5933 7027 0.9960 +5933 7029 0.9820 +5933 7157 0.5840 +5933 8804 0.4010 +5933 8900 0.7290 +5933 9134 0.9450 +5933 9735 0.4030 +5933 23310 0.5060 +5933 23741 0.8190 +5933 28227 0.4660 +5933 29028 0.4440 +5933 29115 0.4490 +5933 51061 0.6100 +5933 51270 0.5720 +5933 51742 0.8330 +5933 55536 0.4170 +5933 55957 0.8700 +5933 79733 0.5490 +5933 84787 0.5160 +5933 84942 0.4040 +5933 91750 0.9530 +5933 132660 0.8010 +5933 144455 0.4750 +5933 221937 0.4090 +5933 286826 0.9310 +5934 6005 0.8740 +5934 6006 0.6880 +5934 6007 0.6080 +5934 6233 0.5630 +5934 6500 0.6870 +5934 6502 0.8940 +5934 6597 0.4470 +5934 6839 0.8190 +5934 7027 0.9830 +5934 7029 0.9830 +5934 7083 0.4140 +5934 7090 0.4590 +5934 7153 0.5960 +5934 7157 0.7600 +5934 7158 0.4170 +5934 7311 0.4990 +5934 7314 0.5740 +5934 7316 0.5820 +5934 7465 0.6090 +5934 8242 0.4200 +5934 8454 0.7200 +5934 8900 0.8130 +5934 9134 0.9630 +5934 9149 0.7070 +5934 9493 0.4400 +5934 9858 0.4040 +5934 10620 0.6880 +5934 10741 0.5770 +5934 10865 0.6870 +5934 23352 0.7300 +5934 23405 0.4420 +5934 23741 0.6630 +5934 25988 0.4490 +5934 26524 0.7750 +5934 28227 0.4930 +5934 29072 0.4330 +5934 51061 0.5610 +5934 51270 0.7150 +5934 51742 0.8400 +5934 54205 0.4410 +5934 54487 0.7960 +5934 55957 0.9860 +5934 57332 0.5200 +5934 60561 0.8330 +5934 64400 0.4090 +5934 79068 0.4090 +5934 79733 0.5500 +5934 81620 0.4450 +5934 81669 0.6600 +5934 84159 0.6640 +5934 84942 0.4050 +5934 91750 0.9820 +5934 132660 0.9760 +5934 138151 0.4460 +5934 144455 0.5500 +5934 286826 0.9900 +5935 5936 0.4640 +5935 5940 0.7010 +5935 5976 0.4260 +5935 6117 0.4700 +5935 6124 0.6160 +5935 6170 0.4290 +5935 6182 0.4670 +5935 6191 0.5470 +5935 6193 0.4080 +5935 6205 0.4410 +5935 6222 0.4030 +5935 6224 0.4040 +5935 6421 0.5620 +5935 6426 0.4350 +5935 6428 0.6190 +5935 6431 0.5470 +5935 6626 0.8480 +5935 7030 0.4390 +5935 7329 0.4560 +5935 7431 0.4130 +5935 7812 0.4160 +5935 8106 0.6850 +5935 8175 0.4910 +5935 8241 0.4420 +5935 8638 0.4110 +5935 8667 0.4620 +5935 8683 0.4110 +5935 8761 0.5070 +5935 9343 0.4370 +5935 9939 0.6400 +5935 10121 0.4140 +5935 10181 0.4760 +5935 10236 0.4630 +5935 10313 0.4240 +5935 10419 0.4350 +5935 10492 0.5160 +5935 10594 0.4590 +5935 10643 0.5150 +5935 10644 0.5840 +5935 10656 0.5490 +5935 10657 0.5800 +5935 10658 0.4720 +5935 10659 0.4780 +5935 10772 0.4510 +5935 10797 0.4190 +5935 10949 0.4710 +5935 11189 0.4250 +5935 11338 0.4760 +5935 22916 0.4650 +5935 23020 0.4640 +5935 23390 0.4280 +5935 23405 0.7230 +5935 23498 0.4240 +5935 23543 0.5320 +5935 24140 0.4380 +5935 25766 0.5480 +5935 25804 0.4500 +5935 25962 0.4040 +5935 26097 0.4810 +5935 26135 0.4220 +5935 26276 0.4570 +5935 26986 0.5520 +5935 27316 0.7740 +5935 28964 0.5830 +5935 29072 0.4350 +5935 29763 0.4260 +5935 29993 0.4220 +5935 51386 0.4700 +5935 54663 0.4030 +5935 54715 0.5670 +5935 55110 0.5250 +5935 55660 0.5660 +5935 55696 0.4760 +5935 64965 0.4050 +5935 80331 0.4130 +5935 80742 0.4470 +5935 146713 0.5280 +5935 149041 0.5240 +5935 202559 0.7050 +5935 378951 0.6570 +5935 390748 0.4250 +5935 440829 0.4440 +5935 100529063 0.4300 +5936 6175 0.4070 +5936 6426 0.4370 +5936 6427 0.5160 +5936 6428 0.8130 +5936 6431 0.4630 +5936 6434 0.4960 +5936 6625 0.4590 +5936 6626 0.4100 +5936 6631 0.6070 +5936 6635 0.4230 +5936 6637 0.4130 +5936 6732 0.6890 +5936 6733 0.4710 +5936 7307 0.5010 +5936 7490 0.5130 +5936 7536 0.6740 +5936 7555 0.5700 +5936 8220 0.5430 +5936 8241 0.8300 +5936 8672 0.5210 +5936 8896 0.4940 +5936 9343 0.4940 +5936 9406 0.4010 +5936 9444 0.4410 +5936 9470 0.9950 +5936 9584 0.5970 +5936 9669 0.5400 +5936 9716 0.5530 +5936 9782 0.4910 +5936 9991 0.4340 +5936 10179 0.5390 +5936 10180 0.5390 +5936 10181 0.6220 +5936 10262 0.6090 +5936 10521 0.6280 +5936 10594 0.4200 +5936 10657 0.6330 +5936 10772 0.6760 +5936 10946 0.4110 +5936 11100 0.5190 +5936 11338 0.7780 +5936 22803 0.6010 +5936 22916 0.6910 +5936 22938 0.4270 +5936 22984 0.4840 +5936 23112 0.4160 +5936 23378 0.4340 +5936 23435 0.4110 +5936 26121 0.5750 +5936 26156 0.5100 +5936 26523 0.6540 +5936 26986 0.7220 +5936 27161 0.9780 +5936 27316 0.5450 +5936 27327 0.4190 +5936 51340 0.4060 +5936 51441 0.7670 +5936 51447 0.4760 +5936 54033 0.6230 +5936 54845 0.4300 +5936 55035 0.4330 +5936 55131 0.4200 +5936 55147 0.6300 +5936 55696 0.6780 +5936 58155 0.7140 +5936 58517 0.6690 +5936 63932 0.6280 +5936 64852 0.4830 +5936 79171 0.5730 +5936 80004 0.4090 +5936 83759 0.6490 +5937 5939 0.5560 +5937 5993 0.4990 +5937 6238 0.4980 +5937 8417 0.5470 +5937 8724 0.4750 +5937 9877 0.5070 +5937 9991 0.6610 +5937 10084 0.5110 +5937 10105 0.4830 +5937 10146 0.4760 +5937 10247 0.5290 +5937 10469 0.4350 +5937 10643 0.4630 +5937 23543 0.4060 +5937 26523 0.4500 +5937 54542 0.4370 +5937 57794 0.4750 +5937 64744 0.4290 +5937 79035 0.4280 +5937 92399 0.5910 +5937 116540 0.5560 +5937 149041 0.4250 +5939 7458 0.5980 +5939 8405 0.4340 +5939 9698 0.4160 +5939 10016 0.4360 +5939 10642 0.4100 +5939 10644 0.4370 +5939 10877 0.6220 +5939 10878 0.8080 +5939 51018 0.4460 +5939 54148 0.4830 +5939 54552 0.5410 +5939 57470 0.4060 +5939 64960 0.4580 +5939 79630 0.4130 +5939 81494 0.6460 +5939 342892 0.4010 +5940 6192 0.5380 +5940 6426 0.4990 +5940 6430 0.5720 +5940 6434 0.6380 +5940 6606 0.4980 +5940 6607 0.5360 +5940 6626 0.5710 +5940 6736 0.6180 +5940 7030 0.4280 +5940 7168 0.4630 +5940 7170 0.5480 +5940 7258 0.9070 +5940 7404 0.8040 +5940 7544 0.6420 +5940 8239 0.4870 +5940 8284 0.6410 +5940 8287 0.8840 +5940 8653 0.8440 +5940 8683 0.5420 +5940 9081 0.8430 +5940 9083 0.8580 +5940 9084 0.7260 +5940 9085 0.8590 +5940 9086 0.6240 +5940 9087 0.5770 +5940 9987 0.4180 +5940 10114 0.5840 +5940 10189 0.4200 +5940 10656 0.6590 +5940 10657 0.6510 +5940 10949 0.5060 +5940 23283 0.4960 +5940 27316 0.6540 +5940 27429 0.5490 +5940 51634 0.4890 +5940 56122 0.6200 +5940 57055 0.4140 +5940 57693 0.7140 +5940 64061 0.4790 +5940 64591 0.4460 +5940 80742 0.6560 +5940 83259 0.4560 +5940 86614 0.7700 +5940 90655 0.5030 +5940 90665 0.4810 +5940 140032 0.6480 +5940 144983 0.5080 +5940 159119 0.4350 +5940 253175 0.4530 +5940 353513 0.7000 +5940 378948 0.8020 +5940 378949 0.8010 +5940 378950 0.8010 +5940 378951 0.5980 +5940 390748 0.4030 +5940 442862 0.8260 +5940 442867 0.8530 +5940 442868 0.8530 +5940 642659 0.4670 +5948 5949 0.7240 +5948 5950 0.4580 +5948 6010 0.6330 +5948 6256 0.4130 +5948 7045 0.4220 +5948 8644 0.4130 +5948 8819 0.4410 +5948 9227 0.9120 +5948 9372 0.4910 +5948 51109 0.8220 +5948 53630 0.5210 +5948 56603 0.4160 +5948 57016 0.4480 +5948 57665 0.4110 +5948 60436 0.5840 +5948 60682 0.4480 +5948 64220 0.5870 +5948 91464 0.4370 +5948 157506 0.4270 +5948 340665 0.6390 +5949 5957 0.7660 +5949 5959 0.5690 +5949 5961 0.4550 +5949 5995 0.6430 +5949 6010 0.8940 +5949 6011 0.5320 +5949 6017 0.6980 +5949 6094 0.4590 +5949 6121 0.7050 +5949 6247 0.4690 +5949 6295 0.8050 +5949 7287 0.4620 +5949 7450 0.4230 +5949 7520 0.4100 +5949 8187 0.8840 +5949 9227 0.6090 +5949 10002 0.4150 +5949 10948 0.4850 +5949 26254 0.5710 +5949 27098 0.8990 +5949 50700 0.4870 +5949 50943 0.4510 +5949 121214 0.5090 +5949 130557 0.6890 +5949 131890 0.4570 +5949 145226 0.4280 +5949 338917 0.5460 +5949 387715 0.4090 +5950 6347 0.6280 +5950 6462 0.4040 +5950 6517 0.7390 +5950 6927 0.4790 +5950 6934 0.4320 +5950 7018 0.6250 +5950 7124 0.4330 +5950 7276 0.9990 +5950 7448 0.5060 +5950 8407 0.4500 +5950 8862 0.5060 +5950 9227 0.5760 +5950 9370 0.7990 +5950 10135 0.6950 +5950 26291 0.5070 +5950 50700 0.4100 +5950 53630 0.7500 +5950 53919 0.4750 +5950 55600 0.6640 +5950 55937 0.4820 +5950 56729 0.7630 +5950 64220 0.9980 +5950 84666 0.7280 +5950 116362 0.4270 +5950 145264 0.6950 +5950 253827 0.6140 +5954 6014 0.4680 +5954 6672 0.4240 +5954 7184 0.5130 +5954 7415 0.5000 +5954 7490 0.5540 +5954 9104 0.4150 +5954 9601 0.6050 +5954 10193 0.4220 +5954 10525 0.4460 +5954 10945 0.8480 +5954 10961 0.5140 +5954 11130 0.7840 +5954 11231 0.4940 +5954 23071 0.5090 +5954 23384 0.4280 +5954 23774 0.4210 +5954 26958 0.4990 +5954 27333 0.4680 +5954 51592 0.4300 +5954 54757 0.4090 +5954 55294 0.6640 +5954 56270 0.4250 +5954 56975 0.6310 +5954 64856 0.4240 +5954 79180 0.4270 +5954 84946 0.6180 +5954 92906 0.4240 +5954 138428 0.6020 +5954 342538 0.4570 +5955 6181 0.4150 +5955 6595 0.4290 +5955 6672 0.4250 +5955 6872 0.4200 +5955 7337 0.5320 +5955 7411 0.5010 +5955 7534 0.4760 +5955 8019 0.4290 +5955 8668 0.4750 +5955 9401 0.5130 +5955 9525 0.4540 +5955 10099 0.6010 +5955 10236 0.4030 +5955 10474 0.4490 +5955 10575 0.4110 +5955 10576 0.4390 +5955 10902 0.4250 +5955 10945 0.8220 +5955 11261 0.4530 +5955 11333 0.4240 +5955 11345 0.4200 +5955 23208 0.4430 +5955 23467 0.9280 +5955 23774 0.4280 +5955 25814 0.4610 +5955 26037 0.5920 +5955 27154 0.4200 +5955 49855 0.5390 +5955 51574 0.5350 +5955 51592 0.4300 +5955 51806 0.4550 +5955 54413 0.4310 +5955 65980 0.4200 +5955 79843 0.4150 +5955 81533 0.4270 +5955 83931 0.6090 +5955 83932 0.5170 +5955 91860 0.4550 +5955 94081 0.6180 +5955 160364 0.4250 +5955 163688 0.4550 +5955 259266 0.6740 +5956 5957 0.4610 +5956 5995 0.5990 +5956 6010 0.5750 +5956 6103 0.4720 +5956 6658 0.6240 +5956 6812 0.4890 +5956 8277 0.5600 +5956 9016 0.6680 +5956 9626 0.5570 +5956 10002 0.4160 +5956 10681 0.5650 +5956 10692 0.5420 +5956 23077 0.5850 +5956 23596 0.5820 +5956 51764 0.5520 +5956 54331 0.5440 +5956 54714 0.4080 +5956 55970 0.5520 +5956 59345 0.5730 +5956 60506 0.8040 +5956 90167 0.7670 +5956 94235 0.5410 +5956 221391 0.5700 +5956 346007 0.4050 +5956 653145 0.4800 +5957 5961 0.5830 +5957 5995 0.4150 +5957 6010 0.9890 +5957 6011 0.9990 +5957 6017 0.7010 +5957 6094 0.6110 +5957 6121 0.6460 +5957 6258 0.4290 +5957 6295 0.9230 +5957 6496 0.4970 +5957 6656 0.6860 +5957 6657 0.4100 +5957 6855 0.4570 +5957 7124 0.4510 +5957 7268 0.4220 +5957 7273 0.6230 +5957 7287 0.6600 +5957 7439 0.4400 +5957 8573 0.4430 +5957 8618 0.5420 +5957 8787 0.4390 +5957 9187 0.6350 +5957 9211 0.6230 +5957 9355 0.5040 +5957 9404 0.4090 +5957 9454 0.5180 +5957 9478 0.4490 +5957 10002 0.7430 +5957 10520 0.4090 +5957 10590 0.4730 +5957 10681 0.4490 +5957 10687 0.7420 +5957 10763 0.4410 +5957 11030 0.4120 +5957 11141 0.5350 +5957 22887 0.4060 +5957 22897 0.4220 +5957 23092 0.5950 +5957 23322 0.4460 +5957 23746 0.6350 +5957 25769 0.4770 +5957 26047 0.5920 +5957 26121 0.4180 +5957 30813 0.5150 +5957 30820 0.4180 +5957 50700 0.4890 +5957 51501 0.6100 +5957 51806 0.5210 +5957 54714 0.5960 +5957 55327 0.4350 +5957 55776 0.4380 +5957 56344 0.4340 +5957 56896 0.6300 +5957 57010 0.5330 +5957 57628 0.6670 +5957 58538 0.7480 +5957 60558 0.6260 +5957 80110 0.4490 +5957 84107 0.7760 +5957 91860 0.5210 +5957 92737 0.6650 +5957 94233 0.4330 +5957 120425 0.4220 +5957 124961 0.6820 +5957 131890 0.9950 +5957 157657 0.4210 +5957 163688 0.5240 +5957 164633 0.4970 +5957 169522 0.4710 +5957 197335 0.4320 +5957 200894 0.4200 +5957 201140 0.4540 +5957 220202 0.4940 +5957 338917 0.7820 +5957 343035 0.4380 +5957 348262 0.4120 +5957 388531 0.5070 +5957 402665 0.5810 +5959 5961 0.6690 +5959 5995 0.8740 +5959 6010 0.7660 +5959 6011 0.5030 +5959 6017 0.9910 +5959 6121 0.9840 +5959 6249 0.4100 +5959 6652 0.4800 +5959 7439 0.4950 +5959 8644 0.4240 +5959 8694 0.9210 +5959 8854 0.9440 +5959 9184 0.4240 +5959 9227 0.9750 +5959 10002 0.4070 +5959 23539 0.4350 +5959 23746 0.4660 +5959 50700 0.4930 +5959 51109 0.9380 +5959 53630 0.4240 +5959 54714 0.4240 +5959 55825 0.4170 +5959 56479 0.4510 +5959 56603 0.4220 +5959 57010 0.6510 +5959 60506 0.4670 +5959 64220 0.5610 +5959 79154 0.7280 +5959 84301 0.5750 +5959 84839 0.4610 +5959 92211 0.4190 +5959 145226 0.9360 +5959 157506 0.9480 +5959 158835 0.9200 +5959 340665 0.4340 +5959 345193 0.5030 +5959 388336 0.4010 +5959 440435 0.4180 +5959 646960 0.6020 +5961 6010 0.9350 +5961 6011 0.5030 +5961 6017 0.7540 +5961 6094 0.9950 +5961 6100 0.8250 +5961 6103 0.8150 +5961 6121 0.7960 +5961 6247 0.6720 +5961 6295 0.4540 +5961 6716 0.4270 +5961 6785 0.8380 +5961 7078 0.7290 +5961 7275 0.5020 +5961 7287 0.8120 +5961 7399 0.6170 +5961 7439 0.8680 +5961 8842 0.6700 +5961 9094 0.4560 +5961 9129 0.7040 +5961 9227 0.5110 +5961 9600 0.4520 +5961 9626 0.4900 +5961 9657 0.4670 +5961 9742 0.4200 +5961 10002 0.8150 +5961 10136 0.6940 +5961 10210 0.7160 +5961 10461 0.5860 +5961 10594 0.7080 +5961 22999 0.4240 +5961 23020 0.6630 +5961 23093 0.4470 +5961 23186 0.4500 +5961 23309 0.4290 +5961 23436 0.6940 +5961 23746 0.8100 +5961 24148 0.4200 +5961 25794 0.7560 +5961 25855 0.4380 +5961 25861 0.4280 +5961 26121 0.8000 +5961 26254 0.6760 +5961 50700 0.5970 +5961 50939 0.7730 +5961 51742 0.4240 +5961 54714 0.6000 +5961 55812 0.6210 +5961 55975 0.6410 +5961 57010 0.5110 +5961 57096 0.6380 +5961 57670 0.4440 +5961 64218 0.6930 +5961 80184 0.6240 +5961 83394 0.4870 +5961 83546 0.4280 +5961 83552 0.6700 +5961 84140 0.5450 +5961 84312 0.4380 +5961 84839 0.5060 +5961 92211 0.6660 +5961 92840 0.4640 +5961 94137 0.6370 +5961 115861 0.4130 +5961 130557 0.6220 +5961 131890 0.5890 +5961 140683 0.8220 +5961 145226 0.7670 +5961 157657 0.5870 +5961 167691 0.4840 +5961 169522 0.5810 +5961 254173 0.4420 +5961 261734 0.4410 +5961 343035 0.8930 +5961 346007 0.7880 +5961 375298 0.7680 +5961 388531 0.5200 +5961 388939 0.7520 +5961 401124 0.4270 +5961 768206 0.6700 +5962 6093 0.5450 +5962 6383 0.9120 +5962 6402 0.8580 +5962 6404 0.9690 +5962 6548 0.9930 +5962 6550 0.6450 +5962 6557 0.4570 +5962 6558 0.5530 +5962 6624 0.5370 +5962 6693 0.9950 +5962 6696 0.5350 +5962 6709 0.5950 +5962 6711 0.6300 +5962 6714 0.6140 +5962 6777 0.4280 +5962 6793 0.5160 +5962 7041 0.4020 +5962 7082 0.7040 +5962 7087 0.5580 +5962 7094 0.6750 +5962 7184 0.4290 +5962 7251 0.4800 +5962 7408 0.5170 +5962 7409 0.6260 +5962 7412 0.4950 +5962 7414 0.7530 +5962 7430 0.9990 +5962 7454 0.5030 +5962 7915 0.4790 +5962 8395 0.4340 +5962 8544 0.6090 +5962 8573 0.6500 +5962 8692 0.6540 +5962 8766 0.4550 +5962 8976 0.6360 +5962 9113 0.4050 +5962 9270 0.4090 +5962 9351 0.9880 +5962 9368 0.9990 +5962 9429 0.4660 +5962 9448 0.6340 +5962 9475 0.5240 +5962 9564 0.6350 +5962 9727 0.4970 +5962 9750 0.8250 +5962 9784 0.4890 +5962 9821 0.4390 +5962 10207 0.6590 +5962 10243 0.6920 +5962 10611 0.4110 +5962 10630 0.8100 +5962 10672 0.6980 +5962 10752 0.5480 +5962 10899 0.4240 +5962 10979 0.5620 +5962 10988 0.4650 +5962 11078 0.6500 +5962 11314 0.4260 +5962 11344 0.7650 +5962 22841 0.5370 +5962 23136 0.6400 +5962 23164 0.5510 +5962 23603 0.4330 +5962 25794 0.8290 +5962 25861 0.7010 +5962 25932 0.4240 +5962 26151 0.5030 +5962 26499 0.6010 +5962 51168 0.8060 +5962 51765 0.4880 +5962 51806 0.6540 +5962 53405 0.9540 +5962 53904 0.5920 +5962 54102 0.7560 +5962 54443 0.4750 +5962 55107 0.7110 +5962 55612 0.5330 +5962 57111 0.5050 +5962 57468 0.4320 +5962 57471 0.6990 +5962 57669 0.4180 +5962 64398 0.7110 +5962 64787 0.5990 +5962 79180 0.4220 +5962 80223 0.5140 +5962 80342 0.4770 +5962 81609 0.4790 +5962 83547 0.7290 +5962 83660 0.6800 +5962 83706 0.5230 +5962 83715 0.7530 +5962 85477 0.6060 +5962 90627 0.5420 +5962 90678 0.5370 +5962 91860 0.6540 +5962 93185 0.6770 +5962 94025 0.5820 +5962 120892 0.4900 +5962 124599 0.4290 +5962 129446 0.8150 +5962 140469 0.5610 +5962 143903 0.7590 +5962 152789 0.4100 +5962 163688 0.6540 +5962 169166 0.5460 +5962 254427 0.4090 +5962 286262 0.9180 +5962 339768 0.5250 +5962 389207 0.8000 +5962 494513 0.4990 +5962 643226 0.8220 +5962 647024 0.4450 +5965 6117 0.4030 +5965 6118 0.4110 +5965 6426 0.4820 +5965 6596 0.5290 +5965 7013 0.4150 +5965 7014 0.4750 +5965 7150 0.4830 +5965 7156 0.8440 +5965 7157 0.4710 +5965 7158 0.6230 +5965 7486 0.6530 +5965 7515 0.5330 +5965 7516 0.5240 +5965 7517 0.4790 +5965 7518 0.4070 +5965 7520 0.8290 +5965 8318 0.4230 +5965 8438 0.5590 +5965 9156 0.9320 +5965 9271 0.4810 +5965 9401 0.4180 +5965 9656 0.5470 +5965 10419 0.4460 +5965 11073 0.4650 +5965 11169 0.4310 +5965 11200 0.5330 +5965 11284 0.4460 +5965 23304 0.4600 +5965 26227 0.4570 +5965 50485 0.7190 +5965 51026 0.4410 +5965 51548 0.4580 +5965 51750 0.5720 +5965 54386 0.4200 +5965 54555 0.4140 +5965 54932 0.5930 +5965 55086 0.5090 +5965 55218 0.4610 +5965 55388 0.4110 +5965 56897 0.6160 +5965 57697 0.7040 +5965 60561 0.4930 +5965 79728 0.5900 +5965 79912 0.5500 +5965 80010 0.8410 +5965 80119 0.4990 +5965 80198 0.6430 +5965 83932 0.4170 +5965 83990 0.6820 +5965 84083 0.6450 +5965 84142 0.4150 +5965 84464 0.6490 +5965 84893 0.6370 +5965 113510 0.5130 +5965 114882 0.4690 +5965 116028 0.7830 +5965 143689 0.4830 +5965 146956 0.4360 +5965 200558 0.4330 +5965 201973 0.5620 +5965 259282 0.4570 +5965 348654 0.5160 +5966 5970 0.9990 +5966 5971 0.9980 +5966 6041 0.4190 +5966 6188 0.7410 +5966 6233 0.5720 +5966 6311 0.4200 +5966 6347 0.5070 +5966 6391 0.4100 +5966 6401 0.4660 +5966 6402 0.4060 +5966 6500 0.6380 +5966 6539 0.5360 +5966 6596 0.4990 +5966 6667 0.5280 +5966 6688 0.7700 +5966 6714 0.4600 +5966 6722 0.4630 +5966 6772 0.5830 +5966 6773 0.4420 +5966 6774 0.6400 +5966 6775 0.4520 +5966 6776 0.5350 +5966 6777 0.5120 +5966 6778 0.6660 +5966 6850 0.4640 +5966 6885 0.7330 +5966 6908 0.5400 +5966 7040 0.4020 +5966 7096 0.4510 +5966 7097 0.5560 +5966 7098 0.5210 +5966 7099 0.6330 +5966 7100 0.4460 +5966 7124 0.8990 +5966 7128 0.6680 +5966 7132 0.6760 +5966 7157 0.8310 +5966 7185 0.5850 +5966 7187 0.5470 +5966 7188 0.4190 +5966 7189 0.7040 +5966 7205 0.4560 +5966 7268 0.4700 +5966 7297 0.4480 +5966 7306 0.4220 +5966 7311 0.5200 +5966 7314 0.5530 +5966 7316 0.5820 +5966 7412 0.4600 +5966 7837 0.5240 +5966 7852 0.4580 +5966 7874 0.4170 +5966 7975 0.4100 +5966 8061 0.4120 +5966 8290 0.4610 +5966 8356 0.4650 +5966 8454 0.6190 +5966 8517 0.8990 +5966 8600 0.4110 +5966 8625 0.4040 +5966 8638 0.4170 +5966 8651 0.4100 +5966 8717 0.4490 +5966 8737 0.4810 +5966 8767 0.4220 +5966 8772 0.4180 +5966 8837 0.5110 +5966 8874 0.8240 +5966 8915 0.8110 +5966 8945 0.7100 +5966 9020 0.6230 +5966 9021 0.5230 +5966 9491 0.4080 +5966 9641 0.5140 +5966 9861 0.4190 +5966 10018 0.4030 +5966 10155 0.4410 +5966 10197 0.4330 +5966 10213 0.4610 +5966 10318 0.4890 +5966 10320 0.5280 +5966 10382 0.4130 +5966 10454 0.4290 +5966 10499 0.4610 +5966 10538 0.4460 +5966 10673 0.5530 +5966 10725 0.6700 +5966 10758 0.4540 +5966 10892 0.8740 +5966 10919 0.4110 +5966 11168 0.4610 +5966 11213 0.4480 +5966 22806 0.4590 +5966 23085 0.4520 +5966 23118 0.4250 +5966 23198 0.4140 +5966 23291 0.5120 +5966 23411 0.6220 +5966 23586 0.4040 +5966 25942 0.4370 +5966 26517 0.4380 +5966 29105 0.5340 +5966 29110 0.9570 +5966 50943 0.8820 +5966 51135 0.4420 +5966 51143 0.4230 +5966 51284 0.4910 +5966 51311 0.4250 +5966 51621 0.4460 +5966 51806 0.5810 +5966 53335 0.6500 +5966 54106 0.4340 +5966 55075 0.4850 +5966 55922 0.4640 +5966 57162 0.5320 +5966 59269 0.4780 +5966 64127 0.6460 +5966 64170 0.4200 +5966 64332 0.8400 +5966 64581 0.4200 +5966 64919 0.4470 +5966 79155 0.8990 +5966 79365 0.4130 +5966 80149 0.4480 +5966 84433 0.8020 +5966 84807 0.9520 +5966 91860 0.5820 +5966 113457 0.4470 +5966 115650 0.7390 +5966 118788 0.4890 +5966 122706 0.4480 +5966 137902 0.4950 +5966 143471 0.4210 +5966 149233 0.4070 +5966 150684 0.4950 +5966 163688 0.5810 +5966 163782 0.4060 +5966 200942 0.4240 +5966 203068 0.5220 +5966 221656 0.5950 +5966 440093 0.4610 +5966 440686 0.4610 +5966 653604 0.4660 +5966 102723407 0.4170 +5967 5968 0.9770 +5967 6774 0.4010 +5967 7031 0.6140 +5967 10071 0.4640 +5967 10894 0.4770 +5967 51267 0.6500 +5967 80018 0.5320 +5967 80149 0.8890 +5967 342898 0.4080 +5968 7031 0.5890 +5968 10894 0.4990 +5968 50506 0.5480 +5968 51267 0.7110 +5968 80018 0.5320 +5968 80149 0.9050 +5968 90527 0.4480 +5968 114824 0.4470 +5968 130120 0.4780 +5968 342898 0.6400 +5968 405753 0.6090 +5970 5971 0.9990 +5970 5977 0.7470 +5970 6041 0.4220 +5970 6046 0.4110 +5970 6093 0.9250 +5970 6094 0.6500 +5970 6188 0.9670 +5970 6210 0.5040 +5970 6223 0.4070 +5970 6233 0.8610 +5970 6256 0.7810 +5970 6283 0.4810 +5970 6285 0.5050 +5970 6288 0.4980 +5970 6347 0.9870 +5970 6348 0.6160 +5970 6364 0.4060 +5970 6366 0.4720 +5970 6376 0.4420 +5970 6391 0.4010 +5970 6401 0.6230 +5970 6494 0.4160 +5970 6500 0.6590 +5970 6612 0.4810 +5970 6615 0.6750 +5970 6667 0.9530 +5970 6670 0.6750 +5970 6688 0.6890 +5970 6714 0.5350 +5970 6722 0.4940 +5970 6737 0.4520 +5970 6772 0.8640 +5970 6773 0.6800 +5970 6774 0.9920 +5970 6776 0.5220 +5970 6777 0.4880 +5970 6778 0.4930 +5970 6850 0.4340 +5970 6872 0.4460 +5970 6875 0.4240 +5970 6885 0.8970 +5970 6907 0.6190 +5970 6908 0.8580 +5970 6950 0.4510 +5970 7015 0.6740 +5970 7040 0.4840 +5970 7052 0.6080 +5970 7096 0.4480 +5970 7097 0.9560 +5970 7098 0.5860 +5970 7099 0.9660 +5970 7100 0.9460 +5970 7124 0.9970 +5970 7128 0.6990 +5970 7132 0.8260 +5970 7133 0.4150 +5970 7157 0.9550 +5970 7159 0.7720 +5970 7185 0.5240 +5970 7186 0.7320 +5970 7187 0.6470 +5970 7188 0.6200 +5970 7189 0.8670 +5970 7291 0.7900 +5970 7297 0.4310 +5970 7311 0.5160 +5970 7314 0.5590 +5970 7316 0.7090 +5970 7321 0.7050 +5970 7322 0.6960 +5970 7323 0.6330 +5970 7324 0.6730 +5970 7329 0.5970 +5970 7334 0.6870 +5970 7335 0.6080 +5970 7341 0.5480 +5970 7356 0.6990 +5970 7412 0.5280 +5970 7528 0.6710 +5970 7536 0.6800 +5970 7706 0.6310 +5970 7837 0.5260 +5970 7852 0.5850 +5970 7874 0.8360 +5970 7975 0.4250 +5970 8061 0.8760 +5970 8085 0.4060 +5970 8193 0.6050 +5970 8202 0.6160 +5970 8204 0.5200 +5970 8290 0.7150 +5970 8356 0.7230 +5970 8361 0.5250 +5970 8431 0.5300 +5970 8453 0.7980 +5970 8454 0.6730 +5970 8473 0.4100 +5970 8517 0.9960 +5970 8518 0.6860 +5970 8544 0.4340 +5970 8600 0.4620 +5970 8626 0.6440 +5970 8638 0.4160 +5970 8651 0.8120 +5970 8654 0.4960 +5970 8678 0.5230 +5970 8697 0.5310 +5970 8717 0.5030 +5970 8737 0.7840 +5970 8767 0.6460 +5970 8772 0.5120 +5970 8837 0.6490 +5970 8841 0.7640 +5970 8850 0.6980 +5970 8870 0.6560 +5970 8874 0.9530 +5970 8878 0.9120 +5970 8881 0.5370 +5970 8883 0.4180 +5970 8915 0.8640 +5970 8945 0.8710 +5970 9020 0.7900 +5970 9021 0.7040 +5970 9093 0.4470 +5970 9172 0.4670 +5970 9252 0.8330 +5970 9314 0.5580 +5970 9325 0.6180 +5970 9440 0.5400 +5970 9443 0.6320 +5970 9475 0.9230 +5970 9491 0.4300 +5970 9611 0.5330 +5970 9612 0.7600 +5970 9641 0.7840 +5970 9817 0.9560 +5970 9861 0.4230 +5970 9971 0.4180 +5970 9978 0.6300 +5970 10001 0.5350 +5970 10009 0.5620 +5970 10013 0.5150 +5970 10018 0.4160 +5970 10155 0.4620 +5970 10197 0.5220 +5970 10207 0.4090 +5970 10213 0.4730 +5970 10273 0.5020 +5970 10365 0.9340 +5970 10379 0.5300 +5970 10393 0.5590 +5970 10401 0.9170 +5970 10413 0.7090 +5970 10419 0.7070 +5970 10454 0.7300 +5970 10488 0.4440 +5970 10498 0.7990 +5970 10499 0.5610 +5970 10514 0.4340 +5970 10524 0.9370 +5970 10538 0.4230 +5970 10549 0.4610 +5970 10614 0.4480 +5970 10616 0.5210 +5970 10628 0.4170 +5970 10657 0.4900 +5970 10664 0.4070 +5970 10673 0.5160 +5970 10725 0.5590 +5970 10848 0.9250 +5970 10856 0.4700 +5970 10891 0.6290 +5970 10892 0.7610 +5970 10919 0.6430 +5970 11035 0.6660 +5970 11065 0.6670 +5970 11104 0.4370 +5970 11124 0.7500 +5970 11168 0.5010 +5970 22807 0.5600 +5970 22933 0.5420 +5970 22992 0.8520 +5970 23085 0.4530 +5970 23118 0.7240 +5970 23198 0.4130 +5970 23291 0.7580 +5970 23368 0.5960 +5970 23376 0.4460 +5970 23408 0.4950 +5970 23411 0.9950 +5970 23435 0.4590 +5970 23474 0.5520 +5970 23476 0.9990 +5970 23512 0.4390 +5970 23528 0.5000 +5970 23586 0.7340 +5970 23633 0.4670 +5970 25828 0.5620 +5970 25855 0.5510 +5970 25906 0.5010 +5970 25942 0.4340 +5970 26145 0.4150 +5970 27250 0.4260 +5970 27287 0.5080 +5970 27338 0.5950 +5970 28234 0.4070 +5970 28511 0.5130 +5970 28512 0.6300 +5970 29105 0.5040 +5970 29110 0.9860 +5970 29126 0.5780 +5970 29882 0.5560 +5970 29945 0.5090 +5970 29947 0.6080 +5970 50940 0.4570 +5970 50943 0.8250 +5970 51043 0.6110 +5970 51135 0.4780 +5970 51147 0.9620 +5970 51230 0.5310 +5970 51284 0.5010 +5970 51311 0.4460 +5970 51341 0.6120 +5970 51343 0.5530 +5970 51397 0.6100 +5970 51433 0.5290 +5970 51434 0.5170 +5970 51529 0.6300 +5970 51548 0.9690 +5970 51586 0.6490 +5970 51588 0.6110 +5970 54106 0.4520 +5970 54790 0.7020 +5970 55177 0.5040 +5970 55274 0.5920 +5970 55294 0.4350 +5970 55502 0.4310 +5970 55835 0.5470 +5970 55844 0.9060 +5970 55922 0.7930 +5970 56672 0.7570 +5970 57104 0.5010 +5970 57491 0.4180 +5970 57506 0.7180 +5970 57621 0.6860 +5970 57761 0.4390 +5970 60672 0.5020 +5970 64127 0.5940 +5970 64135 0.6980 +5970 64236 0.4660 +5970 64324 0.6200 +5970 64332 0.9690 +5970 64343 0.4300 +5970 64682 0.5210 +5970 65998 0.7170 +5970 79026 0.6700 +5970 79155 0.8360 +5970 79607 0.4610 +5970 79753 0.5840 +5970 79813 0.8240 +5970 79918 0.9840 +5970 80232 0.4050 +5970 80279 0.7060 +5970 80790 0.8360 +5970 80854 0.8370 +5970 81030 0.5260 +5970 83473 0.4500 +5970 84056 0.4210 +5970 84196 0.6000 +5970 84282 0.5630 +5970 84433 0.7600 +5970 84676 0.4860 +5970 84807 0.7870 +5970 84823 0.4090 +5970 89122 0.5570 +5970 91662 0.9270 +5970 92140 0.6680 +5970 93986 0.4130 +5970 114548 0.9370 +5970 114879 0.4030 +5970 115650 0.4780 +5970 116092 0.4960 +5970 119504 0.4990 +5970 122706 0.4210 +5970 136319 0.5390 +5970 137902 0.5250 +5970 143471 0.4300 +5970 148327 0.4460 +5970 150684 0.9690 +5970 170622 0.7180 +5970 246184 0.4990 +5970 257397 0.6770 +5970 282618 0.4620 +5970 359948 0.4790 +5970 402569 0.4340 +5970 440093 0.7200 +5970 440686 0.7150 +5970 653361 0.4390 +5970 653604 0.7230 +5971 5977 0.6810 +5971 6188 0.6220 +5971 6233 0.5380 +5971 6347 0.5530 +5971 6348 0.4050 +5971 6363 0.4210 +5971 6364 0.4910 +5971 6401 0.4250 +5971 6402 0.4160 +5971 6500 0.6430 +5971 6595 0.5530 +5971 6597 0.5350 +5971 6601 0.5260 +5971 6602 0.6400 +5971 6603 0.6510 +5971 6604 0.5590 +5971 6688 0.4520 +5971 6689 0.4230 +5971 6714 0.4410 +5971 6772 0.7260 +5971 6773 0.4840 +5971 6774 0.6890 +5971 6776 0.5000 +5971 6777 0.4380 +5971 6778 0.4580 +5971 6850 0.4750 +5971 6885 0.4810 +5971 7040 0.6530 +5971 7071 0.4610 +5971 7096 0.4480 +5971 7097 0.5460 +5971 7098 0.5110 +5971 7099 0.6230 +5971 7100 0.4500 +5971 7124 0.7490 +5971 7127 0.4710 +5971 7128 0.7130 +5971 7132 0.6150 +5971 7133 0.6370 +5971 7157 0.6710 +5971 7185 0.6630 +5971 7186 0.4640 +5971 7187 0.7140 +5971 7188 0.6380 +5971 7189 0.7080 +5971 7311 0.4100 +5971 7314 0.4420 +5971 7316 0.4770 +5971 7412 0.4800 +5971 7528 0.6420 +5971 7837 0.4390 +5971 7852 0.4210 +5971 7874 0.4920 +5971 8061 0.4350 +5971 8237 0.5590 +5971 8290 0.4200 +5971 8356 0.4190 +5971 8454 0.6140 +5971 8517 0.8500 +5971 8600 0.5400 +5971 8605 0.4440 +5971 8638 0.4390 +5971 8717 0.5150 +5971 8737 0.5230 +5971 8740 0.5540 +5971 8742 0.4600 +5971 8767 0.5290 +5971 8772 0.4390 +5971 8837 0.4690 +5971 8874 0.4970 +5971 8915 0.6840 +5971 8945 0.6640 +5971 9020 0.9030 +5971 9039 0.4270 +5971 9040 0.4240 +5971 9308 0.4540 +5971 9641 0.5570 +5971 9861 0.4150 +5971 10010 0.5280 +5971 10197 0.4350 +5971 10213 0.4520 +5971 10318 0.5130 +5971 10392 0.4780 +5971 10437 0.4320 +5971 10454 0.4140 +5971 10538 0.4260 +5971 10563 0.4250 +5971 10673 0.6510 +5971 10892 0.8130 +5971 10919 0.8000 +5971 11126 0.4590 +5971 11129 0.4740 +5971 11168 0.4900 +5971 23118 0.4180 +5971 23198 0.4040 +5971 23291 0.5030 +5971 23586 0.4340 +5971 23633 0.5500 +5971 28232 0.4380 +5971 29105 0.4510 +5971 29110 0.4510 +5971 50943 0.4490 +5971 51135 0.4280 +5971 51284 0.4790 +5971 51311 0.4100 +5971 54106 0.4250 +5971 55509 0.5010 +5971 55691 0.4300 +5971 64127 0.4480 +5971 64170 0.4060 +5971 64332 0.8320 +5971 64581 0.4190 +5971 79155 0.7510 +5971 80149 0.6060 +5971 84433 0.7240 +5971 84807 0.8010 +5971 115650 0.6060 +5971 122706 0.5240 +5971 137902 0.4400 +5971 143471 0.4320 +5971 148022 0.4140 +5971 150684 0.4240 +5971 151888 0.4870 +5971 259197 0.4550 +5971 259307 0.4040 +5971 440093 0.4200 +5971 440686 0.4200 +5971 653604 0.4200 +5972 5973 0.8710 +5972 6051 0.4290 +5972 6337 0.7410 +5972 6338 0.8180 +5972 6340 0.8500 +5972 6347 0.6760 +5972 6348 0.4100 +5972 6401 0.4650 +5972 6403 0.4330 +5972 6446 0.4090 +5972 6476 0.4070 +5972 6517 0.4970 +5972 6519 0.5380 +5972 6523 0.4610 +5972 6524 0.8020 +5972 6549 0.4750 +5972 6550 0.5970 +5972 6557 0.7670 +5972 6559 0.8460 +5972 6696 0.4930 +5972 6714 0.4150 +5972 6750 0.4380 +5972 6774 0.4200 +5972 6863 0.5690 +5972 6868 0.6380 +5972 7040 0.7990 +5972 7064 0.4420 +5972 7076 0.4630 +5972 7099 0.5150 +5972 7113 0.7380 +5972 7124 0.7030 +5972 7137 0.5070 +5972 7139 0.4230 +5972 7369 0.7340 +5972 7412 0.5810 +5972 7450 0.5400 +5972 7498 0.5970 +5972 7809 0.6080 +5972 7827 0.6490 +5972 7837 0.5310 +5972 8029 0.4280 +5972 8074 0.7640 +5972 8452 0.5240 +5972 8542 0.4780 +5972 8654 0.4380 +5972 8796 0.4270 +5972 8822 0.4010 +5972 8823 0.4010 +5972 8862 0.7050 +5972 8972 0.4100 +5972 9114 0.5000 +5972 9365 0.7490 +5972 9370 0.6590 +5972 9622 0.8210 +5972 10159 0.9990 +5972 10699 0.4350 +5972 10724 0.4340 +5972 10891 0.4300 +5972 11346 0.6240 +5972 23327 0.4160 +5972 23410 0.4190 +5972 23411 0.5140 +5972 23549 0.4220 +5972 25844 0.4220 +5972 27035 0.5170 +5972 27347 0.6190 +5972 50506 0.4900 +5972 50507 0.6070 +5972 51305 0.6420 +5972 51738 0.4200 +5972 51752 0.4630 +5972 51806 0.5290 +5972 53905 0.4880 +5972 54205 0.4140 +5972 56246 0.4440 +5972 56606 0.4060 +5972 56670 0.7100 +5972 56729 0.4720 +5972 57085 0.4770 +5972 57393 0.6000 +5972 57486 0.6070 +5972 58503 0.4220 +5972 59272 0.9600 +5972 65125 0.4180 +5972 65266 0.5150 +5972 79258 0.7930 +5972 84666 0.4470 +5972 91860 0.5140 +5972 116085 0.4010 +5972 116511 0.7220 +5972 116512 0.5420 +5972 137902 0.5310 +5972 163688 0.5140 +5972 257202 0.4730 +5972 340024 0.4830 +5972 374879 0.4210 +5972 440387 0.4460 +5972 493869 0.4760 +5972 653361 0.4890 +5973 8260 0.9000 +5973 8269 0.4260 +5973 10020 0.9440 +5973 10159 0.4920 +5973 10234 0.4300 +5973 10251 0.4360 +5973 10559 0.4490 +5973 27159 0.9000 +5973 51005 0.4940 +5973 54187 0.9410 +5973 55577 0.9500 +5973 55750 0.5280 +5973 80896 0.9410 +5973 91373 0.6530 +5973 114799 0.5160 +5973 157570 0.5150 +5973 284266 0.4010 +5973 100049587 0.4330 +5976 6059 0.7140 +5976 6122 0.4030 +5976 6124 0.5170 +5976 6128 0.4480 +5976 6130 0.7470 +5976 6135 0.6070 +5976 6136 0.4650 +5976 6141 0.5400 +5976 6154 0.4530 +5976 6155 0.5190 +5976 6156 0.4820 +5976 6157 0.4790 +5976 6158 0.4980 +5976 6175 0.4840 +5976 6188 0.5600 +5976 6189 0.4120 +5976 6193 0.4570 +5976 6194 0.7360 +5976 6203 0.4010 +5976 6204 0.5470 +5976 6207 0.5910 +5976 6217 0.4450 +5976 6223 0.5270 +5976 6224 0.6600 +5976 6231 0.6340 +5976 6234 0.5880 +5976 6305 0.4880 +5976 6311 0.7480 +5976 6426 0.8960 +5976 6427 0.5030 +5976 6428 0.5510 +5976 6429 0.4690 +5976 6430 0.4040 +5976 6431 0.5420 +5976 6432 0.5110 +5976 6434 0.6610 +5976 6499 0.7040 +5976 6625 0.5770 +5976 6628 0.5740 +5976 6635 0.4500 +5976 6637 0.4350 +5976 6780 0.9870 +5976 6783 0.7220 +5976 7015 0.6860 +5976 7072 0.6700 +5976 7073 0.6850 +5976 7458 0.4690 +5976 7514 0.4640 +5976 7534 0.4400 +5976 7538 0.6060 +5976 7681 0.4550 +5976 7812 0.4270 +5976 7862 0.4320 +5976 7884 0.9730 +5976 7913 0.9960 +5976 7916 0.4140 +5976 7919 0.5990 +5976 8087 0.5220 +5976 8106 0.7760 +5976 8178 0.4910 +5976 8446 0.4180 +5976 8449 0.6060 +5976 8480 0.4250 +5976 8570 0.5180 +5976 8607 0.7980 +5976 8661 0.4650 +5976 8662 0.7420 +5976 8665 0.5950 +5976 8668 0.4350 +5976 8761 0.6770 +5976 8776 0.4360 +5976 8837 0.4690 +5976 8886 0.4970 +5976 8894 0.4170 +5976 9092 0.4990 +5976 9098 0.4740 +5976 9100 0.6810 +5976 9188 0.4690 +5976 9271 0.4710 +5976 9295 0.6060 +5976 9343 0.4400 +5976 9401 0.4260 +5976 9513 0.5200 +5976 9640 0.4880 +5976 9652 0.4880 +5976 9704 0.8900 +5976 9726 0.4480 +5976 9774 0.6470 +5976 9775 0.9990 +5976 9782 0.4630 +5976 9785 0.5490 +5976 9797 0.4540 +5976 9811 0.5380 +5976 9827 0.5340 +5976 9887 0.9990 +5976 9908 0.4660 +5976 9939 0.9990 +5976 9987 0.7270 +5976 9991 0.5620 +5976 10025 0.4670 +5976 10146 0.9520 +5976 10155 0.4240 +5976 10189 0.9980 +5976 10209 0.6230 +5976 10236 0.6530 +5976 10247 0.4920 +5976 10250 0.9970 +5976 10284 0.4020 +5976 10399 0.4860 +5976 10482 0.9980 +5976 10492 0.7890 +5976 10498 0.5510 +5976 10537 0.4470 +5976 10576 0.6160 +5976 10605 0.5070 +5976 10642 0.6760 +5976 10658 0.4240 +5976 10694 0.5420 +5976 10767 0.9730 +5976 10856 0.7420 +5976 10921 0.9990 +5976 10940 0.5080 +5976 10949 0.4280 +5976 10963 0.4230 +5976 11021 0.4370 +5976 11054 0.4030 +5976 11060 0.4140 +5976 11171 0.4390 +5976 11273 0.4540 +5976 11338 0.6880 +5976 22794 0.9990 +5976 22803 0.8120 +5976 22870 0.4800 +5976 22894 0.5600 +5976 22916 0.9700 +5976 23019 0.6360 +5976 23049 0.9990 +5976 23064 0.4120 +5976 23070 0.4080 +5976 23196 0.7410 +5976 23293 0.9990 +5976 23367 0.5580 +5976 23381 0.9990 +5976 23404 0.5390 +5976 23405 0.7590 +5976 23435 0.6270 +5976 23451 0.4380 +5976 23476 0.6010 +5976 23517 0.6100 +5976 23524 0.5180 +5976 23644 0.9420 +5976 23708 0.8820 +5976 24149 0.4090 +5976 25804 0.4130 +5976 25920 0.4730 +5976 25921 0.6630 +5976 26019 0.9990 +5976 26065 0.5440 +5976 26093 0.9100 +5976 26523 0.8520 +5976 26528 0.4500 +5976 26986 0.9960 +5976 27067 0.9040 +5976 27161 0.9490 +5976 27257 0.7870 +5976 27316 0.9340 +5976 27327 0.4180 +5976 27339 0.4580 +5976 29102 0.4780 +5976 29855 0.7250 +5976 29896 0.5490 +5976 51068 0.6050 +5976 51343 0.6750 +5976 51441 0.4600 +5976 51477 0.5810 +5976 51481 0.4520 +5976 53918 0.4680 +5976 54464 0.9820 +5976 54487 0.5970 +5976 54512 0.6250 +5976 54542 0.6240 +5976 54606 0.4630 +5976 54726 0.4270 +5976 54815 0.4660 +5976 54888 0.5440 +5976 54915 0.5800 +5976 54952 0.5350 +5976 55110 0.9590 +5976 55181 0.9930 +5976 55342 0.4160 +5976 55629 0.9810 +5976 55737 0.6010 +5976 55802 0.9940 +5976 55869 0.4580 +5976 56006 0.9940 +5976 56478 0.4430 +5976 56829 0.5270 +5976 56970 0.6340 +5976 57666 0.5010 +5976 58155 0.4860 +5976 60489 0.5320 +5976 64118 0.4750 +5976 65109 0.9990 +5976 65110 0.9990 +5976 79039 0.4950 +5976 79727 0.6920 +5976 80119 0.4080 +5976 80149 0.7300 +5976 80153 0.9200 +5976 80349 0.4240 +5976 81889 0.4800 +5976 84243 0.4080 +5976 84305 0.9530 +5976 84656 0.5210 +5976 85364 0.5690 +5976 85437 0.5260 +5976 90459 0.4010 +5976 90850 0.5420 +5976 92399 0.4370 +5976 93643 0.4810 +5976 115752 0.4230 +5976 124245 0.4720 +5976 124540 0.4780 +5976 124801 0.4560 +5976 129563 0.5130 +5976 140886 0.4060 +5976 149041 0.8290 +5976 149951 0.6590 +5976 149986 0.5120 +5976 167227 0.9800 +5976 196513 0.8110 +5976 219988 0.5020 +5976 220988 0.4150 +5976 221496 0.4610 +5976 257000 0.5050 +5976 257218 0.5110 +5976 347744 0.5350 +5977 6015 0.4440 +5977 6045 0.4600 +5977 6494 0.4510 +5977 6595 0.9910 +5977 6597 0.9990 +5977 6598 0.9990 +5977 6599 0.9960 +5977 6601 0.9990 +5977 6602 0.9990 +5977 6603 0.9870 +5977 6604 0.9840 +5977 6605 0.9990 +5977 6664 0.4510 +5977 6760 0.9660 +5977 7528 0.5190 +5977 8019 0.4630 +5977 8193 0.9870 +5977 8289 0.9990 +5977 8290 0.5520 +5977 8350 0.5550 +5977 8356 0.5640 +5977 8361 0.4360 +5977 8815 0.7510 +5977 9274 0.9830 +5977 9275 0.9710 +5977 9437 0.5400 +5977 10435 0.4460 +5977 10534 0.5120 +5977 11060 0.4020 +5977 23476 0.4540 +5977 23506 0.8160 +5977 23759 0.6060 +5977 25942 0.4680 +5977 26039 0.9720 +5977 26502 0.4690 +5977 29117 0.8950 +5977 29998 0.9020 +5977 51188 0.6420 +5977 51412 0.9770 +5977 53335 0.7840 +5977 55193 0.9710 +5977 55274 0.9370 +5977 55611 0.4450 +5977 55689 0.6540 +5977 56156 0.6100 +5977 57492 0.9990 +5977 64708 0.4440 +5977 64919 0.7500 +5977 65980 0.9350 +5977 83786 0.4220 +5977 196528 0.9770 +5977 220359 0.4730 +5977 283130 0.4190 +5977 440093 0.5530 +5977 440686 0.5510 +5977 653604 0.5630 +5978 6015 0.5600 +5978 6045 0.7050 +5978 6326 0.4630 +5978 6591 0.5290 +5978 6597 0.6830 +5978 6601 0.5060 +5978 6605 0.4270 +5978 6615 0.7050 +5978 6616 0.5450 +5978 6657 0.6400 +5978 6667 0.4280 +5978 6790 0.4230 +5978 6847 0.4310 +5978 6908 0.4940 +5978 6938 0.6160 +5978 7101 0.6660 +5978 7157 0.7180 +5978 7425 0.7900 +5978 7702 0.5330 +5978 8193 0.4690 +5978 8242 0.8590 +5978 8290 0.4820 +5978 8329 0.4390 +5978 8331 0.5880 +5978 8334 0.5820 +5978 8337 0.5540 +5978 8338 0.5540 +5978 8340 0.4390 +5978 8341 0.5850 +5978 8342 0.4410 +5978 8345 0.5840 +5978 8347 0.4360 +5978 8348 0.4450 +5978 8349 0.5640 +5978 8356 0.6760 +5978 8361 0.7630 +5978 8445 0.4540 +5978 8467 0.4230 +5978 8535 0.5140 +5978 8726 0.6580 +5978 8819 0.5830 +5978 8841 0.5200 +5978 8945 0.8850 +5978 8970 0.5950 +5978 9112 0.5550 +5978 9219 0.5560 +5978 9369 0.6800 +5978 9378 0.5470 +5978 9379 0.6060 +5978 9425 0.4570 +5978 9441 0.5840 +5978 9611 0.5890 +5978 9759 0.5190 +5978 10014 0.7590 +5978 10106 0.7370 +5978 10155 0.4160 +5978 10217 0.7330 +5978 10284 0.5780 +5978 10362 0.6690 +5978 10919 0.9260 +5978 11075 0.7530 +5978 11281 0.5110 +5978 22955 0.5400 +5978 23028 0.9950 +5978 23040 0.5170 +5978 23186 0.9990 +5978 23291 0.7920 +5978 23309 0.9710 +5978 23466 0.5060 +5978 23512 0.7200 +5978 25855 0.5200 +5978 25942 0.9730 +5978 51317 0.6820 +5978 51412 0.5900 +5978 51564 0.5080 +5978 51742 0.5560 +5978 53615 0.5110 +5978 54815 0.5610 +5978 55274 0.4260 +5978 55758 0.4700 +5978 55893 0.4560 +5978 56731 0.4030 +5978 57167 0.5130 +5978 57332 0.5370 +5978 57459 0.5370 +5978 57504 0.5490 +5978 57555 0.4450 +5978 57680 0.4790 +5978 58190 0.9870 +5978 64426 0.5890 +5978 79685 0.5050 +5978 79923 0.6240 +5978 80012 0.5310 +5978 84232 0.5090 +5978 84448 0.5420 +5978 84530 0.5280 +5978 84733 0.5730 +5978 85235 0.4340 +5978 85236 0.4360 +5978 92815 0.4340 +5978 128312 0.5830 +5978 132954 0.6400 +5978 144165 0.4630 +5978 203068 0.5260 +5978 221613 0.4340 +5978 255626 0.4360 +5978 283248 0.5570 +5978 317772 0.4340 +5978 440093 0.4820 +5978 440686 0.4820 +5978 440689 0.4360 +5978 642636 0.4090 +5978 653604 0.7600 +5978 100316904 0.4180 +5979 5987 0.7300 +5979 6098 0.4200 +5979 6249 0.4240 +5979 6363 0.4080 +5979 6389 0.6590 +5979 6390 0.8830 +5979 6391 0.8270 +5979 6392 0.9030 +5979 6464 0.9830 +5979 6495 0.4600 +5979 6528 0.4740 +5979 6597 0.5810 +5979 6598 0.5710 +5979 6654 0.6960 +5979 6663 0.7990 +5979 6714 0.8590 +5979 6750 0.5630 +5979 6751 0.4300 +5979 6752 0.5000 +5979 6754 0.4530 +5979 6755 0.4220 +5979 6774 0.8870 +5979 6790 0.4350 +5979 6801 0.4420 +5979 6857 0.4050 +5979 7015 0.6280 +5979 7038 0.6260 +5979 7054 0.5440 +5979 7080 0.7090 +5979 7132 0.4280 +5979 7157 0.8010 +5979 7170 0.6520 +5979 7189 0.5570 +5979 7249 0.4670 +5979 7253 0.6690 +5979 7380 0.4650 +5979 7423 0.4010 +5979 7490 0.4240 +5979 7704 0.4990 +5979 7812 0.4880 +5979 7849 0.7280 +5979 7852 0.5380 +5979 8030 0.9890 +5979 8031 0.9930 +5979 8289 0.4450 +5979 8503 0.7550 +5979 8643 0.7670 +5979 8660 0.4700 +5979 8805 0.6700 +5979 8817 0.5680 +5979 8822 0.5140 +5979 8823 0.6700 +5979 8929 0.7820 +5979 9046 0.6780 +5979 9048 0.9990 +5979 9049 0.4600 +5979 9247 0.4690 +5979 9260 0.8310 +5979 9402 0.4680 +5979 9423 0.4020 +5979 9518 0.9580 +5979 9839 0.5130 +5979 9846 0.5390 +5979 9915 0.5500 +5979 9950 0.6170 +5979 10142 0.5110 +5979 10342 0.6600 +5979 10371 0.4460 +5979 10460 0.4580 +5979 10568 0.4820 +5979 10817 0.4070 +5979 10818 0.9150 +5979 11214 0.4220 +5979 23085 0.4560 +5979 23095 0.6270 +5979 23307 0.4450 +5979 23624 0.5600 +5979 26018 0.7190 +5979 26128 0.5370 +5979 26153 0.5360 +5979 26281 0.6710 +5979 27006 0.6040 +5979 27436 0.8220 +5979 29126 0.6060 +5979 29956 0.4610 +5979 51592 0.8230 +5979 53353 0.4340 +5979 53358 0.5580 +5979 53373 0.8050 +5979 54583 0.4500 +5979 54949 0.6970 +5979 55294 0.5310 +5979 55654 0.9030 +5979 55680 0.5030 +5979 55715 0.7280 +5979 55816 0.7990 +5979 55930 0.4170 +5979 56243 0.4780 +5979 57001 0.4010 +5979 57509 0.4750 +5979 57674 0.4350 +5979 64096 0.9850 +5979 79577 0.5450 +5979 79633 0.4780 +5979 79664 0.5060 +5979 79705 0.4410 +5979 79718 0.4630 +5979 84181 0.4370 +5979 85358 0.5810 +5979 220164 0.8370 +5979 266743 0.5370 +5979 389400 0.9980 +5979 441549 0.4460 +5980 5981 0.6450 +5980 5982 0.6750 +5980 5983 0.6540 +5980 5984 0.6410 +5980 5985 0.6520 +5980 6117 0.7060 +5980 6118 0.6560 +5980 6119 0.5760 +5980 6233 0.5280 +5980 6240 0.5340 +5980 6596 0.7730 +5980 6868 0.4270 +5980 7150 0.4730 +5980 7156 0.4430 +5980 7158 0.7430 +5980 7272 0.5310 +5980 7311 0.5230 +5980 7314 0.5020 +5980 7316 0.5440 +5980 7319 0.5270 +5980 7320 0.5810 +5980 7334 0.8570 +5980 7335 0.6070 +5980 7336 0.9120 +5980 7374 0.6520 +5980 7398 0.4170 +5980 7486 0.6450 +5980 7507 0.8350 +5980 7508 0.6290 +5980 7515 0.4610 +5980 7517 0.7460 +5980 7518 0.4270 +5980 7520 0.5550 +5980 8318 0.7040 +5980 8438 0.4970 +5980 8728 0.6720 +5980 8751 0.5820 +5980 8754 0.5010 +5980 8908 0.5760 +5980 8914 0.5850 +5980 9156 0.8090 +5980 9400 0.4440 +5980 9401 0.5040 +5980 9656 0.4920 +5980 9728 0.4990 +5980 9837 0.5610 +5980 9937 0.6750 +5980 10111 0.5780 +5980 10198 0.4170 +5980 10459 0.9990 +5980 10535 0.5100 +5980 10606 0.5560 +5980 10714 0.9970 +5980 10721 0.7170 +5980 11044 0.6380 +5980 11073 0.5280 +5980 11144 0.4020 +5980 11169 0.7740 +5980 11200 0.7350 +5980 11201 0.9540 +5980 11232 0.9240 +5980 22909 0.5180 +5980 22976 0.5410 +5980 23137 0.4870 +5980 23586 0.4320 +5980 23649 0.9850 +5980 25788 0.5560 +5980 26190 0.5290 +5980 27297 0.9010 +5980 27343 0.8850 +5980 27434 0.8150 +5980 29089 0.4970 +5980 50485 0.4400 +5980 51426 0.9100 +5980 51455 0.9990 +5980 51659 0.4600 +5980 51750 0.4470 +5980 54107 0.9740 +5980 54108 0.9050 +5980 54537 0.7200 +5980 54617 0.4180 +5980 54821 0.4370 +5980 54841 0.5190 +5980 54921 0.4750 +5980 54962 0.5230 +5980 55120 0.4890 +5980 55215 0.6140 +5980 55247 0.4260 +5980 55388 0.5270 +5980 56655 0.9590 +5980 56852 0.9170 +5980 56897 0.4170 +5980 57082 0.4040 +5980 57501 0.4130 +5980 57697 0.9870 +5980 57804 0.7420 +5980 63922 0.6870 +5980 63967 0.4680 +5980 64135 0.4320 +5980 64210 0.4780 +5980 64421 0.4120 +5980 64785 0.6300 +5980 64858 0.5970 +5980 79075 0.5830 +5980 79132 0.4320 +5980 79677 0.4550 +5980 79915 0.6000 +5980 80010 0.4880 +5980 80119 0.5340 +5980 80198 0.7380 +5980 80821 0.4390 +5980 81620 0.4130 +5980 83932 0.5500 +5980 83990 0.5730 +5980 84083 0.4350 +5980 84296 0.6670 +5980 84464 0.5000 +5980 84515 0.5480 +5980 84893 0.5790 +5980 91442 0.6480 +5980 113510 0.5320 +5980 114799 0.4500 +5980 146956 0.4740 +5980 148581 0.4120 +5980 149840 0.6400 +5980 157570 0.4090 +5980 201973 0.6910 +5980 246243 0.4240 +5980 254394 0.7230 +5980 257218 0.7320 +5980 286205 0.4280 +5980 348180 0.5760 +5980 348654 0.5470 +5980 353497 0.6910 +5980 375748 0.4330 +5980 378949 0.4790 +5980 387521 0.5640 +5980 387522 0.5640 +5980 548593 0.5910 +5980 100533467 0.6240 +5981 5982 0.9990 +5981 5983 0.9990 +5981 5984 0.9990 +5981 5985 0.9990 +5981 6117 0.8740 +5981 6118 0.6800 +5981 6119 0.6250 +5981 6233 0.5170 +5981 6240 0.5090 +5981 6749 0.4380 +5981 7013 0.5090 +5981 7014 0.5090 +5981 7150 0.4580 +5981 7156 0.5630 +5981 7311 0.5040 +5981 7314 0.5270 +5981 7316 0.5690 +5981 7318 0.5170 +5981 7320 0.5430 +5981 7353 0.5200 +5981 7398 0.5910 +5981 7415 0.5430 +5981 7486 0.7260 +5981 7515 0.5650 +5981 7516 0.4270 +5981 7517 0.6260 +5981 7520 0.7270 +5981 7706 0.5130 +5981 7979 0.4040 +5981 8208 0.4150 +5981 8243 0.7460 +5981 8318 0.7180 +5981 8350 0.4840 +5981 8361 0.5400 +5981 8450 0.5450 +5981 8451 0.5420 +5981 8836 0.4130 +5981 8914 0.4620 +5981 9100 0.5160 +5981 9126 0.5910 +5981 9156 0.7340 +5981 9246 0.5340 +5981 9400 0.4810 +5981 9401 0.6840 +5981 9636 0.5160 +5981 9735 0.4010 +5981 9768 0.5190 +5981 9978 0.5200 +5981 10036 0.4090 +5981 10051 0.7700 +5981 10111 0.8150 +5981 10293 0.4160 +5981 10459 0.5660 +5981 10524 0.4710 +5981 10592 0.7920 +5981 10635 0.4430 +5981 10714 0.6570 +5981 11019 0.4470 +5981 11073 0.5420 +5981 11169 0.6730 +5981 11198 0.4580 +5981 11200 0.4760 +5981 11201 0.5770 +5981 22909 0.4950 +5981 23244 0.7130 +5981 23476 0.7680 +5981 23649 0.8500 +5981 25898 0.5090 +5981 25913 0.5090 +5981 26277 0.5060 +5981 29117 0.4300 +5981 51088 0.4590 +5981 51426 0.5730 +5981 51455 0.5880 +5981 51490 0.4510 +5981 51514 0.7520 +5981 51659 0.4670 +5981 54107 0.6880 +5981 54386 0.5300 +5981 54443 0.4300 +5981 54921 0.6200 +5981 54962 0.4690 +5981 55183 0.4680 +5981 55388 0.5030 +5981 55536 0.4520 +5981 55666 0.5040 +5981 56655 0.6400 +5981 56852 0.6400 +5981 57599 0.5650 +5981 57697 0.6780 +5981 57728 0.4580 +5981 57804 0.5520 +5981 63922 0.8510 +5981 79075 0.6950 +5981 79677 0.4750 +5981 79728 0.4560 +5981 79915 0.9450 +5981 79968 0.5800 +5981 79991 0.6340 +5981 80008 0.5760 +5981 80010 0.4600 +5981 80169 0.5250 +5981 80198 0.4870 +5981 80345 0.4510 +5981 81620 0.4940 +5981 83932 0.7860 +5981 83990 0.5570 +5981 84250 0.4710 +5981 84893 0.5580 +5981 114799 0.4770 +5981 116028 0.4790 +5981 124739 0.5130 +5981 144715 0.4400 +5981 157570 0.4740 +5981 201895 0.4980 +5981 254394 0.4910 +5981 254528 0.4450 +5981 100134934 0.4990 +5982 5983 0.9990 +5982 5984 0.9990 +5982 5985 0.9990 +5982 6046 0.4300 +5982 6117 0.8960 +5982 6118 0.8880 +5982 6119 0.8590 +5982 6233 0.5180 +5982 6240 0.6020 +5982 6241 0.4500 +5982 6596 0.4180 +5982 6613 0.4110 +5982 6742 0.5820 +5982 6749 0.4710 +5982 6950 0.4150 +5982 7013 0.5320 +5982 7014 0.6960 +5982 7083 0.4590 +5982 7153 0.5050 +5982 7156 0.6840 +5982 7157 0.5340 +5982 7158 0.5690 +5982 7298 0.4940 +5982 7311 0.4990 +5982 7314 0.5180 +5982 7316 0.5210 +5982 7318 0.5150 +5982 7320 0.8030 +5982 7353 0.5610 +5982 7398 0.6930 +5982 7415 0.5670 +5982 7458 0.6900 +5982 7461 0.7330 +5982 7486 0.8280 +5982 7515 0.6020 +5982 7516 0.5600 +5982 7517 0.6090 +5982 7520 0.6890 +5982 7706 0.5130 +5982 7884 0.5200 +5982 7979 0.5380 +5982 8019 0.6190 +5982 8208 0.5020 +5982 8243 0.6610 +5982 8317 0.5230 +5982 8318 0.8090 +5982 8326 0.5000 +5982 8361 0.6130 +5982 8438 0.4050 +5982 8450 0.5390 +5982 8451 0.5440 +5982 8468 0.5570 +5982 8636 0.4640 +5982 8914 0.5430 +5982 9031 0.5420 +5982 9100 0.5750 +5982 9126 0.7860 +5982 9156 0.8930 +5982 9184 0.4200 +5982 9246 0.5300 +5982 9275 0.4670 +5982 9343 0.6180 +5982 9401 0.5340 +5982 9493 0.4180 +5982 9557 0.4690 +5982 9569 0.6910 +5982 9636 0.5290 +5982 9656 0.6680 +5982 9768 0.5760 +5982 9837 0.5370 +5982 9883 0.5540 +5982 9918 0.5120 +5982 9978 0.5860 +5982 10051 0.5780 +5982 10111 0.5960 +5982 10459 0.6080 +5982 10524 0.5600 +5982 10535 0.7340 +5982 10592 0.4950 +5982 10635 0.6380 +5982 10714 0.7780 +5982 10797 0.4210 +5982 10926 0.4330 +5982 11073 0.8890 +5982 11169 0.6620 +5982 11200 0.7560 +5982 11201 0.5790 +5982 22948 0.4540 +5982 22976 0.4300 +5982 23063 0.6610 +5982 23244 0.6450 +5982 23382 0.4020 +5982 23476 0.7480 +5982 23595 0.4340 +5982 23649 0.9120 +5982 25898 0.5170 +5982 25913 0.5540 +5982 26259 0.4350 +5982 26277 0.5030 +5982 26608 0.6590 +5982 27030 0.4780 +5982 29028 0.4010 +5982 29935 0.6200 +5982 29960 0.4790 +5982 51053 0.4700 +5982 51085 0.4010 +5982 51426 0.5740 +5982 51455 0.6100 +5982 51514 0.6770 +5982 51659 0.6210 +5982 54107 0.7180 +5982 54386 0.5080 +5982 54892 0.4250 +5982 54921 0.9990 +5982 54962 0.6640 +5982 55148 0.4240 +5982 55388 0.5880 +5982 55536 0.7030 +5982 55666 0.5820 +5982 55695 0.4790 +5982 55723 0.4440 +5982 56655 0.6940 +5982 56852 0.7790 +5982 56916 0.4480 +5982 57599 0.6700 +5982 57697 0.4340 +5982 57804 0.5470 +5982 60681 0.5400 +5982 63922 0.9990 +5982 63967 0.5740 +5982 64785 0.6060 +5982 79075 0.9990 +5982 79648 0.4790 +5982 79728 0.5770 +5982 79892 0.4230 +5982 79915 0.9990 +5982 79968 0.4780 +5982 79991 0.7300 +5982 80010 0.5890 +5982 80169 0.5640 +5982 80198 0.4830 +5982 81620 0.6390 +5982 83540 0.4060 +5982 83695 0.6330 +5982 83879 0.4040 +5982 83932 0.6850 +5982 83990 0.6530 +5982 84126 0.8390 +5982 84296 0.6010 +5982 84515 0.4670 +5982 84955 0.6290 +5982 91664 0.4420 +5982 114799 0.8360 +5982 116028 0.5960 +5982 124739 0.5080 +5982 129607 0.5710 +5982 135458 0.5290 +5982 135892 0.4890 +5982 144715 0.8470 +5982 157570 0.7240 +5982 163786 0.4050 +5982 254394 0.7080 +5982 283431 0.4380 +5982 348995 0.5050 +5982 100134934 0.4990 +5983 5984 0.9990 +5983 5985 0.9990 +5983 6046 0.4370 +5983 6117 0.7490 +5983 6118 0.7720 +5983 6119 0.8050 +5983 6233 0.5330 +5983 6240 0.7510 +5983 6241 0.7190 +5983 6502 0.5150 +5983 6742 0.4140 +5983 6790 0.5470 +5983 7013 0.5250 +5983 7014 0.5360 +5983 7083 0.4670 +5983 7112 0.4490 +5983 7153 0.7570 +5983 7155 0.4250 +5983 7156 0.6660 +5983 7157 0.6080 +5983 7158 0.4920 +5983 7272 0.6180 +5983 7298 0.7550 +5983 7311 0.4990 +5983 7314 0.5200 +5983 7316 0.5230 +5983 7318 0.5370 +5983 7320 0.5360 +5983 7353 0.5480 +5983 7398 0.6400 +5983 7415 0.5770 +5983 7486 0.7100 +5983 7515 0.5860 +5983 7516 0.5920 +5983 7517 0.6470 +5983 7520 0.4100 +5983 7706 0.5120 +5983 7862 0.4710 +5983 7884 0.4130 +5983 7979 0.5210 +5983 8317 0.6950 +5983 8318 0.8200 +5983 8361 0.5830 +5983 8438 0.4370 +5983 8450 0.5490 +5983 8451 0.5640 +5983 8565 0.4040 +5983 8900 0.4130 +5983 8914 0.6000 +5983 9055 0.4740 +5983 9100 0.5340 +5983 9126 0.8440 +5983 9133 0.5950 +5983 9134 0.4440 +5983 9156 0.9080 +5983 9184 0.4350 +5983 9212 0.5450 +5983 9232 0.4040 +5983 9246 0.5320 +5983 9319 0.5480 +5983 9401 0.5420 +5983 9493 0.5730 +5983 9631 0.4220 +5983 9636 0.5470 +5983 9656 0.4240 +5983 9768 0.5930 +5983 9787 0.5180 +5983 9833 0.5300 +5983 9837 0.7830 +5983 9883 0.6940 +5983 9918 0.5940 +5983 9928 0.5120 +5983 9978 0.5900 +5983 10036 0.4120 +5983 10038 0.5320 +5983 10051 0.6970 +5983 10111 0.5830 +5983 10112 0.4260 +5983 10293 0.4380 +5983 10403 0.4920 +5983 10459 0.5990 +5983 10524 0.5270 +5983 10535 0.7480 +5983 10592 0.6160 +5983 10635 0.7260 +5983 10714 0.7890 +5983 10733 0.5420 +5983 11004 0.5360 +5983 11051 0.4090 +5983 11065 0.5130 +5983 11073 0.7850 +5983 11130 0.5360 +5983 11169 0.7420 +5983 11200 0.5560 +5983 11201 0.5800 +5983 11339 0.4390 +5983 11340 0.4090 +5983 22974 0.5770 +5983 23063 0.7830 +5983 23244 0.7270 +5983 23397 0.5810 +5983 23476 0.7830 +5983 23594 0.4510 +5983 23595 0.4430 +5983 23649 0.9230 +5983 24137 0.4160 +5983 25788 0.4240 +5983 25842 0.4240 +5983 25898 0.5260 +5983 25913 0.6050 +5983 25998 0.4290 +5983 26259 0.4280 +5983 26271 0.5170 +5983 26277 0.5410 +5983 27030 0.5020 +5983 28232 0.4050 +5983 29028 0.5330 +5983 29089 0.4160 +5983 29127 0.5060 +5983 29935 0.5530 +5983 29980 0.5000 +5983 50484 0.5510 +5983 51053 0.5940 +5983 51203 0.4860 +5983 51426 0.5730 +5983 51455 0.7500 +5983 51514 0.7780 +5983 51659 0.6030 +5983 54107 0.7380 +5983 54386 0.5920 +5983 54443 0.4150 +5983 54552 0.4120 +5983 54821 0.4820 +5983 54892 0.4270 +5983 54921 0.9970 +5983 54962 0.7630 +5983 55010 0.4050 +5983 55055 0.4430 +5983 55165 0.4160 +5983 55215 0.4470 +5983 55388 0.8260 +5983 55536 0.5830 +5983 55666 0.5020 +5983 55723 0.5230 +5983 56655 0.7000 +5983 56852 0.7610 +5983 57480 0.4090 +5983 57599 0.6060 +5983 57697 0.4680 +5983 57804 0.5090 +5983 63922 0.9990 +5983 63967 0.4350 +5983 64151 0.6170 +5983 64785 0.6100 +5983 79023 0.4630 +5983 79075 0.9990 +5983 79621 0.6910 +5983 79728 0.5370 +5983 79739 0.4080 +5983 79892 0.5370 +5983 79915 0.9850 +5983 79991 0.6970 +5983 80010 0.6110 +5983 80169 0.5130 +5983 80198 0.5590 +5983 81620 0.7300 +5983 83461 0.4430 +5983 83540 0.6550 +5983 83695 0.5980 +5983 83932 0.7140 +5983 83990 0.6450 +5983 84126 0.5980 +5983 84296 0.6880 +5983 84515 0.6100 +5983 113130 0.4280 +5983 114799 0.8320 +5983 116028 0.6620 +5983 116211 0.4730 +5983 124739 0.5050 +5983 124817 0.4170 +5983 129607 0.5710 +5983 135458 0.6310 +5983 144715 0.7900 +5983 157570 0.8400 +5983 157777 0.4730 +5983 163786 0.4260 +5983 221150 0.4530 +5983 246243 0.4450 +5983 254394 0.7840 +5983 284439 0.7380 +5983 286826 0.4430 +5983 348995 0.5190 +5983 387103 0.7060 +5983 402569 0.4160 +5983 100134934 0.4990 +5984 5985 0.9990 +5984 6046 0.4300 +5984 6117 0.8520 +5984 6118 0.7880 +5984 6119 0.9120 +5984 6233 0.5310 +5984 6240 0.6950 +5984 6241 0.7680 +5984 6596 0.5210 +5984 6613 0.4680 +5984 6624 0.5140 +5984 6635 0.5150 +5984 6742 0.4870 +5984 6749 0.4140 +5984 6790 0.6720 +5984 6873 0.4330 +5984 6876 0.4040 +5984 7013 0.5250 +5984 7014 0.6930 +5984 7083 0.6140 +5984 7153 0.8290 +5984 7155 0.4050 +5984 7156 0.6740 +5984 7157 0.6460 +5984 7158 0.4900 +5984 7272 0.5710 +5984 7298 0.8570 +5984 7311 0.4990 +5984 7314 0.5180 +5984 7316 0.5180 +5984 7318 0.5150 +5984 7320 0.5360 +5984 7353 0.6190 +5984 7398 0.7020 +5984 7415 0.5320 +5984 7443 0.4490 +5984 7486 0.8140 +5984 7515 0.6030 +5984 7516 0.5880 +5984 7517 0.5600 +5984 7520 0.4710 +5984 7706 0.5080 +5984 7884 0.5390 +5984 7979 0.5300 +5984 8019 0.6140 +5984 8208 0.4730 +5984 8243 0.6470 +5984 8317 0.7400 +5984 8318 0.8860 +5984 8361 0.6010 +5984 8438 0.5380 +5984 8450 0.5090 +5984 8451 0.5140 +5984 8833 0.5480 +5984 8914 0.6170 +5984 9055 0.4680 +5984 9100 0.5340 +5984 9126 0.7860 +5984 9133 0.7850 +5984 9134 0.4480 +5984 9156 0.9550 +5984 9184 0.4100 +5984 9212 0.7150 +5984 9232 0.6280 +5984 9246 0.5290 +5984 9319 0.5900 +5984 9401 0.6290 +5984 9493 0.6570 +5984 9631 0.4240 +5984 9636 0.5410 +5984 9656 0.6570 +5984 9735 0.6840 +5984 9768 0.7520 +5984 9787 0.5420 +5984 9833 0.6490 +5984 9837 0.8680 +5984 9883 0.5400 +5984 9918 0.5920 +5984 9978 0.6000 +5984 10036 0.5220 +5984 10038 0.5070 +5984 10051 0.7100 +5984 10111 0.5680 +5984 10112 0.7360 +5984 10193 0.6270 +5984 10293 0.4010 +5984 10403 0.7870 +5984 10459 0.5910 +5984 10524 0.5080 +5984 10528 0.6030 +5984 10535 0.7280 +5984 10574 0.4800 +5984 10592 0.6750 +5984 10606 0.5540 +5984 10615 0.4920 +5984 10635 0.7970 +5984 10714 0.8000 +5984 10721 0.4570 +5984 10733 0.4700 +5984 10926 0.4550 +5984 11004 0.7330 +5984 11065 0.5930 +5984 11073 0.8600 +5984 11130 0.7580 +5984 11169 0.7380 +5984 11200 0.7170 +5984 11201 0.5990 +5984 11339 0.4540 +5984 11340 0.4520 +5984 22948 0.5370 +5984 22974 0.5130 +5984 22976 0.4180 +5984 23063 0.6170 +5984 23234 0.4430 +5984 23244 0.6150 +5984 23310 0.4140 +5984 23397 0.5870 +5984 23476 0.7920 +5984 23594 0.6390 +5984 23595 0.4350 +5984 23649 0.8990 +5984 24137 0.4810 +5984 25788 0.4560 +5984 25898 0.5110 +5984 25913 0.5570 +5984 25998 0.4290 +5984 26271 0.4450 +5984 26277 0.5030 +5984 27030 0.4650 +5984 29028 0.5190 +5984 29089 0.8490 +5984 29127 0.6110 +5984 29893 0.4030 +5984 29935 0.5190 +5984 29980 0.6380 +5984 50484 0.4760 +5984 51053 0.6950 +5984 51203 0.5820 +5984 51426 0.5830 +5984 51455 0.5970 +5984 51514 0.7630 +5984 51659 0.7380 +5984 51720 0.4100 +5984 54107 0.7180 +5984 54386 0.5580 +5984 54443 0.5580 +5984 54892 0.6020 +5984 54921 0.9970 +5984 54962 0.7660 +5984 55055 0.4900 +5984 55120 0.4410 +5984 55143 0.4790 +5984 55165 0.4670 +5984 55215 0.5600 +5984 55388 0.6340 +5984 55536 0.6490 +5984 55635 0.4630 +5984 55666 0.6650 +5984 55723 0.4220 +5984 55839 0.4340 +5984 56655 0.6350 +5984 56852 0.7210 +5984 56942 0.4520 +5984 56992 0.5430 +5984 57122 0.4640 +5984 57405 0.4050 +5984 57599 0.6790 +5984 57697 0.4120 +5984 57804 0.5840 +5984 63922 0.9990 +5984 64105 0.5610 +5984 64151 0.6740 +5984 64785 0.5070 +5984 79019 0.4090 +5984 79023 0.6010 +5984 79075 0.9980 +5984 79621 0.4590 +5984 79682 0.4480 +5984 79728 0.5640 +5984 79801 0.4040 +5984 79892 0.4070 +5984 79902 0.4020 +5984 79915 0.9990 +5984 79991 0.6800 +5984 80010 0.6440 +5984 80169 0.5270 +5984 81620 0.7060 +5984 83540 0.8090 +5984 83695 0.5220 +5984 83879 0.4180 +5984 83932 0.6850 +5984 83990 0.6640 +5984 84057 0.5140 +5984 84126 0.6220 +5984 84250 0.4810 +5984 84296 0.6470 +5984 84319 0.4060 +5984 84461 0.4130 +5984 84515 0.6200 +5984 113130 0.5240 +5984 114799 0.7270 +5984 115106 0.7840 +5984 116028 0.7430 +5984 116211 0.4380 +5984 124739 0.5130 +5984 129607 0.5710 +5984 135458 0.6940 +5984 144715 0.8160 +5984 146956 0.4340 +5984 157570 0.7520 +5984 157777 0.4340 +5984 254394 0.7760 +5984 254528 0.4160 +5984 259266 0.5070 +5984 348995 0.8660 +5984 387103 0.4650 +5984 100134934 0.4990 +5985 6117 0.8990 +5985 6118 0.8010 +5985 6119 0.8660 +5985 6233 0.5190 +5985 6240 0.6500 +5985 6241 0.4510 +5985 6613 0.4260 +5985 6742 0.4370 +5985 6749 0.4350 +5985 7013 0.5460 +5985 7014 0.5200 +5985 7083 0.5250 +5985 7153 0.5000 +5985 7156 0.6710 +5985 7157 0.4970 +5985 7158 0.5100 +5985 7298 0.5520 +5985 7311 0.5000 +5985 7314 0.5180 +5985 7316 0.5210 +5985 7318 0.5380 +5985 7320 0.5470 +5985 7353 0.5560 +5985 7398 0.6940 +5985 7415 0.5850 +5985 7486 0.6910 +5985 7515 0.5650 +5985 7516 0.5520 +5985 7517 0.5740 +5985 7520 0.4320 +5985 7706 0.5090 +5985 7979 0.5120 +5985 8208 0.4690 +5985 8317 0.4300 +5985 8318 0.7280 +5985 8361 0.5820 +5985 8438 0.4820 +5985 8450 0.5420 +5985 8451 0.5530 +5985 8914 0.6160 +5985 9055 0.5030 +5985 9100 0.5560 +5985 9126 0.8390 +5985 9156 0.8250 +5985 9184 0.4170 +5985 9246 0.5240 +5985 9401 0.5760 +5985 9493 0.5070 +5985 9631 0.4800 +5985 9636 0.5350 +5985 9656 0.4620 +5985 9768 0.6480 +5985 9837 0.6120 +5985 9883 0.6890 +5985 9918 0.4930 +5985 9978 0.5830 +5985 10051 0.5980 +5985 10111 0.5960 +5985 10293 0.4200 +5985 10388 0.4470 +5985 10459 0.5900 +5985 10475 0.4290 +5985 10524 0.5000 +5985 10528 0.4090 +5985 10535 0.6540 +5985 10592 0.6420 +5985 10635 0.6460 +5985 10714 0.8180 +5985 10856 0.4090 +5985 10926 0.4300 +5985 11073 0.8090 +5985 11130 0.5680 +5985 11169 0.6950 +5985 11200 0.5330 +5985 11201 0.5770 +5985 11202 0.4170 +5985 22976 0.4120 +5985 23063 0.7990 +5985 23076 0.4330 +5985 23244 0.7680 +5985 23397 0.4680 +5985 23476 0.7180 +5985 23594 0.4240 +5985 23595 0.5680 +5985 23649 0.9160 +5985 25788 0.4040 +5985 25898 0.5160 +5985 25913 0.5900 +5985 26271 0.4510 +5985 26277 0.5040 +5985 27030 0.4980 +5985 29935 0.4370 +5985 51053 0.4900 +5985 51426 0.5820 +5985 51455 0.6110 +5985 51514 0.6710 +5985 51659 0.6930 +5985 54107 0.7510 +5985 54386 0.5110 +5985 54443 0.4290 +5985 54892 0.5010 +5985 54921 0.9990 +5985 54962 0.5610 +5985 55055 0.4830 +5985 55157 0.4300 +5985 55215 0.5290 +5985 55236 0.4160 +5985 55388 0.6030 +5985 55536 0.5260 +5985 55666 0.5640 +5985 56655 0.6740 +5985 56852 0.7280 +5985 57122 0.4130 +5985 57599 0.6560 +5985 57697 0.4190 +5985 57804 0.5090 +5985 63922 0.9990 +5985 64151 0.4300 +5985 64785 0.6100 +5985 79023 0.4320 +5985 79075 0.9990 +5985 79728 0.5520 +5985 79902 0.5150 +5985 79915 0.9970 +5985 79980 0.4050 +5985 79991 0.6240 +5985 80010 0.6710 +5985 80169 0.5140 +5985 80219 0.4140 +5985 81620 0.5850 +5985 83540 0.4150 +5985 83695 0.6020 +5985 83932 0.7280 +5985 83990 0.6580 +5985 84126 0.6120 +5985 84296 0.5930 +5985 84515 0.4740 +5985 85461 0.4140 +5985 114799 0.8220 +5985 116028 0.6180 +5985 124739 0.5160 +5985 129607 0.5710 +5985 135458 0.4210 +5985 144715 0.7720 +5985 148304 0.4630 +5985 148811 0.4100 +5985 157570 0.8240 +5985 254394 0.6930 +5985 100134934 0.4990 +5986 6442 0.4330 +5986 10683 0.5810 +5986 23509 0.6420 +5986 28514 0.4500 +5986 51593 0.4610 +5986 56983 0.4610 +5986 64118 0.4350 +5986 84002 0.4690 +5986 115353 0.4780 +5986 136647 0.4230 +5986 100288842 0.5060 +5987 6233 0.5980 +5987 6310 0.4300 +5987 6614 0.8070 +5987 6885 0.4030 +5987 7157 0.4570 +5987 7305 0.4230 +5987 7311 0.5000 +5987 7314 0.5900 +5987 7316 0.5860 +5987 7321 0.8310 +5987 7322 0.6210 +5987 7323 0.5430 +5987 7324 0.4800 +5987 7329 0.8030 +5987 7334 0.4480 +5987 7341 0.5290 +5987 7343 0.5650 +5987 7874 0.9700 +5987 8424 0.8570 +5987 8737 0.4370 +5987 8805 0.7280 +5987 8940 0.5490 +5987 9081 0.6850 +5987 9099 0.4340 +5987 9412 0.4800 +5987 9641 0.8120 +5987 9821 0.4220 +5987 9858 0.5210 +5987 9866 0.4590 +5987 10013 0.4940 +5987 10155 0.7810 +5987 10193 0.4350 +5987 10401 0.6330 +5987 10445 0.7210 +5987 11043 0.6020 +5987 11118 0.6660 +5987 22954 0.5320 +5987 23118 0.5160 +5987 23650 0.5360 +5987 23741 0.4250 +5987 25988 0.4260 +5987 26121 0.5780 +5987 29110 0.8610 +5987 29775 0.4040 +5987 50852 0.8410 +5987 51079 0.4300 +5987 51428 0.4110 +5987 51588 0.4180 +5987 51592 0.4350 +5987 51619 0.4220 +5987 54551 0.9790 +5987 54765 0.4880 +5987 54820 0.4560 +5987 55695 0.4510 +5987 55765 0.5590 +5987 56919 0.4090 +5987 63893 0.6000 +5987 64110 0.5200 +5987 64127 0.5630 +5987 81565 0.4670 +5987 81603 0.4220 +5987 81609 0.4630 +5987 81844 0.4690 +5987 84708 0.5150 +5987 114088 0.4810 +5987 138151 0.4230 +5987 221823 0.4240 +5987 222389 0.4200 +5987 257397 0.5760 +5987 283518 0.5240 +5987 285268 0.4420 +5987 287015 0.5510 +5987 442862 0.6960 +5988 10633 0.4520 +5988 10738 0.6230 +5988 65121 0.6450 +5988 65122 0.5990 +5988 80759 0.4470 +5988 124989 0.4980 +5988 125997 0.5190 +5988 148109 0.4750 +5988 201516 0.4980 +5988 343070 0.4930 +5988 390883 0.4180 +5988 390999 0.6660 +5988 400736 0.6190 +5988 401089 0.5820 +5988 440560 0.5410 +5988 441873 0.5160 +5988 653619 0.4770 +5988 100129128 0.4560 +5989 5991 0.6890 +5989 5993 0.5920 +5989 5994 0.9610 +5989 6156 0.7990 +5989 6657 0.4570 +5989 6839 0.8320 +5989 7391 0.5510 +5989 7528 0.4130 +5989 8100 0.7520 +5989 8625 0.9540 +5989 8812 0.4110 +5989 8930 0.4290 +5989 9759 0.4800 +5989 10664 0.4870 +5989 11200 0.5980 +5989 22926 0.4030 +5989 26160 0.4230 +5989 26224 0.4590 +5989 27022 0.4160 +5989 27241 0.4030 +5989 29128 0.4300 +5989 30817 0.5140 +5989 51523 0.4100 +5989 55193 0.4730 +5989 55212 0.5290 +5989 55810 0.5960 +5989 79140 0.5060 +5989 79738 0.4540 +5989 84166 0.6100 +5989 84678 0.4240 +5989 129880 0.5700 +5989 166379 0.4380 +5989 345643 0.5520 +5989 647309 0.4160 +5990 5991 0.6340 +5990 5992 0.4780 +5990 5994 0.6770 +5990 6156 0.7780 +5990 7158 0.4560 +5990 7840 0.4510 +5990 8100 0.8230 +5990 8625 0.6630 +5990 8812 0.5770 +5990 9576 0.4560 +5990 10309 0.4630 +5990 10664 0.4600 +5990 11200 0.5380 +5990 26039 0.6110 +5990 26160 0.4190 +5990 26224 0.6780 +5990 50674 0.4450 +5990 51364 0.4030 +5990 55036 0.4040 +5990 55081 0.4470 +5990 83538 0.5890 +5990 85478 0.4930 +5990 113878 0.5840 +5990 159989 0.4750 +5990 161582 0.4130 +5990 222546 0.5990 +5990 283638 0.4270 +5990 345643 0.6990 +5990 647309 0.6430 +5991 5992 0.4830 +5991 6156 0.8480 +5991 6657 0.4200 +5991 7802 0.4030 +5991 8100 0.5750 +5991 8812 0.6670 +5991 9576 0.4310 +5991 10664 0.7070 +5991 11200 0.5380 +5991 23316 0.4090 +5991 26039 0.6900 +5991 26160 0.4110 +5991 50488 0.4140 +5991 50674 0.6660 +5991 51626 0.5180 +5991 54828 0.4180 +5991 113878 0.7330 +5991 140886 0.4950 +5991 169792 0.4170 +5991 344018 0.4420 +5991 345643 0.6090 +5991 647309 0.4610 +5992 8100 0.4620 +5992 8812 0.5340 +5992 11200 0.5080 +5992 26039 0.5880 +5992 26160 0.4510 +5992 50674 0.4680 +5992 63876 0.4120 +5992 113878 0.5520 +5992 126868 0.4330 +5992 647309 0.5200 +5993 5994 0.9990 +5993 6156 0.5570 +5993 6239 0.4010 +5993 6720 0.4760 +5993 6872 0.5380 +5993 6892 0.4390 +5993 7391 0.7520 +5993 7392 0.6730 +5993 7702 0.4480 +5993 7936 0.4850 +5993 7975 0.4160 +5993 8350 0.4430 +5993 8625 0.9990 +5993 9439 0.4100 +5993 10664 0.4440 +5993 10765 0.4170 +5993 11200 0.5150 +5993 11335 0.6150 +5993 23283 0.5890 +5993 23309 0.6870 +5993 51752 0.4490 +5993 57763 0.8430 +5993 79780 0.4350 +5993 79894 0.4570 +5993 84166 0.5480 +5993 731220 0.5570 +5994 6892 0.5970 +5994 7391 0.4070 +5994 8625 0.9990 +5994 9682 0.4050 +5994 28955 0.4980 +5994 51752 0.4170 +5994 57763 0.5870 +5994 84166 0.7270 +5994 124274 0.4050 +5994 388564 0.5140 +5994 647286 0.4640 +5995 6010 0.6800 +5995 6017 0.7140 +5995 6121 0.6910 +5995 6345 0.4400 +5995 6652 0.5070 +5995 7181 0.4230 +5995 7287 0.4560 +5995 9227 0.5940 +5995 10002 0.4200 +5995 10681 0.5810 +5995 10692 0.6820 +5995 23596 0.6520 +5995 26103 0.5390 +5995 50700 0.4990 +5995 51109 0.4660 +5995 51764 0.5540 +5995 53630 0.4160 +5995 54331 0.5590 +5995 55970 0.5760 +5995 57665 0.4030 +5995 59345 0.5470 +5995 92211 0.4540 +5995 94235 0.5640 +5995 121214 0.5330 +5995 145226 0.5130 +5995 157506 0.9720 +5995 221391 0.6460 +5995 266747 0.4460 +5995 340745 0.4030 +5995 375298 0.5740 +5996 5997 0.6700 +5996 5998 0.6430 +5996 5999 0.5990 +5996 6000 0.5680 +5996 6001 0.6160 +5996 6002 0.5930 +5996 6003 0.5630 +5996 6004 0.6770 +5996 6288 0.5080 +5996 6295 0.4180 +5996 6348 0.5610 +5996 6351 0.4730 +5996 6368 0.5430 +5996 7037 0.4620 +5996 7099 0.5290 +5996 7124 0.4060 +5996 7128 0.5630 +5996 7538 0.4820 +5996 7852 0.6120 +5996 8202 0.4590 +5996 8477 0.4500 +5996 8490 0.5760 +5996 8601 0.6060 +5996 8786 0.5500 +5996 8787 0.5340 +5996 8801 0.8220 +5996 8802 0.6100 +5996 8807 0.4110 +5996 8809 0.5600 +5996 9138 0.7270 +5996 9145 0.4160 +5996 9170 0.5260 +5996 9308 0.4240 +5996 9355 0.4290 +5996 9628 0.5690 +5996 9630 0.6200 +5996 9826 0.7270 +5996 10019 0.6040 +5996 10287 0.6250 +5996 10316 0.5050 +5996 10398 0.4020 +5996 10636 0.6190 +5996 10672 0.8580 +5996 10681 0.9490 +5996 10874 0.4990 +5996 11216 0.5980 +5996 23161 0.4740 +5996 23365 0.5430 +5996 23557 0.4160 +5996 23566 0.5080 +5996 26499 0.4710 +5996 26575 0.5730 +5996 29126 0.4180 +5996 29851 0.4150 +5996 51573 0.4330 +5996 51764 0.5240 +5996 51806 0.5750 +5996 54205 0.4080 +5996 54331 0.5560 +5996 55970 0.5350 +5996 56923 0.5050 +5996 57121 0.5810 +5996 57231 0.4060 +5996 59345 0.6690 +5996 60626 0.4960 +5996 64092 0.4010 +5996 64407 0.6710 +5996 80745 0.4540 +5996 83891 0.4330 +5996 84162 0.6260 +5996 84539 0.4990 +5996 84687 0.5990 +5996 85397 0.5740 +5996 91860 0.5760 +5996 94235 0.5200 +5996 115557 0.5840 +5996 116443 0.4100 +5996 117289 0.7990 +5996 129521 0.4990 +5996 132612 0.5360 +5996 163688 0.5760 +5996 346562 0.7780 +5996 353299 0.6750 +5996 388531 0.4460 +5996 401190 0.6800 +5996 431704 0.5270 +5997 5998 0.6120 +5997 5999 0.6070 +5997 6003 0.5940 +5997 6004 0.5960 +5997 6295 0.6520 +5997 7538 0.5340 +5997 8450 0.5660 +5997 8490 0.5660 +5997 8801 0.5250 +5997 8875 0.4800 +5997 8881 0.4310 +5997 9628 0.5250 +5997 9630 0.7570 +5997 9826 0.4360 +5997 10287 0.6330 +5997 10299 0.5380 +5997 10672 0.5550 +5997 10681 0.7850 +5997 10891 0.4530 +5997 11266 0.4330 +5997 22796 0.4300 +5997 26575 0.6330 +5997 51573 0.7710 +5997 51764 0.5180 +5997 51806 0.6030 +5997 54331 0.5870 +5997 55970 0.5480 +5997 57699 0.4330 +5997 59345 0.6610 +5997 64407 0.6330 +5997 64784 0.6080 +5997 83857 0.6730 +5997 84687 0.8820 +5997 91860 0.6050 +5997 93611 0.7030 +5997 94235 0.5180 +5997 115557 0.5870 +5997 120892 0.4750 +5997 163688 0.6040 +5997 200186 0.4320 +5997 221178 0.4720 +5997 346562 0.6180 +5997 353299 0.4080 +5997 401190 0.4200 +5997 431704 0.5810 +5998 5999 0.6590 +5998 6000 0.6600 +5998 6001 0.6280 +5998 6002 0.7060 +5998 6003 0.6110 +5998 6004 0.6150 +5998 6288 0.4990 +5998 6368 0.5030 +5998 6387 0.5220 +5998 7534 0.6640 +5998 8440 0.4350 +5998 8490 0.5850 +5998 8601 0.6550 +5998 8786 0.6550 +5998 8787 0.5650 +5998 9170 0.5050 +5998 9628 0.6650 +5998 9630 0.5870 +5998 9737 0.5380 +5998 10287 0.6400 +5998 10316 0.5160 +5998 10362 0.4080 +5998 10563 0.4040 +5998 10636 0.6650 +5998 10672 0.4540 +5998 10681 0.7620 +5998 10755 0.5320 +5998 10874 0.4990 +5998 11055 0.4090 +5998 22999 0.4320 +5998 23176 0.6000 +5998 23566 0.5080 +5998 26003 0.4160 +5998 26575 0.6350 +5998 51554 0.4120 +5998 51764 0.5200 +5998 54331 0.5250 +5998 55322 0.5390 +5998 55811 0.4210 +5998 55970 0.5260 +5998 56923 0.5150 +5998 57121 0.5200 +5998 59345 0.6740 +5998 60626 0.4210 +5998 64407 0.6440 +5998 84539 0.4990 +5998 85397 0.5980 +5998 94235 0.5180 +5998 113746 0.4180 +5998 129521 0.4990 +5998 346562 0.6850 +5998 431704 0.6030 +5999 6000 0.7180 +5999 6001 0.5690 +5999 6002 0.5690 +5999 6003 0.5810 +5999 6004 0.5730 +5999 6288 0.4990 +5999 6295 0.4710 +5999 6368 0.5090 +5999 6511 0.4650 +5999 6594 0.4260 +5999 6616 0.4070 +5999 6625 0.4110 +5999 6712 0.4140 +5999 6854 0.4720 +5999 7099 0.4370 +5999 8490 0.6210 +5999 8601 0.5910 +5999 8786 0.6250 +5999 8787 0.5840 +5999 8801 0.8250 +5999 8802 0.7390 +5999 8929 0.4380 +5999 9138 0.7510 +5999 9170 0.5490 +5999 9628 0.6450 +5999 9630 0.6560 +5999 9722 0.6490 +5999 9826 0.7440 +5999 10287 0.5610 +5999 10316 0.5030 +5999 10636 0.5930 +5999 10672 0.7680 +5999 10681 0.9490 +5999 10755 0.4280 +5999 10874 0.4990 +5999 11101 0.7700 +5999 11216 0.5840 +5999 23154 0.4890 +5999 23161 0.4830 +5999 23236 0.6640 +5999 23365 0.5690 +5999 23566 0.5880 +5999 26499 0.6010 +5999 26575 0.5770 +5999 27185 0.7140 +5999 29801 0.5380 +5999 51573 0.4380 +5999 51764 0.5390 +5999 51806 0.7630 +5999 54331 0.5590 +5999 55970 0.5590 +5999 56923 0.5100 +5999 57121 0.5100 +5999 59345 0.6390 +5999 60626 0.5160 +5999 64407 0.5650 +5999 84062 0.7440 +5999 84539 0.5170 +5999 84687 0.8740 +5999 85397 0.5660 +5999 91752 0.6040 +5999 91860 0.7630 +5999 94235 0.5580 +5999 115557 0.6420 +5999 116443 0.4680 +5999 129521 0.4990 +5999 154664 0.4050 +5999 160622 0.4420 +5999 160851 0.4280 +5999 163688 0.7630 +5999 267012 0.7320 +5999 319100 0.5540 +5999 346562 0.6760 +5999 353299 0.6890 +5999 388531 0.4890 +5999 401190 0.7690 +5999 431704 0.5660 +6000 6001 0.5940 +6000 6002 0.6180 +6000 6003 0.5450 +6000 6004 0.5870 +6000 6010 0.4590 +6000 6011 0.4450 +6000 6295 0.4900 +6000 6511 0.4460 +6000 6608 0.4040 +6000 6712 0.4660 +6000 6950 0.5270 +6000 7099 0.4350 +6000 7203 0.4990 +6000 8312 0.5230 +6000 8490 0.5400 +6000 8601 0.6180 +6000 8786 0.6490 +6000 8787 0.5950 +6000 8801 0.8910 +6000 8802 0.7970 +6000 9138 0.7690 +6000 9628 0.5310 +6000 9826 0.7560 +6000 9992 0.4020 +6000 10287 0.6040 +6000 10574 0.5070 +6000 10575 0.5160 +6000 10576 0.5070 +6000 10636 0.6610 +6000 10672 0.7580 +6000 10681 0.9990 +6000 10693 0.4990 +6000 10694 0.5060 +6000 11216 0.6650 +6000 22948 0.9970 +6000 23161 0.5430 +6000 23365 0.5920 +6000 23557 0.7040 +6000 26048 0.4290 +6000 26499 0.7130 +6000 26575 0.5990 +6000 51573 0.4590 +6000 51764 0.7190 +6000 54331 0.5540 +6000 55188 0.4670 +6000 55859 0.4320 +6000 55970 0.5570 +6000 56776 0.4490 +6000 57231 0.4570 +6000 57512 0.9890 +6000 59345 0.6750 +6000 60506 0.4680 +6000 60626 0.6480 +6000 64407 0.5610 +6000 85397 0.6220 +6000 94235 0.5180 +6000 115557 0.6500 +6000 116443 0.4160 +6000 128025 0.5300 +6000 131890 0.4130 +6000 161436 0.4060 +6000 345193 0.6050 +6000 346562 0.7110 +6000 353299 0.7440 +6000 388531 0.8740 +6000 401190 0.9900 +6000 431704 0.5400 +6000 440435 0.6760 +6001 6002 0.5590 +6001 6003 0.5780 +6001 6004 0.5440 +6001 6011 0.4260 +6001 6295 0.4480 +6001 6511 0.4390 +6001 6712 0.4430 +6001 7099 0.4820 +6001 7305 0.5030 +6001 8490 0.5240 +6001 8601 0.5380 +6001 8786 0.5720 +6001 8787 0.5630 +6001 8801 0.8470 +6001 8802 0.6030 +6001 9138 0.7760 +6001 9628 0.5940 +6001 9826 0.7780 +6001 10287 0.5750 +6001 10636 0.5690 +6001 10672 0.7570 +6001 10681 0.9470 +6001 11216 0.6680 +6001 23161 0.4730 +6001 23365 0.5830 +6001 23557 0.4240 +6001 26499 0.6810 +6001 26575 0.5540 +6001 51573 0.4410 +6001 51764 0.5180 +6001 51806 0.6300 +6001 54331 0.5690 +6001 55970 0.5490 +6001 57231 0.4600 +6001 59345 0.6190 +6001 60626 0.5720 +6001 64407 0.6040 +6001 83891 0.4030 +6001 84687 0.4070 +6001 85397 0.5450 +6001 91860 0.6240 +6001 94235 0.5310 +6001 115557 0.6430 +6001 116443 0.4170 +6001 163688 0.6240 +6001 346562 0.6580 +6001 353299 0.7590 +6001 388531 0.4890 +6001 401190 0.7270 +6001 431704 0.5760 +6002 6003 0.5800 +6002 6004 0.5270 +6002 6011 0.4010 +6002 6295 0.4540 +6002 6511 0.4290 +6002 6712 0.4710 +6002 7082 0.4930 +6002 7099 0.4460 +6002 8490 0.5110 +6002 8601 0.5320 +6002 8786 0.6140 +6002 8787 0.5850 +6002 8801 0.8630 +6002 8802 0.7200 +6002 9138 0.7880 +6002 9628 0.6230 +6002 9826 0.7760 +6002 10287 0.5400 +6002 10636 0.6030 +6002 10672 0.7690 +6002 10681 0.9450 +6002 11216 0.6800 +6002 23161 0.5000 +6002 23365 0.5950 +6002 23557 0.4190 +6002 26086 0.4580 +6002 26499 0.6540 +6002 26575 0.5340 +6002 29899 0.4200 +6002 51573 0.4450 +6002 51764 0.5390 +6002 54331 0.5450 +6002 55970 0.5600 +6002 57231 0.4560 +6002 59345 0.6250 +6002 60626 0.5780 +6002 64407 0.5480 +6002 85397 0.5280 +6002 94235 0.5180 +6002 114822 0.5770 +6002 115557 0.6470 +6002 116443 0.4270 +6002 126006 0.4810 +6002 160622 0.6860 +6002 346562 0.6590 +6002 353299 0.7580 +6002 388531 0.4590 +6002 401190 0.7210 +6002 431704 0.5700 +6003 6004 0.5900 +6003 6011 0.4250 +6003 6288 0.4990 +6003 6295 0.4480 +6003 6368 0.5110 +6003 6511 0.4360 +6003 6712 0.4310 +6003 7099 0.4510 +6003 8490 0.5550 +6003 8601 0.5600 +6003 8786 0.5410 +6003 8787 0.5340 +6003 8801 0.8520 +6003 8802 0.7160 +6003 9138 0.7850 +6003 9170 0.5250 +6003 9628 0.5520 +6003 9630 0.6360 +6003 9826 0.7740 +6003 10287 0.5770 +6003 10316 0.5050 +6003 10636 0.6060 +6003 10672 0.8790 +6003 10681 0.9510 +6003 10874 0.4990 +6003 11216 0.6590 +6003 23161 0.5340 +6003 23365 0.5920 +6003 23557 0.4400 +6003 23566 0.5080 +6003 26499 0.6580 +6003 26575 0.5730 +6003 51573 0.4440 +6003 51764 0.5980 +6003 54331 0.5340 +6003 55970 0.5430 +6003 56923 0.5050 +6003 57121 0.5350 +6003 57231 0.4590 +6003 57379 0.4070 +6003 59345 0.6600 +6003 60626 0.5550 +6003 64407 0.6060 +6003 83539 0.4870 +6003 83891 0.4480 +6003 84539 0.4990 +6003 85397 0.5600 +6003 94235 0.5570 +6003 115557 0.6410 +6003 129521 0.4990 +6003 346562 0.7070 +6003 353299 0.7780 +6003 388531 0.4950 +6003 401190 0.7210 +6003 431704 0.5540 +6004 6011 0.4020 +6004 6288 0.5010 +6004 6295 0.4150 +6004 6368 0.5130 +6004 6511 0.4380 +6004 6712 0.4440 +6004 6714 0.4890 +6004 6872 0.4070 +6004 7099 0.4450 +6004 7852 0.4090 +6004 8490 0.5260 +6004 8601 0.5360 +6004 8786 0.5500 +6004 8787 0.5340 +6004 8801 0.8410 +6004 8802 0.4820 +6004 9138 0.7650 +6004 9170 0.5140 +6004 9628 0.5800 +6004 9630 0.6250 +6004 9826 0.7640 +6004 10287 0.5640 +6004 10316 0.4990 +6004 10636 0.5540 +6004 10672 0.8400 +6004 10681 0.9440 +6004 10874 0.4990 +6004 11101 0.7520 +6004 11216 0.6420 +6004 23161 0.5170 +6004 23365 0.5780 +6004 23557 0.4080 +6004 23566 0.4990 +6004 26499 0.6420 +6004 26575 0.5420 +6004 51573 0.9290 +6004 51764 0.5550 +6004 54331 0.5370 +6004 55970 0.5320 +6004 56923 0.5090 +6004 57121 0.5150 +6004 57231 0.4440 +6004 59345 0.6130 +6004 60626 0.5340 +6004 64407 0.5480 +6004 83891 0.4670 +6004 84539 0.4990 +6004 84687 0.4650 +6004 85397 0.5290 +6004 94235 0.5200 +6004 115557 0.6380 +6004 129521 0.5320 +6004 346562 0.7390 +6004 353299 0.7920 +6004 388531 0.4660 +6004 401190 0.6800 +6004 431704 0.5630 +6005 6006 0.9920 +6005 6007 0.9860 +6005 6521 0.9340 +6005 6549 0.4140 +6005 6616 0.4590 +6005 6708 0.9090 +6005 6886 0.4320 +6005 7052 0.5320 +6005 7087 0.4520 +6005 7090 0.4790 +6005 7111 0.5530 +6005 7170 0.4100 +6005 7180 0.4090 +6005 7299 0.5340 +6005 10018 0.4300 +6005 10107 0.5960 +6005 10385 0.4070 +6005 10661 0.7630 +6005 11120 0.4040 +6005 29765 0.4570 +6005 51312 0.4780 +6005 51327 0.6120 +6005 55363 0.6190 +6005 80303 0.8000 +6005 84251 0.4980 +6005 114625 0.4760 +6005 196383 0.5640 +6005 222642 0.4650 +6005 317671 0.5070 +6006 6007 0.8390 +6006 6521 0.8800 +6006 6563 0.5280 +6006 23585 0.9480 +6006 55219 0.5450 +6006 57035 0.5340 +6006 84896 0.4740 +6006 114625 0.4400 +6007 6521 0.5150 +6007 6708 0.5450 +6007 9911 0.4180 +6007 10107 0.5040 +6007 10661 0.4860 +6007 51458 0.4060 +6007 57035 0.4820 +6007 114625 0.4060 +6007 161882 0.5160 +6007 222642 0.4970 +6009 6103 0.4580 +6009 6194 0.8640 +6009 6195 0.6420 +6009 6196 0.5200 +6009 6197 0.5300 +6009 6198 0.9680 +6009 6199 0.9040 +6009 6301 0.9020 +6009 6396 0.6660 +6009 6446 0.6330 +6009 6453 0.5460 +6009 6714 0.4430 +6009 6720 0.4210 +6009 6794 0.6990 +6009 6853 0.4200 +6009 7030 0.4340 +6009 7124 0.5800 +6009 7157 0.4850 +6009 7178 0.9300 +6009 7248 0.9990 +6009 7249 0.9990 +6009 7316 0.5100 +6009 7405 0.4750 +6009 7408 0.4300 +6009 7529 0.7410 +6009 7531 0.4410 +6009 7879 0.5720 +6009 7942 0.6170 +6009 8140 0.4670 +6009 8408 0.8300 +6009 8491 0.4570 +6009 8573 0.4130 +6009 8624 0.4340 +6009 8637 0.4740 +6009 8649 0.7630 +6009 8660 0.4220 +6009 8678 0.6330 +6009 8834 0.4310 +6009 8878 0.4780 +6009 9024 0.4550 +6009 9140 0.5070 +6009 9474 0.5860 +6009 9675 0.4930 +6009 9681 0.7530 +6009 9706 0.5180 +6009 9776 0.8160 +6009 9821 0.8010 +6009 10000 0.5620 +6009 10325 0.9690 +6009 10533 0.5820 +6009 10542 0.7430 +6009 10641 0.7890 +6009 10645 0.4160 +6009 10670 0.9690 +6009 10890 0.5850 +6009 11133 0.6110 +6009 11140 0.4200 +6009 11337 0.4570 +6009 11345 0.4670 +6009 22863 0.4900 +6009 23175 0.4230 +6009 23334 0.6050 +6009 23339 0.4530 +6009 23395 0.4790 +6009 23560 0.4880 +6009 23710 0.4820 +6009 23770 0.9510 +6009 25983 0.4540 +6009 26499 0.5060 +6009 27244 0.6840 +6009 27289 0.4070 +6009 28956 0.7530 +6009 29904 0.5010 +6009 30849 0.5130 +6009 50618 0.5440 +6009 51256 0.9820 +6009 51422 0.6640 +6009 51520 0.5080 +6009 53632 0.6220 +6009 54461 0.4480 +6009 54468 0.7040 +6009 54541 0.7420 +6009 55004 0.8140 +6009 55054 0.4420 +6009 55240 0.4950 +6009 55615 0.5860 +6009 55626 0.4580 +6009 55846 0.6110 +6009 57521 0.9990 +6009 57600 0.4340 +6009 58528 0.9630 +6009 60673 0.7350 +6009 64121 0.9710 +6009 64223 0.9990 +6009 64422 0.4980 +6009 64798 0.9880 +6009 79109 0.7630 +6009 79726 0.7120 +6009 81631 0.4420 +6009 81929 0.6630 +6009 83451 0.4080 +6009 83667 0.7540 +6009 84219 0.7220 +6009 84232 0.5100 +6009 84335 0.9970 +6009 85358 0.4210 +6009 96459 0.5080 +6009 120103 0.5320 +6009 143686 0.4540 +6009 144577 0.6220 +6009 153129 0.8280 +6009 154743 0.6880 +6009 155051 0.7390 +6009 161742 0.4340 +6009 201163 0.6230 +6009 206358 0.5060 +6009 220441 0.5550 +6009 253260 0.8860 +6009 389541 0.7910 +6009 440275 0.4380 +6009 652968 0.7370 +6009 729438 0.5470 +6010 6011 0.9990 +6010 6017 0.8640 +6010 6094 0.8740 +6010 6100 0.6830 +6010 6103 0.8580 +6010 6121 0.9160 +6010 6247 0.5600 +6010 6295 0.9990 +6010 6314 0.4740 +6010 6343 0.6710 +6010 6344 0.4670 +6010 6496 0.4150 +6010 6540 0.4290 +6010 6608 0.5500 +6010 6623 0.4320 +6010 6710 0.4840 +6010 6726 0.8000 +6010 6728 0.8000 +6010 6729 0.9090 +6010 6730 0.8090 +6010 6785 0.4260 +6010 6855 0.4580 +6010 6915 0.5070 +6010 6939 0.4180 +6010 6993 0.8200 +6010 7054 0.5400 +6010 7078 0.5480 +6010 7170 0.7870 +6010 7287 0.6660 +6010 7289 0.5040 +6010 7299 0.4040 +6010 7399 0.5330 +6010 7439 0.6030 +6010 7447 0.4820 +6010 7837 0.4150 +6010 7840 0.6250 +6010 7852 0.6520 +6010 7855 0.4610 +6010 8100 0.4190 +6010 8390 0.4120 +6010 8655 0.4930 +6010 8766 0.8190 +6010 8786 0.4690 +6010 8787 0.4700 +6010 8801 0.7090 +6010 8802 0.4850 +6010 8882 0.5570 +6010 8989 0.4020 +6010 9129 0.4310 +6010 9187 0.5520 +6010 9227 0.7220 +6010 9290 0.6420 +6010 9293 0.7300 +6010 9368 0.4560 +6010 9451 0.5280 +6010 9478 0.4740 +6010 9600 0.4380 +6010 9626 0.4310 +6010 9628 0.4320 +6010 9695 0.4090 +6010 9727 0.6230 +6010 10002 0.8460 +6010 10461 0.6660 +6010 10594 0.4040 +6010 10640 0.5960 +6010 10672 0.4840 +6010 10681 0.8250 +6010 10692 0.6140 +6010 10763 0.4330 +6010 11030 0.4050 +6010 11127 0.5490 +6010 11168 0.6100 +6010 11336 0.5650 +6010 22926 0.5640 +6010 23020 0.4540 +6010 23265 0.5500 +6010 23413 0.4800 +6010 23560 0.8540 +6010 23596 0.5740 +6010 23746 0.6950 +6010 25769 0.4940 +6010 26121 0.5120 +6010 26245 0.4060 +6010 27098 0.4080 +6010 30813 0.5780 +6010 50700 0.8250 +6010 50807 0.8530 +6010 50832 0.4040 +6010 50833 0.4550 +6010 50834 0.4510 +6010 50939 0.4030 +6010 51109 0.4650 +6010 51475 0.4310 +6010 51738 0.4180 +6010 51764 0.5730 +6010 51806 0.9010 +6010 54112 0.4410 +6010 54205 0.5030 +6010 54331 0.9080 +6010 54536 0.5840 +6010 54587 0.5780 +6010 54714 0.6070 +6010 55188 0.4770 +6010 55763 0.5380 +6010 55770 0.5510 +6010 55812 0.4490 +6010 55970 0.5600 +6010 55975 0.4060 +6010 56344 0.5270 +6010 57010 0.4720 +6010 57096 0.5320 +6010 57515 0.4190 +6010 58538 0.5210 +6010 59345 0.7500 +6010 60412 0.5720 +6010 60506 0.5170 +6010 64805 0.4140 +6010 79345 0.4130 +6010 80012 0.4950 +6010 80184 0.6030 +6010 83733 0.4120 +6010 84140 0.6520 +6010 84839 0.5560 +6010 84922 0.6060 +6010 90410 0.6340 +6010 91860 0.9020 +6010 92211 0.4070 +6010 94235 0.5670 +6010 112609 0.4640 +6010 115557 0.5140 +6010 115861 0.5320 +6010 117177 0.7110 +6010 121214 0.4290 +6010 127002 0.4690 +6010 130557 0.4510 +6010 131890 0.9990 +6010 132112 0.4300 +6010 134864 0.5270 +6010 137902 0.4150 +6010 139760 0.7500 +6010 145226 0.6020 +6010 149371 0.5550 +6010 160897 0.5300 +6010 163688 0.9020 +6010 169522 0.4410 +6010 200894 0.4490 +6010 220202 0.4250 +6010 221391 0.6610 +6010 222255 0.4660 +6010 338917 0.8020 +6010 339403 0.6970 +6010 344892 0.4180 +6010 346007 0.5810 +6010 346562 0.7340 +6010 350383 0.7330 +6010 353345 0.7140 +6010 375298 0.5080 +6010 387129 0.4130 +6010 387733 0.4030 +6010 388531 0.7540 +6010 388939 0.6850 +6010 768206 0.7550 +6011 6094 0.6060 +6011 6103 0.6290 +6011 6121 0.5890 +6011 6295 0.9870 +6011 6608 0.4090 +6011 7287 0.4870 +6011 7439 0.4160 +6011 7852 0.7000 +6011 8601 0.4170 +6011 8786 0.4660 +6011 8787 0.4300 +6011 9187 0.5630 +6011 9628 0.4480 +6011 10002 0.4650 +6011 10287 0.4200 +6011 10663 0.6800 +6011 10681 0.4950 +6011 10803 0.6800 +6011 23413 0.9660 +6011 23746 0.5500 +6011 26575 0.4190 +6011 28964 0.4100 +6011 51289 0.4040 +6011 51806 0.7210 +6011 54714 0.5110 +6011 55327 0.5440 +6011 55812 0.5070 +6011 57010 0.5670 +6011 57096 0.4430 +6011 58538 0.7480 +6011 60506 0.4020 +6011 64407 0.4070 +6011 80184 0.4210 +6011 85397 0.4180 +6011 91860 0.7200 +6011 115861 0.4430 +6011 131890 0.9100 +6011 158046 0.4370 +6011 163688 0.7200 +6011 345193 0.5340 +6011 388531 0.6200 +6011 431704 0.4320 +6013 6018 0.5460 +6013 6019 0.9810 +6013 6049 0.5040 +6013 10022 0.9940 +6013 11172 0.4820 +6013 51289 0.9560 +6013 58511 0.4430 +6013 59350 0.9990 +6013 59352 0.7270 +6013 117579 0.9930 +6013 122042 0.9940 +6013 138804 0.4440 +6013 255061 0.4940 +6013 339403 0.9340 +6013 653509 0.4690 +6013 729238 0.4890 +6013 100505478 0.4750 +6013 105376230 0.5410 +6014 6016 0.8930 +6014 6453 0.5350 +6014 6531 0.7070 +6014 6616 0.4160 +6014 6622 0.4580 +6014 6654 0.4470 +6014 6860 0.6610 +6014 8216 0.8020 +6014 9026 0.4580 +6014 9610 0.5750 +6014 23033 0.4040 +6014 23208 0.5850 +6014 27347 0.4930 +6014 50618 0.5400 +6014 50944 0.4130 +6014 56922 0.4820 +6014 57139 0.4960 +6014 57568 0.5420 +6014 84660 0.6020 +6014 85442 0.4030 +6014 91683 0.5240 +6014 112755 0.5620 +6014 120892 0.4950 +6014 130013 0.4710 +6014 132204 0.4060 +6014 162494 0.4100 +6015 6045 0.9990 +6015 6046 0.6000 +6015 6048 0.4320 +6015 6222 0.7080 +6015 6257 0.7220 +6015 6500 0.9370 +6015 6591 0.5270 +6015 6612 0.4140 +6015 6613 0.4830 +6015 6615 0.6850 +6015 6839 0.4040 +6015 6921 0.4970 +6015 6923 0.7360 +6015 7027 0.7950 +6015 7029 0.5190 +6015 7101 0.5020 +6015 7157 0.8190 +6015 7272 0.9200 +6015 7306 0.4790 +6015 7321 0.6500 +6015 7322 0.5880 +6015 7323 0.8510 +6015 7324 0.5890 +6015 7325 0.7510 +6015 7329 0.5220 +6015 7332 0.8450 +6015 7334 0.6010 +6015 7335 0.5140 +6015 7337 0.4400 +6015 7341 0.6570 +6015 7342 0.4470 +6015 7528 0.9870 +6015 7703 0.9990 +6015 7867 0.5240 +6015 7874 0.8950 +6015 7922 0.7300 +6015 7923 0.7900 +6015 7965 0.4270 +6015 8065 0.5570 +6015 8237 0.4400 +6015 8242 0.6630 +6015 8290 0.7440 +6015 8314 0.9150 +6015 8317 0.5110 +6015 8331 0.5430 +6015 8334 0.5490 +6015 8337 0.9460 +6015 8338 0.9450 +6015 8340 0.5210 +6015 8341 0.5240 +6015 8342 0.5240 +6015 8345 0.5210 +6015 8347 0.5190 +6015 8348 0.5290 +6015 8349 0.6880 +6015 8356 0.8680 +6015 8361 0.7070 +6015 8409 0.5040 +6015 8452 0.5210 +6015 8467 0.4620 +6015 8535 0.9990 +6015 8697 0.9030 +6015 8726 0.9860 +6015 8836 0.4100 +6015 8841 0.5680 +6015 8881 0.9030 +6015 8970 0.5200 +6015 9025 0.4030 +6015 9112 0.5950 +6015 9219 0.5830 +6015 9246 0.6010 +6015 9261 0.5410 +6015 9577 0.9030 +6015 9616 0.4660 +6015 9658 0.4300 +6015 9781 0.5740 +6015 9898 0.9020 +6015 10014 0.5280 +6015 10138 0.9990 +6015 10238 0.4050 +6015 10336 0.9990 +6015 10389 0.9640 +6015 10393 0.9080 +6015 10425 0.7320 +6015 10471 0.6320 +6015 10919 0.7980 +6015 10951 0.9910 +6015 11065 0.9120 +6015 11091 0.9030 +6015 11335 0.9750 +6015 22823 0.6190 +6015 22954 0.4520 +6015 22955 0.9710 +6015 22992 0.5480 +6015 23028 0.6970 +6015 23112 0.4990 +6015 23135 0.6750 +6015 23186 0.5890 +6015 23208 0.4070 +6015 23269 0.8100 +6015 23400 0.4350 +6015 23429 0.9990 +6015 23466 0.9970 +6015 23467 0.4130 +6015 23476 0.6550 +6015 23492 0.9990 +6015 23512 0.9870 +6015 25820 0.6200 +6015 25847 0.9000 +6015 25906 0.9010 +6015 25942 0.5220 +6015 26013 0.6350 +6015 26053 0.7890 +6015 26147 0.6010 +6015 26523 0.5390 +6015 27327 0.4990 +6015 27338 0.9600 +6015 27429 0.4040 +6015 29882 0.9130 +6015 29945 0.9010 +6015 29947 0.4570 +6015 30827 0.5010 +6015 51239 0.5400 +6015 51274 0.4430 +6015 51343 0.5810 +6015 51433 0.9120 +6015 51434 0.9020 +6015 51460 0.4040 +6015 51529 0.9080 +6015 51564 0.5300 +6015 51567 0.4170 +6015 53615 0.5240 +6015 54145 0.5220 +6015 54432 0.4550 +6015 54815 0.6430 +6015 54880 0.9940 +6015 55072 0.5910 +6015 55252 0.7040 +6015 55766 0.5430 +6015 56916 0.4230 +6015 57167 0.5820 +6015 57332 0.9990 +6015 57459 0.7000 +6015 57504 0.5480 +6015 63035 0.8300 +6015 64319 0.8270 +6015 64682 0.9010 +6015 65018 0.5690 +6015 79184 0.9150 +6015 79813 0.7710 +6015 80012 0.9900 +6015 80816 0.5920 +6015 81858 0.4240 +6015 83746 0.9720 +6015 84108 0.9990 +6015 84232 0.5140 +6015 84333 0.9990 +6015 84676 0.6820 +6015 84678 0.9960 +6015 84733 0.9990 +6015 84759 0.9990 +6015 84937 0.5210 +6015 85236 0.5400 +6015 94239 0.5650 +6015 112398 0.4770 +6015 112399 0.4450 +6015 114907 0.5820 +6015 119504 0.9020 +6015 121536 0.9520 +6015 128312 0.5310 +6015 132625 0.7280 +6015 133482 0.4990 +6015 140459 0.5400 +6015 149041 0.4400 +6015 166979 0.5480 +6015 171023 0.9200 +6015 192669 0.5260 +6015 192670 0.5260 +6015 246184 0.9000 +6015 255626 0.5380 +6015 286077 0.4060 +6015 404281 0.7370 +6015 440093 0.7440 +6015 440686 0.7440 +6015 474382 0.5430 +6015 653604 0.8690 +6015 100170841 0.6300 +6015 100532731 0.9970 +6016 6453 0.5350 +6016 6654 0.4040 +6016 7391 0.4120 +6016 8036 0.4560 +6016 8216 0.8550 +6016 9587 0.4500 +6016 23179 0.5310 +6016 50618 0.5410 +6016 57139 0.7060 +6016 130827 0.5930 +6016 203245 0.5250 +6017 6094 0.5150 +6017 6100 0.5140 +6017 6103 0.5550 +6017 6121 0.9250 +6017 6295 0.4700 +6017 6490 0.4170 +6017 6507 0.4350 +6017 7082 0.5420 +6017 7287 0.5940 +6017 7299 0.5200 +6017 7399 0.5050 +6017 7401 0.4650 +6017 7439 0.7890 +6017 8560 0.4060 +6017 8608 0.4390 +6017 8630 0.4200 +6017 9129 0.4350 +6017 9227 0.7370 +6017 9355 0.4370 +6017 10002 0.6200 +6017 10170 0.4200 +6017 10461 0.6270 +6017 10594 0.4050 +6017 10692 0.4280 +6017 23746 0.4330 +6017 25794 0.4810 +6017 26121 0.4800 +6017 30813 0.4400 +6017 50700 0.9020 +6017 50939 0.4770 +6017 51109 0.9750 +6017 54714 0.5870 +6017 55812 0.4310 +6017 79947 0.4020 +6017 84140 0.4180 +6017 94233 0.4220 +6017 121214 0.7220 +6017 130557 0.4290 +6017 145226 0.8590 +6017 149461 0.4380 +6017 157506 0.8920 +6017 158835 0.7890 +6017 220202 0.4510 +6017 338917 0.6830 +6017 346007 0.5160 +6017 375298 0.6510 +6017 388939 0.4430 +6017 768206 0.4810 +6018 8505 0.6190 +6018 10269 0.4910 +6018 23036 0.4130 +6018 23347 0.4570 +6018 23468 0.4880 +6018 25994 0.4760 +6018 51506 0.4190 +6018 54149 0.4960 +6018 54838 0.4970 +6018 55975 0.4660 +6018 57469 0.4750 +6018 64839 0.6030 +6018 117579 0.5510 +6018 120376 0.5640 +6018 440585 0.5650 +6018 441459 0.4730 +6019 6343 0.4230 +6019 6714 0.5010 +6019 7432 0.4030 +6019 10022 0.9930 +6019 11172 0.5600 +6019 51289 0.9500 +6019 57105 0.4990 +6019 59350 0.9990 +6019 59352 0.7180 +6019 79924 0.4460 +6019 113091 0.4200 +6019 117579 0.9930 +6019 122042 0.9970 +6019 122876 0.4080 +6019 339403 0.9390 +6019 390664 0.5440 +6019 594857 0.4580 +6019 653509 0.4690 +6019 729238 0.4890 +6019 105376230 0.4460 +6035 6041 0.6400 +6035 6050 0.9920 +6035 6233 0.4080 +6035 7038 0.6830 +6035 7316 0.4270 +6035 7450 0.4160 +6035 7837 0.4470 +6035 8100 0.4100 +6035 8288 0.5010 +6035 8635 0.7730 +6035 10013 0.4400 +6035 10226 0.4100 +6035 10811 0.4730 +6035 11201 0.4140 +6035 11238 0.5330 +6035 11315 0.4230 +6035 11326 0.4050 +6035 23239 0.4970 +6035 23632 0.5140 +6035 26232 0.4310 +6035 27243 0.4250 +6035 51160 0.4090 +6035 51378 0.4420 +6035 51652 0.4050 +6035 54205 0.9640 +6035 55366 0.4170 +6035 56952 0.5420 +6035 89853 0.4110 +6035 137902 0.4480 +6035 342898 0.4370 +6035 377677 0.5310 +6035 440387 0.5680 +6036 6037 0.9980 +6036 6041 0.6900 +6036 6050 0.9740 +6036 6283 0.6130 +6036 6356 0.5930 +6036 6369 0.4630 +6036 6590 0.4560 +6036 6688 0.4820 +6036 7097 0.6310 +6036 7124 0.4100 +6036 7305 0.4060 +6036 8288 0.9990 +6036 8635 0.8200 +6036 8928 0.4130 +6036 8993 0.5350 +6036 10288 0.6810 +6036 10344 0.5420 +6036 10859 0.5350 +6036 10871 0.6830 +6036 11024 0.6300 +6036 11025 0.6850 +6036 11027 0.6230 +6036 11314 0.7670 +6036 27181 0.5260 +6036 51311 0.5100 +6036 55811 0.4050 +6036 56729 0.5040 +6036 64231 0.4300 +6036 64407 0.4020 +6036 85480 0.4350 +6036 90865 0.4300 +6036 122651 0.5810 +6036 146722 0.4750 +6036 160364 0.4270 +6036 692312 0.4160 +6037 6041 0.5840 +6037 6280 0.4560 +6037 6283 0.4070 +6037 6356 0.6970 +6037 6369 0.5830 +6037 7056 0.4760 +6037 7124 0.4680 +6037 7837 0.4040 +6037 8288 0.9990 +6037 8635 0.6570 +6037 8993 0.4250 +6037 9133 0.4390 +6037 10344 0.5700 +6037 10800 0.4240 +6037 11251 0.4460 +6037 27181 0.5300 +6037 56729 0.4690 +6037 80306 0.5220 +6037 85480 0.5050 +6037 90865 0.4740 +6037 122651 0.5750 +6037 137902 0.4030 +6037 440163 0.4250 +6038 6050 0.4040 +6038 10876 0.4290 +6039 6041 0.5830 +6039 6688 0.4400 +6039 7305 0.6620 +6039 7805 0.5680 +6039 8288 0.4450 +6039 8635 0.8820 +6039 9450 0.8630 +6039 11314 0.4730 +6039 27036 0.4080 +6039 50856 0.4260 +6039 51338 0.5750 +6039 64174 0.4140 +6039 64231 0.6280 +6039 79626 0.4010 +6039 122651 0.5060 +6039 219972 0.5360 +6041 6059 0.9940 +6041 6716 0.5170 +6041 6772 0.8040 +6041 6773 0.8030 +6041 7072 0.5330 +6041 7096 0.4160 +6041 7097 0.4450 +6041 7098 0.6770 +6041 7099 0.4910 +6041 7113 0.5800 +6041 7124 0.4320 +6041 7157 0.4390 +6041 7187 0.4560 +6041 7189 0.4070 +6041 7277 0.4260 +6041 7278 0.4280 +6041 7297 0.5360 +6041 7520 0.4330 +6041 7538 0.5330 +6041 7706 0.5920 +6041 7846 0.4350 +6041 8379 0.4060 +6041 8405 0.4410 +6041 8454 0.4270 +6041 8519 0.4530 +6041 8635 0.6810 +6041 8638 0.9300 +6041 8895 0.4260 +6041 8909 0.4170 +6041 9021 0.4130 +6041 9159 0.4750 +6041 9447 0.4170 +6041 9636 0.7030 +6041 9641 0.5320 +6041 10010 0.4070 +6041 10044 0.4150 +6041 10045 0.5090 +6041 10146 0.5400 +6041 10247 0.4420 +6041 10376 0.4360 +6041 10379 0.7810 +6041 10410 0.4970 +6041 10898 0.4010 +6041 11274 0.6900 +6041 22853 0.5020 +6041 23301 0.4260 +6041 23351 0.5090 +6041 23405 0.4490 +6041 23586 0.8590 +6041 23600 0.4060 +6041 24138 0.5720 +6041 25939 0.7200 +6041 26103 0.4270 +6041 27161 0.4400 +6041 27232 0.4260 +6041 29110 0.5800 +6041 51239 0.5030 +6041 51284 0.6180 +6041 51311 0.5690 +6041 51320 0.4280 +6041 51665 0.4500 +6041 51807 0.4220 +6041 54106 0.4740 +6041 54464 0.5280 +6041 54809 0.4510 +6041 54851 0.4380 +6041 55601 0.4240 +6041 55662 0.6640 +6041 56829 0.5900 +6041 56832 0.4050 +6041 56919 0.9680 +6041 57506 0.7030 +6041 60489 0.4150 +6041 60528 0.7660 +6041 64127 0.4080 +6041 64135 0.8280 +6041 79132 0.6330 +6041 79861 0.4260 +6041 80086 0.4260 +6041 81554 0.4180 +6041 83666 0.4010 +6041 84271 0.4340 +6041 84282 0.4500 +6041 84790 0.4260 +6041 85363 0.4670 +6041 85414 0.4340 +6041 91543 0.6460 +6041 94103 0.4380 +6041 112714 0.4280 +6041 113457 0.4280 +6041 114548 0.4490 +6041 115004 0.5160 +6041 118932 0.4500 +6041 133015 0.4170 +6041 135138 0.4120 +6041 136332 0.4660 +6041 151651 0.4570 +6041 157567 0.4070 +6041 163702 0.4740 +6041 169044 0.4570 +6041 170506 0.5860 +6041 197335 0.8170 +6041 201626 0.9260 +6041 204801 0.4410 +6041 219285 0.5160 +6041 221895 0.4620 +6041 282617 0.4030 +6041 282618 0.4480 +6041 338376 0.4060 +6041 345193 0.4270 +6041 439996 0.4210 +6041 100128569 0.4020 +6045 6047 0.4220 +6045 6322 0.4370 +6045 6500 0.9320 +6045 6591 0.5950 +6045 6597 0.4180 +6045 6598 0.5460 +6045 6599 0.5520 +6045 6612 0.4570 +6045 6613 0.6970 +6045 6615 0.7980 +6045 6657 0.4890 +6045 6687 0.5110 +6045 6749 0.4800 +6045 6757 0.4060 +6045 6839 0.4030 +6045 6872 0.9110 +6045 6874 0.9010 +6045 6878 0.9000 +6045 6879 0.9030 +6045 6880 0.9160 +6045 7024 0.7240 +6045 7027 0.7060 +6045 7029 0.6230 +6045 7101 0.5020 +6045 7157 0.8340 +6045 7272 0.6720 +6045 7321 0.7890 +6045 7322 0.7710 +6045 7323 0.9790 +6045 7324 0.8240 +6045 7329 0.5170 +6045 7332 0.5000 +6045 7334 0.5370 +6045 7337 0.8430 +6045 7341 0.6220 +6045 7342 0.4800 +6045 7403 0.7220 +6045 7520 0.4570 +6045 7528 0.8910 +6045 7545 0.4420 +6045 7546 0.4330 +6045 7703 0.9990 +6045 7867 0.6530 +6045 7874 0.9200 +6045 8065 0.6850 +6045 8237 0.4620 +6045 8242 0.4660 +6045 8290 0.8110 +6045 8314 0.9230 +6045 8317 0.5300 +6045 8331 0.5430 +6045 8334 0.5590 +6045 8337 0.9850 +6045 8338 0.9930 +6045 8340 0.5270 +6045 8341 0.5330 +6045 8342 0.5250 +6045 8345 0.5250 +6045 8347 0.6480 +6045 8348 0.5250 +6045 8349 0.7710 +6045 8356 0.8780 +6045 8361 0.8160 +6045 8409 0.4990 +6045 8450 0.5860 +6045 8452 0.5200 +6045 8535 0.9990 +6045 8607 0.9090 +6045 8697 0.9050 +6045 8726 0.9970 +6045 8841 0.5520 +6045 8881 0.9000 +6045 8970 0.5260 +6045 9025 0.6040 +6045 9070 0.7940 +6045 9112 0.5940 +6045 9219 0.5910 +6045 9261 0.5280 +6045 9282 0.4900 +6045 9577 0.9130 +6045 9611 0.5330 +6045 9616 0.4340 +6045 9656 0.4470 +6045 9757 0.6000 +6045 9867 0.4140 +6045 9869 0.6170 +6045 9898 0.9010 +6045 9994 0.4080 +6045 10014 0.5640 +6045 10138 0.9990 +6045 10219 0.4120 +6045 10238 0.5250 +6045 10299 0.4230 +6045 10336 0.9950 +6045 10389 0.9870 +6045 10393 0.9000 +6045 10419 0.4390 +6045 10445 0.9000 +6045 10465 0.4150 +6045 10537 0.4440 +6045 10664 0.4090 +6045 10856 0.9160 +6045 10919 0.8050 +6045 10951 0.9120 +6045 10987 0.4170 +6045 11059 0.4240 +6045 11065 0.9070 +6045 11091 0.9940 +6045 11236 0.4250 +6045 11335 0.9500 +6045 22823 0.6780 +6045 22955 0.9760 +6045 22992 0.5950 +6045 23028 0.7810 +6045 23112 0.4990 +6045 23135 0.6950 +6045 23186 0.6300 +6045 23269 0.9660 +6045 23429 0.9990 +6045 23451 0.5430 +6045 23466 0.9950 +6045 23467 0.4130 +6045 23476 0.6770 +6045 23492 0.9990 +6045 23512 0.9990 +6045 23774 0.4150 +6045 25847 0.9000 +6045 25906 0.9040 +6045 25942 0.5690 +6045 26013 0.6500 +6045 26053 0.8700 +6045 26121 0.9000 +6045 26147 0.6020 +6045 26168 0.9160 +6045 26471 0.6060 +6045 26523 0.5750 +6045 27000 0.5150 +6045 27043 0.9020 +6045 27327 0.6830 +6045 27338 0.9210 +6045 27339 0.4070 +6045 29882 0.9040 +6045 29915 0.7280 +6045 29945 0.9000 +6045 29947 0.4950 +6045 30827 0.7140 +6045 51171 0.4820 +6045 51230 0.9140 +6045 51239 0.5400 +6045 51343 0.5480 +6045 51433 0.9090 +6045 51434 0.9000 +6045 51529 0.9140 +6045 51564 0.5640 +6045 53615 0.5060 +6045 54145 0.5280 +6045 54432 0.5580 +6045 54799 0.4030 +6045 54815 0.6160 +6045 54823 0.4310 +6045 54880 0.9950 +6045 54881 0.9210 +6045 54897 0.4870 +6045 55212 0.8130 +6045 55252 0.7330 +6045 55626 0.4350 +6045 55766 0.5940 +6045 55832 0.4380 +6045 56254 0.4380 +6045 56925 0.4240 +6045 57167 0.6640 +6045 57332 0.9980 +6045 57459 0.5530 +6045 57504 0.5630 +6045 57666 0.4570 +6045 57680 0.9160 +6045 63035 0.8000 +6045 63978 0.4340 +6045 64319 0.9000 +6045 64682 0.9000 +6045 64783 0.4860 +6045 79084 0.4140 +6045 79184 0.9240 +6045 79723 0.6240 +6045 79813 0.7630 +6045 79923 0.7600 +6045 80012 0.9940 +6045 80816 0.7590 +6045 81887 0.9020 +6045 83746 0.9810 +6045 84108 0.9990 +6045 84148 0.9370 +6045 84232 0.4990 +6045 84333 0.9980 +6045 84444 0.6710 +6045 84456 0.6060 +6045 84458 0.4160 +6045 84661 0.6300 +6045 84678 0.9990 +6045 84733 0.9990 +6045 84759 0.9990 +6045 85236 0.5280 +6045 94239 0.5940 +6045 112398 0.4200 +6045 112399 0.4030 +6045 114803 0.4590 +6045 119504 0.9000 +6045 121536 0.9510 +6045 124540 0.4140 +6045 124944 0.9000 +6045 125476 0.9030 +6045 128312 0.5380 +6045 132625 0.7480 +6045 133482 0.5400 +6045 140459 0.5400 +6045 153090 0.4240 +6045 165918 0.5780 +6045 166979 0.5480 +6045 171023 0.9450 +6045 192669 0.5460 +6045 192670 0.5300 +6045 197131 0.4040 +6045 223082 0.5500 +6045 246184 0.9000 +6045 255626 0.5380 +6045 284058 0.9000 +6045 404281 0.7440 +6045 440093 0.7430 +6045 440686 0.7430 +6045 474382 0.6380 +6045 653604 0.8650 +6045 100170841 0.6110 +6045 100529209 0.5400 +6045 100532731 0.9990 +6046 6452 0.4200 +6046 6521 0.4200 +6046 6594 0.4280 +6046 6595 0.5840 +6046 6597 0.8850 +6046 6598 0.4590 +6046 6599 0.8290 +6046 6601 0.6850 +6046 6602 0.6790 +6046 6603 0.6840 +6046 6605 0.7020 +6046 6749 0.4490 +6046 6774 0.5820 +6046 6837 0.4370 +6046 6872 0.7670 +6046 6873 0.5800 +6046 6874 0.4730 +6046 6875 0.4630 +6046 6877 0.6590 +6046 6878 0.7890 +6046 6879 0.8210 +6046 6880 0.4720 +6046 6881 0.6490 +6046 6883 0.5290 +6046 6884 0.4200 +6046 6890 0.4230 +6046 6891 0.4170 +6046 6892 0.4210 +6046 6908 0.8650 +6046 7150 0.5900 +6046 7153 0.4210 +6046 7157 0.5610 +6046 7259 0.4290 +6046 7468 0.7380 +6046 7552 0.4310 +6046 7862 0.4850 +6046 7913 0.5960 +6046 7994 0.4480 +6046 8019 0.9920 +6046 8089 0.4250 +6046 8227 0.4600 +6046 8290 0.8280 +6046 8294 0.9230 +6046 8337 0.5170 +6046 8338 0.4860 +6046 8349 0.6930 +6046 8350 0.5500 +6046 8356 0.8500 +6046 8359 0.9230 +6046 8360 0.9230 +6046 8361 0.9990 +6046 8362 0.9230 +6046 8363 0.9230 +6046 8364 0.9240 +6046 8366 0.9230 +6046 8367 0.9230 +6046 8368 0.9230 +6046 8369 0.9820 +6046 8370 0.9240 +6046 8396 0.4690 +6046 8405 0.8210 +6046 8452 0.5850 +6046 8467 0.5950 +6046 8535 0.5230 +6046 8607 0.4280 +6046 8805 0.5530 +6046 8815 0.5250 +6046 8850 0.5740 +6046 8886 0.4550 +6046 8899 0.6330 +6046 9013 0.4880 +6046 9031 0.4020 +6046 9112 0.4690 +6046 9129 0.4520 +6046 9158 0.4600 +6046 9274 0.4390 +6046 9555 0.6800 +6046 9640 0.5190 +6046 9722 0.4200 +6046 9759 0.6670 +6046 9847 0.4290 +6046 9849 0.4310 +6046 10013 0.4150 +6046 10042 0.4360 +6046 10445 0.4490 +6046 10465 0.4390 +6046 10524 0.4880 +6046 10614 0.5600 +6046 10664 0.6930 +6046 10665 0.4290 +6046 10847 0.5150 +6046 10856 0.4600 +6046 10919 0.6230 +6046 10951 0.5510 +6046 11143 0.7530 +6046 11168 0.5300 +6046 11198 0.4360 +6046 11335 0.6820 +6046 22992 0.4080 +6046 23028 0.4580 +6046 23210 0.7960 +6046 23347 0.4040 +6046 23468 0.5280 +6046 23476 0.9610 +6046 23506 0.5090 +6046 23560 0.4460 +6046 23613 0.7720 +6046 23774 0.4080 +6046 26354 0.4240 +6046 27346 0.4830 +6046 29028 0.4560 +6046 29117 0.6960 +6046 29844 0.4310 +6046 29998 0.8530 +6046 51111 0.5280 +6046 51185 0.6060 +6046 51428 0.4440 +6046 51574 0.5220 +6046 51616 0.4530 +6046 51773 0.4580 +6046 53615 0.4430 +6046 54457 0.5310 +6046 54617 0.4840 +6046 54665 0.4610 +6046 54815 0.4670 +6046 54865 0.4520 +6046 54904 0.9250 +6046 55138 0.6980 +6046 55193 0.6870 +6046 55274 0.4400 +6046 55506 0.6800 +6046 55646 0.5460 +6046 55870 0.4380 +6046 55929 0.5230 +6046 56257 0.5430 +6046 57062 0.5190 +6046 57216 0.4290 +6046 57459 0.4330 +6046 57504 0.4250 +6046 57534 0.7670 +6046 57592 0.5010 +6046 57599 0.4350 +6046 57634 0.5180 +6046 57669 0.4540 +6046 57680 0.5120 +6046 57805 0.4890 +6046 64061 0.4450 +6046 65980 0.7200 +6046 79169 0.4580 +6046 79576 0.4290 +6046 79753 0.4390 +6046 79813 0.5570 +6046 79837 0.4700 +6046 79885 0.7350 +6046 79886 0.4200 +6046 79913 0.4250 +6046 79915 0.5710 +6046 79961 0.5020 +6046 80829 0.4770 +6046 81688 0.4050 +6046 81839 0.4290 +6046 83444 0.5410 +6046 83860 0.6750 +6046 84541 0.4690 +6046 85461 0.4200 +6046 90381 0.7340 +6046 91833 0.4390 +6046 93973 0.4890 +6046 94239 0.7000 +6046 114327 0.7270 +6046 115704 0.4200 +6046 121504 0.9230 +6046 129685 0.6790 +6046 170394 0.6720 +6046 196528 0.5060 +6046 197259 0.4330 +6046 219770 0.4200 +6046 221656 0.5390 +6046 222194 0.4220 +6046 256646 0.6780 +6046 283337 0.4510 +6046 283899 0.4340 +6046 284119 0.4560 +6046 400506 0.4280 +6046 400793 0.4200 +6046 440093 0.8280 +6046 440686 0.8280 +6046 554313 0.9230 +6046 653604 0.8290 +6046 100532731 0.5330 +6047 6117 0.5130 +6047 6233 0.9500 +6047 6280 0.5100 +6047 6294 0.6070 +6047 6310 0.4910 +6047 6314 0.5090 +6047 6396 0.5920 +6047 6493 0.4070 +6047 6612 0.8290 +6047 6613 0.9950 +6047 6667 0.8280 +6047 6672 0.5680 +6047 6711 0.5100 +6047 6908 0.5240 +6047 6942 0.5900 +6047 6996 0.5590 +6047 7150 0.6480 +6047 7153 0.7080 +6047 7155 0.5930 +6047 7158 0.7610 +6047 7168 0.4410 +6047 7169 0.4410 +6047 7170 0.4450 +6047 7171 0.4450 +6047 7227 0.6630 +6047 7311 0.9520 +6047 7314 0.9540 +6047 7316 0.9830 +6047 7317 0.5510 +6047 7319 0.5180 +6047 7320 0.5170 +6047 7321 0.9990 +6047 7322 0.9260 +6047 7323 0.9150 +6047 7324 0.7240 +6047 7325 0.5670 +6047 7329 0.9280 +6047 7332 0.4140 +6047 7334 0.9940 +6047 7336 0.9360 +6047 7337 0.4280 +6047 7341 0.9670 +6047 7353 0.5980 +6047 7398 0.4500 +6047 7415 0.5970 +6047 7431 0.5100 +6047 7468 0.4380 +6047 7520 0.4980 +6047 7750 0.4100 +6047 7874 0.4380 +6047 8021 0.4360 +6047 8237 0.6260 +6047 8290 0.5370 +6047 8338 0.5000 +6047 8340 0.4840 +6047 8341 0.4820 +6047 8342 0.4830 +6047 8345 0.4840 +6047 8347 0.4780 +6047 8348 0.4840 +6047 8349 0.5570 +6047 8361 0.7460 +6047 8405 0.4820 +6047 8452 0.6100 +6047 8454 0.4090 +6047 8535 0.5380 +6047 8554 0.8570 +6047 8805 0.4600 +6047 8878 0.5520 +6047 8924 0.4710 +6047 8970 0.4810 +6047 8975 0.4270 +6047 9025 0.7540 +6047 9044 0.4640 +6047 9063 0.7400 +6047 9092 0.5680 +6047 9246 0.4560 +6047 9354 0.4150 +6047 9555 0.5770 +6047 9577 0.5080 +6047 9611 0.4620 +6047 9656 0.9280 +6047 9817 0.5320 +6047 9918 0.4930 +6047 9960 0.4650 +6047 9972 0.5740 +6047 10054 0.5980 +6047 10055 0.6860 +6047 10155 0.8400 +6047 10210 0.6250 +6047 10236 0.5310 +6047 10273 0.5960 +6047 10277 0.4520 +6047 10328 0.4780 +6047 10401 0.6020 +6047 10477 0.5330 +6047 10524 0.5890 +6047 10664 0.4940 +6047 10868 0.4550 +6047 10921 0.4560 +6047 22933 0.4970 +6047 23019 0.4080 +6047 23118 0.6870 +6047 23137 0.6550 +6047 23244 0.4450 +6047 23279 0.4890 +6047 23411 0.5080 +6047 23435 0.5390 +6047 23476 0.4330 +6047 23598 0.9190 +6047 25898 0.4770 +6047 25942 0.4750 +6047 26036 0.6580 +6047 26054 0.6780 +6047 26155 0.4160 +6047 26168 0.6330 +6047 26270 0.4410 +6047 27246 0.4560 +6047 27252 0.5390 +6047 27338 0.4050 +6047 27351 0.4410 +6047 28996 0.6370 +6047 29086 0.5210 +6047 29089 0.5370 +6047 29116 0.5410 +6047 29843 0.7960 +6047 51377 0.4700 +6047 51567 0.4890 +6047 51588 0.8900 +6047 51619 0.6790 +6047 51720 0.8690 +6047 54145 0.4840 +6047 54476 0.4280 +6047 54778 0.7840 +6047 54876 0.7300 +6047 55070 0.4470 +6047 55215 0.6350 +6047 55284 0.7850 +6047 55320 0.6200 +6047 55662 0.5470 +6047 55737 0.5380 +6047 55746 0.7170 +6047 55905 0.7280 +6047 56852 0.6200 +6047 57122 0.8070 +6047 57337 0.5790 +6047 57489 0.4760 +6047 57559 0.4910 +6047 57599 0.4450 +6047 60468 0.5730 +6047 79036 0.8410 +6047 79184 0.5690 +6047 79444 0.7490 +6047 79677 0.4820 +6047 83932 0.5080 +6047 84133 0.4750 +6047 84142 0.4850 +6047 84464 0.5560 +6047 84901 0.6900 +6047 85236 0.4790 +6047 91445 0.4230 +6047 128312 0.4950 +6047 145781 0.4160 +6047 148066 0.8520 +6047 152006 0.4380 +6047 165918 0.8130 +6047 205564 0.5870 +6047 220988 0.5190 +6047 221302 0.4310 +6047 254225 0.4780 +6047 255626 0.4790 +6047 286053 0.7030 +6047 375484 0.4070 +6047 387082 0.6200 +6047 494470 0.4190 +6047 653604 0.4550 +6048 6233 0.7360 +6048 6400 0.7990 +6048 6449 0.4150 +6048 6510 0.4560 +6048 6746 0.6260 +6048 7311 0.6240 +6048 7314 0.5600 +6048 7316 0.6820 +6048 7321 0.5420 +6048 7322 0.7860 +6048 7323 0.8270 +6048 7324 0.5710 +6048 7327 0.6150 +6048 7334 0.5260 +6048 7353 0.6370 +6048 7399 0.4260 +6048 7415 0.6920 +6048 7706 0.4040 +6048 7844 0.4820 +6048 7917 0.4190 +6048 7920 0.7720 +6048 8975 0.4640 +6048 9354 0.5710 +6048 9641 0.5360 +6048 9695 0.5050 +6048 10134 0.6190 +6048 10206 0.4600 +6048 10273 0.9030 +6048 10277 0.4630 +6048 10299 0.8120 +6048 10336 0.6440 +6048 10475 0.4190 +6048 10477 0.8270 +6048 10554 0.4210 +6048 10598 0.6330 +6048 10613 0.7090 +6048 10616 0.4360 +6048 10665 0.4170 +6048 10728 0.5110 +6048 10952 0.4260 +6048 10956 0.7530 +6048 11074 0.4790 +6048 11160 0.7530 +6048 11236 0.7670 +6048 22954 0.5870 +6048 23192 0.4020 +6048 23197 0.4470 +6048 23586 0.4200 +6048 23640 0.5590 +6048 23650 0.4930 +6048 27248 0.7330 +6048 29109 0.4220 +6048 29110 0.4970 +6048 29800 0.5290 +6048 29927 0.5740 +6048 51009 0.7960 +6048 51141 0.4060 +6048 51428 0.4070 +6048 51439 0.5250 +6048 51465 0.9940 +6048 51528 0.7910 +6048 54407 0.4690 +6048 54708 0.5840 +6048 54788 0.7270 +6048 54941 0.5670 +6048 55298 0.6730 +6048 55432 0.4070 +6048 55666 0.6550 +6048 55770 0.4040 +6048 55829 0.4100 +6048 57154 0.4680 +6048 57506 0.8670 +6048 57574 0.4350 +6048 79065 0.4450 +6048 79102 0.7170 +6048 79139 0.9780 +6048 79594 0.4380 +6048 79671 0.4660 +6048 79845 0.4220 +6048 80331 0.4500 +6048 81790 0.5810 +6048 81844 0.6350 +6048 84447 0.7080 +6048 91319 0.7260 +6048 91445 0.9720 +6048 92305 0.5790 +6048 148066 0.4290 +6048 160418 0.4140 +6048 197358 0.4260 +6048 285533 0.5610 +6048 340061 0.8950 +6048 100507679 0.4090 +6049 6478 0.5180 +6049 6934 0.4130 +6049 7048 0.4200 +6049 7090 0.7330 +6049 7321 0.4860 +6049 9604 0.6580 +6049 9940 0.7560 +6049 10273 0.4330 +6049 11065 0.4570 +6049 11178 0.6700 +6049 23108 0.4100 +6049 51741 0.5450 +6049 51761 0.8530 +6049 55323 0.4150 +6049 57402 0.6830 +6049 81573 0.5300 +6049 93611 0.4420 +6049 113278 0.4350 +6049 114088 0.4320 +6049 127018 0.4300 +6049 157848 0.4760 +6049 171222 0.4090 +6049 221830 0.4270 +6049 340146 0.4240 +6050 6386 0.4550 +6050 6657 0.5720 +6050 6895 0.4820 +6050 8609 0.6490 +6050 23318 0.5600 +6050 23405 0.7740 +6050 26523 0.5810 +6050 27161 0.6010 +6050 27327 0.4180 +6050 29102 0.8150 +6050 29108 0.5490 +6050 54487 0.8590 +6050 57510 0.7940 +6050 79727 0.4950 +6050 81545 0.8440 +6050 84659 0.4420 +6050 162517 0.8260 +6050 254170 0.8260 +6050 260434 0.5040 +6050 338322 0.5180 +6050 374879 0.6870 +6050 389421 0.5140 +6051 7064 0.4200 +6051 7511 0.4130 +6051 7706 0.4030 +6051 10072 0.6400 +6051 11132 0.7640 +6051 11275 0.4160 +6051 23549 0.7640 +6051 51056 0.7220 +6051 54802 0.6050 +6051 54858 0.6710 +6051 55313 0.4490 +6051 55748 0.4590 +6051 57486 0.4320 +6051 89796 0.4470 +6051 134359 0.5810 +6051 283742 0.4940 +6051 341359 0.4160 +6051 106865373 0.4740 +6059 6122 0.8990 +6059 6124 0.9680 +6059 6125 0.9090 +6059 6128 0.8680 +6059 6129 0.9140 +6059 6130 0.9370 +6059 6132 0.8780 +6059 6133 0.9470 +6059 6135 0.8810 +6059 6136 0.9190 +6059 6137 0.8560 +6059 6138 0.8550 +6059 6139 0.8520 +6059 6141 0.8600 +6059 6142 0.8440 +6059 6143 0.8720 +6059 6144 0.9160 +6059 6146 0.8940 +6059 6147 0.8620 +6059 6152 0.8250 +6059 6154 0.8710 +6059 6155 0.8670 +6059 6156 0.8350 +6059 6157 0.8560 +6059 6158 0.8400 +6059 6159 0.8330 +6059 6160 0.8440 +6059 6161 0.8700 +6059 6164 0.8470 +6059 6165 0.8760 +6059 6166 0.8140 +6059 6167 0.8110 +6059 6168 0.8210 +6059 6169 0.8580 +6059 6170 0.8580 +6059 6173 0.8010 +6059 6175 0.9920 +6059 6176 0.8900 +6059 6183 0.6760 +6059 6187 0.9730 +6059 6188 0.9900 +6059 6189 0.9830 +6059 6191 0.9490 +6059 6192 0.6240 +6059 6193 0.9720 +6059 6194 0.9900 +6059 6201 0.9780 +6059 6202 0.9750 +6059 6203 0.9300 +6059 6204 0.9580 +6059 6205 0.9710 +6059 6206 0.9840 +6059 6207 0.9780 +6059 6208 0.9680 +6059 6209 0.9760 +6059 6210 0.9360 +6059 6217 0.9770 +6059 6218 0.9690 +6059 6222 0.9700 +6059 6223 0.9730 +6059 6224 0.9870 +6059 6227 0.9650 +6059 6228 0.9940 +6059 6229 0.9890 +6059 6230 0.9800 +6059 6231 0.9720 +6059 6232 0.9540 +6059 6233 0.9640 +6059 6234 0.9890 +6059 6235 0.9730 +6059 6311 0.4260 +6059 6390 0.4430 +6059 6414 0.8410 +6059 6499 0.5940 +6059 6726 0.4700 +6059 6731 0.4510 +6059 6741 0.4260 +6059 6780 0.4440 +6059 6891 0.5530 +6059 6897 0.4160 +6059 6950 0.5100 +6059 7019 0.4230 +6059 7157 0.5110 +6059 7247 0.5600 +6059 7251 0.4880 +6059 7311 0.8170 +6059 7386 0.4160 +6059 7407 0.7040 +6059 7415 0.4550 +6059 7514 0.4140 +6059 7756 0.4050 +6059 7905 0.4190 +6059 8266 0.5740 +6059 8467 0.7030 +6059 8539 0.5270 +6059 8562 0.8450 +6059 8661 0.9950 +6059 8662 0.9950 +6059 8663 0.9880 +6059 8664 0.9400 +6059 8665 0.9180 +6059 8666 0.9390 +6059 8667 0.9360 +6059 8668 0.9820 +6059 8669 0.9960 +6059 8714 0.4100 +6059 8844 0.4190 +6059 8886 0.7540 +6059 8894 0.9530 +6059 9045 0.8610 +6059 9054 0.4520 +6059 9086 0.6670 +6059 9147 0.7600 +6059 9188 0.5570 +6059 9349 0.9090 +6059 9391 0.7200 +6059 9429 0.4340 +6059 9652 0.6630 +6059 9669 0.7800 +6059 9732 0.5450 +6059 9775 0.5180 +6059 9790 0.4750 +6059 9804 0.4170 +6059 9858 0.5350 +6059 9887 0.4090 +6059 9908 0.5800 +6059 9933 0.5200 +6059 10051 0.4500 +6059 10056 0.4150 +6059 10057 0.5460 +6059 10058 0.6230 +6059 10061 0.9090 +6059 10128 0.4040 +6059 10146 0.6920 +6059 10153 0.6000 +6059 10209 0.9830 +6059 10213 0.7930 +6059 10257 0.5220 +6059 10289 0.7150 +6059 10352 0.4670 +6059 10393 0.5920 +6059 10399 0.9880 +6059 10436 0.5420 +6059 10480 0.9710 +6059 10492 0.5290 +6059 10527 0.4730 +6059 10528 0.4620 +6059 10539 0.6530 +6059 10557 0.5590 +6059 10574 0.4700 +6059 10575 0.4180 +6059 10576 0.5650 +6059 10606 0.5440 +6059 10694 0.6210 +6059 10767 0.9590 +6059 10885 0.7120 +6059 10952 0.8180 +6059 10973 0.4090 +6059 10985 0.4410 +6059 10987 0.4060 +6059 10988 0.4290 +6059 10989 0.4470 +6059 11019 0.5860 +6059 11194 0.5750 +6059 11198 0.4470 +6059 11222 0.5410 +6059 11224 0.8600 +6059 11260 0.5040 +6059 22803 0.4200 +6059 22894 0.4450 +6059 22948 0.5820 +6059 22980 0.4230 +6059 22984 0.6250 +6059 23076 0.5240 +6059 23160 0.4580 +6059 23173 0.5080 +6059 23195 0.5190 +6059 23197 0.4170 +6059 23204 0.6160 +6059 23223 0.6200 +6059 23293 0.5280 +6059 23381 0.5460 +6059 23456 0.5660 +6059 23457 0.5280 +6059 23476 0.5140 +6059 23479 0.4760 +6059 23517 0.6100 +6059 23521 0.8900 +6059 23560 0.7990 +6059 23586 0.5630 +6059 23658 0.4070 +6059 23708 0.6590 +6059 25814 0.5010 +6059 25873 0.8840 +6059 25879 0.5640 +6059 25885 0.4330 +6059 25926 0.5250 +6059 26009 0.4960 +6059 26019 0.6120 +6059 26046 0.7890 +6059 26135 0.4200 +6059 26154 0.4950 +6059 26354 0.5110 +6059 26953 0.4250 +6059 26986 0.7120 +6059 27000 0.5960 +6059 27247 0.6160 +6059 27292 0.4040 +6059 27335 0.8750 +6059 27340 0.4270 +6059 28985 0.4490 +6059 28987 0.4470 +6059 29078 0.4290 +6059 29889 0.6700 +6059 51018 0.4280 +6059 51065 0.6110 +6059 51068 0.5800 +6059 51073 0.6110 +6059 51081 0.6890 +6059 51116 0.5490 +6059 51121 0.8290 +6059 51149 0.7750 +6059 51154 0.7860 +6059 51187 0.7830 +6059 51202 0.4070 +6059 51319 0.6840 +6059 51386 0.9260 +6059 51388 0.6580 +6059 51520 0.5870 +6059 51602 0.6280 +6059 51647 0.5950 +6059 51692 0.4180 +6059 53918 0.9500 +6059 54433 0.4050 +6059 54464 0.7260 +6059 54505 0.5750 +6059 54512 0.4610 +6059 54517 0.4400 +6059 54700 0.4080 +6059 55127 0.5450 +6059 55139 0.5490 +6059 55140 0.5090 +6059 55153 0.4390 +6059 55173 0.6590 +6059 55226 0.6580 +6059 55253 0.6020 +6059 55272 0.5760 +6059 55299 0.5770 +6059 55316 0.5980 +6059 55324 0.6700 +6059 55651 0.5560 +6059 55720 0.8090 +6059 55759 0.5900 +6059 55781 0.5990 +6059 55813 0.4390 +6059 55847 0.4420 +6059 56902 0.5010 +6059 56916 0.4130 +6059 57002 0.9130 +6059 57003 0.4350 +6059 57019 0.6320 +6059 57176 0.4260 +6059 58477 0.4980 +6059 60487 0.4340 +6059 60489 0.5490 +6059 60678 0.4880 +6059 63931 0.5410 +6059 64135 0.6090 +6059 64210 0.8040 +6059 64240 0.4780 +6059 64241 0.4310 +6059 64318 0.5760 +6059 64428 0.6800 +6059 64960 0.6330 +6059 64963 0.5890 +6059 64969 0.6570 +6059 65008 0.4190 +6059 65083 0.4330 +6059 65109 0.4890 +6059 65110 0.4950 +6059 79050 0.4650 +6059 79084 0.4590 +6059 80018 0.4790 +6059 80117 0.4400 +6059 80155 0.6020 +6059 80218 0.5240 +6059 80224 0.4020 +6059 81689 0.6190 +6059 81929 0.5290 +6059 83732 0.4320 +6059 84128 0.6520 +6059 84135 0.6850 +6059 84154 0.6500 +6059 84172 0.6710 +6059 84191 0.4170 +6059 84365 0.5830 +6059 84447 0.4060 +6059 84549 0.5860 +6059 84916 0.5070 +6059 84946 0.8010 +6059 85320 0.4770 +6059 85377 0.5160 +6059 85476 0.6120 +6059 89845 0.4990 +6059 90850 0.7040 +6059 92399 0.8240 +6059 94160 0.5010 +6059 114987 0.8260 +6059 115098 0.8750 +6059 115939 0.4060 +6059 120892 0.5500 +6059 122961 0.4690 +6059 126402 0.5670 +6059 140032 0.6140 +6059 140801 0.8150 +6059 150274 0.4440 +6059 166752 0.4420 +6059 167227 0.6740 +6059 201626 0.4700 +6059 220064 0.9130 +6059 255308 0.5140 +6059 340273 0.6220 +6059 345630 0.4170 +6059 347487 0.6360 +6059 348751 0.5500 +6059 440275 0.5030 +6059 641776 0.4470 +6059 643909 0.4470 +6059 728524 0.4470 +6059 728689 0.9100 +6059 100287482 0.5350 +6059 100287932 0.4660 +6059 100526842 0.8090 +6059 100529239 0.9350 +6059 100996746 0.4470 +6059 105180390 0.4470 +6059 105180391 0.4470 +6059 114483834 0.9210 +6091 6092 0.6660 +6091 6387 0.6630 +6091 6405 0.4380 +6091 6585 0.9990 +6091 6586 0.9990 +6091 6654 0.6280 +6091 6655 0.6320 +6091 6936 0.5850 +6091 7124 0.4650 +6091 7311 0.4050 +6091 7368 0.4180 +6091 7408 0.7180 +6091 7852 0.6360 +6091 7869 0.4150 +6091 8022 0.5790 +6091 8314 0.4230 +6091 8440 0.9220 +6091 8829 0.9330 +6091 8861 0.5180 +6091 8929 0.4100 +6091 8936 0.4550 +6091 9353 0.9990 +6091 9355 0.8110 +6091 9423 0.8240 +6091 9801 0.5270 +6091 9856 0.7730 +6091 9901 0.9790 +6091 9914 0.4690 +6091 10205 0.4740 +6091 10289 0.4350 +6091 10298 0.9160 +6091 10371 0.5020 +6091 10381 0.4590 +6091 10486 0.5400 +6091 10487 0.5170 +6091 10505 0.4800 +6091 10765 0.4030 +6091 22854 0.4280 +6091 23032 0.9020 +6091 23053 0.4140 +6091 23122 0.5560 +6091 23129 0.4550 +6091 23266 0.5850 +6091 23332 0.5460 +6091 23380 0.9870 +6091 23767 0.8060 +6091 23769 0.5560 +6091 25759 0.4490 +6091 26047 0.4660 +6091 27289 0.4130 +6091 51466 0.6250 +6091 51473 0.7410 +6091 54538 0.7330 +6091 54873 0.4320 +6091 55193 0.4190 +6091 55714 0.4960 +6091 55740 0.7190 +6091 55850 0.4470 +6091 56924 0.9190 +6091 56999 0.4210 +6091 57144 0.9220 +6091 57451 0.4550 +6091 57522 0.9990 +6091 60506 0.5270 +6091 63973 0.4910 +6091 64067 0.4170 +6091 64221 0.9180 +6091 79932 0.4310 +6091 80728 0.7090 +6091 80790 0.4400 +6091 81614 0.4100 +6091 83938 0.4280 +6091 89884 0.5860 +6091 91584 0.4150 +6091 93986 0.8030 +6091 123606 0.4010 +6091 152518 0.4580 +6091 161582 0.8440 +6092 6376 0.4090 +6092 6405 0.6640 +6092 6585 0.9990 +6092 6586 0.9990 +6092 7124 0.4290 +6092 7408 0.4360 +6092 7850 0.4420 +6092 8022 0.5780 +6092 8440 0.9260 +6092 8828 0.4090 +6092 8861 0.5310 +6092 9037 0.4510 +6092 9353 0.9990 +6092 9355 0.8330 +6092 9423 0.8650 +6092 9495 0.9030 +6092 9723 0.5890 +6092 9856 0.5510 +6092 9901 0.9640 +6092 9914 0.5180 +6092 10205 0.4750 +6092 10298 0.9190 +6092 10371 0.5160 +6092 10505 0.4190 +6092 22854 0.6410 +6092 23053 0.4360 +6092 23380 0.9620 +6092 23543 0.4370 +6092 26047 0.5160 +6092 28514 0.4710 +6092 51473 0.4650 +6092 54894 0.4230 +6092 55243 0.4850 +6092 55714 0.5150 +6092 55850 0.4760 +6092 56924 0.9240 +6092 57144 0.9290 +6092 57451 0.4760 +6092 57522 0.9640 +6092 57556 0.5250 +6092 60506 0.5680 +6092 64067 0.4130 +6092 64221 0.8310 +6092 64321 0.7810 +6092 64579 0.4520 +6092 79633 0.4220 +6092 80790 0.4820 +6092 84628 0.6160 +6092 89884 0.5750 +6092 91584 0.4760 +6092 93986 0.5710 +6092 114788 0.5020 +6092 114798 0.4470 +6092 114815 0.4380 +6092 152518 0.5080 +6092 161582 0.4650 +6092 342979 0.4060 +6093 6197 0.5040 +6093 6242 0.6440 +6093 6461 0.4990 +6093 6510 0.4160 +6093 6548 0.9660 +6093 6654 0.4100 +6093 6714 0.6040 +6093 6774 0.4820 +6093 6793 0.4560 +6093 7037 0.4620 +6093 7040 0.5280 +6093 7082 0.4480 +6093 7094 0.4250 +6093 7122 0.5220 +6093 7124 0.4420 +6093 7157 0.6590 +6093 7159 0.4290 +6093 7185 0.4680 +6093 7249 0.4970 +6093 7251 0.8050 +6093 7409 0.5900 +6093 7410 0.7200 +6093 7414 0.5020 +6093 7415 0.4740 +6093 7430 0.5030 +6093 7454 0.4010 +6093 7535 0.4320 +6093 7837 0.4720 +6093 7879 0.4130 +6093 7984 0.4510 +6093 8153 0.6320 +6093 8394 0.9160 +6093 8395 0.9020 +6093 8396 0.9030 +6093 8454 0.5200 +6093 8678 0.5690 +6093 8773 0.5260 +6093 8826 0.6170 +6093 8900 0.4640 +6093 8976 0.4410 +6093 9097 0.4820 +6093 9138 0.7950 +6093 9181 0.4330 +6093 9341 0.4340 +6093 9414 0.5250 +6093 9459 0.4100 +6093 9475 0.9880 +6093 9497 0.4190 +6093 9528 0.4440 +6093 9748 0.4730 +6093 9826 0.7070 +6093 9886 0.7580 +6093 10013 0.5610 +6093 10059 0.5900 +6093 10211 0.4960 +6093 10298 0.5040 +6093 10376 0.5910 +6093 10398 0.9530 +6093 10413 0.5690 +6093 10451 0.5700 +6093 10507 0.5890 +6093 10627 0.9280 +6093 10672 0.6850 +6093 11113 0.5480 +6093 11322 0.5800 +6093 22943 0.4570 +6093 23002 0.6370 +6093 23164 0.4320 +6093 23365 0.7070 +6093 23380 0.4410 +6093 23396 0.9070 +6093 23411 0.4260 +6093 23433 0.4160 +6093 25836 0.6370 +6093 26095 0.4220 +6093 26499 0.4230 +6093 27289 0.7960 +6093 29127 0.4140 +6093 29895 0.9190 +6093 29941 0.4870 +6093 29984 0.6650 +6093 50618 0.5070 +6093 50650 0.5680 +6093 51100 0.4430 +6093 51806 0.4120 +6093 54443 0.6810 +6093 54509 0.5840 +6093 54776 0.9190 +6093 55004 0.4250 +6093 55075 0.4410 +6093 55109 0.4330 +6093 55717 0.4130 +6093 55789 0.4530 +6093 55914 0.6330 +6093 55968 0.4220 +6093 56924 0.4700 +6093 57144 0.4620 +6093 57381 0.4080 +6093 57619 0.6270 +6093 58498 0.9150 +6093 64283 0.6500 +6093 65124 0.4330 +6093 79444 0.4150 +6093 79784 0.5390 +6093 79811 0.4700 +6093 79837 0.9030 +6093 80000 0.4920 +6093 80725 0.4290 +6093 81624 0.6410 +6093 81839 0.4690 +6093 83478 0.5600 +6093 84978 0.6350 +6093 90627 0.5160 +6093 91010 0.5740 +6093 91860 0.4570 +6093 93408 0.9110 +6093 94274 0.4550 +6093 103910 0.9580 +6093 114882 0.4680 +6093 114885 0.4380 +6093 128239 0.4760 +6093 137902 0.4710 +6093 157769 0.4430 +6093 163688 0.4090 +6093 197335 0.4510 +6093 200576 0.9150 +6093 200958 0.4820 +6093 253959 0.4590 +6093 259282 0.4860 +6093 284119 0.4370 +6093 653361 0.4840 +6094 6100 0.7440 +6094 6103 0.6140 +6094 6121 0.5890 +6094 6295 0.7140 +6094 7287 0.6290 +6094 7356 0.7730 +6094 7399 0.5530 +6094 7401 0.4480 +6094 7439 0.7060 +6094 7536 0.7670 +6094 8061 0.7640 +6094 9129 0.7110 +6094 9187 0.5510 +6094 9227 0.4520 +6094 10002 0.6490 +6094 10210 0.7010 +6094 10594 0.7030 +6094 11043 0.5920 +6094 23020 0.6070 +6094 23554 0.4560 +6094 23746 0.5970 +6094 24148 0.5060 +6094 25794 0.7910 +6094 26121 0.7540 +6094 50939 0.6500 +6094 55246 0.4020 +6094 55812 0.5270 +6094 55975 0.5970 +6094 57010 0.5460 +6094 57096 0.5720 +6094 64218 0.4610 +6094 79026 0.7660 +6094 79947 0.4470 +6094 80184 0.4520 +6094 84140 0.5070 +6094 92211 0.5090 +6094 92840 0.5350 +6094 94137 0.6030 +6094 130557 0.6380 +6094 131890 0.5450 +6094 145226 0.7280 +6094 157657 0.5850 +6094 167691 0.4380 +6094 169522 0.4280 +6094 285440 0.4070 +6094 346007 0.6970 +6094 375298 0.7060 +6094 388531 0.7030 +6094 388939 0.7320 +6094 768206 0.7160 +6095 6096 0.9410 +6095 6097 0.9340 +6095 6259 0.8280 +6095 6310 0.7980 +6095 6511 0.9020 +6095 6529 0.4160 +6095 6657 0.4920 +6095 6720 0.7950 +6095 6774 0.6950 +6095 6778 0.6150 +6095 6932 0.4530 +6095 7222 0.9040 +6095 7291 0.4790 +6095 7329 0.4090 +6095 7341 0.4100 +6095 7474 0.9920 +6095 7481 0.9080 +6095 7483 0.7440 +6095 7855 0.7960 +6095 8204 0.9820 +6095 8320 0.4360 +6095 8322 0.4140 +6095 8553 0.8720 +6095 8648 0.5580 +6095 8841 0.7130 +6095 8863 0.9230 +6095 8864 0.9220 +6095 8914 0.7370 +6095 9034 0.4180 +6095 9173 0.5170 +6095 9500 0.5010 +6095 9572 0.7800 +6095 9575 0.9230 +6095 9611 0.6310 +6095 9612 0.5860 +6095 9975 0.5440 +6095 10002 0.4340 +6095 10084 0.4280 +6095 10401 0.4110 +6095 10524 0.9420 +6095 10538 0.7880 +6095 10891 0.8490 +6095 11107 0.4220 +6095 22807 0.4040 +6095 26224 0.4050 +6095 29851 0.4230 +6095 30009 0.5430 +6095 50616 0.4750 +6095 50943 0.5610 +6095 54361 0.5690 +6095 56938 0.5550 +6095 57216 0.5980 +6095 79365 0.9090 +6095 79923 0.4400 +6095 81029 0.6280 +6095 81839 0.5510 +6095 90865 0.4210 +6095 112744 0.4780 +6095 149233 0.5280 +6095 342371 0.5070 +6095 387715 0.4870 +6095 102800317 0.4860 +6096 6097 0.9350 +6096 6281 0.4050 +6096 6337 0.4550 +6096 7008 0.4080 +6096 7091 0.4330 +6096 8204 0.6260 +6096 8553 0.8830 +6096 8648 0.8450 +6096 8863 0.9360 +6096 8864 0.9210 +6096 8914 0.7250 +6096 9079 0.4020 +6096 9355 0.4770 +6096 9575 0.9240 +6096 9611 0.7580 +6096 9612 0.7160 +6096 10499 0.4340 +6096 10716 0.5800 +6096 23314 0.5510 +6096 23316 0.6760 +6096 24141 0.6140 +6096 26224 0.4310 +6096 27133 0.4250 +6096 27319 0.4740 +6096 30819 0.5490 +6096 51232 0.4010 +6096 55079 0.5700 +6096 56925 0.4230 +6096 56938 0.5710 +6096 57030 0.4620 +6096 57084 0.4830 +6096 59350 0.4110 +6096 64919 0.4910 +6096 79365 0.8560 +6096 84628 0.4620 +6096 93986 0.4600 +6096 121643 0.4460 +6096 127833 0.4350 +6096 137970 0.4020 +6096 140679 0.4220 +6096 148281 0.5160 +6096 148523 0.4380 +6096 167410 0.4170 +6096 266727 0.5570 +6096 102800317 0.4540 +6097 6304 0.4170 +6097 6364 0.5060 +6097 6402 0.4840 +6097 6657 0.4340 +6097 6772 0.4810 +6097 6774 0.8830 +6097 6775 0.5110 +6097 6776 0.4240 +6097 6777 0.4250 +6097 6778 0.7080 +6097 6932 0.4800 +6097 7040 0.6090 +6097 7074 0.4080 +6097 7124 0.5540 +6097 7291 0.4050 +6097 7433 0.4660 +6097 7704 0.5280 +6097 8202 0.4150 +6097 8204 0.9100 +6097 8320 0.5930 +6097 8553 0.8380 +6097 8639 0.4040 +6097 8648 0.9470 +6097 8809 0.4180 +6097 8863 0.8570 +6097 8864 0.8420 +6097 8914 0.5240 +6097 9034 0.7200 +6097 9173 0.4180 +6097 9436 0.4480 +6097 9437 0.5340 +6097 9575 0.8450 +6097 9580 0.4930 +6097 9611 0.5890 +6097 9612 0.9580 +6097 9975 0.4580 +6097 10219 0.4460 +6097 10499 0.9200 +6097 10538 0.8870 +6097 10663 0.4510 +6097 11251 0.4550 +6097 22807 0.4490 +6097 23765 0.6050 +6097 29851 0.5120 +6097 30009 0.9060 +6097 50616 0.8500 +6097 50943 0.9870 +6097 51043 0.4390 +6097 51561 0.6230 +6097 55540 0.4350 +6097 55801 0.5450 +6097 56938 0.5720 +6097 57530 0.4180 +6097 79365 0.8380 +6097 84818 0.4610 +6097 90865 0.4350 +6097 112744 0.8780 +6097 132014 0.4400 +6097 149233 0.8750 +6098 6198 0.4180 +6098 6385 0.6950 +6098 6492 0.4910 +6098 6493 0.4220 +6098 6597 0.4070 +6098 6774 0.4200 +6098 7015 0.6480 +6098 7080 0.5920 +6098 7157 0.6330 +6098 7170 0.7690 +6098 7430 0.6540 +6098 7515 0.4790 +6098 7529 0.4380 +6098 7855 0.5670 +6098 8030 0.7840 +6098 8031 0.4180 +6098 8289 0.5150 +6098 8325 0.4570 +6098 8678 0.4940 +6098 9368 0.4170 +6098 9476 0.6060 +6098 10228 0.4400 +6098 10460 0.5840 +6098 10568 0.8410 +6098 11014 0.6360 +6098 11030 0.4260 +6098 23022 0.8440 +6098 23433 0.4990 +6098 27436 0.9250 +6098 29126 0.7610 +6098 53353 0.4160 +6098 54664 0.5680 +6098 55294 0.4340 +6098 57120 0.9070 +6098 57509 0.5920 +6098 79705 0.4040 +6098 84659 0.4370 +6098 120892 0.4080 +6098 121227 0.7400 +6098 259296 0.9080 +6098 285016 0.5040 +6098 285761 0.6140 +6098 387119 0.5270 +6098 441933 0.9150 +6100 6103 0.7490 +6100 6121 0.6680 +6100 7287 0.6890 +6100 7399 0.4720 +6100 7401 0.4480 +6100 7439 0.6700 +6100 8481 0.5020 +6100 8842 0.4830 +6100 9092 0.4660 +6100 9128 0.6990 +6100 9129 0.8920 +6100 9227 0.4180 +6100 9541 0.4120 +6100 9785 0.6500 +6100 10002 0.6910 +6100 10210 0.7990 +6100 10461 0.6190 +6100 10594 0.8620 +6100 11281 0.5820 +6100 23020 0.8320 +6100 23746 0.4020 +6100 24148 0.7390 +6100 25794 0.8490 +6100 26121 0.9050 +6100 50939 0.7240 +6100 51634 0.4260 +6100 55216 0.5270 +6100 55812 0.4170 +6100 55831 0.4070 +6100 55975 0.7670 +6100 57709 0.4610 +6100 64218 0.6760 +6100 79169 0.4170 +6100 79576 0.4350 +6100 79947 0.4470 +6100 84140 0.4750 +6100 94137 0.4180 +6100 130557 0.7380 +6100 145226 0.7310 +6100 157657 0.4180 +6100 222698 0.4270 +6100 346007 0.7400 +6100 375298 0.7780 +6100 388939 0.7390 +6100 768206 0.6950 +6101 8027 0.4550 +6101 10254 0.4550 +6101 25913 0.6310 +6101 56667 0.4360 +6101 647024 0.4210 +6102 6103 0.4620 +6102 6904 0.4300 +6102 7296 0.4350 +6102 8382 0.6210 +6102 10201 0.6230 +6102 26578 0.4350 +6102 27031 0.5930 +6102 29922 0.5920 +6102 51314 0.4210 +6102 54903 0.4450 +6102 57153 0.4750 +6102 84747 0.9270 +6102 192668 0.4990 +6102 347736 0.6470 +6102 392509 0.4510 +6103 6121 0.8430 +6103 6247 0.4470 +6103 6295 0.5290 +6103 6674 0.5490 +6103 6785 0.4180 +6103 6787 0.5130 +6103 7072 0.5040 +6103 7287 0.7580 +6103 7399 0.7840 +6103 7401 0.4800 +6103 7439 0.7490 +6103 8100 0.9190 +6103 8481 0.7260 +6103 8701 0.7490 +6103 8842 0.5360 +6103 9126 0.6900 +6103 9128 0.4010 +6103 9129 0.7320 +6103 9227 0.4470 +6103 9364 0.4300 +6103 9576 0.4050 +6103 9657 0.9890 +6103 9688 0.4320 +6103 9742 0.4180 +6103 10002 0.7210 +6103 10083 0.4490 +6103 10210 0.7190 +6103 10461 0.6820 +6103 10594 0.7570 +6103 10806 0.4960 +6103 11127 0.6420 +6103 23020 0.6930 +6103 23093 0.6200 +6103 23322 0.9820 +6103 23568 0.5050 +6103 23633 0.5770 +6103 23639 0.5380 +6103 23746 0.6220 +6103 24148 0.4370 +6103 25794 0.7260 +6103 25861 0.7940 +6103 25886 0.4350 +6103 26121 0.8240 +6103 26160 0.5320 +6103 27019 0.8010 +6103 27031 0.4110 +6103 27130 0.4020 +6103 27289 0.4780 +6103 50939 0.7030 +6103 51259 0.4050 +6103 51314 0.7200 +6103 51364 0.4120 +6103 51503 0.5260 +6103 51806 0.5310 +6103 54097 0.6930 +6103 54714 0.7380 +6103 54768 0.4310 +6103 54806 0.5770 +6103 54875 0.4310 +6103 54919 0.4810 +6103 54954 0.4310 +6103 55036 0.5550 +6103 55130 0.4100 +6103 55167 0.4250 +6103 55172 0.7580 +6103 55212 0.4210 +6103 55812 0.8500 +6103 55975 0.6250 +6103 56623 0.5430 +6103 56683 0.4110 +6103 57096 0.9990 +6103 57545 0.6410 +6103 60506 0.7270 +6103 64218 0.6630 +6103 64446 0.7450 +6103 79583 0.4720 +6103 79783 0.5760 +6103 79809 0.5120 +6103 79947 0.4760 +6103 80184 0.9810 +6103 83992 0.5320 +6103 84059 0.4330 +6103 84140 0.6160 +6103 84668 0.4560 +6103 84839 0.5100 +6103 85477 0.6930 +6103 85478 0.5100 +6103 89765 0.4850 +6103 91147 0.5030 +6103 91860 0.5320 +6103 92211 0.5070 +6103 92749 0.5220 +6103 93233 0.4920 +6103 94137 0.5960 +6103 115948 0.4080 +6103 117177 0.4580 +6103 123872 0.7430 +6103 130557 0.6550 +6103 131890 0.5000 +6103 136647 0.5770 +6103 136991 0.4920 +6103 139212 0.4530 +6103 145226 0.7630 +6103 157657 0.5800 +6103 161582 0.4680 +6103 163688 0.5320 +6103 167691 0.5720 +6103 169522 0.5120 +6103 200894 0.4940 +6103 221421 0.7780 +6103 254173 0.5060 +6103 261734 0.9660 +6103 282808 0.5550 +6103 282809 0.6190 +6103 283383 0.7160 +6103 285381 0.5370 +6103 285440 0.4450 +6103 339829 0.5290 +6103 345895 0.8080 +6103 346007 0.8370 +6103 352909 0.5160 +6103 375298 0.7870 +6103 388389 0.6270 +6103 388939 0.7480 +6103 402569 0.5930 +6103 768206 0.7480 +6117 6118 0.9990 +6117 6119 0.9990 +6117 6124 0.7380 +6117 6143 0.5130 +6117 6233 0.6110 +6117 6234 0.4020 +6117 6240 0.7080 +6117 6241 0.4170 +6117 6596 0.7930 +6117 6612 0.6040 +6117 6613 0.8010 +6117 6742 0.8060 +6117 7013 0.6810 +6117 7014 0.5510 +6117 7015 0.8330 +6117 7019 0.4110 +6117 7150 0.4260 +6117 7153 0.4510 +6117 7155 0.4090 +6117 7156 0.9980 +6117 7157 0.9990 +6117 7158 0.8730 +6117 7311 0.5030 +6117 7314 0.5090 +6117 7316 0.6180 +6117 7318 0.5320 +6117 7320 0.6120 +6117 7329 0.5790 +6117 7334 0.6030 +6117 7336 0.5650 +6117 7341 0.6180 +6117 7353 0.5190 +6117 7398 0.6060 +6117 7415 0.6120 +6117 7486 0.9990 +6117 7507 0.9840 +6117 7508 0.8190 +6117 7515 0.7590 +6117 7516 0.6200 +6117 7517 0.7860 +6117 7520 0.7220 +6117 7706 0.6410 +6117 7979 0.8710 +6117 8078 0.6790 +6117 8290 0.7170 +6117 8317 0.6340 +6117 8318 0.8420 +6117 8340 0.5750 +6117 8341 0.5740 +6117 8342 0.5750 +6117 8345 0.5750 +6117 8347 0.5720 +6117 8348 0.5810 +6117 8349 0.6520 +6117 8350 0.4930 +6117 8356 0.4650 +6117 8361 0.8120 +6117 8438 0.4250 +6117 8450 0.5310 +6117 8451 0.5530 +6117 8886 0.4200 +6117 8900 0.7030 +6117 8914 0.9970 +6117 8924 0.7570 +6117 8940 0.7590 +6117 8970 0.5740 +6117 8975 0.4790 +6117 9100 0.5300 +6117 9156 0.9220 +6117 9212 0.4290 +6117 9246 0.5130 +6117 9400 0.6770 +6117 9401 0.9160 +6117 9540 0.7470 +6117 9557 0.7160 +6117 9636 0.5140 +6117 9656 0.8120 +6117 9768 0.5200 +6117 9978 0.5240 +6117 10038 0.6620 +6117 10111 0.7790 +6117 10155 0.4510 +6117 10286 0.4900 +6117 10459 0.6470 +6117 10524 0.5750 +6117 10535 0.4060 +6117 10592 0.5590 +6117 10635 0.4860 +6117 10693 0.5040 +6117 10714 0.9280 +6117 10735 0.4590 +6117 10926 0.5840 +6117 10933 0.4330 +6117 11044 0.5720 +6117 11073 0.8890 +6117 11144 0.7900 +6117 11169 0.5870 +6117 11200 0.6120 +6117 11201 0.5610 +6117 22944 0.5930 +6117 22976 0.6380 +6117 23137 0.5350 +6117 23411 0.4120 +6117 23476 0.4380 +6117 23586 0.4120 +6117 23594 0.8210 +6117 23595 0.5660 +6117 23626 0.6450 +6117 23649 0.9390 +6117 25842 0.4650 +6117 25898 0.5040 +6117 25913 0.7720 +6117 26046 0.6120 +6117 26054 0.6390 +6117 26277 0.6550 +6117 27030 0.5470 +6117 27339 0.8250 +6117 27343 0.7210 +6117 27434 0.6620 +6117 29089 0.5860 +6117 29893 0.4950 +6117 29935 0.9960 +6117 29980 0.9170 +6117 50485 0.9960 +6117 51052 0.4180 +6117 51119 0.5990 +6117 51426 0.6600 +6117 51455 0.6420 +6117 51514 0.5780 +6117 51548 0.5880 +6117 51807 0.4140 +6117 54107 0.6310 +6117 54145 0.5760 +6117 54386 0.6190 +6117 54465 0.7700 +6117 54888 0.4590 +6117 54962 0.9970 +6117 55107 0.4950 +6117 55120 0.5880 +6117 55159 0.9970 +6117 55215 0.6530 +6117 55388 0.7280 +6117 55536 0.5210 +6117 55611 0.4110 +6117 55666 0.5070 +6117 55723 0.4560 +6117 56154 0.4590 +6117 56655 0.5470 +6117 56852 0.8070 +6117 57082 0.4980 +6117 57505 0.6670 +6117 57599 0.5840 +6117 57697 0.9990 +6117 57804 0.6460 +6117 58493 0.4390 +6117 60528 0.4590 +6117 63922 0.7030 +6117 63967 0.9980 +6117 64135 0.4170 +6117 64789 0.4680 +6117 65123 0.4430 +6117 79035 0.4050 +6117 79132 0.4120 +6117 79631 0.4960 +6117 79728 0.6120 +6117 79915 0.5030 +6117 79968 0.6540 +6117 79991 0.9980 +6117 80010 0.9990 +6117 80119 0.5300 +6117 80169 0.5110 +6117 80198 0.6540 +6117 80233 0.6040 +6117 80755 0.5690 +6117 81620 0.5700 +6117 83695 0.5580 +6117 83932 0.6700 +6117 83990 0.9380 +6117 84057 0.5150 +6117 84126 0.9990 +6117 84268 0.8530 +6117 84296 0.9960 +6117 84464 0.7110 +6117 84515 0.7520 +6117 84893 0.6430 +6117 85236 0.5740 +6117 91442 0.7240 +6117 91607 0.5910 +6117 92797 0.9960 +6117 113510 0.4860 +6117 116028 0.7830 +6117 124739 0.5000 +6117 128312 0.5750 +6117 134637 0.6970 +6117 135458 0.4220 +6117 144715 0.7550 +6117 151987 0.4540 +6117 163786 0.6530 +6117 199990 0.5710 +6117 201254 0.9970 +6117 201973 0.9990 +6117 221302 0.7620 +6117 246243 0.5130 +6117 254394 0.6310 +6117 254528 0.4060 +6117 255626 0.5740 +6117 378708 0.9970 +6117 389493 0.4370 +6117 404672 0.6530 +6117 440093 0.4570 +6117 440686 0.4570 +6117 653604 0.4720 +6117 100533467 0.4290 +6117 100885850 0.5200 +6118 6119 0.9990 +6118 6233 0.5460 +6118 6240 0.6980 +6118 6241 0.5700 +6118 6596 0.5820 +6118 6612 0.5340 +6118 6613 0.5480 +6118 6742 0.6890 +6118 6749 0.6890 +6118 6774 0.6580 +6118 7013 0.6630 +6118 7014 0.5730 +6118 7156 0.9980 +6118 7157 0.7740 +6118 7158 0.8940 +6118 7298 0.4680 +6118 7311 0.5590 +6118 7314 0.5630 +6118 7316 0.5750 +6118 7318 0.5120 +6118 7319 0.4780 +6118 7320 0.5500 +6118 7334 0.5940 +6118 7336 0.5310 +6118 7341 0.5760 +6118 7353 0.5840 +6118 7374 0.9900 +6118 7398 0.6440 +6118 7415 0.6880 +6118 7486 0.9980 +6118 7507 0.9950 +6118 7508 0.9000 +6118 7515 0.6410 +6118 7516 0.5340 +6118 7517 0.6340 +6118 7518 0.4370 +6118 7520 0.7580 +6118 7706 0.5160 +6118 7979 0.5680 +6118 8290 0.7550 +6118 8317 0.6990 +6118 8318 0.8990 +6118 8340 0.5960 +6118 8341 0.5950 +6118 8342 0.5980 +6118 8345 0.5960 +6118 8347 0.5910 +6118 8348 0.6020 +6118 8349 0.6410 +6118 8350 0.4800 +6118 8356 0.5380 +6118 8361 0.8080 +6118 8450 0.5670 +6118 8451 0.6190 +6118 8900 0.6760 +6118 8914 0.9950 +6118 8924 0.5320 +6118 8940 0.6740 +6118 8970 0.5950 +6118 9025 0.4470 +6118 9100 0.5210 +6118 9156 0.8540 +6118 9212 0.4380 +6118 9246 0.5210 +6118 9400 0.4100 +6118 9401 0.5040 +6118 9557 0.7680 +6118 9636 0.5720 +6118 9656 0.5630 +6118 9768 0.5160 +6118 9978 0.5970 +6118 10038 0.7880 +6118 10111 0.5710 +6118 10286 0.4430 +6118 10309 0.6720 +6118 10459 0.6560 +6118 10524 0.5970 +6118 10535 0.4980 +6118 10635 0.5280 +6118 10714 0.9280 +6118 10926 0.5580 +6118 10951 0.5100 +6118 11073 0.8150 +6118 11100 0.5240 +6118 11144 0.5890 +6118 11169 0.4800 +6118 11198 0.6970 +6118 11200 0.6900 +6118 11201 0.6490 +6118 22984 0.4290 +6118 23468 0.4860 +6118 23476 0.4010 +6118 23594 0.6170 +6118 23595 0.6020 +6118 23626 0.6240 +6118 23649 0.9400 +6118 25898 0.5040 +6118 25913 0.5850 +6118 26277 0.6040 +6118 27030 0.5090 +6118 27339 0.7590 +6118 27343 0.4310 +6118 29089 0.5750 +6118 29893 0.5260 +6118 29935 0.9300 +6118 29946 0.8680 +6118 29950 0.7630 +6118 29980 0.9090 +6118 50484 0.4770 +6118 50485 0.9990 +6118 51426 0.5260 +6118 51455 0.6060 +6118 51514 0.6070 +6118 54107 0.6570 +6118 54145 0.5970 +6118 54386 0.5990 +6118 54465 0.8620 +6118 54962 0.9960 +6118 55120 0.5550 +6118 55159 0.9960 +6118 55215 0.6490 +6118 55388 0.6240 +6118 55666 0.5410 +6118 56655 0.5950 +6118 56852 0.7290 +6118 56941 0.5580 +6118 57223 0.4140 +6118 57599 0.5380 +6118 57697 0.9980 +6118 57804 0.5430 +6118 63892 0.4040 +6118 63967 0.9980 +6118 78995 0.4090 +6118 79728 0.8210 +6118 79968 0.6840 +6118 80010 0.9990 +6118 80198 0.5130 +6118 80233 0.5660 +6118 81620 0.5560 +6118 83695 0.5490 +6118 83932 0.7230 +6118 83990 0.6590 +6118 84057 0.4610 +6118 84083 0.4300 +6118 84126 0.9790 +6118 84268 0.8040 +6118 84296 0.9950 +6118 84515 0.6300 +6118 84893 0.4470 +6118 85236 0.5960 +6118 91442 0.6740 +6118 92797 0.9950 +6118 116028 0.7370 +6118 124739 0.5070 +6118 128312 0.5960 +6118 133482 0.4960 +6118 144715 0.5720 +6118 151987 0.7560 +6118 199990 0.5550 +6118 201254 0.9970 +6118 201973 0.9960 +6118 221302 0.6660 +6118 246243 0.4790 +6118 254528 0.6470 +6118 255626 0.5940 +6118 378708 0.9970 +6118 404672 0.6770 +6118 440093 0.5300 +6118 440686 0.5300 +6118 653604 0.5370 +6119 6233 0.5640 +6119 6596 0.4790 +6119 6612 0.5570 +6119 6613 0.5950 +6119 6636 0.4750 +6119 6637 0.5000 +6119 6742 0.7770 +6119 6790 0.5210 +6119 6949 0.5240 +6119 7013 0.6210 +6119 7014 0.5640 +6119 7156 0.9980 +6119 7157 0.5920 +6119 7311 0.5030 +6119 7314 0.5110 +6119 7316 0.5250 +6119 7318 0.5110 +6119 7319 0.5490 +6119 7320 0.5570 +6119 7334 0.6100 +6119 7336 0.5850 +6119 7341 0.5490 +6119 7353 0.5140 +6119 7398 0.5850 +6119 7415 0.5320 +6119 7486 0.9980 +6119 7507 0.9000 +6119 7508 0.5940 +6119 7515 0.6060 +6119 7516 0.6710 +6119 7517 0.6350 +6119 7520 0.7500 +6119 7706 0.5040 +6119 7979 0.6790 +6119 8290 0.5750 +6119 8317 0.7290 +6119 8318 0.7780 +6119 8340 0.5040 +6119 8341 0.5030 +6119 8342 0.5070 +6119 8345 0.5160 +6119 8347 0.5070 +6119 8348 0.5070 +6119 8349 0.5460 +6119 8361 0.7580 +6119 8438 0.4430 +6119 8450 0.5200 +6119 8451 0.5330 +6119 8833 0.4270 +6119 8914 0.9950 +6119 8924 0.5450 +6119 8940 0.6930 +6119 8970 0.5040 +6119 9100 0.5070 +6119 9156 0.7990 +6119 9170 0.4100 +6119 9232 0.4300 +6119 9246 0.5360 +6119 9557 0.6720 +6119 9636 0.5400 +6119 9768 0.6160 +6119 9978 0.6460 +6119 10038 0.6580 +6119 10111 0.5350 +6119 10459 0.6320 +6119 10465 0.4120 +6119 10524 0.5420 +6119 10535 0.4630 +6119 10635 0.5800 +6119 10714 0.9510 +6119 10926 0.6390 +6119 11073 0.7330 +6119 11077 0.4970 +6119 11144 0.5350 +6119 11201 0.6070 +6119 23566 0.6620 +6119 23594 0.7540 +6119 23595 0.6170 +6119 23626 0.6420 +6119 23649 0.9310 +6119 23658 0.5810 +6119 25898 0.4990 +6119 25913 0.6290 +6119 26046 0.6180 +6119 26277 0.6700 +6119 27030 0.6650 +6119 27258 0.5140 +6119 27339 0.5940 +6119 27343 0.5220 +6119 28998 0.4650 +6119 29089 0.7480 +6119 29893 0.5280 +6119 29935 0.9990 +6119 29980 0.9080 +6119 50485 0.9960 +6119 51018 0.4350 +6119 51035 0.5150 +6119 51053 0.4750 +6119 51426 0.5050 +6119 51455 0.5640 +6119 51514 0.5750 +6119 51659 0.4100 +6119 54107 0.6020 +6119 54145 0.4990 +6119 54386 0.5690 +6119 54465 0.5270 +6119 54937 0.5450 +6119 54962 0.9970 +6119 55120 0.6080 +6119 55159 0.9970 +6119 55215 0.7070 +6119 55388 0.6650 +6119 55666 0.5000 +6119 55898 0.4390 +6119 56154 0.4580 +6119 56655 0.6510 +6119 56852 0.6590 +6119 57599 0.5130 +6119 57697 0.6580 +6119 57804 0.5800 +6119 58493 0.4270 +6119 63967 0.9980 +6119 64421 0.4050 +6119 79023 0.4990 +6119 79035 0.4020 +6119 79728 0.5840 +6119 79968 0.5750 +6119 79991 0.9970 +6119 80010 0.9980 +6119 80169 0.5070 +6119 80233 0.5750 +6119 81620 0.4540 +6119 83695 0.5300 +6119 83932 0.5880 +6119 83990 0.5760 +6119 84057 0.5410 +6119 84126 0.9070 +6119 84296 0.9950 +6119 84515 0.6420 +6119 84690 0.4810 +6119 85236 0.5080 +6119 91442 0.5730 +6119 91607 0.5970 +6119 92797 0.9950 +6119 116028 0.8020 +6119 124739 0.4990 +6119 128312 0.5000 +6119 144715 0.6110 +6119 146956 0.4230 +6119 151987 0.4090 +6119 163786 0.4220 +6119 199990 0.5700 +6119 201254 0.5580 +6119 201973 0.9960 +6119 221302 0.6590 +6119 221830 0.9160 +6119 254528 0.6690 +6119 255626 0.4990 +6119 378708 0.5830 +6119 402381 0.6830 +6119 404672 0.6770 +6119 100526761 0.5480 +6119 100533467 0.4880 +6120 6470 0.4210 +6120 6472 0.4900 +6120 6652 0.5570 +6120 6888 0.9610 +6120 7086 0.9940 +6120 7167 0.7730 +6120 7298 0.4750 +6120 7371 0.4490 +6120 7372 0.4040 +6120 8050 0.4080 +6120 8277 0.9900 +6120 8664 0.7710 +6120 8697 0.5190 +6120 8789 0.5500 +6120 8802 0.5180 +6120 8803 0.4230 +6120 8833 0.4590 +6120 9104 0.4460 +6120 9380 0.4140 +6120 9563 0.8550 +6120 9801 0.4110 +6120 9942 0.9770 +6120 10020 0.4860 +6120 10056 0.4300 +6120 10269 0.5760 +6120 10352 0.4060 +6120 10873 0.4090 +6120 22934 0.9980 +6120 25796 0.7170 +6120 26273 0.5070 +6120 27231 0.4140 +6120 51071 0.6570 +6120 54963 0.4180 +6120 54981 0.4140 +6120 55157 0.4550 +6120 55276 0.6060 +6120 55277 0.4390 +6120 55699 0.4570 +6120 60558 0.4070 +6120 64080 0.7200 +6120 79717 0.4490 +6120 83549 0.4910 +6120 84076 0.9910 +6120 84245 0.6820 +6120 123263 0.5240 +6120 129831 0.7530 +6120 130589 0.5420 +6120 142940 0.4230 +6120 197258 0.4070 +6120 221823 0.5960 +6120 283209 0.4020 +6120 414328 0.8080 +6120 729020 0.9000 +6121 6247 0.5390 +6121 6295 0.6690 +6121 6490 0.4460 +6121 6785 0.4220 +6121 7082 0.6230 +6121 7287 0.9180 +6121 7299 0.5750 +6121 7399 0.6870 +6121 7401 0.5090 +6121 7439 0.8910 +6121 8228 0.9080 +6121 8694 0.9310 +6121 8842 0.5070 +6121 9129 0.6820 +6121 9227 0.9970 +6121 9600 0.6350 +6121 9626 0.5070 +6121 9657 0.5820 +6121 10002 0.7730 +6121 10083 0.4040 +6121 10210 0.6500 +6121 10461 0.8960 +6121 10594 0.6970 +6121 10692 0.5210 +6121 23020 0.6250 +6121 23322 0.5510 +6121 23746 0.9020 +6121 25794 0.6840 +6121 26121 0.7470 +6121 50700 0.6500 +6121 50939 0.6700 +6121 51050 0.5860 +6121 51109 0.9600 +6121 54714 0.7030 +6121 54831 0.4370 +6121 54979 0.4160 +6121 55635 0.5640 +6121 55812 0.8600 +6121 55975 0.5940 +6121 57010 0.4590 +6121 57096 0.8610 +6121 57665 0.4030 +6121 64218 0.6110 +6121 64220 0.4960 +6121 64802 0.5260 +6121 79947 0.4520 +6121 80184 0.8480 +6121 83552 0.5710 +6121 84140 0.5140 +6121 92211 0.4050 +6121 92292 0.4920 +6121 94233 0.8510 +6121 115861 0.4470 +6121 121214 0.6150 +6121 130557 0.6540 +6121 131890 0.4930 +6121 145226 0.9320 +6121 149461 0.4410 +6121 157506 0.9550 +6121 157657 0.4110 +6121 158835 0.9190 +6121 167691 0.7950 +6121 169522 0.4340 +6121 285440 0.4120 +6121 338917 0.5200 +6121 343035 0.8400 +6121 346007 0.7740 +6121 375298 0.7740 +6121 388939 0.7000 +6121 768206 0.7540 +6122 6123 0.9020 +6122 6124 0.9990 +6122 6125 0.9990 +6122 6128 0.9990 +6122 6129 0.9990 +6122 6130 0.9990 +6122 6132 0.9990 +6122 6133 0.9990 +6122 6135 0.9990 +6122 6136 0.9990 +6122 6137 0.9990 +6122 6138 0.9990 +6122 6139 0.9990 +6122 6141 0.9990 +6122 6142 0.9990 +6122 6143 0.9990 +6122 6144 0.9990 +6122 6146 0.9990 +6122 6147 0.9990 +6122 6150 0.6620 +6122 6152 0.9990 +6122 6154 0.9990 +6122 6155 0.9990 +6122 6156 0.9990 +6122 6157 0.9990 +6122 6158 0.9990 +6122 6159 0.9990 +6122 6160 0.9990 +6122 6161 0.9990 +6122 6164 0.9990 +6122 6165 0.9990 +6122 6166 0.9920 +6122 6167 0.9980 +6122 6168 0.9990 +6122 6169 0.9990 +6122 6170 0.9930 +6122 6171 0.7430 +6122 6173 0.9800 +6122 6175 0.9990 +6122 6176 0.9990 +6122 6181 0.9990 +6122 6182 0.9730 +6122 6183 0.8920 +6122 6184 0.5900 +6122 6187 0.9990 +6122 6188 0.9990 +6122 6189 0.9990 +6122 6191 0.9970 +6122 6192 0.9750 +6122 6193 0.9990 +6122 6194 0.9990 +6122 6201 0.9990 +6122 6202 0.9990 +6122 6203 0.9990 +6122 6204 0.9980 +6122 6205 0.9990 +6122 6206 0.9990 +6122 6207 0.9990 +6122 6208 0.9990 +6122 6209 0.9990 +6122 6210 0.9970 +6122 6217 0.9990 +6122 6218 0.9980 +6122 6222 0.9990 +6122 6223 0.9990 +6122 6224 0.9990 +6122 6227 0.9980 +6122 6228 0.9990 +6122 6229 0.9990 +6122 6230 0.9990 +6122 6231 0.9990 +6122 6232 0.9970 +6122 6233 0.9970 +6122 6234 0.9990 +6122 6235 0.9980 +6122 6499 0.5600 +6122 6613 0.4450 +6122 6627 0.5130 +6122 6635 0.6180 +6122 6648 0.6550 +6122 6687 0.5040 +6122 6726 0.9060 +6122 6727 0.9180 +6122 6728 0.8960 +6122 6729 0.9760 +6122 6730 0.9590 +6122 6731 0.9360 +6122 6734 0.9350 +6122 6742 0.6290 +6122 6780 0.4250 +6122 6838 0.5310 +6122 6894 0.4940 +6122 6897 0.5020 +6122 6924 0.4650 +6122 6950 0.5840 +6122 7153 0.4400 +6122 7157 0.4150 +6122 7167 0.4570 +6122 7178 0.7670 +6122 7203 0.5290 +6122 7264 0.4340 +6122 7283 0.4780 +6122 7284 0.9800 +6122 7311 0.9960 +6122 7314 0.6330 +6122 7316 0.6480 +6122 7403 0.4600 +6122 7404 0.4600 +6122 7407 0.4810 +6122 7415 0.5210 +6122 7458 0.6370 +6122 7494 0.8140 +6122 7818 0.8410 +6122 7846 0.5010 +6122 7866 0.5520 +6122 7919 0.5300 +6122 8189 0.8440 +6122 8225 0.7350 +6122 8242 0.4220 +6122 8260 0.6730 +6122 8266 0.6160 +6122 8284 0.4180 +6122 8361 0.4460 +6122 8382 0.4540 +6122 8565 0.5710 +6122 8568 0.6740 +6122 8607 0.4910 +6122 8624 0.6680 +6122 8638 0.5590 +6122 8653 0.4070 +6122 8661 0.5300 +6122 8662 0.6820 +6122 8663 0.5500 +6122 8664 0.6630 +6122 8665 0.6640 +6122 8666 0.5520 +6122 8667 0.5500 +6122 8668 0.8190 +6122 8721 0.8320 +6122 8813 0.4490 +6122 8886 0.8820 +6122 8894 0.7830 +6122 9045 0.9990 +6122 9086 0.7320 +6122 9132 0.4760 +6122 9141 0.6510 +6122 9147 0.8830 +6122 9168 0.4400 +6122 9188 0.6810 +6122 9312 0.4860 +6122 9343 0.8370 +6122 9349 0.9990 +6122 9374 0.4540 +6122 9401 0.5640 +6122 9416 0.4150 +6122 9465 0.4410 +6122 9528 0.4540 +6122 9533 0.8660 +6122 9553 0.9680 +6122 9584 0.4570 +6122 9617 0.4820 +6122 9636 0.6160 +6122 9652 0.4970 +6122 9669 0.9850 +6122 9732 0.9170 +6122 9775 0.8220 +6122 9782 0.4030 +6122 9789 0.4310 +6122 9790 0.8690 +6122 9801 0.9680 +6122 9858 0.7690 +6122 9875 0.4730 +6122 9879 0.4990 +6122 9933 0.5400 +6122 10061 0.5740 +6122 10075 0.4100 +6122 10102 0.7450 +6122 10135 0.4910 +6122 10153 0.4100 +6122 10200 0.4150 +6122 10201 0.5160 +6122 10209 0.5260 +6122 10212 0.4380 +6122 10236 0.6810 +6122 10399 0.9990 +6122 10412 0.9550 +6122 10430 0.8240 +6122 10438 0.6430 +6122 10473 0.8350 +6122 10480 0.5710 +6122 10492 0.7000 +6122 10514 0.5730 +6122 10521 0.4200 +6122 10528 0.6860 +6122 10537 0.4780 +6122 10557 0.7130 +6122 10574 0.8000 +6122 10575 0.7390 +6122 10576 0.7400 +6122 10606 0.5390 +6122 10667 0.4220 +6122 10694 0.6690 +6122 10730 0.5480 +6122 10765 0.4180 +6122 10767 0.8840 +6122 10939 0.5080 +6122 10952 0.9180 +6122 10964 0.4610 +6122 10969 0.9540 +6122 10985 0.8380 +6122 10988 0.7600 +6122 11047 0.5040 +6122 11128 0.7950 +6122 11218 0.4220 +6122 11222 0.8390 +6122 11224 0.9990 +6122 11269 0.4070 +6122 11325 0.4190 +6122 22894 0.5160 +6122 22927 0.7680 +6122 22944 0.5840 +6122 22948 0.7310 +6122 22984 0.9750 +6122 23029 0.5710 +6122 23076 0.8030 +6122 23135 0.4610 +6122 23148 0.6690 +6122 23173 0.7050 +6122 23181 0.4100 +6122 23195 0.6230 +6122 23204 0.8710 +6122 23212 0.7500 +6122 23223 0.4470 +6122 23246 0.9390 +6122 23252 0.6790 +6122 23341 0.5100 +6122 23363 0.4240 +6122 23378 0.4320 +6122 23405 0.6150 +6122 23451 0.5780 +6122 23476 0.5130 +6122 23478 0.4410 +6122 23480 0.8820 +6122 23481 0.9560 +6122 23517 0.7110 +6122 23521 0.9990 +6122 23560 0.9860 +6122 23608 0.4300 +6122 23640 0.7900 +6122 23708 0.5520 +6122 23732 0.6010 +6122 24140 0.4460 +6122 25789 0.4350 +6122 25873 0.9990 +6122 25885 0.8160 +6122 25914 0.4280 +6122 26046 0.8690 +6122 26135 0.9820 +6122 26155 0.8330 +6122 26156 0.8460 +6122 26168 0.5570 +6122 26227 0.4130 +6122 26251 0.4760 +6122 26271 0.4820 +6122 26289 0.4720 +6122 26354 0.7370 +6122 26589 0.8450 +6122 26986 0.8530 +6122 27000 0.6440 +6122 27012 0.4760 +6122 27043 0.6420 +6122 27079 0.4970 +6122 27430 0.4600 +6122 28972 0.4140 +6122 28991 0.5050 +6122 28998 0.8730 +6122 29083 0.6690 +6122 29088 0.5900 +6122 29093 0.8390 +6122 29102 0.6350 +6122 29789 0.4530 +6122 29889 0.9790 +6122 29922 0.4540 +6122 29927 0.9810 +6122 29960 0.4460 +6122 29978 0.4450 +6122 29979 0.4120 +6122 29997 0.9440 +6122 50808 0.4930 +6122 50814 0.4310 +6122 51008 0.4490 +6122 51018 0.6210 +6122 51021 0.9700 +6122 51023 0.6600 +6122 51042 0.9110 +6122 51065 0.9060 +6122 51068 0.9790 +6122 51069 0.8390 +6122 51073 0.8420 +6122 51081 0.8750 +6122 51116 0.7770 +6122 51119 0.6700 +6122 51121 0.9950 +6122 51126 0.4440 +6122 51149 0.9120 +6122 51154 0.9730 +6122 51187 0.9890 +6122 51202 0.4770 +6122 51224 0.4540 +6122 51263 0.5340 +6122 51264 0.9700 +6122 51314 0.4700 +6122 51319 0.9280 +6122 51386 0.6420 +6122 51388 0.8850 +6122 51398 0.5410 +6122 51409 0.4020 +6122 51493 0.5340 +6122 51574 0.4730 +6122 51602 0.5340 +6122 51649 0.4090 +6122 51727 0.4850 +6122 53918 0.9030 +6122 54059 0.5730 +6122 54148 0.4810 +6122 54463 0.5180 +6122 54464 0.6850 +6122 54465 0.4510 +6122 54475 0.6350 +6122 54499 0.8220 +6122 54514 0.4200 +6122 54516 0.4960 +6122 54517 0.4770 +6122 54552 0.7040 +6122 54555 0.4530 +6122 54596 0.5470 +6122 54606 0.6790 +6122 54663 0.9140 +6122 54881 0.7370 +6122 54948 0.8440 +6122 54965 0.4470 +6122 55027 0.5450 +6122 55052 0.9710 +6122 55139 0.5430 +6122 55143 0.4360 +6122 55153 0.5820 +6122 55168 0.6280 +6122 55173 0.8910 +6122 55176 0.8700 +6122 55178 0.5000 +6122 55272 0.8960 +6122 55299 0.8710 +6122 55308 0.4270 +6122 55316 0.9170 +6122 55319 0.8080 +6122 55324 0.5890 +6122 55341 0.9700 +6122 55510 0.4070 +6122 55591 0.6970 +6122 55607 0.5210 +6122 55629 0.5110 +6122 55646 0.8330 +6122 55651 0.7510 +6122 55703 0.7740 +6122 55759 0.9500 +6122 55781 0.8870 +6122 55794 0.4120 +6122 55802 0.5210 +6122 55854 0.6430 +6122 55969 0.4290 +6122 56342 0.6290 +6122 56479 0.4760 +6122 56648 0.8300 +6122 56893 0.4020 +6122 56902 0.4690 +6122 56926 0.8230 +6122 56965 0.6800 +6122 57003 0.8340 +6122 57062 0.4920 +6122 57129 0.8290 +6122 57136 0.6750 +6122 57418 0.7780 +6122 57696 0.6500 +6122 58477 0.8240 +6122 58505 0.5530 +6122 60488 0.8410 +6122 60558 0.6800 +6122 60559 0.4010 +6122 60678 0.9470 +6122 63875 0.9720 +6122 63931 0.8520 +6122 64146 0.7620 +6122 64221 0.4990 +6122 64318 0.8080 +6122 64374 0.7750 +6122 64425 0.5090 +6122 64432 0.7880 +6122 64434 0.4420 +6122 64794 0.4650 +6122 64960 0.8280 +6122 64963 0.8370 +6122 64965 0.9750 +6122 64968 0.9700 +6122 64969 0.8920 +6122 64975 0.7860 +6122 64976 0.7900 +6122 64978 0.5350 +6122 64979 0.9710 +6122 64981 0.8200 +6122 64983 0.9440 +6122 65003 0.7840 +6122 65005 0.9720 +6122 65008 0.8490 +6122 65080 0.5890 +6122 65121 0.5800 +6122 65122 0.5800 +6122 65993 0.4930 +6122 79009 0.4920 +6122 79036 0.4600 +6122 79039 0.5040 +6122 79048 0.8130 +6122 79084 0.4590 +6122 79091 0.4240 +6122 79159 0.5050 +6122 79590 0.8410 +6122 79609 0.4210 +6122 79631 0.8390 +6122 79668 0.6750 +6122 79707 0.5960 +6122 79728 0.6150 +6122 79922 0.4930 +6122 80135 0.8520 +6122 80146 0.4330 +6122 80155 0.4170 +6122 80218 0.6220 +6122 80222 0.4650 +6122 80270 0.4290 +6122 80349 0.4680 +6122 81875 0.4980 +6122 81887 0.5320 +6122 83448 0.4740 +6122 83479 0.4080 +6122 83743 0.9850 +6122 84154 0.8640 +6122 84172 0.7730 +6122 84193 0.4750 +6122 84273 0.5090 +6122 84298 0.8280 +6122 84340 0.4520 +6122 84365 0.8520 +6122 84545 0.7890 +6122 84549 0.8880 +6122 84705 0.5860 +6122 84779 0.4830 +6122 84851 0.5070 +6122 84881 0.5140 +6122 84946 0.4300 +6122 84993 0.4300 +6122 85476 0.8490 +6122 85865 0.4120 +6122 87178 0.6760 +6122 90121 0.4090 +6122 90313 0.5230 +6122 90441 0.9030 +6122 90459 0.4350 +6122 90624 0.4760 +6122 90701 0.4230 +6122 91408 0.4460 +6122 91574 0.4820 +6122 91646 0.4070 +6122 91875 0.8740 +6122 92170 0.4860 +6122 92196 0.6180 +6122 92342 0.8000 +6122 92399 0.9110 +6122 93107 0.4760 +6122 93517 0.4290 +6122 93550 0.4980 +6122 93974 0.4610 +6122 113000 0.4960 +6122 114781 0.4610 +6122 114987 0.8940 +6122 115098 0.8770 +6122 115416 0.7920 +6122 116541 0.5340 +6122 116832 0.9360 +6122 117246 0.8200 +6122 120892 0.5170 +6122 122481 0.4720 +6122 122622 0.6390 +6122 123283 0.4660 +6122 124454 0.6300 +6122 124995 0.5490 +6122 126402 0.8570 +6122 133396 0.4070 +6122 140032 0.8830 +6122 140801 0.9970 +6122 143244 0.8330 +6122 146212 0.6470 +6122 149478 0.4610 +6122 151194 0.4270 +6122 157310 0.5240 +6122 158067 0.4720 +6122 164153 0.4780 +6122 168400 0.4070 +6122 169522 0.4760 +6122 170850 0.4760 +6122 200172 0.4070 +6122 200916 0.9330 +6122 201595 0.5810 +6122 203068 0.8330 +6122 219927 0.9700 +6122 221078 0.5830 +6122 221264 0.4720 +6122 221710 0.4340 +6122 221823 0.4650 +6122 254268 0.8450 +6122 255308 0.5160 +6122 283518 0.4760 +6122 285367 0.4960 +6122 285855 0.9490 +6122 317781 0.4880 +6122 342538 0.9310 +6122 343068 0.5800 +6122 343070 0.5800 +6122 344758 0.4070 +6122 345051 0.6010 +6122 345630 0.8460 +6122 347487 0.9310 +6122 374659 0.7690 +6122 387129 0.8560 +6122 390999 0.5800 +6122 391002 0.5800 +6122 400735 0.5800 +6122 400736 0.5800 +6122 440560 0.5800 +6122 440561 0.5800 +6122 441873 0.5800 +6122 548645 0.5100 +6122 641776 0.6890 +6122 643909 0.6890 +6122 644591 0.5080 +6122 645051 0.6660 +6122 645073 0.6660 +6122 645142 0.5080 +6122 645359 0.5800 +6122 653505 0.5120 +6122 653598 0.5080 +6122 653619 0.5800 +6122 654364 0.4950 +6122 692312 0.5040 +6122 728524 0.6890 +6122 728945 0.5080 +6122 729396 0.6660 +6122 729422 0.6660 +6122 729428 0.6660 +6122 729431 0.6660 +6122 729442 0.6660 +6122 729447 0.6660 +6122 729528 0.5800 +6122 730262 0.5080 +6122 100008586 0.6660 +6122 100128731 0.5200 +6122 100130890 0.4860 +6122 100131187 0.4970 +6122 100132399 0.6660 +6122 100287482 0.7690 +6122 100505478 0.8050 +6122 100526842 0.9910 +6122 100527943 0.4290 +6122 100529097 0.8600 +6122 100529239 0.9800 +6122 100996746 0.6890 +6122 101929983 0.5800 +6122 102724473 0.6660 +6122 105180390 0.6890 +6122 105180391 0.6890 +6122 105371242 0.5080 +6122 114483834 0.5930 +6123 6124 0.9870 +6123 6125 0.9880 +6123 6128 0.9920 +6123 6129 0.9610 +6123 6130 0.9890 +6123 6132 0.9910 +6123 6133 0.9860 +6123 6135 0.9880 +6123 6136 0.9830 +6123 6137 0.9870 +6123 6138 0.9900 +6123 6139 0.9350 +6123 6141 0.9870 +6123 6142 0.9880 +6123 6143 0.9930 +6123 6144 0.9890 +6123 6146 0.9170 +6123 6147 0.9910 +6123 6150 0.6520 +6123 6152 0.9870 +6123 6154 0.9540 +6123 6155 0.9870 +6123 6156 0.9870 +6123 6157 0.9870 +6123 6158 0.9610 +6123 6159 0.9210 +6123 6160 0.9690 +6123 6161 0.9800 +6123 6164 0.9770 +6123 6165 0.9750 +6123 6166 0.8630 +6123 6167 0.9570 +6123 6168 0.9850 +6123 6169 0.9730 +6123 6170 0.9320 +6123 6171 0.4490 +6123 6173 0.7900 +6123 6175 0.9810 +6123 6176 0.9700 +6123 6181 0.9710 +6123 6182 0.9710 +6123 6183 0.8880 +6123 6184 0.4860 +6123 6187 0.9910 +6123 6188 0.9830 +6123 6189 0.9790 +6123 6191 0.8900 +6123 6192 0.8830 +6123 6193 0.9800 +6123 6194 0.9890 +6123 6201 0.9750 +6123 6202 0.9860 +6123 6203 0.9890 +6123 6204 0.9210 +6123 6205 0.9800 +6123 6206 0.9770 +6123 6207 0.9750 +6123 6208 0.9430 +6123 6209 0.9830 +6123 6210 0.8500 +6123 6217 0.9790 +6123 6218 0.9790 +6123 6222 0.9880 +6123 6223 0.9830 +6123 6224 0.9880 +6123 6227 0.9710 +6123 6228 0.9880 +6123 6229 0.9900 +6123 6230 0.9810 +6123 6231 0.9900 +6123 6232 0.8880 +6123 6233 0.9730 +6123 6234 0.9700 +6123 6235 0.9670 +6123 6442 0.4470 +6123 6499 0.5110 +6123 6559 0.4040 +6123 6635 0.5700 +6123 6648 0.6350 +6123 6687 0.5010 +6123 6726 0.4070 +6123 6729 0.8640 +6123 6730 0.6200 +6123 6734 0.6850 +6123 6742 0.6190 +6123 6838 0.4290 +6123 6894 0.5170 +6123 6897 0.4470 +6123 6924 0.4540 +6123 7125 0.4380 +6123 7178 0.6300 +6123 7264 0.4340 +6123 7273 0.4510 +6123 7284 0.9710 +6123 7311 0.9530 +6123 7314 0.4910 +6123 7316 0.5040 +6123 7369 0.4770 +6123 7403 0.4600 +6123 7404 0.4600 +6123 7407 0.4160 +6123 7809 0.4310 +6123 7812 0.4370 +6123 7818 0.8380 +6123 7866 0.5850 +6123 7919 0.4070 +6123 8189 0.8400 +6123 8225 0.7240 +6123 8242 0.4180 +6123 8260 0.5390 +6123 8266 0.4800 +6123 8284 0.4180 +6123 8291 0.4010 +6123 8382 0.4540 +6123 8557 0.4070 +6123 8565 0.5550 +6123 8568 0.6560 +6123 8624 0.6030 +6123 8638 0.4830 +6123 8653 0.4070 +6123 8662 0.4880 +6123 8666 0.5580 +6123 8667 0.4020 +6123 8668 0.4640 +6123 8721 0.7860 +6123 8886 0.8490 +6123 8894 0.5730 +6123 9045 0.9860 +6123 9086 0.7320 +6123 9132 0.4870 +6123 9141 0.6260 +6123 9188 0.4070 +6123 9312 0.5010 +6123 9343 0.8050 +6123 9349 0.9870 +6123 9416 0.4070 +6123 9465 0.4410 +6123 9499 0.4750 +6123 9528 0.4350 +6123 9533 0.8560 +6123 9553 0.9720 +6123 9617 0.4820 +6123 9636 0.4780 +6123 9652 0.4870 +6123 9669 0.9310 +6123 9732 0.9170 +6123 9775 0.4070 +6123 9789 0.4250 +6123 9790 0.8450 +6123 9801 0.9680 +6123 9858 0.7690 +6123 9879 0.4430 +6123 10061 0.5740 +6123 10102 0.7310 +6123 10135 0.4820 +6123 10200 0.6760 +6123 10201 0.4830 +6123 10212 0.4070 +6123 10399 0.9770 +6123 10412 0.9120 +6123 10438 0.6420 +6123 10473 0.8310 +6123 10521 0.4070 +6123 10528 0.4350 +6123 10537 0.4780 +6123 10557 0.6870 +6123 10607 0.4020 +6123 10730 0.5010 +6123 10765 0.4180 +6123 10939 0.5010 +6123 10952 0.4700 +6123 10964 0.4610 +6123 10969 0.7840 +6123 10985 0.8120 +6123 10988 0.6970 +6123 11128 0.7930 +6123 11218 0.4070 +6123 11224 0.9810 +6123 11269 0.4070 +6123 11325 0.4070 +6123 22894 0.4780 +6123 22927 0.7680 +6123 22984 0.9640 +6123 23076 0.6560 +6123 23135 0.4600 +6123 23148 0.6690 +6123 23173 0.6970 +6123 23195 0.4450 +6123 23204 0.8500 +6123 23212 0.6230 +6123 23246 0.9170 +6123 23252 0.6790 +6123 23404 0.4630 +6123 23405 0.5830 +6123 23478 0.4010 +6123 23481 0.9400 +6123 23517 0.7130 +6123 23521 0.9700 +6123 23560 0.8960 +6123 23640 0.7730 +6123 23708 0.5520 +6123 23732 0.6010 +6123 24140 0.4460 +6123 25789 0.4360 +6123 25873 0.9730 +6123 25885 0.7930 +6123 26135 0.8670 +6123 26155 0.8070 +6123 26156 0.7960 +6123 26168 0.5280 +6123 26251 0.4860 +6123 26271 0.4820 +6123 26289 0.4720 +6123 26354 0.6830 +6123 26589 0.8350 +6123 27012 0.4810 +6123 27043 0.5910 +6123 27079 0.4960 +6123 27430 0.4290 +6123 28973 0.4080 +6123 28991 0.4980 +6123 28998 0.8350 +6123 29083 0.6690 +6123 29088 0.5800 +6123 29093 0.8350 +6123 29102 0.6080 +6123 29789 0.4170 +6123 29889 0.8380 +6123 29895 0.5690 +6123 29922 0.4540 +6123 29927 0.8700 +6123 29960 0.4460 +6123 29997 0.8450 +6123 50808 0.4720 +6123 50814 0.4290 +6123 51008 0.5320 +6123 51018 0.4400 +6123 51021 0.9690 +6123 51023 0.6820 +6123 51042 0.5680 +6123 51065 0.9070 +6123 51068 0.8270 +6123 51069 0.8380 +6123 51073 0.8350 +6123 51081 0.8620 +6123 51116 0.7690 +6123 51119 0.6040 +6123 51121 0.9390 +6123 51149 0.9100 +6123 51154 0.9470 +6123 51187 0.9170 +6123 51202 0.4190 +6123 51224 0.4540 +6123 51263 0.5260 +6123 51264 0.9690 +6123 51314 0.4720 +6123 51319 0.9250 +6123 51388 0.8530 +6123 51398 0.4290 +6123 51727 0.4720 +6123 51734 0.4090 +6123 54059 0.5980 +6123 54148 0.4470 +6123 54463 0.5180 +6123 54464 0.5580 +6123 54475 0.6270 +6123 54514 0.4070 +6123 54516 0.4820 +6123 54517 0.4740 +6123 54552 0.6830 +6123 54555 0.4070 +6123 54606 0.4070 +6123 54663 0.8630 +6123 54881 0.7060 +6123 54948 0.8350 +6123 54965 0.4470 +6123 55052 0.9690 +6123 55139 0.4700 +6123 55143 0.4310 +6123 55153 0.5080 +6123 55168 0.6030 +6123 55173 0.8880 +6123 55176 0.8700 +6123 55178 0.4930 +6123 55272 0.8880 +6123 55299 0.8350 +6123 55316 0.9150 +6123 55324 0.5790 +6123 55341 0.8230 +6123 55510 0.4070 +6123 55586 0.4470 +6123 55591 0.6970 +6123 55629 0.4990 +6123 55651 0.7060 +6123 55703 0.7720 +6123 55759 0.9170 +6123 55781 0.8450 +6123 55794 0.4070 +6123 55802 0.4990 +6123 55854 0.4440 +6123 56342 0.4360 +6123 56479 0.4830 +6123 56648 0.8270 +6123 56965 0.6750 +6123 57062 0.4070 +6123 57129 0.8130 +6123 57136 0.6740 +6123 57159 0.4190 +6123 57418 0.7230 +6123 57696 0.6170 +6123 58505 0.4430 +6123 58529 0.4960 +6123 60488 0.8190 +6123 60558 0.6790 +6123 60678 0.7430 +6123 63875 0.9710 +6123 63931 0.8360 +6123 64146 0.7600 +6123 64221 0.5030 +6123 64318 0.7740 +6123 64374 0.7730 +6123 64432 0.7690 +6123 64794 0.4070 +6123 64960 0.8260 +6123 64963 0.8360 +6123 64965 0.9710 +6123 64968 0.9690 +6123 64969 0.8880 +6123 64975 0.7820 +6123 64976 0.8170 +6123 64978 0.5240 +6123 64979 0.9710 +6123 64981 0.8160 +6123 64983 0.9360 +6123 65003 0.7730 +6123 65005 0.9690 +6123 65008 0.8350 +6123 65080 0.5830 +6123 65121 0.5870 +6123 65122 0.5800 +6123 65993 0.5440 +6123 79009 0.4070 +6123 79036 0.4550 +6123 79039 0.4490 +6123 79041 0.5500 +6123 79159 0.5050 +6123 79590 0.8360 +6123 79631 0.8050 +6123 79668 0.6750 +6123 79706 0.4360 +6123 79707 0.4990 +6123 79728 0.6150 +6123 79922 0.4950 +6123 79933 0.4840 +6123 80135 0.8300 +6123 80146 0.4290 +6123 80218 0.5030 +6123 80222 0.4470 +6123 80270 0.4290 +6123 80349 0.4430 +6123 80728 0.4160 +6123 81875 0.4410 +6123 81887 0.5260 +6123 83448 0.4740 +6123 83479 0.4070 +6123 83743 0.6680 +6123 84154 0.7990 +6123 84172 0.7720 +6123 84273 0.4860 +6123 84340 0.4470 +6123 84365 0.8230 +6123 84545 0.7860 +6123 84549 0.7980 +6123 84705 0.5850 +6123 84779 0.4830 +6123 84851 0.4290 +6123 84881 0.4960 +6123 85476 0.8050 +6123 87178 0.6740 +6123 90313 0.5170 +6123 90441 0.5180 +6123 90459 0.4230 +6123 90624 0.4610 +6123 90701 0.4010 +6123 90850 0.4630 +6123 91408 0.4360 +6123 91574 0.4820 +6123 91646 0.4070 +6123 92170 0.4860 +6123 92196 0.6180 +6123 92342 0.4460 +6123 92399 0.9040 +6123 93107 0.4800 +6123 93517 0.4290 +6123 93550 0.4980 +6123 93974 0.4070 +6123 113000 0.4970 +6123 114781 0.4610 +6123 114987 0.8800 +6123 115416 0.7900 +6123 116541 0.6030 +6123 116832 0.9390 +6123 117246 0.7980 +6123 120939 0.4010 +6123 122481 0.4720 +6123 122622 0.6420 +6123 123283 0.4470 +6123 124454 0.6240 +6123 124995 0.5600 +6123 126402 0.8570 +6123 133396 0.4070 +6123 140032 0.9100 +6123 140801 0.9750 +6123 143244 0.8270 +6123 146212 0.6500 +6123 149478 0.4610 +6123 157310 0.5390 +6123 158067 0.4720 +6123 164153 0.4890 +6123 168400 0.4070 +6123 169522 0.4830 +6123 170850 0.4760 +6123 200172 0.4070 +6123 200539 0.5930 +6123 200916 0.9390 +6123 201595 0.5810 +6123 219927 0.9690 +6123 221078 0.5830 +6123 221264 0.4720 +6123 221710 0.4340 +6123 221823 0.4490 +6123 254268 0.8460 +6123 255308 0.5080 +6123 283518 0.4760 +6123 285367 0.4960 +6123 285855 0.9390 +6123 317781 0.4070 +6123 342538 0.6690 +6123 343068 0.5800 +6123 343070 0.5800 +6123 344758 0.4070 +6123 345051 0.6010 +6123 345630 0.8280 +6123 347487 0.9310 +6123 374659 0.7690 +6123 387129 0.8570 +6123 390999 0.5800 +6123 391002 0.5800 +6123 400735 0.5800 +6123 400736 0.5800 +6123 440560 0.5800 +6123 440561 0.5800 +6123 441873 0.5800 +6123 641776 0.6890 +6123 643909 0.6890 +6123 645051 0.6660 +6123 645073 0.6660 +6123 645359 0.5800 +6123 653619 0.5800 +6123 654364 0.4540 +6123 692312 0.4310 +6123 728524 0.6890 +6123 729396 0.6660 +6123 729422 0.6660 +6123 729428 0.6660 +6123 729431 0.6660 +6123 729442 0.6660 +6123 729447 0.6660 +6123 729528 0.5800 +6123 100008586 0.6660 +6123 100128731 0.4290 +6123 100130890 0.4860 +6123 100131187 0.4870 +6123 100132399 0.6660 +6123 100287482 0.7690 +6123 100505478 0.8050 +6123 100526842 0.9350 +6123 100529097 0.7470 +6123 100529239 0.9050 +6123 100996746 0.6890 +6123 101929983 0.5800 +6123 102724473 0.6660 +6123 105180390 0.6890 +6123 105180391 0.6890 +6123 114483834 0.5740 +6124 6125 0.9990 +6124 6128 0.9990 +6124 6129 0.9990 +6124 6130 0.9990 +6124 6132 0.9990 +6124 6133 0.9990 +6124 6135 0.9990 +6124 6136 0.9990 +6124 6137 0.9990 +6124 6138 0.9990 +6124 6139 0.9990 +6124 6141 0.9990 +6124 6142 0.9990 +6124 6143 0.9990 +6124 6144 0.9990 +6124 6146 0.9990 +6124 6147 0.9990 +6124 6150 0.6510 +6124 6152 0.9990 +6124 6154 0.9990 +6124 6155 0.9990 +6124 6156 0.9990 +6124 6157 0.9990 +6124 6158 0.9990 +6124 6159 0.9990 +6124 6160 0.9990 +6124 6161 0.9990 +6124 6164 0.9990 +6124 6165 0.9990 +6124 6166 0.9900 +6124 6167 0.9990 +6124 6168 0.9990 +6124 6169 0.9990 +6124 6170 0.9970 +6124 6171 0.7250 +6124 6173 0.9890 +6124 6175 0.9990 +6124 6176 0.9990 +6124 6181 0.9990 +6124 6182 0.9720 +6124 6183 0.8890 +6124 6184 0.6110 +6124 6187 0.9990 +6124 6188 0.9990 +6124 6189 0.9990 +6124 6191 0.9990 +6124 6192 0.9930 +6124 6193 0.9990 +6124 6194 0.9990 +6124 6201 0.9990 +6124 6202 0.9990 +6124 6203 0.9990 +6124 6204 0.9990 +6124 6205 0.9990 +6124 6206 0.9990 +6124 6207 0.9990 +6124 6208 0.9990 +6124 6209 0.9990 +6124 6210 0.9980 +6124 6217 0.9990 +6124 6218 0.9990 +6124 6222 0.9990 +6124 6223 0.9990 +6124 6224 0.9990 +6124 6227 0.9990 +6124 6228 0.9990 +6124 6229 0.9990 +6124 6230 0.9990 +6124 6231 0.9990 +6124 6232 0.9990 +6124 6233 0.9990 +6124 6234 0.9990 +6124 6235 0.9990 +6124 6389 0.6190 +6124 6414 0.5410 +6124 6421 0.4090 +6124 6426 0.6030 +6124 6434 0.4700 +6124 6499 0.4710 +6124 6613 0.6030 +6124 6627 0.4280 +6124 6633 0.4940 +6124 6648 0.5140 +6124 6687 0.4370 +6124 6726 0.9020 +6124 6727 0.9210 +6124 6728 0.9070 +6124 6729 0.9800 +6124 6730 0.9160 +6124 6731 0.8960 +6124 6734 0.9400 +6124 6742 0.5180 +6124 6780 0.4050 +6124 6838 0.5980 +6124 6897 0.4670 +6124 6908 0.5820 +6124 6924 0.5280 +6124 6950 0.5200 +6124 7037 0.4300 +6124 7124 0.4100 +6124 7153 0.4750 +6124 7155 0.4570 +6124 7157 0.5470 +6124 7166 0.4640 +6124 7167 0.4220 +6124 7178 0.8800 +6124 7203 0.5010 +6124 7264 0.4690 +6124 7284 0.9760 +6124 7311 0.9990 +6124 7314 0.5950 +6124 7316 0.6220 +6124 7403 0.4860 +6124 7404 0.4860 +6124 7407 0.6000 +6124 7415 0.4230 +6124 7458 0.6000 +6124 7494 0.8120 +6124 7534 0.5710 +6124 7555 0.6060 +6124 7818 0.8390 +6124 7866 0.7580 +6124 7919 0.6330 +6124 7978 0.4050 +6124 8034 0.4070 +6124 8225 0.7220 +6124 8260 0.6260 +6124 8266 0.6840 +6124 8382 0.4500 +6124 8409 0.4100 +6124 8562 0.5770 +6124 8565 0.5110 +6124 8568 0.8190 +6124 8602 0.8690 +6124 8607 0.5380 +6124 8624 0.6110 +6124 8634 0.4390 +6124 8638 0.6240 +6124 8661 0.7620 +6124 8662 0.8230 +6124 8663 0.7290 +6124 8664 0.9370 +6124 8665 0.8600 +6124 8666 0.7610 +6124 8667 0.7300 +6124 8668 0.8860 +6124 8669 0.4850 +6124 8721 0.8920 +6124 8761 0.6010 +6124 8886 0.9300 +6124 8894 0.8630 +6124 9045 0.9990 +6124 9086 0.8870 +6124 9131 0.4400 +6124 9132 0.4430 +6124 9136 0.8900 +6124 9147 0.8770 +6124 9188 0.5550 +6124 9277 0.8640 +6124 9312 0.4320 +6124 9343 0.8270 +6124 9349 0.9990 +6124 9401 0.5500 +6124 9528 0.4250 +6124 9533 0.8250 +6124 9553 0.9640 +6124 9563 0.4850 +6124 9617 0.5070 +6124 9636 0.5680 +6124 9652 0.4580 +6124 9669 0.9830 +6124 9724 0.5010 +6124 9732 0.9770 +6124 9775 0.7640 +6124 9789 0.5620 +6124 9790 0.8780 +6124 9801 0.9690 +6124 9858 0.7730 +6124 9898 0.4010 +6124 9933 0.6370 +6124 10049 0.4540 +6124 10056 0.4360 +6124 10061 0.5870 +6124 10075 0.4750 +6124 10102 0.7330 +6124 10135 0.5160 +6124 10146 0.4470 +6124 10171 0.5180 +6124 10199 0.5980 +6124 10200 0.4340 +6124 10201 0.4530 +6124 10209 0.6650 +6124 10212 0.4240 +6124 10213 0.5330 +6124 10236 0.5740 +6124 10289 0.5630 +6124 10399 0.9990 +6124 10412 0.9430 +6124 10430 0.8330 +6124 10436 0.6850 +6124 10438 0.6640 +6124 10473 0.8870 +6124 10480 0.7510 +6124 10492 0.8670 +6124 10514 0.4280 +6124 10526 0.4260 +6124 10527 0.4460 +6124 10528 0.7860 +6124 10537 0.5560 +6124 10557 0.6770 +6124 10574 0.7680 +6124 10575 0.7100 +6124 10576 0.6830 +6124 10607 0.5760 +6124 10643 0.4320 +6124 10666 0.4750 +6124 10667 0.4130 +6124 10694 0.6610 +6124 10726 0.4230 +6124 10730 0.5180 +6124 10767 0.8720 +6124 10813 0.5490 +6124 10885 0.6170 +6124 10939 0.4620 +6124 10952 0.9800 +6124 10964 0.4440 +6124 10969 0.8990 +6124 10985 0.8700 +6124 10988 0.7500 +6124 11103 0.8900 +6124 11128 0.7870 +6124 11222 0.8500 +6124 11224 0.9990 +6124 11331 0.5340 +6124 22894 0.4850 +6124 22927 0.8690 +6124 22948 0.5910 +6124 22984 0.9770 +6124 23016 0.4630 +6124 23029 0.4490 +6124 23054 0.4470 +6124 23076 0.9300 +6124 23107 0.5110 +6124 23135 0.4870 +6124 23148 0.7260 +6124 23160 0.6220 +6124 23173 0.6970 +6124 23195 0.4590 +6124 23204 0.9210 +6124 23212 0.7590 +6124 23246 0.9390 +6124 23252 0.6510 +6124 23341 0.4400 +6124 23378 0.4560 +6124 23395 0.4340 +6124 23405 0.7330 +6124 23435 0.4540 +6124 23478 0.5360 +6124 23480 0.9690 +6124 23481 0.9540 +6124 23517 0.6580 +6124 23521 0.9990 +6124 23560 0.9880 +6124 23640 0.7790 +6124 23708 0.5520 +6124 23732 0.5860 +6124 24140 0.4790 +6124 25789 0.4130 +6124 25873 0.9990 +6124 25879 0.5650 +6124 25885 0.8090 +6124 25914 0.5220 +6124 25983 0.5910 +6124 26046 0.8220 +6124 26135 0.9900 +6124 26155 0.8860 +6124 26156 0.9350 +6124 26168 0.5550 +6124 26227 0.4030 +6124 26251 0.4600 +6124 26271 0.5200 +6124 26289 0.5010 +6124 26354 0.8780 +6124 26574 0.6940 +6124 26589 0.8140 +6124 26986 0.8270 +6124 27000 0.6410 +6124 27012 0.4320 +6124 27043 0.5690 +6124 27316 0.5060 +6124 27335 0.6690 +6124 27340 0.5310 +6124 27341 0.8630 +6124 27430 0.4760 +6124 28972 0.4700 +6124 28973 0.5120 +6124 28991 0.5770 +6124 28998 0.8800 +6124 29074 0.4520 +6124 29088 0.5940 +6124 29093 0.8430 +6124 29102 0.5460 +6124 29889 0.9460 +6124 29922 0.4530 +6124 29927 0.9810 +6124 29960 0.4260 +6124 29978 0.4030 +6124 29979 0.4300 +6124 29997 0.9440 +6124 30836 0.5700 +6124 50487 0.4750 +6124 50808 0.4900 +6124 50814 0.4620 +6124 51001 0.4090 +6124 51018 0.6200 +6124 51021 0.9700 +6124 51023 0.5610 +6124 51042 0.8920 +6124 51065 0.9840 +6124 51068 0.9470 +6124 51069 0.8380 +6124 51073 0.4290 +6124 51077 0.5520 +6124 51081 0.9340 +6124 51096 0.5510 +6124 51116 0.7830 +6124 51118 0.5430 +6124 51119 0.8970 +6124 51121 0.9980 +6124 51149 0.9790 +6124 51154 0.9650 +6124 51187 0.9940 +6124 51224 0.5220 +6124 51263 0.5610 +6124 51264 0.9660 +6124 51314 0.4730 +6124 51319 0.9720 +6124 51386 0.8960 +6124 51388 0.8970 +6124 51398 0.5330 +6124 51520 0.4660 +6124 51574 0.4220 +6124 51602 0.9150 +6124 51720 0.4970 +6124 51727 0.4840 +6124 53918 0.8730 +6124 54148 0.4080 +6124 54463 0.4980 +6124 54464 0.6310 +6124 54475 0.4950 +6124 54499 0.8270 +6124 54516 0.5160 +6124 54552 0.7860 +6124 54596 0.5150 +6124 54606 0.5090 +6124 54663 0.8790 +6124 54865 0.4530 +6124 54881 0.7300 +6124 54948 0.7810 +6124 55027 0.5610 +6124 55052 0.9680 +6124 55127 0.8690 +6124 55139 0.4360 +6124 55143 0.5060 +6124 55153 0.5190 +6124 55168 0.5980 +6124 55173 0.9010 +6124 55176 0.8860 +6124 55226 0.6050 +6124 55272 0.8930 +6124 55299 0.9530 +6124 55316 0.9530 +6124 55319 0.8020 +6124 55324 0.6010 +6124 55341 0.9300 +6124 55591 0.6810 +6124 55629 0.5160 +6124 55646 0.8310 +6124 55651 0.7420 +6124 55703 0.7670 +6124 55759 0.9470 +6124 55781 0.8560 +6124 55802 0.5090 +6124 55813 0.8450 +6124 55854 0.6030 +6124 55893 0.4870 +6124 55969 0.4330 +6124 56479 0.4320 +6124 56648 0.8980 +6124 56731 0.4970 +6124 56893 0.4080 +6124 56902 0.5120 +6124 56926 0.8470 +6124 56945 0.4120 +6124 56965 0.6180 +6124 57003 0.8260 +6124 57038 0.4790 +6124 57050 0.5350 +6124 57062 0.4890 +6124 57129 0.8270 +6124 57136 0.6540 +6124 57176 0.4020 +6124 57418 0.7330 +6124 57470 0.4220 +6124 57696 0.5960 +6124 58477 0.8650 +6124 58505 0.5290 +6124 60386 0.4070 +6124 60488 0.8280 +6124 60558 0.6520 +6124 60559 0.4050 +6124 60678 0.9580 +6124 63875 0.9720 +6124 63931 0.8380 +6124 64146 0.7650 +6124 64221 0.5030 +6124 64318 0.8890 +6124 64374 0.7770 +6124 64432 0.6930 +6124 64960 0.8560 +6124 64963 0.8520 +6124 64965 0.9750 +6124 64968 0.9690 +6124 64969 0.9010 +6124 64975 0.8120 +6124 64976 0.6970 +6124 64978 0.5570 +6124 64979 0.9720 +6124 64981 0.8010 +6124 64983 0.9500 +6124 65003 0.7960 +6124 65005 0.9700 +6124 65008 0.8600 +6124 65080 0.5540 +6124 65083 0.6830 +6124 65121 0.5800 +6124 65122 0.5800 +6124 65993 0.5510 +6124 79009 0.4600 +6124 79036 0.5340 +6124 79048 0.8190 +6124 79050 0.8800 +6124 79159 0.5660 +6124 79571 0.4500 +6124 79590 0.8480 +6124 79612 0.4430 +6124 79631 0.9460 +6124 79668 0.6100 +6124 79707 0.5040 +6124 79954 0.5920 +6124 80135 0.8860 +6124 80146 0.4610 +6124 80155 0.4980 +6124 80218 0.5860 +6124 80270 0.4610 +6124 80298 0.4050 +6124 80349 0.4700 +6124 81875 0.4180 +6124 81887 0.5330 +6124 83743 0.5590 +6124 84128 0.5430 +6124 84135 0.5820 +6124 84154 0.8930 +6124 84172 0.7700 +6124 84273 0.4980 +6124 84298 0.8280 +6124 84306 0.4620 +6124 84340 0.4050 +6124 84365 0.9410 +6124 84450 0.4950 +6124 84545 0.8090 +6124 84549 0.9630 +6124 84790 0.4300 +6124 84851 0.5210 +6124 84916 0.5690 +6124 84946 0.5790 +6124 84955 0.6240 +6124 84993 0.4130 +6124 85377 0.4680 +6124 85476 0.8160 +6124 87178 0.6560 +6124 90313 0.5240 +6124 90441 0.8990 +6124 90459 0.4410 +6124 90624 0.4380 +6124 90701 0.4160 +6124 91408 0.5640 +6124 91574 0.5210 +6124 91875 0.8740 +6124 92140 0.7440 +6124 92170 0.4390 +6124 92196 0.8080 +6124 92399 0.9040 +6124 92856 0.5840 +6124 93107 0.4320 +6124 93517 0.4610 +6124 93550 0.5560 +6124 114781 0.4270 +6124 114987 0.9730 +6124 115098 0.8870 +6124 115416 0.7740 +6124 116541 0.5530 +6124 116832 0.9690 +6124 117246 0.9530 +6124 121278 0.4120 +6124 122481 0.4800 +6124 124454 0.7000 +6124 124995 0.5620 +6124 126402 0.9380 +6124 137994 0.4290 +6124 140032 0.9680 +6124 140801 0.9960 +6124 143244 0.9000 +6124 146212 0.7990 +6124 147011 0.4750 +6124 149041 0.5180 +6124 149478 0.4270 +6124 150353 0.4400 +6124 154288 0.4750 +6124 157310 0.4980 +6124 158067 0.4800 +6124 164153 0.5560 +6124 169522 0.4320 +6124 170850 0.4320 +6124 200916 0.9740 +6124 201595 0.7990 +6124 203068 0.8520 +6124 203427 0.4070 +6124 219927 0.9710 +6124 221078 0.7740 +6124 221264 0.4800 +6124 254268 0.9660 +6124 255308 0.6390 +6124 283518 0.4320 +6124 283600 0.4070 +6124 285855 0.9840 +6124 317781 0.4160 +6124 342538 0.9410 +6124 343068 0.5800 +6124 343070 0.5800 +6124 345051 0.5860 +6124 345630 0.6400 +6124 347487 0.9760 +6124 374659 0.7700 +6124 387129 0.9430 +6124 387712 0.7450 +6124 390999 0.5800 +6124 391002 0.5800 +6124 400735 0.5800 +6124 400736 0.5800 +6124 440560 0.5800 +6124 440561 0.5800 +6124 441873 0.5800 +6124 548645 0.5030 +6124 619279 0.4750 +6124 641776 0.7290 +6124 642987 0.4750 +6124 643909 0.7290 +6124 644591 0.4290 +6124 645051 0.7630 +6124 645073 0.7630 +6124 645142 0.4290 +6124 645359 0.5800 +6124 653505 0.4340 +6124 653598 0.4290 +6124 653619 0.5800 +6124 654364 0.4760 +6124 728378 0.5250 +6124 728524 0.7290 +6124 728689 0.6640 +6124 728945 0.4290 +6124 729396 0.7630 +6124 729422 0.7630 +6124 729428 0.7630 +6124 729431 0.7630 +6124 729442 0.7630 +6124 729447 0.7630 +6124 729528 0.5800 +6124 730262 0.4290 +6124 100008586 0.7630 +6124 100128731 0.5400 +6124 100132399 0.7630 +6124 100287482 0.7730 +6124 100505478 0.8040 +6124 100526842 0.9950 +6124 100527943 0.4290 +6124 100529097 0.9170 +6124 100529239 0.9910 +6124 100996746 0.7290 +6124 101929983 0.5800 +6124 102724473 0.7630 +6124 105180390 0.7290 +6124 105180391 0.7290 +6124 105371242 0.4290 +6124 114483834 0.5970 +6125 6128 0.9990 +6125 6129 0.9990 +6125 6130 0.9990 +6125 6132 0.9990 +6125 6133 0.9990 +6125 6135 0.9990 +6125 6136 0.9990 +6125 6137 0.9990 +6125 6138 0.9990 +6125 6139 0.9990 +6125 6141 0.9990 +6125 6142 0.9990 +6125 6143 0.9990 +6125 6144 0.9990 +6125 6146 0.9990 +6125 6147 0.9990 +6125 6152 0.9990 +6125 6154 0.9990 +6125 6155 0.9990 +6125 6156 0.9990 +6125 6157 0.9990 +6125 6158 0.9990 +6125 6159 0.9990 +6125 6160 0.9990 +6125 6161 0.9990 +6125 6164 0.9990 +6125 6165 0.9990 +6125 6166 0.9980 +6125 6167 0.9990 +6125 6168 0.9990 +6125 6169 0.9990 +6125 6170 0.9980 +6125 6171 0.7580 +6125 6173 0.9950 +6125 6175 0.9990 +6125 6176 0.9990 +6125 6181 0.9990 +6125 6182 0.9990 +6125 6183 0.9830 +6125 6184 0.6040 +6125 6187 0.9990 +6125 6188 0.9990 +6125 6189 0.9990 +6125 6191 0.9990 +6125 6192 0.9940 +6125 6193 0.9990 +6125 6194 0.9990 +6125 6201 0.9990 +6125 6202 0.9990 +6125 6203 0.9990 +6125 6204 0.9990 +6125 6205 0.9990 +6125 6206 0.9990 +6125 6207 0.9990 +6125 6208 0.9990 +6125 6209 0.9990 +6125 6210 0.9990 +6125 6217 0.9990 +6125 6218 0.9990 +6125 6222 0.9990 +6125 6223 0.9990 +6125 6224 0.9990 +6125 6227 0.9990 +6125 6228 0.9990 +6125 6229 0.9990 +6125 6230 0.9990 +6125 6231 0.9990 +6125 6232 0.9990 +6125 6233 0.9990 +6125 6234 0.9990 +6125 6235 0.9990 +6125 6240 0.7800 +6125 6301 0.4270 +6125 6426 0.7240 +6125 6499 0.5200 +6125 6627 0.4480 +6125 6633 0.4220 +6125 6726 0.9070 +6125 6727 0.9000 +6125 6728 0.9060 +6125 6729 0.9940 +6125 6730 0.9140 +6125 6731 0.9080 +6125 6734 0.9750 +6125 6741 0.4020 +6125 6780 0.4490 +6125 6835 0.5700 +6125 6924 0.5820 +6125 6949 0.4860 +6125 6950 0.5290 +6125 7011 0.4710 +6125 7114 0.4160 +6125 7153 0.4160 +6125 7155 0.4700 +6125 7156 0.4480 +6125 7157 0.9450 +6125 7178 0.9510 +6125 7184 0.5410 +6125 7203 0.5080 +6125 7264 0.5560 +6125 7284 0.9990 +6125 7311 0.9990 +6125 7314 0.6960 +6125 7316 0.6590 +6125 7343 0.4140 +6125 7372 0.4820 +6125 7399 0.4790 +6125 7403 0.6040 +6125 7404 0.5530 +6125 7407 0.8450 +6125 7415 0.4870 +6125 7494 0.8210 +6125 7514 0.4520 +6125 7555 0.4740 +6125 7813 0.6230 +6125 7866 0.7540 +6125 8034 0.4250 +6125 8192 0.4920 +6125 8225 0.9000 +6125 8242 0.5410 +6125 8260 0.6070 +6125 8266 0.7210 +6125 8284 0.5390 +6125 8361 0.4250 +6125 8565 0.7370 +6125 8638 0.6220 +6125 8661 0.6370 +6125 8662 0.6640 +6125 8663 0.6710 +6125 8664 0.8140 +6125 8665 0.6800 +6125 8666 0.6910 +6125 8667 0.7420 +6125 8668 0.9000 +6125 8721 0.9180 +6125 8833 0.6170 +6125 8880 0.5270 +6125 8886 0.4250 +6125 8894 0.7270 +6125 8940 0.4480 +6125 9045 0.9990 +6125 9069 0.5120 +6125 9086 0.8570 +6125 9132 0.5240 +6125 9141 0.4970 +6125 9147 0.9140 +6125 9188 0.6340 +6125 9255 0.5020 +6125 9312 0.5240 +6125 9343 0.9550 +6125 9349 0.9990 +6125 9528 0.4240 +6125 9533 0.9460 +6125 9553 0.9980 +6125 9617 0.5660 +6125 9636 0.6420 +6125 9652 0.5310 +6125 9669 0.9890 +6125 9670 0.5840 +6125 9732 0.9760 +6125 9775 0.4060 +6125 9789 0.4440 +6125 9801 0.9970 +6125 9858 0.9030 +6125 9933 0.6420 +6125 9939 0.4820 +6125 9987 0.4040 +6125 10056 0.6100 +6125 10061 0.7770 +6125 10075 0.4730 +6125 10102 0.8450 +6125 10135 0.5780 +6125 10155 0.4130 +6125 10200 0.4130 +6125 10209 0.4030 +6125 10213 0.4300 +6125 10288 0.8120 +6125 10361 0.4780 +6125 10399 0.9990 +6125 10412 0.9910 +6125 10419 0.5900 +6125 10430 0.8190 +6125 10436 0.5350 +6125 10438 0.7030 +6125 10473 0.9380 +6125 10476 0.4020 +6125 10480 0.7940 +6125 10492 0.5020 +6125 10514 0.7480 +6125 10525 0.5820 +6125 10527 0.4260 +6125 10528 0.7940 +6125 10537 0.6220 +6125 10557 0.8630 +6125 10574 0.8260 +6125 10575 0.7220 +6125 10576 0.6460 +6125 10594 0.6970 +6125 10657 0.4300 +6125 10664 0.5250 +6125 10666 0.5230 +6125 10667 0.5050 +6125 10694 0.4930 +6125 10765 0.5390 +6125 10767 0.8880 +6125 10859 0.9950 +6125 10871 0.4820 +6125 10884 0.5320 +6125 10952 0.9320 +6125 10969 0.6550 +6125 10985 0.9160 +6125 10988 0.9050 +6125 11006 0.4990 +6125 11047 0.5230 +6125 11128 0.9290 +6125 11137 0.6090 +6125 11201 0.5570 +6125 11222 0.9760 +6125 11224 0.9990 +6125 11238 0.4780 +6125 11266 0.4430 +6125 22820 0.4990 +6125 22827 0.4100 +6125 22894 0.5140 +6125 22927 0.9000 +6125 22948 0.7380 +6125 22984 0.9820 +6125 23020 0.4070 +6125 23029 0.5230 +6125 23076 0.8140 +6125 23107 0.5830 +6125 23135 0.5530 +6125 23148 0.7430 +6125 23173 0.8780 +6125 23195 0.7030 +6125 23204 0.9460 +6125 23212 0.9880 +6125 23223 0.5540 +6125 23246 0.8870 +6125 23252 0.9010 +6125 23367 0.5110 +6125 23395 0.5240 +6125 23405 0.5970 +6125 23478 0.4750 +6125 23480 0.8910 +6125 23481 0.9830 +6125 23517 0.8220 +6125 23521 0.9990 +6125 23560 0.9860 +6125 23632 0.4790 +6125 23633 0.4130 +6125 23640 0.9090 +6125 23708 0.5350 +6125 25789 0.4110 +6125 25873 0.9990 +6125 25885 0.9530 +6125 26046 0.8310 +6125 26135 0.9960 +6125 26156 0.9140 +6125 26164 0.5120 +6125 26168 0.5080 +6125 26251 0.5240 +6125 26271 0.5740 +6125 26289 0.6740 +6125 26354 0.9030 +6125 26986 0.8800 +6125 27000 0.5710 +6125 27012 0.5240 +6125 27043 0.6670 +6125 27068 0.4390 +6125 27085 0.4470 +6125 27161 0.4910 +6125 27250 0.4630 +6125 27292 0.5790 +6125 27335 0.4650 +6125 27430 0.5670 +6125 28972 0.4290 +6125 28991 0.5770 +6125 28998 0.9750 +6125 29074 0.5090 +6125 29088 0.7480 +6125 29093 0.9750 +6125 29789 0.4710 +6125 29889 0.9890 +6125 29927 0.9960 +6125 29978 0.5770 +6125 29979 0.5860 +6125 29997 0.9920 +6125 50487 0.4120 +6125 50613 0.5670 +6125 50808 0.6810 +6125 50814 0.5550 +6125 51021 0.9980 +6125 51042 0.9250 +6125 51065 0.9920 +6125 51068 0.9900 +6125 51069 0.9710 +6125 51073 0.9710 +6125 51081 0.9730 +6125 51116 0.9050 +6125 51119 0.8400 +6125 51121 0.9970 +6125 51149 0.9800 +6125 51154 0.9890 +6125 51187 0.9970 +6125 51224 0.5590 +6125 51264 0.9950 +6125 51319 0.9800 +6125 51386 0.7070 +6125 51388 0.5390 +6125 51398 0.5500 +6125 51491 0.6140 +6125 51520 0.5480 +6125 51574 0.5030 +6125 51602 0.9830 +6125 51720 0.4200 +6125 51727 0.7070 +6125 53918 0.8910 +6125 54033 0.4320 +6125 54463 0.5230 +6125 54464 0.7040 +6125 54475 0.9030 +6125 54499 0.8190 +6125 54516 0.5650 +6125 54543 0.4540 +6125 54552 0.7660 +6125 54596 0.4840 +6125 54606 0.4970 +6125 54663 0.6000 +6125 54859 0.4600 +6125 54881 0.7520 +6125 54938 0.4150 +6125 54948 0.9200 +6125 55003 0.4090 +6125 55027 0.9430 +6125 55052 0.9990 +6125 55127 0.4200 +6125 55131 0.4900 +6125 55139 0.5200 +6125 55143 0.5540 +6125 55153 0.8540 +6125 55157 0.4080 +6125 55173 0.9830 +6125 55176 0.9730 +6125 55226 0.5870 +6125 55272 0.9830 +6125 55299 0.6300 +6125 55308 0.4660 +6125 55316 0.9780 +6125 55319 0.8380 +6125 55324 0.7920 +6125 55341 0.9900 +6125 55505 0.4180 +6125 55591 0.8760 +6125 55607 0.5020 +6125 55629 0.5340 +6125 55646 0.8440 +6125 55651 0.9150 +6125 55699 0.4080 +6125 55703 0.9200 +6125 55720 0.4440 +6125 55759 0.8790 +6125 55781 0.5110 +6125 55802 0.5550 +6125 55854 0.7950 +6125 55893 0.4170 +6125 55969 0.4490 +6125 56257 0.4360 +6125 56474 0.4340 +6125 56479 0.5240 +6125 56648 0.9560 +6125 56731 0.4200 +6125 56893 0.5860 +6125 56926 0.8180 +6125 56934 0.4780 +6125 56965 0.8990 +6125 57003 0.8340 +6125 57038 0.5500 +6125 57136 0.6880 +6125 57176 0.5320 +6125 57418 0.8410 +6125 57470 0.5840 +6125 57471 0.5100 +6125 57696 0.4480 +6125 58477 0.8470 +6125 58505 0.5990 +6125 60386 0.4260 +6125 60558 0.9010 +6125 60559 0.4040 +6125 60678 0.9440 +6125 63875 0.9990 +6125 63931 0.9710 +6125 64146 0.9370 +6125 64215 0.4370 +6125 64221 0.5010 +6125 64374 0.9090 +6125 64960 0.9690 +6125 64963 0.9710 +6125 64965 0.9990 +6125 64968 0.9990 +6125 64969 0.9840 +6125 64979 0.9990 +6125 64983 0.9980 +6125 65003 0.9140 +6125 65005 0.9980 +6125 65008 0.9720 +6125 65121 0.7150 +6125 65122 0.7150 +6125 65993 0.4080 +6125 79036 0.5110 +6125 79048 0.8070 +6125 79050 0.4570 +6125 79137 0.4710 +6125 79168 0.9010 +6125 79590 0.9710 +6125 79612 0.4420 +6125 79631 0.9520 +6125 79668 0.8990 +6125 79707 0.5680 +6125 79711 0.5460 +6125 79753 0.4230 +6125 80146 0.5560 +6125 80155 0.5830 +6125 80218 0.5960 +6125 80270 0.5530 +6125 80349 0.5230 +6125 81875 0.4770 +6125 81887 0.6340 +6125 83743 0.7090 +6125 84154 0.9960 +6125 84172 0.9290 +6125 84273 0.6040 +6125 84298 0.8310 +6125 84340 0.5910 +6125 84365 0.8960 +6125 84450 0.4070 +6125 84464 0.4280 +6125 84549 0.7520 +6125 84779 0.4920 +6125 84851 0.5070 +6125 84993 0.6100 +6125 85476 0.9510 +6125 85865 0.5190 +6125 87178 0.7040 +6125 90121 0.7000 +6125 90441 0.9200 +6125 90459 0.4260 +6125 90701 0.4290 +6125 91408 0.4330 +6125 91574 0.5680 +6125 91875 0.8820 +6125 91893 0.4980 +6125 92140 0.5010 +6125 92170 0.5920 +6125 92196 0.8110 +6125 92399 0.9760 +6125 93107 0.5240 +6125 93517 0.5530 +6125 93550 0.6250 +6125 114987 0.9740 +6125 115098 0.9180 +6125 115416 0.8990 +6125 116832 0.9810 +6125 117246 0.6080 +6125 122481 0.6740 +6125 124454 0.8590 +6125 126402 0.9710 +6125 132949 0.6100 +6125 137994 0.4290 +6125 138428 0.4030 +6125 140032 0.9710 +6125 140801 0.9980 +6125 143244 0.9560 +6125 143630 0.5670 +6125 147011 0.4120 +6125 152518 0.4830 +6125 154288 0.4120 +6125 158067 0.6740 +6125 162427 0.4690 +6125 164153 0.6220 +6125 169522 0.5240 +6125 170850 0.5240 +6125 200916 0.9650 +6125 201595 0.8100 +6125 203068 0.8440 +6125 203427 0.4250 +6125 219927 0.9990 +6125 221264 0.6740 +6125 221710 0.4430 +6125 254268 0.9650 +6125 255308 0.5460 +6125 259217 0.5870 +6125 283383 0.4290 +6125 283518 0.5240 +6125 283600 0.4250 +6125 285855 0.9820 +6125 338599 0.4740 +6125 342538 0.9460 +6125 343068 0.7150 +6125 343070 0.7150 +6125 345630 0.4690 +6125 347487 0.9800 +6125 374395 0.4040 +6125 374659 0.9470 +6125 377677 0.4780 +6125 387129 0.9600 +6125 387712 0.4870 +6125 388650 0.4330 +6125 389421 0.4450 +6125 390999 0.7150 +6125 391002 0.7150 +6125 400735 0.7150 +6125 400736 0.7150 +6125 440275 0.4140 +6125 440560 0.7150 +6125 440561 0.7150 +6125 441873 0.7150 +6125 619279 0.4120 +6125 641776 0.8350 +6125 642489 0.5490 +6125 642987 0.4120 +6125 643909 0.8350 +6125 645051 0.7920 +6125 645073 0.7920 +6125 645359 0.7150 +6125 653619 0.7150 +6125 654364 0.4080 +6125 728524 0.8350 +6125 729396 0.7920 +6125 729422 0.7920 +6125 729428 0.7920 +6125 729431 0.7920 +6125 729442 0.7920 +6125 729447 0.7920 +6125 729528 0.7150 +6125 100008586 0.7920 +6125 100128731 0.5560 +6125 100132399 0.7920 +6125 100287482 0.9030 +6125 100505478 0.9430 +6125 100526842 0.9960 +6125 100527943 0.4490 +6125 100529097 0.9570 +6125 100529239 0.9950 +6125 100996746 0.8350 +6125 101929983 0.7150 +6125 102157402 0.4490 +6125 102724473 0.7920 +6125 105180390 0.8350 +6125 105180391 0.8350 +6125 114483834 0.7900 +6128 6129 0.9990 +6128 6130 0.9990 +6128 6132 0.9990 +6128 6133 0.9990 +6128 6135 0.9990 +6128 6136 0.9990 +6128 6137 0.9990 +6128 6138 0.9990 +6128 6139 0.9990 +6128 6141 0.9990 +6128 6142 0.9990 +6128 6143 0.9990 +6128 6144 0.9990 +6128 6146 0.9990 +6128 6147 0.9990 +6128 6152 0.9990 +6128 6154 0.9990 +6128 6155 0.9990 +6128 6156 0.9990 +6128 6157 0.9990 +6128 6158 0.9990 +6128 6159 0.9990 +6128 6160 0.9990 +6128 6161 0.9990 +6128 6164 0.9990 +6128 6165 0.9990 +6128 6166 0.9960 +6128 6167 0.9990 +6128 6168 0.9990 +6128 6169 0.9990 +6128 6170 0.9990 +6128 6171 0.9780 +6128 6173 0.9990 +6128 6175 0.9990 +6128 6176 0.9990 +6128 6181 0.9990 +6128 6183 0.8320 +6128 6184 0.5290 +6128 6187 0.9990 +6128 6188 0.9990 +6128 6189 0.9990 +6128 6191 0.9990 +6128 6192 0.9930 +6128 6193 0.9990 +6128 6194 0.9990 +6128 6201 0.9990 +6128 6202 0.9990 +6128 6203 0.9990 +6128 6204 0.9990 +6128 6205 0.9990 +6128 6206 0.9990 +6128 6207 0.9990 +6128 6208 0.9990 +6128 6209 0.9990 +6128 6210 0.9990 +6128 6217 0.9990 +6128 6218 0.9990 +6128 6222 0.9990 +6128 6223 0.9990 +6128 6224 0.9990 +6128 6227 0.9990 +6128 6228 0.9990 +6128 6229 0.9990 +6128 6230 0.9990 +6128 6231 0.9990 +6128 6232 0.9990 +6128 6233 0.9990 +6128 6234 0.9990 +6128 6235 0.9990 +6128 6499 0.4300 +6128 6633 0.5470 +6128 6726 0.9100 +6128 6727 0.9320 +6128 6728 0.9020 +6128 6729 0.8990 +6128 6730 0.9040 +6128 6731 0.8890 +6128 6734 0.8160 +6128 6780 0.6400 +6128 6838 0.6050 +6128 6950 0.4900 +6128 7178 0.9310 +6128 7203 0.5020 +6128 7284 0.4680 +6128 7311 0.9990 +6128 7314 0.6640 +6128 7316 0.6760 +6128 7381 0.4870 +6128 7415 0.5020 +6128 7458 0.4500 +6128 7494 0.8090 +6128 7555 0.4090 +6128 7866 0.7580 +6128 8034 0.4720 +6128 8036 0.4240 +6128 8189 0.4160 +6128 8260 0.6330 +6128 8266 0.7160 +6128 8361 0.5620 +6128 8531 0.4220 +6128 8568 0.7760 +6128 8607 0.5690 +6128 8638 0.6120 +6128 8661 0.4860 +6128 8662 0.7280 +6128 8664 0.5570 +6128 8665 0.8560 +6128 8666 0.6330 +6128 8667 0.8570 +6128 8668 0.8710 +6128 8721 0.8840 +6128 8886 0.9020 +6128 8894 0.7820 +6128 9045 0.9990 +6128 9132 0.4970 +6128 9141 0.6560 +6128 9147 0.8100 +6128 9188 0.4250 +6128 9312 0.4890 +6128 9343 0.7060 +6128 9349 0.9990 +6128 9401 0.5410 +6128 9584 0.4030 +6128 9636 0.6410 +6128 9652 0.4400 +6128 9669 0.9610 +6128 9732 0.9780 +6128 9775 0.7330 +6128 9789 0.4320 +6128 9858 0.6650 +6128 9879 0.4370 +6128 10061 0.5390 +6128 10146 0.5290 +6128 10200 0.4200 +6128 10213 0.4510 +6128 10236 0.5390 +6128 10240 0.5240 +6128 10360 0.4630 +6128 10399 0.9990 +6128 10412 0.9510 +6128 10430 0.8230 +6128 10436 0.6960 +6128 10438 0.6430 +6128 10473 0.9310 +6128 10476 0.5540 +6128 10480 0.8460 +6128 10492 0.6610 +6128 10514 0.4050 +6128 10528 0.6240 +6128 10537 0.6120 +6128 10557 0.6880 +6128 10574 0.7930 +6128 10575 0.7850 +6128 10576 0.8260 +6128 10594 0.5290 +6128 10606 0.4620 +6128 10643 0.4890 +6128 10666 0.4180 +6128 10694 0.7800 +6128 10726 0.4240 +6128 10767 0.8580 +6128 10884 0.6040 +6128 10952 0.9520 +6128 10969 0.9470 +6128 10985 0.8770 +6128 10988 0.6050 +6128 11222 0.8080 +6128 11224 0.9990 +6128 22894 0.4170 +6128 22927 0.8560 +6128 22948 0.7080 +6128 23076 0.8390 +6128 23148 0.6370 +6128 23173 0.4630 +6128 23185 0.9010 +6128 23204 0.9440 +6128 23212 0.6920 +6128 23246 0.9510 +6128 23476 0.4320 +6128 23478 0.5820 +6128 23480 0.8740 +6128 23481 0.9340 +6128 23517 0.6630 +6128 23521 0.9990 +6128 23560 0.9790 +6128 23640 0.6260 +6128 23708 0.5170 +6128 25873 0.9990 +6128 25914 0.5240 +6128 25973 0.4050 +6128 26046 0.8610 +6128 26135 0.9840 +6128 26155 0.9210 +6128 26156 0.9190 +6128 26168 0.5210 +6128 26251 0.4890 +6128 26354 0.8800 +6128 26986 0.7050 +6128 27000 0.6250 +6128 27012 0.4890 +6128 27043 0.5670 +6128 28972 0.5120 +6128 28991 0.5770 +6128 28998 0.8490 +6128 29088 0.7180 +6128 29093 0.7990 +6128 29889 0.9100 +6128 29927 0.8990 +6128 29978 0.4370 +6128 29979 0.4690 +6128 29997 0.8780 +6128 50487 0.4180 +6128 50613 0.4290 +6128 51018 0.5820 +6128 51023 0.5980 +6128 51042 0.8850 +6128 51065 0.9890 +6128 51068 0.9180 +6128 51069 0.8240 +6128 51073 0.7510 +6128 51081 0.9650 +6128 51116 0.8340 +6128 51119 0.7380 +6128 51121 0.9980 +6128 51149 0.9800 +6128 51154 0.9570 +6128 51187 0.9930 +6128 51319 0.9730 +6128 51386 0.8900 +6128 51388 0.8820 +6128 51398 0.4400 +6128 51602 0.4230 +6128 51720 0.4310 +6128 53918 0.8580 +6128 54460 0.4460 +6128 54463 0.4690 +6128 54464 0.4420 +6128 54475 0.4640 +6128 54499 0.8180 +6128 54543 0.4360 +6128 54552 0.7970 +6128 54596 0.4840 +6128 54663 0.8890 +6128 54881 0.7400 +6128 54888 0.6830 +6128 54948 0.6920 +6128 55139 0.4370 +6128 55153 0.4460 +6128 55173 0.8440 +6128 55176 0.4900 +6128 55272 0.8160 +6128 55299 0.8920 +6128 55316 0.9790 +6128 55319 0.8050 +6128 55324 0.4160 +6128 55341 0.8970 +6128 55421 0.4390 +6128 55591 0.4430 +6128 55629 0.5350 +6128 55646 0.8360 +6128 55651 0.7280 +6128 55757 0.4010 +6128 55759 0.9450 +6128 55802 0.5150 +6128 55854 0.6250 +6128 55893 0.4200 +6128 56479 0.5540 +6128 56648 0.8500 +6128 56731 0.4180 +6128 56893 0.4490 +6128 56926 0.8160 +6128 56945 0.5460 +6128 56965 0.5450 +6128 57003 0.8170 +6128 57062 0.4740 +6128 57418 0.7410 +6128 57532 0.7390 +6128 57696 0.4680 +6128 58477 0.8230 +6128 58505 0.5480 +6128 60386 0.4820 +6128 60559 0.4740 +6128 60678 0.9120 +6128 63931 0.8760 +6128 64215 0.4020 +6128 64221 0.5090 +6128 64318 0.8660 +6128 64374 0.6350 +6128 64434 0.4040 +6128 64960 0.8030 +6128 64963 0.8480 +6128 64965 0.5560 +6128 64969 0.9290 +6128 65003 0.7800 +6128 65005 0.4350 +6128 65008 0.8480 +6128 65083 0.4070 +6128 65121 0.5540 +6128 65122 0.5540 +6128 65993 0.5930 +6128 79036 0.5160 +6128 79048 0.8080 +6128 79159 0.5070 +6128 79590 0.8670 +6128 79631 0.7020 +6128 79668 0.5440 +6128 79707 0.5440 +6128 79782 0.4430 +6128 80135 0.9510 +6128 80218 0.5590 +6128 80349 0.4770 +6128 81624 0.4320 +6128 81875 0.4630 +6128 81887 0.5300 +6128 84154 0.7460 +6128 84298 0.8020 +6128 84311 0.4700 +6128 84365 0.9250 +6128 84549 0.9530 +6128 84993 0.4620 +6128 85476 0.6700 +6128 90441 0.8970 +6128 90459 0.4030 +6128 90701 0.4240 +6128 91408 0.7040 +6128 91875 0.8380 +6128 92140 0.4500 +6128 92196 0.8080 +6128 93107 0.4890 +6128 93550 0.6120 +6128 114987 0.9680 +6128 115098 0.8680 +6128 116832 0.9720 +6128 117246 0.9070 +6128 122704 0.5940 +6128 124245 0.4280 +6128 124454 0.5960 +6128 126402 0.9390 +6128 128308 0.5860 +6128 137994 0.4290 +6128 140032 0.9630 +6128 140801 0.9960 +6128 143244 0.8500 +6128 143630 0.4290 +6128 146212 0.7640 +6128 147011 0.4180 +6128 154288 0.4180 +6128 164153 0.6120 +6128 169522 0.4890 +6128 170850 0.4890 +6128 200916 0.9840 +6128 201595 0.7950 +6128 203068 0.8300 +6128 203427 0.4720 +6128 221078 0.8190 +6128 254268 0.9740 +6128 283518 0.4890 +6128 283600 0.4720 +6128 285855 0.9810 +6128 342538 0.9240 +6128 343068 0.5540 +6128 343070 0.5540 +6128 345630 0.5930 +6128 347487 0.9140 +6128 387129 0.9520 +6128 390999 0.5540 +6128 391002 0.5540 +6128 400735 0.5540 +6128 400736 0.5540 +6128 440560 0.5540 +6128 440561 0.5540 +6128 441873 0.5540 +6128 619279 0.4180 +6128 641776 0.7230 +6128 642489 0.4250 +6128 642987 0.4180 +6128 643909 0.7230 +6128 645051 0.7790 +6128 645073 0.7790 +6128 645359 0.5540 +6128 653619 0.5540 +6128 728524 0.7230 +6128 729396 0.7790 +6128 729422 0.7790 +6128 729428 0.7790 +6128 729431 0.7790 +6128 729442 0.7790 +6128 729447 0.7790 +6128 729528 0.5540 +6128 100008586 0.7790 +6128 100128731 0.5410 +6128 100132399 0.7790 +6128 100287482 0.6650 +6128 100505478 0.7070 +6128 100526842 0.9910 +6128 100529097 0.9480 +6128 100529239 0.9950 +6128 100996746 0.7230 +6128 101929983 0.5540 +6128 102724473 0.7790 +6128 105180390 0.7230 +6128 105180391 0.7230 +6128 114483834 0.6190 +6129 6130 0.9990 +6129 6132 0.9990 +6129 6133 0.9990 +6129 6135 0.9990 +6129 6136 0.9990 +6129 6137 0.9990 +6129 6138 0.9990 +6129 6139 0.9990 +6129 6141 0.9990 +6129 6142 0.9990 +6129 6143 0.9990 +6129 6144 0.9990 +6129 6146 0.9990 +6129 6147 0.9990 +6129 6152 0.9990 +6129 6154 0.9990 +6129 6155 0.9990 +6129 6156 0.9990 +6129 6157 0.9990 +6129 6158 0.9990 +6129 6159 0.9990 +6129 6160 0.9990 +6129 6161 0.9990 +6129 6164 0.9990 +6129 6165 0.9990 +6129 6166 0.9950 +6129 6167 0.9990 +6129 6168 0.9990 +6129 6169 0.9990 +6129 6170 0.9960 +6129 6171 0.6430 +6129 6173 0.9910 +6129 6175 0.9990 +6129 6176 0.9990 +6129 6181 0.9970 +6129 6182 0.9420 +6129 6183 0.8480 +6129 6184 0.5390 +6129 6187 0.9990 +6129 6188 0.9990 +6129 6189 0.9990 +6129 6191 0.9970 +6129 6192 0.9770 +6129 6193 0.9990 +6129 6194 0.9990 +6129 6201 0.9990 +6129 6202 0.9990 +6129 6203 0.9990 +6129 6204 0.9980 +6129 6205 0.9990 +6129 6206 0.9990 +6129 6207 0.9990 +6129 6208 0.9990 +6129 6209 0.9990 +6129 6210 0.9970 +6129 6217 0.9990 +6129 6218 0.9980 +6129 6222 0.9990 +6129 6223 0.9990 +6129 6224 0.9990 +6129 6227 0.9990 +6129 6228 0.9990 +6129 6229 0.9990 +6129 6230 0.9990 +6129 6231 0.9990 +6129 6232 0.9980 +6129 6233 0.9980 +6129 6234 0.9990 +6129 6235 0.9990 +6129 6613 0.4370 +6129 6726 0.9070 +6129 6727 0.9090 +6129 6728 0.8850 +6129 6729 0.9580 +6129 6730 0.9090 +6129 6731 0.8770 +6129 6734 0.9140 +6129 6838 0.7270 +6129 6924 0.4480 +6129 6950 0.5670 +6129 7153 0.4190 +6129 7167 0.4730 +6129 7178 0.9210 +6129 7203 0.4580 +6129 7264 0.4130 +6129 7284 0.9630 +6129 7311 0.9970 +6129 7314 0.5960 +6129 7316 0.5500 +6129 7407 0.4820 +6129 7415 0.4230 +6129 7494 0.8000 +6129 7555 0.4210 +6129 7570 0.4340 +6129 7866 0.5170 +6129 8225 0.5830 +6129 8260 0.5210 +6129 8266 0.6100 +6129 8565 0.4750 +6129 8568 0.7710 +6129 8602 0.5990 +6129 8607 0.6010 +6129 8638 0.4700 +6129 8661 0.4920 +6129 8662 0.6750 +6129 8663 0.6040 +6129 8664 0.6160 +6129 8665 0.7580 +6129 8666 0.6050 +6129 8667 0.5850 +6129 8668 0.9300 +6129 8721 0.8100 +6129 8833 0.4360 +6129 8886 0.8110 +6129 8894 0.7380 +6129 9045 0.9990 +6129 9086 0.7180 +6129 9132 0.4500 +6129 9136 0.4590 +6129 9147 0.8660 +6129 9188 0.5420 +6129 9255 0.4280 +6129 9277 0.4080 +6129 9312 0.4610 +6129 9319 0.4670 +6129 9343 0.7950 +6129 9349 0.9990 +6129 9401 0.5310 +6129 9470 0.4340 +6129 9533 0.7850 +6129 9553 0.9460 +6129 9584 0.5210 +6129 9617 0.4020 +6129 9636 0.4840 +6129 9669 0.9240 +6129 9732 0.8360 +6129 9775 0.8210 +6129 9782 0.4470 +6129 9789 0.5660 +6129 9790 0.6810 +6129 9801 0.9130 +6129 9858 0.6860 +6129 9904 0.5230 +6129 9933 0.5380 +6129 9939 0.4110 +6129 10056 0.4320 +6129 10061 0.4940 +6129 10102 0.7060 +6129 10135 0.4120 +6129 10153 0.5950 +6129 10200 0.4330 +6129 10209 0.4600 +6129 10212 0.5710 +6129 10213 0.5160 +6129 10236 0.6460 +6129 10284 0.4220 +6129 10399 0.9990 +6129 10412 0.9420 +6129 10430 0.8350 +6129 10436 0.4450 +6129 10438 0.6170 +6129 10473 0.7310 +6129 10480 0.7470 +6129 10492 0.6790 +6129 10514 0.5350 +6129 10521 0.4570 +6129 10528 0.7070 +6129 10537 0.4700 +6129 10557 0.6550 +6129 10574 0.7080 +6129 10575 0.7500 +6129 10576 0.6970 +6129 10594 0.4530 +6129 10606 0.4080 +6129 10607 0.4030 +6129 10655 0.4450 +6129 10694 0.7130 +6129 10767 0.8680 +6129 10813 0.4170 +6129 10856 0.4940 +6129 10952 0.9290 +6129 10969 0.9290 +6129 10985 0.8050 +6129 10988 0.7790 +6129 11047 0.4950 +6129 11056 0.5360 +6129 11103 0.6520 +6129 11128 0.7590 +6129 11137 0.5580 +6129 11222 0.8210 +6129 11224 0.9990 +6129 11269 0.4070 +6129 11331 0.4220 +6129 22820 0.4250 +6129 22894 0.4290 +6129 22916 0.6370 +6129 22927 0.6410 +6129 22933 0.5170 +6129 22948 0.6080 +6129 22984 0.8970 +6129 23019 0.4420 +6129 23076 0.8270 +6129 23148 0.6100 +6129 23173 0.7310 +6129 23204 0.8650 +6129 23212 0.8840 +6129 23223 0.5820 +6129 23246 0.9660 +6129 23252 0.5720 +6129 23378 0.5130 +6129 23450 0.4680 +6129 23478 0.4800 +6129 23480 0.8810 +6129 23481 0.9560 +6129 23517 0.7120 +6129 23521 0.9990 +6129 23560 0.9850 +6129 23633 0.4060 +6129 23640 0.6950 +6129 23708 0.5320 +6129 24140 0.5680 +6129 25873 0.9990 +6129 25879 0.4580 +6129 25885 0.7580 +6129 25914 0.4180 +6129 26046 0.8240 +6129 26135 0.9720 +6129 26155 0.9080 +6129 26156 0.8880 +6129 26168 0.5470 +6129 26251 0.4500 +6129 26271 0.4140 +6129 26354 0.8680 +6129 26574 0.5360 +6129 26986 0.8670 +6129 27000 0.5700 +6129 27012 0.4500 +6129 27043 0.5710 +6129 27292 0.6280 +6129 27430 0.4200 +6129 28972 0.4410 +6129 28987 0.4390 +6129 28991 0.4240 +6129 28998 0.8810 +6129 29088 0.6050 +6129 29093 0.8150 +6129 29889 0.9720 +6129 29927 0.9670 +6129 29960 0.5680 +6129 29979 0.4220 +6129 29997 0.8940 +6129 30836 0.4140 +6129 50814 0.4050 +6129 51018 0.6540 +6129 51021 0.9410 +6129 51042 0.9350 +6129 51065 0.9740 +6129 51068 0.9480 +6129 51069 0.8070 +6129 51073 0.8120 +6129 51081 0.8500 +6129 51082 0.4060 +6129 51116 0.6980 +6129 51118 0.4330 +6129 51119 0.5600 +6129 51121 0.9930 +6129 51149 0.8480 +6129 51154 0.9120 +6129 51187 0.9920 +6129 51202 0.6450 +6129 51224 0.4390 +6129 51234 0.4460 +6129 51264 0.9250 +6129 51319 0.8330 +6129 51386 0.6160 +6129 51388 0.8880 +6129 51398 0.4330 +6129 51520 0.6290 +6129 51575 0.4410 +6129 51602 0.6070 +6129 51727 0.5050 +6129 53918 0.8600 +6129 54433 0.4610 +6129 54463 0.5540 +6129 54475 0.4700 +6129 54499 0.8180 +6129 54516 0.4020 +6129 54552 0.8060 +6129 54555 0.4150 +6129 54606 0.7100 +6129 54663 0.8970 +6129 54881 0.7590 +6129 54888 0.4370 +6129 54948 0.7620 +6129 55003 0.4090 +6129 55006 0.4290 +6129 55052 0.9410 +6129 55127 0.4100 +6129 55131 0.5960 +6129 55153 0.6900 +6129 55173 0.8450 +6129 55176 0.8320 +6129 55226 0.4910 +6129 55272 0.8550 +6129 55299 0.9010 +6129 55308 0.4010 +6129 55316 0.8540 +6129 55319 0.8570 +6129 55324 0.5210 +6129 55341 0.9100 +6129 55591 0.7260 +6129 55607 0.4300 +6129 55629 0.5310 +6129 55646 0.8610 +6129 55651 0.6700 +6129 55695 0.4100 +6129 55703 0.7170 +6129 55720 0.5390 +6129 55759 0.9430 +6129 55794 0.5940 +6129 55802 0.5470 +6129 55813 0.4440 +6129 55854 0.5730 +6129 56342 0.5010 +6129 56479 0.4500 +6129 56648 0.7990 +6129 56893 0.4080 +6129 56902 0.4490 +6129 56926 0.8170 +6129 56965 0.6090 +6129 57003 0.8290 +6129 57050 0.4480 +6129 57062 0.5700 +6129 57418 0.8080 +6129 57696 0.6430 +6129 58477 0.8630 +6129 58505 0.5720 +6129 60558 0.5730 +6129 60559 0.4220 +6129 60678 0.9360 +6129 63875 0.9450 +6129 63899 0.4240 +6129 63931 0.8080 +6129 64146 0.6540 +6129 64216 0.5790 +6129 64221 0.5020 +6129 64318 0.8280 +6129 64374 0.6950 +6129 64412 0.4690 +6129 64434 0.4490 +6129 64794 0.5020 +6129 64960 0.7990 +6129 64963 0.8060 +6129 64965 0.9350 +6129 64968 0.9360 +6129 64969 0.8480 +6129 64979 0.9450 +6129 64983 0.9420 +6129 65003 0.7340 +6129 65005 0.9400 +6129 65008 0.8380 +6129 65095 0.5750 +6129 65121 0.5600 +6129 65122 0.5600 +6129 79009 0.4280 +6129 79036 0.4360 +6129 79039 0.4910 +6129 79048 0.8080 +6129 79050 0.4910 +6129 79137 0.4450 +6129 79159 0.5460 +6129 79590 0.8120 +6129 79631 0.7840 +6129 79668 0.6090 +6129 79707 0.5850 +6129 80135 0.9060 +6129 80146 0.4030 +6129 80218 0.4710 +6129 80270 0.4030 +6129 81875 0.5580 +6129 81887 0.5370 +6129 83479 0.4090 +6129 83743 0.6680 +6129 84154 0.8660 +6129 84172 0.7170 +6129 84273 0.5630 +6129 84294 0.4680 +6129 84298 0.8190 +6129 84340 0.4220 +6129 84365 0.9580 +6129 84549 0.8720 +6129 84851 0.5070 +6129 84946 0.4480 +6129 84993 0.4290 +6129 85476 0.8070 +6129 90441 0.9050 +6129 90459 0.4050 +6129 90701 0.4740 +6129 91408 0.5080 +6129 91574 0.4070 +6129 91646 0.4070 +6129 91875 0.8610 +6129 92170 0.5600 +6129 92196 0.6180 +6129 92399 0.7040 +6129 92856 0.5980 +6129 93107 0.4500 +6129 93517 0.4030 +6129 93550 0.4790 +6129 114987 0.8310 +6129 115098 0.8690 +6129 115416 0.6690 +6129 115708 0.4290 +6129 116832 0.9490 +6129 117246 0.8880 +6129 124454 0.5850 +6129 126402 0.8140 +6129 134492 0.4240 +6129 140032 0.8810 +6129 140801 0.9920 +6129 142940 0.4020 +6129 143244 0.8100 +6129 146212 0.6700 +6129 149041 0.5100 +6129 162427 0.4410 +6129 164153 0.4700 +6129 169522 0.4500 +6129 170850 0.4500 +6129 200916 0.9430 +6129 201595 0.6290 +6129 203068 0.8450 +6129 219927 0.9390 +6129 221078 0.6830 +6129 221830 0.4140 +6129 254268 0.7690 +6129 283518 0.4500 +6129 317781 0.4930 +6129 342538 0.9200 +6129 343068 0.5600 +6129 343070 0.5600 +6129 344758 0.4070 +6129 347487 0.8490 +6129 374659 0.6430 +6129 387338 0.4240 +6129 387712 0.4360 +6129 390999 0.5600 +6129 391002 0.5600 +6129 400735 0.5600 +6129 400736 0.5600 +6129 440560 0.5600 +6129 440561 0.5600 +6129 441873 0.5600 +6129 641776 0.6590 +6129 643909 0.6590 +6129 645051 0.5980 +6129 645073 0.5980 +6129 645359 0.5600 +6129 653619 0.5600 +6129 692312 0.4890 +6129 728524 0.6590 +6129 729396 0.5980 +6129 729422 0.5980 +6129 729428 0.5980 +6129 729431 0.5980 +6129 729442 0.5980 +6129 729447 0.5980 +6129 729528 0.5600 +6129 100008586 0.5980 +6129 100128731 0.5480 +6129 100132399 0.5980 +6129 100287482 0.6860 +6129 100526842 0.9900 +6129 100529097 0.9160 +6129 100529239 0.9870 +6129 100996746 0.6590 +6129 101929983 0.5600 +6129 102724473 0.5980 +6129 105180390 0.6590 +6129 105180391 0.6590 +6129 114483834 0.5150 +6130 6132 0.9990 +6130 6133 0.9990 +6130 6135 0.9990 +6130 6136 0.9990 +6130 6137 0.9990 +6130 6138 0.9990 +6130 6139 0.9990 +6130 6141 0.9990 +6130 6142 0.9990 +6130 6143 0.9990 +6130 6144 0.9990 +6130 6146 0.9990 +6130 6147 0.9990 +6130 6152 0.9990 +6130 6154 0.9990 +6130 6155 0.9990 +6130 6156 0.9990 +6130 6157 0.9990 +6130 6158 0.9990 +6130 6159 0.9990 +6130 6160 0.9990 +6130 6161 0.9990 +6130 6164 0.9990 +6130 6165 0.9990 +6130 6166 0.9990 +6130 6167 0.9990 +6130 6168 0.9990 +6130 6169 0.9990 +6130 6170 0.9980 +6130 6171 0.8900 +6130 6173 0.9990 +6130 6175 0.9990 +6130 6176 0.9990 +6130 6181 0.9990 +6130 6182 0.4840 +6130 6183 0.7880 +6130 6184 0.5440 +6130 6187 0.9990 +6130 6188 0.9990 +6130 6189 0.9990 +6130 6191 0.9990 +6130 6192 0.9920 +6130 6193 0.9990 +6130 6194 0.9990 +6130 6201 0.9990 +6130 6202 0.9990 +6130 6203 0.9990 +6130 6204 0.9990 +6130 6205 0.9990 +6130 6206 0.9990 +6130 6207 0.9990 +6130 6208 0.9990 +6130 6209 0.9990 +6130 6210 0.9990 +6130 6217 0.9990 +6130 6218 0.9990 +6130 6222 0.9990 +6130 6223 0.9990 +6130 6224 0.9990 +6130 6227 0.9990 +6130 6228 0.9990 +6130 6229 0.9990 +6130 6230 0.9990 +6130 6231 0.9990 +6130 6232 0.9990 +6130 6233 0.9990 +6130 6234 0.9990 +6130 6235 0.9990 +6130 6414 0.4610 +6130 6499 0.5550 +6130 6633 0.4100 +6130 6634 0.5530 +6130 6635 0.4430 +6130 6726 0.9120 +6130 6727 0.8870 +6130 6728 0.9070 +6130 6729 0.8980 +6130 6730 0.9230 +6130 6731 0.8870 +6130 6734 0.8240 +6130 6780 0.5990 +6130 6827 0.8750 +6130 6834 0.7460 +6130 6835 0.4200 +6130 6837 0.8960 +6130 6838 0.7420 +6130 6950 0.5240 +6130 7157 0.5090 +6130 7178 0.9150 +6130 7203 0.5070 +6130 7311 0.9980 +6130 7314 0.5790 +6130 7316 0.5370 +6130 7407 0.4680 +6130 7415 0.4440 +6130 7494 0.8010 +6130 7555 0.5350 +6130 7866 0.7560 +6130 8189 0.8450 +6130 8260 0.5670 +6130 8266 0.6260 +6130 8361 0.4140 +6130 8562 0.5040 +6130 8568 0.8230 +6130 8602 0.5200 +6130 8607 0.5610 +6130 8634 0.4110 +6130 8638 0.4920 +6130 8661 0.6910 +6130 8662 0.7810 +6130 8663 0.7490 +6130 8664 0.7620 +6130 8665 0.6760 +6130 8666 0.6860 +6130 8667 0.8250 +6130 8668 0.8990 +6130 8669 0.4040 +6130 8721 0.8940 +6130 8886 0.9570 +6130 8894 0.8300 +6130 9045 0.9990 +6130 9086 0.6240 +6130 9092 0.5270 +6130 9132 0.4130 +6130 9136 0.6130 +6130 9141 0.6330 +6130 9147 0.8290 +6130 9188 0.4400 +6130 9255 0.4740 +6130 9277 0.5800 +6130 9343 0.7030 +6130 9349 0.9990 +6130 9442 0.4480 +6130 9533 0.4120 +6130 9636 0.4940 +6130 9652 0.4930 +6130 9669 0.9770 +6130 9724 0.4810 +6130 9775 0.7710 +6130 9789 0.4540 +6130 9790 0.6260 +6130 9858 0.6120 +6130 9933 0.5830 +6130 10061 0.5120 +6130 10131 0.4290 +6130 10171 0.4240 +6130 10199 0.6270 +6130 10200 0.4280 +6130 10209 0.5620 +6130 10213 0.4240 +6130 10236 0.4050 +6130 10239 0.7390 +6130 10289 0.5130 +6130 10399 0.9990 +6130 10412 0.9310 +6130 10430 0.8290 +6130 10436 0.6410 +6130 10438 0.6720 +6130 10473 0.7450 +6130 10480 0.7450 +6130 10492 0.5350 +6130 10526 0.4070 +6130 10527 0.4760 +6130 10528 0.8210 +6130 10537 0.4920 +6130 10556 0.5570 +6130 10574 0.8120 +6130 10575 0.7400 +6130 10576 0.7840 +6130 10594 0.5420 +6130 10607 0.5690 +6130 10694 0.6970 +6130 10767 0.8780 +6130 10813 0.5580 +6130 10885 0.5710 +6130 10952 0.9450 +6130 10969 0.9680 +6130 10985 0.8740 +6130 10988 0.5660 +6130 11047 0.4240 +6130 11103 0.6290 +6130 11137 0.5050 +6130 11222 0.6930 +6130 11224 0.9990 +6130 22894 0.4890 +6130 22913 0.4790 +6130 22927 0.8290 +6130 22948 0.6850 +6130 22984 0.5800 +6130 23029 0.7390 +6130 23076 0.8910 +6130 23148 0.7590 +6130 23160 0.5580 +6130 23173 0.4850 +6130 23185 0.7260 +6130 23195 0.4880 +6130 23204 0.9350 +6130 23212 0.7530 +6130 23246 0.9790 +6130 23378 0.5210 +6130 23478 0.4350 +6130 23480 0.8850 +6130 23481 0.9790 +6130 23517 0.6690 +6130 23521 0.9990 +6130 23560 0.9780 +6130 23633 0.4420 +6130 23640 0.5970 +6130 23708 0.5560 +6130 24140 0.4720 +6130 24148 0.4100 +6130 25873 0.9990 +6130 25879 0.4900 +6130 25914 0.4300 +6130 25983 0.5790 +6130 26046 0.8280 +6130 26135 0.9850 +6130 26155 0.9540 +6130 26156 0.9720 +6130 26168 0.5310 +6130 26354 0.8220 +6130 26574 0.6060 +6130 26986 0.8120 +6130 26995 0.6280 +6130 27000 0.5690 +6130 27043 0.5800 +6130 27292 0.4020 +6130 27335 0.6830 +6130 27340 0.5380 +6130 27341 0.5290 +6130 27430 0.4430 +6130 28972 0.4570 +6130 28991 0.4830 +6130 28998 0.8230 +6130 29088 0.5060 +6130 29093 0.6850 +6130 29889 0.9610 +6130 29927 0.9090 +6130 29978 0.4200 +6130 29979 0.4010 +6130 29997 0.9300 +6130 30836 0.4960 +6130 51018 0.5920 +6130 51042 0.9140 +6130 51065 0.9740 +6130 51068 0.9700 +6130 51069 0.6890 +6130 51073 0.6820 +6130 51077 0.5870 +6130 51081 0.8580 +6130 51096 0.5940 +6130 51116 0.6270 +6130 51118 0.5480 +6130 51119 0.6020 +6130 51121 0.9970 +6130 51149 0.8960 +6130 51154 0.9710 +6130 51187 0.9930 +6130 51264 0.4360 +6130 51319 0.8980 +6130 51367 0.4250 +6130 51386 0.6010 +6130 51388 0.9270 +6130 51398 0.5540 +6130 51574 0.6040 +6130 51602 0.8240 +6130 53918 0.8920 +6130 54433 0.7300 +6130 54463 0.5450 +6130 54464 0.5200 +6130 54475 0.5240 +6130 54499 0.8250 +6130 54552 0.8190 +6130 54596 0.4660 +6130 54606 0.4520 +6130 54663 0.9100 +6130 54865 0.5620 +6130 54881 0.7250 +6130 54948 0.6110 +6130 55127 0.5940 +6130 55139 0.4830 +6130 55153 0.5090 +6130 55173 0.7850 +6130 55176 0.5000 +6130 55226 0.5820 +6130 55272 0.7380 +6130 55299 0.9680 +6130 55316 0.8640 +6130 55319 0.8170 +6130 55341 0.9260 +6130 55379 0.4770 +6130 55505 0.7740 +6130 55591 0.4680 +6130 55607 0.4290 +6130 55629 0.5040 +6130 55646 0.8620 +6130 55651 0.4120 +6130 55759 0.9520 +6130 55802 0.5130 +6130 55813 0.5260 +6130 55854 0.5840 +6130 55969 0.4570 +6130 56006 0.4020 +6130 56648 0.8550 +6130 56829 0.4550 +6130 56902 0.4320 +6130 56926 0.8250 +6130 56965 0.5010 +6130 57003 0.8320 +6130 57050 0.5920 +6130 57418 0.7310 +6130 57532 0.7290 +6130 57696 0.4780 +6130 58477 0.8270 +6130 58505 0.5280 +6130 60559 0.4240 +6130 60678 0.9510 +6130 63931 0.6770 +6130 64215 0.4180 +6130 64221 0.5010 +6130 64318 0.9380 +6130 64374 0.5970 +6130 64434 0.4030 +6130 64960 0.6420 +6130 64963 0.6660 +6130 64969 0.7160 +6130 65003 0.6280 +6130 65008 0.7260 +6130 65083 0.5380 +6130 65121 0.4960 +6130 65122 0.4960 +6130 65992 0.4230 +6130 79036 0.5560 +6130 79039 0.4420 +6130 79048 0.8290 +6130 79050 0.5500 +6130 79084 0.5100 +6130 79159 0.6780 +6130 79590 0.6790 +6130 79631 0.6610 +6130 79668 0.4970 +6130 79707 0.5320 +6130 79753 0.4100 +6130 79784 0.4230 +6130 79897 0.4810 +6130 79954 0.5700 +6130 80135 0.9270 +6130 80218 0.5380 +6130 80270 0.4180 +6130 80349 0.4990 +6130 81875 0.4250 +6130 81887 0.5540 +6130 83743 0.5210 +6130 84128 0.5610 +6130 84135 0.6420 +6130 84154 0.8840 +6130 84246 0.4260 +6130 84298 0.8470 +6130 84365 0.9670 +6130 84549 0.9530 +6130 84851 0.5070 +6130 84916 0.5930 +6130 84946 0.4640 +6130 84993 0.4020 +6130 85377 0.4230 +6130 85476 0.6600 +6130 87178 0.4750 +6130 90390 0.5190 +6130 90441 0.9100 +6130 90459 0.4050 +6130 90701 0.4190 +6130 91408 0.5090 +6130 91582 0.5890 +6130 91875 0.8420 +6130 92196 0.8080 +6130 92856 0.6450 +6130 93550 0.4920 +6130 114987 0.8880 +6130 115098 0.8710 +6130 116832 0.9600 +6130 117246 0.9590 +6130 124454 0.5000 +6130 126402 0.8550 +6130 140032 0.9700 +6130 140801 0.9980 +6130 142940 0.6250 +6130 143244 0.8550 +6130 146212 0.6630 +6130 164153 0.4920 +6130 200916 0.9590 +6130 201595 0.7910 +6130 203068 0.8210 +6130 221078 0.7960 +6130 254268 0.8830 +6130 255308 0.5190 +6130 285855 0.9830 +6130 342538 0.9630 +6130 343068 0.4960 +6130 343070 0.4960 +6130 345630 0.6470 +6130 347487 0.9250 +6130 387129 0.8360 +6130 390999 0.4960 +6130 391002 0.4960 +6130 400506 0.4370 +6130 400569 0.4370 +6130 400735 0.4960 +6130 400736 0.4960 +6130 440560 0.4960 +6130 440561 0.4960 +6130 441873 0.4960 +6130 641776 0.6380 +6130 643909 0.6380 +6130 645051 0.6570 +6130 645073 0.6570 +6130 645359 0.4960 +6130 653619 0.4960 +6130 692312 0.4610 +6130 728524 0.6380 +6130 728689 0.6020 +6130 729396 0.6570 +6130 729422 0.6570 +6130 729428 0.6570 +6130 729431 0.6570 +6130 729442 0.6570 +6130 729447 0.6570 +6130 729528 0.4960 +6130 100008586 0.6570 +6130 100128731 0.5200 +6130 100132399 0.6570 +6130 100287482 0.6110 +6130 100505478 0.6510 +6130 100526842 0.9950 +6130 100527943 0.4550 +6130 100529097 0.9390 +6130 100529239 0.9940 +6130 100996746 0.6380 +6130 101929983 0.4960 +6130 102724473 0.6570 +6130 105180390 0.6380 +6130 105180391 0.6380 +6130 114483834 0.5300 +6132 6133 0.9990 +6132 6135 0.9990 +6132 6136 0.9990 +6132 6137 0.9990 +6132 6138 0.9990 +6132 6139 0.9990 +6132 6141 0.9990 +6132 6142 0.9990 +6132 6143 0.9990 +6132 6144 0.9990 +6132 6146 0.9980 +6132 6147 0.9990 +6132 6150 0.6790 +6132 6152 0.9990 +6132 6154 0.9990 +6132 6155 0.9990 +6132 6156 0.9990 +6132 6157 0.9990 +6132 6158 0.9990 +6132 6159 0.9990 +6132 6160 0.9990 +6132 6161 0.9990 +6132 6164 0.9990 +6132 6165 0.9990 +6132 6166 0.9960 +6132 6167 0.9990 +6132 6168 0.9990 +6132 6169 0.9990 +6132 6170 0.9990 +6132 6171 0.9640 +6132 6173 0.9990 +6132 6175 0.9990 +6132 6176 0.9990 +6132 6181 0.9990 +6132 6182 0.9730 +6132 6183 0.9080 +6132 6184 0.5450 +6132 6187 0.9990 +6132 6188 0.9990 +6132 6189 0.9990 +6132 6191 0.9990 +6132 6192 0.9940 +6132 6193 0.9990 +6132 6194 0.9990 +6132 6201 0.9990 +6132 6202 0.9990 +6132 6203 0.9990 +6132 6204 0.9990 +6132 6205 0.9990 +6132 6206 0.9990 +6132 6207 0.9990 +6132 6208 0.9990 +6132 6209 0.9990 +6132 6210 0.9980 +6132 6217 0.9990 +6132 6218 0.9990 +6132 6222 0.9990 +6132 6223 0.9990 +6132 6224 0.9990 +6132 6227 0.9990 +6132 6228 0.9990 +6132 6229 0.9990 +6132 6230 0.9990 +6132 6231 0.9990 +6132 6232 0.9990 +6132 6233 0.9990 +6132 6234 0.9990 +6132 6235 0.9990 +6132 6472 0.4070 +6132 6499 0.4370 +6132 6627 0.5690 +6132 6633 0.4200 +6132 6648 0.5630 +6132 6687 0.5200 +6132 6726 0.9150 +6132 6727 0.9170 +6132 6728 0.8960 +6132 6729 0.9710 +6132 6730 0.9300 +6132 6731 0.8830 +6132 6734 0.9430 +6132 6742 0.4120 +6132 6748 0.5050 +6132 6780 0.6400 +6132 6950 0.4800 +6132 7037 0.6040 +6132 7153 0.4430 +6132 7166 0.4040 +6132 7167 0.4570 +6132 7178 0.9120 +6132 7184 0.4290 +6132 7203 0.5290 +6132 7264 0.4820 +6132 7284 0.9790 +6132 7311 0.9990 +6132 7314 0.7150 +6132 7316 0.6980 +6132 7403 0.5600 +6132 7404 0.5400 +6132 7407 0.4900 +6132 7458 0.4640 +6132 7468 0.6270 +6132 7494 0.8010 +6132 7534 0.5360 +6132 7555 0.6520 +6132 7818 0.8260 +6132 7866 0.7820 +6132 8034 0.4980 +6132 8192 0.4560 +6132 8225 0.6800 +6132 8242 0.4550 +6132 8260 0.5680 +6132 8266 0.7250 +6132 8284 0.4330 +6132 8565 0.4430 +6132 8607 0.4660 +6132 8624 0.6820 +6132 8638 0.6210 +6132 8661 0.4260 +6132 8662 0.6380 +6132 8663 0.6350 +6132 8664 0.7610 +6132 8665 0.6580 +6132 8666 0.6170 +6132 8667 0.8880 +6132 8668 0.8780 +6132 8721 0.9110 +6132 8803 0.4150 +6132 8833 0.4770 +6132 8894 0.6890 +6132 9045 0.9990 +6132 9086 0.7710 +6132 9132 0.4620 +6132 9141 0.5820 +6132 9147 0.8850 +6132 9188 0.4070 +6132 9312 0.4620 +6132 9343 0.8260 +6132 9349 0.9990 +6132 9401 0.4100 +6132 9528 0.4110 +6132 9533 0.8700 +6132 9553 0.9690 +6132 9617 0.4600 +6132 9636 0.6220 +6132 9652 0.4290 +6132 9669 0.9860 +6132 9694 0.6240 +6132 9732 0.9740 +6132 9775 0.7550 +6132 9789 0.4050 +6132 9801 0.9680 +6132 9841 0.4500 +6132 9858 0.8000 +6132 9933 0.6180 +6132 9978 0.4380 +6132 10061 0.5160 +6132 10102 0.7350 +6132 10135 0.4730 +6132 10200 0.4260 +6132 10209 0.4250 +6132 10236 0.4120 +6132 10399 0.9990 +6132 10412 0.9230 +6132 10430 0.8480 +6132 10436 0.4130 +6132 10438 0.6460 +6132 10473 0.9430 +6132 10480 0.5210 +6132 10492 0.5040 +6132 10537 0.6210 +6132 10557 0.6920 +6132 10574 0.8210 +6132 10575 0.7020 +6132 10576 0.6970 +6132 10614 0.5090 +6132 10657 0.4410 +6132 10664 0.4200 +6132 10666 0.5880 +6132 10667 0.4210 +6132 10694 0.5290 +6132 10730 0.5240 +6132 10765 0.4330 +6132 10767 0.8590 +6132 10939 0.5180 +6132 10952 0.9320 +6132 10964 0.4260 +6132 10969 0.6670 +6132 10985 0.8690 +6132 10988 0.7770 +6132 11047 0.5240 +6132 11128 0.8210 +6132 11137 0.5250 +6132 11222 0.8470 +6132 11224 0.9990 +6132 22894 0.4520 +6132 22927 0.8460 +6132 22948 0.6240 +6132 22984 0.9630 +6132 23029 0.6990 +6132 23076 0.4540 +6132 23135 0.5730 +6132 23148 0.6220 +6132 23173 0.7380 +6132 23185 0.9100 +6132 23195 0.4830 +6132 23204 0.9430 +6132 23212 0.7070 +6132 23246 0.8390 +6132 23252 0.6620 +6132 23288 0.4620 +6132 23341 0.4690 +6132 23378 0.5550 +6132 23405 0.6830 +6132 23435 0.4680 +6132 23478 0.4480 +6132 23480 0.8860 +6132 23481 0.9620 +6132 23517 0.6800 +6132 23521 0.9990 +6132 23560 0.9570 +6132 23633 0.4140 +6132 23640 0.7810 +6132 23708 0.5320 +6132 23732 0.5520 +6132 25771 0.4040 +6132 25873 0.9990 +6132 25879 0.5450 +6132 25885 0.8200 +6132 25914 0.4330 +6132 25973 0.4110 +6132 26046 0.8150 +6132 26135 0.9860 +6132 26156 0.6050 +6132 26168 0.5360 +6132 26251 0.4620 +6132 26271 0.4600 +6132 26289 0.4800 +6132 26330 0.4100 +6132 26354 0.5130 +6132 26589 0.8450 +6132 26986 0.7410 +6132 27000 0.5280 +6132 27012 0.4620 +6132 27043 0.5630 +6132 27335 0.8490 +6132 27430 0.4750 +6132 28972 0.4320 +6132 28991 0.7430 +6132 28998 0.8650 +6132 29088 0.5950 +6132 29093 0.8380 +6132 29102 0.5360 +6132 29789 0.4510 +6132 29889 0.9590 +6132 29927 0.9740 +6132 29978 0.4600 +6132 29979 0.4880 +6132 29997 0.9120 +6132 50487 0.5880 +6132 50613 0.4560 +6132 50808 0.4800 +6132 50814 0.4660 +6132 51021 0.9710 +6132 51023 0.6150 +6132 51042 0.9130 +6132 51065 0.9800 +6132 51068 0.9560 +6132 51073 0.8860 +6132 51081 0.9550 +6132 51116 0.8120 +6132 51119 0.6270 +6132 51121 0.9980 +6132 51149 0.9790 +6132 51154 0.9150 +6132 51187 0.9940 +6132 51263 0.5320 +6132 51264 0.9650 +6132 51319 0.9750 +6132 51386 0.5120 +6132 51398 0.5680 +6132 51574 0.6530 +6132 51634 0.4760 +6132 51650 0.5640 +6132 51720 0.5930 +6132 51727 0.4830 +6132 53918 0.8630 +6132 54463 0.4810 +6132 54464 0.5480 +6132 54475 0.4590 +6132 54499 0.8220 +6132 54516 0.4600 +6132 54552 0.5260 +6132 54596 0.5410 +6132 54606 0.4480 +6132 54881 0.7290 +6132 54948 0.8380 +6132 55052 0.9730 +6132 55139 0.4690 +6132 55143 0.5790 +6132 55153 0.4480 +6132 55157 0.4260 +6132 55168 0.6360 +6132 55173 0.8910 +6132 55176 0.8710 +6132 55272 0.8960 +6132 55308 0.4730 +6132 55316 0.9790 +6132 55319 0.8010 +6132 55324 0.5260 +6132 55341 0.9670 +6132 55379 0.4310 +6132 55591 0.7260 +6132 55607 0.5280 +6132 55629 0.5210 +6132 55646 0.8060 +6132 55651 0.7540 +6132 55699 0.4600 +6132 55703 0.7720 +6132 55759 0.7630 +6132 55802 0.5270 +6132 55847 0.4010 +6132 55854 0.7420 +6132 55893 0.5930 +6132 55969 0.4670 +6132 56257 0.4560 +6132 56479 0.4620 +6132 56648 0.8610 +6132 56731 0.6020 +6132 56829 0.5340 +6132 56893 0.4880 +6132 56926 0.8270 +6132 56965 0.7100 +6132 57003 0.8220 +6132 57062 0.4510 +6132 57109 0.6220 +6132 57129 0.8020 +6132 57136 0.6140 +6132 57418 0.7480 +6132 57471 0.4340 +6132 57532 0.7860 +6132 58477 0.8230 +6132 58505 0.5280 +6132 60386 0.4630 +6132 60488 0.8120 +6132 60558 0.6620 +6132 60559 0.4010 +6132 60678 0.9560 +6132 63875 0.9720 +6132 63931 0.8670 +6132 64146 0.7670 +6132 64221 0.4990 +6132 64282 0.6370 +6132 64374 0.7750 +6132 64432 0.5290 +6132 64960 0.8290 +6132 64963 0.8660 +6132 64965 0.9740 +6132 64968 0.9720 +6132 64969 0.8910 +6132 64975 0.7960 +6132 64976 0.7080 +6132 64978 0.5660 +6132 64979 0.9740 +6132 64981 0.7950 +6132 64983 0.9500 +6132 65003 0.7950 +6132 65005 0.9700 +6132 65008 0.8400 +6132 65080 0.5430 +6132 65121 0.5800 +6132 65122 0.5800 +6132 65265 0.4490 +6132 79009 0.4010 +6132 79036 0.5290 +6132 79048 0.8060 +6132 79084 0.5880 +6132 79411 0.4380 +6132 79590 0.8660 +6132 79631 0.8270 +6132 79668 0.7090 +6132 79697 0.9860 +6132 79707 0.5970 +6132 80146 0.4560 +6132 80155 0.4050 +6132 80218 0.5550 +6132 80221 0.7020 +6132 80270 0.4570 +6132 80349 0.4370 +6132 81875 0.4060 +6132 81887 0.5320 +6132 84154 0.8170 +6132 84172 0.7710 +6132 84298 0.8020 +6132 84310 0.4060 +6132 84340 0.4040 +6132 84365 0.5610 +6132 84450 0.4920 +6132 84545 0.8110 +6132 84549 0.5230 +6132 84656 0.5490 +6132 84790 0.4670 +6132 84851 0.5140 +6132 84864 0.7250 +6132 84993 0.5110 +6132 85476 0.8180 +6132 85865 0.4060 +6132 87178 0.7440 +6132 90313 0.4410 +6132 90441 0.8970 +6132 90459 0.4320 +6132 90624 0.4410 +6132 90701 0.4250 +6132 91408 0.4890 +6132 91574 0.4600 +6132 91875 0.8650 +6132 91893 0.4130 +6132 92170 0.5270 +6132 92196 0.7950 +6132 92399 0.9070 +6132 93107 0.4620 +6132 93517 0.4560 +6132 93550 0.6210 +6132 93621 0.4160 +6132 114781 0.4260 +6132 114987 0.9680 +6132 115098 0.9100 +6132 115416 0.7380 +6132 116540 0.4280 +6132 116541 0.5620 +6132 116832 0.9640 +6132 117246 0.8040 +6132 121278 0.4260 +6132 121642 0.4220 +6132 122481 0.4800 +6132 122622 0.4090 +6132 123263 0.4060 +6132 124454 0.6890 +6132 124995 0.4930 +6132 126402 0.9440 +6132 137994 0.4740 +6132 140032 0.9690 +6132 140801 0.9970 +6132 143244 0.8610 +6132 143630 0.4560 +6132 147011 0.5880 +6132 149041 0.5450 +6132 149478 0.4260 +6132 154288 0.5880 +6132 157310 0.5540 +6132 158067 0.4800 +6132 164153 0.6210 +6132 169522 0.4620 +6132 170850 0.4620 +6132 200916 0.9710 +6132 201595 0.7940 +6132 203068 0.8330 +6132 203427 0.4630 +6132 219927 0.9720 +6132 220988 0.4530 +6132 221264 0.4800 +6132 254268 0.9570 +6132 255308 0.5860 +6132 283518 0.4620 +6132 283600 0.4630 +6132 285521 0.4110 +6132 285855 0.9850 +6132 339230 0.6150 +6132 342538 0.9410 +6132 343068 0.5800 +6132 343070 0.5800 +6132 345051 0.5520 +6132 347487 0.9750 +6132 374659 0.7860 +6132 387129 0.9490 +6132 387712 0.4120 +6132 390999 0.5800 +6132 391002 0.5800 +6132 400735 0.5800 +6132 400736 0.5800 +6132 440560 0.5800 +6132 440561 0.5800 +6132 441873 0.5800 +6132 548645 0.4690 +6132 619279 0.5880 +6132 641776 0.7410 +6132 642489 0.4050 +6132 642987 0.5880 +6132 643909 0.7410 +6132 645051 0.7800 +6132 645073 0.7800 +6132 645359 0.5800 +6132 653619 0.5800 +6132 654364 0.4330 +6132 728524 0.7410 +6132 729396 0.7800 +6132 729422 0.7800 +6132 729428 0.7800 +6132 729431 0.7800 +6132 729442 0.7800 +6132 729447 0.7800 +6132 729528 0.5800 +6132 100008586 0.7800 +6132 100128731 0.5670 +6132 100132399 0.7800 +6132 100287482 0.7690 +6132 100505478 0.8050 +6132 100526842 0.9950 +6132 100527943 0.4550 +6132 100529097 0.9420 +6132 100529239 0.9950 +6132 100996746 0.7410 +6132 101929983 0.5800 +6132 102724473 0.7800 +6132 105180390 0.7410 +6132 105180391 0.7410 +6132 114483834 0.5440 +6133 6135 0.9990 +6133 6136 0.9990 +6133 6137 0.9990 +6133 6138 0.9990 +6133 6139 0.9990 +6133 6141 0.9990 +6133 6142 0.9990 +6133 6143 0.9990 +6133 6144 0.9990 +6133 6146 0.9990 +6133 6147 0.9990 +6133 6150 0.8020 +6133 6152 0.9990 +6133 6154 0.9990 +6133 6155 0.9990 +6133 6156 0.9990 +6133 6157 0.9990 +6133 6158 0.9990 +6133 6159 0.9990 +6133 6160 0.9990 +6133 6161 0.9990 +6133 6164 0.9990 +6133 6165 0.9990 +6133 6166 0.9970 +6133 6167 0.9990 +6133 6168 0.9990 +6133 6169 0.9990 +6133 6170 0.9990 +6133 6171 0.7250 +6133 6173 0.9970 +6133 6175 0.9990 +6133 6176 0.9990 +6133 6181 0.9990 +6133 6182 0.9830 +6133 6183 0.9450 +6133 6184 0.5190 +6133 6187 0.9990 +6133 6188 0.9990 +6133 6189 0.9990 +6133 6191 0.9990 +6133 6192 0.9930 +6133 6193 0.9990 +6133 6194 0.9990 +6133 6201 0.9990 +6133 6202 0.9990 +6133 6203 0.9990 +6133 6204 0.9990 +6133 6205 0.9990 +6133 6206 0.9990 +6133 6207 0.9990 +6133 6208 0.9990 +6133 6209 0.9990 +6133 6210 0.9990 +6133 6217 0.9990 +6133 6218 0.9990 +6133 6222 0.9990 +6133 6223 0.9990 +6133 6224 0.9990 +6133 6227 0.9990 +6133 6228 0.9990 +6133 6229 0.9990 +6133 6230 0.9990 +6133 6231 0.9990 +6133 6232 0.9990 +6133 6233 0.9990 +6133 6234 0.9990 +6133 6235 0.9990 +6133 6391 0.4280 +6133 6499 0.4390 +6133 6633 0.4400 +6133 6635 0.4260 +6133 6637 0.4410 +6133 6648 0.5190 +6133 6687 0.4980 +6133 6726 0.9070 +6133 6727 0.9050 +6133 6728 0.8940 +6133 6729 0.9800 +6133 6730 0.9030 +6133 6731 0.8780 +6133 6734 0.9300 +6133 6897 0.4460 +6133 6924 0.5540 +6133 6950 0.5620 +6133 7153 0.4110 +6133 7178 0.9720 +6133 7203 0.6130 +6133 7264 0.4930 +6133 7284 0.9860 +6133 7311 0.9990 +6133 7314 0.5720 +6133 7316 0.6190 +6133 7403 0.5180 +6133 7404 0.5250 +6133 7407 0.7000 +6133 7415 0.4590 +6133 7458 0.4040 +6133 7494 0.8020 +6133 7818 0.8400 +6133 7919 0.4260 +6133 8192 0.4030 +6133 8225 0.8210 +6133 8242 0.4660 +6133 8260 0.5900 +6133 8266 0.6330 +6133 8284 0.5060 +6133 8565 0.4800 +6133 8568 0.7610 +6133 8607 0.5160 +6133 8624 0.6770 +6133 8638 0.4980 +6133 8661 0.4950 +6133 8662 0.6610 +6133 8664 0.5390 +6133 8665 0.7400 +6133 8666 0.7640 +6133 8667 0.5920 +6133 8668 0.8620 +6133 8721 0.4820 +6133 8882 0.5740 +6133 8886 0.8910 +6133 8894 0.7230 +6133 9045 0.9990 +6133 9069 0.4690 +6133 9086 0.7670 +6133 9132 0.5080 +6133 9141 0.6530 +6133 9147 0.8950 +6133 9188 0.4080 +6133 9255 0.4490 +6133 9312 0.5080 +6133 9343 0.8640 +6133 9349 0.9990 +6133 9528 0.4080 +6133 9533 0.8490 +6133 9553 0.9830 +6133 9584 0.5200 +6133 9617 0.5060 +6133 9636 0.5170 +6133 9652 0.4370 +6133 9669 0.9910 +6133 9732 0.9240 +6133 9775 0.4020 +6133 9789 0.5150 +6133 9801 0.9810 +6133 9858 0.8240 +6133 10056 0.4400 +6133 10061 0.6080 +6133 10072 0.6240 +6133 10102 0.7970 +6133 10135 0.5160 +6133 10155 0.4250 +6133 10200 0.4160 +6133 10209 0.5100 +6133 10213 0.4860 +6133 10236 0.4570 +6133 10399 0.9990 +6133 10412 0.9460 +6133 10430 0.8360 +6133 10438 0.6740 +6133 10473 0.8360 +6133 10476 0.4900 +6133 10480 0.8070 +6133 10492 0.5530 +6133 10537 0.4980 +6133 10557 0.7750 +6133 10574 0.7230 +6133 10575 0.7940 +6133 10576 0.7230 +6133 10606 0.4260 +6133 10667 0.4760 +6133 10694 0.7520 +6133 10730 0.5200 +6133 10765 0.4630 +6133 10767 0.8690 +6133 10827 0.4130 +6133 10939 0.4960 +6133 10952 0.9090 +6133 10964 0.4780 +6133 10969 0.8690 +6133 10985 0.8670 +6133 10988 0.8230 +6133 11019 0.4290 +6133 11047 0.4300 +6133 11128 0.8480 +6133 11222 0.9130 +6133 11224 0.9990 +6133 22894 0.4520 +6133 22927 0.8180 +6133 22948 0.6910 +6133 22984 0.9750 +6133 23076 0.8330 +6133 23135 0.5180 +6133 23148 0.7240 +6133 23173 0.7860 +6133 23204 0.9400 +6133 23212 0.5420 +6133 23246 0.9220 +6133 23252 0.8170 +6133 23405 0.5820 +6133 23423 0.4380 +6133 23435 0.4020 +6133 23478 0.4910 +6133 23480 0.9030 +6133 23481 0.9260 +6133 23517 0.6860 +6133 23521 0.9990 +6133 23560 0.9750 +6133 23633 0.4240 +6133 23640 0.8290 +6133 23708 0.5410 +6133 23732 0.6380 +6133 24140 0.4250 +6133 25873 0.9990 +6133 25885 0.8700 +6133 25914 0.4540 +6133 26046 0.8330 +6133 26135 0.9870 +6133 26155 0.8700 +6133 26156 0.8580 +6133 26164 0.4650 +6133 26168 0.5230 +6133 26227 0.4150 +6133 26251 0.5080 +6133 26271 0.5090 +6133 26289 0.5480 +6133 26354 0.7930 +6133 26589 0.9010 +6133 26986 0.5340 +6133 27000 0.4490 +6133 27012 0.5080 +6133 27043 0.5690 +6133 27089 0.4060 +6133 27335 0.4780 +6133 27349 0.4140 +6133 27430 0.5050 +6133 28972 0.4290 +6133 28998 0.9160 +6133 29088 0.6210 +6133 29093 0.9110 +6133 29102 0.5690 +6133 29789 0.4740 +6133 29889 0.9060 +6133 29927 0.9810 +6133 29960 0.4250 +6133 29978 0.4160 +6133 29979 0.4490 +6133 29997 0.8620 +6133 50613 0.4080 +6133 50808 0.5510 +6133 50814 0.4890 +6133 51014 0.4530 +6133 51021 0.9820 +6133 51023 0.7110 +6133 51042 0.8900 +6133 51065 0.9910 +6133 51068 0.9340 +6133 51069 0.8900 +6133 51073 0.8920 +6133 51081 0.8900 +6133 51088 0.4140 +6133 51116 0.8280 +6133 51119 0.6050 +6133 51121 0.9960 +6133 51149 0.9350 +6133 51154 0.9750 +6133 51187 0.9910 +6133 51224 0.5210 +6133 51263 0.5520 +6133 51264 0.9720 +6133 51314 0.4190 +6133 51319 0.8680 +6133 51386 0.4380 +6133 51388 0.8770 +6133 51398 0.5200 +6133 51520 0.4120 +6133 51574 0.4040 +6133 51602 0.4230 +6133 51727 0.5840 +6133 53918 0.8580 +6133 54148 0.4720 +6133 54463 0.4580 +6133 54464 0.4820 +6133 54475 0.4390 +6133 54499 0.8230 +6133 54516 0.5060 +6133 54543 0.5250 +6133 54552 0.7900 +6133 54663 0.8610 +6133 54881 0.7180 +6133 54948 0.8800 +6133 54965 0.4360 +6133 54995 0.4720 +6133 55052 0.9810 +6133 55139 0.4370 +6133 55143 0.4670 +6133 55153 0.4390 +6133 55157 0.4520 +6133 55168 0.6380 +6133 55173 0.9540 +6133 55176 0.9060 +6133 55272 0.9490 +6133 55299 0.8620 +6133 55316 0.9330 +6133 55319 0.8030 +6133 55324 0.5880 +6133 55341 0.9100 +6133 55591 0.7810 +6133 55607 0.4300 +6133 55629 0.5200 +6133 55646 0.8030 +6133 55651 0.7830 +6133 55699 0.4560 +6133 55703 0.8700 +6133 55759 0.9280 +6133 55802 0.5250 +6133 55854 0.6300 +6133 55969 0.4420 +6133 56474 0.5250 +6133 56479 0.5080 +6133 56648 0.9240 +6133 56893 0.4330 +6133 56926 0.8220 +6133 56965 0.7130 +6133 57003 0.8200 +6133 57038 0.4800 +6133 57129 0.8680 +6133 57136 0.4510 +6133 57176 0.4070 +6133 57418 0.7660 +6133 57471 0.4870 +6133 57696 0.4700 +6133 58477 0.8160 +6133 58505 0.5830 +6133 60488 0.8370 +6133 60558 0.8170 +6133 60559 0.5020 +6133 60678 0.9440 +6133 63875 0.9830 +6133 63931 0.8900 +6133 64146 0.8190 +6133 64221 0.5030 +6133 64318 0.8520 +6133 64374 0.8290 +6133 64960 0.8830 +6133 64963 0.9100 +6133 64965 0.9830 +6133 64968 0.9810 +6133 64969 0.9450 +6133 64975 0.8270 +6133 64976 0.7460 +6133 64978 0.4830 +6133 64979 0.9830 +6133 64981 0.8570 +6133 64983 0.9830 +6133 65003 0.8340 +6133 65005 0.9810 +6133 65008 0.9040 +6133 65080 0.5720 +6133 65121 0.6090 +6133 65122 0.6090 +6133 65993 0.4550 +6133 79036 0.5530 +6133 79048 0.8010 +6133 79159 0.5010 +6133 79590 0.8910 +6133 79631 0.8450 +6133 79668 0.7130 +6133 79707 0.5040 +6133 79730 0.4580 +6133 80008 0.5210 +6133 80135 0.8600 +6133 80146 0.4890 +6133 80218 0.5620 +6133 80222 0.4370 +6133 80270 0.4890 +6133 80324 0.4160 +6133 80349 0.4640 +6133 81875 0.4050 +6133 81887 0.5060 +6133 83987 0.4110 +6133 84154 0.6030 +6133 84172 0.8900 +6133 84273 0.4970 +6133 84298 0.8120 +6133 84340 0.4780 +6133 84365 0.8640 +6133 84545 0.9140 +6133 84549 0.8510 +6133 84705 0.4310 +6133 84851 0.5170 +6133 84993 0.4450 +6133 85476 0.8540 +6133 85865 0.4730 +6133 87178 0.4800 +6133 90441 0.8910 +6133 90459 0.4030 +6133 90624 0.4690 +6133 90701 0.4520 +6133 91408 0.5680 +6133 91574 0.5110 +6133 91875 0.9010 +6133 91893 0.4380 +6133 92170 0.5880 +6133 92196 0.8080 +6133 92399 0.9260 +6133 93107 0.5080 +6133 93517 0.4890 +6133 93550 0.4980 +6133 114781 0.4560 +6133 114987 0.9160 +6133 115098 0.8710 +6133 115416 0.4400 +6133 116832 0.9810 +6133 117246 0.8680 +6133 120892 0.5140 +6133 122481 0.5480 +6133 123283 0.4360 +6133 124454 0.7380 +6133 126402 0.8880 +6133 140032 0.9620 +6133 140801 0.9980 +6133 143244 0.9190 +6133 143630 0.4080 +6133 146212 0.5400 +6133 148022 0.4370 +6133 149478 0.4560 +6133 157310 0.4690 +6133 158067 0.5480 +6133 164153 0.4980 +6133 169522 0.5080 +6133 170622 0.4120 +6133 170850 0.5080 +6133 200916 0.9820 +6133 201595 0.8010 +6133 203068 0.8160 +6133 219927 0.9820 +6133 221078 0.7620 +6133 221264 0.5480 +6133 254268 0.9050 +6133 283518 0.5080 +6133 285855 0.9820 +6133 342538 0.9420 +6133 343068 0.6090 +6133 343070 0.6090 +6133 345051 0.6380 +6133 347487 0.9280 +6133 353376 0.4370 +6133 374659 0.8650 +6133 387129 0.8590 +6133 387712 0.5290 +6133 390999 0.6090 +6133 391002 0.6090 +6133 400735 0.6090 +6133 400736 0.6090 +6133 440560 0.6090 +6133 440561 0.6090 +6133 441873 0.6090 +6133 548645 0.4890 +6133 641776 0.7370 +6133 643909 0.7370 +6133 645051 0.6730 +6133 645073 0.6730 +6133 645359 0.6090 +6133 653619 0.6090 +6133 654364 0.4850 +6133 728378 0.4600 +6133 728524 0.7370 +6133 729396 0.6730 +6133 729422 0.6730 +6133 729428 0.6730 +6133 729431 0.6730 +6133 729442 0.6730 +6133 729447 0.6730 +6133 729528 0.6090 +6133 100008586 0.6730 +6133 100128731 0.5460 +6133 100132399 0.6730 +6133 100287482 0.8210 +6133 100302736 0.4370 +6133 100505478 0.8420 +6133 100526842 0.9920 +6133 100527943 0.4370 +6133 100529097 0.9620 +6133 100529239 0.9940 +6133 100996746 0.7370 +6133 101929983 0.6090 +6133 102724473 0.6730 +6133 105180390 0.7370 +6133 105180391 0.7370 +6133 114483834 0.6200 +6135 6136 0.9990 +6135 6137 0.9990 +6135 6138 0.9990 +6135 6139 0.9990 +6135 6141 0.9990 +6135 6142 0.9990 +6135 6143 0.9990 +6135 6144 0.9990 +6135 6146 0.9990 +6135 6147 0.9990 +6135 6150 0.7730 +6135 6152 0.9990 +6135 6154 0.9990 +6135 6155 0.9990 +6135 6156 0.9990 +6135 6157 0.9990 +6135 6158 0.9990 +6135 6159 0.9990 +6135 6160 0.9990 +6135 6161 0.9990 +6135 6164 0.9990 +6135 6165 0.9990 +6135 6166 0.9960 +6135 6167 0.9990 +6135 6168 0.9990 +6135 6169 0.9990 +6135 6170 0.9990 +6135 6171 0.9820 +6135 6173 0.9990 +6135 6175 0.9990 +6135 6176 0.9990 +6135 6181 0.9990 +6135 6182 0.9990 +6135 6183 0.9890 +6135 6184 0.4360 +6135 6187 0.9990 +6135 6188 0.9990 +6135 6189 0.9990 +6135 6191 0.9990 +6135 6192 0.9930 +6135 6193 0.9990 +6135 6194 0.9990 +6135 6201 0.9990 +6135 6202 0.9990 +6135 6203 0.9990 +6135 6204 0.9990 +6135 6205 0.9990 +6135 6206 0.9990 +6135 6207 0.9990 +6135 6208 0.9990 +6135 6209 0.9990 +6135 6210 0.9990 +6135 6217 0.9990 +6135 6218 0.9990 +6135 6222 0.9990 +6135 6223 0.9990 +6135 6224 0.9990 +6135 6227 0.9990 +6135 6228 0.9990 +6135 6229 0.9990 +6135 6230 0.9990 +6135 6231 0.9990 +6135 6232 0.9990 +6135 6233 0.9990 +6135 6234 0.9990 +6135 6235 0.9990 +6135 6499 0.4330 +6135 6625 0.5660 +6135 6627 0.4070 +6135 6633 0.7500 +6135 6648 0.6820 +6135 6687 0.5390 +6135 6726 0.8740 +6135 6727 0.8820 +6135 6728 0.8690 +6135 6729 0.9930 +6135 6730 0.9090 +6135 6731 0.8970 +6135 6734 0.9330 +6135 6742 0.5560 +6135 6749 0.4480 +6135 6835 0.5130 +6135 6888 0.5350 +6135 6897 0.5930 +6135 6907 0.4240 +6135 6908 0.4930 +6135 6924 0.9240 +6135 6949 0.5700 +6135 6950 0.5260 +6135 7153 0.4850 +6135 7157 0.9710 +6135 7167 0.5070 +6135 7178 0.9610 +6135 7203 0.4810 +6135 7264 0.6020 +6135 7284 0.9990 +6135 7311 0.9990 +6135 7314 0.7740 +6135 7316 0.6940 +6135 7343 0.4180 +6135 7403 0.6210 +6135 7404 0.6160 +6135 7407 0.5950 +6135 7415 0.6970 +6135 7458 0.4460 +6135 7494 0.8070 +6135 7514 0.4160 +6135 7531 0.4330 +6135 7555 0.5870 +6135 7812 0.4100 +6135 7818 0.8620 +6135 7866 0.7890 +6135 8034 0.4480 +6135 8192 0.5760 +6135 8225 0.9310 +6135 8242 0.6120 +6135 8260 0.4720 +6135 8266 0.7320 +6135 8284 0.6070 +6135 8361 0.4240 +6135 8565 0.5150 +6135 8607 0.4630 +6135 8624 0.8520 +6135 8638 0.6040 +6135 8650 0.4400 +6135 8661 0.5240 +6135 8662 0.5960 +6135 8663 0.4480 +6135 8664 0.6220 +6135 8665 0.7770 +6135 8666 0.6720 +6135 8667 0.8400 +6135 8668 0.9340 +6135 8721 0.9000 +6135 8882 0.4220 +6135 8894 0.6950 +6135 9045 0.9990 +6135 9069 0.4440 +6135 9086 0.8890 +6135 9097 0.5620 +6135 9132 0.5530 +6135 9141 0.7840 +6135 9147 0.9480 +6135 9188 0.5180 +6135 9221 0.4270 +6135 9255 0.4710 +6135 9312 0.5530 +6135 9343 0.9540 +6135 9349 0.9990 +6135 9440 0.4300 +6135 9528 0.4410 +6135 9533 0.9490 +6135 9553 0.9980 +6135 9617 0.5650 +6135 9636 0.6420 +6135 9652 0.4360 +6135 9669 0.9860 +6135 9690 0.5170 +6135 9698 0.4060 +6135 9732 0.9770 +6135 9789 0.5200 +6135 9801 0.9980 +6135 9858 0.9030 +6135 9862 0.4120 +6135 9939 0.6660 +6135 10061 0.7900 +6135 10102 0.8920 +6135 10135 0.5830 +6135 10153 0.4010 +6135 10200 0.4210 +6135 10201 0.4200 +6135 10209 0.4240 +6135 10213 0.5950 +6135 10399 0.9990 +6135 10412 0.9840 +6135 10430 0.8470 +6135 10436 0.5150 +6135 10438 0.6690 +6135 10473 0.9490 +6135 10476 0.4050 +6135 10480 0.7510 +6135 10492 0.4670 +6135 10514 0.5840 +6135 10528 0.7420 +6135 10537 0.6510 +6135 10557 0.8640 +6135 10574 0.7190 +6135 10575 0.7120 +6135 10576 0.5910 +6135 10594 0.6230 +6135 10606 0.4640 +6135 10664 0.5860 +6135 10667 0.6120 +6135 10694 0.5380 +6135 10730 0.5370 +6135 10765 0.6070 +6135 10767 0.8780 +6135 10845 0.4590 +6135 10869 0.4040 +6135 10923 0.4370 +6135 10939 0.5300 +6135 10952 0.9310 +6135 10964 0.5310 +6135 10969 0.7190 +6135 10985 0.8780 +6135 10988 0.8460 +6135 11047 0.6640 +6135 11103 0.8830 +6135 11128 0.9420 +6135 11201 0.6170 +6135 11222 0.9720 +6135 11224 0.9990 +6135 11315 0.6570 +6135 22894 0.5280 +6135 22927 0.8480 +6135 22948 0.5580 +6135 22984 0.9980 +6135 23020 0.4220 +6135 23076 0.5090 +6135 23135 0.6190 +6135 23148 0.7080 +6135 23173 0.8060 +6135 23185 0.9050 +6135 23195 0.5790 +6135 23204 0.9470 +6135 23212 0.9920 +6135 23223 0.4020 +6135 23246 0.8810 +6135 23252 0.8990 +6135 23367 0.4220 +6135 23395 0.5350 +6135 23405 0.6810 +6135 23423 0.5380 +6135 23435 0.4030 +6135 23476 0.5270 +6135 23478 0.5040 +6135 23480 0.8910 +6135 23481 0.9410 +6135 23517 0.7400 +6135 23521 0.9990 +6135 23560 0.9470 +6135 23640 0.9130 +6135 23708 0.5520 +6135 23732 0.4180 +6135 25789 0.4220 +6135 25793 0.4110 +6135 25873 0.9990 +6135 25885 0.9660 +6135 26046 0.9160 +6135 26135 0.9850 +6135 26156 0.6510 +6135 26164 0.4660 +6135 26168 0.5390 +6135 26251 0.5530 +6135 26271 0.5660 +6135 26289 0.6850 +6135 26354 0.8430 +6135 26589 0.8900 +6135 26986 0.6460 +6135 26995 0.4110 +6135 27012 0.5530 +6135 27043 0.7180 +6135 27079 0.4030 +6135 27085 0.4670 +6135 27161 0.4020 +6135 27335 0.4510 +6135 27430 0.5920 +6135 28972 0.4760 +6135 28991 0.5900 +6135 28998 0.9730 +6135 29079 0.4290 +6135 29088 0.7830 +6135 29093 0.9710 +6135 29102 0.6690 +6135 29789 0.5260 +6135 29889 0.9670 +6135 29927 0.9950 +6135 29978 0.6360 +6135 29979 0.6630 +6135 29997 0.9870 +6135 50613 0.5520 +6135 50808 0.6850 +6135 50814 0.5740 +6135 51001 0.4220 +6135 51014 0.5380 +6135 51018 0.4040 +6135 51021 0.9990 +6135 51023 0.8510 +6135 51042 0.9010 +6135 51065 0.9950 +6135 51068 0.9600 +6135 51069 0.9730 +6135 51073 0.9730 +6135 51081 0.9790 +6135 51116 0.9130 +6135 51119 0.9020 +6135 51121 0.9970 +6135 51149 0.9730 +6135 51154 0.9880 +6135 51182 0.4920 +6135 51187 0.9960 +6135 51225 0.4120 +6135 51263 0.7510 +6135 51264 0.9980 +6135 51314 0.4460 +6135 51319 0.9790 +6135 51386 0.6220 +6135 51388 0.5080 +6135 51398 0.5570 +6135 51491 0.5750 +6135 51504 0.4490 +6135 51520 0.5510 +6135 51574 0.7740 +6135 51602 0.5350 +6135 51720 0.4610 +6135 51727 0.6850 +6135 53918 0.8890 +6135 54148 0.6010 +6135 54431 0.4400 +6135 54433 0.4600 +6135 54463 0.4660 +6135 54464 0.5330 +6135 54475 0.6090 +6135 54499 0.8230 +6135 54516 0.5660 +6135 54543 0.5760 +6135 54552 0.5550 +6135 54606 0.4630 +6135 54663 0.4180 +6135 54700 0.4420 +6135 54870 0.4780 +6135 54881 0.7360 +6135 54948 0.9300 +6135 54965 0.5630 +6135 55003 0.6530 +6135 55027 0.9020 +6135 55052 0.9990 +6135 55127 0.4910 +6135 55139 0.4680 +6135 55143 0.6170 +6135 55153 0.6700 +6135 55157 0.4100 +6135 55168 0.8480 +6135 55173 0.9860 +6135 55176 0.9750 +6135 55272 0.9860 +6135 55299 0.6050 +6135 55316 0.9810 +6135 55319 0.8170 +6135 55324 0.7960 +6135 55337 0.4540 +6135 55341 0.9410 +6135 55505 0.5120 +6135 55591 0.8050 +6135 55607 0.4280 +6135 55629 0.5400 +6135 55646 0.8920 +6135 55651 0.8960 +6135 55703 0.9260 +6135 55759 0.8340 +6135 55781 0.4900 +6135 55802 0.5680 +6135 55854 0.5840 +6135 55969 0.4300 +6135 56474 0.5310 +6135 56479 0.5530 +6135 56648 0.9490 +6135 56893 0.5810 +6135 56926 0.8360 +6135 56965 0.8750 +6135 57003 0.8290 +6135 57038 0.5570 +6135 57062 0.4570 +6135 57129 0.8620 +6135 57136 0.6730 +6135 57176 0.4720 +6135 57418 0.7750 +6135 57471 0.4290 +6135 57532 0.7730 +6135 58477 0.8050 +6135 58505 0.4660 +6135 60386 0.4340 +6135 60488 0.8770 +6135 60558 0.9000 +6135 60559 0.4470 +6135 60678 0.9530 +6135 63875 0.9990 +6135 63931 0.9730 +6135 64146 0.9410 +6135 64221 0.5110 +6135 64374 0.9090 +6135 64432 0.5130 +6135 64434 0.4340 +6135 64960 0.9670 +6135 64963 0.9720 +6135 64965 0.9990 +6135 64968 0.9990 +6135 64969 0.9830 +6135 64975 0.8740 +6135 64976 0.9080 +6135 64978 0.6740 +6135 64979 0.9990 +6135 64981 0.8600 +6135 64983 0.9970 +6135 65003 0.9230 +6135 65005 0.9990 +6135 65008 0.9710 +6135 65080 0.6510 +6135 65121 0.7150 +6135 65122 0.7150 +6135 65993 0.4730 +6135 79029 0.4070 +6135 79036 0.5110 +6135 79048 0.8190 +6135 79137 0.5310 +6135 79159 0.4590 +6135 79590 0.9750 +6135 79631 0.9550 +6135 79668 0.8750 +6135 79707 0.6080 +6135 80146 0.5730 +6135 80218 0.5610 +6135 80222 0.6070 +6135 80270 0.5710 +6135 80349 0.4420 +6135 81875 0.4450 +6135 81887 0.5890 +6135 83743 0.9110 +6135 84154 0.9960 +6135 84172 0.9430 +6135 84273 0.5300 +6135 84298 0.8420 +6135 84340 0.5500 +6135 84365 0.8060 +6135 84498 0.4950 +6135 84545 0.8520 +6135 84549 0.5490 +6135 84705 0.5190 +6135 84993 0.6000 +6135 85476 0.9600 +6135 85865 0.4590 +6135 87178 0.7850 +6135 90121 0.6760 +6135 90390 0.4670 +6135 90441 0.9100 +6135 90459 0.4290 +6135 90624 0.5430 +6135 90701 0.4320 +6135 91408 0.4430 +6135 91574 0.5820 +6135 91875 0.8990 +6135 91893 0.5850 +6135 92170 0.5310 +6135 92196 0.8090 +6135 92399 0.9880 +6135 93107 0.5530 +6135 93517 0.5710 +6135 93550 0.5990 +6135 114781 0.5310 +6135 114987 0.9720 +6135 115098 0.9170 +6135 115416 0.5230 +6135 116541 0.5210 +6135 116832 0.9810 +6135 117246 0.4990 +6135 120892 0.5110 +6135 122481 0.6800 +6135 123228 0.4280 +6135 123283 0.5920 +6135 124245 0.4510 +6135 124454 0.8240 +6135 124995 0.4990 +6135 126402 0.9700 +6135 137994 0.4890 +6135 140032 0.9680 +6135 140801 0.9980 +6135 142940 0.4210 +6135 143244 0.9490 +6135 143630 0.5410 +6135 148022 0.5350 +6135 149041 0.5100 +6135 149478 0.5310 +6135 150678 0.4080 +6135 157310 0.6480 +6135 158067 0.6800 +6135 162427 0.4320 +6135 164153 0.6090 +6135 169522 0.5530 +6135 170850 0.5530 +6135 196074 0.4070 +6135 197131 0.4030 +6135 200916 0.9800 +6135 201595 0.7720 +6135 203068 0.8170 +6135 203427 0.4310 +6135 219927 0.9990 +6135 221264 0.6800 +6135 254268 0.9770 +6135 255308 0.5190 +6135 283518 0.5530 +6135 283600 0.4310 +6135 285855 0.9840 +6135 342538 0.9390 +6135 343068 0.7150 +6135 343070 0.7150 +6135 345051 0.4180 +6135 345630 0.4660 +6135 347487 0.9790 +6135 353376 0.5350 +6135 374659 0.9610 +6135 387129 0.9570 +6135 389421 0.4510 +6135 390999 0.7150 +6135 391002 0.7150 +6135 400735 0.7150 +6135 400736 0.7150 +6135 440560 0.7150 +6135 440561 0.7150 +6135 441873 0.7150 +6135 641776 0.8350 +6135 642489 0.4510 +6135 643909 0.8350 +6135 645051 0.7920 +6135 645073 0.7920 +6135 645359 0.7150 +6135 653619 0.7150 +6135 654364 0.4440 +6135 728524 0.8350 +6135 729396 0.7920 +6135 729422 0.7920 +6135 729428 0.7920 +6135 729431 0.7920 +6135 729442 0.7920 +6135 729447 0.7920 +6135 729528 0.7150 +6135 100008586 0.7920 +6135 100128731 0.5110 +6135 100132399 0.7920 +6135 100287482 0.9030 +6135 100302736 0.5350 +6135 100505478 0.9430 +6135 100526842 0.9960 +6135 100527943 0.4290 +6135 100529097 0.9460 +6135 100529239 0.9950 +6135 100996746 0.8350 +6135 101929983 0.7150 +6135 102724473 0.7920 +6135 105180390 0.8350 +6135 105180391 0.8350 +6135 114483834 0.7980 +6136 6137 0.9990 +6136 6138 0.9990 +6136 6139 0.9990 +6136 6141 0.9990 +6136 6142 0.9990 +6136 6143 0.9990 +6136 6144 0.9990 +6136 6146 0.9980 +6136 6147 0.9990 +6136 6150 0.6430 +6136 6152 0.9990 +6136 6154 0.9990 +6136 6155 0.9990 +6136 6156 0.9990 +6136 6157 0.9990 +6136 6158 0.9990 +6136 6159 0.9990 +6136 6160 0.9990 +6136 6161 0.9990 +6136 6164 0.9990 +6136 6165 0.9990 +6136 6166 0.9960 +6136 6167 0.9990 +6136 6168 0.9990 +6136 6169 0.9990 +6136 6170 0.9990 +6136 6171 0.7070 +6136 6173 0.9970 +6136 6175 0.9990 +6136 6176 0.9990 +6136 6181 0.9990 +6136 6182 0.9350 +6136 6183 0.8320 +6136 6184 0.5130 +6136 6187 0.9990 +6136 6188 0.9990 +6136 6189 0.9990 +6136 6191 0.9990 +6136 6192 0.9870 +6136 6193 0.9990 +6136 6194 0.9990 +6136 6201 0.9990 +6136 6202 0.9990 +6136 6203 0.9990 +6136 6204 0.9990 +6136 6205 0.9990 +6136 6206 0.9990 +6136 6207 0.9990 +6136 6208 0.9990 +6136 6209 0.9990 +6136 6210 0.9990 +6136 6217 0.9990 +6136 6218 0.9990 +6136 6222 0.9990 +6136 6223 0.9990 +6136 6224 0.9990 +6136 6227 0.9990 +6136 6228 0.9990 +6136 6229 0.9990 +6136 6230 0.9990 +6136 6231 0.9990 +6136 6232 0.9990 +6136 6233 0.9990 +6136 6234 0.9990 +6136 6235 0.9990 +6136 6421 0.4790 +6136 6627 0.4710 +6136 6633 0.5010 +6136 6635 0.4530 +6136 6648 0.4950 +6136 6726 0.8600 +6136 6727 0.8670 +6136 6728 0.8710 +6136 6729 0.9410 +6136 6730 0.8750 +6136 6731 0.5120 +6136 6734 0.6450 +6136 6742 0.7230 +6136 6894 0.4250 +6136 6897 0.4360 +6136 6950 0.6880 +6136 7178 0.8710 +6136 7203 0.5620 +6136 7284 0.9300 +6136 7311 0.9990 +6136 7314 0.4180 +6136 7316 0.4120 +6136 7403 0.4180 +6136 7404 0.4180 +6136 7407 0.4840 +6136 7415 0.4170 +6136 7458 0.4680 +6136 7494 0.8020 +6136 7555 0.6720 +6136 7818 0.6490 +6136 7919 0.5580 +6136 8192 0.5180 +6136 8225 0.7030 +6136 8242 0.4040 +6136 8260 0.5140 +6136 8266 0.5320 +6136 8294 0.4230 +6136 8359 0.4210 +6136 8360 0.4180 +6136 8361 0.5930 +6136 8362 0.4210 +6136 8363 0.4220 +6136 8364 0.4430 +6136 8366 0.4230 +6136 8367 0.4200 +6136 8368 0.4230 +6136 8370 0.4190 +6136 8565 0.4090 +6136 8607 0.5010 +6136 8624 0.5990 +6136 8661 0.5050 +6136 8662 0.6400 +6136 8664 0.5130 +6136 8665 0.7590 +6136 8666 0.6670 +6136 8667 0.6010 +6136 8668 0.8040 +6136 8721 0.6630 +6136 8833 0.5660 +6136 8894 0.6670 +6136 9045 0.9990 +6136 9069 0.4480 +6136 9086 0.6120 +6136 9132 0.4780 +6136 9141 0.6660 +6136 9147 0.8900 +6136 9188 0.5440 +6136 9312 0.4780 +6136 9343 0.7520 +6136 9349 0.9990 +6136 9465 0.4160 +6136 9533 0.7990 +6136 9553 0.9350 +6136 9669 0.8080 +6136 9732 0.7390 +6136 9775 0.5990 +6136 9789 0.4500 +6136 9801 0.9090 +6136 9858 0.6730 +6136 9887 0.4290 +6136 9933 0.6450 +6136 10061 0.5150 +6136 10102 0.7030 +6136 10200 0.4250 +6136 10213 0.4170 +6136 10236 0.5400 +6136 10399 0.9990 +6136 10412 0.8790 +6136 10438 0.4250 +6136 10476 0.4860 +6136 10477 0.6210 +6136 10480 0.6180 +6136 10483 0.9100 +6136 10484 0.9000 +6136 10492 0.6580 +6136 10528 0.4930 +6136 10557 0.6220 +6136 10574 0.7580 +6136 10575 0.7210 +6136 10576 0.7160 +6136 10694 0.6800 +6136 10726 0.4100 +6136 10730 0.4220 +6136 10767 0.8350 +6136 10952 0.8970 +6136 10985 0.5530 +6136 10988 0.5410 +6136 11128 0.6720 +6136 11222 0.7830 +6136 11224 0.9990 +6136 11266 0.4410 +6136 22894 0.4540 +6136 22921 0.4110 +6136 22927 0.5050 +6136 22948 0.6940 +6136 22984 0.8290 +6136 23049 0.4830 +6136 23135 0.4190 +6136 23173 0.4400 +6136 23195 0.4250 +6136 23204 0.9270 +6136 23212 0.6240 +6136 23246 0.5290 +6136 23252 0.6070 +6136 23293 0.4600 +6136 23381 0.4510 +6136 23405 0.5440 +6136 23478 0.5150 +6136 23480 0.8540 +6136 23481 0.5930 +6136 23517 0.4630 +6136 23521 0.9990 +6136 23560 0.7060 +6136 23640 0.6810 +6136 23708 0.5220 +6136 25873 0.9990 +6136 25885 0.6740 +6136 25914 0.4700 +6136 26019 0.5220 +6136 26046 0.8200 +6136 26135 0.9840 +6136 26164 0.4480 +6136 26168 0.5240 +6136 26251 0.4780 +6136 26354 0.4760 +6136 26589 0.6600 +6136 26986 0.5920 +6136 27000 0.5110 +6136 27012 0.4780 +6136 27043 0.5800 +6136 27079 0.4450 +6136 28972 0.4520 +6136 28998 0.7940 +6136 29083 0.5460 +6136 29088 0.5530 +6136 29093 0.8120 +6136 29102 0.5330 +6136 29789 0.4200 +6136 29889 0.5440 +6136 29927 0.9600 +6136 29979 0.4190 +6136 29997 0.9030 +6136 51008 0.4320 +6136 51021 0.9050 +6136 51023 0.5320 +6136 51042 0.5430 +6136 51065 0.9820 +6136 51068 0.7860 +6136 51069 0.7750 +6136 51073 0.7810 +6136 51081 0.7860 +6136 51108 0.4330 +6136 51116 0.7140 +6136 51121 0.9970 +6136 51149 0.8050 +6136 51154 0.8910 +6136 51187 0.8770 +6136 51194 0.8680 +6136 51263 0.5020 +6136 51264 0.9090 +6136 51314 0.5900 +6136 51319 0.7320 +6136 51386 0.6250 +6136 51520 0.4260 +6136 53918 0.8980 +6136 54059 0.5600 +6136 54148 0.4740 +6136 54431 0.7390 +6136 54475 0.6420 +6136 54517 0.4580 +6136 54552 0.4320 +6136 54606 0.5430 +6136 54881 0.7140 +6136 54948 0.7290 +6136 54965 0.4110 +6136 55052 0.9050 +6136 55139 0.4440 +6136 55143 0.4350 +6136 55153 0.4800 +6136 55168 0.5420 +6136 55173 0.8420 +6136 55176 0.7980 +6136 55178 0.4280 +6136 55272 0.8370 +6136 55316 0.8030 +6136 55341 0.5960 +6136 55591 0.4250 +6136 55607 0.4030 +6136 55629 0.5110 +6136 55646 0.8060 +6136 55651 0.6990 +6136 55703 0.7710 +6136 55759 0.5770 +6136 55766 0.4180 +6136 55802 0.5160 +6136 55854 0.6120 +6136 56479 0.4780 +6136 56648 0.7400 +6136 56829 0.6000 +6136 56965 0.5550 +6136 57129 0.6710 +6136 57136 0.4020 +6136 57418 0.7370 +6136 57471 0.4240 +6136 58477 0.4400 +6136 58505 0.5240 +6136 60488 0.5740 +6136 60558 0.6070 +6136 60559 0.4330 +6136 60678 0.7210 +6136 63875 0.9110 +6136 63931 0.7770 +6136 64146 0.6210 +6136 64221 0.5030 +6136 64374 0.6830 +6136 64432 0.4860 +6136 64960 0.7870 +6136 64963 0.7790 +6136 64965 0.9070 +6136 64968 0.9060 +6136 64969 0.8320 +6136 64975 0.6320 +6136 64976 0.5220 +6136 64978 0.4530 +6136 64979 0.9110 +6136 64981 0.5540 +6136 64983 0.9050 +6136 65003 0.4570 +6136 65005 0.9060 +6136 65008 0.8240 +6136 65080 0.5310 +6136 65121 0.5440 +6136 65122 0.5440 +6136 65993 0.4480 +6136 79590 0.7830 +6136 79631 0.6980 +6136 79668 0.5540 +6136 79707 0.5040 +6136 79728 0.6170 +6136 79922 0.4230 +6136 80218 0.4100 +6136 80222 0.4260 +6136 80232 0.4370 +6136 81875 0.4030 +6136 81887 0.5320 +6136 83448 0.4540 +6136 83743 0.4390 +6136 84154 0.7290 +6136 84172 0.7710 +6136 84298 0.4300 +6136 84545 0.6800 +6136 84705 0.6120 +6136 84851 0.5110 +6136 84881 0.4600 +6136 84993 0.4110 +6136 85476 0.7600 +6136 85865 0.4560 +6136 87178 0.4160 +6136 90313 0.5110 +6136 90459 0.4050 +6136 90701 0.4520 +6136 91875 0.8660 +6136 92399 0.8340 +6136 93107 0.4780 +6136 93550 0.4480 +6136 93974 0.4970 +6136 113000 0.4450 +6136 114987 0.7400 +6136 115098 0.8240 +6136 115416 0.6180 +6136 116541 0.5480 +6136 116832 0.9570 +6136 120892 0.5140 +6136 121504 0.4190 +6136 122622 0.5710 +6136 123283 0.4350 +6136 124454 0.6350 +6136 124995 0.4770 +6136 126402 0.7830 +6136 139422 0.4200 +6136 140032 0.9410 +6136 140801 0.9940 +6136 143244 0.7330 +6136 149041 0.5100 +6136 157310 0.4390 +6136 169522 0.4780 +6136 170850 0.4780 +6136 200916 0.9620 +6136 201595 0.7920 +6136 203068 0.8290 +6136 219927 0.9170 +6136 221613 0.4100 +6136 254268 0.7440 +6136 283518 0.4780 +6136 285367 0.4470 +6136 285855 0.9750 +6136 342538 0.8690 +6136 343068 0.5440 +6136 343070 0.5440 +6136 347487 0.7460 +6136 374659 0.6970 +6136 387129 0.7270 +6136 390999 0.5440 +6136 391002 0.5440 +6136 400735 0.5440 +6136 400736 0.5440 +6136 440560 0.5440 +6136 440561 0.5440 +6136 441873 0.5440 +6136 554313 0.4210 +6136 641776 0.6000 +6136 643909 0.6000 +6136 645051 0.5680 +6136 645073 0.5680 +6136 645359 0.5440 +6136 653619 0.5440 +6136 654364 0.4560 +6136 728378 0.4390 +6136 728524 0.6000 +6136 729396 0.5680 +6136 729422 0.5680 +6136 729428 0.5680 +6136 729431 0.5680 +6136 729442 0.5680 +6136 729447 0.5680 +6136 729528 0.5440 +6136 100008586 0.5680 +6136 100128731 0.5830 +6136 100130733 0.7760 +6136 100130890 0.4620 +6136 100131187 0.4670 +6136 100132399 0.5680 +6136 100287482 0.6730 +6136 100505478 0.6940 +6136 100526842 0.9950 +6136 100529097 0.9250 +6136 100529239 0.9830 +6136 100996746 0.6000 +6136 101929983 0.5440 +6136 102724473 0.5680 +6136 105180390 0.6000 +6136 105180391 0.6000 +6136 114483834 0.5320 +6137 6138 0.9990 +6137 6139 0.9990 +6137 6141 0.9990 +6137 6142 0.9990 +6137 6143 0.9990 +6137 6144 0.9990 +6137 6146 0.9990 +6137 6147 0.9990 +6137 6152 0.9990 +6137 6154 0.9990 +6137 6155 0.9990 +6137 6156 0.9990 +6137 6157 0.9990 +6137 6158 0.9990 +6137 6159 0.9990 +6137 6160 0.9990 +6137 6161 0.9990 +6137 6164 0.9990 +6137 6165 0.9990 +6137 6166 0.9930 +6137 6167 0.9990 +6137 6168 0.9990 +6137 6169 0.9990 +6137 6170 0.9960 +6137 6171 0.6550 +6137 6173 0.9930 +6137 6175 0.9990 +6137 6176 0.9990 +6137 6181 0.9990 +6137 6182 0.5130 +6137 6183 0.9750 +6137 6184 0.5140 +6137 6187 0.9990 +6137 6188 0.9990 +6137 6189 0.9990 +6137 6191 0.9990 +6137 6192 0.9930 +6137 6193 0.9990 +6137 6194 0.9990 +6137 6201 0.9990 +6137 6202 0.9990 +6137 6203 0.9990 +6137 6204 0.9990 +6137 6205 0.9990 +6137 6206 0.9990 +6137 6207 0.9990 +6137 6208 0.9990 +6137 6209 0.9990 +6137 6210 0.9980 +6137 6217 0.9990 +6137 6218 0.9990 +6137 6222 0.9990 +6137 6223 0.9990 +6137 6224 0.9990 +6137 6227 0.9990 +6137 6228 0.9990 +6137 6229 0.9990 +6137 6230 0.9990 +6137 6231 0.9990 +6137 6232 0.9990 +6137 6233 0.9990 +6137 6234 0.9990 +6137 6235 0.9990 +6137 6499 0.4560 +6137 6503 0.4950 +6137 6627 0.4360 +6137 6726 0.8980 +6137 6727 0.8630 +6137 6728 0.8960 +6137 6729 0.8850 +6137 6730 0.9060 +6137 6731 0.8800 +6137 6734 0.8220 +6137 6838 0.4900 +6137 6908 0.5110 +6137 6924 0.5200 +6137 6950 0.4460 +6137 7011 0.4100 +6137 7178 0.9600 +6137 7203 0.4640 +6137 7264 0.5670 +6137 7284 0.4040 +6137 7311 0.9990 +6137 7314 0.6600 +6137 7316 0.6840 +6137 7415 0.4160 +6137 7458 0.4490 +6137 7494 0.8000 +6137 7555 0.4070 +6137 7771 0.5820 +6137 7866 0.7600 +6137 7919 0.4440 +6137 8034 0.4370 +6137 8260 0.6090 +6137 8266 0.7230 +6137 8568 0.7780 +6137 8607 0.4700 +6137 8638 0.6530 +6137 8661 0.4750 +6137 8662 0.7060 +6137 8664 0.4020 +6137 8665 0.7140 +6137 8666 0.7870 +6137 8668 0.8410 +6137 8721 0.8840 +6137 8886 0.9360 +6137 8894 0.7060 +6137 9045 0.9990 +6137 9132 0.5180 +6137 9147 0.8030 +6137 9188 0.4370 +6137 9255 0.4670 +6137 9312 0.5180 +6137 9343 0.8140 +6137 9349 0.9990 +6137 9401 0.5320 +6137 9584 0.4430 +6137 9636 0.6200 +6137 9652 0.4360 +6137 9669 0.9570 +6137 9732 0.9770 +6137 9775 0.7290 +6137 9789 0.4010 +6137 9858 0.8830 +6137 10085 0.4140 +6137 10200 0.4160 +6137 10236 0.4450 +6137 10399 0.9990 +6137 10412 0.9320 +6137 10430 0.8210 +6137 10438 0.6420 +6137 10473 0.8860 +6137 10480 0.5980 +6137 10492 0.6420 +6137 10528 0.5130 +6137 10537 0.6170 +6137 10557 0.8310 +6137 10573 0.6340 +6137 10574 0.7740 +6137 10575 0.7080 +6137 10576 0.6660 +6137 10666 0.4370 +6137 10694 0.6640 +6137 10767 0.8580 +6137 10952 0.9170 +6137 10969 0.8800 +6137 10985 0.8710 +6137 10988 0.6230 +6137 11222 0.9530 +6137 11224 0.9990 +6137 22916 0.5970 +6137 22927 0.8700 +6137 22948 0.6350 +6137 23076 0.8480 +6137 23148 0.7960 +6137 23173 0.6410 +6137 23181 0.4070 +6137 23204 0.9410 +6137 23212 0.5920 +6137 23246 0.9390 +6137 23478 0.4160 +6137 23480 0.8870 +6137 23481 0.9300 +6137 23517 0.6700 +6137 23521 0.9990 +6137 23560 0.9820 +6137 23640 0.8400 +6137 23708 0.5950 +6137 24140 0.5350 +6137 25873 0.9990 +6137 25914 0.5210 +6137 26046 0.8120 +6137 26135 0.9840 +6137 26155 0.9050 +6137 26156 0.8740 +6137 26168 0.5970 +6137 26251 0.5180 +6137 26354 0.8060 +6137 26986 0.7020 +6137 27000 0.4800 +6137 27012 0.5180 +6137 27043 0.6180 +6137 27335 0.4500 +6137 27430 0.5690 +6137 28972 0.4050 +6137 28991 0.5760 +6137 28998 0.9830 +6137 29074 0.4030 +6137 29088 0.7170 +6137 29093 0.9550 +6137 29889 0.9080 +6137 29927 0.8870 +6137 29960 0.5280 +6137 29978 0.5720 +6137 29979 0.5960 +6137 29997 0.9400 +6137 50487 0.4370 +6137 50613 0.5660 +6137 50814 0.5550 +6137 51018 0.5100 +6137 51042 0.8960 +6137 51065 0.9850 +6137 51068 0.8940 +6137 51069 0.9430 +6137 51073 0.9410 +6137 51081 0.9540 +6137 51116 0.8890 +6137 51121 0.9970 +6137 51149 0.9750 +6137 51154 0.9790 +6137 51187 0.9910 +6137 51224 0.5130 +6137 51264 0.4520 +6137 51319 0.9760 +6137 51388 0.8830 +6137 51398 0.5500 +6137 51642 0.4510 +6137 51720 0.4410 +6137 53918 0.8710 +6137 54464 0.5140 +6137 54475 0.4560 +6137 54499 0.8170 +6137 54534 0.4400 +6137 54552 0.7880 +6137 54663 0.8820 +6137 54881 0.7650 +6137 54888 0.4650 +6137 54948 0.8970 +6137 55139 0.4370 +6137 55153 0.4880 +6137 55168 0.4280 +6137 55173 0.9590 +6137 55176 0.4270 +6137 55272 0.9780 +6137 55299 0.9550 +6137 55316 0.9710 +6137 55319 0.8000 +6137 55341 0.8890 +6137 55591 0.5280 +6137 55629 0.5040 +6137 55646 0.8290 +6137 55651 0.8670 +6137 55695 0.4950 +6137 55759 0.9420 +6137 55802 0.5130 +6137 55854 0.5360 +6137 55893 0.4410 +6137 55969 0.4320 +6137 56479 0.5180 +6137 56648 0.9370 +6137 56731 0.4630 +6137 56893 0.5810 +6137 56926 0.8240 +6137 57003 0.8170 +6137 57129 0.6390 +6137 57418 0.7410 +6137 57693 0.4200 +6137 57696 0.5080 +6137 58477 0.8170 +6137 58505 0.5300 +6137 60386 0.4380 +6137 60559 0.4010 +6137 60678 0.9050 +6137 63875 0.4810 +6137 63899 0.4430 +6137 63931 0.9450 +6137 64221 0.5000 +6137 64318 0.8760 +6137 64374 0.8350 +6137 64960 0.9380 +6137 64963 0.9390 +6137 64969 0.9800 +6137 64976 0.4060 +6137 64978 0.4370 +6137 64981 0.4440 +6137 64983 0.4910 +6137 65003 0.8820 +6137 65008 0.9760 +6137 65121 0.6820 +6137 65122 0.6820 +6137 65993 0.4600 +6137 79036 0.5110 +6137 79048 0.8040 +6137 79159 0.5650 +6137 79590 0.9430 +6137 79631 0.7920 +6137 79707 0.5040 +6137 79730 0.4240 +6137 80135 0.8970 +6137 80146 0.5550 +6137 80155 0.4080 +6137 80218 0.5750 +6137 80270 0.5550 +6137 80349 0.4390 +6137 81875 0.4140 +6137 81887 0.5070 +6137 84154 0.6100 +6137 84273 0.4650 +6137 84298 0.8230 +6137 84365 0.9310 +6137 84549 0.8790 +6137 84993 0.5920 +6137 85476 0.7910 +6137 90441 0.8600 +6137 90459 0.4050 +6137 90480 0.6220 +6137 90701 0.4050 +6137 91408 0.5720 +6137 91875 0.8370 +6137 92170 0.4290 +6137 92196 0.8080 +6137 93107 0.5180 +6137 93517 0.5550 +6137 93550 0.6170 +6137 114987 0.9730 +6137 115098 0.8670 +6137 116832 0.9710 +6137 117246 0.8730 +6137 120892 0.5240 +6137 124454 0.7770 +6137 126402 0.9510 +6137 128308 0.4820 +6137 137994 0.4290 +6137 140032 0.9680 +6137 140801 0.9960 +6137 143244 0.9370 +6137 143630 0.5660 +6137 146212 0.7750 +6137 147011 0.4370 +6137 149041 0.5100 +6137 154288 0.4370 +6137 164153 0.6170 +6137 169522 0.5180 +6137 170850 0.5180 +6137 200916 0.9650 +6137 201595 0.7860 +6137 203068 0.8560 +6137 203427 0.4370 +6137 221078 0.7830 +6137 254268 0.9520 +6137 283518 0.5180 +6137 283600 0.4370 +6137 285855 0.9800 +6137 342538 0.9570 +6137 343068 0.6820 +6137 343070 0.6820 +6137 347487 0.9750 +6137 387129 0.9570 +6137 387338 0.5650 +6137 390999 0.6820 +6137 391002 0.6820 +6137 400735 0.6820 +6137 400736 0.6820 +6137 440560 0.6820 +6137 440561 0.6820 +6137 441873 0.6820 +6137 619279 0.4370 +6137 641776 0.7840 +6137 642489 0.4780 +6137 642987 0.4370 +6137 643909 0.7840 +6137 645051 0.7740 +6137 645073 0.7740 +6137 645359 0.6820 +6137 653619 0.6820 +6137 728524 0.7840 +6137 729396 0.7740 +6137 729422 0.7740 +6137 729428 0.7740 +6137 729431 0.7740 +6137 729442 0.7740 +6137 729447 0.7740 +6137 729528 0.6820 +6137 100008586 0.7740 +6137 100128731 0.5170 +6137 100132399 0.7740 +6137 100287482 0.8830 +6137 100505478 0.9320 +6137 100526842 0.9950 +6137 100527943 0.4290 +6137 100529097 0.9460 +6137 100529239 0.9950 +6137 100996746 0.7840 +6137 101929983 0.6820 +6137 102724473 0.7740 +6137 105180390 0.7840 +6137 105180391 0.7840 +6138 6139 0.9990 +6138 6141 0.9990 +6138 6142 0.9990 +6138 6143 0.9990 +6138 6144 0.9990 +6138 6146 0.9990 +6138 6147 0.9990 +6138 6152 0.9990 +6138 6154 0.9990 +6138 6155 0.9990 +6138 6156 0.9990 +6138 6157 0.9990 +6138 6158 0.9990 +6138 6159 0.9990 +6138 6160 0.9990 +6138 6161 0.9990 +6138 6164 0.9990 +6138 6165 0.9990 +6138 6166 0.9970 +6138 6167 0.9990 +6138 6168 0.9990 +6138 6169 0.9990 +6138 6170 0.9980 +6138 6171 0.6710 +6138 6173 0.9970 +6138 6175 0.9990 +6138 6176 0.9990 +6138 6181 0.9990 +6138 6183 0.9800 +6138 6184 0.5360 +6138 6187 0.9990 +6138 6188 0.9990 +6138 6189 0.9990 +6138 6191 0.9990 +6138 6192 0.9940 +6138 6193 0.9990 +6138 6194 0.9990 +6138 6201 0.9990 +6138 6202 0.9990 +6138 6203 0.9990 +6138 6204 0.9990 +6138 6205 0.9990 +6138 6206 0.9990 +6138 6207 0.9990 +6138 6208 0.9990 +6138 6209 0.9990 +6138 6210 0.9990 +6138 6217 0.9990 +6138 6218 0.9990 +6138 6222 0.9990 +6138 6223 0.9990 +6138 6224 0.9990 +6138 6227 0.9990 +6138 6228 0.9990 +6138 6229 0.9990 +6138 6230 0.9990 +6138 6231 0.9990 +6138 6232 0.9990 +6138 6233 0.9990 +6138 6234 0.9990 +6138 6235 0.9990 +6138 6428 0.4380 +6138 6499 0.4400 +6138 6635 0.6260 +6138 6726 0.9380 +6138 6727 0.9140 +6138 6728 0.8950 +6138 6729 0.8910 +6138 6730 0.9020 +6138 6731 0.8670 +6138 6734 0.8330 +6138 6780 0.4250 +6138 6838 0.5530 +6138 6924 0.5330 +6138 6950 0.4680 +6138 7011 0.4070 +6138 7157 0.5830 +6138 7178 0.9570 +6138 7203 0.4620 +6138 7264 0.5790 +6138 7284 0.4140 +6138 7311 0.9990 +6138 7314 0.7460 +6138 7316 0.7060 +6138 7458 0.4860 +6138 7494 0.8070 +6138 7555 0.5410 +6138 7866 0.7550 +6138 7919 0.4100 +6138 8034 0.4260 +6138 8260 0.5400 +6138 8266 0.7430 +6138 8361 0.4160 +6138 8562 0.4320 +6138 8568 0.7590 +6138 8607 0.4600 +6138 8638 0.6490 +6138 8661 0.5010 +6138 8662 0.6090 +6138 8663 0.4060 +6138 8664 0.6420 +6138 8665 0.7720 +6138 8666 0.5440 +6138 8667 0.5170 +6138 8668 0.8810 +6138 8721 0.8810 +6138 8886 0.9110 +6138 8894 0.7600 +6138 9045 0.9990 +6138 9132 0.5600 +6138 9141 0.6740 +6138 9147 0.8030 +6138 9188 0.4630 +6138 9312 0.5600 +6138 9343 0.8810 +6138 9349 0.9990 +6138 9401 0.5100 +6138 9406 0.4140 +6138 9493 0.4120 +6138 9636 0.6620 +6138 9652 0.4720 +6138 9669 0.9560 +6138 9732 0.9750 +6138 9775 0.5110 +6138 9789 0.4730 +6138 9858 0.8930 +6138 9879 0.4400 +6138 9908 0.4910 +6138 10200 0.4150 +6138 10209 0.6630 +6138 10213 0.4100 +6138 10236 0.5070 +6138 10289 0.5220 +6138 10360 0.4290 +6138 10399 0.9990 +6138 10412 0.9910 +6138 10430 0.8320 +6138 10438 0.6730 +6138 10473 0.9280 +6138 10480 0.6920 +6138 10492 0.5130 +6138 10521 0.6150 +6138 10528 0.4910 +6138 10537 0.6490 +6138 10557 0.8130 +6138 10574 0.6680 +6138 10575 0.7740 +6138 10576 0.5580 +6138 10666 0.4220 +6138 10694 0.6280 +6138 10767 0.8700 +6138 10952 0.9360 +6138 10969 0.8910 +6138 10985 0.8860 +6138 10988 0.6230 +6138 11137 0.5090 +6138 11222 0.9710 +6138 11224 0.9990 +6138 11269 0.4930 +6138 22894 0.4450 +6138 22927 0.8900 +6138 22948 0.6330 +6138 23076 0.8310 +6138 23148 0.5840 +6138 23173 0.5760 +6138 23204 0.9400 +6138 23212 0.6280 +6138 23246 0.9290 +6138 23478 0.4630 +6138 23480 0.8970 +6138 23481 0.9270 +6138 23517 0.6700 +6138 23521 0.9990 +6138 23523 0.4020 +6138 23560 0.9750 +6138 23640 0.8630 +6138 23708 0.5390 +6138 24140 0.6690 +6138 25873 0.9990 +6138 25914 0.4300 +6138 26046 0.8120 +6138 26135 0.9910 +6138 26155 0.8790 +6138 26156 0.8600 +6138 26168 0.5710 +6138 26251 0.5600 +6138 26354 0.8150 +6138 26986 0.6900 +6138 27000 0.4610 +6138 27012 0.5600 +6138 27043 0.5630 +6138 27292 0.4290 +6138 27335 0.5450 +6138 27430 0.5940 +6138 28972 0.4940 +6138 28991 0.5770 +6138 28998 0.9650 +6138 29088 0.8280 +6138 29093 0.9590 +6138 29889 0.9200 +6138 29927 0.8900 +6138 29960 0.6570 +6138 29978 0.5940 +6138 29979 0.6120 +6138 29997 0.9000 +6138 50487 0.4220 +6138 50613 0.5880 +6138 50814 0.5840 +6138 51018 0.5450 +6138 51042 0.8880 +6138 51065 0.9930 +6138 51068 0.9250 +6138 51069 0.9610 +6138 51073 0.9640 +6138 51081 0.9570 +6138 51116 0.9150 +6138 51119 0.7510 +6138 51121 0.9980 +6138 51149 0.9790 +6138 51154 0.9800 +6138 51187 0.9940 +6138 51224 0.5250 +6138 51258 0.4550 +6138 51319 0.9750 +6138 51386 0.8150 +6138 51388 0.8940 +6138 51398 0.5200 +6138 51574 0.5670 +6138 51720 0.4260 +6138 53918 0.8650 +6138 54463 0.4520 +6138 54464 0.4480 +6138 54475 0.6860 +6138 54499 0.8200 +6138 54552 0.7660 +6138 54596 0.4830 +6138 54663 0.8450 +6138 54881 0.7350 +6138 54888 0.4620 +6138 54948 0.8830 +6138 55139 0.4370 +6138 55153 0.5220 +6138 55173 0.9760 +6138 55272 0.9750 +6138 55299 0.9290 +6138 55316 0.9760 +6138 55319 0.8030 +6138 55341 0.9020 +6138 55591 0.5290 +6138 55629 0.5310 +6138 55646 0.8280 +6138 55651 0.8520 +6138 55695 0.5870 +6138 55759 0.9300 +6138 55802 0.5130 +6138 55854 0.6070 +6138 55893 0.4400 +6138 55969 0.4290 +6138 56479 0.5600 +6138 56648 0.9260 +6138 56731 0.4220 +6138 56893 0.5990 +6138 56926 0.8390 +6138 56965 0.8390 +6138 57003 0.8170 +6138 57062 0.4910 +6138 57092 0.4620 +6138 57418 0.7230 +6138 57696 0.6030 +6138 58477 0.8180 +6138 58505 0.5410 +6138 60386 0.4270 +6138 60559 0.4010 +6138 60678 0.9260 +6138 63899 0.4460 +6138 63931 0.9600 +6138 64221 0.4990 +6138 64318 0.8470 +6138 64374 0.8640 +6138 64960 0.9720 +6138 64963 0.9600 +6138 64969 0.9810 +6138 65003 0.8970 +6138 65008 0.9570 +6138 65121 0.6760 +6138 65122 0.6760 +6138 79036 0.5110 +6138 79039 0.4300 +6138 79048 0.8120 +6138 79084 0.4610 +6138 79137 0.4200 +6138 79159 0.4930 +6138 79590 0.9710 +6138 79631 0.8530 +6138 79668 0.8390 +6138 79707 0.5040 +6138 79730 0.5100 +6138 80135 0.9190 +6138 80146 0.5750 +6138 80218 0.5470 +6138 80270 0.5870 +6138 80349 0.4640 +6138 81875 0.4240 +6138 81887 0.5040 +6138 84154 0.7370 +6138 84273 0.4790 +6138 84298 0.8270 +6138 84365 0.8950 +6138 84549 0.8480 +6138 84851 0.5100 +6138 84993 0.6080 +6138 85476 0.8570 +6138 90121 0.5350 +6138 90441 0.8890 +6138 90459 0.4030 +6138 90701 0.4100 +6138 91408 0.4950 +6138 91875 0.8480 +6138 92170 0.4120 +6138 92196 0.8080 +6138 93107 0.5600 +6138 93517 0.5870 +6138 93550 0.6580 +6138 114987 0.9720 +6138 115098 0.8660 +6138 116832 0.9830 +6138 117246 0.9470 +6138 124454 0.8070 +6138 126402 0.9540 +6138 137994 0.4300 +6138 140032 0.9700 +6138 140801 0.9980 +6138 143244 0.9260 +6138 143630 0.5880 +6138 146212 0.7760 +6138 147011 0.4220 +6138 154288 0.4220 +6138 162427 0.4170 +6138 164153 0.6490 +6138 169522 0.5600 +6138 170850 0.5600 +6138 200916 0.9720 +6138 201595 0.7980 +6138 203068 0.8330 +6138 203427 0.4260 +6138 221078 0.7700 +6138 254268 0.9580 +6138 283518 0.5600 +6138 283600 0.4260 +6138 285855 0.9840 +6138 317781 0.4720 +6138 342538 0.9140 +6138 343068 0.6760 +6138 343070 0.6760 +6138 347487 0.9780 +6138 347734 0.8370 +6138 387129 0.9590 +6138 387338 0.4970 +6138 389421 0.4520 +6138 390999 0.6760 +6138 391002 0.6760 +6138 400735 0.6760 +6138 400736 0.6760 +6138 440560 0.6760 +6138 440561 0.6760 +6138 441873 0.6760 +6138 619279 0.4220 +6138 641776 0.8020 +6138 642987 0.4220 +6138 643909 0.8020 +6138 645051 0.7860 +6138 645073 0.7860 +6138 645359 0.6760 +6138 653619 0.6760 +6138 728524 0.8020 +6138 729396 0.7860 +6138 729422 0.7860 +6138 729428 0.7860 +6138 729431 0.7860 +6138 729442 0.7860 +6138 729447 0.7860 +6138 729528 0.6760 +6138 100008586 0.7860 +6138 100128731 0.5290 +6138 100132399 0.7860 +6138 100287482 0.8930 +6138 100505478 0.9350 +6138 100526842 0.9940 +6138 100527943 0.4290 +6138 100529097 0.9670 +6138 100529239 0.9960 +6138 100996746 0.8020 +6138 101929983 0.6760 +6138 102724473 0.7860 +6138 105180390 0.8020 +6138 105180391 0.8020 +6139 6141 0.9990 +6139 6142 0.9990 +6139 6143 0.9990 +6139 6144 0.9990 +6139 6146 0.9960 +6139 6147 0.9990 +6139 6150 0.7170 +6139 6152 0.9990 +6139 6154 0.9990 +6139 6155 0.9990 +6139 6156 0.9980 +6139 6157 0.9990 +6139 6158 0.9990 +6139 6159 0.9980 +6139 6160 0.9990 +6139 6161 0.9990 +6139 6164 0.9990 +6139 6165 0.9990 +6139 6166 0.9910 +6139 6167 0.9970 +6139 6168 0.9980 +6139 6169 0.9990 +6139 6170 0.9980 +6139 6171 0.6130 +6139 6173 0.9860 +6139 6175 0.9990 +6139 6176 0.9980 +6139 6181 0.9950 +6139 6182 0.9750 +6139 6183 0.8930 +6139 6184 0.4330 +6139 6187 0.9990 +6139 6188 0.9990 +6139 6189 0.9990 +6139 6191 0.9960 +6139 6192 0.9740 +6139 6193 0.9990 +6139 6194 0.9990 +6139 6201 0.9990 +6139 6202 0.9990 +6139 6203 0.9990 +6139 6204 0.9990 +6139 6205 0.9990 +6139 6206 0.9990 +6139 6207 0.9990 +6139 6208 0.9970 +6139 6209 0.9990 +6139 6210 0.9970 +6139 6217 0.9990 +6139 6218 0.9990 +6139 6222 0.9990 +6139 6223 0.9990 +6139 6224 0.9990 +6139 6227 0.9990 +6139 6228 0.9990 +6139 6229 0.9990 +6139 6230 0.9990 +6139 6231 0.9990 +6139 6232 0.9960 +6139 6233 0.9990 +6139 6234 0.9990 +6139 6235 0.9980 +6139 6506 0.4200 +6139 6627 0.4450 +6139 6633 0.4790 +6139 6648 0.4870 +6139 6687 0.5100 +6139 6726 0.9020 +6139 6727 0.9120 +6139 6728 0.8900 +6139 6729 0.9640 +6139 6730 0.9100 +6139 6731 0.9060 +6139 6734 0.9130 +6139 6742 0.5880 +6139 6780 0.4200 +6139 6838 0.4180 +6139 6897 0.4460 +6139 6924 0.4540 +6139 6950 0.4460 +6139 7178 0.8710 +6139 7203 0.4130 +6139 7264 0.4350 +6139 7284 0.9770 +6139 7311 0.9940 +6139 7314 0.5140 +6139 7316 0.5110 +6139 7403 0.4820 +6139 7404 0.4820 +6139 7407 0.4100 +6139 7494 0.8010 +6139 7818 0.8570 +6139 7866 0.5320 +6139 8034 0.4070 +6139 8225 0.6940 +6139 8242 0.4390 +6139 8260 0.6500 +6139 8266 0.4920 +6139 8284 0.4360 +6139 8565 0.5340 +6139 8568 0.5780 +6139 8624 0.6750 +6139 8638 0.4890 +6139 8661 0.4720 +6139 8662 0.4740 +6139 8663 0.4370 +6139 8664 0.5760 +6139 8665 0.6820 +6139 8666 0.5870 +6139 8667 0.5450 +6139 8668 0.7020 +6139 8721 0.7890 +6139 8833 0.4080 +6139 8886 0.8370 +6139 8894 0.6230 +6139 9045 0.9990 +6139 9085 0.4160 +6139 9086 0.7350 +6139 9132 0.5030 +6139 9141 0.6970 +6139 9147 0.8820 +6139 9255 0.4330 +6139 9312 0.5030 +6139 9343 0.8280 +6139 9349 0.9990 +6139 9425 0.4210 +6139 9533 0.8180 +6139 9553 0.9590 +6139 9617 0.5020 +6139 9636 0.4900 +6139 9669 0.9250 +6139 9732 0.9330 +6139 9775 0.7330 +6139 9789 0.4160 +6139 9801 0.9690 +6139 9858 0.7700 +6139 10061 0.5320 +6139 10102 0.7330 +6139 10135 0.5180 +6139 10146 0.4590 +6139 10200 0.4500 +6139 10399 0.9990 +6139 10412 0.9710 +6139 10430 0.8210 +6139 10438 0.5740 +6139 10473 0.8030 +6139 10480 0.5070 +6139 10492 0.4770 +6139 10537 0.4900 +6139 10557 0.6820 +6139 10574 0.6890 +6139 10575 0.5900 +6139 10576 0.6190 +6139 10657 0.4320 +6139 10694 0.4740 +6139 10730 0.5170 +6139 10765 0.4350 +6139 10767 0.8560 +6139 10939 0.5080 +6139 10952 0.9630 +6139 10964 0.4700 +6139 10969 0.8070 +6139 10985 0.7840 +6139 10988 0.7680 +6139 11047 0.5100 +6139 11128 0.8510 +6139 11137 0.4660 +6139 11222 0.8710 +6139 11224 0.9990 +6139 22894 0.5000 +6139 22927 0.7100 +6139 22948 0.5440 +6139 22984 0.9540 +6139 23076 0.6900 +6139 23135 0.4830 +6139 23148 0.7050 +6139 23173 0.7590 +6139 23204 0.8510 +6139 23212 0.4970 +6139 23246 0.8980 +6139 23252 0.6640 +6139 23395 0.4410 +6139 23405 0.5780 +6139 23476 0.5140 +6139 23478 0.5250 +6139 23480 0.9540 +6139 23481 0.8940 +6139 23517 0.6100 +6139 23521 0.9990 +6139 23560 0.9630 +6139 23640 0.7760 +6139 23708 0.5350 +6139 23732 0.5790 +6139 25873 0.9990 +6139 25885 0.8500 +6139 26046 0.8120 +6139 26135 0.9790 +6139 26155 0.8020 +6139 26156 0.8500 +6139 26168 0.5290 +6139 26251 0.5030 +6139 26271 0.5100 +6139 26289 0.4470 +6139 26354 0.6150 +6139 26589 0.8680 +6139 26986 0.6930 +6139 27000 0.5530 +6139 27012 0.5030 +6139 27043 0.5670 +6139 27089 0.5020 +6139 27430 0.4510 +6139 28972 0.4330 +6139 28991 0.4870 +6139 28998 0.8620 +6139 29074 0.4600 +6139 29088 0.6460 +6139 29093 0.6120 +6139 29102 0.5840 +6139 29789 0.4930 +6139 29889 0.9300 +6139 29927 0.9790 +6139 29979 0.4190 +6139 29997 0.8270 +6139 50808 0.4560 +6139 50814 0.4320 +6139 51018 0.4870 +6139 51021 0.9690 +6139 51023 0.6590 +6139 51042 0.8730 +6139 51065 0.9550 +6139 51068 0.9150 +6139 51069 0.8530 +6139 51073 0.8880 +6139 51081 0.8860 +6139 51116 0.7760 +6139 51119 0.5830 +6139 51121 0.9920 +6139 51149 0.9300 +6139 51154 0.9390 +6139 51187 0.9890 +6139 51224 0.4390 +6139 51263 0.7010 +6139 51264 0.9570 +6139 51318 0.4180 +6139 51319 0.8880 +6139 51372 0.5030 +6139 51386 0.4540 +6139 51388 0.7920 +6139 51520 0.4550 +6139 51574 0.4790 +6139 51602 0.4030 +6139 51642 0.4330 +6139 51650 0.4500 +6139 51727 0.4620 +6139 53918 0.8620 +6139 54148 0.5200 +6139 54463 0.5190 +6139 54499 0.8870 +6139 54516 0.5020 +6139 54543 0.5980 +6139 54552 0.6470 +6139 54596 0.4830 +6139 54663 0.8230 +6139 54881 0.6510 +6139 54948 0.8080 +6139 54965 0.4300 +6139 55052 0.9720 +6139 55143 0.4470 +6139 55168 0.6690 +6139 55173 0.8900 +6139 55176 0.8800 +6139 55272 0.9160 +6139 55299 0.8150 +6139 55308 0.4290 +6139 55316 0.9160 +6139 55319 0.8060 +6139 55324 0.5430 +6139 55341 0.8860 +6139 55591 0.7140 +6139 55607 0.5370 +6139 55629 0.5240 +6139 55646 0.8310 +6139 55651 0.7000 +6139 55703 0.8020 +6139 55759 0.8870 +6139 55802 0.5300 +6139 55854 0.6830 +6139 56479 0.5030 +6139 56648 0.8130 +6139 56893 0.4190 +6139 56926 0.8640 +6139 56965 0.6840 +6139 57003 0.8290 +6139 57129 0.8550 +6139 57418 0.6840 +6139 57471 0.4420 +6139 57696 0.4710 +6139 58477 0.8170 +6139 58505 0.4990 +6139 60386 0.4080 +6139 60488 0.8500 +6139 60558 0.6650 +6139 60559 0.4440 +6139 60678 0.9330 +6139 63875 0.9760 +6139 63931 0.8550 +6139 64146 0.8010 +6139 64221 0.5010 +6139 64318 0.8230 +6139 64374 0.7760 +6139 64432 0.6290 +6139 64960 0.8300 +6139 64963 0.8830 +6139 64965 0.9760 +6139 64968 0.9700 +6139 64969 0.9160 +6139 64975 0.7980 +6139 64976 0.8120 +6139 64978 0.5690 +6139 64979 0.9710 +6139 64981 0.8180 +6139 64983 0.9630 +6139 65003 0.7840 +6139 65005 0.9740 +6139 65008 0.8690 +6139 65080 0.6240 +6139 65121 0.5800 +6139 65122 0.5800 +6139 79036 0.4400 +6139 79048 0.8080 +6139 79590 0.8810 +6139 79631 0.8070 +6139 79668 0.6840 +6139 79707 0.5040 +6139 80135 0.8670 +6139 80146 0.4310 +6139 80218 0.4800 +6139 80222 0.4300 +6139 80270 0.4310 +6139 81875 0.4090 +6139 81887 0.5300 +6139 84154 0.7350 +6139 84172 0.8010 +6139 84273 0.4440 +6139 84298 0.8400 +6139 84311 0.5080 +6139 84340 0.5780 +6139 84365 0.8420 +6139 84545 0.8200 +6139 84549 0.8410 +6139 84851 0.4330 +6139 84993 0.4500 +6139 85476 0.8110 +6139 90313 0.5490 +6139 90441 0.9030 +6139 90459 0.4050 +6139 90624 0.4840 +6139 90701 0.4270 +6139 91408 0.5520 +6139 91574 0.5020 +6139 91875 0.8630 +6139 92170 0.4190 +6139 92196 0.6180 +6139 92399 0.8800 +6139 93107 0.5030 +6139 93517 0.4310 +6139 93550 0.4890 +6139 114781 0.4700 +6139 114987 0.8550 +6139 115098 0.8840 +6139 115416 0.7950 +6139 116541 0.5880 +6139 116832 0.9260 +6139 117246 0.7830 +6139 122481 0.4470 +6139 122622 0.4440 +6139 123283 0.4300 +6139 124359 0.4160 +6139 124454 0.6680 +6139 124995 0.5300 +6139 126402 0.8580 +6139 128308 0.4120 +6139 140032 0.8770 +6139 140801 0.9890 +6139 143244 0.8180 +6139 146212 0.5550 +6139 149478 0.4700 +6139 157310 0.5320 +6139 158067 0.4470 +6139 164153 0.4890 +6139 169522 0.5030 +6139 170622 0.4440 +6139 170850 0.5030 +6139 200916 0.8650 +6139 201595 0.6170 +6139 203068 0.8280 +6139 203427 0.4070 +6139 219927 0.9700 +6139 221078 0.5470 +6139 221264 0.4470 +6139 253175 0.4160 +6139 254268 0.9050 +6139 283518 0.5030 +6139 283600 0.4070 +6139 285855 0.9430 +6139 342538 0.9380 +6139 343068 0.5800 +6139 343070 0.5800 +6139 345051 0.5790 +6139 347487 0.9320 +6139 374659 0.7880 +6139 387129 0.8500 +6139 387712 0.4030 +6139 390999 0.5800 +6139 391002 0.5800 +6139 400735 0.5800 +6139 400736 0.5800 +6139 440560 0.5800 +6139 440561 0.5800 +6139 441873 0.5800 +6139 641776 0.6870 +6139 643909 0.6870 +6139 645051 0.6590 +6139 645073 0.6590 +6139 645359 0.5800 +6139 653619 0.5800 +6139 728524 0.6870 +6139 729396 0.6590 +6139 729422 0.6590 +6139 729428 0.6590 +6139 729431 0.6590 +6139 729442 0.6590 +6139 729447 0.6590 +6139 729528 0.5800 +6139 100008586 0.6590 +6139 100128731 0.4770 +6139 100132399 0.6590 +6139 100287482 0.7700 +6139 100505478 0.8050 +6139 100507003 0.4190 +6139 100526842 0.9790 +6139 100529097 0.8560 +6139 100529239 0.9680 +6139 100996746 0.6870 +6139 101929983 0.5800 +6139 102724473 0.6590 +6139 105180390 0.6870 +6139 105180391 0.6870 +6139 114483834 0.5590 +6141 6142 0.9990 +6141 6143 0.9990 +6141 6144 0.9990 +6141 6146 0.9990 +6141 6147 0.9990 +6141 6152 0.9990 +6141 6154 0.9990 +6141 6155 0.9990 +6141 6156 0.9990 +6141 6157 0.9990 +6141 6158 0.9990 +6141 6159 0.9990 +6141 6160 0.9990 +6141 6161 0.9990 +6141 6164 0.9990 +6141 6165 0.9990 +6141 6166 0.9950 +6141 6167 0.9990 +6141 6168 0.9990 +6141 6169 0.9990 +6141 6170 0.9990 +6141 6171 0.9650 +6141 6173 0.9990 +6141 6175 0.9990 +6141 6176 0.9990 +6141 6181 0.9990 +6141 6182 0.5920 +6141 6183 0.9780 +6141 6184 0.5550 +6141 6187 0.9990 +6141 6188 0.9990 +6141 6189 0.9990 +6141 6191 0.9990 +6141 6192 0.9940 +6141 6193 0.9990 +6141 6194 0.9990 +6141 6201 0.9990 +6141 6202 0.9990 +6141 6203 0.9990 +6141 6204 0.9990 +6141 6205 0.9990 +6141 6206 0.9990 +6141 6207 0.9990 +6141 6208 0.9990 +6141 6209 0.9990 +6141 6210 0.9970 +6141 6217 0.9990 +6141 6218 0.9990 +6141 6222 0.9990 +6141 6223 0.9990 +6141 6224 0.9990 +6141 6227 0.9990 +6141 6228 0.9990 +6141 6229 0.9990 +6141 6230 0.9990 +6141 6231 0.9990 +6141 6232 0.9990 +6141 6233 0.9990 +6141 6234 0.9990 +6141 6235 0.9990 +6141 6499 0.4400 +6141 6633 0.5370 +6141 6634 0.4930 +6141 6726 0.8990 +6141 6727 0.9190 +6141 6728 0.9030 +6141 6729 0.9180 +6141 6730 0.9000 +6141 6731 0.8890 +6141 6734 0.8220 +6141 6838 0.5320 +6141 6924 0.5560 +6141 7011 0.4080 +6141 7167 0.5310 +6141 7178 0.9470 +6141 7264 0.5700 +6141 7311 0.9990 +6141 7314 0.6000 +6141 7316 0.6540 +6141 7415 0.4430 +6141 7494 0.8050 +6141 7555 0.4800 +6141 7866 0.7600 +6141 7919 0.4620 +6141 8034 0.9090 +6141 8260 0.4800 +6141 8266 0.6860 +6141 8568 0.8670 +6141 8607 0.5900 +6141 8638 0.5710 +6141 8661 0.4200 +6141 8662 0.6200 +6141 8663 0.4490 +6141 8664 0.5540 +6141 8665 0.7530 +6141 8666 0.5850 +6141 8667 0.8140 +6141 8668 0.8290 +6141 8721 0.9050 +6141 8886 0.9090 +6141 8894 0.7830 +6141 9045 0.9990 +6141 9132 0.5370 +6141 9147 0.8070 +6141 9168 0.4370 +6141 9312 0.5370 +6141 9343 0.8530 +6141 9349 0.9990 +6141 9401 0.5360 +6141 9512 0.4350 +6141 9528 0.4700 +6141 9533 0.8460 +6141 9584 0.4510 +6141 9636 0.5840 +6141 9652 0.4300 +6141 9669 0.9560 +6141 9732 0.9790 +6141 9775 0.7400 +6141 9789 0.4490 +6141 9858 0.9030 +6141 9875 0.4530 +6141 9908 0.4500 +6141 9939 0.5340 +6141 10061 0.4510 +6141 10153 0.4450 +6141 10200 0.4160 +6141 10209 0.5220 +6141 10399 0.9990 +6141 10412 0.9840 +6141 10430 0.8230 +6141 10438 0.6760 +6141 10473 0.8960 +6141 10476 0.4170 +6141 10480 0.6030 +6141 10492 0.4330 +6141 10514 0.5110 +6141 10528 0.6330 +6141 10537 0.5710 +6141 10557 0.8360 +6141 10574 0.5960 +6141 10575 0.6150 +6141 10576 0.5940 +6141 10666 0.4370 +6141 10694 0.5420 +6141 10767 0.8580 +6141 10952 0.9410 +6141 10969 0.9240 +6141 10985 0.8700 +6141 10988 0.5950 +6141 11222 0.9540 +6141 11224 0.9990 +6141 22894 0.4360 +6141 22927 0.8630 +6141 22948 0.5420 +6141 23029 0.4280 +6141 23076 0.8890 +6141 23148 0.7460 +6141 23173 0.5210 +6141 23185 0.9000 +6141 23204 0.9290 +6141 23212 0.5970 +6141 23246 0.9330 +6141 23363 0.4190 +6141 23478 0.4210 +6141 23480 0.8960 +6141 23481 0.9540 +6141 23517 0.7210 +6141 23521 0.9990 +6141 23560 0.9870 +6141 23640 0.8020 +6141 23708 0.5390 +6141 24140 0.5590 +6141 25873 0.9990 +6141 25902 0.5210 +6141 25914 0.4180 +6141 26046 0.8120 +6141 26135 0.9800 +6141 26155 0.9280 +6141 26156 0.9040 +6141 26168 0.5370 +6141 26251 0.5370 +6141 26354 0.8240 +6141 26986 0.5170 +6141 27000 0.5260 +6141 27012 0.5370 +6141 27043 0.5830 +6141 27335 0.8890 +6141 27430 0.5660 +6141 28972 0.5100 +6141 28991 0.5790 +6141 28998 0.9770 +6141 29088 0.6980 +6141 29093 0.9590 +6141 29889 0.9360 +6141 29927 0.8910 +6141 29957 0.6460 +6141 29960 0.5300 +6141 29978 0.5650 +6141 29979 0.5280 +6141 29997 0.9440 +6141 50487 0.4370 +6141 50613 0.5070 +6141 50814 0.5560 +6141 51018 0.4760 +6141 51042 0.8850 +6141 51065 0.9840 +6141 51068 0.9230 +6141 51069 0.9670 +6141 51073 0.9700 +6141 51081 0.9630 +6141 51116 0.9100 +6141 51119 0.6640 +6141 51121 0.9980 +6141 51149 0.9780 +6141 51154 0.9830 +6141 51187 0.9930 +6141 51224 0.5490 +6141 51319 0.9760 +6141 51386 0.5460 +6141 51388 0.8700 +6141 51398 0.5830 +6141 51720 0.4410 +6141 53918 0.8790 +6141 54463 0.4870 +6141 54464 0.5410 +6141 54475 0.6560 +6141 54499 0.8170 +6141 54552 0.7910 +6141 54596 0.4830 +6141 54606 0.5070 +6141 54663 0.8640 +6141 54881 0.7100 +6141 54888 0.4720 +6141 54948 0.8380 +6141 55035 0.4380 +6141 55139 0.4330 +6141 55153 0.4590 +6141 55173 0.9780 +6141 55176 0.4180 +6141 55272 0.9820 +6141 55299 0.9670 +6141 55316 0.9790 +6141 55319 0.8000 +6141 55324 0.4600 +6141 55341 0.8980 +6141 55379 0.4420 +6141 55591 0.5030 +6141 55629 0.5160 +6141 55646 0.8430 +6141 55651 0.8560 +6141 55695 0.4650 +6141 55759 0.9320 +6141 55802 0.5150 +6141 55854 0.5590 +6141 55893 0.4410 +6141 55969 0.4570 +6141 56257 0.5220 +6141 56479 0.5370 +6141 56648 0.9020 +6141 56731 0.4550 +6141 56893 0.5180 +6141 56926 0.8210 +6141 56965 0.8220 +6141 57003 0.8220 +6141 57062 0.5020 +6141 57418 0.7270 +6141 57532 0.7230 +6141 57696 0.5440 +6141 58477 0.8290 +6141 58505 0.5160 +6141 60559 0.4390 +6141 60678 0.9030 +6141 63899 0.4590 +6141 63931 0.9640 +6141 64221 0.5030 +6141 64318 0.9050 +6141 64374 0.7960 +6141 64960 0.9520 +6141 64963 0.9650 +6141 64969 0.9820 +6141 65003 0.8630 +6141 65008 0.9630 +6141 65121 0.6930 +6141 65122 0.6930 +6141 65993 0.4020 +6141 79036 0.5290 +6141 79039 0.4480 +6141 79048 0.8050 +6141 79085 0.4450 +6141 79137 0.4460 +6141 79159 0.5080 +6141 79590 0.9700 +6141 79631 0.8610 +6141 79668 0.8210 +6141 79707 0.5040 +6141 79730 0.4590 +6141 80135 0.9070 +6141 80146 0.5560 +6141 80218 0.5020 +6141 80270 0.5560 +6141 80349 0.4440 +6141 81887 0.5070 +6141 84154 0.7480 +6141 84273 0.4770 +6141 84298 0.8020 +6141 84365 0.9330 +6141 84450 0.4140 +6141 84549 0.9430 +6141 84851 0.5070 +6141 84872 0.4260 +6141 84993 0.5200 +6141 85476 0.8490 +6141 90121 0.6010 +6141 90441 0.8990 +6141 90459 0.4010 +6141 90701 0.4050 +6141 91408 0.5130 +6141 91875 0.8410 +6141 92170 0.4560 +6141 92196 0.8080 +6141 93107 0.5370 +6141 93517 0.5560 +6141 93550 0.5840 +6141 114987 0.9720 +6141 115098 0.8600 +6141 116832 0.9580 +6141 117246 0.9090 +6141 124454 0.7650 +6141 126402 0.9620 +6141 137994 0.4290 +6141 140032 0.9680 +6141 140801 0.9980 +6141 143244 0.9020 +6141 143630 0.5070 +6141 146212 0.7670 +6141 147011 0.4370 +6141 149041 0.5100 +6141 154288 0.4370 +6141 162427 0.4450 +6141 164153 0.5710 +6141 169522 0.5370 +6141 170850 0.5370 +6141 200916 0.9720 +6141 201595 0.8070 +6141 203068 0.8410 +6141 221078 0.8020 +6141 254268 0.9550 +6141 283518 0.5370 +6141 284439 0.9030 +6141 285855 0.9820 +6141 317781 0.5980 +6141 342538 0.9470 +6141 343068 0.6930 +6141 343070 0.6930 +6141 347487 0.9770 +6141 387129 0.9480 +6141 387338 0.5710 +6141 387712 0.4170 +6141 390999 0.6930 +6141 391002 0.6930 +6141 400735 0.6930 +6141 400736 0.6930 +6141 440560 0.6930 +6141 440561 0.6930 +6141 441024 0.5930 +6141 441873 0.6930 +6141 619279 0.4370 +6141 641776 0.8170 +6141 642489 0.4230 +6141 642987 0.4370 +6141 643909 0.8170 +6141 645051 0.7860 +6141 645073 0.7860 +6141 645359 0.6930 +6141 653619 0.6930 +6141 728524 0.8170 +6141 729396 0.7860 +6141 729422 0.7860 +6141 729428 0.7860 +6141 729431 0.7860 +6141 729442 0.7860 +6141 729447 0.7860 +6141 729528 0.6930 +6141 100008586 0.7860 +6141 100128731 0.5300 +6141 100132399 0.7860 +6141 100287482 0.9030 +6141 100505478 0.9340 +6141 100526842 0.9940 +6141 100527943 0.4520 +6141 100529097 0.9610 +6141 100529239 0.9950 +6141 100996746 0.8170 +6141 101929983 0.6930 +6141 102724473 0.7860 +6141 105180390 0.8170 +6141 105180391 0.8170 +6141 114483834 0.4600 +6142 6143 0.9990 +6142 6144 0.9990 +6142 6146 0.9980 +6142 6147 0.9990 +6142 6152 0.9990 +6142 6154 0.9990 +6142 6155 0.9990 +6142 6156 0.9990 +6142 6157 0.9990 +6142 6158 0.9990 +6142 6159 0.9990 +6142 6160 0.9990 +6142 6161 0.9990 +6142 6164 0.9990 +6142 6165 0.9990 +6142 6166 0.9950 +6142 6167 0.9990 +6142 6168 0.9990 +6142 6169 0.9990 +6142 6170 0.9990 +6142 6171 0.9650 +6142 6173 0.9990 +6142 6175 0.9990 +6142 6176 0.9990 +6142 6181 0.9990 +6142 6183 0.9730 +6142 6184 0.5370 +6142 6187 0.9990 +6142 6188 0.9990 +6142 6189 0.9990 +6142 6191 0.9990 +6142 6192 0.9920 +6142 6193 0.9990 +6142 6194 0.9990 +6142 6201 0.9990 +6142 6202 0.9990 +6142 6203 0.9990 +6142 6204 0.9990 +6142 6205 0.9990 +6142 6206 0.9990 +6142 6207 0.9990 +6142 6208 0.9990 +6142 6209 0.9990 +6142 6210 0.9990 +6142 6217 0.9990 +6142 6218 0.9990 +6142 6222 0.9990 +6142 6223 0.9990 +6142 6224 0.9990 +6142 6227 0.9990 +6142 6228 0.9990 +6142 6229 0.9990 +6142 6230 0.9990 +6142 6231 0.9990 +6142 6232 0.9990 +6142 6233 0.9990 +6142 6234 0.9990 +6142 6235 0.9990 +6142 6238 0.4510 +6142 6426 0.5130 +6142 6434 0.4500 +6142 6499 0.4480 +6142 6627 0.4930 +6142 6633 0.5560 +6142 6726 0.8900 +6142 6727 0.8820 +6142 6728 0.8970 +6142 6729 0.9130 +6142 6730 0.9350 +6142 6731 0.8840 +6142 6734 0.8540 +6142 6780 0.4600 +6142 6838 0.5100 +6142 6924 0.5320 +6142 6950 0.5680 +6142 7011 0.4080 +6142 7178 0.9450 +6142 7203 0.4930 +6142 7264 0.5270 +6142 7270 0.4440 +6142 7311 0.9990 +6142 7314 0.6400 +6142 7316 0.6570 +6142 7415 0.5230 +6142 7494 0.8000 +6142 7555 0.5540 +6142 7866 0.7920 +6142 7913 0.4080 +6142 8106 0.4470 +6142 8241 0.4110 +6142 8260 0.5490 +6142 8266 0.6990 +6142 8361 0.4070 +6142 8568 0.7620 +6142 8607 0.4750 +6142 8638 0.5910 +6142 8661 0.5270 +6142 8662 0.6280 +6142 8663 0.4740 +6142 8664 0.6970 +6142 8665 0.8130 +6142 8666 0.6570 +6142 8667 0.7710 +6142 8668 0.8440 +6142 8721 0.8890 +6142 8886 0.8830 +6142 8893 0.5150 +6142 8894 0.7430 +6142 8899 0.4830 +6142 9045 0.9990 +6142 9132 0.5340 +6142 9141 0.4180 +6142 9147 0.8150 +6142 9188 0.4110 +6142 9312 0.5340 +6142 9343 0.8310 +6142 9349 0.9990 +6142 9636 0.5940 +6142 9652 0.4400 +6142 9669 0.9530 +6142 9732 0.9730 +6142 9775 0.4480 +6142 9789 0.4060 +6142 9858 0.8900 +6142 9933 0.4290 +6142 10061 0.4950 +6142 10200 0.4270 +6142 10399 0.9990 +6142 10412 0.9820 +6142 10430 0.8230 +6142 10438 0.6420 +6142 10473 0.9200 +6142 10480 0.7620 +6142 10492 0.5450 +6142 10514 0.4640 +6142 10528 0.5250 +6142 10537 0.5910 +6142 10557 0.8040 +6142 10574 0.7520 +6142 10575 0.7450 +6142 10576 0.6000 +6142 10664 0.5010 +6142 10666 0.4180 +6142 10694 0.5580 +6142 10767 0.8760 +6142 10952 0.9350 +6142 10969 0.9190 +6142 10985 0.8690 +6142 10987 0.8310 +6142 10988 0.5690 +6142 11047 0.4360 +6142 11222 0.9560 +6142 11224 0.9990 +6142 22894 0.4010 +6142 22927 0.8830 +6142 22948 0.6820 +6142 23029 0.4940 +6142 23076 0.8570 +6142 23148 0.7280 +6142 23173 0.5680 +6142 23185 0.9010 +6142 23204 0.9340 +6142 23212 0.7190 +6142 23223 0.4240 +6142 23246 0.9230 +6142 23378 0.4720 +6142 23476 0.5130 +6142 23478 0.4330 +6142 23480 0.9050 +6142 23481 0.9360 +6142 23517 0.6720 +6142 23521 0.9990 +6142 23560 0.9760 +6142 23640 0.8630 +6142 23708 0.5590 +6142 24140 0.5910 +6142 25873 0.9990 +6142 25914 0.4280 +6142 26046 0.8120 +6142 26135 0.9880 +6142 26155 0.9180 +6142 26156 0.8780 +6142 26168 0.5910 +6142 26251 0.5350 +6142 26354 0.8180 +6142 26986 0.7460 +6142 27012 0.5340 +6142 27043 0.5720 +6142 27335 0.7160 +6142 27430 0.5270 +6142 28972 0.4240 +6142 28991 0.6070 +6142 28998 0.9770 +6142 29088 0.6550 +6142 29093 0.9510 +6142 29889 0.9180 +6142 29927 0.8920 +6142 29960 0.5060 +6142 29978 0.5350 +6142 29979 0.5560 +6142 29997 0.9400 +6142 50487 0.4180 +6142 50613 0.5280 +6142 50814 0.5120 +6142 51018 0.4490 +6142 51042 0.8950 +6142 51065 0.9760 +6142 51068 0.9100 +6142 51069 0.9380 +6142 51073 0.9470 +6142 51081 0.9640 +6142 51116 0.8950 +6142 51119 0.6320 +6142 51121 0.9980 +6142 51149 0.9780 +6142 51154 0.9690 +6142 51187 0.9920 +6142 51224 0.5220 +6142 51319 0.9630 +6142 51386 0.4100 +6142 51388 0.8940 +6142 51398 0.5690 +6142 51602 0.9050 +6142 51631 0.4840 +6142 51720 0.4230 +6142 53918 0.8610 +6142 54205 0.8830 +6142 54463 0.4570 +6142 54464 0.4970 +6142 54475 0.4390 +6142 54499 0.8190 +6142 54552 0.7800 +6142 54596 0.4830 +6142 54606 0.6240 +6142 54663 0.8470 +6142 54881 0.7390 +6142 54888 0.4490 +6142 54948 0.8610 +6142 55127 0.8500 +6142 55139 0.4390 +6142 55153 0.5200 +6142 55173 0.9730 +6142 55176 0.4380 +6142 55272 0.9750 +6142 55299 0.9410 +6142 55316 0.9520 +6142 55319 0.8000 +6142 55341 0.8900 +6142 55591 0.5540 +6142 55607 0.4690 +6142 55629 0.5220 +6142 55646 0.8430 +6142 55651 0.8210 +6142 55695 0.4230 +6142 55759 0.9230 +6142 55802 0.5210 +6142 55854 0.6240 +6142 55893 0.4230 +6142 55969 0.4330 +6142 56479 0.5340 +6142 56648 0.9190 +6142 56731 0.4340 +6142 56893 0.5480 +6142 56926 0.8220 +6142 56965 0.6510 +6142 57003 0.8310 +6142 57062 0.4700 +6142 57109 0.4330 +6142 57332 0.4220 +6142 57418 0.7370 +6142 57532 0.7260 +6142 57696 0.5420 +6142 58477 0.8190 +6142 58505 0.5210 +6142 60559 0.4100 +6142 60678 0.9060 +6142 63899 0.4170 +6142 63931 0.8830 +6142 64221 0.4990 +6142 64318 0.8870 +6142 64374 0.8590 +6142 64960 0.9490 +6142 64963 0.9090 +6142 64969 0.9750 +6142 65003 0.8800 +6142 65008 0.9480 +6142 65083 0.8720 +6142 65121 0.6470 +6142 65122 0.6470 +6142 65265 0.4890 +6142 65993 0.4040 +6142 79029 0.4370 +6142 79036 0.5240 +6142 79048 0.8060 +6142 79137 0.4240 +6142 79159 0.5880 +6142 79590 0.9470 +6142 79631 0.8090 +6142 79668 0.6500 +6142 79707 0.5040 +6142 79730 0.4100 +6142 80135 0.9240 +6142 80146 0.5110 +6142 80218 0.5510 +6142 80270 0.5110 +6142 80349 0.4540 +6142 81887 0.5060 +6142 84154 0.6860 +6142 84273 0.4390 +6142 84298 0.8100 +6142 84365 0.9690 +6142 84549 0.8440 +6142 84656 0.4170 +6142 84993 0.5610 +6142 85476 0.8080 +6142 90441 0.8980 +6142 90459 0.4050 +6142 90701 0.4050 +6142 91408 0.4640 +6142 91750 0.4250 +6142 91875 0.8310 +6142 92170 0.4220 +6142 92196 0.8080 +6142 92399 0.4280 +6142 93107 0.5340 +6142 93517 0.5110 +6142 93550 0.5910 +6142 114987 0.9700 +6142 115098 0.8790 +6142 116832 0.9730 +6142 117246 0.9380 +6142 124454 0.7470 +6142 126402 0.9620 +6142 137994 0.4290 +6142 140032 0.9590 +6142 140801 0.9980 +6142 143244 0.9190 +6142 143630 0.5280 +6142 146212 0.6530 +6142 147011 0.4180 +6142 154288 0.4180 +6142 162427 0.4200 +6142 164153 0.5910 +6142 166378 0.4330 +6142 169522 0.5340 +6142 170850 0.5340 +6142 200916 0.9500 +6142 201161 0.5540 +6142 201595 0.7860 +6142 203068 0.8110 +6142 221078 0.7540 +6142 254268 0.9540 +6142 283518 0.5340 +6142 285855 0.9790 +6142 317781 0.5090 +6142 342538 0.9430 +6142 343068 0.6470 +6142 343070 0.6470 +6142 345630 0.4530 +6142 347487 0.9780 +6142 387129 0.9450 +6142 387338 0.4180 +6142 390999 0.6470 +6142 391002 0.6470 +6142 400735 0.6470 +6142 400736 0.6470 +6142 440560 0.6470 +6142 440561 0.6470 +6142 441873 0.6470 +6142 619279 0.4180 +6142 641776 0.7720 +6142 642489 0.5270 +6142 642987 0.4180 +6142 643909 0.7720 +6142 645051 0.7810 +6142 645073 0.7850 +6142 645359 0.6470 +6142 653619 0.6470 +6142 692312 0.5320 +6142 728524 0.7720 +6142 729396 0.7810 +6142 729422 0.7810 +6142 729428 0.7810 +6142 729431 0.7810 +6142 729442 0.7810 +6142 729447 0.7810 +6142 729528 0.6470 +6142 100008586 0.7810 +6142 100128731 0.5500 +6142 100132399 0.7810 +6142 100287482 0.8900 +6142 100505478 0.9340 +6142 100526842 0.9960 +6142 100527943 0.4290 +6142 100529097 0.9480 +6142 100529239 0.9950 +6142 100996746 0.7720 +6142 101929983 0.6470 +6142 102724473 0.7810 +6142 105180390 0.7720 +6142 105180391 0.7720 +6142 114483834 0.5110 +6143 6144 0.9990 +6143 6146 0.9990 +6143 6147 0.9990 +6143 6152 0.9990 +6143 6154 0.9990 +6143 6155 0.9990 +6143 6156 0.9990 +6143 6157 0.9990 +6143 6158 0.9990 +6143 6159 0.9990 +6143 6160 0.9990 +6143 6161 0.9990 +6143 6164 0.9990 +6143 6165 0.9990 +6143 6166 0.9990 +6143 6167 0.9990 +6143 6168 0.9990 +6143 6169 0.9990 +6143 6170 0.9990 +6143 6171 0.9760 +6143 6173 0.9990 +6143 6175 0.9990 +6143 6176 0.9990 +6143 6181 0.9990 +6143 6183 0.9810 +6143 6184 0.5110 +6143 6187 0.9990 +6143 6188 0.9990 +6143 6189 0.9990 +6143 6191 0.9990 +6143 6192 0.9940 +6143 6193 0.9990 +6143 6194 0.9990 +6143 6201 0.9990 +6143 6202 0.9990 +6143 6203 0.9990 +6143 6204 0.9990 +6143 6205 0.9990 +6143 6206 0.9990 +6143 6207 0.9990 +6143 6208 0.9990 +6143 6209 0.9990 +6143 6210 0.9990 +6143 6217 0.9990 +6143 6218 0.9990 +6143 6222 0.9990 +6143 6223 0.9990 +6143 6224 0.9990 +6143 6227 0.9990 +6143 6228 0.9990 +6143 6229 0.9990 +6143 6230 0.9990 +6143 6231 0.9990 +6143 6232 0.9990 +6143 6233 0.9990 +6143 6234 0.9990 +6143 6235 0.9990 +6143 6389 0.5610 +6143 6426 0.5260 +6143 6499 0.4410 +6143 6627 0.5870 +6143 6633 0.4660 +6143 6726 0.9030 +6143 6727 0.9170 +6143 6728 0.9150 +6143 6729 0.9390 +6143 6730 0.9040 +6143 6731 0.8790 +6143 6734 0.8600 +6143 6908 0.5000 +6143 6924 0.5320 +6143 7011 0.4100 +6143 7157 0.6240 +6143 7178 0.9560 +6143 7203 0.5200 +6143 7264 0.6210 +6143 7311 0.9990 +6143 7314 0.7760 +6143 7316 0.7710 +6143 7494 0.8550 +6143 7534 0.5590 +6143 7866 0.7590 +6143 7919 0.4960 +6143 8260 0.5710 +6143 8266 0.7670 +6143 8361 0.4340 +6143 8607 0.4430 +6143 8638 0.7220 +6143 8661 0.5080 +6143 8662 0.5210 +6143 8663 0.5070 +6143 8664 0.6210 +6143 8665 0.6980 +6143 8666 0.6860 +6143 8667 0.7920 +6143 8668 0.8390 +6143 8721 0.9080 +6143 8886 0.8940 +6143 8890 0.4610 +6143 8894 0.6310 +6143 9045 0.9990 +6143 9132 0.5360 +6143 9141 0.4450 +6143 9147 0.8550 +6143 9168 0.4110 +6143 9188 0.6130 +6143 9312 0.5360 +6143 9343 0.9350 +6143 9349 0.9990 +6143 9401 0.5260 +6143 9533 0.7020 +6143 9636 0.7150 +6143 9652 0.4390 +6143 9669 0.9550 +6143 9732 0.9760 +6143 9775 0.7910 +6143 9789 0.4600 +6143 9858 0.8870 +6143 10120 0.4910 +6143 10200 0.4420 +6143 10209 0.5750 +6143 10213 0.4670 +6143 10236 0.4640 +6143 10399 0.9990 +6143 10412 0.9890 +6143 10430 0.8280 +6143 10438 0.6420 +6143 10473 0.9200 +6143 10476 0.4670 +6143 10480 0.5890 +6143 10492 0.5290 +6143 10537 0.6810 +6143 10557 0.8480 +6143 10574 0.6430 +6143 10575 0.5600 +6143 10576 0.5060 +6143 10594 0.4790 +6143 10664 0.5100 +6143 10666 0.4330 +6143 10694 0.4680 +6143 10767 0.8620 +6143 10952 0.9810 +6143 10969 0.8750 +6143 10985 0.9460 +6143 10988 0.6830 +6143 11047 0.4260 +6143 11222 0.9560 +6143 11224 0.9990 +6143 22894 0.4160 +6143 22927 0.8520 +6143 22948 0.4760 +6143 23076 0.5780 +6143 23148 0.6820 +6143 23173 0.6010 +6143 23185 0.9010 +6143 23204 0.9400 +6143 23212 0.6370 +6143 23246 0.9250 +6143 23478 0.4260 +6143 23480 0.9670 +6143 23481 0.9310 +6143 23517 0.6830 +6143 23521 0.9990 +6143 23560 0.9800 +6143 23633 0.4090 +6143 23640 0.7990 +6143 23708 0.4990 +6143 24140 0.5680 +6143 25873 0.9990 +6143 26046 0.8400 +6143 26135 0.9840 +6143 26155 0.8760 +6143 26156 0.9010 +6143 26168 0.5280 +6143 26251 0.5360 +6143 26354 0.8570 +6143 26986 0.6850 +6143 27012 0.5360 +6143 27043 0.5630 +6143 27335 0.5370 +6143 27430 0.6070 +6143 28972 0.4700 +6143 28991 0.5770 +6143 28998 0.9700 +6143 29088 0.7760 +6143 29093 0.9680 +6143 29889 0.9150 +6143 29927 0.9500 +6143 29960 0.5590 +6143 29978 0.6320 +6143 29979 0.6680 +6143 29997 0.9050 +6143 50487 0.4330 +6143 50613 0.6260 +6143 50814 0.6240 +6143 51042 0.8840 +6143 51065 0.9890 +6143 51068 0.9150 +6143 51069 0.9750 +6143 51073 0.9580 +6143 51081 0.9650 +6143 51116 0.8980 +6143 51119 0.6230 +6143 51121 0.9970 +6143 51149 0.9720 +6143 51154 0.9780 +6143 51187 0.9920 +6143 51224 0.5220 +6143 51319 0.9570 +6143 51382 0.4220 +6143 51386 0.4630 +6143 51388 0.8600 +6143 51398 0.5240 +6143 51602 0.4120 +6143 51631 0.5210 +6143 51720 0.4410 +6143 53918 0.8780 +6143 54463 0.5070 +6143 54464 0.4420 +6143 54475 0.4530 +6143 54499 0.8170 +6143 54552 0.7720 +6143 54596 0.4830 +6143 54663 0.4810 +6143 54881 0.7150 +6143 54888 0.4230 +6143 54948 0.8570 +6143 55139 0.4510 +6143 55153 0.4590 +6143 55173 0.9790 +6143 55176 0.6120 +6143 55272 0.9800 +6143 55299 0.8570 +6143 55316 0.9740 +6143 55319 0.8020 +6143 55341 0.9030 +6143 55591 0.5990 +6143 55607 0.4240 +6143 55629 0.5090 +6143 55646 0.8070 +6143 55651 0.8600 +6143 55695 0.4200 +6143 55759 0.9290 +6143 55802 0.5340 +6143 55854 0.5810 +6143 55893 0.4470 +6143 55969 0.4660 +6143 56479 0.5360 +6143 56648 0.9250 +6143 56731 0.4330 +6143 56893 0.6430 +6143 56926 0.8470 +6143 56965 0.8370 +6143 57003 0.8170 +6143 57062 0.4230 +6143 57418 0.7230 +6143 57532 0.7730 +6143 57696 0.7910 +6143 58477 0.8180 +6143 58505 0.5240 +6143 60559 0.4010 +6143 60678 0.9060 +6143 63893 0.4540 +6143 63899 0.4070 +6143 63931 0.9660 +6143 64221 0.4990 +6143 64318 0.8650 +6143 64374 0.7910 +6143 64960 0.9670 +6143 64963 0.9600 +6143 64969 0.9830 +6143 65003 0.9020 +6143 65008 0.9670 +6143 65121 0.7120 +6143 65122 0.7120 +6143 79009 0.4810 +6143 79036 0.5160 +6143 79048 0.8100 +6143 79137 0.4640 +6143 79159 0.5680 +6143 79590 0.9750 +6143 79631 0.9180 +6143 79668 0.8360 +6143 79707 0.5040 +6143 79730 0.4070 +6143 80135 0.8570 +6143 80146 0.5920 +6143 80218 0.5670 +6143 80270 0.5920 +6143 80349 0.4420 +6143 81875 0.4670 +6143 81887 0.5060 +6143 84154 0.6820 +6143 84172 0.4940 +6143 84273 0.5110 +6143 84298 0.8030 +6143 84365 0.9280 +6143 84549 0.8630 +6143 84851 0.5070 +6143 84993 0.6560 +6143 85476 0.9180 +6143 90441 0.9040 +6143 90459 0.5010 +6143 90701 0.4080 +6143 91408 0.5010 +6143 91875 0.8420 +6143 92170 0.4130 +6143 92196 0.8080 +6143 93107 0.5360 +6143 93517 0.5920 +6143 93550 0.6810 +6143 114987 0.9730 +6143 115098 0.8950 +6143 116832 0.9820 +6143 117246 0.9100 +6143 120892 0.5190 +6143 124454 0.8100 +6143 126402 0.9610 +6143 137994 0.4290 +6143 140032 0.9740 +6143 140801 0.9930 +6143 143244 0.9230 +6143 143630 0.6260 +6143 146212 0.6750 +6143 147011 0.4330 +6143 154288 0.4330 +6143 162427 0.4620 +6143 164153 0.6810 +6143 169522 0.5360 +6143 170850 0.5360 +6143 200916 0.9630 +6143 201595 0.4730 +6143 203068 0.8840 +6143 221078 0.7600 +6143 254268 0.9600 +6143 283518 0.5360 +6143 285855 0.9890 +6143 342538 0.9380 +6143 343068 0.7120 +6143 343070 0.7120 +6143 347487 0.9750 +6143 387129 0.9590 +6143 387338 0.4080 +6143 390999 0.7120 +6143 391002 0.7120 +6143 400735 0.7120 +6143 400736 0.7120 +6143 440560 0.7120 +6143 440561 0.7120 +6143 441873 0.7120 +6143 619279 0.4330 +6143 641776 0.8300 +6143 642987 0.4330 +6143 643909 0.8300 +6143 644591 0.4090 +6143 645051 0.7930 +6143 645073 0.7930 +6143 645142 0.4090 +6143 645359 0.7120 +6143 653505 0.4210 +6143 653598 0.4090 +6143 653619 0.7120 +6143 728378 0.5860 +6143 728524 0.8300 +6143 728945 0.4090 +6143 729396 0.7930 +6143 729422 0.7930 +6143 729428 0.7930 +6143 729431 0.7930 +6143 729442 0.7930 +6143 729447 0.7930 +6143 729528 0.7120 +6143 730262 0.4090 +6143 100008586 0.7930 +6143 100128731 0.5750 +6143 100132399 0.7930 +6143 100287482 0.8870 +6143 100505478 0.9430 +6143 100526842 0.9960 +6143 100527943 0.4550 +6143 100529097 0.9640 +6143 100529239 0.9950 +6143 100996746 0.8300 +6143 101929983 0.7120 +6143 102724473 0.7930 +6143 105180390 0.8300 +6143 105180391 0.8300 +6143 105371242 0.4090 +6144 6146 0.9990 +6144 6147 0.9990 +6144 6152 0.9990 +6144 6154 0.9990 +6144 6155 0.9990 +6144 6156 0.9990 +6144 6157 0.9990 +6144 6158 0.9990 +6144 6159 0.9990 +6144 6160 0.9990 +6144 6161 0.9990 +6144 6164 0.9990 +6144 6165 0.9990 +6144 6166 0.9990 +6144 6167 0.9990 +6144 6168 0.9990 +6144 6169 0.9990 +6144 6170 0.9990 +6144 6171 0.7320 +6144 6173 0.9980 +6144 6175 0.9990 +6144 6176 0.9990 +6144 6181 0.9990 +6144 6183 0.9800 +6144 6184 0.5110 +6144 6187 0.9990 +6144 6188 0.9990 +6144 6189 0.9990 +6144 6191 0.9990 +6144 6192 0.9940 +6144 6193 0.9990 +6144 6194 0.9990 +6144 6201 0.9990 +6144 6202 0.9990 +6144 6203 0.9990 +6144 6204 0.9990 +6144 6205 0.9990 +6144 6206 0.9990 +6144 6207 0.9990 +6144 6208 0.9990 +6144 6209 0.9990 +6144 6210 0.9990 +6144 6217 0.9990 +6144 6218 0.9990 +6144 6222 0.9990 +6144 6223 0.9990 +6144 6224 0.9990 +6144 6227 0.9990 +6144 6228 0.9990 +6144 6229 0.9990 +6144 6230 0.9990 +6144 6231 0.9990 +6144 6232 0.9990 +6144 6233 0.9990 +6144 6234 0.9990 +6144 6235 0.9990 +6144 6238 0.4900 +6144 6499 0.4290 +6144 6576 0.4200 +6144 6627 0.4360 +6144 6635 0.5810 +6144 6726 0.9140 +6144 6727 0.8990 +6144 6728 0.8810 +6144 6729 0.8960 +6144 6730 0.9010 +6144 6731 0.8720 +6144 6734 0.8550 +6144 6837 0.7010 +6144 6838 0.7560 +6144 6924 0.5210 +6144 7011 0.4080 +6144 7178 0.9730 +6144 7264 0.5410 +6144 7311 0.9990 +6144 7314 0.6940 +6144 7316 0.6660 +6144 7381 0.4370 +6144 7494 0.8000 +6144 7852 0.4150 +6144 7866 0.7500 +6144 8034 0.4260 +6144 8260 0.4720 +6144 8266 0.7710 +6144 8394 0.4440 +6144 8568 0.7600 +6144 8638 0.6570 +6144 8661 0.4160 +6144 8662 0.6130 +6144 8663 0.4310 +6144 8664 0.6380 +6144 8665 0.6220 +6144 8666 0.5370 +6144 8667 0.5710 +6144 8668 0.8430 +6144 8721 0.8780 +6144 8886 0.8790 +6144 8894 0.7020 +6144 9045 0.9990 +6144 9132 0.5890 +6144 9147 0.8070 +6144 9312 0.5890 +6144 9343 0.8730 +6144 9349 0.9990 +6144 9401 0.5100 +6144 9636 0.6570 +6144 9652 0.4330 +6144 9669 0.9540 +6144 9732 0.9780 +6144 9775 0.4940 +6144 9789 0.4390 +6144 9858 0.8940 +6144 10169 0.4050 +6144 10200 0.4130 +6144 10399 0.9990 +6144 10412 0.9910 +6144 10430 0.8150 +6144 10438 0.6500 +6144 10473 0.9280 +6144 10480 0.6170 +6144 10492 0.4180 +6144 10528 0.5900 +6144 10537 0.6580 +6144 10557 0.8380 +6144 10574 0.5720 +6144 10575 0.5130 +6144 10576 0.4910 +6144 10666 0.6890 +6144 10694 0.4550 +6144 10767 0.8590 +6144 10952 0.9400 +6144 10969 0.8750 +6144 10985 0.8730 +6144 10988 0.5830 +6144 11047 0.5010 +6144 11222 0.9500 +6144 11224 0.9990 +6144 22894 0.4610 +6144 22927 0.8730 +6144 22948 0.4460 +6144 23016 0.4180 +6144 23076 0.8350 +6144 23148 0.7190 +6144 23173 0.5220 +6144 23195 0.4190 +6144 23204 0.9490 +6144 23212 0.5710 +6144 23246 0.9300 +6144 23478 0.4460 +6144 23480 0.8750 +6144 23481 0.9300 +6144 23517 0.6550 +6144 23521 0.9990 +6144 23560 0.9700 +6144 23640 0.8590 +6144 23708 0.6740 +6144 24140 0.5460 +6144 25873 0.9990 +6144 26046 0.8120 +6144 26135 0.9880 +6144 26155 0.8470 +6144 26156 0.8820 +6144 26168 0.5260 +6144 26251 0.5890 +6144 26354 0.7640 +6144 26523 0.6130 +6144 26986 0.7230 +6144 27000 0.4820 +6144 27012 0.5890 +6144 27043 0.5600 +6144 27161 0.4030 +6144 27292 0.4820 +6144 27430 0.5540 +6144 28972 0.4670 +6144 28991 0.5830 +6144 28998 0.9650 +6144 29088 0.6800 +6144 29093 0.9590 +6144 29889 0.9100 +6144 29927 0.8790 +6144 29960 0.5060 +6144 29978 0.6130 +6144 29979 0.6190 +6144 29997 0.8840 +6144 50487 0.6890 +6144 50613 0.6020 +6144 50814 0.5410 +6144 51042 0.8980 +6144 51065 0.9930 +6144 51068 0.9220 +6144 51069 0.9640 +6144 51073 0.9530 +6144 51081 0.9600 +6144 51116 0.9070 +6144 51119 0.6140 +6144 51121 0.9990 +6144 51149 0.9790 +6144 51154 0.9730 +6144 51187 0.9940 +6144 51224 0.5080 +6144 51319 0.9760 +6144 51372 0.5520 +6144 51386 0.5670 +6144 51388 0.8660 +6144 51398 0.4460 +6144 51574 0.4020 +6144 51720 0.6930 +6144 53918 0.8590 +6144 54463 0.4510 +6144 54464 0.4630 +6144 54475 0.4390 +6144 54499 0.8180 +6144 54543 0.5580 +6144 54552 0.7740 +6144 54596 0.4830 +6144 54663 0.8420 +6144 54881 0.7060 +6144 54888 0.4380 +6144 54948 0.8730 +6144 55139 0.4440 +6144 55153 0.4470 +6144 55173 0.9780 +6144 55272 0.9830 +6144 55299 0.8740 +6144 55308 0.4310 +6144 55316 0.9670 +6144 55319 0.8040 +6144 55341 0.8830 +6144 55591 0.4950 +6144 55607 0.5200 +6144 55629 0.5360 +6144 55646 0.8070 +6144 55651 0.8490 +6144 55695 0.4140 +6144 55759 0.9270 +6144 55802 0.5340 +6144 55854 0.7160 +6144 55893 0.7100 +6144 56479 0.5890 +6144 56648 0.9430 +6144 56731 0.6890 +6144 56893 0.6250 +6144 56926 0.8170 +6144 56965 0.7710 +6144 57003 0.8270 +6144 57418 0.7190 +6144 57696 0.4660 +6144 58477 0.8160 +6144 58505 0.5500 +6144 60386 0.4270 +6144 60559 0.4390 +6144 60678 0.9100 +6144 63899 0.4220 +6144 63931 0.9500 +6144 64221 0.4990 +6144 64318 0.8750 +6144 64374 0.8590 +6144 64960 0.9650 +6144 64963 0.9600 +6144 64969 0.9800 +6144 65003 0.8970 +6144 65008 0.9640 +6144 65121 0.6730 +6144 65122 0.6730 +6144 65993 0.4560 +6144 79036 0.5110 +6144 79048 0.8070 +6144 79137 0.4230 +6144 79159 0.4290 +6144 79574 0.4710 +6144 79590 0.9690 +6144 79631 0.8470 +6144 79668 0.7710 +6144 79707 0.5040 +6144 79730 0.4140 +6144 80135 0.8650 +6144 80146 0.5380 +6144 80218 0.5380 +6144 80270 0.5380 +6144 80349 0.4360 +6144 81875 0.4660 +6144 81887 0.5040 +6144 84154 0.7110 +6144 84273 0.4250 +6144 84298 0.8140 +6144 84365 0.8590 +6144 84549 0.8530 +6144 84851 0.5160 +6144 84993 0.6420 +6144 85476 0.8500 +6144 90441 0.8890 +6144 90459 0.4050 +6144 90701 0.4190 +6144 91408 0.6710 +6144 91875 0.8310 +6144 92170 0.4170 +6144 92196 0.8080 +6144 93107 0.5890 +6144 93517 0.5380 +6144 93550 0.6570 +6144 114987 0.9730 +6144 115098 0.8830 +6144 116832 0.9810 +6144 117246 0.8560 +6144 120892 0.5390 +6144 124454 0.8900 +6144 126402 0.9580 +6144 137994 0.4340 +6144 140032 0.9720 +6144 140801 0.9970 +6144 143244 0.9430 +6144 143630 0.6020 +6144 146212 0.6540 +6144 147011 0.6890 +6144 154288 0.6890 +6144 158431 0.4090 +6144 162427 0.4200 +6144 164153 0.6720 +6144 169522 0.5890 +6144 170850 0.5890 +6144 200916 0.9840 +6144 201595 0.7960 +6144 203068 0.8150 +6144 203427 0.4260 +6144 221078 0.7720 +6144 254268 0.9270 +6144 283518 0.5890 +6144 283600 0.4260 +6144 285855 0.9800 +6144 342538 0.9410 +6144 343068 0.6730 +6144 343070 0.6730 +6144 347487 0.9780 +6144 387129 0.9600 +6144 387338 0.4240 +6144 390999 0.6730 +6144 391002 0.6730 +6144 400735 0.6730 +6144 400736 0.6730 +6144 440560 0.6730 +6144 440561 0.6730 +6144 441873 0.6730 +6144 619279 0.6890 +6144 641776 0.8060 +6144 642489 0.4860 +6144 642987 0.6940 +6144 643909 0.8060 +6144 645051 0.7860 +6144 645073 0.7860 +6144 645359 0.6730 +6144 653619 0.6730 +6144 728524 0.8060 +6144 729396 0.7860 +6144 729422 0.7860 +6144 729428 0.7860 +6144 729431 0.7860 +6144 729442 0.7860 +6144 729447 0.7860 +6144 729528 0.6730 +6144 100008586 0.7860 +6144 100128731 0.5670 +6144 100132399 0.7860 +6144 100287482 0.8940 +6144 100505478 0.9330 +6144 100526842 0.9960 +6144 100529097 0.9690 +6144 100529239 0.9940 +6144 100996746 0.8060 +6144 101929983 0.6730 +6144 102724473 0.7860 +6144 105180390 0.8060 +6144 105180391 0.8060 +6146 6147 0.9990 +6146 6152 0.9990 +6146 6154 0.9990 +6146 6155 0.9990 +6146 6156 0.9990 +6146 6157 0.9990 +6146 6158 0.9970 +6146 6159 0.9990 +6146 6160 0.9990 +6146 6161 0.9990 +6146 6164 0.9990 +6146 6165 0.9990 +6146 6166 0.9900 +6146 6167 0.9980 +6146 6168 0.9990 +6146 6169 0.9990 +6146 6170 0.9930 +6146 6171 0.5970 +6146 6173 0.9960 +6146 6175 0.9970 +6146 6176 0.9940 +6146 6181 0.9960 +6146 6183 0.8820 +6146 6184 0.5140 +6146 6187 0.9980 +6146 6188 0.9980 +6146 6189 0.9990 +6146 6191 0.9970 +6146 6192 0.9770 +6146 6193 0.9970 +6146 6194 0.9990 +6146 6201 0.9980 +6146 6202 0.9990 +6146 6203 0.9990 +6146 6204 0.9970 +6146 6205 0.9990 +6146 6206 0.9980 +6146 6207 0.9990 +6146 6208 0.9990 +6146 6209 0.9980 +6146 6210 0.9950 +6146 6217 0.9980 +6146 6218 0.9970 +6146 6222 0.9990 +6146 6223 0.9990 +6146 6224 0.9990 +6146 6227 0.9980 +6146 6228 0.9990 +6146 6229 0.9990 +6146 6230 0.9980 +6146 6231 0.9980 +6146 6232 0.9980 +6146 6233 0.9960 +6146 6234 0.9960 +6146 6235 0.9970 +6146 6726 0.9070 +6146 6727 0.9110 +6146 6728 0.9030 +6146 6729 0.9290 +6146 6730 0.9120 +6146 6731 0.8960 +6146 6734 0.8410 +6146 6924 0.4680 +6146 7014 0.4190 +6146 7157 0.5990 +6146 7178 0.7180 +6146 7264 0.4680 +6146 7311 0.9900 +6146 7314 0.5100 +6146 7316 0.5440 +6146 7494 0.8200 +6146 7531 0.4410 +6146 7852 0.4320 +6146 7866 0.5150 +6146 8192 0.5270 +6146 8266 0.6320 +6146 8638 0.4990 +6146 8662 0.5390 +6146 8664 0.5290 +6146 8665 0.5450 +6146 8666 0.4560 +6146 8667 0.4760 +6146 8721 0.7940 +6146 8886 0.8030 +6146 8894 0.6450 +6146 9045 0.9990 +6146 9132 0.4750 +6146 9147 0.8300 +6146 9188 0.5430 +6146 9312 0.4750 +6146 9343 0.6080 +6146 9349 0.9990 +6146 9584 0.4600 +6146 9636 0.5070 +6146 9669 0.9520 +6146 9732 0.8780 +6146 9759 0.4550 +6146 9789 0.4500 +6146 9858 0.7110 +6146 10200 0.4100 +6146 10399 0.9990 +6146 10412 0.8710 +6146 10430 0.8510 +6146 10438 0.5770 +6146 10473 0.7260 +6146 10480 0.5380 +6146 10492 0.5800 +6146 10537 0.4990 +6146 10557 0.6560 +6146 10767 0.8610 +6146 10952 0.9360 +6146 10969 0.7780 +6146 10985 0.7740 +6146 10988 0.5510 +6146 11198 0.4590 +6146 11222 0.7880 +6146 11224 0.9990 +6146 11332 0.4540 +6146 22894 0.4080 +6146 22927 0.7090 +6146 22948 0.4170 +6146 23173 0.5070 +6146 23204 0.8150 +6146 23246 0.8970 +6146 23478 0.4390 +6146 23480 0.8910 +6146 23481 0.8880 +6146 23517 0.5850 +6146 23521 0.9990 +6146 23560 0.9620 +6146 23640 0.5940 +6146 23708 0.5590 +6146 24140 0.5500 +6146 25873 0.9990 +6146 26046 0.8420 +6146 26135 0.9720 +6146 26155 0.7940 +6146 26156 0.7830 +6146 26168 0.5320 +6146 26251 0.4750 +6146 26354 0.6220 +6146 26523 0.5000 +6146 26986 0.4200 +6146 27012 0.4750 +6146 27043 0.5520 +6146 27430 0.4800 +6146 28972 0.4500 +6146 28991 0.4730 +6146 28998 0.7740 +6146 29088 0.5880 +6146 29093 0.7280 +6146 29889 0.9090 +6146 29927 0.8930 +6146 29960 0.5030 +6146 29978 0.4160 +6146 29979 0.4290 +6146 29997 0.8290 +6146 50613 0.4080 +6146 50814 0.4660 +6146 51042 0.8610 +6146 51065 0.9750 +6146 51068 0.9260 +6146 51069 0.7600 +6146 51073 0.8110 +6146 51081 0.7230 +6146 51116 0.7360 +6146 51121 0.9950 +6146 51149 0.9150 +6146 51154 0.8690 +6146 51187 0.9780 +6146 51224 0.4540 +6146 51319 0.8600 +6146 51386 0.5200 +6146 51388 0.8060 +6146 51398 0.5230 +6146 53918 0.8690 +6146 54463 0.5010 +6146 54464 0.4390 +6146 54499 0.8210 +6146 54552 0.5690 +6146 54596 0.4610 +6146 54819 0.5090 +6146 54881 0.6510 +6146 54888 0.4070 +6146 54948 0.6290 +6146 55173 0.8660 +6146 55176 0.4340 +6146 55272 0.8800 +6146 55294 0.4830 +6146 55299 0.8060 +6146 55316 0.9090 +6146 55319 0.8030 +6146 55341 0.8830 +6146 55591 0.4490 +6146 55629 0.5210 +6146 55646 0.8060 +6146 55651 0.6900 +6146 55759 0.8890 +6146 55802 0.5270 +6146 55854 0.5220 +6146 55969 0.4300 +6146 56479 0.4750 +6146 56648 0.5930 +6146 56893 0.4240 +6146 56926 0.8230 +6146 57003 0.8200 +6146 57418 0.6570 +6146 57696 0.4370 +6146 58477 0.8310 +6146 58505 0.5280 +6146 59341 0.4120 +6146 60559 0.4050 +6146 60678 0.9050 +6146 63931 0.8320 +6146 64221 0.4990 +6146 64318 0.7900 +6146 64374 0.5950 +6146 64960 0.7860 +6146 64963 0.7840 +6146 64969 0.8410 +6146 65003 0.7100 +6146 65008 0.7850 +6146 65121 0.5790 +6146 65122 0.5790 +6146 79048 0.8090 +6146 79137 0.4400 +6146 79159 0.5010 +6146 79590 0.8580 +6146 79631 0.5860 +6146 79707 0.5040 +6146 80135 0.7730 +6146 80146 0.4630 +6146 80270 0.4630 +6146 81875 0.4240 +6146 81887 0.5040 +6146 84154 0.5290 +6146 84273 0.4080 +6146 84295 0.4440 +6146 84298 0.8020 +6146 84365 0.8140 +6146 84549 0.7700 +6146 84993 0.4290 +6146 85476 0.5510 +6146 90441 0.8980 +6146 90459 0.4250 +6146 90701 0.4180 +6146 91408 0.4220 +6146 91875 0.8020 +6146 92196 0.5970 +6146 93107 0.4750 +6146 93517 0.4630 +6146 93550 0.5270 +6146 93974 0.4510 +6146 112939 0.4240 +6146 114987 0.9190 +6146 115098 0.8610 +6146 116832 0.9370 +6146 117246 0.8020 +6146 124454 0.6560 +6146 126402 0.7250 +6146 140032 0.8530 +6146 140801 0.9870 +6146 143244 0.5930 +6146 143630 0.4080 +6146 146212 0.5290 +6146 149041 0.5100 +6146 162427 0.4360 +6146 164153 0.4990 +6146 164832 0.4550 +6146 169522 0.4750 +6146 170850 0.4750 +6146 200916 0.9330 +6146 201595 0.5910 +6146 203068 0.8170 +6146 221078 0.5850 +6146 254268 0.8990 +6146 283518 0.4750 +6146 285855 0.9140 +6146 342538 0.8540 +6146 343068 0.5790 +6146 343070 0.5790 +6146 347487 0.8910 +6146 387129 0.8000 +6146 390999 0.5790 +6146 391002 0.5790 +6146 400735 0.5790 +6146 400736 0.5790 +6146 440560 0.5790 +6146 440561 0.5790 +6146 441873 0.5790 +6146 641776 0.6390 +6146 643909 0.6390 +6146 645051 0.6630 +6146 645073 0.6630 +6146 645359 0.5790 +6146 653619 0.5790 +6146 728524 0.6390 +6146 729396 0.6630 +6146 729422 0.6630 +6146 729428 0.6630 +6146 729431 0.6630 +6146 729442 0.6630 +6146 729447 0.6630 +6146 729528 0.5790 +6146 100008586 0.6630 +6146 100128731 0.5160 +6146 100132399 0.6630 +6146 100287482 0.7110 +6146 100505478 0.7430 +6146 100526842 0.9770 +6146 100527943 0.4290 +6146 100529097 0.8880 +6146 100529239 0.9800 +6146 100996746 0.6390 +6146 101929983 0.5790 +6146 102724473 0.6630 +6146 105180390 0.6390 +6146 105180391 0.6390 +6147 6152 0.9990 +6147 6154 0.9990 +6147 6155 0.9990 +6147 6156 0.9990 +6147 6157 0.9990 +6147 6158 0.9990 +6147 6159 0.9990 +6147 6160 0.9990 +6147 6161 0.9990 +6147 6164 0.9990 +6147 6165 0.9990 +6147 6166 0.9990 +6147 6167 0.9990 +6147 6168 0.9990 +6147 6169 0.9990 +6147 6170 0.9980 +6147 6171 0.7040 +6147 6173 0.9980 +6147 6175 0.9990 +6147 6176 0.9990 +6147 6181 0.9990 +6147 6182 0.9990 +6147 6183 0.9830 +6147 6184 0.4870 +6147 6187 0.9990 +6147 6188 0.9990 +6147 6189 0.9990 +6147 6191 0.9990 +6147 6192 0.9950 +6147 6193 0.9990 +6147 6194 0.9990 +6147 6201 0.9990 +6147 6202 0.9990 +6147 6203 0.9990 +6147 6204 0.9990 +6147 6205 0.9990 +6147 6206 0.9990 +6147 6207 0.9990 +6147 6208 0.9990 +6147 6209 0.9990 +6147 6210 0.9990 +6147 6217 0.9990 +6147 6218 0.9990 +6147 6222 0.9990 +6147 6223 0.9990 +6147 6224 0.9990 +6147 6227 0.9990 +6147 6228 0.9990 +6147 6229 0.9990 +6147 6230 0.9990 +6147 6231 0.9990 +6147 6232 0.9990 +6147 6233 0.9990 +6147 6234 0.9990 +6147 6235 0.9990 +6147 6499 0.6430 +6147 6506 0.4640 +6147 6627 0.5530 +6147 6687 0.5070 +6147 6726 0.9310 +6147 6727 0.9550 +6147 6728 0.9500 +6147 6729 0.9990 +6147 6730 0.9530 +6147 6731 0.9140 +6147 6734 0.9880 +6147 6742 0.6250 +6147 6950 0.4260 +6147 7011 0.4970 +6147 7072 0.4950 +6147 7073 0.4670 +6147 7157 0.5610 +6147 7178 0.9350 +6147 7203 0.4010 +6147 7264 0.5490 +6147 7284 0.9990 +6147 7311 0.9990 +6147 7314 0.6830 +6147 7316 0.6810 +6147 7323 0.4370 +6147 7403 0.4830 +6147 7404 0.4830 +6147 7407 0.6130 +6147 7453 0.4800 +6147 7494 0.8030 +6147 7514 0.4230 +6147 7866 0.7550 +6147 7919 0.4170 +6147 7978 0.5130 +6147 8225 0.8970 +6147 8242 0.4570 +6147 8260 0.6930 +6147 8266 0.7480 +6147 8284 0.4550 +6147 8361 0.4340 +6147 8531 0.4280 +6147 8568 0.8080 +6147 8624 0.5020 +6147 8638 0.6580 +6147 8661 0.4810 +6147 8662 0.4950 +6147 8663 0.5020 +6147 8664 0.6620 +6147 8665 0.4890 +6147 8666 0.5040 +6147 8667 0.4620 +6147 8668 0.5490 +6147 8721 0.9090 +6147 8886 0.9600 +6147 8894 0.6770 +6147 9045 0.9990 +6147 9069 0.4290 +6147 9086 0.8440 +6147 9100 0.4420 +6147 9132 0.5870 +6147 9141 0.8320 +6147 9147 0.8990 +6147 9188 0.5660 +6147 9312 0.5870 +6147 9343 0.9500 +6147 9349 0.9990 +6147 9528 0.4280 +6147 9533 0.9470 +6147 9553 0.9990 +6147 9584 0.4810 +6147 9609 0.7740 +6147 9617 0.6250 +6147 9636 0.6590 +6147 9652 0.7660 +6147 9669 0.9850 +6147 9732 0.9780 +6147 9775 0.5160 +6147 9789 0.4110 +6147 9801 0.9990 +6147 9858 0.9030 +6147 9933 0.4370 +6147 9939 0.4150 +6147 9958 0.4780 +6147 10054 0.4020 +6147 10056 0.4950 +6147 10061 0.7920 +6147 10102 0.8860 +6147 10135 0.6310 +6147 10169 0.6670 +6147 10200 0.4130 +6147 10209 0.4540 +6147 10399 0.9990 +6147 10412 0.9920 +6147 10430 0.8190 +6147 10438 0.6970 +6147 10473 0.9320 +6147 10477 0.4980 +6147 10480 0.6440 +6147 10492 0.4090 +6147 10514 0.4720 +6147 10526 0.5030 +6147 10527 0.7220 +6147 10528 0.5260 +6147 10537 0.6580 +6147 10557 0.8750 +6147 10574 0.6540 +6147 10575 0.7690 +6147 10576 0.5260 +6147 10614 0.4780 +6147 10657 0.4840 +6147 10666 0.4300 +6147 10667 0.4260 +6147 10694 0.4450 +6147 10730 0.4230 +6147 10765 0.4570 +6147 10767 0.8830 +6147 10775 0.4460 +6147 10808 0.4090 +6147 10939 0.5040 +6147 10952 0.9800 +6147 10969 0.9470 +6147 10985 0.9340 +6147 10988 0.8800 +6147 11047 0.5180 +6147 11128 0.9430 +6147 11137 0.4370 +6147 11222 0.9710 +6147 11224 0.9990 +6147 11325 0.4580 +6147 22894 0.4770 +6147 22916 0.6000 +6147 22927 0.8760 +6147 22948 0.5400 +6147 22984 0.9980 +6147 23076 0.8880 +6147 23135 0.4840 +6147 23148 0.7160 +6147 23173 0.8570 +6147 23195 0.6200 +6147 23204 0.9450 +6147 23212 0.8120 +6147 23223 0.4820 +6147 23246 0.9650 +6147 23252 0.8620 +6147 23363 0.4400 +6147 23395 0.4230 +6147 23451 0.4450 +6147 23478 0.4350 +6147 23480 0.9710 +6147 23481 0.9860 +6147 23517 0.7990 +6147 23521 0.9990 +6147 23560 0.9910 +6147 23640 0.9090 +6147 23708 0.5510 +6147 24140 0.6630 +6147 25789 0.4070 +6147 25873 0.9990 +6147 25885 0.9460 +6147 26046 0.8630 +6147 26135 0.9940 +6147 26155 0.9360 +6147 26156 0.9580 +6147 26164 0.4290 +6147 26168 0.5400 +6147 26251 0.5870 +6147 26271 0.6330 +6147 26289 0.6250 +6147 26354 0.8840 +6147 26986 0.8370 +6147 27000 0.4130 +6147 27012 0.5870 +6147 27043 0.6110 +6147 27068 0.5140 +6147 27430 0.5600 +6147 28972 0.4410 +6147 28989 0.8110 +6147 28991 0.5770 +6147 28998 0.9810 +6147 29088 0.7750 +6147 29093 0.9710 +6147 29796 0.5380 +6147 29889 0.9870 +6147 29922 0.4260 +6147 29927 0.9970 +6147 29960 0.6630 +6147 29978 0.6140 +6147 29979 0.6680 +6147 29997 0.9780 +6147 50487 0.4300 +6147 50613 0.6080 +6147 50808 0.6190 +6147 50814 0.5480 +6147 51001 0.5170 +6147 51021 0.9990 +6147 51023 0.5270 +6147 51042 0.9580 +6147 51065 0.9920 +6147 51068 0.9850 +6147 51069 0.9740 +6147 51073 0.9740 +6147 51081 0.9780 +6147 51116 0.9050 +6147 51119 0.7100 +6147 51121 0.9970 +6147 51149 0.9790 +6147 51154 0.9930 +6147 51182 0.4370 +6147 51187 0.9930 +6147 51194 0.7830 +6147 51264 0.9990 +6147 51314 0.4220 +6147 51319 0.9750 +6147 51372 0.5130 +6147 51388 0.9210 +6147 51398 0.4160 +6147 51491 0.4800 +6147 51520 0.4450 +6147 51574 0.6970 +6147 51602 0.5400 +6147 51720 0.4380 +6147 51727 0.6590 +6147 53918 0.8810 +6147 54033 0.4640 +6147 54463 0.5810 +6147 54464 0.6530 +6147 54475 0.7530 +6147 54499 0.8170 +6147 54516 0.6250 +6147 54552 0.8930 +6147 54596 0.5210 +6147 54606 0.5940 +6147 54663 0.9380 +6147 54881 0.7650 +6147 54888 0.5310 +6147 54948 0.9390 +6147 55052 0.9990 +6147 55139 0.5200 +6147 55143 0.4760 +6147 55153 0.7960 +6147 55168 0.4920 +6147 55173 0.9870 +6147 55176 0.9810 +6147 55272 0.9840 +6147 55299 0.9400 +6147 55308 0.4840 +6147 55316 0.9810 +6147 55319 0.8160 +6147 55324 0.7950 +6147 55341 0.9480 +6147 55591 0.8550 +6147 55607 0.5330 +6147 55629 0.5230 +6147 55646 0.8700 +6147 55651 0.8830 +6147 55695 0.5280 +6147 55699 0.5000 +6147 55703 0.9160 +6147 55759 0.9670 +6147 55802 0.6090 +6147 55854 0.8750 +6147 55893 0.4340 +6147 56257 0.4440 +6147 56474 0.5400 +6147 56479 0.5870 +6147 56648 0.9490 +6147 56731 0.4300 +6147 56893 0.6310 +6147 56902 0.4300 +6147 56926 0.8160 +6147 56965 0.8790 +6147 57003 0.8240 +6147 57062 0.4210 +6147 57136 0.8180 +6147 57176 0.5240 +6147 57325 0.4410 +6147 57418 0.8470 +6147 57470 0.4760 +6147 57471 0.5030 +6147 57696 0.8450 +6147 58477 0.8490 +6147 58505 0.4590 +6147 60558 0.8620 +6147 60559 0.4530 +6147 60678 0.9460 +6147 63875 0.9990 +6147 63899 0.5180 +6147 63931 0.9740 +6147 64146 0.9420 +6147 64221 0.5000 +6147 64318 0.9170 +6147 64374 0.9090 +6147 64794 0.4100 +6147 64960 0.9730 +6147 64963 0.9700 +6147 64965 0.9990 +6147 64968 0.9990 +6147 64969 0.9820 +6147 64979 0.9990 +6147 64983 0.9990 +6147 65003 0.9190 +6147 65005 0.9990 +6147 65008 0.9720 +6147 65121 0.7150 +6147 65122 0.7150 +6147 65993 0.4080 +6147 79036 0.5220 +6147 79048 0.8120 +6147 79050 0.5410 +6147 79084 0.5580 +6147 79137 0.5380 +6147 79159 0.6340 +6147 79590 0.9750 +6147 79612 0.5080 +6147 79631 0.9430 +6147 79668 0.8790 +6147 79707 0.5040 +6147 79727 0.4560 +6147 79730 0.5180 +6147 79903 0.4490 +6147 80135 0.9560 +6147 80146 0.5450 +6147 80155 0.5700 +6147 80218 0.6910 +6147 80270 0.5450 +6147 80298 0.5130 +6147 80349 0.5110 +6147 81875 0.4200 +6147 81887 0.5060 +6147 83871 0.5670 +6147 84154 0.9480 +6147 84172 0.9160 +6147 84273 0.6110 +6147 84298 0.8030 +6147 84340 0.6880 +6147 84365 0.9680 +6147 84549 0.9090 +6147 84779 0.6090 +6147 84851 0.5070 +6147 84993 0.6480 +6147 85476 0.9530 +6147 85865 0.4380 +6147 87178 0.8190 +6147 90441 0.9170 +6147 90459 0.4210 +6147 90701 0.4130 +6147 91408 0.7480 +6147 91574 0.6280 +6147 91875 0.9000 +6147 91893 0.4170 +6147 92170 0.5840 +6147 92196 0.8080 +6147 92399 0.9850 +6147 93107 0.5870 +6147 93517 0.5450 +6147 93550 0.6580 +6147 93974 0.4210 +6147 114987 0.9720 +6147 115098 0.9170 +6147 115416 0.9320 +6147 116832 0.9850 +6147 117246 0.9550 +6147 120892 0.5100 +6147 122481 0.6180 +6147 124454 0.8890 +6147 126402 0.9710 +6147 137994 0.4290 +6147 140032 0.9630 +6147 140801 0.9950 +6147 140883 0.4310 +6147 143244 0.9470 +6147 143630 0.6080 +6147 146212 0.8090 +6147 147011 0.4300 +6147 149041 0.5100 +6147 152518 0.5120 +6147 154288 0.4300 +6147 158067 0.6180 +6147 162427 0.5340 +6147 164153 0.6580 +6147 169522 0.5870 +6147 170850 0.5870 +6147 200916 0.9820 +6147 201595 0.7830 +6147 203068 0.8450 +6147 219927 0.9990 +6147 221078 0.8330 +6147 221264 0.6240 +6147 221710 0.5270 +6147 253260 0.7420 +6147 254268 0.9740 +6147 255308 0.4930 +6147 283518 0.5870 +6147 285521 0.4110 +6147 285855 0.9840 +6147 342538 0.9530 +6147 343068 0.7150 +6147 343070 0.7150 +6147 347487 0.9710 +6147 374659 0.9430 +6147 387129 0.9500 +6147 387338 0.5210 +6147 387712 0.6130 +6147 390748 0.4390 +6147 390999 0.7150 +6147 391002 0.7150 +6147 400735 0.7150 +6147 400736 0.7150 +6147 401265 0.7980 +6147 440560 0.7150 +6147 440561 0.7150 +6147 441873 0.7150 +6147 497661 0.4790 +6147 619279 0.4300 +6147 641776 0.8350 +6147 642489 0.4230 +6147 642987 0.4300 +6147 643909 0.8350 +6147 645051 0.7740 +6147 645073 0.7740 +6147 645359 0.7150 +6147 653619 0.7150 +6147 654364 0.4150 +6147 728524 0.8350 +6147 729396 0.7740 +6147 729422 0.7740 +6147 729428 0.7740 +6147 729431 0.7740 +6147 729442 0.7740 +6147 729447 0.7740 +6147 729528 0.7150 +6147 100008586 0.7740 +6147 100128731 0.4690 +6147 100130733 0.7270 +6147 100132399 0.7740 +6147 100287482 0.9030 +6147 100505478 0.9430 +6147 100526842 0.9960 +6147 100529097 0.9680 +6147 100529239 0.9950 +6147 100996746 0.8350 +6147 101929983 0.7150 +6147 102724473 0.7740 +6147 105180390 0.8350 +6147 105180391 0.8350 +6147 114483834 0.8050 +6150 6154 0.4200 +6150 6157 0.4630 +6150 6167 0.4360 +6150 6175 0.4010 +6150 6182 0.9750 +6150 6183 0.9970 +6150 6187 0.8440 +6150 6193 0.8180 +6150 6202 0.4340 +6150 6203 0.8770 +6150 6205 0.8550 +6150 6207 0.6440 +6150 6208 0.6240 +6150 6210 0.5390 +6150 6217 0.6380 +6150 6222 0.9400 +6150 6224 0.7440 +6150 6228 0.8250 +6150 6235 0.6410 +6150 6648 0.8350 +6150 6742 0.6210 +6150 7054 0.4110 +6150 7140 0.4980 +6150 7262 0.5630 +6150 7284 0.9300 +6150 7818 0.9940 +6150 8192 0.4640 +6150 8225 0.8380 +6150 8624 0.9120 +6150 9093 0.4290 +6150 9349 0.9730 +6150 9553 0.9950 +6150 9617 0.5930 +6150 9801 0.9980 +6150 9858 0.9310 +6150 10078 0.5540 +6150 10102 0.5800 +6150 10240 0.8940 +6150 10473 0.5460 +6150 10573 0.9490 +6150 10664 0.5390 +6150 10884 0.9860 +6150 10939 0.4840 +6150 10964 0.7870 +6150 11222 0.9970 +6150 23107 0.8900 +6150 23193 0.5110 +6150 23204 0.5200 +6150 23405 0.6020 +6150 23423 0.5650 +6150 23521 0.7280 +6150 23640 0.5500 +6150 23732 0.9070 +6150 25771 0.4330 +6150 26118 0.5200 +6150 26164 0.8680 +6150 26275 0.9500 +6150 26519 0.4170 +6150 26589 0.9970 +6150 28957 0.8570 +6150 28973 0.8810 +6150 28977 0.9460 +6150 28998 0.9990 +6150 29074 0.9280 +6150 29088 0.9540 +6150 29093 0.9970 +6150 29102 0.5990 +6150 29960 0.8030 +6150 51014 0.5600 +6150 51021 0.9970 +6150 51023 0.9860 +6150 51069 0.9830 +6150 51073 0.9980 +6150 51081 0.9710 +6150 51082 0.6100 +6150 51116 0.9920 +6150 51121 0.4690 +6150 51149 0.6350 +6150 51154 0.5050 +6150 51250 0.8230 +6150 51253 0.9610 +6150 51258 0.9500 +6150 51263 0.9900 +6150 51264 0.9970 +6150 51318 0.9270 +6150 51373 0.8830 +6150 51642 0.9430 +6150 51649 0.8900 +6150 51650 0.9480 +6150 53827 0.4970 +6150 54148 0.9800 +6150 54460 0.8690 +6150 54516 0.6320 +6150 54534 0.9530 +6150 54543 0.4080 +6150 54948 0.9960 +6150 54998 0.8620 +6150 55037 0.8760 +6150 55052 0.9980 +6150 55168 0.9900 +6150 55173 0.9930 +6150 55178 0.8090 +6150 55245 0.5230 +6150 55272 0.6200 +6150 55316 0.6260 +6150 55633 0.4290 +6150 55794 0.8070 +6150 56945 0.8880 +6150 56993 0.4430 +6150 57129 0.9990 +6150 57680 0.4950 +6150 58472 0.4450 +6150 60488 0.9940 +6150 63875 0.9980 +6150 63931 0.9950 +6150 64374 0.5520 +6150 64432 0.9810 +6150 64928 0.9120 +6150 64949 0.8640 +6150 64951 0.8830 +6150 64960 0.9950 +6150 64963 0.9920 +6150 64965 0.9930 +6150 64968 0.9930 +6150 64969 0.9940 +6150 64975 0.9990 +6150 64976 0.9960 +6150 64978 0.9810 +6150 64979 0.9930 +6150 64981 0.9930 +6150 64983 0.9950 +6150 65003 0.9960 +6150 65005 0.9970 +6150 65008 0.9330 +6150 65080 0.9980 +6150 65121 0.6280 +6150 65122 0.6280 +6150 65993 0.9460 +6150 78988 0.9010 +6150 79590 0.9890 +6150 79728 0.4380 +6150 84311 0.9710 +6150 84340 0.8120 +6150 84545 0.9950 +6150 84985 0.5010 +6150 85476 0.8430 +6150 85865 0.8080 +6150 90019 0.5580 +6150 90313 0.8340 +6150 90480 0.9650 +6150 90624 0.7960 +6150 91574 0.8730 +6150 92170 0.8170 +6150 92399 0.9060 +6150 114781 0.7870 +6150 115416 0.8620 +6150 116540 0.9140 +6150 116541 0.9750 +6150 118487 0.9150 +6150 122704 0.9510 +6150 124995 0.9860 +6150 125919 0.4070 +6150 126328 0.4760 +6150 126402 0.8040 +6150 128308 0.9330 +6150 128876 0.5010 +6150 130916 0.8150 +6150 140690 0.6180 +6150 140801 0.6190 +6150 147912 0.4290 +6150 148022 0.5570 +6150 149478 0.5490 +6150 157310 0.7750 +6150 219402 0.6200 +6150 219927 0.9960 +6150 284106 0.5510 +6150 343068 0.6280 +6150 343070 0.6280 +6150 345051 0.9070 +6150 347487 0.6020 +6150 353376 0.5530 +6150 374291 0.4020 +6150 387338 0.8020 +6150 390999 0.6280 +6150 391002 0.6280 +6150 400735 0.6280 +6150 400736 0.6280 +6150 440560 0.6280 +6150 440561 0.6280 +6150 441873 0.6280 +6150 641776 0.5180 +6150 643909 0.5180 +6150 645359 0.6280 +6150 653619 0.6280 +6150 728524 0.5180 +6150 729528 0.6280 +6150 100287482 0.6020 +6150 100302736 0.5530 +6150 100526842 0.6660 +6150 100996746 0.5180 +6150 101929983 0.6280 +6150 105180390 0.5180 +6150 105180391 0.5180 +6150 127898561 0.8100 +6152 6154 0.9990 +6152 6155 0.9990 +6152 6156 0.9990 +6152 6157 0.9990 +6152 6158 0.9990 +6152 6159 0.9990 +6152 6160 0.9990 +6152 6161 0.9990 +6152 6164 0.9990 +6152 6165 0.9990 +6152 6166 0.9960 +6152 6167 0.9990 +6152 6168 0.9990 +6152 6169 0.9990 +6152 6170 0.9990 +6152 6171 0.9700 +6152 6173 0.9990 +6152 6175 0.9990 +6152 6176 0.9990 +6152 6181 0.9990 +6152 6183 0.9770 +6152 6184 0.5130 +6152 6187 0.9990 +6152 6188 0.9990 +6152 6189 0.9990 +6152 6191 0.9990 +6152 6192 0.9940 +6152 6193 0.9990 +6152 6194 0.9990 +6152 6201 0.9990 +6152 6202 0.9990 +6152 6203 0.9990 +6152 6204 0.9990 +6152 6205 0.9990 +6152 6206 0.9990 +6152 6207 0.9990 +6152 6208 0.9990 +6152 6209 0.9990 +6152 6210 0.9980 +6152 6217 0.9990 +6152 6218 0.9990 +6152 6222 0.9990 +6152 6223 0.9990 +6152 6224 0.9990 +6152 6227 0.9990 +6152 6228 0.9990 +6152 6229 0.9990 +6152 6230 0.9990 +6152 6231 0.9990 +6152 6232 0.9990 +6152 6233 0.9990 +6152 6234 0.9990 +6152 6235 0.9990 +6152 6499 0.5010 +6152 6633 0.5190 +6152 6636 0.4260 +6152 6726 0.9060 +6152 6727 0.9210 +6152 6728 0.9000 +6152 6729 0.9150 +6152 6730 0.9080 +6152 6731 0.8780 +6152 6734 0.8190 +6152 6888 0.4190 +6152 7157 0.4420 +6152 7178 0.9310 +6152 7264 0.5230 +6152 7311 0.9990 +6152 7314 0.6710 +6152 7316 0.6780 +6152 7494 0.8020 +6152 7866 0.7540 +6152 8034 0.4150 +6152 8260 0.4050 +6152 8266 0.7410 +6152 8361 0.4250 +6152 8638 0.6460 +6152 8663 0.5650 +6152 8665 0.4550 +6152 8666 0.7780 +6152 8667 0.8410 +6152 8668 0.5820 +6152 8721 0.8940 +6152 8894 0.5840 +6152 9045 0.9990 +6152 9132 0.5740 +6152 9141 0.6790 +6152 9147 0.8060 +6152 9312 0.5740 +6152 9343 0.9190 +6152 9349 0.9990 +6152 9377 0.4140 +6152 9401 0.5250 +6152 9584 0.4470 +6152 9636 0.6470 +6152 9652 0.4980 +6152 9669 0.9590 +6152 9732 0.9790 +6152 9775 0.6610 +6152 9789 0.4670 +6152 9858 0.8820 +6152 9908 0.4470 +6152 10200 0.4160 +6152 10399 0.9990 +6152 10412 0.9750 +6152 10430 0.8240 +6152 10438 0.4080 +6152 10473 0.9170 +6152 10476 0.4370 +6152 10480 0.5930 +6152 10537 0.6470 +6152 10557 0.8550 +6152 10632 0.4050 +6152 10666 0.4120 +6152 10767 0.8620 +6152 10952 0.9270 +6152 10985 0.8620 +6152 10988 0.6430 +6152 11222 0.9540 +6152 11224 0.9990 +6152 22894 0.4030 +6152 22927 0.8920 +6152 23148 0.6310 +6152 23173 0.5620 +6152 23185 0.9020 +6152 23204 0.9500 +6152 23246 0.5350 +6152 23478 0.4870 +6152 23480 0.8940 +6152 23481 0.5620 +6152 23517 0.5180 +6152 23521 0.9990 +6152 23640 0.8040 +6152 23708 0.5180 +6152 25873 0.9990 +6152 26046 0.8120 +6152 26135 0.9820 +6152 26168 0.5130 +6152 26251 0.5740 +6152 27012 0.5740 +6152 27043 0.5680 +6152 27292 0.4120 +6152 27335 0.7550 +6152 27430 0.5290 +6152 28972 0.4710 +6152 28991 0.5790 +6152 28998 0.9610 +6152 29088 0.6850 +6152 29093 0.9450 +6152 29927 0.8890 +6152 29978 0.5980 +6152 29979 0.6060 +6152 29997 0.8930 +6152 50487 0.4120 +6152 50613 0.5920 +6152 50814 0.5180 +6152 51065 0.9900 +6152 51068 0.9750 +6152 51069 0.9580 +6152 51073 0.9500 +6152 51081 0.9480 +6152 51116 0.9040 +6152 51119 0.7250 +6152 51121 0.9950 +6152 51149 0.9750 +6152 51154 0.9810 +6152 51187 0.9640 +6152 51314 0.4070 +6152 51319 0.9510 +6152 51398 0.5280 +6152 51720 0.4230 +6152 53918 0.8590 +6152 54463 0.5930 +6152 54464 0.4440 +6152 54499 0.8200 +6152 54543 0.5620 +6152 54596 0.4830 +6152 54881 0.5090 +6152 54948 0.8080 +6152 55139 0.4550 +6152 55173 0.9720 +6152 55272 0.9760 +6152 55316 0.9740 +6152 55341 0.9420 +6152 55591 0.5560 +6152 55629 0.5310 +6152 55646 0.8120 +6152 55651 0.8740 +6152 55759 0.5320 +6152 55802 0.5160 +6152 55854 0.5630 +6152 55893 0.4230 +6152 55969 0.4370 +6152 56479 0.5740 +6152 56648 0.9190 +6152 56731 0.4140 +6152 56893 0.6030 +6152 56926 0.8180 +6152 56965 0.7870 +6152 57003 0.8220 +6152 57418 0.5240 +6152 57532 0.7260 +6152 58477 0.8230 +6152 58505 0.5350 +6152 60386 0.4160 +6152 60559 0.4050 +6152 60678 0.9160 +6152 63931 0.9600 +6152 64221 0.5000 +6152 64374 0.8060 +6152 64960 0.9600 +6152 64963 0.9580 +6152 64969 0.9760 +6152 65003 0.9000 +6152 65008 0.9650 +6152 65121 0.6770 +6152 65122 0.6770 +6152 65993 0.5070 +6152 79036 0.5160 +6152 79048 0.8060 +6152 79137 0.5610 +6152 79590 0.9670 +6152 79631 0.9320 +6152 79668 0.7920 +6152 79707 0.5360 +6152 80146 0.5160 +6152 80218 0.5010 +6152 80270 0.5160 +6152 80349 0.4980 +6152 81887 0.5080 +6152 84154 0.4270 +6152 84851 0.5080 +6152 84993 0.6160 +6152 85476 0.9100 +6152 90441 0.9170 +6152 90459 0.4530 +6152 90701 0.4220 +6152 91408 0.6270 +6152 91875 0.8240 +6152 92196 0.8080 +6152 93107 0.5740 +6152 93517 0.5160 +6152 93550 0.6460 +6152 114987 0.9720 +6152 115098 0.8650 +6152 116832 0.9760 +6152 120892 0.5100 +6152 124454 0.8470 +6152 126402 0.9450 +6152 137994 0.4290 +6152 140032 0.9730 +6152 140801 0.9980 +6152 143244 0.9190 +6152 143630 0.5920 +6152 147011 0.4120 +6152 149041 0.5100 +6152 154288 0.4120 +6152 162427 0.5560 +6152 164153 0.6460 +6152 169522 0.5740 +6152 170850 0.5740 +6152 200916 0.9730 +6152 201595 0.7960 +6152 203068 0.8110 +6152 203427 0.4150 +6152 254268 0.9760 +6152 283518 0.5740 +6152 283600 0.4150 +6152 285855 0.9770 +6152 342538 0.9240 +6152 343068 0.6770 +6152 343070 0.6770 +6152 347487 0.9740 +6152 387129 0.9420 +6152 390999 0.6770 +6152 391002 0.6770 +6152 400735 0.6770 +6152 400736 0.6770 +6152 440560 0.6770 +6152 440561 0.6770 +6152 441873 0.6770 +6152 619279 0.4120 +6152 641776 0.8240 +6152 642987 0.4120 +6152 643909 0.8240 +6152 645051 0.7860 +6152 645073 0.7860 +6152 645359 0.6770 +6152 653619 0.6770 +6152 654364 0.4700 +6152 728524 0.8240 +6152 729396 0.7860 +6152 729422 0.7860 +6152 729428 0.7860 +6152 729431 0.7860 +6152 729442 0.7860 +6152 729447 0.7860 +6152 729528 0.6770 +6152 100008586 0.7860 +6152 100128731 0.5780 +6152 100132399 0.7860 +6152 100287482 0.8820 +6152 100505478 0.9320 +6152 100526842 0.9950 +6152 100527943 0.4290 +6152 100529097 0.9690 +6152 100529239 0.9950 +6152 100996746 0.8240 +6152 101929983 0.6770 +6152 102724473 0.7860 +6152 105180390 0.8240 +6152 105180391 0.8240 +6154 6155 0.9990 +6154 6156 0.9990 +6154 6157 0.9990 +6154 6158 0.9990 +6154 6159 0.9990 +6154 6160 0.9990 +6154 6161 0.9990 +6154 6164 0.9990 +6154 6165 0.9990 +6154 6166 0.9900 +6154 6167 0.9990 +6154 6168 0.9990 +6154 6169 0.9990 +6154 6170 0.9980 +6154 6171 0.6480 +6154 6173 0.9990 +6154 6175 0.9990 +6154 6176 0.9980 +6154 6181 0.9990 +6154 6182 0.9720 +6154 6183 0.8920 +6154 6184 0.5270 +6154 6187 0.9990 +6154 6188 0.9990 +6154 6189 0.9990 +6154 6191 0.9960 +6154 6192 0.9810 +6154 6193 0.9990 +6154 6194 0.9990 +6154 6201 0.9990 +6154 6202 0.9990 +6154 6203 0.9990 +6154 6204 0.9990 +6154 6205 0.9990 +6154 6206 0.9990 +6154 6207 0.9990 +6154 6208 0.9990 +6154 6209 0.9990 +6154 6210 0.9990 +6154 6217 0.9990 +6154 6218 0.9980 +6154 6222 0.9990 +6154 6223 0.9990 +6154 6224 0.9990 +6154 6227 0.9990 +6154 6228 0.9990 +6154 6229 0.9990 +6154 6230 0.9990 +6154 6231 0.9990 +6154 6232 0.9980 +6154 6233 0.9990 +6154 6234 0.9990 +6154 6235 0.9990 +6154 6431 0.4100 +6154 6499 0.4220 +6154 6633 0.4420 +6154 6648 0.4930 +6154 6726 0.8650 +6154 6727 0.8620 +6154 6728 0.8590 +6154 6729 0.9680 +6154 6730 0.8880 +6154 6731 0.8570 +6154 6734 0.9110 +6154 6894 0.4540 +6154 6950 0.4880 +6154 7157 0.8760 +6154 7167 0.4480 +6154 7178 0.9160 +6154 7203 0.4740 +6154 7284 0.9490 +6154 7311 0.9970 +6154 7314 0.5440 +6154 7316 0.5780 +6154 7494 0.8130 +6154 7818 0.8270 +6154 7866 0.5170 +6154 7919 0.4520 +6154 8192 0.4390 +6154 8225 0.6440 +6154 8260 0.6280 +6154 8266 0.6740 +6154 8361 0.4130 +6154 8565 0.4080 +6154 8568 0.5730 +6154 8607 0.4480 +6154 8624 0.5670 +6154 8638 0.5210 +6154 8661 0.4240 +6154 8662 0.6120 +6154 8663 0.4680 +6154 8664 0.6010 +6154 8665 0.6250 +6154 8666 0.6300 +6154 8667 0.5700 +6154 8668 0.7450 +6154 8721 0.8040 +6154 8886 0.8230 +6154 8894 0.6910 +6154 9045 0.9990 +6154 9069 0.4180 +6154 9086 0.7710 +6154 9132 0.5160 +6154 9141 0.6680 +6154 9147 0.8880 +6154 9188 0.4930 +6154 9312 0.5160 +6154 9343 0.8750 +6154 9349 0.9990 +6154 9465 0.4670 +6154 9528 0.4080 +6154 9533 0.8570 +6154 9553 0.9610 +6154 9617 0.4720 +6154 9636 0.5290 +6154 9652 0.4290 +6154 9669 0.9140 +6154 9732 0.9190 +6154 9775 0.5890 +6154 9782 0.4490 +6154 9789 0.7220 +6154 9801 0.9500 +6154 9858 0.7700 +6154 9958 0.5010 +6154 10049 0.5020 +6154 10061 0.5450 +6154 10102 0.7140 +6154 10135 0.4810 +6154 10200 0.4160 +6154 10236 0.4060 +6154 10240 0.4220 +6154 10399 0.9990 +6154 10412 0.9120 +6154 10430 0.8270 +6154 10438 0.5770 +6154 10473 0.8220 +6154 10476 0.4040 +6154 10480 0.6160 +6154 10492 0.6010 +6154 10537 0.5210 +6154 10557 0.6650 +6154 10574 0.7300 +6154 10575 0.6910 +6154 10576 0.6240 +6154 10664 0.4690 +6154 10694 0.6310 +6154 10745 0.4110 +6154 10767 0.8770 +6154 10884 0.6630 +6154 10952 0.9570 +6154 10969 0.8640 +6154 10985 0.7890 +6154 10988 0.7430 +6154 11047 0.4470 +6154 11128 0.8290 +6154 11212 0.4020 +6154 11222 0.8390 +6154 11224 0.9990 +6154 22894 0.5510 +6154 22927 0.7080 +6154 22948 0.6250 +6154 22984 0.9650 +6154 23076 0.6990 +6154 23135 0.4260 +6154 23148 0.6060 +6154 23173 0.7400 +6154 23195 0.4200 +6154 23204 0.8600 +6154 23212 0.4810 +6154 23246 0.9220 +6154 23252 0.6100 +6154 23376 0.5720 +6154 23478 0.6770 +6154 23480 0.9710 +6154 23481 0.9110 +6154 23517 0.6390 +6154 23521 0.9990 +6154 23560 0.9630 +6154 23587 0.4730 +6154 23640 0.7760 +6154 23708 0.5490 +6154 24140 0.5270 +6154 25873 0.9990 +6154 25885 0.8450 +6154 25914 0.4300 +6154 26046 0.8400 +6154 26135 0.9750 +6154 26155 0.7920 +6154 26156 0.8650 +6154 26164 0.4180 +6154 26168 0.5580 +6154 26251 0.5160 +6154 26271 0.4710 +6154 26289 0.4100 +6154 26354 0.7130 +6154 26589 0.7890 +6154 26986 0.6010 +6154 27012 0.5160 +6154 27043 0.7120 +6154 27079 0.4660 +6154 27430 0.4010 +6154 28972 0.4960 +6154 28991 0.4840 +6154 28998 0.8910 +6154 29083 0.6220 +6154 29088 0.6410 +6154 29093 0.8610 +6154 29789 0.4110 +6154 29889 0.9290 +6154 29927 0.9860 +6154 29960 0.4620 +6154 29978 0.4280 +6154 29979 0.5180 +6154 29997 0.8460 +6154 50613 0.4200 +6154 50808 0.4150 +6154 51008 0.5090 +6154 51018 0.5150 +6154 51021 0.9680 +6154 51023 0.5500 +6154 51042 0.8880 +6154 51065 0.9690 +6154 51068 0.9280 +6154 51069 0.8580 +6154 51073 0.8510 +6154 51081 0.8730 +6154 51116 0.8000 +6154 51119 0.6860 +6154 51121 0.9880 +6154 51122 0.4190 +6154 51149 0.9300 +6154 51154 0.9440 +6154 51187 0.9810 +6154 51258 0.4660 +6154 51264 0.9500 +6154 51314 0.4480 +6154 51319 0.9210 +6154 51388 0.8320 +6154 51569 0.5190 +6154 51574 0.6700 +6154 51650 0.5280 +6154 51727 0.4140 +6154 53918 0.8650 +6154 54059 0.5770 +6154 54463 0.5810 +6154 54464 0.4810 +6154 54499 0.8220 +6154 54516 0.4710 +6154 54517 0.5070 +6154 54543 0.4210 +6154 54552 0.6200 +6154 54606 0.4620 +6154 54663 0.8030 +6154 54881 0.7010 +6154 54948 0.8420 +6154 55052 0.9600 +6154 55153 0.4690 +6154 55168 0.5130 +6154 55173 0.9050 +6154 55176 0.8870 +6154 55178 0.4750 +6154 55272 0.8950 +6154 55299 0.8370 +6154 55316 0.9340 +6154 55319 0.8020 +6154 55324 0.5520 +6154 55325 0.4860 +6154 55341 0.8960 +6154 55591 0.7330 +6154 55607 0.4180 +6154 55629 0.5040 +6154 55646 0.8210 +6154 55651 0.7060 +6154 55703 0.7520 +6154 55759 0.9160 +6154 55802 0.5160 +6154 55854 0.5990 +6154 56479 0.5160 +6154 56648 0.7110 +6154 56829 0.4670 +6154 56893 0.4430 +6154 56926 0.8130 +6154 56945 0.4410 +6154 56965 0.6710 +6154 57003 0.8130 +6154 57129 0.8310 +6154 57418 0.7450 +6154 57471 0.4120 +6154 57696 0.5880 +6154 58477 0.8240 +6154 58505 0.4410 +6154 60488 0.4430 +6154 60558 0.6110 +6154 60559 0.4050 +6154 60678 0.9350 +6154 63875 0.9720 +6154 63931 0.8380 +6154 64146 0.7700 +6154 64221 0.4990 +6154 64318 0.7910 +6154 64374 0.7760 +6154 64794 0.4020 +6154 64960 0.8290 +6154 64963 0.8520 +6154 64965 0.9720 +6154 64968 0.9700 +6154 64969 0.9030 +6154 64979 0.9720 +6154 64983 0.9590 +6154 65003 0.7960 +6154 65005 0.9570 +6154 65008 0.8660 +6154 65121 0.5800 +6154 65122 0.5800 +6154 65992 0.5340 +6154 65993 0.4710 +6154 79036 0.4550 +6154 79048 0.8110 +6154 79084 0.4810 +6154 79109 0.5920 +6154 79631 0.8130 +6154 79668 0.6710 +6154 79707 0.5980 +6154 79728 0.6110 +6154 79922 0.4530 +6154 80135 0.8690 +6154 80218 0.4710 +6154 81887 0.5430 +6154 83448 0.5060 +6154 83743 0.4660 +6154 84154 0.7480 +6154 84172 0.7640 +6154 84273 0.4430 +6154 84298 0.8080 +6154 84340 0.4290 +6154 84365 0.8320 +6154 84545 0.8270 +6154 84549 0.7850 +6154 84705 0.5890 +6154 84851 0.4290 +6154 84881 0.4700 +6154 84993 0.4620 +6154 85476 0.7920 +6154 85865 0.4270 +6154 90121 0.5520 +6154 90441 0.8910 +6154 90459 0.4240 +6154 90701 0.7130 +6154 91408 0.4850 +6154 91574 0.4920 +6154 91875 0.8450 +6154 92170 0.4430 +6154 92196 0.6330 +6154 92399 0.8450 +6154 93107 0.5160 +6154 93550 0.5210 +6154 93974 0.4270 +6154 113000 0.4660 +6154 114987 0.8800 +6154 115098 0.8760 +6154 115416 0.8520 +6154 116832 0.9470 +6154 117246 0.8370 +6154 122481 0.4100 +6154 122704 0.6680 +6154 124454 0.6880 +6154 126402 0.8560 +6154 128308 0.6860 +6154 140032 0.8700 +6154 140801 0.9880 +6154 143244 0.7110 +6154 143630 0.4200 +6154 146212 0.5770 +6154 150353 0.4940 +6154 158067 0.4100 +6154 164153 0.5210 +6154 169522 0.5160 +6154 170850 0.5160 +6154 200916 0.9590 +6154 201595 0.6140 +6154 203068 0.8170 +6154 219927 0.9710 +6154 221078 0.6000 +6154 221264 0.4100 +6154 253260 0.6030 +6154 254268 0.9280 +6154 255308 0.4060 +6154 283518 0.5160 +6154 284106 0.4400 +6154 285367 0.4660 +6154 285855 0.9500 +6154 342538 0.9300 +6154 343068 0.5800 +6154 343070 0.5800 +6154 347487 0.9270 +6154 374659 0.7730 +6154 387129 0.8580 +6154 390999 0.5800 +6154 391002 0.5800 +6154 400735 0.5800 +6154 400736 0.5800 +6154 440560 0.5800 +6154 440561 0.5800 +6154 441873 0.5800 +6154 641776 0.6890 +6154 643909 0.6890 +6154 645051 0.6430 +6154 645073 0.6430 +6154 645359 0.5800 +6154 653619 0.5800 +6154 654364 0.4220 +6154 728524 0.6890 +6154 729396 0.6430 +6154 729422 0.6430 +6154 729428 0.6430 +6154 729431 0.6430 +6154 729442 0.6430 +6154 729447 0.6430 +6154 729528 0.5800 +6154 100008586 0.6430 +6154 100128731 0.4450 +6154 100130890 0.4990 +6154 100131187 0.4990 +6154 100132399 0.6430 +6154 100287482 0.7700 +6154 100505478 0.8050 +6154 100526842 0.9880 +6154 100529097 0.8660 +6154 100529239 0.9890 +6154 100996746 0.6890 +6154 101929983 0.5800 +6154 102724473 0.6430 +6154 105180390 0.6890 +6154 105180391 0.6890 +6154 114483834 0.5650 +6155 6156 0.9990 +6155 6157 0.9990 +6155 6158 0.9990 +6155 6159 0.9990 +6155 6160 0.9990 +6155 6161 0.9990 +6155 6164 0.9990 +6155 6165 0.9990 +6155 6166 0.9950 +6155 6167 0.9990 +6155 6168 0.9990 +6155 6169 0.9990 +6155 6170 0.9990 +6155 6171 0.8830 +6155 6173 0.9970 +6155 6175 0.9990 +6155 6176 0.9990 +6155 6181 0.9990 +6155 6183 0.8320 +6155 6184 0.5200 +6155 6187 0.9990 +6155 6188 0.9990 +6155 6189 0.9990 +6155 6191 0.9990 +6155 6192 0.9930 +6155 6193 0.9990 +6155 6194 0.9990 +6155 6201 0.9990 +6155 6202 0.9990 +6155 6203 0.9990 +6155 6204 0.9990 +6155 6205 0.9990 +6155 6206 0.9990 +6155 6207 0.9990 +6155 6208 0.9990 +6155 6209 0.9990 +6155 6210 0.9990 +6155 6217 0.9990 +6155 6218 0.9990 +6155 6222 0.9990 +6155 6223 0.9990 +6155 6224 0.9990 +6155 6227 0.9990 +6155 6228 0.9990 +6155 6229 0.9990 +6155 6230 0.9990 +6155 6231 0.9990 +6155 6232 0.9990 +6155 6233 0.9990 +6155 6234 0.9990 +6155 6235 0.9990 +6155 6238 0.4920 +6155 6499 0.4660 +6155 6633 0.7540 +6155 6635 0.6070 +6155 6637 0.5990 +6155 6726 0.8990 +6155 6727 0.9370 +6155 6728 0.9010 +6155 6729 0.9070 +6155 6730 0.9150 +6155 6731 0.9020 +6155 6734 0.8150 +6155 6741 0.4390 +6155 6924 0.5200 +6155 6950 0.5280 +6155 7178 0.9070 +6155 7203 0.5510 +6155 7311 0.9990 +6155 7314 0.5910 +6155 7316 0.6130 +6155 7388 0.4010 +6155 7458 0.4390 +6155 7494 0.8130 +6155 7555 0.4480 +6155 7866 0.7590 +6155 7919 0.4410 +6155 8034 0.4470 +6155 8189 0.4160 +6155 8260 0.6060 +6155 8266 0.6550 +6155 8568 0.5330 +6155 8607 0.5600 +6155 8638 0.5530 +6155 8661 0.4710 +6155 8662 0.7470 +6155 8663 0.4190 +6155 8664 0.6020 +6155 8665 0.7370 +6155 8666 0.6280 +6155 8667 0.4280 +6155 8668 0.8080 +6155 8721 0.8940 +6155 8886 0.8750 +6155 8894 0.7720 +6155 9045 0.9990 +6155 9132 0.4890 +6155 9141 0.6950 +6155 9147 0.8130 +6155 9255 0.4120 +6155 9312 0.4890 +6155 9343 0.7010 +6155 9349 0.9990 +6155 9377 0.4140 +6155 9584 0.4520 +6155 9636 0.5450 +6155 9652 0.5020 +6155 9669 0.9590 +6155 9732 0.8860 +6155 9775 0.4580 +6155 9789 0.4900 +6155 9858 0.6650 +6155 9908 0.4490 +6155 9933 0.4300 +6155 10146 0.4930 +6155 10200 0.4210 +6155 10213 0.4970 +6155 10236 0.5020 +6155 10399 0.9990 +6155 10412 0.9520 +6155 10430 0.8240 +6155 10438 0.6620 +6155 10473 0.8140 +6155 10476 0.4380 +6155 10480 0.8050 +6155 10492 0.6550 +6155 10537 0.5280 +6155 10557 0.6630 +6155 10574 0.8000 +6155 10575 0.8060 +6155 10576 0.7870 +6155 10594 0.4950 +6155 10664 0.4320 +6155 10694 0.6880 +6155 10726 0.4660 +6155 10767 0.8580 +6155 10952 0.9520 +6155 10969 0.9010 +6155 10985 0.8770 +6155 10988 0.5470 +6155 10992 0.4540 +6155 11079 0.4030 +6155 11222 0.8050 +6155 11224 0.9990 +6155 22894 0.4420 +6155 22927 0.8240 +6155 22948 0.7260 +6155 23076 0.6530 +6155 23148 0.6040 +6155 23173 0.4660 +6155 23204 0.9420 +6155 23212 0.5750 +6155 23246 0.9750 +6155 23478 0.5570 +6155 23480 0.9090 +6155 23481 0.9480 +6155 23517 0.6830 +6155 23521 0.9990 +6155 23560 0.9770 +6155 23640 0.6250 +6155 23708 0.5510 +6155 25873 0.9990 +6155 25914 0.5090 +6155 26046 0.8120 +6155 26135 0.9850 +6155 26155 0.8920 +6155 26156 0.9010 +6155 26168 0.5380 +6155 26251 0.4890 +6155 26354 0.8140 +6155 26986 0.5360 +6155 27000 0.5210 +6155 27012 0.4890 +6155 27043 0.5830 +6155 27089 0.4670 +6155 27335 0.4040 +6155 28972 0.4880 +6155 28991 0.4920 +6155 28998 0.7390 +6155 29088 0.5730 +6155 29093 0.8590 +6155 29889 0.9120 +6155 29927 0.9060 +6155 29978 0.4380 +6155 29979 0.4700 +6155 29997 0.8920 +6155 50613 0.4290 +6155 51042 0.9010 +6155 51065 0.9860 +6155 51068 0.9130 +6155 51069 0.8000 +6155 51073 0.7410 +6155 51081 0.8390 +6155 51116 0.7110 +6155 51119 0.7190 +6155 51121 0.9990 +6155 51149 0.9010 +6155 51154 0.9530 +6155 51187 0.9880 +6155 51224 0.5130 +6155 51319 0.9100 +6155 51372 0.4530 +6155 51386 0.5380 +6155 51388 0.9000 +6155 51398 0.5300 +6155 51574 0.5310 +6155 53918 0.8930 +6155 54463 0.4830 +6155 54464 0.4430 +6155 54475 0.4620 +6155 54499 0.8320 +6155 54543 0.6960 +6155 54552 0.8000 +6155 54663 0.5080 +6155 54881 0.7190 +6155 54948 0.6720 +6155 55139 0.4360 +6155 55153 0.5150 +6155 55173 0.8190 +6155 55176 0.5250 +6155 55272 0.8160 +6155 55299 0.8980 +6155 55316 0.9220 +6155 55319 0.8010 +6155 55324 0.4520 +6155 55341 0.9870 +6155 55505 0.4240 +6155 55591 0.4430 +6155 55629 0.5170 +6155 55646 0.8170 +6155 55651 0.7200 +6155 55759 0.9610 +6155 55802 0.5110 +6155 55854 0.5810 +6155 55969 0.4710 +6155 56479 0.4890 +6155 56648 0.8340 +6155 56893 0.4480 +6155 56926 0.8170 +6155 56965 0.5450 +6155 57003 0.8170 +6155 57418 0.7490 +6155 57696 0.5340 +6155 58477 0.8190 +6155 58505 0.5600 +6155 60386 0.5720 +6155 60559 0.4120 +6155 60678 0.9120 +6155 63931 0.7940 +6155 64221 0.5160 +6155 64318 0.8580 +6155 64374 0.6280 +6155 64960 0.7840 +6155 64963 0.8030 +6155 64969 0.8460 +6155 65003 0.7260 +6155 65008 0.8030 +6155 65121 0.5540 +6155 65122 0.5540 +6155 79036 0.5230 +6155 79048 0.8070 +6155 79159 0.5060 +6155 79590 0.8060 +6155 79631 0.6540 +6155 79668 0.5440 +6155 79707 0.5110 +6155 80135 0.8740 +6155 80218 0.5570 +6155 80349 0.4540 +6155 81875 0.4240 +6155 81887 0.5110 +6155 84154 0.7420 +6155 84298 0.8020 +6155 84365 0.9210 +6155 84549 0.8580 +6155 84993 0.4620 +6155 85476 0.6520 +6155 90121 0.6850 +6155 90441 0.8980 +6155 90459 0.4080 +6155 90701 0.4160 +6155 91408 0.5420 +6155 91875 0.8220 +6155 92196 0.8080 +6155 93107 0.4890 +6155 93550 0.5280 +6155 114987 0.8740 +6155 115098 0.8670 +6155 116832 0.9790 +6155 117246 0.9070 +6155 124454 0.5960 +6155 126402 0.8360 +6155 137994 0.4600 +6155 140032 0.9480 +6155 140801 0.9960 +6155 143244 0.8340 +6155 143630 0.4290 +6155 146212 0.5200 +6155 164153 0.5280 +6155 169522 0.4890 +6155 170622 0.4180 +6155 170850 0.4890 +6155 200916 0.9830 +6155 201595 0.7900 +6155 203068 0.8330 +6155 203427 0.4470 +6155 221078 0.7890 +6155 254268 0.9180 +6155 283518 0.4890 +6155 283600 0.4470 +6155 285855 0.9810 +6155 342538 0.9260 +6155 343068 0.5540 +6155 343070 0.5540 +6155 345630 0.8740 +6155 347487 0.9180 +6155 387129 0.8300 +6155 390999 0.5540 +6155 391002 0.5540 +6155 400735 0.5540 +6155 400736 0.5540 +6155 440560 0.5540 +6155 440561 0.5540 +6155 441873 0.5540 +6155 641776 0.6590 +6155 643909 0.6590 +6155 645051 0.6620 +6155 645073 0.6700 +6155 645359 0.5540 +6155 653619 0.5540 +6155 654364 0.4350 +6155 728378 0.4320 +6155 728524 0.6590 +6155 729396 0.6620 +6155 729422 0.6620 +6155 729428 0.6620 +6155 729431 0.6620 +6155 729442 0.6620 +6155 729447 0.6620 +6155 729528 0.5540 +6155 100008586 0.6700 +6155 100128731 0.6170 +6155 100132399 0.6620 +6155 100287482 0.6650 +6155 100288687 0.4180 +6155 100505478 0.7070 +6155 100526842 0.9950 +6155 100527943 0.4560 +6155 100529097 0.9460 +6155 100529239 0.9950 +6155 100996746 0.6590 +6155 101929983 0.5540 +6155 102724473 0.6620 +6155 105180390 0.6590 +6155 105180391 0.6590 +6155 114483834 0.4030 +6156 6157 0.9990 +6156 6158 0.9990 +6156 6159 0.9990 +6156 6160 0.9990 +6156 6161 0.9990 +6156 6164 0.9990 +6156 6165 0.9990 +6156 6166 0.9990 +6156 6167 0.9990 +6156 6168 0.9990 +6156 6169 0.9990 +6156 6170 0.9990 +6156 6171 0.9770 +6156 6173 0.9990 +6156 6175 0.9990 +6156 6176 0.9990 +6156 6181 0.9990 +6156 6183 0.9820 +6156 6184 0.5140 +6156 6187 0.9990 +6156 6188 0.9990 +6156 6189 0.9990 +6156 6191 0.9990 +6156 6192 0.9920 +6156 6193 0.9990 +6156 6194 0.9990 +6156 6201 0.9990 +6156 6202 0.9990 +6156 6203 0.9990 +6156 6204 0.9990 +6156 6205 0.9990 +6156 6206 0.9990 +6156 6207 0.9990 +6156 6208 0.9990 +6156 6209 0.9990 +6156 6210 0.9990 +6156 6217 0.9990 +6156 6218 0.9990 +6156 6222 0.9990 +6156 6223 0.9990 +6156 6224 0.9990 +6156 6227 0.9990 +6156 6228 0.9990 +6156 6229 0.9990 +6156 6230 0.9990 +6156 6231 0.9990 +6156 6232 0.9990 +6156 6233 0.9990 +6156 6234 0.9990 +6156 6235 0.9990 +6156 6301 0.4200 +6156 6499 0.5110 +6156 6633 0.5130 +6156 6635 0.8410 +6156 6637 0.4830 +6156 6726 0.8940 +6156 6727 0.9210 +6156 6728 0.9040 +6156 6729 0.8910 +6156 6730 0.9010 +6156 6731 0.9030 +6156 6734 0.8160 +6156 6780 0.5960 +6156 6924 0.5290 +6156 6940 0.4300 +6156 6950 0.4040 +6156 7011 0.4080 +6156 7178 0.9690 +6156 7264 0.5600 +6156 7270 0.4220 +6156 7311 0.9990 +6156 7314 0.6780 +6156 7316 0.7040 +6156 7415 0.4810 +6156 7458 0.4130 +6156 7494 0.8120 +6156 7534 0.4460 +6156 7555 0.6800 +6156 7866 0.7520 +6156 7919 0.4810 +6156 8034 0.4380 +6156 8260 0.7050 +6156 8266 0.7300 +6156 8290 0.4510 +6156 8356 0.4600 +6156 8568 0.5330 +6156 8607 0.5320 +6156 8638 0.6300 +6156 8662 0.6090 +6156 8665 0.6150 +6156 8666 0.6090 +6156 8667 0.9190 +6156 8668 0.8060 +6156 8721 0.9070 +6156 8886 0.9120 +6156 8894 0.7100 +6156 9045 0.9990 +6156 9132 0.5760 +6156 9141 0.8520 +6156 9147 0.8290 +6156 9188 0.5240 +6156 9312 0.5760 +6156 9343 0.9240 +6156 9349 0.9990 +6156 9401 0.5110 +6156 9584 0.5190 +6156 9636 0.6570 +6156 9652 0.5790 +6156 9669 0.9570 +6156 9698 0.4160 +6156 9732 0.9540 +6156 9775 0.6410 +6156 9789 0.4550 +6156 9858 0.8990 +6156 9933 0.4810 +6156 10061 0.4650 +6156 10200 0.4250 +6156 10209 0.4530 +6156 10213 0.4510 +6156 10236 0.4280 +6156 10399 0.9990 +6156 10412 0.9960 +6156 10430 0.8240 +6156 10438 0.7120 +6156 10473 0.9060 +6156 10480 0.5740 +6156 10492 0.5120 +6156 10514 0.4760 +6156 10526 0.4600 +6156 10528 0.6640 +6156 10537 0.6300 +6156 10557 0.8430 +6156 10574 0.5300 +6156 10575 0.6550 +6156 10576 0.5190 +6156 10632 0.4070 +6156 10694 0.5310 +6156 10767 0.8870 +6156 10952 0.9240 +6156 10969 0.9220 +6156 10985 0.8940 +6156 10988 0.6160 +6156 11222 0.9690 +6156 11224 0.9990 +6156 22894 0.4690 +6156 22927 0.8520 +6156 22928 0.4290 +6156 22948 0.4950 +6156 23029 0.5350 +6156 23076 0.6570 +6156 23148 0.6280 +6156 23173 0.5360 +6156 23185 0.9010 +6156 23195 0.4360 +6156 23204 0.9490 +6156 23212 0.7270 +6156 23246 0.9490 +6156 23378 0.4200 +6156 23478 0.4690 +6156 23480 0.8940 +6156 23481 0.9370 +6156 23517 0.7440 +6156 23521 0.9990 +6156 23560 0.9800 +6156 23640 0.7980 +6156 23708 0.5200 +6156 24140 0.5810 +6156 25873 0.9990 +6156 25914 0.4290 +6156 26046 0.8120 +6156 26135 0.9870 +6156 26155 0.8700 +6156 26156 0.9120 +6156 26168 0.5260 +6156 26251 0.5760 +6156 26354 0.8010 +6156 26986 0.4730 +6156 27000 0.4880 +6156 27012 0.5760 +6156 27043 0.6400 +6156 27335 0.4350 +6156 27430 0.5670 +6156 28972 0.4660 +6156 28991 0.5780 +6156 28998 0.9530 +6156 29088 0.6800 +6156 29093 0.9500 +6156 29889 0.9450 +6156 29927 0.8900 +6156 29960 0.5930 +6156 29978 0.5800 +6156 29979 0.6490 +6156 29997 0.9750 +6156 50613 0.5730 +6156 50814 0.5590 +6156 51001 0.4180 +6156 51042 0.9140 +6156 51065 0.9810 +6156 51068 0.9480 +6156 51069 0.9490 +6156 51073 0.9500 +6156 51081 0.9640 +6156 51091 0.4400 +6156 51116 0.9040 +6156 51119 0.5760 +6156 51121 0.9980 +6156 51149 0.9760 +6156 51154 0.9800 +6156 51187 0.9930 +6156 51224 0.5220 +6156 51319 0.9460 +6156 51333 0.4160 +6156 51388 0.9500 +6156 51398 0.5290 +6156 51585 0.4110 +6156 51602 0.9730 +6156 51720 0.4050 +6156 53918 0.8820 +6156 54463 0.4950 +6156 54464 0.7370 +6156 54475 0.6480 +6156 54499 0.8240 +6156 54543 0.5670 +6156 54552 0.7980 +6156 54606 0.6040 +6156 54663 0.5720 +6156 54881 0.7520 +6156 54888 0.4120 +6156 54948 0.8000 +6156 54952 0.5290 +6156 55003 0.4580 +6156 55139 0.5130 +6156 55153 0.5820 +6156 55173 0.9830 +6156 55176 0.4420 +6156 55272 0.9750 +6156 55299 0.9230 +6156 55316 0.9750 +6156 55319 0.8000 +6156 55341 0.9020 +6156 55505 0.4490 +6156 55591 0.5200 +6156 55629 0.5220 +6156 55646 0.8840 +6156 55651 0.8620 +6156 55695 0.4070 +6156 55759 0.9300 +6156 55802 0.5320 +6156 55854 0.6720 +6156 55893 0.4140 +6156 55969 0.4480 +6156 56479 0.5760 +6156 56648 0.9390 +6156 56829 0.6170 +6156 56893 0.5870 +6156 56926 0.8170 +6156 56943 0.5160 +6156 56965 0.6860 +6156 57003 0.8250 +6156 57062 0.5140 +6156 57109 0.4140 +6156 57418 0.7660 +6156 57532 0.7430 +6156 57696 0.8250 +6156 58477 0.8180 +6156 58505 0.5300 +6156 60386 0.4260 +6156 60559 0.4320 +6156 60678 0.9640 +6156 63899 0.4040 +6156 63931 0.9490 +6156 64221 0.5110 +6156 64282 0.4740 +6156 64318 0.8620 +6156 64374 0.8000 +6156 64412 0.4350 +6156 64794 0.4120 +6156 64960 0.9480 +6156 64963 0.9430 +6156 64969 0.9730 +6156 65003 0.9030 +6156 65008 0.9510 +6156 65083 0.9570 +6156 65121 0.6710 +6156 65122 0.6710 +6156 79009 0.4090 +6156 79036 0.5160 +6156 79039 0.4080 +6156 79048 0.9390 +6156 79137 0.4240 +6156 79159 0.7970 +6156 79590 0.9680 +6156 79612 0.4290 +6156 79631 0.9140 +6156 79668 0.6860 +6156 79707 0.5040 +6156 79730 0.4040 +6156 80135 0.9380 +6156 80146 0.5520 +6156 80155 0.5080 +6156 80218 0.6310 +6156 80270 0.5670 +6156 80349 0.5200 +6156 81875 0.4280 +6156 81887 0.5300 +6156 84154 0.8880 +6156 84172 0.4200 +6156 84273 0.4750 +6156 84298 0.8940 +6156 84365 0.9580 +6156 84549 0.9180 +6156 84779 0.5080 +6156 84851 0.5200 +6156 84872 0.4790 +6156 84993 0.5980 +6156 85476 0.9200 +6156 90441 0.8990 +6156 90459 0.4890 +6156 90701 0.4240 +6156 91408 0.5950 +6156 91875 0.8240 +6156 92170 0.4400 +6156 92196 0.8080 +6156 93107 0.5760 +6156 93517 0.6500 +6156 93550 0.6300 +6156 114987 0.9760 +6156 115098 0.8840 +6156 116832 0.9810 +6156 117246 0.9560 +6156 118672 0.5060 +6156 120892 0.5350 +6156 124454 0.8860 +6156 126402 0.9630 +6156 137994 0.4290 +6156 140032 0.9610 +6156 140801 0.9980 +6156 143244 0.9390 +6156 143630 0.5730 +6156 146212 0.6780 +6156 149041 0.5100 +6156 152518 0.4290 +6156 162427 0.4210 +6156 164153 0.6300 +6156 169522 0.5760 +6156 170850 0.5760 +6156 200916 0.9840 +6156 201595 0.7910 +6156 203068 0.8610 +6156 203427 0.4250 +6156 221078 0.7670 +6156 254268 0.9560 +6156 283518 0.5760 +6156 283600 0.4250 +6156 285855 0.9850 +6156 342538 0.9170 +6156 343068 0.6710 +6156 343070 0.6710 +6156 347487 0.9790 +6156 387129 0.9450 +6156 387338 0.5110 +6156 390999 0.6710 +6156 391002 0.6710 +6156 400735 0.6710 +6156 400736 0.6710 +6156 440093 0.4610 +6156 440560 0.6710 +6156 440561 0.6710 +6156 440686 0.4570 +6156 441873 0.6710 +6156 641776 0.8200 +6156 642489 0.4570 +6156 643836 0.4280 +6156 643909 0.8200 +6156 645051 0.7850 +6156 645073 0.7850 +6156 645359 0.6710 +6156 653604 0.4620 +6156 653619 0.6710 +6156 728524 0.8200 +6156 729396 0.7850 +6156 729422 0.7850 +6156 729428 0.7850 +6156 729431 0.7850 +6156 729442 0.7850 +6156 729447 0.7850 +6156 729528 0.6710 +6156 100008586 0.7850 +6156 100128731 0.5550 +6156 100132399 0.7850 +6156 100287482 0.8990 +6156 100505478 0.9350 +6156 100526842 0.9940 +6156 100527943 0.4290 +6156 100529097 0.9610 +6156 100529239 0.9940 +6156 100996746 0.8200 +6156 101929983 0.6710 +6156 102724473 0.7850 +6156 105180390 0.8200 +6156 105180391 0.8200 +6156 114483834 0.4760 +6157 6158 0.9990 +6157 6159 0.9990 +6157 6160 0.9990 +6157 6161 0.9990 +6157 6164 0.9990 +6157 6165 0.9990 +6157 6166 0.9980 +6157 6167 0.9990 +6157 6168 0.9990 +6157 6169 0.9990 +6157 6170 0.9980 +6157 6171 0.7490 +6157 6173 0.9980 +6157 6175 0.9990 +6157 6176 0.9990 +6157 6181 0.9990 +6157 6182 0.7480 +6157 6183 0.6200 +6157 6184 0.5140 +6157 6187 0.9990 +6157 6188 0.9990 +6157 6189 0.9990 +6157 6191 0.9990 +6157 6192 0.9930 +6157 6193 0.9990 +6157 6194 0.9990 +6157 6201 0.9990 +6157 6202 0.9990 +6157 6203 0.9990 +6157 6204 0.9990 +6157 6205 0.9990 +6157 6206 0.9990 +6157 6207 0.9990 +6157 6208 0.9990 +6157 6209 0.9990 +6157 6210 0.9990 +6157 6217 0.9990 +6157 6218 0.9990 +6157 6222 0.9990 +6157 6223 0.9990 +6157 6224 0.9990 +6157 6227 0.9990 +6157 6228 0.9990 +6157 6229 0.9990 +6157 6230 0.9990 +6157 6231 0.9990 +6157 6232 0.9990 +6157 6233 0.9990 +6157 6234 0.9990 +6157 6235 0.9990 +6157 6499 0.5080 +6157 6726 0.8860 +6157 6727 0.8740 +6157 6728 0.8900 +6157 6729 0.9140 +6157 6730 0.8910 +6157 6731 0.8720 +6157 6734 0.8820 +6157 6924 0.5320 +6157 6950 0.4660 +6157 7178 0.9540 +6157 7203 0.4720 +6157 7277 0.4330 +6157 7278 0.4260 +6157 7284 0.7370 +6157 7311 0.9990 +6157 7314 0.6310 +6157 7316 0.6090 +6157 7372 0.4370 +6157 7407 0.4420 +6157 7415 0.4730 +6157 7458 0.5490 +6157 7494 0.8000 +6157 7818 0.5550 +6157 7866 0.6400 +6157 7919 0.4650 +6157 8034 0.4240 +6157 8225 0.4180 +6157 8260 0.6900 +6157 8266 0.7000 +6157 8607 0.6570 +6157 8624 0.5420 +6157 8638 0.5900 +6157 8661 0.4620 +6157 8662 0.7580 +6157 8665 0.7190 +6157 8666 0.6130 +6157 8667 0.4330 +6157 8668 0.7310 +6157 8721 0.8800 +6157 8886 0.9080 +6157 8894 0.7370 +6157 9045 0.9990 +6157 9086 0.4510 +6157 9147 0.8330 +6157 9168 0.4370 +6157 9255 0.4970 +6157 9343 0.7110 +6157 9349 0.9990 +6157 9369 0.4180 +6157 9521 0.4550 +6157 9533 0.5470 +6157 9553 0.7350 +6157 9584 0.5350 +6157 9636 0.5930 +6157 9652 0.5490 +6157 9669 0.9710 +6157 9732 0.9710 +6157 9775 0.4310 +6157 9789 0.4330 +6157 9801 0.6800 +6157 9858 0.5390 +6157 10061 0.5170 +6157 10102 0.4380 +6157 10200 0.4520 +6157 10213 0.4170 +6157 10236 0.5060 +6157 10240 0.4230 +6157 10399 0.9990 +6157 10412 0.8870 +6157 10430 0.8230 +6157 10432 0.4140 +6157 10438 0.6910 +6157 10471 0.4570 +6157 10473 0.9080 +6157 10480 0.7370 +6157 10492 0.6340 +6157 10537 0.5900 +6157 10557 0.5040 +6157 10574 0.6950 +6157 10575 0.6810 +6157 10576 0.6660 +6157 10606 0.4830 +6157 10666 0.4160 +6157 10694 0.6660 +6157 10726 0.4690 +6157 10767 0.8880 +6157 10952 0.9250 +6157 10969 0.9230 +6157 10985 0.8990 +6157 10988 0.5280 +6157 11128 0.5410 +6157 11165 0.4860 +6157 11222 0.6070 +6157 11224 0.9990 +6157 22894 0.4020 +6157 22927 0.8420 +6157 22948 0.6500 +6157 22984 0.7080 +6157 23017 0.4160 +6157 23160 0.4170 +6157 23173 0.4300 +6157 23195 0.4290 +6157 23204 0.9670 +6157 23212 0.6660 +6157 23246 0.9350 +6157 23405 0.4120 +6157 23478 0.4250 +6157 23480 0.8720 +6157 23481 0.9570 +6157 23517 0.6980 +6157 23521 0.9990 +6157 23523 0.4370 +6157 23560 0.9700 +6157 23640 0.5470 +6157 23708 0.5470 +6157 23788 0.4100 +6157 25873 0.9990 +6157 25885 0.5910 +6157 25914 0.5150 +6157 26046 0.8140 +6157 26135 0.9900 +6157 26155 0.4680 +6157 26156 0.8750 +6157 26168 0.5210 +6157 26354 0.7720 +6157 26589 0.5500 +6157 26986 0.6130 +6157 27043 0.5690 +6157 27161 0.5300 +6157 28972 0.4110 +6157 28991 0.5270 +6157 28998 0.7260 +6157 29093 0.6560 +6157 29889 0.9570 +6157 29927 0.9230 +6157 29978 0.4140 +6157 29997 0.9680 +6157 50487 0.4160 +6157 51021 0.7260 +6157 51023 0.5590 +6157 51042 0.9250 +6157 51065 0.9900 +6157 51068 0.9260 +6157 51069 0.6400 +6157 51073 0.6910 +6157 51081 0.9380 +6157 51086 0.5030 +6157 51116 0.5660 +6157 51119 0.4020 +6157 51121 0.9970 +6157 51149 0.9760 +6157 51154 0.9480 +6157 51187 0.9900 +6157 51224 0.5240 +6157 51258 0.4460 +6157 51263 0.5130 +6157 51264 0.6880 +6157 51277 0.5350 +6157 51319 0.9740 +6157 51388 0.8760 +6157 51398 0.4400 +6157 51720 0.4940 +6157 53918 0.8800 +6157 54148 0.5160 +6157 54463 0.5050 +6157 54464 0.5440 +6157 54475 0.5280 +6157 54499 0.8170 +6157 54552 0.7980 +6157 54596 0.4830 +6157 54802 0.4320 +6157 54814 0.4480 +6157 54881 0.7720 +6157 54948 0.6430 +6157 54958 0.5710 +6157 55052 0.7470 +6157 55122 0.4980 +6157 55139 0.5140 +6157 55153 0.5520 +6157 55168 0.5720 +6157 55173 0.6260 +6157 55176 0.6130 +6157 55239 0.4740 +6157 55272 0.6260 +6157 55299 0.8720 +6157 55316 0.9730 +6157 55319 0.8000 +6157 55324 0.4020 +6157 55341 0.8970 +6157 55591 0.4090 +6157 55629 0.5090 +6157 55646 0.8120 +6157 55651 0.5200 +6157 55703 0.5660 +6157 55759 0.9420 +6157 55802 0.5820 +6157 55854 0.7520 +6157 55893 0.4210 +6157 56648 0.8590 +6157 56731 0.4270 +6157 56926 0.8230 +6157 57003 0.8160 +6157 57129 0.6140 +6157 57418 0.8000 +6157 57507 0.5060 +6157 58477 0.8170 +6157 58505 0.5200 +6157 60386 0.4250 +6157 60488 0.5420 +6157 60559 0.5100 +6157 60678 0.9190 +6157 63875 0.7320 +6157 63931 0.5870 +6157 64146 0.4180 +6157 64221 0.4990 +6157 64318 0.8670 +6157 64374 0.5500 +6157 64960 0.5830 +6157 64963 0.5860 +6157 64965 0.7360 +6157 64968 0.7140 +6157 64969 0.6230 +6157 64975 0.5410 +6157 64976 0.5590 +6157 64978 0.4240 +6157 64979 0.7220 +6157 64981 0.5030 +6157 64983 0.7400 +6157 65003 0.6400 +6157 65005 0.7480 +6157 65008 0.6560 +6157 65080 0.4670 +6157 65993 0.4820 +6157 79029 0.4200 +6157 79047 0.4340 +6157 79048 0.8000 +6157 79590 0.6460 +6157 79612 0.4290 +6157 79631 0.5670 +6157 79697 0.6570 +6157 79707 0.5040 +6157 80135 0.5670 +6157 80155 0.4770 +6157 80218 0.6520 +6157 80349 0.5370 +6157 81875 0.4600 +6157 81887 0.5060 +6157 84154 0.6970 +6157 84172 0.5680 +6157 84298 0.8020 +6157 84311 0.4060 +6157 84365 0.9440 +6157 84545 0.4540 +6157 84549 0.4640 +6157 84705 0.4400 +6157 84779 0.4390 +6157 84851 0.5150 +6157 84864 0.8600 +6157 85437 0.4070 +6157 85476 0.5790 +6157 89866 0.4710 +6157 90441 0.9010 +6157 90459 0.4120 +6157 90701 0.4050 +6157 91875 0.8280 +6157 92196 0.5070 +6157 92399 0.6490 +6157 93550 0.6090 +6157 114801 0.4660 +6157 114987 0.9650 +6157 115098 0.8870 +6157 115416 0.4830 +6157 116541 0.4150 +6157 116832 0.9860 +6157 117246 0.8660 +6157 124454 0.5140 +6157 126402 0.9360 +6157 128308 0.4380 +6157 129450 0.4470 +6157 129787 0.5000 +6157 132789 0.4480 +6157 134359 0.4790 +6157 140032 0.9540 +6157 140801 0.9980 +6157 143244 0.8550 +6157 146212 0.7660 +6157 147011 0.4160 +6157 149041 0.5320 +6157 152518 0.4290 +6157 154288 0.4160 +6157 158038 0.4500 +6157 164153 0.5900 +6157 166378 0.4160 +6157 200916 0.9840 +6157 201595 0.8060 +6157 203068 0.8450 +6157 203427 0.4240 +6157 219402 0.5310 +6157 219927 0.6970 +6157 221078 0.7670 +6157 221710 0.4120 +6157 254268 0.9710 +6157 283600 0.4240 +6157 284106 0.5290 +6157 285855 0.9800 +6157 342538 0.8690 +6157 347487 0.9740 +6157 374659 0.4420 +6157 387129 0.9380 +6157 619279 0.4160 +6157 641776 0.7990 +6157 642987 0.4160 +6157 643909 0.7990 +6157 645051 0.6270 +6157 645073 0.6270 +6157 728524 0.7990 +6157 729396 0.6270 +6157 729422 0.6270 +6157 729428 0.6270 +6157 729431 0.6270 +6157 729442 0.6270 +6157 729447 0.6270 +6157 100008586 0.6270 +6157 100128731 0.5970 +6157 100132399 0.6270 +6157 100287482 0.5390 +6157 100505478 0.5600 +6157 100526835 0.5280 +6157 100526842 0.9940 +6157 100529097 0.9620 +6157 100529239 0.9940 +6157 100996746 0.7990 +6157 102724473 0.6270 +6157 105180390 0.7990 +6157 105180391 0.7990 +6157 114483834 0.5300 +6158 6159 0.9990 +6158 6160 0.9990 +6158 6161 0.9990 +6158 6164 0.9990 +6158 6165 0.9990 +6158 6166 0.9940 +6158 6167 0.9990 +6158 6168 0.9990 +6158 6169 0.9990 +6158 6170 0.9970 +6158 6173 0.9960 +6158 6175 0.9990 +6158 6176 0.9990 +6158 6181 0.9990 +6158 6183 0.9500 +6158 6184 0.5140 +6158 6187 0.9990 +6158 6188 0.9990 +6158 6189 0.9990 +6158 6191 0.9980 +6158 6192 0.9890 +6158 6193 0.9990 +6158 6194 0.9990 +6158 6201 0.9990 +6158 6202 0.9990 +6158 6203 0.9990 +6158 6204 0.9990 +6158 6205 0.9990 +6158 6206 0.9990 +6158 6207 0.9990 +6158 6208 0.9990 +6158 6209 0.9990 +6158 6210 0.9980 +6158 6217 0.9990 +6158 6218 0.9990 +6158 6222 0.9990 +6158 6223 0.9990 +6158 6224 0.9990 +6158 6227 0.9990 +6158 6228 0.9990 +6158 6229 0.9990 +6158 6230 0.9990 +6158 6231 0.9990 +6158 6232 0.9980 +6158 6233 0.9980 +6158 6234 0.9990 +6158 6235 0.9990 +6158 6635 0.4220 +6158 6726 0.8780 +6158 6727 0.8560 +6158 6728 0.8670 +6158 6729 0.8610 +6158 6730 0.8800 +6158 6731 0.8710 +6158 6734 0.8250 +6158 6923 0.4260 +6158 6950 0.4450 +6158 7178 0.8660 +6158 7203 0.4400 +6158 7264 0.5210 +6158 7311 0.9990 +6158 7314 0.5920 +6158 7316 0.6070 +6158 7458 0.4430 +6158 7494 0.8030 +6158 7866 0.7550 +6158 8034 0.4390 +6158 8260 0.4900 +6158 8266 0.6850 +6158 8607 0.4930 +6158 8638 0.5710 +6158 8661 0.4400 +6158 8662 0.6610 +6158 8663 0.4940 +6158 8664 0.5680 +6158 8665 0.6690 +6158 8666 0.6470 +6158 8667 0.4980 +6158 8668 0.7310 +6158 8721 0.6030 +6158 8894 0.7220 +6158 9045 0.9990 +6158 9132 0.4700 +6158 9147 0.8030 +6158 9312 0.4700 +6158 9343 0.7920 +6158 9349 0.9990 +6158 9401 0.5260 +6158 9636 0.5740 +6158 9669 0.6290 +6158 9732 0.9760 +6158 9775 0.6820 +6158 9789 0.4180 +6158 9858 0.8570 +6158 9928 0.4160 +6158 10200 0.4160 +6158 10236 0.4450 +6158 10399 0.9990 +6158 10430 0.8190 +6158 10438 0.4530 +6158 10473 0.8900 +6158 10476 0.4650 +6158 10480 0.5810 +6158 10492 0.5250 +6158 10537 0.5710 +6158 10557 0.7530 +6158 10574 0.6890 +6158 10575 0.7600 +6158 10576 0.6510 +6158 10664 0.4600 +6158 10666 0.4100 +6158 10694 0.6380 +6158 10767 0.8010 +6158 10952 0.9090 +6158 10985 0.5250 +6158 10988 0.4090 +6158 11222 0.9230 +6158 11224 0.9990 +6158 22894 0.4550 +6158 22927 0.8260 +6158 22948 0.6360 +6158 23148 0.6460 +6158 23204 0.9370 +6158 23246 0.5940 +6158 23476 0.5190 +6158 23478 0.4380 +6158 23480 0.8450 +6158 23481 0.5380 +6158 23517 0.4100 +6158 23521 0.9990 +6158 23560 0.8220 +6158 23582 0.4970 +6158 23640 0.7770 +6158 23708 0.5010 +6158 25873 0.9990 +6158 25914 0.4590 +6158 26046 0.8190 +6158 26135 0.9710 +6158 26168 0.5130 +6158 26251 0.4700 +6158 26986 0.5430 +6158 27012 0.4700 +6158 27043 0.5170 +6158 27335 0.6470 +6158 27430 0.5210 +6158 28972 0.4330 +6158 28991 0.5770 +6158 28998 0.9470 +6158 29088 0.6500 +6158 29093 0.9330 +6158 29889 0.8050 +6158 29927 0.8530 +6158 29978 0.5130 +6158 29979 0.5370 +6158 50487 0.4100 +6158 50613 0.5060 +6158 50814 0.5080 +6158 51042 0.8100 +6158 51065 0.9700 +6158 51068 0.8690 +6158 51069 0.9200 +6158 51073 0.9170 +6158 51081 0.9530 +6158 51116 0.8900 +6158 51121 0.9970 +6158 51149 0.9770 +6158 51154 0.9480 +6158 51187 0.9040 +6158 51319 0.9070 +6158 51386 0.4460 +6158 51522 0.4080 +6158 51720 0.4150 +6158 53918 0.8010 +6158 54499 0.8010 +6158 54596 0.4840 +6158 54881 0.5130 +6158 54948 0.7950 +6158 55173 0.9720 +6158 55272 0.9730 +6158 55316 0.9520 +6158 55319 0.8000 +6158 55341 0.8320 +6158 55629 0.4990 +6158 55646 0.8150 +6158 55651 0.7440 +6158 55759 0.5840 +6158 55802 0.5130 +6158 55893 0.4140 +6158 56479 0.4700 +6158 56648 0.5470 +6158 56731 0.4360 +6158 56893 0.5220 +6158 56926 0.8060 +6158 57003 0.8010 +6158 57418 0.5370 +6158 58477 0.8180 +6158 58505 0.5110 +6158 60386 0.4400 +6158 60559 0.4010 +6158 60678 0.9040 +6158 63931 0.9230 +6158 64221 0.4990 +6158 64374 0.7730 +6158 64960 0.9420 +6158 64963 0.9330 +6158 64969 0.9330 +6158 65003 0.8390 +6158 65008 0.9310 +6158 65121 0.6450 +6158 65122 0.6450 +6158 79036 0.5160 +6158 79048 0.8030 +6158 79590 0.9500 +6158 79631 0.7710 +6158 79707 0.5040 +6158 80146 0.5070 +6158 80270 0.5070 +6158 81875 0.4720 +6158 81887 0.5040 +6158 84154 0.4590 +6158 84277 0.4220 +6158 84298 0.8020 +6158 84549 0.4060 +6158 84993 0.5350 +6158 85476 0.7750 +6158 90441 0.8390 +6158 90459 0.4050 +6158 90701 0.4180 +6158 91408 0.4630 +6158 91875 0.8310 +6158 92196 0.8080 +6158 93107 0.4700 +6158 93517 0.5070 +6158 93550 0.5840 +6158 114987 0.9320 +6158 115098 0.8130 +6158 116832 0.9780 +6158 124454 0.7670 +6158 126402 0.9470 +6158 140032 0.9530 +6158 140801 0.9930 +6158 143244 0.5770 +6158 143630 0.5060 +6158 147011 0.4100 +6158 154288 0.4100 +6158 164153 0.5710 +6158 169522 0.4700 +6158 170850 0.4700 +6158 200916 0.9650 +6158 201595 0.7880 +6158 203068 0.8340 +6158 203427 0.4390 +6158 254268 0.9360 +6158 283518 0.4700 +6158 283600 0.4390 +6158 284106 0.4540 +6158 285855 0.9780 +6158 342538 0.9410 +6158 343068 0.6450 +6158 343070 0.6450 +6158 347487 0.9760 +6158 387129 0.9340 +6158 390999 0.6450 +6158 391002 0.6450 +6158 400735 0.6450 +6158 400736 0.6450 +6158 440560 0.6450 +6158 440561 0.6450 +6158 441873 0.6450 +6158 619279 0.4100 +6158 641776 0.7280 +6158 642987 0.4100 +6158 643909 0.7280 +6158 645051 0.7830 +6158 645073 0.7830 +6158 645359 0.6450 +6158 653619 0.6450 +6158 728524 0.7280 +6158 729396 0.7830 +6158 729422 0.7830 +6158 729428 0.7830 +6158 729431 0.7830 +6158 729442 0.7830 +6158 729447 0.7830 +6158 729528 0.6450 +6158 100008586 0.7830 +6158 100128731 0.5270 +6158 100132399 0.7830 +6158 100287482 0.8570 +6158 100505478 0.9200 +6158 100526842 0.9950 +6158 100529097 0.9430 +6158 100529239 0.9930 +6158 100996746 0.7280 +6158 101929983 0.6450 +6158 102724473 0.7830 +6158 105180390 0.7280 +6158 105180391 0.7280 +6159 6160 0.9990 +6159 6161 0.9990 +6159 6164 0.9990 +6159 6165 0.9990 +6159 6166 0.9950 +6159 6167 0.9990 +6159 6168 0.9990 +6159 6169 0.9990 +6159 6170 0.9980 +6159 6171 0.8710 +6159 6173 0.9960 +6159 6175 0.9990 +6159 6176 0.9990 +6159 6181 0.9990 +6159 6183 0.9470 +6159 6184 0.5110 +6159 6187 0.9990 +6159 6188 0.9990 +6159 6189 0.9990 +6159 6191 0.9980 +6159 6192 0.9870 +6159 6193 0.9990 +6159 6194 0.9990 +6159 6201 0.9990 +6159 6202 0.9990 +6159 6203 0.9990 +6159 6204 0.9990 +6159 6205 0.9990 +6159 6206 0.9990 +6159 6207 0.9990 +6159 6208 0.9990 +6159 6209 0.9990 +6159 6210 0.9980 +6159 6217 0.9990 +6159 6218 0.9990 +6159 6222 0.9990 +6159 6223 0.9990 +6159 6224 0.9990 +6159 6227 0.9990 +6159 6228 0.9990 +6159 6229 0.9990 +6159 6230 0.9990 +6159 6231 0.9990 +6159 6232 0.9990 +6159 6233 0.9990 +6159 6234 0.9990 +6159 6235 0.9990 +6159 6499 0.5080 +6159 6627 0.4550 +6159 6632 0.4220 +6159 6633 0.4590 +6159 6726 0.8850 +6159 6727 0.8780 +6159 6728 0.9060 +6159 6729 0.8840 +6159 6730 0.8850 +6159 6731 0.8860 +6159 6734 0.8170 +6159 7178 0.8490 +6159 7264 0.5410 +6159 7311 0.9990 +6159 7314 0.6590 +6159 7316 0.6650 +6159 7415 0.4630 +6159 7494 0.8010 +6159 7866 0.6750 +6159 8260 0.5900 +6159 8266 0.7480 +6159 8638 0.6320 +6159 8662 0.4060 +6159 8664 0.5350 +6159 8665 0.6040 +6159 8666 0.6060 +6159 8667 0.4220 +6159 8668 0.5630 +6159 8721 0.9330 +6159 8894 0.6840 +6159 9045 0.9990 +6159 9132 0.5790 +6159 9147 0.8340 +6159 9312 0.5790 +6159 9343 0.7880 +6159 9349 0.9990 +6159 9636 0.6330 +6159 9652 0.5070 +6159 9669 0.9620 +6159 9732 0.9740 +6159 9789 0.4050 +6159 9858 0.7910 +6159 10061 0.4370 +6159 10200 0.4190 +6159 10399 0.9990 +6159 10412 0.7540 +6159 10430 0.8220 +6159 10473 0.8920 +6159 10492 0.4050 +6159 10537 0.6320 +6159 10557 0.7710 +6159 10574 0.4620 +6159 10575 0.4410 +6159 10666 0.4310 +6159 10694 0.5440 +6159 10767 0.8830 +6159 10952 0.9260 +6159 10985 0.5310 +6159 10988 0.5880 +6159 11222 0.8730 +6159 11224 0.9990 +6159 22894 0.4030 +6159 22927 0.8610 +6159 23148 0.4610 +6159 23173 0.5050 +6159 23204 0.9330 +6159 23246 0.7700 +6159 23288 0.5540 +6159 23478 0.4160 +6159 23480 0.9280 +6159 23481 0.7490 +6159 23517 0.5410 +6159 23521 0.9990 +6159 23560 0.9050 +6159 23640 0.7500 +6159 23708 0.4990 +6159 25873 0.9990 +6159 26046 0.8260 +6159 26135 0.9860 +6159 26168 0.5310 +6159 26251 0.5790 +6159 26986 0.4970 +6159 27012 0.5790 +6159 27043 0.5290 +6159 27335 0.5520 +6159 27430 0.5630 +6159 28972 0.4600 +6159 28991 0.5500 +6159 28998 0.9400 +6159 29088 0.7180 +6159 29093 0.8860 +6159 29889 0.9010 +6159 29927 0.8820 +6159 29978 0.5880 +6159 29979 0.6030 +6159 29997 0.9700 +6159 50487 0.4180 +6159 50613 0.5760 +6159 50814 0.5290 +6159 51042 0.9060 +6159 51065 0.9810 +6159 51068 0.9490 +6159 51069 0.9380 +6159 51073 0.9450 +6159 51081 0.9480 +6159 51116 0.8350 +6159 51119 0.5210 +6159 51121 0.9960 +6159 51149 0.9560 +6159 51154 0.9290 +6159 51187 0.9900 +6159 51319 0.9590 +6159 51372 0.4270 +6159 51398 0.5360 +6159 51574 0.5430 +6159 51650 0.5110 +6159 51720 0.4270 +6159 53918 0.8810 +6159 54463 0.5980 +6159 54464 0.5330 +6159 54499 0.8230 +6159 54543 0.4230 +6159 54881 0.5100 +6159 54948 0.7900 +6159 55139 0.5200 +6159 55173 0.9790 +6159 55272 0.9790 +6159 55294 0.5100 +6159 55316 0.9780 +6159 55319 0.8100 +6159 55324 0.4220 +6159 55341 0.9020 +6159 55505 0.7720 +6159 55591 0.5310 +6159 55607 0.4290 +6159 55629 0.5120 +6159 55646 0.8120 +6159 55651 0.8120 +6159 55759 0.7610 +6159 55802 0.5270 +6159 55854 0.6180 +6159 55893 0.4880 +6159 55969 0.4400 +6159 56257 0.4440 +6159 56479 0.5790 +6159 56648 0.8240 +6159 56731 0.4310 +6159 56893 0.6010 +6159 56926 0.8190 +6159 57003 0.8170 +6159 57418 0.5420 +6159 58477 0.8210 +6159 58505 0.5200 +6159 60559 0.4090 +6159 60678 0.8990 +6159 63931 0.9560 +6159 64221 0.4990 +6159 64374 0.7450 +6159 64960 0.9480 +6159 64963 0.9460 +6159 64969 0.9430 +6159 65003 0.8400 +6159 65008 0.9230 +6159 65121 0.6620 +6159 65122 0.6620 +6159 79036 0.5280 +6159 79048 0.8020 +6159 79137 0.5690 +6159 79590 0.9500 +6159 79612 0.4290 +6159 79631 0.7800 +6159 79707 0.5040 +6159 80146 0.5280 +6159 80155 0.4860 +6159 80218 0.6500 +6159 80270 0.5280 +6159 80349 0.5180 +6159 81875 0.4040 +6159 81887 0.5210 +6159 84298 0.8020 +6159 84549 0.5140 +6159 84779 0.4690 +6159 84993 0.6190 +6159 85476 0.7880 +6159 90441 0.9230 +6159 90459 0.4050 +6159 90701 0.4050 +6159 91408 0.6260 +6159 91875 0.8250 +6159 92196 0.8080 +6159 93107 0.5790 +6159 93517 0.5280 +6159 93550 0.6420 +6159 114987 0.9480 +6159 115098 0.8950 +6159 116540 0.4590 +6159 116832 0.9840 +6159 124454 0.8740 +6159 126402 0.9410 +6159 140032 0.9330 +6159 140801 0.9920 +6159 143244 0.8240 +6159 143630 0.5820 +6159 147011 0.4180 +6159 149041 0.5100 +6159 152518 0.4290 +6159 154288 0.4180 +6159 162427 0.5660 +6159 164153 0.6410 +6159 169522 0.5790 +6159 170850 0.5790 +6159 200916 0.9720 +6159 201595 0.4410 +6159 203068 0.8180 +6159 221710 0.4420 +6159 254268 0.9770 +6159 283518 0.5790 +6159 285855 0.9590 +6159 342538 0.8870 +6159 343068 0.6620 +6159 343070 0.6620 +6159 347487 0.9550 +6159 387129 0.9000 +6159 390999 0.6620 +6159 391002 0.6620 +6159 400735 0.6620 +6159 400736 0.6620 +6159 440560 0.6630 +6159 440561 0.6620 +6159 441873 0.6620 +6159 619279 0.4180 +6159 641776 0.7640 +6159 642987 0.4180 +6159 643909 0.7640 +6159 645051 0.7840 +6159 645073 0.7840 +6159 645359 0.6620 +6159 653619 0.6620 +6159 728524 0.7640 +6159 729396 0.7840 +6159 729422 0.7840 +6159 729428 0.7840 +6159 729431 0.7840 +6159 729442 0.7840 +6159 729447 0.7840 +6159 729528 0.6620 +6159 100008586 0.7840 +6159 100128731 0.5510 +6159 100132399 0.7840 +6159 100287482 0.7910 +6159 100505478 0.8830 +6159 100526842 0.9910 +6159 100527943 0.4290 +6159 100529097 0.9540 +6159 100529239 0.9950 +6159 100996746 0.7640 +6159 101929983 0.6620 +6159 102724473 0.7840 +6159 105180390 0.7640 +6159 105180391 0.7640 +6159 114483834 0.4570 +6160 6161 0.9990 +6160 6164 0.9990 +6160 6165 0.9990 +6160 6166 0.9970 +6160 6167 0.9990 +6160 6168 0.9990 +6160 6169 0.9990 +6160 6170 0.9990 +6160 6171 0.9790 +6160 6173 0.9990 +6160 6175 0.9990 +6160 6176 0.9990 +6160 6181 0.9990 +6160 6183 0.9730 +6160 6184 0.5150 +6160 6187 0.9990 +6160 6188 0.9990 +6160 6189 0.9990 +6160 6191 0.9990 +6160 6192 0.9940 +6160 6193 0.9990 +6160 6194 0.9990 +6160 6201 0.9990 +6160 6202 0.9990 +6160 6203 0.9990 +6160 6204 0.9990 +6160 6205 0.9990 +6160 6206 0.9990 +6160 6207 0.9990 +6160 6208 0.9990 +6160 6209 0.9990 +6160 6210 0.9990 +6160 6217 0.9990 +6160 6218 0.9990 +6160 6222 0.9990 +6160 6223 0.9990 +6160 6224 0.9990 +6160 6227 0.9990 +6160 6228 0.9990 +6160 6229 0.9990 +6160 6230 0.9990 +6160 6231 0.9990 +6160 6232 0.9990 +6160 6233 0.9990 +6160 6234 0.9990 +6160 6235 0.9990 +6160 6426 0.5090 +6160 6499 0.4320 +6160 6633 0.4040 +6160 6635 0.5000 +6160 6637 0.4430 +6160 6726 0.8990 +6160 6727 0.9050 +6160 6728 0.8870 +6160 6729 0.9420 +6160 6730 0.9250 +6160 6731 0.8810 +6160 6734 0.8570 +6160 6741 0.5630 +6160 6745 0.6200 +6160 6746 0.5580 +6160 6747 0.5280 +6160 6872 0.4720 +6160 6908 0.4220 +6160 6924 0.5410 +6160 7011 0.4220 +6160 7157 0.4220 +6160 7178 0.9730 +6160 7264 0.5690 +6160 7311 0.9990 +6160 7314 0.6770 +6160 7316 0.6500 +6160 7381 0.4200 +6160 7458 0.4450 +6160 7494 0.8000 +6160 7866 0.7520 +6160 8034 0.4270 +6160 8260 0.7210 +6160 8266 0.7550 +6160 8361 0.4100 +6160 8568 0.8080 +6160 8607 0.4810 +6160 8638 0.6390 +6160 8662 0.6670 +6160 8665 0.6330 +6160 8666 0.5030 +6160 8667 0.7450 +6160 8668 0.7680 +6160 8721 0.8930 +6160 8886 0.9000 +6160 8894 0.7270 +6160 9045 0.9990 +6160 9132 0.5930 +6160 9141 0.7070 +6160 9147 0.8210 +6160 9188 0.5540 +6160 9312 0.5930 +6160 9343 0.8440 +6160 9349 0.9990 +6160 9486 0.4080 +6160 9553 0.4630 +6160 9584 0.4440 +6160 9636 0.6500 +6160 9652 0.4400 +6160 9669 0.9580 +6160 9732 0.9780 +6160 9775 0.5550 +6160 9789 0.4860 +6160 9858 0.8690 +6160 9908 0.4640 +6160 10057 0.4620 +6160 10061 0.4620 +6160 10146 0.4950 +6160 10200 0.4190 +6160 10209 0.4070 +6160 10236 0.5390 +6160 10399 0.9990 +6160 10412 0.9960 +6160 10430 0.8180 +6160 10438 0.6470 +6160 10473 0.9250 +6160 10480 0.5350 +6160 10492 0.6080 +6160 10528 0.4800 +6160 10537 0.6390 +6160 10557 0.8380 +6160 10574 0.5610 +6160 10575 0.6480 +6160 10576 0.6030 +6160 10632 0.4070 +6160 10664 0.6300 +6160 10666 0.4180 +6160 10694 0.6300 +6160 10767 0.8620 +6160 10952 0.9790 +6160 10969 0.9240 +6160 10985 0.8910 +6160 10988 0.6620 +6160 11103 0.4840 +6160 11138 0.4340 +6160 11222 0.9400 +6160 11224 0.9990 +6160 22927 0.8910 +6160 22948 0.5340 +6160 23076 0.7940 +6160 23091 0.6080 +6160 23148 0.5850 +6160 23173 0.5930 +6160 23185 0.9100 +6160 23195 0.4270 +6160 23204 0.9610 +6160 23212 0.6760 +6160 23246 0.9520 +6160 23478 0.4600 +6160 23480 0.9780 +6160 23481 0.9530 +6160 23517 0.7430 +6160 23521 0.9990 +6160 23560 0.9900 +6160 23640 0.7830 +6160 23708 0.5260 +6160 24140 0.5630 +6160 25873 0.9990 +6160 25914 0.4790 +6160 26046 0.8480 +6160 26135 0.9920 +6160 26155 0.8990 +6160 26156 0.9080 +6160 26168 0.5380 +6160 26251 0.5930 +6160 26354 0.8320 +6160 26986 0.4440 +6160 27000 0.8200 +6160 27012 0.5930 +6160 27043 0.5670 +6160 27089 0.4390 +6160 27292 0.4670 +6160 27316 0.4010 +6160 27335 0.4160 +6160 27430 0.5750 +6160 28972 0.5640 +6160 28991 0.5790 +6160 28998 0.9690 +6160 29088 0.6780 +6160 29093 0.9590 +6160 29889 0.9510 +6160 29927 0.9490 +6160 29960 0.5530 +6160 29978 0.5900 +6160 29979 0.6610 +6160 29997 0.9050 +6160 50487 0.4180 +6160 50613 0.5840 +6160 50814 0.5640 +6160 51042 0.9330 +6160 51065 0.9900 +6160 51068 0.9500 +6160 51069 0.9460 +6160 51073 0.9520 +6160 51081 0.9440 +6160 51116 0.8770 +6160 51119 0.6380 +6160 51121 0.9970 +6160 51149 0.9770 +6160 51154 0.9870 +6160 51182 0.4070 +6160 51187 0.9960 +6160 51224 0.5130 +6160 51319 0.9760 +6160 51372 0.6470 +6160 51388 0.8860 +6160 51398 0.4400 +6160 51522 0.4340 +6160 51574 0.6530 +6160 51720 0.4220 +6160 53918 0.8580 +6160 54463 0.4990 +6160 54464 0.5120 +6160 54475 0.4510 +6160 54499 0.8250 +6160 54543 0.7290 +6160 54552 0.8140 +6160 54663 0.8900 +6160 54881 0.7270 +6160 54888 0.4600 +6160 54948 0.8070 +6160 55127 0.4160 +6160 55139 0.4360 +6160 55153 0.5380 +6160 55173 0.9810 +6160 55176 0.7000 +6160 55272 0.9780 +6160 55299 0.9180 +6160 55316 0.9800 +6160 55319 0.8120 +6160 55341 0.9150 +6160 55505 0.4640 +6160 55591 0.5780 +6160 55629 0.5160 +6160 55646 0.8610 +6160 55651 0.8390 +6160 55695 0.4630 +6160 55759 0.9530 +6160 55802 0.5350 +6160 55854 0.6760 +6160 55893 0.4230 +6160 56479 0.5930 +6160 56648 0.9200 +6160 56731 0.4180 +6160 56893 0.5950 +6160 56926 0.8160 +6160 56954 0.5020 +6160 56965 0.7730 +6160 57003 0.8300 +6160 57418 0.7550 +6160 57532 0.7240 +6160 57696 0.5490 +6160 58477 0.8290 +6160 58505 0.5510 +6160 60386 0.4240 +6160 60559 0.4450 +6160 60678 0.9120 +6160 63899 0.4490 +6160 63931 0.9640 +6160 64146 0.4680 +6160 64221 0.5010 +6160 64318 0.8960 +6160 64374 0.7760 +6160 64960 0.9580 +6160 64963 0.9560 +6160 64969 0.9710 +6160 65003 0.9210 +6160 65008 0.9650 +6160 65121 0.6720 +6160 65122 0.6720 +6160 79036 0.5110 +6160 79048 0.8100 +6160 79137 0.4560 +6160 79159 0.5750 +6160 79590 0.9660 +6160 79612 0.4310 +6160 79631 0.8220 +6160 79668 0.7730 +6160 79707 0.5300 +6160 79730 0.4520 +6160 80135 0.9250 +6160 80146 0.5630 +6160 80155 0.6280 +6160 80218 0.5760 +6160 80270 0.5630 +6160 80349 0.4440 +6160 81875 0.4610 +6160 81887 0.5340 +6160 84154 0.8120 +6160 84273 0.4730 +6160 84298 0.8270 +6160 84365 0.9610 +6160 84549 0.9090 +6160 84779 0.5340 +6160 84851 0.5420 +6160 84993 0.6080 +6160 85476 0.8230 +6160 90121 0.6600 +6160 90441 0.8990 +6160 90459 0.4050 +6160 90701 0.4160 +6160 90957 0.4790 +6160 91408 0.8430 +6160 91875 0.8400 +6160 92170 0.4590 +6160 92196 0.8080 +6160 93107 0.5930 +6160 93517 0.5630 +6160 93550 0.6390 +6160 114987 0.9710 +6160 115098 0.8850 +6160 115939 0.4110 +6160 116832 0.9840 +6160 117246 0.9090 +6160 124454 0.8560 +6160 126402 0.9430 +6160 137994 0.4290 +6160 140032 0.9710 +6160 140801 0.9930 +6160 143244 0.9200 +6160 143630 0.5840 +6160 146212 0.7560 +6160 147011 0.4180 +6160 152518 0.4240 +6160 154288 0.4180 +6160 162427 0.4560 +6160 164153 0.6390 +6160 169522 0.5930 +6160 170622 0.5930 +6160 170850 0.5930 +6160 200916 0.9850 +6160 201595 0.8330 +6160 203068 0.8100 +6160 203427 0.4240 +6160 221078 0.7920 +6160 221710 0.4890 +6160 254268 0.9760 +6160 283518 0.5930 +6160 283600 0.4240 +6160 285855 0.9820 +6160 342538 0.9140 +6160 343068 0.6720 +6160 343070 0.6720 +6160 347487 0.9700 +6160 387129 0.9390 +6160 387338 0.4490 +6160 390999 0.6720 +6160 391002 0.6720 +6160 400735 0.6720 +6160 400736 0.6720 +6160 440560 0.6720 +6160 440561 0.6720 +6160 441873 0.6720 +6160 619279 0.4180 +6160 641776 0.8240 +6160 642987 0.4180 +6160 643909 0.8240 +6160 645051 0.7860 +6160 645073 0.7860 +6160 645359 0.6720 +6160 653619 0.6720 +6160 728524 0.8240 +6160 729396 0.7860 +6160 729422 0.7860 +6160 729428 0.7860 +6160 729431 0.7860 +6160 729442 0.7860 +6160 729447 0.7860 +6160 729528 0.6720 +6160 100008586 0.7860 +6160 100128731 0.5610 +6160 100132399 0.7860 +6160 100287482 0.8690 +6160 100505478 0.9300 +6160 100526842 0.9950 +6160 100529097 0.9680 +6160 100529239 0.9960 +6160 100996746 0.8240 +6160 101929983 0.6720 +6160 102724473 0.7860 +6160 105180390 0.8240 +6160 105180391 0.8240 +6160 114483834 0.4770 +6161 6164 0.9990 +6161 6165 0.9990 +6161 6166 0.9930 +6161 6167 0.9990 +6161 6168 0.9990 +6161 6169 0.9990 +6161 6170 0.9990 +6161 6171 0.9680 +6161 6173 0.9990 +6161 6175 0.9990 +6161 6176 0.9990 +6161 6181 0.9990 +6161 6183 0.6760 +6161 6184 0.5140 +6161 6187 0.9990 +6161 6188 0.9990 +6161 6189 0.9990 +6161 6191 0.9990 +6161 6192 0.9920 +6161 6193 0.9990 +6161 6194 0.9990 +6161 6201 0.9990 +6161 6202 0.9990 +6161 6203 0.9990 +6161 6204 0.9990 +6161 6205 0.9990 +6161 6206 0.9990 +6161 6207 0.9990 +6161 6208 0.9990 +6161 6209 0.9990 +6161 6210 0.9990 +6161 6217 0.9990 +6161 6218 0.9990 +6161 6222 0.9990 +6161 6223 0.9990 +6161 6224 0.9990 +6161 6227 0.9990 +6161 6228 0.9990 +6161 6229 0.9990 +6161 6230 0.9990 +6161 6231 0.9990 +6161 6232 0.9990 +6161 6233 0.9990 +6161 6234 0.9990 +6161 6235 0.9990 +6161 6389 0.5400 +6161 6499 0.5710 +6161 6506 0.4630 +6161 6711 0.4280 +6161 6726 0.8770 +6161 6727 0.8760 +6161 6728 0.8830 +6161 6729 0.8850 +6161 6730 0.8950 +6161 6731 0.8680 +6161 6734 0.8180 +6161 6838 0.5110 +6161 6908 0.4900 +6161 6924 0.5050 +6161 7178 0.9620 +6161 7311 0.9990 +6161 7314 0.5850 +6161 7316 0.5760 +6161 7494 0.8310 +6161 7534 0.4230 +6161 7555 0.5230 +6161 7866 0.7580 +6161 8192 0.5020 +6161 8260 0.5220 +6161 8266 0.5990 +6161 8361 0.4080 +6161 8568 0.8040 +6161 8638 0.4030 +6161 8662 0.4510 +6161 8664 0.6710 +6161 8665 0.4480 +6161 8666 0.4110 +6161 8667 0.7150 +6161 8668 0.4530 +6161 8721 0.9190 +6161 8886 0.9100 +6161 8894 0.6450 +6161 9045 0.9990 +6161 9141 0.4600 +6161 9147 0.8020 +6161 9343 0.5850 +6161 9349 0.9990 +6161 9377 0.4070 +6161 9401 0.5180 +6161 9533 0.4950 +6161 9636 0.4410 +6161 9652 0.5100 +6161 9669 0.9490 +6161 9732 0.6570 +6161 9789 0.4080 +6161 9858 0.5300 +6161 9933 0.5850 +6161 10061 0.4790 +6161 10200 0.4140 +6161 10209 0.4040 +6161 10294 0.4270 +6161 10399 0.9990 +6161 10412 0.9450 +6161 10430 0.8510 +6161 10438 0.6910 +6161 10473 0.5720 +6161 10537 0.4030 +6161 10551 0.5810 +6161 10557 0.5450 +6161 10664 0.5080 +6161 10767 0.8800 +6161 10943 0.4390 +6161 10952 0.9280 +6161 10969 0.8610 +6161 10985 0.8950 +6161 10988 0.4640 +6161 11183 0.4130 +6161 11222 0.6550 +6161 11224 0.9990 +6161 22894 0.4360 +6161 22927 0.8380 +6161 23029 0.6200 +6161 23076 0.8570 +6161 23148 0.6140 +6161 23185 0.9090 +6161 23195 0.4290 +6161 23204 0.9520 +6161 23212 0.7630 +6161 23246 0.9460 +6161 23367 0.5560 +6161 23378 0.5050 +6161 23478 0.4230 +6161 23480 0.9050 +6161 23481 0.9270 +6161 23517 0.7010 +6161 23521 0.9990 +6161 23560 0.9690 +6161 23640 0.5150 +6161 23708 0.4990 +6161 25789 0.4500 +6161 25873 0.9990 +6161 26046 0.8120 +6161 26135 0.9900 +6161 26155 0.9060 +6161 26156 0.9090 +6161 26168 0.5210 +6161 26330 0.4270 +6161 26354 0.7790 +6161 26986 0.4880 +6161 27000 0.5000 +6161 27043 0.5770 +6161 27335 0.7770 +6161 28972 0.4360 +6161 28998 0.6670 +6161 29088 0.4590 +6161 29093 0.6030 +6161 29889 0.9230 +6161 29927 0.8780 +6161 29997 0.9720 +6161 51042 0.9030 +6161 51065 0.9750 +6161 51068 0.9260 +6161 51069 0.6110 +6161 51072 0.9000 +6161 51073 0.6180 +6161 51081 0.6010 +6161 51116 0.5470 +6161 51121 0.9960 +6161 51149 0.6640 +6161 51154 0.9180 +6161 51164 0.4100 +6161 51187 0.9820 +6161 51224 0.5010 +6161 51319 0.6570 +6161 51388 0.8700 +6161 51398 0.5160 +6161 53918 0.8800 +6161 54463 0.4570 +6161 54464 0.5590 +6161 54475 0.5140 +6161 54499 0.8210 +6161 54552 0.7740 +6161 54663 0.8590 +6161 54881 0.7490 +6161 54948 0.5320 +6161 55139 0.5110 +6161 55153 0.5330 +6161 55167 0.4640 +6161 55173 0.6640 +6161 55272 0.6580 +6161 55299 0.8740 +6161 55316 0.6470 +6161 55319 0.8030 +6161 55341 0.9230 +6161 55629 0.5070 +6161 55646 0.8380 +6161 55651 0.5850 +6161 55759 0.9270 +6161 55802 0.5060 +6161 55854 0.5200 +6161 55969 0.4290 +6161 56648 0.8360 +6161 56829 0.4890 +6161 56926 0.8210 +6161 56965 0.5000 +6161 57003 0.8200 +6161 57418 0.7540 +6161 57532 0.7220 +6161 57696 0.5210 +6161 58477 0.8150 +6161 58505 0.5170 +6161 60559 0.4030 +6161 60678 0.9050 +6161 63931 0.6090 +6161 64221 0.5010 +6161 64318 0.8640 +6161 64374 0.5170 +6161 64960 0.6100 +6161 64963 0.6260 +6161 64969 0.6720 +6161 65003 0.6060 +6161 65008 0.6090 +6161 65121 0.4480 +6161 65122 0.4480 +6161 79036 0.7530 +6161 79048 0.8080 +6161 79159 0.5070 +6161 79590 0.6320 +6161 79612 0.4490 +6161 79631 0.5480 +6161 79647 0.4020 +6161 79668 0.4970 +6161 79707 0.5030 +6161 80135 0.9470 +6161 80155 0.4640 +6161 80218 0.5370 +6161 80349 0.5440 +6161 80764 0.4670 +6161 81887 0.5060 +6161 84154 0.8180 +6161 84298 0.8010 +6161 84365 0.8600 +6161 84450 0.4450 +6161 84549 0.9750 +6161 84779 0.4670 +6161 84851 0.5100 +6161 85476 0.5450 +6161 90441 0.8910 +6161 90459 0.4100 +6161 90701 0.4090 +6161 91408 0.6650 +6161 91875 0.8230 +6161 92170 0.4880 +6161 92196 0.8080 +6161 93517 0.4400 +6161 93550 0.4080 +6161 93974 0.5340 +6161 114987 0.6260 +6161 115098 0.8810 +6161 116832 0.9780 +6161 117246 0.9040 +6161 124454 0.5200 +6161 126402 0.5880 +6161 140032 0.9600 +6161 140801 0.9940 +6161 143244 0.8360 +6161 152518 0.4290 +6161 164153 0.4530 +6161 200916 0.9820 +6161 201595 0.7980 +6161 203068 0.8380 +6161 221078 0.7670 +6161 254268 0.6500 +6161 285855 0.9800 +6161 342538 0.9380 +6161 343068 0.4480 +6161 343070 0.4480 +6161 347487 0.6260 +6161 387129 0.5980 +6161 390999 0.4480 +6161 391002 0.4480 +6161 400735 0.4480 +6161 400736 0.4480 +6161 440560 0.4480 +6161 440561 0.4480 +6161 441873 0.4480 +6161 641776 0.5220 +6161 643909 0.5220 +6161 645359 0.4480 +6161 653619 0.4480 +6161 653689 0.4140 +6161 728378 0.5180 +6161 728524 0.5220 +6161 729528 0.4480 +6161 100128731 0.5320 +6161 100287482 0.5300 +6161 100505478 0.5840 +6161 100526842 0.9940 +6161 100527943 0.4290 +6161 100529097 0.9480 +6161 100529239 0.9940 +6161 100996746 0.5220 +6161 101929983 0.4480 +6161 105180390 0.5220 +6161 105180391 0.5220 +6161 114483834 0.4830 +6164 6165 0.9990 +6164 6166 0.9960 +6164 6167 0.9990 +6164 6168 0.9990 +6164 6169 0.9990 +6164 6170 0.9990 +6164 6171 0.8020 +6164 6173 0.9990 +6164 6175 0.9990 +6164 6176 0.9990 +6164 6181 0.9990 +6164 6183 0.9720 +6164 6184 0.5140 +6164 6187 0.9990 +6164 6188 0.9990 +6164 6189 0.9990 +6164 6191 0.9980 +6164 6192 0.9920 +6164 6193 0.9990 +6164 6194 0.9990 +6164 6201 0.9990 +6164 6202 0.9990 +6164 6203 0.9990 +6164 6204 0.9990 +6164 6205 0.9990 +6164 6206 0.9990 +6164 6207 0.9990 +6164 6208 0.9990 +6164 6209 0.9990 +6164 6210 0.9990 +6164 6217 0.9990 +6164 6218 0.9990 +6164 6222 0.9990 +6164 6223 0.9990 +6164 6224 0.9990 +6164 6227 0.9990 +6164 6228 0.9990 +6164 6229 0.9990 +6164 6230 0.9990 +6164 6231 0.9990 +6164 6232 0.9990 +6164 6233 0.9990 +6164 6234 0.9990 +6164 6235 0.9990 +6164 6499 0.4290 +6164 6633 0.4650 +6164 6635 0.5670 +6164 6657 0.5100 +6164 6726 0.9310 +6164 6727 0.9260 +6164 6728 0.9030 +6164 6729 0.8830 +6164 6730 0.9000 +6164 6731 0.8720 +6164 6734 0.8290 +6164 6872 0.4220 +6164 6908 0.4270 +6164 6924 0.5200 +6164 6950 0.4900 +6164 7011 0.4080 +6164 7178 0.8230 +6164 7203 0.4230 +6164 7264 0.5450 +6164 7311 0.9990 +6164 7314 0.6740 +6164 7316 0.6690 +6164 7381 0.4320 +6164 7494 0.8000 +6164 7866 0.6580 +6164 8034 0.4090 +6164 8260 0.5050 +6164 8266 0.7500 +6164 8607 0.4180 +6164 8638 0.6590 +6164 8661 0.4280 +6164 8662 0.5840 +6164 8665 0.5820 +6164 8666 0.4930 +6164 8668 0.7300 +6164 8721 0.8830 +6164 8886 0.8830 +6164 8894 0.7270 +6164 9045 0.9990 +6164 9132 0.5960 +6164 9141 0.8420 +6164 9147 0.8100 +6164 9188 0.4200 +6164 9230 0.4440 +6164 9312 0.5960 +6164 9343 0.8920 +6164 9349 0.9990 +6164 9528 0.4290 +6164 9584 0.4470 +6164 9636 0.6610 +6164 9652 0.4330 +6164 9669 0.9500 +6164 9732 0.9780 +6164 9789 0.4380 +6164 9858 0.8850 +6164 10200 0.4130 +6164 10209 0.4520 +6164 10399 0.9990 +6164 10412 0.9860 +6164 10430 0.8160 +6164 10438 0.6750 +6164 10473 0.9290 +6164 10480 0.7100 +6164 10492 0.4450 +6164 10537 0.6590 +6164 10557 0.8500 +6164 10574 0.6840 +6164 10575 0.6560 +6164 10576 0.6170 +6164 10664 0.4280 +6164 10666 0.4180 +6164 10694 0.5440 +6164 10767 0.8580 +6164 10952 0.9240 +6164 10969 0.9010 +6164 10985 0.8650 +6164 10988 0.6100 +6164 11222 0.9690 +6164 11224 0.9990 +6164 22927 0.8620 +6164 22948 0.5810 +6164 23076 0.5350 +6164 23148 0.6570 +6164 23173 0.5350 +6164 23204 0.9440 +6164 23212 0.6100 +6164 23246 0.9240 +6164 23476 0.5390 +6164 23478 0.5050 +6164 23480 0.8770 +6164 23481 0.9450 +6164 23517 0.6590 +6164 23521 0.9990 +6164 23560 0.9680 +6164 23640 0.7880 +6164 23708 0.4990 +6164 24140 0.5470 +6164 25873 0.9990 +6164 25914 0.4280 +6164 26046 0.8120 +6164 26135 0.9800 +6164 26155 0.8620 +6164 26156 0.8720 +6164 26168 0.5300 +6164 26251 0.5960 +6164 26354 0.8100 +6164 26986 0.4740 +6164 27000 0.4100 +6164 27012 0.5960 +6164 27043 0.5590 +6164 27430 0.5540 +6164 28972 0.4200 +6164 28991 0.5500 +6164 28998 0.9530 +6164 29088 0.6620 +6164 29093 0.9680 +6164 29889 0.9060 +6164 29927 0.8730 +6164 29960 0.5470 +6164 29978 0.6130 +6164 29979 0.6270 +6164 29997 0.8650 +6164 50487 0.4180 +6164 50613 0.6070 +6164 50814 0.5420 +6164 51042 0.8850 +6164 51065 0.9830 +6164 51068 0.9160 +6164 51069 0.9620 +6164 51073 0.9350 +6164 51081 0.9650 +6164 51116 0.8900 +6164 51119 0.6930 +6164 51121 0.9980 +6164 51149 0.9720 +6164 51154 0.9710 +6164 51187 0.9940 +6164 51224 0.5130 +6164 51319 0.9570 +6164 51372 0.6730 +6164 51388 0.8640 +6164 51398 0.4370 +6164 51574 0.5970 +6164 51720 0.4220 +6164 53918 0.8580 +6164 54463 0.4510 +6164 54464 0.4390 +6164 54475 0.4390 +6164 54499 0.8190 +6164 54543 0.4610 +6164 54552 0.7710 +6164 54596 0.4830 +6164 54663 0.4460 +6164 54881 0.7080 +6164 54888 0.4370 +6164 54948 0.7900 +6164 55139 0.4370 +6164 55153 0.4730 +6164 55173 0.9740 +6164 55272 0.9790 +6164 55299 0.8700 +6164 55316 0.9710 +6164 55319 0.8030 +6164 55341 0.8880 +6164 55505 0.4070 +6164 55591 0.5210 +6164 55629 0.5100 +6164 55646 0.8180 +6164 55651 0.8570 +6164 55695 0.4450 +6164 55759 0.9380 +6164 55802 0.5110 +6164 55854 0.5250 +6164 55893 0.4180 +6164 56479 0.5960 +6164 56648 0.8530 +6164 56731 0.4180 +6164 56893 0.6180 +6164 56926 0.8160 +6164 56943 0.4330 +6164 56965 0.7230 +6164 57003 0.8150 +6164 57418 0.7230 +6164 57696 0.5480 +6164 58477 0.8170 +6164 58505 0.6030 +6164 60559 0.4760 +6164 60678 0.9190 +6164 63899 0.4140 +6164 63931 0.9620 +6164 64221 0.4990 +6164 64318 0.8970 +6164 64374 0.7890 +6164 64960 0.9510 +6164 64963 0.9500 +6164 64969 0.9580 +6164 65003 0.9070 +6164 65008 0.9680 +6164 65121 0.6560 +6164 65122 0.6560 +6164 79036 0.5900 +6164 79048 0.8110 +6164 79137 0.4170 +6164 79159 0.4290 +6164 79590 0.9680 +6164 79631 0.8820 +6164 79668 0.7230 +6164 79707 0.5040 +6164 79730 0.4140 +6164 80135 0.8590 +6164 80146 0.5420 +6164 80218 0.5290 +6164 80223 0.4420 +6164 80270 0.5500 +6164 80349 0.4420 +6164 81875 0.4060 +6164 81887 0.5210 +6164 83743 0.4710 +6164 84154 0.7840 +6164 84273 0.4440 +6164 84298 0.8030 +6164 84365 0.8640 +6164 84549 0.8540 +6164 84993 0.6240 +6164 85476 0.8800 +6164 90441 0.8890 +6164 90459 0.4030 +6164 90701 0.4200 +6164 91408 0.4700 +6164 91875 0.8240 +6164 92170 0.4780 +6164 92196 0.8200 +6164 93107 0.5960 +6164 93517 0.5500 +6164 93550 0.6590 +6164 114987 0.9700 +6164 115098 0.8650 +6164 116541 0.4500 +6164 116832 0.9800 +6164 117246 0.8900 +6164 120892 0.5100 +6164 124454 0.8490 +6164 126402 0.9630 +6164 137994 0.4350 +6164 140032 0.9590 +6164 140801 0.9920 +6164 143244 0.8530 +6164 143630 0.6070 +6164 146212 0.6660 +6164 147011 0.4180 +6164 154288 0.4180 +6164 162427 0.4170 +6164 164153 0.6590 +6164 169522 0.5960 +6164 170850 0.5960 +6164 200916 0.9830 +6164 201595 0.7890 +6164 203068 0.8100 +6164 221078 0.7660 +6164 254268 0.9240 +6164 283518 0.5960 +6164 285855 0.9780 +6164 342538 0.9410 +6164 343068 0.6560 +6164 343070 0.6560 +6164 347487 0.9750 +6164 387129 0.9390 +6164 387338 0.4150 +6164 390999 0.6560 +6164 391002 0.6560 +6164 400735 0.6560 +6164 400736 0.6560 +6164 440560 0.6560 +6164 440561 0.6560 +6164 441873 0.6560 +6164 619279 0.4180 +6164 641776 0.8290 +6164 642987 0.4180 +6164 643909 0.8290 +6164 645051 0.7910 +6164 645073 0.7910 +6164 645359 0.6560 +6164 653619 0.6560 +6164 728524 0.8290 +6164 729396 0.7910 +6164 729422 0.7910 +6164 729428 0.7910 +6164 729431 0.7910 +6164 729442 0.7910 +6164 729447 0.7940 +6164 729528 0.6560 +6164 100008586 0.7910 +6164 100128731 0.5350 +6164 100132399 0.7910 +6164 100287482 0.8850 +6164 100505478 0.9300 +6164 100526842 0.9960 +6164 100529097 0.9410 +6164 100529239 0.9960 +6164 100996746 0.8290 +6164 101929983 0.6560 +6164 102724473 0.7910 +6164 105180390 0.8290 +6164 105180391 0.8290 +6165 6166 0.9990 +6165 6167 0.9990 +6165 6168 0.9990 +6165 6169 0.9990 +6165 6170 0.9990 +6165 6171 0.8420 +6165 6173 0.9990 +6165 6175 0.9990 +6165 6176 0.9990 +6165 6181 0.9990 +6165 6183 0.9570 +6165 6184 0.5150 +6165 6187 0.9990 +6165 6188 0.9990 +6165 6189 0.9990 +6165 6191 0.9980 +6165 6192 0.9920 +6165 6193 0.9990 +6165 6194 0.9990 +6165 6201 0.9990 +6165 6202 0.9990 +6165 6203 0.9990 +6165 6204 0.9990 +6165 6205 0.9990 +6165 6206 0.9990 +6165 6207 0.9990 +6165 6208 0.9990 +6165 6209 0.9990 +6165 6210 0.9990 +6165 6217 0.9990 +6165 6218 0.9990 +6165 6222 0.9990 +6165 6223 0.9990 +6165 6224 0.9990 +6165 6227 0.9990 +6165 6228 0.9990 +6165 6229 0.9990 +6165 6230 0.9990 +6165 6231 0.9990 +6165 6232 0.9990 +6165 6233 0.9990 +6165 6234 0.9990 +6165 6235 0.9990 +6165 6499 0.4460 +6165 6633 0.4800 +6165 6635 0.4640 +6165 6637 0.4680 +6165 6726 0.8870 +6165 6727 0.9070 +6165 6728 0.9010 +6165 6729 0.8960 +6165 6730 0.9030 +6165 6731 0.8860 +6165 6734 0.8160 +6165 6838 0.5100 +6165 6902 0.4010 +6165 6950 0.4060 +6165 7011 0.4080 +6165 7178 0.8380 +6165 7264 0.5040 +6165 7311 0.9990 +6165 7314 0.7120 +6165 7316 0.6910 +6165 7381 0.4470 +6165 7458 0.4590 +6165 7494 0.8090 +6165 7555 0.4750 +6165 7866 0.7550 +6165 7919 0.4800 +6165 8034 0.4290 +6165 8260 0.5910 +6165 8266 0.6490 +6165 8568 0.7530 +6165 8607 0.6450 +6165 8638 0.6460 +6165 8661 0.4320 +6165 8662 0.5600 +6165 8665 0.7910 +6165 8666 0.5830 +6165 8667 0.4090 +6165 8668 0.7770 +6165 8721 0.8790 +6165 8886 0.8650 +6165 8894 0.7260 +6165 9045 0.9990 +6165 9132 0.5680 +6165 9147 0.8090 +6165 9312 0.5680 +6165 9343 0.8080 +6165 9349 0.9990 +6165 9401 0.5100 +6165 9636 0.6470 +6165 9652 0.4620 +6165 9669 0.9470 +6165 9732 0.9720 +6165 9789 0.4490 +6165 9858 0.8590 +6165 10200 0.4260 +6165 10213 0.4100 +6165 10236 0.4950 +6165 10399 0.9990 +6165 10412 0.9850 +6165 10430 0.8230 +6165 10438 0.6430 +6165 10471 0.4040 +6165 10473 0.9140 +6165 10476 0.5040 +6165 10480 0.6650 +6165 10492 0.5200 +6165 10537 0.6460 +6165 10557 0.7820 +6165 10574 0.6480 +6165 10575 0.7480 +6165 10576 0.6190 +6165 10666 0.4200 +6165 10694 0.6450 +6165 10767 0.8770 +6165 10856 0.4530 +6165 10952 0.9200 +6165 10969 0.8550 +6165 10985 0.8670 +6165 10988 0.5830 +6165 11145 0.5010 +6165 11222 0.9290 +6165 11224 0.9990 +6165 22894 0.4050 +6165 22927 0.8330 +6165 22948 0.5360 +6165 23076 0.8170 +6165 23148 0.5990 +6165 23173 0.5050 +6165 23204 0.9360 +6165 23212 0.6840 +6165 23246 0.9380 +6165 23478 0.4410 +6165 23480 0.8990 +6165 23481 0.9520 +6165 23517 0.6500 +6165 23521 0.9990 +6165 23560 0.9690 +6165 23640 0.7960 +6165 23708 0.4990 +6165 24140 0.5840 +6165 25873 0.9990 +6165 25914 0.4300 +6165 26046 0.8120 +6165 26135 0.9780 +6165 26155 0.8620 +6165 26156 0.8910 +6165 26168 0.5070 +6165 26251 0.5680 +6165 26354 0.7980 +6165 27012 0.5680 +6165 27043 0.5640 +6165 27430 0.5110 +6165 28972 0.4750 +6165 28991 0.5790 +6165 28998 0.9620 +6165 29088 0.6800 +6165 29093 0.9410 +6165 29889 0.9020 +6165 29927 0.8800 +6165 29960 0.5370 +6165 29978 0.5980 +6165 29979 0.6280 +6165 29997 0.8890 +6165 50487 0.4200 +6165 50613 0.5920 +6165 50814 0.5500 +6165 51018 0.4710 +6165 51042 0.8930 +6165 51065 0.9870 +6165 51068 0.9250 +6165 51069 0.9380 +6165 51073 0.9480 +6165 51081 0.9420 +6165 51116 0.8690 +6165 51119 0.7610 +6165 51121 0.9960 +6165 51149 0.9770 +6165 51154 0.9560 +6165 51187 0.9910 +6165 51319 0.9720 +6165 51372 0.5020 +6165 51388 0.8740 +6165 51398 0.5500 +6165 51720 0.4240 +6165 53918 0.8760 +6165 54463 0.4510 +6165 54464 0.4440 +6165 54475 0.4380 +6165 54499 0.8200 +6165 54543 0.5130 +6165 54552 0.7800 +6165 54663 0.8430 +6165 54881 0.7140 +6165 54888 0.4200 +6165 54948 0.8220 +6165 55139 0.4360 +6165 55153 0.4630 +6165 55173 0.9820 +6165 55272 0.9660 +6165 55299 0.8570 +6165 55316 0.9660 +6165 55319 0.8040 +6165 55341 0.8850 +6165 55505 0.4750 +6165 55591 0.4890 +6165 55629 0.5070 +6165 55646 0.8110 +6165 55651 0.8530 +6165 55695 0.4150 +6165 55759 0.9430 +6165 55802 0.5150 +6165 55854 0.5090 +6165 55893 0.4320 +6165 55969 0.4330 +6165 56479 0.5680 +6165 56648 0.6240 +6165 56731 0.4200 +6165 56893 0.6060 +6165 56926 0.8170 +6165 56965 0.5870 +6165 57003 0.8220 +6165 57213 0.6220 +6165 57418 0.7340 +6165 57696 0.4470 +6165 58477 0.8180 +6165 58505 0.5370 +6165 60386 0.4290 +6165 60559 0.4030 +6165 60678 0.9110 +6165 63899 0.4120 +6165 63931 0.9530 +6165 64221 0.4990 +6165 64318 0.8480 +6165 64374 0.7990 +6165 64960 0.9530 +6165 64963 0.9370 +6165 64969 0.9630 +6165 65003 0.8830 +6165 65008 0.9360 +6165 65121 0.6730 +6165 65122 0.6730 +6165 79036 0.5160 +6165 79048 0.8100 +6165 79137 0.4200 +6165 79159 0.5030 +6165 79590 0.9660 +6165 79631 0.7910 +6165 79668 0.5870 +6165 79707 0.6220 +6165 79730 0.4120 +6165 80135 0.8630 +6165 80146 0.4960 +6165 80218 0.5840 +6165 80270 0.4960 +6165 80349 0.4660 +6165 81875 0.4200 +6165 81887 0.5060 +6165 84154 0.7370 +6165 84193 0.4450 +6165 84273 0.4560 +6165 84298 0.8050 +6165 84365 0.8970 +6165 84545 0.5000 +6165 84549 0.8480 +6165 84993 0.6150 +6165 85476 0.7770 +6165 90121 0.5810 +6165 90441 0.8900 +6165 90459 0.4030 +6165 90701 0.4160 +6165 91408 0.4800 +6165 91875 0.8230 +6165 92170 0.4330 +6165 92196 0.5070 +6165 93107 0.5680 +6165 93517 0.4960 +6165 93550 0.6800 +6165 114987 0.9700 +6165 115098 0.8650 +6165 116832 0.9790 +6165 117246 0.8790 +6165 124454 0.8330 +6165 126402 0.9370 +6165 137994 0.4290 +6165 140032 0.9610 +6165 140801 0.9950 +6165 143244 0.6240 +6165 143630 0.5920 +6165 146212 0.6500 +6165 147011 0.4200 +6165 154288 0.4200 +6165 162427 0.4170 +6165 164153 0.6460 +6165 169522 0.5680 +6165 170622 0.4480 +6165 170850 0.5680 +6165 200916 0.9820 +6165 201595 0.7870 +6165 203068 0.8340 +6165 203427 0.4290 +6165 221078 0.7600 +6165 254268 0.9100 +6165 283518 0.5680 +6165 283600 0.4290 +6165 285855 0.9820 +6165 342538 0.9410 +6165 343068 0.6730 +6165 343070 0.6730 +6165 347487 0.9740 +6165 387129 0.9410 +6165 387338 0.4130 +6165 390999 0.6730 +6165 391002 0.6730 +6165 400735 0.6730 +6165 400736 0.6730 +6165 440560 0.6730 +6165 440561 0.6730 +6165 441873 0.6730 +6165 619279 0.4200 +6165 641776 0.7790 +6165 642987 0.4200 +6165 643909 0.7790 +6165 645051 0.7760 +6165 645073 0.7760 +6165 645359 0.6730 +6165 653619 0.6730 +6165 728524 0.7790 +6165 729396 0.7760 +6165 729422 0.7760 +6165 729428 0.7760 +6165 729431 0.7760 +6165 729442 0.7760 +6165 729447 0.7760 +6165 729528 0.6730 +6165 100008586 0.7760 +6165 100128731 0.5410 +6165 100132399 0.7760 +6165 100287482 0.8590 +6165 100505478 0.9310 +6165 100526842 0.9950 +6165 100527943 0.4290 +6165 100529097 0.9560 +6165 100529239 0.9950 +6165 100996746 0.7790 +6165 101929983 0.6730 +6165 102724473 0.7760 +6165 105180390 0.7790 +6165 105180391 0.7790 +6166 6167 0.9960 +6166 6168 0.9960 +6166 6169 0.9970 +6166 6170 0.9940 +6166 6171 0.6350 +6166 6173 0.9820 +6166 6175 0.9970 +6166 6176 0.9950 +6166 6181 0.9930 +6166 6183 0.8410 +6166 6184 0.4090 +6166 6187 0.9960 +6166 6188 0.9970 +6166 6189 0.9970 +6166 6191 0.9900 +6166 6192 0.9770 +6166 6193 0.9950 +6166 6194 0.9980 +6166 6201 0.9960 +6166 6202 0.9950 +6166 6203 0.9960 +6166 6204 0.9910 +6166 6205 0.9990 +6166 6206 0.9940 +6166 6207 0.9960 +6166 6208 0.9960 +6166 6209 0.9980 +6166 6210 0.9870 +6166 6217 0.9950 +6166 6218 0.9980 +6166 6222 0.9980 +6166 6223 0.9980 +6166 6224 0.9970 +6166 6227 0.9960 +6166 6228 0.9960 +6166 6229 0.9980 +6166 6230 0.9980 +6166 6231 0.9960 +6166 6232 0.9970 +6166 6233 0.9950 +6166 6234 0.9970 +6166 6235 0.9970 +6166 6633 0.5160 +6166 6636 0.4140 +6166 6637 0.4110 +6166 6726 0.8640 +6166 6727 0.9230 +6166 6728 0.8950 +6166 6729 0.8680 +6166 6730 0.8820 +6166 6731 0.8590 +6166 6734 0.8160 +6166 7178 0.6490 +6166 7311 0.9940 +6166 7314 0.5440 +6166 7316 0.5240 +6166 7494 0.8030 +6166 7570 0.6890 +6166 7866 0.4560 +6166 8266 0.6720 +6166 8638 0.5050 +6166 8721 0.7060 +6166 8894 0.6040 +6166 9045 0.9970 +6166 9132 0.4960 +6166 9147 0.8340 +6166 9312 0.4960 +6166 9343 0.6020 +6166 9349 0.9970 +6166 9636 0.5270 +6166 9669 0.7840 +6166 9732 0.8450 +6166 9789 0.4420 +6166 9858 0.6850 +6166 10169 0.4930 +6166 10200 0.4100 +6166 10209 0.4790 +6166 10399 0.9900 +6166 10412 0.9280 +6166 10430 0.8190 +6166 10438 0.4130 +6166 10473 0.7100 +6166 10537 0.5080 +6166 10557 0.6640 +6166 10767 0.8460 +6166 10952 0.9280 +6166 10985 0.6110 +6166 11222 0.7420 +6166 11224 0.9970 +6166 22894 0.4070 +6166 22927 0.5680 +6166 23020 0.4040 +6166 23148 0.4630 +6166 23173 0.4240 +6166 23204 0.8000 +6166 23246 0.6920 +6166 23478 0.4690 +6166 23480 0.8970 +6166 23481 0.7010 +6166 23517 0.4980 +6166 23521 0.9970 +6166 23560 0.8620 +6166 23640 0.6660 +6166 23708 0.4990 +6166 25873 0.9970 +6166 26046 0.8110 +6166 26135 0.9380 +6166 26168 0.5130 +6166 26251 0.4960 +6166 27012 0.4960 +6166 27043 0.5110 +6166 28972 0.4790 +6166 28991 0.4190 +6166 28998 0.8340 +6166 29088 0.5630 +6166 29093 0.8150 +6166 29889 0.8720 +6166 29927 0.8580 +6166 29978 0.4520 +6166 29979 0.4630 +6166 29997 0.5490 +6166 50613 0.4480 +6166 51042 0.8630 +6166 51065 0.8970 +6166 51068 0.8730 +6166 51069 0.7460 +6166 51073 0.7290 +6166 51081 0.8320 +6166 51116 0.7440 +6166 51119 0.4680 +6166 51121 0.9880 +6166 51149 0.8600 +6166 51154 0.7670 +6166 51187 0.9640 +6166 51233 0.4340 +6166 51258 0.6020 +6166 51319 0.8460 +6166 51372 0.8020 +6166 51574 0.4560 +6166 51650 0.4520 +6166 53918 0.8540 +6166 54499 0.8200 +6166 54543 0.4520 +6166 54596 0.4390 +6166 54881 0.5060 +6166 54948 0.7620 +6166 55173 0.8790 +6166 55272 0.8550 +6166 55316 0.8100 +6166 55319 0.8020 +6166 55341 0.8680 +6166 55505 0.4500 +6166 55629 0.5080 +6166 55646 0.8470 +6166 55651 0.6680 +6166 55759 0.7350 +6166 55802 0.5420 +6166 55821 0.4280 +6166 55854 0.4430 +6166 56479 0.4960 +6166 56648 0.7160 +6166 56893 0.4670 +6166 56926 0.8190 +6166 56965 0.5100 +6166 57003 0.8160 +6166 57418 0.5150 +6166 58477 0.8240 +6166 58505 0.4650 +6166 60559 0.4250 +6166 60678 0.9090 +6166 63931 0.7650 +6166 64221 0.4990 +6166 64374 0.6660 +6166 64960 0.8240 +6166 64963 0.7980 +6166 64969 0.8150 +6166 65003 0.6890 +6166 65008 0.7930 +6166 65121 0.5520 +6166 65122 0.5520 +6166 79036 0.4050 +6166 79048 0.8090 +6166 79590 0.8370 +6166 79631 0.5910 +6166 79668 0.5080 +6166 79707 0.5040 +6166 80349 0.5040 +6166 81875 0.4310 +6166 81887 0.5060 +6166 84298 0.8490 +6166 84549 0.5050 +6166 84993 0.4870 +6166 85476 0.6060 +6166 90441 0.8660 +6166 90459 0.4080 +6166 90701 0.4160 +6166 91875 0.8210 +6166 92196 0.5180 +6166 93107 0.4960 +6166 93550 0.5050 +6166 114987 0.8290 +6166 115098 0.8650 +6166 115353 0.4060 +6166 116832 0.9490 +6166 124454 0.7020 +6166 126402 0.8010 +6166 140032 0.8880 +6166 140801 0.9800 +6166 143244 0.7160 +6166 143630 0.4480 +6166 164153 0.5420 +6166 169522 0.4960 +6166 170850 0.4960 +6166 200916 0.9080 +6166 201595 0.5100 +6166 203068 0.8030 +6166 254268 0.8210 +6166 283518 0.4960 +6166 285855 0.8500 +6166 342538 0.8890 +6166 343068 0.5520 +6166 343070 0.5520 +6166 347487 0.8310 +6166 387129 0.7220 +6166 390999 0.5520 +6166 391002 0.5520 +6166 400735 0.5520 +6166 400736 0.5520 +6166 440560 0.5520 +6166 440561 0.5520 +6166 441873 0.5520 +6166 641776 0.6470 +6166 643909 0.6470 +6166 645051 0.5980 +6166 645073 0.5980 +6166 645359 0.5520 +6166 653619 0.5520 +6166 728524 0.6470 +6166 729396 0.5980 +6166 729422 0.5980 +6166 729428 0.5980 +6166 729431 0.5980 +6166 729442 0.5980 +6166 729447 0.5980 +6166 729528 0.5520 +6166 100008586 0.5980 +6166 100128731 0.4680 +6166 100132399 0.5980 +6166 100287482 0.6850 +6166 100505478 0.7070 +6166 100526842 0.9700 +6166 100529097 0.9350 +6166 100529239 0.9670 +6166 100996746 0.6470 +6166 101929983 0.5520 +6166 102724473 0.5980 +6166 105180390 0.6470 +6166 105180391 0.6470 +6167 6168 0.9990 +6167 6169 0.9990 +6167 6170 0.9980 +6167 6171 0.6940 +6167 6173 0.9990 +6167 6175 0.9980 +6167 6176 0.9990 +6167 6181 0.9990 +6167 6183 0.4950 +6167 6184 0.5070 +6167 6187 0.9990 +6167 6188 0.9990 +6167 6189 0.9990 +6167 6191 0.9950 +6167 6192 0.9900 +6167 6193 0.9990 +6167 6194 0.9990 +6167 6201 0.9990 +6167 6202 0.9990 +6167 6203 0.9990 +6167 6204 0.9970 +6167 6205 0.9990 +6167 6206 0.9990 +6167 6207 0.9990 +6167 6208 0.9990 +6167 6209 0.9990 +6167 6210 0.9980 +6167 6217 0.9990 +6167 6218 0.9990 +6167 6222 0.9990 +6167 6223 0.9990 +6167 6224 0.9990 +6167 6227 0.9990 +6167 6228 0.9990 +6167 6229 0.9990 +6167 6230 0.9990 +6167 6231 0.9990 +6167 6232 0.9990 +6167 6233 0.9990 +6167 6234 0.9990 +6167 6235 0.9990 +6167 6499 0.5820 +6167 6635 0.4500 +6167 6726 0.8790 +6167 6727 0.8700 +6167 6728 0.8760 +6167 6729 0.8870 +6167 6730 0.8770 +6167 6731 0.8560 +6167 6734 0.8190 +6167 6838 0.4290 +6167 7178 0.7920 +6167 7311 0.9990 +6167 7314 0.4990 +6167 7316 0.4890 +6167 7494 0.8000 +6167 7866 0.6610 +6167 8266 0.6790 +6167 8568 0.7590 +6167 8638 0.5300 +6167 8665 0.4890 +6167 8721 0.8840 +6167 8886 0.8670 +6167 8894 0.5660 +6167 9045 0.9990 +6167 9147 0.8000 +6167 9349 0.9990 +6167 9636 0.4780 +6167 9652 0.4720 +6167 9669 0.9460 +6167 9732 0.8900 +6167 9789 0.4080 +6167 9858 0.4230 +6167 10399 0.9990 +6167 10412 0.8960 +6167 10430 0.8150 +6167 10438 0.6540 +6167 10473 0.7450 +6167 10537 0.4890 +6167 10767 0.8590 +6167 10952 0.9040 +6167 10969 0.8640 +6167 10985 0.8600 +6167 11222 0.6460 +6167 11224 0.9990 +6167 22894 0.4140 +6167 22927 0.8300 +6167 23076 0.7620 +6167 23204 0.9530 +6167 23212 0.5410 +6167 23246 0.9370 +6167 23478 0.4230 +6167 23480 0.8690 +6167 23481 0.9210 +6167 23517 0.6560 +6167 23521 0.9990 +6167 23548 0.4040 +6167 23560 0.9680 +6167 23708 0.4990 +6167 25873 0.9990 +6167 26046 0.8100 +6167 26135 0.9750 +6167 26155 0.8420 +6167 26156 0.8820 +6167 26168 0.5050 +6167 26354 0.7770 +6167 27043 0.5520 +6167 28972 0.4790 +6167 28991 0.4650 +6167 28998 0.5990 +6167 29088 0.4720 +6167 29093 0.8020 +6167 29889 0.9120 +6167 29927 0.8580 +6167 29997 0.8950 +6167 51042 0.8820 +6167 51065 0.9850 +6167 51068 0.9180 +6167 51069 0.6230 +6167 51073 0.6530 +6167 51081 0.7820 +6167 51101 0.4360 +6167 51116 0.4350 +6167 51121 0.9950 +6167 51149 0.9290 +6167 51154 0.8900 +6167 51187 0.9780 +6167 51253 0.6790 +6167 51264 0.4940 +6167 51319 0.9020 +6167 51388 0.8810 +6167 51398 0.4140 +6167 51642 0.4290 +6167 53918 0.8560 +6167 54148 0.4320 +6167 54463 0.4510 +6167 54464 0.4800 +6167 54475 0.4420 +6167 54499 0.8160 +6167 54534 0.4290 +6167 54543 0.7020 +6167 54552 0.7510 +6167 54663 0.8620 +6167 54881 0.7060 +6167 54948 0.4840 +6167 55052 0.4830 +6167 55139 0.4320 +6167 55153 0.4290 +6167 55168 0.4950 +6167 55173 0.5110 +6167 55272 0.5450 +6167 55299 0.8560 +6167 55316 0.8370 +6167 55319 0.8000 +6167 55341 0.8850 +6167 55629 0.5040 +6167 55646 0.8060 +6167 55651 0.4620 +6167 55759 0.9330 +6167 55802 0.5010 +6167 55854 0.4400 +6167 56648 0.8110 +6167 56926 0.8150 +6167 57003 0.8150 +6167 57129 0.4320 +6167 57418 0.7090 +6167 57696 0.4670 +6167 58477 0.8200 +6167 58505 0.5170 +6167 60559 0.4980 +6167 60678 0.9030 +6167 63875 0.4250 +6167 63931 0.5040 +6167 64221 0.5150 +6167 64318 0.8480 +6167 64960 0.5520 +6167 64963 0.5030 +6167 64969 0.4750 +6167 65003 0.6820 +6167 65008 0.6310 +6167 79036 0.5110 +6167 79048 0.8060 +6167 79159 0.4290 +6167 79590 0.7240 +6167 79631 0.5010 +6167 79707 0.5040 +6167 80135 0.8470 +6167 80218 0.4890 +6167 80349 0.4720 +6167 81875 0.4050 +6167 81887 0.5010 +6167 84154 0.6930 +6167 84298 0.8130 +6167 84365 0.8570 +6167 84545 0.5140 +6167 84549 0.8420 +6167 84851 0.5130 +6167 85476 0.4190 +6167 90441 0.8860 +6167 90701 0.4080 +6167 91408 0.4150 +6167 91875 0.8270 +6167 92196 0.8080 +6167 93550 0.4780 +6167 114823 0.4510 +6167 114987 0.8490 +6167 115098 0.8560 +6167 116832 0.9820 +6167 117246 0.8590 +6167 122416 0.4080 +6167 124995 0.4370 +6167 126402 0.7710 +6167 132141 0.4360 +6167 140032 0.9490 +6167 140801 0.9860 +6167 143244 0.8110 +6167 146212 0.5300 +6167 164153 0.4780 +6167 200916 0.9750 +6167 201595 0.7860 +6167 203068 0.8070 +6167 221078 0.7610 +6167 285855 0.9760 +6167 342538 0.8740 +6167 347487 0.8860 +6167 387129 0.7690 +6167 641776 0.6420 +6167 643909 0.6420 +6167 645051 0.6500 +6167 645073 0.6580 +6167 728524 0.6420 +6167 729396 0.6500 +6167 729422 0.6500 +6167 729428 0.6500 +6167 729431 0.6500 +6167 729442 0.6500 +6167 729447 0.6570 +6167 100008586 0.6580 +6167 100128731 0.5210 +6167 100132399 0.6500 +6167 100287482 0.4220 +6167 100505478 0.4500 +6167 100526842 0.9950 +6167 100529097 0.9600 +6167 100529239 0.9940 +6167 100996746 0.6420 +6167 102724473 0.6500 +6167 105180390 0.6420 +6167 105180391 0.6420 +6168 6169 0.9990 +6168 6170 0.9980 +6168 6171 0.7520 +6168 6173 0.9980 +6168 6175 0.9990 +6168 6176 0.9990 +6168 6181 0.9990 +6168 6183 0.9720 +6168 6184 0.5200 +6168 6187 0.9990 +6168 6188 0.9990 +6168 6189 0.9990 +6168 6191 0.9990 +6168 6192 0.9920 +6168 6193 0.9990 +6168 6194 0.9990 +6168 6201 0.9990 +6168 6202 0.9990 +6168 6203 0.9990 +6168 6204 0.9980 +6168 6205 0.9990 +6168 6206 0.9990 +6168 6207 0.9990 +6168 6208 0.9990 +6168 6209 0.9990 +6168 6210 0.9970 +6168 6217 0.9990 +6168 6218 0.9990 +6168 6222 0.9990 +6168 6223 0.9990 +6168 6224 0.9990 +6168 6227 0.9990 +6168 6228 0.9990 +6168 6229 0.9990 +6168 6230 0.9990 +6168 6231 0.9990 +6168 6232 0.9990 +6168 6233 0.9990 +6168 6234 0.9990 +6168 6235 0.9990 +6168 6499 0.4370 +6168 6613 0.5740 +6168 6726 0.8960 +6168 6727 0.8930 +6168 6728 0.8920 +6168 6729 0.8880 +6168 6730 0.8970 +6168 6731 0.8730 +6168 6734 0.8150 +6168 6780 0.4960 +6168 6838 0.4310 +6168 6924 0.5200 +6168 7011 0.4080 +6168 7178 0.6810 +6168 7264 0.5340 +6168 7311 0.9990 +6168 7314 0.6950 +6168 7316 0.6770 +6168 7341 0.5370 +6168 7468 0.5100 +6168 7494 0.8000 +6168 7555 0.6390 +6168 7570 0.4310 +6168 7866 0.7550 +6168 8034 0.4790 +6168 8260 0.4250 +6168 8266 0.7550 +6168 8614 0.5070 +6168 8638 0.6320 +6168 8665 0.4600 +6168 8667 0.4200 +6168 8668 0.5400 +6168 8721 0.8830 +6168 8894 0.6560 +6168 9015 0.4220 +6168 9045 0.9990 +6168 9132 0.5910 +6168 9147 0.8040 +6168 9188 0.5590 +6168 9312 0.5910 +6168 9343 0.8360 +6168 9349 0.9990 +6168 9636 0.6400 +6168 9652 0.4360 +6168 9669 0.9470 +6168 9732 0.9750 +6168 9789 0.5060 +6168 9801 0.4210 +6168 9858 0.8830 +6168 9933 0.5620 +6168 10199 0.4280 +6168 10200 0.4250 +6168 10399 0.9990 +6168 10412 0.9850 +6168 10430 0.8450 +6168 10438 0.6430 +6168 10473 0.9250 +6168 10480 0.4130 +6168 10526 0.4240 +6168 10528 0.4550 +6168 10537 0.6430 +6168 10557 0.8420 +6168 10575 0.4250 +6168 10643 0.4700 +6168 10666 0.4100 +6168 10767 0.8730 +6168 10952 0.9190 +6168 10969 0.6380 +6168 10985 0.8730 +6168 10988 0.6250 +6168 11065 0.4550 +6168 11222 0.9470 +6168 11224 0.9990 +6168 22894 0.4010 +6168 22927 0.8440 +6168 23029 0.5430 +6168 23173 0.5450 +6168 23204 0.9460 +6168 23212 0.7900 +6168 23246 0.7990 +6168 23478 0.4250 +6168 23480 0.9000 +6168 23481 0.9230 +6168 23517 0.6490 +6168 23521 0.9990 +6168 23560 0.9220 +6168 23640 0.7950 +6168 23708 0.4990 +6168 25829 0.4060 +6168 25873 0.9990 +6168 26046 0.8120 +6168 26135 0.9790 +6168 26156 0.5520 +6168 26168 0.8900 +6168 26251 0.5910 +6168 26354 0.5360 +6168 26986 0.4520 +6168 27012 0.5910 +6168 27043 0.5710 +6168 27430 0.5310 +6168 28972 0.4570 +6168 28991 0.5870 +6168 28998 0.9560 +6168 29088 0.6570 +6168 29093 0.9520 +6168 29796 0.4160 +6168 29843 0.5150 +6168 29889 0.9900 +6168 29927 0.8780 +6168 29978 0.5840 +6168 29979 0.5990 +6168 29997 0.9090 +6168 50487 0.4100 +6168 50613 0.5730 +6168 50804 0.4270 +6168 50814 0.5210 +6168 51042 0.8890 +6168 51065 0.9880 +6168 51068 0.9040 +6168 51069 0.9580 +6168 51073 0.9420 +6168 51081 0.9530 +6168 51116 0.8910 +6168 51119 0.9320 +6168 51121 0.9960 +6168 51149 0.9790 +6168 51154 0.9710 +6168 51187 0.9920 +6168 51224 0.5080 +6168 51319 0.9750 +6168 51388 0.6440 +6168 51398 0.5150 +6168 51574 0.5240 +6168 51720 0.4140 +6168 53918 0.8770 +6168 54433 0.4410 +6168 54463 0.4460 +6168 54464 0.4580 +6168 54475 0.4550 +6168 54499 0.8190 +6168 54552 0.4230 +6168 54606 0.5100 +6168 54881 0.7330 +6168 54948 0.8320 +6168 55003 0.5470 +6168 55131 0.4280 +6168 55139 0.4370 +6168 55153 0.4430 +6168 55173 0.9820 +6168 55272 0.9700 +6168 55299 0.5760 +6168 55316 0.9730 +6168 55319 0.8090 +6168 55341 0.8970 +6168 55591 0.5400 +6168 55629 0.5070 +6168 55631 0.4420 +6168 55646 0.8710 +6168 55651 0.8470 +6168 55759 0.7140 +6168 55802 0.5100 +6168 55854 0.5150 +6168 55893 0.4100 +6168 55969 0.4290 +6168 56479 0.5910 +6168 56648 0.8260 +6168 56731 0.4100 +6168 56829 0.4310 +6168 56893 0.5830 +6168 56926 0.8180 +6168 56965 0.7630 +6168 57003 0.8170 +6168 57062 0.4780 +6168 57109 0.4510 +6168 57418 0.7230 +6168 58477 0.8160 +6168 58505 0.5200 +6168 60386 0.4470 +6168 60559 0.4080 +6168 60678 0.9040 +6168 63931 0.9520 +6168 64221 0.5000 +6168 64282 0.6140 +6168 64318 0.4650 +6168 64374 0.8010 +6168 64960 0.9550 +6168 64963 0.9470 +6168 64969 0.9660 +6168 65003 0.8750 +6168 65008 0.9400 +6168 65121 0.6520 +6168 65122 0.6520 +6168 79036 0.5110 +6168 79048 0.8090 +6168 79137 0.4370 +6168 79590 0.9640 +6168 79631 0.8320 +6168 79668 0.7610 +6168 79707 0.5040 +6168 80135 0.5360 +6168 80146 0.5200 +6168 80218 0.5200 +6168 80270 0.5200 +6168 80349 0.4560 +6168 81887 0.5080 +6168 84154 0.7650 +6168 84298 0.8350 +6168 84365 0.5900 +6168 84549 0.4460 +6168 84656 0.4460 +6168 84851 0.5080 +6168 84872 0.4200 +6168 84993 0.5890 +6168 85476 0.8300 +6168 90441 0.8870 +6168 90459 0.4050 +6168 90701 0.4130 +6168 91408 0.6650 +6168 91875 0.8330 +6168 92196 0.8080 +6168 93107 0.5910 +6168 93517 0.5200 +6168 93550 0.6300 +6168 112939 0.4400 +6168 114987 0.9480 +6168 115098 0.8590 +6168 116832 0.9760 +6168 117246 0.6880 +6168 118471 0.4010 +6168 124454 0.8380 +6168 126402 0.9490 +6168 137994 0.4290 +6168 140032 0.9630 +6168 140801 0.9950 +6168 143244 0.8260 +6168 143630 0.5730 +6168 147011 0.4100 +6168 154288 0.4100 +6168 162427 0.4310 +6168 164153 0.6380 +6168 169522 0.5910 +6168 170850 0.5910 +6168 200916 0.9840 +6168 201595 0.7870 +6168 203068 0.8400 +6168 203427 0.4460 +6168 205564 0.8450 +6168 254268 0.9240 +6168 283518 0.5910 +6168 283600 0.4460 +6168 285855 0.9870 +6168 339230 0.4850 +6168 342538 0.8700 +6168 343068 0.6520 +6168 343070 0.6520 +6168 347487 0.9750 +6168 387129 0.9340 +6168 390999 0.6520 +6168 391002 0.6520 +6168 400506 0.4540 +6168 400735 0.6520 +6168 400736 0.6520 +6168 440560 0.6520 +6168 440561 0.6520 +6168 441873 0.6520 +6168 619279 0.4100 +6168 641776 0.8010 +6168 642987 0.4100 +6168 643836 0.4770 +6168 643909 0.8010 +6168 645051 0.7860 +6168 645073 0.7860 +6168 645359 0.6520 +6168 653619 0.6520 +6168 692312 0.4490 +6168 728378 0.4240 +6168 728524 0.8010 +6168 729396 0.7860 +6168 729422 0.7860 +6168 729428 0.7860 +6168 729431 0.7860 +6168 729442 0.7860 +6168 729447 0.7860 +6168 729528 0.6520 +6168 100008586 0.7860 +6168 100128731 0.5290 +6168 100132399 0.7860 +6168 100287482 0.8830 +6168 100505478 0.9240 +6168 100526842 0.9960 +6168 100527943 0.4290 +6168 100529097 0.9650 +6168 100529239 0.9940 +6168 100996746 0.8010 +6168 101929983 0.6520 +6168 102724473 0.7860 +6168 105180390 0.8010 +6168 105180391 0.8010 +6169 6170 0.9990 +6169 6171 0.9830 +6169 6173 0.9990 +6169 6175 0.9990 +6169 6176 0.9990 +6169 6181 0.9990 +6169 6183 0.9540 +6169 6184 0.5110 +6169 6187 0.9990 +6169 6188 0.9990 +6169 6189 0.9990 +6169 6191 0.9980 +6169 6192 0.9870 +6169 6193 0.9990 +6169 6194 0.9990 +6169 6201 0.9990 +6169 6202 0.9990 +6169 6203 0.9990 +6169 6204 0.9990 +6169 6205 0.9990 +6169 6206 0.9990 +6169 6207 0.9990 +6169 6208 0.9990 +6169 6209 0.9990 +6169 6210 0.9990 +6169 6217 0.9990 +6169 6218 0.9990 +6169 6222 0.9990 +6169 6223 0.9990 +6169 6224 0.9990 +6169 6227 0.9990 +6169 6228 0.9990 +6169 6229 0.9990 +6169 6230 0.9990 +6169 6231 0.9990 +6169 6232 0.9990 +6169 6233 0.9990 +6169 6234 0.9990 +6169 6235 0.9990 +6169 6499 0.5070 +6169 6635 0.5370 +6169 6637 0.4380 +6169 6726 0.8890 +6169 6727 0.8920 +6169 6728 0.9020 +6169 6729 0.8850 +6169 6730 0.9100 +6169 6731 0.8860 +6169 6734 0.8180 +6169 7011 0.4640 +6169 7155 0.4290 +6169 7178 0.7700 +6169 7264 0.5130 +6169 7311 0.9990 +6169 7314 0.6770 +6169 7316 0.6910 +6169 7494 0.8000 +6169 7866 0.7600 +6169 8034 0.4260 +6169 8260 0.5040 +6169 8266 0.7480 +6169 8361 0.4030 +6169 8568 0.4720 +6169 8638 0.6320 +6169 8663 0.5190 +6169 8664 0.6270 +6169 8665 0.4970 +6169 8667 0.7310 +6169 8721 0.9050 +6169 8767 0.4330 +6169 8886 0.9160 +6169 8894 0.6170 +6169 9045 0.9990 +6169 9132 0.5840 +6169 9147 0.8070 +6169 9312 0.5840 +6169 9343 0.8150 +6169 9349 0.9990 +6169 9584 0.4370 +6169 9636 0.6320 +6169 9652 0.5070 +6169 9669 0.9550 +6169 9732 0.9700 +6169 9789 0.4030 +6169 9858 0.8480 +6169 10061 0.4380 +6169 10200 0.4100 +6169 10209 0.4060 +6169 10399 0.9990 +6169 10412 0.9210 +6169 10430 0.8480 +6169 10436 0.4320 +6169 10438 0.6910 +6169 10473 0.9070 +6169 10476 0.4380 +6169 10528 0.4810 +6169 10537 0.6320 +6169 10557 0.7250 +6169 10666 0.4180 +6169 10767 0.9060 +6169 10952 0.9310 +6169 10969 0.8740 +6169 10985 0.8950 +6169 10988 0.6240 +6169 11222 0.9310 +6169 11224 0.9990 +6169 22894 0.4050 +6169 22927 0.9010 +6169 23076 0.4660 +6169 23148 0.4600 +6169 23173 0.6350 +6169 23185 0.9020 +6169 23195 0.4560 +6169 23204 0.9480 +6169 23212 0.5650 +6169 23246 0.9740 +6169 23478 0.4210 +6169 23480 0.9070 +6169 23481 0.9550 +6169 23517 0.7050 +6169 23521 0.9990 +6169 23560 0.9700 +6169 23640 0.7700 +6169 23708 0.4990 +6169 24140 0.5560 +6169 25873 0.9990 +6169 26046 0.8120 +6169 26135 0.9860 +6169 26155 0.8610 +6169 26156 0.8890 +6169 26168 0.5080 +6169 26251 0.5840 +6169 26354 0.8130 +6169 26986 0.4830 +6169 27012 0.5840 +6169 27043 0.5700 +6169 27335 0.5470 +6169 27430 0.5210 +6169 28972 0.4630 +6169 28991 0.5910 +6169 28998 0.9420 +6169 29088 0.6660 +6169 29093 0.9250 +6169 29796 0.4720 +6169 29889 0.9340 +6169 29927 0.8900 +6169 29960 0.5830 +6169 29978 0.5790 +6169 29979 0.5870 +6169 29997 0.9740 +6169 50487 0.4180 +6169 50613 0.5750 +6169 50814 0.5130 +6169 51042 0.9580 +6169 51065 0.9900 +6169 51068 0.9390 +6169 51069 0.9130 +6169 51073 0.9360 +6169 51081 0.9420 +6169 51116 0.8520 +6169 51121 0.9960 +6169 51149 0.9770 +6169 51154 0.9280 +6169 51187 0.9880 +6169 51319 0.9690 +6169 51388 0.8830 +6169 51398 0.5430 +6169 51690 0.4170 +6169 51720 0.4270 +6169 53918 0.8960 +6169 54460 0.6430 +6169 54463 0.4930 +6169 54464 0.5150 +6169 54475 0.5210 +6169 54499 0.8170 +6169 54543 0.5530 +6169 54552 0.8110 +6169 54663 0.5070 +6169 54881 0.7460 +6169 54888 0.5020 +6169 54948 0.7740 +6169 55139 0.5180 +6169 55153 0.6200 +6169 55173 0.9630 +6169 55176 0.4200 +6169 55272 0.9580 +6169 55299 0.8920 +6169 55316 0.9800 +6169 55319 0.8020 +6169 55341 0.9320 +6169 55505 0.6230 +6169 55591 0.5440 +6169 55629 0.5040 +6169 55646 0.8290 +6169 55651 0.7460 +6169 55695 0.4550 +6169 55759 0.9400 +6169 55802 0.5390 +6169 55854 0.7000 +6169 55893 0.4220 +6169 55969 0.4370 +6169 56257 0.4390 +6169 56479 0.5840 +6169 56648 0.8220 +6169 56731 0.4190 +6169 56893 0.5940 +6169 56926 0.8190 +6169 57003 0.8560 +6169 57418 0.7510 +6169 57532 0.7270 +6169 57696 0.5430 +6169 58477 0.8510 +6169 58505 0.5100 +6169 60386 0.4070 +6169 60559 0.4050 +6169 60678 0.9120 +6169 63899 0.5470 +6169 63931 0.9520 +6169 64221 0.4990 +6169 64318 0.8600 +6169 64374 0.7700 +6169 64960 0.9440 +6169 64963 0.9470 +6169 64969 0.9380 +6169 65003 0.8520 +6169 65008 0.8980 +6169 65121 0.6580 +6169 65122 0.6580 +6169 79036 0.5110 +6169 79048 0.8040 +6169 79137 0.4580 +6169 79159 0.6310 +6169 79590 0.9630 +6169 79612 0.4290 +6169 79631 0.7960 +6169 79707 0.5240 +6169 79730 0.4540 +6169 80135 0.9110 +6169 80146 0.5100 +6169 80155 0.4620 +6169 80218 0.5570 +6169 80270 0.5100 +6169 80349 0.5110 +6169 81887 0.5160 +6169 84154 0.8110 +6169 84273 0.4790 +6169 84298 0.8130 +6169 84365 0.9440 +6169 84549 0.8700 +6169 84779 0.4710 +6169 84993 0.6000 +6169 85476 0.7970 +6169 90441 0.8970 +6169 90459 0.4910 +6169 90701 0.4100 +6169 91408 0.5090 +6169 91875 0.8200 +6169 92170 0.6370 +6169 92196 0.8080 +6169 93107 0.5840 +6169 93517 0.5100 +6169 93550 0.6320 +6169 94015 0.5130 +6169 114987 0.9670 +6169 115098 0.8910 +6169 116832 0.9860 +6169 117246 0.8730 +6169 124454 0.8760 +6169 126402 0.9380 +6169 140032 0.9350 +6169 140801 0.9970 +6169 143244 0.8220 +6169 143630 0.5750 +6169 146212 0.7730 +6169 147011 0.4180 +6169 149041 0.5100 +6169 152518 0.4290 +6169 154288 0.4180 +6169 162427 0.4510 +6169 164153 0.6440 +6169 169522 0.5840 +6169 170850 0.5840 +6169 200916 0.9840 +6169 201595 0.7860 +6169 203068 0.8170 +6169 203427 0.4070 +6169 221078 0.7850 +6169 221710 0.4420 +6169 254268 0.9780 +6169 283518 0.5840 +6169 283600 0.4070 +6169 285855 0.9750 +6169 342538 0.8890 +6169 343068 0.6580 +6169 343070 0.6580 +6169 347487 0.9720 +6169 387129 0.9270 +6169 387338 0.4820 +6169 390999 0.6580 +6169 391002 0.6580 +6169 400735 0.6580 +6169 400736 0.6580 +6169 440560 0.6580 +6169 440561 0.6580 +6169 441873 0.6580 +6169 619279 0.4180 +6169 641776 0.8000 +6169 642987 0.4180 +6169 643909 0.8000 +6169 645051 0.7840 +6169 645073 0.7840 +6169 645359 0.6580 +6169 653619 0.6580 +6169 728524 0.8000 +6169 729396 0.7840 +6169 729422 0.7840 +6169 729428 0.7840 +6169 729431 0.7840 +6169 729442 0.7840 +6169 729447 0.7840 +6169 729528 0.6580 +6169 100008586 0.7840 +6169 100128731 0.5600 +6169 100132399 0.7840 +6169 100287482 0.8480 +6169 100505478 0.9160 +6169 100526842 0.9950 +6169 100527943 0.4290 +6169 100529097 0.9640 +6169 100529239 0.9950 +6169 100996746 0.8000 +6169 101929983 0.6580 +6169 102724473 0.7840 +6169 105180390 0.8000 +6169 105180391 0.8000 +6169 114483834 0.4710 +6170 6171 0.9940 +6170 6173 0.9990 +6170 6175 0.9970 +6170 6176 0.9970 +6170 6181 0.9960 +6170 6183 0.7130 +6170 6184 0.4370 +6170 6187 0.9970 +6170 6188 0.9980 +6170 6189 0.9990 +6170 6191 0.9960 +6170 6192 0.9790 +6170 6193 0.9980 +6170 6194 0.9980 +6170 6201 0.9940 +6170 6202 0.9980 +6170 6203 0.9990 +6170 6204 0.9990 +6170 6205 0.9990 +6170 6206 0.9990 +6170 6207 0.9990 +6170 6208 0.9960 +6170 6209 0.9980 +6170 6210 0.9990 +6170 6217 0.9990 +6170 6218 0.9980 +6170 6222 0.9990 +6170 6223 0.9980 +6170 6224 0.9990 +6170 6227 0.9990 +6170 6228 0.9990 +6170 6229 0.9990 +6170 6230 0.9990 +6170 6231 0.9990 +6170 6232 0.9970 +6170 6233 0.9980 +6170 6234 0.9990 +6170 6235 0.9990 +6170 6499 0.5030 +6170 6633 0.5810 +6170 6636 0.4100 +6170 6637 0.5850 +6170 6726 0.8860 +6170 6727 0.9040 +6170 6728 0.8590 +6170 6729 0.9080 +6170 6730 0.8790 +6170 6731 0.8920 +6170 6734 0.8310 +6170 7178 0.6430 +6170 7311 0.9950 +6170 7314 0.5100 +6170 7316 0.5080 +6170 7317 0.4180 +6170 7407 0.5470 +6170 7494 0.8040 +6170 7866 0.5300 +6170 8079 0.5410 +6170 8266 0.5720 +6170 8565 0.7560 +6170 8638 0.4860 +6170 8665 0.4300 +6170 8667 0.6710 +6170 8721 0.8270 +6170 8833 0.4560 +6170 8886 0.5040 +6170 8894 0.6100 +6170 9045 0.9990 +6170 9147 0.8010 +6170 9255 0.4840 +6170 9343 0.5400 +6170 9349 0.9990 +6170 9636 0.4860 +6170 9652 0.4360 +6170 9669 0.9560 +6170 9732 0.9080 +6170 9789 0.4050 +6170 9858 0.6270 +6170 10056 0.4150 +6170 10209 0.5320 +6170 10399 0.9980 +6170 10412 0.8500 +6170 10430 0.8250 +6170 10438 0.6420 +6170 10450 0.4050 +6170 10473 0.6840 +6170 10528 0.4760 +6170 10537 0.4870 +6170 10557 0.5260 +6170 10666 0.4580 +6170 10767 0.8680 +6170 10952 0.9660 +6170 10969 0.5050 +6170 10985 0.5340 +6170 10988 0.5250 +6170 11222 0.6500 +6170 11224 0.9980 +6170 22894 0.5120 +6170 22927 0.6920 +6170 22984 0.4190 +6170 23148 0.4150 +6170 23173 0.4190 +6170 23185 0.9000 +6170 23204 0.8390 +6170 23212 0.5690 +6170 23246 0.7380 +6170 23395 0.5150 +6170 23478 0.5370 +6170 23480 0.9690 +6170 23481 0.8990 +6170 23517 0.6810 +6170 23521 0.9980 +6170 23560 0.9670 +6170 23640 0.5260 +6170 23708 0.6670 +6170 24140 0.4230 +6170 25873 0.9990 +6170 25973 0.5650 +6170 26046 0.8140 +6170 26135 0.9650 +6170 26155 0.5870 +6170 26156 0.8200 +6170 26168 0.4990 +6170 26354 0.6520 +6170 27043 0.5460 +6170 28972 0.4620 +6170 28991 0.4500 +6170 28998 0.7240 +6170 29088 0.5210 +6170 29093 0.6710 +6170 29789 0.4880 +6170 29889 0.9260 +6170 29927 0.9200 +6170 29997 0.8880 +6170 50487 0.4580 +6170 51042 0.8890 +6170 51065 0.9510 +6170 51068 0.9290 +6170 51069 0.6850 +6170 51073 0.6980 +6170 51081 0.7790 +6170 51116 0.6710 +6170 51121 0.9880 +6170 51149 0.9220 +6170 51154 0.8550 +6170 51187 0.9800 +6170 51319 0.8080 +6170 51372 0.5090 +6170 51388 0.4600 +6170 51398 0.4590 +6170 51520 0.5300 +6170 51720 0.4580 +6170 53918 0.8610 +6170 54463 0.4650 +6170 54464 0.4570 +6170 54475 0.4780 +6170 54499 0.8290 +6170 54543 0.8300 +6170 54552 0.6530 +6170 54881 0.7030 +6170 54948 0.5300 +6170 55139 0.4490 +6170 55153 0.4510 +6170 55157 0.6040 +6170 55173 0.7350 +6170 55176 0.6190 +6170 55272 0.7120 +6170 55278 0.6760 +6170 55299 0.4830 +6170 55316 0.9370 +6170 55319 0.8040 +6170 55341 0.8940 +6170 55505 0.7670 +6170 55591 0.4220 +6170 55629 0.5200 +6170 55646 0.8350 +6170 55651 0.6710 +6170 55699 0.6410 +6170 55759 0.7180 +6170 55802 0.4990 +6170 55854 0.4530 +6170 55893 0.4650 +6170 56648 0.7460 +6170 56731 0.4580 +6170 56926 0.8190 +6170 57003 0.8240 +6170 57038 0.5320 +6170 57418 0.7510 +6170 57470 0.4150 +6170 57532 0.7250 +6170 58477 0.8190 +6170 58505 0.4560 +6170 60559 0.4320 +6170 60678 0.9140 +6170 63931 0.7030 +6170 64221 0.5000 +6170 64318 0.4550 +6170 64374 0.5260 +6170 64960 0.7070 +6170 64963 0.7060 +6170 64969 0.6510 +6170 65003 0.6480 +6170 65008 0.7330 +6170 65121 0.5100 +6170 65122 0.5100 +6170 79036 0.4400 +6170 79048 0.8160 +6170 79073 0.6440 +6170 79590 0.6850 +6170 79631 0.5390 +6170 79707 0.4990 +6170 80135 0.4440 +6170 80218 0.4860 +6170 80349 0.4870 +6170 81875 0.4070 +6170 81887 0.5310 +6170 84154 0.7140 +6170 84298 0.8140 +6170 84365 0.8040 +6170 84549 0.4750 +6170 85476 0.5390 +6170 87178 0.4050 +6170 90441 0.8880 +6170 90701 0.4890 +6170 91408 0.4310 +6170 91875 0.8620 +6170 92196 0.6180 +6170 92935 0.4720 +6170 93550 0.4860 +6170 114987 0.7710 +6170 115098 0.8570 +6170 116832 0.5390 +6170 117246 0.8670 +6170 126402 0.7680 +6170 140032 0.8970 +6170 140801 0.9890 +6170 143244 0.7460 +6170 147011 0.4580 +6170 154288 0.4580 +6170 158584 0.6840 +6170 164153 0.5980 +6170 170622 0.5260 +6170 200916 0.9250 +6170 203068 0.8060 +6170 221823 0.4080 +6170 254268 0.9260 +6170 255308 0.4050 +6170 266812 0.4340 +6170 285855 0.9440 +6170 342538 0.8780 +6170 343068 0.5100 +6170 343070 0.5100 +6170 347487 0.9020 +6170 387129 0.7740 +6170 390999 0.5100 +6170 391002 0.5100 +6170 400735 0.5100 +6170 400736 0.5100 +6170 440560 0.5100 +6170 440561 0.5100 +6170 441873 0.5100 +6170 619279 0.4580 +6170 641776 0.6160 +6170 642987 0.4580 +6170 643909 0.6160 +6170 645051 0.6440 +6170 645073 0.6440 +6170 645359 0.5100 +6170 653619 0.5100 +6170 728524 0.6160 +6170 729396 0.6440 +6170 729422 0.6440 +6170 729428 0.6440 +6170 729431 0.6440 +6170 729442 0.6440 +6170 729447 0.6500 +6170 729528 0.5100 +6170 100008586 0.6440 +6170 100128731 0.5130 +6170 100132399 0.6440 +6170 100287482 0.6270 +6170 100505478 0.5820 +6170 100526842 0.9870 +6170 100529097 0.8830 +6170 100529239 0.9770 +6170 100996746 0.6160 +6170 101929983 0.5100 +6170 102724473 0.6440 +6170 105180390 0.6160 +6170 105180391 0.6160 +6171 6173 0.9710 +6171 6175 0.7750 +6171 6176 0.8430 +6171 6181 0.6390 +6171 6187 0.7350 +6171 6188 0.8370 +6171 6189 0.8320 +6171 6191 0.5390 +6171 6193 0.5800 +6171 6194 0.6740 +6171 6201 0.6720 +6171 6202 0.7290 +6171 6203 0.6930 +6171 6204 0.7500 +6171 6205 0.7770 +6171 6206 0.6760 +6171 6207 0.7130 +6171 6208 0.7040 +6171 6209 0.7770 +6171 6210 0.6720 +6171 6217 0.6860 +6171 6218 0.9490 +6171 6222 0.7430 +6171 6223 0.7410 +6171 6224 0.8280 +6171 6227 0.9740 +6171 6228 0.9510 +6171 6229 0.8070 +6171 6230 0.7420 +6171 6231 0.9690 +6171 6232 0.8990 +6171 6233 0.7870 +6171 6234 0.9750 +6171 6235 0.9790 +6171 6414 0.4320 +6171 6499 0.5070 +6171 7311 0.6200 +6171 8260 0.4020 +6171 8661 0.4510 +6171 8662 0.5390 +6171 8663 0.5350 +6171 8666 0.5540 +6171 8667 0.5950 +6171 8668 0.5900 +6171 8721 0.5550 +6171 8894 0.7540 +6171 9045 0.6990 +6171 9086 0.4290 +6171 9349 0.5830 +6171 9652 0.5070 +6171 9669 0.5340 +6171 9789 0.4050 +6171 10209 0.5040 +6171 10399 0.9170 +6171 10767 0.4290 +6171 11224 0.7640 +6171 22927 0.4290 +6171 23185 0.9000 +6171 23246 0.4990 +6171 23478 0.4330 +6171 23481 0.4990 +6171 23517 0.5310 +6171 23521 0.9310 +6171 23708 0.4990 +6171 25873 0.9710 +6171 26135 0.4330 +6171 26168 0.4990 +6171 26471 0.4500 +6171 27043 0.4990 +6171 28972 0.4210 +6171 51065 0.5960 +6171 51121 0.5900 +6171 51149 0.4340 +6171 51319 0.4690 +6171 51372 0.4080 +6171 54464 0.5150 +6171 54543 0.4170 +6171 54881 0.4990 +6171 55316 0.5220 +6171 55505 0.4250 +6171 55629 0.5130 +6171 55759 0.4990 +6171 55802 0.4990 +6171 55854 0.5280 +6171 57418 0.4990 +6171 57532 0.7210 +6171 60559 0.4760 +6171 60678 0.6870 +6171 63931 0.4200 +6171 64221 0.4990 +6171 79612 0.4290 +6171 79707 0.4990 +6171 80155 0.4290 +6171 81887 0.4990 +6171 84872 0.4180 +6171 90701 0.4130 +6171 114987 0.4610 +6171 115098 0.4290 +6171 116832 0.7410 +6171 140801 0.4810 +6171 200916 0.4870 +6171 255308 0.4290 +6171 285855 0.4770 +6171 728689 0.4290 +6171 100529097 0.4090 +6173 6175 0.9950 +6173 6176 0.9960 +6173 6181 0.9950 +6173 6183 0.8280 +6173 6187 0.9960 +6173 6188 0.9960 +6173 6189 0.9960 +6173 6191 0.9880 +6173 6192 0.9730 +6173 6193 0.9920 +6173 6194 0.9980 +6173 6201 0.9940 +6173 6202 0.9980 +6173 6203 0.9950 +6173 6204 0.9870 +6173 6205 0.9990 +6173 6206 0.9940 +6173 6207 0.9960 +6173 6208 0.9960 +6173 6209 0.9960 +6173 6210 0.9930 +6173 6217 0.9950 +6173 6218 0.9990 +6173 6222 0.9970 +6173 6223 0.9960 +6173 6224 0.9990 +6173 6227 0.9990 +6173 6228 0.9990 +6173 6229 0.9990 +6173 6230 0.9950 +6173 6231 0.9990 +6173 6232 0.9880 +6173 6233 0.9990 +6173 6234 0.9990 +6173 6235 0.9990 +6173 6633 0.4110 +6173 6635 0.4330 +6173 6726 0.8580 +6173 6727 0.8630 +6173 6728 0.8600 +6173 6729 0.8530 +6173 6730 0.8500 +6173 6731 0.8310 +6173 6734 0.8110 +6173 7178 0.6890 +6173 7311 0.9970 +6173 7314 0.5170 +6173 7316 0.5250 +6173 7494 0.8000 +6173 7866 0.4590 +6173 8266 0.5060 +6173 8638 0.5050 +6173 8667 0.5930 +6173 8721 0.5790 +6173 8894 0.5860 +6173 9045 0.9980 +6173 9132 0.4960 +6173 9147 0.8120 +6173 9312 0.4960 +6173 9343 0.5920 +6173 9349 0.9980 +6173 9401 0.5240 +6173 9636 0.5240 +6173 9669 0.7720 +6173 9732 0.8450 +6173 9789 0.4050 +6173 9858 0.6850 +6173 10209 0.5220 +6173 10399 0.9970 +6173 10412 0.9140 +6173 10430 0.8150 +6173 10438 0.4010 +6173 10473 0.6920 +6173 10537 0.5050 +6173 10557 0.6530 +6173 10767 0.8410 +6173 10952 0.9010 +6173 10985 0.6060 +6173 10988 0.4200 +6173 11222 0.7060 +6173 11224 0.9950 +6173 22894 0.4020 +6173 22927 0.5680 +6173 23148 0.4630 +6173 23173 0.4270 +6173 23185 0.9000 +6173 23204 0.7990 +6173 23246 0.6870 +6173 23476 0.5140 +6173 23478 0.4390 +6173 23480 0.8870 +6173 23481 0.6870 +6173 23517 0.4770 +6173 23521 0.9970 +6173 23560 0.8630 +6173 23640 0.6640 +6173 23708 0.5650 +6173 25873 0.9990 +6173 26046 0.8100 +6173 26135 0.9260 +6173 26168 0.5030 +6173 26251 0.4960 +6173 27000 0.4570 +6173 27012 0.4960 +6173 27043 0.4990 +6173 28972 0.4500 +6173 28991 0.4100 +6173 28998 0.8540 +6173 29088 0.5600 +6173 29093 0.8040 +6173 29889 0.8560 +6173 29927 0.8540 +6173 29978 0.4600 +6173 29979 0.4480 +6173 29997 0.5350 +6173 50613 0.4480 +6173 51042 0.8620 +6173 51065 0.8760 +6173 51068 0.8710 +6173 51069 0.7440 +6173 51073 0.7220 +6173 51081 0.8060 +6173 51116 0.7250 +6173 51119 0.4560 +6173 51121 0.9880 +6173 51149 0.8610 +6173 51154 0.7650 +6173 51187 0.9650 +6173 51319 0.8460 +6173 53918 0.8640 +6173 54499 0.8160 +6173 54543 0.4990 +6173 54881 0.5070 +6173 54948 0.6760 +6173 55173 0.8640 +6173 55272 0.8490 +6173 55316 0.8100 +6173 55319 0.8010 +6173 55341 0.8690 +6173 55629 0.5030 +6173 55646 0.8400 +6173 55651 0.6790 +6173 55759 0.7550 +6173 55802 0.5120 +6173 55821 0.4280 +6173 56479 0.4960 +6173 56648 0.7160 +6173 56893 0.4480 +6173 56926 0.8150 +6173 56965 0.5080 +6173 57003 0.8150 +6173 57418 0.5030 +6173 57532 0.7200 +6173 58477 0.8200 +6173 58505 0.4540 +6173 60559 0.4290 +6173 60678 0.9070 +6173 63931 0.7630 +6173 64221 0.4990 +6173 64374 0.6640 +6173 64960 0.8220 +6173 64963 0.7750 +6173 64969 0.7930 +6173 65003 0.6910 +6173 65008 0.8080 +6173 65121 0.5520 +6173 65122 0.5520 +6173 79036 0.4050 +6173 79048 0.8060 +6173 79590 0.8120 +6173 79631 0.5890 +6173 79668 0.5080 +6173 79707 0.5040 +6173 80349 0.5000 +6173 81875 0.4360 +6173 81887 0.5420 +6173 84298 0.8290 +6173 84549 0.4250 +6173 84993 0.4480 +6173 85476 0.6040 +6173 90441 0.8620 +6173 90701 0.4090 +6173 91875 0.8210 +6173 92196 0.5180 +6173 93107 0.4960 +6173 93550 0.5050 +6173 114987 0.8290 +6173 115098 0.8460 +6173 115353 0.4100 +6173 116832 0.9430 +6173 120892 0.5120 +6173 124454 0.6930 +6173 126402 0.8010 +6173 140032 0.8700 +6173 140801 0.9770 +6173 143244 0.7160 +6173 143630 0.4480 +6173 164153 0.5440 +6173 169522 0.4960 +6173 170850 0.4960 +6173 200916 0.8770 +6173 201595 0.5070 +6173 203068 0.8180 +6173 254268 0.8210 +6173 283518 0.4960 +6173 285855 0.8560 +6173 342538 0.8900 +6173 343068 0.5520 +6173 343070 0.5520 +6173 347487 0.8310 +6173 387129 0.7220 +6173 390999 0.5520 +6173 391002 0.5520 +6173 400735 0.5520 +6173 400736 0.5520 +6173 440560 0.5520 +6173 440561 0.5520 +6173 441873 0.5520 +6173 641776 0.6470 +6173 643909 0.6470 +6173 645051 0.5980 +6173 645073 0.5980 +6173 645359 0.5520 +6173 653619 0.5520 +6173 728524 0.6470 +6173 729396 0.5980 +6173 729422 0.5980 +6173 729428 0.5980 +6173 729431 0.5980 +6173 729442 0.5980 +6173 729447 0.5980 +6173 729528 0.5520 +6173 100008586 0.5980 +6173 100128731 0.4210 +6173 100132399 0.5980 +6173 100287482 0.6850 +6173 100505478 0.7070 +6173 100526842 0.9700 +6173 100529097 0.9010 +6173 100529239 0.9670 +6173 100996746 0.6470 +6173 101929983 0.5520 +6173 102724473 0.5980 +6173 105180390 0.6470 +6173 105180391 0.6470 +6175 6176 0.9990 +6175 6181 0.9990 +6175 6182 0.9830 +6175 6183 0.9450 +6175 6184 0.5330 +6175 6187 0.9990 +6175 6188 0.9990 +6175 6189 0.9990 +6175 6191 0.9990 +6175 6192 0.9920 +6175 6193 0.9990 +6175 6194 0.9990 +6175 6201 0.9990 +6175 6202 0.9990 +6175 6203 0.9990 +6175 6204 0.9990 +6175 6205 0.9990 +6175 6206 0.9990 +6175 6207 0.9990 +6175 6208 0.9990 +6175 6209 0.9990 +6175 6210 0.9980 +6175 6217 0.9990 +6175 6218 0.9990 +6175 6222 0.9990 +6175 6223 0.9990 +6175 6224 0.9990 +6175 6227 0.9990 +6175 6228 0.9990 +6175 6229 0.9990 +6175 6230 0.9990 +6175 6231 0.9990 +6175 6232 0.9990 +6175 6233 0.9990 +6175 6234 0.9990 +6175 6235 0.9990 +6175 6389 0.5670 +6175 6390 0.4760 +6175 6470 0.4060 +6175 6472 0.4750 +6175 6628 0.4200 +6175 6633 0.5050 +6175 6635 0.5340 +6175 6636 0.4080 +6175 6687 0.4590 +6175 6726 0.8790 +6175 6727 0.8980 +6175 6728 0.8730 +6175 6729 0.9730 +6175 6730 0.9010 +6175 6731 0.6720 +6175 6734 0.8610 +6175 6741 0.4120 +6175 6742 0.7280 +6175 6746 0.4750 +6175 6775 0.7530 +6175 6780 0.7670 +6175 6838 0.5320 +6175 6908 0.6540 +6175 6950 0.5870 +6175 7037 0.4800 +6175 7157 0.7550 +6175 7167 0.5460 +6175 7178 0.9750 +6175 7203 0.6040 +6175 7284 0.9840 +6175 7311 0.9990 +6175 7314 0.6220 +6175 7316 0.6730 +6175 7352 0.4350 +6175 7386 0.4080 +6175 7403 0.6230 +6175 7404 0.6090 +6175 7407 0.5860 +6175 7415 0.4540 +6175 7458 0.5060 +6175 7468 0.4380 +6175 7494 0.8460 +6175 7531 0.4370 +6175 7534 0.5260 +6175 7555 0.5430 +6175 7837 0.4100 +6175 7919 0.4660 +6175 8189 0.9560 +6175 8225 0.5170 +6175 8242 0.4710 +6175 8266 0.5780 +6175 8284 0.4680 +6175 8518 0.5320 +6175 8565 0.4590 +6175 8568 0.7170 +6175 8607 0.5250 +6175 8624 0.5340 +6175 8634 0.4170 +6175 8638 0.5130 +6175 8661 0.5630 +6175 8662 0.6520 +6175 8663 0.5230 +6175 8664 0.6580 +6175 8665 0.8010 +6175 8666 0.6680 +6175 8667 0.4920 +6175 8668 0.8540 +6175 8721 0.6270 +6175 8833 0.6620 +6175 8886 0.4360 +6175 8894 0.7180 +6175 9045 0.9990 +6175 9069 0.4090 +6175 9086 0.7790 +6175 9132 0.4210 +6175 9136 0.5090 +6175 9141 0.7340 +6175 9147 0.8900 +6175 9188 0.4510 +6175 9212 0.4200 +6175 9255 0.4660 +6175 9277 0.9730 +6175 9312 0.4210 +6175 9343 0.8610 +6175 9349 0.9990 +6175 9401 0.5310 +6175 9521 0.4380 +6175 9528 0.4740 +6175 9533 0.8680 +6175 9553 0.9830 +6175 9584 0.4450 +6175 9617 0.5240 +6175 9636 0.4990 +6175 9669 0.9750 +6175 9698 0.4180 +6175 9724 0.4290 +6175 9732 0.9750 +6175 9775 0.4890 +6175 9789 0.4510 +6175 9790 0.6590 +6175 9801 0.9900 +6175 9858 0.8200 +6175 9904 0.4420 +6175 9933 0.4940 +6175 10056 0.4660 +6175 10061 0.5540 +6175 10102 0.7810 +6175 10135 0.5610 +6175 10146 0.5320 +6175 10153 0.5530 +6175 10171 0.4170 +6175 10200 0.4440 +6175 10212 0.4060 +6175 10236 0.4410 +6175 10291 0.4660 +6175 10376 0.4580 +6175 10399 0.9990 +6175 10412 0.9570 +6175 10436 0.4840 +6175 10438 0.6420 +6175 10473 0.9170 +6175 10476 0.4150 +6175 10480 0.7870 +6175 10492 0.4700 +6175 10514 0.4260 +6175 10526 0.6540 +6175 10528 0.7040 +6175 10537 0.4250 +6175 10556 0.4470 +6175 10557 0.7830 +6175 10558 0.4920 +6175 10574 0.8190 +6175 10575 0.8260 +6175 10576 0.7680 +6175 10607 0.4660 +6175 10664 0.4010 +6175 10681 0.4510 +6175 10694 0.6830 +6175 10726 0.4330 +6175 10730 0.4880 +6175 10765 0.4680 +6175 10767 0.8170 +6175 10813 0.4510 +6175 10885 0.4110 +6175 10939 0.4610 +6175 10952 0.8940 +6175 10969 0.9230 +6175 10985 0.6080 +6175 10987 0.4350 +6175 10988 0.7900 +6175 11047 0.4310 +6175 11103 0.9820 +6175 11128 0.8420 +6175 11137 0.5670 +6175 11222 0.8980 +6175 11224 0.9990 +6175 22894 0.5200 +6175 22916 0.6180 +6175 22927 0.7010 +6175 22948 0.7160 +6175 22984 0.9840 +6175 23029 0.5680 +6175 23076 0.8860 +6175 23135 0.6240 +6175 23148 0.7030 +6175 23160 0.4300 +6175 23173 0.7510 +6175 23204 0.9330 +6175 23212 0.8550 +6175 23223 0.4670 +6175 23246 0.9740 +6175 23367 0.4140 +6175 23378 0.6000 +6175 23435 0.4830 +6175 23478 0.4780 +6175 23480 0.8500 +6175 23481 0.9570 +6175 23517 0.5650 +6175 23521 0.9990 +6175 23560 0.9510 +6175 23582 0.6680 +6175 23640 0.8310 +6175 23708 0.5490 +6175 24140 0.5560 +6175 25789 0.4630 +6175 25873 0.9990 +6175 25879 0.4220 +6175 25885 0.8460 +6175 25914 0.4290 +6175 25983 0.4530 +6175 25998 0.4210 +6175 26046 0.8170 +6175 26135 0.9820 +6175 26155 0.9330 +6175 26156 0.9340 +6175 26168 0.6720 +6175 26251 0.4210 +6175 26271 0.5400 +6175 26289 0.4860 +6175 26330 0.4800 +6175 26354 0.6280 +6175 26574 0.4980 +6175 26986 0.6200 +6175 26995 0.5120 +6175 27000 0.5560 +6175 27012 0.4210 +6175 27043 0.6290 +6175 27068 0.4410 +6175 27292 0.4740 +6175 27316 0.4160 +6175 27335 0.5510 +6175 27341 0.5000 +6175 28972 0.4840 +6175 28987 0.4860 +6175 28998 0.8970 +6175 29088 0.6250 +6175 29093 0.8920 +6175 29889 0.6700 +6175 29927 0.9710 +6175 29960 0.5390 +6175 29978 0.4910 +6175 29979 0.4640 +6175 29997 0.6660 +6175 50613 0.4360 +6175 50808 0.5020 +6175 51018 0.5100 +6175 51021 0.9820 +6175 51023 0.4890 +6175 51042 0.8370 +6175 51065 0.9700 +6175 51068 0.8010 +6175 51069 0.8890 +6175 51073 0.8920 +6175 51081 0.9500 +6175 51082 0.7270 +6175 51096 0.4320 +6175 51106 0.4570 +6175 51116 0.8290 +6175 51118 0.4590 +6175 51119 0.7500 +6175 51121 0.9970 +6175 51149 0.9790 +6175 51187 0.9630 +6175 51264 0.9820 +6175 51319 0.9770 +6175 51386 0.5190 +6175 51388 0.9490 +6175 51491 0.5290 +6175 51504 0.4170 +6175 51520 0.4890 +6175 51574 0.6770 +6175 51575 0.4510 +6175 51602 0.7800 +6175 51727 0.4790 +6175 51807 0.6050 +6175 53918 0.8840 +6175 54433 0.4900 +6175 54463 0.5110 +6175 54475 0.6740 +6175 54516 0.5240 +6175 54552 0.5950 +6175 54606 0.4660 +6175 54663 0.8980 +6175 54881 0.7230 +6175 54888 0.5240 +6175 54948 0.8330 +6175 54995 0.4020 +6175 55003 0.5530 +6175 55052 0.9820 +6175 55131 0.5590 +6175 55139 0.5360 +6175 55143 0.5420 +6175 55153 0.7260 +6175 55168 0.5250 +6175 55173 0.9450 +6175 55176 0.8590 +6175 55226 0.5070 +6175 55272 0.9510 +6175 55299 0.9290 +6175 55316 0.9630 +6175 55319 0.4170 +6175 55341 0.7770 +6175 55505 0.4350 +6175 55591 0.7420 +6175 55607 0.4240 +6175 55629 0.5140 +6175 55646 0.8980 +6175 55651 0.8270 +6175 55695 0.5220 +6175 55703 0.8470 +6175 55720 0.6000 +6175 55759 0.9460 +6175 55781 0.9660 +6175 55802 0.5290 +6175 55813 0.9710 +6175 55854 0.7370 +6175 55893 0.4080 +6175 56257 0.4190 +6175 56342 0.4470 +6175 56474 0.5440 +6175 56479 0.4290 +6175 56647 0.4110 +6175 56648 0.6840 +6175 56893 0.4490 +6175 56902 0.4350 +6175 56965 0.7060 +6175 57038 0.4880 +6175 57050 0.4450 +6175 57062 0.4480 +6175 57136 0.6690 +6175 57418 0.6150 +6175 57469 0.4120 +6175 57471 0.4550 +6175 58477 0.5310 +6175 58505 0.5940 +6175 59345 0.4530 +6175 60559 0.4040 +6175 60678 0.9250 +6175 63875 0.9830 +6175 63899 0.5120 +6175 63931 0.8910 +6175 64216 0.4620 +6175 64221 0.4990 +6175 64318 0.8940 +6175 64374 0.8290 +6175 64425 0.6060 +6175 64434 0.4700 +6175 64960 0.8840 +6175 64963 0.8950 +6175 64965 0.9820 +6175 64968 0.9810 +6175 64969 0.9450 +6175 64979 0.9810 +6175 64983 0.9820 +6175 65003 0.8450 +6175 65005 0.9820 +6175 65008 0.8930 +6175 65121 0.6090 +6175 65122 0.6090 +6175 65993 0.4180 +6175 79009 0.4260 +6175 79039 0.4060 +6175 79048 0.8230 +6175 79050 0.4460 +6175 79137 0.4930 +6175 79159 0.5850 +6175 79590 0.8940 +6175 79631 0.8500 +6175 79668 0.7040 +6175 79707 0.5220 +6175 79728 0.5910 +6175 79730 0.5120 +6175 79954 0.4810 +6175 80135 0.9030 +6175 80146 0.4420 +6175 81631 0.4410 +6175 81875 0.4560 +6175 81887 0.5430 +6175 83475 0.5160 +6175 83743 0.7180 +6175 84076 0.4220 +6175 84128 0.4430 +6175 84154 0.9290 +6175 84172 0.8760 +6175 84273 0.6040 +6175 84340 0.4360 +6175 84365 0.9290 +6175 84549 0.8650 +6175 84790 0.4600 +6175 84851 0.5200 +6175 84916 0.6260 +6175 84946 0.4890 +6175 84993 0.4590 +6175 85476 0.8580 +6175 85865 0.4510 +6175 87178 0.6720 +6175 90121 0.5030 +6175 90441 0.5310 +6175 90459 0.4050 +6175 90701 0.4330 +6175 91408 0.4570 +6175 91574 0.5240 +6175 91875 0.9040 +6175 91893 0.4770 +6175 92170 0.5760 +6175 92399 0.8240 +6175 92856 0.6640 +6175 93107 0.4210 +6175 93550 0.4320 +6175 114987 0.9760 +6175 115098 0.8280 +6175 115416 0.4850 +6175 116832 0.9570 +6175 116966 0.4350 +6175 117246 0.6100 +6175 120892 0.5500 +6175 122481 0.4740 +6175 122622 0.4200 +6175 124454 0.6660 +6175 126402 0.9470 +6175 134492 0.4660 +6175 137902 0.4060 +6175 140032 0.9640 +6175 140801 0.9980 +6175 142940 0.5120 +6175 143244 0.7010 +6175 143630 0.4240 +6175 153443 0.4600 +6175 158067 0.4740 +6175 161424 0.4110 +6175 162427 0.4900 +6175 164153 0.4240 +6175 169522 0.4210 +6175 170850 0.4210 +6175 200916 0.9440 +6175 201595 0.8130 +6175 203068 0.8730 +6175 219927 0.9830 +6175 221078 0.5120 +6175 221264 0.4750 +6175 221823 0.4050 +6175 254268 0.9270 +6175 283518 0.4210 +6175 285855 0.9820 +6175 317781 0.4380 +6175 342538 0.9380 +6175 343068 0.6090 +6175 343070 0.6090 +6175 345630 0.4770 +6175 347487 0.9800 +6175 374659 0.7620 +6175 387129 0.9450 +6175 387338 0.5500 +6175 387509 0.4350 +6175 387712 0.5150 +6175 390999 0.6090 +6175 391002 0.6090 +6175 400735 0.6090 +6175 400736 0.6090 +6175 440560 0.6090 +6175 440561 0.6090 +6175 441873 0.6090 +6175 641776 0.7710 +6175 643909 0.7710 +6175 645051 0.7660 +6175 645073 0.7710 +6175 645359 0.6090 +6175 653619 0.6090 +6175 654364 0.4080 +6175 692312 0.5290 +6175 728378 0.8510 +6175 728524 0.7710 +6175 729396 0.7610 +6175 729422 0.7660 +6175 729428 0.7660 +6175 729431 0.7610 +6175 729442 0.7610 +6175 729447 0.7720 +6175 729528 0.6090 +6175 100008586 0.7710 +6175 100128731 0.5290 +6175 100132399 0.7660 +6175 100287482 0.8200 +6175 100505478 0.8420 +6175 100526842 0.9950 +6175 100529097 0.9360 +6175 100529239 0.9940 +6175 100996746 0.7710 +6175 101929983 0.6090 +6175 102724473 0.7610 +6175 105180390 0.7710 +6175 105180391 0.7710 +6175 114483834 0.5680 +6176 6181 0.9990 +6176 6183 0.9660 +6176 6187 0.9990 +6176 6188 0.9990 +6176 6189 0.9990 +6176 6191 0.9990 +6176 6192 0.9470 +6176 6193 0.9990 +6176 6194 0.9990 +6176 6201 0.9990 +6176 6202 0.9990 +6176 6203 0.9990 +6176 6204 0.9990 +6176 6205 0.9990 +6176 6206 0.9990 +6176 6207 0.9990 +6176 6208 0.9990 +6176 6209 0.9990 +6176 6210 0.9980 +6176 6217 0.9990 +6176 6218 0.9990 +6176 6222 0.9990 +6176 6223 0.9990 +6176 6224 0.9990 +6176 6227 0.9990 +6176 6228 0.9990 +6176 6229 0.9990 +6176 6230 0.9990 +6176 6231 0.9990 +6176 6232 0.9990 +6176 6233 0.9990 +6176 6234 0.9990 +6176 6235 0.9990 +6176 6519 0.6130 +6176 6727 0.4660 +6176 7178 0.9690 +6176 7311 0.9990 +6176 7314 0.6460 +6176 7316 0.6480 +6176 7407 0.4210 +6176 7514 0.4050 +6176 7555 0.4410 +6176 8266 0.6460 +6176 8638 0.5170 +6176 8661 0.4300 +6176 8662 0.4080 +6176 8663 0.4750 +6176 8664 0.4440 +6176 8665 0.4770 +6176 8666 0.5650 +6176 8668 0.4780 +6176 8894 0.6290 +6176 9045 0.9990 +6176 9132 0.5470 +6176 9141 0.4260 +6176 9312 0.5470 +6176 9317 0.4740 +6176 9343 0.6310 +6176 9349 0.9990 +6176 9401 0.4180 +6176 9533 0.4340 +6176 9636 0.5570 +6176 9669 0.8300 +6176 9732 0.9690 +6176 9789 0.4410 +6176 9858 0.8680 +6176 10169 0.5550 +6176 10200 0.4160 +6176 10209 0.5040 +6176 10248 0.6690 +6176 10399 0.9990 +6176 10473 0.8660 +6176 10537 0.5170 +6176 10557 0.8740 +6176 10574 0.5390 +6176 10576 0.4250 +6176 10594 0.4580 +6176 10666 0.4040 +6176 10799 0.4600 +6176 10952 0.5620 +6176 11047 0.4380 +6176 11222 0.9180 +6176 11224 0.9990 +6176 22894 0.4590 +6176 22927 0.4890 +6176 23148 0.5960 +6176 23204 0.8580 +6176 23212 0.6520 +6176 23246 0.5470 +6176 23478 0.4190 +6176 23481 0.5200 +6176 23517 0.4890 +6176 23521 0.9990 +6176 23640 0.7370 +6176 23708 0.5920 +6176 25873 0.9990 +6176 26135 0.9440 +6176 26168 0.5080 +6176 26251 0.5470 +6176 26986 0.6750 +6176 27012 0.5470 +6176 27043 0.5130 +6176 28972 0.5090 +6176 28998 0.9430 +6176 29088 0.6780 +6176 29093 0.9160 +6176 29978 0.5150 +6176 29979 0.5370 +6176 50487 0.4040 +6176 50613 0.5090 +6176 51065 0.9720 +6176 51069 0.9500 +6176 51073 0.9300 +6176 51081 0.8950 +6176 51116 0.8740 +6176 51121 0.9680 +6176 51149 0.9680 +6176 51154 0.9820 +6176 51319 0.9700 +6176 51367 0.7830 +6176 51574 0.5670 +6176 51720 0.4150 +6176 53918 0.5780 +6176 54881 0.5070 +6176 54948 0.7350 +6176 55173 0.9640 +6176 55272 0.9740 +6176 55316 0.9620 +6176 55607 0.4300 +6176 55629 0.5080 +6176 55651 0.8340 +6176 55759 0.5290 +6176 55802 0.5620 +6176 55854 0.4520 +6176 55893 0.4080 +6176 56479 0.5470 +6176 56648 0.7450 +6176 56731 0.4220 +6176 56893 0.5410 +6176 57418 0.5470 +6176 60559 0.4030 +6176 60678 0.5760 +6176 63893 0.4650 +6176 63931 0.9490 +6176 64221 0.4990 +6176 64374 0.7320 +6176 64960 0.9400 +6176 64963 0.9220 +6176 64969 0.9730 +6176 65003 0.8700 +6176 65008 0.9540 +6176 65121 0.6630 +6176 65122 0.6630 +6176 79590 0.9380 +6176 79631 0.5630 +6176 79707 0.5040 +6176 80155 0.4210 +6176 81887 0.5040 +6176 84993 0.5560 +6176 85476 0.5630 +6176 90459 0.4150 +6176 90701 0.4110 +6176 91408 0.5150 +6176 93107 0.5470 +6176 93550 0.5180 +6176 114987 0.9580 +6176 116832 0.9730 +6176 124454 0.8120 +6176 126402 0.8890 +6176 134492 0.4060 +6176 140032 0.9450 +6176 140801 0.9940 +6176 143244 0.7460 +6176 143630 0.5090 +6176 147011 0.4040 +6176 154288 0.4040 +6176 164153 0.5170 +6176 169522 0.5470 +6176 170850 0.5470 +6176 200916 0.9530 +6176 254268 0.9330 +6176 283518 0.5470 +6176 285855 0.9330 +6176 326340 0.4520 +6176 342538 0.5860 +6176 343068 0.6630 +6176 343070 0.6630 +6176 347487 0.9530 +6176 387129 0.8770 +6176 390999 0.6630 +6176 391002 0.6630 +6176 400735 0.6630 +6176 400736 0.6630 +6176 440560 0.6630 +6176 440561 0.6630 +6176 441873 0.6630 +6176 619279 0.4040 +6176 641776 0.8130 +6176 642987 0.4120 +6176 643909 0.8130 +6176 645051 0.7610 +6176 645073 0.7670 +6176 645359 0.6630 +6176 653505 0.4060 +6176 653619 0.6630 +6176 728378 0.5780 +6176 728524 0.8130 +6176 729396 0.7610 +6176 729422 0.7610 +6176 729428 0.7610 +6176 729431 0.7610 +6176 729442 0.7610 +6176 729447 0.7610 +6176 729528 0.6630 +6176 100008586 0.7660 +6176 100132399 0.7610 +6176 100287482 0.8680 +6176 100505478 0.8750 +6176 100526842 0.9610 +6176 100529097 0.9380 +6176 100529239 0.9680 +6176 100996746 0.8130 +6176 101929983 0.6630 +6176 102724473 0.7610 +6176 105180390 0.8130 +6176 105180391 0.8130 +6181 6182 0.4410 +6181 6183 0.9390 +6181 6187 0.9990 +6181 6188 0.9990 +6181 6189 0.9990 +6181 6191 0.9970 +6181 6192 0.9470 +6181 6193 0.9990 +6181 6194 0.9990 +6181 6201 0.9980 +6181 6202 0.9990 +6181 6203 0.9990 +6181 6204 0.9960 +6181 6205 0.9990 +6181 6206 0.9990 +6181 6207 0.9990 +6181 6208 0.9990 +6181 6209 0.9990 +6181 6210 0.9930 +6181 6217 0.9990 +6181 6218 0.9990 +6181 6222 0.9990 +6181 6223 0.9990 +6181 6224 0.9990 +6181 6227 0.9990 +6181 6228 0.9990 +6181 6229 0.9990 +6181 6230 0.9990 +6181 6231 0.9990 +6181 6232 0.9990 +6181 6233 0.9990 +6181 6234 0.9990 +6181 6235 0.9990 +6181 6284 0.4100 +6181 6426 0.6460 +6181 6428 0.6460 +6181 6434 0.4350 +6181 6625 0.4810 +6181 6632 0.4850 +6181 6633 0.5530 +6181 6635 0.5140 +6181 6636 0.5500 +6181 6637 0.4810 +6181 6741 0.4850 +6181 7099 0.4080 +6181 7124 0.4120 +6181 7157 0.5000 +6181 7178 0.9700 +6181 7203 0.4190 +6181 7284 0.4390 +6181 7311 0.9990 +6181 7314 0.5910 +6181 7316 0.6240 +6181 7336 0.4720 +6181 7411 0.4690 +6181 7458 0.5080 +6181 7514 0.4860 +6181 7555 0.4940 +6181 7919 0.5060 +6181 8260 0.5660 +6181 8266 0.6170 +6181 8361 0.4120 +6181 8607 0.5350 +6181 8638 0.4720 +6181 8662 0.5930 +6181 8665 0.5290 +6181 8666 0.8130 +6181 8668 0.7590 +6181 8894 0.6830 +6181 9045 0.9990 +6181 9132 0.5450 +6181 9188 0.4810 +6181 9312 0.5450 +6181 9343 0.4680 +6181 9349 0.9990 +6181 9584 0.4470 +6181 9636 0.4750 +6181 9669 0.4310 +6181 9732 0.9670 +6181 9782 0.4390 +6181 9789 0.4290 +6181 9858 0.8350 +6181 10169 0.4370 +6181 10200 0.4410 +6181 10209 0.4480 +6181 10236 0.5350 +6181 10399 0.9990 +6181 10432 0.4950 +6181 10471 0.4640 +6181 10473 0.8210 +6181 10480 0.4300 +6181 10492 0.6520 +6181 10537 0.4720 +6181 10557 0.7810 +6181 10574 0.4870 +6181 10575 0.4960 +6181 10576 0.4960 +6181 10694 0.4770 +6181 10726 0.4620 +6181 10772 0.4870 +6181 10856 0.4300 +6181 11222 0.9080 +6181 11224 0.9990 +6181 22894 0.4010 +6181 22948 0.5000 +6181 23204 0.8700 +6181 23212 0.5400 +6181 23246 0.5490 +6181 23435 0.4420 +6181 23478 0.4150 +6181 23481 0.5290 +6181 23517 0.4210 +6181 23521 0.9990 +6181 23640 0.6970 +6181 23708 0.5370 +6181 25873 0.9990 +6181 25914 0.4220 +6181 26135 0.9220 +6181 26168 0.5350 +6181 26251 0.5450 +6181 26986 0.6370 +6181 27000 0.4870 +6181 27012 0.5450 +6181 27043 0.5290 +6181 27316 0.4090 +6181 27335 0.4470 +6181 28972 0.4160 +6181 28998 0.9000 +6181 29088 0.6620 +6181 29093 0.9030 +6181 29978 0.4800 +6181 29979 0.6260 +6181 50613 0.4720 +6181 51065 0.9820 +6181 51069 0.9020 +6181 51073 0.8580 +6181 51081 0.8920 +6181 51116 0.8420 +6181 51121 0.9770 +6181 51149 0.9640 +6181 51154 0.9730 +6181 51187 0.4390 +6181 51234 0.4150 +6181 51319 0.9230 +6181 51574 0.5380 +6181 54881 0.5170 +6181 54948 0.7030 +6181 55173 0.9530 +6181 55272 0.9650 +6181 55316 0.9560 +6181 55629 0.5040 +6181 55651 0.7910 +6181 55759 0.5340 +6181 55802 0.5370 +6181 56479 0.5450 +6181 56648 0.4910 +6181 56893 0.5030 +6181 57418 0.5540 +6181 60559 0.4010 +6181 60678 0.5360 +6181 63931 0.8880 +6181 64221 0.4990 +6181 64374 0.6970 +6181 64960 0.9170 +6181 64963 0.8790 +6181 64969 0.9550 +6181 64975 0.4800 +6181 65003 0.8240 +6181 65008 0.8970 +6181 65121 0.6590 +6181 65122 0.6590 +6181 79590 0.9180 +6181 79707 0.5040 +6181 80218 0.4310 +6181 80227 0.5020 +6181 81875 0.4280 +6181 81887 0.5670 +6181 84993 0.5150 +6181 90459 0.4050 +6181 90701 0.4050 +6181 93107 0.5450 +6181 93550 0.4800 +6181 114987 0.9370 +6181 116832 0.9680 +6181 124454 0.7720 +6181 126402 0.8820 +6181 134492 0.4180 +6181 140032 0.9400 +6181 140801 0.9910 +6181 143244 0.5090 +6181 143630 0.4720 +6181 164153 0.4720 +6181 169522 0.5450 +6181 170850 0.5450 +6181 200916 0.9600 +6181 220988 0.4180 +6181 254268 0.9330 +6181 283518 0.5450 +6181 285855 0.9370 +6181 343068 0.6590 +6181 343070 0.6590 +6181 347487 0.9520 +6181 387129 0.8820 +6181 390999 0.6590 +6181 391002 0.6590 +6181 400735 0.6590 +6181 400736 0.6590 +6181 440560 0.6590 +6181 440561 0.6590 +6181 441873 0.6590 +6181 641776 0.7820 +6181 643909 0.7820 +6181 645051 0.7490 +6181 645073 0.7600 +6181 645359 0.6590 +6181 653619 0.6590 +6181 728524 0.7820 +6181 729396 0.7490 +6181 729422 0.7490 +6181 729428 0.7490 +6181 729431 0.7490 +6181 729442 0.7490 +6181 729447 0.7490 +6181 729528 0.6590 +6181 100008586 0.7490 +6181 100132399 0.7490 +6181 100287482 0.8350 +6181 100505478 0.8730 +6181 100526842 0.9620 +6181 100529097 0.9420 +6181 100529239 0.9340 +6181 100996746 0.7820 +6181 101929983 0.6590 +6181 102724473 0.7490 +6181 105180390 0.7820 +6181 105180391 0.7820 +6182 6183 0.9980 +6182 6187 0.9870 +6182 6188 0.9990 +6182 6193 0.9730 +6182 6203 0.9830 +6182 6205 0.9990 +6182 6206 0.4760 +6182 6207 0.9670 +6182 6208 0.9720 +6182 6209 0.9990 +6182 6210 0.8390 +6182 6217 0.9730 +6182 6222 0.9990 +6182 6224 0.9830 +6182 6228 0.9830 +6182 6234 0.4410 +6182 6235 0.9720 +6182 6389 0.4950 +6182 6390 0.5180 +6182 6470 0.4010 +6182 6472 0.4460 +6182 6598 0.4020 +6182 6723 0.4600 +6182 6731 0.4040 +6182 6742 0.5420 +6182 7019 0.4780 +6182 7167 0.4430 +6182 7284 0.9990 +6182 7295 0.4070 +6182 7384 0.5380 +6182 7386 0.5100 +6182 7403 0.5860 +6182 7404 0.5860 +6182 7407 0.5120 +6182 7531 0.4120 +6182 7818 0.9890 +6182 7866 0.4180 +6182 7978 0.5430 +6182 8192 0.7270 +6182 8225 0.4050 +6182 8242 0.4890 +6182 8284 0.4840 +6182 8382 0.4020 +6182 8565 0.7560 +6182 8624 0.4790 +6182 8802 0.5800 +6182 8833 0.4290 +6182 9086 0.8000 +6182 9255 0.4330 +6182 9343 0.9530 +6182 9349 0.9990 +6182 9374 0.4460 +6182 9533 0.9390 +6182 9553 0.9990 +6182 9617 0.6650 +6182 9669 0.6880 +6182 9692 0.4530 +6182 9801 0.9990 +6182 9858 0.9100 +6182 10056 0.4110 +6182 10102 0.9660 +6182 10128 0.4920 +6182 10131 0.5270 +6182 10135 0.4700 +6182 10201 0.5000 +6182 10240 0.8310 +6182 10452 0.5150 +6182 10455 0.4420 +6182 10469 0.4860 +6182 10473 0.9090 +6182 10573 0.9530 +6182 10765 0.4840 +6182 10801 0.4770 +6182 10845 0.5060 +6182 10884 0.9720 +6182 10988 0.4080 +6182 11128 0.8830 +6182 11222 0.9970 +6182 11224 0.9990 +6182 11331 0.4730 +6182 11339 0.4410 +6182 22868 0.4070 +6182 22984 0.9680 +6182 23107 0.9620 +6182 23135 0.5900 +6182 23144 0.4200 +6182 23157 0.4210 +6182 23173 0.4030 +6182 23176 0.4280 +6182 23204 0.8350 +6182 23405 0.4190 +6182 23521 0.9700 +6182 23640 0.9180 +6182 25828 0.6040 +6182 25885 0.8830 +6182 26164 0.8970 +6182 26271 0.4670 +6182 26275 0.5270 +6182 26284 0.5320 +6182 26289 0.5260 +6182 26330 0.4260 +6182 26519 0.6520 +6182 26589 0.9630 +6182 26995 0.4640 +6182 27068 0.7280 +6182 27349 0.4130 +6182 28957 0.9020 +6182 28973 0.9730 +6182 28977 0.9560 +6182 28998 0.9980 +6182 29074 0.9040 +6182 29083 0.4110 +6182 29088 0.9880 +6182 29093 0.9970 +6182 29102 0.4160 +6182 29789 0.4910 +6182 29922 0.4020 +6182 29927 0.8700 +6182 29960 0.8900 +6182 30968 0.4360 +6182 50808 0.5290 +6182 51001 0.5860 +6182 51021 0.9990 +6182 51023 0.8990 +6182 51053 0.4590 +6182 51067 0.4110 +6182 51069 0.9950 +6182 51073 0.9980 +6182 51081 0.9970 +6182 51106 0.6590 +6182 51116 0.9940 +6182 51121 0.9750 +6182 51149 0.9660 +6182 51154 0.9860 +6182 51204 0.4370 +6182 51250 0.4980 +6182 51253 0.9580 +6182 51258 0.9330 +6182 51263 0.9550 +6182 51264 0.9990 +6182 51314 0.4340 +6182 51318 0.9520 +6182 51373 0.9210 +6182 51574 0.5220 +6182 51642 0.9410 +6182 51649 0.9440 +6182 51650 0.8500 +6182 51727 0.5300 +6182 51734 0.4200 +6182 54148 0.9650 +6182 54460 0.9260 +6182 54512 0.4290 +6182 54516 0.7390 +6182 54534 0.9520 +6182 54948 0.9910 +6182 54998 0.8680 +6182 55037 0.9030 +6182 55052 0.9990 +6182 55143 0.5980 +6182 55157 0.6050 +6182 55168 0.9390 +6182 55173 0.9970 +6182 55176 0.8630 +6182 55178 0.5430 +6182 55210 0.5990 +6182 55272 0.9830 +6182 55316 0.9720 +6182 55651 0.4900 +6182 55687 0.5010 +6182 55703 0.9140 +6182 55752 0.4710 +6182 55794 0.4830 +6182 55862 0.4050 +6182 56648 0.5220 +6182 56945 0.9490 +6182 56993 0.6480 +6182 57038 0.4290 +6182 57129 0.9940 +6182 57418 0.6250 +6182 57469 0.4120 +6182 57470 0.4110 +6182 60488 0.9180 +6182 63875 0.9990 +6182 63931 0.9950 +6182 64146 0.4960 +6182 64216 0.6520 +6182 64374 0.9100 +6182 64432 0.9030 +6182 64928 0.9320 +6182 64949 0.9600 +6182 64951 0.8840 +6182 64960 0.9960 +6182 64963 0.9950 +6182 64965 0.9990 +6182 64968 0.9990 +6182 64969 0.9970 +6182 64975 0.9820 +6182 64976 0.9710 +6182 64978 0.9420 +6182 64979 0.9990 +6182 64981 0.9360 +6182 64983 0.9990 +6182 65003 0.9960 +6182 65005 0.9990 +6182 65008 0.9970 +6182 65080 0.9790 +6182 65121 0.7160 +6182 65122 0.7160 +6182 65993 0.9640 +6182 78988 0.9320 +6182 79590 0.9960 +6182 79631 0.9430 +6182 79728 0.7810 +6182 79736 0.7260 +6182 79922 0.6740 +6182 79979 0.5050 +6182 80273 0.7210 +6182 80298 0.5910 +6182 80324 0.4390 +6182 80347 0.4430 +6182 81570 0.4330 +6182 81892 0.4950 +6182 84134 0.5370 +6182 84172 0.9140 +6182 84273 0.6010 +6182 84311 0.9790 +6182 84340 0.9580 +6182 84545 0.9820 +6182 84881 0.4650 +6182 85476 0.9920 +6182 87178 0.6070 +6182 90313 0.4210 +6182 90480 0.9580 +6182 91574 0.6550 +6182 92170 0.8990 +6182 92399 0.9640 +6182 115416 0.9260 +6182 116540 0.9520 +6182 116541 0.9340 +6182 118487 0.9350 +6182 122481 0.5260 +6182 122704 0.9420 +6182 123263 0.5470 +6182 124995 0.9860 +6182 126402 0.9710 +6182 128308 0.9490 +6182 130916 0.9090 +6182 133015 0.4290 +6182 134266 0.5930 +6182 135138 0.4290 +6182 140801 0.9080 +6182 143244 0.5220 +6182 158067 0.5260 +6182 219402 0.6110 +6182 219927 0.9990 +6182 221264 0.5260 +6182 284106 0.5400 +6182 285521 0.4190 +6182 285855 0.9410 +6182 343068 0.7160 +6182 343070 0.7160 +6182 343702 0.4060 +6182 347487 0.9030 +6182 387129 0.9410 +6182 387338 0.8800 +6182 390999 0.7160 +6182 391002 0.7160 +6182 400735 0.7160 +6182 400736 0.7160 +6182 440560 0.7160 +6182 440561 0.7160 +6182 441873 0.7160 +6182 641776 0.8350 +6182 643909 0.8350 +6182 645359 0.7160 +6182 653619 0.7160 +6182 654364 0.4420 +6182 728524 0.8350 +6182 729528 0.7160 +6182 100130890 0.4120 +6182 100131187 0.4140 +6182 100287482 0.9030 +6182 100505478 0.9400 +6182 100526842 0.9710 +6182 100996746 0.8350 +6182 101929983 0.7160 +6182 105180390 0.8350 +6182 105180391 0.8350 +6182 127898561 0.8220 +6183 6187 0.9440 +6183 6188 0.9850 +6183 6189 0.9770 +6183 6191 0.8700 +6183 6192 0.8650 +6183 6193 0.9520 +6183 6194 0.9810 +6183 6201 0.9580 +6183 6202 0.9800 +6183 6203 0.9870 +6183 6204 0.9150 +6183 6205 0.9830 +6183 6206 0.8840 +6183 6207 0.8860 +6183 6208 0.8950 +6183 6209 0.9840 +6183 6210 0.7960 +6183 6217 0.8950 +6183 6218 0.9790 +6183 6222 0.9950 +6183 6223 0.9780 +6183 6224 0.9440 +6183 6227 0.9670 +6183 6229 0.9770 +6183 6230 0.9670 +6183 6231 0.9690 +6183 6232 0.9190 +6183 6233 0.4320 +6183 6234 0.9770 +6183 6235 0.8950 +6183 6389 0.4820 +6183 6414 0.6980 +6183 6499 0.4230 +6183 6648 0.8330 +6183 6687 0.8390 +6183 6729 0.7070 +6183 6742 0.7490 +6183 6897 0.4580 +6183 7083 0.4130 +6183 7167 0.4200 +6183 7178 0.6290 +6183 7264 0.5480 +6183 7284 0.9980 +6183 7311 0.9540 +6183 7314 0.4210 +6183 7316 0.4210 +6183 7386 0.5790 +6183 7403 0.4560 +6183 7404 0.4640 +6183 7407 0.4810 +6183 7818 0.9980 +6183 7866 0.5230 +6183 8192 0.5370 +6183 8266 0.4240 +6183 8382 0.5720 +6183 8562 0.6700 +6183 8565 0.5580 +6183 8602 0.8200 +6183 8624 0.8800 +6183 8634 0.5220 +6183 8638 0.4210 +6183 8661 0.7100 +6183 8662 0.6310 +6183 8663 0.7320 +6183 8664 0.7950 +6183 8666 0.6490 +6183 8668 0.6630 +6183 8669 0.5700 +6183 8721 0.5370 +6183 8833 0.4820 +6183 8894 0.8100 +6183 9045 0.8310 +6183 9086 0.9420 +6183 9132 0.4910 +6183 9136 0.8310 +6183 9141 0.7040 +6183 9277 0.8360 +6183 9312 0.4910 +6183 9343 0.8500 +6183 9349 0.9940 +6183 9533 0.9190 +6183 9553 0.9980 +6183 9617 0.6990 +6183 9636 0.4220 +6183 9669 0.8380 +6183 9724 0.6260 +6183 9732 0.7890 +6183 9790 0.8450 +6183 9801 0.9980 +6183 9858 0.9500 +6183 10061 0.5980 +6183 10102 0.8940 +6183 10135 0.6030 +6183 10171 0.5510 +6183 10199 0.8210 +6183 10201 0.6020 +6183 10209 0.6720 +6183 10240 0.9840 +6183 10289 0.6710 +6183 10399 0.8990 +6183 10412 0.9010 +6183 10436 0.8530 +6183 10473 0.8600 +6183 10526 0.4120 +6183 10527 0.4190 +6183 10528 0.8490 +6183 10537 0.4210 +6183 10557 0.7910 +6183 10573 0.8770 +6183 10607 0.8190 +6183 10730 0.5240 +6183 10767 0.4540 +6183 10813 0.6340 +6183 10845 0.4590 +6183 10884 0.9680 +6183 10885 0.8170 +6183 10939 0.8640 +6183 10964 0.6390 +6183 10985 0.6860 +6183 10988 0.6020 +6183 11103 0.8290 +6183 11128 0.7420 +6183 11182 0.4140 +6183 11222 0.9980 +6183 11224 0.9820 +6183 22927 0.6570 +6183 22984 0.9810 +6183 23054 0.5320 +6183 23107 0.9890 +6183 23135 0.4640 +6183 23160 0.7480 +6183 23173 0.7270 +6183 23193 0.5110 +6183 23204 0.7800 +6183 23252 0.8170 +6183 23395 0.4130 +6183 23405 0.6530 +6183 23423 0.5730 +6183 23517 0.4460 +6183 23521 0.8920 +6183 23640 0.8440 +6183 23732 0.6840 +6183 25873 0.9600 +6183 25879 0.8300 +6183 25885 0.7070 +6183 25983 0.7630 +6183 26135 0.6770 +6183 26156 0.8320 +6183 26251 0.4920 +6183 26271 0.6040 +6183 26275 0.9440 +6183 26284 0.9730 +6183 26289 0.4470 +6183 26574 0.8370 +6183 26589 0.9940 +6183 27012 0.4910 +6183 27068 0.4170 +6183 27254 0.5020 +6183 27292 0.5810 +6183 27335 0.8060 +6183 27340 0.7700 +6183 27341 0.8100 +6183 27349 0.8780 +6183 27430 0.5490 +6183 28957 0.9850 +6183 28973 0.9900 +6183 28977 0.9870 +6183 28991 0.5250 +6183 28998 0.9970 +6183 29074 0.8690 +6183 29088 0.9930 +6183 29093 0.9980 +6183 29102 0.6490 +6183 29789 0.4630 +6183 29922 0.5720 +6183 29927 0.8880 +6183 29978 0.4290 +6183 29979 0.4360 +6183 29988 0.4220 +6183 30836 0.8220 +6183 50613 0.4210 +6183 50808 0.4510 +6183 50814 0.5520 +6183 51014 0.5660 +6183 51021 0.9990 +6183 51023 0.9970 +6183 51065 0.9150 +6183 51067 0.4590 +6183 51069 0.9980 +6183 51073 0.9980 +6183 51077 0.8340 +6183 51081 0.9990 +6183 51096 0.8200 +6183 51106 0.9110 +6183 51116 0.9990 +6183 51118 0.8280 +6183 51119 0.6280 +6183 51121 0.8920 +6183 51149 0.8800 +6183 51154 0.9490 +6183 51187 0.5320 +6183 51253 0.8950 +6183 51258 0.8760 +6183 51263 0.9800 +6183 51264 0.9990 +6183 51314 0.6660 +6183 51318 0.8870 +6183 51319 0.8290 +6183 51367 0.4100 +6183 51373 0.9970 +6183 51386 0.5320 +6183 51602 0.8310 +6183 51642 0.8650 +6183 51649 0.9810 +6183 51650 0.9920 +6183 51654 0.4080 +6183 51720 0.4140 +6183 51727 0.4510 +6183 51728 0.4320 +6183 53918 0.5520 +6183 54148 0.8970 +6183 54205 0.4050 +6183 54460 0.9920 +6183 54512 0.5670 +6183 54516 0.7310 +6183 54534 0.8550 +6183 54938 0.4010 +6183 54948 0.9970 +6183 54965 0.4560 +6183 54998 0.9790 +6183 55037 0.9720 +6183 55052 0.9970 +6183 55127 0.8200 +6183 55143 0.4320 +6183 55157 0.4650 +6183 55168 0.9980 +6183 55173 0.9990 +6183 55176 0.8850 +6183 55226 0.8180 +6183 55272 0.9480 +6183 55316 0.8880 +6183 55324 0.5960 +6183 55591 0.6000 +6183 55601 0.4150 +6183 55651 0.8000 +6183 55699 0.4210 +6183 55703 0.8070 +6183 55720 0.4580 +6183 55781 0.5010 +6183 55794 0.4270 +6183 55813 0.8230 +6183 56479 0.4910 +6183 56648 0.8790 +6183 56652 0.4960 +6183 56731 0.4120 +6183 56893 0.4360 +6183 56902 0.5480 +6183 56915 0.4550 +6183 56945 0.9920 +6183 56965 0.6940 +6183 57038 0.5000 +6183 57050 0.8310 +6183 57129 0.9920 +6183 57136 0.4980 +6183 57478 0.5550 +6183 57711 0.4510 +6183 60386 0.4050 +6183 60488 0.9980 +6183 60558 0.8700 +6183 60678 0.6700 +6183 63875 0.9990 +6183 63931 0.9990 +6183 64146 0.8270 +6183 64216 0.5860 +6183 64374 0.8300 +6183 64432 0.9990 +6183 64745 0.9650 +6183 64928 0.9480 +6183 64949 0.9880 +6183 64951 0.9850 +6183 64960 0.9990 +6183 64963 0.9990 +6183 64965 0.9990 +6183 64968 0.9990 +6183 64969 0.9990 +6183 64975 0.9970 +6183 64976 0.9920 +6183 64978 0.9590 +6183 64979 0.9990 +6183 64981 0.9920 +6183 64983 0.9990 +6183 65003 0.9970 +6183 65005 0.9960 +6183 65008 0.9780 +6183 65080 0.9940 +6183 65083 0.7670 +6183 65121 0.6730 +6183 65122 0.6730 +6183 65993 0.9940 +6183 78988 0.8710 +6183 79050 0.7950 +6183 79571 0.5380 +6183 79590 0.9890 +6183 79631 0.8450 +6183 79668 0.6940 +6183 79728 0.4880 +6183 79763 0.4030 +6183 79784 0.9390 +6183 79863 0.8150 +6183 79954 0.7610 +6183 80146 0.5390 +6183 80222 0.4910 +6183 80270 0.5390 +6183 81031 0.4100 +6183 84128 0.8260 +6183 84135 0.8210 +6183 84172 0.7960 +6183 84273 0.8250 +6183 84311 0.8830 +6183 84340 0.7510 +6183 84545 0.9920 +6183 84651 0.6320 +6183 84916 0.8320 +6183 84946 0.4130 +6183 84993 0.4580 +6183 85377 0.5190 +6183 85476 0.9790 +6183 87178 0.6430 +6183 90313 0.8140 +6183 90480 0.8680 +6183 90624 0.6440 +6183 91574 0.6220 +6183 92196 0.6180 +6183 92259 0.8280 +6183 92399 0.9900 +6183 92856 0.9220 +6183 93107 0.4910 +6183 93517 0.5410 +6183 93550 0.4210 +6183 112703 0.4280 +6183 114134 0.4100 +6183 114781 0.6390 +6183 114987 0.8960 +6183 116540 0.8500 +6183 116541 0.9640 +6183 116832 0.7140 +6183 118460 0.4810 +6183 118487 0.9820 +6183 122481 0.4470 +6183 122704 0.8850 +6183 123207 0.4790 +6183 123263 0.4050 +6183 123283 0.4560 +6183 124454 0.7250 +6183 124739 0.4150 +6183 124995 0.9730 +6183 126402 0.9480 +6183 128308 0.9140 +6183 138428 0.4460 +6183 139596 0.4460 +6183 140032 0.8650 +6183 140801 0.8280 +6183 143244 0.8790 +6183 143630 0.4210 +6183 148022 0.5640 +6183 149478 0.4310 +6183 153443 0.5670 +6183 154091 0.4100 +6183 157310 0.7770 +6183 158067 0.4470 +6183 164153 0.4210 +6183 169522 0.4910 +6183 170850 0.4910 +6183 196074 0.8810 +6183 200916 0.8780 +6183 219402 0.9050 +6183 219927 0.9970 +6183 221264 0.4470 +6183 254268 0.4940 +6183 255308 0.6550 +6183 283518 0.4910 +6183 285855 0.8450 +6183 343068 0.6730 +6183 343070 0.6730 +6183 345051 0.6840 +6183 345630 0.7410 +6183 347487 0.8210 +6183 353376 0.5630 +6183 374291 0.4160 +6183 374659 0.8800 +6183 387129 0.8420 +6183 390999 0.6730 +6183 391002 0.6730 +6183 400735 0.6730 +6183 400736 0.6730 +6183 440560 0.6730 +6183 440561 0.6730 +6183 441873 0.6730 +6183 641776 0.7770 +6183 643909 0.7770 +6183 645051 0.6560 +6183 645073 0.6560 +6183 645359 0.6730 +6183 653247 0.4100 +6183 653619 0.6730 +6183 654364 0.6000 +6183 728524 0.7770 +6183 728689 0.6720 +6183 729396 0.6560 +6183 729422 0.6560 +6183 729428 0.6560 +6183 729431 0.6560 +6183 729442 0.6560 +6183 729447 0.6560 +6183 729528 0.6730 +6183 100008586 0.6560 +6183 100132399 0.6560 +6183 100287482 0.8210 +6183 100302736 0.5630 +6183 100505478 0.8420 +6183 100526842 0.8880 +6183 100529097 0.8280 +6183 100529239 0.9090 +6183 100996746 0.7770 +6183 101929983 0.6730 +6183 102724473 0.6560 +6183 105180390 0.7770 +6183 105180391 0.7770 +6183 114483834 0.5930 +6184 6185 0.9990 +6184 6217 0.4580 +6184 6396 0.7490 +6184 6400 0.7450 +6184 6726 0.5090 +6184 6727 0.5040 +6184 6728 0.5700 +6184 6729 0.7400 +6184 6730 0.6060 +6184 6731 0.5350 +6184 6734 0.6450 +6184 6745 0.9810 +6184 6746 0.9440 +6184 6747 0.9610 +6184 6748 0.9530 +6184 6836 0.7660 +6184 7095 0.5920 +6184 7112 0.4980 +6184 7178 0.4860 +6184 7184 0.6980 +6184 7311 0.5170 +6184 7415 0.5540 +6184 7417 0.5110 +6184 7841 0.9610 +6184 7922 0.4080 +6184 7991 0.9960 +6184 8237 0.5160 +6184 8813 0.5470 +6184 9045 0.5200 +6184 9349 0.5110 +6184 9554 0.5330 +6184 9601 0.5400 +6184 9694 0.5540 +6184 9695 0.4770 +6184 9732 0.4510 +6184 9761 0.9970 +6184 9789 0.5730 +6184 10006 0.5300 +6184 10113 0.4550 +6184 10130 0.7440 +6184 10195 0.6650 +6184 10269 0.4540 +6184 10427 0.4540 +6184 10458 0.4360 +6184 10525 0.4190 +6184 10945 0.4560 +6184 10952 0.9900 +6184 10956 0.8010 +6184 10959 0.6980 +6184 10960 0.5220 +6184 10972 0.6070 +6184 11047 0.5580 +6184 11079 0.5880 +6184 11222 0.4790 +6184 11224 0.5560 +6184 11231 0.7510 +6184 11253 0.6100 +6184 11277 0.5280 +6184 22820 0.5910 +6184 22872 0.4060 +6184 23065 0.4820 +6184 23193 0.6640 +6184 23197 0.4310 +6184 23379 0.4070 +6184 23471 0.8190 +6184 23478 0.5510 +6184 23480 0.9960 +6184 23521 0.5140 +6184 23640 0.4070 +6184 23753 0.4130 +6184 23770 0.4370 +6184 25873 0.5110 +6184 26270 0.4980 +6184 27044 0.6070 +6184 27248 0.4210 +6184 28972 0.4800 +6184 28998 0.4120 +6184 29093 0.4050 +6184 29880 0.7330 +6184 29927 0.9990 +6184 29929 0.6050 +6184 29978 0.6570 +6184 29979 0.6300 +6184 30001 0.5400 +6184 51069 0.4200 +6184 51073 0.4420 +6184 51097 0.5320 +6184 51121 0.4300 +6184 51154 0.4680 +6184 51575 0.4080 +6184 51614 0.4530 +6184 51726 0.5610 +6184 54431 0.4690 +6184 54732 0.5170 +6184 54788 0.6730 +6184 55161 0.4350 +6184 55176 0.9760 +6184 55741 0.4600 +6184 55757 0.5660 +6184 55971 0.4350 +6184 56052 0.4110 +6184 56605 0.5440 +6184 56681 0.4790 +6184 56886 0.6570 +6184 57003 0.5720 +6184 57171 0.9110 +6184 58477 0.8450 +6184 58505 0.9840 +6184 60559 0.4940 +6184 63976 0.5850 +6184 65992 0.4030 +6184 79053 0.6550 +6184 79087 0.6150 +6184 79139 0.5610 +6184 79174 0.4100 +6184 79590 0.4220 +6184 80115 0.4190 +6184 80267 0.6760 +6184 81037 0.5150 +6184 81502 0.5810 +6184 84061 0.9990 +6184 84197 0.4210 +6184 84920 0.9000 +6184 90701 0.4520 +6184 93380 0.4430 +6184 116832 0.4380 +6184 125972 0.4740 +6184 140456 0.8160 +6184 140801 0.4520 +6184 144245 0.9540 +6184 200185 0.9440 +6184 200916 0.4300 +6184 201595 0.9990 +6184 254268 0.4290 +6184 285855 0.4720 +6184 387129 0.4220 +6184 440138 0.4670 +6184 548645 0.4470 +6184 100128731 0.9990 +6184 100526842 0.4290 +6185 6726 0.5620 +6185 6727 0.5090 +6185 6728 0.5040 +6185 6729 0.7410 +6185 6730 0.5520 +6185 6731 0.5570 +6185 6734 0.6010 +6185 6745 0.9690 +6185 6746 0.9320 +6185 6747 0.9340 +6185 6748 0.9640 +6185 7184 0.8770 +6185 7415 0.4030 +6185 7841 0.9450 +6185 7991 0.9980 +6185 8813 0.5340 +6185 9375 0.4160 +6185 9451 0.5450 +6185 9601 0.5240 +6185 9694 0.4840 +6185 9761 0.9910 +6185 9777 0.4090 +6185 9789 0.6370 +6185 10130 0.8420 +6185 10195 0.5920 +6185 10525 0.5120 +6185 10952 0.9360 +6185 10960 0.4070 +6185 10961 0.4970 +6185 10972 0.6330 +6185 11047 0.6540 +6185 11113 0.4700 +6185 11231 0.5180 +6185 23051 0.4760 +6185 23065 0.4830 +6185 23193 0.6620 +6185 23471 0.8430 +6185 23478 0.4520 +6185 23480 0.9950 +6185 28972 0.4290 +6185 29028 0.4160 +6185 29095 0.4060 +6185 29880 0.6620 +6185 29927 0.9950 +6185 29929 0.6220 +6185 29978 0.6550 +6185 29979 0.5520 +6185 51234 0.4880 +6185 51552 0.5090 +6185 54732 0.4930 +6185 55176 0.9630 +6185 55379 0.4610 +6185 55705 0.4720 +6185 55757 0.4080 +6185 55969 0.4830 +6185 56886 0.5210 +6185 56926 0.6370 +6185 57171 0.9480 +6185 58477 0.5670 +6185 58505 0.9840 +6185 60559 0.6790 +6185 60625 0.4500 +6185 79053 0.6770 +6185 79087 0.4630 +6185 79139 0.4790 +6185 79868 0.4350 +6185 79895 0.4220 +6185 80267 0.4780 +6185 81502 0.4090 +6185 84061 0.9990 +6185 84920 0.9010 +6185 84985 0.4010 +6185 90701 0.4540 +6185 93594 0.4510 +6185 112724 0.4870 +6185 125972 0.4820 +6185 132660 0.5210 +6185 132720 0.4280 +6185 144245 0.9380 +6185 199857 0.4420 +6185 200185 0.9560 +6185 201595 0.9990 +6185 440138 0.4740 +6185 448834 0.4440 +6185 100128731 0.9990 +6187 6188 0.9990 +6187 6189 0.9990 +6187 6191 0.9990 +6187 6192 0.9970 +6187 6193 0.9990 +6187 6194 0.9990 +6187 6201 0.9990 +6187 6202 0.9990 +6187 6203 0.9990 +6187 6204 0.9990 +6187 6205 0.9990 +6187 6206 0.9990 +6187 6207 0.9990 +6187 6208 0.9990 +6187 6209 0.9990 +6187 6210 0.9990 +6187 6217 0.9990 +6187 6218 0.9990 +6187 6222 0.9990 +6187 6223 0.9990 +6187 6224 0.9990 +6187 6227 0.9990 +6187 6228 0.9990 +6187 6229 0.9990 +6187 6230 0.9990 +6187 6231 0.9990 +6187 6232 0.9990 +6187 6233 0.9990 +6187 6234 0.9990 +6187 6235 0.9990 +6187 6238 0.5700 +6187 6251 0.4580 +6187 6301 0.4250 +6187 6414 0.8930 +6187 6430 0.4220 +6187 6499 0.6420 +6187 6627 0.4410 +6187 6648 0.7340 +6187 6687 0.5330 +6187 6726 0.8560 +6187 6727 0.8790 +6187 6728 0.8470 +6187 6729 0.9640 +6187 6730 0.8530 +6187 6741 0.4740 +6187 6742 0.4350 +6187 6780 0.6080 +6187 6782 0.4290 +6187 6897 0.4620 +6187 6898 0.4080 +6187 6950 0.6290 +6187 7153 0.4350 +6187 7167 0.6040 +6187 7178 0.9560 +6187 7203 0.5640 +6187 7263 0.6700 +6187 7264 0.5180 +6187 7284 0.9870 +6187 7311 0.9990 +6187 7314 0.6250 +6187 7316 0.6380 +6187 7375 0.4010 +6187 7403 0.5180 +6187 7404 0.5180 +6187 7407 0.6670 +6187 7458 0.6010 +6187 7494 0.8030 +6187 7514 0.4010 +6187 7818 0.8980 +6187 7866 0.7640 +6187 7919 0.5100 +6187 8034 0.4300 +6187 8106 0.5500 +6187 8192 0.7740 +6187 8237 0.5610 +6187 8242 0.4940 +6187 8260 0.4260 +6187 8266 0.6970 +6187 8284 0.4910 +6187 8361 0.4470 +6187 8382 0.4430 +6187 8445 0.4230 +6187 8531 0.4700 +6187 8562 0.9250 +6187 8565 0.4920 +6187 8568 0.4680 +6187 8602 0.8380 +6187 8607 0.5830 +6187 8624 0.7090 +6187 8638 0.6260 +6187 8661 0.9930 +6187 8662 0.9940 +6187 8663 0.9780 +6187 8664 0.9820 +6187 8665 0.9680 +6187 8666 0.9790 +6187 8667 0.9190 +6187 8668 0.9950 +6187 8669 0.9850 +6187 8721 0.9680 +6187 8780 0.5900 +6187 8802 0.5070 +6187 8812 0.5050 +6187 8833 0.4710 +6187 8886 0.5330 +6187 8894 0.9960 +6187 9045 0.9990 +6187 9085 0.4390 +6187 9086 0.9600 +6187 9129 0.4490 +6187 9132 0.4640 +6187 9136 0.5640 +6187 9141 0.4950 +6187 9168 0.4630 +6187 9255 0.4950 +6187 9277 0.8250 +6187 9312 0.4640 +6187 9343 0.8800 +6187 9349 0.9990 +6187 9425 0.4440 +6187 9521 0.4050 +6187 9528 0.5280 +6187 9533 0.9200 +6187 9553 0.9830 +6187 9582 0.4020 +6187 9584 0.4340 +6187 9617 0.5540 +6187 9636 0.7950 +6187 9652 0.6330 +6187 9669 0.9930 +6187 9724 0.5830 +6187 9732 0.9770 +6187 9775 0.4970 +6187 9789 0.5720 +6187 9790 0.6240 +6187 9801 0.9660 +6187 9858 0.9150 +6187 9958 0.5600 +6187 10056 0.4510 +6187 10061 0.5620 +6187 10102 0.8080 +6187 10135 0.5660 +6187 10146 0.4570 +6187 10155 0.5110 +6187 10171 0.5970 +6187 10196 0.9920 +6187 10199 0.7960 +6187 10200 0.4210 +6187 10201 0.4480 +6187 10209 0.9800 +6187 10213 0.6070 +6187 10236 0.6320 +6187 10240 0.4150 +6187 10289 0.8770 +6187 10399 0.9990 +6187 10412 0.9250 +6187 10419 0.4420 +6187 10436 0.8750 +6187 10455 0.4360 +6187 10471 0.4220 +6187 10473 0.9050 +6187 10476 0.4090 +6187 10480 0.9700 +6187 10492 0.6550 +6187 10498 0.4340 +6187 10526 0.4470 +6187 10527 0.4410 +6187 10528 0.7850 +6187 10537 0.5700 +6187 10556 0.8380 +6187 10557 0.9430 +6187 10574 0.8910 +6187 10575 0.7580 +6187 10576 0.7770 +6187 10607 0.6310 +6187 10614 0.7430 +6187 10642 0.4310 +6187 10664 0.4850 +6187 10666 0.4620 +6187 10667 0.5480 +6187 10694 0.6850 +6187 10726 0.4290 +6187 10730 0.6910 +6187 10765 0.4910 +6187 10767 0.9000 +6187 10799 0.8230 +6187 10813 0.5770 +6187 10856 0.4870 +6187 10869 0.4010 +6187 10885 0.5300 +6187 10939 0.5330 +6187 10952 0.8920 +6187 10964 0.4360 +6187 10985 0.9480 +6187 10988 0.7720 +6187 11056 0.8170 +6187 11102 0.8150 +6187 11103 0.9160 +6187 11128 0.8940 +6187 11145 0.4010 +6187 11179 0.6330 +6187 11222 0.9060 +6187 11224 0.9990 +6187 11340 0.4100 +6187 22803 0.4890 +6187 22927 0.9000 +6187 22948 0.7400 +6187 22984 0.9950 +6187 23016 0.5210 +6187 23054 0.5070 +6187 23076 0.4260 +6187 23107 0.4660 +6187 23135 0.5190 +6187 23148 0.4690 +6187 23160 0.5970 +6187 23173 0.7290 +6187 23204 0.9510 +6187 23212 0.7390 +6187 23223 0.9030 +6187 23246 0.6020 +6187 23252 0.8310 +6187 23395 0.4720 +6187 23404 0.4750 +6187 23405 0.7410 +6187 23423 0.4730 +6187 23435 0.4920 +6187 23451 0.5630 +6187 23476 0.8290 +6187 23478 0.4390 +6187 23480 0.8330 +6187 23481 0.7230 +6187 23517 0.6720 +6187 23521 0.9990 +6187 23640 0.8320 +6187 23708 0.5680 +6187 23732 0.5200 +6187 25789 0.5300 +6187 25873 0.9990 +6187 25879 0.8440 +6187 25885 0.8960 +6187 25914 0.4770 +6187 25926 0.8290 +6187 25983 0.4150 +6187 26135 0.9940 +6187 26156 0.4590 +6187 26168 0.6500 +6187 26251 0.4640 +6187 26271 0.5610 +6187 26275 0.4320 +6187 26289 0.5470 +6187 26574 0.5180 +6187 26589 0.8720 +6187 26986 0.7150 +6187 27012 0.4640 +6187 27042 0.8040 +6187 27043 0.6190 +6187 27292 0.7580 +6187 27316 0.4040 +6187 27335 0.9690 +6187 27336 0.7510 +6187 27340 0.8520 +6187 27341 0.5770 +6187 27430 0.5300 +6187 28957 0.4940 +6187 28972 0.4590 +6187 28973 0.5210 +6187 28985 0.8360 +6187 28987 0.9900 +6187 28991 0.5840 +6187 28998 0.8980 +6187 29088 0.6700 +6187 29093 0.9060 +6187 29102 0.5990 +6187 29789 0.6020 +6187 29922 0.4430 +6187 29927 0.9770 +6187 29978 0.4270 +6187 29979 0.4580 +6187 29997 0.5230 +6187 50487 0.4620 +6187 50613 0.4170 +6187 50808 0.5470 +6187 50814 0.5020 +6187 51010 0.4360 +6187 51013 0.4350 +6187 51014 0.4700 +6187 51021 0.9820 +6187 51023 0.6870 +6187 51065 0.9930 +6187 51068 0.4850 +6187 51069 0.8900 +6187 51073 0.9300 +6187 51077 0.8450 +6187 51081 0.9500 +6187 51087 0.6580 +6187 51096 0.5930 +6187 51106 0.5800 +6187 51116 0.9270 +6187 51118 0.8190 +6187 51119 0.5300 +6187 51121 0.9980 +6187 51149 0.9800 +6187 51154 0.9520 +6187 51182 0.4140 +6187 51187 0.7060 +6187 51202 0.8490 +6187 51263 0.6530 +6187 51264 0.9810 +6187 51314 0.4800 +6187 51319 0.9740 +6187 51373 0.4960 +6187 51386 0.9550 +6187 51388 0.5680 +6187 51504 0.8510 +6187 51520 0.5010 +6187 51574 0.7180 +6187 51602 0.6310 +6187 51611 0.4210 +6187 51649 0.4310 +6187 51650 0.4310 +6187 51720 0.4640 +6187 51727 0.5510 +6187 53918 0.8970 +6187 54033 0.4480 +6187 54148 0.4530 +6187 54464 0.6560 +6187 54496 0.4130 +6187 54502 0.4290 +6187 54505 0.7730 +6187 54512 0.4410 +6187 54516 0.5540 +6187 54555 0.8460 +6187 54596 0.4910 +6187 54859 0.4810 +6187 54881 0.6320 +6187 54913 0.8780 +6187 54948 0.8910 +6187 54965 0.4160 +6187 54979 0.4010 +6187 54998 0.4210 +6187 55031 0.6310 +6187 55052 0.9800 +6187 55127 0.5750 +6187 55131 0.4530 +6187 55143 0.5510 +6187 55157 0.4250 +6187 55168 0.7010 +6187 55170 0.5410 +6187 55173 0.9590 +6187 55176 0.8850 +6187 55226 0.4120 +6187 55268 0.4360 +6187 55272 0.9760 +6187 55316 0.9660 +6187 55324 0.5930 +6187 55379 0.4540 +6187 55591 0.7170 +6187 55601 0.4340 +6187 55629 0.5100 +6187 55646 0.8230 +6187 55651 0.7610 +6187 55699 0.4100 +6187 55703 0.8590 +6187 55720 0.9920 +6187 55759 0.6040 +6187 55781 0.9990 +6187 55802 0.5510 +6187 55813 0.5720 +6187 55854 0.8200 +6187 55862 0.4760 +6187 55893 0.4750 +6187 56257 0.4360 +6187 56341 0.5200 +6187 56479 0.4640 +6187 56648 0.9110 +6187 56731 0.4940 +6187 56893 0.4330 +6187 56902 0.9800 +6187 56915 0.4660 +6187 56945 0.5670 +6187 56965 0.6870 +6187 57038 0.4570 +6187 57050 0.8860 +6187 57110 0.4010 +6187 57129 0.9020 +6187 57136 0.5360 +6187 57176 0.4400 +6187 57418 0.5850 +6187 57470 0.8910 +6187 57647 0.8530 +6187 60488 0.9220 +6187 60558 0.8240 +6187 60559 0.4450 +6187 60678 0.9650 +6187 63875 0.9830 +6187 63931 0.9230 +6187 64146 0.8230 +6187 64216 0.6120 +6187 64221 0.4990 +6187 64374 0.8300 +6187 64432 0.8070 +6187 64434 0.4770 +6187 64745 0.6680 +6187 64951 0.5210 +6187 64960 0.8840 +6187 64963 0.9670 +6187 64965 0.9830 +6187 64968 0.9810 +6187 64975 0.8610 +6187 64976 0.8430 +6187 64978 0.5780 +6187 64979 0.9830 +6187 64981 0.8690 +6187 64983 0.9750 +6187 65003 0.8720 +6187 65005 0.9810 +6187 65008 0.9120 +6187 65080 0.6050 +6187 65083 0.7870 +6187 65121 0.6090 +6187 65122 0.6090 +6187 65993 0.6070 +6187 79048 0.8180 +6187 79050 0.8240 +6187 79084 0.5340 +6187 79159 0.4780 +6187 79571 0.5080 +6187 79590 0.8920 +6187 79631 0.8450 +6187 79668 0.6860 +6187 79707 0.5680 +6187 79727 0.4300 +6187 79897 0.8470 +6187 79954 0.4870 +6187 80146 0.5010 +6187 80222 0.4370 +6187 80270 0.5010 +6187 80349 0.7980 +6187 81492 0.4660 +6187 81570 0.4240 +6187 81631 0.4070 +6187 81887 0.5430 +6187 83732 0.9890 +6187 83743 0.5270 +6187 83939 0.5870 +6187 84128 0.5600 +6187 84135 0.5460 +6187 84172 0.8600 +6187 84285 0.8420 +6187 84306 0.7690 +6187 84340 0.5070 +6187 84365 0.4960 +6187 84545 0.8530 +6187 84701 0.6390 +6187 84790 0.4170 +6187 84851 0.5100 +6187 84916 0.5400 +6187 84946 0.9990 +6187 84993 0.4380 +6187 85377 0.5580 +6187 85395 0.8090 +6187 85437 0.5370 +6187 85476 0.9180 +6187 87178 0.5420 +6187 88745 0.5040 +6187 90313 0.5830 +6187 90624 0.4480 +6187 90701 0.4200 +6187 90826 0.4880 +6187 90850 0.7250 +6187 90957 0.4300 +6187 91408 0.5510 +6187 91574 0.5660 +6187 91893 0.4340 +6187 92196 0.8080 +6187 92399 0.9340 +6187 92856 0.5550 +6187 93107 0.4640 +6187 93517 0.5010 +6187 93550 0.5700 +6187 93974 0.5650 +6187 112939 0.4930 +6187 114781 0.4360 +6187 114987 0.9750 +6187 115098 0.9010 +6187 116541 0.6250 +6187 116832 0.9610 +6187 116835 0.4010 +6187 117246 0.5340 +6187 118460 0.4210 +6187 118461 0.4010 +6187 118487 0.4340 +6187 120892 0.5170 +6187 122481 0.5470 +6187 123283 0.4610 +6187 124359 0.4390 +6187 124454 0.6480 +6187 124995 0.6900 +6187 126402 0.9480 +6187 137994 0.4960 +6187 140032 0.9870 +6187 140801 0.9980 +6187 143244 0.9110 +6187 143630 0.4170 +6187 147011 0.4620 +6187 148022 0.4690 +6187 149041 0.5420 +6187 149478 0.4360 +6187 152518 0.5010 +6187 153443 0.5760 +6187 154288 0.4620 +6187 155368 0.4900 +6187 157310 0.5640 +6187 158067 0.5470 +6187 164153 0.5700 +6187 169522 0.4640 +6187 170850 0.4640 +6187 200916 0.9430 +6187 201595 0.5860 +6187 219927 0.9820 +6187 220988 0.4580 +6187 221264 0.5470 +6187 253175 0.4390 +6187 254268 0.9580 +6187 255308 0.8560 +6187 259217 0.4010 +6187 283518 0.4640 +6187 285521 0.4010 +6187 285855 0.9840 +6187 342538 0.4710 +6187 343068 0.6090 +6187 343070 0.6090 +6187 345051 0.5200 +6187 345630 0.5910 +6187 347487 0.9730 +6187 353376 0.4690 +6187 374659 0.8720 +6187 387129 0.9430 +6187 387712 0.4940 +6187 388633 0.4010 +6187 390999 0.6090 +6187 391002 0.6090 +6187 400735 0.6090 +6187 400736 0.6090 +6187 440560 0.6090 +6187 440561 0.6090 +6187 441873 0.6090 +6187 619279 0.4620 +6187 641776 0.7720 +6187 642489 0.4130 +6187 642987 0.4620 +6187 643909 0.7720 +6187 645051 0.7690 +6187 645073 0.7690 +6187 645359 0.6090 +6187 653619 0.6090 +6187 654364 0.4830 +6187 728524 0.7720 +6187 728689 0.8690 +6187 729396 0.7690 +6187 729422 0.7690 +6187 729428 0.7690 +6187 729431 0.7690 +6187 729442 0.7690 +6187 729447 0.7690 +6187 729528 0.6090 +6187 100008586 0.7690 +6187 100132399 0.7690 +6187 100287482 0.8210 +6187 100302736 0.4690 +6187 100505478 0.8420 +6187 100526842 0.9960 +6187 100529097 0.9470 +6187 100529239 0.9950 +6187 100996746 0.7720 +6187 101929983 0.6090 +6187 102724473 0.7690 +6187 105180390 0.7720 +6187 105180391 0.7720 +6187 114483834 0.5690 +6188 6189 0.9990 +6188 6191 0.9990 +6188 6192 0.9980 +6188 6193 0.9990 +6188 6194 0.9990 +6188 6199 0.4050 +6188 6201 0.9990 +6188 6202 0.9990 +6188 6203 0.9990 +6188 6204 0.9990 +6188 6205 0.9990 +6188 6206 0.9990 +6188 6207 0.9990 +6188 6208 0.9990 +6188 6209 0.9990 +6188 6210 0.9990 +6188 6217 0.9990 +6188 6218 0.9990 +6188 6222 0.9990 +6188 6223 0.9990 +6188 6224 0.9990 +6188 6227 0.9990 +6188 6228 0.9990 +6188 6229 0.9990 +6188 6230 0.9990 +6188 6231 0.9990 +6188 6232 0.9990 +6188 6233 0.9990 +6188 6234 0.9990 +6188 6235 0.9990 +6188 6301 0.4280 +6188 6389 0.4390 +6188 6390 0.4580 +6188 6392 0.4220 +6188 6414 0.8850 +6188 6426 0.4450 +6188 6428 0.6220 +6188 6499 0.8570 +6188 6613 0.5250 +6188 6627 0.5410 +6188 6633 0.5810 +6188 6635 0.7250 +6188 6726 0.8540 +6188 6727 0.9060 +6188 6728 0.8450 +6188 6729 0.9770 +6188 6730 0.8630 +6188 6734 0.4140 +6188 6741 0.4210 +6188 6780 0.4550 +6188 6782 0.4300 +6188 6950 0.7260 +6188 7124 0.4390 +6188 7153 0.5450 +6188 7155 0.4550 +6188 7157 0.8570 +6188 7167 0.6170 +6188 7178 0.9840 +6188 7203 0.6700 +6188 7264 0.6020 +6188 7284 0.9990 +6188 7311 0.9990 +6188 7314 0.6910 +6188 7316 0.7190 +6188 7334 0.5150 +6188 7341 0.4550 +6188 7403 0.6640 +6188 7404 0.6640 +6188 7407 0.6340 +6188 7415 0.4290 +6188 7443 0.4390 +6188 7453 0.4370 +6188 7458 0.7310 +6188 7494 0.8350 +6188 7514 0.6270 +6188 7534 0.4580 +6188 7555 0.4430 +6188 7866 0.7580 +6188 7919 0.5370 +6188 8034 0.4280 +6188 8192 0.5780 +6188 8242 0.6540 +6188 8260 0.4540 +6188 8266 0.7240 +6188 8284 0.6520 +6188 8340 0.4280 +6188 8341 0.4250 +6188 8342 0.4290 +6188 8345 0.4300 +6188 8347 0.4320 +6188 8348 0.4630 +6188 8349 0.4660 +6188 8361 0.5000 +6188 8369 0.4610 +6188 8382 0.4100 +6188 8517 0.5470 +6188 8531 0.4520 +6188 8544 0.4710 +6188 8562 0.9740 +6188 8565 0.7590 +6188 8602 0.9640 +6188 8607 0.7050 +6188 8638 0.6230 +6188 8661 0.9950 +6188 8662 0.9950 +6188 8663 0.9880 +6188 8664 0.9890 +6188 8665 0.9790 +6188 8666 0.9980 +6188 8667 0.9280 +6188 8668 0.9970 +6188 8669 0.9870 +6188 8721 0.9940 +6188 8761 0.4190 +6188 8780 0.6440 +6188 8833 0.6120 +6188 8894 0.9970 +6188 8970 0.4280 +6188 9045 0.9990 +6188 9086 0.9780 +6188 9107 0.4540 +6188 9108 0.4330 +6188 9132 0.5680 +6188 9141 0.8520 +6188 9147 0.4020 +6188 9168 0.4740 +6188 9188 0.6800 +6188 9255 0.5810 +6188 9312 0.5680 +6188 9343 0.9550 +6188 9349 0.9990 +6188 9401 0.4750 +6188 9528 0.4640 +6188 9533 0.9820 +6188 9553 0.9990 +6188 9584 0.5250 +6188 9617 0.6240 +6188 9636 0.8190 +6188 9652 0.5140 +6188 9669 0.9980 +6188 9732 0.9790 +6188 9775 0.8020 +6188 9789 0.4490 +6188 9790 0.4130 +6188 9801 0.9980 +6188 9858 0.9030 +6188 9873 0.4160 +6188 10015 0.4480 +6188 10056 0.6120 +6188 10061 0.7870 +6188 10102 0.8900 +6188 10135 0.6260 +6188 10146 0.5180 +6188 10155 0.4230 +6188 10200 0.4210 +6188 10201 0.4150 +6188 10209 0.9910 +6188 10213 0.6080 +6188 10236 0.6570 +6188 10289 0.9190 +6188 10399 0.9990 +6188 10412 0.9860 +6188 10436 0.4480 +6188 10473 0.9380 +6188 10476 0.5020 +6188 10480 0.9640 +6188 10492 0.7420 +6188 10526 0.5350 +6188 10527 0.5780 +6188 10528 0.6960 +6188 10535 0.4750 +6188 10537 0.6230 +6188 10557 0.8620 +6188 10574 0.8550 +6188 10575 0.8160 +6188 10576 0.8940 +6188 10594 0.4150 +6188 10606 0.5260 +6188 10643 0.4110 +6188 10664 0.5620 +6188 10666 0.4430 +6188 10667 0.5950 +6188 10693 0.4200 +6188 10694 0.7480 +6188 10765 0.6520 +6188 10767 0.9420 +6188 10772 0.5360 +6188 10808 0.4180 +6188 10856 0.4660 +6188 10949 0.4750 +6188 10952 0.8900 +6188 10973 0.5370 +6188 10980 0.4060 +6188 10985 0.9500 +6188 10987 0.4810 +6188 10988 0.8560 +6188 11047 0.4550 +6188 11103 0.9750 +6188 11128 0.9450 +6188 11145 0.4030 +6188 11222 0.9750 +6188 11224 0.9990 +6188 11232 0.4720 +6188 11315 0.6030 +6188 22913 0.5700 +6188 22916 0.6190 +6188 22927 0.9140 +6188 22948 0.7710 +6188 22984 0.9910 +6188 23054 0.5880 +6188 23076 0.4260 +6188 23135 0.6640 +6188 23148 0.6950 +6188 23173 0.8230 +6188 23204 0.9450 +6188 23223 0.6380 +6188 23252 0.8970 +6188 23367 0.5280 +6188 23395 0.5620 +6188 23404 0.5140 +6188 23405 0.4970 +6188 23435 0.4740 +6188 23476 0.5140 +6188 23478 0.4750 +6188 23480 0.8330 +6188 23517 0.6070 +6188 23521 0.9990 +6188 23560 0.4070 +6188 23633 0.4270 +6188 23640 0.9120 +6188 23708 0.6730 +6188 25789 0.4740 +6188 25828 0.4540 +6188 25873 0.9990 +6188 25879 0.4230 +6188 25885 0.9510 +6188 25914 0.4340 +6188 26046 0.4140 +6188 26135 0.9960 +6188 26156 0.5430 +6188 26251 0.5680 +6188 26271 0.6290 +6188 26289 0.6790 +6188 26330 0.4480 +6188 26354 0.4880 +6188 26523 0.4580 +6188 26986 0.7110 +6188 26995 0.4710 +6188 27000 0.4580 +6188 27012 0.5680 +6188 27068 0.4750 +6188 27102 0.4070 +6188 27161 0.4430 +6188 27292 0.7570 +6188 27316 0.4110 +6188 27335 0.9850 +6188 27430 0.6160 +6188 28972 0.4200 +6188 28985 0.8310 +6188 28987 0.9850 +6188 28991 0.5980 +6188 28998 0.9760 +6188 29088 0.7460 +6188 29093 0.9710 +6188 29789 0.6060 +6188 29889 0.4060 +6188 29896 0.4480 +6188 29922 0.4120 +6188 29927 0.9910 +6188 29978 0.6210 +6188 29979 0.6020 +6188 29997 0.5360 +6188 50487 0.4430 +6188 50613 0.5710 +6188 50808 0.6810 +6188 50814 0.6040 +6188 51021 0.9990 +6188 51065 0.9940 +6188 51067 0.5550 +6188 51068 0.5400 +6188 51069 0.9740 +6188 51073 0.9710 +6188 51081 0.9730 +6188 51106 0.7040 +6188 51116 0.9140 +6188 51119 0.6510 +6188 51121 0.9970 +6188 51149 0.9790 +6188 51154 0.9840 +6188 51182 0.4290 +6188 51187 0.8030 +6188 51264 0.9970 +6188 51292 0.4060 +6188 51314 0.4430 +6188 51319 0.9820 +6188 51386 0.9800 +6188 51444 0.4360 +6188 51520 0.6300 +6188 51574 0.5730 +6188 51602 0.5780 +6188 51690 0.4150 +6188 51720 0.4530 +6188 51727 0.6820 +6188 53918 0.9330 +6188 54145 0.4260 +6188 54433 0.5370 +6188 54464 0.7470 +6188 54505 0.7980 +6188 54516 0.6190 +6188 54606 0.6320 +6188 54859 0.5270 +6188 54870 0.4040 +6188 54900 0.4140 +6188 54948 0.9300 +6188 54957 0.4830 +6188 54979 0.4030 +6188 55052 0.9990 +6188 55132 0.4230 +6188 55143 0.6780 +6188 55152 0.4020 +6188 55157 0.4210 +6188 55173 0.9840 +6188 55176 0.9510 +6188 55226 0.4080 +6188 55272 0.9830 +6188 55308 0.4120 +6188 55316 0.9770 +6188 55324 0.7860 +6188 55341 0.4370 +6188 55591 0.8180 +6188 55601 0.5320 +6188 55607 0.4240 +6188 55629 0.5200 +6188 55646 0.8360 +6188 55651 0.8990 +6188 55699 0.4950 +6188 55703 0.9440 +6188 55720 0.9830 +6188 55781 0.9960 +6188 55802 0.6060 +6188 55854 0.7240 +6188 55893 0.4610 +6188 56257 0.4190 +6188 56474 0.5320 +6188 56479 0.5680 +6188 56648 0.9640 +6188 56731 0.4430 +6188 56893 0.5900 +6188 56902 0.9580 +6188 56925 0.6420 +6188 56965 0.8510 +6188 56975 0.7200 +6188 57038 0.6950 +6188 57110 0.4030 +6188 57136 0.6800 +6188 57176 0.4620 +6188 57469 0.4460 +6188 57470 0.9180 +6188 57696 0.4130 +6188 60386 0.4280 +6188 60558 0.9000 +6188 60559 0.4320 +6188 60678 0.9890 +6188 63875 0.9990 +6188 63931 0.9710 +6188 64146 0.9460 +6188 64216 0.7220 +6188 64221 0.5010 +6188 64374 0.9090 +6188 64434 0.4170 +6188 64960 0.9690 +6188 64963 0.9870 +6188 64965 0.9990 +6188 64968 0.9990 +6188 64969 0.9820 +6188 64979 0.9990 +6188 64983 0.9960 +6188 65003 0.9330 +6188 65005 0.9990 +6188 65008 0.9720 +6188 65083 0.4880 +6188 65121 0.7160 +6188 65122 0.7160 +6188 65993 0.4960 +6188 79048 0.8200 +6188 79084 0.5520 +6188 79571 0.5910 +6188 79590 0.9710 +6188 79631 0.9460 +6188 79668 0.8500 +6188 80146 0.5950 +6188 80270 0.5950 +6188 80324 0.5030 +6188 80349 0.5290 +6188 83480 0.4900 +6188 83732 0.9450 +6188 83743 0.5370 +6188 83939 0.6350 +6188 84154 0.4600 +6188 84172 0.9440 +6188 84285 0.8330 +6188 84340 0.5630 +6188 84701 0.4180 +6188 84851 0.5070 +6188 84946 0.9990 +6188 84993 0.6010 +6188 85236 0.4390 +6188 85377 0.7520 +6188 85437 0.5520 +6188 85441 0.4080 +6188 85476 0.9520 +6188 87178 0.6800 +6188 90121 0.5150 +6188 90701 0.4210 +6188 90850 0.8090 +6188 91408 0.4640 +6188 91574 0.6190 +6188 91875 0.5310 +6188 91893 0.4930 +6188 92196 0.8080 +6188 92399 0.9530 +6188 92935 0.4060 +6188 93107 0.5680 +6188 93517 0.5950 +6188 93550 0.6230 +6188 93974 0.5690 +6188 114803 0.5240 +6188 114987 0.9790 +6188 115098 0.9030 +6188 116832 0.9720 +6188 116835 0.4030 +6188 118461 0.4030 +6188 120892 0.5260 +6188 122481 0.6790 +6188 122622 0.6940 +6188 123263 0.4460 +6188 124454 0.8380 +6188 124801 0.4250 +6188 126402 0.9700 +6188 126789 0.4920 +6188 128312 0.4280 +6188 129831 0.4300 +6188 132243 0.6200 +6188 133482 0.4890 +6188 137994 0.4290 +6188 140032 0.9830 +6188 140801 0.9970 +6188 142940 0.4740 +6188 143244 0.9660 +6188 143630 0.5710 +6188 147011 0.4430 +6188 149041 0.5100 +6188 152518 0.4290 +6188 153443 0.7260 +6188 154288 0.4430 +6188 158067 0.6790 +6188 158983 0.4260 +6188 164153 0.6230 +6188 167227 0.5280 +6188 169522 0.5680 +6188 170850 0.5680 +6188 200916 0.9530 +6188 201595 0.5080 +6188 202559 0.4580 +6188 203427 0.4280 +6188 219927 0.9990 +6188 221264 0.6790 +6188 221823 0.4670 +6188 254268 0.9580 +6188 255308 0.9000 +6188 255626 0.4240 +6188 259217 0.4030 +6188 283459 0.4040 +6188 283518 0.5680 +6188 283600 0.4280 +6188 285855 0.9830 +6188 286436 0.4260 +6188 342538 0.6950 +6188 343068 0.7160 +6188 343070 0.7160 +6188 345630 0.5210 +6188 347487 0.9780 +6188 374659 0.9430 +6188 387129 0.9590 +6188 387712 0.6880 +6188 388633 0.4030 +6188 390999 0.7160 +6188 391002 0.7160 +6188 400735 0.7160 +6188 400736 0.7160 +6188 440275 0.4890 +6188 440560 0.7160 +6188 440561 0.7160 +6188 440689 0.4410 +6188 441873 0.7160 +6188 619279 0.4430 +6188 641776 0.8350 +6188 642489 0.4640 +6188 642987 0.4690 +6188 643909 0.8350 +6188 645051 0.7780 +6188 645073 0.7830 +6188 645359 0.7160 +6188 653619 0.7160 +6188 654364 0.5100 +6188 728524 0.8350 +6188 728689 0.8960 +6188 729396 0.7780 +6188 729422 0.7830 +6188 729428 0.7780 +6188 729431 0.7780 +6188 729442 0.7780 +6188 729447 0.7830 +6188 729528 0.7160 +6188 100008586 0.7830 +6188 100132399 0.7830 +6188 100287482 0.9020 +6188 100505478 0.9430 +6188 100526842 0.9960 +6188 100529097 0.9590 +6188 100529239 0.9970 +6188 100996746 0.8350 +6188 101929983 0.7160 +6188 102724473 0.7780 +6188 105180390 0.8350 +6188 105180391 0.8350 +6188 114483833 0.4260 +6188 114483834 0.7930 +6189 6191 0.9990 +6189 6192 0.9960 +6189 6193 0.9990 +6189 6194 0.9990 +6189 6201 0.9990 +6189 6202 0.9990 +6189 6203 0.9990 +6189 6204 0.9990 +6189 6205 0.9990 +6189 6206 0.9990 +6189 6207 0.9990 +6189 6208 0.9990 +6189 6209 0.9990 +6189 6210 0.9990 +6189 6217 0.9990 +6189 6218 0.9990 +6189 6222 0.9990 +6189 6223 0.9990 +6189 6224 0.9990 +6189 6227 0.9990 +6189 6228 0.9990 +6189 6229 0.9990 +6189 6230 0.9990 +6189 6231 0.9990 +6189 6232 0.9990 +6189 6233 0.9990 +6189 6234 0.9990 +6189 6235 0.9990 +6189 6238 0.4990 +6189 6414 0.8910 +6189 6428 0.4050 +6189 6499 0.5040 +6189 6627 0.4890 +6189 6633 0.4200 +6189 6637 0.5110 +6189 6726 0.8570 +6189 6727 0.8700 +6189 6728 0.8440 +6189 6729 0.8450 +6189 6730 0.8520 +6189 6741 0.4540 +6189 6780 0.4910 +6189 6950 0.5400 +6189 7157 0.5260 +6189 7178 0.9860 +6189 7203 0.4970 +6189 7264 0.6290 +6189 7311 0.9990 +6189 7314 0.6970 +6189 7316 0.6980 +6189 7372 0.4870 +6189 7415 0.4510 +6189 7458 0.6370 +6189 7494 0.8760 +6189 7532 0.4170 +6189 7555 0.4140 +6189 7570 0.6980 +6189 7866 0.7500 +6189 7919 0.4240 +6189 8034 0.4240 +6189 8260 0.5040 +6189 8266 0.7580 +6189 8361 0.5220 +6189 8382 0.4590 +6189 8470 0.4360 +6189 8562 0.9620 +6189 8602 0.9710 +6189 8607 0.5550 +6189 8634 0.6380 +6189 8638 0.7200 +6189 8661 0.9940 +6189 8662 0.9890 +6189 8663 0.9860 +6189 8664 0.9830 +6189 8665 0.9700 +6189 8666 0.9610 +6189 8667 0.9110 +6189 8668 0.9890 +6189 8669 0.9490 +6189 8721 0.9410 +6189 8761 0.4140 +6189 8780 0.5620 +6189 8894 0.9910 +6189 9045 0.9990 +6189 9086 0.8740 +6189 9100 0.5180 +6189 9132 0.5140 +6189 9136 0.9820 +6189 9141 0.6390 +6189 9188 0.4430 +6189 9277 0.9890 +6189 9312 0.5250 +6189 9343 0.9340 +6189 9349 0.9990 +6189 9528 0.4760 +6189 9533 0.6800 +6189 9584 0.4290 +6189 9636 0.8490 +6189 9652 0.5080 +6189 9669 0.9760 +6189 9724 0.8840 +6189 9732 0.9780 +6189 9775 0.4350 +6189 9789 0.5700 +6189 9790 0.9940 +6189 9858 0.9070 +6189 9933 0.5230 +6189 9939 0.4200 +6189 10075 0.4060 +6189 10171 0.9860 +6189 10199 0.9850 +6189 10201 0.4720 +6189 10209 0.9770 +6189 10213 0.5340 +6189 10236 0.6270 +6189 10289 0.8740 +6189 10399 0.9990 +6189 10412 0.9830 +6189 10436 0.9890 +6189 10438 0.4370 +6189 10473 0.9160 +6189 10480 0.9650 +6189 10492 0.7540 +6189 10526 0.4940 +6189 10527 0.5250 +6189 10528 0.9900 +6189 10537 0.6700 +6189 10557 0.9190 +6189 10574 0.7350 +6189 10575 0.7650 +6189 10576 0.7490 +6189 10580 0.5770 +6189 10606 0.4510 +6189 10607 0.9830 +6189 10664 0.5580 +6189 10666 0.4420 +6189 10694 0.7580 +6189 10726 0.4300 +6189 10767 0.8980 +6189 10808 0.4010 +6189 10813 0.9890 +6189 10885 0.9830 +6189 10952 0.9090 +6189 10985 0.9040 +6189 10988 0.5300 +6189 11047 0.5310 +6189 11056 0.5030 +6189 11103 0.9940 +6189 11222 0.9530 +6189 11224 0.9990 +6189 11340 0.4490 +6189 22894 0.4050 +6189 22916 0.6050 +6189 22927 0.8660 +6189 22948 0.7010 +6189 22984 0.7080 +6189 23016 0.5570 +6189 23029 0.4590 +6189 23054 0.7790 +6189 23148 0.7450 +6189 23160 0.9930 +6189 23173 0.4240 +6189 23185 0.4190 +6189 23204 0.9600 +6189 23212 0.5100 +6189 23223 0.8850 +6189 23367 0.4070 +6189 23404 0.5800 +6189 23478 0.4600 +6189 23480 0.8280 +6189 23517 0.5280 +6189 23521 0.9990 +6189 23633 0.4350 +6189 23640 0.8670 +6189 23708 0.5710 +6189 25789 0.4650 +6189 25873 0.9990 +6189 25879 0.9850 +6189 25914 0.4630 +6189 25926 0.8900 +6189 25983 0.9760 +6189 26135 0.9900 +6189 26156 0.9210 +6189 26251 0.5140 +6189 26574 0.9900 +6189 26986 0.8100 +6189 27000 0.5090 +6189 27012 0.5140 +6189 27042 0.4080 +6189 27292 0.9250 +6189 27316 0.4030 +6189 27335 0.9660 +6189 27340 0.9840 +6189 27341 0.9850 +6189 27430 0.6570 +6189 28972 0.4200 +6189 28978 0.4090 +6189 28985 0.8280 +6189 28987 0.9940 +6189 28991 0.5780 +6189 28998 0.9730 +6189 29088 0.6800 +6189 29093 0.9630 +6189 29922 0.4540 +6189 29927 0.8380 +6189 29978 0.6650 +6189 29979 0.6940 +6189 29997 0.6660 +6189 30836 0.9760 +6189 50487 0.4420 +6189 50613 0.6210 +6189 50814 0.6260 +6189 51010 0.4640 +6189 51013 0.4910 +6189 51065 0.9950 +6189 51069 0.9660 +6189 51073 0.9580 +6189 51077 0.9820 +6189 51081 0.9700 +6189 51082 0.4670 +6189 51096 0.9850 +6189 51106 0.4610 +6189 51116 0.9110 +6189 51118 0.9820 +6189 51119 0.6990 +6189 51121 0.9980 +6189 51149 0.9800 +6189 51154 0.9770 +6189 51182 0.4180 +6189 51187 0.8670 +6189 51202 0.5250 +6189 51314 0.5180 +6189 51319 0.9810 +6189 51372 0.4430 +6189 51386 0.9680 +6189 51406 0.8170 +6189 51504 0.8160 +6189 51574 0.5030 +6189 51602 0.9900 +6189 51720 0.4470 +6189 53918 0.8900 +6189 54464 0.6600 +6189 54505 0.7520 +6189 54512 0.4690 +6189 54543 0.6510 +6189 54555 0.4980 +6189 54948 0.9080 +6189 55127 0.9930 +6189 55173 0.9780 +6189 55226 0.9820 +6189 55272 0.9970 +6189 55316 0.9760 +6189 55324 0.4330 +6189 55591 0.4100 +6189 55601 0.4880 +6189 55607 0.4320 +6189 55629 0.5360 +6189 55646 0.8650 +6189 55651 0.8520 +6189 55720 0.9500 +6189 55781 0.9760 +6189 55802 0.5420 +6189 55813 0.9920 +6189 55854 0.7180 +6189 55893 0.4440 +6189 56479 0.5210 +6189 56648 0.9330 +6189 56731 0.4420 +6189 56829 0.5990 +6189 56893 0.6370 +6189 56902 0.9800 +6189 56915 0.4640 +6189 56965 0.7120 +6189 57050 0.9860 +6189 57470 0.8570 +6189 57647 0.9100 +6189 60386 0.4250 +6189 60559 0.4050 +6189 60678 0.9770 +6189 63931 0.9610 +6189 64216 0.4860 +6189 64221 0.5010 +6189 64374 0.8670 +6189 64960 0.9670 +6189 64963 0.9770 +6189 64965 0.4280 +6189 64969 0.9800 +6189 65003 0.9020 +6189 65008 0.9650 +6189 65083 0.9930 +6189 65121 0.6670 +6189 65122 0.6670 +6189 65993 0.4930 +6189 79048 0.8250 +6189 79050 0.9910 +6189 79084 0.4700 +6189 79571 0.7810 +6189 79590 0.9640 +6189 79631 0.9200 +6189 79668 0.7120 +6189 79711 0.4210 +6189 79954 0.9810 +6189 80146 0.6260 +6189 80270 0.6260 +6189 80349 0.4550 +6189 83732 0.8660 +6189 83939 0.6340 +6189 84128 0.9850 +6189 84135 0.9860 +6189 84285 0.8130 +6189 84365 0.4840 +6189 84545 0.4340 +6189 84549 0.4740 +6189 84916 0.9870 +6189 84946 0.9810 +6189 84993 0.6540 +6189 85377 0.6360 +6189 85395 0.8300 +6189 85437 0.4880 +6189 85476 0.9200 +6189 88745 0.4680 +6189 90381 0.4340 +6189 90701 0.4270 +6189 91408 0.6630 +6189 91582 0.9090 +6189 92196 0.8080 +6189 92856 0.9810 +6189 93107 0.5140 +6189 93517 0.6260 +6189 93550 0.6720 +6189 114803 0.4280 +6189 114987 0.9730 +6189 115098 0.8940 +6189 116832 0.9780 +6189 116835 0.4710 +6189 120892 0.5210 +6189 124454 0.8450 +6189 126402 0.9670 +6189 128061 0.8000 +6189 139596 0.4440 +6189 140032 0.9870 +6189 140801 0.9980 +6189 143244 0.9290 +6189 143630 0.6210 +6189 147011 0.4420 +6189 149041 0.5100 +6189 153443 0.4520 +6189 154288 0.4420 +6189 164153 0.6700 +6189 169522 0.5140 +6189 170622 0.4260 +6189 170850 0.5140 +6189 200916 0.9780 +6189 201595 0.4730 +6189 203427 0.4240 +6189 219927 0.4170 +6189 220042 0.4050 +6189 254268 0.9480 +6189 255308 0.8220 +6189 283383 0.4440 +6189 283518 0.5140 +6189 283600 0.4240 +6189 285855 0.9830 +6189 342538 0.7450 +6189 343068 0.6670 +6189 343070 0.6670 +6189 345630 0.8420 +6189 347487 0.9810 +6189 387129 0.9460 +6189 387712 0.4960 +6189 390999 0.6670 +6189 391002 0.6670 +6189 400506 0.4220 +6189 400735 0.6670 +6189 400736 0.6670 +6189 440560 0.6670 +6189 440561 0.6670 +6189 441873 0.6670 +6189 619279 0.4420 +6189 641776 0.8170 +6189 642987 0.4420 +6189 643909 0.8170 +6189 645051 0.7820 +6189 645073 0.7820 +6189 645359 0.6670 +6189 653619 0.6670 +6189 654364 0.5200 +6189 728524 0.8170 +6189 728689 0.8920 +6189 729396 0.7820 +6189 729422 0.7820 +6189 729428 0.7820 +6189 729431 0.7820 +6189 729442 0.7820 +6189 729447 0.7820 +6189 729528 0.6670 +6189 100008586 0.7820 +6189 100132399 0.7820 +6189 100287482 0.9070 +6189 100505478 0.9350 +6189 100526842 0.9950 +6189 100529097 0.9650 +6189 100529239 0.9960 +6189 100996746 0.8170 +6189 101929983 0.6670 +6189 102723407 0.5060 +6189 102724473 0.7820 +6189 105180390 0.8170 +6189 105180391 0.8170 +6191 6192 0.9020 +6191 6193 0.9990 +6191 6194 0.9990 +6191 6201 0.9990 +6191 6202 0.9990 +6191 6203 0.9990 +6191 6204 0.9990 +6191 6205 0.9990 +6191 6206 0.9990 +6191 6207 0.9990 +6191 6208 0.9990 +6191 6209 0.9990 +6191 6210 0.9990 +6191 6217 0.9990 +6191 6218 0.9990 +6191 6222 0.9990 +6191 6223 0.9990 +6191 6224 0.9990 +6191 6227 0.9990 +6191 6228 0.9990 +6191 6229 0.9990 +6191 6230 0.9990 +6191 6231 0.9990 +6191 6232 0.9990 +6191 6233 0.9990 +6191 6234 0.9990 +6191 6235 0.9990 +6191 6414 0.5540 +6191 6567 0.6660 +6191 6613 0.4190 +6191 6726 0.8580 +6191 6727 0.9090 +6191 6728 0.8480 +6191 6729 0.8310 +6191 6730 0.8580 +6191 6780 0.5410 +6191 6907 0.4470 +6191 6950 0.6450 +6191 7178 0.9020 +6191 7203 0.5710 +6191 7264 0.4320 +6191 7311 0.9980 +6191 7314 0.6060 +6191 7316 0.5880 +6191 7317 0.6480 +6191 7403 0.6260 +6191 7458 0.5040 +6191 7494 0.8170 +6191 7543 0.9140 +6191 7866 0.4900 +6191 7919 0.4160 +6191 8228 0.4390 +6191 8239 0.6200 +6191 8242 0.6630 +6191 8260 0.5140 +6191 8266 0.6580 +6191 8284 0.4610 +6191 8361 0.4180 +6191 8562 0.9200 +6191 8602 0.7920 +6191 8607 0.5160 +6191 8623 0.4470 +6191 8634 0.4620 +6191 8638 0.5300 +6191 8653 0.4090 +6191 8661 0.9500 +6191 8662 0.9750 +6191 8663 0.9550 +6191 8664 0.9690 +6191 8665 0.9700 +6191 8666 0.9510 +6191 8667 0.9400 +6191 8668 0.9800 +6191 8669 0.9020 +6191 8721 0.9000 +6191 8780 0.5130 +6191 8894 0.9810 +6191 8908 0.4880 +6191 9045 0.9990 +6191 9086 0.7690 +6191 9132 0.4890 +6191 9136 0.9540 +6191 9141 0.6580 +6191 9277 0.9320 +6191 9312 0.4890 +6191 9343 0.7800 +6191 9349 0.9990 +6191 9533 0.4140 +6191 9584 0.4200 +6191 9636 0.7780 +6191 9669 0.9500 +6191 9724 0.5270 +6191 9732 0.8590 +6191 9789 0.4330 +6191 9790 0.9520 +6191 9858 0.7520 +6191 10075 0.4590 +6191 10171 0.9240 +6191 10199 0.9520 +6191 10209 0.9480 +6191 10213 0.5530 +6191 10236 0.5620 +6191 10289 0.6950 +6191 10399 0.9990 +6191 10412 0.9220 +6191 10436 0.9390 +6191 10473 0.7630 +6191 10480 0.9740 +6191 10492 0.6420 +6191 10528 0.9640 +6191 10537 0.5300 +6191 10556 0.5300 +6191 10557 0.8410 +6191 10574 0.7490 +6191 10575 0.7640 +6191 10576 0.7230 +6191 10606 0.4620 +6191 10607 0.9230 +6191 10664 0.4800 +6191 10694 0.7230 +6191 10726 0.4050 +6191 10753 0.4370 +6191 10767 0.8540 +6191 10799 0.5120 +6191 10813 0.9110 +6191 10885 0.9210 +6191 10952 0.9020 +6191 10985 0.6720 +6191 10988 0.4230 +6191 11047 0.4700 +6191 11102 0.5040 +6191 11103 0.9600 +6191 11222 0.8400 +6191 11224 0.9990 +6191 22916 0.6040 +6191 22927 0.6410 +6191 22948 0.7130 +6191 22984 0.6460 +6191 23016 0.4960 +6191 23054 0.4870 +6191 23071 0.4040 +6191 23148 0.5210 +6191 23160 0.9540 +6191 23204 0.8270 +6191 23223 0.8150 +6191 23404 0.4260 +6191 23478 0.4380 +6191 23480 0.8290 +6191 23521 0.9980 +6191 23640 0.6770 +6191 23708 0.5430 +6191 25873 0.9990 +6191 25879 0.9210 +6191 25914 0.4850 +6191 25926 0.8070 +6191 25983 0.9220 +6191 26135 0.9690 +6191 26156 0.6410 +6191 26251 0.4890 +6191 26354 0.4020 +6191 26574 0.9510 +6191 26986 0.6760 +6191 27012 0.4890 +6191 27292 0.8840 +6191 27316 0.5420 +6191 27328 0.4770 +6191 27335 0.9520 +6191 27340 0.9210 +6191 27341 0.9230 +6191 27430 0.4460 +6191 28972 0.4650 +6191 28985 0.8280 +6191 28987 0.9400 +6191 28991 0.4340 +6191 28998 0.8260 +6191 29088 0.5500 +6191 29093 0.8290 +6191 29927 0.8350 +6191 29978 0.4870 +6191 29979 0.5140 +6191 30836 0.9210 +6191 50613 0.4780 +6191 50814 0.4320 +6191 51013 0.4260 +6191 51065 0.9610 +6191 51069 0.8370 +6191 51073 0.8240 +6191 51077 0.9200 +6191 51081 0.8260 +6191 51096 0.9260 +6191 51116 0.7630 +6191 51118 0.9250 +6191 51119 0.5580 +6191 51121 0.9860 +6191 51149 0.8550 +6191 51154 0.8710 +6191 51187 0.6060 +6191 51319 0.8380 +6191 51386 0.9710 +6191 51406 0.8170 +6191 51504 0.8470 +6191 51574 0.5890 +6191 51602 0.9690 +6191 53918 0.8540 +6191 54464 0.4510 +6191 54505 0.7570 +6191 54512 0.5660 +6191 54913 0.4990 +6191 54948 0.6790 +6191 54960 0.5520 +6191 55127 0.9550 +6191 55173 0.8540 +6191 55226 0.9220 +6191 55272 0.9770 +6191 55316 0.8420 +6191 55379 0.4130 +6191 55607 0.4220 +6191 55629 0.5210 +6191 55646 0.8060 +6191 55651 0.7190 +6191 55720 0.9550 +6191 55781 0.9560 +6191 55787 0.5470 +6191 55802 0.5170 +6191 55813 0.9220 +6191 55854 0.5300 +6191 56257 0.4520 +6191 56479 0.4890 +6191 56603 0.4450 +6191 56648 0.7570 +6191 56893 0.5000 +6191 56902 0.9490 +6191 56965 0.6520 +6191 57050 0.9220 +6191 57470 0.8320 +6191 57502 0.4800 +6191 57647 0.8280 +6191 60559 0.4180 +6191 60678 0.9560 +6191 63931 0.8210 +6191 64061 0.5360 +6191 64221 0.4990 +6191 64374 0.6770 +6191 64960 0.8080 +6191 64963 0.9090 +6191 64969 0.8810 +6191 65003 0.7580 +6191 65008 0.8200 +6191 65083 0.9600 +6191 65121 0.5430 +6191 65122 0.5430 +6191 79048 0.8080 +6191 79050 0.9600 +6191 79084 0.4400 +6191 79571 0.4890 +6191 79590 0.8220 +6191 79631 0.7550 +6191 79654 0.4250 +6191 79668 0.6520 +6191 79897 0.5210 +6191 79954 0.9220 +6191 80146 0.4270 +6191 80270 0.4270 +6191 83259 0.4560 +6191 83732 0.9020 +6191 83939 0.6290 +6191 84128 0.9220 +6191 84135 0.9230 +6191 84285 0.8070 +6191 84916 0.9260 +6191 84946 0.9550 +6191 84993 0.5100 +6191 85377 0.5070 +6191 85395 0.8020 +6191 85476 0.7540 +6191 90701 0.4050 +6191 91582 0.8130 +6191 92196 0.5180 +6191 92856 0.9240 +6191 93107 0.4890 +6191 93517 0.4270 +6191 93550 0.5300 +6191 114987 0.8560 +6191 115098 0.8640 +6191 116832 0.9300 +6191 124454 0.6550 +6191 126402 0.8200 +6191 128061 0.8000 +6191 140032 0.9020 +6191 140801 0.9840 +6191 143244 0.7570 +6191 143630 0.4780 +6191 164153 0.5300 +6191 168537 0.4200 +6191 169522 0.4890 +6191 170082 0.5070 +6191 170850 0.4890 +6191 200916 0.8590 +6191 254268 0.8350 +6191 255308 0.6660 +6191 283518 0.4890 +6191 285855 0.8760 +6191 286451 0.4330 +6191 342538 0.5410 +6191 343068 0.5430 +6191 343070 0.5430 +6191 345630 0.6140 +6191 347487 0.8470 +6191 387129 0.8240 +6191 390999 0.5430 +6191 391002 0.5430 +6191 400735 0.5430 +6191 400736 0.5430 +6191 440560 0.5430 +6191 440561 0.5430 +6191 441873 0.5430 +6191 641776 0.6650 +6191 643909 0.6650 +6191 645051 0.6070 +6191 645073 0.6070 +6191 645359 0.5430 +6191 653619 0.5430 +6191 728524 0.6650 +6191 728689 0.6290 +6191 729396 0.6070 +6191 729422 0.6070 +6191 729428 0.6070 +6191 729431 0.6070 +6191 729442 0.6070 +6191 729447 0.6070 +6191 729528 0.5430 +6191 100008586 0.6070 +6191 100132399 0.6070 +6191 100287482 0.7520 +6191 100505478 0.7960 +6191 100526842 0.9780 +6191 100529097 0.8580 +6191 100529239 0.9680 +6191 100996746 0.6650 +6191 101929983 0.5430 +6191 102724473 0.6070 +6191 105180390 0.6650 +6191 105180391 0.6650 +6192 6193 0.9960 +6192 6194 0.9980 +6192 6201 0.9960 +6192 6202 0.9970 +6192 6203 0.9980 +6192 6204 0.9860 +6192 6205 0.9980 +6192 6206 0.9950 +6192 6207 0.9960 +6192 6208 0.9880 +6192 6209 0.9970 +6192 6210 0.9920 +6192 6217 0.9960 +6192 6218 0.9960 +6192 6222 0.9970 +6192 6223 0.9970 +6192 6224 0.9960 +6192 6227 0.9940 +6192 6228 0.9970 +6192 6229 0.9980 +6192 6230 0.9950 +6192 6231 0.9960 +6192 6232 0.9860 +6192 6233 0.9950 +6192 6234 0.9960 +6192 6235 0.9940 +6192 6414 0.5550 +6192 6567 0.7180 +6192 6736 0.5300 +6192 7178 0.7100 +6192 7258 0.5450 +6192 7264 0.4270 +6192 7311 0.9960 +6192 7314 0.5300 +6192 7316 0.5300 +6192 7403 0.4990 +6192 7404 0.9430 +6192 7543 0.4130 +6192 7544 0.9500 +6192 7866 0.4790 +6192 8266 0.5300 +6192 8284 0.9990 +6192 8287 0.9570 +6192 8562 0.6060 +6192 8602 0.7740 +6192 8623 0.4760 +6192 8634 0.4640 +6192 8638 0.5300 +6192 8653 0.9630 +6192 8661 0.5600 +6192 8662 0.5960 +6192 8663 0.5910 +6192 8664 0.6470 +6192 8666 0.4880 +6192 8667 0.4920 +6192 8668 0.6870 +6192 8669 0.5140 +6192 8721 0.4820 +6192 8780 0.4360 +6192 8894 0.8310 +6192 9045 0.9930 +6192 9081 0.4200 +6192 9083 0.4800 +6192 9084 0.5400 +6192 9085 0.4700 +6192 9086 0.9990 +6192 9087 0.8860 +6192 9132 0.4890 +6192 9136 0.7670 +6192 9141 0.6210 +6192 9277 0.6410 +6192 9312 0.4890 +6192 9343 0.7520 +6192 9349 0.9920 +6192 9533 0.4050 +6192 9636 0.7870 +6192 9669 0.6930 +6192 9724 0.5270 +6192 9732 0.8590 +6192 9789 0.4280 +6192 9790 0.7670 +6192 9858 0.7530 +6192 10171 0.6310 +6192 10199 0.7670 +6192 10209 0.6810 +6192 10289 0.6720 +6192 10399 0.9950 +6192 10412 0.8930 +6192 10436 0.6430 +6192 10473 0.7600 +6192 10480 0.4230 +6192 10528 0.7010 +6192 10537 0.5300 +6192 10556 0.4990 +6192 10557 0.8390 +6192 10607 0.6270 +6192 10799 0.5030 +6192 10813 0.5270 +6192 10885 0.6180 +6192 10985 0.6440 +6192 11102 0.4990 +6192 11103 0.7730 +6192 11222 0.8360 +6192 11224 0.9950 +6192 22829 0.8330 +6192 22927 0.6400 +6192 22984 0.6390 +6192 23054 0.4870 +6192 23148 0.5210 +6192 23160 0.7510 +6192 23204 0.8290 +6192 23478 0.4030 +6192 23521 0.9850 +6192 23640 0.7060 +6192 23708 0.5350 +6192 25873 0.9860 +6192 25879 0.6180 +6192 25983 0.6180 +6192 26135 0.7910 +6192 26156 0.6090 +6192 26251 0.4890 +6192 26574 0.7670 +6192 27012 0.4890 +6192 27292 0.4210 +6192 27328 0.4320 +6192 27335 0.7250 +6192 27340 0.6180 +6192 27341 0.6280 +6192 27430 0.4290 +6192 28972 0.4010 +6192 28987 0.7060 +6192 28991 0.4260 +6192 28998 0.8060 +6192 29088 0.5500 +6192 29093 0.8270 +6192 29978 0.4780 +6192 29979 0.4790 +6192 30836 0.6180 +6192 50613 0.4780 +6192 50814 0.4270 +6192 51065 0.9410 +6192 51069 0.8350 +6192 51073 0.8180 +6192 51077 0.6180 +6192 51081 0.8210 +6192 51096 0.6320 +6192 51116 0.7540 +6192 51118 0.6310 +6192 51119 0.5330 +6192 51121 0.9730 +6192 51149 0.8550 +6192 51154 0.8600 +6192 51187 0.5750 +6192 51319 0.8380 +6192 51386 0.5120 +6192 51602 0.8120 +6192 54505 0.5990 +6192 54913 0.4990 +6192 54948 0.7040 +6192 55127 0.7710 +6192 55173 0.8480 +6192 55226 0.6210 +6192 55272 0.8790 +6192 55316 0.8420 +6192 55629 0.5000 +6192 55651 0.6830 +6192 55720 0.6410 +6192 55781 0.8050 +6192 55787 0.5640 +6192 55802 0.4990 +6192 55813 0.6180 +6192 55854 0.4070 +6192 56479 0.4890 +6192 56648 0.7570 +6192 56893 0.4780 +6192 56902 0.7410 +6192 56965 0.6520 +6192 57050 0.6190 +6192 57054 0.4580 +6192 57055 0.4790 +6192 57135 0.4240 +6192 60559 0.4160 +6192 60678 0.7870 +6192 63931 0.8180 +6192 64221 0.5030 +6192 64374 0.6740 +6192 64591 0.4400 +6192 64960 0.8070 +6192 64963 0.9090 +6192 64969 0.8770 +6192 65003 0.7500 +6192 65008 0.8120 +6192 65083 0.7730 +6192 65121 0.5430 +6192 65122 0.5430 +6192 79050 0.7730 +6192 79571 0.4870 +6192 79590 0.8170 +6192 79631 0.7510 +6192 79668 0.6520 +6192 79897 0.4990 +6192 79954 0.6180 +6192 80146 0.4270 +6192 80270 0.4270 +6192 83259 0.6490 +6192 83732 0.5260 +6192 83939 0.5760 +6192 84128 0.6180 +6192 84135 0.6290 +6192 84916 0.6280 +6192 84946 0.8050 +6192 84993 0.4780 +6192 85377 0.5070 +6192 85476 0.7520 +6192 86614 0.5850 +6192 90655 0.4370 +6192 90665 0.5910 +6192 92196 0.5180 +6192 92856 0.6330 +6192 93107 0.4890 +6192 93517 0.4270 +6192 93550 0.5300 +6192 114987 0.8560 +6192 116832 0.9070 +6192 124454 0.6530 +6192 126402 0.8200 +6192 140032 0.9900 +6192 140801 0.9080 +6192 143244 0.7570 +6192 143630 0.4780 +6192 159163 0.4720 +6192 164153 0.5300 +6192 169522 0.4890 +6192 170850 0.4890 +6192 200916 0.8420 +6192 254268 0.8350 +6192 255308 0.5980 +6192 283518 0.4890 +6192 285855 0.8740 +6192 342538 0.5390 +6192 343068 0.5430 +6192 343070 0.5430 +6192 345630 0.6050 +6192 347487 0.8470 +6192 353513 0.5400 +6192 378948 0.5260 +6192 378950 0.4430 +6192 378951 0.4760 +6192 387129 0.8240 +6192 390999 0.5430 +6192 391002 0.5430 +6192 400735 0.5430 +6192 400736 0.5430 +6192 440560 0.5430 +6192 440561 0.5430 +6192 441873 0.5430 +6192 442867 0.4730 +6192 442868 0.4730 +6192 641776 0.6650 +6192 643909 0.6650 +6192 645051 0.6070 +6192 645073 0.6180 +6192 645359 0.5430 +6192 653619 0.5430 +6192 728524 0.6650 +6192 728689 0.5910 +6192 729396 0.6070 +6192 729422 0.6070 +6192 729428 0.6070 +6192 729431 0.6070 +6192 729442 0.6070 +6192 729447 0.6070 +6192 729528 0.5430 +6192 100008586 0.6240 +6192 100132399 0.6070 +6192 100287482 0.7520 +6192 100505478 0.7960 +6192 100526842 0.9740 +6192 100529097 0.8260 +6192 100529239 0.9680 +6192 100996746 0.6650 +6192 101929983 0.5430 +6192 102724473 0.6070 +6192 105180390 0.6650 +6192 105180391 0.6650 +6193 6194 0.9990 +6193 6201 0.9990 +6193 6202 0.9990 +6193 6203 0.9990 +6193 6204 0.9990 +6193 6205 0.9990 +6193 6206 0.9990 +6193 6207 0.9990 +6193 6208 0.9990 +6193 6209 0.9990 +6193 6210 0.9990 +6193 6217 0.9990 +6193 6218 0.9990 +6193 6222 0.9990 +6193 6223 0.9990 +6193 6224 0.9990 +6193 6227 0.9990 +6193 6228 0.9990 +6193 6229 0.9990 +6193 6230 0.9990 +6193 6231 0.9990 +6193 6232 0.9990 +6193 6233 0.9990 +6193 6234 0.9990 +6193 6235 0.9990 +6193 6414 0.5550 +6193 6499 0.5070 +6193 6627 0.5450 +6193 6628 0.4370 +6193 6633 0.6170 +6193 6635 0.5790 +6193 6636 0.4290 +6193 6648 0.5180 +6193 6687 0.5390 +6193 6726 0.8810 +6193 6727 0.8650 +6193 6728 0.8600 +6193 6729 0.9350 +6193 6730 0.8430 +6193 6734 0.4580 +6193 6742 0.6640 +6193 6829 0.4400 +6193 6897 0.4750 +6193 6908 0.4710 +6193 6950 0.4060 +6193 7153 0.4680 +6193 7178 0.9280 +6193 7203 0.4500 +6193 7264 0.4770 +6193 7284 0.9820 +6193 7311 0.9990 +6193 7314 0.5190 +6193 7316 0.5510 +6193 7403 0.5420 +6193 7404 0.5080 +6193 7407 0.5730 +6193 7458 0.5600 +6193 7494 0.8020 +6193 7818 0.8260 +6193 7866 0.6750 +6193 8192 0.4290 +6193 8242 0.4580 +6193 8266 0.6310 +6193 8284 0.4340 +6193 8382 0.5120 +6193 8409 0.4050 +6193 8562 0.9140 +6193 8565 0.5400 +6193 8602 0.9600 +6193 8624 0.7140 +6193 8634 0.4480 +6193 8638 0.5600 +6193 8661 0.9780 +6193 8662 0.9860 +6193 8663 0.9770 +6193 8664 0.9900 +6193 8665 0.9610 +6193 8666 0.9790 +6193 8667 0.9450 +6193 8668 0.9830 +6193 8669 0.9470 +6193 8721 0.9620 +6193 8780 0.4800 +6193 8894 0.9750 +6193 9045 0.9990 +6193 9086 0.9450 +6193 9132 0.5520 +6193 9136 0.9950 +6193 9141 0.7000 +6193 9255 0.4770 +6193 9277 0.9880 +6193 9312 0.5030 +6193 9343 0.8410 +6193 9349 0.9990 +6193 9528 0.4190 +6193 9533 0.8950 +6193 9553 0.9620 +6193 9617 0.5650 +6193 9636 0.7600 +6193 9652 0.5330 +6193 9669 0.9900 +6193 9724 0.8790 +6193 9732 0.8540 +6193 9739 0.4940 +6193 9789 0.4330 +6193 9790 0.9950 +6193 9801 0.9700 +6193 9858 0.8160 +6193 10056 0.5250 +6193 10061 0.5720 +6193 10102 0.7230 +6193 10135 0.5720 +6193 10146 0.4950 +6193 10171 0.9870 +6193 10199 0.9850 +6193 10201 0.5230 +6193 10209 0.9750 +6193 10213 0.5070 +6193 10236 0.4640 +6193 10240 0.4200 +6193 10289 0.8090 +6193 10399 0.9990 +6193 10412 0.9080 +6193 10436 0.9930 +6193 10438 0.5860 +6193 10473 0.7880 +6193 10476 0.4800 +6193 10480 0.9380 +6193 10492 0.7020 +6193 10528 0.9920 +6193 10537 0.4990 +6193 10557 0.7250 +6193 10574 0.7170 +6193 10575 0.6070 +6193 10576 0.6140 +6193 10607 0.9870 +6193 10614 0.4230 +6193 10657 0.4100 +6193 10664 0.5690 +6193 10667 0.5170 +6193 10694 0.4550 +6193 10730 0.4770 +6193 10765 0.4330 +6193 10767 0.9170 +6193 10813 0.9800 +6193 10884 0.4760 +6193 10885 0.9860 +6193 10939 0.5390 +6193 10952 0.8880 +6193 10964 0.4160 +6193 10985 0.9110 +6193 10988 0.7600 +6193 11047 0.5250 +6193 11056 0.4840 +6193 11103 0.9970 +6193 11128 0.8290 +6193 11222 0.9440 +6193 11224 0.9990 +6193 11340 0.5240 +6193 22927 0.8200 +6193 22948 0.5750 +6193 22984 0.9890 +6193 23016 0.4400 +6193 23019 0.4600 +6193 23054 0.7840 +6193 23067 0.4060 +6193 23076 0.4100 +6193 23135 0.5090 +6193 23148 0.7080 +6193 23160 0.9860 +6193 23173 0.7030 +6193 23204 0.9450 +6193 23212 0.6030 +6193 23223 0.8210 +6193 23252 0.6890 +6193 23404 0.5490 +6193 23405 0.5980 +6193 23423 0.4410 +6193 23476 0.4280 +6193 23478 0.4690 +6193 23480 0.8490 +6193 23517 0.5360 +6193 23521 0.9990 +6193 23640 0.7800 +6193 23708 0.5480 +6193 23732 0.4610 +6193 25789 0.4100 +6193 25873 0.9990 +6193 25879 0.9870 +6193 25885 0.8320 +6193 25926 0.8850 +6193 25929 0.4520 +6193 25983 0.9790 +6193 26135 0.9900 +6193 26156 0.7640 +6193 26251 0.5230 +6193 26271 0.5720 +6193 26275 0.7780 +6193 26289 0.4250 +6193 26330 0.4340 +6193 26354 0.4890 +6193 26574 0.9910 +6193 26589 0.8420 +6193 26986 0.6330 +6193 27012 0.5030 +6193 27042 0.4100 +6193 27292 0.9310 +6193 27335 0.9630 +6193 27340 0.9850 +6193 27341 0.9900 +6193 27430 0.4840 +6193 28957 0.4570 +6193 28972 0.4880 +6193 28973 0.4740 +6193 28985 0.8200 +6193 28987 0.9960 +6193 28991 0.4650 +6193 28998 0.9390 +6193 29088 0.5940 +6193 29093 0.9400 +6193 29102 0.6000 +6193 29789 0.6750 +6193 29922 0.5150 +6193 29927 0.9750 +6193 29978 0.4450 +6193 29979 0.4730 +6193 29997 0.6080 +6193 30836 0.9800 +6193 50613 0.4410 +6193 50808 0.4250 +6193 50814 0.4680 +6193 51010 0.5570 +6193 51013 0.6010 +6193 51014 0.4370 +6193 51021 0.9710 +6193 51023 0.6740 +6193 51065 0.9880 +6193 51069 0.8610 +6193 51073 0.9310 +6193 51077 0.9860 +6193 51096 0.9860 +6193 51106 0.5510 +6193 51116 0.8240 +6193 51118 0.9860 +6193 51119 0.4760 +6193 51121 0.9970 +6193 51149 0.8480 +6193 51154 0.8970 +6193 51187 0.6430 +6193 51202 0.5200 +6193 51258 0.4430 +6193 51263 0.5880 +6193 51264 0.9720 +6193 51314 0.5180 +6193 51319 0.8090 +6193 51386 0.9520 +6193 51406 0.8430 +6193 51504 0.8740 +6193 51520 0.4030 +6193 51574 0.5350 +6193 51602 0.9880 +6193 51649 0.4160 +6193 51650 0.5180 +6193 51690 0.4760 +6193 51727 0.4300 +6193 53918 0.8820 +6193 54148 0.4660 +6193 54464 0.5720 +6193 54505 0.7890 +6193 54512 0.5990 +6193 54516 0.5650 +6193 54543 0.4020 +6193 54555 0.5570 +6193 54596 0.4510 +6193 54908 0.4640 +6193 54948 0.9280 +6193 54998 0.4130 +6193 55052 0.9640 +6193 55127 0.9890 +6193 55143 0.4740 +6193 55153 0.7290 +6193 55168 0.6940 +6193 55173 0.9500 +6193 55176 0.8530 +6193 55226 0.9840 +6193 55272 0.9960 +6193 55308 0.4290 +6193 55316 0.8580 +6193 55324 0.5690 +6193 55591 0.6690 +6193 55607 0.5130 +6193 55629 0.5220 +6193 55646 0.8230 +6193 55651 0.8200 +6193 55703 0.7720 +6193 55720 0.9490 +6193 55781 0.9970 +6193 55802 0.5340 +6193 55813 0.9890 +6193 55854 0.7660 +6193 55974 0.4910 +6193 56474 0.4350 +6193 56479 0.5110 +6193 56648 0.9160 +6193 56893 0.4730 +6193 56902 0.9710 +6193 56915 0.6090 +6193 56945 0.5150 +6193 56965 0.6080 +6193 57038 0.6320 +6193 57050 0.9900 +6193 57129 0.8500 +6193 57136 0.5480 +6193 57470 0.8770 +6193 57647 0.8900 +6193 60488 0.8450 +6193 60558 0.6960 +6193 60559 0.4030 +6193 60678 0.9590 +6193 63875 0.9720 +6193 63931 0.9400 +6193 64146 0.7700 +6193 64216 0.5530 +6193 64221 0.5000 +6193 64374 0.7750 +6193 64432 0.7610 +6193 64745 0.5060 +6193 64951 0.5360 +6193 64960 0.9250 +6193 64963 0.9710 +6193 64965 0.9750 +6193 64968 0.9720 +6193 64969 0.9420 +6193 64975 0.8180 +6193 64976 0.8310 +6193 64978 0.5300 +6193 64979 0.9730 +6193 64981 0.8130 +6193 64983 0.9660 +6193 65003 0.9380 +6193 65005 0.9670 +6193 65008 0.8400 +6193 65080 0.8000 +6193 65083 0.9950 +6193 65121 0.5810 +6193 65122 0.5810 +6193 65993 0.5440 +6193 79048 0.8070 +6193 79050 0.9930 +6193 79084 0.4570 +6193 79159 0.5880 +6193 79571 0.7860 +6193 79577 0.4330 +6193 79590 0.8700 +6193 79631 0.8160 +6193 79668 0.6080 +6193 79954 0.9760 +6193 80146 0.4660 +6193 80222 0.4020 +6193 80270 0.4660 +6193 80349 0.5370 +6193 83732 0.9310 +6193 83939 0.6400 +6193 84128 0.9850 +6193 84135 0.9900 +6193 84172 0.8120 +6193 84285 0.8160 +6193 84294 0.4210 +6193 84340 0.5400 +6193 84464 0.4400 +6193 84545 0.8530 +6193 84851 0.5140 +6193 84916 0.9880 +6193 84946 0.9930 +6193 84954 0.4080 +6193 84993 0.4990 +6193 85377 0.5260 +6193 85395 0.8090 +6193 85437 0.7050 +6193 85476 0.8290 +6193 87178 0.5500 +6193 88745 0.4190 +6193 90313 0.5670 +6193 90624 0.4320 +6193 90701 0.4290 +6193 91408 0.6160 +6193 91574 0.5660 +6193 91582 0.8220 +6193 91875 0.4310 +6193 91893 0.4890 +6193 92196 0.8080 +6193 92399 0.8890 +6193 92856 0.9860 +6193 93107 0.5030 +6193 93517 0.4660 +6193 93550 0.4990 +6193 113246 0.4300 +6193 114781 0.4160 +6193 114987 0.8400 +6193 115098 0.9240 +6193 116541 0.6460 +6193 116832 0.9790 +6193 118487 0.5830 +6193 120892 0.5100 +6193 122481 0.4250 +6193 122622 0.4300 +6193 122704 0.4590 +6193 123283 0.4020 +6193 124454 0.6800 +6193 124995 0.5830 +6193 128061 0.8000 +6193 128308 0.4470 +6193 129831 0.4610 +6193 140032 0.9810 +6193 140801 0.9960 +6193 143244 0.9160 +6193 143630 0.4410 +6193 148022 0.4360 +6193 149041 0.5100 +6193 152518 0.4290 +6193 153443 0.5430 +6193 157310 0.5170 +6193 158067 0.4250 +6193 164153 0.4990 +6193 169522 0.5030 +6193 170850 0.5030 +6193 200916 0.9430 +6193 201161 0.4410 +6193 201595 0.4330 +6193 219927 0.9750 +6193 221264 0.4250 +6193 254268 0.7710 +6193 255308 0.7420 +6193 283383 0.4220 +6193 283518 0.5030 +6193 285855 0.9780 +6193 342538 0.7320 +6193 343068 0.5810 +6193 343070 0.5810 +6193 345051 0.4610 +6193 345630 0.8660 +6193 347487 0.8530 +6193 353376 0.4360 +6193 374659 0.8030 +6193 387129 0.8140 +6193 390999 0.5810 +6193 391002 0.5810 +6193 400735 0.5810 +6193 400736 0.5810 +6193 440560 0.5810 +6193 440561 0.5810 +6193 441873 0.5810 +6193 641776 0.6750 +6193 643909 0.6750 +6193 645051 0.5880 +6193 645073 0.5880 +6193 645359 0.5810 +6193 653619 0.5810 +6193 654364 0.5540 +6193 728524 0.6750 +6193 728689 0.8200 +6193 729396 0.5880 +6193 729422 0.5880 +6193 729428 0.5880 +6193 729431 0.5880 +6193 729442 0.5880 +6193 729447 0.5880 +6193 729528 0.5810 +6193 100008586 0.5880 +6193 100132399 0.5880 +6193 100287482 0.7690 +6193 100302736 0.4360 +6193 100505478 0.8050 +6193 100526842 0.9960 +6193 100529097 0.9430 +6193 100529239 0.9950 +6193 100996746 0.7440 +6193 101929983 0.5810 +6193 102724473 0.5880 +6193 105180390 0.6750 +6193 105180391 0.6750 +6193 114483834 0.5950 +6194 6195 0.7960 +6194 6196 0.7270 +6194 6197 0.6420 +6194 6198 0.9990 +6194 6199 0.9960 +6194 6201 0.9990 +6194 6202 0.9990 +6194 6203 0.9990 +6194 6204 0.9990 +6194 6205 0.9990 +6194 6206 0.9990 +6194 6207 0.9990 +6194 6208 0.9990 +6194 6209 0.9990 +6194 6210 0.9990 +6194 6217 0.9990 +6194 6218 0.9990 +6194 6222 0.9990 +6194 6223 0.9990 +6194 6224 0.9990 +6194 6227 0.9990 +6194 6228 0.9990 +6194 6229 0.9990 +6194 6230 0.9990 +6194 6231 0.9990 +6194 6232 0.9990 +6194 6233 0.9990 +6194 6234 0.9990 +6194 6235 0.9990 +6194 6389 0.4450 +6194 6414 0.8780 +6194 6446 0.5810 +6194 6499 0.5230 +6194 6613 0.4080 +6194 6626 0.4280 +6194 6627 0.4230 +6194 6635 0.7300 +6194 6726 0.8540 +6194 6727 0.8790 +6194 6728 0.8540 +6194 6729 0.8280 +6194 6730 0.8730 +6194 6780 0.8260 +6194 6790 0.4080 +6194 6794 0.4710 +6194 6950 0.4630 +6194 7072 0.5930 +6194 7073 0.5970 +6194 7124 0.5110 +6194 7157 0.7040 +6194 7178 0.9870 +6194 7203 0.4140 +6194 7216 0.5630 +6194 7248 0.8440 +6194 7249 0.9080 +6194 7264 0.5340 +6194 7311 0.9990 +6194 7314 0.6880 +6194 7316 0.7000 +6194 7341 0.4550 +6194 7343 0.4090 +6194 7415 0.4450 +6194 7458 0.6690 +6194 7494 0.8430 +6194 7529 0.4880 +6194 7555 0.6060 +6194 7837 0.4840 +6194 7866 0.7590 +6194 8034 0.4260 +6194 8266 0.7390 +6194 8320 0.4130 +6194 8361 0.4130 +6194 8562 0.9700 +6194 8565 0.4690 +6194 8568 0.5370 +6194 8602 0.9760 +6194 8634 0.6400 +6194 8637 0.6400 +6194 8638 0.6980 +6194 8661 0.9840 +6194 8662 0.9950 +6194 8663 0.9860 +6194 8664 0.9880 +6194 8665 0.9570 +6194 8666 0.9700 +6194 8667 0.9530 +6194 8668 0.9830 +6194 8669 0.9420 +6194 8672 0.4020 +6194 8721 0.9270 +6194 8780 0.5610 +6194 8878 0.4060 +6194 8886 0.4710 +6194 8893 0.4030 +6194 8894 0.9940 +6194 9024 0.4140 +6194 9045 0.9990 +6194 9086 0.8660 +6194 9100 0.6050 +6194 9132 0.5810 +6194 9136 0.9880 +6194 9141 0.8220 +6194 9188 0.4900 +6194 9221 0.4510 +6194 9277 0.9940 +6194 9312 0.5810 +6194 9343 0.9310 +6194 9349 0.9990 +6194 9584 0.4480 +6194 9636 0.8400 +6194 9652 0.5180 +6194 9669 0.9860 +6194 9724 0.9000 +6194 9732 0.9790 +6194 9775 0.8050 +6194 9776 0.4890 +6194 9782 0.6020 +6194 9789 0.4370 +6194 9790 0.9950 +6194 9858 0.9000 +6194 9898 0.4510 +6194 9904 0.4470 +6194 9908 0.5730 +6194 9933 0.5250 +6194 9939 0.5070 +6194 10000 0.5040 +6194 10013 0.4340 +6194 10024 0.5580 +6194 10109 0.4240 +6194 10146 0.7870 +6194 10171 0.9900 +6194 10199 0.9960 +6194 10200 0.4100 +6194 10209 0.9840 +6194 10213 0.4390 +6194 10236 0.5230 +6194 10289 0.8820 +6194 10325 0.7180 +6194 10397 0.4660 +6194 10399 0.9990 +6194 10412 0.9910 +6194 10436 0.9960 +6194 10438 0.6420 +6194 10473 0.9240 +6194 10480 0.9210 +6194 10492 0.6650 +6194 10514 0.5890 +6194 10521 0.6000 +6194 10526 0.5080 +6194 10527 0.6240 +6194 10528 0.9950 +6194 10537 0.6470 +6194 10556 0.8450 +6194 10557 0.9850 +6194 10574 0.6920 +6194 10575 0.6040 +6194 10576 0.5600 +6194 10607 0.9890 +6194 10643 0.4210 +6194 10664 0.5020 +6194 10666 0.4350 +6194 10670 0.6000 +6194 10694 0.4800 +6194 10767 0.9000 +6194 10799 0.8100 +6194 10808 0.4110 +6194 10813 0.9840 +6194 10885 0.9870 +6194 10952 0.9040 +6194 10969 0.7020 +6194 10985 0.8790 +6194 10987 0.4200 +6194 10988 0.5330 +6194 11047 0.5420 +6194 11056 0.8410 +6194 11102 0.8010 +6194 11103 0.9970 +6194 11222 0.9690 +6194 11224 0.9990 +6194 11340 0.6580 +6194 22803 0.5140 +6194 22927 0.8580 +6194 22948 0.6870 +6194 22984 0.9820 +6194 23016 0.6880 +6194 23049 0.4440 +6194 23054 0.6360 +6194 23076 0.5460 +6194 23148 0.6920 +6194 23160 0.9890 +6194 23173 0.4230 +6194 23178 0.4760 +6194 23204 0.9540 +6194 23212 0.5500 +6194 23223 0.8760 +6194 23246 0.7550 +6194 23367 0.6630 +6194 23378 0.4060 +6194 23404 0.7010 +6194 23435 0.4280 +6194 23478 0.4700 +6194 23480 0.8400 +6194 23481 0.6640 +6194 23517 0.7150 +6194 23521 0.9990 +6194 23640 0.8890 +6194 23708 0.5810 +6194 23770 0.5970 +6194 25873 0.9990 +6194 25879 0.9950 +6194 25926 0.9640 +6194 25983 0.9910 +6194 26019 0.5090 +6194 26135 0.9910 +6194 26156 0.9100 +6194 26168 0.5530 +6194 26251 0.5810 +6194 26354 0.5370 +6194 26574 0.9910 +6194 26986 0.8720 +6194 27012 0.5810 +6194 27042 0.8400 +6194 27043 0.5800 +6194 27161 0.4080 +6194 27250 0.4560 +6194 27292 0.9430 +6194 27335 0.9730 +6194 27340 0.9960 +6194 27341 0.9900 +6194 27430 0.5440 +6194 28972 0.4420 +6194 28985 0.8190 +6194 28987 0.9810 +6194 28991 0.5850 +6194 28998 0.9680 +6194 29088 0.6800 +6194 29093 0.9680 +6194 29904 0.6650 +6194 29927 0.8430 +6194 29974 0.4250 +6194 29978 0.5860 +6194 29979 0.6000 +6194 29997 0.5790 +6194 30836 0.9790 +6194 30850 0.4590 +6194 50487 0.4350 +6194 50613 0.5820 +6194 50814 0.5440 +6194 51010 0.6740 +6194 51013 0.6710 +6194 51065 0.9890 +6194 51069 0.9580 +6194 51073 0.9570 +6194 51077 0.9940 +6194 51081 0.9730 +6194 51096 0.9900 +6194 51106 0.4760 +6194 51116 0.9170 +6194 51118 0.9940 +6194 51119 0.6360 +6194 51121 0.9980 +6194 51149 0.9800 +6194 51154 0.9650 +6194 51187 0.7130 +6194 51202 0.8480 +6194 51256 0.7010 +6194 51319 0.9750 +6194 51386 0.9600 +6194 51388 0.6310 +6194 51406 0.8200 +6194 51504 0.8440 +6194 51520 0.4760 +6194 51574 0.7080 +6194 51602 0.9940 +6194 51720 0.5880 +6194 53918 0.9240 +6194 54033 0.4150 +6194 54464 0.6340 +6194 54502 0.4770 +6194 54505 0.7680 +6194 54512 0.6630 +6194 54541 0.6180 +6194 54555 0.8480 +6194 54596 0.5020 +6194 54606 0.4540 +6194 54865 0.4360 +6194 54881 0.5690 +6194 54913 0.8000 +6194 54948 0.9040 +6194 55127 0.9910 +6194 55131 0.5470 +6194 55132 0.4530 +6194 55173 0.9760 +6194 55225 0.4310 +6194 55226 0.9810 +6194 55239 0.4280 +6194 55272 0.9980 +6194 55294 0.4030 +6194 55308 0.4810 +6194 55316 0.9610 +6194 55591 0.4110 +6194 55601 0.4910 +6194 55607 0.4650 +6194 55629 0.5210 +6194 55646 0.8550 +6194 55651 0.8800 +6194 55720 0.9900 +6194 55759 0.6520 +6194 55781 0.9940 +6194 55802 0.6020 +6194 55813 0.9870 +6194 55854 0.7100 +6194 55893 0.4440 +6194 56479 0.5810 +6194 56648 0.9360 +6194 56731 0.4350 +6194 56829 0.4530 +6194 56893 0.6010 +6194 56902 0.9880 +6194 56915 0.6660 +6194 56965 0.7150 +6194 57050 0.9970 +6194 57418 0.6350 +6194 57470 0.8430 +6194 57521 0.9000 +6194 57647 0.9670 +6194 58528 0.6880 +6194 60386 0.4270 +6194 60559 0.4010 +6194 60678 0.9850 +6194 63931 0.9430 +6194 64121 0.5980 +6194 64216 0.5010 +6194 64221 0.4990 +6194 64223 0.8100 +6194 64374 0.8880 +6194 64434 0.4640 +6194 64798 0.5190 +6194 64960 0.9720 +6194 64963 0.9780 +6194 64968 0.4800 +6194 64969 0.9710 +6194 65003 0.9180 +6194 65008 0.9450 +6194 65083 0.9930 +6194 65121 0.6710 +6194 65122 0.6710 +6194 65975 0.5390 +6194 65993 0.4260 +6194 79009 0.4770 +6194 79048 0.8130 +6194 79050 0.9960 +6194 79109 0.6530 +6194 79159 0.5760 +6194 79571 0.6370 +6194 79590 0.9710 +6194 79631 0.8770 +6194 79668 0.7150 +6194 79707 0.5950 +6194 79831 0.9050 +6194 79897 0.8070 +6194 79954 0.9810 +6194 80135 0.4510 +6194 80146 0.7230 +6194 80270 0.5310 +6194 80349 0.4330 +6194 81492 0.4800 +6194 81631 0.4940 +6194 81853 0.4270 +6194 81887 0.5520 +6194 83732 0.9670 +6194 83743 0.5000 +6194 83939 0.7790 +6194 84128 0.9870 +6194 84135 0.9870 +6194 84154 0.4200 +6194 84271 0.4760 +6194 84285 0.8190 +6194 84294 0.4160 +6194 84305 0.4470 +6194 84335 0.6640 +6194 84365 0.7370 +6194 84916 0.9840 +6194 84946 0.9960 +6194 84993 0.6120 +6194 85377 0.6640 +6194 85395 0.8140 +6194 85476 0.8790 +6194 88745 0.5660 +6194 90701 0.4330 +6194 91408 0.4450 +6194 91582 0.8090 +6194 92196 0.8080 +6194 92856 0.9870 +6194 93107 0.5810 +6194 93517 0.5310 +6194 93550 0.6470 +6194 96459 0.4650 +6194 114803 0.5210 +6194 114907 0.4720 +6194 114987 0.9760 +6194 115098 0.9000 +6194 116832 0.9540 +6194 117246 0.5370 +6194 118460 0.5810 +6194 120103 0.5760 +6194 122622 0.6800 +6194 124454 0.7640 +6194 126402 0.9680 +6194 128061 0.8000 +6194 137902 0.4830 +6194 137994 0.4290 +6194 140032 0.9860 +6194 140801 0.9970 +6194 143244 0.9380 +6194 143630 0.5820 +6194 147011 0.4350 +6194 149041 0.5210 +6194 152518 0.4400 +6194 153201 0.4210 +6194 153443 0.5040 +6194 154288 0.4350 +6194 164153 0.6470 +6194 166863 0.4180 +6194 169522 0.5810 +6194 170850 0.5810 +6194 200916 0.9680 +6194 201163 0.5460 +6194 201595 0.4690 +6194 203427 0.4260 +6194 206358 0.6430 +6194 253260 0.7900 +6194 254268 0.9570 +6194 255308 0.8760 +6194 266812 0.5820 +6194 283383 0.4150 +6194 283518 0.5810 +6194 283600 0.4290 +6194 285855 0.9820 +6194 342538 0.6980 +6194 343068 0.6710 +6194 343070 0.6710 +6194 345630 0.8810 +6194 347487 0.9770 +6194 373863 0.4180 +6194 387129 0.9590 +6194 390999 0.6710 +6194 391002 0.6710 +6194 400735 0.6710 +6194 400736 0.6710 +6194 440275 0.5200 +6194 440560 0.6710 +6194 440561 0.6710 +6194 441873 0.6710 +6194 619279 0.4350 +6194 641776 0.8200 +6194 642489 0.4140 +6194 642987 0.4350 +6194 643909 0.8200 +6194 644591 0.4020 +6194 645051 0.7860 +6194 645073 0.7860 +6194 645142 0.4020 +6194 645359 0.6710 +6194 653505 0.4280 +6194 653598 0.4020 +6194 653619 0.6710 +6194 728524 0.8200 +6194 728689 0.8890 +6194 728945 0.4020 +6194 729396 0.7860 +6194 729422 0.7860 +6194 729428 0.7860 +6194 729431 0.7860 +6194 729442 0.7860 +6194 729447 0.7860 +6194 729528 0.6710 +6194 730262 0.4020 +6194 100008586 0.7860 +6194 100132399 0.7860 +6194 100287482 0.9000 +6194 100505478 0.9350 +6194 100526842 0.9940 +6194 100529097 0.9480 +6194 100529239 0.9950 +6194 100996746 0.8200 +6194 101929983 0.6710 +6194 102724473 0.7860 +6194 105180390 0.8200 +6194 105180391 0.8200 +6194 105371242 0.4020 +6195 6196 0.9160 +6195 6197 0.9220 +6195 6271 0.4490 +6195 6285 0.9750 +6195 6456 0.4990 +6195 6464 0.6230 +6195 6548 0.5300 +6195 6654 0.4340 +6195 6714 0.5540 +6195 6774 0.6060 +6195 6776 0.5880 +6195 7014 0.4080 +6195 7040 0.5350 +6195 7072 0.4900 +6195 7124 0.4150 +6195 7157 0.6870 +6195 7248 0.9690 +6195 7249 0.9880 +6195 7408 0.4350 +6195 7529 0.4430 +6195 7837 0.4080 +6195 8061 0.6080 +6195 8290 0.4070 +6195 8356 0.4060 +6195 8498 0.5760 +6195 8517 0.5900 +6195 8878 0.5750 +6195 8986 0.5730 +6195 8988 0.4460 +6195 9088 0.9080 +6195 9183 0.4030 +6195 9223 0.4020 +6195 9252 0.4570 +6195 9451 0.5520 +6195 10018 0.4620 +6195 11140 0.6550 +6195 26271 0.4130 +6195 26578 0.4360 +6195 27250 0.4690 +6195 27330 0.7030 +6195 29883 0.4480 +6195 29904 0.6070 +6195 51256 0.9450 +6195 51806 0.4510 +6195 53407 0.4040 +6195 55615 0.4250 +6195 56269 0.4910 +6195 57521 0.8590 +6195 60561 0.5590 +6195 64121 0.4270 +6195 64223 0.5160 +6195 64506 0.4450 +6195 64798 0.6340 +6195 79109 0.6130 +6195 79660 0.6500 +6195 81619 0.4470 +6195 84271 0.4650 +6195 84335 0.6190 +6195 90673 0.6500 +6195 91860 0.4600 +6195 133482 0.5700 +6195 137902 0.4060 +6195 163688 0.4460 +6195 200576 0.5200 +6195 253260 0.7520 +6195 286151 0.6070 +6195 440093 0.4070 +6195 440686 0.4110 +6195 653604 0.4070 +6196 6197 0.8920 +6196 6456 0.5100 +6196 6548 0.4020 +6196 7072 0.4850 +6196 7157 0.5380 +6196 7248 0.9440 +6196 7249 0.9600 +6196 8498 0.5910 +6196 8986 0.4430 +6196 9088 0.9030 +6196 9205 0.4340 +6196 9252 0.4420 +6196 9368 0.4510 +6196 9472 0.5680 +6196 9718 0.4360 +6196 9894 0.4930 +6196 10015 0.4220 +6196 23513 0.6640 +6196 26578 0.4050 +6196 27330 0.5160 +6196 51256 0.9370 +6196 53407 0.4080 +6196 57521 0.5850 +6196 58528 0.4330 +6196 60561 0.5560 +6196 64506 0.4160 +6196 79660 0.6580 +6196 80347 0.4100 +6196 84335 0.5150 +6196 85358 0.4640 +6196 90673 0.7570 +6196 113402 0.5540 +6196 133482 0.5370 +6196 253260 0.5510 +6197 6456 0.4990 +6197 6548 0.4140 +6197 6597 0.4750 +6197 6654 0.4150 +6197 6714 0.5920 +6197 6774 0.5470 +6197 6776 0.5200 +6197 7072 0.8900 +6197 7157 0.6190 +6197 7185 0.4620 +6197 7248 0.9440 +6197 7249 0.9600 +6197 8290 0.4940 +6197 8350 0.4630 +6197 8356 0.6390 +6197 8498 0.5820 +6197 8569 0.4350 +6197 8682 0.8590 +6197 8986 0.4490 +6197 9088 0.9020 +6197 9183 0.4130 +6197 9205 0.4450 +6197 9252 0.6360 +6197 9368 0.5350 +6197 9475 0.5730 +6197 10013 0.5430 +6197 10015 0.5990 +6197 10399 0.5090 +6197 10640 0.5190 +6197 10818 0.6090 +6197 10922 0.4730 +6197 11140 0.5040 +6197 11177 0.4650 +6197 23365 0.4320 +6197 26578 0.4140 +6197 27330 0.5470 +6197 51256 0.9330 +6197 53407 0.4080 +6197 57521 0.5900 +6197 57551 0.4330 +6197 57604 0.4530 +6197 60561 0.5630 +6197 64506 0.4220 +6197 79660 0.6550 +6197 80895 0.5020 +6197 84335 0.5080 +6197 90673 0.6500 +6197 114799 0.4060 +6197 133482 0.5670 +6197 135932 0.5620 +6197 196528 0.4320 +6197 253260 0.4910 +6197 284403 0.4140 +6197 440093 0.4940 +6197 440686 0.4420 +6197 653604 0.4980 +6198 6199 0.9130 +6198 6207 0.5110 +6198 6256 0.4340 +6198 6426 0.4460 +6198 6464 0.4660 +6198 6510 0.4300 +6198 6513 0.4700 +6198 6517 0.5930 +6198 6597 0.4980 +6198 6615 0.4180 +6198 6648 0.4560 +6198 6654 0.4190 +6198 6667 0.9250 +6198 6714 0.5020 +6198 6720 0.6270 +6198 6721 0.4230 +6198 6772 0.5290 +6198 6774 0.6310 +6198 6776 0.4470 +6198 6777 0.4370 +6198 6794 0.7230 +6198 6850 0.4130 +6198 7015 0.6660 +6198 7019 0.4330 +6198 7030 0.4060 +6198 7040 0.4510 +6198 7074 0.4820 +6198 7099 0.4050 +6198 7124 0.5550 +6198 7157 0.7000 +6198 7178 0.5840 +6198 7248 0.9060 +6198 7249 0.9520 +6198 7414 0.4310 +6198 7454 0.4080 +6198 7494 0.4120 +6198 7514 0.4600 +6198 7529 0.6220 +6198 7837 0.6820 +6198 7942 0.6170 +6198 8050 0.4270 +6198 8140 0.4560 +6198 8202 0.9310 +6198 8290 0.4540 +6198 8356 0.4580 +6198 8493 0.4910 +6198 8637 0.6300 +6198 8649 0.6300 +6198 8660 0.7370 +6198 8662 0.8920 +6198 8663 0.4530 +6198 8665 0.8010 +6198 8667 0.5250 +6198 8678 0.7280 +6198 8725 0.4010 +6198 8814 0.4070 +6198 8850 0.4440 +6198 8856 0.4570 +6198 8878 0.8340 +6198 8900 0.4210 +6198 8945 0.5830 +6198 9140 0.5580 +6198 9188 0.4580 +6198 9370 0.4410 +6198 9474 0.7050 +6198 9618 0.5710 +6198 9675 0.4550 +6198 9775 0.4970 +6198 9776 0.6190 +6198 9821 0.5620 +6198 9882 0.4800 +6198 9978 0.4470 +6198 10000 0.9430 +6198 10018 0.5270 +6198 10325 0.9130 +6198 10397 0.4370 +6198 10476 0.6040 +6198 10498 0.9150 +6198 10513 0.5860 +6198 10533 0.6390 +6198 10542 0.5540 +6198 10641 0.4940 +6198 10670 0.8640 +6198 10891 0.6010 +6198 11267 0.4310 +6198 11337 0.4220 +6198 11345 0.5240 +6198 22863 0.4340 +6198 22926 0.4250 +6198 23035 0.6230 +6198 23049 0.5670 +6198 23175 0.4810 +6198 23192 0.4400 +6198 23239 0.6780 +6198 23410 0.4260 +6198 23411 0.7120 +6198 23710 0.5230 +6198 23770 0.6330 +6198 25983 0.6350 +6198 26499 0.5320 +6198 27244 0.5020 +6198 27250 0.8200 +6198 28956 0.5960 +6198 29110 0.9170 +6198 29904 0.9610 +6198 30849 0.4010 +6198 51256 0.7490 +6198 51520 0.4350 +6198 51806 0.4700 +6198 54205 0.5540 +6198 54407 0.5010 +6198 54432 0.4820 +6198 54541 0.6530 +6198 54606 0.4350 +6198 54700 0.4550 +6198 54861 0.4430 +6198 55004 0.6300 +6198 55054 0.4030 +6198 55143 0.4490 +6198 55201 0.5070 +6198 55240 0.4310 +6198 55607 0.5060 +6198 55615 0.6050 +6198 55654 0.5210 +6198 57521 0.9990 +6198 57600 0.6850 +6198 58528 0.8860 +6198 64121 0.8580 +6198 64223 0.9910 +6198 64422 0.4510 +6198 64798 0.9910 +6198 79109 0.8830 +6198 80347 0.4890 +6198 81631 0.7080 +6198 81669 0.4470 +6198 81671 0.4170 +6198 83667 0.5760 +6198 84141 0.4220 +6198 84232 0.5050 +6198 84260 0.4160 +6198 84271 0.9210 +6198 84335 0.9900 +6198 84557 0.5610 +6198 84676 0.5910 +6198 84687 0.5950 +6198 84803 0.4970 +6198 91860 0.4430 +6198 96459 0.6030 +6198 114907 0.7050 +6198 120103 0.5740 +6198 121268 0.4260 +6198 137902 0.6800 +6198 143686 0.4510 +6198 147746 0.4160 +6198 153129 0.6790 +6198 153201 0.4090 +6198 163688 0.4430 +6198 201163 0.6220 +6198 206358 0.6250 +6198 253260 0.9810 +6198 389541 0.5800 +6198 440093 0.4540 +6198 440686 0.4540 +6198 653604 0.4610 +6199 6202 0.4050 +6199 6667 0.9140 +6199 6714 0.4530 +6199 6720 0.4790 +6199 6732 0.4160 +6199 6774 0.4250 +6199 7015 0.4830 +6199 7157 0.5060 +6199 7178 0.7930 +6199 7248 0.8740 +6199 7249 0.9080 +6199 7297 0.4310 +6199 7837 0.4130 +6199 7942 0.4640 +6199 8050 0.4250 +6199 8202 0.9130 +6199 8637 0.4030 +6199 8660 0.5300 +6199 8678 0.4500 +6199 8850 0.4110 +6199 9474 0.4760 +6199 9611 0.8950 +6199 9776 0.4430 +6199 10000 0.9390 +6199 10146 0.4310 +6199 10325 0.5260 +6199 10476 0.5920 +6199 10498 0.9120 +6199 10533 0.4290 +6199 10670 0.5070 +6199 10891 0.4250 +6199 11140 0.4110 +6199 11345 0.4120 +6199 23049 0.4830 +6199 23239 0.4590 +6199 23411 0.5440 +6199 23710 0.4150 +6199 23770 0.6380 +6199 25983 0.5710 +6199 26499 0.4350 +6199 27250 0.4520 +6199 29904 0.6570 +6199 51256 0.4420 +6199 54541 0.4950 +6199 55143 0.4270 +6199 55240 0.6680 +6199 55607 0.7600 +6199 55615 0.4790 +6199 57521 0.9930 +6199 58528 0.4720 +6199 64121 0.5370 +6199 64223 0.9750 +6199 64798 0.9560 +6199 79109 0.7760 +6199 81631 0.4410 +6199 83667 0.4530 +6199 84232 0.4910 +6199 84271 0.8140 +6199 84335 0.9720 +6199 84687 0.5350 +6199 114907 0.4180 +6199 137902 0.4130 +6199 253260 0.8040 +6201 6202 0.9990 +6201 6203 0.9990 +6201 6204 0.9990 +6201 6205 0.9990 +6201 6206 0.9990 +6201 6207 0.9990 +6201 6208 0.9990 +6201 6209 0.9990 +6201 6210 0.9990 +6201 6217 0.9990 +6201 6218 0.9990 +6201 6222 0.9990 +6201 6223 0.9990 +6201 6224 0.9990 +6201 6227 0.9990 +6201 6228 0.9990 +6201 6229 0.9990 +6201 6230 0.9990 +6201 6231 0.9990 +6201 6232 0.9990 +6201 6233 0.9990 +6201 6234 0.9990 +6201 6235 0.9990 +6201 6414 0.8430 +6201 6499 0.5480 +6201 6627 0.5700 +6201 6726 0.8630 +6201 6727 0.8600 +6201 6728 0.8450 +6201 6729 0.8740 +6201 6730 0.8710 +6201 7157 0.6840 +6201 7178 0.9540 +6201 7264 0.5530 +6201 7268 0.7950 +6201 7311 0.9990 +6201 7314 0.6190 +6201 7316 0.6220 +6201 7458 0.5280 +6201 7494 0.8000 +6201 7520 0.5670 +6201 7541 0.6090 +6201 7553 0.5310 +6201 7866 0.7990 +6201 8209 0.6850 +6201 8220 0.6090 +6201 8266 0.7090 +6201 8361 0.4040 +6201 8562 0.9610 +6201 8568 0.4250 +6201 8602 0.9880 +6201 8634 0.6870 +6201 8638 0.6060 +6201 8661 0.9820 +6201 8662 0.9860 +6201 8663 0.9880 +6201 8664 0.9880 +6201 8665 0.9440 +6201 8666 0.9600 +6201 8667 0.9180 +6201 8668 0.9750 +6201 8669 0.9340 +6201 8721 0.9190 +6201 8780 0.5170 +6201 8894 0.9910 +6201 9045 0.9990 +6201 9086 0.8630 +6201 9132 0.5200 +6201 9136 0.9850 +6201 9277 0.9930 +6201 9312 0.5200 +6201 9343 0.8060 +6201 9349 0.9990 +6201 9584 0.4450 +6201 9636 0.8110 +6201 9652 0.4780 +6201 9669 0.9800 +6201 9724 0.9040 +6201 9732 0.9800 +6201 9789 0.5810 +6201 9790 0.9930 +6201 9858 0.8630 +6201 10171 0.9870 +6201 10199 0.9950 +6201 10200 0.4100 +6201 10209 0.9770 +6201 10213 0.5410 +6201 10236 0.4310 +6201 10289 0.8610 +6201 10399 0.9990 +6201 10412 0.4750 +6201 10419 0.4180 +6201 10436 0.9960 +6201 10438 0.6450 +6201 10473 0.9040 +6201 10476 0.4580 +6201 10480 0.9300 +6201 10492 0.5380 +6201 10526 0.5130 +6201 10527 0.5760 +6201 10528 0.9930 +6201 10537 0.6170 +6201 10556 0.8440 +6201 10557 0.9740 +6201 10574 0.6470 +6201 10575 0.6660 +6201 10576 0.4820 +6201 10598 0.4360 +6201 10607 0.9840 +6201 10666 0.4640 +6201 10694 0.4640 +6201 10767 0.8790 +6201 10799 0.8120 +6201 10813 0.9840 +6201 10885 0.9870 +6201 10952 0.8780 +6201 10985 0.8690 +6201 10987 0.4540 +6201 10988 0.4380 +6201 11047 0.5840 +6201 11056 0.8430 +6201 11059 0.4460 +6201 11102 0.8010 +6201 11103 0.9970 +6201 11137 0.4540 +6201 11222 0.9270 +6201 11224 0.9990 +6201 11340 0.6580 +6201 22803 0.5070 +6201 22927 0.8800 +6201 22948 0.4770 +6201 22984 0.9900 +6201 23016 0.6890 +6201 23054 0.6400 +6201 23148 0.7100 +6201 23160 0.9930 +6201 23204 0.9550 +6201 23223 0.8150 +6201 23246 0.6500 +6201 23404 0.7010 +6201 23478 0.4510 +6201 23480 0.8250 +6201 23481 0.5810 +6201 23491 0.4470 +6201 23517 0.7350 +6201 23521 0.9990 +6201 23640 0.7950 +6201 23708 0.5580 +6201 25873 0.9990 +6201 25879 0.9950 +6201 25926 0.9640 +6201 25983 0.9880 +6201 26135 0.9920 +6201 26156 0.8940 +6201 26168 0.5250 +6201 26251 0.5200 +6201 26354 0.4390 +6201 26523 0.4240 +6201 26574 0.9880 +6201 26986 0.6590 +6201 27012 0.5200 +6201 27042 0.8060 +6201 27043 0.5390 +6201 27292 0.9020 +6201 27335 0.9770 +6201 27340 0.9950 +6201 27341 0.9900 +6201 27430 0.5630 +6201 28972 0.4610 +6201 28985 0.8230 +6201 28987 0.9840 +6201 28991 0.7190 +6201 28998 0.9390 +6201 29088 0.6740 +6201 29093 0.9420 +6201 29927 0.8520 +6201 29978 0.5500 +6201 29979 0.6160 +6201 30836 0.9760 +6201 50487 0.4640 +6201 50613 0.5470 +6201 50814 0.5530 +6201 51010 0.6640 +6201 51013 0.7280 +6201 51065 0.9920 +6201 51069 0.9410 +6201 51073 0.9450 +6201 51077 0.9940 +6201 51081 0.9660 +6201 51096 0.9880 +6201 51116 0.8690 +6201 51118 0.9930 +6201 51119 0.5290 +6201 51121 0.9970 +6201 51149 0.9760 +6201 51154 0.9760 +6201 51187 0.7540 +6201 51202 0.8250 +6201 51234 0.5180 +6201 51264 0.4030 +6201 51319 0.9570 +6201 51386 0.9360 +6201 51388 0.4730 +6201 51406 0.8390 +6201 51504 0.8320 +6201 51574 0.6010 +6201 51602 0.9960 +6201 51720 0.4680 +6201 53918 0.8960 +6201 54464 0.6550 +6201 54505 0.7860 +6201 54512 0.6580 +6201 54555 0.8160 +6201 54596 0.4940 +6201 54881 0.5160 +6201 54913 0.8000 +6201 54948 0.8030 +6201 55127 0.9900 +6201 55131 0.4400 +6201 55173 0.9770 +6201 55226 0.9790 +6201 55272 0.9980 +6201 55308 0.5170 +6201 55316 0.9620 +6201 55601 0.5060 +6201 55607 0.5200 +6201 55629 0.5110 +6201 55646 0.8190 +6201 55651 0.8040 +6201 55720 0.9880 +6201 55735 0.4280 +6201 55759 0.5870 +6201 55781 0.9940 +6201 55802 0.5350 +6201 55813 0.9880 +6201 55854 0.7710 +6201 55893 0.4640 +6201 56479 0.5200 +6201 56648 0.7710 +6201 56731 0.4640 +6201 56893 0.5700 +6201 56902 0.9880 +6201 56915 0.6990 +6201 57050 0.9950 +6201 57418 0.5620 +6201 57470 0.8250 +6201 57647 0.9630 +6201 58500 0.4560 +6201 60559 0.4630 +6201 60678 0.9760 +6201 63931 0.9250 +6201 64221 0.5140 +6201 64374 0.7950 +6201 64960 0.9500 +6201 64963 0.9700 +6201 64969 0.9780 +6201 65003 0.8540 +6201 65008 0.9410 +6201 65083 0.9950 +6201 65121 0.6540 +6201 65122 0.6540 +6201 78989 0.5870 +6201 79048 0.8120 +6201 79050 0.9980 +6201 79084 0.4090 +6201 79159 0.4150 +6201 79571 0.6420 +6201 79590 0.9550 +6201 79631 0.8000 +6201 79707 0.5040 +6201 79897 0.8010 +6201 79954 0.9880 +6201 80146 0.5510 +6201 80270 0.5510 +6201 80349 0.4580 +6201 81887 0.5300 +6201 83732 0.9680 +6201 83939 0.6430 +6201 84128 0.9870 +6201 84135 0.9870 +6201 84154 0.4250 +6201 84285 0.8010 +6201 84294 0.5720 +6201 84916 0.9890 +6201 84946 0.9930 +6201 84993 0.5870 +6201 85377 0.6300 +6201 85395 0.8040 +6201 85476 0.8390 +6201 88745 0.5070 +6201 90701 0.4160 +6201 90850 0.5340 +6201 91408 0.4320 +6201 91582 0.8110 +6201 92196 0.8080 +6201 92856 0.9850 +6201 93107 0.5200 +6201 93380 0.4500 +6201 93517 0.5510 +6201 93550 0.6060 +6201 114803 0.6670 +6201 114987 0.9780 +6201 115098 0.9080 +6201 116832 0.9590 +6201 117246 0.5030 +6201 118460 0.5670 +6201 120892 0.5240 +6201 124454 0.7620 +6201 126402 0.9620 +6201 128061 0.8000 +6201 137994 0.4760 +6201 140032 0.9850 +6201 140801 0.9980 +6201 143244 0.7870 +6201 143630 0.5470 +6201 147011 0.4640 +6201 149041 0.5100 +6201 152518 0.4200 +6201 154288 0.4640 +6201 164153 0.6060 +6201 169522 0.5200 +6201 170850 0.5200 +6201 200916 0.9620 +6201 201595 0.4370 +6201 254268 0.9760 +6201 255308 0.8140 +6201 283518 0.5200 +6201 285855 0.9770 +6201 342538 0.7110 +6201 343068 0.6540 +6201 343070 0.6540 +6201 345630 0.9070 +6201 347487 0.9780 +6201 387129 0.9290 +6201 388569 0.4010 +6201 390999 0.6540 +6201 391002 0.6540 +6201 400735 0.6540 +6201 400736 0.6540 +6201 440560 0.6540 +6201 440561 0.6540 +6201 441873 0.6540 +6201 619279 0.4640 +6201 641776 0.7890 +6201 642987 0.4940 +6201 643909 0.7890 +6201 645051 0.7620 +6201 645073 0.7790 +6201 645359 0.6540 +6201 653619 0.6540 +6201 728524 0.7890 +6201 728689 0.8640 +6201 729396 0.7620 +6201 729422 0.7620 +6201 729428 0.7620 +6201 729431 0.7620 +6201 729442 0.7620 +6201 729447 0.7620 +6201 729528 0.6540 +6201 100008586 0.7620 +6201 100132399 0.7620 +6201 100287482 0.8630 +6201 100505478 0.9160 +6201 100526842 0.9950 +6201 100529097 0.9390 +6201 100529239 0.9950 +6201 100996746 0.7890 +6201 101929983 0.6540 +6201 102724473 0.7620 +6201 105180390 0.7890 +6201 105180391 0.7890 +6202 6203 0.9990 +6202 6204 0.9990 +6202 6205 0.9990 +6202 6206 0.9990 +6202 6207 0.9990 +6202 6208 0.9990 +6202 6209 0.9990 +6202 6210 0.9990 +6202 6217 0.9990 +6202 6218 0.9990 +6202 6222 0.9990 +6202 6223 0.9990 +6202 6224 0.9990 +6202 6227 0.9990 +6202 6228 0.9990 +6202 6229 0.9990 +6202 6230 0.9990 +6202 6231 0.9990 +6202 6232 0.9990 +6202 6233 0.9990 +6202 6234 0.9990 +6202 6235 0.9990 +6202 6414 0.8500 +6202 6434 0.4530 +6202 6499 0.5860 +6202 6726 0.8450 +6202 6727 0.8820 +6202 6728 0.8450 +6202 6729 0.8360 +6202 6730 0.8570 +6202 6780 0.5990 +6202 6950 0.6090 +6202 7157 0.4710 +6202 7178 0.9810 +6202 7203 0.5660 +6202 7264 0.5670 +6202 7311 0.9990 +6202 7314 0.7310 +6202 7316 0.7150 +6202 7407 0.4210 +6202 7443 0.4120 +6202 7458 0.6360 +6202 7494 0.8000 +6202 7866 0.7580 +6202 8034 0.4280 +6202 8192 0.4380 +6202 8260 0.4840 +6202 8266 0.7400 +6202 8361 0.4420 +6202 8562 0.9580 +6202 8602 0.9190 +6202 8607 0.5860 +6202 8634 0.7020 +6202 8638 0.6450 +6202 8661 0.9830 +6202 8662 0.9900 +6202 8663 0.9820 +6202 8664 0.9850 +6202 8665 0.9740 +6202 8666 0.9630 +6202 8667 0.9400 +6202 8668 0.9910 +6202 8669 0.9640 +6202 8721 0.9270 +6202 8780 0.5270 +6202 8894 0.9940 +6202 9045 0.9990 +6202 9086 0.8480 +6202 9132 0.5350 +6202 9136 0.9820 +6202 9255 0.4280 +6202 9277 0.9850 +6202 9312 0.5350 +6202 9343 0.8480 +6202 9349 0.9990 +6202 9377 0.4250 +6202 9401 0.5250 +6202 9528 0.4070 +6202 9584 0.4280 +6202 9636 0.8380 +6202 9652 0.5210 +6202 9669 0.9810 +6202 9724 0.8710 +6202 9732 0.9750 +6202 9775 0.7050 +6202 9789 0.4730 +6202 9790 0.9920 +6202 9801 0.4670 +6202 9858 0.8870 +6202 9908 0.4530 +6202 9933 0.4760 +6202 10056 0.4190 +6202 10075 0.4580 +6202 10146 0.4890 +6202 10171 0.9890 +6202 10199 0.9860 +6202 10209 0.9790 +6202 10213 0.5680 +6202 10236 0.6370 +6202 10289 0.8650 +6202 10399 0.9990 +6202 10412 0.4480 +6202 10436 0.9880 +6202 10438 0.4680 +6202 10471 0.4020 +6202 10473 0.9090 +6202 10476 0.4850 +6202 10480 0.9680 +6202 10492 0.7390 +6202 10526 0.5130 +6202 10527 0.5260 +6202 10528 0.9950 +6202 10537 0.6450 +6202 10557 0.9150 +6202 10573 0.6870 +6202 10574 0.7310 +6202 10575 0.7680 +6202 10576 0.8050 +6202 10606 0.4230 +6202 10607 0.9850 +6202 10666 0.4180 +6202 10694 0.6860 +6202 10726 0.4300 +6202 10767 0.8600 +6202 10813 0.9760 +6202 10884 0.6120 +6202 10885 0.9810 +6202 10952 0.8930 +6202 10969 0.7280 +6202 10985 0.8920 +6202 10988 0.4460 +6202 11047 0.4750 +6202 11056 0.5130 +6202 11103 0.9950 +6202 11222 0.9780 +6202 11224 0.9990 +6202 11340 0.4420 +6202 22927 0.8560 +6202 22948 0.7230 +6202 22984 0.9630 +6202 23016 0.5570 +6202 23029 0.4130 +6202 23054 0.6470 +6202 23148 0.7720 +6202 23160 0.9920 +6202 23204 0.9550 +6202 23223 0.9030 +6202 23246 0.4170 +6202 23404 0.5440 +6202 23478 0.4340 +6202 23480 0.8320 +6202 23517 0.5660 +6202 23521 0.9990 +6202 23640 0.8660 +6202 23708 0.5710 +6202 25873 0.9990 +6202 25879 0.9900 +6202 25914 0.5130 +6202 25926 0.8820 +6202 25983 0.9810 +6202 26135 0.9870 +6202 26156 0.8870 +6202 26251 0.5360 +6202 26354 0.4340 +6202 26574 0.9900 +6202 26986 0.6900 +6202 27012 0.5350 +6202 27042 0.4380 +6202 27068 0.4050 +6202 27292 0.9040 +6202 27335 0.9900 +6202 27338 0.5740 +6202 27340 0.9850 +6202 27341 0.9830 +6202 27430 0.5730 +6202 28972 0.4270 +6202 28985 0.8350 +6202 28987 0.9880 +6202 28991 0.6150 +6202 28998 0.9720 +6202 29074 0.4340 +6202 29088 0.8050 +6202 29093 0.9770 +6202 29927 0.8520 +6202 29978 0.5970 +6202 29979 0.6260 +6202 29997 0.4030 +6202 30836 0.9760 +6202 50487 0.4180 +6202 50613 0.5910 +6202 50809 0.4070 +6202 50814 0.5590 +6202 51010 0.4750 +6202 51013 0.4920 +6202 51065 0.9930 +6202 51069 0.9680 +6202 51073 0.9560 +6202 51077 0.9800 +6202 51081 0.9660 +6202 51096 0.9890 +6202 51106 0.4040 +6202 51116 0.8920 +6202 51118 0.9810 +6202 51121 0.9970 +6202 51149 0.9780 +6202 51154 0.9770 +6202 51187 0.7660 +6202 51202 0.4720 +6202 51258 0.4800 +6202 51264 0.4090 +6202 51319 0.9790 +6202 51386 0.9540 +6202 51406 0.8140 +6202 51504 0.8320 +6202 51522 0.4140 +6202 51574 0.6890 +6202 51602 0.9940 +6202 51720 0.4220 +6202 53918 0.8780 +6202 54148 0.4940 +6202 54464 0.5600 +6202 54505 0.7520 +6202 54512 0.5000 +6202 54555 0.4920 +6202 54596 0.4830 +6202 54948 0.9310 +6202 55127 0.9890 +6202 55173 0.9740 +6202 55226 0.9840 +6202 55272 0.9970 +6202 55316 0.9790 +6202 55601 0.5130 +6202 55629 0.5220 +6202 55646 0.8200 +6202 55651 0.8620 +6202 55720 0.9550 +6202 55781 0.9770 +6202 55802 0.5380 +6202 55813 0.9920 +6202 55854 0.6660 +6202 55893 0.4280 +6202 56479 0.5350 +6202 56648 0.8820 +6202 56731 0.4400 +6202 56893 0.6060 +6202 56902 0.9460 +6202 56915 0.4650 +6202 57050 0.9880 +6202 57129 0.6840 +6202 57470 0.8520 +6202 57647 0.8920 +6202 60386 0.4280 +6202 60559 0.4280 +6202 60678 0.9760 +6202 63875 0.5360 +6202 63931 0.9540 +6202 64221 0.5070 +6202 64374 0.8660 +6202 64960 0.9550 +6202 64963 0.9790 +6202 64969 0.9860 +6202 64976 0.4310 +6202 64983 0.4360 +6202 65003 0.9080 +6202 65008 0.9740 +6202 65080 0.5850 +6202 65083 0.9940 +6202 65121 0.6730 +6202 65122 0.6730 +6202 65993 0.5080 +6202 79048 0.8100 +6202 79050 0.9920 +6202 79571 0.6480 +6202 79590 0.9800 +6202 79631 0.8050 +6202 79711 0.5520 +6202 79954 0.9820 +6202 80146 0.5590 +6202 80270 0.5590 +6202 80349 0.4520 +6202 81631 0.4230 +6202 83732 0.8310 +6202 83939 0.6010 +6202 84128 0.9860 +6202 84135 0.9880 +6202 84154 0.5300 +6202 84285 0.8100 +6202 84365 0.5570 +6202 84701 0.4480 +6202 84916 0.9810 +6202 84946 0.9800 +6202 84993 0.6150 +6202 85377 0.5910 +6202 85395 0.8040 +6202 85476 0.8030 +6202 88745 0.4720 +6202 90480 0.5710 +6202 90701 0.4180 +6202 91408 0.7350 +6202 91582 0.8080 +6202 92196 0.8080 +6202 92856 0.9810 +6202 93107 0.5350 +6202 93517 0.5590 +6202 93550 0.6450 +6202 93974 0.5170 +6202 114803 0.4300 +6202 114987 0.9720 +6202 115098 0.8910 +6202 116832 0.9810 +6202 118424 0.5530 +6202 120892 0.6250 +6202 124454 0.8370 +6202 124995 0.5830 +6202 126402 0.9590 +6202 128061 0.8000 +6202 137994 0.4290 +6202 140032 0.9860 +6202 140801 0.9980 +6202 143244 0.8820 +6202 143630 0.5910 +6202 147011 0.4180 +6202 149041 0.5100 +6202 152518 0.4200 +6202 154288 0.4180 +6202 164153 0.6450 +6202 169522 0.5350 +6202 170850 0.5350 +6202 200916 0.9840 +6202 201595 0.4870 +6202 203427 0.4280 +6202 254268 0.9680 +6202 255308 0.8180 +6202 283518 0.5350 +6202 283600 0.4280 +6202 285855 0.9820 +6202 342538 0.7800 +6202 343068 0.6730 +6202 343070 0.6730 +6202 345630 0.8460 +6202 347487 0.9780 +6202 387129 0.9560 +6202 390999 0.6730 +6202 391002 0.6730 +6202 400735 0.6730 +6202 400736 0.6730 +6202 440560 0.6730 +6202 440561 0.6730 +6202 441873 0.6730 +6202 619279 0.4280 +6202 641776 0.8150 +6202 642489 0.4060 +6202 642987 0.4180 +6202 643909 0.8150 +6202 645051 0.7820 +6202 645073 0.7860 +6202 645359 0.6730 +6202 653619 0.6730 +6202 654364 0.4480 +6202 728524 0.8150 +6202 728689 0.8640 +6202 729396 0.7820 +6202 729422 0.7820 +6202 729428 0.7820 +6202 729431 0.7820 +6202 729442 0.7820 +6202 729447 0.7820 +6202 729528 0.6730 +6202 100008586 0.7820 +6202 100132399 0.7820 +6202 100287482 0.8870 +6202 100505478 0.9320 +6202 100526842 0.9950 +6202 100529097 0.9470 +6202 100529239 0.9960 +6202 100996746 0.8150 +6202 101929983 0.6730 +6202 102724473 0.7820 +6202 105180390 0.8150 +6202 105180391 0.8150 +6203 6204 0.9990 +6203 6205 0.9990 +6203 6206 0.9990 +6203 6207 0.9990 +6203 6208 0.9990 +6203 6209 0.9990 +6203 6210 0.9990 +6203 6217 0.9990 +6203 6218 0.9990 +6203 6222 0.9990 +6203 6223 0.9990 +6203 6224 0.9990 +6203 6227 0.9990 +6203 6228 0.9990 +6203 6229 0.9990 +6203 6230 0.9990 +6203 6231 0.9990 +6203 6232 0.9990 +6203 6233 0.9990 +6203 6234 0.9990 +6203 6235 0.9990 +6203 6389 0.5340 +6203 6414 0.7970 +6203 6499 0.5270 +6203 6633 0.4570 +6203 6648 0.7840 +6203 6687 0.7880 +6203 6726 0.8680 +6203 6727 0.8810 +6203 6728 0.8570 +6203 6729 0.9650 +6203 6730 0.8360 +6203 6742 0.5260 +6203 6780 0.4210 +6203 6838 0.4130 +6203 6950 0.5660 +6203 7112 0.5100 +6203 7153 0.4400 +6203 7155 0.4190 +6203 7166 0.4280 +6203 7167 0.4320 +6203 7178 0.9250 +6203 7203 0.5650 +6203 7264 0.5390 +6203 7284 0.9840 +6203 7311 0.9990 +6203 7314 0.6320 +6203 7316 0.6690 +6203 7386 0.4240 +6203 7403 0.5580 +6203 7404 0.5580 +6203 7407 0.5110 +6203 7415 0.4120 +6203 7453 0.4010 +6203 7458 0.4550 +6203 7494 0.8100 +6203 7818 0.9130 +6203 7846 0.4080 +6203 7866 0.7560 +6203 8192 0.5190 +6203 8242 0.4790 +6203 8266 0.6980 +6203 8284 0.4750 +6203 8409 0.7810 +6203 8562 0.9270 +6203 8565 0.5270 +6203 8568 0.5340 +6203 8602 0.9790 +6203 8607 0.5100 +6203 8624 0.8900 +6203 8634 0.6600 +6203 8638 0.5760 +6203 8661 0.9810 +6203 8662 0.9940 +6203 8663 0.9680 +6203 8664 0.9620 +6203 8665 0.9490 +6203 8666 0.9550 +6203 8667 0.9330 +6203 8668 0.9920 +6203 8669 0.9310 +6203 8721 0.9810 +6203 8780 0.4660 +6203 8833 0.4760 +6203 8886 0.4450 +6203 8894 0.9910 +6203 9045 0.9990 +6203 9086 0.9540 +6203 9132 0.4950 +6203 9136 0.9940 +6203 9188 0.6240 +6203 9255 0.5030 +6203 9277 0.9960 +6203 9312 0.4950 +6203 9343 0.8720 +6203 9349 0.9990 +6203 9425 0.5030 +6203 9437 0.4040 +6203 9528 0.4330 +6203 9533 0.9200 +6203 9553 0.9860 +6203 9617 0.5330 +6203 9636 0.8020 +6203 9652 0.4320 +6203 9669 0.9930 +6203 9724 0.8970 +6203 9732 0.9730 +6203 9775 0.8040 +6203 9789 0.4010 +6203 9790 0.9940 +6203 9801 0.9930 +6203 9858 0.9450 +6203 9908 0.5260 +6203 9958 0.4760 +6203 10056 0.4320 +6203 10061 0.5900 +6203 10102 0.7760 +6203 10109 0.4390 +6203 10135 0.5540 +6203 10146 0.5080 +6203 10171 0.9900 +6203 10199 0.9930 +6203 10200 0.4540 +6203 10209 0.9800 +6203 10213 0.5300 +6203 10236 0.5190 +6203 10286 0.6930 +6203 10289 0.8830 +6203 10314 0.4090 +6203 10399 0.9990 +6203 10412 0.9100 +6203 10436 0.9960 +6203 10438 0.6780 +6203 10473 0.9010 +6203 10476 0.4270 +6203 10480 0.9490 +6203 10492 0.5800 +6203 10526 0.4090 +6203 10527 0.4100 +6203 10528 0.9910 +6203 10537 0.5880 +6203 10556 0.8350 +6203 10557 0.9730 +6203 10574 0.7160 +6203 10575 0.7410 +6203 10576 0.6460 +6203 10594 0.5580 +6203 10607 0.9870 +6203 10664 0.5430 +6203 10666 0.4430 +6203 10667 0.4470 +6203 10694 0.6600 +6203 10730 0.5450 +6203 10765 0.4750 +6203 10767 0.9110 +6203 10799 0.8070 +6203 10813 0.9790 +6203 10885 0.9860 +6203 10939 0.7900 +6203 10952 0.9110 +6203 10964 0.5220 +6203 10969 0.6760 +6203 10985 0.8950 +6203 10988 0.7780 +6203 11025 0.4090 +6203 11056 0.8600 +6203 11102 0.8010 +6203 11103 0.9980 +6203 11128 0.8860 +6203 11222 0.9840 +6203 11224 0.9990 +6203 11340 0.6730 +6203 22803 0.5130 +6203 22820 0.4970 +6203 22913 0.5340 +6203 22927 0.8640 +6203 22948 0.6510 +6203 22984 0.9970 +6203 23016 0.7280 +6203 23054 0.7060 +6203 23076 0.4530 +6203 23135 0.5580 +6203 23148 0.6110 +6203 23160 0.9920 +6203 23173 0.7340 +6203 23193 0.4360 +6203 23204 0.9420 +6203 23212 0.5850 +6203 23223 0.8520 +6203 23246 0.5960 +6203 23252 0.8300 +6203 23395 0.4840 +6203 23404 0.7330 +6203 23405 0.6070 +6203 23423 0.5740 +6203 23476 0.5100 +6203 23478 0.5420 +6203 23480 0.8520 +6203 23481 0.6190 +6203 23517 0.6840 +6203 23521 0.9990 +6203 23640 0.8290 +6203 23708 0.5570 +6203 25789 0.4200 +6203 25813 0.4410 +6203 25873 0.9990 +6203 25879 0.9940 +6203 25885 0.8910 +6203 25914 0.4340 +6203 25926 0.9610 +6203 25983 0.9870 +6203 26135 0.9860 +6203 26156 0.8910 +6203 26168 0.5370 +6203 26251 0.4950 +6203 26271 0.5330 +6203 26275 0.9100 +6203 26289 0.4880 +6203 26574 0.9890 +6203 26589 0.8520 +6203 26986 0.5580 +6203 27000 0.4030 +6203 27012 0.4950 +6203 27042 0.8190 +6203 27043 0.5490 +6203 27292 0.9290 +6203 27335 0.9570 +6203 27340 0.9950 +6203 27341 0.9920 +6203 27430 0.5210 +6203 28972 0.4450 +6203 28985 0.8470 +6203 28987 0.9830 +6203 28991 0.5780 +6203 28998 0.9870 +6203 29088 0.6720 +6203 29093 0.9860 +6203 29102 0.6110 +6203 29789 0.5500 +6203 29925 0.4010 +6203 29927 0.9770 +6203 29978 0.5050 +6203 29979 0.4730 +6203 29997 0.7130 +6203 30836 0.9830 +6203 50487 0.4430 +6203 50613 0.4380 +6203 50808 0.4900 +6203 50814 0.4940 +6203 51010 0.7080 +6203 51013 0.7550 +6203 51014 0.5560 +6203 51018 0.5500 +6203 51021 0.9930 +6203 51023 0.8700 +6203 51042 0.4650 +6203 51065 0.9890 +6203 51069 0.9610 +6203 51073 0.9860 +6203 51077 0.9980 +6203 51081 0.9500 +6203 51082 0.6920 +6203 51096 0.9880 +6203 51106 0.6190 +6203 51116 0.9580 +6203 51118 0.9950 +6203 51119 0.6350 +6203 51121 0.9970 +6203 51149 0.9790 +6203 51154 0.9500 +6203 51187 0.8800 +6203 51202 0.8480 +6203 51263 0.7510 +6203 51264 0.9940 +6203 51314 0.4180 +6203 51319 0.9830 +6203 51386 0.9510 +6203 51388 0.7800 +6203 51406 0.8220 +6203 51504 0.8700 +6203 51520 0.4980 +6203 51574 0.5240 +6203 51602 0.9950 +6203 51690 0.4080 +6203 51720 0.4570 +6203 51727 0.4920 +6203 53918 0.8670 +6203 54148 0.6430 +6203 54464 0.5480 +6203 54505 0.7830 +6203 54512 0.7080 +6203 54516 0.5560 +6203 54555 0.8600 +6203 54596 0.4830 +6203 54606 0.6080 +6203 54881 0.5430 +6203 54913 0.8060 +6203 54948 0.9810 +6203 54995 0.4450 +6203 55052 0.9820 +6203 55127 0.9900 +6203 55131 0.5280 +6203 55143 0.5290 +6203 55157 0.5560 +6203 55168 0.8420 +6203 55173 0.9800 +6203 55176 0.8850 +6203 55226 0.9810 +6203 55272 0.9840 +6203 55299 0.6190 +6203 55316 0.9760 +6203 55324 0.6280 +6203 55591 0.7250 +6203 55601 0.4040 +6203 55629 0.5110 +6203 55646 0.8590 +6203 55651 0.7490 +6203 55703 0.8630 +6203 55720 0.9850 +6203 55759 0.7510 +6203 55781 0.9940 +6203 55802 0.5080 +6203 55813 0.9900 +6203 55854 0.5550 +6203 55893 0.4620 +6203 56257 0.4150 +6203 56474 0.4860 +6203 56479 0.4950 +6203 56648 0.8860 +6203 56731 0.4550 +6203 56893 0.4540 +6203 56902 0.9890 +6203 56915 0.7170 +6203 56965 0.6660 +6203 57038 0.6760 +6203 57050 0.9960 +6203 57129 0.8460 +6203 57136 0.7560 +6203 57348 0.4560 +6203 57418 0.6050 +6203 57470 0.8740 +6203 57647 0.9650 +6203 60488 0.9360 +6203 60558 0.8300 +6203 60559 0.4010 +6203 60678 0.9590 +6203 63875 0.9940 +6203 63931 0.9850 +6203 64146 0.8300 +6203 64216 0.6210 +6203 64221 0.4990 +6203 64374 0.8290 +6203 64432 0.5700 +6203 64745 0.6220 +6203 64949 0.4470 +6203 64960 0.9910 +6203 64963 0.9940 +6203 64965 0.9950 +6203 64968 0.9820 +6203 64969 0.9860 +6203 64975 0.8840 +6203 64976 0.8590 +6203 64978 0.6130 +6203 64979 0.9930 +6203 64981 0.8520 +6203 64983 0.9820 +6203 65003 0.9560 +6203 65005 0.9820 +6203 65008 0.9030 +6203 65080 0.8780 +6203 65083 0.9950 +6203 65121 0.6680 +6203 65122 0.6680 +6203 65993 0.5430 +6203 79009 0.4190 +6203 79039 0.4480 +6203 79042 0.4780 +6203 79048 0.8210 +6203 79050 0.9980 +6203 79159 0.6000 +6203 79165 0.4150 +6203 79168 0.4230 +6203 79571 0.7060 +6203 79587 0.4610 +6203 79590 0.9050 +6203 79631 0.8460 +6203 79668 0.6650 +6203 79707 0.5170 +6203 79897 0.8550 +6203 79954 0.9790 +6203 80135 0.4230 +6203 80146 0.4930 +6203 80270 0.4930 +6203 80349 0.4540 +6203 81887 0.5390 +6203 83732 0.9650 +6203 83939 0.6040 +6203 84128 0.9860 +6203 84135 0.9890 +6203 84154 0.4620 +6203 84172 0.8630 +6203 84285 0.8480 +6203 84294 0.4700 +6203 84340 0.5080 +6203 84545 0.8470 +6203 84916 0.9880 +6203 84946 0.9940 +6203 84993 0.4550 +6203 85377 0.4530 +6203 85395 0.8230 +6203 85476 0.8480 +6203 87178 0.7570 +6203 88745 0.5980 +6203 90624 0.5290 +6203 90701 0.4710 +6203 91408 0.4160 +6203 91574 0.5330 +6203 91582 0.8150 +6203 91875 0.4850 +6203 91893 0.5440 +6203 92196 0.8080 +6203 92399 0.9590 +6203 92856 0.9920 +6203 93107 0.4950 +6203 93517 0.4930 +6203 93550 0.5760 +6203 114781 0.5220 +6203 114823 0.5100 +6203 114987 0.9700 +6203 115098 0.8820 +6203 116541 0.4790 +6203 116832 0.9800 +6203 117246 0.5570 +6203 118460 0.6270 +6203 122481 0.4880 +6203 122622 0.4950 +6203 124454 0.7120 +6203 124995 0.5640 +6203 126402 0.9410 +6203 128061 0.8140 +6203 137994 0.5030 +6203 140032 0.9810 +6203 140801 0.9960 +6203 143244 0.8860 +6203 143630 0.4380 +6203 147011 0.4430 +6203 148022 0.5550 +6203 149478 0.4160 +6203 153443 0.6190 +6203 154288 0.4430 +6203 157310 0.6180 +6203 158067 0.4880 +6203 164153 0.5760 +6203 169522 0.4950 +6203 170506 0.4090 +6203 170850 0.4950 +6203 200916 0.9820 +6203 201595 0.4680 +6203 219927 0.9840 +6203 221264 0.4880 +6203 221823 0.4560 +6203 254268 0.9510 +6203 255308 0.6780 +6203 283518 0.4950 +6203 285855 0.9850 +6203 342538 0.7000 +6203 343068 0.6680 +6203 343070 0.6680 +6203 345630 0.8380 +6203 347487 0.9800 +6203 353376 0.5550 +6203 374659 0.8550 +6203 387129 0.9490 +6203 387712 0.7070 +6203 390999 0.6680 +6203 391002 0.6680 +6203 400735 0.6680 +6203 400736 0.6680 +6203 440560 0.6680 +6203 440561 0.6680 +6203 441873 0.6680 +6203 619279 0.4430 +6203 641776 0.7680 +6203 642987 0.4430 +6203 643909 0.7680 +6203 644591 0.4370 +6203 645051 0.7650 +6203 645073 0.7650 +6203 645142 0.4370 +6203 645359 0.6680 +6203 653505 0.4550 +6203 653598 0.4370 +6203 653619 0.6680 +6203 654364 0.4390 +6203 728378 0.4530 +6203 728524 0.7680 +6203 728689 0.8120 +6203 728945 0.4370 +6203 729396 0.7650 +6203 729422 0.7650 +6203 729428 0.7650 +6203 729431 0.7650 +6203 729442 0.7650 +6203 729447 0.7650 +6203 729528 0.6680 +6203 730262 0.4370 +6203 100008586 0.7650 +6203 100132399 0.7650 +6203 100287482 0.8280 +6203 100302736 0.5550 +6203 100505478 0.8420 +6203 100526842 0.9960 +6203 100529097 0.9490 +6203 100529239 0.9940 +6203 100996746 0.7680 +6203 101929983 0.6680 +6203 102724473 0.7650 +6203 105180390 0.7680 +6203 105180391 0.7680 +6203 105371242 0.4370 +6203 114483834 0.5960 +6204 6205 0.9990 +6204 6206 0.9990 +6204 6207 0.9990 +6204 6208 0.9990 +6204 6209 0.9990 +6204 6210 0.9990 +6204 6217 0.9990 +6204 6218 0.9990 +6204 6222 0.9990 +6204 6223 0.9990 +6204 6224 0.9990 +6204 6227 0.9990 +6204 6228 0.9990 +6204 6229 0.9990 +6204 6230 0.9990 +6204 6231 0.9990 +6204 6232 0.9990 +6204 6233 0.9990 +6204 6234 0.9990 +6204 6235 0.9990 +6204 6414 0.6510 +6204 6426 0.4400 +6204 6434 0.4210 +6204 6499 0.5800 +6204 6627 0.5040 +6204 6633 0.5800 +6204 6637 0.4160 +6204 6726 0.8640 +6204 6727 0.8910 +6204 6728 0.8450 +6204 6729 0.8430 +6204 6730 0.8630 +6204 6829 0.4990 +6204 6872 0.4400 +6204 6908 0.5040 +6204 7157 0.5250 +6204 7178 0.8700 +6204 7189 0.4500 +6204 7264 0.4970 +6204 7311 0.9980 +6204 7314 0.5310 +6204 7316 0.5440 +6204 7458 0.5020 +6204 7494 0.8120 +6204 7866 0.5250 +6204 8266 0.6380 +6204 8361 0.4160 +6204 8531 0.4100 +6204 8562 0.9290 +6204 8638 0.5730 +6204 8661 0.9530 +6204 8662 0.9760 +6204 8663 0.9690 +6204 8664 0.9780 +6204 8665 0.9440 +6204 8666 0.9490 +6204 8667 0.9210 +6204 8668 0.9560 +6204 8669 0.9340 +6204 8721 0.9690 +6204 8780 0.5330 +6204 8880 0.4520 +6204 8894 0.9880 +6204 9045 0.9990 +6204 9086 0.8200 +6204 9100 0.5800 +6204 9132 0.5030 +6204 9147 0.4560 +6204 9312 0.5030 +6204 9343 0.6280 +6204 9349 0.9990 +6204 9636 0.7790 +6204 9652 0.4480 +6204 9669 0.9700 +6204 9732 0.9260 +6204 9789 0.4260 +6204 9858 0.7220 +6204 10075 0.4250 +6204 10146 0.4900 +6204 10209 0.9680 +6204 10236 0.4160 +6204 10289 0.8030 +6204 10399 0.9990 +6204 10412 0.5040 +6204 10419 0.4810 +6204 10473 0.7280 +6204 10480 0.9180 +6204 10492 0.5080 +6204 10526 0.4310 +6204 10527 0.4350 +6204 10537 0.5090 +6204 10557 0.7050 +6204 10574 0.6480 +6204 10575 0.5440 +6204 10576 0.4620 +6204 10594 0.4640 +6204 10598 0.4140 +6204 10657 0.4320 +6204 10767 0.8960 +6204 10952 0.9060 +6204 10973 0.4370 +6204 10985 0.8600 +6204 10988 0.4210 +6204 11047 0.5170 +6204 11137 0.4430 +6204 11165 0.4260 +6204 11222 0.7600 +6204 11224 0.9990 +6204 22927 0.7690 +6204 22948 0.4790 +6204 23204 0.7900 +6204 23223 0.5740 +6204 23367 0.4300 +6204 23478 0.5050 +6204 23480 0.8310 +6204 23517 0.5150 +6204 23521 0.9990 +6204 23608 0.4730 +6204 23640 0.7210 +6204 23708 0.5360 +6204 25873 0.9990 +6204 26046 0.4230 +6204 26058 0.4190 +6204 26135 0.9880 +6204 26156 0.4200 +6204 26251 0.5030 +6204 26986 0.7530 +6204 27000 0.4870 +6204 27012 0.5030 +6204 27335 0.9800 +6204 27341 0.4880 +6204 27430 0.5040 +6204 28972 0.4160 +6204 28985 0.8110 +6204 28987 0.9790 +6204 28991 0.4720 +6204 28998 0.8720 +6204 29088 0.5810 +6204 29093 0.7550 +6204 29927 0.8260 +6204 29978 0.4250 +6204 29979 0.5100 +6204 29997 0.5810 +6204 50613 0.4200 +6204 50814 0.4890 +6204 51065 0.9710 +6204 51069 0.8550 +6204 51073 0.8400 +6204 51081 0.8600 +6204 51116 0.7340 +6204 51121 0.9910 +6204 51149 0.9120 +6204 51154 0.9160 +6204 51187 0.7300 +6204 51319 0.8140 +6204 51386 0.9530 +6204 51441 0.4040 +6204 51491 0.6360 +6204 51574 0.5570 +6204 53918 0.8990 +6204 54464 0.5340 +6204 54505 0.7560 +6204 54543 0.5340 +6204 54596 0.4650 +6204 54859 0.4190 +6204 54948 0.7530 +6204 55173 0.9210 +6204 55272 0.9400 +6204 55308 0.6360 +6204 55316 0.9080 +6204 55505 0.4430 +6204 55601 0.4290 +6204 55607 0.5340 +6204 55629 0.5110 +6204 55646 0.8550 +6204 55651 0.7790 +6204 55720 0.9410 +6204 55781 0.9820 +6204 55802 0.5660 +6204 55854 0.6600 +6204 56479 0.5030 +6204 56648 0.6060 +6204 56893 0.4560 +6204 56902 0.9040 +6204 57470 0.8310 +6204 58505 0.5780 +6204 60559 0.4050 +6204 60678 0.9550 +6204 63931 0.8570 +6204 64221 0.4990 +6204 64374 0.7210 +6204 64426 0.4850 +6204 64960 0.8440 +6204 64963 0.9270 +6204 64969 0.9170 +6204 65003 0.7540 +6204 65008 0.8070 +6204 65121 0.5690 +6204 65122 0.5690 +6204 79048 0.8150 +6204 79084 0.6280 +6204 79590 0.8670 +6204 79631 0.5910 +6204 80146 0.4860 +6204 80270 0.4860 +6204 83732 0.8850 +6204 83939 0.6540 +6204 84164 0.4150 +6204 84285 0.8120 +6204 84946 0.9890 +6204 84993 0.4990 +6204 85377 0.5540 +6204 85476 0.5890 +6204 90121 0.6310 +6204 90701 0.4270 +6204 90850 0.8240 +6204 92196 0.6180 +6204 93107 0.5030 +6204 93517 0.4860 +6204 93550 0.5090 +6204 114803 0.4820 +6204 114987 0.9160 +6204 115098 0.8880 +6204 116832 0.8850 +6204 124454 0.6340 +6204 126402 0.8510 +6204 140032 0.9370 +6204 140801 0.9910 +6204 143244 0.6110 +6204 143630 0.4200 +6204 149041 0.5100 +6204 164153 0.5090 +6204 169522 0.5030 +6204 170850 0.5030 +6204 200916 0.9410 +6204 254268 0.9080 +6204 255308 0.6150 +6204 283518 0.5030 +6204 285855 0.9430 +6204 342538 0.4320 +6204 343068 0.5690 +6204 343070 0.5690 +6204 347487 0.8980 +6204 387129 0.8230 +6204 390999 0.5690 +6204 391002 0.5690 +6204 400735 0.5690 +6204 400736 0.5690 +6204 440560 0.5690 +6204 440561 0.5690 +6204 441873 0.5690 +6204 641776 0.6450 +6204 643909 0.6450 +6204 645051 0.6560 +6204 645073 0.6560 +6204 645359 0.5690 +6204 653619 0.5690 +6204 728524 0.6450 +6204 728689 0.7180 +6204 729396 0.6560 +6204 729422 0.6560 +6204 729428 0.6560 +6204 729431 0.6560 +6204 729442 0.6560 +6204 729447 0.6560 +6204 729528 0.5690 +6204 100008586 0.6560 +6204 100132399 0.6560 +6204 100287482 0.7220 +6204 100505478 0.7980 +6204 100526842 0.9720 +6204 100529097 0.8450 +6204 100529239 0.9790 +6204 100996746 0.6450 +6204 101929983 0.5690 +6204 102724473 0.6560 +6204 105180390 0.6450 +6204 105180391 0.6450 +6205 6206 0.9990 +6205 6207 0.9990 +6205 6208 0.9990 +6205 6209 0.9990 +6205 6210 0.9990 +6205 6217 0.9990 +6205 6218 0.9990 +6205 6222 0.9990 +6205 6223 0.9990 +6205 6224 0.9990 +6205 6227 0.9990 +6205 6228 0.9990 +6205 6229 0.9990 +6205 6230 0.9990 +6205 6231 0.9990 +6205 6232 0.9990 +6205 6233 0.9990 +6205 6234 0.9990 +6205 6235 0.9990 +6205 6414 0.8480 +6205 6499 0.4290 +6205 6627 0.5840 +6205 6633 0.6640 +6205 6635 0.8680 +6205 6648 0.8640 +6205 6687 0.5220 +6205 6726 0.8500 +6205 6727 0.8550 +6205 6728 0.8490 +6205 6729 0.9660 +6205 6730 0.8600 +6205 6734 0.4210 +6205 6897 0.4350 +6205 6950 0.4580 +6205 7153 0.4540 +6205 7156 0.4310 +6205 7167 0.5050 +6205 7178 0.9650 +6205 7203 0.4680 +6205 7264 0.5890 +6205 7283 0.5110 +6205 7284 0.9990 +6205 7311 0.9990 +6205 7314 0.7350 +6205 7316 0.7270 +6205 7403 0.5430 +6205 7404 0.5430 +6205 7407 0.5280 +6205 7458 0.5410 +6205 7494 0.8320 +6205 7818 0.9730 +6205 7866 0.7540 +6205 8034 0.4790 +6205 8192 0.4710 +6205 8242 0.5090 +6205 8266 0.7060 +6205 8284 0.5060 +6205 8531 0.4720 +6205 8562 0.9710 +6205 8565 0.4860 +6205 8602 0.9720 +6205 8607 0.4260 +6205 8624 0.8780 +6205 8634 0.6350 +6205 8638 0.6010 +6205 8647 0.4560 +6205 8661 0.9840 +6205 8662 0.9780 +6205 8663 0.9810 +6205 8664 0.9880 +6205 8665 0.9580 +6205 8666 0.9680 +6205 8667 0.9410 +6205 8668 0.9820 +6205 8669 0.9200 +6205 8721 0.9180 +6205 8780 0.5330 +6205 8833 0.4490 +6205 8894 0.9890 +6205 9040 0.4020 +6205 9045 0.9990 +6205 9085 0.5060 +6205 9086 0.9810 +6205 9132 0.5550 +6205 9136 0.9820 +6205 9141 0.8580 +6205 9188 0.5910 +6205 9255 0.4470 +6205 9277 0.9810 +6205 9312 0.5550 +6205 9343 0.9490 +6205 9349 0.9990 +6205 9360 0.4550 +6205 9377 0.4420 +6205 9425 0.5110 +6205 9465 0.7930 +6205 9533 0.9790 +6205 9553 0.9970 +6205 9584 0.4150 +6205 9617 0.6180 +6205 9636 0.8280 +6205 9652 0.4490 +6205 9669 0.9920 +6205 9724 0.8530 +6205 9732 0.9780 +6205 9775 0.5000 +6205 9789 0.5000 +6205 9790 0.9920 +6205 9801 0.9990 +6205 9858 0.9030 +6205 9862 0.5120 +6205 9958 0.5390 +6205 10056 0.5670 +6205 10061 0.7550 +6205 10102 0.8850 +6205 10105 0.4920 +6205 10135 0.6240 +6205 10146 0.4640 +6205 10155 0.4070 +6205 10171 0.9840 +6205 10199 0.9820 +6205 10209 0.9870 +6205 10213 0.4600 +6205 10236 0.6790 +6205 10289 0.9030 +6205 10376 0.4290 +6205 10399 0.9990 +6205 10412 0.9750 +6205 10419 0.4580 +6205 10436 0.9870 +6205 10438 0.4600 +6205 10455 0.4770 +6205 10473 0.9380 +6205 10476 0.4880 +6205 10480 0.9480 +6205 10492 0.7380 +6205 10514 0.6060 +6205 10526 0.4520 +6205 10527 0.4320 +6205 10528 0.9910 +6205 10537 0.5870 +6205 10557 0.9130 +6205 10574 0.7020 +6205 10575 0.6830 +6205 10576 0.5860 +6205 10607 0.9810 +6205 10657 0.4230 +6205 10664 0.4350 +6205 10666 0.4780 +6205 10667 0.4030 +6205 10694 0.5260 +6205 10730 0.5500 +6205 10765 0.5060 +6205 10767 0.8790 +6205 10813 0.9790 +6205 10885 0.9810 +6205 10939 0.5300 +6205 10952 0.8960 +6205 10964 0.5440 +6205 10985 0.8650 +6205 10988 0.8200 +6205 11047 0.5260 +6205 11056 0.4340 +6205 11103 0.9900 +6205 11128 0.9360 +6205 11222 0.9710 +6205 11224 0.9990 +6205 11340 0.4380 +6205 22894 0.4380 +6205 22916 0.6820 +6205 22927 0.8460 +6205 22948 0.5690 +6205 22982 0.4990 +6205 22984 0.9970 +6205 23016 0.5500 +6205 23054 0.6240 +6205 23135 0.5440 +6205 23148 0.6360 +6205 23160 0.9930 +6205 23173 0.7880 +6205 23181 0.4990 +6205 23204 0.9540 +6205 23223 0.8530 +6205 23252 0.8930 +6205 23367 0.4140 +6205 23395 0.4730 +6205 23404 0.4930 +6205 23405 0.6000 +6205 23423 0.5150 +6205 23435 0.4690 +6205 23476 0.5270 +6205 23478 0.4740 +6205 23480 0.8530 +6205 23517 0.4490 +6205 23521 0.9990 +6205 23589 0.4330 +6205 23633 0.4180 +6205 23640 0.9090 +6205 23708 0.5120 +6205 23732 0.5720 +6205 25851 0.5060 +6205 25873 0.9990 +6205 25879 0.9860 +6205 25885 0.9360 +6205 25926 0.8850 +6205 25983 0.9710 +6205 26024 0.5100 +6205 26135 0.9880 +6205 26156 0.9040 +6205 26251 0.5550 +6205 26271 0.6180 +6205 26275 0.4530 +6205 26284 0.4020 +6205 26289 0.6730 +6205 26574 0.9880 +6205 26589 0.9690 +6205 26986 0.7780 +6205 26995 0.4110 +6205 27012 0.5550 +6205 27042 0.4090 +6205 27254 0.4250 +6205 27292 0.9460 +6205 27316 0.4030 +6205 27335 0.9720 +6205 27340 0.9800 +6205 27341 0.9850 +6205 27430 0.6010 +6205 28972 0.4510 +6205 28985 0.8200 +6205 28987 0.9800 +6205 28991 0.5770 +6205 28998 0.9730 +6205 29088 0.7210 +6205 29093 0.9710 +6205 29102 0.5960 +6205 29789 0.4300 +6205 29927 0.9910 +6205 29978 0.5290 +6205 29979 0.5530 +6205 29997 0.4260 +6205 30836 0.9730 +6205 50487 0.4780 +6205 50613 0.5250 +6205 50808 0.6730 +6205 50814 0.5870 +6205 51001 0.4050 +6205 51008 0.8280 +6205 51010 0.4700 +6205 51013 0.5160 +6205 51014 0.5110 +6205 51021 0.9980 +6205 51023 0.8700 +6205 51065 0.9950 +6205 51069 0.9710 +6205 51073 0.9740 +6205 51077 0.9810 +6205 51081 0.9720 +6205 51087 0.4250 +6205 51096 0.9860 +6205 51106 0.6700 +6205 51116 0.9060 +6205 51118 0.9810 +6205 51119 0.6340 +6205 51121 0.9970 +6205 51149 0.9770 +6205 51154 0.9820 +6205 51187 0.7060 +6205 51202 0.5870 +6205 51232 0.4370 +6205 51263 0.7430 +6205 51264 0.9960 +6205 51292 0.4060 +6205 51319 0.9650 +6205 51386 0.9460 +6205 51406 0.8200 +6205 51493 0.5030 +6205 51504 0.8440 +6205 51520 0.4810 +6205 51574 0.7070 +6205 51602 0.9890 +6205 51720 0.4850 +6205 51727 0.6750 +6205 53918 0.8940 +6205 54059 0.9470 +6205 54148 0.4590 +6205 54464 0.4650 +6205 54465 0.5060 +6205 54505 0.8030 +6205 54512 0.4800 +6205 54516 0.6180 +6205 54555 0.5050 +6205 54596 0.4990 +6205 54606 0.5440 +6205 54859 0.4490 +6205 54870 0.4170 +6205 54948 0.9250 +6205 54965 0.4180 +6205 55052 0.9990 +6205 55127 0.9860 +6205 55143 0.5100 +6205 55168 0.8570 +6205 55173 0.9820 +6205 55176 0.9470 +6205 55226 0.9760 +6205 55268 0.4570 +6205 55272 0.9980 +6205 55301 0.4990 +6205 55308 0.4660 +6205 55316 0.9810 +6205 55324 0.7660 +6205 55591 0.7830 +6205 55601 0.4240 +6205 55607 0.5410 +6205 55629 0.5040 +6205 55646 0.8240 +6205 55651 0.8600 +6205 55699 0.4430 +6205 55703 0.9530 +6205 55720 0.9100 +6205 55781 0.9750 +6205 55802 0.5390 +6205 55813 0.9830 +6205 55854 0.6760 +6205 55862 0.4540 +6205 55893 0.4820 +6205 56474 0.4420 +6205 56479 0.5550 +6205 56648 0.9650 +6205 56731 0.4780 +6205 56893 0.5470 +6205 56902 0.9530 +6205 56915 0.4870 +6205 56965 0.8070 +6205 57038 0.4170 +6205 57050 0.9830 +6205 57129 0.9700 +6205 57176 0.4030 +6205 57470 0.9160 +6205 57609 0.5000 +6205 57647 0.9110 +6205 60386 0.4440 +6205 60488 0.9500 +6205 60558 0.8930 +6205 60559 0.4670 +6205 60678 0.9830 +6205 63875 0.9990 +6205 63931 0.9710 +6205 64146 0.9380 +6205 64216 0.6640 +6205 64221 0.5130 +6205 64374 0.9090 +6205 64432 0.4770 +6205 64745 0.8570 +6205 64960 0.9680 +6205 64963 0.9870 +6205 64965 0.9980 +6205 64968 0.9990 +6205 64969 0.9820 +6205 64975 0.9460 +6205 64976 0.8670 +6205 64978 0.5780 +6205 64979 0.9990 +6205 64981 0.8540 +6205 64983 0.9970 +6205 65003 0.9110 +6205 65005 0.9990 +6205 65008 0.9710 +6205 65080 0.6020 +6205 65083 0.9930 +6205 65121 0.7160 +6205 65122 0.7160 +6205 65993 0.4170 +6205 79048 0.8080 +6205 79050 0.9920 +6205 79571 0.6270 +6205 79590 0.9750 +6205 79631 0.9440 +6205 79668 0.8070 +6205 79727 0.4250 +6205 79728 0.4430 +6205 79954 0.9700 +6205 80146 0.5860 +6205 80221 0.5150 +6205 80222 0.4190 +6205 80270 0.5860 +6205 80324 0.4760 +6205 80349 0.4370 +6205 83480 0.4720 +6205 83732 0.8510 +6205 83743 0.4450 +6205 83939 0.5760 +6205 84060 0.5060 +6205 84128 0.9810 +6205 84135 0.9830 +6205 84172 0.9520 +6205 84285 0.8320 +6205 84340 0.5110 +6205 84545 0.9670 +6205 84701 0.4050 +6205 84851 0.5070 +6205 84916 0.9840 +6205 84946 0.9770 +6205 84993 0.5730 +6205 85377 0.5520 +6205 85395 0.8350 +6205 85441 0.4060 +6205 85476 0.9460 +6205 88745 0.4910 +6205 90313 0.4110 +6205 90624 0.5390 +6205 90701 0.4460 +6205 91408 0.4420 +6205 91574 0.6180 +6205 91582 0.8080 +6205 91875 0.4420 +6205 92196 0.8080 +6205 92399 0.9730 +6205 92856 0.9820 +6205 93107 0.5550 +6205 93517 0.5860 +6205 93550 0.5870 +6205 93974 0.4890 +6205 114781 0.5260 +6205 114987 0.9730 +6205 115098 0.9010 +6205 115752 0.4340 +6205 116541 0.4240 +6205 116832 0.9810 +6205 120892 0.5170 +6205 122481 0.6730 +6205 122622 0.6090 +6205 123263 0.4040 +6205 123283 0.4180 +6205 124359 0.5060 +6205 124454 0.8780 +6205 124995 0.5000 +6205 126402 0.9710 +6205 126789 0.4720 +6205 128061 0.8000 +6205 129563 0.4670 +6205 137994 0.4890 +6205 140032 0.9820 +6205 140801 0.9960 +6205 142940 0.4160 +6205 143244 0.9650 +6205 143630 0.5250 +6205 147011 0.4780 +6205 148022 0.5110 +6205 149041 0.5100 +6205 149478 0.5260 +6205 153443 0.6580 +6205 154288 0.4780 +6205 157310 0.5750 +6205 157869 0.4990 +6205 158067 0.6730 +6205 164153 0.5870 +6205 169522 0.5550 +6205 170850 0.5550 +6205 196074 0.6170 +6205 197322 0.4990 +6205 200916 0.9510 +6205 201595 0.4500 +6205 203427 0.4430 +6205 219927 0.9980 +6205 220988 0.4400 +6205 221264 0.6730 +6205 253175 0.5060 +6205 254268 0.9720 +6205 255308 0.8580 +6205 283518 0.5550 +6205 283600 0.4430 +6205 285855 0.9800 +6205 342538 0.6360 +6205 343068 0.7160 +6205 343070 0.7160 +6205 345051 0.5720 +6205 345630 0.8560 +6205 347487 0.9770 +6205 353376 0.5110 +6205 374659 0.9610 +6205 375337 0.5060 +6205 376497 0.4990 +6205 387129 0.9500 +6205 389421 0.4430 +6205 390999 0.7160 +6205 391002 0.7160 +6205 400735 0.7160 +6205 400736 0.7160 +6205 440145 0.5060 +6205 440560 0.7160 +6205 440561 0.7160 +6205 441873 0.7160 +6205 619279 0.4780 +6205 641776 0.8350 +6205 642987 0.4780 +6205 643909 0.8350 +6205 644591 0.5210 +6205 645051 0.7920 +6205 645073 0.7920 +6205 645142 0.5210 +6205 645359 0.7160 +6205 653505 0.5320 +6205 653598 0.5210 +6205 653619 0.7160 +6205 654364 0.4950 +6205 728524 0.8350 +6205 728689 0.8400 +6205 728945 0.5210 +6205 729396 0.7920 +6205 729422 0.7920 +6205 729428 0.7920 +6205 729431 0.7920 +6205 729442 0.7920 +6205 729447 0.7920 +6205 729528 0.7160 +6205 730262 0.5210 +6205 100008586 0.7920 +6205 100130890 0.8070 +6205 100131187 0.8070 +6205 100132399 0.7920 +6205 100287482 0.9030 +6205 100302736 0.5110 +6205 100505478 0.9430 +6205 100526842 0.9960 +6205 100529097 0.9600 +6205 100529239 0.9960 +6205 100996746 0.8350 +6205 101929983 0.7160 +6205 102724473 0.7920 +6205 105180390 0.8350 +6205 105180391 0.8350 +6205 105371242 0.5210 +6205 114483834 0.7690 +6206 6207 0.9990 +6206 6208 0.9990 +6206 6209 0.9990 +6206 6210 0.9990 +6206 6217 0.9990 +6206 6218 0.9990 +6206 6222 0.9990 +6206 6223 0.9990 +6206 6224 0.9990 +6206 6227 0.9990 +6206 6228 0.9990 +6206 6229 0.9990 +6206 6230 0.9990 +6206 6231 0.9990 +6206 6232 0.9990 +6206 6233 0.9990 +6206 6234 0.9990 +6206 6235 0.9990 +6206 6414 0.6540 +6206 6499 0.6440 +6206 6626 0.4150 +6206 6627 0.4470 +6206 6633 0.4480 +6206 6634 0.4450 +6206 6635 0.4530 +6206 6657 0.4950 +6206 6726 0.8720 +6206 6727 0.8840 +6206 6728 0.8890 +6206 6729 0.8930 +6206 6730 0.9110 +6206 6731 0.4410 +6206 6888 0.4200 +6206 6908 0.4090 +6206 6950 0.4930 +6206 7167 0.4270 +6206 7178 0.9610 +6206 7203 0.6090 +6206 7311 0.9990 +6206 7314 0.5360 +6206 7316 0.5580 +6206 7458 0.6370 +6206 7494 0.8000 +6206 7536 0.4650 +6206 7866 0.7570 +6206 7919 0.4060 +6206 8260 0.4720 +6206 8266 0.6250 +6206 8361 0.5720 +6206 8562 0.8960 +6206 8568 0.4780 +6206 8602 0.6820 +6206 8607 0.5930 +6206 8634 0.4130 +6206 8638 0.4910 +6206 8661 0.9830 +6206 8662 0.9870 +6206 8663 0.9740 +6206 8664 0.9790 +6206 8665 0.9530 +6206 8666 0.9600 +6206 8667 0.9210 +6206 8668 0.9920 +6206 8669 0.9290 +6206 8721 0.9500 +6206 8726 0.5430 +6206 8780 0.4410 +6206 8872 0.4090 +6206 8894 0.9880 +6206 9045 0.9990 +6206 9086 0.8490 +6206 9092 0.5120 +6206 9136 0.9230 +6206 9141 0.6470 +6206 9277 0.9320 +6206 9343 0.6910 +6206 9349 0.9990 +6206 9427 0.5480 +6206 9519 0.4410 +6206 9533 0.4240 +6206 9636 0.7560 +6206 9652 0.6320 +6206 9669 0.9950 +6206 9724 0.6810 +6206 9732 0.8980 +6206 9789 0.4380 +6206 9790 0.9340 +6206 9858 0.6110 +6206 10171 0.9350 +6206 10199 0.9340 +6206 10209 0.9670 +6206 10213 0.4240 +6206 10236 0.5130 +6206 10289 0.8280 +6206 10399 0.9990 +6206 10412 0.7490 +6206 10436 0.9400 +6206 10473 0.7360 +6206 10476 0.4090 +6206 10480 0.9440 +6206 10492 0.6110 +6206 10528 0.9650 +6206 10537 0.4910 +6206 10556 0.5630 +6206 10557 0.4470 +6206 10574 0.7560 +6206 10575 0.7130 +6206 10576 0.6700 +6206 10594 0.5210 +6206 10607 0.9400 +6206 10664 0.5090 +6206 10694 0.7010 +6206 10767 0.9260 +6206 10813 0.9420 +6206 10856 0.4270 +6206 10885 0.9190 +6206 10952 0.9090 +6206 10969 0.6450 +6206 10985 0.9350 +6206 10988 0.5620 +6206 11047 0.5040 +6206 11103 0.9620 +6206 11137 0.4710 +6206 11222 0.6940 +6206 11224 0.9990 +6206 22927 0.6020 +6206 22948 0.6850 +6206 22984 0.7140 +6206 23054 0.5260 +6206 23076 0.6160 +6206 23148 0.6480 +6206 23160 0.9200 +6206 23173 0.5090 +6206 23204 0.9370 +6206 23212 0.5190 +6206 23223 0.8440 +6206 23246 0.5950 +6206 23405 0.4360 +6206 23478 0.4350 +6206 23480 0.8700 +6206 23481 0.5730 +6206 23521 0.9990 +6206 23560 0.5230 +6206 23633 0.4230 +6206 23640 0.5970 +6206 23708 0.5450 +6206 25873 0.9990 +6206 25879 0.9290 +6206 25914 0.4240 +6206 25926 0.8110 +6206 25983 0.9340 +6206 26135 0.9920 +6206 26155 0.5890 +6206 26156 0.6300 +6206 26574 0.9620 +6206 26986 0.5810 +6206 26995 0.6220 +6206 27292 0.9450 +6206 27335 0.9330 +6206 27340 0.9350 +6206 27341 0.9340 +6206 27430 0.4030 +6206 28972 0.4680 +6206 28985 0.8230 +6206 28987 0.9660 +6206 28991 0.4840 +6206 28998 0.7370 +6206 29088 0.5070 +6206 29093 0.6810 +6206 29927 0.8850 +6206 29979 0.4010 +6206 29997 0.5000 +6206 30836 0.9290 +6206 51018 0.4390 +6206 51042 0.4750 +6206 51065 0.9880 +6206 51068 0.4990 +6206 51069 0.6890 +6206 51073 0.6850 +6206 51077 0.9230 +6206 51081 0.8120 +6206 51096 0.9380 +6206 51116 0.6810 +6206 51118 0.9180 +6206 51119 0.5860 +6206 51121 0.9940 +6206 51149 0.8970 +6206 51154 0.7840 +6206 51187 0.6960 +6206 51367 0.4240 +6206 51386 0.9440 +6206 51388 0.6520 +6206 51406 0.8220 +6206 51504 0.8400 +6206 51574 0.4380 +6206 51602 0.9600 +6206 53918 0.8990 +6206 54033 0.4090 +6206 54205 0.4390 +6206 54433 0.7070 +6206 54464 0.6430 +6206 54505 0.7810 +6206 54663 0.4740 +6206 54948 0.6000 +6206 55127 0.9610 +6206 55173 0.7850 +6206 55176 0.4150 +6206 55226 0.9400 +6206 55272 0.9440 +6206 55299 0.6280 +6206 55308 0.4640 +6206 55316 0.9280 +6206 55505 0.7700 +6206 55591 0.4680 +6206 55607 0.4870 +6206 55629 0.5110 +6206 55646 0.8560 +6206 55720 0.9380 +6206 55759 0.5690 +6206 55781 0.9920 +6206 55802 0.5210 +6206 55813 0.9340 +6206 55854 0.8670 +6206 56257 0.4200 +6206 56648 0.6840 +6206 56902 0.9210 +6206 56965 0.4970 +6206 57050 0.9340 +6206 57332 0.4200 +6206 57470 0.8240 +6206 57647 0.8240 +6206 60559 0.4260 +6206 60678 0.9490 +6206 63875 0.4730 +6206 63931 0.6770 +6206 64216 0.4300 +6206 64221 0.4990 +6206 64318 0.5090 +6206 64374 0.5970 +6206 64577 0.4260 +6206 64689 0.4240 +6206 64960 0.6380 +6206 64963 0.8380 +6206 64969 0.7180 +6206 65003 0.6320 +6206 65008 0.6950 +6206 65083 0.9290 +6206 65121 0.4960 +6206 65122 0.4960 +6206 65993 0.4050 +6206 79048 0.8090 +6206 79050 0.9640 +6206 79571 0.5280 +6206 79590 0.6650 +6206 79631 0.6610 +6206 79668 0.4970 +6206 79897 0.5950 +6206 79954 0.9320 +6206 80135 0.5810 +6206 80146 0.4020 +6206 80263 0.4250 +6206 80349 0.5340 +6206 83732 0.8050 +6206 83939 0.6310 +6206 84128 0.9370 +6206 84135 0.9480 +6206 84154 0.5550 +6206 84285 0.8080 +6206 84365 0.6700 +6206 84549 0.5250 +6206 84916 0.9390 +6206 84946 0.9960 +6206 84993 0.4090 +6206 85377 0.5120 +6206 85395 0.8090 +6206 85476 0.8570 +6206 90701 0.4210 +6206 91408 0.5250 +6206 91582 0.8170 +6206 92196 0.4280 +6206 92399 0.4970 +6206 92856 0.9220 +6206 93550 0.4910 +6206 93974 0.5470 +6206 114987 0.8990 +6206 115098 0.8960 +6206 116832 0.9710 +6206 124454 0.4820 +6206 126402 0.8090 +6206 128061 0.8000 +6206 140032 0.9790 +6206 140801 0.9970 +6206 142940 0.6250 +6206 143244 0.6800 +6206 152518 0.5490 +6206 164153 0.4910 +6206 200916 0.9580 +6206 201595 0.4420 +6206 254268 0.9020 +6206 255308 0.7070 +6206 285855 0.9800 +6206 341883 0.4130 +6206 342538 0.6690 +6206 343068 0.4960 +6206 343070 0.4960 +6206 345630 0.6870 +6206 347487 0.9280 +6206 387129 0.8320 +6206 390999 0.4960 +6206 391002 0.4960 +6206 400735 0.4960 +6206 400736 0.4960 +6206 440560 0.4960 +6206 440561 0.4960 +6206 441873 0.4960 +6206 641776 0.6350 +6206 642489 0.4820 +6206 643909 0.6350 +6206 645051 0.6540 +6206 645073 0.6540 +6206 645359 0.4960 +6206 653619 0.4960 +6206 728524 0.6350 +6206 728689 0.8210 +6206 729396 0.6540 +6206 729422 0.6540 +6206 729428 0.6540 +6206 729431 0.6540 +6206 729442 0.6540 +6206 729447 0.6540 +6206 729528 0.4960 +6206 100008586 0.6540 +6206 100132399 0.6540 +6206 100287482 0.6110 +6206 100505478 0.6510 +6206 100526842 0.9940 +6206 100529097 0.9470 +6206 100529239 0.9920 +6206 100996746 0.6350 +6206 101929983 0.4960 +6206 102724473 0.6540 +6206 105180390 0.6350 +6206 105180391 0.6350 +6207 6208 0.9990 +6207 6209 0.9990 +6207 6210 0.9990 +6207 6217 0.9990 +6207 6218 0.9990 +6207 6222 0.9990 +6207 6223 0.9990 +6207 6224 0.9990 +6207 6227 0.9990 +6207 6228 0.9990 +6207 6229 0.9990 +6207 6230 0.9990 +6207 6231 0.9990 +6207 6232 0.9990 +6207 6233 0.9990 +6207 6234 0.9990 +6207 6235 0.9990 +6207 6414 0.6670 +6207 6426 0.4490 +6207 6499 0.5070 +6207 6626 0.4340 +6207 6627 0.5630 +6207 6633 0.4230 +6207 6648 0.6040 +6207 6687 0.4700 +6207 6726 0.8660 +6207 6727 0.8760 +6207 6728 0.8490 +6207 6729 0.9420 +6207 6730 0.8960 +6207 6897 0.5190 +6207 6950 0.5140 +6207 7007 0.4190 +6207 7157 0.5440 +6207 7167 0.5010 +6207 7178 0.9560 +6207 7203 0.5400 +6207 7264 0.4690 +6207 7284 0.9620 +6207 7298 0.4290 +6207 7311 0.9990 +6207 7314 0.6250 +6207 7316 0.6410 +6207 7407 0.4180 +6207 7458 0.6690 +6207 7494 0.8050 +6207 7555 0.4870 +6207 7621 0.4580 +6207 7818 0.8250 +6207 7866 0.7550 +6207 8034 0.4080 +6207 8260 0.4510 +6207 8266 0.4890 +6207 8361 0.4290 +6207 8382 0.5210 +6207 8562 0.9220 +6207 8565 0.5520 +6207 8602 0.9530 +6207 8607 0.4860 +6207 8624 0.7180 +6207 8634 0.4950 +6207 8638 0.4860 +6207 8661 0.9820 +6207 8662 0.9880 +6207 8663 0.9730 +6207 8664 0.9620 +6207 8665 0.9600 +6207 8666 0.9690 +6207 8667 0.9430 +6207 8668 0.9930 +6207 8669 0.9640 +6207 8721 0.9520 +6207 8780 0.4500 +6207 8886 0.4070 +6207 8894 0.9840 +6207 8945 0.4240 +6207 9045 0.9990 +6207 9086 0.8890 +6207 9132 0.5010 +6207 9136 0.9950 +6207 9141 0.4860 +6207 9255 0.4110 +6207 9277 0.9870 +6207 9312 0.5010 +6207 9343 0.7900 +6207 9349 0.9990 +6207 9533 0.8650 +6207 9553 0.9710 +6207 9617 0.5170 +6207 9636 0.7590 +6207 9652 0.5790 +6207 9669 0.9880 +6207 9724 0.8920 +6207 9732 0.8970 +6207 9775 0.4070 +6207 9789 0.4110 +6207 9790 0.9950 +6207 9801 0.9700 +6207 9858 0.7720 +6207 9904 0.5170 +6207 9908 0.4820 +6207 10061 0.5540 +6207 10102 0.5430 +6207 10135 0.5260 +6207 10171 0.9910 +6207 10199 0.9860 +6207 10201 0.5250 +6207 10209 0.9740 +6207 10213 0.5460 +6207 10236 0.5240 +6207 10240 0.4320 +6207 10289 0.8390 +6207 10399 0.9990 +6207 10412 0.9390 +6207 10436 0.9910 +6207 10438 0.5670 +6207 10473 0.8120 +6207 10476 0.4120 +6207 10480 0.9460 +6207 10492 0.6210 +6207 10528 0.9950 +6207 10537 0.4860 +6207 10557 0.7460 +6207 10574 0.7420 +6207 10575 0.7010 +6207 10576 0.6810 +6207 10598 0.4550 +6207 10607 0.9850 +6207 10664 0.4880 +6207 10694 0.6520 +6207 10730 0.4850 +6207 10767 0.8810 +6207 10813 0.9800 +6207 10885 0.9850 +6207 10939 0.4680 +6207 10952 0.9010 +6207 10964 0.4240 +6207 10985 0.9500 +6207 10987 0.4060 +6207 10988 0.5870 +6207 11047 0.4450 +6207 11056 0.6240 +6207 11103 0.9960 +6207 11128 0.5220 +6207 11222 0.8310 +6207 11224 0.9990 +6207 11338 0.9030 +6207 11340 0.5270 +6207 22894 0.4860 +6207 22927 0.8080 +6207 22948 0.6170 +6207 22984 0.9810 +6207 23016 0.5520 +6207 23029 0.5470 +6207 23054 0.6410 +6207 23107 0.5050 +6207 23148 0.6520 +6207 23160 0.9920 +6207 23173 0.5270 +6207 23204 0.9630 +6207 23212 0.4200 +6207 23223 0.8750 +6207 23252 0.6970 +6207 23404 0.6570 +6207 23405 0.6350 +6207 23423 0.4360 +6207 23476 0.5170 +6207 23478 0.6480 +6207 23480 0.8690 +6207 23517 0.5350 +6207 23521 0.9990 +6207 23640 0.7680 +6207 23708 0.5440 +6207 23732 0.5710 +6207 25873 0.9990 +6207 25879 0.9900 +6207 25885 0.5190 +6207 25914 0.4400 +6207 25926 0.8800 +6207 25983 0.9860 +6207 26135 0.9930 +6207 26156 0.8870 +6207 26251 0.5010 +6207 26271 0.5180 +6207 26297 0.4710 +6207 26574 0.9920 +6207 26589 0.8410 +6207 26986 0.6440 +6207 26995 0.5440 +6207 27000 0.5020 +6207 27012 0.5010 +6207 27042 0.4080 +6207 27250 0.7970 +6207 27292 0.9530 +6207 27335 0.9760 +6207 27340 0.9900 +6207 27341 0.9920 +6207 27430 0.4830 +6207 28972 0.5340 +6207 28977 0.4450 +6207 28985 0.8250 +6207 28987 0.9920 +6207 28991 0.4830 +6207 28998 0.8660 +6207 29088 0.5850 +6207 29093 0.8330 +6207 29102 0.6200 +6207 29789 0.5040 +6207 29922 0.5210 +6207 29927 0.9370 +6207 29979 0.4280 +6207 30836 0.9850 +6207 50814 0.4660 +6207 51010 0.5360 +6207 51013 0.5540 +6207 51014 0.4400 +6207 51021 0.9700 +6207 51023 0.6680 +6207 51065 0.9930 +6207 51069 0.8260 +6207 51073 0.8360 +6207 51077 0.9860 +6207 51081 0.8550 +6207 51096 0.9860 +6207 51106 0.5220 +6207 51116 0.7820 +6207 51117 0.4490 +6207 51118 0.9860 +6207 51119 0.5970 +6207 51121 0.9970 +6207 51154 0.8840 +6207 51187 0.6090 +6207 51202 0.5970 +6207 51263 0.6420 +6207 51264 0.9700 +6207 51314 0.5710 +6207 51319 0.8970 +6207 51373 0.4810 +6207 51386 0.9430 +6207 51406 0.8250 +6207 51504 0.8460 +6207 51520 0.4640 +6207 51574 0.6220 +6207 51602 0.9960 +6207 51650 0.4150 +6207 53918 0.8840 +6207 54148 0.5930 +6207 54464 0.7200 +6207 54505 0.7520 +6207 54512 0.5880 +6207 54516 0.5170 +6207 54555 0.5140 +6207 54859 0.5260 +6207 54948 0.7730 +6207 54965 0.5110 +6207 54987 0.4670 +6207 54998 0.4230 +6207 55052 0.9710 +6207 55127 0.9950 +6207 55168 0.7010 +6207 55173 0.8920 +6207 55176 0.6790 +6207 55226 0.9880 +6207 55272 0.9960 +6207 55308 0.4620 +6207 55316 0.9330 +6207 55324 0.5990 +6207 55591 0.4790 +6207 55607 0.4650 +6207 55629 0.5040 +6207 55646 0.8460 +6207 55651 0.6640 +6207 55703 0.6180 +6207 55720 0.9670 +6207 55781 0.9930 +6207 55802 0.5460 +6207 55813 0.9910 +6207 55854 0.7810 +6207 56342 0.4120 +6207 56479 0.5010 +6207 56648 0.9100 +6207 56829 0.4620 +6207 56893 0.4170 +6207 56902 0.9420 +6207 56915 0.5930 +6207 56945 0.5340 +6207 56965 0.5410 +6207 57050 0.9910 +6207 57129 0.8370 +6207 57136 0.4760 +6207 57470 0.9320 +6207 57647 0.8890 +6207 60386 0.4090 +6207 60488 0.8530 +6207 60558 0.6970 +6207 60559 0.4030 +6207 60678 0.9570 +6207 63875 0.9700 +6207 63931 0.8290 +6207 64146 0.7780 +6207 64216 0.5380 +6207 64221 0.4990 +6207 64374 0.7680 +6207 64432 0.7240 +6207 64745 0.6300 +6207 64949 0.4480 +6207 64963 0.9180 +6207 64965 0.9730 +6207 64968 0.9590 +6207 64969 0.8790 +6207 64975 0.8180 +6207 64976 0.7880 +6207 64978 0.5440 +6207 64979 0.9380 +6207 64981 0.8460 +6207 64983 0.9710 +6207 65003 0.7950 +6207 65005 0.9460 +6207 65008 0.8420 +6207 65080 0.6540 +6207 65083 0.9950 +6207 65121 0.5730 +6207 65122 0.5730 +6207 65993 0.5750 +6207 79048 0.8370 +6207 79050 0.9950 +6207 79084 0.4540 +6207 79571 0.6430 +6207 79590 0.8300 +6207 79631 0.7610 +6207 79668 0.5400 +6207 79727 0.6080 +6207 79954 0.9850 +6207 80146 0.4640 +6207 80222 0.5200 +6207 80270 0.4640 +6207 80349 0.5170 +6207 83732 0.8240 +6207 83743 0.4190 +6207 83939 0.6830 +6207 84128 0.9850 +6207 84135 0.9960 +6207 84172 0.7040 +6207 84285 0.8260 +6207 84311 0.4330 +6207 84340 0.5860 +6207 84545 0.8670 +6207 84916 0.9880 +6207 84946 0.9930 +6207 84993 0.4480 +6207 85377 0.4800 +6207 85395 0.8020 +6207 85476 0.7760 +6207 87178 0.4800 +6207 88745 0.5060 +6207 90313 0.5660 +6207 90624 0.4390 +6207 90701 0.5390 +6207 91408 0.6760 +6207 91574 0.5170 +6207 91582 0.8110 +6207 92196 0.8080 +6207 92399 0.8960 +6207 92856 0.9860 +6207 93107 0.5010 +6207 93517 0.4640 +6207 93550 0.4860 +6207 114781 0.4240 +6207 114987 0.8810 +6207 115098 0.8950 +6207 115752 0.4840 +6207 116541 0.6270 +6207 116832 0.9810 +6207 118487 0.4810 +6207 120892 0.5100 +6207 123283 0.5210 +6207 124454 0.7060 +6207 124995 0.6700 +6207 126402 0.8470 +6207 128061 0.8000 +6207 129563 0.5140 +6207 132954 0.4240 +6207 140032 0.9810 +6207 140801 0.9980 +6207 142940 0.5530 +6207 143244 0.9130 +6207 148022 0.4350 +6207 149041 0.5100 +6207 149478 0.4240 +6207 152518 0.5010 +6207 153443 0.5190 +6207 155368 0.4070 +6207 157310 0.5620 +6207 164153 0.4860 +6207 169522 0.5010 +6207 170850 0.5010 +6207 200916 0.9740 +6207 201595 0.4680 +6207 203427 0.4080 +6207 219927 0.9650 +6207 220988 0.4020 +6207 254268 0.9280 +6207 255308 0.6890 +6207 283518 0.5010 +6207 283600 0.4080 +6207 285855 0.9850 +6207 342538 0.7150 +6207 343068 0.5730 +6207 343070 0.5730 +6207 345051 0.5710 +6207 345630 0.8600 +6207 347487 0.9170 +6207 353376 0.4350 +6207 374659 0.7940 +6207 387129 0.8480 +6207 387712 0.4320 +6207 390999 0.5730 +6207 391002 0.5730 +6207 400735 0.5730 +6207 400736 0.5730 +6207 440560 0.5730 +6207 440561 0.5730 +6207 441873 0.5730 +6207 641776 0.6780 +6207 643909 0.6780 +6207 645051 0.6590 +6207 645073 0.6590 +6207 645359 0.5730 +6207 653619 0.5730 +6207 654364 0.5490 +6207 728524 0.6780 +6207 728689 0.8110 +6207 729396 0.6590 +6207 729422 0.6590 +6207 729428 0.6590 +6207 729431 0.6590 +6207 729442 0.6590 +6207 729447 0.6590 +6207 729528 0.5730 +6207 100008586 0.6590 +6207 100132399 0.6590 +6207 100287482 0.7720 +6207 100302736 0.4350 +6207 100505478 0.7950 +6207 100526842 0.9950 +6207 100529097 0.9570 +6207 100529239 0.9950 +6207 100996746 0.6780 +6207 101929983 0.5730 +6207 102724473 0.6590 +6207 105180390 0.6780 +6207 105180391 0.6780 +6207 114483834 0.5800 +6208 6209 0.9990 +6208 6210 0.9990 +6208 6217 0.9990 +6208 6218 0.9990 +6208 6222 0.9990 +6208 6223 0.9990 +6208 6224 0.9990 +6208 6227 0.9990 +6208 6228 0.9990 +6208 6229 0.9990 +6208 6230 0.9990 +6208 6231 0.9990 +6208 6232 0.9990 +6208 6233 0.9990 +6208 6234 0.9990 +6208 6235 0.9990 +6208 6284 0.4530 +6208 6414 0.6460 +6208 6499 0.4250 +6208 6627 0.4870 +6208 6633 0.4680 +6208 6648 0.6100 +6208 6687 0.5130 +6208 6726 0.8360 +6208 6727 0.8800 +6208 6728 0.8470 +6208 6729 0.9420 +6208 6730 0.8650 +6208 6742 0.4980 +6208 6880 0.7900 +6208 6897 0.8130 +6208 6949 0.6960 +6208 6950 0.4030 +6208 7153 0.4220 +6208 7157 0.6270 +6208 7178 0.9190 +6208 7203 0.4110 +6208 7264 0.4730 +6208 7284 0.9720 +6208 7307 0.5190 +6208 7311 0.9990 +6208 7314 0.6260 +6208 7316 0.6280 +6208 7403 0.5500 +6208 7404 0.5360 +6208 7407 0.4110 +6208 7458 0.4820 +6208 7494 0.8140 +6208 7786 0.4970 +6208 7818 0.8110 +6208 7866 0.5260 +6208 8192 0.6640 +6208 8242 0.4670 +6208 8266 0.7100 +6208 8284 0.4630 +6208 8382 0.4840 +6208 8562 0.9100 +6208 8565 0.5400 +6208 8568 0.4340 +6208 8602 0.9660 +6208 8624 0.6760 +6208 8634 0.4730 +6208 8638 0.5870 +6208 8661 0.9620 +6208 8662 0.9680 +6208 8663 0.9610 +6208 8664 0.9660 +6208 8665 0.9390 +6208 8666 0.9410 +6208 8667 0.9280 +6208 8668 0.9730 +6208 8669 0.9360 +6208 8683 0.5790 +6208 8721 0.9140 +6208 8780 0.5330 +6208 8833 0.4480 +6208 8886 0.5180 +6208 8894 0.9840 +6208 9045 0.9990 +6208 9053 0.7440 +6208 9086 0.9330 +6208 9132 0.5010 +6208 9136 0.9800 +6208 9277 0.9910 +6208 9312 0.5010 +6208 9343 0.8260 +6208 9349 0.9990 +6208 9528 0.4020 +6208 9533 0.8860 +6208 9553 0.9700 +6208 9584 0.6430 +6208 9617 0.5330 +6208 9636 0.8020 +6208 9652 0.4290 +6208 9669 0.9850 +6208 9724 0.8270 +6208 9732 0.9090 +6208 9789 0.4170 +6208 9790 0.9890 +6208 9801 0.9700 +6208 9858 0.7730 +6208 10056 0.4320 +6208 10061 0.5110 +6208 10102 0.7320 +6208 10135 0.5400 +6208 10155 0.4180 +6208 10169 0.4450 +6208 10171 0.9800 +6208 10199 0.9820 +6208 10200 0.6470 +6208 10201 0.4980 +6208 10209 0.9720 +6208 10213 0.5180 +6208 10236 0.4840 +6208 10289 0.8200 +6208 10399 0.9990 +6208 10412 0.8420 +6208 10436 0.9940 +6208 10438 0.5760 +6208 10473 0.8200 +6208 10480 0.9350 +6208 10492 0.6100 +6208 10514 0.5560 +6208 10528 0.9900 +6208 10537 0.5910 +6208 10556 0.8330 +6208 10557 0.9410 +6208 10574 0.7020 +6208 10575 0.5970 +6208 10576 0.5520 +6208 10594 0.6400 +6208 10606 0.4080 +6208 10607 0.9760 +6208 10664 0.4860 +6208 10694 0.4510 +6208 10730 0.5540 +6208 10765 0.4630 +6208 10767 0.8630 +6208 10799 0.8250 +6208 10813 0.9680 +6208 10885 0.9800 +6208 10939 0.5100 +6208 10952 0.8990 +6208 10985 0.7930 +6208 10988 0.7090 +6208 11047 0.4850 +6208 11056 0.8410 +6208 11102 0.8010 +6208 11103 0.9970 +6208 11128 0.8090 +6208 11137 0.4860 +6208 11165 0.4150 +6208 11222 0.8630 +6208 11224 0.9990 +6208 11340 0.5920 +6208 22803 0.4670 +6208 22916 0.6360 +6208 22927 0.7160 +6208 22948 0.5160 +6208 22984 0.9950 +6208 23016 0.6760 +6208 23054 0.5570 +6208 23135 0.5470 +6208 23148 0.4300 +6208 23160 0.9790 +6208 23173 0.6650 +6208 23204 0.9330 +6208 23223 0.9000 +6208 23246 0.6870 +6208 23252 0.6770 +6208 23367 0.4080 +6208 23395 0.8130 +6208 23404 0.6000 +6208 23405 0.6130 +6208 23478 0.4640 +6208 23480 0.8560 +6208 23481 0.5780 +6208 23517 0.6730 +6208 23521 0.9990 +6208 23633 0.4110 +6208 23640 0.7760 +6208 23708 0.5350 +6208 25873 0.9990 +6208 25879 0.9910 +6208 25885 0.8280 +6208 25926 0.9620 +6208 25983 0.9700 +6208 26135 0.9810 +6208 26156 0.8600 +6208 26168 0.5290 +6208 26251 0.5010 +6208 26271 0.5330 +6208 26289 0.4700 +6208 26354 0.5250 +6208 26574 0.9650 +6208 26589 0.8240 +6208 26986 0.7140 +6208 27012 0.5010 +6208 27042 0.8080 +6208 27043 0.5960 +6208 27292 0.9170 +6208 27335 0.9520 +6208 27340 0.9920 +6208 27341 0.9810 +6208 27430 0.4850 +6208 28972 0.4330 +6208 28985 0.8130 +6208 28987 0.9950 +6208 28991 0.4980 +6208 28998 0.8660 +6208 29088 0.6490 +6208 29093 0.8430 +6208 29102 0.5980 +6208 29789 0.4770 +6208 29796 0.4970 +6208 29922 0.4840 +6208 29927 0.9750 +6208 29978 0.5080 +6208 29979 0.5310 +6208 29997 0.5160 +6208 30836 0.9550 +6208 50613 0.5030 +6208 50808 0.5640 +6208 50814 0.4700 +6208 51010 0.5990 +6208 51013 0.6500 +6208 51021 0.9710 +6208 51023 0.6660 +6208 51065 0.9860 +6208 51069 0.8390 +6208 51073 0.8420 +6208 51077 0.9910 +6208 51081 0.8520 +6208 51096 0.9820 +6208 51106 0.5290 +6208 51116 0.7810 +6208 51118 0.9900 +6208 51119 0.7350 +6208 51121 0.9890 +6208 51149 0.9100 +6208 51154 0.9010 +6208 51187 0.7350 +6208 51202 0.8310 +6208 51263 0.5960 +6208 51264 0.9530 +6208 51314 0.5460 +6208 51319 0.9460 +6208 51386 0.9380 +6208 51388 0.5270 +6208 51406 0.8180 +6208 51504 0.8390 +6208 51520 0.9500 +6208 51574 0.5620 +6208 51594 0.5900 +6208 51602 0.9860 +6208 51727 0.4770 +6208 53918 0.8700 +6208 54059 0.6780 +6208 54148 0.4640 +6208 54464 0.5320 +6208 54505 0.7710 +6208 54512 0.6440 +6208 54516 0.5330 +6208 54543 0.4530 +6208 54555 0.8400 +6208 54859 0.4620 +6208 54881 0.5080 +6208 54913 0.8030 +6208 54948 0.7900 +6208 54965 0.4280 +6208 54998 0.4050 +6208 55052 0.9650 +6208 55127 0.9820 +6208 55131 0.6330 +6208 55143 0.4990 +6208 55157 0.4370 +6208 55168 0.6420 +6208 55173 0.8900 +6208 55176 0.8530 +6208 55226 0.9710 +6208 55272 0.9930 +6208 55308 0.4260 +6208 55316 0.9210 +6208 55324 0.5210 +6208 55591 0.6460 +6208 55607 0.5040 +6208 55629 0.5210 +6208 55646 0.8280 +6208 55651 0.7650 +6208 55699 0.4260 +6208 55703 0.7720 +6208 55720 0.9930 +6208 55759 0.6350 +6208 55781 0.9940 +6208 55802 0.5610 +6208 55813 0.9780 +6208 55854 0.6320 +6208 56257 0.4230 +6208 56479 0.5010 +6208 56648 0.7650 +6208 56893 0.5280 +6208 56902 0.9940 +6208 56915 0.6430 +6208 56945 0.4050 +6208 56965 0.5980 +6208 57038 0.4020 +6208 57050 0.9900 +6208 57129 0.7860 +6208 57136 0.6130 +6208 57418 0.5970 +6208 57470 0.8700 +6208 57647 0.9640 +6208 60488 0.8310 +6208 60558 0.6780 +6208 60559 0.4030 +6208 60678 0.9520 +6208 63875 0.9740 +6208 63931 0.8490 +6208 64146 0.7650 +6208 64216 0.5350 +6208 64221 0.4990 +6208 64374 0.7810 +6208 64432 0.6520 +6208 64434 0.4320 +6208 64951 0.4410 +6208 64960 0.8320 +6208 64963 0.5470 +6208 64965 0.9610 +6208 64968 0.9700 +6208 64969 0.8910 +6208 64975 0.8290 +6208 64976 0.7950 +6208 64978 0.5340 +6208 64979 0.9740 +6208 64981 0.7940 +6208 64983 0.9690 +6208 65003 0.7900 +6208 65005 0.9680 +6208 65008 0.8410 +6208 65080 0.5780 +6208 65083 0.9820 +6208 65095 0.5040 +6208 65121 0.5800 +6208 65122 0.5800 +6208 65993 0.5290 +6208 79048 0.8210 +6208 79050 0.9940 +6208 79084 0.4680 +6208 79159 0.5140 +6208 79571 0.5600 +6208 79590 0.8530 +6208 79631 0.8320 +6208 79668 0.5980 +6208 79707 0.6870 +6208 79897 0.8410 +6208 79954 0.9550 +6208 80146 0.4680 +6208 80222 0.8290 +6208 80270 0.4680 +6208 81887 0.5260 +6208 83732 0.9860 +6208 83939 0.6030 +6208 84128 0.9750 +6208 84135 0.9760 +6208 84172 0.7710 +6208 84285 0.8010 +6208 84340 0.4230 +6208 84545 0.7770 +6208 84851 0.5160 +6208 84916 0.9820 +6208 84946 0.9960 +6208 84993 0.5500 +6208 85027 0.5550 +6208 85377 0.4970 +6208 85395 0.8020 +6208 85476 0.8170 +6208 87178 0.6150 +6208 88745 0.5240 +6208 90121 0.4830 +6208 90313 0.6110 +6208 90624 0.4160 +6208 90701 0.4090 +6208 91408 0.4120 +6208 91574 0.5370 +6208 91582 0.8240 +6208 92196 0.6180 +6208 92399 0.9050 +6208 92856 0.9760 +6208 93107 0.5010 +6208 93517 0.4680 +6208 93550 0.5870 +6208 93974 0.4800 +6208 114609 0.4500 +6208 114803 0.4050 +6208 114987 0.8840 +6208 115098 0.8800 +6208 116541 0.6320 +6208 116832 0.9460 +6208 117246 0.5420 +6208 118460 0.6200 +6208 118487 0.6260 +6208 120892 0.5230 +6208 122481 0.4700 +6208 123283 0.8290 +6208 124454 0.7100 +6208 124995 0.5920 +6208 126402 0.8500 +6208 128061 0.8000 +6208 128308 0.4020 +6208 140032 0.9420 +6208 140801 0.9910 +6208 143244 0.7770 +6208 143630 0.5030 +6208 149041 0.5400 +6208 153443 0.5270 +6208 157310 0.5290 +6208 158067 0.4700 +6208 164153 0.5990 +6208 169522 0.5010 +6208 170850 0.5010 +6208 200916 0.9620 +6208 219927 0.9710 +6208 221264 0.4700 +6208 254268 0.9050 +6208 255308 0.6220 +6208 283518 0.5010 +6208 285855 0.9500 +6208 342538 0.4350 +6208 343068 0.5800 +6208 343070 0.5800 +6208 345630 0.6590 +6208 347487 0.9340 +6208 374659 0.7690 +6208 387129 0.8520 +6208 387712 0.5350 +6208 390999 0.5800 +6208 391002 0.5800 +6208 400735 0.5800 +6208 400736 0.5800 +6208 440560 0.5800 +6208 440561 0.5800 +6208 441873 0.5800 +6208 497661 0.4690 +6208 641776 0.6860 +6208 642489 0.4060 +6208 643909 0.6860 +6208 645051 0.6520 +6208 645073 0.6520 +6208 645359 0.5800 +6208 653619 0.5800 +6208 654364 0.5210 +6208 728524 0.6860 +6208 728689 0.6740 +6208 729396 0.6520 +6208 729422 0.6520 +6208 729428 0.6520 +6208 729431 0.6520 +6208 729442 0.6520 +6208 729447 0.6520 +6208 729528 0.5800 +6208 100008586 0.6520 +6208 100132399 0.6520 +6208 100287482 0.7730 +6208 100505478 0.8050 +6208 100526842 0.9860 +6208 100529097 0.8370 +6208 100529239 0.9860 +6208 100996746 0.6860 +6208 101929983 0.5800 +6208 102157402 0.9390 +6208 102724473 0.6520 +6208 105180390 0.6860 +6208 105180391 0.6860 +6208 114483834 0.5320 +6209 6210 0.9990 +6209 6217 0.9990 +6209 6218 0.9990 +6209 6222 0.9990 +6209 6223 0.9990 +6209 6224 0.9990 +6209 6227 0.9990 +6209 6228 0.9990 +6209 6229 0.9990 +6209 6230 0.9990 +6209 6231 0.9990 +6209 6232 0.9990 +6209 6233 0.9990 +6209 6234 0.9990 +6209 6235 0.9990 +6209 6414 0.8530 +6209 6456 0.4160 +6209 6499 0.5140 +6209 6627 0.4680 +6209 6633 0.5390 +6209 6723 0.4050 +6209 6726 0.8520 +6209 6727 0.8710 +6209 6728 0.8760 +6209 6729 0.9750 +6209 6730 0.8550 +6209 6742 0.5360 +6209 7157 0.4650 +6209 7178 0.9490 +6209 7264 0.6100 +6209 7284 0.9990 +6209 7311 0.9990 +6209 7314 0.6870 +6209 7316 0.6670 +6209 7403 0.5440 +6209 7404 0.5440 +6209 7407 0.5640 +6209 7458 0.5830 +6209 7494 0.8020 +6209 7514 0.4860 +6209 7866 0.7600 +6209 8192 0.7140 +6209 8242 0.5140 +6209 8266 0.6480 +6209 8284 0.5100 +6209 8394 0.4030 +6209 8396 0.4160 +6209 8409 0.5770 +6209 8531 0.4400 +6209 8562 0.9630 +6209 8565 0.5710 +6209 8638 0.6450 +6209 8661 0.9740 +6209 8662 0.9810 +6209 8663 0.9790 +6209 8664 0.9770 +6209 8665 0.9390 +6209 8666 0.9700 +6209 8667 0.9170 +6209 8668 0.9860 +6209 8669 0.9630 +6209 8721 0.9670 +6209 8780 0.5640 +6209 8833 0.6030 +6209 8880 0.4980 +6209 8894 0.9950 +6209 9045 0.9990 +6209 9086 0.9820 +6209 9132 0.5540 +6209 9168 0.4040 +6209 9255 0.4150 +6209 9312 0.5540 +6209 9343 0.9510 +6209 9349 0.9990 +6209 9470 0.4600 +6209 9528 0.4670 +6209 9533 0.9810 +6209 9553 0.9990 +6209 9617 0.6030 +6209 9636 0.8380 +6209 9652 0.6310 +6209 9669 0.9970 +6209 9732 0.9770 +6209 9750 0.4050 +6209 9789 0.4050 +6209 9801 0.9960 +6209 9858 0.9030 +6209 10056 0.6270 +6209 10061 0.7710 +6209 10102 0.8900 +6209 10135 0.6070 +6209 10146 0.4850 +6209 10169 0.4180 +6209 10209 0.9820 +6209 10213 0.4250 +6209 10289 0.8810 +6209 10399 0.9990 +6209 10412 0.9850 +6209 10436 0.4450 +6209 10473 0.9450 +6209 10476 0.4260 +6209 10480 0.8810 +6209 10492 0.4610 +6209 10526 0.5040 +6209 10527 0.5070 +6209 10537 0.6450 +6209 10557 0.8640 +6209 10574 0.4580 +6209 10617 0.4030 +6209 10666 0.4180 +6209 10667 0.5540 +6209 10765 0.5100 +6209 10767 0.8990 +6209 10808 0.4110 +6209 10952 0.8800 +6209 10980 0.4220 +6209 10985 0.9490 +6209 10987 0.4230 +6209 10988 0.8200 +6209 11097 0.4050 +6209 11128 0.9390 +6209 11222 0.9760 +6209 11224 0.9990 +6209 11315 0.6160 +6209 22927 0.8870 +6209 22948 0.4560 +6209 22984 0.9870 +6209 23016 0.4260 +6209 23054 0.4940 +6209 23135 0.5450 +6209 23148 0.7010 +6209 23173 0.7850 +6209 23204 0.9630 +6209 23212 0.4140 +6209 23223 0.9400 +6209 23252 0.8460 +6209 23395 0.6520 +6209 23478 0.4130 +6209 23480 0.8450 +6209 23517 0.5420 +6209 23521 0.9990 +6209 23640 0.9130 +6209 23708 0.5590 +6209 25789 0.4630 +6209 25873 0.9990 +6209 25885 0.9440 +6209 25983 0.4200 +6209 26135 0.9940 +6209 26156 0.4030 +6209 26251 0.5540 +6209 26271 0.6030 +6209 26289 0.6810 +6209 26523 0.4420 +6209 26986 0.5840 +6209 27012 0.5540 +6209 27292 0.8400 +6209 27335 0.9940 +6209 27430 0.6130 +6209 28972 0.4720 +6209 28985 0.8030 +6209 28987 0.9900 +6209 28991 0.5790 +6209 28998 0.9730 +6209 29088 0.7200 +6209 29093 0.9710 +6209 29927 0.9910 +6209 29978 0.5960 +6209 29979 0.6890 +6209 29997 0.6040 +6209 50487 0.4200 +6209 50613 0.5930 +6209 50808 0.6810 +6209 50814 0.6000 +6209 51018 0.5010 +6209 51021 0.9980 +6209 51065 0.9930 +6209 51068 0.4660 +6209 51069 0.9780 +6209 51073 0.9740 +6209 51081 0.9710 +6209 51087 0.4420 +6209 51106 0.7030 +6209 51116 0.9150 +6209 51119 0.6970 +6209 51121 0.9980 +6209 51149 0.9800 +6209 51154 0.9840 +6209 51182 0.4600 +6209 51187 0.7550 +6209 51264 0.9970 +6209 51314 0.4460 +6209 51319 0.9850 +6209 51386 0.9430 +6209 51504 0.8540 +6209 51520 0.6570 +6209 51574 0.5070 +6209 51720 0.4400 +6209 51727 0.6880 +6209 53918 0.9000 +6209 54033 0.4570 +6209 54148 0.4900 +6209 54464 0.6470 +6209 54505 0.7740 +6209 54516 0.6290 +6209 54517 0.4130 +6209 54555 0.4840 +6209 54948 0.9100 +6209 54987 0.4540 +6209 55052 0.9990 +6209 55143 0.5290 +6209 55173 0.9830 +6209 55176 0.9470 +6209 55272 0.9830 +6209 55294 0.4710 +6209 55316 0.9800 +6209 55324 0.7830 +6209 55505 0.5070 +6209 55591 0.7820 +6209 55601 0.4970 +6209 55607 0.4020 +6209 55629 0.5040 +6209 55646 0.9110 +6209 55651 0.8980 +6209 55699 0.4440 +6209 55703 0.9370 +6209 55720 0.9930 +6209 55781 0.9970 +6209 55802 0.5710 +6209 55854 0.8760 +6209 55893 0.4230 +6209 56257 0.4830 +6209 56479 0.5540 +6209 56648 0.9610 +6209 56731 0.4320 +6209 56829 0.4720 +6209 56893 0.6170 +6209 56902 0.9240 +6209 56965 0.8250 +6209 57038 0.4510 +6209 57136 0.6160 +6209 57470 0.9170 +6209 57559 0.4010 +6209 57606 0.4020 +6209 60558 0.8470 +6209 60559 0.4320 +6209 60678 0.9810 +6209 63875 0.9990 +6209 63931 0.9710 +6209 64146 0.9430 +6209 64216 0.7140 +6209 64221 0.4990 +6209 64374 0.9090 +6209 64960 0.9730 +6209 64963 0.9860 +6209 64965 0.9990 +6209 64968 0.9990 +6209 64969 0.9830 +6209 64979 0.9990 +6209 64983 0.9980 +6209 65003 0.9180 +6209 65005 0.9990 +6209 65008 0.9710 +6209 65121 0.7160 +6209 65122 0.7160 +6209 65993 0.4880 +6209 79048 0.8220 +6209 79184 0.4110 +6209 79567 0.4070 +6209 79571 0.5010 +6209 79590 0.9780 +6209 79631 0.9450 +6209 79668 0.8250 +6209 79727 0.4310 +6209 80146 0.5990 +6209 80155 0.5170 +6209 80270 0.6000 +6209 80349 0.5200 +6209 83732 0.9370 +6209 83939 0.6040 +6209 84085 0.4170 +6209 84172 0.9410 +6209 84285 0.9020 +6209 84340 0.6040 +6209 84464 0.4020 +6209 84851 0.5070 +6209 84946 0.9970 +6209 84954 0.4010 +6209 84993 0.6780 +6209 85377 0.6300 +6209 85395 0.8410 +6209 85476 0.9450 +6209 87178 0.7310 +6209 90701 0.4050 +6209 91408 0.6560 +6209 91574 0.6030 +6209 91893 0.5140 +6209 92196 0.8150 +6209 92399 0.9600 +6209 93107 0.5540 +6209 93517 0.5990 +6209 93550 0.6450 +6209 93974 0.5180 +6209 114803 0.5330 +6209 114987 0.9730 +6209 115098 0.9180 +6209 116832 0.9790 +6209 120892 0.8320 +6209 122481 0.6810 +6209 123263 0.4590 +6209 124454 0.8550 +6209 126328 0.4010 +6209 126402 0.9710 +6209 137994 0.4290 +6209 140032 0.9840 +6209 140801 0.9970 +6209 143244 0.9600 +6209 143630 0.5930 +6209 147011 0.4180 +6209 152518 0.5010 +6209 153443 0.6990 +6209 154288 0.4180 +6209 158067 0.6810 +6209 164153 0.6450 +6209 169522 0.5540 +6209 170850 0.5540 +6209 200916 0.9710 +6209 201595 0.5950 +6209 219927 0.9990 +6209 221264 0.6810 +6209 254268 0.9730 +6209 255308 0.8510 +6209 283518 0.5540 +6209 285855 0.9810 +6209 286187 0.4010 +6209 342538 0.7110 +6209 343068 0.7160 +6209 343070 0.7160 +6209 347487 0.9770 +6209 374659 0.9430 +6209 387129 0.9510 +6209 387332 0.7560 +6209 387712 0.6470 +6209 389421 0.4650 +6209 390999 0.7160 +6209 391002 0.7160 +6209 400735 0.7160 +6209 400736 0.7160 +6209 440560 0.7160 +6209 440561 0.7160 +6209 441873 0.7160 +6209 619279 0.4180 +6209 641776 0.8350 +6209 642489 0.5820 +6209 642987 0.4180 +6209 643909 0.8350 +6209 645051 0.7920 +6209 645073 0.7920 +6209 645359 0.7160 +6209 653619 0.7160 +6209 654364 0.4170 +6209 728524 0.8350 +6209 728689 0.8620 +6209 729396 0.7920 +6209 729422 0.7920 +6209 729428 0.7920 +6209 729431 0.7920 +6209 729442 0.7920 +6209 729447 0.7920 +6209 729528 0.7160 +6209 100008586 0.7920 +6209 100132399 0.7920 +6209 100287482 0.9030 +6209 100505478 0.9430 +6209 100526842 0.9960 +6209 100529097 0.9680 +6209 100529239 0.9950 +6209 100996746 0.8350 +6209 101929983 0.7160 +6209 102724473 0.7920 +6209 105180390 0.8350 +6209 105180391 0.8350 +6209 114483834 0.7850 +6210 6217 0.9990 +6210 6218 0.9990 +6210 6222 0.9990 +6210 6223 0.9990 +6210 6224 0.9990 +6210 6227 0.9990 +6210 6228 0.9990 +6210 6229 0.9990 +6210 6230 0.9990 +6210 6231 0.9990 +6210 6232 0.9990 +6210 6233 0.9990 +6210 6234 0.9990 +6210 6235 0.9990 +6210 6238 0.4870 +6210 6414 0.4490 +6210 6627 0.4650 +6210 6648 0.4200 +6210 6687 0.4160 +6210 6726 0.8730 +6210 6727 0.8710 +6210 6728 0.8540 +6210 6729 0.9120 +6210 6730 0.8730 +6210 6992 0.4030 +6210 7178 0.8010 +6210 7284 0.9200 +6210 7311 0.9950 +6210 7314 0.4390 +6210 7316 0.4480 +6210 7403 0.4210 +6210 7404 0.4100 +6210 7407 0.4330 +6210 7458 0.4770 +6210 7494 0.8010 +6210 7818 0.5230 +6210 7866 0.5150 +6210 7919 0.5520 +6210 8266 0.5580 +6210 8409 0.5870 +6210 8562 0.8910 +6210 8565 0.4010 +6210 8602 0.7990 +6210 8624 0.5580 +6210 8661 0.9540 +6210 8662 0.9590 +6210 8663 0.9430 +6210 8664 0.9660 +6210 8665 0.9440 +6210 8666 0.9210 +6210 8667 0.9190 +6210 8668 0.9430 +6210 8669 0.9050 +6210 8721 0.8960 +6210 8780 0.5220 +6210 8894 0.9600 +6210 9045 0.9990 +6210 9086 0.7650 +6210 9136 0.9510 +6210 9141 0.4280 +6210 9277 0.9570 +6210 9343 0.6560 +6210 9349 0.9990 +6210 9533 0.7350 +6210 9553 0.8570 +6210 9584 0.4250 +6210 9636 0.7300 +6210 9669 0.9530 +6210 9724 0.7020 +6210 9732 0.6380 +6210 9789 0.4050 +6210 9790 0.9730 +6210 9801 0.8250 +6210 9858 0.6800 +6210 10102 0.5260 +6210 10146 0.5330 +6210 10171 0.9550 +6210 10199 0.9600 +6210 10209 0.9200 +6210 10213 0.4910 +6210 10289 0.5520 +6210 10383 0.5270 +6210 10399 0.9990 +6210 10412 0.6280 +6210 10419 0.4040 +6210 10436 0.9650 +6210 10473 0.6110 +6210 10480 0.9410 +6210 10528 0.9730 +6210 10557 0.6120 +6210 10574 0.5970 +6210 10575 0.5940 +6210 10576 0.5400 +6210 10607 0.9550 +6210 10664 0.4630 +6210 10694 0.4200 +6210 10730 0.4110 +6210 10767 0.8540 +6210 10813 0.9470 +6210 10885 0.9520 +6210 10939 0.4060 +6210 10952 0.8910 +6210 10985 0.7620 +6210 10988 0.5940 +6210 11047 0.6350 +6210 11056 0.4440 +6210 11103 0.9670 +6210 11128 0.6750 +6210 11222 0.7450 +6210 11224 0.9980 +6210 22927 0.5470 +6210 22948 0.5050 +6210 22984 0.9450 +6210 23016 0.4190 +6210 23054 0.4670 +6210 23076 0.4220 +6210 23135 0.4240 +6210 23148 0.4240 +6210 23160 0.9550 +6210 23173 0.5280 +6210 23204 0.7120 +6210 23223 0.8150 +6210 23252 0.5190 +6210 23404 0.4290 +6210 23476 0.5740 +6210 23478 0.4380 +6210 23480 0.8250 +6210 23517 0.4390 +6210 23521 0.9980 +6210 23640 0.6100 +6210 23708 0.5690 +6210 25873 0.9980 +6210 25879 0.9530 +6210 25885 0.6700 +6210 25926 0.8930 +6210 25983 0.9300 +6210 26135 0.9560 +6210 26156 0.6150 +6210 26275 0.5000 +6210 26354 0.5210 +6210 26574 0.9520 +6210 26589 0.5240 +6210 26986 0.5860 +6210 27042 0.4100 +6210 27292 0.9180 +6210 27335 0.9220 +6210 27340 0.9540 +6210 27341 0.9520 +6210 27430 0.4160 +6210 28972 0.4160 +6210 28985 0.8130 +6210 28987 0.9740 +6210 28998 0.7910 +6210 29088 0.5050 +6210 29093 0.7850 +6210 29102 0.4230 +6210 29927 0.9400 +6210 30836 0.9270 +6210 51013 0.4240 +6210 51021 0.8320 +6210 51023 0.5790 +6210 51065 0.9660 +6210 51069 0.6920 +6210 51073 0.7410 +6210 51077 0.9670 +6210 51081 0.7270 +6210 51096 0.9530 +6210 51116 0.6900 +6210 51118 0.9510 +6210 51119 0.4130 +6210 51121 0.9900 +6210 51149 0.6780 +6210 51154 0.7440 +6210 51187 0.6750 +6210 51202 0.5190 +6210 51264 0.8260 +6210 51319 0.6380 +6210 51386 0.9110 +6210 51406 0.8140 +6210 51504 0.8260 +6210 51574 0.4250 +6210 51602 0.9790 +6210 51727 0.4130 +6210 53918 0.8530 +6210 54148 0.5180 +6210 54464 0.4170 +6210 54505 0.7460 +6210 54543 0.4910 +6210 54555 0.5230 +6210 54948 0.7890 +6210 55052 0.8300 +6210 55127 0.9700 +6210 55143 0.4030 +6210 55168 0.5500 +6210 55173 0.7680 +6210 55176 0.6840 +6210 55226 0.9270 +6210 55272 0.9810 +6210 55308 0.4860 +6210 55316 0.6890 +6210 55591 0.5110 +6210 55607 0.5070 +6210 55629 0.5080 +6210 55646 0.8200 +6210 55651 0.5820 +6210 55703 0.6070 +6210 55720 0.9030 +6210 55781 0.9210 +6210 55802 0.5350 +6210 55813 0.9590 +6210 55854 0.6520 +6210 56648 0.6720 +6210 56893 0.4060 +6210 56902 0.9120 +6210 56965 0.5400 +6210 57050 0.9550 +6210 57129 0.4940 +6210 57470 0.8470 +6210 57647 0.8870 +6210 60488 0.5370 +6210 60558 0.5210 +6210 60559 0.4050 +6210 60678 0.9390 +6210 63875 0.8400 +6210 63931 0.8410 +6210 64146 0.4900 +6210 64221 0.5060 +6210 64374 0.6000 +6210 64960 0.7550 +6210 64963 0.8770 +6210 64965 0.8740 +6210 64968 0.8330 +6210 64969 0.7740 +6210 64975 0.5290 +6210 64976 0.4390 +6210 64979 0.8430 +6210 64981 0.5710 +6210 64983 0.8380 +6210 65003 0.7410 +6210 65005 0.8310 +6210 65008 0.6840 +6210 65080 0.4840 +6210 65083 0.9710 +6210 65121 0.4930 +6210 65122 0.4930 +6210 79048 0.8080 +6210 79050 0.9760 +6210 79084 0.4010 +6210 79571 0.4700 +6210 79590 0.6800 +6210 79631 0.6180 +6210 79668 0.5400 +6210 79954 0.9250 +6210 83732 0.8120 +6210 83743 0.4170 +6210 83939 0.5790 +6210 84128 0.9500 +6210 84135 0.9520 +6210 84172 0.6010 +6210 84285 0.8010 +6210 84340 0.4030 +6210 84545 0.6850 +6210 84851 0.4380 +6210 84916 0.9530 +6210 84946 0.9250 +6210 84993 0.4230 +6210 85395 0.9010 +6210 85476 0.6200 +6210 88745 0.4020 +6210 90121 0.4760 +6210 90701 0.4080 +6210 91582 0.8080 +6210 92170 0.5970 +6210 92196 0.5180 +6210 92399 0.7070 +6210 92856 0.9500 +6210 114987 0.6470 +6210 115098 0.8780 +6210 116832 0.8640 +6210 120892 0.5290 +6210 124454 0.5440 +6210 126402 0.6900 +6210 128061 0.8000 +6210 140032 0.9540 +6210 140801 0.9760 +6210 143244 0.6720 +6210 149041 0.5100 +6210 171568 0.4030 +6210 200916 0.8520 +6210 219927 0.8370 +6210 254268 0.6420 +6210 255308 0.5430 +6210 285855 0.8460 +6210 342538 0.4310 +6210 343068 0.4930 +6210 343070 0.4930 +6210 345630 0.6040 +6210 347487 0.6640 +6210 374659 0.5000 +6210 387129 0.6590 +6210 390999 0.4930 +6210 391002 0.4930 +6210 400735 0.4930 +6210 400736 0.4930 +6210 440560 0.4930 +6210 440561 0.4930 +6210 441873 0.4930 +6210 645051 0.5220 +6210 645073 0.5350 +6210 645359 0.4930 +6210 653619 0.4930 +6210 654364 0.4950 +6210 728689 0.5220 +6210 729396 0.5220 +6210 729422 0.5320 +6210 729428 0.5220 +6210 729431 0.5220 +6210 729442 0.5220 +6210 729447 0.5310 +6210 729528 0.4930 +6210 100008586 0.5330 +6210 100132399 0.5320 +6210 100287482 0.5950 +6210 100505478 0.6150 +6210 100526842 0.9680 +6210 100529097 0.7970 +6210 100529239 0.9580 +6210 101929983 0.4930 +6210 102724473 0.5220 +6210 114483834 0.4110 +6217 6218 0.9990 +6217 6222 0.9990 +6217 6223 0.9990 +6217 6224 0.9990 +6217 6227 0.9990 +6217 6228 0.9990 +6217 6229 0.9990 +6217 6230 0.9990 +6217 6231 0.9990 +6217 6232 0.9990 +6217 6233 0.9990 +6217 6234 0.9990 +6217 6235 0.9990 +6217 6300 0.4120 +6217 6386 0.4190 +6217 6414 0.8120 +6217 6426 0.4030 +6217 6432 0.4530 +6217 6434 0.4780 +6217 6499 0.5180 +6217 6633 0.5290 +6217 6648 0.5010 +6217 6687 0.4400 +6217 6715 0.4040 +6217 6726 0.8960 +6217 6727 0.9060 +6217 6728 0.8960 +6217 6729 0.9790 +6217 6730 0.8840 +6217 6732 0.5070 +6217 6734 0.7100 +6217 6742 0.5200 +6217 6924 0.4060 +6217 6950 0.5590 +6217 7167 0.4410 +6217 7178 0.9620 +6217 7203 0.5370 +6217 7264 0.4720 +6217 7284 0.9770 +6217 7311 0.9990 +6217 7314 0.6060 +6217 7316 0.6240 +6217 7336 0.4460 +6217 7403 0.4860 +6217 7404 0.4950 +6217 7407 0.5700 +6217 7411 0.4180 +6217 7458 0.6630 +6217 7494 0.8170 +6217 7532 0.5140 +6217 7818 0.8160 +6217 7846 0.5380 +6217 7866 0.7630 +6217 7919 0.5460 +6217 7978 0.4050 +6217 8034 0.4240 +6217 8192 0.8940 +6217 8225 0.7220 +6217 8260 0.5300 +6217 8266 0.6790 +6217 8382 0.4510 +6217 8531 0.4080 +6217 8562 0.9110 +6217 8565 0.4520 +6217 8568 0.5120 +6217 8602 0.9460 +6217 8607 0.6690 +6217 8624 0.5950 +6217 8634 0.5650 +6217 8638 0.5490 +6217 8661 0.9830 +6217 8662 0.9880 +6217 8663 0.9770 +6217 8664 0.9830 +6217 8665 0.9710 +6217 8666 0.9730 +6217 8667 0.9250 +6217 8668 0.9870 +6217 8669 0.9230 +6217 8683 0.4060 +6217 8721 0.9440 +6217 8780 0.5680 +6217 8894 0.9940 +6217 9045 0.9990 +6217 9086 0.9570 +6217 9132 0.4430 +6217 9136 0.9850 +6217 9147 0.4900 +6217 9188 0.4950 +6217 9212 0.4290 +6217 9255 0.4540 +6217 9277 0.9820 +6217 9312 0.4320 +6217 9343 0.8770 +6217 9349 0.9990 +6217 9374 0.4320 +6217 9416 0.4100 +6217 9533 0.8210 +6217 9553 0.9640 +6217 9584 0.4240 +6217 9617 0.5070 +6217 9636 0.7840 +6217 9652 0.5170 +6217 9669 0.9890 +6217 9724 0.8690 +6217 9732 0.9770 +6217 9775 0.5550 +6217 9789 0.5510 +6217 9790 0.9950 +6217 9801 0.9690 +6217 9858 0.7730 +6217 9939 0.6110 +6217 10056 0.4540 +6217 10061 0.5870 +6217 10102 0.7330 +6217 10135 0.5180 +6217 10155 0.4210 +6217 10171 0.9820 +6217 10199 0.9840 +6217 10201 0.4580 +6217 10209 0.9800 +6217 10213 0.5880 +6217 10236 0.6950 +6217 10289 0.9030 +6217 10399 0.9990 +6217 10412 0.8700 +6217 10436 0.9870 +6217 10438 0.4640 +6217 10471 0.4340 +6217 10473 0.8900 +6217 10476 0.4410 +6217 10480 0.9590 +6217 10492 0.6800 +6217 10528 0.9880 +6217 10537 0.5490 +6217 10557 0.8600 +6217 10574 0.7520 +6217 10575 0.7370 +6217 10576 0.7040 +6217 10607 0.9840 +6217 10643 0.4130 +6217 10664 0.6610 +6217 10666 0.4750 +6217 10667 0.5210 +6217 10694 0.6790 +6217 10726 0.4390 +6217 10730 0.4400 +6217 10767 0.8980 +6217 10813 0.9780 +6217 10856 0.4560 +6217 10885 0.9840 +6217 10939 0.4370 +6217 10949 0.4170 +6217 10952 0.9490 +6217 10963 0.4100 +6217 10964 0.4270 +6217 10969 0.7170 +6217 10985 0.8980 +6217 10988 0.7400 +6217 11056 0.4630 +6217 11103 0.9880 +6217 11128 0.7880 +6217 11222 0.8390 +6217 11224 0.9990 +6217 11340 0.4520 +6217 22927 0.8590 +6217 22948 0.6880 +6217 22984 0.9880 +6217 23016 0.6400 +6217 23054 0.6350 +6217 23076 0.7070 +6217 23135 0.4880 +6217 23148 0.5260 +6217 23160 0.9830 +6217 23173 0.6870 +6217 23204 0.9440 +6217 23212 0.5270 +6217 23223 0.9290 +6217 23246 0.6130 +6217 23252 0.6510 +6217 23395 0.4290 +6217 23404 0.5920 +6217 23405 0.5400 +6217 23435 0.4560 +6217 23476 0.5130 +6217 23478 0.4540 +6217 23480 0.9340 +6217 23481 0.5820 +6217 23517 0.4580 +6217 23521 0.9990 +6217 23560 0.6910 +6217 23640 0.7790 +6217 23708 0.5460 +6217 23732 0.5860 +6217 24140 0.4210 +6217 25873 0.9990 +6217 25879 0.9870 +6217 25885 0.7880 +6217 25914 0.4910 +6217 25926 0.8840 +6217 25983 0.9710 +6217 26135 0.9850 +6217 26155 0.5950 +6217 26156 0.9290 +6217 26251 0.4320 +6217 26271 0.5160 +6217 26289 0.4800 +6217 26354 0.5360 +6217 26574 0.9880 +6217 26589 0.8150 +6217 26986 0.6120 +6217 27012 0.4320 +6217 27042 0.4050 +6217 27292 0.9280 +6217 27335 0.9840 +6217 27340 0.9810 +6217 27341 0.9830 +6217 27430 0.4760 +6217 28972 0.4580 +6217 28973 0.4200 +6217 28985 0.8420 +6217 28987 0.9830 +6217 28991 0.6150 +6217 28998 0.8520 +6217 29088 0.5890 +6217 29093 0.8390 +6217 29102 0.5410 +6217 29789 0.4020 +6217 29889 0.5490 +6217 29922 0.4960 +6217 29927 0.9790 +6217 29960 0.4210 +6217 29978 0.4290 +6217 29979 0.4830 +6217 29997 0.6930 +6217 30836 0.9710 +6217 50487 0.4750 +6217 50613 0.4240 +6217 50808 0.4830 +6217 50814 0.4620 +6217 51001 0.4090 +6217 51010 0.5170 +6217 51013 0.6510 +6217 51021 0.9700 +6217 51023 0.5590 +6217 51065 0.9940 +6217 51068 0.5770 +6217 51069 0.8380 +6217 51077 0.9810 +6217 51081 0.9490 +6217 51096 0.9810 +6217 51116 0.7880 +6217 51118 0.9830 +6217 51119 0.5120 +6217 51121 0.9980 +6217 51149 0.9770 +6217 51154 0.8900 +6217 51187 0.8280 +6217 51202 0.5840 +6217 51263 0.5560 +6217 51264 0.9720 +6217 51282 0.4440 +6217 51314 0.4640 +6217 51319 0.9580 +6217 51386 0.9620 +6217 51388 0.6590 +6217 51398 0.4930 +6217 51406 0.8120 +6217 51504 0.8380 +6217 51520 0.5290 +6217 51574 0.7320 +6217 51602 0.9840 +6217 51637 0.4830 +6217 51720 0.4800 +6217 51727 0.4840 +6217 53918 0.8910 +6217 54148 0.4020 +6217 54464 0.5690 +6217 54505 0.7980 +6217 54512 0.5610 +6217 54516 0.5070 +6217 54552 0.4650 +6217 54555 0.5570 +6217 54596 0.5000 +6217 54663 0.5380 +6217 54888 0.4280 +6217 54948 0.7780 +6217 55052 0.9700 +6217 55127 0.9850 +6217 55143 0.4280 +6217 55153 0.4180 +6217 55168 0.5630 +6217 55173 0.8930 +6217 55176 0.8790 +6217 55226 0.9740 +6217 55272 0.9950 +6217 55299 0.7120 +6217 55308 0.4200 +6217 55316 0.9790 +6217 55324 0.5980 +6217 55341 0.5460 +6217 55379 0.4550 +6217 55591 0.6790 +6217 55601 0.4290 +6217 55629 0.5070 +6217 55646 0.8370 +6217 55651 0.7100 +6217 55703 0.7670 +6217 55720 0.9290 +6217 55759 0.6060 +6217 55781 0.9740 +6217 55802 0.5160 +6217 55813 0.9810 +6217 55854 0.6520 +6217 55893 0.4790 +6217 56257 0.4290 +6217 56479 0.4320 +6217 56648 0.8550 +6217 56731 0.4920 +6217 56893 0.4370 +6217 56902 0.9580 +6217 56915 0.6040 +6217 56945 0.4250 +6217 56965 0.6110 +6217 57038 0.4450 +6217 57050 0.9840 +6217 57129 0.8280 +6217 57136 0.6330 +6217 57470 0.8990 +6217 57647 0.9070 +6217 58505 0.4150 +6217 60386 0.4250 +6217 60488 0.8100 +6217 60558 0.6520 +6217 60559 0.4010 +6217 60678 0.9590 +6217 63875 0.9740 +6217 63931 0.8390 +6217 64146 0.7670 +6217 64216 0.4100 +6217 64221 0.4990 +6217 64318 0.5380 +6217 64374 0.7770 +6217 64432 0.6710 +6217 64951 0.4150 +6217 64960 0.8300 +6217 64963 0.9220 +6217 64965 0.9740 +6217 64968 0.9690 +6217 64969 0.8920 +6217 64975 0.8360 +6217 64976 0.6920 +6217 64978 0.5050 +6217 64979 0.9740 +6217 64981 0.8120 +6217 64983 0.9460 +6217 65003 0.7870 +6217 65005 0.9690 +6217 65008 0.8430 +6217 65080 0.5430 +6217 65083 0.9880 +6217 65121 0.5800 +6217 65122 0.5800 +6217 65993 0.5290 +6217 79009 0.4130 +6217 79048 0.8060 +6217 79050 0.9850 +6217 79159 0.4190 +6217 79571 0.6380 +6217 79590 0.8520 +6217 79631 0.8040 +6217 79668 0.6100 +6217 79954 0.9700 +6217 80135 0.6750 +6217 80146 0.4620 +6217 80270 0.4610 +6217 80298 0.4050 +6217 80349 0.4520 +6217 83732 0.9060 +6217 83939 0.6180 +6217 84128 0.9810 +6217 84135 0.9820 +6217 84154 0.5150 +6217 84172 0.7670 +6217 84273 0.4500 +6217 84285 0.8310 +6217 84340 0.4610 +6217 84365 0.6570 +6217 84545 0.8070 +6217 84549 0.6390 +6217 84851 0.5250 +6217 84916 0.9840 +6217 84946 0.9800 +6217 84993 0.4450 +6217 85377 0.5540 +6217 85395 0.8210 +6217 85476 0.8100 +6217 87178 0.6360 +6217 88745 0.4150 +6217 90313 0.5280 +6217 90441 0.4570 +6217 90624 0.4390 +6217 90701 0.4370 +6217 90850 0.4380 +6217 90957 0.4780 +6217 91408 0.7020 +6217 91574 0.5070 +6217 91582 0.8070 +6217 92170 0.4300 +6217 92196 0.7950 +6217 92399 0.8940 +6217 92856 0.9820 +6217 93107 0.4320 +6217 93517 0.4610 +6217 93550 0.5490 +6217 93974 0.6950 +6217 114781 0.4270 +6217 114987 0.9590 +6217 115098 0.8870 +6217 115416 0.7730 +6217 116541 0.5370 +6217 116832 0.9790 +6217 117246 0.5380 +6217 120892 0.5320 +6217 122481 0.4800 +6217 124454 0.7000 +6217 124801 0.4010 +6217 124995 0.5610 +6217 126402 0.9470 +6217 128061 0.8000 +6217 137994 0.4290 +6217 140032 0.9850 +6217 140801 0.9960 +6217 143244 0.8590 +6217 143630 0.4240 +6217 147011 0.4750 +6217 149041 0.5100 +6217 149478 0.4270 +6217 154288 0.4750 +6217 155061 0.4180 +6217 157310 0.4920 +6217 158067 0.4800 +6217 164153 0.5490 +6217 169522 0.4320 +6217 169792 0.4260 +6217 170850 0.4320 +6217 200916 0.9470 +6217 201595 0.5190 +6217 203427 0.4240 +6217 219927 0.9700 +6217 220988 0.4310 +6217 221264 0.4800 +6217 225689 0.4120 +6217 254268 0.9620 +6217 255308 0.8350 +6217 283518 0.4320 +6217 283600 0.4240 +6217 285855 0.9770 +6217 342538 0.5290 +6217 343068 0.5800 +6217 343070 0.5800 +6217 345051 0.5860 +6217 345630 0.8510 +6217 347487 0.9770 +6217 374659 0.7700 +6217 387129 0.9310 +6217 387712 0.6440 +6217 390999 0.5800 +6217 391002 0.5800 +6217 400735 0.5800 +6217 400736 0.5800 +6217 440560 0.5800 +6217 440561 0.5800 +6217 441873 0.5800 +6217 619279 0.4750 +6217 641776 0.7910 +6217 642987 0.4750 +6217 643909 0.7910 +6217 645051 0.7780 +6217 645073 0.7780 +6217 645359 0.5800 +6217 653619 0.5800 +6217 654364 0.4970 +6217 728524 0.7910 +6217 728689 0.8350 +6217 729396 0.7780 +6217 729422 0.7780 +6217 729428 0.7780 +6217 729431 0.7780 +6217 729442 0.7780 +6217 729447 0.7780 +6217 729528 0.5800 +6217 100008586 0.7780 +6217 100128731 0.4610 +6217 100132399 0.7780 +6217 100287482 0.7730 +6217 100505478 0.8040 +6217 100526842 0.9950 +6217 100529097 0.9560 +6217 100529239 0.9880 +6217 100996746 0.7910 +6217 101929983 0.5800 +6217 102724473 0.7780 +6217 105180390 0.7910 +6217 105180391 0.7910 +6217 114483834 0.6580 +6218 6222 0.9990 +6218 6223 0.9990 +6218 6224 0.9990 +6218 6227 0.9990 +6218 6228 0.9990 +6218 6229 0.9990 +6218 6230 0.9990 +6218 6231 0.9990 +6218 6232 0.9990 +6218 6233 0.9990 +6218 6234 0.9990 +6218 6235 0.9990 +6218 6414 0.8310 +6218 6428 0.4270 +6218 6499 0.4730 +6218 6633 0.5660 +6218 6637 0.4430 +6218 6657 0.5100 +6218 6726 0.8350 +6218 6727 0.8610 +6218 6728 0.8360 +6218 6729 0.8100 +6218 6730 0.8300 +6218 7178 0.7870 +6218 7311 0.9990 +6218 7314 0.6760 +6218 7316 0.7020 +6218 7494 0.8000 +6218 8266 0.7190 +6218 8562 0.9710 +6218 8602 0.8400 +6218 8638 0.6190 +6218 8661 0.9670 +6218 8662 0.9310 +6218 8663 0.9630 +6218 8664 0.9270 +6218 8665 0.8810 +6218 8666 0.9310 +6218 8667 0.8660 +6218 8668 0.9440 +6218 8669 0.9300 +6218 8721 0.8950 +6218 8780 0.5260 +6218 8894 0.9860 +6218 9045 0.9990 +6218 9086 0.8840 +6218 9132 0.5750 +6218 9136 0.8060 +6218 9141 0.7070 +6218 9277 0.8040 +6218 9312 0.5750 +6218 9343 0.8050 +6218 9349 0.9990 +6218 9501 0.4360 +6218 9636 0.8170 +6218 9652 0.4900 +6218 9669 0.9730 +6218 9732 0.9770 +6218 9789 0.4110 +6218 9790 0.8110 +6218 9858 0.8730 +6218 9908 0.4520 +6218 10146 0.4520 +6218 10153 0.4560 +6218 10171 0.8370 +6218 10199 0.8340 +6218 10209 0.9820 +6218 10262 0.4680 +6218 10289 0.9030 +6218 10399 0.9990 +6218 10412 0.9880 +6218 10436 0.8660 +6218 10473 0.9290 +6218 10480 0.8450 +6218 10483 0.4070 +6218 10526 0.5910 +6218 10527 0.4750 +6218 10528 0.8730 +6218 10537 0.6200 +6218 10557 0.8100 +6218 10592 0.7220 +6218 10607 0.8050 +6218 10666 0.4180 +6218 10767 0.8610 +6218 10772 0.4380 +6218 10813 0.8270 +6218 10885 0.8000 +6218 10952 0.8570 +6218 10985 0.8950 +6218 11103 0.8560 +6218 11222 0.9530 +6218 11224 0.9990 +6218 22927 0.7860 +6218 23054 0.4030 +6218 23160 0.8230 +6218 23204 0.9350 +6218 23212 0.4810 +6218 23223 0.9050 +6218 23478 0.5260 +6218 23480 0.8460 +6218 23481 0.5200 +6218 23517 0.4790 +6218 23521 0.9990 +6218 23640 0.7940 +6218 23708 0.5270 +6218 25873 0.9990 +6218 25879 0.8210 +6218 25926 0.8150 +6218 25983 0.8210 +6218 26135 0.9740 +6218 26251 0.5750 +6218 26574 0.8110 +6218 27012 0.5750 +6218 27089 0.4020 +6218 27292 0.9270 +6218 27335 0.9220 +6218 27340 0.8100 +6218 27341 0.8000 +6218 28972 0.4140 +6218 28985 0.8110 +6218 28987 0.9940 +6218 28998 0.9420 +6218 29088 0.6660 +6218 29093 0.9640 +6218 29927 0.8000 +6218 29978 0.5650 +6218 29979 0.5650 +6218 30836 0.8120 +6218 50487 0.4180 +6218 50613 0.5650 +6218 51065 0.9930 +6218 51069 0.9520 +6218 51073 0.9450 +6218 51077 0.8030 +6218 51081 0.9540 +6218 51084 0.4030 +6218 51096 0.8010 +6218 51106 0.4750 +6218 51116 0.8760 +6218 51118 0.8000 +6218 51119 0.8020 +6218 51121 0.9950 +6218 51149 0.9790 +6218 51154 0.9720 +6218 51187 0.7960 +6218 51319 0.9780 +6218 51372 0.4910 +6218 51386 0.9300 +6218 51406 0.8040 +6218 51491 0.4830 +6218 51504 0.8420 +6218 51574 0.5320 +6218 51602 0.9730 +6218 51720 0.4200 +6218 53918 0.9010 +6218 54464 0.6020 +6218 54505 0.7460 +6218 54543 0.6780 +6218 54948 0.8140 +6218 55127 0.9680 +6218 55173 0.9720 +6218 55226 0.8200 +6218 55272 0.9950 +6218 55316 0.9770 +6218 55505 0.4210 +6218 55601 0.4510 +6218 55629 0.5340 +6218 55646 0.8180 +6218 55651 0.8570 +6218 55720 0.9220 +6218 55781 0.9750 +6218 55802 0.4990 +6218 55813 0.8290 +6218 55854 0.5430 +6218 55893 0.4230 +6218 56479 0.5750 +6218 56648 0.5700 +6218 56731 0.4330 +6218 56893 0.5650 +6218 56902 0.8820 +6218 56931 0.5220 +6218 56965 0.6700 +6218 57050 0.8260 +6218 57470 0.8300 +6218 57647 0.8100 +6218 60559 0.4480 +6218 60678 0.9620 +6218 63931 0.9610 +6218 64216 0.5030 +6218 64221 0.5010 +6218 64374 0.7940 +6218 64960 0.9670 +6218 64963 0.9760 +6218 64969 0.9730 +6218 65003 0.9000 +6218 65008 0.9640 +6218 65083 0.9690 +6218 65121 0.6580 +6218 65122 0.6580 +6218 79048 0.8120 +6218 79050 0.9660 +6218 79571 0.4030 +6218 79590 0.9610 +6218 79631 0.7910 +6218 79668 0.6700 +6218 79954 0.8100 +6218 80349 0.4520 +6218 83732 0.8360 +6218 83939 0.6450 +6218 84128 0.8060 +6218 84135 0.8190 +6218 84285 0.8000 +6218 84916 0.8340 +6218 84946 0.9750 +6218 84993 0.5650 +6218 85377 0.5260 +6218 85395 0.8050 +6218 85476 0.8010 +6218 90121 0.5760 +6218 90701 0.4240 +6218 91408 0.5830 +6218 91582 0.8070 +6218 92856 0.8040 +6218 93107 0.5750 +6218 93550 0.6220 +6218 114987 0.9520 +6218 115098 0.8560 +6218 116832 0.9630 +6218 124454 0.7720 +6218 126402 0.9530 +6218 128061 0.8000 +6218 140032 0.9830 +6218 140801 0.9960 +6218 143244 0.5700 +6218 143630 0.5650 +6218 147011 0.4180 +6218 149041 0.5100 +6218 152518 0.4200 +6218 153443 0.4740 +6218 154288 0.4180 +6218 164153 0.6190 +6218 169522 0.5750 +6218 170622 0.4850 +6218 170850 0.5750 +6218 200916 0.9610 +6218 201595 0.4360 +6218 225689 0.4160 +6218 254268 0.9720 +6218 255308 0.7700 +6218 283518 0.5750 +6218 285855 0.9760 +6218 343068 0.6580 +6218 343070 0.6580 +6218 347487 0.9700 +6218 387129 0.9380 +6218 390999 0.6580 +6218 391002 0.6580 +6218 400735 0.6580 +6218 400736 0.6580 +6218 440560 0.6580 +6218 440561 0.6580 +6218 441873 0.6580 +6218 619279 0.4250 +6218 641776 0.7880 +6218 642987 0.4180 +6218 643909 0.7880 +6218 645051 0.7860 +6218 645073 0.7900 +6218 645359 0.6580 +6218 653619 0.6580 +6218 728524 0.7880 +6218 728689 0.8040 +6218 729396 0.7860 +6218 729422 0.7860 +6218 729428 0.7860 +6218 729431 0.7860 +6218 729442 0.7860 +6218 729447 0.7860 +6218 729528 0.6580 +6218 100008586 0.7900 +6218 100132399 0.7860 +6218 100287482 0.8730 +6218 100505478 0.9270 +6218 100526842 0.9950 +6218 100529097 0.9620 +6218 100529239 0.9950 +6218 100996746 0.7880 +6218 101929983 0.6580 +6218 102724473 0.7860 +6218 105180390 0.7880 +6218 105180391 0.7880 +6222 6223 0.9990 +6222 6224 0.9990 +6222 6227 0.9990 +6222 6228 0.9990 +6222 6229 0.9990 +6222 6230 0.9990 +6222 6231 0.9990 +6222 6232 0.9990 +6222 6233 0.9990 +6222 6234 0.9990 +6222 6235 0.9990 +6222 6257 0.7340 +6222 6293 0.8480 +6222 6389 0.6110 +6222 6390 0.4270 +6222 6414 0.8280 +6222 6434 0.4140 +6222 6499 0.5010 +6222 6627 0.5850 +6222 6633 0.5200 +6222 6648 0.7240 +6222 6687 0.7580 +6222 6726 0.8520 +6222 6727 0.8790 +6222 6728 0.8500 +6222 6729 0.9590 +6222 6730 0.8690 +6222 6742 0.4210 +6222 6908 0.5850 +6222 6950 0.4380 +6222 7037 0.4990 +6222 7153 0.5080 +6222 7155 0.4550 +6222 7166 0.4240 +6222 7167 0.4530 +6222 7178 0.9480 +6222 7203 0.4410 +6222 7264 0.5600 +6222 7284 0.9990 +6222 7311 0.9990 +6222 7314 0.7000 +6222 7316 0.7510 +6222 7403 0.6090 +6222 7404 0.6090 +6222 7407 0.5200 +6222 7453 0.4160 +6222 7458 0.4380 +6222 7494 0.8040 +6222 7534 0.5120 +6222 7818 0.9450 +6222 7866 0.7600 +6222 7922 0.9080 +6222 7923 0.8820 +6222 7978 0.4390 +6222 8034 0.4950 +6222 8192 0.5870 +6222 8242 0.6090 +6222 8260 0.4980 +6222 8266 0.7570 +6222 8284 0.6070 +6222 8361 0.4200 +6222 8382 0.4500 +6222 8562 0.9620 +6222 8565 0.6090 +6222 8602 0.9420 +6222 8624 0.8680 +6222 8634 0.6640 +6222 8638 0.6660 +6222 8661 0.9810 +6222 8662 0.9860 +6222 8663 0.9820 +6222 8664 0.9910 +6222 8665 0.9290 +6222 8666 0.9560 +6222 8667 0.9260 +6222 8668 0.9880 +6222 8669 0.9530 +6222 8705 0.7980 +6222 8706 0.6390 +6222 8707 0.6440 +6222 8708 0.6330 +6222 8721 0.9340 +6222 8780 0.5610 +6222 8833 0.6160 +6222 8894 0.9940 +6222 9045 0.9990 +6222 9085 0.4180 +6222 9086 0.9820 +6222 9093 0.4410 +6222 9132 0.5830 +6222 9136 0.9700 +6222 9147 0.4300 +6222 9168 0.5400 +6222 9255 0.5560 +6222 9277 0.9940 +6222 9312 0.5830 +6222 9343 0.9490 +6222 9349 0.9990 +6222 9377 0.5560 +6222 9425 0.4220 +6222 9528 0.4600 +6222 9532 0.5150 +6222 9533 0.9810 +6222 9553 0.9980 +6222 9584 0.4180 +6222 9617 0.6720 +6222 9636 0.8440 +6222 9652 0.5050 +6222 9669 0.9870 +6222 9724 0.8020 +6222 9732 0.9760 +6222 9789 0.4370 +6222 9790 0.9890 +6222 9801 0.9990 +6222 9858 0.9610 +6222 9945 0.4330 +6222 10056 0.4700 +6222 10061 0.7880 +6222 10102 0.8860 +6222 10135 0.6840 +6222 10146 0.5180 +6222 10171 0.9800 +6222 10199 0.9760 +6222 10201 0.4540 +6222 10209 0.9790 +6222 10213 0.4360 +6222 10236 0.4540 +6222 10289 0.8790 +6222 10376 0.4050 +6222 10399 0.9990 +6222 10412 0.9800 +6222 10436 0.9820 +6222 10438 0.4300 +6222 10455 0.4470 +6222 10471 0.9330 +6222 10473 0.9390 +6222 10476 0.4360 +6222 10480 0.9140 +6222 10492 0.5890 +6222 10526 0.5980 +6222 10527 0.4970 +6222 10528 0.9810 +6222 10537 0.6690 +6222 10557 0.9210 +6222 10574 0.7370 +6222 10575 0.6250 +6222 10576 0.6170 +6222 10594 0.4310 +6222 10598 0.4070 +6222 10606 0.4190 +6222 10607 0.9700 +6222 10657 0.4610 +6222 10666 0.4310 +6222 10667 0.4990 +6222 10694 0.4640 +6222 10730 0.5560 +6222 10765 0.6070 +6222 10767 0.9110 +6222 10808 0.4300 +6222 10813 0.9690 +6222 10885 0.9690 +6222 10939 0.7560 +6222 10952 0.8960 +6222 10964 0.5530 +6222 10985 0.8720 +6222 10988 0.8360 +6222 11047 0.6160 +6222 11103 0.9840 +6222 11128 0.9070 +6222 11137 0.4420 +6222 11222 0.9960 +6222 11224 0.9990 +6222 11340 0.4690 +6222 22916 0.8490 +6222 22927 0.8470 +6222 22948 0.5690 +6222 22984 0.9970 +6222 23016 0.5030 +6222 23054 0.6250 +6222 23135 0.6100 +6222 23148 0.7060 +6222 23160 0.9710 +6222 23173 0.8010 +6222 23193 0.4330 +6222 23204 0.9660 +6222 23212 0.4170 +6222 23223 0.8500 +6222 23252 0.8920 +6222 23367 0.4030 +6222 23395 0.5290 +6222 23404 0.5300 +6222 23405 0.6360 +6222 23423 0.5160 +6222 23435 0.4340 +6222 23463 0.4020 +6222 23478 0.4540 +6222 23480 0.8480 +6222 23517 0.4980 +6222 23521 0.9990 +6222 23640 0.9090 +6222 23708 0.5690 +6222 23732 0.5550 +6222 25789 0.4300 +6222 25873 0.9990 +6222 25879 0.9760 +6222 25885 0.9060 +6222 25926 0.8070 +6222 25983 0.9770 +6222 26135 0.9880 +6222 26156 0.8750 +6222 26251 0.5830 +6222 26271 0.6790 +6222 26275 0.9270 +6222 26289 0.6820 +6222 26330 0.5380 +6222 26574 0.9830 +6222 26589 0.9500 +6222 26986 0.7340 +6222 26995 0.4520 +6222 27012 0.5830 +6222 27068 0.4900 +6222 27292 0.9350 +6222 27335 0.9750 +6222 27340 0.9760 +6222 27341 0.9760 +6222 27349 0.5950 +6222 27430 0.5650 +6222 28972 0.4120 +6222 28985 0.8090 +6222 28987 0.9830 +6222 28991 0.5770 +6222 28998 0.9930 +6222 29088 0.7550 +6222 29093 0.9940 +6222 29102 0.6350 +6222 29789 0.4750 +6222 29922 0.4500 +6222 29927 0.9900 +6222 29978 0.6110 +6222 29979 0.6250 +6222 29997 0.4700 +6222 30836 0.9760 +6222 50487 0.4310 +6222 50613 0.6080 +6222 50808 0.6760 +6222 50814 0.5530 +6222 51001 0.4440 +6222 51010 0.4640 +6222 51013 0.4920 +6222 51014 0.4930 +6222 51021 0.9980 +6222 51023 0.8470 +6222 51065 0.9900 +6222 51067 0.4470 +6222 51069 0.9840 +6222 51073 0.9950 +6222 51077 0.9700 +6222 51081 0.9720 +6222 51096 0.9700 +6222 51106 0.6700 +6222 51116 0.9670 +6222 51118 0.9730 +6222 51119 0.6410 +6222 51121 0.9980 +6222 51149 0.9800 +6222 51154 0.9840 +6222 51182 0.4020 +6222 51187 0.7700 +6222 51232 0.4530 +6222 51263 0.7820 +6222 51264 0.9980 +6222 51314 0.4970 +6222 51319 0.9830 +6222 51386 0.9490 +6222 51406 0.8200 +6222 51504 0.8380 +6222 51520 0.5330 +6222 51574 0.6620 +6222 51602 0.9810 +6222 51654 0.4100 +6222 51720 0.4390 +6222 51727 0.6860 +6222 53918 0.8810 +6222 54464 0.5380 +6222 54505 0.7690 +6222 54512 0.4830 +6222 54516 0.6720 +6222 54543 0.5610 +6222 54802 0.4140 +6222 54901 0.4150 +6222 54948 0.9890 +6222 55052 0.9990 +6222 55127 0.9770 +6222 55143 0.6290 +6222 55168 0.8540 +6222 55173 0.9880 +6222 55176 0.9510 +6222 55226 0.9760 +6222 55268 0.4240 +6222 55272 0.9960 +6222 55308 0.4910 +6222 55316 0.9810 +6222 55324 0.7940 +6222 55591 0.7980 +6222 55601 0.4790 +6222 55607 0.5290 +6222 55629 0.5220 +6222 55646 0.8240 +6222 55651 0.8680 +6222 55703 0.9400 +6222 55720 0.9790 +6222 55781 0.9730 +6222 55802 0.5340 +6222 55813 0.9760 +6222 55854 0.7580 +6222 55862 0.4290 +6222 55893 0.4400 +6222 56474 0.4060 +6222 56479 0.5830 +6222 56648 0.9620 +6222 56731 0.4330 +6222 56893 0.6310 +6222 56902 0.9360 +6222 56915 0.4640 +6222 56965 0.7650 +6222 57038 0.4670 +6222 57050 0.9770 +6222 57129 0.9450 +6222 57136 0.4560 +6222 57176 0.4210 +6222 57469 0.5130 +6222 57470 0.8850 +6222 57505 0.5530 +6222 57647 0.8250 +6222 60386 0.5010 +6222 60488 0.9410 +6222 60558 0.8920 +6222 60559 0.4930 +6222 60678 0.9780 +6222 63875 0.9990 +6222 63931 0.9930 +6222 64146 0.9430 +6222 64216 0.6690 +6222 64221 0.5040 +6222 64374 0.9090 +6222 64432 0.4600 +6222 64745 0.4010 +6222 64960 0.9920 +6222 64963 0.9960 +6222 64965 0.9980 +6222 64968 0.9990 +6222 64969 0.9930 +6222 64975 0.9460 +6222 64976 0.8560 +6222 64978 0.5530 +6222 64979 0.9990 +6222 64981 0.8770 +6222 64983 0.9990 +6222 65003 0.9860 +6222 65005 0.9970 +6222 65008 0.9720 +6222 65080 0.8710 +6222 65083 0.9770 +6222 65121 0.7160 +6222 65122 0.7160 +6222 65993 0.4880 +6222 79048 0.8120 +6222 79050 0.9850 +6222 79084 0.5310 +6222 79571 0.6270 +6222 79590 0.9760 +6222 79631 0.9440 +6222 79668 0.7650 +6222 79728 0.5820 +6222 79954 0.9760 +6222 80146 0.5510 +6222 80270 0.5500 +6222 80298 0.4390 +6222 80349 0.4400 +6222 83732 0.8180 +6222 83939 0.5850 +6222 84128 0.9770 +6222 84135 0.9700 +6222 84172 0.9400 +6222 84285 0.9000 +6222 84340 0.5810 +6222 84545 0.9600 +6222 84701 0.6980 +6222 84851 0.5070 +6222 84916 0.9690 +6222 84946 0.9710 +6222 84993 0.6520 +6222 85377 0.6310 +6222 85395 0.8040 +6222 85476 0.9480 +6222 87178 0.4570 +6222 90624 0.5590 +6222 90701 0.4170 +6222 91408 0.4980 +6222 91574 0.6740 +6222 91582 0.8110 +6222 91875 0.4020 +6222 91893 0.4910 +6222 92196 0.8080 +6222 92399 0.9790 +6222 92856 0.9710 +6222 92906 0.4180 +6222 93107 0.5830 +6222 93517 0.5500 +6222 93550 0.6660 +6222 93974 0.5230 +6222 114781 0.5470 +6222 114803 0.4360 +6222 114987 0.9740 +6222 115098 0.8860 +6222 116832 0.9780 +6222 120892 0.5290 +6222 121278 0.4830 +6222 122481 0.6810 +6222 123263 0.4250 +6222 124359 0.4180 +6222 124454 0.8600 +6222 124995 0.5640 +6222 126402 0.9710 +6222 128061 0.8000 +6222 132954 0.4080 +6222 137994 0.4890 +6222 140032 0.9850 +6222 140801 0.9960 +6222 142940 0.4570 +6222 143244 0.9620 +6222 143630 0.6080 +6222 147011 0.4310 +6222 148022 0.4900 +6222 149478 0.5200 +6222 152518 0.4220 +6222 153443 0.6490 +6222 154288 0.4310 +6222 157310 0.5490 +6222 158067 0.6740 +6222 164153 0.6590 +6222 169522 0.5830 +6222 170850 0.5830 +6222 200916 0.9690 +6222 201595 0.4530 +6222 203427 0.4930 +6222 219927 0.9990 +6222 221264 0.6930 +6222 253175 0.4180 +6222 254268 0.9780 +6222 255308 0.8040 +6222 283383 0.5990 +6222 283518 0.5830 +6222 283600 0.4930 +6222 285855 0.9810 +6222 342538 0.7070 +6222 343068 0.7160 +6222 343070 0.7160 +6222 345051 0.5550 +6222 345630 0.8500 +6222 347487 0.9780 +6222 353376 0.4900 +6222 374659 0.9440 +6222 387129 0.9520 +6222 387712 0.4540 +6222 390999 0.7160 +6222 391002 0.7160 +6222 400735 0.7160 +6222 400736 0.7160 +6222 440560 0.7160 +6222 440561 0.7160 +6222 441873 0.7160 +6222 619279 0.4310 +6222 641776 0.8350 +6222 642489 0.4200 +6222 642987 0.4310 +6222 643909 0.8350 +6222 644591 0.4340 +6222 645051 0.7890 +6222 645073 0.8000 +6222 645142 0.4340 +6222 645359 0.7160 +6222 653505 0.4990 +6222 653598 0.4340 +6222 653619 0.7160 +6222 654364 0.4960 +6222 728378 0.5610 +6222 728524 0.8350 +6222 728689 0.8690 +6222 728945 0.4340 +6222 729396 0.7890 +6222 729422 0.7930 +6222 729428 0.7890 +6222 729431 0.7890 +6222 729442 0.7890 +6222 729447 0.7930 +6222 729528 0.7160 +6222 730262 0.4340 +6222 100008586 0.7940 +6222 100132399 0.7930 +6222 100287482 0.9080 +6222 100302736 0.4900 +6222 100505478 0.9430 +6222 100526842 0.9960 +6222 100529097 0.9690 +6222 100529239 0.9950 +6222 100996746 0.8350 +6222 101929983 0.7160 +6222 102724473 0.7890 +6222 105180390 0.8350 +6222 105180391 0.8350 +6222 105371242 0.4340 +6222 114483834 0.8010 +6223 6224 0.9990 +6223 6227 0.9990 +6223 6228 0.9990 +6223 6229 0.9990 +6223 6230 0.9990 +6223 6231 0.9990 +6223 6232 0.9990 +6223 6233 0.9990 +6223 6234 0.9990 +6223 6235 0.9990 +6223 6414 0.8430 +6223 6499 0.5010 +6223 6627 0.5190 +6223 6633 0.5860 +6223 6635 0.6750 +6223 6726 0.8560 +6223 6727 0.8750 +6223 6728 0.8470 +6223 6729 0.8560 +6223 6730 0.8670 +6223 6741 0.4480 +6223 6949 0.6850 +6223 7057 0.4160 +6223 7157 0.7230 +6223 7178 0.9220 +6223 7203 0.4400 +6223 7264 0.5490 +6223 7311 0.9990 +6223 7314 0.6660 +6223 7316 0.6730 +6223 7407 0.4190 +6223 7450 0.5730 +6223 7458 0.5310 +6223 7494 0.8240 +6223 7866 0.7580 +6223 8034 0.4260 +6223 8192 0.6380 +6223 8266 0.8610 +6223 8539 0.4610 +6223 8562 0.9630 +6223 8602 0.9090 +6223 8607 0.4730 +6223 8634 0.7000 +6223 8638 0.6880 +6223 8661 0.9780 +6223 8662 0.9890 +6223 8663 0.9870 +6223 8664 0.9910 +6223 8665 0.9550 +6223 8666 0.9570 +6223 8667 0.9380 +6223 8668 0.9830 +6223 8669 0.9350 +6223 8721 0.9320 +6223 8780 0.5290 +6223 8894 0.9930 +6223 9045 0.9990 +6223 9086 0.8690 +6223 9132 0.5820 +6223 9136 0.9700 +6223 9141 0.8720 +6223 9168 0.6210 +6223 9188 0.4390 +6223 9277 0.9760 +6223 9312 0.5820 +6223 9343 0.9280 +6223 9349 0.9990 +6223 9493 0.4030 +6223 9584 0.5040 +6223 9636 0.8280 +6223 9652 0.7430 +6223 9669 0.9770 +6223 9724 0.8290 +6223 9732 0.9760 +6223 9789 0.4650 +6223 9790 0.9830 +6223 9858 0.9010 +6223 9939 0.4200 +6223 10131 0.4110 +6223 10169 0.7830 +6223 10171 0.9870 +6223 10199 0.9760 +6223 10209 0.9820 +6223 10213 0.4660 +6223 10236 0.4920 +6223 10289 0.8770 +6223 10399 0.9990 +6223 10412 0.9890 +6223 10436 0.9930 +6223 10438 0.4540 +6223 10473 0.9330 +6223 10476 0.4930 +6223 10480 0.9390 +6223 10492 0.5910 +6223 10526 0.4960 +6223 10527 0.5500 +6223 10528 0.9870 +6223 10537 0.6320 +6223 10557 0.9350 +6223 10574 0.7110 +6223 10575 0.6210 +6223 10576 0.5790 +6223 10607 0.9690 +6223 10614 0.4710 +6223 10657 0.4240 +6223 10666 0.4480 +6223 10694 0.4900 +6223 10767 0.8940 +6223 10813 0.9680 +6223 10885 0.9700 +6223 10952 0.8860 +6223 10980 0.4140 +6223 10985 0.8840 +6223 10987 0.6770 +6223 10988 0.4890 +6223 11047 0.5480 +6223 11097 0.4040 +6223 11103 0.7100 +6223 11137 0.4400 +6223 11222 0.9690 +6223 11224 0.9990 +6223 11340 0.5160 +6223 22927 0.8550 +6223 22948 0.6240 +6223 22984 0.7300 +6223 23016 0.5430 +6223 23054 0.6460 +6223 23148 0.6630 +6223 23160 0.9740 +6223 23204 0.9470 +6223 23212 0.4520 +6223 23223 0.8640 +6223 23246 0.4140 +6223 23367 0.4050 +6223 23404 0.4680 +6223 23478 0.4400 +6223 23480 0.8760 +6223 23517 0.5670 +6223 23521 0.9990 +6223 23640 0.8600 +6223 23708 0.5380 +6223 25873 0.9990 +6223 25879 0.9800 +6223 25926 0.8430 +6223 25983 0.5950 +6223 26135 0.9930 +6223 26156 0.4830 +6223 26251 0.5820 +6223 26574 0.9010 +6223 26589 0.4360 +6223 26986 0.8160 +6223 27000 0.4470 +6223 27012 0.5820 +6223 27202 0.5330 +6223 27292 0.9380 +6223 27335 0.9860 +6223 27340 0.9760 +6223 27341 0.9790 +6223 27430 0.5560 +6223 28972 0.4540 +6223 28985 0.8120 +6223 28987 0.9830 +6223 28991 0.5730 +6223 28998 0.9700 +6223 29088 0.7170 +6223 29093 0.9680 +6223 29927 0.8370 +6223 29978 0.5790 +6223 29979 0.6520 +6223 29997 0.5790 +6223 30836 0.9760 +6223 50487 0.4400 +6223 50613 0.5760 +6223 50814 0.5420 +6223 51010 0.4640 +6223 51013 0.4750 +6223 51065 0.9940 +6223 51069 0.9670 +6223 51073 0.9460 +6223 51077 0.9750 +6223 51081 0.9710 +6223 51096 0.9710 +6223 51106 0.4840 +6223 51116 0.9100 +6223 51118 0.9700 +6223 51119 0.8650 +6223 51121 0.9960 +6223 51149 0.9790 +6223 51154 0.9770 +6223 51182 0.4010 +6223 51187 0.7480 +6223 51319 0.9770 +6223 51372 0.4640 +6223 51386 0.9700 +6223 51388 0.4900 +6223 51406 0.8180 +6223 51504 0.8540 +6223 51574 0.5650 +6223 51602 0.9850 +6223 51720 0.4490 +6223 53918 0.9020 +6223 54464 0.5850 +6223 54505 0.7660 +6223 54512 0.4800 +6223 54606 0.4140 +6223 54859 0.4500 +6223 54948 0.8740 +6223 55127 0.9790 +6223 55173 0.9790 +6223 55226 0.9050 +6223 55272 0.9960 +6223 55308 0.5130 +6223 55316 0.9770 +6223 55505 0.5510 +6223 55601 0.4880 +6223 55607 0.5250 +6223 55629 0.5040 +6223 55646 0.8800 +6223 55651 0.9070 +6223 55720 0.9590 +6223 55759 0.4500 +6223 55781 0.9830 +6223 55802 0.5630 +6223 55813 0.9780 +6223 55854 0.7690 +6223 55893 0.4810 +6223 56257 0.4440 +6223 56479 0.5820 +6223 56648 0.8850 +6223 56731 0.4450 +6223 56893 0.6010 +6223 56902 0.9420 +6223 56915 0.4800 +6223 56965 0.7140 +6223 57050 0.9790 +6223 57470 0.8460 +6223 57606 0.4010 +6223 57647 0.8400 +6223 60386 0.4270 +6223 60559 0.4030 +6223 60678 0.9780 +6223 63931 0.9500 +6223 63946 0.6620 +6223 64216 0.5100 +6223 64221 0.4990 +6223 64374 0.8600 +6223 64960 0.9640 +6223 64963 0.9750 +6223 64969 0.9810 +6223 65003 0.9090 +6223 65008 0.9610 +6223 65083 0.9810 +6223 65121 0.6830 +6223 65122 0.6830 +6223 79048 0.8100 +6223 79050 0.9830 +6223 79567 0.4050 +6223 79571 0.6490 +6223 79590 0.9670 +6223 79631 0.9280 +6223 79668 0.7120 +6223 79727 0.4210 +6223 79869 0.4110 +6223 79954 0.9010 +6223 80135 0.4240 +6223 80146 0.5420 +6223 80270 0.5390 +6223 80349 0.4370 +6223 83732 0.8360 +6223 83939 0.7080 +6223 84085 0.4090 +6223 84128 0.9760 +6223 84135 0.9730 +6223 84154 0.4310 +6223 84285 0.8180 +6223 84916 0.9790 +6223 84946 0.9790 +6223 84954 0.4100 +6223 84993 0.6300 +6223 85377 0.6540 +6223 85395 0.8230 +6223 85476 0.9240 +6223 90121 0.6380 +6223 90701 0.4070 +6223 91408 0.7400 +6223 91582 0.9430 +6223 92196 0.8080 +6223 92856 0.9750 +6223 93107 0.5820 +6223 93517 0.5390 +6223 93550 0.6320 +6223 93974 0.4740 +6223 114803 0.4710 +6223 114987 0.9720 +6223 115098 0.9220 +6223 116832 0.9830 +6223 117246 0.4600 +6223 120892 0.5220 +6223 122622 0.6350 +6223 124454 0.8110 +6223 126402 0.9680 +6223 137994 0.4290 +6223 140032 0.9880 +6223 140801 0.9960 +6223 143244 0.8830 +6223 143630 0.5760 +6223 147011 0.4400 +6223 149041 0.5100 +6223 152518 0.4200 +6223 153443 0.4830 +6223 154288 0.4400 +6223 164153 0.6310 +6223 169522 0.5820 +6223 170850 0.5820 +6223 200916 0.9750 +6223 201595 0.5270 +6223 203427 0.4260 +6223 254268 0.9470 +6223 255308 0.8450 +6223 283518 0.5820 +6223 283600 0.4260 +6223 285855 0.9780 +6223 286187 0.4540 +6223 341640 0.4060 +6223 342538 0.6660 +6223 343068 0.6830 +6223 343070 0.6830 +6223 345630 0.8530 +6223 347487 0.9760 +6223 387129 0.9530 +6223 390999 0.6830 +6223 391002 0.6830 +6223 400735 0.6830 +6223 400736 0.6830 +6223 440560 0.6830 +6223 440561 0.6830 +6223 441873 0.6830 +6223 619279 0.4400 +6223 641776 0.8150 +6223 642489 0.4400 +6223 642987 0.4400 +6223 643909 0.8150 +6223 645051 0.7860 +6223 645073 0.7860 +6223 645359 0.6830 +6223 653145 0.4610 +6223 653619 0.6830 +6223 728524 0.8150 +6223 728689 0.8830 +6223 729396 0.7860 +6223 729422 0.7860 +6223 729428 0.7860 +6223 729431 0.7860 +6223 729442 0.7860 +6223 729447 0.7860 +6223 729528 0.6830 +6223 100008586 0.7860 +6223 100132399 0.7860 +6223 100287482 0.9010 +6223 100505478 0.9290 +6223 100526842 0.9950 +6223 100529097 0.9510 +6223 100529239 0.9950 +6223 100996746 0.8150 +6223 101929983 0.6830 +6223 102724473 0.7860 +6223 105180390 0.8150 +6223 105180391 0.8150 +6224 6227 0.9990 +6224 6228 0.9990 +6224 6229 0.9990 +6224 6230 0.9990 +6224 6231 0.9990 +6224 6232 0.9990 +6224 6233 0.9990 +6224 6234 0.9990 +6224 6235 0.9990 +6224 6238 0.4670 +6224 6414 0.8630 +6224 6426 0.5220 +6224 6428 0.4420 +6224 6434 0.5970 +6224 6499 0.8660 +6224 6625 0.5090 +6224 6633 0.4870 +6224 6635 0.7590 +6224 6636 0.4430 +6224 6637 0.4360 +6224 6648 0.6150 +6224 6687 0.5090 +6224 6726 0.8460 +6224 6727 0.8770 +6224 6728 0.8560 +6224 6729 0.9390 +6224 6730 0.8530 +6224 6741 0.5510 +6224 6742 0.8060 +6224 6782 0.4300 +6224 6950 0.6390 +6224 7153 0.4170 +6224 7167 0.5290 +6224 7178 0.9780 +6224 7203 0.5980 +6224 7264 0.5120 +6224 7284 0.9920 +6224 7311 0.9990 +6224 7314 0.6770 +6224 7316 0.6760 +6224 7336 0.4390 +6224 7375 0.4090 +6224 7399 0.7830 +6224 7403 0.4210 +6224 7404 0.4210 +6224 7407 0.4960 +6224 7411 0.4780 +6224 7450 0.4170 +6224 7458 0.7660 +6224 7494 0.8190 +6224 7514 0.4310 +6224 7531 0.4460 +6224 7818 0.8890 +6224 7866 0.7590 +6224 7919 0.6010 +6224 8237 0.4150 +6224 8242 0.4030 +6224 8260 0.5560 +6224 8266 0.7070 +6224 8361 0.4060 +6224 8382 0.5610 +6224 8531 0.4290 +6224 8562 0.9390 +6224 8607 0.6710 +6224 8624 0.7040 +6224 8638 0.5870 +6224 8661 0.9920 +6224 8662 0.9940 +6224 8663 0.9830 +6224 8664 0.9790 +6224 8665 0.9660 +6224 8666 0.9960 +6224 8667 0.9170 +6224 8668 0.9960 +6224 8669 0.9730 +6224 8721 0.9760 +6224 8780 0.6260 +6224 8833 0.5080 +6224 8894 0.9960 +6224 9045 0.9990 +6224 9055 0.4320 +6224 9086 0.9670 +6224 9097 0.4270 +6224 9098 0.4040 +6224 9132 0.5090 +6224 9141 0.6490 +6224 9147 0.5380 +6224 9255 0.4660 +6224 9296 0.4150 +6224 9312 0.5090 +6224 9325 0.6020 +6224 9343 0.8730 +6224 9349 0.9990 +6224 9401 0.4100 +6224 9470 0.4580 +6224 9528 0.5010 +6224 9533 0.9430 +6224 9553 0.9820 +6224 9584 0.4180 +6224 9617 0.5970 +6224 9636 0.8250 +6224 9652 0.5470 +6224 9669 0.9900 +6224 9732 0.9770 +6224 9775 0.4620 +6224 9782 0.5230 +6224 9789 0.4490 +6224 9801 0.9810 +6224 9858 0.8420 +6224 9958 0.4140 +6224 10056 0.4350 +6224 10061 0.5510 +6224 10102 0.7760 +6224 10135 0.6050 +6224 10146 0.4820 +6224 10155 0.4280 +6224 10189 0.4270 +6224 10201 0.5650 +6224 10209 0.9850 +6224 10213 0.5740 +6224 10236 0.7520 +6224 10240 0.4290 +6224 10289 0.8960 +6224 10399 0.9990 +6224 10412 0.9440 +6224 10432 0.6740 +6224 10471 0.4780 +6224 10473 0.9060 +6224 10480 0.9570 +6224 10492 0.8300 +6224 10526 0.4270 +6224 10527 0.4700 +6224 10537 0.5880 +6224 10557 0.7830 +6224 10574 0.7770 +6224 10575 0.7620 +6224 10576 0.7660 +6224 10594 0.4470 +6224 10606 0.4130 +6224 10643 0.4520 +6224 10664 0.4780 +6224 10666 0.4600 +6224 10667 0.4310 +6224 10694 0.7170 +6224 10726 0.5330 +6224 10730 0.5140 +6224 10767 0.9500 +6224 10856 0.4620 +6224 10868 0.4040 +6224 10869 0.4090 +6224 10939 0.5050 +6224 10949 0.5180 +6224 10952 0.8990 +6224 10964 0.4800 +6224 10973 0.6020 +6224 10985 0.9470 +6224 10987 0.4120 +6224 10988 0.6860 +6224 11097 0.4060 +6224 11128 0.7720 +6224 11222 0.9070 +6224 11224 0.9990 +6224 11315 0.6510 +6224 11319 0.4010 +6224 11336 0.4520 +6224 22913 0.4870 +6224 22916 0.6080 +6224 22927 0.9140 +6224 22948 0.7410 +6224 22984 0.9820 +6224 23016 0.4030 +6224 23032 0.4040 +6224 23049 0.4690 +6224 23054 0.5710 +6224 23135 0.4210 +6224 23148 0.6510 +6224 23173 0.6190 +6224 23204 0.9430 +6224 23212 0.4880 +6224 23252 0.8310 +6224 23376 0.4360 +6224 23405 0.6310 +6224 23423 0.4470 +6224 23435 0.6290 +6224 23478 0.4360 +6224 23480 0.8460 +6224 23517 0.5000 +6224 23521 0.9990 +6224 23640 0.8290 +6224 23708 0.5790 +6224 25789 0.4910 +6224 25873 0.9990 +6224 25885 0.8020 +6224 25914 0.5190 +6224 26046 0.5950 +6224 26058 0.4300 +6224 26097 0.4200 +6224 26135 0.9970 +6224 26251 0.5090 +6224 26271 0.6060 +6224 26289 0.4810 +6224 26589 0.8580 +6224 26986 0.7480 +6224 27012 0.5090 +6224 27068 0.6270 +6224 27161 0.5510 +6224 27292 0.7630 +6224 27316 0.6140 +6224 27335 0.9720 +6224 27341 0.4990 +6224 27430 0.5220 +6224 28957 0.4310 +6224 28972 0.4110 +6224 28973 0.4810 +6224 28985 0.8400 +6224 28987 0.9810 +6224 28991 0.5820 +6224 28998 0.8990 +6224 29074 0.5670 +6224 29088 0.6230 +6224 29093 0.8920 +6224 29102 0.6530 +6224 29789 0.4650 +6224 29922 0.5610 +6224 29927 0.9740 +6224 29978 0.4480 +6224 29979 0.5100 +6224 50487 0.4600 +6224 50613 0.4390 +6224 50808 0.4820 +6224 50814 0.5050 +6224 51014 0.4370 +6224 51021 0.9830 +6224 51023 0.6680 +6224 51031 0.4370 +6224 51065 0.9950 +6224 51069 0.8910 +6224 51073 0.9180 +6224 51081 0.9610 +6224 51106 0.5960 +6224 51116 0.8510 +6224 51119 0.5880 +6224 51121 0.9980 +6224 51149 0.9780 +6224 51154 0.9480 +6224 51182 0.4050 +6224 51187 0.6890 +6224 51231 0.4060 +6224 51258 0.5370 +6224 51263 0.6520 +6224 51264 0.9810 +6224 51314 0.6160 +6224 51318 0.4040 +6224 51319 0.9780 +6224 51373 0.5360 +6224 51386 0.9580 +6224 51520 0.4090 +6224 51569 0.4030 +6224 51574 0.6740 +6224 51637 0.4400 +6224 51650 0.4860 +6224 51720 0.4770 +6224 51727 0.4940 +6224 53918 0.9170 +6224 54148 0.4270 +6224 54464 0.7370 +6224 54505 0.7770 +6224 54516 0.5970 +6224 54543 0.5770 +6224 54948 0.9000 +6224 54968 0.4150 +6224 54998 0.4040 +6224 55037 0.4330 +6224 55052 0.9810 +6224 55143 0.4820 +6224 55168 0.6660 +6224 55176 0.8620 +6224 55272 0.9450 +6224 55316 0.9770 +6224 55324 0.6230 +6224 55591 0.6050 +6224 55601 0.4290 +6224 55629 0.5070 +6224 55646 0.8250 +6224 55651 0.8110 +6224 55703 0.8610 +6224 55720 0.9720 +6224 55749 0.4440 +6224 55781 0.9950 +6224 55802 0.5110 +6224 55854 0.7350 +6224 55893 0.4710 +6224 56474 0.4690 +6224 56479 0.5090 +6224 56648 0.8870 +6224 56731 0.4600 +6224 56893 0.4630 +6224 56902 0.9490 +6224 56945 0.5370 +6224 56965 0.5850 +6224 57129 0.8770 +6224 57136 0.6110 +6224 57470 0.8840 +6224 57478 0.4040 +6224 60488 0.8760 +6224 60558 0.7790 +6224 60559 0.4010 +6224 60678 0.9680 +6224 63875 0.9830 +6224 63931 0.9550 +6224 64146 0.8230 +6224 64216 0.6140 +6224 64218 0.4280 +6224 64221 0.5190 +6224 64374 0.8300 +6224 64432 0.8110 +6224 64745 0.6270 +6224 64951 0.5440 +6224 64960 0.8880 +6224 64963 0.9600 +6224 64965 0.9820 +6224 64968 0.9810 +6224 64969 0.9450 +6224 64975 0.8350 +6224 64976 0.8890 +6224 64978 0.6470 +6224 64979 0.9840 +6224 64981 0.8560 +6224 64983 0.9810 +6224 65003 0.8700 +6224 65005 0.9810 +6224 65008 0.9360 +6224 65080 0.6200 +6224 65121 0.6090 +6224 65122 0.6090 +6224 65993 0.6250 +6224 79048 0.8410 +6224 79145 0.6130 +6224 79571 0.5740 +6224 79590 0.8900 +6224 79631 0.8550 +6224 79668 0.5840 +6224 79695 0.5050 +6224 79728 0.4830 +6224 80146 0.5040 +6224 80218 0.4310 +6224 80270 0.5040 +6224 80349 0.5780 +6224 81570 0.4230 +6224 83732 0.8850 +6224 83939 0.6300 +6224 84154 0.5390 +6224 84164 0.6050 +6224 84172 0.8640 +6224 84285 0.8300 +6224 84340 0.5630 +6224 84545 0.9070 +6224 84669 0.4050 +6224 84851 0.5070 +6224 84946 0.9970 +6224 84993 0.4720 +6224 85377 0.5220 +6224 85476 0.8430 +6224 87178 0.6380 +6224 90121 0.4130 +6224 90313 0.5710 +6224 90624 0.4920 +6224 90701 0.4100 +6224 90850 0.8380 +6224 91574 0.5970 +6224 91875 0.4680 +6224 92196 0.5070 +6224 92399 0.9440 +6224 93107 0.5090 +6224 93517 0.5040 +6224 93550 0.6260 +6224 114781 0.4800 +6224 114803 0.4210 +6224 114987 0.9740 +6224 115098 0.8850 +6224 116541 0.6230 +6224 116832 0.9820 +6224 118487 0.5570 +6224 120892 0.6130 +6224 122481 0.4810 +6224 123263 0.4240 +6224 123283 0.4210 +6224 124245 0.4120 +6224 124454 0.7370 +6224 124739 0.4040 +6224 124801 0.4390 +6224 124995 0.7630 +6224 126402 0.9570 +6224 133482 0.4160 +6224 134492 0.4800 +6224 137695 0.4740 +6224 137994 0.4290 +6224 139596 0.4040 +6224 140032 0.9810 +6224 140801 0.9950 +6224 143244 0.8910 +6224 143630 0.4390 +6224 147011 0.4600 +6224 148022 0.4360 +6224 149041 0.5100 +6224 149478 0.4800 +6224 152518 0.4380 +6224 153443 0.5960 +6224 154288 0.4600 +6224 157310 0.6100 +6224 158067 0.4810 +6224 164153 0.5870 +6224 169522 0.5090 +6224 170850 0.5090 +6224 195814 0.5370 +6224 196074 0.4090 +6224 200916 0.9700 +6224 201595 0.4300 +6224 219927 0.9820 +6224 220988 0.4900 +6224 221264 0.4810 +6224 254268 0.9540 +6224 254272 0.4040 +6224 255308 0.8540 +6224 283518 0.5090 +6224 285855 0.9830 +6224 342538 0.6530 +6224 343068 0.6090 +6224 343070 0.6090 +6224 347487 0.9730 +6224 353149 0.4040 +6224 353376 0.4360 +6224 373509 0.4040 +6224 374659 0.8360 +6224 387129 0.9400 +6224 387712 0.4520 +6224 390999 0.6090 +6224 391002 0.6090 +6224 400735 0.6090 +6224 400736 0.6090 +6224 440560 0.6090 +6224 440561 0.6090 +6224 441873 0.6090 +6224 619279 0.4600 +6224 641776 0.7720 +6224 642987 0.4600 +6224 643909 0.7720 +6224 645051 0.6950 +6224 645073 0.7000 +6224 645359 0.6090 +6224 653619 0.6090 +6224 654364 0.6700 +6224 728524 0.7720 +6224 728689 0.8730 +6224 729396 0.6950 +6224 729422 0.6950 +6224 729428 0.6950 +6224 729431 0.6950 +6224 729442 0.6950 +6224 729447 0.6950 +6224 729528 0.6090 +6224 100008586 0.7000 +6224 100132399 0.6950 +6224 100287482 0.8220 +6224 100302736 0.4360 +6224 100505478 0.8400 +6224 100526842 0.9950 +6224 100529097 0.9640 +6224 100529239 0.9950 +6224 100996746 0.7720 +6224 101929983 0.6090 +6224 102724473 0.6950 +6224 105180390 0.7720 +6224 105180391 0.7720 +6224 114483834 0.5600 +6227 6228 0.9990 +6227 6229 0.9990 +6227 6230 0.9990 +6227 6231 0.9990 +6227 6232 0.9990 +6227 6233 0.9990 +6227 6234 0.9990 +6227 6235 0.9990 +6227 6414 0.8590 +6227 6499 0.5070 +6227 6627 0.5550 +6227 6633 0.5580 +6227 6636 0.5110 +6227 6637 0.4550 +6227 6726 0.8950 +6227 6727 0.8300 +6227 6728 0.8570 +6227 6729 0.8270 +6227 6730 0.8510 +6227 7178 0.8380 +6227 7264 0.5600 +6227 7311 0.9990 +6227 7314 0.6730 +6227 7316 0.6770 +6227 7458 0.6580 +6227 7494 0.8000 +6227 7866 0.7620 +6227 8260 0.4260 +6227 8266 0.7470 +6227 8562 0.9400 +6227 8638 0.6550 +6227 8661 0.9790 +6227 8662 0.9730 +6227 8663 0.9750 +6227 8664 0.9720 +6227 8665 0.9030 +6227 8666 0.9510 +6227 8667 0.9490 +6227 8668 0.9540 +6227 8669 0.9240 +6227 8721 0.9620 +6227 8780 0.6090 +6227 8894 0.9880 +6227 9045 0.9990 +6227 9086 0.8290 +6227 9132 0.5720 +6227 9312 0.5720 +6227 9343 0.8020 +6227 9349 0.9990 +6227 9636 0.8390 +6227 9652 0.5080 +6227 9669 0.9350 +6227 9732 0.9730 +6227 9789 0.4050 +6227 9858 0.8570 +6227 9885 0.4250 +6227 10209 0.9710 +6227 10236 0.4380 +6227 10289 0.8330 +6227 10399 0.9990 +6227 10473 0.9180 +6227 10476 0.4200 +6227 10480 0.8820 +6227 10492 0.6290 +6227 10526 0.4780 +6227 10527 0.5050 +6227 10537 0.6550 +6227 10539 0.4280 +6227 10557 0.7370 +6227 10574 0.5170 +6227 10575 0.5110 +6227 10576 0.4390 +6227 10594 0.4320 +6227 10666 0.4120 +6227 10694 0.4270 +6227 10767 0.8860 +6227 10952 0.9020 +6227 10985 0.8910 +6227 10988 0.4320 +6227 11047 0.6130 +6227 11222 0.9340 +6227 11224 0.9990 +6227 22826 0.4030 +6227 22927 0.8690 +6227 22948 0.4290 +6227 23054 0.4210 +6227 23148 0.6020 +6227 23185 0.9030 +6227 23204 0.9660 +6227 23223 0.8050 +6227 23478 0.4570 +6227 23480 0.8750 +6227 23517 0.4900 +6227 23521 0.9990 +6227 23640 0.7590 +6227 23708 0.5500 +6227 25873 0.9990 +6227 26135 0.9890 +6227 26251 0.5720 +6227 26986 0.5820 +6227 27012 0.5720 +6227 27072 0.5440 +6227 27089 0.4380 +6227 27292 0.5370 +6227 27335 0.9800 +6227 27430 0.5710 +6227 28972 0.4650 +6227 28985 0.8230 +6227 28987 0.9800 +6227 28991 0.5830 +6227 28998 0.9560 +6227 29088 0.6830 +6227 29093 0.9460 +6227 29927 0.8240 +6227 29978 0.6050 +6227 29979 0.6380 +6227 50487 0.4120 +6227 50613 0.6020 +6227 50814 0.5540 +6227 51065 0.9940 +6227 51069 0.9260 +6227 51073 0.9500 +6227 51081 0.9510 +6227 51116 0.8610 +6227 51121 0.9970 +6227 51149 0.9730 +6227 51154 0.9500 +6227 51232 0.5960 +6227 51319 0.9710 +6227 51372 0.4520 +6227 51386 0.9250 +6227 51504 0.8490 +6227 51574 0.6050 +6227 51720 0.4250 +6227 53918 0.8820 +6227 54464 0.5280 +6227 54505 0.7270 +6227 54543 0.4730 +6227 54948 0.8140 +6227 55173 0.9750 +6227 55272 0.9730 +6227 55316 0.9720 +6227 55505 0.4040 +6227 55601 0.4670 +6227 55607 0.4220 +6227 55629 0.5010 +6227 55646 0.8630 +6227 55651 0.7940 +6227 55720 0.9200 +6227 55781 0.9910 +6227 55802 0.5210 +6227 55854 0.7780 +6227 55893 0.4170 +6227 56479 0.5720 +6227 56648 0.8320 +6227 56731 0.4250 +6227 56893 0.6270 +6227 56902 0.9000 +6227 57470 0.8040 +6227 57532 0.7310 +6227 60559 0.6180 +6227 60678 0.9740 +6227 63931 0.9340 +6227 64216 0.4390 +6227 64221 0.4990 +6227 64374 0.7570 +6227 64960 0.9390 +6227 64963 0.9750 +6227 64969 0.9600 +6227 65003 0.8830 +6227 65008 0.9370 +6227 65121 0.6720 +6227 65122 0.6720 +6227 79048 0.8100 +6227 79571 0.4210 +6227 79590 0.9560 +6227 79631 0.7740 +6227 80146 0.5510 +6227 80270 0.5510 +6227 80349 0.8110 +6227 81928 0.6330 +6227 83732 0.8240 +6227 83939 0.5670 +6227 84285 0.8510 +6227 84946 0.9920 +6227 84993 0.6680 +6227 85377 0.5790 +6227 85395 0.8040 +6227 85476 0.7770 +6227 90701 0.4130 +6227 91408 0.4400 +6227 92196 0.8080 +6227 93107 0.5720 +6227 93517 0.5600 +6227 93550 0.6550 +6227 114987 0.9470 +6227 115098 0.9050 +6227 116832 0.9810 +6227 124454 0.8590 +6227 126402 0.9510 +6227 140032 0.9720 +6227 140801 0.9930 +6227 140893 0.4290 +6227 143244 0.8350 +6227 143630 0.6020 +6227 147011 0.4120 +6227 152518 0.4290 +6227 154288 0.4120 +6227 164153 0.6550 +6227 169522 0.5720 +6227 170850 0.5720 +6227 200916 0.9800 +6227 201595 0.4370 +6227 254268 0.9800 +6227 255308 0.7940 +6227 283518 0.5720 +6227 285855 0.9760 +6227 342538 0.7280 +6227 343068 0.6720 +6227 343070 0.6720 +6227 347487 0.9690 +6227 387129 0.9290 +6227 390999 0.6720 +6227 391002 0.6720 +6227 400735 0.6720 +6227 400736 0.6720 +6227 440560 0.6720 +6227 440561 0.6720 +6227 441873 0.6720 +6227 619279 0.4120 +6227 641776 0.8110 +6227 642489 0.4040 +6227 642987 0.4120 +6227 643909 0.8110 +6227 645051 0.7740 +6227 645073 0.7780 +6227 645359 0.6720 +6227 653619 0.6720 +6227 728524 0.8110 +6227 728689 0.8510 +6227 729396 0.7740 +6227 729422 0.7740 +6227 729428 0.7740 +6227 729431 0.7740 +6227 729442 0.7740 +6227 729447 0.7740 +6227 729528 0.6720 +6227 100008586 0.7780 +6227 100132399 0.7740 +6227 100287482 0.8570 +6227 100505478 0.9180 +6227 100526842 0.9950 +6227 100529097 0.9590 +6227 100529239 0.9940 +6227 100996746 0.8110 +6227 101929983 0.6720 +6227 102724473 0.7740 +6227 105180390 0.8110 +6227 105180391 0.8110 +6227 128706665 0.4450 +6228 6229 0.9990 +6228 6230 0.9990 +6228 6231 0.9990 +6228 6232 0.9990 +6228 6233 0.9990 +6228 6234 0.9990 +6228 6235 0.9990 +6228 6389 0.5140 +6228 6414 0.8580 +6228 6499 0.4510 +6228 6635 0.4810 +6228 6648 0.5910 +6228 6687 0.5200 +6228 6726 0.8400 +6228 6727 0.8800 +6228 6728 0.8550 +6228 6729 0.9400 +6228 6730 0.8560 +6228 6742 0.7390 +6228 6897 0.4970 +6228 7086 0.4080 +6228 7167 0.4400 +6228 7178 0.9440 +6228 7203 0.4380 +6228 7264 0.5430 +6228 7284 0.9880 +6228 7311 0.9990 +6228 7314 0.6410 +6228 7316 0.5990 +6228 7386 0.4510 +6228 7399 0.4530 +6228 7403 0.4690 +6228 7404 0.4560 +6228 7407 0.4920 +6228 7458 0.6190 +6228 7494 0.8000 +6228 7818 0.8750 +6228 7866 0.7590 +6228 8034 0.4600 +6228 8192 0.4650 +6228 8266 0.5710 +6228 8382 0.5720 +6228 8531 0.4200 +6228 8562 0.9310 +6228 8565 0.5610 +6228 8602 0.9620 +6228 8624 0.7390 +6228 8634 0.7500 +6228 8638 0.5670 +6228 8661 0.9870 +6228 8662 0.9840 +6228 8663 0.9770 +6228 8664 0.9800 +6228 8665 0.9300 +6228 8666 0.9910 +6228 8667 0.9540 +6228 8668 0.9860 +6228 8669 0.9860 +6228 8721 0.9180 +6228 8833 0.4950 +6228 8894 0.9920 +6228 9045 0.9990 +6228 9086 0.9640 +6228 9093 0.4820 +6228 9132 0.4910 +6228 9136 0.9920 +6228 9141 0.7110 +6228 9255 0.4140 +6228 9277 0.9920 +6228 9312 0.4910 +6228 9343 0.8630 +6228 9349 0.9990 +6228 9533 0.9220 +6228 9553 0.9730 +6228 9584 0.4370 +6228 9617 0.6010 +6228 9636 0.7920 +6228 9652 0.4470 +6228 9669 0.9930 +6228 9724 0.8880 +6228 9732 0.9760 +6228 9789 0.4360 +6228 9790 0.9940 +6228 9801 0.9850 +6228 9858 0.8210 +6228 10061 0.5900 +6228 10102 0.7920 +6228 10135 0.6070 +6228 10146 0.5320 +6228 10171 0.9930 +6228 10199 0.9920 +6228 10201 0.5750 +6228 10209 0.9840 +6228 10236 0.5920 +6228 10240 0.5460 +6228 10289 0.8750 +6228 10399 0.9990 +6228 10412 0.9200 +6228 10436 0.9940 +6228 10438 0.4500 +6228 10473 0.9060 +6228 10480 0.9130 +6228 10492 0.5770 +6228 10526 0.4890 +6228 10527 0.4200 +6228 10528 0.9940 +6228 10537 0.5670 +6228 10557 0.9230 +6228 10574 0.5440 +6228 10575 0.5420 +6228 10576 0.5610 +6228 10607 0.9920 +6228 10664 0.4870 +6228 10666 0.4790 +6228 10694 0.4320 +6228 10730 0.5330 +6228 10767 0.9270 +6228 10813 0.9800 +6228 10885 0.9920 +6228 10939 0.5170 +6228 10952 0.8940 +6228 10964 0.4310 +6228 10985 0.8750 +6228 10988 0.6890 +6228 11047 0.4250 +6228 11056 0.4090 +6228 11103 0.9930 +6228 11128 0.7220 +6228 11222 0.8920 +6228 11224 0.9990 +6228 11340 0.4410 +6228 22894 0.4090 +6228 22927 0.8350 +6228 22948 0.5370 +6228 22984 0.9900 +6228 23016 0.5510 +6228 23054 0.7690 +6228 23107 0.4610 +6228 23135 0.4570 +6228 23148 0.5210 +6228 23160 0.9830 +6228 23173 0.6180 +6228 23185 0.9010 +6228 23204 0.9560 +6228 23223 0.8260 +6228 23252 0.8170 +6228 23404 0.4800 +6228 23405 0.6640 +6228 23423 0.4340 +6228 23435 0.4740 +6228 23478 0.4670 +6228 23480 0.8590 +6228 23517 0.4860 +6228 23521 0.9990 +6228 23640 0.8290 +6228 23708 0.5950 +6228 23732 0.5080 +6228 25873 0.9990 +6228 25879 0.9920 +6228 25885 0.7390 +6228 25926 0.8950 +6228 25983 0.9720 +6228 26135 0.9860 +6228 26156 0.9600 +6228 26251 0.4910 +6228 26271 0.6080 +6228 26289 0.4510 +6228 26574 0.9880 +6228 26589 0.8740 +6228 26986 0.6210 +6228 27012 0.4910 +6228 27042 0.4090 +6228 27068 0.4240 +6228 27292 0.9170 +6228 27335 0.9740 +6228 27340 0.9820 +6228 27341 0.9850 +6228 27430 0.5550 +6228 28957 0.5280 +6228 28972 0.4480 +6228 28973 0.4770 +6228 28985 0.8170 +6228 28987 0.9780 +6228 28991 0.5840 +6228 28998 0.9000 +6228 29088 0.6200 +6228 29093 0.8920 +6228 29102 0.6640 +6228 29789 0.4860 +6228 29922 0.5730 +6228 29927 0.9780 +6228 29978 0.4260 +6228 29979 0.4560 +6228 30836 0.9880 +6228 50487 0.4790 +6228 50613 0.4210 +6228 50808 0.4510 +6228 50814 0.5400 +6228 51010 0.5110 +6228 51013 0.4910 +6228 51014 0.4420 +6228 51021 0.9810 +6228 51023 0.7060 +6228 51065 0.9940 +6228 51069 0.8890 +6228 51073 0.9020 +6228 51077 0.9920 +6228 51081 0.9450 +6228 51096 0.9930 +6228 51106 0.5710 +6228 51116 0.8430 +6228 51118 0.9930 +6228 51119 0.6720 +6228 51121 0.9970 +6228 51149 0.9800 +6228 51154 0.9460 +6228 51187 0.6740 +6228 51202 0.4970 +6228 51232 0.4020 +6228 51258 0.4080 +6228 51263 0.7940 +6228 51264 0.9820 +6228 51314 0.6660 +6228 51319 0.9750 +6228 51373 0.5560 +6228 51386 0.9500 +6228 51406 0.8140 +6228 51504 0.8340 +6228 51520 0.4120 +6228 51557 0.4120 +6228 51574 0.4820 +6228 51602 0.9930 +6228 51649 0.5190 +6228 51650 0.5280 +6228 51720 0.4860 +6228 51727 0.4580 +6228 53918 0.9150 +6228 54059 0.4240 +6228 54148 0.6080 +6228 54464 0.4830 +6228 54505 0.7900 +6228 54512 0.5920 +6228 54516 0.6010 +6228 54543 0.4530 +6228 54555 0.4960 +6228 54596 0.4860 +6228 54948 0.8320 +6228 54965 0.4560 +6228 54998 0.4190 +6228 55052 0.9810 +6228 55127 0.9920 +6228 55157 0.4280 +6228 55168 0.7080 +6228 55173 0.9440 +6228 55176 0.8850 +6228 55226 0.9880 +6228 55239 0.8160 +6228 55272 0.9980 +6228 55316 0.9630 +6228 55324 0.6050 +6228 55591 0.6000 +6228 55601 0.4450 +6228 55607 0.4580 +6228 55629 0.5150 +6228 55646 0.8090 +6228 55651 0.8030 +6228 55703 0.7960 +6228 55720 0.9690 +6228 55781 0.9800 +6228 55802 0.5730 +6228 55813 0.9920 +6228 55854 0.5950 +6228 55893 0.4810 +6228 56479 0.4910 +6228 56648 0.8910 +6228 56731 0.4800 +6228 56893 0.4460 +6228 56902 0.9650 +6228 56915 0.6290 +6228 56945 0.5260 +6228 56965 0.6940 +6228 57038 0.4970 +6228 57050 0.9930 +6228 57129 0.8550 +6228 57136 0.4990 +6228 57470 0.8450 +6228 57532 0.7260 +6228 57647 0.8890 +6228 60386 0.4710 +6228 60488 0.8630 +6228 60558 0.8200 +6228 60559 0.4050 +6228 60678 0.9660 +6228 63875 0.9850 +6228 63931 0.8900 +6228 64146 0.8210 +6228 64216 0.5740 +6228 64221 0.5000 +6228 64374 0.8290 +6228 64432 0.8590 +6228 64745 0.4840 +6228 64928 0.5040 +6228 64951 0.5560 +6228 64960 0.9030 +6228 64963 0.9570 +6228 64965 0.9850 +6228 64968 0.9820 +6228 64969 0.9440 +6228 64975 0.9150 +6228 64976 0.8500 +6228 64978 0.5560 +6228 64979 0.9830 +6228 64981 0.8500 +6228 64983 0.9810 +6228 65003 0.8390 +6228 65005 0.9750 +6228 65008 0.8910 +6228 65080 0.6530 +6228 65083 0.9830 +6228 65121 0.6090 +6228 65122 0.6090 +6228 65993 0.6020 +6228 79039 0.4620 +6228 79048 0.8150 +6228 79050 0.9870 +6228 79571 0.7710 +6228 79590 0.8900 +6228 79631 0.8510 +6228 79668 0.6940 +6228 79697 0.4270 +6228 79728 0.4880 +6228 79954 0.9700 +6228 80146 0.5390 +6228 80222 0.4570 +6228 80270 0.5390 +6228 80349 0.4420 +6228 81890 0.4110 +6228 83732 0.8250 +6228 83743 0.4810 +6228 83939 0.6600 +6228 84128 0.9920 +6228 84135 0.9920 +6228 84172 0.8030 +6228 84285 0.8540 +6228 84340 0.6330 +6228 84545 0.8680 +6228 84851 0.5070 +6228 84864 0.4400 +6228 84916 0.9930 +6228 84946 0.9650 +6228 84993 0.4680 +6228 85377 0.6010 +6228 85395 0.8200 +6228 85476 0.8780 +6228 87178 0.6660 +6228 88745 0.4700 +6228 90313 0.6750 +6228 90624 0.4460 +6228 90701 0.4570 +6228 91574 0.6040 +6228 91582 0.8780 +6228 92196 0.8080 +6228 92399 0.9620 +6228 92856 0.9920 +6228 93107 0.4910 +6228 93517 0.5390 +6228 93550 0.5670 +6228 93974 0.4110 +6228 114781 0.4310 +6228 114987 0.9520 +6228 115098 0.8770 +6228 115752 0.4260 +6228 116541 0.6820 +6228 116832 0.9820 +6228 118460 0.4700 +6228 118487 0.4950 +6228 120892 0.5140 +6228 122481 0.4470 +6228 123283 0.4560 +6228 124454 0.7170 +6228 124995 0.6620 +6228 126402 0.9440 +6228 128061 0.8050 +6228 128308 0.5710 +6228 129563 0.4310 +6228 132243 0.6760 +6228 138428 0.4130 +6228 139596 0.4460 +6228 140032 0.9820 +6228 140801 0.9960 +6228 143244 0.8910 +6228 143630 0.4210 +6228 147011 0.4790 +6228 148022 0.4340 +6228 149478 0.4310 +6228 153443 0.5680 +6228 154288 0.4790 +6228 157310 0.5450 +6228 158067 0.4470 +6228 164153 0.5670 +6228 169522 0.4910 +6228 170850 0.4910 +6228 196074 0.4070 +6228 200916 0.9750 +6228 201595 0.4980 +6228 203427 0.4600 +6228 219927 0.9810 +6228 221264 0.4470 +6228 254268 0.8920 +6228 255308 0.8430 +6228 283518 0.4910 +6228 283600 0.4600 +6228 285855 0.9810 +6228 342538 0.5240 +6228 343068 0.6090 +6228 343070 0.6090 +6228 345051 0.5080 +6228 345630 0.8870 +6228 347487 0.9790 +6228 353376 0.4340 +6228 374659 0.8790 +6228 387129 0.9490 +6228 390999 0.6090 +6228 391002 0.6090 +6228 400735 0.6090 +6228 400736 0.6090 +6228 440560 0.6090 +6228 440561 0.6090 +6228 441873 0.6090 +6228 619279 0.4790 +6228 641776 0.7650 +6228 642987 0.4790 +6228 643909 0.7650 +6228 645051 0.7560 +6228 645073 0.7560 +6228 645359 0.6090 +6228 653619 0.6090 +6228 654364 0.5920 +6228 728524 0.7650 +6228 728689 0.8550 +6228 729396 0.7560 +6228 729422 0.7560 +6228 729428 0.7560 +6228 729431 0.7560 +6228 729442 0.7560 +6228 729447 0.7560 +6228 729528 0.6090 +6228 100008586 0.7560 +6228 100132399 0.7560 +6228 100287482 0.8210 +6228 100302736 0.4340 +6228 100505478 0.8420 +6228 100526842 0.9950 +6228 100529097 0.9370 +6228 100529239 0.9960 +6228 100996746 0.7650 +6228 101929983 0.6090 +6228 102724473 0.7560 +6228 105180390 0.7650 +6228 105180391 0.7650 +6228 114483834 0.6080 +6229 6230 0.9990 +6229 6231 0.9990 +6229 6232 0.9990 +6229 6233 0.9990 +6229 6234 0.9990 +6229 6235 0.9990 +6229 6238 0.5160 +6229 6414 0.8500 +6229 6426 0.5070 +6229 6499 0.4750 +6229 6627 0.4790 +6229 6633 0.4090 +6229 6635 0.8790 +6229 6726 0.8730 +6229 6727 0.8740 +6229 6728 0.8530 +6229 6729 0.8380 +6229 6730 0.8620 +6229 6741 0.4090 +6229 6924 0.4030 +6229 6949 0.4800 +6229 7007 0.4030 +6229 7157 0.5080 +6229 7178 0.9710 +6229 7264 0.5630 +6229 7311 0.9990 +6229 7314 0.7050 +6229 7316 0.6970 +6229 7450 0.4030 +6229 7455 0.4030 +6229 7458 0.5220 +6229 7494 0.8040 +6229 7866 0.7550 +6229 8266 0.7640 +6229 8562 0.9680 +6229 8602 0.9670 +6229 8615 0.4240 +6229 8634 0.6240 +6229 8638 0.6790 +6229 8650 0.4180 +6229 8661 0.9810 +6229 8662 0.9860 +6229 8663 0.9850 +6229 8664 0.9840 +6229 8665 0.9600 +6229 8666 0.9470 +6229 8667 0.9170 +6229 8668 0.9820 +6229 8669 0.9280 +6229 8721 0.9390 +6229 8780 0.5740 +6229 8857 0.4030 +6229 8894 0.9910 +6229 9045 0.9990 +6229 9086 0.8830 +6229 9132 0.5870 +6229 9136 0.9910 +6229 9141 0.8370 +6229 9188 0.5670 +6229 9253 0.4070 +6229 9277 0.9810 +6229 9312 0.5870 +6229 9343 0.8280 +6229 9349 0.9990 +6229 9533 0.6380 +6229 9584 0.4490 +6229 9636 0.8460 +6229 9652 0.4880 +6229 9669 0.9770 +6229 9724 0.9110 +6229 9732 0.9800 +6229 9750 0.4030 +6229 9775 0.7250 +6229 9789 0.4440 +6229 9790 0.9930 +6229 9858 0.8890 +6229 9908 0.4570 +6229 10085 0.4030 +6229 10146 0.4650 +6229 10171 0.9820 +6229 10199 0.9820 +6229 10209 0.9790 +6229 10213 0.4690 +6229 10236 0.4720 +6229 10289 0.8840 +6229 10399 0.9990 +6229 10412 0.9860 +6229 10436 0.9890 +6229 10438 0.4710 +6229 10473 0.9350 +6229 10480 0.9380 +6229 10492 0.6000 +6229 10514 0.4820 +6229 10526 0.4820 +6229 10527 0.5200 +6229 10528 0.9930 +6229 10537 0.6810 +6229 10557 0.9160 +6229 10574 0.7210 +6229 10575 0.5530 +6229 10576 0.5560 +6229 10607 0.9820 +6229 10664 0.4300 +6229 10666 0.4120 +6229 10694 0.5270 +6229 10742 0.4030 +6229 10767 0.8720 +6229 10813 0.9830 +6229 10885 0.9820 +6229 10952 0.9230 +6229 10969 0.5760 +6229 10985 0.8620 +6229 10988 0.4530 +6229 11047 0.5200 +6229 11056 0.4700 +6229 11097 0.4110 +6229 11103 0.9870 +6229 11222 0.9700 +6229 11224 0.9990 +6229 11340 0.4770 +6229 22927 0.8540 +6229 22929 0.5660 +6229 22948 0.5660 +6229 22984 0.9440 +6229 23016 0.5330 +6229 23054 0.6180 +6229 23148 0.6540 +6229 23160 0.9850 +6229 23204 0.9480 +6229 23212 0.6140 +6229 23223 0.8320 +6229 23288 0.4030 +6229 23404 0.4680 +6229 23478 0.4690 +6229 23480 0.8350 +6229 23506 0.4030 +6229 23517 0.5220 +6229 23521 0.9990 +6229 23523 0.4030 +6229 23640 0.8240 +6229 23708 0.5380 +6229 25873 0.9990 +6229 25879 0.9810 +6229 25926 0.8970 +6229 25983 0.9830 +6229 26135 0.9890 +6229 26156 0.8990 +6229 26251 0.5870 +6229 26354 0.5120 +6229 26574 0.9890 +6229 26986 0.7890 +6229 27012 0.6040 +6229 27020 0.4040 +6229 27042 0.4830 +6229 27292 0.9230 +6229 27335 0.9690 +6229 27340 0.9850 +6229 27341 0.9840 +6229 27430 0.5760 +6229 28972 0.4610 +6229 28985 0.8140 +6229 28987 0.9810 +6229 28991 0.5770 +6229 28998 0.9700 +6229 29088 0.6700 +6229 29093 0.9660 +6229 29927 0.8650 +6229 29978 0.6340 +6229 29979 0.6530 +6229 29998 0.4030 +6229 30836 0.9730 +6229 50487 0.4120 +6229 50613 0.6310 +6229 50814 0.5630 +6229 51010 0.4630 +6229 51013 0.5010 +6229 51065 0.9950 +6229 51069 0.9460 +6229 51073 0.9610 +6229 51077 0.9810 +6229 51081 0.9630 +6229 51096 0.9810 +6229 51106 0.4550 +6229 51116 0.8920 +6229 51118 0.9810 +6229 51119 0.7610 +6229 51121 0.9980 +6229 51149 0.9800 +6229 51154 0.9790 +6229 51187 0.8490 +6229 51202 0.5240 +6229 51232 0.4120 +6229 51319 0.9790 +6229 51372 0.4570 +6229 51386 0.9480 +6229 51406 0.8450 +6229 51504 0.8240 +6229 51574 0.4880 +6229 51602 0.9890 +6229 51720 0.4210 +6229 53918 0.8860 +6229 54464 0.4540 +6229 54505 0.7580 +6229 54512 0.4640 +6229 54543 0.5380 +6229 54555 0.4860 +6229 54596 0.4800 +6229 54948 0.8620 +6229 55127 0.9860 +6229 55173 0.9800 +6229 55196 0.4130 +6229 55226 0.9720 +6229 55272 0.9970 +6229 55308 0.5980 +6229 55316 0.9800 +6229 55505 0.5070 +6229 55601 0.4750 +6229 55607 0.5100 +6229 55629 0.5090 +6229 55646 0.8300 +6229 55651 0.8930 +6229 55720 0.9310 +6229 55781 0.9270 +6229 55802 0.5290 +6229 55813 0.9820 +6229 55854 0.7360 +6229 55893 0.4120 +6229 56479 0.5870 +6229 56648 0.9190 +6229 56731 0.4120 +6229 56893 0.6530 +6229 56902 0.9440 +6229 56915 0.4490 +6229 56965 0.6970 +6229 57050 0.9830 +6229 57470 0.8210 +6229 57606 0.5950 +6229 57647 0.8980 +6229 60386 0.4130 +6229 60559 0.4100 +6229 60678 0.9770 +6229 63931 0.9540 +6229 64216 0.4890 +6229 64221 0.5000 +6229 64374 0.8240 +6229 64960 0.9670 +6229 64963 0.9840 +6229 64969 0.9790 +6229 65003 0.9050 +6229 65008 0.9650 +6229 65083 0.9930 +6229 65121 0.6550 +6229 65122 0.6550 +6229 79048 0.8030 +6229 79050 0.9870 +6229 79567 0.4110 +6229 79571 0.6200 +6229 79590 0.9690 +6229 79631 0.8170 +6229 79668 0.6970 +6229 79954 0.9710 +6229 80146 0.5600 +6229 80270 0.5600 +6229 80349 0.4640 +6229 83732 0.8270 +6229 83939 0.6540 +6229 84085 0.4130 +6229 84128 0.9810 +6229 84135 0.9810 +6229 84285 0.8050 +6229 84365 0.4930 +6229 84916 0.9840 +6229 84946 0.9470 +6229 84993 0.6780 +6229 85377 0.6170 +6229 85395 0.8140 +6229 85476 0.8130 +6229 88745 0.5280 +6229 90121 0.6360 +6229 90701 0.4230 +6229 91408 0.4370 +6229 91582 0.8210 +6229 92196 0.8080 +6229 92856 0.9810 +6229 93107 0.5870 +6229 93517 0.5600 +6229 93550 0.6790 +6229 114987 0.9730 +6229 115098 0.8890 +6229 116832 0.9820 +6229 122060 0.4030 +6229 122622 0.4020 +6229 124454 0.8750 +6229 126402 0.9600 +6229 128061 0.8000 +6229 137994 0.4290 +6229 140032 0.9870 +6229 140801 0.9930 +6229 140876 0.4030 +6229 143244 0.9190 +6229 143630 0.6310 +6229 147011 0.4120 +6229 149041 0.5100 +6229 151887 0.4030 +6229 153443 0.4840 +6229 154288 0.4120 +6229 164153 0.6790 +6229 168667 0.4030 +6229 169522 0.5870 +6229 170850 0.5870 +6229 171568 0.5100 +6229 200916 0.9880 +6229 201595 0.4440 +6229 220001 0.4030 +6229 254268 0.9750 +6229 255308 0.8550 +6229 283310 0.4030 +6229 283518 0.5870 +6229 284254 0.4030 +6229 285855 0.9800 +6229 340990 0.4030 +6229 341640 0.4030 +6229 342538 0.6320 +6229 343068 0.6550 +6229 343070 0.6550 +6229 345630 0.8120 +6229 347487 0.9770 +6229 387129 0.9500 +6229 390999 0.6550 +6229 391002 0.6550 +6229 400735 0.6550 +6229 400736 0.6550 +6229 440560 0.6550 +6229 440561 0.6550 +6229 441873 0.6550 +6229 619279 0.4120 +6229 641776 0.8120 +6229 642987 0.4120 +6229 643909 0.8120 +6229 645051 0.7860 +6229 645073 0.7860 +6229 645359 0.6550 +6229 653619 0.6550 +6229 727897 0.4030 +6229 728524 0.8120 +6229 728689 0.8540 +6229 729396 0.7860 +6229 729422 0.7860 +6229 729428 0.7860 +6229 729431 0.7860 +6229 729442 0.7860 +6229 729447 0.7860 +6229 729528 0.6550 +6229 100008586 0.7860 +6229 100132399 0.7860 +6229 100287482 0.8890 +6229 100505478 0.9350 +6229 100507003 0.4030 +6229 100526842 0.9950 +6229 100529097 0.9680 +6229 100529239 0.9970 +6229 100996746 0.8120 +6229 101929983 0.6550 +6229 102724473 0.7860 +6229 105180390 0.8120 +6229 105180391 0.8120 +6230 6231 0.9990 +6230 6232 0.9990 +6230 6233 0.9990 +6230 6234 0.9990 +6230 6235 0.9990 +6230 6414 0.8540 +6230 6426 0.4380 +6230 6499 0.4790 +6230 6627 0.5050 +6230 6633 0.4710 +6230 6636 0.4090 +6230 6726 0.8540 +6230 6727 0.9120 +6230 6728 0.8530 +6230 6729 0.8180 +6230 6730 0.8610 +6230 6741 0.4550 +6230 7178 0.9290 +6230 7264 0.5690 +6230 7311 0.9990 +6230 7314 0.7080 +6230 7316 0.7140 +6230 7458 0.7290 +6230 7494 0.8010 +6230 7866 0.7510 +6230 8034 0.4210 +6230 8266 0.7710 +6230 8562 0.9740 +6230 8602 0.4880 +6230 8638 0.6860 +6230 8661 0.9840 +6230 8662 0.9810 +6230 8663 0.9810 +6230 8664 0.9840 +6230 8665 0.9560 +6230 8666 0.9500 +6230 8667 0.9440 +6230 8668 0.9640 +6230 8669 0.9280 +6230 8721 0.9230 +6230 8780 0.5060 +6230 8894 0.9890 +6230 9045 0.9990 +6230 9086 0.8760 +6230 9132 0.5530 +6230 9181 0.4130 +6230 9312 0.5530 +6230 9343 0.8190 +6230 9349 0.9990 +6230 9584 0.4790 +6230 9636 0.8450 +6230 9652 0.4500 +6230 9669 0.9820 +6230 9732 0.9770 +6230 9775 0.4240 +6230 9789 0.6680 +6230 9790 0.4830 +6230 9858 0.8560 +6230 10171 0.4670 +6230 10199 0.4440 +6230 10209 0.9870 +6230 10236 0.4750 +6230 10289 0.8940 +6230 10399 0.9990 +6230 10412 0.4640 +6230 10436 0.5850 +6230 10473 0.9150 +6230 10476 0.4610 +6230 10480 0.9140 +6230 10492 0.6810 +6230 10526 0.4820 +6230 10527 0.5180 +6230 10537 0.6760 +6230 10557 0.7510 +6230 10574 0.6550 +6230 10575 0.6120 +6230 10576 0.4880 +6230 10594 0.5920 +6230 10607 0.4370 +6230 10657 0.4370 +6230 10666 0.4120 +6230 10694 0.5010 +6230 10767 0.8630 +6230 10813 0.4420 +6230 10885 0.4370 +6230 10952 0.9110 +6230 10985 0.8640 +6230 11047 0.5380 +6230 11222 0.9240 +6230 11224 0.9990 +6230 22927 0.8700 +6230 22948 0.4730 +6230 23148 0.5660 +6230 23204 0.9380 +6230 23212 0.4300 +6230 23223 0.8050 +6230 23247 0.4500 +6230 23435 0.4500 +6230 23478 0.7330 +6230 23480 0.9170 +6230 23517 0.5150 +6230 23521 0.9990 +6230 23640 0.7870 +6230 23708 0.4990 +6230 25873 0.9990 +6230 26135 0.9890 +6230 26251 0.5530 +6230 26986 0.6220 +6230 27012 0.5530 +6230 27292 0.5870 +6230 27335 0.9730 +6230 27341 0.4670 +6230 27430 0.5810 +6230 28972 0.5190 +6230 28985 0.8210 +6230 28987 0.9760 +6230 28991 0.5790 +6230 28998 0.9510 +6230 29088 0.6830 +6230 29093 0.9400 +6230 29927 0.8350 +6230 29978 0.6320 +6230 29979 0.6910 +6230 29997 0.4050 +6230 50487 0.4120 +6230 50613 0.6290 +6230 50814 0.5670 +6230 51065 0.9960 +6230 51069 0.9420 +6230 51073 0.9440 +6230 51077 0.4290 +6230 51081 0.9500 +6230 51116 0.8730 +6230 51121 0.9950 +6230 51149 0.9770 +6230 51154 0.9550 +6230 51187 0.7920 +6230 51319 0.9740 +6230 51386 0.9640 +6230 51504 0.8470 +6230 51574 0.6100 +6230 51720 0.4200 +6230 53918 0.8720 +6230 54464 0.4560 +6230 54505 0.7940 +6230 54543 0.4860 +6230 54948 0.7920 +6230 55173 0.9790 +6230 55272 0.9730 +6230 55308 0.4800 +6230 55316 0.9790 +6230 55601 0.4820 +6230 55607 0.5160 +6230 55629 0.5340 +6230 55646 0.8080 +6230 55651 0.7880 +6230 55720 0.9040 +6230 55781 0.9230 +6230 55802 0.5300 +6230 55854 0.6370 +6230 55893 0.4170 +6230 55974 0.4510 +6230 56479 0.5530 +6230 56648 0.7640 +6230 56731 0.4320 +6230 56893 0.6500 +6230 56902 0.8910 +6230 57050 0.4440 +6230 57470 0.8180 +6230 60559 0.4030 +6230 60678 0.9740 +6230 63931 0.9460 +6230 64221 0.5000 +6230 64374 0.7870 +6230 64960 0.9460 +6230 64963 0.9740 +6230 64969 0.9560 +6230 65003 0.8620 +6230 65008 0.9430 +6230 65083 0.4480 +6230 65121 0.6770 +6230 65122 0.6770 +6230 79048 0.8230 +6230 79050 0.6410 +6230 79084 0.5090 +6230 79102 0.4390 +6230 79590 0.9540 +6230 79631 0.7920 +6230 80146 0.5660 +6230 80270 0.5660 +6230 80308 0.4320 +6230 80349 0.4450 +6230 83732 0.9090 +6230 83939 0.5940 +6230 84285 0.8100 +6230 84946 0.8810 +6230 84993 0.6660 +6230 85377 0.6300 +6230 85395 0.8030 +6230 85476 0.7920 +6230 90701 0.6650 +6230 91408 0.6750 +6230 92196 0.8080 +6230 92856 0.4480 +6230 93107 0.5530 +6230 93517 0.5660 +6230 93550 0.6750 +6230 114987 0.9570 +6230 115098 0.8800 +6230 116832 0.9820 +6230 124454 0.8160 +6230 126402 0.9470 +6230 137994 0.4290 +6230 140032 0.9790 +6230 140801 0.9970 +6230 143244 0.7640 +6230 143630 0.6290 +6230 147011 0.4120 +6230 149041 0.5100 +6230 154288 0.4120 +6230 164153 0.6750 +6230 169522 0.5530 +6230 170850 0.5530 +6230 200916 0.9730 +6230 201595 0.5740 +6230 254268 0.9730 +6230 255308 0.8030 +6230 283150 0.4130 +6230 283518 0.5530 +6230 285855 0.9800 +6230 342538 0.6800 +6230 343068 0.6770 +6230 343070 0.6770 +6230 347487 0.9780 +6230 387129 0.9430 +6230 390999 0.6770 +6230 391002 0.6770 +6230 400735 0.6770 +6230 400736 0.6770 +6230 440560 0.6770 +6230 440561 0.6770 +6230 441873 0.6770 +6230 619279 0.4120 +6230 641776 0.7750 +6230 642987 0.4120 +6230 643909 0.7750 +6230 645051 0.7560 +6230 645073 0.7600 +6230 645359 0.6770 +6230 653619 0.6770 +6230 728524 0.7750 +6230 728689 0.8500 +6230 729396 0.7560 +6230 729422 0.7560 +6230 729428 0.7560 +6230 729431 0.7560 +6230 729442 0.7560 +6230 729447 0.7560 +6230 729528 0.6770 +6230 100008586 0.7560 +6230 100132399 0.7560 +6230 100287482 0.8560 +6230 100505478 0.9320 +6230 100526842 0.9950 +6230 100529097 0.9560 +6230 100529239 0.9950 +6230 100996746 0.7750 +6230 101929983 0.6770 +6230 102724473 0.7560 +6230 105180390 0.7750 +6230 105180391 0.7750 +6231 6232 0.9990 +6231 6233 0.9990 +6231 6234 0.9990 +6231 6235 0.9990 +6231 6414 0.8640 +6231 6499 0.5040 +6231 6576 0.4440 +6231 6635 0.5510 +6231 6726 0.8430 +6231 6727 0.8370 +6231 6728 0.8560 +6231 6729 0.8300 +6231 6730 0.8540 +6231 6747 0.4060 +6231 6821 0.5060 +6231 6950 0.4670 +6231 7157 0.5510 +6231 7178 0.9140 +6231 7203 0.4190 +6231 7264 0.5470 +6231 7311 0.9990 +6231 7314 0.6650 +6231 7316 0.6800 +6231 7458 0.5990 +6231 7494 0.8660 +6231 7866 0.7810 +6231 8034 0.4250 +6231 8209 0.5760 +6231 8266 0.7490 +6231 8562 0.9610 +6231 8607 0.4510 +6231 8638 0.6590 +6231 8661 0.9950 +6231 8662 0.9850 +6231 8663 0.9870 +6231 8664 0.9820 +6231 8665 0.9510 +6231 8666 0.9570 +6231 8667 0.9530 +6231 8668 0.9830 +6231 8669 0.9190 +6231 8721 0.9220 +6231 8780 0.5220 +6231 8894 0.9920 +6231 9045 0.9990 +6231 9086 0.8620 +6231 9132 0.5580 +6231 9312 0.5580 +6231 9343 0.8230 +6231 9349 0.9990 +6231 9584 0.4860 +6231 9636 0.8410 +6231 9652 0.4290 +6231 9669 0.9780 +6231 9732 0.9730 +6231 9789 0.4110 +6231 9858 0.8770 +6231 10209 0.9770 +6231 10213 0.5600 +6231 10236 0.4970 +6231 10289 0.8480 +6231 10399 0.9990 +6231 10473 0.9250 +6231 10480 0.9480 +6231 10492 0.7710 +6231 10526 0.4880 +6231 10527 0.4980 +6231 10537 0.6590 +6231 10557 0.7370 +6231 10574 0.7000 +6231 10575 0.6900 +6231 10576 0.5550 +6231 10664 0.4470 +6231 10666 0.4120 +6231 10694 0.6540 +6231 10767 0.8940 +6231 10952 0.8860 +6231 10985 0.8980 +6231 11047 0.4180 +6231 11103 0.5250 +6231 11222 0.9480 +6231 11224 0.9990 +6231 22927 0.8590 +6231 22948 0.5620 +6231 23148 0.6160 +6231 23185 0.9010 +6231 23204 0.9340 +6231 23478 0.4330 +6231 23480 0.8320 +6231 23517 0.5380 +6231 23521 0.9990 +6231 23640 0.7590 +6231 23708 0.5220 +6231 25873 0.9990 +6231 25914 0.4180 +6231 26135 0.9900 +6231 26251 0.5580 +6231 26986 0.5230 +6231 27012 0.5580 +6231 27335 0.9760 +6231 27339 0.4020 +6231 27430 0.5550 +6231 28972 0.4800 +6231 28985 0.8300 +6231 28987 0.9200 +6231 28991 0.5770 +6231 28998 0.9580 +6231 29088 0.6660 +6231 29093 0.9380 +6231 29927 0.8230 +6231 29978 0.6150 +6231 29979 0.6320 +6231 50487 0.4120 +6231 50613 0.6090 +6231 50814 0.5440 +6231 51065 0.9940 +6231 51069 0.9410 +6231 51073 0.9500 +6231 51081 0.9460 +6231 51116 0.8830 +6231 51119 0.4400 +6231 51121 0.9970 +6231 51149 0.9790 +6231 51154 0.9610 +6231 51187 0.8080 +6231 51319 0.9630 +6231 51386 0.9460 +6231 51574 0.5740 +6231 51720 0.4160 +6231 53918 0.8710 +6231 54464 0.7070 +6231 54505 0.7910 +6231 54543 0.4080 +6231 54596 0.4900 +6231 54948 0.7880 +6231 55027 0.4060 +6231 55173 0.9630 +6231 55272 0.9780 +6231 55316 0.9640 +6231 55505 0.4510 +6231 55601 0.4780 +6231 55629 0.5190 +6231 55646 0.8180 +6231 55651 0.8000 +6231 55720 0.9230 +6231 55781 0.9340 +6231 55802 0.5190 +6231 55854 0.6600 +6231 55893 0.4120 +6231 56479 0.5580 +6231 56648 0.7830 +6231 56731 0.4120 +6231 56893 0.6230 +6231 56902 0.6000 +6231 57470 0.8200 +6231 57532 0.7240 +6231 60386 0.4260 +6231 60559 0.4050 +6231 60678 0.9770 +6231 63931 0.9490 +6231 64221 0.4990 +6231 64374 0.7600 +6231 64375 0.5150 +6231 64960 0.9550 +6231 64963 0.9790 +6231 64969 0.9790 +6231 65003 0.8750 +6231 65008 0.9320 +6231 65121 0.6520 +6231 65122 0.6520 +6231 79048 0.8170 +6231 79084 0.5110 +6231 79590 0.9610 +6231 79631 0.8230 +6231 80146 0.5430 +6231 80270 0.5430 +6231 80349 0.4390 +6231 83732 0.8740 +6231 83743 0.5150 +6231 83939 0.5590 +6231 84285 0.8400 +6231 84946 0.6020 +6231 84993 0.6320 +6231 85377 0.6350 +6231 85476 0.8120 +6231 90121 0.9990 +6231 90701 0.4050 +6231 91408 0.4250 +6231 92196 0.8080 +6231 93107 0.5580 +6231 93517 0.5430 +6231 93550 0.6590 +6231 94103 0.4590 +6231 114987 0.9760 +6231 115098 0.8660 +6231 116832 0.9790 +6231 123879 0.4140 +6231 124454 0.8030 +6231 126402 0.9400 +6231 137994 0.4290 +6231 140032 0.9810 +6231 140801 0.9950 +6231 143244 0.7810 +6231 143630 0.6090 +6231 147011 0.4120 +6231 154288 0.4120 +6231 164153 0.6590 +6231 169522 0.5580 +6231 170850 0.5580 +6231 200916 0.9580 +6231 201595 0.4290 +6231 203427 0.4250 +6231 254268 0.9590 +6231 255308 0.8120 +6231 283518 0.5580 +6231 283600 0.4250 +6231 285855 0.9790 +6231 342538 0.6360 +6231 343068 0.6520 +6231 343070 0.6520 +6231 345630 0.4720 +6231 347487 0.9790 +6231 387129 0.9440 +6231 390999 0.6520 +6231 391002 0.6520 +6231 400735 0.6520 +6231 400736 0.6520 +6231 440560 0.6520 +6231 440561 0.6520 +6231 441873 0.6520 +6231 619279 0.4120 +6231 641776 0.7140 +6231 642987 0.4120 +6231 643909 0.7140 +6231 645051 0.7830 +6231 645073 0.7830 +6231 645359 0.6520 +6231 653619 0.6520 +6231 728524 0.7140 +6231 728689 0.8880 +6231 729396 0.7830 +6231 729422 0.7830 +6231 729428 0.7830 +6231 729431 0.7830 +6231 729442 0.7830 +6231 729447 0.7830 +6231 729528 0.6520 +6231 100008586 0.7830 +6231 100132399 0.7830 +6231 100287482 0.8770 +6231 100505478 0.9300 +6231 100526842 0.9950 +6231 100529097 0.9520 +6231 100529239 0.9950 +6231 100996746 0.7140 +6231 101929983 0.6520 +6231 102724473 0.7830 +6231 105180390 0.7140 +6231 105180391 0.7140 +6232 6233 0.9990 +6232 6234 0.9990 +6232 6235 0.9990 +6232 6414 0.7160 +6232 6499 0.4220 +6232 6627 0.5200 +6232 6726 0.8560 +6232 6727 0.8750 +6232 6728 0.8480 +6232 6729 0.8460 +6232 6730 0.8710 +6232 6908 0.4420 +6232 7040 0.4620 +6232 7114 0.4980 +6232 7157 0.7390 +6232 7178 0.9310 +6232 7264 0.4740 +6232 7311 0.9990 +6232 7314 0.7290 +6232 7316 0.7080 +6232 7386 0.5090 +6232 7494 0.8080 +6232 7846 0.4280 +6232 7866 0.5170 +6232 8266 0.6840 +6232 8562 0.9240 +6232 8602 0.8590 +6232 8634 0.5110 +6232 8638 0.5710 +6232 8661 0.9760 +6232 8662 0.9600 +6232 8663 0.9850 +6232 8664 0.9840 +6232 8665 0.9360 +6232 8666 0.9290 +6232 8667 0.9250 +6232 8668 0.9560 +6232 8669 0.9130 +6232 8721 0.9100 +6232 8780 0.4360 +6232 8894 0.9830 +6232 9045 0.9990 +6232 9086 0.7880 +6232 9132 0.5040 +6232 9133 0.4400 +6232 9136 0.9700 +6232 9184 0.5340 +6232 9277 0.9710 +6232 9312 0.5040 +6232 9343 0.6020 +6232 9349 0.9990 +6232 9636 0.8000 +6232 9669 0.9660 +6232 9700 0.4990 +6232 9724 0.7310 +6232 9732 0.8690 +6232 9789 0.4560 +6232 9790 0.9790 +6232 9858 0.6840 +6232 10169 0.6950 +6232 10171 0.9730 +6232 10199 0.9710 +6232 10209 0.9780 +6232 10213 0.4340 +6232 10289 0.8110 +6232 10399 0.9990 +6232 10436 0.9770 +6232 10473 0.7330 +6232 10480 0.9180 +6232 10492 0.4440 +6232 10526 0.4200 +6232 10527 0.4200 +6232 10528 0.9780 +6232 10537 0.5770 +6232 10556 0.5920 +6232 10557 0.8320 +6232 10574 0.5040 +6232 10575 0.4690 +6232 10576 0.4210 +6232 10607 0.9690 +6232 10657 0.4040 +6232 10664 0.4520 +6232 10694 0.4090 +6232 10726 0.8410 +6232 10767 0.8570 +6232 10799 0.5240 +6232 10813 0.9550 +6232 10885 0.9690 +6232 10952 0.9170 +6232 10985 0.8010 +6232 10987 0.4060 +6232 10988 0.4770 +6232 11047 0.5040 +6232 11056 0.4630 +6232 11102 0.5040 +6232 11103 0.9750 +6232 11137 0.4370 +6232 11222 0.7410 +6232 11224 0.9990 +6232 11340 0.4150 +6232 22916 0.7080 +6232 22927 0.7510 +6232 22984 0.6680 +6232 23016 0.4160 +6232 23054 0.5140 +6232 23148 0.4300 +6232 23160 0.9730 +6232 23173 0.4130 +6232 23204 0.8960 +6232 23223 0.8170 +6232 23404 0.5020 +6232 23478 0.4260 +6232 23480 0.8490 +6232 23517 0.4720 +6232 23521 0.9990 +6232 23640 0.6270 +6232 23708 0.5260 +6232 25873 0.9990 +6232 25879 0.9760 +6232 25926 0.8810 +6232 25983 0.8800 +6232 25998 0.4300 +6232 26135 0.9740 +6232 26156 0.4870 +6232 26251 0.5040 +6232 26574 0.9660 +6232 26986 0.7040 +6232 27012 0.5040 +6232 27042 0.4130 +6232 27292 0.8920 +6232 27335 0.9500 +6232 27340 0.9710 +6232 27341 0.9770 +6232 27430 0.5200 +6232 27436 0.5270 +6232 28972 0.4230 +6232 28985 0.8130 +6232 28987 0.9430 +6232 28991 0.5260 +6232 28998 0.8850 +6232 29088 0.5790 +6232 29093 0.7990 +6232 29927 0.8270 +6232 29978 0.4930 +6232 29979 0.5110 +6232 30836 0.9550 +6232 50613 0.4890 +6232 50814 0.4740 +6232 51013 0.4310 +6232 51065 0.9200 +6232 51069 0.7620 +6232 51073 0.8590 +6232 51077 0.9720 +6232 51081 0.8580 +6232 51096 0.9710 +6232 51116 0.6930 +6232 51118 0.9720 +6232 51121 0.9890 +6232 51149 0.9020 +6232 51154 0.8590 +6232 51187 0.5940 +6232 51202 0.4480 +6232 51319 0.8510 +6232 51372 0.4510 +6232 51386 0.9260 +6232 51406 0.8300 +6232 51504 0.8310 +6232 51574 0.4350 +6232 51602 0.9760 +6232 51762 0.4210 +6232 53918 0.8580 +6232 54464 0.4350 +6232 54505 0.7680 +6232 54512 0.4140 +6232 54543 0.4880 +6232 54555 0.5070 +6232 54913 0.5260 +6232 54948 0.6340 +6232 55127 0.9780 +6232 55173 0.9170 +6232 55226 0.9580 +6232 55272 0.9890 +6232 55308 0.4330 +6232 55316 0.9140 +6232 55601 0.4120 +6232 55607 0.5180 +6232 55629 0.5220 +6232 55646 0.8170 +6232 55651 0.6730 +6232 55720 0.9430 +6232 55781 0.9470 +6232 55802 0.5670 +6232 55813 0.9750 +6232 55854 0.6460 +6232 56479 0.5040 +6232 56648 0.7750 +6232 56893 0.5200 +6232 56902 0.9600 +6232 57050 0.9740 +6232 57470 0.8060 +6232 57647 0.8950 +6232 60559 0.4340 +6232 60678 0.9500 +6232 63931 0.8070 +6232 64221 0.5030 +6232 64374 0.6270 +6232 64960 0.8520 +6232 64963 0.9240 +6232 64969 0.9090 +6232 65003 0.7160 +6232 65008 0.8210 +6232 65083 0.9760 +6232 65121 0.5700 +6232 65122 0.5700 +6232 79048 0.8170 +6232 79050 0.9790 +6232 79571 0.5180 +6232 79590 0.8550 +6232 79631 0.5580 +6232 79897 0.5100 +6232 79954 0.9550 +6232 80146 0.4790 +6232 80270 0.4710 +6232 83732 0.9070 +6232 83939 0.5960 +6232 84128 0.9690 +6232 84135 0.9700 +6232 84285 0.8150 +6232 84916 0.9730 +6232 84946 0.9520 +6232 84993 0.5430 +6232 85377 0.5320 +6232 85395 0.8030 +6232 85476 0.5580 +6232 88745 0.4690 +6232 90121 0.5430 +6232 90701 0.4090 +6232 91582 0.8080 +6232 92196 0.6180 +6232 92856 0.9700 +6232 93107 0.5040 +6232 93517 0.4710 +6232 93550 0.6040 +6232 114987 0.9140 +6232 115098 0.8830 +6232 116832 0.9450 +6232 120892 0.5240 +6232 124454 0.6850 +6232 126402 0.8400 +6232 128061 0.8120 +6232 140032 0.9260 +6232 140801 0.9810 +6232 143244 0.7660 +6232 143630 0.4890 +6232 164153 0.5710 +6232 169522 0.5040 +6232 170850 0.5040 +6232 200916 0.9540 +6232 254268 0.9050 +6232 255308 0.5770 +6232 283518 0.5040 +6232 285855 0.9310 +6232 343068 0.5700 +6232 343070 0.5700 +6232 345630 0.5940 +6232 347487 0.8180 +6232 387129 0.7690 +6232 390999 0.5700 +6232 391002 0.5700 +6232 400735 0.5700 +6232 400736 0.5700 +6232 440560 0.5700 +6232 440561 0.5700 +6232 441873 0.5700 +6232 641776 0.6540 +6232 643909 0.6540 +6232 645051 0.6500 +6232 645073 0.6500 +6232 645359 0.5700 +6232 653619 0.5700 +6232 728524 0.6540 +6232 728689 0.7510 +6232 729396 0.6500 +6232 729422 0.6500 +6232 729428 0.6500 +6232 729431 0.6500 +6232 729442 0.6500 +6232 729447 0.6500 +6232 729528 0.5700 +6232 100008586 0.6500 +6232 100132399 0.6500 +6232 100287482 0.6840 +6232 100505478 0.7380 +6232 100526842 0.9840 +6232 100529097 0.8380 +6232 100529239 0.9830 +6232 100996746 0.6540 +6232 101929983 0.5700 +6232 102724473 0.6500 +6232 105180390 0.6540 +6232 105180391 0.6540 +6233 6234 0.9990 +6233 6235 0.9990 +6233 6314 0.7390 +6233 6337 0.4110 +6233 6338 0.4110 +6233 6339 0.4110 +6233 6340 0.4110 +6233 6342 0.5040 +6233 6400 0.5070 +6233 6414 0.8240 +6233 6416 0.5090 +6233 6446 0.4210 +6233 6455 0.5120 +6233 6456 0.5100 +6233 6457 0.5100 +6233 6469 0.5100 +6233 6477 0.5250 +6233 6478 0.5380 +6233 6497 0.6360 +6233 6498 0.5070 +6233 6499 0.5350 +6233 6500 0.9680 +6233 6502 0.9130 +6233 6596 0.5440 +6233 6612 0.7630 +6233 6613 0.8200 +6233 6615 0.5260 +6233 6622 0.5600 +6233 6624 0.5250 +6233 6637 0.4130 +6233 6714 0.6890 +6233 6726 0.8300 +6233 6727 0.8520 +6233 6728 0.8320 +6233 6729 0.8390 +6233 6730 0.8180 +6233 6737 0.9590 +6233 6790 0.5250 +6233 6844 0.5140 +6233 6845 0.5290 +6233 6850 0.5450 +6233 6872 0.4220 +6233 6877 0.4820 +6233 6878 0.5620 +6233 6880 0.5140 +6233 6881 0.7780 +6233 6883 0.5590 +6233 6885 0.7760 +6233 6890 0.5250 +6233 6891 0.5250 +6233 6908 0.6060 +6233 6921 0.7910 +6233 6923 0.6490 +6233 7039 0.4990 +6233 7040 0.5560 +6233 7046 0.5570 +6233 7048 0.5470 +6233 7088 0.5090 +6233 7089 0.5090 +6233 7090 0.5000 +6233 7091 0.4990 +6233 7098 0.5340 +6233 7099 0.5490 +6233 7124 0.5930 +6233 7128 0.9770 +6233 7132 0.6570 +6233 7156 0.5110 +6233 7157 0.9710 +6233 7158 0.9620 +6233 7161 0.7520 +6233 7178 0.9460 +6233 7185 0.4880 +6233 7186 0.8500 +6233 7187 0.7640 +6233 7188 0.4190 +6233 7189 0.9890 +6233 7251 0.9960 +6233 7297 0.5310 +6233 7311 0.9990 +6233 7314 0.9980 +6233 7316 0.9980 +6233 7317 0.9990 +6233 7318 0.9820 +6233 7319 0.8870 +6233 7320 0.9470 +6233 7321 0.9930 +6233 7322 0.9960 +6233 7323 0.9290 +6233 7324 0.7770 +6233 7325 0.7570 +6233 7326 0.9820 +6233 7327 0.6540 +6233 7328 0.5700 +6233 7329 0.7820 +6233 7332 0.8690 +6233 7334 0.9990 +6233 7335 0.9900 +6233 7336 0.9970 +6233 7337 0.7170 +6233 7341 0.6910 +6233 7345 0.9910 +6233 7347 0.9890 +6233 7353 0.9170 +6233 7375 0.4420 +6233 7376 0.4060 +6233 7398 0.9560 +6233 7403 0.4290 +6233 7404 0.4290 +6233 7415 0.8870 +6233 7416 0.5780 +6233 7428 0.5060 +6233 7458 0.5430 +6233 7468 0.5670 +6233 7486 0.6690 +6233 7494 0.8060 +6233 7507 0.7450 +6233 7508 0.6860 +6233 7515 0.6260 +6233 7516 0.4170 +6233 7517 0.4610 +6233 7525 0.5320 +6233 7534 0.4100 +6233 7535 0.8150 +6233 7706 0.9700 +6233 7844 0.4990 +6233 7855 0.5260 +6233 7866 0.7580 +6233 7874 0.9870 +6233 7957 0.5280 +6233 7979 0.7300 +6233 8027 0.9930 +6233 8065 0.5530 +6233 8074 0.5090 +6233 8078 0.9860 +6233 8100 0.4840 +6233 8239 0.6470 +6233 8242 0.5180 +6233 8266 0.6720 +6233 8284 0.4020 +6233 8290 0.7740 +6233 8294 0.8880 +6233 8295 0.6910 +6233 8301 0.9490 +6233 8309 0.5240 +6233 8310 0.5240 +6233 8312 0.7680 +6233 8313 0.6420 +6233 8314 0.8140 +6233 8315 0.8410 +6233 8322 0.5260 +6233 8323 0.5260 +6233 8325 0.5260 +6233 8329 0.9840 +6233 8330 0.9340 +6233 8331 0.6050 +6233 8332 0.9340 +6233 8334 0.9590 +6233 8335 0.9380 +6233 8336 0.9340 +6233 8337 0.9740 +6233 8338 0.7540 +6233 8339 0.9140 +6233 8340 0.6150 +6233 8341 0.6070 +6233 8342 0.6070 +6233 8343 0.9140 +6233 8344 0.9140 +6233 8345 0.6570 +6233 8346 0.9140 +6233 8347 0.9590 +6233 8348 0.6170 +6233 8349 0.9850 +6233 8350 0.9400 +6233 8351 0.9400 +6233 8352 0.9400 +6233 8353 0.9400 +6233 8354 0.9400 +6233 8355 0.9400 +6233 8356 0.9520 +6233 8357 0.9400 +6233 8358 0.9400 +6233 8359 0.8880 +6233 8360 0.8880 +6233 8361 0.9670 +6233 8362 0.8880 +6233 8363 0.8880 +6233 8364 0.8930 +6233 8366 0.8890 +6233 8367 0.8880 +6233 8368 0.8890 +6233 8369 0.5020 +6233 8370 0.8880 +6233 8405 0.5500 +6233 8443 0.5070 +6233 8445 0.4190 +6233 8450 0.5470 +6233 8451 0.5660 +6233 8452 0.6790 +6233 8453 0.7360 +6233 8454 0.9770 +6233 8464 0.5100 +6233 8517 0.9360 +6233 8528 0.4990 +6233 8533 0.5110 +6233 8540 0.5290 +6233 8549 0.5440 +6233 8554 0.4350 +6233 8562 0.9300 +6233 8638 0.4890 +6233 8650 0.5040 +6233 8651 0.5090 +6233 8655 0.5440 +6233 8658 0.5360 +6233 8661 0.9710 +6233 8662 0.9710 +6233 8663 0.9650 +6233 8664 0.9580 +6233 8665 0.9190 +6233 8666 0.9180 +6233 8667 0.8910 +6233 8668 0.9530 +6233 8669 0.9250 +6233 8673 0.5250 +6233 8697 0.5330 +6233 8717 0.6080 +6233 8721 0.9480 +6233 8726 0.5440 +6233 8737 0.7580 +6233 8780 0.4950 +6233 8817 0.5180 +6233 8822 0.5090 +6233 8823 0.5170 +6233 8835 0.4030 +6233 8837 0.5210 +6233 8850 0.6250 +6233 8864 0.4990 +6233 8874 0.5140 +6233 8878 0.9890 +6233 8881 0.5310 +6233 8887 0.6370 +6233 8894 0.9880 +6233 8900 0.5190 +6233 8908 0.5200 +6233 8915 0.7080 +6233 8924 0.5380 +6233 8945 0.9040 +6233 8968 0.9400 +6233 8969 0.9340 +6233 8970 0.9590 +6233 8975 0.5910 +6233 8994 0.5040 +6233 9020 0.4060 +6233 9021 0.5280 +6233 9025 0.9170 +6233 9039 0.6530 +6233 9040 0.7550 +6233 9045 0.9990 +6233 9070 0.9640 +6233 9086 0.8670 +6233 9097 0.9930 +6233 9099 0.9710 +6233 9100 0.5710 +6233 9101 0.9680 +6233 9134 0.5230 +6233 9136 0.9100 +6233 9141 0.4090 +6233 9146 0.9780 +6233 9148 0.4350 +6233 9156 0.5410 +6233 9184 0.5360 +6233 9185 0.5090 +6233 9212 0.5560 +6233 9232 0.5370 +6233 9246 0.9950 +6233 9277 0.8290 +6233 9306 0.4030 +6233 9318 0.5310 +6233 9341 0.5180 +6233 9343 0.4930 +6233 9349 0.9990 +6233 9354 0.4140 +6233 9365 0.5350 +6233 9373 0.9360 +6233 9491 0.5310 +6233 9525 0.4160 +6233 9528 0.4120 +6233 9542 0.5100 +6233 9557 0.5440 +6233 9577 0.5350 +6233 9611 0.6910 +6233 9612 0.6880 +6233 9616 0.5990 +6233 9636 0.7920 +6233 9641 0.6720 +6233 9646 0.5600 +6233 9652 0.5140 +6233 9656 0.6650 +6233 9669 0.9740 +6233 9682 0.4990 +6233 9700 0.5160 +6233 9709 0.4280 +6233 9732 0.9740 +6233 9736 0.9610 +6233 9739 0.8060 +6233 9768 0.5110 +6233 9781 0.5430 +6233 9789 0.4130 +6233 9790 0.9030 +6233 9802 0.5400 +6233 9810 0.5810 +6233 9817 0.5210 +6233 9861 0.9650 +6233 9892 0.5110 +6233 9927 0.6910 +6233 9929 0.4940 +6233 9937 0.5070 +6233 9958 0.7690 +6233 9960 0.7180 +6233 9965 0.5090 +6233 9978 0.9730 +6233 10005 0.5160 +6233 10010 0.5110 +6233 10013 0.9600 +6233 10015 0.5370 +6233 10038 0.5090 +6233 10043 0.9410 +6233 10045 0.4590 +6233 10062 0.4120 +6233 10075 0.9340 +6233 10110 0.4300 +6233 10111 0.5030 +6233 10133 0.6290 +6233 10155 0.4500 +6233 10171 0.8970 +6233 10193 0.6820 +6233 10197 0.5440 +6233 10199 0.8990 +6233 10206 0.5180 +6233 10209 0.9780 +6233 10213 0.9870 +6233 10226 0.4580 +6233 10252 0.4990 +6233 10253 0.5010 +6233 10254 0.9760 +6233 10273 0.6960 +6233 10289 0.8760 +6233 10299 0.5050 +6233 10392 0.9000 +6233 10393 0.5450 +6233 10399 0.9990 +6233 10401 0.4350 +6233 10412 0.8550 +6233 10422 0.6320 +6233 10436 0.9110 +6233 10443 0.4210 +6233 10454 0.6880 +6233 10455 0.5570 +6233 10459 0.5170 +6233 10473 0.8600 +6233 10474 0.6980 +6233 10477 0.8070 +6233 10480 0.9100 +6233 10492 0.4120 +6233 10524 0.5360 +6233 10528 0.9160 +6233 10533 0.6070 +6233 10537 0.7060 +6233 10557 0.4770 +6233 10574 0.4060 +6233 10575 0.4020 +6233 10600 0.4250 +6233 10607 0.8960 +6233 10612 0.6030 +6233 10613 0.5210 +6233 10616 0.7400 +6233 10617 0.9030 +6233 10629 0.4890 +6233 10635 0.4200 +6233 10661 0.9590 +6233 10670 0.5040 +6233 10714 0.5510 +6233 10765 0.4020 +6233 10767 0.8820 +6233 10813 0.8080 +6233 10818 0.4990 +6233 10885 0.8970 +6233 10901 0.5330 +6233 10919 0.5800 +6233 10920 0.5860 +6233 10933 0.4110 +6233 10952 0.8750 +6233 10956 0.5310 +6233 10963 0.4240 +6233 10965 0.5230 +6233 10980 0.7070 +6233 10985 0.8950 +6233 10987 0.7830 +6233 11001 0.5000 +6233 11035 0.5910 +6233 11047 0.9980 +6233 11059 0.8440 +6233 11060 0.9010 +6233 11065 0.8060 +6233 11083 0.6340 +6233 11091 0.8820 +6233 11103 0.9200 +6233 11140 0.5350 +6233 11160 0.5140 +6233 11200 0.6540 +6233 11201 0.9690 +6233 11224 0.9990 +6233 11236 0.4490 +6233 11267 0.5320 +6233 11274 0.7890 +6233 11315 0.5780 +6233 11342 0.9010 +6233 22905 0.7360 +6233 22909 0.5000 +6233 22916 0.5970 +6233 22927 0.8400 +6233 22954 0.5760 +6233 22984 0.7540 +6233 22992 0.4940 +6233 23030 0.5160 +6233 23032 0.4290 +6233 23053 0.5250 +6233 23067 0.8040 +6233 23072 0.7420 +6233 23077 0.9080 +6233 23113 0.5430 +6233 23118 0.9810 +6233 23135 0.4320 +6233 23142 0.5460 +6233 23148 0.6130 +6233 23160 0.8110 +6233 23163 0.9320 +6233 23168 0.5150 +6233 23194 0.5680 +6233 23197 0.6120 +6233 23198 0.5410 +6233 23204 0.9350 +6233 23220 0.4990 +6233 23223 0.8080 +6233 23252 0.4810 +6233 23291 0.6600 +6233 23304 0.6000 +6233 23321 0.6030 +6233 23326 0.8810 +6233 23327 0.9810 +6233 23363 0.4260 +6233 23370 0.4990 +6233 23412 0.5080 +6233 23417 0.5000 +6233 23421 0.5090 +6233 23429 0.4890 +6233 23435 0.4670 +6233 23478 0.4620 +6233 23480 0.8720 +6233 23512 0.5270 +6233 23521 0.9990 +6233 23586 0.9830 +6233 23594 0.5000 +6233 23595 0.5180 +6233 23600 0.4990 +6233 23607 0.9000 +6233 23608 0.6330 +6233 23643 0.5160 +6233 23678 0.4080 +6233 23708 0.5440 +6233 25820 0.9460 +6233 25862 0.7190 +6233 25873 0.9990 +6233 25879 0.8250 +6233 25886 0.4420 +6233 25898 0.8130 +6233 25906 0.5070 +6233 25926 0.8120 +6233 25930 0.4310 +6233 25978 0.5000 +6233 25983 0.8050 +6233 25999 0.4980 +6233 26018 0.5240 +6233 26043 0.8490 +6233 26061 0.5160 +6233 26063 0.5320 +6233 26118 0.4320 +6233 26119 0.4990 +6233 26135 0.9880 +6233 26156 0.5580 +6233 26224 0.5680 +6233 26234 0.4990 +6233 26271 0.5240 +6233 26281 0.5140 +6233 26574 0.8010 +6233 26986 0.6600 +6233 26994 0.6750 +6233 27000 0.4360 +6233 27005 0.9640 +6233 27006 0.5150 +6233 27097 0.4920 +6233 27183 0.4200 +6233 27243 0.5420 +6233 27244 0.4280 +6233 27248 0.5380 +6233 27292 0.8320 +6233 27335 0.9630 +6233 27338 0.9700 +6233 27340 0.8060 +6233 27341 0.8960 +6233 27351 0.5190 +6233 28514 0.4640 +6233 28952 0.5060 +6233 28972 0.4370 +6233 28985 0.8200 +6233 28987 0.9590 +6233 28991 0.7940 +6233 28998 0.6030 +6233 29086 0.5270 +6233 29089 0.7920 +6233 29093 0.4020 +6233 29099 0.5440 +6233 29110 0.8280 +6233 29116 0.5540 +6233 29761 0.4350 +6233 29882 0.9540 +6233 29924 0.6300 +6233 29927 0.8340 +6233 29945 0.5280 +6233 29965 0.4750 +6233 29978 0.9880 +6233 29979 0.9800 +6233 29997 0.5630 +6233 30011 0.9790 +6233 30827 0.6340 +6233 30836 0.8200 +6233 50613 0.4430 +6233 50813 0.5480 +6233 50846 0.5020 +6233 50848 0.5160 +6233 50855 0.5050 +6233 51001 0.5040 +6233 51009 0.5190 +6233 51028 0.9820 +6233 51035 0.5990 +6233 51053 0.5450 +6233 51065 0.9920 +6233 51069 0.4990 +6233 51077 0.8990 +6233 51081 0.9230 +6233 51096 0.9000 +6233 51116 0.4010 +6233 51118 0.8050 +6233 51121 0.9940 +6233 51122 0.5070 +6233 51132 0.9100 +6233 51138 0.6040 +6233 51143 0.5040 +6233 51149 0.9730 +6233 51154 0.4920 +6233 51160 0.6750 +6233 51179 0.5740 +6233 51185 0.4540 +6233 51187 0.6080 +6233 51255 0.7060 +6233 51268 0.4990 +6233 51271 0.5420 +6233 51319 0.9540 +6233 51322 0.5390 +6233 51343 0.5570 +6233 51366 0.9320 +6233 51377 0.9060 +6233 51386 0.9250 +6233 51397 0.5170 +6233 51406 0.8070 +6233 51426 0.5480 +6233 51428 0.4050 +6233 51433 0.5720 +6233 51434 0.5040 +6233 51455 0.9550 +6233 51465 0.6810 +6233 51504 0.8360 +6233 51510 0.4260 +6233 51512 0.5070 +6233 51514 0.5290 +6233 51529 0.6050 +6233 51534 0.4220 +6233 51567 0.9010 +6233 51574 0.5250 +6233 51588 0.5380 +6233 51592 0.5850 +6233 51602 0.9150 +6233 51616 0.6880 +6233 51619 0.7810 +6233 51637 0.4530 +6233 51652 0.5010 +6233 51684 0.5100 +6233 51720 0.9700 +6233 53349 0.5630 +6233 53918 0.9110 +6233 54033 0.4400 +6233 54107 0.5330 +6233 54145 0.6590 +6233 54165 0.5560 +6233 54363 0.5110 +6233 54464 0.5330 +6233 54469 0.5300 +6233 54476 0.9100 +6233 54492 0.4350 +6233 54505 0.7440 +6233 54543 0.5580 +6233 54554 0.4320 +6233 54567 0.4590 +6233 54583 0.5120 +6233 54623 0.5070 +6233 54629 0.9070 +6233 54677 0.4990 +6233 54764 0.9390 +6233 54778 0.7890 +6233 54894 0.6700 +6233 54926 0.9820 +6233 54939 0.6180 +6233 54951 0.6040 +6233 55040 0.5900 +6233 55048 0.5340 +6233 55072 0.9760 +6233 55120 0.5190 +6233 55127 0.9070 +6233 55159 0.5080 +6233 55173 0.4590 +6233 55208 0.5460 +6233 55215 0.9780 +6233 55226 0.8090 +6233 55236 0.9940 +6233 55272 0.9240 +6233 55284 0.6910 +6233 55293 0.4070 +6233 55294 0.6090 +6233 55316 0.9540 +6233 55366 0.5170 +6233 55432 0.9880 +6233 55578 0.5120 +6233 55585 0.5630 +6233 55593 0.9510 +6233 55611 0.9750 +6233 55629 0.5130 +6233 55646 0.8090 +6233 55651 0.5450 +6233 55666 0.9900 +6233 55669 0.5900 +6233 55670 0.5040 +6233 55720 0.9480 +6233 55728 0.4380 +6233 55768 0.6230 +6233 55777 0.4600 +6233 55781 0.9230 +6233 55793 0.9070 +6233 55802 0.5180 +6233 55813 0.8050 +6233 55825 0.5290 +6233 55829 0.5030 +6233 55854 0.5280 +6233 55884 0.5040 +6233 55914 0.5180 +6233 56006 0.4290 +6233 56254 0.7040 +6233 56288 0.5080 +6233 56648 0.7500 +6233 56655 0.5210 +6233 56675 0.6550 +6233 56852 0.9650 +6233 56893 0.4440 +6233 56902 0.8760 +6233 56943 0.8990 +6233 56957 0.9620 +6233 56970 0.5240 +6233 57050 0.8230 +6233 57154 0.7530 +6233 57448 0.4100 +6233 57470 0.8340 +6233 57506 0.9320 +6233 57520 0.5060 +6233 57530 0.5030 +6233 57534 0.4380 +6233 57558 0.7980 +6233 57559 0.9670 +6233 57599 0.9550 +6233 57646 0.9320 +6233 57647 0.8070 +6233 57664 0.4080 +6233 57697 0.5490 +6233 57804 0.5040 +6233 58508 0.8090 +6233 58513 0.7630 +6233 59269 0.5290 +6233 59349 0.5060 +6233 59352 0.4990 +6233 60559 0.4080 +6233 60678 0.9260 +6233 63893 0.6590 +6233 63931 0.5100 +6233 64135 0.9310 +6233 64221 0.5500 +6233 64326 0.5540 +6233 64344 0.5100 +6233 64682 0.5040 +6233 64708 0.5840 +6233 64750 0.9930 +6233 64772 0.4340 +6233 64839 0.5680 +6233 64854 0.9130 +6233 64858 0.5100 +6233 64963 0.7650 +6233 64969 0.4330 +6233 65003 0.4740 +6233 65008 0.4270 +6233 65018 0.9500 +6233 65083 0.8970 +6233 65125 0.4150 +6233 65264 0.6260 +6233 78990 0.9350 +6233 79002 0.5910 +6233 79029 0.5210 +6233 79036 0.9560 +6233 79048 0.8150 +6233 79050 0.8140 +6233 79084 0.4290 +6233 79139 0.5280 +6233 79155 0.6610 +6233 79184 0.7970 +6233 79444 0.9440 +6233 79571 0.4010 +6233 79577 0.6740 +6233 79590 0.4310 +6233 79594 0.5570 +6233 79631 0.5360 +6233 79643 0.5030 +6233 79720 0.5280 +6233 79728 0.6570 +6233 79813 0.5670 +6233 79866 0.5000 +6233 79876 0.6150 +6233 79954 0.8130 +6233 80010 0.4990 +6233 80028 0.5380 +6233 80196 0.5000 +6233 80198 0.5320 +6233 80216 0.4990 +6233 80233 0.8160 +6233 80349 0.7580 +6233 80351 0.5360 +6233 80854 0.4310 +6233 81030 0.5090 +6233 81620 0.5760 +6233 81631 0.4630 +6233 81844 0.6070 +6233 81847 0.6380 +6233 81858 0.7390 +6233 83452 0.4800 +6233 83473 0.4630 +6233 83667 0.4360 +6233 83714 0.6550 +6233 83732 0.8110 +6233 83737 0.9890 +6233 83752 0.5170 +6233 83932 0.5030 +6233 83939 0.5500 +6233 83987 0.4600 +6233 83990 0.5170 +6233 84078 0.5060 +6233 84101 0.5490 +6233 84126 0.5180 +6233 84128 0.8050 +6233 84133 0.5540 +6233 84135 0.8720 +6233 84142 0.5030 +6233 84166 0.4990 +6233 84231 0.5700 +6233 84259 0.5580 +6233 84285 0.8170 +6233 84301 0.8750 +6233 84313 0.5220 +6233 84444 0.9600 +6233 84447 0.5440 +6233 84464 0.5370 +6233 84515 0.5100 +6233 84518 0.4920 +6233 84640 0.6530 +6233 84661 0.9640 +6233 84678 0.4800 +6233 84708 0.9010 +6233 84749 0.9920 +6233 84870 0.5080 +6233 84916 0.8050 +6233 84936 0.4750 +6233 84942 0.4130 +6233 84946 0.9150 +6233 84954 0.4490 +6233 84959 0.4380 +6233 84962 0.5010 +6233 84993 0.9280 +6233 85015 0.4030 +6233 85235 0.6560 +6233 85236 0.9600 +6233 85377 0.5040 +6233 85395 0.8010 +6233 85409 0.4220 +6233 89780 0.5150 +6233 89853 0.5070 +6233 90268 0.9150 +6233 90634 0.4120 +6233 90701 0.4360 +6233 91319 0.5170 +6233 91408 0.4030 +6233 91442 0.5390 +6233 91445 0.5680 +6233 91582 0.8030 +6233 91782 0.5070 +6233 92305 0.4990 +6233 92421 0.6300 +6233 92552 0.9450 +6233 92610 0.6320 +6233 92815 0.7630 +6233 92856 0.8980 +6233 92912 0.5290 +6233 93343 0.5100 +6233 93550 0.5020 +6233 93624 0.4180 +6233 112399 0.5390 +6233 113177 0.6020 +6233 113878 0.5630 +6233 114785 0.4600 +6233 114803 0.6810 +6233 114987 0.9500 +6233 115098 0.8830 +6233 116028 0.5130 +6233 116832 0.9750 +6233 118424 0.5820 +6233 119504 0.5300 +6233 120892 0.5400 +6233 121504 0.8880 +6233 121536 0.7980 +6233 122706 0.6410 +6233 122970 0.5230 +6233 123169 0.5030 +6233 124739 0.5430 +6233 126119 0.9470 +6233 126374 0.5010 +6233 126402 0.9200 +6233 126961 0.9430 +6233 127002 0.5450 +6233 128061 0.8070 +6233 128312 0.6070 +6233 128866 0.5130 +6233 130617 0.9160 +6233 133746 0.4400 +6233 137492 0.5070 +6233 137994 0.4290 +6233 139285 0.6500 +6233 140032 0.9790 +6233 140735 0.5220 +6233 140739 0.5950 +6233 140801 0.9960 +6233 142678 0.6660 +6233 143244 0.7350 +6233 143471 0.6680 +6233 143630 0.4030 +6233 144100 0.4080 +6233 144165 0.5160 +6233 146433 0.4990 +6233 146845 0.4320 +6233 146956 0.5600 +6233 147945 0.4990 +6233 148022 0.5130 +6233 148581 0.7870 +6233 149951 0.5320 +6233 150684 0.6500 +6233 152006 0.9250 +6233 152518 0.4670 +6233 152831 0.5350 +6233 155382 0.4990 +6233 158880 0.7870 +6233 161725 0.4220 +6233 161742 0.4990 +6233 164153 0.5140 +6233 165918 0.9750 +6233 166378 0.5260 +6233 170622 0.5750 +6233 171023 0.4420 +6233 171222 0.9170 +6233 196743 0.4990 +6233 197131 0.7620 +6233 197259 0.5320 +6233 197342 0.5500 +6233 199990 0.6310 +6233 200734 0.4990 +6233 200894 0.4130 +6233 200916 0.9320 +6233 201254 0.5410 +6233 201595 0.4340 +6233 219333 0.9090 +6233 219743 0.5260 +6233 220213 0.5090 +6233 220441 0.5390 +6233 221302 0.9480 +6233 221613 0.7090 +6233 221656 0.4140 +6233 221937 0.4280 +6233 222255 0.5450 +6233 246184 0.5180 +6233 254268 0.9510 +6233 255308 0.8030 +6233 255324 0.4990 +6233 255626 0.6090 +6233 257218 0.5560 +6233 257397 0.7670 +6233 282809 0.4320 +6233 283927 0.5020 +6233 284654 0.5190 +6233 285855 0.9750 +6233 317772 0.6090 +6233 333932 0.9450 +6233 339745 0.5500 +6233 340061 0.7500 +6233 340096 0.4330 +6233 340419 0.5080 +6233 342538 0.6220 +6233 343637 0.5080 +6233 345630 0.4730 +6233 347487 0.9370 +6233 353376 0.5130 +6233 353497 0.5070 +6233 373156 0.5680 +6233 374897 0.4560 +6233 378708 0.5020 +6233 378884 0.4470 +6233 387129 0.9210 +6233 387332 0.4430 +6233 387521 0.8080 +6233 387522 0.9800 +6233 389856 0.7870 +6233 390916 0.5050 +6233 391769 0.4330 +6233 399473 0.4990 +6233 400668 0.4740 +6233 401551 0.4320 +6233 404672 0.5560 +6233 440093 0.5030 +6233 440686 0.9480 +6233 440689 0.5980 +6233 548593 0.5020 +6233 554313 0.8880 +6233 641776 0.6860 +6233 642489 0.4310 +6233 643909 0.6860 +6233 645051 0.7350 +6233 645073 0.7350 +6233 653604 0.9490 +6233 723790 0.9340 +6233 728378 0.4830 +6233 728524 0.6860 +6233 728689 0.8170 +6233 729396 0.7350 +6233 729422 0.7350 +6233 729428 0.7350 +6233 729431 0.7350 +6233 729442 0.7350 +6233 729447 0.7350 +6233 100008586 0.7350 +6233 100132399 0.7350 +6233 100287482 0.4340 +6233 100287513 0.5490 +6233 100423062 0.4930 +6233 100526842 0.9940 +6233 100529097 0.9610 +6233 100529239 0.9950 +6233 100652824 0.5770 +6233 100996746 0.6860 +6233 102724473 0.7350 +6233 105180390 0.6860 +6233 105180391 0.6860 +6234 6235 0.9990 +6234 6414 0.8290 +6234 6499 0.4990 +6234 6635 0.7920 +6234 6637 0.4100 +6234 6726 0.8520 +6234 6727 0.8330 +6234 6728 0.8520 +6234 6729 0.8370 +6234 6730 0.8840 +6234 6741 0.4740 +6234 7007 0.4130 +6234 7150 0.4950 +6234 7178 0.9060 +6234 7264 0.5530 +6234 7311 0.9990 +6234 7314 0.7150 +6234 7316 0.6970 +6234 7450 0.4170 +6234 7455 0.4130 +6234 7458 0.6560 +6234 7494 0.8130 +6234 7866 0.7740 +6234 8034 0.4040 +6234 8209 0.5430 +6234 8260 0.4500 +6234 8266 0.7370 +6234 8361 0.4070 +6234 8382 0.4450 +6234 8562 0.9630 +6234 8602 0.9260 +6234 8607 0.4310 +6234 8634 0.6180 +6234 8638 0.6530 +6234 8661 0.9770 +6234 8662 0.9810 +6234 8663 0.9790 +6234 8664 0.9880 +6234 8665 0.9350 +6234 8666 0.9570 +6234 8667 0.9400 +6234 8668 0.9630 +6234 8669 0.9200 +6234 8721 0.9330 +6234 8780 0.4930 +6234 8857 0.4130 +6234 8894 0.9860 +6234 9045 0.9990 +6234 9086 0.8670 +6234 9132 0.5990 +6234 9136 0.9820 +6234 9141 0.8480 +6234 9277 0.9820 +6234 9312 0.5990 +6234 9343 0.9360 +6234 9349 0.9990 +6234 9528 0.4050 +6234 9533 0.4460 +6234 9584 0.4560 +6234 9636 0.8340 +6234 9652 0.4630 +6234 9669 0.9820 +6234 9724 0.8530 +6234 9732 0.9610 +6234 9750 0.4130 +6234 9789 0.5010 +6234 9790 0.9930 +6234 9858 0.9020 +6234 9861 0.4590 +6234 10085 0.4130 +6234 10171 0.9820 +6234 10199 0.9930 +6234 10201 0.4500 +6234 10209 0.9810 +6234 10236 0.5820 +6234 10289 0.8810 +6234 10399 0.9990 +6234 10412 0.9880 +6234 10436 0.9910 +6234 10438 0.4290 +6234 10473 0.9280 +6234 10480 0.9090 +6234 10492 0.6690 +6234 10526 0.4670 +6234 10527 0.4710 +6234 10528 0.9850 +6234 10537 0.7070 +6234 10557 0.9220 +6234 10574 0.5350 +6234 10575 0.4990 +6234 10576 0.4640 +6234 10607 0.9800 +6234 10657 0.4270 +6234 10666 0.4280 +6234 10694 0.4600 +6234 10742 0.4130 +6234 10767 0.8890 +6234 10813 0.9740 +6234 10885 0.9810 +6234 10952 0.9080 +6234 10985 0.8610 +6234 10988 0.4390 +6234 11047 0.4350 +6234 11056 0.4080 +6234 11097 0.4230 +6234 11103 0.9850 +6234 11222 0.9560 +6234 11224 0.9990 +6234 11340 0.5300 +6234 22927 0.8560 +6234 22948 0.4490 +6234 22984 0.9110 +6234 23016 0.7810 +6234 23054 0.7500 +6234 23148 0.5300 +6234 23160 0.9830 +6234 23185 0.9030 +6234 23204 0.9590 +6234 23223 0.8390 +6234 23288 0.4130 +6234 23404 0.5030 +6234 23478 0.4110 +6234 23480 0.8570 +6234 23506 0.4130 +6234 23517 0.4800 +6234 23521 0.9990 +6234 23523 0.4130 +6234 23640 0.7830 +6234 23708 0.4990 +6234 25789 0.4010 +6234 25804 0.4500 +6234 25873 0.9990 +6234 25879 0.9810 +6234 25926 0.8820 +6234 25983 0.9720 +6234 26135 0.9860 +6234 26156 0.8770 +6234 26251 0.5990 +6234 26523 0.4090 +6234 26574 0.9880 +6234 26986 0.8740 +6234 27012 0.5990 +6234 27020 0.4150 +6234 27042 0.4380 +6234 27292 0.8870 +6234 27316 0.4940 +6234 27335 0.9700 +6234 27340 0.9810 +6234 27341 0.9830 +6234 27430 0.5690 +6234 28972 0.4380 +6234 28985 0.8280 +6234 28987 0.9890 +6234 28991 0.5890 +6234 28998 0.9610 +6234 29088 0.6890 +6234 29093 0.9470 +6234 29922 0.4450 +6234 29927 0.8310 +6234 29978 0.6040 +6234 29979 0.6390 +6234 29998 0.4130 +6234 30836 0.9700 +6234 50487 0.4280 +6234 50613 0.6010 +6234 50814 0.5590 +6234 51010 0.4760 +6234 51013 0.5160 +6234 51065 0.9950 +6234 51069 0.9390 +6234 51073 0.9340 +6234 51077 0.9840 +6234 51081 0.9610 +6234 51096 0.9820 +6234 51116 0.9050 +6234 51118 0.9820 +6234 51119 0.7170 +6234 51121 0.9960 +6234 51149 0.9770 +6234 51154 0.9750 +6234 51187 0.6260 +6234 51202 0.4380 +6234 51232 0.4130 +6234 51314 0.4570 +6234 51319 0.9740 +6234 51386 0.9370 +6234 51406 0.8140 +6234 51504 0.8500 +6234 51574 0.6170 +6234 51602 0.9930 +6234 51720 0.4380 +6234 53918 0.8820 +6234 54464 0.7010 +6234 54505 0.7680 +6234 54512 0.5160 +6234 54517 0.5460 +6234 54543 0.5410 +6234 54555 0.4410 +6234 54939 0.4860 +6234 54948 0.8040 +6234 55127 0.9840 +6234 55173 0.9790 +6234 55226 0.9750 +6234 55272 0.9970 +6234 55316 0.9720 +6234 55505 0.5410 +6234 55601 0.4570 +6234 55607 0.4300 +6234 55629 0.5210 +6234 55646 0.8200 +6234 55651 0.8760 +6234 55720 0.9130 +6234 55781 0.9290 +6234 55802 0.6660 +6234 55813 0.9810 +6234 55854 0.6770 +6234 55893 0.4300 +6234 56257 0.4720 +6234 56479 0.5990 +6234 56648 0.8750 +6234 56731 0.4380 +6234 56893 0.6260 +6234 56902 0.9790 +6234 56915 0.4710 +6234 56965 0.6970 +6234 57050 0.9820 +6234 57470 0.8290 +6234 57532 0.7330 +6234 57606 0.4180 +6234 57647 0.8930 +6234 57819 0.4350 +6234 60386 0.4050 +6234 60528 0.4990 +6234 60559 0.4010 +6234 60678 0.9790 +6234 63931 0.9610 +6234 64221 0.5010 +6234 64374 0.7810 +6234 64960 0.9420 +6234 64963 0.9810 +6234 64969 0.9770 +6234 65003 0.8920 +6234 65008 0.9560 +6234 65083 0.9840 +6234 65121 0.6790 +6234 65122 0.6790 +6234 65993 0.5580 +6234 79048 0.8010 +6234 79050 0.9860 +6234 79567 0.4210 +6234 79571 0.7540 +6234 79590 0.9690 +6234 79631 0.9250 +6234 79668 0.6970 +6234 79954 0.9700 +6234 80146 0.5500 +6234 80153 0.8230 +6234 80218 0.4430 +6234 80270 0.5500 +6234 80349 0.4790 +6234 81608 0.4040 +6234 83732 0.9050 +6234 83939 0.5520 +6234 84085 0.4240 +6234 84128 0.9830 +6234 84135 0.9830 +6234 84285 0.8090 +6234 84916 0.9840 +6234 84946 0.9240 +6234 84993 0.6530 +6234 85377 0.5810 +6234 85395 0.8040 +6234 85476 0.9250 +6234 88745 0.4010 +6234 90121 0.6610 +6234 90701 0.4120 +6234 91408 0.4180 +6234 91582 0.8110 +6234 92196 0.8080 +6234 92856 0.9810 +6234 93107 0.5990 +6234 93517 0.5500 +6234 93550 0.6530 +6234 114987 0.9630 +6234 115098 0.8910 +6234 116832 0.9810 +6234 122060 0.4130 +6234 124454 0.8090 +6234 126402 0.9600 +6234 128061 0.8000 +6234 140032 0.9790 +6234 140801 0.9910 +6234 140876 0.4130 +6234 143244 0.8750 +6234 143630 0.6010 +6234 147011 0.4280 +6234 151887 0.4300 +6234 151987 0.4400 +6234 154288 0.4280 +6234 164153 0.6670 +6234 168667 0.4130 +6234 169522 0.5990 +6234 170850 0.5990 +6234 200916 0.9660 +6234 201595 0.4290 +6234 203427 0.4040 +6234 220001 0.4130 +6234 220032 0.4260 +6234 220988 0.4110 +6234 254268 0.9640 +6234 255308 0.8290 +6234 256949 0.4380 +6234 283310 0.4130 +6234 283518 0.5990 +6234 283600 0.4040 +6234 284254 0.4130 +6234 285855 0.9790 +6234 340990 0.4130 +6234 341640 0.4130 +6234 342538 0.5970 +6234 343068 0.6790 +6234 343070 0.6790 +6234 345630 0.7910 +6234 347487 0.9770 +6234 387129 0.9460 +6234 387332 0.7880 +6234 390999 0.6790 +6234 391002 0.6790 +6234 400735 0.6790 +6234 400736 0.6790 +6234 440560 0.6790 +6234 440561 0.6790 +6234 441873 0.6790 +6234 619279 0.4280 +6234 641776 0.8260 +6234 642489 0.4420 +6234 642987 0.4350 +6234 643909 0.8260 +6234 645051 0.7850 +6234 645073 0.7850 +6234 645359 0.6790 +6234 653619 0.6790 +6234 654364 0.4750 +6234 727897 0.4140 +6234 728524 0.8260 +6234 728689 0.8390 +6234 729396 0.7850 +6234 729422 0.7850 +6234 729428 0.7850 +6234 729431 0.7850 +6234 729442 0.7850 +6234 729447 0.7850 +6234 729528 0.6790 +6234 100008586 0.7850 +6234 100132399 0.7850 +6234 100287482 0.9020 +6234 100505478 0.9360 +6234 100507003 0.4130 +6234 100526842 0.9950 +6234 100529097 0.9630 +6234 100529239 0.9950 +6234 100996746 0.8260 +6234 101929983 0.6790 +6234 102724473 0.7850 +6234 105180390 0.8260 +6234 105180391 0.8260 +6235 6414 0.6240 +6235 6499 0.4330 +6235 6627 0.4270 +6235 6635 0.4080 +6235 6648 0.5510 +6235 6687 0.5070 +6235 6726 0.8480 +6235 6727 0.8830 +6235 6728 0.8810 +6235 6729 0.9150 +6235 6730 0.8810 +6235 6897 0.5370 +6235 7178 0.9120 +6235 7264 0.5220 +6235 7284 0.9560 +6235 7311 0.9990 +6235 7314 0.6220 +6235 7316 0.5980 +6235 7372 0.4570 +6235 7388 0.6160 +6235 7403 0.4580 +6235 7404 0.4580 +6235 7458 0.5610 +6235 7494 0.8000 +6235 7818 0.8010 +6235 7866 0.7500 +6235 8192 0.4170 +6235 8242 0.4220 +6235 8266 0.7130 +6235 8284 0.4180 +6235 8382 0.4540 +6235 8562 0.9120 +6235 8624 0.7290 +6235 8638 0.5440 +6235 8661 0.9630 +6235 8662 0.9650 +6235 8663 0.9470 +6235 8664 0.9530 +6235 8665 0.9250 +6235 8666 0.9320 +6235 8667 0.9520 +6235 8668 0.9430 +6235 8669 0.9020 +6235 8721 0.9270 +6235 8780 0.4540 +6235 8894 0.9770 +6235 9045 0.9990 +6235 9086 0.9370 +6235 9132 0.5010 +6235 9312 0.5010 +6235 9343 0.8190 +6235 9349 0.9990 +6235 9533 0.8570 +6235 9553 0.9640 +6235 9617 0.4940 +6235 9636 0.7970 +6235 9652 0.4290 +6235 9669 0.9830 +6235 9732 0.8600 +6235 9789 0.4050 +6235 9801 0.9500 +6235 9858 0.7690 +6235 10061 0.5130 +6235 10102 0.7030 +6235 10135 0.5010 +6235 10169 0.4190 +6235 10201 0.4570 +6235 10209 0.9660 +6235 10236 0.4130 +6235 10240 0.5000 +6235 10289 0.8040 +6235 10399 0.9990 +6235 10412 0.8310 +6235 10473 0.8080 +6235 10480 0.8900 +6235 10492 0.5280 +6235 10537 0.5440 +6235 10557 0.6810 +6235 10574 0.5070 +6235 10575 0.4510 +6235 10576 0.4550 +6235 10632 0.4860 +6235 10657 0.4040 +6235 10730 0.5110 +6235 10765 0.4180 +6235 10767 0.8740 +6235 10939 0.4980 +6235 10952 0.8870 +6235 10964 0.4020 +6235 10985 0.4620 +6235 10988 0.6620 +6235 11047 0.5000 +6235 11128 0.7180 +6235 11222 0.8410 +6235 11224 0.9990 +6235 22927 0.8060 +6235 22948 0.4530 +6235 22984 0.9020 +6235 23135 0.4590 +6235 23173 0.6620 +6235 23185 0.9040 +6235 23204 0.9490 +6235 23252 0.6550 +6235 23405 0.4960 +6235 23478 0.4870 +6235 23480 0.8520 +6235 23521 0.9990 +6235 23523 0.4100 +6235 23640 0.7770 +6235 23708 0.4990 +6235 23732 0.4500 +6235 25873 0.9990 +6235 25885 0.7220 +6235 26135 0.9870 +6235 26251 0.5010 +6235 26271 0.4940 +6235 26289 0.4210 +6235 26517 0.4100 +6235 26589 0.8130 +6235 26986 0.6280 +6235 27012 0.5010 +6235 27292 0.5330 +6235 27335 0.9390 +6235 27430 0.5320 +6235 28972 0.4820 +6235 28985 0.8120 +6235 28987 0.9700 +6235 28991 0.4830 +6235 28998 0.8660 +6235 29088 0.5870 +6235 29093 0.8560 +6235 29102 0.4900 +6235 29922 0.4520 +6235 29927 0.9700 +6235 29978 0.4590 +6235 29979 0.4880 +6235 50613 0.4540 +6235 50808 0.4340 +6235 50814 0.5120 +6235 51021 0.9660 +6235 51023 0.6740 +6235 51065 0.9930 +6235 51069 0.8370 +6235 51073 0.8450 +6235 51081 0.8620 +6235 51106 0.4810 +6235 51116 0.7750 +6235 51119 0.6020 +6235 51121 0.9960 +6235 51149 0.9320 +6235 51154 0.9040 +6235 51187 0.6290 +6235 51258 0.4950 +6235 51263 0.6370 +6235 51264 0.9480 +6235 51314 0.4600 +6235 51319 0.9280 +6235 51372 0.4830 +6235 51373 0.4220 +6235 51386 0.9230 +6235 51557 0.4180 +6235 51574 0.5100 +6235 51650 0.6390 +6235 51727 0.4230 +6235 53918 0.8890 +6235 54148 0.6620 +6235 54464 0.4460 +6235 54505 0.7450 +6235 54516 0.4980 +6235 54543 0.6940 +6235 54948 0.8040 +6235 54965 0.5190 +6235 55052 0.9600 +6235 55143 0.4810 +6235 55168 0.6610 +6235 55173 0.8890 +6235 55176 0.8550 +6235 55272 0.8960 +6235 55308 0.5430 +6235 55324 0.5260 +6235 55505 0.6690 +6235 55591 0.6510 +6235 55607 0.5080 +6235 55629 0.5290 +6235 55646 0.8120 +6235 55651 0.7270 +6235 55703 0.8230 +6235 55720 0.9220 +6235 55781 0.9430 +6235 55802 0.5330 +6235 55854 0.6820 +6235 55871 0.4590 +6235 56479 0.5010 +6235 56648 0.7540 +6235 56893 0.4920 +6235 56902 0.9230 +6235 56945 0.4710 +6235 56965 0.6040 +6235 57129 0.8110 +6235 57136 0.4530 +6235 57470 0.8380 +6235 57532 0.7320 +6235 60488 0.8130 +6235 60558 0.6550 +6235 60559 0.4040 +6235 60678 0.9480 +6235 63875 0.9710 +6235 64146 0.7590 +6235 64216 0.4850 +6235 64221 0.4990 +6235 64374 0.7760 +6235 64432 0.6960 +6235 64951 0.5780 +6235 64960 0.8290 +6235 64963 0.9350 +6235 64965 0.9590 +6235 64968 0.9690 +6235 64969 0.8920 +6235 64975 0.8460 +6235 64976 0.8230 +6235 64978 0.5310 +6235 64979 0.9720 +6235 64981 0.8200 +6235 64983 0.9560 +6235 65003 0.8010 +6235 65005 0.9640 +6235 65008 0.8730 +6235 65080 0.4970 +6235 65121 0.5800 +6235 65122 0.5800 +6235 65993 0.4870 +6235 79048 0.8050 +6235 79590 0.8370 +6235 79631 0.8040 +6235 79668 0.6040 +6235 80146 0.5110 +6235 80222 0.5200 +6235 80270 0.5110 +6235 80349 0.4360 +6235 81892 0.4140 +6235 83732 0.8200 +6235 83939 0.6070 +6235 84172 0.8210 +6235 84285 0.8120 +6235 84340 0.5660 +6235 84545 0.8550 +6235 84851 0.5080 +6235 84946 0.9350 +6235 84993 0.5310 +6235 85377 0.4700 +6235 85476 0.8140 +6235 87178 0.6380 +6235 90121 0.5920 +6235 90313 0.5260 +6235 90624 0.4220 +6235 90701 0.4210 +6235 91574 0.4990 +6235 92196 0.8080 +6235 92399 0.8660 +6235 93107 0.5120 +6235 93517 0.5110 +6235 93550 0.5440 +6235 114781 0.4020 +6235 114987 0.7920 +6235 115098 0.8890 +6235 116541 0.5510 +6235 116832 0.9840 +6235 118487 0.5280 +6235 122481 0.4210 +6235 123283 0.5190 +6235 124454 0.7130 +6235 124995 0.5670 +6235 126402 0.8580 +6235 140032 0.9700 +6235 140801 0.9930 +6235 143244 0.7540 +6235 143630 0.4540 +6235 149478 0.4020 +6235 150472 0.5600 +6235 153443 0.4730 +6235 157310 0.5200 +6235 158067 0.4210 +6235 164153 0.5440 +6235 169522 0.5010 +6235 170622 0.4480 +6235 170850 0.5010 +6235 200916 0.9710 +6235 219927 0.9700 +6235 220869 0.4550 +6235 221264 0.4210 +6235 254268 0.8350 +6235 255308 0.5890 +6235 283518 0.5010 +6235 283600 0.4350 +6235 285855 0.9780 +6235 343068 0.5800 +6235 343070 0.5800 +6235 345051 0.4500 +6235 347487 0.9070 +6235 374659 0.8050 +6235 387129 0.8510 +6235 390999 0.5800 +6235 391002 0.5800 +6235 400735 0.5800 +6235 400736 0.5800 +6235 440560 0.5800 +6235 440561 0.5800 +6235 440567 0.5500 +6235 441873 0.5800 +6235 445571 0.4590 +6235 641776 0.6890 +6235 643909 0.6890 +6235 644019 0.4550 +6235 645051 0.6440 +6235 645073 0.6440 +6235 645359 0.5800 +6235 653619 0.5800 +6235 654364 0.5380 +6235 728524 0.6890 +6235 728689 0.6400 +6235 729396 0.6440 +6235 729422 0.6440 +6235 729428 0.6440 +6235 729431 0.6440 +6235 729442 0.6440 +6235 729447 0.6440 +6235 729528 0.5800 +6235 100008586 0.6440 +6235 100132399 0.6440 +6235 100287482 0.7690 +6235 100505478 0.8050 +6235 100526842 0.9950 +6235 100529097 0.9430 +6235 100529239 0.9970 +6235 100996746 0.6890 +6235 101929983 0.5800 +6235 102724473 0.6440 +6235 105180390 0.6890 +6235 105180391 0.6890 +6235 114483834 0.5470 +6237 6405 0.4170 +6237 6453 0.5790 +6237 6654 0.9590 +6237 6655 0.9550 +6237 6714 0.5170 +6237 7074 0.9310 +6237 7094 0.4020 +6237 7410 0.4110 +6237 7414 0.5490 +6237 7869 0.4010 +6237 8036 0.9640 +6237 8153 0.5520 +6237 8216 0.5290 +6237 8315 0.9010 +6237 8412 0.4280 +6237 8437 0.7480 +6237 8503 0.9150 +6237 8682 0.6650 +6237 8826 0.4430 +6237 8829 0.6020 +6237 8831 0.7990 +6237 9459 0.9120 +6237 9462 0.7220 +6237 9564 0.5850 +6237 9610 0.9440 +6237 9693 0.9230 +6237 9723 0.5160 +6237 9771 0.9200 +6237 9826 0.4050 +6237 9901 0.4380 +6237 9922 0.5510 +6237 10125 0.8120 +6237 10154 0.5210 +6237 10156 0.7370 +6237 10235 0.7930 +6237 10371 0.6970 +6237 10411 0.9280 +6237 10507 0.9220 +6237 10681 0.6960 +6237 10755 0.4260 +6237 10928 0.9700 +6237 11069 0.9360 +6237 11186 0.9170 +6237 22800 0.9050 +6237 22821 0.8550 +6237 22944 0.6100 +6237 23129 0.5630 +6237 23179 0.9310 +6237 23365 0.9340 +6237 23380 0.4340 +6237 23654 0.9690 +6237 25780 0.8120 +6237 26031 0.9250 +6237 27289 0.9440 +6237 50618 0.5910 +6237 50944 0.5230 +6237 51196 0.9300 +6237 51764 0.6500 +6237 54331 0.6790 +6237 54922 0.6890 +6237 55558 0.7430 +6237 55970 0.7790 +6237 56980 0.4220 +6237 57139 0.5770 +6237 57556 0.5780 +6237 59341 0.4330 +6237 59345 0.6920 +6237 60385 0.7070 +6237 64926 0.7480 +6237 79091 0.6100 +6237 83593 0.9710 +6237 91147 0.4210 +6237 91584 0.7350 +6237 94235 0.6590 +6237 114881 0.5900 +6237 115727 0.7300 +6237 144568 0.5530 +6237 161742 0.4590 +6237 100271927 0.6700 +6238 6464 0.5300 +6238 6625 0.4030 +6238 6733 0.4190 +6238 6774 0.5340 +6238 6801 0.5390 +6238 7112 0.5790 +6238 7170 0.6390 +6238 7171 0.6600 +6238 7175 0.5550 +6238 7414 0.5270 +6238 7922 0.4100 +6238 8361 0.5510 +6238 8496 0.5830 +6238 8878 0.5750 +6238 9451 0.5610 +6238 9648 0.5350 +6238 9789 0.4960 +6238 10134 0.4190 +6238 10318 0.5230 +6238 10342 0.5650 +6238 10399 0.5760 +6238 10817 0.4990 +6238 10818 0.4990 +6238 10970 0.4050 +6238 11130 0.8260 +6238 11231 0.4010 +6238 22872 0.7360 +6238 23135 0.4220 +6238 23480 0.4240 +6238 25923 0.4210 +6238 25929 0.4340 +6238 27436 0.6370 +6238 29927 0.4420 +6238 51121 0.5400 +6238 53335 0.5280 +6238 54521 0.4880 +6238 55177 0.4210 +6238 55333 0.9890 +6238 55379 0.5340 +6238 55784 0.4010 +6238 55972 0.4660 +6238 56886 0.4010 +6238 56942 0.4460 +6238 57179 0.4250 +6238 57448 0.5540 +6238 57558 0.4190 +6238 58477 0.5750 +6238 63977 0.4320 +6238 64225 0.4560 +6238 78987 0.4970 +6238 80304 0.4990 +6238 124751 0.4520 +6238 136647 0.4950 +6238 146547 0.4500 +6238 154664 0.4010 +6238 163223 0.4320 +6238 221496 0.4350 +6238 375449 0.4110 +6239 6568 0.4430 +6239 6745 0.4470 +6239 7157 0.4120 +6239 7182 0.4080 +6239 7391 0.4630 +6239 7764 0.4420 +6239 8290 0.4160 +6239 8467 0.4260 +6239 8850 0.6850 +6239 8932 0.4840 +6239 9203 0.4970 +6239 10362 0.4910 +6239 10363 0.5260 +6239 23028 0.8800 +6239 23186 0.7250 +6239 23199 0.4660 +6239 27173 0.4330 +6239 51317 0.4900 +6239 55758 0.4540 +6239 55867 0.4220 +6239 56606 0.4020 +6239 57717 0.4100 +6239 64321 0.4480 +6239 80853 0.4420 +6239 112885 0.5190 +6239 220963 0.4410 +6239 221037 0.4590 +6239 284058 0.4610 +6240 6241 0.9990 +6240 6421 0.4410 +6240 6426 0.7210 +6240 6429 0.4040 +6240 6470 0.4410 +6240 6472 0.4470 +6240 6502 0.4660 +6240 6613 0.4100 +6240 6626 0.5520 +6240 6631 0.6040 +6240 6633 0.4530 +6240 6635 0.4530 +6240 6637 0.4190 +6240 6667 0.4130 +6240 6732 0.5710 +6240 6741 0.4570 +6240 6742 0.4710 +6240 6786 0.6320 +6240 6790 0.6550 +6240 7027 0.4330 +6240 7072 0.5380 +6240 7073 0.4920 +6240 7083 0.7650 +6240 7084 0.4800 +6240 7153 0.8820 +6240 7155 0.5580 +6240 7157 0.4750 +6240 7272 0.4180 +6240 7295 0.8560 +6240 7298 0.9760 +6240 7371 0.6670 +6240 7372 0.6650 +6240 7378 0.5630 +6240 7415 0.5530 +6240 7465 0.5540 +6240 7514 0.6040 +6240 7517 0.4040 +6240 7536 0.5010 +6240 7812 0.4930 +6240 7832 0.4400 +6240 7884 0.6100 +6240 7915 0.4890 +6240 8208 0.4850 +6240 8317 0.4140 +6240 8318 0.6860 +6240 8382 0.4790 +6240 8458 0.4600 +6240 8573 0.4710 +6240 8737 0.4310 +6240 8761 0.5570 +6240 8833 0.7480 +6240 8900 0.4620 +6240 8939 0.4530 +6240 8988 0.4500 +6240 9055 0.5360 +6240 9088 0.4390 +6240 9133 0.5930 +6240 9134 0.4190 +6240 9154 0.4830 +6240 9156 0.6390 +6240 9319 0.5510 +6240 9343 0.4270 +6240 9493 0.5950 +6240 9563 0.4050 +6240 9583 0.9200 +6240 9584 0.4480 +6240 9585 0.5300 +6240 9631 0.4670 +6240 9735 0.5070 +6240 9782 0.6050 +6240 9787 0.5100 +6240 9793 0.4870 +6240 9918 0.5670 +6240 9987 0.7550 +6240 10051 0.6150 +6240 10055 0.4550 +6240 10112 0.5430 +6240 10146 0.5960 +6240 10201 0.8240 +6240 10236 0.5830 +6240 10381 0.6020 +6240 10403 0.4570 +6240 10460 0.4160 +6240 10482 0.4860 +6240 10492 0.4680 +6240 10524 0.6250 +6240 10535 0.5790 +6240 10539 0.4260 +6240 10592 0.6640 +6240 10605 0.6390 +6240 10606 0.6120 +6240 10614 0.4070 +6240 10635 0.4330 +6240 10714 0.4360 +6240 10733 0.5240 +6240 10797 0.4410 +6240 10845 0.4060 +6240 10921 0.5730 +6240 11004 0.4450 +6240 11019 0.4240 +6240 11035 0.4310 +6240 11065 0.4100 +6240 11073 0.4550 +6240 11113 0.4490 +6240 11130 0.5790 +6240 11164 0.4960 +6240 11165 0.4170 +6240 11169 0.7610 +6240 11189 0.7190 +6240 11200 0.7760 +6240 11338 0.5190 +6240 22827 0.5050 +6240 22974 0.6210 +6240 22978 0.4560 +6240 22984 0.4280 +6240 23185 0.4180 +6240 23234 0.4670 +6240 23252 0.8670 +6240 23310 0.4090 +6240 23435 0.8350 +6240 23649 0.7350 +6240 26227 0.4240 +6240 26289 0.8300 +6240 26986 0.7520 +6240 27231 0.4520 +6240 29028 0.5830 +6240 29127 0.5260 +6240 29789 0.8530 +6240 29922 0.8270 +6240 29935 0.6160 +6240 29968 0.4180 +6240 30833 0.4200 +6240 50484 0.9990 +6240 50808 0.9520 +6240 51022 0.8420 +6240 51053 0.4520 +6240 51071 0.4120 +6240 51078 0.4440 +6240 51203 0.5030 +6240 51314 0.6700 +6240 51514 0.6070 +6240 51574 0.5680 +6240 51659 0.5130 +6240 51726 0.6290 +6240 51727 0.6960 +6240 54431 0.4250 +6240 54443 0.6060 +6240 54845 0.8310 +6240 54892 0.4580 +6240 54963 0.5830 +6240 54981 0.4670 +6240 54995 0.4820 +6240 55143 0.5520 +6240 55145 0.8110 +6240 55190 0.4040 +6240 55247 0.4410 +6240 55269 0.4140 +6240 55270 0.8290 +6240 55323 0.4230 +6240 55388 0.4340 +6240 55740 0.4640 +6240 56474 0.4810 +6240 56648 0.4220 +6240 56952 0.8600 +6240 57162 0.4570 +6240 57215 0.4740 +6240 60558 0.8710 +6240 60677 0.7630 +6240 63967 0.4120 +6240 64078 0.4520 +6240 64083 0.5640 +6240 64151 0.5570 +6240 65062 0.4120 +6240 65993 0.4900 +6240 79075 0.5160 +6240 79077 0.9170 +6240 79621 0.5370 +6240 79694 0.5000 +6240 79877 0.7950 +6240 79892 0.4430 +6240 79915 0.4850 +6240 79991 0.4830 +6240 80004 0.8200 +6240 80119 0.5380 +6240 80347 0.7940 +6240 81570 0.4480 +6240 81620 0.8110 +6240 83461 0.4680 +6240 83540 0.5550 +6240 83549 0.5710 +6240 83591 0.4810 +6240 84172 0.4440 +6240 84250 0.4060 +6240 84284 0.9800 +6240 84515 0.5720 +6240 90326 0.5370 +6240 94239 0.4270 +6240 113130 0.4500 +6240 113251 0.5190 +6240 116211 0.5040 +6240 122481 0.8280 +6240 124540 0.4070 +6240 124583 0.9240 +6240 129607 0.9540 +6240 136332 0.5100 +6240 139596 0.4040 +6240 140767 0.7820 +6240 143244 0.4210 +6240 149175 0.5040 +6240 154467 0.4090 +6240 157777 0.5040 +6240 158067 0.8280 +6240 163786 0.4160 +6240 167227 0.4800 +6240 196374 0.4490 +6240 200895 0.4600 +6240 201299 0.4140 +6240 221264 0.9530 +6240 246243 0.5030 +6240 254394 0.7490 +6240 254528 0.4550 +6240 259266 0.6790 +6240 260425 0.4920 +6240 282996 0.6140 +6240 284439 0.7850 +6240 348654 0.4280 +6240 374659 0.9130 +6240 377841 0.9230 +6240 387103 0.8090 +6240 389434 0.4410 +6240 654364 0.8160 +6240 100533467 0.4190 +6240 102157402 0.9420 +6240 114483834 0.6010 +6241 6426 0.6770 +6241 6430 0.4420 +6241 6491 0.4720 +6241 6502 0.5920 +6241 6626 0.4430 +6241 6631 0.6300 +6241 6790 0.8920 +6241 6941 0.5090 +6241 7027 0.6370 +6241 7029 0.5530 +6241 7057 0.4720 +6241 7072 0.4830 +6241 7073 0.4110 +6241 7083 0.9140 +6241 7084 0.4970 +6241 7139 0.5410 +6241 7153 0.9560 +6241 7157 0.8030 +6241 7272 0.8200 +6241 7295 0.8850 +6241 7298 0.9390 +6241 7371 0.4280 +6241 7372 0.4410 +6241 7465 0.5780 +6241 7884 0.6590 +6241 8208 0.5540 +6241 8317 0.4940 +6241 8318 0.8700 +6241 8438 0.6020 +6241 8900 0.5520 +6241 8914 0.4040 +6241 8939 0.4140 +6241 9055 0.8680 +6241 9088 0.5360 +6241 9133 0.9130 +6241 9134 0.7770 +6241 9156 0.7880 +6241 9212 0.8400 +6241 9232 0.8210 +6241 9319 0.6740 +6241 9493 0.7630 +6241 9583 0.9140 +6241 9584 0.5250 +6241 9585 0.4480 +6241 9700 0.6290 +6241 9735 0.5440 +6241 9768 0.9070 +6241 9782 0.6260 +6241 9787 0.9500 +6241 9824 0.5580 +6241 9833 0.9330 +6241 9837 0.8190 +6241 9918 0.4770 +6241 9928 0.6060 +6241 9939 0.4760 +6241 9987 0.5120 +6241 10024 0.4960 +6241 10036 0.5480 +6241 10051 0.6520 +6241 10112 0.9350 +6241 10130 0.7490 +6241 10201 0.7630 +6241 10236 0.4660 +6241 10403 0.7450 +6241 10460 0.4280 +6241 10535 0.5380 +6241 10592 0.5870 +6241 10615 0.6810 +6241 10635 0.7440 +6241 10658 0.5670 +6241 10733 0.4950 +6241 11004 0.7580 +6241 11065 0.9310 +6241 11073 0.4030 +6241 11130 0.9420 +6241 11168 0.4240 +6241 11169 0.5600 +6241 11189 0.8310 +6241 11200 0.6420 +6241 11338 0.4570 +6241 11339 0.5630 +6241 22827 0.5100 +6241 22974 0.9430 +6241 23397 0.7210 +6241 23435 0.7590 +6241 23450 0.5190 +6241 23594 0.5790 +6241 23649 0.4440 +6241 24137 0.9270 +6241 25842 0.4610 +6241 26227 0.4160 +6241 26271 0.7320 +6241 26289 0.7420 +6241 26586 0.4930 +6241 26986 0.5080 +6241 27316 0.4100 +6241 29028 0.5910 +6241 29089 0.5820 +6241 29127 0.7890 +6241 29128 0.8500 +6241 29922 0.7570 +6241 29935 0.4420 +6241 29941 0.6000 +6241 29945 0.5270 +6241 50484 0.9970 +6241 50808 0.9280 +6241 51053 0.6500 +6241 51203 0.9510 +6241 51247 0.5600 +6241 51343 0.8270 +6241 51512 0.6140 +6241 51514 0.8800 +6241 51574 0.4470 +6241 51659 0.6050 +6241 51727 0.4850 +6241 54443 0.7850 +6241 54478 0.5330 +6241 54892 0.7570 +6241 54919 0.4910 +6241 55055 0.5230 +6241 55143 0.8610 +6241 55165 0.9450 +6241 55215 0.6330 +6241 55225 0.5330 +6241 55247 0.4260 +6241 55355 0.8660 +6241 55388 0.8200 +6241 55635 0.6160 +6241 55723 0.8110 +6241 55789 0.5630 +6241 55839 0.5030 +6241 56105 0.5500 +6241 56992 0.6840 +6241 57082 0.4030 +6241 57405 0.6990 +6241 60677 0.8010 +6241 63967 0.5730 +6241 64083 0.5160 +6241 64105 0.5310 +6241 64151 0.8920 +6241 64946 0.5580 +6241 79019 0.8620 +6241 79075 0.4490 +6241 79077 0.9220 +6241 79682 0.6880 +6241 79733 0.8050 +6241 79801 0.8340 +6241 79915 0.4030 +6241 79968 0.4160 +6241 81610 0.4950 +6241 81620 0.8990 +6241 81624 0.4750 +6241 81930 0.5120 +6241 83461 0.7590 +6241 83540 0.7870 +6241 83879 0.6130 +6241 84057 0.4530 +6241 84284 0.9000 +6241 84515 0.4480 +6241 84942 0.4260 +6241 90379 0.4460 +6241 90381 0.4450 +6241 92906 0.5260 +6241 113130 0.6840 +6241 113451 0.7260 +6241 122481 0.7480 +6241 124583 0.9200 +6241 128239 0.4420 +6241 129607 0.9140 +6241 144455 0.5810 +6241 146909 0.6900 +6241 147841 0.4180 +6241 150468 0.4930 +6241 151648 0.4730 +6241 157313 0.5130 +6241 157570 0.4360 +6241 158067 0.7480 +6241 166979 0.4250 +6241 195828 0.4680 +6241 220134 0.5630 +6241 221150 0.4850 +6241 221264 0.9390 +6241 254394 0.4350 +6241 259266 0.8540 +6241 284439 0.4390 +6241 374659 0.9190 +6241 377841 0.9140 +6241 387103 0.5360 +6241 654364 0.7560 +6241 102157402 0.6550 +6242 6275 0.5250 +6242 6397 0.4930 +6242 6793 0.4410 +6242 7037 0.4130 +6242 7074 0.4430 +6242 7454 0.5550 +6242 8825 0.6920 +6242 8826 0.4770 +6242 9138 0.5720 +6242 9181 0.4680 +6242 9414 0.4110 +6242 9475 0.5580 +6242 9748 0.4160 +6242 10174 0.4360 +6242 10801 0.5800 +6242 11113 0.4410 +6242 23002 0.4180 +6242 23176 0.4140 +6242 23365 0.4320 +6242 29941 0.4940 +6242 30851 0.7480 +6242 54443 0.5380 +6242 55544 0.4350 +6242 55752 0.6690 +6242 55789 0.4340 +6242 64130 0.9630 +6242 81533 0.5500 +6242 81624 0.4100 +6242 81839 0.4040 +6242 84419 0.4120 +6242 91010 0.4410 +6242 114822 0.8770 +6242 128239 0.4110 +6242 133482 0.9860 +6242 259197 0.4280 +6242 284119 0.4270 +6247 6792 0.6770 +6247 7078 0.5180 +6247 7101 0.5410 +6247 9588 0.4680 +6247 10002 0.6940 +6247 23098 0.7760 +6247 54714 0.5090 +6247 132949 0.4340 +6247 169522 0.4840 +6247 646262 0.5140 +6248 6523 0.8390 +6248 6527 0.9250 +6248 6530 0.7630 +6248 6531 0.4950 +6248 6532 0.4890 +6248 6581 0.6690 +6248 6582 0.6680 +6248 8408 0.5360 +6248 9154 0.4010 +6248 9356 0.7300 +6248 9706 0.5250 +6248 10741 0.7100 +6248 79693 0.8730 +6248 84301 0.9240 +6248 113444 0.4110 +6248 124411 0.4050 +6248 132949 0.7500 +6248 414301 0.9640 +6249 6310 0.4500 +6249 6455 0.4220 +6249 6683 0.4510 +6249 6904 0.7060 +6249 7037 0.4550 +6249 7277 0.5040 +6249 7514 0.4380 +6249 7846 0.9720 +6249 8031 0.5220 +6249 8290 0.4280 +6249 8356 0.4290 +6249 8618 0.5140 +6249 8826 0.9990 +6249 9053 0.5920 +6249 9133 0.4420 +6249 9183 0.4310 +6249 9184 0.8330 +6249 9648 0.5360 +6249 9700 0.5330 +6249 9793 0.8130 +6249 10013 0.4370 +6249 10120 0.5030 +6249 10121 0.4770 +6249 10170 0.4200 +6249 10244 0.4060 +6249 10376 0.9270 +6249 10381 0.5440 +6249 10403 0.5390 +6249 10456 0.4720 +6249 10458 0.4380 +6249 10540 0.7850 +6249 10726 0.8920 +6249 10735 0.4160 +6249 10788 0.7970 +6249 10982 0.7470 +6249 11004 0.6990 +6249 11129 0.9730 +6249 22905 0.4310 +6249 22919 0.9890 +6249 22924 0.9510 +6249 22981 0.4230 +6249 23085 0.5710 +6249 23122 0.9930 +6249 23271 0.4450 +6249 23299 0.5790 +6249 23332 0.9820 +6249 23499 0.7760 +6249 26586 0.4200 +6249 27436 0.7390 +6249 30851 0.5350 +6249 50649 0.5020 +6249 51143 0.4160 +6249 51164 0.4130 +6249 51199 0.6150 +6249 51361 0.4100 +6249 51517 0.4160 +6249 51806 0.5440 +6249 51807 0.5540 +6249 54820 0.4990 +6249 55631 0.4760 +6249 55680 0.5660 +6249 55700 0.6540 +6249 55860 0.6070 +6249 55930 0.4660 +6249 56850 0.4020 +6249 57521 0.4840 +6249 57576 0.6460 +6249 57606 0.5090 +6249 57662 0.4120 +6249 64689 0.5140 +6249 80230 0.4930 +6249 81027 0.5140 +6249 81565 0.6140 +6249 81930 0.5460 +6249 84376 0.6480 +6249 90102 0.6350 +6249 91860 0.5410 +6249 113457 0.5360 +6249 117286 0.4460 +6249 122060 0.5460 +6249 128239 0.7020 +6249 150465 0.8580 +6249 157922 0.4570 +6249 163688 0.5410 +6249 203068 0.7020 +6249 253260 0.4790 +6249 284254 0.5920 +6249 348235 0.4590 +6249 375449 0.5080 +6249 440093 0.4290 +6249 440686 0.4280 +6249 653604 0.4320 +6251 7052 0.4250 +6251 7094 0.6230 +6251 7414 0.6390 +6251 8844 0.4040 +6251 9124 0.4930 +6251 9960 0.4760 +6251 10611 0.5010 +6251 11081 0.4810 +6251 22859 0.5140 +6251 23266 0.5140 +6251 23284 0.5140 +6251 29780 0.9810 +6251 55222 0.4360 +6251 55679 0.9230 +6251 55742 0.9880 +6251 64098 0.9770 +6251 65078 0.4140 +6251 79442 0.4540 +6251 80059 0.4380 +6251 81492 0.7620 +6251 83660 0.5720 +6251 84955 0.6190 +6251 84964 0.4260 +6251 89876 0.4320 +6251 96626 0.8360 +6251 116844 0.5150 +6251 339398 0.4020 +6251 375387 0.4160 +6251 389206 0.4030 +6251 100288695 0.6420 +6252 6253 0.8320 +6252 6323 0.4390 +6252 6327 0.5550 +6252 6396 0.4040 +6252 6563 0.4120 +6252 6616 0.4500 +6252 6683 0.9040 +6252 7095 0.4360 +6252 7357 0.5280 +6252 7447 0.5620 +6252 7732 0.4070 +6252 7905 0.9020 +6252 8411 0.4270 +6252 8636 0.6350 +6252 8851 0.4180 +6252 9218 0.4160 +6252 10313 0.5730 +6252 10439 0.4270 +6252 10945 0.4850 +6252 10952 0.4230 +6252 10970 0.4170 +6252 11075 0.5110 +6252 11231 0.6250 +6252 11336 0.5870 +6252 11337 0.6210 +6252 23111 0.4800 +6252 23163 0.4480 +6252 23503 0.5890 +6252 23621 0.7570 +6252 25825 0.5920 +6252 25923 0.8650 +6252 29927 0.4760 +6252 51062 0.8480 +6252 51308 0.4540 +6252 51528 0.4400 +6252 51534 0.5410 +6252 54463 0.4780 +6252 54875 0.4270 +6252 55161 0.8250 +6252 55763 0.4830 +6252 57132 0.5770 +6252 57142 0.8490 +6252 60412 0.5620 +6252 64225 0.8620 +6252 65055 0.5330 +6252 65078 0.5070 +6252 80856 0.4550 +6252 89796 0.5130 +6252 92840 0.5500 +6252 116150 0.6510 +6252 118813 0.6050 +6252 148252 0.4410 +6252 222659 0.4390 +6252 729665 0.5410 +6253 6323 0.4330 +6253 6327 0.5170 +6253 6683 0.8260 +6253 6687 0.4900 +6253 7318 0.4410 +6253 7905 0.8350 +6253 9179 0.4520 +6253 9197 0.4730 +6253 9217 0.4570 +6253 9218 0.5320 +6253 9420 0.4270 +6253 9895 0.5120 +6253 9897 0.5840 +6253 9907 0.5790 +6253 10313 0.4340 +6253 10445 0.4210 +6253 10717 0.5710 +6253 10749 0.4910 +6253 10908 0.5310 +6253 11154 0.5750 +6253 11160 0.5080 +6253 11231 0.5220 +6253 11336 0.4860 +6253 11337 0.5780 +6253 23111 0.5450 +6253 23163 0.4830 +6253 23204 0.6110 +6253 23259 0.4790 +6253 23431 0.5160 +6253 23503 0.5220 +6253 23621 0.7540 +6253 25782 0.4230 +6253 25825 0.6220 +6253 25923 0.7020 +6253 26580 0.6240 +6253 29780 0.4500 +6253 51062 0.8460 +6253 51308 0.7590 +6253 51324 0.5440 +6253 51534 0.5180 +6253 55161 0.4620 +6253 55763 0.4130 +6253 56704 0.4940 +6253 57142 0.8170 +6253 57165 0.4710 +6253 57704 0.4830 +6253 60412 0.5020 +6253 64225 0.6870 +6253 64837 0.5380 +6253 65055 0.7740 +6253 65078 0.5010 +6253 79041 0.5400 +6253 79152 0.4890 +6253 80055 0.4160 +6253 80208 0.4740 +6253 80821 0.5280 +6253 84814 0.4060 +6253 89796 0.5610 +6253 89953 0.4270 +6253 91574 0.4800 +6253 92840 0.5360 +6253 113612 0.4930 +6253 116150 0.6760 +6253 118813 0.5730 +6253 123606 0.6180 +6253 136306 0.4820 +6253 137492 0.4840 +6253 147700 0.5660 +6256 6257 0.9340 +6256 6258 0.9430 +6256 6319 0.6470 +6256 6372 0.4020 +6256 6517 0.6220 +6256 6536 0.4280 +6256 6597 0.4120 +6256 6604 0.6760 +6256 6667 0.6820 +6256 6714 0.6760 +6256 6720 0.7590 +6256 6772 0.5350 +6256 6774 0.6020 +6256 6778 0.4430 +6256 6822 0.5830 +6256 6837 0.5260 +6256 6907 0.6220 +6256 6908 0.4600 +6256 6927 0.4180 +6256 6996 0.4070 +6256 7050 0.5170 +6256 7067 0.9670 +6256 7068 0.9930 +6256 7296 0.4900 +6256 7329 0.5940 +6256 7341 0.5090 +6256 7351 0.4810 +6256 7376 0.9980 +6256 7403 0.6260 +6256 7528 0.6770 +6256 7703 0.4990 +6256 7704 0.5130 +6256 7849 0.9060 +6256 8050 0.5420 +6256 8085 0.5880 +6256 8202 0.9880 +6256 8204 0.8160 +6256 8331 0.4990 +6256 8334 0.5070 +6256 8337 0.5250 +6256 8338 0.5160 +6256 8340 0.5040 +6256 8341 0.5040 +6256 8342 0.5040 +6256 8345 0.5040 +6256 8347 0.5040 +6256 8348 0.5170 +6256 8349 0.5230 +6256 8356 0.6080 +6256 8361 0.5360 +6256 8431 0.7530 +6256 8553 0.7880 +6256 8608 0.4140 +6256 8648 0.9990 +6256 8726 0.5260 +6256 8800 0.4210 +6256 8805 0.7870 +6256 8841 0.7740 +6256 8850 0.6930 +6256 8854 0.4060 +6256 8856 0.9990 +6256 8864 0.4900 +6256 8878 0.4530 +6256 8970 0.5040 +6256 9025 0.7270 +6256 9053 0.5880 +6256 9070 0.5240 +6256 9125 0.4760 +6256 9213 0.8400 +6256 9282 0.6880 +6256 9314 0.4980 +6256 9318 0.4110 +6256 9319 0.5030 +6256 9320 0.4460 +6256 9324 0.4620 +6256 9325 0.6290 +6256 9326 0.4970 +6256 9370 0.7660 +6256 9412 0.5080 +6256 9439 0.5640 +6256 9440 0.7070 +6256 9441 0.5300 +6256 9442 0.6750 +6256 9443 0.5100 +6256 9477 0.5110 +6256 9575 0.8600 +6256 9611 0.9770 +6256 9612 0.9960 +6256 9619 0.8150 +6256 9682 0.5310 +6256 9759 0.6290 +6256 9862 0.8650 +6256 9967 0.5380 +6256 9968 0.6970 +6256 9969 0.6820 +6256 9970 0.9870 +6256 9971 0.9990 +6256 10001 0.5070 +6256 10025 0.8090 +6256 10062 0.9990 +6256 10123 0.5160 +6256 10197 0.9100 +6256 10498 0.6000 +6256 10499 0.9990 +6256 10587 0.8660 +6256 10664 0.7840 +6256 10891 0.9130 +6256 10902 0.5870 +6256 11010 0.4070 +6256 11091 0.5390 +6256 11145 0.4990 +6256 11188 0.5400 +6256 22976 0.5100 +6256 23028 0.5750 +6256 23054 0.9620 +6256 23062 0.4070 +6256 23090 0.4530 +6256 23097 0.5600 +6256 23112 0.5160 +6256 23163 0.4100 +6256 23179 0.4110 +6256 23309 0.5740 +6256 23389 0.6800 +6256 23414 0.4800 +6256 23421 0.6060 +6256 23512 0.5950 +6256 25819 0.4390 +6256 25942 0.7400 +6256 26088 0.4110 +6256 26523 0.5180 +6256 27063 0.4170 +6256 27161 0.5470 +6256 27242 0.4350 +6256 27327 0.5000 +6256 27329 0.5370 +6256 29079 0.6780 +6256 29116 0.6800 +6256 29841 0.4460 +6256 50486 0.4300 +6256 51003 0.5100 +6256 51129 0.6040 +6256 51422 0.4170 +6256 51450 0.4810 +6256 51586 0.5550 +6256 54145 0.5040 +6256 54468 0.4570 +6256 54600 0.4330 +6256 54659 0.5100 +6256 54797 0.5290 +6256 55090 0.5070 +6256 55588 0.5040 +6256 55766 0.4990 +6256 55818 0.5160 +6256 57110 0.4990 +6256 57472 0.5800 +6256 57761 0.4750 +6256 58508 0.5890 +6256 64240 0.5240 +6256 64241 0.4930 +6256 79447 0.5000 +6256 79718 0.6100 +6256 80205 0.8020 +6256 80306 0.4990 +6256 80820 0.5460 +6256 81857 0.6780 +6256 83483 0.4970 +6256 84106 0.4260 +6256 84246 0.5090 +6256 84498 0.7040 +6256 84627 0.5040 +6256 84962 0.5230 +6256 85236 0.5040 +6256 85441 0.6040 +6256 90390 0.6890 +6256 94239 0.5140 +6256 96764 0.5090 +6256 112950 0.5060 +6256 114884 0.4780 +6256 116519 0.5090 +6256 116931 0.6680 +6256 120227 0.4720 +6256 128312 0.5040 +6256 135112 0.5030 +6256 192669 0.5110 +6256 192670 0.5320 +6256 221656 0.5180 +6256 255626 0.5040 +6256 283337 0.4110 +6256 376497 0.6020 +6256 400569 0.5360 +6256 474382 0.4990 +6256 652968 0.6110 +6256 653604 0.6100 +6256 729438 0.6100 +6257 6258 0.9380 +6257 6293 0.4100 +6257 6319 0.5200 +6257 6720 0.7020 +6257 6880 0.4490 +6257 6891 0.4250 +6257 6907 0.5420 +6257 7067 0.4010 +6257 7068 0.4540 +6257 7376 0.9930 +6257 7849 0.9020 +6257 7922 0.8030 +6257 7923 0.7980 +6257 8202 0.8570 +6257 8204 0.6850 +6257 8405 0.4140 +6257 8648 0.8810 +6257 8841 0.6690 +6257 8850 0.6650 +6257 8856 0.6880 +6257 9135 0.4500 +6257 9282 0.6720 +6257 9440 0.6810 +6257 9442 0.6820 +6257 9611 0.8830 +6257 9612 0.7200 +6257 9619 0.5850 +6257 9682 0.5180 +6257 9862 0.6790 +6257 9968 0.6750 +6257 9969 0.6800 +6257 9971 0.8780 +6257 10025 0.7610 +6257 10062 0.9980 +6257 10123 0.5220 +6257 10471 0.6830 +6257 10499 0.9510 +6257 23028 0.5210 +6257 23062 0.4370 +6257 23112 0.5220 +6257 23163 0.4650 +6257 23389 0.6760 +6257 25893 0.4890 +6257 25942 0.6820 +6257 26088 0.4620 +6257 26523 0.5110 +6257 27161 0.5160 +6257 27327 0.4990 +6257 27329 0.5020 +6257 29079 0.6500 +6257 29116 0.5550 +6257 29883 0.6700 +6257 54659 0.4990 +6257 54734 0.4560 +6257 55818 0.5030 +6257 64240 0.4140 +6257 64241 0.4170 +6257 79718 0.5310 +6257 80820 0.5090 +6257 90390 0.6680 +6257 114984 0.5060 +6257 116931 0.6680 +6257 192669 0.5110 +6257 192670 0.5190 +6257 221656 0.5170 +6257 286410 0.4060 +6258 6622 0.4520 +6258 6663 0.4150 +6258 6886 0.4370 +6258 7067 0.5960 +6258 7068 0.7880 +6258 7376 0.9510 +6258 7546 0.4680 +6258 7849 0.9080 +6258 8013 0.4580 +6258 8202 0.8480 +6258 8648 0.8660 +6258 8841 0.6690 +6258 8850 0.6600 +6258 8856 0.4180 +6258 9213 0.5470 +6258 9282 0.6680 +6258 9440 0.6930 +6258 9442 0.6660 +6258 9603 0.4050 +6258 9611 0.8020 +6258 9612 0.7290 +6258 9862 0.6530 +6258 9968 0.6770 +6258 9969 0.6820 +6258 9970 0.5410 +6258 9971 0.8690 +6258 10025 0.7380 +6258 10062 0.9610 +6258 10499 0.9860 +6258 10664 0.4670 +6258 10891 0.5310 +6258 23054 0.4240 +6258 23090 0.5130 +6258 23389 0.6760 +6258 25942 0.6780 +6258 28999 0.4730 +6258 29079 0.6500 +6258 30819 0.4040 +6258 56934 0.4150 +6258 84152 0.4050 +6258 90390 0.6680 +6258 116931 0.6680 +6258 140690 0.4480 +6258 255877 0.4040 +6259 6422 0.7240 +6259 6423 0.4920 +6259 6424 0.4010 +6259 6425 0.4340 +6259 6714 0.4770 +6259 7471 0.9250 +6259 7472 0.6670 +6259 7473 0.9490 +6259 7474 0.9990 +6259 7475 0.6170 +6259 7476 0.9660 +6259 7477 0.7840 +6259 7478 0.7280 +6259 7479 0.8270 +6259 7480 0.5490 +6259 7481 0.9940 +6259 7482 0.6390 +6259 7483 0.5110 +6259 7484 0.4950 +6259 7855 0.9630 +6259 7976 0.9570 +6259 8312 0.6120 +6259 8313 0.4800 +6259 8321 0.9760 +6259 8322 0.9750 +6259 8323 0.9590 +6259 8324 0.9600 +6259 8325 0.9620 +6259 8326 0.9570 +6259 8840 0.4770 +6259 9364 0.4040 +6259 9620 0.4320 +6259 11211 0.9450 +6259 22943 0.5570 +6259 23002 0.7100 +6259 23500 0.5020 +6259 27121 0.4760 +6259 27123 0.4860 +6259 29964 0.5170 +6259 51176 0.4470 +6259 51384 0.5550 +6259 51701 0.4680 +6259 54361 0.8800 +6259 54894 0.4520 +6259 55366 0.4240 +6259 57216 0.9250 +6259 57534 0.4170 +6259 58480 0.4500 +6259 64840 0.4140 +6259 79633 0.4420 +6259 79971 0.4210 +6259 80326 0.5120 +6259 81029 0.9820 +6259 81839 0.7550 +6259 84133 0.4590 +6259 89780 0.9680 +6259 90273 0.4540 +6259 135250 0.5740 +6259 144165 0.5340 +6259 166336 0.5180 +6261 6262 0.9720 +6261 6263 0.9540 +6261 6271 0.8110 +6261 6323 0.4990 +6261 6329 0.6640 +6261 6331 0.5310 +6261 6345 0.7050 +6261 6442 0.4600 +6261 6444 0.5820 +6261 6546 0.4020 +6261 6588 0.5930 +6261 6640 0.5660 +6261 6717 0.4570 +6261 6786 0.7600 +6261 6857 0.4100 +6261 7125 0.6310 +6261 7134 0.4040 +6261 7136 0.5520 +6261 7138 0.5970 +6261 7139 0.4070 +6261 7140 0.5270 +6261 7169 0.5120 +6261 7170 0.5130 +6261 7220 0.4890 +6261 7222 0.5450 +6261 7273 0.6990 +6261 7402 0.5720 +6261 8038 0.4380 +6261 8085 0.4720 +6261 8291 0.5430 +6261 8776 0.6530 +6261 8898 0.5640 +6261 8911 0.5440 +6261 8912 0.8330 +6261 8913 0.7090 +6261 9033 0.5020 +6261 9172 0.6350 +6261 9254 0.6110 +6261 9456 0.6530 +6261 9472 0.5560 +6261 9499 0.5570 +6261 10251 0.4960 +6261 10253 0.4270 +6261 10324 0.4570 +6261 10345 0.9970 +6261 10367 0.5060 +6261 10368 0.7330 +6261 10369 0.7310 +6261 10645 0.4430 +6261 10658 0.5130 +6261 11155 0.4090 +6261 25858 0.7200 +6261 27092 0.7290 +6261 29895 0.7090 +6261 51393 0.4810 +6261 51806 0.9990 +6261 53373 0.4830 +6261 53632 0.5670 +6261 55033 0.5010 +6261 55799 0.5870 +6261 56203 0.4090 +6261 56704 0.9480 +6261 57158 0.8250 +6261 57190 0.8560 +6261 57338 0.7430 +6261 57620 0.4750 +6261 57685 0.5790 +6261 57828 0.7240 +6261 58529 0.5150 +6261 59283 0.7460 +6261 59284 0.7320 +6261 59285 0.7470 +6261 64419 0.6790 +6261 79041 0.4180 +6261 79147 0.4470 +6261 79820 0.7280 +6261 81493 0.5620 +6261 84033 0.5200 +6261 84502 0.7780 +6261 84665 0.4280 +6261 84876 0.4970 +6261 85366 0.4470 +6261 90550 0.4530 +6261 90861 0.4110 +6261 91860 0.9990 +6261 93589 0.7540 +6261 94137 0.4170 +6261 117144 0.7840 +6261 117155 0.7650 +6261 124093 0.5340 +6261 124989 0.4370 +6261 126306 0.6610 +6261 131377 0.5420 +6261 146779 0.4370 +6261 147912 0.4930 +6261 163688 0.9990 +6261 164633 0.5310 +6261 203859 0.4600 +6261 219931 0.5120 +6261 221154 0.4300 +6261 246329 0.9610 +6261 257044 0.7490 +6261 257062 0.7460 +6261 284612 0.6340 +6261 285588 0.7720 +6261 340393 0.7200 +6261 347732 0.7610 +6261 378807 0.7640 +6261 390594 0.5610 +6261 642489 0.5860 +6261 100130348 0.7200 +6262 6263 0.9950 +6262 6271 0.8990 +6262 6323 0.4570 +6262 6324 0.5200 +6262 6326 0.4080 +6262 6327 0.4360 +6262 6329 0.4840 +6262 6330 0.5780 +6262 6331 0.8870 +6262 6334 0.4010 +6262 6336 0.5040 +6262 6546 0.8370 +6262 6588 0.5460 +6262 6640 0.6230 +6262 6708 0.4090 +6262 6717 0.9730 +6262 6718 0.4100 +6262 6786 0.5060 +6262 6910 0.5710 +6262 6911 0.4350 +6262 7043 0.6240 +6262 7135 0.4850 +6262 7137 0.6660 +6262 7139 0.7320 +6262 7168 0.5150 +6262 7220 0.6100 +6262 7222 0.5250 +6262 7273 0.7740 +6262 7399 0.4650 +6262 7416 0.5290 +6262 7417 0.5820 +6262 7545 0.5030 +6262 8048 0.5250 +6262 8557 0.4530 +6262 8912 0.5400 +6262 8913 0.5980 +6262 9033 0.4980 +6262 9378 0.5240 +6262 9456 0.4530 +6262 9464 0.4110 +6262 9465 0.4140 +6262 9472 0.9920 +6262 9495 0.4570 +6262 9709 0.4380 +6262 9722 0.4630 +6262 9992 0.7470 +6262 10008 0.4470 +6262 10021 0.7390 +6262 10060 0.5050 +6262 10142 0.4780 +6262 10290 0.7700 +6262 10335 0.4430 +6262 10345 0.9990 +6262 10367 0.4350 +6262 10411 0.6780 +6262 10529 0.4330 +6262 10599 0.4570 +6262 11069 0.9490 +6262 11155 0.5200 +6262 23171 0.5070 +6262 23345 0.5430 +6262 23414 0.4230 +6262 23630 0.4320 +6262 23683 0.5500 +6262 25865 0.5470 +6262 27063 0.5470 +6262 27295 0.4350 +6262 27445 0.5540 +6262 28227 0.9030 +6262 29119 0.4880 +6262 29895 0.4730 +6262 30819 0.5680 +6262 51399 0.4260 +6262 51422 0.4810 +6262 51778 0.4470 +6262 51806 0.9990 +6262 53353 0.5600 +6262 54795 0.4320 +6262 55012 0.9000 +6262 55800 0.5060 +6262 55844 0.9000 +6262 56704 0.5990 +6262 57057 0.4320 +6262 57158 0.7680 +6262 57338 0.6930 +6262 58485 0.7170 +6262 58498 0.6480 +6262 79188 0.8430 +6262 79776 0.5700 +6262 80024 0.4650 +6262 83872 0.4660 +6262 84033 0.6090 +6262 84107 0.5050 +6262 84502 0.6970 +6262 84665 0.4680 +6262 84687 0.6090 +6262 90550 0.4790 +6262 91624 0.5670 +6262 91860 0.9990 +6262 92293 0.4440 +6262 93649 0.4320 +6262 94025 0.5820 +6262 114788 0.6130 +6262 120114 0.4600 +6262 124989 0.4370 +6262 125972 0.6170 +6262 129446 0.5350 +6262 129684 0.4100 +6262 146779 0.4370 +6262 163688 0.9990 +6262 166752 0.4330 +6262 219931 0.4080 +6262 253017 0.5170 +6262 282996 0.6040 +6262 642489 0.6330 +6263 6323 0.4390 +6263 6717 0.6050 +6263 6786 0.4760 +6263 7125 0.4210 +6263 7220 0.4040 +6263 7222 0.4580 +6263 7273 0.4880 +6263 8912 0.4440 +6263 8913 0.4590 +6263 9472 0.6390 +6263 10153 0.4240 +6263 10335 0.5180 +6263 10345 0.9220 +6263 23116 0.4020 +6263 23385 0.5200 +6263 51107 0.5170 +6263 51806 0.9660 +6263 53373 0.4370 +6263 54822 0.4970 +6263 55727 0.4800 +6263 55851 0.5260 +6263 56704 0.4850 +6263 57158 0.4420 +6263 57190 0.6400 +6263 57338 0.4330 +6263 57620 0.4010 +6263 83464 0.5490 +6263 84502 0.4470 +6263 84700 0.4110 +6263 91860 0.9530 +6263 114788 0.4050 +6263 116135 0.4170 +6263 124989 0.4370 +6263 146779 0.4420 +6263 163688 0.9530 +6263 219931 0.4670 +6263 619189 0.4450 +6263 642489 0.5360 +6271 6274 0.7340 +6271 6275 0.8070 +6271 6276 0.5120 +6271 6277 0.4350 +6271 6278 0.8080 +6271 6279 0.5530 +6271 6280 0.5460 +6271 6281 0.4270 +6271 6285 0.9800 +6271 6286 0.8580 +6271 6546 0.4620 +6271 6663 0.4170 +6271 6699 0.5530 +6271 6707 0.6290 +6271 6717 0.5620 +6271 6786 0.4440 +6271 6833 0.4270 +6271 6853 0.4210 +6271 6854 0.4200 +6271 6857 0.4300 +6271 7062 0.6020 +6271 7096 0.5640 +6271 7097 0.7550 +6271 7099 0.8360 +6271 7157 0.7900 +6271 7442 0.4190 +6271 9238 0.4270 +6271 9868 0.5150 +6271 10273 0.4140 +6271 10345 0.6020 +6271 10469 0.4030 +6271 11249 0.4170 +6271 23643 0.5350 +6271 27101 0.6430 +6271 27173 0.4350 +6271 30010 0.4060 +6271 51806 0.7130 +6271 57402 0.5700 +6271 79026 0.5310 +6271 80036 0.5340 +6271 84260 0.4560 +6271 91860 0.7120 +6271 134637 0.4370 +6271 140576 0.4580 +6271 163688 0.7240 +6271 170591 0.6030 +6271 338324 0.5160 +6271 388697 0.7440 +6272 6348 0.4350 +6272 6517 0.6410 +6272 6609 0.7780 +6272 6622 0.5100 +6272 6642 0.5220 +6272 6643 0.7190 +6272 6653 0.7650 +6272 6844 0.7860 +6272 6845 0.5660 +6272 7037 0.6240 +6272 7038 0.6490 +6272 7079 0.4020 +6272 7124 0.5490 +6272 7163 0.4990 +6272 7164 0.5080 +6272 7293 0.4470 +6272 7704 0.4070 +6272 7852 0.4500 +6272 8218 0.4310 +6272 8301 0.5910 +6272 8411 0.4310 +6272 8546 0.5610 +6272 8673 0.5870 +6272 8724 0.4210 +6272 8766 0.4110 +6272 8775 0.5130 +6272 8905 0.7150 +6272 8907 0.6300 +6272 9001 0.7570 +6272 9026 0.5140 +6272 9244 0.4610 +6272 9500 0.4140 +6272 9559 0.8160 +6272 9685 0.5710 +6272 9698 0.5160 +6272 9829 0.5610 +6272 10053 0.5960 +6272 10221 0.5180 +6272 10228 0.4890 +6272 10618 0.6810 +6272 10717 0.5340 +6272 11173 0.4460 +6272 22808 0.4130 +6272 22986 0.4830 +6272 23062 0.9290 +6272 23163 0.7070 +6272 23166 0.4330 +6272 23431 0.5660 +6272 23435 0.4870 +6272 23503 0.4910 +6272 23529 0.4340 +6272 23557 0.5560 +6272 23620 0.6760 +6272 23621 0.6260 +6272 25977 0.4990 +6272 26088 0.9540 +6272 26258 0.4990 +6272 27131 0.6720 +6272 27141 0.4260 +6272 27329 0.4720 +6272 28986 0.4700 +6272 50964 0.4290 +6272 51429 0.5210 +6272 51655 0.4990 +6272 51699 0.6540 +6272 54664 0.5640 +6272 54885 0.4990 +6272 55330 0.4990 +6272 55737 0.8360 +6272 57142 0.4340 +6272 57537 0.7480 +6272 59349 0.4100 +6272 65078 0.6070 +6272 80714 0.4140 +6272 81567 0.5140 +6272 84062 0.5000 +6272 84722 0.9540 +6272 84894 0.5660 +6272 85329 0.4040 +6272 112936 0.5720 +6272 114815 0.9170 +6272 115703 0.4990 +6272 116519 0.5800 +6272 130340 0.5710 +6272 143471 0.6080 +6272 148113 0.4750 +6272 163882 0.5360 +6272 221692 0.5070 +6272 255738 0.8660 +6272 284612 0.4260 +6272 286451 0.5060 +6272 338382 0.5490 +6272 343263 0.6500 +6272 375056 0.5560 +6272 388552 0.5150 +6274 6276 0.4780 +6274 6277 0.4620 +6274 6278 0.6280 +6274 6281 0.7400 +6274 6284 0.7130 +6274 6707 0.4580 +6274 7062 0.4570 +6274 8345 0.4050 +6274 10107 0.4130 +6274 10342 0.4130 +6274 27101 0.4830 +6274 51702 0.7070 +6274 54541 0.4040 +6274 57153 0.4010 +6274 57402 0.5920 +6274 81285 0.4230 +6274 83902 0.4660 +6274 84106 0.5040 +6274 85293 0.4730 +6274 89870 0.4110 +6274 126637 0.6250 +6274 140576 0.8040 +6274 149018 0.4700 +6274 149628 0.4050 +6274 163778 0.4200 +6274 170591 0.6450 +6274 219995 0.4160 +6274 319101 0.4900 +6274 338324 0.5410 +6274 388697 0.7620 +6274 448834 0.5030 +6275 6277 0.7550 +6275 6278 0.5800 +6275 6281 0.7580 +6275 6282 0.5090 +6275 6284 0.4450 +6275 6285 0.7570 +6275 6347 0.4790 +6275 6387 0.5220 +6275 6591 0.5570 +6275 6615 0.6160 +6275 6696 0.4790 +6275 6707 0.4370 +6275 6774 0.4310 +6275 6781 0.4230 +6275 6876 0.5540 +6275 6908 0.4550 +6275 7040 0.6600 +6275 7042 0.4350 +6275 7045 0.4100 +6275 7046 0.4050 +6275 7048 0.4600 +6275 7052 0.5330 +6275 7057 0.4360 +6275 7062 0.4310 +6275 7070 0.5120 +6275 7076 0.5020 +6275 7077 0.4210 +6275 7082 0.4480 +6275 7099 0.6430 +6275 7124 0.6170 +6275 7157 0.9960 +6275 7182 0.4320 +6275 7291 0.6370 +6275 7299 0.4300 +6275 7324 0.4280 +6275 7430 0.5850 +6275 7431 0.7640 +6275 7837 0.4740 +6275 7852 0.4600 +6275 8076 0.4010 +6275 8345 0.4240 +6275 8407 0.4260 +6275 8496 0.6510 +6275 8974 0.4150 +6275 8993 0.5240 +6275 9669 0.4100 +6275 9839 0.4510 +6275 9982 0.4370 +6275 10009 0.5460 +6275 10232 0.5280 +6275 10381 0.4720 +6275 10406 0.4690 +6275 10462 0.4150 +6275 10630 0.5070 +6275 10631 0.5990 +6275 10725 0.4730 +6275 10988 0.6170 +6275 10989 0.4040 +6275 11151 0.4840 +6275 23157 0.4180 +6275 27101 0.4490 +6275 53827 0.4120 +6275 57402 0.5730 +6275 60485 0.4280 +6275 126637 0.4520 +6275 133418 0.5150 +6275 134637 0.4490 +6275 137902 0.4190 +6275 140576 0.4530 +6275 149018 0.4200 +6275 388697 0.7050 +6275 448834 0.4150 +6275 653145 0.5670 +6276 6278 0.6090 +6276 6283 0.4350 +6276 11154 0.4230 +6276 26018 0.4050 +6276 27101 0.5700 +6276 30851 0.4040 +6276 54795 0.4260 +6276 55808 0.4670 +6276 57402 0.5850 +6276 57685 0.4340 +6276 63941 0.4320 +6276 116254 0.5210 +6276 140576 0.7610 +6276 162387 0.4690 +6276 197021 0.4300 +6276 337867 0.4150 +6276 338324 0.5750 +6276 388697 0.7320 +6276 100131755 0.4550 +6277 6278 0.5960 +6277 6279 0.7010 +6277 6281 0.9720 +6277 6282 0.7060 +6277 6283 0.5120 +6277 6284 0.7550 +6277 6285 0.7750 +6277 6477 0.7800 +6277 6490 0.4410 +6277 6698 0.7210 +6277 6699 0.5290 +6277 6707 0.7470 +6277 6714 0.5900 +6277 7062 0.7710 +6277 7076 0.4010 +6277 7124 0.4770 +6277 7139 0.4160 +6277 7157 0.8420 +6277 7276 0.4900 +6277 7280 0.4290 +6277 7431 0.4730 +6277 7534 0.5720 +6277 7621 0.4190 +6277 9168 0.8720 +6277 9373 0.4940 +6277 9478 0.4020 +6277 9612 0.4790 +6277 10273 0.5600 +6277 10449 0.4480 +6277 10457 0.6640 +6277 10551 0.6050 +6277 10910 0.4240 +6277 10988 0.4720 +6277 11116 0.6360 +6277 11151 0.4530 +6277 23082 0.5070 +6277 25805 0.5440 +6277 27101 0.9980 +6277 51475 0.4450 +6277 51806 0.5450 +6277 53827 0.4110 +6277 55893 0.4840 +6277 56731 0.4240 +6277 57010 0.7050 +6277 57402 0.6020 +6277 79026 0.5070 +6277 79772 0.4110 +6277 91663 0.4500 +6277 91860 0.5460 +6277 123811 0.4190 +6277 134637 0.4400 +6277 140576 0.7240 +6277 163688 0.5450 +6277 164633 0.5070 +6277 203068 0.4340 +6277 203100 0.4010 +6277 338324 0.4140 +6277 388697 0.6750 +6278 6279 0.7750 +6278 6280 0.8630 +6278 6281 0.5110 +6278 6282 0.6030 +6278 6283 0.9360 +6278 6284 0.5840 +6278 6285 0.4840 +6278 6317 0.7570 +6278 6318 0.7050 +6278 6364 0.5810 +6278 6374 0.4020 +6278 6375 0.5490 +6278 6590 0.4420 +6278 6698 0.5880 +6278 6699 0.6910 +6278 6700 0.5240 +6278 6701 0.6540 +6278 6703 0.4480 +6278 6704 0.5100 +6278 6706 0.5110 +6278 6707 0.5230 +6278 6772 0.4810 +6278 6774 0.5480 +6278 6776 0.4020 +6278 7052 0.4440 +6278 7099 0.5900 +6278 7124 0.4470 +6278 10048 0.6240 +6278 10987 0.8640 +6278 11005 0.4260 +6278 11009 0.4050 +6278 23581 0.5410 +6278 23765 0.5910 +6278 25818 0.4100 +6278 26525 0.4840 +6278 27189 0.4250 +6278 29949 0.5180 +6278 50616 0.7990 +6278 51806 0.4500 +6278 55801 0.5760 +6278 55957 0.4950 +6278 56300 0.5740 +6278 57402 0.5680 +6278 58985 0.6820 +6278 84518 0.4040 +6278 84569 0.4260 +6278 84648 0.5500 +6278 84659 0.8130 +6278 112744 0.4350 +6278 117159 0.6100 +6278 126638 0.4080 +6278 130120 0.5440 +6278 132660 0.4670 +6278 140576 0.6590 +6278 163778 0.4670 +6278 170591 0.5710 +6278 286826 0.6140 +6278 286887 0.4640 +6278 338324 0.9620 +6278 353142 0.4540 +6278 374454 0.4840 +6278 388533 0.4470 +6278 388697 0.6720 +6278 388698 0.6070 +6278 414325 0.8560 +6278 100289462 0.6790 +6279 6280 0.9990 +6279 6281 0.4860 +6279 6282 0.4730 +6279 6283 0.9950 +6279 6318 0.4360 +6279 6366 0.5470 +6279 6714 0.6850 +6279 6774 0.4180 +6279 6779 0.4830 +6279 7040 0.5160 +6279 7046 0.4790 +6279 7048 0.4360 +6279 7082 0.9800 +6279 7096 0.6620 +6279 7097 0.8580 +6279 7099 0.9070 +6279 7100 0.4140 +6279 7124 0.5690 +6279 7157 0.4790 +6279 7159 0.8430 +6279 7305 0.4870 +6279 7317 0.4480 +6279 7531 0.5080 +6279 7761 0.4050 +6279 7762 0.4050 +6279 8361 0.4450 +6279 8369 0.4420 +6279 8678 0.6140 +6279 8925 0.5790 +6279 9073 0.4780 +6279 9181 0.4830 +6279 9577 0.4960 +6279 10190 0.4080 +6279 10249 0.4710 +6279 10288 0.4030 +6279 10392 0.6770 +6279 10572 0.4670 +6279 11151 0.5180 +6279 23643 0.8140 +6279 25984 0.4400 +6279 27063 0.4260 +6279 27134 0.4350 +6279 50848 0.6120 +6279 51311 0.4810 +6279 54210 0.5040 +6279 57126 0.4290 +6279 57530 0.4550 +6279 57551 0.8880 +6279 64127 0.4180 +6279 83700 0.4360 +6279 84569 0.4500 +6279 120892 0.4110 +6279 140885 0.4380 +6279 157285 0.4140 +6279 168400 0.5800 +6279 284654 0.4480 +6279 338324 0.4020 +6279 342527 0.5190 +6279 388698 0.4490 +6279 653247 0.5890 +6279 653361 0.6180 +6279 728358 0.4570 +6279 100506658 0.5900 +6280 6283 0.9400 +6280 6317 0.4650 +6280 6318 0.4860 +6280 6347 0.4280 +6280 6364 0.4850 +6280 6590 0.4890 +6280 6622 0.5360 +6280 6688 0.5540 +6280 6696 0.5140 +6280 6774 0.4790 +6280 7018 0.4320 +6280 7096 0.6720 +6280 7097 0.8610 +6280 7099 0.9690 +6280 7124 0.5140 +6280 7305 0.5240 +6280 7345 0.4100 +6280 7846 0.4220 +6280 8337 0.4280 +6280 8338 0.4020 +6280 8685 0.4240 +6280 8857 0.4250 +6280 9332 0.6250 +6280 10190 0.5180 +6280 10288 0.4340 +6280 10563 0.4040 +6280 10772 0.4400 +6280 10970 0.4530 +6280 11259 0.4070 +6280 11272 0.4540 +6280 23643 0.8500 +6280 27069 0.4350 +6280 50508 0.4540 +6280 51081 0.4780 +6280 51311 0.5430 +6280 51806 0.4290 +6280 54210 0.5390 +6280 54658 0.4100 +6280 55245 0.4050 +6280 56729 0.4110 +6280 57126 0.4290 +6280 64407 0.4010 +6280 81793 0.4370 +6280 84569 0.6260 +6280 90865 0.4310 +6280 124245 0.4780 +6280 203068 0.4450 +6280 338324 0.4020 +6280 345456 0.4380 +6280 375189 0.4340 +6280 653361 0.6330 +6280 653499 0.4290 +6280 728358 0.4380 +6281 6282 0.7160 +6281 6284 0.7120 +6281 6336 0.8430 +6281 6596 0.9630 +6281 6647 0.4760 +6281 6698 0.6220 +6281 6699 0.7190 +6281 6707 0.7590 +6281 6830 0.6050 +6281 6844 0.4930 +6281 6876 0.5590 +6281 7062 0.8700 +6281 7124 0.4980 +6281 7295 0.6010 +6281 7381 0.4270 +6281 7431 0.5080 +6281 8291 0.7540 +6281 8340 0.5510 +6281 8341 0.5480 +6281 8342 0.5500 +6281 8345 0.5500 +6281 8347 0.5440 +6281 8348 0.5520 +6281 8349 0.4930 +6281 8407 0.4190 +6281 8416 0.4790 +6281 8970 0.5600 +6281 9079 0.4160 +6281 9567 0.7330 +6281 9590 0.4750 +6281 10923 0.4700 +6281 27020 0.4040 +6281 27161 0.5060 +6281 51206 0.9540 +6281 51232 0.4080 +6281 51350 0.4040 +6281 54145 0.5630 +6281 55503 0.8780 +6281 55848 0.5430 +6281 56302 0.9130 +6281 57402 0.5260 +6281 79026 0.9990 +6281 84955 0.6210 +6281 85236 0.5630 +6281 113146 0.9490 +6281 117289 0.4400 +6281 128312 0.5510 +6281 140576 0.7110 +6281 158983 0.5520 +6281 170591 0.5230 +6281 201294 0.8020 +6281 255626 0.5480 +6281 284119 0.7290 +6281 286436 0.5520 +6281 338324 0.5760 +6281 388697 0.6420 +6281 389289 0.7330 +6281 440689 0.5530 +6281 653145 0.7400 +6281 114483833 0.5530 +6282 6285 0.5930 +6282 6670 0.5250 +6282 6677 0.4190 +6282 6729 0.4100 +6282 7040 0.4760 +6282 7076 0.4460 +6282 7132 0.4300 +6282 7356 0.4100 +6282 8291 0.5030 +6282 8407 0.5210 +6282 9168 0.4130 +6282 10551 0.4190 +6282 49860 0.4120 +6282 51806 0.5330 +6282 57402 0.5410 +6282 79026 0.4760 +6282 91860 0.5150 +6282 126637 0.5770 +6282 140576 0.7380 +6282 149018 0.4650 +6282 163688 0.5270 +6282 388697 0.5920 +6282 448834 0.4700 +6282 653145 0.6750 +6283 6285 0.6420 +6283 6288 0.6210 +6283 6317 0.4170 +6283 6318 0.4570 +6283 6347 0.4370 +6283 6348 0.4010 +6283 6351 0.4220 +6283 6356 0.5820 +6283 6364 0.4450 +6283 6372 0.5400 +6283 6556 0.7570 +6283 6590 0.4060 +6283 6688 0.4430 +6283 6947 0.4340 +6283 7039 0.5090 +6283 7079 0.6480 +6283 7096 0.4340 +6283 7097 0.5660 +6283 7099 0.9700 +6283 7124 0.5400 +6283 7132 0.5030 +6283 7305 0.4350 +6283 7448 0.4400 +6283 7621 0.4210 +6283 7850 0.5360 +6283 8337 0.4220 +6283 8338 0.4080 +6283 8361 0.4330 +6283 8369 0.4080 +6283 8740 0.5090 +6283 8807 0.4920 +6283 8809 0.4020 +6283 8875 0.5700 +6283 8993 0.5600 +6283 9332 0.6540 +6283 9370 0.4720 +6283 10288 0.4480 +6283 10563 0.4050 +6283 11009 0.4130 +6283 11024 0.4580 +6283 23601 0.4010 +6283 23643 0.5840 +6283 25818 0.4810 +6283 27035 0.5670 +6283 27101 0.6620 +6283 51311 0.5830 +6283 53831 0.4150 +6283 54210 0.5840 +6283 56300 0.4210 +6283 56729 0.5810 +6283 57126 0.4930 +6283 57402 0.4850 +6283 60675 0.4520 +6283 64407 0.4090 +6283 79887 0.4170 +6283 80271 0.4130 +6283 85440 0.4250 +6283 114609 0.4890 +6283 140576 0.5070 +6283 146225 0.4730 +6283 160364 0.4070 +6283 163778 0.4120 +6283 199675 0.6530 +6283 200315 0.4750 +6283 286887 0.4200 +6283 338324 0.6160 +6283 338339 0.5710 +6283 374454 0.4550 +6283 654364 0.4610 +6283 728358 0.5280 +6284 6285 0.5720 +6284 6857 0.9990 +6284 6902 0.4210 +6284 7411 0.4330 +6284 8668 0.4300 +6284 8817 0.4970 +6284 8822 0.4950 +6284 8823 0.4980 +6284 8877 0.7670 +6284 10471 0.4260 +6284 11165 0.4320 +6284 26097 0.5570 +6284 26281 0.4970 +6284 27006 0.4950 +6284 51266 0.6610 +6284 55193 0.8100 +6284 57402 0.4260 +6284 140576 0.4320 +6284 170591 0.6750 +6284 338324 0.5460 +6284 388697 0.6500 +6285 6286 0.6980 +6285 6288 0.4610 +6285 6299 0.4810 +6285 6347 0.4760 +6285 6402 0.4610 +6285 6403 0.4810 +6285 6469 0.4300 +6285 6506 0.6910 +6285 6507 0.7360 +6285 6532 0.7250 +6285 6616 0.4010 +6285 6622 0.5130 +6285 6647 0.4070 +6285 6656 0.4410 +6285 6657 0.6200 +6285 6662 0.4630 +6285 6663 0.7160 +6285 6714 0.4770 +6285 6774 0.4240 +6285 6853 0.4920 +6285 6855 0.5280 +6285 7054 0.4790 +6285 7099 0.8440 +6285 7122 0.4860 +6285 7124 0.5800 +6285 7157 0.9950 +6285 7345 0.6990 +6285 7431 0.4580 +6285 7442 0.5130 +6285 7837 0.4470 +6285 8190 0.7740 +6285 8404 0.4200 +6285 8678 0.6230 +6285 8826 0.6250 +6285 8900 0.4620 +6285 9531 0.4010 +6285 9611 0.5170 +6285 9927 0.4120 +6285 10215 0.7110 +6285 10381 0.5790 +6285 10536 0.5380 +6285 10716 0.4160 +6285 10763 0.7280 +6285 10804 0.4330 +6285 10840 0.7050 +6285 10963 0.4830 +6285 11075 0.4480 +6285 11329 0.7220 +6285 23012 0.6000 +6285 23118 0.4990 +6285 23640 0.6040 +6285 27101 0.6410 +6285 28513 0.4380 +6285 51655 0.4140 +6285 51806 0.6520 +6285 54209 0.4280 +6285 57030 0.4880 +6285 63973 0.4210 +6285 79026 0.4350 +6285 83988 0.4430 +6285 84260 0.5880 +6285 91860 0.6450 +6285 113146 0.4510 +6285 116448 0.5620 +6285 137902 0.4470 +6285 146713 0.7780 +6285 163688 0.6420 +6285 170591 0.4490 +6286 6303 0.4630 +6286 6590 0.4160 +6286 6636 0.4230 +6286 7430 0.4320 +6286 10551 0.6130 +6286 51203 0.4280 +6286 57402 0.4130 +6286 64766 0.9820 +6286 84896 0.5370 +6286 170591 0.5810 +6288 6289 0.9750 +6288 6291 0.7620 +6288 6347 0.6840 +6288 6357 0.4310 +6288 6363 0.5400 +6288 6364 0.5790 +6288 6366 0.4970 +6288 6368 0.4960 +6288 6373 0.5720 +6288 6374 0.6110 +6288 6406 0.4390 +6288 6622 0.6160 +6288 6714 0.5500 +6288 6774 0.6600 +6288 6778 0.5160 +6288 6804 0.5710 +6288 7040 0.5140 +6288 7042 0.4310 +6288 7045 0.4680 +6288 7076 0.5840 +6288 7097 0.6300 +6288 7099 0.7440 +6288 7124 0.7270 +6288 7128 0.4450 +6288 7204 0.4990 +6288 7276 0.8340 +6288 7412 0.6310 +6288 7436 0.5880 +6288 7448 0.4460 +6288 7941 0.6650 +6288 8128 0.6220 +6288 8490 0.5070 +6288 8504 0.5400 +6288 8542 0.7780 +6288 8997 0.4990 +6288 9051 0.4930 +6288 9518 0.4930 +6288 10287 0.4990 +6288 10379 0.4200 +6288 10563 0.5250 +6288 10663 0.4520 +6288 10681 0.4990 +6288 10800 0.4990 +6288 10874 0.6560 +6288 23236 0.4990 +6288 26575 0.4990 +6288 50616 0.5950 +6288 50865 0.5010 +6288 51449 0.6510 +6288 51561 0.4410 +6288 51599 0.5400 +6288 51764 0.6720 +6288 54331 0.7180 +6288 54959 0.4360 +6288 55666 0.4240 +6288 55829 0.8100 +6288 55911 0.5420 +6288 55937 0.7340 +6288 55970 0.5130 +6288 56300 0.4290 +6288 57105 0.4990 +6288 57817 0.5360 +6288 59345 0.5180 +6288 64407 0.5010 +6288 79017 0.4070 +6288 79135 0.5400 +6288 81494 0.4350 +6288 84870 0.4040 +6288 85477 0.5370 +6288 94235 0.5480 +6288 112744 0.5160 +6288 113174 0.4100 +6288 115557 0.4990 +6288 116519 0.6420 +6288 374897 0.4590 +6288 431704 0.4990 +6288 100528017 0.8030 +6289 6291 0.9350 +6289 6347 0.6650 +6289 6357 0.4290 +6289 6363 0.5250 +6289 6364 0.5790 +6289 6366 0.4840 +6289 6373 0.5730 +6289 6374 0.6180 +6289 6804 0.5740 +6289 7042 0.4260 +6289 7097 0.6150 +6289 7099 0.5980 +6289 7124 0.7230 +6289 7128 0.4680 +6289 7276 0.6980 +6289 7412 0.6350 +6289 7436 0.5930 +6289 7448 0.4470 +6289 7941 0.6690 +6289 8128 0.6430 +6289 8504 0.5400 +6289 8542 0.7630 +6289 9518 0.4910 +6289 10379 0.4120 +6289 10563 0.5370 +6289 10663 0.4500 +6289 10874 0.4300 +6289 50616 0.5950 +6289 51449 0.6450 +6289 51599 0.5400 +6289 54331 0.4440 +6289 55666 0.4260 +6289 55829 0.7440 +6289 55911 0.5490 +6289 55937 0.7780 +6289 56300 0.4120 +6289 57817 0.5340 +6289 79135 0.5400 +6289 85477 0.5230 +6289 116519 0.6460 +6289 100528017 0.7530 +6291 6906 0.4120 +6291 7018 0.4090 +6291 7097 0.5270 +6291 7276 0.8240 +6291 7436 0.6810 +6291 7941 0.6270 +6291 8504 0.5400 +6291 8542 0.7270 +6291 23780 0.4030 +6291 51449 0.6670 +6291 51599 0.5400 +6291 54979 0.4060 +6291 55829 0.5530 +6291 55911 0.5420 +6291 55937 0.7400 +6291 79135 0.5430 +6291 85477 0.6530 +6291 113174 0.4700 +6291 116519 0.6820 +6291 100528017 0.7030 +6293 6469 0.6080 +6293 6646 0.7920 +6293 6811 0.5440 +6293 6892 0.4150 +6293 7110 0.6250 +6293 7260 0.8630 +6293 8435 0.8560 +6293 8449 0.4230 +6293 8674 0.8730 +6293 8675 0.8900 +6293 8677 0.8040 +6293 8774 0.5630 +6293 8775 0.5440 +6293 8915 0.4270 +6293 9183 0.5110 +6293 9341 0.6090 +6293 9363 0.4070 +6293 9367 0.5270 +6293 9382 0.8140 +6293 9392 0.4630 +6293 9482 0.4370 +6293 9559 0.4050 +6293 9589 0.4870 +6293 9609 0.4800 +6293 9648 0.6960 +6293 9827 0.6290 +6293 10139 0.7190 +6293 10193 0.8640 +6293 10226 0.5940 +6293 10228 0.8730 +6293 10244 0.5500 +6293 10466 0.8080 +6293 10490 0.4240 +6293 10618 0.6990 +6293 10652 0.4540 +6293 11311 0.6660 +6293 11336 0.5840 +6293 22796 0.8010 +6293 22836 0.5340 +6293 23265 0.7040 +6293 23339 0.5780 +6293 23355 0.4790 +6293 25839 0.8240 +6293 26225 0.4660 +6293 50846 0.6080 +6293 51209 0.5250 +6293 51542 0.9990 +6293 51560 0.7370 +6293 51645 0.4700 +6293 51699 0.4750 +6293 51780 0.4390 +6293 53407 0.4390 +6293 55088 0.4360 +6293 55275 0.9990 +6293 55610 0.9980 +6293 55684 0.4320 +6293 55737 0.5390 +6293 55763 0.7470 +6293 55770 0.4180 +6293 55823 0.4510 +6293 57511 0.8910 +6293 57589 0.6190 +6293 58478 0.4430 +6293 60561 0.4810 +6293 63908 0.4990 +6293 64145 0.4480 +6293 64601 0.4360 +6293 65082 0.4790 +6293 79571 0.6840 +6293 79874 0.4540 +6293 79969 0.4030 +6293 81876 0.4710 +6293 83548 0.9180 +6293 83871 0.4220 +6293 84084 0.4490 +6293 90196 0.6930 +6293 91949 0.7970 +6293 120892 0.5320 +6293 126208 0.4050 +6293 140459 0.4100 +6293 143187 0.8670 +6293 165055 0.4440 +6293 339122 0.5700 +6293 347517 0.4490 +6294 6304 0.4070 +6294 6421 0.5650 +6294 6426 0.8570 +6294 6427 0.5790 +6294 6428 0.6420 +6294 6429 0.4130 +6294 6431 0.4430 +6294 6432 0.6860 +6294 6434 0.6110 +6294 6612 0.4510 +6294 6613 0.6640 +6294 6625 0.6220 +6294 6626 0.5120 +6294 6631 0.4480 +6294 6633 0.5510 +6294 6634 0.4020 +6294 6635 0.4550 +6294 6636 0.4780 +6294 6637 0.4580 +6294 6714 0.4380 +6294 6732 0.7900 +6294 6741 0.4480 +6294 7082 0.5020 +6294 7157 0.4110 +6294 7307 0.6080 +6294 7329 0.5110 +6294 7341 0.6150 +6294 7536 0.4060 +6294 7919 0.5580 +6294 7920 0.4220 +6294 8148 0.7380 +6294 8554 0.6550 +6294 8570 0.4870 +6294 8683 0.4920 +6294 8841 0.5410 +6294 8880 0.4350 +6294 8988 0.5320 +6294 9073 0.5490 +6294 9076 0.4290 +6294 9413 0.4240 +6294 9414 0.9570 +6294 9584 0.4980 +6294 9611 0.6360 +6294 9667 0.7540 +6294 9782 0.7930 +6294 9987 0.4760 +6294 10146 0.4420 +6294 10155 0.4610 +6294 10174 0.7390 +6294 10189 0.5130 +6294 10236 0.5150 +6294 10250 0.4840 +6294 10284 0.4240 +6294 10291 0.4090 +6294 10432 0.6380 +6294 10657 0.7930 +6294 10664 0.4560 +6294 10949 0.4930 +6294 11051 0.4630 +6294 11052 0.6980 +6294 11100 0.6520 +6294 11338 0.6770 +6294 22916 0.7000 +6294 22985 0.7160 +6294 23013 0.5100 +6294 23016 0.4340 +6294 23435 0.6080 +6294 23451 0.4040 +6294 23476 0.5680 +6294 26097 0.4260 +6294 27134 0.7090 +6294 27316 0.9210 +6294 29896 0.4140 +6294 51593 0.5790 +6294 51639 0.4690 +6294 55234 0.4420 +6294 55552 0.4590 +6294 56259 0.5390 +6294 84950 0.4270 +6294 91746 0.7710 +6294 93649 0.4910 +6294 117531 0.4300 +6294 124245 0.5670 +6294 140467 0.4320 +6294 140890 0.6070 +6295 6363 0.5340 +6295 6366 0.4910 +6295 6367 0.4230 +6295 6469 0.4590 +6295 6608 0.6920 +6295 6714 0.8770 +6295 6752 0.5480 +6295 6755 0.5710 +6295 6772 0.4260 +6295 6773 0.4180 +6295 6863 0.4810 +6295 7049 0.4340 +6295 7170 0.5970 +6295 7187 0.4550 +6295 7201 0.5320 +6295 7295 0.4460 +6295 7852 0.6820 +6295 8100 0.4550 +6295 8218 0.8000 +6295 8322 0.4710 +6295 8490 0.4410 +6295 8601 0.4650 +6295 8786 0.4880 +6295 8787 0.4850 +6295 8797 0.4200 +6295 8801 0.7470 +6295 8882 0.4610 +6295 9038 0.4500 +6295 9187 0.4550 +6295 9371 0.4690 +6295 9559 0.5580 +6295 9628 0.4750 +6295 10287 0.4650 +6295 10536 0.4570 +6295 10628 0.6060 +6295 10681 0.5120 +6295 10692 0.4070 +6295 11060 0.5290 +6295 11069 0.4700 +6295 11127 0.8670 +6295 11318 0.4310 +6295 23284 0.4790 +6295 23327 0.7790 +6295 25769 0.5370 +6295 26575 0.4640 +6295 29924 0.4950 +6295 51699 0.5160 +6295 51806 0.7620 +6295 53831 0.5280 +6295 54714 0.4190 +6295 54952 0.4090 +6295 55737 0.5760 +6295 57007 0.7240 +6295 57561 0.7010 +6295 64407 0.4310 +6295 84687 0.8630 +6295 85397 0.4660 +6295 91860 0.7790 +6295 91947 0.5190 +6295 92714 0.5930 +6295 94233 0.5950 +6295 130162 0.4920 +6295 131890 0.9570 +6295 163688 0.7610 +6295 200558 0.4180 +6295 388531 0.6820 +6295 431704 0.4740 +6295 645432 0.4450 +6296 6389 0.4370 +6296 6652 0.4730 +6296 6713 0.4070 +6296 7915 0.5440 +6296 8170 0.4790 +6296 8309 0.5650 +6296 8310 0.4420 +6296 8564 0.4190 +6296 8854 0.4240 +6296 9399 0.4010 +6296 9607 0.4480 +6296 9862 0.4430 +6296 10005 0.4370 +6296 10449 0.5330 +6296 10455 0.4710 +6296 10873 0.4470 +6296 10919 0.4900 +6296 22982 0.4430 +6296 23181 0.4430 +6296 26061 0.4320 +6296 26063 0.4070 +6296 26206 0.4360 +6296 26275 0.4350 +6296 27034 0.5000 +6296 28976 0.4650 +6296 51084 0.5510 +6296 51179 0.4720 +6296 54596 0.5220 +6296 55268 0.4990 +6296 55301 0.4430 +6296 55862 0.4730 +6296 57591 0.4770 +6296 57609 0.4430 +6296 64577 0.4100 +6296 80221 0.5550 +6296 80724 0.4760 +6296 84129 0.4490 +6296 84263 0.7000 +6296 112479 0.4370 +6296 126133 0.4460 +6296 132949 0.4630 +6296 137872 0.4050 +6296 157724 0.5710 +6296 157869 0.4440 +6296 197322 0.4860 +6296 254042 0.4570 +6296 376497 0.5020 +6296 390916 0.5730 +6297 6299 0.6680 +6297 6474 0.5340 +6297 6495 0.4470 +6297 6657 0.8140 +6297 9878 0.4240 +6297 10058 0.4500 +6297 10215 0.6230 +6297 22900 0.4070 +6297 26468 0.6200 +6297 55102 0.4180 +6297 55237 0.4390 +6297 55714 0.4080 +6297 56339 0.4370 +6297 63874 0.4170 +6297 64220 0.5050 +6297 79923 0.6150 +6297 83637 0.4120 +6297 392255 0.4480 +6299 6474 0.6120 +6299 6495 0.8100 +6299 6597 0.4900 +6299 6657 0.8910 +6299 6910 0.6520 +6299 6949 0.5140 +6299 7013 0.8350 +6299 7341 0.5120 +6299 7468 0.8800 +6299 7484 0.4570 +6299 7798 0.5240 +6299 7849 0.4540 +6299 8433 0.6130 +6299 8932 0.5160 +6299 9112 0.5310 +6299 9219 0.4760 +6299 9496 0.4320 +6299 9687 0.4350 +6299 9738 0.4830 +6299 10021 0.4970 +6299 10052 0.4480 +6299 10474 0.4370 +6299 10736 0.8620 +6299 11266 0.4280 +6299 23019 0.5830 +6299 27164 0.6840 +6299 27302 0.4390 +6299 27324 0.5090 +6299 29072 0.6830 +6299 29842 0.4250 +6299 51804 0.4770 +6299 53615 0.4450 +6299 54209 0.4900 +6299 54361 0.4570 +6299 54815 0.6540 +6299 55237 0.5130 +6299 55636 0.4010 +6299 56944 0.5860 +6299 57167 0.9390 +6299 57459 0.7820 +6299 64093 0.4810 +6299 64805 0.6900 +6299 79598 0.4930 +6299 79727 0.4070 +6299 79923 0.9720 +6299 79980 0.4360 +6299 92002 0.8150 +6299 114781 0.4550 +6299 147912 0.4510 +6299 338773 0.7530 +6300 6416 0.9290 +6300 6640 0.8180 +6300 6641 0.4750 +6300 6667 0.9160 +6300 6714 0.7430 +6300 6774 0.4090 +6300 6839 0.7850 +6300 6885 0.9230 +6300 6925 0.5130 +6300 6929 0.5470 +6300 6938 0.5060 +6300 7099 0.4530 +6300 7124 0.5910 +6300 7157 0.9460 +6300 7177 0.4400 +6300 7297 0.4690 +6300 7535 0.9190 +6300 7581 0.5270 +6300 7867 0.9670 +6300 8061 0.8080 +6300 8202 0.9130 +6300 8440 0.5050 +6300 8493 0.4940 +6300 8550 0.9660 +6300 8767 0.6290 +6300 8831 0.4680 +6300 8878 0.4870 +6300 8915 0.9140 +6300 8986 0.9150 +6300 8988 0.5930 +6300 9043 0.5780 +6300 9252 0.9150 +6300 9261 0.9740 +6300 9586 0.4070 +6300 10000 0.9250 +6300 10392 0.5580 +6300 10411 0.9120 +6300 10454 0.8280 +6300 10498 0.9210 +6300 10681 0.7370 +6300 10746 0.4030 +6300 10891 0.9310 +6300 10892 0.9170 +6300 11016 0.4160 +6300 11069 0.9100 +6300 11221 0.8860 +6300 11266 0.4650 +6300 23118 0.6050 +6300 23479 0.4900 +6300 23513 0.7720 +6300 23621 0.5030 +6300 23654 0.6790 +6300 27347 0.5900 +6300 50937 0.5160 +6300 51764 0.6520 +6300 51806 0.6210 +6300 54205 0.4250 +6300 54331 0.6640 +6300 55333 0.4670 +6300 55578 0.4970 +6300 55970 0.6610 +6300 56731 0.4870 +6300 57097 0.6020 +6300 59345 0.7370 +6300 64127 0.5680 +6300 64170 0.9380 +6300 79145 0.4160 +6300 80824 0.8870 +6300 84867 0.9220 +6300 91653 0.5260 +6300 91807 0.6290 +6300 91860 0.6010 +6300 92241 0.7460 +6300 93649 0.5220 +6300 94235 0.6520 +6300 163688 0.6020 +6300 257397 0.5650 +6300 653361 0.7510 +6300 100271849 0.8130 +6301 6414 0.4200 +6301 6472 0.4590 +6301 6836 0.4350 +6301 6871 0.8700 +6301 6880 0.7700 +6301 6881 0.8640 +6301 6883 0.8610 +6301 6897 0.9150 +6301 7349 0.4470 +6301 7407 0.8790 +6301 7453 0.8990 +6301 7965 0.4180 +6301 8295 0.8450 +6301 8464 0.8770 +6301 8565 0.9410 +6301 8833 0.4740 +6301 8850 0.7830 +6301 9255 0.5720 +6301 9349 0.4040 +6301 9439 0.5570 +6301 9669 0.5040 +6301 10056 0.4880 +6301 10102 0.5500 +6301 10352 0.8690 +6301 10474 0.8520 +6301 10667 0.7010 +6301 10980 0.4160 +6301 10987 0.4200 +6301 11181 0.4240 +6301 11232 0.5260 +6301 22928 0.7060 +6301 22929 0.7230 +6301 22933 0.5920 +6301 23326 0.5720 +6301 23395 0.9170 +6301 23438 0.8400 +6301 24140 0.4250 +6301 25936 0.4780 +6301 25973 0.8530 +6301 27068 0.4460 +6301 27291 0.6210 +6301 29789 0.4380 +6301 51067 0.8670 +6301 51091 0.9650 +6301 51520 0.9330 +6301 51540 0.5010 +6301 51616 0.7680 +6301 51759 0.4890 +6301 54952 0.5690 +6301 55157 0.5900 +6301 55172 0.4720 +6301 55578 0.8750 +6301 55699 0.9040 +6301 55798 0.4940 +6301 56931 0.6520 +6301 56942 0.4350 +6301 56943 0.7540 +6301 57038 0.9500 +6301 57176 0.8590 +6301 57505 0.7750 +6301 57818 0.4890 +6301 60678 0.8500 +6301 79048 0.6250 +6301 79587 0.8890 +6301 79693 0.4250 +6301 79728 0.5970 +6301 79731 0.8450 +6301 79828 0.5060 +6301 80222 0.8380 +6301 84464 0.4370 +6301 85476 0.4730 +6301 92399 0.4530 +6301 92579 0.4970 +6301 92935 0.8240 +6301 93974 0.4110 +6301 112869 0.8690 +6301 112970 0.5740 +6301 118672 0.9990 +6301 121053 0.5010 +6301 121268 0.6510 +6301 123263 0.5330 +6301 123283 0.8390 +6301 124454 0.7960 +6301 131965 0.7260 +6301 143162 0.6090 +6301 158880 0.5720 +6301 339175 0.5420 +6301 389856 0.5720 +6301 101927367 0.4440 +6302 6778 0.4280 +6302 7102 0.4290 +6302 7103 0.5040 +6302 7105 0.4320 +6302 7106 0.4400 +6302 8089 0.4800 +6302 10077 0.4980 +6302 10098 0.5660 +6302 10100 0.5200 +6302 10102 0.4130 +6302 10103 0.5100 +6302 10576 0.4460 +6302 10818 0.5340 +6302 10956 0.5550 +6302 11010 0.4060 +6302 23390 0.4130 +6302 23554 0.4040 +6302 23555 0.4950 +6302 25895 0.4590 +6302 26262 0.6680 +6302 26526 0.4310 +6302 79738 0.4180 +6302 91419 0.5070 +6302 123879 0.4170 +6302 144453 0.4440 +6302 374462 0.4040 +6302 376132 0.4680 +6302 441631 0.4620 +6303 6520 0.4660 +6303 6611 0.7830 +6303 6723 0.9720 +6303 6921 0.7150 +6303 7037 0.4250 +6303 8031 0.5720 +6303 9563 0.4630 +6303 9817 0.6430 +6303 9945 0.4970 +6303 10162 0.5930 +6303 10399 0.7030 +6303 11130 0.5470 +6303 11243 0.9090 +6303 11315 0.4360 +6303 22980 0.7580 +6303 23657 0.4430 +6303 25936 0.6180 +6303 27165 0.5740 +6303 30061 0.4630 +6303 51582 0.4290 +6303 54498 0.8550 +6303 54583 0.4540 +6303 55240 0.4910 +6303 55916 0.4540 +6303 79814 0.9500 +6303 79980 0.5100 +6303 83449 0.4360 +6303 84991 0.5960 +6303 92292 0.8060 +6303 112483 0.9800 +6303 113451 0.6000 +6303 130940 0.4240 +6303 138311 0.4200 +6303 196743 0.9870 +6303 100527963 0.9070 +6304 6612 0.4570 +6304 6613 0.4900 +6304 6657 0.6120 +6304 6660 0.5150 +6304 6688 0.5460 +6304 6689 0.6260 +6304 6693 0.4220 +6304 6929 0.5610 +6304 6932 0.6130 +6304 7025 0.5300 +6304 7026 0.5120 +6304 7157 0.4260 +6304 7268 0.5990 +6304 7329 0.7380 +6304 7341 0.6200 +6304 7528 0.5930 +6304 7584 0.4400 +6304 7750 0.5300 +6304 8320 0.4300 +6304 8356 0.5440 +6304 8467 0.6860 +6304 8535 0.6090 +6304 8554 0.7250 +6304 8850 0.5990 +6304 9219 0.4220 +6304 9314 0.5520 +6304 10210 0.4510 +6304 10401 0.4740 +6304 10664 0.4950 +6304 10716 0.5580 +6304 11177 0.6470 +6304 22807 0.4410 +6304 23314 0.8100 +6304 23316 0.4260 +6304 23411 0.6280 +6304 23475 0.4340 +6304 23598 0.5840 +6304 26468 0.4360 +6304 30009 0.4240 +6304 50943 0.6980 +6304 51176 0.6350 +6304 51588 0.4670 +6304 55553 0.4010 +6304 55832 0.4210 +6304 59286 0.4020 +6304 60468 0.6190 +6304 64375 0.4500 +6304 64750 0.4020 +6304 64919 0.4970 +6304 91107 0.6760 +6305 6839 0.5970 +6305 6942 0.5160 +6305 8498 0.4260 +6305 8565 0.4550 +6305 8776 0.8600 +6305 8897 0.4420 +6305 8898 0.9930 +6305 9107 0.6140 +6305 9110 0.4720 +6305 9620 0.4620 +6305 9701 0.5480 +6305 9827 0.5380 +6305 9896 0.6110 +6305 10869 0.4320 +6305 10981 0.4450 +6305 11021 0.4450 +6305 22870 0.4010 +6305 23011 0.7200 +6305 23774 0.5140 +6305 26499 0.5670 +6305 27352 0.4580 +6305 29801 0.4980 +6305 51343 0.8410 +6305 51560 0.5200 +6305 51762 0.4330 +6305 54332 0.4750 +6305 54545 0.4450 +6305 55526 0.4600 +6305 57403 0.4230 +6305 57805 0.5420 +6305 64419 0.4940 +6305 66036 0.4150 +6305 79087 0.4130 +6305 79628 0.6100 +6305 83642 0.5100 +6305 83648 0.4330 +6305 85378 0.5410 +6305 90678 0.4210 +6305 121512 0.5850 +6305 221496 0.4630 +6305 254050 0.4180 +6305 440712 0.4200 +6307 6309 0.9910 +6307 6319 0.6130 +6307 6646 0.4700 +6307 6713 0.9920 +6307 6720 0.6960 +6307 6721 0.7720 +6307 7108 0.9870 +6307 8435 0.4120 +6307 8529 0.4170 +6307 8564 0.4640 +6307 9415 0.6310 +6307 9420 0.7650 +6307 9453 0.5330 +6307 9619 0.4040 +6307 10280 0.8930 +6307 10654 0.6100 +6307 10682 0.7400 +6307 10858 0.5420 +6307 11161 0.9940 +6307 11283 0.4510 +6307 22937 0.4490 +6307 26166 0.4910 +6307 27430 0.6200 +6307 50814 0.9970 +6307 51004 0.4620 +6307 51141 0.4180 +6307 51302 0.7490 +6307 51478 0.9980 +6307 51805 0.5610 +6307 55239 0.4680 +6307 55902 0.4210 +6307 56603 0.4280 +6307 57412 0.4910 +6307 57834 0.4150 +6307 60481 0.4180 +6307 66002 0.4150 +6307 79071 0.4510 +6307 79152 0.7760 +6307 80270 0.7840 +6307 80777 0.4710 +6307 81033 0.5260 +6307 91734 0.7410 +6307 93517 0.6810 +6307 126410 0.5090 +6307 134429 0.6080 +6307 137682 0.4790 +6307 199974 0.4150 +6307 260293 0.4150 +6307 284541 0.4540 +6307 285440 0.4360 +6307 286151 0.4910 +6307 340390 0.4790 +6307 347475 0.6920 +6309 6319 0.5550 +6309 6646 0.4300 +6309 6713 0.9330 +6309 6720 0.6990 +6309 6721 0.7760 +6309 7108 0.9740 +6309 7264 0.4120 +6309 8564 0.5170 +6309 9023 0.9690 +6309 9415 0.6270 +6309 9420 0.6260 +6309 9453 0.5380 +6309 10098 0.4410 +6309 10280 0.8690 +6309 10654 0.6730 +6309 10682 0.9950 +6309 10826 0.9650 +6309 10858 0.5100 +6309 11161 0.9890 +6309 26166 0.6850 +6309 26580 0.5600 +6309 27430 0.7170 +6309 50814 0.9750 +6309 51004 0.4500 +6309 51141 0.4780 +6309 51144 0.5380 +6309 51302 0.6040 +6309 51478 0.9970 +6309 51805 0.5770 +6309 55239 0.4370 +6309 55902 0.4290 +6309 57412 0.6850 +6309 60481 0.4070 +6309 65985 0.4070 +6309 79152 0.6310 +6309 79966 0.4120 +6309 80270 0.8290 +6309 80777 0.4460 +6309 84650 0.5440 +6309 91734 0.6850 +6309 93517 0.7480 +6309 126410 0.4120 +6309 134429 0.5350 +6309 137682 0.4820 +6309 285440 0.5420 +6309 286151 0.6850 +6309 340390 0.4790 +6309 347475 0.5490 +6310 6311 0.9690 +6310 6314 0.8980 +6310 6622 0.6290 +6310 6647 0.4200 +6310 6658 0.4860 +6310 6708 0.4220 +6310 6712 0.6750 +6310 6767 0.5560 +6310 6782 0.5010 +6310 6871 0.4080 +6310 6908 0.7370 +6310 7324 0.7980 +6310 7341 0.4640 +6310 7415 0.5430 +6310 7514 0.4710 +6310 7531 0.6110 +6310 7534 0.8310 +6310 7874 0.6690 +6310 8125 0.8180 +6310 8161 0.9120 +6310 8216 0.4560 +6310 8290 0.4270 +6310 8356 0.4290 +6310 8446 0.4920 +6310 8841 0.7030 +6310 9093 0.4460 +6310 9444 0.5660 +6310 9612 0.9790 +6310 9666 0.8040 +6310 9698 0.4200 +6310 9759 0.4140 +6310 10049 0.4960 +6310 10073 0.6790 +6310 10084 0.9460 +6310 10190 0.4670 +6310 10273 0.8160 +6310 10524 0.9790 +6310 11030 0.7820 +6310 11129 0.4200 +6310 11244 0.4900 +6310 11273 0.5630 +6310 11317 0.9000 +6310 11338 0.7330 +6310 23152 0.9960 +6310 23345 0.5000 +6310 23369 0.9160 +6310 23435 0.6750 +6310 23543 0.9070 +6310 25814 0.6270 +6310 25894 0.7480 +6310 25978 0.4740 +6310 26278 0.6940 +6310 29128 0.4670 +6310 29978 0.6910 +6310 51207 0.5030 +6310 51501 0.4080 +6310 51586 0.6010 +6310 51657 0.5580 +6310 51701 0.5090 +6310 54715 0.7540 +6310 54793 0.4040 +6310 54845 0.4170 +6310 55224 0.4040 +6310 55636 0.4060 +6310 56893 0.9920 +6310 57410 0.4390 +6310 57731 0.4120 +6310 63971 0.4030 +6310 84206 0.6940 +6310 84528 0.5640 +6310 84775 0.4890 +6310 84991 0.9750 +6310 90678 0.5450 +6310 91752 0.6790 +6310 92552 0.7710 +6310 127002 0.5990 +6310 128434 0.5510 +6310 146057 0.6330 +6310 147912 0.4180 +6310 202500 0.4220 +6310 203228 0.6530 +6310 222255 0.5890 +6310 342371 0.9700 +6310 400916 0.4690 +6310 401236 0.5940 +6310 440093 0.4220 +6310 440686 0.4220 +6310 653604 0.4220 +6311 6314 0.9130 +6311 6455 0.5400 +6311 6456 0.9240 +6311 6457 0.8820 +6311 6606 0.4840 +6311 6607 0.5070 +6311 6612 0.4130 +6311 6622 0.6620 +6311 6628 0.5630 +6311 6632 0.4850 +6311 6636 0.4980 +6311 6638 0.8520 +6311 6647 0.6610 +6311 6712 0.6610 +6311 7072 0.8950 +6311 7073 0.7260 +6311 7277 0.4460 +6311 7345 0.4260 +6311 7415 0.6400 +6311 7884 0.4080 +6311 8087 0.8020 +6311 8148 0.5330 +6311 8315 0.5130 +6311 8398 0.6720 +6311 8522 0.4270 +6311 8662 0.5060 +6311 8761 0.8980 +6311 8867 0.5250 +6311 8878 0.5130 +6311 9217 0.7310 +6311 9444 0.4800 +6311 9513 0.6810 +6311 9557 0.4040 +6311 9698 0.4900 +6311 9782 0.7630 +6311 9829 0.6110 +6311 9896 0.6890 +6311 9898 0.4810 +6311 9908 0.5720 +6311 9931 0.5330 +6311 9939 0.5310 +6311 9987 0.7190 +6311 10019 0.7650 +6311 10084 0.5740 +6311 10133 0.6240 +6311 10146 0.9480 +6311 10280 0.4720 +6311 10399 0.4690 +6311 10427 0.4290 +6311 10492 0.5490 +6311 10521 0.4050 +6311 10605 0.5020 +6311 10657 0.5290 +6311 10658 0.4390 +6311 11030 0.5610 +6311 11273 0.9530 +6311 11315 0.4100 +6311 22916 0.4070 +6311 23025 0.5070 +6311 23064 0.7900 +6311 23152 0.4740 +6311 23196 0.4550 +6311 23316 0.5470 +6311 23317 0.5530 +6311 23367 0.6820 +6311 23400 0.6110 +6311 23405 0.4810 +6311 23435 0.9920 +6311 23543 0.6400 +6311 23644 0.4390 +6311 25793 0.5980 +6311 25814 0.6850 +6311 25888 0.4350 +6311 25894 0.5810 +6311 25940 0.8800 +6311 25978 0.6980 +6311 25983 0.4270 +6311 26058 0.7250 +6311 26065 0.6830 +6311 26135 0.4100 +6311 26259 0.4320 +6311 26353 0.4910 +6311 26523 0.6300 +6311 26986 0.9980 +6311 27067 0.5160 +6311 27161 0.4220 +6311 27257 0.4430 +6311 27429 0.4610 +6311 29110 0.5490 +6311 29978 0.7790 +6311 30011 0.6760 +6311 51142 0.4600 +6311 51247 0.4560 +6311 51493 0.4970 +6311 51637 0.5110 +6311 51699 0.4830 +6311 54464 0.6180 +6311 54499 0.4810 +6311 54542 0.6680 +6311 54664 0.4750 +6311 54715 0.9950 +6311 54726 0.4890 +6311 54832 0.5150 +6311 54952 0.6430 +6311 55239 0.4310 +6311 55255 0.4010 +6311 55277 0.5210 +6311 55364 0.5270 +6311 55737 0.5510 +6311 55802 0.7040 +6311 56478 0.4610 +6311 56893 0.5330 +6311 57338 0.4360 +6311 57521 0.4220 +6311 57532 0.8160 +6311 57679 0.7410 +6311 59348 0.5700 +6311 60312 0.4030 +6311 65018 0.5600 +6311 79608 0.4710 +6311 79727 0.4020 +6311 80018 0.4750 +6311 80022 0.4040 +6311 80153 0.7860 +6311 80208 0.6940 +6311 80336 0.7130 +6311 84316 0.5100 +6311 84991 0.5640 +6311 92552 0.9610 +6311 92912 0.4150 +6311 113251 0.4460 +6311 120892 0.8350 +6311 123606 0.4830 +6311 124801 0.9850 +6311 126259 0.5100 +6311 127002 0.4600 +6311 132430 0.6930 +6311 140775 0.4010 +6311 140886 0.6510 +6311 146057 0.6130 +6311 147650 0.6890 +6311 149041 0.6770 +6311 167227 0.4920 +6311 192669 0.4440 +6311 196513 0.6820 +6311 203228 0.8560 +6311 220988 0.4640 +6311 222255 0.5820 +6311 340529 0.6340 +6311 347744 0.5820 +6311 348262 0.4040 +6311 400916 0.7290 +6311 404734 0.4270 +6311 645974 0.5240 +6314 6613 0.6760 +6314 6687 0.4040 +6314 6712 0.8270 +6314 6871 0.9270 +6314 6873 0.5400 +6314 6874 0.6710 +6314 6877 0.8980 +6314 6878 0.9510 +6314 6879 0.5520 +6314 6880 0.9990 +6314 6881 0.9990 +6314 6883 0.9990 +6314 6885 0.5420 +6314 6908 0.9220 +6314 7311 0.7010 +6314 7314 0.6920 +6314 7316 0.7110 +6314 7341 0.4390 +6314 7415 0.4240 +6314 8085 0.4160 +6314 8290 0.4390 +6314 8295 0.9990 +6314 8329 0.5450 +6314 8331 0.5690 +6314 8334 0.5450 +6314 8337 0.8120 +6314 8338 0.8120 +6314 8340 0.7090 +6314 8341 0.7080 +6314 8342 0.7120 +6314 8345 0.7090 +6314 8347 0.7840 +6314 8348 0.7090 +6314 8349 0.8580 +6314 8356 0.7400 +6314 8395 0.4240 +6314 8464 0.9980 +6314 8470 0.4680 +6314 8841 0.5260 +6314 8850 0.9800 +6314 8970 0.7090 +6314 9101 0.5190 +6314 9463 0.4340 +6314 9611 0.5860 +6314 9612 0.5730 +6314 9913 0.9820 +6314 9960 0.6200 +6314 9968 0.4100 +6314 10002 0.5510 +6314 10084 0.4450 +6314 10474 0.9960 +6314 10528 0.5410 +6314 10580 0.8930 +6314 10629 0.9980 +6314 10939 0.5710 +6314 11091 0.5770 +6314 23064 0.4640 +6314 23326 0.9990 +6314 23345 0.6200 +6314 23361 0.5190 +6314 23450 0.9430 +6314 25814 0.8560 +6314 25894 0.7450 +6314 26009 0.5600 +6314 27097 0.9960 +6314 27443 0.5270 +6314 51232 0.4060 +6314 51562 0.5640 +6314 51616 0.9790 +6314 51710 0.5260 +6314 54107 0.5550 +6314 54145 0.4430 +6314 54840 0.4450 +6314 55578 0.9990 +6314 55689 0.7230 +6314 56254 0.4440 +6314 56652 0.4480 +6314 56655 0.5400 +6314 56943 0.9990 +6314 56970 0.9990 +6314 57325 0.5890 +6314 57338 0.4330 +6314 79595 0.8130 +6314 80818 0.5190 +6314 83443 0.9320 +6314 85235 0.5450 +6314 85236 0.7080 +6314 92552 0.6920 +6314 92815 0.5450 +6314 93624 0.9770 +6314 112869 0.9960 +6314 115560 0.5200 +6314 117143 0.9980 +6314 127002 0.4070 +6314 128312 0.7100 +6314 146057 0.7920 +6314 148266 0.5190 +6314 158880 0.7940 +6314 158983 0.4440 +6314 203228 0.4330 +6314 221302 0.6260 +6314 221613 0.5450 +6314 255626 0.7080 +6314 284390 0.5200 +6314 286436 0.4450 +6314 317772 0.5450 +6314 339453 0.4310 +6314 343641 0.4980 +6314 387332 0.4040 +6314 389856 0.7580 +6314 440093 0.4390 +6314 440686 0.4390 +6314 440689 0.7100 +6314 552889 0.7250 +6314 653604 0.6490 +6314 114483833 0.4480 +6317 6318 0.9990 +6317 6699 0.5430 +6317 6701 0.5030 +6317 6707 0.4480 +6317 7348 0.4050 +6317 7391 0.4160 +6317 8525 0.6630 +6317 8766 0.4900 +6317 9126 0.4610 +6317 9267 0.5100 +6317 9595 0.7460 +6317 10274 0.4180 +6317 11005 0.4700 +6317 23581 0.5020 +6317 25818 0.5190 +6317 27039 0.4220 +6317 28970 0.4220 +6317 30816 0.4660 +6317 51100 0.4790 +6317 81609 0.7620 +6317 92747 0.5750 +6317 203328 0.4690 +6317 286887 0.4290 +6317 338324 0.4220 +6317 405754 0.4680 +6317 653499 0.5910 +6318 6701 0.4790 +6318 6703 0.5020 +6318 7348 0.4110 +6318 7391 0.4180 +6318 9407 0.4780 +6318 25818 0.4820 +6318 26085 0.4270 +6318 27161 0.4290 +6318 51050 0.4820 +6318 56300 0.5320 +6318 92747 0.4620 +6318 221476 0.4320 +6318 338324 0.5620 +6318 653499 0.4910 +6319 6514 0.4040 +6319 6517 0.5850 +6319 6646 0.4230 +6319 6713 0.6920 +6319 6720 0.9760 +6319 6721 0.7530 +6319 6785 0.5460 +6319 7069 0.5980 +6319 7113 0.4910 +6319 7124 0.4460 +6319 7350 0.5430 +6319 7351 0.4460 +6319 7376 0.6280 +6319 7415 0.5560 +6319 7436 0.4240 +6319 7494 0.4100 +6319 7837 0.5490 +6319 8204 0.5720 +6319 8309 0.4040 +6319 8310 0.7120 +6319 8553 0.4230 +6319 8560 0.4510 +6319 8612 0.4080 +6319 8694 0.7920 +6319 9200 0.9170 +6319 9213 0.5780 +6319 9217 0.4470 +6319 9370 0.6390 +6319 9415 0.9710 +6319 9420 0.6460 +6319 9524 0.9250 +6319 9619 0.4470 +6319 9663 0.4030 +6319 9971 0.5200 +6319 10005 0.4170 +6319 10062 0.7560 +6319 10162 0.4640 +6319 10400 0.4120 +6319 10449 0.4760 +6319 10455 0.4380 +6319 10554 0.5860 +6319 10555 0.5850 +6319 10891 0.6030 +6319 10998 0.5020 +6319 10999 0.4440 +6319 11001 0.5430 +6319 11343 0.4370 +6319 22937 0.5510 +6319 23175 0.6500 +6319 23305 0.5360 +6319 23344 0.4060 +6319 23411 0.4340 +6319 26291 0.5120 +6319 51085 0.7320 +6319 51141 0.4710 +6319 51144 0.9670 +6319 51167 0.8760 +6319 51495 0.9220 +6319 51700 0.8200 +6319 51703 0.5940 +6319 51706 0.8200 +6319 53354 0.4040 +6319 54898 0.6780 +6319 54947 0.4530 +6319 54995 0.4830 +6319 55326 0.4040 +6319 55843 0.4650 +6319 55902 0.5880 +6319 56894 0.5180 +6319 56895 0.4050 +6319 57104 0.6520 +6319 57649 0.5940 +6319 57678 0.8390 +6319 57818 0.4140 +6319 60481 0.7810 +6319 63924 0.4910 +6319 64240 0.6230 +6319 64241 0.5970 +6319 64834 0.6530 +6319 79071 0.9840 +6319 79152 0.5400 +6319 79602 0.4770 +6319 79646 0.6420 +6319 79661 0.4990 +6319 79888 0.5420 +6319 79966 0.9400 +6319 79993 0.5460 +6319 80025 0.6330 +6319 80339 0.5150 +6319 80347 0.4200 +6319 80777 0.9850 +6319 83401 0.6710 +6319 84532 0.4500 +6319 84649 0.8440 +6319 84803 0.6000 +6319 92579 0.4290 +6319 93183 0.4630 +6319 116255 0.4820 +6319 126129 0.4630 +6319 132949 0.5060 +6319 133522 0.4450 +6319 137902 0.5410 +6319 137964 0.6450 +6319 158833 0.5880 +6319 201562 0.9250 +6319 254531 0.4380 +6319 376497 0.5370 +6319 401494 0.9140 +6319 606495 0.8240 +6320 6347 0.4330 +6320 6348 0.4370 +6320 6351 0.4950 +6320 6354 0.5870 +6320 6356 0.5170 +6320 6387 0.4040 +6320 8379 0.4030 +6320 10850 0.6980 +6320 22801 0.5380 +6320 64397 0.4080 +6320 84955 0.6190 +6322 7703 0.6050 +6322 23466 0.4070 +6322 54799 0.4860 +6322 57332 0.4200 +6322 80012 0.4340 +6322 83746 0.4860 +6322 84124 0.4310 +6322 84733 0.4970 +6322 124808 0.4550 +6323 6324 0.9960 +6323 6326 0.9480 +6323 6327 0.9800 +6323 6328 0.7200 +6323 6329 0.5670 +6323 6330 0.9960 +6323 6331 0.7390 +6323 6332 0.6100 +6323 6334 0.7710 +6323 6335 0.7360 +6323 6336 0.5980 +6323 6337 0.6060 +6323 6338 0.5880 +6323 6339 0.5960 +6323 6340 0.5630 +6323 6513 0.4830 +6323 6529 0.5670 +6323 6640 0.4200 +6323 6708 0.5260 +6323 6709 0.8130 +6323 6710 0.5540 +6323 6711 0.5500 +6323 6712 0.6080 +6323 6750 0.4480 +6323 6792 0.8610 +6323 6812 0.8520 +6323 7249 0.4160 +6323 7259 0.4040 +6323 7337 0.4150 +6323 7442 0.4890 +6323 7881 0.4270 +6323 8506 0.4250 +6323 8831 0.4720 +6323 8911 0.7960 +6323 8912 0.7150 +6323 8913 0.7260 +6323 8989 0.4860 +6323 9196 0.4980 +6323 9211 0.5520 +6323 9254 0.5700 +6323 9378 0.5070 +6323 9568 0.4090 +6323 9681 0.6310 +6323 10021 0.4070 +6323 10313 0.4340 +6323 10681 0.6580 +6323 11280 0.8290 +6323 11284 0.6490 +6323 22941 0.4350 +6323 23096 0.4180 +6323 23114 0.7260 +6323 23229 0.6530 +6323 23236 0.6610 +6323 23327 0.5120 +6323 23416 0.5240 +6323 23621 0.6490 +6323 25825 0.4840 +6323 26047 0.5580 +6323 51332 0.4990 +6323 51764 0.6700 +6323 51806 0.5480 +6323 54331 0.6520 +6323 54795 0.6410 +6323 55163 0.5270 +6323 55799 0.4870 +6323 55800 0.8050 +6323 55970 0.6500 +6323 56479 0.4400 +6323 57465 0.5970 +6323 57468 0.5230 +6323 57526 0.9380 +6323 57539 0.4230 +6323 57575 0.8650 +6323 57578 0.5150 +6323 57582 0.7630 +6323 57680 0.4060 +6323 57731 0.7180 +6323 59345 0.6510 +6323 64332 0.4240 +6323 79005 0.6400 +6323 79054 0.4030 +6323 79751 0.7430 +6323 79868 0.4840 +6323 84059 0.6330 +6323 85358 0.5020 +6323 89796 0.9600 +6323 91860 0.4270 +6323 93589 0.4030 +6323 94235 0.6500 +6323 112476 0.7370 +6323 112755 0.4920 +6323 114327 0.5190 +6323 114798 0.4460 +6323 117245 0.5700 +6323 163688 0.4270 +6323 170302 0.7640 +6323 285175 0.4020 +6323 338567 0.7680 +6323 347731 0.5250 +6324 6326 0.9910 +6324 6327 0.9990 +6324 6328 0.9980 +6324 6329 0.9990 +6324 6330 0.9980 +6324 6331 0.9980 +6324 6332 0.9760 +6324 6334 0.9700 +6324 6335 0.9980 +6324 6336 0.9500 +6324 6337 0.9250 +6324 6338 0.9080 +6324 6339 0.7530 +6324 6340 0.9030 +6324 6640 0.5920 +6324 6708 0.5150 +6324 6709 0.6720 +6324 6710 0.5370 +6324 6711 0.5040 +6324 6712 0.5200 +6324 6792 0.4810 +6324 6812 0.5940 +6324 7259 0.4270 +6324 7871 0.6060 +6324 8514 0.4280 +6324 8911 0.6620 +6324 8912 0.7480 +6324 8913 0.7220 +6324 9211 0.4260 +6324 9631 0.4710 +6324 9992 0.7860 +6324 10008 0.8850 +6324 10021 0.8300 +6324 10054 0.4260 +6324 10060 0.6260 +6324 10142 0.4830 +6324 10265 0.6010 +6324 10345 0.4380 +6324 11280 0.9070 +6324 23114 0.6810 +6324 23171 0.8960 +6324 23270 0.4170 +6324 23584 0.4190 +6324 23630 0.7150 +6324 23704 0.7360 +6324 29098 0.7260 +6324 30819 0.5000 +6324 51332 0.5200 +6324 53373 0.4750 +6324 54795 0.8800 +6324 55163 0.4960 +6324 55658 0.5620 +6324 55800 0.8660 +6324 57526 0.6630 +6324 57575 0.5900 +6324 57582 0.5470 +6324 57655 0.6240 +6324 57731 0.6410 +6324 79171 0.4070 +6324 79192 0.5460 +6324 89796 0.5310 +6324 89822 0.4360 +6324 112476 0.6950 +6324 112755 0.4420 +6324 114327 0.4470 +6324 117155 0.4660 +6324 259232 0.5810 +6324 404037 0.5110 +6326 6327 0.9960 +6326 6328 0.9820 +6326 6329 0.9440 +6326 6330 0.9640 +6326 6331 0.8380 +6326 6332 0.6680 +6326 6334 0.8020 +6326 6335 0.9430 +6326 6336 0.7520 +6326 6337 0.7410 +6326 6338 0.7390 +6326 6339 0.7310 +6326 6340 0.7340 +6326 6513 0.4130 +6326 6529 0.5890 +6326 6601 0.5060 +6326 6605 0.4040 +6326 6616 0.4930 +6326 6708 0.5420 +6326 6709 0.8320 +6326 6710 0.5740 +6326 6711 0.6280 +6326 6712 0.6130 +6326 6792 0.8210 +6326 6812 0.8490 +6326 6853 0.6490 +6326 6857 0.6650 +6326 6860 0.4130 +6326 6900 0.4420 +6326 6948 0.4280 +6326 8242 0.6180 +6326 8506 0.5030 +6326 8831 0.5790 +6326 8911 0.6990 +6326 8912 0.7070 +6326 8913 0.7210 +6326 9033 0.4290 +6326 9211 0.4620 +6326 9254 0.4910 +6326 9378 0.6250 +6326 9465 0.5230 +6326 9568 0.4090 +6326 9681 0.4930 +6326 10021 0.9240 +6326 10479 0.4570 +6326 10661 0.6540 +6326 10716 0.4690 +6326 10787 0.4900 +6326 10919 0.4890 +6326 11075 0.6330 +6326 11280 0.7440 +6326 11284 0.5970 +6326 22941 0.4650 +6326 22999 0.4440 +6326 23001 0.4680 +6326 23036 0.4090 +6326 23114 0.8150 +6326 23229 0.6530 +6326 23236 0.6340 +6326 23389 0.4750 +6326 23394 0.5180 +6326 26047 0.5480 +6326 27319 0.4090 +6326 51111 0.5040 +6326 51332 0.4990 +6326 51412 0.5200 +6326 51806 0.8270 +6326 53335 0.5430 +6326 54413 0.4140 +6326 54715 0.4340 +6326 54795 0.8300 +6326 55163 0.4520 +6326 55748 0.5420 +6326 55777 0.4220 +6326 55799 0.5630 +6326 55800 0.9500 +6326 55811 0.4350 +6326 57148 0.4320 +6326 57465 0.5210 +6326 57468 0.4980 +6326 57492 0.4280 +6326 57502 0.4070 +6326 57526 0.8530 +6326 57539 0.4200 +6326 57575 0.7970 +6326 57578 0.5040 +6326 57582 0.7550 +6326 57680 0.7110 +6326 57731 0.8050 +6326 79005 0.5500 +6326 79751 0.7390 +6326 79868 0.4570 +6326 80816 0.4920 +6326 83473 0.6210 +6326 83992 0.4260 +6326 84679 0.4200 +6326 85358 0.5880 +6326 89796 0.8700 +6326 91860 0.7810 +6326 112476 0.9100 +6326 112755 0.4820 +6326 117245 0.4440 +6326 118427 0.4410 +6326 163688 0.7810 +6326 169522 0.4220 +6326 170302 0.5830 +6326 255022 0.9130 +6327 6328 0.9970 +6327 6329 0.9230 +6327 6330 0.8780 +6327 6331 0.9740 +6327 6332 0.8550 +6327 6334 0.9350 +6327 6335 0.9950 +6327 6336 0.9320 +6327 6337 0.8190 +6327 6338 0.7670 +6327 6339 0.7790 +6327 6340 0.7570 +6327 6640 0.5070 +6327 6708 0.4990 +6327 6709 0.5180 +6327 6710 0.5490 +6327 6711 0.5160 +6327 6712 0.5400 +6327 7545 0.4540 +6327 7871 0.6450 +6327 8514 0.4030 +6327 8898 0.4910 +6327 8911 0.5970 +6327 8912 0.6810 +6327 8913 0.7140 +6327 9631 0.4830 +6327 9992 0.5950 +6327 10008 0.7000 +6327 10021 0.6210 +6327 10060 0.5980 +6327 10313 0.5290 +6327 11280 0.8050 +6327 23114 0.6920 +6327 23163 0.4220 +6327 23171 0.6760 +6327 23467 0.4670 +6327 23621 0.5820 +6327 23630 0.7200 +6327 25825 0.5670 +6327 27255 0.6380 +6327 29098 0.7330 +6327 30819 0.4020 +6327 51332 0.5050 +6327 53373 0.4240 +6327 54795 0.8770 +6327 54914 0.4320 +6327 55800 0.9950 +6327 57142 0.4980 +6327 57731 0.6050 +6327 89796 0.7690 +6327 89953 0.4200 +6327 117155 0.4170 +6327 120425 0.4630 +6327 259232 0.5800 +6327 376132 0.4230 +6328 6329 0.9090 +6328 6330 0.9170 +6328 6331 0.5870 +6328 6332 0.6970 +6328 6334 0.6020 +6328 6335 0.9390 +6328 6336 0.5930 +6328 6337 0.5590 +6328 6338 0.5590 +6328 6339 0.5660 +6328 6340 0.5760 +6328 6708 0.5260 +6328 6709 0.5510 +6328 6710 0.5360 +6328 6711 0.5300 +6328 6712 0.5760 +6328 7442 0.4910 +6328 8911 0.6940 +6328 8912 0.7040 +6328 8913 0.7060 +6328 8989 0.4980 +6328 11198 0.4110 +6328 11280 0.6400 +6328 23114 0.6520 +6328 51332 0.5010 +6328 51806 0.5530 +6328 54795 0.7330 +6328 55800 0.8280 +6328 57539 0.4200 +6328 57578 0.4390 +6328 57582 0.4130 +6328 57731 0.6030 +6328 79005 0.6690 +6328 80034 0.4120 +6328 89796 0.8140 +6328 117245 0.4300 +6328 144321 0.4230 +6328 255022 0.9290 +6329 6330 0.9780 +6329 6331 0.8480 +6329 6332 0.5850 +6329 6334 0.7640 +6329 6335 0.6860 +6329 6336 0.7530 +6329 6337 0.9140 +6329 6338 0.9150 +6329 6339 0.7580 +6329 6340 0.9060 +6329 6708 0.5200 +6329 6709 0.4990 +6329 6710 0.5160 +6329 6711 0.5000 +6329 6712 0.5070 +6329 8292 0.7840 +6329 8911 0.6820 +6329 8912 0.6890 +6329 8913 0.7010 +6329 9992 0.6010 +6329 10008 0.7990 +6329 11280 0.6090 +6329 22894 0.4060 +6329 23114 0.5720 +6329 23327 0.4860 +6329 51332 0.5170 +6329 51806 0.8570 +6329 54795 0.7660 +6329 55800 0.9490 +6329 56704 0.4170 +6329 57158 0.4090 +6329 57539 0.4200 +6329 57578 0.4230 +6329 57731 0.5910 +6329 79005 0.4910 +6329 89796 0.8980 +6329 91860 0.8220 +6329 163688 0.8260 +6329 199857 0.4810 +6329 246329 0.4630 +6329 285489 0.7820 +6329 375790 0.4150 +6329 100134444 0.7440 +6330 6331 0.9940 +6330 6332 0.9360 +6330 6334 0.9180 +6330 6335 0.8780 +6330 6336 0.9260 +6330 6337 0.9070 +6330 6338 0.9050 +6330 6339 0.7380 +6330 6340 0.9060 +6330 6640 0.8770 +6330 6708 0.5020 +6330 6709 0.5270 +6330 6710 0.5240 +6330 6711 0.5250 +6330 6712 0.5340 +6330 8492 0.4740 +6330 8911 0.6700 +6330 8912 0.6920 +6330 8913 0.6830 +6330 9254 0.4300 +6330 9722 0.4830 +6330 9992 0.8810 +6330 10008 0.5870 +6330 10021 0.5250 +6330 10060 0.4390 +6330 10142 0.8560 +6330 10268 0.5230 +6330 10345 0.5200 +6330 11280 0.9530 +6330 23114 0.6750 +6330 23171 0.6030 +6330 23401 0.4260 +6330 23630 0.5710 +6330 23704 0.4200 +6330 29098 0.5050 +6330 51332 0.5250 +6330 54795 0.8180 +6330 55800 0.9840 +6330 57084 0.4410 +6330 57158 0.4030 +6330 57731 0.6540 +6330 85445 0.4420 +6330 89796 0.6460 +6330 117245 0.5370 +6330 127833 0.5340 +6330 154661 0.4240 +6330 613212 0.4310 +6331 6332 0.9160 +6331 6334 0.5960 +6331 6335 0.5940 +6331 6336 0.8530 +6331 6337 0.7660 +6331 6338 0.7510 +6331 6339 0.7420 +6331 6340 0.7640 +6331 6444 0.4400 +6331 6474 0.4540 +6331 6546 0.5800 +6331 6548 0.6870 +6331 6640 0.9630 +6331 6708 0.5720 +6331 6709 0.5430 +6331 6710 0.5070 +6331 6711 0.5740 +6331 6712 0.5290 +6331 6910 0.7750 +6331 6926 0.6600 +6331 7082 0.5750 +6331 7112 0.5590 +6331 7135 0.4430 +6331 7137 0.7350 +6331 7139 0.7220 +6331 7168 0.7230 +6331 7273 0.6670 +6331 7414 0.4990 +6331 7533 0.7270 +6331 7871 0.5840 +6331 8048 0.6530 +6331 8557 0.6750 +6331 8822 0.9360 +6331 8911 0.6850 +6331 8912 0.7010 +6331 8913 0.7160 +6331 9096 0.4390 +6331 9254 0.5780 +6331 9516 0.4390 +6331 9531 0.4520 +6331 9631 0.4840 +6331 9722 0.6580 +6331 9992 0.9770 +6331 10008 0.8920 +6331 10021 0.9530 +6331 10052 0.5700 +6331 10060 0.7610 +6331 10142 0.7710 +6331 10265 0.5930 +6331 10345 0.6050 +6331 11060 0.5720 +6331 11155 0.6770 +6331 11280 0.6150 +6331 23114 0.8080 +6331 23171 0.9740 +6331 23327 0.8890 +6331 23345 0.4290 +6331 23493 0.5050 +6331 23630 0.6630 +6331 23704 0.6450 +6331 26251 0.5360 +6331 27295 0.4550 +6331 27338 0.4430 +6331 29098 0.8370 +6331 29119 0.4310 +6331 30819 0.7070 +6331 50805 0.4200 +6331 51332 0.5030 +6331 51350 0.4460 +6331 51422 0.5450 +6331 51643 0.4320 +6331 51778 0.4120 +6331 51806 0.9740 +6331 54795 0.9490 +6331 55799 0.4180 +6331 55800 0.9680 +6331 57057 0.4490 +6331 57158 0.6230 +6331 57506 0.4020 +6331 57539 0.4200 +6331 57578 0.4350 +6331 57657 0.4270 +6331 57731 0.7330 +6331 58498 0.5400 +6331 65983 0.4390 +6331 79005 0.4370 +6331 79188 0.6230 +6331 79192 0.5640 +6331 81031 0.4020 +6331 83478 0.5290 +6331 83992 0.4180 +6331 84665 0.4810 +6331 89796 0.8120 +6331 91624 0.5590 +6331 91860 0.9670 +6331 93589 0.4140 +6331 116225 0.5910 +6331 117245 0.4500 +6331 163688 0.9670 +6331 282996 0.7880 +6331 388591 0.4450 +6332 6334 0.6030 +6332 6335 0.7110 +6332 6336 0.6040 +6332 6337 0.5950 +6332 6338 0.6060 +6332 6339 0.6240 +6332 6340 0.5820 +6332 6708 0.5260 +6332 6709 0.5050 +6332 6710 0.5010 +6332 6711 0.5070 +6332 6712 0.4990 +6332 8911 0.6620 +6332 8912 0.6890 +6332 8913 0.6860 +6332 9254 0.5690 +6332 11280 0.6480 +6332 23114 0.5330 +6332 51332 0.4990 +6332 54221 0.4010 +6332 54795 0.6480 +6332 55079 0.4180 +6332 55800 0.9730 +6332 57539 0.4210 +6332 57578 0.4110 +6332 57731 0.5290 +6332 79005 0.7490 +6332 83657 0.4210 +6332 89765 0.4290 +6332 89797 0.4040 +6332 93589 0.4310 +6332 644890 0.4160 +6334 6335 0.7430 +6334 6336 0.5940 +6334 6337 0.5590 +6334 6338 0.5790 +6334 6339 0.5590 +6334 6340 0.5720 +6334 6529 0.4280 +6334 6531 0.4550 +6334 6616 0.6320 +6334 6708 0.5250 +6334 6709 0.8020 +6334 6710 0.5700 +6334 6711 0.6300 +6334 6712 0.6460 +6334 6792 0.6530 +6334 6812 0.6970 +6334 7442 0.4940 +6334 8506 0.7280 +6334 8514 0.4400 +6334 8822 0.6200 +6334 8831 0.5500 +6334 8911 0.7950 +6334 8912 0.7120 +6334 8913 0.7190 +6334 8989 0.5000 +6334 9254 0.4740 +6334 9681 0.5030 +6334 11280 0.7760 +6334 23096 0.4300 +6334 23114 0.8880 +6334 23309 0.4320 +6334 23369 0.5320 +6334 26047 0.4730 +6334 51332 0.4990 +6334 51631 0.5050 +6334 51806 0.8180 +6334 54715 0.4210 +6334 54795 0.6170 +6334 55748 0.6670 +6334 55799 0.4650 +6334 55800 0.8290 +6334 56479 0.4290 +6334 56853 0.4020 +6334 57465 0.4210 +6334 57468 0.5190 +6334 57526 0.6480 +6334 57539 0.4250 +6334 57575 0.5730 +6334 57578 0.4540 +6334 57582 0.7000 +6334 57731 0.8370 +6334 64332 0.4910 +6334 79005 0.8890 +6334 79751 0.4300 +6334 79868 0.4560 +6334 89796 0.9370 +6334 90134 0.4100 +6334 91860 0.7690 +6334 112476 0.6410 +6334 117245 0.6100 +6334 146713 0.4280 +6334 163688 0.7690 +6334 342035 0.4390 +6334 388112 0.5910 +6334 100996928 0.5050 +6335 6336 0.7400 +6335 6337 0.5890 +6335 6338 0.5900 +6335 6339 0.5590 +6335 6340 0.5750 +6335 6708 0.5710 +6335 6709 0.5410 +6335 6710 0.4990 +6335 6711 0.4990 +6335 6712 0.5500 +6335 6863 0.5710 +6335 7224 0.4010 +6335 7329 0.4240 +6335 7442 0.7690 +6335 8822 0.5770 +6335 8911 0.6850 +6335 8912 0.7120 +6335 8913 0.6950 +6335 8989 0.7490 +6335 9254 0.4600 +6335 9311 0.6320 +6335 10677 0.4780 +6335 11280 0.6340 +6335 23114 0.6090 +6335 50801 0.4420 +6335 51332 0.4990 +6335 51350 0.4220 +6335 51393 0.4070 +6335 51806 0.6710 +6335 54795 0.7630 +6335 55746 0.4280 +6335 55799 0.4900 +6335 55800 0.7960 +6335 57539 0.4220 +6335 57578 0.4110 +6335 57582 0.4490 +6335 57731 0.5590 +6335 59335 0.4750 +6335 59341 0.4900 +6335 63895 0.5260 +6335 79054 0.5990 +6335 79902 0.4160 +6335 84059 0.6510 +6335 89796 0.8160 +6335 91860 0.5830 +6335 127833 0.4920 +6335 162514 0.4590 +6335 163688 0.5830 +6335 192668 0.4950 +6335 255022 0.9290 +6335 338567 0.4350 +6336 6337 0.7500 +6336 6338 0.7530 +6336 6339 0.7460 +6336 6340 0.7530 +6336 6708 0.5140 +6336 6709 0.5220 +6336 6710 0.4990 +6336 6711 0.5140 +6336 6712 0.5260 +6336 6863 0.6190 +6336 6869 0.4580 +6336 6910 0.6940 +6336 7345 0.4130 +6336 7442 0.8060 +6336 7871 0.5570 +6336 8911 0.6890 +6336 8912 0.7130 +6336 8913 0.6920 +6336 8989 0.7630 +6336 9254 0.4770 +6336 9311 0.6400 +6336 9722 0.4270 +6336 9992 0.5110 +6336 10008 0.5860 +6336 10021 0.6140 +6336 10060 0.5270 +6336 10677 0.5750 +6336 11280 0.6300 +6336 23037 0.5430 +6336 23114 0.5790 +6336 23171 0.7160 +6336 23327 0.5340 +6336 23493 0.4730 +6336 23630 0.6160 +6336 26251 0.5280 +6336 29098 0.5820 +6336 50801 0.4700 +6336 51332 0.5110 +6336 51350 0.4300 +6336 51806 0.4660 +6336 54795 0.8560 +6336 55243 0.4200 +6336 55748 0.4440 +6336 55799 0.4040 +6336 55800 0.9010 +6336 56479 0.5270 +6336 57158 0.4160 +6336 57539 0.4200 +6336 57578 0.4200 +6336 57731 0.6080 +6336 59341 0.4600 +6336 63895 0.5510 +6336 79054 0.6650 +6336 83478 0.7400 +6336 83988 0.4390 +6336 84623 0.6310 +6336 89796 0.7250 +6336 93589 0.4430 +6336 116512 0.5950 +6336 132320 0.8880 +6336 338567 0.4130 +6336 388112 0.5100 +6336 389203 0.4270 +6337 6338 0.9990 +6337 6339 0.8950 +6337 6340 0.9990 +6337 6446 0.8250 +6337 6548 0.4570 +6337 6550 0.6370 +6337 6557 0.6720 +6337 6558 0.4160 +6337 6559 0.8580 +6337 7113 0.5520 +6337 7251 0.5190 +6337 7314 0.4250 +6337 7316 0.4250 +6337 7329 0.5140 +6337 7712 0.4170 +6337 8911 0.5580 +6337 8912 0.6350 +6337 8913 0.5850 +6337 9099 0.6040 +6337 9725 0.4080 +6337 9943 0.4330 +6337 10053 0.4750 +6337 10110 0.4320 +6337 10598 0.4290 +6337 10728 0.4290 +6337 11059 0.7230 +6337 11280 0.5530 +6337 23316 0.4500 +6337 23327 0.9980 +6337 23678 0.4300 +6337 54795 0.7760 +6337 55800 0.7440 +6337 65125 0.8320 +6337 65266 0.8400 +6337 65267 0.6720 +6337 65268 0.6900 +6337 79139 0.4410 +6337 342372 0.4120 +6337 402778 0.4060 +6338 6339 0.9280 +6338 6340 0.9990 +6338 6446 0.9090 +6338 6548 0.4130 +6338 6550 0.6200 +6338 6557 0.6820 +6338 6559 0.8260 +6338 7314 0.4310 +6338 7316 0.4310 +6338 8452 0.4550 +6338 8911 0.5550 +6338 8912 0.6270 +6338 8913 0.5540 +6338 9033 0.5770 +6338 9099 0.4270 +6338 9871 0.5350 +6338 10110 0.4780 +6338 11059 0.4570 +6338 11060 0.5580 +6338 11280 0.5580 +6338 23327 0.9980 +6338 23678 0.4490 +6338 50834 0.4240 +6338 51297 0.4020 +6338 54795 0.7480 +6338 55800 0.7370 +6338 65125 0.7960 +6338 65266 0.8450 +6338 65267 0.6940 +6338 65268 0.4500 +6338 80834 0.5000 +6338 80835 0.5070 +6338 83756 0.5120 +6338 115019 0.4370 +6338 150684 0.5300 +6338 259285 0.4120 +6338 727897 0.5110 +6339 6340 0.9120 +6339 6446 0.5590 +6339 6548 0.4180 +6339 7314 0.4250 +6339 7316 0.4250 +6339 8911 0.5850 +6339 8912 0.5860 +6339 8913 0.5560 +6339 9033 0.5910 +6339 10110 0.4270 +6339 11059 0.4410 +6339 11280 0.5690 +6339 11332 0.4620 +6339 23327 0.6920 +6339 23678 0.4210 +6339 54760 0.4260 +6339 54795 0.7340 +6339 55800 0.7370 +6339 65125 0.4770 +6339 65266 0.5520 +6339 65267 0.4900 +6339 65268 0.4140 +6339 80834 0.4210 +6339 80835 0.4200 +6339 83756 0.4550 +6339 116983 0.6450 +6339 127069 0.4330 +6339 150684 0.5890 +6339 168507 0.4360 +6339 259296 0.4090 +6339 338398 0.4800 +6339 342372 0.4380 +6339 353164 0.4100 +6340 6446 0.8640 +6340 6524 0.4430 +6340 6548 0.4530 +6340 6550 0.6460 +6340 6557 0.7190 +6340 6559 0.8040 +6340 7314 0.4350 +6340 7316 0.4350 +6340 8911 0.5540 +6340 8912 0.6160 +6340 8913 0.5560 +6340 9033 0.4630 +6340 9099 0.6170 +6340 10110 0.4350 +6340 11059 0.4570 +6340 11280 0.5590 +6340 23327 0.9970 +6340 23678 0.4370 +6340 26249 0.4150 +6340 27347 0.4390 +6340 54566 0.4850 +6340 54795 0.7460 +6340 55800 0.7420 +6340 65125 0.7920 +6340 65266 0.8300 +6340 65267 0.6880 +6340 65268 0.5050 +6340 81027 0.4240 +6341 6389 0.5010 +6341 6390 0.4780 +6341 6391 0.4960 +6341 6647 0.4950 +6341 6834 0.9670 +6341 7284 0.4330 +6341 7295 0.5480 +6341 7384 0.4710 +6341 7385 0.4420 +6341 7386 0.8790 +6341 7555 0.4420 +6341 8718 0.5260 +6341 9377 0.6350 +6341 9868 0.4650 +6341 9973 0.6490 +6341 9997 0.4930 +6341 10063 0.9940 +6341 10075 0.4390 +6341 10128 0.7670 +6341 10165 0.4670 +6341 10651 0.4480 +6341 10845 0.4150 +6341 22868 0.7550 +6341 23155 0.5620 +6341 23474 0.4230 +6341 28958 0.5870 +6341 29090 0.4990 +6341 51102 0.4100 +6341 51103 0.4360 +6341 51204 0.7980 +6341 51241 0.6500 +6341 51263 0.6510 +6341 51287 0.4400 +6341 51314 0.4090 +6341 54205 0.8080 +6341 54902 0.5250 +6341 54963 0.4110 +6341 54968 0.4370 +6341 55037 0.4330 +6341 55744 0.4130 +6341 56942 0.5160 +6341 56945 0.4430 +6341 57510 0.4680 +6341 65260 0.7070 +6341 79133 0.4020 +6341 79145 0.6640 +6341 80775 0.4920 +6341 81570 0.4490 +6341 84701 0.4770 +6341 84881 0.4890 +6341 84987 0.6320 +6341 85476 0.5040 +6341 87178 0.6470 +6341 90639 0.7080 +6341 91647 0.4700 +6341 91942 0.4990 +6341 116228 0.6870 +6341 118490 0.4270 +6341 125965 0.4830 +6341 131474 0.6410 +6341 152100 0.4040 +6341 285521 0.7570 +6341 374291 0.8350 +6341 388753 0.9460 +6341 401262 0.4670 +6341 493753 0.7630 +6341 644096 0.4550 +6341 100131801 0.6230 +6341 100303755 0.6380 +6342 6647 0.4370 +6342 6770 0.7670 +6342 7311 0.4990 +6342 7314 0.5030 +6342 7316 0.5110 +6342 7321 0.5180 +6342 7322 0.5180 +6342 7323 0.5220 +6342 8050 0.4110 +6342 8309 0.9130 +6342 8310 0.9780 +6342 8443 0.7210 +6342 8528 0.6530 +6342 8540 0.8290 +6342 8725 0.4330 +6342 8799 0.4200 +6342 8800 0.4130 +6342 8802 0.4060 +6342 9085 0.8260 +6342 9399 0.6000 +6342 9425 0.8300 +6342 9524 0.7650 +6342 9563 0.4070 +6342 9607 0.6480 +6342 9862 0.4020 +6342 10005 0.9470 +6342 10449 0.7420 +6342 10455 0.9610 +6342 10478 0.4130 +6342 10493 0.4830 +6342 10577 0.4210 +6342 10901 0.6910 +6342 10948 0.4190 +6342 10965 0.6910 +6342 10994 0.4980 +6342 10998 0.9560 +6342 10999 0.5110 +6342 11001 0.7400 +6342 23205 0.5310 +6342 23305 0.6120 +6342 23417 0.6080 +6342 23600 0.8980 +6342 26061 0.8300 +6342 26063 0.7070 +6342 26275 0.8250 +6342 27034 0.5710 +6342 28976 0.5550 +6342 30836 0.4060 +6342 51084 0.8780 +6342 51144 0.4090 +6342 51167 0.4530 +6342 51179 0.6580 +6342 51268 0.6750 +6342 51555 0.5300 +6342 51703 0.6290 +6342 54363 0.6350 +6342 54596 0.4020 +6342 54677 0.7440 +6342 55268 0.8100 +6342 55289 0.6370 +6342 55301 0.4020 +6342 55825 0.7470 +6342 55862 0.8090 +6342 55902 0.4590 +6342 58488 0.5210 +6342 79154 0.4510 +6342 79783 0.5790 +6342 80067 0.4170 +6342 80221 0.5030 +6342 80270 0.5500 +6342 80347 0.5330 +6342 80724 0.6140 +6342 80765 0.4070 +6342 80777 0.4280 +6342 81616 0.5410 +6342 83752 0.7130 +6342 84129 0.6440 +6342 84188 0.4040 +6342 84263 0.7040 +6342 84532 0.4200 +6342 122970 0.7040 +6342 123876 0.4180 +6342 124359 0.8260 +6342 134429 0.4590 +6342 137872 0.4630 +6342 140856 0.4420 +6342 157869 0.4020 +6342 196743 0.5820 +6342 197322 0.4020 +6342 219743 0.8600 +6342 221711 0.5980 +6342 253175 0.8260 +6342 283385 0.4680 +6342 283927 0.5700 +6342 284422 0.5510 +6342 345456 0.5570 +6342 348158 0.4350 +6342 373156 0.6170 +6342 375189 0.5580 +6342 376497 0.5520 +6342 387521 0.4490 +6342 390916 0.6240 +6342 109703458 0.7340 +6342 122405565 0.5510 +6343 6344 0.9990 +6343 6522 0.5900 +6343 6571 0.5490 +6343 6714 0.5920 +6343 6750 0.9120 +6343 6752 0.4330 +6343 6781 0.4640 +6343 6863 0.6290 +6343 7432 0.9910 +6343 7433 0.8940 +6343 7434 0.8670 +6343 9289 0.6520 +6343 9340 0.6750 +6343 9677 0.6580 +6343 10149 0.6910 +6343 10203 0.4470 +6343 10266 0.4710 +6343 10267 0.5710 +6343 10681 0.4990 +6343 22859 0.4090 +6343 23436 0.6560 +6343 25960 0.4990 +6343 30817 0.6110 +6343 50674 0.4330 +6343 51083 0.4790 +6343 51738 0.6020 +6343 51764 0.5140 +6343 54331 0.8950 +6343 55970 0.4990 +6343 57105 0.4990 +6343 59345 0.4990 +6343 64123 0.5600 +6343 79924 0.5500 +6343 94235 0.5020 +6343 113091 0.5110 +6343 117579 0.4240 +6343 170589 0.4070 +6343 440387 0.6590 +6343 594857 0.4900 +6343 104909134 0.6200 +6344 6522 0.5230 +6344 6714 0.5260 +6344 6750 0.4120 +6344 7349 0.4540 +6344 7432 0.9640 +6344 7433 0.4400 +6344 7434 0.6530 +6344 8938 0.7010 +6344 9289 0.5920 +6344 9340 0.4600 +6344 10268 0.6060 +6344 10458 0.4060 +6344 10681 0.6180 +6344 51764 0.5580 +6344 54331 0.9070 +6344 55970 0.5690 +6344 59345 0.6120 +6344 84435 0.8170 +6344 94235 0.5580 +6344 140738 0.4560 +6344 196527 0.9670 +6345 6588 0.5300 +6345 7138 0.4670 +6345 7139 0.4040 +6345 7140 0.5350 +6345 7273 0.4760 +6345 8988 0.6700 +6345 10345 0.6370 +6345 11155 0.4380 +6345 23676 0.4030 +6345 51778 0.4150 +6345 56704 0.4530 +6345 58529 0.4570 +6345 126306 0.5280 +6345 146862 0.5110 +6345 150572 0.4400 +6345 202333 0.4010 +6345 284612 0.6620 +6346 6347 0.8400 +6346 6351 0.6500 +6346 6356 0.6470 +6346 6357 0.7220 +6346 6359 0.7520 +6346 6360 0.7860 +6346 6361 0.9070 +6346 6362 0.6090 +6346 6363 0.7860 +6346 6364 0.8920 +6346 6366 0.7920 +6346 6367 0.8270 +6346 6368 0.6090 +6346 6369 0.6870 +6346 6370 0.8070 +6346 6372 0.7030 +6346 6373 0.9980 +6346 6374 0.8030 +6346 6375 0.6270 +6346 6376 0.8660 +6346 6387 0.7860 +6346 6714 0.5470 +6346 6846 0.4570 +6346 7124 0.6000 +6346 7852 0.7800 +6346 9034 0.8370 +6346 9332 0.6070 +6346 9547 0.4140 +6346 10344 0.6190 +6346 10563 0.7960 +6346 10663 0.8510 +6346 10803 0.8810 +6346 10850 0.8010 +6346 50616 0.4440 +6346 50943 0.4290 +6346 51554 0.9640 +6346 54210 0.4790 +6346 56477 0.5910 +6346 57007 0.5950 +6346 58191 0.7760 +6346 63940 0.4080 +6346 85480 0.6090 +6346 90865 0.4280 +6347 6348 0.5760 +6347 6351 0.7870 +6347 6354 0.8830 +6347 6355 0.9990 +6347 6356 0.9980 +6347 6357 0.8420 +6347 6359 0.9990 +6347 6361 0.7500 +6347 6362 0.6760 +6347 6363 0.8920 +6347 6364 0.9790 +6347 6367 0.9140 +6347 6368 0.7920 +6347 6369 0.4480 +6347 6370 0.5810 +6347 6372 0.7040 +6347 6373 0.7960 +6347 6374 0.8910 +6347 6375 0.5520 +6347 6376 0.8310 +6347 6387 0.8410 +6347 6401 0.8100 +6347 6402 0.5980 +6347 6403 0.7100 +6347 6404 0.4470 +6347 6517 0.5180 +6347 6524 0.4080 +6347 6614 0.5520 +6347 6615 0.4940 +6347 6647 0.4330 +6347 6648 0.5260 +6347 6688 0.4300 +6347 6696 0.7260 +6347 6714 0.7330 +6347 6720 0.5190 +6347 6772 0.8310 +6347 6773 0.4850 +6347 6774 0.8670 +6347 6776 0.4580 +6347 6777 0.4560 +6347 6778 0.7090 +6347 6846 0.4730 +6347 6850 0.4520 +6347 6863 0.4880 +6347 6868 0.4790 +6347 6876 0.4270 +6347 7010 0.7130 +6347 7039 0.5770 +6347 7040 0.8510 +6347 7042 0.7120 +6347 7043 0.5080 +6347 7046 0.4020 +6347 7048 0.4160 +6347 7056 0.6720 +6347 7057 0.7420 +6347 7070 0.6900 +6347 7076 0.8670 +6347 7077 0.7160 +6347 7078 0.4050 +6347 7082 0.5310 +6347 7096 0.6100 +6347 7097 0.7900 +6347 7098 0.7070 +6347 7099 0.8470 +6347 7100 0.5140 +6347 7113 0.5830 +6347 7122 0.4580 +6347 7124 0.9780 +6347 7128 0.5580 +6347 7130 0.7320 +6347 7132 0.7680 +6347 7133 0.6090 +6347 7157 0.6000 +6347 7166 0.4690 +6347 7189 0.5420 +6347 7293 0.4200 +6347 7295 0.4220 +6347 7297 0.4140 +6347 7299 0.4800 +6347 7305 0.4360 +6347 7350 0.4740 +6347 7412 0.9070 +6347 7424 0.5290 +6347 7442 0.4520 +6347 7450 0.5930 +6347 7494 0.4220 +6347 7498 0.4870 +6347 7832 0.4870 +6347 7837 0.6570 +6347 7850 0.6180 +6347 7852 0.9980 +6347 7941 0.4300 +6347 8290 0.4250 +6347 8356 0.4250 +6347 8361 0.4090 +6347 8517 0.4400 +6347 8600 0.5950 +6347 8638 0.4310 +6347 8639 0.4010 +6347 8651 0.5450 +6347 8654 0.5310 +6347 8737 0.4130 +6347 8742 0.5210 +6347 8743 0.5170 +6347 8767 0.4160 +6347 8817 0.6100 +6347 8822 0.6090 +6347 8823 0.6100 +6347 8829 0.4390 +6347 8842 0.5160 +6347 8856 0.4270 +6347 8862 0.5390 +6347 8870 0.4010 +6347 8877 0.4060 +6347 9021 0.7490 +6347 9023 0.4130 +6347 9034 0.9900 +6347 9076 0.4170 +6347 9173 0.4320 +6347 9235 0.4490 +6347 9255 0.4720 +6347 9308 0.5330 +6347 9314 0.4380 +6347 9332 0.7840 +6347 9365 0.4120 +6347 9370 0.7760 +6347 9437 0.4010 +6347 9447 0.4220 +6347 9451 0.4310 +6347 9507 0.4770 +6347 9518 0.4490 +6347 9536 0.4430 +6347 9547 0.5210 +6347 9560 0.9990 +6347 9619 0.4470 +6347 9636 0.7010 +6347 9817 0.4120 +6347 9935 0.5000 +6347 10135 0.5830 +6347 10344 0.9980 +6347 10365 0.4190 +6347 10392 0.4500 +6347 10410 0.4090 +6347 10461 0.4700 +6347 10462 0.4200 +6347 10531 0.5230 +6347 10544 0.6870 +6347 10561 0.4340 +6347 10563 0.9980 +6347 10631 0.5360 +6347 10643 0.4030 +6347 10663 0.8850 +6347 10673 0.5700 +6347 10724 0.4180 +6347 10763 0.4060 +6347 10803 0.8620 +6347 10850 0.7250 +6347 10891 0.5110 +6347 11035 0.4220 +6347 11082 0.4850 +6347 11251 0.5090 +6347 22914 0.4890 +6347 23339 0.4200 +6347 23411 0.5750 +6347 23586 0.6190 +6347 23643 0.5490 +6347 23705 0.5430 +6347 23765 0.4790 +6347 26253 0.4190 +6347 26281 0.6200 +6347 26291 0.4630 +6347 27006 0.6270 +6347 27035 0.4620 +6347 27159 0.4230 +6347 27178 0.4710 +6347 29108 0.4100 +6347 29110 0.4350 +6347 29126 0.6900 +6347 29851 0.4130 +6347 29949 0.4010 +6347 30009 0.4880 +6347 30816 0.4470 +6347 30835 0.5370 +6347 50506 0.4070 +6347 50507 0.5900 +6347 50616 0.6520 +6347 50943 0.6690 +6347 51129 0.4090 +6347 51135 0.4370 +6347 51284 0.6810 +6347 51311 0.5770 +6347 51330 0.4970 +6347 51554 0.8120 +6347 53905 0.4180 +6347 54106 0.6540 +6347 54205 0.4470 +6347 54209 0.5260 +6347 54210 0.6730 +6347 54331 0.8080 +6347 54498 0.4260 +6347 55217 0.4360 +6347 56339 0.4180 +6347 56729 0.7120 +6347 57007 0.4170 +6347 58191 0.6850 +6347 59067 0.4500 +6347 59272 0.7120 +6347 64127 0.5370 +6347 64135 0.5600 +6347 64332 0.4310 +6347 64581 0.5480 +6347 64805 0.4770 +6347 64806 0.4200 +6347 79068 0.4540 +6347 80149 0.7370 +6347 80380 0.5660 +6347 80381 0.5230 +6347 80781 0.4180 +6347 84666 0.7190 +6347 84706 0.4180 +6347 84868 0.5600 +6347 85480 0.5160 +6347 90865 0.7060 +6347 91543 0.4200 +6347 112744 0.6020 +6347 114548 0.6640 +6347 115004 0.4220 +6347 131450 0.4120 +6347 137902 0.6500 +6347 140885 0.5080 +6347 146433 0.4710 +6347 146713 0.4030 +6347 169355 0.5660 +6347 257202 0.5220 +6347 282618 0.4020 +6347 284340 0.9960 +6347 386653 0.4790 +6347 405754 0.4020 +6347 414062 0.7180 +6347 440093 0.4250 +6347 440686 0.4260 +6347 493869 0.5220 +6347 653361 0.4850 +6347 653604 0.4260 +6347 728378 0.6050 +6347 100423062 0.6310 +6347 100506658 0.5460 +6348 6351 0.9970 +6348 6354 0.5360 +6348 6355 0.6550 +6348 6356 0.5070 +6348 6357 0.5110 +6348 6361 0.5100 +6348 6362 0.4700 +6348 6363 0.8310 +6348 6364 0.9700 +6348 6367 0.5240 +6348 6369 0.4390 +6348 6370 0.7230 +6348 6372 0.5800 +6348 6373 0.8510 +6348 6374 0.8230 +6348 6375 0.8600 +6348 6376 0.7330 +6348 6387 0.8230 +6348 6401 0.5910 +6348 6402 0.5760 +6348 6403 0.5400 +6348 6404 0.4210 +6348 6504 0.4350 +6348 6614 0.4900 +6348 6688 0.4370 +6348 6696 0.4920 +6348 6772 0.5930 +6348 6774 0.8580 +6348 6778 0.4130 +6348 6846 0.7830 +6348 6850 0.4640 +6348 6869 0.4910 +6348 7039 0.7050 +6348 7040 0.6330 +6348 7042 0.4040 +6348 7066 0.5790 +6348 7076 0.5550 +6348 7096 0.5100 +6348 7097 0.7870 +6348 7098 0.6170 +6348 7099 0.8150 +6348 7100 0.4720 +6348 7113 0.5070 +6348 7124 0.9880 +6348 7128 0.5950 +6348 7132 0.6910 +6348 7133 0.5410 +6348 7189 0.4250 +6348 7293 0.4380 +6348 7305 0.5110 +6348 7412 0.6730 +6348 7538 0.5040 +6348 7837 0.4510 +6348 7850 0.6610 +6348 7852 0.9930 +6348 8065 0.4030 +6348 8320 0.5580 +6348 8530 0.4360 +6348 8600 0.5850 +6348 8651 0.4190 +6348 8743 0.4790 +6348 8744 0.5200 +6348 8784 0.6150 +6348 8817 0.4830 +6348 8822 0.4800 +6348 8823 0.4890 +6348 8829 0.4370 +6348 9021 0.5020 +6348 9034 0.9510 +6348 9173 0.5440 +6348 9308 0.8230 +6348 9332 0.6430 +6348 9370 0.5850 +6348 9437 0.4560 +6348 9547 0.6550 +6348 9560 0.6590 +6348 9636 0.4250 +6348 10205 0.4100 +6348 10344 0.4560 +6348 10563 0.8640 +6348 10578 0.4670 +6348 10663 0.9340 +6348 10673 0.5410 +6348 10803 0.9460 +6348 10850 0.7890 +6348 10936 0.4240 +6348 22914 0.5010 +6348 23406 0.4040 +6348 23586 0.5490 +6348 23643 0.4530 +6348 23765 0.6180 +6348 26281 0.4890 +6348 27006 0.4890 +6348 27178 0.5350 +6348 29126 0.6050 +6348 29851 0.4350 +6348 30009 0.5330 +6348 30816 0.4270 +6348 30835 0.4980 +6348 50615 0.5990 +6348 50616 0.6320 +6348 50943 0.5820 +6348 51284 0.6340 +6348 51311 0.5730 +6348 51554 0.6300 +6348 51752 0.4910 +6348 54106 0.5910 +6348 54209 0.4430 +6348 54210 0.5630 +6348 56729 0.4410 +6348 58191 0.7400 +6348 59272 0.6440 +6348 60489 0.5200 +6348 64127 0.4610 +6348 64135 0.5070 +6348 64581 0.5330 +6348 80381 0.4600 +6348 81793 0.5190 +6348 84666 0.4460 +6348 84868 0.5530 +6348 85480 0.4620 +6348 90865 0.6180 +6348 112744 0.5470 +6348 114548 0.5960 +6348 137902 0.4300 +6348 169355 0.4270 +6348 259197 0.4370 +6348 386653 0.4790 +6348 414062 0.9920 +6351 6354 0.5090 +6351 6357 0.6930 +6351 6360 0.5460 +6351 6361 0.9430 +6351 6363 0.7820 +6351 6364 0.9400 +6351 6366 0.5740 +6351 6367 0.7720 +6351 6370 0.7510 +6351 6372 0.8250 +6351 6373 0.9170 +6351 6374 0.8990 +6351 6375 0.7590 +6351 6376 0.9040 +6351 6387 0.9480 +6351 6401 0.5400 +6351 6402 0.5510 +6351 6403 0.4590 +6351 6504 0.4800 +6351 6541 0.4980 +6351 6614 0.4200 +6351 6696 0.4300 +6351 6714 0.6330 +6351 6772 0.5610 +6351 6774 0.7460 +6351 6846 0.6720 +6351 6850 0.4230 +6351 7039 0.5710 +6351 7040 0.5870 +6351 7076 0.6560 +6351 7077 0.6000 +6351 7096 0.6670 +6351 7097 0.7630 +6351 7098 0.5730 +6351 7099 0.7490 +6351 7100 0.4370 +6351 7124 0.9670 +6351 7128 0.5020 +6351 7132 0.4920 +6351 7133 0.5550 +6351 7293 0.4430 +6351 7305 0.5330 +6351 7412 0.6250 +6351 7780 0.5960 +6351 7850 0.4680 +6351 7852 0.9950 +6351 8530 0.4770 +6351 8698 0.4880 +6351 8743 0.5040 +6351 8744 0.5090 +6351 8784 0.4250 +6351 8817 0.4490 +6351 8822 0.4470 +6351 8823 0.4470 +6351 8829 0.4020 +6351 9021 0.4210 +6351 9034 0.9250 +6351 9235 0.5640 +6351 9308 0.6320 +6351 9332 0.6320 +6351 9437 0.4440 +6351 9547 0.4270 +6351 9560 0.9560 +6351 9636 0.4290 +6351 10288 0.4850 +6351 10344 0.4630 +6351 10365 0.5430 +6351 10563 0.9490 +6351 10578 0.5970 +6351 10663 0.8810 +6351 10673 0.5200 +6351 10803 0.8610 +6351 10850 0.8500 +6351 10859 0.4140 +6351 22914 0.5610 +6351 23586 0.4770 +6351 26086 0.4110 +6351 26281 0.4470 +6351 27006 0.4480 +6351 27087 0.4150 +6351 29126 0.6130 +6351 29851 0.4690 +6351 29899 0.4110 +6351 30009 0.6340 +6351 30835 0.4470 +6351 50615 0.6040 +6351 50616 0.6060 +6351 50943 0.5860 +6351 51284 0.5790 +6351 51311 0.5380 +6351 51554 0.6020 +6351 54106 0.7090 +6351 54209 0.4020 +6351 54210 0.4920 +6351 54429 0.5290 +6351 55507 0.5070 +6351 56477 0.5420 +6351 56729 0.4170 +6351 57007 0.7420 +6351 57823 0.4200 +6351 58191 0.7900 +6351 59272 0.4350 +6351 60489 0.5330 +6351 63940 0.4530 +6351 64127 0.4390 +6351 64135 0.4460 +6351 64581 0.4500 +6351 65258 0.5840 +6351 80380 0.4060 +6351 80381 0.4210 +6351 84868 0.5770 +6351 90865 0.5480 +6351 112744 0.4880 +6351 114548 0.5240 +6351 115362 0.4260 +6351 126006 0.4160 +6351 127247 0.4070 +6351 201633 0.4630 +6351 259197 0.4510 +6351 284340 0.5890 +6351 386653 0.5060 +6351 414062 0.8650 +6351 728358 0.4090 +6354 6355 0.6720 +6354 6357 0.5300 +6354 6358 0.4370 +6354 6361 0.4590 +6354 6363 0.8050 +6354 6364 0.8140 +6354 6367 0.4840 +6354 6368 0.8340 +6354 6370 0.6920 +6354 6372 0.9970 +6354 6373 0.7360 +6354 6374 0.7280 +6354 6375 0.4860 +6354 6376 0.8700 +6354 6382 0.6530 +6354 6387 0.7500 +6354 6846 0.9950 +6354 7039 0.5070 +6354 7077 0.4290 +6354 7079 0.4150 +6354 7099 0.4200 +6354 7124 0.8080 +6354 7130 0.5910 +6354 7412 0.4550 +6354 7852 0.8670 +6354 9034 0.7870 +6354 9332 0.4320 +6354 9560 0.8650 +6354 10563 0.5640 +6354 10663 0.8190 +6354 10803 0.8420 +6354 10850 0.8300 +6354 29126 0.4270 +6354 50616 0.4340 +6354 51554 0.6490 +6354 58191 0.5800 +6354 83942 0.5490 +6354 90865 0.4200 +6354 112744 0.4090 +6354 414062 0.4870 +6355 6356 0.9970 +6355 6357 0.9980 +6355 6363 0.7710 +6355 6364 0.7790 +6355 6369 0.4870 +6355 6370 0.7470 +6355 6372 0.9970 +6355 6373 0.9990 +6355 6374 0.6700 +6355 6387 0.6350 +6355 6401 0.5800 +6355 6403 0.4890 +6355 6614 0.7520 +6355 6772 0.4940 +6355 6846 0.9950 +6355 7097 0.4430 +6355 7098 0.4120 +6355 7099 0.4290 +6355 7124 0.6370 +6355 7412 0.4340 +6355 7852 0.9340 +6355 8638 0.4500 +6355 9034 0.6970 +6355 9332 0.6790 +6355 9547 0.4120 +6355 9560 0.7840 +6355 9636 0.5170 +6355 10344 0.9950 +6355 10561 0.4430 +6355 10563 0.7560 +6355 10663 0.7820 +6355 10673 0.4230 +6355 10803 0.8880 +6355 10850 0.7230 +6355 10964 0.4310 +6355 23586 0.4230 +6355 29126 0.4350 +6355 51284 0.4470 +6355 51554 0.9870 +6355 51660 0.4750 +6355 58191 0.6160 +6355 64127 0.4180 +6355 64135 0.4040 +6355 90865 0.4120 +6355 91543 0.5310 +6355 284340 0.9960 +6355 414062 0.5580 +6356 6357 0.9960 +6356 6358 0.9950 +6356 6359 0.7380 +6356 6361 0.6160 +6356 6362 0.9980 +6356 6363 0.6340 +6356 6364 0.6860 +6356 6366 0.6610 +6356 6367 0.8660 +6356 6368 0.5710 +6356 6369 0.4660 +6356 6370 0.6840 +6356 6372 0.9960 +6356 6373 0.9980 +6356 6374 0.9980 +6356 6375 0.9950 +6356 6376 0.9920 +6356 6382 0.6840 +6356 6387 0.9980 +6356 6401 0.6740 +6356 6402 0.4110 +6356 6504 0.4650 +6356 6772 0.4010 +6356 6774 0.6950 +6356 6778 0.8950 +6356 7039 0.5720 +6356 7040 0.5500 +6356 7076 0.4910 +6356 7079 0.5860 +6356 7097 0.4660 +6356 7099 0.4990 +6356 7124 0.8610 +6356 7133 0.4020 +6356 7412 0.7230 +6356 7450 0.5310 +6356 7852 0.8760 +6356 8174 0.4550 +6356 8288 0.6410 +6356 8817 0.4830 +6356 8822 0.4750 +6356 8823 0.4970 +6356 9034 0.4550 +6356 9092 0.4220 +6356 9332 0.4440 +6356 9547 0.9970 +6356 9560 0.5520 +6356 10344 0.9970 +6356 10392 0.4540 +6356 10563 0.7670 +6356 10631 0.4910 +6356 10663 0.7520 +6356 10673 0.4080 +6356 10800 0.4330 +6356 10803 0.8360 +6356 10850 0.9970 +6356 11005 0.4030 +6356 11251 0.6180 +6356 23765 0.5480 +6356 26281 0.4880 +6356 27006 0.4910 +6356 27181 0.4350 +6356 27189 0.6560 +6356 27190 0.5720 +6356 29949 0.4200 +6356 50616 0.5870 +6356 50943 0.4480 +6356 51131 0.5270 +6356 51554 0.4120 +6356 55540 0.5740 +6356 56477 0.9940 +6356 58191 0.5210 +6356 64127 0.4040 +6356 64806 0.7550 +6356 80332 0.4840 +6356 84666 0.4380 +6356 85480 0.6790 +6356 90865 0.8440 +6356 112744 0.6860 +6356 386653 0.5750 +6357 6359 0.5010 +6357 6360 0.5940 +6357 6361 0.5680 +6357 6362 0.6260 +6357 6363 0.8740 +6357 6364 0.8160 +6357 6366 0.9980 +6357 6369 0.9960 +6357 6370 0.8640 +6357 6372 0.8800 +6357 6373 0.9990 +6357 6374 0.8040 +6357 6375 0.9940 +6357 6376 0.7490 +6357 6387 0.9980 +6357 6403 0.4480 +6357 6714 0.5440 +6357 7124 0.5590 +6357 7412 0.5930 +6357 7852 0.7710 +6357 8764 0.4760 +6357 9034 0.4020 +6357 9332 0.6150 +6357 9547 0.9960 +6357 9560 0.8270 +6357 10344 0.9950 +6357 10563 0.8670 +6357 10663 0.7610 +6357 10803 0.8370 +6357 10850 0.7920 +6357 23394 0.4180 +6357 26086 0.4110 +6357 29899 0.4110 +6357 30835 0.6640 +6357 50616 0.4020 +6357 51554 0.9750 +6357 56477 0.9970 +6357 57007 0.7200 +6357 58191 0.7510 +6357 64127 0.4590 +6357 85480 0.4260 +6357 126006 0.4110 +6357 284340 0.9950 +6357 386653 0.4180 +6358 6363 0.5510 +6358 6364 0.4880 +6358 6366 0.5780 +6358 6367 0.9940 +6358 6370 0.5250 +6358 6372 0.4120 +6358 6373 0.5490 +6358 6376 0.4310 +6358 6387 0.5030 +6358 7852 0.5890 +6358 9547 0.4920 +6358 10257 0.4360 +6358 10563 0.4180 +6358 10850 0.4850 +6358 51554 0.4930 +6358 58191 0.4210 +6358 284340 0.4120 +6359 6363 0.7300 +6359 6364 0.7680 +6359 6366 0.5750 +6359 6369 0.7060 +6359 6370 0.5930 +6359 6372 0.4910 +6359 6373 0.6750 +6359 6374 0.6010 +6359 6375 0.4310 +6359 6376 0.5270 +6359 6387 0.5480 +6359 7124 0.4330 +6359 7852 0.8430 +6359 8742 0.4090 +6359 9547 0.4910 +6359 9560 0.8230 +6359 10563 0.5780 +6359 10663 0.8130 +6359 10803 0.7370 +6359 10850 0.7080 +6359 54331 0.8040 +6359 58191 0.5750 +6359 284340 0.4890 +6360 6363 0.7910 +6360 6364 0.7190 +6360 6366 0.6000 +6360 6367 0.4600 +6360 6368 0.6200 +6360 6370 0.7490 +6360 6372 0.7970 +6360 6373 0.7660 +6360 6374 0.7260 +6360 6375 0.4450 +6360 6376 0.6520 +6360 6387 0.6860 +6360 6714 0.6070 +6360 7852 0.7470 +6360 9034 0.5570 +6360 9560 0.8390 +6360 10563 0.6980 +6360 10663 0.8270 +6360 10803 0.8380 +6360 10850 0.7140 +6360 26086 0.4110 +6360 29899 0.4110 +6360 51554 0.5190 +6360 56477 0.6180 +6360 57007 0.5590 +6360 58191 0.7130 +6360 59340 0.4900 +6360 126006 0.4110 +6360 256957 0.4380 +6360 284340 0.7860 +6361 6362 0.5430 +6361 6363 0.8540 +6361 6364 0.7410 +6361 6366 0.9980 +6361 6367 0.9640 +6361 6369 0.8650 +6361 6370 0.9980 +6361 6372 0.4690 +6361 6373 0.7580 +6361 6374 0.8750 +6361 6375 0.5390 +6361 6376 0.8560 +6361 6382 0.7030 +6361 6387 0.6320 +6361 6401 0.4500 +6361 6402 0.4490 +6361 6404 0.4410 +6361 6772 0.4480 +6361 6774 0.4450 +6361 6776 0.5470 +6361 6777 0.5350 +6361 6778 0.5730 +6361 7040 0.4720 +6361 7076 0.6010 +6361 7097 0.4540 +6361 7099 0.4540 +6361 7124 0.7090 +6361 7292 0.5460 +6361 7293 0.4670 +6361 7412 0.6230 +6361 7852 0.9120 +6361 9034 0.9010 +6361 9332 0.6340 +6361 9547 0.9960 +6361 9560 0.4690 +6361 10344 0.9970 +6361 10563 0.7970 +6361 10631 0.4500 +6361 10663 0.8280 +6361 10673 0.4110 +6361 10803 0.8490 +6361 10850 0.8240 +6361 11251 0.6470 +6361 22914 0.5360 +6361 23581 0.4140 +6361 26253 0.4610 +6361 26271 0.4220 +6361 27074 0.5470 +6361 29126 0.5270 +6361 30009 0.4120 +6361 30835 0.4150 +6361 50489 0.4170 +6361 50615 0.4630 +6361 50616 0.5900 +6361 50943 0.7530 +6361 51192 0.5780 +6361 51554 0.9790 +6361 54210 0.5250 +6361 56477 0.9950 +6361 58191 0.5840 +6361 80380 0.4260 +6361 80381 0.4340 +6361 84666 0.4180 +6361 84868 0.5120 +6361 85480 0.8630 +6361 90865 0.7790 +6361 112616 0.4350 +6361 112744 0.4380 +6361 113540 0.5090 +6361 146225 0.4750 +6361 259197 0.4590 +6361 284340 0.9980 +6361 286151 0.4240 +6361 386653 0.5860 +6361 388698 0.5110 +6361 100423062 0.6210 +6362 6363 0.8370 +6362 6364 0.6310 +6362 6366 0.7290 +6362 6367 0.4960 +6362 6368 0.5030 +6362 6369 0.5110 +6362 6370 0.6550 +6362 6372 0.6310 +6362 6373 0.6860 +6362 6374 0.7500 +6362 6375 0.4550 +6362 6376 0.4260 +6362 6387 0.5820 +6362 6441 0.5590 +6362 6614 0.4180 +6362 6774 0.6300 +6362 6776 0.4110 +6362 6777 0.4930 +6362 6778 0.6290 +6362 7040 0.4560 +6362 7099 0.4320 +6362 7124 0.5690 +6362 7412 0.4660 +6362 7852 0.7980 +6362 8685 0.4420 +6362 9034 0.6860 +6362 9332 0.7800 +6362 9547 0.4410 +6362 9560 0.5440 +6362 10205 0.4450 +6362 10344 0.4440 +6362 10462 0.4420 +6362 10563 0.7950 +6362 10631 0.4710 +6362 10663 0.7760 +6362 10803 0.7400 +6362 10850 0.4810 +6362 11326 0.4170 +6362 27074 0.5600 +6362 27299 0.4670 +6362 29126 0.4710 +6362 30835 0.5030 +6362 50489 0.4330 +6362 50615 0.4160 +6362 50616 0.4020 +6362 50943 0.4010 +6362 57213 0.4280 +6362 58191 0.4680 +6362 80781 0.4690 +6362 83394 0.9950 +6362 85480 0.7200 +6362 90865 0.4470 +6362 94025 0.4560 +6362 144811 0.4350 +6362 160857 0.4260 +6362 284340 0.4310 +6362 386653 0.4180 +6363 6364 0.9610 +6363 6366 0.9970 +6363 6367 0.9470 +6363 6368 0.6150 +6363 6369 0.7130 +6363 6370 0.9330 +6363 6372 0.8440 +6363 6373 0.9280 +6363 6374 0.8800 +6363 6375 0.6320 +6363 6376 0.8010 +6363 6382 0.4500 +6363 6387 0.9660 +6363 6401 0.4550 +6363 6402 0.9370 +6363 6403 0.4630 +6363 6404 0.6460 +6363 6405 0.4220 +6363 6614 0.4300 +6363 6714 0.6180 +6363 6774 0.6730 +6363 6846 0.6390 +6363 6923 0.4220 +6363 7097 0.4380 +6363 7098 0.4260 +6363 7099 0.4460 +6363 7124 0.8360 +6363 7130 0.4980 +6363 7412 0.7780 +6363 7535 0.4310 +6363 7852 0.9980 +6363 8174 0.6240 +6363 8600 0.4390 +6363 8740 0.5250 +6363 8764 0.5890 +6363 8809 0.5240 +6363 9034 0.9980 +6363 9308 0.6060 +6363 9332 0.4650 +6363 9423 0.4830 +6363 9547 0.5770 +6363 9723 0.5040 +6363 9934 0.4530 +6363 9978 0.4240 +6363 10371 0.5110 +6363 10537 0.4280 +6363 10563 0.9980 +6363 10630 0.5500 +6363 10663 0.9040 +6363 10673 0.6170 +6363 10803 0.9640 +6363 10850 0.8750 +6363 10894 0.4860 +6363 26086 0.4110 +6363 26291 0.4370 +6363 27074 0.6700 +6363 27163 0.4860 +6363 27299 0.4120 +6363 29126 0.5250 +6363 29851 0.4950 +6363 29899 0.4110 +6363 30009 0.4520 +6363 30816 0.4870 +6363 30835 0.4620 +6363 50489 0.4070 +6363 50615 0.4790 +6363 50616 0.4440 +6363 50943 0.5100 +6363 51284 0.4550 +6363 51311 0.5160 +6363 51554 0.9990 +6363 53829 0.4250 +6363 54106 0.5230 +6363 56413 0.5260 +6363 56477 0.5680 +6363 57007 0.6990 +6363 58191 0.7930 +6363 63940 0.4200 +6363 80381 0.4200 +6363 81793 0.4300 +6363 85480 0.6840 +6363 90865 0.5210 +6363 123803 0.6070 +6363 126006 0.4150 +6363 151887 0.5090 +6363 257313 0.4340 +6363 260436 0.5260 +6363 405754 0.4750 +6363 414062 0.5610 +6363 100423062 0.4800 +6363 100528017 0.4160 +6364 6366 0.7280 +6364 6367 0.8310 +6364 6368 0.7800 +6364 6369 0.8050 +6364 6370 0.8230 +6364 6372 0.8360 +6364 6373 0.9990 +6364 6374 0.9990 +6364 6375 0.5200 +6364 6376 0.9200 +6364 6387 0.9990 +6364 6401 0.4810 +6364 6402 0.4650 +6364 6403 0.5260 +6364 6404 0.5570 +6364 6590 0.4590 +6364 6648 0.4130 +6364 6696 0.4330 +6364 6714 0.6250 +6364 6772 0.5040 +6364 6774 0.7820 +6364 6846 0.9950 +6364 7040 0.6910 +6364 7071 0.4290 +6364 7076 0.6510 +6364 7096 0.5930 +6364 7097 0.6080 +6364 7098 0.5530 +6364 7099 0.6020 +6364 7100 0.6580 +6364 7124 0.9310 +6364 7128 0.6980 +6364 7132 0.4060 +6364 7166 0.4110 +6364 7189 0.5520 +6364 7412 0.6870 +6364 7832 0.4450 +6364 7850 0.6420 +6364 7852 0.9580 +6364 8600 0.4520 +6364 8764 0.5060 +6364 8808 0.4430 +6364 8809 0.4040 +6364 8837 0.4670 +6364 8870 0.4060 +6364 8995 0.5240 +6364 9021 0.4310 +6364 9034 0.9990 +6364 9173 0.5510 +6364 9235 0.4420 +6364 9308 0.4940 +6364 9332 0.4630 +6364 9508 0.4600 +6364 9518 0.5440 +6364 9547 0.5070 +6364 9560 0.6010 +6364 10344 0.7990 +6364 10563 0.9000 +6364 10663 0.9560 +6364 10673 0.4350 +6364 10803 0.8660 +6364 10850 0.8830 +6364 10874 0.4610 +6364 10928 0.5100 +6364 11009 0.4840 +6364 11251 0.4200 +6364 23765 0.5900 +6364 26525 0.4160 +6364 27069 0.4910 +6364 27189 0.5930 +6364 27190 0.4770 +6364 29126 0.5020 +6364 29851 0.4070 +6364 29899 0.4050 +6364 29949 0.5300 +6364 30009 0.4820 +6364 50615 0.5660 +6364 50616 0.7550 +6364 50943 0.6040 +6364 51284 0.5020 +6364 51554 0.9280 +6364 51561 0.6000 +6364 53342 0.4340 +6364 54106 0.4770 +6364 54331 0.8190 +6364 55540 0.4130 +6364 55801 0.6030 +6364 56300 0.5540 +6364 56477 0.6220 +6364 56729 0.5250 +6364 57007 0.6680 +6364 58191 0.8490 +6364 58985 0.4090 +6364 63940 0.4210 +6364 64127 0.4050 +6364 64332 0.5120 +6364 64806 0.5200 +6364 80149 0.5270 +6364 81793 0.5520 +6364 84666 0.5350 +6364 84818 0.5060 +6364 85480 0.6180 +6364 90865 0.6190 +6364 112744 0.7150 +6364 114548 0.4300 +6364 140596 0.4870 +6364 149233 0.5640 +6364 284340 0.9970 +6364 386653 0.5060 +6364 388698 0.4010 +6364 414062 0.7820 +6364 414325 0.6490 +6364 728358 0.4510 +6364 100289462 0.5060 +6366 6367 0.8070 +6366 6368 0.9970 +6366 6369 0.9980 +6366 6370 0.9310 +6366 6372 0.7140 +6366 6373 0.9990 +6366 6374 0.8510 +6366 6375 0.9980 +6366 6376 0.9310 +6366 6387 0.9990 +6366 6401 0.4820 +6366 6402 0.9320 +6366 6403 0.4820 +6366 6404 0.6640 +6366 6405 0.4370 +6366 6714 0.7570 +6366 6846 0.9970 +6366 7099 0.4630 +6366 7124 0.6230 +6366 7130 0.4720 +6366 7305 0.4360 +6366 7412 0.6530 +6366 7424 0.5770 +6366 7852 0.9990 +6366 7869 0.4240 +6366 8174 0.7830 +6366 8600 0.4930 +6366 8639 0.4010 +6366 8740 0.5510 +6366 8764 0.6520 +6366 9034 0.8910 +6366 9308 0.5410 +6366 9423 0.4780 +6366 9547 0.9970 +6366 9723 0.4930 +6366 9934 0.4450 +6366 10344 0.9970 +6366 10371 0.4940 +6366 10512 0.4100 +6366 10563 0.9910 +6366 10630 0.8430 +6366 10663 0.8940 +6366 10673 0.5930 +6366 10803 0.9840 +6366 10850 0.9460 +6366 10894 0.7700 +6366 23569 0.4350 +6366 26086 0.4110 +6366 26503 0.4850 +6366 27074 0.4350 +6366 27163 0.5130 +6366 29126 0.4940 +6366 29851 0.4210 +6366 29899 0.4110 +6366 30009 0.4400 +6366 30835 0.4030 +6366 50489 0.4250 +6366 50512 0.4510 +6366 50615 0.4730 +6366 50616 0.4080 +6366 50835 0.4140 +6366 50943 0.5300 +6366 51284 0.4280 +6366 51554 0.9990 +6366 55295 0.5950 +6366 56477 0.9970 +6366 56920 0.4390 +6366 57007 0.9040 +6366 58191 0.7830 +6366 63940 0.4110 +6366 79705 0.4260 +6366 79837 0.4320 +6366 80381 0.4010 +6366 83593 0.5180 +6366 84636 0.4730 +6366 90865 0.4940 +6366 123803 0.7090 +6366 126006 0.4110 +6366 150771 0.4050 +6366 223117 0.4040 +6366 256957 0.4520 +6366 284340 0.9950 +6366 100423062 0.4580 +6366 100528017 0.4160 +6367 6368 0.6630 +6367 6369 0.8230 +6367 6370 0.7270 +6367 6372 0.4920 +6367 6373 0.7350 +6367 6374 0.8740 +6367 6375 0.5250 +6367 6376 0.8780 +6367 6387 0.6830 +6367 6402 0.4230 +6367 6772 0.6660 +6367 6774 0.7440 +6367 6778 0.5270 +6367 7039 0.4410 +6367 7040 0.5000 +6367 7097 0.4720 +6367 7099 0.5070 +6367 7124 0.8110 +6367 7292 0.4750 +6367 7293 0.4190 +6367 7412 0.5970 +6367 7852 0.9730 +6367 8784 0.5910 +6367 9034 0.8350 +6367 9308 0.4690 +6367 9332 0.6770 +6367 9547 0.6210 +6367 9560 0.4130 +6367 9966 0.4860 +6367 10344 0.7760 +6367 10563 0.7780 +6367 10663 0.8400 +6367 10803 0.8360 +6367 10850 0.6640 +6367 11251 0.5540 +6367 26271 0.4220 +6367 27074 0.5630 +6367 29126 0.6020 +6367 29851 0.4040 +6367 30835 0.4270 +6367 50615 0.5250 +6367 50616 0.5230 +6367 50943 0.8720 +6367 51192 0.5380 +6367 51284 0.4140 +6367 51554 0.9410 +6367 54106 0.4120 +6367 58191 0.5780 +6367 80380 0.4540 +6367 80381 0.4220 +6367 84868 0.4900 +6367 85480 0.7950 +6367 90865 0.5710 +6367 112616 0.4290 +6367 112744 0.4450 +6367 113540 0.4670 +6367 146225 0.4520 +6367 169355 0.4880 +6367 286151 0.4220 +6367 386653 0.4480 +6367 388698 0.4010 +6367 414062 0.5200 +6368 6369 0.8710 +6368 6370 0.7410 +6368 6372 0.5540 +6368 6373 0.5970 +6368 6374 0.5950 +6368 6375 0.4730 +6368 6376 0.5070 +6368 6387 0.4800 +6368 6714 0.5230 +6368 7023 0.6650 +6368 7124 0.4430 +6368 7204 0.4990 +6368 7412 0.5160 +6368 8490 0.5030 +6368 8740 0.4080 +6368 8764 0.4400 +6368 8997 0.4990 +6368 9034 0.6950 +6368 9547 0.4860 +6368 9560 0.6510 +6368 10215 0.4180 +6368 10287 0.5090 +6368 10344 0.4720 +6368 10563 0.5600 +6368 10681 0.4990 +6368 10767 0.6880 +6368 10800 0.5010 +6368 10850 0.7270 +6368 11251 0.4150 +6368 23236 0.4990 +6368 26575 0.5100 +6368 50865 0.4990 +6368 51554 0.4680 +6368 51764 0.5130 +6368 54331 0.5110 +6368 55970 0.5100 +6368 57105 0.5170 +6368 58191 0.5580 +6368 59345 0.4990 +6368 63940 0.4240 +6368 64407 0.5330 +6368 94235 0.5110 +6368 115557 0.4990 +6368 260429 0.4070 +6368 284340 0.4280 +6368 431704 0.5030 +6369 6370 0.7470 +6369 6372 0.4830 +6369 6373 0.9970 +6369 6374 0.6670 +6369 6375 0.9940 +6369 6376 0.5370 +6369 6387 0.5190 +6369 6403 0.4600 +6369 6778 0.4740 +6369 6846 0.4140 +6369 7124 0.5930 +6369 7852 0.8500 +6369 7941 0.4930 +6369 8288 0.5710 +6369 9034 0.5790 +6369 9092 0.4970 +6369 9332 0.4890 +6369 9547 0.6040 +6369 10344 0.6160 +6369 10392 0.4680 +6369 10563 0.7830 +6369 10663 0.7900 +6369 10803 0.8270 +6369 10850 0.8120 +6369 11005 0.4560 +6369 11251 0.6100 +6369 26253 0.4090 +6369 27181 0.4040 +6369 50615 0.5680 +6369 51131 0.5670 +6369 54210 0.4110 +6369 58191 0.5820 +6369 80332 0.4600 +6369 85480 0.5890 +6369 90865 0.6120 +6369 117156 0.4490 +6370 6372 0.7290 +6370 6373 0.9990 +6370 6374 0.7770 +6370 6375 0.6800 +6370 6376 0.7680 +6370 6387 0.9980 +6370 6402 0.4030 +6370 6404 0.5700 +6370 6714 0.5330 +6370 6846 0.5620 +6370 7124 0.4480 +6370 7412 0.5670 +6370 7852 0.8890 +6370 8174 0.9280 +6370 8456 0.5790 +6370 9034 0.7250 +6370 9547 0.5170 +6370 10279 0.4110 +6370 10344 0.7220 +6370 10563 0.8740 +6370 10663 0.8870 +6370 10803 0.9990 +6370 10850 0.9220 +6370 50943 0.4150 +6370 51554 0.9990 +6370 54567 0.4330 +6370 56477 0.7050 +6370 57007 0.6920 +6370 58191 0.8050 +6370 83700 0.4370 +6370 84436 0.4040 +6370 84467 0.6980 +6370 122706 0.4740 +6370 284340 0.9970 +6372 6373 0.9750 +6372 6374 0.9420 +6372 6375 0.4910 +6372 6376 0.7370 +6372 6387 0.9990 +6372 6714 0.5320 +6372 6751 0.4330 +6372 6772 0.5360 +6372 7124 0.5410 +6372 7412 0.4330 +6372 7852 0.7980 +6372 8764 0.4180 +6372 9547 0.5070 +6372 10344 0.4600 +6372 10406 0.4510 +6372 10563 0.8680 +6372 10663 0.7580 +6372 10803 0.6950 +6372 10850 0.7040 +6372 11009 0.4500 +6372 56477 0.5700 +6372 57007 0.5770 +6372 58191 0.9250 +6372 79758 0.4020 +6372 84659 0.4020 +6372 284340 0.6730 +6372 338661 0.4370 +6372 414062 0.4370 +6373 6374 0.9780 +6373 6375 0.9970 +6373 6376 0.8590 +6373 6387 0.9990 +6373 6401 0.4550 +6373 6402 0.4120 +6373 6714 0.6230 +6373 6772 0.7550 +6373 6773 0.4640 +6373 6774 0.4820 +6373 7040 0.9470 +6373 7042 0.6320 +6373 7043 0.5800 +6373 7046 0.4040 +6373 7048 0.6980 +6373 7051 0.4680 +6373 7076 0.4180 +6373 7097 0.4920 +6373 7098 0.5700 +6373 7099 0.5070 +6373 7124 0.7050 +6373 7130 0.7340 +6373 7293 0.5160 +6373 7412 0.5620 +6373 7433 0.4260 +6373 7852 0.9940 +6373 8337 0.5610 +6373 8338 0.5600 +6373 8349 0.4470 +6373 8638 0.7300 +6373 8651 0.4200 +6373 8743 0.4860 +6373 8995 0.5020 +6373 9021 0.5920 +6373 9034 0.7560 +6373 9332 0.6720 +6373 9547 0.9970 +6373 9560 0.4820 +6373 9636 0.6300 +6373 10344 0.9970 +6373 10379 0.4080 +6373 10457 0.4260 +6373 10467 0.5370 +6373 10537 0.6540 +6373 10561 0.5370 +6373 10563 0.9870 +6373 10663 0.8860 +6373 10673 0.5060 +6373 10803 0.7930 +6373 10850 0.8360 +6373 10964 0.5150 +6373 11274 0.5240 +6373 11314 0.4380 +6373 23098 0.4140 +6373 23586 0.6110 +6373 24138 0.4060 +6373 26150 0.4340 +6373 27074 0.4280 +6373 29080 0.4460 +6373 29126 0.6300 +6373 30009 0.4660 +6373 50615 0.5290 +6373 50616 0.4540 +6373 50943 0.5170 +6373 51191 0.4130 +6373 51284 0.4690 +6373 51311 0.4410 +6373 51513 0.4230 +6373 51554 0.6680 +6373 54739 0.4650 +6373 54878 0.4270 +6373 55601 0.6110 +6373 56477 0.5830 +6373 57007 0.9980 +6373 58191 0.8320 +6373 64108 0.5210 +6373 64135 0.5910 +6373 80380 0.4700 +6373 90865 0.4550 +6373 91543 0.6240 +6373 112744 0.4280 +6373 115361 0.6260 +6373 115362 0.6660 +6373 115650 0.7350 +6373 116071 0.4510 +6373 169355 0.4050 +6373 282616 0.4010 +6373 282618 0.5260 +6373 284340 0.4570 +6373 414062 0.6060 +6373 768206 0.4200 +6374 6375 0.4830 +6374 6376 0.8010 +6374 6387 0.9050 +6374 6401 0.4340 +6374 6403 0.4280 +6374 6696 0.4640 +6374 6714 0.6320 +6374 6772 0.4480 +6374 6774 0.5090 +6374 6846 0.9950 +6374 7040 0.5050 +6374 7042 0.4050 +6374 7057 0.5980 +6374 7076 0.5900 +6374 7097 0.4780 +6374 7099 0.5060 +6374 7124 0.7170 +6374 7301 0.4650 +6374 7412 0.5190 +6374 7850 0.4020 +6374 7852 0.9850 +6374 9034 0.5020 +6374 9332 0.4680 +6374 9518 0.5450 +6374 9547 0.9970 +6374 9560 0.4270 +6374 10344 0.7080 +6374 10379 0.4790 +6374 10563 0.9020 +6374 10663 0.7930 +6374 10803 0.8080 +6374 10850 0.8370 +6374 11009 0.4460 +6374 11093 0.4170 +6374 23765 0.4930 +6374 27074 0.4230 +6374 27189 0.4410 +6374 29126 0.5270 +6374 29899 0.4310 +6374 50616 0.7330 +6374 50943 0.4080 +6374 51176 0.4330 +6374 56477 0.5690 +6374 57007 0.6360 +6374 58191 0.8400 +6374 80781 0.5100 +6374 84818 0.4120 +6374 85480 0.6570 +6374 90865 0.5110 +6374 112744 0.5150 +6374 284340 0.5000 +6374 414062 0.5050 +6374 100289462 0.5460 +6375 6376 0.5910 +6375 6387 0.9970 +6375 6846 0.9950 +6375 6932 0.4370 +6375 7056 0.6290 +6375 7124 0.5140 +6375 7204 0.5310 +6375 7535 0.4250 +6375 7852 0.8720 +6375 8320 0.4790 +6375 8997 0.4990 +6375 9034 0.6560 +6375 9437 0.4620 +6375 9476 0.4390 +6375 9547 0.9960 +6375 9560 0.4300 +6375 10219 0.4420 +6375 10344 0.9940 +6375 10365 0.4050 +6375 10563 0.5650 +6375 10578 0.5690 +6375 10663 0.8440 +6375 10800 0.5000 +6375 10803 0.8560 +6375 10850 0.5170 +6375 11126 0.5410 +6375 22914 0.6140 +6375 23236 0.4990 +6375 29851 0.4450 +6375 30009 0.5680 +6375 51348 0.4530 +6375 55509 0.4850 +6375 56253 0.5860 +6375 56477 0.9950 +6375 57105 0.5040 +6375 58191 0.4830 +6375 65258 0.7130 +6375 84868 0.4480 +6375 115557 0.4990 +6375 201633 0.4720 +6375 283420 0.5220 +6375 284340 0.9950 +6375 414062 0.5610 +6376 6387 0.8930 +6376 6401 0.6420 +6376 6402 0.4140 +6376 6403 0.4530 +6376 6404 0.5220 +6376 6714 0.6610 +6376 6772 0.5260 +6376 6774 0.5600 +6376 6850 0.4060 +6376 6868 0.7690 +6376 7039 0.7100 +6376 7040 0.6530 +6376 7076 0.4500 +6376 7097 0.4990 +6376 7098 0.5400 +6376 7099 0.5860 +6376 7124 0.8140 +6376 7128 0.4200 +6376 7132 0.5860 +6376 7305 0.4010 +6376 7412 0.6150 +6376 7433 0.4320 +6376 7852 0.9950 +6376 8633 0.4190 +6376 8743 0.5680 +6376 8754 0.5130 +6376 9034 0.6720 +6376 9332 0.6540 +6376 9365 0.4700 +6376 9508 0.4400 +6376 9518 0.4910 +6376 9547 0.4350 +6376 9560 0.5030 +6376 9936 0.4100 +6376 10223 0.4480 +6376 10225 0.4370 +6376 10344 0.7300 +6376 10461 0.4260 +6376 10563 0.8600 +6376 10663 0.9390 +6376 10666 0.4840 +6376 10803 0.8320 +6376 10850 0.7560 +6376 22914 0.5450 +6376 27286 0.5960 +6376 29933 0.4810 +6376 51192 0.4750 +6376 53829 0.4700 +6376 54209 0.6030 +6376 54331 0.8000 +6376 56477 0.5620 +6376 57007 0.6520 +6376 58191 0.9140 +6376 63940 0.4420 +6376 64805 0.6770 +6376 84868 0.4690 +6376 90865 0.4790 +6376 91937 0.5240 +6376 112616 0.4370 +6376 113540 0.4860 +6376 131450 0.9710 +6376 140885 0.6200 +6376 146225 0.4680 +6376 146433 0.5920 +6376 282618 0.4660 +6382 6383 0.9820 +6382 6385 0.9470 +6382 6386 0.9970 +6382 6387 0.7020 +6382 6401 0.4770 +6382 6402 0.5860 +6382 6403 0.5730 +6382 6590 0.5210 +6382 6659 0.4160 +6382 6693 0.8070 +6382 6696 0.5200 +6382 6714 0.4160 +6382 6737 0.4810 +6382 6774 0.4480 +6382 6818 0.4340 +6382 6868 0.4980 +6382 7037 0.6050 +6382 7040 0.6440 +6382 7056 0.5220 +6382 7057 0.9890 +6382 7058 0.9210 +6382 7059 0.9080 +6382 7060 0.9460 +6382 7074 0.8860 +6382 7077 0.5450 +6382 7094 0.7300 +6382 7099 0.6540 +6382 7124 0.7160 +6382 7143 0.9000 +6382 7148 0.9040 +6382 7157 0.5200 +6382 7292 0.4650 +6382 7412 0.6390 +6382 7430 0.6500 +6382 7448 0.8530 +6382 7450 0.6490 +6382 7468 0.4390 +6382 7471 0.9220 +6382 7494 0.7400 +6382 7804 0.4350 +6382 7837 0.5150 +6382 7852 0.5710 +6382 8038 0.7900 +6382 8509 0.6070 +6382 8573 0.4650 +6382 8600 0.5520 +6382 8639 0.5050 +6382 8741 0.4470 +6382 8817 0.7610 +6382 8822 0.7610 +6382 8823 0.7610 +6382 8825 0.4410 +6382 8828 0.4970 +6382 9070 0.9890 +6382 9076 0.5670 +6382 9172 0.6090 +6382 9308 0.5520 +6382 9332 0.4220 +6382 9348 0.5760 +6382 9378 0.4100 +6382 9394 0.6230 +6382 9653 0.7070 +6382 9672 0.8670 +6382 9739 0.8820 +6382 9951 0.4780 +6382 9953 0.5440 +6382 9955 0.5420 +6382 9956 0.5450 +6382 9957 0.6060 +6382 10015 0.8810 +6382 10082 0.6820 +6382 10160 0.4460 +6382 10210 0.4250 +6382 10457 0.4360 +6382 10563 0.5740 +6382 10631 0.5270 +6382 10673 0.6260 +6382 10675 0.5560 +6382 10691 0.6140 +6382 10755 0.5360 +6382 10855 0.9570 +6382 11082 0.5870 +6382 11091 0.9870 +6382 11096 0.4520 +6382 11167 0.4090 +6382 11285 0.5050 +6382 22918 0.6660 +6382 22943 0.5190 +6382 23213 0.4290 +6382 23495 0.6080 +6382 23705 0.5120 +6382 23759 0.4180 +6382 26020 0.4010 +6382 26035 0.6580 +6382 26205 0.6250 +6382 26229 0.4830 +6382 26281 0.7610 +6382 27006 0.7610 +6382 27087 0.6020 +6382 27111 0.9230 +6382 27242 0.4950 +6382 29126 0.6600 +6382 29851 0.5340 +6382 29881 0.4080 +6382 30827 0.6990 +6382 30835 0.5510 +6382 50615 0.4210 +6382 50848 0.4660 +6382 50943 0.5890 +6382 51129 0.5000 +6382 51284 0.4180 +6382 51399 0.7230 +6382 54106 0.4600 +6382 54205 0.4020 +6382 55507 0.5320 +6382 55959 0.4460 +6382 56254 0.4330 +6382 57111 0.4490 +6382 57379 0.5880 +6382 57823 0.6510 +6382 60495 0.9440 +6382 63827 0.6620 +6382 63923 0.9020 +6382 64131 0.9500 +6382 64132 0.5160 +6382 64579 0.5600 +6382 64711 0.5230 +6382 80328 0.4570 +6382 80335 0.9890 +6382 80781 0.4730 +6382 83416 0.4420 +6382 83660 0.7240 +6382 84661 0.6650 +6382 84684 0.4300 +6382 84896 0.4420 +6382 89780 0.5190 +6382 90070 0.8730 +6382 90161 0.5640 +6382 112939 0.4460 +6382 115650 0.5310 +6382 116519 0.5110 +6382 117156 0.4340 +6382 126792 0.5140 +6382 131873 0.6720 +6382 137902 0.4920 +6382 146433 0.9480 +6382 151887 0.4260 +6382 170482 0.5810 +6382 221914 0.7030 +6382 222537 0.5300 +6382 266722 0.5160 +6382 338328 0.4290 +6382 375790 0.7630 +6382 440533 0.7270 +6382 445329 0.4180 +6382 100133941 0.5930 +6382 100423062 0.4810 +6382 100526664 0.4320 +6382 102723407 0.7200 +6383 6385 0.9840 +6383 6386 0.9560 +6383 6422 0.5440 +6383 6423 0.6460 +6383 7039 0.4440 +6383 7040 0.8990 +6383 7057 0.4970 +6383 7074 0.6800 +6383 7430 0.9780 +6383 7448 0.5920 +6383 7481 0.4110 +6383 8509 0.6440 +6383 8573 0.9660 +6383 8825 0.4280 +6383 9348 0.6440 +6383 9394 0.6500 +6383 9653 0.7190 +6383 9672 0.8510 +6383 9951 0.5610 +6383 9953 0.6120 +6383 9955 0.5610 +6383 9956 0.6040 +6383 9957 0.6720 +6383 10082 0.7790 +6383 10090 0.4110 +6383 10675 0.5150 +6383 10686 0.4100 +6383 10691 0.4220 +6383 10801 0.5430 +6383 10855 0.6130 +6383 11285 0.5340 +6383 23098 0.4720 +6383 23213 0.5260 +6383 23426 0.4330 +6383 26035 0.6900 +6383 26047 0.4140 +6383 26205 0.5910 +6383 26229 0.5160 +6383 27087 0.4920 +6383 29967 0.4300 +6383 51399 0.9720 +6383 54757 0.4210 +6383 55351 0.4050 +6383 55959 0.4880 +6383 56975 0.5300 +6383 57524 0.4270 +6383 60495 0.6420 +6383 63827 0.5860 +6383 64131 0.5650 +6383 64132 0.5650 +6383 64579 0.5940 +6383 64711 0.5730 +6383 65009 0.5440 +6383 80781 0.4660 +6383 81609 0.4040 +6383 90070 0.4340 +6383 90161 0.6250 +6383 126792 0.5750 +6383 135152 0.4450 +6383 145270 0.5610 +6383 221914 0.7830 +6383 222537 0.6400 +6383 266722 0.5610 +6383 375790 0.7170 +6383 392255 0.4820 +6383 440533 0.5140 +6385 6386 0.9810 +6385 6387 0.5640 +6385 6520 0.4400 +6385 6696 0.5490 +6385 7040 0.8680 +6385 7049 0.5190 +6385 7052 0.6720 +6385 7057 0.9770 +6385 7058 0.9520 +6385 7059 0.9160 +6385 7060 0.9180 +6385 7070 0.9360 +6385 7074 0.4530 +6385 7143 0.9070 +6385 7148 0.9140 +6385 7170 0.5070 +6385 7424 0.5450 +6385 7430 0.5530 +6385 7448 0.8290 +6385 7476 0.6190 +6385 7804 0.4140 +6385 7852 0.6680 +6385 8030 0.5080 +6385 8038 0.6760 +6385 8324 0.9820 +6385 8509 0.6070 +6385 8829 0.4530 +6385 9124 0.4410 +6385 9348 0.5820 +6385 9394 0.5480 +6385 9436 0.6500 +6385 9507 0.4030 +6385 9508 0.4180 +6385 9653 0.6100 +6385 9672 0.7850 +6385 9951 0.5180 +6385 9953 0.5230 +6385 9955 0.5070 +6385 9956 0.5310 +6385 9957 0.6470 +6385 10082 0.6550 +6385 10457 0.7800 +6385 10568 0.6500 +6385 10675 0.5770 +6385 10755 0.9740 +6385 10855 0.6100 +6385 11014 0.5810 +6385 11096 0.9330 +6385 11174 0.4630 +6385 11285 0.4930 +6385 23495 0.4810 +6385 23586 0.4740 +6385 26020 0.4580 +6385 26035 0.5390 +6385 26205 0.4730 +6385 26229 0.4860 +6385 27087 0.4220 +6385 27111 0.6180 +6385 29967 0.4030 +6385 51399 0.8280 +6385 54212 0.5140 +6385 55026 0.5080 +6385 55240 0.4320 +6385 57120 0.5140 +6385 57216 0.5510 +6385 58485 0.5470 +6385 60495 0.5820 +6385 63827 0.6530 +6385 63923 0.9150 +6385 64131 0.5180 +6385 64132 0.4880 +6385 64579 0.5380 +6385 64711 0.5000 +6385 84309 0.9700 +6385 84870 0.8450 +6385 90161 0.5200 +6385 121227 0.6550 +6385 126792 0.4710 +6385 131873 0.6500 +6385 135152 0.4140 +6385 221914 0.6540 +6385 222537 0.5600 +6385 266722 0.4780 +6385 284654 0.4970 +6385 375790 0.6680 +6385 440533 0.5350 +6386 6616 0.4490 +6386 6640 0.6700 +6386 6641 0.5180 +6386 6645 0.5640 +6386 6659 0.8550 +6386 6714 0.7380 +6386 6732 0.4400 +6386 6764 0.7830 +6386 6774 0.5130 +6386 7039 0.7770 +6386 7102 0.4690 +6386 7105 0.7410 +6386 7124 0.4830 +6386 7251 0.8590 +6386 7430 0.5440 +6386 7532 0.5180 +6386 7846 0.4460 +6386 7965 0.7950 +6386 8027 0.4680 +6386 8099 0.5370 +6386 8324 0.7060 +6386 8408 0.4090 +6386 8573 0.6820 +6386 8766 0.4560 +6386 8777 0.4960 +6386 8842 0.4780 +6386 9152 0.8310 +6386 9255 0.8000 +6386 9341 0.4960 +6386 9378 0.8190 +6386 9379 0.8260 +6386 9463 0.6630 +6386 9521 0.8160 +6386 9525 0.4520 +6386 9701 0.4150 +6386 10015 0.9980 +6386 10016 0.5390 +6386 10099 0.4060 +6386 10211 0.7300 +6386 10380 0.4490 +6386 10755 0.4870 +6386 11021 0.4660 +6386 23114 0.9490 +6386 23243 0.4160 +6386 23426 0.6240 +6386 23705 0.9000 +6386 25945 0.4780 +6386 26003 0.4500 +6386 50484 0.4380 +6386 51324 0.4040 +6386 51399 0.5130 +6386 51520 0.8220 +6386 51534 0.4570 +6386 55165 0.4980 +6386 55512 0.4370 +6386 56896 0.7350 +6386 64398 0.5700 +6386 80852 0.4650 +6386 81619 0.4070 +6386 81622 0.6950 +6386 90362 0.4010 +6386 92714 0.4530 +6386 123283 0.6540 +6386 133482 0.5130 +6386 260425 0.5650 +6386 284119 0.4060 +6387 6401 0.7270 +6387 6402 0.7200 +6387 6403 0.7490 +6387 6404 0.5720 +6387 6414 0.4910 +6387 6423 0.4350 +6387 6469 0.5160 +6387 6504 0.4500 +6387 6586 0.4980 +6387 6591 0.4720 +6387 6614 0.4370 +6387 6615 0.5060 +6387 6657 0.4930 +6387 6662 0.4460 +6387 6678 0.4820 +6387 6696 0.6830 +6387 6714 0.7890 +6387 6750 0.4950 +6387 6772 0.6630 +6387 6774 0.6840 +6387 6776 0.4390 +6387 6777 0.4140 +6387 6846 0.9950 +6387 6850 0.4110 +6387 6876 0.4320 +6387 7010 0.8250 +6387 7039 0.4790 +6387 7040 0.7980 +6387 7042 0.5120 +6387 7043 0.5040 +6387 7048 0.4200 +6387 7057 0.5530 +6387 7058 0.6790 +6387 7066 0.7380 +6387 7070 0.6730 +6387 7076 0.7370 +6387 7077 0.4500 +6387 7078 0.6060 +6387 7096 0.4930 +6387 7097 0.5270 +6387 7098 0.4530 +6387 7099 0.8210 +6387 7124 0.7500 +6387 7130 0.6380 +6387 7132 0.4030 +6387 7157 0.5820 +6387 7291 0.4760 +6387 7292 0.5510 +6387 7295 0.4720 +6387 7373 0.4030 +6387 7412 0.8640 +6387 7423 0.4020 +6387 7424 0.6190 +6387 7436 0.4450 +6387 7448 0.6080 +6387 7450 0.5830 +6387 7474 0.4970 +6387 7837 0.5650 +6387 7852 0.9990 +6387 8082 0.4200 +6387 8174 0.4470 +6387 8600 0.6270 +6387 8743 0.4130 +6387 8763 0.6120 +6387 8817 0.6190 +6387 8822 0.6100 +6387 8823 0.6090 +6387 8829 0.4200 +6387 8842 0.6470 +6387 9034 0.8860 +6387 9140 0.4810 +6387 9314 0.4030 +6387 9332 0.6030 +6387 9353 0.7330 +6387 9370 0.5970 +6387 9547 0.9980 +6387 9802 0.4360 +6387 10022 0.4120 +6387 10130 0.4420 +6387 10135 0.7300 +6387 10344 0.9960 +6387 10371 0.6460 +6387 10563 0.9640 +6387 10630 0.5190 +6387 10631 0.6260 +6387 10663 0.9780 +6387 10673 0.6230 +6387 10763 0.6560 +6387 10803 0.9160 +6387 10850 0.8660 +6387 10894 0.5630 +6387 22914 0.4060 +6387 22943 0.6360 +6387 26281 0.6090 +6387 27006 0.6090 +6387 29126 0.7570 +6387 30816 0.4070 +6387 50512 0.4420 +6387 50616 0.4470 +6387 50943 0.5800 +6387 51284 0.4410 +6387 51554 0.8650 +6387 51705 0.4280 +6387 53637 0.5520 +6387 54106 0.6340 +6387 54567 0.5070 +6387 54878 0.4460 +6387 55553 0.4460 +6387 55970 0.4120 +6387 56477 0.9970 +6387 56944 0.4700 +6387 57007 0.9990 +6387 58191 0.8270 +6387 59345 0.4530 +6387 63940 0.4080 +6387 64083 0.4700 +6387 79923 0.4480 +6387 80380 0.4800 +6387 80381 0.4350 +6387 80781 0.4440 +6387 83593 0.4550 +6387 84868 0.4800 +6387 90865 0.5090 +6387 91662 0.5240 +6387 121340 0.4910 +6387 134637 0.4100 +6387 137902 0.5420 +6387 140885 0.4020 +6387 169355 0.4950 +6387 203068 0.5020 +6387 284340 0.9960 +6387 389289 0.5270 +6387 414062 0.6080 +6387 414325 0.5310 +6387 653145 0.5390 +6387 100133941 0.4810 +6387 100423062 0.6610 +6388 6674 0.7190 +6388 6950 0.7300 +6388 7184 0.5840 +6388 7203 0.7230 +6388 7248 0.7440 +6388 7841 0.5170 +6388 8409 0.5500 +6388 8607 0.5620 +6388 8624 0.7210 +6388 8725 0.5400 +6388 9531 0.7310 +6388 9532 0.5410 +6388 9601 0.5270 +6388 9703 0.4390 +6388 10273 0.5430 +6388 10471 0.5520 +6388 10574 0.7240 +6388 10575 0.7240 +6388 10576 0.7240 +6388 10585 0.7110 +6388 10693 0.7200 +6388 10694 0.7240 +6388 10728 0.7230 +6388 10856 0.5610 +6388 10945 0.8590 +6388 10963 0.7570 +6388 11140 0.7420 +6388 11342 0.5150 +6388 22948 0.7240 +6388 23234 0.7380 +6388 23302 0.4260 +6388 23753 0.7780 +6388 26353 0.7200 +6388 27248 0.4550 +6388 29925 0.4970 +6388 51009 0.5760 +6388 51398 0.5810 +6388 51726 0.9880 +6388 55172 0.5470 +6388 55757 0.5050 +6388 56886 0.5090 +6388 56984 0.7270 +6388 57003 0.5530 +6388 57679 0.5420 +6388 79087 0.4070 +6388 79657 0.5660 +6388 80224 0.4560 +6388 80745 0.4110 +6388 81572 0.5760 +6388 84522 0.4440 +6388 120379 0.5400 +6388 124925 0.4470 +6388 125972 0.5670 +6388 150160 0.5400 +6388 399512 0.4170 +6389 6390 0.9990 +6389 6391 0.9990 +6389 6392 0.9990 +6389 6470 0.5910 +6389 6472 0.6700 +6389 6510 0.4410 +6389 6513 0.4210 +6389 6576 0.4750 +6389 6633 0.8410 +6389 6648 0.6020 +6389 6652 0.5220 +6389 6687 0.5070 +6389 6821 0.4130 +6389 6834 0.7170 +6389 6888 0.4870 +6389 6898 0.5030 +6389 6908 0.7560 +6389 7009 0.4170 +6389 7019 0.6620 +6389 7037 0.5350 +6389 7086 0.5230 +6389 7112 0.5280 +6389 7137 0.4280 +6389 7139 0.4180 +6389 7150 0.5940 +6389 7153 0.4390 +6389 7155 0.4890 +6389 7157 0.4860 +6389 7167 0.6510 +6389 7263 0.6070 +6389 7280 0.4420 +6389 7284 0.7340 +6389 7296 0.6370 +6389 7316 0.4940 +6389 7381 0.8820 +6389 7384 0.9680 +6389 7385 0.9900 +6389 7386 0.9930 +6389 7388 0.8660 +6389 7390 0.4750 +6389 7403 0.4550 +6389 7404 0.4310 +6389 7414 0.4190 +6389 7416 0.7690 +6389 7417 0.4790 +6389 7419 0.4400 +6389 7534 0.8220 +6389 7570 0.4400 +6389 7812 0.4510 +6389 7837 0.4450 +6389 7915 0.6420 +6389 8048 0.4720 +6389 8050 0.8070 +6389 8192 0.7850 +6389 8277 0.4810 +6389 8402 0.6800 +6389 8540 0.5880 +6389 8557 0.4140 +6389 8565 0.4160 +6389 8659 0.5290 +6389 8665 0.4510 +6389 8801 0.9970 +6389 8802 0.9990 +6389 8803 0.9980 +6389 8854 0.5050 +6389 8879 0.4920 +6389 8892 0.4690 +6389 9054 0.4340 +6389 9060 0.8600 +6389 9061 0.8600 +6389 9093 0.4990 +6389 9296 0.4190 +6389 9343 0.8920 +6389 9361 0.6030 +6389 9377 0.8150 +6389 9380 0.4880 +6389 9399 0.4360 +6389 9401 0.4340 +6389 9512 0.8370 +6389 9551 0.4030 +6389 9563 0.6070 +6389 9607 0.6080 +6389 9804 0.6840 +6389 9868 0.4770 +6389 9927 0.5520 +6389 9997 0.5710 +6389 10059 0.4200 +6389 10060 0.5650 +6389 10102 0.5000 +6389 10128 0.6130 +6389 10131 0.7800 +6389 10449 0.7530 +6389 10452 0.4450 +6389 10476 0.6430 +6389 10553 0.4050 +6389 10587 0.6530 +6389 10594 0.8540 +6389 10632 0.7050 +6389 10730 0.5570 +6389 10840 0.5380 +6389 10845 0.5650 +6389 10873 0.5470 +6389 10891 0.6460 +6389 10915 0.7800 +6389 10935 0.5360 +6389 10939 0.7790 +6389 10946 0.8790 +6389 10975 0.6080 +6389 10989 0.5390 +6389 10992 0.8540 +6389 11001 0.4810 +6389 11019 0.5160 +6389 11051 0.4070 +6389 11155 0.4320 +6389 11222 0.4070 +6389 11315 0.4160 +6389 11331 0.5010 +6389 22934 0.4760 +6389 22938 0.8410 +6389 23095 0.5110 +6389 23135 0.4750 +6389 23203 0.6380 +6389 23408 0.4330 +6389 23410 0.8020 +6389 23475 0.9200 +6389 23479 0.6820 +6389 23521 0.8180 +6389 23558 0.5310 +6389 23590 0.5640 +6389 23600 0.8300 +6389 23645 0.5910 +6389 23761 0.4090 +6389 25813 0.5190 +6389 26284 0.5560 +6389 26330 0.4150 +6389 27068 0.5220 +6389 27069 0.4380 +6389 27089 0.7470 +6389 27235 0.5610 +6389 27247 0.5060 +6389 27339 0.8430 +6389 28976 0.5790 +6389 29796 0.6970 +6389 29928 0.4080 +6389 29968 0.4670 +6389 30968 0.4230 +6389 51024 0.4180 +6389 51031 0.5230 +6389 51069 0.4230 +6389 51071 0.4610 +6389 51079 0.7680 +6389 51084 0.4200 +6389 51091 0.4910 +6389 51167 0.5780 +6389 51204 0.5770 +6389 51362 0.7820 +6389 51380 0.4870 +6389 51444 0.5140 +6389 51497 0.4410 +6389 51700 0.5490 +6389 51706 0.6040 +6389 51805 0.4240 +6389 54205 0.9300 +6389 54511 0.4810 +6389 54539 0.4790 +6389 54583 0.5150 +6389 54704 0.4120 +6389 54802 0.4360 +6389 54941 0.5140 +6389 54949 0.9990 +6389 54968 0.4190 +6389 54988 0.4110 +6389 54995 0.4330 +6389 55066 0.4020 +6389 55143 0.5030 +6389 55163 0.4300 +6389 55210 0.5180 +6389 55293 0.5180 +6389 55526 0.8670 +6389 55572 0.5420 +6389 55654 0.8070 +6389 55669 0.4360 +6389 55699 0.5150 +6389 55739 0.5980 +6389 55753 0.8850 +6389 55863 0.7180 +6389 55902 0.5190 +6389 55967 0.7730 +6389 56267 0.5040 +6389 56922 0.4640 +6389 57001 0.9500 +6389 57107 0.6050 +6389 57128 0.5730 +6389 58472 0.6140 +6389 58497 0.4140 +6389 60314 0.6650 +6389 60496 0.5570 +6389 64064 0.8280 +6389 64108 0.4910 +6389 64111 0.6210 +6389 64577 0.5040 +6389 64965 0.4890 +6389 65003 0.4330 +6389 65008 0.4400 +6389 65018 0.4030 +6389 65985 0.4310 +6389 79133 0.5340 +6389 79446 0.7710 +6389 79587 0.4680 +6389 79611 0.4560 +6389 79631 0.5120 +6389 79728 0.5820 +6389 79783 0.8130 +6389 79893 0.5760 +6389 79944 0.6410 +6389 80224 0.4330 +6389 80273 0.4210 +6389 80308 0.9180 +6389 81341 0.5910 +6389 81570 0.4890 +6389 81889 0.8670 +6389 84076 0.4560 +6389 84172 0.5350 +6389 84233 0.6990 +6389 84263 0.5020 +6389 84532 0.5840 +6389 84680 0.5030 +6389 84693 0.6740 +6389 84701 0.8570 +6389 84706 0.9120 +6389 84811 0.8400 +6389 84886 0.6970 +6389 84939 0.8000 +6389 85476 0.6110 +6389 91300 0.5910 +6389 91624 0.4680 +6389 91942 0.5810 +6389 92106 0.5370 +6389 92483 0.5480 +6389 92552 0.4030 +6389 92609 0.4540 +6389 94033 0.5180 +6389 112812 0.8720 +6389 114112 0.5910 +6389 116285 0.4380 +6389 116447 0.5550 +6389 120892 0.4170 +6389 121278 0.4200 +6389 123688 0.5030 +6389 123876 0.4110 +6389 126133 0.5060 +6389 126328 0.4770 +6389 128240 0.5050 +6389 130752 0.6650 +6389 132949 0.4110 +6389 135154 0.9200 +6389 137362 0.9560 +6389 137682 0.5360 +6389 137902 0.4360 +6389 139221 0.8000 +6389 158471 0.4100 +6389 160287 0.5870 +6389 160428 0.5400 +6389 197257 0.6050 +6389 203068 0.4810 +6389 220004 0.8200 +6389 254042 0.4150 +6389 256536 0.7790 +6389 257202 0.4390 +6389 282996 0.5420 +6389 339896 0.4870 +6389 341392 0.4110 +6389 348158 0.4110 +6389 374291 0.9880 +6389 374659 0.5310 +6389 388753 0.4110 +6389 390110 0.5030 +6389 440567 0.7570 +6389 441531 0.4260 +6389 493869 0.4470 +6389 606495 0.5370 +6389 644096 0.9970 +6389 728317 0.8000 +6389 728378 0.6710 +6390 6391 0.9990 +6390 6392 0.9990 +6390 6472 0.4280 +6390 6513 0.4160 +6390 6648 0.6140 +6390 6742 0.4120 +6390 6834 0.4440 +6390 6863 0.4010 +6390 6888 0.4470 +6390 7019 0.5860 +6390 7084 0.5300 +6390 7086 0.4010 +6390 7124 0.4350 +6390 7157 0.5260 +6390 7167 0.6200 +6390 7184 0.4130 +6390 7263 0.6180 +6390 7284 0.6290 +6390 7296 0.5500 +6390 7381 0.9570 +6390 7384 0.9380 +6390 7385 0.9970 +6390 7386 0.9980 +6390 7388 0.7650 +6390 7416 0.7160 +6390 7417 0.5410 +6390 7419 0.6400 +6390 7428 0.5170 +6390 7812 0.4220 +6390 7837 0.5330 +6390 7915 0.5230 +6390 7923 0.4530 +6390 8050 0.8130 +6390 8192 0.8370 +6390 8290 0.4490 +6390 8356 0.4550 +6390 8402 0.6400 +6390 8540 0.6750 +6390 8659 0.4320 +6390 8801 0.9930 +6390 8802 0.9990 +6390 8803 0.9970 +6390 8854 0.4590 +6390 8879 0.4580 +6390 8929 0.5360 +6390 8934 0.4180 +6390 9054 0.6360 +6390 9131 0.4550 +6390 9296 0.4900 +6390 9361 0.5050 +6390 9377 0.9460 +6390 9401 0.4170 +6390 9512 0.8500 +6390 9551 0.7500 +6390 9563 0.6680 +6390 9582 0.4440 +6390 9588 0.4400 +6390 9607 0.5400 +6390 9669 0.6580 +6390 9804 0.6000 +6390 9927 0.4810 +6390 10102 0.4800 +6390 10131 0.9530 +6390 10381 0.4150 +6390 10449 0.4970 +6390 10452 0.4420 +6390 10476 0.9250 +6390 10539 0.4300 +6390 10553 0.4960 +6390 10587 0.5750 +6390 10632 0.7970 +6390 10651 0.5020 +6390 10797 0.4310 +6390 10840 0.4360 +6390 10845 0.6790 +6390 10873 0.4410 +6390 10891 0.5590 +6390 10935 0.5830 +6390 10939 0.5980 +6390 10975 0.7570 +6390 10989 0.5950 +6390 10994 0.4680 +6390 11112 0.4830 +6390 11313 0.4310 +6390 11315 0.6650 +6390 11331 0.4210 +6390 22934 0.4310 +6390 23095 0.6700 +6390 23135 0.4370 +6390 23203 0.6300 +6390 23275 0.4100 +6390 23410 0.5670 +6390 23479 0.8850 +6390 23521 0.4060 +6390 23600 0.8400 +6390 23645 0.7460 +6390 23788 0.4130 +6390 25813 0.4120 +6390 25874 0.4450 +6390 25994 0.4190 +6390 26061 0.4210 +6390 26330 0.4540 +6390 26521 0.7300 +6390 27068 0.5190 +6390 27089 0.8860 +6390 27109 0.5240 +6390 27247 0.9170 +6390 27304 0.5170 +6390 27350 0.4470 +6390 28976 0.4220 +6390 29058 0.4240 +6390 29085 0.5140 +6390 29796 0.9190 +6390 29952 0.6350 +6390 29968 0.4130 +6390 51004 0.4080 +6390 51021 0.4120 +6390 51031 0.4370 +6390 51079 0.8390 +6390 51091 0.4510 +6390 51102 0.7190 +6390 51142 0.4230 +6390 51264 0.4830 +6390 51314 0.4770 +6390 51380 0.4510 +6390 51444 0.5370 +6390 51522 0.5290 +6390 51805 0.4640 +6390 54205 0.9080 +6390 54539 0.6850 +6390 54543 0.4140 +6390 54583 0.5230 +6390 54790 0.4580 +6390 54927 0.4350 +6390 54940 0.5330 +6390 54941 0.5290 +6390 54949 0.9980 +6390 54968 0.4240 +6390 54995 0.4370 +6390 55052 0.4190 +6390 55066 0.4830 +6390 55107 0.4780 +6390 55143 0.5110 +6390 55173 0.4030 +6390 55210 0.4230 +6390 55293 0.5460 +6390 55526 0.8320 +6390 55654 0.9340 +6390 55699 0.5650 +6390 55703 0.4150 +6390 55739 0.5250 +6390 55753 0.8580 +6390 55811 0.5920 +6390 55902 0.4230 +6390 55967 0.9310 +6390 56945 0.5370 +6390 57001 0.9300 +6390 57017 0.6030 +6390 57103 0.4010 +6390 57128 0.6570 +6390 57379 0.4300 +6390 57407 0.4910 +6390 57674 0.4590 +6390 58472 0.6640 +6390 60489 0.4890 +6390 64064 0.8020 +6390 64087 0.4240 +6390 64108 0.5910 +6390 64111 0.5940 +6390 64577 0.4400 +6390 64863 0.4690 +6390 64965 0.4330 +6390 79002 0.4720 +6390 79073 0.4140 +6390 79728 0.5470 +6390 79783 0.7900 +6390 79893 0.6740 +6390 79944 0.5650 +6390 80195 0.4790 +6390 80308 0.4970 +6390 80312 0.4420 +6390 81341 0.7470 +6390 81689 0.5270 +6390 81889 0.8450 +6390 84172 0.4110 +6390 84233 0.4400 +6390 84311 0.5460 +6390 84532 0.4500 +6390 84693 0.5020 +6390 84701 0.8290 +6390 84706 0.8390 +6390 84869 0.5580 +6390 84883 0.4120 +6390 84886 0.7930 +6390 84939 0.8350 +6390 85476 0.4460 +6390 87178 0.4210 +6390 89927 0.7910 +6390 90624 0.4600 +6390 91300 0.7460 +6390 92483 0.5910 +6390 92609 0.4290 +6390 93974 0.5000 +6390 94033 0.4730 +6390 112398 0.4180 +6390 114112 0.5130 +6390 118487 0.4380 +6390 119559 0.4050 +6390 122961 0.5180 +6390 125965 0.5060 +6390 126133 0.4310 +6390 126328 0.8270 +6390 128240 0.4920 +6390 130752 0.6240 +6390 135154 0.5610 +6390 137362 0.8730 +6390 137902 0.5210 +6390 139221 0.8350 +6390 140564 0.4330 +6390 150274 0.7660 +6390 160287 0.5980 +6390 160428 0.4520 +6390 164668 0.4520 +6390 197257 0.6800 +6390 200205 0.5110 +6390 200315 0.5020 +6390 200316 0.4480 +6390 200424 0.4050 +6390 201163 0.5410 +6390 246243 0.4240 +6390 246269 0.4290 +6390 254863 0.5400 +6390 283459 0.4340 +6390 339896 0.4510 +6390 374291 0.9760 +6390 374887 0.4100 +6390 388753 0.5190 +6390 400916 0.4490 +6390 440093 0.4490 +6390 440567 0.5710 +6390 440574 0.6970 +6390 440686 0.4530 +6390 644096 0.9910 +6390 653604 0.4560 +6390 728317 0.8350 +6390 100144748 0.4370 +6390 100287932 0.4090 +6391 6392 0.9990 +6391 6591 0.4470 +6391 6615 0.5060 +6391 6648 0.6000 +6391 6657 0.4180 +6391 6667 0.5810 +6391 6714 0.4150 +6391 6774 0.5520 +6391 6888 0.4230 +6391 7040 0.4480 +6391 7084 0.6220 +6391 7086 0.4130 +6391 7124 0.4740 +6391 7157 0.6220 +6391 7167 0.5430 +6391 7296 0.4860 +6391 7381 0.9090 +6391 7384 0.7090 +6391 7385 0.8390 +6391 7386 0.9510 +6391 7388 0.8190 +6391 7391 0.4300 +6391 7416 0.4210 +6391 7528 0.4810 +6391 7837 0.6730 +6391 7915 0.4040 +6391 8050 0.6100 +6391 8290 0.5180 +6391 8356 0.5160 +6391 8382 0.4460 +6391 8402 0.5900 +6391 8801 0.9940 +6391 8802 0.9990 +6391 8803 0.9950 +6391 8854 0.4200 +6391 8879 0.4880 +6391 9314 0.4270 +6391 9377 0.8940 +6391 9512 0.6250 +6391 9527 0.4240 +6391 9551 0.6610 +6391 9563 0.6290 +6391 9582 0.4300 +6391 10014 0.4620 +6391 10131 0.4310 +6391 10201 0.5010 +6391 10229 0.4900 +6391 10245 0.4190 +6391 10273 0.5070 +6391 10440 0.5100 +6391 10449 0.4160 +6391 10476 0.8470 +6391 10553 0.4780 +6391 10587 0.4930 +6391 10632 0.7600 +6391 10935 0.5760 +6391 10975 0.5570 +6391 22921 0.4760 +6391 23095 0.6660 +6391 23203 0.4680 +6391 23275 0.4240 +6391 23405 0.4940 +6391 23410 0.4300 +6391 23411 0.5590 +6391 23432 0.4180 +6391 23521 0.4420 +6391 23788 0.4920 +6391 25994 0.4200 +6391 26136 0.4420 +6391 26227 0.4290 +6391 26515 0.4940 +6391 26519 0.8050 +6391 26520 0.7760 +6391 26521 0.7550 +6391 27089 0.9530 +6391 27109 0.5470 +6391 27161 0.5850 +6391 27247 0.4080 +6391 27350 0.4150 +6391 29102 0.4060 +6391 29796 0.9220 +6391 29922 0.4580 +6391 29928 0.7150 +6391 29952 0.6500 +6391 51031 0.6630 +6391 51079 0.7940 +6391 51084 0.4880 +6391 51091 0.4230 +6391 51102 0.6900 +6391 51314 0.4900 +6391 51380 0.4390 +6391 51522 0.5230 +6391 51734 0.4250 +6391 54205 0.9460 +6391 54539 0.6370 +6391 54583 0.4810 +6391 54790 0.4390 +6391 54949 0.9990 +6391 54995 0.4030 +6391 55066 0.4140 +6391 55526 0.8280 +6391 55654 0.9050 +6391 55699 0.5040 +6391 55753 0.8080 +6391 55811 0.7200 +6391 55967 0.9510 +6391 57001 0.5850 +6391 57379 0.4140 +6391 57407 0.4890 +6391 57496 0.4190 +6391 58472 0.4630 +6391 58509 0.4730 +6391 60314 0.6450 +6391 60489 0.4550 +6391 64064 0.8040 +6391 64111 0.7090 +6391 65985 0.4330 +6391 65993 0.4540 +6391 79587 0.4370 +6391 79728 0.5140 +6391 79923 0.6040 +6391 79944 0.4350 +6391 80195 0.4860 +6391 80312 0.4150 +6391 81341 0.4110 +6391 81889 0.8160 +6391 84233 0.4070 +6391 84263 0.4170 +6391 84532 0.4150 +6391 84693 0.7400 +6391 84701 0.7140 +6391 84706 0.8370 +6391 84869 0.5160 +6391 84886 0.6980 +6391 84939 0.6890 +6391 114112 0.4380 +6391 125965 0.4230 +6391 126328 0.5810 +6391 133482 0.4170 +6391 135154 0.6890 +6391 137362 0.8570 +6391 137902 0.6630 +6391 139221 0.6890 +6391 140564 0.4030 +6391 200315 0.4360 +6391 200316 0.4160 +6391 200424 0.4250 +6391 201163 0.4070 +6391 220004 0.5270 +6391 246269 0.4790 +6391 253827 0.4320 +6391 254863 0.4630 +6391 257177 0.4680 +6391 267020 0.6880 +6391 283459 0.4230 +6391 339896 0.4180 +6391 374291 0.8590 +6391 388753 0.4200 +6391 440093 0.5180 +6391 440567 0.7180 +6391 440574 0.5680 +6391 440686 0.5190 +6391 493856 0.4830 +6391 644096 0.9220 +6391 653604 0.5190 +6391 654364 0.4450 +6391 728317 0.6890 +6391 100288687 0.5060 +6391 100532726 0.4460 +6392 7096 0.4040 +6392 7381 0.9300 +6392 7384 0.7270 +6392 7385 0.9650 +6392 7386 0.9520 +6392 7388 0.8190 +6392 7416 0.4670 +6392 7812 0.4820 +6392 8050 0.4750 +6392 8402 0.5780 +6392 8801 0.9570 +6392 8802 0.9880 +6392 8803 0.9720 +6392 9054 0.4090 +6392 9377 0.9170 +6392 9512 0.6250 +6392 9551 0.6540 +6392 10131 0.4360 +6392 10245 0.4030 +6392 10440 0.4370 +6392 10476 0.8180 +6392 10632 0.5630 +6392 10730 0.5420 +6392 10935 0.5910 +6392 10975 0.4780 +6392 11112 0.5340 +6392 23095 0.7150 +6392 23203 0.4700 +6392 23479 0.5600 +6392 25994 0.4920 +6392 26515 0.6840 +6392 26519 0.6740 +6392 26520 0.6790 +6392 26521 0.8770 +6392 27089 0.9460 +6392 27247 0.8590 +6392 29796 0.9230 +6392 29928 0.7530 +6392 29952 0.6520 +6392 51031 0.6520 +6392 51079 0.6870 +6392 51102 0.4470 +6392 51119 0.4610 +6392 53938 0.6170 +6392 54205 0.9040 +6392 54539 0.7460 +6392 54583 0.5820 +6392 54790 0.4380 +6392 54949 0.9980 +6392 55654 0.9600 +6392 55753 0.5170 +6392 55967 0.9310 +6392 56901 0.4430 +6392 57001 0.7010 +6392 57017 0.5350 +6392 57674 0.4930 +6392 58472 0.5230 +6392 58509 0.6220 +6392 64111 0.6190 +6392 79577 0.4510 +6392 79728 0.5470 +6392 79949 0.4470 +6392 80312 0.4180 +6392 81037 0.4390 +6392 81689 0.4990 +6392 81889 0.8110 +6392 84233 0.4430 +6392 84693 0.7090 +6392 84701 0.7100 +6392 84706 0.8080 +6392 84833 0.5500 +6392 84886 0.8410 +6392 112398 0.4200 +6392 125965 0.4120 +6392 126328 0.4800 +6392 130752 0.4160 +6392 135154 0.6420 +6392 137362 0.8210 +6392 201163 0.5710 +6392 254863 0.4260 +6392 374291 0.7130 +6392 388753 0.4690 +6392 440567 0.6980 +6392 440574 0.4660 +6392 493856 0.6270 +6392 644096 0.9400 +6392 100287932 0.4120 +6392 100532726 0.4370 +6396 6399 0.5070 +6396 6426 0.5000 +6396 6427 0.4160 +6396 6428 0.4610 +6396 6429 0.4600 +6396 6430 0.4600 +6396 6431 0.4680 +6396 6432 0.4810 +6396 6612 0.4230 +6396 6613 0.4270 +6396 6628 0.4630 +6396 6632 0.4810 +6396 6633 0.4960 +6396 6634 0.5400 +6396 6635 0.5240 +6396 6636 0.5480 +6396 6637 0.4900 +6396 6672 0.4050 +6396 6746 0.4910 +6396 6782 0.4440 +6396 6811 0.8510 +6396 6836 0.6500 +6396 7039 0.4990 +6396 7124 0.4370 +6396 7153 0.4090 +6396 7175 0.8650 +6396 7307 0.4360 +6396 7329 0.5570 +6396 7341 0.5730 +6396 7415 0.7150 +6396 7514 0.4190 +6396 7542 0.4020 +6396 7881 0.5410 +6396 7884 0.4380 +6396 8021 0.9950 +6396 8027 0.5840 +6396 8086 0.9520 +6396 8189 0.4090 +6396 8301 0.7140 +6396 8480 0.8260 +6396 8487 0.4360 +6396 8504 0.4980 +6396 8514 0.5450 +6396 8563 0.4350 +6396 8574 0.5490 +6396 8615 0.8130 +6396 8649 0.6830 +6396 8655 0.5290 +6396 8683 0.4660 +6396 8729 0.4130 +6396 8766 0.5430 +6396 8775 0.4670 +6396 8826 0.4520 +6396 8992 0.5130 +6396 9114 0.5630 +6396 9117 0.6660 +6396 9133 0.4160 +6396 9172 0.4140 +6396 9183 0.5220 +6396 9184 0.5670 +6396 9196 0.5410 +6396 9276 0.7490 +6396 9295 0.4160 +6396 9296 0.6160 +6396 9470 0.4530 +6396 9527 0.4950 +6396 9550 0.5210 +6396 9554 0.8030 +6396 9570 0.7950 +6396 9631 0.9960 +6396 9632 0.9990 +6396 9681 0.9930 +6396 9688 0.9970 +6396 9700 0.5070 +6396 9704 0.5170 +6396 9759 0.4330 +6396 9775 0.8290 +6396 9785 0.4450 +6396 9793 0.4790 +6396 9818 0.9770 +6396 9862 0.4420 +6396 9871 0.9990 +6396 9877 0.4160 +6396 9883 0.8970 +6396 9919 0.9990 +6396 9939 0.5360 +6396 9972 0.9450 +6396 9984 0.4160 +6396 10016 0.9630 +6396 10073 0.4130 +6396 10113 0.9770 +6396 10175 0.6710 +6396 10189 0.5430 +6396 10204 0.4650 +6396 10213 0.4030 +6396 10250 0.5240 +6396 10282 0.8370 +6396 10312 0.5150 +6396 10325 0.8230 +6396 10342 0.8790 +6396 10427 0.9990 +6396 10436 0.4930 +6396 10482 0.6120 +6396 10483 0.9990 +6396 10484 0.9990 +6396 10526 0.6910 +6396 10527 0.4870 +6396 10542 0.7050 +6396 10569 0.4110 +6396 10574 0.4010 +6396 10641 0.9940 +6396 10652 0.7300 +6396 10670 0.8040 +6396 10726 0.6050 +6396 10744 0.4040 +6396 10762 0.8390 +6396 10783 0.4050 +6396 10787 0.4550 +6396 10802 0.9990 +6396 10897 0.5790 +6396 10898 0.5540 +6396 10921 0.5990 +6396 10945 0.5870 +6396 10952 0.5860 +6396 10959 0.8180 +6396 10960 0.6860 +6396 10972 0.8020 +6396 10985 0.4090 +6396 11014 0.4090 +6396 11079 0.5690 +6396 11097 0.7350 +6396 11133 0.7350 +6396 11196 0.9460 +6396 11218 0.4650 +6396 11231 0.6500 +6396 11260 0.6030 +6396 11316 0.9120 +6396 11338 0.4410 +6396 22794 0.5230 +6396 22818 0.6600 +6396 22820 0.6690 +6396 22824 0.4480 +6396 22872 0.9990 +6396 22878 0.4190 +6396 22916 0.5590 +6396 22948 0.4040 +6396 22977 0.5420 +6396 23049 0.4120 +6396 23165 0.9950 +6396 23225 0.9540 +6396 23256 0.8310 +6396 23265 0.4220 +6396 23279 0.9990 +6396 23334 0.7990 +6396 23339 0.4840 +6396 23511 0.9630 +6396 23636 0.9870 +6396 25909 0.9990 +6396 25929 0.4320 +6396 25956 0.9980 +6396 26003 0.6370 +6396 26019 0.5120 +6396 26097 0.5100 +6396 26958 0.4400 +6396 26984 0.6990 +6396 27095 0.7560 +6396 27161 0.4400 +6396 27244 0.6670 +6396 27436 0.5120 +6396 28956 0.6490 +6396 29107 0.5350 +6396 29889 0.5950 +6396 29894 0.4250 +6396 29927 0.6820 +6396 30001 0.5370 +6396 50628 0.4080 +6396 51014 0.9280 +6396 51128 0.9970 +6396 51182 0.4790 +6396 51256 0.4650 +6396 51290 0.5270 +6396 51362 0.4380 +6396 51382 0.5440 +6396 51493 0.7160 +6396 51501 0.4430 +6396 51606 0.5220 +6396 51614 0.6140 +6396 51655 0.4190 +6396 51692 0.4240 +6396 51808 0.4730 +6396 53371 0.9840 +6396 53407 0.6470 +6396 53917 0.4210 +6396 53981 0.4230 +6396 54468 0.9990 +6396 54596 0.5840 +6396 54830 0.6690 +6396 54960 0.4050 +6396 55004 0.6730 +6396 55014 0.6730 +6396 55018 0.8070 +6396 55110 0.6210 +6396 55161 0.5590 +6396 55301 0.4370 +6396 55339 0.4520 +6396 55627 0.4430 +6396 55706 0.9360 +6396 55746 0.9990 +6396 55846 0.7630 +6396 56605 0.5530 +6396 56681 0.9970 +6396 57122 0.9990 +6396 57187 0.5150 +6396 57521 0.8560 +6396 57727 0.7260 +6396 58485 0.5570 +6396 58528 0.7430 +6396 59349 0.9800 +6396 64083 0.8620 +6396 64121 0.7660 +6396 64223 0.8450 +6396 64689 0.5790 +6396 64798 0.6260 +6396 65109 0.5880 +6396 79023 0.9990 +6396 79085 0.4690 +6396 79142 0.4310 +6396 79228 0.4440 +6396 79726 0.9990 +6396 79748 0.6000 +6396 79760 0.4360 +6396 79833 0.4530 +6396 79902 0.9990 +6396 80145 0.4570 +6396 80267 0.5230 +6396 81555 0.5600 +6396 81562 0.6090 +6396 81608 0.4250 +6396 81876 0.5010 +6396 81929 0.9990 +6396 83548 0.5520 +6396 83667 0.9650 +6396 84219 0.9990 +6396 84248 0.4350 +6396 84271 0.5370 +6396 84313 0.4150 +6396 84321 0.4110 +6396 84324 0.4500 +6396 84335 0.5130 +6396 84950 0.4370 +6396 84955 0.6270 +6396 89866 0.9960 +6396 90411 0.6660 +6396 90423 0.5110 +6396 91369 0.8080 +6396 91754 0.4080 +6396 96459 0.4380 +6396 116071 0.4120 +6396 116835 0.4350 +6396 127124 0.4990 +6396 129401 0.9710 +6396 133482 0.5590 +6396 140609 0.4010 +6396 140735 0.5190 +6396 144577 0.7520 +6396 149111 0.5600 +6396 150094 0.4050 +6396 153129 0.4440 +6396 155066 0.4990 +6396 157869 0.4370 +6396 197322 0.4610 +6396 201163 0.7040 +6396 245972 0.5120 +6396 245973 0.5160 +6396 254263 0.5600 +6396 258010 0.7020 +6396 259217 0.4350 +6396 348995 0.9990 +6396 375056 0.7230 +6396 376497 0.4440 +6396 389170 0.4110 +6396 389541 0.7020 +6396 445582 0.4360 +6396 553115 0.9650 +6396 652968 0.9450 +6396 728343 0.5260 +6396 729438 0.6850 +6396 729857 0.4960 +6396 100101267 0.8740 +6397 6653 0.4080 +6397 7083 0.5650 +6397 7155 0.4490 +6397 9619 0.4040 +6397 9903 0.4630 +6397 10801 0.8550 +6397 23176 0.5440 +6397 23582 0.4520 +6397 23586 0.4990 +6397 25966 0.4830 +6397 28992 0.4560 +6397 55752 0.4960 +6397 79157 0.4890 +6397 91404 0.4130 +6398 116071 0.4120 +6398 400629 0.4620 +6399 6794 0.4090 +6399 7109 0.9990 +6399 8481 0.5000 +6399 8615 0.5240 +6399 8766 0.5600 +6399 9363 0.4160 +6399 9367 0.6300 +6399 9554 0.9020 +6399 9632 0.6780 +6399 9633 0.4570 +6399 9846 0.4460 +6399 9871 0.6600 +6399 9919 0.7330 +6399 10113 0.5170 +6399 10282 0.6440 +6399 10342 0.5880 +6399 10427 0.7700 +6399 10483 0.5480 +6399 10484 0.4010 +6399 10597 0.5430 +6399 10652 0.9300 +6399 10802 0.6530 +6399 11238 0.4100 +6399 22872 0.4810 +6399 22878 0.9990 +6399 23256 0.7750 +6399 26060 0.4250 +6399 27095 0.9990 +6399 51112 0.9970 +6399 51128 0.6590 +6399 51399 0.9990 +6399 51693 0.9990 +6399 53407 0.4520 +6399 54960 0.4130 +6399 55014 0.5620 +6399 55262 0.9170 +6399 56681 0.4880 +6399 57533 0.6290 +6399 57662 0.4700 +6399 58485 0.9990 +6399 58513 0.4660 +6399 59349 0.5890 +6399 60684 0.9960 +6399 79090 0.9990 +6399 79370 0.6280 +6399 80006 0.9830 +6399 81551 0.6130 +6399 81876 0.8380 +6399 83452 0.5230 +6399 85438 0.6270 +6399 89866 0.5500 +6399 117177 0.5050 +6399 122553 0.9980 +6399 126003 0.9990 +6399 126119 0.4870 +6399 163782 0.6080 +6399 167691 0.6660 +6399 170082 0.6680 +6399 285180 0.5910 +6399 339122 0.6600 +6399 375056 0.8600 +6399 401409 0.4830 +6399 100128327 0.9920 +6400 6469 0.6300 +6400 6905 0.6600 +6400 6923 0.5410 +6400 7095 0.4080 +6400 7184 0.8330 +6400 7311 0.5030 +6400 7314 0.5260 +6400 7316 0.5290 +6400 7327 0.8730 +6400 7353 0.8050 +6400 7415 0.9920 +6400 7494 0.5860 +6400 7841 0.5170 +6400 7844 0.6410 +6400 7993 0.4010 +6400 9354 0.4270 +6400 9451 0.4130 +6400 9601 0.7370 +6400 9690 0.4680 +6400 9694 0.4930 +6400 9695 0.9890 +6400 9709 0.7190 +6400 10130 0.4730 +6400 10206 0.5840 +6400 10299 0.8940 +6400 10525 0.8540 +6400 10613 0.6900 +6400 10668 0.4830 +6400 10869 0.4140 +6400 10910 0.4670 +6400 10952 0.5390 +6400 10956 0.9990 +6400 10959 0.4120 +6400 10960 0.4980 +6400 11160 0.8260 +6400 11231 0.5210 +6400 11236 0.9420 +6400 11253 0.7700 +6400 22926 0.8490 +6400 23032 0.7220 +6400 23065 0.4210 +6400 23071 0.4020 +6400 23190 0.7320 +6400 23197 0.9920 +6400 23376 0.4040 +6400 27248 0.9980 +6400 29927 0.7900 +6400 50846 0.4990 +6400 51009 0.9990 +6400 51272 0.4940 +6400 51290 0.8000 +6400 51439 0.9780 +6400 51465 0.9950 +6400 51669 0.5780 +6400 51726 0.5350 +6400 53917 0.5020 +6400 54431 0.9340 +6400 54788 0.4810 +6400 55432 0.4420 +6400 55666 0.8590 +6400 55741 0.7690 +6400 55757 0.5450 +6400 55768 0.4730 +6400 55829 0.9630 +6400 55831 0.4930 +6400 56886 0.6780 +6400 57414 0.5450 +6400 57544 0.4710 +6400 64422 0.7410 +6400 64788 0.6120 +6400 64969 0.7930 +6400 65260 0.4980 +6400 79029 0.5170 +6400 79139 0.9990 +6400 79760 0.4280 +6400 80020 0.9600 +6400 80124 0.5930 +6400 80235 0.4070 +6400 80267 0.9450 +6400 80343 0.9080 +6400 81502 0.8380 +6400 81790 0.5130 +6400 84447 0.9990 +6400 85439 0.4310 +6400 91304 0.5200 +6400 91319 0.9770 +6400 91445 0.6900 +6400 92305 0.6840 +6400 118424 0.5470 +6400 153830 0.4440 +6400 166378 0.5160 +6400 197131 0.5410 +6400 201595 0.6710 +6400 337867 0.5120 +6401 6402 0.9880 +6401 6403 0.9370 +6401 6404 0.9990 +6401 6484 0.4180 +6401 6693 0.9880 +6401 6696 0.6710 +6401 6714 0.4210 +6401 6774 0.4490 +6401 6818 0.4460 +6401 7010 0.5640 +6401 7035 0.4370 +6401 7040 0.5260 +6401 7056 0.7340 +6401 7057 0.4550 +6401 7076 0.4340 +6401 7097 0.5350 +6401 7098 0.4450 +6401 7099 0.6460 +6401 7122 0.4580 +6401 7124 0.8720 +6401 7132 0.6550 +6401 7133 0.6200 +6401 7276 0.4830 +6401 7412 0.9790 +6401 7414 0.4530 +6401 7450 0.8060 +6401 7498 0.4100 +6401 7837 0.4350 +6401 7852 0.5650 +6401 8174 0.8260 +6401 8490 0.4140 +6401 8718 0.6880 +6401 8742 0.4850 +6401 8743 0.5510 +6401 8822 0.4010 +6401 9034 0.4370 +6401 9332 0.4430 +6401 9370 0.5860 +6401 9771 0.4830 +6401 10365 0.5080 +6401 10544 0.5060 +6401 10690 0.4320 +6401 11082 0.4170 +6401 22918 0.5070 +6401 23075 0.4240 +6401 23705 0.6400 +6401 30815 0.4690 +6401 50512 0.4790 +6401 50848 0.4270 +6401 50943 0.4270 +6401 51094 0.4790 +6401 51284 0.4270 +6401 51330 0.4770 +6401 51554 0.5140 +6401 51696 0.8630 +6401 54205 0.5510 +6401 55343 0.5670 +6401 56729 0.4460 +6401 64332 0.5030 +6401 83483 0.5650 +6401 84666 0.4320 +6401 84750 0.4040 +6401 90865 0.4440 +6401 90952 0.7430 +6401 94025 0.5170 +6401 123803 0.4800 +6401 124460 0.4950 +6401 137902 0.4360 +6401 257202 0.4130 +6401 445329 0.4310 +6401 653145 0.4680 +6401 653499 0.5130 +6401 100133941 0.8990 +6401 100506658 0.4030 +6402 6403 0.9860 +6402 6404 0.9980 +6402 6490 0.6670 +6402 6504 0.4890 +6402 6614 0.4620 +6402 6688 0.4740 +6402 6693 0.7910 +6402 6696 0.5470 +6402 6772 0.4680 +6402 6774 0.5130 +6402 6775 0.4510 +6402 6776 0.5660 +6402 6777 0.5450 +6402 6778 0.4330 +6402 6850 0.4760 +6402 6868 0.8530 +6402 6932 0.5870 +6402 6938 0.4110 +6402 7037 0.4610 +6402 7040 0.5660 +6402 7056 0.4090 +6402 7070 0.5810 +6402 7096 0.4580 +6402 7097 0.5610 +6402 7098 0.4500 +6402 7099 0.7430 +6402 7100 0.4170 +6402 7124 0.7960 +6402 7132 0.5040 +6402 7133 0.6180 +6402 7292 0.4650 +6402 7293 0.6390 +6402 7305 0.7300 +6402 7317 0.4020 +6402 7345 0.5620 +6402 7409 0.4550 +6402 7412 0.9700 +6402 7414 0.4790 +6402 7430 0.8570 +6402 7450 0.7740 +6402 7535 0.5260 +6402 7704 0.4330 +6402 7837 0.4260 +6402 7852 0.8030 +6402 8174 0.9990 +6402 8320 0.6750 +6402 8349 0.4480 +6402 8519 0.5380 +6402 8639 0.7910 +6402 8698 0.4920 +6402 8744 0.4060 +6402 8784 0.6750 +6402 8807 0.4190 +6402 8809 0.4610 +6402 8829 0.4150 +6402 8875 0.4060 +6402 9034 0.6920 +6402 9060 0.4970 +6402 9061 0.5200 +6402 9308 0.5000 +6402 9332 0.4810 +6402 9368 0.5060 +6402 9398 0.4660 +6402 9435 0.4060 +6402 9436 0.4790 +6402 9437 0.6410 +6402 9567 0.4410 +6402 9636 0.5040 +6402 9750 0.5860 +6402 10004 0.6400 +6402 10164 0.7230 +6402 10206 0.5680 +6402 10219 0.8100 +6402 10320 0.4750 +6402 10365 0.7850 +6402 10538 0.5220 +6402 10544 0.4630 +6402 10563 0.5450 +6402 10663 0.6310 +6402 10666 0.5480 +6402 10673 0.5450 +6402 10803 0.6310 +6402 10875 0.4320 +6402 10894 0.5160 +6402 11126 0.4670 +6402 11151 0.4680 +6402 11314 0.4190 +6402 22914 0.6180 +6402 22918 0.4190 +6402 23075 0.4980 +6402 23166 0.5340 +6402 23308 0.4450 +6402 23495 0.5040 +6402 23621 0.4300 +6402 23705 0.6790 +6402 27087 0.6740 +6402 27141 0.4950 +6402 29126 0.6340 +6402 29851 0.7330 +6402 30009 0.7630 +6402 30816 0.5630 +6402 50512 0.7040 +6402 50615 0.4850 +6402 50616 0.5290 +6402 50943 0.8620 +6402 51176 0.4110 +6402 51284 0.5470 +6402 51311 0.6450 +6402 51554 0.4180 +6402 51696 0.5880 +6402 51705 0.7630 +6402 51744 0.5810 +6402 51806 0.5660 +6402 54106 0.5330 +6402 55509 0.4060 +6402 55843 0.4620 +6402 57113 0.5080 +6402 57211 0.7680 +6402 58473 0.5890 +6402 60468 0.4970 +6402 80342 0.4460 +6402 80380 0.4910 +6402 80381 0.5880 +6402 84868 0.7890 +6402 84888 0.4160 +6402 90865 0.4360 +6402 90952 0.5890 +6402 91860 0.5650 +6402 94025 0.7020 +6402 112744 0.4440 +6402 114836 0.4960 +6402 117289 0.4190 +6402 123803 0.9950 +6402 137902 0.4260 +6402 140885 0.4280 +6402 146894 0.8130 +6402 149233 0.4260 +6402 151888 0.5890 +6402 163688 0.5650 +6402 192668 0.4290 +6402 201633 0.7100 +6402 257101 0.4330 +6402 259197 0.5250 +6402 387357 0.4280 +6402 405754 0.5620 +6402 653361 0.5090 +6402 100133941 0.5990 +6402 100526664 0.4230 +6403 6404 0.9990 +6403 6513 0.5320 +6403 6642 0.4100 +6403 6693 0.7590 +6403 6714 0.4560 +6403 6850 0.5450 +6403 6915 0.4190 +6403 7010 0.4640 +6403 7035 0.6100 +6403 7040 0.6570 +6403 7056 0.7430 +6403 7057 0.6660 +6403 7066 0.5760 +6403 7094 0.6690 +6403 7097 0.5240 +6403 7099 0.8850 +6403 7122 0.5280 +6403 7124 0.7410 +6403 7130 0.5140 +6403 7133 0.5350 +6403 7408 0.5740 +6403 7412 0.9630 +6403 7430 0.4520 +6403 7448 0.5780 +6403 7450 0.9990 +6403 7498 0.4350 +6403 7837 0.4150 +6403 7852 0.6530 +6403 8174 0.7480 +6403 8399 0.5250 +6403 8459 0.5270 +6403 8460 0.4850 +6403 8639 0.4070 +6403 8754 0.6320 +6403 8907 0.5050 +6403 9034 0.5830 +6403 9332 0.4390 +6403 9370 0.4330 +6403 9749 0.4010 +6403 9771 0.5470 +6403 9784 0.9980 +6403 10184 0.4050 +6403 10344 0.5120 +6403 10544 0.5350 +6403 10630 0.6880 +6403 10803 0.6400 +6403 10850 0.5780 +6403 11093 0.6100 +6403 22915 0.6570 +6403 22918 0.5240 +6403 23218 0.4160 +6403 23705 0.5300 +6403 29927 0.4220 +6403 30817 0.4730 +6403 30835 0.6290 +6403 50512 0.6000 +6403 50848 0.6570 +6403 50943 0.4730 +6403 51206 0.9080 +6403 51266 0.7800 +6403 51284 0.4580 +6403 51311 0.4060 +6403 51696 0.7810 +6403 51706 0.4130 +6403 54106 0.4210 +6403 54495 0.4160 +6403 55343 0.7510 +6403 55644 0.4050 +6403 57589 0.4700 +6403 58473 0.4470 +6403 59272 0.4480 +6403 64805 0.8270 +6403 79865 0.4150 +6403 79987 0.4110 +6403 83700 0.5140 +6403 83706 0.4260 +6403 84888 0.4100 +6403 90952 0.7760 +6403 94121 0.4660 +6403 123803 0.7020 +6403 124460 0.6000 +6403 135228 0.4400 +6403 137902 0.4170 +6403 259215 0.4420 +6403 340205 0.8440 +6403 375033 0.5120 +6403 377841 0.5920 +6403 440533 0.5960 +6403 653145 0.4380 +6403 100133941 0.9950 +6404 6480 0.4070 +6404 6614 0.8320 +6404 6693 0.9720 +6404 6850 0.5400 +6404 7096 0.4370 +6404 7097 0.5080 +6404 7099 0.5330 +6404 7124 0.7160 +6404 7305 0.5020 +6404 7412 0.9900 +6404 7430 0.5780 +6404 7431 0.4070 +6404 7450 0.7850 +6404 7454 0.4800 +6404 7805 0.4080 +6404 7852 0.5890 +6404 8174 0.7610 +6404 8459 0.6630 +6404 8460 0.6180 +6404 9034 0.4340 +6404 9051 0.4300 +6404 9728 0.4510 +6404 10318 0.6120 +6404 10320 0.4340 +6404 10365 0.4320 +6404 10630 0.4470 +6404 10663 0.5740 +6404 10803 0.7180 +6404 10979 0.4050 +6404 11151 0.4430 +6404 23569 0.4130 +6404 23621 0.4680 +6404 23705 0.5580 +6404 25936 0.4360 +6404 27036 0.4500 +6404 27180 0.4310 +6404 29851 0.4220 +6404 30009 0.4420 +6404 30835 0.6320 +6404 50512 0.4170 +6404 51206 0.5630 +6404 51266 0.7310 +6404 51284 0.4200 +6404 51311 0.4110 +6404 51696 0.8250 +6404 53829 0.5400 +6404 54440 0.4560 +6404 54518 0.4440 +6404 55644 0.4180 +6404 58473 0.6670 +6404 64115 0.6180 +6404 64805 0.4990 +6404 79623 0.4220 +6404 83700 0.4330 +6404 83706 0.5370 +6404 83999 0.4510 +6404 90952 0.6380 +6404 114132 0.5490 +6404 123803 0.6860 +6404 124460 0.8960 +6404 100133941 0.5460 +6405 6585 0.5330 +6405 6586 0.5380 +6405 7424 0.4560 +6405 8087 0.4930 +6405 8828 0.9990 +6405 8829 0.9990 +6405 9353 0.4130 +6405 9423 0.5750 +6405 9513 0.5080 +6405 10154 0.6330 +6405 10371 0.5250 +6405 10512 0.5940 +6405 10641 0.5180 +6405 11186 0.4780 +6405 23129 0.7320 +6405 23654 0.5940 +6405 55558 0.9990 +6405 90249 0.5990 +6405 91584 0.8420 +6405 170482 0.4890 +6405 284217 0.5610 +6405 375790 0.4270 +6406 6407 0.8510 +6406 6590 0.6690 +6406 6622 0.4390 +6406 6954 0.4450 +6406 7045 0.4360 +6406 7047 0.6970 +6406 7276 0.4860 +6406 7455 0.4510 +6406 7979 0.4460 +6406 8785 0.4260 +6406 9200 0.4120 +6406 9622 0.5780 +6406 54959 0.4520 +6406 56920 0.4320 +6406 57119 0.9490 +6406 79730 0.4400 +6406 83639 0.5560 +6406 89869 0.5510 +6406 90199 0.6130 +6406 128488 0.8590 +6406 149708 0.5490 +6406 219479 0.5420 +6406 259240 0.4040 +6406 388610 0.4140 +6406 391253 0.5950 +6406 440387 0.4090 +6407 6590 0.6700 +6407 6954 0.4610 +6407 7047 0.6350 +6407 7455 0.6660 +6407 8785 0.4420 +6407 8852 0.5780 +6407 9200 0.4790 +6407 9622 0.5230 +6407 10343 0.4620 +6407 26085 0.4320 +6407 27343 0.4200 +6407 56163 0.4810 +6407 56920 0.4450 +6407 57119 0.4140 +6407 83893 0.5450 +6407 89869 0.4890 +6407 90199 0.6000 +6407 128488 0.8720 +6407 149708 0.5700 +6407 149986 0.4140 +6407 161142 0.4190 +6407 200232 0.4170 +6407 219479 0.5820 +6407 257169 0.4180 +6407 391253 0.5670 +6414 6415 0.7800 +6414 7057 0.4200 +6414 7078 0.4520 +6414 7123 0.7290 +6414 7148 0.4360 +6414 7157 0.4810 +6414 7295 0.8130 +6414 7296 0.7280 +6414 7804 0.8370 +6414 8520 0.4140 +6414 8562 0.6670 +6414 8662 0.9200 +6414 8663 0.9190 +6414 8664 0.8710 +6414 8665 0.5290 +6414 8666 0.9050 +6414 8667 0.8330 +6414 8668 0.9050 +6414 8669 0.8970 +6414 8894 0.8960 +6414 8991 0.6670 +6414 9086 0.7210 +6414 9370 0.5400 +6414 9403 0.7830 +6414 9669 0.6170 +6414 9732 0.4680 +6414 9858 0.5630 +6414 10209 0.7030 +6414 10289 0.7030 +6414 10399 0.7680 +6414 10447 0.4420 +6414 10480 0.8370 +6414 10526 0.4730 +6414 10527 0.4730 +6414 10557 0.4870 +6414 10587 0.6750 +6414 22928 0.7320 +6414 22929 0.4460 +6414 23204 0.4510 +6414 23277 0.4340 +6414 23560 0.4240 +6414 26291 0.4450 +6414 26986 0.4020 +6414 26998 0.4180 +6414 27335 0.8760 +6414 51065 0.7200 +6414 51073 0.5360 +6414 51081 0.5550 +6414 51091 0.5980 +6414 51116 0.5630 +6414 51149 0.6670 +6414 51319 0.6530 +6414 51386 0.7290 +6414 51540 0.6250 +6414 51714 0.7210 +6414 51734 0.6640 +6414 54938 0.4100 +6414 54952 0.5430 +6414 55127 0.4420 +6414 55173 0.6860 +6414 55272 0.6510 +6414 55316 0.6230 +6414 55601 0.4100 +6414 55651 0.4750 +6414 55664 0.4170 +6414 55829 0.7820 +6414 57190 0.7230 +6414 58515 0.8020 +6414 60678 0.8710 +6414 63931 0.5370 +6414 64960 0.5750 +6414 64963 0.5590 +6414 64969 0.8040 +6414 79048 0.8270 +6414 83642 0.6650 +6414 83854 0.4760 +6414 83939 0.4060 +6414 85377 0.7280 +6414 85465 0.6180 +6414 114112 0.6830 +6414 114987 0.7670 +6414 118672 0.6100 +6414 126402 0.5550 +6414 140032 0.5540 +6414 140606 0.7360 +6414 142940 0.4070 +6414 255308 0.8110 +6414 257202 0.6630 +6414 280636 0.7190 +6414 347487 0.7200 +6414 348303 0.6680 +6414 493869 0.6600 +6414 641776 0.4450 +6414 643909 0.4450 +6414 728524 0.4450 +6414 728689 0.9190 +6414 100129792 0.4920 +6414 100287482 0.5630 +6414 100529239 0.6510 +6414 100996746 0.4450 +6414 105180390 0.4450 +6414 105180391 0.4450 +6415 7295 0.7810 +6415 7296 0.6920 +6415 7533 0.6650 +6415 8544 0.4250 +6415 9403 0.8020 +6415 10587 0.7160 +6415 11315 0.4070 +6415 22921 0.4200 +6415 22928 0.7820 +6415 22929 0.5550 +6415 51091 0.5650 +6415 51540 0.4310 +6415 51714 0.9780 +6415 51734 0.7930 +6415 54952 0.4320 +6415 55829 0.8030 +6415 57190 0.7890 +6415 58515 0.8590 +6415 60678 0.6650 +6415 79048 0.7870 +6415 83642 0.8660 +6415 84299 0.8330 +6415 85465 0.7290 +6415 114112 0.7410 +6415 118672 0.4630 +6415 140606 0.7620 +6415 257202 0.6550 +6415 280636 0.8280 +6415 493869 0.5800 +6416 6850 0.5710 +6416 6885 0.9980 +6416 7124 0.6380 +6416 7157 0.5750 +6416 7189 0.6680 +6416 7295 0.6620 +6416 7311 0.4990 +6416 7314 0.5200 +6416 7316 0.5750 +6416 7334 0.5660 +6416 7335 0.4780 +6416 7532 0.6380 +6416 7786 0.4520 +6416 7791 0.4530 +6416 8289 0.4030 +6416 8517 0.5260 +6416 8737 0.4350 +6416 8767 0.5690 +6416 8802 0.4240 +6416 8837 0.4500 +6416 9043 0.5300 +6416 9344 0.4230 +6416 9402 0.4320 +6416 9448 0.6240 +6416 9479 0.5170 +6416 10000 0.9200 +6416 10221 0.4080 +6416 10392 0.4560 +6416 10454 0.9400 +6416 10746 0.7450 +6416 23043 0.5410 +6416 23118 0.9380 +6416 23162 0.9840 +6416 23284 0.4380 +6416 25855 0.4760 +6416 26150 0.6710 +6416 50488 0.5280 +6416 51776 0.7130 +6416 58508 0.4740 +6416 64127 0.4630 +6416 79109 0.4240 +6416 79155 0.5470 +6416 84312 0.4760 +6416 84451 0.4320 +6416 84656 0.5030 +6416 89795 0.4010 +6416 91754 0.4710 +6416 120892 0.4250 +6416 142679 0.5170 +6416 151742 0.5700 +6416 257397 0.9280 +6418 6426 0.4530 +6418 6428 0.7880 +6418 6431 0.8900 +6418 6532 0.4450 +6418 6597 0.4820 +6418 6613 0.4350 +6418 6633 0.5060 +6418 6635 0.4360 +6418 6636 0.4740 +6418 6637 0.4550 +6418 6872 0.5330 +6418 7157 0.7140 +6418 7514 0.8850 +6418 7913 0.6460 +6418 7919 0.5100 +6418 8021 0.8790 +6418 8125 0.9990 +6418 8290 0.5850 +6418 8350 0.6880 +6418 8356 0.5200 +6418 8361 0.6400 +6418 8369 0.5010 +6418 8741 0.8000 +6418 8815 0.6620 +6418 8886 0.4210 +6418 8941 0.4400 +6418 9014 0.4050 +6418 9015 0.5370 +6418 9184 0.5080 +6418 9555 0.4150 +6418 10051 0.5640 +6418 10155 0.5190 +6418 10541 0.4620 +6418 10592 0.5690 +6418 10606 0.4030 +6418 10664 0.4030 +6418 10728 0.5140 +6418 11335 0.5600 +6418 23310 0.5130 +6418 23435 0.4150 +6418 25842 0.4450 +6418 26040 0.7740 +6418 27316 0.4500 +6418 27339 0.4510 +6418 28989 0.4630 +6418 29781 0.5010 +6418 29803 0.6170 +6418 51574 0.5410 +6418 54892 0.5390 +6418 55723 0.4510 +6418 56257 0.4260 +6418 57650 0.6570 +6418 58508 0.4540 +6418 79648 0.8040 +6418 80764 0.7210 +6418 94239 0.4970 +6418 116986 0.5940 +6418 151246 0.8320 +6418 151648 0.4290 +6418 255626 0.4310 +6418 374393 0.6530 +6418 440093 0.4390 +6418 440686 0.4390 +6418 653604 0.5910 +6418 654364 0.4470 +6419 7153 0.5660 +6419 7157 0.4100 +6419 7403 0.4950 +6419 7518 0.6560 +6419 8290 0.7280 +6419 8356 0.7290 +6419 8553 0.4080 +6419 8726 0.4780 +6419 9070 0.5060 +6419 9320 0.4420 +6419 9682 0.4020 +6419 22806 0.5230 +6419 22992 0.4890 +6419 23028 0.4220 +6419 23135 0.4940 +6419 23512 0.5140 +6419 27339 0.9930 +6419 51111 0.4620 +6419 54971 0.8960 +6419 55209 0.4750 +6419 55702 0.6240 +6419 55904 0.4880 +6419 56950 0.6060 +6419 57593 0.4450 +6419 57633 0.4390 +6419 63976 0.5620 +6419 64754 0.4440 +6419 79605 0.5860 +6419 79725 0.5220 +6419 79823 0.7470 +6419 80820 0.4730 +6419 80854 0.4710 +6419 84193 0.7230 +6419 84444 0.4720 +6419 84661 0.4480 +6419 84678 0.4380 +6419 84787 0.4020 +6419 84948 0.4610 +6419 91151 0.4280 +6419 142940 0.5890 +6419 203245 0.4370 +6419 253738 0.4400 +6419 285362 0.6360 +6419 440093 0.7280 +6419 440686 0.7280 +6419 653604 0.7280 +6421 6426 0.8720 +6421 6427 0.7350 +6421 6428 0.8810 +6421 6429 0.5120 +6421 6430 0.6250 +6421 6431 0.6940 +6421 6432 0.8230 +6421 6434 0.8450 +6421 6599 0.6450 +6421 6601 0.5700 +6421 6606 0.4410 +6421 6625 0.8690 +6421 6626 0.8670 +6421 6627 0.4570 +6421 6632 0.4850 +6421 6633 0.7180 +6421 6634 0.4840 +6421 6635 0.5950 +6421 6636 0.5670 +6421 6637 0.6220 +6421 6741 0.6630 +6421 6742 0.4700 +6421 6749 0.4350 +6421 6780 0.4660 +6421 7030 0.8730 +6421 7073 0.5500 +6421 7124 0.4120 +6421 7150 0.7730 +6421 7157 0.6350 +6421 7158 0.5180 +6421 7307 0.9430 +6421 7319 0.4140 +6421 7431 0.4540 +6421 7520 0.5700 +6421 7536 0.7230 +6421 7750 0.6070 +6421 7919 0.6920 +6421 8087 0.4410 +6421 8106 0.4100 +6421 8148 0.6960 +6421 8241 0.5100 +6421 8294 0.4080 +6421 8359 0.4100 +6421 8360 0.4180 +6421 8361 0.5850 +6421 8362 0.4080 +6421 8363 0.4100 +6421 8364 0.4220 +6421 8366 0.4140 +6421 8367 0.4080 +6421 8368 0.4080 +6421 8370 0.4080 +6421 8467 0.4470 +6421 8473 0.5200 +6421 8570 0.8180 +6421 8648 0.4120 +6421 8672 0.4870 +6421 8683 0.4990 +6421 8880 0.6500 +6421 9092 0.4320 +6421 9184 0.4740 +6421 9188 0.6380 +6421 9295 0.5800 +6421 9343 0.4410 +6421 9584 0.7370 +6421 9604 0.4650 +6421 9656 0.4560 +6421 9774 0.6300 +6421 9782 0.9840 +6421 9817 0.4590 +6421 9967 0.7520 +6421 9987 0.5720 +6421 10146 0.6620 +6421 10179 0.5280 +6421 10189 0.8090 +6421 10197 0.4530 +6421 10236 0.7840 +6421 10291 0.5000 +6421 10421 0.5500 +6421 10432 0.9970 +6421 10492 0.7210 +6421 10514 0.4400 +6421 10521 0.6310 +6421 10523 0.4830 +6421 10594 0.4930 +6421 10614 0.7600 +6421 10657 0.8690 +6421 10658 0.6140 +6421 10664 0.5150 +6421 10772 0.6520 +6421 10915 0.4730 +6421 10949 0.7500 +6421 11051 0.7180 +6421 11052 0.8910 +6421 11083 0.7060 +6421 11096 0.4220 +6421 11315 0.5700 +6421 11338 0.8850 +6421 22826 0.4120 +6421 22827 0.4880 +6421 22920 0.4670 +6421 23028 0.4860 +6421 23244 0.4320 +6421 23283 0.5060 +6421 23404 0.5070 +6421 23405 0.4540 +6421 23435 0.9230 +6421 23450 0.5180 +6421 23451 0.5140 +6421 23476 0.5910 +6421 23594 0.4040 +6421 25942 0.9320 +6421 26065 0.6120 +6421 26097 0.5060 +6421 26135 0.4120 +6421 26528 0.4790 +6421 26986 0.6080 +6421 26993 0.5300 +6421 27161 0.5160 +6421 27258 0.4520 +6421 27316 0.7100 +6421 27327 0.4080 +6421 27339 0.4820 +6421 29896 0.4400 +6421 51366 0.4030 +6421 51428 0.4050 +6421 51441 0.4390 +6421 51586 0.4020 +6421 51593 0.6810 +6421 51639 0.4910 +6421 51747 0.6930 +6421 54606 0.4870 +6421 54894 0.7400 +6421 55082 0.4330 +6421 55269 0.9990 +6421 55660 0.4250 +6421 56252 0.6560 +6421 56257 0.4720 +6421 56259 0.6870 +6421 56339 0.4190 +6421 58155 0.9890 +6421 58517 0.4890 +6421 79058 0.8250 +6421 79068 0.4970 +6421 79724 0.4590 +6421 79869 0.5920 +6421 79872 0.6430 +6421 80335 0.4230 +6421 81853 0.4220 +6421 84844 0.5660 +6421 84991 0.4700 +6421 91607 0.4200 +6421 92906 0.4040 +6421 121504 0.4080 +6421 129831 0.4220 +6421 140890 0.4870 +6421 220988 0.7050 +6421 284695 0.4640 +6421 554313 0.4100 +6421 728378 0.4810 +6421 100008586 0.4200 +6421 100526737 0.9920 +6422 6424 0.4610 +6422 6469 0.5770 +6422 6608 0.4890 +6422 6662 0.4220 +6422 6750 0.4440 +6422 6932 0.4230 +6422 7057 0.5690 +6422 7058 0.5420 +6422 7070 0.5580 +6422 7078 0.4520 +6422 7157 0.4430 +6422 7471 0.9810 +6422 7472 0.9280 +6422 7473 0.9210 +6422 7474 0.9630 +6422 7475 0.9180 +6422 7476 0.9300 +6422 7477 0.9630 +6422 7478 0.8250 +6422 7479 0.9410 +6422 7480 0.8720 +6422 7481 0.8810 +6422 7482 0.8860 +6422 7483 0.8480 +6422 7484 0.8120 +6422 7855 0.7280 +6422 7976 0.7230 +6422 7980 0.5060 +6422 8038 0.4700 +6422 8312 0.6350 +6422 8313 0.6620 +6422 8321 0.7190 +6422 8322 0.7420 +6422 8323 0.8750 +6422 8324 0.7690 +6422 8325 0.7680 +6422 8326 0.7260 +6422 8549 0.4320 +6422 8600 0.9250 +6422 8643 0.4530 +6422 8840 0.4600 +6422 9201 0.5200 +6422 9241 0.5240 +6422 10009 0.4620 +6422 10637 0.4470 +6422 11186 0.6270 +6422 11197 0.9240 +6422 11211 0.7160 +6422 22943 0.8830 +6422 23671 0.4340 +6422 27121 0.7710 +6422 27122 0.7750 +6422 27123 0.8320 +6422 50855 0.4110 +6422 50964 0.7300 +6422 51176 0.6110 +6422 51339 0.6400 +6422 51384 0.9060 +6422 51684 0.4180 +6422 54084 0.4310 +6422 54361 0.9460 +6422 54829 0.4230 +6422 55422 0.4330 +6422 56033 0.6410 +6422 56288 0.4060 +6422 57216 0.6790 +6422 64321 0.4700 +6422 64399 0.4390 +6422 64840 0.4100 +6422 65982 0.5890 +6422 80326 0.8400 +6422 81029 0.9150 +6422 81839 0.4590 +6422 84870 0.4370 +6422 85407 0.4340 +6422 85409 0.4200 +6422 89780 0.9470 +6422 140628 0.5210 +6422 144165 0.4340 +6422 145270 0.5290 +6422 147111 0.4860 +6422 284217 0.5100 +6422 284654 0.4190 +6422 338699 0.6870 +6422 375790 0.4160 +6422 653145 0.4180 +6423 6424 0.6560 +6423 6469 0.4950 +6423 6591 0.4910 +6423 6657 0.4300 +6423 7060 0.4250 +6423 7130 0.4310 +6423 7291 0.5440 +6423 7471 0.8760 +6423 7472 0.9030 +6423 7473 0.8470 +6423 7474 0.9100 +6423 7475 0.8590 +6423 7476 0.8690 +6423 7477 0.9100 +6423 7478 0.8120 +6423 7479 0.8380 +6423 7480 0.8410 +6423 7481 0.8800 +6423 7482 0.8760 +6423 7483 0.8500 +6423 7484 0.7990 +6423 7855 0.8110 +6423 7976 0.7000 +6423 7980 0.4790 +6423 8076 0.4470 +6423 8312 0.5310 +6423 8313 0.7390 +6423 8321 0.7340 +6423 8322 0.6990 +6423 8323 0.7040 +6423 8324 0.7400 +6423 8325 0.8090 +6423 8326 0.6930 +6423 8839 0.4190 +6423 8840 0.4210 +6423 9241 0.6470 +6423 9839 0.4590 +6423 10048 0.4510 +6423 10296 0.6160 +6423 10631 0.4690 +6423 10801 0.4470 +6423 11186 0.4790 +6423 11197 0.7530 +6423 11211 0.6930 +6423 22943 0.8480 +6423 25852 0.6780 +6423 27121 0.5480 +6423 27122 0.7360 +6423 27123 0.7300 +6423 27148 0.4400 +6423 50964 0.5150 +6423 51176 0.6320 +6423 51384 0.8340 +6423 54361 0.9060 +6423 54829 0.4370 +6423 54994 0.4700 +6423 56033 0.7310 +6423 56751 0.4340 +6423 57216 0.5040 +6423 64321 0.4110 +6423 64795 0.5630 +6423 65009 0.5420 +6423 79412 0.5430 +6423 80326 0.8270 +6423 81029 0.8530 +6423 81839 0.4530 +6423 84624 0.5110 +6423 85407 0.4040 +6423 85409 0.4440 +6423 89780 0.9360 +6423 116225 0.4830 +6423 140628 0.4230 +6423 144165 0.4150 +6423 171024 0.4120 +6423 338699 0.7860 +6424 6425 0.4130 +6424 7044 0.4630 +6424 7058 0.4440 +6424 7060 0.4700 +6424 7130 0.4910 +6424 7471 0.8950 +6424 7472 0.9000 +6424 7473 0.8930 +6424 7474 0.8630 +6424 7475 0.8760 +6424 7476 0.8970 +6424 7477 0.8440 +6424 7478 0.8150 +6424 7479 0.8030 +6424 7480 0.8410 +6424 7481 0.8340 +6424 7482 0.8430 +6424 7483 0.8150 +6424 7484 0.7840 +6424 7855 0.6940 +6424 7976 0.6910 +6424 8074 0.5580 +6424 8076 0.4890 +6424 8290 0.5000 +6424 8312 0.5110 +6424 8313 0.5470 +6424 8321 0.8240 +6424 8322 0.7050 +6424 8323 0.6980 +6424 8324 0.6950 +6424 8325 0.7150 +6424 8326 0.6890 +6424 8356 0.5060 +6424 8483 0.4630 +6424 8516 0.4770 +6424 8839 0.4110 +6424 8840 0.4450 +6424 9358 0.4610 +6424 10006 0.4470 +6424 10152 0.4470 +6424 10631 0.4440 +6424 10767 0.5060 +6424 11197 0.6780 +6424 11211 0.6900 +6424 22943 0.6800 +6424 23213 0.4700 +6424 23411 0.4170 +6424 23567 0.6960 +6424 26057 0.4240 +6424 27121 0.4970 +6424 27122 0.7050 +6424 27123 0.6280 +6424 27148 0.4520 +6424 50964 0.6780 +6424 51176 0.4660 +6424 51384 0.8750 +6424 54361 0.9100 +6424 54704 0.8380 +6424 54749 0.4400 +6424 54829 0.5980 +6424 54861 0.7200 +6424 54876 0.4140 +6424 54882 0.4200 +6424 56955 0.7700 +6424 64094 0.4370 +6424 80326 0.8170 +6424 81029 0.8930 +6424 84624 0.5950 +6424 84870 0.4110 +6424 89780 0.9240 +6424 220965 0.5200 +6424 440093 0.5000 +6424 440686 0.5000 +6424 653604 0.5000 +6425 7471 0.8340 +6425 7472 0.8850 +6425 7473 0.8330 +6425 7474 0.9360 +6425 7475 0.8260 +6425 7476 0.8200 +6425 7477 0.8340 +6425 7478 0.8030 +6425 7479 0.9560 +6425 7480 0.8980 +6425 7481 0.9740 +6425 7482 0.8380 +6425 7483 0.7950 +6425 7484 0.7810 +6425 7837 0.4220 +6425 7855 0.7000 +6425 7976 0.6940 +6425 8312 0.4640 +6425 8313 0.6880 +6425 8321 0.6910 +6425 8322 0.7110 +6425 8323 0.6830 +6425 8324 0.6910 +6425 8325 0.6920 +6425 8326 0.6940 +6425 9370 0.4460 +6425 10637 0.4550 +6425 11186 0.4490 +6425 11197 0.7210 +6425 11211 0.6930 +6425 22943 0.6330 +6425 27121 0.4960 +6425 27122 0.6580 +6425 27123 0.5980 +6425 27148 0.4530 +6425 51176 0.4190 +6425 51384 0.8100 +6425 54361 0.8280 +6425 55600 0.4470 +6425 56729 0.4360 +6425 59336 0.4080 +6425 80326 0.8020 +6425 81029 0.8990 +6425 83881 0.4200 +6425 84524 0.4180 +6425 85407 0.4340 +6425 89780 0.9010 +6425 140628 0.4520 +6425 144165 0.4130 +6425 147111 0.4040 +6425 147991 0.4070 +6425 338699 0.8350 +6426 6427 0.9970 +6426 6428 0.9940 +6426 6429 0.9730 +6426 6430 0.9170 +6426 6431 0.9870 +6426 6432 0.9970 +6426 6434 0.9970 +6426 6499 0.5540 +6426 6500 0.4250 +6426 6594 0.5300 +6426 6595 0.5440 +6426 6597 0.5330 +6426 6599 0.5860 +6426 6606 0.7740 +6426 6607 0.7570 +6426 6625 0.9980 +6426 6626 0.8750 +6426 6627 0.9080 +6426 6628 0.9250 +6426 6629 0.9430 +6426 6631 0.7000 +6426 6632 0.9590 +6426 6633 0.9720 +6426 6634 0.9620 +6426 6635 0.9670 +6426 6636 0.9790 +6426 6637 0.9650 +6426 6651 0.4660 +6426 6714 0.5330 +6426 6732 0.9990 +6426 6733 0.9730 +6426 6741 0.6920 +6426 6749 0.6420 +6426 6780 0.5130 +6426 6787 0.4170 +6426 6830 0.4920 +6426 6872 0.4130 +6426 6874 0.4350 +6426 6925 0.4400 +6426 6936 0.5160 +6426 6996 0.4420 +6426 7072 0.5520 +6426 7073 0.7990 +6426 7150 0.9120 +6426 7157 0.8780 +6426 7175 0.5940 +6426 7188 0.7300 +6426 7290 0.4870 +6426 7298 0.4280 +6426 7307 0.9970 +6426 7311 0.4120 +6426 7329 0.8650 +6426 7341 0.6200 +6426 7381 0.4300 +6426 7386 0.4330 +6426 7458 0.5260 +6426 7486 0.4660 +6426 7514 0.7290 +6426 7520 0.5960 +6426 7536 0.8130 +6426 7555 0.4100 +6426 7884 0.4490 +6426 7919 0.9140 +6426 7936 0.5500 +6426 8019 0.4280 +6426 8021 0.5040 +6426 8086 0.4760 +6426 8087 0.6710 +6426 8106 0.9460 +6426 8148 0.7780 +6426 8175 0.9800 +6426 8189 0.4890 +6426 8208 0.5910 +6426 8233 0.9240 +6426 8241 0.6850 +6426 8243 0.4290 +6426 8260 0.4340 +6426 8290 0.9540 +6426 8337 0.5320 +6426 8338 0.5260 +6426 8349 0.6220 +6426 8352 0.7810 +6426 8353 0.7810 +6426 8356 0.9890 +6426 8361 0.5710 +6426 8369 0.4100 +6426 8451 0.4610 +6426 8467 0.7860 +6426 8480 0.5610 +6426 8531 0.4110 +6426 8554 0.7860 +6426 8570 0.6970 +6426 8607 0.5550 +6426 8621 0.4310 +6426 8663 0.4060 +6426 8666 0.4920 +6426 8668 0.4220 +6426 8683 0.9840 +6426 8880 0.6280 +6426 8896 0.8640 +6426 8899 0.7150 +6426 9092 0.5570 +6426 9128 0.5660 +6426 9129 0.6380 +6426 9136 0.4330 +6426 9169 0.4290 +6426 9181 0.4930 +6426 9184 0.4420 +6426 9295 0.9420 +6426 9343 0.9640 +6426 9400 0.4460 +6426 9401 0.5860 +6426 9406 0.5780 +6426 9410 0.8640 +6426 9416 0.5380 +6426 9444 0.6200 +6426 9446 0.4530 +6426 9493 0.4080 +6426 9584 0.8300 +6426 9631 0.4880 +6426 9667 0.4210 +6426 9688 0.5150 +6426 9704 0.5450 +6426 9774 0.6050 +6426 9775 0.9990 +6426 9782 0.7910 +6426 9785 0.8670 +6426 9818 0.4300 +6426 9874 0.8220 +6426 9879 0.5120 +6426 9883 0.4410 +6426 9939 0.9980 +6426 9967 0.4150 +6426 9972 0.5080 +6426 9984 0.7850 +6426 9987 0.8370 +6426 10057 0.4360 +6426 10075 0.4150 +6426 10081 0.4300 +6426 10114 0.5860 +6426 10150 0.4220 +6426 10155 0.4360 +6426 10181 0.5230 +6426 10189 0.9840 +6426 10197 0.7140 +6426 10212 0.5430 +6426 10236 0.9350 +6426 10250 0.9640 +6426 10262 0.8900 +6426 10284 0.8200 +6426 10285 0.4650 +6426 10286 0.4190 +6426 10291 0.9670 +6426 10432 0.8530 +6426 10443 0.4090 +6426 10482 0.9920 +6426 10492 0.9170 +6426 10521 0.6370 +6426 10569 0.8870 +6426 10575 0.4710 +6426 10594 0.9480 +6426 10642 0.5190 +6426 10644 0.5830 +6426 10656 0.6090 +6426 10657 0.8360 +6426 10658 0.7310 +6426 10659 0.4500 +6426 10694 0.4860 +6426 10713 0.4370 +6426 10725 0.4170 +6426 10758 0.5710 +6426 10762 0.4830 +6426 10771 0.4500 +6426 10772 0.9990 +6426 10856 0.5080 +6426 10898 0.4210 +6426 10914 0.9040 +6426 10915 0.9270 +6426 10919 0.4860 +6426 10921 0.9550 +6426 10926 0.4440 +6426 10929 0.7320 +6426 10933 0.4620 +6426 10946 0.9070 +6426 10949 0.9430 +6426 10951 0.5570 +6426 10978 0.6750 +6426 10982 0.4730 +6426 10992 0.9260 +6426 11011 0.8050 +6426 11017 0.4150 +6426 11051 0.8300 +6426 11052 0.9040 +6426 11066 0.4680 +6426 11097 0.4670 +6426 11157 0.8280 +6426 11168 0.9690 +6426 11188 0.6110 +6426 11198 0.5540 +6426 11200 0.4190 +6426 11325 0.5130 +6426 11335 0.8280 +6426 11338 0.9980 +6426 22794 0.6920 +6426 22803 0.5380 +6426 22827 0.7030 +6426 22907 0.4180 +6426 22913 0.5310 +6426 22916 0.9440 +6426 22933 0.5370 +6426 22938 0.8690 +6426 22985 0.4920 +6426 23016 0.5020 +6426 23020 0.9210 +6426 23064 0.4980 +6426 23076 0.8030 +6426 23144 0.4020 +6426 23160 0.4350 +6426 23165 0.5010 +6426 23203 0.4420 +6426 23225 0.4370 +6426 23279 0.5060 +6426 23350 0.5870 +6426 23369 0.4390 +6426 23379 0.4790 +6426 23404 0.4720 +6426 23405 0.4030 +6426 23411 0.5140 +6426 23435 0.9120 +6426 23450 0.9410 +6426 23451 0.9520 +6426 23476 0.6770 +6426 23511 0.4440 +6426 23523 0.4930 +6426 23524 0.6710 +6426 23534 0.9960 +6426 23543 0.6050 +6426 23636 0.4920 +6426 23658 0.8420 +6426 24144 0.5930 +6426 24148 0.6840 +6426 25766 0.4610 +6426 25804 0.8900 +6426 25836 0.4030 +6426 25842 0.8970 +6426 25861 0.5770 +6426 25920 0.5090 +6426 25957 0.4880 +6426 26019 0.4290 +6426 26097 0.8040 +6426 26121 0.5560 +6426 26135 0.4200 +6426 26227 0.4240 +6426 26528 0.6540 +6426 26576 0.6220 +6426 26986 0.7520 +6426 27161 0.4190 +6426 27258 0.9060 +6426 27288 0.5140 +6426 27316 0.9430 +6426 27339 0.8000 +6426 27429 0.4030 +6426 29102 0.4230 +6426 29107 0.5360 +6426 29796 0.4430 +6426 29855 0.6750 +6426 29894 0.6870 +6426 29896 0.9340 +6426 29928 0.4360 +6426 29957 0.4080 +6426 51079 0.6040 +6426 51319 0.6550 +6426 51322 0.4490 +6426 51341 0.4200 +6426 51362 0.8530 +6426 51428 0.4440 +6426 51433 0.4450 +6426 51493 0.4050 +6426 51497 0.4610 +6426 51503 0.8230 +6426 51574 0.5600 +6426 51585 0.7580 +6426 51593 0.6340 +6426 51594 0.4140 +6426 51631 0.6970 +6426 51637 0.4040 +6426 51639 0.9080 +6426 51690 0.8340 +6426 51691 0.8930 +6426 51692 0.4320 +6426 51729 0.8280 +6426 51747 0.8830 +6426 51750 0.4090 +6426 51755 0.4410 +6426 53371 0.5490 +6426 54033 0.5330 +6426 54584 0.4220 +6426 54606 0.4280 +6426 54715 0.4680 +6426 54845 0.6460 +6426 55015 0.4850 +6426 55110 0.8700 +6426 55147 0.6270 +6426 55234 0.6440 +6426 55269 0.5940 +6426 55421 0.4740 +6426 55692 0.7850 +6426 55696 0.8560 +6426 55706 0.4350 +6426 55723 0.8990 +6426 55728 0.4180 +6426 55746 0.5080 +6426 55967 0.5890 +6426 56000 0.7060 +6426 56244 0.5820 +6426 56257 0.4030 +6426 56259 0.7330 +6426 56342 0.5850 +6426 56903 0.4380 +6426 56916 0.4820 +6426 57018 0.4210 +6426 57122 0.4990 +6426 57187 0.6360 +6426 57396 0.4760 +6426 57697 0.4290 +6426 57721 0.4320 +6426 57794 0.8200 +6426 57819 0.8800 +6426 58155 0.6700 +6426 58509 0.4390 +6426 58517 0.7180 +6426 59286 0.8050 +6426 64852 0.4290 +6426 64895 0.4470 +6426 65109 0.6330 +6426 79023 0.5320 +6426 79085 0.4080 +6426 79711 0.8600 +6426 79727 0.5640 +6426 79728 0.5590 +6426 79753 0.9150 +6426 79869 0.6910 +6426 79893 0.4010 +6426 79902 0.5270 +6426 80119 0.4620 +6426 80218 0.4430 +6426 80335 0.5540 +6426 81608 0.7120 +6426 81669 0.4240 +6426 81929 0.4650 +6426 83443 0.9130 +6426 83990 0.4730 +6426 84081 0.5320 +6426 84271 0.6320 +6426 84324 0.5230 +6426 84524 0.4340 +6426 84708 0.4010 +6426 84844 0.9310 +6426 84939 0.4090 +6426 84950 0.8660 +6426 84991 0.4990 +6426 90634 0.4010 +6426 91746 0.8780 +6426 92906 0.5080 +6426 112812 0.5260 +6426 113510 0.6360 +6426 114789 0.4080 +6426 117246 0.4240 +6426 119391 0.4490 +6426 124245 0.5230 +6426 124540 0.4040 +6426 129401 0.4860 +6426 135295 0.7710 +6426 139221 0.4050 +6426 140890 0.8030 +6426 143884 0.5090 +6426 144983 0.5080 +6426 146227 0.4650 +6426 153527 0.8680 +6426 170506 0.4960 +6426 199746 0.6460 +6426 203228 0.5390 +6426 220988 0.9180 +6426 284427 0.4080 +6426 284695 0.6120 +6426 286676 0.4680 +6426 348995 0.5590 +6426 374291 0.4050 +6426 440093 0.9540 +6426 440686 0.9540 +6426 440689 0.4080 +6426 493856 0.4360 +6426 642659 0.4030 +6426 653604 0.9520 +6426 692312 0.5150 +6426 728317 0.4050 +6426 728343 0.7120 +6426 100101267 0.4560 +6426 100996928 0.4480 +6427 6428 0.9990 +6427 6429 0.9620 +6427 6430 0.9220 +6427 6431 0.9270 +6427 6432 0.9610 +6427 6434 0.9980 +6427 6625 0.9870 +6427 6626 0.8200 +6427 6627 0.4180 +6427 6628 0.5630 +6427 6629 0.6720 +6427 6631 0.5520 +6427 6651 0.6530 +6427 6729 0.4080 +6427 6732 0.9940 +6427 6733 0.9360 +6427 6787 0.4270 +6427 6936 0.5430 +6427 7072 0.5620 +6427 7073 0.5290 +6427 7157 0.7500 +6427 7175 0.5720 +6427 7307 0.9990 +6427 7403 0.4220 +6427 7490 0.5820 +6427 7514 0.5290 +6427 7536 0.6610 +6427 7913 0.5090 +6427 7919 0.7730 +6427 8021 0.6930 +6427 8086 0.4210 +6427 8106 0.8590 +6427 8125 0.4920 +6427 8161 0.7090 +6427 8175 0.7380 +6427 8209 0.4890 +6427 8227 0.4660 +6427 8233 0.9430 +6427 8241 0.8120 +6427 8243 0.6250 +6427 8480 0.5560 +6427 8493 0.4820 +6427 8539 0.4180 +6427 8570 0.6180 +6427 8683 0.9800 +6427 8880 0.6380 +6427 8899 0.8050 +6427 9126 0.5410 +6427 9129 0.4490 +6427 9169 0.7430 +6427 9188 0.7420 +6427 9221 0.5120 +6427 9295 0.9120 +6427 9338 0.5500 +6427 9343 0.5170 +6427 9360 0.4360 +6427 9444 0.4650 +6427 9584 0.7120 +6427 9589 0.6570 +6427 9611 0.4750 +6427 9631 0.4580 +6427 9688 0.4680 +6427 9774 0.4230 +6427 9775 0.9190 +6427 9785 0.8450 +6427 9818 0.4930 +6427 9879 0.5330 +6427 9939 0.6740 +6427 9972 0.5700 +6427 9987 0.9220 +6427 10013 0.4030 +6427 10019 0.6180 +6427 10054 0.4010 +6427 10081 0.4470 +6427 10084 0.5430 +6427 10150 0.4310 +6427 10181 0.4970 +6427 10189 0.9280 +6427 10212 0.4960 +6427 10236 0.7110 +6427 10241 0.4710 +6427 10250 0.8940 +6427 10262 0.5350 +6427 10273 0.4790 +6427 10284 0.4860 +6427 10291 0.7810 +6427 10320 0.4470 +6427 10432 0.7320 +6427 10482 0.8960 +6427 10521 0.5350 +6427 10523 0.4040 +6427 10524 0.4470 +6427 10569 0.8590 +6427 10594 0.6350 +6427 10614 0.7190 +6427 10625 0.7150 +6427 10657 0.7330 +6427 10658 0.6520 +6427 10659 0.6130 +6427 10735 0.7770 +6427 10762 0.5380 +6427 10772 0.7440 +6427 10914 0.8670 +6427 10915 0.6110 +6427 10921 0.6940 +6427 10929 0.4420 +6427 10946 0.6480 +6427 10949 0.7320 +6427 10978 0.5020 +6427 10985 0.4310 +6427 10992 0.5580 +6427 11051 0.6760 +6427 11052 0.7590 +6427 11097 0.4580 +6427 11168 0.5310 +6427 11193 0.5790 +6427 11338 0.9960 +6427 22794 0.6710 +6427 22803 0.4010 +6427 22828 0.4200 +6427 22916 0.7790 +6427 22938 0.5030 +6427 23020 0.4470 +6427 23029 0.4290 +6427 23165 0.4530 +6427 23168 0.4450 +6427 23225 0.4050 +6427 23279 0.4860 +6427 23283 0.5930 +6427 23435 0.8540 +6427 23450 0.5360 +6427 23451 0.9090 +6427 23476 0.5340 +6427 23511 0.4240 +6427 23524 0.6040 +6427 23534 0.7800 +6427 23620 0.5490 +6427 23636 0.5790 +6427 24144 0.8800 +6427 24148 0.4320 +6427 24149 0.4620 +6427 25766 0.6040 +6427 25957 0.8020 +6427 26040 0.7740 +6427 26097 0.4290 +6427 26528 0.6050 +6427 26986 0.6070 +6427 27316 0.7400 +6427 27336 0.6830 +6427 29079 0.5160 +6427 29896 0.5150 +6427 51213 0.7630 +6427 51319 0.6310 +6427 51362 0.8390 +6427 51366 0.4280 +6427 51428 0.6080 +6427 51574 0.6460 +6427 51585 0.6560 +6427 51593 0.5430 +6427 51631 0.5050 +6427 51639 0.4240 +6427 51747 0.6080 +6427 53343 0.6320 +6427 53371 0.4420 +6427 54033 0.5000 +6427 54790 0.8410 +6427 54796 0.7720 +6427 54845 0.4130 +6427 54870 0.4180 +6427 55110 0.7280 +6427 55119 0.4200 +6427 55206 0.4340 +6427 55294 0.4640 +6427 55500 0.5700 +6427 55544 0.4510 +6427 55660 0.7100 +6427 55706 0.4160 +6427 55746 0.4650 +6427 56000 0.6680 +6427 56259 0.4540 +6427 56339 0.5780 +6427 56949 0.4670 +6427 57018 0.7620 +6427 57122 0.4770 +6427 57703 0.4220 +6427 57721 0.5090 +6427 57794 0.4300 +6427 58155 0.4590 +6427 58517 0.6740 +6427 60680 0.4160 +6427 63035 0.5850 +6427 64397 0.4430 +6427 65109 0.6670 +6427 79009 0.6860 +6427 79023 0.4160 +6427 79068 0.4020 +6427 79869 0.6650 +6427 79902 0.4790 +6427 81669 0.5940 +6427 81929 0.4310 +6427 84081 0.4250 +6427 84171 0.4470 +6427 84271 0.6950 +6427 84289 0.4200 +6427 84295 0.7230 +6427 84823 0.5270 +6427 84844 0.4760 +6427 84950 0.4660 +6427 84991 0.4790 +6427 91746 0.7750 +6427 92906 0.5730 +6427 124245 0.4730 +6427 127262 0.5200 +6427 129401 0.4570 +6427 135295 0.5710 +6427 140890 0.7890 +6427 143884 0.4990 +6427 144983 0.5170 +6427 171023 0.8890 +6427 199746 0.6960 +6427 203228 0.5650 +6427 220988 0.7660 +6427 285386 0.5200 +6427 348995 0.4270 +6427 390748 0.4480 +6427 642659 0.5770 +6427 728343 0.6680 +6427 728642 0.5860 +6427 100101267 0.4160 +6427 100526737 0.6370 +6427 100996928 0.4880 +6428 6429 0.9450 +6428 6430 0.9580 +6428 6431 0.9910 +6428 6432 0.9970 +6428 6434 0.9980 +6428 6606 0.7120 +6428 6607 0.6150 +6428 6613 0.4030 +6428 6625 0.9120 +6428 6626 0.6380 +6428 6627 0.5120 +6428 6628 0.4770 +6428 6629 0.5640 +6428 6631 0.5410 +6428 6632 0.7540 +6428 6633 0.8810 +6428 6634 0.7260 +6428 6635 0.8490 +6428 6636 0.8460 +6428 6637 0.7830 +6428 6729 0.6200 +6428 6732 0.9750 +6428 6733 0.7870 +6428 6741 0.8210 +6428 6936 0.5040 +6428 7072 0.8410 +6428 7073 0.7820 +6428 7157 0.4070 +6428 7175 0.6060 +6428 7273 0.4280 +6428 7307 0.9660 +6428 7341 0.5110 +6428 7458 0.5810 +6428 7514 0.4280 +6428 7529 0.6660 +6428 7536 0.6050 +6428 7555 0.4310 +6428 7756 0.7410 +6428 7812 0.4080 +6428 7919 0.9080 +6428 8021 0.5290 +6428 8086 0.4580 +6428 8106 0.9270 +6428 8148 0.6430 +6428 8175 0.7330 +6428 8233 0.4030 +6428 8241 0.6450 +6428 8290 0.5680 +6428 8293 0.4300 +6428 8356 0.5800 +6428 8480 0.6010 +6428 8563 0.5290 +6428 8570 0.7090 +6428 8662 0.4980 +6428 8666 0.5840 +6428 8683 0.9680 +6428 8846 0.4030 +6428 8880 0.7940 +6428 8896 0.4600 +6428 8971 0.4410 +6428 9169 0.4430 +6428 9184 0.4670 +6428 9295 0.9540 +6428 9343 0.5820 +6428 9410 0.4800 +6428 9444 0.4040 +6428 9584 0.8280 +6428 9589 0.5990 +6428 9631 0.4240 +6428 9688 0.4820 +6428 9689 0.4010 +6428 9774 0.6150 +6428 9775 0.9980 +6428 9782 0.7640 +6428 9785 0.8170 +6428 9818 0.4240 +6428 9879 0.4420 +6428 9939 0.9980 +6428 9967 0.4660 +6428 9972 0.5440 +6428 9987 0.8980 +6428 10146 0.5780 +6428 10155 0.4950 +6428 10179 0.8620 +6428 10181 0.4530 +6428 10189 0.9500 +6428 10197 0.4660 +6428 10212 0.5290 +6428 10236 0.9060 +6428 10250 0.9040 +6428 10262 0.5960 +6428 10284 0.6520 +6428 10291 0.4350 +6428 10361 0.4140 +6428 10399 0.5080 +6428 10432 0.7160 +6428 10482 0.9970 +6428 10492 0.7550 +6428 10514 0.4350 +6428 10521 0.7290 +6428 10569 0.9250 +6428 10576 0.4200 +6428 10594 0.5020 +6428 10642 0.4540 +6428 10657 0.8860 +6428 10658 0.5880 +6428 10659 0.4460 +6428 10694 0.4120 +6428 10762 0.4760 +6428 10772 0.8760 +6428 10914 0.8590 +6428 10921 0.7810 +6428 10923 0.4380 +6428 10929 0.8230 +6428 10946 0.5100 +6428 10949 0.9050 +6428 10951 0.4850 +6428 10978 0.5390 +6428 10982 0.6410 +6428 10992 0.8700 +6428 11051 0.9180 +6428 11052 0.9440 +6428 11066 0.4350 +6428 11097 0.4430 +6428 11168 0.6600 +6428 11335 0.4010 +6428 11338 0.9880 +6428 22794 0.6010 +6428 22826 0.4690 +6428 22827 0.4860 +6428 22913 0.5380 +6428 22916 0.6820 +6428 22948 0.4420 +6428 22985 0.4400 +6428 23016 0.4970 +6428 23091 0.4860 +6428 23165 0.4510 +6428 23225 0.4050 +6428 23279 0.4720 +6428 23283 0.4090 +6428 23350 0.5020 +6428 23404 0.4490 +6428 23435 0.9210 +6428 23450 0.5060 +6428 23451 0.6450 +6428 23468 0.4880 +6428 23511 0.4100 +6428 23524 0.4660 +6428 23534 0.4730 +6428 23543 0.5360 +6428 23636 0.5350 +6428 24144 0.5490 +6428 25792 0.4530 +6428 25957 0.4480 +6428 25962 0.5190 +6428 26097 0.6190 +6428 26576 0.4520 +6428 26986 0.6830 +6428 27258 0.5250 +6428 27316 0.9410 +6428 27339 0.6610 +6428 29107 0.6800 +6428 29890 0.4110 +6428 29894 0.4510 +6428 29896 0.8960 +6428 51362 0.8370 +6428 51441 0.6160 +6428 51503 0.4870 +6428 51585 0.6350 +6428 51593 0.6710 +6428 51631 0.4380 +6428 51639 0.5430 +6428 51691 0.5130 +6428 51747 0.4180 +6428 53371 0.5360 +6428 54845 0.4810 +6428 54890 0.5220 +6428 54915 0.5800 +6428 55082 0.4140 +6428 55110 0.8180 +6428 55147 0.5040 +6428 55234 0.4890 +6428 55660 0.5360 +6428 55706 0.4190 +6428 55746 0.4630 +6428 56000 0.7000 +6428 56257 0.4440 +6428 56259 0.7010 +6428 56339 0.6870 +6428 57018 0.4500 +6428 57122 0.4790 +6428 57187 0.5690 +6428 57396 0.4490 +6428 57721 0.6330 +6428 58155 0.7130 +6428 58517 0.4770 +6428 63935 0.4120 +6428 64783 0.4840 +6428 64848 0.5800 +6428 65109 0.5760 +6428 79023 0.5030 +6428 79066 0.4830 +6428 79068 0.4970 +6428 79869 0.6360 +6428 79902 0.4270 +6428 80004 0.4270 +6428 81608 0.4200 +6428 81669 0.4050 +6428 81929 0.5470 +6428 83443 0.4720 +6428 84152 0.4450 +6428 84271 0.5320 +6428 84324 0.5190 +6428 84844 0.5480 +6428 84950 0.7340 +6428 84991 0.4200 +6428 91746 0.9950 +6428 92906 0.5780 +6428 118472 0.4460 +6428 129401 0.5120 +6428 129831 0.4640 +6428 135295 0.5990 +6428 140890 0.9340 +6428 143884 0.5050 +6428 153527 0.4020 +6428 199746 0.6690 +6428 220988 0.7520 +6428 253943 0.5700 +6428 266743 0.4140 +6428 284695 0.4820 +6428 348995 0.5580 +6428 440093 0.5770 +6428 440686 0.5610 +6428 653604 0.5670 +6428 728343 0.6820 +6428 100101267 0.4100 +6428 100288687 0.5740 +6429 6430 0.8590 +6429 6431 0.9730 +6429 6432 0.9030 +6429 6433 0.4630 +6429 6434 0.8910 +6429 6625 0.7270 +6429 6626 0.5640 +6429 6628 0.4840 +6429 6629 0.4300 +6429 6631 0.5310 +6429 6632 0.4140 +6429 6633 0.5140 +6429 6634 0.4890 +6429 6635 0.4760 +6429 6636 0.4930 +6429 6637 0.4740 +6429 6729 0.4040 +6429 6732 0.9800 +6429 6733 0.7870 +6429 6780 0.4200 +6429 6936 0.5480 +6429 7073 0.4040 +6429 7175 0.4780 +6429 7307 0.7590 +6429 7536 0.5280 +6429 7919 0.6760 +6429 8021 0.5710 +6429 8086 0.4050 +6429 8106 0.9180 +6429 8175 0.7460 +6429 8189 0.4330 +6429 8241 0.5160 +6429 8480 0.5400 +6429 8683 0.8540 +6429 8878 0.4110 +6429 8899 0.4540 +6429 9092 0.7590 +6429 9129 0.4120 +6429 9295 0.9510 +6429 9343 0.4260 +6429 9416 0.4390 +6429 9584 0.5530 +6429 9631 0.4650 +6429 9688 0.4210 +6429 9698 0.4400 +6429 9775 0.8550 +6429 9785 0.8540 +6429 9818 0.4360 +6429 9878 0.6400 +6429 9883 0.4700 +6429 9939 0.6720 +6429 9972 0.5200 +6429 9987 0.5740 +6429 10181 0.5180 +6429 10189 0.7970 +6429 10196 0.4030 +6429 10236 0.5960 +6429 10250 0.9740 +6429 10291 0.5200 +6429 10482 0.8820 +6429 10569 0.9020 +6429 10594 0.4320 +6429 10657 0.5080 +6429 10762 0.5090 +6429 10771 0.4120 +6429 10772 0.9970 +6429 10898 0.4080 +6429 10914 0.8840 +6429 10921 0.9270 +6429 10929 0.7270 +6429 10949 0.4500 +6429 10978 0.6750 +6429 10992 0.6540 +6429 11051 0.6570 +6429 11052 0.6610 +6429 11097 0.4430 +6429 11338 0.9500 +6429 22794 0.6290 +6429 22916 0.7590 +6429 22985 0.4290 +6429 23165 0.4180 +6429 23225 0.4030 +6429 23279 0.4160 +6429 23435 0.4910 +6429 23450 0.4910 +6429 23451 0.5790 +6429 23511 0.4090 +6429 23524 0.9400 +6429 23534 0.7640 +6429 23543 0.4060 +6429 23636 0.4700 +6429 24144 0.6060 +6429 25957 0.4460 +6429 26130 0.4080 +6429 26528 0.4940 +6429 26576 0.7070 +6429 27316 0.7920 +6429 27336 0.7120 +6429 29117 0.4310 +6429 29894 0.4630 +6429 29896 0.7900 +6429 51322 0.4870 +6429 51362 0.8700 +6429 51574 0.6450 +6429 51585 0.7410 +6429 51631 0.4680 +6429 51747 0.4850 +6429 53371 0.4570 +6429 54856 0.4910 +6429 54952 0.5450 +6429 55015 0.4430 +6429 55110 0.6470 +6429 55170 0.4060 +6429 55285 0.4380 +6429 55421 0.4340 +6429 55692 0.4660 +6429 55706 0.4210 +6429 55746 0.4420 +6429 56000 0.7710 +6429 56341 0.4020 +6429 56937 0.4020 +6429 57018 0.4530 +6429 57122 0.4130 +6429 57396 0.5580 +6429 57794 0.4150 +6429 58517 0.8840 +6429 59343 0.4650 +6429 65109 0.5980 +6429 79023 0.4380 +6429 79869 0.6660 +6429 79882 0.4310 +6429 79902 0.5180 +6429 80335 0.4730 +6429 81608 0.5510 +6429 81669 0.4240 +6429 81929 0.4510 +6429 84271 0.6920 +6429 84950 0.7180 +6429 84991 0.4240 +6429 85437 0.4110 +6429 92906 0.5600 +6429 124245 0.4710 +6429 129401 0.4140 +6429 135295 0.6420 +6429 140890 0.6480 +6429 143884 0.5040 +6429 199746 0.6120 +6429 220988 0.6840 +6429 347744 0.4920 +6429 348995 0.4110 +6429 392517 0.4820 +6429 728343 0.7710 +6429 100101267 0.4670 +6429 100996928 0.5300 +6430 6431 0.9190 +6430 6432 0.9330 +6430 6433 0.4510 +6430 6434 0.8200 +6430 6606 0.5950 +6430 6607 0.5370 +6430 6625 0.8170 +6430 6626 0.5170 +6430 6628 0.5090 +6430 6629 0.4100 +6430 6631 0.5080 +6430 6632 0.4660 +6430 6633 0.5710 +6430 6634 0.4830 +6430 6635 0.4760 +6430 6636 0.8830 +6430 6637 0.5020 +6430 6651 0.6720 +6430 6732 0.9900 +6430 6733 0.9010 +6430 6897 0.4420 +6430 6936 0.5510 +6430 6950 0.4510 +6430 7072 0.6080 +6430 7074 0.4720 +6430 7168 0.4050 +6430 7170 0.4740 +6430 7175 0.5820 +6430 7307 0.9410 +6430 7536 0.7180 +6430 7919 0.6730 +6430 8021 0.4910 +6430 8086 0.4140 +6430 8106 0.9020 +6430 8175 0.7640 +6430 8189 0.4390 +6430 8233 0.4720 +6430 8241 0.5720 +6430 8480 0.5460 +6430 8570 0.4520 +6430 8683 0.8620 +6430 8880 0.4200 +6430 8899 0.4910 +6430 9092 0.4860 +6430 9129 0.5050 +6430 9188 0.4750 +6430 9295 0.9690 +6430 9343 0.6100 +6430 9493 0.4130 +6430 9584 0.8950 +6430 9631 0.4550 +6430 9688 0.4190 +6430 9775 0.8110 +6430 9785 0.8470 +6430 9818 0.4300 +6430 9883 0.4570 +6430 9939 0.6570 +6430 9972 0.5050 +6430 9987 0.7470 +6430 10114 0.7860 +6430 10181 0.7870 +6430 10189 0.8770 +6430 10196 0.4110 +6430 10236 0.7100 +6430 10250 0.8640 +6430 10284 0.4270 +6430 10291 0.5500 +6430 10482 0.8670 +6430 10521 0.6570 +6430 10569 0.9420 +6430 10594 0.5780 +6430 10657 0.5590 +6430 10658 0.4240 +6430 10762 0.4920 +6430 10772 0.6630 +6430 10914 0.8660 +6430 10921 0.7690 +6430 10929 0.7140 +6430 10946 0.4450 +6430 10949 0.5560 +6430 10978 0.6750 +6430 10992 0.7770 +6430 11051 0.6550 +6430 11052 0.6930 +6430 11097 0.4200 +6430 11338 0.9580 +6430 22794 0.5420 +6430 22827 0.6360 +6430 22916 0.7420 +6430 22948 0.4300 +6430 23165 0.4090 +6430 23279 0.4130 +6430 23350 0.4200 +6430 23435 0.4720 +6430 23450 0.4960 +6430 23451 0.8240 +6430 23466 0.4370 +6430 23511 0.4050 +6430 23524 0.6970 +6430 23534 0.7460 +6430 23543 0.4900 +6430 23636 0.4410 +6430 24144 0.5640 +6430 24148 0.4590 +6430 25902 0.4030 +6430 25957 0.6490 +6430 26528 0.5270 +6430 26576 0.7080 +6430 27065 0.4070 +6430 27288 0.6290 +6430 27316 0.6460 +6430 27429 0.4500 +6430 29894 0.4540 +6430 29896 0.6120 +6430 51319 0.8100 +6430 51362 0.8300 +6430 51574 0.5030 +6430 51585 0.7990 +6430 51631 0.6550 +6430 51639 0.4880 +6430 51747 0.8140 +6430 53371 0.4400 +6430 54952 0.4920 +6430 55015 0.5940 +6430 55082 0.5050 +6430 55110 0.6710 +6430 55170 0.4240 +6430 55285 0.4480 +6430 55599 0.4060 +6430 55692 0.8510 +6430 55696 0.4220 +6430 55706 0.4080 +6430 55746 0.4460 +6430 56000 0.7710 +6430 56341 0.4020 +6430 56937 0.4020 +6430 57018 0.4730 +6430 57035 0.6060 +6430 57122 0.4210 +6430 57396 0.5580 +6430 57407 0.4060 +6430 58517 0.9260 +6430 64946 0.4460 +6430 65109 0.5700 +6430 79023 0.4420 +6430 79869 0.6160 +6430 79902 0.5010 +6430 80335 0.5550 +6430 81608 0.5670 +6430 81669 0.5100 +6430 81929 0.4470 +6430 84271 0.6940 +6430 84524 0.4090 +6430 84844 0.6210 +6430 84950 0.4750 +6430 84991 0.4890 +6430 92906 0.5670 +6430 129401 0.4230 +6430 135295 0.5890 +6430 140890 0.5700 +6430 143884 0.5000 +6430 199746 0.6930 +6430 220988 0.6570 +6430 221092 0.5100 +6430 347744 0.4920 +6430 348995 0.4110 +6430 390748 0.4110 +6430 392517 0.4820 +6430 728343 0.7710 +6430 100101267 0.4600 +6430 100996928 0.6560 +6431 6432 0.9780 +6431 6434 0.9870 +6431 6625 0.6560 +6431 6626 0.5700 +6431 6627 0.4560 +6431 6628 0.4540 +6431 6629 0.4100 +6431 6631 0.5910 +6431 6632 0.5180 +6431 6633 0.6730 +6431 6634 0.5570 +6431 6635 0.6160 +6431 6636 0.6910 +6431 6637 0.6270 +6431 6729 0.4560 +6431 6732 0.9880 +6431 6733 0.9040 +6431 6741 0.5710 +6431 6749 0.4620 +6431 6936 0.5630 +6431 7073 0.6210 +6431 7124 0.4270 +6431 7175 0.5250 +6431 7307 0.8690 +6431 7536 0.7640 +6431 7919 0.7830 +6431 8021 0.5030 +6431 8086 0.4350 +6431 8106 0.9020 +6431 8148 0.4070 +6431 8175 0.7910 +6431 8189 0.4930 +6431 8227 0.4660 +6431 8233 0.8710 +6431 8241 0.8030 +6431 8480 0.5290 +6431 8570 0.5720 +6431 8683 0.9630 +6431 8797 0.5540 +6431 8880 0.5050 +6431 8899 0.4200 +6431 9188 0.4450 +6431 9295 0.9520 +6431 9343 0.4980 +6431 9416 0.4850 +6431 9444 0.4690 +6431 9584 0.7050 +6431 9631 0.4620 +6431 9688 0.4270 +6431 9774 0.4510 +6431 9775 0.8580 +6431 9782 0.4950 +6431 9785 0.8470 +6431 9818 0.4320 +6431 9883 0.4530 +6431 9939 0.6780 +6431 9972 0.4720 +6431 9987 0.7810 +6431 10181 0.4270 +6431 10189 0.8920 +6431 10196 0.4130 +6431 10212 0.4550 +6431 10236 0.6750 +6431 10250 0.9200 +6431 10262 0.6650 +6431 10291 0.7030 +6431 10432 0.4250 +6431 10482 0.8590 +6431 10492 0.4050 +6431 10569 0.8840 +6431 10594 0.5480 +6431 10625 0.4850 +6431 10657 0.6960 +6431 10658 0.4410 +6431 10762 0.5550 +6431 10772 0.7540 +6431 10898 0.4340 +6431 10914 0.8810 +6431 10921 0.9050 +6431 10929 0.7530 +6431 10946 0.4860 +6431 10949 0.7710 +6431 10957 0.4470 +6431 10978 0.6750 +6431 10992 0.5790 +6431 11051 0.7090 +6431 11052 0.8180 +6431 11097 0.4100 +6431 11338 0.9810 +6431 22794 0.5660 +6431 22826 0.5220 +6431 22827 0.5530 +6431 22916 0.9200 +6431 23076 0.5680 +6431 23165 0.4110 +6431 23225 0.4010 +6431 23279 0.4180 +6431 23435 0.6700 +6431 23450 0.4970 +6431 23451 0.7180 +6431 23476 0.4250 +6431 23511 0.4050 +6431 23524 0.5990 +6431 23534 0.7630 +6431 23543 0.5060 +6431 23636 0.4820 +6431 24144 0.5710 +6431 25766 0.4330 +6431 25957 0.5600 +6431 26097 0.5440 +6431 26528 0.5290 +6431 26576 0.7370 +6431 26986 0.4320 +6431 27316 0.7440 +6431 29894 0.5270 +6431 29896 0.9370 +6431 51122 0.4270 +6431 51322 0.4440 +6431 51362 0.8430 +6431 51574 0.6680 +6431 51585 0.7400 +6431 51593 0.5660 +6431 51631 0.8360 +6431 51639 0.5180 +6431 51692 0.4180 +6431 51747 0.5460 +6431 53371 0.4520 +6431 54715 0.4020 +6431 54758 0.4050 +6431 54952 0.5270 +6431 55015 0.5460 +6431 55110 0.6750 +6431 55147 0.4720 +6431 55170 0.4080 +6431 55599 0.4230 +6431 55660 0.4060 +6431 55692 0.6070 +6431 55706 0.4080 +6431 55746 0.4640 +6431 56000 0.7710 +6431 56259 0.5580 +6431 56341 0.4020 +6431 56937 0.4020 +6431 57018 0.4290 +6431 57122 0.4310 +6431 57396 0.5830 +6431 58155 0.4480 +6431 58517 0.8860 +6431 65109 0.5480 +6431 79023 0.4530 +6431 79753 0.4480 +6431 79869 0.6510 +6431 79882 0.4130 +6431 79902 0.5250 +6431 80335 0.6360 +6431 81608 0.5640 +6431 81669 0.4030 +6431 81929 0.4550 +6431 84271 0.6970 +6431 84844 0.4770 +6431 84950 0.4690 +6431 84991 0.5660 +6431 92906 0.5530 +6431 114034 0.6370 +6431 124245 0.5110 +6431 129401 0.4350 +6431 135295 0.6200 +6431 140890 0.7940 +6431 143884 0.4990 +6431 144983 0.4260 +6431 199746 0.6400 +6431 220988 0.6880 +6431 347744 0.4920 +6431 348995 0.4230 +6431 392517 0.4820 +6431 642659 0.4020 +6431 728343 0.7710 +6431 100101267 0.4620 +6431 100996928 0.4690 +6432 6433 0.4350 +6432 6434 0.9950 +6432 6625 0.8210 +6432 6626 0.4860 +6432 6627 0.6400 +6432 6631 0.4300 +6432 6632 0.6610 +6432 6633 0.7400 +6432 6634 0.6520 +6432 6635 0.7920 +6432 6636 0.7300 +6432 6637 0.7160 +6432 6651 0.5580 +6432 6732 0.9650 +6432 6733 0.6610 +6432 6741 0.5160 +6432 6936 0.5040 +6432 7072 0.5540 +6432 7073 0.6140 +6432 7175 0.5450 +6432 7307 0.9170 +6432 7532 0.4280 +6432 7534 0.4820 +6432 7536 0.6270 +6432 7919 0.9050 +6432 8021 0.4660 +6432 8086 0.4530 +6432 8087 0.4680 +6432 8106 0.9000 +6432 8148 0.7020 +6432 8175 0.7240 +6432 8233 0.9010 +6432 8241 0.6120 +6432 8445 0.5170 +6432 8480 0.5850 +6432 8563 0.4050 +6432 8570 0.4690 +6432 8666 0.4440 +6432 8668 0.4520 +6432 8683 0.9900 +6432 8899 0.4230 +6432 8939 0.4480 +6432 8971 0.4360 +6432 9129 0.4210 +6432 9295 0.9620 +6432 9343 0.7510 +6432 9410 0.4240 +6432 9416 0.4840 +6432 9584 0.6150 +6432 9631 0.4190 +6432 9688 0.4920 +6432 9774 0.5970 +6432 9775 0.9080 +6432 9782 0.7600 +6432 9785 0.8120 +6432 9818 0.4160 +6432 9870 0.4120 +6432 9879 0.4460 +6432 9939 0.7360 +6432 9972 0.4870 +6432 9987 0.6530 +6432 10147 0.4110 +6432 10181 0.4850 +6432 10189 0.9580 +6432 10197 0.4210 +6432 10212 0.4280 +6432 10236 0.8330 +6432 10250 0.7600 +6432 10284 0.6530 +6432 10291 0.5900 +6432 10432 0.6740 +6432 10482 0.9620 +6432 10492 0.5300 +6432 10569 0.8700 +6432 10594 0.4570 +6432 10657 0.7000 +6432 10658 0.4710 +6432 10762 0.4350 +6432 10772 0.8670 +6432 10914 0.9000 +6432 10921 0.8410 +6432 10929 0.7740 +6432 10946 0.4260 +6432 10949 0.7080 +6432 10978 0.5210 +6432 10982 0.5110 +6432 11051 0.8190 +6432 11052 0.8450 +6432 11065 0.4300 +6432 11097 0.4250 +6432 11338 0.9780 +6432 22794 0.6240 +6432 22827 0.5620 +6432 22913 0.5360 +6432 22916 0.9040 +6432 22985 0.5580 +6432 23165 0.4210 +6432 23225 0.4050 +6432 23279 0.4930 +6432 23350 0.4650 +6432 23404 0.4240 +6432 23435 0.7910 +6432 23450 0.5320 +6432 23451 0.4410 +6432 23511 0.4160 +6432 23524 0.4880 +6432 23534 0.4090 +6432 23543 0.4370 +6432 23636 0.4210 +6432 24144 0.5710 +6432 24148 0.4730 +6432 25792 0.4980 +6432 25804 0.4360 +6432 25929 0.4340 +6432 25957 0.4280 +6432 26097 0.6290 +6432 26135 0.4040 +6432 26528 0.5520 +6432 27258 0.4410 +6432 27316 0.9190 +6432 27339 0.5450 +6432 29107 0.5710 +6432 29896 0.8970 +6432 51362 0.8420 +6432 51574 0.5010 +6432 51585 0.6440 +6432 51593 0.4960 +6432 51602 0.5100 +6432 51631 0.8740 +6432 51639 0.6010 +6432 51691 0.4130 +6432 51693 0.4790 +6432 51747 0.7160 +6432 53371 0.4970 +6432 54845 0.4690 +6432 55082 0.4940 +6432 55110 0.7610 +6432 55234 0.4120 +6432 55421 0.4970 +6432 55521 0.4220 +6432 55692 0.5100 +6432 55706 0.4160 +6432 55746 0.4610 +6432 56000 0.6580 +6432 56257 0.4430 +6432 56259 0.4610 +6432 57018 0.4390 +6432 57122 0.5050 +6432 57187 0.5180 +6432 57396 0.5040 +6432 57721 0.4350 +6432 57819 0.4390 +6432 58155 0.6010 +6432 58506 0.4280 +6432 58517 0.5360 +6432 65109 0.5480 +6432 79023 0.5030 +6432 79869 0.7360 +6432 79902 0.4390 +6432 81669 0.5940 +6432 81929 0.5010 +6432 84271 0.5500 +6432 84324 0.4320 +6432 84844 0.5680 +6432 84950 0.5400 +6432 91746 0.8920 +6432 92906 0.5670 +6432 124245 0.4800 +6432 129401 0.4900 +6432 135295 0.5770 +6432 140890 0.5070 +6432 143884 0.5390 +6432 153527 0.4190 +6432 199746 0.6360 +6432 220988 0.8810 +6432 284695 0.4150 +6432 348995 0.5850 +6432 728343 0.6580 +6432 728642 0.7080 +6432 100101267 0.4160 +6433 6625 0.4510 +6433 7536 0.4170 +6433 8175 0.8740 +6433 8899 0.5870 +6433 9295 0.5020 +6433 9733 0.4890 +6433 9785 0.5060 +6433 10147 0.5600 +6433 10250 0.5660 +6433 10291 0.4680 +6433 10523 0.4800 +6433 10946 0.9020 +6433 22985 0.5070 +6433 23210 0.4310 +6433 23350 0.4120 +6433 24144 0.4680 +6433 24148 0.4220 +6433 29105 0.6660 +6433 54856 0.4910 +6433 55596 0.4450 +6433 57634 0.4190 +6433 84530 0.5410 +6433 84991 0.4560 +6433 124245 0.5230 +6433 140890 0.5030 +6433 389860 0.4290 +6433 729991 0.4760 +6434 6520 0.5230 +6434 6606 0.8680 +6434 6607 0.8610 +6434 6625 0.9070 +6434 6626 0.6730 +6434 6627 0.5290 +6434 6628 0.5610 +6434 6629 0.5900 +6434 6631 0.5530 +6434 6632 0.7460 +6434 6633 0.9080 +6434 6634 0.7660 +6434 6635 0.7690 +6434 6636 0.8540 +6434 6637 0.8300 +6434 6732 0.7890 +6434 6733 0.7300 +6434 6741 0.6620 +6434 6936 0.5040 +6434 7072 0.4160 +6434 7073 0.6300 +6434 7168 0.4830 +6434 7170 0.5180 +6434 7258 0.4390 +6434 7307 0.8380 +6434 7341 0.4990 +6434 7458 0.4540 +6434 7536 0.5580 +6434 7756 0.4660 +6434 7913 0.5460 +6434 7919 0.7890 +6434 8106 0.6060 +6434 8148 0.7510 +6434 8175 0.8000 +6434 8241 0.6930 +6434 8260 0.4300 +6434 8487 0.5220 +6434 8570 0.5180 +6434 8607 0.4730 +6434 8666 0.4580 +6434 8668 0.5670 +6434 8683 0.9950 +6434 8880 0.5070 +6434 8882 0.4010 +6434 8896 0.4830 +6434 8899 0.5670 +6434 9295 0.9250 +6434 9343 0.6180 +6434 9406 0.5130 +6434 9416 0.4420 +6434 9444 0.4480 +6434 9584 0.6790 +6434 9774 0.6320 +6434 9775 0.8000 +6434 9782 0.7180 +6434 9801 0.4580 +6434 9879 0.4650 +6434 9886 0.6050 +6434 9908 0.4200 +6434 9939 0.4840 +6434 9987 0.7500 +6434 10114 0.7490 +6434 10146 0.4480 +6434 10150 0.4610 +6434 10189 0.8690 +6434 10197 0.5630 +6434 10212 0.4130 +6434 10236 0.8900 +6434 10250 0.7780 +6434 10262 0.4900 +6434 10284 0.6410 +6434 10286 0.4340 +6434 10291 0.5730 +6434 10432 0.7660 +6434 10471 0.4070 +6434 10482 0.5310 +6434 10492 0.8540 +6434 10521 0.6280 +6434 10569 0.4380 +6434 10594 0.5600 +6434 10656 0.4140 +6434 10657 0.8390 +6434 10658 0.6770 +6434 10772 0.9560 +6434 10921 0.7950 +6434 10929 0.7590 +6434 10946 0.4460 +6434 10949 0.8080 +6434 11005 0.4040 +6434 11017 0.4590 +6434 11051 0.5690 +6434 11052 0.8050 +6434 11168 0.4180 +6434 11338 0.9470 +6434 22803 0.4730 +6434 22827 0.4520 +6434 22913 0.4790 +6434 22938 0.4340 +6434 22985 0.5520 +6434 23016 0.4530 +6434 23020 0.5110 +6434 23160 0.4560 +6434 23221 0.6340 +6434 23223 0.4170 +6434 23404 0.4350 +6434 23435 0.8430 +6434 23450 0.5170 +6434 23451 0.6840 +6434 23476 0.6480 +6434 23524 0.5990 +6434 23534 0.5880 +6434 24144 0.6120 +6434 24148 0.4240 +6434 25957 0.5140 +6434 26019 0.5670 +6434 26097 0.7290 +6434 26528 0.5290 +6434 26986 0.4360 +6434 27258 0.4880 +6434 27288 0.4650 +6434 27316 0.9870 +6434 27339 0.6600 +6434 27429 0.6940 +6434 29894 0.5560 +6434 29896 0.8760 +6434 51073 0.4590 +6434 51264 0.4480 +6434 51319 0.4060 +6434 51340 0.4400 +6434 51593 0.5580 +6434 51631 0.7740 +6434 51637 0.4010 +6434 51639 0.5130 +6434 51691 0.4330 +6434 54033 0.5990 +6434 54793 0.4040 +6434 54845 0.4460 +6434 55015 0.4060 +6434 55110 0.6100 +6434 55234 0.4360 +6434 55421 0.4040 +6434 55544 0.6790 +6434 55651 0.4880 +6434 55660 0.4070 +6434 56259 0.6890 +6434 57187 0.6010 +6434 57819 0.4600 +6434 58155 0.5220 +6434 58517 0.5900 +6434 64978 0.4270 +6434 65109 0.4940 +6434 65110 0.5060 +6434 65117 0.4810 +6434 79753 0.7190 +6434 80004 0.4050 +6434 80218 0.4580 +6434 83443 0.4750 +6434 84324 0.4340 +6434 84844 0.5810 +6434 84859 0.4420 +6434 84950 0.6070 +6434 91746 0.7690 +6434 124245 0.6810 +6434 124540 0.4110 +6434 135295 0.4650 +6434 140886 0.4240 +6434 140890 0.5840 +6434 143884 0.5520 +6434 144983 0.6220 +6434 168400 0.4830 +6434 219927 0.4220 +6434 220988 0.7920 +6434 221662 0.5530 +6434 284695 0.5200 +6434 286676 0.5360 +6434 387597 0.4980 +6434 642659 0.4860 +6434 728294 0.4120 +6440 6441 0.9900 +6440 6657 0.4220 +6440 6662 0.4620 +6440 7015 0.4780 +6440 7040 0.4050 +6440 7057 0.5050 +6440 7080 0.8340 +6440 7093 0.4140 +6440 7113 0.4370 +6440 7270 0.7810 +6440 7306 0.5000 +6440 7356 0.9500 +6440 7448 0.8130 +6440 9236 0.4030 +6440 9476 0.7360 +6440 9496 0.4140 +6440 10536 0.6660 +6440 10568 0.5860 +6440 10630 0.6530 +6440 10647 0.4410 +6440 10648 0.4410 +6440 23221 0.6570 +6440 29080 0.7640 +6440 51208 0.6210 +6440 51750 0.5790 +6440 54431 0.4350 +6440 59272 0.4670 +6440 79888 0.4940 +6440 84283 0.7710 +6440 84525 0.6800 +6440 85027 0.4200 +6440 92304 0.4800 +6440 117156 0.8500 +6440 140885 0.4140 +6440 163183 0.5390 +6440 203190 0.5510 +6440 221395 0.8220 +6440 255520 0.6160 +6440 389376 0.5050 +6440 404552 0.4410 +6440 405754 0.4310 +6440 643834 0.4220 +6440 643847 0.4240 +6440 653509 0.9990 +6440 727897 0.6780 +6440 729238 0.9930 +6441 6633 0.4820 +6441 7080 0.4730 +6441 7097 0.5990 +6441 7099 0.4220 +6441 7124 0.4750 +6441 7306 0.4210 +6441 7356 0.8370 +6441 7450 0.4520 +6441 8547 0.5580 +6441 9476 0.5040 +6441 10568 0.5810 +6441 10747 0.5470 +6441 27159 0.4280 +6441 30835 0.5020 +6441 51208 0.4860 +6441 59272 0.6590 +6441 64135 0.4950 +6441 117156 0.6480 +6441 126014 0.5510 +6441 140885 0.9390 +6441 144568 0.4900 +6441 389376 0.4470 +6441 414325 0.4540 +6441 653509 0.8510 +6441 727897 0.5090 +6441 728358 0.6190 +6441 729238 0.8310 +6442 6443 0.9990 +6442 6444 0.9990 +6442 6445 0.9990 +6442 6449 0.6220 +6442 6640 0.9670 +6442 6641 0.9440 +6442 6645 0.7740 +6442 7273 0.7430 +6442 7402 0.9320 +6442 8048 0.6260 +6442 8082 0.9970 +6442 8291 0.9060 +6442 8557 0.7820 +6442 8910 0.7400 +6442 9499 0.6550 +6442 10076 0.4180 +6442 10585 0.7790 +6442 11167 0.5420 +6442 22954 0.6680 +6442 26548 0.4150 +6442 29925 0.4460 +6442 29954 0.7430 +6442 51778 0.4330 +6442 54212 0.7850 +6442 54221 0.7880 +6442 55624 0.7130 +6442 57158 0.4190 +6442 58529 0.5530 +6442 79147 0.8740 +6442 112970 0.6730 +6442 124872 0.4200 +6442 127294 0.5710 +6442 137868 0.8570 +6442 160897 0.4970 +6442 165904 0.4270 +6442 200539 0.4250 +6442 203859 0.8300 +6442 375790 0.4340 +6443 6444 0.9970 +6443 6445 0.9610 +6443 6640 0.8170 +6443 6641 0.8990 +6443 6645 0.6880 +6443 7273 0.6670 +6443 7402 0.8940 +6443 8082 0.9390 +6443 8291 0.8320 +6443 8557 0.7190 +6443 8910 0.9930 +6443 9499 0.5720 +6443 10049 0.4330 +6443 10585 0.7850 +6443 22954 0.6720 +6443 29925 0.4320 +6443 29954 0.7850 +6443 54212 0.7940 +6443 54221 0.7730 +6443 55624 0.7560 +6443 60684 0.4370 +6443 79147 0.8660 +6443 132671 0.7900 +6443 137868 0.8740 +6443 203859 0.8260 +6444 6445 0.9790 +6444 6640 0.9670 +6444 6641 0.9420 +6444 6645 0.7600 +6444 7112 0.6180 +6444 7137 0.6040 +6444 7139 0.4880 +6444 7168 0.5250 +6444 7273 0.7880 +6444 7402 0.8880 +6444 8038 0.5550 +6444 8048 0.7270 +6444 8082 0.9970 +6444 8291 0.8120 +6444 8557 0.8100 +6444 8910 0.9940 +6444 9499 0.6670 +6444 9531 0.4090 +6444 9722 0.4210 +6444 10049 0.4110 +6444 10060 0.6980 +6444 10105 0.6300 +6444 10585 0.6660 +6444 11155 0.7420 +6444 22954 0.6140 +6444 27063 0.4250 +6444 27295 0.4890 +6444 29954 0.6610 +6444 51393 0.5770 +6444 51422 0.4550 +6444 51778 0.5690 +6444 54212 0.8250 +6444 54221 0.8100 +6444 55624 0.6270 +6444 57158 0.4700 +6444 57798 0.4030 +6444 79147 0.7910 +6444 79188 0.4560 +6444 84665 0.5250 +6444 85366 0.4090 +6444 91624 0.6200 +6444 93183 0.5400 +6444 125972 0.4160 +6444 132671 0.4710 +6444 132720 0.4380 +6444 137868 0.7160 +6444 203859 0.7650 +6444 204962 0.4380 +6444 282996 0.7040 +6444 493829 0.4010 +6445 6640 0.9180 +6445 6641 0.9270 +6445 6645 0.7380 +6445 7001 0.4240 +6445 7273 0.6300 +6445 7402 0.8770 +6445 8082 0.9890 +6445 8291 0.8860 +6445 8425 0.4820 +6445 8557 0.7420 +6445 8910 0.9140 +6445 9499 0.6950 +6445 10049 0.5110 +6445 10288 0.4260 +6445 10585 0.7280 +6445 22954 0.7060 +6445 26278 0.5170 +6445 29925 0.4480 +6445 29954 0.7070 +6445 51393 0.4260 +6445 54212 0.6730 +6445 54221 0.6630 +6445 55624 0.6840 +6445 79147 0.8660 +6445 91689 0.4180 +6445 93183 0.4860 +6445 132671 0.4350 +6445 137868 0.5960 +6445 203859 0.8230 +6446 6453 0.5110 +6446 6535 0.5540 +6446 6548 0.5350 +6446 6549 0.4450 +6446 6550 0.5580 +6446 6557 0.4620 +6446 6559 0.6680 +6446 6648 0.4040 +6446 6652 0.4100 +6446 6687 0.4560 +6446 6722 0.7820 +6446 6943 0.6210 +6446 7128 0.4040 +6446 7157 0.6360 +6446 7248 0.5230 +6446 7249 0.7940 +6446 7311 0.4010 +6446 7314 0.4710 +6446 7316 0.4990 +6446 7326 0.5170 +6446 7534 0.4070 +6446 7832 0.5070 +6446 8660 0.4350 +6446 9351 0.7170 +6446 9368 0.5230 +6446 9935 0.4160 +6446 10110 0.9040 +6446 10273 0.6200 +6446 10397 0.7370 +6446 10476 0.5920 +6446 10558 0.5070 +6446 10670 0.4140 +6446 10725 0.4910 +6446 11059 0.5820 +6446 11266 0.4560 +6446 23049 0.4950 +6446 23239 0.4110 +6446 23315 0.4010 +6446 23327 0.9990 +6446 23411 0.4890 +6446 23678 0.9060 +6446 26499 0.4800 +6446 54541 0.4650 +6446 55143 0.4160 +6446 55615 0.8580 +6446 55697 0.4100 +6446 56302 0.4370 +6446 57521 0.8350 +6446 64121 0.4050 +6446 64223 0.8510 +6446 64798 0.8340 +6446 65125 0.6840 +6446 65266 0.5540 +6446 65268 0.4740 +6446 79109 0.9500 +6446 79660 0.4010 +6446 84232 0.4050 +6446 84335 0.7720 +6446 84614 0.4080 +6446 140679 0.5140 +6446 200576 0.5940 +6446 221079 0.4100 +6446 253260 0.9210 +6446 374569 0.6000 +6446 100132074 0.5600 +6447 6616 0.4500 +6447 7425 0.5660 +6447 7857 0.8650 +6447 8720 0.4670 +6447 9159 0.5110 +6447 9824 0.5270 +6447 10887 0.4230 +6447 26585 0.7610 +6447 27344 0.6930 +6447 29106 0.9250 +6447 54760 0.5410 +6447 89839 0.4070 +6447 128674 0.4050 +6447 342184 0.7390 +6447 347148 0.4090 +6448 8722 0.4380 +6448 9282 0.5100 +6448 9412 0.4880 +6448 9440 0.4330 +6448 9443 0.4910 +6448 9653 0.4280 +6448 10001 0.4970 +6448 22901 0.4240 +6448 25870 0.5180 +6448 26270 0.4260 +6448 51003 0.4810 +6448 54982 0.6110 +6448 57617 0.4570 +6448 79158 0.4180 +6448 80055 0.4040 +6448 80331 0.4750 +6448 84246 0.4550 +6448 138050 0.9810 +6448 162494 0.4690 +6448 256471 0.5280 +6448 284129 0.7630 +6448 285362 0.9300 +6449 6729 0.4500 +6449 6767 0.5210 +6449 6782 0.4240 +6449 6804 0.5070 +6449 6811 0.7630 +6449 6844 0.6200 +6449 6950 0.4100 +6449 7415 0.5000 +6449 7485 0.8930 +6449 7514 0.4300 +6449 7917 0.9930 +6449 8079 0.5290 +6449 8266 0.9990 +6449 8454 0.6160 +6449 8557 0.4660 +6449 8881 0.4200 +6449 9049 0.4710 +6449 9218 0.5450 +6449 9328 0.5830 +6449 9370 0.5980 +6449 9381 0.5060 +6449 9530 0.4010 +6449 9532 0.9310 +6449 10116 0.4930 +6449 10134 0.4840 +6449 10213 0.5840 +6449 10294 0.4420 +6449 10399 0.4330 +6449 10468 0.4140 +6449 10598 0.6990 +6449 10728 0.4960 +6449 10808 0.9870 +6449 10910 0.4270 +6449 10952 0.8150 +6449 10961 0.5230 +6449 10963 0.4260 +6449 11034 0.5230 +6449 11047 0.8620 +6449 11051 0.4020 +6449 11140 0.6720 +6449 22824 0.4160 +6449 23065 0.5770 +6449 23208 0.4540 +6449 23212 0.4090 +6449 23341 0.5210 +6449 23480 0.5180 +6449 23640 0.4830 +6449 26986 0.4310 +6449 27230 0.7190 +6449 29104 0.4100 +6449 29927 0.4640 +6449 29978 0.5320 +6449 29979 0.4680 +6449 50613 0.4060 +6449 50848 0.4360 +6449 51586 0.4120 +6449 51608 0.9990 +6449 51668 0.5160 +6449 53822 0.4800 +6449 54431 0.4580 +6449 54557 0.6130 +6449 54788 0.7810 +6449 55658 0.6980 +6449 56893 0.5700 +6449 63915 0.4190 +6449 79982 0.8250 +6449 80331 0.8550 +6449 81570 0.4720 +6449 92521 0.4100 +6449 118424 0.5910 +6449 123169 0.4790 +6449 134288 0.5290 +6449 164153 0.5010 +6449 202052 0.7690 +6449 643008 0.4870 +6450 7485 0.4400 +6450 8099 0.4060 +6450 8624 0.6240 +6450 8891 0.4280 +6450 9527 0.4100 +6450 53820 0.4120 +6450 54014 0.4040 +6450 64714 0.4180 +6450 66036 0.4340 +6450 114882 0.4040 +6450 140850 0.5710 +6450 150082 0.6580 +6450 286046 0.4310 +6451 6636 0.4420 +6451 8624 0.5320 +6451 10808 0.4160 +6451 27330 0.4890 +6451 56062 0.4660 +6451 83642 0.5940 +6451 129303 0.4630 +6451 139322 0.5390 +6451 150082 0.5680 +6451 254065 0.4090 +6451 338382 0.5940 +6452 6461 0.4910 +6452 6714 0.7050 +6452 6850 0.9370 +6452 6872 0.4320 +6452 7409 0.9930 +6452 7410 0.9580 +6452 7535 0.7730 +6452 8600 0.6330 +6452 8603 0.4590 +6452 8658 0.8380 +6452 8711 0.4510 +6452 9402 0.4500 +6452 9467 0.6250 +6452 10451 0.9430 +6452 10750 0.4370 +6452 10902 0.4750 +6452 23505 0.4980 +6452 26499 0.5690 +6452 27040 0.7700 +6452 28988 0.8070 +6452 30011 0.7440 +6452 51744 0.6020 +6452 80351 0.9880 +6452 81847 0.8290 +6453 6456 0.6810 +6453 6503 0.6080 +6453 6559 0.5250 +6453 6616 0.9330 +6453 6654 0.7960 +6453 6677 0.5350 +6453 6714 0.4890 +6453 6764 0.6140 +6453 6844 0.7990 +6453 6845 0.5630 +6453 6853 0.7080 +6453 6854 0.6400 +6453 6855 0.5400 +6453 6857 0.6850 +6453 6869 0.4990 +6453 7074 0.6530 +6453 7436 0.4040 +6453 7454 0.9240 +6453 7456 0.7650 +6453 7474 0.5010 +6453 7812 0.5350 +6453 8153 0.5850 +6453 8218 0.8250 +6453 8224 0.6210 +6453 8301 0.7630 +6453 8322 0.5890 +6453 8372 0.5350 +6453 8522 0.4510 +6453 8567 0.5330 +6453 8650 0.4840 +6453 8673 0.5700 +6453 8692 0.5350 +6453 8766 0.6350 +6453 8773 0.7220 +6453 8867 0.9610 +6453 8871 0.8800 +6453 8976 0.9990 +6453 9026 0.5570 +6453 9051 0.4120 +6453 9077 0.5350 +6453 9138 0.4960 +6453 9230 0.5350 +6453 9253 0.4940 +6453 9322 0.7520 +6453 9341 0.5700 +6453 9522 0.8330 +6453 9662 0.4170 +6453 9685 0.4400 +6453 9829 0.4770 +6453 9873 0.9380 +6453 9886 0.6020 +6453 9892 0.9220 +6453 9943 0.4560 +6453 10059 0.4210 +6453 10092 0.5660 +6453 10093 0.4990 +6453 10094 0.5440 +6453 10095 0.5130 +6453 10096 0.5490 +6453 10097 0.7350 +6453 10109 0.4990 +6453 10123 0.5350 +6453 10124 0.5390 +6453 10188 0.4430 +6453 10552 0.5130 +6453 10633 0.5350 +6453 10672 0.4420 +6453 10900 0.7040 +6453 11021 0.4980 +6453 11158 0.5350 +6453 11159 0.5350 +6453 11276 0.6040 +6453 11322 0.5350 +6453 22800 0.5370 +6453 22808 0.5480 +6453 22836 0.5690 +6453 22841 0.4110 +6453 22848 0.7040 +6453 22905 0.9920 +6453 22907 0.4850 +6453 23048 0.5310 +6453 23085 0.5670 +6453 23149 0.9990 +6453 23221 0.5590 +6453 23426 0.5290 +6453 23433 0.8540 +6453 23551 0.5350 +6453 23553 0.5350 +6453 23647 0.4400 +6453 25836 0.6310 +6453 25960 0.5170 +6453 25977 0.7520 +6453 26052 0.5070 +6453 26119 0.5740 +6453 26225 0.5390 +6453 26499 0.6430 +6453 27185 0.5420 +6453 27289 0.5620 +6453 28954 0.5350 +6453 29110 0.4020 +6453 29924 0.8720 +6453 29978 0.5860 +6453 29984 0.6000 +6453 30011 0.5750 +6453 50489 0.4100 +6453 50618 0.6640 +6453 51277 0.5350 +6453 51285 0.5370 +6453 51326 0.5350 +6453 51429 0.7040 +6453 51552 0.5350 +6453 51655 0.5460 +6453 53916 0.5350 +6453 54505 0.4940 +6453 54509 0.5510 +6453 54622 0.5390 +6453 54707 0.5350 +6453 54734 0.5390 +6453 54769 0.5350 +6453 55040 0.9700 +6453 55114 0.4160 +6453 55288 0.5430 +6453 55707 0.9140 +6453 55835 0.4170 +6453 57111 0.5350 +6453 57381 0.7550 +6453 57514 0.7470 +6453 57580 0.4630 +6453 57706 0.6200 +6453 57826 0.5350 +6453 58480 0.6590 +6453 58513 0.9550 +6453 59271 0.4140 +6453 64848 0.4850 +6453 65125 0.8070 +6453 65266 0.8270 +6453 65267 0.6080 +6453 65268 0.4760 +6453 65997 0.5450 +6453 79363 0.5350 +6453 79571 0.9130 +6453 79785 0.5350 +6453 80117 0.5350 +6453 80304 0.4140 +6453 80705 0.4170 +6453 84100 0.5350 +6453 84174 0.4320 +6453 84251 0.9470 +6453 84268 0.4610 +6453 84932 0.5390 +6453 85004 0.5350 +6453 85021 0.8400 +6453 85379 0.5390 +6453 85439 0.9830 +6453 89848 0.5760 +6453 89941 0.5460 +6453 90957 0.4960 +6453 91608 0.5350 +6453 115273 0.5360 +6453 115548 0.9850 +6453 115761 0.5350 +6453 118491 0.5350 +6453 121268 0.5350 +6453 122402 0.4870 +6453 126917 0.4380 +6453 127829 0.5560 +6453 127833 0.6370 +6453 130162 0.4070 +6453 132946 0.5350 +6453 140290 0.4170 +6453 140680 0.5350 +6453 148252 0.5350 +6453 150946 0.4190 +6453 154796 0.4050 +6453 155051 0.5350 +6453 161253 0.5350 +6453 163486 0.4890 +6453 170506 0.4850 +6453 170680 0.4460 +6453 171177 0.5860 +6453 196403 0.4490 +6453 221079 0.5600 +6453 283234 0.4410 +6453 285598 0.5350 +6453 387496 0.5350 +6453 390790 0.5350 +6453 644150 0.6800 +6455 6456 0.9360 +6455 6457 0.9310 +6455 6714 0.5850 +6455 6844 0.6530 +6455 6845 0.5340 +6455 6857 0.4370 +6455 7037 0.4700 +6455 7039 0.4990 +6455 7251 0.4810 +6455 7311 0.5140 +6455 7314 0.5620 +6455 7316 0.5710 +6455 8027 0.5410 +6455 8028 0.5720 +6455 8218 0.4150 +6455 8301 0.6450 +6455 8491 0.7960 +6455 8673 0.5640 +6455 8678 0.5040 +6455 8766 0.4630 +6455 8833 0.4700 +6455 8867 0.9690 +6455 8871 0.9180 +6455 8874 0.5450 +6455 8934 0.4770 +6455 9146 0.5760 +6455 9185 0.4990 +6455 9341 0.5870 +6455 9529 0.4390 +6455 9627 0.4370 +6455 9751 0.4150 +6455 9829 0.4220 +6455 9892 0.6820 +6455 9901 0.4280 +6455 10015 0.9220 +6455 10016 0.5420 +6455 10059 0.4610 +6455 10243 0.5710 +6455 10252 0.4990 +6455 10253 0.5020 +6455 10254 0.5660 +6455 10735 0.4080 +6455 10978 0.4240 +6455 11252 0.4290 +6455 22905 0.7830 +6455 23048 0.6090 +6455 23157 0.5050 +6455 23208 0.5390 +6455 23237 0.7670 +6455 23332 0.4640 +6455 23452 0.4840 +6455 23557 0.4320 +6455 23624 0.8000 +6455 23779 0.8690 +6455 26000 0.4780 +6455 26018 0.5140 +6455 26052 0.5240 +6455 26119 0.5070 +6455 27238 0.6200 +6455 29924 0.6630 +6455 29978 0.5140 +6455 30011 0.6970 +6455 50618 0.4150 +6455 51429 0.4250 +6455 55165 0.4940 +6455 55211 0.7830 +6455 55737 0.4900 +6455 57030 0.4700 +6455 57082 0.4480 +6455 58513 0.5950 +6455 63898 0.6170 +6455 64422 0.6410 +6455 65059 0.4550 +6455 80312 0.6010 +6455 84324 0.4280 +6455 85377 0.4220 +6455 92421 0.4950 +6455 113178 0.5410 +6455 120892 0.8710 +6455 170680 0.4180 +6455 255324 0.4990 +6455 553158 0.6230 +6456 6457 0.9310 +6456 6616 0.7250 +6456 6622 0.4900 +6456 6714 0.5240 +6456 6844 0.7110 +6456 6845 0.5160 +6456 6853 0.5430 +6456 6854 0.5460 +6456 6857 0.5940 +6456 6860 0.5430 +6456 7039 0.4990 +6456 7251 0.4160 +6456 7311 0.4990 +6456 7314 0.5580 +6456 7316 0.5660 +6456 7405 0.4680 +6456 8027 0.5240 +6456 8218 0.4070 +6456 8301 0.7270 +6456 8567 0.4360 +6456 8673 0.5580 +6456 8678 0.4950 +6456 8728 0.5390 +6456 8751 0.8160 +6456 8754 0.7640 +6456 8766 0.4300 +6456 8867 0.9980 +6456 8871 0.9790 +6456 8874 0.5390 +6456 8905 0.5900 +6456 8907 0.5010 +6456 8934 0.5460 +6456 8986 0.5270 +6456 9026 0.5440 +6456 9146 0.5070 +6456 9185 0.5140 +6456 9252 0.5160 +6456 9341 0.5810 +6456 9381 0.4560 +6456 9529 0.4070 +6456 9699 0.4390 +6456 9829 0.8240 +6456 9892 0.9130 +6456 9896 0.4340 +6456 9901 0.5730 +6456 10015 0.8860 +6456 10016 0.4850 +6456 10053 0.5010 +6456 10059 0.4140 +6456 10097 0.4020 +6456 10125 0.4150 +6456 10126 0.4100 +6456 10252 0.4990 +6456 10253 0.5100 +6456 10254 0.5460 +6456 11021 0.5770 +6456 11255 0.4410 +6456 22863 0.4320 +6456 22905 0.8010 +6456 23042 0.4150 +6456 23048 0.4170 +6456 23208 0.6430 +6456 23557 0.4560 +6456 23607 0.4510 +6456 23624 0.8000 +6456 23779 0.8000 +6456 24137 0.5030 +6456 25930 0.4840 +6456 26018 0.5240 +6456 26052 0.8370 +6456 26119 0.5070 +6456 27330 0.5010 +6456 29924 0.5930 +6456 29978 0.5100 +6456 30011 0.9380 +6456 51429 0.8690 +6456 51533 0.4070 +6456 54715 0.5050 +6456 55040 0.6050 +6456 55165 0.4400 +6456 55333 0.5050 +6456 55737 0.5600 +6456 55893 0.4120 +6456 56479 0.4190 +6456 57030 0.8300 +6456 57706 0.4800 +6456 58513 0.5600 +6456 64422 0.6560 +6456 65018 0.4250 +6456 65059 0.6320 +6456 66000 0.8090 +6456 81567 0.4990 +6456 83737 0.5640 +6456 84174 0.4400 +6456 84251 0.6800 +6456 92421 0.4310 +6456 92552 0.4080 +6456 115548 0.5770 +6456 120892 0.8870 +6456 128989 0.6150 +6456 130340 0.5570 +6456 163486 0.4050 +6456 170680 0.4180 +6456 255324 0.4990 +6456 285643 0.5030 +6456 553158 0.6100 +6457 6722 0.4990 +6457 6844 0.6480 +6457 6845 0.5270 +6457 6857 0.5080 +6457 7039 0.5010 +6457 7311 0.4990 +6457 7314 0.5580 +6457 7316 0.5740 +6457 8027 0.5250 +6457 8061 0.5200 +6457 8301 0.6200 +6457 8411 0.4300 +6457 8673 0.5450 +6457 8678 0.4790 +6457 8766 0.4690 +6457 8867 0.9490 +6457 8871 0.8780 +6457 8874 0.5300 +6457 8934 0.5120 +6457 9146 0.5230 +6457 9185 0.4990 +6457 9341 0.5780 +6457 9529 0.4470 +6457 9627 0.4520 +6457 9829 0.4730 +6457 9892 0.7190 +6457 10015 0.7380 +6457 10016 0.5270 +6457 10252 0.4990 +6457 10253 0.5020 +6457 10254 0.5470 +6457 22905 0.6360 +6457 23048 0.4160 +6457 23208 0.5660 +6457 23237 0.9760 +6457 23557 0.4560 +6457 23624 0.8140 +6457 23779 0.8310 +6457 25837 0.4130 +6457 26018 0.5140 +6457 26052 0.6140 +6457 26119 0.5190 +6457 29924 0.5430 +6457 29978 0.5100 +6457 29993 0.4220 +6457 30011 0.7730 +6457 54715 0.5100 +6457 54808 0.4790 +6457 55165 0.4710 +6457 55291 0.4690 +6457 55737 0.5010 +6457 55893 0.4220 +6457 56731 0.4080 +6457 57030 0.5450 +6457 58513 0.5550 +6457 64399 0.4640 +6457 64422 0.6590 +6457 65059 0.6020 +6457 84251 0.6090 +6457 92421 0.5860 +6457 114907 0.4170 +6457 120892 0.8720 +6457 133482 0.4660 +6457 143241 0.5850 +6457 170680 0.4200 +6457 255324 0.4990 +6457 553158 0.6100 +6461 6464 0.4840 +6461 6655 0.4140 +6461 6714 0.9150 +6461 7409 0.7020 +6461 7410 0.5170 +6461 8440 0.6070 +6461 8936 0.4990 +6461 9047 0.6910 +6461 9402 0.5290 +6461 9475 0.4990 +6461 9564 0.6110 +6461 9844 0.4990 +6461 10006 0.5110 +6461 10152 0.4990 +6461 10163 0.5030 +6461 10202 0.7660 +6461 10451 0.4990 +6461 10458 0.5440 +6461 10750 0.4650 +6461 10787 0.5030 +6461 10810 0.4990 +6461 10818 0.4780 +6461 23191 0.5130 +6461 25759 0.4110 +6461 26999 0.4990 +6461 27040 0.6990 +6461 55845 0.5340 +6461 55914 0.4030 +6461 57556 0.4160 +6461 63916 0.4990 +6461 152006 0.4330 +6462 6715 0.4160 +6462 6716 0.5480 +6462 6906 0.7700 +6462 7025 0.4380 +6462 7124 0.4610 +6462 7200 0.4780 +6462 7276 0.4100 +6462 8029 0.4110 +6462 8773 0.4050 +6462 9369 0.7030 +6462 9370 0.8230 +6462 9378 0.7420 +6462 9379 0.7930 +6462 9513 0.4560 +6462 9622 0.5600 +6462 10211 0.5020 +6462 10587 0.4250 +6462 11034 0.5120 +6462 26119 0.4400 +6462 26291 0.5790 +6462 27350 0.4470 +6462 51738 0.4480 +6462 54901 0.4300 +6462 56729 0.4790 +6462 57126 0.4970 +6462 57555 0.7070 +6462 57706 0.4350 +6462 79068 0.4950 +6462 79154 0.6660 +6462 84666 0.4480 +6462 84674 0.4620 +6462 171483 0.4510 +6462 252995 0.5410 +6462 284217 0.5560 +6462 653567 0.5430 +6464 6469 0.4450 +6464 6654 0.9990 +6464 6655 0.9990 +6464 6708 0.4880 +6464 6714 0.9990 +6464 6772 0.6780 +6464 6774 0.8930 +6464 6776 0.8260 +6464 6777 0.6660 +6464 6801 0.6840 +6464 6850 0.9570 +6464 7006 0.5960 +6464 7010 0.8190 +6464 7039 0.6350 +6464 7040 0.6610 +6464 7042 0.5460 +6464 7046 0.8450 +6464 7048 0.9270 +6464 7094 0.6840 +6464 7124 0.5630 +6464 7132 0.4110 +6464 7157 0.6750 +6464 7170 0.5740 +6464 7171 0.5590 +6464 7175 0.6090 +6464 7249 0.5850 +6464 7294 0.7310 +6464 7297 0.6750 +6464 7305 0.5450 +6464 7409 0.8400 +6464 7410 0.6940 +6464 7414 0.6630 +6464 7450 0.4650 +6464 7462 0.7460 +6464 7494 0.7720 +6464 7525 0.9320 +6464 7529 0.4410 +6464 7534 0.5930 +6464 7535 0.9970 +6464 7852 0.5170 +6464 7984 0.7060 +6464 8030 0.4560 +6464 8074 0.4250 +6464 8431 0.5120 +6464 8471 0.4740 +6464 8496 0.5120 +6464 8503 0.5490 +6464 8563 0.8030 +6464 8600 0.5830 +6464 8631 0.4260 +6464 8643 0.4380 +6464 8650 0.4560 +6464 8660 0.7780 +6464 8817 0.5890 +6464 8822 0.5610 +6464 8823 0.5810 +6464 8826 0.4500 +6464 8878 0.7700 +6464 9046 0.8260 +6464 9048 0.4810 +6464 9180 0.9040 +6464 9253 0.4490 +6464 9260 0.4370 +6464 9261 0.5190 +6464 9365 0.4810 +6464 9402 0.9920 +6464 9451 0.6510 +6464 9542 0.5270 +6464 9564 0.8650 +6464 9648 0.5010 +6464 9846 0.9970 +6464 9965 0.4310 +6464 10000 0.4170 +6464 10006 0.5220 +6464 10048 0.4050 +6464 10125 0.4960 +6464 10190 0.4350 +6464 10342 0.6130 +6464 10451 0.8130 +6464 10657 0.4400 +6464 10681 0.5330 +6464 10718 0.4960 +6464 10750 0.8520 +6464 10818 0.8930 +6464 11140 0.5720 +6464 22872 0.5210 +6464 22914 0.5340 +6464 23421 0.4350 +6464 23607 0.4970 +6464 25759 0.5650 +6464 25970 0.4510 +6464 26281 0.5800 +6464 26499 0.4810 +6464 27006 0.5730 +6464 27040 0.7520 +6464 27124 0.4310 +6464 27436 0.7330 +6464 29127 0.4300 +6464 29760 0.5810 +6464 30011 0.6040 +6464 51072 0.4590 +6464 51764 0.4990 +6464 53335 0.5110 +6464 53358 0.5840 +6464 54205 0.6300 +6464 54209 0.5200 +6464 54331 0.5070 +6464 54518 0.5730 +6464 55914 0.5800 +6464 55970 0.5320 +6464 56961 0.4330 +6464 57448 0.5090 +6464 57521 0.5430 +6464 59345 0.5350 +6464 64096 0.4330 +6464 64132 0.5410 +6464 64759 0.4760 +6464 64762 0.8150 +6464 79705 0.8030 +6464 79801 0.9410 +6464 79834 0.7790 +6464 80304 0.4990 +6464 81619 0.5160 +6464 84271 0.8540 +6464 84335 0.4170 +6464 84557 0.4040 +6464 84708 0.4230 +6464 84959 0.8640 +6464 94235 0.4990 +6464 117584 0.4800 +6464 126669 0.5610 +6464 131450 0.4470 +6464 139716 0.6130 +6464 140885 0.6540 +6464 145957 0.4970 +6464 146433 0.4990 +6464 152831 0.4080 +6464 253260 0.5840 +6464 255324 0.5290 +6464 375033 0.5070 +6464 390714 0.4990 +6468 6499 0.5630 +6468 6500 0.9330 +6468 6774 0.4010 +6468 6950 0.8030 +6468 7157 0.4510 +6468 7203 0.8630 +6468 7480 0.4540 +6468 7979 0.7380 +6468 8237 0.4350 +6468 8454 0.9110 +6468 8841 0.4030 +6468 8883 0.5000 +6468 8945 0.7970 +6468 9039 0.4990 +6468 9040 0.5040 +6468 9978 0.5000 +6468 10190 0.8190 +6468 10517 0.6760 +6468 10564 0.4050 +6468 10574 0.8430 +6468 10575 0.8610 +6468 10576 0.7750 +6468 10660 0.8940 +6468 10693 0.6550 +6468 10694 0.8590 +6468 11328 0.4240 +6468 22948 0.8850 +6468 23196 0.4670 +6468 23291 0.4320 +6468 26190 0.7590 +6468 26224 0.6410 +6468 26234 0.4660 +6468 26259 0.5840 +6468 26270 0.5450 +6468 26272 0.6550 +6468 27343 0.9250 +6468 51093 0.4320 +6468 51684 0.6860 +6468 53371 0.4160 +6468 54461 0.7550 +6468 55294 0.4840 +6468 55832 0.4990 +6468 56061 0.4710 +6468 57488 0.4260 +6468 63971 0.4050 +6468 79031 0.7830 +6468 81621 0.4120 +6468 83752 0.4050 +6468 84261 0.7070 +6468 123879 0.4990 +6468 157922 0.4750 +6468 285231 0.4870 +6469 6495 0.4620 +6469 6496 0.9040 +6469 6586 0.4460 +6469 6591 0.5240 +6469 6597 0.4440 +6469 6598 0.6310 +6469 6608 0.9990 +6469 6615 0.6130 +6469 6656 0.5830 +6469 6657 0.8240 +6469 6658 0.4400 +6469 6662 0.7050 +6469 6663 0.5880 +6469 6696 0.4200 +6469 6714 0.4210 +6469 6736 0.4500 +6469 6750 0.4180 +6469 6774 0.5560 +6469 6862 0.6140 +6469 6868 0.5010 +6469 6899 0.5880 +6469 6900 0.4010 +6469 6909 0.5140 +6469 6910 0.5230 +6469 6926 0.4970 +6469 7004 0.5830 +6469 7010 0.6180 +6469 7025 0.4020 +6469 7026 0.4790 +6469 7037 0.4080 +6469 7040 0.5910 +6469 7042 0.4790 +6469 7043 0.5320 +6469 7044 0.6030 +6469 7046 0.4300 +6469 7054 0.5940 +6469 7080 0.6890 +6469 7099 0.4180 +6469 7124 0.4360 +6469 7157 0.6450 +6469 7289 0.4470 +6469 7291 0.4730 +6469 7299 0.4100 +6469 7311 0.4990 +6469 7314 0.5020 +6469 7316 0.5220 +6469 7415 0.5410 +6469 7448 0.6580 +6469 7471 0.8050 +6469 7472 0.6380 +6469 7473 0.5730 +6469 7474 0.6690 +6469 7475 0.5030 +6469 7476 0.7640 +6469 7477 0.5550 +6469 7479 0.4880 +6469 7480 0.5470 +6469 7481 0.5220 +6469 7482 0.5200 +6469 7483 0.4270 +6469 7484 0.4490 +6469 7545 0.5380 +6469 7546 0.8640 +6469 7547 0.4060 +6469 7783 0.8990 +6469 7837 0.4810 +6469 7852 0.5060 +6469 7976 0.4020 +6469 8022 0.5550 +6469 8100 0.8160 +6469 8290 0.4600 +6469 8312 0.6260 +6469 8313 0.6250 +6469 8320 0.4690 +6469 8321 0.4610 +6469 8323 0.5580 +6469 8324 0.4080 +6469 8326 0.5920 +6469 8356 0.4790 +6469 8463 0.5940 +6469 8481 0.4240 +6469 8549 0.5190 +6469 8643 0.9990 +6469 8646 0.5780 +6469 8650 0.4430 +6469 8677 0.4480 +6469 8817 0.8130 +6469 8820 0.4170 +6469 8822 0.8530 +6469 8823 0.8110 +6469 8842 0.6100 +6469 8854 0.4670 +6469 8928 0.6570 +6469 9241 0.9360 +6469 9253 0.4510 +6469 9314 0.5380 +6469 9355 0.5810 +6469 9423 0.5390 +6469 9429 0.6800 +6469 9464 0.5740 +6469 9482 0.4480 +6469 9496 0.4980 +6469 9547 0.4540 +6469 9759 0.5060 +6469 9786 0.7120 +6469 9788 0.5590 +6469 9965 0.4620 +6469 10197 0.5270 +6469 10215 0.7340 +6469 10220 0.4160 +6469 10228 0.4480 +6469 10253 0.4390 +6469 10381 0.4080 +6469 10413 0.7320 +6469 10468 0.4470 +6469 10637 0.5840 +6469 10683 0.4060 +6469 10716 0.5310 +6469 10763 0.7030 +6469 10913 0.7050 +6469 10956 0.7070 +6469 11023 0.4800 +6469 11127 0.7900 +6469 11166 0.4330 +6469 11197 0.5380 +6469 22943 0.6140 +6469 23135 0.5710 +6469 23432 0.5320 +6469 23440 0.4730 +6469 23462 0.4450 +6469 25806 0.4220 +6469 25914 0.4060 +6469 25928 0.5600 +6469 25989 0.5500 +6469 26118 0.5160 +6469 26160 0.6290 +6469 26281 0.8300 +6469 26468 0.5860 +6469 26585 0.8060 +6469 27006 0.8260 +6469 27121 0.4020 +6469 27122 0.4030 +6469 27123 0.4040 +6469 27148 0.6630 +6469 27248 0.7070 +6469 28514 0.5330 +6469 50846 0.9380 +6469 50937 0.9990 +6469 51009 0.6810 +6469 51176 0.7680 +6469 51232 0.4420 +6469 51542 0.5040 +6469 51684 0.9370 +6469 51715 0.7440 +6469 51806 0.4870 +6469 54361 0.5520 +6469 54567 0.4980 +6469 54820 0.4530 +6469 54903 0.5250 +6469 55079 0.4170 +6469 55275 0.4980 +6469 55582 0.5980 +6469 55733 0.7690 +6469 55835 0.4460 +6469 56033 0.6820 +6469 56751 0.4210 +6469 56956 0.4620 +6469 57154 0.5120 +6469 57216 0.5940 +6469 57540 0.6540 +6469 57758 0.7540 +6469 60529 0.6680 +6469 63973 0.6340 +6469 64211 0.4190 +6469 64321 0.4310 +6469 64327 0.8720 +6469 64388 0.6090 +6469 64399 0.9990 +6469 64750 0.5110 +6469 64843 0.4460 +6469 64919 0.4430 +6469 79190 0.5200 +6469 79191 0.5450 +6469 79192 0.4190 +6469 79600 0.5090 +6469 79648 0.4230 +6469 79738 0.5450 +6469 79809 0.6620 +6469 79923 0.7390 +6469 79971 0.4080 +6469 80184 0.4090 +6469 80326 0.4960 +6469 81029 0.4180 +6469 81839 0.5320 +6469 84447 0.6350 +6469 84504 0.6420 +6469 84976 0.9960 +6469 85455 0.9160 +6469 89780 0.7750 +6469 91653 0.9960 +6469 91860 0.5000 +6469 93986 0.4160 +6469 116039 0.4420 +6469 116448 0.5990 +6469 117581 0.4040 +6469 120237 0.5930 +6469 122706 0.4010 +6469 137902 0.4810 +6469 139411 0.7340 +6469 140545 0.4560 +6469 143471 0.4010 +6469 146713 0.5220 +6469 147040 0.4720 +6469 147111 0.5850 +6469 147495 0.4620 +6469 151449 0.4860 +6469 163688 0.4760 +6469 166379 0.5270 +6469 170825 0.5720 +6469 200894 0.7690 +6469 220202 0.5050 +6469 221833 0.6080 +6469 256297 0.5030 +6469 259266 0.4800 +6469 338917 0.6660 +6469 342184 0.4660 +6469 344191 0.5310 +6469 374654 0.7610 +6469 375790 0.4750 +6469 388585 0.5070 +6469 431707 0.4980 +6469 440093 0.4560 +6469 440097 0.4430 +6469 440686 0.4680 +6469 653604 0.4680 +6469 100133941 0.5070 +6469 100532731 0.6020 +6470 6472 0.9440 +6470 6509 0.5940 +6470 6510 0.4610 +6470 6573 0.6490 +6470 6723 0.4160 +6470 6726 0.4960 +6470 6729 0.4510 +6470 6888 0.6200 +6470 6948 0.5830 +6470 7037 0.4070 +6470 7083 0.5420 +6470 7086 0.7000 +6470 7167 0.8320 +6470 7284 0.4150 +6470 7296 0.5710 +6470 7298 0.9970 +6470 7357 0.5150 +6470 7372 0.5920 +6470 7407 0.5250 +6470 7915 0.4770 +6470 8050 0.6040 +6470 8192 0.4550 +6470 8277 0.6770 +6470 8528 0.5630 +6470 8565 0.5510 +6470 8566 0.5010 +6470 8659 0.4980 +6470 8742 0.6520 +6470 8833 0.5700 +6470 9131 0.4990 +6470 9380 0.5320 +6470 9517 0.8520 +6470 9563 0.5230 +6470 10247 0.4670 +6470 10400 0.4960 +6470 10558 0.8480 +6470 10587 0.5540 +6470 10588 0.8910 +6470 10606 0.8510 +6470 10768 0.6100 +6470 10797 0.9970 +6470 10840 0.9620 +6470 10841 0.9510 +6470 10873 0.4320 +6470 10993 0.9670 +6470 22934 0.4860 +6470 23028 0.4970 +6470 23382 0.6270 +6470 23464 0.4420 +6470 23476 0.4330 +6470 23743 0.7860 +6470 25902 0.9950 +6470 26227 0.8810 +6470 26330 0.6700 +6470 27068 0.4480 +6470 27232 0.9570 +6470 27349 0.5320 +6470 27430 0.4830 +6470 29958 0.8980 +6470 29968 0.8690 +6470 51144 0.5260 +6470 51268 0.9600 +6470 51727 0.4040 +6470 51805 0.4060 +6470 53347 0.4540 +6470 54363 0.7110 +6470 54995 0.4950 +6470 55034 0.4180 +6470 55066 0.7190 +6470 55157 0.4600 +6470 55163 0.4960 +6470 55191 0.4730 +6470 55304 0.8430 +6470 55349 0.5080 +6470 55526 0.4510 +6470 55699 0.4040 +6470 55753 0.4630 +6470 57103 0.4210 +6470 58472 0.4760 +6470 63826 0.9640 +6470 64577 0.4520 +6470 64779 0.6650 +6470 64902 0.9380 +6470 65220 0.4880 +6470 79912 0.4760 +6470 80308 0.4050 +6470 80347 0.4130 +6470 81034 0.4500 +6470 81932 0.5230 +6470 83693 0.5370 +6470 84076 0.6710 +6470 84705 0.4120 +6470 84706 0.4470 +6470 84883 0.5140 +6470 84959 0.4540 +6470 113235 0.4580 +6470 113675 0.9570 +6470 114112 0.5390 +6470 122622 0.7210 +6470 123263 0.9600 +6470 129831 0.4750 +6470 132158 0.6160 +6470 139596 0.8060 +6470 140838 0.5100 +6470 150209 0.4770 +6470 154743 0.4500 +6470 160428 0.9740 +6470 162417 0.4570 +6470 200205 0.8560 +6470 200895 0.9920 +6470 283871 0.4640 +6470 283985 0.4460 +6470 285148 0.4190 +6470 441024 0.9960 +6470 441531 0.4520 +6470 730249 0.5760 +6472 6509 0.4640 +6472 6510 0.5700 +6472 6648 0.4220 +6472 6723 0.4190 +6472 6729 0.4550 +6472 6737 0.4230 +6472 6888 0.6520 +6472 6897 0.4540 +6472 7037 0.4270 +6472 7067 0.4510 +6472 7083 0.7500 +6472 7086 0.7720 +6472 7153 0.4010 +6472 7167 0.9200 +6472 7284 0.5630 +6472 7296 0.6520 +6472 7298 0.9970 +6472 7299 0.4310 +6472 7357 0.5150 +6472 7371 0.5680 +6472 7372 0.6100 +6472 7407 0.5810 +6472 7453 0.4840 +6472 7915 0.4600 +6472 8050 0.6390 +6472 8140 0.4200 +6472 8192 0.6960 +6472 8277 0.6970 +6472 8528 0.5450 +6472 8565 0.6550 +6472 8566 0.4840 +6472 8659 0.4530 +6472 8802 0.4160 +6472 8833 0.6270 +6472 8836 0.5190 +6472 9131 0.5400 +6472 9343 0.5270 +6472 9361 0.5440 +6472 9380 0.6150 +6472 9517 0.8490 +6472 9563 0.5530 +6472 9577 0.9980 +6472 9945 0.4230 +6472 10131 0.5790 +6472 10352 0.4370 +6472 10558 0.8460 +6472 10574 0.5080 +6472 10587 0.5550 +6472 10588 0.8010 +6472 10594 0.4310 +6472 10606 0.8430 +6472 10616 0.4420 +6472 10768 0.6010 +6472 10788 0.4130 +6472 10797 0.9970 +6472 10840 0.9580 +6472 10841 0.9510 +6472 10873 0.4280 +6472 10898 0.4310 +6472 10993 0.9670 +6472 11164 0.4620 +6472 22934 0.5010 +6472 22984 0.4200 +6472 23172 0.9990 +6472 23204 0.4410 +6472 23382 0.6190 +6472 23395 0.4060 +6472 23464 0.6020 +6472 23474 0.5240 +6472 23476 0.4520 +6472 23530 0.4100 +6472 23743 0.7250 +6472 25793 0.5130 +6472 25821 0.4250 +6472 25902 0.9950 +6472 26227 0.9260 +6472 26330 0.7120 +6472 26354 0.4930 +6472 27068 0.4510 +6472 27232 0.9470 +6472 27349 0.4930 +6472 27430 0.4500 +6472 29086 0.9970 +6472 29958 0.8380 +6472 29968 0.9160 +6472 51065 0.4490 +6472 51144 0.5060 +6472 51154 0.4540 +6472 51179 0.4140 +6472 51268 0.9590 +6472 51292 0.4020 +6472 51520 0.5770 +6472 51805 0.4020 +6472 53347 0.4540 +6472 54363 0.5280 +6472 54870 0.4020 +6472 54931 0.4220 +6472 54938 0.4360 +6472 54995 0.5000 +6472 55066 0.7250 +6472 55152 0.4040 +6472 55157 0.4610 +6472 55163 0.4710 +6472 55191 0.4730 +6472 55304 0.8410 +6472 55349 0.4720 +6472 55526 0.4650 +6472 55699 0.4620 +6472 55753 0.4500 +6472 57026 0.4030 +6472 57103 0.4390 +6472 57176 0.4150 +6472 57761 0.5340 +6472 58472 0.4990 +6472 58478 0.4210 +6472 63826 0.9600 +6472 63875 0.4280 +6472 64087 0.4410 +6472 64146 0.4530 +6472 64779 0.6420 +6472 64902 0.9310 +6472 65220 0.4700 +6472 79072 0.4320 +6472 79184 0.9990 +6472 79693 0.4590 +6472 79912 0.4760 +6472 80308 0.4300 +6472 80347 0.4880 +6472 81034 0.4750 +6472 81570 0.4030 +6472 81624 0.4260 +6472 81932 0.5110 +6472 83693 0.5060 +6472 84076 0.6840 +6472 84705 0.5170 +6472 84706 0.4960 +6472 84883 0.4980 +6472 84959 0.4540 +6472 85476 0.4580 +6472 91039 0.4750 +6472 93100 0.4790 +6472 94081 0.5590 +6472 113235 0.4560 +6472 113675 0.9570 +6472 114112 0.5390 +6472 122622 0.7210 +6472 123263 0.9690 +6472 129831 0.4750 +6472 132158 0.5960 +6472 139596 0.8190 +6472 140838 0.5270 +6472 150209 0.4980 +6472 160428 0.9710 +6472 162417 0.6950 +6472 200205 0.8620 +6472 200895 0.9870 +6472 283871 0.4770 +6472 283985 0.4460 +6472 285148 0.4210 +6472 374659 0.4110 +6472 440275 0.4180 +6472 441024 0.9950 +6472 441531 0.4900 +6472 730249 0.5580 +6473 6658 0.6920 +6473 6660 0.7090 +6473 6736 0.7150 +6473 6845 0.4550 +6473 8091 0.4270 +6473 8225 0.5380 +6473 8623 0.6290 +6473 9189 0.4800 +6473 28227 0.5350 +6473 51481 0.6220 +6473 55344 0.6390 +6473 55553 0.6670 +6473 57502 0.4330 +6473 81796 0.4580 +6473 207063 0.5430 +6473 219293 0.4220 +6473 286530 0.4090 +6473 390637 0.4790 +6473 100130742 0.6240 +6474 6899 0.4070 +6474 6909 0.4540 +6474 6910 0.6430 +6474 6913 0.6210 +6474 6926 0.7360 +6474 7545 0.4040 +6474 9096 0.7990 +6474 9670 0.6980 +6474 10021 0.7410 +6474 10052 0.4800 +6474 10265 0.4200 +6474 10801 0.6440 +6474 11186 0.5070 +6474 50805 0.5290 +6474 50945 0.5650 +6474 51319 0.5290 +6474 57057 0.4190 +6474 58498 0.4080 +6474 63976 0.4680 +6474 79190 0.4470 +6474 79191 0.4620 +6474 116039 0.5140 +6474 219623 0.4900 +6476 6514 0.6380 +6476 6517 0.6120 +6476 6518 0.4350 +6476 6523 0.6770 +6476 6524 0.8100 +6476 6564 0.4330 +6476 7299 0.6170 +6476 7498 0.6360 +6476 7528 0.4330 +6476 7841 0.8400 +6476 8565 0.4010 +6476 8972 0.9090 +6476 9370 0.4790 +6476 9520 0.4040 +6476 9563 0.4140 +6476 10020 0.4210 +6476 10724 0.5420 +6476 11181 0.7530 +6476 11253 0.5730 +6476 23193 0.4710 +6476 25945 0.4750 +6476 27254 0.5410 +6476 51067 0.4050 +6476 54431 0.4040 +6476 54575 0.5830 +6476 54576 0.5570 +6476 54577 0.5360 +6476 54578 0.5080 +6476 54657 0.5100 +6476 54658 0.6000 +6476 55757 0.4230 +6476 56886 0.5050 +6476 57818 0.5230 +6476 64080 0.6870 +6476 80201 0.9190 +6476 83756 0.4180 +6476 84572 0.5920 +6476 84666 0.4150 +6476 84706 0.4110 +6476 92579 0.5500 +6476 93432 0.9410 +6476 131566 0.4160 +6476 151056 0.5020 +6476 257202 0.4630 +6476 440387 0.4950 +6476 493869 0.4610 +6477 6478 0.9400 +6477 6500 0.9510 +6477 6622 0.9750 +6477 6774 0.4350 +6477 6855 0.6360 +6477 6907 0.6620 +6477 6921 0.4110 +6477 7014 0.6190 +6477 7071 0.6410 +6477 7157 0.5270 +6477 7311 0.5130 +6477 7314 0.5540 +6477 7316 0.5390 +6477 7321 0.8300 +6477 7322 0.7630 +6477 7323 0.7680 +6477 7325 0.8400 +6477 7326 0.5130 +6477 7329 0.5860 +6477 7334 0.6400 +6477 7336 0.7830 +6477 7428 0.4580 +6477 7965 0.6640 +6477 8239 0.5960 +6477 8312 0.9960 +6477 8313 0.7350 +6477 8452 0.5960 +6477 8554 0.6270 +6477 8650 0.5490 +6477 8945 0.5890 +6477 9063 0.4120 +6477 9246 0.9730 +6477 9423 0.5420 +6477 9611 0.4110 +6477 9618 0.4360 +6477 9627 0.9800 +6477 9669 0.4140 +6477 9978 0.6170 +6477 10188 0.4740 +6477 10297 0.5400 +6477 10477 0.4190 +6477 10656 0.8240 +6477 10657 0.4790 +6477 10869 0.9790 +6477 10987 0.4200 +6477 22827 0.4480 +6477 22924 0.6540 +6477 22936 0.7140 +6477 23089 0.7090 +6477 23095 0.4150 +6477 23291 0.4760 +6477 25820 0.5450 +6477 26118 0.4270 +6477 26267 0.4200 +6477 26268 0.4010 +6477 26330 0.5540 +6477 26524 0.4620 +6477 27101 0.9990 +6477 27125 0.6740 +6477 28996 0.9420 +6477 51132 0.4520 +6477 51176 0.5200 +6477 51806 0.5020 +6477 54583 0.6230 +6477 55643 0.5060 +6477 55753 0.4290 +6477 56998 0.7240 +6477 57630 0.4220 +6477 57674 0.4200 +6477 79188 0.4290 +6477 79594 0.4990 +6477 79718 0.5200 +6477 81603 0.5360 +6477 91860 0.4950 +6477 92259 0.5910 +6477 112398 0.8760 +6477 112399 0.8760 +6477 123811 0.4320 +6477 126306 0.5240 +6477 133482 0.5160 +6477 160622 0.5220 +6477 163688 0.4950 +6477 200933 0.7560 +6477 353116 0.5140 +6477 729233 0.6200 +6477 729250 0.4200 +6478 6622 0.8990 +6478 6855 0.6920 +6478 6921 0.4210 +6478 7159 0.4300 +6478 7186 0.4020 +6478 7297 0.4190 +6478 7311 0.5010 +6478 7314 0.5900 +6478 7316 0.5500 +6478 7321 0.7260 +6478 7322 0.8080 +6478 7323 0.7220 +6478 7329 0.6190 +6478 7334 0.6930 +6478 7336 0.8110 +6478 7428 0.7340 +6478 7791 0.6550 +6478 8165 0.8000 +6478 8445 0.5530 +6478 8554 0.6050 +6478 8644 0.6730 +6478 8975 0.9530 +6478 9021 0.4340 +6478 9113 0.4610 +6478 9246 0.8220 +6478 9423 0.5500 +6478 9611 0.5790 +6478 9627 0.8400 +6478 9669 0.5120 +6478 10188 0.4640 +6478 10253 0.4930 +6478 10656 0.6710 +6478 10657 0.5420 +6478 10869 0.6130 +6478 23095 0.4280 +6478 23327 0.5740 +6478 23368 0.4150 +6478 23608 0.4620 +6478 26277 0.7680 +6478 26524 0.9560 +6478 27101 0.6360 +6478 28996 0.8400 +6478 51088 0.4710 +6478 51147 0.4760 +6478 51430 0.4100 +6478 51434 0.4440 +6478 54583 0.8670 +6478 55124 0.4950 +6478 56288 0.4560 +6478 57630 0.6640 +6478 112398 0.9600 +6478 112399 0.9760 +6478 114907 0.4320 +6478 127255 0.4150 +6478 729233 0.6550 +6478 729250 0.4750 +6480 6482 0.4830 +6480 6484 0.4950 +6480 6487 0.4180 +6480 8128 0.4490 +6480 8693 0.4220 +6480 8702 0.4090 +6480 8703 0.9450 +6480 8704 0.9520 +6480 9334 0.4370 +6480 10071 0.4050 +6480 10086 0.4910 +6480 10239 0.4790 +6480 10317 0.4230 +6480 10331 0.4630 +6480 10363 0.4810 +6480 10402 0.4120 +6480 10559 0.4970 +6480 10678 0.5870 +6480 10690 0.5040 +6480 10825 0.5070 +6480 11226 0.4490 +6480 11282 0.5280 +6480 11320 0.5180 +6480 23509 0.5290 +6480 23621 0.4300 +6480 25839 0.5560 +6480 27036 0.4530 +6480 27090 0.4280 +6480 27180 0.5470 +6480 29071 0.4610 +6480 54187 0.5140 +6480 54623 0.4350 +6480 55204 0.4690 +6480 55907 0.5110 +6480 56667 0.4230 +6480 56913 0.6020 +6480 64921 0.4720 +6480 84620 0.9130 +6480 89790 0.4740 +6480 89858 0.4430 +6480 94025 0.5070 +6480 118430 0.4090 +6480 124872 0.4190 +6480 129807 0.5000 +6480 140453 0.4030 +6480 143662 0.4190 +6480 146664 0.4510 +6480 200958 0.4470 +6480 221527 0.4360 +6480 283358 0.4740 +6480 394263 0.4190 +6480 727897 0.4860 +6480 100049587 0.5070 +6482 6483 0.9080 +6482 6489 0.9340 +6482 7450 0.5420 +6482 8693 0.5070 +6482 8703 0.4260 +6482 8705 0.9420 +6482 8869 0.4390 +6482 9245 0.9570 +6482 9334 0.5110 +6482 10020 0.4090 +6482 10071 0.4720 +6482 10317 0.9410 +6482 10331 0.5190 +6482 10559 0.4980 +6482 10585 0.4650 +6482 10678 0.5160 +6482 10681 0.5210 +6482 10825 0.4840 +6482 11226 0.5200 +6482 11282 0.4240 +6482 27036 0.4070 +6482 27090 0.9410 +6482 29071 0.9640 +6482 30815 0.9300 +6482 51301 0.9570 +6482 54187 0.4510 +6482 55568 0.4010 +6482 55741 0.4070 +6482 55808 0.9340 +6482 56667 0.4870 +6482 56913 0.9730 +6482 63917 0.4950 +6482 64689 0.4800 +6482 64921 0.4070 +6482 81849 0.9280 +6482 84620 0.4020 +6482 93010 0.4030 +6482 94025 0.5460 +6482 118430 0.4090 +6482 129807 0.6290 +6482 140453 0.4290 +6482 143662 0.4950 +6482 166752 0.4650 +6482 192134 0.5690 +6482 200958 0.4890 +6482 256435 0.9350 +6482 338596 0.4110 +6482 394263 0.4740 +6482 654346 0.4130 +6482 727897 0.4520 +6482 728819 0.9240 +6483 6489 0.9340 +6483 7357 0.5100 +6483 7368 0.4220 +6483 8705 0.9740 +6483 8869 0.4740 +6483 9245 0.9360 +6483 9331 0.5120 +6483 9334 0.5690 +6483 10071 0.4740 +6483 10317 0.9470 +6483 10681 0.8350 +6483 10825 0.5060 +6483 27090 0.9360 +6483 27181 0.4020 +6483 29071 0.9370 +6483 30815 0.9270 +6483 51301 0.9580 +6483 53947 0.5420 +6483 54414 0.4910 +6483 55790 0.4320 +6483 55808 0.9230 +6483 56667 0.4720 +6483 56913 0.9490 +6483 81849 0.9200 +6483 84620 0.4380 +6483 94025 0.4770 +6483 118430 0.4090 +6483 118460 0.4040 +6483 129807 0.5950 +6483 140453 0.4030 +6483 143662 0.4880 +6483 200958 0.4900 +6483 256435 0.9250 +6483 284266 0.4140 +6483 394263 0.4390 +6483 727897 0.4310 +6483 728819 0.9090 +6484 7450 0.7590 +6484 8702 0.4620 +6484 8704 0.4600 +6484 8707 0.9330 +6484 8708 0.9310 +6484 8751 0.4750 +6484 9245 0.4080 +6484 9334 0.4140 +6484 10071 0.4060 +6484 10317 0.9330 +6484 10331 0.4930 +6484 10559 0.6000 +6484 10678 0.4940 +6484 10690 0.5650 +6484 10825 0.4780 +6484 10905 0.4490 +6484 11282 0.5660 +6484 11320 0.4300 +6484 27090 0.4140 +6484 28960 0.4070 +6484 29071 0.6170 +6484 51301 0.5430 +6484 55343 0.4150 +6484 55907 0.5740 +6484 56913 0.4830 +6484 57134 0.4710 +6484 79414 0.5930 +6484 79695 0.4470 +6484 84293 0.5060 +6484 94025 0.4840 +6484 118430 0.4090 +6484 129807 0.5040 +6484 140453 0.4210 +6484 143662 0.4050 +6484 149175 0.6420 +6484 200895 0.6650 +6484 200958 0.4580 +6484 338596 0.4410 +6484 727897 0.4790 +6487 8702 0.4740 +6487 8704 0.5820 +6487 8705 0.4470 +6487 8708 0.4610 +6487 9245 0.4150 +6487 9334 0.5150 +6487 10071 0.4160 +6487 10317 0.4750 +6487 10331 0.4440 +6487 10559 0.4880 +6487 10678 0.5310 +6487 10690 0.4920 +6487 10825 0.5450 +6487 11282 0.5150 +6487 11320 0.4510 +6487 27181 0.4480 +6487 30815 0.5300 +6487 51154 0.9040 +6487 51809 0.4270 +6487 55343 0.4700 +6487 56913 0.5250 +6487 84187 0.4210 +6487 91937 0.4350 +6487 94025 0.4900 +6487 118430 0.4090 +6487 129807 0.5470 +6487 140453 0.4230 +6487 143662 0.4050 +6487 146664 0.4020 +6487 374659 0.4320 +6487 400120 0.4220 +6487 440279 0.4080 +6487 727897 0.5530 +6489 7357 0.4980 +6489 8705 0.5740 +6489 8869 0.9820 +6489 9197 0.9010 +6489 9331 0.4940 +6489 9334 0.4500 +6489 9670 0.4080 +6489 10020 0.4680 +6489 10402 0.9520 +6489 10825 0.4320 +6489 22836 0.4890 +6489 23072 0.4430 +6489 27036 0.4170 +6489 29911 0.4260 +6489 30815 0.5630 +6489 51068 0.6170 +6489 54332 0.7690 +6489 54414 0.4380 +6489 55669 0.4400 +6489 55808 0.4060 +6489 56922 0.4240 +6489 64921 0.5970 +6489 84620 0.5480 +6489 89790 0.4350 +6489 129807 0.5120 +6489 136306 0.4190 +6489 146198 0.4550 +6489 256435 0.5500 +6489 257177 0.6690 +6490 6622 0.4630 +6490 6663 0.5610 +6490 6790 0.4570 +6490 7124 0.4790 +6490 7293 0.4480 +6490 7299 0.9890 +6490 7306 0.9100 +6490 7439 0.4320 +6490 7490 0.4480 +6490 9168 0.7610 +6490 10232 0.4460 +6490 10525 0.5510 +6490 10808 0.4060 +6490 23513 0.4950 +6490 23532 0.5770 +6490 23682 0.5030 +6490 25825 0.4480 +6490 29126 0.6030 +6490 30835 0.5830 +6490 50943 0.5070 +6490 51151 0.7530 +6490 51280 0.5110 +6490 51438 0.5290 +6490 79083 0.5060 +6490 80380 0.4350 +6490 80381 0.4530 +6490 81557 0.6900 +6490 84868 0.4790 +6490 126321 0.4280 +6490 168400 0.4160 +6490 266740 0.6310 +6490 283652 0.6950 +6490 645073 0.4540 +6490 728239 0.6920 +6491 6790 0.5300 +6491 6886 0.8270 +6491 7153 0.4760 +6491 7272 0.6620 +6491 7283 0.6120 +6491 8438 0.4180 +6491 8481 0.4790 +6491 8823 0.4570 +6491 8945 0.6890 +6491 9055 0.4870 +6491 9133 0.4640 +6491 9156 0.4110 +6491 9212 0.4540 +6491 9319 0.5120 +6491 9493 0.5490 +6491 9662 0.9630 +6491 9696 0.4490 +6491 9700 0.6220 +6491 9735 0.4620 +6491 9738 0.6250 +6491 9787 0.5170 +6491 9824 0.4100 +6491 9833 0.8190 +6491 9837 0.4290 +6491 9918 0.4680 +6491 9928 0.7770 +6491 10112 0.5280 +6491 10403 0.5130 +6491 10592 0.4320 +6491 10615 0.4670 +6491 10635 0.5220 +6491 10721 0.7840 +6491 10733 0.9990 +6491 11004 0.5810 +6491 22897 0.5460 +6491 22974 0.5770 +6491 22994 0.4310 +6491 22995 0.9790 +6491 23141 0.5220 +6491 23397 0.4800 +6491 24137 0.5350 +6491 25886 0.4870 +6491 25914 0.8500 +6491 26005 0.4190 +6491 26281 0.4570 +6491 29127 0.4170 +6491 30012 0.4180 +6491 51175 0.4940 +6491 51199 0.5190 +6491 51203 0.4870 +6491 51514 0.4520 +6491 54820 0.5650 +6491 54821 0.5060 +6491 54875 0.5760 +6491 54892 0.5990 +6491 55010 0.5070 +6491 55125 0.9100 +6491 55143 0.4630 +6491 55165 0.5590 +6491 55215 0.4500 +6491 55355 0.4730 +6491 55388 0.5760 +6491 55591 0.4080 +6491 55635 0.5060 +6491 55755 0.9450 +6491 55789 0.4640 +6491 55835 0.9940 +6491 56992 0.5520 +6491 57082 0.6110 +6491 57758 0.4090 +6491 60386 0.4720 +6491 63925 0.6360 +6491 64151 0.7080 +6491 64770 0.5190 +6491 64793 0.8450 +6491 79000 0.4220 +6491 79598 0.4500 +6491 79648 0.9320 +6491 79733 0.4310 +6491 79801 0.4930 +6491 79807 0.4480 +6491 79959 0.5690 +6491 81930 0.6470 +6491 83461 0.5260 +6491 83540 0.6060 +6491 84461 0.5370 +6491 84879 0.4120 +6491 85378 0.4460 +6491 85459 0.5340 +6491 90381 0.4300 +6491 113130 0.4040 +6491 116840 0.6300 +6491 121441 0.5510 +6491 134359 0.5570 +6491 140290 0.6310 +6491 150468 0.4660 +6491 152185 0.5370 +6491 153241 0.6170 +6491 157570 0.4720 +6491 159989 0.6430 +6491 163786 0.9960 +6491 220042 0.4280 +6491 221150 0.4630 +6491 221908 0.6120 +6491 259266 0.9720 +6491 282809 0.5050 +6491 284403 0.8580 +6491 285331 0.5700 +6492 6496 0.4010 +6492 6612 0.4250 +6492 6638 0.4520 +6492 6911 0.4510 +6492 7080 0.4340 +6492 7200 0.6730 +6492 7431 0.4320 +6492 7690 0.4160 +6492 8554 0.4750 +6492 9500 0.4500 +6492 9915 0.9790 +6492 10055 0.4490 +6492 23440 0.8630 +6492 25970 0.5220 +6492 27023 0.4230 +6492 30012 0.4680 +6492 56956 0.4150 +6492 57084 0.4460 +6492 64211 0.4390 +6492 84539 0.8200 +6492 112609 0.5630 +6492 120237 0.5390 +6492 140679 0.6220 +6492 338917 0.4970 +6493 6496 0.5030 +6493 6612 0.4930 +6493 6613 0.4440 +6493 7200 0.4660 +6493 7341 0.4480 +6493 8554 0.5080 +6493 9500 0.4250 +6493 9915 0.9040 +6493 23440 0.5820 +6493 25820 0.4010 +6493 79875 0.5380 +6493 85363 0.4420 +6493 139628 0.6260 +6493 266743 0.5110 +6493 342979 0.4090 +6494 7534 0.4370 +6494 8291 0.4170 +6494 8568 0.5230 +6494 23076 0.7730 +6494 23092 0.5020 +6494 23094 0.6420 +6494 23233 0.4290 +6494 23476 0.7530 +6494 23526 0.4920 +6494 25780 0.4100 +6494 57568 0.6590 +6494 80198 0.4370 +6494 254122 0.4200 +6494 256364 0.4550 +6494 399909 0.4260 +6495 6591 0.7140 +6495 6615 0.4820 +6495 6657 0.5540 +6495 6658 0.4700 +6495 6662 0.4830 +6495 6663 0.4480 +6495 6899 0.4480 +6495 7140 0.4290 +6495 7291 0.4850 +6495 7430 0.5560 +6495 7490 0.5690 +6495 7545 0.4130 +6495 7849 0.5180 +6495 8092 0.4330 +6495 8202 0.7190 +6495 8522 0.4460 +6495 9096 0.4120 +6495 9247 0.4050 +6495 9464 0.5070 +6495 9839 0.4330 +6495 10367 0.4240 +6495 10660 0.7230 +6495 11143 0.7290 +6495 51804 0.6220 +6495 54361 0.4040 +6495 54499 0.6200 +6495 54510 0.4150 +6495 55133 0.6060 +6495 57381 0.4900 +6495 64641 0.6170 +6495 116039 0.5880 +6495 117154 0.4940 +6495 117581 0.4320 +6495 139285 0.4340 +6495 220202 0.5510 +6496 6656 0.6150 +6496 6657 0.6150 +6496 6658 0.5390 +6496 6662 0.4360 +6496 6663 0.4290 +6496 6664 0.4560 +6496 6900 0.4060 +6496 7050 0.6650 +6496 7080 0.5570 +6496 7088 0.5000 +6496 7471 0.4580 +6496 7479 0.4500 +6496 7545 0.4020 +6496 7546 0.9350 +6496 7855 0.4260 +6496 8013 0.8000 +6496 8022 0.4560 +6496 8403 0.4310 +6496 8646 0.4270 +6496 8820 0.5710 +6496 8928 0.4150 +6496 9355 0.7630 +6496 10586 0.4100 +6496 10660 0.5460 +6496 10736 0.4210 +6496 10763 0.4520 +6496 11023 0.6220 +6496 22943 0.4120 +6496 23028 0.4510 +6496 23440 0.6350 +6496 25806 0.6450 +6496 26468 0.4050 +6496 30062 0.5560 +6496 50937 0.4570 +6496 51053 0.8480 +6496 51176 0.4810 +6496 55079 0.4540 +6496 57504 0.5200 +6496 58158 0.4550 +6496 63973 0.4560 +6496 64211 0.4940 +6496 79190 0.7160 +6496 79191 0.7000 +6496 80232 0.4930 +6496 80712 0.4790 +6496 81620 0.7560 +6496 84504 0.4130 +6496 84976 0.9100 +6496 127343 0.4150 +6496 170825 0.4800 +6496 220202 0.6220 +6496 338917 0.8670 +6496 389549 0.4380 +6496 431707 0.4110 +6497 6498 0.9160 +6497 7046 0.4990 +6497 7161 0.4190 +6497 7170 0.4240 +6497 7311 0.4990 +6497 7314 0.5240 +6497 7316 0.5250 +6497 8841 0.7470 +6497 9611 0.9470 +6497 9612 0.7060 +6497 22938 0.8330 +6497 25942 0.7770 +6497 28996 0.4460 +6497 54778 0.8640 +6497 55656 0.4740 +6497 57190 0.6010 +6497 63976 0.4340 +6497 64750 0.7140 +6497 64795 0.5860 +6497 80232 0.4600 +6498 6885 0.4710 +6498 7040 0.5100 +6498 7043 0.5270 +6498 7046 0.7360 +6498 7048 0.4900 +6498 7050 0.6490 +6498 7311 0.4990 +6498 7314 0.5270 +6498 7316 0.5270 +6498 8312 0.4290 +6498 8554 0.4380 +6498 8697 0.5070 +6498 8928 0.6370 +6498 9372 0.6590 +6498 9611 0.9360 +6498 9612 0.6970 +6498 10468 0.4290 +6498 10979 0.4220 +6498 11059 0.5090 +6498 22938 0.5450 +6498 23140 0.4730 +6498 23174 0.4380 +6498 25942 0.6200 +6498 27250 0.4980 +6498 29102 0.4220 +6498 51343 0.4970 +6498 51592 0.7880 +6498 54778 0.9650 +6498 55656 0.4740 +6498 56937 0.4420 +6498 57154 0.5950 +6498 64750 0.8870 +6498 130399 0.4310 +6498 284612 0.4880 +6498 340260 0.4220 +6498 494470 0.4090 +6499 6774 0.4210 +6499 6832 0.6560 +6499 6950 0.5110 +6499 7046 0.4570 +6499 7157 0.4360 +6499 7203 0.5270 +6499 7919 0.4490 +6499 7936 0.7230 +6499 8237 0.4360 +6499 8449 0.5960 +6499 8602 0.4280 +6499 8841 0.4180 +6499 8859 0.9160 +6499 9045 0.4300 +6499 9125 0.6130 +6499 9277 0.4510 +6499 9349 0.4450 +6499 9374 0.4300 +6499 9416 0.6130 +6499 9652 0.9990 +6499 9724 0.4550 +6499 9732 0.4810 +6499 9785 0.6850 +6499 9790 0.4630 +6499 9879 0.5290 +6499 10153 0.4560 +6499 10179 0.4850 +6499 10238 0.4050 +6499 10399 0.8910 +6499 10438 0.7540 +6499 10526 0.4880 +6499 10528 0.5970 +6499 10564 0.4230 +6499 10574 0.6510 +6499 10575 0.5110 +6499 10576 0.5100 +6499 10607 0.5080 +6499 10693 0.5070 +6499 10694 0.5690 +6499 10767 0.8960 +6499 10813 0.5000 +6499 10885 0.5590 +6499 10914 0.5470 +6499 11044 0.7130 +6499 11224 0.4410 +6499 11231 0.6230 +6499 11328 0.4620 +6499 11340 0.9360 +6499 22803 0.8710 +6499 22894 0.8760 +6499 22948 0.5150 +6499 22984 0.5490 +6499 23016 0.9460 +6499 23020 0.4830 +6499 23204 0.4030 +6499 23404 0.8380 +6499 23481 0.4680 +6499 23521 0.4220 +6499 23560 0.4550 +6499 23586 0.4420 +6499 23774 0.4310 +6499 25873 0.4290 +6499 26019 0.5050 +6499 26046 0.5870 +6499 26155 0.4110 +6499 26330 0.4200 +6499 26985 0.4100 +6499 27257 0.6960 +6499 29997 0.6930 +6499 51010 0.9460 +6499 51013 0.9600 +6499 51065 0.4260 +6499 51096 0.6230 +6499 51121 0.4220 +6499 51149 0.4330 +6499 51319 0.5190 +6499 51592 0.4260 +6499 51602 0.4210 +6499 53918 0.5100 +6499 54461 0.4260 +6499 54464 0.9390 +6499 54505 0.5400 +6499 54512 0.9630 +6499 54914 0.4950 +6499 55135 0.4460 +6499 55173 0.4320 +6499 55226 0.5000 +6499 55596 0.5050 +6499 55612 0.5170 +6499 56903 0.5450 +6499 56915 0.9460 +6499 57050 0.4180 +6499 57062 0.4940 +6499 57217 0.4430 +6499 57477 0.4010 +6499 63971 0.4520 +6499 64282 0.6190 +6499 64895 0.5420 +6499 64969 0.4210 +6499 65083 0.4770 +6499 79050 0.4600 +6499 80153 0.4370 +6499 80349 0.9990 +6499 83743 0.4140 +6499 83752 0.4450 +6499 84128 0.4020 +6499 84153 0.5180 +6499 84154 0.4600 +6499 84186 0.7690 +6499 84261 0.4250 +6499 84916 0.4410 +6499 85441 0.4440 +6499 87178 0.4160 +6499 90850 0.4860 +6499 90957 0.4070 +6499 93643 0.5740 +6499 114987 0.7860 +6499 115752 0.6740 +6499 116832 0.4550 +6499 118460 0.9430 +6499 129563 0.5810 +6499 140801 0.4330 +6499 167227 0.7600 +6499 170506 0.4790 +6499 196441 0.7270 +6499 221527 0.4580 +6499 254268 0.4460 +6499 347487 0.4300 +6499 387715 0.6010 +6499 100529239 0.5390 +6500 6502 0.9990 +6500 6613 0.7050 +6500 6622 0.4900 +6500 6625 0.4250 +6500 6662 0.4350 +6500 6727 0.4220 +6500 6737 0.6760 +6500 6767 0.4830 +6500 6772 0.5610 +6500 6790 0.6920 +6500 6815 0.5600 +6500 6885 0.4560 +6500 6907 0.9690 +6500 6921 0.9360 +6500 6923 0.9310 +6500 6924 0.4950 +6500 7013 0.4120 +6500 7027 0.5560 +6500 7029 0.5300 +6500 7157 0.8120 +6500 7311 0.9540 +6500 7314 0.9640 +6500 7316 0.9800 +6500 7317 0.6410 +6500 7318 0.4380 +6500 7320 0.5510 +6500 7321 0.9730 +6500 7322 0.9890 +6500 7323 0.8620 +6500 7326 0.5050 +6500 7328 0.4840 +6500 7329 0.4520 +6500 7332 0.5600 +6500 7334 0.6020 +6500 7335 0.4010 +6500 7336 0.4430 +6500 7337 0.5870 +6500 7341 0.5860 +6500 7398 0.4950 +6500 7415 0.5020 +6500 7428 0.6200 +6500 7465 0.5450 +6500 7529 0.4530 +6500 7531 0.4740 +6500 7532 0.7250 +6500 7534 0.5650 +6500 7874 0.8380 +6500 7884 0.4440 +6500 7975 0.5830 +6500 7979 0.4490 +6500 8028 0.6550 +6500 8065 0.8620 +6500 8266 0.4440 +6500 8290 0.4030 +6500 8295 0.8840 +6500 8312 0.7850 +6500 8318 0.6270 +6500 8356 0.4110 +6500 8361 0.5950 +6500 8405 0.4310 +6500 8450 0.8120 +6500 8451 0.9130 +6500 8452 0.9680 +6500 8453 0.9760 +6500 8454 0.9990 +6500 8517 0.6320 +6500 8566 0.6040 +6500 8638 0.4170 +6500 8665 0.4270 +6500 8697 0.4460 +6500 8850 0.6140 +6500 8863 0.9160 +6500 8864 0.9180 +6500 8881 0.4020 +6500 8883 0.7820 +6500 8900 0.9820 +6500 8914 0.5290 +6500 8945 0.9990 +6500 9020 0.5080 +6500 9039 0.8780 +6500 9040 0.8880 +6500 9134 0.9270 +6500 9200 0.5380 +6500 9212 0.5430 +6500 9213 0.4450 +6500 9320 0.4240 +6500 9491 0.6470 +6500 9531 0.4560 +6500 9604 0.4010 +6500 9616 0.9920 +6500 9636 0.5160 +6500 9646 0.4770 +6500 9682 0.5040 +6500 9788 0.4270 +6500 9794 0.6100 +6500 9817 0.8860 +6500 9837 0.4320 +6500 9861 0.5380 +6500 9978 0.9990 +6500 10046 0.5230 +6500 10075 0.4280 +6500 10138 0.9270 +6500 10153 0.4530 +6500 10197 0.6620 +6500 10213 0.7270 +6500 10273 0.5650 +6500 10297 0.9000 +6500 10393 0.4680 +6500 10477 0.4320 +6500 10517 0.8690 +6500 10521 0.5120 +6500 10537 0.5160 +6500 10602 0.9770 +6500 10626 0.5430 +6500 10640 0.7190 +6500 10642 0.4070 +6500 10728 0.6560 +6500 10733 0.4550 +6500 10769 0.5430 +6500 10910 0.9930 +6500 10920 0.5020 +6500 10923 0.6400 +6500 10933 0.5020 +6500 10944 0.8660 +6500 10963 0.6500 +6500 10980 0.6090 +6500 10987 0.8800 +6500 10988 0.7110 +6500 11065 0.4470 +6500 11124 0.6670 +6500 11140 0.4050 +6500 11146 0.9600 +6500 11169 0.5390 +6500 11184 0.5650 +6500 22938 0.5910 +6500 22992 0.9790 +6500 23014 0.9760 +6500 23057 0.4540 +6500 23066 0.4760 +6500 23077 0.8940 +6500 23113 0.6140 +6500 23194 0.9930 +6500 23198 0.4730 +6500 23219 0.9430 +6500 23264 0.5280 +6500 23291 0.9990 +6500 23312 0.6540 +6500 23327 0.5270 +6500 23331 0.5160 +6500 23363 0.4280 +6500 23403 0.9100 +6500 23429 0.9810 +6500 23462 0.9910 +6500 23567 0.8410 +6500 25777 0.5410 +6500 25793 0.9970 +6500 25820 0.8980 +6500 25827 0.9960 +6500 26043 0.5960 +6500 26190 0.9880 +6500 26224 0.9990 +6500 26232 0.9970 +6500 26233 0.9440 +6500 26234 0.9990 +6500 26235 0.9490 +6500 26259 0.9990 +6500 26260 0.9780 +6500 26261 0.7890 +6500 26263 0.9990 +6500 26267 0.8480 +6500 26268 0.9940 +6500 26269 0.7840 +6500 26270 0.9930 +6500 26271 0.9970 +6500 26272 0.9990 +6500 26273 0.9940 +6500 27101 0.9990 +6500 27185 0.8000 +6500 27338 0.8010 +6500 29066 0.5230 +6500 29110 0.4270 +6500 29978 0.4890 +6500 29979 0.5680 +6500 51138 0.5690 +6500 51176 0.4610 +6500 51185 0.5800 +6500 51224 0.5160 +6500 51343 0.7210 +6500 51433 0.4330 +6500 51495 0.5450 +6500 51514 0.4460 +6500 51529 0.6630 +6500 51530 0.9630 +6500 51619 0.8460 +6500 51659 0.4530 +6500 51684 0.5300 +6500 51725 0.8470 +6500 54165 0.4290 +6500 54432 0.4820 +6500 54442 0.4730 +6500 54455 0.8980 +6500 54461 0.9980 +6500 54708 0.4240 +6500 54850 0.9900 +6500 54880 0.8990 +6500 54926 0.6360 +6500 54962 0.4880 +6500 54970 0.5160 +6500 55030 0.7590 +6500 55236 0.4340 +6500 55294 0.9990 +6500 55336 0.9720 +6500 55534 0.6010 +6500 55832 0.9740 +6500 56893 0.4010 +6500 57332 0.4240 +6500 57448 0.5660 +6500 57646 0.4270 +6500 57695 0.6550 +6500 59349 0.4920 +6500 63035 0.9660 +6500 64319 0.4390 +6500 64400 0.4120 +6500 64682 0.5010 +6500 64785 0.4400 +6500 64839 0.9980 +6500 79155 0.5830 +6500 79641 0.6070 +6500 79718 0.9620 +6500 79791 0.9960 +6500 79866 0.6700 +6500 80028 0.9740 +6500 80204 0.9910 +6500 80227 0.4900 +6500 81545 0.5860 +6500 81620 0.6140 +6500 81624 0.4900 +6500 81669 0.5470 +6500 83461 0.8680 +6500 83987 0.5280 +6500 84085 0.8810 +6500 84231 0.5250 +6500 84261 0.9990 +6500 84296 0.5300 +6500 84333 0.4220 +6500 84441 0.6020 +6500 84444 0.6370 +6500 84678 0.9990 +6500 84759 0.9980 +6500 84823 0.4350 +6500 84893 0.9990 +6500 84961 0.8910 +6500 90665 0.9280 +6500 91703 0.4140 +6500 93550 0.4400 +6500 93611 0.9910 +6500 112398 0.4540 +6500 112399 0.4580 +6500 114907 0.9720 +6500 115290 0.9790 +6500 122706 0.5000 +6500 123879 0.5270 +6500 126133 0.4470 +6500 126433 0.9710 +6500 130888 0.8180 +6500 133482 0.6100 +6500 139285 0.7170 +6500 140735 0.4240 +6500 140739 0.4880 +6500 143384 0.6750 +6500 143471 0.5240 +6500 144699 0.9580 +6500 146330 0.9650 +6500 150726 0.8430 +6500 157574 0.9980 +6500 162517 0.6820 +6500 164153 0.4170 +6500 171222 0.8410 +6500 196394 0.4800 +6500 197131 0.4060 +6500 200933 0.9990 +6500 201456 0.9980 +6500 201562 0.5450 +6500 221302 0.4740 +6500 222235 0.9300 +6500 254170 0.7360 +6500 283237 0.5200 +6500 283807 0.9650 +6500 285231 0.8410 +6500 286151 0.9660 +6500 286187 0.5350 +6500 342897 0.4090 +6500 349136 0.5120 +6500 374286 0.5120 +6500 375743 0.9240 +6500 387893 0.4680 +6500 401494 0.5380 +6500 440093 0.4030 +6500 440686 0.4030 +6500 494188 0.5940 +6500 653604 0.4080 +6502 6667 0.4140 +6502 6737 0.4120 +6502 6772 0.5810 +6502 6790 0.5340 +6502 6921 0.8190 +6502 6923 0.8200 +6502 6929 0.5660 +6502 7027 0.6850 +6502 7029 0.5870 +6502 7157 0.7160 +6502 7291 0.4660 +6502 7311 0.9020 +6502 7314 0.9250 +6502 7316 0.9150 +6502 7317 0.4060 +6502 7321 0.6720 +6502 7323 0.4850 +6502 7324 0.5760 +6502 7332 0.4940 +6502 7353 0.9410 +6502 7428 0.4540 +6502 7465 0.7490 +6502 7520 0.4470 +6502 7704 0.4070 +6502 7832 0.5910 +6502 7849 0.4920 +6502 7874 0.5330 +6502 7942 0.4830 +6502 7975 0.5020 +6502 8065 0.8220 +6502 8317 0.5310 +6502 8318 0.5850 +6502 8405 0.4840 +6502 8409 0.4570 +6502 8450 0.5950 +6502 8451 0.8490 +6502 8452 0.7290 +6502 8453 0.9020 +6502 8454 0.9990 +6502 8555 0.6180 +6502 8607 0.6510 +6502 8678 0.5970 +6502 8697 0.5790 +6502 8850 0.4630 +6502 8878 0.4650 +6502 8881 0.5380 +6502 8883 0.6660 +6502 8900 0.9990 +6502 8945 0.9980 +6502 8975 0.8440 +6502 9039 0.7980 +6502 9040 0.7700 +6502 9063 0.6440 +6502 9088 0.5830 +6502 9097 0.6350 +6502 9099 0.4560 +6502 9133 0.4760 +6502 9134 0.9530 +6502 9156 0.4420 +6502 9212 0.6930 +6502 9232 0.4550 +6502 9319 0.4980 +6502 9474 0.4900 +6502 9491 0.5600 +6502 9493 0.5950 +6502 9616 0.5960 +6502 9682 0.4790 +6502 9861 0.4710 +6502 9978 0.9990 +6502 10036 0.5440 +6502 10075 0.4220 +6502 10140 0.5400 +6502 10197 0.5640 +6502 10213 0.7070 +6502 10241 0.5550 +6502 10273 0.5650 +6502 10325 0.9050 +6502 10393 0.6100 +6502 10413 0.4320 +6502 10498 0.5860 +6502 10670 0.9150 +6502 10733 0.4740 +6502 10744 0.4160 +6502 10856 0.6420 +6502 10980 0.6320 +6502 10987 0.7660 +6502 11065 0.8060 +6502 11146 0.4690 +6502 11186 0.6230 +6502 11200 0.5210 +6502 11266 0.4940 +6502 11274 0.8510 +6502 22933 0.4580 +6502 22992 0.7130 +6502 23219 0.4680 +6502 23291 0.9800 +6502 23410 0.6250 +6502 23633 0.5520 +6502 25793 0.5260 +6502 25820 0.8340 +6502 25898 0.4200 +6502 25906 0.5280 +6502 26133 0.5190 +6502 26190 0.6680 +6502 26224 0.6290 +6502 26232 0.9520 +6502 26234 0.5780 +6502 26259 0.8850 +6502 26269 0.5300 +6502 26270 0.6360 +6502 26271 0.6480 +6502 26272 0.9580 +6502 26273 0.4150 +6502 26524 0.4360 +6502 27161 0.4040 +6502 27250 0.4780 +6502 27338 0.7540 +6502 29028 0.5260 +6502 29127 0.5500 +6502 29128 0.4260 +6502 29882 0.5420 +6502 29945 0.4250 +6502 51343 0.9600 +6502 51433 0.5120 +6502 51434 0.4610 +6502 51514 0.6800 +6502 51529 0.5130 +6502 51582 0.4370 +6502 54556 0.4070 +6502 55165 0.4960 +6502 55294 0.9910 +6502 55388 0.4680 +6502 55635 0.4660 +6502 55658 0.4400 +6502 55832 0.9030 +6502 56957 0.4510 +6502 57093 0.5910 +6502 57178 0.4370 +6502 57646 0.4370 +6502 63891 0.4720 +6502 63967 0.4380 +6502 64682 0.5450 +6502 64839 0.6400 +6502 79872 0.4640 +6502 79968 0.4050 +6502 80028 0.4800 +6502 80344 0.4230 +6502 81620 0.9770 +6502 81669 0.8800 +6502 83695 0.4070 +6502 84260 0.4050 +6502 93611 0.4670 +6502 119504 0.5400 +6502 123879 0.6940 +6502 133482 0.4630 +6502 140462 0.4180 +6502 144699 0.4160 +6502 171222 0.8170 +6502 200933 0.4050 +6502 222229 0.5620 +6502 245711 0.4410 +6502 246184 0.4350 +6502 387103 0.4440 +6503 6850 0.4660 +6503 7038 0.4530 +6503 7096 0.4030 +6503 7097 0.4440 +6503 7305 0.4260 +6503 7409 0.5280 +6503 7454 0.5220 +6503 7535 0.4350 +6503 7805 0.4400 +6503 7871 0.9030 +6503 8698 0.4160 +6503 9332 0.4040 +6503 9595 0.4690 +6503 9938 0.4280 +6503 10059 0.4970 +6503 10499 0.4970 +6503 11151 0.6900 +6503 30011 0.4410 +6503 54440 0.4100 +6503 55655 0.8530 +6503 89846 0.4220 +6503 113174 0.4750 +6504 6614 0.5810 +6504 6688 0.5080 +6504 6693 0.5210 +6504 6714 0.6150 +6504 7010 0.4070 +6504 7037 0.5320 +6504 7066 0.5460 +6504 7070 0.4420 +6504 7100 0.5280 +6504 7124 0.5220 +6504 7157 0.4210 +6504 7293 0.4610 +6504 7405 0.6080 +6504 7409 0.6400 +6504 7412 0.5780 +6504 7535 0.4310 +6504 7704 0.4570 +6504 7852 0.4710 +6504 8600 0.4230 +6504 8639 0.5910 +6504 8678 0.9630 +6504 8832 0.6730 +6504 9046 0.5420 +6504 9437 0.7050 +6504 9595 0.4060 +6504 10320 0.4190 +6504 10538 0.4420 +6504 10544 0.5780 +6504 10666 0.5190 +6504 10803 0.5350 +6504 10870 0.4200 +6504 22914 0.4940 +6504 23308 0.4140 +6504 27036 0.5710 +6504 27180 0.6070 +6504 27181 0.5520 +6504 29851 0.6870 +6504 30009 0.5740 +6504 30816 0.5950 +6504 30849 0.6430 +6504 50615 0.4580 +6504 50943 0.4420 +6504 51744 0.6610 +6504 55333 0.6710 +6504 56833 0.5790 +6504 57823 0.7520 +6504 80381 0.5720 +6504 81607 0.8480 +6504 89886 0.4450 +6504 114836 0.9770 +6504 117157 0.9150 +6504 117289 0.4020 +6504 151888 0.5710 +6504 152273 0.4070 +6504 259197 0.4440 +6504 340351 0.4250 +6504 100133941 0.6210 +6504 100532731 0.4560 +6505 6508 0.5540 +6505 6511 0.9430 +6505 6513 0.5590 +6505 6514 0.5380 +6505 6515 0.4490 +6505 6518 0.4910 +6505 6519 0.7620 +6505 6520 0.6170 +6505 6523 0.6770 +6505 6529 0.6390 +6505 6531 0.4720 +6505 6532 0.4880 +6505 6533 0.4680 +6505 6538 0.5100 +6505 6539 0.4240 +6505 6540 0.4810 +6505 6541 0.6220 +6505 6542 0.5570 +6505 6545 0.4470 +6505 6564 0.7360 +6505 6565 0.4540 +6505 6574 0.4470 +6505 6575 0.4120 +6505 6647 0.5080 +6505 8140 0.6550 +6505 8671 0.5860 +6505 8777 0.6690 +6505 9056 0.6440 +6505 9057 0.6340 +6505 9058 0.5050 +6505 9497 0.4630 +6505 9498 0.5480 +6505 10550 0.9550 +6505 10991 0.5010 +6505 11136 0.6400 +6505 11254 0.5150 +6505 23428 0.5260 +6505 23435 0.4440 +6505 23657 0.6140 +6505 26050 0.4310 +6505 26526 0.4790 +6505 54407 0.6330 +6505 55089 0.5530 +6505 55117 0.4320 +6505 55238 0.4070 +6505 56301 0.4620 +6505 57030 0.5670 +6505 57084 0.5000 +6505 58512 0.7480 +6505 58524 0.4040 +6505 64849 0.4010 +6505 81539 0.5780 +6505 84708 0.6180 +6505 115584 0.4740 +6505 124935 0.5690 +6505 125206 0.5110 +6505 140679 0.5060 +6505 153129 0.4140 +6505 153201 0.4140 +6505 154091 0.4640 +6505 157724 0.4280 +6505 169522 0.6070 +6505 169792 0.7200 +6505 206358 0.4600 +6505 246213 0.4970 +6505 340024 0.6860 +6505 400961 0.7610 +6506 6507 0.9190 +6506 6513 0.5640 +6506 6514 0.4160 +6506 6515 0.4060 +6506 6519 0.4680 +6506 6520 0.7050 +6506 6529 0.7160 +6506 6531 0.5400 +6506 6532 0.4170 +6506 6535 0.5650 +6506 6538 0.6700 +6506 6539 0.4660 +6506 6540 0.6250 +6506 6541 0.4510 +6506 6558 0.4830 +6506 6564 0.4660 +6506 6566 0.4010 +6506 6616 0.6020 +6506 6622 0.8120 +6506 6647 0.7310 +6506 6853 0.5110 +6506 6855 0.5150 +6506 6857 0.4540 +6506 6863 0.4030 +6506 7054 0.4750 +6506 7124 0.4510 +6506 7314 0.4520 +6506 7417 0.4240 +6506 7419 0.4080 +6506 7431 0.6160 +6506 8140 0.5100 +6506 8404 0.4450 +6506 8604 0.5600 +6506 8988 0.4910 +6506 9057 0.4530 +6506 9152 0.4930 +6506 9208 0.6330 +6506 9341 0.4750 +6506 9563 0.5280 +6506 9568 0.6310 +6506 9896 0.4440 +6506 9973 0.4140 +6506 10215 0.5030 +6506 10618 0.4060 +6506 10763 0.4480 +6506 10804 0.6030 +6506 10840 0.7550 +6506 10991 0.5720 +6506 11075 0.5250 +6506 11136 0.4040 +6506 11254 0.4150 +6506 23428 0.4610 +6506 23435 0.7190 +6506 23657 0.7030 +6506 25891 0.7370 +6506 25897 0.4050 +6506 26960 0.4270 +6506 27165 0.4660 +6506 29997 0.5060 +6506 50861 0.4030 +6506 54407 0.5910 +6506 54998 0.4160 +6506 55089 0.4310 +6506 55117 0.4060 +6506 55697 0.4240 +6506 57030 0.8330 +6506 57084 0.7860 +6506 57468 0.5450 +6506 63826 0.4060 +6506 64849 0.4060 +6506 79751 0.4370 +6506 81539 0.5110 +6506 81551 0.5070 +6506 84894 0.4620 +6506 92140 0.6000 +6506 92745 0.4350 +6506 116443 0.4710 +6506 132204 0.4450 +6506 140679 0.7590 +6506 146713 0.6370 +6506 200576 0.4570 +6506 203228 0.4460 +6506 220296 0.4560 +6506 246213 0.4820 +6507 6508 0.5390 +6507 6513 0.5490 +6507 6519 0.5130 +6507 6520 0.6000 +6507 6529 0.6680 +6507 6531 0.4130 +6507 6538 0.6260 +6507 6540 0.6090 +6507 6541 0.4560 +6507 6542 0.4030 +6507 6558 0.4630 +6507 6564 0.5110 +6507 6616 0.5050 +6507 6657 0.5300 +6507 6662 0.4320 +6507 6804 0.4770 +6507 6812 0.4680 +6507 6833 0.5200 +6507 6853 0.4690 +6507 6855 0.4370 +6507 6857 0.6300 +6507 7430 0.4870 +6507 7431 0.4590 +6507 7941 0.4120 +6507 8140 0.5580 +6507 8320 0.4310 +6507 8404 0.4440 +6507 8604 0.4060 +6507 8671 0.6000 +6507 9057 0.5240 +6507 9145 0.4370 +6507 9351 0.4810 +6507 9497 0.4220 +6507 9498 0.5340 +6507 9631 0.6710 +6507 10215 0.6250 +6507 10716 0.4470 +6507 10763 0.7450 +6507 10804 0.6050 +6507 10840 0.7810 +6507 10991 0.7630 +6507 11075 0.4320 +6507 11136 0.4120 +6507 22895 0.4390 +6507 23176 0.4770 +6507 23428 0.5180 +6507 23657 0.5760 +6507 25836 0.4700 +6507 26526 0.5060 +6507 29997 0.4890 +6507 54407 0.5050 +6507 54795 0.4500 +6507 55089 0.4610 +6507 55100 0.6970 +6507 55117 0.4260 +6507 56301 0.4200 +6507 57030 0.6590 +6507 57084 0.5790 +6507 57468 0.4300 +6507 63973 0.4300 +6507 65250 0.6570 +6507 79012 0.4750 +6507 81539 0.5000 +6507 92140 0.4680 +6507 92745 0.6300 +6507 112476 0.4110 +6507 116443 0.4290 +6507 116448 0.4930 +6507 140679 0.5800 +6507 146713 0.6150 +6507 220296 0.4410 +6507 246213 0.4970 +6507 340024 0.4540 +6507 388585 0.4440 +6508 6548 0.4760 +6508 6553 0.4290 +6508 6558 0.4930 +6508 10567 0.4710 +6508 10768 0.5670 +6508 23632 0.4480 +6508 25953 0.5980 +6508 55515 0.6400 +6508 65010 0.6200 +6508 115019 0.5810 +6508 115111 0.4750 +6508 126364 0.4030 +6508 284129 0.6430 +6508 286343 0.4680 +6508 768206 0.5990 +6509 6510 0.6540 +6509 6513 0.4870 +6509 6519 0.5820 +6509 6520 0.7250 +6509 6523 0.5350 +6509 6536 0.5900 +6509 6541 0.7520 +6509 6542 0.4790 +6509 6545 0.4580 +6509 6564 0.5310 +6509 6565 0.4140 +6509 8140 0.6710 +6509 8501 0.4200 +6509 8884 0.4610 +6509 9056 0.5890 +6509 9057 0.6370 +6509 9058 0.4040 +6509 10991 0.4570 +6509 11136 0.5080 +6509 11254 0.5480 +6509 23428 0.5280 +6509 23657 0.5210 +6509 25800 0.4220 +6509 26227 0.5040 +6509 26266 0.4100 +6509 27165 0.4050 +6509 29968 0.6270 +6509 30816 0.9810 +6509 54407 0.6440 +6509 55089 0.5910 +6509 55117 0.4660 +6509 55238 0.4800 +6509 55630 0.4830 +6509 56301 0.6420 +6509 63826 0.4480 +6509 79587 0.4080 +6509 81539 0.6210 +6509 84889 0.4190 +6509 92745 0.5400 +6509 115584 0.4480 +6509 124935 0.6030 +6509 145389 0.4710 +6509 340024 0.5210 +6509 388662 0.4570 +6509 405754 0.4290 +6510 6513 0.7750 +6510 6515 0.6080 +6510 6517 0.4450 +6510 6519 0.5640 +6510 6520 0.8940 +6510 6523 0.5250 +6510 6536 0.5920 +6510 6541 0.7470 +6510 6542 0.5360 +6510 6564 0.5130 +6510 6566 0.4720 +6510 6574 0.4630 +6510 6575 0.4530 +6510 6810 0.4210 +6510 6854 0.4050 +6510 7037 0.6320 +6510 7112 0.4360 +6510 7157 0.5010 +6510 7415 0.4340 +6510 7454 0.4110 +6510 7535 0.4190 +6510 7879 0.4630 +6510 8140 0.8850 +6510 8476 0.4260 +6510 8501 0.5780 +6510 8773 0.4260 +6510 8826 0.4610 +6510 8842 0.4420 +6510 8976 0.4100 +6510 9056 0.5360 +6510 9057 0.6190 +6510 9058 0.4240 +6510 9122 0.5240 +6510 9123 0.5840 +6510 9152 0.8810 +6510 9213 0.4430 +6510 9322 0.4470 +6510 9341 0.5370 +6510 9497 0.5370 +6510 9528 0.4080 +6510 9563 0.4780 +6510 9578 0.4570 +6510 10298 0.4100 +6510 10472 0.4160 +6510 10797 0.4480 +6510 10991 0.6220 +6510 11135 0.4420 +6510 11136 0.5310 +6510 11254 0.9440 +6510 23048 0.4200 +6510 23305 0.4180 +6510 23405 0.5850 +6510 23428 0.6800 +6510 23433 0.5710 +6510 23513 0.4590 +6510 23657 0.7040 +6510 25894 0.4260 +6510 26227 0.4860 +6510 26523 0.5920 +6510 27161 0.4200 +6510 27165 0.8340 +6510 28964 0.4160 +6510 29968 0.6240 +6510 30816 0.9890 +6510 54407 0.7970 +6510 54874 0.4200 +6510 55004 0.5070 +6510 55075 0.4180 +6510 55089 0.5860 +6510 55238 0.4880 +6510 55240 0.5540 +6510 55789 0.4440 +6510 55968 0.4050 +6510 56301 0.5650 +6510 57381 0.5620 +6510 57393 0.4480 +6510 57515 0.5380 +6510 64849 0.4090 +6510 81539 0.7710 +6510 81624 0.4350 +6510 81839 0.4410 +6510 84706 0.4250 +6510 84879 0.6290 +6510 84955 0.6290 +6510 92745 0.7030 +6510 114885 0.4080 +6510 120103 0.4630 +6510 121260 0.4330 +6510 124935 0.5570 +6510 128239 0.4470 +6510 143098 0.4110 +6510 144195 0.4510 +6510 144402 0.4030 +6510 153129 0.6010 +6510 153201 0.5310 +6510 154091 0.4430 +6510 192670 0.6210 +6510 200894 0.4080 +6510 206358 0.5220 +6510 253959 0.4010 +6510 340024 0.7210 +6510 374569 0.4480 +6510 405754 0.8310 +6510 440275 0.4210 +6511 6513 0.4430 +6511 6519 0.4640 +6511 6520 0.5500 +6511 6523 0.4080 +6511 6529 0.4740 +6511 6540 0.4160 +6511 6541 0.4120 +6511 6564 0.4860 +6511 6575 0.4020 +6511 6710 0.6480 +6511 6711 0.5880 +6511 6712 0.9500 +6511 8140 0.4600 +6511 8490 0.4700 +6511 8601 0.4770 +6511 8786 0.4370 +6511 9057 0.5040 +6511 9058 0.4430 +6511 9138 0.4260 +6511 9152 0.4990 +6511 9208 0.4130 +6511 9628 0.4340 +6511 9826 0.9140 +6511 10287 0.4360 +6511 10524 0.9110 +6511 10991 0.4170 +6511 11136 0.4090 +6511 11254 0.4460 +6511 23428 0.4230 +6511 23657 0.4580 +6511 26575 0.4970 +6511 54407 0.5120 +6511 55089 0.4680 +6511 55201 0.5080 +6511 57030 0.5180 +6511 57084 0.4730 +6511 64407 0.4380 +6511 81539 0.4240 +6511 85397 0.5080 +6511 140679 0.4170 +6511 246213 0.4530 +6511 431704 0.4680 +6512 6519 0.4360 +6512 6520 0.5590 +6512 6541 0.4520 +6512 6542 0.4590 +6512 8140 0.4560 +6512 9058 0.4880 +6512 10991 0.4300 +6512 11136 0.4340 +6512 23657 0.4330 +6512 55089 0.4370 +6512 57030 0.4540 +6512 81539 0.4450 +6512 148789 0.4040 +6512 246213 0.4690 +6513 6514 0.9060 +6513 6517 0.9090 +6513 6520 0.5510 +6513 6521 0.7440 +6513 6523 0.8740 +6513 6524 0.7350 +6513 6528 0.7550 +6513 6535 0.4830 +6513 6541 0.5530 +6513 6542 0.5150 +6513 6546 0.4710 +6513 6564 0.4850 +6513 6566 0.6750 +6513 6567 0.4270 +6513 6648 0.4100 +6513 6657 0.5550 +6513 6709 0.4340 +6513 6714 0.4140 +6513 6720 0.5000 +6513 6737 0.4450 +6513 6774 0.4890 +6513 6794 0.4780 +6513 6810 0.5120 +6513 6812 0.5510 +6513 6814 0.4420 +6513 7037 0.5670 +6513 7038 0.6350 +6513 7083 0.4790 +6513 7086 0.4590 +6513 7111 0.4560 +6513 7122 0.4960 +6513 7124 0.8160 +6513 7157 0.9670 +6513 7167 0.6300 +6513 7173 0.5990 +6513 7249 0.4350 +6513 7253 0.5410 +6513 7295 0.4020 +6513 7298 0.4530 +6513 7329 0.5590 +6513 7428 0.6890 +6513 7837 0.4820 +6513 8074 0.4500 +6513 8140 0.7190 +6513 8277 0.4830 +6513 8290 0.4060 +6513 8356 0.4060 +6513 8553 0.4010 +6513 8660 0.6010 +6513 8682 0.4950 +6513 8829 0.8190 +6513 8974 0.4510 +6513 9076 0.4020 +6513 9122 0.7770 +6513 9123 0.7990 +6513 9194 0.5920 +6513 9356 0.4240 +6513 9370 0.4180 +6513 9376 0.6010 +6513 9380 0.4840 +6513 9390 0.4070 +6513 9429 0.5280 +6513 9563 0.6000 +6513 9669 0.5780 +6513 9882 0.4120 +6513 9962 0.6040 +6513 9963 0.5490 +6513 9997 0.4860 +6513 10057 0.6020 +6513 10257 0.4170 +6513 10370 0.4420 +6513 10371 0.5050 +6513 10382 0.4640 +6513 10397 0.4990 +6513 10628 0.7280 +6513 10755 0.7500 +6513 10891 0.7240 +6513 11182 0.4690 +6513 11284 0.4450 +6513 11343 0.5090 +6513 23229 0.4020 +6513 23411 0.4560 +6513 23428 0.4450 +6513 23657 0.4170 +6513 23788 0.4060 +6513 25953 0.4480 +6513 26227 0.4190 +6513 26291 0.5580 +6513 27165 0.4480 +6513 28965 0.5170 +6513 29126 0.4740 +6513 29988 0.4190 +6513 30816 0.4900 +6513 50651 0.4400 +6513 50943 0.4180 +6513 51129 0.4100 +6513 54205 0.4390 +6513 54407 0.6630 +6513 54414 0.6850 +6513 54541 0.5050 +6513 54583 0.5890 +6513 55089 0.4870 +6513 55276 0.4630 +6513 55662 0.5590 +6513 55902 0.4220 +6513 56339 0.5370 +6513 57103 0.6200 +6513 57153 0.4220 +6513 57521 0.4040 +6513 57526 0.6030 +6513 57575 0.5330 +6513 57818 0.4570 +6513 64344 0.6940 +6513 79751 0.5330 +6513 81539 0.5290 +6513 81609 0.6820 +6513 83667 0.4930 +6513 84076 0.4240 +6513 84879 0.4270 +6513 84925 0.4050 +6513 89780 0.5550 +6513 92579 0.4750 +6513 92745 0.4110 +6513 112398 0.4970 +6513 112399 0.5970 +6513 112476 0.5930 +6513 115584 0.5070 +6513 115861 0.5460 +6513 133482 0.4160 +6513 137902 0.4810 +6513 146760 0.4210 +6513 152831 0.4610 +6513 154091 0.4640 +6513 252983 0.5210 +6513 253260 0.4290 +6513 259232 0.4050 +6513 353091 0.4220 +6513 376497 0.4230 +6513 387775 0.4560 +6513 440093 0.4060 +6513 440686 0.4060 +6513 441531 0.5870 +6513 653604 0.4050 +6513 100506658 0.4250 +6514 6519 0.5010 +6514 6523 0.8990 +6514 6524 0.8280 +6514 6527 0.6660 +6514 6550 0.4390 +6514 6555 0.4040 +6514 6561 0.4350 +6514 6564 0.7450 +6514 6566 0.4580 +6514 6580 0.6110 +6514 6581 0.4930 +6514 6582 0.5920 +6514 6584 0.5310 +6514 6720 0.6080 +6514 6750 0.6180 +6514 6810 0.4200 +6514 6814 0.4780 +6514 6833 0.8090 +6514 6906 0.4400 +6514 6927 0.9540 +6514 6928 0.4570 +6514 6934 0.4490 +6514 7025 0.4240 +6514 7124 0.4030 +6514 7157 0.9260 +6514 7351 0.4870 +6514 7353 0.4590 +6514 7466 0.4480 +6514 8660 0.6270 +6514 8972 0.6200 +6514 9027 0.4140 +6514 9056 0.4070 +6514 9175 0.4030 +6514 9356 0.4050 +6514 9370 0.6420 +6514 9376 0.5590 +6514 9390 0.4040 +6514 9479 0.6070 +6514 9563 0.4520 +6514 9935 0.5370 +6514 9962 0.4260 +6514 9963 0.4910 +6514 9971 0.6300 +6514 10560 0.4450 +6514 10628 0.6150 +6514 10864 0.5480 +6514 10891 0.4830 +6514 11132 0.5400 +6514 11136 0.4570 +6514 11181 0.5050 +6514 11182 0.4670 +6514 11320 0.7040 +6514 23043 0.4160 +6514 23411 0.4080 +6514 23542 0.4220 +6514 26060 0.5080 +6514 27329 0.4180 +6514 29974 0.4010 +6514 29988 0.4180 +6514 50674 0.8540 +6514 51085 0.6050 +6514 51124 0.4470 +6514 51738 0.5390 +6514 53343 0.4940 +6514 55532 0.5960 +6514 56729 0.5050 +6514 57818 0.8300 +6514 64241 0.4450 +6514 64902 0.4380 +6514 79799 0.4200 +6514 80834 0.6420 +6514 80835 0.4490 +6514 83756 0.6300 +6514 84504 0.8350 +6514 84666 0.4930 +6514 91749 0.6140 +6514 92579 0.7980 +6514 114131 0.5950 +6514 115584 0.6590 +6514 125206 0.6640 +6514 142940 0.6610 +6514 154091 0.4330 +6514 159963 0.4110 +6514 169026 0.7140 +6514 169792 0.5830 +6514 200010 0.6190 +6514 222546 0.6010 +6514 256297 0.5200 +6514 284194 0.6850 +6514 340024 0.4670 +6514 346562 0.5160 +6514 388125 0.4260 +6514 389692 0.7810 +6514 654346 0.6850 +6515 6520 0.4020 +6515 6523 0.6390 +6515 6524 0.4980 +6515 6527 0.4050 +6515 6528 0.5580 +6515 6566 0.5410 +6515 6580 0.5270 +6515 6581 0.4920 +6515 6582 0.5110 +6515 6714 0.4720 +6515 7038 0.4230 +6515 7083 0.4080 +6515 7086 0.4150 +6515 7157 0.4780 +6515 7167 0.5020 +6515 7173 0.4750 +6515 7253 0.4120 +6515 8140 0.4830 +6515 8214 0.4590 +6515 8277 0.4500 +6515 8553 0.4070 +6515 8660 0.4010 +6515 9122 0.6850 +6515 9123 0.7300 +6515 9194 0.6100 +6515 9376 0.5070 +6515 9563 0.5150 +6515 9962 0.6180 +6515 9963 0.5950 +6515 9997 0.4890 +6515 11182 0.5120 +6515 11315 0.4250 +6515 27165 0.4210 +6515 50856 0.6750 +6515 54407 0.5890 +6515 54583 0.4160 +6515 55089 0.5310 +6515 55356 0.4140 +6515 57103 0.5660 +6515 57761 0.4430 +6515 81031 0.6450 +6515 81539 0.5380 +6515 84076 0.4050 +6515 85359 0.4160 +6515 93986 0.4120 +6515 115584 0.4250 +6515 144195 0.8680 +6515 154091 0.4360 +6515 170482 0.5490 +6515 387775 0.4580 +6517 6523 0.6630 +6517 6524 0.5810 +6517 6526 0.4500 +6517 6535 0.4890 +6517 6566 0.4190 +6517 6580 0.5040 +6517 6581 0.4110 +6517 6582 0.5200 +6517 6653 0.5850 +6517 6714 0.4150 +6517 6720 0.7290 +6517 6721 0.4220 +6517 6774 0.4100 +6517 6794 0.5930 +6517 6810 0.8880 +6517 6814 0.8780 +6517 6837 0.5100 +6517 6844 0.9450 +6517 7019 0.5180 +6517 7037 0.4810 +6517 7099 0.4420 +6517 7124 0.6210 +6517 7157 0.4820 +6517 7249 0.4230 +6517 7329 0.5150 +6517 7350 0.7230 +6517 7351 0.6030 +6517 7352 0.6820 +6517 7837 0.5750 +6517 8202 0.5630 +6517 8218 0.6130 +6517 8310 0.4410 +6517 8648 0.5900 +6517 8660 0.8120 +6517 8682 0.4950 +6517 8694 0.5160 +6517 8766 0.6970 +6517 8773 0.8270 +6517 8841 0.4530 +6517 8972 0.6130 +6517 9021 0.4310 +6517 9122 0.5030 +6517 9123 0.5340 +6517 9230 0.9010 +6517 9282 0.5310 +6517 9341 0.4450 +6517 9370 0.8870 +6517 9376 0.4740 +6517 9412 0.5010 +6517 9429 0.4660 +6517 9439 0.4990 +6517 9440 0.5030 +6517 9441 0.5230 +6517 9442 0.5260 +6517 9443 0.4990 +6517 9477 0.5430 +6517 9563 0.5440 +6517 9611 0.5290 +6517 9612 0.4960 +6517 9744 0.5260 +6517 9847 0.6400 +6517 9862 0.5220 +6517 9882 0.9690 +6517 9945 0.4020 +6517 9963 0.4030 +6517 9967 0.5100 +6517 9968 0.5200 +6517 9969 0.5770 +6517 9997 0.4590 +6517 10001 0.4990 +6517 10025 0.5120 +6517 10135 0.4720 +6517 10228 0.4130 +6517 10324 0.4610 +6517 10499 0.5680 +6517 10580 0.5850 +6517 10628 0.4240 +6517 10640 0.6190 +6517 10645 0.4770 +6517 10864 0.4150 +6517 10890 0.9840 +6517 10891 0.8840 +6517 10981 0.4270 +6517 10999 0.4280 +6517 11031 0.4850 +6517 11132 0.5420 +6517 11336 0.8240 +6517 23097 0.5070 +6517 23175 0.4100 +6517 23216 0.7690 +6517 23265 0.8560 +6517 23389 0.5250 +6517 23410 0.4470 +6517 23411 0.6160 +6517 23417 0.4530 +6517 23433 0.8060 +6517 26291 0.5780 +6517 28999 0.4740 +6517 29079 0.4990 +6517 29988 0.4070 +6517 30845 0.5970 +6517 30846 0.7190 +6517 51003 0.5310 +6517 51085 0.6260 +6517 51094 0.5520 +6517 51552 0.9730 +6517 51586 0.4990 +6517 51738 0.4780 +6517 51806 0.4380 +6517 54205 0.4820 +6517 54536 0.7510 +6517 54797 0.5080 +6517 55022 0.5170 +6517 55090 0.5100 +6517 55588 0.4990 +6517 55697 0.4040 +6517 55763 0.6060 +6517 55770 0.6440 +6517 56521 0.4560 +6517 56729 0.6660 +6517 56731 0.7470 +6517 57103 0.5620 +6517 57104 0.6760 +6517 57818 0.6960 +6517 60412 0.8300 +6517 63976 0.5380 +6517 64744 0.5080 +6517 79058 0.9680 +6517 79602 0.5150 +6517 80221 0.5680 +6517 80306 0.4990 +6517 81857 0.5120 +6517 83440 0.4320 +6517 84246 0.4990 +6517 84498 0.5220 +6517 84649 0.5000 +6517 84666 0.6210 +6517 85441 0.4990 +6517 90390 0.5040 +6517 91860 0.4390 +6517 92579 0.6990 +6517 112950 0.4990 +6517 114815 0.4100 +6517 114907 0.4180 +6517 115584 0.4190 +6517 126129 0.5710 +6517 126133 0.4210 +6517 133522 0.5110 +6517 137902 0.5750 +6517 143187 0.5070 +6517 145264 0.4130 +6517 149371 0.6450 +6517 153443 0.4810 +6517 154091 0.4620 +6517 163688 0.4440 +6517 200576 0.5590 +6517 252983 0.7780 +6517 252995 0.5190 +6517 253260 0.5140 +6517 257202 0.4570 +6517 338557 0.4570 +6517 376497 0.5030 +6517 387775 0.4270 +6517 389692 0.4030 +6517 400569 0.5000 +6517 493869 0.4570 +6518 6523 0.8610 +6518 6524 0.4950 +6518 6527 0.5680 +6518 6564 0.6640 +6518 8972 0.4430 +6518 9356 0.4270 +6518 9376 0.5660 +6518 11181 0.5150 +6518 11182 0.4650 +6518 26007 0.5270 +6518 29988 0.4370 +6518 50651 0.4410 +6518 51085 0.5150 +6518 55640 0.4290 +6518 57818 0.6070 +6518 64805 0.4190 +6518 80834 0.4360 +6518 83756 0.6180 +6518 84959 0.4330 +6518 91749 0.4750 +6518 92579 0.6110 +6518 114134 0.4120 +6518 115584 0.5850 +6518 116085 0.7310 +6518 125206 0.5810 +6518 139760 0.5060 +6518 154091 0.4850 +6518 200010 0.5800 +6518 338773 0.5190 +6518 387775 0.4340 +6519 6520 0.7880 +6519 6523 0.4910 +6519 6541 0.5800 +6519 6542 0.5080 +6519 6545 0.5290 +6519 6557 0.5100 +6519 6559 0.4110 +6519 6561 0.5860 +6519 6564 0.6910 +6519 6565 0.4900 +6519 6568 0.5400 +6519 6569 0.4820 +6519 8140 0.9250 +6519 8226 0.5750 +6519 9056 0.8920 +6519 9057 0.9060 +6519 9058 0.4520 +6519 9380 0.4870 +6519 9581 0.9720 +6519 10020 0.5310 +6519 10991 0.4230 +6519 11136 0.9990 +6519 11254 0.5150 +6519 23428 0.8360 +6519 23657 0.7790 +6519 26266 0.4230 +6519 54407 0.4960 +6519 55117 0.4330 +6519 55347 0.4120 +6519 56301 0.7060 +6519 57393 0.7020 +6519 57709 0.5390 +6519 59272 0.6080 +6519 79823 0.9350 +6519 80162 0.5630 +6519 81539 0.4310 +6519 84889 0.4850 +6519 93550 0.4210 +6519 112817 0.4220 +6519 124935 0.5570 +6519 145389 0.4190 +6519 146167 0.4160 +6519 157724 0.8920 +6519 286451 0.5640 +6519 340024 0.7130 +6520 6536 0.5980 +6520 6541 0.7010 +6520 6542 0.5320 +6520 6545 0.5050 +6520 6564 0.4940 +6520 6565 0.4120 +6520 6566 0.4180 +6520 6667 0.4010 +6520 6723 0.4240 +6520 7037 0.6310 +6520 7157 0.4620 +6520 7296 0.4180 +6520 8031 0.5070 +6520 8140 0.9990 +6520 8226 0.5780 +6520 8501 0.9360 +6520 8529 0.5120 +6520 8565 0.5220 +6520 8880 0.4020 +6520 9056 0.9990 +6520 9057 0.9990 +6520 9122 0.6230 +6520 9123 0.6440 +6520 9152 0.4360 +6520 9238 0.4300 +6520 9563 0.4720 +6520 9694 0.4340 +6520 10020 0.5310 +6520 10162 0.5530 +6520 10462 0.4600 +6520 10600 0.5560 +6520 10991 0.4230 +6520 11136 0.9880 +6520 11254 0.4620 +6520 11331 0.4810 +6520 23428 0.9990 +6520 23657 0.9990 +6520 27087 0.5190 +6520 27165 0.4560 +6520 29968 0.4700 +6520 30061 0.4140 +6520 30835 0.4300 +6520 51741 0.4060 +6520 54407 0.7120 +6520 54498 0.4140 +6520 55089 0.4210 +6520 55240 0.4140 +6520 55353 0.4320 +6520 55611 0.6220 +6520 55785 0.6510 +6520 56301 0.9980 +6520 57030 0.4420 +6520 57709 0.5260 +6520 57761 0.6930 +6520 79094 0.4650 +6520 79850 0.8520 +6520 80162 0.5630 +6520 81539 0.6320 +6520 83667 0.4540 +6520 84179 0.4510 +6520 84883 0.6260 +6520 84889 0.4880 +6520 92745 0.4710 +6520 93550 0.4210 +6520 116843 0.5260 +6520 117247 0.5700 +6520 120103 0.4140 +6520 121260 0.5300 +6520 124935 0.7770 +6520 132949 0.4090 +6520 153129 0.5180 +6520 154141 0.4190 +6520 157724 0.6820 +6520 200895 0.5470 +6520 206358 0.5640 +6520 286451 0.5640 +6520 340024 0.6910 +6520 440275 0.4170 +6520 728378 0.4150 +6521 6528 0.4260 +6521 6549 0.6810 +6521 6550 0.6660 +6521 6557 0.4580 +6521 6558 0.4150 +6521 6559 0.4300 +6521 6563 0.5690 +6521 6622 0.7080 +6521 6708 0.8650 +6521 6710 0.5810 +6521 6850 0.6130 +6521 7001 0.5910 +6521 7083 0.4260 +6521 7111 0.5670 +6521 7145 0.4630 +6521 7153 0.5070 +6521 7343 0.5960 +6521 7369 0.5240 +6521 7390 0.4420 +6521 7429 0.4300 +6521 7504 0.4010 +6521 8019 0.4210 +6521 8907 0.4970 +6521 8991 0.6350 +6521 9122 0.4090 +6521 9780 0.4470 +6521 9911 0.5230 +6521 10107 0.5460 +6521 10661 0.7860 +6521 10861 0.5710 +6521 10900 0.4070 +6521 23762 0.6610 +6521 25853 0.5320 +6521 25893 0.7880 +6521 30833 0.5050 +6521 50617 0.8420 +6521 51218 0.4650 +6521 51312 0.5800 +6521 51327 0.8940 +6521 51332 0.5530 +6521 51458 0.7430 +6521 51629 0.6330 +6521 55363 0.6760 +6521 55437 0.5690 +6521 55544 0.4060 +6521 55644 0.7190 +6521 64837 0.4780 +6521 65010 0.5440 +6521 84896 0.6610 +6521 89953 0.4320 +6521 114625 0.4950 +6521 115019 0.4530 +6521 115111 0.5920 +6521 135932 0.4780 +6521 138046 0.5300 +6521 146059 0.4070 +6521 147700 0.5390 +6521 222642 0.4550 +6521 405754 0.4680 +6522 6548 0.6680 +6522 6549 0.5320 +6522 6550 0.5510 +6522 6555 0.4360 +6522 6557 0.8400 +6522 6558 0.9090 +6522 6559 0.5340 +6522 9122 0.4160 +6522 9213 0.4670 +6522 10723 0.4020 +6522 10861 0.4370 +6522 11015 0.4360 +6522 23632 0.5580 +6522 25803 0.4200 +6522 30816 0.4350 +6522 55107 0.4030 +6522 57468 0.5880 +6522 65010 0.6730 +6522 115019 0.4810 +6522 115111 0.9580 +6522 284129 0.5480 +6522 389015 0.4250 +6522 405754 0.5490 +6522 654346 0.4260 +6523 6524 0.4830 +6523 6529 0.4150 +6523 6541 0.4840 +6523 6548 0.4770 +6523 6549 0.4780 +6523 6550 0.7320 +6523 6555 0.7120 +6523 6557 0.4730 +6523 6564 0.8130 +6523 6565 0.4910 +6523 7082 0.4310 +6523 8884 0.4360 +6523 8972 0.6610 +6523 8989 0.4040 +6523 9056 0.4470 +6523 9058 0.5830 +6523 9340 0.7330 +6523 9963 0.4270 +6523 9971 0.4100 +6523 10158 0.9270 +6523 11136 0.4600 +6523 11181 0.4940 +6523 11182 0.4370 +6523 29988 0.5850 +6523 30061 0.4520 +6523 50651 0.4500 +6523 50674 0.5190 +6523 50832 0.5110 +6523 56606 0.4380 +6523 57818 0.4120 +6523 58510 0.4520 +6523 66035 0.4900 +6523 80834 0.9490 +6523 80835 0.7640 +6523 83756 0.9490 +6523 91749 0.7950 +6523 92579 0.4300 +6523 93432 0.4180 +6523 114134 0.4380 +6523 119467 0.5200 +6523 139760 0.4690 +6523 144195 0.5040 +6523 154091 0.6250 +6523 155184 0.5400 +6523 159963 0.4180 +6523 160728 0.4540 +6523 256356 0.4560 +6523 338557 0.7070 +6523 340024 0.6300 +6523 346562 0.8960 +6523 388364 0.4780 +6523 100506658 0.4480 +6524 6530 0.8400 +6524 6548 0.5950 +6524 6550 0.7950 +6524 6557 0.5300 +6524 6559 0.6710 +6524 6569 0.6980 +6524 6927 0.4030 +6524 7124 0.4040 +6524 7369 0.4270 +6524 8074 0.4170 +6524 8972 0.7960 +6524 9356 0.4510 +6524 9370 0.6740 +6524 9376 0.5760 +6524 9971 0.4040 +6524 10158 0.9250 +6524 10686 0.4470 +6524 10891 0.4090 +6524 23411 0.4370 +6524 26266 0.4600 +6524 26330 0.4590 +6524 29988 0.4140 +6524 51738 0.4510 +6524 54600 0.4100 +6524 56606 0.6240 +6524 58510 0.4790 +6524 59272 0.4670 +6524 64755 0.4490 +6524 79258 0.7030 +6524 116085 0.5490 +6524 142680 0.5110 +6524 154091 0.4160 +6524 157724 0.4350 +6524 159963 0.4180 +6524 160728 0.4020 +6524 255738 0.4740 +6524 348932 0.4630 +6525 6722 0.4580 +6525 6876 0.7980 +6525 7040 0.4120 +6525 7169 0.4090 +6525 7290 0.7630 +6525 8407 0.5310 +6525 8572 0.5650 +6525 9124 0.5710 +6525 9260 0.6520 +6525 10398 0.4650 +6525 10611 0.5950 +6525 10787 0.5400 +6525 11155 0.5700 +6525 23301 0.5680 +6525 23384 0.5650 +6525 23607 0.5400 +6525 25802 0.5070 +6525 27295 0.6460 +6525 29114 0.5700 +6525 29964 0.5400 +6525 53904 0.5720 +6525 55604 0.5400 +6525 56940 0.5470 +6525 64236 0.5520 +6525 64718 0.4290 +6525 83700 0.5470 +6525 83715 0.5410 +6525 92521 0.5540 +6525 93649 0.7150 +6525 219537 0.7270 +6525 221061 0.4040 +6525 254102 0.5690 +6525 342527 0.5660 +6526 6533 0.6200 +6526 6539 0.8830 +6526 6647 0.4180 +6526 8884 0.5110 +6526 9992 0.6320 +6526 10725 0.7960 +6526 51477 0.4790 +6526 55586 0.4630 +6526 58510 0.4330 +6526 64968 0.6950 +6526 114134 0.7350 +6526 160728 0.4160 +6526 257202 0.4220 +6526 493869 0.4220 +6527 6528 0.4270 +6527 8884 0.4580 +6527 11182 0.4380 +6527 29988 0.4920 +6527 58510 0.4440 +6527 66035 0.5660 +6527 80834 0.6130 +6527 83756 0.5800 +6527 114134 0.4160 +6527 144195 0.4810 +6527 154091 0.4970 +6527 155184 0.5430 +6527 159963 0.4310 +6527 160728 0.4550 +6528 6530 0.5480 +6528 6567 0.6810 +6528 6752 0.4860 +6528 6906 0.4080 +6528 7038 0.9700 +6528 7067 0.5050 +6528 7068 0.5320 +6528 7080 0.8120 +6528 7084 0.5780 +6528 7173 0.9400 +6528 7200 0.4150 +6528 7201 0.4650 +6528 7252 0.6310 +6528 7253 0.9470 +6528 7276 0.4350 +6528 7849 0.8670 +6528 9058 0.4470 +6528 9992 0.6500 +6528 10008 0.4340 +6528 10142 0.4720 +6528 50506 0.8000 +6528 53373 0.7300 +6528 53905 0.5600 +6528 55630 0.4060 +6528 57623 0.4970 +6528 58510 0.4420 +6528 84364 0.4910 +6528 90527 0.5770 +6528 115111 0.5800 +6528 116085 0.5210 +6528 117247 0.4930 +6528 128209 0.5060 +6528 169792 0.4520 +6528 389434 0.9170 +6528 405753 0.8510 +6529 6532 0.4410 +6529 6543 0.6680 +6529 6558 0.5050 +6529 6571 0.4840 +6529 6616 0.6070 +6529 6750 0.5220 +6529 6804 0.9000 +6529 6812 0.6690 +6529 6853 0.4600 +6529 6854 0.4230 +6529 6855 0.4660 +6529 6857 0.6360 +6529 7104 0.5790 +6529 7439 0.4290 +6529 7915 0.4720 +6529 8404 0.4620 +6529 8629 0.4930 +6529 8912 0.5550 +6529 9145 0.4790 +6529 9378 0.4950 +6529 9568 0.6230 +6529 9719 0.5120 +6529 9871 0.7380 +6529 9899 0.5390 +6529 9900 0.5060 +6529 10243 0.5230 +6529 10427 0.5860 +6529 10458 0.4040 +6529 10716 0.5350 +6529 10777 0.5430 +6529 10991 0.4340 +6529 23017 0.4160 +6529 23090 0.4250 +6529 23314 0.4710 +6529 23416 0.4560 +6529 26526 0.4850 +6529 55852 0.4330 +6529 56751 0.4320 +6529 57030 0.7210 +6529 57084 0.5460 +6529 57468 0.6510 +6529 57526 0.4320 +6529 81794 0.4660 +6529 84631 0.4280 +6529 84894 0.4860 +6529 85452 0.5490 +6529 93377 0.4460 +6529 112755 0.4600 +6529 132204 0.4580 +6529 140679 0.8090 +6529 146713 0.5050 +6529 246213 0.4340 +6529 266743 0.4360 +6529 642968 0.4020 +6530 6570 0.6230 +6530 6571 0.8150 +6530 6572 0.4240 +6530 6581 0.8250 +6530 6582 0.6960 +6530 6591 0.4690 +6530 6616 0.4660 +6530 6622 0.8090 +6530 6752 0.4700 +6530 6804 0.9210 +6530 6863 0.5480 +6530 7054 0.7710 +6530 7166 0.4790 +6530 8671 0.4220 +6530 9177 0.4060 +6530 9356 0.7270 +6530 9463 0.4380 +6530 9871 0.6540 +6530 10741 0.5500 +6530 11281 0.4010 +6530 55654 0.5500 +6530 59272 0.4130 +6530 79693 0.7740 +6530 83482 0.8110 +6530 121278 0.4070 +6530 134864 0.4500 +6530 140679 0.4550 +6530 220074 0.5900 +6530 222962 0.5210 +6530 342979 0.4070 +6531 6532 0.4310 +6531 6570 0.5630 +6531 6571 0.9660 +6531 6572 0.4910 +6531 6581 0.6650 +6531 6582 0.4740 +6531 6616 0.5880 +6531 6620 0.5670 +6531 6622 0.9960 +6531 6623 0.4290 +6531 6804 0.9920 +6531 6853 0.4750 +6531 6854 0.4160 +6531 6855 0.4820 +6531 6863 0.6360 +6531 7041 0.6150 +6531 7054 0.9500 +6531 7166 0.5220 +6531 7837 0.4090 +6531 8224 0.4710 +6531 8398 0.4240 +6531 8671 0.4140 +6531 8766 0.5170 +6531 8973 0.4050 +6531 9143 0.9440 +6531 9177 0.4050 +6531 9356 0.5100 +6531 9463 0.8640 +6531 9568 0.5310 +6531 9627 0.7490 +6531 9856 0.4820 +6531 9871 0.5140 +6531 10066 0.4240 +6531 10211 0.9400 +6531 10280 0.6870 +6531 10399 0.4260 +6531 10580 0.5520 +6531 11315 0.6340 +6531 22987 0.4030 +6531 23208 0.5060 +6531 23284 0.4250 +6531 23316 0.4240 +6531 23325 0.4450 +6531 23400 0.8160 +6531 23557 0.4530 +6531 23603 0.7240 +6531 26526 0.4750 +6531 27185 0.4790 +6531 50834 0.4250 +6531 51762 0.4470 +6531 51806 0.5630 +6531 54084 0.4240 +6531 54112 0.4780 +6531 55737 0.4180 +6531 57030 0.6410 +6531 57084 0.7600 +6531 60482 0.4310 +6531 65018 0.6970 +6531 79693 0.5410 +6531 79971 0.4740 +6531 83857 0.5270 +6531 84152 0.6210 +6531 91860 0.5630 +6531 120892 0.7490 +6531 121278 0.5480 +6531 134864 0.6010 +6531 137902 0.4090 +6531 140679 0.5430 +6531 144717 0.4260 +6531 146713 0.4380 +6531 163688 0.5630 +6531 220074 0.7810 +6531 222962 0.5210 +6531 255239 0.7020 +6531 285195 0.5590 +6532 6570 0.5830 +6532 6571 0.8860 +6532 6572 0.4760 +6532 6581 0.7200 +6532 6582 0.4830 +6532 6616 0.5240 +6532 6622 0.6920 +6532 6623 0.6420 +6532 6625 0.4120 +6532 6804 0.9310 +6532 6844 0.4270 +6532 6863 0.4470 +6532 7054 0.6560 +6532 7166 0.9500 +6532 7170 0.4410 +6532 7368 0.4090 +6532 8671 0.4180 +6532 9177 0.6640 +6532 9356 0.4650 +6532 9360 0.5920 +6532 9369 0.4430 +6532 9463 0.5470 +6532 9568 0.5420 +6532 9632 0.4560 +6532 9722 0.4500 +6532 9851 0.4700 +6532 10066 0.4440 +6532 10144 0.4220 +6532 10280 0.4520 +6532 10427 0.7230 +6532 10630 0.4820 +6532 10786 0.4260 +6532 23171 0.4540 +6532 23316 0.4890 +6532 26526 0.7050 +6532 27136 0.4450 +6532 27185 0.4760 +6532 50833 0.4090 +6532 54738 0.6340 +6532 57030 0.6080 +6532 57084 0.6510 +6532 59341 0.4390 +6532 79693 0.4950 +6532 84062 0.4340 +6532 84282 0.5040 +6532 85462 0.4260 +6532 91752 0.4800 +6532 121278 0.9250 +6532 130589 0.4720 +6532 134864 0.5010 +6532 140679 0.4410 +6532 144717 0.4240 +6532 154664 0.4330 +6532 170572 0.4290 +6532 201780 0.5180 +6532 220074 0.7170 +6532 222962 0.6690 +6532 246213 0.4770 +6532 255239 0.7630 +6532 267012 0.5980 +6532 285242 0.5070 +6532 319100 0.4120 +6532 104909134 0.6670 +6533 6539 0.4050 +6533 6545 0.4120 +6533 6564 0.4910 +6533 6565 0.4900 +6533 6574 0.4340 +6533 8140 0.4460 +6533 9056 0.4100 +6533 10351 0.4610 +6533 10725 0.6240 +6533 23428 0.4120 +6533 23480 0.4030 +6533 51296 0.4260 +6533 51380 0.6920 +6533 54407 0.5860 +6533 54521 0.4990 +6533 55089 0.4200 +6533 55972 0.4500 +6533 57181 0.4700 +6533 57571 0.5760 +6533 81539 0.4940 +6533 84735 0.4080 +6533 84879 0.4380 +6533 84890 0.4190 +6533 121260 0.4400 +6533 206358 0.5830 +6533 339896 0.5440 +6534 9362 0.4250 +6534 85449 0.4800 +6534 93377 0.4040 +6534 132204 0.4340 +6534 140679 0.5000 +6534 206358 0.4060 +6534 391723 0.8010 +6534 642968 0.4010 +6535 8751 0.4060 +6535 9453 0.4100 +6535 9896 0.4970 +6535 10134 0.4570 +6535 10618 0.5420 +6535 55217 0.4160 +6535 55697 0.5930 +6535 84557 0.4540 +6535 200576 0.6440 +6535 387700 0.6020 +6535 548596 0.5260 +6536 6541 0.6410 +6536 7068 0.5140 +6536 8001 0.4280 +6536 8140 0.5610 +6536 9324 0.8960 +6536 9389 0.4360 +6536 29968 0.4310 +6536 54407 0.4050 +6536 56301 0.4540 +6536 79094 0.4220 +6536 92745 0.4130 +6536 140679 0.4230 +6538 6540 0.9030 +6538 6557 0.4080 +6538 7274 0.7550 +6538 7439 0.4710 +6538 7915 0.4070 +6538 9513 0.4040 +6538 9568 0.4570 +6538 10427 0.4560 +6538 10658 0.7030 +6538 26048 0.4150 +6538 56652 0.7420 +6538 57468 0.4140 +6538 57626 0.4660 +6538 140679 0.6490 +6539 6558 0.4230 +6539 6564 0.4550 +6539 6584 0.4120 +6539 7915 0.4120 +6539 8825 0.5900 +6539 10725 0.8170 +6539 10786 0.4190 +6539 23743 0.4370 +6539 54407 0.4400 +6539 55244 0.5180 +6539 55315 0.4380 +6539 55327 0.5200 +6539 64130 0.5410 +6539 85413 0.4360 +6539 140679 0.5500 +6539 153201 0.4380 +6539 202151 0.4060 +6540 6582 0.4220 +6540 7439 0.5120 +6540 7915 0.4120 +6540 7984 0.4100 +6540 9356 0.5810 +6540 10427 0.4710 +6540 10991 0.4220 +6540 11136 0.4210 +6540 57468 0.4500 +6540 57711 0.4690 +6540 85025 0.4480 +6540 140679 0.6410 +6541 6564 0.4850 +6541 6670 0.4070 +6541 6720 0.4520 +6541 7037 0.4480 +6541 7351 0.4250 +6541 7399 0.4260 +6541 8140 0.7370 +6541 8204 0.7920 +6541 8501 0.4140 +6541 8648 0.4090 +6541 9056 0.5120 +6541 9057 0.5650 +6541 9314 0.5090 +6541 10295 0.4440 +6541 10891 0.9100 +6541 11136 0.4810 +6541 11254 0.5740 +6541 22809 0.4340 +6541 23428 0.4740 +6541 23657 0.4330 +6541 25902 0.4280 +6541 29968 0.4240 +6541 54407 0.6460 +6541 54552 0.4590 +6541 55089 0.5980 +6541 56301 0.4210 +6541 79814 0.4880 +6541 81539 0.5660 +6541 92745 0.4060 +6541 113451 0.4320 +6541 116444 0.4550 +6541 117247 0.4110 +6541 124935 0.6440 +6541 133522 0.9040 +6541 157724 0.4170 +6541 160728 0.4290 +6541 206358 0.5340 +6541 340024 0.4880 +6542 6564 0.4280 +6542 8140 0.4600 +6542 8501 0.4190 +6542 9056 0.4960 +6542 9057 0.5570 +6542 10991 0.4550 +6542 11136 0.4430 +6542 11254 0.4140 +6542 23428 0.4720 +6542 23435 0.4240 +6542 23446 0.4450 +6542 51361 0.4070 +6542 54407 0.5190 +6542 55089 0.5110 +6542 80255 0.4120 +6542 84376 0.4100 +6542 124935 0.4550 +6542 154091 0.4060 +6542 157724 0.4100 +6543 6546 0.9060 +6543 6547 0.9640 +6543 6620 0.4440 +6543 6853 0.4210 +6543 8671 0.4130 +6543 8927 0.4640 +6543 9196 0.4180 +6543 9719 0.5940 +6543 9899 0.5150 +6543 10458 0.4110 +6543 10716 0.4360 +6543 10777 0.4830 +6543 23158 0.4080 +6543 23251 0.4160 +6543 23416 0.4890 +6543 25769 0.4340 +6543 57030 0.5510 +6543 80024 0.6520 +6543 81794 0.5110 +6543 83482 0.4290 +6543 84894 0.4770 +6543 266743 0.4630 +6543 343450 0.4350 +6545 6565 0.4290 +6545 7625 0.4230 +6545 8140 0.4100 +6545 9056 0.4890 +6545 9057 0.4840 +6545 9127 0.4770 +6545 9342 0.4330 +6545 10229 0.7240 +6545 11136 0.4210 +6545 11254 0.4360 +6545 23428 0.4700 +6545 51296 0.4400 +6545 51586 0.4420 +6545 54407 0.4440 +6545 55089 0.4150 +6545 55238 0.4780 +6545 56301 0.4200 +6545 80764 0.6430 +6545 81539 0.4040 +6545 84861 0.4660 +6545 84889 0.4570 +6545 85313 0.4650 +6545 121260 0.4940 +6545 124935 0.5280 +6545 150209 0.5890 +6545 151258 0.4650 +6545 153201 0.4220 +6545 157724 0.4280 +6546 6547 0.9040 +6546 6548 0.4470 +6546 6588 0.5550 +6546 6833 0.4440 +6546 7139 0.4750 +6546 7220 0.4520 +6546 7222 0.6980 +6546 7225 0.6690 +6546 7416 0.4820 +6546 8671 0.4580 +6546 8878 0.4440 +6546 8913 0.4410 +6546 9187 0.6230 +6546 9697 0.4260 +6546 10021 0.5400 +6546 10082 0.4300 +6546 10345 0.4360 +6546 11140 0.4910 +6546 11315 0.4440 +6546 27035 0.4310 +6546 30819 0.4100 +6546 55503 0.5400 +6546 56302 0.6110 +6546 57158 0.4100 +6546 58498 0.4210 +6546 65018 0.4780 +6546 80024 0.5700 +6546 254428 0.4060 +6547 8165 0.9220 +6547 10243 0.5540 +6547 23503 0.4710 +6547 30818 0.4170 +6547 51062 0.6570 +6547 55454 0.4380 +6547 56928 0.4030 +6547 80024 0.6550 +6547 94026 0.4040 +6548 6550 0.5330 +6548 6553 0.5220 +6548 6557 0.4480 +6548 6558 0.6530 +6548 6566 0.4470 +6548 6714 0.4230 +6548 6833 0.6190 +6548 7094 0.5590 +6548 7430 0.9980 +6548 7529 0.5770 +6548 7809 0.5950 +6548 8671 0.7490 +6548 8692 0.6520 +6548 9122 0.6210 +6548 9123 0.6270 +6548 9351 0.5070 +6548 9368 0.6580 +6548 9475 0.9160 +6548 9497 0.7430 +6548 9498 0.6370 +6548 9644 0.5210 +6548 9935 0.4390 +6548 9990 0.4130 +6548 10058 0.7280 +6548 10060 0.5820 +6548 10190 0.4200 +6548 10399 0.4120 +6548 10479 0.4690 +6548 10894 0.5060 +6548 11194 0.7430 +6548 11261 0.9970 +6548 23019 0.5920 +6548 23632 0.4050 +6548 51806 0.9360 +6548 54997 0.9850 +6548 55576 0.4990 +6548 57282 0.5570 +6548 57835 0.5780 +6548 63928 0.9810 +6548 64240 0.7320 +6548 64241 0.7320 +6548 65010 0.6720 +6548 83660 0.5470 +6548 83697 0.4370 +6548 83959 0.4230 +6548 84329 0.4300 +6548 84679 0.4380 +6548 91860 0.9360 +6548 133308 0.8900 +6548 133482 0.4180 +6548 150159 0.5910 +6548 163688 0.9360 +6548 205428 0.6620 +6548 266743 0.6030 +6548 284525 0.4960 +6548 285195 0.4400 +6548 285335 0.9250 +6548 389015 0.9440 +6549 6557 0.5770 +6549 6558 0.5830 +6549 6564 0.4780 +6549 6714 0.4100 +6549 8671 0.6350 +6549 9351 0.5270 +6549 9368 0.6250 +6549 9424 0.4560 +6549 9497 0.6690 +6549 9498 0.5320 +6549 10479 0.4550 +6549 11261 0.6930 +6549 51458 0.4230 +6549 55082 0.4010 +6549 57127 0.6360 +6549 57282 0.4820 +6549 57835 0.5050 +6549 65010 0.6630 +6549 65266 0.4310 +6549 83697 0.4410 +6549 84679 0.4510 +6549 115019 0.4020 +6549 133308 0.8990 +6549 150159 0.5210 +6549 284184 0.4220 +6549 285335 0.4900 +6550 6557 0.8520 +6550 6558 0.6310 +6550 6559 0.7270 +6550 6564 0.6530 +6550 6565 0.4280 +6550 6569 0.7180 +6550 6863 0.4600 +6550 7041 0.6320 +6550 7082 0.4310 +6550 7430 0.8870 +6550 7837 0.6040 +6550 8029 0.8470 +6550 8671 0.7940 +6550 9058 0.4660 +6550 9351 0.9950 +6550 9368 0.9940 +6550 9497 0.6440 +6550 9498 0.6150 +6550 10158 0.5800 +6550 10413 0.4040 +6550 10479 0.4160 +6550 10568 0.4630 +6550 10768 0.4750 +6550 10861 0.4060 +6550 11060 0.4310 +6550 11254 0.5140 +6550 11261 0.9720 +6550 22941 0.5760 +6550 23139 0.6080 +6550 23327 0.6590 +6550 23549 0.4140 +6550 27347 0.4780 +6550 51458 0.5250 +6550 56302 0.5050 +6550 57127 0.6300 +6550 57282 0.4890 +6550 57835 0.5190 +6550 65010 0.9010 +6550 65266 0.4680 +6550 79849 0.5230 +6550 80704 0.4110 +6550 84196 0.5740 +6550 115019 0.5910 +6550 133308 0.4620 +6550 137902 0.6060 +6550 142680 0.4640 +6550 150159 0.4370 +6550 160728 0.4300 +6550 340024 0.4130 +6553 8671 0.4670 +6553 9368 0.4810 +6553 9497 0.5030 +6553 9498 0.4610 +6553 10399 0.4300 +6553 10479 0.4560 +6553 11261 0.5760 +6553 57282 0.4780 +6553 65010 0.5150 +6553 84679 0.6350 +6553 133308 0.9360 +6553 150159 0.6150 +6553 285335 0.6450 +6554 6564 0.4270 +6554 6565 0.4050 +6554 6567 0.4050 +6554 6579 0.9330 +6554 6580 0.7060 +6554 6582 0.4780 +6554 6584 0.4430 +6554 6718 0.5340 +6554 6822 0.6430 +6554 6927 0.6900 +6554 7363 0.4970 +6554 8087 0.4490 +6554 8273 0.4030 +6554 8431 0.8660 +6554 8647 0.9180 +6554 8714 0.7480 +6554 8856 0.6630 +6554 9023 0.4850 +6554 9356 0.4560 +6554 9360 0.5050 +6554 9376 0.5870 +6554 9420 0.6350 +6554 9429 0.6120 +6554 9965 0.6010 +6554 9970 0.5980 +6554 9971 0.8780 +6554 10257 0.7190 +6554 10599 0.8860 +6554 10614 0.4740 +6554 10864 0.7540 +6554 10998 0.6700 +6554 11001 0.4020 +6554 11309 0.7300 +6554 23137 0.4610 +6554 23646 0.4080 +6554 28231 0.7340 +6554 28234 0.8690 +6554 29881 0.4920 +6554 30816 0.7980 +6554 51081 0.4770 +6554 51302 0.5320 +6554 51567 0.4340 +6554 53919 0.7410 +6554 54575 0.5130 +6554 54576 0.5020 +6554 54577 0.4910 +6554 54578 0.5250 +6554 54657 0.5270 +6554 54658 0.5280 +6554 55244 0.6080 +6554 55867 0.4150 +6554 64240 0.7190 +6554 64241 0.6710 +6554 80270 0.4840 +6554 83440 0.4020 +6554 84068 0.9150 +6554 84447 0.4570 +6554 114571 0.5510 +6554 123264 0.8020 +6554 146802 0.4660 +6554 151306 0.6110 +6554 152831 0.4810 +6554 200931 0.7980 +6554 375611 0.8490 +6554 400224 0.4720 +6554 405754 0.7970 +6554 115072896 0.4050 +6555 6561 0.4580 +6555 6564 0.6360 +6555 6579 0.8250 +6555 6580 0.4630 +6555 6582 0.4290 +6555 6584 0.4270 +6555 6822 0.5110 +6555 6927 0.5460 +6555 7350 0.4080 +6555 7364 0.4410 +6555 8087 0.4050 +6555 8273 0.4090 +6555 8431 0.8320 +6555 8647 0.8170 +6555 8714 0.6240 +6555 8856 0.5890 +6555 9154 0.4070 +6555 9294 0.4290 +6555 9356 0.4020 +6555 9376 0.4500 +6555 9420 0.6050 +6555 9429 0.4480 +6555 9965 0.6950 +6555 9970 0.4900 +6555 9971 0.9140 +6555 10257 0.5430 +6555 10599 0.6200 +6555 10864 0.5950 +6555 10998 0.4040 +6555 11309 0.5480 +6555 28231 0.4580 +6555 28234 0.6070 +6555 29881 0.5350 +6555 51302 0.5340 +6555 55818 0.4360 +6555 64240 0.6420 +6555 64241 0.6030 +6555 84068 0.5970 +6555 119467 0.5570 +6555 123264 0.8380 +6555 147710 0.4040 +6555 151306 0.7320 +6555 152831 0.6010 +6555 200931 0.8830 +6555 340024 0.4150 +6555 388364 0.6950 +6556 6569 0.5940 +6556 6648 0.4120 +6556 6672 0.5400 +6556 6688 0.5280 +6556 7033 0.4470 +6556 7037 0.4940 +6556 7096 0.4390 +6556 7097 0.6920 +6556 7099 0.5400 +6556 7124 0.4540 +6556 7141 0.5670 +6556 7305 0.5410 +6556 7429 0.6740 +6556 7779 0.4780 +6556 8740 0.4560 +6556 8767 0.4700 +6556 9150 0.4240 +6556 9332 0.5100 +6556 9843 0.4360 +6556 10058 0.4690 +6556 10463 0.4810 +6556 11025 0.4760 +6556 11027 0.4550 +6556 23516 0.4950 +6556 27173 0.5190 +6556 29108 0.4300 +6556 30061 0.6780 +6556 51296 0.4770 +6556 51312 0.4860 +6556 54210 0.5230 +6556 55532 0.4120 +6556 55652 0.4030 +6556 56244 0.5540 +6556 57213 0.4290 +6556 57817 0.7110 +6556 58190 0.6230 +6556 64116 0.4910 +6556 64127 0.6540 +6556 64581 0.4220 +6556 79901 0.4140 +6556 80762 0.5770 +6556 81894 0.4020 +6556 114609 0.4820 +6556 144811 0.4910 +6556 160857 0.5470 +6556 199675 0.4780 +6556 338339 0.4600 +6556 345611 0.6750 +6557 6558 0.4040 +6557 6559 0.5170 +6557 6561 0.4530 +6557 6569 0.6700 +6557 7369 0.8030 +6557 7430 0.4700 +6557 7809 0.9540 +6557 7827 0.5740 +6557 7840 0.5140 +6557 8029 0.4200 +6557 8170 0.5000 +6557 8273 0.7830 +6557 8428 0.5960 +6557 8671 0.6180 +6557 9356 0.4350 +6557 9376 0.4130 +6557 9497 0.4830 +6557 9498 0.4520 +6557 9943 0.8380 +6557 9990 0.4060 +6557 10686 0.7000 +6557 10723 0.4050 +6557 10736 0.4050 +6557 10916 0.5150 +6557 23327 0.4160 +6557 23562 0.4480 +6557 26249 0.5060 +6557 27347 0.9370 +6557 50804 0.5040 +6557 51458 0.5060 +6557 51719 0.4260 +6557 54617 0.4340 +6557 55503 0.4120 +6557 56302 0.7300 +6557 57127 0.5170 +6557 57468 0.4720 +6557 65010 0.5100 +6557 65125 0.8820 +6557 65266 0.9080 +6557 65267 0.8810 +6557 65268 0.5900 +6557 89846 0.4240 +6557 115111 0.4260 +6557 116085 0.4530 +6557 127124 0.4080 +6557 140803 0.5190 +6557 142680 0.4320 +6557 149461 0.5400 +6557 157724 0.4050 +6557 283652 0.4290 +6557 348932 0.4210 +6557 389015 0.5660 +6557 399697 0.6110 +6558 6833 0.4390 +6558 6863 0.4900 +6558 7082 0.5620 +6558 7430 0.6280 +6558 7442 0.4210 +6558 7809 0.4920 +6558 8178 0.5490 +6558 8273 0.5430 +6558 8428 0.6640 +6558 8671 0.6830 +6558 9497 0.6860 +6558 9498 0.5750 +6558 9635 0.4950 +6558 9943 0.9010 +6558 9990 0.4350 +6558 10243 0.4400 +6558 10558 0.4190 +6558 10723 0.4150 +6558 22802 0.4970 +6558 27347 0.9410 +6558 51719 0.4350 +6558 54795 0.4230 +6558 55107 0.6130 +6558 56262 0.4530 +6558 56996 0.6790 +6558 57101 0.4070 +6558 57282 0.5710 +6558 57468 0.6540 +6558 57835 0.5510 +6558 59341 0.4090 +6558 64072 0.4310 +6558 64924 0.6840 +6558 65010 0.6300 +6558 65125 0.8770 +6558 65266 0.8770 +6558 65267 0.9100 +6558 65268 0.6880 +6558 84059 0.4080 +6558 84790 0.4430 +6558 89846 0.4240 +6558 115019 0.4130 +6558 115111 0.4060 +6558 140679 0.4520 +6558 153562 0.7370 +6558 161497 0.4280 +6558 285636 0.4070 +6558 613212 0.5770 +6558 654346 0.6920 +6558 100506658 0.5910 +6559 6561 0.4520 +6559 6569 0.6600 +6559 6642 0.5090 +6559 6643 0.4700 +6559 7369 0.6560 +6559 7809 0.9120 +6559 7827 0.5790 +6559 8273 0.4220 +6559 8428 0.5990 +6559 8452 0.4830 +6559 8671 0.5200 +6559 9356 0.4430 +6559 9376 0.5320 +6559 9390 0.4590 +6559 9497 0.4130 +6559 9498 0.5690 +6559 9943 0.8750 +6559 10686 0.9000 +6559 10725 0.4470 +6559 10916 0.4100 +6559 11275 0.4650 +6559 23327 0.6240 +6559 26249 0.7190 +6559 27347 0.9130 +6559 54805 0.4180 +6559 54946 0.5070 +6559 55586 0.5100 +6559 56302 0.5510 +6559 57468 0.4540 +6559 58533 0.4310 +6559 65125 0.9510 +6559 65266 0.9680 +6559 65267 0.9130 +6559 65268 0.7100 +6559 83697 0.4340 +6559 116085 0.4430 +6559 120939 0.5020 +6559 127124 0.4050 +6559 127833 0.4460 +6559 140803 0.6520 +6559 149461 0.4740 +6559 254428 0.4410 +6561 6568 0.4270 +6561 6569 0.4420 +6561 6575 0.4390 +6561 9153 0.4500 +6561 9368 0.4220 +6561 10861 0.7610 +6561 23417 0.4970 +6561 65010 0.4880 +6561 115111 0.4490 +6561 142685 0.5100 +6561 157724 0.4020 +6561 159963 0.5830 +6563 7693 0.5070 +6563 9114 0.4770 +6563 9296 0.5130 +6563 10237 0.4220 +6563 10826 0.4670 +6563 54575 0.5130 +6563 54576 0.5130 +6563 54577 0.5060 +6563 54578 0.5080 +6563 54657 0.4990 +6563 54658 0.5060 +6563 56913 0.4730 +6563 90338 0.4790 +6563 93550 0.4260 +6563 114625 0.4630 +6563 245972 0.4780 +6564 6565 0.4380 +6564 6566 0.4730 +6564 6579 0.6240 +6564 6580 0.5480 +6564 6581 0.6190 +6564 6582 0.5110 +6564 6583 0.6390 +6564 6584 0.6870 +6564 6778 0.4220 +6564 8140 0.4390 +6564 8647 0.4900 +6564 8714 0.5410 +6564 8884 0.4360 +6564 8972 0.4320 +6564 9056 0.6290 +6564 9057 0.6050 +6564 9153 0.6270 +6564 9154 0.5480 +6564 9356 0.7090 +6564 9376 0.6480 +6564 9429 0.6550 +6564 9963 0.4010 +6564 10057 0.4450 +6564 10257 0.5120 +6564 10599 0.5260 +6564 10864 0.6030 +6564 11136 0.6490 +6564 11309 0.6960 +6564 23428 0.4190 +6564 28231 0.4610 +6564 28234 0.4920 +6564 54407 0.4550 +6564 55244 0.5840 +6564 55315 0.4740 +6564 55356 0.5230 +6564 55867 0.4990 +6564 57571 0.4170 +6564 64078 0.4040 +6564 64127 0.5950 +6564 65220 0.5160 +6564 80835 0.4830 +6564 81894 0.4350 +6564 83756 0.5110 +6564 84251 0.4050 +6564 84735 0.4530 +6564 85413 0.4350 +6564 91252 0.4110 +6564 91749 0.5270 +6564 113235 0.5220 +6564 114571 0.5290 +6564 115584 0.4090 +6564 116085 0.4520 +6564 124935 0.4330 +6564 125206 0.4110 +6564 146802 0.5600 +6564 200931 0.4120 +6564 206358 0.6030 +6564 222545 0.6460 +6564 340024 0.6570 +6564 353189 0.5470 +6564 442038 0.4120 +6564 100506658 0.4200 +6565 6579 0.5970 +6565 6580 0.5380 +6565 6582 0.6260 +6565 6583 0.6780 +6565 6584 0.6690 +6565 8714 0.4030 +6565 8884 0.4080 +6565 9057 0.4590 +6565 9153 0.4600 +6565 9154 0.4940 +6565 9356 0.6510 +6565 9376 0.6760 +6565 9429 0.5510 +6565 10257 0.5080 +6565 10599 0.5120 +6565 10864 0.5690 +6565 11309 0.5910 +6565 23053 0.4330 +6565 28231 0.4260 +6565 28232 0.4590 +6565 28234 0.4820 +6565 29068 0.4160 +6565 51654 0.4290 +6565 53919 0.4110 +6565 55244 0.6260 +6565 55748 0.4180 +6565 55867 0.5600 +6565 56606 0.4390 +6565 57571 0.6190 +6565 63931 0.4200 +6565 64078 0.4920 +6565 64127 0.4960 +6565 65220 0.5170 +6565 84735 0.4580 +6565 91252 0.4660 +6565 114571 0.5390 +6565 116085 0.4680 +6565 146802 0.5740 +6565 206358 0.4690 +6565 353189 0.5400 +6565 388512 0.4010 +6566 6568 0.6850 +6566 6570 0.7760 +6566 6833 0.6210 +6566 6927 0.5090 +6566 7351 0.5200 +6566 8140 0.6430 +6566 8884 0.4180 +6566 9123 0.5620 +6566 9194 0.4230 +6566 9376 0.4110 +6566 9429 0.4480 +6566 10257 0.4850 +6566 11309 0.4200 +6566 11332 0.4700 +6566 23539 0.5660 +6566 27198 0.5140 +6566 28985 0.4040 +6566 51185 0.6410 +6566 54407 0.4590 +6566 79872 0.4670 +6566 81539 0.4710 +6566 81631 0.4170 +6566 116843 0.8330 +6566 133418 0.9650 +6566 159963 0.5810 +6566 160728 0.7320 +6566 338442 0.5480 +6567 6579 0.7270 +6567 6906 0.5740 +6567 6908 0.4100 +6567 7038 0.5130 +6567 7067 0.6700 +6567 7068 0.6800 +6567 7173 0.4140 +6567 7200 0.7860 +6567 7201 0.4140 +6567 7252 0.6030 +6567 7253 0.6000 +6567 7276 0.5520 +6567 8140 0.4650 +6567 8242 0.5880 +6567 9121 0.4440 +6567 9197 0.4190 +6567 9895 0.5880 +6567 9907 0.4470 +6567 10599 0.7220 +6567 10717 0.4530 +6567 11141 0.6580 +6567 11154 0.4320 +6567 11309 0.4120 +6567 23428 0.8390 +6567 23431 0.4180 +6567 28231 0.7510 +6567 28232 0.4830 +6567 28234 0.5020 +6567 28985 0.5190 +6567 51132 0.4900 +6567 51324 0.4180 +6567 53344 0.5750 +6567 53919 0.9870 +6567 57165 0.4460 +6567 79048 0.5710 +6567 79872 0.4240 +6567 80208 0.5590 +6567 84889 0.4850 +6567 91522 0.4310 +6567 113612 0.4100 +6567 117247 0.9070 +6567 121793 0.4670 +6567 139411 0.5130 +6567 161582 0.4240 +6567 170302 0.5560 +6567 340533 0.4520 +6567 389434 0.5550 +6567 405753 0.4610 +6568 6569 0.9360 +6568 6570 0.8020 +6568 6574 0.6430 +6568 6575 0.6100 +6568 6582 0.4890 +6568 7450 0.4100 +6568 8029 0.4500 +6568 9356 0.7070 +6568 9376 0.6910 +6568 9379 0.4620 +6568 9390 0.7420 +6568 9429 0.8030 +6568 10050 0.5380 +6568 10246 0.4150 +6568 10257 0.7180 +6568 10568 0.8870 +6568 10590 0.4140 +6568 10786 0.5840 +6568 10864 0.5590 +6568 22864 0.4930 +6568 23191 0.4260 +6568 29974 0.5850 +6568 54828 0.4320 +6568 55604 0.6930 +6568 55867 0.9310 +6568 56606 0.8780 +6568 63910 0.4020 +6568 64849 0.4830 +6568 79369 0.4180 +6568 80128 0.4470 +6568 94026 0.4910 +6568 114571 0.6690 +6568 114791 0.4310 +6568 116085 0.9300 +6568 116843 0.8580 +6568 134285 0.4470 +6568 142680 0.7520 +6568 159963 0.5650 +6568 160728 0.4650 +6568 220963 0.7380 +6569 6574 0.6330 +6569 6575 0.6830 +6569 6582 0.4440 +6569 6611 0.5970 +6569 6781 0.6690 +6569 7369 0.7230 +6569 8074 0.9360 +6569 8614 0.7400 +6569 9351 0.5750 +6569 9356 0.6530 +6569 9365 0.8070 +6569 9368 0.9830 +6569 9376 0.5830 +6569 9380 0.4950 +6569 9390 0.5610 +6569 10050 0.8210 +6569 10246 0.7470 +6569 10568 0.9130 +6569 10636 0.4230 +6569 10686 0.5300 +6569 10786 0.7180 +6569 10861 0.4420 +6569 11136 0.5560 +6569 23562 0.4500 +6569 27349 0.4240 +6569 51179 0.4470 +6569 54995 0.5200 +6569 55503 0.4210 +6569 55586 0.5090 +6569 56302 0.6280 +6569 56606 0.4340 +6569 57619 0.4400 +6569 79849 0.7880 +6569 112812 0.4630 +6569 116085 0.4700 +6569 120227 0.4290 +6569 127124 0.4790 +6569 134288 0.5550 +6569 142680 0.9480 +6569 149461 0.4360 +6569 159963 0.4870 +6569 345456 0.6760 +6569 348158 0.4190 +6569 348932 0.4060 +6570 6571 0.9040 +6570 6572 0.9120 +6570 6622 0.9120 +6570 7054 0.5190 +6570 7166 0.6570 +6570 9177 0.4050 +6570 9694 0.4320 +6570 10328 0.6110 +6570 56851 0.4570 +6570 57030 0.9350 +6570 57084 0.9400 +6570 63910 0.4560 +6570 94097 0.4370 +6570 116843 0.4050 +6570 140679 0.9490 +6570 246213 0.9310 +6570 284361 0.4080 +6571 6572 0.9130 +6571 6581 0.5310 +6571 6616 0.7100 +6571 6622 0.9790 +6571 6750 0.6240 +6571 6804 0.6850 +6571 6812 0.5880 +6571 6844 0.8920 +6571 6853 0.7000 +6571 6854 0.6470 +6571 6855 0.5240 +6571 6857 0.8810 +6571 7054 0.9660 +6571 7166 0.6530 +6571 7177 0.4910 +6571 7857 0.4070 +6571 8224 0.7430 +6571 8497 0.5250 +6571 8499 0.5420 +6571 8500 0.5400 +6571 8541 0.5330 +6571 8573 0.5380 +6571 8825 0.5170 +6571 9143 0.4480 +6571 9256 0.4990 +6571 9900 0.4250 +6571 10280 0.4630 +6571 10497 0.5950 +6571 10815 0.6210 +6571 11315 0.6680 +6571 22987 0.4450 +6571 22999 0.6990 +6571 54738 0.4180 +6571 55327 0.5000 +6571 57030 0.9520 +6571 57084 0.9590 +6571 57502 0.4130 +6571 58512 0.4100 +6571 63910 0.4020 +6571 64130 0.4990 +6571 64499 0.4850 +6571 65018 0.4700 +6571 80331 0.4730 +6571 84152 0.5150 +6571 118987 0.4210 +6571 120892 0.5070 +6571 121278 0.7200 +6571 134864 0.6040 +6571 140679 0.9650 +6571 143425 0.4250 +6571 146713 0.4070 +6571 201780 0.5190 +6571 220074 0.6250 +6571 222962 0.9320 +6571 246213 0.9520 +6572 6616 0.7010 +6572 6750 0.5260 +6572 6804 0.5450 +6572 6812 0.6390 +6572 6844 0.8570 +6572 6845 0.4990 +6572 6853 0.5090 +6572 6854 0.4380 +6572 6855 0.5900 +6572 6857 0.8860 +6572 6863 0.6250 +6572 7018 0.4080 +6572 7037 0.4140 +6572 7054 0.7850 +6572 7166 0.4240 +6572 7345 0.5210 +6572 7432 0.6230 +6572 8022 0.5510 +6572 8120 0.5940 +6572 8218 0.5400 +6572 8224 0.4180 +6572 8292 0.4020 +6572 8301 0.5710 +6572 8497 0.5080 +6572 8499 0.5080 +6572 8500 0.5160 +6572 8541 0.5160 +6572 8546 0.5940 +6572 8673 0.5320 +6572 8674 0.4610 +6572 8867 0.5750 +6572 8905 0.5710 +6572 8906 0.5450 +6572 8907 0.5400 +6572 8929 0.4880 +6572 8943 0.5640 +6572 9152 0.4430 +6572 9179 0.5520 +6572 9256 0.4990 +6572 9341 0.6170 +6572 9607 0.4050 +6572 9685 0.5400 +6572 9892 0.5650 +6572 9900 0.5200 +6572 9907 0.5400 +6572 10053 0.5400 +6572 10239 0.5400 +6572 10280 0.6780 +6572 10497 0.7120 +6572 10618 0.4220 +6572 10717 0.5400 +6572 10815 0.5510 +6572 10947 0.5400 +6572 11154 0.5610 +6572 11276 0.5400 +6572 22905 0.5400 +6572 22999 0.6990 +6572 23431 0.5450 +6572 25977 0.5400 +6572 26119 0.4990 +6572 26985 0.5400 +6572 27346 0.4430 +6572 29924 0.5410 +6572 29978 0.5070 +6572 29988 0.4270 +6572 51083 0.6730 +6572 55040 0.5400 +6572 55317 0.5400 +6572 55707 0.5400 +6572 55745 0.5400 +6572 56479 0.5610 +6572 57030 0.9790 +6572 57084 0.9690 +6572 57502 0.4060 +6572 58513 0.5450 +6572 60482 0.8720 +6572 63910 0.5420 +6572 80115 0.5400 +6572 83988 0.5570 +6572 84251 0.5400 +6572 91056 0.5400 +6572 122616 0.5400 +6572 127833 0.4930 +6572 130340 0.5610 +6572 140679 0.9780 +6572 146713 0.4210 +6572 150350 0.5400 +6572 201780 0.5000 +6572 246213 0.9760 +6572 338917 0.4730 +6572 431707 0.4030 +6573 6948 0.6560 +6573 7172 0.9240 +6573 7298 0.7190 +6573 7593 0.4150 +6573 8644 0.4540 +6573 8714 0.4320 +6573 8836 0.9310 +6573 9356 0.5180 +6573 9429 0.4920 +6573 10057 0.4130 +6573 10257 0.4780 +6573 10560 0.4830 +6573 10599 0.5450 +6573 10797 0.4610 +6573 10841 0.4970 +6573 55106 0.4080 +6573 56262 0.4170 +6573 65124 0.4220 +6573 113235 0.8060 +6573 146802 0.5190 +6573 200895 0.6330 +6573 284312 0.4260 +6573 388611 0.6280 +6573 390243 0.4540 +6574 6575 0.7850 +6574 6670 0.5260 +6574 7357 0.5350 +6574 8074 0.5240 +6574 8795 0.5330 +6574 8825 0.4870 +6574 9213 0.4860 +6574 9365 0.4090 +6574 10246 0.6420 +6574 10560 0.4800 +6574 10568 0.6470 +6574 10786 0.4540 +6574 28982 0.5680 +6574 30816 0.5000 +6574 51678 0.5840 +6574 55244 0.4130 +6574 80308 0.4520 +6574 84255 0.4100 +6574 91227 0.5460 +6574 121260 0.6200 +6574 142680 0.6700 +6574 162466 0.4460 +6574 388662 0.4310 +6575 6582 0.4550 +6575 7167 0.4660 +6575 7252 0.4930 +6575 8074 0.6510 +6575 9213 0.8940 +6575 9365 0.5890 +6575 10246 0.5910 +6575 10568 0.7380 +6575 28982 0.4510 +6575 29919 0.8250 +6575 30816 0.5280 +6575 55065 0.4330 +6575 55145 0.4990 +6575 57462 0.8140 +6575 80308 0.4530 +6575 91227 0.5460 +6575 133418 0.4850 +6575 142680 0.8050 +6576 6804 0.4700 +6576 6809 0.4680 +6576 6810 0.4730 +6576 6899 0.5590 +6576 7108 0.4570 +6576 7122 0.5750 +6576 7290 0.6460 +6576 7353 0.7150 +6576 7384 0.4260 +6576 8218 0.8530 +6576 8220 0.8130 +6576 8402 0.5050 +6576 8676 0.4690 +6576 8789 0.4180 +6576 8802 0.4240 +6576 8803 0.5020 +6576 9058 0.4590 +6576 9581 0.4130 +6576 9993 0.8080 +6576 10155 0.4080 +6576 10244 0.4390 +6576 10587 0.5160 +6576 23008 0.4390 +6576 23331 0.5220 +6576 23588 0.4390 +6576 23787 0.5360 +6576 23788 0.5060 +6576 29107 0.5000 +6576 29801 0.5970 +6576 49856 0.4130 +6576 54455 0.4390 +6576 54584 0.5230 +6576 55902 0.5400 +6576 57209 0.4120 +6576 63932 0.7970 +6576 64849 0.4630 +6576 64976 0.8220 +6576 64978 0.5250 +6576 79944 0.5940 +6576 83447 0.6000 +6576 84532 0.4530 +6576 85359 0.4010 +6576 112755 0.4680 +6576 120892 0.5160 +6576 122773 0.4390 +6576 123207 0.7980 +6576 126823 0.4390 +6576 128989 0.6710 +6576 157310 0.4650 +6576 254359 0.4100 +6576 283106 0.5160 +6576 284111 0.6690 +6576 401612 0.4890 +6576 415117 0.4500 +6576 728294 0.5340 +6578 6583 0.4250 +6578 6584 0.4070 +6578 8856 0.4370 +6578 9376 0.4480 +6578 9536 0.5120 +6578 10257 0.5950 +6578 10864 0.4200 +6578 26227 0.4120 +6578 114571 0.4050 +6579 6580 0.6800 +6579 6581 0.4980 +6579 6582 0.5430 +6579 6583 0.6240 +6579 6584 0.6100 +6579 6822 0.5360 +6579 6927 0.5650 +6579 7355 0.5430 +6579 7363 0.4850 +6579 7364 0.5130 +6579 7365 0.4420 +6579 7366 0.4540 +6579 7367 0.4280 +6579 8087 0.4430 +6579 8431 0.7040 +6579 8647 0.7840 +6579 8714 0.7210 +6579 8856 0.6150 +6579 9154 0.4110 +6579 9356 0.6690 +6579 9360 0.6290 +6579 9376 0.7880 +6579 9390 0.4260 +6579 9420 0.4710 +6579 9429 0.7630 +6579 9917 0.4280 +6579 9970 0.4980 +6579 9971 0.7660 +6579 10057 0.5510 +6579 10257 0.7040 +6579 10351 0.4840 +6579 10613 0.4850 +6579 10720 0.4380 +6579 10864 0.8650 +6579 22802 0.5310 +6579 24140 0.6980 +6579 26027 0.7630 +6579 27304 0.6120 +6579 51063 0.6010 +6579 51081 0.6230 +6579 54490 0.4420 +6579 54575 0.5780 +6579 54576 0.5810 +6579 54577 0.5780 +6579 54578 0.5810 +6579 54579 0.4530 +6579 54600 0.4580 +6579 54657 0.5780 +6579 54658 0.5820 +6579 54659 0.4570 +6579 54883 0.7880 +6579 54955 0.7880 +6579 55244 0.6200 +6579 55276 0.7880 +6579 55867 0.6650 +6579 57560 0.4950 +6579 64240 0.4520 +6579 64241 0.4230 +6579 79799 0.4410 +6579 80183 0.7880 +6579 85413 0.4640 +6579 114571 0.7090 +6579 116085 0.4410 +6579 117247 0.5810 +6579 123264 0.5940 +6579 133688 0.6890 +6579 134526 0.7380 +6579 135152 0.4620 +6579 146802 0.5740 +6579 146894 0.6060 +6579 167127 0.6750 +6579 167410 0.8050 +6579 200931 0.6250 +6579 221301 0.6020 +6579 257218 0.4950 +6579 387775 0.5240 +6579 440138 0.4850 +6579 494188 0.4020 +6579 574537 0.4410 +6579 645191 0.4950 +6580 6582 0.4030 +6580 6583 0.4020 +6580 6794 0.4950 +6580 7364 0.4890 +6580 8647 0.6390 +6580 8714 0.6280 +6580 8856 0.4710 +6580 9056 0.4070 +6580 9153 0.8170 +6580 9154 0.8660 +6580 9356 0.4360 +6580 9360 0.4800 +6580 9429 0.8100 +6580 10057 0.4060 +6580 10257 0.6030 +6580 10599 0.7950 +6580 10864 0.4640 +6580 11309 0.7070 +6580 23446 0.4030 +6580 28231 0.4200 +6580 28234 0.7430 +6580 29956 0.8670 +6580 51081 0.4030 +6580 54575 0.4690 +6580 54576 0.4700 +6580 54577 0.4570 +6580 54578 0.4720 +6580 54657 0.5140 +6580 54658 0.4700 +6580 55244 0.8600 +6580 55530 0.4530 +6580 56606 0.6770 +6580 64078 0.4060 +6580 64240 0.4160 +6580 66035 0.4300 +6580 79072 0.4110 +6580 80704 0.4270 +6580 80736 0.4090 +6580 114134 0.4280 +6580 116843 0.4480 +6580 136306 0.4750 +6580 146802 0.8020 +6580 154091 0.4350 +6580 155185 0.4090 +6580 201305 0.8920 +6580 220963 0.4620 +6580 222962 0.7150 +6580 284001 0.4140 +6580 353189 0.4970 +6581 6582 0.4250 +6581 7752 0.5530 +6581 8290 0.4160 +6581 8356 0.4150 +6581 8714 0.4840 +6581 9356 0.5630 +6581 9429 0.4690 +6581 10078 0.4660 +6581 10257 0.4630 +6581 10599 0.4560 +6581 10741 0.4300 +6581 10919 0.7990 +6581 11309 0.5520 +6581 22853 0.4530 +6581 23062 0.4890 +6581 23163 0.4460 +6581 28231 0.4140 +6581 28234 0.4870 +6581 55190 0.4880 +6581 55244 0.7250 +6581 56606 0.4790 +6581 79693 0.6680 +6581 80704 0.4030 +6581 81031 0.4480 +6581 114134 0.4080 +6581 144195 0.4460 +6581 146802 0.6930 +6581 154091 0.4020 +6581 155184 0.4390 +6581 221749 0.4380 +6581 222962 0.7310 +6581 440093 0.4170 +6581 440686 0.4170 +6581 653604 0.4160 +6582 7172 0.4530 +6582 7369 0.4530 +6582 7752 0.5500 +6582 8029 0.4100 +6582 8170 0.4460 +6582 8647 0.4580 +6582 8714 0.4420 +6582 9153 0.4030 +6582 9356 0.5460 +6582 9360 0.4800 +6582 9376 0.4650 +6582 9429 0.6310 +6582 10257 0.5440 +6582 10555 0.4530 +6582 10599 0.6820 +6582 10741 0.4280 +6582 10919 0.7370 +6582 11136 0.4640 +6582 11309 0.5990 +6582 23062 0.4700 +6582 23163 0.4370 +6582 28232 0.4100 +6582 28234 0.6800 +6582 54575 0.4030 +6582 54576 0.4190 +6582 54577 0.4070 +6582 54578 0.4280 +6582 54657 0.4180 +6582 54658 0.4020 +6582 55244 0.9020 +6582 55867 0.4410 +6582 56606 0.6490 +6582 63027 0.4070 +6582 66035 0.4590 +6582 79693 0.6860 +6582 80736 0.4060 +6582 85025 0.4040 +6582 114134 0.4700 +6582 146802 0.8850 +6582 154091 0.4750 +6582 220963 0.4720 +6582 222962 0.6310 +6582 353189 0.5960 +6583 7082 0.4630 +6583 7128 0.4360 +6583 8714 0.4420 +6583 8764 0.4010 +6583 8884 0.4200 +6583 8974 0.6120 +6583 9153 0.5110 +6583 9154 0.5440 +6583 9231 0.6560 +6583 9351 0.4770 +6583 9368 0.4860 +6583 9429 0.6130 +6583 10057 0.4400 +6583 10257 0.6060 +6583 10599 0.5260 +6583 10871 0.4170 +6583 11309 0.6000 +6583 11314 0.5110 +6583 23428 0.4220 +6583 23446 0.4150 +6583 23569 0.7750 +6583 26151 0.5760 +6583 26191 0.5940 +6583 28231 0.5940 +6583 28232 0.5830 +6583 28234 0.5270 +6583 51081 0.4020 +6583 51522 0.4430 +6583 51744 0.4310 +6583 55244 0.7400 +6583 55315 0.4490 +6583 56606 0.6370 +6583 57410 0.4180 +6583 64078 0.4850 +6583 64127 0.8410 +6583 79092 0.4180 +6583 79837 0.4240 +6583 79849 0.6040 +6583 113235 0.4390 +6583 114799 0.4120 +6583 124599 0.5260 +6583 146802 0.7180 +6583 149233 0.4330 +6583 157570 0.4150 +6583 167826 0.4710 +6583 197021 0.4530 +6583 220963 0.5210 +6583 222962 0.5960 +6583 345611 0.5620 +6583 353189 0.6490 +6584 7082 0.4810 +6584 8140 0.4240 +6584 8424 0.5320 +6584 8714 0.5250 +6584 8974 0.6670 +6584 9153 0.4980 +6584 9154 0.4860 +6584 9231 0.5120 +6584 9351 0.4830 +6584 9368 0.5310 +6584 9429 0.6150 +6584 10057 0.4730 +6584 10257 0.5750 +6584 10599 0.5270 +6584 10861 0.4260 +6584 11254 0.4580 +6584 11309 0.6230 +6584 25974 0.4130 +6584 28231 0.5940 +6584 28232 0.6010 +6584 28234 0.5340 +6584 51081 0.4070 +6584 53919 0.4170 +6584 55217 0.5440 +6584 55244 0.6970 +6584 55876 0.5820 +6584 56606 0.5810 +6584 64078 0.4100 +6584 64127 0.7390 +6584 64137 0.4090 +6584 79849 0.6460 +6584 90865 0.4470 +6584 94103 0.4260 +6584 114571 0.5650 +6584 146802 0.6860 +6584 163486 0.4230 +6584 220963 0.5660 +6584 222962 0.4530 +6584 353189 0.6550 +6584 375056 0.4890 +6585 6586 0.5200 +6585 6876 0.4200 +6585 7026 0.4970 +6585 8440 0.5850 +6585 8633 0.5300 +6585 8828 0.5670 +6585 9037 0.4230 +6585 9353 0.5150 +6585 9355 0.6280 +6585 9423 0.8090 +6585 9723 0.4320 +6585 9901 0.7180 +6585 10371 0.5830 +6585 10505 0.4470 +6585 10763 0.5150 +6585 10916 0.4630 +6585 22854 0.6000 +6585 22859 0.5680 +6585 22865 0.4370 +6585 23266 0.5910 +6585 23284 0.5630 +6585 23380 0.7260 +6585 23767 0.5630 +6585 54538 0.9870 +6585 55839 0.4810 +6585 57453 0.4060 +6585 57497 0.4170 +6585 57522 0.8350 +6585 57556 0.4750 +6585 64221 0.9470 +6585 80031 0.4510 +6585 84504 0.7320 +6585 84628 0.5360 +6585 90249 0.5880 +6585 91584 0.4170 +6585 93986 0.4860 +6585 137970 0.4070 +6585 219699 0.6330 +6585 285220 0.5330 +6585 339479 0.4450 +6585 374946 0.4580 +6586 7026 0.5290 +6586 7852 0.6050 +6586 7869 0.4470 +6586 8633 0.7230 +6586 8828 0.6030 +6586 8829 0.4250 +6586 9037 0.5010 +6586 9353 0.5890 +6586 9423 0.9000 +6586 9723 0.5570 +6586 9901 0.7340 +6586 9956 0.4070 +6586 10371 0.7710 +6586 10512 0.5040 +6586 10763 0.5550 +6586 10916 0.4600 +6586 22854 0.6220 +6586 22859 0.5510 +6586 23129 0.6130 +6586 23266 0.6050 +6586 23284 0.5770 +6586 23380 0.7340 +6586 51705 0.4120 +6586 54437 0.5930 +6586 54538 0.9990 +6586 54856 0.4050 +6586 55839 0.4800 +6586 57522 0.9220 +6586 57556 0.5130 +6586 64221 0.9860 +6586 80031 0.4160 +6586 81832 0.4530 +6586 84504 0.6830 +6586 84628 0.5370 +6586 90249 0.5400 +6586 91584 0.4600 +6586 122664 0.4010 +6586 133015 0.4130 +6586 137970 0.4430 +6586 219699 0.6840 +6586 223117 0.4380 +6586 339479 0.5290 +6586 374946 0.4520 +6586 375790 0.4430 +6588 7125 0.6360 +6588 7134 0.4350 +6588 7135 0.5730 +6588 7136 0.4690 +6588 7138 0.5020 +6588 7139 0.4130 +6588 7140 0.5720 +6588 7273 0.5420 +6588 7350 0.5410 +6588 7352 0.4520 +6588 8048 0.7770 +6588 8557 0.4710 +6588 9499 0.4390 +6588 9697 0.7640 +6588 9914 0.4130 +6588 10324 0.7480 +6588 10345 0.6050 +6588 10930 0.4660 +6588 23676 0.5350 +6588 27032 0.4130 +6588 29895 0.8320 +6588 51778 0.5940 +6588 58498 0.5950 +6588 58529 0.7610 +6588 129446 0.5200 +6588 343263 0.4040 +6588 401152 0.5870 +6588 442721 0.4430 +6588 100130933 0.6050 +6588 100506013 0.4380 +6588 100507027 0.7550 +6588 100507537 0.8480 +6590 6696 0.5280 +6590 6703 0.4380 +6590 7097 0.4010 +6590 7124 0.4600 +6590 8530 0.4330 +6590 8785 0.4520 +6590 8993 0.6290 +6590 10406 0.6480 +6590 25818 0.5530 +6590 58189 0.6460 +6590 81027 0.7190 +6590 92747 0.4150 +6590 117166 0.5540 +6590 201895 0.4560 +6590 203068 0.4480 +6590 414325 0.8370 +6590 440387 0.7970 +6590 653145 0.5000 +6590 727897 0.4280 +6591 6615 0.8640 +6591 6657 0.7210 +6591 6659 0.6320 +6591 6662 0.9100 +6591 6663 0.8470 +6591 6678 0.4560 +6591 6714 0.5740 +6591 6736 0.4250 +6591 6756 0.5680 +6591 6757 0.4610 +6591 6774 0.6290 +6591 6909 0.4110 +6591 6925 0.4070 +6591 6926 0.4110 +6591 7003 0.4430 +6591 7040 0.7110 +6591 7042 0.6130 +6591 7043 0.4630 +6591 7046 0.5720 +6591 7048 0.5440 +6591 7070 0.4080 +6591 7078 0.4040 +6591 7082 0.6600 +6591 7101 0.5170 +6591 7124 0.4320 +6591 7157 0.9150 +6591 7168 0.4830 +6591 7169 0.4140 +6591 7291 0.9520 +6591 7299 0.4960 +6591 7424 0.4550 +6591 7431 0.8850 +6591 7471 0.4430 +6591 7474 0.5650 +6591 7703 0.4070 +6591 7837 0.6330 +6591 7852 0.6510 +6591 8061 0.4630 +6591 8091 0.7070 +6591 8290 0.4400 +6591 8312 0.4480 +6591 8313 0.4300 +6591 8328 0.4490 +6591 8356 0.4400 +6591 8434 0.4400 +6591 8462 0.4230 +6591 8535 0.5170 +6591 8549 0.4240 +6591 8646 0.4100 +6591 8650 0.4110 +6591 8726 0.5550 +6591 8728 0.4350 +6591 8817 0.4910 +6591 8822 0.4570 +6591 8823 0.4900 +6591 8841 0.5670 +6591 8842 0.6260 +6591 8994 0.4440 +6591 9076 0.6140 +6591 9112 0.6140 +6591 9219 0.5820 +6591 9314 0.5490 +6591 9353 0.4860 +6591 9414 0.4400 +6591 9429 0.5250 +6591 9611 0.6280 +6591 9839 0.4760 +6591 10014 0.5500 +6591 10273 0.4830 +6591 10370 0.4350 +6591 10397 0.4210 +6591 10413 0.7320 +6591 10631 0.4980 +6591 10763 0.4880 +6591 22943 0.4580 +6591 22955 0.4990 +6591 23028 0.9740 +6591 23186 0.6260 +6591 23462 0.4710 +6591 23466 0.5020 +6591 23512 0.7700 +6591 25803 0.5100 +6591 25942 0.8820 +6591 26281 0.4910 +6591 27006 0.4780 +6591 27022 0.7980 +6591 29126 0.4160 +6591 30812 0.4040 +6591 51176 0.7160 +6591 51450 0.5040 +6591 51564 0.5620 +6591 53615 0.4990 +6591 54815 0.5210 +6591 54845 0.4240 +6591 55636 0.6230 +6591 55727 0.7730 +6591 57167 0.5490 +6591 57332 0.5570 +6591 57459 0.5210 +6591 57504 0.6080 +6591 58495 0.4710 +6591 79727 0.4110 +6591 79776 0.4180 +6591 79923 0.6780 +6591 79977 0.4470 +6591 80012 0.5490 +6591 81029 0.4050 +6591 84232 0.4990 +6591 84733 0.5250 +6591 89780 0.4540 +6591 93649 0.4890 +6591 117581 0.8260 +6591 122786 0.4660 +6591 137902 0.6000 +6591 144699 0.4370 +6591 200933 0.4950 +6591 333929 0.5280 +6591 377630 0.4490 +6591 440093 0.4410 +6591 440686 0.4410 +6591 653604 0.4410 +6591 100133941 0.6200 +6591 100506658 0.6100 +6591 100532731 0.5980 +6594 6595 0.9480 +6594 6596 0.6080 +6594 6597 0.9580 +6594 6598 0.8430 +6594 6599 0.9230 +6594 6601 0.8300 +6594 6602 0.5790 +6594 6603 0.4500 +6594 6604 0.4940 +6594 6605 0.5640 +6594 6749 0.5650 +6594 6827 0.4160 +6594 6830 0.4930 +6594 6908 0.4490 +6594 6944 0.4800 +6594 7155 0.4830 +6594 7158 0.5940 +6594 7391 0.5580 +6594 7403 0.5590 +6594 7799 0.4780 +6594 8019 0.4600 +6594 8289 0.6560 +6594 8290 0.8060 +6594 8295 0.4700 +6594 8337 0.8230 +6594 8338 0.8230 +6594 8340 0.4150 +6594 8341 0.4130 +6594 8342 0.4150 +6594 8345 0.4150 +6594 8347 0.4200 +6594 8348 0.4150 +6594 8349 0.8290 +6594 8350 0.6980 +6594 8351 0.4060 +6594 8352 0.6600 +6594 8353 0.6710 +6594 8356 0.8800 +6594 8361 0.7770 +6594 8369 0.7840 +6594 8467 0.9740 +6594 8607 0.6760 +6594 8653 0.4050 +6594 8726 0.4710 +6594 8815 0.6890 +6594 8841 0.4180 +6594 8850 0.6070 +6594 8970 0.4220 +6594 9031 0.9980 +6594 9044 0.6130 +6594 9112 0.4440 +6594 9189 0.6470 +6594 9219 0.4360 +6594 9401 0.4340 +6594 9555 0.6270 +6594 9611 0.4350 +6594 9682 0.4820 +6594 9738 0.5310 +6594 9739 0.6120 +6594 10042 0.9690 +6594 10155 0.4240 +6594 10524 0.5410 +6594 10664 0.4650 +6594 10847 0.4280 +6594 10856 0.5810 +6594 10919 0.4030 +6594 10933 0.5820 +6594 10943 0.4720 +6594 10951 0.6370 +6594 11091 0.6560 +6594 11169 0.4280 +6594 11176 0.8100 +6594 11177 0.9990 +6594 11198 0.6170 +6594 11201 0.4720 +6594 11335 0.4140 +6594 23028 0.4350 +6594 23081 0.4340 +6594 23126 0.5210 +6594 23186 0.4100 +6594 23244 0.4310 +6594 23269 0.6090 +6594 23309 0.5860 +6594 23476 0.5430 +6594 23512 0.4330 +6594 25836 0.4460 +6594 25942 0.7610 +6594 27068 0.4550 +6594 27443 0.9990 +6594 29063 0.5860 +6594 29072 0.4740 +6594 29117 0.4660 +6594 29947 0.4560 +6594 29980 0.6770 +6594 29994 0.9310 +6594 50619 0.4060 +6594 51412 0.5370 +6594 51548 0.5040 +6594 51773 0.9680 +6594 54107 0.9940 +6594 54108 0.9820 +6594 54145 0.4150 +6594 54514 0.4260 +6594 54556 0.7120 +6594 54737 0.4320 +6594 54815 0.4400 +6594 54882 0.5860 +6594 55167 0.4020 +6594 55170 0.4420 +6594 55193 0.8500 +6594 55274 0.4080 +6594 55506 0.4430 +6594 55636 0.4390 +6594 55660 0.5540 +6594 55814 0.4430 +6594 55869 0.4860 +6594 55929 0.4610 +6594 56254 0.4200 +6594 56655 0.6380 +6594 57492 0.5890 +6594 57504 0.4300 +6594 57680 0.4690 +6594 57697 0.4850 +6594 65980 0.4250 +6594 79366 0.5070 +6594 79913 0.4440 +6594 79923 0.4820 +6594 80205 0.4490 +6594 80854 0.4210 +6594 84148 0.4090 +6594 84181 0.4550 +6594 84444 0.5520 +6594 84661 0.7680 +6594 84950 0.6350 +6594 85236 0.4230 +6594 94239 0.5730 +6594 124944 0.9740 +6594 125476 0.5220 +6594 126961 0.4140 +6594 128312 0.4180 +6594 158983 0.4190 +6594 196528 0.4890 +6594 221656 0.5020 +6594 255626 0.4290 +6594 286436 0.4160 +6594 440093 0.8060 +6594 440686 0.8060 +6594 440689 0.4150 +6594 474381 0.5030 +6594 474382 0.4750 +6594 653604 0.8060 +6594 100529209 0.5400 +6594 114483833 0.4170 +6595 6596 0.7120 +6595 6597 0.9990 +6595 6598 0.9990 +6595 6599 0.9990 +6595 6601 0.9990 +6595 6602 0.9990 +6595 6603 0.9990 +6595 6604 0.9990 +6595 6605 0.9990 +6595 6613 0.5100 +6595 6657 0.5880 +6595 6658 0.5670 +6595 6664 0.4950 +6595 6688 0.4290 +6595 6749 0.6010 +6595 6757 0.8080 +6595 6760 0.9960 +6595 6792 0.4040 +6595 6830 0.4850 +6595 6872 0.5520 +6595 6908 0.6870 +6595 6921 0.8400 +6595 6923 0.8200 +6595 6926 0.4430 +6595 6944 0.7180 +6595 7015 0.4870 +6595 7155 0.5540 +6595 7157 0.4760 +6595 7158 0.4020 +6595 7290 0.4960 +6595 7334 0.5130 +6595 7403 0.5070 +6595 7428 0.9100 +6595 7486 0.4230 +6595 7546 0.4620 +6595 8019 0.5950 +6595 8089 0.7180 +6595 8193 0.9730 +6595 8202 0.5050 +6595 8289 0.9990 +6595 8290 0.8150 +6595 8295 0.5440 +6595 8337 0.8730 +6595 8338 0.8730 +6595 8349 0.8350 +6595 8350 0.5130 +6595 8352 0.5120 +6595 8353 0.5190 +6595 8356 0.8880 +6595 8361 0.9050 +6595 8369 0.8190 +6595 8431 0.6480 +6595 8438 0.4540 +6595 8458 0.4750 +6595 8467 0.6960 +6595 8607 0.7750 +6595 8815 0.8620 +6595 8841 0.4100 +6595 8850 0.8740 +6595 9031 0.7200 +6595 9044 0.7060 +6595 9063 0.5180 +6595 9126 0.5140 +6595 9156 0.4370 +6595 9274 0.9930 +6595 9275 0.9850 +6595 9314 0.5260 +6595 9437 0.7200 +6595 9555 0.4610 +6595 9611 0.7820 +6595 9612 0.4860 +6595 9739 0.4310 +6595 10036 0.4670 +6595 10146 0.5190 +6595 10155 0.5000 +6595 10419 0.8900 +6595 10432 0.4790 +6595 10476 0.4060 +6595 10524 0.6710 +6595 10657 0.4240 +6595 10664 0.4260 +6595 10771 0.5420 +6595 10847 0.6830 +6595 10856 0.6400 +6595 10919 0.4140 +6595 10921 0.4190 +6595 10951 0.7000 +6595 11060 0.4660 +6595 11073 0.5360 +6595 11176 0.6020 +6595 11177 0.8620 +6595 11198 0.4880 +6595 22992 0.4050 +6595 23135 0.4410 +6595 23309 0.4300 +6595 23468 0.6750 +6595 23476 0.6440 +6595 23506 0.9670 +6595 25788 0.5120 +6595 25836 0.4160 +6595 25842 0.5300 +6595 25942 0.8300 +6595 26039 0.7350 +6595 26053 0.4010 +6595 27443 0.4720 +6595 29028 0.4280 +6595 29072 0.4220 +6595 29117 0.9770 +6595 29803 0.4920 +6595 29998 0.9860 +6595 50485 0.5330 +6595 51188 0.6140 +6595 51412 0.9820 +6595 51592 0.4080 +6595 51773 0.5170 +6595 51780 0.6830 +6595 53335 0.9480 +6595 54107 0.4120 +6595 54108 0.4350 +6595 54617 0.4630 +6595 54821 0.4950 +6595 54904 0.4250 +6595 55193 0.9990 +6595 55274 0.9960 +6595 55352 0.5650 +6595 55506 0.4040 +6595 55723 0.4910 +6595 55818 0.7080 +6595 55869 0.4080 +6595 55929 0.5590 +6595 56254 0.4230 +6595 56852 0.4930 +6595 56916 0.4860 +6595 57492 0.9990 +6595 57634 0.4690 +6595 57697 0.4180 +6595 58508 0.4410 +6595 60489 0.7520 +6595 64919 0.9510 +6595 65980 0.9960 +6595 79084 0.5800 +6595 79648 0.4140 +6595 80198 0.4960 +6595 80308 0.5480 +6595 83444 0.4160 +6595 84083 0.4630 +6595 84159 0.6070 +6595 84181 0.6000 +6595 91752 0.4570 +6595 94239 0.4580 +6595 114803 0.6340 +6595 122953 0.4380 +6595 125476 0.7040 +6595 126961 0.4160 +6595 135112 0.4420 +6595 164045 0.5740 +6595 171017 0.5490 +6595 171023 0.4560 +6595 192670 0.4970 +6595 196528 0.9940 +6595 219770 0.4200 +6595 222389 0.5600 +6595 257218 0.8050 +6595 345651 0.4020 +6595 440093 0.8150 +6595 440686 0.8150 +6595 474381 0.4040 +6595 653604 0.8860 +6595 728378 0.6720 +6596 6597 0.7080 +6596 6612 0.4940 +6596 6613 0.5120 +6596 7158 0.6240 +6596 7182 0.4220 +6596 7311 0.5370 +6596 7314 0.5420 +6596 7316 0.6820 +6596 7319 0.6240 +6596 7320 0.7900 +6596 7334 0.9960 +6596 7336 0.9900 +6596 7374 0.4980 +6596 7398 0.4820 +6596 7486 0.7070 +6596 7507 0.4480 +6596 7517 0.5330 +6596 7874 0.4020 +6596 8295 0.5030 +6596 8361 0.6180 +6596 8438 0.5520 +6596 8450 0.4090 +6596 8451 0.4680 +6596 8467 0.4380 +6596 8554 0.4560 +6596 8607 0.4390 +6596 8914 0.4400 +6596 8916 0.4350 +6596 8924 0.8220 +6596 9044 0.4030 +6596 9063 0.4390 +6596 9156 0.7380 +6596 9400 0.5170 +6596 9401 0.6330 +6596 9557 0.7660 +6596 9730 0.6740 +6596 10127 0.4070 +6596 10198 0.4790 +6596 10459 0.5710 +6596 10623 0.4180 +6596 10660 0.4820 +6596 10801 0.5120 +6596 11073 0.4170 +6596 11169 0.4240 +6596 11200 0.4380 +6596 22976 0.5680 +6596 23172 0.4190 +6596 23583 0.4440 +6596 23671 0.4470 +6596 25788 0.5950 +6596 27343 0.4460 +6596 27350 0.4050 +6596 27434 0.4550 +6596 50485 0.5800 +6596 51455 0.7730 +6596 51514 0.4920 +6596 51588 0.4450 +6596 54465 0.5310 +6596 54790 0.4460 +6596 54821 0.5610 +6596 54962 0.5270 +6596 55086 0.6220 +6596 55257 0.4830 +6596 55388 0.5400 +6596 55743 0.6940 +6596 55929 0.5620 +6596 56852 0.9960 +6596 56897 0.6250 +6596 56916 0.4970 +6596 56987 0.4160 +6596 57473 0.4570 +6596 57696 0.5250 +6596 57697 0.8530 +6596 58524 0.4810 +6596 60529 0.4780 +6596 63967 0.4150 +6596 65009 0.4220 +6596 79016 0.4820 +6596 79621 0.4460 +6596 79677 0.4450 +6596 79915 0.6690 +6596 80119 0.4760 +6596 80198 0.7980 +6596 81554 0.4200 +6596 81847 0.6150 +6596 83932 0.5370 +6596 83990 0.6300 +6596 84083 0.7170 +6596 84250 0.5420 +6596 84271 0.4990 +6596 84464 0.5090 +6596 84619 0.4380 +6596 84661 0.4750 +6596 84893 0.7480 +6596 136332 0.5760 +6596 146956 0.4590 +6596 148479 0.4550 +6596 157570 0.4470 +6596 197342 0.5060 +6596 197370 0.4160 +6596 200558 0.7510 +6596 201973 0.7000 +6596 253714 0.4560 +6596 257218 0.7230 +6596 259282 0.5100 +6596 387082 0.4940 +6596 100288687 0.5850 +6597 6598 0.9990 +6597 6599 0.9990 +6597 6601 0.9990 +6597 6602 0.9990 +6597 6603 0.9990 +6597 6604 0.9990 +6597 6605 0.9990 +6597 6613 0.4660 +6597 6615 0.5640 +6597 6657 0.8230 +6597 6659 0.4750 +6597 6663 0.9370 +6597 6664 0.5820 +6597 6667 0.8120 +6597 6722 0.6640 +6597 6749 0.6170 +6597 6757 0.6380 +6597 6760 0.9960 +6597 6772 0.8500 +6597 6773 0.7990 +6597 6774 0.5710 +6597 6776 0.7020 +6597 6777 0.7830 +6597 6794 0.9200 +6597 6830 0.5350 +6597 6839 0.8470 +6597 6862 0.4820 +6597 6872 0.7360 +6597 6900 0.4280 +6597 6908 0.6120 +6597 6910 0.8850 +6597 6921 0.8500 +6597 6923 0.8200 +6597 6929 0.4070 +6597 6932 0.6080 +6597 6934 0.6060 +6597 7015 0.9900 +6597 7080 0.6320 +6597 7088 0.6000 +6597 7089 0.5490 +6597 7090 0.5970 +6597 7091 0.5310 +6597 7101 0.5910 +6597 7150 0.6760 +6597 7153 0.5620 +6597 7155 0.7190 +6597 7157 0.9930 +6597 7158 0.4330 +6597 7249 0.4060 +6597 7290 0.5010 +6597 7334 0.4970 +6597 7391 0.4420 +6597 7403 0.8480 +6597 7428 0.9170 +6597 7468 0.4290 +6597 7486 0.4310 +6597 7490 0.4110 +6597 7508 0.5340 +6597 7520 0.5940 +6597 7528 0.7090 +6597 7532 0.4670 +6597 7533 0.4640 +6597 7534 0.6340 +6597 7543 0.4330 +6597 7707 0.4970 +6597 7739 0.5400 +6597 7874 0.5390 +6597 8013 0.4220 +6597 8019 0.6520 +6597 8028 0.4880 +6597 8085 0.5660 +6597 8089 0.5560 +6597 8193 0.9870 +6597 8239 0.4640 +6597 8241 0.4900 +6597 8242 0.6220 +6597 8289 0.9990 +6597 8290 0.9660 +6597 8294 0.9290 +6597 8295 0.4590 +6597 8320 0.5480 +6597 8334 0.8480 +6597 8337 0.8220 +6597 8338 0.8200 +6597 8339 0.8370 +6597 8343 0.8320 +6597 8344 0.8300 +6597 8346 0.8300 +6597 8347 0.8690 +6597 8348 0.8720 +6597 8349 0.9610 +6597 8350 0.9700 +6597 8351 0.9310 +6597 8352 0.9500 +6597 8353 0.9490 +6597 8354 0.9310 +6597 8355 0.9330 +6597 8356 0.9950 +6597 8357 0.9320 +6597 8358 0.9440 +6597 8359 0.9290 +6597 8360 0.9290 +6597 8361 0.9900 +6597 8362 0.9290 +6597 8363 0.9290 +6597 8364 0.9300 +6597 8366 0.9300 +6597 8367 0.9290 +6597 8368 0.9300 +6597 8369 0.7650 +6597 8370 0.9290 +6597 8438 0.4590 +6597 8452 0.5240 +6597 8454 0.4260 +6597 8458 0.4690 +6597 8467 0.9080 +6597 8607 0.7110 +6597 8648 0.4450 +6597 8726 0.4350 +6597 8805 0.4850 +6597 8815 0.9980 +6597 8841 0.6100 +6597 8850 0.9460 +6597 8886 0.4060 +6597 8899 0.5180 +6597 8945 0.4810 +6597 8968 0.9310 +6597 9031 0.8740 +6597 9044 0.6970 +6597 9126 0.5510 +6597 9156 0.4110 +6597 9181 0.4600 +6597 9219 0.6940 +6597 9252 0.6830 +6597 9274 0.9940 +6597 9275 0.9930 +6597 9314 0.7420 +6597 9425 0.4260 +6597 9437 0.7200 +6597 9440 0.5980 +6597 9555 0.6170 +6597 9611 0.8200 +6597 9612 0.5340 +6597 9646 0.4030 +6597 9656 0.6390 +6597 9682 0.6990 +6597 9734 0.9350 +6597 9739 0.7140 +6597 9759 0.6900 +6597 9794 0.4230 +6597 9817 0.4550 +6597 9869 0.5020 +6597 9967 0.5140 +6597 9968 0.5520 +6597 10155 0.8930 +6597 10215 0.5950 +6597 10320 0.7150 +6597 10409 0.4390 +6597 10413 0.6460 +6597 10419 0.9770 +6597 10432 0.7160 +6597 10474 0.5400 +6597 10481 0.5150 +6597 10498 0.7840 +6597 10499 0.7130 +6597 10514 0.6370 +6597 10521 0.5230 +6597 10524 0.5770 +6597 10661 0.4930 +6597 10664 0.7380 +6597 10765 0.4760 +6597 10847 0.6620 +6597 10856 0.7320 +6597 10919 0.8010 +6597 10951 0.6200 +6597 11060 0.5070 +6597 11073 0.6860 +6597 11091 0.7200 +6597 11176 0.4270 +6597 11177 0.7760 +6597 11186 0.4320 +6597 11198 0.5730 +6597 11200 0.4150 +6597 11335 0.7630 +6597 22823 0.4990 +6597 23028 0.8940 +6597 23030 0.7830 +6597 23081 0.5770 +6597 23133 0.4680 +6597 23135 0.9350 +6597 23186 0.7860 +6597 23191 0.4580 +6597 23210 0.5130 +6597 23309 0.5220 +6597 23394 0.6400 +6597 23405 0.4250 +6597 23411 0.6690 +6597 23429 0.4100 +6597 23468 0.9230 +6597 23476 0.9570 +6597 23506 0.9740 +6597 23512 0.6900 +6597 23523 0.4200 +6597 23560 0.4170 +6597 23613 0.4630 +6597 25788 0.4910 +6597 25836 0.4260 +6597 25842 0.6540 +6597 25942 0.9480 +6597 26039 0.8590 +6597 26354 0.8780 +6597 27022 0.6910 +6597 27161 0.5330 +6597 27302 0.7300 +6597 27343 0.4980 +6597 27443 0.4910 +6597 28316 0.5130 +6597 28513 0.4980 +6597 29028 0.4210 +6597 29072 0.5990 +6597 29117 0.9990 +6597 29803 0.4730 +6597 29842 0.4100 +6597 29855 0.4700 +6597 29894 0.5130 +6597 29998 0.9900 +6597 30009 0.6830 +6597 30812 0.4720 +6597 50485 0.4720 +6597 50804 0.5440 +6597 51053 0.4010 +6597 51176 0.7580 +6597 51188 0.6320 +6597 51412 0.9800 +6597 51510 0.4560 +6597 51534 0.4250 +6597 51567 0.4910 +6597 51592 0.4660 +6597 51593 0.4190 +6597 51701 0.4800 +6597 51741 0.5380 +6597 51742 0.5750 +6597 51773 0.5440 +6597 51780 0.7450 +6597 53335 0.9560 +6597 53615 0.5050 +6597 53918 0.4370 +6597 53981 0.5870 +6597 54014 0.9490 +6597 54108 0.4700 +6597 54552 0.4920 +6597 54617 0.4490 +6597 54790 0.5410 +6597 54815 0.4500 +6597 54821 0.4140 +6597 54861 0.4370 +6597 54894 0.4080 +6597 54904 0.5280 +6597 55023 0.5480 +6597 55122 0.5660 +6597 55143 0.4180 +6597 55193 0.9990 +6597 55274 0.9990 +6597 55294 0.8080 +6597 55352 0.6080 +6597 55506 0.4030 +6597 55636 0.7870 +6597 55723 0.4750 +6597 55743 0.6230 +6597 55818 0.9720 +6597 55869 0.4150 +6597 55870 0.4990 +6597 56254 0.4900 +6597 56852 0.4800 +6597 56916 0.6130 +6597 57167 0.6650 +6597 57459 0.6010 +6597 57492 0.9990 +6597 57591 0.7430 +6597 57634 0.4570 +6597 57680 0.6000 +6597 57822 0.5310 +6597 58508 0.6150 +6597 60489 0.6210 +6597 63973 0.4370 +6597 64332 0.5280 +6597 64641 0.5010 +6597 64919 0.9670 +6597 65980 0.9980 +6597 79084 0.7980 +6597 79577 0.4560 +6597 79633 0.5260 +6597 79648 0.4340 +6597 79661 0.4410 +6597 79697 0.4980 +6597 79728 0.4010 +6597 79753 0.5060 +6597 79813 0.4460 +6597 79885 0.5810 +6597 79923 0.6950 +6597 80198 0.4400 +6597 80854 0.5490 +6597 83439 0.7150 +6597 83637 0.7050 +6597 83879 0.4610 +6597 84083 0.4350 +6597 84159 0.6130 +6597 84444 0.6400 +6597 84678 0.6380 +6597 84955 0.6220 +6597 93624 0.4100 +6597 93649 0.6690 +6597 94239 0.4220 +6597 114803 0.6470 +6597 121340 0.4890 +6597 121504 0.9290 +6597 125476 0.6500 +6597 126961 0.4150 +6597 133482 0.5560 +6597 135112 0.4190 +6597 164045 0.5120 +6597 196528 0.9990 +6597 255738 0.4370 +6597 256646 0.5040 +6597 257218 0.7680 +6597 283248 0.4940 +6597 285527 0.4530 +6597 317772 0.8490 +6597 440093 0.9360 +6597 440686 0.9130 +6597 554313 0.9290 +6597 653604 0.9460 +6597 728378 0.7370 +6597 100507027 0.5370 +6597 100532731 0.6700 +6598 6599 0.9990 +6598 6601 0.9990 +6598 6602 0.9990 +6598 6603 0.9990 +6598 6604 0.9990 +6598 6605 0.9990 +6598 6657 0.6890 +6598 6663 0.4830 +6598 6664 0.4970 +6598 6756 0.5180 +6598 6757 0.6080 +6598 6760 0.9950 +6598 6772 0.4260 +6598 6794 0.5840 +6598 6830 0.5250 +6598 6855 0.5840 +6598 6907 0.5450 +6598 7015 0.4350 +6598 7019 0.4080 +6598 7030 0.5070 +6598 7088 0.5160 +6598 7155 0.5120 +6598 7157 0.9760 +6598 7158 0.4900 +6598 7290 0.4040 +6598 7299 0.4430 +6598 7403 0.5340 +6598 7490 0.5070 +6598 7508 0.9700 +6598 7514 0.4470 +6598 7528 0.5660 +6598 7849 0.4470 +6598 7913 0.4090 +6598 8019 0.4650 +6598 8028 0.6130 +6598 8061 0.4280 +6598 8089 0.8620 +6598 8178 0.4190 +6598 8193 0.9870 +6598 8216 0.6620 +6598 8242 0.4420 +6598 8243 0.4520 +6598 8289 0.9990 +6598 8290 0.6100 +6598 8294 0.8530 +6598 8334 0.9270 +6598 8337 0.8000 +6598 8338 0.6930 +6598 8339 0.9130 +6598 8343 0.9130 +6598 8344 0.9130 +6598 8346 0.9130 +6598 8347 0.9170 +6598 8349 0.9690 +6598 8350 0.8610 +6598 8351 0.8590 +6598 8352 0.8890 +6598 8353 0.8810 +6598 8354 0.8590 +6598 8355 0.8660 +6598 8356 0.9650 +6598 8357 0.8590 +6598 8358 0.8970 +6598 8359 0.8530 +6598 8360 0.8530 +6598 8361 0.9790 +6598 8362 0.8530 +6598 8363 0.8530 +6598 8364 0.8530 +6598 8366 0.8530 +6598 8367 0.8530 +6598 8368 0.8530 +6598 8369 0.4500 +6598 8370 0.8530 +6598 8467 0.7670 +6598 8487 0.5610 +6598 8607 0.4020 +6598 8726 0.5180 +6598 8815 0.8780 +6598 8850 0.6360 +6598 8968 0.8590 +6598 9172 0.5410 +6598 9274 0.9910 +6598 9275 0.9890 +6598 9373 0.4700 +6598 9401 0.6320 +6598 9437 0.7200 +6598 9555 0.6530 +6598 9611 0.7540 +6598 9612 0.5020 +6598 9656 0.5320 +6598 9739 0.4270 +6598 9757 0.4920 +6598 9759 0.6800 +6598 9821 0.7070 +6598 9939 0.8290 +6598 10081 0.5420 +6598 10155 0.4940 +6598 10284 0.7410 +6598 10419 0.6920 +6598 10460 0.4420 +6598 10498 0.4900 +6598 10620 0.5170 +6598 10661 0.5810 +6598 10664 0.4190 +6598 10730 0.4530 +6598 10847 0.4320 +6598 10865 0.5290 +6598 11060 0.5570 +6598 11083 0.6290 +6598 11168 0.6850 +6598 23028 0.5120 +6598 23078 0.4240 +6598 23309 0.4090 +6598 23429 0.4590 +6598 23476 0.7110 +6598 23506 0.9450 +6598 23512 0.4650 +6598 23523 0.6190 +6598 23645 0.8570 +6598 25842 0.5210 +6598 25942 0.8100 +6598 25957 0.5410 +6598 26039 0.8470 +6598 26609 0.5410 +6598 27161 0.4460 +6598 29072 0.4940 +6598 29117 0.9980 +6598 29803 0.6560 +6598 29855 0.4830 +6598 29998 0.9830 +6598 30827 0.6650 +6598 51188 0.6010 +6598 51412 0.9890 +6598 51548 0.4970 +6598 51684 0.6510 +6598 51742 0.7270 +6598 53335 0.9620 +6598 54458 0.5410 +6598 54474 0.4500 +6598 55011 0.4300 +6598 55031 0.4020 +6598 55193 0.9990 +6598 55274 0.9990 +6598 55294 0.5730 +6598 55311 0.4180 +6598 55352 0.5110 +6598 55636 0.5020 +6598 55660 0.4160 +6598 55689 0.4200 +6598 55859 0.4220 +6598 55870 0.4690 +6598 56156 0.6100 +6598 56852 0.4550 +6598 56916 0.4670 +6598 57167 0.4250 +6598 57492 0.9990 +6598 57680 0.5230 +6598 58508 0.7490 +6598 60489 0.5120 +6598 64919 0.9210 +6598 65980 0.9880 +6598 79084 0.5410 +6598 79718 0.5620 +6598 79813 0.5330 +6598 79885 0.5060 +6598 80125 0.5930 +6598 84159 0.8060 +6598 84231 0.5560 +6598 84707 0.4410 +6598 84955 0.6510 +6598 85236 0.4750 +6598 85358 0.4780 +6598 90780 0.5930 +6598 93973 0.4090 +6598 114803 0.8510 +6598 121504 0.8530 +6598 133482 0.4970 +6598 138715 0.5400 +6598 140836 0.6360 +6598 168400 0.4110 +6598 171017 0.4030 +6598 196528 0.9990 +6598 256646 0.5860 +6598 284018 0.5410 +6598 387640 0.5410 +6598 389493 0.7630 +6598 400566 0.4330 +6598 415116 0.5010 +6598 425054 0.5410 +6598 440093 0.6100 +6598 440686 0.6100 +6598 554313 0.8530 +6598 653604 0.7600 +6598 728378 0.4530 +6599 6601 0.9990 +6599 6602 0.9990 +6599 6603 0.9990 +6599 6604 0.9990 +6599 6605 0.9990 +6599 6613 0.4650 +6599 6657 0.7650 +6599 6659 0.4160 +6599 6749 0.7470 +6599 6760 0.9910 +6599 6829 0.7120 +6599 6830 0.7810 +6599 7090 0.4230 +6599 7101 0.5980 +6599 7155 0.6460 +6599 7157 0.6890 +6599 7182 0.4800 +6599 7403 0.6020 +6599 7702 0.4480 +6599 8019 0.5040 +6599 8193 0.9870 +6599 8241 0.5790 +6599 8289 0.9990 +6599 8290 0.5980 +6599 8337 0.5370 +6599 8338 0.5300 +6599 8340 0.4910 +6599 8341 0.4890 +6599 8342 0.4910 +6599 8345 0.5010 +6599 8347 0.5070 +6599 8348 0.5150 +6599 8349 0.7560 +6599 8356 0.7550 +6599 8361 0.8080 +6599 8369 0.4880 +6599 8467 0.8780 +6599 8570 0.4390 +6599 8815 0.7860 +6599 8819 0.5080 +6599 8850 0.6740 +6599 8880 0.4100 +6599 8886 0.4430 +6599 8914 0.8620 +6599 8970 0.4890 +6599 9031 0.8830 +6599 9063 0.4240 +6599 9112 0.4120 +6599 9219 0.4520 +6599 9274 0.9940 +6599 9275 0.9700 +6599 9282 0.5560 +6599 9437 0.7200 +6599 9555 0.4470 +6599 9611 0.8950 +6599 9656 0.7270 +6599 9991 0.4050 +6599 10155 0.7230 +6599 10419 0.7980 +6599 10498 0.7420 +6599 10524 0.4040 +6599 10620 0.4390 +6599 10657 0.4220 +6599 10661 0.6430 +6599 10664 0.4700 +6599 10675 0.5000 +6599 10847 0.4600 +6599 10856 0.5610 +6599 10915 0.4590 +6599 11052 0.4500 +6599 11060 0.4850 +6599 11083 0.5330 +6599 11169 0.5680 +6599 11198 0.7770 +6599 23028 0.8900 +6599 23135 0.5680 +6599 23186 0.4950 +6599 23476 0.7570 +6599 23506 0.9740 +6599 23512 0.4160 +6599 23774 0.5300 +6599 25842 0.4620 +6599 25942 0.7720 +6599 26039 0.8110 +6599 27161 0.4820 +6599 27327 0.4340 +6599 29072 0.4430 +6599 29117 0.9940 +6599 29855 0.4370 +6599 29998 0.9800 +6599 30827 0.5230 +6599 51188 0.5530 +6599 51412 0.9760 +6599 51574 0.4050 +6599 51603 0.4730 +6599 51741 0.4220 +6599 51742 0.7100 +6599 51773 0.5980 +6599 51780 0.7610 +6599 53335 0.9700 +6599 53615 0.4560 +6599 54145 0.4930 +6599 54765 0.4660 +6599 54904 0.4460 +6599 54952 0.4410 +6599 54962 0.5330 +6599 55193 0.9990 +6599 55274 0.9970 +6599 55352 0.4990 +6599 55636 0.7260 +6599 55660 0.4450 +6599 55814 0.8320 +6599 55818 0.7380 +6599 55870 0.4950 +6599 56156 0.6070 +6599 56916 0.5110 +6599 57492 0.9990 +6599 57634 0.5570 +6599 57680 0.6130 +6599 60489 0.4990 +6599 63967 0.7110 +6599 64919 0.9290 +6599 65980 0.9980 +6599 79084 0.6000 +6599 79648 0.6080 +6599 79718 0.5870 +6599 80205 0.4150 +6599 80335 0.4100 +6599 83879 0.4330 +6599 84159 0.4470 +6599 85236 0.4970 +6599 128312 0.4930 +6599 131405 0.4490 +6599 158983 0.4930 +6599 161176 0.4400 +6599 196528 0.9960 +6599 221656 0.4880 +6599 255626 0.5090 +6599 283248 0.4880 +6599 286436 0.4930 +6599 347744 0.4410 +6599 440093 0.5980 +6599 440686 0.5980 +6599 440689 0.5050 +6599 653604 0.7520 +6599 100533467 0.4070 +6599 114483833 0.4930 +6601 6602 0.9990 +6601 6603 0.9990 +6601 6604 0.9990 +6601 6605 0.9990 +6601 6613 0.4380 +6601 6657 0.5290 +6601 6760 0.9910 +6601 6830 0.5240 +6601 7090 0.4250 +6601 7155 0.5330 +6601 7158 0.5450 +6601 8019 0.4910 +6601 8089 0.4160 +6601 8193 0.9880 +6601 8242 0.5020 +6601 8289 0.9990 +6601 8290 0.4980 +6601 8294 0.8560 +6601 8334 0.8340 +6601 8337 0.4560 +6601 8338 0.4480 +6601 8339 0.8350 +6601 8343 0.8250 +6601 8344 0.8250 +6601 8346 0.8250 +6601 8347 0.8370 +6601 8348 0.8450 +6601 8349 0.8890 +6601 8350 0.8920 +6601 8351 0.8450 +6601 8352 0.8590 +6601 8353 0.8590 +6601 8354 0.8450 +6601 8355 0.8450 +6601 8356 0.9420 +6601 8357 0.8450 +6601 8358 0.8450 +6601 8359 0.8560 +6601 8360 0.8560 +6601 8361 0.9370 +6601 8362 0.8560 +6601 8363 0.8560 +6601 8364 0.8560 +6601 8366 0.8560 +6601 8367 0.8570 +6601 8368 0.8560 +6601 8369 0.4110 +6601 8370 0.8560 +6601 8467 0.8500 +6601 8607 0.5120 +6601 8726 0.4070 +6601 8815 0.8180 +6601 8819 0.4720 +6601 8831 0.4440 +6601 8968 0.8450 +6601 9031 0.7440 +6601 9274 0.9900 +6601 9275 0.9870 +6601 9373 0.4110 +6601 9437 0.7200 +6601 9555 0.4850 +6601 9611 0.6140 +6601 9612 0.5360 +6601 9656 0.7190 +6601 9782 0.5000 +6601 10284 0.5630 +6601 10419 0.5630 +6601 10498 0.4490 +6601 10661 0.6780 +6601 10664 0.4030 +6601 10762 0.7330 +6601 10765 0.4380 +6601 10847 0.4700 +6601 11052 0.4580 +6601 11060 0.5070 +6601 11083 0.5450 +6601 11190 0.6400 +6601 11198 0.4230 +6601 23085 0.5120 +6601 23186 0.7140 +6601 23394 0.7410 +6601 23476 0.6520 +6601 23506 0.9480 +6601 25875 0.5470 +6601 25942 0.5010 +6601 25957 0.4010 +6601 26039 0.9340 +6601 29117 0.9990 +6601 29998 0.9680 +6601 30827 0.5290 +6601 51188 0.5720 +6601 51412 0.9910 +6601 51574 0.4360 +6601 51720 0.4120 +6601 51742 0.4960 +6601 51780 0.7400 +6601 53335 0.9740 +6601 54386 0.4320 +6601 54952 0.4450 +6601 55031 0.4230 +6601 55193 0.9990 +6601 55274 0.9990 +6601 55352 0.5030 +6601 55421 0.4220 +6601 55636 0.6840 +6601 55818 0.7170 +6601 55870 0.5280 +6601 56156 0.6090 +6601 56252 0.7790 +6601 56916 0.4620 +6601 57492 0.9990 +6601 57634 0.4590 +6601 57680 0.6440 +6601 64919 0.9450 +6601 65980 0.9950 +6601 79084 0.5600 +6601 79648 0.6770 +6601 79718 0.6030 +6601 79813 0.4290 +6601 79885 0.4310 +6601 83540 0.4550 +6601 84181 0.4100 +6601 84759 0.4390 +6601 90780 0.4010 +6601 121504 0.8560 +6601 153527 0.5120 +6601 196528 0.9990 +6601 317772 0.8330 +6601 347744 0.4410 +6601 440093 0.4980 +6601 440686 0.4980 +6601 554313 0.8560 +6601 653604 0.6940 +6601 100533467 0.4200 +6602 6603 0.9950 +6602 6604 0.9920 +6602 6605 0.9990 +6602 6613 0.4040 +6602 6657 0.4860 +6602 6760 0.9910 +6602 6907 0.5750 +6602 7150 0.4340 +6602 7157 0.8890 +6602 7158 0.4470 +6602 8019 0.6610 +6602 8061 0.4230 +6602 8193 0.9880 +6602 8289 0.9990 +6602 8290 0.4070 +6602 8294 0.8470 +6602 8334 0.8320 +6602 8339 0.8170 +6602 8343 0.8170 +6602 8344 0.8170 +6602 8346 0.8170 +6602 8347 0.8260 +6602 8348 0.8290 +6602 8349 0.8740 +6602 8350 0.8410 +6602 8351 0.8410 +6602 8352 0.8460 +6602 8353 0.8460 +6602 8354 0.8420 +6602 8355 0.8410 +6602 8356 0.9240 +6602 8357 0.8410 +6602 8358 0.8420 +6602 8359 0.8460 +6602 8360 0.8460 +6602 8361 0.9460 +6602 8362 0.8460 +6602 8363 0.8460 +6602 8364 0.8460 +6602 8366 0.8460 +6602 8367 0.8460 +6602 8368 0.8460 +6602 8370 0.8460 +6602 8467 0.8010 +6602 8815 0.8220 +6602 8819 0.4430 +6602 8939 0.4440 +6602 8968 0.8410 +6602 9274 0.9950 +6602 9275 0.9940 +6602 9437 0.7200 +6602 9533 0.5480 +6602 9611 0.7250 +6602 9656 0.7180 +6602 10081 0.4100 +6602 10419 0.5560 +6602 10498 0.5250 +6602 10620 0.4230 +6602 10762 0.7090 +6602 10891 0.9050 +6602 11060 0.4330 +6602 11083 0.5330 +6602 22919 0.4090 +6602 23476 0.7080 +6602 23506 0.9940 +6602 26039 0.9640 +6602 29079 0.5120 +6602 29117 0.9990 +6602 29998 0.9950 +6602 30827 0.5090 +6602 51188 0.4810 +6602 51412 0.9900 +6602 51585 0.4380 +6602 51742 0.4660 +6602 51780 0.7290 +6602 53335 0.9310 +6602 54815 0.4740 +6602 54851 0.6120 +6602 55122 0.5650 +6602 55193 0.9990 +6602 55226 0.4630 +6602 55274 0.9990 +6602 55352 0.4990 +6602 55636 0.4560 +6602 55743 0.5660 +6602 55818 0.7100 +6602 55870 0.4610 +6602 56156 0.4780 +6602 57178 0.4100 +6602 57492 0.9980 +6602 57634 0.4220 +6602 64332 0.4500 +6602 64919 0.9400 +6602 65980 0.9980 +6602 79084 0.5240 +6602 79647 0.4020 +6602 79718 0.5720 +6602 79720 0.4080 +6602 83787 0.4670 +6602 90780 0.4330 +6602 114803 0.6300 +6602 116447 0.4490 +6602 121504 0.8460 +6602 133482 0.4390 +6602 171017 0.4720 +6602 196528 0.9990 +6602 317772 0.8320 +6602 440093 0.4080 +6602 440686 0.4070 +6602 554313 0.8460 +6602 653604 0.6340 +6602 728378 0.6050 +6603 6604 0.9840 +6603 6605 0.9990 +6603 6613 0.4480 +6603 6760 0.9910 +6603 6907 0.5380 +6603 7150 0.4380 +6603 7155 0.6390 +6603 7528 0.4490 +6603 8019 0.4290 +6603 8193 0.9240 +6603 8289 0.9970 +6603 8356 0.5900 +6603 8361 0.6470 +6603 8467 0.5160 +6603 8815 0.5710 +6603 9031 0.6340 +6603 9274 0.9910 +6603 9275 0.9840 +6603 9437 0.7200 +6603 9533 0.5730 +6603 9555 0.4350 +6603 9563 0.5610 +6603 9656 0.5200 +6603 10155 0.4130 +6603 10419 0.5170 +6603 10499 0.4610 +6603 10762 0.6840 +6603 10865 0.4060 +6603 11060 0.4790 +6603 11083 0.5140 +6603 23411 0.5130 +6603 23476 0.6170 +6603 23506 0.9450 +6603 26039 0.5710 +6603 29117 0.9700 +6603 29998 0.9620 +6603 30827 0.5150 +6603 51188 0.4780 +6603 51412 0.9510 +6603 51742 0.4830 +6603 51780 0.6620 +6603 53335 0.9230 +6603 55122 0.5160 +6603 55193 0.9900 +6603 55274 0.9860 +6603 55352 0.5100 +6603 55636 0.4310 +6603 55818 0.7170 +6603 56156 0.6130 +6603 56916 0.5020 +6603 57178 0.4120 +6603 57492 0.9950 +6603 64434 0.8960 +6603 64919 0.9200 +6603 65980 0.9760 +6603 79084 0.5180 +6603 79718 0.5550 +6603 90780 0.4210 +6603 114803 0.6140 +6603 116447 0.4510 +6603 117246 0.4480 +6603 150726 0.4700 +6603 196528 0.9640 +6603 653604 0.5910 +6604 6605 0.9990 +6604 6722 0.4470 +6604 6760 0.9850 +6604 6907 0.7330 +6604 6910 0.9610 +6604 6911 0.4010 +6604 7150 0.4250 +6604 7158 0.4360 +6604 7296 0.4180 +6604 7391 0.8190 +6604 8193 0.9820 +6604 8289 0.9990 +6604 8290 0.4360 +6604 8328 0.4450 +6604 8356 0.6480 +6604 8361 0.6550 +6604 8467 0.4940 +6604 8622 0.4680 +6604 8648 0.5050 +6604 8800 0.6660 +6604 8815 0.8820 +6604 8841 0.5430 +6604 9274 0.9910 +6604 9275 0.9790 +6604 9437 0.7200 +6604 9464 0.5330 +6604 9533 0.5430 +6604 9611 0.5730 +6604 9612 0.5250 +6604 9656 0.4520 +6604 10419 0.5740 +6604 10467 0.5420 +6604 10498 0.5470 +6604 10499 0.4770 +6604 10762 0.7030 +6604 11010 0.4130 +6604 11083 0.4980 +6604 23054 0.5010 +6604 23179 0.4160 +6604 23309 0.5210 +6604 23414 0.5760 +6604 23506 0.9370 +6604 25802 0.4800 +6604 25937 0.5470 +6604 25942 0.5370 +6604 26039 0.7100 +6604 27063 0.5010 +6604 27295 0.4350 +6604 29117 0.9610 +6604 29841 0.4190 +6604 29998 0.9540 +6604 30827 0.4920 +6604 50486 0.4030 +6604 51188 0.5050 +6604 51412 0.9670 +6604 51742 0.4440 +6604 51780 0.6820 +6604 53335 0.9210 +6604 54600 0.4090 +6604 55122 0.4980 +6604 55193 0.9970 +6604 55274 0.9780 +6604 55352 0.5090 +6604 55636 0.4210 +6604 55818 0.6980 +6604 55897 0.4450 +6604 56156 0.6130 +6604 57057 0.6380 +6604 57492 0.9930 +6604 57761 0.4340 +6604 64919 0.9190 +6604 65980 0.9710 +6604 79084 0.5140 +6604 79718 0.7540 +6604 80205 0.5430 +6604 81617 0.4070 +6604 85441 0.4660 +6604 90627 0.5400 +6604 93649 0.6910 +6604 96764 0.4100 +6604 114803 0.6010 +6604 116447 0.4250 +6604 116519 0.4220 +6604 150572 0.4070 +6604 196528 0.9630 +6604 376497 0.4690 +6604 440093 0.4360 +6604 440686 0.4350 +6604 647286 0.4080 +6604 653604 0.6470 +6604 100507027 0.6600 +6605 6664 0.5350 +6605 6760 0.9990 +6605 7015 0.4640 +6605 7155 0.5570 +6605 7158 0.4560 +6605 7247 0.5020 +6605 7343 0.4030 +6605 8019 0.4790 +6605 8193 0.9930 +6605 8289 0.9990 +6605 8294 0.8110 +6605 8334 0.8250 +6605 8339 0.8270 +6605 8343 0.8100 +6605 8344 0.8100 +6605 8346 0.8100 +6605 8347 0.8220 +6605 8348 0.8240 +6605 8349 0.8740 +6605 8350 0.8190 +6605 8351 0.8190 +6605 8352 0.8290 +6605 8353 0.8280 +6605 8354 0.8190 +6605 8355 0.8190 +6605 8356 0.9470 +6605 8357 0.8190 +6605 8358 0.8240 +6605 8359 0.8110 +6605 8360 0.8110 +6605 8361 0.9400 +6605 8362 0.8110 +6605 8363 0.8110 +6605 8364 0.8110 +6605 8366 0.8110 +6605 8367 0.8110 +6605 8368 0.8110 +6605 8370 0.8110 +6605 8464 0.4690 +6605 8467 0.7700 +6605 8648 0.8150 +6605 8815 0.9410 +6605 8819 0.4610 +6605 8850 0.4650 +6605 8883 0.4450 +6605 8968 0.8190 +6605 9172 0.4430 +6605 9274 0.9930 +6605 9275 0.9890 +6605 9320 0.6790 +6605 9401 0.4620 +6605 9437 0.7200 +6605 9611 0.7470 +6605 9656 0.4370 +6605 9989 0.4130 +6605 10081 0.4460 +6605 10155 0.5710 +6605 10194 0.4500 +6605 10209 0.4120 +6605 10284 0.4360 +6605 10362 0.4730 +6605 10363 0.5190 +6605 10419 0.7060 +6605 10498 0.4750 +6605 10499 0.5640 +6605 10524 0.4350 +6605 10587 0.6430 +6605 10661 0.6050 +6605 10944 0.4500 +6605 11198 0.5190 +6605 22850 0.4040 +6605 23085 0.4130 +6605 23186 0.7750 +6605 23394 0.4070 +6605 23435 0.5110 +6605 23476 0.5100 +6605 23506 0.9550 +6605 23636 0.4730 +6605 25855 0.5580 +6605 25942 0.6870 +6605 25957 0.4950 +6605 26039 0.9460 +6605 26609 0.4430 +6605 27185 0.6120 +6605 27316 0.5670 +6605 29117 0.9990 +6605 29998 0.9770 +6605 51188 0.5250 +6605 51412 0.9820 +6605 51780 0.6740 +6605 51806 0.4180 +6605 53335 0.9570 +6605 54458 0.4800 +6605 55109 0.4710 +6605 55193 0.9990 +6605 55257 0.4260 +6605 55274 0.9990 +6605 55352 0.5010 +6605 55636 0.6060 +6605 55660 0.5060 +6605 55705 0.4370 +6605 55818 0.6990 +6605 56156 0.6100 +6605 56257 0.4410 +6605 56916 0.5190 +6605 57178 0.5400 +6605 57492 0.9990 +6605 57616 0.5440 +6605 60412 0.4380 +6605 64786 0.4090 +6605 64919 0.9220 +6605 65980 0.9850 +6605 79084 0.5370 +6605 83637 0.8220 +6605 84231 0.5210 +6605 90780 0.4610 +6605 91860 0.4120 +6605 93624 0.5180 +6605 114803 0.6480 +6605 121504 0.8110 +6605 125113 0.8370 +6605 128553 0.4420 +6605 163688 0.4120 +6605 196528 0.9990 +6605 284018 0.4460 +6605 317772 0.8230 +6605 387640 0.4580 +6605 425054 0.4430 +6605 554313 0.8110 +6605 653604 0.5950 +6605 728378 0.6390 +6606 6607 0.9800 +6606 6625 0.9000 +6606 6626 0.6800 +6606 6627 0.5350 +6606 6628 0.9920 +6606 6629 0.4270 +6606 6631 0.5660 +6606 6632 0.9990 +6606 6633 0.9980 +6606 6634 0.9810 +6606 6635 0.9980 +6606 6636 0.9970 +6606 6637 0.9970 +6606 6638 0.6620 +6606 6647 0.7050 +6606 6690 0.5070 +6606 6776 0.4110 +6606 6777 0.4160 +6606 7015 0.4830 +6606 7072 0.5980 +6606 7073 0.5310 +6606 7097 0.4120 +6606 7157 0.7140 +6606 7158 0.4810 +6606 7170 0.4620 +6606 7175 0.4080 +6606 7307 0.4400 +6606 7317 0.4140 +6606 7345 0.4080 +6606 7443 0.5180 +6606 7812 0.4380 +6606 8021 0.4180 +6606 8086 0.4010 +6606 8087 0.4090 +6606 8161 0.9700 +6606 8239 0.5000 +6606 8293 0.8850 +6606 8361 0.5530 +6606 8480 0.4730 +6606 8487 0.9990 +6606 8518 0.4090 +6606 8570 0.5940 +6606 8683 0.7620 +6606 8878 0.4160 +6606 8880 0.6980 +6606 8882 0.6100 +6606 9221 0.5240 +6606 9360 0.5900 +6606 9631 0.4340 +6606 9688 0.4240 +6606 9747 0.4030 +6606 9818 0.4300 +6606 9900 0.4670 +6606 9972 0.4360 +6606 9987 0.7280 +6606 10073 0.8240 +6606 10114 0.4260 +6606 10236 0.9060 +6606 10285 0.5300 +6606 10419 0.8570 +6606 10468 0.5210 +6606 10482 0.4360 +6606 10492 0.8520 +6606 10521 0.4360 +6606 10528 0.4320 +6606 10556 0.4070 +6606 10657 0.5280 +6606 10762 0.4180 +6606 10915 0.4440 +6606 11097 0.4260 +6606 11100 0.6260 +6606 11171 0.9980 +6606 11218 0.9980 +6606 11338 0.4650 +6606 22916 0.6580 +6606 23064 0.6110 +6606 23165 0.4270 +6606 23279 0.4110 +6606 23405 0.5130 +6606 23435 0.8530 +6606 23543 0.6510 +6606 23636 0.4380 +6606 25804 0.7650 +6606 25885 0.4780 +6606 25929 0.9920 +6606 26121 0.4610 +6606 26747 0.5430 +6606 27288 0.5290 +6606 27316 0.7650 +6606 27429 0.6380 +6606 28960 0.5440 +6606 29102 0.4010 +6606 50628 0.9950 +6606 51588 0.4220 +6606 51602 0.4460 +6606 51808 0.7880 +6606 53371 0.4440 +6606 54433 0.7450 +6606 54960 0.9930 +6606 55135 0.5250 +6606 55140 0.4250 +6606 55277 0.4760 +6606 55706 0.4130 +6606 55746 0.4080 +6606 55811 0.4740 +6606 57122 0.4110 +6606 57410 0.4370 +6606 57819 0.5220 +6606 79023 0.4660 +6606 79084 0.7520 +6606 79760 0.9940 +6606 79833 0.9900 +6606 79902 0.4420 +6606 81929 0.4190 +6606 83737 0.5190 +6606 83988 0.5230 +6606 84967 0.8060 +6606 92906 0.4760 +6606 96764 0.5320 +6606 114823 0.4250 +6606 120892 0.4340 +6606 129401 0.4680 +6606 134353 0.8160 +6606 167410 0.4680 +6606 203228 0.5460 +6606 348995 0.4550 +6606 440026 0.5260 +6606 728340 0.4740 +6606 728492 0.4690 +6606 100101267 0.4380 +6607 6625 0.4120 +6607 6626 0.4530 +6607 6628 0.9470 +6607 6631 0.4800 +6607 6632 0.9940 +6607 6633 0.9940 +6607 6634 0.9510 +6607 6635 0.9880 +6607 6636 0.9840 +6607 6637 0.9850 +6607 6647 0.7320 +6607 7072 0.5140 +6607 7168 0.4160 +6607 7170 0.4950 +6607 7307 0.4480 +6607 7317 0.4160 +6607 7443 0.5520 +6607 7812 0.4710 +6607 8161 0.7090 +6607 8293 0.8430 +6607 8487 0.9990 +6607 8518 0.4300 +6607 8570 0.4560 +6607 8683 0.8160 +6607 8880 0.4190 +6607 9513 0.5200 +6607 9721 0.4090 +6607 9987 0.7490 +6607 10073 0.4440 +6607 10114 0.4670 +6607 10236 0.6890 +6607 10419 0.4140 +6607 10482 0.4680 +6607 10492 0.7650 +6607 10556 0.4050 +6607 10657 0.5710 +6607 11171 0.9900 +6607 11218 0.9840 +6607 11338 0.4650 +6607 23064 0.4820 +6607 23435 0.6560 +6607 25885 0.4950 +6607 25929 0.9530 +6607 27288 0.5790 +6607 27316 0.7500 +6607 27429 0.5930 +6607 28960 0.5700 +6607 50628 0.9460 +6607 51808 0.4700 +6607 54960 0.9500 +6607 55140 0.4520 +6607 55277 0.5140 +6607 79760 0.9570 +6607 79833 0.9320 +6607 83988 0.5430 +6607 84967 0.6120 +6607 92906 0.4600 +6607 167410 0.4890 +6607 203228 0.5790 +6607 440026 0.5220 +6607 728340 0.4790 +6608 6615 0.5270 +6608 6657 0.5490 +6608 6662 0.5180 +6608 6753 0.8070 +6608 7157 0.5250 +6608 7289 0.6820 +6608 7471 0.5120 +6608 7472 0.5120 +6608 7473 0.4360 +6608 7474 0.5370 +6608 7476 0.4290 +6608 7482 0.4310 +6608 8100 0.8640 +6608 8312 0.5010 +6608 8313 0.4560 +6608 8324 0.5370 +6608 8484 0.4110 +6608 8549 0.4240 +6608 8643 0.9930 +6608 8650 0.6440 +6608 8766 0.4190 +6608 8817 0.4710 +6608 8822 0.4360 +6608 8823 0.4760 +6608 8842 0.4920 +6608 8945 0.4070 +6608 9101 0.6180 +6608 9241 0.4490 +6608 9253 0.6410 +6608 9429 0.5590 +6608 9610 0.4270 +6608 9742 0.5390 +6608 9817 0.4330 +6608 10000 0.4640 +6608 10215 0.5530 +6608 10423 0.4730 +6608 10763 0.4940 +6608 11020 0.5200 +6608 11127 0.9910 +6608 22897 0.5820 +6608 22943 0.4020 +6608 23046 0.6940 +6608 23295 0.9190 +6608 23322 0.4590 +6608 23432 0.7570 +6608 26091 0.4390 +6608 26160 0.6590 +6608 26281 0.4900 +6608 27006 0.4490 +6608 27130 0.4220 +6608 27148 0.8560 +6608 27241 0.6700 +6608 50846 0.9580 +6608 50937 0.7980 +6608 51098 0.4410 +6608 51668 0.4470 +6608 51684 0.9980 +6608 51715 0.8750 +6608 54331 0.9220 +6608 54361 0.6740 +6608 54585 0.6810 +6608 55081 0.4440 +6608 55212 0.7080 +6608 55582 0.8930 +6608 55733 0.4760 +6608 55764 0.4490 +6608 56034 0.4060 +6608 56623 0.4360 +6608 57216 0.5130 +6608 57545 0.4060 +6608 57560 0.4880 +6608 57576 0.4100 +6608 57728 0.4100 +6608 64399 0.8480 +6608 79600 0.6400 +6608 79659 0.4460 +6608 79809 0.7620 +6608 79923 0.4860 +6608 80184 0.5180 +6608 84100 0.5870 +6608 84976 0.5980 +6608 85455 0.4040 +6608 89780 0.4950 +6608 90410 0.5590 +6608 91147 0.4340 +6608 91653 0.9630 +6608 92482 0.6060 +6608 114928 0.6090 +6608 122011 0.9050 +6608 128344 0.5170 +6608 129880 0.6960 +6608 132884 0.9790 +6608 148979 0.4510 +6608 169792 0.4210 +6608 200894 0.7500 +6608 374654 0.9470 +6608 730094 0.9310 +6608 100532731 0.4560 +6609 6610 0.9940 +6609 7124 0.4550 +6609 7132 0.4140 +6609 7357 0.9690 +6609 7368 0.9370 +6609 7782 0.5550 +6609 8560 0.9530 +6609 8612 0.9220 +6609 8613 0.9200 +6609 8877 0.7040 +6609 8879 0.4920 +6609 9213 0.4060 +6609 9294 0.4190 +6609 9517 0.7970 +6609 9868 0.4060 +6609 10087 0.4800 +6609 10469 0.4260 +6609 10558 0.8160 +6609 10577 0.6670 +6609 29956 0.9680 +6609 53637 0.5500 +6609 54332 0.4220 +6609 55304 0.7940 +6609 55331 0.4960 +6609 55512 0.9890 +6609 55627 0.9690 +6609 55737 0.5700 +6609 56624 0.8820 +6609 56848 0.6610 +6609 57192 0.4480 +6609 57704 0.9410 +6609 64781 0.9680 +6609 64834 0.4080 +6609 79603 0.9620 +6609 79772 0.4090 +6609 81537 0.9450 +6609 83723 0.8070 +6609 91012 0.9640 +6609 123099 0.9410 +6609 125981 0.8410 +6609 130367 0.9340 +6609 138050 0.4480 +6609 142891 0.4040 +6609 166929 0.9720 +6609 204219 0.9590 +6609 253782 0.9680 +6609 259230 0.9750 +6609 339221 0.9650 +6609 340485 0.8550 +6609 768239 0.4310 +6610 6774 0.5050 +6610 7124 0.8190 +6610 7132 0.6480 +6610 7251 0.6070 +6610 7357 0.9730 +6610 7368 0.9380 +6610 8439 0.9910 +6610 8560 0.9600 +6610 8612 0.9240 +6610 8613 0.9170 +6610 8877 0.7090 +6610 8879 0.5790 +6610 9517 0.7980 +6610 10015 0.4220 +6610 10087 0.4720 +6610 10399 0.7160 +6610 10558 0.8220 +6610 11021 0.4220 +6610 23621 0.4940 +6610 27293 0.5730 +6610 29956 0.9670 +6610 54205 0.4840 +6610 55304 0.7980 +6610 55331 0.6400 +6610 55512 0.9980 +6610 55627 0.9940 +6610 56624 0.9070 +6610 56848 0.6970 +6610 57704 0.9410 +6610 64781 0.9640 +6610 79258 0.4040 +6610 79603 0.9660 +6610 81537 0.9440 +6610 83723 0.6510 +6610 91012 0.9650 +6610 123099 0.9520 +6610 125981 0.8810 +6610 130367 0.9380 +6610 142891 0.5390 +6610 166929 0.9690 +6610 204219 0.9560 +6610 253782 0.9680 +6610 259230 0.9680 +6610 339221 0.9650 +6610 340485 0.8840 +6611 6723 0.9710 +6611 7347 0.5010 +6611 8074 0.4970 +6611 8270 0.4990 +6611 8659 0.5090 +6611 8875 0.4720 +6611 8876 0.4720 +6611 10776 0.4020 +6611 30968 0.4450 +6611 51360 0.4090 +6611 51582 0.7880 +6611 51686 0.4920 +6611 51733 0.5190 +6611 54498 0.8180 +6611 55236 0.6310 +6611 55256 0.4270 +6611 55644 0.4600 +6611 56954 0.4870 +6611 57599 0.4480 +6611 58478 0.6570 +6611 79814 0.8780 +6611 83475 0.6460 +6611 84245 0.4540 +6611 113451 0.8700 +6611 143244 0.4220 +6611 162417 0.4560 +6611 196743 0.8370 +6611 440498 0.4400 +6612 6613 0.9030 +6612 6634 0.4910 +6612 6672 0.6750 +6612 6996 0.6340 +6612 7067 0.4430 +6612 7068 0.4380 +6612 7150 0.5460 +6612 7153 0.5600 +6612 7157 0.6010 +6612 7175 0.4490 +6612 7311 0.6590 +6612 7314 0.6210 +6612 7316 0.7420 +6612 7317 0.4590 +6612 7318 0.4400 +6612 7319 0.4120 +6612 7320 0.4150 +6612 7321 0.4270 +6612 7322 0.4230 +6612 7323 0.4260 +6612 7324 0.4140 +6612 7329 0.9990 +6612 7334 0.7290 +6612 7336 0.6720 +6612 7341 0.6820 +6612 7353 0.5310 +6612 7376 0.4440 +6612 7411 0.4030 +6612 7507 0.5310 +6612 7508 0.5120 +6612 7520 0.4750 +6612 7703 0.4300 +6612 7750 0.4030 +6612 8021 0.4310 +6612 8086 0.4050 +6612 8349 0.4080 +6612 8361 0.6470 +6612 8450 0.5990 +6612 8451 0.5790 +6612 8480 0.4410 +6612 8517 0.4810 +6612 8535 0.6400 +6612 8554 0.9760 +6612 8856 0.5050 +6612 9025 0.5550 +6612 9039 0.4240 +6612 9040 0.4270 +6612 9063 0.9260 +6612 9112 0.4440 +6612 9212 0.5100 +6612 9557 0.6150 +6612 9612 0.4470 +6612 9631 0.4460 +6612 9656 0.5450 +6612 9688 0.5310 +6612 9759 0.5120 +6612 9782 0.4820 +6612 9818 0.4490 +6612 9883 0.4580 +6612 9972 0.7390 +6612 9978 0.6230 +6612 10038 0.5500 +6612 10054 0.9890 +6612 10055 0.9790 +6612 10062 0.4400 +6612 10155 0.5520 +6612 10208 0.6900 +6612 10401 0.8620 +6612 10477 0.4010 +6612 10714 0.6640 +6612 10762 0.4530 +6612 11097 0.4130 +6612 22919 0.5280 +6612 22955 0.4630 +6612 23137 0.5620 +6612 23165 0.4270 +6612 23225 0.4130 +6612 23237 0.4250 +6612 23279 0.4420 +6612 23314 0.6820 +6612 23510 0.6830 +6612 23511 0.4070 +6612 23636 0.4960 +6612 26036 0.6290 +6612 26054 0.7400 +6612 26168 0.7340 +6612 27304 0.4660 +6612 27338 0.4230 +6612 28996 0.4100 +6612 29761 0.8170 +6612 29843 0.9760 +6612 50945 0.5470 +6612 51567 0.6160 +6612 51588 0.9460 +6612 53371 0.4160 +6612 54778 0.7020 +6612 55143 0.4720 +6612 55236 0.4020 +6612 55706 0.4260 +6612 55729 0.4720 +6612 55746 0.4950 +6612 57122 0.4510 +6612 57178 0.4320 +6612 57332 0.4660 +6612 57337 0.7700 +6612 57804 0.6730 +6612 59343 0.9810 +6612 63931 0.5600 +6612 79023 0.4550 +6612 79677 0.4320 +6612 79902 0.4450 +6612 79915 0.5010 +6612 81929 0.4340 +6612 83637 0.4280 +6612 84733 0.4170 +6612 84823 0.4150 +6612 84893 0.6000 +6612 94239 0.4480 +6612 129401 0.4450 +6612 165918 0.6030 +6612 205564 0.8980 +6612 282679 0.4730 +6612 286053 0.6380 +6612 348995 0.4460 +6612 404672 0.5700 +6612 653437 0.5490 +6612 729857 0.6820 +6612 100101267 0.4590 +6613 6633 0.4510 +6613 6635 0.4210 +6613 6647 0.5110 +6613 6667 0.4540 +6613 6670 0.5640 +6613 6672 0.9330 +6613 6749 0.4330 +6613 6774 0.5160 +6613 6829 0.4140 +6613 6950 0.4290 +6613 6996 0.9940 +6613 7090 0.4440 +6613 7112 0.5520 +6613 7150 0.4570 +6613 7153 0.8350 +6613 7155 0.5960 +6613 7157 0.9650 +6613 7158 0.9390 +6613 7175 0.7220 +6613 7295 0.6030 +6613 7311 0.7220 +6613 7314 0.7410 +6613 7316 0.8110 +6613 7317 0.7310 +6613 7318 0.5580 +6613 7319 0.4330 +6613 7320 0.4870 +6613 7321 0.5650 +6613 7322 0.5100 +6613 7323 0.5400 +6613 7324 0.5470 +6613 7325 0.4870 +6613 7329 0.9990 +6613 7332 0.5010 +6613 7334 0.9230 +6613 7336 0.8660 +6613 7341 0.9940 +6613 7353 0.4970 +6613 7376 0.4400 +6613 7407 0.4010 +6613 7415 0.4730 +6613 7468 0.5720 +6613 7486 0.5510 +6613 7494 0.4280 +6613 7507 0.5840 +6613 7508 0.5630 +6613 7514 0.4960 +6613 7520 0.7830 +6613 7532 0.4090 +6613 7703 0.4480 +6613 7706 0.4270 +6613 7750 0.9150 +6613 7874 0.7750 +6613 7919 0.6010 +6613 8021 0.5980 +6613 8078 0.5200 +6613 8086 0.4080 +6613 8125 0.4890 +6613 8208 0.4220 +6613 8237 0.4270 +6613 8243 0.4860 +6613 8290 0.8100 +6613 8328 0.4390 +6613 8340 0.5770 +6613 8341 0.5740 +6613 8342 0.5750 +6613 8345 0.5860 +6613 8347 0.5860 +6613 8348 0.5760 +6613 8349 0.7840 +6613 8356 0.6430 +6613 8361 0.6790 +6613 8450 0.6310 +6613 8451 0.6410 +6613 8452 0.6540 +6613 8454 0.5990 +6613 8480 0.4420 +6613 8517 0.5750 +6613 8535 0.7350 +6613 8554 0.9940 +6613 8607 0.5940 +6613 8805 0.4170 +6613 8836 0.5600 +6613 8883 0.5400 +6613 8924 0.5130 +6613 8970 0.6760 +6613 9025 0.8730 +6613 9039 0.5930 +6613 9040 0.4040 +6613 9063 0.9890 +6613 9092 0.4430 +6613 9112 0.7940 +6613 9126 0.5220 +6613 9202 0.5860 +6613 9203 0.7420 +6613 9212 0.6220 +6613 9219 0.5890 +6613 9246 0.4750 +6613 9319 0.4730 +6613 9343 0.4530 +6613 9349 0.4040 +6613 9400 0.4710 +6613 9557 0.6040 +6613 9577 0.7850 +6613 9611 0.5770 +6613 9631 0.4460 +6613 9636 0.5300 +6613 9656 0.8570 +6613 9667 0.4140 +6613 9688 0.5370 +6613 9759 0.7860 +6613 9782 0.5170 +6613 9818 0.4510 +6613 9869 0.8410 +6613 9883 0.4580 +6613 9918 0.4060 +6613 9939 0.4600 +6613 9972 0.6970 +6613 9978 0.7510 +6613 10009 0.6550 +6613 10036 0.7080 +6613 10038 0.5700 +6613 10051 0.4730 +6613 10054 0.9980 +6613 10055 0.9970 +6613 10059 0.8170 +6613 10062 0.4400 +6613 10075 0.4260 +6613 10111 0.7540 +6613 10155 0.8990 +6613 10208 0.9720 +6613 10210 0.6000 +6613 10212 0.4790 +6613 10376 0.6190 +6613 10383 0.5660 +6613 10401 0.9250 +6613 10477 0.5080 +6613 10483 0.4530 +6613 10484 0.4130 +6613 10521 0.6360 +6613 10524 0.6180 +6613 10533 0.4240 +6613 10537 0.6890 +6613 10592 0.4630 +6613 10714 0.4800 +6613 10728 0.5570 +6613 10762 0.4770 +6613 10768 0.4620 +6613 10902 0.4820 +6613 10921 0.4430 +6613 10923 0.6590 +6613 10933 0.4240 +6613 10944 0.5540 +6613 10949 0.4210 +6613 10971 0.5570 +6613 10987 0.6100 +6613 10992 0.6320 +6613 11065 0.4210 +6613 11073 0.5400 +6613 11097 0.4140 +6613 11177 0.5570 +6613 11198 0.4360 +6613 11335 0.4190 +6613 22890 0.4170 +6613 22955 0.4630 +6613 22985 0.4510 +6613 23020 0.6360 +6613 23028 0.8110 +6613 23132 0.6450 +6613 23137 0.6440 +6613 23165 0.4310 +6613 23186 0.8020 +6613 23195 0.6040 +6613 23225 0.4140 +6613 23244 0.4120 +6613 23279 0.5960 +6613 23347 0.5660 +6613 23411 0.5970 +6613 23435 0.5580 +6613 23476 0.4180 +6613 23510 0.7590 +6613 23511 0.4150 +6613 23515 0.6800 +6613 23636 0.5270 +6613 24137 0.4110 +6613 25942 0.4750 +6613 26036 0.8960 +6613 26054 0.9670 +6613 26155 0.4260 +6613 26168 0.9780 +6613 27043 0.8280 +6613 27304 0.5800 +6613 27316 0.4720 +6613 27338 0.5290 +6613 27351 0.6080 +6613 28996 0.5510 +6613 29086 0.5760 +6613 29089 0.4590 +6613 29761 0.8850 +6613 29843 0.9990 +6613 29889 0.5620 +6613 49854 0.4110 +6613 51029 0.5640 +6613 51567 0.7320 +6613 51569 0.5920 +6613 51574 0.4690 +6613 51588 0.9980 +6613 51592 0.4130 +6613 51593 0.4240 +6613 51602 0.6920 +6613 51720 0.9950 +6613 53371 0.4350 +6613 53981 0.4140 +6613 54145 0.5760 +6613 54778 0.9100 +6613 54795 0.4640 +6613 54881 0.4150 +6613 54888 0.6160 +6613 55143 0.5270 +6613 55183 0.5430 +6613 55236 0.5470 +6613 55284 0.4940 +6613 55611 0.5080 +6613 55706 0.4300 +6613 55729 0.9790 +6613 55746 0.4980 +6613 55775 0.4320 +6613 56254 0.6600 +6613 56852 0.7480 +6613 57122 0.6160 +6613 57159 0.4720 +6613 57178 0.7010 +6613 57187 0.4790 +6613 57332 0.4820 +6613 57337 0.9590 +6613 57459 0.5500 +6613 57520 0.4370 +6613 57646 0.6970 +6613 57804 0.4270 +6613 59286 0.4260 +6613 59343 0.9950 +6613 63893 0.6080 +6613 63931 0.5640 +6613 79023 0.4590 +6613 79026 0.5420 +6613 79029 0.4390 +6613 79184 0.8130 +6613 79677 0.4730 +6613 79876 0.5390 +6613 79902 0.5200 +6613 79915 0.5350 +6613 80012 0.4050 +6613 80063 0.4030 +6613 80198 0.6840 +6613 81605 0.4090 +6613 81887 0.6130 +6613 81929 0.4280 +6613 83637 0.4230 +6613 83746 0.5470 +6613 84142 0.7680 +6613 84464 0.8440 +6613 84617 0.5700 +6613 84675 0.4530 +6613 84676 0.5820 +6613 84733 0.5120 +6613 84790 0.4120 +6613 84838 0.4700 +6613 84844 0.5030 +6613 84893 0.6060 +6613 85236 0.5820 +6613 93349 0.5240 +6613 94239 0.4950 +6613 112399 0.4100 +6613 117159 0.5060 +6613 123228 0.7460 +6613 127002 0.4670 +6613 128312 0.5770 +6613 128710 0.5670 +6613 129401 0.4520 +6613 133482 0.4450 +6613 144983 0.4480 +6613 146956 0.6170 +6613 149628 0.4380 +6613 165918 0.9250 +6613 166378 0.4480 +6613 203068 0.6020 +6613 205564 0.9630 +6613 205860 0.4470 +6613 221302 0.4270 +6613 222255 0.4650 +6613 255626 0.5810 +6613 282679 0.4730 +6613 283489 0.5100 +6613 286053 0.7290 +6613 348995 0.4560 +6613 375189 0.4150 +6613 375484 0.4040 +6613 387082 0.9070 +6613 404672 0.5760 +6613 440093 0.6380 +6613 440686 0.6350 +6613 653437 0.5490 +6613 653604 0.6350 +6613 100101267 0.4610 +6614 6688 0.4110 +6614 6693 0.9900 +6614 6772 0.4420 +6614 6850 0.5120 +6614 7056 0.4300 +6614 7097 0.4690 +6614 7098 0.4260 +6614 7099 0.5100 +6614 7124 0.5300 +6614 7305 0.7940 +6614 7852 0.4710 +6614 8174 0.4320 +6614 8638 0.4890 +6614 8639 0.4210 +6614 8685 0.5590 +6614 9034 0.4070 +6614 9172 0.5490 +6614 9332 0.8660 +6614 9636 0.6160 +6614 10288 0.4220 +6614 10461 0.5100 +6614 10462 0.5650 +6614 10561 0.5940 +6614 10563 0.4200 +6614 10673 0.6090 +6614 10763 0.5110 +6614 10894 0.5650 +6614 10964 0.8270 +6614 11274 0.6750 +6614 11326 0.5400 +6614 22918 0.4190 +6614 23166 0.5080 +6614 23586 0.5190 +6614 23601 0.4110 +6614 23617 0.4350 +6614 23705 0.4790 +6614 25939 0.4720 +6614 27036 0.7220 +6614 27044 0.4220 +6614 27180 0.4550 +6614 29126 0.4600 +6614 29851 0.5130 +6614 30816 0.6100 +6614 30835 0.7610 +6614 50489 0.4170 +6614 50632 0.4800 +6614 50856 0.5810 +6614 51191 0.4410 +6614 51284 0.5550 +6614 51311 0.4980 +6614 51338 0.5880 +6614 54106 0.4480 +6614 54209 0.4440 +6614 54739 0.5180 +6614 55509 0.4400 +6614 59272 0.4340 +6614 64108 0.5000 +6614 64135 0.4300 +6614 64581 0.4460 +6614 65258 0.4180 +6614 79132 0.4130 +6614 81629 0.4520 +6614 83942 0.4520 +6614 83983 0.4400 +6614 89858 0.4600 +6614 91543 0.7720 +6614 91937 0.5960 +6614 94240 0.4810 +6614 129607 0.4190 +6614 140885 0.5430 +6614 283420 0.4410 +6614 283629 0.4660 +6614 284266 0.7590 +6614 100526664 0.4510 +6615 6657 0.7420 +6615 6659 0.5370 +6615 6662 0.7310 +6615 6663 0.5310 +6615 6678 0.4710 +6615 6696 0.4360 +6615 6714 0.6120 +6615 6720 0.7010 +6615 6736 0.4210 +6615 6737 0.5550 +6615 6756 0.4440 +6615 6757 0.4510 +6615 6774 0.8060 +6615 6794 0.5290 +6615 6839 0.8660 +6615 6862 0.8150 +6615 6925 0.4180 +6615 6929 0.5020 +6615 7040 0.7930 +6615 7042 0.6030 +6615 7043 0.4950 +6615 7046 0.6070 +6615 7048 0.5850 +6615 7057 0.6200 +6615 7070 0.4030 +6615 7076 0.4630 +6615 7082 0.7070 +6615 7101 0.5720 +6615 7124 0.5930 +6615 7157 0.9920 +6615 7291 0.9010 +6615 7414 0.4070 +6615 7431 0.8500 +6615 7471 0.5350 +6615 7473 0.4220 +6615 7474 0.5310 +6615 7481 0.4110 +6615 7514 0.4930 +6615 7531 0.4780 +6615 7533 0.4680 +6615 7534 0.5410 +6615 7837 0.6400 +6615 7852 0.5490 +6615 7874 0.6200 +6615 8061 0.6130 +6615 8091 0.7280 +6615 8202 0.4900 +6615 8237 0.5710 +6615 8289 0.5490 +6615 8290 0.5790 +6615 8312 0.5310 +6615 8313 0.6680 +6615 8320 0.8210 +6615 8328 0.4850 +6615 8356 0.7210 +6615 8405 0.4100 +6615 8535 0.5690 +6615 8549 0.4530 +6615 8650 0.4740 +6615 8678 0.6090 +6615 8726 0.5810 +6615 8817 0.5600 +6615 8822 0.5150 +6615 8823 0.5460 +6615 8841 0.8150 +6615 8842 0.6700 +6615 8945 0.9640 +6615 8994 0.4970 +6615 9021 0.5190 +6615 9076 0.6100 +6615 9100 0.5100 +6615 9112 0.7520 +6615 9219 0.6460 +6615 9253 0.4740 +6615 9429 0.5480 +6615 9451 0.4340 +6615 9839 0.5130 +6615 9960 0.5630 +6615 9978 0.4100 +6615 10014 0.5730 +6615 10018 0.4070 +6615 10190 0.4240 +6615 10273 0.5180 +6615 10362 0.8550 +6615 10363 0.8500 +6615 10413 0.7760 +6615 10419 0.8270 +6615 10631 0.5930 +6615 10658 0.4220 +6615 10763 0.4590 +6615 10919 0.9900 +6615 10980 0.5320 +6615 10987 0.4430 +6615 11279 0.4670 +6615 11346 0.4440 +6615 22933 0.5190 +6615 22943 0.4470 +6615 22955 0.4990 +6615 23028 0.9980 +6615 23186 0.9870 +6615 23199 0.8410 +6615 23411 0.4370 +6615 23462 0.4840 +6615 23466 0.5310 +6615 23476 0.7150 +6615 23512 0.9590 +6615 25800 0.6810 +6615 25942 0.8220 +6615 25946 0.4200 +6615 26234 0.6780 +6615 26263 0.4110 +6615 26281 0.5460 +6615 26468 0.4190 +6615 26524 0.7410 +6615 27006 0.5350 +6615 27022 0.6400 +6615 27254 0.4010 +6615 29126 0.5070 +6615 51176 0.7330 +6615 51317 0.4050 +6615 51460 0.4460 +6615 51564 0.6100 +6615 53615 0.5250 +6615 53827 0.4240 +6615 54205 0.5780 +6615 54567 0.4110 +6615 54815 0.5510 +6615 54845 0.4860 +6615 54910 0.4080 +6615 55294 0.5380 +6615 55336 0.4220 +6615 55611 0.5990 +6615 55758 0.8230 +6615 55929 0.4510 +6615 56254 0.5550 +6615 57111 0.4970 +6615 57167 0.5700 +6615 57332 0.5940 +6615 57447 0.4410 +6615 57459 0.5350 +6615 57504 0.8540 +6615 57663 0.5590 +6615 57695 0.7000 +6615 58190 0.5600 +6615 58495 0.4830 +6615 64321 0.4310 +6615 79084 0.6740 +6615 79365 0.4150 +6615 79727 0.4880 +6615 79923 0.7140 +6615 79977 0.4940 +6615 80012 0.5590 +6615 80204 0.6830 +6615 81848 0.4800 +6615 84232 0.4990 +6615 84695 0.5450 +6615 84733 0.5430 +6615 84962 0.6990 +6615 89780 0.5000 +6615 91039 0.4370 +6615 117581 0.8530 +6615 135892 0.7250 +6615 137902 0.6240 +6615 142678 0.5140 +6615 144699 0.9210 +6615 377630 0.8090 +6615 389421 0.4240 +6615 431707 0.4290 +6615 440093 0.5750 +6615 440686 0.5750 +6615 653604 0.5750 +6615 100133941 0.6460 +6615 100506658 0.6380 +6615 100532731 0.6320 +6616 6620 0.5960 +6616 6622 0.7790 +6616 6623 0.4810 +6616 6750 0.6160 +6616 6804 0.9990 +6616 6809 0.9900 +6616 6810 0.9980 +6616 6811 0.9060 +6616 6812 0.9990 +6616 6813 0.5700 +6616 6814 0.7400 +6616 6833 0.4860 +6616 6843 0.9960 +6616 6844 0.9990 +6616 6845 0.9970 +6616 6853 0.9700 +6616 6854 0.9210 +6616 6855 0.9800 +6616 6856 0.4590 +6616 6857 0.9990 +6616 6860 0.8900 +6616 6861 0.8840 +6616 6863 0.4940 +6616 6900 0.4150 +6616 7054 0.4220 +6616 7124 0.5460 +6616 7157 0.4630 +6616 7220 0.4920 +6616 7345 0.4150 +6616 7415 0.5820 +6616 7442 0.4080 +6616 7447 0.6500 +6616 7532 0.4530 +6616 7857 0.5700 +6616 8128 0.5480 +6616 8224 0.8920 +6616 8417 0.8860 +6616 8447 0.6790 +6616 8448 0.7720 +6616 8497 0.5820 +6616 8499 0.6860 +6616 8500 0.6310 +6616 8508 0.7320 +6616 8541 0.7040 +6616 8573 0.6190 +6616 8618 0.5710 +6616 8673 0.9910 +6616 8674 0.8820 +6616 8675 0.9480 +6616 8676 0.8820 +6616 8677 0.6540 +6616 8723 0.9130 +6616 8773 0.9320 +6616 8774 0.7810 +6616 8775 0.9950 +6616 8825 0.6240 +6616 8867 0.6720 +6616 8912 0.4690 +6616 8927 0.7500 +6616 8941 0.4710 +6616 9033 0.4940 +6616 9066 0.8560 +6616 9114 0.4360 +6616 9118 0.5080 +6616 9143 0.5300 +6616 9145 0.5200 +6616 9146 0.4800 +6616 9254 0.5110 +6616 9256 0.5580 +6616 9341 0.9990 +6616 9342 0.9640 +6616 9369 0.4550 +6616 9374 0.6020 +6616 9378 0.7530 +6616 9379 0.6490 +6616 9381 0.8050 +6616 9463 0.5380 +6616 9482 0.6760 +6616 9515 0.8040 +6616 9522 0.4590 +6616 9527 0.7670 +6616 9554 0.7540 +6616 9570 0.8280 +6616 9699 0.5080 +6616 9751 0.7420 +6616 9783 0.4010 +6616 9892 0.7650 +6616 9899 0.5940 +6616 9900 0.7260 +6616 10215 0.4200 +6616 10228 0.9770 +6616 10282 0.8360 +6616 10381 0.4510 +6616 10490 0.7750 +6616 10497 0.9680 +6616 10590 0.8970 +6616 10640 0.6740 +6616 10652 0.9050 +6616 10681 0.4170 +6616 10791 0.6970 +6616 10814 0.9470 +6616 10815 0.9990 +6616 10938 0.5590 +6616 11069 0.7470 +6616 11075 0.6690 +6616 11130 0.5100 +6616 11336 0.9810 +6616 22829 0.4350 +6616 22871 0.4700 +6616 22895 0.9660 +6616 22905 0.4150 +6616 22987 0.5440 +6616 22999 0.9490 +6616 23025 0.8060 +6616 23085 0.4640 +6616 23095 0.5310 +6616 23208 0.5780 +6616 23233 0.4360 +6616 23256 0.4210 +6616 23265 0.6650 +6616 23354 0.4310 +6616 23390 0.8720 +6616 23426 0.5220 +6616 23542 0.5110 +6616 23557 0.9950 +6616 23621 0.4800 +6616 23673 0.9680 +6616 26003 0.4010 +6616 26258 0.6280 +6616 26747 0.4160 +6616 27445 0.6660 +6616 29091 0.7610 +6616 29993 0.4130 +6616 30844 0.4980 +6616 30845 0.5210 +6616 50618 0.6290 +6616 50861 0.4770 +6616 51272 0.6200 +6616 51440 0.4500 +6616 51560 0.4250 +6616 51806 0.4830 +6616 53407 0.8050 +6616 53981 0.4260 +6616 54331 0.4100 +6616 54413 0.6390 +6616 54503 0.8330 +6616 54536 0.7300 +6616 54715 0.4420 +6616 54769 0.4340 +6616 54982 0.5170 +6616 55014 0.9360 +6616 55172 0.4240 +6616 55327 0.5860 +6616 55503 0.5010 +6616 55530 0.5590 +6616 55638 0.7040 +6616 55763 0.7750 +6616 55770 0.5580 +6616 55850 0.6860 +6616 56850 0.4070 +6616 57030 0.8500 +6616 57084 0.6410 +6616 57348 0.4010 +6616 57393 0.6830 +6616 57468 0.4380 +6616 57502 0.4070 +6616 60412 0.7040 +6616 63908 0.9780 +6616 63974 0.4160 +6616 63982 0.4350 +6616 64130 0.6030 +6616 79171 0.4310 +6616 80331 0.8270 +6616 80725 0.7280 +6616 80835 0.4870 +6616 81551 0.4560 +6616 83756 0.5080 +6616 83871 0.5050 +6616 84062 0.6420 +6616 84258 0.6280 +6616 91683 0.4760 +6616 91860 0.4770 +6616 93323 0.5130 +6616 93377 0.4150 +6616 112476 0.9780 +6616 112755 0.9970 +6616 114088 0.8870 +6616 115827 0.6550 +6616 116841 0.7900 +6616 121601 0.4540 +6616 127833 0.8240 +6616 132204 0.6610 +6616 134957 0.9980 +6616 140679 0.8380 +6616 143187 0.7450 +6616 146713 0.5760 +6616 149371 0.7460 +6616 150678 0.4350 +6616 163688 0.4770 +6616 203062 0.6840 +6616 203068 0.5100 +6616 246213 0.6440 +6616 282991 0.5330 +6616 339302 0.8620 +6616 341359 0.5610 +6616 346562 0.4900 +6616 388552 0.4810 +6616 415117 0.8520 +6616 440279 0.5610 +6616 594855 0.9310 +6616 100271715 0.4230 +6617 6618 0.9990 +6617 6619 0.9990 +6617 6621 0.9990 +6617 6667 0.5020 +6617 6877 0.6080 +6617 6878 0.5720 +6617 6880 0.5790 +6617 6882 0.6060 +6617 6884 0.5300 +6617 6908 0.9870 +6617 7158 0.4760 +6617 7702 0.5590 +6617 8812 0.5080 +6617 9015 0.6710 +6617 9533 0.6490 +6617 10197 0.5860 +6617 10302 0.9990 +6617 10621 0.7070 +6617 10622 0.6500 +6617 10623 0.5920 +6617 11128 0.6280 +6617 11201 0.5600 +6617 27297 0.6420 +6617 29101 0.4720 +6617 51082 0.5710 +6617 51585 0.4600 +6617 51728 0.5970 +6617 55174 0.4850 +6617 55290 0.7460 +6617 55703 0.5160 +6617 55718 0.6480 +6617 55814 0.7960 +6617 84265 0.5370 +6617 129685 0.5940 +6617 171568 0.5980 +6618 6619 0.9990 +6618 6621 0.9990 +6618 6667 0.5010 +6618 6827 0.4110 +6618 6829 0.4070 +6618 6877 0.5170 +6618 6878 0.5310 +6618 6880 0.5090 +6618 6882 0.5260 +6618 6884 0.5270 +6618 6908 0.9220 +6618 7702 0.5110 +6618 8812 0.4990 +6618 9015 0.6500 +6618 9533 0.6080 +6618 10302 0.9970 +6618 10548 0.4510 +6618 10621 0.6640 +6618 10622 0.6070 +6618 10623 0.6090 +6618 11128 0.5140 +6618 11201 0.5340 +6618 27297 0.6610 +6618 51082 0.5830 +6618 51548 0.5380 +6618 51728 0.5290 +6618 55174 0.4890 +6618 55290 0.7020 +6618 55703 0.4990 +6618 55718 0.6600 +6618 55814 0.6860 +6618 57730 0.6060 +6618 84265 0.5530 +6618 129685 0.5230 +6618 147807 0.4610 +6618 171568 0.6260 +6618 100507290 0.4210 +6619 6621 0.9990 +6619 6667 0.5060 +6619 6827 0.4050 +6619 6877 0.5140 +6619 6878 0.5990 +6619 6880 0.5390 +6619 6882 0.5540 +6619 6884 0.6060 +6619 6908 0.9820 +6619 7353 0.4200 +6619 7702 0.5110 +6619 8394 0.4610 +6619 8812 0.5210 +6619 9015 0.6850 +6619 9533 0.7720 +6619 10197 0.7000 +6619 10302 0.9990 +6619 10621 0.6640 +6619 10622 0.5790 +6619 10623 0.6110 +6619 10845 0.4590 +6619 11128 0.6290 +6619 11157 0.4130 +6619 11183 0.4290 +6619 11201 0.6460 +6619 23376 0.4350 +6619 23484 0.4060 +6619 23534 0.5090 +6619 23759 0.4730 +6619 25891 0.4010 +6619 25929 0.4520 +6619 25959 0.4290 +6619 27297 0.6670 +6619 29090 0.4060 +6619 29101 0.4050 +6619 51082 0.6090 +6619 51171 0.4020 +6619 51585 0.5000 +6619 51691 0.5460 +6619 51728 0.6620 +6619 55290 0.6600 +6619 55631 0.4520 +6619 55703 0.6410 +6619 55718 0.6370 +6619 55814 0.7230 +6619 57730 0.4250 +6619 64426 0.4360 +6619 79035 0.4420 +6619 79101 0.4690 +6619 79729 0.4510 +6619 80311 0.4010 +6619 84265 0.5300 +6619 84524 0.4560 +6619 113444 0.4130 +6619 118738 0.5490 +6619 129685 0.5440 +6619 149345 0.4480 +6619 158219 0.4330 +6619 167826 0.4100 +6619 171023 0.4770 +6619 171568 0.5920 +6619 203238 0.4840 +6619 203245 0.4150 +6619 282809 0.4570 +6619 548644 0.4050 +6620 6622 0.8280 +6620 6623 0.4980 +6620 6844 0.6090 +6620 6853 0.6240 +6620 6854 0.5090 +6620 6855 0.5310 +6620 6857 0.4290 +6620 7054 0.4370 +6620 7345 0.7190 +6620 8941 0.5020 +6620 9118 0.4330 +6620 9143 0.4560 +6620 9312 0.4260 +6620 9362 0.4290 +6620 9627 0.7450 +6620 9892 0.4070 +6620 10814 0.5840 +6620 10815 0.5930 +6620 11069 0.4500 +6620 11255 0.4630 +6620 11315 0.4720 +6620 22895 0.4770 +6620 23400 0.5510 +6620 23620 0.4170 +6620 50632 0.5060 +6620 51286 0.4550 +6620 55156 0.4330 +6620 56934 0.4110 +6620 57030 0.5080 +6620 58157 0.4210 +6620 63974 0.5460 +6620 65018 0.4440 +6620 80023 0.4930 +6620 83482 0.4180 +6620 90249 0.5520 +6620 93377 0.4480 +6620 112755 0.4100 +6620 120892 0.6180 +6620 132204 0.4160 +6620 140679 0.6760 +6620 158931 0.4070 +6620 283999 0.4850 +6620 342865 0.4270 +6620 441151 0.4210 +6620 642968 0.4330 +6621 6635 0.4090 +6621 6667 0.4990 +6621 6829 0.4640 +6621 6836 0.4480 +6621 6838 0.5850 +6621 6877 0.5210 +6621 6878 0.5530 +6621 6880 0.4990 +6621 6882 0.5200 +6621 6884 0.5190 +6621 6908 0.9720 +6621 7410 0.4150 +6621 7579 0.4140 +6621 7593 0.4530 +6621 7701 0.4760 +6621 7702 0.5530 +6621 7988 0.4550 +6621 8427 0.4430 +6621 8812 0.5040 +6621 9013 0.4920 +6621 9015 0.6710 +6621 9533 0.6480 +6621 10197 0.6060 +6621 10262 0.4020 +6621 10302 0.9990 +6621 10422 0.4510 +6621 10439 0.4260 +6621 10621 0.6880 +6621 10622 0.5910 +6621 10623 0.5960 +6621 10807 0.4340 +6621 11091 0.4660 +6621 11093 0.4210 +6621 11128 0.6840 +6621 11129 0.5190 +6621 11201 0.5160 +6621 23113 0.4210 +6621 23203 0.6930 +6621 25930 0.4640 +6621 26205 0.4030 +6621 27297 0.6250 +6621 29101 0.4090 +6621 51082 0.5690 +6621 51728 0.5790 +6621 51750 0.4900 +6621 55223 0.4090 +6621 55290 0.6820 +6621 55684 0.4250 +6621 55703 0.5360 +6621 55718 0.6430 +6621 55814 0.7390 +6621 56623 0.7850 +6621 57455 0.6210 +6621 57582 0.4250 +6621 57585 0.4720 +6621 57647 0.6250 +6621 57721 0.4080 +6621 58506 0.5420 +6621 60625 0.4940 +6621 64170 0.6280 +6621 80737 0.4290 +6621 83943 0.4420 +6621 84265 0.5380 +6621 114823 0.4970 +6621 129685 0.5140 +6621 130813 0.5830 +6621 157922 0.4850 +6621 158067 0.4760 +6621 158135 0.4240 +6621 161142 0.4280 +6621 171568 0.6090 +6621 256364 0.4250 +6621 283899 0.4780 +6621 390064 0.4120 +6621 392399 0.4080 +6621 728489 0.4010 +6621 728763 0.6080 +6622 6647 0.8970 +6622 6653 0.4350 +6622 6696 0.5300 +6622 6697 0.4800 +6622 6708 0.4350 +6622 6711 0.5770 +6622 6714 0.5080 +6622 6717 0.5050 +6622 6737 0.5080 +6622 6804 0.6970 +6622 6844 0.9790 +6622 6853 0.8140 +6622 6854 0.4870 +6622 6855 0.6860 +6622 6857 0.6270 +6622 6863 0.5240 +6622 6908 0.5270 +6622 7019 0.4110 +6622 7041 0.4570 +6622 7045 0.4530 +6622 7054 0.9970 +6622 7070 0.4350 +6622 7077 0.4510 +6622 7096 0.5460 +6622 7097 0.9060 +6622 7099 0.7520 +6622 7111 0.4220 +6622 7124 0.5940 +6622 7145 0.4680 +6622 7157 0.6810 +6622 7184 0.5890 +6622 7189 0.6330 +6622 7276 0.7530 +6622 7311 0.5200 +6622 7314 0.8250 +6622 7316 0.8780 +6622 7317 0.5650 +6622 7321 0.4160 +6622 7332 0.7010 +6622 7345 0.9570 +6622 7368 0.4380 +6622 7415 0.5130 +6622 7416 0.9790 +6622 7417 0.4270 +6622 7473 0.4300 +6622 7494 0.4350 +6622 7532 0.5550 +6622 7533 0.8210 +6622 7545 0.4290 +6622 7704 0.4140 +6622 7837 0.5700 +6622 7917 0.4280 +6622 7942 0.5870 +6622 7965 0.5950 +6622 8224 0.7030 +6622 8239 0.9410 +6622 8287 0.4180 +6622 8293 0.5600 +6622 8398 0.6600 +6622 8678 0.5850 +6622 8867 0.5820 +6622 8878 0.8890 +6622 8934 0.7480 +6622 8988 0.6410 +6622 9101 0.4500 +6622 9118 0.4960 +6622 9143 0.6510 +6622 9217 0.4780 +6622 9246 0.8900 +6622 9445 0.5560 +6622 9454 0.4080 +6622 9463 0.5780 +6622 9474 0.6390 +6622 9529 0.5210 +6622 9627 0.9990 +6622 9759 0.5010 +6622 9804 0.9850 +6622 9817 0.5500 +6622 9829 0.6130 +6622 9900 0.4080 +6622 9911 0.4100 +6622 9921 0.4110 +6622 9927 0.4900 +6622 10013 0.7540 +6622 10049 0.5880 +6622 10059 0.4630 +6622 10133 0.4810 +6622 10213 0.7120 +6622 10273 0.8730 +6622 10376 0.6360 +6622 10452 0.4380 +6622 10457 0.5770 +6622 10533 0.5510 +6622 10577 0.4080 +6622 10769 0.7710 +6622 10890 0.4210 +6622 10891 0.5620 +6622 10935 0.6600 +6622 10971 0.8090 +6622 11047 0.7140 +6622 11076 0.9230 +6622 11315 0.9940 +6622 11339 0.4050 +6622 11345 0.4600 +6622 22895 0.4830 +6622 22933 0.6370 +6622 23001 0.4610 +6622 23208 0.5600 +6622 23236 0.6240 +6622 23317 0.5810 +6622 23327 0.6540 +6622 23400 0.9410 +6622 23411 0.5180 +6622 23435 0.9940 +6622 23621 0.6570 +6622 23710 0.5850 +6622 23762 0.4840 +6622 25793 0.7890 +6622 25853 0.4920 +6622 25893 0.4810 +6622 25978 0.4790 +6622 26058 0.7690 +6622 26281 0.5560 +6622 26353 0.5630 +6622 27235 0.4740 +6622 27429 0.7190 +6622 29058 0.5670 +6622 29126 0.4740 +6622 29978 0.4610 +6622 51024 0.4370 +6622 51079 0.6620 +6622 51142 0.5820 +6622 51327 0.6820 +6622 51571 0.5380 +6622 51667 0.4790 +6622 51806 0.9370 +6622 54205 0.6030 +6622 54209 0.5530 +6622 54623 0.5330 +6622 54802 0.4430 +6622 54832 0.5610 +6622 54959 0.4050 +6622 55201 0.4170 +6622 55363 0.4880 +6622 55432 0.4410 +6622 55437 0.5380 +6622 55486 0.5480 +6622 55626 0.4870 +6622 55669 0.4160 +6622 55737 0.7780 +6622 55967 0.6500 +6622 56901 0.6500 +6622 56922 0.6200 +6622 57030 0.4100 +6622 63974 0.5060 +6622 64710 0.5720 +6622 64837 0.9210 +6622 65018 0.9750 +6622 79065 0.4010 +6622 79705 0.4160 +6622 80025 0.4070 +6622 80331 0.6710 +6622 80380 0.4690 +6622 80762 0.4450 +6622 81631 0.7250 +6622 84134 0.4120 +6622 84286 0.7270 +6622 84557 0.6530 +6622 84570 0.5270 +6622 84660 0.4470 +6622 84894 0.4720 +6622 85477 0.5270 +6622 89953 0.9200 +6622 91683 0.4740 +6622 91860 0.9360 +6622 92552 0.5890 +6622 112755 0.4510 +6622 114798 0.4070 +6622 116442 0.5420 +6622 120892 0.9860 +6622 126328 0.6500 +6622 126393 0.4320 +6622 130013 0.4100 +6622 137902 0.5690 +6622 143471 0.6600 +6622 146713 0.6990 +6622 147700 0.9220 +6622 148811 0.5100 +6622 155061 0.4450 +6622 163688 0.9360 +6622 200576 0.4590 +6622 203228 0.6680 +6622 220074 0.4850 +6622 246744 0.4990 +6622 254428 0.5430 +6622 255239 0.4060 +6622 257202 0.4400 +6622 284058 0.4160 +6622 343035 0.4890 +6622 374291 0.6780 +6622 441549 0.4280 +6622 493869 0.4410 +6622 104909134 0.4400 +6623 6844 0.4830 +6623 7070 0.7270 +6623 11030 0.5390 +6623 11315 0.4110 +6623 24141 0.5620 +6623 51299 0.4550 +6623 57084 0.4230 +6623 140578 0.4080 +6623 220202 0.5490 +6623 246213 0.4120 +6624 6714 0.4430 +6624 6772 0.4880 +6624 6774 0.7420 +6624 6778 0.5360 +6624 6840 0.4990 +6624 7094 0.4780 +6624 7157 0.4050 +6624 7168 0.5540 +6624 7280 0.5220 +6624 7408 0.7520 +6624 7414 0.6540 +6624 7430 0.6760 +6624 7431 0.5710 +6624 7454 0.7550 +6624 7531 0.4240 +6624 7791 0.6490 +6624 8976 0.7860 +6624 9021 0.4550 +6624 10006 0.4630 +6624 10094 0.4420 +6624 10097 0.6410 +6624 10211 0.4040 +6624 10458 0.4320 +6624 10612 0.5880 +6624 10972 0.5360 +6624 11021 0.8650 +6624 11034 0.4830 +6624 11344 0.4490 +6624 23002 0.5800 +6624 23022 0.4460 +6624 23224 0.7040 +6624 23406 0.5160 +6624 23476 0.5310 +6624 25801 0.4170 +6624 29109 0.5910 +6624 50489 0.4180 +6624 50848 0.5460 +6624 51129 0.8440 +6624 54443 0.4430 +6624 57545 0.5700 +6624 58480 0.4680 +6624 64787 0.4700 +6624 81624 0.5130 +6624 83660 0.4340 +6624 83715 0.9490 +6624 84687 0.4970 +6624 85477 0.6470 +6624 203068 0.5280 +6624 339768 0.4590 +6624 345456 0.5370 +6624 375189 0.5620 +6625 6626 0.9990 +6625 6627 0.9920 +6625 6628 0.9990 +6625 6629 0.9970 +6625 6631 0.9990 +6625 6632 0.9990 +6625 6633 0.9990 +6625 6634 0.9990 +6625 6635 0.9990 +6625 6636 0.9990 +6625 6637 0.9990 +6625 6638 0.9970 +6625 6732 0.9390 +6625 6733 0.9240 +6625 6737 0.8480 +6625 6738 0.8370 +6625 6741 0.9270 +6625 6749 0.4330 +6625 6829 0.5110 +6625 7072 0.5740 +6625 7073 0.6050 +6625 7150 0.6630 +6625 7307 0.9000 +6625 7341 0.4790 +6625 7343 0.4920 +6625 7536 0.8670 +6625 7919 0.8910 +6625 7936 0.4320 +6625 8106 0.7620 +6625 8148 0.8290 +6625 8161 0.4120 +6625 8175 0.9860 +6625 8189 0.6300 +6625 8241 0.4040 +6625 8487 0.9080 +6625 8558 0.4090 +6625 8570 0.5300 +6625 8607 0.6410 +6625 8683 0.7510 +6625 8880 0.4140 +6625 8899 0.8760 +6625 8939 0.4590 +6625 9092 0.9840 +6625 9128 0.8980 +6625 9129 0.9530 +6625 9150 0.4200 +6625 9169 0.6650 +6625 9188 0.4260 +6625 9295 0.6340 +6625 9343 0.9560 +6625 9406 0.8600 +6625 9410 0.9380 +6625 9416 0.9530 +6625 9584 0.5920 +6625 9667 0.5280 +6625 9774 0.6280 +6625 9775 0.8030 +6625 9782 0.7400 +6625 9879 0.8170 +6625 9939 0.4230 +6625 9967 0.5550 +6625 9987 0.8410 +6625 10073 0.4470 +6625 10084 0.4620 +6625 10181 0.4060 +6625 10189 0.7940 +6625 10197 0.6800 +6625 10212 0.4810 +6625 10236 0.8400 +6625 10250 0.7580 +6625 10262 0.9440 +6625 10284 0.7500 +6625 10286 0.4640 +6625 10291 0.8670 +6625 10419 0.7420 +6625 10421 0.4260 +6625 10432 0.8650 +6625 10482 0.6100 +6625 10492 0.7480 +6625 10521 0.7990 +6625 10523 0.7650 +6625 10569 0.6150 +6625 10594 0.9680 +6625 10657 0.7160 +6625 10658 0.4520 +6625 10713 0.9290 +6625 10772 0.7570 +6625 10856 0.4560 +6625 10898 0.5290 +6625 10907 0.8490 +6625 10914 0.9880 +6625 10921 0.9000 +6625 10929 0.5840 +6625 10946 0.9510 +6625 10949 0.7620 +6625 10978 0.4090 +6625 10985 0.4560 +6625 10992 0.9810 +6625 11017 0.9630 +6625 11051 0.8640 +6625 11052 0.7150 +6625 11100 0.4790 +6625 11129 0.4800 +6625 11157 0.8160 +6625 11171 0.7170 +6625 11193 0.5830 +6625 11218 0.8650 +6625 11338 0.9820 +6625 22827 0.7600 +6625 22913 0.5570 +6625 22916 0.9130 +6625 22938 0.4120 +6625 22985 0.7650 +6625 23016 0.5260 +6625 23020 0.9590 +6625 23211 0.4180 +6625 23316 0.4320 +6625 23350 0.5350 +6625 23404 0.4250 +6625 23435 0.8520 +6625 23438 0.4100 +6625 23450 0.9520 +6625 23451 0.9790 +6625 23476 0.4190 +6625 23515 0.6030 +6625 23524 0.6990 +6625 23534 0.6590 +6625 23617 0.4300 +6625 23658 0.8810 +6625 24144 0.5030 +6625 24148 0.9260 +6625 25766 0.9320 +6625 25804 0.9490 +6625 25929 0.7860 +6625 25957 0.7560 +6625 26097 0.5960 +6625 26121 0.8910 +6625 26528 0.4960 +6625 26576 0.6070 +6625 26986 0.5090 +6625 27161 0.4480 +6625 27257 0.5510 +6625 27258 0.8900 +6625 27316 0.6990 +6625 27336 0.4400 +6625 27339 0.8150 +6625 29801 0.4100 +6625 29894 0.7560 +6625 29896 0.7690 +6625 50628 0.7210 +6625 51092 0.4140 +6625 51322 0.5990 +6625 51428 0.5140 +6625 51574 0.5850 +6625 51585 0.5690 +6625 51592 0.5100 +6625 51593 0.6270 +6625 51602 0.4470 +6625 51631 0.9840 +6625 51634 0.5150 +6625 51637 0.4240 +6625 51639 0.5780 +6625 51690 0.9200 +6625 51691 0.8900 +6625 51692 0.5320 +6625 51729 0.4840 +6625 51747 0.9470 +6625 51808 0.5930 +6625 53981 0.4910 +6625 54084 0.4360 +6625 54676 0.5500 +6625 54952 0.6250 +6625 54960 0.8010 +6625 55015 0.9390 +6625 55054 0.4310 +6625 55082 0.6460 +6625 55110 0.4700 +6625 55173 0.4300 +6625 55234 0.5550 +6625 55339 0.4570 +6625 55421 0.5440 +6625 55505 0.5030 +6625 55599 0.6330 +6625 55660 0.9780 +6625 55692 0.9940 +6625 55783 0.6530 +6625 55954 0.6530 +6625 56257 0.4370 +6625 56259 0.6410 +6625 56339 0.4240 +6625 56903 0.9880 +6625 57187 0.5670 +6625 57819 0.9350 +6625 58506 0.4030 +6625 58517 0.9940 +6625 59286 0.4400 +6625 64135 0.4290 +6625 64895 0.9880 +6625 64949 0.5260 +6625 79005 0.5120 +6625 79084 0.4840 +6625 79171 0.8490 +6625 79696 0.5930 +6625 79753 0.6490 +6625 79760 0.8500 +6625 79811 0.4240 +6625 79833 0.7750 +6625 79869 0.4830 +6625 79882 0.4740 +6625 80335 0.5720 +6625 81608 0.6990 +6625 81892 0.4530 +6625 83443 0.9420 +6625 83938 0.6460 +6625 83942 0.4360 +6625 84316 0.4470 +6625 84324 0.4950 +6625 84524 0.4040 +6625 84811 0.4420 +6625 84844 0.9430 +6625 84950 0.7130 +6625 84967 0.7040 +6625 84991 0.6120 +6625 91304 0.7630 +6625 91746 0.4240 +6625 92906 0.4020 +6625 96764 0.6670 +6625 114034 0.5030 +6625 116447 0.5730 +6625 121340 0.4960 +6625 124245 0.5570 +6625 124540 0.4300 +6625 126259 0.4460 +6625 135295 0.4260 +6625 144717 0.4300 +6625 147650 0.4540 +6625 153527 0.5620 +6625 154664 0.5050 +6625 220074 0.6460 +6625 220988 0.6850 +6625 221092 0.5960 +6625 246721 0.4020 +6625 284695 0.5710 +6625 347744 0.6250 +6625 392517 0.8050 +6625 100529063 0.4500 +6625 100996928 0.9560 +6625 101669762 0.5510 +6626 6627 0.9990 +6626 6628 0.9990 +6626 6629 0.9390 +6626 6631 0.9990 +6626 6632 0.9990 +6626 6633 0.9990 +6626 6634 0.9990 +6626 6635 0.9990 +6626 6636 0.9990 +6626 6637 0.9990 +6626 6638 0.9950 +6626 6732 0.6460 +6626 6733 0.6820 +6626 6741 0.5850 +6626 6749 0.4470 +6626 7072 0.7830 +6626 7073 0.5800 +6626 7157 0.5320 +6626 7158 0.4640 +6626 7298 0.4880 +6626 7307 0.6840 +6626 7536 0.7410 +6626 7737 0.4890 +6626 7919 0.8200 +6626 7936 0.4630 +6626 8106 0.5070 +6626 8148 0.5720 +6626 8175 0.9950 +6626 8189 0.5340 +6626 8241 0.5360 +6626 8449 0.7930 +6626 8487 0.5140 +6626 8539 0.6120 +6626 8559 0.7380 +6626 8563 0.4170 +6626 8570 0.6660 +6626 8683 0.5810 +6626 8880 0.6260 +6626 8882 0.4190 +6626 8896 0.8820 +6626 8899 0.8760 +6626 9055 0.4190 +6626 9092 0.9890 +6626 9128 0.9620 +6626 9129 0.9660 +6626 9295 0.4140 +6626 9343 0.9950 +6626 9349 0.4120 +6626 9410 0.9720 +6626 9416 0.9530 +6626 9444 0.6230 +6626 9584 0.9020 +6626 9589 0.4070 +6626 9704 0.5160 +6626 9716 0.5410 +6626 9733 0.4370 +6626 9774 0.4190 +6626 9775 0.5660 +6626 9782 0.5240 +6626 9785 0.8590 +6626 9879 0.8230 +6626 9939 0.7330 +6626 9987 0.6230 +6626 9991 0.4180 +6626 10054 0.5390 +6626 10084 0.5840 +6626 10150 0.5700 +6626 10155 0.4870 +6626 10179 0.4760 +6626 10189 0.5600 +6626 10212 0.6550 +6626 10236 0.5030 +6626 10250 0.4600 +6626 10262 0.9730 +6626 10283 0.4610 +6626 10284 0.7120 +6626 10285 0.4500 +6626 10286 0.5830 +6626 10291 0.9570 +6626 10421 0.5140 +6626 10432 0.4260 +6626 10436 0.4330 +6626 10465 0.7430 +6626 10482 0.4400 +6626 10521 0.6760 +6626 10569 0.5320 +6626 10594 0.9880 +6626 10656 0.4150 +6626 10657 0.8160 +6626 10713 0.9560 +6626 10772 0.5710 +6626 10891 0.4290 +6626 10907 0.9570 +6626 10914 0.8080 +6626 10915 0.5320 +6626 10921 0.7930 +6626 10929 0.4140 +6626 10946 0.9970 +6626 10949 0.5710 +6626 10973 0.4370 +6626 10992 0.9880 +6626 11017 0.9360 +6626 11051 0.6680 +6626 11052 0.6410 +6626 11066 0.7120 +6626 11100 0.4910 +6626 11157 0.9590 +6626 11193 0.6270 +6626 11218 0.4410 +6626 11338 0.9920 +6626 22827 0.5510 +6626 22913 0.5050 +6626 22916 0.9480 +6626 22938 0.8710 +6626 22985 0.5900 +6626 23020 0.9920 +6626 23054 0.4970 +6626 23082 0.4840 +6626 23244 0.4380 +6626 23283 0.4370 +6626 23350 0.6760 +6626 23363 0.5160 +6626 23435 0.6720 +6626 23450 0.9850 +6626 23451 0.9950 +6626 23524 0.5820 +6626 23658 0.9600 +6626 24144 0.7050 +6626 24148 0.9940 +6626 24149 0.4870 +6626 25766 0.7290 +6626 25804 0.9870 +6626 25929 0.5380 +6626 25949 0.6190 +6626 25957 0.4760 +6626 26097 0.5430 +6626 26121 0.9720 +6626 26528 0.4780 +6626 26576 0.5080 +6626 26986 0.6110 +6626 27257 0.5190 +6626 27258 0.9660 +6626 27316 0.6530 +6626 27339 0.9480 +6626 29894 0.7250 +6626 29896 0.5630 +6626 51116 0.4120 +6626 51319 0.4480 +6626 51340 0.8280 +6626 51362 0.8430 +6626 51428 0.4540 +6626 51503 0.8700 +6626 51574 0.6670 +6626 51585 0.5150 +6626 51593 0.6560 +6626 51631 0.8540 +6626 51634 0.6970 +6626 51639 0.7090 +6626 51645 0.5300 +6626 51690 0.9680 +6626 51691 0.9720 +6626 51692 0.7260 +6626 51729 0.5140 +6626 51747 0.8210 +6626 53981 0.5170 +6626 54039 0.4450 +6626 54715 0.4070 +6626 54883 0.5080 +6626 54957 0.7210 +6626 55015 0.8000 +6626 55110 0.4980 +6626 55339 0.4250 +6626 55651 0.4350 +6626 55660 0.9280 +6626 55692 0.9290 +6626 55696 0.9150 +6626 55702 0.5990 +6626 55954 0.6040 +6626 56259 0.6390 +6626 56903 0.7990 +6626 56919 0.4800 +6626 56949 0.9330 +6626 56975 0.4200 +6626 57187 0.4450 +6626 57461 0.5240 +6626 57703 0.5830 +6626 57794 0.4990 +6626 57819 0.9850 +6626 58155 0.7520 +6626 58517 0.9530 +6626 59286 0.4690 +6626 60625 0.4800 +6626 64895 0.7980 +6626 79002 0.8950 +6626 79171 0.9790 +6626 79446 0.5050 +6626 79577 0.4140 +6626 79631 0.4290 +6626 79753 0.7220 +6626 79814 0.4320 +6626 79869 0.5000 +6626 83443 0.9730 +6626 83759 0.4470 +6626 83938 0.4210 +6626 84316 0.5130 +6626 84811 0.7080 +6626 84844 0.9760 +6626 84950 0.6790 +6626 84967 0.6800 +6626 84991 0.6360 +6626 85476 0.4520 +6626 91746 0.4340 +6626 92906 0.4080 +6626 114823 0.4470 +6626 124245 0.5070 +6626 126259 0.5060 +6626 147650 0.5050 +6626 151903 0.4310 +6626 153527 0.7840 +6626 164045 0.4480 +6626 220074 0.4210 +6626 220988 0.7120 +6626 284325 0.6340 +6626 284695 0.4530 +6626 392517 0.7790 +6626 100534599 0.4740 +6626 100996928 0.7820 +6627 6628 0.9990 +6627 6629 0.9990 +6627 6631 0.9990 +6627 6632 0.9990 +6627 6633 0.9990 +6627 6634 0.9990 +6627 6635 0.9990 +6627 6636 0.9990 +6627 6637 0.9990 +6627 6638 0.9950 +6627 6732 0.4930 +6627 6733 0.4490 +6627 6741 0.5030 +6627 6775 0.7590 +6627 6936 0.4280 +6627 7157 0.5100 +6627 7307 0.7640 +6627 7536 0.8280 +6627 7737 0.9920 +6627 7919 0.5750 +6627 8161 0.4220 +6627 8175 0.9990 +6627 8220 0.4760 +6627 8449 0.9980 +6627 8464 0.6120 +6627 8480 0.5080 +6627 8559 0.7140 +6627 8562 0.4200 +6627 8570 0.4190 +6627 8666 0.4710 +6627 8880 0.4670 +6627 8896 0.9990 +6627 8899 0.8790 +6627 9092 0.9990 +6627 9128 0.9980 +6627 9129 0.9980 +6627 9141 0.4420 +6627 9343 0.9990 +6627 9349 0.5660 +6627 9360 0.8400 +6627 9410 0.9970 +6627 9416 0.9100 +6627 9444 0.4280 +6627 9584 0.6450 +6627 9704 0.6510 +6627 9716 0.9990 +6627 9733 0.4160 +6627 9775 0.8810 +6627 9785 0.9930 +6627 9879 0.9950 +6627 9939 0.8840 +6627 10073 0.8060 +6627 10179 0.5230 +6627 10181 0.5320 +6627 10189 0.4310 +6627 10208 0.4610 +6627 10212 0.5670 +6627 10250 0.8740 +6627 10262 0.9990 +6627 10283 0.9970 +6627 10285 0.9070 +6627 10286 0.9980 +6627 10291 0.9990 +6627 10436 0.4500 +6627 10450 0.9920 +6627 10465 0.8670 +6627 10482 0.4070 +6627 10492 0.4800 +6627 10523 0.8810 +6627 10569 0.9370 +6627 10594 0.9990 +6627 10657 0.4650 +6627 10713 0.8930 +6627 10772 0.4870 +6627 10891 0.5340 +6627 10907 0.9920 +6627 10915 0.9890 +6627 10921 0.4770 +6627 10946 0.9990 +6627 10969 0.4610 +6627 10992 0.9990 +6627 11017 0.8600 +6627 11044 0.5710 +6627 11051 0.4920 +6627 11066 0.8860 +6627 11157 0.9990 +6627 11193 0.9790 +6627 11224 0.4910 +6627 11325 0.5420 +6627 11338 0.9930 +6627 22794 0.8110 +6627 22827 0.8970 +6627 22859 0.5870 +6627 22916 0.9920 +6627 22938 0.9990 +6627 22944 0.8230 +6627 23020 0.9990 +6627 23082 0.5550 +6627 23091 0.4100 +6627 23246 0.4090 +6627 23266 0.6080 +6627 23284 0.5870 +6627 23350 0.9340 +6627 23379 0.4700 +6627 23398 0.8980 +6627 23435 0.5200 +6627 23450 0.9990 +6627 23451 0.9990 +6627 23524 0.9980 +6627 23658 0.9930 +6627 23759 0.8440 +6627 24144 0.9790 +6627 24148 0.9980 +6627 25766 0.8570 +6627 25804 0.9980 +6627 25929 0.6660 +6627 25949 0.9990 +6627 25980 0.4840 +6627 25983 0.5760 +6627 26017 0.8110 +6627 26121 0.9990 +6627 26986 0.4630 +6627 27257 0.4280 +6627 27258 0.9950 +6627 27316 0.4650 +6627 27336 0.9800 +6627 27339 0.9990 +6627 30849 0.7770 +6627 51322 0.4670 +6627 51340 0.9990 +6627 51362 0.9990 +6627 51503 0.9990 +6627 51574 0.6800 +6627 51602 0.4880 +6627 51631 0.8570 +6627 51634 0.9970 +6627 51639 0.9890 +6627 51645 0.9970 +6627 51690 0.9970 +6627 51691 0.9970 +6627 51729 0.8700 +6627 51747 0.7760 +6627 51808 0.4610 +6627 53938 0.4570 +6627 54836 0.4110 +6627 54845 0.4320 +6627 54883 0.9850 +6627 54952 0.8070 +6627 54957 0.5500 +6627 55015 0.9270 +6627 55100 0.8070 +6627 55110 0.9860 +6627 55234 0.9840 +6627 55280 0.6090 +6627 55285 0.4240 +6627 55299 0.5320 +6627 55599 0.5100 +6627 55646 0.5430 +6627 55660 0.6080 +6627 55692 0.8860 +6627 55696 0.9990 +6627 55702 0.9890 +6627 55954 0.6400 +6627 56257 0.4470 +6627 56259 0.9010 +6627 56919 0.6590 +6627 56949 0.9990 +6627 57187 0.5050 +6627 57461 0.9950 +6627 57703 0.9980 +6627 57819 0.9970 +6627 58509 0.8100 +6627 58517 0.9870 +6627 59286 0.8160 +6627 60491 0.4080 +6627 60625 0.6540 +6627 79171 0.8150 +6627 79446 0.6170 +6627 79576 0.8070 +6627 79577 0.4090 +6627 79696 0.4550 +6627 79706 0.9460 +6627 79753 0.9930 +6627 79882 0.4280 +6627 80004 0.4610 +6627 80011 0.8020 +6627 80213 0.5810 +6627 80331 0.4610 +6627 83443 0.9990 +6627 84065 0.8900 +6627 84268 0.4280 +6627 84316 0.4860 +6627 84811 0.9970 +6627 84844 0.9980 +6627 84950 0.9880 +6627 84967 0.6300 +6627 84991 0.9720 +6627 85365 0.4430 +6627 85479 0.4600 +6627 90324 0.4210 +6627 96764 0.7240 +6627 114034 0.6490 +6627 124245 0.4390 +6627 126259 0.4850 +6627 134492 0.4120 +6627 143884 0.9860 +6627 147650 0.4850 +6627 151903 0.6520 +6627 151987 0.4850 +6627 153527 0.9970 +6627 154007 0.5260 +6627 163859 0.8590 +6627 220988 0.4790 +6627 222183 0.8670 +6627 256536 0.8520 +6627 284325 0.7060 +6627 347744 0.8030 +6627 392517 0.8550 +6627 100534599 0.9850 +6627 100996928 0.8540 +6627 101669762 0.6490 +6628 6629 0.9990 +6628 6631 0.9990 +6628 6632 0.9990 +6628 6633 0.9990 +6628 6634 0.9990 +6628 6635 0.9990 +6628 6636 0.9990 +6628 6637 0.9990 +6628 6638 0.9780 +6628 6741 0.4310 +6628 7011 0.7210 +6628 7015 0.7520 +6628 7073 0.4050 +6628 7175 0.5300 +6628 7307 0.5720 +6628 7536 0.5720 +6628 7737 0.9850 +6628 7884 0.6040 +6628 7919 0.8640 +6628 8021 0.4760 +6628 8086 0.4260 +6628 8148 0.4430 +6628 8161 0.9110 +6628 8175 0.9990 +6628 8189 0.8700 +6628 8233 0.9560 +6628 8405 0.4970 +6628 8449 0.9850 +6628 8480 0.4820 +6628 8487 0.9890 +6628 8539 0.5700 +6628 8559 0.7230 +6628 8570 0.6650 +6628 8683 0.5370 +6628 8880 0.4500 +6628 8886 0.4210 +6628 8896 0.9930 +6628 8899 0.8970 +6628 9092 0.9960 +6628 9128 0.9960 +6628 9129 0.9970 +6628 9150 0.4600 +6628 9221 0.4290 +6628 9343 0.9990 +6628 9360 0.8600 +6628 9410 0.9980 +6628 9416 0.9940 +6628 9419 0.8170 +6628 9584 0.4150 +6628 9631 0.4660 +6628 9688 0.4510 +6628 9716 0.9960 +6628 9733 0.6310 +6628 9775 0.9650 +6628 9785 0.8730 +6628 9818 0.5310 +6628 9879 0.9640 +6628 9883 0.4090 +6628 9887 0.6600 +6628 9939 0.8620 +6628 9972 0.4160 +6628 9987 0.5250 +6628 10073 0.9010 +6628 10078 0.6180 +6628 10081 0.8180 +6628 10137 0.4110 +6628 10155 0.4420 +6628 10189 0.7620 +6628 10212 0.7030 +6628 10236 0.6790 +6628 10250 0.9180 +6628 10262 0.9990 +6628 10283 0.9910 +6628 10284 0.4150 +6628 10285 0.7920 +6628 10286 0.9890 +6628 10291 0.9970 +6628 10419 0.9890 +6628 10421 0.9820 +6628 10450 0.9870 +6628 10465 0.9620 +6628 10492 0.6780 +6628 10498 0.5690 +6628 10521 0.4430 +6628 10523 0.6250 +6628 10557 0.4420 +6628 10569 0.8870 +6628 10574 0.4150 +6628 10594 0.9990 +6628 10643 0.5040 +6628 10657 0.6360 +6628 10713 0.9860 +6628 10728 0.7540 +6628 10762 0.5080 +6628 10891 0.4690 +6628 10907 0.9970 +6628 10915 0.9680 +6628 10921 0.5750 +6628 10946 0.9990 +6628 10949 0.4020 +6628 10973 0.4230 +6628 10992 0.9970 +6628 11017 0.9380 +6628 11052 0.5830 +6628 11066 0.8670 +6628 11097 0.4730 +6628 11157 0.9970 +6628 11171 0.9620 +6628 11193 0.9990 +6628 11218 0.9810 +6628 11273 0.5230 +6628 11325 0.6450 +6628 11338 0.7820 +6628 22794 0.8140 +6628 22827 0.7110 +6628 22913 0.5640 +6628 22916 0.9760 +6628 22938 0.9930 +6628 22944 0.8350 +6628 23020 0.9990 +6628 23082 0.4870 +6628 23165 0.4910 +6628 23225 0.4130 +6628 23244 0.4140 +6628 23279 0.4190 +6628 23293 0.6340 +6628 23350 0.6790 +6628 23381 0.6610 +6628 23398 0.8370 +6628 23405 0.6020 +6628 23435 0.4340 +6628 23450 0.9950 +6628 23451 0.9970 +6628 23511 0.4130 +6628 23524 0.9910 +6628 23636 0.6070 +6628 23658 0.9960 +6628 23759 0.8740 +6628 24144 0.7510 +6628 24148 0.9980 +6628 25766 0.6830 +6628 25804 0.9970 +6628 25888 0.6210 +6628 25929 0.9810 +6628 25949 0.9910 +6628 25980 0.8520 +6628 26017 0.8050 +6628 26097 0.4230 +6628 26121 0.9970 +6628 26986 0.5590 +6628 27101 0.4490 +6628 27238 0.8370 +6628 27257 0.6120 +6628 27258 0.9960 +6628 27288 0.6100 +6628 27304 0.4170 +6628 27316 0.4660 +6628 27336 0.9510 +6628 27339 0.9950 +6628 29107 0.4060 +6628 29894 0.5370 +6628 29946 0.5910 +6628 50628 0.9770 +6628 51340 0.9950 +6628 51362 0.9970 +6628 51428 0.4940 +6628 51503 0.9930 +6628 51574 0.5730 +6628 51593 0.4850 +6628 51631 0.7720 +6628 51634 0.9850 +6628 51639 0.9870 +6628 51645 0.9890 +6628 51690 0.9970 +6628 51691 0.9980 +6628 51692 0.9330 +6628 51729 0.8500 +6628 51747 0.8050 +6628 51808 0.7750 +6628 53371 0.4660 +6628 53981 0.8300 +6628 54433 0.8330 +6628 54496 0.5390 +6628 54552 0.7280 +6628 54883 0.8860 +6628 54957 0.7730 +6628 54960 0.9640 +6628 55015 0.8400 +6628 55100 0.8040 +6628 55110 0.9840 +6628 55135 0.7640 +6628 55226 0.7540 +6628 55234 0.9860 +6628 55285 0.7620 +6628 55352 0.4100 +6628 55505 0.7640 +6628 55599 0.9750 +6628 55651 0.8440 +6628 55660 0.6860 +6628 55692 0.7840 +6628 55696 0.9910 +6628 55702 0.8960 +6628 55706 0.4360 +6628 55746 0.4350 +6628 55783 0.5930 +6628 55802 0.6060 +6628 55837 0.6170 +6628 55954 0.8870 +6628 56257 0.7840 +6628 56259 0.9040 +6628 56949 0.9940 +6628 57122 0.4180 +6628 57461 0.9000 +6628 57703 0.9890 +6628 57819 0.9990 +6628 58509 0.8070 +6628 58517 0.7510 +6628 59286 0.8370 +6628 60560 0.4620 +6628 79005 0.8110 +6628 79023 0.4890 +6628 79084 0.9920 +6628 79171 0.9270 +6628 79446 0.5310 +6628 79576 0.8310 +6628 79631 0.4460 +6628 79637 0.9220 +6628 79706 0.8010 +6628 79727 0.5460 +6628 79753 0.9890 +6628 79760 0.9570 +6628 79833 0.9810 +6628 79902 0.4690 +6628 80011 0.8030 +6628 80331 0.4480 +6628 81929 0.4680 +6628 83443 0.9970 +6628 83732 0.4300 +6628 83938 0.4850 +6628 84060 0.8010 +6628 84811 0.9890 +6628 84844 0.9950 +6628 84950 0.9840 +6628 84967 0.9980 +6628 84991 0.7250 +6628 85437 0.8030 +6628 85476 0.4510 +6628 85479 0.4470 +6628 90324 0.4200 +6628 94104 0.4200 +6628 96764 0.7970 +6628 114034 0.4050 +6628 124245 0.4580 +6628 129401 0.4310 +6628 134353 0.9710 +6628 139804 0.6100 +6628 143884 0.8710 +6628 153527 0.9930 +6628 154007 0.9300 +6628 163859 0.8190 +6628 164045 0.4190 +6628 164781 0.4390 +6628 220074 0.4850 +6628 220988 0.4970 +6628 222183 0.5190 +6628 256536 0.4160 +6628 284325 0.6100 +6628 348793 0.4390 +6628 348995 0.4210 +6628 392517 0.4030 +6628 100101267 0.4170 +6628 100534599 0.8870 +6628 100996928 0.6690 +6629 6631 0.9950 +6629 6632 0.9990 +6629 6633 0.9990 +6629 6634 0.9990 +6629 6635 0.9990 +6629 6636 0.9990 +6629 6637 0.9990 +6629 6638 0.9870 +6629 6732 0.4010 +6629 6741 0.5640 +6629 7073 0.4010 +6629 7307 0.7440 +6629 7536 0.8420 +6629 7737 0.9880 +6629 7919 0.6570 +6629 8106 0.4080 +6629 8148 0.4010 +6629 8161 0.4930 +6629 8175 0.9990 +6629 8449 0.9950 +6629 8491 0.5840 +6629 8559 0.4520 +6629 8683 0.4510 +6629 8896 0.9970 +6629 8899 0.8560 +6629 9092 0.9970 +6629 9128 0.9930 +6629 9129 0.9910 +6629 9141 0.4080 +6629 9343 0.9980 +6629 9360 0.8630 +6629 9410 0.9930 +6629 9416 0.8880 +6629 9444 0.4550 +6629 9584 0.5770 +6629 9589 0.6120 +6629 9704 0.4690 +6629 9716 0.9960 +6629 9733 0.4690 +6629 9775 0.9210 +6629 9785 0.9750 +6629 9879 0.9850 +6629 9939 0.9080 +6629 9987 0.4920 +6629 10073 0.5710 +6629 10081 0.5130 +6629 10179 0.5930 +6629 10189 0.4660 +6629 10236 0.4450 +6629 10250 0.8790 +6629 10262 0.9990 +6629 10283 0.9890 +6629 10284 0.5390 +6629 10285 0.8610 +6629 10286 0.9910 +6629 10291 0.9980 +6629 10436 0.5780 +6629 10450 0.9870 +6629 10465 0.8600 +6629 10521 0.4760 +6629 10523 0.8480 +6629 10569 0.9220 +6629 10594 0.9970 +6629 10713 0.8970 +6629 10891 0.4290 +6629 10907 0.9890 +6629 10915 0.8510 +6629 10946 0.9990 +6629 10949 0.4750 +6629 10973 0.4400 +6629 10987 0.4240 +6629 10992 0.9990 +6629 11017 0.8990 +6629 11051 0.5670 +6629 11066 0.7390 +6629 11100 0.6790 +6629 11157 0.9900 +6629 11193 0.9970 +6629 11325 0.6440 +6629 11338 0.5750 +6629 22794 0.8090 +6629 22826 0.4870 +6629 22827 0.8700 +6629 22916 0.9690 +6629 22938 0.9970 +6629 22944 0.8140 +6629 23020 0.9980 +6629 23082 0.4370 +6629 23091 0.4350 +6629 23350 0.8840 +6629 23398 0.8320 +6629 23404 0.4570 +6629 23435 0.5790 +6629 23450 0.9990 +6629 23451 0.9980 +6629 23524 0.9900 +6629 23658 0.9920 +6629 23759 0.8300 +6629 23780 0.5160 +6629 24144 0.6510 +6629 24148 0.9980 +6629 25766 0.7280 +6629 25804 0.9950 +6629 25929 0.4970 +6629 25949 0.9900 +6629 26017 0.8050 +6629 26121 0.9960 +6629 27258 0.9920 +6629 27316 0.4860 +6629 27336 0.9700 +6629 27339 0.9970 +6629 29079 0.4220 +6629 29896 0.5290 +6629 51010 0.4200 +6629 51126 0.4390 +6629 51340 0.9970 +6629 51362 0.9970 +6629 51503 0.9980 +6629 51574 0.7210 +6629 51593 0.4670 +6629 51631 0.7280 +6629 51634 0.9910 +6629 51639 0.9920 +6629 51645 0.9870 +6629 51690 0.9890 +6629 51691 0.9940 +6629 51729 0.8870 +6629 51747 0.7000 +6629 54512 0.4500 +6629 54883 0.9000 +6629 54957 0.4130 +6629 55015 0.7640 +6629 55100 0.8040 +6629 55110 0.9880 +6629 55234 0.9810 +6629 55599 0.4250 +6629 55646 0.5690 +6629 55660 0.8360 +6629 55692 0.7090 +6629 55696 0.9970 +6629 55702 0.9120 +6629 55954 0.5600 +6629 56257 0.5300 +6629 56259 0.8630 +6629 56919 0.4840 +6629 56943 0.4010 +6629 56949 0.9970 +6629 57461 0.8890 +6629 57703 0.9910 +6629 57721 0.4070 +6629 57794 0.8080 +6629 57819 0.9920 +6629 58509 0.8040 +6629 58517 0.7020 +6629 59286 0.8160 +6629 60625 0.4740 +6629 79171 0.8160 +6629 79446 0.5010 +6629 79576 0.8130 +6629 79631 0.4220 +6629 79706 0.8970 +6629 79727 0.5170 +6629 79753 0.9890 +6629 80004 0.4200 +6629 80011 0.8020 +6629 80135 0.4670 +6629 80349 0.4010 +6629 83443 0.9980 +6629 83938 0.4210 +6629 84316 0.5060 +6629 84811 0.9880 +6629 84844 0.9990 +6629 84950 0.9860 +6629 84967 0.7100 +6629 84991 0.9440 +6629 85476 0.4310 +6629 90324 0.4750 +6629 93659 0.4780 +6629 94027 0.5680 +6629 124245 0.6210 +6629 126259 0.5050 +6629 143884 0.8860 +6629 147650 0.5050 +6629 151987 0.5030 +6629 153527 0.9890 +6629 163859 0.8140 +6629 164045 0.4330 +6629 220074 0.4210 +6629 284325 0.4380 +6629 392517 0.7790 +6629 646262 0.5300 +6629 692312 0.4220 +6629 100534599 0.8870 +6629 100996928 0.5990 +6631 6632 0.9990 +6631 6633 0.9990 +6631 6634 0.9990 +6631 6635 0.9990 +6631 6636 0.9990 +6631 6637 0.9990 +6631 6638 0.9980 +6631 6732 0.4430 +6631 6733 0.6060 +6631 6738 0.5280 +6631 6741 0.4270 +6631 6938 0.4680 +6631 7072 0.9760 +6631 7073 0.6120 +6631 7307 0.5670 +6631 7536 0.8360 +6631 7919 0.6520 +6631 8013 0.5490 +6631 8106 0.4180 +6631 8148 0.8420 +6631 8175 0.9910 +6631 8241 0.7500 +6631 8449 0.5360 +6631 8559 0.4370 +6631 8570 0.4880 +6631 8669 0.4500 +6631 8683 0.5930 +6631 8732 0.4040 +6631 8880 0.4630 +6631 8896 0.4690 +6631 8899 0.8470 +6631 9092 0.8900 +6631 9128 0.8860 +6631 9129 0.9240 +6631 9343 0.9440 +6631 9410 0.9050 +6631 9416 0.9950 +6631 9584 0.6030 +6631 9733 0.5130 +6631 9774 0.4490 +6631 9775 0.5300 +6631 9782 0.6890 +6631 9785 0.6160 +6631 9879 0.8480 +6631 9939 0.5050 +6631 9967 0.4850 +6631 9987 0.6450 +6631 10084 0.5640 +6631 10189 0.5640 +6631 10212 0.6020 +6631 10250 0.4040 +6631 10262 0.9890 +6631 10284 0.7440 +6631 10285 0.4860 +6631 10291 0.8980 +6631 10419 0.4870 +6631 10465 0.4740 +6631 10498 0.8300 +6631 10521 0.6280 +6631 10569 0.5030 +6631 10594 0.8770 +6631 10656 0.6510 +6631 10657 0.6700 +6631 10713 0.8400 +6631 10772 0.5120 +6631 10907 0.8500 +6631 10915 0.8240 +6631 10921 0.6420 +6631 10946 0.9820 +6631 10949 0.4630 +6631 10992 0.9680 +6631 11017 0.8420 +6631 11030 0.4050 +6631 11052 0.4360 +6631 11060 0.4060 +6631 11066 0.9130 +6631 11100 0.5550 +6631 11157 0.8670 +6631 11193 0.8380 +6631 11325 0.7080 +6631 11338 0.9070 +6631 22913 0.5110 +6631 22916 0.9610 +6631 22938 0.4240 +6631 22985 0.5210 +6631 23020 0.9390 +6631 23283 0.4290 +6631 23435 0.5700 +6631 23450 0.9590 +6631 23451 0.9930 +6631 23524 0.6170 +6631 23543 0.8590 +6631 23598 0.4700 +6631 23658 0.9270 +6631 24144 0.5010 +6631 24148 0.9060 +6631 24149 0.4850 +6631 25766 0.9440 +6631 25804 0.9240 +6631 25929 0.4220 +6631 25949 0.4430 +6631 26121 0.8810 +6631 26576 0.4240 +6631 27258 0.8630 +6631 27316 0.4940 +6631 27336 0.4270 +6631 27339 0.5310 +6631 29896 0.5110 +6631 51163 0.4800 +6631 51322 0.5620 +6631 51340 0.5060 +6631 51362 0.5530 +6631 51503 0.4290 +6631 51574 0.4590 +6631 51593 0.5140 +6631 51631 0.9580 +6631 51634 0.5220 +6631 51639 0.6110 +6631 51690 0.9600 +6631 51691 0.9200 +6631 51729 0.5130 +6631 51747 0.8580 +6631 54883 0.4230 +6631 54887 0.4130 +6631 54952 0.8280 +6631 54960 0.4470 +6631 55015 0.9660 +6631 55109 0.5980 +6631 55285 0.5600 +6631 55599 0.6530 +6631 55651 0.7720 +6631 55660 0.9150 +6631 55692 0.9880 +6631 55696 0.4210 +6631 55702 0.4880 +6631 55783 0.6150 +6631 56259 0.5210 +6631 56341 0.4020 +6631 56943 0.4460 +6631 56949 0.5340 +6631 57819 0.9460 +6631 58517 0.9970 +6631 59286 0.5260 +6631 64771 0.4280 +6631 79005 0.6230 +6631 79084 0.6010 +6631 79171 0.8580 +6631 79696 0.5500 +6631 79753 0.4650 +6631 81892 0.4260 +6631 83443 0.9430 +6631 83938 0.6400 +6631 84292 0.7060 +6631 84316 0.6150 +6631 84324 0.4680 +6631 84811 0.5040 +6631 84844 0.9480 +6631 84950 0.7490 +6631 84967 0.6820 +6631 96764 0.6910 +6631 124245 0.5700 +6631 126259 0.6070 +6631 147650 0.6070 +6631 153527 0.6550 +6631 154007 0.4860 +6631 220074 0.6400 +6631 220988 0.4990 +6631 347744 0.8230 +6631 392517 0.8750 +6631 100996928 0.9360 +6631 101669762 0.4800 +6632 6633 0.9990 +6632 6634 0.9990 +6632 6635 0.9990 +6632 6636 0.9990 +6632 6637 0.9990 +6632 6638 0.9990 +6632 6726 0.4180 +6632 6737 0.5470 +6632 6738 0.4220 +6632 6741 0.7110 +6632 7072 0.5350 +6632 7073 0.5550 +6632 7150 0.4750 +6632 7175 0.6380 +6632 7307 0.8280 +6632 7341 0.4690 +6632 7458 0.5950 +6632 7536 0.4170 +6632 7737 0.9910 +6632 7884 0.7390 +6632 7919 0.9190 +6632 8021 0.4250 +6632 8086 0.4600 +6632 8148 0.6190 +6632 8161 0.5970 +6632 8175 0.9990 +6632 8189 0.5470 +6632 8233 0.9100 +6632 8449 0.9920 +6632 8480 0.4680 +6632 8487 0.9990 +6632 8559 0.8410 +6632 8607 0.5380 +6632 8683 0.4790 +6632 8894 0.4850 +6632 8896 0.9990 +6632 8899 0.8970 +6632 9092 0.9990 +6632 9128 0.9960 +6632 9129 0.9990 +6632 9141 0.4170 +6632 9343 0.9990 +6632 9360 0.8460 +6632 9410 0.9960 +6632 9416 0.9980 +6632 9419 0.8080 +6632 9584 0.5000 +6632 9631 0.4510 +6632 9688 0.4720 +6632 9704 0.5530 +6632 9716 0.9970 +6632 9733 0.4250 +6632 9775 0.8900 +6632 9782 0.6550 +6632 9785 0.9190 +6632 9818 0.4160 +6632 9879 0.9960 +6632 9939 0.8890 +6632 9972 0.4260 +6632 9987 0.5200 +6632 10073 0.8440 +6632 10081 0.7200 +6632 10189 0.5990 +6632 10236 0.7180 +6632 10250 0.8360 +6632 10262 0.9930 +6632 10283 0.9920 +6632 10284 0.4850 +6632 10285 0.6630 +6632 10286 0.9940 +6632 10291 0.9990 +6632 10419 0.9910 +6632 10421 0.9200 +6632 10425 0.4260 +6632 10432 0.5950 +6632 10450 0.9840 +6632 10465 0.9780 +6632 10471 0.4460 +6632 10492 0.5070 +6632 10523 0.5750 +6632 10569 0.9320 +6632 10576 0.4100 +6632 10594 0.9990 +6632 10657 0.4350 +6632 10713 0.9820 +6632 10762 0.4860 +6632 10772 0.5280 +6632 10891 0.5100 +6632 10907 0.9910 +6632 10915 0.9740 +6632 10946 0.9990 +6632 10949 0.6140 +6632 10973 0.5180 +6632 10992 0.9990 +6632 11017 0.9290 +6632 11051 0.7100 +6632 11052 0.4950 +6632 11066 0.9670 +6632 11097 0.4400 +6632 11157 0.9990 +6632 11171 0.9580 +6632 11193 0.9800 +6632 11218 0.9670 +6632 11325 0.5770 +6632 11338 0.8650 +6632 22794 0.8020 +6632 22827 0.6490 +6632 22913 0.4830 +6632 22916 0.9870 +6632 22938 0.9980 +6632 22944 0.8040 +6632 23016 0.4530 +6632 23020 0.9990 +6632 23082 0.5220 +6632 23165 0.4690 +6632 23225 0.4260 +6632 23279 0.4700 +6632 23283 0.4350 +6632 23350 0.7440 +6632 23398 0.8110 +6632 23404 0.4250 +6632 23435 0.6740 +6632 23450 0.9980 +6632 23451 0.9980 +6632 23511 0.4140 +6632 23524 0.9930 +6632 23636 0.4240 +6632 23658 0.9970 +6632 23759 0.8430 +6632 24144 0.7810 +6632 24148 0.9990 +6632 25766 0.9290 +6632 25804 0.9980 +6632 25820 0.4050 +6632 25888 0.6510 +6632 25929 0.9820 +6632 25949 0.9910 +6632 25980 0.7940 +6632 26017 0.8030 +6632 26097 0.5660 +6632 26121 0.9980 +6632 27238 0.8050 +6632 27257 0.8020 +6632 27258 0.9990 +6632 27288 0.6650 +6632 27301 0.4070 +6632 27316 0.6350 +6632 27336 0.9070 +6632 27339 0.9990 +6632 29894 0.4290 +6632 29896 0.4520 +6632 50628 0.9390 +6632 51010 0.5420 +6632 51322 0.5000 +6632 51340 0.9990 +6632 51362 0.9990 +6632 51503 0.9980 +6632 51574 0.5590 +6632 51593 0.4270 +6632 51602 0.4650 +6632 51631 0.9520 +6632 51634 0.9900 +6632 51639 0.9950 +6632 51645 0.9920 +6632 51690 0.9980 +6632 51691 0.9990 +6632 51692 0.5190 +6632 51728 0.4390 +6632 51729 0.8050 +6632 51747 0.7900 +6632 51808 0.7370 +6632 53371 0.5090 +6632 53981 0.4420 +6632 54432 0.4260 +6632 54433 0.4710 +6632 54496 0.4760 +6632 54883 0.9510 +6632 54952 0.7900 +6632 54957 0.7310 +6632 54960 0.9450 +6632 55015 0.9370 +6632 55100 0.8040 +6632 55110 0.9890 +6632 55234 0.9850 +6632 55285 0.7930 +6632 55505 0.4370 +6632 55599 0.9690 +6632 55651 0.5510 +6632 55660 0.6690 +6632 55692 0.9660 +6632 55696 0.9970 +6632 55702 0.9220 +6632 55706 0.4530 +6632 55746 0.4850 +6632 55759 0.5620 +6632 55954 0.9040 +6632 56259 0.8810 +6632 56919 0.5640 +6632 56949 0.9990 +6632 57122 0.4850 +6632 57187 0.5530 +6632 57461 0.8890 +6632 57703 0.9920 +6632 57819 0.9990 +6632 58509 0.8060 +6632 58517 0.9310 +6632 59286 0.8930 +6632 60625 0.5550 +6632 79005 0.8120 +6632 79023 0.5360 +6632 79084 0.9880 +6632 79171 0.9200 +6632 79446 0.7690 +6632 79576 0.8140 +6632 79631 0.5670 +6632 79637 0.9220 +6632 79696 0.4950 +6632 79706 0.8180 +6632 79753 0.9920 +6632 79760 0.9660 +6632 79833 0.9590 +6632 79902 0.5180 +6632 80011 0.8010 +6632 80153 0.5120 +6632 81892 0.4750 +6632 81929 0.5320 +6632 83443 0.9980 +6632 83938 0.5710 +6632 84060 0.8000 +6632 84316 0.7310 +6632 84324 0.4130 +6632 84661 0.4060 +6632 84811 0.9890 +6632 84844 0.9950 +6632 84950 0.9860 +6632 84967 0.8150 +6632 84991 0.6790 +6632 85437 0.7980 +6632 85476 0.5880 +6632 90324 0.4290 +6632 96764 0.5880 +6632 124801 0.4130 +6632 126259 0.6200 +6632 129401 0.5370 +6632 134353 0.7560 +6632 134492 0.4040 +6632 139804 0.6610 +6632 143884 0.8960 +6632 147650 0.6200 +6632 153527 0.9910 +6632 154007 0.8460 +6632 163859 0.8150 +6632 164045 0.5050 +6632 164781 0.4290 +6632 220074 0.5710 +6632 220988 0.6200 +6632 222183 0.6290 +6632 246721 0.5700 +6632 256536 0.8420 +6632 284325 0.7060 +6632 284695 0.4890 +6632 347744 0.7800 +6632 348793 0.4320 +6632 348995 0.5590 +6632 392517 0.8220 +6632 548644 0.5740 +6632 653489 0.4200 +6632 100101267 0.4160 +6632 100134938 0.4360 +6632 100534599 0.8910 +6632 100996928 0.8750 +6632 107983993 0.4360 +6633 6634 0.9990 +6633 6635 0.9990 +6633 6636 0.9990 +6633 6637 0.9990 +6633 6638 0.9990 +6633 6726 0.4230 +6633 6727 0.5000 +6633 6732 0.5140 +6633 6733 0.4110 +6633 6738 0.4490 +6633 6741 0.8460 +6633 7015 0.5760 +6633 7072 0.5200 +6633 7073 0.7010 +6633 7099 0.4670 +6633 7175 0.6130 +6633 7307 0.8100 +6633 7341 0.5990 +6633 7388 0.4910 +6633 7458 0.4610 +6633 7536 0.5750 +6633 7737 0.9910 +6633 7884 0.5200 +6633 7919 0.9380 +6633 7936 0.5440 +6633 8021 0.4350 +6633 8086 0.4850 +6633 8106 0.5020 +6633 8148 0.7350 +6633 8175 0.9990 +6633 8189 0.5850 +6633 8233 0.9320 +6633 8260 0.4370 +6633 8361 0.5540 +6633 8449 0.9910 +6633 8480 0.4510 +6633 8487 0.9990 +6633 8559 0.7860 +6633 8570 0.4670 +6633 8607 0.5350 +6633 8666 0.5290 +6633 8668 0.5380 +6633 8683 0.6950 +6633 8721 0.4750 +6633 8815 0.4740 +6633 8880 0.4010 +6633 8896 0.9990 +6633 8899 0.8570 +6633 9092 0.9990 +6633 9128 0.9990 +6633 9129 0.9990 +6633 9141 0.4710 +6633 9150 0.4490 +6633 9326 0.4160 +6633 9343 0.9990 +6633 9360 0.8580 +6633 9410 0.9980 +6633 9416 0.9990 +6633 9419 0.8150 +6633 9584 0.6130 +6633 9631 0.4380 +6633 9636 0.4070 +6633 9688 0.4980 +6633 9704 0.5990 +6633 9716 0.9960 +6633 9733 0.5910 +6633 9774 0.4520 +6633 9775 0.9220 +6633 9782 0.6630 +6633 9785 0.9120 +6633 9818 0.4400 +6633 9879 0.9890 +6633 9883 0.4120 +6633 9939 0.9170 +6633 9972 0.4160 +6633 9987 0.5480 +6633 10073 0.6080 +6633 10078 0.6580 +6633 10081 0.7200 +6633 10189 0.7330 +6633 10197 0.5220 +6633 10204 0.4430 +6633 10212 0.5810 +6633 10236 0.7100 +6633 10250 0.9110 +6633 10262 0.9960 +6633 10283 0.9910 +6633 10284 0.7460 +6633 10285 0.5830 +6633 10286 0.9910 +6633 10291 0.9980 +6633 10399 0.4150 +6633 10419 0.9660 +6633 10421 0.9170 +6633 10432 0.7790 +6633 10436 0.4500 +6633 10450 0.9870 +6633 10465 0.9760 +6633 10471 0.5700 +6633 10492 0.5850 +6633 10521 0.4720 +6633 10523 0.6720 +6633 10557 0.5020 +6633 10569 0.9370 +6633 10576 0.4410 +6633 10594 0.9990 +6633 10657 0.5510 +6633 10713 0.9900 +6633 10762 0.4680 +6633 10772 0.7180 +6633 10856 0.5210 +6633 10891 0.6480 +6633 10907 0.9920 +6633 10915 0.9700 +6633 10921 0.4450 +6633 10946 0.9990 +6633 10949 0.7650 +6633 10973 0.6320 +6633 10992 0.9990 +6633 11017 0.9380 +6633 11051 0.6950 +6633 11052 0.7060 +6633 11066 0.9780 +6633 11097 0.4220 +6633 11157 0.9990 +6633 11171 0.9750 +6633 11193 0.9790 +6633 11218 0.9750 +6633 11224 0.8190 +6633 11325 0.6500 +6633 11338 0.9900 +6633 22794 0.8000 +6633 22826 0.5370 +6633 22827 0.7290 +6633 22913 0.5310 +6633 22916 0.9950 +6633 22938 0.9990 +6633 22944 0.8160 +6633 23016 0.5550 +6633 23019 0.4350 +6633 23020 0.9990 +6633 23082 0.6500 +6633 23091 0.4610 +6633 23165 0.4510 +6633 23225 0.4320 +6633 23244 0.4170 +6633 23279 0.4650 +6633 23283 0.4980 +6633 23350 0.6730 +6633 23398 0.8450 +6633 23404 0.4670 +6633 23435 0.7460 +6633 23450 0.9980 +6633 23451 0.9980 +6633 23480 0.4270 +6633 23511 0.4160 +6633 23517 0.4270 +6633 23524 0.9920 +6633 23636 0.4620 +6633 23643 0.5000 +6633 23658 0.9990 +6633 23759 0.8530 +6633 24144 0.8220 +6633 24148 0.9990 +6633 24149 0.4920 +6633 25766 0.8340 +6633 25804 0.9990 +6633 25873 0.6900 +6633 25929 0.9760 +6633 25949 0.9910 +6633 25980 0.7580 +6633 26017 0.8250 +6633 26065 0.4810 +6633 26097 0.6630 +6633 26121 0.9990 +6633 26517 0.7460 +6633 27089 0.4810 +6633 27238 0.8160 +6633 27257 0.9600 +6633 27258 0.9990 +6633 27288 0.6540 +6633 27301 0.4390 +6633 27304 0.4650 +6633 27316 0.8070 +6633 27335 0.5360 +6633 27336 0.9480 +6633 27339 0.9990 +6633 28974 0.4300 +6633 29894 0.4860 +6633 29896 0.4870 +6633 50628 0.9560 +6633 51311 0.5130 +6633 51322 0.4810 +6633 51340 0.9990 +6633 51362 0.9990 +6633 51372 0.4700 +6633 51398 0.4040 +6633 51503 0.9980 +6633 51504 0.5650 +6633 51538 0.4610 +6633 51574 0.6390 +6633 51593 0.7330 +6633 51631 0.9850 +6633 51634 0.9900 +6633 51637 0.5280 +6633 51639 0.9960 +6633 51645 0.9900 +6633 51690 0.9990 +6633 51691 0.9990 +6633 51692 0.5570 +6633 51729 0.8500 +6633 51747 0.8960 +6633 51808 0.6450 +6633 53371 0.5210 +6633 53981 0.4550 +6633 54464 0.6070 +6633 54543 0.5560 +6633 54814 0.4490 +6633 54819 0.5100 +6633 54883 0.9220 +6633 54952 0.7700 +6633 54957 0.7490 +6633 54960 0.9540 +6633 55015 0.8360 +6633 55100 0.8030 +6633 55110 0.9910 +6633 55234 0.9880 +6633 55285 0.8910 +6633 55505 0.5370 +6633 55599 0.9800 +6633 55651 0.7450 +6633 55660 0.6900 +6633 55692 0.9600 +6633 55696 0.9970 +6633 55702 0.9160 +6633 55706 0.4160 +6633 55746 0.5400 +6633 55760 0.4410 +6633 55954 0.9710 +6633 56061 0.4010 +6633 56257 0.4190 +6633 56259 0.9290 +6633 56919 0.5700 +6633 56949 0.9980 +6633 57122 0.4380 +6633 57187 0.6670 +6633 57461 0.8840 +6633 57647 0.4720 +6633 57703 0.9930 +6633 57819 0.9990 +6633 58509 0.8340 +6633 58517 0.9320 +6633 59286 0.9460 +6633 60625 0.5620 +6633 79005 0.9090 +6633 79023 0.4690 +6633 79084 0.9810 +6633 79171 0.9230 +6633 79446 0.8530 +6633 79576 0.8010 +6633 79631 0.6460 +6633 79637 0.9220 +6633 79665 0.4520 +6633 79696 0.4740 +6633 79706 0.8000 +6633 79753 0.9920 +6633 79760 0.9550 +6633 79833 0.9750 +6633 79902 0.4500 +6633 80011 0.8010 +6633 80218 0.4090 +6633 80331 0.5810 +6633 81892 0.5600 +6633 81929 0.4610 +6633 83443 0.9990 +6633 83938 0.8230 +6633 84060 0.8000 +6633 84316 0.8040 +6633 84324 0.5320 +6633 84811 0.9900 +6633 84844 0.9970 +6633 84950 0.9810 +6633 84967 0.9780 +6633 84991 0.7210 +6633 85437 0.8290 +6633 85476 0.6450 +6633 85479 0.5810 +6633 90324 0.4260 +6633 90957 0.4090 +6633 96764 0.9820 +6633 124245 0.4830 +6633 126259 0.7500 +6633 129401 0.4760 +6633 134353 0.7290 +6633 139804 0.6510 +6633 140823 0.5190 +6633 143884 0.8960 +6633 147650 0.7500 +6633 149041 0.5100 +6633 151987 0.4030 +6633 153527 0.9940 +6633 154007 0.8920 +6633 163859 0.8140 +6633 164045 0.6290 +6633 164781 0.5710 +6633 165545 0.4410 +6633 220074 0.8230 +6633 220988 0.6530 +6633 222183 0.6010 +6633 246721 0.5630 +6633 256536 0.8400 +6633 284325 0.9210 +6633 284695 0.6130 +6633 347744 0.7680 +6633 348793 0.5920 +6633 348995 0.5270 +6633 392517 0.8720 +6633 548644 0.5660 +6633 100101267 0.4240 +6633 100134938 0.4540 +6633 100534599 0.8910 +6633 100996928 0.9490 +6633 101669762 0.8630 +6633 107983993 0.4540 +6634 6635 0.9990 +6634 6636 0.9990 +6634 6637 0.9990 +6634 6638 0.9990 +6634 6738 0.4350 +6634 6741 0.8410 +6634 6829 0.4140 +6634 6881 0.4560 +6634 7011 0.7310 +6634 7015 0.8620 +6634 7072 0.4920 +6634 7073 0.6000 +6634 7150 0.4380 +6634 7175 0.5350 +6634 7307 0.6970 +6634 7341 0.6280 +6634 7458 0.4500 +6634 7520 0.4490 +6634 7536 0.5560 +6634 7737 0.9890 +6634 7884 0.6600 +6634 7919 0.9290 +6634 8021 0.4200 +6634 8086 0.4530 +6634 8106 0.5180 +6634 8148 0.7210 +6634 8161 0.4970 +6634 8175 0.9990 +6634 8189 0.8490 +6634 8233 0.9460 +6634 8337 0.4800 +6634 8338 0.4780 +6634 8361 0.6290 +6634 8449 0.9900 +6634 8480 0.4840 +6634 8487 0.9630 +6634 8559 0.7400 +6634 8607 0.6730 +6634 8683 0.6080 +6634 8815 0.6860 +6634 8896 0.9990 +6634 8899 0.8200 +6634 9092 0.9980 +6634 9128 0.9980 +6634 9129 0.9990 +6634 9141 0.4040 +6634 9150 0.6860 +6634 9255 0.4020 +6634 9343 0.9990 +6634 9360 0.8620 +6634 9377 0.4740 +6634 9410 0.9930 +6634 9416 0.9960 +6634 9419 0.8010 +6634 9533 0.5410 +6634 9584 0.4890 +6634 9631 0.4160 +6634 9688 0.5160 +6634 9704 0.4980 +6634 9716 0.9970 +6634 9732 0.4370 +6634 9775 0.9630 +6634 9782 0.6740 +6634 9785 0.9260 +6634 9818 0.4130 +6634 9879 0.9640 +6634 9883 0.4900 +6634 9887 0.5930 +6634 9936 0.4430 +6634 9939 0.8760 +6634 9972 0.4100 +6634 9987 0.4900 +6634 10073 0.7720 +6634 10078 0.5800 +6634 10081 0.8450 +6634 10189 0.8700 +6634 10196 0.4210 +6634 10236 0.8470 +6634 10250 0.8880 +6634 10262 0.9950 +6634 10283 0.9910 +6634 10284 0.5940 +6634 10285 0.6570 +6634 10286 0.9920 +6634 10291 0.9950 +6634 10393 0.5890 +6634 10419 0.9960 +6634 10421 0.8210 +6634 10432 0.6380 +6634 10450 0.9890 +6634 10465 0.9720 +6634 10471 0.5210 +6634 10492 0.4960 +6634 10498 0.4600 +6634 10523 0.5870 +6634 10557 0.6990 +6634 10569 0.9050 +6634 10594 0.9990 +6634 10657 0.5250 +6634 10713 0.9800 +6634 10728 0.7600 +6634 10762 0.4650 +6634 10772 0.4650 +6634 10856 0.4060 +6634 10891 0.6040 +6634 10907 0.9980 +6634 10915 0.8620 +6634 10921 0.4060 +6634 10946 0.9980 +6634 10949 0.6490 +6634 10973 0.5720 +6634 10992 0.9980 +6634 11017 0.9480 +6634 11051 0.5350 +6634 11052 0.5820 +6634 11066 0.9780 +6634 11097 0.4320 +6634 11157 0.9990 +6634 11171 0.9550 +6634 11193 0.9850 +6634 11198 0.4030 +6634 11218 0.9550 +6634 11325 0.5840 +6634 11338 0.8840 +6634 22794 0.8200 +6634 22827 0.7090 +6634 22913 0.4720 +6634 22916 0.9840 +6634 22938 0.9980 +6634 22944 0.8030 +6634 22948 0.4170 +6634 22993 0.5120 +6634 23016 0.4880 +6634 23020 0.9990 +6634 23082 0.6060 +6634 23091 0.4480 +6634 23165 0.4160 +6634 23225 0.4420 +6634 23279 0.4370 +6634 23283 0.4140 +6634 23293 0.5910 +6634 23350 0.6800 +6634 23381 0.5910 +6634 23398 0.8310 +6634 23404 0.4500 +6634 23435 0.8320 +6634 23450 0.9980 +6634 23451 0.9960 +6634 23478 0.4130 +6634 23511 0.4160 +6634 23512 0.4340 +6634 23524 0.9910 +6634 23636 0.4350 +6634 23658 0.9990 +6634 23759 0.8610 +6634 24144 0.7540 +6634 24148 0.9990 +6634 24149 0.4260 +6634 25766 0.8160 +6634 25804 0.9990 +6634 25888 0.5740 +6634 25929 0.9720 +6634 25949 0.9910 +6634 25980 0.7960 +6634 26017 0.8130 +6634 26097 0.6770 +6634 26121 0.9980 +6634 26986 0.4600 +6634 27238 0.8110 +6634 27257 0.7090 +6634 27258 0.9990 +6634 27288 0.6690 +6634 27301 0.5780 +6634 27316 0.6790 +6634 27336 0.9170 +6634 27339 0.9990 +6634 29894 0.4180 +6634 29896 0.4580 +6634 50628 0.9380 +6634 51319 0.4150 +6634 51322 0.4790 +6634 51340 0.9990 +6634 51362 0.9990 +6634 51493 0.4660 +6634 51503 0.9970 +6634 51538 0.4480 +6634 51574 0.6720 +6634 51593 0.5800 +6634 51631 0.9130 +6634 51634 0.9880 +6634 51637 0.5200 +6634 51639 0.9900 +6634 51645 0.9900 +6634 51690 0.9990 +6634 51691 0.9990 +6634 51692 0.8730 +6634 51729 0.8040 +6634 51747 0.7920 +6634 51808 0.7510 +6634 53371 0.5320 +6634 53981 0.8520 +6634 54433 0.8310 +6634 54496 0.6840 +6634 54552 0.7480 +6634 54883 0.9090 +6634 54952 0.5810 +6634 54957 0.9220 +6634 54960 0.9420 +6634 55015 0.8540 +6634 55094 0.5860 +6634 55100 0.8030 +6634 55110 0.9890 +6634 55135 0.8020 +6634 55170 0.4180 +6634 55226 0.7530 +6634 55234 0.9920 +6634 55285 0.8660 +6634 55352 0.4010 +6634 55505 0.8350 +6634 55599 0.9820 +6634 55651 0.9040 +6634 55660 0.6980 +6634 55692 0.9360 +6634 55696 0.9970 +6634 55702 0.9240 +6634 55706 0.4360 +6634 55746 0.4860 +6634 55760 0.4370 +6634 55783 0.4690 +6634 55837 0.4850 +6634 55954 0.9720 +6634 56257 0.5530 +6634 56259 0.9010 +6634 56919 0.5060 +6634 56949 0.9980 +6634 57122 0.4610 +6634 57187 0.5920 +6634 57461 0.8970 +6634 57703 0.9900 +6634 57819 0.9990 +6634 58509 0.8120 +6634 58517 0.8910 +6634 59286 0.8940 +6634 60625 0.5960 +6634 64852 0.4890 +6634 79005 0.8050 +6634 79023 0.5000 +6634 79084 0.9960 +6634 79171 0.9240 +6634 79446 0.8570 +6634 79576 0.8010 +6634 79631 0.6460 +6634 79637 0.9220 +6634 79696 0.4750 +6634 79706 0.8140 +6634 79753 0.9910 +6634 79760 0.9530 +6634 79833 0.9700 +6634 79902 0.5240 +6634 80011 0.8010 +6634 81892 0.4340 +6634 81929 0.4850 +6634 83443 0.9980 +6634 83732 0.4670 +6634 83938 0.8260 +6634 84060 0.8070 +6634 84316 0.7840 +6634 84324 0.5040 +6634 84545 0.4920 +6634 84811 0.9880 +6634 84844 0.9950 +6634 84950 0.9860 +6634 84967 0.9990 +6634 84991 0.6240 +6634 85437 0.8010 +6634 85476 0.6440 +6634 96764 0.7210 +6634 126259 0.7440 +6634 129401 0.4780 +6634 134353 0.9710 +6634 139804 0.6690 +6634 143884 0.9050 +6634 147650 0.7440 +6634 153527 0.9970 +6634 154007 0.9120 +6634 163859 0.8410 +6634 164045 0.5660 +6634 164781 0.6300 +6634 165545 0.4370 +6634 199746 0.4150 +6634 220074 0.8260 +6634 220988 0.6770 +6634 222183 0.5090 +6634 246721 0.5220 +6634 284325 0.6890 +6634 284695 0.4620 +6634 347744 0.5770 +6634 348793 0.6370 +6634 348995 0.5290 +6634 392517 0.7280 +6634 548644 0.5220 +6634 100101267 0.4940 +6634 100134938 0.4310 +6634 100534599 0.8800 +6634 100996928 0.7490 +6634 107983993 0.4310 +6635 6636 0.9990 +6635 6637 0.9990 +6635 6638 0.9990 +6635 6726 0.4810 +6635 6741 0.8080 +6635 6742 0.4200 +6635 6902 0.5450 +6635 7011 0.7310 +6635 7015 0.7440 +6635 7072 0.4600 +6635 7073 0.6180 +6635 7175 0.5780 +6635 7203 0.4310 +6635 7307 0.7240 +6635 7311 0.6490 +6635 7341 0.6850 +6635 7458 0.4710 +6635 7514 0.4680 +6635 7536 0.7060 +6635 7737 0.9890 +6635 7884 0.6330 +6635 7919 0.9220 +6635 8021 0.4320 +6635 8086 0.4760 +6635 8106 0.4990 +6635 8148 0.7150 +6635 8161 0.5420 +6635 8175 0.9990 +6635 8189 0.9260 +6635 8233 0.9590 +6635 8260 0.4750 +6635 8449 0.9950 +6635 8480 0.4360 +6635 8487 0.9990 +6635 8559 0.8430 +6635 8562 0.4700 +6635 8570 0.5010 +6635 8607 0.4180 +6635 8666 0.4240 +6635 8668 0.4280 +6635 8683 0.5750 +6635 8815 0.4390 +6635 8880 0.4500 +6635 8896 0.9990 +6635 8899 0.8720 +6635 9027 0.5840 +6635 9092 0.9990 +6635 9128 0.9990 +6635 9129 0.9980 +6635 9141 0.8710 +6635 9150 0.5530 +6635 9343 0.9990 +6635 9360 0.8560 +6635 9410 0.9990 +6635 9416 0.9980 +6635 9419 0.8050 +6635 9465 0.4200 +6635 9584 0.4290 +6635 9631 0.4590 +6635 9688 0.5190 +6635 9704 0.5450 +6635 9716 0.9970 +6635 9732 0.4050 +6635 9733 0.4780 +6635 9775 0.9040 +6635 9782 0.6820 +6635 9785 0.9100 +6635 9818 0.4130 +6635 9877 0.5410 +6635 9879 0.9750 +6635 9883 0.4180 +6635 9887 0.6060 +6635 9939 0.8730 +6635 9972 0.4200 +6635 9978 0.5330 +6635 9987 0.5170 +6635 10073 0.8800 +6635 10078 0.5760 +6635 10081 0.8910 +6635 10161 0.4570 +6635 10189 0.8670 +6635 10197 0.4570 +6635 10209 0.4310 +6635 10212 0.4910 +6635 10236 0.7120 +6635 10250 0.8530 +6635 10262 0.9960 +6635 10283 0.9920 +6635 10284 0.6330 +6635 10285 0.5510 +6635 10286 0.9950 +6635 10289 0.4650 +6635 10291 0.9980 +6635 10419 0.9770 +6635 10421 0.8920 +6635 10432 0.6630 +6635 10450 0.9910 +6635 10465 0.9730 +6635 10471 0.4900 +6635 10492 0.5280 +6635 10523 0.7290 +6635 10528 0.4490 +6635 10557 0.5870 +6635 10569 0.9250 +6635 10594 0.9990 +6635 10657 0.5470 +6635 10713 0.9890 +6635 10728 0.7690 +6635 10762 0.4920 +6635 10772 0.5120 +6635 10891 0.6700 +6635 10907 0.9940 +6635 10915 0.8170 +6635 10946 0.9990 +6635 10949 0.7550 +6635 10973 0.5070 +6635 10992 0.9990 +6635 11017 0.9590 +6635 11051 0.6610 +6635 11052 0.5480 +6635 11066 0.9860 +6635 11097 0.4200 +6635 11157 0.9990 +6635 11171 0.9670 +6635 11193 0.9830 +6635 11218 0.9790 +6635 11222 0.6240 +6635 11224 0.8420 +6635 11325 0.6990 +6635 11338 0.9890 +6635 22794 0.8110 +6635 22827 0.6710 +6635 22913 0.4710 +6635 22916 0.9920 +6635 22938 0.9980 +6635 22944 0.8040 +6635 22985 0.4650 +6635 22993 0.6150 +6635 23016 0.5320 +6635 23020 0.9990 +6635 23029 0.4470 +6635 23082 0.6720 +6635 23091 0.4370 +6635 23165 0.5280 +6635 23225 0.4050 +6635 23279 0.4420 +6635 23283 0.4340 +6635 23293 0.6040 +6635 23350 0.7330 +6635 23381 0.6040 +6635 23398 0.8120 +6635 23404 0.4660 +6635 23435 0.7770 +6635 23450 0.9990 +6635 23451 0.9990 +6635 23511 0.4160 +6635 23524 0.9910 +6635 23636 0.4620 +6635 23658 0.9990 +6635 23759 0.8530 +6635 24144 0.6850 +6635 24148 0.9990 +6635 24149 0.4010 +6635 25766 0.9340 +6635 25804 0.9990 +6635 25888 0.5910 +6635 25929 0.9730 +6635 25949 0.9950 +6635 25980 0.7750 +6635 26017 0.8010 +6635 26097 0.6400 +6635 26121 0.9990 +6635 26521 0.4630 +6635 26986 0.4460 +6635 27238 0.8080 +6635 27257 0.8850 +6635 27258 0.9990 +6635 27288 0.6730 +6635 27301 0.4260 +6635 27316 0.7540 +6635 27336 0.9370 +6635 27339 0.9990 +6635 28998 0.4170 +6635 29894 0.5620 +6635 29896 0.5520 +6635 50628 0.9530 +6635 51002 0.4670 +6635 51013 0.4210 +6635 51023 0.4020 +6635 51081 0.4010 +6635 51082 0.4280 +6635 51319 0.6050 +6635 51322 0.6340 +6635 51340 0.9990 +6635 51362 0.9990 +6635 51388 0.4080 +6635 51503 0.9980 +6635 51538 0.4460 +6635 51574 0.5150 +6635 51593 0.5940 +6635 51631 0.9490 +6635 51634 0.9910 +6635 51637 0.5020 +6635 51639 0.9980 +6635 51645 0.9910 +6635 51690 0.9990 +6635 51691 0.9990 +6635 51692 0.8630 +6635 51729 0.8040 +6635 51747 0.8640 +6635 51808 0.6260 +6635 53371 0.5280 +6635 53981 0.8540 +6635 54433 0.8310 +6635 54543 0.4360 +6635 54552 0.7430 +6635 54883 0.9120 +6635 54952 0.7820 +6635 54957 0.7690 +6635 54960 0.9680 +6635 55015 0.8090 +6635 55094 0.4680 +6635 55100 0.8040 +6635 55110 0.9950 +6635 55135 0.7570 +6635 55173 0.6200 +6635 55226 0.7480 +6635 55234 0.9890 +6635 55285 0.9020 +6635 55505 0.8100 +6635 55599 0.9930 +6635 55651 0.8590 +6635 55660 0.6260 +6635 55692 0.9220 +6635 55696 0.9980 +6635 55702 0.9110 +6635 55703 0.4420 +6635 55706 0.4430 +6635 55746 0.5250 +6635 55749 0.4090 +6635 55760 0.4710 +6635 55783 0.6240 +6635 55837 0.6090 +6635 55954 0.9520 +6635 56257 0.5220 +6635 56259 0.9290 +6635 56648 0.6280 +6635 56919 0.5530 +6635 56949 0.9980 +6635 57106 0.5840 +6635 57122 0.4760 +6635 57187 0.6580 +6635 57461 0.9450 +6635 57647 0.4380 +6635 57703 0.9910 +6635 57819 0.9990 +6635 58509 0.8060 +6635 58517 0.7380 +6635 59286 0.8540 +6635 60560 0.8820 +6635 60625 0.7140 +6635 63931 0.4720 +6635 64852 0.5030 +6635 79005 0.8060 +6635 79023 0.5980 +6635 79084 0.9740 +6635 79171 0.9260 +6635 79446 0.8170 +6635 79574 0.4970 +6635 79576 0.8010 +6635 79631 0.7070 +6635 79637 0.9220 +6635 79665 0.4370 +6635 79696 0.6310 +6635 79706 0.9590 +6635 79753 0.9900 +6635 79760 0.9840 +6635 79833 0.9890 +6635 79902 0.4460 +6635 80011 0.8010 +6635 80218 0.4830 +6635 80331 0.4290 +6635 80742 0.4060 +6635 81892 0.4650 +6635 81929 0.4670 +6635 83443 0.9990 +6635 83938 0.8510 +6635 84060 0.8050 +6635 84172 0.4840 +6635 84316 0.7780 +6635 84324 0.4690 +6635 84619 0.4250 +6635 84661 0.4770 +6635 84811 0.9920 +6635 84844 0.9980 +6635 84950 0.9830 +6635 84967 0.9990 +6635 84991 0.6820 +6635 85437 0.8210 +6635 85476 0.7110 +6635 85479 0.4290 +6635 94104 0.4140 +6635 96764 0.9850 +6635 122830 0.5880 +6635 126259 0.7330 +6635 127845 0.4250 +6635 129401 0.4830 +6635 134353 0.9900 +6635 135295 0.4340 +6635 139804 0.6730 +6635 143244 0.6280 +6635 143884 0.9370 +6635 147409 0.5220 +6635 147495 0.4700 +6635 147650 0.7330 +6635 153527 0.9940 +6635 154007 0.9490 +6635 163859 0.8140 +6635 164045 0.4690 +6635 164781 0.5930 +6635 165545 0.4720 +6635 220074 0.8510 +6635 220988 0.8170 +6635 222183 0.5690 +6635 246721 0.6750 +6635 284325 0.7620 +6635 284695 0.4580 +6635 338657 0.6070 +6635 339983 0.5840 +6635 347744 0.7790 +6635 348793 0.5990 +6635 348995 0.5390 +6635 392517 0.8940 +6635 548644 0.6750 +6635 100101267 0.4250 +6635 100134938 0.5430 +6635 100534599 0.9240 +6635 100996928 0.8510 +6635 101669762 0.8610 +6635 107983993 0.5430 +6636 6637 0.9990 +6636 6638 0.9990 +6636 6726 0.4450 +6636 6741 0.7970 +6636 6829 0.5110 +6636 6902 0.5610 +6636 6940 0.4340 +6636 7072 0.5050 +6636 7073 0.6320 +6636 7124 0.4240 +6636 7175 0.6010 +6636 7307 0.7450 +6636 7341 0.5280 +6636 7458 0.4590 +6636 7515 0.4240 +6636 7520 0.4620 +6636 7536 0.5110 +6636 7737 0.9900 +6636 7884 0.7220 +6636 7919 0.9340 +6636 8021 0.4810 +6636 8086 0.4610 +6636 8106 0.4630 +6636 8148 0.7990 +6636 8161 0.4770 +6636 8175 0.9980 +6636 8189 0.9070 +6636 8233 0.9680 +6636 8449 0.9960 +6636 8480 0.4270 +6636 8487 0.9980 +6636 8559 0.7950 +6636 8570 0.5350 +6636 8607 0.4520 +6636 8683 0.6950 +6636 8815 0.4400 +6636 8880 0.5240 +6636 8896 0.9990 +6636 8899 0.9120 +6636 9092 0.9990 +6636 9128 0.9990 +6636 9129 0.9980 +6636 9232 0.4160 +6636 9343 0.9990 +6636 9360 0.8770 +6636 9410 0.9980 +6636 9416 0.9970 +6636 9419 0.8110 +6636 9465 0.4750 +6636 9470 0.4180 +6636 9584 0.5030 +6636 9631 0.4380 +6636 9688 0.5090 +6636 9704 0.5460 +6636 9716 0.9970 +6636 9733 0.5030 +6636 9774 0.4610 +6636 9775 0.9200 +6636 9782 0.6630 +6636 9785 0.9030 +6636 9790 0.4520 +6636 9818 0.4160 +6636 9879 0.9610 +6636 9883 0.4200 +6636 9939 0.9160 +6636 9972 0.4160 +6636 9987 0.5230 +6636 10048 0.4250 +6636 10073 0.7270 +6636 10078 0.6000 +6636 10081 0.8900 +6636 10189 0.9150 +6636 10197 0.4770 +6636 10212 0.5530 +6636 10236 0.8110 +6636 10250 0.8500 +6636 10262 0.9960 +6636 10283 0.9910 +6636 10284 0.6830 +6636 10285 0.7080 +6636 10286 0.9940 +6636 10291 0.9970 +6636 10419 0.9310 +6636 10421 0.9140 +6636 10432 0.6670 +6636 10436 0.4050 +6636 10450 0.9910 +6636 10465 0.9870 +6636 10471 0.4530 +6636 10492 0.5280 +6636 10521 0.4060 +6636 10523 0.6540 +6636 10528 0.5030 +6636 10557 0.4990 +6636 10569 0.9320 +6636 10576 0.4540 +6636 10594 0.9990 +6636 10657 0.5650 +6636 10713 0.9850 +6636 10726 0.5190 +6636 10762 0.4760 +6636 10772 0.5110 +6636 10776 0.4060 +6636 10891 0.7820 +6636 10907 0.9980 +6636 10915 0.8470 +6636 10946 0.9990 +6636 10949 0.7920 +6636 10973 0.5630 +6636 10992 0.9990 +6636 11017 0.9300 +6636 11051 0.6640 +6636 11052 0.6090 +6636 11066 0.9880 +6636 11079 0.4690 +6636 11097 0.5170 +6636 11157 0.9990 +6636 11171 0.9440 +6636 11193 0.9860 +6636 11218 0.9800 +6636 11325 0.7190 +6636 11338 0.9890 +6636 22794 0.8000 +6636 22826 0.4860 +6636 22827 0.8580 +6636 22913 0.4530 +6636 22916 0.9870 +6636 22938 0.9990 +6636 22944 0.8050 +6636 23016 0.5500 +6636 23020 0.9990 +6636 23082 0.7860 +6636 23091 0.4250 +6636 23165 0.4550 +6636 23225 0.4840 +6636 23279 0.4350 +6636 23283 0.4640 +6636 23350 0.7640 +6636 23398 0.8520 +6636 23404 0.5120 +6636 23435 0.7620 +6636 23450 0.9990 +6636 23451 0.9990 +6636 23480 0.4780 +6636 23511 0.4130 +6636 23524 0.9930 +6636 23636 0.4420 +6636 23658 0.9990 +6636 23759 0.8510 +6636 24144 0.9340 +6636 24148 0.9990 +6636 24149 0.4750 +6636 25766 0.9150 +6636 25804 0.9980 +6636 25873 0.4100 +6636 25888 0.7450 +6636 25929 0.9650 +6636 25949 0.9920 +6636 25980 0.7790 +6636 26017 0.8110 +6636 26097 0.6840 +6636 26121 0.9990 +6636 26517 0.4290 +6636 26521 0.4620 +6636 27089 0.4490 +6636 27238 0.8120 +6636 27257 0.8450 +6636 27258 0.9990 +6636 27288 0.6610 +6636 27301 0.4120 +6636 27314 0.4040 +6636 27316 0.6660 +6636 27336 0.9620 +6636 27339 0.9990 +6636 28977 0.4330 +6636 29896 0.5400 +6636 50628 0.9590 +6636 51010 0.4300 +6636 51121 0.4030 +6636 51258 0.4200 +6636 51319 0.4400 +6636 51322 0.5610 +6636 51340 0.9990 +6636 51362 0.9990 +6636 51372 0.5740 +6636 51503 0.9980 +6636 51504 0.4910 +6636 51538 0.5340 +6636 51574 0.6290 +6636 51593 0.8610 +6636 51631 0.9100 +6636 51634 0.9900 +6636 51637 0.5550 +6636 51639 0.9950 +6636 51645 0.9940 +6636 51660 0.5830 +6636 51690 0.9990 +6636 51691 0.9990 +6636 51692 0.8340 +6636 51729 0.8410 +6636 51747 0.8960 +6636 51808 0.5130 +6636 53371 0.5060 +6636 53938 0.4320 +6636 53981 0.8300 +6636 54828 0.4470 +6636 54883 0.9010 +6636 54952 0.7720 +6636 54957 0.8970 +6636 54960 0.9700 +6636 55015 0.9270 +6636 55094 0.4220 +6636 55100 0.8030 +6636 55110 0.9930 +6636 55234 0.9910 +6636 55285 0.8980 +6636 55505 0.4610 +6636 55599 0.9910 +6636 55651 0.6550 +6636 55660 0.6600 +6636 55692 0.9200 +6636 55696 0.9990 +6636 55702 0.9220 +6636 55706 0.4770 +6636 55746 0.4760 +6636 55760 0.5220 +6636 55783 0.7030 +6636 55929 0.4700 +6636 55954 0.9760 +6636 55967 0.4510 +6636 56257 0.7840 +6636 56259 0.9400 +6636 56919 0.5610 +6636 56949 0.9980 +6636 56993 0.4130 +6636 56994 0.4090 +6636 57122 0.5000 +6636 57187 0.5940 +6636 57461 0.9150 +6636 57647 0.4360 +6636 57703 0.9900 +6636 57819 0.9990 +6636 58509 0.8430 +6636 58517 0.9380 +6636 59286 0.8730 +6636 60625 0.6750 +6636 64852 0.6050 +6636 65003 0.4250 +6636 79005 0.8050 +6636 79023 0.6450 +6636 79077 0.5280 +6636 79084 0.9400 +6636 79165 0.4740 +6636 79171 0.9350 +6636 79446 0.8660 +6636 79576 0.8010 +6636 79631 0.6150 +6636 79637 0.9220 +6636 79665 0.4310 +6636 79696 0.5550 +6636 79706 0.9090 +6636 79727 0.5450 +6636 79753 0.9920 +6636 79760 0.9240 +6636 79833 0.9780 +6636 79902 0.4510 +6636 80011 0.8010 +6636 80153 0.5230 +6636 80331 0.4400 +6636 81576 0.4670 +6636 81892 0.6800 +6636 81929 0.4540 +6636 83443 0.9990 +6636 83938 0.8120 +6636 84060 0.8010 +6636 84316 0.7570 +6636 84324 0.4490 +6636 84811 0.9890 +6636 84844 0.9980 +6636 84950 0.9810 +6636 84967 0.9990 +6636 84991 0.8080 +6636 85437 0.8500 +6636 85476 0.6150 +6636 85479 0.4390 +6636 94104 0.5940 +6636 96764 0.9880 +6636 114034 0.4850 +6636 120935 0.4980 +6636 121053 0.4600 +6636 123920 0.4090 +6636 124245 0.4620 +6636 126259 0.7340 +6636 129401 0.5010 +6636 134353 0.9810 +6636 139804 0.6610 +6636 143884 0.9410 +6636 146177 0.4770 +6636 147650 0.7340 +6636 150465 0.4330 +6636 151295 0.5040 +6636 151903 0.4620 +6636 153527 0.9940 +6636 154007 0.9630 +6636 163859 0.8140 +6636 164045 0.5570 +6636 164781 0.6480 +6636 165545 0.5230 +6636 220074 0.7890 +6636 220988 0.7900 +6636 222183 0.5940 +6636 246721 0.4620 +6636 284325 0.7880 +6636 284695 0.5910 +6636 337867 0.4170 +6636 347411 0.5760 +6636 347744 0.7700 +6636 348793 0.6650 +6636 348995 0.5700 +6636 392517 0.8540 +6636 494115 0.4610 +6636 548644 0.4610 +6636 100101267 0.4270 +6636 100134938 0.4210 +6636 100526693 0.4060 +6636 100534599 0.8970 +6636 100996928 0.8570 +6636 101669762 0.8560 +6636 107983993 0.4210 +6637 6638 0.9990 +6637 6727 0.4390 +6637 6728 0.4170 +6637 6732 0.4410 +6637 6733 0.4060 +6637 6741 0.7650 +6637 6742 0.4420 +6637 6867 0.5200 +6637 6902 0.4980 +6637 7072 0.4780 +6637 7073 0.6640 +6637 7175 0.5720 +6637 7307 0.7270 +6637 7341 0.6390 +6637 7411 0.4070 +6637 7458 0.6030 +6637 7536 0.6270 +6637 7737 0.9890 +6637 7884 0.5830 +6637 7919 0.9170 +6637 7936 0.4660 +6637 8021 0.4430 +6637 8086 0.4760 +6637 8106 0.4040 +6637 8148 0.6770 +6637 8175 0.9990 +6637 8189 0.9050 +6637 8233 0.9510 +6637 8260 0.4340 +6637 8449 0.9890 +6637 8480 0.4160 +6637 8487 0.9980 +6637 8559 0.7260 +6637 8570 0.4200 +6637 8607 0.4260 +6637 8683 0.6470 +6637 8815 0.4060 +6637 8896 0.9990 +6637 8899 0.8340 +6637 9092 0.9990 +6637 9128 0.9980 +6637 9129 0.9990 +6637 9141 0.4560 +6637 9343 0.9990 +6637 9360 0.8640 +6637 9410 0.9910 +6637 9416 0.9970 +6637 9419 0.8090 +6637 9553 0.4760 +6637 9631 0.4280 +6637 9688 0.4950 +6637 9704 0.5410 +6637 9716 0.9970 +6637 9775 0.8840 +6637 9782 0.7250 +6637 9785 0.9010 +6637 9790 0.4650 +6637 9818 0.4240 +6637 9879 0.9560 +6637 9939 0.8810 +6637 9972 0.4350 +6637 9978 0.4140 +6637 9987 0.4390 +6637 10073 0.6690 +6637 10078 0.5260 +6637 10081 0.8830 +6637 10189 0.8540 +6637 10197 0.4910 +6637 10236 0.7150 +6637 10250 0.8690 +6637 10262 0.9950 +6637 10283 0.9900 +6637 10284 0.5790 +6637 10285 0.6010 +6637 10286 0.9920 +6637 10291 0.9990 +6637 10419 0.9190 +6637 10421 0.8030 +6637 10432 0.6720 +6637 10450 0.9890 +6637 10465 0.9690 +6637 10471 0.4810 +6637 10492 0.4350 +6637 10523 0.6540 +6637 10528 0.5570 +6637 10557 0.5150 +6637 10569 0.9020 +6637 10574 0.4210 +6637 10594 0.9990 +6637 10657 0.4930 +6637 10713 0.9870 +6637 10762 0.4910 +6637 10772 0.5530 +6637 10891 0.6720 +6637 10907 0.9980 +6637 10915 0.9680 +6637 10946 0.9990 +6637 10949 0.7460 +6637 10973 0.5990 +6637 10992 0.9990 +6637 11017 0.9520 +6637 11051 0.5690 +6637 11052 0.5130 +6637 11066 0.9840 +6637 11097 0.4250 +6637 11157 0.9990 +6637 11171 0.9160 +6637 11193 0.9790 +6637 11218 0.9670 +6637 11325 0.5660 +6637 11338 0.9930 +6637 22794 0.8040 +6637 22827 0.6500 +6637 22913 0.5630 +6637 22916 0.9890 +6637 22938 0.9980 +6637 22944 0.8040 +6637 23016 0.5630 +6637 23020 0.9990 +6637 23029 0.5170 +6637 23082 0.6740 +6637 23091 0.4100 +6637 23165 0.4280 +6637 23225 0.4050 +6637 23279 0.4380 +6637 23283 0.4820 +6637 23350 0.7510 +6637 23398 0.8200 +6637 23404 0.4180 +6637 23435 0.7820 +6637 23450 0.9990 +6637 23451 0.9990 +6637 23480 0.4630 +6637 23511 0.4160 +6637 23524 0.9910 +6637 23636 0.4350 +6637 23658 0.9980 +6637 23759 0.8570 +6637 24144 0.9130 +6637 24148 0.9990 +6637 24149 0.4790 +6637 25766 0.9130 +6637 25804 0.9980 +6637 25888 0.5120 +6637 25929 0.9550 +6637 25949 0.9930 +6637 25980 0.6500 +6637 26017 0.8020 +6637 26097 0.6300 +6637 26121 0.9990 +6637 26517 0.4720 +6637 26519 0.5150 +6637 26520 0.4250 +6637 26521 0.4140 +6637 27089 0.5260 +6637 27238 0.8080 +6637 27257 0.7060 +6637 27258 0.9990 +6637 27288 0.6780 +6637 27316 0.7290 +6637 27336 0.9370 +6637 27339 0.9990 +6637 28998 0.4440 +6637 29796 0.4300 +6637 29896 0.4530 +6637 50628 0.9200 +6637 51023 0.4280 +6637 51082 0.5290 +6637 51188 0.4060 +6637 51322 0.5510 +6637 51340 0.9990 +6637 51362 0.9990 +6637 51372 0.6460 +6637 51503 0.9980 +6637 51538 0.4530 +6637 51574 0.5250 +6637 51593 0.5410 +6637 51631 0.9060 +6637 51634 0.9890 +6637 51637 0.4980 +6637 51639 0.9970 +6637 51645 0.9940 +6637 51690 0.9960 +6637 51691 0.9980 +6637 51692 0.8610 +6637 51729 0.8300 +6637 51747 0.8780 +6637 51808 0.5110 +6637 53371 0.5280 +6637 53981 0.8060 +6637 54543 0.6000 +6637 54883 0.9210 +6637 54952 0.7750 +6637 54957 0.9020 +6637 54960 0.9390 +6637 55015 0.8160 +6637 55094 0.4740 +6637 55100 0.8030 +6637 55110 0.9920 +6637 55234 0.9870 +6637 55285 0.9040 +6637 55505 0.7830 +6637 55599 0.9880 +6637 55660 0.5980 +6637 55692 0.9040 +6637 55696 0.9980 +6637 55702 0.8980 +6637 55706 0.4430 +6637 55746 0.5110 +6637 55760 0.4240 +6637 55783 0.5660 +6637 55954 0.9790 +6637 56257 0.7000 +6637 56259 0.9290 +6637 56919 0.5490 +6637 56942 0.5340 +6637 56943 0.4150 +6637 56949 0.9980 +6637 57122 0.4910 +6637 57187 0.5980 +6637 57461 0.8980 +6637 57647 0.4410 +6637 57703 0.9900 +6637 57819 0.9980 +6637 58509 0.8020 +6637 58517 0.9230 +6637 59286 0.9230 +6637 60625 0.6790 +6637 79005 0.8080 +6637 79023 0.5740 +6637 79084 0.9160 +6637 79171 0.9180 +6637 79446 0.8510 +6637 79576 0.8030 +6637 79631 0.6430 +6637 79637 0.9220 +6637 79665 0.4370 +6637 79696 0.5440 +6637 79706 0.9510 +6637 79727 0.5270 +6637 79753 0.9890 +6637 79760 0.9360 +6637 79833 0.9660 +6637 79902 0.4650 +6637 80011 0.8010 +6637 80331 0.4440 +6637 81892 0.7820 +6637 81929 0.4610 +6637 83443 0.9990 +6637 83938 0.8180 +6637 84060 0.8000 +6637 84316 0.7370 +6637 84324 0.5330 +6637 84619 0.4150 +6637 84811 0.9900 +6637 84844 0.9990 +6637 84950 0.9870 +6637 84967 0.9990 +6637 84991 0.7520 +6637 85437 0.8260 +6637 85476 0.6450 +6637 85479 0.4430 +6637 96764 0.9800 +6637 115265 0.7830 +6637 126259 0.7220 +6637 129401 0.4920 +6637 134353 0.9730 +6637 139804 0.6780 +6637 140823 0.4340 +6637 143884 0.9300 +6637 144983 0.4600 +6637 147650 0.7220 +6637 151903 0.5060 +6637 153339 0.4270 +6637 153527 0.9910 +6637 154007 0.9510 +6637 163859 0.8140 +6637 164045 0.5940 +6637 164781 0.5720 +6637 165545 0.4240 +6637 220074 0.8180 +6637 220988 0.7080 +6637 222183 0.5770 +6637 246721 0.6470 +6637 256536 0.8400 +6637 284325 0.7560 +6637 284695 0.4300 +6637 338657 0.4660 +6637 347744 0.7750 +6637 348793 0.5900 +6637 348995 0.5100 +6637 392517 0.8840 +6637 548644 0.6500 +6637 100101267 0.4130 +6637 100128731 0.4230 +6637 100134938 0.5480 +6637 100526693 0.4150 +6637 100534599 0.8890 +6637 100996928 0.8470 +6637 101669762 0.8420 +6637 107983993 0.5480 +6638 6738 0.6160 +6638 6741 0.5270 +6638 6792 0.5080 +6638 7262 0.6780 +6638 7337 0.9210 +6638 7536 0.5770 +6638 7681 0.9390 +6638 7737 0.5280 +6638 7919 0.6130 +6638 8161 0.6450 +6638 8175 0.9880 +6638 8233 0.5290 +6638 8361 0.7010 +6638 8369 0.4140 +6638 8449 0.5090 +6638 8487 0.6080 +6638 8559 0.7680 +6638 8788 0.6760 +6638 8896 0.9800 +6638 8910 0.6300 +6638 8926 0.9610 +6638 9077 0.4130 +6638 9092 0.9860 +6638 9128 0.9870 +6638 9129 0.9800 +6638 9343 0.9930 +6638 9410 0.9020 +6638 9416 0.9300 +6638 9704 0.5250 +6638 9716 0.6140 +6638 9785 0.5530 +6638 9879 0.9370 +6638 10073 0.6680 +6638 10078 0.8240 +6638 10081 0.6240 +6638 10179 0.5000 +6638 10262 0.9910 +6638 10283 0.8330 +6638 10285 0.6120 +6638 10286 0.6260 +6638 10291 0.9900 +6638 10419 0.4680 +6638 10421 0.9410 +6638 10465 0.6340 +6638 10523 0.4990 +6638 10569 0.5120 +6638 10594 0.9940 +6638 10664 0.5790 +6638 10713 0.5450 +6638 10782 0.4520 +6638 10891 0.4820 +6638 10907 0.9640 +6638 10915 0.8400 +6638 10946 0.9890 +6638 10973 0.4190 +6638 10992 0.9880 +6638 11017 0.6900 +6638 11066 0.9550 +6638 11157 0.9620 +6638 11193 0.4860 +6638 11273 0.8450 +6638 11325 0.5510 +6638 11338 0.6730 +6638 22827 0.5810 +6638 22916 0.8180 +6638 22938 0.9490 +6638 23020 0.9930 +6638 23082 0.4690 +6638 23089 0.7110 +6638 23191 0.5010 +6638 23347 0.4130 +6638 23350 0.5270 +6638 23450 0.9860 +6638 23451 0.9780 +6638 23524 0.8040 +6638 23619 0.5090 +6638 23658 0.9700 +6638 23742 0.9210 +6638 24144 0.9490 +6638 24148 0.9920 +6638 25766 0.9060 +6638 25804 0.9960 +6638 25929 0.4110 +6638 25942 0.4740 +6638 25949 0.9090 +6638 25980 0.8260 +6638 26001 0.4970 +6638 26121 0.9810 +6638 26240 0.4780 +6638 26958 0.4400 +6638 27258 0.9500 +6638 27336 0.7940 +6638 27339 0.9660 +6638 29947 0.6920 +6638 51340 0.9740 +6638 51362 0.9770 +6638 51503 0.9450 +6638 51574 0.5800 +6638 51631 0.9040 +6638 51634 0.7880 +6638 51639 0.5740 +6638 51645 0.5910 +6638 51690 0.9570 +6638 51691 0.9850 +6638 51742 0.6050 +6638 51747 0.7590 +6638 54551 0.9250 +6638 54883 0.7870 +6638 54952 0.6660 +6638 54957 0.9080 +6638 54960 0.4600 +6638 55015 0.9520 +6638 55089 0.4530 +6638 55094 0.5110 +6638 55285 0.5050 +6638 55599 0.7770 +6638 55651 0.4950 +6638 55660 0.5550 +6638 55692 0.9120 +6638 55696 0.9500 +6638 55702 0.8070 +6638 55783 0.6270 +6638 55837 0.5970 +6638 55954 0.7610 +6638 56257 0.6610 +6638 56919 0.5250 +6638 56949 0.9610 +6638 57194 0.8670 +6638 57461 0.7020 +6638 57663 0.4030 +6638 57683 0.5780 +6638 57703 0.8000 +6638 57713 0.4260 +6638 57819 0.9860 +6638 58517 0.9560 +6638 60560 0.4420 +6638 60625 0.6860 +6638 64852 0.4850 +6638 79084 0.4700 +6638 79171 0.6060 +6638 79446 0.5310 +6638 79631 0.4430 +6638 79706 0.6170 +6638 79753 0.7650 +6638 80331 0.4470 +6638 81614 0.5780 +6638 83443 0.9830 +6638 83694 0.4750 +6638 83938 0.4850 +6638 84215 0.5040 +6638 84811 0.9250 +6638 84844 0.8340 +6638 84967 0.6950 +6638 84991 0.5900 +6638 85476 0.4430 +6638 85479 0.4470 +6638 91833 0.4330 +6638 96764 0.7210 +6638 114791 0.6110 +6638 123606 0.6010 +6638 126295 0.4390 +6638 134353 0.5810 +6638 143884 0.6710 +6638 147807 0.5330 +6638 153527 0.9540 +6638 154007 0.7810 +6638 164045 0.4190 +6638 164781 0.4390 +6638 199713 0.5900 +6638 220074 0.4850 +6638 222183 0.8040 +6638 256536 0.8400 +6638 266812 0.6390 +6638 284325 0.8970 +6638 286826 0.4310 +6638 342977 0.4400 +6638 346171 0.8280 +6638 347744 0.6660 +6638 348793 0.4390 +6638 353500 0.4400 +6638 359787 0.4100 +6638 374655 0.5010 +6638 388015 0.4270 +6638 392517 0.8160 +6638 100101490 0.4720 +6638 100534599 0.6590 +6638 100996928 0.8660 +6640 6641 0.7440 +6640 6645 0.9050 +6640 7039 0.4910 +6640 7220 0.8210 +6640 7402 0.9610 +6640 7414 0.5180 +6640 7531 0.4160 +6640 7871 0.4530 +6640 8038 0.4910 +6640 8082 0.9600 +6640 8557 0.4610 +6640 8727 0.4300 +6640 8910 0.9030 +6640 9139 0.6360 +6640 9368 0.4210 +6640 9722 0.7230 +6640 9992 0.8060 +6640 10008 0.5400 +6640 10142 0.8190 +6640 10345 0.5770 +6640 23171 0.6260 +6640 23630 0.4480 +6640 29098 0.4810 +6640 29119 0.5170 +6640 51393 0.4460 +6640 51438 0.4670 +6640 51654 0.5340 +6640 51806 0.6810 +6640 54212 0.9380 +6640 54221 0.9650 +6640 55333 0.4750 +6640 55800 0.5800 +6640 55914 0.5730 +6640 57692 0.7030 +6640 59339 0.6220 +6640 79188 0.4230 +6640 81031 0.4210 +6640 91860 0.6820 +6640 117289 0.4750 +6640 125972 0.4190 +6640 137868 0.6560 +6640 143162 0.4340 +6640 163688 0.6820 +6641 6645 0.9230 +6641 7402 0.9790 +6641 8082 0.8770 +6641 8727 0.5280 +6641 8910 0.7100 +6641 9531 0.4010 +6641 9897 0.4020 +6641 10498 0.4170 +6641 11080 0.4240 +6641 54212 0.8740 +6641 54221 0.9490 +6641 59339 0.4370 +6641 117289 0.4490 +6641 137868 0.6350 +6641 260425 0.4140 +6641 284119 0.5390 +6641 643136 0.5740 +6642 6643 0.9990 +6642 6653 0.5260 +6642 6945 0.4660 +6642 7037 0.5000 +6642 7184 0.4050 +6642 7454 0.4650 +6642 7879 0.5710 +6642 8027 0.5120 +6642 8100 0.4160 +6642 8218 0.4660 +6642 8411 0.7290 +6642 8417 0.5990 +6642 8675 0.4330 +6642 8723 0.9790 +6642 8724 0.8560 +6642 8766 0.5770 +6642 9026 0.4170 +6642 9146 0.8280 +6642 9217 0.4900 +6642 9218 0.5610 +6642 9559 0.9990 +6642 9685 0.4600 +6642 9779 0.9700 +6642 9784 0.9290 +6642 9897 0.7730 +6642 10226 0.6600 +6642 10311 0.4450 +6642 10490 0.4870 +6642 10533 0.4680 +6642 10618 0.6240 +6642 10890 0.4480 +6642 10897 0.6070 +6642 10938 0.8170 +6642 11129 0.5660 +6642 11252 0.4080 +6642 11311 0.4450 +6642 23161 0.5630 +6642 23207 0.4220 +6642 23258 0.7480 +6642 23265 0.5770 +6642 23307 0.4010 +6642 23317 0.9420 +6642 23325 0.5990 +6642 23339 0.5280 +6642 23355 0.4030 +6642 23621 0.4740 +6642 23753 0.6310 +6642 26052 0.5010 +6642 27131 0.9990 +6642 27430 0.6590 +6642 28988 0.4500 +6642 29766 0.4360 +6642 29886 0.8190 +6642 29907 0.8810 +6642 29934 0.8240 +6642 30845 0.4010 +6642 51019 0.6290 +6642 51429 0.6640 +6642 51454 0.5030 +6642 51479 0.4980 +6642 51622 0.4710 +6642 51699 0.9990 +6642 51726 0.6280 +6642 54808 0.4450 +6642 55138 0.4080 +6642 55614 0.4140 +6642 55737 0.9990 +6642 55764 0.8470 +6642 55773 0.4180 +6642 55909 0.5190 +6642 57020 0.4380 +6642 57142 0.6980 +6642 57182 0.4770 +6642 57231 0.5520 +6642 58513 0.4550 +6642 58533 0.9990 +6642 64089 0.5560 +6642 64145 0.4240 +6642 64786 0.4180 +6642 79065 0.4420 +6642 79139 0.4250 +6642 79971 0.4150 +6642 81609 0.9910 +6642 83548 0.5380 +6642 83891 0.5140 +6642 84079 0.4230 +6642 90203 0.4040 +6642 92840 0.4060 +6642 112936 0.9960 +6642 114815 0.5030 +6642 127795 0.4200 +6642 158471 0.4220 +6642 165918 0.5490 +6642 169166 0.4530 +6642 200576 0.5310 +6642 221960 0.4470 +6642 253725 0.4750 +6642 254122 0.9940 +6642 347252 0.5220 +6642 387680 0.4360 +6642 399979 0.4730 +6642 100287171 0.6610 +6643 6653 0.4150 +6643 6844 0.5750 +6643 6845 0.6360 +6643 7013 0.4380 +6643 7037 0.6420 +6643 7163 0.5100 +6643 7164 0.5060 +6643 7879 0.4910 +6643 8178 0.4950 +6643 8301 0.5100 +6643 8411 0.6190 +6643 8417 0.4310 +6643 8526 0.4350 +6643 8546 0.6000 +6643 8658 0.4140 +6643 8673 0.6350 +6643 8723 0.7880 +6643 8724 0.8540 +6643 8766 0.4690 +6643 8775 0.5220 +6643 8905 0.5860 +6643 8907 0.6390 +6643 9026 0.5930 +6643 9146 0.5810 +6643 9217 0.8500 +6643 9218 0.8270 +6643 9559 0.9990 +6643 9685 0.6790 +6643 9698 0.5690 +6643 9779 0.9610 +6643 9784 0.8160 +6643 9829 0.5730 +6643 9892 0.4290 +6643 9897 0.6590 +6643 10053 0.5590 +6643 10618 0.7900 +6643 10717 0.5260 +6643 23048 0.8810 +6643 23161 0.5800 +6643 23258 0.5480 +6643 23317 0.5800 +6643 23325 0.5600 +6643 23431 0.5730 +6643 23557 0.5430 +6643 23753 0.6010 +6643 25977 0.5030 +6643 26258 0.5090 +6643 27131 0.9990 +6643 27430 0.7450 +6643 28966 0.6900 +6643 29886 0.4420 +6643 29907 0.7840 +6643 29934 0.8210 +6643 51019 0.6250 +6643 51429 0.6710 +6643 51699 0.9990 +6643 51726 0.5470 +6643 54469 0.4820 +6643 54885 0.5030 +6643 55330 0.4990 +6643 55667 0.4330 +6643 55737 0.9990 +6643 55764 0.7390 +6643 55773 0.4760 +6643 55795 0.4440 +6643 57182 0.4690 +6643 57231 0.5260 +6643 57599 0.4020 +6643 57626 0.4640 +6643 58533 0.9990 +6643 64089 0.4840 +6643 64786 0.4730 +6643 79065 0.4020 +6643 79139 0.4470 +6643 79865 0.4400 +6643 81567 0.5270 +6643 81609 0.9720 +6643 83891 0.5230 +6643 84062 0.5070 +6643 85456 0.5480 +6643 90203 0.6060 +6643 92241 0.4040 +6643 112574 0.5880 +6643 112936 0.9940 +6643 113802 0.4260 +6643 130340 0.5300 +6643 130813 0.4040 +6643 158471 0.5750 +6643 160298 0.4590 +6643 169166 0.4490 +6643 254122 0.9950 +6643 286451 0.5470 +6643 340277 0.6360 +6643 347252 0.5910 +6643 388552 0.4990 +6643 100287171 0.5380 +6645 7074 0.7340 +6645 7402 0.9900 +6645 7871 0.4340 +6645 8082 0.7620 +6645 8573 0.4710 +6645 8727 0.7270 +6645 8825 0.5550 +6645 8910 0.7620 +6645 22983 0.7600 +6645 23031 0.6430 +6645 23139 0.8520 +6645 51759 0.4090 +6645 54212 0.8440 +6645 54221 0.9270 +6645 55327 0.5380 +6645 57474 0.4110 +6645 59339 0.6150 +6645 84654 0.4540 +6645 84875 0.6840 +6645 84916 0.8270 +6645 117289 0.4370 +6645 137868 0.6540 +6645 286343 0.4380 +6645 375449 0.5590 +6645 375790 0.4600 +6646 6713 0.5780 +6646 6720 0.4610 +6646 6721 0.5520 +6646 6820 0.8060 +6646 7941 0.4320 +6646 8435 0.9090 +6646 9023 0.8880 +6646 9131 0.4490 +6646 9213 0.4160 +6646 9218 0.4270 +6646 9619 0.5900 +6646 9857 0.4370 +6646 10105 0.4180 +6646 10162 0.4730 +6646 10858 0.8950 +6646 22926 0.4330 +6646 22937 0.5270 +6646 23032 0.4010 +6646 23065 0.4350 +6646 23175 0.4210 +6646 23417 0.4990 +6646 23491 0.4200 +6646 23621 0.4730 +6646 23659 0.4460 +6646 25797 0.4320 +6646 26092 0.4500 +6646 26994 0.4910 +6646 29914 0.7100 +6646 51016 0.4530 +6646 54675 0.4390 +6646 55711 0.4810 +6646 55733 0.4040 +6646 57552 0.6950 +6646 58157 0.4260 +6646 64222 0.4990 +6646 64840 0.4210 +6646 79071 0.4190 +6646 80168 0.4400 +6646 80332 0.4870 +6646 80339 0.4200 +6646 84570 0.4400 +6646 84649 0.5790 +6646 90637 0.4260 +6646 130617 0.4280 +6646 148109 0.4590 +6646 158833 0.5050 +6646 158835 0.4770 +6646 346606 0.4420 +6647 6648 0.9940 +6647 6657 0.5480 +6647 6720 0.5820 +6647 6748 0.6370 +6647 6749 0.4010 +6647 6775 0.7500 +6647 6813 0.5790 +6647 6855 0.4070 +6647 6863 0.4590 +6647 6885 0.4470 +6647 6888 0.5280 +6647 6897 0.4690 +6647 7001 0.8650 +6647 7019 0.4480 +6647 7046 0.4790 +6647 7072 0.4150 +6647 7074 0.4250 +6647 7086 0.4920 +6647 7094 0.4280 +6647 7097 0.5670 +6647 7099 0.6310 +6647 7124 0.5740 +6647 7157 0.5140 +6647 7167 0.6720 +6647 7184 0.5620 +6647 7273 0.5160 +6647 7277 0.6780 +6647 7295 0.8760 +6647 7296 0.6440 +6647 7316 0.4600 +6647 7337 0.4500 +6647 7341 0.4500 +6647 7345 0.5160 +6647 7351 0.4040 +6647 7386 0.7370 +6647 7414 0.4780 +6647 7415 0.7720 +6647 7416 0.9960 +6647 7494 0.5280 +6647 7498 0.6120 +6647 7531 0.5570 +6647 7802 0.6500 +6647 7837 0.6140 +6647 7857 0.4100 +6647 7919 0.4250 +6647 8029 0.4530 +6647 8407 0.4960 +6647 8632 0.6500 +6647 8678 0.6550 +6647 8701 0.6680 +6647 8772 0.5770 +6647 8878 0.9100 +6647 8988 0.6100 +6647 9001 0.6740 +6647 9217 0.8540 +6647 9218 0.4650 +6647 9352 0.5120 +6647 9377 0.4190 +6647 9429 0.5020 +6647 9446 0.5310 +6647 9474 0.4370 +6647 9531 0.5800 +6647 9563 0.4510 +6647 9588 0.6710 +6647 9601 0.4280 +6647 9782 0.6030 +6647 9804 0.5300 +6647 9817 0.6300 +6647 9868 0.4890 +6647 9896 0.7390 +6647 9927 0.5100 +6647 9948 0.4010 +6647 9973 0.9990 +6647 9997 0.4770 +6647 10013 0.5630 +6647 10059 0.6970 +6647 10063 0.7810 +6647 10105 0.4990 +6647 10120 0.6640 +6647 10121 0.6620 +6647 10126 0.6520 +6647 10131 0.4070 +6647 10133 0.9370 +6647 10213 0.7680 +6647 10273 0.6810 +6647 10280 0.5660 +6647 10327 0.4750 +6647 10452 0.9230 +6647 10476 0.4460 +6647 10533 0.4480 +6647 10540 0.7450 +6647 10549 0.6510 +6647 10550 0.5480 +6647 10587 0.4700 +6647 10671 0.6620 +6647 10694 0.4690 +6647 10891 0.9580 +6647 10935 0.6670 +6647 10963 0.4130 +6647 11047 0.8190 +6647 11258 0.6600 +6647 11315 0.9970 +6647 22848 0.4060 +6647 22920 0.6590 +6647 22926 0.4230 +6647 22927 0.4050 +6647 23025 0.4790 +6647 23052 0.4250 +6647 23064 0.7770 +6647 23072 0.8130 +6647 23395 0.4340 +6647 23400 0.4120 +6647 23410 0.4390 +6647 23411 0.6380 +6647 23435 0.9890 +6647 23621 0.7060 +6647 23636 0.4640 +6647 23645 0.6080 +6647 25764 0.4290 +6647 25824 0.9120 +6647 25828 0.6760 +6647 25897 0.8380 +6647 25978 0.6400 +6647 25981 0.6500 +6647 26046 0.5360 +6647 26353 0.4680 +6647 27019 0.6500 +6647 27035 0.7340 +6647 27044 0.6040 +6647 27338 0.4990 +6647 29110 0.5940 +6647 29978 0.8510 +6647 29979 0.4530 +6647 30813 0.4800 +6647 50506 0.4100 +6647 50507 0.6020 +6647 51022 0.5470 +6647 51024 0.4890 +6647 51031 0.4470 +6647 51164 0.6610 +6647 53905 0.4600 +6647 54205 0.6750 +6647 54209 0.4180 +6647 54708 0.4990 +6647 55167 0.4730 +6647 55177 0.4090 +6647 55277 0.4760 +6647 55567 0.7960 +6647 55669 0.4780 +6647 55860 0.6900 +6647 56171 0.6500 +6647 57679 0.8910 +6647 64283 0.6560 +6647 64398 0.4130 +6647 64446 0.6500 +6647 65018 0.6510 +6647 79139 0.9640 +6647 80208 0.5840 +6647 80222 0.4470 +6647 81341 0.5130 +6647 81559 0.4080 +6647 81570 0.4140 +6647 81631 0.4420 +6647 83544 0.6620 +6647 84076 0.4250 +6647 84134 0.9000 +6647 84516 0.6560 +6647 91300 0.5130 +6647 92552 0.5010 +6647 93974 0.4540 +6647 120892 0.5000 +6647 123283 0.4340 +6647 124912 0.4420 +6647 127602 0.6500 +6647 131474 0.5820 +6647 137902 0.6080 +6647 140809 0.4430 +6647 143471 0.6790 +6647 146713 0.4690 +6647 146754 0.6660 +6647 150684 0.6730 +6647 151056 0.5600 +6647 170679 0.4290 +6647 196385 0.6500 +6647 201625 0.6500 +6647 203228 0.8970 +6647 257202 0.8830 +6647 286451 0.4520 +6647 373156 0.5030 +6647 400916 0.6170 +6647 493869 0.8900 +6647 653361 0.4320 +6647 728378 0.4570 +6648 6649 0.8390 +6648 6652 0.5190 +6648 6687 0.4180 +6648 6720 0.5980 +6648 6742 0.5030 +6648 6774 0.5180 +6648 6775 0.7690 +6648 6876 0.4610 +6648 7001 0.7070 +6648 7018 0.4230 +6648 7019 0.8050 +6648 7036 0.4490 +6648 7040 0.4380 +6648 7086 0.4800 +6648 7099 0.4740 +6648 7124 0.6110 +6648 7128 0.4800 +6648 7130 0.4120 +6648 7157 0.6440 +6648 7167 0.6470 +6648 7263 0.5890 +6648 7264 0.4260 +6648 7284 0.4590 +6648 7295 0.7280 +6648 7296 0.6220 +6648 7350 0.4060 +6648 7351 0.6170 +6648 7352 0.4880 +6648 7372 0.4610 +6648 7381 0.4460 +6648 7384 0.5750 +6648 7385 0.5730 +6648 7386 0.5630 +6648 7416 0.7880 +6648 7417 0.6200 +6648 7464 0.5000 +6648 7498 0.5190 +6648 7517 0.4870 +6648 7818 0.8610 +6648 7837 0.5980 +6648 8192 0.5730 +6648 8565 0.4700 +6648 8624 0.6530 +6648 8659 0.5060 +6648 8678 0.4670 +6648 8710 0.4300 +6648 8802 0.8440 +6648 8803 0.4310 +6648 8837 0.6850 +6648 9085 0.4050 +6648 9093 0.4400 +6648 9131 0.4310 +6648 9349 0.8510 +6648 9360 0.5010 +6648 9361 0.4730 +6648 9377 0.5590 +6648 9423 0.4120 +6648 9425 0.4050 +6648 9465 0.6430 +6648 9553 0.8960 +6648 9563 0.5900 +6648 9588 0.7030 +6648 9669 0.5920 +6648 9801 0.8150 +6648 9804 0.5400 +6648 9817 0.6020 +6648 9858 0.6730 +6648 9927 0.6190 +6648 9973 0.4630 +6648 10018 0.4170 +6648 10049 0.4420 +6648 10059 0.7540 +6648 10105 0.7910 +6648 10135 0.6130 +6648 10157 0.7940 +6648 10449 0.4790 +6648 10455 0.4450 +6648 10465 0.4960 +6648 10473 0.4950 +6648 10539 0.5240 +6648 10549 0.6710 +6648 10587 0.6160 +6648 10628 0.4200 +6648 10632 0.4810 +6648 10730 0.4670 +6648 10845 0.4730 +6648 10891 0.9730 +6648 10935 0.8040 +6648 10939 0.6460 +6648 10956 0.4130 +6648 10964 0.5330 +6648 11076 0.4350 +6648 11080 0.4270 +6648 11091 0.9870 +6648 11152 0.4180 +6648 11182 0.4020 +6648 11222 0.8730 +6648 11315 0.9230 +6648 22926 0.4730 +6648 22933 0.5990 +6648 23193 0.4290 +6648 23304 0.6230 +6648 23405 0.6810 +6648 23408 0.5700 +6648 23409 0.5630 +6648 23410 0.8950 +6648 23411 0.7730 +6648 23423 0.4710 +6648 23479 0.6020 +6648 23516 0.4240 +6648 23521 0.7080 +6648 23530 0.5190 +6648 23640 0.5080 +6648 23732 0.4510 +6648 25822 0.4030 +6648 25824 0.8180 +6648 25828 0.6230 +6648 26275 0.8530 +6648 26589 0.8690 +6648 27035 0.5180 +6648 27068 0.4380 +6648 27247 0.4350 +6648 27349 0.5330 +6648 27429 0.5330 +6648 27430 0.4480 +6648 28998 0.8750 +6648 29088 0.4310 +6648 29093 0.7820 +6648 29102 0.6700 +6648 50507 0.6370 +6648 50814 0.4420 +6648 51008 0.6430 +6648 51014 0.4770 +6648 51021 0.8320 +6648 51022 0.5700 +6648 51023 0.6440 +6648 51024 0.5510 +6648 51069 0.6710 +6648 51073 0.7950 +6648 51081 0.5450 +6648 51106 0.4550 +6648 51116 0.6730 +6648 51121 0.4930 +6648 51149 0.6150 +6648 51167 0.4500 +6648 51263 0.5580 +6648 51264 0.8060 +6648 51547 0.5670 +6648 51548 0.6630 +6648 53905 0.4520 +6648 54059 0.8820 +6648 54205 0.7290 +6648 54431 0.5270 +6648 54948 0.8150 +6648 55167 0.4530 +6648 55168 0.6440 +6648 55173 0.8340 +6648 55272 0.5620 +6648 55316 0.5560 +6648 55669 0.5620 +6648 55862 0.4790 +6648 55902 0.5500 +6648 57016 0.4140 +6648 57103 0.4390 +6648 57128 0.4050 +6648 57129 0.8730 +6648 58472 0.4210 +6648 60488 0.8350 +6648 63875 0.8850 +6648 63931 0.8100 +6648 64116 0.4260 +6648 64374 0.4850 +6648 64432 0.5070 +6648 64745 0.4230 +6648 64960 0.8400 +6648 64963 0.8240 +6648 64965 0.8380 +6648 64968 0.8130 +6648 64969 0.8620 +6648 64975 0.7760 +6648 64976 0.7780 +6648 64978 0.5380 +6648 64979 0.7700 +6648 64981 0.7770 +6648 64983 0.7990 +6648 65003 0.8430 +6648 65018 0.6100 +6648 65080 0.8300 +6648 65121 0.4170 +6648 65122 0.4170 +6648 66002 0.5690 +6648 79590 0.7710 +6648 80146 0.4380 +6648 80221 0.7910 +6648 80270 0.4250 +6648 80273 0.4410 +6648 81570 0.4710 +6648 81631 0.4790 +6648 84532 0.4020 +6648 84545 0.8470 +6648 84701 0.4450 +6648 84883 0.4270 +6648 90313 0.4060 +6648 90624 0.5260 +6648 93517 0.4250 +6648 94033 0.5430 +6648 96459 0.4140 +6648 113444 0.5220 +6648 114548 0.4260 +6648 114781 0.4990 +6648 114908 0.4080 +6648 116541 0.4070 +6648 124359 0.4050 +6648 124995 0.5730 +6648 126402 0.5180 +6648 130271 0.4100 +6648 131474 0.4950 +6648 133522 0.4180 +6648 134266 0.4100 +6648 137902 0.5980 +6648 140801 0.4850 +6648 140809 0.4610 +6648 148022 0.4890 +6648 149478 0.4810 +6648 150209 0.4160 +6648 150353 0.4370 +6648 157310 0.5450 +6648 165721 0.4260 +6648 171425 0.4090 +6648 219927 0.7590 +6648 253175 0.4050 +6648 257202 0.9020 +6648 343068 0.4170 +6648 343070 0.4170 +6648 345051 0.4510 +6648 347487 0.5080 +6648 353376 0.4700 +6648 373156 0.4020 +6648 374407 0.4030 +6648 376497 0.4240 +6648 390999 0.4170 +6648 391002 0.4170 +6648 400735 0.4170 +6648 400736 0.4170 +6648 404636 0.5050 +6648 440560 0.4170 +6648 440561 0.4170 +6648 441873 0.4170 +6648 493869 0.9070 +6648 645359 0.4170 +6648 653361 0.4600 +6648 653619 0.4170 +6648 729528 0.4170 +6648 100130890 0.7460 +6648 100131187 0.7420 +6648 100132074 0.4210 +6648 100287482 0.5080 +6648 100302736 0.4700 +6648 100526842 0.4870 +6648 101929983 0.4170 +6649 7001 0.4850 +6649 7295 0.6370 +6649 7296 0.5050 +6649 7386 0.6580 +6649 7407 0.4530 +6649 7498 0.5470 +6649 7837 0.4170 +6649 8361 0.4160 +6649 9588 0.5470 +6649 9696 0.4120 +6649 9759 0.4080 +6649 9817 0.4090 +6649 9973 0.9170 +6649 10063 0.4600 +6649 10144 0.5970 +6649 10549 0.5960 +6649 10587 0.4720 +6649 10935 0.5300 +6649 11315 0.9010 +6649 23411 0.4420 +6649 23446 0.4120 +6649 23645 0.5130 +6649 25824 0.5290 +6649 25828 0.4520 +6649 27035 0.5520 +6649 30818 0.4990 +6649 30820 0.4740 +6649 50507 0.5870 +6649 50508 0.4410 +6649 53905 0.4730 +6649 54205 0.4660 +6649 55167 0.4730 +6649 59341 0.5230 +6649 79400 0.4480 +6649 80351 0.4220 +6649 81341 0.5130 +6649 90627 0.4120 +6649 91300 0.5130 +6649 254863 0.4460 +6649 257202 0.7630 +6649 283149 0.4550 +6649 286451 0.4470 +6649 493869 0.7830 +6649 653361 0.4580 +6650 7733 0.4250 +6650 7776 0.5220 +6650 9709 0.5300 +6650 10302 0.4060 +6650 23053 0.4020 +6650 23070 0.4550 +6650 23288 0.4880 +6650 26974 0.4840 +6650 51513 0.4350 +6650 55658 0.4930 +6650 56342 0.4030 +6650 64216 0.4120 +6650 84290 0.6750 +6650 84455 0.5570 +6650 84622 0.5730 +6650 89887 0.4300 +6650 93986 0.4460 +6650 112950 0.4480 +6650 126069 0.4960 +6650 136332 0.4490 +6651 6732 0.4250 +6651 6733 0.4780 +6651 6949 0.4810 +6651 7150 0.6090 +6651 7182 0.4060 +6651 7307 0.4230 +6651 8021 0.4390 +6651 8653 0.5680 +6651 8899 0.6710 +6651 9169 0.5230 +6651 9188 0.5780 +6651 9295 0.8970 +6651 9584 0.9990 +6651 9736 0.5200 +6651 9774 0.5570 +6651 9775 0.7150 +6651 9987 0.4030 +6651 10181 0.4030 +6651 10250 0.5640 +6651 10482 0.7330 +6651 10521 0.4030 +6651 11083 0.4220 +6651 11097 0.4180 +6651 11168 0.4340 +6651 22916 0.6830 +6651 22985 0.5060 +6651 23049 0.4180 +6651 23215 0.9990 +6651 23350 0.5100 +6651 23396 0.7060 +6651 23451 0.7740 +6651 25957 0.6010 +6651 26097 0.4520 +6651 26576 0.4970 +6651 29072 0.6870 +6651 29107 0.4680 +6651 29980 0.7790 +6651 51366 0.5710 +6651 54514 0.6080 +6651 55122 0.4250 +6651 55870 0.4440 +6651 55904 0.4570 +6651 58517 0.8250 +6651 64968 0.4410 +6651 65117 0.4660 +6651 84449 0.4060 +6651 84955 0.6240 +6651 124245 0.5150 +6651 127253 0.4310 +6651 286077 0.4760 +6652 6667 0.4080 +6652 6888 0.7670 +6652 7086 0.6540 +6652 7167 0.6720 +6652 7264 0.4570 +6652 7276 0.4590 +6652 7284 0.5840 +6652 7372 0.4810 +6652 7915 0.5450 +6652 7923 0.4790 +6652 8277 0.6470 +6652 8564 0.4310 +6652 8659 0.4770 +6652 8833 0.8130 +6652 8854 0.6170 +6652 9104 0.8370 +6652 9227 0.5070 +6652 9249 0.5440 +6652 9380 0.6410 +6652 9399 0.4450 +6652 9453 0.4060 +6652 9517 0.6780 +6652 9563 0.7380 +6652 9942 0.9880 +6652 10020 0.4880 +6652 10327 0.5110 +6652 10558 0.6800 +6652 10840 0.4370 +6652 10901 0.4440 +6652 10994 0.5410 +6652 11181 0.4990 +6652 22934 0.5300 +6652 23417 0.4540 +6652 23464 0.7020 +6652 25974 0.4200 +6652 26007 0.9190 +6652 26061 0.5440 +6652 26063 0.4650 +6652 26227 0.4350 +6652 26330 0.4220 +6652 26873 0.5640 +6652 27235 0.8860 +6652 27294 0.6000 +6652 29880 0.4080 +6652 29958 0.4710 +6652 50700 0.6790 +6652 51011 0.5740 +6652 51071 0.8690 +6652 51084 0.5410 +6652 51109 0.6230 +6652 51167 0.4170 +6652 51171 0.4280 +6652 51181 0.9450 +6652 51268 0.4470 +6652 51477 0.4300 +6652 51635 0.4230 +6652 51805 0.4430 +6652 54346 0.4040 +6652 54438 0.5320 +6652 54884 0.4650 +6652 54988 0.4450 +6652 55277 0.5070 +6652 55304 0.6780 +6652 55349 0.5300 +6652 55586 0.4610 +6652 55771 0.4430 +6652 55825 0.4320 +6652 55902 0.5390 +6652 56898 0.4470 +6652 56912 0.5200 +6652 56954 0.5500 +6652 57016 0.9540 +6652 57127 0.4200 +6652 57591 0.8650 +6652 57665 0.4950 +6652 64080 0.4720 +6652 64220 0.4670 +6652 64577 0.5750 +6652 64902 0.4450 +6652 65985 0.5010 +6652 79154 0.4720 +6652 79611 0.4500 +6652 80201 0.9240 +6652 81577 0.5320 +6652 81889 0.4310 +6652 84076 0.6480 +6652 84263 0.5970 +6652 84532 0.5410 +6652 84795 0.4400 +6652 92483 0.6610 +6652 112724 0.5810 +6652 116285 0.4460 +6652 121214 0.6800 +6652 123876 0.4660 +6652 126133 0.4380 +6652 129831 0.4340 +6652 130589 0.5400 +6652 137872 0.8740 +6652 140862 0.6780 +6652 145226 0.6260 +6652 145501 0.6780 +6652 148362 0.4540 +6652 154141 0.4140 +6652 157506 0.9110 +6652 160287 0.4910 +6652 160428 0.4630 +6652 197258 0.8260 +6652 201161 0.5970 +6652 257202 0.4220 +6652 283871 0.4090 +6652 341392 0.4450 +6652 345275 0.5150 +6652 347549 0.5950 +6652 348158 0.4450 +6652 373156 0.4200 +6652 389857 0.5950 +6652 414328 0.5680 +6652 441495 0.5950 +6652 493869 0.4260 +6652 729020 0.4340 +6653 7097 0.4370 +6653 7436 0.4280 +6653 8218 0.4300 +6653 8301 0.8380 +6653 8411 0.4240 +6653 8724 0.4800 +6653 9146 0.5270 +6653 9244 0.5260 +6653 9463 0.4430 +6653 9559 0.9460 +6653 9846 0.4820 +6653 10347 0.8410 +6653 10418 0.5570 +6653 10452 0.5170 +6653 10658 0.6280 +6653 10979 0.6670 +6653 11315 0.5080 +6653 22986 0.4420 +6653 23062 0.9510 +6653 23163 0.5210 +6653 23166 0.4390 +6653 23385 0.4530 +6653 23529 0.4470 +6653 23607 0.7470 +6653 23621 0.7370 +6653 23646 0.6240 +6653 25825 0.4410 +6653 26088 0.9860 +6653 27185 0.4070 +6653 51225 0.4620 +6653 51314 0.7340 +6653 51338 0.6420 +6653 51699 0.6890 +6653 54209 0.7270 +6653 55063 0.7200 +6653 55275 0.4470 +6653 55690 0.7950 +6653 55737 0.8770 +6653 57091 0.7420 +6653 57537 0.4480 +6653 63934 0.4250 +6653 64231 0.6820 +6653 79746 0.4050 +6653 79890 0.6850 +6653 81609 0.7880 +6653 83661 0.6160 +6653 84547 0.4250 +6653 84722 0.6400 +6653 84888 0.4140 +6653 84918 0.4790 +6653 112936 0.5850 +6653 114815 0.4340 +6653 116519 0.5110 +6653 120892 0.4010 +6653 123041 0.6830 +6653 143471 0.4100 +6653 163882 0.4850 +6653 245802 0.6270 +6653 259217 0.6220 +6653 388325 0.4220 +6653 414899 0.8070 +6653 643680 0.6500 +6654 6655 0.9660 +6654 6708 0.4030 +6654 6709 0.4940 +6654 6711 0.4450 +6654 6714 0.9620 +6654 6850 0.7510 +6654 6885 0.4240 +6654 7006 0.5490 +6654 7010 0.4820 +6654 7039 0.5540 +6654 7040 0.5480 +6654 7042 0.5030 +6654 7046 0.5820 +6654 7048 0.6680 +6654 7074 0.5010 +6654 7089 0.4570 +6654 7094 0.5810 +6654 7124 0.5230 +6654 7132 0.6060 +6654 7157 0.5840 +6654 7248 0.4830 +6654 7249 0.5460 +6654 7294 0.5740 +6654 7305 0.5940 +6654 7409 0.9770 +6654 7410 0.9260 +6654 7430 0.5180 +6654 7450 0.5530 +6654 7454 0.5700 +6654 7462 0.7760 +6654 7525 0.6010 +6654 7533 0.4620 +6654 7534 0.9490 +6654 7535 0.4500 +6654 7750 0.5560 +6654 8036 0.8650 +6654 8074 0.4470 +6654 8216 0.6150 +6654 8440 0.7220 +6654 8491 0.4760 +6654 8660 0.5960 +6654 8817 0.5670 +6654 8822 0.5590 +6654 8823 0.5720 +6654 8831 0.7050 +6654 8844 0.5140 +6654 8878 0.5160 +6654 8976 0.7820 +6654 9138 0.5260 +6654 9321 0.5570 +6654 9353 0.5680 +6654 9365 0.4230 +6654 9402 0.9700 +6654 9451 0.5980 +6654 9530 0.5040 +6654 9542 0.4990 +6654 9630 0.5440 +6654 9644 0.6140 +6654 9712 0.6850 +6654 9846 0.9910 +6654 9965 0.4570 +6654 10000 0.4200 +6654 10006 0.9980 +6654 10048 0.8170 +6654 10096 0.4860 +6654 10125 0.9290 +6654 10152 0.5140 +6654 10235 0.4330 +6654 10252 0.8480 +6654 10298 0.6250 +6654 10451 0.7100 +6654 10603 0.5300 +6654 10672 0.6090 +6654 10681 0.6010 +6654 10718 0.4210 +6654 10750 0.9450 +6654 10817 0.4890 +6654 10818 0.9950 +6654 10870 0.4590 +6654 10979 0.5030 +6654 11140 0.5330 +6654 11160 0.5150 +6654 22800 0.9480 +6654 22808 0.9700 +6654 22879 0.4050 +6654 22914 0.5490 +6654 23551 0.4270 +6654 23607 0.6530 +6654 25759 0.9230 +6654 25780 0.9190 +6654 25970 0.4540 +6654 26060 0.4420 +6654 26130 0.4280 +6654 26281 0.5670 +6654 26499 0.6210 +6654 27006 0.5570 +6654 27040 0.8370 +6654 28954 0.4400 +6654 29760 0.8980 +6654 30011 0.9150 +6654 50618 0.5300 +6654 51764 0.5430 +6654 53358 0.9590 +6654 54209 0.5450 +6654 54331 0.5870 +6654 54518 0.5450 +6654 54869 0.4970 +6654 55914 0.6110 +6654 55970 0.5680 +6654 56924 0.5750 +6654 57144 0.5870 +6654 57459 0.4160 +6654 57610 0.5330 +6654 59345 0.5410 +6654 64096 0.4120 +6654 64787 0.4960 +6654 80745 0.7320 +6654 81619 0.4860 +6654 84959 0.4740 +6654 94235 0.5420 +6654 118788 0.5750 +6654 144568 0.5070 +6654 145957 0.4960 +6654 146433 0.4990 +6654 152831 0.4300 +6654 161742 0.6020 +6654 200958 0.5310 +6654 221002 0.4240 +6654 253260 0.5750 +6654 255324 0.4780 +6654 346562 0.5790 +6654 390714 0.4030 +6654 399687 0.5340 +6654 399694 0.9210 +6654 105372280 0.5400 +6655 6714 0.7860 +6655 6850 0.5390 +6655 7046 0.5610 +6655 7048 0.5290 +6655 7248 0.4740 +6655 7409 0.6310 +6655 7430 0.5090 +6655 7534 0.4960 +6655 8036 0.6560 +6655 8216 0.6110 +6655 8440 0.5680 +6655 8471 0.4460 +6655 8844 0.4770 +6655 9138 0.4380 +6655 9353 0.5460 +6655 9402 0.9190 +6655 9451 0.5230 +6655 9846 0.9910 +6655 10006 0.4400 +6655 10124 0.7150 +6655 10125 0.9280 +6655 10139 0.4860 +6655 10152 0.7240 +6655 10252 0.4580 +6655 10298 0.6020 +6655 10399 0.4990 +6655 10672 0.4870 +6655 10746 0.6100 +6655 10750 0.8030 +6655 10818 0.9150 +6655 10979 0.4680 +6655 11261 0.5440 +6655 22800 0.9400 +6655 22808 0.9480 +6655 25759 0.9210 +6655 25780 0.9170 +6655 26499 0.4470 +6655 27040 0.6270 +6655 28954 0.4140 +6655 29760 0.4940 +6655 51052 0.6360 +6655 53358 0.9310 +6655 56924 0.6030 +6655 57144 0.5920 +6655 144568 0.5070 +6655 147179 0.4040 +6655 399694 0.9150 +6656 6657 0.7710 +6656 6660 0.5970 +6656 6774 0.4620 +6656 6853 0.4340 +6656 6911 0.5230 +6656 6926 0.4060 +6656 7027 0.5660 +6656 7054 0.4120 +6656 7080 0.4560 +6656 7268 0.4390 +6656 7273 0.5310 +6656 7329 0.4160 +6656 7471 0.4210 +6656 7545 0.5760 +6656 7546 0.4030 +6656 7852 0.4170 +6656 8022 0.4110 +6656 8320 0.5490 +6656 8433 0.4240 +6656 9211 0.7780 +6656 9241 0.5230 +6656 9314 0.7470 +6656 9355 0.4640 +6656 10215 0.6400 +6656 10365 0.4240 +6656 10381 0.4970 +6656 10687 0.7450 +6656 10716 0.4880 +6656 10763 0.7950 +6656 11213 0.4750 +6656 23136 0.4120 +6656 26047 0.6540 +6656 27022 0.5180 +6656 27164 0.4180 +6656 56896 0.7180 +6656 57030 0.4100 +6656 57167 0.4180 +6656 57628 0.6330 +6656 63973 0.8750 +6656 64211 0.4390 +6656 79190 0.4240 +6656 79191 0.4320 +6656 79727 0.6660 +6656 79923 0.7760 +6656 80183 0.4100 +6656 83881 0.6480 +6656 84107 0.7670 +6656 84504 0.5080 +6656 89780 0.4470 +6656 92737 0.6410 +6656 116448 0.4370 +6656 132625 0.4580 +6656 146713 0.5320 +6656 147948 0.6000 +6656 151647 0.4120 +6656 170825 0.4250 +6656 201456 0.5550 +6656 221937 0.4280 +6656 338917 0.4650 +6656 388585 0.5500 +6656 402665 0.5650 +6657 6658 0.6640 +6657 6660 0.4440 +6657 6667 0.5420 +6657 6688 0.4200 +6657 6696 0.4670 +6657 6714 0.4600 +6657 6741 0.5320 +6657 6760 0.4310 +6657 6774 0.9030 +6657 6778 0.5970 +6657 6780 0.5650 +6657 6829 0.4440 +6657 6853 0.4490 +6657 6855 0.5010 +6657 6862 0.6930 +6657 6886 0.6280 +6657 6908 0.4140 +6657 6909 0.5440 +6657 6910 0.5550 +6657 6911 0.5020 +6657 6925 0.7570 +6657 6926 0.9070 +6657 6927 0.4150 +6657 6928 0.5050 +6657 6929 0.7010 +6657 6938 0.6910 +6657 6997 0.8100 +6657 7003 0.6240 +6657 7004 0.5540 +6657 7015 0.7520 +6657 7019 0.4630 +6657 7022 0.5410 +6657 7025 0.4540 +6657 7026 0.4470 +6657 7040 0.6730 +6657 7044 0.7160 +6657 7046 0.4030 +6657 7054 0.4390 +6657 7057 0.5020 +6657 7070 0.7100 +6657 7080 0.6270 +6657 7082 0.4660 +6657 7101 0.4920 +6657 7124 0.4320 +6657 7139 0.4800 +6657 7157 0.8830 +6657 7161 0.4130 +6657 7203 0.5390 +6657 7268 0.4430 +6657 7276 0.4900 +6657 7277 0.5650 +6657 7280 0.4380 +6657 7291 0.8820 +6657 7299 0.4070 +6657 7329 0.4880 +6657 7341 0.6150 +6657 7356 0.4370 +6657 7403 0.7900 +6657 7430 0.4310 +6657 7431 0.6050 +6657 7443 0.5890 +6657 7448 0.4790 +6657 7471 0.5410 +6657 7472 0.4560 +6657 7473 0.5000 +6657 7474 0.5300 +6657 7477 0.4100 +6657 7482 0.4030 +6657 7486 0.4130 +6657 7490 0.4430 +6657 7514 0.4370 +6657 7515 0.5650 +6657 7520 0.6230 +6657 7525 0.4720 +6657 7528 0.7740 +6657 7531 0.4170 +6657 7534 0.4140 +6657 7543 0.5750 +6657 7545 0.5720 +6657 7546 0.5810 +6657 7547 0.8790 +6657 7726 0.5120 +6657 7750 0.4900 +6657 7818 0.5400 +6657 7837 0.5860 +6657 7849 0.4110 +6657 7852 0.6450 +6657 7874 0.7700 +6657 8022 0.5050 +6657 8091 0.6970 +6657 8115 0.4330 +6657 8148 0.5240 +6657 8209 0.4870 +6657 8220 0.8380 +6657 8239 0.7470 +6657 8289 0.7410 +6657 8290 0.6340 +6657 8294 0.8010 +6657 8313 0.5120 +6657 8320 0.8480 +6657 8335 0.8000 +6657 8349 0.4200 +6657 8350 0.8050 +6657 8351 0.8070 +6657 8352 0.8330 +6657 8353 0.8330 +6657 8354 0.8060 +6657 8355 0.8080 +6657 8356 0.9230 +6657 8357 0.8060 +6657 8358 0.8240 +6657 8359 0.8010 +6657 8360 0.8100 +6657 8361 0.8550 +6657 8362 0.8040 +6657 8363 0.8020 +6657 8364 0.8090 +6657 8366 0.8030 +6657 8367 0.8040 +6657 8368 0.8080 +6657 8370 0.8050 +6657 8403 0.7400 +6657 8433 0.7140 +6657 8451 0.5510 +6657 8463 0.6330 +6657 8467 0.6450 +6657 8549 0.6690 +6657 8554 0.6250 +6657 8563 0.4240 +6657 8607 0.4050 +6657 8609 0.4860 +6657 8626 0.9300 +6657 8646 0.4040 +6657 8650 0.5750 +6657 8726 0.6310 +6657 8788 0.4660 +6657 8815 0.7920 +6657 8817 0.5940 +6657 8820 0.7270 +6657 8822 0.5970 +6657 8823 0.5990 +6657 8841 0.6130 +6657 8842 0.8760 +6657 8878 0.6920 +6657 8928 0.8670 +6657 8968 0.8060 +6657 8970 0.8300 +6657 9070 0.6950 +6657 9096 0.5370 +6657 9112 0.6020 +6657 9126 0.5310 +6657 9201 0.4450 +6657 9241 0.6140 +6657 9253 0.4410 +6657 9314 0.9980 +6657 9355 0.6010 +6657 9427 0.4220 +6657 9429 0.6740 +6657 9444 0.5040 +6657 9464 0.4090 +6657 9531 0.4020 +6657 9532 0.5230 +6657 9555 0.4180 +6657 9573 0.6780 +6657 9611 0.7020 +6657 9612 0.5240 +6657 9623 0.4460 +6657 9646 0.4200 +6657 9669 0.4540 +6657 9730 0.4200 +6657 9733 0.5710 +6657 9736 0.5410 +6657 9745 0.5090 +6657 9801 0.5110 +6657 9839 0.7830 +6657 9869 0.6110 +6657 9947 0.4040 +6657 9972 0.8260 +6657 10049 0.5320 +6657 10101 0.4260 +6657 10155 0.5940 +6657 10179 0.5100 +6657 10212 0.5180 +6657 10215 0.7970 +6657 10294 0.6310 +6657 10320 0.4420 +6657 10365 0.7980 +6657 10381 0.7200 +6657 10413 0.7020 +6657 10521 0.4150 +6657 10538 0.4740 +6657 10620 0.7250 +6657 10630 0.4140 +6657 10637 0.5930 +6657 10644 0.7130 +6657 10657 0.5580 +6657 10664 0.7680 +6657 10683 0.4530 +6657 10716 0.6090 +6657 10763 0.8910 +6657 10765 0.4040 +6657 10768 0.5100 +6657 10856 0.4140 +6657 10919 0.5860 +6657 10951 0.5180 +6657 10985 0.5190 +6657 11060 0.6760 +6657 11075 0.5150 +6657 11091 0.7430 +6657 11137 0.5210 +6657 11166 0.8740 +6657 11198 0.5750 +6657 22913 0.5300 +6657 22943 0.5310 +6657 23013 0.4780 +6657 23028 0.7270 +6657 23040 0.5030 +6657 23112 0.5240 +6657 23135 0.5660 +6657 23186 0.4740 +6657 23225 0.4360 +6657 23309 0.4170 +6657 23314 0.5500 +6657 23405 0.6190 +6657 23411 0.4520 +6657 23435 0.4640 +6657 23462 0.4880 +6657 23476 0.4370 +6657 23493 0.4260 +6657 23512 0.7270 +6657 23521 0.4870 +6657 23528 0.5600 +6657 23543 0.4300 +6657 23564 0.5950 +6657 23598 0.4250 +6657 25836 0.4070 +6657 25940 0.5100 +6657 25942 0.7370 +6657 26002 0.4110 +6657 26156 0.4170 +6657 26227 0.5350 +6657 26281 0.6120 +6657 26354 0.6140 +6657 26468 0.5490 +6657 26523 0.6820 +6657 26528 0.4760 +6657 27006 0.5890 +6657 27022 0.8910 +6657 27161 0.7570 +6657 27164 0.5460 +6657 27327 0.6660 +6657 28514 0.4800 +6657 28957 0.5100 +6657 29072 0.5300 +6657 29088 0.5240 +6657 29126 0.4480 +6657 29128 0.6130 +6657 29789 0.5240 +6657 29842 0.5530 +6657 29947 0.4480 +6657 29979 0.4030 +6657 30062 0.6380 +6657 30812 0.4560 +6657 50674 0.4830 +6657 50804 0.6820 +6657 51011 0.4550 +6657 51073 0.5100 +6657 51105 0.5660 +6657 51132 0.5810 +6657 51176 0.5800 +6657 51366 0.5800 +6657 51388 0.4010 +6657 51438 0.4330 +6657 51441 0.5090 +6657 51592 0.6950 +6657 51602 0.5130 +6657 51804 0.4390 +6657 53335 0.6070 +6657 53353 0.4650 +6657 53615 0.6160 +6657 54361 0.4050 +6657 54487 0.5610 +6657 54596 0.5410 +6657 54715 0.4390 +6657 54776 0.5420 +6657 54790 0.4640 +6657 54815 0.5890 +6657 54845 0.4850 +6657 54881 0.8400 +6657 54915 0.4980 +6657 55211 0.7870 +6657 55553 0.4280 +6657 55636 0.8600 +6657 55733 0.5040 +6657 56339 0.4740 +6657 56945 0.5550 +6657 56956 0.4560 +6657 57030 0.4560 +6657 57167 0.9830 +6657 57418 0.4040 +6657 57459 0.4200 +6657 57510 0.4650 +6657 57634 0.5440 +6657 57650 0.4030 +6657 57680 0.4520 +6657 57708 0.5350 +6657 57805 0.5230 +6657 58155 0.4190 +6657 58499 0.4430 +6657 63973 0.8500 +6657 63978 0.9650 +6657 64328 0.4770 +6657 64434 0.5110 +6657 64783 0.4510 +6657 64843 0.4800 +6657 64848 0.4250 +6657 64919 0.5700 +6657 64949 0.5370 +6657 64965 0.5920 +6657 64975 0.5100 +6657 65005 0.5260 +6657 79191 0.4080 +6657 79595 0.4280 +6657 79727 0.9830 +6657 79776 0.4370 +6657 79923 0.9990 +6657 80012 0.5910 +6657 80232 0.4200 +6657 80312 0.6010 +6657 80712 0.6940 +6657 80854 0.4460 +6657 81887 0.5680 +6657 83439 0.4410 +6657 83881 0.6050 +6657 84101 0.4220 +6657 84504 0.4980 +6657 84525 0.6620 +6657 84678 0.4410 +6657 84733 0.4640 +6657 84823 0.4700 +6657 84891 0.8960 +6657 85236 0.8330 +6657 85440 0.5130 +6657 89780 0.6320 +6657 89884 0.4330 +6657 90417 0.4470 +6657 93986 0.4010 +6657 112939 0.7020 +6657 116448 0.5800 +6657 117581 0.4600 +6657 121504 0.8090 +6657 124540 0.7720 +6657 126961 0.8050 +6657 128209 0.4120 +6657 132625 0.7130 +6657 137902 0.5840 +6657 140456 0.4270 +6657 140690 0.4080 +6657 140836 0.4070 +6657 145258 0.4650 +6657 146713 0.6940 +6657 148979 0.5560 +6657 151871 0.5800 +6657 169792 0.4270 +6657 171017 0.4990 +6657 192669 0.5330 +6657 192670 0.5240 +6657 201456 0.8190 +6657 201516 0.4810 +6657 220988 0.7440 +6657 254827 0.4490 +6657 256297 0.4110 +6657 259266 0.4660 +6657 284403 0.5870 +6657 285855 0.4060 +6657 286133 0.4520 +6657 333932 0.8050 +6657 338917 0.6180 +6657 340168 0.5290 +6657 340273 0.4010 +6657 340419 0.4820 +6657 342977 0.4750 +6657 346673 0.4090 +6657 359787 0.7380 +6657 387332 0.5260 +6657 387755 0.4160 +6657 388112 0.4500 +6657 388585 0.6350 +6657 389421 0.7400 +6657 440093 0.6340 +6657 440686 0.6330 +6657 554313 0.8010 +6657 653145 0.4270 +6657 653604 0.9230 +6657 728378 0.4680 +6657 100133941 0.7340 +6657 100532731 0.7620 +6658 6792 0.4020 +6658 6909 0.5680 +6658 6926 0.5790 +6658 7329 0.4260 +6658 7545 0.4740 +6658 7546 0.5220 +6658 7547 0.5010 +6658 7704 0.4080 +6658 8022 0.6630 +6658 8433 0.4400 +6658 8646 0.4600 +6658 8820 0.7700 +6658 9016 0.4760 +6658 9314 0.5230 +6658 9355 0.6490 +6658 10215 0.4510 +6658 10655 0.4120 +6658 10763 0.4580 +6658 11166 0.4770 +6658 27022 0.5420 +6658 50674 0.4930 +6658 54221 0.6050 +6658 54361 0.4920 +6658 54937 0.4600 +6658 57167 0.4970 +6658 60506 0.5060 +6658 63973 0.7610 +6658 79727 0.6230 +6658 79923 0.5930 +6658 80712 0.7350 +6658 89884 0.7360 +6658 128674 0.5410 +6658 140456 0.6000 +6658 201456 0.4490 +6658 284654 0.4860 +6658 286410 0.7980 +6658 339345 0.4330 +6658 346673 0.4150 +6658 388585 0.4320 +6658 402381 0.5130 +6658 100526761 0.4680 +6659 6662 0.5520 +6659 6665 0.4760 +6659 6666 0.4560 +6659 6774 0.7070 +6659 6790 0.5680 +6659 6926 0.5560 +6659 6928 0.4870 +6659 6932 0.7180 +6659 6934 0.7460 +6659 7157 0.6360 +6659 7291 0.5800 +6659 7329 0.7920 +6659 7431 0.5660 +6659 7490 0.5250 +6659 8091 0.4150 +6659 8289 0.4420 +6659 8463 0.4340 +6659 8549 0.4100 +6659 8841 0.4750 +6659 8842 0.4380 +6659 8928 0.5480 +6659 9271 0.4210 +6659 9314 0.4690 +6659 9839 0.4490 +6659 10461 0.5100 +6659 10472 0.4400 +6659 10512 0.4390 +6659 10538 0.5220 +6659 11322 0.5000 +6659 23236 0.4810 +6659 23411 0.5250 +6659 29980 0.4690 +6659 30812 0.5130 +6659 51176 0.8220 +6659 51441 0.5090 +6659 54206 0.4180 +6659 55079 0.4180 +6659 63978 0.4500 +6659 64321 0.4940 +6659 79923 0.5070 +6659 83439 0.7270 +6659 127540 0.6360 +6659 143689 0.4230 +6659 387129 0.4440 +6659 100133941 0.4500 +6660 6662 0.9010 +6660 6663 0.6020 +6660 6664 0.7440 +6660 6932 0.7830 +6660 7025 0.6030 +6660 7026 0.5620 +6660 7494 0.4420 +6660 8190 0.4470 +6660 8200 0.4250 +6660 9320 0.5400 +6660 9580 0.8150 +6660 10215 0.5890 +6660 10371 0.4130 +6660 10716 0.6280 +6660 10865 0.6320 +6660 23314 0.7010 +6660 23316 0.4590 +6660 26137 0.5350 +6660 27023 0.4410 +6660 27319 0.4010 +6660 50515 0.5120 +6660 55079 0.7660 +6660 55500 0.8610 +6660 55553 0.9800 +6660 55729 0.5130 +6660 57459 0.4230 +6660 63876 0.4450 +6660 63973 0.6090 +6660 63976 0.4060 +6660 64105 0.5520 +6660 64793 0.8000 +6660 64919 0.5400 +6660 64946 0.4150 +6660 79925 0.4540 +6660 81037 0.4970 +6660 91687 0.5480 +6660 93986 0.4480 +6660 121340 0.7190 +6660 139628 0.4130 +6660 145581 0.4180 +6660 200933 0.4820 +6660 221937 0.4200 +6662 6678 0.4710 +6662 6696 0.6590 +6662 6716 0.4210 +6662 6736 0.8220 +6662 6750 0.4360 +6662 6774 0.6310 +6662 6910 0.4310 +6662 6925 0.6100 +6662 6926 0.4250 +6662 6927 0.4360 +6662 6928 0.7050 +6662 6936 0.5050 +6662 6996 0.4020 +6662 7003 0.4440 +6662 7025 0.5050 +6662 7026 0.4960 +6662 7040 0.6550 +6662 7042 0.6670 +6662 7043 0.6810 +6662 7046 0.4270 +6662 7048 0.4290 +6662 7070 0.6180 +6662 7076 0.4060 +6662 7080 0.6890 +6662 7082 0.4620 +6662 7124 0.4780 +6662 7157 0.5770 +6662 7227 0.4160 +6662 7291 0.7320 +6662 7329 0.6900 +6662 7356 0.4180 +6662 7431 0.6630 +6662 7471 0.5280 +6662 7472 0.4350 +6662 7473 0.5070 +6662 7474 0.7190 +6662 7475 0.4630 +6662 7476 0.4480 +6662 7477 0.4870 +6662 7480 0.4270 +6662 7481 0.4650 +6662 7482 0.4570 +6662 7483 0.5010 +6662 7484 0.4420 +6662 7490 0.9080 +6662 7544 0.5190 +6662 7545 0.5340 +6662 7704 0.4760 +6662 7837 0.5440 +6662 7852 0.4940 +6662 8190 0.5640 +6662 8200 0.6390 +6662 8289 0.4150 +6662 8290 0.4520 +6662 8312 0.4540 +6662 8313 0.6390 +6662 8356 0.4530 +6662 8549 0.7280 +6662 8600 0.4470 +6662 8646 0.4250 +6662 8788 0.4500 +6662 8817 0.5910 +6662 8822 0.5240 +6662 8823 0.5520 +6662 8842 0.6190 +6662 8945 0.4310 +6662 9201 0.4700 +6662 9241 0.6370 +6662 9314 0.6080 +6662 9355 0.6150 +6662 9464 0.4100 +6662 9496 0.4150 +6662 9507 0.6020 +6662 9508 0.5860 +6662 9775 0.4410 +6662 9839 0.4200 +6662 9869 0.4610 +6662 9935 0.4090 +6662 9968 0.7680 +6662 10014 0.4070 +6662 10215 0.5720 +6662 10216 0.5770 +6662 10413 0.5480 +6662 10468 0.4460 +6662 10524 0.5220 +6662 10562 0.5260 +6662 10631 0.4270 +6662 10736 0.4720 +6662 10763 0.6290 +6662 10840 0.4480 +6662 10865 0.4990 +6662 11060 0.5280 +6662 11096 0.6880 +6662 22943 0.5410 +6662 23411 0.6240 +6662 23414 0.4540 +6662 23462 0.5100 +6662 23476 0.4440 +6662 23532 0.4050 +6662 25819 0.4370 +6662 26018 0.5590 +6662 26059 0.4160 +6662 26281 0.5550 +6662 26585 0.5080 +6662 27006 0.5320 +6662 27022 0.7640 +6662 27122 0.4150 +6662 28514 0.4810 +6662 30812 0.4540 +6662 50511 0.4970 +6662 50674 0.6970 +6662 50846 0.9010 +6662 50964 0.4290 +6662 51222 0.5110 +6662 51341 0.6690 +6662 51384 0.4350 +6662 54361 0.7140 +6662 54514 0.4560 +6662 55294 0.6890 +6662 55366 0.4250 +6662 55553 0.9530 +6662 55636 0.7540 +6662 56603 0.4400 +6662 56956 0.6160 +6662 57472 0.4220 +6662 59352 0.5080 +6662 63973 0.4320 +6662 64102 0.5840 +6662 79191 0.4100 +6662 79727 0.4520 +6662 79923 0.6730 +6662 79971 0.6040 +6662 81029 0.4640 +6662 84159 0.4040 +6662 84504 0.6420 +6662 84525 0.5790 +6662 84733 0.5590 +6662 89780 0.6450 +6662 116448 0.4560 +6662 117581 0.4530 +6662 121340 0.7180 +6662 137902 0.5270 +6662 139285 0.4710 +6662 151449 0.4610 +6662 168620 0.4650 +6662 256297 0.7040 +6662 283078 0.5090 +6662 284654 0.7270 +6662 338917 0.4680 +6662 340273 0.4130 +6662 346673 0.6720 +6662 388585 0.5150 +6662 389692 0.5550 +6662 392255 0.4010 +6662 440093 0.4530 +6662 440686 0.4530 +6662 642658 0.6710 +6662 653604 0.4530 +6662 728378 0.4070 +6662 100133941 0.5420 +6662 100532731 0.5310 +6663 6736 0.5360 +6663 6855 0.5300 +6663 6900 0.5340 +6663 7003 0.6510 +6663 7021 0.4670 +6663 7080 0.6700 +6663 7088 0.4390 +6663 7157 0.4480 +6663 7291 0.6520 +6663 7299 0.8840 +6663 7306 0.7640 +6663 7329 0.6410 +6663 7471 0.5330 +6663 7474 0.4290 +6663 7476 0.4950 +6663 7490 0.4380 +6663 7528 0.4570 +6663 7545 0.6310 +6663 7547 0.4100 +6663 7572 0.4350 +6663 7849 0.5150 +6663 7852 0.4090 +6663 7942 0.4170 +6663 8190 0.6690 +6663 8290 0.4120 +6663 8356 0.4150 +6663 8506 0.4020 +6663 8537 0.6120 +6663 8731 0.4910 +6663 8822 0.4160 +6663 8929 0.7190 +6663 9019 0.6850 +6663 9048 0.4930 +6663 9111 0.8790 +6663 9241 0.4550 +6663 9355 0.4170 +6663 9394 0.4460 +6663 9444 0.4590 +6663 9464 0.4600 +6663 9839 0.4680 +6663 9968 0.7460 +6663 10215 0.8920 +6663 10327 0.4420 +6663 10371 0.4140 +6663 10381 0.4710 +6663 10413 0.7430 +6663 10763 0.6540 +6663 10840 0.4610 +6663 10856 0.4320 +6663 22797 0.4990 +6663 23081 0.4570 +6663 23542 0.4110 +6663 25937 0.5990 +6663 26012 0.4190 +6663 27022 0.8020 +6663 28513 0.6140 +6663 29028 0.4420 +6663 30812 0.5550 +6663 50846 0.5290 +6663 51151 0.4910 +6663 51176 0.5060 +6663 51566 0.5130 +6663 54474 0.4610 +6663 54763 0.4200 +6663 55107 0.5720 +6663 55500 0.4100 +6663 55586 0.5000 +6663 55636 0.7800 +6663 55818 0.4490 +6663 57016 0.4460 +6663 57165 0.4690 +6663 57680 0.5460 +6663 57716 0.9080 +6663 60529 0.5420 +6663 63973 0.4930 +6663 79152 0.4120 +6663 79923 0.5310 +6663 79924 0.4290 +6663 84444 0.4120 +6663 84504 0.5910 +6663 84894 0.4050 +6663 89780 0.4240 +6663 93377 0.4780 +6663 116448 0.8770 +6663 116931 0.4610 +6663 128674 0.4820 +6663 133121 0.4490 +6663 146713 0.5380 +6663 152015 0.4100 +6663 284654 0.4280 +6663 388585 0.5570 +6663 389549 0.4010 +6663 400566 0.4420 +6663 440093 0.4120 +6663 440686 0.4120 +6663 653604 0.4120 +6664 6774 0.4360 +6664 7157 0.4410 +6664 7490 0.6060 +6664 7545 0.4230 +6664 7546 0.4520 +6664 8289 0.6140 +6664 8294 0.8010 +6664 8335 0.8000 +6664 8359 0.8010 +6664 8360 0.8010 +6664 8361 0.8110 +6664 8362 0.8010 +6664 8363 0.8020 +6664 8364 0.8080 +6664 8366 0.8010 +6664 8367 0.8010 +6664 8368 0.8010 +6664 8370 0.8010 +6664 8463 0.4310 +6664 8609 0.5920 +6664 9314 0.4480 +6664 9355 0.4160 +6664 9580 0.6870 +6664 10215 0.4540 +6664 10637 0.4930 +6664 10661 0.4590 +6664 23040 0.4230 +6664 27022 0.4080 +6664 30812 0.5280 +6664 53335 0.4310 +6664 57492 0.5780 +6664 63973 0.5500 +6664 79923 0.4770 +6664 85236 0.8000 +6664 121504 0.8010 +6664 126961 0.8080 +6664 196528 0.5120 +6664 200350 0.4690 +6664 220202 0.4330 +6664 333932 0.8060 +6664 388585 0.4290 +6664 431707 0.4290 +6664 554313 0.8010 +6664 653604 0.8430 +6664 102723407 0.5440 +6665 7329 0.4160 +6665 8433 0.4280 +6665 8507 0.4560 +6665 9314 0.4030 +6665 9371 0.4250 +6665 9777 0.5020 +6665 10630 0.4360 +6665 23509 0.4260 +6665 25898 0.4310 +6665 57167 0.4430 +6665 79923 0.5110 +6665 80023 0.5020 +6665 140893 0.5130 +6666 80023 0.5480 +6667 6670 0.9120 +6667 6714 0.9470 +6667 6720 0.9120 +6667 6721 0.7810 +6667 6722 0.5970 +6667 6736 0.4430 +6667 6774 0.9230 +6667 6827 0.4420 +6667 6829 0.4430 +6667 6833 0.4690 +6667 6839 0.5610 +6667 6868 0.4320 +6667 6874 0.6500 +6667 6877 0.5330 +6667 6878 0.5610 +6667 6880 0.5920 +6667 6882 0.5170 +6667 6884 0.4990 +6667 6886 0.4210 +6667 6908 0.9940 +6667 6927 0.4120 +6667 7023 0.4170 +6667 7025 0.5940 +6667 7027 0.5410 +6667 7029 0.5090 +6667 7040 0.4600 +6667 7046 0.5720 +6667 7052 0.4110 +6667 7071 0.5390 +6667 7084 0.4490 +6667 7124 0.6270 +6667 7157 0.9940 +6667 7181 0.4130 +6667 7391 0.9010 +6667 7392 0.8800 +6667 7428 0.6130 +6667 7528 0.8630 +6667 7702 0.8190 +6667 7706 0.4340 +6667 7707 0.4630 +6667 7709 0.9030 +6667 7837 0.4230 +6667 7874 0.4280 +6667 8202 0.9310 +6667 8290 0.4820 +6667 8312 0.4220 +6667 8356 0.4830 +6667 8361 0.4620 +6667 8648 0.8480 +6667 8812 0.5150 +6667 8841 0.4740 +6667 8850 0.6550 +6667 8882 0.5170 +6667 8900 0.4590 +6667 8945 0.6180 +6667 9314 0.5770 +6667 9453 0.5040 +6667 9519 0.9070 +6667 9611 0.6330 +6667 9612 0.4610 +6667 9669 0.5420 +6667 9759 0.6680 +6667 9817 0.4910 +6667 10302 0.4990 +6667 10498 0.9220 +6667 10499 0.6380 +6667 10542 0.4610 +6667 10654 0.5000 +6667 10724 0.4040 +6667 10923 0.5260 +6667 11168 0.4200 +6667 23112 0.5450 +6667 23126 0.5440 +6667 23405 0.4150 +6667 23411 0.4040 +6667 23468 0.4140 +6667 23636 0.4210 +6667 25921 0.4540 +6667 25942 0.5420 +6667 26039 0.4470 +6667 26523 0.5560 +6667 27327 0.4990 +6667 29101 0.4100 +6667 29102 0.4910 +6667 51176 0.4330 +6667 51341 0.5470 +6667 51585 0.4180 +6667 54796 0.5470 +6667 55164 0.4220 +6667 55269 0.4030 +6667 55651 0.4040 +6667 55662 0.4120 +6667 55729 0.7990 +6667 57621 0.6220 +6667 64115 0.4440 +6667 64919 0.5980 +6667 129685 0.5430 +6667 137902 0.4180 +6667 140690 0.5620 +6667 147912 0.4630 +6667 192669 0.5090 +6667 192670 0.5210 +6667 200895 0.4240 +6667 387332 0.9070 +6667 440093 0.4820 +6667 440686 0.4930 +6667 653604 0.5010 +6668 7019 0.6020 +6668 7978 0.6570 +6668 51001 0.4320 +6668 51106 0.5940 +6668 64216 0.6860 +6668 79736 0.5830 +6668 115795 0.4130 +6670 6671 0.5740 +6670 6863 0.4690 +6670 7157 0.6840 +6670 7329 0.6350 +6670 7341 0.6260 +6670 7392 0.5530 +6670 7528 0.4480 +6670 8148 0.4150 +6670 8445 0.6000 +6670 8467 0.4940 +6670 8473 0.4550 +6670 8545 0.4670 +6670 8554 0.6410 +6670 8644 0.5250 +6670 8859 0.4340 +6670 9114 0.4780 +6670 10274 0.5020 +6670 10342 0.4830 +6670 10522 0.4020 +6670 10735 0.5150 +6670 10923 0.4300 +6670 11083 0.4130 +6670 22828 0.4060 +6670 23369 0.6910 +6670 23512 0.4460 +6670 25942 0.5210 +6670 27430 0.4090 +6670 30813 0.6450 +6670 51742 0.4610 +6670 51806 0.4810 +6670 64426 0.4480 +6670 64946 0.4110 +6670 79923 0.4150 +6670 80320 0.4690 +6670 83879 0.5100 +6670 91860 0.4750 +6670 115861 0.6960 +6670 116143 0.5150 +6670 137868 0.4590 +6670 163688 0.4710 +6670 338917 0.5000 +6671 7306 0.4190 +6671 8546 0.5290 +6671 11234 0.6890 +6671 51506 0.4070 +6671 79803 0.6880 +6671 84062 0.4740 +6671 84343 0.6890 +6671 89781 0.7640 +6671 256130 0.5710 +6671 388552 0.5980 +6672 6737 0.6430 +6672 6772 0.7500 +6672 6773 0.4040 +6672 6996 0.4460 +6672 7013 0.6660 +6672 7157 0.7440 +6672 7158 0.5370 +6672 7175 0.4460 +6672 7283 0.4250 +6672 7329 0.9520 +6672 7341 0.9970 +6672 7753 0.4670 +6672 7874 0.5540 +6672 8021 0.4280 +6672 8086 0.4030 +6672 8161 0.4710 +6672 8192 0.6510 +6672 8209 0.4970 +6672 8290 0.9270 +6672 8350 0.9070 +6672 8351 0.9100 +6672 8352 0.9100 +6672 8353 0.9100 +6672 8354 0.9070 +6672 8355 0.9070 +6672 8356 0.9290 +6672 8357 0.9070 +6672 8358 0.9070 +6672 8480 0.4840 +6672 8554 0.4280 +6672 8638 0.4510 +6672 8968 0.9070 +6672 8988 0.4450 +6672 9246 0.4230 +6672 9631 0.4430 +6672 9636 0.5180 +6672 9656 0.4110 +6672 9688 0.4180 +6672 9759 0.4920 +6672 9818 0.4190 +6672 9883 0.4200 +6672 9935 0.5250 +6672 9972 0.4690 +6672 9997 0.4460 +6672 10055 0.6290 +6672 10210 0.4690 +6672 10238 0.4250 +6672 10241 0.8390 +6672 10346 0.4850 +6672 10379 0.4160 +6672 10475 0.6610 +6672 10561 0.6760 +6672 10687 0.4310 +6672 10730 0.4370 +6672 10762 0.4150 +6672 10845 0.7250 +6672 10951 0.4660 +6672 10964 0.4110 +6672 11097 0.4300 +6672 11262 0.4450 +6672 11335 0.6770 +6672 23165 0.4050 +6672 23225 0.8880 +6672 23279 0.4080 +6672 23314 0.4060 +6672 23468 0.9200 +6672 23511 0.4180 +6672 23515 0.4370 +6672 23586 0.7030 +6672 23636 0.5400 +6672 23640 0.4230 +6672 28996 0.5070 +6672 29843 0.4960 +6672 50852 0.4150 +6672 50945 0.6680 +6672 51091 0.5840 +6672 51127 0.4310 +6672 51131 0.5310 +6672 51531 0.4240 +6672 51592 0.5990 +6672 53371 0.4220 +6672 54625 0.4390 +6672 54739 0.5990 +6672 54809 0.7740 +6672 54810 0.5960 +6672 55008 0.4490 +6672 55351 0.4220 +6672 55363 0.6660 +6672 55601 0.5160 +6672 55746 0.4090 +6672 55911 0.4020 +6672 57109 0.5700 +6672 57122 0.4050 +6672 64135 0.6010 +6672 79023 0.4190 +6672 79902 0.4050 +6672 80273 0.6280 +6672 80342 0.4630 +6672 81570 0.8700 +6672 81929 0.4050 +6672 83544 0.5420 +6672 83666 0.4670 +6672 84830 0.4610 +6672 85363 0.4430 +6672 91543 0.4900 +6672 92609 0.4360 +6672 126393 0.6620 +6672 126961 0.9070 +6672 129401 0.4090 +6672 197259 0.5480 +6672 219285 0.6610 +6672 333932 0.9070 +6672 348995 0.4050 +6672 440093 0.9270 +6672 440686 0.9270 +6672 653604 0.9280 +6672 100101267 0.4160 +6674 6950 0.5810 +6674 7167 0.5440 +6674 7203 0.6290 +6674 7248 0.6510 +6674 7534 0.5060 +6674 7802 0.6140 +6674 8409 0.5860 +6674 8481 0.4010 +6674 8607 0.7790 +6674 8624 0.5800 +6674 8701 0.6250 +6674 8725 0.5430 +6674 9531 0.5910 +6674 9532 0.6010 +6674 9576 0.5350 +6674 10273 0.5500 +6674 10309 0.6140 +6674 10471 0.5650 +6674 10574 0.6410 +6674 10575 0.6150 +6674 10576 0.6650 +6674 10693 0.6400 +6674 10694 0.6380 +6674 10728 0.6790 +6674 10856 0.8870 +6674 10963 0.5840 +6674 11140 0.6240 +6674 22948 0.6380 +6674 23234 0.5760 +6674 23639 0.8090 +6674 23753 0.6410 +6674 25981 0.4280 +6674 26206 0.5090 +6674 26353 0.5420 +6674 27019 0.6680 +6674 51314 0.6740 +6674 51364 0.8050 +6674 51398 0.5400 +6674 51726 0.5780 +6674 54768 0.6010 +6674 54919 0.8180 +6674 55011 0.8120 +6674 55036 0.7120 +6674 55130 0.7240 +6674 55172 0.8540 +6674 55342 0.4270 +6674 56683 0.7740 +6674 56984 0.5410 +6674 57003 0.5800 +6674 64446 0.8060 +6674 79657 0.6690 +6674 79819 0.5740 +6674 79925 0.4400 +6674 81572 0.5470 +6674 83538 0.4990 +6674 85016 0.6400 +6674 85478 0.6400 +6674 89765 0.7310 +6674 92749 0.6090 +6674 93233 0.7050 +6674 115399 0.4900 +6674 115948 0.6740 +6674 116143 0.7530 +6674 120379 0.9380 +6674 123169 0.4760 +6674 123872 0.7640 +6674 139212 0.8660 +6674 150160 0.5930 +6674 160762 0.4620 +6674 197021 0.4080 +6674 200162 0.5180 +6674 221421 0.7380 +6674 339829 0.7020 +6674 345643 0.5170 +6674 345895 0.7390 +6674 352909 0.8090 +6674 374407 0.4470 +6674 388389 0.7790 +6676 7047 0.4050 +6676 10615 0.7540 +6676 11264 0.4300 +6676 23137 0.4550 +6676 23157 0.4720 +6676 23224 0.7870 +6676 23345 0.8810 +6676 23353 0.6690 +6676 25777 0.6660 +6676 29923 0.4630 +6676 51361 0.4650 +6676 54558 0.4020 +6676 54665 0.4380 +6676 55168 0.4420 +6676 56914 0.4390 +6676 64222 0.4500 +6676 79789 0.5930 +6676 84905 0.4260 +6676 91869 0.4010 +6676 124404 0.6620 +6676 132864 0.4230 +6676 140732 0.7780 +6676 146849 0.4220 +6676 147872 0.7780 +6676 161176 0.8350 +6676 163183 0.7250 +6676 256979 0.6870 +6676 283417 0.4130 +6676 110806290 0.4320 +6677 7130 0.4200 +6677 7455 0.6160 +6677 7783 0.6710 +6677 7784 0.7910 +6677 8747 0.6260 +6677 8748 0.6390 +6677 9043 0.8860 +6677 10894 0.4070 +6677 11055 0.5730 +6677 11068 0.4240 +6677 11085 0.7280 +6677 22917 0.6380 +6677 23670 0.5690 +6677 50618 0.5360 +6677 54586 0.4540 +6677 57214 0.6280 +6677 57829 0.7570 +6677 81623 0.5490 +6677 81833 0.5920 +6677 83639 0.4830 +6677 84519 0.5220 +6677 138050 0.4180 +6677 246777 0.5620 +6677 256710 0.4360 +6678 6695 0.8910 +6678 6696 0.9840 +6678 6876 0.4450 +6678 7038 0.6190 +6678 7040 0.7220 +6678 7041 0.4230 +6678 7042 0.4520 +6678 7043 0.4200 +6678 7045 0.6090 +6678 7057 0.8470 +6678 7058 0.7350 +6678 7060 0.4020 +6678 7070 0.5450 +6678 7076 0.5290 +6678 7077 0.5350 +6678 7078 0.5750 +6678 7122 0.5140 +6678 7124 0.4060 +6678 7412 0.9650 +6678 7414 0.4940 +6678 7431 0.4480 +6678 7448 0.9220 +6678 7450 0.7650 +6678 7476 0.4160 +6678 7791 0.6590 +6678 7837 0.4530 +6678 8048 0.5010 +6678 8404 0.4930 +6678 8434 0.7610 +6678 8600 0.5450 +6678 8817 0.4470 +6678 8822 0.4420 +6678 8823 0.4520 +6678 8838 0.5130 +6678 8839 0.4160 +6678 8840 0.4920 +6678 9241 0.4830 +6678 9509 0.4180 +6678 9806 0.4510 +6678 10251 0.6480 +6678 10252 0.6020 +6678 10253 0.4760 +6678 10398 0.4530 +6678 10468 0.7090 +6678 10631 0.7970 +6678 10763 0.4470 +6678 11061 0.5870 +6678 11167 0.7790 +6678 22795 0.4450 +6678 23166 0.8950 +6678 25928 0.4310 +6678 26281 0.4540 +6678 27006 0.4500 +6678 27121 0.4480 +6678 29780 0.4840 +6678 30816 0.4090 +6678 50964 0.4520 +6678 51702 0.4910 +6678 55512 0.5570 +6678 55742 0.4940 +6678 56729 0.4160 +6678 56955 0.4630 +6678 57045 0.4590 +6678 64093 0.8190 +6678 64094 0.5250 +6678 64098 0.4540 +6678 78987 0.4930 +6678 80781 0.7570 +6678 83871 0.4180 +6678 84666 0.4030 +6678 121340 0.6580 +6678 124961 0.5220 +6678 375790 0.6050 +6678 405754 0.4150 +6683 6687 0.5170 +6683 6840 0.4810 +6683 6925 0.4950 +6683 6993 0.5290 +6683 7277 0.6360 +6683 7278 0.5440 +6683 7280 0.5440 +6683 7283 0.5850 +6683 7353 0.7110 +6683 7840 0.4020 +6683 7846 0.6510 +6683 7905 0.6200 +6683 8411 0.5000 +6683 8636 0.8820 +6683 8766 0.5890 +6683 9101 0.4700 +6683 9179 0.4040 +6683 9197 0.5420 +6683 9212 0.5410 +6683 9217 0.5650 +6683 9218 0.4410 +6683 9320 0.4910 +6683 9373 0.4500 +6683 9420 0.5620 +6683 9654 0.4930 +6683 9798 0.9990 +6683 9895 0.4530 +6683 9897 0.8890 +6683 9907 0.6080 +6683 10277 0.4020 +6683 10300 0.6080 +6683 10376 0.5640 +6683 10381 0.6050 +6683 10382 0.6430 +6683 10383 0.5470 +6683 10617 0.6410 +6683 10717 0.5200 +6683 10749 0.5770 +6683 10765 0.4070 +6683 10845 0.4850 +6683 10908 0.5910 +6683 10970 0.4050 +6683 11004 0.4880 +6683 11152 0.4230 +6683 11154 0.5000 +6683 11160 0.4910 +6683 22924 0.5210 +6683 23001 0.5090 +6683 23064 0.4490 +6683 23093 0.4830 +6683 23111 0.5680 +6683 23197 0.4190 +6683 23204 0.5330 +6683 23211 0.4200 +6683 23259 0.6160 +6683 23271 0.4190 +6683 23279 0.4240 +6683 23287 0.4390 +6683 23389 0.4390 +6683 23394 0.4890 +6683 23431 0.5140 +6683 23435 0.4040 +6683 23503 0.7880 +6683 25782 0.4300 +6683 25809 0.5510 +6683 25923 0.9660 +6683 25978 0.7290 +6683 26043 0.6870 +6683 26580 0.7110 +6683 27183 0.5950 +6683 27243 0.8160 +6683 29123 0.4540 +6683 29907 0.4660 +6683 29978 0.4580 +6683 51062 0.9960 +6683 51232 0.6580 +6683 51308 0.6820 +6683 51324 0.6680 +6683 51510 0.4660 +6683 51534 0.6830 +6683 51652 0.8120 +6683 51807 0.5800 +6683 54875 0.5840 +6683 55165 0.5780 +6683 55288 0.4330 +6683 55666 0.4400 +6683 55676 0.4410 +6683 55746 0.8140 +6683 56979 0.4240 +6683 57122 0.7260 +6683 57132 0.9990 +6683 57662 0.4290 +6683 57679 0.6020 +6683 57704 0.5010 +6683 63908 0.4100 +6683 64225 0.9720 +6683 64837 0.4300 +6683 65055 0.9770 +6683 79152 0.5580 +6683 79643 0.7530 +6683 79739 0.4510 +6683 79861 0.5500 +6683 79902 0.6400 +6683 79969 0.4460 +6683 80086 0.5540 +6683 80208 0.9360 +6683 80346 0.4350 +6683 80821 0.5680 +6683 81027 0.5490 +6683 81614 0.4850 +6683 84134 0.4010 +6683 84617 0.5620 +6683 84790 0.5500 +6683 90417 0.6680 +6683 91452 0.4690 +6683 91574 0.4410 +6683 91782 0.8490 +6683 92421 0.6600 +6683 112714 0.5440 +6683 113457 0.5440 +6683 113612 0.4710 +6683 114885 0.4650 +6683 118813 0.9630 +6683 123606 0.9340 +6683 128866 0.6170 +6683 129531 0.5360 +6683 137492 0.4940 +6683 137886 0.4350 +6683 150465 0.4390 +6683 158135 0.4810 +6683 200014 0.6010 +6683 203228 0.4340 +6683 221035 0.4130 +6683 221496 0.6610 +6683 254173 0.4160 +6683 260334 0.5330 +6683 284076 0.5410 +6683 347688 0.5400 +6683 347733 0.5860 +6683 348995 0.7460 +6683 100526767 0.6290 +6687 6742 0.4920 +6687 6834 0.4110 +6687 7284 0.4880 +6687 7386 0.4660 +6687 7416 0.9910 +6687 7417 0.6610 +6687 7419 0.6580 +6687 7466 0.4520 +6687 7827 0.4900 +6687 8192 0.7420 +6687 8225 0.4520 +6687 8558 0.7650 +6687 8624 0.5400 +6687 8803 0.4280 +6687 9093 0.4220 +6687 9179 0.4480 +6687 9197 0.4190 +6687 9349 0.8100 +6687 9361 0.7930 +6687 9399 0.5410 +6687 9420 0.6140 +6687 9512 0.6730 +6687 9533 0.4290 +6687 9553 0.4040 +6687 9669 0.4300 +6687 9801 0.8250 +6687 9804 0.4570 +6687 9858 0.5580 +6687 9895 0.4650 +6687 9897 0.5800 +6687 9907 0.8220 +6687 9927 0.6200 +6687 9990 0.4510 +6687 10059 0.5050 +6687 10102 0.4330 +6687 10105 0.9930 +6687 10269 0.4300 +6687 10367 0.6840 +6687 10440 0.5220 +6687 10452 0.7430 +6687 10531 0.4020 +6687 10717 0.5630 +6687 10730 0.5290 +6687 10749 0.5200 +6687 10845 0.8400 +6687 10908 0.8710 +6687 10939 0.9680 +6687 11128 0.4840 +6687 11154 0.5510 +6687 11160 0.5170 +6687 11222 0.8240 +6687 11224 0.4500 +6687 11232 0.4800 +6687 11331 0.8650 +6687 22948 0.4240 +6687 22984 0.5510 +6687 23064 0.4480 +6687 23111 0.8230 +6687 23203 0.7300 +6687 23204 0.6170 +6687 23259 0.5450 +6687 23277 0.4070 +6687 23431 0.5130 +6687 23503 0.6670 +6687 23521 0.5430 +6687 24140 0.4770 +6687 25813 0.4320 +6687 25923 0.6070 +6687 26519 0.4190 +6687 26580 0.5140 +6687 27132 0.4910 +6687 27429 0.5380 +6687 28998 0.8320 +6687 29093 0.8150 +6687 29123 0.4640 +6687 29796 0.4040 +6687 29960 0.5070 +6687 30968 0.6120 +6687 50484 0.5260 +6687 51001 0.4280 +6687 51021 0.8340 +6687 51023 0.5390 +6687 51024 0.4080 +6687 51062 0.5910 +6687 51069 0.6610 +6687 51073 0.7800 +6687 51081 0.5980 +6687 51116 0.5650 +6687 51149 0.4740 +6687 51154 0.4590 +6687 51248 0.7240 +6687 51264 0.8280 +6687 51308 0.5150 +6687 51324 0.9050 +6687 54059 0.4080 +6687 54205 0.4290 +6687 54332 0.4020 +6687 54802 0.5220 +6687 54948 0.8060 +6687 55013 0.6330 +6687 55052 0.5860 +6687 55129 0.4730 +6687 55149 0.5050 +6687 55157 0.5300 +6687 55168 0.5470 +6687 55173 0.5220 +6687 55272 0.5250 +6687 55316 0.5010 +6687 55486 0.6850 +6687 55527 0.4980 +6687 55669 0.5080 +6687 56652 0.5240 +6687 56952 0.6270 +6687 57165 0.7860 +6687 57506 0.5320 +6687 57679 0.4410 +6687 57704 0.6080 +6687 60558 0.5220 +6687 63875 0.8180 +6687 63931 0.8320 +6687 64225 0.6160 +6687 64374 0.5380 +6687 64960 0.7920 +6687 64963 0.8400 +6687 64965 0.7930 +6687 64968 0.4390 +6687 64969 0.6920 +6687 64979 0.8010 +6687 64981 0.4170 +6687 64983 0.4440 +6687 65003 0.5050 +6687 65005 0.6530 +6687 65008 0.5360 +6687 65018 0.4740 +6687 65055 0.6900 +6687 65080 0.4670 +6687 79007 0.4070 +6687 79152 0.6680 +6687 79568 0.8830 +6687 79590 0.5470 +6687 80031 0.6890 +6687 80207 0.6520 +6687 80208 0.9570 +6687 80821 0.5400 +6687 81570 0.4350 +6687 83447 0.7720 +6687 83752 0.6420 +6687 83943 0.4900 +6687 84134 0.6360 +6687 84233 0.6330 +6687 84273 0.4430 +6687 84340 0.4080 +6687 84816 0.4630 +6687 90550 0.6970 +6687 90933 0.8020 +6687 91419 0.4820 +6687 91574 0.6240 +6687 91689 0.7360 +6687 92399 0.6180 +6687 92667 0.4130 +6687 92822 0.7610 +6687 113612 0.5400 +6687 115209 0.7820 +6687 117159 0.5400 +6687 117246 0.4810 +6687 118980 0.6020 +6687 123606 0.6460 +6687 124245 0.4160 +6687 126402 0.5350 +6687 131118 0.4610 +6687 137492 0.4940 +6687 144100 0.7210 +6687 161003 0.4900 +6687 197320 0.4590 +6687 200205 0.4690 +6687 219927 0.6150 +6687 221154 0.6540 +6687 286097 0.5730 +6687 340348 0.7200 +6687 641776 0.4030 +6687 643909 0.4030 +6687 728524 0.4030 +6687 100287932 0.4630 +6687 100526842 0.5070 +6687 100996746 0.4030 +6687 105180390 0.4030 +6687 105180391 0.4030 +6688 6689 0.6170 +6688 6693 0.4630 +6688 6722 0.8340 +6688 6772 0.5910 +6688 6774 0.5600 +6688 6776 0.6990 +6688 6777 0.6580 +6688 6778 0.7350 +6688 6850 0.5210 +6688 6886 0.9430 +6688 6908 0.8380 +6688 6929 0.6680 +6688 6932 0.6340 +6688 7040 0.4590 +6688 7048 0.4750 +6688 7091 0.5170 +6688 7096 0.4850 +6688 7097 0.7030 +6688 7099 0.6540 +6688 7100 0.4130 +6688 7124 0.7540 +6688 7157 0.4950 +6688 7189 0.4200 +6688 7305 0.9330 +6688 7318 0.4550 +6688 7391 0.4070 +6688 7409 0.6070 +6688 7454 0.5500 +6688 7528 0.6170 +6688 7707 0.5320 +6688 7805 0.6190 +6688 7852 0.4110 +6688 7913 0.8210 +6688 7994 0.6930 +6688 8085 0.4270 +6688 8290 0.4480 +6688 8320 0.6260 +6688 8328 0.6220 +6688 8331 0.4990 +6688 8334 0.5000 +6688 8337 0.5910 +6688 8338 0.5890 +6688 8340 0.5090 +6688 8341 0.5190 +6688 8342 0.5140 +6688 8345 0.5130 +6688 8347 0.5180 +6688 8348 0.5150 +6688 8349 0.5960 +6688 8356 0.7110 +6688 8361 0.5940 +6688 8530 0.4350 +6688 8553 0.4250 +6688 8600 0.4930 +6688 8651 0.4730 +6688 8784 0.4410 +6688 8815 0.5170 +6688 8861 0.4580 +6688 8970 0.5100 +6688 9079 0.4200 +6688 9235 0.4170 +6688 9314 0.6510 +6688 9332 0.4160 +6688 9450 0.6330 +6688 9935 0.7410 +6688 9972 0.7280 +6688 10127 0.4410 +6688 10155 0.4200 +6688 10288 0.5330 +6688 10294 0.4240 +6688 10320 0.8640 +6688 10499 0.5700 +6688 10524 0.5130 +6688 10538 0.7260 +6688 10661 0.7140 +6688 10664 0.5840 +6688 10673 0.4140 +6688 10782 0.6300 +6688 10871 0.4440 +6688 10981 0.4450 +6688 11024 0.4450 +6688 11025 0.4750 +6688 11151 0.4810 +6688 11274 0.4140 +6688 11314 0.5320 +6688 22797 0.5430 +6688 22806 0.4360 +6688 22894 0.4330 +6688 23166 0.4210 +6688 23279 0.4390 +6688 23360 0.4510 +6688 23476 0.7120 +6688 23533 0.4030 +6688 23601 0.4020 +6688 23636 0.7140 +6688 25942 0.6850 +6688 27128 0.4760 +6688 29760 0.5130 +6688 29992 0.5260 +6688 30009 0.6850 +6688 50943 0.4660 +6688 51176 0.6750 +6688 51225 0.4810 +6688 51274 0.5050 +6688 51284 0.5200 +6688 51311 0.6310 +6688 51338 0.5510 +6688 53335 0.5130 +6688 53829 0.4340 +6688 54106 0.4610 +6688 54145 0.5090 +6688 54209 0.7350 +6688 54210 0.4160 +6688 54440 0.4430 +6688 54518 0.5590 +6688 54790 0.9190 +6688 55509 0.5090 +6688 55766 0.4990 +6688 55911 0.4300 +6688 57379 0.4260 +6688 57634 0.4350 +6688 57705 0.5650 +6688 58484 0.5450 +6688 60468 0.4040 +6688 63899 0.4310 +6688 63940 0.4260 +6688 64098 0.5050 +6688 64127 0.4690 +6688 64231 0.4990 +6688 64407 0.5330 +6688 64581 0.4190 +6688 64805 0.4610 +6688 64919 0.6680 +6688 79618 0.4340 +6688 79772 0.4020 +6688 79885 0.5480 +6688 80312 0.5610 +6688 81501 0.4460 +6688 83706 0.5060 +6688 84106 0.6120 +6688 85236 0.5140 +6688 91252 0.4850 +6688 94239 0.4990 +6688 117289 0.4250 +6688 122953 0.4600 +6688 124599 0.4310 +6688 126014 0.5130 +6688 128312 0.5110 +6688 138151 0.4680 +6688 140885 0.4810 +6688 146433 0.5650 +6688 146722 0.4890 +6688 161882 0.7260 +6688 171558 0.4400 +6688 201161 0.8800 +6688 219972 0.6570 +6688 255626 0.5110 +6688 338773 0.4650 +6688 440093 0.4470 +6688 440686 0.4470 +6688 474382 0.5430 +6688 653361 0.7830 +6688 653604 0.7110 +6688 102723407 0.4580 +6689 6693 0.5830 +6689 6850 0.5770 +6689 6908 0.4040 +6689 6925 0.5350 +6689 6929 0.4770 +6689 7127 0.4870 +6689 8115 0.5920 +6689 8600 0.5990 +6689 10320 0.5100 +6689 10538 0.6460 +6689 10803 0.4820 +6689 22806 0.7970 +6689 23547 0.4680 +6689 29760 0.5480 +6689 29802 0.5030 +6689 51284 0.4680 +6689 53335 0.6180 +6689 54106 0.4520 +6689 55278 0.4700 +6689 55509 0.4190 +6689 57379 0.4460 +6689 60468 0.5160 +6689 65108 0.4120 +6689 84824 0.5850 +6689 115650 0.7180 +6689 148741 0.4190 +6689 170482 0.4730 +6689 171558 0.4120 +6689 199786 0.6470 +6689 653361 0.6330 +6690 6691 0.8990 +6690 6779 0.4910 +6690 7113 0.6390 +6690 8405 0.5820 +6690 9075 0.5280 +6690 10136 0.4020 +6690 10954 0.4370 +6690 11330 0.9390 +6690 23436 0.6070 +6690 27290 0.4450 +6690 51280 0.5810 +6690 55811 0.5710 +6690 79710 0.4180 +6690 84651 0.4060 +6690 136541 0.9470 +6690 140686 0.4340 +6690 153218 0.5060 +6690 404203 0.4400 +6690 440387 0.8860 +6691 6787 0.4940 +6691 7047 0.4210 +6691 7803 0.4700 +6691 8073 0.4700 +6691 9622 0.5760 +6691 11005 0.4930 +6691 11012 0.4810 +6691 23203 0.6060 +6691 27290 0.6520 +6691 55917 0.4200 +6691 81833 0.5070 +6691 84225 0.4740 +6691 85369 0.4030 +6691 136242 0.4190 +6691 153218 0.6290 +6691 254552 0.5040 +6691 404203 0.5170 +6691 408187 0.4060 +6691 643394 0.5230 +6692 6768 0.9980 +6692 7113 0.4900 +6692 8446 0.4180 +6692 9407 0.4580 +6692 9622 0.5260 +6692 10006 0.4090 +6692 10053 0.4760 +6692 10152 0.4240 +6692 10653 0.5040 +6692 11005 0.5480 +6692 25818 0.4060 +6692 27134 0.5750 +6692 28983 0.4510 +6692 29781 0.4080 +6692 54845 0.5420 +6692 56649 0.5000 +6692 57111 0.6240 +6692 58495 0.4840 +6692 58500 0.5910 +6692 84000 0.6890 +6692 84671 0.5030 +6692 126695 0.4940 +6692 164656 0.4360 +6692 286077 0.4010 +6692 360226 0.4520 +6692 440387 0.6380 +6693 6850 0.4590 +6693 6929 0.4180 +6693 7037 0.6840 +6693 7070 0.5120 +6693 7072 0.5320 +6693 7094 0.5360 +6693 7124 0.5160 +6693 7409 0.6780 +6693 7412 0.5710 +6693 7430 0.9740 +6693 7441 0.5670 +6693 7450 0.4790 +6693 7454 0.4140 +6693 7535 0.4960 +6693 7852 0.4690 +6693 8531 0.5570 +6693 8639 0.6180 +6693 8763 0.4940 +6693 8832 0.4170 +6693 8891 0.4260 +6693 9332 0.4240 +6693 9351 0.4450 +6693 9368 0.4440 +6693 9437 0.4070 +6693 10113 0.4100 +6693 10219 0.6350 +6693 10320 0.5320 +6693 10565 0.4240 +6693 10673 0.5330 +6693 22914 0.4310 +6693 22918 0.6610 +6693 23405 0.4510 +6693 23759 0.4040 +6693 27087 0.4180 +6693 29760 0.5880 +6693 30009 0.4520 +6693 30816 0.5540 +6693 50943 0.4780 +6693 51696 0.5190 +6693 51744 0.4230 +6693 57379 0.5240 +6693 83660 0.5360 +6693 84868 0.5460 +6693 89792 0.5970 +6693 114836 0.5240 +6693 115650 0.4620 +6693 124460 0.4150 +6693 151888 0.4990 +6693 201633 0.4790 +6693 339145 0.4120 +6693 405754 0.5480 +6693 100133941 0.6540 +6693 100423062 0.5680 +6693 102723407 0.7470 +6694 7123 0.5990 +6694 7276 0.4290 +6694 8858 0.4110 +6694 10447 0.4080 +6694 26998 0.4020 +6694 27329 0.4810 +6694 51056 0.4070 +6694 51727 0.4390 +6694 54757 0.4370 +6694 55664 0.7190 +6694 55937 0.6200 +6694 56975 0.6300 +6694 79603 0.4180 +6694 81494 0.4020 +6694 202018 0.5200 +6695 7038 0.7240 +6695 7058 0.4760 +6695 8140 0.4210 +6695 8404 0.5800 +6695 9557 0.4960 +6695 9780 0.4080 +6695 10226 0.4040 +6695 10468 0.7770 +6695 11167 0.4330 +6695 23229 0.4800 +6695 63827 0.4150 +6695 64093 0.5150 +6695 64094 0.4130 +6695 400120 0.4230 +6696 6714 0.5360 +6696 6772 0.5250 +6696 6774 0.5380 +6696 6779 0.5750 +6696 6876 0.5840 +6696 7010 0.6200 +6696 7039 0.6300 +6696 7040 0.7160 +6696 7042 0.5110 +6696 7043 0.4890 +6696 7052 0.5890 +6696 7057 0.7310 +6696 7058 0.7260 +6696 7059 0.5010 +6696 7060 0.5930 +6696 7070 0.6240 +6696 7076 0.7810 +6696 7077 0.5270 +6696 7094 0.5290 +6696 7097 0.4400 +6696 7099 0.4900 +6696 7124 0.6670 +6696 7132 0.5480 +6696 7157 0.6260 +6696 7187 0.8810 +6696 7276 0.5170 +6696 7356 0.4630 +6696 7369 0.7960 +6696 7412 0.7460 +6696 7414 0.4710 +6696 7430 0.5530 +6696 7431 0.6070 +6696 7448 0.9640 +6696 7450 0.8070 +6696 7474 0.4110 +6696 7837 0.6090 +6696 7852 0.7530 +6696 8038 0.4360 +6696 8074 0.6190 +6696 8190 0.5390 +6696 8404 0.4180 +6696 8515 0.6950 +6696 8516 0.9040 +6696 8600 0.7690 +6696 8792 0.4650 +6696 8817 0.5420 +6696 8822 0.5200 +6696 8823 0.5180 +6696 8842 0.4500 +6696 9179 0.9460 +6696 9241 0.4250 +6696 9313 0.4630 +6696 9332 0.4610 +6696 9365 0.4830 +6696 9370 0.5290 +6696 9518 0.5110 +6696 9622 0.5150 +6696 10117 0.5050 +6696 10232 0.5430 +6696 10418 0.5070 +6696 10457 0.5370 +6696 10631 0.7040 +6696 10763 0.4800 +6696 10894 0.6210 +6696 11167 0.6150 +6696 22801 0.7130 +6696 22943 0.5830 +6696 23086 0.4150 +6696 23705 0.5000 +6696 26054 0.4470 +6696 26281 0.5180 +6696 26585 0.4460 +6696 27006 0.5280 +6696 27022 0.4880 +6696 29126 0.5930 +6696 50848 0.4630 +6696 50964 0.6740 +6696 51135 0.5190 +6696 51284 0.5180 +6696 51430 0.4080 +6696 54205 0.5490 +6696 54209 0.4550 +6696 54757 0.6370 +6696 54959 0.4230 +6696 55745 0.5820 +6696 56172 0.4550 +6696 56259 0.5710 +6696 56934 0.5690 +6696 56955 0.9220 +6696 56975 0.8810 +6696 79923 0.4760 +6696 83660 0.5320 +6696 89780 0.4180 +6696 90865 0.4090 +6696 94233 0.4060 +6696 121340 0.8260 +6696 131149 0.4650 +6696 131873 0.4160 +6696 137902 0.6030 +6696 255743 0.4480 +6696 375790 0.4600 +6696 401138 0.4970 +6696 729330 0.5060 +6696 752014 0.4790 +6696 100133941 0.4090 +6697 7054 0.9690 +6697 7166 0.9480 +6697 8564 0.4640 +6697 8644 0.9200 +6697 8942 0.5260 +6697 10063 0.4660 +6697 22901 0.4060 +6697 27349 0.4160 +6697 27429 0.5450 +6697 51013 0.4130 +6697 51119 0.4250 +6697 51167 0.4780 +6697 51506 0.4220 +6697 54995 0.4620 +6697 57016 0.9150 +6697 79154 0.6040 +6697 83875 0.4050 +6697 84105 0.4220 +6697 84693 0.9410 +6697 112812 0.4710 +6697 121278 0.9470 +6697 150572 0.4610 +6697 166785 0.6490 +6697 200895 0.9850 +6697 254158 0.4730 +6697 392636 0.5730 +6698 6699 0.9990 +6698 6700 0.8910 +6698 6701 0.9590 +6698 6703 0.8490 +6698 6704 0.8580 +6698 6705 0.7680 +6698 6706 0.8170 +6698 6707 0.8940 +6698 7051 0.7430 +6698 7062 0.8640 +6698 8502 0.4990 +6698 8796 0.4330 +6698 11005 0.5710 +6698 11187 0.5780 +6698 23581 0.5040 +6698 26239 0.6830 +6698 27076 0.4520 +6698 49860 0.5040 +6698 51458 0.4490 +6698 54544 0.7490 +6698 56300 0.4390 +6698 84518 0.5260 +6698 84648 0.8720 +6698 84651 0.4180 +6698 126638 0.7230 +6698 147409 0.5390 +6698 149018 0.6640 +6698 163778 0.4640 +6698 196374 0.4810 +6698 199834 0.5800 +6698 254910 0.5960 +6698 353131 0.6930 +6698 353132 0.6420 +6698 353133 0.7870 +6698 353134 0.6850 +6698 353135 0.7490 +6698 353137 0.7010 +6698 353139 0.7200 +6698 353140 0.7530 +6698 353141 0.7480 +6698 353142 0.6920 +6698 353143 0.5400 +6698 353144 0.5940 +6698 353145 0.8170 +6698 374897 0.5550 +6698 388533 0.5920 +6698 388698 0.7220 +6698 448835 0.6160 +6698 643161 0.4210 +6699 6700 0.9380 +6699 6701 0.9510 +6699 6703 0.9370 +6699 6704 0.9290 +6699 6705 0.8940 +6699 6706 0.8960 +6699 6707 0.8920 +6699 7051 0.9390 +6699 7053 0.4290 +6699 7062 0.8110 +6699 8502 0.5070 +6699 8796 0.4820 +6699 9635 0.4510 +6699 11005 0.4700 +6699 11187 0.5900 +6699 23581 0.5350 +6699 26239 0.7100 +6699 49860 0.4750 +6699 54544 0.6970 +6699 57822 0.4070 +6699 84518 0.5450 +6699 84648 0.8390 +6699 126638 0.6940 +6699 144568 0.4260 +6699 147409 0.5130 +6699 148979 0.7260 +6699 149018 0.6260 +6699 149708 0.4140 +6699 162239 0.4700 +6699 163778 0.4470 +6699 196374 0.4040 +6699 199834 0.4990 +6699 254910 0.7620 +6699 286887 0.6480 +6699 353131 0.6900 +6699 353132 0.6610 +6699 353133 0.6060 +6699 353134 0.5880 +6699 353135 0.6480 +6699 353137 0.6310 +6699 353139 0.6420 +6699 353140 0.6470 +6699 353141 0.6840 +6699 353142 0.6560 +6699 353143 0.5420 +6699 353144 0.5970 +6699 353145 0.6700 +6699 374897 0.4740 +6699 388533 0.5610 +6699 388698 0.6480 +6699 448835 0.5890 +6700 6701 0.6330 +6700 6703 0.9660 +6700 6704 0.9620 +6700 6705 0.9250 +6700 6706 0.5780 +6700 6707 0.8620 +6700 7051 0.6740 +6700 7062 0.6540 +6700 8502 0.5090 +6700 8609 0.4220 +6700 9314 0.5060 +6700 11187 0.5170 +6700 23581 0.4740 +6700 25833 0.8080 +6700 26239 0.7010 +6700 54544 0.4550 +6700 84518 0.4970 +6700 84648 0.7720 +6700 126638 0.7400 +6700 147409 0.5370 +6700 149018 0.4990 +6700 163778 0.5260 +6700 196374 0.4060 +6700 199834 0.5790 +6700 254910 0.4990 +6700 286887 0.4720 +6700 353131 0.6260 +6700 353132 0.6370 +6700 353133 0.7390 +6700 353134 0.6560 +6700 353135 0.5300 +6700 353137 0.6620 +6700 353139 0.7410 +6700 353140 0.6310 +6700 353141 0.6730 +6700 353142 0.7760 +6700 353143 0.4990 +6700 353144 0.5980 +6700 353145 0.7510 +6700 448835 0.5910 +6701 6703 0.9170 +6701 6704 0.9260 +6701 6705 0.9110 +6701 6706 0.7100 +6701 6707 0.9060 +6701 7051 0.7510 +6701 7053 0.4310 +6701 7062 0.6810 +6701 8502 0.5170 +6701 8609 0.4220 +6701 8796 0.5730 +6701 9314 0.5070 +6701 11187 0.5510 +6701 23581 0.5240 +6701 25833 0.8040 +6701 26085 0.4230 +6701 26239 0.7910 +6701 26525 0.4960 +6701 51458 0.4180 +6701 54544 0.6850 +6701 56300 0.4960 +6701 84518 0.6360 +6701 84648 0.9440 +6701 126638 0.7650 +6701 147409 0.5420 +6701 149018 0.7230 +6701 163778 0.5530 +6701 196374 0.4340 +6701 199834 0.5850 +6701 254910 0.5970 +6701 286887 0.4170 +6701 338324 0.4560 +6701 353131 0.7240 +6701 353132 0.7120 +6701 353133 0.8160 +6701 353134 0.7070 +6701 353135 0.7450 +6701 353137 0.6890 +6701 353139 0.7650 +6701 353140 0.8410 +6701 353141 0.8450 +6701 353142 0.8800 +6701 353143 0.5970 +6701 353144 0.7160 +6701 353145 0.9190 +6701 374897 0.4640 +6701 388533 0.5190 +6701 388698 0.4680 +6701 448835 0.6680 +6703 6704 0.9680 +6703 6705 0.9340 +6703 6706 0.8840 +6703 6707 0.8360 +6703 7051 0.6700 +6703 7062 0.5010 +6703 8502 0.4990 +6703 11187 0.5130 +6703 23581 0.4410 +6703 26239 0.6580 +6703 54544 0.4250 +6703 56300 0.4030 +6703 84518 0.4310 +6703 84648 0.8910 +6703 126638 0.6050 +6703 147409 0.5450 +6703 149018 0.4990 +6703 163778 0.4920 +6703 196374 0.4430 +6703 199834 0.4990 +6703 254910 0.5930 +6703 286887 0.4160 +6703 353131 0.6860 +6703 353132 0.8320 +6703 353133 0.8120 +6703 353134 0.6930 +6703 353135 0.8230 +6703 353137 0.6860 +6703 353139 0.6410 +6703 353140 0.7610 +6703 353141 0.7560 +6703 353142 0.7250 +6703 353143 0.5330 +6703 353144 0.6330 +6703 353145 0.8740 +6703 374454 0.4190 +6703 374897 0.4050 +6703 448835 0.6630 +6703 728358 0.4380 +6704 6705 0.8930 +6704 6706 0.9180 +6704 6707 0.8080 +6704 7051 0.6740 +6704 7062 0.5430 +6704 8502 0.4990 +6704 11187 0.4990 +6704 23581 0.6380 +6704 26239 0.7180 +6704 54544 0.5470 +6704 84518 0.5560 +6704 84648 0.8580 +6704 126638 0.6830 +6704 147409 0.5540 +6704 149018 0.4990 +6704 163778 0.5490 +6704 196374 0.4860 +6704 199834 0.5160 +6704 254910 0.6220 +6704 286887 0.4800 +6704 353131 0.6940 +6704 353132 0.7380 +6704 353133 0.7790 +6704 353134 0.6710 +6704 353135 0.7000 +6704 353137 0.6730 +6704 353139 0.7450 +6704 353140 0.7780 +6704 353141 0.7450 +6704 353142 0.7470 +6704 353143 0.5110 +6704 353144 0.6760 +6704 353145 0.8620 +6704 374897 0.4780 +6704 388533 0.5090 +6704 448834 0.4200 +6704 448835 0.7010 +6705 6706 0.8950 +6705 6707 0.7550 +6705 7051 0.5840 +6705 7062 0.6390 +6705 8502 0.4990 +6705 11187 0.5220 +6705 26239 0.6440 +6705 84518 0.4480 +6705 84648 0.7930 +6705 126638 0.5100 +6705 147409 0.5570 +6705 149018 0.4990 +6705 163778 0.4330 +6705 199834 0.4990 +6705 254910 0.4990 +6705 353131 0.6550 +6705 353132 0.5960 +6705 353133 0.6840 +6705 353134 0.6110 +6705 353135 0.5980 +6705 353137 0.5880 +6705 353139 0.6050 +6705 353140 0.6780 +6705 353141 0.6120 +6705 353142 0.6050 +6705 353143 0.5720 +6705 353144 0.5800 +6705 353145 0.7250 +6705 448835 0.6160 +6706 6707 0.7820 +6706 7051 0.6780 +6706 7062 0.5730 +6706 8502 0.4990 +6706 8796 0.4360 +6706 9262 0.4130 +6706 11187 0.5210 +6706 23581 0.4890 +6706 25818 0.4450 +6706 26239 0.8510 +6706 54544 0.5230 +6706 79781 0.4660 +6706 84518 0.5710 +6706 84648 0.9640 +6706 126637 0.4220 +6706 126638 0.7320 +6706 147409 0.5710 +6706 149018 0.5850 +6706 149708 0.4550 +6706 163778 0.5550 +6706 199834 0.5230 +6706 254910 0.6510 +6706 338324 0.5330 +6706 353131 0.7310 +6706 353132 0.8000 +6706 353133 0.7340 +6706 353134 0.7000 +6706 353135 0.6820 +6706 353137 0.6820 +6706 353139 0.7820 +6706 353140 0.8440 +6706 353141 0.8200 +6706 353142 0.7400 +6706 353143 0.4990 +6706 353144 0.7230 +6706 353145 0.8940 +6706 374454 0.4610 +6706 388533 0.6190 +6706 388698 0.4740 +6706 448834 0.5820 +6706 448835 0.7800 +6706 100130361 0.4350 +6706 100132994 0.4470 +6707 6947 0.5350 +6707 7051 0.7080 +6707 7053 0.5990 +6707 7062 0.8430 +6707 8502 0.5170 +6707 8638 0.4280 +6707 8796 0.4630 +6707 9407 0.4010 +6707 9700 0.4160 +6707 11005 0.5060 +6707 11187 0.5610 +6707 23581 0.5070 +6707 25936 0.4140 +6707 26085 0.4120 +6707 26239 0.7010 +6707 49860 0.7220 +6707 54544 0.6940 +6707 84518 0.5870 +6707 84648 0.8410 +6707 84651 0.4410 +6707 126119 0.4290 +6707 126637 0.4590 +6707 126638 0.7040 +6707 132724 0.4830 +6707 147409 0.5690 +6707 149018 0.7230 +6707 163778 0.6830 +6707 196374 0.5050 +6707 199834 0.5710 +6707 254910 0.5000 +6707 259266 0.4170 +6707 286887 0.4650 +6707 353131 0.6640 +6707 353132 0.6390 +6707 353133 0.5030 +6707 353134 0.5980 +6707 353135 0.4990 +6707 353137 0.5960 +6707 353139 0.6140 +6707 353140 0.6330 +6707 353141 0.5800 +6707 353142 0.6630 +6707 353143 0.5470 +6707 353144 0.6160 +6707 353145 0.7480 +6707 374897 0.4230 +6707 388533 0.5020 +6707 388698 0.5060 +6707 448834 0.4690 +6707 448835 0.6490 +6708 6709 0.9060 +6708 6710 0.9990 +6708 6711 0.9810 +6708 6712 0.8690 +6708 6714 0.4550 +6708 6811 0.4990 +6708 6812 0.4450 +6708 7111 0.5360 +6708 7157 0.4500 +6708 7273 0.4930 +6708 7399 0.4470 +6708 8370 0.5130 +6708 8774 0.4990 +6708 8775 0.4990 +6708 9527 0.4990 +6708 9570 0.4990 +6708 9780 0.4780 +6708 9911 0.4650 +6708 10107 0.4880 +6708 10282 0.5030 +6708 10287 0.4010 +6708 10652 0.5110 +6708 10661 0.7030 +6708 11030 0.5530 +6708 11280 0.5130 +6708 23114 0.5140 +6708 23543 0.6660 +6708 26052 0.4070 +6708 27445 0.4710 +6708 29765 0.4330 +6708 51272 0.4990 +6708 51327 0.5560 +6708 51332 0.9570 +6708 51806 0.4660 +6708 53353 0.5800 +6708 54715 0.5570 +6708 55363 0.6670 +6708 55367 0.4970 +6708 55800 0.4990 +6708 57731 0.9550 +6708 63908 0.4990 +6708 79776 0.4740 +6708 84959 0.4240 +6708 89795 0.4720 +6708 91860 0.4640 +6708 94025 0.4850 +6708 114788 0.5260 +6708 120114 0.4780 +6708 126961 0.5960 +6708 129446 0.4590 +6708 146059 0.4490 +6708 163688 0.4640 +6708 222642 0.4570 +6709 6710 0.9890 +6709 6711 0.9990 +6709 6712 0.9590 +6709 6714 0.6900 +6709 6737 0.4190 +6709 6741 0.4830 +6709 6792 0.7150 +6709 6811 0.5040 +6709 6812 0.8920 +6709 6840 0.4460 +6709 6855 0.4640 +6709 7001 0.4760 +6709 7082 0.4590 +6709 7094 0.5290 +6709 7111 0.4470 +6709 7169 0.4830 +6709 7171 0.4920 +6709 7184 0.4780 +6709 7273 0.5630 +6709 7345 0.4890 +6709 7408 0.7440 +6709 7414 0.4640 +6709 7430 0.6550 +6709 7431 0.4350 +6709 7529 0.4600 +6709 7837 0.4810 +6709 8506 0.4120 +6709 8573 0.5590 +6709 8773 0.6270 +6709 8774 0.5040 +6709 8775 0.5040 +6709 8826 0.7530 +6709 9527 0.5170 +6709 9570 0.5380 +6709 9750 0.5360 +6709 9823 0.6530 +6709 9863 0.6560 +6709 9928 0.4350 +6709 10282 0.5030 +6709 10594 0.4940 +6709 10652 0.5040 +6709 11078 0.8540 +6709 11280 0.5080 +6709 11284 0.6840 +6709 11344 0.5000 +6709 22919 0.4950 +6709 22941 0.4730 +6709 23114 0.7050 +6709 23136 0.8310 +6709 23236 0.6160 +6709 23371 0.5890 +6709 23392 0.4540 +6709 25777 0.4540 +6709 25794 0.5010 +6709 25861 0.5030 +6709 26136 0.7270 +6709 27185 0.5990 +6709 29766 0.4020 +6709 29767 0.4220 +6709 50944 0.8120 +6709 51168 0.5070 +6709 51272 0.4990 +6709 51309 0.6500 +6709 51332 0.9680 +6709 51466 0.6170 +6709 51566 0.6690 +6709 51806 0.4680 +6709 53405 0.5070 +6709 53616 0.5210 +6709 53904 0.5360 +6709 54443 0.4680 +6709 54938 0.4290 +6709 55072 0.4360 +6709 55163 0.5000 +6709 55243 0.5400 +6709 55800 0.4990 +6709 57526 0.7890 +6709 57554 0.4750 +6709 57575 0.7140 +6709 57582 0.5100 +6709 57731 0.9670 +6709 58480 0.5560 +6709 63908 0.5110 +6709 64787 0.5120 +6709 79751 0.7820 +6709 79968 0.5150 +6709 81858 0.5140 +6709 83660 0.4250 +6709 83715 0.5010 +6709 85358 0.4580 +6709 91607 0.4200 +6709 91860 0.5970 +6709 129446 0.8060 +6709 137902 0.4740 +6709 140469 0.5360 +6709 163688 0.5970 +6709 170302 0.7340 +6709 171177 0.5680 +6709 286262 0.5630 +6709 339768 0.5000 +6709 375790 0.4080 +6709 389207 0.4990 +6709 494513 0.8010 +6709 643226 0.4990 +6710 6711 0.7330 +6710 6712 0.7440 +6710 6714 0.4460 +6710 6811 0.4990 +6710 7111 0.4760 +6710 7170 0.7530 +6710 8671 0.4080 +6710 8774 0.5010 +6710 8775 0.5520 +6710 9527 0.4990 +6710 9570 0.4990 +6710 9826 0.5990 +6710 10282 0.4990 +6710 10652 0.4990 +6710 11280 0.5090 +6710 23114 0.6740 +6710 26499 0.4820 +6710 26526 0.5830 +6710 29984 0.4420 +6710 51272 0.4990 +6710 51332 0.7490 +6710 55800 0.5220 +6710 57731 0.7510 +6710 63908 0.5690 +6710 282808 0.4360 +6711 6712 0.7380 +6711 6714 0.4600 +6711 6776 0.5070 +6711 6777 0.5030 +6711 6811 0.5010 +6711 6840 0.4210 +6711 7430 0.6780 +6711 7750 0.5190 +6711 8506 0.7000 +6711 8573 0.5590 +6711 8663 0.5990 +6711 8774 0.5060 +6711 8775 0.5260 +6711 8826 0.6680 +6711 9146 0.5760 +6711 9321 0.5990 +6711 9368 0.4450 +6711 9397 0.4130 +6711 9527 0.5210 +6711 9570 0.5040 +6711 9750 0.5640 +6711 9826 0.4970 +6711 9846 0.5010 +6711 9863 0.6060 +6711 9923 0.5100 +6711 10282 0.5060 +6711 10551 0.5010 +6711 10652 0.5120 +6711 10752 0.5270 +6711 11078 0.8490 +6711 11159 0.4250 +6711 11214 0.4420 +6711 11280 0.5140 +6711 11344 0.5100 +6711 23114 0.7990 +6711 23136 0.8940 +6711 23310 0.4620 +6711 25794 0.5520 +6711 25861 0.5340 +6711 26499 0.5440 +6711 27185 0.5750 +6711 29903 0.4440 +6711 51164 0.4950 +6711 51168 0.5500 +6711 51272 0.5310 +6711 51332 0.8310 +6711 51806 0.5190 +6711 53405 0.5550 +6711 53616 0.5550 +6711 53904 0.5560 +6711 54443 0.4900 +6711 55243 0.5290 +6711 55308 0.4580 +6711 55800 0.4990 +6711 55930 0.4400 +6711 57731 0.7350 +6711 58480 0.5540 +6711 63908 0.5250 +6711 64219 0.4640 +6711 64787 0.5340 +6711 79968 0.5600 +6711 83715 0.5500 +6711 83930 0.4040 +6711 91860 0.5110 +6711 94274 0.5640 +6711 125228 0.4930 +6711 129446 0.8120 +6711 140469 0.5450 +6711 140731 0.4730 +6711 144100 0.4700 +6711 157922 0.5970 +6711 163688 0.5110 +6711 171177 0.5660 +6711 286262 0.5640 +6711 339768 0.5450 +6711 389207 0.5070 +6711 399687 0.6810 +6711 494513 0.8020 +6711 642574 0.4730 +6711 643226 0.5190 +6712 6714 0.4770 +6712 6811 0.5040 +6712 8490 0.4340 +6712 8601 0.4410 +6712 8774 0.5000 +6712 8775 0.5590 +6712 8786 0.4620 +6712 9138 0.4260 +6712 9527 0.5030 +6712 9570 0.5570 +6712 9628 0.4380 +6712 9640 0.8180 +6712 9826 0.8920 +6712 9928 0.5910 +6712 10121 0.5280 +6712 10282 0.5040 +6712 10287 0.4380 +6712 10528 0.4320 +6712 10652 0.5010 +6712 10939 0.6220 +6712 11280 0.5380 +6712 23064 0.4090 +6712 23114 0.6550 +6712 23352 0.4720 +6712 23363 0.5860 +6712 25814 0.9240 +6712 25894 0.8810 +6712 26575 0.4430 +6712 51272 0.4990 +6712 51332 0.9180 +6712 51430 0.4050 +6712 55129 0.4060 +6712 55157 0.4290 +6712 55201 0.5120 +6712 55800 0.5000 +6712 57731 0.9140 +6712 63908 0.5630 +6712 64407 0.4320 +6712 85397 0.4600 +6712 146057 0.8760 +6712 146227 0.4180 +6712 339453 0.4980 +6712 343641 0.4690 +6712 431704 0.4330 +6713 6720 0.8220 +6713 6721 0.8920 +6713 6898 0.4130 +6713 7108 0.9690 +6713 7276 0.7210 +6713 7386 0.4240 +6713 7915 0.4840 +6713 8309 0.4040 +6713 8435 0.4910 +6713 8529 0.4950 +6713 8942 0.8180 +6713 9023 0.9710 +6713 9415 0.5350 +6713 9420 0.8080 +6713 9453 0.7870 +6713 9607 0.4080 +6713 9619 0.4800 +6713 10280 0.9740 +6713 10299 0.8940 +6713 10449 0.5000 +6713 10654 0.7530 +6713 10682 0.6970 +6713 10826 0.9490 +6713 10858 0.6940 +6713 11161 0.7100 +6713 11236 0.4490 +6713 11283 0.4950 +6713 22937 0.5480 +6713 23197 0.5250 +6713 23498 0.4150 +6713 23623 0.4430 +6713 23761 0.4390 +6713 27235 0.7950 +6713 27430 0.7050 +6713 29116 0.4070 +6713 29968 0.4280 +6713 50814 0.9820 +6713 51031 0.4340 +6713 51109 0.5230 +6713 51141 0.4770 +6713 51167 0.5040 +6713 51302 0.7510 +6713 51478 0.8540 +6713 51805 0.8100 +6713 55034 0.4060 +6713 55902 0.6040 +6713 56603 0.5760 +6713 57404 0.4950 +6713 57552 0.4950 +6713 57834 0.4950 +6713 60481 0.4620 +6713 64240 0.4480 +6713 64241 0.4110 +6713 65985 0.6120 +6713 66002 0.4950 +6713 79071 0.5040 +6713 79139 0.4100 +6713 79152 0.4110 +6713 79966 0.4150 +6713 80221 0.5450 +6713 80270 0.8190 +6713 80777 0.5970 +6713 84274 0.4570 +6713 84532 0.4640 +6713 84693 0.4340 +6713 84706 0.4100 +6713 91734 0.8760 +6713 93517 0.8000 +6713 112812 0.5610 +6713 123099 0.4030 +6713 126410 0.4950 +6713 130013 0.4300 +6713 132949 0.4710 +6713 134429 0.5710 +6713 137209 0.4270 +6713 137682 0.5620 +6713 149371 0.4340 +6713 153830 0.4170 +6713 199974 0.4950 +6713 260293 0.4950 +6713 284541 0.4950 +6713 285440 0.5360 +6713 340390 0.5420 +6713 347475 0.7080 +6713 440335 0.8640 +6714 6722 0.6120 +6714 6750 0.6750 +6714 6751 0.5430 +6714 6752 0.5720 +6714 6753 0.5330 +6714 6754 0.5200 +6714 6755 0.5350 +6714 6769 0.5840 +6714 6772 0.9360 +6714 6773 0.5340 +6714 6774 0.9990 +6714 6775 0.4410 +6714 6776 0.9000 +6714 6777 0.9000 +6714 6778 0.5730 +6714 6786 0.4470 +6714 6794 0.5500 +6714 6801 0.9130 +6714 6839 0.4680 +6714 6850 0.9990 +6714 6853 0.6680 +6714 6854 0.4340 +6714 6863 0.6270 +6714 6868 0.6320 +6714 6869 0.5580 +6714 7015 0.4120 +6714 7037 0.4090 +6714 7039 0.7310 +6714 7040 0.7870 +6714 7041 0.6440 +6714 7042 0.6740 +6714 7043 0.4080 +6714 7048 0.8540 +6714 7052 0.4460 +6714 7054 0.5180 +6714 7057 0.5160 +6714 7068 0.4060 +6714 7074 0.7480 +6714 7077 0.5950 +6714 7082 0.9880 +6714 7094 0.9990 +6714 7097 0.6970 +6714 7098 0.7550 +6714 7099 0.8800 +6714 7124 0.9040 +6714 7132 0.9340 +6714 7145 0.7830 +6714 7157 0.8840 +6714 7184 0.4100 +6714 7185 0.6490 +6714 7187 0.8230 +6714 7189 0.9960 +6714 7204 0.5660 +6714 7205 0.5100 +6714 7225 0.7200 +6714 7249 0.6600 +6714 7252 0.5090 +6714 7253 0.5690 +6714 7291 0.5060 +6714 7295 0.4470 +6714 7297 0.5240 +6714 7305 0.8430 +6714 7311 0.5640 +6714 7314 0.7070 +6714 7316 0.6000 +6714 7408 0.7270 +6714 7409 0.8720 +6714 7410 0.7960 +6714 7412 0.5510 +6714 7414 0.9970 +6714 7424 0.4690 +6714 7430 0.6370 +6714 7432 0.5830 +6714 7433 0.5790 +6714 7434 0.5470 +6714 7442 0.9340 +6714 7448 0.7330 +6714 7450 0.6760 +6714 7454 0.9870 +6714 7456 0.6480 +6714 7471 0.4070 +6714 7474 0.4310 +6714 7514 0.4070 +6714 7525 0.9730 +6714 7529 0.8190 +6714 7531 0.5290 +6714 7534 0.6550 +6714 7535 0.6290 +6714 7545 0.4250 +6714 7706 0.4090 +6714 7767 0.4090 +6714 7791 0.8560 +6714 7804 0.4130 +6714 7837 0.6750 +6714 7852 0.8640 +6714 7867 0.5930 +6714 8038 0.6500 +6714 8061 0.4080 +6714 8087 0.5810 +6714 8165 0.6860 +6714 8202 0.9750 +6714 8290 0.4860 +6714 8312 0.5170 +6714 8356 0.4860 +6714 8399 0.4730 +6714 8411 0.4530 +6714 8412 0.6210 +6714 8431 0.7550 +6714 8440 0.7350 +6714 8450 0.5150 +6714 8484 0.5050 +6714 8503 0.9610 +6714 8506 0.4340 +6714 8515 0.6970 +6714 8516 0.7040 +6714 8517 0.8070 +6714 8546 0.5290 +6714 8563 0.8030 +6714 8600 0.8760 +6714 8631 0.8040 +6714 8633 0.9160 +6714 8648 0.6720 +6714 8651 0.6850 +6714 8660 0.7920 +6714 8661 0.4540 +6714 8678 0.4660 +6714 8698 0.5540 +6714 8720 0.4680 +6714 8751 0.8850 +6714 8766 0.5490 +6714 8772 0.4020 +6714 8777 0.4300 +6714 8805 0.5740 +6714 8811 0.5140 +6714 8817 0.5150 +6714 8822 0.5150 +6714 8823 0.5320 +6714 8826 0.9480 +6714 8829 0.5920 +6714 8835 0.5700 +6714 8837 0.4020 +6714 8841 0.6480 +6714 8842 0.6030 +6714 8843 0.4990 +6714 8844 0.6980 +6714 8853 0.4660 +6714 8862 0.5820 +6714 8874 0.9910 +6714 8877 0.4590 +6714 8878 0.6240 +6714 8898 0.5270 +6714 8900 0.5640 +6714 8932 0.4670 +6714 8935 0.6400 +6714 8936 0.6720 +6714 8976 0.9270 +6714 8988 0.6650 +6714 9019 0.4510 +6714 9021 0.6050 +6714 9038 0.5030 +6714 9046 0.5870 +6714 9047 0.9710 +6714 9048 0.6340 +6714 9049 0.9290 +6714 9061 0.5050 +6714 9076 0.5900 +6714 9094 0.5140 +6714 9095 0.4230 +6714 9101 0.4150 +6714 9113 0.4570 +6714 9170 0.6030 +6714 9181 0.4450 +6714 9185 0.4490 +6714 9212 0.4820 +6714 9229 0.5700 +6714 9261 0.6160 +6714 9283 0.5000 +6714 9287 0.5030 +6714 9290 0.5430 +6714 9294 0.6990 +6714 9314 0.4620 +6714 9322 0.4670 +6714 9340 0.5030 +6714 9397 0.4260 +6714 9402 0.9090 +6714 9414 0.4280 +6714 9423 0.7500 +6714 9429 0.4370 +6714 9444 0.5630 +6714 9467 0.5760 +6714 9474 0.4020 +6714 9475 0.6100 +6714 9479 0.5780 +6714 9542 0.5270 +6714 9560 0.5350 +6714 9563 0.5590 +6714 9564 0.9990 +6714 9568 0.5400 +6714 9590 0.7030 +6714 9610 0.4710 +6714 9630 0.5530 +6714 9644 0.8890 +6714 9672 0.8730 +6714 9715 0.5000 +6714 9815 0.9340 +6714 9817 0.4060 +6714 9839 0.4100 +6714 9844 0.9280 +6714 9846 0.8960 +6714 9855 0.9100 +6714 9934 0.5400 +6714 10000 0.6470 +6714 10006 0.8780 +6714 10013 0.4140 +6714 10015 0.7620 +6714 10018 0.7480 +6714 10019 0.4070 +6714 10022 0.4990 +6714 10040 0.4630 +6714 10044 0.7110 +6714 10097 0.4480 +6714 10125 0.5850 +6714 10142 0.6190 +6714 10146 0.5470 +6714 10152 0.6100 +6714 10156 0.5170 +6714 10163 0.7040 +6714 10188 0.7860 +6714 10203 0.7200 +6714 10253 0.5190 +6714 10256 0.5400 +6714 10266 0.5700 +6714 10267 0.5190 +6714 10268 0.5170 +6714 10273 0.5650 +6714 10278 0.5220 +6714 10312 0.4740 +6714 10316 0.4990 +6714 10395 0.5260 +6714 10398 0.6950 +6714 10399 0.9930 +6714 10411 0.4110 +6714 10413 0.9510 +6714 10422 0.5070 +6714 10451 0.8700 +6714 10454 0.6190 +6714 10458 0.7300 +6714 10498 0.9570 +6714 10499 0.4270 +6714 10501 0.6120 +6714 10519 0.5770 +6714 10533 0.6780 +6714 10563 0.6260 +6714 10575 0.4690 +6714 10580 0.4280 +6714 10587 0.5430 +6714 10603 0.6550 +6714 10627 0.5700 +6714 10628 0.5720 +6714 10657 0.9930 +6714 10663 0.5890 +6714 10672 0.9580 +6714 10681 0.5980 +6714 10718 0.4520 +6714 10746 0.9150 +6714 10755 0.5080 +6714 10787 0.5950 +6714 10803 0.5700 +6714 10810 0.6040 +6714 10818 0.8710 +6714 10827 0.5160 +6714 10850 0.5160 +6714 10855 0.5320 +6714 10874 0.5760 +6714 10888 0.4990 +6714 10891 0.5490 +6714 10949 0.4250 +6714 10979 0.5950 +6714 11044 0.5100 +6714 11065 0.4170 +6714 11099 0.8130 +6714 11140 0.8990 +6714 11245 0.4990 +6714 11250 0.5000 +6714 11251 0.5210 +6714 22801 0.6970 +6714 22866 0.4970 +6714 22885 0.5100 +6714 22906 0.5270 +6714 22914 0.5460 +6714 22919 0.6130 +6714 22920 0.4660 +6714 22924 0.5560 +6714 22941 0.5950 +6714 23022 0.7060 +6714 23048 0.5570 +6714 23054 0.5430 +6714 23112 0.5350 +6714 23118 0.6190 +6714 23162 0.4340 +6714 23164 0.5500 +6714 23191 0.5680 +6714 23210 0.4240 +6714 23229 0.5680 +6714 23237 0.4510 +6714 23328 0.5130 +6714 23371 0.7550 +6714 23396 0.4670 +6714 23411 0.4540 +6714 23500 0.4420 +6714 23513 0.6560 +6714 23533 0.9280 +6714 23558 0.4380 +6714 23566 0.5830 +6714 23586 0.5360 +6714 23607 0.6210 +6714 23624 0.9790 +6714 23677 0.5730 +6714 24145 0.6620 +6714 25759 0.9610 +6714 25791 0.6210 +6714 25796 0.4520 +6714 25930 0.5400 +6714 25970 0.4300 +6714 25998 0.4480 +6714 26060 0.9740 +6714 26191 0.6130 +6714 26281 0.5300 +6714 26499 0.8680 +6714 26523 0.5790 +6714 26524 0.5910 +6714 26578 0.6440 +6714 26999 0.7340 +6714 27006 0.5490 +6714 27035 0.6790 +6714 27040 0.6100 +6714 27043 0.8310 +6714 27044 0.5260 +6714 27111 0.5480 +6714 27161 0.6400 +6714 27181 0.4830 +6714 27198 0.5200 +6714 27199 0.4990 +6714 27327 0.5400 +6714 27352 0.4610 +6714 28964 0.7330 +6714 29110 0.6540 +6714 29126 0.5450 +6714 29760 0.6860 +6714 29941 0.6560 +6714 29984 0.8100 +6714 30011 0.7360 +6714 30816 0.4060 +6714 50507 0.6990 +6714 50618 0.4980 +6714 50807 0.9760 +6714 50831 0.4990 +6714 50832 0.4990 +6714 50833 0.4990 +6714 50834 0.4990 +6714 50835 0.4990 +6714 50836 0.4990 +6714 50837 0.4990 +6714 50838 0.4990 +6714 50839 0.4990 +6714 50840 0.4990 +6714 50848 0.4240 +6714 50865 0.5050 +6714 50943 0.4010 +6714 51083 0.5380 +6714 51094 0.8380 +6714 51206 0.5800 +6714 51266 0.4320 +6714 51286 0.5050 +6714 51289 0.5010 +6714 51332 0.4570 +6714 51429 0.6640 +6714 51435 0.4610 +6714 51466 0.7310 +6714 51517 0.6690 +6714 51547 0.4630 +6714 51738 0.4780 +6714 51764 0.5420 +6714 51773 0.6910 +6714 51806 0.9270 +6714 53358 0.9630 +6714 53637 0.5530 +6714 53829 0.5400 +6714 53831 0.5200 +6714 53905 0.4250 +6714 54106 0.6040 +6714 54205 0.5670 +6714 54206 0.6290 +6714 54331 0.5150 +6714 54429 0.4990 +6714 54431 0.4010 +6714 54443 0.4230 +6714 54518 0.7570 +6714 54583 0.4280 +6714 54751 0.5270 +6714 54756 0.5260 +6714 54845 0.5710 +6714 54997 0.4490 +6714 55024 0.4660 +6714 55109 0.5190 +6714 55124 0.6280 +6714 55294 0.4780 +6714 55353 0.4140 +6714 55503 0.5140 +6714 55660 0.4460 +6714 55715 0.6130 +6714 55750 0.5520 +6714 55816 0.4520 +6714 55821 0.4290 +6714 55824 0.8800 +6714 55845 0.5970 +6714 55970 0.5080 +6714 56477 0.5310 +6714 56670 0.5190 +6714 56829 0.5310 +6714 56923 0.5150 +6714 56980 0.4620 +6714 57007 0.5830 +6714 57085 0.5000 +6714 57105 0.5380 +6714 57121 0.5550 +6714 57506 0.6390 +6714 57554 0.4730 +6714 57670 0.5530 +6714 57731 0.4430 +6714 58191 0.7340 +6714 58480 0.8270 +6714 59272 0.5620 +6714 59340 0.5270 +6714 59341 0.8220 +6714 59345 0.5800 +6714 59350 0.5570 +6714 60312 0.9650 +6714 63916 0.6080 +6714 64096 0.5730 +6714 64170 0.4200 +6714 64221 0.4700 +6714 64321 0.4620 +6714 64398 0.5840 +6714 64581 0.8820 +6714 64759 0.8170 +6714 64805 0.6440 +6714 64866 0.9420 +6714 79056 0.6250 +6714 79156 0.4890 +6714 79628 0.4420 +6714 79784 0.5470 +6714 79801 0.4630 +6714 79872 0.7570 +6714 79923 0.4300 +6714 79924 0.5300 +6714 80005 0.5300 +6714 80306 0.5630 +6714 80380 0.4060 +6714 80725 0.7470 +6714 80834 0.5450 +6714 80835 0.5470 +6714 80853 0.5150 +6714 81501 0.4080 +6714 81624 0.6300 +6714 81631 0.6910 +6714 81669 0.5780 +6714 81704 0.4270 +6714 81786 0.4220 +6714 83551 0.4990 +6714 83660 0.9990 +6714 83715 0.4640 +6714 83756 0.5510 +6714 84260 0.4650 +6714 84335 0.4050 +6714 84448 0.5000 +6714 84539 0.4990 +6714 84632 0.6710 +6714 84662 0.4090 +6714 84705 0.4030 +6714 84708 0.4490 +6714 84747 0.4700 +6714 84951 0.7460 +6714 85358 0.4370 +6714 85376 0.4930 +6714 85477 0.6570 +6714 90249 0.9160 +6714 91010 0.4120 +6714 91860 0.9270 +6714 93974 0.4620 +6714 94235 0.5040 +6714 103910 0.6850 +6714 113091 0.4990 +6714 114548 0.5300 +6714 114793 0.4400 +6714 114836 0.5540 +6714 117157 0.5080 +6714 117579 0.5050 +6714 122042 0.5430 +6714 122809 0.4140 +6714 122876 0.5040 +6714 129521 0.4990 +6714 133482 0.8680 +6714 133522 0.4130 +6714 134860 0.5030 +6714 134864 0.5170 +6714 137902 0.6750 +6714 137970 0.9100 +6714 139341 0.9330 +6714 139716 0.7200 +6714 140885 0.7130 +6714 145957 0.4690 +6714 146433 0.5750 +6714 146691 0.4500 +6714 146850 0.9050 +6714 149233 0.4350 +6714 150221 0.4930 +6714 151306 0.5870 +6714 157310 0.5470 +6714 160622 0.5770 +6714 161882 0.4380 +6714 163688 0.9270 +6714 165140 0.5140 +6714 170589 0.5610 +6714 192669 0.5490 +6714 192670 0.5390 +6714 219699 0.9270 +6714 225689 0.5310 +6714 253260 0.6110 +6714 255324 0.5270 +6714 255738 0.4090 +6714 256933 0.4990 +6714 259285 0.4990 +6714 259286 0.4990 +6714 259287 0.4990 +6714 259289 0.4990 +6714 259290 0.4990 +6714 259292 0.4990 +6714 259293 0.4990 +6714 259294 0.4990 +6714 259295 0.4990 +6714 259296 0.4990 +6714 283869 0.4990 +6714 285175 0.4090 +6714 285590 0.8160 +6714 285601 0.5590 +6714 319100 0.4990 +6714 338398 0.5010 +6714 338442 0.5400 +6714 339403 0.4990 +6714 345456 0.6330 +6714 346562 0.5340 +6714 353164 0.4990 +6714 375033 0.4780 +6714 375189 0.6510 +6714 375790 0.4400 +6714 387129 0.5190 +6714 390714 0.4480 +6714 399694 0.9290 +6714 440093 0.4860 +6714 440686 0.4860 +6714 440804 0.4930 +6714 594857 0.4990 +6714 653361 0.9050 +6714 653604 0.4860 +6714 728378 0.5570 +6714 100133941 0.7510 +6714 100506658 0.9520 +6715 6716 0.9350 +6715 6718 0.9880 +6715 6770 0.7450 +6715 6783 0.4290 +6715 6822 0.7530 +6715 7363 0.7430 +6715 7364 0.7360 +6715 7365 0.7200 +6715 7366 0.8050 +6715 7367 0.7750 +6715 7923 0.9220 +6715 8608 0.4010 +6715 8630 0.9760 +6715 8644 0.9860 +6715 9060 0.4250 +6715 9563 0.7200 +6715 10170 0.5260 +6715 10468 0.4290 +6715 10720 0.7280 +6715 11044 0.4880 +6715 11132 0.5780 +6715 50834 0.4340 +6715 51478 0.4180 +6715 54490 0.7260 +6715 54575 0.7200 +6715 54576 0.7180 +6715 54577 0.7260 +6715 54578 0.7270 +6715 54579 0.7260 +6715 54600 0.7120 +6715 54657 0.7170 +6715 54658 0.7200 +6715 54659 0.7200 +6715 54888 0.4680 +6715 79154 0.6150 +6715 79644 0.9960 +6715 79799 0.7110 +6715 84467 0.6780 +6715 253017 0.8340 +6715 574537 0.7180 +6716 6718 0.9570 +6716 6736 0.5250 +6716 6770 0.6470 +6716 6822 0.7130 +6716 7113 0.6980 +6716 7363 0.7120 +6716 7364 0.7150 +6716 7365 0.6950 +6716 7366 0.7920 +6716 7367 0.7570 +6716 7923 0.9190 +6716 8630 0.9530 +6716 8644 0.9690 +6716 8895 0.4560 +6716 9159 0.4290 +6716 9563 0.4680 +6716 10046 0.7180 +6716 10720 0.7060 +6716 11132 0.4630 +6716 22853 0.4870 +6716 23301 0.4080 +6716 23600 0.4830 +6716 27232 0.5760 +6716 29803 0.5190 +6716 54490 0.7280 +6716 54575 0.6850 +6716 54576 0.6850 +6716 54577 0.6850 +6716 54578 0.6890 +6716 54579 0.6960 +6716 54600 0.6950 +6716 54657 0.6940 +6716 54658 0.6930 +6716 54659 0.7080 +6716 60528 0.6430 +6716 64816 0.4390 +6716 79154 0.5640 +6716 79644 0.9550 +6716 79799 0.6970 +6716 84467 0.5820 +6716 85414 0.4510 +6716 139189 0.4860 +6716 220965 0.6130 +6716 253017 0.5870 +6716 574537 0.6980 +6717 6774 0.6620 +6717 6876 0.4150 +6717 7037 0.4150 +6717 7124 0.5160 +6717 7431 0.4970 +6717 7681 0.4610 +6717 8988 0.4700 +6717 9212 0.6740 +6717 10015 0.6070 +6717 10016 0.5060 +6717 10131 0.6100 +6717 10146 0.4220 +6717 10345 0.9150 +6717 23608 0.4620 +6717 25801 0.5080 +6717 27035 0.4250 +6717 51085 0.5100 +6717 51806 0.8450 +6717 58498 0.4090 +6717 60558 0.4250 +6717 84955 0.6220 +6717 91754 0.6930 +6717 91860 0.8430 +6717 163688 0.8430 +6717 284086 0.7270 +6717 653145 0.5340 +6717 752014 0.4450 +6718 6783 0.4010 +6718 7363 0.9270 +6718 7364 0.9150 +6718 7365 0.9140 +6718 7366 0.9160 +6718 7367 0.9110 +6718 7881 0.6020 +6718 7923 0.9240 +6718 8309 0.5540 +6718 8514 0.5810 +6718 8574 0.6590 +6718 8630 0.9340 +6718 8644 0.9830 +6718 8647 0.6800 +6718 8856 0.4030 +6718 9196 0.6280 +6718 9380 0.4130 +6718 9420 0.5930 +6718 9563 0.7310 +6718 9971 0.5150 +6718 10046 0.5030 +6718 10170 0.4010 +6718 10249 0.7710 +6718 10720 0.9150 +6718 10858 0.4390 +6718 10998 0.5520 +6718 22927 0.4240 +6718 22977 0.6770 +6718 23411 0.4010 +6718 23600 0.8250 +6718 25929 0.4510 +6718 50651 0.4370 +6718 51302 0.4970 +6718 51741 0.4450 +6718 54490 0.9220 +6718 54575 0.9190 +6718 54576 0.9190 +6718 54577 0.9160 +6718 54578 0.9190 +6718 54579 0.9140 +6718 54600 0.9140 +6718 54657 0.9180 +6718 54658 0.9190 +6718 54659 0.9150 +6718 56674 0.4330 +6718 57016 0.4700 +6718 63894 0.4040 +6718 79050 0.4260 +6718 79644 0.9410 +6718 79799 0.9150 +6718 80270 0.9950 +6718 80737 0.4300 +6718 81543 0.4060 +6718 89822 0.4040 +6718 92002 0.4270 +6718 148252 0.5900 +6718 157378 0.4130 +6718 256356 0.4270 +6718 286148 0.4520 +6718 374875 0.9270 +6718 574537 0.9130 +6720 6721 0.9330 +6720 6770 0.7160 +6720 6774 0.5210 +6720 6781 0.4630 +6720 6794 0.6310 +6720 6820 0.5680 +6720 6872 0.4010 +6720 6927 0.4440 +6720 7019 0.4310 +6720 7040 0.4350 +6720 7068 0.5550 +6720 7069 0.5900 +6720 7099 0.4870 +6720 7108 0.6420 +6720 7124 0.6080 +6720 7157 0.8010 +6720 7249 0.5270 +6720 7329 0.4240 +6720 7350 0.7470 +6720 7351 0.8480 +6720 7352 0.4790 +6720 7376 0.8840 +6720 7391 0.5730 +6720 7392 0.4940 +6720 7436 0.5290 +6720 7494 0.5930 +6720 7528 0.5430 +6720 7547 0.4110 +6720 7837 0.5200 +6720 8204 0.6370 +6720 8228 0.4840 +6720 8310 0.6580 +6720 8408 0.4150 +6720 8409 0.4470 +6720 8431 0.6470 +6720 8647 0.4840 +6720 8660 0.7960 +6720 8694 0.7790 +6720 8720 0.8850 +6720 8788 0.6090 +6720 8856 0.5210 +6720 9021 0.4640 +6720 9023 0.4310 +6720 9213 0.8560 +6720 9282 0.6950 +6720 9370 0.7620 +6720 9415 0.6620 +6720 9420 0.4250 +6720 9439 0.6490 +6720 9440 0.5710 +6720 9441 0.6560 +6720 9443 0.5320 +6720 9453 0.7030 +6720 9563 0.5230 +6720 9572 0.4370 +6720 9611 0.5660 +6720 9619 0.8460 +6720 9632 0.5050 +6720 9663 0.4400 +6720 9817 0.4120 +6720 9862 0.6500 +6720 9871 0.5220 +6720 9968 0.6890 +6720 9969 0.6840 +6720 9970 0.4020 +6720 9971 0.8340 +6720 9986 0.4120 +6720 10001 0.6500 +6720 10062 0.9640 +6720 10135 0.4330 +6720 10226 0.4770 +6720 10269 0.4930 +6720 10370 0.4070 +6720 10419 0.5070 +6720 10427 0.5630 +6720 10484 0.6000 +6720 10498 0.4020 +6720 10554 0.4200 +6720 10555 0.4620 +6720 10628 0.6060 +6720 10645 0.4180 +6720 10654 0.7840 +6720 10767 0.4180 +6720 10802 0.5320 +6720 10891 0.8620 +6720 10948 0.5520 +6720 10998 0.5350 +6720 10999 0.5810 +6720 11001 0.5280 +6720 11343 0.4470 +6720 22877 0.4010 +6720 22926 0.5660 +6720 22937 0.9980 +6720 23175 0.8310 +6720 23224 0.4110 +6720 23345 0.5030 +6720 23353 0.5870 +6720 23410 0.4900 +6720 23411 0.8700 +6720 23417 0.6490 +6720 23463 0.4130 +6720 25777 0.4390 +6720 26291 0.6250 +6720 27163 0.4080 +6720 27332 0.4180 +6720 28999 0.4200 +6720 29116 0.5100 +6720 29881 0.7610 +6720 50507 0.5120 +6720 51085 0.9000 +6720 51094 0.5790 +6720 51099 0.4620 +6720 51128 0.6120 +6720 51129 0.4400 +6720 51141 0.9530 +6720 51341 0.6680 +6720 51360 0.9230 +6720 51548 0.4980 +6720 51586 0.9580 +6720 51703 0.4550 +6720 51738 0.4020 +6720 53345 0.4470 +6720 54329 0.5860 +6720 54677 0.5660 +6720 54898 0.5220 +6720 55239 0.4340 +6720 55294 0.8940 +6720 55554 0.4320 +6720 55902 0.5950 +6720 56729 0.7040 +6720 57104 0.8780 +6720 57521 0.5480 +6720 57678 0.8360 +6720 57818 0.6640 +6720 60481 0.6640 +6720 63924 0.5490 +6720 63976 0.4680 +6720 64240 0.8010 +6720 64241 0.7760 +6720 64834 0.4960 +6720 79071 0.9270 +6720 79602 0.5840 +6720 79966 0.5850 +6720 79993 0.4530 +6720 80339 0.8180 +6720 80347 0.4350 +6720 80765 0.6150 +6720 81857 0.5480 +6720 83401 0.4730 +6720 84230 0.5410 +6720 84335 0.4690 +6720 84532 0.4500 +6720 84649 0.7780 +6720 84666 0.5070 +6720 84699 0.4350 +6720 84706 0.4500 +6720 84803 0.4510 +6720 92579 0.6720 +6720 116255 0.4540 +6720 116519 0.4580 +6720 126129 0.5710 +6720 132949 0.4750 +6720 133522 0.9850 +6720 134429 0.6710 +6720 137902 0.5200 +6720 137964 0.5350 +6720 147323 0.5500 +6720 151306 0.4780 +6720 158833 0.6010 +6720 200186 0.5220 +6720 253260 0.4420 +6720 255738 0.6350 +6720 257202 0.4350 +6720 376497 0.6560 +6720 440275 0.5390 +6720 440503 0.4140 +6720 493869 0.4870 +6721 6722 0.5890 +6721 6781 0.5070 +6721 6820 0.6730 +6721 6927 0.6800 +6721 6928 0.4700 +6721 7108 0.7180 +6721 7124 0.4260 +6721 7157 0.9780 +6721 7329 0.6350 +6721 7376 0.8210 +6721 7436 0.4740 +6721 7494 0.4530 +6721 7753 0.4210 +6721 7975 0.4100 +6721 8310 0.4340 +6721 8431 0.5890 +6721 8435 0.5190 +6721 8647 0.5120 +6721 8660 0.4760 +6721 8694 0.5230 +6721 8720 0.9000 +6721 8841 0.4040 +6721 9023 0.5920 +6721 9213 0.9220 +6721 9370 0.4780 +6721 9415 0.4790 +6721 9420 0.4670 +6721 9453 0.7800 +6721 9619 0.8770 +6721 9632 0.5510 +6721 9871 0.5230 +6721 9971 0.8140 +6721 10045 0.5040 +6721 10062 0.8870 +6721 10217 0.4030 +6721 10427 0.6050 +6721 10454 0.4310 +6721 10484 0.5620 +6721 10577 0.4720 +6721 10654 0.7430 +6721 10802 0.5810 +6721 10858 0.5430 +6721 10891 0.5710 +6721 11160 0.4050 +6721 11236 0.8240 +6721 11343 0.5080 +6721 22913 0.5340 +6721 22926 0.9110 +6721 22937 0.9990 +6721 23175 0.5570 +6721 23411 0.7360 +6721 25988 0.4290 +6721 26291 0.4310 +6721 27346 0.7480 +6721 29116 0.7090 +6721 29881 0.8380 +6721 50814 0.5310 +6721 51085 0.6880 +6721 51094 0.4250 +6721 51128 0.5850 +6721 51141 0.9860 +6721 51360 0.9300 +6721 51478 0.4330 +6721 51548 0.4580 +6721 51586 0.8300 +6721 54329 0.6400 +6721 54677 0.6220 +6721 55239 0.4160 +6721 55810 0.4790 +6721 55902 0.4760 +6721 57104 0.4860 +6721 57678 0.5140 +6721 58190 0.4020 +6721 60481 0.4770 +6721 64137 0.4400 +6721 64240 0.9210 +6721 64241 0.9140 +6721 79071 0.9210 +6721 79602 0.4260 +6721 79879 0.5960 +6721 79966 0.8570 +6721 80339 0.5010 +6721 81502 0.5730 +6721 84649 0.5590 +6721 93649 0.5910 +6721 114548 0.5920 +6721 133522 0.7590 +6721 134429 0.5560 +6721 137964 0.4170 +6721 140628 0.4770 +6721 153830 0.4120 +6721 255738 0.7960 +6721 285989 0.4240 +6722 6876 0.8070 +6722 6900 0.4280 +6722 6910 0.7320 +6722 6943 0.5060 +6722 7003 0.7600 +6722 7004 0.4930 +6722 7040 0.4650 +6722 7273 0.6180 +6722 7403 0.6150 +6722 7414 0.4920 +6722 7469 0.6010 +6722 7528 0.5190 +6722 7547 0.4190 +6722 8048 0.5540 +6722 8061 0.6400 +6722 8554 0.4570 +6722 8648 0.6080 +6722 8841 0.5090 +6722 8850 0.5540 +6722 9242 0.4770 +6722 9261 0.4620 +6722 9314 0.7710 +6722 9404 0.4070 +6722 9457 0.4450 +6722 9464 0.7090 +6722 9612 0.5230 +6722 9759 0.8340 +6722 10265 0.6240 +6722 10398 0.4100 +6722 10498 0.5440 +6722 10524 0.4140 +6722 10575 0.5060 +6722 22885 0.6900 +6722 22926 0.6220 +6722 22980 0.6320 +6722 23022 0.4280 +6722 23028 0.5060 +6722 23054 0.5910 +6722 23237 0.6760 +6722 23411 0.4060 +6722 29102 0.5130 +6722 50805 0.5600 +6722 51274 0.5250 +6722 57496 0.9780 +6722 57591 0.9990 +6722 59338 0.4110 +6722 79190 0.4460 +6722 79191 0.4580 +6722 79192 0.5280 +6722 84448 0.6950 +6722 84525 0.7550 +6722 84676 0.4860 +6722 93649 0.9990 +6722 131096 0.5930 +6722 137735 0.6650 +6722 143872 0.4280 +6722 153443 0.9190 +6722 153572 0.4330 +6722 221692 0.5740 +6722 221937 0.5760 +6722 253430 0.6790 +6722 283078 0.4320 +6722 284358 0.5880 +6722 286205 0.5710 +6722 375189 0.4120 +6723 7407 0.4200 +6723 8659 0.5090 +6723 8875 0.4720 +6723 8876 0.4720 +6723 9040 0.4090 +6723 10157 0.9360 +6723 10528 0.4950 +6723 10747 0.4410 +6723 26973 0.4060 +6723 51073 0.5210 +6723 51154 0.4280 +6723 51582 0.7820 +6723 51686 0.4180 +6723 51733 0.4720 +6723 54498 0.7750 +6723 54535 0.4210 +6723 55256 0.5030 +6723 55651 0.4500 +6723 56648 0.4560 +6723 56954 0.7390 +6723 58478 0.5050 +6723 64083 0.4740 +6723 64841 0.4170 +6723 79711 0.4720 +6723 79814 0.9870 +6723 83475 0.6970 +6723 84245 0.6320 +6723 112483 0.9410 +6723 113451 0.9040 +6723 143244 0.4650 +6723 143879 0.4870 +6723 162417 0.4540 +6723 196743 0.8200 +6726 6727 0.9990 +6726 6728 0.9990 +6726 6729 0.9990 +6726 6730 0.9990 +6726 6731 0.9990 +6726 6734 0.9760 +6726 6745 0.6050 +6726 6746 0.6180 +6726 6747 0.6560 +6726 6748 0.5800 +6726 6787 0.5080 +6726 7311 0.8350 +6726 7494 0.8160 +6726 7536 0.4010 +6726 8050 0.4140 +6726 8443 0.4640 +6726 8487 0.4320 +6726 8662 0.4440 +6726 8761 0.4550 +6726 9045 0.9020 +6726 9349 0.9040 +6726 9789 0.5120 +6726 10399 0.8480 +6726 10480 0.4450 +6726 10492 0.4900 +6726 10797 0.6920 +6726 10910 0.4080 +6726 10935 0.4300 +6726 10952 0.8050 +6726 11127 0.4150 +6726 11157 0.4290 +6726 11222 0.5060 +6726 11224 0.9020 +6726 11231 0.4860 +6726 23139 0.4070 +6726 23244 0.4260 +6726 23471 0.5910 +6726 23480 0.8500 +6726 23521 0.9030 +6726 25873 0.9060 +6726 25886 0.4250 +6726 25929 0.4740 +6726 26099 0.6050 +6726 26986 0.6590 +6726 28972 0.6650 +6726 28998 0.4760 +6726 29927 0.7900 +6726 50628 0.4240 +6726 51023 0.4390 +6726 51069 0.4050 +6726 51073 0.4310 +6726 51121 0.8840 +6726 51574 0.6520 +6726 51605 0.6020 +6726 51639 0.4640 +6726 51691 0.4710 +6726 55176 0.6310 +6726 55651 0.4990 +6726 56257 0.4700 +6726 58477 0.9740 +6726 79590 0.4260 +6726 83548 0.6040 +6726 84955 0.6470 +6726 115708 0.4800 +6726 200916 0.4270 +6726 387103 0.4210 +6726 399818 0.4760 +6726 441024 0.6170 +6726 100526842 0.8580 +6726 100529239 0.8140 +6727 6728 0.9990 +6727 6729 0.9990 +6727 6730 0.9990 +6727 6731 0.9990 +6727 6734 0.9330 +6727 6745 0.6360 +6727 6746 0.6590 +6727 6747 0.6390 +6727 6748 0.6010 +6727 7178 0.5000 +6727 7311 0.8300 +6727 7494 0.8070 +6727 7706 0.4350 +6727 9045 0.9360 +6727 9349 0.8850 +6727 9550 0.4280 +6727 9789 0.5740 +6727 10169 0.5680 +6727 10209 0.4600 +6727 10284 0.5570 +6727 10399 0.8320 +6727 10614 0.4050 +6727 10952 0.7210 +6727 11224 0.9210 +6727 11231 0.6150 +6727 11315 0.4430 +6727 22826 0.4540 +6727 23076 0.5880 +6727 23471 0.5540 +6727 23476 0.5170 +6727 23480 0.7920 +6727 23521 0.9260 +6727 25873 0.8870 +6727 26099 0.6080 +6727 27089 0.4330 +6727 28972 0.6160 +6727 28998 0.4560 +6727 29927 0.7520 +6727 51023 0.4740 +6727 51121 0.8670 +6727 51234 0.4130 +6727 51372 0.4710 +6727 51399 0.4140 +6727 51503 0.4250 +6727 51574 0.4910 +6727 55176 0.6120 +6727 55505 0.4590 +6727 55651 0.4750 +6727 56257 0.4340 +6727 57109 0.4040 +6727 58477 0.9430 +6727 59286 0.4490 +6727 79912 0.4250 +6727 81533 0.4080 +6727 84365 0.4190 +6727 103910 0.4100 +6727 388021 0.4300 +6727 100526842 0.8510 +6727 100529239 0.8280 +6727 100652824 0.4020 +6728 6729 0.9990 +6728 6730 0.9990 +6728 6731 0.9990 +6728 6734 0.9750 +6728 6745 0.6090 +6728 6746 0.5420 +6728 6747 0.6280 +6728 6748 0.5860 +6728 7095 0.5740 +6728 7311 0.8290 +6728 7494 0.8110 +6728 7905 0.7250 +6728 8087 0.4070 +6728 8662 0.5280 +6728 9045 0.9010 +6728 9349 0.9050 +6728 9513 0.4250 +6728 9529 0.4110 +6728 9530 0.6160 +6728 9531 0.5630 +6728 9789 0.4970 +6728 10155 0.4220 +6728 10399 0.8500 +6728 10526 0.5700 +6728 10527 0.4400 +6728 10557 0.4920 +6728 10930 0.4080 +6728 10952 0.8320 +6728 11222 0.4080 +6728 11224 0.9030 +6728 11231 0.5420 +6728 23294 0.4630 +6728 23471 0.5340 +6728 23478 0.4160 +6728 23480 0.7270 +6728 23521 0.9120 +6728 25873 0.9090 +6728 27257 0.4860 +6728 28972 0.7000 +6728 28998 0.4650 +6728 29093 0.5650 +6728 29927 0.8480 +6728 51023 0.4060 +6728 51121 0.9140 +6728 51373 0.4520 +6728 51574 0.4670 +6728 51592 0.4070 +6728 55176 0.7010 +6728 55299 0.4310 +6728 55651 0.4930 +6728 56899 0.4630 +6728 57524 0.4020 +6728 58477 0.9680 +6728 60489 0.5820 +6728 60559 0.5640 +6728 63931 0.4010 +6728 64225 0.4190 +6728 64374 0.4150 +6728 65055 0.5290 +6728 200916 0.5150 +6728 342538 0.8470 +6728 440387 0.4180 +6728 100526842 0.8640 +6728 100529239 0.8140 +6729 6730 0.9990 +6729 6731 0.9990 +6729 6734 0.9990 +6729 6745 0.7320 +6729 6746 0.6030 +6729 6747 0.6390 +6729 6748 0.5840 +6729 7095 0.6500 +6729 7153 0.4950 +6729 7155 0.4220 +6729 7156 0.4020 +6729 7284 0.4090 +6729 7311 0.8310 +6729 7407 0.5050 +6729 7453 0.4370 +6729 7485 0.5230 +6729 7494 0.8530 +6729 7518 0.5980 +6729 8266 0.4330 +6729 8487 0.5140 +6729 8504 0.4110 +6729 8565 0.5690 +6729 8683 0.4710 +6729 8697 0.4470 +6729 8940 0.4020 +6729 9045 0.8990 +6729 9255 0.4800 +6729 9343 0.4630 +6729 9349 0.9950 +6729 9533 0.4580 +6729 9553 0.9080 +6729 9669 0.4550 +6729 9694 0.5260 +6729 9732 0.4670 +6729 9789 0.6540 +6729 9801 0.9460 +6729 9858 0.6610 +6729 9950 0.4830 +6729 10051 0.6990 +6729 10056 0.4360 +6729 10102 0.5230 +6729 10269 0.4300 +6729 10352 0.4330 +6729 10399 0.8600 +6729 10473 0.6900 +6729 10492 0.4580 +6729 10535 0.4870 +6729 10557 0.4730 +6729 10592 0.5660 +6729 10642 0.4060 +6729 10730 0.4700 +6729 10949 0.5420 +6729 10952 0.8240 +6729 10988 0.4650 +6729 11128 0.4310 +6729 11218 0.4720 +6729 11222 0.8670 +6729 11224 0.9950 +6729 11231 0.6560 +6729 11311 0.4590 +6729 22984 0.4110 +6729 23204 0.5900 +6729 23252 0.4090 +6729 23256 0.6030 +6729 23395 0.4370 +6729 23405 0.4730 +6729 23438 0.4910 +6729 23471 0.6480 +6729 23480 0.7480 +6729 23521 0.9740 +6729 23640 0.7350 +6729 24140 0.4370 +6729 25873 0.8850 +6729 25929 0.5860 +6729 25973 0.4330 +6729 27102 0.4180 +6729 27316 0.5010 +6729 28972 0.4940 +6729 28998 0.8780 +6729 29088 0.5570 +6729 29093 0.8290 +6729 29102 0.4340 +6729 29789 0.4220 +6729 29927 0.9400 +6729 29960 0.4350 +6729 50628 0.4080 +6729 51009 0.4080 +6729 51021 0.8350 +6729 51067 0.4470 +6729 51069 0.8570 +6729 51073 0.8750 +6729 51081 0.6780 +6729 51116 0.6820 +6729 51119 0.5500 +6729 51121 0.9640 +6729 51149 0.7050 +6729 51154 0.8630 +6729 51264 0.9520 +6729 51319 0.5570 +6729 51493 0.4340 +6729 51520 0.4420 +6729 51557 0.4010 +6729 51608 0.5880 +6729 51654 0.4320 +6729 51699 0.4360 +6729 54802 0.5600 +6729 54845 0.4330 +6729 54901 0.4270 +6729 54948 0.7270 +6729 55052 0.9310 +6729 55157 0.6050 +6729 55173 0.6950 +6729 55176 0.8450 +6729 55247 0.4800 +6729 55272 0.8080 +6729 55316 0.5530 +6729 55644 0.4170 +6729 55651 0.5680 +6729 55699 0.4050 +6729 56474 0.4670 +6729 57038 0.6400 +6729 57136 0.4890 +6729 57176 0.4700 +6729 57470 0.4270 +6729 58477 0.9880 +6729 60489 0.4620 +6729 60558 0.4210 +6729 60559 0.5000 +6729 63875 0.9410 +6729 63931 0.5620 +6729 64172 0.4060 +6729 64216 0.4050 +6729 64374 0.7510 +6729 64960 0.7090 +6729 64963 0.7310 +6729 64965 0.7460 +6729 64968 0.6870 +6729 64969 0.8080 +6729 64979 0.9120 +6729 64983 0.9380 +6729 65003 0.7450 +6729 65005 0.7480 +6729 65080 0.4550 +6729 65121 0.5500 +6729 65122 0.5500 +6729 79139 0.5670 +6729 79587 0.4050 +6729 79590 0.8280 +6729 79631 0.7140 +6729 80004 0.4480 +6729 80273 0.4150 +6729 84245 0.4340 +6729 84522 0.4640 +6729 84893 0.4100 +6729 85476 0.5360 +6729 87178 0.4470 +6729 91875 0.4670 +6729 92399 0.4780 +6729 116832 0.5440 +6729 117246 0.4520 +6729 124454 0.4640 +6729 126402 0.6690 +6729 134218 0.7220 +6729 134266 0.4030 +6729 140801 0.7230 +6729 155038 0.7860 +6729 200916 0.4350 +6729 219927 0.9600 +6729 283635 0.5410 +6729 285521 0.4390 +6729 285855 0.7920 +6729 342538 0.8490 +6729 343068 0.5500 +6729 343070 0.5500 +6729 347487 0.6610 +6729 387129 0.7920 +6729 390999 0.5500 +6729 391002 0.5500 +6729 400735 0.5500 +6729 400736 0.5500 +6729 440275 0.4230 +6729 440560 0.5500 +6729 440561 0.5500 +6729 441873 0.5500 +6729 641776 0.5500 +6729 643909 0.5500 +6729 645359 0.5500 +6729 653619 0.5500 +6729 728524 0.5500 +6729 729528 0.5500 +6729 100287482 0.6610 +6729 100505478 0.7900 +6729 100526842 0.9630 +6729 100529239 0.8290 +6729 100996746 0.5500 +6729 101929983 0.5500 +6729 105180390 0.5500 +6729 105180391 0.5500 +6730 6731 0.9990 +6730 6734 0.9800 +6730 6745 0.6140 +6730 6746 0.5740 +6730 6747 0.6150 +6730 6748 0.6050 +6730 6780 0.5430 +6730 7095 0.4800 +6730 7311 0.8310 +6730 7494 0.8210 +6730 8662 0.5560 +6730 8664 0.4080 +6730 8669 0.5430 +6730 8894 0.5440 +6730 9045 0.9180 +6730 9343 0.4220 +6730 9349 0.9110 +6730 9513 0.4520 +6730 9732 0.4240 +6730 9789 0.6050 +6730 9933 0.6640 +6730 10153 0.4880 +6730 10399 0.8650 +6730 10514 0.4300 +6730 10557 0.5440 +6730 10952 0.7870 +6730 10969 0.6720 +6730 11222 0.4670 +6730 11224 0.9270 +6730 11231 0.6190 +6730 23029 0.6290 +6730 23471 0.5750 +6730 23480 0.6370 +6730 23521 0.9210 +6730 25873 0.9240 +6730 26003 0.4960 +6730 27044 0.5650 +6730 27338 0.4280 +6730 28972 0.5250 +6730 28998 0.4570 +6730 29927 0.8240 +6730 29965 0.4150 +6730 51121 0.9180 +6730 51202 0.5390 +6730 51319 0.4240 +6730 51574 0.6770 +6730 55131 0.6040 +6730 55176 0.6170 +6730 55379 0.4050 +6730 55651 0.5420 +6730 56257 0.5210 +6730 58477 0.9820 +6730 63893 0.4310 +6730 65265 0.4410 +6730 65992 0.4710 +6730 79706 0.4020 +6730 79868 0.4190 +6730 83858 0.4450 +6730 117246 0.6620 +6730 155038 0.5540 +6730 199857 0.4330 +6730 200916 0.5210 +6730 342538 0.8280 +6730 100526842 0.8580 +6730 100529239 0.8140 +6731 6734 0.9870 +6731 6745 0.7130 +6731 6746 0.5400 +6731 6747 0.7010 +6731 6748 0.5720 +6731 6780 0.4540 +6731 7095 0.4290 +6731 7311 0.8170 +6731 8087 0.4230 +6731 8661 0.6630 +6731 8662 0.4310 +6731 9045 0.8890 +6731 9097 0.4270 +6731 9349 0.8700 +6731 9789 0.4650 +6731 10492 0.5190 +6731 10557 0.4440 +6731 10952 0.7070 +6731 11222 0.5090 +6731 11224 0.8810 +6731 11231 0.6640 +6731 22852 0.6890 +6731 23029 0.5620 +6731 23076 0.4910 +6731 23471 0.6100 +6731 23480 0.6000 +6731 23521 0.9040 +6731 25873 0.9070 +6731 26589 0.5110 +6731 28972 0.4860 +6731 28998 0.4070 +6731 29927 0.8220 +6731 51154 0.4210 +6731 51428 0.5890 +6731 51574 0.5290 +6731 51649 0.4200 +6731 54552 0.5110 +6731 54809 0.4340 +6731 54850 0.4080 +6731 54948 0.4520 +6731 55176 0.6080 +6731 55651 0.4970 +6731 56257 0.5400 +6731 58477 0.9770 +6731 60559 0.5430 +6731 65992 0.4120 +6731 116832 0.4370 +6731 132946 0.5820 +6731 155038 0.4240 +6731 219285 0.4340 +6731 100526842 0.8610 +6732 6733 0.8870 +6732 6749 0.8130 +6732 6787 0.4640 +6732 6790 0.6970 +6732 7072 0.4740 +6732 7073 0.4480 +6732 7150 0.6030 +6732 7153 0.5070 +6732 7157 0.5060 +6732 7307 0.9330 +6732 7531 0.4710 +6732 7532 0.4840 +6732 7536 0.7160 +6732 7846 0.4060 +6732 7936 0.4470 +6732 8175 0.4610 +6732 8233 0.6080 +6732 8550 0.4800 +6732 8683 0.9770 +6732 8899 0.6530 +6732 8924 0.4150 +6732 9100 0.4630 +6732 9184 0.4180 +6732 9188 0.8270 +6732 9232 0.4230 +6732 9295 0.5250 +6732 9406 0.4600 +6732 9416 0.9420 +6732 9444 0.5220 +6732 9584 0.8210 +6732 9667 0.6930 +6732 9774 0.5120 +6732 9775 0.5620 +6732 9833 0.4020 +6732 9939 0.5560 +6732 9967 0.4060 +6732 9987 0.6530 +6732 10189 0.4670 +6732 10250 0.4940 +6732 10523 0.4100 +6732 10594 0.4600 +6732 10598 0.8000 +6732 10657 0.4850 +6732 10713 0.7720 +6732 10772 0.6530 +6732 10797 0.4200 +6732 10921 0.7160 +6732 10929 0.9330 +6732 10946 0.7180 +6732 11051 0.4430 +6732 11103 0.4880 +6732 11200 0.5040 +6732 11338 0.9150 +6732 22826 0.6200 +6732 22827 0.4400 +6732 22985 0.7060 +6732 23367 0.4840 +6732 23397 0.4130 +6732 23476 0.6270 +6732 23524 0.5680 +6732 23534 0.6350 +6732 24149 0.4990 +6732 25804 0.4080 +6732 25861 0.5810 +6732 26576 0.4690 +6732 26986 0.4970 +6732 27065 0.4400 +6732 29102 0.7700 +6732 51329 0.6290 +6732 51441 0.4620 +6732 51574 0.4040 +6732 51631 0.7890 +6732 51634 0.4030 +6732 51645 0.4410 +6732 51747 0.8330 +6732 54439 0.5880 +6732 54487 0.4990 +6732 54606 0.5380 +6732 54845 0.4520 +6732 55082 0.4700 +6732 55147 0.5860 +6732 55226 0.6230 +6732 55646 0.5310 +6732 55692 0.8110 +6732 55781 0.4640 +6732 57396 0.5880 +6732 57721 0.4070 +6732 57819 0.4360 +6732 64426 0.4500 +6732 79009 0.4920 +6732 80004 0.5080 +6732 84950 0.8730 +6732 84991 0.4690 +6732 91746 0.4470 +6732 92906 0.4150 +6732 135295 0.4350 +6732 140890 0.7090 +6732 221092 0.4560 +6732 100996928 0.4390 +6732 101669762 0.4230 +6733 6790 0.4190 +6733 6949 0.4110 +6733 7072 0.4180 +6733 7150 0.4820 +6733 7307 0.8950 +6733 7529 0.6590 +6733 7536 0.4400 +6733 7840 0.5510 +6733 7936 0.4600 +6733 8019 0.6370 +6733 8175 0.4710 +6733 8233 0.8100 +6733 8550 0.4230 +6733 8621 0.4650 +6733 8683 0.7500 +6733 8899 0.6060 +6733 9188 0.5180 +6733 9295 0.5860 +6733 9343 0.5710 +6733 9416 0.9620 +6733 9513 0.4630 +6733 9584 0.8770 +6733 9774 0.5550 +6733 9775 0.5400 +6733 9879 0.8680 +6733 9939 0.4850 +6733 9967 0.4660 +6733 9987 0.4200 +6733 10250 0.7290 +6733 10284 0.4460 +6733 10523 0.4570 +6733 10594 0.4390 +6733 10713 0.4680 +6733 10772 0.6540 +6733 10921 0.8120 +6733 10929 0.7990 +6733 10946 0.5160 +6733 11017 0.7970 +6733 11052 0.5030 +6733 11066 0.5460 +6733 11338 0.9260 +6733 22985 0.8300 +6733 23020 0.4080 +6733 23203 0.4820 +6733 23524 0.5690 +6733 23534 0.4730 +6733 24148 0.4340 +6733 24149 0.5050 +6733 25804 0.4340 +6733 27065 0.4220 +6733 29102 0.4020 +6733 29896 0.6380 +6733 51319 0.4530 +6733 51631 0.7410 +6733 51747 0.8890 +6733 54487 0.4060 +6733 55082 0.7750 +6733 55147 0.7510 +6733 55544 0.4420 +6733 55692 0.9040 +6733 55904 0.5910 +6733 56259 0.5090 +6733 57396 0.4590 +6733 57819 0.4320 +6733 63977 0.4100 +6733 64062 0.4870 +6733 65117 0.4360 +6733 79009 0.6420 +6733 79169 0.4520 +6733 79753 0.5450 +6733 84081 0.4450 +6733 84547 0.4270 +6733 84950 0.8580 +6733 84991 0.4450 +6733 91746 0.4900 +6733 135295 0.6580 +6733 140890 0.6340 +6733 170692 0.4740 +6733 285175 0.4080 +6733 101669762 0.4230 +6734 6745 0.7520 +6734 6746 0.7290 +6734 6747 0.6490 +6734 6748 0.6030 +6734 6890 0.6120 +6734 6891 0.6520 +6734 7070 0.4200 +6734 7095 0.6970 +6734 7124 0.4220 +6734 7184 0.4340 +6734 7311 0.8000 +6734 7453 0.4160 +6734 7494 0.7950 +6734 8192 0.5130 +6734 8266 0.4160 +6734 8565 0.5540 +6734 8697 0.4040 +6734 9045 0.8160 +6734 9343 0.4430 +6734 9349 0.9630 +6734 9553 0.7370 +6734 9669 0.4200 +6734 9694 0.4100 +6734 9789 0.5340 +6734 9801 0.6950 +6734 10473 0.6480 +6734 10483 0.4320 +6734 10525 0.5830 +6734 10591 0.4110 +6734 10952 0.7180 +6734 11222 0.6870 +6734 11224 0.9560 +6734 11231 0.7860 +6734 22820 0.4600 +6734 22984 0.4080 +6734 23395 0.4060 +6734 23405 0.4270 +6734 23471 0.6510 +6734 23480 0.7600 +6734 23521 0.9240 +6734 23640 0.5320 +6734 25873 0.8180 +6734 26003 0.5390 +6734 27235 0.4210 +6734 28972 0.4590 +6734 28998 0.6330 +6734 29088 0.4350 +6734 29093 0.5800 +6734 29100 0.4240 +6734 29102 0.4100 +6734 29927 0.9570 +6734 51021 0.4780 +6734 51069 0.6800 +6734 51073 0.6640 +6734 51121 0.5710 +6734 51154 0.8610 +6734 51264 0.5880 +6734 51520 0.4110 +6734 54059 0.4790 +6734 54431 0.4420 +6734 54948 0.5450 +6734 55052 0.6290 +6734 55176 0.8630 +6734 55247 0.5130 +6734 55276 0.4230 +6734 55644 0.4060 +6734 55699 0.4270 +6734 57038 0.4470 +6734 58477 0.9990 +6734 63875 0.7390 +6734 64172 0.4010 +6734 64374 0.5730 +6734 64979 0.4510 +6734 64983 0.6280 +6734 65003 0.6430 +6734 65005 0.6840 +6734 65080 0.4030 +6734 65121 0.4330 +6734 65122 0.4330 +6734 65992 0.7840 +6734 79590 0.5710 +6734 80267 0.5210 +6734 80273 0.4420 +6734 84705 0.4060 +6734 84893 0.4200 +6734 92799 0.7480 +6734 134266 0.4350 +6734 140801 0.5250 +6734 158747 0.4600 +6734 219927 0.5820 +6734 285521 0.4030 +6734 285855 0.5870 +6734 343068 0.4330 +6734 343070 0.4330 +6734 387129 0.5830 +6734 390999 0.4330 +6734 391002 0.4330 +6734 400735 0.4330 +6734 400736 0.4330 +6734 440560 0.4330 +6734 440561 0.4330 +6734 441873 0.4330 +6734 548645 0.4150 +6734 645359 0.4330 +6734 653619 0.4330 +6734 729528 0.4330 +6734 100505478 0.5830 +6734 100526842 0.9110 +6734 101929983 0.4330 +6736 6770 0.4440 +6736 6774 0.4130 +6736 6908 0.5410 +6736 6925 0.7060 +6736 6936 0.5710 +6736 6940 0.4810 +6736 7080 0.5630 +6736 7157 0.4470 +6736 7258 0.8640 +6736 7329 0.4600 +6736 7404 0.9430 +6736 7490 0.9380 +6736 7528 0.4150 +6736 7543 0.8680 +6736 7544 0.9890 +6736 7593 0.4220 +6736 7704 0.5410 +6736 7757 0.4570 +6736 8284 0.7910 +6736 8287 0.9070 +6736 8653 0.7690 +6736 8823 0.4020 +6736 8842 0.4480 +6736 8856 0.6180 +6736 8875 0.4350 +6736 8876 0.6370 +6736 9083 0.4920 +6736 9085 0.4640 +6736 9086 0.5480 +6736 9087 0.6150 +6736 9314 0.6470 +6736 9324 0.4390 +6736 9351 0.5580 +6736 9589 0.4330 +6736 10046 0.4280 +6736 10150 0.5700 +6736 10215 0.4340 +6736 10655 0.8080 +6736 10763 0.5190 +6736 11091 0.4100 +6736 11172 0.5330 +6736 22829 0.8460 +6736 23414 0.7400 +6736 27022 0.6180 +6736 27161 0.6730 +6736 30014 0.6690 +6736 30832 0.4660 +6736 50674 0.4010 +6736 50846 0.8360 +6736 51176 0.4740 +6736 54361 0.8230 +6736 55796 0.5800 +6736 56956 0.6120 +6736 57054 0.4160 +6736 57055 0.4540 +6736 57623 0.4220 +6736 64328 0.5180 +6736 64648 0.6520 +6736 79727 0.4730 +6736 79923 0.6970 +6736 83259 0.6520 +6736 84733 0.6270 +6736 86614 0.5010 +6736 90665 0.8450 +6736 127540 0.6250 +6736 139285 0.4360 +6736 140032 0.4180 +6736 284654 0.8260 +6736 346673 0.6170 +6736 389692 0.4620 +6736 442867 0.4470 +6736 442868 0.4470 +6736 728695 0.5710 +6736 728712 0.6810 +6737 6738 0.9990 +6737 6741 0.9970 +6737 6764 0.5490 +6737 6772 0.8330 +6737 6773 0.4260 +6737 6890 0.4750 +6737 7038 0.5620 +6737 7098 0.4970 +6737 7124 0.6460 +6737 7150 0.4700 +6737 7184 0.4790 +6737 7189 0.4570 +6737 7311 0.9470 +6737 7314 0.9600 +6737 7316 0.9700 +6737 7321 0.7730 +6737 7322 0.8770 +6737 7323 0.5070 +6737 7324 0.9640 +6737 7332 0.4430 +6737 7334 0.9760 +6737 7343 0.4370 +6737 7345 0.4070 +6737 7375 0.9530 +6737 7415 0.4830 +6737 7706 0.4050 +6737 8266 0.5020 +6737 8424 0.8300 +6737 8454 0.5940 +6737 8638 0.5560 +6737 8678 0.6130 +6737 8718 0.6810 +6737 8772 0.6200 +6737 8805 0.4330 +6737 8833 0.8520 +6737 8878 0.9210 +6737 9075 0.5680 +6737 9081 0.6100 +6737 9099 0.4890 +6737 9111 0.7190 +6737 9246 0.5820 +6737 9636 0.8780 +6737 9641 0.4170 +6737 9881 0.4750 +6737 9939 0.4100 +6737 9958 0.5580 +6737 9960 0.4190 +6737 9978 0.4030 +6737 10013 0.4390 +6737 10055 0.5700 +6737 10146 0.4090 +6737 10155 0.4350 +6737 10299 0.4380 +6737 10346 0.4540 +6737 10379 0.6520 +6737 10410 0.5920 +6737 10419 0.7340 +6737 10561 0.4780 +6737 10616 0.5100 +6737 10673 0.5960 +6737 10750 0.4390 +6737 10906 0.4220 +6737 10963 0.6110 +6737 10964 0.4420 +6737 10989 0.4270 +6737 11080 0.8140 +6737 11118 0.7040 +6737 11274 0.6970 +6737 11337 0.5070 +6737 11345 0.5640 +6737 23118 0.4240 +6737 23225 0.5070 +6737 23438 0.4810 +6737 23515 0.7230 +6737 23586 0.7710 +6737 23640 0.7660 +6737 23710 0.5460 +6737 24138 0.4990 +6737 25939 0.5700 +6737 27348 0.4110 +6737 28951 0.8110 +6737 29110 0.6290 +6737 50852 0.8990 +6737 51091 0.5460 +6737 51127 0.4520 +6737 51191 0.4040 +6737 51284 0.4570 +6737 51428 0.9290 +6737 51592 0.7520 +6737 54739 0.4090 +6737 54809 0.5310 +6737 55008 0.5030 +6737 55054 0.5250 +6737 55075 0.5290 +6737 55217 0.4520 +6737 55284 0.5030 +6737 55601 0.4820 +6737 57169 0.5170 +6737 57506 0.6180 +6737 64108 0.6010 +6737 64135 0.8120 +6737 64761 0.4570 +6737 78990 0.4040 +6737 79132 0.5280 +6737 79180 0.4540 +6737 79792 0.4100 +6737 81631 0.5700 +6737 81844 0.6530 +6737 83416 0.4390 +6737 83544 0.4690 +6737 83666 0.6090 +6737 84557 0.4890 +6737 84618 0.4360 +6737 85363 0.5350 +6737 90864 0.4240 +6737 91543 0.5260 +6737 114548 0.4890 +6737 115004 0.4480 +6737 115361 0.4460 +6737 115362 0.4820 +6737 116071 0.4870 +6737 129607 0.4100 +6737 140885 0.4580 +6737 163351 0.4230 +6737 168400 0.4520 +6737 219285 0.5110 +6737 378884 0.4010 +6737 440738 0.4080 +6737 442862 0.6210 +6737 102723407 0.4680 +6738 6741 0.9680 +6738 6764 0.5020 +6738 7088 0.4140 +6738 8634 0.4470 +6738 8707 0.4440 +6738 9857 0.4660 +6738 10055 0.4080 +6738 10557 0.4080 +6738 10673 0.4130 +6738 11260 0.4510 +6738 22827 0.6890 +6738 23438 0.6240 +6738 23515 0.6000 +6738 27161 0.4080 +6738 51022 0.4350 +6738 51574 0.5680 +6738 51592 0.5000 +6738 56257 0.5870 +6738 64135 0.4180 +6738 87178 0.4150 +6738 115004 0.4420 +6738 120892 0.5100 +6738 149041 0.4040 +6741 6835 0.4260 +6741 6950 0.4090 +6741 7073 0.5120 +6741 7175 0.4120 +6741 7307 0.7190 +6741 7336 0.5150 +6741 7341 0.4890 +6741 7411 0.4630 +6741 7443 0.4380 +6741 7536 0.4250 +6741 7812 0.4810 +6741 7919 0.6920 +6741 8087 0.5620 +6741 8148 0.5990 +6741 8431 0.4390 +6741 8570 0.5610 +6741 8661 0.5180 +6741 8880 0.5050 +6741 8894 0.4610 +6741 9126 0.5000 +6741 9136 0.4010 +6741 9343 0.4390 +6741 9360 0.6300 +6741 9513 0.5170 +6741 9533 0.5490 +6741 9584 0.4400 +6741 9782 0.7030 +6741 9939 0.6210 +6741 9961 0.4230 +6741 9987 0.4930 +6741 10153 0.4690 +6741 10189 0.6400 +6741 10197 0.4810 +6741 10199 0.5220 +6741 10213 0.4750 +6741 10236 0.7880 +6741 10284 0.4070 +6741 10432 0.6560 +6741 10492 0.7120 +6741 10528 0.5590 +6741 10557 0.4550 +6741 10576 0.5420 +6741 10614 0.6080 +6741 10621 0.4100 +6741 10622 0.4210 +6741 10623 0.4150 +6741 10657 0.5990 +6741 10673 0.4790 +6741 10694 0.6300 +6741 10923 0.4860 +6741 10949 0.5650 +6741 10969 0.4020 +6741 10988 0.6930 +6741 11051 0.6580 +6741 11052 0.5440 +6741 11128 0.4050 +6741 11171 0.4260 +6741 11198 0.4040 +6741 11338 0.6950 +6741 22826 0.5520 +6741 22827 0.4110 +6741 22948 0.4260 +6741 23016 0.4490 +6741 23029 0.5710 +6741 23160 0.5080 +6741 23185 0.4360 +6741 23350 0.4140 +6741 23404 0.4200 +6741 23435 0.7560 +6741 26097 0.4870 +6741 26135 0.4770 +6741 26156 0.4600 +6741 26986 0.6690 +6741 27000 0.5330 +6741 27037 0.4570 +6741 27258 0.4860 +6741 27297 0.4050 +6741 27316 0.5510 +6741 27339 0.5210 +6741 29081 0.4520 +6741 51082 0.4420 +6741 51574 0.8110 +6741 51593 0.5330 +6741 51602 0.7080 +6741 51605 0.4340 +6741 51639 0.4560 +6741 51691 0.4940 +6741 51728 0.4840 +6741 54517 0.4550 +6741 55299 0.4390 +6741 55651 0.5310 +6741 55660 0.5160 +6741 55703 0.4300 +6741 55718 0.4080 +6741 55749 0.4070 +6741 55854 0.7490 +6741 56257 0.6450 +6741 56259 0.6630 +6741 64783 0.4270 +6741 80218 0.4260 +6741 84324 0.4130 +6741 84365 0.5970 +6741 113251 0.4220 +6741 142940 0.4240 +6741 150160 0.4320 +6741 171568 0.4320 +6741 220988 0.5010 +6742 6832 0.4630 +6742 6901 0.4070 +6742 7019 0.9580 +6742 7080 0.5260 +6742 7153 0.4930 +6742 7155 0.4960 +6742 7156 0.8330 +6742 7157 0.8390 +6742 7284 0.7330 +6742 7374 0.6320 +6742 7384 0.4890 +6742 7411 0.4320 +6742 7416 0.4040 +6742 7486 0.6070 +6742 7507 0.4070 +6742 7520 0.5710 +6742 7818 0.5160 +6742 7978 0.5380 +6742 8192 0.6940 +6742 8266 0.4830 +6742 8294 0.4520 +6742 8318 0.4210 +6742 8359 0.4520 +6742 8360 0.4500 +6742 8361 0.7430 +6742 8362 0.4520 +6742 8363 0.4520 +6742 8364 0.4640 +6742 8366 0.4640 +6742 8367 0.4520 +6742 8368 0.4870 +6742 8370 0.4500 +6742 8565 0.6090 +6742 8940 0.7620 +6742 9086 0.6930 +6742 9141 0.4550 +6742 9156 0.6490 +6742 9188 0.4540 +6742 9255 0.4160 +6742 9343 0.4600 +6742 9361 0.6200 +6742 9399 0.4480 +6742 9400 0.4950 +6742 9401 0.6690 +6742 9533 0.4240 +6742 9801 0.5320 +6742 9858 0.5380 +6742 10105 0.5280 +6742 10128 0.4830 +6742 10240 0.4110 +6742 10436 0.4040 +6742 10473 0.5510 +6742 10476 0.4570 +6742 10535 0.4880 +6742 10557 0.5290 +6742 10721 0.4590 +6742 10730 0.5020 +6742 10845 0.5860 +6742 10884 0.4130 +6742 10923 0.5500 +6742 10939 0.5490 +6742 11128 0.4750 +6742 11157 0.4540 +6742 11222 0.6680 +6742 11232 0.7780 +6742 11331 0.6740 +6742 22868 0.4800 +6742 22907 0.7280 +6742 23107 0.4230 +6742 23521 0.5280 +6742 23635 0.8710 +6742 25813 0.4370 +6742 25885 0.4120 +6742 26073 0.4720 +6742 26135 0.4080 +6742 26284 0.6400 +6742 26586 0.4380 +6742 27340 0.4320 +6742 28957 0.4600 +6742 28973 0.5110 +6742 28998 0.5800 +6742 29074 0.4680 +6742 29088 0.4330 +6742 29093 0.7200 +6742 29935 0.4930 +6742 50485 0.5790 +6742 51001 0.5160 +6742 51021 0.5190 +6742 51023 0.6230 +6742 51067 0.4780 +6742 51069 0.4130 +6742 51073 0.6950 +6742 51081 0.7780 +6742 51095 0.4780 +6742 51106 0.7400 +6742 51116 0.8020 +6742 51154 0.7230 +6742 51202 0.4930 +6742 51253 0.4020 +6742 51263 0.5930 +6742 51264 0.5920 +6742 51287 0.4070 +6742 51318 0.8000 +6742 51388 0.4700 +6742 51491 0.4260 +6742 51649 0.6050 +6742 51650 0.8720 +6742 54148 0.6190 +6742 54205 0.4400 +6742 54606 0.4440 +6742 54948 0.4270 +6742 54973 0.5510 +6742 55037 0.5580 +6742 55052 0.4990 +6742 55173 0.8650 +6742 55210 0.5300 +6742 55247 0.4430 +6742 55270 0.4050 +6742 55272 0.4960 +6742 55294 0.5040 +6742 55651 0.5550 +6742 55766 0.4530 +6742 55967 0.4050 +6742 56647 0.4720 +6742 56652 0.9960 +6742 56888 0.4180 +6742 56941 0.4010 +6742 56945 0.5670 +6742 57697 0.4120 +6742 58493 0.8760 +6742 60496 0.4060 +6742 63931 0.5300 +6742 64216 0.6840 +6742 64374 0.4600 +6742 64963 0.5650 +6742 64965 0.7140 +6742 64968 0.9610 +6742 64969 0.5460 +6742 64975 0.4130 +6742 64979 0.5730 +6742 64983 0.4730 +6742 65003 0.7700 +6742 65005 0.6780 +6742 65008 0.5780 +6742 65080 0.4910 +6742 65123 0.9160 +6742 65993 0.5440 +6742 79035 0.7250 +6742 79631 0.4060 +6742 79728 0.5770 +6742 79736 0.5770 +6742 79968 0.5810 +6742 79991 0.4660 +6742 80119 0.6380 +6742 80207 0.4220 +6742 81892 0.4720 +6742 83752 0.4440 +6742 83858 0.5030 +6742 83990 0.4610 +6742 84233 0.6840 +6742 84263 0.4070 +6742 84298 0.5510 +6742 84545 0.4650 +6742 84893 0.4710 +6742 85476 0.4860 +6742 87178 0.4280 +6742 90381 0.4080 +6742 90480 0.4060 +6742 92667 0.6240 +6742 92797 0.4650 +6742 113510 0.4170 +6742 115416 0.4370 +6742 116447 0.4800 +6742 118487 0.6080 +6742 121504 0.4500 +6742 126402 0.6480 +6742 131076 0.6280 +6742 131118 0.4260 +6742 131474 0.4970 +6742 134637 0.4360 +6742 153769 0.4950 +6742 170463 0.4630 +6742 201973 0.6300 +6742 219927 0.9040 +6742 246243 0.9220 +6742 254528 0.4360 +6742 347487 0.5380 +6742 494551 0.4840 +6742 554313 0.4520 +6742 728378 0.4350 +6742 100287482 0.5380 +6742 100526842 0.5790 +6744 7454 0.6070 +6744 9840 0.6700 +6744 10513 0.5180 +6744 10875 0.4230 +6744 23242 0.8630 +6744 23307 0.4390 +6744 26276 0.4770 +6744 54443 0.4250 +6744 55852 0.4690 +6744 113177 0.4970 +6744 284434 0.4320 +6744 494513 0.4060 +6745 6746 0.9990 +6745 6747 0.9990 +6745 6748 0.9990 +6745 6750 0.4200 +6745 6950 0.4320 +6745 7095 0.4840 +6745 7184 0.5770 +6745 7419 0.4560 +6745 7494 0.8280 +6745 7905 0.4210 +6745 9276 0.4310 +6745 9375 0.4020 +6745 9554 0.4330 +6745 9695 0.4240 +6745 9789 0.7250 +6745 10075 0.6030 +6745 10130 0.4650 +6745 10576 0.4340 +6745 10632 0.4400 +6745 10952 0.9800 +6745 10959 0.5360 +6745 10970 0.4410 +6745 10972 0.6930 +6745 11231 0.7080 +6745 23471 0.7460 +6745 23478 0.5710 +6745 23480 0.9050 +6745 27230 0.4590 +6745 28972 0.6880 +6745 29927 0.9870 +6745 50999 0.4160 +6745 51009 0.4610 +6745 51726 0.4310 +6745 54499 0.4190 +6745 54901 0.4190 +6745 55176 0.6850 +6745 55210 0.4870 +6745 57003 0.4580 +6745 58477 0.7790 +6745 58505 0.9000 +6745 60559 0.7750 +6745 79139 0.8370 +6745 80267 0.5140 +6745 81502 0.4550 +6745 81542 0.5410 +6745 83858 0.4220 +6745 84061 0.6950 +6745 90701 0.5830 +6745 200185 0.4100 +6745 201595 0.6260 +6745 100128731 0.8720 +6746 6747 0.9990 +6746 6748 0.9990 +6746 6750 0.5270 +6746 6752 0.4040 +6746 7203 0.4020 +6746 7991 0.4390 +6746 8665 0.4190 +6746 9352 0.4120 +6746 9641 0.4740 +6746 9694 0.4490 +6746 9789 0.5650 +6746 10130 0.4240 +6746 10952 0.9960 +6746 10959 0.4010 +6746 11231 0.5800 +6746 23471 0.9520 +6746 23478 0.6270 +6746 23480 0.9460 +6746 23586 0.5180 +6746 28972 0.7330 +6746 29110 0.5690 +6746 29927 0.9920 +6746 51506 0.4490 +6746 55176 0.7940 +6746 55770 0.8280 +6746 55831 0.4090 +6746 57506 0.5720 +6746 58477 0.6880 +6746 58505 0.9240 +6746 60559 0.6200 +6746 64374 0.4260 +6746 79651 0.9500 +6746 81502 0.6000 +6746 83460 0.4050 +6746 84061 0.5050 +6746 90701 0.5380 +6746 200185 0.5230 +6746 201595 0.5030 +6746 285782 0.5220 +6746 340061 0.7600 +6746 644070 0.4880 +6746 100128731 0.8530 +6747 6748 0.9990 +6747 6753 0.5200 +6747 7916 0.4220 +6747 7991 0.4620 +6747 9789 0.8020 +6747 10130 0.4290 +6747 10952 0.9900 +6747 10959 0.4070 +6747 10972 0.4480 +6747 11231 0.5330 +6747 23471 0.6990 +6747 23478 0.6920 +6747 23480 0.9600 +6747 27230 0.4830 +6747 28972 0.6770 +6747 29927 0.9890 +6747 54499 0.4320 +6747 55176 0.8270 +6747 56993 0.4350 +6747 58477 0.6310 +6747 58505 0.9270 +6747 59340 0.4740 +6747 60559 0.7300 +6747 81502 0.5620 +6747 84061 0.7520 +6747 90701 0.6760 +6747 93380 0.4030 +6747 200185 0.4930 +6747 201595 0.5670 +6747 285782 0.4720 +6747 100128731 0.9230 +6748 7348 0.4250 +6748 7471 0.4240 +6748 7991 0.4530 +6748 8468 0.4560 +6748 9217 0.6130 +6748 9789 0.7290 +6748 10134 0.5590 +6748 10549 0.5310 +6748 10567 0.4240 +6748 10952 0.9940 +6748 10956 0.4630 +6748 10972 0.6100 +6748 23072 0.9160 +6748 23204 0.5640 +6748 23471 0.6240 +6748 23478 0.6630 +6748 23480 0.9610 +6748 25873 0.4520 +6748 28972 0.7390 +6748 29927 0.9670 +6748 51237 0.4910 +6748 51303 0.4230 +6748 54539 0.5300 +6748 55176 0.7560 +6748 56005 0.6950 +6748 56834 0.4370 +6748 57595 0.4020 +6748 58477 0.7290 +6748 58505 0.9180 +6748 60559 0.6040 +6748 60681 0.4220 +6748 79139 0.5660 +6748 84061 0.6680 +6748 90701 0.7020 +6748 116835 0.4070 +6748 120892 0.5100 +6748 200185 0.7350 +6748 201595 0.6760 +6748 222894 0.4270 +6748 374882 0.4050 +6748 100128731 0.9040 +6749 6827 0.9610 +6749 6829 0.9890 +6749 6830 0.9930 +6749 6917 0.7530 +6749 6919 0.7610 +6749 6920 0.4960 +6749 6921 0.5490 +6749 6923 0.5430 +6749 6924 0.7570 +6749 7150 0.6940 +6749 7153 0.6010 +6749 7155 0.4360 +6749 7157 0.7660 +6749 7343 0.4530 +6749 7443 0.4440 +6749 7469 0.6880 +6749 7507 0.4510 +6749 7508 0.6990 +6749 7515 0.6700 +6749 7520 0.8030 +6749 7936 0.7340 +6749 8019 0.4440 +6749 8178 0.5960 +6749 8243 0.4670 +6749 8289 0.6100 +6749 8290 0.7470 +6749 8294 0.9480 +6749 8329 0.5020 +6749 8331 0.4300 +6749 8334 0.9300 +6749 8337 0.8960 +6749 8338 0.9240 +6749 8339 0.8780 +6749 8340 0.4150 +6749 8341 0.4070 +6749 8342 0.4170 +6749 8343 0.8600 +6749 8344 0.8720 +6749 8345 0.4160 +6749 8346 0.8780 +6749 8347 0.8760 +6749 8348 0.4350 +6749 8349 0.9230 +6749 8350 0.9730 +6749 8351 0.9350 +6749 8352 0.9500 +6749 8353 0.9510 +6749 8354 0.9470 +6749 8355 0.9340 +6749 8356 0.9900 +6749 8357 0.9440 +6749 8358 0.9470 +6749 8359 0.9390 +6749 8360 0.9380 +6749 8361 0.9880 +6749 8362 0.9500 +6749 8363 0.9390 +6749 8364 0.9400 +6749 8366 0.9500 +6749 8367 0.9380 +6749 8368 0.9510 +6749 8369 0.5080 +6749 8370 0.9380 +6749 8458 0.6260 +6749 8467 0.6610 +6749 8570 0.4520 +6749 8607 0.4200 +6749 8621 0.6200 +6749 8805 0.7110 +6749 8812 0.6710 +6749 8906 0.6370 +6749 8914 0.7710 +6749 8968 0.9450 +6749 8970 0.6460 +6749 9150 0.5830 +6749 9188 0.9370 +6749 9212 0.4730 +6749 9221 0.4610 +6749 9343 0.5280 +6749 9441 0.4180 +6749 9533 0.6410 +6749 9555 0.4410 +6749 9557 0.6010 +6749 9584 0.5130 +6749 9646 0.9890 +6749 9656 0.5980 +6749 9967 0.5530 +6749 10036 0.5710 +6749 10155 0.5920 +6749 10189 0.4430 +6749 10212 0.4780 +6749 10284 0.6880 +6749 10291 0.4360 +6749 10528 0.4060 +6749 10594 0.4190 +6749 10657 0.5020 +6749 10783 0.4480 +6749 10849 0.4070 +6749 10927 0.5320 +6749 10951 0.4060 +6749 10992 0.4750 +6749 11143 0.4150 +6749 11169 0.6200 +6749 11177 0.4800 +6749 11198 0.9990 +6749 11284 0.5220 +6749 11331 0.4610 +6749 11335 0.4580 +6749 22916 0.6560 +6749 22936 0.6100 +6749 22938 0.4040 +6749 22985 0.4590 +6749 22992 0.4140 +6749 23076 0.4050 +6749 23135 0.4820 +6749 23163 0.5520 +6749 23168 0.9920 +6749 23234 0.4230 +6749 23299 0.5060 +6749 23379 0.5480 +6749 23435 0.4390 +6749 23468 0.5430 +6749 23476 0.7190 +6749 25842 0.5140 +6749 25920 0.6580 +6749 26088 0.5480 +6749 26227 0.4270 +6749 26610 0.5690 +6749 26747 0.5530 +6749 27125 0.6360 +6749 27339 0.4440 +6749 28992 0.4770 +6749 29028 0.4330 +6749 29072 0.5250 +6749 29087 0.4090 +6749 29113 0.7220 +6749 29117 0.4850 +6749 29935 0.4540 +6749 51092 0.4820 +6749 51224 0.6060 +6749 51433 0.5500 +6749 51497 0.5730 +6749 51550 0.8070 +6749 51574 0.4860 +6749 51592 0.7420 +6749 51593 0.5200 +6749 51755 0.6230 +6749 51773 0.6420 +6749 54145 0.4120 +6749 54443 0.4030 +6749 54454 0.4010 +6749 54606 0.5970 +6749 54623 0.9850 +6749 54815 0.4870 +6749 54847 0.4900 +6749 54962 0.4440 +6749 55023 0.4840 +6749 55125 0.4030 +6749 55133 0.6540 +6749 55209 0.4730 +6749 55215 0.5920 +6749 55250 0.6190 +6749 55294 0.5130 +6749 55506 0.6260 +6749 55636 0.4860 +6749 55677 0.9020 +6749 55703 0.5220 +6749 55723 0.4890 +6749 55840 0.5400 +6749 55929 0.4580 +6749 56254 0.5100 +6749 56916 0.5020 +6749 57050 0.4370 +6749 57132 0.5090 +6749 57680 0.5490 +6749 58496 0.4420 +6749 64083 0.4300 +6749 64785 0.7490 +6749 79228 0.4590 +6749 79577 0.9680 +6749 79664 0.5460 +6749 79829 0.6330 +6749 79968 0.6020 +6749 80205 0.4590 +6749 80237 0.5660 +6749 80349 0.7290 +6749 80820 0.6430 +6749 81611 0.6040 +6749 81847 0.7470 +6749 84172 0.5490 +6749 84181 0.6620 +6749 84248 0.6510 +6749 84296 0.7470 +6749 84321 0.4460 +6749 84337 0.7540 +6749 84524 0.5420 +6749 84717 0.4310 +6749 85236 0.4080 +6749 85403 0.5400 +6749 85456 0.6270 +6749 90417 0.6010 +6749 91754 0.7580 +6749 92421 0.4430 +6749 92815 0.5020 +6749 116447 0.4290 +6749 121504 0.9380 +6749 123169 0.9910 +6749 124245 0.7020 +6749 124773 0.4590 +6749 126961 0.4450 +6749 128312 0.5230 +6749 140609 0.4890 +6749 158983 0.4120 +6749 170082 0.4780 +6749 171023 0.5830 +6749 200558 0.7470 +6749 246721 0.4970 +6749 253714 0.8150 +6749 255626 0.7640 +6749 283106 0.4090 +6749 286436 0.4140 +6749 317772 0.6400 +6749 333932 0.4180 +6749 345630 0.4980 +6749 387893 0.4330 +6749 391769 0.5770 +6749 404672 0.5880 +6749 440093 0.7470 +6749 440686 0.7470 +6749 440689 0.4250 +6749 474343 0.4800 +6749 548644 0.4970 +6749 554313 0.9390 +6749 653604 0.8520 +6749 100134938 0.4180 +6749 107983993 0.4180 +6749 114483833 0.4130 +6750 6751 0.9990 +6750 6752 0.9990 +6750 6753 0.9970 +6750 6754 0.9990 +6750 6755 0.9990 +6750 6833 0.5760 +6750 6853 0.4790 +6750 6854 0.4220 +6750 6855 0.7460 +6750 6863 0.9680 +6750 6869 0.7250 +6750 7038 0.4660 +6750 7054 0.7010 +6750 7058 0.4030 +6750 7080 0.6260 +6750 7124 0.4340 +6750 7157 0.4870 +6750 7166 0.4700 +6750 7200 0.8110 +6750 7276 0.4060 +6750 7349 0.5080 +6750 7432 0.9410 +6750 7442 0.4920 +6750 7837 0.5710 +6750 7852 0.5300 +6750 7857 0.5450 +6750 8086 0.4160 +6750 8484 0.6290 +6750 8811 0.6650 +6750 8843 0.6590 +6750 8862 0.6740 +6750 8989 0.4090 +6750 9049 0.5070 +6750 9283 0.5240 +6750 9568 0.7450 +6750 9607 0.5420 +6750 9935 0.5110 +6750 10013 0.4100 +6750 10022 0.5510 +6750 10215 0.4330 +6750 10243 0.4890 +6750 10316 0.6070 +6750 10590 0.4570 +6750 10716 0.6450 +6750 10871 0.4180 +6750 10874 0.6750 +6750 10911 0.7680 +6750 23416 0.4020 +6750 24141 0.5640 +6750 25992 0.8250 +6750 26468 0.8140 +6750 27198 0.6750 +6750 27344 0.4270 +6750 29899 0.4410 +6750 50674 0.8410 +6750 51083 0.9500 +6750 51289 0.5690 +6750 51738 0.9250 +6750 54205 0.5100 +6750 54331 0.8170 +6750 55188 0.4800 +6750 55553 0.4140 +6750 56244 0.4330 +6750 56670 0.6760 +6750 56923 0.6160 +6750 57030 0.6500 +6750 57084 0.6870 +6750 57120 0.4310 +6750 57468 0.4940 +6750 64579 0.5140 +6750 79258 0.5590 +6750 84152 0.4720 +6750 84504 0.7290 +6750 84539 0.5780 +6750 93986 0.4820 +6750 114131 0.6210 +6750 117194 0.6960 +6750 117579 0.5490 +6750 120237 0.4710 +6750 126006 0.4450 +6750 129521 0.5960 +6750 130399 0.4640 +6750 137902 0.5710 +6750 139760 0.5510 +6750 140679 0.7170 +6750 146713 0.6140 +6750 170302 0.4440 +6750 222546 0.5080 +6750 246213 0.5450 +6750 256297 0.5160 +6750 256933 0.6050 +6750 283869 0.6140 +6750 284217 0.4120 +6750 338442 0.6810 +6750 347148 0.4680 +6750 389692 0.4620 +6750 392617 0.4190 +6750 431707 0.4840 +6750 619373 0.4190 +6750 723961 0.4080 +6750 104909134 0.6030 +6751 6752 0.4480 +6751 6753 0.4610 +6751 6754 0.6410 +6751 6755 0.7530 +6751 6865 0.4450 +6751 8484 0.5180 +6751 8811 0.7040 +6751 8862 0.5080 +6751 9283 0.5320 +6751 9547 0.4330 +6751 10018 0.4430 +6751 10316 0.5350 +6751 10753 0.4280 +6751 10874 0.5730 +6751 25992 0.4210 +6751 51083 0.6450 +6751 51738 0.7190 +6751 56923 0.5400 +6751 57120 0.5230 +6751 84539 0.5280 +6751 117579 0.4010 +6751 129521 0.4990 +6751 256933 0.6350 +6751 283869 0.5680 +6751 404037 0.4120 +6751 102800317 0.4100 +6752 6753 0.6070 +6752 6754 0.6430 +6752 6755 0.7370 +6752 6855 0.5320 +6752 6860 0.4870 +6752 6863 0.4570 +6752 6925 0.5600 +6752 7431 0.4150 +6752 7432 0.4120 +6752 8484 0.5210 +6752 8622 0.4360 +6752 8811 0.5350 +6752 8862 0.5150 +6752 9049 0.4550 +6752 9229 0.4520 +6752 9255 0.4200 +6752 9283 0.5210 +6752 10018 0.4610 +6752 10316 0.5200 +6752 10874 0.5200 +6752 10911 0.4740 +6752 22941 0.5040 +6752 25862 0.4350 +6752 25932 0.4260 +6752 25992 0.5110 +6752 29899 0.4190 +6752 50944 0.6300 +6752 51083 0.7450 +6752 51738 0.7700 +6752 54331 0.8160 +6752 56923 0.5220 +6752 63895 0.4330 +6752 84539 0.5470 +6752 125958 0.4130 +6752 129521 0.4990 +6752 256933 0.5670 +6752 257313 0.5120 +6752 283869 0.5710 +6753 6754 0.4810 +6753 6755 0.6560 +6753 7289 0.6030 +6753 8100 0.6020 +6753 8484 0.7050 +6753 8777 0.7440 +6753 8811 0.6970 +6753 8862 0.5000 +6753 9283 0.5250 +6753 10316 0.5480 +6753 10874 0.5530 +6753 11020 0.5000 +6753 11127 0.4530 +6753 23322 0.4360 +6753 23432 0.4130 +6753 26086 0.4010 +6753 27077 0.5770 +6753 27241 0.8120 +6753 50832 0.4590 +6753 50833 0.5780 +6753 50834 0.4950 +6753 51083 0.6110 +6753 54585 0.6370 +6753 55212 0.8540 +6753 56923 0.5300 +6753 57576 0.4790 +6753 63940 0.4130 +6753 79738 0.4140 +6753 79809 0.4510 +6753 80184 0.4900 +6753 84100 0.5020 +6753 84539 0.5050 +6753 84708 0.4770 +6753 90410 0.4700 +6753 92482 0.7360 +6753 114904 0.5040 +6753 126006 0.4130 +6753 129521 0.5140 +6753 129880 0.7880 +6753 166379 0.4290 +6753 200894 0.6750 +6753 256933 0.5970 +6753 259285 0.4670 +6753 259295 0.4260 +6753 261734 0.4160 +6753 283869 0.5580 +6753 386617 0.4600 +6753 392509 0.4300 +6754 6755 0.6200 +6754 7056 0.4630 +6754 8484 0.5450 +6754 8811 0.5170 +6754 8862 0.5000 +6754 9283 0.5430 +6754 10316 0.5230 +6754 10874 0.5380 +6754 10911 0.7260 +6754 11255 0.4120 +6754 23566 0.4200 +6754 26086 0.4010 +6754 51083 0.5910 +6754 54331 0.8160 +6754 56923 0.5490 +6754 84539 0.5450 +6754 129521 0.4990 +6754 140679 0.5650 +6754 256933 0.6330 +6754 283869 0.5580 +6755 7056 0.4300 +6755 7249 0.4790 +6755 8484 0.5250 +6755 8811 0.5350 +6755 8862 0.5000 +6755 9049 0.5150 +6755 9095 0.4010 +6755 9283 0.5030 +6755 9368 0.4730 +6755 10018 0.4570 +6755 10316 0.5440 +6755 10874 0.5470 +6755 29899 0.4410 +6755 51083 0.6170 +6755 51738 0.7680 +6755 56923 0.5300 +6755 57120 0.6940 +6755 80333 0.4230 +6755 84539 0.5070 +6755 129521 0.4990 +6755 256933 0.5740 +6755 283869 0.5680 +6755 283871 0.4240 +6756 6757 0.9660 +6756 6760 0.9690 +6756 7088 0.7780 +6756 8815 0.4140 +6756 8900 0.4450 +6756 9947 0.6820 +6756 10214 0.7550 +6756 23532 0.4130 +6756 24140 0.6830 +6756 26039 0.8780 +6756 30014 0.4540 +6756 30848 0.6760 +6756 51188 0.6680 +6756 51213 0.5930 +6756 51351 0.7600 +6756 51438 0.7430 +6756 53336 0.4590 +6756 54967 0.4640 +6756 55027 0.6530 +6756 55769 0.7600 +6756 56001 0.4340 +6756 64663 0.5510 +6756 81557 0.5070 +6756 84678 0.6660 +6756 89884 0.5670 +6756 92745 0.6510 +6756 117177 0.5600 +6756 117178 0.7610 +6756 139135 0.5380 +6756 266740 0.4220 +6756 653220 0.4500 +6756 728239 0.5070 +6756 729447 0.4080 +6756 100008586 0.4610 +6756 100532731 0.4930 +6757 6758 0.5160 +6757 6760 0.9860 +6757 6847 0.4470 +6757 6855 0.4280 +6757 7088 0.7850 +6757 7490 0.4330 +6757 8815 0.6980 +6757 8900 0.4710 +6757 9500 0.5910 +6757 9947 0.7030 +6757 10142 0.6010 +6757 10214 0.9360 +6757 10432 0.7680 +6757 10916 0.5220 +6757 23512 0.6610 +6757 23532 0.6820 +6757 26039 0.7740 +6757 30014 0.5720 +6757 30848 0.7090 +6757 51188 0.7230 +6757 51213 0.5280 +6757 51351 0.7440 +6757 51438 0.6950 +6757 54551 0.4590 +6757 54967 0.4460 +6757 55027 0.6970 +6757 55511 0.5060 +6757 55769 0.7420 +6757 56001 0.4880 +6757 56160 0.5900 +6757 64110 0.6280 +6757 64663 0.4440 +6757 65980 0.6270 +6757 79058 0.4160 +6757 81557 0.5780 +6757 84678 0.6940 +6757 85417 0.4450 +6757 89884 0.4910 +6757 117177 0.7300 +6757 117178 0.8640 +6757 139135 0.4700 +6757 158511 0.7980 +6757 158521 0.4700 +6757 266740 0.4900 +6757 266743 0.5910 +6757 280658 0.6130 +6757 389903 0.4770 +6757 541466 0.6010 +6757 653067 0.5520 +6757 653220 0.4980 +6757 727837 0.7830 +6757 728239 0.5700 +6757 728343 0.4670 +6757 728712 0.5490 +6757 729447 0.4290 +6757 100008586 0.4790 +6757 102723547 0.4790 +6758 6760 0.7370 +6758 10214 0.4060 +6758 30848 0.4110 +6758 51351 0.6880 +6758 51438 0.4300 +6758 55769 0.6870 +6758 57085 0.4780 +6758 283284 0.5110 +6759 6760 0.9300 +6759 7088 0.4790 +6759 9947 0.6690 +6759 26039 0.8170 +6759 30014 0.4240 +6759 30848 0.6460 +6759 51188 0.7200 +6759 51213 0.5860 +6759 51351 0.6390 +6759 51438 0.5670 +6759 54967 0.4960 +6759 55027 0.5060 +6759 55769 0.6390 +6759 81557 0.5410 +6759 117177 0.5610 +6759 117178 0.8060 +6759 139135 0.4320 +6759 389903 0.4460 +6759 541466 0.4300 +6759 548313 0.9990 +6759 728075 0.4710 +6759 728239 0.5270 +6759 729447 0.4630 +6759 100008586 0.4740 +6759 102723547 0.4480 +6760 6895 0.4940 +6760 7088 0.8380 +6760 8028 0.4030 +6760 8193 0.8930 +6760 8289 0.9930 +6760 8467 0.4010 +6760 8539 0.4460 +6760 8815 0.4030 +6760 9274 0.9990 +6760 9275 0.9870 +6760 9437 0.7200 +6760 9656 0.4390 +6760 10214 0.7180 +6760 10432 0.7690 +6760 11196 0.4620 +6760 23506 0.9310 +6760 23512 0.4010 +6760 29117 0.5510 +6760 29998 0.9880 +6760 51351 0.7700 +6760 51412 0.9530 +6760 53335 0.9080 +6760 55027 0.5960 +6760 55193 0.8510 +6760 55269 0.4940 +6760 55274 0.9520 +6760 55769 0.7720 +6760 57492 0.9890 +6760 64919 0.9040 +6760 65980 0.9890 +6760 84807 0.6130 +6760 196528 0.9610 +6760 548313 0.9320 +6760 727837 0.9180 +6764 6767 0.4930 +6764 8567 0.4420 +6764 9367 0.6410 +6764 11020 0.4200 +6764 11021 0.5020 +6764 23349 0.4270 +6764 50618 0.6150 +6764 51209 0.5990 +6764 57508 0.4330 +6764 57758 0.8400 +6764 64780 0.5020 +6764 84969 0.4030 +6767 6768 0.5930 +6767 6782 0.4540 +6767 6950 0.4770 +6767 7266 0.5100 +6767 7321 0.7060 +6767 7322 0.4220 +6767 7335 0.4150 +6767 7337 0.4190 +6767 7385 0.4820 +6767 7415 0.4620 +6767 9354 0.5900 +6767 9531 0.7260 +6767 9532 0.5980 +6767 10273 0.5080 +6767 10277 0.6070 +6767 10346 0.4100 +6767 10598 0.4270 +6767 10728 0.6770 +6767 11059 0.4280 +6767 22824 0.4620 +6767 23640 0.4530 +6767 26232 0.5200 +6767 26353 0.5730 +6767 27252 0.5320 +6767 29789 0.5030 +6767 29978 0.4040 +6767 51182 0.4540 +6767 55192 0.4010 +6767 55898 0.4440 +6767 63943 0.4690 +6767 84455 0.4050 +6767 92552 0.7820 +6767 116835 0.4580 +6767 152110 0.4040 +6767 165324 0.6540 +6767 259217 0.4390 +6768 8263 0.4260 +6768 8434 0.4080 +6768 10653 0.8510 +6768 11005 0.8870 +6768 25818 0.8200 +6768 56034 0.4450 +6768 64866 0.5470 +6768 80310 0.4180 +6768 160762 0.4350 +6768 388698 0.6270 +6769 7157 0.4180 +6769 7531 0.6960 +6769 8912 0.6410 +6769 9873 0.8840 +6769 10288 0.6730 +6769 10580 0.7750 +6769 10859 0.7140 +6769 10891 0.4350 +6769 23111 0.8890 +6769 23141 0.5820 +6769 51513 0.4460 +6769 80263 0.9090 +6769 115653 0.8590 +6769 342667 0.6430 +6770 6822 0.4710 +6770 7416 0.9950 +6770 7417 0.9580 +6770 7419 0.9110 +6770 7490 0.4640 +6770 8431 0.4860 +6770 9210 0.5190 +6770 9217 0.4820 +6770 9218 0.5210 +6770 9318 0.4510 +6770 9754 0.5580 +6770 10062 0.6500 +6770 10087 0.7170 +6770 10280 0.7200 +6770 10395 0.4130 +6770 10577 0.6720 +6770 10809 0.6900 +6770 10857 0.4330 +6770 10948 0.8070 +6770 26027 0.4180 +6770 51478 0.4440 +6770 54535 0.7780 +6770 55210 0.6220 +6770 56910 0.6660 +6770 56993 0.8920 +6770 58488 0.7910 +6770 64746 0.7960 +6770 79154 0.7380 +6770 80765 0.5330 +6770 83930 0.9870 +6770 90627 0.4700 +6770 112812 0.5600 +6770 114879 0.4050 +6770 134429 0.6870 +6770 134526 0.5050 +6770 147323 0.6340 +6770 222642 0.4620 +6772 6773 0.9990 +6772 6774 0.9990 +6772 6775 0.9940 +6772 6776 0.9690 +6772 6777 0.9580 +6772 6778 0.8770 +6772 6850 0.7530 +6772 6872 0.4740 +6772 6890 0.8310 +6772 6891 0.5810 +6772 6892 0.5510 +6772 6908 0.4070 +6772 6929 0.5420 +6772 7022 0.5790 +6772 7040 0.6470 +6772 7048 0.4590 +6772 7076 0.5740 +6772 7080 0.4360 +6772 7096 0.5180 +6772 7097 0.6810 +6772 7098 0.7570 +6772 7099 0.8670 +6772 7100 0.4820 +6772 7124 0.8750 +6772 7128 0.5490 +6772 7132 0.6280 +6772 7157 0.7810 +6772 7184 0.4660 +6772 7187 0.6010 +6772 7189 0.9020 +6772 7291 0.6370 +6772 7297 0.9970 +6772 7301 0.6400 +6772 7305 0.5080 +6772 7318 0.5640 +6772 7324 0.4660 +6772 7329 0.4630 +6772 7341 0.6870 +6772 7391 0.4260 +6772 7403 0.5040 +6772 7412 0.7580 +6772 7431 0.5640 +6772 7453 0.6150 +6772 7494 0.4580 +6772 7525 0.6430 +6772 7528 0.8480 +6772 7531 0.4980 +6772 7535 0.4670 +6772 7706 0.7820 +6772 7726 0.5840 +6772 7750 0.5660 +6772 7837 0.6130 +6772 7852 0.5130 +6772 8021 0.4940 +6772 8290 0.4770 +6772 8320 0.4520 +6772 8356 0.4790 +6772 8451 0.6280 +6772 8454 0.6190 +6772 8517 0.4790 +6772 8519 0.8450 +6772 8554 0.9990 +6772 8563 0.5010 +6772 8600 0.5880 +6772 8638 0.9120 +6772 8648 0.4350 +6772 8651 0.9660 +6772 8717 0.5280 +6772 8737 0.4950 +6772 8743 0.5940 +6772 8767 0.4440 +6772 8772 0.4680 +6772 8805 0.6290 +6772 8835 0.8420 +6772 8837 0.4090 +6772 8841 0.4460 +6772 8878 0.5260 +6772 8975 0.4170 +6772 9021 0.9880 +6772 9034 0.4810 +6772 9063 0.8700 +6772 9111 0.8550 +6772 9180 0.4060 +6772 9208 0.5500 +6772 9246 0.9150 +6772 9306 0.7680 +6772 9308 0.4280 +6772 9314 0.4180 +6772 9332 0.5910 +6772 9370 0.5180 +6772 9402 0.5150 +6772 9447 0.5440 +6772 9451 0.6380 +6772 9466 0.9840 +6772 9474 0.5490 +6772 9636 0.9870 +6772 9641 0.9640 +6772 9655 0.9190 +6772 9734 0.4400 +6772 9759 0.6950 +6772 9794 0.5500 +6772 9830 0.6620 +6772 9846 0.5620 +6772 9972 0.4980 +6772 9975 0.4040 +6772 9978 0.6070 +6772 10010 0.4520 +6772 10014 0.5130 +6772 10018 0.4060 +6772 10044 0.4280 +6772 10045 0.5760 +6772 10046 0.4990 +6772 10062 0.4190 +6772 10068 0.5510 +6772 10076 0.4170 +6772 10107 0.5050 +6772 10135 0.5190 +6772 10146 0.4790 +6772 10148 0.7920 +6772 10155 0.6110 +6772 10188 0.4070 +6772 10320 0.4220 +6772 10346 0.8250 +6772 10371 0.4200 +6772 10379 0.9990 +6772 10392 0.4010 +6772 10399 0.9820 +6772 10401 0.9510 +6772 10410 0.8260 +6772 10437 0.6900 +6772 10461 0.5680 +6772 10475 0.6270 +6772 10538 0.5380 +6772 10561 0.9150 +6772 10563 0.6610 +6772 10581 0.7370 +6772 10612 0.5050 +6772 10661 0.5220 +6772 10664 0.5870 +6772 10673 0.7190 +6772 10875 0.4710 +6772 10891 0.6230 +6772 10906 0.5990 +6772 10964 0.8700 +6772 10987 0.6220 +6772 11009 0.6710 +6772 11035 0.4030 +6772 11052 0.5290 +6772 11064 0.5040 +6772 11074 0.5650 +6772 11116 0.7530 +6772 11213 0.4190 +6772 11266 0.4900 +6772 11274 0.8860 +6772 22914 0.4740 +6772 23087 0.5370 +6772 23321 0.5150 +6772 23405 0.4720 +6772 23411 0.6350 +6772 23462 0.8130 +6772 23476 0.4910 +6772 23586 0.9940 +6772 23601 0.5130 +6772 23633 0.7240 +6772 23643 0.6210 +6772 23650 0.5720 +6772 23765 0.6180 +6772 24138 0.8500 +6772 25820 0.4410 +6772 25939 0.7460 +6772 26127 0.5180 +6772 26145 0.4080 +6772 26227 0.6030 +6772 26270 0.4290 +6772 29110 0.7480 +6772 29126 0.7760 +6772 29851 0.5070 +6772 29883 0.6580 +6772 30009 0.8460 +6772 30835 0.6600 +6772 30837 0.7850 +6772 50506 0.4670 +6772 50615 0.8330 +6772 50616 0.7570 +6772 50943 0.8490 +6772 51056 0.7790 +6772 51127 0.5520 +6772 51135 0.5150 +6772 51191 0.8070 +6772 51284 0.7020 +6772 51311 0.5930 +6772 51447 0.5140 +6772 51561 0.4300 +6772 51588 0.9150 +6772 53832 0.8130 +6772 53833 0.6200 +6772 53840 0.5600 +6772 54106 0.6170 +6772 54205 0.4270 +6772 54625 0.8990 +6772 54739 0.9310 +6772 54809 0.6150 +6772 55008 0.6520 +6772 55072 0.6660 +6772 55128 0.5110 +6772 55223 0.5190 +6772 55294 0.5810 +6772 55534 0.5290 +6772 55601 0.7830 +6772 55801 0.8230 +6772 55818 0.6040 +6772 56829 0.4300 +6772 56832 0.5150 +6772 57007 0.4070 +6772 57154 0.4180 +6772 57169 0.4460 +6772 57492 0.4400 +6772 57506 0.7730 +6772 57674 0.4720 +6772 58480 0.4210 +6772 58985 0.7380 +6772 59067 0.7810 +6772 59272 0.4930 +6772 59307 0.4270 +6772 60489 0.5990 +6772 64108 0.6720 +6772 64127 0.4960 +6772 64135 0.9630 +6772 64170 0.5010 +6772 64236 0.4070 +6772 64581 0.4800 +6772 64761 0.5760 +6772 79097 0.5210 +6772 79132 0.7120 +6772 80128 0.5050 +6772 80263 0.5050 +6772 80380 0.5600 +6772 80381 0.4990 +6772 80830 0.5170 +6772 81030 0.4600 +6772 81603 0.5540 +6772 81622 0.4440 +6772 81631 0.5610 +6772 81704 0.4280 +6772 83666 0.9430 +6772 84166 0.6420 +6772 84285 0.6090 +6772 84441 0.5390 +6772 84444 0.6020 +6772 84868 0.5430 +6772 84955 0.6210 +6772 85363 0.7210 +6772 85441 0.5310 +6772 85476 0.4200 +6772 85480 0.4840 +6772 87178 0.5370 +6772 90865 0.5420 +6772 91543 0.9490 +6772 94240 0.8370 +6772 112744 0.6330 +6772 114548 0.5300 +6772 114609 0.4090 +6772 115004 0.6240 +6772 115361 0.8530 +6772 115362 0.9340 +6772 116071 0.5450 +6772 116379 0.5110 +6772 117854 0.6370 +6772 120892 0.4230 +6772 121340 0.5070 +6772 122809 0.8180 +6772 129607 0.5990 +6772 133522 0.5570 +6772 137902 0.6130 +6772 139716 0.5060 +6772 140885 0.4460 +6772 146433 0.6190 +6772 148022 0.4280 +6772 149233 0.5140 +6772 151636 0.9260 +6772 163351 0.6840 +6772 163702 0.9230 +6772 165631 0.6160 +6772 169355 0.6220 +6772 197259 0.4010 +6772 201633 0.4210 +6772 219285 0.8870 +6772 246778 0.8460 +6772 282616 0.7520 +6772 282617 0.7870 +6772 282618 0.8850 +6772 338376 0.5110 +6772 340061 0.4880 +6772 345611 0.4450 +6772 359948 0.4870 +6772 386653 0.5420 +6772 388646 0.6570 +6772 399687 0.5000 +6772 440093 0.4770 +6772 440686 0.4830 +6772 653145 0.5110 +6772 653604 0.4870 +6773 6774 0.9540 +6773 6775 0.9460 +6773 6776 0.8650 +6773 6777 0.8810 +6773 6778 0.9910 +6773 6886 0.4640 +6773 6890 0.4130 +6773 6929 0.4820 +6773 7097 0.4770 +6773 7098 0.6760 +6773 7099 0.5090 +6773 7124 0.5670 +6773 7157 0.4220 +6773 7187 0.5140 +6773 7189 0.4630 +6773 7297 0.9980 +6773 7318 0.5360 +6773 7706 0.7590 +6773 8451 0.6230 +6773 8454 0.5780 +6773 8519 0.7870 +6773 8554 0.9440 +6773 8638 0.8640 +6773 8651 0.9090 +6773 8835 0.5320 +6773 8850 0.4180 +6773 9021 0.9770 +6773 9063 0.7500 +6773 9111 0.9090 +6773 9246 0.5440 +6773 9282 0.7590 +6773 9440 0.4700 +6773 9636 0.9600 +6773 9641 0.6450 +6773 9655 0.4020 +6773 9759 0.5030 +6773 10010 0.4070 +6773 10044 0.4090 +6773 10045 0.6220 +6773 10346 0.4720 +6773 10352 0.4040 +6773 10370 0.4140 +6773 10379 0.9990 +6773 10399 0.9100 +6773 10401 0.7820 +6773 10410 0.8030 +6773 10561 0.7170 +6773 10581 0.7010 +6773 10906 0.4260 +6773 10964 0.6700 +6773 11274 0.9570 +6773 23352 0.7350 +6773 23586 0.8750 +6773 24138 0.8470 +6773 25939 0.6880 +6773 26145 0.4420 +6773 29110 0.7010 +6773 29126 0.4360 +6773 29978 0.4160 +6773 30835 0.5300 +6773 50943 0.4310 +6773 51191 0.7220 +6773 51284 0.6390 +6773 51311 0.5080 +6773 51447 0.4990 +6773 51588 0.7490 +6773 51601 0.4950 +6773 54106 0.4880 +6773 54625 0.8390 +6773 54739 0.8240 +6773 55008 0.4680 +6773 55072 0.5450 +6773 55337 0.4250 +6773 55601 0.5250 +6773 56832 0.5800 +6773 57169 0.6090 +6773 57506 0.6870 +6773 57622 0.4170 +6773 57674 0.4180 +6773 64108 0.6180 +6773 64135 0.8880 +6773 64761 0.4480 +6773 79132 0.8150 +6773 79969 0.4730 +6773 83666 0.7200 +6773 84166 0.4020 +6773 85441 0.5910 +6773 91543 0.8630 +6773 94240 0.4980 +6773 114907 0.4240 +6773 115004 0.5230 +6773 115361 0.4760 +6773 115362 0.4800 +6773 122809 0.4220 +6773 129607 0.6740 +6773 148022 0.4010 +6773 163702 0.8970 +6773 219285 0.5710 +6773 282616 0.5850 +6773 282617 0.5830 +6773 282618 0.8050 +6773 338376 0.5790 +6773 340061 0.4430 +6773 359948 0.4280 +6774 6775 0.9730 +6774 6776 0.9970 +6774 6777 0.9980 +6774 6778 0.8990 +6774 6786 0.5260 +6774 6790 0.6160 +6774 6794 0.5110 +6774 6801 0.5610 +6774 6850 0.9800 +6774 6868 0.5070 +6774 6885 0.8120 +6774 6925 0.4580 +6774 6926 0.5820 +6774 6927 0.7230 +6774 6929 0.4400 +6774 6932 0.4310 +6774 6950 0.5840 +6774 7001 0.6900 +6774 7010 0.4670 +6774 7015 0.6690 +6774 7019 0.5770 +6774 7027 0.6400 +6774 7029 0.5090 +6774 7037 0.5040 +6774 7039 0.7140 +6774 7040 0.8700 +6774 7042 0.5010 +6774 7043 0.4340 +6774 7046 0.5190 +6774 7048 0.5650 +6774 7057 0.5260 +6774 7066 0.4360 +6774 7070 0.4870 +6774 7076 0.7720 +6774 7077 0.4110 +6774 7078 0.4080 +6774 7082 0.5890 +6774 7096 0.4290 +6774 7097 0.6560 +6774 7098 0.6060 +6774 7099 0.8460 +6774 7100 0.4610 +6774 7122 0.5940 +6774 7124 0.9390 +6774 7128 0.6280 +6774 7132 0.8290 +6774 7133 0.6940 +6774 7157 0.9940 +6774 7170 0.5850 +6774 7171 0.5790 +6774 7175 0.5080 +6774 7182 0.4110 +6774 7184 0.4920 +6774 7187 0.4350 +6774 7189 0.8870 +6774 7203 0.7340 +6774 7249 0.4640 +6774 7251 0.6060 +6774 7253 0.4250 +6774 7291 0.8800 +6774 7293 0.6320 +6774 7295 0.5810 +6774 7297 0.9970 +6774 7316 0.4180 +6774 7350 0.5010 +6774 7391 0.4120 +6774 7392 0.6080 +6774 7409 0.4420 +6774 7412 0.8180 +6774 7414 0.6860 +6774 7423 0.5770 +6774 7424 0.4800 +6774 7428 0.4880 +6774 7431 0.8260 +6774 7471 0.4400 +6774 7474 0.5030 +6774 7494 0.5700 +6774 7525 0.6630 +6774 7528 0.4940 +6774 7534 0.5420 +6774 7535 0.5010 +6774 7543 0.4220 +6774 7707 0.5020 +6774 7750 0.5760 +6774 7837 0.8240 +6774 7850 0.6700 +6774 7852 0.7750 +6774 7857 0.5110 +6774 7874 0.4870 +6774 8022 0.4490 +6774 8027 0.4800 +6774 8031 0.5760 +6774 8061 0.4760 +6774 8091 0.4720 +6774 8237 0.4360 +6774 8289 0.4200 +6774 8290 0.6090 +6774 8320 0.6820 +6774 8356 0.6090 +6774 8431 0.4240 +6774 8496 0.5160 +6774 8503 0.5870 +6774 8517 0.6350 +6774 8549 0.5200 +6774 8553 0.5340 +6774 8554 0.9520 +6774 8563 0.5010 +6774 8600 0.5880 +6774 8648 0.6530 +6774 8651 0.9440 +6774 8660 0.4800 +6774 8678 0.8030 +6774 8737 0.4810 +6774 8743 0.4730 +6774 8772 0.4870 +6774 8784 0.4070 +6774 8795 0.4960 +6774 8797 0.4260 +6774 8805 0.7970 +6774 8809 0.6810 +6774 8817 0.5480 +6774 8822 0.5420 +6774 8823 0.5420 +6774 8835 0.9030 +6774 8837 0.6160 +6774 8841 0.8890 +6774 8842 0.6410 +6774 8844 0.5360 +6774 8850 0.4990 +6774 8861 0.4490 +6774 8877 0.4800 +6774 8878 0.6800 +6774 8879 0.5240 +6774 8900 0.4930 +6774 8914 0.4370 +6774 8988 0.7160 +6774 9021 0.9940 +6774 9023 0.4180 +6774 9034 0.6020 +6774 9046 0.4990 +6774 9047 0.4530 +6774 9063 0.9100 +6774 9076 0.4040 +6774 9077 0.6550 +6774 9111 0.4910 +6774 9134 0.5600 +6774 9139 0.5540 +6774 9180 0.6070 +6774 9208 0.5350 +6774 9235 0.4190 +6774 9261 0.4650 +6774 9306 0.8200 +6774 9314 0.7500 +6774 9322 0.6080 +6774 9332 0.6370 +6774 9370 0.5810 +6774 9402 0.5450 +6774 9429 0.6590 +6774 9437 0.4060 +6774 9451 0.8070 +6774 9459 0.4010 +6774 9466 0.8710 +6774 9474 0.6040 +6774 9475 0.5710 +6774 9518 0.4210 +6774 9564 0.4040 +6774 9611 0.4030 +6774 9636 0.4540 +6774 9641 0.4720 +6774 9646 0.5900 +6774 9648 0.5010 +6774 9655 0.8400 +6774 9734 0.4050 +6774 9759 0.4490 +6774 9817 0.6590 +6774 9839 0.5550 +6774 9846 0.6430 +6774 9935 0.4700 +6774 9939 0.6280 +6774 9965 0.5700 +6774 9971 0.4490 +6774 10000 0.4900 +6774 10013 0.6330 +6774 10014 0.5130 +6774 10018 0.5910 +6774 10105 0.7020 +6774 10127 0.5180 +6774 10135 0.4930 +6774 10148 0.5960 +6774 10155 0.4940 +6774 10238 0.4140 +6774 10254 0.6200 +6774 10273 0.4320 +6774 10320 0.4560 +6774 10342 0.5860 +6774 10365 0.5010 +6774 10369 0.4200 +6774 10379 0.9870 +6774 10399 0.5560 +6774 10401 0.9990 +6774 10410 0.4940 +6774 10413 0.8180 +6774 10419 0.7120 +6774 10458 0.4090 +6774 10461 0.4310 +6774 10517 0.4160 +6774 10524 0.4980 +6774 10528 0.4090 +6774 10533 0.4800 +6774 10538 0.8820 +6774 10563 0.4950 +6774 10564 0.4180 +6774 10574 0.5380 +6774 10575 0.5580 +6774 10576 0.5920 +6774 10581 0.5060 +6774 10616 0.4280 +6774 10628 0.5890 +6774 10631 0.4310 +6774 10657 0.6320 +6774 10661 0.5650 +6774 10664 0.4640 +6774 10673 0.4870 +6774 10678 0.4480 +6774 10693 0.5070 +6774 10694 0.5660 +6774 10725 0.7480 +6774 10763 0.5430 +6774 10875 0.4820 +6774 10891 0.5380 +6774 10912 0.5220 +6774 10987 0.6610 +6774 11009 0.8310 +6774 11040 0.4200 +6774 11052 0.5220 +6774 11060 0.5790 +6774 11064 0.5000 +6774 11116 0.7530 +6774 11122 0.5690 +6774 11200 0.6420 +6774 11213 0.4990 +6774 11322 0.8940 +6774 11328 0.4150 +6774 22803 0.4470 +6774 22872 0.5540 +6774 22914 0.5300 +6774 22926 0.4490 +6774 22943 0.4110 +6774 22948 0.5810 +6774 23028 0.5700 +6774 23135 0.4410 +6774 23308 0.4260 +6774 23326 0.4430 +6774 23405 0.5330 +6774 23410 0.4070 +6774 23411 0.8170 +6774 23468 0.5610 +6774 23476 0.8260 +6774 23512 0.5680 +6774 23528 0.5020 +6774 23586 0.5370 +6774 23633 0.4860 +6774 23705 0.4140 +6774 23765 0.6150 +6774 25800 0.6310 +6774 25942 0.9290 +6774 25970 0.4310 +6774 26060 0.5350 +6774 26127 0.5380 +6774 26190 0.4140 +6774 26224 0.4010 +6774 26234 0.4710 +6774 26270 0.4410 +6774 26272 0.4160 +6774 26281 0.5420 +6774 26291 0.4080 +6774 26330 0.5990 +6774 26985 0.4080 +6774 27006 0.5560 +6774 27043 0.6280 +6774 27111 0.4210 +6774 27161 0.6720 +6774 27178 0.6880 +6774 27250 0.5280 +6774 27436 0.7080 +6774 28999 0.4600 +6774 29097 0.4290 +6774 29102 0.6720 +6774 29110 0.5180 +6774 29126 0.9920 +6774 29127 0.5360 +6774 29851 0.5980 +6774 29949 0.8370 +6774 30009 0.7890 +6774 30837 0.8670 +6774 50507 0.4650 +6774 50604 0.5210 +6774 50615 0.9810 +6774 50616 0.9260 +6774 50674 0.5650 +6774 50943 0.9840 +6774 51079 0.9370 +6774 51094 0.5120 +6774 51135 0.4750 +6774 51176 0.4720 +6774 51284 0.7270 +6774 51311 0.4650 +6774 51438 0.4050 +6774 51474 0.4370 +6774 51561 0.7500 +6774 51588 0.8620 +6774 51593 0.4420 +6774 51701 0.4300 +6774 51741 0.5070 +6774 53335 0.6100 +6774 53832 0.8830 +6774 53833 0.7930 +6774 54106 0.5920 +6774 54205 0.6280 +6774 54206 0.4800 +6774 54461 0.4050 +6774 54541 0.6040 +6774 54567 0.4050 +6774 54790 0.5040 +6774 54940 0.5560 +6774 55124 0.8320 +6774 55135 0.4500 +6774 55164 0.4380 +6774 55250 0.6100 +6774 55278 0.4170 +6774 55294 0.7940 +6774 55509 0.4580 +6774 55620 0.9470 +6774 55801 0.8410 +6774 55869 0.7140 +6774 55914 0.5730 +6774 56302 0.4550 +6774 56729 0.4380 +6774 56940 0.5870 +6774 57167 0.8800 +6774 57448 0.6090 +6774 57506 0.4450 +6774 57509 0.4120 +6774 57521 0.4050 +6774 57817 0.5970 +6774 58191 0.4270 +6774 58480 0.5690 +6774 58985 0.9450 +6774 59067 0.7770 +6774 59272 0.6280 +6774 59307 0.6270 +6774 59345 0.4330 +6774 63973 0.4710 +6774 63978 0.5270 +6774 64083 0.4330 +6774 64127 0.5100 +6774 64135 0.4410 +6774 64170 0.5320 +6774 64220 0.4810 +6774 64332 0.8590 +6774 64581 0.4370 +6774 65018 0.4490 +6774 79400 0.4460 +6774 79602 0.4650 +6774 79727 0.7160 +6774 79865 0.5780 +6774 79923 0.9950 +6774 79930 0.4460 +6774 80304 0.4990 +6774 80380 0.6970 +6774 80381 0.5340 +6774 80854 0.4870 +6774 81559 0.4450 +6774 81620 0.4180 +6774 81631 0.4740 +6774 81669 0.5700 +6774 81704 0.6000 +6774 83752 0.4330 +6774 84260 0.4710 +6774 84335 0.4030 +6774 84433 0.4190 +6774 84514 0.5790 +6774 84666 0.4780 +6774 84818 0.4470 +6774 84868 0.5840 +6774 84876 0.4880 +6774 84955 0.6200 +6774 85480 0.7250 +6774 89780 0.4450 +6774 90427 0.4350 +6774 90480 0.6690 +6774 90865 0.5690 +6774 93649 0.5220 +6774 112744 0.8680 +6774 112970 0.4440 +6774 114548 0.5580 +6774 114609 0.4220 +6774 116379 0.6490 +6774 122809 0.8400 +6774 128869 0.4260 +6774 130120 0.5050 +6774 137902 0.8240 +6774 139716 0.5040 +6774 139818 0.4060 +6774 140885 0.4630 +6774 146433 0.6520 +6774 148738 0.4180 +6774 149233 0.9800 +6774 150684 0.4510 +6774 154810 0.9650 +6774 163702 0.6470 +6774 168400 0.4490 +6774 169355 0.5410 +6774 201633 0.4400 +6774 220972 0.4070 +6774 246778 0.8070 +6774 255738 0.4320 +6774 257202 0.4570 +6774 257397 0.4440 +6774 282618 0.6710 +6774 284119 0.6730 +6774 286827 0.6910 +6774 338872 0.4610 +6774 386653 0.5960 +6774 388112 0.9130 +6774 388585 0.7990 +6774 399687 0.5240 +6774 414062 0.6590 +6774 440093 0.6090 +6774 440387 0.4660 +6774 440686 0.6220 +6774 493869 0.4410 +6774 653604 0.6230 +6774 730249 0.4830 +6774 100131390 0.4120 +6774 100133941 0.6020 +6774 100506658 0.4460 +6774 100532731 0.5370 +6774 102723407 0.4010 +6774 104909134 0.4600 +6775 6776 0.8320 +6775 6777 0.8270 +6775 6778 0.9320 +6775 6888 0.7500 +6775 6950 0.7500 +6775 7040 0.4240 +6775 7097 0.4740 +6775 7098 0.4920 +6775 7099 0.4590 +6775 7124 0.7340 +6775 7128 0.6570 +6775 7185 0.6660 +6775 7292 0.4910 +6775 7297 0.9730 +6775 7535 0.4790 +6775 8302 0.5090 +6775 8320 0.7360 +6775 8554 0.7670 +6775 8651 0.6720 +6775 8807 0.4710 +6775 8809 0.5650 +6775 9021 0.7010 +6775 9034 0.5140 +6775 9049 0.7500 +6775 9063 0.8210 +6775 9446 0.7530 +6775 9466 0.4560 +6775 9636 0.4680 +6775 9987 0.7560 +6775 10148 0.7520 +6775 10219 0.4480 +6775 10318 0.5490 +6775 10320 0.4340 +6775 10379 0.9770 +6775 10401 0.7560 +6775 10538 0.5230 +6775 10666 0.4530 +6775 10673 0.4100 +6775 11262 0.4130 +6775 22797 0.4040 +6775 22806 0.4280 +6775 22861 0.5190 +6775 22914 0.4600 +6775 23534 0.4180 +6775 23569 0.5140 +6775 26191 0.8400 +6775 27033 0.5300 +6775 27166 0.4220 +6775 27250 0.7660 +6775 29110 0.4770 +6775 29126 0.4580 +6775 29851 0.6020 +6775 30009 0.9080 +6775 50615 0.7450 +6775 50616 0.5410 +6775 50943 0.6530 +6775 51284 0.4710 +6775 51311 0.4070 +6775 51561 0.8030 +6775 51588 0.7680 +6775 51752 0.4980 +6775 54106 0.4110 +6775 54899 0.4490 +6775 55024 0.6320 +6775 57506 0.4110 +6775 59067 0.7200 +6775 64135 0.4460 +6775 64236 0.5740 +6775 83648 0.5710 +6775 84868 0.4700 +6775 112744 0.5620 +6775 115352 0.5030 +6775 149233 0.9110 +6775 163702 0.6110 +6775 282618 0.6350 +6775 654483 0.7500 +6776 6777 0.9490 +6776 6778 0.9380 +6776 6850 0.7750 +6776 6886 0.5680 +6776 6908 0.4520 +6776 6929 0.4280 +6776 6932 0.4150 +6776 7037 0.4580 +6776 7040 0.5630 +6776 7066 0.5700 +6776 7097 0.6340 +6776 7098 0.4290 +6776 7099 0.4840 +6776 7124 0.6710 +6776 7157 0.7550 +6776 7189 0.6280 +6776 7268 0.4020 +6776 7293 0.4450 +6776 7297 0.9820 +6776 7409 0.4260 +6776 7494 0.5050 +6776 7525 0.6020 +6776 7528 0.6050 +6776 7535 0.5590 +6776 7750 0.6250 +6776 7837 0.4880 +6776 7852 0.4830 +6776 8050 0.6280 +6776 8290 0.4200 +6776 8320 0.4670 +6776 8356 0.6970 +6776 8554 0.7730 +6776 8639 0.4320 +6776 8648 0.4280 +6776 8651 0.9270 +6776 8660 0.6400 +6776 8784 0.5050 +6776 8805 0.5680 +6776 8835 0.8820 +6776 9021 0.9000 +6776 9034 0.4640 +6776 9063 0.7390 +6776 9111 0.5350 +6776 9180 0.5360 +6776 9208 0.5190 +6776 9306 0.7740 +6776 9321 0.5070 +6776 9451 0.4330 +6776 9612 0.6990 +6776 9655 0.7950 +6776 9846 0.8170 +6776 10000 0.5960 +6776 10018 0.5130 +6776 10219 0.4330 +6776 10320 0.5720 +6776 10379 0.9490 +6776 10401 0.8000 +6776 10538 0.5450 +6776 10664 0.4970 +6776 10870 0.6090 +6776 11040 0.4780 +6776 11052 0.4990 +6776 11064 0.5150 +6776 11116 0.5070 +6776 22914 0.6580 +6776 23028 0.7770 +6776 23468 0.4390 +6776 25803 0.4240 +6776 26127 0.5680 +6776 27044 0.8000 +6776 29110 0.4680 +6776 29126 0.5490 +6776 29851 0.5480 +6776 30009 0.7340 +6776 30837 0.8400 +6776 50507 0.7920 +6776 50615 0.7330 +6776 50616 0.5120 +6776 50943 0.7480 +6776 51079 0.4800 +6776 51176 0.7500 +6776 51284 0.4050 +6776 51588 0.7450 +6776 54014 0.7660 +6776 54790 0.8070 +6776 55620 0.6470 +6776 55835 0.5160 +6776 57506 0.4150 +6776 58985 0.6110 +6776 59067 0.6890 +6776 59272 0.4410 +6776 64220 0.5370 +6776 79465 0.5350 +6776 79602 0.4460 +6776 80312 0.5300 +6776 80328 0.5350 +6776 80329 0.5380 +6776 84514 0.7130 +6776 84868 0.4540 +6776 85480 0.7090 +6776 90865 0.4470 +6776 112744 0.5060 +6776 122809 0.8040 +6776 133396 0.4620 +6776 137902 0.4890 +6776 140885 0.5600 +6776 149233 0.4380 +6776 163702 0.5840 +6776 164656 0.4490 +6776 282618 0.5890 +6776 284119 0.6530 +6776 386653 0.5550 +6776 399687 0.5090 +6776 440093 0.4200 +6776 440686 0.4200 +6776 653604 0.6970 +6777 6778 0.9230 +6777 6850 0.7630 +6777 6886 0.5640 +6777 6908 0.4510 +6777 6929 0.4290 +6777 7037 0.4720 +6777 7040 0.5320 +6777 7066 0.5710 +6777 7068 0.5280 +6777 7098 0.4660 +6777 7099 0.4500 +6777 7124 0.6370 +6777 7157 0.7280 +6777 7189 0.6270 +6777 7268 0.4050 +6777 7293 0.4180 +6777 7297 0.9840 +6777 7409 0.4320 +6777 7430 0.4770 +6777 7494 0.4960 +6777 7525 0.6000 +6777 7528 0.5840 +6777 7535 0.5280 +6777 7704 0.5850 +6777 7750 0.6300 +6777 7837 0.4620 +6777 7852 0.4480 +6777 7874 0.4270 +6777 8290 0.4070 +6777 8320 0.4670 +6777 8356 0.6960 +6777 8554 0.7790 +6777 8639 0.4090 +6777 8651 0.9260 +6777 8660 0.6530 +6777 8784 0.4810 +6777 8805 0.5630 +6777 8835 0.8970 +6777 9019 0.4210 +6777 9021 0.9000 +6777 9034 0.4010 +6777 9063 0.7510 +6777 9111 0.6300 +6777 9180 0.5420 +6777 9208 0.5040 +6777 9306 0.7820 +6777 9321 0.5080 +6777 9451 0.4270 +6777 9611 0.5340 +6777 9612 0.7070 +6777 9655 0.7970 +6777 9846 0.8730 +6777 10018 0.5280 +6777 10219 0.4460 +6777 10320 0.5460 +6777 10379 0.9490 +6777 10401 0.8120 +6777 10538 0.5120 +6777 10870 0.5890 +6777 11040 0.4590 +6777 11052 0.5320 +6777 11064 0.5070 +6777 11116 0.5070 +6777 22914 0.6640 +6777 23135 0.4100 +6777 23361 0.4120 +6777 23415 0.4240 +6777 25803 0.4050 +6777 26127 0.5490 +6777 27044 0.7990 +6777 29110 0.4820 +6777 29126 0.5380 +6777 29851 0.5320 +6777 30009 0.7270 +6777 30837 0.8000 +6777 50507 0.7930 +6777 50615 0.7330 +6777 50616 0.5240 +6777 50943 0.7480 +6777 51079 0.4910 +6777 51176 0.4350 +6777 51588 0.7500 +6777 51710 0.4120 +6777 54014 0.7590 +6777 54790 0.7710 +6777 55620 0.6780 +6777 55835 0.5210 +6777 57506 0.4380 +6777 57591 0.4980 +6777 58985 0.6130 +6777 59067 0.6880 +6777 59272 0.4390 +6777 60468 0.4600 +6777 64220 0.5520 +6777 64968 0.4270 +6777 79465 0.5290 +6777 80312 0.5330 +6777 80328 0.5300 +6777 80329 0.5320 +6777 80818 0.4140 +6777 81608 0.4470 +6777 84514 0.7330 +6777 84868 0.4900 +6777 85480 0.7090 +6777 90865 0.4360 +6777 112744 0.4950 +6777 115560 0.4100 +6777 122809 0.8130 +6777 133396 0.4570 +6777 137902 0.4610 +6777 140885 0.5720 +6777 148266 0.4130 +6777 149233 0.4200 +6777 163702 0.5830 +6777 164656 0.4430 +6777 171023 0.4110 +6777 282618 0.5930 +6777 284119 0.6520 +6777 284390 0.4120 +6777 386653 0.5360 +6777 399687 0.5130 +6777 440093 0.4070 +6777 440686 0.4070 +6777 653604 0.6910 +6778 6850 0.4610 +6778 6908 0.4800 +6778 7039 0.5450 +6778 7040 0.8620 +6778 7042 0.5330 +6778 7048 0.4200 +6778 7076 0.6220 +6778 7088 0.4150 +6778 7097 0.5490 +6778 7098 0.4500 +6778 7099 0.5940 +6778 7124 0.7820 +6778 7128 0.4150 +6778 7133 0.6250 +6778 7157 0.8030 +6778 7189 0.5700 +6778 7264 0.4820 +6778 7291 0.5580 +6778 7294 0.4300 +6778 7297 0.9640 +6778 7403 0.4140 +6778 7412 0.6860 +6778 7431 0.5940 +6778 7494 0.4100 +6778 7535 0.4100 +6778 7837 0.4400 +6778 8202 0.6640 +6778 8554 0.7560 +6778 8648 0.9970 +6778 8651 0.9430 +6778 8660 0.4660 +6778 8764 0.4160 +6778 8835 0.4570 +6778 9021 0.8720 +6778 9034 0.4150 +6778 9063 0.7240 +6778 9111 0.4920 +6778 9173 0.4700 +6778 9314 0.7220 +6778 9332 0.5870 +6778 9462 0.4080 +6778 9516 0.4270 +6778 9655 0.7650 +6778 10344 0.5710 +6778 10379 0.9870 +6778 10401 0.7690 +6778 10499 0.4440 +6778 10538 0.7410 +6778 11251 0.6040 +6778 23135 0.4310 +6778 25803 0.7860 +6778 27033 0.4660 +6778 27044 0.9340 +6778 27159 0.4710 +6778 27166 0.4560 +6778 29110 0.9170 +6778 29126 0.7140 +6778 29851 0.4340 +6778 30009 0.8780 +6778 50615 0.4070 +6778 50616 0.5410 +6778 50943 0.6830 +6778 51284 0.4300 +6778 51561 0.6450 +6778 51588 0.7550 +6778 54106 0.4270 +6778 54625 0.7180 +6778 55107 0.4340 +6778 55818 0.6220 +6778 57379 0.4020 +6778 57506 0.5420 +6778 58480 0.5180 +6778 64092 0.4770 +6778 64135 0.5350 +6778 79923 0.5650 +6778 80380 0.4930 +6778 84666 0.5700 +6778 84868 0.4010 +6778 85480 0.6200 +6778 90865 0.6090 +6778 112744 0.7670 +6778 122809 0.4410 +6778 133522 0.4490 +6778 137902 0.4370 +6778 149233 0.7640 +6778 340061 0.7530 +6778 388698 0.4020 +6778 440854 0.4600 +6779 7018 0.5410 +6779 7047 0.4160 +6779 9129 0.6780 +6779 10957 0.4480 +6779 11272 0.7470 +6779 11330 0.5880 +6779 51297 0.5390 +6779 54959 0.4120 +6779 58503 0.5670 +6779 84569 0.5050 +6779 140683 0.4310 +6779 146378 0.5500 +6779 260436 0.4900 +6779 401137 0.5730 +6779 403278 0.4180 +6779 440387 0.4720 +6779 653247 0.5820 +6779 727897 0.9560 +6780 6895 0.4240 +6780 7072 0.7810 +6780 7073 0.7950 +6780 7345 0.4420 +6780 7514 0.4670 +6780 7555 0.5390 +6780 7846 0.6380 +6780 7919 0.4420 +6780 8087 0.6660 +6780 8106 0.4730 +6780 8570 0.4870 +6780 8575 0.8360 +6780 8650 0.5450 +6780 8662 0.4750 +6780 8761 0.4350 +6780 8826 0.7790 +6780 8943 0.4110 +6780 9045 0.6880 +6780 9118 0.5310 +6780 9188 0.6860 +6780 9253 0.5290 +6780 9277 0.5780 +6780 9401 0.5170 +6780 9416 0.4190 +6780 9513 0.6590 +6780 9520 0.4810 +6780 9584 0.4940 +6780 9698 0.4660 +6780 9774 0.4700 +6780 9775 0.7620 +6780 9782 0.4090 +6780 9887 0.8220 +6780 9908 0.5660 +6780 9933 0.6830 +6780 9939 0.6390 +6780 10146 0.6960 +6780 10155 0.5720 +6780 10189 0.5310 +6780 10236 0.4200 +6780 10365 0.4260 +6780 10399 0.4830 +6780 10492 0.5400 +6780 10514 0.4800 +6780 10521 0.6670 +6780 10527 0.4530 +6780 10642 0.7610 +6780 10643 0.6980 +6780 10644 0.5700 +6780 10658 0.4930 +6780 10949 0.4300 +6780 10985 0.4130 +6780 10992 0.4540 +6780 11103 0.6020 +6780 11187 0.5420 +6780 11267 0.6080 +6780 22794 0.5750 +6780 22849 0.5910 +6780 22907 0.5750 +6780 22916 0.5380 +6780 23029 0.6130 +6780 23034 0.8350 +6780 23076 0.5090 +6780 23196 0.4940 +6780 23212 0.5300 +6780 23293 0.4920 +6780 23367 0.5750 +6780 23369 0.4210 +6780 23378 0.6100 +6780 23381 0.8380 +6780 23405 0.8000 +6780 23424 0.5350 +6780 23435 0.7960 +6780 25929 0.4410 +6780 26019 0.8860 +6780 26065 0.6470 +6780 26156 0.5070 +6780 26523 0.6500 +6780 26576 0.4200 +6780 26986 0.8800 +6780 27067 0.9050 +6780 27161 0.5730 +6780 29102 0.6460 +6780 29107 0.4660 +6780 51121 0.4370 +6780 51574 0.5540 +6780 51655 0.4590 +6780 51663 0.5300 +6780 54464 0.5970 +6780 54487 0.5760 +6780 54865 0.6170 +6780 54994 0.4660 +6780 55131 0.6920 +6780 55299 0.4740 +6780 55342 0.6270 +6780 55379 0.6320 +6780 55629 0.4230 +6780 55771 0.4230 +6780 55802 0.6390 +6780 55922 0.7070 +6780 56829 0.6130 +6780 57187 0.4330 +6780 64506 0.8310 +6780 64794 0.5230 +6780 64802 0.6260 +6780 65080 0.6090 +6780 65109 0.9080 +6780 65110 0.4460 +6780 65124 0.5100 +6780 65244 0.4390 +6780 79009 0.4230 +6780 79132 0.5230 +6780 79159 0.5560 +6780 80153 0.5220 +6780 80315 0.5780 +6780 84450 0.5860 +6780 84656 0.4140 +6780 117178 0.5960 +6780 117246 0.6310 +6780 131405 0.4370 +6780 132864 0.5680 +6780 144501 0.4070 +6780 149041 0.4890 +6780 167227 0.5130 +6780 170506 0.4140 +6780 192669 0.4210 +6780 203068 0.5210 +6780 220988 0.6680 +6780 257000 0.8250 +6780 285440 0.5130 +6780 400506 0.5880 +6780 440275 0.5100 +6780 692312 0.4280 +6781 7124 0.5550 +6781 7130 0.6150 +6781 7351 0.4010 +6781 8614 0.5520 +6781 8720 0.5480 +6781 54814 0.4070 +6781 80834 0.4510 +6781 80835 0.4490 +6781 83756 0.4920 +6781 92912 0.4130 +6781 140576 0.4160 +6781 151306 0.4490 +6781 338557 0.5540 +6782 6950 0.4320 +6782 7124 0.5780 +6782 7175 0.4270 +6782 7184 0.7880 +6782 7203 0.4010 +6782 7248 0.5300 +6782 7266 0.6700 +6782 8021 0.4380 +6782 8086 0.4030 +6782 8161 0.4400 +6782 8192 0.4200 +6782 8195 0.4010 +6782 8480 0.4350 +6782 8841 0.4220 +6782 9093 0.6640 +6782 9334 0.4860 +6782 9444 0.5560 +6782 9529 0.5450 +6782 9530 0.6380 +6782 9531 0.6990 +6782 9532 0.5530 +6782 9631 0.4240 +6782 9688 0.4580 +6782 9818 0.4320 +6782 9883 0.4380 +6782 9972 0.4460 +6782 10049 0.7610 +6782 10084 0.5250 +6782 10131 0.5420 +6782 10294 0.6730 +6782 10469 0.4570 +6782 10525 0.4220 +6782 10574 0.4130 +6782 10575 0.4230 +6782 10576 0.4390 +6782 10693 0.4160 +6782 10762 0.4110 +6782 10808 0.5760 +6782 10963 0.7150 +6782 11030 0.5190 +6782 11080 0.7750 +6782 11097 0.4320 +6782 11231 0.4390 +6782 22824 0.6650 +6782 22948 0.4030 +6782 23152 0.4950 +6782 23165 0.4280 +6782 23225 0.4850 +6782 23234 0.5410 +6782 23279 0.4160 +6782 23341 0.5480 +6782 23479 0.5300 +6782 23511 0.4030 +6782 23636 0.4070 +6782 23640 0.4750 +6782 25822 0.6330 +6782 25894 0.5470 +6782 25987 0.4270 +6782 26270 0.4100 +6782 27000 0.6100 +6782 29978 0.9900 +6782 29979 0.8870 +6782 49854 0.4020 +6782 51026 0.4770 +6782 51182 0.7460 +6782 51314 0.4300 +6782 51365 0.4720 +6782 51501 0.5970 +6782 51726 0.6760 +6782 53371 0.4620 +6782 54033 0.5240 +6782 54431 0.6650 +6782 54788 0.6570 +6782 55466 0.6960 +6782 55599 0.4510 +6782 55706 0.4250 +6782 55735 0.4210 +6782 55746 0.4300 +6782 56889 0.4330 +6782 56893 0.8560 +6782 56990 0.4320 +6782 57122 0.4600 +6782 64092 0.4860 +6782 64215 0.4530 +6782 64374 0.4480 +6782 79023 0.4710 +6782 79738 0.4080 +6782 79902 0.4110 +6782 79962 0.4820 +6782 79982 0.6400 +6782 80205 0.4750 +6782 80273 0.5910 +6782 80331 0.5760 +6782 81570 0.6820 +6782 81929 0.4140 +6782 84437 0.4760 +6782 84897 0.4170 +6782 84991 0.5220 +6782 85479 0.7270 +6782 96459 0.4220 +6782 113444 0.4330 +6782 116835 0.8380 +6782 120526 0.5540 +6782 129401 0.4190 +6782 134266 0.6080 +6782 136332 0.4400 +6782 140432 0.4200 +6782 150353 0.6360 +6782 165721 0.6300 +6782 171425 0.4200 +6782 200879 0.4260 +6782 202052 0.6200 +6782 259217 0.8660 +6782 285126 0.4370 +6782 285282 0.4250 +6782 348995 0.5850 +6782 374407 0.5620 +6782 548645 0.4470 +6782 552891 0.4200 +6782 100101267 0.4450 +6783 6818 0.5360 +6783 6819 0.5610 +6783 6820 0.8500 +6783 6822 0.7750 +6783 7013 0.6240 +6783 7015 0.9960 +6783 7355 0.4800 +6783 7363 0.9420 +6783 7364 0.9440 +6783 7365 0.9220 +6783 7366 0.9410 +6783 7367 0.9270 +6783 7534 0.5750 +6783 7923 0.9210 +6783 8630 0.9140 +6783 8644 0.9360 +6783 8856 0.5500 +6783 9060 0.5100 +6783 9061 0.4850 +6783 9887 0.8750 +6783 9970 0.4460 +6783 10720 0.9190 +6783 23293 0.8930 +6783 23381 0.8320 +6783 25830 0.5870 +6783 27233 0.5920 +6783 27284 0.5450 +6783 51144 0.9210 +6783 51478 0.9380 +6783 54490 0.9210 +6783 54575 0.9580 +6783 54576 0.9570 +6783 54577 0.9550 +6783 54578 0.9590 +6783 54579 0.9230 +6783 54600 0.9430 +6783 54657 0.9580 +6783 54658 0.9560 +6783 54659 0.9280 +6783 55869 0.5470 +6783 79154 0.5900 +6783 79799 0.9260 +6783 80169 0.4180 +6783 133688 0.4680 +6783 135152 0.4530 +6783 391365 0.6090 +6783 442038 0.4830 +6783 445329 0.5390 +6783 574537 0.9210 +6785 7078 0.4250 +6785 7439 0.6020 +6785 7525 0.4020 +6785 8842 0.7220 +6785 9200 0.9430 +6785 9415 0.6230 +6785 9517 0.4060 +6785 9524 0.9380 +6785 22999 0.5490 +6785 23431 0.4240 +6785 26154 0.4690 +6785 29956 0.6390 +6785 51144 0.9540 +6785 51495 0.9360 +6785 54714 0.8550 +6785 54904 0.6490 +6785 55304 0.4160 +6785 55603 0.9220 +6785 55711 0.4340 +6785 59344 0.4460 +6785 64834 0.9450 +6785 79152 0.5100 +6785 79966 0.4950 +6785 94137 0.4320 +6785 123099 0.4060 +6785 126410 0.5900 +6785 155038 0.4090 +6785 201562 0.9430 +6785 204219 0.6760 +6785 253782 0.4310 +6785 285848 0.5810 +6785 375298 0.4200 +6785 401494 0.9390 +6786 6836 0.6610 +6786 7057 0.4970 +6786 7124 0.6790 +6786 7184 0.4340 +6786 7220 0.9990 +6786 7222 0.9550 +6786 7223 0.9710 +6786 7224 0.9730 +6786 7225 0.9710 +6786 7226 0.7280 +6786 7416 0.4130 +6786 7442 0.5390 +6786 7837 0.4020 +6786 8775 0.5810 +6786 8913 0.6440 +6786 8989 0.6950 +6786 9217 0.4830 +6786 9218 0.4380 +6786 9456 0.7760 +6786 9530 0.4760 +6786 9554 0.6250 +6786 9600 0.4750 +6786 9854 0.4150 +6786 9914 0.6350 +6786 10087 0.5460 +6786 10117 0.4910 +6786 10345 0.5940 +6786 10367 0.5940 +6786 10725 0.4240 +6786 10970 0.5480 +6786 11231 0.4170 +6786 22919 0.8360 +6786 22924 0.8230 +6786 23236 0.4950 +6786 23344 0.8020 +6786 24145 0.5660 +6786 27032 0.4780 +6786 29110 0.4160 +6786 51393 0.5140 +6786 51669 0.9430 +6786 51806 0.6910 +6786 53373 0.4830 +6786 53407 0.4020 +6786 54795 0.5900 +6786 54822 0.6630 +6786 55107 0.4660 +6786 55503 0.6000 +6786 55752 0.4440 +6786 56302 0.4410 +6786 56704 0.6650 +6786 57158 0.5290 +6786 57192 0.4660 +6786 57338 0.4960 +6786 57488 0.5280 +6786 57620 0.9870 +6786 57719 0.5020 +6786 59341 0.6090 +6786 65055 0.4390 +6786 79054 0.5240 +6786 80024 0.5030 +6786 80036 0.4260 +6786 80228 0.9990 +6786 83850 0.6120 +6786 84502 0.7260 +6786 84766 0.9440 +6786 84876 0.9990 +6786 90070 0.4090 +6786 90550 0.5290 +6786 91860 0.6630 +6786 93129 0.9990 +6786 114882 0.4120 +6786 123041 0.4440 +6786 131965 0.4200 +6786 137902 0.4010 +6786 140803 0.4260 +6786 151651 0.5730 +6786 159371 0.7690 +6786 162514 0.4570 +6786 163688 0.6550 +6786 196996 0.4180 +6786 219931 0.4140 +6786 221154 0.4640 +6786 283229 0.5070 +6786 284612 0.4010 +6786 286077 0.4570 +6786 375346 0.6700 +6786 401138 0.4090 +6787 7531 0.4100 +6787 8924 0.5000 +6787 9787 0.4170 +6787 10783 0.5490 +6787 10806 0.4590 +6787 22861 0.4450 +6787 23299 0.4600 +6787 23322 0.8960 +6787 23503 0.4110 +6787 25861 0.5070 +6787 26160 0.6110 +6787 26354 0.5000 +6787 27130 0.4010 +6787 28972 0.4300 +6787 51479 0.4670 +6787 55812 0.4440 +6787 55830 0.6520 +6787 56946 0.4190 +6787 57096 0.6480 +6787 60385 0.5850 +6787 79053 0.4030 +6787 79770 0.4200 +6787 79809 0.6050 +6787 81554 0.6280 +6787 113457 0.4200 +6787 150472 0.4240 +6787 200162 0.6320 +6787 261734 0.4690 +6787 375346 0.4260 +6788 6789 0.9860 +6788 6801 0.4490 +6788 6901 0.4070 +6788 7871 0.7330 +6788 9113 0.9900 +6788 9218 0.5150 +6788 9770 0.9910 +6788 10413 0.8210 +6788 11035 0.4460 +6788 11186 0.9950 +6788 11337 0.4300 +6788 23619 0.4500 +6788 23710 0.4460 +6788 25843 0.6530 +6788 25937 0.8620 +6788 26524 0.9730 +6788 29888 0.4420 +6788 29966 0.4540 +6788 51421 0.5030 +6788 55201 0.6330 +6788 55233 0.9980 +6788 55294 0.5100 +6788 55844 0.9000 +6788 57116 0.4400 +6788 60485 0.9990 +6788 81631 0.4610 +6788 83593 0.9230 +6788 83937 0.9830 +6788 85369 0.4280 +6788 92597 0.9720 +6788 147923 0.6290 +6788 154796 0.5240 +6788 154810 0.5180 +6788 166824 0.9810 +6788 283349 0.8410 +6788 440738 0.5280 +6789 6801 0.6170 +6789 7003 0.6340 +6789 7004 0.4740 +6789 7005 0.4060 +6789 7132 0.4170 +6789 7157 0.5250 +6789 7295 0.4230 +6789 7692 0.4260 +6789 7871 0.6730 +6789 8349 0.7280 +6789 8463 0.4300 +6789 8945 0.5000 +6789 9113 0.9480 +6789 9218 0.4740 +6789 9686 0.4860 +6789 9770 0.9520 +6789 10085 0.4310 +6789 10413 0.8960 +6789 11151 0.4630 +6789 11186 0.9980 +6789 11337 0.4670 +6789 23286 0.4750 +6789 23291 0.4250 +6789 23513 0.6060 +6789 25828 0.4240 +6789 25843 0.5450 +6789 25937 0.8970 +6789 26127 0.5720 +6789 26524 0.9650 +6789 29888 0.4260 +6789 29966 0.5600 +6789 51135 0.4350 +6789 51421 0.6400 +6789 55201 0.6960 +6789 55233 0.9990 +6789 57116 0.4520 +6789 60485 0.9990 +6789 81631 0.6170 +6789 81704 0.5070 +6789 83593 0.9990 +6789 83937 0.7890 +6789 84061 0.5290 +6789 85369 0.4170 +6789 92597 0.9200 +6789 122786 0.5000 +6789 126308 0.5980 +6789 154796 0.8140 +6789 154810 0.5980 +6789 166824 0.8350 +6789 259230 0.4610 +6789 283349 0.8900 +6789 283629 0.4280 +6790 6795 0.8000 +6790 6867 0.8330 +6790 6897 0.6240 +6790 7083 0.5980 +6790 7124 0.5090 +6790 7153 0.9630 +6790 7155 0.4700 +6790 7157 0.9980 +6790 7161 0.4380 +6790 7272 0.7790 +6790 7283 0.7450 +6790 7298 0.7290 +6790 7299 0.5300 +6790 7311 0.4990 +6790 7314 0.5880 +6790 7316 0.5340 +6790 7321 0.5810 +6790 7324 0.5400 +6790 7329 0.7120 +6790 7334 0.5850 +6790 7341 0.5750 +6790 7428 0.5810 +6790 7465 0.5840 +6790 7468 0.5550 +6790 7704 0.4270 +6790 7764 0.4420 +6790 7874 0.4250 +6790 7884 0.4660 +6790 7979 0.4140 +6790 8290 0.8560 +6790 8295 0.4210 +6790 8317 0.5960 +6790 8318 0.7010 +6790 8350 0.4610 +6790 8356 0.6440 +6790 8361 0.4270 +6790 8379 0.5660 +6790 8405 0.4560 +6790 8438 0.5190 +6790 8452 0.4240 +6790 8454 0.6340 +6790 8481 0.4070 +6790 8556 0.5320 +6790 8697 0.6590 +6790 8835 0.4240 +6790 8881 0.6290 +6790 8900 0.6270 +6790 8914 0.5530 +6790 8945 0.4650 +6790 9021 0.4030 +6790 9055 0.9100 +6790 9088 0.4740 +6790 9126 0.5650 +6790 9133 0.9880 +6790 9134 0.8120 +6790 9156 0.6350 +6790 9184 0.6800 +6790 9212 0.9220 +6790 9232 0.9670 +6790 9319 0.7710 +6790 9491 0.4080 +6790 9493 0.9240 +6790 9585 0.6210 +6790 9700 0.7730 +6790 9701 0.5150 +6790 9735 0.5720 +6790 9768 0.7350 +6790 9787 0.9660 +6790 9793 0.9740 +6790 9833 0.9130 +6790 9837 0.4930 +6790 9861 0.4650 +6790 9918 0.6780 +6790 9928 0.6860 +6790 9960 0.5120 +6790 9978 0.5960 +6790 10013 0.9440 +6790 10018 0.4620 +6790 10024 0.5630 +6790 10051 0.6870 +6790 10075 0.5190 +6790 10095 0.4250 +6790 10112 0.9360 +6790 10133 0.4990 +6790 10146 0.4950 +6790 10197 0.4500 +6790 10206 0.4440 +6790 10213 0.5070 +6790 10389 0.6300 +6790 10393 0.5850 +6790 10403 0.9330 +6790 10460 0.9980 +6790 10498 0.5430 +6790 10521 0.5070 +6790 10535 0.4780 +6790 10579 0.5880 +6790 10592 0.7040 +6790 10615 0.8000 +6790 10635 0.6310 +6790 10643 0.4200 +6790 10644 0.4590 +6790 10733 0.6550 +6790 10744 0.5860 +6790 10769 0.5190 +6790 10801 0.5350 +6790 10807 0.4050 +6790 10848 0.4560 +6790 10907 0.6380 +6790 10919 0.4620 +6790 10926 0.4070 +6790 10982 0.5800 +6790 11004 0.9750 +6790 11065 0.9860 +6790 11091 0.4580 +6790 11104 0.6360 +6790 11130 0.7870 +6790 11156 0.4100 +6790 11169 0.4120 +6790 11186 0.5970 +6790 11190 0.5600 +6790 11261 0.4070 +6790 11276 0.4290 +6790 11335 0.4660 +6790 11339 0.6770 +6790 22822 0.9180 +6790 22849 0.9130 +6790 22919 0.7740 +6790 22924 0.6390 +6790 22948 0.4260 +6790 22974 0.9990 +6790 22994 0.4490 +6790 23194 0.6730 +6790 23198 0.4010 +6790 23310 0.4530 +6790 23369 0.4760 +6790 23397 0.8140 +6790 23405 0.4940 +6790 23476 0.5540 +6790 23493 0.4370 +6790 23522 0.4240 +6790 24137 0.8850 +6790 25886 0.5160 +6790 25906 0.5300 +6790 26271 0.6980 +6790 26278 0.4720 +6790 26524 0.7730 +6790 26586 0.5020 +6790 27005 0.5460 +6790 27338 0.7040 +6790 28988 0.4740 +6790 29028 0.6980 +6790 29072 0.4570 +6790 29089 0.6490 +6790 29116 0.4460 +6790 29127 0.8830 +6790 29128 0.6400 +6790 29882 0.5570 +6790 29945 0.7170 +6790 50484 0.5980 +6790 51053 0.6410 +6790 51151 0.4260 +6790 51175 0.4700 +6790 51199 0.7940 +6790 51203 0.8430 +6790 51343 0.9080 +6790 51433 0.5380 +6790 51434 0.5270 +6790 51512 0.6270 +6790 51514 0.4850 +6790 51529 0.5830 +6790 51659 0.5310 +6790 51806 0.4660 +6790 54443 0.7410 +6790 54478 0.5230 +6790 54820 0.5830 +6790 54821 0.4860 +6790 54875 0.6540 +6790 54892 0.5670 +6790 54908 0.4060 +6790 54998 0.8640 +6790 55010 0.4570 +6790 55055 0.5440 +6790 55063 0.5670 +6790 55125 0.9400 +6790 55143 0.9520 +6790 55165 0.9360 +6790 55215 0.5650 +6790 55255 0.4100 +6790 55291 0.5500 +6790 55294 0.8930 +6790 55355 0.8520 +6790 55388 0.6200 +6790 55635 0.7820 +6790 55723 0.7510 +6790 55732 0.4340 +6790 55743 0.6710 +6790 55789 0.5070 +6790 55835 0.4190 +6790 55839 0.6860 +6790 55920 0.5340 +6790 56957 0.6290 +6790 56992 0.7250 +6790 57082 0.6950 +6790 57144 0.4390 +6790 57405 0.5420 +6790 57448 0.6300 +6790 57646 0.6040 +6790 57650 0.5610 +6790 57658 0.4630 +6790 57721 0.4430 +6790 57758 0.5500 +6790 63922 0.4500 +6790 63967 0.4260 +6790 64105 0.4730 +6790 64151 0.9520 +6790 64506 0.9550 +6790 64682 0.6120 +6790 64946 0.4620 +6790 65061 0.4120 +6790 79000 0.7570 +6790 79019 0.4990 +6790 79075 0.4980 +6790 79444 0.5450 +6790 79643 0.4390 +6790 79682 0.6190 +6790 79733 0.5330 +6790 79801 0.4890 +6790 79866 0.9760 +6790 79884 0.5790 +6790 79935 0.4840 +6790 79980 0.4590 +6790 80271 0.4220 +6790 80315 0.9190 +6790 81565 0.6750 +6790 81610 0.8180 +6790 81620 0.6510 +6790 81624 0.4280 +6790 81669 0.4790 +6790 81930 0.6830 +6790 83461 0.8150 +6790 83540 0.8930 +6790 83879 0.4650 +6790 83903 0.6990 +6790 84057 0.4170 +6790 84515 0.4310 +6790 84530 0.4640 +6790 84557 0.4250 +6790 84643 0.4370 +6790 84722 0.5180 +6790 84962 0.7360 +6790 85417 0.5030 +6790 90381 0.4300 +6790 90417 0.5410 +6790 91860 0.4600 +6790 112574 0.4200 +6790 113130 0.8640 +6790 114803 0.4040 +6790 119504 0.5190 +6790 121441 0.4830 +6790 122706 0.4190 +6790 126520 0.5500 +6790 128344 0.4040 +6790 132864 0.9180 +6790 133482 0.5430 +6790 140597 0.4530 +6790 143471 0.4150 +6790 144455 0.4660 +6790 146909 0.6070 +6790 147841 0.4130 +6790 150468 0.5980 +6790 151246 0.5070 +6790 151648 0.7500 +6790 152098 0.5490 +6790 153241 0.5660 +6790 157313 0.6820 +6790 157570 0.4110 +6790 163688 0.4610 +6790 163786 0.5480 +6790 166979 0.6670 +6790 203068 0.4870 +6790 220134 0.5350 +6790 221150 0.5420 +6790 246184 0.5310 +6790 259266 0.9300 +6790 284403 0.6360 +6790 347240 0.5390 +6790 387103 0.5310 +6790 389421 0.4900 +6790 440093 0.6330 +6790 440686 0.6330 +6790 653604 0.6330 +6790 111064650 0.4460 +6792 6812 0.8650 +6792 6853 0.4260 +6792 6872 0.4270 +6792 7337 0.7260 +6792 8831 0.5520 +6792 9211 0.4150 +6792 9378 0.4400 +6792 9681 0.4810 +6792 10389 0.6940 +6792 10479 0.5730 +6792 10742 0.8000 +6792 11152 0.5360 +6792 11284 0.7030 +6792 22854 0.8470 +6792 23001 0.4310 +6792 23036 0.4570 +6792 23096 0.6640 +6792 23229 0.7180 +6792 23236 0.6320 +6792 23389 0.4680 +6792 26047 0.4440 +6792 51111 0.4120 +6792 55163 0.5500 +6792 55777 0.5860 +6792 55833 0.4330 +6792 57148 0.4410 +6792 57465 0.4490 +6792 57492 0.4750 +6792 57502 0.4050 +6792 57526 0.9000 +6792 57575 0.8340 +6792 57582 0.6780 +6792 57680 0.4330 +6792 57689 0.6240 +6792 79751 0.8190 +6792 79868 0.6150 +6792 80816 0.4090 +6792 83992 0.4070 +6792 84628 0.7510 +6792 84679 0.5990 +6792 85358 0.5140 +6792 112476 0.5940 +6792 114327 0.4530 +6792 140679 0.4160 +6792 170302 0.8130 +6793 7430 0.5880 +6793 8767 0.4710 +6793 8773 0.4280 +6793 8826 0.4330 +6793 9341 0.4040 +6793 9414 0.4100 +6793 9475 0.4730 +6793 9748 0.4350 +6793 10211 0.4080 +6793 11113 0.4230 +6793 23765 0.4200 +6793 29941 0.4380 +6793 54443 0.4080 +6793 55914 0.4600 +6793 65124 0.4020 +6793 81624 0.4300 +6793 81839 0.4170 +6793 91010 0.4180 +6794 7015 0.5170 +6794 7019 0.4040 +6794 7080 0.4880 +6794 7086 0.4090 +6794 7124 0.4240 +6794 7157 0.9700 +6794 7248 0.6270 +6794 7249 0.8570 +6794 7424 0.4320 +6794 7436 0.4060 +6794 7490 0.5370 +6794 7516 0.4530 +6794 7529 0.5060 +6794 7531 0.5490 +6794 7532 0.6720 +6794 7533 0.5840 +6794 7534 0.8930 +6794 7804 0.4370 +6794 7942 0.4100 +6794 8085 0.4660 +6794 8241 0.4650 +6794 8277 0.4110 +6794 8289 0.5730 +6794 8312 0.9930 +6794 8313 0.4730 +6794 8428 0.5900 +6794 8533 0.4640 +6794 8615 0.4350 +6794 8626 0.5060 +6794 8678 0.6140 +6794 8831 0.4860 +6794 8878 0.4550 +6794 8924 0.5860 +6794 9370 0.5700 +6794 9414 0.4650 +6794 9474 0.5070 +6794 9776 0.4800 +6794 9817 0.7830 +6794 9821 0.4370 +6794 9891 0.9300 +6794 10135 0.4070 +6794 10273 0.4930 +6794 10325 0.4130 +6794 10494 0.4130 +6794 10533 0.4990 +6794 10645 0.9440 +6794 10670 0.4340 +6794 10891 0.6680 +6794 10971 0.6990 +6794 10987 0.4760 +6794 11140 0.8980 +6794 11152 0.5210 +6794 11180 0.7630 +6794 11188 0.6590 +6794 11261 0.5310 +6794 22843 0.4050 +6794 22848 0.4310 +6794 23022 0.4660 +6794 23030 0.5860 +6794 23370 0.9510 +6794 23409 0.4070 +6794 23410 0.5290 +6794 23411 0.9030 +6794 26060 0.6180 +6794 26263 0.4080 +6794 26585 0.4190 +6794 27244 0.4090 +6794 27436 0.6410 +6794 29072 0.4020 +6794 29126 0.5910 +6794 51085 0.5000 +6794 51094 0.6600 +6794 51343 0.4280 +6794 51377 0.4570 +6794 51422 0.9620 +6794 51548 0.4180 +6794 51719 0.9990 +6794 51806 0.6660 +6794 53632 0.9590 +6794 54205 0.4200 +6794 54541 0.4460 +6794 54861 0.6290 +6794 54894 0.5020 +6794 55004 0.6920 +6794 55193 0.4670 +6794 55294 0.6120 +6794 55437 0.9940 +6794 55704 0.4120 +6794 56270 0.4640 +6794 56288 0.4890 +6794 57104 0.4020 +6794 57509 0.5130 +6794 57521 0.7870 +6794 57787 0.5420 +6794 58508 0.5210 +6794 64083 0.5660 +6794 64223 0.5370 +6794 64689 0.4880 +6794 64798 0.4150 +6794 79109 0.4040 +6794 79155 0.6190 +6794 79602 0.6220 +6794 79728 0.8430 +6794 81037 0.4330 +6794 81617 0.9980 +6794 81631 0.4490 +6794 83667 0.7940 +6794 84076 0.4080 +6794 84260 0.4330 +6794 84335 0.5650 +6794 91860 0.6660 +6794 92335 0.9990 +6794 114790 0.9120 +6794 134553 0.4220 +6794 136541 0.7260 +6794 144699 0.4120 +6794 150094 0.4950 +6794 153129 0.5440 +6794 163688 0.6670 +6794 200186 0.5350 +6794 200576 0.4290 +6794 201163 0.7170 +6794 253260 0.5390 +6794 253430 0.5180 +6794 100133941 0.4990 +6795 6867 0.4350 +6795 6941 0.4160 +6795 7153 0.4250 +6795 7272 0.4800 +6795 7298 0.4040 +6795 8290 0.8340 +6795 8350 0.4610 +6795 8356 0.8340 +6795 8900 0.5320 +6795 9055 0.4830 +6795 9133 0.6490 +6795 9184 0.6310 +6795 9212 0.9260 +6795 9232 0.5560 +6795 9493 0.6140 +6795 9585 0.4330 +6795 9700 0.6650 +6795 9787 0.6200 +6795 9793 0.5090 +6795 9833 0.5050 +6795 9918 0.4400 +6795 10051 0.4510 +6795 10112 0.4870 +6795 10403 0.8380 +6795 10460 0.6310 +6795 10579 0.7050 +6795 10592 0.5320 +6795 10615 0.5760 +6795 10733 0.4460 +6795 10744 0.5860 +6795 10769 0.4980 +6795 10869 0.4220 +6795 10982 0.4620 +6795 11004 0.6260 +6795 22919 0.4420 +6795 22924 0.4150 +6795 22974 0.5170 +6795 23397 0.5690 +6795 25981 0.5650 +6795 26278 0.4460 +6795 29116 0.4460 +6795 29127 0.4290 +6795 51343 0.4970 +6795 54443 0.5580 +6795 55063 0.5490 +6795 55143 0.9630 +6795 55723 0.4120 +6795 56992 0.4480 +6795 57448 0.5940 +6795 64151 0.5990 +6795 64506 0.7910 +6795 65061 0.4190 +6795 79444 0.6120 +6795 79866 0.4840 +6795 79935 0.4230 +6795 83540 0.5510 +6795 83893 0.6730 +6795 83903 0.5710 +6795 84643 0.4130 +6795 85417 0.4880 +6795 126520 0.5490 +6795 146909 0.4500 +6795 151246 0.4230 +6795 151648 0.4890 +6795 152098 0.5490 +6795 166979 0.5800 +6795 259266 0.5790 +6795 283417 0.6820 +6795 347688 0.4300 +6795 387893 0.5210 +6795 440093 0.8340 +6795 440686 0.8340 +6795 653604 0.8340 +6795 111064650 0.4460 +6799 6818 0.6440 +6799 6819 0.8110 +6799 6820 0.5500 +6799 7284 0.4760 +6799 7355 0.4300 +6799 7364 0.4430 +6799 7366 0.4250 +6799 10241 0.4140 +6799 25830 0.8310 +6799 25970 0.4420 +6799 27233 0.5320 +6799 51131 0.4970 +6799 51296 0.4260 +6799 54575 0.4840 +6799 54576 0.4400 +6799 54577 0.4560 +6799 54578 0.4840 +6799 54600 0.4360 +6799 54657 0.5120 +6799 54658 0.4380 +6799 55911 0.5190 +6799 64127 0.4280 +6799 415117 0.4280 +6799 445329 0.9830 +6799 100507607 0.4310 +6801 6950 0.7230 +6801 7170 0.7360 +6801 7171 0.6460 +6801 7175 0.5640 +6801 7203 0.4880 +6801 7414 0.6910 +6801 7871 0.9780 +6801 8030 0.5080 +6801 8031 0.4020 +6801 8428 0.9990 +6801 8496 0.6460 +6801 8503 0.4240 +6801 8658 0.5260 +6801 8878 0.6310 +6801 9448 0.9150 +6801 9451 0.4670 +6801 9569 0.4450 +6801 9648 0.5960 +6801 9989 0.4280 +6801 10083 0.4130 +6801 10342 0.6580 +6801 10455 0.4140 +6801 10494 0.9990 +6801 10574 0.4790 +6801 10575 0.5330 +6801 10576 0.4700 +6801 10681 0.5170 +6801 10694 0.4580 +6801 10755 0.4190 +6801 10817 0.5080 +6801 10818 0.4570 +6801 11137 0.4090 +6801 11235 0.9990 +6801 11315 0.6830 +6801 22872 0.6160 +6801 22924 0.4140 +6801 22948 0.4840 +6801 23043 0.7430 +6801 23093 0.4100 +6801 23118 0.4520 +6801 25843 0.9990 +6801 26122 0.4070 +6801 26127 0.8920 +6801 27145 0.4370 +6801 27436 0.7940 +6801 28227 0.6050 +6801 29086 0.4590 +6801 29888 0.9990 +6801 29966 0.9990 +6801 50488 0.9500 +6801 51361 0.4190 +6801 51400 0.5040 +6801 51451 0.5140 +6801 51764 0.4990 +6801 51765 0.9800 +6801 51806 0.9580 +6801 53335 0.4900 +6801 54331 0.4990 +6801 54497 0.4050 +6801 54764 0.6930 +6801 55012 0.5170 +6801 55252 0.4610 +6801 55844 0.5600 +6801 55917 0.9970 +6801 55970 0.5070 +6801 57156 0.4800 +6801 57223 0.4030 +6801 57448 0.5870 +6801 57464 0.9960 +6801 57599 0.5270 +6801 57718 0.4610 +6801 59345 0.5170 +6801 63978 0.5990 +6801 79567 0.4810 +6801 80143 0.9980 +6801 80304 0.6730 +6801 80342 0.9950 +6801 80351 0.6370 +6801 81608 0.5680 +6801 83605 0.5600 +6801 83695 0.4060 +6801 83992 0.9970 +6801 84260 0.4850 +6801 85369 0.9990 +6801 91050 0.4280 +6801 91860 0.9580 +6801 94235 0.4990 +6801 129285 0.4650 +6801 151987 0.4230 +6801 163688 0.9580 +6801 254065 0.4380 +6801 342096 0.4570 +6801 346562 0.5250 +6801 100820829 0.5700 +6804 6809 0.5820 +6804 6810 0.9720 +6804 6811 0.8430 +6804 6812 0.9990 +6804 6813 0.8680 +6804 6814 0.8570 +6804 6833 0.6340 +6804 6843 0.9970 +6804 6844 0.9990 +6804 6845 0.9920 +6804 6853 0.8810 +6804 6854 0.7750 +6804 6855 0.9140 +6804 6857 0.9990 +6804 6860 0.6030 +6804 6861 0.8760 +6804 7099 0.5520 +6804 7124 0.7480 +6804 7458 0.6510 +6804 7461 0.7150 +6804 7485 0.5080 +6804 7732 0.6320 +6804 7917 0.5410 +6804 8128 0.9400 +6804 8224 0.7510 +6804 8266 0.5270 +6804 8326 0.6070 +6804 8417 0.7430 +6804 8447 0.4940 +6804 8468 0.5860 +6804 8497 0.5840 +6804 8499 0.6070 +6804 8500 0.6870 +6804 8541 0.6790 +6804 8573 0.5920 +6804 8618 0.4170 +6804 8673 0.9910 +6804 8674 0.9900 +6804 8675 0.9490 +6804 8676 0.5930 +6804 8677 0.7430 +6804 8723 0.9170 +6804 8745 0.4210 +6804 8766 0.4660 +6804 8773 0.9990 +6804 8774 0.6490 +6804 8775 0.9920 +6804 8825 0.5790 +6804 8867 0.4030 +6804 8912 0.5390 +6804 8927 0.8250 +6804 9031 0.5400 +6804 9066 0.6360 +6804 9143 0.4930 +6804 9145 0.6250 +6804 9152 0.6530 +6804 9217 0.6360 +6804 9218 0.7400 +6804 9254 0.4270 +6804 9256 0.6180 +6804 9275 0.5240 +6804 9289 0.4300 +6804 9312 0.5670 +6804 9341 0.9990 +6804 9342 0.9870 +6804 9369 0.5770 +6804 9374 0.5870 +6804 9378 0.6700 +6804 9379 0.6430 +6804 9381 0.7690 +6804 9463 0.5880 +6804 9482 0.9260 +6804 9515 0.8660 +6804 9527 0.6750 +6804 9546 0.6360 +6804 9554 0.8260 +6804 9569 0.6510 +6804 9570 0.8270 +6804 9751 0.8340 +6804 9892 0.4320 +6804 9899 0.4460 +6804 9900 0.5340 +6804 10066 0.4240 +6804 10211 0.5880 +6804 10228 0.9800 +6804 10282 0.7300 +6804 10488 0.4060 +6804 10490 0.7780 +6804 10497 0.9520 +6804 10536 0.4640 +6804 10652 0.8340 +6804 10791 0.5770 +6804 10814 0.9560 +6804 10815 0.9990 +6804 10952 0.5290 +6804 11311 0.4560 +6804 11336 0.5500 +6804 22895 0.6560 +6804 22903 0.4060 +6804 22941 0.4180 +6804 22999 0.9030 +6804 23025 0.8200 +6804 23208 0.4750 +6804 23256 0.4120 +6804 23480 0.5000 +6804 23557 0.5530 +6804 23673 0.9380 +6804 23770 0.4470 +6804 26608 0.6440 +6804 26984 0.4260 +6804 27230 0.5170 +6804 27333 0.6040 +6804 27445 0.5300 +6804 29091 0.6270 +6804 51085 0.6090 +6804 51272 0.6190 +6804 51608 0.5540 +6804 51726 0.4820 +6804 51806 0.4930 +6804 53407 0.7340 +6804 53616 0.4890 +6804 53947 0.5030 +6804 54982 0.4580 +6804 55014 0.9360 +6804 55327 0.5210 +6804 55638 0.7890 +6804 55695 0.4790 +6804 55763 0.5780 +6804 55787 0.6080 +6804 55850 0.7260 +6804 55852 0.4050 +6804 57030 0.7160 +6804 57449 0.4630 +6804 60412 0.5720 +6804 60681 0.5570 +6804 63908 0.9230 +6804 63932 0.4390 +6804 64130 0.5560 +6804 79158 0.4040 +6804 80331 0.7120 +6804 84258 0.4810 +6804 91683 0.4490 +6804 91860 0.4890 +6804 92745 0.4560 +6804 94121 0.8790 +6804 112755 0.8140 +6804 116841 0.9190 +6804 118424 0.5140 +6804 123207 0.4390 +6804 127833 0.8470 +6804 134957 0.9980 +6804 135892 0.5300 +6804 140679 0.6700 +6804 143187 0.7010 +6804 143425 0.4370 +6804 148327 0.4060 +6804 163688 0.4850 +6804 167838 0.7880 +6804 200081 0.9810 +6804 201294 0.5750 +6804 203062 0.6310 +6804 203190 0.5750 +6804 246213 0.5400 +6804 338567 0.4230 +6804 339302 0.8650 +6804 415117 0.5680 +6804 594855 0.9150 +6804 653145 0.4020 +6809 6810 0.9600 +6809 6811 0.9600 +6809 6812 0.9950 +6809 6813 0.9750 +6809 6814 0.8950 +6809 6843 0.9870 +6809 6844 0.9990 +6809 6845 0.9920 +6809 6854 0.5000 +6809 6857 0.6710 +6809 7037 0.4080 +6809 8417 0.9430 +6809 8673 0.9990 +6809 8674 0.9930 +6809 8675 0.7390 +6809 8676 0.7450 +6809 8677 0.9020 +6809 8723 0.6280 +6809 8766 0.7530 +6809 8773 0.9990 +6809 8774 0.6150 +6809 8775 0.9560 +6809 9183 0.4550 +6809 9341 0.9990 +6809 9342 0.9920 +6809 9372 0.4550 +6809 9404 0.4700 +6809 9482 0.9860 +6809 9515 0.7170 +6809 9527 0.9260 +6809 9545 0.4190 +6809 9554 0.9710 +6809 9570 0.6960 +6809 10228 0.9910 +6809 10282 0.8910 +6809 10490 0.8030 +6809 10497 0.5240 +6809 10626 0.6300 +6809 10640 0.4170 +6809 10652 0.9340 +6809 10791 0.7550 +6809 10814 0.8360 +6809 10815 0.6810 +6809 23025 0.6740 +6809 23256 0.4990 +6809 23329 0.5080 +6809 23557 0.4670 +6809 23673 0.7040 +6809 29091 0.7800 +6809 51272 0.6450 +6809 51594 0.5320 +6809 53407 0.8680 +6809 54536 0.5950 +6809 54843 0.6580 +6809 55014 0.8830 +6809 55763 0.5920 +6809 55787 0.7070 +6809 55850 0.8500 +6809 60412 0.4450 +6809 60561 0.5530 +6809 63908 0.9650 +6809 63932 0.4390 +6809 84958 0.6200 +6809 92840 0.5460 +6809 94120 0.6280 +6809 94121 0.8610 +6809 94122 0.6520 +6809 112755 0.5660 +6809 116841 0.9600 +6809 117177 0.4530 +6809 123207 0.4390 +6809 127833 0.5010 +6809 134957 0.9680 +6809 143187 0.7370 +6809 167838 0.7180 +6809 200081 0.9900 +6809 201294 0.4210 +6809 203062 0.6170 +6809 339302 0.6190 +6809 415117 0.7350 +6809 594855 0.8520 +6809 653808 0.4080 +6810 6811 0.8990 +6810 6812 0.9100 +6810 6813 0.7920 +6810 6814 0.9990 +6810 6843 0.9940 +6810 6844 0.9990 +6810 6845 0.9990 +6810 6854 0.4810 +6810 6857 0.6800 +6810 6890 0.5450 +6810 6891 0.5330 +6810 6892 0.8250 +6810 6993 0.4460 +6810 8291 0.5240 +6810 8417 0.9430 +6810 8447 0.7610 +6810 8673 0.9990 +6810 8674 0.9940 +6810 8675 0.9780 +6810 8676 0.6410 +6810 8677 0.7740 +6810 8723 0.9170 +6810 8766 0.5910 +6810 8773 0.9990 +6810 8774 0.8710 +6810 8775 0.9820 +6810 9066 0.9550 +6810 9217 0.6940 +6810 9229 0.4130 +6810 9231 0.7470 +6810 9341 0.9990 +6810 9342 0.9940 +6810 9482 0.9760 +6810 9515 0.8650 +6810 9527 0.6900 +6810 9545 0.5200 +6810 9554 0.9990 +6810 9570 0.8810 +6810 9726 0.4640 +6810 9847 0.5990 +6810 10066 0.4520 +6810 10228 0.9980 +6810 10282 0.8760 +6810 10490 0.9130 +6810 10497 0.5830 +6810 10640 0.6930 +6810 10652 0.8400 +6810 10791 0.8430 +6810 10814 0.8120 +6810 10815 0.8130 +6810 10890 0.8120 +6810 11311 0.4290 +6810 11336 0.7190 +6810 23025 0.4190 +6810 23208 0.4320 +6810 23265 0.7350 +6810 23513 0.6180 +6810 23557 0.6030 +6810 23673 0.9850 +6810 25924 0.4780 +6810 26984 0.4990 +6810 29091 0.9580 +6810 50618 0.4170 +6810 51272 0.6510 +6810 51552 0.6260 +6810 53407 0.8670 +6810 54536 0.6790 +6810 54886 0.5860 +6810 55014 0.9480 +6810 55107 0.4300 +6810 55763 0.8050 +6810 55770 0.6840 +6810 55787 0.9040 +6810 55850 0.7400 +6810 60412 0.7520 +6810 63908 0.9550 +6810 63932 0.4390 +6810 79058 0.4730 +6810 79719 0.4200 +6810 79901 0.5640 +6810 80331 0.4930 +6810 85477 0.5090 +6810 91683 0.4090 +6810 94121 0.4130 +6810 112755 0.6630 +6810 116841 0.9090 +6810 123207 0.4400 +6810 127833 0.5030 +6810 134957 0.9590 +6810 143187 0.7730 +6810 149371 0.7420 +6810 167838 0.7830 +6810 192683 0.4670 +6810 200081 0.9850 +6810 201294 0.4430 +6810 203062 0.6200 +6810 252983 0.9580 +6810 339302 0.6070 +6810 415117 0.6130 +6810 594855 0.6050 +6811 6812 0.6470 +6811 6813 0.4470 +6811 6814 0.5710 +6811 6836 0.4810 +6811 6843 0.8250 +6811 6844 0.9250 +6811 6845 0.9700 +6811 7039 0.4990 +6811 7415 0.7660 +6811 7485 0.7600 +6811 7542 0.5260 +6811 7917 0.7620 +6811 8218 0.4210 +6811 8266 0.7360 +6811 8417 0.9480 +6811 8548 0.4130 +6811 8615 0.9980 +6811 8655 0.5440 +6811 8673 0.9910 +6811 8674 0.9980 +6811 8675 0.9000 +6811 8676 0.7460 +6811 8677 0.9730 +6811 8723 0.6580 +6811 8766 0.5540 +6811 8773 0.9270 +6811 8774 0.8060 +6811 8775 0.9890 +6811 9117 0.9760 +6811 9183 0.5110 +6811 9217 0.6760 +6811 9218 0.6420 +6811 9276 0.6500 +6811 9321 0.4830 +6811 9341 0.9140 +6811 9342 0.9350 +6811 9381 0.5450 +6811 9382 0.8560 +6811 9482 0.9500 +6811 9515 0.6420 +6811 9527 0.9990 +6811 9554 0.9990 +6811 9559 0.4930 +6811 9570 0.9990 +6811 9632 0.8990 +6811 9648 0.4810 +6811 9685 0.5850 +6811 9871 0.8720 +6811 9919 0.8300 +6811 9950 0.8040 +6811 10113 0.8320 +6811 10121 0.5590 +6811 10134 0.4790 +6811 10175 0.5840 +6811 10228 0.9950 +6811 10282 0.9990 +6811 10342 0.5250 +6811 10424 0.4010 +6811 10427 0.8480 +6811 10466 0.8540 +6811 10483 0.5490 +6811 10484 0.7640 +6811 10490 0.9980 +6811 10540 0.5540 +6811 10615 0.4950 +6811 10618 0.5960 +6811 10652 0.9990 +6811 10671 0.5070 +6811 10791 0.7690 +6811 10802 0.7920 +6811 10814 0.5430 +6811 10815 0.5670 +6811 10897 0.5570 +6811 10905 0.5280 +6811 10945 0.7720 +6811 10952 0.7030 +6811 10959 0.8300 +6811 10960 0.5990 +6811 10970 0.5790 +6811 10972 0.7000 +6811 11014 0.6530 +6811 11015 0.5960 +6811 11021 0.4540 +6811 11070 0.6030 +6811 11079 0.5730 +6811 11196 0.5760 +6811 11231 0.4590 +6811 11258 0.5140 +6811 11311 0.9120 +6811 11316 0.7760 +6811 22796 0.8500 +6811 22818 0.6620 +6811 22820 0.6390 +6811 22872 0.7520 +6811 22931 0.4240 +6811 23015 0.4820 +6811 23256 0.9990 +6811 23265 0.4810 +6811 23307 0.4720 +6811 23423 0.5600 +6811 23480 0.5160 +6811 23673 0.9180 +6811 25839 0.9780 +6811 26003 0.7580 +6811 26049 0.4160 +6811 26958 0.6100 +6811 26984 0.9910 +6811 27095 0.7520 +6811 27230 0.6230 +6811 27314 0.5090 +6811 27333 0.8470 +6811 51014 0.5850 +6811 51128 0.6910 +6811 51134 0.4160 +6811 51143 0.5060 +6811 51164 0.5480 +6811 51213 0.4570 +6811 51226 0.5610 +6811 51272 0.9990 +6811 51290 0.5390 +6811 51332 0.4990 +6811 51542 0.5220 +6811 51608 0.7540 +6811 51614 0.5150 +6811 51699 0.4640 +6811 53407 0.9820 +6811 54221 0.5050 +6811 54732 0.7850 +6811 55014 0.8750 +6811 55219 0.4120 +6811 55275 0.5930 +6811 55684 0.4140 +6811 55738 0.5280 +6811 55823 0.4450 +6811 55831 0.4340 +6811 55850 0.9560 +6811 55852 0.4050 +6811 55858 0.4790 +6811 55860 0.5420 +6811 55889 0.4820 +6811 55968 0.8320 +6811 56681 0.5170 +6811 57134 0.5220 +6811 57511 0.8970 +6811 57731 0.4990 +6811 58485 0.4090 +6811 60412 0.4350 +6811 60561 0.4730 +6811 63908 0.9270 +6811 64083 0.7270 +6811 64320 0.4930 +6811 64601 0.5070 +6811 64689 0.8700 +6811 65992 0.4420 +6811 79571 0.4160 +6811 79589 0.6690 +6811 79748 0.5660 +6811 80124 0.9570 +6811 80233 0.4750 +6811 80235 0.4110 +6811 81562 0.5640 +6811 81876 0.8550 +6811 83446 0.4680 +6811 83452 0.7730 +6811 83548 0.8760 +6811 84317 0.4080 +6811 84447 0.7660 +6811 84516 0.5060 +6811 84826 0.7400 +6811 84952 0.4030 +6811 89866 0.6400 +6811 90411 0.5500 +6811 91949 0.8560 +6811 93661 0.5070 +6811 112755 0.7520 +6811 113402 0.4220 +6811 116841 0.8150 +6811 118424 0.5170 +6811 134957 0.6630 +6811 140735 0.5080 +6811 143187 0.9990 +6811 144108 0.4430 +6811 149111 0.5530 +6811 149371 0.5000 +6811 160364 0.5540 +6811 201931 0.4270 +6811 203062 0.6670 +6811 254263 0.5530 +6811 283685 0.4680 +6811 283768 0.4820 +6811 339122 0.4180 +6811 339302 0.5400 +6811 342096 0.4890 +6811 374897 0.4930 +6811 375035 0.4170 +6811 415117 0.7560 +6811 440243 0.4680 +6811 440270 0.4820 +6811 594855 0.5400 +6811 643699 0.4820 +6811 643707 0.4570 +6811 653061 0.4820 +6811 653073 0.4820 +6811 653075 0.4820 +6811 653125 0.4820 +6811 653641 0.4820 +6811 653643 0.4820 +6811 653720 0.4820 +6811 727909 0.4820 +6811 728047 0.4820 +6811 728310 0.4680 +6811 728498 0.4820 +6811 101059918 0.4820 +6812 6843 0.8010 +6812 6844 0.9880 +6812 6853 0.8160 +6812 6854 0.7970 +6812 6855 0.6720 +6812 6857 0.9490 +6812 6860 0.4810 +6812 6861 0.6590 +6812 7127 0.4150 +6812 7280 0.6260 +6812 8224 0.7550 +6812 8447 0.4780 +6812 8448 0.4310 +6812 8497 0.5530 +6812 8499 0.6840 +6812 8500 0.6430 +6812 8541 0.6850 +6812 8573 0.6400 +6812 8618 0.6010 +6812 8673 0.7960 +6812 8674 0.5990 +6812 8676 0.9210 +6812 8773 0.8370 +6812 8774 0.4960 +6812 8775 0.7370 +6812 8825 0.6020 +6812 8831 0.5680 +6812 8867 0.5110 +6812 9066 0.4660 +6812 9143 0.4100 +6812 9145 0.5720 +6812 9254 0.5330 +6812 9256 0.5170 +6812 9341 0.6820 +6812 9342 0.5670 +6812 9369 0.6160 +6812 9378 0.7460 +6812 9379 0.6920 +6812 9515 0.4760 +6812 9546 0.9200 +6812 9638 0.5340 +6812 9699 0.4660 +6812 9892 0.6160 +6812 9900 0.5380 +6812 10059 0.5260 +6812 10096 0.4710 +6812 10228 0.5720 +6812 10314 0.4750 +6812 10382 0.5100 +6812 10479 0.4150 +6812 10490 0.4660 +6812 10497 0.9860 +6812 10640 0.5580 +6812 10652 0.4280 +6812 10791 0.4920 +6812 10814 0.5530 +6812 10815 0.9260 +6812 11152 0.4140 +6812 11284 0.7030 +6812 11311 0.4570 +6812 11336 0.5650 +6812 22895 0.6570 +6812 22999 0.9430 +6812 23025 0.8040 +6812 23096 0.5650 +6812 23208 0.4660 +6812 23229 0.7120 +6812 23233 0.4730 +6812 23236 0.6540 +6812 23265 0.5640 +6812 25789 0.4270 +6812 25822 0.4100 +6812 54536 0.4980 +6812 55114 0.4260 +6812 55163 0.5340 +6812 55327 0.5200 +6812 55530 0.4170 +6812 55763 0.4920 +6812 55770 0.4440 +6812 55850 0.4830 +6812 55852 0.4130 +6812 56344 0.5160 +6812 57030 0.7020 +6812 57465 0.4540 +6812 57526 0.8760 +6812 57575 0.8480 +6812 57582 0.7090 +6812 60412 0.5530 +6812 64130 0.5800 +6812 64601 0.4010 +6812 79751 0.8130 +6812 79868 0.5300 +6812 80331 0.6900 +6812 83871 0.6210 +6812 84258 0.4530 +6812 85358 0.4150 +6812 94121 0.9740 +6812 112476 0.6370 +6812 112755 0.9990 +6812 115827 0.4650 +6812 116841 0.5460 +6812 127833 0.5160 +6812 134957 0.7630 +6812 140679 0.6700 +6812 149371 0.4950 +6812 170302 0.8000 +6812 201294 0.4330 +6812 283849 0.4370 +6812 415117 0.9160 +6812 440279 0.6760 +6813 6843 0.5560 +6813 6844 0.8290 +6813 6845 0.4770 +6813 7094 0.4440 +6813 7127 0.4320 +6813 7273 0.4070 +6813 7277 0.4090 +6813 7414 0.4010 +6813 8407 0.4520 +6813 8546 0.7270 +6813 8673 0.8550 +6813 8674 0.6680 +6813 8676 0.9990 +6813 8677 0.4060 +6813 8766 0.4240 +6813 8773 0.7370 +6813 8775 0.4870 +6813 8904 0.4500 +6813 8906 0.5260 +6813 9341 0.6390 +6813 9342 0.4480 +6813 9545 0.4320 +6813 9546 0.4620 +6813 9948 0.4640 +6813 10490 0.4100 +6813 10497 0.6280 +6813 10578 0.4520 +6813 10640 0.5440 +6813 10791 0.4710 +6813 11151 0.5070 +6813 11336 0.4660 +6813 23025 0.4640 +6813 23052 0.4020 +6813 23233 0.4560 +6813 23265 0.4960 +6813 26258 0.4590 +6813 26276 0.6210 +6813 54536 0.5150 +6813 54843 0.6480 +6813 55763 0.4530 +6813 55770 0.4330 +6813 60412 0.5390 +6813 84061 0.6260 +6813 84958 0.6400 +6813 94120 0.6610 +6813 94121 0.6490 +6813 94122 0.6340 +6813 112755 0.6180 +6813 116841 0.4600 +6813 127833 0.4230 +6813 149371 0.4630 +6813 200081 0.4290 +6813 201294 0.9700 +6813 283849 0.4390 +6813 415117 0.9740 +6814 6843 0.6130 +6814 6844 0.9700 +6814 6845 0.6920 +6814 7127 0.4020 +6814 8417 0.4920 +6814 8447 0.5880 +6814 8661 0.4050 +6814 8673 0.9180 +6814 8674 0.6650 +6814 8675 0.4140 +6814 8676 0.7910 +6814 8773 0.9620 +6814 8775 0.4790 +6814 9341 0.8450 +6814 9342 0.4910 +6814 9545 0.4460 +6814 9546 0.4110 +6814 9847 0.5900 +6814 10228 0.6360 +6814 10490 0.4420 +6814 10497 0.5580 +6814 10640 0.7830 +6814 10791 0.5190 +6814 10890 0.6810 +6814 11311 0.4290 +6814 11336 0.7430 +6814 23233 0.4560 +6814 23265 0.7690 +6814 23673 0.4050 +6814 26276 0.4120 +6814 26289 0.4530 +6814 27346 0.4330 +6814 51552 0.6310 +6814 51704 0.4620 +6814 53407 0.4090 +6814 54212 0.7380 +6814 54536 0.7490 +6814 54886 0.6250 +6814 55107 0.4610 +6814 55119 0.4270 +6814 55763 0.7630 +6814 55770 0.7340 +6814 60412 0.7760 +6814 79058 0.4400 +6814 79719 0.4950 +6814 91828 0.4050 +6814 112755 0.8270 +6814 116841 0.4840 +6814 134957 0.6200 +6814 149371 0.7480 +6814 201294 0.4230 +6814 252983 0.5070 +6814 283849 0.4370 +6814 353345 0.4570 +6814 415117 0.6310 +6815 8036 0.4950 +6815 8454 0.5330 +6815 10146 0.4160 +6815 10826 0.4490 +6815 51637 0.4470 +6815 54850 0.4570 +6815 55294 0.7980 +6815 55341 0.4450 +6815 57544 0.5860 +6815 64841 0.6110 +6815 79074 0.4480 +6815 80821 0.5110 +6815 81545 0.5570 +6815 83989 0.4510 +6815 283554 0.5500 +6818 6819 0.7080 +6818 6820 0.4450 +6818 6822 0.7300 +6818 7056 0.8470 +6818 7450 0.6130 +6818 7494 0.7500 +6818 10544 0.5070 +6818 25830 0.5690 +6818 27233 0.5260 +6818 27284 0.5320 +6818 57649 0.4180 +6818 79008 0.4550 +6818 391365 0.5850 +6818 445329 0.9420 +6819 6820 0.6310 +6819 6822 0.5980 +6819 8875 0.4070 +6819 9060 0.4030 +6819 25830 0.8390 +6819 27233 0.7390 +6819 27284 0.5800 +6819 27343 0.4530 +6819 54575 0.4580 +6819 54576 0.4310 +6819 54577 0.4200 +6819 54578 0.4130 +6819 54657 0.4190 +6819 54658 0.4180 +6819 391365 0.6160 +6819 445329 0.7940 +6819 642987 0.4420 +6820 6822 0.6480 +6820 7051 0.5330 +6820 7376 0.6830 +6820 8435 0.8000 +6820 8644 0.9350 +6820 9213 0.6430 +6820 9420 0.9340 +6820 9619 0.7200 +6820 10062 0.5450 +6820 23581 0.5200 +6820 25830 0.5800 +6820 26154 0.5910 +6820 27284 0.6880 +6820 29116 0.5500 +6820 54578 0.4070 +6820 59344 0.5750 +6820 64240 0.6740 +6820 64241 0.6550 +6820 121214 0.6190 +6820 126410 0.6400 +6820 130540 0.8640 +6820 204219 0.6440 +6820 285848 0.6300 +6820 348938 0.6180 +6820 442038 0.6300 +6820 445329 0.7010 +6820 643418 0.4870 +6820 100861540 0.9320 +6821 7001 0.4530 +6821 7263 0.9820 +6821 7276 0.5470 +6821 7360 0.4150 +6821 7498 0.7260 +6821 7915 0.4650 +6821 8091 0.5340 +6821 8623 0.4570 +6821 8659 0.4670 +6821 8802 0.4140 +6821 9054 0.6530 +6821 9060 0.9790 +6821 9061 0.9760 +6821 9131 0.5220 +6821 9380 0.4540 +6821 9588 0.4490 +6821 9840 0.4060 +6821 10063 0.5080 +6821 10243 0.9080 +6821 10295 0.4940 +6821 10380 0.4440 +6821 10413 0.4230 +6821 10549 0.5070 +6821 10587 0.4070 +6821 10797 0.4110 +6821 10840 0.4490 +6821 10935 0.4720 +6821 11019 0.4300 +6821 11103 0.6490 +6821 11212 0.4500 +6821 11340 0.4610 +6821 23474 0.9850 +6821 25953 0.4040 +6821 26873 0.4190 +6821 27232 0.4370 +6821 27304 0.7170 +6821 27324 0.5960 +6821 28960 0.5090 +6821 51042 0.4330 +6821 51084 0.4390 +6821 51110 0.4270 +6821 51117 0.4970 +6821 51167 0.5580 +6821 51380 0.4080 +6821 51540 0.5070 +6821 51700 0.9420 +6821 51706 0.9480 +6821 54205 0.9090 +6821 54363 0.4370 +6821 54995 0.4480 +6821 54996 0.5830 +6821 55034 0.6300 +6821 55349 0.4180 +6821 55526 0.5780 +6821 55572 0.4390 +6821 55622 0.5090 +6821 55753 0.4070 +6821 55848 0.4160 +6821 55862 0.4530 +6821 55902 0.4260 +6821 56912 0.4050 +6821 57017 0.4740 +6821 57107 0.4140 +6821 57128 0.4150 +6821 57497 0.4330 +6821 57706 0.6750 +6821 58472 0.8650 +6821 64083 0.4490 +6821 64111 0.7600 +6821 64375 0.4160 +6821 64757 0.6770 +6821 79152 0.4070 +6821 79154 0.4310 +6821 79587 0.5210 +6821 79814 0.4210 +6821 79912 0.4350 +6821 79944 0.4850 +6821 80347 0.4420 +6821 80777 0.4870 +6821 84269 0.4360 +6821 84467 0.5240 +6821 84883 0.4770 +6821 84909 0.6210 +6821 112812 0.4130 +6821 120534 0.5030 +6821 124454 0.4020 +6821 124637 0.4900 +6821 132671 0.4390 +6821 139067 0.5800 +6821 150209 0.4470 +6821 160428 0.4100 +6821 197322 0.4140 +6821 252969 0.5410 +6821 284613 0.4100 +6821 404636 0.4480 +6821 441024 0.4350 +6821 606495 0.5370 +6821 100131187 0.5010 +6821 100131801 0.4170 +6822 6907 0.4310 +6822 7355 0.5080 +6822 7363 0.7640 +6822 7364 0.5330 +6822 7365 0.4140 +6822 7366 0.5080 +6822 7367 0.4660 +6822 8431 0.6490 +6822 8459 0.4720 +6822 8644 0.5760 +6822 8647 0.6730 +6822 8648 0.4850 +6822 8714 0.4570 +6822 8856 0.6990 +6822 9060 0.7690 +6822 9061 0.5840 +6822 9360 0.4800 +6822 9420 0.4880 +6822 9563 0.5940 +6822 9622 0.4400 +6822 9970 0.7320 +6822 9971 0.6960 +6822 10257 0.4230 +6822 10468 0.4500 +6822 10498 0.4190 +6822 10499 0.4830 +6822 10599 0.5390 +6822 10720 0.6180 +6822 10864 0.4770 +6822 11132 0.5530 +6822 23054 0.4520 +6822 23301 0.4090 +6822 25830 0.6060 +6822 27233 0.5970 +6822 27284 0.8320 +6822 28234 0.4020 +6822 54575 0.6720 +6822 54576 0.7960 +6822 54577 0.6540 +6822 54578 0.6840 +6822 54600 0.4650 +6822 54657 0.6960 +6822 54658 0.6900 +6822 54659 0.4380 +6822 64240 0.5580 +6822 64241 0.4330 +6822 79154 0.5890 +6822 79799 0.4410 +6822 80777 0.6280 +6822 84467 0.6490 +6822 85441 0.4080 +6822 123264 0.5730 +6822 135152 0.4840 +6822 200931 0.6390 +6822 391365 0.6350 +6822 442038 0.4930 +6822 445329 0.7360 +6822 100861540 0.4010 +6827 6829 0.9990 +6827 6830 0.9990 +6827 6877 0.4790 +6827 6878 0.5290 +6827 6880 0.5210 +6827 6882 0.4470 +6827 6884 0.5410 +6827 6908 0.7250 +6827 6917 0.9930 +6827 6919 0.9930 +6827 6920 0.9390 +6827 6921 0.9100 +6827 6923 0.9110 +6827 6924 0.9180 +6827 7469 0.9930 +6827 7702 0.4670 +6827 7936 0.9970 +6827 8089 0.4930 +6827 8178 0.9510 +6827 8189 0.4360 +6827 8290 0.6030 +6827 8294 0.8760 +6827 8329 0.8590 +6827 8330 0.8580 +6827 8332 0.8580 +6827 8334 0.8610 +6827 8335 0.8580 +6827 8336 0.8580 +6827 8337 0.4810 +6827 8338 0.4700 +6827 8340 0.4030 +6827 8341 0.4010 +6827 8342 0.4030 +6827 8345 0.4110 +6827 8347 0.4040 +6827 8348 0.4080 +6827 8349 0.5390 +6827 8350 0.4080 +6827 8351 0.4010 +6827 8356 0.6050 +6827 8357 0.4090 +6827 8359 0.8760 +6827 8360 0.8770 +6827 8361 0.8890 +6827 8362 0.8760 +6827 8363 0.8760 +6827 8364 0.8770 +6827 8366 0.8760 +6827 8367 0.8760 +6827 8368 0.8760 +6827 8369 0.4660 +6827 8370 0.8780 +6827 8458 0.7550 +6827 8467 0.4260 +6827 8621 0.7650 +6827 8664 0.4260 +6827 8732 0.6550 +6827 8812 0.7810 +6827 8968 0.4010 +6827 8969 0.8580 +6827 8970 0.8750 +6827 9126 0.5840 +6827 9150 0.8180 +6827 9441 0.6780 +6827 9533 0.8890 +6827 9584 0.4290 +6827 9646 0.9960 +6827 9656 0.5040 +6827 9696 0.5270 +6827 9739 0.5170 +6827 10189 0.4410 +6827 10302 0.4310 +6827 10558 0.6330 +6827 10923 0.5010 +6827 11198 0.9910 +6827 11201 0.4800 +6827 22803 0.5210 +6827 22916 0.7030 +6827 22936 0.9620 +6827 23064 0.7490 +6827 23168 0.9980 +6827 23248 0.5110 +6827 23379 0.9000 +6827 25896 0.4130 +6827 25920 0.9960 +6827 26043 0.5300 +6827 26173 0.4600 +6827 26512 0.4970 +6827 26610 0.9060 +6827 26747 0.7200 +6827 27125 0.9340 +6827 29072 0.6990 +6827 29101 0.5740 +6827 29113 0.8860 +6827 30834 0.6430 +6827 51092 0.5290 +6827 51224 0.6100 +6827 51497 0.9960 +6827 51550 0.5000 +6827 51574 0.4770 +6827 51585 0.6160 +6827 51692 0.4400 +6827 51728 0.5730 +6827 51755 0.7880 +6827 54145 0.4040 +6827 54623 0.9940 +6827 54700 0.4460 +6827 54847 0.5260 +6827 54973 0.5610 +6827 55133 0.6590 +6827 55174 0.4160 +6827 55197 0.5000 +6827 55209 0.4090 +6827 55215 0.5030 +6827 55250 0.7270 +6827 55578 0.4480 +6827 55636 0.5210 +6827 55656 0.5310 +6827 55677 0.9270 +6827 55703 0.8310 +6827 55726 0.6170 +6827 55756 0.5190 +6827 55840 0.9280 +6827 56254 0.5250 +6827 56913 0.4290 +6827 57117 0.4650 +6827 57121 0.5260 +6827 57508 0.4720 +6827 57680 0.4610 +6827 58490 0.4710 +6827 65123 0.5210 +6827 79035 0.4070 +6827 79577 0.9960 +6827 79664 0.9030 +6827 79871 0.7510 +6827 80196 0.4510 +6827 80205 0.4230 +6827 80237 0.9360 +6827 80349 0.9860 +6827 80789 0.4850 +6827 80820 0.6530 +6827 81488 0.6460 +6827 81556 0.5340 +6827 84172 0.8730 +6827 84181 0.4230 +6827 84337 0.9600 +6827 84524 0.9000 +6827 85236 0.4150 +6827 85403 0.9480 +6827 85456 0.8450 +6827 92105 0.4180 +6827 121504 0.8760 +6827 123169 0.9970 +6827 124773 0.4230 +6827 126961 0.8740 +6827 127428 0.5870 +6827 128312 0.4030 +6827 129685 0.5690 +6827 149483 0.5260 +6827 153527 0.5000 +6827 158983 0.4040 +6827 170082 0.5750 +6827 203228 0.5600 +6827 246721 0.8200 +6827 255626 0.4040 +6827 286436 0.4040 +6827 333932 0.8740 +6827 340602 0.5260 +6827 404672 0.6280 +6827 440093 0.6030 +6827 440686 0.6030 +6827 440689 0.4080 +6827 448834 0.5260 +6827 548644 0.8200 +6827 554313 0.8760 +6827 653604 0.9180 +6827 100134938 0.6440 +6827 107983993 0.6440 +6827 114483833 0.4050 +6827 122455342 0.5260 +6829 6830 0.9990 +6829 6877 0.5550 +6829 6878 0.6430 +6829 6880 0.4860 +6829 6882 0.4630 +6829 6908 0.7470 +6829 6917 0.9950 +6829 6919 0.9950 +6829 6920 0.9560 +6829 6921 0.9030 +6829 6923 0.9000 +6829 6924 0.9430 +6829 6940 0.4090 +6829 7150 0.4090 +6829 7158 0.5160 +6829 7403 0.4030 +6829 7469 0.9990 +6829 7536 0.4520 +6829 7702 0.5100 +6829 7936 0.9980 +6829 8178 0.9580 +6829 8189 0.6290 +6829 8290 0.6410 +6829 8294 0.8830 +6829 8329 0.8550 +6829 8330 0.8550 +6829 8332 0.8550 +6829 8334 0.8570 +6829 8335 0.8550 +6829 8336 0.8570 +6829 8337 0.7140 +6829 8338 0.7100 +6829 8340 0.4840 +6829 8341 0.4830 +6829 8342 0.4840 +6829 8345 0.4840 +6829 8347 0.4810 +6829 8348 0.5070 +6829 8349 0.8700 +6829 8356 0.6470 +6829 8357 0.4580 +6829 8359 0.8830 +6829 8360 0.8830 +6829 8361 0.9350 +6829 8362 0.8830 +6829 8363 0.8830 +6829 8364 0.8830 +6829 8366 0.8830 +6829 8367 0.8830 +6829 8368 0.8830 +6829 8369 0.5780 +6829 8370 0.8830 +6829 8446 0.4410 +6829 8458 0.7460 +6829 8498 0.4460 +6829 8607 0.4330 +6829 8621 0.9240 +6829 8731 0.9180 +6829 8732 0.9820 +6829 8812 0.8350 +6829 8841 0.4630 +6829 8850 0.5610 +6829 8888 0.5060 +6829 8969 0.8550 +6829 8970 0.8920 +6829 9092 0.4670 +6829 9126 0.6760 +6829 9150 0.8590 +6829 9169 0.4540 +6829 9282 0.4070 +6829 9343 0.4870 +6829 9400 0.4370 +6829 9440 0.4240 +6829 9441 0.7160 +6829 9533 0.8320 +6829 9611 0.4970 +6829 9612 0.5590 +6829 9632 0.4380 +6829 9646 0.9990 +6829 9656 0.5360 +6829 9667 0.4570 +6829 9696 0.5160 +6829 9739 0.6810 +6829 9785 0.5840 +6829 9810 0.4660 +6829 9878 0.4630 +6829 9939 0.5850 +6829 9967 0.4330 +6829 10155 0.5210 +6829 10199 0.4350 +6829 10419 0.6990 +6829 10474 0.4080 +6829 10482 0.4950 +6829 10558 0.4900 +6829 10614 0.6140 +6829 10849 0.6420 +6829 10869 0.4180 +6829 10914 0.4160 +6829 10923 0.7030 +6829 10992 0.4540 +6829 11052 0.4100 +6829 11154 0.4350 +6829 11198 0.9980 +6829 11201 0.5060 +6829 22803 0.6490 +6829 22828 0.4540 +6829 22894 0.4120 +6829 22916 0.7330 +6829 22936 0.9720 +6829 22985 0.4270 +6829 23019 0.4200 +6829 23020 0.4020 +6829 23064 0.8490 +6829 23067 0.4470 +6829 23097 0.4110 +6829 23152 0.4460 +6829 23168 0.9990 +6829 23211 0.4590 +6829 23248 0.8130 +6829 23379 0.9360 +6829 23451 0.4230 +6829 23469 0.5900 +6829 23476 0.6560 +6829 25836 0.4200 +6829 25885 0.6360 +6829 25896 0.9250 +6829 25920 0.9990 +6829 26043 0.5100 +6829 26173 0.9620 +6829 26512 0.9290 +6829 26610 0.9040 +6829 26747 0.7280 +6829 26993 0.4290 +6829 27125 0.9580 +6829 27336 0.8230 +6829 29072 0.6930 +6829 29101 0.7880 +6829 29894 0.4790 +6829 30834 0.6350 +6829 51092 0.5150 +6829 51163 0.4880 +6829 51187 0.4980 +6829 51224 0.6370 +6829 51340 0.5970 +6829 51366 0.5300 +6829 51497 0.9980 +6829 51550 0.4370 +6829 51574 0.6070 +6829 51585 0.7300 +6829 51586 0.5210 +6829 51593 0.4130 +6829 51692 0.5170 +6829 51728 0.5430 +6829 51755 0.9330 +6829 51773 0.6090 +6829 53981 0.4970 +6829 54145 0.4860 +6829 54623 0.9990 +6829 54700 0.5660 +6829 54847 0.5070 +6829 54973 0.9630 +6829 55133 0.6300 +6829 55174 0.6880 +6829 55197 0.5380 +6829 55209 0.5540 +6829 55215 0.5040 +6829 55250 0.7430 +6829 55339 0.5060 +6829 55588 0.4170 +6829 55627 0.4370 +6829 55636 0.6420 +6829 55656 0.9280 +6829 55671 0.6090 +6829 55677 0.9680 +6829 55703 0.6790 +6829 55726 0.5940 +6829 55756 0.9360 +6829 55840 0.9370 +6829 55929 0.5180 +6829 56254 0.6280 +6829 56257 0.5330 +6829 56259 0.6120 +6829 57117 0.7370 +6829 57121 0.5050 +6829 57223 0.6200 +6829 57379 0.6100 +6829 57466 0.7080 +6829 57508 0.9260 +6829 57634 0.4270 +6829 57680 0.5430 +6829 58155 0.6140 +6829 58490 0.7670 +6829 63941 0.4130 +6829 64425 0.5870 +6829 64859 0.4200 +6829 65123 0.6700 +6829 79035 0.5770 +6829 79077 0.4010 +6829 79084 0.6280 +6829 79171 0.4560 +6829 79577 0.9990 +6829 79664 0.9120 +6829 79869 0.4310 +6829 79871 0.7980 +6829 80205 0.4720 +6829 80237 0.9430 +6829 80335 0.4990 +6829 80349 0.9940 +6829 80789 0.9120 +6829 80820 0.6200 +6829 81488 0.6870 +6829 81556 0.6530 +6829 83852 0.4310 +6829 84172 0.9010 +6829 84181 0.4440 +6829 84232 0.4130 +6829 84337 0.9740 +6829 84444 0.4410 +6829 84524 0.9120 +6829 85236 0.4820 +6829 85403 0.9610 +6829 85456 0.8890 +6829 92105 0.9450 +6829 92609 0.5340 +6829 121504 0.8830 +6829 123169 0.9990 +6829 124773 0.4390 +6829 124790 0.4680 +6829 126961 0.8700 +6829 127428 0.5940 +6829 128312 0.4840 +6829 129685 0.4360 +6829 139420 0.5410 +6829 149483 0.5050 +6829 151987 0.8140 +6829 158983 0.4860 +6829 162387 0.4240 +6829 170082 0.4890 +6829 192670 0.7710 +6829 221830 0.6490 +6829 246721 0.7970 +6829 255626 0.4820 +6829 284371 0.4600 +6829 286436 0.4860 +6829 333932 0.8700 +6829 340602 0.5050 +6829 404672 0.6240 +6829 440093 0.6420 +6829 440686 0.6430 +6829 440689 0.4920 +6829 448834 0.5050 +6829 548644 0.7990 +6829 554313 0.8830 +6829 653604 0.9260 +6829 100131755 0.4090 +6829 100134938 0.5050 +6829 102723407 0.4470 +6829 107983993 0.5050 +6829 114483833 0.4870 +6829 122455342 0.5050 +6830 6891 0.4840 +6830 6908 0.5210 +6830 6917 0.9950 +6830 6919 0.9220 +6830 6920 0.8360 +6830 6921 0.5550 +6830 6923 0.5480 +6830 6924 0.7570 +6830 7157 0.4700 +6830 7290 0.4240 +6830 7403 0.5670 +6830 7404 0.4640 +6830 7468 0.6160 +6830 7469 0.5870 +6830 7919 0.4380 +6830 7936 0.6760 +6830 8178 0.8490 +6830 8189 0.4260 +6830 8242 0.4850 +6830 8289 0.4960 +6830 8290 0.9270 +6830 8294 0.8650 +6830 8329 0.8650 +6830 8330 0.8520 +6830 8332 0.8590 +6830 8334 0.8540 +6830 8335 0.8520 +6830 8336 0.8590 +6830 8337 0.7750 +6830 8338 0.7730 +6830 8340 0.4310 +6830 8341 0.4290 +6830 8342 0.4300 +6830 8345 0.4300 +6830 8347 0.4230 +6830 8348 0.4440 +6830 8349 0.9020 +6830 8352 0.5620 +6830 8353 0.5050 +6830 8355 0.4740 +6830 8356 0.9380 +6830 8357 0.4610 +6830 8358 0.4550 +6830 8359 0.8650 +6830 8360 0.8650 +6830 8361 0.9250 +6830 8362 0.8650 +6830 8363 0.8650 +6830 8364 0.8650 +6830 8366 0.8650 +6830 8367 0.8650 +6830 8368 0.8650 +6830 8369 0.5160 +6830 8370 0.8650 +6830 8409 0.5540 +6830 8451 0.8250 +6830 8456 0.7550 +6830 8458 0.6550 +6830 8467 0.5060 +6830 8621 0.7890 +6830 8729 0.5220 +6830 8732 0.5160 +6830 8812 0.7530 +6830 8841 0.4860 +6830 8850 0.4340 +6830 8888 0.5370 +6830 8969 0.8520 +6830 8970 0.8810 +6830 9031 0.4550 +6830 9150 0.8970 +6830 9373 0.4330 +6830 9400 0.6760 +6830 9416 0.4690 +6830 9440 0.4870 +6830 9441 0.4900 +6830 9533 0.6430 +6830 9555 0.5360 +6830 9612 0.4810 +6830 9646 0.9940 +6830 9716 0.4070 +6830 9739 0.6920 +6830 9810 0.8300 +6830 9978 0.8080 +6830 10075 0.4010 +6830 10189 0.6550 +6830 10212 0.6360 +6830 10277 0.4170 +6830 10482 0.5450 +6830 10594 0.4300 +6830 10933 0.6540 +6830 11060 0.4600 +6830 11168 0.6210 +6830 11176 0.7910 +6830 11198 0.9970 +6830 22803 0.5180 +6830 22828 0.4950 +6830 22907 0.4170 +6830 22916 0.6400 +6830 22936 0.6140 +6830 22985 0.6060 +6830 23019 0.4290 +6830 23064 0.5080 +6830 23067 0.5020 +6830 23135 0.5110 +6830 23168 0.9890 +6830 23248 0.4430 +6830 23264 0.4250 +6830 23352 0.5340 +6830 23379 0.5490 +6830 23476 0.5460 +6830 23517 0.4210 +6830 25842 0.5120 +6830 25865 0.4100 +6830 25885 0.5710 +6830 25920 0.6750 +6830 26043 0.4460 +6830 26058 0.5600 +6830 26227 0.4140 +6830 26610 0.5690 +6830 26747 0.5630 +6830 27125 0.8570 +6830 29072 0.8890 +6830 29101 0.5070 +6830 29113 0.8020 +6830 51092 0.4110 +6830 51224 0.6640 +6830 51434 0.5150 +6830 51497 0.6010 +6830 51550 0.6370 +6830 51585 0.7500 +6830 51755 0.8820 +6830 51773 0.6950 +6830 54145 0.4320 +6830 54464 0.4340 +6830 54617 0.4690 +6830 54623 0.9780 +6830 54700 0.4900 +6830 55011 0.6860 +6830 55031 0.4520 +6830 55193 0.4360 +6830 55197 0.5370 +6830 55209 0.5680 +6830 55250 0.5550 +6830 55636 0.4600 +6830 55677 0.9990 +6830 55703 0.4350 +6830 55833 0.4080 +6830 55840 0.8030 +6830 55869 0.4670 +6830 55929 0.4790 +6830 56254 0.7350 +6830 56259 0.4370 +6830 56478 0.4140 +6830 57466 0.5760 +6830 57634 0.5050 +6830 57649 0.4750 +6830 57654 0.8380 +6830 57680 0.5410 +6830 58155 0.5320 +6830 58490 0.7520 +6830 58506 0.4720 +6830 65123 0.4050 +6830 79577 0.9850 +6830 79657 0.5130 +6830 79664 0.5490 +6830 79871 0.6020 +6830 79885 0.4520 +6830 80227 0.4670 +6830 80237 0.6550 +6830 80335 0.4290 +6830 80349 0.9300 +6830 81488 0.7660 +6830 83894 0.4200 +6830 84172 0.5040 +6830 84337 0.8940 +6830 84524 0.6210 +6830 84656 0.4100 +6830 85236 0.4320 +6830 85403 0.8030 +6830 85456 0.8890 +6830 121504 0.8650 +6830 123169 0.9830 +6830 126961 0.8960 +6830 128312 0.4310 +6830 144108 0.4620 +6830 145258 0.9540 +6830 158983 0.4320 +6830 200014 0.4500 +6830 221830 0.4480 +6830 246721 0.4470 +6830 255626 0.4320 +6830 286436 0.4320 +6830 333932 0.8740 +6830 440093 0.9270 +6830 440686 0.9270 +6830 440689 0.4400 +6830 548644 0.4510 +6830 554313 0.8650 +6830 653604 0.9850 +6830 114483833 0.4320 +6832 7019 0.4700 +6832 7978 0.4650 +6832 7979 0.9450 +6832 8886 0.4780 +6832 9238 0.6450 +6832 9401 0.4130 +6832 9567 0.7220 +6832 9692 0.4270 +6832 9722 0.4080 +6832 9775 0.7570 +6832 9790 0.4400 +6832 9797 0.4440 +6832 9987 0.6370 +6832 10128 0.7030 +6832 10200 0.9000 +6832 10438 0.9030 +6832 10643 0.4300 +6832 10914 0.4010 +6832 10922 0.4240 +6832 11340 0.9080 +6832 22868 0.6630 +6832 22894 0.9770 +6832 22907 0.6420 +6832 23016 0.9180 +6832 23404 0.9070 +6832 23517 0.4520 +6832 26024 0.4210 +6832 26284 0.5640 +6832 28973 0.4100 +6832 51008 0.4010 +6832 51010 0.9030 +6832 51013 0.9030 +6832 51106 0.4130 +6832 51110 0.6400 +6832 54512 0.9020 +6832 54555 0.4060 +6832 54606 0.4070 +6832 54868 0.4170 +6832 54931 0.5520 +6832 55037 0.4050 +6832 55149 0.8520 +6832 55178 0.4360 +6832 55520 0.5810 +6832 55794 0.5560 +6832 56652 0.5700 +6832 56915 0.9100 +6832 57062 0.4090 +6832 60493 0.5650 +6832 60528 0.8640 +6832 64895 0.4010 +6832 65990 0.4140 +6832 78987 0.7620 +6832 79039 0.4070 +6832 79736 0.5010 +6832 79902 0.5030 +6832 79922 0.7120 +6832 80119 0.5370 +6832 81887 0.4710 +6832 81892 0.6480 +6832 84881 0.4840 +6832 85441 0.7070 +6832 87178 0.9990 +6832 92170 0.5440 +6832 115752 0.9730 +6832 118460 0.9010 +6832 129563 0.8820 +6832 130916 0.4300 +6832 146212 0.4120 +6832 196441 0.9000 +6832 201626 0.6720 +6833 6927 0.8350 +6833 6928 0.4770 +6833 6934 0.6830 +6833 7222 0.4590 +6833 7351 0.5870 +6833 7466 0.7490 +6833 8036 0.4840 +6833 8462 0.6070 +6833 8647 0.4190 +6833 8844 0.4490 +6833 9312 0.4150 +6833 9451 0.4860 +6833 10058 0.6570 +6833 10060 0.8980 +6833 10083 0.7480 +6833 10411 0.8340 +6833 10560 0.5400 +6833 11069 0.9900 +6833 11132 0.5230 +6833 11194 0.6330 +6833 26060 0.4640 +6833 26154 0.4360 +6833 26297 0.4350 +6833 50674 0.5910 +6833 51081 0.4250 +6833 51124 0.5290 +6833 51733 0.4210 +6833 51806 0.5780 +6833 54512 0.4710 +6833 54795 0.9920 +6833 54901 0.4780 +6833 55532 0.4100 +6833 64137 0.4760 +6833 64240 0.7370 +6833 64241 0.6630 +6833 79572 0.4350 +6833 84504 0.5780 +6833 91860 0.5750 +6833 93587 0.4660 +6833 114131 0.4620 +6833 154664 0.4370 +6833 163688 0.5760 +6833 169026 0.7260 +6833 169792 0.6010 +6833 222546 0.6750 +6833 256297 0.5860 +6833 340273 0.4360 +6833 346171 0.6630 +6833 389692 0.4470 +6833 100134444 0.4850 +6834 6835 0.9630 +6834 6836 0.9200 +6834 6837 0.8120 +6834 6838 0.7980 +6834 7358 0.7580 +6834 7381 0.4700 +6834 7384 0.6660 +6834 7385 0.5170 +6834 7386 0.8830 +6834 8192 0.4540 +6834 8803 0.4900 +6834 9377 0.7550 +6834 9512 0.4050 +6834 9997 0.9700 +6834 10063 0.8190 +6834 10128 0.8100 +6834 10939 0.4820 +6834 22868 0.6580 +6834 23474 0.4440 +6834 25813 0.4390 +6834 25915 0.7730 +6834 25994 0.4230 +6834 28958 0.9200 +6834 28976 0.5050 +6834 29087 0.5810 +6834 29927 0.4670 +6834 51103 0.4420 +6834 51204 0.8480 +6834 51241 0.6630 +6834 51287 0.4550 +6834 54205 0.6760 +6834 54332 0.4030 +6834 54902 0.4180 +6834 54968 0.5530 +6834 55176 0.4660 +6834 55471 0.4070 +6834 55526 0.5060 +6834 55572 0.6420 +6834 55744 0.7570 +6834 56652 0.4620 +6834 56945 0.4180 +6834 57038 0.4520 +6834 57222 0.4870 +6834 63826 0.4180 +6834 65260 0.4400 +6834 79133 0.6720 +6834 80224 0.4190 +6834 80305 0.4320 +6834 80704 0.4470 +6834 84545 0.4070 +6834 84701 0.6440 +6834 84987 0.9130 +6834 90639 0.4960 +6834 91647 0.5090 +6834 91942 0.6400 +6834 113675 0.4210 +6834 116228 0.5500 +6834 118490 0.5690 +6834 131474 0.4470 +6834 137682 0.7730 +6834 284106 0.5240 +6834 285521 0.5140 +6834 374291 0.7050 +6834 388753 0.6320 +6834 493753 0.5980 +6834 644096 0.5530 +6834 100131801 0.6390 +6834 100303755 0.6770 +6835 6836 0.9820 +6835 6837 0.7120 +6835 6838 0.8470 +6835 9581 0.5750 +6835 9684 0.4610 +6835 55322 0.4220 +6835 57222 0.7140 +6835 79087 0.4410 +6835 84240 0.4480 +6835 84864 0.4360 +6835 124790 0.4320 +6835 135138 0.4520 +6836 6837 0.5960 +6836 6838 0.6540 +6836 7410 0.4430 +6836 8729 0.5210 +6836 8774 0.5040 +6836 8775 0.6460 +6836 9183 0.5030 +6836 9276 0.7020 +6836 9527 0.9620 +6836 9554 0.6790 +6836 9601 0.4270 +6836 9632 0.5300 +6836 9871 0.4320 +6836 9919 0.6110 +6836 10113 0.6890 +6836 10175 0.5270 +6836 10422 0.4110 +6836 10427 0.7780 +6836 10483 0.5120 +6836 10567 0.4140 +6836 10802 0.4990 +6836 10945 0.9040 +6836 10956 0.4210 +6836 10959 0.8870 +6836 10960 0.6140 +6836 10972 0.8700 +6836 11014 0.6910 +6836 11015 0.5960 +6836 11079 0.7510 +6836 11091 0.4150 +6836 11231 0.4730 +6836 11316 0.6090 +6836 22818 0.6160 +6836 22820 0.5830 +6836 22872 0.5330 +6836 23203 0.4260 +6836 23423 0.6510 +6836 26003 0.6500 +6836 26286 0.5360 +6836 26330 0.4490 +6836 26958 0.5970 +6836 27248 0.4030 +6836 29097 0.4650 +6836 29927 0.7350 +6836 51014 0.8050 +6836 51128 0.7450 +6836 51226 0.5710 +6836 51290 0.5740 +6836 51507 0.4370 +6836 51594 0.5030 +6836 51614 0.5690 +6836 51669 0.4740 +6836 53407 0.6460 +6836 54732 0.8490 +6836 55176 0.5310 +6836 55684 0.5080 +6836 55738 0.5670 +6836 55850 0.5040 +6836 56681 0.7560 +6836 56926 0.4280 +6836 57222 0.9430 +6836 57469 0.4490 +6836 60561 0.5190 +6836 63908 0.5440 +6836 64083 0.5000 +6836 64170 0.4140 +6836 79139 0.5760 +6836 79748 0.4200 +6836 79782 0.4250 +6836 81037 0.5710 +6836 81562 0.4240 +6836 81876 0.5590 +6836 84364 0.5200 +6836 84447 0.4550 +6836 90411 0.6180 +6836 157922 0.4140 +6836 158067 0.4430 +6836 222068 0.4440 +6836 375056 0.6160 +6837 6838 0.9420 +6837 6872 0.8300 +6837 6873 0.8220 +6837 6874 0.8260 +6837 6877 0.8190 +6837 6878 0.8280 +6837 6879 0.8150 +6837 6880 0.8240 +6837 6881 0.8310 +6837 6882 0.8400 +6837 6883 0.8070 +6837 6884 0.8110 +6837 6908 0.8680 +6837 6917 0.4670 +6837 6919 0.4710 +6837 6920 0.4630 +6837 7158 0.4590 +6837 8202 0.5130 +6837 8294 0.8160 +6837 8359 0.8160 +6837 8360 0.8140 +6837 8361 0.8100 +6837 8362 0.8160 +6837 8363 0.8160 +6837 8364 0.8130 +6837 8366 0.8150 +6837 8367 0.8150 +6837 8368 0.8160 +6837 8370 0.8150 +6837 8648 0.5020 +6837 8841 0.5190 +6837 8970 0.8050 +6837 9282 0.9990 +6837 9370 0.4990 +6837 9412 0.9990 +6837 9439 0.9980 +6837 9440 0.9990 +6837 9441 0.9990 +6837 9442 0.9990 +6837 9443 0.9990 +6837 9477 0.9990 +6837 9533 0.5420 +6837 9611 0.5860 +6837 9612 0.5010 +6837 9623 0.6270 +6837 9696 0.4790 +6837 9774 0.5560 +6837 9862 0.9970 +6837 9967 0.9020 +6837 9968 0.9990 +6837 9969 0.9890 +6837 10001 0.9990 +6837 10025 0.9990 +6837 10095 0.5270 +6837 10471 0.6920 +6837 10499 0.5070 +6837 10552 0.5250 +6837 10891 0.4990 +6837 23097 0.9770 +6837 23389 0.9560 +6837 23476 0.6150 +6837 26043 0.4840 +6837 27125 0.4310 +6837 27247 0.4290 +6837 29063 0.6780 +6837 29079 0.9990 +6837 51003 0.9990 +6837 51092 0.5100 +6837 51129 0.4990 +6837 51586 0.9980 +6837 51759 0.8060 +6837 54797 0.9990 +6837 54847 0.4970 +6837 55090 0.9980 +6837 55294 0.4630 +6837 55588 0.9990 +6837 57121 0.4750 +6837 57540 0.4540 +6837 80306 0.9990 +6837 81488 0.4300 +6837 81857 0.9880 +6837 83860 0.8000 +6837 84246 0.9990 +6837 84498 0.5180 +6837 84950 0.6960 +6837 85441 0.5000 +6837 90390 0.9990 +6837 112950 0.9990 +6837 116931 0.8960 +6837 121504 0.8150 +6837 126961 0.8030 +6837 129685 0.8400 +6837 133522 0.9000 +6837 149483 0.4750 +6837 246721 0.5070 +6837 256643 0.5400 +6837 333932 0.8030 +6837 340602 0.4750 +6837 374655 0.4020 +6837 400569 0.9990 +6837 404672 0.8140 +6837 448834 0.4750 +6837 548644 0.5070 +6837 554313 0.8160 +6837 653604 0.8190 +6837 100134938 0.5010 +6837 107983993 0.5010 +6837 122455342 0.4750 +6838 7248 0.5040 +6838 7555 0.5070 +6838 8480 0.4400 +6838 8568 0.9060 +6838 8602 0.8560 +6838 8886 0.8040 +6838 9045 0.5120 +6838 9092 0.5320 +6838 9136 0.6950 +6838 9188 0.4200 +6838 9221 0.5670 +6838 9277 0.7630 +6838 9349 0.4380 +6838 9724 0.6860 +6838 9732 0.4680 +6838 9790 0.7670 +6838 9875 0.5090 +6838 9904 0.9350 +6838 9933 0.8770 +6838 10153 0.9020 +6838 10199 0.7390 +6838 10335 0.4070 +6838 10412 0.6570 +6838 10422 0.4430 +6838 10436 0.4750 +6838 10439 0.4270 +6838 10514 0.5800 +6838 10521 0.4270 +6838 10528 0.5020 +6838 10607 0.4480 +6838 10813 0.6990 +6838 10849 0.5680 +6838 10885 0.6350 +6838 10969 0.9910 +6838 11056 0.8410 +6838 11091 0.4890 +6838 11093 0.4910 +6838 11103 0.8540 +6838 11137 0.6390 +6838 11224 0.5250 +6838 22927 0.4120 +6838 22984 0.6880 +6838 23029 0.7260 +6838 23076 0.9090 +6838 23160 0.6570 +6838 23203 0.4950 +6838 23212 0.9490 +6838 23223 0.7480 +6838 23246 0.8570 +6838 23378 0.7570 +6838 23481 0.9400 +6838 23517 0.4360 +6838 23560 0.9740 +6838 24140 0.6130 +6838 25873 0.4900 +6838 25879 0.4490 +6838 25983 0.8710 +6838 26155 0.8690 +6838 26156 0.9010 +6838 26354 0.7940 +6838 26574 0.6990 +6838 27292 0.4340 +6838 27341 0.7430 +6838 28987 0.7670 +6838 29777 0.6250 +6838 29889 0.8960 +6838 29989 0.4450 +6838 29997 0.9040 +6838 30836 0.6820 +6838 51018 0.9820 +6838 51042 0.6380 +6838 51068 0.5200 +6838 51082 0.7380 +6838 51096 0.4980 +6838 51118 0.8880 +6838 51121 0.4060 +6838 51154 0.8740 +6838 51187 0.9560 +6838 51202 0.8530 +6838 51388 0.7820 +6838 51490 0.6290 +6838 51491 0.5550 +6838 51575 0.9000 +6838 51602 0.5440 +6838 54517 0.4090 +6838 54552 0.7730 +6838 54555 0.5300 +6838 54606 0.6960 +6838 54663 0.9480 +6838 54865 0.8190 +6838 54984 0.8720 +6838 55003 0.8470 +6838 55131 0.8950 +6838 55153 0.7130 +6838 55226 0.5450 +6838 55272 0.6990 +6838 55299 0.9600 +6838 55319 0.7670 +6838 55341 0.7560 +6838 55646 0.8780 +6838 55651 0.8110 +6838 55703 0.4030 +6838 55718 0.5820 +6838 55759 0.6420 +6838 55760 0.4170 +6838 55781 0.6050 +6838 55794 0.6630 +6838 55813 0.7000 +6838 55854 0.4130 +6838 56342 0.9090 +6838 56647 0.4050 +6838 57050 0.8740 +6838 57062 0.5920 +6838 57109 0.6730 +6838 57418 0.4180 +6838 57582 0.4180 +6838 57696 0.7160 +6838 64318 0.5370 +6838 64434 0.4700 +6838 64794 0.5630 +6838 65083 0.4880 +6838 65095 0.8480 +6838 79009 0.5100 +6838 79039 0.8740 +6838 79050 0.6750 +6838 79159 0.8320 +6838 79954 0.8560 +6838 80135 0.9740 +6838 81572 0.5190 +6838 83480 0.5320 +6838 83732 0.6120 +6838 83743 0.8810 +6838 84065 0.4610 +6838 84128 0.4150 +6838 84154 0.9560 +6838 84273 0.4320 +6838 84294 0.7050 +6838 84310 0.7510 +6838 84319 0.4370 +6838 84365 0.9780 +6838 84549 0.9740 +6838 84916 0.4440 +6838 84946 0.6180 +6838 85865 0.4800 +6838 88745 0.4500 +6838 90121 0.6600 +6838 92856 0.8420 +6838 116966 0.4170 +6838 117246 0.9220 +6838 118460 0.4050 +6838 146212 0.6020 +6838 155368 0.4020 +6838 157922 0.4550 +6838 158067 0.4750 +6838 158135 0.4070 +6838 161424 0.4050 +6838 165545 0.4110 +6838 167153 0.4220 +6838 221078 0.6700 +6838 221830 0.6020 +6838 285855 0.8760 +6838 387129 0.6250 +6838 392399 0.4050 +6838 692312 0.8700 +6838 100505478 0.6140 +6839 7157 0.5730 +6839 7158 0.4660 +6839 7403 0.7410 +6839 7404 0.4280 +6839 7486 0.8030 +6839 7528 0.7900 +6839 7752 0.4380 +6839 7799 0.5840 +6839 7874 0.4900 +6839 7994 0.4840 +6839 8242 0.5410 +6839 8290 0.9300 +6839 8328 0.6300 +6839 8331 0.5630 +6839 8334 0.5630 +6839 8337 0.8050 +6839 8338 0.8230 +6839 8340 0.6340 +6839 8341 0.6330 +6839 8342 0.6320 +6839 8345 0.6330 +6839 8347 0.6350 +6839 8348 0.6360 +6839 8349 0.7920 +6839 8350 0.8290 +6839 8352 0.5430 +6839 8353 0.5450 +6839 8356 0.9730 +6839 8361 0.8170 +6839 8369 0.6520 +6839 8450 0.9020 +6839 8451 0.7940 +6839 8467 0.7670 +6839 8535 0.6500 +6839 8544 0.4640 +6839 8726 0.6690 +6839 8841 0.5870 +6839 8850 0.5770 +6839 8864 0.5580 +6839 8970 0.6400 +6839 8985 0.6620 +6839 9070 0.6450 +6839 9212 0.7410 +6839 9252 0.4370 +6839 9271 0.4210 +6839 9425 0.4820 +6839 9555 0.6690 +6839 9611 0.4530 +6839 9612 0.4770 +6839 9682 0.6700 +6839 9734 0.5130 +6839 9759 0.6670 +6839 9869 0.9880 +6839 9940 0.4140 +6839 9947 0.4490 +6839 10013 0.5210 +6839 10014 0.6150 +6839 10036 0.4520 +6839 10155 0.8850 +6839 10196 0.5150 +6839 10322 0.4950 +6839 10419 0.5830 +6839 10498 0.5170 +6839 10524 0.7730 +6839 10664 0.6570 +6839 10765 0.5880 +6839 10856 0.4730 +6839 10919 0.9780 +6839 10933 0.4130 +6839 10951 0.9900 +6839 11004 0.4210 +6839 11091 0.5570 +6839 11143 0.4940 +6839 11176 0.8750 +6839 11186 0.5040 +6839 11329 0.4840 +6839 11335 0.9980 +6839 22893 0.9240 +6839 22933 0.9460 +6839 22992 0.5260 +6839 23028 0.8610 +6839 23030 0.6220 +6839 23081 0.7730 +6839 23133 0.6660 +6839 23135 0.6820 +6839 23186 0.6040 +6839 23378 0.9960 +6839 23405 0.6110 +6839 23411 0.9990 +6839 23468 0.9990 +6839 23476 0.5870 +6839 23512 0.9030 +6839 23523 0.4450 +6839 25942 0.8730 +6839 26013 0.6910 +6839 26147 0.5360 +6839 29072 0.4170 +6839 29128 0.6780 +6839 29911 0.4430 +6839 29947 0.6320 +6839 30827 0.5200 +6839 50852 0.4120 +6839 51111 0.8220 +6839 51523 0.5230 +6839 51547 0.4440 +6839 51548 0.4880 +6839 51564 0.4770 +6839 51780 0.4270 +6839 54145 0.6330 +6839 54496 0.4620 +6839 54737 0.6190 +6839 55170 0.5000 +6839 55693 0.7350 +6839 55723 0.4210 +6839 55729 0.6470 +6839 55766 0.5630 +6839 55818 0.5480 +6839 55869 0.5460 +6839 55870 0.4840 +6839 55904 0.4520 +6839 55920 0.4390 +6839 56950 0.6360 +6839 56979 0.4360 +6839 57805 0.6250 +6839 64743 0.4060 +6839 64754 0.6400 +6839 64919 0.9480 +6839 79577 0.7220 +6839 79723 0.4130 +6839 79813 0.5540 +6839 79823 0.8490 +6839 79885 0.4640 +6839 79980 0.4330 +6839 80312 0.4630 +6839 80335 0.4040 +6839 80818 0.4960 +6839 80853 0.6160 +6839 80854 0.6830 +6839 83746 0.4410 +6839 83852 0.5900 +6839 83933 0.4270 +6839 84106 0.4010 +6839 84148 0.4740 +6839 84193 0.6120 +6839 84260 0.4940 +6839 84444 0.6870 +6839 84661 0.4840 +6839 84678 0.5420 +6839 84787 0.8210 +6839 85236 0.6410 +6839 91283 0.4140 +6839 94239 0.6200 +6839 126961 0.4170 +6839 128312 0.6350 +6839 143689 0.4370 +6839 150572 0.4050 +6839 151648 0.5770 +6839 157570 0.4290 +6839 221656 0.4730 +6839 255308 0.8300 +6839 255626 0.6390 +6839 340096 0.4030 +6839 378708 0.4640 +6839 390245 0.4130 +6839 391769 0.4330 +6839 440093 0.9310 +6839 440686 0.9370 +6839 474382 0.5730 +6839 653604 0.9730 +6840 7094 0.4690 +6840 7111 0.4480 +6840 7205 0.5810 +6840 7414 0.5480 +6840 7791 0.5180 +6840 8877 0.4950 +6840 9928 0.7740 +6840 10097 0.4770 +6840 10211 0.6060 +6840 10677 0.4440 +6840 23028 0.5240 +6840 23195 0.4210 +6840 23603 0.4400 +6840 29766 0.4470 +6840 50853 0.4130 +6840 51474 0.5430 +6840 54443 0.5230 +6840 57175 0.4050 +6840 57466 0.5620 +6840 64005 0.4310 +6840 64423 0.4890 +6840 83660 0.4460 +6840 85477 0.4260 +6840 91624 0.4080 +6843 6844 0.9500 +6843 6845 0.9170 +6843 6853 0.5870 +6843 6854 0.6590 +6843 6855 0.6640 +6843 6857 0.8360 +6843 6860 0.4540 +6843 6892 0.4170 +6843 7220 0.4850 +6843 8224 0.4410 +6843 8417 0.8120 +6843 8673 0.7100 +6843 8674 0.7970 +6843 8675 0.7730 +6843 8676 0.8160 +6843 8677 0.7320 +6843 8723 0.6610 +6843 8766 0.4270 +6843 8773 0.9950 +6843 8774 0.6660 +6843 8775 0.9030 +6843 9066 0.4110 +6843 9217 0.6980 +6843 9218 0.8030 +6843 9230 0.4390 +6843 9341 0.9140 +6843 9342 0.8590 +6843 9482 0.7950 +6843 9515 0.6590 +6843 9527 0.7570 +6843 9554 0.7590 +6843 9570 0.7000 +6843 9699 0.4640 +6843 9899 0.4680 +6843 9900 0.5160 +6843 10228 0.9220 +6843 10244 0.4140 +6843 10251 0.5120 +6843 10282 0.7590 +6843 10490 0.8730 +6843 10497 0.4620 +6843 10652 0.8480 +6843 10814 0.7470 +6843 10815 0.7970 +6843 10890 0.4530 +6843 11336 0.4270 +6843 22987 0.4030 +6843 23025 0.4860 +6843 23673 0.7880 +6843 26276 0.4380 +6843 27072 0.4840 +6843 51272 0.7110 +6843 53407 0.6700 +6843 54820 0.4950 +6843 55014 0.7310 +6843 55080 0.7680 +6843 55850 0.6030 +6843 57030 0.4760 +6843 57189 0.5190 +6843 57586 0.4470 +6843 57704 0.4200 +6843 60412 0.4640 +6843 63908 0.8740 +6843 64601 0.5130 +6843 65082 0.4330 +6843 112476 0.5800 +6843 112755 0.9940 +6843 116841 0.8410 +6843 127833 0.7280 +6843 132204 0.4140 +6843 134957 0.7060 +6843 143187 0.8360 +6843 203062 0.6970 +6843 339302 0.9080 +6843 341359 0.4560 +6843 415117 0.7610 +6843 594855 0.9410 +6844 6845 0.9950 +6844 6853 0.9690 +6844 6854 0.8370 +6844 6855 0.9990 +6844 6856 0.8210 +6844 6857 0.9990 +6844 6860 0.6840 +6844 6861 0.8780 +6844 6869 0.5220 +6844 7018 0.5150 +6844 7037 0.7430 +6844 7039 0.5140 +6844 7082 0.4310 +6844 7163 0.6830 +6844 7164 0.4990 +6844 7311 0.5960 +6844 7314 0.5150 +6844 7316 0.5290 +6844 7415 0.4850 +6844 7474 0.5150 +6844 7485 0.5790 +6844 7781 0.5120 +6844 7917 0.6560 +6844 8027 0.4990 +6844 8128 0.6270 +6844 8218 0.7280 +6844 8224 0.8230 +6844 8266 0.5570 +6844 8301 0.7320 +6844 8322 0.5080 +6844 8411 0.4310 +6844 8417 0.9710 +6844 8447 0.6010 +6844 8497 0.5750 +6844 8499 0.6430 +6844 8500 0.6680 +6844 8541 0.6980 +6844 8546 0.5540 +6844 8573 0.5250 +6844 8618 0.4490 +6844 8673 0.9660 +6844 8674 0.8600 +6844 8675 0.9720 +6844 8676 0.9660 +6844 8677 0.7850 +6844 8723 0.9320 +6844 8766 0.6940 +6844 8773 0.9990 +6844 8774 0.8170 +6844 8775 0.9970 +6844 8825 0.5630 +6844 8867 0.6650 +6844 8871 0.5780 +6844 8905 0.5200 +6844 8907 0.5540 +6844 8927 0.7090 +6844 8976 0.5070 +6844 9026 0.6280 +6844 9066 0.6800 +6844 9143 0.6710 +6844 9146 0.6560 +6844 9185 0.4990 +6844 9217 0.6420 +6844 9218 0.9030 +6844 9230 0.4310 +6844 9254 0.4360 +6844 9256 0.5410 +6844 9341 0.9950 +6844 9342 0.9860 +6844 9370 0.4290 +6844 9374 0.5960 +6844 9378 0.5870 +6844 9379 0.5980 +6844 9381 0.8510 +6844 9482 0.8800 +6844 9515 0.7070 +6844 9527 0.8770 +6844 9545 0.4500 +6844 9554 0.8030 +6844 9570 0.8260 +6844 9685 0.6210 +6844 9698 0.5210 +6844 9699 0.5220 +6844 9829 0.6530 +6844 9847 0.5560 +6844 9856 0.5100 +6844 9892 0.9660 +6844 9899 0.5220 +6844 9900 0.7120 +6844 10053 0.5240 +6844 10228 0.9970 +6844 10251 0.4030 +6844 10254 0.4990 +6844 10282 0.8990 +6844 10490 0.9390 +6844 10497 0.9560 +6844 10567 0.8220 +6844 10618 0.8140 +6844 10640 0.6850 +6844 10652 0.8250 +6844 10717 0.5260 +6844 10814 0.9710 +6844 10815 0.9990 +6844 10890 0.7130 +6844 10952 0.5760 +6844 11037 0.4990 +6844 11336 0.7960 +6844 22848 0.5590 +6844 22883 0.5710 +6844 22895 0.5030 +6844 22905 0.6470 +6844 22987 0.4950 +6844 22999 0.7730 +6844 23025 0.7790 +6844 23048 0.4120 +6844 23085 0.4690 +6844 23149 0.5820 +6844 23176 0.6600 +6844 23208 0.7650 +6844 23256 0.4670 +6844 23265 0.7060 +6844 23339 0.4250 +6844 23431 0.5640 +6844 23480 0.5030 +6844 23557 0.8920 +6844 23673 0.9840 +6844 23683 0.4080 +6844 25977 0.5910 +6844 26059 0.4740 +6844 26119 0.5010 +6844 26258 0.7630 +6844 26276 0.4370 +6844 27072 0.4840 +6844 27131 0.5100 +6844 27230 0.5470 +6844 27445 0.6030 +6844 29924 0.6340 +6844 29978 0.5640 +6844 29988 0.5090 +6844 30011 0.5260 +6844 50618 0.6790 +6844 51272 0.7200 +6844 51429 0.5570 +6844 51552 0.6290 +6844 51608 0.5380 +6844 51806 0.6460 +6844 53407 0.6900 +6844 54536 0.6630 +6844 54885 0.5040 +6844 54982 0.4820 +6844 55014 0.9430 +6844 55327 0.5520 +6844 55330 0.5050 +6844 55707 0.5470 +6844 55763 0.6530 +6844 55770 0.6770 +6844 55850 0.6400 +6844 57030 0.9380 +6844 57084 0.5060 +6844 57189 0.4150 +6844 57449 0.5920 +6844 57590 0.4610 +6844 58513 0.5600 +6844 60412 0.6880 +6844 63908 0.9040 +6844 64083 0.4880 +6844 64130 0.5680 +6844 64601 0.5610 +6844 64786 0.6360 +6844 65009 0.4530 +6844 65082 0.4290 +6844 79058 0.4520 +6844 79735 0.6750 +6844 80331 0.9490 +6844 81567 0.5110 +6844 84062 0.7010 +6844 84251 0.5470 +6844 84258 0.5400 +6844 85021 0.5090 +6844 85439 0.7470 +6844 90019 0.5780 +6844 91683 0.4200 +6844 91860 0.6430 +6844 94121 0.4270 +6844 112476 0.6220 +6844 112755 0.9980 +6844 115548 0.5570 +6844 115557 0.4240 +6844 115827 0.5110 +6844 116841 0.9450 +6844 118424 0.4990 +6844 127833 0.9010 +6844 130340 0.4990 +6844 132204 0.6240 +6844 133482 0.6000 +6844 134957 0.9000 +6844 140679 0.9090 +6844 143187 0.9000 +6844 143425 0.7010 +6844 149371 0.6510 +6844 163688 0.6430 +6844 203062 0.6880 +6844 246213 0.8510 +6844 252983 0.7620 +6844 255324 0.4990 +6844 282991 0.4540 +6844 286451 0.6830 +6844 339302 0.6620 +6844 388552 0.7330 +6844 415117 0.8790 +6844 594855 0.7010 +6844 653808 0.4120 +6845 6854 0.4120 +6845 6857 0.7260 +6845 6869 0.4990 +6845 7018 0.4990 +6845 7037 0.6770 +6845 7039 0.5140 +6845 7163 0.5420 +6845 7164 0.5200 +6845 7251 0.4790 +6845 7311 0.5130 +6845 7314 0.5210 +6845 7316 0.5160 +6845 7319 0.4530 +6845 7411 0.6270 +6845 7474 0.5090 +6845 7879 0.5520 +6845 8027 0.6540 +6845 8218 0.6860 +6845 8291 0.4410 +6845 8301 0.5910 +6845 8322 0.4990 +6845 8411 0.4720 +6845 8417 0.9990 +6845 8546 0.6640 +6845 8623 0.4850 +6845 8673 0.9990 +6845 8674 0.9260 +6845 8675 0.9830 +6845 8676 0.8550 +6845 8677 0.7570 +6845 8723 0.9230 +6845 8724 0.4350 +6845 8766 0.8930 +6845 8773 0.9990 +6845 8774 0.8120 +6845 8775 0.9660 +6845 8905 0.5690 +6845 8907 0.7050 +6845 8943 0.7880 +6845 9026 0.5700 +6845 9066 0.9740 +6845 9117 0.4980 +6845 9140 0.4170 +6845 9146 0.6230 +6845 9185 0.5030 +6845 9189 0.4400 +6845 9341 0.9980 +6845 9342 0.9990 +6845 9355 0.4810 +6845 9367 0.5080 +6845 9392 0.4240 +6845 9474 0.4730 +6845 9482 0.9960 +6845 9515 0.6220 +6845 9527 0.7940 +6845 9554 0.9410 +6845 9559 0.6220 +6845 9570 0.8750 +6845 9685 0.8720 +6845 9698 0.5070 +6845 9821 0.4220 +6845 9829 0.5310 +6845 9842 0.5760 +6845 9856 0.4990 +6845 9892 0.5990 +6845 10053 0.5560 +6845 10228 0.9970 +6845 10251 0.7830 +6845 10254 0.6020 +6845 10282 0.9890 +6845 10490 0.9950 +6845 10618 0.7160 +6845 10652 0.9310 +6845 10717 0.5180 +6845 10791 0.6970 +6845 10814 0.7570 +6845 10815 0.7600 +6845 10981 0.5870 +6845 11021 0.6570 +6845 11037 0.4990 +6845 11345 0.5600 +6845 22848 0.5060 +6845 22863 0.4550 +6845 22905 0.5880 +6845 23011 0.6830 +6845 23149 0.5550 +6845 23208 0.5960 +6845 23265 0.7050 +6845 23339 0.6280 +6845 23355 0.5150 +6845 23431 0.5360 +6845 23557 0.6960 +6845 23673 0.9960 +6845 23682 0.5520 +6845 25977 0.5200 +6845 26119 0.5040 +6845 26258 0.7300 +6845 26276 0.8710 +6845 26984 0.4670 +6845 26985 0.6790 +6845 27069 0.4570 +6845 27072 0.5800 +6845 27131 0.6180 +6845 29924 0.5760 +6845 29978 0.5750 +6845 29988 0.4990 +6845 30011 0.5300 +6845 50618 0.6300 +6845 51272 0.7050 +6845 51324 0.4790 +6845 51429 0.5700 +6845 51534 0.5120 +6845 51622 0.5570 +6845 51699 0.5080 +6845 53407 0.9360 +6845 53917 0.4140 +6845 54885 0.5000 +6845 55014 0.9990 +6845 55330 0.5260 +6845 55357 0.5580 +6845 55707 0.5090 +6845 55737 0.6320 +6845 55823 0.5260 +6845 55850 0.9110 +6845 57617 0.5970 +6845 57724 0.4640 +6845 58513 0.6000 +6845 60412 0.4370 +6845 63908 0.7870 +6845 63915 0.4330 +6845 64422 0.4190 +6845 64601 0.8980 +6845 65082 0.9030 +6845 80331 0.4220 +6845 81567 0.5160 +6845 84062 0.5970 +6845 84079 0.9910 +6845 84251 0.5370 +6845 84315 0.4050 +6845 84343 0.4940 +6845 84932 0.4490 +6845 85021 0.5070 +6845 85439 0.5370 +6845 90019 0.5040 +6845 112755 0.9400 +6845 114088 0.4080 +6845 115548 0.5840 +6845 116841 0.8850 +6845 127833 0.6840 +6845 130340 0.4990 +6845 134957 0.7150 +6845 143187 0.9940 +6845 143425 0.5560 +6845 201294 0.6470 +6845 203062 0.7870 +6845 203245 0.5410 +6845 205428 0.4040 +6845 221960 0.5530 +6845 255324 0.4990 +6845 286451 0.5700 +6845 339302 0.5400 +6845 388552 0.5740 +6845 415117 0.8610 +6845 594855 0.5400 +6846 7204 0.5310 +6846 7852 0.7990 +6846 8530 0.4060 +6846 8997 0.4990 +6846 9560 0.4750 +6846 10344 0.9950 +6846 10563 0.4580 +6846 10578 0.6130 +6846 10663 0.8030 +6846 10800 0.4990 +6846 10803 0.7330 +6846 11126 0.6230 +6846 22914 0.5430 +6846 23236 0.4990 +6846 30009 0.4100 +6846 51348 0.4670 +6846 56253 0.4940 +6846 56477 0.9940 +6846 57105 0.5110 +6846 60675 0.4700 +6846 83888 0.4110 +6846 115557 0.4990 +6846 201633 0.4790 +6846 284340 0.9950 +6847 7013 0.6660 +6847 7014 0.5060 +6847 7141 0.5560 +6847 7142 0.5350 +6847 7252 0.4340 +6847 7317 0.4520 +6847 7329 0.5550 +6847 7704 0.4990 +6847 7784 0.4530 +6847 8193 0.5080 +6847 8243 0.6740 +6847 8290 0.6650 +6847 8331 0.5450 +6847 8334 0.5450 +6847 8337 0.6090 +6847 8338 0.6130 +6847 8340 0.5510 +6847 8341 0.5500 +6847 8342 0.5480 +6847 8345 0.5480 +6847 8347 0.5490 +6847 8348 0.5480 +6847 8349 0.5690 +6847 8361 0.5350 +6847 8468 0.6850 +6847 8815 0.4300 +6847 8970 0.5480 +6847 8988 0.4220 +6847 9126 0.7430 +6847 9271 0.4950 +6847 9319 0.5070 +6847 9985 0.9110 +6847 10274 0.6210 +6847 10388 0.9910 +6847 10734 0.8420 +6847 10735 0.5710 +6847 11083 0.5840 +6847 11144 0.6390 +6847 23224 0.5360 +6847 23345 0.5230 +6847 23353 0.7020 +6847 23626 0.8180 +6847 25777 0.6000 +6847 25913 0.5040 +6847 26277 0.5450 +6847 27127 0.8570 +6847 27173 0.5900 +6847 50511 0.9960 +6847 51213 0.4180 +6847 51412 0.5440 +6847 54145 0.5490 +6847 54386 0.5260 +6847 54456 0.4250 +6847 54457 0.4460 +6847 54514 0.6400 +6847 54937 0.4410 +6847 55124 0.4970 +6847 55274 0.4970 +6847 55766 0.5450 +6847 56154 0.5380 +6847 56158 0.9830 +6847 56159 0.5940 +6847 56163 0.4960 +6847 56979 0.6540 +6847 58155 0.6010 +6847 66037 0.4430 +6847 84072 0.8780 +6847 84519 0.4020 +6847 84690 0.5530 +6847 84944 0.5350 +6847 85236 0.5470 +6847 93426 0.9980 +6847 94239 0.5380 +6847 113130 0.4400 +6847 122402 0.4240 +6847 124817 0.4300 +6847 128312 0.5500 +6847 135935 0.4010 +6847 143471 0.5600 +6847 145645 0.4620 +6847 150280 0.7860 +6847 150365 0.6750 +6847 151246 0.4460 +6847 157777 0.4980 +6847 158401 0.5980 +6847 164045 0.4990 +6847 254528 0.6180 +6847 255626 0.5830 +6847 256006 0.5700 +6847 256126 0.9980 +6847 283129 0.4950 +6847 283677 0.5790 +6847 283847 0.5010 +6847 284071 0.4260 +6847 285498 0.6010 +6847 317761 0.8290 +6847 339345 0.5140 +6847 339834 0.5710 +6847 342977 0.5260 +6847 346673 0.7300 +6847 388649 0.4630 +6847 400629 0.4210 +6847 402381 0.5120 +6847 474382 0.5450 +6847 642636 0.7530 +6847 644186 0.9670 +6847 729475 0.4390 +6847 100526761 0.4180 +6847 101928601 0.4180 +6850 6921 0.5270 +6850 6923 0.5000 +6850 7006 0.5230 +6850 7094 0.7000 +6850 7096 0.5190 +6850 7097 0.7010 +6850 7098 0.6470 +6850 7099 0.9710 +6850 7100 0.4900 +6850 7124 0.7820 +6850 7132 0.5320 +6850 7133 0.4350 +6850 7157 0.5580 +6850 7187 0.5980 +6850 7189 0.9360 +6850 7294 0.6980 +6850 7297 0.8340 +6850 7305 0.9990 +6850 7311 0.5350 +6850 7314 0.5330 +6850 7316 0.5540 +6850 7321 0.5810 +6850 7322 0.5730 +6850 7323 0.5710 +6850 7409 0.9990 +6850 7410 0.9890 +6850 7412 0.4200 +6850 7441 0.4170 +6850 7450 0.7120 +6850 7454 0.6540 +6850 7456 0.5950 +6850 7462 0.9040 +6850 7525 0.5890 +6850 7535 0.9770 +6850 7837 0.4030 +6850 7852 0.5140 +6850 8065 0.5380 +6850 8115 0.4120 +6850 8431 0.4180 +6850 8503 0.9370 +6850 8600 0.6490 +6850 8631 0.6880 +6850 8651 0.8030 +6850 8792 0.5020 +6850 8915 0.8840 +6850 8936 0.5520 +6850 9021 0.6510 +6850 9047 0.4960 +6850 9076 0.4060 +6850 9368 0.5460 +6850 9402 0.9040 +6850 9429 0.4490 +6850 9437 0.6490 +6850 9447 0.4040 +6850 9616 0.5080 +6850 9844 0.7170 +6850 9846 0.9750 +6850 10006 0.6010 +6850 10125 0.4620 +6850 10152 0.5330 +6850 10163 0.6310 +6850 10288 0.9350 +6850 10293 0.6300 +6850 10320 0.4620 +6850 10326 0.5890 +6850 10332 0.4120 +6850 10434 0.4280 +6850 10451 0.9970 +6850 10458 0.5430 +6850 10630 0.7090 +6850 10673 0.5990 +6850 10724 0.4350 +6850 10750 0.4030 +6850 10787 0.5650 +6850 10810 0.5230 +6850 10859 0.9450 +6850 10870 0.9450 +6850 10892 0.7900 +6850 10990 0.9170 +6850 11006 0.9240 +6850 11024 0.9260 +6850 11025 0.9270 +6850 11027 0.9300 +6850 11214 0.4580 +6850 11315 0.4470 +6850 22914 0.8500 +6850 23191 0.5140 +6850 23241 0.4260 +6850 23533 0.6390 +6850 23547 0.9420 +6850 23569 0.5350 +6850 23586 0.4340 +6850 23601 0.8540 +6850 23643 0.4030 +6850 23729 0.4470 +6850 23765 0.5600 +6850 25759 0.9090 +6850 25939 0.4410 +6850 25970 0.4370 +6850 26191 0.4860 +6850 26253 0.9950 +6850 26499 0.5210 +6850 26999 0.5290 +6850 27036 0.4410 +6850 27040 0.9780 +6850 27071 0.6460 +6850 27229 0.4350 +6850 27240 0.4300 +6850 29108 0.8260 +6850 29110 0.4390 +6850 29760 0.9990 +6850 29761 0.8220 +6850 30009 0.4020 +6850 30011 0.6270 +6850 30835 0.7170 +6850 50852 0.9200 +6850 50856 0.5020 +6850 51135 0.5610 +6850 51206 0.8720 +6850 51225 0.4950 +6850 51266 0.9920 +6850 51284 0.5990 +6850 51311 0.5060 +6850 51759 0.4570 +6850 51806 0.4080 +6850 53358 0.9090 +6850 54106 0.8240 +6850 54209 0.9820 +6850 54210 0.4610 +6850 54518 0.6800 +6850 54790 0.5140 +6850 54923 0.4160 +6850 55423 0.9130 +6850 55690 0.4100 +6850 55824 0.5350 +6850 55845 0.5250 +6850 58484 0.4470 +6850 63916 0.5210 +6850 64127 0.5170 +6850 64170 0.9990 +6850 64581 0.9990 +6850 79168 0.9250 +6850 79930 0.5280 +6850 80739 0.6530 +6850 81704 0.4240 +6850 83706 0.4520 +6850 84433 0.7460 +6850 84466 0.4170 +6850 84868 0.5140 +6850 84959 0.7130 +6850 85443 0.4240 +6850 90273 0.6130 +6850 91860 0.4110 +6850 93978 0.9540 +6850 114548 0.7950 +6850 114609 0.4340 +6850 115352 0.8000 +6850 115650 0.4900 +6850 117157 0.5340 +6850 118788 0.9530 +6850 126014 0.9340 +6850 137902 0.4020 +6850 140885 0.9400 +6850 146850 0.5670 +6850 148022 0.4700 +6850 150372 0.6730 +6850 160364 0.4710 +6850 163688 0.4070 +6850 170482 0.5970 +6850 203068 0.4290 +6850 257144 0.5330 +6850 259197 0.4020 +6850 283420 0.8120 +6850 284266 0.4340 +6850 338339 0.8090 +6850 353514 0.9190 +6850 375033 0.4580 +6850 387837 0.4640 +6850 390714 0.4520 +6850 399694 0.9040 +6850 653361 0.5500 +6850 100049587 0.6550 +6850 100423062 0.5960 +6850 102723407 0.9550 +6853 6854 0.7260 +6853 6855 0.9840 +6853 6857 0.9450 +6853 6860 0.6140 +6853 7054 0.6260 +6853 7070 0.4100 +6853 7076 0.5320 +6853 7837 0.4910 +6853 7916 0.4970 +6853 8224 0.5450 +6853 8242 0.5720 +6853 8497 0.6270 +6853 8499 0.7090 +6853 8500 0.7080 +6853 8522 0.4710 +6853 8536 0.4380 +6853 8541 0.7720 +6853 8573 0.7160 +6853 8825 0.5580 +6853 8867 0.5130 +6853 8871 0.4370 +6853 8927 0.7560 +6853 9001 0.4410 +6853 9066 0.5130 +6853 9118 0.4190 +6853 9143 0.5020 +6853 9145 0.4150 +6853 9256 0.5800 +6853 9378 0.6210 +6853 9379 0.6250 +6853 9381 0.8420 +6853 9456 0.5910 +6853 9463 0.5070 +6853 9513 0.5230 +6853 9699 0.4950 +6853 9722 0.8120 +6853 9892 0.5540 +6853 9899 0.4680 +6853 9900 0.7330 +6853 10215 0.4960 +6853 10243 0.7110 +6853 10381 0.5890 +6853 10497 0.7620 +6853 10716 0.4960 +6853 10763 0.5850 +6853 10814 0.5720 +6853 10815 0.7880 +6853 10919 0.4370 +6853 11075 0.6600 +6853 11252 0.4480 +6853 22854 0.4870 +6853 22871 0.6120 +6853 22895 0.4990 +6853 22930 0.5090 +6853 22941 0.4500 +6853 22999 0.9000 +6853 23025 0.7370 +6853 23040 0.4570 +6853 23085 0.5560 +6853 23208 0.4560 +6853 23237 0.4100 +6853 23435 0.4120 +6853 23504 0.4180 +6853 23557 0.6830 +6853 23621 0.6560 +6853 26258 0.4100 +6853 27445 0.6910 +6853 29993 0.4280 +6853 50618 0.6780 +6853 50944 0.4990 +6853 51412 0.5560 +6853 51806 0.7750 +6853 53635 0.4890 +6853 54413 0.5290 +6853 54715 0.4030 +6853 54822 0.4480 +6853 55156 0.4850 +6853 55188 0.8720 +6853 55219 0.7440 +6853 55327 0.5220 +6853 57030 0.8950 +6853 57084 0.6870 +6853 57468 0.4930 +6853 57502 0.4680 +6853 57555 0.4990 +6853 58157 0.4150 +6853 63973 0.4810 +6853 64130 0.5660 +6853 64919 0.4170 +6853 79033 0.5800 +6853 80331 0.8930 +6853 81857 0.5810 +6853 84152 0.4830 +6853 84258 0.4320 +6853 84628 0.5180 +6853 84687 0.5100 +6853 85358 0.5060 +6853 91683 0.4650 +6853 91860 0.8050 +6853 94030 0.4100 +6853 112755 0.7190 +6853 114798 0.4110 +6853 115827 0.5020 +6853 120892 0.5590 +6853 127833 0.7930 +6853 132204 0.7330 +6853 134957 0.7260 +6853 137902 0.4910 +6853 140679 0.8590 +6853 146059 0.4370 +6853 146713 0.7590 +6853 163688 0.7630 +6853 246213 0.8690 +6854 6855 0.7980 +6854 6857 0.8880 +6854 6860 0.5530 +6854 6861 0.4130 +6854 7054 0.5230 +6854 7079 0.7190 +6854 7916 0.5620 +6854 8224 0.8540 +6854 8417 0.4190 +6854 8497 0.6410 +6854 8499 0.7010 +6854 8500 0.7710 +6854 8536 0.5610 +6854 8541 0.7470 +6854 8573 0.5900 +6854 8673 0.4730 +6854 8674 0.5540 +6854 8675 0.4220 +6854 8676 0.4110 +6854 8677 0.4930 +6854 8773 0.5520 +6854 8775 0.4780 +6854 8825 0.5630 +6854 8867 0.4620 +6854 8871 0.4040 +6854 9066 0.5150 +6854 9145 0.4600 +6854 9256 0.5340 +6854 9341 0.5110 +6854 9342 0.5030 +6854 9378 0.5910 +6854 9379 0.5410 +6854 9456 0.4980 +6854 9513 0.4970 +6854 9515 0.4830 +6854 9699 0.4420 +6854 9722 0.8390 +6854 9892 0.5250 +6854 9899 0.4980 +6854 9900 0.6550 +6854 10215 0.4220 +6854 10228 0.4610 +6854 10243 0.6480 +6854 10381 0.5060 +6854 10490 0.4280 +6854 10497 0.7490 +6854 10652 0.4430 +6854 10763 0.4770 +6854 10814 0.7220 +6854 10815 0.8590 +6854 11076 0.5050 +6854 11252 0.4740 +6854 22871 0.5500 +6854 22895 0.4340 +6854 22999 0.8350 +6854 23025 0.4790 +6854 23085 0.5450 +6854 23208 0.4600 +6854 23416 0.4430 +6854 23557 0.5320 +6854 23621 0.5910 +6854 23673 0.4430 +6854 26059 0.4020 +6854 27185 0.5550 +6854 27343 0.4160 +6854 29801 0.4510 +6854 50618 0.6060 +6854 50944 0.4190 +6854 51806 0.6780 +6854 53635 0.5540 +6854 54212 0.6180 +6854 54413 0.4770 +6854 55156 0.4730 +6854 55188 0.8180 +6854 55327 0.5220 +6854 55333 0.4170 +6854 57030 0.8510 +6854 57084 0.6010 +6854 57118 0.4820 +6854 57172 0.5070 +6854 57468 0.4070 +6854 57502 0.4250 +6854 57555 0.4460 +6854 63908 0.4570 +6854 64130 0.5640 +6854 79033 0.6720 +6854 80331 0.4630 +6854 81857 0.6280 +6854 84879 0.6400 +6854 85358 0.4280 +6854 91683 0.5020 +6854 91860 0.7210 +6854 112755 0.6340 +6854 114798 0.4910 +6854 115827 0.4630 +6854 116841 0.4690 +6854 127833 0.6320 +6854 132204 0.5600 +6854 134957 0.8170 +6854 140679 0.8060 +6854 143187 0.4410 +6854 146059 0.5060 +6854 146713 0.6480 +6854 163688 0.6610 +6854 415117 0.4140 +6854 594855 0.4610 +6855 6857 0.9420 +6855 6860 0.6470 +6855 6863 0.5100 +6855 6900 0.4070 +6855 7030 0.6530 +6855 7038 0.5920 +6855 7054 0.7610 +6855 7070 0.4080 +6855 7076 0.4100 +6855 7080 0.7730 +6855 7122 0.5160 +6855 7157 0.6280 +6855 7345 0.6030 +6855 7432 0.5650 +6855 7490 0.5710 +6855 7781 0.5440 +6855 7837 0.6810 +6855 7849 0.6000 +6855 7857 0.6040 +6855 8224 0.7650 +6855 8541 0.4140 +6855 8773 0.4470 +6855 8851 0.5420 +6855 8867 0.4650 +6855 8871 0.4040 +6855 8927 0.8040 +6855 9066 0.4110 +6855 9118 0.6440 +6855 9143 0.7740 +6855 9145 0.7950 +6855 9185 0.4450 +6855 9229 0.5540 +6855 9341 0.4260 +6855 9374 0.4120 +6855 9378 0.5570 +6855 9379 0.5110 +6855 9381 0.8320 +6855 9454 0.4930 +6855 9455 0.5100 +6855 9456 0.8360 +6855 9463 0.4650 +6855 9476 0.6440 +6855 9500 0.4280 +6855 9751 0.7020 +6855 9892 0.7650 +6855 9899 0.4900 +6855 9900 0.9770 +6855 10215 0.6430 +6855 10243 0.8090 +6855 10313 0.5380 +6855 10381 0.5430 +6855 10492 0.4740 +6855 10497 0.6490 +6855 10716 0.4040 +6855 10763 0.6230 +6855 10814 0.5740 +6855 10815 0.5700 +6855 11315 0.7290 +6855 11346 0.6210 +6855 22871 0.5460 +6855 22895 0.4140 +6855 22905 0.4300 +6855 22999 0.4600 +6855 23025 0.5280 +6855 23095 0.5010 +6855 23114 0.4020 +6855 23208 0.4510 +6855 23546 0.4260 +6855 23600 0.4360 +6855 23621 0.7860 +6855 25825 0.5220 +6855 26007 0.5770 +6855 26136 0.5490 +6855 27087 0.5630 +6855 27445 0.6610 +6855 29106 0.4110 +6855 29924 0.4820 +6855 29993 0.4730 +6855 50944 0.4410 +6855 51429 0.4320 +6855 51806 0.6080 +6855 53822 0.6260 +6855 54413 0.4430 +6855 54474 0.8700 +6855 55040 0.4240 +6855 55107 0.5060 +6855 55188 0.5420 +6855 55530 0.4620 +6855 57030 0.8800 +6855 57084 0.7210 +6855 57468 0.4240 +6855 57555 0.4480 +6855 57706 0.4220 +6855 58157 0.4570 +6855 58513 0.4420 +6855 60506 0.4040 +6855 78999 0.4610 +6855 79058 0.5230 +6855 79258 0.4190 +6855 79958 0.4260 +6855 80331 0.8780 +6855 80725 0.4350 +6855 84152 0.4150 +6855 84530 0.4180 +6855 84570 0.5480 +6855 84687 0.6480 +6855 85439 0.6410 +6855 85461 0.4380 +6855 91683 0.4260 +6855 91860 0.6000 +6855 92703 0.4770 +6855 112755 0.4530 +6855 115827 0.4260 +6855 121278 0.4150 +6855 127262 0.5480 +6855 127833 0.7250 +6855 137902 0.6810 +6855 140679 0.7220 +6855 140735 0.5820 +6855 145581 0.4910 +6855 146227 0.5410 +6855 146713 0.8010 +6855 163688 0.6000 +6855 246213 0.8750 +6855 256646 0.4800 +6855 400566 0.8120 +6856 9341 0.5960 +6856 9472 0.4770 +6856 9522 0.6570 +6856 9853 0.4880 +6856 22818 0.4640 +6856 23637 0.4780 +6856 55233 0.4370 +6856 79759 0.4730 +6856 80852 0.6390 +6856 83639 0.4440 +6856 404217 0.4210 +6857 6860 0.5890 +6857 6861 0.6790 +6857 7280 0.4500 +6857 7306 0.4300 +6857 7436 0.5630 +6857 7447 0.4380 +6857 7533 0.4320 +6857 7857 0.4670 +6857 8218 0.4620 +6857 8224 0.8640 +6857 8289 0.4480 +6857 8301 0.6010 +6857 8497 0.6000 +6857 8499 0.6650 +6857 8500 0.6650 +6857 8541 0.7200 +6857 8573 0.5880 +6857 8618 0.4690 +6857 8673 0.6780 +6857 8674 0.5810 +6857 8773 0.5820 +6857 8775 0.7590 +6857 8825 0.6310 +6857 8867 0.6950 +6857 8871 0.4540 +6857 8877 0.8800 +6857 8892 0.4310 +6857 8927 0.5220 +6857 8976 0.4400 +6857 9026 0.4420 +6857 9066 0.5190 +6857 9143 0.7150 +6857 9145 0.7150 +6857 9228 0.5200 +6857 9229 0.4330 +6857 9256 0.5750 +6857 9341 0.9750 +6857 9362 0.4150 +6857 9363 0.4270 +6857 9369 0.7040 +6857 9374 0.5550 +6857 9378 0.7980 +6857 9379 0.7450 +6857 9381 0.8270 +6857 9456 0.4340 +6857 9545 0.4520 +6857 9638 0.8590 +6857 9699 0.4580 +6857 9807 0.5070 +6857 9892 0.8300 +6857 9899 0.8580 +6857 9900 0.9410 +6857 10228 0.5590 +6857 10243 0.4190 +6857 10497 0.9460 +6857 10509 0.4210 +6857 10567 0.5950 +6857 10590 0.4470 +6857 10814 0.8390 +6857 10815 0.9990 +6857 10840 0.4110 +6857 11037 0.5340 +6857 11069 0.5270 +6857 11075 0.4940 +6857 22841 0.4340 +6857 22871 0.5700 +6857 22883 0.5350 +6857 22895 0.4020 +6857 22903 0.4320 +6857 22941 0.4360 +6857 22987 0.7330 +6857 22999 0.7180 +6857 23025 0.8770 +6857 23048 0.4370 +6857 23085 0.5620 +6857 23086 0.6480 +6857 23208 0.8410 +6857 23390 0.6840 +6857 23557 0.7470 +6857 23673 0.4920 +6857 26056 0.4880 +6857 26059 0.4830 +6857 26119 0.4990 +6857 26130 0.4390 +6857 27445 0.4150 +6857 29924 0.4580 +6857 29978 0.5050 +6857 50618 0.5220 +6857 51806 0.6570 +6857 54212 0.4580 +6857 54413 0.4260 +6857 54503 0.5320 +6857 54822 0.4590 +6857 54982 0.4350 +6857 55040 0.4990 +6857 55327 0.5600 +6857 55530 0.4290 +6857 57010 0.5040 +6857 57030 0.9460 +6857 57084 0.5630 +6857 57449 0.4110 +6857 57468 0.5790 +6857 57586 0.5920 +6857 57628 0.4710 +6857 58513 0.5720 +6857 64130 0.5460 +6857 64168 0.5730 +6857 65980 0.4320 +6857 79012 0.5320 +6857 79083 0.4600 +6857 80223 0.4200 +6857 80331 0.9560 +6857 85439 0.9870 +6857 85477 0.4330 +6857 89795 0.4810 +6857 90019 0.5840 +6857 91683 0.5770 +6857 91860 0.6580 +6857 112476 0.8300 +6857 112755 0.8820 +6857 115827 0.6140 +6857 127833 0.8210 +6857 132204 0.6220 +6857 134957 0.5190 +6857 140679 0.9220 +6857 143187 0.4110 +6857 143425 0.6530 +6857 146713 0.4620 +6857 161145 0.4430 +6857 163688 0.6300 +6857 192683 0.6020 +6857 341359 0.4950 +6857 374462 0.4900 +6857 440279 0.4890 +6857 594855 0.4070 +6860 6863 0.5110 +6860 7857 0.5230 +6860 8224 0.4660 +6860 8618 0.4440 +6860 8674 0.4830 +6860 8773 0.4480 +6860 8929 0.4470 +6860 8941 0.4770 +6860 9341 0.4880 +6860 9378 0.5650 +6860 9381 0.6390 +6860 9501 0.4160 +6860 9545 0.5020 +6860 9892 0.5990 +6860 9899 0.4490 +6860 10228 0.6580 +6860 10497 0.4570 +6860 10814 0.5560 +6860 10815 0.8690 +6860 11075 0.5580 +6860 23025 0.5500 +6860 23040 0.4060 +6860 23254 0.4270 +6860 29106 0.4720 +6860 29114 0.4160 +6860 50861 0.4610 +6860 51412 0.4330 +6860 55530 0.4160 +6860 56934 0.4520 +6860 57030 0.4470 +6860 57084 0.4820 +6860 57586 0.4020 +6860 84530 0.4430 +6860 112755 0.6290 +6860 115827 0.6730 +6860 127833 0.5500 +6860 132204 0.4770 +6860 140679 0.4710 +6861 9254 0.4130 +6861 10139 0.4130 +6861 10814 0.4270 +6861 23025 0.5070 +6861 51517 0.4180 +6861 112724 0.4160 +6861 137886 0.4610 +6861 245973 0.6150 +6861 445815 0.4370 +6862 6911 0.7950 +6862 6932 0.6290 +6862 7004 0.5500 +6862 8320 0.9160 +6862 8463 0.5440 +6862 8829 0.4050 +6862 8928 0.8480 +6862 9350 0.4250 +6862 10413 0.5210 +6862 10716 0.4550 +6862 23135 0.4990 +6862 28514 0.7690 +6862 51176 0.6040 +6862 51744 0.4080 +6862 55839 0.4290 +6862 64321 0.5570 +6862 79019 0.4240 +6862 79682 0.4450 +6862 79923 0.7120 +6862 80152 0.7600 +6862 80854 0.4480 +6862 83881 0.7990 +6862 344022 0.8210 +6862 387332 0.4990 +6863 6865 0.9990 +6863 6869 0.9990 +6863 6870 0.9930 +6863 7040 0.5570 +6863 7054 0.8360 +6863 7099 0.7230 +6863 7124 0.6530 +6863 7166 0.4960 +6863 7200 0.7180 +6863 7204 0.5080 +6863 7345 0.6870 +6863 7432 0.9730 +6863 7433 0.4470 +6863 7434 0.4210 +6863 7442 0.9390 +6863 7837 0.5760 +6863 7857 0.6810 +6863 8549 0.4870 +6863 8620 0.6120 +6863 8811 0.5380 +6863 8929 0.4240 +6863 8989 0.7860 +6863 8997 0.5200 +6863 9173 0.4140 +6863 9311 0.5790 +6863 9607 0.5760 +6863 9622 0.4180 +6863 9900 0.5490 +6863 10203 0.6580 +6863 10206 0.5060 +6863 10267 0.7000 +6863 10398 0.4030 +6863 10457 0.4220 +6863 10590 0.7090 +6863 10800 0.6060 +6863 10874 0.6420 +6863 11255 0.4600 +6863 11280 0.4820 +6863 22953 0.4760 +6863 23236 0.5420 +6863 23411 0.4610 +6863 23620 0.5210 +6863 27297 0.5230 +6863 51083 0.9460 +6863 51393 0.4910 +6863 51738 0.5460 +6863 51806 0.7910 +6863 54112 0.4460 +6863 54329 0.4240 +6863 54550 0.4630 +6863 54936 0.4460 +6863 57030 0.4860 +6863 57084 0.6570 +6863 57105 0.5720 +6863 57113 0.8850 +6863 59341 0.5940 +6863 60496 0.4470 +6863 79054 0.6400 +6863 79258 0.5730 +6863 81502 0.4200 +6863 84152 0.5140 +6863 84634 0.5280 +6863 90865 0.4500 +6863 91860 0.7880 +6863 115557 0.5210 +6863 116512 0.5120 +6863 117194 0.8880 +6863 129521 0.5680 +6863 137902 0.5760 +6863 140679 0.5070 +6863 146713 0.4680 +6863 162514 0.4850 +6863 163688 0.7880 +6863 246213 0.5020 +6863 255061 0.9890 +6863 259232 0.8250 +6863 285175 0.7920 +6863 347148 0.5230 +6863 386653 0.6730 +6863 387129 0.5220 +6863 594857 0.6350 +6863 100533181 0.4320 +6863 104909134 0.4860 +6865 6869 0.4440 +6865 7204 0.4990 +6865 7434 0.4310 +6865 7442 0.4520 +6865 8997 0.5000 +6865 9630 0.6740 +6865 10800 0.4040 +6865 23236 0.5310 +6865 57105 0.4100 +6865 57113 0.5710 +6865 60496 0.5740 +6865 79009 0.4470 +6865 115557 0.5070 +6865 255061 0.9310 +6867 8089 0.8460 +6867 8859 0.6130 +6867 8945 0.6280 +6867 9212 0.5190 +6867 9217 0.4340 +6867 9218 0.4800 +6867 9793 0.9850 +6867 10193 0.4670 +6867 10460 0.6300 +6867 10579 0.8360 +6867 10768 0.4710 +6867 23332 0.4620 +6867 23424 0.7450 +6867 23654 0.6440 +6867 51072 0.4700 +6867 51690 0.8730 +6867 55971 0.5170 +6867 57670 0.5120 +6867 57698 0.4140 +6867 59339 0.5140 +6867 60491 0.6140 +6867 80114 0.4940 +6867 83877 0.4090 +6867 84376 0.4990 +6867 113246 0.6050 +6867 137994 0.4750 +6867 152185 0.7860 +6867 153241 0.8380 +6867 169166 0.6670 +6867 196528 0.4520 +6867 202243 0.4420 +6867 346288 0.4310 +6868 7039 0.9230 +6868 7040 0.4300 +6868 7076 0.7250 +6868 7077 0.6410 +6868 7078 0.9960 +6868 7079 0.4200 +6868 7099 0.4650 +6868 7113 0.9360 +6868 7124 0.9500 +6868 7132 0.7210 +6868 7133 0.7220 +6868 7412 0.4180 +6868 7837 0.4080 +6868 8455 0.4410 +6868 8728 0.5900 +6868 8754 0.6440 +6868 9332 0.8350 +6868 9365 0.7080 +6868 9507 0.4420 +6868 9542 0.5120 +6868 9794 0.4760 +6868 10098 0.5420 +6868 10459 0.6690 +6868 10461 0.4180 +6868 10663 0.5720 +6868 10683 0.4100 +6868 10718 0.4570 +6868 10753 0.4020 +6868 10769 0.7740 +6868 22914 0.4350 +6868 22938 0.4300 +6868 23385 0.6960 +6868 23509 0.4560 +6868 23554 0.4150 +6868 23555 0.5280 +6868 23621 0.6520 +6868 25825 0.4660 +6868 27035 0.5160 +6868 28514 0.6750 +6868 50846 0.4240 +6868 51107 0.5810 +6868 54541 0.4090 +6868 54567 0.6480 +6868 55534 0.4520 +6868 55851 0.6670 +6868 56302 0.5170 +6868 57393 0.5730 +6868 58191 0.7240 +6868 59272 0.8870 +6868 64285 0.7750 +6868 79258 0.4280 +6868 79651 0.9860 +6868 81607 0.6750 +6868 84441 0.4550 +6868 84868 0.5510 +6868 93185 0.4490 +6868 137902 0.4080 +6868 145957 0.4830 +6868 152831 0.4670 +6868 154091 0.4020 +6868 197021 0.4590 +6868 255324 0.4460 +6869 6870 0.4330 +6869 7054 0.4210 +6869 7124 0.4050 +6869 7204 0.4990 +6869 7432 0.7470 +6869 7433 0.4590 +6869 7434 0.5580 +6869 7442 0.7350 +6869 8218 0.5280 +6869 8301 0.4990 +6869 8322 0.4070 +6869 8673 0.5020 +6869 8929 0.4650 +6869 8989 0.5370 +6869 8997 0.5080 +6869 9152 0.4110 +6869 9341 0.4990 +6869 9607 0.4850 +6869 9630 0.6980 +6869 9892 0.5100 +6869 10203 0.5290 +6869 10267 0.6180 +6869 10800 0.4450 +6869 22848 0.5000 +6869 22905 0.5080 +6869 23149 0.4990 +6869 23236 0.5230 +6869 25977 0.4990 +6869 26119 0.4990 +6869 29924 0.4990 +6869 29978 0.5170 +6869 50618 0.4990 +6869 51083 0.4850 +6869 54331 0.8000 +6869 55707 0.4990 +6869 57084 0.5580 +6869 57105 0.4100 +6869 57113 0.6530 +6869 84251 0.5100 +6869 85021 0.4990 +6869 85397 0.5000 +6869 85480 0.4120 +6869 115548 0.4990 +6869 115557 0.5130 +6869 117194 0.5740 +6869 133396 0.4710 +6869 246213 0.4530 +6869 255061 0.9950 +6869 259232 0.8740 +6869 285175 0.8540 +6870 7204 0.4990 +6870 7442 0.5040 +6870 7681 0.4470 +6870 8820 0.5060 +6870 8997 0.4990 +6870 9394 0.6670 +6870 9630 0.6710 +6870 10371 0.6300 +6870 10800 0.4130 +6870 23236 0.5150 +6870 23767 0.4470 +6870 26012 0.8870 +6870 30818 0.4050 +6870 54756 0.5950 +6870 55636 0.8110 +6870 57105 0.4210 +6870 57113 0.5230 +6870 60675 0.8550 +6870 64106 0.5180 +6870 64111 0.4340 +6870 80712 0.4320 +6870 81848 0.4180 +6870 89884 0.4070 +6870 115557 0.4990 +6870 140679 0.4210 +6870 255061 0.8960 +6870 317701 0.4560 +6870 353345 0.4080 +6870 389549 0.5240 +6871 6872 0.5440 +6871 6873 0.9200 +6871 6874 0.9140 +6871 6877 0.9730 +6871 6878 0.9740 +6871 6879 0.9030 +6871 6880 0.9970 +6871 6881 0.9950 +6871 6883 0.9970 +6871 6885 0.8160 +6871 6908 0.6470 +6871 7011 0.6790 +6871 8290 0.5390 +6871 8295 0.9980 +6871 8349 0.4870 +6871 8356 0.7080 +6871 8361 0.4670 +6871 8464 0.9990 +6871 8850 0.9990 +6871 9326 0.6260 +6871 9611 0.5110 +6871 9612 0.4950 +6871 9875 0.4430 +6871 9913 0.9530 +6871 9960 0.4710 +6871 10474 0.9990 +6871 10589 0.4040 +6871 10629 0.9800 +6871 10946 0.5690 +6871 11056 0.6510 +6871 11072 0.6210 +6871 11091 0.9820 +6871 11276 0.6790 +6871 22900 0.7080 +6871 23326 0.9920 +6871 23450 0.7310 +6871 25819 0.4160 +6871 25862 0.4730 +6871 26009 0.9870 +6871 26574 0.6200 +6871 27097 0.9790 +6871 27443 0.6710 +6871 28513 0.5970 +6871 51562 0.9880 +6871 51616 0.9930 +6871 54107 0.9140 +6871 55578 0.9940 +6871 55689 0.9830 +6871 56655 0.9090 +6871 56943 0.9910 +6871 56970 0.9260 +6871 57325 0.9780 +6871 57472 0.4170 +6871 64376 0.6290 +6871 64431 0.4050 +6871 79154 0.4980 +6871 79595 0.5190 +6871 79879 0.6160 +6871 79893 0.5740 +6871 79922 0.6730 +6871 80179 0.5570 +6871 80313 0.4160 +6871 83443 0.7500 +6871 84101 0.4710 +6871 84749 0.4710 +6871 90592 0.4180 +6871 93624 0.8920 +6871 112869 0.9990 +6871 117143 0.9690 +6871 127002 0.5450 +6871 138474 0.5240 +6871 158880 0.8150 +6871 201626 0.4170 +6871 222255 0.5450 +6871 246175 0.4160 +6871 284098 0.6710 +6871 284099 0.6520 +6871 374395 0.5710 +6871 389856 0.8100 +6871 440093 0.5400 +6871 440686 0.5400 +6871 653604 0.7120 +6871 100287513 0.4710 +6872 6873 0.9990 +6872 6874 0.9990 +6872 6875 0.9990 +6872 6877 0.9990 +6872 6878 0.9990 +6872 6879 0.9990 +6872 6880 0.9990 +6872 6881 0.9990 +6872 6882 0.9990 +6872 6883 0.9990 +6872 6884 0.9990 +6872 6907 0.4490 +6872 6908 0.9990 +6872 6917 0.9160 +6872 6938 0.7000 +6872 7157 0.9630 +6872 7182 0.5990 +6872 7316 0.4040 +6872 7343 0.6580 +6872 7391 0.6150 +6872 7528 0.6820 +6872 7546 0.4510 +6872 7702 0.4520 +6872 7862 0.5820 +6872 7994 0.6610 +6872 8019 0.7640 +6872 8085 0.5030 +6872 8089 0.6130 +6872 8125 0.4990 +6872 8148 0.5480 +6872 8161 0.4010 +6872 8202 0.4080 +6872 8242 0.5440 +6872 8290 0.5260 +6872 8294 0.8260 +6872 8295 0.4310 +6872 8337 0.4210 +6872 8338 0.4210 +6872 8349 0.4640 +6872 8350 0.7600 +6872 8356 0.5660 +6872 8359 0.8260 +6872 8360 0.8280 +6872 8361 0.9980 +6872 8362 0.8260 +6872 8363 0.8260 +6872 8364 0.8260 +6872 8366 0.8260 +6872 8367 0.8260 +6872 8368 0.8260 +6872 8369 0.9670 +6872 8370 0.8290 +6872 8464 0.4190 +6872 8520 0.4110 +6872 8575 0.4770 +6872 8603 0.5560 +6872 8607 0.9180 +6872 8621 0.5050 +6872 8850 0.4790 +6872 8910 0.5400 +6872 8970 0.8430 +6872 8986 0.4190 +6872 9013 0.7290 +6872 9014 0.7080 +6872 9015 0.6990 +6872 9044 0.6660 +6872 9070 0.6230 +6872 9126 0.4110 +6872 9282 0.8840 +6872 9306 0.4970 +6872 9329 0.5990 +6872 9391 0.4800 +6872 9412 0.8100 +6872 9439 0.8600 +6872 9440 0.8670 +6872 9441 0.8990 +6872 9442 0.8180 +6872 9443 0.8320 +6872 9477 0.8100 +6872 9519 0.7860 +6872 9757 0.7280 +6872 9862 0.8240 +6872 9869 0.6480 +6872 9874 0.4210 +6872 9923 0.5480 +6872 9997 0.4200 +6872 10001 0.8460 +6872 10005 0.4300 +6872 10009 0.4460 +6872 10025 0.8120 +6872 10075 0.4330 +6872 10155 0.5220 +6872 10445 0.9000 +6872 10456 0.4200 +6872 10524 0.6130 +6872 10629 0.8890 +6872 10664 0.6990 +6872 10765 0.4280 +6872 10856 0.9210 +6872 10902 0.5040 +6872 11011 0.4820 +6872 11091 0.9420 +6872 11143 0.6960 +6872 11315 0.4270 +6872 22828 0.4420 +6872 23060 0.4780 +6872 23133 0.6620 +6872 23140 0.4860 +6872 23186 0.5590 +6872 23199 0.4350 +6872 23269 0.9280 +6872 23476 0.7370 +6872 23522 0.5500 +6872 25792 0.5070 +6872 25831 0.4080 +6872 25842 0.9740 +6872 25942 0.7290 +6872 25953 0.4320 +6872 26043 0.4310 +6872 26058 0.4500 +6872 26121 0.9040 +6872 26168 0.9150 +6872 26354 0.4200 +6872 26993 0.4360 +6872 27043 0.9090 +6872 27097 0.8590 +6872 27152 0.4210 +6872 27154 0.5220 +6872 27443 0.4390 +6872 29072 0.4360 +6872 29079 0.8060 +6872 29915 0.5490 +6872 50804 0.4300 +6872 51003 0.8200 +6872 51230 0.9170 +6872 51341 0.4520 +6872 51366 0.5410 +6872 51586 0.8330 +6872 51616 0.9990 +6872 51755 0.5030 +6872 54014 0.4570 +6872 54454 0.4020 +6872 54457 0.9870 +6872 54495 0.4400 +6872 54617 0.5710 +6872 54797 0.8180 +6872 54881 0.9020 +6872 55023 0.6840 +6872 55090 0.8370 +6872 55102 0.5030 +6872 55140 0.5640 +6872 55145 0.6350 +6872 55339 0.4120 +6872 55588 0.8250 +6872 55689 0.6590 +6872 55723 0.4700 +6872 55814 0.4530 +6872 55869 0.4970 +6872 55870 0.4890 +6872 56478 0.6200 +6872 56946 0.4630 +6872 57492 0.4550 +6872 57626 0.4260 +6872 57634 0.4070 +6872 57680 0.9640 +6872 57724 0.4660 +6872 58472 0.4200 +6872 63977 0.4620 +6872 63982 0.5060 +6872 64324 0.4170 +6872 65980 0.5650 +6872 79885 0.7570 +6872 79923 0.5750 +6872 80306 0.8060 +6872 80315 0.4250 +6872 81857 0.8100 +6872 81887 0.9280 +6872 83860 0.9990 +6872 84148 0.9390 +6872 84246 0.8190 +6872 84661 0.5690 +6872 84836 0.4990 +6872 89941 0.4570 +6872 90378 0.5120 +6872 90390 0.8000 +6872 92292 0.6210 +6872 93624 0.5920 +6872 93953 0.5730 +6872 112950 0.8370 +6872 121504 0.8290 +6872 124944 0.9000 +6872 125476 0.9000 +6872 126961 0.8270 +6872 128497 0.4760 +6872 129685 0.9990 +6872 132660 0.4390 +6872 138474 0.9390 +6872 145447 0.4370 +6872 146050 0.5020 +6872 197131 0.5010 +6872 253260 0.4450 +6872 254065 0.5660 +6872 283248 0.4340 +6872 284058 0.9060 +6872 333932 0.8190 +6872 387332 0.8750 +6872 387521 0.4350 +6872 387522 0.4480 +6872 391742 0.7120 +6872 391746 0.7120 +6872 391747 0.7120 +6872 399949 0.5980 +6872 400569 0.8110 +6872 404672 0.9800 +6872 440093 0.5250 +6872 440686 0.5260 +6872 554313 0.8260 +6872 646066 0.7120 +6872 646103 0.7120 +6872 653604 0.9010 +6872 100529209 0.5400 +6872 102723526 0.7120 +6872 112488736 0.7120 +6872 112488737 0.7120 +6872 112488738 0.7120 +6872 112488739 0.7120 +6872 112488740 0.7120 +6872 112488745 0.7120 +6872 112488746 0.7120 +6872 112488747 0.7120 +6873 6874 0.9990 +6873 6875 0.9780 +6873 6877 0.9990 +6873 6878 0.9990 +6873 6879 0.9990 +6873 6880 0.9990 +6873 6881 0.9990 +6873 6882 0.9990 +6873 6883 0.9990 +6873 6884 0.9990 +6873 6885 0.7890 +6873 6908 0.9990 +6873 6917 0.9230 +6873 7157 0.4630 +6873 8019 0.6570 +6873 8089 0.6090 +6873 8148 0.8580 +6873 8294 0.8000 +6873 8295 0.9530 +6873 8359 0.8000 +6873 8360 0.8000 +6873 8361 0.8140 +6873 8362 0.8000 +6873 8363 0.8000 +6873 8364 0.8000 +6873 8366 0.8000 +6873 8367 0.8000 +6873 8368 0.8000 +6873 8370 0.8000 +6873 8464 0.9290 +6873 8850 0.9570 +6873 8970 0.8130 +6873 9015 0.5930 +6873 9044 0.9680 +6873 9282 0.9290 +6873 9330 0.4760 +6873 9412 0.8640 +6873 9439 0.8340 +6873 9440 0.8660 +6873 9441 0.8840 +6873 9442 0.8630 +6873 9443 0.8400 +6873 9477 0.8390 +6873 9519 0.8810 +6873 9716 0.6340 +6873 9862 0.8320 +6873 9897 0.4570 +6873 9913 0.9470 +6873 10001 0.8790 +6873 10025 0.8290 +6873 10171 0.4900 +6873 10474 0.9150 +6873 10629 0.9900 +6873 10921 0.4060 +6873 11091 0.7470 +6873 11196 0.6600 +6873 22828 0.6540 +6873 22884 0.4120 +6873 23326 0.9100 +6873 23450 0.5550 +6873 23476 0.4880 +6873 25885 0.4100 +6873 26009 0.8480 +6873 27085 0.4130 +6873 27097 0.9950 +6873 27107 0.4020 +6873 27154 0.4410 +6873 29079 0.8150 +6873 29980 0.4220 +6873 51003 0.8510 +6873 51366 0.5320 +6873 51562 0.7270 +6873 51586 0.8340 +6873 51616 0.9920 +6873 51752 0.4100 +6873 54014 0.4080 +6873 54107 0.7250 +6873 54457 0.9860 +6873 54797 0.8250 +6873 55023 0.4970 +6873 55090 0.8450 +6873 55339 0.4500 +6873 55578 0.7510 +6873 55588 0.8440 +6873 55656 0.4040 +6873 55689 0.8820 +6873 56655 0.7360 +6873 56931 0.4570 +6873 56943 0.9120 +6873 56970 0.9020 +6873 57325 0.7270 +6873 57473 0.4480 +6873 57560 0.4120 +6873 57590 0.4450 +6873 60560 0.4500 +6873 60561 0.4150 +6873 79075 0.6760 +6873 79084 0.4380 +6873 79101 0.5060 +6873 79577 0.4790 +6873 79954 0.4430 +6873 80018 0.4490 +6873 80306 0.8240 +6873 81857 0.8090 +6873 83443 0.5430 +6873 83860 0.9970 +6873 84172 0.4390 +6873 84223 0.4280 +6873 84246 0.8530 +6873 90390 0.8450 +6873 91833 0.4320 +6873 93624 0.7440 +6873 112869 0.9150 +6873 112950 0.8300 +6873 117143 0.9090 +6873 121504 0.8000 +6873 126961 0.8080 +6873 128497 0.5310 +6873 129685 0.9990 +6873 138474 0.9530 +6873 157769 0.4350 +6873 254065 0.4240 +6873 333932 0.8080 +6873 387332 0.9110 +6873 391742 0.6300 +6873 391746 0.6300 +6873 391747 0.6300 +6873 399949 0.8060 +6873 400569 0.8300 +6873 404672 0.9790 +6873 554313 0.8000 +6873 646066 0.6300 +6873 646103 0.6300 +6873 653604 0.8340 +6873 102723526 0.6300 +6873 112488736 0.6300 +6873 112488737 0.6300 +6873 112488738 0.6300 +6873 112488739 0.6300 +6873 112488740 0.6300 +6873 112488745 0.6300 +6873 112488746 0.6300 +6873 112488747 0.6300 +6874 6875 0.9110 +6874 6877 0.9990 +6874 6878 0.9990 +6874 6879 0.9990 +6874 6880 0.9990 +6874 6881 0.9990 +6874 6882 0.9990 +6874 6883 0.9990 +6874 6884 0.9990 +6874 6885 0.7260 +6874 6908 0.9990 +6874 6917 0.7330 +6874 6929 0.4590 +6874 7157 0.5300 +6874 7707 0.6530 +6874 7919 0.4070 +6874 8019 0.5620 +6874 8148 0.8740 +6874 8294 0.8020 +6874 8295 0.9820 +6874 8359 0.8020 +6874 8360 0.8020 +6874 8361 0.8580 +6874 8362 0.8020 +6874 8363 0.8020 +6874 8364 0.8020 +6874 8366 0.8020 +6874 8367 0.8020 +6874 8368 0.8020 +6874 8370 0.8020 +6874 8464 0.9410 +6874 8607 0.9170 +6874 8697 0.5220 +6874 8850 0.9770 +6874 8881 0.5230 +6874 8970 0.8190 +6874 9044 0.5980 +6874 9070 0.5560 +6874 9282 0.8440 +6874 9412 0.8050 +6874 9439 0.8410 +6874 9440 0.8720 +6874 9441 0.8770 +6874 9442 0.8270 +6874 9443 0.8480 +6874 9477 0.8130 +6874 9519 0.7870 +6874 9586 0.8060 +6874 9757 0.6010 +6874 9782 0.4280 +6874 9862 0.8070 +6874 9913 0.9340 +6874 10001 0.8730 +6874 10025 0.8030 +6874 10189 0.4200 +6874 10432 0.4200 +6874 10445 0.9000 +6874 10474 0.9120 +6874 10488 0.8900 +6874 10523 0.4220 +6874 10629 0.9860 +6874 10856 0.9120 +6874 10891 0.9340 +6874 11016 0.4610 +6874 11036 0.5190 +6874 11091 0.9210 +6874 22803 0.4130 +6874 23269 0.9020 +6874 23326 0.9010 +6874 23389 0.4570 +6874 23390 0.4210 +6874 23435 0.4110 +6874 23450 0.6860 +6874 23476 0.5860 +6874 23551 0.4350 +6874 25847 0.4760 +6874 26009 0.8190 +6874 26121 0.9000 +6874 26168 0.9040 +6874 27043 0.9020 +6874 27097 0.9910 +6874 29079 0.8220 +6874 29915 0.5400 +6874 51003 0.8130 +6874 51230 0.9130 +6874 51434 0.4920 +6874 51562 0.7200 +6874 51586 0.8440 +6874 51616 0.9980 +6874 51755 0.4140 +6874 54107 0.7290 +6874 54457 0.9890 +6874 54797 0.8090 +6874 54881 0.9020 +6874 55023 0.6160 +6874 55090 0.8160 +6874 55578 0.8260 +6874 55588 0.8230 +6874 55689 0.7860 +6874 56655 0.7270 +6874 56943 0.9130 +6874 56970 0.9010 +6874 57325 0.8430 +6874 57446 0.4320 +6874 57466 0.5200 +6874 57680 0.9100 +6874 58487 0.4320 +6874 64682 0.5230 +6874 64764 0.8060 +6874 64784 0.4060 +6874 80306 0.8000 +6874 81857 0.8100 +6874 81887 0.9010 +6874 83443 0.6270 +6874 83860 0.9990 +6874 84148 0.9020 +6874 84246 0.8330 +6874 84661 0.5470 +6874 84699 0.8000 +6874 90390 0.8050 +6874 90993 0.8060 +6874 92552 0.5560 +6874 93624 0.8670 +6874 112869 0.9500 +6874 112950 0.8100 +6874 117143 0.9640 +6874 121504 0.8020 +6874 124944 0.9000 +6874 125476 0.9000 +6874 126961 0.8130 +6874 128497 0.6100 +6874 129685 0.9990 +6874 138474 0.9610 +6874 148327 0.8000 +6874 200186 0.4990 +6874 284058 0.9090 +6874 333932 0.8130 +6874 387332 0.8950 +6874 391742 0.7120 +6874 391746 0.7120 +6874 391747 0.7120 +6874 399949 0.5970 +6874 400569 0.8390 +6874 404672 0.9460 +6874 554313 0.8020 +6874 646066 0.7120 +6874 646103 0.7120 +6874 653604 0.8570 +6874 100529209 0.5400 +6874 102723526 0.7120 +6874 112488736 0.7120 +6874 112488737 0.7120 +6874 112488738 0.7120 +6874 112488739 0.7120 +6874 112488740 0.7120 +6874 112488745 0.7120 +6874 112488746 0.7120 +6874 112488747 0.7120 +6875 6877 0.9690 +6875 6878 0.9760 +6875 6879 0.9990 +6875 6880 0.9590 +6875 6881 0.9760 +6875 6882 0.9990 +6875 6883 0.9910 +6875 6884 0.9770 +6875 6908 0.9910 +6875 6917 0.7210 +6875 7704 0.5840 +6875 8019 0.4630 +6875 8148 0.8180 +6875 9519 0.5970 +6875 9586 0.8060 +6875 10468 0.5610 +6875 10488 0.8000 +6875 10629 0.8710 +6875 10891 0.9020 +6875 27097 0.8240 +6875 51616 0.9590 +6875 54457 0.9790 +6875 56159 0.5180 +6875 64764 0.8060 +6875 79154 0.6590 +6875 83860 0.8580 +6875 84225 0.6380 +6875 84699 0.8000 +6875 90993 0.8060 +6875 115825 0.4510 +6875 122402 0.4980 +6875 128497 0.6100 +6875 129685 0.9780 +6875 138474 0.9070 +6875 148327 0.8000 +6875 346673 0.8300 +6875 387332 0.8390 +6875 391742 0.7120 +6875 391746 0.7120 +6875 391747 0.7120 +6875 399949 0.5970 +6875 404672 0.7210 +6875 646066 0.7120 +6875 646103 0.7120 +6875 102723526 0.7120 +6875 112488736 0.7120 +6875 112488737 0.7120 +6875 112488738 0.7120 +6875 112488739 0.7120 +6875 112488740 0.7120 +6875 112488745 0.7120 +6875 112488746 0.7120 +6875 112488747 0.7120 +6876 6943 0.4140 +6876 7010 0.4290 +6876 7040 0.6190 +6876 7041 0.4770 +6876 7042 0.4150 +6876 7045 0.4030 +6876 7046 0.4410 +6876 7048 0.4440 +6876 7057 0.4510 +6876 7070 0.6480 +6876 7077 0.5430 +6876 7078 0.5650 +6876 7139 0.4840 +6876 7168 0.7520 +6876 7169 0.7240 +6876 7171 0.6380 +6876 7280 0.4030 +6876 7414 0.4890 +6876 7424 0.4910 +6876 7431 0.6930 +6876 7450 0.5090 +6876 7531 0.4490 +6876 7534 0.4610 +6876 7837 0.4310 +6876 7846 0.5960 +6876 8882 0.4760 +6876 9314 0.5140 +6876 9358 0.4590 +6876 9518 0.4070 +6876 9531 0.5490 +6876 9604 0.4090 +6876 10376 0.4370 +6876 10381 0.5560 +6876 10398 0.9290 +6876 10516 0.4690 +6876 10631 0.5430 +6876 11034 0.5970 +6876 25802 0.7570 +6876 26003 0.6210 +6876 28984 0.6520 +6876 30008 0.4030 +6876 50507 0.5140 +6876 51092 0.4830 +6876 51643 0.4260 +6876 51806 0.5290 +6876 54439 0.5840 +6876 57124 0.4010 +6876 57175 0.4470 +6876 57496 0.4060 +6876 57591 0.6770 +6876 58498 0.4270 +6876 84168 0.5000 +6876 84324 0.4630 +6876 84617 0.4190 +6876 84790 0.4370 +6876 85477 0.5310 +6876 91860 0.5240 +6876 93649 0.8850 +6876 103910 0.4660 +6876 112714 0.4030 +6876 114790 0.4930 +6876 133015 0.4430 +6876 135138 0.4430 +6876 137902 0.4010 +6876 140465 0.4680 +6876 151651 0.4560 +6876 163688 0.5240 +6876 197335 0.7790 +6876 203068 0.4300 +6876 284119 0.5900 +6876 728378 0.4400 +6876 100133941 0.4080 +6877 6878 0.9990 +6877 6879 0.9990 +6877 6880 0.9990 +6877 6881 0.9990 +6877 6882 0.9990 +6877 6883 0.9990 +6877 6884 0.9990 +6877 6885 0.7440 +6877 6908 0.9990 +6877 6917 0.9160 +6877 6934 0.4210 +6877 7067 0.4810 +6877 7157 0.6000 +6877 7311 0.4460 +6877 7314 0.5020 +6877 7316 0.5120 +6877 7329 0.4030 +6877 7544 0.4300 +6877 7702 0.6150 +6877 8019 0.6420 +6877 8089 0.4310 +6877 8148 0.8830 +6877 8290 0.4640 +6877 8294 0.8140 +6877 8295 0.9960 +6877 8359 0.8140 +6877 8360 0.8140 +6877 8361 0.9160 +6877 8362 0.8140 +6877 8363 0.8140 +6877 8364 0.8140 +6877 8366 0.8140 +6877 8367 0.8140 +6877 8368 0.8140 +6877 8370 0.8140 +6877 8464 0.9940 +6877 8812 0.5200 +6877 8850 0.9910 +6877 8881 0.6850 +6877 8970 0.8320 +6877 9044 0.5900 +6877 9282 0.8220 +6877 9412 0.8020 +6877 9439 0.8240 +6877 9440 0.8610 +6877 9441 0.8930 +6877 9442 0.8560 +6877 9443 0.8710 +6877 9477 0.8140 +6877 9519 0.7080 +6877 9611 0.6620 +6877 9612 0.6280 +6877 9862 0.8050 +6877 9913 0.9540 +6877 9960 0.4220 +6877 10001 0.8490 +6877 10025 0.8290 +6877 10081 0.4520 +6877 10302 0.5260 +6877 10393 0.6100 +6877 10413 0.4390 +6877 10474 0.9970 +6877 10629 0.9770 +6877 11091 0.7820 +6877 22984 0.4830 +6877 23326 0.9670 +6877 23450 0.7050 +6877 25862 0.4070 +6877 26009 0.8690 +6877 27063 0.5090 +6877 27097 0.9520 +6877 27443 0.6240 +6877 29079 0.8250 +6877 29101 0.4770 +6877 29894 0.5680 +6877 51003 0.8050 +6877 51517 0.4180 +6877 51562 0.7310 +6877 51585 0.4920 +6877 51586 0.8270 +6877 51616 0.9960 +6877 54107 0.7770 +6877 54457 0.9840 +6877 54797 0.8330 +6877 55023 0.4510 +6877 55090 0.8300 +6877 55578 0.9850 +6877 55588 0.8190 +6877 55689 0.8380 +6877 56655 0.7510 +6877 56943 0.9830 +6877 56970 0.9530 +6877 57325 0.8580 +6877 79029 0.4920 +6877 80306 0.8010 +6877 81857 0.8160 +6877 83443 0.7500 +6877 83860 0.9990 +6877 84101 0.4070 +6877 84246 0.8160 +6877 84749 0.4130 +6877 90390 0.8030 +6877 93624 0.9590 +6877 112869 0.9900 +6877 112950 0.8160 +6877 117143 0.9770 +6877 121504 0.8140 +6877 126961 0.8170 +6877 127002 0.6230 +6877 128497 0.6100 +6877 129685 0.9990 +6877 132851 0.4290 +6877 138474 0.9680 +6877 158880 0.6180 +6877 197335 0.7460 +6877 221302 0.4240 +6877 222255 0.6170 +6877 333932 0.8170 +6877 387332 0.8770 +6877 389856 0.6210 +6877 391742 0.7130 +6877 391746 0.7130 +6877 391747 0.7130 +6877 400569 0.8030 +6877 404672 0.9840 +6877 554313 0.8140 +6877 646066 0.7130 +6877 646103 0.7130 +6877 653604 0.8480 +6877 100287513 0.4020 +6877 102723526 0.7130 +6877 112488736 0.7130 +6877 112488737 0.7130 +6877 112488738 0.7130 +6877 112488739 0.7130 +6877 112488740 0.7130 +6877 112488745 0.7130 +6877 112488746 0.7130 +6877 112488747 0.7130 +6878 6879 0.9990 +6878 6880 0.9990 +6878 6881 0.9990 +6878 6882 0.9990 +6878 6883 0.9990 +6878 6884 0.9990 +6878 6885 0.7360 +6878 6908 0.9990 +6878 6917 0.9160 +6878 7157 0.8540 +6878 7205 0.4150 +6878 7311 0.5310 +6878 7314 0.4950 +6878 7316 0.4950 +6878 7391 0.6000 +6878 7702 0.6080 +6878 8019 0.6820 +6878 8089 0.4810 +6878 8148 0.8030 +6878 8161 0.4040 +6878 8290 0.4810 +6878 8294 0.8050 +6878 8295 0.9990 +6878 8359 0.8050 +6878 8360 0.8050 +6878 8361 0.9470 +6878 8362 0.8050 +6878 8363 0.8050 +6878 8364 0.8060 +6878 8366 0.8060 +6878 8367 0.8050 +6878 8368 0.8090 +6878 8369 0.5010 +6878 8370 0.8050 +6878 8464 0.9980 +6878 8607 0.9090 +6878 8751 0.4050 +6878 8812 0.5380 +6878 8850 0.9950 +6878 8970 0.8420 +6878 9044 0.6330 +6878 9070 0.5480 +6878 9282 0.8280 +6878 9412 0.8000 +6878 9439 0.8320 +6878 9440 0.8790 +6878 9441 0.9380 +6878 9442 0.8250 +6878 9443 0.8580 +6878 9477 0.8250 +6878 9519 0.8370 +6878 9611 0.9050 +6878 9612 0.8330 +6878 9757 0.5620 +6878 9862 0.8110 +6878 9913 0.9520 +6878 9960 0.4810 +6878 10001 0.8550 +6878 10025 0.8130 +6878 10302 0.5210 +6878 10445 0.9230 +6878 10474 0.9990 +6878 10629 0.9340 +6878 10856 0.9270 +6878 11004 0.4150 +6878 11091 0.9250 +6878 23095 0.4250 +6878 23269 0.9020 +6878 23326 0.9790 +6878 23450 0.6970 +6878 23476 0.6380 +6878 25862 0.4690 +6878 26009 0.8340 +6878 26015 0.4380 +6878 26121 0.9020 +6878 26168 0.9030 +6878 27043 0.9020 +6878 27097 0.9960 +6878 27443 0.6380 +6878 29079 0.8250 +6878 29101 0.4160 +6878 29915 0.5790 +6878 51003 0.8000 +6878 51230 0.9050 +6878 51447 0.4180 +6878 51562 0.7270 +6878 51585 0.4160 +6878 51586 0.8660 +6878 51616 0.9990 +6878 54107 0.7380 +6878 54457 0.9910 +6878 54505 0.4190 +6878 54552 0.4210 +6878 54797 0.8160 +6878 54881 0.9010 +6878 55023 0.6110 +6878 55090 0.8010 +6878 55578 0.9760 +6878 55588 0.8190 +6878 55689 0.8530 +6878 56655 0.7290 +6878 56943 0.9940 +6878 56970 0.9610 +6878 57325 0.8620 +6878 57680 0.9210 +6878 80306 0.8000 +6878 81688 0.4440 +6878 81857 0.8130 +6878 81887 0.9110 +6878 83443 0.7110 +6878 83860 0.9990 +6878 84101 0.4690 +6878 84148 0.9050 +6878 84246 0.8050 +6878 84661 0.5500 +6878 84749 0.4740 +6878 90390 0.8040 +6878 93624 0.9650 +6878 112869 0.9950 +6878 112950 0.8180 +6878 116985 0.4050 +6878 117143 0.9880 +6878 121504 0.8050 +6878 123096 0.4350 +6878 124944 0.9000 +6878 125476 0.9000 +6878 126961 0.8140 +6878 127002 0.8260 +6878 128497 0.6100 +6878 129685 0.9990 +6878 138474 0.9780 +6878 158724 0.4610 +6878 158880 0.7760 +6878 222255 0.8150 +6878 284058 0.9000 +6878 333932 0.8140 +6878 387332 0.9360 +6878 389856 0.7970 +6878 391742 0.7220 +6878 391746 0.7220 +6878 391747 0.7220 +6878 399949 0.6140 +6878 400569 0.8060 +6878 404672 0.9830 +6878 554313 0.8050 +6878 646066 0.7220 +6878 646103 0.7220 +6878 653604 0.8550 +6878 100287513 0.4690 +6878 100529209 0.5400 +6878 102723526 0.7220 +6878 112488736 0.7220 +6878 112488737 0.7220 +6878 112488738 0.7220 +6878 112488739 0.7220 +6878 112488740 0.7220 +6878 112488745 0.7220 +6878 112488746 0.7220 +6878 112488747 0.7220 +6879 6880 0.9990 +6879 6881 0.9990 +6879 6882 0.9990 +6879 6883 0.9990 +6879 6884 0.9990 +6879 6885 0.7330 +6879 6908 0.9990 +6879 6917 0.9190 +6879 7157 0.4740 +6879 7391 0.8140 +6879 7528 0.7990 +6879 7936 0.4520 +6879 8019 0.8150 +6879 8089 0.4070 +6879 8148 0.6630 +6879 8294 0.8070 +6879 8295 0.9690 +6879 8359 0.8070 +6879 8360 0.8080 +6879 8361 0.9130 +6879 8362 0.8070 +6879 8363 0.8090 +6879 8364 0.8070 +6879 8366 0.8070 +6879 8367 0.8080 +6879 8368 0.8070 +6879 8369 0.4500 +6879 8370 0.8070 +6879 8464 0.9320 +6879 8480 0.4310 +6879 8607 0.9000 +6879 8805 0.5020 +6879 8850 0.9310 +6879 8970 0.8120 +6879 9044 0.5280 +6879 9070 0.5530 +6879 9282 0.8550 +6879 9412 0.8030 +6879 9439 0.8430 +6879 9440 0.8290 +6879 9441 0.8990 +6879 9442 0.8080 +6879 9443 0.8730 +6879 9477 0.8070 +6879 9519 0.7990 +6879 9612 0.4430 +6879 9757 0.5400 +6879 9862 0.8000 +6879 9913 0.9270 +6879 10001 0.8390 +6879 10009 0.5000 +6879 10025 0.8280 +6879 10445 0.9000 +6879 10474 0.9170 +6879 10629 0.9860 +6879 10856 0.9060 +6879 11091 0.9460 +6879 23269 0.9020 +6879 23326 0.9100 +6879 23450 0.5560 +6879 23476 0.7190 +6879 26009 0.7800 +6879 26121 0.9000 +6879 26168 0.9000 +6879 27043 0.9000 +6879 27097 0.9870 +6879 29079 0.8240 +6879 29915 0.5430 +6879 51003 0.8010 +6879 51230 0.9120 +6879 51562 0.7480 +6879 51586 0.8200 +6879 51616 0.9990 +6879 54107 0.7360 +6879 54457 0.9060 +6879 54797 0.8170 +6879 54881 0.9000 +6879 55090 0.8090 +6879 55578 0.8010 +6879 55588 0.8080 +6879 55689 0.8120 +6879 56157 0.4090 +6879 56159 0.4620 +6879 56655 0.7340 +6879 56943 0.9030 +6879 56970 0.9140 +6879 57325 0.7510 +6879 57680 0.9040 +6879 80306 0.8110 +6879 80854 0.6300 +6879 81857 0.8000 +6879 81887 0.9000 +6879 83443 0.5460 +6879 83860 0.9990 +6879 83884 0.4090 +6879 84148 0.9070 +6879 84246 0.8140 +6879 84661 0.6070 +6879 90390 0.8000 +6879 93624 0.7690 +6879 112869 0.9110 +6879 112950 0.8270 +6879 117143 0.9070 +6879 121504 0.8070 +6879 124944 0.9000 +6879 125476 0.9000 +6879 126961 0.8100 +6879 128497 0.5910 +6879 129685 0.9990 +6879 138474 0.9270 +6879 147912 0.5340 +6879 284058 0.9000 +6879 333932 0.8100 +6879 387332 0.8620 +6879 391742 0.6770 +6879 391746 0.6770 +6879 391747 0.6770 +6879 399949 0.5960 +6879 400569 0.8010 +6879 404672 0.9810 +6879 554313 0.8070 +6879 646066 0.6770 +6879 646103 0.6770 +6879 653604 0.8500 +6879 100529209 0.5400 +6879 102723526 0.6770 +6879 112488736 0.6770 +6879 112488737 0.6770 +6879 112488738 0.6770 +6879 112488739 0.6770 +6879 112488740 0.6770 +6879 112488745 0.6770 +6879 112488746 0.6770 +6879 112488747 0.6770 +6880 6881 0.9990 +6880 6882 0.9990 +6880 6883 0.9990 +6880 6884 0.9990 +6880 6885 0.7310 +6880 6908 0.9990 +6880 6917 0.9170 +6880 7011 0.8670 +6880 7157 0.9830 +6880 7311 0.4410 +6880 7314 0.4770 +6880 7316 0.4880 +6880 7702 0.6720 +6880 8019 0.5690 +6880 8148 0.8040 +6880 8161 0.6750 +6880 8294 0.8070 +6880 8295 0.9990 +6880 8356 0.6280 +6880 8359 0.8070 +6880 8360 0.8070 +6880 8361 0.9320 +6880 8362 0.8070 +6880 8363 0.8070 +6880 8364 0.8070 +6880 8366 0.8070 +6880 8367 0.8070 +6880 8368 0.8070 +6880 8370 0.8070 +6880 8464 0.9990 +6880 8607 0.9340 +6880 8638 0.4810 +6880 8812 0.6310 +6880 8850 0.9990 +6880 8970 0.8440 +6880 9044 0.5370 +6880 9070 0.5710 +6880 9282 0.8520 +6880 9326 0.6160 +6880 9412 0.8590 +6880 9439 0.8590 +6880 9440 0.9050 +6880 9441 0.8780 +6880 9442 0.8200 +6880 9443 0.8620 +6880 9477 0.8200 +6880 9519 0.7550 +6880 9611 0.7790 +6880 9612 0.6590 +6880 9757 0.5500 +6880 9862 0.8250 +6880 9913 0.9990 +6880 9960 0.4270 +6880 10001 0.8780 +6880 10025 0.8120 +6880 10268 0.4790 +6880 10302 0.5300 +6880 10445 0.9000 +6880 10474 0.9990 +6880 10528 0.7580 +6880 10589 0.6720 +6880 10629 0.9990 +6880 10856 0.9370 +6880 11091 0.9370 +6880 23269 0.9000 +6880 23326 0.9870 +6880 23450 0.9760 +6880 23476 0.4670 +6880 25862 0.4110 +6880 26009 0.7810 +6880 26121 0.9010 +6880 26168 0.9050 +6880 26747 0.8310 +6880 27043 0.9140 +6880 27097 0.9990 +6880 27443 0.6540 +6880 29079 0.8360 +6880 29101 0.4490 +6880 29915 0.5620 +6880 51003 0.8090 +6880 51230 0.9030 +6880 51562 0.8010 +6880 51585 0.4530 +6880 51586 0.8780 +6880 51602 0.8180 +6880 51616 0.9510 +6880 54107 0.7610 +6880 54457 0.9440 +6880 54680 0.7240 +6880 54797 0.8180 +6880 54881 0.9030 +6880 55011 0.7430 +6880 55090 0.8000 +6880 55578 0.9990 +6880 55588 0.8160 +6880 55689 0.9180 +6880 56655 0.7680 +6880 56943 0.9940 +6880 56970 0.9930 +6880 57325 0.7930 +6880 57680 0.9270 +6880 79595 0.8170 +6880 80306 0.8080 +6880 81857 0.8620 +6880 81887 0.9020 +6880 83443 0.9710 +6880 83860 0.9980 +6880 84101 0.4120 +6880 84148 0.9100 +6880 84246 0.8340 +6880 84661 0.5610 +6880 84749 0.4110 +6880 90390 0.8240 +6880 93624 0.9990 +6880 112869 0.9990 +6880 112950 0.8120 +6880 117143 0.9990 +6880 121504 0.8070 +6880 124944 0.9000 +6880 125476 0.9000 +6880 126961 0.8120 +6880 127002 0.9290 +6880 128497 0.4820 +6880 129685 0.9990 +6880 138474 0.9660 +6880 158880 0.5980 +6880 222255 0.9010 +6880 284058 0.9000 +6880 333932 0.8120 +6880 374395 0.5500 +6880 387332 0.8720 +6880 389856 0.7020 +6880 391742 0.7180 +6880 391746 0.7180 +6880 391747 0.7180 +6880 399949 0.5960 +6880 400569 0.8140 +6880 404672 0.9820 +6880 554313 0.8070 +6880 646066 0.7180 +6880 646103 0.7180 +6880 653604 0.9150 +6880 728340 0.4050 +6880 100287513 0.4110 +6880 100529209 0.5400 +6880 102157402 0.4170 +6880 102723526 0.7180 +6880 112488736 0.7180 +6880 112488737 0.7180 +6880 112488738 0.7180 +6880 112488739 0.7180 +6880 112488740 0.7180 +6880 112488745 0.7180 +6880 112488746 0.7180 +6880 112488747 0.7180 +6881 6882 0.9990 +6881 6883 0.9990 +6881 6884 0.9990 +6881 6885 0.7200 +6881 6908 0.9990 +6881 6917 0.9230 +6881 7011 0.9250 +6881 7157 0.6810 +6881 7158 0.4860 +6881 7311 0.7190 +6881 7314 0.6730 +6881 7316 0.6890 +6881 8019 0.6400 +6881 8089 0.4960 +6881 8148 0.8130 +6881 8294 0.8080 +6881 8295 0.9990 +6881 8329 0.4990 +6881 8331 0.5010 +6881 8334 0.5040 +6881 8337 0.5830 +6881 8338 0.5800 +6881 8340 0.7440 +6881 8341 0.7450 +6881 8342 0.7460 +6881 8345 0.7480 +6881 8347 0.7420 +6881 8348 0.7440 +6881 8349 0.6450 +6881 8356 0.6250 +6881 8359 0.8080 +6881 8360 0.8080 +6881 8361 0.8780 +6881 8362 0.8080 +6881 8363 0.8080 +6881 8364 0.8090 +6881 8366 0.8080 +6881 8367 0.8080 +6881 8368 0.8080 +6881 8370 0.8080 +6881 8464 0.9990 +6881 8850 0.9990 +6881 8970 0.9460 +6881 9044 0.4780 +6881 9282 0.8340 +6881 9328 0.5720 +6881 9412 0.8770 +6881 9439 0.8160 +6881 9440 0.8340 +6881 9441 0.8680 +6881 9442 0.8120 +6881 9443 0.8750 +6881 9477 0.8110 +6881 9519 0.8570 +6881 9611 0.8090 +6881 9612 0.8060 +6881 9862 0.8000 +6881 9913 0.9990 +6881 9960 0.7170 +6881 10001 0.8560 +6881 10025 0.8060 +6881 10474 0.9990 +6881 10629 0.9990 +6881 10816 0.4400 +6881 10919 0.4280 +6881 11036 0.4350 +6881 11091 0.7580 +6881 23326 0.9970 +6881 23450 0.9800 +6881 23517 0.4040 +6881 25862 0.5380 +6881 25907 0.4070 +6881 26009 0.7670 +6881 27097 0.9990 +6881 27443 0.8390 +6881 29079 0.8140 +6881 51003 0.8070 +6881 51317 0.4160 +6881 51562 0.7550 +6881 51586 0.8170 +6881 51616 0.9980 +6881 54107 0.7200 +6881 54145 0.5110 +6881 54443 0.4050 +6881 54457 0.9880 +6881 54797 0.8370 +6881 55090 0.8170 +6881 55290 0.4280 +6881 55578 0.9990 +6881 55588 0.8160 +6881 55689 0.8500 +6881 56655 0.7460 +6881 56943 0.9980 +6881 56970 0.9930 +6881 57325 0.7730 +6881 79595 0.9370 +6881 80306 0.8130 +6881 80854 0.8410 +6881 81857 0.8200 +6881 83443 0.9650 +6881 83860 0.9990 +6881 84101 0.5380 +6881 84246 0.8630 +6881 84749 0.5380 +6881 85235 0.5010 +6881 85236 0.7480 +6881 90390 0.8000 +6881 92815 0.5030 +6881 93624 0.9970 +6881 112869 0.9990 +6881 112950 0.8270 +6881 115939 0.4900 +6881 117143 0.9990 +6881 121504 0.8080 +6881 126961 0.8150 +6881 127002 0.8160 +6881 128312 0.7440 +6881 128497 0.5910 +6881 129685 0.9990 +6881 138474 0.9480 +6881 158880 0.7600 +6881 158983 0.5100 +6881 221613 0.4990 +6881 222255 0.8080 +6881 255626 0.7430 +6881 286436 0.5100 +6881 317772 0.5010 +6881 333932 0.8150 +6881 374395 0.5740 +6881 387332 0.9190 +6881 389856 0.7640 +6881 391742 0.6230 +6881 391746 0.6230 +6881 391747 0.6230 +6881 399949 0.8030 +6881 400569 0.8280 +6881 404672 0.9840 +6881 440689 0.7450 +6881 552889 0.5160 +6881 554313 0.8080 +6881 646066 0.6230 +6881 646103 0.6230 +6881 653604 0.9210 +6881 100287513 0.5380 +6881 102723526 0.6230 +6881 112488736 0.6230 +6881 112488737 0.6230 +6881 112488738 0.6230 +6881 112488739 0.6230 +6881 112488740 0.6230 +6881 112488745 0.6230 +6881 112488746 0.6230 +6881 112488747 0.6230 +6881 114483833 0.5120 +6882 6883 0.9990 +6882 6884 0.9990 +6882 6908 0.9990 +6882 6917 0.9110 +6882 6954 0.5740 +6882 7157 0.4300 +6882 7539 0.4750 +6882 7702 0.6210 +6882 8148 0.8600 +6882 8294 0.8000 +6882 8359 0.8000 +6882 8360 0.8000 +6882 8361 0.8170 +6882 8362 0.8000 +6882 8363 0.8000 +6882 8364 0.8000 +6882 8366 0.8000 +6882 8367 0.8000 +6882 8368 0.8000 +6882 8370 0.8000 +6882 8703 0.4380 +6882 8812 0.5320 +6882 8970 0.8130 +6882 9044 0.6120 +6882 9282 0.8600 +6882 9412 0.8030 +6882 9439 0.8240 +6882 9440 0.8650 +6882 9441 0.8740 +6882 9442 0.8030 +6882 9443 0.8440 +6882 9477 0.8220 +6882 9519 0.4890 +6882 9862 0.8050 +6882 9913 0.4850 +6882 10001 0.8590 +6882 10025 0.8000 +6882 10302 0.5400 +6882 10409 0.6930 +6882 10629 0.7170 +6882 23294 0.5790 +6882 27097 0.6320 +6882 29079 0.8510 +6882 29101 0.4110 +6882 51003 0.8530 +6882 51585 0.4110 +6882 51586 0.8070 +6882 51616 0.9990 +6882 54457 0.9400 +6882 54797 0.8380 +6882 55090 0.8480 +6882 55588 0.8240 +6882 79998 0.4330 +6882 80306 0.8200 +6882 81857 0.8000 +6882 83860 0.9990 +6882 84246 0.8150 +6882 90390 0.8010 +6882 112950 0.8600 +6882 121504 0.8000 +6882 122183 0.5070 +6882 126961 0.8030 +6882 128497 0.6100 +6882 129685 0.9990 +6882 132321 0.4960 +6882 138474 0.7890 +6882 222663 0.5670 +6882 333932 0.8030 +6882 387332 0.5080 +6882 391742 0.5600 +6882 391746 0.5590 +6882 391747 0.5590 +6882 400569 0.8060 +6882 404672 0.9830 +6882 554313 0.8000 +6882 646066 0.5590 +6882 646103 0.5590 +6882 653604 0.8320 +6882 102723526 0.5550 +6882 112488736 0.5590 +6882 112488737 0.5590 +6882 112488738 0.5590 +6882 112488739 0.5520 +6882 112488740 0.5520 +6882 112488745 0.5520 +6882 112488746 0.5520 +6882 112488747 0.5520 +6883 6884 0.9990 +6883 6885 0.7330 +6883 6908 0.9990 +6883 6917 0.7730 +6883 7011 0.9260 +6883 7157 0.4880 +6883 7311 0.5740 +6883 7314 0.5090 +6883 7316 0.5090 +6883 7329 0.4100 +6883 8089 0.5490 +6883 8148 0.8230 +6883 8294 0.8220 +6883 8295 0.9990 +6883 8356 0.5890 +6883 8359 0.8220 +6883 8360 0.8220 +6883 8361 0.9560 +6883 8362 0.8220 +6883 8363 0.8240 +6883 8364 0.8220 +6883 8366 0.8230 +6883 8367 0.8240 +6883 8368 0.8220 +6883 8369 0.4950 +6883 8370 0.8290 +6883 8438 0.5160 +6883 8464 0.9990 +6883 8850 0.9980 +6883 8970 0.8500 +6883 9013 0.7600 +6883 9014 0.6310 +6883 9015 0.7560 +6883 9044 0.5960 +6883 9282 0.8200 +6883 9412 0.8320 +6883 9439 0.8350 +6883 9440 0.8260 +6883 9441 0.8200 +6883 9442 0.8130 +6883 9443 0.8730 +6883 9477 0.8210 +6883 9519 0.8680 +6883 9611 0.8200 +6883 9612 0.8090 +6883 9862 0.8000 +6883 9913 0.9980 +6883 9960 0.5510 +6883 10001 0.8590 +6883 10025 0.8310 +6883 10474 0.9990 +6883 10629 0.9990 +6883 11016 0.7300 +6883 11091 0.7470 +6883 23326 0.9910 +6883 23450 0.9470 +6883 23476 0.4570 +6883 25862 0.5840 +6883 26009 0.7450 +6883 27097 0.9990 +6883 27154 0.4240 +6883 27443 0.8450 +6883 29079 0.8540 +6883 51003 0.8470 +6883 51013 0.5370 +6883 51343 0.4070 +6883 51562 0.7390 +6883 51586 0.8600 +6883 51616 0.9990 +6883 54107 0.7220 +6883 54457 0.9850 +6883 54584 0.4370 +6883 54797 0.8110 +6883 55090 0.8530 +6883 55339 0.4280 +6883 55578 0.9990 +6883 55588 0.8150 +6883 55689 0.8520 +6883 56655 0.7250 +6883 56943 0.9960 +6883 56970 0.9950 +6883 57325 0.7690 +6883 57710 0.4170 +6883 79084 0.4370 +6883 79101 0.6970 +6883 79595 0.8060 +6883 80306 0.8030 +6883 80314 0.4010 +6883 81857 0.8220 +6883 83443 0.9740 +6883 83860 0.9970 +6883 84101 0.5470 +6883 84246 0.8120 +6883 84749 0.5470 +6883 90390 0.8060 +6883 91522 0.4070 +6883 93624 0.9970 +6883 112869 0.9990 +6883 112950 0.9050 +6883 117143 0.9990 +6883 121504 0.8220 +6883 126961 0.8250 +6883 127002 0.9010 +6883 128497 0.6080 +6883 129685 0.9990 +6883 138474 0.9550 +6883 158880 0.8210 +6883 221302 0.6130 +6883 222255 0.8500 +6883 333932 0.8250 +6883 374395 0.7840 +6883 387332 0.9180 +6883 389856 0.8200 +6883 391742 0.5990 +6883 391746 0.5990 +6883 391747 0.5990 +6883 399949 0.8060 +6883 400569 0.8620 +6883 404672 0.9500 +6883 554313 0.8220 +6883 646066 0.5990 +6883 646103 0.5990 +6883 653604 0.9140 +6883 100287513 0.5470 +6883 102723526 0.5990 +6883 112488736 0.5990 +6883 112488737 0.5990 +6883 112488738 0.5990 +6883 112488739 0.5990 +6883 112488740 0.5990 +6883 112488745 0.5990 +6883 112488746 0.5990 +6883 112488747 0.5990 +6884 6908 0.9990 +6884 6917 0.9190 +6884 7157 0.4140 +6884 7702 0.5040 +6884 8089 0.5390 +6884 8148 0.9230 +6884 8294 0.8030 +6884 8359 0.8020 +6884 8360 0.8030 +6884 8361 0.8080 +6884 8362 0.8020 +6884 8363 0.8040 +6884 8364 0.8030 +6884 8366 0.8100 +6884 8367 0.8060 +6884 8368 0.8040 +6884 8370 0.8030 +6884 8812 0.5470 +6884 8850 0.5760 +6884 8970 0.8020 +6884 9282 0.8580 +6884 9412 0.8780 +6884 9439 0.8050 +6884 9440 0.8090 +6884 9441 0.8820 +6884 9442 0.8030 +6884 9443 0.8010 +6884 9477 0.8000 +6884 9519 0.8130 +6884 9847 0.4010 +6884 9862 0.8000 +6884 10001 0.8670 +6884 10025 0.8030 +6884 10302 0.5380 +6884 10629 0.9560 +6884 23450 0.7250 +6884 27097 0.9290 +6884 29079 0.8030 +6884 29101 0.4080 +6884 51003 0.8010 +6884 51586 0.8000 +6884 51616 0.9920 +6884 54457 0.9910 +6884 54797 0.8250 +6884 55090 0.8000 +6884 55131 0.4340 +6884 55205 0.4890 +6884 55588 0.8030 +6884 55689 0.4730 +6884 56900 0.4210 +6884 80306 0.8160 +6884 81857 0.8020 +6884 83860 0.9990 +6884 84246 0.8330 +6884 90390 0.8000 +6884 112869 0.4490 +6884 112950 0.8130 +6884 121504 0.8020 +6884 126961 0.8070 +6884 128497 0.6100 +6884 129685 0.9990 +6884 138474 0.9440 +6884 139886 0.4350 +6884 333932 0.8070 +6884 387332 0.8970 +6884 391742 0.5990 +6884 391746 0.5990 +6884 391747 0.5990 +6884 399949 0.7900 +6884 400569 0.8050 +6884 404672 0.9820 +6884 554313 0.8020 +6884 646066 0.5990 +6884 646103 0.5990 +6884 653604 0.8180 +6884 102723526 0.5990 +6884 112488736 0.5990 +6884 112488737 0.5990 +6884 112488738 0.5990 +6884 112488739 0.5990 +6884 112488740 0.5990 +6884 112488745 0.5990 +6884 112488746 0.5990 +6884 112488747 0.5990 +6885 7040 0.5040 +6885 7046 0.7040 +6885 7048 0.4380 +6885 7097 0.4630 +6885 7098 0.9920 +6885 7099 0.9720 +6885 7124 0.9990 +6885 7128 0.5950 +6885 7132 0.9990 +6885 7157 0.4300 +6885 7185 0.4050 +6885 7186 0.9880 +6885 7187 0.9780 +6885 7188 0.9740 +6885 7189 0.9990 +6885 7311 0.5700 +6885 7314 0.5710 +6885 7316 0.7000 +6885 7334 0.9930 +6885 7335 0.8820 +6885 7375 0.8010 +6885 7444 0.5490 +6885 7706 0.4330 +6885 8239 0.4700 +6885 8295 0.7410 +6885 8443 0.4180 +6885 8450 0.4460 +6885 8454 0.4570 +6885 8464 0.7220 +6885 8517 0.9990 +6885 8600 0.5400 +6885 8607 0.6400 +6885 8717 0.9760 +6885 8737 0.9960 +6885 8767 0.8820 +6885 8772 0.6470 +6885 8792 0.4010 +6885 8850 0.7520 +6885 8915 0.9720 +6885 8945 0.5840 +6885 9020 0.9590 +6885 9021 0.4470 +6885 9099 0.6000 +6885 9101 0.5670 +6885 9344 0.4770 +6885 9479 0.6850 +6885 9618 0.5550 +6885 9690 0.6030 +6885 9913 0.7690 +6885 9958 0.4820 +6885 10010 0.5260 +6885 10273 0.5800 +6885 10392 0.6750 +6885 10399 0.4040 +6885 10454 0.9990 +6885 10474 0.7970 +6885 10616 0.7310 +6885 10629 0.7360 +6885 10758 0.4870 +6885 10856 0.4120 +6885 10869 0.4170 +6885 10892 0.8470 +6885 11074 0.5860 +6885 11091 0.7670 +6885 11140 0.6580 +6885 11274 0.8820 +6885 23043 0.6050 +6885 23112 0.5340 +6885 23118 0.9990 +6885 23291 0.4350 +6885 23326 0.7370 +6885 23358 0.5950 +6885 23423 0.5150 +6885 23450 0.5500 +6885 23534 0.4560 +6885 23586 0.4520 +6885 23643 0.7070 +6885 23765 0.4460 +6885 25940 0.4490 +6885 26009 0.7890 +6885 26190 0.4200 +6885 26523 0.5590 +6885 27005 0.4570 +6885 27097 0.7420 +6885 27161 0.5710 +6885 27327 0.5010 +6885 28996 0.5600 +6885 50618 0.4090 +6885 51014 0.5430 +6885 51079 0.4240 +6885 51135 0.9280 +6885 51284 0.5640 +6885 51295 0.6810 +6885 51311 0.5200 +6885 51422 0.9160 +6885 51562 0.8480 +6885 51616 0.7440 +6885 51701 0.9770 +6885 53632 0.9190 +6885 54107 0.8220 +6885 54455 0.4610 +6885 54461 0.5290 +6885 55072 0.7030 +6885 55294 0.4070 +6885 55437 0.6620 +6885 55578 0.8410 +6885 55689 0.8600 +6885 55770 0.6200 +6885 56655 0.8660 +6885 56916 0.4760 +6885 56943 0.7240 +6885 56957 0.5350 +6885 56970 0.7290 +6885 57120 0.4360 +6885 57209 0.4180 +6885 57325 0.7550 +6885 57506 0.9480 +6885 57551 0.4520 +6885 64127 0.8770 +6885 79969 0.5100 +6885 80216 0.5820 +6885 81565 0.4470 +6885 81603 0.7950 +6885 81858 0.6930 +6885 83443 0.5400 +6885 83737 0.7430 +6885 84085 0.4110 +6885 84231 0.6310 +6885 84433 0.9220 +6885 84955 0.6590 +6885 85363 0.6320 +6885 92610 0.5290 +6885 93624 0.7520 +6885 93973 0.4660 +6885 112869 0.8570 +6885 114609 0.7070 +6885 117143 0.7300 +6885 142678 0.4260 +6885 148022 0.8540 +6885 151258 0.5690 +6885 151742 0.7040 +6885 163688 0.5100 +6885 192669 0.5440 +6885 192670 0.5400 +6885 220213 0.4430 +6885 246330 0.8490 +6885 257397 0.9990 +6885 353376 0.8370 +6885 100302736 0.6590 +6886 6887 0.4810 +6886 6925 0.9470 +6886 6929 0.9990 +6886 6938 0.9990 +6886 7010 0.4080 +6886 7528 0.4160 +6886 7546 0.4490 +6886 7702 0.4650 +6886 7874 0.4360 +6886 8021 0.4800 +6886 8028 0.5420 +6886 8328 0.9050 +6886 8331 0.4990 +6886 8334 0.5010 +6886 8337 0.5400 +6886 8338 0.5420 +6886 8340 0.5280 +6886 8341 0.5300 +6886 8342 0.5310 +6886 8345 0.5280 +6886 8347 0.5340 +6886 8348 0.5280 +6886 8349 0.5620 +6886 8356 0.6500 +6886 8361 0.5340 +6886 8777 0.4950 +6886 8854 0.4840 +6886 8861 0.9990 +6886 8970 0.5380 +6886 9079 0.9950 +6886 9139 0.5680 +6886 10127 0.4710 +6886 10155 0.4690 +6886 10158 0.5360 +6886 10273 0.5660 +6886 10320 0.5640 +6886 10362 0.4260 +6886 10370 0.4280 +6886 10661 0.9280 +6886 10664 0.6180 +6886 23028 0.7730 +6886 23186 0.4520 +6886 23411 0.4190 +6886 23512 0.6110 +6886 23635 0.8230 +6886 25942 0.7700 +6886 28999 0.4230 +6886 30012 0.8250 +6886 51176 0.6990 +6886 51278 0.4970 +6886 51341 0.4010 +6886 51592 0.4980 +6886 53335 0.7220 +6886 54145 0.5290 +6886 55001 0.4070 +6886 55278 0.5530 +6886 55294 0.4840 +6886 55303 0.5470 +6886 55766 0.5050 +6886 64321 0.4640 +6886 64748 0.4030 +6886 64901 0.5030 +6886 64919 0.7540 +6886 79923 0.4050 +6886 83595 0.4160 +6886 84295 0.4760 +6886 85236 0.5310 +6886 94239 0.4990 +6886 128312 0.5330 +6886 161882 0.8220 +6886 171558 0.4950 +6886 255626 0.5260 +6886 255877 0.4540 +6886 474382 0.4990 +6886 653604 0.6470 +6887 6925 0.7390 +6887 6929 0.8840 +6887 6938 0.6750 +6887 7080 0.4120 +6887 8403 0.4120 +6887 8777 0.4910 +6887 8861 0.6170 +6887 9079 0.5830 +6887 10215 0.6840 +6887 30012 0.6590 +6887 51278 0.4950 +6887 55151 0.4970 +6887 55571 0.4140 +6887 58499 0.4070 +6887 120237 0.4590 +6887 256933 0.4140 +6887 391723 0.6060 +6888 7001 0.5820 +6888 7086 0.9990 +6888 7167 0.9940 +6888 7294 0.4320 +6888 7295 0.5320 +6888 7296 0.5470 +6888 7358 0.5530 +6888 7360 0.4880 +6888 7372 0.4920 +6888 7384 0.4070 +6888 7453 0.4110 +6888 8192 0.4410 +6888 8277 0.9990 +6888 8644 0.4230 +6888 8789 0.9890 +6888 8801 0.4860 +6888 8802 0.5100 +6888 8803 0.4530 +6888 9104 0.4930 +6888 9343 0.4760 +6888 9380 0.6290 +6888 9562 0.8050 +6888 9563 0.9640 +6888 9588 0.5250 +6888 9942 0.8680 +6888 9945 0.8350 +6888 10007 0.5260 +6888 10020 0.8970 +6888 10102 0.4240 +6888 10327 0.5370 +6888 10428 0.6200 +6888 10549 0.4690 +6888 10551 0.4200 +6888 10797 0.5360 +6888 10873 0.7200 +6888 10935 0.4800 +6888 11112 0.4170 +6888 11152 0.5440 +6888 11181 0.4260 +6888 11315 0.4600 +6888 22934 0.9980 +6888 23193 0.4090 +6888 25796 0.8450 +6888 25902 0.4060 +6888 26227 0.4260 +6888 26330 0.9720 +6888 27068 0.5340 +6888 29968 0.7380 +6888 51021 0.4100 +6888 51031 0.4530 +6888 51069 0.4260 +6888 51071 0.9550 +6888 51116 0.4010 +6888 51582 0.4040 +6888 55102 0.4520 +6888 55276 0.9040 +6888 55902 0.4810 +6888 57016 0.4820 +6888 57103 0.4790 +6888 57407 0.4140 +6888 57469 0.8320 +6888 57818 0.8240 +6888 64080 0.6800 +6888 64146 0.4380 +6888 65220 0.4970 +6888 79631 0.4690 +6888 80201 0.8410 +6888 81570 0.4220 +6888 83440 0.8140 +6888 84076 0.9990 +6888 84263 0.4460 +6888 84532 0.4410 +6888 85476 0.4660 +6888 92483 0.9020 +6888 92579 0.8320 +6888 113451 0.4030 +6888 115286 0.5810 +6888 122622 0.4130 +6888 126393 0.4070 +6888 129831 0.8180 +6888 130589 0.4930 +6888 132789 0.4410 +6888 147841 0.4530 +6888 154141 0.4340 +6888 160287 0.8970 +6888 162417 0.4580 +6888 221823 0.4480 +6888 283871 0.5010 +6888 286451 0.4900 +6888 387712 0.9050 +6888 414328 0.6270 +6888 441531 0.9050 +6888 729020 0.9290 +6890 6891 0.9990 +6890 6892 0.9950 +6890 7311 0.5380 +6890 7314 0.5290 +6890 7316 0.5360 +6890 7453 0.4100 +6890 8519 0.5240 +6890 9246 0.6780 +6890 9554 0.5460 +6890 9636 0.5190 +6890 10257 0.4380 +6890 10379 0.4940 +6890 11119 0.4350 +6890 23457 0.6270 +6890 23586 0.4780 +6890 26046 0.4310 +6890 51056 0.4240 +6890 54625 0.5370 +6890 55324 0.5400 +6890 64135 0.5080 +6890 64761 0.4690 +6890 79924 0.6700 +6890 83666 0.5850 +6890 84166 0.6980 +6890 85441 0.4230 +6890 89866 0.4100 +6890 115361 0.4790 +6890 115362 0.6600 +6890 116071 0.4390 +6890 219285 0.4550 +6891 6892 0.9890 +6891 7311 0.5190 +6891 7314 0.5250 +6891 7316 0.5250 +6891 7923 0.4200 +6891 9246 0.4150 +6891 9554 0.5280 +6891 10257 0.4780 +6891 23457 0.7480 +6891 54625 0.4250 +6891 79924 0.7100 +6891 84166 0.5390 +6891 89866 0.4230 +6891 115361 0.4430 +6891 115362 0.4430 +6891 219285 0.4230 +6892 6949 0.4070 +6892 7064 0.4180 +6892 7174 0.5150 +6892 7247 0.4190 +6892 7399 0.4030 +6892 8625 0.4320 +6892 9277 0.8580 +6892 9278 0.8920 +6892 9554 0.8660 +6892 10379 0.4390 +6892 10471 0.7160 +6892 10561 0.4220 +6892 23420 0.4050 +6892 23457 0.7420 +6892 27074 0.4150 +6892 29126 0.4310 +6892 29927 0.6100 +6892 51752 0.8270 +6892 55080 0.6610 +6892 56154 0.4310 +6892 56886 0.4540 +6892 57659 0.4340 +6892 63923 0.4360 +6892 64167 0.6820 +6892 80380 0.5350 +6892 83480 0.4910 +6892 83786 0.5870 +6892 84166 0.5680 +6892 84868 0.5060 +6892 85456 0.4750 +6892 113246 0.5950 +6892 148979 0.4310 +6892 283420 0.4710 +6892 283820 0.4310 +6892 408050 0.4180 +6894 6895 0.5860 +6894 8565 0.4400 +6894 9277 0.4010 +6894 9349 0.5800 +6894 9790 0.4130 +6894 9875 0.5930 +6894 9933 0.4480 +6894 9939 0.8370 +6894 10153 0.6070 +6894 10473 0.4320 +6894 10514 0.5130 +6894 10535 0.5220 +6894 10575 0.8420 +6894 10607 0.7030 +6894 10785 0.5540 +6894 10885 0.6030 +6894 11128 0.4110 +6894 11222 0.5010 +6894 22894 0.4680 +6894 22984 0.7200 +6894 23223 0.6210 +6894 23517 0.8320 +6894 23521 0.5050 +6894 23560 0.5210 +6894 24140 0.7470 +6894 25885 0.6860 +6894 26155 0.6880 +6894 26354 0.5670 +6894 26574 0.4050 +6894 27037 0.4920 +6894 27079 0.5250 +6894 27292 0.4240 +6894 27340 0.8240 +6894 28998 0.5050 +6894 29083 0.7080 +6894 29102 0.4560 +6894 29889 0.5680 +6894 29960 0.4380 +6894 29997 0.4060 +6894 51082 0.4020 +6894 51121 0.4540 +6894 51605 0.5900 +6894 54482 0.4370 +6894 54517 0.6560 +6894 54552 0.5590 +6894 54802 0.5290 +6894 54888 0.6190 +6894 54920 0.5100 +6894 55006 0.4210 +6894 55039 0.4430 +6894 55127 0.6840 +6894 55226 0.5790 +6894 55299 0.4140 +6894 55341 0.5540 +6894 55621 0.7930 +6894 55622 0.4280 +6894 55760 0.4490 +6894 57050 0.4200 +6894 57062 0.4150 +6894 57129 0.6840 +6894 57570 0.5610 +6894 60487 0.5400 +6894 63875 0.6740 +6894 64118 0.5660 +6894 64216 0.4540 +6894 65003 0.4240 +6894 79050 0.4420 +6894 79587 0.5020 +6894 79590 0.4780 +6894 79728 0.5410 +6894 79979 0.4750 +6894 81627 0.4910 +6894 83448 0.6330 +6894 83480 0.5540 +6894 84128 0.4130 +6894 84154 0.5730 +6894 84273 0.4570 +6894 84545 0.6240 +6894 84705 0.7060 +6894 84881 0.5070 +6894 84916 0.7260 +6894 85441 0.4760 +6894 90353 0.4450 +6894 92170 0.4560 +6894 93587 0.6510 +6894 113000 0.5000 +6894 115416 0.6520 +6894 115708 0.4530 +6894 115752 0.4980 +6894 117246 0.5520 +6894 125963 0.4130 +6894 129563 0.5110 +6894 139735 0.4450 +6894 142940 0.7250 +6894 152992 0.6670 +6894 165545 0.4410 +6894 219927 0.6520 +6894 221078 0.4440 +6894 285367 0.5000 +6894 359948 0.4060 +6894 374659 0.4350 +6894 400736 0.5710 +6895 6949 0.5240 +6895 7224 0.4430 +6895 7247 0.6540 +6895 7257 0.6150 +6895 7538 0.5740 +6895 8086 0.4220 +6895 8189 0.4280 +6895 8487 0.4110 +6895 8570 0.5710 +6895 8575 0.9940 +6895 8994 0.9000 +6895 9136 0.4840 +6895 9271 0.7570 +6895 9692 0.9040 +6895 9880 0.4220 +6895 9939 0.9570 +6895 10248 0.9200 +6895 10322 0.4500 +6895 10432 0.4910 +6895 10445 0.5190 +6895 10521 0.4120 +6895 10556 0.9000 +6895 10557 0.9010 +6895 10775 0.9010 +6895 10799 0.9020 +6895 10940 0.9480 +6895 10978 0.9220 +6895 11102 0.9000 +6895 11218 0.6730 +6895 23405 0.9990 +6895 23567 0.6370 +6895 25929 0.4360 +6895 26523 0.9980 +6895 27044 0.5500 +6895 27161 0.9990 +6895 27327 0.9930 +6895 29102 0.9890 +6895 50628 0.8330 +6895 51087 0.4740 +6895 51367 0.9040 +6895 54487 0.9660 +6895 54913 0.9020 +6895 54931 0.5430 +6895 55269 0.5100 +6895 55342 0.7250 +6895 55621 0.5970 +6895 57510 0.9880 +6895 64223 0.5080 +6895 64318 0.4970 +6895 64393 0.6200 +6895 64506 0.4460 +6895 65080 0.5640 +6895 79009 0.5580 +6895 79169 0.5140 +6895 79657 0.9040 +6895 79698 0.5660 +6895 79833 0.4340 +6895 79897 0.9010 +6895 80746 0.5600 +6895 81887 0.4950 +6895 92140 0.4500 +6895 93436 0.4480 +6895 113802 0.7860 +6895 138716 0.6230 +6895 143689 0.7670 +6895 167227 0.9110 +6895 192669 0.9680 +6895 192670 0.9480 +6895 283989 0.5640 +6895 284131 0.5220 +6895 326340 0.4030 +6895 727837 0.4910 +6897 6950 0.6210 +6897 7407 0.9050 +6897 7453 0.8180 +6897 7786 0.8290 +6897 7965 0.5500 +6897 8192 0.4170 +6897 8565 0.9110 +6897 8697 0.4150 +6897 8833 0.5540 +6897 9147 0.6500 +6897 9172 0.4160 +6897 9255 0.7420 +6897 9295 0.4460 +6897 9343 0.6250 +6897 9470 0.9320 +6897 9521 0.5500 +6897 9553 0.4090 +6897 9669 0.7170 +6897 9775 0.4930 +6897 10056 0.7350 +6897 10102 0.5710 +6897 10189 0.4110 +6897 10213 0.4230 +6897 10352 0.7970 +6897 10473 0.4270 +6897 10539 0.4970 +6897 10576 0.4440 +6897 10667 0.7980 +6897 10797 0.4010 +6897 10953 0.4930 +6897 11222 0.5180 +6897 22948 0.7270 +6897 23395 0.9800 +6897 23438 0.8580 +6897 23476 0.5200 +6897 23515 0.4530 +6897 25902 0.5180 +6897 25973 0.8730 +6897 28977 0.4600 +6897 28998 0.4910 +6897 29088 0.4430 +6897 29093 0.5080 +6897 29102 0.4370 +6897 29789 0.5860 +6897 51021 0.4560 +6897 51067 0.8180 +6897 51081 0.4230 +6897 51149 0.5110 +6897 51520 0.9800 +6897 54534 0.4110 +6897 54938 0.8570 +6897 55052 0.4240 +6897 55157 0.6640 +6897 55316 0.5220 +6897 55699 0.8900 +6897 55854 0.4340 +6897 56945 0.4250 +6897 57038 0.7930 +6897 57176 0.8760 +6897 57470 0.4490 +6897 57505 0.8640 +6897 63931 0.5680 +6897 64172 0.4070 +6897 64960 0.5860 +6897 64963 0.4390 +6897 64965 0.4510 +6897 64968 0.4690 +6897 64969 0.4700 +6897 64979 0.4390 +6897 64983 0.4330 +6897 65003 0.4630 +6897 65008 0.6110 +6897 79587 0.7860 +6897 79731 0.8930 +6897 80218 0.5010 +6897 80222 0.9050 +6897 84705 0.5680 +6897 85476 0.5820 +6897 92399 0.5490 +6897 92935 0.8060 +6897 93974 0.4170 +6897 112487 0.4770 +6897 123283 0.9580 +6897 124454 0.7760 +6897 374659 0.6630 +6897 440275 0.7210 +6897 100526842 0.4300 +6898 6927 0.4430 +6898 6999 0.9050 +6898 7054 0.9290 +6898 7104 0.4230 +6898 7167 0.4420 +6898 7173 0.9000 +6898 7276 0.5450 +6898 7299 0.9120 +6898 7337 0.8150 +6898 7378 0.4020 +6898 8564 0.4670 +6898 8856 0.4310 +6898 8942 0.6160 +6898 9197 0.4010 +6898 9380 0.5830 +6898 9453 0.4320 +6898 9563 0.5690 +6898 10157 0.5260 +6898 10691 0.4140 +6898 10993 0.7470 +6898 23743 0.9380 +6898 26061 0.4400 +6898 26205 0.4530 +6898 26227 0.4440 +6898 27235 0.4130 +6898 27430 0.9140 +6898 29968 0.5100 +6898 51004 0.4240 +6898 51179 0.4380 +6898 51582 0.5590 +6898 51733 0.4510 +6898 51805 0.4320 +6898 54363 0.4450 +6898 55256 0.9560 +6898 55258 0.4280 +6898 57818 0.6510 +6898 79731 0.4670 +6898 79896 0.4280 +6898 80755 0.4810 +6898 84274 0.4240 +6898 84842 0.7750 +6898 92483 0.4260 +6898 92579 0.7280 +6898 113451 0.5590 +6898 137362 0.9650 +6898 160287 0.4290 +6898 162417 0.4220 +6898 259307 0.9160 +6898 345275 0.4280 +6899 6943 0.6600 +6899 7088 0.6640 +6899 7122 0.5260 +6899 7290 0.6630 +6899 7350 0.6570 +6899 7353 0.4300 +6899 7545 0.5100 +6899 7625 0.6630 +6899 8214 0.7070 +6899 8218 0.4520 +6899 8456 0.4490 +6899 8646 0.5610 +6899 8815 0.4410 +6899 8829 0.5530 +6899 9242 0.5410 +6899 9247 0.5850 +6899 9464 0.4210 +6899 9993 0.6600 +6899 10587 0.4610 +6899 10891 0.5090 +6899 23414 0.5010 +6899 25898 0.5940 +6899 29801 0.4640 +6899 53820 0.6250 +6899 54487 0.4150 +6899 54584 0.8890 +6899 55997 0.5300 +6899 57167 0.4140 +6899 58510 0.5050 +6899 63976 0.6470 +6899 64976 0.4180 +6899 65078 0.4070 +6899 84623 0.4260 +6899 85359 0.7090 +6899 137814 0.6710 +6899 144535 0.6150 +6899 150209 0.4120 +6899 219623 0.7850 +6899 340784 0.5260 +6899 431707 0.5250 +6899 100131827 0.4540 +6900 7124 0.4790 +6900 7189 0.4880 +6900 7476 0.5680 +6900 7494 0.4490 +6900 8506 0.9400 +6900 8517 0.8310 +6900 8745 0.4400 +6900 8829 0.7230 +6900 8850 0.4830 +6900 8887 0.9880 +6900 9211 0.9250 +6900 9378 0.7450 +6900 9379 0.7450 +6900 9423 0.4670 +6900 9641 0.6570 +6900 9896 0.4300 +6900 10133 0.5830 +6900 10241 0.4820 +6900 10371 0.4640 +6900 10498 0.4390 +6900 10716 0.4510 +6900 10752 0.5050 +6900 10868 0.4850 +6900 23114 0.7490 +6900 23118 0.4970 +6900 23621 0.7270 +6900 26047 0.9990 +6900 29110 0.5300 +6900 30010 0.4270 +6900 30851 0.5570 +6900 50863 0.5590 +6900 53616 0.7570 +6900 53942 0.4380 +6900 55079 0.5100 +6900 55697 0.5600 +6900 55914 0.5570 +6900 56751 0.4700 +6900 56934 0.4400 +6900 57178 0.4210 +6900 57531 0.4570 +6900 57731 0.5270 +6900 57863 0.4850 +6900 60484 0.5750 +6900 63974 0.4470 +6900 81533 0.4160 +6900 81551 0.5550 +6900 83482 0.4820 +6900 85445 0.6210 +6900 90249 0.4440 +6900 93377 0.5320 +6900 124925 0.4300 +6900 129684 0.4030 +6900 146713 0.4040 +6900 200576 0.5300 +6900 257194 0.5160 +6900 260425 0.6100 +6900 266727 0.4220 +6900 342035 0.5120 +6900 347730 0.4020 +6900 388585 0.4360 +6900 388730 0.4310 +6900 100133941 0.4390 +6901 7003 0.5830 +6901 7139 0.6160 +6901 8398 0.6450 +6901 8463 0.5910 +6901 8720 0.4190 +6901 8760 0.4260 +6901 8945 0.6680 +6901 9113 0.7680 +6901 9489 0.5630 +6901 9804 0.4170 +6901 10245 0.5750 +6901 10413 0.6870 +6901 10423 0.4820 +6901 10440 0.5540 +6901 10452 0.5860 +6901 10554 0.4200 +6901 10555 0.4080 +6901 10952 0.5450 +6901 11155 0.8190 +6901 23761 0.4970 +6901 25851 0.4450 +6901 25937 0.4220 +6901 26024 0.4330 +6901 26515 0.5210 +6901 26519 0.6270 +6901 26520 0.5800 +6901 26524 0.5650 +6901 27166 0.4880 +6901 29928 0.5740 +6901 50640 0.6010 +6901 51099 0.4800 +6901 51103 0.8350 +6901 51676 0.4550 +6901 54205 0.4400 +6901 54465 0.4330 +6901 54675 0.9700 +6901 54867 0.6560 +6901 55218 0.6490 +6901 55233 0.4510 +6901 57048 0.4800 +6901 57410 0.4300 +6901 57678 0.4130 +6901 60485 0.4970 +6901 63874 0.4330 +6901 64174 0.4430 +6901 79135 0.4420 +6901 80207 0.7410 +6901 84060 0.4330 +6901 114971 0.6200 +6901 120071 0.4220 +6901 124739 0.4030 +6901 129642 0.4570 +6901 131118 0.8930 +6901 132001 0.7220 +6901 139322 0.4960 +6901 253558 0.9750 +6901 254531 0.5160 +6901 374378 0.4200 +6901 375337 0.4330 +6901 440145 0.4330 +6901 100287932 0.6070 +6902 6903 0.6950 +6902 6904 0.8160 +6902 6905 0.7150 +6902 7277 0.8680 +6902 7278 0.7220 +6902 7280 0.8710 +6902 7411 0.5870 +6902 7846 0.6820 +6902 9553 0.4610 +6902 10376 0.6790 +6902 10381 0.7490 +6902 10382 0.7490 +6902 10383 0.7900 +6902 10412 0.5330 +6902 10471 0.5930 +6902 10575 0.5130 +6902 11315 0.4110 +6902 23480 0.4340 +6902 51175 0.4520 +6902 51807 0.6380 +6902 54543 0.4040 +6902 54885 0.4390 +6902 55246 0.4690 +6902 79861 0.6550 +6902 80086 0.6440 +6902 81027 0.7140 +6902 84617 0.7230 +6902 84790 0.6650 +6902 112714 0.6460 +6902 113457 0.6710 +6902 136319 0.4660 +6902 152100 0.4010 +6902 203068 0.7230 +6902 219899 0.5120 +6902 260334 0.4520 +6902 347688 0.4950 +6902 347733 0.7630 +6903 6904 0.8780 +6903 6905 0.6160 +6903 7277 0.5540 +6903 7278 0.5330 +6903 7280 0.5210 +6903 7846 0.5350 +6903 9910 0.4080 +6903 10376 0.5340 +6903 10381 0.5550 +6903 10382 0.5750 +6903 10383 0.5250 +6903 51807 0.5400 +6903 54903 0.4010 +6903 55171 0.4510 +6903 79861 0.5490 +6903 80086 0.5310 +6903 81027 0.5210 +6903 83548 0.4640 +6903 84617 0.5740 +6903 84790 0.5380 +6903 112714 0.5420 +6903 113457 0.5410 +6903 219899 0.5880 +6903 347733 0.5210 +6904 6905 0.9860 +6904 6999 0.4290 +6904 7045 0.4580 +6904 7068 0.4390 +6904 7277 0.6760 +6904 7278 0.6630 +6904 7280 0.9030 +6904 7846 0.7040 +6904 8379 0.7090 +6904 8910 0.5470 +6904 9044 0.4090 +6904 9685 0.4730 +6904 10243 0.4040 +6904 10376 0.6850 +6904 10381 0.6200 +6904 10382 0.7250 +6904 10383 0.7590 +6904 10458 0.5660 +6904 10606 0.4930 +6904 25902 0.4020 +6904 51807 0.6850 +6904 54892 0.4260 +6904 55636 0.4320 +6904 55959 0.4090 +6904 57576 0.4340 +6904 60682 0.4740 +6904 64122 0.6190 +6904 64210 0.4480 +6904 79672 0.5960 +6904 79707 0.4250 +6904 79861 0.6680 +6904 80086 0.6630 +6904 81027 0.6050 +6904 83943 0.6680 +6904 84617 0.6230 +6904 84631 0.6740 +6904 84790 0.6690 +6904 112714 0.6630 +6904 113457 0.6720 +6904 114798 0.6180 +6904 121441 0.4140 +6904 137872 0.4550 +6904 146712 0.5350 +6904 203068 0.7010 +6904 219899 0.8890 +6904 255520 0.4260 +6904 347688 0.4170 +6904 347733 0.7620 +6904 392509 0.7410 +6905 7415 0.5480 +6905 7846 0.4360 +6905 9247 0.4300 +6905 9677 0.5980 +6905 9807 0.4480 +6905 10038 0.4130 +6905 10376 0.4080 +6905 11200 0.4450 +6905 51447 0.4320 +6905 51755 0.4350 +6905 51807 0.4300 +6905 55701 0.4470 +6905 63901 0.9500 +6905 64768 0.5050 +6905 79139 0.4180 +6905 79728 0.5810 +6905 84447 0.7170 +6905 91404 0.4460 +6905 197131 0.4120 +6906 7038 0.6700 +6906 7067 0.4660 +6906 7068 0.5990 +6906 7106 0.6430 +6906 7173 0.4120 +6906 7200 0.7480 +6906 7252 0.4340 +6906 7253 0.5780 +6906 7276 0.9800 +6906 7365 0.8510 +6906 8788 0.4440 +6906 9518 0.4710 +6906 9971 0.4220 +6906 10056 0.4160 +6906 10246 0.7760 +6906 11188 0.4220 +6906 26998 0.5830 +6906 53919 0.5030 +6906 55636 0.4990 +6906 55811 0.4500 +6906 116519 0.8000 +6906 117247 0.4790 +6906 200895 0.4440 +6906 256394 0.8000 +6906 257202 0.4320 +6906 375056 0.4330 +6906 493869 0.4310 +6907 6908 0.5060 +6907 6949 0.7180 +6907 7067 0.4090 +6907 7068 0.5930 +6907 7088 0.4810 +6907 7124 0.5620 +6907 7157 0.4740 +6907 7173 0.9140 +6907 7296 0.4450 +6907 7321 0.4460 +6907 7328 0.4770 +6907 7329 0.4860 +6907 7376 0.5470 +6907 7543 0.5350 +6907 7837 0.4450 +6907 8034 0.4790 +6907 8239 0.5090 +6907 8242 0.4660 +6907 8290 0.6210 +6907 8295 0.4180 +6907 8312 0.4910 +6907 8329 0.4030 +6907 8331 0.4030 +6907 8334 0.4030 +6907 8337 0.6540 +6907 8338 0.5300 +6907 8340 0.4770 +6907 8341 0.4770 +6907 8342 0.4800 +6907 8345 0.4790 +6907 8347 0.4860 +6907 8348 0.4800 +6907 8349 0.8680 +6907 8356 0.7670 +6907 8361 0.7760 +6907 8481 0.7420 +6907 8538 0.6550 +6907 8549 0.4560 +6907 8553 0.4160 +6907 8648 0.6130 +6907 8726 0.4420 +6907 8800 0.4690 +6907 8801 0.6070 +6907 8841 0.9990 +6907 8850 0.7000 +6907 8881 0.4200 +6907 8908 0.4650 +6907 8970 0.4860 +6907 9221 0.6860 +6907 9611 0.9990 +6907 9612 0.9980 +6907 9682 0.4760 +6907 9734 0.6270 +6907 9759 0.6780 +6907 9782 0.4330 +6907 9794 0.5310 +6907 10013 0.6350 +6907 10014 0.8170 +6907 10046 0.5770 +6907 10062 0.5430 +6907 10075 0.4050 +6907 10156 0.4780 +6907 10297 0.9010 +6907 10417 0.4010 +6907 10474 0.4160 +6907 10498 0.6030 +6907 10499 0.6140 +6907 10524 0.4100 +6907 10528 0.5810 +6907 10606 0.4010 +6907 10664 0.4070 +6907 10898 0.4280 +6907 10943 0.5310 +6907 10951 0.4510 +6907 11010 0.4280 +6907 22938 0.5300 +6907 23054 0.6200 +6907 23118 0.7290 +6907 23179 0.4160 +6907 23309 0.5980 +6907 23411 0.4600 +6907 23492 0.4110 +6907 23512 0.5050 +6907 25942 0.7720 +6907 26230 0.4210 +6907 26608 0.4230 +6907 27063 0.4700 +6907 27101 0.6980 +6907 27242 0.4230 +6907 27291 0.6120 +6907 29841 0.4100 +6907 29894 0.4060 +6907 30816 0.4180 +6907 50486 0.4130 +6907 51129 0.4260 +6907 51230 0.5030 +6907 51339 0.4100 +6907 51564 0.6380 +6907 54600 0.4090 +6907 54820 0.4660 +6907 55388 0.4530 +6907 55534 0.5240 +6907 55636 0.4600 +6907 55787 0.4870 +6907 55811 0.4250 +6907 55869 0.8470 +6907 55904 0.7630 +6907 55914 0.4400 +6907 57463 0.4090 +6907 57502 0.5100 +6907 57761 0.4420 +6907 59272 0.5930 +6907 60468 0.4670 +6907 64856 0.4730 +6907 79718 0.9990 +6907 79885 0.5980 +6907 79923 0.4510 +6907 80205 0.5860 +6907 83933 0.5890 +6907 84101 0.6850 +6907 84441 0.5110 +6907 85235 0.4030 +6907 85236 0.4910 +6907 85441 0.5680 +6907 90665 0.9500 +6907 92815 0.4030 +6907 96764 0.5670 +6907 116519 0.4890 +6907 117143 0.5340 +6907 128312 0.4770 +6907 137902 0.4420 +6907 148479 0.4860 +6907 221613 0.4170 +6907 255626 0.4830 +6907 317772 0.4030 +6907 376497 0.4160 +6907 440093 0.6200 +6907 440686 0.6210 +6907 440689 0.4800 +6907 653604 0.7630 +6908 6917 0.9950 +6908 6919 0.8980 +6908 6920 0.8970 +6908 6938 0.4430 +6908 7031 0.5520 +6908 7037 0.4540 +6908 7039 0.4680 +6908 7110 0.4830 +6908 7124 0.4500 +6908 7150 0.6100 +6908 7155 0.4540 +6908 7157 0.9970 +6908 7166 0.4440 +6908 7270 0.6730 +6908 7280 0.4790 +6908 7311 0.7170 +6908 7314 0.4440 +6908 7316 0.7700 +6908 7324 0.4430 +6908 7329 0.4460 +6908 7343 0.9450 +6908 7350 0.4250 +6908 7391 0.7140 +6908 7392 0.6450 +6908 7494 0.9380 +6908 7520 0.5210 +6908 7528 0.7400 +6908 7534 0.7040 +6908 7629 0.6460 +6908 7702 0.7280 +6908 7837 0.5380 +6908 7913 0.5360 +6908 8085 0.4470 +6908 8089 0.5080 +6908 8148 0.9380 +6908 8202 0.6520 +6908 8290 0.8580 +6908 8294 0.8410 +6908 8295 0.7990 +6908 8331 0.5040 +6908 8334 0.5040 +6908 8337 0.8170 +6908 8338 0.8170 +6908 8340 0.5760 +6908 8341 0.5740 +6908 8342 0.5790 +6908 8345 0.5770 +6908 8347 0.5770 +6908 8348 0.5760 +6908 8349 0.8150 +6908 8350 0.4470 +6908 8356 0.9190 +6908 8359 0.8410 +6908 8360 0.8410 +6908 8361 0.9630 +6908 8362 0.8410 +6908 8363 0.8410 +6908 8364 0.8410 +6908 8366 0.8410 +6908 8367 0.8410 +6908 8368 0.8410 +6908 8369 0.7060 +6908 8370 0.8410 +6908 8433 0.6780 +6908 8464 0.9020 +6908 8467 0.7150 +6908 8553 0.6810 +6908 8607 0.8950 +6908 8648 0.7550 +6908 8658 0.4490 +6908 8721 0.9510 +6908 8804 0.5850 +6908 8812 0.5950 +6908 8841 0.4440 +6908 8850 0.9600 +6908 8892 0.4610 +6908 8970 0.9110 +6908 9001 0.4700 +6908 9013 0.9940 +6908 9014 0.9900 +6908 9015 0.9980 +6908 9031 0.5520 +6908 9044 0.9990 +6908 9112 0.4430 +6908 9126 0.4370 +6908 9133 0.4320 +6908 9134 0.6680 +6908 9150 0.4650 +6908 9188 0.5840 +6908 9219 0.4340 +6908 9282 0.9650 +6908 9314 0.4040 +6908 9325 0.7580 +6908 9328 0.7720 +6908 9329 0.7360 +6908 9330 0.8030 +6908 9412 0.9160 +6908 9439 0.9270 +6908 9440 0.9620 +6908 9441 0.9840 +6908 9442 0.9230 +6908 9443 0.9630 +6908 9477 0.9200 +6908 9519 0.9410 +6908 9533 0.8580 +6908 9575 0.5300 +6908 9577 0.4250 +6908 9611 0.6490 +6908 9612 0.6170 +6908 9656 0.4150 +6908 9692 0.5270 +6908 9698 0.4980 +6908 9739 0.4940 +6908 9801 0.4300 +6908 9862 0.9040 +6908 9913 0.4780 +6908 9968 0.5380 +6908 9984 0.4040 +6908 10001 0.9630 +6908 10009 0.4210 +6908 10025 0.8580 +6908 10273 0.5170 +6908 10302 0.9560 +6908 10320 0.6120 +6908 10363 0.4340 +6908 10474 0.9130 +6908 10498 0.6280 +6908 10499 0.4470 +6908 10514 0.5420 +6908 10524 0.7870 +6908 10526 0.5950 +6908 10536 0.4240 +6908 10589 0.9910 +6908 10621 0.9020 +6908 10622 0.7930 +6908 10623 0.8830 +6908 10629 0.7920 +6908 10664 0.5790 +6908 10849 0.7180 +6908 10856 0.8830 +6908 10880 0.4010 +6908 10891 0.4320 +6908 10919 0.5660 +6908 10923 0.7700 +6908 10989 0.4360 +6908 11036 0.9740 +6908 11091 0.7510 +6908 11128 0.9130 +6908 11143 0.5320 +6908 11198 0.4770 +6908 11201 0.8200 +6908 11317 0.9070 +6908 22976 0.4420 +6908 22984 0.6690 +6908 23019 0.4950 +6908 23028 0.4500 +6908 23054 0.4830 +6908 23066 0.7210 +6908 23092 0.4550 +6908 23133 0.4280 +6908 23168 0.4480 +6908 23224 0.4410 +6908 23326 0.4740 +6908 23345 0.4030 +6908 23397 0.4010 +6908 23411 0.7450 +6908 23435 0.4430 +6908 23450 0.4110 +6908 23451 0.5530 +6908 23468 0.4840 +6908 23476 0.6850 +6908 23521 0.6780 +6908 23774 0.4840 +6908 25814 0.6210 +6908 25862 0.4550 +6908 25885 0.7510 +6908 25942 0.4840 +6908 26330 0.5800 +6908 27085 0.6070 +6908 27097 0.8750 +6908 27297 0.8040 +6908 27443 0.5310 +6908 28514 0.4260 +6908 29072 0.4120 +6908 29079 0.8580 +6908 29101 0.6140 +6908 29105 0.9180 +6908 30009 0.4650 +6908 30834 0.6930 +6908 50488 0.4250 +6908 51003 0.9390 +6908 51082 0.8880 +6908 51585 0.6870 +6908 51586 0.8840 +6908 51616 0.9940 +6908 51692 0.4490 +6908 51728 0.7960 +6908 53615 0.4250 +6908 54145 0.5760 +6908 54386 0.4280 +6908 54457 0.9930 +6908 54556 0.4890 +6908 54700 0.9710 +6908 54797 0.9230 +6908 54815 0.4180 +6908 54954 0.4590 +6908 55090 0.8470 +6908 55244 0.5270 +6908 55290 0.9990 +6908 55339 0.4180 +6908 55578 0.6940 +6908 55588 0.8610 +6908 55636 0.4360 +6908 55677 0.4210 +6908 55689 0.5950 +6908 55703 0.8150 +6908 55705 0.5110 +6908 55718 0.7730 +6908 55766 0.5040 +6908 55780 0.4110 +6908 55810 0.4340 +6908 55814 0.9990 +6908 55832 0.7110 +6908 55869 0.4430 +6908 56943 0.7180 +6908 56970 0.5670 +6908 57332 0.4490 +6908 57459 0.4160 +6908 57469 0.4810 +6908 57504 0.4360 +6908 63876 0.4340 +6908 64425 0.6510 +6908 79004 0.7880 +6908 79101 0.9800 +6908 79577 0.4160 +6908 80306 0.8460 +6908 80351 0.4500 +6908 80854 0.4840 +6908 81857 0.8500 +6908 83860 0.9990 +6908 84172 0.8080 +6908 84232 0.6310 +6908 84246 0.9320 +6908 84265 0.7090 +6908 85236 0.5830 +6908 90390 0.8440 +6908 90506 0.4180 +6908 92345 0.4250 +6908 92552 0.4440 +6908 93624 0.4690 +6908 94239 0.5910 +6908 112495 0.5210 +6908 112869 0.5700 +6908 112950 0.9290 +6908 117143 0.6390 +6908 121278 0.4210 +6908 121504 0.8410 +6908 123169 0.4310 +6908 126961 0.8570 +6908 127002 0.5200 +6908 128312 0.5840 +6908 129685 0.9990 +6908 137682 0.4890 +6908 137902 0.5380 +6908 138474 0.9850 +6908 140690 0.5000 +6908 146802 0.5270 +6908 149345 0.4940 +6908 158880 0.4130 +6908 171568 0.8110 +6908 203068 0.5180 +6908 221830 0.6410 +6908 222255 0.5140 +6908 246721 0.4690 +6908 255626 0.5770 +6908 284119 0.5170 +6908 286749 0.7370 +6908 333932 0.8550 +6908 340390 0.4850 +6908 387332 0.9060 +6908 389856 0.4330 +6908 391742 0.7170 +6908 391746 0.7170 +6908 391747 0.7170 +6908 400569 0.8680 +6908 404672 0.9890 +6908 440093 0.8580 +6908 440686 0.8580 +6908 474382 0.5040 +6908 548644 0.4690 +6908 554313 0.8440 +6908 646066 0.7170 +6908 646103 0.7170 +6908 653604 0.9810 +6908 728340 0.5050 +6908 728378 0.8160 +6908 102723526 0.7220 +6908 112488736 0.7170 +6908 112488737 0.7170 +6908 112488738 0.7170 +6908 112488739 0.7170 +6908 112488740 0.7170 +6908 112488745 0.7170 +6908 112488746 0.7170 +6908 112488747 0.7170 +6909 6910 0.5130 +6909 7026 0.4100 +6909 7291 0.4540 +6909 8290 0.6560 +6909 8356 0.6550 +6909 8929 0.6350 +6909 9241 0.4530 +6909 9464 0.7580 +6909 9496 0.5290 +6909 10021 0.4290 +6909 10140 0.5430 +6909 23462 0.4110 +6909 23493 0.4250 +6909 25806 0.4150 +6909 25878 0.6010 +6909 50805 0.4030 +6909 54828 0.6380 +6909 57167 0.5840 +6909 93649 0.4400 +6909 140628 0.4010 +6909 440093 0.6640 +6909 440686 0.6610 +6909 653604 0.6610 +6910 6926 0.8120 +6910 6943 0.5190 +6910 7003 0.4740 +6910 7026 0.4520 +6910 7137 0.5760 +6910 7139 0.8190 +6910 7161 0.4290 +6910 7273 0.4220 +6910 7403 0.8480 +6910 7404 0.4880 +6910 7472 0.4500 +6910 7481 0.4410 +6910 7482 0.6330 +6910 7490 0.4080 +6910 7525 0.7560 +6910 7547 0.4290 +6910 8815 0.8070 +6910 8850 0.8250 +6910 8854 0.4950 +6910 9113 0.4220 +6910 9260 0.5590 +6910 9314 0.4940 +6910 9421 0.4350 +6910 9464 0.9010 +6910 9904 0.8480 +6910 10021 0.6990 +6910 10265 0.4190 +6910 10413 0.9880 +6910 23135 0.5000 +6910 23414 0.6800 +6910 23493 0.7070 +6910 25806 0.5750 +6910 25937 0.9690 +6910 27302 0.4920 +6910 50805 0.6500 +6910 51421 0.4930 +6910 55278 0.6260 +6910 55897 0.6420 +6910 57057 0.4990 +6910 57167 0.7860 +6910 58498 0.6590 +6910 64321 0.4450 +6910 78987 0.4740 +6910 79190 0.4500 +6910 79191 0.5010 +6910 79192 0.4890 +6910 79923 0.4850 +6910 79933 0.4270 +6910 83478 0.6020 +6910 83881 0.4140 +6910 83892 0.5500 +6910 84525 0.4170 +6910 84909 0.4710 +6910 89780 0.4340 +6910 93649 0.8120 +6910 140628 0.6220 +6910 145873 0.4760 +6910 150572 0.4160 +6910 100288687 0.4360 +6911 6939 0.5580 +6911 7473 0.4140 +6911 7484 0.4170 +6911 7545 0.6170 +6911 8448 0.4920 +6911 8479 0.4570 +6911 8538 0.4140 +6911 8646 0.4700 +6911 8850 0.4990 +6911 8854 0.4590 +6911 9344 0.6500 +6911 9378 0.4600 +6911 9791 0.4150 +6911 9794 0.5320 +6911 9878 0.4340 +6911 10046 0.5010 +6911 10423 0.4350 +6911 10683 0.4750 +6911 22938 0.5180 +6911 23475 0.4020 +6911 26470 0.4730 +6911 28514 0.8370 +6911 51176 0.6480 +6911 54806 0.4030 +6911 54916 0.4380 +6911 55534 0.5210 +6911 55897 0.5620 +6911 57167 0.5920 +6911 64321 0.5440 +6911 79923 0.4890 +6911 83719 0.4680 +6911 83881 0.6540 +6911 84107 0.4410 +6911 84441 0.5190 +6911 86614 0.4370 +6911 89780 0.8920 +6911 92129 0.6150 +6911 134701 0.7500 +6911 145873 0.9790 +6911 146378 0.4380 +6911 253980 0.5560 +6911 253982 0.5240 +6911 283897 0.4320 +6911 283899 0.4290 +6911 340260 0.5470 +6911 343930 0.9360 +6913 7090 0.6950 +6913 8092 0.4320 +6913 9096 0.4390 +6913 10352 0.7360 +6913 10885 0.4440 +6913 27287 0.4640 +6913 51450 0.4300 +6913 54796 0.5170 +6913 54834 0.4260 +6913 54873 0.4110 +6913 90134 0.4430 +6913 145873 0.4010 +6915 7042 0.4760 +6915 7047 0.4170 +6915 7051 0.5220 +6915 7052 0.4720 +6915 7204 0.4990 +6915 8766 0.5020 +6915 8997 0.5030 +6915 9138 0.5840 +6915 9630 0.7280 +6915 9737 0.4080 +6915 10174 0.5140 +6915 10197 0.4740 +6915 10399 0.5690 +6915 10549 0.4050 +6915 10672 0.9850 +6915 10681 0.5460 +6915 10800 0.7500 +6915 11251 0.6500 +6915 23236 0.5770 +6915 23322 0.4110 +6915 23365 0.5590 +6915 51206 0.5430 +6915 51764 0.5450 +6915 54331 0.6420 +6915 55970 0.5870 +6915 57105 0.7190 +6915 57731 0.4520 +6915 58531 0.4140 +6915 59345 0.5830 +6915 64805 0.5290 +6915 94235 0.5480 +6915 115557 0.5310 +6917 6919 0.4750 +6917 6921 0.5920 +6917 6923 0.5400 +6917 6924 0.7830 +6917 7026 0.4400 +6917 7247 0.4370 +6917 7469 0.5240 +6917 7507 0.8740 +6917 7515 0.4650 +6917 7936 0.6360 +6917 8178 0.9020 +6917 8290 0.4670 +6917 8294 0.8310 +6917 8329 0.8250 +6917 8330 0.8250 +6917 8332 0.8250 +6917 8334 0.8270 +6917 8335 0.8250 +6917 8336 0.8250 +6917 8349 0.4320 +6917 8356 0.4700 +6917 8359 0.8310 +6917 8360 0.8310 +6917 8361 0.8490 +6917 8362 0.8310 +6917 8363 0.8310 +6917 8364 0.8310 +6917 8366 0.8310 +6917 8367 0.8310 +6917 8368 0.8310 +6917 8370 0.8310 +6917 8451 0.4850 +6917 8467 0.4750 +6917 8539 0.5520 +6917 8812 0.6500 +6917 8850 0.5460 +6917 8969 0.8250 +6917 8970 0.8400 +6917 9150 0.9180 +6917 9282 0.6280 +6917 9318 0.5550 +6917 9338 0.7140 +6917 9400 0.4560 +6917 9412 0.5210 +6917 9440 0.6690 +6917 9441 0.4800 +6917 9443 0.5950 +6917 9533 0.7560 +6917 9646 0.9550 +6917 9656 0.5410 +6917 9739 0.5960 +6917 9810 0.4020 +6917 9879 0.5160 +6917 10001 0.6510 +6917 10291 0.4090 +6917 10434 0.4580 +6917 10614 0.4310 +6917 10621 0.5920 +6917 10622 0.4670 +6917 10623 0.5440 +6917 10849 0.7160 +6917 10919 0.4130 +6917 10923 0.4050 +6917 10992 0.4660 +6917 11083 0.4660 +6917 11128 0.5720 +6917 11198 0.8740 +6917 11201 0.8180 +6917 11338 0.4080 +6917 22803 0.5270 +6917 22916 0.6550 +6917 22936 0.4250 +6917 23064 0.4570 +6917 23097 0.6120 +6917 23168 0.9570 +6917 23450 0.4450 +6917 23469 0.5820 +6917 23476 0.4260 +6917 25885 0.5280 +6917 25920 0.6250 +6917 27125 0.8550 +6917 27297 0.4870 +6917 29072 0.4280 +6917 29079 0.4850 +6917 29105 0.4880 +6917 29113 0.4890 +6917 30834 0.7690 +6917 51003 0.6800 +6917 51082 0.8310 +6917 51224 0.8470 +6917 51366 0.5600 +6917 51497 0.5480 +6917 51574 0.4820 +6917 51585 0.6970 +6917 51616 0.9080 +6917 51728 0.9030 +6917 51755 0.6430 +6917 54457 0.5560 +6917 54623 0.9380 +6917 54700 0.5630 +6917 54797 0.4990 +6917 55215 0.5080 +6917 55677 0.9630 +6917 55703 0.4940 +6917 55718 0.5820 +6917 55814 0.4680 +6917 55840 0.8610 +6917 56254 0.4850 +6917 56949 0.8980 +6917 57092 0.4630 +6917 57455 0.7520 +6917 57654 0.4710 +6917 64425 0.6320 +6917 79145 0.7700 +6917 79577 0.9600 +6917 79612 0.5410 +6917 80349 0.9060 +6917 81488 0.6600 +6917 81669 0.4970 +6917 83860 0.9110 +6917 83879 0.4150 +6917 84172 0.5800 +6917 84232 0.4080 +6917 84246 0.4710 +6917 84337 0.5960 +6917 84901 0.5200 +6917 85403 0.8820 +6917 85456 0.4310 +6917 90853 0.5160 +6917 121504 0.8310 +6917 123169 0.9720 +6917 126961 0.8420 +6917 127428 0.4490 +6917 129685 0.9110 +6917 138474 0.5640 +6917 153527 0.4830 +6917 171568 0.4690 +6917 221830 0.7110 +6917 246721 0.6130 +6917 333932 0.8420 +6917 387332 0.6080 +6917 391742 0.5690 +6917 391746 0.5690 +6917 391747 0.5690 +6917 404672 0.9640 +6917 440093 0.4670 +6917 440686 0.4670 +6917 548644 0.6030 +6917 554313 0.8310 +6917 646066 0.5690 +6917 646103 0.5690 +6917 653604 0.8890 +6917 728340 0.4800 +6917 100134938 0.4120 +6917 102723526 0.5690 +6917 107983993 0.4120 +6917 112488736 0.5690 +6917 112488737 0.5690 +6917 112488738 0.5690 +6917 112488739 0.5690 +6917 112488740 0.5690 +6917 112488745 0.5690 +6917 112488746 0.5690 +6917 112488747 0.5690 +6919 6921 0.9050 +6919 6923 0.9050 +6919 6924 0.9680 +6919 7469 0.9380 +6919 7507 0.4030 +6919 7936 0.9280 +6919 8178 0.9510 +6919 8290 0.4540 +6919 8349 0.4220 +6919 8356 0.4540 +6919 8458 0.8020 +6919 8621 0.6650 +6919 8812 0.6830 +6919 8850 0.5560 +6919 9150 0.4800 +6919 9282 0.6190 +6919 9400 0.4830 +6919 9412 0.5010 +6919 9440 0.6220 +6919 9441 0.5950 +6919 9443 0.5900 +6919 9533 0.7550 +6919 9646 0.9600 +6919 9775 0.4450 +6919 9810 0.4070 +6919 9841 0.4060 +6919 10001 0.6440 +6919 10621 0.6010 +6919 10622 0.4740 +6919 10623 0.5530 +6919 10849 0.7100 +6919 10916 0.4130 +6919 11083 0.4910 +6919 11128 0.5740 +6919 11198 0.8780 +6919 11201 0.7360 +6919 22803 0.4840 +6919 22936 0.9370 +6919 23064 0.4340 +6919 23097 0.6040 +6919 23168 0.9700 +6919 23379 0.9120 +6919 23469 0.5880 +6919 25885 0.5030 +6919 25920 0.9240 +6919 26610 0.9010 +6919 26747 0.7290 +6919 27125 0.9240 +6919 27165 0.4060 +6919 27297 0.4920 +6919 29072 0.4390 +6919 29105 0.4650 +6919 29113 0.4890 +6919 30834 0.7660 +6919 51003 0.6890 +6919 51082 0.8120 +6919 51224 0.8100 +6919 51497 0.9090 +6919 51728 0.7230 +6919 51755 0.6670 +6919 54623 0.9390 +6919 54700 0.5560 +6919 54797 0.5130 +6919 55250 0.7460 +6919 55677 0.8140 +6919 55703 0.4890 +6919 55718 0.5910 +6919 55814 0.4880 +6919 55840 0.9400 +6919 56254 0.4790 +6919 56949 0.5010 +6919 57654 0.4690 +6919 64425 0.6090 +6919 79145 0.6550 +6919 79366 0.4490 +6919 79577 0.9690 +6919 79664 0.9120 +6919 79871 0.4010 +6919 80237 0.9210 +6919 80349 0.9360 +6919 81488 0.6200 +6919 81669 0.5060 +6919 83787 0.4490 +6919 84172 0.5660 +6919 84232 0.4380 +6919 84246 0.4760 +6919 84337 0.8170 +6919 84524 0.9060 +6919 85403 0.9400 +6919 85456 0.4300 +6919 89953 0.4410 +6919 123169 0.9810 +6919 171568 0.4760 +6919 221830 0.6900 +6919 246721 0.6030 +6919 387332 0.6120 +6919 389337 0.4200 +6919 404672 0.4920 +6919 440093 0.4540 +6919 440686 0.4540 +6919 548644 0.6030 +6919 653604 0.4540 +6919 100134938 0.4120 +6919 107983993 0.4120 +6920 6924 0.6940 +6920 8178 0.5350 +6920 8290 0.4500 +6920 8349 0.4130 +6920 8356 0.4500 +6920 8850 0.5470 +6920 9150 0.4760 +6920 9282 0.6120 +6920 9400 0.4780 +6920 9412 0.5000 +6920 9440 0.6180 +6920 9441 0.5670 +6920 9443 0.5820 +6920 9533 0.7540 +6920 9646 0.6020 +6920 9841 0.4050 +6920 10001 0.6420 +6920 10621 0.5980 +6920 10622 0.4700 +6920 10623 0.5470 +6920 10849 0.7020 +6920 11128 0.5720 +6920 11198 0.7350 +6920 11201 0.7280 +6920 22803 0.4780 +6920 23064 0.4110 +6920 23097 0.6040 +6920 23168 0.7190 +6920 23469 0.5990 +6920 25885 0.5030 +6920 27297 0.4870 +6920 29072 0.4200 +6920 29105 0.4520 +6920 29113 0.4890 +6920 30834 0.7640 +6920 51003 0.6850 +6920 51082 0.8110 +6920 51224 0.7060 +6920 51728 0.7190 +6920 54623 0.4230 +6920 54700 0.5510 +6920 54797 0.5040 +6920 55677 0.8030 +6920 55703 0.4880 +6920 55718 0.5870 +6920 55814 0.4720 +6920 56254 0.4650 +6920 56949 0.4860 +6920 57654 0.4550 +6920 64425 0.6040 +6920 79145 0.6560 +6920 79577 0.7050 +6920 79871 0.4480 +6920 81488 0.6160 +6920 81669 0.4850 +6920 84172 0.5630 +6920 84232 0.4160 +6920 84246 0.4730 +6920 84337 0.6330 +6920 85403 0.4010 +6920 85456 0.4330 +6920 90853 0.5320 +6920 123169 0.8670 +6920 171568 0.4740 +6920 221830 0.6880 +6920 246721 0.6050 +6920 387332 0.6100 +6920 404672 0.4840 +6920 440093 0.4500 +6920 440686 0.4500 +6920 548644 0.6030 +6920 653604 0.4500 +6920 100134938 0.4120 +6920 107983993 0.4120 +6921 6923 0.9990 +6921 6924 0.9990 +6921 7157 0.6080 +6921 7203 0.5070 +6921 7247 0.4300 +6921 7277 0.4320 +6921 7297 0.5860 +6921 7311 0.5900 +6921 7314 0.6240 +6921 7316 0.7920 +6921 7321 0.6860 +6921 7322 0.6480 +6921 7323 0.6610 +6921 7325 0.4690 +6921 7326 0.4570 +6921 7336 0.6320 +6921 7353 0.4600 +6921 7411 0.7050 +6921 7428 0.9990 +6921 7469 0.9020 +6921 7852 0.4030 +6921 7874 0.4960 +6921 7936 0.9050 +6921 7979 0.4510 +6921 8065 0.9990 +6921 8178 0.9060 +6921 8242 0.4120 +6921 8270 0.4580 +6921 8314 0.4620 +6921 8318 0.8260 +6921 8450 0.5910 +6921 8451 0.6130 +6921 8452 0.7790 +6921 8453 0.9990 +6921 8454 0.9830 +6921 8458 0.8420 +6921 8533 0.8360 +6921 8621 0.5430 +6921 8651 0.9890 +6921 8726 0.4100 +6921 8737 0.8160 +6921 8812 0.5570 +6921 8813 0.4010 +6921 8835 0.9990 +6921 8883 0.6740 +6921 8914 0.8220 +6921 8945 0.5240 +6921 8994 0.5400 +6921 9021 0.9730 +6921 9027 0.4070 +6921 9039 0.7370 +6921 9040 0.7270 +6921 9092 0.5680 +6921 9150 0.5050 +6921 9306 0.9860 +6921 9318 0.8320 +6921 9491 0.4010 +6921 9582 0.7010 +6921 9616 0.9990 +6921 9646 0.9320 +6921 9655 0.8400 +6921 9656 0.5260 +6921 9669 0.6360 +6921 9837 0.8040 +6921 9859 0.4800 +6921 9861 0.5150 +6921 9915 0.5630 +6921 9978 0.9990 +6921 10116 0.9240 +6921 10197 0.4770 +6921 10213 0.6700 +6921 10381 0.4260 +6921 10399 0.9750 +6921 10425 0.7450 +6921 10444 0.9430 +6921 10471 0.5180 +6921 10489 0.6650 +6921 10513 0.8130 +6921 10574 0.5020 +6921 10920 0.8390 +6921 10955 0.4140 +6921 10966 0.8930 +6921 10980 0.8950 +6921 10987 0.9600 +6921 11091 0.8220 +6921 11127 0.4090 +6921 11146 0.7510 +6921 11169 0.8270 +6921 11198 0.5430 +6921 22916 0.5770 +6921 22936 0.9030 +6921 22948 0.5450 +6921 23008 0.7420 +6921 23032 0.6240 +6921 23053 0.9020 +6921 23066 0.4100 +6921 23142 0.5860 +6921 23168 0.9050 +6921 23194 0.4120 +6921 23197 0.5530 +6921 23198 0.4160 +6921 23212 0.4220 +6921 23379 0.9000 +6921 23412 0.5210 +6921 23462 0.4670 +6921 23476 0.9210 +6921 23532 0.9010 +6921 23588 0.8620 +6921 25820 0.4090 +6921 25920 0.9050 +6921 26043 0.9080 +6921 26118 0.8590 +6921 26224 0.4190 +6921 26227 0.4480 +6921 26610 0.9010 +6921 26747 0.7260 +6921 27125 0.9050 +6921 27338 0.4130 +6921 27350 0.8060 +6921 28952 0.5100 +6921 28991 0.6070 +6921 28998 0.6530 +6921 29072 0.4560 +6921 29099 0.5630 +6921 29959 0.8130 +6921 30837 0.8210 +6921 51115 0.5050 +6921 51122 0.5310 +6921 51138 0.8650 +6921 51185 0.4820 +6921 51224 0.9970 +6921 51371 0.4490 +6921 51397 0.5970 +6921 51497 0.9040 +6921 51529 0.5300 +6921 51659 0.8030 +6921 51665 0.8500 +6921 51666 0.9230 +6921 51676 0.8650 +6921 51755 0.5590 +6921 54165 0.7650 +6921 54583 0.9200 +6921 54623 0.9010 +6921 54778 0.4200 +6921 54939 0.5120 +6921 54951 0.5560 +6921 54962 0.8390 +6921 54968 0.5870 +6921 55156 0.4610 +6921 55193 0.4810 +6921 55208 0.5520 +6921 55215 0.5090 +6921 55250 0.7370 +6921 55284 0.5580 +6921 55527 0.8110 +6921 55611 0.4430 +6921 55626 0.4040 +6921 55644 0.4250 +6921 55662 0.7310 +6921 55666 0.5450 +6921 55677 0.5110 +6921 55832 0.7780 +6921 55840 0.9050 +6921 55884 0.6490 +6921 56929 0.8070 +6921 56943 0.4010 +6921 56995 0.5200 +6921 57492 0.7210 +6921 57643 0.5730 +6921 57688 0.5730 +6921 57799 0.6980 +6921 59284 0.5120 +6921 60489 0.8940 +6921 63967 0.8200 +6921 64221 0.4990 +6921 64344 0.7330 +6921 64708 0.8380 +6921 64750 0.4670 +6921 64785 0.8130 +6921 65249 0.5730 +6921 65264 0.4190 +6921 79004 0.5800 +6921 79577 0.9160 +6921 79664 0.9000 +6921 79699 0.9410 +6921 79754 0.5950 +6921 79960 0.5240 +6921 80124 0.4010 +6921 80176 0.9550 +6921 80204 0.4270 +6921 80237 0.9020 +6921 80349 0.9280 +6921 84259 0.6260 +6921 84260 0.6860 +6921 84296 0.8340 +6921 84337 0.5830 +6921 84524 0.9000 +6921 84541 0.4620 +6921 84727 0.8920 +6921 84925 0.5250 +6921 84955 0.6440 +6921 84962 0.5060 +6921 85403 0.9090 +6921 90864 0.8060 +6921 92369 0.9700 +6921 92591 0.6090 +6921 112398 0.7260 +6921 112399 0.8860 +6921 112483 0.9060 +6921 112950 0.7780 +6921 116138 0.9060 +6921 122416 0.9510 +6921 122706 0.4300 +6921 122769 0.9890 +6921 122773 0.9060 +6921 122809 0.9950 +6921 123169 0.9210 +6921 126374 0.5110 +6921 127247 0.4850 +6921 133482 0.6950 +6921 136371 0.6090 +6921 140456 0.6480 +6921 140458 0.6690 +6921 140459 0.7710 +6921 140460 0.6770 +6921 140461 0.8780 +6921 140462 0.9980 +6921 140564 0.4650 +6921 140739 0.6880 +6921 140825 0.6210 +6921 142684 0.8420 +6921 142685 0.6240 +6921 142686 0.5960 +6921 142689 0.6780 +6921 143384 0.4310 +6921 143471 0.4120 +6921 149951 0.5290 +6921 150684 0.9550 +6921 164668 0.8290 +6921 170622 0.5890 +6921 196541 0.7510 +6921 200315 0.7130 +6921 200316 0.9130 +6921 282808 0.8240 +6921 391104 0.6140 +6921 401036 0.6040 +6921 404672 0.5760 +6921 440561 0.7450 +6921 440590 0.7690 +6921 653619 0.7450 +6921 100170841 0.5810 +6923 6924 0.9990 +6923 7157 0.5720 +6923 7158 0.4570 +6923 7203 0.6030 +6923 7251 0.4190 +6923 7297 0.5860 +6923 7311 0.7100 +6923 7314 0.6350 +6923 7316 0.6270 +6923 7317 0.4060 +6923 7321 0.6620 +6923 7322 0.6430 +6923 7323 0.5970 +6923 7335 0.4590 +6923 7411 0.5120 +6923 7428 0.9990 +6923 7469 0.9000 +6923 7874 0.4670 +6923 7936 0.9100 +6923 7979 0.4240 +6923 8065 0.9990 +6923 8178 0.9080 +6923 8270 0.4230 +6923 8318 0.8240 +6923 8450 0.5250 +6923 8451 0.7130 +6923 8452 0.6110 +6923 8453 0.9990 +6923 8454 0.9500 +6923 8458 0.7200 +6923 8533 0.8750 +6923 8621 0.5430 +6923 8651 0.9970 +6923 8737 0.8100 +6923 8812 0.5860 +6923 8835 0.9980 +6923 8883 0.6420 +6923 8914 0.8110 +6923 8994 0.5150 +6923 9021 0.9910 +6923 9039 0.6340 +6923 9040 0.7860 +6923 9150 0.5260 +6923 9306 0.9770 +6923 9318 0.8360 +6923 9491 0.4550 +6923 9582 0.7230 +6923 9616 0.9990 +6923 9646 0.9360 +6923 9655 0.8280 +6923 9656 0.5040 +6923 9669 0.4340 +6923 9730 0.4160 +6923 9837 0.8000 +6923 9861 0.5080 +6923 9915 0.5330 +6923 9978 0.9990 +6923 10116 0.9700 +6923 10197 0.4710 +6923 10213 0.8190 +6923 10299 0.6160 +6923 10399 0.7900 +6923 10425 0.8640 +6923 10444 0.9760 +6923 10489 0.7040 +6923 10513 0.9420 +6923 10920 0.8660 +6923 10930 0.4030 +6923 10956 0.6010 +6923 10966 0.8190 +6923 10980 0.8930 +6923 10987 0.8730 +6923 11091 0.8140 +6923 11146 0.7440 +6923 11169 0.8180 +6923 11198 0.5430 +6923 22916 0.5040 +6923 22936 0.9010 +6923 23008 0.9140 +6923 23032 0.7490 +6923 23053 0.9080 +6923 23142 0.5030 +6923 23168 0.9000 +6923 23198 0.5690 +6923 23379 0.9000 +6923 23412 0.5220 +6923 23462 0.7250 +6923 23476 0.9210 +6923 23524 0.4110 +6923 23532 0.9660 +6923 23588 0.9770 +6923 25820 0.5400 +6923 25920 0.9000 +6923 26043 0.8580 +6923 26118 0.8630 +6923 26227 0.4090 +6923 26610 0.9060 +6923 26747 0.7200 +6923 27125 0.9040 +6923 27338 0.4230 +6923 27350 0.8330 +6923 28952 0.5080 +6923 28991 0.5480 +6923 29085 0.4510 +6923 29099 0.5870 +6923 29959 0.7990 +6923 30837 0.7840 +6923 51009 0.5440 +6923 51079 0.4230 +6923 51122 0.5080 +6923 51138 0.8800 +6923 51224 0.9870 +6923 51397 0.5970 +6923 51439 0.5400 +6923 51497 0.9000 +6923 51529 0.6610 +6923 51633 0.4660 +6923 51659 0.8010 +6923 51665 0.8880 +6923 51666 0.9440 +6923 51676 0.8250 +6923 51755 0.5460 +6923 54165 0.6440 +6923 54539 0.4110 +6923 54583 0.8430 +6923 54623 0.9010 +6923 54939 0.5350 +6923 54951 0.5210 +6923 54962 0.8130 +6923 55208 0.6350 +6923 55215 0.5000 +6923 55250 0.7290 +6923 55251 0.4860 +6923 55293 0.4240 +6923 55527 0.9320 +6923 55626 0.7370 +6923 55662 0.6110 +6923 55677 0.5080 +6923 55832 0.8550 +6923 55840 0.9010 +6923 55884 0.6950 +6923 56929 0.9300 +6923 56995 0.5760 +6923 57414 0.5420 +6923 57492 0.4540 +6923 57643 0.5640 +6923 57688 0.5910 +6923 57799 0.8630 +6923 59286 0.4160 +6923 60489 0.9380 +6923 63967 0.8200 +6923 64221 0.5130 +6923 64344 0.7530 +6923 64422 0.5720 +6923 64708 0.8580 +6923 64785 0.8170 +6923 64975 0.4220 +6923 65249 0.5910 +6923 79139 0.5500 +6923 79577 0.9360 +6923 79664 0.9000 +6923 79699 0.9750 +6923 79754 0.6880 +6923 80176 0.8560 +6923 80237 0.9010 +6923 80349 0.9280 +6923 84259 0.5210 +6923 84260 0.5960 +6923 84296 0.8300 +6923 84337 0.6420 +6923 84447 0.5450 +6923 84458 0.4460 +6923 84524 0.9000 +6923 84727 0.7840 +6923 84925 0.5490 +6923 84962 0.5060 +6923 85403 0.9000 +6923 90864 0.7130 +6923 91319 0.5420 +6923 92369 0.7950 +6923 92591 0.5670 +6923 112398 0.6910 +6923 112399 0.8840 +6923 112483 0.6000 +6923 112950 0.8190 +6923 116138 0.9730 +6923 122416 0.9490 +6923 122706 0.4320 +6923 122769 0.9840 +6923 122773 0.9220 +6923 122809 0.9900 +6923 123169 0.9210 +6923 126374 0.5010 +6923 127247 0.6170 +6923 133482 0.5980 +6923 136371 0.5800 +6923 140456 0.6670 +6923 140458 0.6610 +6923 140459 0.7940 +6923 140460 0.7200 +6923 140461 0.8380 +6923 140462 0.9960 +6923 140564 0.5720 +6923 140739 0.7360 +6923 140823 0.6220 +6923 140825 0.6550 +6923 142684 0.4470 +6923 142685 0.6210 +6923 142686 0.5820 +6923 142689 0.6790 +6923 144108 0.4130 +6923 149951 0.5200 +6923 150684 0.9290 +6923 164668 0.8570 +6923 170622 0.5500 +6923 200315 0.7520 +6923 200316 0.9270 +6923 401036 0.5850 +6923 404672 0.5020 +6923 440561 0.9000 +6923 440590 0.6660 +6923 653619 0.9000 +6923 100170841 0.7780 +6924 7428 0.7840 +6924 7469 0.9050 +6924 7936 0.9200 +6924 8065 0.9340 +6924 8178 0.9310 +6924 8453 0.6370 +6924 8458 0.7230 +6924 8621 0.5520 +6924 8651 0.4830 +6924 8812 0.6340 +6924 9129 0.4970 +6924 9150 0.6970 +6924 9180 0.4430 +6924 9349 0.5540 +6924 9441 0.7250 +6924 9616 0.5210 +6924 9646 0.9770 +6924 9656 0.5220 +6924 9978 0.5040 +6924 10450 0.5300 +6924 10489 0.6030 +6924 11128 0.4330 +6924 11198 0.7220 +6924 11222 0.4190 +6924 11224 0.5340 +6924 22916 0.5210 +6924 22936 0.9140 +6924 23168 0.9170 +6924 23379 0.9140 +6924 23521 0.4630 +6924 25920 0.9140 +6924 26610 0.9040 +6924 26747 0.7250 +6924 27125 0.9360 +6924 28998 0.4160 +6924 29088 0.4270 +6924 29093 0.4170 +6924 29928 0.4340 +6924 51073 0.4040 +6924 51224 0.5500 +6924 51497 0.9010 +6924 51755 0.6340 +6924 54623 0.9270 +6924 55215 0.5340 +6924 55250 0.7240 +6924 55662 0.4700 +6924 55677 0.7120 +6924 55840 0.9250 +6924 57095 0.4010 +6924 57455 0.9580 +6924 57654 0.4460 +6924 79577 0.9450 +6924 79664 0.9140 +6924 80237 0.9070 +6924 80349 0.9520 +6924 81844 0.4080 +6924 84337 0.5460 +6924 84524 0.9010 +6924 84925 0.4260 +6924 85403 0.9270 +6924 123169 0.9840 +6924 140801 0.4310 +6924 200916 0.4580 +6924 285782 0.4660 +6924 285855 0.4430 +6924 387129 0.4060 +6924 404672 0.5340 +6924 100170841 0.6350 +6924 100526842 0.4390 +6925 6929 0.9090 +6925 6932 0.6490 +6925 6934 0.8520 +6925 6938 0.9920 +6925 6939 0.6550 +6925 6943 0.5830 +6925 7070 0.4520 +6925 7088 0.9370 +6925 7090 0.9300 +6925 7091 0.9090 +6925 7157 0.6540 +6925 7291 0.8920 +6925 7329 0.5640 +6925 8554 0.4620 +6925 8842 0.5440 +6925 8861 0.9120 +6925 9242 0.6950 +6925 9314 0.7020 +6925 9328 0.4400 +6925 9464 0.7340 +6925 9839 0.4820 +6925 10763 0.6780 +6925 11133 0.4320 +6925 23043 0.4390 +6925 23199 0.4600 +6925 23316 0.4610 +6925 25932 0.4150 +6925 50674 0.7440 +6925 51176 0.8690 +6925 51284 0.5220 +6925 51588 0.6520 +6925 51592 0.4370 +6925 51637 0.5220 +6925 51806 0.4680 +6925 53335 0.6440 +6925 54084 0.4260 +6925 55197 0.4620 +6925 55509 0.5810 +6925 56676 0.7370 +6925 57761 0.6870 +6925 65258 0.4160 +6925 79727 0.5080 +6925 79923 0.8040 +6925 80323 0.4190 +6925 83439 0.6470 +6925 83959 0.7550 +6925 84174 0.4160 +6925 84181 0.6010 +6925 89884 0.5220 +6925 90780 0.9050 +6925 91752 0.4390 +6925 91860 0.4680 +6925 112869 0.4380 +6925 116448 0.4680 +6925 117581 0.7340 +6925 124790 0.5170 +6925 125336 0.4200 +6925 140685 0.4500 +6925 144577 0.4480 +6925 144717 0.4680 +6925 145873 0.8220 +6925 150921 0.6120 +6925 154664 0.4220 +6925 163688 0.4680 +6925 170482 0.4770 +6925 171558 0.4750 +6925 220202 0.5160 +6925 222894 0.8220 +6925 256297 0.6340 +6925 283149 0.9350 +6925 343930 0.6590 +6925 344018 0.5710 +6925 100129654 0.6840 +6925 100133941 0.4100 +6925 100271849 0.5250 +6926 6950 0.4170 +6926 7022 0.4300 +6926 7026 0.4060 +6926 7044 0.4140 +6926 7139 0.4050 +6926 7157 0.4150 +6926 7291 0.4180 +6926 7473 0.4180 +6926 7474 0.4360 +6926 7481 0.4080 +6926 7514 0.4140 +6926 7543 0.4440 +6926 7547 0.4090 +6926 8115 0.5120 +6926 8313 0.4070 +6926 8433 0.4740 +6926 8609 0.5030 +6926 8817 0.5590 +6926 8822 0.5620 +6926 8823 0.5530 +6926 8842 0.4550 +6926 9241 0.5430 +6926 9314 0.8780 +6926 9464 0.5430 +6926 9584 0.7450 +6926 9623 0.5400 +6926 9904 0.8700 +6926 10021 0.7210 +6926 10052 0.4810 +6926 10365 0.5490 +6926 10637 0.4190 +6926 23135 0.5320 +6926 26281 0.5530 +6926 27006 0.5510 +6926 29842 0.6530 +6926 50805 0.4160 +6926 51176 0.6480 +6926 55211 0.4120 +6926 57167 0.8290 +6926 63978 0.5870 +6926 64321 0.5470 +6926 79190 0.4210 +6926 79191 0.4590 +6926 79727 0.5630 +6926 79923 0.8820 +6926 79933 0.5900 +6926 83881 0.4660 +6926 89780 0.4390 +6926 125111 0.4480 +6926 128209 0.4220 +6926 132625 0.6020 +6926 201456 0.5690 +6926 201516 0.4290 +6926 359787 0.5280 +6927 6928 0.9610 +6927 6934 0.5870 +6927 7025 0.6470 +6927 7026 0.5520 +6927 7104 0.4120 +6927 7157 0.4310 +6927 7276 0.6070 +6927 7351 0.5120 +6927 7363 0.5150 +6927 7364 0.7410 +6927 7369 0.5340 +6927 7391 0.5890 +6927 7466 0.4740 +6927 7534 0.5690 +6927 7541 0.5480 +6927 7779 0.4820 +6927 8431 0.6280 +6927 8462 0.7400 +6927 8576 0.4550 +6927 8647 0.4190 +6927 8820 0.4200 +6927 8850 0.4720 +6927 8856 0.5300 +6927 9075 0.4770 +6927 9149 0.8230 +6927 9774 0.4020 +6927 9966 0.4510 +6927 9970 0.4470 +6927 9971 0.6560 +6927 10062 0.4090 +6927 10116 0.4330 +6927 10379 0.4570 +6927 10745 0.7910 +6927 10891 0.5880 +6927 11132 0.5100 +6927 11317 0.5490 +6927 11335 0.5620 +6927 23394 0.4890 +6927 23411 0.5440 +6927 26060 0.4160 +6927 29974 0.4740 +6927 50674 0.7320 +6927 51085 0.6030 +6927 51806 0.4910 +6927 55937 0.4480 +6927 57393 0.4120 +6927 57818 0.4190 +6927 64240 0.4060 +6927 64241 0.4140 +6927 84105 0.9440 +6927 84504 0.7320 +6927 91860 0.4910 +6927 140628 0.7310 +6927 163688 0.4910 +6927 169026 0.4570 +6927 169792 0.4210 +6927 222546 0.4760 +6927 255738 0.5590 +6927 256297 0.8010 +6928 6934 0.4650 +6928 7026 0.6590 +6928 7103 0.5920 +6928 7157 0.6300 +6928 7369 0.8050 +6928 7466 0.5060 +6928 7484 0.4140 +6928 7490 0.4460 +6928 7849 0.6970 +6928 8289 0.4750 +6928 8433 0.4080 +6928 8462 0.5880 +6928 8872 0.4800 +6928 8895 0.4240 +6928 9125 0.5900 +6928 9476 0.7100 +6928 10644 0.5960 +6928 11132 0.4810 +6928 22853 0.4740 +6928 23301 0.4630 +6928 23600 0.5410 +6928 27232 0.4090 +6928 50674 0.7140 +6928 54361 0.5880 +6928 54474 0.4640 +6928 54901 0.7060 +6928 57016 0.4090 +6928 57472 0.4930 +6928 64321 0.6440 +6928 64759 0.4090 +6928 79068 0.5630 +6928 84105 0.6410 +6928 84504 0.5120 +6928 121340 0.4520 +6928 169026 0.6510 +6928 169792 0.4600 +6928 221895 0.6720 +6928 256297 0.8910 +6929 6932 0.4860 +6929 6938 0.7640 +6929 6939 0.5740 +6929 6943 0.5900 +6929 7008 0.4880 +6929 7088 0.5850 +6929 7089 0.5320 +6929 7157 0.4880 +6929 7291 0.8970 +6929 7329 0.4380 +6929 7391 0.6860 +6929 7392 0.5210 +6929 7441 0.6070 +6929 7474 0.4250 +6929 7482 0.4070 +6929 7528 0.5910 +6929 7704 0.4090 +6929 8028 0.4260 +6929 8406 0.4890 +6929 8553 0.6510 +6929 8815 0.4670 +6929 8850 0.5940 +6929 8861 0.9970 +6929 8928 0.4650 +6929 8930 0.5520 +6929 9031 0.4730 +6929 9043 0.5150 +6929 9079 0.9920 +6929 9139 0.6040 +6929 9242 0.7140 +6929 9421 0.6130 +6929 9464 0.8460 +6929 10215 0.6340 +6929 10320 0.7080 +6929 10538 0.4220 +6929 10661 0.6470 +6929 10664 0.4670 +6929 22806 0.6310 +6929 23028 0.4770 +6929 23186 0.4210 +6929 26191 0.4070 +6929 26266 0.4240 +6929 27286 0.7060 +6929 29760 0.4180 +6929 29844 0.8230 +6929 50674 0.6680 +6929 50937 0.6990 +6929 50943 0.4500 +6929 51043 0.4290 +6929 51176 0.4590 +6929 53335 0.4430 +6929 54790 0.7280 +6929 55278 0.5580 +6929 55695 0.4620 +6929 56676 0.7310 +6929 56852 0.4250 +6929 56899 0.4590 +6929 57379 0.5060 +6929 57593 0.5480 +6929 64641 0.4350 +6929 64919 0.4490 +6929 65078 0.4110 +6929 79816 0.6650 +6929 83439 0.6090 +6929 91653 0.5000 +6929 116448 0.4240 +6929 117581 0.8720 +6929 128209 0.4390 +6929 128408 0.6800 +6929 140836 0.4010 +6929 145873 0.8200 +6929 150921 0.5350 +6929 161882 0.6190 +6929 167826 0.5810 +6929 168620 0.4600 +6929 171017 0.6380 +6929 171558 0.4780 +6929 220202 0.5760 +6929 222894 0.6960 +6929 253738 0.5070 +6929 256297 0.5170 +6929 343930 0.4900 +6929 359948 0.5610 +6929 642658 0.4080 +6929 653145 0.6510 +6929 100129654 0.4290 +6929 100271849 0.6310 +6929 100423062 0.4870 +6929 102723407 0.7310 +6932 6934 0.9430 +6932 7003 0.8360 +6932 7004 0.8200 +6932 7005 0.8220 +6932 7015 0.9150 +6932 7049 0.4330 +6932 7088 0.7500 +6932 7089 0.7320 +6932 7090 0.7430 +6932 7091 0.8160 +6932 7124 0.4310 +6932 7157 0.6080 +6932 7471 0.6370 +6932 7472 0.5300 +6932 7473 0.4440 +6932 7474 0.5110 +6932 7475 0.4840 +6932 7476 0.4720 +6932 7477 0.4330 +6932 7480 0.4830 +6932 7481 0.4180 +6932 7482 0.5150 +6932 7483 0.6030 +6932 7535 0.6270 +6932 7704 0.5030 +6932 8085 0.5050 +6932 8290 0.6210 +6932 8295 0.5350 +6932 8312 0.9740 +6932 8313 0.9830 +6932 8320 0.8540 +6932 8321 0.4220 +6932 8322 0.4210 +6932 8324 0.4210 +6932 8325 0.4080 +6932 8331 0.4990 +6932 8334 0.4990 +6932 8337 0.5180 +6932 8338 0.5180 +6932 8340 0.5030 +6932 8341 0.5030 +6932 8342 0.5060 +6932 8345 0.4990 +6932 8347 0.4990 +6932 8348 0.5000 +6932 8349 0.5500 +6932 8356 0.6200 +6932 8361 0.5260 +6932 8463 0.8140 +6932 8549 0.4010 +6932 8607 0.9050 +6932 8861 0.5840 +6932 8945 0.6550 +6932 8970 0.5180 +6932 9034 0.4090 +6932 9070 0.4990 +6932 9241 0.4670 +6932 9328 0.5510 +6932 9329 0.5450 +6932 9580 0.7300 +6932 9760 0.4370 +6932 9802 0.5770 +6932 9840 0.4570 +6932 10219 0.6410 +6932 10297 0.9540 +6932 10320 0.6660 +6932 10365 0.5260 +6932 10413 0.8430 +6932 10524 0.4990 +6932 10538 0.5860 +6932 10578 0.4310 +6932 10663 0.4230 +6932 10962 0.6470 +6932 11126 0.4230 +6932 22807 0.4790 +6932 22887 0.4050 +6932 22943 0.4850 +6932 26108 0.5970 +6932 29851 0.5810 +6932 30009 0.7130 +6932 50852 0.5080 +6932 50943 0.5140 +6932 51043 0.4290 +6932 51176 0.8510 +6932 51377 0.5470 +6932 51384 0.5290 +6932 51701 0.9550 +6932 51744 0.4100 +6932 54145 0.5440 +6932 54361 0.4540 +6932 55278 0.5370 +6932 55766 0.4990 +6932 60468 0.6570 +6932 64321 0.9160 +6932 64919 0.7480 +6932 79577 0.5020 +6932 79923 0.6100 +6932 80326 0.4670 +6932 81545 0.4750 +6932 83439 0.9440 +6932 84868 0.5880 +6932 84969 0.5070 +6932 85236 0.5440 +6932 85407 0.4370 +6932 89780 0.7680 +6932 90780 0.5710 +6932 94239 0.4990 +6932 112495 0.5860 +6932 114836 0.5180 +6932 121340 0.6780 +6932 123169 0.5200 +6932 128312 0.5000 +6932 171558 0.4570 +6932 201633 0.5830 +6932 255626 0.4990 +6932 257101 0.4550 +6932 283149 0.7220 +6932 344022 0.4400 +6932 387332 0.4990 +6932 474382 0.5400 +6932 653604 0.6210 +6934 7003 0.8570 +6934 7004 0.8450 +6934 7005 0.8390 +6934 7015 0.9190 +6934 7046 0.4570 +6934 7050 0.4660 +6934 7088 0.8520 +6934 7089 0.6800 +6934 7090 0.8830 +6934 7091 0.9090 +6934 7103 0.5440 +6934 7157 0.6600 +6934 7291 0.5340 +6934 7466 0.6700 +6934 7471 0.5120 +6934 7472 0.4290 +6934 7473 0.4310 +6934 7474 0.5130 +6934 7476 0.4130 +6934 7477 0.4120 +6934 7480 0.6130 +6934 7481 0.4130 +6934 7482 0.4230 +6934 7520 0.4530 +6934 7528 0.5910 +6934 7546 0.5660 +6934 7975 0.4200 +6934 8085 0.5610 +6934 8216 0.4140 +6934 8290 0.6350 +6934 8295 0.5880 +6934 8312 0.9120 +6934 8313 0.9120 +6934 8321 0.4180 +6934 8325 0.4070 +6934 8331 0.4990 +6934 8334 0.5300 +6934 8337 0.5330 +6934 8338 0.5320 +6934 8340 0.4990 +6934 8341 0.4990 +6934 8342 0.4990 +6934 8345 0.4990 +6934 8347 0.4990 +6934 8348 0.4990 +6934 8349 0.5430 +6934 8356 0.6340 +6934 8361 0.6550 +6934 8454 0.4410 +6934 8463 0.8430 +6934 8549 0.6270 +6934 8607 0.9050 +6934 8861 0.7570 +6934 8872 0.6590 +6934 8945 0.6740 +6934 8970 0.4990 +6934 9070 0.4990 +6934 9370 0.4470 +6934 9580 0.5190 +6934 10009 0.6700 +6934 10215 0.6390 +6934 10297 0.7170 +6934 10363 0.4060 +6934 10413 0.9110 +6934 10524 0.5080 +6934 10642 0.4040 +6934 10644 0.7370 +6934 10664 0.4480 +6934 10927 0.4150 +6934 10979 0.5020 +6934 11007 0.4500 +6934 11132 0.6640 +6934 22827 0.4170 +6934 22848 0.4230 +6934 22943 0.4800 +6934 23043 0.4970 +6934 26035 0.5360 +6934 26108 0.5650 +6934 27063 0.4400 +6934 27287 0.7180 +6934 51176 0.7910 +6934 51701 0.9820 +6934 53335 0.4260 +6934 54145 0.4990 +6934 54361 0.4540 +6934 54715 0.4260 +6934 54894 0.7110 +6934 54898 0.4570 +6934 54901 0.8840 +6934 55294 0.4010 +6934 55766 0.4990 +6934 56998 0.4830 +6934 56999 0.5690 +6934 57118 0.5810 +6934 57634 0.4180 +6934 57818 0.4460 +6934 60529 0.4910 +6934 64321 0.9180 +6934 79068 0.7680 +6934 79577 0.6410 +6934 79718 0.4600 +6934 80319 0.5670 +6934 80320 0.4780 +6934 81029 0.4680 +6934 83439 0.9620 +6934 84107 0.4070 +6934 84327 0.4190 +6934 84870 0.4140 +6934 85236 0.4990 +6934 89780 0.7060 +6934 89866 0.4450 +6934 90780 0.7350 +6934 94239 0.4990 +6934 116448 0.4250 +6934 116985 0.5120 +6934 123169 0.5260 +6934 127018 0.4110 +6934 128312 0.4990 +6934 136259 0.5340 +6934 139285 0.4800 +6934 140733 0.4090 +6934 143187 0.5470 +6934 145741 0.5400 +6934 169026 0.8900 +6934 169792 0.5490 +6934 196528 0.4090 +6934 221895 0.6660 +6934 255626 0.4990 +6934 255877 0.4240 +6934 283149 0.8040 +6934 388125 0.5430 +6934 392636 0.4550 +6934 474382 0.4990 +6934 653604 0.6350 +6936 7307 0.5070 +6936 7919 0.5070 +6936 8241 0.6140 +6936 8559 0.5090 +6936 8683 0.5150 +6936 9130 0.5000 +6936 9208 0.8470 +6936 9295 0.5360 +6936 9360 0.5230 +6936 9416 0.7860 +6936 9775 0.6020 +6936 9785 0.5150 +6936 9801 0.7850 +6936 9856 0.7800 +6936 9914 0.5770 +6936 9939 0.8130 +6936 10189 0.5040 +6936 10236 0.5190 +6936 10250 0.5130 +6936 10284 0.5040 +6936 10569 0.5620 +6936 10594 0.8130 +6936 10772 0.5110 +6936 10921 0.5100 +6936 10929 0.5350 +6936 11243 0.4340 +6936 11338 0.5060 +6936 22794 0.4990 +6936 22916 0.5200 +6936 22985 0.5200 +6936 23020 0.7770 +6936 23181 0.4340 +6936 23398 0.5320 +6936 23517 0.6000 +6936 23524 0.5080 +6936 23759 0.5070 +6936 24144 0.9780 +6936 24148 0.7800 +6936 25936 0.4290 +6936 25949 0.9220 +6936 26017 0.4990 +6936 26047 0.4470 +6936 27316 0.5050 +6936 27339 0.4240 +6936 50804 0.5470 +6936 51340 0.5730 +6936 51362 0.8290 +6936 51428 0.5470 +6936 51473 0.7660 +6936 51593 0.5390 +6936 51645 0.8610 +6936 51759 0.5060 +6936 53938 0.5170 +6936 55110 0.5100 +6936 55280 0.6190 +6936 55856 0.4470 +6936 56949 0.5760 +6936 57082 0.6890 +6936 57461 0.6760 +6936 57703 0.5340 +6936 58509 0.5340 +6936 63932 0.5110 +6936 65109 0.5160 +6936 79165 0.4990 +6936 79576 0.5090 +6936 79706 0.4990 +6936 79932 0.5830 +6936 80790 0.5730 +6936 81576 0.6770 +6936 84141 0.4680 +6936 85313 0.5210 +6936 135295 0.4990 +6936 143884 0.8030 +6936 151903 0.5430 +6936 161582 0.7730 +6936 163859 0.5130 +6936 199746 0.4990 +6936 220988 0.5130 +6936 100527963 0.4240 +6936 100534599 0.5430 +6938 6943 0.8820 +6938 7026 0.4670 +6938 7158 0.4560 +6938 7182 0.4960 +6938 7291 0.9000 +6938 7391 0.5400 +6938 7392 0.4420 +6938 7425 0.5020 +6938 7528 0.4490 +6938 7704 0.5050 +6938 8013 0.8260 +6938 8148 0.8420 +6938 8835 0.4610 +6938 8861 0.9640 +6938 9079 0.6620 +6938 9242 0.4440 +6938 9464 0.6510 +6938 9611 0.4180 +6938 9839 0.4800 +6938 9869 0.4210 +6938 10365 0.4460 +6938 10524 0.4240 +6938 10664 0.4380 +6938 10979 0.5900 +6938 11317 0.5900 +6938 23384 0.4480 +6938 23462 0.5370 +6938 50674 0.6880 +6938 53335 0.4510 +6938 54751 0.4110 +6938 55023 0.4460 +6938 55612 0.5490 +6938 55898 0.4290 +6938 56676 0.5890 +6938 60468 0.4550 +6938 80144 0.5650 +6938 83706 0.5670 +6938 116448 0.5070 +6938 117581 0.7470 +6938 121549 0.6650 +6938 124790 0.6050 +6938 145873 0.8050 +6938 150921 0.6930 +6938 167826 0.5520 +6938 220202 0.4830 +6938 222894 0.8440 +6938 256297 0.5990 +6938 341640 0.5880 +6938 343930 0.5510 +6938 344018 0.4020 +6938 389177 0.4500 +6938 100271849 0.5350 +6939 7884 0.4530 +6939 9032 0.4510 +6939 9480 0.5150 +6939 10403 0.4480 +6939 23759 0.4200 +6939 27328 0.4390 +6939 28514 0.5970 +6939 59336 0.4260 +6939 64072 0.4320 +6939 65217 0.4880 +6939 79190 0.4140 +6939 79191 0.4140 +6939 83881 0.5220 +6939 93986 0.4330 +6939 94234 0.5640 +6939 147991 0.4130 +6939 158586 0.4400 +6939 283078 0.7960 +6939 343930 0.4530 +6939 388585 0.5570 +6939 390874 0.5970 +6940 9204 0.5220 +6940 9310 0.4730 +6940 10155 0.8350 +6940 10474 0.4430 +6940 10520 0.4890 +6940 10776 0.4230 +6940 27291 0.4420 +6940 27314 0.4230 +6940 55929 0.4230 +6940 56829 0.4200 +6940 57685 0.4610 +6940 79077 0.4840 +6940 83852 0.4610 +6940 123920 0.4330 +6940 132660 0.5890 +6940 152185 0.5000 +6940 203523 0.4500 +6940 256364 0.5340 +6940 337867 0.4380 +6940 373509 0.7000 +6940 100288801 0.7000 +6941 7153 0.5020 +6941 7332 0.5400 +6941 7726 0.4610 +6941 9055 0.4210 +6941 9093 0.4590 +6941 9212 0.5140 +6941 9219 0.4590 +6941 9768 0.4230 +6941 9787 0.4250 +6941 10112 0.5270 +6941 10419 0.7060 +6941 10615 0.5170 +6941 10919 0.5700 +6941 11004 0.5060 +6941 11270 0.5390 +6941 29113 0.5790 +6941 29128 0.5530 +6941 53615 0.4860 +6941 54535 0.7990 +6941 55143 0.6530 +6941 55174 0.5560 +6941 55355 0.4600 +6941 55591 0.4010 +6941 55723 0.5360 +6941 57459 0.4610 +6941 57504 0.5400 +6941 79733 0.4920 +6941 79968 0.4210 +6941 80352 0.5600 +6941 83461 0.6130 +6941 126295 0.4590 +6941 170679 0.5940 +6941 170680 0.5070 +6941 195828 0.4860 +6941 203068 0.4130 +6941 221472 0.4940 +6941 221545 0.4700 +6941 394263 0.4510 +6941 100507679 0.4760 +6942 7067 0.4630 +6942 7294 0.4710 +6942 8099 0.4440 +6942 8338 0.4070 +6942 8349 0.5210 +6942 8361 0.5990 +6942 8726 0.4170 +6942 9219 0.4450 +6942 9370 0.4440 +6942 9620 0.4060 +6942 9656 0.4580 +6942 9678 0.5810 +6942 9967 0.5190 +6942 9991 0.4580 +6942 10363 0.6110 +6942 10743 0.6080 +6942 10847 0.5540 +6942 11083 0.4570 +6942 23036 0.5190 +6942 23476 0.4370 +6942 23506 0.5060 +6942 23512 0.4270 +6942 23774 0.5190 +6942 25942 0.5400 +6942 27250 0.4120 +6942 54815 0.6140 +6942 57459 0.6390 +6942 57504 0.4390 +6942 80209 0.4550 +6942 84678 0.4600 +6942 93099 0.4030 +6942 205717 0.4490 +6942 254048 0.4500 +6942 255626 0.4730 +6943 7139 0.4260 +6943 7490 0.7480 +6943 7545 0.4030 +6943 8646 0.5050 +6943 8829 0.4500 +6943 8854 0.5900 +6943 9096 0.7680 +6943 9519 0.5990 +6943 9935 0.4990 +6943 10631 0.6830 +6943 54584 0.5480 +6943 57057 0.4210 +6943 58498 0.5740 +6943 84439 0.4180 +6943 93649 0.4550 +6943 140628 0.4910 +6943 223117 0.5470 +6943 105375355 0.4800 +6944 7528 0.4520 +6944 7531 0.4430 +6944 8089 0.9980 +6944 8125 0.6930 +6944 8295 0.9960 +6944 8329 0.4480 +6944 8331 0.4480 +6944 8334 0.4490 +6944 8337 0.7030 +6944 8338 0.7040 +6944 8339 0.4550 +6944 8349 0.7180 +6944 8361 0.6560 +6944 8402 0.4040 +6944 8467 0.4920 +6944 8473 0.7200 +6944 8480 0.4970 +6944 8607 0.9990 +6944 8970 0.9150 +6944 10428 0.9800 +6944 10445 0.7670 +6944 10467 0.9930 +6944 10524 0.9960 +6944 10541 0.6270 +6944 10761 0.7420 +6944 10847 0.9970 +6944 10856 0.9980 +6944 10902 0.9870 +6944 10933 0.9910 +6944 10943 0.8040 +6944 11091 0.7650 +6944 22924 0.5440 +6944 22938 0.4040 +6944 23355 0.4040 +6944 26122 0.9260 +6944 29072 0.4600 +6944 29844 0.4560 +6944 51003 0.5410 +6944 51031 0.5500 +6944 51105 0.5420 +6944 51230 0.8120 +6944 51412 0.8530 +6944 51742 0.4250 +6944 54556 0.9640 +6944 54617 0.4810 +6944 54799 0.8270 +6944 54934 0.7220 +6944 55125 0.4870 +6944 55167 0.7200 +6944 55257 0.9910 +6944 55683 0.7480 +6944 55689 0.6800 +6944 55929 0.9990 +6944 57019 0.4380 +6944 57634 0.9880 +6944 64431 0.8880 +6944 64769 0.9810 +6944 79577 0.5620 +6944 80129 0.6130 +6944 80314 0.9440 +6944 81611 0.9120 +6944 84148 0.7760 +6944 84289 0.4770 +6944 84901 0.4050 +6944 85235 0.4480 +6944 92815 0.4490 +6944 93973 0.4260 +6944 94239 0.8240 +6944 123169 0.4410 +6944 125476 0.6400 +6944 139628 0.7960 +6944 150465 0.4180 +6944 151050 0.5400 +6944 221613 0.4480 +6944 221895 0.5680 +6944 255626 0.6670 +6944 283150 0.8170 +6944 283899 0.5100 +6944 284058 0.7410 +6944 317772 0.4520 +6944 339287 0.7540 +6944 345651 0.6670 +6945 7099 0.4210 +6945 7514 0.5570 +6945 8473 0.9000 +6945 10342 0.7850 +6945 10608 0.9580 +6945 11345 0.4560 +6945 22877 0.9890 +6945 23269 0.5640 +6945 25942 0.5050 +6945 27131 0.4300 +6945 51006 0.4700 +6945 51085 0.9910 +6945 51176 0.4180 +6945 54606 0.5310 +6945 60490 0.4240 +6945 60491 0.7750 +6945 79717 0.4150 +6945 80320 0.4320 +6945 80347 0.8090 +6945 133522 0.9000 +6945 168374 0.6450 +6945 344018 0.4260 +6945 643418 0.5720 +6947 8029 0.6750 +6947 8277 0.4190 +6947 8637 0.4950 +6947 8638 0.4580 +6947 8993 0.4330 +6947 9730 0.6650 +6947 10321 0.4830 +6947 10562 0.6770 +6947 25974 0.4660 +6947 27249 0.4840 +6947 51293 0.6980 +6947 54882 0.7010 +6947 55788 0.5950 +6947 56729 0.4340 +6947 81693 0.5840 +6947 166785 0.4800 +6947 404734 0.6900 +6947 440387 0.5400 +6947 728588 0.4290 +6948 7003 0.5500 +6948 7004 0.5900 +6948 7298 0.4540 +6948 8029 0.7090 +6948 23284 0.4350 +6948 23382 0.4100 +6948 23743 0.5300 +6948 25974 0.4890 +6948 26119 0.4990 +6948 27249 0.4770 +6948 51293 0.9990 +6948 55788 0.8250 +6948 81693 0.7660 +6948 166785 0.4750 +6948 200895 0.7910 +6948 220323 0.4520 +6948 389136 0.4280 +6949 7150 0.6650 +6949 7157 0.4110 +6949 7343 0.8990 +6949 7372 0.4460 +6949 8290 0.4760 +6949 8356 0.4860 +6949 8481 0.8530 +6949 8568 0.4220 +6949 8575 0.5200 +6949 8801 0.6370 +6949 9188 0.4280 +6949 9221 0.8530 +6949 9343 0.5640 +6949 9533 0.6650 +6949 9790 0.4350 +6949 10262 0.4240 +6949 10436 0.4010 +6949 10528 0.9630 +6949 10763 0.4950 +6949 10849 0.6400 +6949 11201 0.6270 +6949 11321 0.4210 +6949 23160 0.4070 +6949 23210 0.5190 +6949 23476 0.4240 +6949 25885 0.8090 +6949 25926 0.4370 +6949 26277 0.4440 +6949 29115 0.4110 +6949 51082 0.9450 +6949 51119 0.5090 +6949 51574 0.4780 +6949 51602 0.5130 +6949 54606 0.4070 +6949 54820 0.5440 +6949 55192 0.4530 +6949 55651 0.5020 +6949 79961 0.4560 +6949 84172 0.5490 +6949 84541 0.8180 +6949 84916 0.4330 +6949 124245 0.6430 +6949 167691 0.4240 +6949 222484 0.7720 +6949 440093 0.4750 +6949 440686 0.4760 +6949 653604 0.4910 +6950 6991 0.7440 +6950 7001 0.4700 +6950 7094 0.4370 +6950 7157 0.8510 +6950 7167 0.4890 +6950 7178 0.4280 +6950 7184 0.6560 +6950 7203 0.9990 +6950 7248 0.9480 +6950 7266 0.6000 +6950 7277 0.7610 +6950 7278 0.6660 +6950 7280 0.9820 +6950 7336 0.4110 +6950 7385 0.4750 +6950 7407 0.4470 +6950 7411 0.9710 +6950 7415 0.7130 +6950 7416 0.4480 +6950 7428 0.7830 +6950 7444 0.4490 +6950 7514 0.4050 +6950 7534 0.4340 +6950 7846 0.8060 +6950 7919 0.4300 +6950 7965 0.4510 +6950 8192 0.4380 +6950 8195 0.9240 +6950 8237 0.6540 +6950 8409 0.6030 +6950 8428 0.9940 +6950 8565 0.4040 +6950 8607 0.8140 +6950 8624 0.9290 +6950 8661 0.5360 +6950 8662 0.6300 +6950 8664 0.4110 +6950 8665 0.4860 +6950 8668 0.6200 +6950 8725 0.5700 +6950 8761 0.4560 +6950 8786 0.5140 +6950 8787 0.4990 +6950 8833 0.5160 +6950 8841 0.7280 +6950 8877 0.5190 +6950 8894 0.5210 +6950 9045 0.4660 +6950 9134 0.5250 +6950 9141 0.5660 +6950 9255 0.4170 +6950 9276 0.6260 +6950 9295 0.4700 +6950 9343 0.6600 +6950 9361 0.4440 +6950 9528 0.4120 +6950 9531 0.7710 +6950 9532 0.6630 +6950 9533 0.4300 +6950 9563 0.4020 +6950 9601 0.5640 +6950 9628 0.5110 +6950 9669 0.5710 +6950 9775 0.7460 +6950 9861 0.5020 +6950 10013 0.5590 +6950 10049 0.4180 +6950 10056 0.5760 +6950 10095 0.5960 +6950 10096 0.5460 +6950 10120 0.4770 +6950 10121 0.5250 +6950 10131 0.5680 +6950 10146 0.4720 +6950 10189 0.5310 +6950 10190 0.7560 +6950 10213 0.7570 +6950 10238 0.8240 +6950 10273 0.6340 +6950 10294 0.6420 +6950 10376 0.8560 +6950 10381 0.7660 +6950 10382 0.7300 +6950 10383 0.7840 +6950 10399 0.7900 +6950 10471 0.9750 +6950 10480 0.5030 +6950 10492 0.5180 +6950 10494 0.9940 +6950 10517 0.5030 +6950 10525 0.5270 +6950 10528 0.7310 +6950 10539 0.4530 +6950 10551 0.4200 +6950 10552 0.5970 +6950 10564 0.5080 +6950 10574 0.9990 +6950 10575 0.9990 +6950 10576 0.9990 +6950 10598 0.5290 +6950 10606 0.5260 +6950 10681 0.6320 +6950 10693 0.9990 +6950 10694 0.9990 +6950 10726 0.5740 +6950 10728 0.9640 +6950 10808 0.5860 +6950 10856 0.7360 +6950 10921 0.7770 +6950 10963 0.9680 +6950 10989 0.4330 +6950 10992 0.5210 +6950 11055 0.5500 +6950 11080 0.4150 +6950 11140 0.9290 +6950 11316 0.5480 +6950 11321 0.5490 +6950 11328 0.5350 +6950 11336 0.4750 +6950 11337 0.4490 +6950 22803 0.5570 +6950 22824 0.5180 +6950 22938 0.4500 +6950 22948 0.9990 +6950 23173 0.4500 +6950 23234 0.9430 +6950 23476 0.5190 +6950 23521 0.4170 +6950 23551 0.4890 +6950 23753 0.7400 +6950 25789 0.4070 +6950 25843 0.9950 +6950 25902 0.4710 +6950 25956 0.5980 +6950 26140 0.5570 +6950 26190 0.5140 +6950 26224 0.5100 +6950 26227 0.4280 +6950 26234 0.4990 +6950 26259 0.5310 +6950 26270 0.5170 +6950 26272 0.5030 +6950 26330 0.7200 +6950 26353 0.7750 +6950 26985 0.5060 +6950 26986 0.5540 +6950 27034 0.4180 +6950 27095 0.6930 +6950 27241 0.4810 +6950 29789 0.4400 +6950 29888 0.9940 +6950 29966 0.9940 +6950 51002 0.4100 +6950 51128 0.4930 +6950 51175 0.4620 +6950 51182 0.5970 +6950 51398 0.5430 +6950 51602 0.4030 +6950 51726 0.8250 +6950 51764 0.4990 +6950 51807 0.6980 +6950 53944 0.4210 +6950 54331 0.5010 +6950 54431 0.5760 +6950 54461 0.5180 +6950 54557 0.4240 +6950 55135 0.7760 +6950 55153 0.4070 +6950 55154 0.4730 +6950 55172 0.5520 +6950 55212 0.7570 +6950 55220 0.4200 +6950 55294 0.6330 +6950 55466 0.4530 +6950 55735 0.4230 +6950 55759 0.4390 +6950 55780 0.9690 +6950 55844 0.6360 +6950 55970 0.5150 +6950 56984 0.9130 +6950 57003 0.5540 +6950 57180 0.4540 +6950 57470 0.4150 +6950 59345 0.5180 +6950 63891 0.4180 +6950 63971 0.4990 +6950 64714 0.4820 +6950 79031 0.9820 +6950 79657 0.6330 +6950 79738 0.9310 +6950 79861 0.7950 +6950 79968 0.6700 +6950 80086 0.6480 +6950 80273 0.7090 +6950 80331 0.4170 +6950 80336 0.4400 +6950 80342 0.9940 +6950 81027 0.7120 +6950 81570 0.5870 +6950 81572 0.5860 +6950 81631 0.5480 +6950 83752 0.7070 +6950 83992 0.9940 +6950 84140 0.6300 +6950 84261 0.5670 +6950 84321 0.4720 +6950 84557 0.4550 +6950 84617 0.7450 +6950 84708 0.4660 +6950 84790 0.7660 +6950 92482 0.4050 +6950 94031 0.5960 +6950 94235 0.4990 +6950 112714 0.6980 +6950 113457 0.7090 +6950 116835 0.4820 +6950 120379 0.5450 +6950 124626 0.4830 +6950 129880 0.4350 +6950 132430 0.4400 +6950 132954 0.4180 +6950 134266 0.5640 +6950 139741 0.4360 +6950 146845 0.7730 +6950 150160 0.9900 +6950 165721 0.4060 +6950 166379 0.9310 +6950 200576 0.5530 +6950 202500 0.6470 +6950 203068 0.9680 +6950 203100 0.4670 +6950 254827 0.5410 +6950 255308 0.4780 +6950 259217 0.4270 +6950 260334 0.4270 +6950 283383 0.4150 +6950 285126 0.4440 +6950 339416 0.5990 +6950 347688 0.4600 +6950 347733 0.7030 +6950 348995 0.5280 +6950 728378 0.5620 +6950 100128327 0.6220 +6950 102723407 0.4090 +6954 6991 0.4200 +6954 7047 0.4630 +6954 7180 0.4140 +6954 7629 0.9750 +6954 7702 0.8910 +6954 9648 0.4580 +6954 9884 0.4950 +6954 23294 0.6290 +6954 26256 0.4600 +6954 26692 0.4130 +6954 51050 0.4480 +6954 51364 0.4090 +6954 51533 0.4880 +6954 53340 0.4600 +6954 54887 0.4350 +6954 64518 0.6310 +6954 83639 0.4580 +6954 83844 0.4200 +6954 84654 0.4040 +6954 89869 0.4360 +6954 116138 0.4150 +6954 117245 0.4120 +6954 123096 0.4570 +6954 130560 0.5380 +6954 132851 0.4320 +6954 202051 0.4140 +6954 202500 0.5040 +6954 219670 0.4210 +6954 222663 0.6780 +6954 245932 0.4110 +6954 245937 0.4230 +6954 283212 0.5270 +6954 286151 0.4200 +6954 286234 0.5080 +6954 339145 0.4610 +6954 340542 0.4580 +6954 374819 0.4940 +6954 389558 0.4730 +6975 7007 0.6970 +6975 7450 0.5650 +6975 7455 0.9220 +6975 7478 0.4240 +6975 7512 0.4140 +6975 9132 0.5940 +6975 9937 0.4140 +6975 10083 0.5450 +6975 51168 0.4410 +6975 51703 0.4870 +6975 55088 0.4640 +6975 57053 0.5420 +6975 64429 0.5240 +6975 79949 0.4600 +6975 84059 0.4650 +6975 116461 0.4130 +6975 117286 0.4530 +6975 117532 0.5220 +6975 119587 0.4420 +6975 124590 0.5400 +6975 131149 0.6820 +6975 143187 0.4770 +6975 146183 0.9250 +6975 150677 0.5000 +6975 155465 0.4440 +6975 161497 0.6250 +6975 283310 0.7190 +6975 283870 0.5430 +6975 340990 0.9740 +6975 374354 0.4700 +6975 375611 0.4020 +6975 388551 0.8570 +6975 654231 0.5010 +6975 729330 0.4780 +6988 221264 0.5030 +6988 284485 0.4290 +6988 388552 0.4210 +6988 728226 0.4470 +6990 6991 0.8260 +6990 6993 0.8600 +6990 7175 0.9090 +6990 7277 0.4350 +6990 8382 0.4120 +6990 8655 0.9760 +6990 8723 0.9040 +6990 9184 0.9210 +6990 10126 0.7610 +6990 10376 0.4270 +6990 23386 0.8190 +6990 25943 0.5250 +6990 27019 0.6330 +6990 51143 0.9930 +6990 51314 0.8000 +6990 51626 0.9650 +6990 51720 0.4330 +6990 51807 0.4430 +6990 54997 0.4380 +6990 55112 0.9780 +6990 55567 0.4320 +6990 56171 0.4270 +6990 64446 0.5860 +6990 79659 0.8910 +6990 79819 0.5370 +6990 79861 0.4050 +6990 83657 0.9700 +6990 83658 0.9650 +6990 84790 0.4350 +6990 89891 0.9780 +6990 93233 0.4020 +6990 116143 0.4230 +6990 126820 0.5400 +6990 140735 0.9620 +6990 146279 0.4430 +6990 146754 0.4330 +6990 158787 0.5660 +6990 200132 0.8380 +6990 202500 0.5880 +6990 255758 0.9570 +6990 285600 0.4950 +6990 343521 0.8350 +6990 347404 0.4870 +6991 6993 0.9040 +6991 7058 0.6570 +6991 7175 0.5470 +6991 8655 0.8350 +6991 8723 0.5400 +6991 9576 0.4190 +6991 10126 0.5240 +6991 10615 0.4090 +6991 23386 0.6420 +6991 25981 0.4320 +6991 50862 0.4450 +6991 51143 0.6460 +6991 51368 0.4420 +6991 51626 0.7610 +6991 53340 0.4790 +6991 55112 0.7420 +6991 55274 0.8890 +6991 55780 0.4810 +6991 64094 0.4980 +6991 79659 0.6910 +6991 79981 0.5780 +6991 83544 0.4320 +6991 83639 0.4560 +6991 83657 0.7680 +6991 83658 0.8040 +6991 84498 0.4360 +6991 89891 0.7690 +6991 117144 0.4660 +6991 117155 0.4850 +6991 140735 0.7540 +6991 146849 0.4230 +6991 150483 0.4110 +6991 160762 0.4120 +6991 168002 0.5430 +6991 168090 0.4080 +6991 200132 0.6230 +6991 202500 0.8370 +6991 253769 0.7640 +6991 255758 0.6980 +6991 343521 0.6090 +6991 375337 0.4800 +6991 387263 0.5790 +6991 474354 0.4400 +6992 7415 0.6770 +6992 7726 0.7160 +6992 8409 0.4700 +6992 8573 0.4130 +6992 10107 0.5930 +6992 11027 0.4190 +6992 27340 0.4480 +6992 30834 0.5960 +6992 54148 0.5310 +6992 55968 0.4800 +6992 56658 0.5200 +6992 80316 0.4380 +6992 80352 0.4520 +6992 80742 0.5260 +6992 92170 0.5190 +6992 135656 0.4330 +6992 137886 0.8050 +6992 153743 0.5970 +6992 165324 0.7190 +6992 257218 0.4040 +6993 7010 0.4820 +6993 7124 0.4240 +6993 7158 0.4310 +6993 7175 0.7500 +6993 7277 0.4040 +6993 7416 0.8200 +6993 7846 0.4120 +6993 8100 0.5050 +6993 8447 0.5920 +6993 8655 0.9880 +6993 8701 0.4410 +6993 8718 0.5140 +6993 8723 0.7300 +6993 8795 0.5020 +6993 8797 0.7030 +6993 8801 0.4880 +6993 8869 0.4140 +6993 9181 0.8950 +6993 9545 0.5440 +6993 9636 0.4110 +6993 10024 0.5090 +6993 10126 0.7820 +6993 10383 0.4440 +6993 10540 0.5210 +6993 10580 0.5630 +6993 10670 0.6200 +6993 10803 0.5430 +6993 23111 0.7530 +6993 23122 0.4410 +6993 23299 0.4790 +6993 23332 0.4190 +6993 23386 0.7990 +6993 25943 0.4960 +6993 27019 0.6630 +6993 27348 0.7100 +6993 51143 0.9870 +6993 51164 0.4910 +6993 51314 0.7950 +6993 51421 0.4050 +6993 51626 0.9410 +6993 54432 0.4140 +6993 54820 0.6330 +6993 55112 0.9790 +6993 55342 0.4300 +6993 55567 0.4730 +6993 56171 0.4910 +6993 64446 0.7010 +6993 79659 0.9050 +6993 79819 0.5930 +6993 81565 0.5110 +6993 83657 0.9700 +6993 83658 0.9880 +6993 84790 0.4080 +6993 89891 0.9570 +6993 90410 0.4250 +6993 113457 0.4700 +6993 116143 0.4390 +6993 123606 0.5470 +6993 126820 0.5230 +6993 128344 0.4660 +6993 140735 0.9600 +6993 146754 0.4740 +6993 160762 0.4520 +6993 196385 0.4590 +6993 200132 0.8600 +6993 202500 0.7850 +6993 255758 0.9850 +6993 283234 0.4110 +6993 285600 0.4950 +6993 343521 0.9880 +6996 7080 0.6220 +6996 7095 0.4210 +6996 7150 0.4410 +6996 7157 0.7860 +6996 7161 0.4980 +6996 7329 0.9100 +6996 7341 0.9980 +6996 7374 0.9070 +6996 7507 0.6050 +6996 7508 0.8280 +6996 7515 0.7240 +6996 7919 0.4450 +6996 8290 0.4340 +6996 8356 0.4370 +6996 8473 0.4110 +6996 8554 0.4960 +6996 8846 0.4730 +6996 8930 0.9020 +6996 9156 0.5010 +6996 9406 0.5630 +6996 9656 0.5070 +6996 9869 0.5090 +6996 10210 0.4900 +6996 10535 0.5040 +6996 10797 0.4320 +6996 10930 0.5140 +6996 11284 0.4670 +6996 22933 0.4930 +6996 23135 0.4750 +6996 23411 0.7160 +6996 23583 0.9220 +6996 23608 0.4280 +6996 25842 0.4730 +6996 25942 0.4070 +6996 27301 0.6120 +6996 27343 0.5210 +6996 29128 0.6250 +6996 29947 0.5720 +6996 51433 0.5130 +6996 51514 0.5580 +6996 51548 0.4800 +6996 54790 0.7510 +6996 55109 0.4350 +6996 55247 0.6750 +6996 57379 0.8330 +6996 63978 0.4110 +6996 79661 0.7410 +6996 80312 0.8850 +6996 80319 0.4930 +6996 81572 0.4510 +6996 115426 0.5680 +6996 121642 0.4600 +6996 200315 0.4410 +6996 200424 0.8090 +6996 221120 0.4070 +6996 252969 0.6080 +6996 440093 0.4340 +6996 440686 0.4340 +6996 441024 0.4110 +6996 653604 0.4340 +6996 730094 0.4510 +6996 100533467 0.4710 +6997 7039 0.5980 +6997 7044 0.9500 +6997 7048 0.4920 +6997 7474 0.5290 +6997 7546 0.4950 +6997 7547 0.8360 +6997 8433 0.6330 +6997 8577 0.6950 +6997 8646 0.5060 +6997 8822 0.4150 +6997 8928 0.7150 +6997 9049 0.4160 +6997 9314 0.6610 +6997 9350 0.6650 +6997 9573 0.9780 +6997 10048 0.4730 +6997 10296 0.5500 +6997 10637 0.9070 +6997 23509 0.5880 +6997 25852 0.4180 +6997 27022 0.4870 +6997 27201 0.4340 +6997 51186 0.5910 +6997 54596 0.6350 +6997 54994 0.6140 +6997 55211 0.6320 +6997 55237 0.6490 +6997 55997 0.5980 +6997 57167 0.6860 +6997 57610 0.4820 +6997 63978 0.5460 +6997 64321 0.4790 +6997 64777 0.5030 +6997 64795 0.7770 +6997 79442 0.4050 +6997 79727 0.7840 +6997 79923 0.9200 +6997 80232 0.6140 +6997 83881 0.4780 +6997 84891 0.5390 +6997 84976 0.4160 +6997 116225 0.5890 +6997 130399 0.9790 +6997 132625 0.6730 +6997 151871 0.4700 +6997 162979 0.4250 +6997 199699 0.5570 +6997 201456 0.4640 +6997 340168 0.4960 +6997 359787 0.6070 +6997 100526694 0.6880 +6999 7166 0.9640 +6999 7389 0.5730 +6999 7453 0.4350 +6999 8140 0.4110 +6999 8564 0.9000 +6999 8623 0.7930 +6999 8784 0.4430 +6999 8813 0.6190 +6999 8942 0.9980 +6999 10352 0.4030 +6999 10993 0.4380 +6999 23475 0.7420 +6999 23498 0.8540 +6999 29126 0.4340 +6999 51166 0.7150 +6999 54981 0.4380 +6999 55191 0.4790 +6999 56267 0.7880 +6999 57491 0.4040 +6999 57552 0.5700 +6999 64802 0.6430 +6999 83943 0.4260 +6999 84631 0.4680 +6999 84680 0.4830 +6999 84706 0.5460 +6999 93100 0.5880 +6999 114798 0.4220 +6999 121278 0.9420 +6999 123688 0.4900 +6999 125061 0.9890 +6999 126767 0.5690 +6999 130013 0.8030 +6999 169355 0.9950 +6999 259307 0.9350 +6999 343066 0.5690 +6999 344752 0.5700 +6999 390110 0.4830 +6999 440275 0.5270 +7001 7099 0.5820 +7001 7157 0.6560 +7001 7167 0.6890 +7001 7184 0.5960 +7001 7203 0.4690 +7001 7264 0.4430 +7001 7284 0.4220 +7001 7295 0.9810 +7001 7296 0.6160 +7001 7316 0.4960 +7001 7328 0.4900 +7001 7386 0.4090 +7001 7389 0.5670 +7001 7416 0.4050 +7001 7529 0.4200 +7001 7531 0.4610 +7001 7532 0.4040 +7001 7534 0.4580 +7001 7837 0.4210 +7001 8851 0.7750 +7001 8886 0.4130 +7001 8912 0.4040 +7001 8988 0.4140 +7001 9261 0.4390 +7001 9352 0.4520 +7001 9401 0.4050 +7001 9446 0.4580 +7001 9563 0.4920 +7001 9588 0.7980 +7001 9973 0.6160 +7001 9978 0.4970 +7001 10130 0.4290 +7001 10146 0.4920 +7001 10190 0.6450 +7001 10476 0.6500 +7001 10539 0.5230 +7001 10574 0.4200 +7001 10575 0.4700 +7001 10576 0.4900 +7001 10587 0.5640 +7001 10644 0.4010 +7001 10694 0.5130 +7001 10935 0.6350 +7001 11315 0.8670 +7001 22948 0.5780 +7001 22974 0.4410 +7001 23071 0.5360 +7001 23162 0.4120 +7001 23350 0.4220 +7001 23581 0.4610 +7001 25824 0.9600 +7001 25828 0.7100 +7001 25962 0.5380 +7001 51022 0.4950 +7001 51031 0.4540 +7001 51056 0.4260 +7001 51079 0.4540 +7001 51218 0.5000 +7001 51314 0.5740 +7001 54205 0.5130 +7001 55074 0.4510 +7001 58157 0.4740 +7001 79031 0.5230 +7001 80273 0.4370 +7001 81544 0.5340 +7001 81567 0.5450 +7001 81605 0.4890 +7001 84203 0.4980 +7001 114112 0.4580 +7001 120892 0.4110 +7001 134266 0.4090 +7001 137902 0.4190 +7001 140809 0.8890 +7001 255220 0.5010 +7001 257202 0.7480 +7001 261726 0.5780 +7001 345651 0.5240 +7001 347736 0.4330 +7001 493869 0.7740 +7003 7004 0.9220 +7003 7005 0.5680 +7003 7159 0.4520 +7003 7291 0.5830 +7003 7545 0.4890 +7003 8061 0.5060 +7003 8428 0.4850 +7003 8463 0.9440 +7003 8572 0.4010 +7003 8648 0.4250 +7003 8777 0.4070 +7003 9113 0.8170 +7003 9580 0.5070 +7003 9669 0.4360 +7003 9686 0.9840 +7003 10413 0.9990 +7003 10499 0.5080 +7003 10891 0.5030 +7003 11228 0.4860 +7003 23286 0.5700 +7003 23476 0.5940 +7003 23558 0.5810 +7003 25929 0.4190 +7003 25937 0.9990 +7003 26524 0.7330 +7003 27063 0.5540 +7003 27349 0.8900 +7003 51176 0.8330 +7003 51421 0.6840 +7003 51442 0.9780 +7003 55233 0.6570 +7003 57551 0.4050 +7003 60485 0.8100 +7003 83439 0.8240 +7003 84684 0.4130 +7003 92597 0.5780 +7003 93649 0.6510 +7003 115908 0.4470 +7003 122786 0.4980 +7003 154796 0.7290 +7003 154810 0.5310 +7003 245806 0.9150 +7003 359948 0.5660 +7003 389136 0.9100 +7004 7005 0.5620 +7004 7022 0.5640 +7004 7408 0.4140 +7004 8061 0.4450 +7004 8320 0.6640 +7004 8463 0.9120 +7004 8521 0.4460 +7004 8817 0.4460 +7004 8822 0.4330 +7004 8823 0.4840 +7004 8928 0.6260 +7004 9113 0.7260 +7004 9314 0.4210 +7004 9686 0.9910 +7004 10413 0.9990 +7004 10481 0.8130 +7004 10664 0.6310 +7004 23476 0.5200 +7004 25937 0.9980 +7004 26281 0.4770 +7004 26524 0.6780 +7004 27006 0.4710 +7004 27063 0.4550 +7004 27349 0.8870 +7004 51176 0.8390 +7004 51421 0.5130 +7004 51442 0.9850 +7004 51534 0.4140 +7004 55165 0.4060 +7004 55233 0.4990 +7004 60485 0.6580 +7004 64321 0.4230 +7004 79923 0.5390 +7004 83439 0.8420 +7004 84612 0.4170 +7004 84684 0.4130 +7004 90050 0.9070 +7004 92597 0.4200 +7004 154796 0.5810 +7004 154810 0.6220 +7004 171017 0.5050 +7004 220382 0.9010 +7004 245806 0.5930 +7004 344022 0.5030 +7004 389136 0.6720 +7005 8463 0.5760 +7005 9113 0.6120 +7005 9611 0.4300 +7005 9686 0.9410 +7005 10413 0.9980 +7005 11228 0.4410 +7005 25937 0.9940 +7005 26524 0.6050 +7005 27349 0.4920 +7005 30818 0.7770 +7005 51176 0.8160 +7005 51421 0.4850 +7005 51442 0.8400 +7005 57591 0.4400 +7005 60485 0.6090 +7005 83439 0.8170 +7005 84684 0.4130 +7005 92597 0.4180 +7005 93649 0.4760 +7005 245806 0.5020 +7005 359948 0.5070 +7005 389136 0.5080 +7006 7294 0.4770 +7006 7409 0.9370 +7006 7410 0.9070 +7006 8651 0.6810 +7006 8754 0.5060 +7006 8792 0.4470 +7006 9046 0.4920 +7006 9402 0.5690 +7006 9650 0.4730 +7006 10404 0.4510 +7006 10451 0.9070 +7006 26228 0.4280 +7006 27040 0.5150 +7006 29760 0.9510 +7006 390714 0.5480 +7006 644974 0.4240 +7007 7512 0.4790 +7007 9132 0.5290 +7007 9381 0.5060 +7007 51149 0.4190 +7007 51168 0.5720 +7007 51475 0.4120 +7007 64072 0.4090 +7007 79784 0.4560 +7007 117531 0.4810 +7007 125336 0.4050 +7007 131149 0.6750 +7007 133060 0.4710 +7007 140689 0.4280 +7007 146183 0.9300 +7007 150677 0.5920 +7007 152137 0.4190 +7007 161497 0.6780 +7007 219899 0.4550 +7007 283310 0.5390 +7007 340990 0.5710 +7007 342184 0.4020 +7007 388551 0.9040 +7007 729330 0.4940 +7008 7089 0.5610 +7008 7252 0.7520 +7008 7381 0.4840 +7008 7385 0.4270 +7008 8553 0.5150 +7008 8566 0.8350 +7008 8863 0.8220 +7008 8864 0.7720 +7008 9377 0.6130 +7008 9572 0.7630 +7008 9575 0.6400 +7008 9975 0.7870 +7008 27089 0.4340 +7008 27286 0.5490 +7008 29796 0.4670 +7008 51442 0.4050 +7008 56938 0.4560 +7008 79002 0.4430 +7008 79365 0.5340 +7008 79816 0.5450 +7008 84701 0.4960 +7008 84886 0.5360 +7008 125965 0.4420 +7008 148523 0.6110 +7008 283459 0.4650 +7008 388753 0.4420 +7008 653145 0.5190 +7009 7178 0.4180 +7009 7494 0.6040 +7009 8539 0.4090 +7009 8678 0.8070 +7009 9140 0.4580 +7009 9141 0.4520 +7009 9375 0.4700 +7009 9528 0.4360 +7009 10168 0.4190 +7009 10399 0.5170 +7009 10959 0.6340 +7009 10972 0.6220 +7009 10987 0.5030 +7009 11052 0.4040 +7009 11331 0.5050 +7009 22926 0.5200 +7009 23017 0.6780 +7009 23284 0.4800 +7009 23601 0.4220 +7009 27069 0.6570 +7009 27351 0.9940 +7009 30001 0.4290 +7009 51283 0.5850 +7009 51643 0.4500 +7009 54205 0.4810 +7009 54499 0.4110 +7009 54956 0.5530 +7009 55757 0.4140 +7009 55856 0.4030 +7009 57142 0.4100 +7009 57541 0.4190 +7009 64114 0.6700 +7009 81790 0.4160 +7009 81890 0.4020 +7009 83590 0.4140 +7009 91445 0.4650 +7009 92799 0.5210 +7009 155054 0.4620 +7009 163087 0.4270 +7009 347735 0.4520 +7009 387263 0.4200 +7009 389336 0.4700 +7010 7039 0.7620 +7010 7040 0.5450 +7010 7056 0.4680 +7010 7057 0.4900 +7010 7066 0.7940 +7010 7070 0.5090 +7010 7075 0.8270 +7010 7082 0.4620 +7010 7122 0.6800 +7010 7124 0.5530 +7010 7157 0.4170 +7010 7412 0.6180 +7010 7423 0.8760 +7010 7424 0.9550 +7010 7450 0.7570 +7010 7837 0.4250 +7010 7852 0.6050 +7010 8074 0.7350 +7010 8322 0.4200 +7010 8490 0.4770 +7010 8817 0.8480 +7010 8822 0.8480 +7010 8823 0.8510 +7010 8829 0.5490 +7010 8842 0.5280 +7010 8862 0.4240 +7010 9046 0.8290 +7010 9068 0.8660 +7010 9079 0.4040 +7010 9965 0.7470 +7010 10218 0.6170 +7010 10266 0.4030 +7010 10544 0.4480 +7010 10630 0.4580 +7010 10631 0.4210 +7010 10763 0.4800 +7010 10894 0.6380 +7010 11235 0.5380 +7010 23111 0.4360 +7010 23236 0.6500 +7010 23452 0.8700 +7010 25759 0.7010 +7010 26281 0.8480 +7010 26291 0.7420 +7010 27006 0.8480 +7010 27329 0.8820 +7010 29126 0.4080 +7010 51129 0.6310 +7010 51162 0.4180 +7010 51378 0.9990 +7010 51705 0.7540 +7010 53358 0.6980 +7010 54345 0.5900 +7010 54538 0.6250 +7010 54567 0.4520 +7010 55740 0.4930 +7010 56034 0.8410 +7010 64123 0.5090 +7010 64321 0.4700 +7010 79155 0.8670 +7010 80310 0.7230 +7010 80781 0.5230 +7010 83483 0.4070 +7010 83605 0.5790 +7010 90952 0.5170 +7010 123606 0.4240 +7010 152273 0.5020 +7010 161198 0.4330 +7010 221395 0.4800 +7010 399694 0.7810 +7010 100506658 0.4320 +7011 7013 0.4630 +7011 7014 0.5040 +7011 7015 0.9990 +7011 7157 0.6600 +7011 7311 0.5290 +7011 8295 0.9520 +7011 8464 0.9450 +7011 8850 0.8050 +7011 8881 0.4040 +7011 9519 0.4080 +7011 9652 0.5140 +7011 9887 0.5760 +7011 9960 0.5260 +7011 9961 0.9980 +7011 10474 0.9460 +7011 10728 0.9460 +7011 11224 0.4080 +7011 23293 0.5840 +7011 23326 0.5260 +7011 23381 0.5760 +7011 23450 0.4960 +7011 23626 0.4990 +7011 25862 0.5300 +7011 25873 0.4220 +7011 27443 0.8030 +7011 51616 0.8660 +7011 54386 0.4850 +7011 54433 0.9070 +7011 54552 0.7880 +7011 55135 0.9420 +7011 55226 0.7530 +7011 55505 0.9260 +7011 55651 0.9330 +7011 55833 0.5950 +7011 56943 0.8420 +7011 65061 0.4290 +7011 80139 0.4220 +7011 83443 0.4490 +7011 84101 0.5260 +7011 84749 0.5300 +7011 84858 0.5510 +7011 91875 0.4530 +7011 93624 0.6860 +7011 112869 0.8050 +7011 114548 0.5120 +7011 114609 0.6130 +7011 134353 0.7360 +7011 158880 0.5260 +7011 197335 0.5270 +7011 389856 0.5260 +7011 644672 0.4670 +7011 728642 0.4330 +7011 100287513 0.5260 +7013 7014 0.9980 +7013 7015 0.9730 +7013 7150 0.4770 +7013 7156 0.4950 +7013 7157 0.5730 +7013 7158 0.7790 +7013 7329 0.5870 +7013 7486 0.9650 +7013 7517 0.4570 +7013 7520 0.9470 +7013 7528 0.4540 +7013 8178 0.4220 +7013 8243 0.5880 +7013 8290 0.6710 +7013 8312 0.5370 +7013 8331 0.5070 +7013 8334 0.5170 +7013 8337 0.6580 +7013 8338 0.6520 +7013 8340 0.5670 +7013 8341 0.5690 +7013 8342 0.5650 +7013 8345 0.5660 +7013 8347 0.5620 +7013 8348 0.5650 +7013 8349 0.6470 +7013 8361 0.6850 +7013 8468 0.4990 +7013 8658 0.9990 +7013 8900 0.4910 +7013 8914 0.5870 +7013 8970 0.5680 +7013 9126 0.6240 +7013 9156 0.6500 +7013 9401 0.7410 +7013 9519 0.7660 +7013 9656 0.6320 +7013 9937 0.5740 +7013 9985 0.5890 +7013 10038 0.5230 +7013 10111 0.6920 +7013 10273 0.5600 +7013 10274 0.9020 +7013 10388 0.5680 +7013 10642 0.4210 +7013 10714 0.6430 +7013 10734 0.5750 +7013 10735 0.5740 +7013 11083 0.5050 +7013 11200 0.4780 +7013 11338 0.6340 +7013 22803 0.7000 +7013 22919 0.6870 +7013 23048 0.5300 +7013 23137 0.4300 +7013 23243 0.4080 +7013 23353 0.6870 +7013 23649 0.5640 +7013 25913 0.9990 +7013 26054 0.4130 +7013 26272 0.9960 +7013 26277 0.9990 +7013 26354 0.6870 +7013 26523 0.7790 +7013 27127 0.6390 +7013 27161 0.4250 +7013 29086 0.4470 +7013 29781 0.7130 +7013 50511 0.7050 +7013 51132 0.4980 +7013 51655 0.4260 +7013 51750 0.9530 +7013 54145 0.5690 +7013 54386 0.9990 +7013 54433 0.6680 +7013 54552 0.7370 +7013 54921 0.5260 +7013 54984 0.9530 +7013 55135 0.7810 +7013 55247 0.5770 +7013 55291 0.4300 +7013 55505 0.8050 +7013 55651 0.8730 +7013 55679 0.6680 +7013 55766 0.5070 +7013 56158 0.5380 +7013 57804 0.4990 +7013 63922 0.5350 +7013 64400 0.9090 +7013 64858 0.9500 +7013 79075 0.5450 +7013 79648 0.4340 +7013 79991 0.9190 +7013 80119 0.6210 +7013 80169 0.9460 +7013 80351 0.9980 +7013 81847 0.4180 +7013 84072 0.5190 +7013 84464 0.4770 +7013 84632 0.5830 +7013 85236 0.5690 +7013 85456 0.8670 +7013 93426 0.5640 +7013 94239 0.5220 +7013 128312 0.5650 +7013 128710 0.4570 +7013 140609 0.4290 +7013 145645 0.8580 +7013 147872 0.5000 +7013 150280 0.5010 +7013 192669 0.5500 +7013 192670 0.4120 +7013 201516 0.4090 +7013 245711 0.4360 +7013 255626 0.5650 +7013 256126 0.5480 +7013 283129 0.7750 +7013 283847 0.9920 +7013 286053 0.4560 +7013 387332 0.7880 +7013 389493 0.9910 +7013 474382 0.5070 +7013 494188 0.5940 +7013 644186 0.5340 +7013 100134934 0.8030 +7014 7015 0.8690 +7014 7156 0.5570 +7014 7157 0.4590 +7014 7158 0.8110 +7014 7299 0.4030 +7014 7329 0.6550 +7014 7486 0.9180 +7014 7517 0.4080 +7014 7518 0.4540 +7014 7520 0.9300 +7014 8243 0.7200 +7014 8290 0.5860 +7014 8331 0.5070 +7014 8334 0.5180 +7014 8337 0.5600 +7014 8338 0.6710 +7014 8340 0.4990 +7014 8341 0.4990 +7014 8342 0.4990 +7014 8345 0.5200 +7014 8347 0.5170 +7014 8348 0.5250 +7014 8349 0.6170 +7014 8361 0.6660 +7014 8468 0.4990 +7014 8658 0.8960 +7014 8888 0.4870 +7014 8900 0.4440 +7014 8970 0.4990 +7014 9025 0.4670 +7014 9126 0.6530 +7014 9156 0.4900 +7014 9271 0.4060 +7014 9400 0.4070 +7014 9656 0.7720 +7014 9726 0.4020 +7014 9878 0.4200 +7014 9985 0.4990 +7014 10111 0.9260 +7014 10157 0.5880 +7014 10212 0.5650 +7014 10274 0.7090 +7014 10388 0.4990 +7014 10635 0.4100 +7014 10714 0.5520 +7014 10734 0.4990 +7014 10735 0.5420 +7014 11083 0.5650 +7014 11200 0.5270 +7014 23028 0.4880 +7014 23243 0.4080 +7014 23293 0.5240 +7014 23595 0.4110 +7014 23649 0.5240 +7014 25913 0.9990 +7014 25962 0.4570 +7014 26277 0.9990 +7014 27127 0.5250 +7014 29903 0.4240 +7014 50511 0.5640 +7014 51127 0.4940 +7014 51366 0.5230 +7014 51750 0.7420 +7014 54145 0.4990 +7014 54386 0.9990 +7014 54433 0.6520 +7014 54921 0.5040 +7014 55135 0.7110 +7014 55247 0.5500 +7014 55291 0.4200 +7014 55505 0.7470 +7014 55651 0.7360 +7014 55660 0.4460 +7014 55766 0.5070 +7014 56158 0.5040 +7014 56852 0.4630 +7014 57804 0.5080 +7014 63922 0.5070 +7014 64858 0.9990 +7014 65986 0.4550 +7014 79075 0.4990 +7014 79648 0.9310 +7014 79991 0.8440 +7014 80119 0.4750 +7014 80169 0.8610 +7014 80198 0.8090 +7014 80351 0.4430 +7014 84464 0.9960 +7014 84619 0.6060 +7014 84874 0.5080 +7014 85236 0.5010 +7014 93426 0.5380 +7014 94239 0.5080 +7014 124245 0.4360 +7014 128312 0.4990 +7014 128710 0.7700 +7014 146956 0.7060 +7014 197342 0.5910 +7014 203245 0.4630 +7014 255626 0.4990 +7014 256126 0.4990 +7014 283129 0.4260 +7014 283847 0.6180 +7014 286257 0.4430 +7014 389493 0.5350 +7014 474382 0.5070 +7014 548593 0.6420 +7014 644186 0.4990 +7014 100134934 0.7980 +7015 7019 0.4360 +7015 7038 0.4190 +7015 7040 0.4270 +7015 7048 0.4520 +7015 7066 0.4090 +7015 7088 0.5160 +7015 7089 0.5140 +7015 7090 0.4990 +7015 7091 0.4990 +7015 7124 0.4460 +7015 7157 0.9020 +7015 7158 0.4670 +7015 7182 0.4020 +7015 7249 0.4090 +7015 7276 0.4800 +7015 7299 0.4470 +7015 7391 0.5400 +7015 7392 0.5660 +7015 7486 0.7320 +7015 7490 0.5260 +7015 7515 0.4090 +7015 7517 0.4110 +7015 7520 0.9480 +7015 7534 0.4100 +7015 7757 0.5220 +7015 7837 0.4550 +7015 7849 0.5110 +7015 7884 0.4040 +7015 8085 0.4970 +7015 8161 0.4700 +7015 8289 0.7810 +7015 8290 0.5260 +7015 8294 0.5260 +7015 8312 0.5110 +7015 8329 0.8060 +7015 8330 0.8080 +7015 8332 0.8050 +7015 8335 0.8090 +7015 8336 0.8050 +7015 8338 0.4510 +7015 8339 0.8070 +7015 8343 0.8070 +7015 8344 0.8070 +7015 8346 0.8070 +7015 8347 0.8230 +7015 8356 0.5750 +7015 8358 0.5440 +7015 8361 0.6070 +7015 8549 0.4540 +7015 8607 0.9790 +7015 8626 0.4410 +7015 8658 0.4720 +7015 8678 0.4830 +7015 8842 0.4970 +7015 8859 0.4020 +7015 8880 0.5420 +7015 8900 0.6330 +7015 8969 0.8050 +7015 8970 0.8250 +7015 9156 0.6040 +7015 9201 0.4790 +7015 9314 0.5270 +7015 9400 0.4990 +7015 9401 0.6510 +7015 9564 0.4410 +7015 9573 0.4490 +7015 9730 0.5690 +7015 9757 0.5670 +7015 9759 0.5350 +7015 9839 0.5130 +7015 9887 0.8910 +7015 9913 0.4650 +7015 9935 0.4820 +7015 9965 0.4320 +7015 9968 0.4320 +7015 9987 0.4390 +7015 10111 0.4690 +7015 10248 0.4380 +7015 10273 0.4910 +7015 10460 0.4260 +7015 10519 0.7890 +7015 10664 0.4640 +7015 10728 0.9890 +7015 10763 0.4220 +7015 10856 0.9920 +7015 11186 0.5350 +7015 11200 0.5760 +7015 22913 0.4290 +7015 23137 0.5040 +7015 23187 0.5730 +7015 23243 0.4230 +7015 23293 0.9840 +7015 23381 0.9280 +7015 23405 0.5700 +7015 23411 0.5950 +7015 23608 0.8680 +7015 25913 0.9900 +7015 26277 0.9660 +7015 26354 0.5120 +7015 26986 0.5640 +7015 27161 0.5770 +7015 29072 0.5300 +7015 29102 0.6580 +7015 29126 0.5410 +7015 51119 0.6840 +7015 51176 0.6070 +7015 51199 0.4450 +7015 51366 0.4030 +7015 51548 0.4060 +7015 51574 0.4470 +7015 51602 0.4390 +7015 51750 0.9180 +7015 54205 0.5410 +7015 54386 0.8110 +7015 54433 0.9710 +7015 54552 0.9260 +7015 54790 0.4550 +7015 54904 0.4490 +7015 54937 0.5530 +7015 54984 0.7390 +7015 55081 0.4430 +7015 55135 0.9990 +7015 55164 0.6120 +7015 55226 0.9130 +7015 55291 0.4290 +7015 55505 0.9990 +7015 55651 0.9990 +7015 55729 0.6370 +7015 55766 0.8050 +7015 56848 0.4890 +7015 57169 0.5450 +7015 57492 0.4690 +7015 57575 0.4410 +7015 57634 0.4130 +7015 57670 0.4270 +7015 57697 0.4800 +7015 58508 0.4490 +7015 64223 0.4060 +7015 64682 0.4070 +7015 64858 0.4350 +7015 65110 0.4200 +7015 78996 0.5000 +7015 79035 0.4320 +7015 79143 0.4510 +7015 79648 0.5580 +7015 79727 0.4260 +7015 79902 0.4260 +7015 79923 0.6290 +7015 79949 0.5070 +7015 79991 0.8280 +7015 80119 0.9070 +7015 80169 0.8710 +7015 80198 0.4830 +7015 80351 0.4160 +7015 81037 0.9260 +7015 83439 0.9570 +7015 83990 0.4850 +7015 84231 0.4630 +7015 84260 0.4320 +7015 85236 0.8260 +7015 92345 0.4660 +7015 92797 0.4540 +7015 96764 0.4030 +7015 116840 0.4740 +7015 129685 0.4320 +7015 134353 0.7230 +7015 137902 0.4550 +7015 139212 0.6350 +7015 146713 0.4290 +7015 157570 0.4130 +7015 163223 0.4480 +7015 165918 0.4190 +7015 167153 0.7290 +7015 170506 0.5590 +7015 196528 0.5980 +7015 252983 0.4080 +7015 254528 0.8030 +7015 255520 0.5750 +7015 348932 0.4030 +7015 440093 0.5360 +7015 440686 0.5200 +7015 440689 0.8230 +7015 653604 0.5370 +7015 727897 0.5340 +7015 729238 0.5070 +7015 100134934 0.5580 +7015 100526761 0.5510 +7015 100532731 0.5610 +7016 7529 0.6640 +7016 9853 0.4720 +7016 10244 0.4490 +7016 10253 0.6330 +7016 54434 0.5580 +7016 54961 0.5880 +7016 55742 0.9580 +7016 57026 0.5820 +7016 57551 0.5100 +7016 81848 0.8760 +7016 85464 0.5080 +7016 161742 0.4620 +7018 7036 0.8370 +7018 7037 0.9990 +7018 7276 0.8170 +7018 7448 0.6440 +7018 8301 0.5020 +7018 8673 0.5010 +7018 8674 0.4050 +7018 8992 0.4990 +7018 9114 0.5050 +7018 9296 0.5160 +7018 9341 0.5020 +7018 9550 0.5050 +7018 9856 0.4170 +7018 9892 0.5320 +7018 10312 0.5160 +7018 10618 0.4430 +7018 11272 0.4480 +7018 23545 0.5350 +7018 26119 0.4990 +7018 29106 0.4290 +7018 29978 0.5200 +7018 29988 0.4270 +7018 50617 0.5160 +7018 51382 0.5060 +7018 51606 0.4990 +7018 51760 0.4690 +7018 54205 0.4320 +7018 54757 0.4050 +7018 55937 0.4240 +7018 56975 0.5140 +7018 58477 0.5870 +7018 63898 0.4080 +7018 79003 0.7800 +7018 84569 0.4520 +7018 85477 0.4250 +7018 90423 0.4990 +7018 116844 0.5290 +7018 127124 0.5050 +7018 145389 0.4330 +7018 148738 0.7370 +7018 155066 0.5090 +7018 245972 0.5050 +7018 245973 0.5170 +7018 285555 0.4520 +7019 7084 0.6130 +7019 7124 0.4110 +7019 7157 0.9590 +7019 7284 0.6000 +7019 7295 0.4230 +7019 7349 0.4050 +7019 7350 0.6320 +7019 7351 0.6520 +7019 7352 0.6070 +7019 7384 0.6340 +7019 7385 0.7100 +7019 7386 0.5150 +7019 7416 0.8080 +7019 7417 0.4040 +7019 7494 0.4210 +7019 7818 0.5460 +7019 7837 0.4740 +7019 7942 0.4510 +7019 7978 0.6540 +7019 8192 0.7230 +7019 8361 0.5980 +7019 8562 0.5340 +7019 8678 0.4530 +7019 8803 0.4030 +7019 8878 0.4310 +7019 8886 0.4630 +7019 9361 0.7360 +7019 9370 0.4200 +7019 9377 0.5760 +7019 9401 0.4530 +7019 9451 0.4180 +7019 9474 0.4560 +7019 9512 0.4370 +7019 9804 0.8170 +7019 9817 0.4290 +7019 9868 0.4540 +7019 9927 0.8120 +7019 9941 0.4170 +7019 10059 0.8090 +7019 10105 0.8070 +7019 10128 0.6210 +7019 10135 0.5070 +7019 10153 0.5950 +7019 10240 0.4630 +7019 10245 0.4850 +7019 10440 0.7660 +7019 10452 0.4810 +7019 10533 0.4100 +7019 10730 0.4340 +7019 10845 0.5550 +7019 10891 0.9880 +7019 10902 0.4540 +7019 10935 0.5170 +7019 10939 0.4980 +7019 10965 0.4380 +7019 10989 0.6610 +7019 11103 0.5630 +7019 11222 0.4260 +7019 11232 0.7000 +7019 11315 0.4520 +7019 11331 0.6150 +7019 22887 0.4050 +7019 22907 0.5380 +7019 22926 0.5850 +7019 23082 0.8720 +7019 23107 0.4560 +7019 23409 0.4060 +7019 23410 0.8030 +7019 23411 0.9030 +7019 23476 0.5420 +7019 25828 0.4040 +7019 25926 0.7810 +7019 26073 0.4280 +7019 26284 0.5640 +7019 27089 0.4680 +7019 27154 0.4370 +7019 29796 0.4250 +7019 50484 0.4990 +7019 51001 0.6830 +7019 51021 0.4590 +7019 51024 0.7730 +7019 51073 0.4020 +7019 51081 0.7160 +7019 51106 0.9960 +7019 51116 0.4600 +7019 51204 0.4060 +7019 51250 0.6060 +7019 51373 0.4340 +7019 54106 0.5930 +7019 54148 0.4610 +7019 54205 0.7600 +7019 54471 0.4060 +7019 54840 0.4820 +7019 54931 0.4230 +7019 55037 0.5990 +7019 55149 0.4310 +7019 55173 0.5780 +7019 55210 0.5990 +7019 55288 0.4150 +7019 55486 0.4680 +7019 55669 0.7730 +7019 55775 0.4340 +7019 56652 0.9280 +7019 56945 0.6530 +7019 56947 0.5920 +7019 56993 0.4410 +7019 57104 0.4020 +7019 57120 0.4570 +7019 60488 0.4470 +7019 63976 0.5150 +7019 64216 0.9990 +7019 64963 0.4600 +7019 64965 0.4260 +7019 64969 0.4820 +7019 65003 0.4770 +7019 65018 0.8100 +7019 65993 0.4340 +7019 79657 0.4670 +7019 79736 0.6550 +7019 80119 0.4600 +7019 80298 0.4570 +7019 81631 0.4640 +7019 83752 0.4030 +7019 83858 0.4830 +7019 84273 0.6390 +7019 84701 0.6590 +7019 85476 0.4180 +7019 87178 0.4520 +7019 90480 0.5090 +7019 90550 0.4050 +7019 92399 0.5650 +7019 92667 0.6070 +7019 112398 0.4220 +7019 112399 0.4180 +7019 115004 0.7510 +7019 115209 0.4090 +7019 126129 0.4500 +7019 130916 0.5270 +7019 131118 0.4250 +7019 131474 0.5270 +7019 133522 0.7620 +7019 137902 0.4700 +7019 139341 0.4560 +7019 150274 0.4350 +7019 155061 0.4580 +7019 201973 0.4290 +7019 246243 0.4710 +7019 252995 0.4320 +7019 257202 0.4510 +7019 493869 0.4800 +7019 100287932 0.5550 +7021 7022 0.4480 +7021 7044 0.4470 +7021 7124 0.4030 +7021 7329 0.5270 +7021 7466 0.4290 +7021 7528 0.5300 +7021 7545 0.4380 +7021 8089 0.8940 +7021 8092 0.4120 +7021 8929 0.4660 +7021 9369 0.5270 +7021 10370 0.8800 +7021 11165 0.4750 +7021 23017 0.5870 +7021 23788 0.5790 +7021 25926 0.4110 +7021 25970 0.5070 +7021 27022 0.4370 +7021 51086 0.5290 +7021 51277 0.5070 +7021 51704 0.4300 +7021 54814 0.4470 +7021 54958 0.5490 +7021 57507 0.4730 +7021 79047 0.8360 +7021 79068 0.5100 +7021 83741 0.7950 +7021 89866 0.6580 +7021 127018 0.5660 +7021 129787 0.6570 +7021 132789 0.6630 +7021 134359 0.5070 +7021 158038 0.4700 +7021 163732 0.6540 +7021 219402 0.5070 +7021 257194 0.5290 +7021 284252 0.9290 +7021 339488 0.4260 +7021 390598 0.4610 +7021 100526835 0.5740 +7022 7031 0.4080 +7022 7157 0.5210 +7022 7329 0.7720 +7022 7341 0.4080 +7022 7348 0.4060 +7022 7473 0.5460 +7022 7528 0.6160 +7022 7545 0.4350 +7022 7547 0.4170 +7022 8089 0.5250 +7022 8320 0.5790 +7022 8521 0.4730 +7022 8675 0.5920 +7022 9314 0.4480 +7022 9687 0.4380 +7022 10370 0.9450 +7022 10765 0.9140 +7022 11278 0.4340 +7022 23028 0.5230 +7022 27043 0.4800 +7022 29028 0.5160 +7022 29842 0.5330 +7022 51741 0.9890 +7022 54514 0.4630 +7022 57167 0.4180 +7022 63978 0.7620 +7022 64321 0.6100 +7022 79047 0.6050 +7022 79727 0.4030 +7022 79923 0.5870 +7022 79977 0.5390 +7022 83741 0.6410 +7022 93659 0.8200 +7022 128209 0.4190 +7022 163732 0.6940 +7022 284252 0.9360 +7022 339488 0.4500 +7022 342977 0.6800 +7022 359787 0.5180 +7022 373863 0.4260 +7023 7024 0.4770 +7023 7157 0.4540 +7023 7342 0.4230 +7023 7392 0.6320 +7023 8945 0.5930 +7023 9937 0.7180 +7023 10629 0.4350 +7023 10664 0.4740 +7023 10767 0.7620 +7023 10919 0.4920 +7023 23020 0.4550 +7023 23248 0.4460 +7023 23291 0.6280 +7023 23476 0.5630 +7023 23523 0.5110 +7023 28951 0.4440 +7023 51053 0.4590 +7023 79813 0.4020 +7023 83746 0.4270 +7023 115426 0.5100 +7024 7298 0.8450 +7024 7342 0.8390 +7024 7528 0.5830 +7024 7703 0.4040 +7024 10797 0.6310 +7024 23310 0.6460 +7024 25942 0.6060 +7024 29842 0.6790 +7024 51277 0.4790 +7024 55022 0.6260 +7024 55170 0.5650 +7024 57862 0.5490 +7024 84733 0.4430 +7024 92140 0.7710 +7024 140901 0.5300 +7024 147463 0.7270 +7024 245806 0.4980 +7025 7026 0.5320 +7025 7080 0.4110 +7025 7091 0.4220 +7025 7329 0.4530 +7025 7528 0.5040 +7025 7545 0.4100 +7025 7750 0.4630 +7025 8202 0.4620 +7025 8822 0.4170 +7025 9355 0.5300 +7025 9611 0.8800 +7025 9612 0.6300 +7025 10499 0.5330 +7025 10716 0.5220 +7025 10891 0.5160 +7025 23314 0.6540 +7025 23414 0.5220 +7025 23765 0.4170 +7025 26468 0.4750 +7025 53335 0.7930 +7025 55079 0.5040 +7025 64324 0.4490 +7025 64919 0.9910 +7025 79365 0.5680 +7025 83989 0.5850 +7025 170825 0.4350 +7025 221833 0.5980 +7025 105372481 0.4250 +7026 7080 0.4420 +7026 7182 0.6390 +7026 7424 0.5510 +7026 7528 0.5280 +7026 7750 0.4290 +7026 8202 0.5840 +7026 8648 0.5850 +7026 8828 0.4680 +7026 8829 0.4370 +7026 9464 0.5220 +7026 9611 0.7840 +7026 9612 0.6780 +7026 10630 0.4450 +7026 10661 0.5030 +7026 10891 0.5980 +7026 10894 0.5160 +7026 23314 0.5760 +7026 23414 0.8030 +7026 23462 0.5370 +7026 23493 0.6060 +7026 25942 0.4420 +7026 26468 0.5520 +7026 50805 0.5300 +7026 53335 0.9290 +7026 54345 0.8050 +7026 54567 0.7050 +7026 55553 0.4030 +7026 57057 0.4240 +7026 64321 0.4750 +7026 64919 0.8990 +7026 79191 0.4320 +7026 83595 0.4600 +7026 83989 0.4330 +7026 84668 0.4200 +7026 84733 0.4500 +7027 7029 0.9270 +7027 7083 0.5720 +7027 7153 0.6240 +7027 7157 0.8230 +7027 7298 0.5460 +7027 7374 0.4580 +7027 7703 0.5170 +7027 7786 0.4100 +7027 8318 0.6390 +7027 8451 0.5340 +7027 8454 0.5560 +7027 8726 0.5170 +7027 8850 0.5780 +7027 8881 0.4610 +7027 8900 0.7860 +7027 9133 0.4170 +7027 9134 0.6960 +7027 9794 0.5200 +7027 10046 0.5140 +7027 10138 0.9090 +7027 10919 0.7090 +7027 11091 0.7360 +7027 11335 0.8920 +7027 22938 0.5260 +7027 23112 0.4990 +7027 23269 0.7640 +7027 23429 0.9340 +7027 23468 0.5890 +7027 23512 0.5340 +7027 23583 0.5100 +7027 25803 0.4300 +7027 26271 0.5730 +7027 26523 0.8160 +7027 27113 0.5010 +7027 27161 0.7890 +7027 27327 0.5130 +7027 28991 0.4700 +7027 29099 0.7110 +7027 51053 0.4240 +7027 51171 0.4850 +7027 51433 0.4410 +7027 54531 0.7440 +7027 54939 0.8520 +7027 54951 0.7050 +7027 55002 0.6800 +7027 55534 0.4990 +7027 55957 0.8740 +7027 79733 0.5700 +7027 79774 0.4130 +7027 79813 0.5310 +7027 80012 0.5130 +7027 80314 0.5430 +7027 81620 0.6970 +7027 81669 0.8750 +7027 83746 0.9550 +7027 84108 0.9630 +7027 84441 0.4990 +7027 91750 0.7390 +7027 120892 0.6420 +7027 132660 0.8050 +7027 144455 0.5870 +7027 150684 0.6610 +7027 170622 0.7280 +7027 192669 0.6680 +7027 192670 0.6680 +7027 284131 0.4320 +7027 286826 0.8620 +7029 7083 0.5000 +7029 7153 0.5680 +7029 7157 0.5840 +7029 7298 0.4290 +7029 7703 0.5220 +7029 8318 0.5600 +7029 8395 0.4010 +7029 8454 0.5570 +7029 8678 0.4620 +7029 8726 0.5100 +7029 8850 0.5500 +7029 8900 0.6000 +7029 9134 0.8520 +7029 9616 0.4150 +7029 9794 0.5430 +7029 10046 0.5450 +7029 10138 0.5340 +7029 10919 0.5100 +7029 11073 0.4970 +7029 11335 0.6270 +7029 22919 0.4100 +7029 22938 0.5490 +7029 23112 0.5010 +7029 23269 0.6360 +7029 23429 0.6960 +7029 23468 0.5710 +7029 23512 0.5120 +7029 26271 0.5770 +7029 26523 0.5070 +7029 27113 0.5270 +7029 27161 0.5100 +7029 27327 0.5000 +7029 55002 0.4010 +7029 55534 0.4990 +7029 55775 0.4030 +7029 55957 0.8900 +7029 79733 0.5350 +7029 79813 0.5090 +7029 80012 0.5240 +7029 81620 0.5800 +7029 83746 0.8690 +7029 84108 0.8260 +7029 84441 0.4990 +7029 85025 0.4120 +7029 91750 0.8350 +7029 132660 0.8690 +7029 144455 0.5370 +7029 192669 0.5070 +7029 192670 0.5070 +7029 286826 0.8840 +7029 441925 0.4610 +7030 7076 0.4760 +7030 7157 0.4180 +7030 7249 0.5560 +7030 7299 0.7030 +7030 7306 0.5220 +7030 7405 0.4120 +7030 7532 0.4120 +7030 7849 0.6210 +7030 7942 0.9790 +7030 8241 0.5160 +7030 8408 0.4470 +7030 8678 0.4680 +7030 8878 0.5110 +7030 9474 0.5190 +7030 9776 0.4480 +7030 10325 0.4150 +7030 10413 0.6730 +7030 10457 0.4100 +7030 10526 0.6370 +7030 10533 0.4780 +7030 10670 0.4350 +7030 10908 0.4530 +7030 10971 0.4200 +7030 11337 0.4330 +7030 22797 0.7260 +7030 23192 0.4900 +7030 23261 0.7140 +7030 23345 0.4120 +7030 23600 0.6660 +7030 23710 0.4100 +7030 25937 0.6390 +7030 51176 0.5260 +7030 51586 0.6510 +7030 51747 0.4250 +7030 55062 0.4110 +7030 56850 0.6120 +7030 57192 0.6320 +7030 57521 0.4250 +7030 57600 0.5530 +7030 57617 0.4400 +7030 58528 0.5350 +7030 64121 0.5790 +7030 79058 0.9850 +7030 80317 0.4770 +7030 81631 0.4430 +7030 90333 0.4350 +7030 96459 0.5860 +7030 201163 0.7140 +7030 378949 0.4960 +7031 7033 0.7910 +7031 7494 0.5880 +7031 8202 0.8090 +7031 8648 0.5540 +7031 8850 0.5140 +7031 9112 0.4130 +7031 9564 0.4290 +7031 9687 0.8910 +7031 10498 0.5630 +7031 10524 0.5260 +7031 10551 0.7860 +7031 10894 0.5090 +7031 11119 0.4050 +7031 23001 0.4260 +7031 25803 0.5200 +7031 27043 0.5040 +7031 27159 0.5220 +7031 27181 0.4050 +7031 27290 0.5020 +7031 56287 0.5050 +7031 56667 0.4260 +7031 79908 0.4050 +7031 83417 0.4050 +7031 83998 0.4150 +7031 155465 0.4870 +7031 200504 0.8790 +7031 400823 0.4450 +7031 727897 0.4820 +7031 728378 0.4410 +7031 100131439 0.4110 +7032 7033 0.5530 +7032 7852 0.8170 +7032 8513 0.5160 +7032 8549 0.4530 +7032 8857 0.4440 +7032 9201 0.4180 +7032 10551 0.4960 +7032 10753 0.4590 +7032 11199 0.6920 +7032 11200 0.4470 +7032 51208 0.5570 +7032 53347 0.4570 +7032 56287 0.6600 +7032 56667 0.5270 +7032 83417 0.4110 +7032 83998 0.6430 +7032 92747 0.4870 +7032 140628 0.4240 +7032 168620 0.5950 +7032 200504 0.7850 +7032 388743 0.4250 +7032 727897 0.5990 +7033 7082 0.4340 +7033 7739 0.9230 +7033 7852 0.7510 +7033 8549 0.4800 +7033 8857 0.9380 +7033 9076 0.4450 +7033 10457 0.5080 +7033 10551 0.7990 +7033 10562 0.4050 +7033 22818 0.4330 +7033 25803 0.6050 +7033 27290 0.5970 +7033 53347 0.4340 +7033 54474 0.6170 +7033 54831 0.4810 +7033 54860 0.4620 +7033 56287 0.4130 +7033 56667 0.5800 +7033 57216 0.4240 +7033 64090 0.4140 +7033 81839 0.6870 +7033 83998 0.6980 +7033 84666 0.5110 +7033 89766 0.4380 +7033 130120 0.4970 +7033 144453 0.4750 +7033 155465 0.5410 +7033 158038 0.7410 +7033 196394 0.4630 +7033 200504 0.4900 +7033 653808 0.6820 +7033 727897 0.5150 +7033 100506658 0.4890 +7035 7056 0.9630 +7035 7057 0.8090 +7035 7124 0.4320 +7035 7157 0.4890 +7035 7412 0.4230 +7035 7450 0.7460 +7035 7633 0.5420 +7035 8290 0.4230 +7035 8356 0.4370 +7035 8772 0.4060 +7035 9295 0.4260 +7035 9622 0.4880 +7035 10468 0.4330 +7035 10544 0.8600 +7035 10606 0.4710 +7035 10747 0.5410 +7035 10891 0.4730 +7035 11012 0.4310 +7035 11093 0.5610 +7035 11202 0.4260 +7035 23411 0.5270 +7035 26085 0.4260 +7035 26227 0.4470 +7035 29802 0.4260 +7035 43847 0.4350 +7035 43849 0.4260 +7035 51477 0.4010 +7035 55355 0.4840 +7035 55554 0.4260 +7035 55811 0.7080 +7035 59272 0.5380 +7035 79827 0.7890 +7035 80152 0.5180 +7035 80333 0.4260 +7035 83540 0.4250 +7035 84830 0.5230 +7035 154796 0.5010 +7035 440093 0.4190 +7035 440387 0.6830 +7035 440686 0.4370 +7035 653604 0.4380 +7035 100423062 0.6020 +7036 7037 0.9090 +7036 8443 0.4210 +7036 9518 0.4550 +7036 9843 0.7230 +7036 10998 0.4810 +7036 23513 0.5540 +7036 23516 0.5830 +7036 26872 0.4790 +7036 28982 0.4320 +7036 30061 0.9590 +7036 51312 0.4700 +7036 55240 0.6470 +7036 57045 0.5900 +7036 57817 0.9410 +7036 64858 0.5130 +7036 79901 0.8070 +7036 84706 0.4300 +7036 113235 0.4770 +7036 133522 0.4910 +7036 148738 0.9990 +7036 151176 0.5590 +7036 164656 0.9190 +7037 7038 0.4850 +7037 7052 0.5640 +7037 7066 0.4070 +7037 7070 0.6990 +7037 7099 0.4380 +7037 7112 0.4470 +7037 7124 0.7250 +7037 7132 0.5050 +7037 7157 0.6070 +7037 7163 0.5490 +7037 7164 0.5060 +7037 7184 0.5240 +7037 7251 0.6160 +7037 7317 0.4580 +7037 7321 0.4610 +7037 7328 0.5020 +7037 7389 0.6910 +7037 7412 0.4680 +7037 7415 0.5340 +7037 7416 0.4420 +7037 7417 0.4270 +7037 7448 0.5170 +7037 7454 0.5370 +7037 7534 0.5500 +7037 7535 0.5600 +7037 7538 0.6180 +7037 7837 0.6090 +7037 7852 0.4460 +7037 7879 0.6450 +7037 8031 0.6180 +7037 8140 0.4470 +7037 8153 0.5430 +7037 8218 0.5400 +7037 8301 0.5980 +7037 8411 0.9130 +7037 8417 0.4560 +7037 8443 0.4650 +7037 8453 0.4470 +7037 8476 0.5660 +7037 8503 0.4520 +7037 8514 0.5830 +7037 8517 0.4080 +7037 8546 0.5440 +7037 8673 0.6300 +7037 8674 0.5420 +7037 8723 0.6720 +7037 8766 0.8920 +7037 8773 0.5760 +7037 8775 0.5530 +7037 8826 0.4730 +7037 8829 0.5400 +7037 8842 0.6510 +7037 8871 0.5210 +7037 8874 0.4380 +7037 8905 0.5580 +7037 8907 0.6480 +7037 8976 0.5620 +7037 8992 0.4990 +7037 9026 0.5930 +7037 9054 0.4490 +7037 9076 0.4610 +7037 9080 0.4150 +7037 9114 0.5430 +7037 9146 0.4930 +7037 9260 0.4100 +7037 9296 0.5100 +7037 9322 0.4710 +7037 9332 0.4410 +7037 9341 0.8290 +7037 9352 0.4250 +7037 9414 0.4750 +7037 9429 0.4340 +7037 9475 0.4400 +7037 9497 0.4610 +7037 9518 0.6650 +7037 9528 0.4100 +7037 9550 0.5470 +7037 9567 0.8590 +7037 9578 0.4090 +7037 9595 0.4220 +7037 9685 0.7320 +7037 9694 0.5130 +7037 9698 0.6450 +7037 9727 0.5130 +7037 9744 0.5080 +7037 9748 0.4010 +7037 9829 0.5850 +7037 9843 0.6630 +7037 9856 0.4060 +7037 9892 0.6590 +7037 9978 0.4650 +7037 10006 0.4240 +7037 10053 0.6960 +7037 10058 0.6590 +7037 10133 0.9210 +7037 10146 0.4040 +7037 10152 0.4090 +7037 10159 0.4680 +7037 10162 0.4910 +7037 10163 0.4630 +7037 10211 0.6970 +7037 10228 0.6140 +7037 10298 0.4100 +7037 10312 0.5630 +7037 10376 0.4730 +7037 10618 0.8570 +7037 10661 0.5400 +7037 10673 0.5240 +7037 10691 0.6470 +7037 10717 0.5690 +7037 10735 0.4440 +7037 10787 0.4240 +7037 10788 0.4040 +7037 10890 0.4260 +7037 10938 0.4220 +7037 11021 0.4490 +7037 11060 0.4850 +7037 11113 0.5710 +7037 11311 0.5510 +7037 11337 0.4130 +7037 22841 0.5390 +7037 22905 0.5890 +7037 22916 0.4440 +7037 23002 0.4050 +7037 23048 0.4520 +7037 23075 0.4420 +7037 23191 0.4570 +7037 23303 0.6430 +7037 23353 0.4240 +7037 23431 0.5730 +7037 23433 0.6110 +7037 23456 0.5860 +7037 23479 0.4200 +7037 23513 0.5040 +7037 23516 0.7850 +7037 23527 0.4600 +7037 23545 0.5940 +7037 23557 0.5590 +7037 23580 0.4170 +7037 23621 0.6700 +7037 23657 0.5280 +7037 23673 0.4300 +7037 23677 0.5040 +7037 25894 0.4010 +7037 25977 0.6320 +7037 26043 0.4240 +7037 26050 0.4410 +7037 26056 0.5650 +7037 26119 0.5380 +7037 26205 0.6480 +7037 26234 0.5160 +7037 26258 0.5780 +7037 26277 0.4870 +7037 26872 0.5890 +7037 27131 0.6730 +7037 27289 0.5630 +7037 28964 0.4200 +7037 28982 0.4720 +7037 29126 0.4320 +7037 29851 0.5190 +7037 29881 0.5400 +7037 29941 0.4860 +7037 29978 0.5910 +7037 29988 0.4940 +7037 30061 0.9360 +7037 30816 0.5010 +7037 50617 0.5380 +7037 50943 0.6030 +7037 51257 0.6410 +7037 51312 0.6970 +7037 51382 0.5330 +7037 51429 0.6410 +7037 51522 0.4630 +7037 51537 0.4470 +7037 51606 0.6010 +7037 54443 0.4660 +7037 54536 0.5830 +7037 54583 0.5790 +7037 54874 0.4250 +7037 54885 0.5070 +7037 54977 0.6370 +7037 55004 0.4390 +7037 55016 0.7260 +7037 55054 0.4020 +7037 55075 0.4090 +7037 55240 0.8320 +7037 55330 0.5070 +7037 55333 0.4660 +7037 55353 0.4150 +7037 55532 0.4900 +7037 55717 0.4050 +7037 55789 0.4600 +7037 55814 0.5980 +7037 55845 0.4240 +7037 55847 0.4410 +7037 55914 0.4560 +7037 55930 0.5900 +7037 55968 0.4190 +7037 55971 0.4050 +7037 56924 0.4310 +7037 57045 0.4200 +7037 57144 0.4090 +7037 57381 0.5430 +7037 57403 0.5800 +7037 57542 0.4050 +7037 57817 0.9340 +7037 58513 0.5260 +7037 59272 0.6110 +7037 60682 0.4700 +7037 63971 0.6230 +7037 64083 0.4430 +7037 64116 0.5850 +7037 64145 0.5330 +7037 65124 0.4090 +7037 79065 0.4850 +7037 79901 0.8510 +7037 80223 0.5040 +7037 81567 0.5320 +7037 81609 0.6140 +7037 81624 0.4970 +7037 81631 0.5660 +7037 81839 0.4330 +7037 81894 0.6320 +7037 83593 0.4390 +7037 84062 0.5390 +7037 84699 0.4520 +7037 84883 0.4750 +7037 85439 0.4610 +7037 90423 0.5070 +7037 91010 0.4090 +7037 113235 0.4480 +7037 114885 0.4430 +7037 115123 0.5880 +7037 115825 0.6870 +7037 117584 0.5720 +7037 127124 0.5130 +7037 128239 0.4160 +7037 130340 0.5330 +7037 131540 0.4520 +7037 133482 0.5190 +7037 133522 0.4450 +7037 137902 0.6080 +7037 140459 0.4310 +7037 140885 0.4340 +7037 143098 0.4060 +7037 144402 0.4440 +7037 148738 0.9940 +7037 151176 0.5290 +7037 155066 0.4990 +7037 157769 0.4210 +7037 164656 0.8580 +7037 167410 0.5480 +7037 200894 0.4570 +7037 200895 0.4270 +7037 200933 0.4470 +7037 220972 0.8380 +7037 245972 0.5340 +7037 245973 0.5350 +7037 253959 0.4010 +7037 261729 0.4750 +7037 283129 0.4040 +7037 283349 0.4820 +7037 283847 0.4520 +7037 284119 0.4770 +7037 286133 0.5980 +7037 286451 0.5120 +7037 348235 0.4100 +7037 348793 0.4810 +7037 376267 0.5480 +7037 387849 0.5580 +7037 388552 0.5610 +7037 390243 0.6780 +7037 405754 0.4700 +7037 728378 0.6680 +7037 100133941 0.4660 +7038 7052 0.4400 +7038 7067 0.4230 +7038 7068 0.5430 +7038 7080 0.9230 +7038 7157 0.4180 +7038 7173 0.9850 +7038 7184 0.7160 +7038 7200 0.7380 +7038 7252 0.6120 +7038 7253 0.9720 +7038 7276 0.5920 +7038 7837 0.7510 +7038 7849 0.9330 +7038 7871 0.5140 +7038 8031 0.4100 +7038 8718 0.6580 +7038 9077 0.4440 +7038 9378 0.5030 +7038 9379 0.5100 +7038 9476 0.4740 +7038 9601 0.7050 +7038 9806 0.7020 +7038 10468 0.5930 +7038 10525 0.6690 +7038 10961 0.5040 +7038 11238 0.5400 +7038 23632 0.5240 +7038 26191 0.5640 +7038 29113 0.8210 +7038 50506 0.7120 +7038 51105 0.6470 +7038 53373 0.6250 +7038 53905 0.5030 +7038 54205 0.5870 +7038 54431 0.4710 +7038 54474 0.6210 +7038 55532 0.4180 +7038 57623 0.6550 +7038 78989 0.4130 +7038 79158 0.4930 +7038 84364 0.4220 +7038 90527 0.4690 +7038 115352 0.4380 +7038 128209 0.4270 +7038 137902 0.7530 +7038 140683 0.5010 +7038 169026 0.4070 +7038 377677 0.5350 +7038 389434 0.6930 +7038 400566 0.6010 +7038 405753 0.7390 +7039 7040 0.6710 +7039 7042 0.6740 +7039 7043 0.7010 +7039 7048 0.4090 +7039 7076 0.4400 +7039 7077 0.5590 +7039 7082 0.4870 +7039 7124 0.8330 +7039 7157 0.5730 +7039 7311 0.4990 +7039 7314 0.4990 +7039 7316 0.5260 +7039 7412 0.4160 +7039 7423 0.4250 +7039 7428 0.4470 +7039 7481 0.4140 +7039 7837 0.4250 +7039 7840 0.4890 +7039 8027 0.5120 +7039 8202 0.5140 +7039 8301 0.5110 +7039 8600 0.4110 +7039 8615 0.4990 +7039 8622 0.4220 +7039 8648 0.4400 +7039 8673 0.4990 +7039 8740 0.4890 +7039 8774 0.4990 +7039 8775 0.4990 +7039 8817 0.5850 +7039 8822 0.5830 +7039 8823 0.5910 +7039 8874 0.5140 +7039 9117 0.4990 +7039 9146 0.5320 +7039 9185 0.5040 +7039 9341 0.5320 +7039 9510 0.4970 +7039 9542 0.5060 +7039 9554 0.4990 +7039 9570 0.4990 +7039 9632 0.4990 +7039 9871 0.4990 +7039 9892 0.5030 +7039 9919 0.4990 +7039 9935 0.4050 +7039 10113 0.4990 +7039 10175 0.8840 +7039 10252 0.5370 +7039 10253 0.5820 +7039 10254 0.5260 +7039 10282 0.4990 +7039 10342 0.4990 +7039 10427 0.5130 +7039 10484 0.4990 +7039 10652 0.4990 +7039 10718 0.4310 +7039 10802 0.5010 +7039 10959 0.5260 +7039 10960 0.4990 +7039 10972 0.5220 +7039 11196 0.5630 +7039 22872 0.4990 +7039 22905 0.4990 +7039 23118 0.4430 +7039 23256 0.4990 +7039 23314 0.5400 +7039 26003 0.4170 +7039 26018 0.5320 +7039 26119 0.5070 +7039 26281 0.5910 +7039 26984 0.4990 +7039 27006 0.5930 +7039 29097 0.5620 +7039 29924 0.5320 +7039 29978 0.4990 +7039 30011 0.5540 +7039 51128 0.4990 +7039 55014 0.4990 +7039 55824 0.5000 +7039 56034 0.9340 +7039 58513 0.5310 +7039 59341 0.4100 +7039 60675 0.4210 +7039 63908 0.4990 +7039 64083 0.4030 +7039 64285 0.7060 +7039 64689 0.6920 +7039 79054 0.4020 +7039 79651 0.4310 +7039 79748 0.4990 +7039 80310 0.9190 +7039 81562 0.4990 +7039 84236 0.4430 +7039 84618 0.6610 +7039 85409 0.7680 +7039 89866 0.4990 +7039 90411 0.4990 +7039 137902 0.4250 +7039 145957 0.4830 +7039 149111 0.7700 +7039 162514 0.5840 +7039 254263 0.8030 +7039 255324 0.7290 +7039 284086 0.4220 +7039 347853 0.4610 +7039 375616 0.4080 +7039 100423062 0.6020 +7040 7041 0.5650 +7040 7042 0.9570 +7040 7043 0.9880 +7040 7044 0.9320 +7040 7045 0.6260 +7040 7046 0.9990 +7040 7048 0.9990 +7040 7049 0.9970 +7040 7052 0.4460 +7040 7057 0.9850 +7040 7058 0.4550 +7040 7070 0.6570 +7040 7071 0.7360 +7040 7076 0.8820 +7040 7077 0.7900 +7040 7078 0.7430 +7040 7079 0.4170 +7040 7082 0.5910 +7040 7096 0.4380 +7040 7097 0.6760 +7040 7098 0.4600 +7040 7099 0.7210 +7040 7124 0.9410 +7040 7130 0.5450 +7040 7132 0.6770 +7040 7133 0.6510 +7040 7157 0.8090 +7040 7166 0.4610 +7040 7189 0.4550 +7040 7249 0.5340 +7040 7291 0.6130 +7040 7295 0.4500 +7040 7297 0.4100 +7040 7311 0.6070 +7040 7314 0.5290 +7040 7316 0.7140 +7040 7412 0.6480 +7040 7414 0.4690 +7040 7423 0.4340 +7040 7424 0.5550 +7040 7431 0.6550 +7040 7448 0.7870 +7040 7450 0.5860 +7040 7471 0.4860 +7040 7472 0.4980 +7040 7474 0.5410 +7040 7490 0.4430 +7040 7498 0.4090 +7040 7514 0.5650 +7040 7593 0.5910 +7040 7827 0.4640 +7040 7837 0.7250 +7040 7852 0.7940 +7040 8019 0.4510 +7040 8074 0.4650 +7040 8091 0.4080 +7040 8200 0.5380 +7040 8290 0.4490 +7040 8312 0.4150 +7040 8313 0.4570 +7040 8356 0.4480 +7040 8407 0.4090 +7040 8425 0.9970 +7040 8483 0.4510 +7040 8516 0.7470 +7040 8547 0.4300 +7040 8549 0.5880 +7040 8600 0.5830 +7040 8639 0.6420 +7040 8646 0.6720 +7040 8651 0.4500 +7040 8678 0.4480 +7040 8692 0.7430 +7040 8718 0.5470 +7040 8784 0.4820 +7040 8817 0.8260 +7040 8822 0.8170 +7040 8823 0.8230 +7040 8829 0.9440 +7040 8842 0.5420 +7040 8848 0.5630 +7040 8877 0.4300 +7040 8878 0.6180 +7040 8928 0.4750 +7040 8988 0.4120 +7040 9021 0.6340 +7040 9034 0.5140 +7040 9076 0.4340 +7040 9210 0.5300 +7040 9241 0.4750 +7040 9308 0.4230 +7040 9314 0.5430 +7040 9332 0.6000 +7040 9358 0.5660 +7040 9365 0.5360 +7040 9370 0.5310 +7040 9372 0.7100 +7040 9451 0.4470 +7040 9475 0.4440 +7040 9507 0.4100 +7040 9529 0.4030 +7040 9672 0.5000 +7040 9817 0.4460 +7040 9839 0.6020 +7040 9958 0.5540 +7040 9965 0.5330 +7040 10014 0.4310 +7040 10018 0.5640 +7040 10062 0.5000 +7040 10216 0.4460 +7040 10220 0.4440 +7040 10272 0.4030 +7040 10319 0.4800 +7040 10365 0.4260 +7040 10413 0.4140 +7040 10468 0.7020 +7040 10586 0.5540 +7040 10630 0.4390 +7040 10631 0.7910 +7040 10637 0.9190 +7040 10673 0.4500 +7040 10755 0.4200 +7040 10763 0.5010 +7040 10891 0.4840 +7040 11081 0.5720 +7040 11096 0.4500 +7040 11167 0.7570 +7040 11171 0.5510 +7040 11346 0.5200 +7040 22914 0.5160 +7040 22915 0.4760 +7040 22943 0.5130 +7040 23181 0.4710 +7040 23213 0.4350 +7040 23327 0.5920 +7040 23370 0.5170 +7040 23411 0.5940 +7040 23645 0.5780 +7040 23765 0.4220 +7040 25805 0.8310 +7040 25932 0.4600 +7040 25987 0.4780 +7040 26003 0.4210 +7040 26281 0.8210 +7040 26291 0.4850 +7040 27006 0.8190 +7040 27035 0.4920 +7040 27161 0.4810 +7040 27178 0.4150 +7040 27250 0.5730 +7040 27302 0.4880 +7040 29126 0.7810 +7040 29851 0.4310 +7040 30009 0.7300 +7040 50507 0.6750 +7040 50616 0.5970 +7040 50848 0.6120 +7040 50855 0.5340 +7040 50943 0.8650 +7040 51129 0.6290 +7040 51176 0.4710 +7040 51232 0.4200 +7040 51284 0.4090 +7040 51377 0.5340 +7040 51561 0.6080 +7040 51741 0.5070 +7040 53905 0.4330 +7040 54106 0.4890 +7040 54205 0.4720 +7040 54361 0.4330 +7040 54507 0.4360 +7040 54567 0.4020 +7040 54829 0.9170 +7040 56034 0.6170 +7040 56288 0.5380 +7040 57154 0.7980 +7040 57530 0.5210 +7040 58191 0.4300 +7040 59272 0.4750 +7040 64061 0.4210 +7040 64083 0.4740 +7040 64102 0.4620 +7040 64750 0.8280 +7040 65997 0.4830 +7040 79685 0.4390 +7040 79923 0.5520 +7040 80380 0.5670 +7040 80381 0.4990 +7040 80781 0.4640 +7040 81628 0.4190 +7040 83729 0.9050 +7040 83881 0.4250 +7040 83942 0.4830 +7040 84433 0.4570 +7040 84666 0.5070 +7040 84868 0.6600 +7040 84897 0.4310 +7040 85480 0.4810 +7040 89780 0.6950 +7040 90865 0.5830 +7040 91252 0.4720 +7040 93649 0.5270 +7040 94241 0.4350 +7040 112744 0.8010 +7040 114548 0.4720 +7040 114990 0.7580 +7040 115908 0.6580 +7040 117166 0.6340 +7040 117581 0.4170 +7040 121340 0.4800 +7040 124857 0.6270 +7040 130399 0.6770 +7040 135228 0.8840 +7040 137902 0.7240 +7040 149233 0.5870 +7040 154075 0.4250 +7040 169355 0.5850 +7040 257202 0.5160 +7040 259197 0.6340 +7040 284312 0.5750 +7040 284654 0.5130 +7040 375387 0.9610 +7040 375790 0.5470 +7040 387496 0.4400 +7040 401115 0.5460 +7040 440093 0.4480 +7040 440533 0.6390 +7040 440686 0.4480 +7040 493869 0.5420 +7040 653361 0.4510 +7040 653604 0.4480 +7040 727897 0.5170 +7040 728378 0.4030 +7040 100133941 0.4840 +7040 100506658 0.5220 +7041 7057 0.4320 +7041 7094 0.7640 +7041 7145 0.6570 +7041 7414 0.9590 +7041 7430 0.4100 +7041 7704 0.4220 +7041 8031 0.6810 +7041 9050 0.4270 +7041 9051 0.4580 +7041 9143 0.4960 +7041 9463 0.6110 +7041 9564 0.7060 +7041 9604 0.7470 +7041 9618 0.9110 +7041 9815 0.4910 +7041 10114 0.4260 +7041 10211 0.4110 +7041 10398 0.5630 +7041 23624 0.5590 +7041 28964 0.8470 +7041 29780 0.6160 +7041 30008 0.5180 +7041 51206 0.4600 +7041 51226 0.4150 +7041 51450 0.4170 +7041 54538 0.4350 +7041 55742 0.7240 +7041 55848 0.4250 +7041 60681 0.4290 +7041 64098 0.5770 +7041 83660 0.7760 +7041 130271 0.6970 +7041 225689 0.6540 +7041 653361 0.9050 +7042 7043 0.9300 +7042 7045 0.4740 +7042 7046 0.9980 +7042 7048 0.9990 +7042 7049 0.9960 +7042 7052 0.6180 +7042 7057 0.8920 +7042 7058 0.4150 +7042 7076 0.6960 +7042 7077 0.6800 +7042 7078 0.4310 +7042 7082 0.4180 +7042 7124 0.7910 +7042 7132 0.4110 +7042 7157 0.4960 +7042 7249 0.4390 +7042 7251 0.4480 +7042 7291 0.4800 +7042 7424 0.4350 +7042 7431 0.4650 +7042 7448 0.5190 +7042 7474 0.4800 +7042 7481 0.5440 +7042 7837 0.4520 +7042 7852 0.4100 +7042 8425 0.8020 +7042 8516 0.6030 +7042 8600 0.5540 +7042 8646 0.6290 +7042 8817 0.5260 +7042 8822 0.4980 +7042 8823 0.5070 +7042 8878 0.4870 +7042 9241 0.4020 +7042 9839 0.4870 +7042 10392 0.4100 +7042 10468 0.4540 +7042 10631 0.5490 +7042 10666 0.4370 +7042 11061 0.5340 +7042 22943 0.4190 +7042 25805 0.4120 +7042 26281 0.5090 +7042 26585 0.7430 +7042 27006 0.5130 +7042 29126 0.4390 +7042 30008 0.4490 +7042 50943 0.5460 +7042 51232 0.5090 +7042 51692 0.4040 +7042 54829 0.5720 +7042 55914 0.4460 +7042 64102 0.4330 +7042 64750 0.5140 +7042 81031 0.4790 +7042 81849 0.4140 +7042 114990 0.8220 +7042 130399 0.4660 +7042 137902 0.4310 +7042 375790 0.5120 +7042 401262 0.4320 +7043 7044 0.9360 +7043 7045 0.4350 +7043 7046 0.9990 +7043 7048 0.9990 +7043 7049 0.9930 +7043 7057 0.8900 +7043 7070 0.5810 +7043 7076 0.5610 +7043 7077 0.5800 +7043 7078 0.5630 +7043 7124 0.5780 +7043 7273 0.4010 +7043 7291 0.4350 +7043 7373 0.6140 +7043 7450 0.4190 +7043 7474 0.4390 +7043 7837 0.4150 +7043 8076 0.4160 +7043 8200 0.5310 +7043 8425 0.7210 +7043 8516 0.6110 +7043 8646 0.4580 +7043 8817 0.6920 +7043 8822 0.6680 +7043 8823 0.6760 +7043 8840 0.5530 +7043 9241 0.4180 +7043 10454 0.4690 +7043 10468 0.6630 +7043 10631 0.5550 +7043 10637 0.9120 +7043 11213 0.4870 +7043 22846 0.5710 +7043 23357 0.5890 +7043 23607 0.4770 +7043 26281 0.6770 +7043 27006 0.6800 +7043 29119 0.4190 +7043 29954 0.4060 +7043 30008 0.4940 +7043 50943 0.5260 +7043 51176 0.5820 +7043 51450 0.4230 +7043 54829 0.6770 +7043 56034 0.5980 +7043 64102 0.5680 +7043 79188 0.8550 +7043 81031 0.4270 +7043 83729 0.9080 +7043 89780 0.4360 +7043 114990 0.8240 +7043 116039 0.5470 +7043 121340 0.4010 +7043 130399 0.4760 +7043 137902 0.4120 +7043 145501 0.7060 +7044 7547 0.9260 +7044 8325 0.4840 +7044 8433 0.4900 +7044 8646 0.4590 +7044 8701 0.5710 +7044 8928 0.7660 +7044 9314 0.4220 +7044 9350 0.8010 +7044 9371 0.4830 +7044 9573 0.7130 +7044 10052 0.4340 +7044 10370 0.6040 +7044 10589 0.6020 +7044 10637 0.9650 +7044 22943 0.4990 +7044 25914 0.6370 +7044 27022 0.4040 +7044 27130 0.5690 +7044 29842 0.4060 +7044 51575 0.4250 +7044 54361 0.4680 +7044 55211 0.5090 +7044 55997 0.9340 +7044 57167 0.4170 +7044 57589 0.4970 +7044 63978 0.6670 +7044 64321 0.5330 +7044 78987 0.4680 +7044 79727 0.4380 +7044 79923 0.7660 +7044 83881 0.4590 +7044 84976 0.4890 +7044 130399 0.6910 +7044 132625 0.5490 +7044 199699 0.5690 +7044 201456 0.4020 +7044 359787 0.4180 +7045 7046 0.4420 +7045 7048 0.6660 +7045 7049 0.6100 +7045 7050 0.4670 +7045 7057 0.5770 +7045 7058 0.4330 +7045 7076 0.4910 +7045 7276 0.4980 +7045 7305 0.5210 +7045 7431 0.4780 +7045 7448 0.5980 +7045 7450 0.5000 +7045 8387 0.4720 +7045 9445 0.4770 +7045 10278 0.5220 +7045 10457 0.4990 +7045 10516 0.4140 +7045 10631 0.6430 +7045 11340 0.4790 +7045 27122 0.5890 +7045 29914 0.4240 +7045 30813 0.5170 +7045 54959 0.4060 +7045 55167 0.5590 +7045 60436 0.8900 +7045 83959 0.4570 +7045 84627 0.4010 +7045 85477 0.4630 +7045 90316 0.8490 +7045 90655 0.8540 +7045 140886 0.6350 +7045 408187 0.4310 +7045 643394 0.4040 +7046 7048 0.9990 +7046 7049 0.9770 +7046 7057 0.4900 +7046 7076 0.4350 +7046 7099 0.4360 +7046 7124 0.5020 +7046 7132 0.5050 +7046 7157 0.5220 +7046 7168 0.4140 +7046 7189 0.9930 +7046 7291 0.4340 +7046 7311 0.5240 +7046 7314 0.5530 +7046 7316 0.5740 +7046 7375 0.9280 +7046 7431 0.4080 +7046 7486 0.4580 +7046 7514 0.5750 +7046 7531 0.5490 +7046 7534 0.4830 +7046 7837 0.4640 +7046 7852 0.5810 +7046 8200 0.5090 +7046 8237 0.5010 +7046 8312 0.4090 +7046 8325 0.5300 +7046 8817 0.4200 +7046 8822 0.4180 +7046 8823 0.4340 +7046 8829 0.6270 +7046 8848 0.4130 +7046 9210 0.4300 +7046 9241 0.4670 +7046 9314 0.4150 +7046 9372 0.8780 +7046 9392 0.6820 +7046 9429 0.5080 +7046 9497 0.4050 +7046 9618 0.6420 +7046 9817 0.4750 +7046 9839 0.4560 +7046 9958 0.8920 +7046 10213 0.5410 +7046 10220 0.9990 +7046 10342 0.4230 +7046 10371 0.4420 +7046 10413 0.9300 +7046 10454 0.8900 +7046 10468 0.6920 +7046 10631 0.4140 +7046 10755 0.4880 +7046 10818 0.4630 +7046 10979 0.4510 +7046 11059 0.5820 +7046 11060 0.4480 +7046 11167 0.4830 +7046 11171 0.8290 +7046 11259 0.4870 +7046 23118 0.6780 +7046 23327 0.6690 +7046 23370 0.5110 +7046 23645 0.7550 +7046 23767 0.4580 +7046 25805 0.9880 +7046 26281 0.4350 +7046 27006 0.4260 +7046 27302 0.7270 +7046 28956 0.4280 +7046 30008 0.4730 +7046 50507 0.4160 +7046 50848 0.5340 +7046 50855 0.8160 +7046 51377 0.7670 +7046 54778 0.4450 +7046 55636 0.4580 +7046 56288 0.5500 +7046 56937 0.4670 +7046 56944 0.4430 +7046 57154 0.9890 +7046 57530 0.5440 +7046 58533 0.5390 +7046 64102 0.4440 +7046 64750 0.9990 +7046 64805 0.4970 +7046 81031 0.5570 +7046 81614 0.4030 +7046 83737 0.4410 +7046 83891 0.4460 +7046 84627 0.4220 +7046 84870 0.4070 +7046 89780 0.4260 +7046 113189 0.4350 +7046 116844 0.4270 +7046 130399 0.9550 +7046 133482 0.5240 +7046 136991 0.4460 +7046 137902 0.4640 +7046 140733 0.5100 +7046 145173 0.4230 +7046 151449 0.5650 +7046 168002 0.5810 +7046 169841 0.5870 +7046 338773 0.4020 +7046 375748 0.4220 +7046 392255 0.4390 +7046 642658 0.4740 +7046 100506658 0.8880 +7047 7180 0.4080 +7047 8411 0.4240 +7047 9066 0.6340 +7047 9588 0.4680 +7047 9846 0.4200 +7047 11012 0.4530 +7047 51304 0.4020 +7047 54665 0.4180 +7047 57533 0.5350 +7047 64518 0.4240 +7047 79689 0.6490 +7047 85414 0.4890 +7047 85477 0.4070 +7047 147686 0.4280 +7047 204474 0.5240 +7047 221223 0.4230 +7047 261729 0.7200 +7047 283518 0.5130 +7047 286826 0.4190 +7047 399968 0.6780 +7048 7049 0.9860 +7048 7057 0.5220 +7048 7076 0.4540 +7048 7077 0.4090 +7048 7099 0.4450 +7048 7124 0.8130 +7048 7133 0.4480 +7048 7157 0.6180 +7048 7189 0.8420 +7048 7249 0.5370 +7048 7291 0.4500 +7048 7293 0.5000 +7048 7311 0.5240 +7048 7314 0.5310 +7048 7316 0.5690 +7048 7373 0.4920 +7048 7431 0.4140 +7048 7486 0.4120 +7048 7514 0.5590 +7048 7837 0.4350 +7048 7852 0.4560 +7048 7905 0.4260 +7048 8038 0.8530 +7048 8091 0.4020 +7048 8200 0.4450 +7048 8289 0.4750 +7048 8312 0.4340 +7048 8313 0.4330 +7048 8425 0.4170 +7048 8503 0.6910 +7048 8522 0.4130 +7048 8668 0.6170 +7048 8692 0.5620 +7048 8743 0.5040 +7048 8784 0.4180 +7048 8826 0.6380 +7048 8829 0.7820 +7048 8878 0.6480 +7048 8988 0.4560 +7048 9040 0.5330 +7048 9133 0.4250 +7048 9314 0.4130 +7048 9372 0.9080 +7048 9392 0.6550 +7048 9518 0.9600 +7048 9618 0.5880 +7048 9839 0.4800 +7048 9940 0.4240 +7048 9958 0.5970 +7048 9968 0.4860 +7048 10213 0.5870 +7048 10220 0.4160 +7048 10392 0.4900 +7048 10413 0.9320 +7048 10631 0.4050 +7048 10716 0.4500 +7048 11167 0.4580 +7048 11171 0.8900 +7048 11186 0.4360 +7048 22861 0.4720 +7048 23327 0.6050 +7048 23339 0.6730 +7048 23370 0.5490 +7048 23645 0.5530 +7048 25805 0.7100 +7048 26509 0.5020 +7048 27130 0.4650 +7048 27302 0.4740 +7048 28990 0.4410 +7048 29126 0.6830 +7048 30008 0.4990 +7048 50848 0.5220 +7048 50855 0.6160 +7048 50943 0.5070 +7048 51377 0.5650 +7048 51752 0.4190 +7048 54510 0.4100 +7048 54894 0.4480 +7048 55294 0.4410 +7048 55636 0.4240 +7048 56288 0.5350 +7048 57154 0.9830 +7048 57530 0.5370 +7048 59272 0.4030 +7048 64750 0.9810 +7048 64844 0.5990 +7048 78987 0.4310 +7048 79753 0.4110 +7048 80176 0.4330 +7048 81031 0.5260 +7048 81619 0.4260 +7048 84957 0.7250 +7048 114294 0.4040 +7048 114801 0.4200 +7048 116844 0.4640 +7048 130399 0.5750 +7048 131450 0.4730 +7048 136991 0.4540 +7048 137902 0.4350 +7048 222663 0.8750 +7048 252995 0.4060 +7048 284110 0.4540 +7048 343521 0.5960 +7048 375748 0.4020 +7048 100423062 0.4560 +7048 100506658 0.4920 +7049 7082 0.4220 +7049 7124 0.4180 +7049 7157 0.5100 +7049 7474 0.5250 +7049 7881 0.4130 +7049 8200 0.7090 +7049 8202 0.4240 +7049 8322 0.5660 +7049 8434 0.4720 +7049 8522 0.5260 +7049 8829 0.4220 +7049 10755 0.4450 +7049 11012 0.4320 +7049 11127 0.4240 +7049 22914 0.4910 +7049 26524 0.4710 +7049 56963 0.4080 +7049 64581 0.7810 +7049 79971 0.7940 +7049 84870 0.4810 +7049 124583 0.4200 +7049 130399 0.4250 +7050 7182 0.4180 +7050 7546 0.5430 +7050 8928 0.5120 +7050 9572 0.4010 +7050 25937 0.5390 +7050 25942 0.4530 +7050 50937 0.4490 +7050 60436 0.9110 +7050 84976 0.4310 +7050 116039 0.4580 +7051 7062 0.6730 +7051 7761 0.4420 +7051 7762 0.4270 +7051 7918 0.4220 +7051 8139 0.4030 +7051 8502 0.5180 +7051 8788 0.5160 +7051 8796 0.4420 +7051 9333 0.7650 +7051 10481 0.5420 +7051 10999 0.5530 +7051 11005 0.5660 +7051 11187 0.6690 +7051 23353 0.5250 +7051 23581 0.7190 +7051 23644 0.5200 +7051 25818 0.4110 +7051 26154 0.9520 +7051 26239 0.6790 +7051 26958 0.4240 +7051 29841 0.5320 +7051 51099 0.6810 +7051 54544 0.4270 +7051 55683 0.5140 +7051 55893 0.4240 +7051 57595 0.4350 +7051 57822 0.7920 +7051 59344 0.8990 +7051 64324 0.4080 +7051 84518 0.5600 +7051 84648 0.7130 +7051 121214 0.6080 +7051 126410 0.9190 +7051 126638 0.7190 +7051 147409 0.6600 +7051 148979 0.5350 +7051 149018 0.5100 +7051 151516 0.4500 +7051 199834 0.5890 +7051 204219 0.6720 +7051 254910 0.6180 +7051 285848 0.7720 +7051 348938 0.9590 +7051 353131 0.5900 +7051 353132 0.6780 +7051 353133 0.5720 +7051 353134 0.6420 +7051 353135 0.5740 +7051 353137 0.6400 +7051 353139 0.5860 +7051 353140 0.6110 +7051 353141 0.6050 +7051 353142 0.6070 +7051 353143 0.4990 +7051 353144 0.5790 +7051 353145 0.6400 +7051 374897 0.4080 +7051 388698 0.8190 +7051 448835 0.6400 +7051 643418 0.6240 +7052 7057 0.5810 +7052 7124 0.4550 +7052 7139 0.4270 +7052 7157 0.5260 +7052 7173 0.5780 +7052 7251 0.5740 +7052 7431 0.4340 +7052 7448 0.4320 +7052 8290 0.4230 +7052 8324 0.4400 +7052 8718 0.4320 +7052 8878 0.6040 +7052 9124 0.5200 +7052 9289 0.8520 +7052 10631 0.5800 +7052 26471 0.4820 +7052 27306 0.4690 +7052 27348 0.4110 +7052 51458 0.4530 +7052 51535 0.5490 +7052 65018 0.5990 +7052 79772 0.4080 +7052 80781 0.6690 +7052 90070 0.5060 +7052 133482 0.4620 +7052 374897 0.6340 +7053 7062 0.4910 +7053 8796 0.5090 +7053 9189 0.4130 +7053 11005 0.5230 +7053 23581 0.7800 +7053 25818 0.4110 +7053 26085 0.4210 +7053 26154 0.5290 +7053 49860 0.7360 +7053 51806 0.5500 +7053 55930 0.4020 +7053 83858 0.4030 +7053 84518 0.6670 +7053 89777 0.5170 +7053 91179 0.4890 +7053 144501 0.5230 +7053 147409 0.4190 +7053 374897 0.8330 +7053 388533 0.6290 +7053 388697 0.4260 +7053 388698 0.7770 +7053 448834 0.5080 +7054 7070 0.5670 +7054 7099 0.5550 +7054 7124 0.4960 +7054 7173 0.9240 +7054 7200 0.5430 +7054 7299 0.9630 +7054 7345 0.6310 +7054 7350 0.5930 +7054 7351 0.6170 +7054 7352 0.5560 +7054 7432 0.8270 +7054 7442 0.5950 +7054 7529 0.7180 +7054 7531 0.4520 +7054 7532 0.9030 +7054 7533 0.5560 +7054 7534 0.8780 +7054 7837 0.7430 +7054 8224 0.5230 +7054 8929 0.7630 +7054 9175 0.4100 +7054 9607 0.4980 +7054 10190 0.4370 +7054 10381 0.5100 +7054 10763 0.6490 +7054 10891 0.4330 +7054 10971 0.5830 +7054 11315 0.6590 +7054 23400 0.4460 +7054 23440 0.4200 +7054 51083 0.8420 +7054 51738 0.4790 +7054 51806 0.4390 +7054 54205 0.4220 +7054 54906 0.6800 +7054 55079 0.5670 +7054 55188 0.5070 +7054 55879 0.4540 +7054 56521 0.4310 +7054 57016 0.9210 +7054 57030 0.6260 +7054 57084 0.7180 +7054 63973 0.4790 +7054 64919 0.4830 +7054 64943 0.4430 +7054 65018 0.6310 +7054 84105 0.9790 +7054 84152 0.6690 +7054 84634 0.4830 +7054 84687 0.4850 +7054 84842 0.4080 +7054 84894 0.4860 +7054 91860 0.4200 +7054 93986 0.5310 +7054 94233 0.4540 +7054 120892 0.5950 +7054 126206 0.4530 +7054 137362 0.9310 +7054 137902 0.7430 +7054 140679 0.6400 +7054 146713 0.7130 +7054 163688 0.4200 +7054 200895 0.9370 +7054 220074 0.7240 +7054 246213 0.5890 +7054 257202 0.4180 +7054 259307 0.9080 +7054 387129 0.4140 +7054 387755 0.4710 +7054 441549 0.7680 +7054 493869 0.4180 +7054 104909134 0.4720 +7056 7057 0.4030 +7056 7097 0.5550 +7056 7098 0.5650 +7056 7099 0.7390 +7056 7124 0.6290 +7056 7292 0.5230 +7056 7412 0.6740 +7056 7450 0.9120 +7056 7490 0.4030 +7056 7980 0.5410 +7056 8526 0.8080 +7056 8547 0.6130 +7056 8828 0.4050 +7056 8829 0.7550 +7056 9308 0.5490 +7056 9314 0.4770 +7056 9332 0.5350 +7056 9622 0.4040 +7056 9656 0.4660 +7056 9728 0.4520 +7056 10365 0.6190 +7056 10462 0.4750 +7056 10544 0.9990 +7056 10584 0.6130 +7056 10747 0.6840 +7056 10877 0.5110 +7056 10878 0.6320 +7056 11025 0.4580 +7056 11093 0.7200 +7056 22856 0.6080 +7056 22918 0.4350 +7056 23705 0.7790 +7056 25936 0.4200 +7056 25974 0.5520 +7056 27429 0.5490 +7056 29126 0.4560 +7056 30835 0.5760 +7056 50489 0.6170 +7056 50856 0.4880 +7056 50943 0.4090 +7056 51284 0.5520 +7056 51311 0.4650 +7056 53616 0.5820 +7056 54106 0.5240 +7056 54474 0.4060 +7056 54933 0.4130 +7056 55509 0.6360 +7056 56253 0.6830 +7056 57110 0.5310 +7056 59272 0.4390 +7056 64581 0.5710 +7056 65258 0.7180 +7056 78989 0.6260 +7056 79586 0.6570 +7056 81494 0.6530 +7056 140685 0.4400 +7056 140885 0.6060 +7056 170482 0.9040 +7056 283420 0.8950 +7056 387837 0.4700 +7056 445329 0.8350 +7056 100526664 0.6020 +7057 7058 0.6480 +7057 7059 0.6960 +7057 7060 0.4730 +7057 7075 0.4850 +7057 7076 0.7620 +7057 7077 0.5110 +7057 7078 0.6300 +7057 7097 0.6240 +7057 7099 0.5010 +7057 7123 0.5890 +7057 7124 0.5670 +7057 7130 0.8670 +7057 7157 0.7200 +7057 7171 0.5720 +7057 7251 0.4430 +7057 7291 0.4010 +7057 7301 0.6030 +7057 7412 0.6680 +7057 7414 0.4350 +7057 7424 0.5580 +7057 7431 0.6330 +7057 7436 0.9070 +7057 7448 0.8260 +7057 7450 0.7710 +7057 7545 0.4150 +7057 7804 0.8360 +7057 7837 0.4400 +7057 7852 0.4610 +7057 7980 0.5280 +7057 8085 0.4420 +7057 8331 0.4280 +7057 8334 0.4410 +7057 8337 0.4800 +7057 8338 0.4780 +7057 8340 0.4490 +7057 8341 0.4400 +7057 8342 0.4440 +7057 8345 0.4390 +7057 8347 0.4380 +7057 8348 0.4390 +7057 8349 0.5060 +7057 8356 0.5880 +7057 8361 0.4810 +7057 8404 0.4650 +7057 8515 0.6890 +7057 8516 0.7460 +7057 8817 0.4900 +7057 8822 0.4760 +7057 8823 0.4990 +7057 8829 0.6010 +7057 8850 0.4630 +7057 8970 0.4480 +7057 9021 0.4380 +7057 9068 0.4980 +7057 9070 0.4210 +7057 9172 0.4920 +7057 9332 0.4570 +7057 9477 0.6280 +7057 9507 0.5600 +7057 9508 0.4990 +7057 9510 0.6280 +7057 9739 0.4410 +7057 9757 0.4250 +7057 10082 0.4070 +7057 10332 0.4870 +7057 10461 0.4060 +7057 10516 0.5390 +7057 10563 0.4740 +7057 10631 0.6480 +7057 10875 0.7780 +7057 11091 0.4660 +7057 11315 0.4370 +7057 22801 0.7490 +7057 22871 0.5360 +7057 22915 0.4910 +7057 22918 0.4210 +7057 23067 0.4230 +7057 23175 0.4400 +7057 23275 0.8260 +7057 23309 0.4560 +7057 23617 0.4030 +7057 23671 0.4260 +7057 25942 0.4810 +7057 26281 0.4770 +7057 26577 0.4570 +7057 27006 0.5060 +7057 27164 0.4090 +7057 27250 0.4790 +7057 30835 0.5300 +7057 50848 0.4020 +7057 51129 0.4050 +7057 51378 0.5140 +7057 51406 0.6100 +7057 51450 0.4060 +7057 51592 0.4580 +7057 54145 0.4430 +7057 54205 0.5060 +7057 54443 0.4130 +7057 54458 0.6850 +7057 55170 0.7250 +7057 55312 0.5780 +7057 55366 0.4620 +7057 55720 0.4160 +7057 55766 0.4290 +7057 55904 0.4610 +7057 56034 0.4190 +7057 57554 0.4260 +7057 58508 0.4500 +7057 79174 0.4590 +7057 80381 0.4970 +7057 80781 0.8640 +7057 83706 0.4640 +7057 83942 0.4430 +7057 84661 0.4660 +7057 84870 0.5550 +7057 85236 0.4590 +7057 89780 0.5070 +7057 91937 0.4740 +7057 94239 0.4450 +7057 128209 0.4040 +7057 128312 0.4410 +7057 131873 0.5120 +7057 140885 0.7560 +7057 145173 0.7600 +7057 147381 0.4110 +7057 161882 0.4560 +7057 255626 0.4390 +7057 284217 0.5190 +7057 338323 0.6130 +7057 343637 0.5280 +7057 474382 0.4500 +7057 653145 0.5240 +7057 653604 0.5500 +7058 7059 0.4970 +7058 7060 0.5190 +7058 7070 0.4810 +7058 7076 0.5610 +7058 7077 0.4710 +7058 7078 0.5380 +7058 7130 0.4910 +7058 7373 0.5050 +7058 7412 0.6140 +7058 7424 0.4670 +7058 7450 0.4760 +7058 8404 0.5500 +7058 8483 0.6670 +7058 8515 0.7360 +7058 8516 0.7430 +7058 9429 0.4030 +7058 10082 0.4680 +7058 10100 0.4830 +7058 10153 0.4240 +7058 10335 0.4070 +7058 10631 0.8280 +7058 11273 0.4270 +7058 22795 0.4050 +7058 22801 0.8170 +7058 23213 0.6520 +7058 23275 0.4230 +7058 23452 0.4510 +7058 25878 0.5620 +7058 25903 0.4010 +7058 26585 0.4050 +7058 30008 0.4380 +7058 51378 0.4100 +7058 54458 0.5560 +7058 54829 0.7420 +7058 55055 0.4710 +7058 60681 0.4200 +7058 64094 0.4310 +7058 79981 0.4200 +7058 80310 0.4600 +7058 80781 0.5510 +7058 90952 0.4190 +7058 115908 0.5200 +7058 121457 0.4470 +7058 131578 0.4600 +7058 131873 0.5450 +7058 145173 0.5910 +7058 151887 0.4050 +7058 253769 0.4010 +7058 253935 0.4070 +7058 284217 0.5390 +7059 7060 0.8210 +7059 7148 0.5480 +7059 7153 0.4140 +7059 8515 0.6990 +7059 8516 0.7800 +7059 9578 0.4310 +7059 10712 0.4910 +7059 22801 0.7390 +7059 22926 0.4100 +7059 23096 0.4490 +7059 51673 0.4490 +7059 54101 0.4100 +7059 54458 0.4230 +7059 57478 0.4060 +7059 80128 0.9110 +7059 80737 0.4260 +7059 131873 0.5490 +7059 133584 0.4130 +7059 338440 0.4060 +7059 375444 0.4200 +7060 7373 0.4110 +7060 7450 0.4540 +7060 7850 0.4600 +7060 8404 0.5170 +7060 8483 0.6760 +7060 8515 0.7300 +7060 8516 0.7110 +7060 8557 0.5610 +7060 9378 0.4370 +7060 9379 0.4770 +7060 9991 0.4780 +7060 10631 0.7740 +7060 22801 0.7170 +7060 22926 0.9180 +7060 28959 0.4270 +7060 54829 0.4600 +7060 64102 0.7410 +7060 64714 0.4230 +7060 114882 0.4280 +7060 126014 0.4230 +7060 131873 0.5430 +7060 166824 0.5120 +7060 283078 0.5190 +7060 375790 0.4740 +7060 642658 0.4500 +7062 7267 0.6830 +7062 8456 0.4150 +7062 8502 0.5070 +7062 11187 0.5360 +7062 23581 0.5360 +7062 26239 0.5990 +7062 29943 0.5320 +7062 49860 0.4170 +7062 51702 0.8850 +7062 83896 0.4590 +7062 84648 0.5800 +7062 112802 0.6680 +7062 121391 0.4440 +7062 126637 0.4560 +7062 126638 0.8120 +7062 140258 0.4130 +7062 147183 0.6490 +7062 147409 0.7380 +7062 149018 0.5950 +7062 199834 0.4990 +7062 254910 0.5730 +7062 337880 0.5560 +7062 342574 0.5390 +7062 345456 0.4350 +7062 353131 0.4990 +7062 353132 0.5130 +7062 353133 0.5590 +7062 353134 0.4990 +7062 353135 0.5020 +7062 353137 0.4990 +7062 353139 0.5040 +7062 353140 0.5090 +7062 353141 0.4990 +7062 353142 0.5380 +7062 353143 0.6260 +7062 353144 0.6370 +7062 353145 0.5890 +7062 375189 0.4290 +7062 388698 0.6600 +7062 448835 0.5690 +7062 100132476 0.4130 +7064 7174 0.6390 +7064 7531 0.5730 +7064 8568 0.4590 +7064 9361 0.5100 +7064 9491 0.4130 +7064 9520 0.4780 +7064 10072 0.6450 +7064 10200 0.4200 +7064 10228 0.7120 +7064 10535 0.4070 +7064 51056 0.4560 +7064 51073 0.4220 +7064 51752 0.5100 +7064 51806 0.6680 +7064 53615 0.6320 +7064 54328 0.4030 +7064 55210 0.4410 +7064 59272 0.5280 +7064 64167 0.4050 +7064 79039 0.4940 +7064 79258 0.6890 +7064 84181 0.4060 +7064 89932 0.4630 +7064 91860 0.6610 +7064 116512 0.4310 +7064 152185 0.4140 +7064 163688 0.6610 +7066 7124 0.4360 +7066 7297 0.4830 +7066 7450 0.5780 +7066 7852 0.6440 +7066 8646 0.5000 +7066 8660 0.4350 +7066 8842 0.4310 +7066 9180 0.6610 +7066 9466 0.6560 +7066 10019 0.7900 +7066 10212 0.5550 +7066 10563 0.4720 +7066 10850 0.4680 +7066 11093 0.6120 +7066 11273 0.4930 +7066 22852 0.4310 +7066 27329 0.5280 +7066 50615 0.6610 +7066 51554 0.4240 +7066 53832 0.6710 +7066 53833 0.6510 +7066 54790 0.6660 +7066 58985 0.6500 +7066 84324 0.4350 +7066 84930 0.4990 +7066 116379 0.6500 +7066 149233 0.6580 +7066 163702 0.6540 +7066 171023 0.6230 +7067 7068 0.9380 +7067 7069 0.4120 +7067 7083 0.4060 +7067 7084 0.5860 +7067 7200 0.6380 +7067 7201 0.5850 +7067 7252 0.6020 +7067 7253 0.5110 +7067 7276 0.4850 +7067 7329 0.5670 +7067 7341 0.4600 +7067 8013 0.4570 +7067 8202 0.9060 +7067 8204 0.8270 +7067 8431 0.4400 +7067 8455 0.4010 +7067 8503 0.9110 +7067 8648 0.9690 +7067 8805 0.4400 +7067 8841 0.8510 +7067 8850 0.6690 +7067 9063 0.4150 +7067 9125 0.5490 +7067 9213 0.4480 +7067 9282 0.7670 +7067 9318 0.6000 +7067 9321 0.4220 +7067 9412 0.5210 +7067 9440 0.8370 +7067 9442 0.6750 +7067 9611 0.9780 +7067 9612 0.9130 +7067 9857 0.4460 +7067 9862 0.8930 +7067 9967 0.4720 +7067 9968 0.8390 +7067 9969 0.6750 +7067 10025 0.8440 +7067 10499 0.8680 +7067 10587 0.8610 +7067 10891 0.4060 +7067 23054 0.7350 +7067 23389 0.6620 +7067 23421 0.7690 +7067 23426 0.7220 +7067 25819 0.5520 +7067 25942 0.6620 +7067 29079 0.6500 +7067 53919 0.4630 +7067 54583 0.5700 +7067 57472 0.6610 +7067 63925 0.5140 +7067 85441 0.5640 +7067 90390 0.6950 +7067 112399 0.6170 +7067 116931 0.6580 +7067 117247 0.5140 +7067 286451 0.4900 +7067 375611 0.4940 +7067 389434 0.4230 +7068 7069 0.4440 +7068 7084 0.4470 +7068 7124 0.4840 +7068 7157 0.7050 +7068 7200 0.7440 +7068 7201 0.4270 +7068 7205 0.4030 +7068 7252 0.6380 +7068 7253 0.5390 +7068 7276 0.4620 +7068 7299 0.4140 +7068 7329 0.5580 +7068 7341 0.4570 +7068 7849 0.4020 +7068 8001 0.4440 +7068 8202 0.9380 +7068 8204 0.5350 +7068 8431 0.5190 +7068 8503 0.9130 +7068 8554 0.4160 +7068 8648 0.9850 +7068 8841 0.7760 +7068 8850 0.6830 +7068 9213 0.5890 +7068 9232 0.4150 +7068 9282 0.6600 +7068 9318 0.7400 +7068 9319 0.6270 +7068 9320 0.5120 +7068 9321 0.4750 +7068 9324 0.7530 +7068 9325 0.6980 +7068 9326 0.5840 +7068 9440 0.6590 +7068 9442 0.6660 +7068 9611 0.9820 +7068 9612 0.9640 +7068 9862 0.6530 +7068 9915 0.6110 +7068 9968 0.6660 +7068 9969 0.6590 +7068 9971 0.4710 +7068 10025 0.6680 +7068 10451 0.4640 +7068 10499 0.9930 +7068 10587 0.9590 +7068 10891 0.5870 +7068 10902 0.6040 +7068 23054 0.8060 +7068 23389 0.6640 +7068 25942 0.6520 +7068 26018 0.4090 +7068 29079 0.6950 +7068 53919 0.5050 +7068 54583 0.4640 +7068 57113 0.5350 +7068 79663 0.4070 +7068 83637 0.5630 +7068 84498 0.5020 +7068 84553 0.4180 +7068 84631 0.4540 +7068 85441 0.5200 +7068 85477 0.4310 +7068 90390 0.6860 +7068 116931 0.6580 +7068 117247 0.5320 +7068 135112 0.5380 +7068 221037 0.8050 +7068 389434 0.4010 +7069 9021 0.5660 +7069 9370 0.5810 +7069 9971 0.5340 +7069 10944 0.4010 +7069 23175 0.4850 +7069 25805 0.5360 +7069 26088 0.4120 +7069 51085 0.4660 +7069 55902 0.5560 +7069 56246 0.4370 +7069 57678 0.5860 +7069 58526 0.9270 +7069 63924 0.6610 +7069 65985 0.4720 +7069 79071 0.7610 +7069 80339 0.5770 +7069 83401 0.4760 +7069 84649 0.6150 +7069 729359 0.5170 +7070 7076 0.6320 +7070 7099 0.4050 +7070 7124 0.6190 +7070 7130 0.4810 +7070 7139 0.4060 +7070 7157 0.5060 +7070 7167 0.4180 +7070 7251 0.4440 +7070 7345 0.6560 +7070 7412 0.7270 +7070 7431 0.6580 +7070 7450 0.5930 +7070 7512 0.4020 +7070 7704 0.6050 +7070 7837 0.6210 +7070 7852 0.6330 +7070 8549 0.4290 +7070 8639 0.5730 +7070 8813 0.6780 +7070 8817 0.5120 +7070 8818 0.6020 +7070 8822 0.5190 +7070 8823 0.5070 +7070 8842 0.7910 +7070 9170 0.6310 +7070 9173 0.5660 +7070 9314 0.5820 +7070 9429 0.5230 +7070 9437 0.4970 +7070 9927 0.5290 +7070 9997 0.4280 +7070 10026 0.5950 +7070 10219 0.5490 +7070 10232 0.5430 +7070 10417 0.4170 +7070 10630 0.5300 +7070 10631 0.5510 +7070 10763 0.7290 +7070 11030 0.4750 +7070 11160 0.4630 +7070 11167 0.6410 +7070 23650 0.5400 +7070 26281 0.5200 +7070 27006 0.5090 +7070 27255 0.4630 +7070 29126 0.4800 +7070 29851 0.4360 +7070 30009 0.5180 +7070 30816 0.4470 +7070 30817 0.5640 +7070 50616 0.6170 +7070 50943 0.6200 +7070 54344 0.6650 +7070 55824 0.5010 +7070 57124 0.5070 +7070 58530 0.4290 +7070 64102 0.4170 +7070 79727 0.4180 +7070 79923 0.7290 +7070 84324 0.4630 +7070 90865 0.4660 +7070 116540 0.4240 +7070 121340 0.5200 +7070 128869 0.4060 +7070 137902 0.5870 +7070 146713 0.5160 +7070 166647 0.4640 +7070 169355 0.4800 +7070 338773 0.4510 +7070 340595 0.4300 +7070 405754 0.4750 +7070 100133941 0.7100 +7070 100532731 0.4180 +7071 7157 0.4030 +7071 8553 0.4590 +7071 8850 0.4360 +7071 8870 0.4970 +7071 9971 0.4100 +7071 10221 0.5470 +7071 10765 0.6720 +7071 25942 0.9410 +7071 50943 0.6700 +7071 57634 0.4350 +7071 64651 0.4120 +7071 79637 0.4050 +7071 83737 0.4670 +7072 7073 0.9830 +7072 7124 0.5490 +7072 7307 0.4370 +7072 7415 0.4830 +7072 7514 0.4120 +7072 7536 0.5020 +7072 7538 0.8540 +7072 8087 0.7450 +7072 8106 0.6190 +7072 8148 0.5320 +7072 8189 0.4460 +7072 8202 0.8290 +7072 8570 0.6640 +7072 8662 0.8770 +7072 8880 0.6840 +7072 8939 0.5140 +7072 9100 0.5190 +7072 9295 0.4230 +7072 9444 0.5380 +7072 9513 0.6190 +7072 9584 0.6130 +7072 9698 0.5140 +7072 9761 0.5150 +7072 9775 0.5960 +7072 9782 0.7410 +7072 9898 0.5870 +7072 9908 0.8530 +7072 9987 0.4800 +7072 9988 0.4290 +7072 9991 0.4410 +7072 10146 0.9980 +7072 10181 0.6770 +7072 10189 0.5110 +7072 10250 0.4190 +7072 10291 0.4130 +7072 10399 0.6250 +7072 10642 0.4040 +7072 10657 0.7280 +7072 10914 0.4760 +7072 10922 0.8020 +7072 10929 0.4650 +7072 10946 0.4040 +7072 10949 0.4160 +7072 10971 0.5050 +7072 10992 0.4480 +7072 11218 0.4730 +7072 11273 0.4390 +7072 11338 0.6490 +7072 22803 0.4130 +7072 22916 0.6620 +7072 23034 0.8030 +7072 23064 0.4570 +7072 23211 0.4020 +7072 23367 0.4010 +7072 23369 0.5890 +7072 23435 0.9270 +7072 23451 0.5900 +7072 23534 0.4660 +7072 23543 0.6630 +7072 23586 0.6740 +7072 23644 0.5100 +7072 25804 0.7110 +7072 25873 0.4330 +7072 25957 0.4290 +7072 26065 0.4640 +7072 26523 0.5350 +7072 26528 0.5600 +7072 26986 0.9340 +7072 27044 0.4500 +7072 27087 0.5710 +7072 27102 0.4350 +7072 27161 0.5910 +7072 27250 0.4910 +7072 27257 0.4990 +7072 27316 0.4170 +7072 27327 0.4740 +7072 27429 0.4820 +7072 29894 0.4530 +7072 29896 0.4900 +7072 29978 0.6450 +7072 51585 0.4660 +7072 51631 0.5170 +7072 51747 0.5770 +7072 54464 0.6440 +7072 54715 0.5760 +7072 54845 0.6380 +7072 55015 0.5690 +7072 55167 0.8090 +7072 55285 0.4170 +7072 55657 0.4300 +7072 55692 0.5330 +7072 55802 0.8440 +7072 56478 0.4340 +7072 58155 0.4530 +7072 58505 0.5530 +7072 58517 0.6100 +7072 63897 0.4250 +7072 64135 0.5400 +7072 64506 0.4850 +7072 66037 0.4390 +7072 80004 0.6150 +7072 80153 0.4550 +7072 80335 0.5070 +7072 81608 0.5130 +7072 84061 0.5060 +7072 84991 0.5620 +7072 92521 0.4350 +7072 133482 0.4890 +7072 146713 0.5340 +7072 167227 0.5990 +7072 196513 0.4700 +7072 200185 0.4670 +7072 203228 0.5780 +7072 220988 0.4220 +7072 246175 0.4690 +7072 285855 0.5190 +7072 374569 0.4550 +7072 390748 0.5100 +7072 400916 0.4250 +7072 440275 0.5340 +7072 642659 0.4750 +7072 100529063 0.4830 +7073 7082 0.6120 +7073 7124 0.4520 +7073 7307 0.4810 +7073 7536 0.4680 +7073 7538 0.7020 +7073 7915 0.5460 +7073 7919 0.5160 +7073 8087 0.7480 +7073 8106 0.6300 +7073 8148 0.4800 +7073 8189 0.4260 +7073 8202 0.7220 +7073 8570 0.7280 +7073 8662 0.8720 +7073 8880 0.6950 +7073 8939 0.5150 +7073 9100 0.4420 +7073 9188 0.5580 +7073 9444 0.5550 +7073 9513 0.6640 +7073 9666 0.6220 +7073 9698 0.5120 +7073 9775 0.6450 +7073 9782 0.6170 +7073 9898 0.4810 +7073 9908 0.7050 +7073 9987 0.5220 +7073 10146 0.9960 +7073 10150 0.5580 +7073 10189 0.6740 +7073 10197 0.6170 +7073 10236 0.4760 +7073 10399 0.7080 +7073 10432 0.4820 +7073 10642 0.5130 +7073 10644 0.4060 +7073 10657 0.6100 +7073 10658 0.4470 +7073 10898 0.4160 +7073 10914 0.4180 +7073 10921 0.4370 +7073 10922 0.7260 +7073 10929 0.4590 +7073 10946 0.4160 +7073 10949 0.6480 +7073 10992 0.4590 +7073 11051 0.4170 +7073 11052 0.4590 +7073 11338 0.5570 +7073 22827 0.5080 +7073 22916 0.6380 +7073 23034 0.8160 +7073 23112 0.4220 +7073 23367 0.4590 +7073 23369 0.5850 +7073 23394 0.4570 +7073 23435 0.8800 +7073 23451 0.4650 +7073 23543 0.6470 +7073 23644 0.5060 +7073 23645 0.6070 +7073 25804 0.6980 +7073 25873 0.4260 +7073 26065 0.4390 +7073 26523 0.4180 +7073 26528 0.5220 +7073 26986 0.7200 +7073 27102 0.4560 +7073 27161 0.5920 +7073 27257 0.5090 +7073 27316 0.5500 +7073 27327 0.6340 +7073 29894 0.5490 +7073 29896 0.5500 +7073 51322 0.4210 +7073 51585 0.4890 +7073 51631 0.4540 +7073 51747 0.4140 +7073 54464 0.6240 +7073 54606 0.5590 +7073 54845 0.5960 +7073 55015 0.5370 +7073 55421 0.4280 +7073 55657 0.4490 +7073 55802 0.8260 +7073 56853 0.4780 +7073 58517 0.5440 +7073 63897 0.4250 +7073 64135 0.5330 +7073 64506 0.4250 +7073 65109 0.4290 +7073 80004 0.6040 +7073 80153 0.4330 +7073 80315 0.4090 +7073 80335 0.5010 +7073 81608 0.5780 +7073 84324 0.4270 +7073 139804 0.5250 +7073 146713 0.4770 +7073 167227 0.5820 +7073 170506 0.4240 +7073 220988 0.5410 +7073 253943 0.4120 +7073 440275 0.5630 +7073 642659 0.4630 +7073 100529063 0.4940 +7073 100996928 0.4020 +7074 7082 0.5630 +7074 7094 0.7550 +7074 7168 0.4120 +7074 7409 0.8720 +7074 7410 0.8800 +7074 7454 0.4580 +7074 7525 0.5720 +7074 7529 0.4530 +7074 7532 0.4280 +7074 7533 0.4570 +7074 7534 0.7660 +7074 8503 0.6640 +7074 8573 0.7370 +7074 8826 0.9000 +7074 8851 0.5260 +7074 8867 0.5600 +7074 8976 0.6080 +7074 8997 0.6480 +7074 9138 0.5660 +7074 9362 0.4320 +7074 9463 0.4020 +7074 9479 0.5900 +7074 9610 0.4860 +7074 9644 0.4520 +7074 9672 0.4560 +7074 9779 0.4080 +7074 9828 0.4850 +7074 10125 0.4530 +7074 10163 0.4050 +7074 10235 0.4420 +7074 10451 0.8600 +7074 10458 0.6760 +7074 10672 0.5520 +7074 10971 0.5070 +7074 11186 0.9170 +7074 22800 0.9170 +7074 22808 0.9260 +7074 23173 0.4340 +7074 23433 0.7010 +7074 23542 0.4540 +7074 26230 0.4870 +7074 26499 0.7110 +7074 50618 0.6020 +7074 50855 0.6180 +7074 51735 0.5040 +7074 54509 0.4160 +7074 54550 0.4140 +7074 56288 0.9910 +7074 57030 0.4380 +7074 58480 0.4790 +7074 64778 0.4640 +7074 65125 0.5220 +7074 79443 0.4040 +7074 83660 0.7790 +7074 84078 0.5030 +7074 84552 0.5250 +7074 84612 0.5400 +7074 84687 0.7080 +7074 84952 0.6030 +7074 85445 0.7170 +7074 89890 0.6000 +7074 253260 0.4830 +7074 285220 0.4460 +7074 387032 0.4580 +7074 653361 0.4950 +7075 7122 0.5370 +7075 7132 0.4790 +7075 7423 0.6040 +7075 7424 0.7560 +7075 7450 0.6770 +7075 8029 0.4260 +7075 8817 0.5540 +7075 8822 0.4220 +7075 8823 0.4240 +7075 9068 0.7320 +7075 10218 0.4790 +7075 10894 0.4390 +7075 22918 0.4610 +7075 23452 0.8400 +7075 26281 0.4210 +7075 27006 0.4220 +7075 27242 0.4130 +7075 27329 0.7850 +7075 51129 0.6340 +7075 51162 0.4200 +7075 51378 0.9630 +7075 51705 0.6020 +7075 54345 0.5630 +7075 54538 0.5800 +7075 56034 0.5260 +7075 64123 0.4280 +7075 79705 0.6080 +7075 79742 0.4110 +7075 79812 0.4790 +7075 83854 0.4500 +7075 89857 0.4020 +7075 90952 0.5050 +7075 161198 0.4670 +7075 221395 0.4210 +7075 253935 0.4440 +7075 641700 0.5080 +7076 7077 0.5820 +7076 7078 0.6890 +7076 7079 0.5760 +7076 7097 0.4260 +7076 7099 0.6640 +7076 7124 0.7270 +7076 7130 0.4430 +7076 7132 0.8730 +7076 7133 0.4700 +7076 7157 0.6810 +7076 7412 0.5770 +7076 7423 0.4500 +7076 7424 0.4270 +7076 7431 0.5500 +7076 7448 0.5170 +7076 7450 0.6680 +7076 7569 0.6950 +7076 7592 0.6260 +7076 7712 0.6670 +7076 7837 0.5320 +7076 7850 0.4650 +7076 7852 0.4520 +7076 8038 0.4500 +7076 8074 0.4600 +7076 8224 0.4320 +7076 8434 0.5370 +7076 8510 0.5440 +7076 8678 0.5180 +7076 8817 0.5210 +7076 8822 0.5200 +7076 8823 0.5200 +7076 9021 0.5880 +7076 9313 0.4330 +7076 9332 0.4210 +7076 9370 0.6310 +7076 9507 0.7750 +7076 9508 0.7450 +7076 9509 0.4050 +7076 9510 0.5490 +7076 9518 0.4800 +7076 10457 0.4260 +7076 10531 0.6210 +7076 10563 0.4180 +7076 10630 0.4980 +7076 10631 0.5320 +7076 10893 0.7560 +7076 11081 0.4880 +7076 11096 0.7310 +7076 11117 0.4050 +7076 11173 0.4510 +7076 22795 0.4580 +7076 22918 0.4240 +7076 26281 0.4960 +7076 27006 0.5200 +7076 30816 0.6770 +7076 51094 0.4430 +7076 51129 0.5040 +7076 51561 0.4310 +7076 51564 0.4920 +7076 54210 0.4150 +7076 54757 0.4610 +7076 56034 0.5170 +7076 56547 0.5060 +7076 56729 0.5100 +7076 56975 0.5340 +7076 58191 0.4680 +7076 60506 0.4520 +7076 64066 0.4220 +7076 64100 0.4760 +7076 64131 0.4140 +7076 64386 0.7010 +7076 79058 0.4240 +7076 79148 0.5890 +7076 80013 0.4430 +7076 80781 0.5410 +7076 84666 0.5210 +7076 112744 0.5000 +7076 118856 0.4070 +7076 137902 0.5260 +7076 192668 0.5780 +7076 347344 0.6030 +7076 405754 0.6770 +7076 431705 0.7290 +7077 7078 0.9230 +7077 7079 0.7090 +7077 7124 0.5800 +7077 7157 0.4360 +7077 7184 0.4260 +7077 7412 0.4230 +7077 7423 0.4870 +7077 7431 0.4110 +7077 7448 0.6420 +7077 7837 0.4950 +7077 8038 0.4420 +7077 8434 0.6790 +7077 8510 0.5920 +7077 8600 0.5060 +7077 8754 0.5840 +7077 9112 0.4520 +7077 9313 0.4570 +7077 9370 0.5370 +7077 9507 0.5620 +7077 9508 0.5140 +7077 9509 0.4030 +7077 9510 0.4890 +7077 10000 0.4100 +7077 10458 0.4590 +7077 10516 0.5730 +7077 10631 0.4450 +7077 10893 0.8540 +7077 10966 0.7340 +7077 11096 0.5340 +7077 23411 0.4330 +7077 27035 0.4320 +7077 30008 0.4390 +7077 50859 0.4330 +7077 56547 0.4870 +7077 56729 0.4760 +7077 57674 0.4190 +7077 64066 0.5230 +7077 64100 0.6230 +7077 64386 0.8220 +7077 79148 0.5670 +7077 80781 0.4720 +7077 118856 0.5290 +7077 137902 0.4780 +7077 653361 0.4540 +7078 7079 0.6480 +7078 7123 0.5280 +7078 7124 0.4840 +7078 7157 0.4790 +7078 7168 0.4840 +7078 7423 0.4870 +7078 7436 0.4300 +7078 7448 0.7360 +7078 7712 0.4890 +7078 7837 0.4210 +7078 7980 0.4470 +7078 8038 0.5040 +7078 8224 0.5550 +7078 8434 0.7450 +7078 8510 0.5460 +7078 8751 0.6240 +7078 8754 0.5620 +7078 9507 0.7820 +7078 9508 0.6360 +7078 9509 0.6380 +7078 9510 0.6260 +7078 10447 0.4130 +7078 10516 0.4760 +7078 10631 0.6390 +7078 10893 0.6800 +7078 11096 0.8880 +7078 11117 0.4380 +7078 11186 0.6910 +7078 22795 0.4070 +7078 23539 0.4470 +7078 27122 0.4610 +7078 27250 0.5900 +7078 30008 0.4150 +7078 51226 0.4210 +7078 55664 0.4060 +7078 56547 0.5210 +7078 56999 0.4690 +7078 64066 0.4180 +7078 64100 0.5520 +7078 64386 0.5930 +7078 79148 0.5670 +7078 84951 0.4320 +7078 115908 0.4770 +7078 118856 0.5330 +7078 145173 0.4010 +7078 170689 0.4060 +7078 221302 0.5700 +7078 387715 0.5920 +7079 7448 0.5790 +7079 8224 0.5930 +7079 8434 0.4510 +7079 8510 0.5620 +7079 9507 0.4560 +7079 9508 0.4070 +7079 10893 0.6280 +7079 27035 0.4060 +7079 56547 0.7500 +7079 64066 0.4540 +7079 64386 0.4830 +7079 79148 0.5730 +7079 85329 0.4850 +7079 653361 0.4630 +7080 7157 0.6030 +7080 7173 0.6870 +7080 7252 0.4380 +7080 7253 0.9540 +7080 7356 0.6900 +7080 7431 0.5480 +7080 7490 0.5150 +7080 7545 0.4930 +7080 7849 0.9800 +7080 8022 0.4150 +7080 8202 0.5140 +7080 8320 0.4500 +7080 8626 0.5130 +7080 8648 0.5410 +7080 8820 0.5800 +7080 8929 0.4930 +7080 9241 0.5030 +7080 9355 0.4440 +7080 9476 0.8790 +7080 9496 0.4740 +7080 10215 0.6140 +7080 10413 0.5050 +7080 10630 0.5080 +7080 10716 0.6250 +7080 10763 0.4310 +7080 23314 0.5870 +7080 23405 0.4630 +7080 23411 0.4690 +7080 25803 0.8580 +7080 26468 0.8070 +7080 27436 0.6490 +7080 29126 0.4390 +7080 50506 0.4420 +7080 51208 0.8320 +7080 51447 0.4910 +7080 51562 0.4740 +7080 53353 0.4620 +7080 54165 0.7340 +7080 54474 0.8410 +7080 55553 0.4730 +7080 55885 0.4860 +7080 56956 0.4580 +7080 63973 0.5130 +7080 64207 0.5160 +7080 64211 0.4810 +7080 64321 0.4510 +7080 64919 0.4910 +7080 80824 0.5230 +7080 84525 0.6970 +7080 92304 0.4220 +7080 93986 0.6710 +7080 116448 0.4070 +7080 117156 0.7090 +7080 127833 0.4730 +7080 140679 0.4010 +7080 151306 0.4970 +7080 221830 0.6360 +7080 221833 0.4330 +7080 389434 0.5770 +7080 400566 0.7810 +7080 405753 0.4790 +7080 431707 0.6600 +7080 653509 0.8120 +7080 729238 0.6210 +7082 7094 0.6080 +7082 7097 0.5070 +7082 7099 0.6390 +7082 7122 0.9990 +7082 7124 0.7020 +7082 7157 0.4470 +7082 7159 0.5890 +7082 7223 0.4780 +7082 7225 0.6060 +7082 7275 0.5120 +7082 7277 0.9110 +7082 7291 0.4800 +7082 7408 0.9680 +7082 7412 0.5210 +7082 7414 0.9730 +7082 7430 0.8830 +7082 7431 0.6150 +7082 7439 0.5160 +7082 7450 0.4810 +7082 7454 0.5400 +7082 7490 0.5590 +7082 7525 0.5710 +7082 7529 0.4480 +7082 7827 0.9870 +7082 7837 0.6580 +7082 7846 0.9200 +7082 8038 0.5270 +7082 8178 0.6760 +7082 8189 0.7110 +7082 8322 0.4540 +7082 8490 0.5560 +7082 8502 0.4590 +7082 8506 0.4400 +7082 8531 0.9980 +7082 8573 0.6920 +7082 8766 0.4680 +7082 8777 0.8730 +7082 8796 0.5110 +7082 8825 0.6430 +7082 8829 0.5380 +7082 8831 0.4620 +7082 8874 0.5180 +7082 8898 0.4540 +7082 8976 0.5790 +7082 9069 0.9060 +7082 9071 0.8150 +7082 9073 0.9930 +7082 9074 0.9310 +7082 9075 0.9920 +7082 9076 0.9990 +7082 9080 0.8870 +7082 9113 0.4540 +7082 9170 0.5390 +7082 9181 0.6520 +7082 9223 0.7130 +7082 9231 0.6020 +7082 9314 0.4210 +7082 9341 0.4230 +7082 9351 0.7320 +7082 9368 0.7880 +7082 9378 0.4590 +7082 9414 0.9990 +7082 9429 0.4450 +7082 9463 0.6590 +7082 9497 0.4610 +7082 9531 0.4360 +7082 9578 0.6860 +7082 9693 0.9640 +7082 9722 0.5130 +7082 9826 0.7930 +7082 9839 0.4760 +7082 9863 0.5390 +7082 9928 0.5910 +7082 10052 0.8980 +7082 10083 0.4790 +7082 10207 0.8570 +7082 10241 0.4250 +7082 10243 0.4540 +7082 10257 0.5130 +7082 10376 0.9110 +7082 10413 0.8490 +7082 10529 0.5400 +7082 10636 0.4750 +7082 10686 0.9550 +7082 10755 0.6580 +7082 10763 0.6520 +7082 10807 0.4260 +7082 11059 0.4060 +7082 11060 0.4040 +7082 11149 0.9630 +7082 11216 0.4390 +7082 11228 0.5490 +7082 11346 0.8360 +7082 23035 0.4390 +7082 23213 0.5020 +7082 23239 0.5190 +7082 23268 0.4150 +7082 23286 0.5250 +7082 23370 0.7470 +7082 23433 0.4790 +7082 23513 0.5720 +7082 23562 0.8930 +7082 23607 0.9820 +7082 23705 0.5450 +7082 24146 0.8550 +7082 25844 0.4920 +7082 25937 0.9710 +7082 25945 0.5700 +7082 26037 0.5360 +7082 26285 0.7520 +7082 26960 0.4720 +7082 27134 0.9880 +7082 27352 0.4720 +7082 28514 0.4770 +7082 29119 0.9550 +7082 49861 0.7250 +7082 50489 0.4100 +7082 50511 0.5310 +7082 50616 0.4180 +7082 50848 0.9990 +7082 50855 0.4970 +7082 51208 0.8240 +7082 51474 0.6370 +7082 51678 0.5390 +7082 51806 0.6090 +7082 51807 0.9070 +7082 53842 0.7160 +7082 54443 0.4060 +7082 55243 0.9940 +7082 55591 0.5520 +7082 55740 0.5530 +7082 55870 0.5730 +7082 56288 0.8330 +7082 57121 0.4820 +7082 57165 0.5550 +7082 57369 0.9850 +7082 57530 0.9990 +7082 57554 0.4740 +7082 57608 0.5370 +7082 57619 0.6080 +7082 57669 0.7270 +7082 57673 0.4460 +7082 58494 0.9930 +7082 59272 0.5230 +7082 63826 0.4160 +7082 64359 0.4560 +7082 64398 0.7500 +7082 64924 0.4240 +7082 65266 0.4450 +7082 79652 0.5960 +7082 79827 0.5630 +7082 79834 0.4180 +7082 79861 0.9060 +7082 79917 0.4460 +7082 81488 0.4520 +7082 81609 0.5440 +7082 83660 0.6280 +7082 83700 0.9970 +7082 84078 0.5340 +7082 84445 0.4100 +7082 84552 0.5490 +7082 84612 0.6720 +7082 84623 0.4960 +7082 84708 0.5210 +7082 84790 0.9310 +7082 84879 0.4120 +7082 84952 0.9750 +7082 90952 0.8580 +7082 91624 0.5660 +7082 91860 0.6090 +7082 91862 0.6790 +7082 92140 0.4260 +7082 92359 0.7290 +7082 93643 0.9510 +7082 112714 0.9060 +7082 113457 0.9050 +7082 114822 0.4200 +7082 115557 0.5520 +7082 125111 0.8970 +7082 127534 0.4180 +7082 130120 0.4800 +7082 137075 0.7480 +7082 137902 0.6360 +7082 144100 0.8520 +7082 147179 0.4270 +7082 149461 0.9540 +7082 150084 0.9740 +7082 153562 0.9990 +7082 154796 0.4410 +7082 160622 0.5070 +7082 161742 0.4190 +7082 163688 0.6090 +7082 260425 0.4370 +7082 286204 0.5780 +7082 317762 0.5000 +7082 445815 0.4250 +7082 493869 0.4320 +7082 644672 0.7180 +7082 728378 0.5630 +7082 100132463 0.7510 +7082 100288814 0.6500 +7082 100506658 0.9990 +7082 100820829 0.4570 +7083 7084 0.9610 +7083 7153 0.8060 +7083 7155 0.4250 +7083 7157 0.4920 +7083 7167 0.5370 +7083 7272 0.5630 +7083 7298 0.9910 +7083 7371 0.7750 +7083 7372 0.6320 +7083 7374 0.4610 +7083 7378 0.5090 +7083 7407 0.4720 +7083 8174 0.7050 +7083 8226 0.4380 +7083 8318 0.8360 +7083 8438 0.5960 +7083 8565 0.4440 +7083 9055 0.5370 +7083 9088 0.6010 +7083 9133 0.8800 +7083 9144 0.7430 +7083 9154 0.4880 +7083 9156 0.6570 +7083 9212 0.7670 +7083 9232 0.7880 +7083 9319 0.7220 +7083 9493 0.4410 +7083 9601 0.5460 +7083 9615 0.4030 +7083 9617 0.6910 +7083 9735 0.4170 +7083 9768 0.8200 +7083 9787 0.8110 +7083 9833 0.7920 +7083 9837 0.5660 +7083 10024 0.4320 +7083 10051 0.4180 +7083 10112 0.7910 +7083 10135 0.6910 +7083 10224 0.4240 +7083 10403 0.4420 +7083 10460 0.4570 +7083 10535 0.4760 +7083 10592 0.5030 +7083 10615 0.7270 +7083 10635 0.4460 +7083 11004 0.5620 +7083 11065 0.8730 +7083 11130 0.8980 +7083 11322 0.7130 +7083 11339 0.5210 +7083 22974 0.7920 +7083 23397 0.5200 +7083 23583 0.7680 +7083 23594 0.4800 +7083 24137 0.7180 +7083 26271 0.7660 +7083 27338 0.4890 +7083 29089 0.7050 +7083 29127 0.4940 +7083 29128 0.6550 +7083 30833 0.7760 +7083 50484 0.5960 +7083 51053 0.4180 +7083 51071 0.5170 +7083 51203 0.7470 +7083 51251 0.4610 +7083 51343 0.6880 +7083 51512 0.5790 +7083 51514 0.5160 +7083 51659 0.5720 +7083 51727 0.4580 +7083 54443 0.4720 +7083 54478 0.4360 +7083 54516 0.6910 +7083 54802 0.6050 +7083 54892 0.4240 +7083 54963 0.5110 +7083 55143 0.7040 +7083 55165 0.8020 +7083 55247 0.4040 +7083 55355 0.7230 +7083 55364 0.8160 +7083 55388 0.5620 +7083 55635 0.4520 +7083 55723 0.6480 +7083 55839 0.4110 +7083 56474 0.5740 +7083 56648 0.5320 +7083 56952 0.4130 +7083 56953 0.6240 +7083 57136 0.4480 +7083 57405 0.6890 +7083 64078 0.4080 +7083 64105 0.4100 +7083 64151 0.5950 +7083 64943 0.4120 +7083 79019 0.7400 +7083 79598 0.5400 +7083 79682 0.4530 +7083 79733 0.7140 +7083 79801 0.5880 +7083 79935 0.5380 +7083 80817 0.7950 +7083 81602 0.7950 +7083 81610 0.5010 +7083 81620 0.5880 +7083 83461 0.6060 +7083 83540 0.6940 +7083 83549 0.5370 +7083 84057 0.4040 +7083 84879 0.6750 +7083 87178 0.5000 +7083 91574 0.6920 +7083 91875 0.5190 +7083 113130 0.6710 +7083 113179 0.7610 +7083 116028 0.4090 +7083 118881 0.6510 +7083 123263 0.4820 +7083 125061 0.4700 +7083 126321 0.6860 +7083 129607 0.8720 +7083 134637 0.7540 +7083 135293 0.4100 +7083 139596 0.4810 +7083 143244 0.5320 +7083 144455 0.4120 +7083 146909 0.4560 +7083 147138 0.7500 +7083 147841 0.4440 +7083 150468 0.5710 +7083 151531 0.4180 +7083 200895 0.8210 +7083 201254 0.4570 +7083 220074 0.6370 +7083 220134 0.5610 +7083 221150 0.4240 +7083 256691 0.4290 +7083 259266 0.7630 +7083 284439 0.5500 +7083 387103 0.7180 +7083 388931 0.6750 +7083 402569 0.5370 +7083 120356740 0.6370 +7084 7157 0.5070 +7084 7298 0.9940 +7084 7371 0.5660 +7084 7372 0.5350 +7084 7378 0.9480 +7084 7384 0.4420 +7084 7385 0.4930 +7084 7386 0.5310 +7084 8518 0.4240 +7084 8802 0.4740 +7084 8803 0.6870 +7084 9377 0.5130 +7084 9512 0.4420 +7084 9582 0.4620 +7084 9601 0.5630 +7084 10553 0.4930 +7084 10606 0.4190 +7084 11232 0.4010 +7084 22943 0.6330 +7084 22978 0.9110 +7084 23203 0.4420 +7084 23583 0.4140 +7084 25939 0.5810 +7084 27089 0.4400 +7084 27350 0.4150 +7084 30833 0.9320 +7084 50484 0.8210 +7084 50808 0.5860 +7084 51079 0.6160 +7084 51251 0.9050 +7084 51727 0.6840 +7084 54539 0.6290 +7084 54963 0.6140 +7084 55364 0.5130 +7084 55967 0.6070 +7084 56652 0.6670 +7084 56952 0.4370 +7084 56953 0.9610 +7084 57379 0.4480 +7084 57407 0.4930 +7084 60489 0.5000 +7084 79728 0.6690 +7084 80195 0.4970 +7084 80817 0.4730 +7084 81602 0.4020 +7084 81620 0.5310 +7084 83549 0.6360 +7084 83933 0.5470 +7084 84618 0.9140 +7084 84701 0.4320 +7084 84886 0.4040 +7084 84939 0.4950 +7084 93034 0.9070 +7084 115024 0.9060 +7084 126328 0.4640 +7084 129607 0.7010 +7084 134147 0.4240 +7084 139221 0.4950 +7084 139596 0.6900 +7084 151531 0.9520 +7084 200315 0.4430 +7084 200316 0.4260 +7084 200895 0.8780 +7084 374291 0.5030 +7084 377841 0.9050 +7084 414328 0.4110 +7084 728317 0.4950 +7084 100526794 0.9070 +7084 100532726 0.5780 +7086 7167 0.9800 +7086 7184 0.4140 +7086 7284 0.5440 +7086 7295 0.4910 +7086 7296 0.6290 +7086 7358 0.4350 +7086 7360 0.5000 +7086 7403 0.4140 +7086 7404 0.4140 +7086 7415 0.5590 +7086 7448 0.4440 +7086 7529 0.4040 +7086 8050 0.5310 +7086 8277 0.9050 +7086 8565 0.5670 +7086 8789 0.9750 +7086 8802 0.4450 +7086 8833 0.4110 +7086 9343 0.5120 +7086 9380 0.4110 +7086 9562 0.8010 +7086 9563 0.9400 +7086 9588 0.4040 +7086 9601 0.4270 +7086 9793 0.4330 +7086 9942 0.9120 +7086 10007 0.4020 +7086 10327 0.4780 +7086 10449 0.5130 +7086 10551 0.5100 +7086 10560 0.5020 +7086 10587 0.5290 +7086 10768 0.5200 +7086 10797 0.4700 +7086 10873 0.4280 +7086 10994 0.4410 +7086 11181 0.4600 +7086 11284 0.5340 +7086 11315 0.5040 +7086 22934 0.9950 +7086 23135 0.4160 +7086 23382 0.4210 +7086 25796 0.7660 +7086 26007 0.4900 +7086 26061 0.5700 +7086 26227 0.4130 +7086 26330 0.9430 +7086 27010 0.9640 +7086 27068 0.4360 +7086 29968 0.4110 +7086 51056 0.5060 +7086 51071 0.9560 +7086 51074 0.4990 +7086 51292 0.4440 +7086 51569 0.4050 +7086 54870 0.4330 +7086 54963 0.4290 +7086 54995 0.4600 +7086 55152 0.4300 +7086 55276 0.9530 +7086 55753 0.4560 +7086 55902 0.5010 +7086 56965 0.4240 +7086 57103 0.5360 +7086 57469 0.6560 +7086 57818 0.8420 +7086 64080 0.9640 +7086 65220 0.4860 +7086 79631 0.4030 +7086 79668 0.4240 +7086 80201 0.8390 +7086 80273 0.5520 +7086 80704 0.4900 +7086 83440 0.8270 +7086 83549 0.4280 +7086 84076 0.9020 +7086 84532 0.4550 +7086 87178 0.4200 +7086 92399 0.4210 +7086 92483 0.9150 +7086 92579 0.8510 +7086 114112 0.4980 +7086 129831 0.7240 +7086 130589 0.4970 +7086 130752 0.4250 +7086 134266 0.5040 +7086 137362 0.4130 +7086 160287 0.9030 +7086 221823 0.9540 +7086 283677 0.5240 +7086 286451 0.4450 +7086 374354 0.4380 +7086 387712 0.8900 +7086 400745 0.5600 +7086 414328 0.4970 +7086 441282 0.4030 +7086 441531 0.8640 +7086 729020 0.9940 +7087 7430 0.6290 +7087 7448 0.5000 +7087 8892 0.4970 +7087 10972 0.6010 +7087 23385 0.5400 +7087 27120 0.5050 +7087 29979 0.4670 +7087 51107 0.5480 +7087 51458 0.4210 +7087 83999 0.4220 +7087 165257 0.4170 +7087 338761 0.4320 +7088 7089 0.8650 +7088 7090 0.9840 +7088 7091 0.9830 +7088 7136 0.4610 +7088 7157 0.5270 +7088 7311 0.4990 +7088 7314 0.4990 +7088 7316 0.4990 +7088 7403 0.5350 +7088 7490 0.4310 +7088 8085 0.5340 +7088 8289 0.4520 +7088 8295 0.5360 +7088 8607 0.5930 +7088 8820 0.7250 +7088 8841 0.4340 +7088 8850 0.5370 +7088 8861 0.9140 +7088 8945 0.7480 +7088 9070 0.5140 +7088 9242 0.5710 +7088 9630 0.4270 +7088 9687 0.4080 +7088 9734 0.4510 +7088 9794 0.5730 +7088 10046 0.5010 +7088 10524 0.5460 +7088 10660 0.5310 +7088 10736 0.4170 +7088 22938 0.5820 +7088 23314 0.4020 +7088 23411 0.4070 +7088 23462 0.6100 +7088 23512 0.5790 +7088 26108 0.5350 +7088 27287 0.8090 +7088 28996 0.5280 +7088 30012 0.4340 +7088 51176 0.9550 +7088 51430 0.4390 +7088 51651 0.4750 +7088 55294 0.4070 +7088 55502 0.9290 +7088 55534 0.5940 +7088 55629 0.7640 +7088 57057 0.7950 +7088 57492 0.4060 +7088 57801 0.4640 +7088 79577 0.5490 +7088 83439 0.7670 +7088 84441 0.5550 +7088 85417 0.5050 +7088 90665 0.5130 +7088 90780 0.9100 +7088 92129 0.8190 +7088 116039 0.4770 +7088 123169 0.4990 +7088 134701 0.7910 +7088 158158 0.4760 +7088 283149 0.9110 +7088 390598 0.7460 +7088 548313 0.4790 +7089 7090 0.9170 +7089 7091 0.9000 +7089 7311 0.4990 +7089 7314 0.4990 +7089 7316 0.4990 +7089 8085 0.5190 +7089 8295 0.5070 +7089 8607 0.5190 +7089 8850 0.5030 +7089 8945 0.5690 +7089 9037 0.4330 +7089 9070 0.4990 +7089 9794 0.5010 +7089 9828 0.4540 +7089 10046 0.4990 +7089 10524 0.6730 +7089 22871 0.4910 +7089 22938 0.5150 +7089 23245 0.5470 +7089 26108 0.5900 +7089 27286 0.6670 +7089 29803 0.4640 +7089 29844 0.5660 +7089 30827 0.4250 +7089 50834 0.5140 +7089 51176 0.8050 +7089 51725 0.5430 +7089 54413 0.4950 +7089 55534 0.4990 +7089 57502 0.4970 +7089 64326 0.5200 +7089 79577 0.5050 +7089 83439 0.7060 +7089 84441 0.4990 +7089 90780 0.5080 +7089 92129 0.8030 +7089 123169 0.4990 +7089 134701 0.8240 +7089 152330 0.5230 +7089 283149 0.5070 +7089 653145 0.6440 +7090 7091 0.9780 +7090 7273 0.4050 +7090 7311 0.4990 +7090 7314 0.4990 +7090 7316 0.4990 +7090 7415 0.4160 +7090 8085 0.5420 +7090 8204 0.8580 +7090 8289 0.4960 +7090 8295 0.5060 +7090 8607 0.5510 +7090 8816 0.4140 +7090 8850 0.5030 +7090 8861 0.9190 +7090 8945 0.6410 +7090 9063 0.4180 +7090 9070 0.5270 +7090 9493 0.6890 +7090 9794 0.5770 +7090 10046 0.4990 +7090 10391 0.8100 +7090 10518 0.5800 +7090 10524 0.5420 +7090 10728 0.5010 +7090 10736 0.7000 +7090 22801 0.8290 +7090 22938 0.5590 +7090 23090 0.4070 +7090 26108 0.5970 +7090 27287 0.7180 +7090 51176 0.7570 +7090 51366 0.4280 +7090 51804 0.5210 +7090 55534 0.5560 +7090 57057 0.7260 +7090 57178 0.4710 +7090 57492 0.4600 +7090 57801 0.4140 +7090 63976 0.5880 +7090 64641 0.4860 +7090 79577 0.5260 +7090 83439 0.7780 +7090 84441 0.5560 +7090 84504 0.7580 +7090 90780 0.9120 +7090 92129 0.7450 +7090 116039 0.5320 +7090 123169 0.5130 +7090 134701 0.7250 +7090 140809 0.4390 +7090 283149 0.9070 +7091 7136 0.5490 +7091 7311 0.4990 +7091 7314 0.5200 +7091 7316 0.4990 +7091 7471 0.4980 +7091 8085 0.5260 +7091 8289 0.4120 +7091 8295 0.5010 +7091 8607 0.5190 +7091 8850 0.5140 +7091 8861 0.9150 +7091 8945 0.5730 +7091 9070 0.5170 +7091 9794 0.5740 +7091 10046 0.4990 +7091 10419 0.6100 +7091 10524 0.4990 +7091 10716 0.5370 +7091 22938 0.5150 +7091 23314 0.4920 +7091 23316 0.5330 +7091 23429 0.4010 +7091 26108 0.5000 +7091 27022 0.5650 +7091 27287 0.8120 +7091 51176 0.7680 +7091 55079 0.5420 +7091 55502 0.4390 +7091 55534 0.5790 +7091 56956 0.4330 +7091 57057 0.7600 +7091 57492 0.4200 +7091 57801 0.4140 +7091 64919 0.5430 +7091 79577 0.5240 +7091 83439 0.7560 +7091 84441 0.5890 +7091 84960 0.4200 +7091 90780 0.9090 +7091 92129 0.7980 +7091 93986 0.4620 +7091 123169 0.4990 +7091 134701 0.7910 +7091 158158 0.4690 +7091 283149 0.9020 +7091 390992 0.4810 +7092 7093 0.4290 +7092 8076 0.4310 +7092 8646 0.9370 +7092 9681 0.4680 +7092 10747 0.4190 +7092 50509 0.4890 +7092 56952 0.5420 +7092 57057 0.7060 +7092 84171 0.5390 +7092 84695 0.5260 +7092 85301 0.5810 +7092 89795 0.4290 +7092 255631 0.5050 +7093 8646 0.9230 +7093 50509 0.4450 +7093 84171 0.4690 +7093 84695 0.4480 +7093 85301 0.4450 +7093 159013 0.4220 +7093 255631 0.4470 +7094 7145 0.7010 +7094 7168 0.6620 +7094 7169 0.6440 +7094 7170 0.6260 +7094 7171 0.6560 +7094 7205 0.5060 +7094 7273 0.7910 +7094 7277 0.5150 +7094 7317 0.4330 +7094 7402 0.4790 +7094 7408 0.9810 +7094 7409 0.7010 +7094 7412 0.5550 +7094 7414 0.9990 +7094 7415 0.4600 +7094 7430 0.7970 +7094 7448 0.7400 +7094 7450 0.6650 +7094 7454 0.8220 +7094 7494 0.7500 +7094 7529 0.5630 +7094 7791 0.9990 +7094 7846 0.4100 +7094 7852 0.5430 +7094 8407 0.6150 +7094 8482 0.4330 +7094 8500 0.5370 +7094 8515 0.7150 +7094 8516 0.7280 +7094 8541 0.4180 +7094 8557 0.4080 +7094 8631 0.7130 +7094 8727 0.5220 +7094 8766 0.5650 +7094 8826 0.8930 +7094 8829 0.5750 +7094 8844 0.4030 +7094 8976 0.5790 +7094 9181 0.4110 +7094 9260 0.5930 +7094 9267 0.4080 +7094 9270 0.6190 +7094 9404 0.4210 +7094 9493 0.4140 +7094 9499 0.4480 +7094 9564 0.9980 +7094 9644 0.5950 +7094 9754 0.4010 +7094 9780 0.4520 +7094 9855 0.5860 +7094 9948 0.7440 +7094 10097 0.4880 +7094 10109 0.4110 +7094 10125 0.5800 +7094 10163 0.5380 +7094 10174 0.9480 +7094 10235 0.6360 +7094 10256 0.4070 +7094 10371 0.5860 +7094 10395 0.9320 +7094 10398 0.6910 +7094 10399 0.5400 +7094 10487 0.4150 +7094 10493 0.5280 +7094 10580 0.9420 +7094 10627 0.5860 +7094 10672 0.6840 +7094 10979 0.7050 +7094 11129 0.5050 +7094 11188 0.4780 +7094 22801 0.7140 +7094 22927 0.4160 +7094 23052 0.4180 +7094 23085 0.5250 +7094 23189 0.9790 +7094 23336 0.8570 +7094 23371 0.6430 +7094 23396 0.9990 +7094 23513 0.4550 +7094 25802 0.5570 +7094 25959 0.6290 +7094 26136 0.6690 +7094 26499 0.6490 +7094 27063 0.5180 +7094 28984 0.4470 +7094 29119 0.7140 +7094 29127 0.4240 +7094 29780 0.9130 +7094 29895 0.5290 +7094 50618 0.4400 +7094 50619 0.5240 +7094 50807 0.4550 +7094 51168 0.4380 +7094 51429 0.4610 +7094 51493 0.5100 +7094 51655 0.5310 +7094 54518 0.9990 +7094 54751 0.6240 +7094 54756 0.4990 +7094 55558 0.5500 +7094 55612 0.5200 +7094 55742 0.9390 +7094 55901 0.5260 +7094 57154 0.4700 +7094 58498 0.5260 +7094 64098 0.8610 +7094 64283 0.5280 +7094 64759 0.4570 +7094 65059 0.9050 +7094 79038 0.5810 +7094 81858 0.4780 +7094 83593 0.5490 +7094 83660 0.9680 +7094 83700 0.4460 +7094 83706 0.9400 +7094 84033 0.5030 +7094 84174 0.7850 +7094 84951 0.4070 +7094 85477 0.9400 +7094 90102 0.6450 +7094 90627 0.6360 +7094 91584 0.5400 +7094 93408 0.5070 +7094 103910 0.7450 +7094 133482 0.5800 +7094 140465 0.5620 +7094 143903 0.9880 +7094 200576 0.4200 +7094 285641 0.5880 +7094 345456 0.5570 +7094 375189 0.5770 +7094 100506658 0.5130 +7095 7485 0.4920 +7095 8459 0.4420 +7095 8887 0.5090 +7095 8915 0.7650 +7095 9236 0.8530 +7095 9789 0.6820 +7095 9943 0.8970 +7095 10269 0.4110 +7095 10299 0.6150 +7095 10313 0.8460 +7095 10427 0.4870 +7095 10525 0.7070 +7095 10533 0.4090 +7095 10802 0.4410 +7095 10871 0.5820 +7095 10952 0.9870 +7095 10970 0.4070 +7095 11231 0.9990 +7095 11337 0.8280 +7095 11345 0.6910 +7095 22872 0.4310 +7095 22926 0.4740 +7095 23020 0.4610 +7095 23190 0.4980 +7095 23480 0.9970 +7095 23710 0.6990 +7095 25923 0.8110 +7095 26996 0.5770 +7095 27230 0.4650 +7095 27347 0.8940 +7095 28972 0.6520 +7095 29927 0.9990 +7095 51368 0.7980 +7095 51726 0.4830 +7095 54463 0.8930 +7095 54867 0.7020 +7095 55176 0.9130 +7095 55218 0.6700 +7095 55379 0.4630 +7095 55437 0.8200 +7095 56339 0.4060 +7095 57142 0.4540 +7095 57506 0.4660 +7095 57658 0.5490 +7095 58477 0.6240 +7095 64215 0.4330 +7095 64225 0.4680 +7095 64374 0.6960 +7095 79065 0.5580 +7095 79137 0.4810 +7095 79139 0.4630 +7095 80012 0.4530 +7095 84433 0.6280 +7095 84447 0.4290 +7095 92335 0.8120 +7095 150677 0.4200 +7095 162427 0.6530 +7095 344658 0.4020 +7095 347734 0.4630 +7096 7097 0.9990 +7096 7098 0.6510 +7096 7099 0.9960 +7096 7100 0.8600 +7096 7124 0.8340 +7096 7128 0.4170 +7096 7132 0.4010 +7096 7187 0.5010 +7096 7189 0.7870 +7096 7305 0.4550 +7096 7341 0.4030 +7096 7852 0.4340 +7096 8477 0.4660 +7096 8517 0.4180 +7096 8678 0.4950 +7096 8743 0.4040 +7096 8767 0.4980 +7096 9034 0.7640 +7096 9308 0.4490 +7096 9332 0.4960 +7096 9447 0.5220 +7096 9450 0.4870 +7096 9473 0.4380 +7096 9595 0.4300 +7096 9641 0.5050 +7096 9966 0.5130 +7096 10010 0.4650 +7096 10288 0.4090 +7096 10392 0.7830 +7096 10673 0.5220 +7096 10695 0.7000 +7096 11151 0.4470 +7096 11167 0.7990 +7096 11213 0.5790 +7096 22859 0.5210 +7096 22861 0.4550 +7096 22938 0.4530 +7096 23098 0.4530 +7096 23118 0.4620 +7096 23266 0.5210 +7096 23284 0.5210 +7096 23586 0.6370 +7096 23643 0.9570 +7096 26253 0.4940 +7096 27069 0.4390 +7096 27180 0.4440 +7096 29108 0.4050 +7096 29110 0.5130 +7096 30835 0.5060 +7096 50856 0.5380 +7096 50943 0.4460 +7096 51071 0.5910 +7096 51135 0.8710 +7096 51284 0.7800 +7096 51295 0.4250 +7096 51311 0.8000 +7096 54106 0.6630 +7096 54210 0.4320 +7096 54472 0.4790 +7096 57506 0.5160 +7096 58484 0.5730 +7096 59307 0.4080 +7096 64127 0.8410 +7096 64135 0.6200 +7096 64170 0.4550 +7096 64581 0.8240 +7096 79132 0.5140 +7096 79626 0.6210 +7096 81622 0.5420 +7096 81793 0.9890 +7096 89790 0.4440 +7096 91937 0.5120 +7096 93978 0.4960 +7096 114548 0.5690 +7096 114609 0.9920 +7096 117289 0.4400 +7096 118788 0.4820 +7096 120892 0.4060 +7096 126133 0.7510 +7096 144811 0.4710 +7096 148022 0.6010 +7096 160857 0.5110 +7096 282618 0.4570 +7096 345456 0.4380 +7096 353376 0.6590 +7096 375189 0.4340 +7096 414325 0.8300 +7096 100302736 0.5730 +7097 7098 0.8540 +7097 7099 0.9990 +7097 7100 0.9820 +7097 7124 0.9510 +7097 7128 0.5090 +7097 7130 0.6770 +7097 7132 0.7450 +7097 7133 0.6380 +7097 7157 0.4350 +7097 7184 0.9770 +7097 7185 0.4060 +7097 7187 0.5870 +7097 7189 0.9090 +7097 7297 0.4020 +7097 7305 0.6810 +7097 7409 0.5470 +7097 7412 0.7230 +7097 7416 0.7880 +7097 7450 0.4450 +7097 7805 0.4570 +7097 7850 0.6800 +7097 7852 0.8940 +7097 8290 0.6320 +7097 8356 0.6350 +7097 8517 0.5050 +7097 8578 0.8070 +7097 8600 0.5060 +7097 8651 0.5240 +7097 8678 0.6190 +7097 8685 0.8140 +7097 8737 0.6390 +7097 8743 0.5670 +7097 8767 0.7990 +7097 8772 0.4610 +7097 8807 0.4590 +7097 8915 0.4510 +7097 8993 0.4440 +7097 8995 0.5150 +7097 9021 0.7320 +7097 9034 0.5650 +7097 9076 0.5110 +7097 9172 0.5800 +7097 9308 0.6190 +7097 9314 0.6110 +7097 9332 0.8350 +7097 9370 0.4070 +7097 9436 0.5200 +7097 9447 0.6260 +7097 9450 0.4860 +7097 9477 0.4770 +7097 9516 0.5370 +7097 9567 0.4240 +7097 9636 0.4490 +7097 9641 0.5620 +7097 10010 0.4050 +7097 10018 0.4050 +7097 10043 0.5150 +7097 10216 0.7730 +7097 10220 0.4090 +7097 10261 0.4710 +7097 10288 0.7050 +7097 10332 0.6060 +7097 10379 0.4550 +7097 10392 0.8550 +7097 10454 0.5780 +7097 10461 0.4070 +7097 10525 0.4560 +7097 10563 0.6260 +7097 10673 0.5760 +7097 10803 0.4180 +7097 10808 0.4810 +7097 10859 0.5880 +7097 11025 0.4270 +7097 11035 0.6170 +7097 11151 0.5550 +7097 11167 0.9630 +7097 11213 0.8520 +7097 11345 0.4440 +7097 22859 0.5210 +7097 22861 0.5580 +7097 22914 0.4290 +7097 22918 0.4960 +7097 23098 0.4820 +7097 23118 0.4900 +7097 23266 0.5210 +7097 23284 0.5300 +7097 23586 0.7430 +7097 23601 0.5150 +7097 23643 0.9970 +7097 23710 0.4400 +7097 23765 0.5160 +7097 26253 0.8350 +7097 26353 0.4830 +7097 27036 0.4200 +7097 27180 0.5420 +7097 29108 0.5550 +7097 29110 0.6340 +7097 29126 0.5720 +7097 29851 0.4100 +7097 30009 0.5300 +7097 30816 0.7000 +7097 30835 0.7910 +7097 50489 0.4290 +7097 50616 0.6060 +7097 50856 0.7110 +7097 50943 0.6630 +7097 51135 0.9350 +7097 51284 0.6340 +7097 51311 0.8930 +7097 51428 0.4260 +7097 51561 0.4810 +7097 53829 0.4980 +7097 54106 0.9610 +7097 54209 0.5250 +7097 54210 0.6770 +7097 54472 0.9970 +7097 54476 0.4020 +7097 54567 0.5110 +7097 55054 0.7730 +7097 56729 0.6290 +7097 57506 0.5430 +7097 58191 0.5930 +7097 58484 0.7010 +7097 59272 0.4140 +7097 59307 0.5330 +7097 60312 0.4760 +7097 60675 0.5370 +7097 63827 0.4760 +7097 64127 0.9830 +7097 64135 0.6810 +7097 64170 0.6200 +7097 64332 0.4110 +7097 64581 0.9980 +7097 79132 0.5610 +7097 79587 0.4120 +7097 79792 0.4380 +7097 80216 0.4780 +7097 80380 0.4090 +7097 80381 0.5490 +7097 80712 0.4050 +7097 81622 0.5850 +7097 81793 0.9920 +7097 84166 0.4410 +7097 84666 0.6240 +7097 84868 0.4540 +7097 85480 0.6960 +7097 90865 0.8140 +7097 91543 0.4020 +7097 91662 0.4520 +7097 91937 0.5800 +7097 93978 0.6860 +7097 112744 0.4630 +7097 114548 0.8490 +7097 114609 0.9990 +7097 115004 0.5530 +7097 115362 0.4220 +7097 118788 0.4580 +7097 126393 0.4360 +7097 129807 0.4930 +7097 130120 0.4890 +7097 131450 0.4350 +7097 140885 0.5010 +7097 148022 0.9750 +7097 149233 0.4290 +7097 151056 0.6930 +7097 160364 0.5670 +7097 169355 0.4430 +7097 171017 0.4040 +7097 171389 0.4940 +7097 245812 0.4910 +7097 282618 0.5620 +7097 338339 0.5370 +7097 338442 0.4390 +7097 338773 0.4060 +7097 345456 0.6750 +7097 353376 0.9890 +7097 375189 0.6720 +7097 375790 0.4140 +7097 400668 0.6320 +7097 405754 0.6860 +7097 414325 0.8540 +7097 440093 0.6320 +7097 440686 0.6320 +7097 653361 0.5200 +7097 653509 0.5910 +7097 653604 0.6320 +7097 730249 0.5520 +7097 100133941 0.5090 +7097 100289462 0.6980 +7097 100302736 0.7830 +7097 100506658 0.5910 +7097 100526664 0.4520 +7097 100528017 0.4680 +7098 7099 0.9070 +7098 7100 0.5300 +7098 7113 0.4500 +7098 7124 0.8820 +7098 7128 0.4120 +7098 7132 0.7520 +7098 7157 0.4180 +7098 7184 0.6830 +7098 7187 0.9920 +7098 7189 0.9990 +7098 7297 0.5770 +7098 7311 0.5090 +7098 7314 0.5170 +7098 7316 0.5590 +7098 7321 0.4960 +7098 7322 0.4930 +7098 7323 0.4980 +7098 7334 0.6020 +7098 7335 0.5630 +7098 7412 0.5050 +7098 7448 0.4190 +7098 7706 0.5410 +7098 7726 0.4430 +7098 7852 0.4530 +7098 8290 0.5670 +7098 8356 0.5670 +7098 8517 0.8490 +7098 8519 0.4070 +7098 8638 0.6730 +7098 8651 0.5460 +7098 8678 0.5960 +7098 8717 0.7080 +7098 8737 0.9980 +7098 8743 0.5370 +7098 8767 0.5070 +7098 8772 0.8450 +7098 8829 0.5540 +7098 8837 0.4090 +7098 9021 0.4830 +7098 9308 0.7030 +7098 9332 0.4660 +7098 9447 0.6140 +7098 9636 0.7750 +7098 9641 0.9790 +7098 9976 0.4120 +7098 10010 0.8030 +7098 10044 0.4040 +7098 10045 0.5050 +7098 10379 0.6340 +7098 10392 0.6890 +7098 10410 0.6010 +7098 10454 0.9850 +7098 10561 0.4650 +7098 10616 0.4930 +7098 10673 0.5190 +7098 10695 0.6880 +7098 11035 0.9640 +7098 11167 0.5250 +7098 11213 0.6690 +7098 11274 0.6780 +7098 22859 0.5310 +7098 22861 0.4860 +7098 22900 0.4680 +7098 22914 0.4800 +7098 23098 0.9400 +7098 23118 0.9930 +7098 23266 0.5310 +7098 23284 0.5340 +7098 23405 0.4080 +7098 23423 0.4420 +7098 23586 0.9730 +7098 23643 0.7050 +7098 24138 0.6520 +7098 24145 0.4170 +7098 25854 0.5870 +7098 26253 0.4230 +7098 29108 0.4340 +7098 29110 0.9930 +7098 29126 0.6170 +7098 30009 0.4150 +7098 30816 0.5830 +7098 30835 0.5940 +7098 50489 0.4630 +7098 50616 0.4760 +7098 50852 0.4300 +7098 50943 0.5550 +7098 51014 0.4770 +7098 51135 0.9050 +7098 51266 0.4280 +7098 51284 0.9620 +7098 51311 0.9390 +7098 51428 0.4690 +7098 51561 0.4030 +7098 54106 0.8560 +7098 54472 0.5790 +7098 54476 0.5470 +7098 55072 0.5070 +7098 55509 0.6970 +7098 55601 0.5310 +7098 56832 0.4500 +7098 57162 0.6610 +7098 57506 0.9210 +7098 57590 0.6840 +7098 57705 0.4920 +7098 58484 0.5110 +7098 59272 0.6000 +7098 59307 0.4330 +7098 60489 0.4280 +7098 64083 0.5390 +7098 64127 0.7220 +7098 64135 0.9750 +7098 64170 0.4280 +7098 64581 0.5840 +7098 64805 0.4260 +7098 65258 0.4790 +7098 79132 0.8140 +7098 79671 0.7330 +7098 79792 0.6410 +7098 80143 0.5830 +7098 80380 0.4170 +7098 80381 0.5300 +7098 81030 0.5670 +7098 81622 0.9990 +7098 81790 0.5890 +7098 81793 0.4140 +7098 81858 0.4730 +7098 84166 0.4470 +7098 84282 0.4410 +7098 84868 0.4420 +7098 84966 0.4630 +7098 85363 0.4080 +7098 85480 0.5080 +7098 89891 0.5040 +7098 90865 0.5360 +7098 91543 0.6690 +7098 91662 0.4070 +7098 94240 0.5160 +7098 114548 0.7600 +7098 114609 0.9800 +7098 115004 0.7110 +7098 122769 0.4220 +7098 133584 0.5740 +7098 136319 0.5020 +7098 140885 0.4420 +7098 148022 0.9990 +7098 163702 0.5130 +7098 169355 0.4860 +7098 170482 0.4510 +7098 170506 0.4240 +7098 197259 0.5870 +7098 219285 0.5150 +7098 257397 0.9230 +7098 282616 0.5780 +7098 282617 0.5140 +7098 282618 0.8150 +7098 283420 0.5490 +7098 338376 0.4370 +7098 340061 0.5140 +7098 345456 0.4690 +7098 345611 0.4770 +7098 353376 0.8860 +7098 375189 0.4820 +7098 405754 0.5390 +7098 440093 0.5670 +7098 440686 0.5670 +7098 653361 0.5400 +7098 653604 0.5670 +7098 728378 0.5370 +7098 730249 0.5070 +7098 100302736 0.7560 +7098 100423062 0.9080 +7098 100526664 0.5700 +7099 7100 0.9920 +7099 7122 0.4870 +7099 7124 0.9690 +7099 7128 0.5400 +7099 7130 0.4920 +7099 7132 0.9490 +7099 7133 0.6940 +7099 7157 0.5920 +7099 7184 0.9880 +7099 7185 0.6240 +7099 7186 0.5630 +7099 7187 0.9900 +7099 7188 0.6900 +7099 7189 0.9990 +7099 7249 0.4080 +7099 7268 0.4840 +7099 7292 0.6130 +7099 7293 0.4070 +7099 7295 0.4620 +7099 7297 0.4700 +7099 7305 0.7360 +7099 7311 0.4990 +7099 7314 0.5480 +7099 7316 0.5810 +7099 7321 0.5170 +7099 7322 0.4800 +7099 7323 0.4980 +7099 7334 0.9320 +7099 7335 0.5630 +7099 7369 0.6300 +7099 7412 0.7720 +7099 7442 0.5050 +7099 7450 0.5420 +7099 7453 0.4650 +7099 7494 0.4850 +7099 7498 0.8200 +7099 7535 0.4540 +7099 7850 0.5240 +7099 7852 0.8240 +7099 8200 0.7250 +7099 8290 0.6880 +7099 8356 0.6880 +7099 8361 0.5300 +7099 8369 0.5290 +7099 8490 0.4400 +7099 8503 0.9090 +7099 8517 0.9600 +7099 8600 0.5490 +7099 8601 0.4330 +7099 8639 0.4030 +7099 8651 0.6340 +7099 8660 0.4330 +7099 8678 0.5740 +7099 8685 0.5050 +7099 8717 0.6890 +7099 8737 0.9620 +7099 8743 0.5250 +7099 8744 0.7920 +7099 8754 0.4700 +7099 8767 0.7560 +7099 8771 0.5010 +7099 8772 0.8610 +7099 8786 0.4350 +7099 8808 0.5360 +7099 8837 0.6280 +7099 8856 0.4420 +7099 8878 0.5770 +7099 8915 0.5190 +7099 8988 0.4450 +7099 8989 0.4380 +7099 8993 0.5610 +7099 9021 0.7840 +7099 9034 0.6890 +7099 9075 0.4160 +7099 9076 0.6270 +7099 9213 0.4190 +7099 9294 0.5330 +7099 9308 0.6460 +7099 9314 0.4390 +7099 9332 0.8140 +7099 9370 0.6310 +7099 9447 0.6440 +7099 9450 0.8540 +7099 9451 0.4920 +7099 9474 0.4560 +7099 9477 0.4890 +7099 9516 0.5800 +7099 9536 0.4260 +7099 9619 0.4570 +7099 9628 0.4330 +7099 9636 0.4770 +7099 9641 0.8880 +7099 9817 0.5140 +7099 9865 0.9570 +7099 9971 0.5310 +7099 10010 0.7450 +7099 10135 0.6940 +7099 10190 0.5040 +7099 10216 0.7170 +7099 10220 0.4200 +7099 10261 0.4250 +7099 10273 0.5220 +7099 10287 0.4570 +7099 10288 0.4930 +7099 10332 0.5070 +7099 10346 0.4120 +7099 10365 0.4320 +7099 10379 0.4960 +7099 10392 0.8010 +7099 10454 0.7670 +7099 10461 0.5210 +7099 10487 0.5260 +7099 10533 0.4780 +7099 10563 0.4460 +7099 10628 0.4820 +7099 10630 0.5270 +7099 10673 0.6490 +7099 10695 0.8060 +7099 10890 0.5570 +7099 10891 0.5310 +7099 10894 0.4910 +7099 11035 0.8320 +7099 11167 0.7750 +7099 11213 0.8220 +7099 11336 0.4040 +7099 22859 0.5210 +7099 22861 0.6250 +7099 22900 0.5530 +7099 22914 0.4600 +7099 22918 0.4880 +7099 22926 0.4090 +7099 23098 0.9740 +7099 23118 0.7850 +7099 23162 0.6540 +7099 23266 0.5220 +7099 23284 0.5350 +7099 23411 0.6090 +7099 23569 0.4610 +7099 23586 0.8150 +7099 23643 0.9990 +7099 23765 0.6790 +7099 24145 0.4500 +7099 25824 0.4870 +7099 26052 0.4630 +7099 26191 0.4410 +7099 26253 0.6680 +7099 26353 0.5260 +7099 26575 0.4250 +7099 27035 0.4760 +7099 27036 0.5390 +7099 27069 0.9210 +7099 27178 0.4370 +7099 27180 0.6170 +7099 27202 0.4220 +7099 28981 0.4430 +7099 29108 0.7600 +7099 29110 0.9570 +7099 29126 0.6540 +7099 29851 0.4050 +7099 30009 0.5560 +7099 30816 0.9820 +7099 30817 0.5680 +7099 30835 0.7790 +7099 50489 0.4220 +7099 50506 0.6530 +7099 50507 0.9960 +7099 50616 0.6250 +7099 50856 0.4850 +7099 50943 0.6800 +7099 51014 0.5220 +7099 51094 0.5280 +7099 51135 0.9990 +7099 51284 0.9400 +7099 51295 0.7000 +7099 51311 0.7120 +7099 51561 0.4770 +7099 51752 0.5160 +7099 51776 0.5340 +7099 51806 0.4080 +7099 53829 0.4300 +7099 53905 0.4800 +7099 54106 0.9790 +7099 54205 0.5210 +7099 54209 0.7620 +7099 54210 0.6670 +7099 54472 0.9900 +7099 54476 0.6950 +7099 54536 0.4230 +7099 55054 0.4770 +7099 55655 0.5400 +7099 55669 0.4220 +7099 56244 0.4630 +7099 56729 0.9930 +7099 57161 0.5990 +7099 57162 0.6690 +7099 57506 0.6160 +7099 57590 0.5400 +7099 57705 0.5570 +7099 57817 0.4490 +7099 58191 0.4600 +7099 58484 0.8810 +7099 59272 0.7140 +7099 59307 0.9230 +7099 60312 0.4970 +7099 64127 0.8990 +7099 64135 0.8110 +7099 64170 0.7490 +7099 64332 0.4510 +7099 64407 0.6040 +7099 64581 0.9780 +7099 64805 0.4260 +7099 79132 0.5900 +7099 79792 0.6210 +7099 80216 0.4790 +7099 80380 0.5170 +7099 80381 0.5970 +7099 81622 0.5510 +7099 81793 0.4750 +7099 84166 0.4720 +7099 84233 0.4610 +7099 84666 0.9910 +7099 84868 0.5050 +7099 85329 0.4280 +7099 85397 0.4250 +7099 85480 0.5510 +7099 90865 0.8430 +7099 91543 0.4040 +7099 91662 0.5140 +7099 91860 0.4030 +7099 91937 0.6520 +7099 93100 0.6660 +7099 93978 0.6400 +7099 112744 0.4340 +7099 114548 0.8740 +7099 114609 0.9990 +7099 115004 0.6030 +7099 118788 0.4350 +7099 120892 0.4420 +7099 130120 0.5140 +7099 131450 0.5000 +7099 133482 0.5500 +7099 140609 0.4580 +7099 140885 0.6130 +7099 146713 0.5690 +7099 148022 0.9990 +7099 149233 0.4370 +7099 151306 0.4960 +7099 160364 0.5020 +7099 163688 0.4030 +7099 168400 0.4440 +7099 169355 0.5270 +7099 170482 0.4180 +7099 171017 0.4130 +7099 171389 0.5360 +7099 197259 0.5740 +7099 201633 0.4670 +7099 245812 0.7600 +7099 246330 0.6000 +7099 257202 0.5260 +7099 257397 0.7180 +7099 282618 0.5800 +7099 283420 0.4190 +7099 284194 0.5770 +7099 338339 0.4750 +7099 338442 0.4270 +7099 338557 0.6450 +7099 340061 0.4280 +7099 345456 0.6110 +7099 345611 0.6760 +7099 353376 0.9990 +7099 375189 0.6100 +7099 400668 0.4890 +7099 405754 0.7500 +7099 414325 0.4780 +7099 431704 0.4360 +7099 440093 0.6900 +7099 440686 0.6880 +7099 493869 0.5320 +7099 653361 0.7330 +7099 653604 0.6880 +7099 654346 0.5770 +7099 728378 0.4070 +7099 100133941 0.5680 +7099 100289462 0.9010 +7099 100302736 0.8470 +7099 100506658 0.7460 +7099 100526664 0.6790 +7100 7124 0.8340 +7100 7132 0.4080 +7100 7187 0.5010 +7100 7189 0.9690 +7100 8517 0.4060 +7100 8678 0.4910 +7100 8767 0.5000 +7100 9034 0.5480 +7100 9173 0.5340 +7100 9308 0.4250 +7100 9332 0.4580 +7100 9447 0.4950 +7100 9641 0.4820 +7100 10392 0.7440 +7100 10454 0.5760 +7100 10673 0.5250 +7100 10695 0.5210 +7100 11167 0.7230 +7100 11213 0.7310 +7100 22859 0.5290 +7100 22861 0.4350 +7100 23098 0.5270 +7100 23118 0.4960 +7100 23266 0.5310 +7100 23284 0.5400 +7100 23586 0.6340 +7100 23643 0.8880 +7100 23765 0.4180 +7100 26253 0.4200 +7100 27069 0.4310 +7100 29108 0.4240 +7100 29110 0.5090 +7100 29126 0.5340 +7100 30009 0.4200 +7100 30835 0.4140 +7100 50506 0.6210 +7100 50616 0.5240 +7100 50943 0.4910 +7100 51135 0.7190 +7100 51284 0.7780 +7100 51311 0.7310 +7100 53905 0.4220 +7100 54106 0.6080 +7100 54472 0.5130 +7100 54476 0.5470 +7100 55024 0.4440 +7100 57506 0.4030 +7100 58484 0.7580 +7100 59307 0.8460 +7100 64127 0.8670 +7100 64135 0.5550 +7100 64170 0.4190 +7100 64581 0.5710 +7100 79132 0.4660 +7100 80380 0.4030 +7100 81622 0.5810 +7100 81793 0.4750 +7100 90865 0.4120 +7100 114548 0.5510 +7100 114609 0.9400 +7100 114836 0.6450 +7100 122769 0.4580 +7100 130120 0.5720 +7100 134728 0.4670 +7100 148022 0.5860 +7100 171389 0.4680 +7100 257397 0.4280 +7100 345456 0.7020 +7100 353376 0.5000 +7100 375189 0.7090 +7100 730249 0.4990 +7100 100302736 0.4340 +7101 7157 0.5930 +7101 8202 0.5210 +7101 8535 0.5030 +7101 8648 0.5420 +7101 8726 0.5070 +7101 8841 0.6820 +7101 9112 0.5090 +7101 9219 0.4990 +7101 9355 0.4940 +7101 9611 0.6400 +7101 9612 0.5780 +7101 9734 0.4300 +7101 10014 0.9640 +7101 10499 0.5240 +7101 10763 0.7180 +7101 22955 0.5150 +7101 23028 0.9770 +7101 23186 0.7490 +7101 23466 0.5350 +7101 23512 0.5200 +7101 25792 0.4220 +7101 29102 0.4060 +7101 51231 0.4580 +7101 51564 0.7850 +7101 51684 0.4480 +7101 53335 0.6080 +7101 53615 0.5300 +7101 54815 0.5190 +7101 55079 0.4920 +7101 55827 0.4120 +7101 57167 0.5530 +7101 57332 0.5240 +7101 57459 0.5190 +7101 57504 0.4990 +7101 79618 0.4630 +7101 79648 0.4090 +7101 80012 0.5470 +7101 84220 0.4300 +7101 84232 0.4990 +7101 84733 0.4990 +7101 122953 0.4540 +7101 170825 0.4510 +7101 259266 0.4070 +7101 285598 0.4400 +7101 388585 0.4120 +7102 8562 0.4200 +7102 9459 0.4420 +7102 9463 0.9730 +7102 9760 0.4400 +7102 10077 0.5930 +7102 10099 0.4220 +7102 11141 0.5560 +7102 22926 0.4850 +7102 23426 0.4270 +7102 27111 0.4700 +7102 55532 0.4800 +7102 80852 0.4220 +7102 84868 0.4230 +7102 169026 0.4460 +7103 7104 0.4330 +7103 7251 0.5100 +7103 7412 0.6060 +7103 7466 0.5820 +7103 8082 0.4360 +7103 8549 0.7270 +7103 8872 0.7200 +7103 10083 0.4340 +7103 10551 0.4500 +7103 10644 0.8100 +7103 10647 0.4290 +7103 11085 0.5020 +7103 23555 0.4020 +7103 54469 0.5880 +7103 54901 0.7820 +7103 56667 0.5700 +7103 56999 0.6630 +7103 57118 0.6410 +7103 79068 0.7450 +7103 84327 0.6190 +7103 169026 0.7560 +7103 221895 0.6960 +7103 253260 0.4950 +7103 257194 0.4320 +7103 345611 0.7070 +7104 8431 0.4820 +7104 9032 0.4360 +7104 10103 0.4260 +7104 11074 0.4440 +7104 26059 0.4010 +7104 29882 0.4080 +7104 64241 0.4130 +7104 79853 0.5240 +7104 116236 0.4720 +7104 257629 0.4410 +7105 7251 0.4780 +7105 9032 0.4310 +7105 9240 0.4340 +7105 23586 0.4130 +7105 23601 0.6770 +7105 25800 0.4160 +7105 27075 0.4870 +7105 51552 0.4410 +7105 56242 0.4810 +7105 57506 0.6480 +7105 646892 0.5130 +7106 9099 0.4110 +7106 9518 0.8850 +7106 9811 0.4410 +7106 10077 0.4110 +7106 11188 0.5740 +7106 51754 0.5710 +7106 55636 0.6490 +7106 55811 0.6370 +7106 64753 0.5070 +7106 79812 0.4010 +7106 140885 0.4170 +7106 554235 0.4870 +7107 8448 0.5610 +7107 9918 0.4400 +7107 23397 0.4530 +7107 27197 0.4130 +7107 51768 0.4520 +7107 56927 0.5550 +7107 57720 0.5230 +7107 64151 0.4240 +7107 64377 0.4050 +7107 151556 0.4860 +7107 390212 0.4360 +7108 8564 0.4170 +7108 9023 0.6920 +7108 9028 0.4160 +7108 9420 0.6540 +7108 9453 0.5810 +7108 10280 0.8860 +7108 10654 0.6900 +7108 10682 0.9910 +7108 10826 0.7550 +7108 10858 0.5300 +7108 11161 0.9140 +7108 26166 0.4450 +7108 27430 0.4580 +7108 50814 0.8690 +7108 51004 0.4320 +7108 51302 0.6050 +7108 51478 0.9460 +7108 57412 0.4450 +7108 65985 0.4570 +7108 80270 0.6650 +7108 83862 0.5110 +7108 84814 0.4760 +7108 84823 0.6900 +7108 91734 0.5620 +7108 93517 0.6130 +7108 132949 0.4250 +7108 163590 0.4610 +7108 286151 0.4450 +7108 347475 0.5190 +7109 8519 0.6080 +7109 8615 0.4720 +7109 8766 0.7380 +7109 9230 0.5650 +7109 9467 0.4610 +7109 9632 0.5750 +7109 9871 0.5550 +7109 9919 0.6110 +7109 10282 0.5040 +7109 10342 0.5230 +7109 10427 0.6850 +7109 10597 0.9040 +7109 10802 0.5290 +7109 22878 0.9960 +7109 23140 0.4790 +7109 23256 0.6600 +7109 27095 0.9970 +7109 51112 0.9850 +7109 51128 0.5430 +7109 51399 0.9980 +7109 51693 0.9990 +7109 54542 0.4160 +7109 55014 0.5090 +7109 55262 0.7960 +7109 57111 0.4230 +7109 57476 0.4390 +7109 57533 0.6370 +7109 57589 0.4750 +7109 58485 0.9980 +7109 60684 0.9530 +7109 79090 0.9920 +7109 79370 0.6870 +7109 80006 0.9730 +7109 80059 0.6360 +7109 81551 0.6250 +7109 81876 0.6840 +7109 83548 0.4660 +7109 84253 0.4050 +7109 84955 0.6240 +7109 85438 0.7060 +7109 89866 0.5220 +7109 90268 0.5020 +7109 117177 0.6440 +7109 122553 0.9870 +7109 126003 0.9990 +7109 163782 0.5910 +7109 167691 0.6400 +7109 285180 0.4650 +7109 339122 0.4280 +7109 347730 0.8650 +7109 100128327 0.9890 +7110 7528 0.4010 +7110 7542 0.5600 +7110 8548 0.4670 +7110 8615 0.5820 +7110 8674 0.5810 +7110 8675 0.6090 +7110 8774 0.5210 +7110 8775 0.5000 +7110 9039 0.4230 +7110 9321 0.5880 +7110 9382 0.5860 +7110 9604 0.5150 +7110 9648 0.7820 +7110 9827 0.5040 +7110 9950 0.6000 +7110 10053 0.4200 +7110 10139 0.5770 +7110 10228 0.6220 +7110 10466 0.5920 +7110 10618 0.6560 +7110 22796 0.5310 +7110 23150 0.4530 +7110 25839 0.6100 +7110 25886 0.4120 +7110 26286 0.4270 +7110 51176 0.4220 +7110 51542 0.7250 +7110 51560 0.8390 +7110 55088 0.5640 +7110 55275 0.6190 +7110 56851 0.4250 +7110 57120 0.4080 +7110 57511 0.5620 +7110 57589 0.5540 +7110 63908 0.5070 +7110 64083 0.4390 +7110 64172 0.6710 +7110 64744 0.4410 +7110 79571 0.7290 +7110 83548 0.6370 +7110 84960 0.4220 +7110 90196 0.6020 +7110 91949 0.5850 +7110 143187 0.6130 +7110 146923 0.4550 +7110 150709 0.8200 +7110 151987 0.4230 +7110 285203 0.5610 +7110 339122 0.5070 +7111 7112 0.4070 +7111 7125 0.6240 +7111 7134 0.6550 +7111 7135 0.6550 +7111 7136 0.6580 +7111 7137 0.6120 +7111 7138 0.7000 +7111 7139 0.6520 +7111 7140 0.6320 +7111 7145 0.4320 +7111 7168 0.8180 +7111 7169 0.8360 +7111 7170 0.8160 +7111 7171 0.7430 +7111 7272 0.5900 +7111 7273 0.8050 +7111 7507 0.7110 +7111 8048 0.4210 +7111 8419 0.4220 +7111 8736 0.4740 +7111 8991 0.4670 +7111 9168 0.4760 +7111 9208 0.7790 +7111 9209 0.6920 +7111 10529 0.5450 +7111 10661 0.4390 +7111 22998 0.4200 +7111 23287 0.4220 +7111 23762 0.4010 +7111 25853 0.4080 +7111 25893 0.4090 +7111 29765 0.5240 +7111 29766 0.5210 +7111 29767 0.5210 +7111 51327 0.4110 +7111 54443 0.4800 +7111 55437 0.4710 +7111 55930 0.6370 +7111 58529 0.4210 +7111 60386 0.5940 +7111 79983 0.4400 +7111 84665 0.8030 +7111 85477 0.8260 +7111 91624 0.4170 +7111 146206 0.8440 +7111 345456 0.6290 +7111 375189 0.6620 +7112 7137 0.5720 +7112 7139 0.5730 +7112 7153 0.4810 +7112 7168 0.6830 +7112 7170 0.4760 +7112 7273 0.5980 +7112 7398 0.5030 +7112 7414 0.4020 +7112 7443 0.6110 +7112 7444 0.5730 +7112 7454 0.4540 +7112 7468 0.4710 +7112 7520 0.6280 +7112 7531 0.4430 +7112 7874 0.6330 +7112 7879 0.4130 +7112 7913 0.5500 +7112 8048 0.6520 +7112 8361 0.5850 +7112 8476 0.4410 +7112 8503 0.4350 +7112 8557 0.6400 +7112 8665 0.5640 +7112 8773 0.4190 +7112 8776 0.4120 +7112 8815 0.9670 +7112 8826 0.4400 +7112 8841 0.4570 +7112 8874 0.4010 +7112 8976 0.4520 +7112 8987 0.4930 +7112 9055 0.4940 +7112 9188 0.5030 +7112 9255 0.4060 +7112 9341 0.4080 +7112 9493 0.6010 +7112 9497 0.4200 +7112 9578 0.4410 +7112 9585 0.4920 +7112 9590 0.4010 +7112 9631 0.4850 +7112 9782 0.4360 +7112 9787 0.4290 +7112 9793 0.4110 +7112 9815 0.4110 +7112 9918 0.4750 +7112 9928 0.4730 +7112 10006 0.4180 +7112 10051 0.5770 +7112 10060 0.7210 +7112 10096 0.4150 +7112 10112 0.5160 +7112 10152 0.4290 +7112 10163 0.4220 +7112 10250 0.4360 +7112 10298 0.4440 +7112 10521 0.4220 +7112 10694 0.4060 +7112 10762 0.4400 +7112 10787 0.4110 +7112 10788 0.4340 +7112 10970 0.4230 +7112 11051 0.6290 +7112 11060 0.4440 +7112 11113 0.5870 +7112 11130 0.4260 +7112 11155 0.6450 +7112 11339 0.4400 +7112 22850 0.4330 +7112 22913 0.6240 +7112 22998 0.4430 +7112 23020 0.4140 +7112 23046 0.4440 +7112 23048 0.4450 +7112 23075 0.4170 +7112 23141 0.7210 +7112 23224 0.4360 +7112 23279 0.4940 +7112 23344 0.5010 +7112 23353 0.4650 +7112 23363 0.5430 +7112 23450 0.4160 +7112 23451 0.5050 +7112 23468 0.4480 +7112 23513 0.4380 +7112 23592 0.8760 +7112 25777 0.4250 +7112 25894 0.4310 +7112 26049 0.5740 +7112 26050 0.4360 +7112 26092 0.6550 +7112 26227 0.4150 +7112 26586 0.4490 +7112 26993 0.5920 +7112 27063 0.4010 +7112 27295 0.4070 +7112 28964 0.4030 +7112 29028 0.5090 +7112 29843 0.4670 +7112 29984 0.5820 +7112 50809 0.5540 +7112 51203 0.6310 +7112 54443 0.5560 +7112 54509 0.5710 +7112 54606 0.4740 +7112 54874 0.4310 +7112 55143 0.4010 +7112 55148 0.4670 +7112 55324 0.4240 +7112 55388 0.4090 +7112 55632 0.4020 +7112 55706 0.4350 +7112 55746 0.6990 +7112 55789 0.5370 +7112 55832 0.4120 +7112 55914 0.8380 +7112 55971 0.4050 +7112 56924 0.4250 +7112 57122 0.4230 +7112 57381 0.5640 +7112 65124 0.4490 +7112 79188 0.4520 +7112 79968 0.4530 +7112 79983 0.4450 +7112 80728 0.4210 +7112 81624 0.4940 +7112 81839 0.4710 +7112 83461 0.4270 +7112 83540 0.4690 +7112 84250 0.4390 +7112 84665 0.4330 +7112 84790 0.4360 +7112 84823 0.7960 +7112 85366 0.4080 +7112 91010 0.4090 +7112 91624 0.6570 +7112 93380 0.4170 +7112 120892 0.5390 +7112 121441 0.6960 +7112 128239 0.4620 +7112 129401 0.4040 +7112 140836 0.8090 +7112 143098 0.4650 +7112 147179 0.4370 +7112 157313 0.4570 +7112 200894 0.4130 +7112 221496 0.6760 +7112 282996 0.7460 +7112 283431 0.4390 +7112 283461 0.4300 +7112 338321 0.4110 +7112 445582 0.4410 +7113 7124 0.6140 +7113 7157 0.5140 +7113 7306 0.5340 +7113 7450 0.4560 +7113 8000 0.4300 +7113 8405 0.6570 +7113 8417 0.4870 +7113 8829 0.6860 +7113 8895 0.4220 +7113 9159 0.5020 +7113 9172 0.5770 +7113 9622 0.5250 +7113 9868 0.4180 +7113 10044 0.6040 +7113 10045 0.6530 +7113 10332 0.5920 +7113 10397 0.4510 +7113 10410 0.4640 +7113 10481 0.5130 +7113 10653 0.4370 +7113 10772 0.4970 +7113 11065 0.4070 +7113 22848 0.5120 +7113 22853 0.4830 +7113 23301 0.4100 +7113 23586 0.4720 +7113 23600 0.7470 +7113 25803 0.4480 +7113 27232 0.5290 +7113 27436 0.4830 +7113 29915 0.4480 +7113 30816 0.5070 +7113 30835 0.4390 +7113 51284 0.4810 +7113 54097 0.4220 +7113 54585 0.4610 +7113 54716 0.4270 +7113 56649 0.9510 +7113 56937 0.4570 +7113 57393 0.5980 +7113 59272 0.9990 +7113 60528 0.4800 +7113 64083 0.4670 +7113 64135 0.4180 +7113 64398 0.4530 +7113 79669 0.6060 +7113 81033 0.4320 +7113 83999 0.4620 +7113 85414 0.8590 +7113 91543 0.4060 +7113 116511 0.4790 +7113 200576 0.4710 +7113 219931 0.4320 +7113 221895 0.4910 +7113 340024 0.6170 +7113 405754 0.4180 +7114 7408 0.4290 +7114 7454 0.4110 +7114 7490 0.4680 +7114 7520 0.5050 +7114 7543 0.4150 +7114 8407 0.4750 +7114 9087 0.9380 +7114 9096 0.5010 +7114 9168 0.4190 +7114 9636 0.4170 +7114 10109 0.4560 +7114 11344 0.4340 +7114 29780 0.4670 +7114 51454 0.5150 +7114 51806 0.5070 +7114 55576 0.6450 +7114 55742 0.5500 +7114 83442 0.6860 +7114 85477 0.5060 +7114 91860 0.5040 +7114 163688 0.5040 +7114 345456 0.9410 +7114 375189 0.9410 +7122 7124 0.5640 +7122 7408 0.4650 +7122 7412 0.6320 +7122 7450 0.9200 +7122 7791 0.4290 +7122 7837 0.5130 +7122 8218 0.4780 +7122 8322 0.4040 +7122 8404 0.4890 +7122 8777 0.5940 +7122 8825 0.4450 +7122 8829 0.4560 +7122 8976 0.6240 +7122 9069 0.9480 +7122 9071 0.7060 +7122 9073 0.6820 +7122 9074 0.6670 +7122 9075 0.8060 +7122 9076 0.8720 +7122 9080 0.7050 +7122 9314 0.6000 +7122 9414 0.9890 +7122 9429 0.5420 +7122 10266 0.5090 +7122 10365 0.4120 +7122 10686 0.8730 +7122 10894 0.5090 +7122 11082 0.5230 +7122 23562 0.6730 +7122 23705 0.4770 +7122 24146 0.6940 +7122 25960 0.4310 +7122 26285 0.6790 +7122 27134 0.9450 +7122 49861 0.6720 +7122 50848 0.9560 +7122 51129 0.9130 +7122 51162 0.5530 +7122 51208 0.7040 +7122 51705 0.5790 +7122 53842 0.6700 +7122 53919 0.4770 +7122 54345 0.9040 +7122 54538 0.7320 +7122 54567 0.4470 +7122 54922 0.4550 +7122 55591 0.4380 +7122 56288 0.6930 +7122 57165 0.4280 +7122 57530 0.5750 +7122 57673 0.5770 +7122 58494 0.5450 +7122 64321 0.5240 +7122 79812 0.5090 +7122 79927 0.4090 +7122 83483 0.6840 +7122 83700 0.5670 +7122 83878 0.4220 +7122 84708 0.4750 +7122 84879 0.6140 +7122 90952 0.9700 +7122 137075 0.7920 +7122 137902 0.5120 +7122 146713 0.4450 +7122 149461 0.6660 +7122 153562 0.7740 +7122 161198 0.5640 +7122 196883 0.4530 +7122 221395 0.5100 +7122 338328 0.4420 +7122 644672 0.6830 +7122 100132463 0.6720 +7122 100288814 0.7420 +7122 100506658 0.9990 +7123 7124 0.9080 +7123 7373 0.4500 +7123 8547 0.5800 +7123 10447 0.4230 +7123 23016 0.6050 +7123 30846 0.4500 +7123 51751 0.4030 +7123 55664 0.4030 +7123 64093 0.4730 +7123 147372 0.4730 +7123 219348 0.4240 +7123 221476 0.4940 +7123 284217 0.4570 +7124 7126 0.4340 +7124 7127 0.6090 +7124 7128 0.9990 +7124 7130 0.6220 +7124 7132 0.9990 +7124 7133 0.9990 +7124 7137 0.5420 +7124 7157 0.8650 +7124 7168 0.4530 +7124 7170 0.4540 +7124 7171 0.4080 +7124 7184 0.4360 +7124 7185 0.9480 +7124 7186 0.9990 +7124 7187 0.9710 +7124 7188 0.6730 +7124 7189 0.9980 +7124 7249 0.5890 +7124 7251 0.4060 +7124 7276 0.4800 +7124 7291 0.4240 +7124 7292 0.7540 +7124 7293 0.7970 +7124 7295 0.6220 +7124 7297 0.7370 +7124 7299 0.4170 +7124 7301 0.4440 +7124 7305 0.7000 +7124 7311 0.5210 +7124 7314 0.5660 +7124 7316 0.9980 +7124 7321 0.5980 +7124 7332 0.5130 +7124 7334 0.7650 +7124 7345 0.4460 +7124 7350 0.5070 +7124 7351 0.6490 +7124 7356 0.4010 +7124 7369 0.7070 +7124 7375 0.5210 +7124 7409 0.4600 +7124 7412 0.9230 +7124 7417 0.4170 +7124 7424 0.5310 +7124 7431 0.4420 +7124 7432 0.4610 +7124 7442 0.5920 +7124 7448 0.4680 +7124 7450 0.7890 +7124 7474 0.4590 +7124 7494 0.5500 +7124 7498 0.5980 +7124 7535 0.6580 +7124 7538 0.9120 +7124 7804 0.5050 +7124 7837 0.8000 +7124 7850 0.7990 +7124 7852 0.8140 +7124 7940 0.5250 +7124 7941 0.4190 +7124 7965 0.4730 +7124 7979 0.4290 +7124 8061 0.4280 +7124 8065 0.4990 +7124 8074 0.4330 +7124 8076 0.4330 +7124 8099 0.4300 +7124 8174 0.5060 +7124 8178 0.4520 +7124 8290 0.7110 +7124 8295 0.4070 +7124 8320 0.5610 +7124 8349 0.5070 +7124 8356 0.7100 +7124 8399 0.4720 +7124 8417 0.4570 +7124 8439 0.7750 +7124 8517 0.9990 +7124 8519 0.4140 +7124 8542 0.5050 +7124 8549 0.4180 +7124 8567 0.8650 +7124 8600 0.8310 +7124 8638 0.4450 +7124 8639 0.6200 +7124 8650 0.5130 +7124 8651 0.6750 +7124 8655 0.4020 +7124 8660 0.4470 +7124 8678 0.6020 +7124 8717 0.9990 +7124 8718 0.9870 +7124 8737 0.9990 +7124 8740 0.6270 +7124 8741 0.6230 +7124 8742 0.9250 +7124 8743 0.9460 +7124 8744 0.8390 +7124 8764 0.9150 +7124 8767 0.7030 +7124 8771 0.6970 +7124 8772 0.9900 +7124 8784 0.7490 +7124 8792 0.7970 +7124 8793 0.4800 +7124 8794 0.6550 +7124 8795 0.9970 +7124 8797 0.9970 +7124 8807 0.4400 +7124 8808 0.4180 +7124 8809 0.5150 +7124 8815 0.4690 +7124 8817 0.6550 +7124 8822 0.6530 +7124 8823 0.6470 +7124 8829 0.5770 +7124 8837 0.7980 +7124 8842 0.4810 +7124 8856 0.4420 +7124 8862 0.4500 +7124 8870 0.5950 +7124 8877 0.5150 +7124 8878 0.6750 +7124 8887 0.6280 +7124 8915 0.6840 +7124 8928 0.4130 +7124 8945 0.5190 +7124 8972 0.4130 +7124 8988 0.5720 +7124 8989 0.4490 +7124 8995 0.4530 +7124 9020 0.6710 +7124 9021 0.8000 +7124 9034 0.7450 +7124 9075 0.5070 +7124 9076 0.6100 +7124 9093 0.4550 +7124 9099 0.5110 +7124 9127 0.4340 +7124 9159 0.4890 +7124 9172 0.4440 +7124 9173 0.4820 +7124 9213 0.4470 +7124 9235 0.7120 +7124 9253 0.5220 +7124 9261 0.4920 +7124 9289 0.5290 +7124 9308 0.9230 +7124 9314 0.5160 +7124 9332 0.7500 +7124 9360 0.4880 +7124 9365 0.4230 +7124 9370 0.8710 +7124 9388 0.4560 +7124 9414 0.5880 +7124 9436 0.5270 +7124 9437 0.6050 +7124 9447 0.6340 +7124 9451 0.6250 +7124 9466 0.4140 +7124 9474 0.5480 +7124 9475 0.4130 +7124 9491 0.4170 +7124 9507 0.5830 +7124 9508 0.5780 +7124 9516 0.4460 +7124 9518 0.5080 +7124 9529 0.4410 +7124 9530 0.7180 +7124 9536 0.5470 +7124 9560 0.7470 +7124 9563 0.4300 +7124 9618 0.5700 +7124 9619 0.4530 +7124 9622 0.4320 +7124 9636 0.6070 +7124 9641 0.9980 +7124 9669 0.4240 +7124 9755 0.9960 +7124 9759 0.4340 +7124 9776 0.5080 +7124 9817 0.5910 +7124 9825 0.9410 +7124 9861 0.4160 +7124 9961 0.4340 +7124 9966 0.5440 +7124 9971 0.5330 +7124 9987 0.4170 +7124 10004 0.4360 +7124 10010 0.9960 +7124 10013 0.4350 +7124 10018 0.5870 +7124 10062 0.4480 +7124 10068 0.4570 +7124 10105 0.4080 +7124 10131 0.5890 +7124 10133 0.9060 +7124 10135 0.6310 +7124 10190 0.4470 +7124 10197 0.9160 +7124 10213 0.4760 +7124 10219 0.6030 +7124 10241 0.4550 +7124 10288 0.4660 +7124 10318 0.9970 +7124 10320 0.4130 +7124 10344 0.5180 +7124 10365 0.4980 +7124 10376 0.4320 +7124 10379 0.6930 +7124 10392 0.8280 +7124 10399 0.7300 +7124 10454 0.9980 +7124 10461 0.5030 +7124 10462 0.4700 +7124 10490 0.4290 +7124 10494 0.4300 +7124 10533 0.5120 +7124 10536 0.4530 +7124 10537 0.5840 +7124 10538 0.4940 +7124 10544 0.4350 +7124 10561 0.4210 +7124 10563 0.6790 +7124 10578 0.5620 +7124 10616 0.9970 +7124 10628 0.4530 +7124 10630 0.6370 +7124 10631 0.6880 +7124 10644 0.4480 +7124 10645 0.5100 +7124 10658 0.5910 +7124 10663 0.5200 +7124 10665 0.4320 +7124 10666 0.5220 +7124 10673 0.8940 +7124 10724 0.6930 +7124 10763 0.4360 +7124 10800 0.4030 +7124 10803 0.4760 +7124 10850 0.5060 +7124 10859 0.6570 +7124 10870 0.4020 +7124 10891 0.6460 +7124 10892 0.6040 +7124 10894 0.4110 +7124 10913 0.7160 +7124 11006 0.4120 +7124 11009 0.5280 +7124 11035 0.9980 +7124 11093 0.4020 +7124 11096 0.6090 +7124 11126 0.4820 +7124 11167 0.4470 +7124 11213 0.5880 +7124 22861 0.5640 +7124 22914 0.6660 +7124 22926 0.5230 +7124 22943 0.5110 +7124 23118 0.9990 +7124 23198 0.4410 +7124 23284 0.4790 +7124 23308 0.5060 +7124 23385 0.7800 +7124 23405 0.4500 +7124 23410 0.4460 +7124 23411 0.7060 +7124 23476 0.7300 +7124 23495 0.8170 +7124 23521 0.5720 +7124 23569 0.4880 +7124 23586 0.7390 +7124 23604 0.5000 +7124 23621 0.5320 +7124 23643 0.7160 +7124 23705 0.5220 +7124 23765 0.8250 +7124 24145 0.4530 +7124 25816 0.5550 +7124 25999 0.5140 +7124 26191 0.5340 +7124 26253 0.5950 +7124 26281 0.6510 +7124 26291 0.5160 +7124 26523 0.4260 +7124 26525 0.5630 +7124 26986 0.4900 +7124 27005 0.4300 +7124 27006 0.6520 +7124 27035 0.6300 +7124 27087 0.5770 +7124 27111 0.4280 +7124 27159 0.4270 +7124 27161 0.7090 +7124 27177 0.4720 +7124 27178 0.5960 +7124 27179 0.4990 +7124 27189 0.6830 +7124 27190 0.4180 +7124 27242 0.7080 +7124 27429 0.8220 +7124 28996 0.4990 +7124 29108 0.7050 +7124 29110 0.9980 +7124 29126 0.8070 +7124 29766 0.4940 +7124 29851 0.8600 +7124 29927 0.4070 +7124 29949 0.5170 +7124 30009 0.8380 +7124 30816 0.6270 +7124 30818 0.4080 +7124 30820 0.4270 +7124 30835 0.6450 +7124 50489 0.6250 +7124 50506 0.4620 +7124 50507 0.6090 +7124 50615 0.4590 +7124 50616 0.8270 +7124 50848 0.4460 +7124 50943 0.9090 +7124 50964 0.4810 +7124 51094 0.5090 +7124 51107 0.8200 +7124 51129 0.4150 +7124 51135 0.7750 +7124 51182 0.4430 +7124 51284 0.8800 +7124 51311 0.7400 +7124 51330 0.7930 +7124 51497 0.6200 +7124 51548 0.4060 +7124 51554 0.4230 +7124 51561 0.6640 +7124 51567 0.4680 +7124 51738 0.6050 +7124 51744 0.4980 +7124 51752 0.7280 +7124 51806 0.7400 +7124 53831 0.5250 +7124 53905 0.4970 +7124 54106 0.8960 +7124 54205 0.8100 +7124 54209 0.5900 +7124 54210 0.6240 +7124 54472 0.4310 +7124 54567 0.4520 +7124 55054 0.4790 +7124 55072 0.9980 +7124 55312 0.4430 +7124 55509 0.4640 +7124 55512 0.7360 +7124 55600 0.4770 +7124 55801 0.5090 +7124 55851 0.8740 +7124 56300 0.5300 +7124 56729 0.8570 +7124 56848 0.4230 +7124 56928 0.7950 +7124 56957 0.5700 +7124 57104 0.4300 +7124 57379 0.4420 +7124 57506 0.5900 +7124 57509 0.4790 +7124 57817 0.5840 +7124 57823 0.4120 +7124 58191 0.6200 +7124 58484 0.6150 +7124 58985 0.5890 +7124 59067 0.5350 +7124 59272 0.7700 +7124 60401 0.6520 +7124 60558 0.4380 +7124 64116 0.4980 +7124 64127 0.8520 +7124 64135 0.6850 +7124 64170 0.5540 +7124 64332 0.6350 +7124 64343 0.9940 +7124 64581 0.7030 +7124 64805 0.4530 +7124 64806 0.5070 +7124 65018 0.4010 +7124 65078 0.5870 +7124 65258 0.4200 +7124 79132 0.5200 +7124 79155 0.8440 +7124 79602 0.4520 +7124 79626 0.4310 +7124 79792 0.6210 +7124 79931 0.4970 +7124 80142 0.5480 +7124 80149 0.5820 +7124 80216 0.4640 +7124 80380 0.6630 +7124 80381 0.7450 +7124 80781 0.4430 +7124 81619 0.4330 +7124 81631 0.5020 +7124 81669 0.4440 +7124 81793 0.5130 +7124 81858 0.9980 +7124 84166 0.4520 +7124 84260 0.4180 +7124 84433 0.5590 +7124 84639 0.5150 +7124 84666 0.7930 +7124 84676 0.4380 +7124 84706 0.6120 +7124 84807 0.4700 +7124 84818 0.4470 +7124 84823 0.4750 +7124 84868 0.7790 +7124 84888 0.8030 +7124 84941 0.4380 +7124 85480 0.6620 +7124 89780 0.4120 +7124 90268 0.8890 +7124 90865 0.7700 +7124 91543 0.4570 +7124 91662 0.4800 +7124 91860 0.7400 +7124 91937 0.5730 +7124 93978 0.5340 +7124 94274 0.4490 +7124 112744 0.8320 +7124 114548 0.8690 +7124 114609 0.7300 +7124 114897 0.5280 +7124 114899 0.4500 +7124 114907 0.5420 +7124 115004 0.5950 +7124 115362 0.5760 +7124 115650 0.8650 +7124 117159 0.4200 +7124 121340 0.4440 +7124 122706 0.4710 +7124 130120 0.4740 +7124 131450 0.5140 +7124 133482 0.6830 +7124 137902 0.8000 +7124 140609 0.5100 +7124 140885 0.5420 +7124 142678 0.8960 +7124 143471 0.4080 +7124 146433 0.4500 +7124 146713 0.5540 +7124 148022 0.5230 +7124 148867 0.4220 +7124 149041 0.5870 +7124 149233 0.8330 +7124 151306 0.4420 +7124 151888 0.7080 +7124 163351 0.4330 +7124 163688 0.7400 +7124 163702 0.4980 +7124 168400 0.5400 +7124 169355 0.6810 +7124 170482 0.4570 +7124 171389 0.4690 +7124 197259 0.9980 +7124 201633 0.5840 +7124 203228 0.4990 +7124 220213 0.4610 +7124 246778 0.4400 +7124 252995 0.4350 +7124 255738 0.4080 +7124 257202 0.7270 +7124 257397 0.9170 +7124 259197 0.7180 +7124 282616 0.4730 +7124 282617 0.4530 +7124 282618 0.7040 +7124 284110 0.4300 +7124 284194 0.5180 +7124 338442 0.5220 +7124 338557 0.4050 +7124 340061 0.4460 +7124 345611 0.4280 +7124 374383 0.4350 +7124 386653 0.7090 +7124 387715 0.4870 +7124 388646 0.4160 +7124 388698 0.4680 +7124 405754 0.5900 +7124 407977 0.4970 +7124 414062 0.8850 +7124 414325 0.4800 +7124 440093 0.7110 +7124 440387 0.4390 +7124 440686 0.7110 +7124 493869 0.7340 +7124 653145 0.4780 +7124 653361 0.6360 +7124 653604 0.7110 +7124 654346 0.5200 +7124 727897 0.4350 +7124 728378 0.5090 +7124 730249 0.5730 +7124 100133941 0.5060 +7124 100289462 0.4470 +7124 100506658 0.7260 +7124 100526664 0.4990 +7124 102723407 0.4400 +7125 7134 0.9300 +7125 7135 0.9720 +7125 7136 0.9990 +7125 7137 0.9960 +7125 7138 0.9910 +7125 7139 0.9850 +7125 7140 0.9970 +7125 7168 0.8230 +7125 7169 0.8470 +7125 7170 0.9510 +7125 7171 0.7820 +7125 7273 0.6200 +7125 8048 0.6420 +7125 8557 0.6060 +7125 8573 0.4390 +7125 8735 0.5220 +7125 9172 0.4430 +7125 9499 0.6710 +7125 10234 0.4090 +7125 10324 0.6440 +7125 10345 0.4280 +7125 10930 0.4090 +7125 11248 0.4130 +7125 23676 0.4700 +7125 26548 0.4990 +7125 27295 0.4540 +7125 28977 0.4100 +7125 29765 0.6780 +7125 29766 0.5830 +7125 29767 0.5840 +7125 29895 0.9930 +7125 51070 0.4690 +7125 51778 0.6140 +7125 53904 0.4480 +7125 55553 0.4390 +7125 57172 0.4730 +7125 58529 0.8830 +7125 79041 0.4260 +7125 84700 0.4540 +7125 85366 0.4720 +7125 91977 0.5920 +7125 117532 0.4480 +7125 125336 0.4200 +7125 127294 0.4240 +7125 129446 0.4840 +7125 131377 0.4840 +7125 146862 0.4240 +7125 200539 0.4940 +7125 219537 0.4240 +7125 388428 0.5400 +7125 389203 0.6820 +7125 442721 0.4690 +7125 652991 0.4130 +7126 7187 0.4390 +7126 7189 0.4260 +7126 7706 0.6600 +7126 8139 0.9090 +7126 8153 0.8700 +7126 8216 0.9030 +7126 8405 0.9050 +7126 8452 0.9930 +7126 8507 0.9010 +7126 9817 0.9030 +7126 9903 0.9130 +7126 9978 0.9410 +7126 10016 0.7200 +7126 10324 0.9000 +7126 11124 0.9950 +7126 11146 0.7200 +7126 11275 0.7220 +7126 23053 0.9030 +7126 23510 0.6790 +7126 25820 0.6170 +7126 26043 0.9950 +7126 26249 0.9020 +7126 27252 0.9190 +7126 29761 0.6670 +7126 51035 0.9950 +7126 54442 0.6640 +7126 54800 0.7280 +7126 55922 0.4020 +7126 55958 0.9060 +7126 55975 0.9000 +7126 57409 0.5060 +7126 57542 0.9010 +7126 57563 0.9000 +7126 59349 0.9140 +7126 64410 0.9040 +7126 79734 0.9200 +7126 83892 0.9750 +7126 84078 0.9030 +7126 84280 0.6500 +7126 84541 0.9000 +7126 84861 0.9100 +7126 89890 0.9090 +7126 90293 0.9000 +7126 114781 0.4060 +7126 131377 0.7200 +7126 137886 0.4160 +7126 146212 0.5400 +7126 147007 0.4400 +7126 147040 0.5230 +7126 222166 0.5350 +7126 222658 0.5260 +7126 253980 0.9890 +7126 283518 0.5400 +7126 339745 0.9030 +7126 340204 0.4220 +7126 399909 0.4580 +7126 553115 0.7340 +7127 7128 0.5860 +7127 7130 0.5080 +7127 7132 0.4150 +7127 7453 0.4440 +7127 10640 0.8130 +7127 11336 0.6200 +7127 23034 0.4610 +7127 23233 0.7860 +7127 23265 0.8490 +7127 25816 0.4230 +7127 29091 0.5760 +7127 51744 0.4070 +7127 54536 0.7870 +7127 55763 0.8320 +7127 55770 0.8600 +7127 60412 0.8640 +7127 64332 0.4090 +7127 91828 0.6230 +7127 149371 0.8520 +7127 283849 0.5770 +7127 644145 0.7940 +7128 7130 0.4870 +7128 7132 0.9980 +7128 7133 0.4730 +7128 7157 0.7080 +7128 7158 0.4180 +7128 7185 0.9790 +7128 7186 0.9480 +7128 7187 0.7770 +7128 7188 0.6620 +7128 7189 0.9980 +7128 7292 0.5480 +7128 7297 0.4920 +7128 7311 0.9380 +7128 7314 0.9530 +7128 7316 0.9950 +7128 7321 0.9550 +7128 7323 0.6840 +7128 7332 0.4460 +7128 7334 0.7870 +7128 7345 0.4070 +7128 7430 0.4060 +7128 7529 0.5560 +7128 7531 0.4670 +7128 7533 0.5690 +7128 7534 0.6690 +7128 7553 0.4740 +7128 7805 0.4110 +7128 7852 0.4330 +7128 8085 0.4770 +7128 8312 0.5560 +7128 8517 0.9800 +7128 8651 0.5880 +7128 8717 0.8500 +7128 8737 0.9920 +7128 8743 0.5050 +7128 8764 0.7010 +7128 8767 0.9620 +7128 8772 0.8500 +7128 8795 0.6860 +7128 8797 0.4800 +7128 8837 0.4630 +7128 8870 0.5390 +7128 8878 0.4350 +7128 8887 0.9960 +7128 8915 0.6930 +7128 9020 0.4780 +7128 9021 0.5580 +7128 9034 0.4520 +7128 9308 0.5950 +7128 9358 0.6410 +7128 9641 0.8610 +7128 9960 0.4230 +7128 10010 0.6280 +7128 10019 0.4090 +7128 10241 0.4510 +7128 10318 0.9990 +7128 10392 0.5910 +7128 10454 0.5510 +7128 10616 0.7940 +7128 10672 0.4290 +7128 10673 0.4630 +7128 10758 0.7370 +7128 10892 0.8080 +7128 11035 0.9390 +7128 11103 0.4240 +7128 11213 0.4970 +7128 23118 0.6590 +7128 23569 0.5850 +7128 23586 0.4600 +7128 23645 0.4680 +7128 23764 0.4840 +7128 23765 0.5870 +7128 25816 0.4510 +7128 26191 0.8070 +7128 26994 0.9660 +7128 29110 0.8810 +7128 29126 0.4020 +7128 51135 0.4260 +7128 51284 0.4480 +7128 51752 0.5290 +7128 54106 0.4460 +7128 54764 0.5600 +7128 54899 0.6220 +7128 55024 0.6980 +7128 55054 0.5240 +7128 55072 0.9040 +7128 55593 0.5650 +7128 55905 0.7610 +7128 56957 0.5530 +7128 57162 0.5370 +7128 57661 0.5280 +7128 64127 0.8540 +7128 64135 0.5480 +7128 64332 0.7880 +7128 79092 0.6260 +7128 79155 0.9980 +7128 79837 0.4610 +7128 79931 0.9350 +7128 80149 0.7080 +7128 81858 0.7780 +7128 83737 0.4460 +7128 84433 0.8830 +7128 84807 0.4820 +7128 90268 0.5400 +7128 92610 0.5810 +7128 114548 0.4500 +7128 117289 0.5350 +7128 148022 0.5500 +7128 149233 0.5980 +7128 167826 0.8010 +7128 221302 0.4890 +7128 257397 0.5930 +7128 338692 0.4570 +7128 353143 0.4450 +7128 353144 0.4180 +7128 730249 0.4520 +7128 100271849 0.4550 +7130 7852 0.4060 +7130 8200 0.5300 +7130 8563 0.4310 +7130 8600 0.5210 +7130 8646 0.4500 +7130 8692 0.4390 +7130 9210 0.4950 +7130 9984 0.4310 +7130 10850 0.4890 +7130 23143 0.5980 +7130 29126 0.4330 +7130 51314 0.6080 +7130 53831 0.4690 +7130 54829 0.4930 +7130 57045 0.4390 +7130 79056 0.4560 +7130 80145 0.4310 +7130 80213 0.5880 +7130 80760 0.6840 +7130 114548 0.4650 +7130 169355 0.6160 +7130 257019 0.4390 +7130 338339 0.4330 +7130 338879 0.4120 +7130 392255 0.5340 +7132 7133 0.9990 +7132 7157 0.7410 +7132 7185 0.9950 +7132 7186 0.9990 +7132 7187 0.9770 +7132 7188 0.9990 +7132 7189 0.9960 +7132 7249 0.4630 +7132 7292 0.7000 +7132 7293 0.8020 +7132 7297 0.4040 +7132 7311 0.5200 +7132 7314 0.6260 +7132 7316 0.7340 +7132 7321 0.6140 +7132 7323 0.4300 +7132 7332 0.5000 +7132 7334 0.6640 +7132 7341 0.7390 +7132 7375 0.6100 +7132 7412 0.7610 +7132 7430 0.5240 +7132 7837 0.4340 +7132 7850 0.4940 +7132 7852 0.4380 +7132 8396 0.5950 +7132 8439 0.9940 +7132 8517 0.9990 +7132 8567 0.8820 +7132 8600 0.7230 +7132 8717 0.9990 +7132 8718 0.7280 +7132 8737 0.9990 +7132 8738 0.6980 +7132 8740 0.4450 +7132 8741 0.8270 +7132 8742 0.8500 +7132 8743 0.9930 +7132 8744 0.7140 +7132 8764 0.7530 +7132 8767 0.7060 +7132 8771 0.7350 +7132 8772 0.9990 +7132 8784 0.8290 +7132 8793 0.4740 +7132 8794 0.4570 +7132 8795 0.8420 +7132 8797 0.9180 +7132 8809 0.4410 +7132 8837 0.8520 +7132 8887 0.7530 +7132 8915 0.5170 +7132 8993 0.5870 +7132 8995 0.6440 +7132 9020 0.4040 +7132 9021 0.4170 +7132 9051 0.4850 +7132 9099 0.6210 +7132 9308 0.6270 +7132 9332 0.4090 +7132 9447 0.4200 +7132 9518 0.5520 +7132 9530 0.9950 +7132 9577 0.6220 +7132 9618 0.5860 +7132 9641 0.9980 +7132 9825 0.9970 +7132 9966 0.7340 +7132 10010 0.9970 +7132 10015 0.4240 +7132 10018 0.4790 +7132 10068 0.4130 +7132 10116 0.5210 +7132 10131 0.6340 +7132 10133 0.7020 +7132 10318 0.9950 +7132 10392 0.4110 +7132 10399 0.5640 +7132 10454 0.8350 +7132 10572 0.4070 +7132 10616 0.9980 +7132 10657 0.5700 +7132 10673 0.8570 +7132 10758 0.4890 +7132 10850 0.4380 +7132 10913 0.7000 +7132 10991 0.4110 +7132 11035 0.9270 +7132 11186 0.5730 +7132 11255 0.4420 +7132 23118 0.9980 +7132 23308 0.5090 +7132 23351 0.4130 +7132 23495 0.6590 +7132 23586 0.5870 +7132 23765 0.6560 +7132 25999 0.6500 +7132 26133 0.8410 +7132 27005 0.4610 +7132 27035 0.9190 +7132 27190 0.4570 +7132 27242 0.7600 +7132 27429 0.9960 +7132 29108 0.4250 +7132 29110 0.9980 +7132 29126 0.4640 +7132 29851 0.4180 +7132 30816 0.5490 +7132 50616 0.5710 +7132 50943 0.5320 +7132 51135 0.6400 +7132 51284 0.4410 +7132 51330 0.7510 +7132 51752 0.6990 +7132 54106 0.4860 +7132 54205 0.6220 +7132 54209 0.4400 +7132 54210 0.5170 +7132 55072 0.9980 +7132 55312 0.9780 +7132 55504 0.4930 +7132 55512 0.5770 +7132 56957 0.6810 +7132 57448 0.4220 +7132 57506 0.6090 +7132 58484 0.4110 +7132 60401 0.6230 +7132 64112 0.4060 +7132 64127 0.5580 +7132 64167 0.4290 +7132 79155 0.9950 +7132 79792 0.4320 +7132 80381 0.4790 +7132 81858 0.9980 +7132 83737 0.4460 +7132 84433 0.5010 +7132 84818 0.7340 +7132 84957 0.4930 +7132 90268 0.4350 +7132 90865 0.4030 +7132 112744 0.5660 +7132 114548 0.5800 +7132 115650 0.6960 +7132 128178 0.4040 +7132 137902 0.4330 +7132 142678 0.5570 +7132 151888 0.4390 +7132 153090 0.5990 +7132 197259 0.7290 +7132 220213 0.4330 +7132 257397 0.7110 +7132 405754 0.5280 +7133 7185 0.9970 +7133 7186 0.9940 +7133 7187 0.9280 +7133 7188 0.6960 +7133 7189 0.7030 +7133 7292 0.5540 +7133 7293 0.4230 +7133 7412 0.6260 +7133 7850 0.4940 +7133 7852 0.6010 +7133 8517 0.5120 +7133 8600 0.7180 +7133 8717 0.9390 +7133 8718 0.4540 +7133 8737 0.5050 +7133 8740 0.7130 +7133 8742 0.7770 +7133 8743 0.6850 +7133 8764 0.5380 +7133 8772 0.7430 +7133 8784 0.5380 +7133 8792 0.5450 +7133 8795 0.4540 +7133 8837 0.4550 +7133 9020 0.6330 +7133 9034 0.6080 +7133 9308 0.4690 +7133 9332 0.4470 +7133 9491 0.4010 +7133 9518 0.5460 +7133 9923 0.4250 +7133 10010 0.5540 +7133 10197 0.4420 +7133 10288 0.4150 +7133 10293 0.6350 +7133 10454 0.4630 +7133 10563 0.4130 +7133 10572 0.4220 +7133 10673 0.8380 +7133 23765 0.6460 +7133 26298 0.4260 +7133 27242 0.4430 +7133 49856 0.4990 +7133 50943 0.5070 +7133 51283 0.4930 +7133 51330 0.6720 +7133 51567 0.5300 +7133 51752 0.4650 +7133 64167 0.4480 +7133 80149 0.4660 +7133 80342 0.4330 +7133 84433 0.5240 +7133 84818 0.5620 +7133 112744 0.5030 +7133 114548 0.5170 +7133 115650 0.7800 +7133 122706 0.4410 +7133 143471 0.4240 +7133 149233 0.5590 +7133 153090 0.9010 +7133 259197 0.4730 +7133 284194 0.4940 +7133 645432 0.4060 +7133 654346 0.4960 +7134 7135 0.9930 +7134 7136 0.9990 +7134 7137 0.9990 +7134 7138 0.9900 +7134 7139 0.9990 +7134 7140 0.9840 +7134 7168 0.9810 +7134 7169 0.6740 +7134 7170 0.9680 +7134 7171 0.5840 +7134 7273 0.6040 +7134 8048 0.7010 +7134 8557 0.5430 +7134 8573 0.4390 +7134 23676 0.4730 +7134 26287 0.4240 +7134 27063 0.4250 +7134 29765 0.6390 +7134 29766 0.6050 +7134 29767 0.6060 +7134 29895 0.6150 +7134 51778 0.6250 +7134 58498 0.4350 +7134 58529 0.4640 +7134 84033 0.4100 +7134 84676 0.4790 +7134 388428 0.5400 +7134 100506540 0.4180 +7135 7136 0.6620 +7135 7137 0.5380 +7135 7138 0.9960 +7135 7139 0.9930 +7135 7140 0.9910 +7135 7168 0.9080 +7135 7169 0.9190 +7135 7170 0.9200 +7135 7171 0.7520 +7135 7273 0.6530 +7135 8048 0.8360 +7135 8557 0.7660 +7135 8735 0.5510 +7135 8736 0.4990 +7135 9499 0.4640 +7135 9533 0.4810 +7135 10324 0.5540 +7135 10345 0.4230 +7135 10398 0.5030 +7135 10627 0.6710 +7135 22989 0.5040 +7135 23676 0.4650 +7135 26287 0.5760 +7135 29765 0.6490 +7135 29766 0.5930 +7135 29767 0.5950 +7135 29895 0.8870 +7135 51778 0.7910 +7135 58498 0.8090 +7135 58529 0.6380 +7135 84676 0.6110 +7135 103910 0.4760 +7135 127294 0.5630 +7135 129446 0.5060 +7135 131377 0.4680 +7135 140465 0.5240 +7135 146862 0.4270 +7135 150572 0.5560 +7135 347862 0.5620 +7135 388428 0.4950 +7135 389203 0.7290 +7135 442721 0.7140 +7136 7137 0.9140 +7136 7138 0.9980 +7136 7139 0.9960 +7136 7140 0.9990 +7136 7168 0.8830 +7136 7169 0.9880 +7136 7170 0.8210 +7136 7171 0.8470 +7136 7273 0.7090 +7136 8048 0.5610 +7136 8557 0.5960 +7136 8735 0.5550 +7136 8736 0.4300 +7136 9172 0.4510 +7136 9427 0.4230 +7136 9499 0.5790 +7136 10324 0.6090 +7136 10398 0.4240 +7136 10627 0.4570 +7136 22989 0.4390 +7136 23676 0.4490 +7136 26287 0.4200 +7136 29765 0.7230 +7136 29766 0.5890 +7136 29767 0.5760 +7136 29895 0.9210 +7136 51778 0.5610 +7136 56203 0.4180 +7136 58498 0.6000 +7136 58529 0.8030 +7136 84676 0.5750 +7136 90019 0.5500 +7136 91977 0.4620 +7136 93408 0.4220 +7136 103910 0.4610 +7136 127294 0.4710 +7136 131377 0.4810 +7136 140465 0.5700 +7136 347862 0.5620 +7136 388428 0.6370 +7136 389203 0.7290 +7136 442721 0.5930 +7137 7138 0.9980 +7137 7139 0.9990 +7137 7140 0.9900 +7137 7168 0.9990 +7137 7169 0.9530 +7137 7170 0.9940 +7137 7171 0.9460 +7137 7273 0.8390 +7137 7276 0.4180 +7137 7414 0.4900 +7137 7431 0.4780 +7137 7450 0.4450 +7137 8048 0.8730 +7137 8557 0.7630 +7137 8736 0.4360 +7137 9518 0.4680 +7137 9531 0.4160 +7137 9985 0.4240 +7137 10021 0.5840 +7137 10060 0.6520 +7137 10231 0.4710 +7137 10345 0.4220 +7137 10398 0.5390 +7137 10529 0.4560 +7137 10627 0.4240 +7137 10776 0.4240 +7137 11123 0.7450 +7137 11155 0.7110 +7137 27063 0.4710 +7137 27295 0.4610 +7137 28227 0.9000 +7137 29765 0.5890 +7137 29766 0.5740 +7137 29767 0.5750 +7137 29895 0.6370 +7137 51086 0.9860 +7137 51422 0.8010 +7137 51778 0.6610 +7137 51806 0.5080 +7137 55012 0.9000 +7137 55844 0.9390 +7137 57057 0.4230 +7137 57158 0.5630 +7137 58498 0.8230 +7137 59272 0.5760 +7137 79188 0.4800 +7137 84665 0.5440 +7137 84676 0.6540 +7137 84706 0.4440 +7137 84930 0.4260 +7137 85366 0.6230 +7137 91624 0.6320 +7137 91860 0.4860 +7137 103910 0.5700 +7137 125972 0.4150 +7137 151246 0.4280 +7137 163688 0.4870 +7137 282996 0.7630 +7137 347862 0.5620 +7137 352909 0.4320 +7137 388428 0.6370 +7137 389203 0.7290 +7137 644943 0.5770 +7137 100526835 0.9700 +7138 7139 0.9460 +7138 7140 0.9130 +7138 7168 0.9900 +7138 7169 0.9760 +7138 7170 0.9580 +7138 7171 0.7900 +7138 7273 0.7210 +7138 8048 0.5990 +7138 8735 0.5520 +7138 8840 0.4310 +7138 9172 0.4410 +7138 9499 0.6410 +7138 9874 0.4240 +7138 10324 0.7660 +7138 10398 0.4540 +7138 10627 0.4030 +7138 26287 0.4140 +7138 29765 0.6940 +7138 29766 0.6580 +7138 29767 0.6660 +7138 29895 0.7040 +7138 50937 0.7720 +7138 51778 0.5420 +7138 56203 0.6870 +7138 57190 0.4330 +7138 58498 0.4800 +7138 58529 0.7760 +7138 84665 0.5660 +7138 84676 0.5810 +7138 84700 0.6010 +7138 91653 0.5580 +7138 93408 0.4310 +7138 124093 0.4200 +7138 127294 0.4120 +7138 131377 0.7520 +7138 140465 0.5700 +7138 145781 0.5050 +7138 200634 0.4160 +7138 246329 0.4320 +7138 352909 0.6550 +7138 375790 0.4010 +7138 388428 0.6120 +7138 390594 0.9320 +7138 442721 0.5060 +7139 7140 0.9100 +7139 7168 0.9990 +7139 7169 0.9660 +7139 7170 0.9960 +7139 7171 0.9590 +7139 7273 0.8570 +7139 7276 0.4170 +7139 7450 0.4510 +7139 7490 0.4220 +7139 7555 0.5500 +7139 8048 0.8660 +7139 8087 0.4650 +7139 8557 0.7670 +7139 8735 0.4310 +7139 8736 0.4530 +7139 8776 0.4350 +7139 9096 0.5910 +7139 9464 0.6040 +7139 9518 0.4800 +7139 9531 0.4720 +7139 10021 0.6880 +7139 10060 0.6520 +7139 10150 0.5190 +7139 10345 0.4730 +7139 10398 0.5140 +7139 10529 0.4420 +7139 10627 0.4280 +7139 10658 0.8200 +7139 10659 0.8490 +7139 11155 0.8820 +7139 11189 0.7880 +7139 22795 0.4020 +7139 23171 0.4010 +7139 27063 0.5460 +7139 27295 0.5040 +7139 29765 0.6160 +7139 29766 0.6000 +7139 29767 0.6040 +7139 29895 0.6970 +7139 29944 0.4090 +7139 50805 0.4470 +7139 51422 0.7730 +7139 51778 0.6420 +7139 55796 0.4910 +7139 55897 0.5210 +7139 56853 0.6960 +7139 57057 0.6970 +7139 57158 0.5660 +7139 57538 0.4230 +7139 58155 0.4140 +7139 58498 0.8390 +7139 58529 0.5610 +7139 60677 0.6070 +7139 60680 0.6760 +7139 64321 0.4190 +7139 79188 0.5060 +7139 79923 0.5670 +7139 84665 0.5920 +7139 85366 0.6120 +7139 91624 0.6460 +7139 93649 0.5220 +7139 103910 0.5240 +7139 145781 0.5050 +7139 147912 0.4490 +7139 150572 0.4270 +7139 282996 0.8020 +7139 352909 0.5640 +7139 388428 0.6120 +7140 7168 0.9100 +7140 7169 0.9720 +7140 7170 0.9150 +7140 7171 0.7990 +7140 7273 0.7570 +7140 7555 0.5870 +7140 8048 0.6790 +7140 8087 0.4450 +7140 8557 0.6420 +7140 8735 0.5750 +7140 8736 0.4800 +7140 8776 0.7740 +7140 9172 0.5950 +7140 9427 0.4150 +7140 9499 0.5470 +7140 10150 0.5640 +7140 10324 0.7400 +7140 10658 0.6200 +7140 10930 0.4600 +7140 11155 0.7840 +7140 22989 0.4560 +7140 23676 0.5150 +7140 26287 0.4180 +7140 29765 0.8120 +7140 29766 0.5650 +7140 29767 0.5670 +7140 29895 0.9390 +7140 51778 0.5280 +7140 51804 0.4690 +7140 54858 0.6090 +7140 55796 0.5310 +7140 56203 0.5240 +7140 58498 0.4410 +7140 58529 0.7670 +7140 84665 0.4920 +7140 84676 0.4340 +7140 84700 0.5420 +7140 103910 0.4700 +7140 127294 0.5010 +7140 131377 0.6520 +7140 140465 0.5170 +7140 145781 0.5050 +7140 146862 0.4040 +7140 147912 0.4980 +7140 150572 0.4040 +7140 202333 0.4530 +7140 352909 0.5640 +7140 388428 0.6120 +7140 390594 0.5100 +7140 448831 0.7390 +7141 7142 0.9800 +7141 7180 0.4210 +7141 7429 0.7720 +7141 7704 0.4890 +7141 8852 0.6370 +7141 9271 0.4600 +7141 9633 0.4110 +7141 10566 0.5420 +7141 23617 0.4470 +7141 23626 0.4290 +7141 26038 0.5140 +7141 26330 0.4280 +7141 26471 0.8380 +7141 27111 0.4200 +7141 29118 0.4380 +7141 50511 0.6660 +7141 51087 0.4600 +7141 54514 0.4880 +7141 55124 0.4270 +7141 55818 0.8550 +7141 57213 0.4970 +7141 58531 0.7050 +7141 66037 0.4410 +7141 81629 0.4030 +7141 83639 0.4620 +7141 83659 0.4480 +7141 83844 0.4900 +7141 83983 0.8180 +7141 84203 0.4350 +7141 84225 0.5070 +7141 84692 0.5190 +7141 93661 0.4280 +7141 117144 0.4250 +7141 132141 0.4570 +7141 144811 0.4970 +7141 149018 0.4500 +7141 160857 0.4970 +7141 166647 0.4540 +7141 219938 0.4700 +7141 255626 0.4070 +7141 341567 0.6170 +7141 346673 0.5760 +7141 374768 0.7480 +7141 646480 0.4070 +7142 8651 0.5130 +7142 8852 0.5490 +7142 10566 0.4060 +7142 26330 0.4010 +7142 26471 0.4390 +7142 29102 0.4080 +7142 29118 0.5560 +7142 50511 0.6090 +7142 51087 0.4600 +7142 51686 0.4880 +7142 54763 0.4050 +7142 55818 0.6670 +7142 58531 0.8250 +7142 83844 0.4980 +7142 83983 0.4970 +7142 93661 0.4080 +7142 132141 0.5450 +7142 219938 0.5610 +7142 221400 0.4040 +7142 317719 0.4470 +7142 341567 0.6350 +7142 346673 0.4580 +7142 374768 0.6220 +7142 389493 0.6320 +7142 390940 0.4110 +7143 7148 0.5420 +7143 7448 0.4120 +7143 8515 0.6880 +7143 8516 0.9110 +7143 22801 0.6860 +7143 63827 0.6620 +7143 63923 0.5730 +7145 7414 0.8080 +7145 8727 0.4290 +7145 8991 0.4350 +7145 9374 0.4180 +7145 9564 0.7110 +7145 10144 0.4470 +7145 10395 0.7460 +7145 10826 0.4830 +7145 11030 0.4130 +7145 11104 0.4260 +7145 23049 0.4520 +7145 23271 0.4380 +7145 23762 0.4110 +7145 25959 0.4410 +7145 29995 0.4590 +7145 55704 0.4880 +7145 57117 0.4330 +7145 65018 0.4440 +7145 79807 0.5870 +7145 79875 0.5170 +7145 80700 0.5000 +7145 83660 0.6930 +7145 83932 0.6020 +7145 100129361 0.4180 +7148 8515 0.6640 +7148 8516 0.9240 +7148 8562 0.4720 +7148 8859 0.8790 +7148 9507 0.4170 +7148 9509 0.5240 +7148 10505 0.4050 +7148 10631 0.5320 +7148 10665 0.4160 +7148 11285 0.4480 +7148 22801 0.6890 +7148 23420 0.5420 +7148 23584 0.4460 +7148 51077 0.4740 +7148 54899 0.4240 +7148 55024 0.4630 +7148 55033 0.5700 +7148 57661 0.4320 +7148 63827 0.5580 +7148 63923 0.5700 +7148 84627 0.4590 +7148 85476 0.4970 +7148 91252 0.4580 +7148 113189 0.4770 +7148 126792 0.4450 +7148 283820 0.5720 +7148 408050 0.5710 +7150 7153 0.9940 +7150 7155 0.9810 +7150 7156 0.8290 +7150 7157 0.9470 +7150 7158 0.8280 +7150 7298 0.5370 +7150 7329 0.7800 +7150 7341 0.7370 +7150 7343 0.5060 +7150 7347 0.4010 +7150 7374 0.5000 +7150 7465 0.4550 +7150 7486 0.8490 +7150 7515 0.7090 +7150 7520 0.8870 +7150 7528 0.5930 +7150 7534 0.4140 +7150 7913 0.6170 +7150 8019 0.4070 +7150 8289 0.4150 +7150 8290 0.4170 +7150 8318 0.7180 +7150 8356 0.4790 +7150 8361 0.4600 +7150 8467 0.6600 +7150 8554 0.5080 +7150 8607 0.6260 +7150 8653 0.7860 +7150 8899 0.4650 +7150 8914 0.6080 +7150 8940 0.6890 +7150 9031 0.4140 +7150 9063 0.5670 +7150 9092 0.4670 +7150 9126 0.4600 +7150 9156 0.7360 +7150 9184 0.4720 +7150 9188 0.7580 +7150 9212 0.5250 +7150 9295 0.5690 +7150 9343 0.5880 +7150 9400 0.7600 +7150 9401 0.7130 +7150 9406 0.4830 +7150 9416 0.6080 +7150 9429 0.4920 +7150 9555 0.5110 +7150 9584 0.5650 +7150 9656 0.6400 +7150 9669 0.4090 +7150 9774 0.4110 +7150 9874 0.4150 +7150 10038 0.4160 +7150 10072 0.4500 +7150 10155 0.4080 +7150 10189 0.9180 +7150 10210 0.9390 +7150 10213 0.4960 +7150 10236 0.4950 +7150 10250 0.5490 +7150 10293 0.4080 +7150 10401 0.4100 +7150 10521 0.5260 +7150 10535 0.7800 +7150 10594 0.4710 +7150 10598 0.4780 +7150 10614 0.5310 +7150 10664 0.6220 +7150 10735 0.4970 +7150 10849 0.5130 +7150 10856 0.4370 +7150 10923 0.7140 +7150 11011 0.4880 +7150 11044 0.6090 +7150 11073 0.6120 +7150 11168 0.5220 +7150 11169 0.7660 +7150 11198 0.8030 +7150 11200 0.5680 +7150 11284 0.6850 +7150 11325 0.5110 +7150 11338 0.4090 +7150 22907 0.4510 +7150 22933 0.5640 +7150 23020 0.4470 +7150 23047 0.5370 +7150 23051 0.4080 +7150 23054 0.4130 +7150 23064 0.5740 +7150 23137 0.5940 +7150 23244 0.5620 +7150 23411 0.6230 +7150 23450 0.5840 +7150 23451 0.4830 +7150 23476 0.7640 +7150 23583 0.4220 +7150 23626 0.5050 +7150 25836 0.6130 +7150 25962 0.4410 +7150 26036 0.5790 +7150 26986 0.5430 +7150 27301 0.4710 +7150 27316 0.9050 +7150 27339 0.7900 +7150 29028 0.4010 +7150 29072 0.4080 +7150 29117 0.4660 +7150 51567 0.7640 +7150 51588 0.6370 +7150 53339 0.9110 +7150 54514 0.7870 +7150 54575 0.5520 +7150 54576 0.5440 +7150 54577 0.5500 +7150 54578 0.5360 +7150 54600 0.4540 +7150 54606 0.6430 +7150 54657 0.5290 +7150 54658 0.5930 +7150 54797 0.4480 +7150 54840 0.6430 +7150 54962 0.5160 +7150 55131 0.6610 +7150 55193 0.4330 +7150 55294 0.5860 +7150 55388 0.6480 +7150 55643 0.9030 +7150 55660 0.5100 +7150 55723 0.4190 +7150 55749 0.6850 +7150 55775 0.9920 +7150 56257 0.5130 +7150 56852 0.4240 +7150 57178 0.4110 +7150 57697 0.6220 +7150 58517 0.6510 +7150 64282 0.6700 +7150 64324 0.4840 +7150 79142 0.4630 +7150 79621 0.5470 +7150 79677 0.5650 +7150 79869 0.4420 +7150 79915 0.4070 +7150 80010 0.7420 +7150 80119 0.5920 +7150 80198 0.7920 +7150 81620 0.6320 +7150 83932 0.5470 +7150 84246 0.4340 +7150 84450 0.4560 +7150 84464 0.4420 +7150 84893 0.4330 +7150 84901 0.4130 +7150 85363 0.7310 +7150 85403 0.4500 +7150 91607 0.5210 +7150 124245 0.5080 +7150 146956 0.4330 +7150 200558 0.5460 +7150 220988 0.5400 +7150 246243 0.6850 +7150 286053 0.5500 +7150 400569 0.4790 +7150 440093 0.4250 +7150 440686 0.4170 +7150 548593 0.5150 +7150 653604 0.4400 +7153 7155 0.9730 +7153 7156 0.9170 +7153 7157 0.8430 +7153 7158 0.4510 +7153 7167 0.4620 +7153 7175 0.5210 +7153 7203 0.5670 +7153 7272 0.9580 +7153 7280 0.4680 +7153 7298 0.9600 +7153 7329 0.7610 +7153 7341 0.6700 +7153 7372 0.4790 +7153 7407 0.4330 +7153 7443 0.4720 +7153 7465 0.5320 +7153 7469 0.5040 +7153 7486 0.5850 +7153 7514 0.5650 +7153 7520 0.8310 +7153 7528 0.6080 +7153 7531 0.4140 +7153 7704 0.4470 +7153 7846 0.5370 +7153 7913 0.6160 +7153 7994 0.4240 +7153 8021 0.4360 +7153 8086 0.4400 +7153 8192 0.4390 +7153 8208 0.4370 +7153 8243 0.5190 +7153 8289 0.6440 +7153 8290 0.5420 +7153 8317 0.5690 +7153 8318 0.9170 +7153 8338 0.4460 +7153 8340 0.5980 +7153 8341 0.5050 +7153 8342 0.5130 +7153 8345 0.5820 +7153 8347 0.5090 +7153 8348 0.5170 +7153 8349 0.6210 +7153 8356 0.4930 +7153 8361 0.7340 +7153 8438 0.6870 +7153 8458 0.4940 +7153 8467 0.4010 +7153 8480 0.4130 +7153 8522 0.4610 +7153 8565 0.4860 +7153 8815 0.6320 +7153 8833 0.5300 +7153 8835 0.4270 +7153 8900 0.4750 +7153 8914 0.6640 +7153 8940 0.5830 +7153 8970 0.5220 +7153 9021 0.4310 +7153 9031 0.5620 +7153 9055 0.9320 +7153 9088 0.5030 +7153 9126 0.6750 +7153 9133 0.9750 +7153 9134 0.5650 +7153 9156 0.7970 +7153 9184 0.4370 +7153 9188 0.5760 +7153 9212 0.9700 +7153 9232 0.9420 +7153 9319 0.8230 +7153 9343 0.4030 +7153 9349 0.4760 +7153 9400 0.5080 +7153 9401 0.6380 +7153 9493 0.9270 +7153 9585 0.5860 +7153 9631 0.5860 +7153 9656 0.4650 +7153 9669 0.4680 +7153 9688 0.5760 +7153 9700 0.9090 +7153 9735 0.6880 +7153 9768 0.9200 +7153 9787 0.9780 +7153 9793 0.5410 +7153 9818 0.4220 +7153 9824 0.7580 +7153 9833 0.9550 +7153 9837 0.6990 +7153 9883 0.4130 +7153 9908 0.4350 +7153 9918 0.6860 +7153 9928 0.9270 +7153 9972 0.4830 +7153 9985 0.5630 +7153 10024 0.7840 +7153 10051 0.9030 +7153 10112 0.9740 +7153 10155 0.6080 +7153 10250 0.4590 +7153 10381 0.4550 +7153 10403 0.8760 +7153 10460 0.5520 +7153 10535 0.7530 +7153 10575 0.4960 +7153 10576 0.4820 +7153 10592 0.9280 +7153 10606 0.5340 +7153 10615 0.9410 +7153 10635 0.8220 +7153 10664 0.7530 +7153 10721 0.5720 +7153 10733 0.9040 +7153 10735 0.5210 +7153 10744 0.4500 +7153 10762 0.4730 +7153 10801 0.4470 +7153 10926 0.5900 +7153 10987 0.7120 +7153 11004 0.9370 +7153 11065 0.9730 +7153 11073 0.7990 +7153 11097 0.4170 +7153 11113 0.4620 +7153 11130 0.8750 +7153 11169 0.6920 +7153 11198 0.4180 +7153 11200 0.5460 +7153 11201 0.4570 +7153 11338 0.4460 +7153 11339 0.6350 +7153 22916 0.6000 +7153 22938 0.4180 +7153 22948 0.5110 +7153 22974 0.9420 +7153 23028 0.4860 +7153 23047 0.7010 +7153 23137 0.7060 +7153 23165 0.5340 +7153 23225 0.5200 +7153 23244 0.7440 +7153 23279 0.4810 +7153 23310 0.5170 +7153 23397 0.8910 +7153 23411 0.5220 +7153 23476 0.8700 +7153 23511 0.4590 +7153 23522 0.4840 +7153 23594 0.4060 +7153 23626 0.6440 +7153 23636 0.4400 +7153 24137 0.9150 +7153 25788 0.4560 +7153 25836 0.5410 +7153 26036 0.7380 +7153 26073 0.4810 +7153 26271 0.6800 +7153 26586 0.8980 +7153 27127 0.4090 +7153 27152 0.4870 +7153 27161 0.4220 +7153 27339 0.4130 +7153 29028 0.8370 +7153 29089 0.6720 +7153 29127 0.8820 +7153 29128 0.8550 +7153 29789 0.4870 +7153 51053 0.5270 +7153 51203 0.9990 +7153 51340 0.4130 +7153 51343 0.4610 +7153 51512 0.7140 +7153 51514 0.8220 +7153 51547 0.5760 +7153 51567 0.8660 +7153 51588 0.7960 +7153 51659 0.7110 +7153 53371 0.4160 +7153 54145 0.5210 +7153 54443 0.8610 +7153 54478 0.6240 +7153 54596 0.4300 +7153 54700 0.4660 +7153 54793 0.7340 +7153 54802 0.4090 +7153 54821 0.7340 +7153 54892 0.6470 +7153 54908 0.4150 +7153 54962 0.4350 +7153 55010 0.5450 +7153 55055 0.5150 +7153 55120 0.4110 +7153 55143 0.9200 +7153 55157 0.5030 +7153 55165 0.9280 +7153 55215 0.7150 +7153 55247 0.9050 +7153 55255 0.4160 +7153 55294 0.6330 +7153 55355 0.9110 +7153 55388 0.7370 +7153 55635 0.7330 +7153 55699 0.4100 +7153 55706 0.5400 +7153 55723 0.7090 +7153 55746 0.4690 +7153 55749 0.4700 +7153 55775 0.7620 +7153 55789 0.6850 +7153 55839 0.5710 +7153 55904 0.4040 +7153 55957 0.5520 +7153 56916 0.4300 +7153 56980 0.6020 +7153 56992 0.9550 +7153 57082 0.7110 +7153 57122 0.5120 +7153 57405 0.5590 +7153 57650 0.4490 +7153 57697 0.5350 +7153 63895 0.4590 +7153 63967 0.6760 +7153 64105 0.6140 +7153 64151 0.9670 +7153 64946 0.4850 +7153 65056 0.6700 +7153 79019 0.6880 +7153 79023 0.5390 +7153 79075 0.4250 +7153 79631 0.4090 +7153 79661 0.4540 +7153 79677 0.7960 +7153 79682 0.6880 +7153 79728 0.4750 +7153 79733 0.8080 +7153 79801 0.6420 +7153 79902 0.4760 +7153 79915 0.4570 +7153 79935 0.4290 +7153 80010 0.4930 +7153 80119 0.5240 +7153 80198 0.5300 +7153 81610 0.5620 +7153 81620 0.8680 +7153 81624 0.5130 +7153 81929 0.4270 +7153 81930 0.6430 +7153 83461 0.8760 +7153 83540 0.9360 +7153 83879 0.6090 +7153 83903 0.4770 +7153 83932 0.4410 +7153 83987 0.5430 +7153 84057 0.6160 +7153 84250 0.4220 +7153 84340 0.4120 +7153 84450 0.4150 +7153 84515 0.4160 +7153 84643 0.4170 +7153 84705 0.4450 +7153 84823 0.5270 +7153 84893 0.4640 +7153 84930 0.4820 +7153 85236 0.5190 +7153 85417 0.4460 +7153 89839 0.5980 +7153 90353 0.4300 +7153 90381 0.6270 +7153 90417 0.5390 +7153 91607 0.5200 +7153 91750 0.5270 +7153 93953 0.4080 +7153 113130 0.9170 +7153 114907 0.5370 +7153 116028 0.5140 +7153 116447 0.9640 +7153 126820 0.4040 +7153 128239 0.6600 +7153 128312 0.5000 +7153 129401 0.4460 +7153 132660 0.5680 +7153 142940 0.4260 +7153 144132 0.4110 +7153 144455 0.5380 +7153 146909 0.6770 +7153 146956 0.4250 +7153 147841 0.5830 +7153 150468 0.8300 +7153 151246 0.4460 +7153 151648 0.6760 +7153 157313 0.7890 +7153 157570 0.6920 +7153 158983 0.4970 +7153 165918 0.4180 +7153 166979 0.6520 +7153 200895 0.4870 +7153 203068 0.5930 +7153 220134 0.5830 +7153 221150 0.6430 +7153 255626 0.4970 +7153 259266 0.9960 +7153 284058 0.4690 +7153 286053 0.4350 +7153 286436 0.4970 +7153 286826 0.5970 +7153 348995 0.4600 +7153 387103 0.5620 +7153 440093 0.4750 +7153 440686 0.4750 +7153 440689 0.5000 +7153 653604 0.4790 +7153 100101267 0.4170 +7153 114483833 0.4970 +7155 7156 0.6550 +7155 7157 0.6940 +7155 7158 0.4240 +7155 7167 0.4190 +7155 7298 0.5580 +7155 7329 0.7400 +7155 7341 0.7110 +7155 7372 0.4350 +7155 7391 0.5790 +7155 7407 0.4220 +7155 7486 0.5320 +7155 7508 0.6880 +7155 7520 0.5140 +7155 7534 0.4100 +7155 7994 0.4890 +7155 8192 0.4480 +7155 8243 0.4790 +7155 8318 0.4690 +7155 8361 0.4800 +7155 8458 0.4270 +7155 8467 0.4270 +7155 8522 0.5210 +7155 8565 0.4580 +7155 8815 0.5720 +7155 8940 0.6270 +7155 9031 0.6930 +7155 9055 0.5330 +7155 9126 0.6590 +7155 9133 0.4820 +7155 9156 0.5230 +7155 9212 0.5250 +7155 9232 0.4190 +7155 9400 0.4230 +7155 9401 0.5120 +7155 9493 0.5210 +7155 9584 0.4110 +7155 9698 0.4020 +7155 9700 0.5710 +7155 9787 0.4050 +7155 9918 0.4120 +7155 9985 0.5050 +7155 10051 0.6810 +7155 10112 0.4120 +7155 10155 0.4460 +7155 10535 0.4840 +7155 10592 0.7800 +7155 10664 0.7750 +7155 10744 0.4320 +7155 10801 0.4570 +7155 11065 0.4070 +7155 11073 0.9550 +7155 11198 0.5590 +7155 11201 0.4010 +7155 22938 0.4380 +7155 23047 0.4760 +7155 23137 0.5920 +7155 23244 0.6170 +7155 23369 0.5200 +7155 23397 0.6380 +7155 23405 0.4390 +7155 23476 0.6330 +7155 23522 0.5580 +7155 23626 0.5930 +7155 26036 0.7010 +7155 26054 0.4050 +7155 27127 0.4150 +7155 27250 0.4360 +7155 27335 0.4410 +7155 29789 0.4770 +7155 29803 0.4160 +7155 51340 0.4550 +7155 51343 0.4260 +7155 51567 0.8200 +7155 51586 0.4860 +7155 51588 0.5580 +7155 51780 0.4630 +7155 54443 0.4190 +7155 54793 0.7350 +7155 54995 0.4340 +7155 55157 0.4120 +7155 55247 0.4190 +7155 55255 0.4080 +7155 55636 0.5470 +7155 55699 0.4360 +7155 55775 0.6270 +7155 57680 0.4950 +7155 57697 0.4670 +7155 79631 0.4230 +7155 79677 0.7120 +7155 79935 0.4270 +7155 80119 0.4030 +7155 80198 0.4310 +7155 80349 0.4020 +7155 83461 0.4080 +7155 83939 0.4100 +7155 84340 0.4130 +7155 84705 0.4400 +7155 84893 0.4480 +7155 85417 0.4120 +7155 90353 0.4320 +7155 91603 0.4170 +7155 116447 0.9730 +7155 140690 0.5470 +7155 142940 0.4310 +7155 166979 0.5470 +7155 200895 0.4370 +7155 285989 0.4110 +7155 653604 0.4140 +7156 7157 0.7360 +7156 7158 0.4500 +7156 7167 0.4110 +7156 7298 0.4410 +7156 7311 0.4990 +7156 7314 0.5110 +7156 7316 0.5110 +7156 7329 0.4990 +7156 7407 0.4530 +7156 7486 0.9960 +7156 7516 0.6560 +7156 7517 0.8600 +7156 7520 0.5740 +7156 7979 0.5690 +7156 8290 0.6020 +7156 8340 0.5220 +7156 8341 0.5220 +7156 8342 0.5220 +7156 8345 0.5220 +7156 8347 0.5220 +7156 8348 0.5220 +7156 8349 0.6370 +7156 8361 0.6580 +7156 8438 0.6350 +7156 8458 0.4440 +7156 8565 0.4230 +7156 8914 0.4760 +7156 8940 0.9190 +7156 8970 0.5250 +7156 9126 0.4960 +7156 9156 0.9440 +7156 9349 0.4500 +7156 9400 0.9460 +7156 9401 0.9620 +7156 9533 0.4810 +7156 9894 0.5760 +7156 10102 0.4050 +7156 10111 0.8070 +7156 10198 0.5220 +7156 10524 0.5010 +7156 10635 0.5790 +7156 10714 0.6390 +7156 11073 0.7530 +7156 11128 0.5370 +7156 11144 0.7100 +7156 11169 0.5040 +7156 11200 0.5790 +7156 23137 0.7700 +7156 23395 0.5110 +7156 23514 0.6470 +7156 23626 0.6800 +7156 23649 0.4280 +7156 25788 0.7090 +7156 25885 0.5190 +7156 27030 0.7900 +7156 27131 0.4370 +7156 27301 0.8490 +7156 29089 0.4290 +7156 29789 0.4880 +7156 29935 0.7640 +7156 50485 0.5440 +7156 51426 0.6000 +7156 51520 0.5000 +7156 51741 0.4020 +7156 51750 0.7290 +7156 54059 0.4660 +7156 54107 0.4010 +7156 54145 0.5220 +7156 54465 0.4020 +7156 54537 0.4040 +7156 54821 0.9570 +7156 54916 0.4350 +7156 54932 0.4650 +7156 54962 0.4830 +7156 54968 0.4820 +7156 55120 0.6140 +7156 55157 0.4220 +7156 55268 0.4590 +7156 55775 0.5150 +7156 56655 0.4180 +7156 56852 0.4560 +7156 57082 0.4540 +7156 57697 0.9990 +7156 63901 0.4210 +7156 63922 0.4120 +7156 64175 0.6830 +7156 64965 0.4930 +7156 79008 0.5810 +7156 79677 0.7720 +7156 79728 0.7020 +7156 79840 0.4760 +7156 79892 0.4050 +7156 79915 0.5090 +7156 80010 0.9990 +7156 80119 0.7070 +7156 80169 0.4250 +7156 80198 0.9550 +7156 80233 0.9950 +7156 81570 0.4250 +7156 83695 0.4990 +7156 83990 0.7490 +7156 84083 0.4310 +7156 84126 0.7440 +7156 84464 0.8180 +7156 84893 0.7820 +7156 85236 0.5220 +7156 85365 0.5620 +7156 91442 0.7390 +7156 92797 0.5410 +7156 116028 0.9990 +7156 116447 0.8580 +7156 128312 0.5220 +7156 144715 0.5690 +7156 146956 0.8430 +7156 164045 0.5480 +7156 165918 0.4460 +7156 197342 0.6150 +7156 201973 0.4590 +7156 246243 0.5970 +7156 255626 0.5220 +7156 286053 0.7000 +7156 286204 0.4280 +7156 348654 0.8210 +7156 378708 0.9950 +7156 388649 0.4030 +7156 548593 0.9070 +7156 644890 0.4090 +7157 7158 0.9990 +7157 7159 0.9990 +7157 7161 0.9850 +7157 7168 0.4170 +7157 7174 0.4960 +7157 7175 0.4520 +7157 7178 0.8590 +7157 7184 0.6140 +7157 7185 0.5590 +7157 7186 0.5120 +7157 7187 0.4830 +7157 7189 0.9540 +7157 7203 0.7760 +7157 7248 0.4370 +7157 7249 0.7130 +7157 7251 0.7010 +7157 7253 0.4320 +7157 7266 0.4970 +7157 7272 0.5800 +7157 7273 0.6040 +7157 7277 0.6140 +7157 7280 0.7090 +7157 7283 0.5160 +7157 7290 0.5950 +7157 7291 0.9670 +7157 7295 0.8990 +7157 7296 0.6090 +7157 7298 0.7740 +7157 7299 0.5090 +7157 7306 0.5960 +7157 7307 0.6210 +7157 7311 0.6540 +7157 7314 0.7990 +7157 7316 0.9210 +7157 7317 0.7100 +7157 7319 0.8240 +7157 7320 0.4450 +7157 7321 0.5780 +7157 7322 0.5310 +7157 7324 0.4770 +7157 7329 0.9940 +7157 7332 0.5000 +7157 7334 0.8110 +7157 7335 0.4950 +7157 7337 0.9990 +7157 7341 0.9960 +7157 7343 0.5860 +7157 7345 0.7950 +7157 7351 0.4110 +7157 7372 0.4350 +7157 7374 0.4700 +7157 7375 0.6560 +7157 7391 0.6310 +7157 7398 0.4990 +7157 7399 0.4480 +7157 7403 0.7100 +7157 7405 0.5900 +7157 7412 0.5030 +7157 7414 0.5530 +7157 7415 0.7090 +7157 7416 0.7720 +7157 7424 0.4470 +7157 7428 0.7840 +7157 7430 0.4910 +7157 7431 0.7120 +7157 7443 0.8590 +7157 7444 0.4510 +7157 7454 0.5300 +7157 7465 0.7530 +7157 7468 0.7690 +7157 7471 0.6880 +7157 7472 0.4330 +7157 7474 0.4770 +7157 7486 0.9630 +7157 7490 0.9830 +7157 7494 0.5290 +7157 7498 0.4310 +7157 7507 0.7380 +7157 7508 0.4480 +7157 7514 0.9590 +7157 7515 0.7500 +7157 7516 0.4770 +7157 7517 0.5180 +7157 7518 0.6930 +7157 7520 0.6890 +7157 7528 0.9420 +7157 7529 0.8280 +7157 7531 0.9000 +7157 7532 0.9090 +7157 7533 0.5890 +7157 7534 0.9910 +7157 7535 0.5500 +7157 7545 0.5210 +7157 7704 0.7030 +7157 7706 0.7800 +7157 7707 0.8570 +7157 7709 0.6110 +7157 7764 0.4150 +7157 7799 0.5930 +7157 7832 0.8880 +7157 7837 0.8210 +7157 7849 0.7720 +7157 7852 0.6140 +7157 7862 0.5840 +7157 7874 0.9990 +7157 7905 0.4160 +7157 7913 0.4180 +7157 7917 0.6300 +7157 7942 0.4540 +7157 7965 0.7670 +7157 7975 0.4200 +7157 7979 0.5150 +7157 7980 0.4880 +7157 7994 0.8610 +7157 8000 0.5420 +7157 8013 0.5590 +7157 8019 0.5960 +7157 8031 0.4440 +7157 8034 0.5410 +7157 8061 0.4990 +7157 8078 0.4600 +7157 8085 0.8100 +7157 8087 0.4830 +7157 8091 0.8670 +7157 8115 0.4210 +7157 8140 0.4210 +7157 8148 0.4570 +7157 8178 0.8220 +7157 8202 0.6390 +7157 8220 0.4760 +7157 8233 0.6250 +7157 8237 0.8640 +7157 8239 0.5700 +7157 8241 0.6340 +7157 8242 0.4570 +7157 8266 0.7170 +7157 8289 0.9610 +7157 8290 0.8630 +7157 8294 0.8220 +7157 8295 0.9730 +7157 8312 0.9050 +7157 8313 0.5270 +7157 8314 0.6090 +7157 8317 0.4180 +7157 8335 0.8000 +7157 8337 0.5830 +7157 8338 0.5830 +7157 8340 0.4760 +7157 8347 0.4100 +7157 8349 0.6510 +7157 8350 0.8580 +7157 8351 0.8610 +7157 8352 0.8670 +7157 8353 0.8590 +7157 8354 0.8570 +7157 8355 0.8590 +7157 8356 0.9710 +7157 8357 0.8600 +7157 8358 0.8790 +7157 8359 0.8200 +7157 8360 0.8210 +7157 8361 0.9470 +7157 8362 0.8200 +7157 8363 0.8190 +7157 8364 0.8240 +7157 8366 0.8210 +7157 8367 0.8220 +7157 8368 0.8200 +7157 8369 0.7190 +7157 8370 0.8800 +7157 8405 0.5710 +7157 8408 0.5410 +7157 8411 0.4270 +7157 8431 0.7770 +7157 8434 0.4570 +7157 8438 0.5680 +7157 8445 0.8700 +7157 8450 0.6770 +7157 8451 0.8820 +7157 8452 0.5070 +7157 8453 0.6740 +7157 8454 0.7090 +7157 8456 0.4020 +7157 8467 0.6320 +7157 8493 0.8830 +7157 8503 0.5180 +7157 8517 0.5190 +7157 8525 0.4510 +7157 8535 0.6210 +7157 8549 0.6140 +7157 8550 0.7380 +7157 8553 0.6820 +7157 8554 0.8970 +7157 8556 0.6910 +7157 8562 0.5110 +7157 8570 0.4220 +7157 8600 0.4590 +7157 8607 0.5420 +7157 8621 0.6040 +7157 8626 0.9530 +7157 8648 0.8260 +7157 8650 0.9400 +7157 8651 0.8390 +7157 8655 0.4650 +7157 8660 0.4150 +7157 8662 0.4250 +7157 8667 0.4420 +7157 8678 0.9390 +7157 8717 0.4440 +7157 8726 0.6600 +7157 8737 0.6260 +7157 8738 0.5860 +7157 8739 0.4450 +7157 8743 0.6960 +7157 8772 0.8200 +7157 8793 0.7690 +7157 8794 0.6600 +7157 8795 0.9080 +7157 8797 0.8980 +7157 8805 0.8650 +7157 8812 0.8060 +7157 8815 0.5440 +7157 8817 0.5300 +7157 8822 0.5270 +7157 8823 0.5220 +7157 8833 0.6420 +7157 8837 0.8160 +7157 8841 0.7410 +7157 8842 0.6710 +7157 8844 0.4690 +7157 8850 0.9850 +7157 8851 0.7980 +7157 8856 0.5180 +7157 8864 0.8790 +7157 8878 0.9010 +7157 8880 0.7690 +7157 8883 0.5200 +7157 8887 0.4790 +7157 8900 0.9740 +7157 8924 0.8160 +7157 8925 0.7200 +7157 8928 0.5170 +7157 8945 0.7580 +7157 8968 0.8570 +7157 8970 0.8740 +7157 8985 0.4780 +7157 8988 0.7330 +7157 8991 0.4790 +7157 8996 0.4330 +7157 9013 0.4960 +7157 9015 0.4250 +7157 9021 0.6380 +7157 9025 0.4540 +7157 9040 0.4570 +7157 9045 0.4080 +7157 9063 0.8440 +7157 9070 0.6840 +7157 9099 0.5730 +7157 9100 0.9310 +7157 9112 0.9290 +7157 9113 0.5290 +7157 9122 0.4040 +7157 9123 0.4210 +7157 9125 0.5470 +7157 9126 0.4300 +7157 9131 0.4420 +7157 9133 0.5660 +7157 9134 0.8900 +7157 9140 0.5110 +7157 9141 0.6760 +7157 9156 0.7080 +7157 9184 0.7180 +7157 9212 0.9080 +7157 9219 0.8570 +7157 9232 0.7750 +7157 9241 0.4200 +7157 9253 0.6850 +7157 9260 0.5300 +7157 9261 0.4400 +7157 9271 0.4690 +7157 9314 0.9250 +7157 9332 0.4190 +7157 9337 0.5570 +7157 9349 0.5100 +7157 9360 0.4540 +7157 9370 0.4440 +7157 9397 0.5580 +7157 9401 0.6600 +7157 9414 0.4800 +7157 9423 0.4850 +7157 9429 0.6150 +7157 9440 0.9140 +7157 9448 0.4650 +7157 9451 0.6270 +7157 9474 0.7640 +7157 9476 0.5060 +7157 9491 0.4430 +7157 9518 0.7620 +7157 9521 0.4770 +7157 9529 0.7030 +7157 9531 0.5950 +7157 9532 0.7520 +7157 9537 0.5880 +7157 9538 0.5690 +7157 9540 0.9030 +7157 9555 0.4870 +7157 9563 0.8790 +7157 9577 0.6700 +7157 9582 0.4790 +7157 9611 0.8530 +7157 9612 0.6780 +7157 9623 0.4140 +7157 9636 0.6200 +7157 9656 0.8530 +7157 9669 0.5160 +7157 9682 0.7980 +7157 9690 0.4070 +7157 9730 0.7510 +7157 9734 0.6130 +7157 9739 0.8260 +7157 9757 0.4120 +7157 9759 0.5540 +7157 9774 0.5460 +7157 9776 0.4090 +7157 9794 0.5620 +7157 9810 0.7320 +7157 9817 0.8100 +7157 9821 0.9840 +7157 9824 0.5090 +7157 9833 0.4630 +7157 9839 0.5810 +7157 9861 0.6010 +7157 9869 0.6800 +7157 9887 0.6000 +7157 9891 0.7220 +7157 9908 0.6110 +7157 9925 0.4900 +7157 9927 0.4350 +7157 9928 0.4490 +7157 9958 0.5340 +7157 9960 0.4280 +7157 9965 0.4240 +7157 9968 0.6680 +7157 9978 0.7760 +7157 9987 0.4070 +7157 9988 0.7680 +7157 9991 0.4430 +7157 9997 0.9610 +7157 10000 0.9530 +7157 10009 0.6510 +7157 10013 0.6020 +7157 10014 0.7680 +7157 10018 0.8670 +7157 10019 0.4020 +7157 10038 0.4360 +7157 10048 0.6410 +7157 10055 0.5110 +7157 10059 0.4460 +7157 10075 0.8250 +7157 10085 0.5080 +7157 10105 0.9930 +7157 10110 0.4850 +7157 10111 0.7090 +7157 10112 0.4240 +7157 10114 0.9580 +7157 10133 0.4970 +7157 10135 0.4750 +7157 10146 0.8790 +7157 10153 0.4020 +7157 10155 0.9040 +7157 10163 0.5400 +7157 10188 0.4440 +7157 10190 0.7370 +7157 10197 0.8820 +7157 10210 0.9520 +7157 10213 0.5680 +7157 10215 0.6030 +7157 10221 0.4950 +7157 10232 0.4340 +7157 10238 0.6400 +7157 10269 0.4320 +7157 10273 0.9680 +7157 10277 0.7320 +7157 10278 0.4060 +7157 10298 0.5020 +7157 10320 0.5660 +7157 10322 0.4310 +7157 10365 0.4420 +7157 10370 0.7230 +7157 10381 0.5560 +7157 10383 0.5120 +7157 10397 0.8590 +7157 10399 0.4710 +7157 10401 0.6120 +7157 10413 0.7210 +7157 10419 0.9240 +7157 10454 0.4350 +7157 10459 0.4440 +7157 10460 0.6610 +7157 10474 0.9830 +7157 10492 0.5700 +7157 10498 0.9300 +7157 10499 0.6710 +7157 10514 0.7980 +7157 10517 0.4580 +7157 10519 0.4740 +7157 10521 0.9700 +7157 10524 0.9960 +7157 10528 0.5930 +7157 10533 0.9070 +7157 10536 0.5910 +7157 10537 0.7860 +7157 10542 0.4760 +7157 10564 0.4020 +7157 10572 0.6580 +7157 10574 0.8230 +7157 10575 0.8870 +7157 10576 0.8260 +7157 10594 0.5220 +7157 10602 0.4670 +7157 10612 0.5370 +7157 10614 0.4630 +7157 10616 0.4420 +7157 10628 0.8550 +7157 10630 0.4760 +7157 10642 0.4960 +7157 10643 0.4620 +7157 10650 0.4990 +7157 10657 0.7010 +7157 10664 0.8300 +7157 10668 0.4460 +7157 10669 0.4780 +7157 10693 0.6680 +7157 10694 0.7570 +7157 10724 0.7250 +7157 10725 0.5620 +7157 10728 0.4170 +7157 10733 0.4760 +7157 10735 0.5820 +7157 10744 0.4610 +7157 10746 0.5390 +7157 10763 0.5940 +7157 10765 0.4140 +7157 10769 0.8550 +7157 10801 0.4310 +7157 10813 0.6720 +7157 10847 0.5140 +7157 10848 0.9990 +7157 10856 0.4140 +7157 10891 0.8870 +7157 10899 0.4310 +7157 10902 0.5080 +7157 10912 0.9370 +7157 10916 0.7500 +7157 10919 0.9190 +7157 10923 0.6600 +7157 10971 0.7390 +7157 10979 0.5990 +7157 10987 0.9770 +7157 10992 0.5600 +7157 11010 0.5730 +7157 11035 0.4220 +7157 11052 0.4220 +7157 11059 0.6960 +7157 11060 0.6070 +7157 11065 0.4320 +7157 11073 0.9490 +7157 11074 0.4300 +7157 11091 0.7680 +7157 11100 0.6730 +7157 11127 0.4760 +7157 11130 0.4930 +7157 11140 0.5810 +7157 11143 0.6880 +7157 11155 0.5750 +7157 11186 0.6200 +7157 11197 0.4180 +7157 11198 0.7560 +7157 11200 0.9990 +7157 11201 0.9600 +7157 11214 0.4540 +7157 11218 0.8880 +7157 11240 0.4930 +7157 11262 0.5110 +7157 11266 0.4300 +7157 11315 0.8140 +7157 11322 0.5970 +7157 11325 0.4240 +7157 11328 0.4690 +7157 11345 0.4910 +7157 22803 0.5490 +7157 22872 0.4610 +7157 22894 0.4700 +7157 22914 0.4660 +7157 22926 0.5100 +7157 22933 0.7680 +7157 22943 0.4800 +7157 22948 0.8310 +7157 22954 0.6760 +7157 22955 0.5300 +7157 22974 0.9030 +7157 22976 0.5680 +7157 22978 0.4690 +7157 23019 0.6280 +7157 23028 0.9410 +7157 23049 0.5620 +7157 23054 0.7820 +7157 23072 0.4240 +7157 23081 0.5260 +7157 23112 0.6120 +7157 23113 0.9710 +7157 23135 0.7860 +7157 23136 0.4290 +7157 23157 0.4170 +7157 23172 0.7900 +7157 23186 0.7030 +7157 23198 0.5030 +7157 23210 0.5000 +7157 23246 0.4650 +7157 23309 0.4390 +7157 23314 0.4330 +7157 23345 0.5070 +7157 23358 0.7090 +7157 23363 0.7340 +7157 23368 0.9860 +7157 23381 0.6760 +7157 23394 0.4050 +7157 23397 0.5530 +7157 23405 0.7620 +7157 23408 0.4810 +7157 23409 0.4810 +7157 23410 0.7500 +7157 23411 0.9990 +7157 23429 0.6370 +7157 23451 0.5520 +7157 23462 0.7030 +7157 23466 0.5500 +7157 23476 0.9900 +7157 23481 0.4800 +7157 23492 0.5570 +7157 23512 0.7910 +7157 23513 0.5870 +7157 23515 0.5010 +7157 23522 0.5510 +7157 23523 0.7210 +7157 23532 0.4080 +7157 23569 0.8610 +7157 23581 0.4810 +7157 23586 0.4240 +7157 23598 0.7640 +7157 23600 0.4450 +7157 23604 0.4580 +7157 23607 0.4550 +7157 23608 0.6470 +7157 23609 0.4580 +7157 23612 0.5020 +7157 23635 0.4610 +7157 23640 0.5320 +7157 23643 0.5410 +7157 23645 0.5610 +7157 23650 0.5770 +7157 23657 0.7100 +7157 23678 0.5210 +7157 23705 0.4180 +7157 23710 0.4180 +7157 23774 0.8210 +7157 25842 0.5640 +7157 25862 0.4100 +7157 25875 0.5280 +7157 25885 0.4400 +7157 25898 0.9980 +7157 25904 0.5130 +7157 25942 0.9410 +7157 25946 0.9100 +7157 25988 0.4090 +7157 26013 0.9820 +7157 26037 0.4720 +7157 26040 0.5710 +7157 26155 0.9300 +7157 26156 0.4650 +7157 26168 0.4810 +7157 26190 0.4740 +7157 26224 0.4950 +7157 26227 0.7190 +7157 26234 0.5130 +7157 26259 0.8040 +7157 26263 0.6140 +7157 26270 0.4910 +7157 26272 0.6620 +7157 26277 0.4800 +7157 26281 0.5260 +7157 26287 0.6480 +7157 26330 0.6430 +7157 26354 0.9760 +7157 26471 0.7550 +7157 26499 0.4180 +7157 26523 0.7100 +7157 26524 0.7380 +7157 26574 0.5970 +7157 26985 0.4050 +7157 26986 0.5430 +7157 27005 0.4040 +7157 27006 0.5230 +7157 27030 0.4240 +7157 27032 0.4460 +7157 27035 0.6650 +7157 27037 0.5110 +7157 27043 0.7710 +7157 27085 0.5560 +7157 27113 0.9590 +7157 27154 0.7130 +7157 27161 0.8720 +7157 27165 0.9260 +7157 27166 0.5270 +7157 27242 0.6440 +7157 27244 0.8740 +7157 27250 0.5750 +7157 27287 0.7700 +7157 27327 0.6100 +7157 27338 0.6850 +7157 27343 0.4230 +7157 27429 0.4330 +7157 27434 0.6320 +7157 27436 0.6260 +7157 27445 0.4180 +7157 28984 0.7940 +7157 28996 0.9990 +7157 29072 0.8450 +7157 29102 0.9960 +7157 29110 0.4430 +7157 29117 0.9900 +7157 29119 0.4970 +7157 29123 0.6890 +7157 29126 0.7760 +7157 29128 0.6100 +7157 29843 0.5640 +7157 29855 0.4890 +7157 29883 0.5600 +7157 29903 0.7510 +7157 29947 0.6380 +7157 29997 0.7020 +7157 30011 0.4510 +7157 30827 0.5260 +7157 30837 0.5360 +7157 50484 0.9920 +7157 50485 0.4450 +7157 50507 0.5190 +7157 50852 0.6480 +7157 50943 0.5690 +7157 51002 0.4910 +7157 51032 0.6200 +7157 51065 0.5860 +7157 51119 0.5120 +7157 51138 0.6030 +7157 51147 0.9820 +7157 51176 0.5510 +7157 51185 0.5950 +7157 51191 0.4790 +7157 51196 0.4410 +7157 51230 0.9700 +7157 51231 0.4940 +7157 51246 0.5390 +7157 51322 0.5710 +7157 51341 0.6820 +7157 51343 0.4760 +7157 51366 0.8400 +7157 51390 0.4370 +7157 51422 0.5740 +7157 51426 0.9180 +7157 51438 0.4820 +7157 51441 0.4080 +7157 51447 0.4270 +7157 51455 0.5020 +7157 51499 0.8630 +7157 51512 0.9330 +7157 51514 0.7270 +7157 51547 0.9040 +7157 51548 0.7480 +7157 51564 0.6950 +7157 51588 0.9540 +7157 51616 0.4900 +7157 51667 0.4180 +7157 51684 0.5110 +7157 51701 0.4440 +7157 51720 0.5310 +7157 51741 0.9140 +7157 51752 0.4060 +7157 51755 0.7750 +7157 51773 0.6270 +7157 51806 0.7000 +7157 53353 0.5930 +7157 53615 0.5630 +7157 53632 0.5340 +7157 54106 0.4070 +7157 54205 0.9110 +7157 54361 0.6070 +7157 54455 0.7400 +7157 54457 0.4100 +7157 54461 0.4510 +7157 54474 0.6980 +7157 54476 0.4130 +7157 54487 0.9290 +7157 54541 0.9110 +7157 54556 0.4060 +7157 54658 0.4970 +7157 54700 0.5500 +7157 54739 0.7760 +7157 54790 0.7550 +7157 54815 0.6110 +7157 54840 0.6730 +7157 54855 0.4180 +7157 54894 0.6920 +7157 54904 0.4340 +7157 54949 0.4020 +7157 54971 0.9440 +7157 55004 0.4330 +7157 55038 0.4920 +7157 55072 0.5960 +7157 55120 0.5770 +7157 55135 0.7030 +7157 55159 0.4610 +7157 55165 0.4030 +7157 55167 0.6180 +7157 55193 0.6220 +7157 55201 0.4320 +7157 55215 0.4700 +7157 55226 0.5540 +7157 55240 0.8560 +7157 55247 0.4260 +7157 55294 0.9600 +7157 55332 0.8300 +7157 55367 0.9580 +7157 55544 0.5770 +7157 55571 0.5260 +7157 55593 0.6930 +7157 55602 0.4260 +7157 55611 0.8720 +7157 55635 0.4340 +7157 55636 0.4180 +7157 55684 0.4760 +7157 55693 0.4600 +7157 55729 0.5120 +7157 55749 0.5520 +7157 55814 0.7780 +7157 55835 0.6590 +7157 55869 0.7560 +7157 55885 0.7540 +7157 55902 0.5560 +7157 55904 0.6370 +7157 55971 0.4010 +7157 56254 0.9290 +7157 56288 0.4200 +7157 56339 0.4250 +7157 56475 0.6170 +7157 56647 0.6440 +7157 56652 0.5340 +7157 56658 0.6250 +7157 56852 0.5410 +7157 56950 0.9890 +7157 56980 0.4550 +7157 57045 0.5420 +7157 57060 0.9090 +7157 57103 0.9810 +7157 57154 0.5180 +7157 57162 0.6040 +7157 57167 0.6960 +7157 57178 0.4100 +7157 57332 0.6020 +7157 57379 0.5080 +7157 57402 0.4260 +7157 57448 0.5400 +7157 57459 0.6260 +7157 57472 0.6940 +7157 57492 0.5340 +7157 57504 0.5950 +7157 57506 0.5010 +7157 57509 0.5440 +7157 57510 0.4580 +7157 57520 0.4100 +7157 57521 0.5230 +7157 57541 0.4180 +7157 57551 0.5070 +7157 57621 0.5890 +7157 57634 0.9020 +7157 57646 0.8060 +7157 57650 0.4090 +7157 57663 0.4750 +7157 57680 0.5200 +7157 57697 0.4410 +7157 57805 0.7260 +7157 58484 0.8020 +7157 58487 0.5890 +7157 58508 0.8580 +7157 63035 0.4470 +7157 63967 0.4950 +7157 63970 0.9450 +7157 63977 0.4140 +7157 64065 0.9280 +7157 64321 0.5810 +7157 64324 0.5220 +7157 64326 0.9610 +7157 64393 0.7080 +7157 64422 0.4360 +7157 64750 0.5030 +7157 64754 0.6800 +7157 64769 0.5830 +7157 64783 0.4630 +7157 64848 0.4470 +7157 64859 0.4830 +7157 65009 0.4760 +7157 65018 0.5070 +7157 65975 0.5490 +7157 78986 0.4620 +7157 78990 0.5540 +7157 79026 0.6760 +7157 79035 0.4210 +7157 79048 0.4050 +7157 79084 0.7870 +7157 79156 0.5480 +7157 79184 0.6920 +7157 79370 0.8240 +7157 79444 0.4270 +7157 79589 0.5640 +7157 79594 0.8200 +7157 79633 0.6580 +7157 79661 0.5560 +7157 79680 0.6010 +7157 79697 0.4520 +7157 79727 0.7390 +7157 79728 0.7380 +7157 79733 0.7650 +7157 79813 0.9200 +7157 79840 0.4450 +7157 79885 0.4610 +7157 79923 0.8570 +7157 79960 0.5190 +7157 79991 0.4780 +7157 80005 0.4090 +7157 80010 0.5160 +7157 80012 0.7050 +7157 80196 0.6050 +7157 80198 0.5960 +7157 80204 0.7360 +7157 80237 0.4510 +7157 80312 0.4800 +7157 80352 0.5570 +7157 80380 0.5280 +7157 80854 0.9470 +7157 81572 0.5470 +7157 81603 0.4940 +7157 81620 0.5270 +7157 81631 0.6570 +7157 81669 0.8700 +7157 81894 0.4220 +7157 83439 0.5710 +7157 83667 0.8540 +7157 83695 0.4400 +7157 83737 0.7910 +7157 83743 0.5090 +7157 83752 0.4480 +7157 83860 0.4990 +7157 83987 0.8080 +7157 83990 0.6450 +7157 84106 0.4660 +7157 84126 0.8400 +7157 84132 0.8350 +7157 84148 0.8350 +7157 84231 0.4790 +7157 84232 0.6000 +7157 84260 0.9460 +7157 84261 0.4150 +7157 84289 0.9690 +7157 84295 0.5500 +7157 84335 0.4460 +7157 84433 0.4470 +7157 84441 0.4740 +7157 84444 0.6440 +7157 84447 0.6900 +7157 84461 0.5950 +7157 84557 0.5010 +7157 84620 0.4100 +7157 84708 0.4030 +7157 84733 0.6030 +7157 84790 0.5640 +7157 84823 0.5080 +7157 84868 0.4820 +7157 84883 0.9340 +7157 84897 0.4060 +7157 85236 0.8760 +7157 85456 0.5670 +7157 89780 0.4740 +7157 90427 0.4500 +7157 90480 0.6190 +7157 91582 0.4910 +7157 91768 0.8640 +7157 91860 0.6570 +7157 91875 0.7450 +7157 92906 0.5820 +7157 93624 0.4460 +7157 93649 0.5690 +7157 94025 0.5990 +7157 94241 0.9350 +7157 112399 0.5320 +7157 112858 0.9820 +7157 114294 0.5910 +7157 114548 0.6330 +7157 114788 0.5780 +7157 114826 0.4320 +7157 115004 0.4730 +7157 115265 0.4810 +7157 115426 0.7630 +7157 116028 0.5350 +7157 116447 0.8730 +7157 117581 0.5540 +7157 117584 0.7420 +7157 118611 0.5680 +7157 120114 0.4450 +7157 120892 0.7380 +7157 121457 0.8450 +7157 121504 0.8240 +7157 122706 0.4430 +7157 122809 0.4890 +7157 122953 0.4670 +7157 124446 0.5130 +7157 124540 0.4800 +7157 124961 0.5440 +7157 126393 0.4800 +7157 128209 0.5140 +7157 128338 0.4520 +7157 131405 0.4530 +7157 131474 0.5270 +7157 133383 0.7520 +7157 133482 0.8790 +7157 133522 0.5270 +7157 133746 0.9400 +7157 134637 0.4470 +7157 137902 0.8210 +7157 138474 0.5620 +7157 139285 0.5070 +7157 140691 0.4020 +7157 143471 0.4190 +7157 143686 0.7960 +7157 143689 0.4470 +7157 144321 0.4700 +7157 144455 0.8950 +7157 144715 0.4550 +7157 145270 0.7980 +7157 146713 0.4200 +7157 147746 0.9180 +7157 147923 0.7990 +7157 150572 0.4530 +7157 152006 0.4110 +7157 153090 0.6390 +7157 154810 0.4560 +7157 157570 0.4060 +7157 163688 0.6570 +7157 164668 0.4750 +7157 165918 0.4410 +7157 168400 0.4310 +7157 171023 0.7210 +7157 192111 0.5130 +7157 192669 0.5720 +7157 192670 0.5730 +7157 196528 0.6080 +7157 200895 0.4600 +7157 201292 0.6860 +7157 201299 0.5700 +7157 201456 0.4100 +7157 201501 0.4670 +7157 201633 0.4050 +7157 203068 0.7230 +7157 204851 0.9670 +7157 205860 0.4060 +7157 219699 0.5320 +7157 221302 0.5400 +7157 246175 0.5500 +7157 253260 0.5070 +7157 253430 0.5170 +7157 255738 0.4330 +7157 256710 0.4380 +7157 257202 0.6030 +7157 259266 0.4450 +7157 266740 0.8390 +7157 284390 0.4600 +7157 284403 0.4260 +7157 284654 0.4300 +7157 286514 0.4810 +7157 286827 0.6830 +7157 340061 0.4280 +7157 378708 0.5040 +7157 387032 0.4180 +7157 387082 0.9300 +7157 387893 0.9160 +7157 388015 0.6130 +7157 389421 0.4550 +7157 400566 0.6640 +7157 401505 0.4480 +7157 440093 0.8640 +7157 440686 0.8630 +7157 493869 0.6180 +7157 548596 0.4180 +7157 554313 0.8200 +7157 653145 0.5940 +7157 653604 0.8630 +7157 727897 0.5430 +7157 728378 0.6820 +7157 100132406 0.5080 +7157 100133941 0.5770 +7157 100532731 0.7870 +7157 100533467 0.4160 +7157 102723407 0.8130 +7157 102800317 0.5160 +7158 7159 0.7570 +7158 7181 0.4540 +7158 7182 0.4690 +7158 7259 0.4430 +7158 7290 0.5240 +7158 7311 0.9470 +7158 7314 0.9490 +7158 7316 0.9640 +7158 7329 0.9020 +7158 7332 0.4600 +7158 7334 0.8940 +7158 7336 0.7430 +7158 7341 0.9050 +7158 7378 0.4390 +7158 7398 0.4290 +7158 7403 0.5250 +7158 7415 0.7630 +7158 7443 0.5750 +7158 7465 0.5380 +7158 7468 0.7610 +7158 7486 0.8490 +7158 7507 0.7140 +7158 7508 0.7160 +7158 7515 0.9070 +7158 7517 0.5960 +7158 7518 0.8850 +7158 7520 0.9090 +7158 7528 0.5150 +7158 7597 0.4430 +7158 7750 0.4190 +7158 7756 0.4150 +7158 7837 0.4040 +7158 7874 0.6060 +7158 7919 0.4510 +7158 8148 0.4760 +7158 8237 0.7630 +7158 8241 0.4370 +7158 8243 0.4550 +7158 8289 0.6860 +7158 8290 0.9800 +7158 8294 0.9170 +7158 8314 0.5770 +7158 8317 0.4070 +7158 8318 0.6730 +7158 8329 0.7510 +7158 8337 0.9990 +7158 8338 0.9930 +7158 8339 0.9000 +7158 8340 0.6710 +7158 8341 0.6710 +7158 8342 0.6710 +7158 8343 0.9000 +7158 8344 0.9000 +7158 8345 0.6710 +7158 8346 0.9000 +7158 8347 0.9770 +7158 8348 0.6740 +7158 8349 0.7800 +7158 8350 0.9500 +7158 8351 0.9070 +7158 8352 0.9140 +7158 8353 0.9140 +7158 8354 0.9070 +7158 8355 0.9070 +7158 8356 0.9970 +7158 8357 0.9070 +7158 8358 0.9070 +7158 8359 0.9160 +7158 8360 0.9170 +7158 8361 0.9990 +7158 8362 0.9160 +7158 8363 0.9150 +7158 8364 0.9150 +7158 8366 0.9160 +7158 8367 0.9180 +7158 8368 0.9150 +7158 8369 0.9810 +7158 8370 0.9540 +7158 8405 0.9550 +7158 8438 0.4770 +7158 8451 0.5640 +7158 8467 0.5370 +7158 8473 0.4670 +7158 8493 0.4960 +7158 8505 0.5250 +7158 8539 0.4570 +7158 8553 0.4610 +7158 8554 0.7760 +7158 8655 0.9450 +7158 8731 0.4360 +7158 8732 0.4550 +7158 8900 0.7530 +7158 8914 0.8840 +7158 8924 0.5860 +7158 8968 0.9070 +7158 8970 0.6710 +7158 9025 0.9960 +7158 9070 0.6900 +7158 9156 0.9040 +7158 9184 0.5270 +7158 9282 0.4930 +7158 9320 0.4350 +7158 9328 0.4360 +7158 9329 0.4480 +7158 9330 0.4540 +7158 9400 0.8580 +7158 9401 0.9290 +7158 9440 0.4630 +7158 9442 0.4630 +7158 9443 0.4390 +7158 9447 0.9650 +7158 9477 0.4470 +7158 9555 0.5490 +7158 9569 0.4390 +7158 9575 0.4430 +7158 9577 0.5340 +7158 9589 0.4510 +7158 9612 0.4890 +7158 9656 0.9990 +7158 9682 0.7830 +7158 9736 0.5460 +7158 9739 0.7840 +7158 9759 0.8730 +7158 9780 0.6730 +7158 9785 0.4370 +7158 9810 0.4460 +7158 9861 0.4430 +7158 9874 0.5440 +7158 9879 0.4580 +7158 9937 0.6620 +7158 9960 0.6880 +7158 9968 0.4280 +7158 9969 0.4430 +7158 9987 0.4990 +7158 10001 0.4430 +7158 10038 0.5600 +7158 10039 0.4100 +7158 10051 0.5510 +7158 10111 0.8580 +7158 10155 0.7910 +7158 10181 0.4870 +7158 10197 0.4780 +7158 10210 0.5210 +7158 10213 0.6090 +7158 10269 0.5750 +7158 10346 0.4540 +7158 10401 0.5190 +7158 10421 0.4570 +7158 10459 0.9630 +7158 10474 0.6520 +7158 10498 0.5860 +7158 10524 0.8000 +7158 10541 0.4430 +7158 10585 0.4500 +7158 10614 0.4660 +7158 10629 0.4390 +7158 10714 0.4310 +7158 10721 0.5550 +7158 10762 0.5450 +7158 10776 0.4110 +7158 10793 0.5570 +7158 10856 0.5160 +7158 10915 0.5000 +7158 10919 0.4080 +7158 10951 0.4400 +7158 10973 0.4400 +7158 10987 0.4310 +7158 11051 0.4310 +7158 11052 0.4110 +7158 11073 0.9990 +7158 11091 0.4650 +7158 11100 0.5670 +7158 11200 0.9960 +7158 11218 0.4460 +7158 11284 0.5490 +7158 11325 0.6580 +7158 11335 0.4480 +7158 22882 0.4470 +7158 22894 0.4460 +7158 22976 0.9990 +7158 22992 0.5100 +7158 23028 0.8220 +7158 23030 0.6640 +7158 23054 0.6370 +7158 23060 0.4510 +7158 23064 0.6590 +7158 23097 0.4390 +7158 23132 0.5580 +7158 23137 0.6410 +7158 23186 0.5070 +7158 23195 0.5080 +7158 23211 0.4720 +7158 23300 0.4410 +7158 23331 0.5070 +7158 23383 0.5020 +7158 23389 0.4390 +7158 23410 0.4530 +7158 23411 0.5650 +7158 23435 0.5410 +7158 23451 0.5340 +7158 23468 0.4710 +7158 23476 0.7010 +7158 23515 0.4890 +7158 23523 0.4200 +7158 23532 0.4200 +7158 23549 0.4420 +7158 23626 0.4120 +7158 25763 0.6650 +7158 25788 0.5430 +7158 25804 0.4680 +7158 25913 0.4610 +7158 25920 0.4850 +7158 25942 0.6800 +7158 26009 0.4770 +7158 26013 0.6270 +7158 26036 0.5220 +7158 26039 0.4540 +7158 26263 0.5070 +7158 26277 0.7120 +7158 26528 0.4830 +7158 26993 0.4510 +7158 27030 0.5290 +7158 27037 0.4480 +7158 27097 0.4560 +7158 27258 0.4470 +7158 27338 0.5680 +7158 27343 0.4790 +7158 27434 0.4190 +7158 29079 0.4630 +7158 29086 0.6210 +7158 29128 0.4950 +7158 29761 0.5280 +7158 50485 0.5890 +7158 50628 0.4430 +7158 51003 0.4650 +7158 51070 0.4430 +7158 51111 0.5860 +7158 51163 0.4460 +7158 51230 0.5830 +7158 51317 0.6860 +7158 51366 0.7280 +7158 51455 0.4960 +7158 51548 0.4910 +7158 51586 0.4580 +7158 51588 0.8660 +7158 51592 0.4490 +7158 51593 0.4740 +7158 51663 0.6610 +7158 51720 0.9850 +7158 51750 0.4780 +7158 54145 0.6710 +7158 54487 0.5000 +7158 54537 0.8240 +7158 54780 0.4410 +7158 54797 0.4540 +7158 54799 0.4680 +7158 54821 0.4770 +7158 54840 0.4050 +7158 54841 0.4140 +7158 54881 0.4980 +7158 54888 0.4460 +7158 54962 0.7050 +7158 55090 0.4390 +7158 55183 0.9530 +7158 55215 0.6740 +7158 55269 0.5020 +7158 55511 0.4200 +7158 55536 0.4660 +7158 55611 0.5670 +7158 55666 0.4470 +7158 55669 0.4800 +7158 55726 0.4470 +7158 55756 0.4480 +7158 55775 0.5030 +7158 55929 0.4560 +7158 56254 0.5010 +7158 56852 0.9310 +7158 56897 0.5630 +7158 56906 0.4620 +7158 56915 0.4470 +7158 56916 0.6940 +7158 56946 0.4650 +7158 56950 0.5730 +7158 57187 0.5400 +7158 57379 0.4470 +7158 57479 0.4390 +7158 57492 0.4810 +7158 57621 0.4230 +7158 57634 0.6730 +7158 57646 0.9980 +7158 57697 0.6630 +7158 63895 0.6730 +7158 63922 0.6490 +7158 63967 0.5910 +7158 64062 0.4540 +7158 64397 0.4360 +7158 64421 0.6490 +7158 64782 0.4630 +7158 65123 0.5300 +7158 79184 0.6600 +7158 79595 0.4620 +7158 79618 0.4200 +7158 79648 0.5510 +7158 79677 0.5900 +7158 79728 0.7680 +7158 79840 0.8720 +7158 79869 0.4850 +7158 79915 0.4360 +7158 79923 0.4430 +7158 79991 0.8280 +7158 80010 0.5120 +7158 80119 0.4930 +7158 80145 0.4660 +7158 80169 0.6880 +7158 80198 0.8420 +7158 80232 0.4250 +7158 80818 0.4750 +7158 80854 0.5950 +7158 81556 0.4930 +7158 81620 0.5190 +7158 81627 0.4630 +7158 81669 0.5050 +7158 81857 0.4630 +7158 83640 0.4430 +7158 83666 0.4930 +7158 83695 0.5160 +7158 83852 0.4750 +7158 83932 0.4030 +7158 83990 0.5460 +7158 84083 0.4720 +7158 84107 0.4410 +7158 84126 0.7910 +7158 84142 0.7890 +7158 84148 0.6850 +7158 84164 0.4330 +7158 84246 0.4390 +7158 84250 0.9210 +7158 84260 0.6420 +7158 84309 0.9900 +7158 84444 0.7090 +7158 84464 0.7070 +7158 84661 0.4770 +7158 84787 0.5250 +7158 84823 0.4040 +7158 84893 0.6600 +7158 84939 0.4550 +7158 85236 0.9650 +7158 90381 0.5450 +7158 90390 0.4630 +7158 91283 0.4470 +7158 91442 0.4580 +7158 91607 0.4610 +7158 92797 0.4860 +7158 112869 0.5470 +7158 112950 0.4390 +7158 116447 0.4570 +7158 117143 0.4390 +7158 121504 0.9160 +7158 126074 0.4240 +7158 126961 0.8150 +7158 128312 0.6710 +7158 128710 0.4080 +7158 131870 0.9820 +7158 135458 0.5290 +7158 140612 0.5670 +7158 140735 0.5820 +7158 144715 0.4960 +7158 146956 0.4210 +7158 147339 0.4430 +7158 149840 0.8020 +7158 151636 0.5820 +7158 152485 0.4940 +7158 165918 0.9970 +7158 196441 0.4580 +7158 221037 0.5630 +7158 221302 0.4490 +7158 221504 0.4470 +7158 221656 0.4350 +7158 221937 0.4400 +7158 246243 0.5510 +7158 254225 0.7950 +7158 254394 0.5460 +7158 255626 0.6710 +7158 283742 0.4700 +7158 286204 0.8270 +7158 286205 0.7700 +7158 286257 0.6950 +7158 333932 0.8150 +7158 339287 0.6190 +7158 340602 0.4390 +7158 342926 0.4920 +7158 348654 0.6110 +7158 375748 0.4240 +7158 387893 0.6820 +7158 402569 0.4940 +7158 440093 0.9620 +7158 440686 0.9620 +7158 441519 0.4200 +7158 548593 0.5160 +7158 554313 0.9150 +7158 653604 0.9920 +7158 723790 0.9270 +7158 728340 0.4850 +7158 728695 0.4400 +7158 100533467 0.5410 +7158 102723407 0.6820 +7158 112441434 0.7100 +7159 7161 0.9710 +7159 7533 0.6110 +7159 8045 0.9190 +7159 8626 0.6640 +7159 8660 0.4730 +7159 8878 0.4890 +7159 8883 0.4370 +7159 8925 0.7690 +7159 9474 0.4860 +7159 9540 0.6170 +7159 9863 0.4250 +7159 9901 0.4220 +7159 10413 0.9860 +7159 10848 0.4650 +7159 11186 0.5210 +7159 11228 0.9440 +7159 11325 0.8970 +7159 23286 0.4520 +7159 23368 0.7260 +7159 23558 0.5280 +7159 25937 0.9310 +7159 27113 0.6100 +7159 50855 0.4220 +7159 51741 0.4760 +7159 55662 0.9350 +7159 56288 0.8580 +7159 57154 0.4820 +7159 58985 0.4840 +7159 64419 0.6190 +7159 83737 0.5540 +7159 84612 0.4790 +7159 90313 0.4100 +7159 114800 0.6340 +7159 122786 0.8960 +7159 133746 0.4560 +7159 149428 0.4900 +7159 154796 0.6070 +7161 7311 0.5170 +7161 7314 0.5150 +7161 7316 0.5150 +7161 7874 0.4090 +7161 8626 0.9970 +7161 8651 0.5320 +7161 8850 0.5390 +7161 9156 0.4580 +7161 9518 0.4170 +7161 9540 0.5930 +7161 10197 0.4190 +7161 10213 0.4160 +7161 10277 0.4020 +7161 10413 0.9950 +7161 10848 0.7530 +7161 11060 0.5300 +7161 11186 0.7000 +7161 23368 0.7280 +7161 23411 0.4150 +7161 23576 0.4430 +7161 23604 0.4880 +7161 25937 0.8310 +7161 27113 0.7430 +7161 51741 0.6550 +7161 55544 0.6760 +7161 55743 0.4330 +7161 63970 0.5000 +7161 64112 0.4220 +7161 79187 0.4090 +7161 79980 0.4370 +7161 83737 0.9050 +7161 84722 0.4930 +7161 122706 0.4020 +7161 148870 0.5350 +7161 166824 0.4220 +7161 727897 0.4950 +7162 8406 0.4420 +7162 8896 0.4440 +7162 9947 0.4910 +7162 10755 0.4800 +7162 22854 0.4670 +7162 22859 0.5340 +7162 23266 0.5320 +7162 23284 0.5170 +7162 51438 0.4430 +7162 129293 0.5070 +7162 339366 0.4180 +7163 7164 0.8890 +7163 7165 0.8250 +7163 7851 0.5490 +7163 7879 0.4340 +7163 8301 0.5000 +7163 8546 0.5000 +7163 8673 0.5750 +7163 8766 0.5950 +7163 8775 0.5830 +7163 8905 0.5130 +7163 8907 0.5000 +7163 9026 0.5130 +7163 9685 0.5400 +7163 9698 0.5030 +7163 9829 0.5210 +7163 10053 0.5160 +7163 10618 0.5450 +7163 10717 0.4990 +7163 10728 0.4030 +7163 10890 0.4620 +7163 23431 0.5470 +7163 23557 0.5110 +7163 25977 0.5030 +7163 26258 0.4990 +7163 27131 0.5010 +7163 28957 0.4690 +7163 29028 0.4270 +7163 51090 0.4090 +7163 51116 0.7060 +7163 51429 0.4990 +7163 54885 0.5010 +7163 55330 0.4990 +7163 81567 0.5590 +7163 84062 0.4990 +7163 89882 0.7110 +7163 114569 0.9480 +7163 116444 0.4590 +7163 124222 0.5560 +7163 130340 0.5200 +7163 286451 0.5570 +7163 342538 0.4530 +7163 388552 0.4990 +7163 653145 0.4020 +7164 7165 0.8490 +7164 8030 0.4880 +7164 8301 0.4990 +7164 8546 0.4990 +7164 8673 0.5040 +7164 8775 0.5160 +7164 8905 0.4990 +7164 8907 0.4990 +7164 9026 0.4990 +7164 9685 0.5320 +7164 9698 0.5410 +7164 9829 0.5000 +7164 10053 0.5140 +7164 10568 0.5200 +7164 10618 0.4990 +7164 10717 0.4990 +7164 11014 0.5720 +7164 23378 0.4130 +7164 23431 0.4990 +7164 23557 0.5070 +7164 25977 0.4990 +7164 26258 0.4990 +7164 27131 0.5040 +7164 51429 0.4990 +7164 51474 0.4470 +7164 54664 0.5120 +7164 54885 0.5040 +7164 55330 0.4990 +7164 57120 0.5170 +7164 81567 0.5110 +7164 84062 0.4990 +7164 89882 0.7280 +7164 113451 0.4360 +7164 114569 0.5070 +7164 116444 0.4180 +7164 121227 0.5700 +7164 130340 0.5000 +7164 154214 0.6440 +7164 286451 0.5060 +7164 388552 0.4990 +7165 7415 0.5140 +7165 7851 0.8120 +7165 10897 0.4890 +7165 10987 0.4140 +7165 51099 0.4260 +7165 51100 0.6310 +7165 51116 0.5410 +7165 51667 0.4120 +7165 84795 0.4350 +7165 89882 0.7100 +7165 114569 0.9240 +7165 116444 0.4240 +7165 140701 0.4640 +7166 7529 0.5820 +7166 7531 0.4570 +7166 7532 0.4070 +7166 7533 0.6070 +7166 7534 0.8640 +7166 8564 0.5510 +7166 8618 0.4680 +7166 8942 0.5540 +7166 9177 0.5340 +7166 10971 0.4110 +7166 23498 0.4400 +7166 26297 0.5290 +7166 51738 0.4170 +7166 54738 0.4160 +7166 54796 0.4440 +7166 56521 0.6680 +7166 57016 0.9020 +7166 84062 0.4720 +7166 84105 0.9770 +7166 84842 0.4080 +7166 91752 0.4720 +7166 114799 0.4230 +7166 121278 0.9600 +7166 139760 0.4460 +7166 151306 0.4420 +7166 157570 0.4250 +7166 169355 0.9530 +7166 200895 0.9380 +7166 220074 0.4270 +7166 259307 0.9150 +7166 267012 0.5850 +7166 285242 0.4210 +7167 7168 0.4140 +7167 7184 0.6090 +7167 7203 0.4800 +7167 7284 0.6280 +7167 7295 0.6290 +7167 7298 0.7520 +7167 7334 0.4110 +7167 7358 0.4890 +7167 7360 0.6160 +7167 7372 0.5410 +7167 7378 0.4400 +7167 7384 0.5560 +7167 7386 0.5980 +7167 7389 0.4970 +7167 7403 0.4080 +7167 7404 0.4080 +7167 7407 0.4160 +7167 7416 0.5610 +7167 7417 0.4900 +7167 7450 0.5130 +7167 7529 0.4180 +7167 7531 0.4750 +7167 7532 0.4100 +7167 7534 0.5360 +7167 7915 0.6270 +7167 8050 0.4260 +7167 8078 0.6720 +7167 8192 0.5620 +7167 8277 0.9630 +7167 8407 0.4070 +7167 8565 0.6030 +7167 8566 0.4050 +7167 8659 0.5300 +7167 8668 0.4160 +7167 8789 0.6610 +7167 8801 0.5560 +7167 8802 0.5860 +7167 8803 0.5580 +7167 8833 0.5210 +7167 8854 0.4640 +7167 8940 0.4200 +7167 9104 0.4030 +7167 9123 0.4530 +7167 9255 0.4400 +7167 9343 0.5330 +7167 9377 0.4100 +7167 9380 0.5690 +7167 9533 0.4510 +7167 9563 0.9510 +7167 9588 0.7430 +7167 9669 0.4890 +7167 9942 0.6210 +7167 9945 0.4480 +7167 10007 0.5120 +7167 10020 0.4240 +7167 10102 0.5820 +7167 10130 0.5100 +7167 10247 0.4880 +7167 10283 0.8460 +7167 10327 0.4510 +7167 10376 0.4540 +7167 10399 0.4490 +7167 10423 0.4740 +7167 10449 0.5330 +7167 10455 0.4270 +7167 10476 0.4110 +7167 10535 0.4390 +7167 10549 0.5110 +7167 10551 0.5430 +7167 10566 0.4360 +7167 10574 0.5350 +7167 10575 0.4590 +7167 10576 0.5170 +7167 10606 0.4070 +7167 10768 0.4780 +7167 10797 0.4460 +7167 10840 0.4550 +7167 10845 0.5430 +7167 10873 0.5240 +7167 10935 0.5540 +7167 10963 0.4710 +7167 10994 0.4130 +7167 11034 0.4330 +7167 11112 0.5230 +7167 11224 0.4090 +7167 11315 0.6940 +7167 11332 0.4370 +7167 22934 0.7630 +7167 22948 0.5000 +7167 22984 0.4650 +7167 23135 0.4130 +7167 23171 0.5530 +7167 23252 0.4560 +7167 23382 0.4810 +7167 23475 0.4440 +7167 23521 0.4650 +7167 23761 0.4100 +7167 25764 0.5360 +7167 25796 0.6560 +7167 25824 0.4590 +7167 25902 0.4260 +7167 26007 0.9920 +7167 26227 0.5860 +7167 26330 0.9990 +7167 26995 0.4220 +7167 27020 0.5930 +7167 27068 0.5960 +7167 27349 0.4330 +7167 28998 0.4390 +7167 29101 0.4610 +7167 29927 0.5220 +7167 29968 0.5770 +7167 30816 0.4860 +7167 51005 0.4570 +7167 51031 0.5340 +7167 51056 0.4120 +7167 51071 0.9290 +7167 51074 0.7570 +7167 51149 0.4150 +7167 51154 0.4060 +7167 51314 0.5110 +7167 51324 0.5600 +7167 51645 0.5610 +7167 51727 0.4030 +7167 53347 0.4720 +7167 54205 0.4470 +7167 54363 0.4360 +7167 54431 0.4140 +7167 54675 0.4120 +7167 54802 0.4560 +7167 54995 0.4970 +7167 55052 0.4140 +7167 55143 0.4490 +7167 55163 0.4500 +7167 55173 0.4230 +7167 55176 0.4630 +7167 55276 0.6920 +7167 55293 0.4160 +7167 55753 0.4540 +7167 55902 0.4170 +7167 56474 0.4180 +7167 56648 0.4570 +7167 56954 0.4590 +7167 56965 0.7520 +7167 57103 0.8940 +7167 57136 0.4250 +7167 57469 0.9590 +7167 57470 0.4030 +7167 57508 0.4300 +7167 57591 0.4540 +7167 60558 0.4780 +7167 64080 0.6260 +7167 64577 0.4730 +7167 64960 0.4370 +7167 64968 0.4060 +7167 64983 0.6400 +7167 65220 0.5350 +7167 79154 0.4040 +7167 79587 0.5300 +7167 79631 0.5610 +7167 79668 0.7520 +7167 79944 0.4140 +7167 80201 0.4430 +7167 80273 0.5320 +7167 80347 0.4730 +7167 81570 0.5290 +7167 81689 0.4390 +7167 83440 0.5050 +7167 83475 0.4880 +7167 84076 0.9630 +7167 84656 0.4370 +7167 84706 0.5260 +7167 84790 0.4790 +7167 84959 0.4720 +7167 85476 0.5280 +7167 87178 0.4100 +7167 92483 0.6980 +7167 113451 0.4140 +7167 115416 0.4650 +7167 122622 0.4240 +7167 122961 0.4140 +7167 123263 0.4680 +7167 126133 0.4800 +7167 129831 0.4540 +7167 130589 0.5630 +7167 130752 0.5240 +7167 132158 0.8560 +7167 132789 0.4060 +7167 137362 0.4170 +7167 139596 0.4600 +7167 142940 0.4200 +7167 143244 0.4300 +7167 154141 0.4330 +7167 160287 0.7000 +7167 160428 0.4460 +7167 200895 0.5560 +7167 219927 0.4110 +7167 221823 0.4620 +7167 254042 0.4810 +7167 283209 0.5370 +7167 283871 0.4360 +7167 284131 0.4170 +7167 285855 0.4120 +7167 387712 0.9060 +7167 405754 0.4970 +7167 441531 0.9740 +7167 729020 0.7130 +7168 7169 0.9930 +7168 7170 0.9980 +7168 7171 0.9820 +7168 7273 0.7940 +7168 7369 0.4190 +7168 7414 0.9570 +7168 7431 0.5670 +7168 8048 0.8400 +7168 8379 0.6310 +7168 8407 0.6050 +7168 8434 0.5170 +7168 8517 0.4160 +7168 8557 0.6330 +7168 8735 0.4960 +7168 9172 0.4970 +7168 9231 0.4720 +7168 9260 0.4140 +7168 9531 0.4360 +7168 9696 0.6240 +7168 9903 0.4230 +7168 9948 0.4320 +7168 9987 0.4730 +7168 10060 0.6600 +7168 10096 0.4130 +7168 10097 0.4460 +7168 10114 0.4270 +7168 10174 0.5100 +7168 10398 0.8400 +7168 10529 0.4030 +7168 10580 0.5550 +7168 10627 0.6870 +7168 10659 0.4540 +7168 10933 0.5860 +7168 11034 0.4380 +7168 11155 0.6160 +7168 11338 0.5230 +7168 22919 0.9050 +7168 22989 0.4180 +7168 23450 0.4370 +7168 25802 0.7970 +7168 27063 0.4720 +7168 27250 0.7050 +7168 27288 0.5240 +7168 27295 0.5250 +7168 27316 0.5020 +7168 27429 0.4230 +7168 29114 0.6030 +7168 29765 0.8160 +7168 29766 0.7450 +7168 29767 0.7340 +7168 29895 0.8330 +7168 51422 0.7810 +7168 51778 0.6070 +7168 51806 0.5900 +7168 54443 0.4650 +7168 54875 0.4700 +7168 55680 0.4710 +7168 55690 0.4190 +7168 56203 0.6370 +7168 57158 0.5620 +7168 58155 0.6720 +7168 58498 0.7160 +7168 60412 0.4850 +7168 79036 0.8710 +7168 79073 0.4310 +7168 79188 0.5020 +7168 80018 0.6020 +7168 80179 0.6100 +7168 80333 0.4400 +7168 80781 0.4210 +7168 84665 0.5690 +7168 84700 0.4180 +7168 84952 0.4380 +7168 85366 0.6130 +7168 91624 0.6940 +7168 91860 0.5900 +7168 93408 0.6560 +7168 93426 0.5580 +7168 103910 0.7810 +7168 125972 0.4470 +7168 132320 0.4570 +7168 140465 0.6830 +7168 163688 0.5910 +7168 282996 0.7430 +7168 285782 0.4800 +7168 347862 0.5080 +7168 389203 0.5380 +7168 390594 0.4450 +7168 399687 0.5240 +7168 728378 0.6360 +7169 7170 0.9490 +7169 7171 0.9860 +7169 7184 0.4880 +7169 7273 0.5100 +7169 7414 0.7080 +7169 8407 0.4940 +7169 8735 0.4900 +7169 8736 0.4230 +7169 8826 0.5760 +7169 9124 0.5590 +7169 9201 0.4530 +7169 9260 0.8570 +7169 9499 0.4290 +7169 9987 0.4640 +7169 10097 0.4030 +7169 10174 0.5360 +7169 10324 0.6690 +7169 10398 0.8660 +7169 10580 0.5610 +7169 10611 0.6330 +7169 10627 0.6940 +7169 10659 0.4520 +7169 10933 0.6080 +7169 11034 0.4710 +7169 11200 0.4030 +7169 22989 0.4360 +7169 25802 0.7210 +7169 27295 0.4420 +7169 29114 0.4980 +7169 29765 0.7480 +7169 29766 0.7540 +7169 29767 0.7260 +7169 29895 0.8430 +7169 29941 0.4330 +7169 54443 0.4750 +7169 55170 0.4170 +7169 55930 0.4880 +7169 56203 0.6700 +7169 57190 0.4620 +7169 58155 0.5290 +7169 58498 0.7000 +7169 79036 0.5770 +7169 80018 0.4920 +7169 80179 0.5750 +7169 83987 0.4620 +7169 84665 0.5090 +7169 84700 0.6330 +7169 84952 0.4360 +7169 93408 0.7140 +7169 93649 0.5350 +7169 103910 0.7950 +7169 114907 0.4910 +7169 131377 0.7080 +7169 140465 0.7170 +7169 220965 0.4900 +7169 347862 0.5090 +7169 375790 0.4100 +7169 389203 0.5380 +7169 390594 0.8970 +7169 399687 0.4950 +7169 728378 0.6180 +7170 7171 0.9460 +7170 7175 0.9070 +7170 7273 0.4030 +7170 7332 0.4270 +7170 7414 0.6880 +7170 7430 0.4930 +7170 7431 0.4810 +7170 7442 0.4020 +7170 7531 0.4820 +7170 7534 0.7860 +7170 7852 0.6040 +7170 8030 0.8480 +7170 8031 0.5780 +7170 8048 0.5470 +7170 8496 0.6890 +7170 8557 0.5300 +7170 8643 0.4050 +7170 8683 0.4360 +7170 8735 0.4310 +7170 8801 0.4500 +7170 8805 0.6000 +7170 8826 0.5640 +7170 8878 0.6080 +7170 9026 0.4280 +7170 9451 0.5570 +7170 9632 0.4480 +7170 9648 0.5240 +7170 9948 0.5110 +7170 9950 0.4700 +7170 10096 0.6660 +7170 10097 0.6480 +7170 10099 0.5910 +7170 10109 0.7050 +7170 10114 0.4540 +7170 10142 0.4770 +7170 10174 0.5200 +7170 10324 0.6140 +7170 10342 0.9750 +7170 10398 0.6980 +7170 10487 0.4740 +7170 10551 0.4230 +7170 10568 0.7470 +7170 10580 0.5440 +7170 10627 0.7030 +7170 10817 0.5110 +7170 10818 0.5220 +7170 11014 0.5490 +7170 11255 0.6120 +7170 11315 0.4250 +7170 11339 0.4200 +7170 22872 0.7440 +7170 22989 0.4620 +7170 23071 0.4060 +7170 23075 0.4500 +7170 23164 0.4470 +7170 23450 0.4290 +7170 25802 0.6200 +7170 26526 0.9970 +7170 27288 0.6440 +7170 27316 0.6100 +7170 27429 0.5050 +7170 27436 0.8250 +7170 28952 0.4290 +7170 29765 0.7490 +7170 29766 0.8290 +7170 29767 0.7560 +7170 29844 0.7070 +7170 29895 0.7940 +7170 50833 0.4790 +7170 51474 0.4130 +7170 51592 0.6220 +7170 51778 0.4890 +7170 51806 0.4390 +7170 53335 0.5110 +7170 54535 0.5750 +7170 54587 0.4900 +7170 54976 0.4830 +7170 55283 0.6010 +7170 55596 0.4920 +7170 55845 0.4530 +7170 55930 0.7030 +7170 56203 0.6190 +7170 57120 0.6970 +7170 57190 0.7240 +7170 57192 0.6180 +7170 57448 0.5350 +7170 57674 0.4260 +7170 58498 0.6750 +7170 59340 0.7020 +7170 79036 0.8180 +7170 80018 0.4180 +7170 80179 0.5630 +7170 80304 0.6260 +7170 84665 0.4090 +7170 84700 0.5730 +7170 84952 0.4170 +7170 91860 0.4390 +7170 93408 0.6520 +7170 93426 0.4390 +7170 103910 0.7510 +7170 120892 0.5270 +7170 121227 0.6360 +7170 129804 0.4620 +7170 131377 0.6290 +7170 134864 0.4020 +7170 137695 0.4250 +7170 140465 0.6900 +7170 140880 0.4360 +7170 147670 0.4500 +7170 163688 0.4400 +7170 165904 0.4370 +7170 171177 0.5970 +7170 222545 0.4430 +7170 255231 0.4750 +7170 284904 0.5690 +7170 347862 0.5230 +7170 387733 0.4380 +7170 389203 0.5380 +7170 390594 0.8840 +7170 399687 0.4710 +7170 728378 0.4510 +7171 7175 0.5180 +7171 7184 0.5590 +7171 7414 0.7110 +7171 7531 0.4370 +7171 7791 0.4360 +7171 8407 0.5830 +7171 8496 0.7040 +7171 8735 0.4040 +7171 8826 0.8270 +7171 8878 0.5690 +7171 9124 0.5690 +7171 9260 0.4140 +7171 9451 0.5190 +7171 9648 0.5420 +7171 9948 0.5480 +7171 10097 0.5060 +7171 10174 0.5230 +7171 10342 0.6900 +7171 10398 0.7630 +7171 10576 0.4540 +7171 10580 0.5030 +7171 10627 0.7130 +7171 10817 0.5240 +7171 10818 0.5000 +7171 10915 0.4130 +7171 11034 0.4310 +7171 22872 0.7710 +7171 23603 0.4230 +7171 25802 0.6020 +7171 27436 0.8310 +7171 29114 0.4790 +7171 29765 0.6880 +7171 29766 0.7840 +7171 29767 0.7000 +7171 29895 0.7480 +7171 53335 0.5110 +7171 54443 0.4560 +7171 57448 0.5340 +7171 57674 0.4580 +7171 58498 0.6810 +7171 79036 0.5790 +7171 80018 0.4160 +7171 80179 0.5810 +7171 80304 0.6330 +7171 84952 0.4310 +7171 85477 0.5000 +7171 93408 0.6360 +7171 103910 0.7180 +7171 140465 0.6390 +7171 171177 0.6000 +7171 345651 0.4100 +7171 347862 0.5090 +7171 389203 0.5380 +7171 399687 0.4710 +7171 728378 0.4660 +7172 7298 0.5950 +7172 7355 0.4630 +7172 7364 0.4440 +7172 7365 0.4040 +7172 7366 0.4560 +7172 7367 0.4280 +7172 7498 0.9740 +7172 7593 0.4530 +7172 8293 0.5920 +7172 8529 0.6820 +7172 8714 0.4300 +7172 8833 0.9520 +7172 8836 0.8730 +7172 9121 0.4430 +7172 9360 0.5700 +7172 9563 0.4380 +7172 10208 0.4160 +7172 10257 0.5510 +7172 10599 0.7250 +7172 11252 0.4600 +7172 23438 0.6050 +7172 23621 0.5920 +7172 27306 0.4420 +7172 50839 0.5430 +7172 54490 0.4010 +7172 54575 0.7310 +7172 54576 0.7310 +7172 54577 0.7310 +7172 54578 0.7310 +7172 54579 0.4190 +7172 54600 0.4670 +7172 54657 0.7310 +7172 54658 0.7380 +7172 54995 0.4800 +7172 55034 0.4790 +7172 55270 0.8990 +7172 64078 0.4370 +7172 79001 0.7860 +7172 112812 0.4640 +7172 135152 0.4380 +7172 200895 0.4380 +7172 220074 0.5920 +7172 282617 0.4790 +7172 284312 0.4580 +7172 374569 0.4510 +7173 7200 0.4520 +7173 7252 0.5440 +7173 7253 0.9710 +7173 7299 0.9460 +7173 7849 0.7290 +7173 8718 0.5700 +7173 9211 0.5150 +7173 10687 0.4190 +7173 10999 0.4380 +7173 26047 0.4460 +7173 26191 0.6020 +7173 27022 0.4050 +7173 53905 0.5450 +7173 54221 0.5180 +7173 55532 0.5070 +7173 56896 0.4470 +7173 57623 0.5250 +7173 59272 0.4320 +7173 64135 0.4090 +7173 90480 0.4890 +7173 115352 0.4100 +7173 137362 0.9070 +7173 169026 0.4790 +7173 259307 0.9010 +7173 389434 0.8540 +7173 405753 0.7690 +7174 9474 0.4010 +7174 9520 0.5780 +7174 27159 0.6270 +7174 51548 0.4540 +7174 51752 0.8680 +7174 64167 0.9050 +7174 64421 0.4310 +7174 79930 0.6010 +7174 79961 0.5900 +7174 84988 0.4770 +7174 138199 0.5980 +7174 261726 0.4920 +7175 7307 0.5770 +7175 7329 0.5960 +7175 7341 0.5930 +7175 7414 0.5070 +7175 7514 0.5070 +7175 7536 0.4460 +7175 7756 0.4380 +7175 7884 0.4090 +7175 7919 0.5080 +7175 8021 0.9580 +7175 8086 0.9370 +7175 8148 0.4490 +7175 8189 0.4510 +7175 8379 0.9730 +7175 8480 0.9440 +7175 8487 0.4240 +7175 8496 0.5320 +7175 8563 0.5400 +7175 8655 0.7560 +7175 8661 0.7300 +7175 8683 0.4670 +7175 8714 0.4950 +7175 8723 0.9000 +7175 8878 0.5540 +7175 8888 0.9640 +7175 9093 0.4420 +7175 9133 0.4130 +7175 9147 0.5900 +7175 9169 0.5540 +7175 9212 0.5190 +7175 9295 0.6580 +7175 9343 0.4870 +7175 9360 0.5350 +7175 9451 0.5460 +7175 9631 0.9390 +7175 9646 0.4940 +7175 9648 0.6530 +7175 9688 0.9660 +7175 9759 0.5030 +7175 9774 0.5680 +7175 9775 0.6010 +7175 9785 0.4770 +7175 9818 0.7980 +7175 9877 0.4600 +7175 9879 0.7110 +7175 9883 0.6270 +7175 9939 0.5740 +7175 9967 0.4540 +7175 9972 0.9990 +7175 9984 0.4740 +7175 10073 0.4110 +7175 10189 0.8400 +7175 10204 0.4460 +7175 10250 0.6810 +7175 10342 0.9200 +7175 10482 0.9180 +7175 10526 0.4290 +7175 10569 0.4830 +7175 10594 0.6140 +7175 10762 0.9810 +7175 10783 0.4050 +7175 10817 0.5100 +7175 10818 0.5180 +7175 10898 0.4350 +7175 10921 0.5410 +7175 10946 0.4220 +7175 10963 0.4120 +7175 11052 0.4240 +7175 11097 0.9070 +7175 11198 0.7180 +7175 11218 0.4270 +7175 11260 0.4970 +7175 11338 0.7000 +7175 22794 0.5040 +7175 22824 0.4710 +7175 22872 0.5370 +7175 22916 0.5550 +7175 23091 0.5060 +7175 23165 0.9590 +7175 23215 0.4510 +7175 23225 0.9170 +7175 23279 0.8210 +7175 23350 0.8050 +7175 23353 0.5090 +7175 23386 0.7240 +7175 23435 0.4580 +7175 23451 0.5220 +7175 23469 0.4950 +7175 23511 0.9020 +7175 23636 0.9080 +7175 25777 0.4820 +7175 25909 0.7820 +7175 25929 0.4700 +7175 26097 0.6140 +7175 26168 0.4390 +7175 27161 0.4050 +7175 27332 0.6210 +7175 27436 0.6000 +7175 29107 0.6840 +7175 29843 0.4730 +7175 29894 0.4900 +7175 50628 0.4090 +7175 51143 0.9010 +7175 51182 0.4700 +7175 51362 0.4990 +7175 51501 0.4140 +7175 51626 0.9000 +7175 51690 0.4360 +7175 51692 0.4420 +7175 51808 0.4360 +7175 53335 0.5160 +7175 53371 0.8350 +7175 53981 0.4680 +7175 55023 0.4790 +7175 55110 0.7430 +7175 55112 0.9000 +7175 55143 0.4520 +7175 55193 0.4050 +7175 55339 0.4940 +7175 55660 0.8170 +7175 55677 0.4270 +7175 55706 0.8320 +7175 55746 0.9100 +7175 55749 0.5350 +7175 55795 0.9170 +7175 56000 0.5520 +7175 56001 0.5460 +7175 56943 0.9320 +7175 57122 0.9720 +7175 57187 0.9140 +7175 57448 0.5650 +7175 58517 0.5910 +7175 64326 0.4010 +7175 65108 0.4100 +7175 65109 0.5170 +7175 79023 0.8180 +7175 79228 0.6490 +7175 79659 0.7420 +7175 79760 0.4210 +7175 79811 0.5700 +7175 79833 0.4210 +7175 79882 0.6410 +7175 79902 0.9670 +7175 80145 0.4350 +7175 80304 0.4990 +7175 81608 0.5550 +7175 81929 0.9660 +7175 83657 0.7200 +7175 83658 0.7270 +7175 84248 0.4910 +7175 84271 0.6660 +7175 84321 0.6290 +7175 84324 0.4860 +7175 84823 0.4390 +7175 89891 0.9000 +7175 91754 0.4280 +7175 116835 0.4180 +7175 120892 0.5370 +7175 129401 0.9070 +7175 140609 0.4030 +7175 140735 0.5990 +7175 200132 0.5470 +7175 255758 0.7240 +7175 259217 0.4180 +7175 259282 0.4050 +7175 343521 0.5470 +7175 348995 0.8920 +7175 728343 0.7630 +7175 729857 0.8220 +7175 100101267 0.6640 +7177 11181 0.5240 +7177 23430 0.9770 +7177 27306 0.5660 +7177 51200 0.7520 +7177 64499 0.9990 +7178 7248 0.7040 +7178 7249 0.4900 +7178 7280 0.4270 +7178 7311 0.9350 +7178 7314 0.4110 +7178 7341 0.4530 +7178 7531 0.4030 +7178 7534 0.4220 +7178 8530 0.4200 +7178 8662 0.5460 +7178 8665 0.5680 +7178 8667 0.4080 +7178 8668 0.8410 +7178 8761 0.4080 +7178 8848 0.4660 +7178 9045 0.9670 +7178 9088 0.7960 +7178 9349 0.9680 +7178 9557 0.4060 +7178 9582 0.4040 +7178 9732 0.7320 +7178 9858 0.4660 +7178 10399 0.9880 +7178 10476 0.4100 +7178 10480 0.4250 +7178 10557 0.5850 +7178 10933 0.4020 +7178 11224 0.8790 +7178 23148 0.5920 +7178 23204 0.6370 +7178 23521 0.9990 +7178 23770 0.5600 +7178 25873 0.7470 +7178 26135 0.4950 +7178 26986 0.6670 +7178 27335 0.4440 +7178 28998 0.5890 +7178 29093 0.4420 +7178 29978 0.4720 +7178 29979 0.4790 +7178 51065 0.8600 +7178 51069 0.4610 +7178 51073 0.5970 +7178 51081 0.6360 +7178 51116 0.4710 +7178 51121 0.8350 +7178 51149 0.8390 +7178 51154 0.7470 +7178 51319 0.8430 +7178 51569 0.4530 +7178 55173 0.6030 +7178 55240 0.8910 +7178 55272 0.6470 +7178 55316 0.7210 +7178 55611 0.5370 +7178 55651 0.5840 +7178 55743 0.6140 +7178 56647 0.4340 +7178 56648 0.7660 +7178 63893 0.4080 +7178 63931 0.5790 +7178 64960 0.6300 +7178 64963 0.6420 +7178 64969 0.6400 +7178 65008 0.5710 +7178 79590 0.6240 +7178 103910 0.4090 +7178 114987 0.8570 +7178 116832 0.4730 +7178 126402 0.6290 +7178 140032 0.7100 +7178 140801 0.7500 +7178 143244 0.7600 +7178 203068 0.4620 +7178 285855 0.8390 +7178 342538 0.5920 +7178 347487 0.7360 +7178 375189 0.4470 +7178 387129 0.6520 +7178 641776 0.4250 +7178 643909 0.4250 +7178 645051 0.4590 +7178 645073 0.4590 +7178 728524 0.4250 +7178 729396 0.4590 +7178 729422 0.4590 +7178 729428 0.4590 +7178 729431 0.4590 +7178 729442 0.4590 +7178 729447 0.4590 +7178 100008586 0.4590 +7178 100132399 0.4590 +7178 100287482 0.4660 +7178 100505478 0.6260 +7178 100526842 0.7120 +7178 100529097 0.6040 +7178 100529239 0.7840 +7178 100996746 0.4250 +7178 102724473 0.4590 +7178 105180390 0.4250 +7178 105180391 0.4250 +7179 7299 0.6990 +7179 8898 0.5640 +7179 9108 0.4520 +7179 9947 0.4220 +7179 10000 0.4460 +7179 11051 0.4070 +7179 23408 0.4070 +7179 23411 0.4140 +7179 51213 0.4090 +7179 54801 0.4410 +7179 83932 0.8090 +7179 84260 0.4490 +7179 123591 0.4210 +7179 148545 0.4240 +7180 7784 0.4170 +7180 8852 0.5740 +7180 10321 0.6660 +7180 10343 0.4980 +7180 25797 0.4580 +7180 26528 0.4750 +7180 51533 0.4210 +7180 57119 0.4410 +7180 79893 0.5790 +7180 83716 0.4370 +7180 83983 0.4210 +7180 84645 0.4230 +7180 84651 0.4760 +7180 84654 0.4900 +7180 84692 0.4100 +7180 89869 0.5290 +7180 117144 0.7500 +7180 132612 0.4220 +7180 140690 0.4460 +7180 140738 0.5270 +7180 151056 0.6550 +7180 151126 0.4370 +7180 160065 0.5620 +7180 221223 0.4170 +7180 246777 0.4220 +7180 259307 0.6570 +7180 283417 0.4060 +7180 284359 0.5620 +7180 100129669 0.5190 +7181 7182 0.8280 +7181 7329 0.6620 +7181 7341 0.5080 +7181 8204 0.9300 +7181 8554 0.4890 +7181 8841 0.8640 +7181 9611 0.8180 +7181 9612 0.6340 +7181 9759 0.7330 +7181 10155 0.5610 +7181 11328 0.5660 +7181 23028 0.6420 +7181 26048 0.4120 +7181 55171 0.4380 +7181 55591 0.4230 +7181 64858 0.4170 +7181 84464 0.4080 +7181 84961 0.4030 +7181 92822 0.4150 +7181 152485 0.4750 +7182 7184 0.4570 +7182 7189 0.7210 +7182 7334 0.4190 +7182 7391 0.4510 +7182 7528 0.4870 +7182 7547 0.4010 +7182 7707 0.4730 +7182 8204 0.6710 +7182 8361 0.5190 +7182 8450 0.4860 +7182 8771 0.6080 +7182 8795 0.4760 +7182 8797 0.4650 +7182 8841 0.5200 +7182 9126 0.4300 +7182 9319 0.4140 +7182 9320 0.4950 +7182 9611 0.8950 +7182 9612 0.6140 +7182 9730 0.5730 +7182 9870 0.4610 +7182 9931 0.4100 +7182 9967 0.4150 +7182 10131 0.4260 +7182 10155 0.7220 +7182 10277 0.4390 +7182 10320 0.4450 +7182 10454 0.5200 +7182 10661 0.6400 +7182 10767 0.4390 +7182 10855 0.4310 +7182 11052 0.4160 +7182 11083 0.5000 +7182 22828 0.5000 +7182 22887 0.4670 +7182 23028 0.7710 +7182 23118 0.8540 +7182 23140 0.4830 +7182 23186 0.4900 +7182 23352 0.4420 +7182 23358 0.5710 +7182 23369 0.4700 +7182 25885 0.4470 +7182 25909 0.4220 +7182 25942 0.6540 +7182 26009 0.4460 +7182 51341 0.4180 +7182 51538 0.4460 +7182 51634 0.4340 +7182 53335 0.6680 +7182 54542 0.6890 +7182 54815 0.4390 +7182 55553 0.5830 +7182 55660 0.4590 +7182 55683 0.4490 +7182 55689 0.4860 +7182 55696 0.4210 +7182 55975 0.4260 +7182 56946 0.5090 +7182 57148 0.4630 +7182 57609 0.4480 +7182 57634 0.4360 +7182 57680 0.4050 +7182 57724 0.4910 +7182 64324 0.4700 +7182 64425 0.4240 +7182 79707 0.4180 +7182 89891 0.5870 +7182 126382 0.8930 +7182 128178 0.4740 +7182 132660 0.4870 +7182 147912 0.4070 +7182 152485 0.5730 +7182 197131 0.4020 +7182 221895 0.9880 +7182 257397 0.6290 +7182 285268 0.4500 +7184 7203 0.6540 +7184 7249 0.6240 +7184 7251 0.5960 +7184 7266 0.6420 +7184 7276 0.5350 +7184 7284 0.4460 +7184 7295 0.4910 +7184 7385 0.4800 +7184 7403 0.6220 +7184 7404 0.6220 +7184 7415 0.7340 +7184 7416 0.5750 +7184 7417 0.4840 +7184 7419 0.4320 +7184 7466 0.5470 +7184 7494 0.8720 +7184 7529 0.4610 +7184 7531 0.5120 +7184 7532 0.4650 +7184 7533 0.4220 +7184 7534 0.5250 +7184 7837 0.4710 +7184 7919 0.4270 +7184 8128 0.4870 +7184 8192 0.4220 +7184 8195 0.5150 +7184 8361 0.4340 +7184 8411 0.5060 +7184 8468 0.4450 +7184 8517 0.4020 +7184 8578 0.6440 +7184 8615 0.4320 +7184 8661 0.4140 +7184 8720 0.6870 +7184 8767 0.9170 +7184 8801 0.4040 +7184 8802 0.4140 +7184 8826 0.4630 +7184 8988 0.5570 +7184 9075 0.5640 +7184 9093 0.5040 +7184 9255 0.5520 +7184 9276 0.4530 +7184 9361 0.5630 +7184 9451 0.9330 +7184 9475 0.4810 +7184 9528 0.5540 +7184 9530 0.5340 +7184 9531 0.5050 +7184 9601 0.9980 +7184 9694 0.5230 +7184 9695 0.8840 +7184 9709 0.5790 +7184 9868 0.5480 +7184 10000 0.9300 +7184 10013 0.4220 +7184 10014 0.4140 +7184 10049 0.5160 +7184 10109 0.4600 +7184 10130 0.9900 +7184 10131 0.4120 +7184 10134 0.4010 +7184 10213 0.4540 +7184 10273 0.4390 +7184 10294 0.6480 +7184 10330 0.4310 +7184 10383 0.4500 +7184 10399 0.4820 +7184 10521 0.4990 +7184 10525 0.9990 +7184 10549 0.5650 +7184 10574 0.6130 +7184 10575 0.5700 +7184 10576 0.7440 +7184 10594 0.4620 +7184 10595 0.5350 +7184 10598 0.9150 +7184 10628 0.4290 +7184 10693 0.4920 +7184 10694 0.4920 +7184 10695 0.9550 +7184 10728 0.7800 +7184 10808 0.7610 +7184 10890 0.4540 +7184 10910 0.7930 +7184 10954 0.5300 +7184 10956 0.9960 +7184 10961 0.8940 +7184 10963 0.6760 +7184 10971 0.4990 +7184 11080 0.5370 +7184 11140 0.9730 +7184 11145 0.5190 +7184 11160 0.6800 +7184 11231 0.5020 +7184 11315 0.6090 +7184 22824 0.7410 +7184 22926 0.9810 +7184 22937 0.5420 +7184 22948 0.6490 +7184 23071 0.5560 +7184 23135 0.6220 +7184 23193 0.8730 +7184 23197 0.8190 +7184 23234 0.4960 +7184 23341 0.4740 +7184 23521 0.4100 +7184 23621 0.4510 +7184 23640 0.6430 +7184 23645 0.5130 +7184 23753 0.9640 +7184 25789 0.5250 +7184 25822 0.4270 +7184 26353 0.4430 +7184 26548 0.6230 +7184 26973 0.6450 +7184 26986 0.4490 +7184 27068 0.4010 +7184 27101 0.4080 +7184 27102 0.5820 +7184 27161 0.5110 +7184 27248 0.9250 +7184 29927 0.6450 +7184 30001 0.5740 +7184 51009 0.5170 +7184 51182 0.6590 +7184 51237 0.6810 +7184 51256 0.4750 +7184 51284 0.6750 +7184 51303 0.5720 +7184 51311 0.6230 +7184 51360 0.7450 +7184 51465 0.5460 +7184 51726 0.9990 +7184 51806 0.8850 +7184 54106 0.8060 +7184 54205 0.5550 +7184 54431 0.9020 +7184 54575 0.4340 +7184 54576 0.4290 +7184 54577 0.4290 +7184 54578 0.4450 +7184 54657 0.4280 +7184 54658 0.6190 +7184 54788 0.5760 +7184 54979 0.5260 +7184 55011 0.5530 +7184 55466 0.6400 +7184 55612 0.4170 +7184 55651 0.4110 +7184 55664 0.7170 +7184 55735 0.4770 +7184 55741 0.4010 +7184 55757 0.6650 +7184 55780 0.4450 +7184 55898 0.5280 +7184 56605 0.4940 +7184 56886 0.9580 +7184 56975 0.6490 +7184 57110 0.5190 +7184 58533 0.4410 +7184 60559 0.4780 +7184 64215 0.5240 +7184 64374 0.7480 +7184 64714 0.8350 +7184 79139 0.7170 +7184 79174 0.6770 +7184 79657 0.4800 +7184 79738 0.4480 +7184 79962 0.4490 +7184 79982 0.5560 +7184 80267 0.7710 +7184 80273 0.6030 +7184 80331 0.4570 +7184 81502 0.7880 +7184 81567 0.6950 +7184 81570 0.7250 +7184 81622 0.7100 +7184 83752 0.5220 +7184 84140 0.4450 +7184 84447 0.8230 +7184 84955 0.6260 +7184 85479 0.4350 +7184 91319 0.5410 +7184 91860 0.8850 +7184 116835 0.5860 +7184 118461 0.5190 +7184 120526 0.4250 +7184 120892 0.4230 +7184 125972 0.9470 +7184 126393 0.4610 +7184 134266 0.5330 +7184 137902 0.4690 +7184 146862 0.5250 +7184 150353 0.4310 +7184 163688 0.8850 +7184 165721 0.4670 +7184 201595 0.5000 +7184 202052 0.4820 +7184 245812 0.4990 +7184 259217 0.6220 +7184 285126 0.4300 +7184 285282 0.4010 +7184 339416 0.8920 +7184 374407 0.4370 +7184 388633 0.5190 +7184 440275 0.6910 +7184 548645 0.4270 +7184 100885848 0.6310 +7184 100885850 0.6390 +7185 7186 0.9990 +7185 7187 0.8260 +7185 7188 0.5560 +7185 7189 0.8900 +7185 7293 0.7460 +7185 7311 0.4450 +7185 7316 0.5830 +7185 7332 0.5670 +7185 7334 0.6870 +7185 7850 0.4790 +7185 7874 0.5920 +7185 8405 0.5830 +7185 8517 0.8150 +7185 8717 0.9990 +7185 8737 0.9880 +7185 8742 0.5560 +7185 8744 0.4280 +7185 8764 0.8470 +7185 8767 0.5660 +7185 8772 0.8880 +7185 8784 0.6610 +7185 8792 0.6800 +7185 8837 0.9610 +7185 8877 0.4620 +7185 8887 0.6810 +7185 8995 0.4360 +7185 9020 0.8680 +7185 9641 0.6100 +7185 10010 0.9790 +7185 10013 0.4450 +7185 10293 0.8960 +7185 10318 0.6190 +7185 10454 0.5630 +7185 10455 0.4200 +7185 10616 0.6760 +7185 10673 0.4040 +7185 10906 0.5590 +7185 10913 0.4200 +7185 11035 0.6270 +7185 11126 0.4570 +7185 23118 0.4870 +7185 23569 0.7540 +7185 26191 0.7230 +7185 29110 0.7010 +7185 50615 0.4310 +7185 51074 0.4220 +7185 51330 0.7910 +7185 54764 0.5650 +7185 55072 0.7360 +7185 55593 0.4460 +7185 56957 0.5410 +7185 57506 0.5100 +7185 60401 0.8280 +7185 63893 0.4010 +7185 64135 0.4640 +7185 64943 0.4200 +7185 79837 0.4860 +7185 80342 0.4950 +7185 81858 0.5720 +7185 84085 0.5860 +7185 84231 0.6240 +7185 84914 0.4730 +7185 84957 0.7790 +7185 92610 0.5180 +7185 115650 0.5970 +7185 148022 0.7390 +7185 151888 0.4730 +7185 164592 0.4060 +7185 167826 0.6560 +7185 257397 0.4090 +7185 285613 0.5060 +7185 768211 0.4750 +7186 7187 0.9960 +7186 7188 0.9980 +7186 7189 0.9950 +7186 7292 0.4730 +7186 7293 0.7770 +7186 7311 0.7170 +7186 7314 0.6070 +7186 7316 0.8140 +7186 7321 0.8150 +7186 7322 0.5690 +7186 7332 0.5450 +7186 7334 0.9920 +7186 7335 0.4380 +7186 7336 0.9350 +7186 7375 0.8080 +7186 7416 0.4100 +7186 7494 0.5680 +7186 7704 0.4640 +7186 7706 0.6660 +7186 7874 0.7510 +7186 7965 0.4370 +7186 8408 0.5010 +7186 8503 0.9010 +7186 8517 0.9990 +7186 8600 0.5980 +7186 8678 0.9950 +7186 8717 0.9990 +7186 8718 0.4210 +7186 8737 0.9990 +7186 8740 0.6920 +7186 8742 0.7500 +7186 8743 0.7570 +7186 8764 0.9780 +7186 8767 0.9880 +7186 8772 0.9990 +7186 8784 0.5620 +7186 8792 0.9830 +7186 8795 0.9100 +7186 8797 0.8210 +7186 8837 0.9430 +7186 8877 0.9770 +7186 8878 0.9310 +7186 8887 0.5980 +7186 8915 0.8750 +7186 9020 0.9950 +7186 9099 0.7610 +7186 9261 0.4950 +7186 9451 0.4930 +7186 9491 0.5390 +7186 9530 0.5950 +7186 9618 0.6040 +7186 9641 0.9980 +7186 9821 0.6480 +7186 9825 0.6210 +7186 9846 0.9000 +7186 9861 0.4050 +7186 9971 0.4700 +7186 10010 0.9730 +7186 10018 0.4030 +7186 10133 0.7110 +7186 10197 0.4180 +7186 10213 0.4280 +7186 10241 0.5170 +7186 10273 0.5020 +7186 10293 0.8410 +7186 10399 0.6200 +7186 10454 0.9750 +7186 10595 0.7270 +7186 10616 0.9290 +7186 10673 0.6170 +7186 10758 0.7130 +7186 10892 0.7400 +7186 10928 0.4010 +7186 10987 0.4310 +7186 11035 0.9630 +7186 11072 0.5310 +7186 22926 0.5720 +7186 23043 0.7620 +7186 23099 0.4260 +7186 23118 0.9940 +7186 23198 0.4120 +7186 23495 0.6970 +7186 23586 0.9270 +7186 23774 0.4250 +7186 25793 0.6190 +7186 25999 0.4990 +7186 26060 0.4710 +7186 26133 0.5360 +7186 26146 0.4290 +7186 27005 0.4670 +7186 27429 0.8660 +7186 29110 0.9980 +7186 29968 0.4430 +7186 51135 0.9320 +7186 51224 0.4220 +7186 51330 0.9050 +7186 51362 0.5040 +7186 51447 0.4030 +7186 51592 0.4310 +7186 51741 0.4610 +7186 54205 0.4180 +7186 54469 0.8820 +7186 54991 0.4700 +7186 55072 0.9580 +7186 56848 0.4410 +7186 56957 0.5630 +7186 57506 0.9990 +7186 59269 0.5650 +7186 60401 0.6700 +7186 63893 0.4060 +7186 64135 0.5710 +7186 79132 0.4060 +7186 79155 0.4870 +7186 80143 0.4990 +7186 81858 0.9370 +7186 84166 0.4560 +7186 84196 0.9520 +7186 84282 0.5070 +7186 84955 0.6220 +7186 89122 0.5380 +7186 92610 0.8760 +7186 115650 0.9520 +7186 122706 0.4110 +7186 142678 0.8270 +7186 143471 0.4060 +7186 148022 0.6800 +7186 153090 0.9690 +7186 197259 0.7830 +7186 203068 0.4030 +7186 220213 0.4350 +7186 257397 0.9570 +7186 345193 0.4980 +7187 7188 0.9980 +7187 7189 0.9980 +7187 7293 0.6830 +7187 7297 0.5160 +7187 7311 0.7190 +7187 7314 0.6140 +7187 7316 0.6370 +7187 7323 0.6050 +7187 7329 0.5010 +7187 7334 0.8470 +7187 7335 0.4300 +7187 7345 0.4270 +7187 7531 0.5070 +7187 7706 0.7900 +7187 7874 0.6720 +7187 7979 0.4010 +7187 8061 0.4420 +7187 8445 0.4390 +7187 8517 0.9530 +7187 8600 0.7140 +7187 8615 0.4350 +7187 8638 0.4790 +7187 8717 0.9990 +7187 8737 0.8150 +7187 8740 0.7130 +7187 8742 0.8280 +7187 8764 0.8090 +7187 8767 0.9950 +7187 8772 0.6120 +7187 8784 0.6150 +7187 8792 0.8510 +7187 8837 0.5460 +7187 8877 0.4220 +7187 8878 0.4350 +7187 8887 0.8130 +7187 8915 0.4750 +7187 9020 0.9940 +7187 9172 0.9610 +7187 9173 0.4230 +7187 9260 0.6060 +7187 9342 0.5960 +7187 9447 0.4060 +7187 9491 0.4210 +7187 9578 0.6320 +7187 9636 0.5750 +7187 9641 0.9990 +7187 9755 0.7740 +7187 9830 0.4630 +7187 9868 0.5250 +7187 9879 0.8090 +7187 10010 0.9990 +7187 10045 0.4840 +7187 10133 0.4620 +7187 10197 0.4370 +7187 10212 0.5640 +7187 10213 0.4770 +7187 10241 0.4970 +7187 10293 0.5850 +7187 10318 0.5730 +7187 10342 0.7270 +7187 10379 0.4800 +7187 10392 0.4830 +7187 10454 0.9720 +7187 10673 0.8710 +7187 10758 0.9880 +7187 10771 0.7790 +7187 10892 0.6500 +7187 10906 0.5490 +7187 10913 0.6640 +7187 11126 0.4550 +7187 11140 0.4410 +7187 11213 0.4350 +7187 11329 0.6180 +7187 22808 0.4650 +7187 22894 0.4950 +7187 23098 0.6260 +7187 23118 0.9650 +7187 23132 0.4270 +7187 23198 0.4080 +7187 23269 0.5110 +7187 23495 0.7440 +7187 23586 0.9860 +7187 23636 0.5920 +7187 23643 0.7040 +7187 23765 0.8760 +7187 26146 0.9690 +7187 26191 0.8080 +7187 27185 0.4370 +7187 27338 0.6050 +7187 27429 0.5660 +7187 29110 0.9990 +7187 29761 0.6230 +7187 51135 0.9940 +7187 51284 0.7830 +7187 51311 0.5910 +7187 51330 0.9310 +7187 51567 0.5540 +7187 51806 0.4370 +7187 54106 0.7960 +7187 54472 0.4530 +7187 54476 0.7810 +7187 54855 0.5570 +7187 54941 0.4720 +7187 55072 0.7330 +7187 55593 0.9950 +7187 55611 0.9210 +7187 55669 0.6110 +7187 55770 0.4140 +7187 55920 0.4170 +7187 56957 0.7890 +7187 57154 0.4530 +7187 57162 0.5060 +7187 57407 0.5050 +7187 57506 0.9990 +7187 60401 0.9010 +7187 63893 0.4190 +7187 64127 0.4540 +7187 64135 0.9260 +7187 64170 0.6200 +7187 64343 0.8020 +7187 65018 0.6510 +7187 78990 0.7650 +7187 79132 0.8400 +7187 79671 0.6050 +7187 80143 0.6380 +7187 80149 0.5570 +7187 80342 0.9900 +7187 81030 0.6350 +7187 81622 0.6040 +7187 81693 0.4240 +7187 81793 0.4210 +7187 81858 0.4670 +7187 84282 0.7350 +7187 84433 0.4650 +7187 89122 0.6320 +7187 90268 0.4480 +7187 90865 0.4320 +7187 91662 0.8370 +7187 91860 0.4370 +7187 92610 0.6000 +7187 114548 0.4650 +7187 114609 0.6430 +7187 115004 0.5280 +7187 115650 0.9980 +7187 115992 0.4620 +7187 122706 0.4110 +7187 136991 0.5380 +7187 143471 0.4060 +7187 148022 0.9940 +7187 150864 0.5370 +7187 151888 0.4480 +7187 163688 0.4370 +7187 197358 0.6050 +7187 221302 0.5630 +7187 255488 0.6450 +7187 257397 0.9770 +7187 340061 0.7180 +7187 353376 0.8340 +7187 377630 0.4470 +7187 100302736 0.6120 +7188 7189 0.9990 +7188 7293 0.8410 +7188 7311 0.4450 +7188 7316 0.4620 +7188 7334 0.9490 +7188 7335 0.4060 +7188 7336 0.9150 +7188 7375 0.4260 +7188 7874 0.6020 +7188 8517 0.9670 +7188 8717 0.9990 +7188 8718 0.5180 +7188 8737 0.9990 +7188 8742 0.6540 +7188 8764 0.9920 +7188 8767 0.9720 +7188 8772 0.9120 +7188 8792 0.8130 +7188 8795 0.5400 +7188 8797 0.5180 +7188 8837 0.6510 +7188 8887 0.5170 +7188 9020 0.9450 +7188 9253 0.4080 +7188 9456 0.6730 +7188 9641 0.7380 +7188 10010 0.7710 +7188 10454 0.9480 +7188 10616 0.9300 +7188 10657 0.4720 +7188 10758 0.8480 +7188 10865 0.5170 +7188 10913 0.4650 +7188 11035 0.4570 +7188 11126 0.5060 +7188 11213 0.4780 +7188 23118 0.9640 +7188 23219 0.4960 +7188 23495 0.6260 +7188 23586 0.4170 +7188 23765 0.6280 +7188 27429 0.5840 +7188 29110 0.9970 +7188 29761 0.6270 +7188 51135 0.4960 +7188 51330 0.8610 +7188 51567 0.6060 +7188 55072 0.9350 +7188 55109 0.4920 +7188 55504 0.5580 +7188 55611 0.4310 +7188 57506 0.9750 +7188 63893 0.4010 +7188 78990 0.4050 +7188 79132 0.5090 +7188 81858 0.9310 +7188 84818 0.4310 +7188 91949 0.4270 +7188 92610 0.4540 +7188 115650 0.6340 +7188 148022 0.4530 +7188 151888 0.5050 +7188 197259 0.4140 +7188 257397 0.9550 +7188 353376 0.5500 +7188 407977 0.4850 +7188 100302736 0.5250 +7189 7295 0.4870 +7189 7297 0.4690 +7189 7305 0.4080 +7189 7311 0.9590 +7189 7314 0.8410 +7189 7316 0.9760 +7189 7321 0.8850 +7189 7322 0.8680 +7189 7323 0.9950 +7189 7324 0.5250 +7189 7329 0.6840 +7189 7332 0.7840 +7189 7334 0.9990 +7189 7335 0.9990 +7189 7336 0.9710 +7189 7337 0.5210 +7189 7345 0.4680 +7189 7375 0.9590 +7189 7398 0.4480 +7189 7415 0.6020 +7189 7531 0.4800 +7189 7706 0.7950 +7189 7837 0.4860 +7189 7874 0.9020 +7189 8065 0.7690 +7189 8078 0.6510 +7189 8239 0.5300 +7189 8266 0.4480 +7189 8349 0.4100 +7189 8405 0.5510 +7189 8408 0.9730 +7189 8424 0.4310 +7189 8431 0.4590 +7189 8454 0.4400 +7189 8517 0.9990 +7189 8600 0.9860 +7189 8651 0.7630 +7189 8658 0.4840 +7189 8678 0.9820 +7189 8717 0.9980 +7189 8737 0.9980 +7189 8767 0.9930 +7189 8772 0.9220 +7189 8792 0.9950 +7189 8807 0.5420 +7189 8841 0.6420 +7189 8877 0.4180 +7189 8878 0.9990 +7189 8887 0.9840 +7189 8915 0.9990 +7189 8945 0.5000 +7189 8994 0.7030 +7189 9020 0.9930 +7189 9021 0.7530 +7189 9097 0.6930 +7189 9099 0.7250 +7189 9113 0.5070 +7189 9140 0.4340 +7189 9173 0.8400 +7189 9253 0.8070 +7189 9261 0.4520 +7189 9294 0.4530 +7189 9314 0.4740 +7189 9447 0.4260 +7189 9451 0.5010 +7189 9474 0.5550 +7189 9479 0.4120 +7189 9590 0.4590 +7189 9618 0.8120 +7189 9636 0.5250 +7189 9641 0.9990 +7189 9682 0.4390 +7189 9706 0.9190 +7189 9734 0.4810 +7189 9817 0.4430 +7189 9830 0.5350 +7189 9846 0.9480 +7189 9868 0.4720 +7189 9879 0.7470 +7189 9958 0.6870 +7189 9960 0.4510 +7189 10010 0.9860 +7189 10048 0.5990 +7189 10075 0.5620 +7189 10133 0.4030 +7189 10206 0.4420 +7189 10212 0.5610 +7189 10241 0.6280 +7189 10273 0.8610 +7189 10318 0.6100 +7189 10392 0.8150 +7189 10399 0.6150 +7189 10454 0.9990 +7189 10475 0.6240 +7189 10533 0.4670 +7189 10616 0.6960 +7189 10617 0.4690 +7189 10628 0.6430 +7189 10673 0.4610 +7189 10758 0.9680 +7189 10771 0.7230 +7189 10782 0.9130 +7189 10868 0.7920 +7189 10869 0.4710 +7189 10871 0.4470 +7189 10892 0.9990 +7189 10906 0.7590 +7189 10913 0.6610 +7189 11035 0.4280 +7189 11059 0.5240 +7189 11074 0.4880 +7189 11213 0.9860 +7189 11315 0.7470 +7189 11329 0.4430 +7189 22868 0.4700 +7189 22954 0.5120 +7189 23001 0.9210 +7189 23032 0.4030 +7189 23043 0.4180 +7189 23098 0.9210 +7189 23118 0.9990 +7189 23139 0.8190 +7189 23194 0.5080 +7189 23405 0.4510 +7189 23411 0.4550 +7189 23421 0.4990 +7189 23495 0.8460 +7189 23586 0.9710 +7189 23643 0.9090 +7189 23650 0.4660 +7189 23765 0.8970 +7189 24147 0.5420 +7189 25891 0.4960 +7189 26227 0.4510 +7189 26994 0.5210 +7189 27020 0.4350 +7189 27040 0.5570 +7189 27250 0.4160 +7189 27338 0.8830 +7189 27429 0.5760 +7189 28964 0.4440 +7189 29099 0.5410 +7189 29108 0.5030 +7189 29110 0.9990 +7189 29761 0.5910 +7189 29775 0.4040 +7189 29924 0.4570 +7189 50616 0.5910 +7189 50852 0.8060 +7189 50943 0.4350 +7189 51014 0.4210 +7189 51107 0.4030 +7189 51135 0.9990 +7189 51185 0.4050 +7189 51280 0.6210 +7189 51284 0.9270 +7189 51295 0.9990 +7189 51311 0.8040 +7189 51330 0.5100 +7189 51567 0.6960 +7189 51765 0.5090 +7189 54106 0.9820 +7189 54205 0.6280 +7189 54472 0.9500 +7189 54708 0.4650 +7189 54756 0.5960 +7189 54764 0.9840 +7189 54765 0.5090 +7189 55054 0.4030 +7189 55072 0.8850 +7189 55432 0.5950 +7189 55437 0.5510 +7189 55540 0.4180 +7189 55593 0.6390 +7189 55611 0.9480 +7189 55626 0.9930 +7189 55802 0.4620 +7189 56957 0.8720 +7189 57154 0.5850 +7189 57161 0.9510 +7189 57162 0.9870 +7189 57506 0.9990 +7189 57521 0.5320 +7189 59307 0.8700 +7189 60401 0.9550 +7189 63893 0.5280 +7189 64083 0.4270 +7189 64127 0.8620 +7189 64135 0.8300 +7189 64170 0.7590 +7189 64581 0.4070 +7189 64750 0.4530 +7189 65018 0.8530 +7189 78990 0.8910 +7189 79065 0.4230 +7189 79092 0.6870 +7189 79132 0.8080 +7189 79671 0.9680 +7189 80143 0.5650 +7189 80149 0.7570 +7189 80153 0.4090 +7189 80216 0.6570 +7189 81501 0.6090 +7189 81631 0.6960 +7189 81793 0.5150 +7189 81858 0.6270 +7189 83464 0.4190 +7189 83737 0.8660 +7189 84166 0.5980 +7189 84231 0.6200 +7189 84282 0.7070 +7189 84433 0.9550 +7189 84818 0.5450 +7189 84901 0.6210 +7189 85363 0.5570 +7189 89122 0.6100 +7189 89891 0.5450 +7189 90268 0.4260 +7189 90865 0.8410 +7189 91543 0.9510 +7189 92610 0.9990 +7189 112744 0.4240 +7189 114548 0.5670 +7189 114609 0.9990 +7189 114803 0.5620 +7189 115004 0.4810 +7189 115650 0.7570 +7189 115992 0.4710 +7189 126014 0.5260 +7189 128178 0.9820 +7189 128506 0.4510 +7189 132014 0.4010 +7189 137902 0.4870 +7189 139599 0.5680 +7189 148022 0.9980 +7189 150094 0.4220 +7189 159989 0.4220 +7189 163702 0.4100 +7189 197358 0.8090 +7189 221302 0.6020 +7189 245972 0.4540 +7189 246330 0.9800 +7189 257397 0.9990 +7189 340061 0.5400 +7189 353376 0.9840 +7189 377630 0.4490 +7189 497189 0.6460 +7189 653361 0.5410 +7189 100302736 0.6250 +7200 7201 0.9990 +7200 7204 0.4990 +7200 7252 0.9200 +7200 7253 0.7670 +7200 7276 0.4310 +7200 7349 0.4060 +7200 7350 0.4840 +7200 7432 0.6300 +7200 7849 0.4690 +7200 8820 0.5920 +7200 8997 0.4990 +7200 9002 0.4990 +7200 9248 0.5690 +7200 9607 0.7610 +7200 9712 0.6890 +7200 10316 0.5190 +7200 10800 0.5030 +7200 10874 0.6110 +7200 10887 0.5240 +7200 10911 0.5270 +7200 23236 0.5480 +7200 23428 0.5580 +7200 23440 0.5620 +7200 23620 0.5030 +7200 29953 0.9330 +7200 51052 0.5500 +7200 51083 0.6300 +7200 51738 0.8400 +7200 53919 0.6490 +7200 54858 0.9190 +7200 56923 0.5490 +7200 57084 0.4120 +7200 57105 0.5030 +7200 60675 0.4590 +7200 84432 0.4600 +7200 84539 0.6130 +7200 84634 0.5870 +7200 115330 0.4260 +7200 115557 0.4990 +7200 117247 0.4040 +7200 124274 0.4790 +7200 128674 0.5370 +7200 129521 0.5430 +7200 246213 0.4430 +7200 257202 0.4380 +7200 257313 0.4300 +7200 350383 0.4620 +7200 387129 0.5780 +7200 493869 0.4340 +7200 594857 0.5960 +7200 104909134 0.4040 +7201 7204 0.4990 +7201 7252 0.9000 +7201 7253 0.7320 +7201 8471 0.4080 +7201 8820 0.4550 +7201 8997 0.5000 +7201 9002 0.4050 +7201 9630 0.6950 +7201 10316 0.4530 +7201 10874 0.5180 +7201 10887 0.4160 +7201 10911 0.5140 +7201 11055 0.4550 +7201 23236 0.5320 +7201 23440 0.4180 +7201 23620 0.4010 +7201 51738 0.7180 +7201 54331 0.8160 +7201 55835 0.6000 +7201 56923 0.4640 +7201 57105 0.4040 +7201 60675 0.5170 +7201 84432 0.5590 +7201 84539 0.4460 +7201 84634 0.4140 +7201 113746 0.4350 +7201 115557 0.4990 +7201 128674 0.4290 +7201 129521 0.4990 +7201 257313 0.5010 +7201 387129 0.4960 +7201 389434 0.4090 +7201 594857 0.5200 +7203 7248 0.9430 +7203 7266 0.4570 +7203 7277 0.7100 +7203 7278 0.5950 +7203 7280 0.9640 +7203 7284 0.4430 +7203 7336 0.4100 +7203 7385 0.4930 +7203 7407 0.5130 +7203 7411 0.9530 +7203 7415 0.6050 +7203 7428 0.5790 +7203 7514 0.4130 +7203 7846 0.7720 +7203 8192 0.4790 +7203 8195 0.9560 +7203 8237 0.6540 +7203 8409 0.5660 +7203 8428 0.9940 +7203 8440 0.4340 +7203 8565 0.4580 +7203 8607 0.7970 +7203 8624 0.9120 +7203 8661 0.4200 +7203 8662 0.5820 +7203 8664 0.5690 +7203 8665 0.4690 +7203 8666 0.4580 +7203 8668 0.7360 +7203 8725 0.5660 +7203 8786 0.4990 +7203 8787 0.4990 +7203 8833 0.4530 +7203 8841 0.6210 +7203 8877 0.5060 +7203 8894 0.4480 +7203 9045 0.4930 +7203 9093 0.4860 +7203 9097 0.4910 +7203 9134 0.5430 +7203 9141 0.6580 +7203 9184 0.4590 +7203 9255 0.4090 +7203 9343 0.4410 +7203 9361 0.4610 +7203 9531 0.7640 +7203 9532 0.6060 +7203 9628 0.4990 +7203 9669 0.4630 +7203 9775 0.4210 +7203 10096 0.5960 +7203 10130 0.4040 +7203 10131 0.5090 +7203 10146 0.4540 +7203 10155 0.4620 +7203 10190 0.7580 +7203 10213 0.6630 +7203 10236 0.4620 +7203 10238 0.7410 +7203 10273 0.5730 +7203 10294 0.5450 +7203 10376 0.8690 +7203 10381 0.6890 +7203 10382 0.6300 +7203 10383 0.7770 +7203 10399 0.6990 +7203 10471 0.9470 +7203 10480 0.5430 +7203 10492 0.5160 +7203 10517 0.5030 +7203 10525 0.4440 +7203 10528 0.7300 +7203 10564 0.5130 +7203 10574 0.9990 +7203 10575 0.9990 +7203 10576 0.9990 +7203 10598 0.6750 +7203 10606 0.5430 +7203 10681 0.6830 +7203 10693 0.9990 +7203 10694 0.9990 +7203 10726 0.5810 +7203 10728 0.9360 +7203 10765 0.4970 +7203 10808 0.5350 +7203 10856 0.7660 +7203 10963 0.9760 +7203 11055 0.4760 +7203 11080 0.4230 +7203 11140 0.9240 +7203 11266 0.4080 +7203 11315 0.4110 +7203 11328 0.5370 +7203 11331 0.5100 +7203 22803 0.5380 +7203 22824 0.5600 +7203 22948 0.9990 +7203 23030 0.5910 +7203 23193 0.4550 +7203 23234 0.9420 +7203 23322 0.4680 +7203 23423 0.4460 +7203 23476 0.5340 +7203 23753 0.7290 +7203 25813 0.4020 +7203 25843 0.9940 +7203 25879 0.4460 +7203 25956 0.7250 +7203 26140 0.6210 +7203 26190 0.5070 +7203 26224 0.5150 +7203 26234 0.4990 +7203 26259 0.4350 +7203 26270 0.5170 +7203 26272 0.4990 +7203 26330 0.6050 +7203 26353 0.7580 +7203 26985 0.5040 +7203 27044 0.5740 +7203 27101 0.4560 +7203 27175 0.4500 +7203 27241 0.4060 +7203 29888 0.9940 +7203 29966 0.9940 +7203 29978 0.4130 +7203 30846 0.5160 +7203 51182 0.4990 +7203 51202 0.4110 +7203 51386 0.5270 +7203 51398 0.5550 +7203 51726 0.8190 +7203 51764 0.4990 +7203 51807 0.6210 +7203 54331 0.4990 +7203 54431 0.4230 +7203 54461 0.5460 +7203 54853 0.5510 +7203 55135 0.7640 +7203 55154 0.6400 +7203 55172 0.5430 +7203 55212 0.5590 +7203 55220 0.5970 +7203 55294 0.7460 +7203 55466 0.5750 +7203 55622 0.4510 +7203 55844 0.6300 +7203 55970 0.5010 +7203 56984 0.9060 +7203 57003 0.5540 +7203 57180 0.4500 +7203 57470 0.4170 +7203 57826 0.4770 +7203 59345 0.5490 +7203 63971 0.4990 +7203 64326 0.4030 +7203 64446 0.4690 +7203 79031 0.9890 +7203 79084 0.6720 +7203 79590 0.4080 +7203 79657 0.5990 +7203 79738 0.9670 +7203 79861 0.8740 +7203 79968 0.5840 +7203 79982 0.4020 +7203 80005 0.4330 +7203 80086 0.5950 +7203 80273 0.6120 +7203 80342 0.9940 +7203 81027 0.6230 +7203 81570 0.5520 +7203 81572 0.5480 +7203 81631 0.5490 +7203 83743 0.4310 +7203 83752 0.7130 +7203 83992 0.9940 +7203 84140 0.7470 +7203 84261 0.6520 +7203 84617 0.7160 +7203 84790 0.7210 +7203 85479 0.4220 +7203 92482 0.4330 +7203 94235 0.4990 +7203 112714 0.6580 +7203 113457 0.6810 +7203 116143 0.4250 +7203 116835 0.4850 +7203 120379 0.5520 +7203 120892 0.5280 +7203 123103 0.4910 +7203 124626 0.4650 +7203 128240 0.4760 +7203 129880 0.4130 +7203 134266 0.5870 +7203 139741 0.4110 +7203 140625 0.4360 +7203 148345 0.4200 +7203 150160 0.9740 +7203 155368 0.4210 +7203 164395 0.5490 +7203 166379 0.8640 +7203 203068 0.9440 +7203 259217 0.4600 +7203 285126 0.4720 +7203 347733 0.7100 +7203 349136 0.5790 +7203 374407 0.4160 +7204 8111 0.4990 +7204 8477 0.4990 +7204 8495 0.5010 +7204 8515 0.4130 +7204 8620 0.4990 +7204 8976 0.5760 +7204 9002 0.5310 +7204 9138 0.6070 +7204 9170 0.4990 +7204 9423 0.5700 +7204 9630 0.5590 +7204 10161 0.5190 +7204 10316 0.4990 +7204 10672 0.4350 +7204 10681 0.5250 +7204 10800 0.4990 +7204 10874 0.4990 +7204 10886 0.5790 +7204 10887 0.4990 +7204 10911 0.5000 +7204 22885 0.5860 +7204 22919 0.5020 +7204 23433 0.4300 +7204 23566 0.4990 +7204 23620 0.4990 +7204 27185 0.5440 +7204 27334 0.5000 +7204 29933 0.4990 +7204 29984 0.4020 +7204 51738 0.4990 +7204 51764 0.5050 +7204 54331 0.5050 +7204 55970 0.5190 +7204 56413 0.4990 +7204 56923 0.4990 +7204 57105 0.5580 +7204 57121 0.5050 +7204 57381 0.5830 +7204 59345 0.5340 +7204 60675 0.4990 +7204 64106 0.5240 +7204 79017 0.5220 +7204 84109 0.4990 +7204 84432 0.4990 +7204 84448 0.5720 +7204 84539 0.4990 +7204 84634 0.4990 +7204 84955 0.6200 +7204 85358 0.4020 +7204 89796 0.4080 +7204 89797 0.4010 +7204 94233 0.4990 +7204 94235 0.5050 +7204 128674 0.4990 +7204 129521 0.4990 +7204 222545 0.5430 +7204 257313 0.4990 +7204 338557 0.4990 +7204 347148 0.4990 +7204 387129 0.5390 +7204 594857 0.4990 +7205 7265 0.4500 +7205 7408 0.5130 +7205 7414 0.8360 +7205 7791 0.6080 +7205 8572 0.5620 +7205 8767 0.9120 +7205 8814 0.4200 +7205 8994 0.7430 +7205 9113 0.4660 +7205 9170 0.9050 +7205 9223 0.4130 +7205 9260 0.4720 +7205 9322 0.5200 +7205 9351 0.8440 +7205 9564 0.9050 +7205 9722 0.5110 +7205 9796 0.4200 +7205 9987 0.4480 +7205 10054 0.4020 +7205 10572 0.4950 +7205 10587 0.6800 +7205 10616 0.5170 +7205 10755 0.5720 +7205 11339 0.8760 +7205 11340 0.7970 +7205 23016 0.5010 +7205 23170 0.5450 +7205 23433 0.4090 +7205 23513 0.4740 +7205 23532 0.7740 +7205 23566 0.4010 +7205 51010 0.5000 +7205 51013 0.5000 +7205 51421 0.4890 +7205 54345 0.4360 +7205 54512 0.4440 +7205 55603 0.5050 +7205 56915 0.5030 +7205 56996 0.4970 +7205 79631 0.4130 +7205 81557 0.4290 +7205 81688 0.4330 +7205 81858 0.7020 +7205 84962 0.5430 +7205 118460 0.4950 +7205 126374 0.6940 +7205 140467 0.5490 +7205 171017 0.5070 +7205 222235 0.4060 +7205 285643 0.4420 +7205 343521 0.5350 +7205 728239 0.4760 +7205 100289255 0.4380 +7216 10024 0.9990 +7216 23137 0.4940 +7216 54780 0.4260 +7216 79677 0.4920 +7216 197370 0.5040 +7216 286053 0.4750 +7216 493861 0.4260 +7220 7222 0.9810 +7220 7223 0.9990 +7220 7224 0.9990 +7220 7225 0.9390 +7220 7226 0.4990 +7220 7295 0.5390 +7220 7299 0.4210 +7220 7412 0.4590 +7220 7442 0.8920 +7220 8911 0.9230 +7220 8912 0.9370 +7220 8913 0.9340 +7220 8989 0.7750 +7220 9033 0.7550 +7220 9311 0.4090 +7220 9365 0.5270 +7220 9454 0.4300 +7220 9456 0.8800 +7220 9709 0.4290 +7220 9780 0.7120 +7220 9914 0.4420 +7220 11075 0.4330 +7220 11237 0.6050 +7220 26577 0.6760 +7220 27039 0.5870 +7220 50801 0.4600 +7220 51393 0.8440 +7220 51669 0.8050 +7220 51806 0.7630 +7220 54207 0.4500 +7220 54795 0.8520 +7220 54822 0.8140 +7220 55107 0.4090 +7220 55283 0.5420 +7220 55503 0.8440 +7220 56302 0.6660 +7220 57113 0.5350 +7220 57192 0.6750 +7220 57620 0.9360 +7220 59341 0.9950 +7220 63895 0.5040 +7220 79054 0.4480 +7220 80036 0.7240 +7220 80228 0.9630 +7220 84876 0.9960 +7220 91860 0.7620 +7220 93129 0.9010 +7220 117144 0.6510 +7220 140803 0.7330 +7220 162514 0.7090 +7220 163688 0.7620 +7220 219670 0.7320 +7220 219931 0.6570 +7220 255231 0.6330 +7222 7223 0.9900 +7222 7224 0.9580 +7222 7225 0.9520 +7222 7226 0.5040 +7222 7442 0.7410 +7222 8912 0.4200 +7222 8913 0.4610 +7222 8989 0.7720 +7222 9423 0.5140 +7222 9780 0.5020 +7222 10156 0.5390 +7222 10524 0.9010 +7222 11237 0.6370 +7222 23236 0.5690 +7222 26499 0.6660 +7222 30820 0.4980 +7222 51393 0.7450 +7222 51806 0.8860 +7222 54795 0.9430 +7222 54822 0.4420 +7222 55283 0.5540 +7222 55503 0.6950 +7222 56302 0.6510 +7222 56704 0.4860 +7222 57113 0.8250 +7222 57158 0.6900 +7222 57192 0.6320 +7222 57620 0.8760 +7222 59341 0.7940 +7222 63895 0.4710 +7222 79054 0.4210 +7222 79800 0.4300 +7222 80036 0.4130 +7222 80228 0.9050 +7222 84876 0.9410 +7222 91860 0.8610 +7222 93129 0.9480 +7222 94233 0.6780 +7222 132332 0.4480 +7222 140803 0.4150 +7222 162514 0.6870 +7222 163688 0.8610 +7222 255231 0.5190 +7222 284612 0.4040 +7223 7224 0.9970 +7223 7225 0.8130 +7223 7226 0.5020 +7223 7430 0.4960 +7223 8048 0.4290 +7223 8911 0.9240 +7223 8912 0.9240 +7223 8913 0.9250 +7223 8989 0.7830 +7223 9033 0.5260 +7223 9368 0.9260 +7223 9780 0.4840 +7223 10206 0.5340 +7223 11237 0.6910 +7223 26526 0.7200 +7223 27039 0.5160 +7223 50801 0.4710 +7223 51350 0.4480 +7223 51393 0.7360 +7223 51806 0.6390 +7223 54207 0.4370 +7223 54795 0.4200 +7223 54822 0.4190 +7223 55283 0.4870 +7223 55503 0.6850 +7223 56302 0.6390 +7223 57113 0.8010 +7223 57192 0.5600 +7223 57620 0.8160 +7223 59341 0.8670 +7223 60496 0.5690 +7223 79054 0.4900 +7223 80228 0.8250 +7223 84876 0.8830 +7223 91404 0.8040 +7223 91860 0.5620 +7223 93129 0.8250 +7223 162514 0.4210 +7223 163688 0.5620 +7223 255231 0.4620 +7223 341640 0.6110 +7224 7225 0.8720 +7224 7226 0.4950 +7224 7295 0.6350 +7224 7827 0.4140 +7224 8911 0.9250 +7224 8912 0.9240 +7224 8913 0.9310 +7224 8989 0.7880 +7224 9033 0.5250 +7224 9368 0.8140 +7224 9423 0.4690 +7224 9456 0.4120 +7224 9478 0.4010 +7224 10277 0.4690 +7224 11075 0.8650 +7224 11237 0.6880 +7224 23229 0.4120 +7224 23413 0.7280 +7224 26526 0.6690 +7224 27039 0.5340 +7224 50801 0.4810 +7224 51393 0.7200 +7224 51806 0.8470 +7224 54207 0.4060 +7224 54795 0.4760 +7224 54822 0.4180 +7224 55283 0.4870 +7224 55503 0.6540 +7224 56302 0.6450 +7224 56850 0.4010 +7224 57113 0.6480 +7224 57192 0.7030 +7224 57620 0.7580 +7224 59341 0.7480 +7224 79054 0.4350 +7224 79868 0.4570 +7224 80036 0.4470 +7224 80228 0.7810 +7224 84687 0.4810 +7224 84876 0.7670 +7224 91404 0.8150 +7224 91860 0.8150 +7224 93129 0.7910 +7224 162514 0.7360 +7224 163688 0.8150 +7224 219670 0.8780 +7224 255231 0.4450 +7224 257397 0.4060 +7224 340596 0.5110 +7225 7226 0.6880 +7225 7442 0.7400 +7225 7490 0.7030 +7225 7827 0.9980 +7225 8542 0.7330 +7225 8654 0.4060 +7225 8788 0.4060 +7225 8989 0.7530 +7225 9351 0.5730 +7225 9365 0.5220 +7225 9780 0.5760 +7225 10206 0.5770 +7225 10572 0.4480 +7225 11237 0.8920 +7225 11346 0.5920 +7225 23557 0.4750 +7225 23607 0.9020 +7225 23621 0.4950 +7225 27235 0.4470 +7225 28514 0.4010 +7225 50485 0.4040 +7225 50507 0.4100 +7225 51004 0.4480 +7225 51196 0.8900 +7225 51393 0.7610 +7225 51806 0.8620 +7225 54587 0.4350 +7225 54795 0.8710 +7225 54822 0.4420 +7225 55243 0.6490 +7225 55283 0.4640 +7225 55503 0.7200 +7225 56302 0.6500 +7225 57107 0.4180 +7225 57113 0.6860 +7225 57192 0.5520 +7225 57620 0.8850 +7225 59341 0.9400 +7225 60496 0.4240 +7225 63895 0.4630 +7225 64423 0.9020 +7225 79054 0.4230 +7225 79800 0.4960 +7225 79934 0.4470 +7225 80036 0.6130 +7225 80228 0.9830 +7225 83478 0.4880 +7225 84623 0.4230 +7225 84876 0.8040 +7225 91860 0.8330 +7225 93129 0.8230 +7225 94233 0.5180 +7225 140803 0.4250 +7225 162514 0.6800 +7225 163688 0.8330 +7225 255231 0.4770 +7226 7442 0.7820 +7226 8505 0.6680 +7226 8989 0.6100 +7226 9033 0.5820 +7226 10960 0.4070 +7226 11237 0.6580 +7226 27039 0.6140 +7226 51393 0.9630 +7226 54084 0.5560 +7226 54822 0.9240 +7226 54936 0.4730 +7226 55283 0.5070 +7226 55503 0.6120 +7226 56302 0.6140 +7226 57192 0.5860 +7226 57620 0.6700 +7226 80228 0.6620 +7226 84876 0.7000 +7226 93129 0.6650 +7226 255231 0.5060 +7227 7329 0.5360 +7227 8655 0.7340 +7227 8667 0.8580 +7227 8932 0.4370 +7227 9241 0.4800 +7227 9734 0.4650 +7227 9759 0.6910 +7227 9839 0.4450 +7227 10013 0.4320 +7227 10014 0.4500 +7227 10243 0.4240 +7227 51564 0.4320 +7227 51701 0.4360 +7227 54796 0.4510 +7227 54815 0.5090 +7227 55734 0.5790 +7227 55888 0.5780 +7227 57459 0.5630 +7227 57504 0.4390 +7227 83933 0.4320 +7227 114788 0.8540 +7227 126321 0.4030 +7227 392255 0.4500 +7227 728378 0.4580 +7247 7257 0.9990 +7247 7268 0.5840 +7247 7336 0.4080 +7247 7385 0.4450 +7247 7458 0.4980 +7247 8518 0.4140 +7247 8533 0.4790 +7247 8562 0.6430 +7247 8575 0.6710 +7247 8852 0.8010 +7247 9255 0.4570 +7247 9343 0.4180 +7247 9412 0.4200 +7247 9512 0.4970 +7247 9692 0.5420 +7247 10175 0.4390 +7247 10248 0.5480 +7247 10438 0.5460 +7247 10472 0.8670 +7247 10556 0.5870 +7247 10557 0.5820 +7247 10694 0.5370 +7247 10775 0.5880 +7247 10799 0.5510 +7247 10940 0.5410 +7247 10946 0.4530 +7247 10978 0.5430 +7247 11051 0.6350 +7247 11102 0.6090 +7247 11171 0.7650 +7247 11321 0.5310 +7247 22916 0.7910 +7247 23405 0.8880 +7247 23435 0.4580 +7247 26523 0.7120 +7247 27044 0.4870 +7247 27161 0.9520 +7247 29102 0.7160 +7247 29789 0.6250 +7247 30014 0.7180 +7247 51031 0.4850 +7247 51367 0.5430 +7247 51493 0.4820 +7247 51534 0.7750 +7247 51699 0.4330 +7247 54487 0.5960 +7247 54913 0.5400 +7247 54931 0.5870 +7247 55236 0.6000 +7247 57576 0.5420 +7247 79897 0.5400 +7247 80746 0.5410 +7247 84271 0.4240 +7247 84950 0.4650 +7247 91408 0.4560 +7247 91860 0.4150 +7247 92399 0.4370 +7247 138716 0.5430 +7247 192669 0.6740 +7247 192670 0.6550 +7247 256691 0.4050 +7247 261726 0.4990 +7247 283989 0.5400 +7247 375316 0.4610 +7247 728712 0.7110 +7248 7249 0.9990 +7248 7266 0.4280 +7248 7268 0.5390 +7248 7337 0.9270 +7248 7403 0.6510 +7248 7404 0.5990 +7248 7430 0.6720 +7248 7529 0.8250 +7248 7531 0.5640 +7248 7532 0.6090 +7248 7533 0.6330 +7248 7534 0.6440 +7248 7942 0.4050 +7248 8045 0.5390 +7248 8195 0.4570 +7248 8242 0.4510 +7248 8312 0.6480 +7248 8320 0.4610 +7248 8408 0.5180 +7248 8409 0.5650 +7248 8451 0.4250 +7248 8607 0.7450 +7248 8624 0.9010 +7248 8637 0.4600 +7248 8649 0.6390 +7248 8660 0.4190 +7248 8665 0.4030 +7248 8678 0.5320 +7248 8725 0.6110 +7248 8864 0.4220 +7248 8900 0.4120 +7248 9024 0.5520 +7248 9093 0.4550 +7248 9098 0.9680 +7248 9140 0.4090 +7248 9360 0.6050 +7248 9361 0.4930 +7248 9474 0.4160 +7248 9528 0.5620 +7248 9531 0.8060 +7248 9532 0.5590 +7248 9675 0.5040 +7248 9681 0.5630 +7248 9743 0.4090 +7248 9776 0.4600 +7248 9821 0.4890 +7248 9868 0.5570 +7248 9978 0.4960 +7248 10000 0.9520 +7248 10273 0.6140 +7248 10294 0.5140 +7248 10325 0.8520 +7248 10398 0.4670 +7248 10460 0.4220 +7248 10471 0.5940 +7248 10525 0.5400 +7248 10533 0.4380 +7248 10542 0.6200 +7248 10574 0.9430 +7248 10575 0.9430 +7248 10576 0.9430 +7248 10598 0.8120 +7248 10641 0.4460 +7248 10670 0.8910 +7248 10693 0.9420 +7248 10694 0.9290 +7248 10728 0.9790 +7248 10769 0.6420 +7248 10808 0.5440 +7248 10856 0.7330 +7248 10910 0.6370 +7248 10963 0.9870 +7248 10971 0.5180 +7248 11080 0.4230 +7248 11140 0.9580 +7248 11145 0.5100 +7248 22824 0.5490 +7248 22948 0.9440 +7248 23135 0.6030 +7248 23234 0.9370 +7248 23264 0.4780 +7248 23331 0.4700 +7248 23341 0.6470 +7248 23411 0.4270 +7248 23645 0.4850 +7248 23753 0.7410 +7248 23770 0.7060 +7248 25789 0.5510 +7248 25822 0.4180 +7248 26353 0.7490 +7248 26548 0.5490 +7248 26973 0.5570 +7248 27018 0.4100 +7248 27244 0.6220 +7248 27330 0.9080 +7248 28956 0.6410 +7248 29066 0.4830 +7248 50509 0.5280 +7248 51082 0.5660 +7248 51182 0.5230 +7248 51256 0.9990 +7248 51398 0.5400 +7248 51422 0.9220 +7248 51726 0.8270 +7248 53632 0.9220 +7248 54431 0.5580 +7248 54461 0.6990 +7248 54468 0.4190 +7248 54541 0.9710 +7248 54788 0.4280 +7248 54970 0.4690 +7248 54979 0.5100 +7248 55004 0.6700 +7248 55011 0.5670 +7248 55172 0.5400 +7248 55240 0.4930 +7248 55466 0.4900 +7248 55615 0.5130 +7248 55664 0.5930 +7248 55735 0.4160 +7248 55780 0.4520 +7248 55898 0.4550 +7248 56984 0.9100 +7248 56990 0.4050 +7248 57003 0.5510 +7248 57110 0.5100 +7248 57521 0.9150 +7248 58528 0.8150 +7248 64121 0.8810 +7248 64223 0.8900 +7248 64400 0.4460 +7248 64798 0.6040 +7248 64837 0.4470 +7248 79109 0.6760 +7248 79657 0.7060 +7248 79726 0.4020 +7248 79735 0.4590 +7248 79738 0.4570 +7248 79982 0.4120 +7248 80273 0.5130 +7248 80331 0.4080 +7248 81570 0.7130 +7248 81572 0.5470 +7248 83667 0.6390 +7248 83752 0.5430 +7248 84140 0.4520 +7248 84219 0.4040 +7248 84335 0.7100 +7248 85358 0.6520 +7248 85379 0.6880 +7248 96459 0.6100 +7248 113444 0.4440 +7248 116835 0.5100 +7248 118461 0.5100 +7248 120103 0.4040 +7248 120379 0.6350 +7248 120526 0.4490 +7248 121268 0.8020 +7248 134266 0.5090 +7248 146862 0.4470 +7248 150160 0.6670 +7248 153129 0.6700 +7248 155051 0.6880 +7248 201163 0.4980 +7248 253260 0.7550 +7248 259217 0.5100 +7248 285282 0.4010 +7248 339416 0.5610 +7248 374407 0.4180 +7248 388633 0.5100 +7248 389541 0.6410 +7248 100885848 0.6180 +7248 100885850 0.6180 +7249 7337 0.9810 +7249 7405 0.5180 +7249 7529 0.9620 +7249 7531 0.7920 +7249 7532 0.8380 +7249 7533 0.8200 +7249 7534 0.9520 +7249 7837 0.4310 +7249 7884 0.4240 +7249 7942 0.5940 +7249 8085 0.4270 +7249 8242 0.4430 +7249 8260 0.5150 +7249 8289 0.4880 +7249 8312 0.8060 +7249 8320 0.4290 +7249 8408 0.7310 +7249 8451 0.4640 +7249 8637 0.4800 +7249 8649 0.6480 +7249 8660 0.4930 +7249 8678 0.6890 +7249 8878 0.5210 +7249 8881 0.4040 +7249 8925 0.4400 +7249 9024 0.5690 +7249 9098 0.9840 +7249 9135 0.7380 +7249 9140 0.5520 +7249 9463 0.5690 +7249 9474 0.6680 +7249 9675 0.4710 +7249 9681 0.7020 +7249 9706 0.5740 +7249 9776 0.6990 +7249 9817 0.4600 +7249 9821 0.8340 +7249 9882 0.4510 +7249 9978 0.4640 +7249 10000 0.9680 +7249 10013 0.4050 +7249 10110 0.4130 +7249 10131 0.6440 +7249 10190 0.5360 +7249 10325 0.9020 +7249 10460 0.7290 +7249 10533 0.6680 +7249 10542 0.6240 +7249 10641 0.7470 +7249 10645 0.5390 +7249 10670 0.9340 +7249 10769 0.5790 +7249 10891 0.5030 +7249 10971 0.8350 +7249 11040 0.4130 +7249 11200 0.4960 +7249 11345 0.4360 +7249 22863 0.5140 +7249 23049 0.5370 +7249 23077 0.6940 +7249 23239 0.5070 +7249 23334 0.4170 +7249 23411 0.8430 +7249 23523 0.4420 +7249 23678 0.4540 +7249 23710 0.4420 +7249 23770 0.6580 +7249 25970 0.5580 +7249 25983 0.4950 +7249 26060 0.6800 +7249 26499 0.5230 +7249 27018 0.5010 +7249 27244 0.8900 +7249 27330 0.9150 +7249 28956 0.7070 +7249 29072 0.4080 +7249 29110 0.6060 +7249 29904 0.4860 +7249 30849 0.4850 +7249 51256 0.9990 +7249 51422 0.9320 +7249 53632 0.9270 +7249 54413 0.4710 +7249 54461 0.9080 +7249 54541 0.9910 +7249 55004 0.7070 +7249 55193 0.4240 +7249 55332 0.4740 +7249 55435 0.4930 +7249 55615 0.5760 +7249 55626 0.4490 +7249 56270 0.4570 +7249 57103 0.4780 +7249 57502 0.4590 +7249 57521 0.9660 +7249 58488 0.4100 +7249 58528 0.9120 +7249 60673 0.5350 +7249 64121 0.8880 +7249 64223 0.9150 +7249 64422 0.4840 +7249 64798 0.7170 +7249 79109 0.8470 +7249 79726 0.4650 +7249 79735 0.7590 +7249 81619 0.4790 +7249 81631 0.5060 +7249 81669 0.5880 +7249 83667 0.7620 +7249 83734 0.4100 +7249 84219 0.5080 +7249 84260 0.4830 +7249 84335 0.8530 +7249 85358 0.5370 +7249 85379 0.7050 +7249 92335 0.5070 +7249 96459 0.5850 +7249 114757 0.4230 +7249 121268 0.8250 +7249 137902 0.4270 +7249 143686 0.4790 +7249 153129 0.7430 +7249 155051 0.7450 +7249 161742 0.4230 +7249 200523 0.5580 +7249 201163 0.7990 +7249 253260 0.9080 +7249 283871 0.4300 +7249 389541 0.6610 +7249 440275 0.4820 +7249 652968 0.4250 +7251 7311 0.9760 +7251 7314 0.9890 +7251 7316 0.9980 +7251 7318 0.6060 +7251 7336 0.4970 +7251 7341 0.4600 +7251 7411 0.4230 +7251 7415 0.4250 +7251 7416 0.5090 +7251 7417 0.4050 +7251 7453 0.4150 +7251 7514 0.7690 +7251 7837 0.5770 +7251 7852 0.4990 +7251 7879 0.6890 +7251 8027 0.9960 +7251 8100 0.4410 +7251 8218 0.4310 +7251 8411 0.5810 +7251 8517 0.5210 +7251 8766 0.7960 +7251 8826 0.6690 +7251 8836 0.7110 +7251 8842 0.6500 +7251 9026 0.4220 +7251 9101 0.4580 +7251 9146 0.9990 +7251 9246 0.4350 +7251 9260 0.4840 +7251 9341 0.4090 +7251 9367 0.5250 +7251 9493 0.4830 +7251 9516 0.8290 +7251 9525 0.9590 +7251 9559 0.5420 +7251 9636 0.6560 +7251 9727 0.4100 +7251 9798 0.6770 +7251 10013 0.4850 +7251 10015 0.9990 +7251 10016 0.9910 +7251 10040 0.8320 +7251 10043 0.7270 +7251 10067 0.8010 +7251 10211 0.8790 +7251 10226 0.5000 +7251 10254 0.9820 +7251 10342 0.5810 +7251 10581 0.4070 +7251 10617 0.4790 +7251 10652 0.4630 +7251 10955 0.4210 +7251 11021 0.7820 +7251 11059 0.6040 +7251 11060 0.5720 +7251 11091 0.4880 +7251 11267 0.9840 +7251 11274 0.5540 +7251 11315 0.5150 +7251 11337 0.5230 +7251 11345 0.6490 +7251 22872 0.4490 +7251 22914 0.5450 +7251 22926 0.4130 +7251 23163 0.6840 +7251 23192 0.4690 +7251 23295 0.8050 +7251 23327 0.7530 +7251 23347 0.4830 +7251 23352 0.4420 +7251 23607 0.6620 +7251 23710 0.6360 +7251 25930 0.9160 +7251 25978 0.9530 +7251 26088 0.5870 +7251 26986 0.6100 +7251 27111 0.7770 +7251 27161 0.6320 +7251 27183 0.9650 +7251 27243 0.9880 +7251 27249 0.4240 +7251 29956 0.4980 +7251 30011 0.6450 +7251 30816 0.6340 +7251 51028 0.9970 +7251 51160 0.9990 +7251 51191 0.5220 +7251 51271 0.9990 +7251 51510 0.9270 +7251 51534 0.9380 +7251 51643 0.5600 +7251 51652 0.9880 +7251 51699 0.5230 +7251 51741 0.4670 +7251 53349 0.6020 +7251 54862 0.4320 +7251 55048 0.9990 +7251 55165 0.9990 +7251 55187 0.4510 +7251 55293 0.6380 +7251 55512 0.5840 +7251 55737 0.6570 +7251 55759 0.6000 +7251 55929 0.6880 +7251 57132 0.9620 +7251 57403 0.4310 +7251 57617 0.5250 +7251 60489 0.5740 +7251 60491 0.4710 +7251 64689 0.5720 +7251 79643 0.9960 +7251 79720 0.9990 +7251 81619 0.4120 +7251 81631 0.4140 +7251 83940 0.4170 +7251 84313 0.9940 +7251 84932 0.4240 +7251 84936 0.6620 +7251 85365 0.6460 +7251 89853 0.9990 +7251 90139 0.4070 +7251 90678 0.9830 +7251 91782 0.9460 +7251 92421 0.9330 +7251 92483 0.8970 +7251 92714 0.9970 +7251 93343 0.9990 +7251 115201 0.4240 +7251 126393 0.7090 +7251 128866 0.9680 +7251 136991 0.8330 +7251 137492 0.9990 +7251 137902 0.5700 +7251 148362 0.4970 +7251 155382 0.9940 +7251 160287 0.9020 +7251 200081 0.8130 +7251 200558 0.4990 +7251 200894 0.4380 +7251 390595 0.5400 +7251 405754 0.6240 +7251 553115 0.4050 +7251 653145 0.6580 +7251 729852 0.5650 +7251 100526767 0.8870 +7252 7253 0.9980 +7252 7276 0.5070 +7252 7432 0.4310 +7252 7434 0.9080 +7252 7849 0.6680 +7252 8022 0.7380 +7252 8820 0.5120 +7252 9095 0.5600 +7252 9248 0.4340 +7252 10587 0.5830 +7252 27283 0.4450 +7252 27286 0.4220 +7252 50506 0.5340 +7252 51665 0.4200 +7252 53919 0.4560 +7252 54331 0.8040 +7252 54749 0.4220 +7252 57105 0.5030 +7252 64111 0.4960 +7252 64843 0.4320 +7252 79924 0.4370 +7252 80712 0.4470 +7252 89884 0.5320 +7252 93659 0.6150 +7252 94115 0.5750 +7252 113091 0.4260 +7252 117579 0.4690 +7252 122876 0.5450 +7252 139760 0.9000 +7252 170589 0.8850 +7252 221391 0.5040 +7252 389434 0.4510 +7252 405753 0.5270 +7252 594857 0.4160 +7253 7432 0.9040 +7253 7849 0.9170 +7253 8718 0.4690 +7253 10672 0.4880 +7253 10999 0.4130 +7253 11200 0.4070 +7253 23405 0.5310 +7253 23551 0.4010 +7253 26191 0.5930 +7253 50506 0.6060 +7253 53373 0.6830 +7253 53905 0.4600 +7253 53919 0.4030 +7253 54331 0.8000 +7253 55768 0.4210 +7253 57105 0.4740 +7253 57616 0.4050 +7253 90527 0.4600 +7253 115111 0.4680 +7253 115352 0.5150 +7253 122876 0.7250 +7253 145508 0.4850 +7253 153769 0.6080 +7253 160728 0.4400 +7253 169792 0.5170 +7253 170589 0.6570 +7253 221391 0.4780 +7253 389434 0.7080 +7253 405753 0.6590 +7253 653519 0.5990 +7253 100423062 0.9010 +7253 102723407 0.9060 +7257 7375 0.5480 +7257 8575 0.6240 +7257 9039 0.4270 +7257 9419 0.4390 +7257 9453 0.4350 +7257 9604 0.4890 +7257 9692 0.5510 +7257 9887 0.4100 +7257 10142 0.5620 +7257 10213 0.4840 +7257 10248 0.5460 +7257 10438 0.7320 +7257 10482 0.4070 +7257 10556 0.6470 +7257 10557 0.5460 +7257 10775 0.5860 +7257 10799 0.5460 +7257 10940 0.5400 +7257 10978 0.5430 +7257 11102 0.5590 +7257 23224 0.5540 +7257 23236 0.6400 +7257 23335 0.5220 +7257 23353 0.6520 +7257 23405 0.8370 +7257 25777 0.5730 +7257 26523 0.7080 +7257 27044 0.4840 +7257 27161 0.9580 +7257 27185 0.9150 +7257 29102 0.6660 +7257 51367 0.5760 +7257 51535 0.4590 +7257 54487 0.5750 +7257 54913 0.5400 +7257 54931 0.5900 +7257 55173 0.5340 +7257 55815 0.8840 +7257 57226 0.4450 +7257 58493 0.5310 +7257 63915 0.4140 +7257 79677 0.4090 +7257 79897 0.5400 +7257 80143 0.4570 +7257 80746 0.5920 +7257 90423 0.4180 +7257 91612 0.4520 +7257 114932 0.7000 +7257 138716 0.5430 +7257 140710 0.5730 +7257 145508 0.4970 +7257 147700 0.6470 +7257 192669 0.6640 +7257 192670 0.6530 +7257 261726 0.4340 +7257 283989 0.5400 +7257 284467 0.4600 +7257 286053 0.4720 +7257 440730 0.4090 +7257 727851 0.4400 +7258 7404 0.6110 +7258 7543 0.4270 +7258 7544 0.7500 +7258 8284 0.5690 +7258 8287 0.6800 +7258 8338 0.4020 +7258 8349 0.4040 +7258 8653 0.6740 +7258 9081 0.6000 +7258 9083 0.7090 +7258 9084 0.7390 +7258 9085 0.7380 +7258 9086 0.5950 +7258 9087 0.5410 +7258 27288 0.5700 +7258 27316 0.6230 +7258 27328 0.8420 +7258 57054 0.5530 +7258 57055 0.5910 +7258 57135 0.4310 +7258 79366 0.4190 +7258 81669 0.6510 +7258 83259 0.9240 +7258 85453 0.4010 +7258 86614 0.7720 +7258 90655 0.5830 +7258 90665 0.8990 +7258 94239 0.4080 +7258 124912 0.4230 +7258 140883 0.5120 +7258 159163 0.6290 +7258 253175 0.4690 +7258 353513 0.7280 +7258 378948 0.4920 +7258 378949 0.5810 +7258 378951 0.5250 +7258 442862 0.5980 +7258 442867 0.6960 +7258 442868 0.6960 +7259 8019 0.4280 +7259 8361 0.4110 +7259 23270 0.4730 +7259 23411 0.6070 +7259 23613 0.6930 +7259 57062 0.5850 +7259 57592 0.4680 +7259 64061 0.7860 +7259 94239 0.4090 +7260 9342 0.4950 +7260 9781 0.5820 +7260 10228 0.4590 +7260 10890 0.4090 +7260 23040 0.4120 +7260 25972 0.4130 +7260 51112 0.6460 +7260 51542 0.9290 +7260 51659 0.4180 +7260 54221 0.4250 +7260 55088 0.7170 +7260 55275 0.9230 +7260 55299 0.4810 +7260 55610 0.9430 +7260 55738 0.4380 +7260 55763 0.4240 +7260 79228 0.4010 +7260 81570 0.4730 +7260 84062 0.6270 +7260 146923 0.4950 +7260 153657 0.4590 +7260 246243 0.4570 +7260 283987 0.4570 +7260 285605 0.4800 +7260 728597 0.5130 +7262 8788 0.4880 +7262 8910 0.4790 +7262 9077 0.4190 +7262 10077 0.7390 +7262 10078 0.8850 +7262 10664 0.4650 +7262 10919 0.4120 +7262 23089 0.6050 +7262 26499 0.6050 +7262 51294 0.4650 +7262 55089 0.4190 +7262 55607 0.4280 +7262 57713 0.4480 +7262 64083 0.4030 +7262 114879 0.7290 +7262 266812 0.5460 +7263 7295 0.4690 +7263 7317 0.4400 +7263 7318 0.4210 +7263 8192 0.4620 +7263 8883 0.4430 +7263 8991 0.8390 +7263 9039 0.4800 +7263 9040 0.6020 +7263 9054 0.9850 +7263 9060 0.5730 +7263 9061 0.5680 +7263 10054 0.4490 +7263 10055 0.4150 +7263 10533 0.4390 +7263 10632 0.5560 +7263 10939 0.5950 +7263 22921 0.5090 +7263 23474 0.9820 +7263 23479 0.7520 +7263 23743 0.4090 +7263 27304 0.9950 +7263 29074 0.5800 +7263 29984 0.5550 +7263 51540 0.7130 +7263 54205 0.4510 +7263 55034 0.8080 +7263 55210 0.5700 +7263 55236 0.4120 +7263 55773 0.4660 +7263 56267 0.9090 +7263 57128 0.6450 +7263 58472 0.9520 +7263 79587 0.4630 +7263 79876 0.4780 +7263 80308 0.4110 +7263 80728 0.4050 +7263 81605 0.7140 +7263 90353 0.6590 +7263 92483 0.9110 +7263 93627 0.4780 +7263 94033 0.5040 +7263 137362 0.9620 +7263 160287 0.9110 +7263 257202 0.5180 +7263 348180 0.5120 +7263 493869 0.5320 +7263 100130890 0.4310 +7263 100131187 0.7290 +7264 7311 0.5440 +7264 7332 0.4070 +7264 7358 0.7710 +7264 7360 0.4050 +7264 7818 0.4840 +7264 7866 0.4090 +7264 8662 0.4430 +7264 8790 0.9650 +7264 8813 0.4540 +7264 8818 0.4070 +7264 8833 0.4170 +7264 8891 0.5190 +7264 8893 0.5200 +7264 9246 0.5420 +7264 9349 0.6230 +7264 9553 0.4890 +7264 9801 0.4770 +7264 10280 0.4420 +7264 10399 0.4750 +7264 10941 0.4440 +7264 11161 0.4350 +7264 11222 0.4340 +7264 11224 0.5990 +7264 22934 0.4560 +7264 23275 0.4380 +7264 23464 0.5570 +7264 23483 0.6010 +7264 23509 0.4870 +7264 23521 0.4490 +7264 23584 0.4370 +7264 25873 0.5470 +7264 26589 0.4420 +7264 27430 0.4520 +7264 28998 0.4560 +7264 29093 0.4380 +7264 29880 0.4650 +7264 29925 0.5900 +7264 29926 0.5520 +7264 51021 0.5000 +7264 51065 0.4720 +7264 51069 0.4680 +7264 51073 0.4710 +7264 51081 0.4740 +7264 51121 0.4610 +7264 51149 0.4640 +7264 51160 0.4570 +7264 51264 0.4620 +7264 51478 0.5150 +7264 54039 0.5300 +7264 55168 0.4740 +7264 55173 0.5220 +7264 55272 0.4970 +7264 55316 0.5110 +7264 55343 0.6170 +7264 55644 0.4230 +7264 55651 0.4110 +7264 57129 0.4830 +7264 60488 0.4760 +7264 63875 0.4620 +7264 63931 0.5240 +7264 64841 0.4920 +7264 64960 0.4830 +7264 64963 0.4800 +7264 64965 0.5320 +7264 64968 0.5250 +7264 64969 0.5080 +7264 64975 0.4580 +7264 64976 0.4490 +7264 64979 0.4330 +7264 64981 0.4400 +7264 64983 0.4680 +7264 65263 0.5270 +7264 80347 0.4010 +7264 81858 0.6950 +7264 84232 0.5030 +7264 84545 0.4330 +7264 92196 0.4080 +7264 114987 0.4670 +7264 126402 0.4660 +7264 132949 0.4070 +7264 140032 0.4270 +7264 171222 0.9020 +7264 197258 0.8250 +7264 200895 0.4350 +7264 200916 0.4630 +7264 285855 0.4040 +7264 387129 0.4030 +7264 729020 0.5260 +7264 100505478 0.4030 +7264 100526842 0.4310 +7264 100529239 0.4860 +7265 7266 0.7320 +7265 7268 0.4580 +7265 9217 0.4690 +7265 9218 0.8190 +7265 9868 0.4230 +7265 10193 0.7850 +7265 10399 0.4800 +7265 10569 0.4790 +7265 10728 0.4190 +7265 10910 0.4370 +7265 10963 0.6630 +7265 23170 0.4290 +7265 23208 0.4210 +7265 23770 0.4110 +7265 51020 0.4010 +7265 51538 0.4060 +7265 54491 0.4180 +7265 55153 0.4380 +7265 55660 0.5010 +7265 55967 0.4820 +7265 57415 0.4360 +7265 79657 0.4870 +7265 80176 0.5860 +7265 80196 0.4760 +7265 123169 0.5420 +7265 134510 0.4750 +7266 8079 0.5950 +7266 8290 0.4160 +7266 8356 0.4310 +7266 9528 0.4310 +7266 9529 0.8300 +7266 9530 0.6240 +7266 9532 0.8410 +7266 9703 0.4400 +7266 9810 0.4140 +7266 10049 0.5280 +7266 10131 0.4610 +7266 10213 0.4530 +7266 10273 0.7130 +7266 10294 0.7490 +7266 10525 0.5640 +7266 10576 0.4680 +7266 10598 0.5600 +7266 10728 0.5110 +7266 10808 0.5870 +7266 10856 0.4170 +7266 10910 0.7680 +7266 10953 0.8670 +7266 10963 0.7460 +7266 11080 0.4200 +7266 11140 0.5110 +7266 11145 0.4260 +7266 11315 0.4290 +7266 22824 0.8080 +7266 22826 0.4330 +7266 23212 0.4120 +7266 23230 0.5430 +7266 23277 0.5760 +7266 23341 0.5340 +7266 23551 0.4420 +7266 23640 0.5670 +7266 25789 0.4260 +7266 25822 0.5560 +7266 26098 0.4600 +7266 27000 0.4460 +7266 27101 0.6110 +7266 49856 0.5500 +7266 51182 0.7390 +7266 51314 0.4600 +7266 51501 0.4660 +7266 54431 0.4130 +7266 54788 0.6930 +7266 54832 0.4800 +7266 54979 0.4260 +7266 55011 0.4220 +7266 55466 0.5900 +7266 55699 0.4600 +7266 55735 0.5570 +7266 55764 0.6240 +7266 55830 0.4690 +7266 56521 0.5040 +7266 57082 0.5160 +7266 57110 0.4260 +7266 57407 0.4120 +7266 79738 0.4380 +7266 79962 0.4050 +7266 79982 0.5830 +7266 80218 0.5000 +7266 80273 0.6680 +7266 80331 0.6150 +7266 81570 0.5250 +7266 85479 0.5830 +7266 116835 0.6410 +7266 118461 0.4260 +7266 134266 0.4520 +7266 150353 0.4090 +7266 151525 0.4010 +7266 157680 0.5270 +7266 165721 0.4630 +7266 202052 0.5180 +7266 259217 0.6530 +7266 283237 0.6920 +7266 284403 0.4470 +7266 339416 0.4780 +7266 388633 0.4260 +7266 548645 0.4150 +7267 7322 0.5440 +7267 7485 0.4140 +7267 9666 0.4380 +7267 9683 0.4430 +7267 10000 0.4120 +7267 10202 0.8740 +7267 10241 0.4060 +7267 10311 0.5110 +7267 10477 0.4380 +7267 10598 0.5860 +7267 11113 0.5460 +7267 29882 0.4190 +7267 51227 0.5450 +7267 51608 0.6190 +7267 51626 0.4140 +7267 54469 0.4340 +7267 64750 0.5030 +7267 79594 0.4200 +7267 81570 0.4680 +7267 123169 0.4790 +7267 151613 0.4010 +7267 257160 0.5950 +7267 345456 0.6720 +7267 375189 0.6730 +7267 401024 0.4150 +7268 8520 0.4700 +7268 8602 0.4140 +7268 8784 0.6000 +7268 8892 0.4060 +7268 9360 0.5180 +7268 9533 0.4090 +7268 9559 0.6990 +7268 9648 0.4540 +7268 10131 0.5500 +7268 10277 0.4110 +7268 10598 0.6500 +7268 10728 0.6050 +7268 10963 0.4990 +7268 10969 0.4870 +7268 11103 0.4100 +7268 11140 0.7560 +7268 23378 0.4160 +7268 25973 0.6080 +7268 25983 0.4180 +7268 26098 0.6380 +7268 26973 0.6720 +7268 29110 0.5320 +7268 29765 0.4970 +7268 29889 0.4200 +7268 29901 0.4860 +7268 29945 0.4080 +7268 29960 0.4580 +7268 30009 0.5670 +7268 30062 0.6650 +7268 50943 0.6080 +7268 51028 0.5880 +7268 51118 0.4290 +7268 51236 0.9910 +7268 51318 0.4410 +7268 51575 0.4160 +7268 51699 0.7450 +7268 54606 0.4710 +7268 54623 0.4070 +7268 55011 0.6180 +7268 55140 0.4970 +7268 55153 0.4010 +7268 55239 0.4480 +7268 55341 0.4330 +7268 55664 0.6000 +7268 55737 0.7290 +7268 55795 0.5560 +7268 57217 0.4200 +7268 64332 0.4920 +7268 79954 0.5700 +7268 79989 0.4710 +7268 83660 0.4790 +7268 84154 0.4300 +7268 84301 0.5000 +7268 84365 0.5660 +7268 91875 0.6100 +7268 92856 0.4160 +7268 117246 0.4340 +7268 123169 0.4990 +7268 125488 0.4010 +7268 150274 0.4350 +7268 283237 0.5970 +7268 283489 0.6030 +7268 374977 0.4070 +7270 7343 0.7590 +7270 8331 0.5150 +7270 8334 0.5150 +7270 8337 0.5680 +7270 8338 0.5680 +7270 8340 0.5220 +7270 8341 0.5220 +7270 8342 0.5220 +7270 8345 0.5220 +7270 8347 0.5220 +7270 8348 0.5220 +7270 8349 0.5870 +7270 8356 0.6000 +7270 8361 0.7110 +7270 8467 0.8260 +7270 8819 0.5040 +7270 8914 0.5840 +7270 8970 0.5220 +7270 9013 0.7050 +7270 9014 0.6750 +7270 9015 0.7010 +7270 9045 0.4240 +7270 9112 0.5040 +7270 9219 0.5310 +7270 9533 0.6300 +7270 10284 0.5040 +7270 10849 0.6510 +7270 10919 0.5960 +7270 11176 0.9770 +7270 11201 0.6450 +7270 11335 0.5490 +7270 23029 0.5210 +7270 23309 0.5330 +7270 25885 0.6630 +7270 25942 0.5390 +7270 29080 0.9050 +7270 29115 0.5100 +7270 30834 0.6570 +7270 51082 0.6100 +7270 51742 0.5370 +7270 53615 0.5230 +7270 54145 0.5220 +7270 54700 0.5430 +7270 54815 0.4990 +7270 55766 0.5150 +7270 57459 0.4990 +7270 57504 0.5150 +7270 64425 0.7290 +7270 64426 0.5090 +7270 79101 0.7050 +7270 79595 0.5090 +7270 79685 0.5040 +7270 84172 0.6180 +7270 85236 0.5230 +7270 94239 0.5330 +7270 128312 0.5220 +7270 221830 0.6450 +7270 255626 0.5220 +7270 284119 0.7430 +7270 404672 0.5250 +7270 474382 0.5150 +7270 653604 0.5970 +7272 7298 0.6700 +7272 7443 0.4460 +7272 7465 0.4730 +7272 7703 0.9020 +7272 8208 0.4540 +7272 8239 0.4110 +7272 8317 0.4860 +7272 8318 0.7870 +7272 8379 0.9870 +7272 8438 0.6240 +7272 8452 0.4350 +7272 8881 0.5810 +7272 8900 0.4340 +7272 9055 0.8700 +7272 9133 0.9600 +7272 9134 0.4740 +7272 9156 0.8960 +7272 9184 0.9130 +7272 9212 0.7840 +7272 9232 0.8350 +7272 9319 0.7590 +7272 9401 0.4710 +7272 9493 0.8330 +7272 9585 0.7770 +7272 9587 0.4020 +7272 9611 0.4300 +7272 9700 0.9450 +7272 9735 0.8470 +7272 9768 0.8100 +7272 9787 0.9770 +7272 9793 0.4890 +7272 9824 0.7710 +7272 9833 0.9310 +7272 9837 0.5650 +7272 9918 0.5820 +7272 9928 0.9040 +7272 10024 0.6580 +7272 10051 0.6870 +7272 10112 0.9230 +7272 10403 0.9920 +7272 10459 0.6530 +7272 10460 0.7360 +7272 10579 0.5140 +7272 10592 0.7330 +7272 10615 0.8900 +7272 10635 0.8380 +7272 10643 0.6910 +7272 10721 0.4320 +7272 10733 0.8800 +7272 10744 0.6040 +7272 10926 0.6190 +7272 11004 0.9550 +7272 11065 0.9110 +7272 11130 0.7660 +7272 11140 0.4300 +7272 11169 0.7380 +7272 11183 0.4140 +7272 11339 0.7770 +7272 22955 0.6510 +7272 22974 0.9350 +7272 23076 0.4120 +7272 23137 0.4450 +7272 23310 0.4080 +7272 23397 0.8860 +7272 23594 0.4890 +7272 24137 0.9210 +7272 25788 0.5020 +7272 26271 0.5730 +7272 26586 0.8680 +7272 27152 0.4210 +7272 29028 0.6070 +7272 29089 0.5650 +7272 29127 0.8450 +7272 29128 0.5540 +7272 29765 0.7130 +7272 29766 0.6350 +7272 29767 0.6870 +7272 51053 0.5100 +7272 51203 0.9260 +7272 51343 0.6290 +7272 51512 0.5720 +7272 51514 0.7870 +7272 51659 0.5090 +7272 54069 0.4940 +7272 54443 0.7040 +7272 54478 0.6830 +7272 54742 0.6970 +7272 54821 0.8050 +7272 54880 0.4520 +7272 54892 0.6150 +7272 54908 0.4640 +7272 55010 0.6670 +7272 55055 0.8070 +7272 55063 0.7390 +7272 55143 0.9460 +7272 55165 0.9450 +7272 55215 0.5780 +7272 55247 0.6300 +7272 55320 0.8440 +7272 55355 0.9290 +7272 55388 0.7350 +7272 55632 0.5050 +7272 55635 0.9310 +7272 55723 0.5300 +7272 55732 0.5180 +7272 55789 0.6200 +7272 55839 0.7000 +7272 56992 0.9610 +7272 57082 0.7740 +7272 57405 0.8780 +7272 57650 0.5350 +7272 57697 0.8190 +7272 63967 0.5670 +7272 64105 0.6610 +7272 64151 0.9730 +7272 64946 0.5060 +7272 79019 0.5970 +7272 79075 0.5620 +7272 79677 0.4360 +7272 79682 0.6290 +7272 79733 0.7860 +7272 79801 0.6920 +7272 79866 0.5190 +7272 79915 0.5180 +7272 79935 0.4030 +7272 80010 0.6240 +7272 80119 0.5440 +7272 80198 0.4120 +7272 81610 0.6350 +7272 81620 0.5010 +7272 81624 0.6060 +7272 81930 0.9270 +7272 83461 0.8580 +7272 83540 0.9890 +7272 83879 0.5040 +7272 83903 0.5390 +7272 83990 0.4570 +7272 84057 0.7280 +7272 84733 0.5610 +7272 84930 0.7730 +7272 89839 0.5910 +7272 90381 0.5630 +7272 90417 0.4710 +7272 91442 0.4990 +7272 113115 0.6450 +7272 113130 0.7340 +7272 114799 0.4030 +7272 128239 0.5150 +7272 144455 0.5790 +7272 146206 0.7630 +7272 146909 0.6620 +7272 146956 0.5250 +7272 147841 0.6860 +7272 150468 0.6520 +7272 151246 0.6650 +7272 151648 0.8370 +7272 152098 0.7390 +7272 157313 0.8720 +7272 157570 0.6890 +7272 158763 0.4380 +7272 166979 0.6750 +7272 203068 0.4760 +7272 220134 0.7310 +7272 221150 0.8700 +7272 259266 0.9570 +7272 283431 0.5030 +7272 285643 0.4130 +7272 345930 0.5800 +7272 348654 0.4290 +7272 387103 0.5910 +7272 554282 0.4630 +7272 653820 0.6040 +7272 728833 0.5320 +7272 729533 0.4480 +7272 100532731 0.9630 +7273 7277 0.4160 +7273 7414 0.7160 +7273 7431 0.8480 +7273 7450 0.4680 +7273 7454 0.4340 +7273 7852 0.4050 +7273 8048 0.9950 +7273 8289 0.4780 +7273 8291 0.7840 +7273 8312 0.4170 +7273 8407 0.4250 +7273 8424 0.5580 +7273 8452 0.4390 +7273 8557 0.9990 +7273 8735 0.4270 +7273 8736 0.7280 +7273 8878 0.9300 +7273 8913 0.4240 +7273 9172 0.9130 +7273 9211 0.4590 +7273 9499 0.7490 +7273 9531 0.6280 +7273 9948 0.4300 +7273 10021 0.4480 +7273 10049 0.4560 +7273 10060 0.6860 +7273 10324 0.6790 +7273 10345 0.6050 +7273 10398 0.4170 +7273 10529 0.8640 +7273 10585 0.5650 +7273 10627 0.4380 +7273 10687 0.5980 +7273 10772 0.4850 +7273 10930 0.5070 +7273 11155 0.8180 +7273 22927 0.4010 +7273 22954 0.5430 +7273 23052 0.4260 +7273 23224 0.5060 +7273 23336 0.5100 +7273 23345 0.7060 +7273 23363 0.9720 +7273 23481 0.4080 +7273 23499 0.4250 +7273 23604 0.4380 +7273 23676 0.4540 +7273 25777 0.4310 +7273 26047 0.5130 +7273 26287 0.9690 +7273 26353 0.4120 +7273 26548 0.5210 +7273 27063 0.9880 +7273 27129 0.4270 +7273 27154 0.4190 +7273 27295 0.7590 +7273 27445 0.6220 +7273 29119 0.5130 +7273 29765 0.8300 +7273 29766 0.6700 +7273 29767 0.7030 +7273 29895 0.7100 +7273 29954 0.5190 +7273 51422 0.6840 +7273 51778 0.7820 +7273 51806 0.8090 +7273 53353 0.6090 +7273 54768 0.5130 +7273 54790 0.4260 +7273 55624 0.4890 +7273 56203 0.4450 +7273 56896 0.4380 +7273 56950 0.4020 +7273 57152 0.6380 +7273 57158 0.5280 +7273 57159 0.9400 +7273 58498 0.5560 +7273 58508 0.5040 +7273 58529 0.7920 +7273 64478 0.4540 +7273 78992 0.4650 +7273 79147 0.6190 +7273 79188 0.6260 +7273 79633 0.5070 +7273 79776 0.5710 +7273 79933 0.4230 +7273 80013 0.5050 +7273 81631 0.4250 +7273 83660 0.4640 +7273 84033 0.9980 +7273 84107 0.6210 +7273 84295 0.4480 +7273 84665 0.8020 +7273 84675 0.9600 +7273 84676 0.9980 +7273 84700 0.4440 +7273 85366 0.7570 +7273 85477 0.5780 +7273 91807 0.4180 +7273 91860 0.7620 +7273 92737 0.4560 +7273 94025 0.7890 +7273 94137 0.4020 +7273 103910 0.4060 +7273 114788 0.7240 +7273 114907 0.6040 +7273 120114 0.4530 +7273 124093 0.4300 +7273 129303 0.4470 +7273 129446 0.7670 +7273 131377 0.4570 +7273 140453 0.4820 +7273 146862 0.6870 +7273 150572 0.6660 +7273 157922 0.4180 +7273 163688 0.7700 +7273 165904 0.6320 +7273 200539 0.9260 +7273 202333 0.8440 +7273 203859 0.7030 +7273 282996 0.9210 +7273 285025 0.7950 +7273 339855 0.4970 +7273 340156 0.7720 +7273 375790 0.6790 +7273 399664 0.4740 +7273 442721 0.6260 +7274 8529 0.6320 +7274 9962 0.6040 +7274 9963 0.4370 +7274 10658 0.5060 +7274 23064 0.4820 +7274 27335 0.6480 +7274 54840 0.5400 +7274 56652 0.6940 +7274 57626 0.4760 +7274 64374 0.5060 +7274 85300 0.9120 +7274 158471 0.7680 +7275 7277 0.4230 +7275 7289 0.4020 +7275 7356 0.5040 +7275 7416 0.4940 +7275 7494 0.4120 +7275 7837 0.4070 +7275 7846 0.4370 +7275 8100 0.4250 +7275 8347 0.4750 +7275 8481 0.4090 +7275 8522 0.5490 +7275 9600 0.4550 +7275 10002 0.4560 +7275 10013 0.4370 +7275 10142 0.4930 +7275 10461 0.5040 +7275 22852 0.5610 +7275 25970 0.4190 +7275 51807 0.4020 +7275 65975 0.4700 +7275 79047 0.4660 +7275 79608 0.4210 +7275 79861 0.4950 +7275 83552 0.5810 +7275 84790 0.4860 +7275 112714 0.4570 +7275 113457 0.4760 +7275 114294 0.5440 +7275 129787 0.4340 +7275 132789 0.4350 +7275 144124 0.4300 +7275 150465 0.4100 +7275 151742 0.4260 +7275 200894 0.5670 +7275 257194 0.4350 +7275 261726 0.5470 +7275 343035 0.6420 +7276 7306 0.4020 +7276 7415 0.4280 +7276 7448 0.6680 +7276 7498 0.4070 +7276 7917 0.5830 +7276 8029 0.4650 +7276 8170 0.4930 +7276 8455 0.4240 +7276 8518 0.4060 +7276 8542 0.4800 +7276 8564 0.7420 +7276 8578 0.4110 +7276 9227 0.4450 +7276 9445 0.5740 +7276 9480 0.4460 +7276 9622 0.4750 +7276 9962 0.5110 +7276 9963 0.4780 +7276 10321 0.4150 +7276 10465 0.4120 +7276 10478 0.5060 +7276 10587 0.5320 +7276 22883 0.4080 +7276 23473 0.6370 +7276 51004 0.7100 +7276 53919 0.5530 +7276 54959 0.4110 +7276 55186 0.5060 +7276 55764 0.4710 +7276 55821 0.5710 +7276 55937 0.4410 +7276 58510 0.4260 +7276 63826 0.6360 +7276 64220 0.8180 +7276 79001 0.4560 +7276 79628 0.6460 +7276 80314 0.4240 +7276 84275 0.5100 +7276 84466 0.4800 +7276 84706 0.4350 +7276 84735 0.4150 +7276 85477 0.8230 +7276 116844 0.6510 +7276 117247 0.4480 +7276 255738 0.4280 +7276 390874 0.5600 +7276 100528017 0.8230 +7277 7278 0.4420 +7277 7280 0.9950 +7277 7411 0.6300 +7277 7414 0.6110 +7277 7415 0.6180 +7277 7416 0.5220 +7277 7447 0.4530 +7277 7450 0.4750 +7277 7846 0.9470 +7277 7879 0.6900 +7277 8404 0.4460 +7277 8407 0.6280 +7277 8766 0.6150 +7277 8878 0.4190 +7277 8976 0.4370 +7277 9181 0.9060 +7277 9201 0.5440 +7277 9217 0.5170 +7277 9493 0.4100 +7277 9657 0.4170 +7277 9782 0.6220 +7277 9793 0.5650 +7277 9798 0.5310 +7277 9948 0.4690 +7277 10013 0.6170 +7277 10044 0.4270 +7277 10096 0.4110 +7277 10133 0.7370 +7277 10212 0.4760 +7277 10376 0.6760 +7277 10381 0.9930 +7277 10382 0.9830 +7277 10383 0.9910 +7277 10471 0.6370 +7277 10522 0.4260 +7277 10553 0.5290 +7277 10574 0.6900 +7277 10575 0.7040 +7277 10576 0.6850 +7277 10693 0.7460 +7277 10694 0.6700 +7277 10806 0.4760 +7277 10982 0.5430 +7277 11127 0.5220 +7277 11337 0.6500 +7277 11345 0.6220 +7277 22919 0.4390 +7277 22924 0.4860 +7277 22927 0.4260 +7277 22948 0.6640 +7277 23052 0.4750 +7277 23064 0.4150 +7277 23192 0.5970 +7277 23354 0.4990 +7277 23363 0.5110 +7277 23435 0.5330 +7277 23704 0.6540 +7277 23710 0.6260 +7277 25978 0.7050 +7277 27183 0.5100 +7277 27243 0.5070 +7277 29110 0.4960 +7277 29978 0.6120 +7277 51143 0.7390 +7277 51175 0.5150 +7277 51314 0.5060 +7277 51652 0.5030 +7277 51807 0.4770 +7277 54101 0.4250 +7277 54801 0.4990 +7277 54930 0.5060 +7277 55142 0.6720 +7277 55147 0.4120 +7277 55559 0.4990 +7277 57552 0.4190 +7277 57679 0.5430 +7277 64221 0.5480 +7277 79441 0.4990 +7277 79643 0.5000 +7277 79645 0.4300 +7277 79659 0.7420 +7277 79861 0.5480 +7277 79866 0.4990 +7277 79884 0.7220 +7277 80086 0.5170 +7277 80208 0.4320 +7277 81027 0.9640 +7277 81631 0.6770 +7277 83473 0.4020 +7277 83547 0.6510 +7277 84557 0.5800 +7277 84617 0.9690 +7277 84790 0.7780 +7277 90952 0.4410 +7277 91782 0.4990 +7277 92421 0.6330 +7277 93323 0.4990 +7277 112714 0.4100 +7277 113457 0.8880 +7277 115106 0.5650 +7277 116225 0.7500 +7277 116840 0.7500 +7277 117177 0.4990 +7277 120892 0.4180 +7277 128866 0.5040 +7277 136332 0.5070 +7277 138716 0.4450 +7277 150465 0.4470 +7277 151651 0.4410 +7277 153562 0.9000 +7277 197335 0.6530 +7277 200014 0.4990 +7277 203068 0.9940 +7277 203228 0.5700 +7277 221496 0.5470 +7277 255394 0.5810 +7277 260334 0.7550 +7277 338382 0.6610 +7277 339416 0.4280 +7277 345651 0.4120 +7277 347688 0.9630 +7277 347733 0.9680 +7277 374969 0.4080 +7277 400916 0.6230 +7277 440738 0.5800 +7277 728378 0.6050 +7277 728642 0.5620 +7278 7280 0.7130 +7278 7411 0.5750 +7278 7846 0.4150 +7278 9201 0.5440 +7278 9793 0.5270 +7278 9798 0.4990 +7278 10376 0.4100 +7278 10381 0.7120 +7278 10382 0.7140 +7278 10383 0.7160 +7278 10471 0.5780 +7278 10529 0.4180 +7278 10574 0.5880 +7278 10575 0.5730 +7278 10576 0.5780 +7278 10693 0.5860 +7278 10694 0.5810 +7278 22846 0.4310 +7278 22924 0.4540 +7278 22948 0.5730 +7278 25978 0.5480 +7278 27183 0.5000 +7278 27243 0.4990 +7278 51175 0.5100 +7278 51314 0.4980 +7278 51652 0.4990 +7278 51807 0.4530 +7278 54101 0.4220 +7278 64328 0.4370 +7278 79643 0.5010 +7278 79805 0.4380 +7278 79861 0.4070 +7278 80086 0.4250 +7278 81027 0.7110 +7278 84517 0.4680 +7278 84617 0.7110 +7278 84790 0.5700 +7278 91782 0.4990 +7278 92421 0.4990 +7278 112714 0.4200 +7278 113457 0.5390 +7278 128866 0.5000 +7278 136332 0.5070 +7278 150465 0.5300 +7278 151651 0.4410 +7278 197335 0.6530 +7278 200014 0.4990 +7278 203068 0.5400 +7278 221496 0.5470 +7278 260334 0.7550 +7278 339416 0.4280 +7278 347688 0.7610 +7278 347733 0.7080 +7278 374969 0.4490 +7280 7296 0.4680 +7280 7358 0.4600 +7280 7384 0.4310 +7280 7411 0.5400 +7280 7414 0.4170 +7280 7431 0.5640 +7280 7450 0.4470 +7280 7531 0.6010 +7280 7534 0.4770 +7280 7846 0.9990 +7280 7879 0.7100 +7280 7915 0.4670 +7280 8361 0.4420 +7280 8517 0.4720 +7280 8655 0.6260 +7280 8974 0.5030 +7280 9181 0.9010 +7280 9201 0.5350 +7280 9381 0.4980 +7280 9500 0.5630 +7280 9577 0.4030 +7280 9601 0.4140 +7280 9657 0.4210 +7280 9793 0.6440 +7280 9798 0.5150 +7280 10013 0.5810 +7280 10015 0.4030 +7280 10051 0.4170 +7280 10190 0.4660 +7280 10300 0.7690 +7280 10376 0.9990 +7280 10381 0.8450 +7280 10382 0.7850 +7280 10383 0.8890 +7280 10471 0.5450 +7280 10574 0.9280 +7280 10575 0.9170 +7280 10576 0.9600 +7280 10693 0.6510 +7280 10694 0.9560 +7280 10916 0.5150 +7280 10982 0.4950 +7280 11104 0.4200 +7280 11151 0.4670 +7280 22846 0.4680 +7280 22919 0.5150 +7280 22924 0.4460 +7280 22948 0.9300 +7280 23090 0.4160 +7280 23122 0.4760 +7280 23558 0.4190 +7280 24139 0.7730 +7280 25794 0.4380 +7280 25978 0.5170 +7280 27019 0.4910 +7280 27031 0.4830 +7280 27044 0.4200 +7280 27130 0.4490 +7280 27183 0.5450 +7280 27243 0.5110 +7280 27436 0.6550 +7280 51143 0.6890 +7280 51314 0.4730 +7280 51398 0.7500 +7280 51652 0.5000 +7280 51762 0.6520 +7280 51807 0.9830 +7280 55835 0.9250 +7280 55893 0.4830 +7280 56339 0.5590 +7280 57761 0.4410 +7280 64499 0.5960 +7280 64714 0.4130 +7280 79031 0.6520 +7280 79643 0.4990 +7280 79659 0.7550 +7280 79805 0.4280 +7280 79861 0.9780 +7280 80086 0.7180 +7280 81027 0.4880 +7280 81551 0.9170 +7280 81557 0.6310 +7280 83473 0.4400 +7280 83547 0.6640 +7280 84172 0.4350 +7280 84617 0.7020 +7280 84790 0.9900 +7280 91782 0.4990 +7280 91875 0.6230 +7280 92421 0.4990 +7280 92906 0.4160 +7280 112714 0.9780 +7280 113457 0.9780 +7280 116225 0.6510 +7280 120892 0.5640 +7280 127833 0.4440 +7280 128866 0.5000 +7280 133690 0.5160 +7280 136332 0.4590 +7280 143425 0.7160 +7280 150465 0.9530 +7280 151651 0.4390 +7280 197335 0.6260 +7280 200014 0.5840 +7280 203068 0.8000 +7280 221496 0.5450 +7280 260334 0.4050 +7280 338382 0.6500 +7280 347688 0.5210 +7280 347733 0.9330 +7280 374969 0.4410 +7280 728378 0.7680 +7283 7529 0.4650 +7283 7846 0.5920 +7283 8636 0.7290 +7283 8651 0.4260 +7283 8766 0.5940 +7283 9169 0.4410 +7283 9172 0.4050 +7283 9212 0.5020 +7283 9662 0.8600 +7283 9738 0.8430 +7283 9793 0.5230 +7283 10015 0.4670 +7283 10133 0.5120 +7283 10142 0.6030 +7283 10210 0.5400 +7283 10300 0.7370 +7283 10382 0.5380 +7283 10383 0.4520 +7283 10403 0.4510 +7283 10426 0.9990 +7283 10460 0.4060 +7283 10564 0.4040 +7283 10615 0.5220 +7283 10733 0.9040 +7283 10844 0.9990 +7283 11104 0.6180 +7283 22832 0.7780 +7283 22897 0.4280 +7283 22924 0.4180 +7283 22981 0.8600 +7283 22994 0.4110 +7283 22995 0.5920 +7283 23322 0.4110 +7283 23354 0.8520 +7283 23386 0.5990 +7283 23774 0.4600 +7283 25886 0.4530 +7283 25897 0.6350 +7283 25923 0.5130 +7283 26059 0.7170 +7283 27175 0.9810 +7283 27229 0.9990 +7283 29789 0.5350 +7283 29922 0.8760 +7283 51060 0.8000 +7283 51175 0.5130 +7283 51199 0.6550 +7283 51366 0.4250 +7283 51377 0.4400 +7283 51592 0.4280 +7283 54801 0.9410 +7283 54820 0.5940 +7283 54875 0.7850 +7283 54930 0.8400 +7283 55125 0.5900 +7283 55142 0.8410 +7283 55308 0.4320 +7283 55559 0.8160 +7283 55755 0.7020 +7283 55835 0.9730 +7283 57787 0.6980 +7283 64225 0.5130 +7283 64682 0.5410 +7283 79187 0.5510 +7283 79441 0.8390 +7283 79866 0.5520 +7283 79902 0.5710 +7283 80097 0.9910 +7283 80184 0.5410 +7283 80776 0.5230 +7283 81565 0.4170 +7283 83856 0.5490 +7283 84617 0.5490 +7283 84790 0.4300 +7283 85378 0.9990 +7283 90990 0.4280 +7283 92609 0.4450 +7283 93323 0.8740 +7283 114791 0.9990 +7283 115106 0.8890 +7283 116840 0.6730 +7283 117177 0.4990 +7283 120892 0.5220 +7283 121441 0.9880 +7283 153241 0.4910 +7283 163786 0.8250 +7283 203068 0.6290 +7283 259266 0.5160 +7283 282809 0.4060 +7283 282991 0.5770 +7283 284403 0.6910 +7283 375686 0.6660 +7283 440145 0.9980 +7283 653784 0.9540 +7283 728642 0.5400 +7284 7384 0.9830 +7284 7385 0.8180 +7284 7386 0.7530 +7284 7389 0.4700 +7284 7403 0.7400 +7284 7404 0.7400 +7284 7407 0.5050 +7284 7415 0.5350 +7284 7416 0.4830 +7284 7818 0.9490 +7284 8050 0.4190 +7284 8078 0.5100 +7284 8192 0.8110 +7284 8225 0.4230 +7284 8242 0.6400 +7284 8277 0.4990 +7284 8284 0.6370 +7284 8382 0.4420 +7284 8402 0.6070 +7284 8531 0.4070 +7284 8565 0.6250 +7284 8663 0.5770 +7284 8666 0.4570 +7284 8678 0.4330 +7284 8697 0.4310 +7284 8801 0.5090 +7284 8802 0.7650 +7284 8803 0.5680 +7284 8833 0.7450 +7284 9060 0.7780 +7284 9086 0.8850 +7284 9093 0.4280 +7284 9131 0.8020 +7284 9140 0.9460 +7284 9172 0.5980 +7284 9255 0.4260 +7284 9343 0.9140 +7284 9349 0.9980 +7284 9361 0.5880 +7284 9377 0.5340 +7284 9380 0.4330 +7284 9399 0.4710 +7284 9474 0.9410 +7284 9512 0.6580 +7284 9533 0.8990 +7284 9553 0.9990 +7284 9617 0.6120 +7284 9669 0.7070 +7284 9801 0.9990 +7284 9804 0.4370 +7284 9858 0.9130 +7284 10056 0.4610 +7284 10102 0.9990 +7284 10128 0.6430 +7284 10131 0.4660 +7284 10155 0.5690 +7284 10201 0.4510 +7284 10240 0.9170 +7284 10352 0.4710 +7284 10423 0.4330 +7284 10452 0.7540 +7284 10469 0.6850 +7284 10473 0.9160 +7284 10492 0.4270 +7284 10573 0.9350 +7284 10575 0.4010 +7284 10576 0.4070 +7284 10594 0.4040 +7284 10667 0.6320 +7284 10730 0.4360 +7284 10765 0.6370 +7284 10768 0.5440 +7284 10797 0.4260 +7284 10845 0.5540 +7284 10884 0.9130 +7284 10935 0.5080 +7284 10939 0.5550 +7284 10988 0.4740 +7284 10989 0.5740 +7284 11128 0.8360 +7284 11222 0.9970 +7284 11224 0.9980 +7284 11232 0.4180 +7284 11273 0.6390 +7284 11315 0.6140 +7284 11331 0.9110 +7284 22907 0.4880 +7284 22929 0.4230 +7284 22984 0.9780 +7284 23107 0.9430 +7284 23135 0.7440 +7284 23173 0.4690 +7284 23203 0.5460 +7284 23204 0.9230 +7284 23252 0.4010 +7284 23382 0.5250 +7284 23395 0.6510 +7284 23405 0.4110 +7284 23476 0.5100 +7284 23478 0.4190 +7284 23521 0.9640 +7284 23586 0.5020 +7284 23589 0.4480 +7284 23640 0.9130 +7284 23645 0.4980 +7284 25813 0.5160 +7284 25821 0.5460 +7284 25828 0.6300 +7284 25885 0.8080 +7284 25970 0.5910 +7284 25973 0.4810 +7284 26164 0.8930 +7284 26284 0.7320 +7284 26289 0.5110 +7284 26330 0.5260 +7284 26471 0.4410 +7284 26539 0.4430 +7284 26589 0.9210 +7284 26995 0.4630 +7284 27068 0.5050 +7284 27254 0.4070 +7284 28957 0.9040 +7284 28973 0.9170 +7284 28977 0.9150 +7284 28998 0.9960 +7284 29074 0.9260 +7284 29083 0.4590 +7284 29088 0.9720 +7284 29093 0.9980 +7284 29102 0.4230 +7284 29789 0.5510 +7284 29922 0.4420 +7284 29927 0.7700 +7284 29960 0.8610 +7284 29968 0.5310 +7284 30968 0.6410 +7284 50808 0.5350 +7284 51021 0.9990 +7284 51023 0.9190 +7284 51067 0.5510 +7284 51069 0.9980 +7284 51073 0.9980 +7284 51079 0.4300 +7284 51081 0.9990 +7284 51087 0.4070 +7284 51106 0.4170 +7284 51116 0.9930 +7284 51121 0.9490 +7284 51149 0.9530 +7284 51154 0.9820 +7284 51179 0.4250 +7284 51204 0.5790 +7284 51253 0.9380 +7284 51258 0.9080 +7284 51263 0.9090 +7284 51264 0.9990 +7284 51314 0.5890 +7284 51318 0.8980 +7284 51373 0.9030 +7284 51422 0.4050 +7284 51444 0.4230 +7284 51520 0.5810 +7284 51642 0.9130 +7284 51649 0.9180 +7284 51650 0.9130 +7284 51727 0.5160 +7284 53632 0.4050 +7284 54148 0.9380 +7284 54205 0.9090 +7284 54363 0.4250 +7284 54460 0.9150 +7284 54516 0.5940 +7284 54534 0.9020 +7284 54931 0.5140 +7284 54938 0.5580 +7284 54941 0.5060 +7284 54948 0.9950 +7284 54995 0.4490 +7284 54998 0.9390 +7284 55037 0.9390 +7284 55052 0.9990 +7284 55054 0.9620 +7284 55143 0.7150 +7284 55157 0.5550 +7284 55168 0.9260 +7284 55173 0.9980 +7284 55176 0.7630 +7284 55178 0.4230 +7284 55210 0.5520 +7284 55239 0.8090 +7284 55272 0.9850 +7284 55293 0.4280 +7284 55316 0.9560 +7284 55591 0.4490 +7284 55644 0.4110 +7284 55651 0.4240 +7284 55687 0.6310 +7284 55699 0.6080 +7284 55703 0.8200 +7284 55846 0.4110 +7284 55911 0.6450 +7284 56648 0.5010 +7284 56945 0.9880 +7284 56965 0.4760 +7284 57038 0.6180 +7284 57129 0.9170 +7284 57136 0.6240 +7284 57176 0.4740 +7284 57469 0.5150 +7284 57505 0.5440 +7284 57506 0.4800 +7284 60488 0.9400 +7284 60528 0.4610 +7284 60558 0.4760 +7284 63875 0.9990 +7284 63931 0.9960 +7284 64087 0.5330 +7284 64111 0.8790 +7284 64146 0.4470 +7284 64216 0.4820 +7284 64374 0.9090 +7284 64432 0.9200 +7284 64928 0.9250 +7284 64949 0.9160 +7284 64951 0.9120 +7284 64960 0.9950 +7284 64963 0.9970 +7284 64965 0.9990 +7284 64968 0.9990 +7284 64969 0.9980 +7284 64975 0.9190 +7284 64976 0.9420 +7284 64978 0.9170 +7284 64979 0.9990 +7284 64981 0.9130 +7284 64983 0.9990 +7284 65003 0.9940 +7284 65005 0.9990 +7284 65008 0.9880 +7284 65080 0.9600 +7284 65121 0.7170 +7284 65122 0.7170 +7284 65993 0.9590 +7284 78988 0.8980 +7284 79039 0.5160 +7284 79072 0.6550 +7284 79587 0.4770 +7284 79590 0.9960 +7284 79631 0.8900 +7284 79668 0.4760 +7284 79671 0.9930 +7284 79727 0.4100 +7284 79728 0.7260 +7284 79874 0.6700 +7284 80222 0.4520 +7284 80273 0.5930 +7284 80308 0.8250 +7284 80324 0.6070 +7284 80347 0.4550 +7284 80832 0.4010 +7284 81341 0.4980 +7284 83752 0.5040 +7284 83858 0.4180 +7284 83932 0.5100 +7284 83985 0.5330 +7284 84076 0.4990 +7284 84134 0.6860 +7284 84172 0.8180 +7284 84311 0.9420 +7284 84340 0.7000 +7284 84545 0.9220 +7284 84701 0.6190 +7284 84705 0.6290 +7284 84901 0.4210 +7284 85476 0.9650 +7284 87178 0.6960 +7284 90480 0.9300 +7284 90701 0.4080 +7284 91300 0.4980 +7284 91574 0.5220 +7284 91893 0.5670 +7284 92170 0.8510 +7284 92259 0.5480 +7284 92399 0.7970 +7284 92483 0.4530 +7284 92609 0.4220 +7284 92935 0.4350 +7284 112817 0.7910 +7284 112869 0.5690 +7284 115416 0.8860 +7284 116540 0.9160 +7284 116541 0.9090 +7284 118487 0.9050 +7284 120892 0.5410 +7284 122481 0.5110 +7284 122622 0.5430 +7284 122704 0.9110 +7284 123263 0.9060 +7284 124454 0.5730 +7284 124989 0.4220 +7284 124995 0.9210 +7284 125170 0.6370 +7284 126328 0.4330 +7284 126402 0.9710 +7284 128308 0.9070 +7284 129831 0.4060 +7284 130752 0.4230 +7284 130916 0.8380 +7284 134266 0.5260 +7284 139341 0.6020 +7284 140801 0.9100 +7284 142940 0.4140 +7284 143244 0.5010 +7284 158067 0.5110 +7284 160287 0.4440 +7284 196294 0.4510 +7284 219402 0.4930 +7284 219927 0.9990 +7284 221264 0.5110 +7284 254042 0.6510 +7284 284131 0.4600 +7284 285521 0.4460 +7284 285855 0.9450 +7284 343068 0.7170 +7284 343070 0.7170 +7284 347487 0.9000 +7284 374291 0.5890 +7284 387129 0.9400 +7284 387338 0.8280 +7284 387712 0.4690 +7284 389421 0.4070 +7284 390999 0.7170 +7284 391002 0.7170 +7284 400735 0.7170 +7284 400736 0.7170 +7284 440560 0.7170 +7284 440561 0.7170 +7284 441873 0.7170 +7284 641776 0.8360 +7284 643909 0.8360 +7284 645359 0.7170 +7284 653619 0.7170 +7284 654364 0.5400 +7284 728524 0.8360 +7284 728689 0.5080 +7284 729528 0.7170 +7284 100287482 0.9000 +7284 100505478 0.9390 +7284 100507607 0.4470 +7284 100526842 0.9710 +7284 100996746 0.8360 +7284 101929983 0.7170 +7284 105180390 0.8360 +7284 105180391 0.8360 +7284 127898561 0.8000 +7286 7791 0.7340 +7286 9313 0.6620 +7286 9622 0.6670 +7286 9910 0.6220 +7286 10117 0.9810 +7286 23620 0.6450 +7286 23637 0.7510 +7286 24144 0.9840 +7286 25833 0.4610 +7286 54780 0.4890 +7286 54959 0.5110 +7286 57497 0.4030 +7286 79677 0.6280 +7286 401138 0.6300 +7287 7301 0.7360 +7287 7399 0.6270 +7287 7401 0.5790 +7287 7439 0.6460 +7287 8218 0.4160 +7287 8481 0.5740 +7287 8842 0.5610 +7287 9129 0.6850 +7287 9227 0.8940 +7287 9626 0.5420 +7287 9657 0.6320 +7287 9742 0.4900 +7287 10002 0.7670 +7287 10210 0.6860 +7287 10461 0.9490 +7287 10594 0.6610 +7287 23020 0.6360 +7287 23322 0.5200 +7287 23746 0.9210 +7287 25794 0.7520 +7287 26121 0.7420 +7287 50939 0.7470 +7287 54714 0.4070 +7287 54887 0.4030 +7287 55812 0.8600 +7287 55975 0.6000 +7287 56995 0.4340 +7287 57010 0.6010 +7287 57096 0.8700 +7287 64218 0.6700 +7287 64802 0.5270 +7287 79809 0.4560 +7287 79947 0.5060 +7287 80184 0.7110 +7287 84140 0.5980 +7287 92211 0.4810 +7287 94137 0.4880 +7287 130557 0.7320 +7287 145226 0.8930 +7287 157657 0.7110 +7287 167691 0.7260 +7287 343035 0.7790 +7287 346007 0.8010 +7287 375298 0.8350 +7287 388939 0.7880 +7287 401124 0.4370 +7287 768206 0.7770 +7288 9742 0.5060 +7288 10343 0.4870 +7288 23770 0.4110 +7288 51715 0.4690 +7288 54623 0.5210 +7288 54753 0.4030 +7288 55101 0.4310 +7288 55764 0.6230 +7288 56163 0.4600 +7288 57119 0.4850 +7288 57539 0.4310 +7288 57728 0.5810 +7288 79577 0.7650 +7288 79809 0.5010 +7288 83716 0.4230 +7288 83853 0.4630 +7288 83893 0.4610 +7288 89869 0.4530 +7288 93550 0.4960 +7288 117144 0.4400 +7288 123169 0.5970 +7288 126298 0.4880 +7288 138724 0.6290 +7288 139604 0.5310 +7288 145942 0.5070 +7288 148014 0.5140 +7288 150159 0.4550 +7288 161142 0.5780 +7288 164684 0.4890 +7288 200232 0.5730 +7288 257169 0.5740 +7288 283461 0.5960 +7288 337879 0.4040 +7288 386618 0.4010 +7289 8100 0.7170 +7289 8481 0.4060 +7289 8650 0.4800 +7289 9742 0.9720 +7289 10425 0.4950 +7289 10445 0.4780 +7289 10672 0.4220 +7289 11020 0.6510 +7289 11127 0.6490 +7289 22897 0.4750 +7289 23210 0.4200 +7289 23322 0.4180 +7289 23363 0.4270 +7289 23365 0.4240 +7289 23411 0.6080 +7289 23432 0.9190 +7289 23770 0.6140 +7289 25820 0.4280 +7289 26005 0.4290 +7289 26160 0.4420 +7289 27077 0.4140 +7289 28981 0.5420 +7289 50832 0.5470 +7289 51098 0.5330 +7289 51444 0.4580 +7289 51668 0.4500 +7289 51684 0.6700 +7289 51715 0.7950 +7289 54876 0.4350 +7289 55081 0.5010 +7289 55616 0.5610 +7289 55764 0.9740 +7289 56623 0.5450 +7289 56852 0.4630 +7289 56912 0.4780 +7289 57539 0.9520 +7289 57560 0.5340 +7289 57728 0.9520 +7289 60468 0.4990 +7289 79600 0.4190 +7289 79659 0.4280 +7289 79809 0.9890 +7289 79837 0.4410 +7289 80045 0.4130 +7289 80173 0.5770 +7289 80184 0.4340 +7289 84078 0.4200 +7289 84335 0.4540 +7289 90410 0.5710 +7289 112752 0.9150 +7289 114928 0.4370 +7289 129138 0.8340 +7289 200894 0.7340 +7289 346562 0.4240 +7289 374654 0.4820 +7289 388695 0.6100 +7290 7353 0.6420 +7290 7468 0.4120 +7290 7625 0.7830 +7290 7913 0.5690 +7290 8091 0.5040 +7290 8208 0.5210 +7290 8214 0.7620 +7290 8216 0.4360 +7290 8218 0.5870 +7290 8220 0.7350 +7290 8290 0.5070 +7290 8337 0.4980 +7290 8338 0.4990 +7290 8349 0.6240 +7290 8350 0.7120 +7290 8352 0.7310 +7290 8353 0.7470 +7290 8356 0.6910 +7290 8358 0.4120 +7290 8361 0.7010 +7290 8368 0.4020 +7290 8369 0.4100 +7290 8479 0.8670 +7290 8968 0.4310 +7290 9739 0.5620 +7290 9874 0.5200 +7290 9993 0.8630 +7290 10036 0.4860 +7290 11011 0.6290 +7290 11188 0.4960 +7290 23468 0.4360 +7290 23523 0.9990 +7290 25842 0.9990 +7290 26168 0.6450 +7290 28988 0.5420 +7290 29855 0.9990 +7290 51141 0.4370 +7290 51750 0.4710 +7290 55723 0.9860 +7290 57634 0.6280 +7290 80851 0.4530 +7290 81611 0.4400 +7290 84942 0.5110 +7290 85236 0.6250 +7290 85359 0.7560 +7290 126961 0.6330 +7290 254048 0.8810 +7290 340096 0.6050 +7290 391769 0.5940 +7290 440093 0.5150 +7290 440686 0.4990 +7290 653604 0.4930 +7291 7431 0.8570 +7291 7468 0.5600 +7291 7471 0.4490 +7291 7474 0.5540 +7291 7528 0.6310 +7291 7837 0.5010 +7291 7852 0.4640 +7291 8061 0.5360 +7291 8091 0.4900 +7291 8313 0.6030 +7291 8361 0.5590 +7291 8817 0.4680 +7291 8822 0.4320 +7291 8823 0.4450 +7291 8842 0.5430 +7291 8850 0.8320 +7291 8878 0.5830 +7291 8945 0.7390 +7291 8991 0.4160 +7291 9076 0.4270 +7291 9219 0.5440 +7291 9314 0.4890 +7291 9429 0.4160 +7291 9464 0.5490 +7291 9518 0.5240 +7291 9839 0.8300 +7291 9908 0.9600 +7291 10013 0.4040 +7291 10158 0.5160 +7291 10273 0.6040 +7291 10413 0.4260 +7291 10538 0.4450 +7291 10631 0.6360 +7291 10891 0.7650 +7291 11059 0.5310 +7291 11091 0.6590 +7291 11274 0.5910 +7291 11279 0.4270 +7291 22795 0.4360 +7291 22943 0.4020 +7291 23476 0.6890 +7291 26281 0.4350 +7291 27006 0.4270 +7291 27022 0.4460 +7291 27250 0.5760 +7291 29126 0.4060 +7291 51176 0.7030 +7291 51341 0.4330 +7291 55553 0.5020 +7291 55636 0.6120 +7291 57167 0.4300 +7291 57634 0.4070 +7291 58495 0.4210 +7291 59269 0.5700 +7291 60529 0.4720 +7291 79923 0.8240 +7291 79977 0.4070 +7291 84654 0.5660 +7291 89780 0.4490 +7291 117581 0.9390 +7291 133522 0.5320 +7291 137902 0.4720 +7291 152559 0.4120 +7291 333929 0.5880 +7291 387893 0.6620 +7291 100133941 0.5700 +7291 100506658 0.4540 +7291 100532731 0.8840 +7292 7293 0.9990 +7292 7852 0.4150 +7292 8600 0.4400 +7292 8718 0.6610 +7292 8740 0.5130 +7292 8744 0.9070 +7292 8764 0.7330 +7292 8784 0.7740 +7292 8995 0.8800 +7292 9308 0.4740 +7292 9466 0.4150 +7292 9966 0.6130 +7292 10219 0.4160 +7292 10630 0.6970 +7292 10666 0.6430 +7292 10673 0.4810 +7292 11126 0.4350 +7292 11148 0.4950 +7292 23308 0.8310 +7292 26191 0.4390 +7292 27242 0.4970 +7292 29126 0.7900 +7292 29851 0.9420 +7292 30009 0.4790 +7292 50616 0.4310 +7292 50943 0.6360 +7292 51284 0.4520 +7292 54106 0.4180 +7292 54899 0.7350 +7292 55024 0.7060 +7292 55504 0.4510 +7292 57661 0.5580 +7292 79679 0.5300 +7292 80380 0.7750 +7292 80381 0.8130 +7292 83648 0.5030 +7292 84868 0.5790 +7292 84962 0.4240 +7292 85480 0.8170 +7292 90865 0.6000 +7292 112616 0.4440 +7292 126259 0.4460 +7292 151888 0.5370 +7292 169355 0.4200 +7292 201633 0.4520 +7292 284194 0.4110 +7292 654346 0.4110 +7293 7535 0.4520 +7293 7852 0.6490 +7293 8320 0.4660 +7293 8718 0.6510 +7293 8740 0.6280 +7293 8744 0.9970 +7293 8764 0.8380 +7293 8771 0.4430 +7293 8784 0.9590 +7293 8793 0.4560 +7293 8797 0.4990 +7293 8995 0.8770 +7293 9034 0.5120 +7293 9966 0.6410 +7293 10010 0.4240 +7293 10219 0.5240 +7293 10232 0.5070 +7293 10538 0.4780 +7293 10563 0.4540 +7293 10572 0.5050 +7293 10666 0.4450 +7293 10673 0.4570 +7293 10850 0.4220 +7293 10870 0.5470 +7293 11126 0.5130 +7293 11148 0.4780 +7293 22807 0.4700 +7293 22914 0.6470 +7293 23308 0.9860 +7293 23495 0.4530 +7293 27087 0.4340 +7293 29126 0.8600 +7293 29851 0.9210 +7293 30009 0.6380 +7293 50615 0.6170 +7293 50616 0.4600 +7293 50943 0.7540 +7293 51284 0.4220 +7293 51744 0.5210 +7293 54106 0.4710 +7293 54542 0.4470 +7293 55024 0.4320 +7293 57509 0.5210 +7293 59067 0.5060 +7293 64115 0.6020 +7293 79679 0.5160 +7293 80321 0.4180 +7293 80380 0.8040 +7293 80381 0.8710 +7293 84868 0.7780 +7293 84957 0.5930 +7293 85480 0.7200 +7293 90865 0.4310 +7293 115650 0.6110 +7293 126259 0.4870 +7293 140885 0.5730 +7293 149041 0.4760 +7293 151888 0.6740 +7293 168400 0.4770 +7293 169355 0.5350 +7293 201633 0.7090 +7293 259197 0.4110 +7293 284194 0.4640 +7293 346689 0.5650 +7293 654346 0.4690 +7294 7409 0.9600 +7294 7410 0.9190 +7294 7454 0.5340 +7294 8027 0.5210 +7294 8074 0.4100 +7294 8277 0.4620 +7294 8317 0.4230 +7294 8503 0.9110 +7294 8841 0.4130 +7294 9047 0.6410 +7294 9402 0.7850 +7294 9942 0.4160 +7294 10014 0.4130 +7294 10254 0.5310 +7294 10451 0.9460 +7294 26228 0.6200 +7294 26499 0.6260 +7294 27033 0.5160 +7294 27040 0.6330 +7294 27071 0.4530 +7294 30009 0.7620 +7294 51806 0.4100 +7294 84076 0.4110 +7294 84240 0.4010 +7294 91860 0.4110 +7294 129138 0.5250 +7294 140738 0.4370 +7294 149420 0.4640 +7294 163688 0.4110 +7294 340419 0.4030 +7294 390714 0.5480 +7295 7296 0.9990 +7295 7298 0.4120 +7295 7322 0.6220 +7295 7329 0.5790 +7295 7334 0.5030 +7295 7335 0.4050 +7295 7341 0.6540 +7295 7351 0.4450 +7295 7386 0.5110 +7295 7391 0.4720 +7295 7398 0.4360 +7295 7415 0.5440 +7295 7416 0.5320 +7295 7498 0.6190 +7295 7514 0.4270 +7295 7531 0.4750 +7295 7532 0.5190 +7295 7534 0.6180 +7295 7837 0.6140 +7295 8277 0.4540 +7295 8452 0.6420 +7295 8454 0.4110 +7295 8508 0.4320 +7295 8726 0.4780 +7295 8775 0.5180 +7295 9064 0.5650 +7295 9097 0.5710 +7295 9131 0.6940 +7295 9352 0.5990 +7295 9403 0.7650 +7295 9446 0.7220 +7295 9448 0.4180 +7295 9451 0.4020 +7295 9563 0.6870 +7295 9567 0.4700 +7295 9588 0.8180 +7295 9601 0.6120 +7295 9695 0.4410 +7295 9817 0.7710 +7295 9973 0.5350 +7295 9978 0.5470 +7295 9997 0.5270 +7295 10059 0.4350 +7295 10063 0.4570 +7295 10105 0.4480 +7295 10130 0.7610 +7295 10190 0.7380 +7295 10213 0.6380 +7295 10437 0.6950 +7295 10539 0.6570 +7295 10549 0.8890 +7295 10551 0.6470 +7295 10587 0.8940 +7295 10628 0.9990 +7295 10891 0.4810 +7295 10907 0.6960 +7295 10935 0.8460 +7295 10954 0.4070 +7295 10961 0.7390 +7295 10987 0.8390 +7295 11186 0.4500 +7295 11315 0.6090 +7295 11345 0.4370 +7295 22921 0.8530 +7295 22926 0.4080 +7295 22928 0.5740 +7295 22949 0.4080 +7295 23071 0.8950 +7295 23410 0.4580 +7295 23411 0.5950 +7295 23480 0.4590 +7295 23510 0.4770 +7295 23530 0.5120 +7295 23542 0.4480 +7295 23657 0.5460 +7295 25822 0.6060 +7295 25824 0.9810 +7295 25828 0.9670 +7295 25946 0.5200 +7295 26092 0.6300 +7295 27035 0.5750 +7295 27306 0.6790 +7295 30001 0.6970 +7295 50484 0.8110 +7295 50506 0.4850 +7295 50507 0.6200 +7295 50508 0.4100 +7295 51022 0.8080 +7295 51060 0.7950 +7295 51061 0.4410 +7295 51075 0.4230 +7295 51218 0.8280 +7295 51314 0.7470 +7295 51327 0.4100 +7295 51377 0.6140 +7295 51714 0.8400 +7295 51726 0.4360 +7295 51734 0.7570 +7295 51806 0.5160 +7295 53905 0.5970 +7295 54205 0.7350 +7295 54431 0.7760 +7295 54495 0.4600 +7295 55757 0.4410 +7295 55829 0.6680 +7295 56605 0.6180 +7295 56658 0.5500 +7295 56729 0.4430 +7295 56886 0.4780 +7295 57190 0.5250 +7295 57561 0.6960 +7295 58472 0.4720 +7295 58515 0.6320 +7295 59286 0.4040 +7295 60678 0.4750 +7295 64083 0.5550 +7295 64359 0.8360 +7295 64714 0.8220 +7295 65018 0.4010 +7295 79031 0.6290 +7295 79048 0.5110 +7295 79400 0.4840 +7295 80142 0.7250 +7295 80273 0.4460 +7295 81542 0.8580 +7295 81570 0.4040 +7295 81631 0.4070 +7295 83642 0.5300 +7295 84076 0.4560 +7295 84299 0.5500 +7295 84790 0.4120 +7295 84817 0.8470 +7295 85465 0.4620 +7295 90441 0.4470 +7295 91860 0.5010 +7295 92552 0.4180 +7295 114112 0.9420 +7295 114548 0.8530 +7295 115861 0.7600 +7295 119391 0.5800 +7295 120892 0.4450 +7295 121506 0.6950 +7295 131474 0.7200 +7295 133482 0.5750 +7295 133558 0.4160 +7295 137902 0.6070 +7295 140606 0.5870 +7295 140809 0.8180 +7295 145258 0.5040 +7295 158046 0.6140 +7295 163688 0.5010 +7295 169714 0.7760 +7295 202658 0.5500 +7295 253827 0.6800 +7295 257202 0.9090 +7295 280636 0.5840 +7295 348303 0.5620 +7295 387082 0.5860 +7295 404636 0.4340 +7295 493869 0.9140 +7295 653361 0.4760 +7296 7298 0.6410 +7296 7358 0.4290 +7296 7837 0.6360 +7296 7846 0.5600 +7296 8050 0.7720 +7296 8277 0.6060 +7296 8452 0.4750 +7296 8528 0.4360 +7296 8644 0.4200 +7296 8801 0.5460 +7296 8802 0.7130 +7296 8803 0.5480 +7296 8878 0.4830 +7296 9352 0.5020 +7296 9380 0.6230 +7296 9403 0.7590 +7296 9446 0.4520 +7296 9563 0.8120 +7296 9588 0.5580 +7296 9817 0.6900 +7296 9973 0.5490 +7296 10130 0.6940 +7296 10498 0.4070 +7296 10499 0.5600 +7296 10539 0.5330 +7296 10549 0.6780 +7296 10587 0.9380 +7296 10628 0.5070 +7296 10797 0.6180 +7296 10935 0.8120 +7296 10994 0.5530 +7296 11315 0.4930 +7296 22921 0.4550 +7296 22928 0.9730 +7296 22929 0.9430 +7296 22934 0.4930 +7296 22949 0.4120 +7296 23054 0.4120 +7296 23137 0.4440 +7296 23657 0.6640 +7296 25824 0.7660 +7296 25828 0.9420 +7296 26061 0.5380 +7296 26227 0.4890 +7296 27306 0.4760 +7296 29948 0.6390 +7296 29958 0.4530 +7296 29968 0.4020 +7296 50507 0.4290 +7296 51022 0.7110 +7296 51091 0.5430 +7296 51218 0.7400 +7296 51268 0.4280 +7296 51314 0.4710 +7296 51540 0.9420 +7296 51601 0.4120 +7296 51714 0.7700 +7296 51734 0.7410 +7296 54205 0.5270 +7296 54431 0.4780 +7296 54802 0.4280 +7296 55066 0.4500 +7296 55364 0.5450 +7296 55526 0.6340 +7296 55753 0.6340 +7296 55829 0.7700 +7296 56267 0.9180 +7296 56965 0.4260 +7296 57016 0.5190 +7296 57190 0.7140 +7296 58472 0.4260 +7296 58515 0.7570 +7296 60678 0.5820 +7296 64359 0.5550 +7296 64837 0.4660 +7296 65220 0.6660 +7296 79048 0.7440 +7296 79668 0.4260 +7296 79718 0.4060 +7296 79728 0.4250 +7296 79912 0.4230 +7296 80205 0.4070 +7296 81542 0.4060 +7296 81567 0.4760 +7296 83642 0.7170 +7296 84076 0.6060 +7296 84203 0.4780 +7296 84790 0.5180 +7296 84817 0.6820 +7296 84883 0.5200 +7296 84955 0.6310 +7296 85441 0.4210 +7296 85465 0.6460 +7296 87769 0.5030 +7296 96764 0.4430 +7296 114112 0.9040 +7296 118672 0.4380 +7296 137682 0.4540 +7296 137902 0.6310 +7296 140606 0.6850 +7296 140809 0.8930 +7296 200205 0.5230 +7296 200895 0.5240 +7296 203068 0.5150 +7296 257202 0.8740 +7296 280636 0.7260 +7296 340390 0.4540 +7296 348303 0.6340 +7296 441024 0.5020 +7296 493861 0.6890 +7296 493869 0.8740 +7296 730249 0.4500 +7297 7311 0.5310 +7297 7314 0.5320 +7297 7316 0.5320 +7297 7321 0.5580 +7297 7322 0.5710 +7297 7323 0.5650 +7297 7409 0.6980 +7297 7410 0.4630 +7297 8027 0.9110 +7297 8065 0.6060 +7297 8243 0.4080 +7297 8503 0.6700 +7297 8517 0.4760 +7297 8554 0.4400 +7297 8651 0.9990 +7297 8660 0.5050 +7297 8809 0.5190 +7297 8835 0.8420 +7297 9021 0.9990 +7297 9034 0.5100 +7297 9180 0.8530 +7297 9244 0.5550 +7297 9246 0.4840 +7297 9306 0.7380 +7297 9466 0.9270 +7297 9616 0.5840 +7297 9636 0.6100 +7297 9655 0.8140 +7297 9832 0.4360 +7297 9846 0.5320 +7297 10019 0.4760 +7297 10045 0.6960 +7297 10148 0.5430 +7297 10254 0.9370 +7297 10318 0.4590 +7297 10379 0.9870 +7297 10399 0.4440 +7297 10451 0.4790 +7297 10673 0.4060 +7297 10758 0.4800 +7297 10987 0.6000 +7297 11140 0.4950 +7297 11274 0.5120 +7297 23529 0.5980 +7297 23586 0.6040 +7297 23765 0.7060 +7297 26191 0.4920 +7297 30837 0.7710 +7297 50615 0.7330 +7297 50616 0.7860 +7297 51284 0.5450 +7297 51311 0.4320 +7297 51561 0.9370 +7297 51752 0.4280 +7297 53342 0.9120 +7297 53358 0.4340 +7297 53832 0.7390 +7297 53833 0.7340 +7297 54106 0.4770 +7297 54585 0.4010 +7297 55801 0.7110 +7297 55914 0.4750 +7297 56832 0.5800 +7297 57506 0.5480 +7297 58985 0.9270 +7297 59272 0.4190 +7297 64135 0.6330 +7297 64170 0.4640 +7297 79132 0.4040 +7297 81704 0.7270 +7297 83605 0.4040 +7297 84708 0.4190 +7297 85477 0.4360 +7297 90506 0.4080 +7297 91039 0.5160 +7297 92335 0.4530 +7297 112744 0.5030 +7297 115004 0.4010 +7297 116379 0.7570 +7297 122809 0.8250 +7297 149233 0.9790 +7297 152789 0.7940 +7297 163702 0.9510 +7297 202559 0.4440 +7297 246778 0.6140 +7297 282616 0.8310 +7297 282617 0.7110 +7297 282618 0.8520 +7297 282973 0.4300 +7297 338376 0.5470 +7298 7334 0.4770 +7298 7342 0.5360 +7298 7371 0.7810 +7298 7372 0.8560 +7298 7374 0.7160 +7298 7378 0.7470 +7298 7453 0.4020 +7298 7464 0.4670 +7298 7515 0.4970 +7298 7517 0.4790 +7298 7525 0.7630 +7298 7884 0.5080 +7298 8050 0.6760 +7298 8208 0.6180 +7298 8317 0.4180 +7298 8318 0.8840 +7298 8438 0.6090 +7298 8565 0.5350 +7298 8573 0.4270 +7298 8803 0.4360 +7298 8833 0.6830 +7298 8836 0.7080 +7298 8900 0.4410 +7298 8914 0.4500 +7298 8940 0.4510 +7298 9055 0.6030 +7298 9133 0.8680 +7298 9134 0.4840 +7298 9154 0.5560 +7298 9156 0.7010 +7298 9212 0.7380 +7298 9231 0.4260 +7298 9232 0.7030 +7298 9319 0.6110 +7298 9380 0.8340 +7298 9429 0.4780 +7298 9493 0.5780 +7298 9525 0.4190 +7298 9563 0.4210 +7298 9585 0.4030 +7298 9735 0.5210 +7298 9768 0.8590 +7298 9787 0.6720 +7298 9833 0.7370 +7298 9837 0.5560 +7298 9918 0.5190 +7298 10036 0.4500 +7298 10051 0.5950 +7298 10057 0.4310 +7298 10102 0.4200 +7298 10112 0.6820 +7298 10381 0.5360 +7298 10391 0.4470 +7298 10403 0.7030 +7298 10423 0.4890 +7298 10535 0.8510 +7298 10587 0.6220 +7298 10588 0.6070 +7298 10592 0.4870 +7298 10606 0.5910 +7298 10615 0.7360 +7298 10635 0.5130 +7298 10721 0.4020 +7298 10733 0.4370 +7298 10768 0.4170 +7298 10797 0.9940 +7298 10988 0.4240 +7298 11004 0.6070 +7298 11065 0.8580 +7298 11130 0.8450 +7298 11151 0.4620 +7298 11169 0.5590 +7298 11260 0.4680 +7298 11339 0.5390 +7298 22934 0.5520 +7298 22974 0.6700 +7298 22978 0.9140 +7298 22984 0.4390 +7298 23347 0.5010 +7298 23397 0.5300 +7298 23583 0.8820 +7298 23594 0.5050 +7298 23603 0.4600 +7298 23649 0.4020 +7298 23743 0.5310 +7298 23761 0.4340 +7298 24137 0.4940 +7298 25885 0.4230 +7298 25902 0.7570 +7298 26227 0.8380 +7298 26271 0.5070 +7298 27030 0.4330 +7298 27098 0.4940 +7298 27232 0.4860 +7298 27292 0.4780 +7298 29028 0.6180 +7298 29089 0.6710 +7298 29127 0.6110 +7298 29128 0.5780 +7298 29775 0.4310 +7298 29789 0.4890 +7298 29958 0.7650 +7298 29968 0.5430 +7298 29980 0.4120 +7298 30833 0.9270 +7298 50484 0.8050 +7298 51053 0.5590 +7298 51071 0.4530 +7298 51106 0.4670 +7298 51176 0.4490 +7298 51203 0.9050 +7298 51251 0.9170 +7298 51512 0.4190 +7298 51514 0.7130 +7298 51659 0.7430 +7298 51678 0.4830 +7298 51727 0.5970 +7298 54443 0.7290 +7298 54478 0.4570 +7298 54512 0.6360 +7298 54575 0.4790 +7298 54576 0.4790 +7298 54577 0.5060 +7298 54578 0.4790 +7298 54657 0.4790 +7298 54658 0.5070 +7298 54675 0.4970 +7298 54888 0.4150 +7298 54892 0.4600 +7298 54962 0.5580 +7298 54963 0.6440 +7298 55066 0.6990 +7298 55143 0.6790 +7298 55157 0.5730 +7298 55165 0.7670 +7298 55215 0.4490 +7298 55247 0.5320 +7298 55270 0.8820 +7298 55355 0.6960 +7298 55388 0.5570 +7298 55556 0.9580 +7298 55699 0.4540 +7298 55723 0.4180 +7298 55839 0.4920 +7298 56474 0.6300 +7298 56915 0.6410 +7298 56953 0.9180 +7298 56992 0.5090 +7298 57082 0.4720 +7298 57175 0.4470 +7298 57405 0.5750 +7298 57680 0.4030 +7298 58538 0.4310 +7298 60490 0.8920 +7298 64078 0.5220 +7298 64105 0.4740 +7298 64151 0.6260 +7298 64216 0.4520 +7298 64328 0.7250 +7298 64398 0.4280 +7298 64785 0.4100 +7298 64847 0.8250 +7298 64965 0.4260 +7298 65062 0.4660 +7298 79019 0.5860 +7298 79075 0.6900 +7298 79077 0.4500 +7298 79092 0.4260 +7298 79598 0.6690 +7298 79682 0.6400 +7298 79694 0.4310 +7298 79733 0.4640 +7298 79801 0.4530 +7298 79968 0.4180 +7298 80119 0.5200 +7298 80817 0.8060 +7298 81602 0.7990 +7298 81620 0.6490 +7298 81890 0.9100 +7298 83461 0.5330 +7298 83540 0.7530 +7298 83549 0.5860 +7298 83879 0.4850 +7298 84057 0.6670 +7298 84433 0.4310 +7298 84515 0.4670 +7298 84618 0.9220 +7298 84879 0.6770 +7298 84936 0.4030 +7298 84940 0.4470 +7298 90353 0.4090 +7298 92140 0.7850 +7298 92797 0.4830 +7298 93034 0.9220 +7298 113130 0.7300 +7298 113179 0.8100 +7298 113235 0.5750 +7298 114112 0.6180 +7298 115024 0.9010 +7298 116028 0.4280 +7298 118460 0.6330 +7298 122622 0.4810 +7298 123263 0.6910 +7298 124641 0.4580 +7298 126321 0.6870 +7298 129607 0.8810 +7298 134637 0.8230 +7298 136332 0.4460 +7298 139596 0.7070 +7298 143098 0.4260 +7298 144455 0.4650 +7298 147841 0.4220 +7298 149175 0.4520 +7298 151531 0.6410 +7298 153443 0.4200 +7298 157313 0.4630 +7298 157570 0.4290 +7298 196374 0.4440 +7298 200205 0.8090 +7298 200895 0.9990 +7298 221150 0.4070 +7298 221823 0.4110 +7298 246243 0.8920 +7298 254394 0.5330 +7298 259266 0.7600 +7298 260425 0.4260 +7298 283985 0.4880 +7298 284439 0.8240 +7298 285521 0.4480 +7298 341405 0.4260 +7298 377841 0.9000 +7298 387103 0.8580 +7298 388931 0.6770 +7298 441024 0.9910 +7298 651746 0.4260 +7298 729020 0.4410 +7298 100526794 0.9190 +7298 100533467 0.4040 +7299 7306 0.8960 +7299 7372 0.4950 +7299 7391 0.5180 +7299 7439 0.4840 +7299 7474 0.5360 +7299 7837 0.6620 +7299 8398 0.5580 +7299 8455 0.4930 +7299 8456 0.4440 +7299 8635 0.4140 +7299 8905 0.4590 +7299 8972 0.6170 +7299 9735 0.4590 +7299 9839 0.4280 +7299 9947 0.4550 +7299 10457 0.4780 +7299 10461 0.5390 +7299 10573 0.5130 +7299 10981 0.5140 +7299 11116 0.4160 +7299 11234 0.5620 +7299 22797 0.6000 +7299 23532 0.5350 +7299 23682 0.7780 +7299 26258 0.4040 +7299 26330 0.4160 +7299 27022 0.4050 +7299 27136 0.4440 +7299 29126 0.4050 +7299 51151 0.9700 +7299 51176 0.4640 +7299 51438 0.5630 +7299 53826 0.5490 +7299 54583 0.4170 +7299 54796 0.5360 +7299 55211 0.4850 +7299 55770 0.5340 +7299 59272 0.5280 +7299 64151 0.4010 +7299 79083 0.5670 +7299 79803 0.4960 +7299 81037 0.4460 +7299 81557 0.5960 +7299 83938 0.6050 +7299 84250 0.4420 +7299 84343 0.6130 +7299 84539 0.4660 +7299 89781 0.4400 +7299 92745 0.4010 +7299 123041 0.7390 +7299 126321 0.4020 +7299 137362 0.9040 +7299 137902 0.6570 +7299 144811 0.5410 +7299 219931 0.6490 +7299 259307 0.9040 +7299 266740 0.5640 +7299 283652 0.9070 +7299 340273 0.4600 +7299 388552 0.4190 +7299 392255 0.4910 +7299 728239 0.5970 +7301 8651 0.8040 +7301 9021 0.7320 +7301 9567 0.6250 +7301 10332 0.4500 +7301 10461 0.4500 +7301 30816 0.5120 +7301 30835 0.7210 +7301 55113 0.4050 +7301 55576 0.6000 +7301 64768 0.4250 +7301 91937 0.7320 +7301 115650 0.4270 +7301 260425 0.4510 +7301 339390 0.4210 +7305 7409 0.7110 +7305 7410 0.6270 +7305 7462 0.4700 +7305 7535 0.9990 +7305 7805 0.7470 +7305 7852 0.5830 +7305 7940 0.7920 +7305 8000 0.5610 +7305 8302 0.8420 +7305 8431 0.4470 +7305 8477 0.4140 +7305 8530 0.7590 +7305 8600 0.7060 +7305 8685 0.4130 +7305 8829 0.4290 +7305 9046 0.5100 +7305 9056 0.4120 +7305 9332 0.6520 +7305 9402 0.7040 +7305 9436 0.9990 +7305 9437 0.9740 +7305 9450 0.7960 +7305 9473 0.6210 +7305 9535 0.4270 +7305 9935 0.4830 +7305 10261 0.5950 +7305 10288 0.8240 +7305 10326 0.9990 +7305 10347 0.4150 +7305 10437 0.5720 +7305 10451 0.8370 +7305 10457 0.4920 +7305 10462 0.4890 +7305 10578 0.4250 +7305 10666 0.6680 +7305 10673 0.4120 +7305 10859 0.7530 +7305 10870 0.9950 +7305 10871 0.8260 +7305 10875 0.5930 +7305 11006 0.4580 +7305 11024 0.8140 +7305 11025 0.7350 +7305 11027 0.7510 +7305 11151 0.6470 +7305 11314 0.7450 +7305 11326 0.7400 +7305 22914 0.9980 +7305 22918 0.4320 +7305 23166 0.4410 +7305 23547 0.4900 +7305 23601 0.9970 +7305 26253 0.9320 +7305 27036 0.6940 +7305 27040 0.5920 +7305 27180 0.5670 +7305 29108 0.6370 +7305 29760 0.4450 +7305 29992 0.5280 +7305 50856 0.6470 +7305 51225 0.6800 +7305 51266 0.4190 +7305 51284 0.4670 +7305 51296 0.4170 +7305 51311 0.6280 +7305 51338 0.6630 +7305 51348 0.5010 +7305 51744 0.5640 +7305 53829 0.6280 +7305 53831 0.4660 +7305 54106 0.4160 +7305 54209 0.9990 +7305 54210 0.9990 +7305 54440 0.4060 +7305 55303 0.4280 +7305 55423 0.9540 +7305 55911 0.4030 +7305 56833 0.4130 +7305 58475 0.5650 +7305 64092 0.4790 +7305 64098 0.4260 +7305 64170 0.4620 +7305 64231 0.7900 +7305 64407 0.4120 +7305 64581 0.7040 +7305 64805 0.6890 +7305 79168 0.6450 +7305 79465 0.5200 +7305 79626 0.4410 +7305 79865 0.7720 +7305 79930 0.8200 +7305 80031 0.8570 +7305 80328 0.5480 +7305 80329 0.5510 +7305 81501 0.4520 +7305 83706 0.4380 +7305 84662 0.6410 +7305 84689 0.4220 +7305 84868 0.4510 +7305 93978 0.7660 +7305 114132 0.4970 +7305 115362 0.4290 +7305 115653 0.4270 +7305 117157 0.5320 +7305 120425 0.4100 +7305 122618 0.4030 +7305 124599 0.9820 +7305 126014 0.9820 +7305 128346 0.6760 +7305 131450 0.4950 +7305 135250 0.5660 +7305 140885 0.9410 +7305 146433 0.4300 +7305 146722 0.9220 +7305 146894 0.4870 +7305 160364 0.4970 +7305 219972 0.5140 +7305 259197 0.8340 +7305 284266 0.9780 +7305 338339 0.4230 +7305 338773 0.6550 +7305 339390 0.4910 +7305 340205 0.7910 +7305 342510 0.9050 +7305 344807 0.5390 +7305 374383 0.4010 +7305 653361 0.4650 +7305 100049587 0.9980 +7305 100131439 0.4900 +7306 7837 0.4350 +7306 7942 0.5450 +7306 8398 0.4070 +7306 8546 0.5070 +7306 8678 0.5230 +7306 8766 0.4190 +7306 8777 0.4640 +7306 9031 0.4020 +7306 9032 0.4060 +7306 9350 0.7190 +7306 9636 0.4480 +7306 9739 0.4430 +7306 10202 0.5020 +7306 10313 0.4130 +7306 10457 0.8150 +7306 10536 0.6520 +7306 10723 0.4270 +7306 10755 0.4110 +7306 10981 0.4890 +7306 11117 0.5790 +7306 11168 0.4490 +7306 11234 0.7200 +7306 11261 0.4390 +7306 22797 0.5130 +7306 22914 0.5280 +7306 23435 0.4380 +7306 23626 0.4510 +7306 23682 0.8410 +7306 26258 0.4470 +7306 51151 0.9590 +7306 55014 0.4810 +7306 59269 0.4670 +7306 59272 0.6620 +7306 64083 0.5250 +7306 64151 0.4220 +7306 64759 0.4150 +7306 79083 0.5550 +7306 79803 0.7590 +7306 83938 0.6170 +7306 84062 0.5820 +7306 84079 0.4200 +7306 84343 0.7330 +7306 84539 0.5460 +7306 84708 0.4160 +7306 84759 0.4020 +7306 89781 0.6620 +7306 92949 0.5610 +7306 123041 0.7210 +7306 124590 0.4510 +7306 126321 0.4420 +7306 127833 0.5080 +7306 137902 0.4260 +7306 170959 0.5160 +7306 219931 0.6730 +7306 283652 0.8990 +7306 340481 0.4710 +7306 388552 0.6390 +7307 7403 0.5050 +7307 7490 0.6000 +7307 7536 0.9840 +7307 7737 0.5010 +7307 7913 0.9070 +7307 7919 0.8700 +7307 8021 0.6130 +7307 8086 0.4530 +7307 8106 0.4050 +7307 8148 0.5640 +7307 8175 0.9100 +7307 8233 0.8690 +7307 8241 0.8270 +7307 8243 0.6340 +7307 8289 0.4830 +7307 8361 0.5360 +7307 8449 0.5410 +7307 8480 0.4830 +7307 8493 0.4460 +7307 8570 0.7090 +7307 8683 0.7770 +7307 8867 0.4480 +7307 8880 0.6550 +7307 8896 0.6850 +7307 9126 0.5860 +7307 9128 0.8600 +7307 9129 0.4400 +7307 9130 0.5030 +7307 9169 0.7640 +7307 9295 0.7310 +7307 9343 0.7000 +7307 9360 0.5270 +7307 9406 0.7170 +7307 9410 0.4440 +7307 9416 0.4470 +7307 9584 0.9450 +7307 9589 0.4880 +7307 9619 0.4350 +7307 9631 0.4100 +7307 9688 0.4750 +7307 9716 0.5630 +7307 9774 0.4940 +7307 9775 0.7030 +7307 9782 0.7110 +7307 9785 0.8060 +7307 9818 0.4200 +7307 9879 0.4710 +7307 9883 0.4260 +7307 9939 0.6270 +7307 9948 0.4010 +7307 9972 0.4250 +7307 9987 0.5650 +7307 10019 0.6060 +7307 10181 0.4370 +7307 10189 0.8470 +7307 10212 0.4310 +7307 10236 0.7420 +7307 10250 0.8540 +7307 10262 0.7080 +7307 10273 0.4350 +7307 10283 0.4160 +7307 10284 0.4380 +7307 10285 0.6060 +7307 10286 0.6940 +7307 10291 0.9180 +7307 10320 0.4830 +7307 10432 0.6620 +7307 10450 0.5720 +7307 10482 0.7170 +7307 10492 0.7230 +7307 10521 0.5240 +7307 10523 0.7500 +7307 10528 0.5090 +7307 10569 0.7550 +7307 10594 0.8170 +7307 10657 0.7930 +7307 10658 0.5550 +7307 10735 0.7420 +7307 10762 0.5580 +7307 10772 0.5710 +7307 10785 0.5500 +7307 10898 0.4480 +7307 10921 0.8910 +7307 10946 0.8160 +7307 10949 0.6530 +7307 10978 0.5040 +7307 10992 0.8790 +7307 11051 0.7760 +7307 11052 0.8710 +7307 11066 0.4300 +7307 11097 0.4120 +7307 11338 0.9990 +7307 22794 0.5330 +7307 22826 0.4240 +7307 22827 0.7680 +7307 22916 0.8390 +7307 22938 0.8040 +7307 22985 0.6750 +7307 23016 0.4030 +7307 23020 0.5080 +7307 23165 0.4120 +7307 23210 0.7790 +7307 23225 0.4010 +7307 23244 0.4630 +7307 23279 0.4160 +7307 23350 0.4680 +7307 23398 0.6430 +7307 23435 0.8030 +7307 23450 0.7540 +7307 23451 0.9270 +7307 23476 0.4530 +7307 23511 0.4090 +7307 23524 0.5070 +7307 23543 0.4060 +7307 23636 0.4600 +7307 23759 0.4270 +7307 24144 0.5790 +7307 24148 0.5520 +7307 25766 0.6160 +7307 25804 0.4220 +7307 25949 0.6100 +7307 26017 0.4990 +7307 26040 0.7770 +7307 26097 0.4970 +7307 26986 0.7410 +7307 27238 0.4480 +7307 27258 0.4890 +7307 27316 0.6080 +7307 27339 0.9020 +7307 29896 0.5850 +7307 51319 0.8450 +7307 51340 0.6120 +7307 51362 0.6280 +7307 51428 0.7940 +7307 51503 0.5990 +7307 51574 0.6280 +7307 51585 0.6100 +7307 51593 0.6730 +7307 51631 0.8240 +7307 51639 0.7050 +7307 51645 0.5130 +7307 51691 0.4590 +7307 51759 0.5330 +7307 53371 0.4930 +7307 53938 0.5040 +7307 54790 0.8000 +7307 54819 0.5170 +7307 55110 0.7280 +7307 55294 0.5310 +7307 55500 0.5700 +7307 55660 0.8140 +7307 55692 0.7060 +7307 55696 0.7320 +7307 55706 0.4050 +7307 55746 0.4880 +7307 56257 0.5040 +7307 56259 0.8360 +7307 56949 0.6470 +7307 57122 0.4290 +7307 57461 0.5560 +7307 57703 0.6060 +7307 58494 0.4950 +7307 58509 0.5260 +7307 58517 0.5130 +7307 63035 0.6200 +7307 63932 0.5340 +7307 64783 0.5380 +7307 65109 0.5710 +7307 79023 0.4350 +7307 79165 0.5010 +7307 79576 0.8400 +7307 79706 0.5140 +7307 79869 0.6820 +7307 79902 0.4500 +7307 81929 0.4240 +7307 83443 0.5220 +7307 84271 0.5520 +7307 84295 0.7550 +7307 84324 0.5270 +7307 84530 0.6020 +7307 84844 0.7400 +7307 84950 0.6910 +7307 84991 0.7370 +7307 91603 0.5940 +7307 92906 0.4230 +7307 114034 0.5110 +7307 118924 0.5620 +7307 129401 0.4410 +7307 138199 0.4560 +7307 143884 0.4990 +7307 151903 0.5170 +7307 163859 0.5510 +7307 171023 0.8810 +7307 199746 0.9550 +7307 220988 0.5540 +7307 284695 0.4560 +7307 338382 0.4380 +7307 348995 0.4420 +7307 100101267 0.4240 +7307 100996928 0.6840 +7307 101669762 0.5970 +7311 7314 0.9990 +7311 7316 0.9990 +7311 7317 0.9980 +7311 7318 0.9770 +7311 7319 0.8060 +7311 7320 0.7880 +7311 7321 0.9850 +7311 7322 0.9860 +7311 7323 0.8650 +7311 7324 0.7960 +7311 7325 0.7920 +7311 7326 0.9840 +7311 7327 0.5190 +7311 7328 0.5750 +7311 7329 0.7560 +7311 7332 0.8050 +7311 7334 0.9970 +7311 7335 0.9750 +7311 7336 0.9820 +7311 7341 0.6600 +7311 7345 0.9820 +7311 7347 0.9850 +7311 7353 0.7780 +7311 7375 0.4240 +7311 7398 0.9630 +7311 7403 0.4720 +7311 7404 0.4720 +7311 7415 0.8700 +7311 7416 0.6140 +7311 7428 0.5010 +7311 7450 0.4620 +7311 7468 0.6400 +7311 7486 0.4990 +7311 7494 0.8000 +7311 7507 0.5040 +7311 7508 0.5710 +7311 7514 0.4200 +7311 7515 0.4210 +7311 7525 0.5240 +7311 7531 0.4100 +7311 7534 0.4690 +7311 7535 0.8140 +7311 7706 0.9470 +7311 7844 0.5920 +7311 7855 0.4990 +7311 7866 0.7560 +7311 7874 0.9930 +7311 7957 0.5510 +7311 7979 0.5130 +7311 8027 0.9640 +7311 8065 0.4990 +7311 8074 0.5170 +7311 8078 0.9700 +7311 8100 0.4350 +7311 8239 0.6420 +7311 8242 0.4330 +7311 8266 0.7360 +7311 8284 0.4330 +7311 8290 0.7190 +7311 8294 0.8640 +7311 8295 0.6910 +7311 8301 0.9470 +7311 8309 0.5140 +7311 8310 0.5030 +7311 8312 0.4990 +7311 8313 0.4990 +7311 8314 0.7530 +7311 8315 0.5760 +7311 8322 0.4990 +7311 8323 0.4990 +7311 8325 0.4990 +7311 8329 0.9600 +7311 8330 0.9360 +7311 8331 0.6370 +7311 8332 0.9360 +7311 8334 0.9620 +7311 8335 0.9380 +7311 8336 0.9360 +7311 8337 0.9770 +7311 8338 0.7780 +7311 8339 0.9160 +7311 8340 0.6530 +7311 8341 0.6580 +7311 8342 0.6600 +7311 8343 0.9160 +7311 8344 0.9160 +7311 8345 0.6550 +7311 8346 0.9160 +7311 8347 0.9620 +7311 8348 0.6600 +7311 8349 0.9620 +7311 8350 0.9390 +7311 8351 0.9390 +7311 8352 0.9390 +7311 8353 0.9390 +7311 8354 0.9390 +7311 8355 0.9390 +7311 8356 0.9430 +7311 8357 0.9390 +7311 8358 0.9390 +7311 8359 0.8640 +7311 8360 0.8640 +7311 8361 0.9350 +7311 8362 0.8640 +7311 8363 0.8640 +7311 8364 0.8700 +7311 8366 0.8650 +7311 8367 0.8640 +7311 8368 0.8640 +7311 8369 0.4020 +7311 8370 0.8640 +7311 8405 0.5190 +7311 8443 0.5170 +7311 8450 0.4990 +7311 8451 0.5090 +7311 8452 0.6260 +7311 8453 0.5190 +7311 8454 0.9200 +7311 8464 0.5070 +7311 8517 0.8060 +7311 8522 0.4110 +7311 8528 0.4990 +7311 8533 0.5320 +7311 8540 0.4990 +7311 8549 0.5130 +7311 8554 0.4100 +7311 8562 0.6890 +7311 8638 0.6180 +7311 8650 0.5010 +7311 8651 0.4990 +7311 8655 0.5320 +7311 8658 0.5210 +7311 8664 0.4380 +7311 8665 0.6480 +7311 8666 0.4740 +7311 8667 0.4170 +7311 8673 0.5390 +7311 8697 0.5230 +7311 8717 0.5040 +7311 8721 0.8720 +7311 8726 0.5070 +7311 8737 0.5380 +7311 8817 0.5170 +7311 8822 0.5170 +7311 8823 0.5170 +7311 8837 0.5040 +7311 8850 0.6250 +7311 8864 0.5020 +7311 8874 0.4990 +7311 8878 0.9150 +7311 8881 0.5360 +7311 8883 0.4550 +7311 8894 0.6910 +7311 8900 0.5380 +7311 8908 0.4990 +7311 8915 0.4990 +7311 8924 0.5190 +7311 8945 0.9050 +7311 8968 0.9400 +7311 8969 0.9360 +7311 8970 0.9630 +7311 8975 0.6210 +7311 8994 0.4990 +7311 9020 0.4160 +7311 9021 0.4990 +7311 9025 0.8960 +7311 9039 0.7110 +7311 9040 0.5160 +7311 9045 0.9990 +7311 9070 0.9570 +7311 9097 0.9850 +7311 9099 0.9600 +7311 9100 0.5860 +7311 9101 0.9540 +7311 9132 0.5580 +7311 9134 0.4990 +7311 9141 0.7060 +7311 9146 0.7500 +7311 9147 0.8000 +7311 9156 0.5280 +7311 9184 0.5060 +7311 9185 0.4990 +7311 9212 0.5100 +7311 9232 0.5580 +7311 9246 0.9940 +7311 9312 0.5580 +7311 9318 0.5010 +7311 9341 0.5400 +7311 9343 0.8180 +7311 9349 0.9990 +7311 9365 0.4990 +7311 9370 0.5160 +7311 9373 0.9040 +7311 9491 0.5520 +7311 9519 0.6210 +7311 9525 0.4050 +7311 9531 0.4190 +7311 9533 0.4380 +7311 9542 0.4990 +7311 9555 0.4250 +7311 9557 0.5840 +7311 9577 0.5150 +7311 9611 0.7200 +7311 9612 0.7310 +7311 9616 0.5690 +7311 9618 0.4450 +7311 9636 0.8400 +7311 9641 0.5610 +7311 9646 0.5290 +7311 9656 0.5140 +7311 9669 0.8060 +7311 9682 0.5000 +7311 9700 0.4990 +7311 9732 0.9550 +7311 9736 0.9680 +7311 9739 0.7860 +7311 9768 0.5720 +7311 9781 0.5430 +7311 9789 0.4390 +7311 9810 0.5480 +7311 9817 0.5100 +7311 9858 0.8580 +7311 9861 0.9280 +7311 9892 0.4990 +7311 9927 0.5180 +7311 9929 0.4510 +7311 9937 0.5210 +7311 9958 0.8990 +7311 9960 0.7050 +7311 9965 0.5170 +7311 9978 0.9610 +7311 10005 0.5010 +7311 10010 0.5100 +7311 10013 0.9400 +7311 10015 0.5460 +7311 10038 0.4990 +7311 10043 0.9030 +7311 10054 0.5200 +7311 10055 0.4350 +7311 10075 0.9360 +7311 10111 0.5550 +7311 10133 0.4690 +7311 10193 0.7100 +7311 10197 0.5280 +7311 10200 0.4210 +7311 10209 0.7480 +7311 10213 0.9720 +7311 10226 0.4260 +7311 10252 0.4990 +7311 10253 0.4990 +7311 10254 0.9510 +7311 10273 0.5550 +7311 10289 0.6850 +7311 10299 0.4080 +7311 10322 0.4120 +7311 10392 0.9010 +7311 10393 0.5610 +7311 10399 0.9990 +7311 10401 0.4100 +7311 10412 0.9800 +7311 10413 0.4110 +7311 10430 0.4440 +7311 10438 0.4260 +7311 10454 0.4990 +7311 10455 0.5270 +7311 10459 0.5090 +7311 10473 0.9110 +7311 10474 0.6920 +7311 10477 0.8060 +7311 10492 0.4150 +7311 10517 0.4490 +7311 10524 0.5000 +7311 10533 0.7060 +7311 10537 0.6770 +7311 10557 0.7290 +7311 10600 0.4010 +7311 10613 0.4990 +7311 10616 0.5570 +7311 10617 0.7230 +7311 10626 0.4490 +7311 10629 0.4480 +7311 10661 0.9100 +7311 10666 0.4360 +7311 10670 0.5140 +7311 10714 0.5420 +7311 10765 0.4330 +7311 10767 0.8530 +7311 10818 0.4990 +7311 10849 0.4390 +7311 10901 0.5200 +7311 10919 0.6460 +7311 10920 0.4990 +7311 10952 0.9150 +7311 10956 0.5010 +7311 10965 0.4990 +7311 10980 0.7020 +7311 10985 0.8480 +7311 10987 0.7430 +7311 10988 0.5100 +7311 11001 0.4990 +7311 11035 0.5240 +7311 11047 0.9930 +7311 11059 0.9740 +7311 11060 0.7440 +7311 11065 0.7650 +7311 11083 0.5800 +7311 11091 0.8820 +7311 11140 0.5160 +7311 11160 0.4990 +7311 11200 0.4990 +7311 11201 0.9520 +7311 11222 0.9350 +7311 11224 0.9990 +7311 11236 0.4040 +7311 11267 0.5090 +7311 11274 0.6970 +7311 11315 0.4910 +7311 11342 0.9000 +7311 22894 0.4300 +7311 22905 0.5640 +7311 22909 0.5740 +7311 22927 0.8420 +7311 22954 0.5090 +7311 23024 0.4450 +7311 23030 0.4990 +7311 23053 0.4990 +7311 23067 0.7860 +7311 23072 0.7330 +7311 23077 0.9000 +7311 23113 0.5430 +7311 23118 0.9470 +7311 23135 0.4720 +7311 23142 0.4990 +7311 23148 0.4320 +7311 23163 0.9030 +7311 23168 0.5440 +7311 23173 0.5070 +7311 23194 0.4990 +7311 23198 0.5150 +7311 23204 0.9070 +7311 23220 0.5160 +7311 23246 0.5630 +7311 23252 0.4230 +7311 23291 0.5470 +7311 23326 0.8590 +7311 23327 0.9760 +7311 23363 0.4150 +7311 23367 0.5700 +7311 23370 0.5090 +7311 23412 0.5060 +7311 23417 0.4990 +7311 23421 0.5010 +7311 23478 0.4760 +7311 23480 0.8830 +7311 23481 0.6110 +7311 23510 0.4800 +7311 23512 0.5110 +7311 23517 0.4800 +7311 23521 0.9990 +7311 23586 0.9390 +7311 23594 0.5640 +7311 23595 0.4990 +7311 23600 0.4990 +7311 23607 0.9000 +7311 23608 0.5210 +7311 23640 0.8570 +7311 23643 0.5110 +7311 23708 0.4990 +7311 25789 0.4140 +7311 25793 0.5090 +7311 25820 0.9090 +7311 25862 0.6960 +7311 25873 0.9990 +7311 25885 0.5450 +7311 25886 0.4360 +7311 25898 0.4990 +7311 25906 0.5040 +7311 25937 0.4110 +7311 25978 0.4990 +7311 25999 0.4710 +7311 26018 0.4990 +7311 26043 0.5990 +7311 26046 0.8070 +7311 26061 0.5030 +7311 26063 0.5220 +7311 26118 0.4240 +7311 26119 0.4990 +7311 26135 0.9720 +7311 26168 0.5250 +7311 26224 0.4990 +7311 26234 0.5010 +7311 26251 0.5580 +7311 26271 0.4990 +7311 26281 0.5170 +7311 26986 0.7800 +7311 27005 0.9490 +7311 27006 0.5170 +7311 27012 0.5580 +7311 27043 0.5140 +7311 27097 0.4460 +7311 27183 0.4090 +7311 27243 0.5720 +7311 27248 0.4990 +7311 27304 0.4890 +7311 27335 0.4700 +7311 27338 0.9760 +7311 27430 0.5390 +7311 28514 0.4100 +7311 28952 0.4990 +7311 28972 0.4280 +7311 28991 0.7780 +7311 28998 0.9470 +7311 29086 0.5430 +7311 29088 0.6140 +7311 29089 0.8390 +7311 29093 0.9260 +7311 29099 0.5070 +7311 29110 0.5610 +7311 29116 0.5000 +7311 29761 0.5240 +7311 29802 0.4160 +7311 29882 0.9490 +7311 29889 0.4040 +7311 29924 0.5040 +7311 29927 0.8740 +7311 29945 0.5150 +7311 29951 0.4450 +7311 29978 0.9780 +7311 29979 0.9590 +7311 29997 0.8460 +7311 30011 0.9480 +7311 30827 0.5970 +7311 30834 0.4400 +7311 50487 0.4360 +7311 50613 0.5650 +7311 50813 0.4990 +7311 50814 0.5350 +7311 50846 0.5010 +7311 50848 0.4990 +7311 50855 0.4990 +7311 51001 0.4990 +7311 51009 0.5010 +7311 51028 0.9560 +7311 51035 0.6130 +7311 51053 0.4990 +7311 51065 0.9890 +7311 51068 0.8990 +7311 51069 0.9390 +7311 51073 0.9230 +7311 51081 0.9350 +7311 51082 0.4520 +7311 51116 0.8610 +7311 51119 0.9340 +7311 51121 0.9960 +7311 51122 0.4990 +7311 51132 0.9320 +7311 51138 0.5000 +7311 51143 0.4990 +7311 51149 0.9750 +7311 51154 0.9650 +7311 51160 0.5760 +7311 51179 0.6080 +7311 51187 0.8700 +7311 51255 0.7020 +7311 51268 0.4990 +7311 51271 0.5400 +7311 51319 0.9540 +7311 51322 0.5320 +7311 51343 0.6140 +7311 51366 0.9010 +7311 51377 0.8470 +7311 51397 0.4990 +7311 51398 0.5330 +7311 51426 0.5160 +7311 51428 0.4240 +7311 51433 0.5600 +7311 51434 0.4990 +7311 51455 0.9490 +7311 51465 0.7310 +7311 51512 0.4990 +7311 51514 0.4990 +7311 51529 0.6220 +7311 51534 0.4130 +7311 51567 0.9000 +7311 51588 0.5090 +7311 51592 0.5000 +7311 51616 0.6420 +7311 51619 0.8390 +7311 51652 0.5100 +7311 51684 0.4990 +7311 51720 0.9710 +7311 53349 0.4070 +7311 53918 0.8660 +7311 54107 0.5110 +7311 54145 0.6540 +7311 54165 0.4990 +7311 54363 0.6080 +7311 54463 0.6550 +7311 54469 0.5400 +7311 54476 0.9000 +7311 54477 0.4110 +7311 54499 0.4330 +7311 54505 0.6010 +7311 54554 0.4240 +7311 54567 0.4100 +7311 54583 0.4990 +7311 54623 0.5190 +7311 54629 0.9160 +7311 54677 0.4990 +7311 54700 0.6820 +7311 54764 0.9140 +7311 54778 0.7990 +7311 54881 0.5080 +7311 54894 0.6600 +7311 54926 0.9830 +7311 54939 0.5210 +7311 54948 0.8560 +7311 54951 0.5420 +7311 55048 0.5020 +7311 55072 0.9470 +7311 55120 0.4990 +7311 55143 0.4250 +7311 55173 0.9510 +7311 55208 0.4990 +7311 55215 0.9470 +7311 55236 0.9880 +7311 55272 0.9580 +7311 55284 0.7600 +7311 55293 0.5290 +7311 55294 0.7190 +7311 55316 0.9780 +7311 55341 0.5570 +7311 55366 0.4990 +7311 55432 0.9480 +7311 55506 0.4070 +7311 55578 0.5070 +7311 55585 0.5010 +7311 55591 0.5060 +7311 55593 0.9040 +7311 55611 0.9780 +7311 55629 0.5000 +7311 55646 0.8100 +7311 55651 0.7750 +7311 55666 0.9800 +7311 55669 0.5300 +7311 55670 0.5040 +7311 55759 0.5330 +7311 55768 0.4050 +7311 55777 0.5000 +7311 55793 0.9260 +7311 55802 0.5040 +7311 55825 0.5200 +7311 55829 0.4990 +7311 55884 0.4240 +7311 55893 0.4400 +7311 55914 0.4990 +7311 56254 0.5620 +7311 56288 0.5210 +7311 56479 0.5580 +7311 56648 0.9370 +7311 56655 0.5130 +7311 56675 0.4660 +7311 56731 0.4390 +7311 56852 0.9490 +7311 56893 0.5670 +7311 56926 0.4390 +7311 56943 0.8540 +7311 56957 0.9380 +7311 56965 0.6290 +7311 56970 0.5070 +7311 57003 0.4290 +7311 57154 0.7330 +7311 57418 0.6040 +7311 57448 0.4900 +7311 57506 0.9100 +7311 57520 0.4880 +7311 57530 0.4990 +7311 57534 0.5010 +7311 57558 0.6180 +7311 57559 0.9680 +7311 57599 0.9490 +7311 57646 0.9510 +7311 57664 0.5650 +7311 57697 0.4990 +7311 57804 0.5010 +7311 58477 0.8030 +7311 58505 0.5090 +7311 58508 0.8100 +7311 58513 0.6880 +7311 59269 0.5410 +7311 59338 0.4180 +7311 59349 0.5210 +7311 59352 0.4990 +7311 60678 0.9080 +7311 63893 0.7790 +7311 63931 0.9480 +7311 64135 0.9020 +7311 64221 0.5870 +7311 64326 0.5550 +7311 64344 0.4990 +7311 64374 0.8580 +7311 64425 0.5690 +7311 64682 0.5060 +7311 64708 0.5040 +7311 64750 0.9760 +7311 64772 0.4030 +7311 64839 0.4990 +7311 64854 0.9440 +7311 64858 0.5210 +7311 64960 0.9540 +7311 64963 0.9590 +7311 64969 0.9390 +7311 65003 0.8420 +7311 65008 0.9370 +7311 65018 0.9810 +7311 65121 0.6140 +7311 65122 0.6140 +7311 65264 0.7290 +7311 78990 0.9750 +7311 79029 0.4580 +7311 79036 0.9020 +7311 79048 0.8100 +7311 79137 0.5480 +7311 79139 0.4990 +7311 79155 0.4990 +7311 79184 0.7020 +7311 79444 0.9000 +7311 79577 0.6300 +7311 79590 0.9560 +7311 79631 0.9610 +7311 79643 0.4990 +7311 79668 0.6290 +7311 79707 0.5270 +7311 79720 0.5000 +7311 79728 0.4210 +7311 79813 0.6480 +7311 79866 0.4990 +7311 79876 0.7590 +7311 80010 0.4990 +7311 80028 0.5080 +7311 80146 0.5360 +7311 80196 0.5280 +7311 80198 0.4990 +7311 80216 0.4990 +7311 80233 0.7060 +7311 80270 0.5510 +7311 80349 0.6470 +7311 80351 0.5210 +7311 81030 0.4990 +7311 81573 0.4870 +7311 81620 0.5100 +7311 81844 0.5040 +7311 81847 0.5150 +7311 81858 0.5600 +7311 81875 0.4160 +7311 81887 0.5610 +7311 83473 0.5040 +7311 83714 0.4660 +7311 83737 0.9730 +7311 83752 0.4990 +7311 83932 0.6300 +7311 83939 0.5470 +7311 83987 0.5000 +7311 83990 0.4990 +7311 84078 0.5340 +7311 84101 0.5150 +7311 84126 0.4990 +7311 84133 0.6600 +7311 84142 0.4990 +7311 84154 0.5720 +7311 84166 0.5080 +7311 84172 0.5750 +7311 84196 0.5200 +7311 84231 0.9670 +7311 84259 0.5070 +7311 84261 0.4490 +7311 84301 0.6460 +7311 84313 0.5060 +7311 84444 0.9380 +7311 84447 0.4990 +7311 84464 0.5440 +7311 84515 0.4990 +7311 84518 0.5820 +7311 84640 0.6180 +7311 84661 0.9620 +7311 84708 0.9040 +7311 84749 0.9800 +7311 84870 0.4990 +7311 84936 0.5230 +7311 84942 0.4540 +7311 84954 0.4090 +7311 84962 0.4990 +7311 84993 0.9650 +7311 85016 0.4110 +7311 85235 0.6220 +7311 85236 0.9630 +7311 85476 0.8160 +7311 88455 0.4910 +7311 89780 0.4990 +7311 89853 0.4990 +7311 90268 0.9160 +7311 90441 0.6610 +7311 90701 0.4250 +7311 91319 0.4990 +7311 91442 0.4990 +7311 91445 0.6140 +7311 91782 0.5000 +7311 91875 0.8110 +7311 92196 0.7950 +7311 92305 0.4990 +7311 92421 0.5040 +7311 92552 0.9400 +7311 92610 0.4990 +7311 92815 0.6190 +7311 92912 0.5000 +7311 93107 0.5580 +7311 93343 0.5030 +7311 93517 0.5350 +7311 93550 0.6600 +7311 93624 0.4310 +7311 112399 0.4990 +7311 113177 0.4100 +7311 113878 0.4990 +7311 114785 0.5000 +7311 114803 0.6380 +7311 114987 0.9750 +7311 115098 0.8550 +7311 116028 0.4990 +7311 116832 0.9650 +7311 117143 0.4590 +7311 118424 0.4990 +7311 119504 0.5340 +7311 121504 0.8640 +7311 121536 0.7980 +7311 122706 0.6200 +7311 122970 0.4990 +7311 123169 0.5300 +7311 124454 0.7520 +7311 124739 0.5360 +7311 124930 0.4870 +7311 126119 0.9430 +7311 126374 0.4990 +7311 126402 0.9330 +7311 126961 0.9420 +7311 127002 0.5130 +7311 128312 0.6510 +7311 128866 0.5070 +7311 130617 0.9110 +7311 133746 0.4100 +7311 137492 0.4990 +7311 137994 0.4290 +7311 139285 0.4990 +7311 140032 0.9830 +7311 140735 0.5210 +7311 140739 0.5070 +7311 140801 0.9950 +7311 142678 0.5830 +7311 143244 0.9290 +7311 143471 0.6560 +7311 143630 0.5650 +7311 144100 0.4110 +7311 144165 0.5050 +7311 146310 0.4450 +7311 146433 0.4990 +7311 146845 0.4240 +7311 146956 0.5420 +7311 147011 0.4360 +7311 147945 0.5010 +7311 148022 0.4990 +7311 148581 0.7320 +7311 149951 0.5070 +7311 150684 0.5600 +7311 152006 0.9320 +7311 152831 0.4990 +7311 154288 0.4360 +7311 155382 0.4990 +7311 158880 0.7540 +7311 161725 0.4470 +7311 161742 0.4990 +7311 162427 0.5410 +7311 164153 0.6140 +7311 165918 0.9510 +7311 166378 0.4580 +7311 169522 0.5580 +7311 170622 0.5160 +7311 170850 0.5580 +7311 171023 0.4270 +7311 171222 0.9450 +7311 196743 0.4990 +7311 197259 0.5380 +7311 197342 0.5420 +7311 199990 0.5040 +7311 200734 0.4990 +7311 200894 0.4110 +7311 200916 0.9300 +7311 201134 0.6270 +7311 201254 0.5240 +7311 201595 0.7860 +7311 203068 0.8360 +7311 219333 0.9240 +7311 219743 0.5050 +7311 220213 0.4230 +7311 220441 0.4990 +7311 221302 0.9790 +7311 221613 0.6180 +7311 221830 0.4510 +7311 222255 0.5130 +7311 246184 0.5440 +7311 254268 0.9490 +7311 255324 0.4990 +7311 255626 0.6490 +7311 256369 0.7570 +7311 257218 0.5570 +7311 257397 0.4990 +7311 282809 0.4240 +7311 283518 0.5580 +7311 283927 0.4990 +7311 284654 0.4990 +7311 285368 0.6270 +7311 285855 0.9760 +7311 286187 0.4080 +7311 317772 0.6720 +7311 333932 0.9460 +7311 338692 0.7970 +7311 339745 0.5110 +7311 340061 0.4990 +7311 340096 0.4190 +7311 340419 0.4990 +7311 342538 0.8850 +7311 343068 0.6140 +7311 343070 0.6140 +7311 343637 0.4990 +7311 347487 0.9780 +7311 349136 0.4320 +7311 353376 0.4990 +7311 353497 0.4990 +7311 373156 0.5110 +7311 374286 0.4490 +7311 378708 0.5150 +7311 387129 0.9270 +7311 387332 0.7260 +7311 387521 0.4740 +7311 387522 0.9500 +7311 389856 0.7540 +7311 390916 0.4990 +7311 390999 0.6140 +7311 391002 0.6140 +7311 391769 0.4190 +7311 399473 0.4990 +7311 399949 0.6040 +7311 400735 0.6140 +7311 400736 0.6140 +7311 401551 0.4240 +7311 404672 0.5630 +7311 440093 0.4520 +7311 440560 0.6140 +7311 440561 0.6140 +7311 440686 0.9420 +7311 440689 0.5850 +7311 441873 0.6140 +7311 494470 0.8280 +7311 548593 0.4990 +7311 554313 0.8640 +7311 619279 0.4360 +7311 641776 0.7120 +7311 642987 0.4360 +7311 643909 0.7120 +7311 645051 0.7840 +7311 645073 0.7840 +7311 645359 0.6140 +7311 653604 0.9430 +7311 653619 0.6140 +7311 723790 0.9380 +7311 728378 0.4850 +7311 728524 0.7120 +7311 729396 0.7840 +7311 729422 0.7840 +7311 729428 0.7840 +7311 729431 0.7840 +7311 729442 0.7840 +7311 729447 0.7840 +7311 729528 0.6140 +7311 100008586 0.7840 +7311 100128731 0.6180 +7311 100132399 0.7840 +7311 100287482 0.8590 +7311 100287513 0.5150 +7311 100423062 0.6020 +7311 100505478 0.9080 +7311 100526842 0.9910 +7311 100529097 0.9630 +7311 100529239 0.9930 +7311 100996746 0.7120 +7311 101929983 0.6140 +7311 102723971 0.4150 +7311 102724473 0.7840 +7311 105180390 0.7120 +7311 105180391 0.7120 +7314 7316 0.9980 +7314 7317 0.9970 +7314 7318 0.9660 +7314 7319 0.8460 +7314 7320 0.8210 +7314 7321 0.9810 +7314 7322 0.9910 +7314 7323 0.8340 +7314 7324 0.6510 +7314 7325 0.6290 +7314 7326 0.9820 +7314 7327 0.6890 +7314 7328 0.6590 +7314 7329 0.6540 +7314 7332 0.7290 +7314 7334 0.9940 +7314 7335 0.9650 +7314 7336 0.9910 +7314 7337 0.5520 +7314 7341 0.6680 +7314 7345 0.9810 +7314 7347 0.9860 +7314 7353 0.9210 +7314 7375 0.5690 +7314 7376 0.4060 +7314 7398 0.9530 +7314 7415 0.8430 +7314 7416 0.6020 +7314 7428 0.5390 +7314 7431 0.5200 +7314 7468 0.5640 +7314 7486 0.5150 +7314 7507 0.5750 +7314 7508 0.6900 +7314 7516 0.4200 +7314 7517 0.4610 +7314 7525 0.5310 +7314 7534 0.6330 +7314 7535 0.8130 +7314 7706 0.9600 +7314 7844 0.4650 +7314 7855 0.5260 +7314 7874 0.9840 +7314 7957 0.5180 +7314 7979 0.5110 +7314 8027 0.9740 +7314 8065 0.5540 +7314 8074 0.5070 +7314 8078 0.9840 +7314 8100 0.4680 +7314 8239 0.5680 +7314 8290 0.7050 +7314 8294 0.8640 +7314 8295 0.6750 +7314 8301 0.9500 +7314 8309 0.5380 +7314 8310 0.5340 +7314 8312 0.5120 +7314 8313 0.5060 +7314 8314 0.5160 +7314 8315 0.9350 +7314 8322 0.5490 +7314 8323 0.5260 +7314 8325 0.5260 +7314 8329 0.9560 +7314 8330 0.9330 +7314 8331 0.5710 +7314 8332 0.9320 +7314 8334 0.9560 +7314 8335 0.9280 +7314 8336 0.9310 +7314 8337 0.9610 +7314 8338 0.6220 +7314 8339 0.9140 +7314 8340 0.5590 +7314 8341 0.5590 +7314 8342 0.5590 +7314 8343 0.9140 +7314 8344 0.9140 +7314 8345 0.5590 +7314 8346 0.9140 +7314 8347 0.9550 +7314 8348 0.5590 +7314 8349 0.9610 +7314 8350 0.9350 +7314 8351 0.9350 +7314 8352 0.9350 +7314 8353 0.9350 +7314 8354 0.9350 +7314 8355 0.9350 +7314 8356 0.9420 +7314 8357 0.9390 +7314 8358 0.9350 +7314 8359 0.8640 +7314 8360 0.8640 +7314 8361 0.9340 +7314 8362 0.8640 +7314 8363 0.8640 +7314 8364 0.8700 +7314 8366 0.8640 +7314 8367 0.8640 +7314 8368 0.8640 +7314 8370 0.8640 +7314 8405 0.5650 +7314 8443 0.4990 +7314 8445 0.4160 +7314 8450 0.5790 +7314 8451 0.5800 +7314 8452 0.7040 +7314 8453 0.5660 +7314 8454 0.9370 +7314 8464 0.4330 +7314 8517 0.9730 +7314 8528 0.4990 +7314 8533 0.7040 +7314 8540 0.5280 +7314 8549 0.5520 +7314 8554 0.4560 +7314 8650 0.5030 +7314 8651 0.5050 +7314 8655 0.5880 +7314 8658 0.5320 +7314 8663 0.4030 +7314 8673 0.5220 +7314 8697 0.9010 +7314 8717 0.5730 +7314 8737 0.5830 +7314 8817 0.5070 +7314 8822 0.5070 +7314 8823 0.5070 +7314 8835 0.4060 +7314 8837 0.5350 +7314 8850 0.5350 +7314 8864 0.4990 +7314 8874 0.5050 +7314 8878 0.9430 +7314 8881 0.9020 +7314 8900 0.5370 +7314 8908 0.5720 +7314 8915 0.5110 +7314 8924 0.5230 +7314 8945 0.9080 +7314 8968 0.9350 +7314 8969 0.9330 +7314 8970 0.9540 +7314 8975 0.6530 +7314 8988 0.4660 +7314 8994 0.5010 +7314 9020 0.4110 +7314 9021 0.5180 +7314 9025 0.7570 +7314 9039 0.6630 +7314 9040 0.6080 +7314 9045 0.6510 +7314 9070 0.9260 +7314 9097 0.9950 +7314 9099 0.9800 +7314 9100 0.5650 +7314 9101 0.9700 +7314 9134 0.5200 +7314 9146 0.9170 +7314 9148 0.4940 +7314 9156 0.5310 +7314 9184 0.5760 +7314 9185 0.5090 +7314 9212 0.5890 +7314 9232 0.5080 +7314 9246 0.9920 +7314 9306 0.4060 +7314 9318 0.5180 +7314 9320 0.5960 +7314 9341 0.5350 +7314 9349 0.6220 +7314 9354 0.5160 +7314 9365 0.5090 +7314 9373 0.9670 +7314 9491 0.5910 +7314 9525 0.4570 +7314 9542 0.5100 +7314 9557 0.5450 +7314 9577 0.5350 +7314 9611 0.6530 +7314 9612 0.6370 +7314 9616 0.6180 +7314 9636 0.5880 +7314 9641 0.5360 +7314 9646 0.5640 +7314 9656 0.5240 +7314 9682 0.4990 +7314 9700 0.5160 +7314 9732 0.4960 +7314 9736 0.9540 +7314 9739 0.6430 +7314 9768 0.5000 +7314 9781 0.5430 +7314 9802 0.5550 +7314 9810 0.6400 +7314 9812 0.5960 +7314 9817 0.5340 +7314 9825 0.4090 +7314 9861 0.9480 +7314 9892 0.5290 +7314 9927 0.6470 +7314 9929 0.5100 +7314 9937 0.5050 +7314 9958 0.9130 +7314 9960 0.5870 +7314 9965 0.5070 +7314 9978 0.9650 +7314 10005 0.5130 +7314 10010 0.5490 +7314 10013 0.9580 +7314 10015 0.6460 +7314 10038 0.5280 +7314 10043 0.9150 +7314 10062 0.4060 +7314 10075 0.9570 +7314 10110 0.4360 +7314 10111 0.4990 +7314 10133 0.9600 +7314 10193 0.6600 +7314 10197 0.5480 +7314 10206 0.4990 +7314 10209 0.5810 +7314 10213 0.9900 +7314 10226 0.4390 +7314 10252 0.4990 +7314 10253 0.4990 +7314 10254 0.9670 +7314 10273 0.6350 +7314 10277 0.5160 +7314 10289 0.4080 +7314 10299 0.5320 +7314 10318 0.9000 +7314 10392 0.9040 +7314 10393 0.9090 +7314 10399 0.6220 +7314 10401 0.4350 +7314 10454 0.5670 +7314 10455 0.5410 +7314 10459 0.5060 +7314 10474 0.6510 +7314 10477 0.7190 +7314 10517 0.4140 +7314 10524 0.5340 +7314 10533 0.6200 +7314 10537 0.4480 +7314 10600 0.4060 +7314 10612 0.5360 +7314 10613 0.5130 +7314 10616 0.9540 +7314 10617 0.7350 +7314 10626 0.4510 +7314 10661 0.9080 +7314 10670 0.5200 +7314 10714 0.5420 +7314 10818 0.4990 +7314 10900 0.4490 +7314 10901 0.5290 +7314 10919 0.5750 +7314 10920 0.5650 +7314 10933 0.4910 +7314 10956 0.5320 +7314 10965 0.5230 +7314 10971 0.4620 +7314 10980 0.6580 +7314 10987 0.7030 +7314 11001 0.4990 +7314 11035 0.5330 +7314 11047 0.9880 +7314 11059 0.9730 +7314 11060 0.7310 +7314 11065 0.9260 +7314 11091 0.8610 +7314 11140 0.5250 +7314 11160 0.5210 +7314 11200 0.5180 +7314 11201 0.9620 +7314 11224 0.6400 +7314 11236 0.4550 +7314 11267 0.5260 +7314 11274 0.5870 +7314 11315 0.6080 +7314 11342 0.9070 +7314 22905 0.6240 +7314 22909 0.4990 +7314 22954 0.5770 +7314 22992 0.5260 +7314 23030 0.4990 +7314 23032 0.4610 +7314 23053 0.5370 +7314 23067 0.6430 +7314 23072 0.7250 +7314 23077 0.9020 +7314 23113 0.5830 +7314 23118 0.9530 +7314 23142 0.5770 +7314 23163 0.9170 +7314 23168 0.5720 +7314 23194 0.5800 +7314 23198 0.5810 +7314 23204 0.4200 +7314 23220 0.5110 +7314 23252 0.4450 +7314 23291 0.5320 +7314 23304 0.6030 +7314 23321 0.5140 +7314 23326 0.7560 +7314 23327 0.9750 +7314 23363 0.4250 +7314 23370 0.5000 +7314 23412 0.5030 +7314 23417 0.4990 +7314 23421 0.4990 +7314 23435 0.6880 +7314 23521 0.6990 +7314 23586 0.9400 +7314 23594 0.4990 +7314 23595 0.5390 +7314 23600 0.5000 +7314 23607 0.9000 +7314 23608 0.5520 +7314 23643 0.5130 +7314 23678 0.4050 +7314 25793 0.5620 +7314 25820 0.9200 +7314 25847 0.8020 +7314 25862 0.5620 +7314 25873 0.6640 +7314 25898 0.5230 +7314 25906 0.8970 +7314 25978 0.5390 +7314 25999 0.4890 +7314 26018 0.5170 +7314 26043 0.6140 +7314 26061 0.5130 +7314 26063 0.5290 +7314 26100 0.4500 +7314 26119 0.4990 +7314 26135 0.4250 +7314 26224 0.5730 +7314 26234 0.5440 +7314 26271 0.5050 +7314 26281 0.5070 +7314 26986 0.5670 +7314 27005 0.9650 +7314 27006 0.5070 +7314 27097 0.5020 +7314 27183 0.5160 +7314 27243 0.5680 +7314 27248 0.5480 +7314 27338 0.9880 +7314 28514 0.4420 +7314 28952 0.4990 +7314 28991 0.6060 +7314 28998 0.4480 +7314 29086 0.5470 +7314 29089 0.7790 +7314 29099 0.4990 +7314 29110 0.5680 +7314 29116 0.5730 +7314 29761 0.4690 +7314 29882 0.9480 +7314 29924 0.6440 +7314 29945 0.9030 +7314 29978 0.9790 +7314 29979 0.9620 +7314 30011 0.9470 +7314 30827 0.4510 +7314 50613 0.4790 +7314 50813 0.5350 +7314 50846 0.5020 +7314 50848 0.5050 +7314 50855 0.4990 +7314 51001 0.4990 +7314 51009 0.5190 +7314 51028 0.9640 +7314 51035 0.5560 +7314 51053 0.5660 +7314 51065 0.5740 +7314 51069 0.4560 +7314 51081 0.5000 +7314 51121 0.5210 +7314 51122 0.4990 +7314 51132 0.9100 +7314 51138 0.5750 +7314 51143 0.4990 +7314 51149 0.4860 +7314 51154 0.5620 +7314 51160 0.5500 +7314 51179 0.6070 +7314 51255 0.7270 +7314 51268 0.5070 +7314 51271 0.5280 +7314 51319 0.4920 +7314 51322 0.5210 +7314 51343 0.9130 +7314 51366 0.9110 +7314 51377 0.6920 +7314 51397 0.4990 +7314 51426 0.5550 +7314 51428 0.6080 +7314 51433 0.9110 +7314 51434 0.8950 +7314 51455 0.9600 +7314 51465 0.6230 +7314 51506 0.5470 +7314 51510 0.4100 +7314 51512 0.5210 +7314 51514 0.5160 +7314 51529 0.7620 +7314 51534 0.4170 +7314 51567 0.9000 +7314 51569 0.4980 +7314 51588 0.5290 +7314 51592 0.5840 +7314 51616 0.6730 +7314 51619 0.7970 +7314 51629 0.5170 +7314 51652 0.5110 +7314 51684 0.5120 +7314 51720 0.9660 +7314 53349 0.4240 +7314 54107 0.5130 +7314 54145 0.5590 +7314 54165 0.5650 +7314 54363 0.5180 +7314 54469 0.5370 +7314 54476 0.9060 +7314 54492 0.4690 +7314 54567 0.4420 +7314 54583 0.5110 +7314 54623 0.5150 +7314 54629 0.9170 +7314 54677 0.4990 +7314 54764 0.9160 +7314 54778 0.6340 +7314 54788 0.4080 +7314 54894 0.5660 +7314 54902 0.4720 +7314 54926 0.9810 +7314 54939 0.5420 +7314 54951 0.6210 +7314 55040 0.4290 +7314 55048 0.5390 +7314 55072 0.9610 +7314 55119 0.6020 +7314 55120 0.4990 +7314 55173 0.4390 +7314 55208 0.5570 +7314 55215 0.9610 +7314 55236 0.9900 +7314 55272 0.4420 +7314 55284 0.6450 +7314 55294 0.7250 +7314 55316 0.5440 +7314 55366 0.5530 +7314 55374 0.4080 +7314 55432 0.9820 +7314 55578 0.4340 +7314 55585 0.4990 +7314 55593 0.9060 +7314 55611 0.9440 +7314 55666 0.9860 +7314 55669 0.6030 +7314 55670 0.4990 +7314 55768 0.6410 +7314 55777 0.4520 +7314 55793 0.9220 +7314 55825 0.5290 +7314 55829 0.5050 +7314 55884 0.4480 +7314 55914 0.5240 +7314 56254 0.5730 +7314 56288 0.5220 +7314 56655 0.5280 +7314 56852 0.9810 +7314 56893 0.4960 +7314 56943 0.8030 +7314 56957 0.9440 +7314 56970 0.4290 +7314 57128 0.4260 +7314 57154 0.7340 +7314 57506 0.9120 +7314 57520 0.4730 +7314 57530 0.4990 +7314 57534 0.4420 +7314 57558 0.4790 +7314 57559 0.9720 +7314 57599 0.9600 +7314 57646 0.9300 +7314 57697 0.5460 +7314 57804 0.5030 +7314 58508 0.8020 +7314 58513 0.7510 +7314 59269 0.5490 +7314 59349 0.6190 +7314 59352 0.5070 +7314 63893 0.5950 +7314 63931 0.4670 +7314 64135 0.9020 +7314 64221 0.5510 +7314 64326 0.5400 +7314 64344 0.5200 +7314 64682 0.8960 +7314 64708 0.6160 +7314 64750 0.9730 +7314 64772 0.4460 +7314 64839 0.5800 +7314 64854 0.9540 +7314 64858 0.5050 +7314 64963 0.5040 +7314 64969 0.4170 +7314 65018 0.9650 +7314 65125 0.4130 +7314 65264 0.8100 +7314 65266 0.4130 +7314 65267 0.4060 +7314 78990 0.9370 +7314 79029 0.5430 +7314 79036 0.6900 +7314 79139 0.5170 +7314 79155 0.9500 +7314 79184 0.6480 +7314 79444 0.9200 +7314 79577 0.6510 +7314 79590 0.4220 +7314 79594 0.4160 +7314 79643 0.4990 +7314 79720 0.5120 +7314 79728 0.4550 +7314 79813 0.5750 +7314 79866 0.4990 +7314 79876 0.7560 +7314 80010 0.4990 +7314 80028 0.5350 +7314 80196 0.5000 +7314 80198 0.5460 +7314 80216 0.4990 +7314 80233 0.8380 +7314 80349 0.5530 +7314 80351 0.5320 +7314 81030 0.5090 +7314 81605 0.5800 +7314 81620 0.5520 +7314 81844 0.5960 +7314 81847 0.5120 +7314 81858 0.6220 +7314 83473 0.4560 +7314 83737 0.9730 +7314 83752 0.5230 +7314 83932 0.6380 +7314 83987 0.4520 +7314 83990 0.5170 +7314 84078 0.5080 +7314 84126 0.5130 +7314 84133 0.5640 +7314 84142 0.4990 +7314 84166 0.5240 +7314 84196 0.6070 +7314 84231 0.5580 +7314 84259 0.5460 +7314 84261 0.4140 +7314 84301 0.8550 +7314 84313 0.5050 +7314 84444 0.9490 +7314 84447 0.6030 +7314 84464 0.5060 +7314 84515 0.5180 +7314 84640 0.4640 +7314 84661 0.8580 +7314 84678 0.5250 +7314 84708 0.9040 +7314 84749 0.9790 +7314 84870 0.5250 +7314 84942 0.5290 +7314 84962 0.5010 +7314 84993 0.9390 +7314 85015 0.4290 +7314 85235 0.5710 +7314 85236 0.9560 +7314 89780 0.5110 +7314 89853 0.5070 +7314 90268 0.9760 +7314 91252 0.4260 +7314 91319 0.5420 +7314 91442 0.5470 +7314 91445 0.6030 +7314 91782 0.5040 +7314 92002 0.4590 +7314 92305 0.5300 +7314 92421 0.4990 +7314 92552 0.9500 +7314 92610 0.4990 +7314 92815 0.5770 +7314 92912 0.4990 +7314 93343 0.5070 +7314 93624 0.4180 +7314 112399 0.5260 +7314 113177 0.5200 +7314 113878 0.5780 +7314 114785 0.4520 +7314 114803 0.7170 +7314 114987 0.5210 +7314 116028 0.4990 +7314 116832 0.4860 +7314 118424 0.6360 +7314 119504 0.8960 +7314 121504 0.8640 +7314 121536 0.5060 +7314 122706 0.5740 +7314 122970 0.5230 +7314 123169 0.5020 +7314 124739 0.5490 +7314 126119 0.9490 +7314 126374 0.5010 +7314 126402 0.4990 +7314 126961 0.9350 +7314 127002 0.4820 +7314 128312 0.5590 +7314 128866 0.5010 +7314 130106 0.4700 +7314 130617 0.9330 +7314 133746 0.4520 +7314 137492 0.4990 +7314 139285 0.4990 +7314 140032 0.5300 +7314 140735 0.5490 +7314 140739 0.5950 +7314 140801 0.5020 +7314 142678 0.6950 +7314 143471 0.6660 +7314 143630 0.5320 +7314 144165 0.5170 +7314 146227 0.4950 +7314 146433 0.4990 +7314 146956 0.5420 +7314 147945 0.4990 +7314 148022 0.5150 +7314 148581 0.6550 +7314 149951 0.5050 +7314 150684 0.5070 +7314 152006 0.9580 +7314 152831 0.5090 +7314 155382 0.4990 +7314 158880 0.5910 +7314 161725 0.4230 +7314 161742 0.4990 +7314 165918 0.9640 +7314 166378 0.5430 +7314 170622 0.5100 +7314 171023 0.4420 +7314 171222 0.9200 +7314 196743 0.4990 +7314 197131 0.5770 +7314 197259 0.5380 +7314 197342 0.5740 +7314 199990 0.4990 +7314 200734 0.4990 +7314 200916 0.4990 +7314 201254 0.5390 +7314 219333 0.9120 +7314 219743 0.5260 +7314 220213 0.4370 +7314 220441 0.5390 +7314 221302 0.9740 +7314 221613 0.5870 +7314 221656 0.4180 +7314 221937 0.4270 +7314 222255 0.4810 +7314 246184 0.8970 +7314 254268 0.4780 +7314 255324 0.4990 +7314 255626 0.5740 +7314 257218 0.5420 +7314 257397 0.5150 +7314 283927 0.5020 +7314 284654 0.6140 +7314 285855 0.5080 +7314 317772 0.5710 +7314 333932 0.9350 +7314 339745 0.5610 +7314 340061 0.5130 +7314 340419 0.5080 +7314 343637 0.5390 +7314 347487 0.4870 +7314 349136 0.4140 +7314 353376 0.5150 +7314 353497 0.5070 +7314 373156 0.5170 +7314 374286 0.4140 +7314 378708 0.5020 +7314 378884 0.4470 +7314 387129 0.4700 +7314 387522 0.9220 +7314 389856 0.5840 +7314 390916 0.5080 +7314 399473 0.4990 +7314 404672 0.5390 +7314 440093 0.4370 +7314 440686 0.9400 +7314 440689 0.4710 +7314 494470 0.4490 +7314 548593 0.5020 +7314 554313 0.8640 +7314 644591 0.4190 +7314 645051 0.4030 +7314 645073 0.4030 +7314 645142 0.4190 +7314 653505 0.4200 +7314 653598 0.4190 +7314 653604 0.9410 +7314 723790 0.9280 +7314 728378 0.4420 +7314 728945 0.4190 +7314 729396 0.4030 +7314 729422 0.4030 +7314 729428 0.4030 +7314 729431 0.4030 +7314 729442 0.4030 +7314 729447 0.4030 +7314 730262 0.4190 +7314 100008586 0.4030 +7314 100132399 0.4030 +7314 100526842 0.4940 +7314 100529097 0.5050 +7314 100529239 0.5090 +7314 102724473 0.4030 +7314 105371242 0.4190 +7316 7317 0.9990 +7316 7318 0.9700 +7316 7319 0.9020 +7316 7320 0.9010 +7316 7321 0.9970 +7316 7322 0.9980 +7316 7323 0.9850 +7316 7324 0.7110 +7316 7325 0.6980 +7316 7326 0.9840 +7316 7327 0.9050 +7316 7328 0.6520 +7316 7329 0.8130 +7316 7332 0.7940 +7316 7334 0.9990 +7316 7335 0.9910 +7316 7336 0.9990 +7316 7337 0.8700 +7316 7341 0.8000 +7316 7345 0.9990 +7316 7347 0.9990 +7316 7353 0.9660 +7316 7373 0.4260 +7316 7375 0.9090 +7316 7376 0.4060 +7316 7398 0.9890 +7316 7415 0.9750 +7316 7416 0.7080 +7316 7428 0.7620 +7316 7468 0.5640 +7316 7486 0.5150 +7316 7507 0.5750 +7316 7508 0.7140 +7316 7516 0.4200 +7316 7517 0.4610 +7316 7525 0.5470 +7316 7534 0.6910 +7316 7535 0.8230 +7316 7706 0.9720 +7316 7763 0.6570 +7316 7844 0.4910 +7316 7846 0.4830 +7316 7855 0.5260 +7316 7874 0.9970 +7316 7879 0.5140 +7316 7957 0.5180 +7316 7979 0.8080 +7316 8027 0.9940 +7316 8065 0.6110 +7316 8074 0.5070 +7316 8078 0.9990 +7316 8100 0.4810 +7316 8237 0.6860 +7316 8239 0.8170 +7316 8290 0.8300 +7316 8294 0.8640 +7316 8295 0.6750 +7316 8301 0.9490 +7316 8309 0.5380 +7316 8310 0.5340 +7316 8312 0.6400 +7316 8313 0.5310 +7316 8314 0.8840 +7316 8315 0.8650 +7316 8322 0.5270 +7316 8323 0.5340 +7316 8325 0.5260 +7316 8329 0.9550 +7316 8330 0.9280 +7316 8331 0.5780 +7316 8332 0.9280 +7316 8334 0.9560 +7316 8335 0.9290 +7316 8336 0.9280 +7316 8337 0.9660 +7316 8338 0.7540 +7316 8339 0.9120 +7316 8340 0.6120 +7316 8341 0.6130 +7316 8342 0.6120 +7316 8343 0.9140 +7316 8344 0.9120 +7316 8345 0.6140 +7316 8346 0.9130 +7316 8347 0.9600 +7316 8348 0.6120 +7316 8349 0.9760 +7316 8350 0.9350 +7316 8351 0.9350 +7316 8352 0.9350 +7316 8353 0.9350 +7316 8354 0.9350 +7316 8355 0.9350 +7316 8356 0.9660 +7316 8357 0.9350 +7316 8358 0.9350 +7316 8359 0.8640 +7316 8360 0.8650 +7316 8361 0.9350 +7316 8362 0.8640 +7316 8363 0.8640 +7316 8364 0.8690 +7316 8366 0.8640 +7316 8367 0.8640 +7316 8368 0.8640 +7316 8370 0.8640 +7316 8405 0.5620 +7316 8440 0.4940 +7316 8443 0.5000 +7316 8445 0.4160 +7316 8450 0.6110 +7316 8451 0.8250 +7316 8452 0.8320 +7316 8453 0.8210 +7316 8454 0.9760 +7316 8464 0.4330 +7316 8517 0.9990 +7316 8528 0.4990 +7316 8533 0.5170 +7316 8540 0.5280 +7316 8549 0.5820 +7316 8554 0.4520 +7316 8650 0.5040 +7316 8651 0.5240 +7316 8655 0.5650 +7316 8658 0.5420 +7316 8661 0.4020 +7316 8667 0.4620 +7316 8673 0.5150 +7316 8697 0.9010 +7316 8717 0.5850 +7316 8726 0.5260 +7316 8737 0.8370 +7316 8780 0.5940 +7316 8817 0.5390 +7316 8822 0.5410 +7316 8823 0.5390 +7316 8835 0.5420 +7316 8837 0.5370 +7316 8850 0.5400 +7316 8864 0.4990 +7316 8874 0.5080 +7316 8878 0.9990 +7316 8881 0.9000 +7316 8887 0.8780 +7316 8900 0.5590 +7316 8908 0.5490 +7316 8915 0.5350 +7316 8924 0.6710 +7316 8945 0.9340 +7316 8968 0.9350 +7316 8969 0.9280 +7316 8970 0.9590 +7316 8975 0.8800 +7316 8994 0.5010 +7316 9020 0.5650 +7316 9021 0.5250 +7316 9025 0.9080 +7316 9039 0.6840 +7316 9040 0.6790 +7316 9045 0.6320 +7316 9070 0.9260 +7316 9097 0.9980 +7316 9098 0.4040 +7316 9099 0.9980 +7316 9100 0.8380 +7316 9101 0.9970 +7316 9134 0.5290 +7316 9146 0.9900 +7316 9148 0.5050 +7316 9156 0.5310 +7316 9184 0.5370 +7316 9185 0.5090 +7316 9212 0.6670 +7316 9232 0.5270 +7316 9246 0.9930 +7316 9306 0.4060 +7316 9318 0.5210 +7316 9320 0.7520 +7316 9341 0.5430 +7316 9349 0.6220 +7316 9354 0.5180 +7316 9365 0.5090 +7316 9373 0.9870 +7316 9491 0.5650 +7316 9525 0.4340 +7316 9542 0.5200 +7316 9557 0.5450 +7316 9577 0.6890 +7316 9611 0.6500 +7316 9612 0.6400 +7316 9616 0.6320 +7316 9636 0.5860 +7316 9641 0.8360 +7316 9645 0.4390 +7316 9646 0.5600 +7316 9656 0.5410 +7316 9682 0.4990 +7316 9683 0.7650 +7316 9690 0.8550 +7316 9700 0.5160 +7316 9732 0.4960 +7316 9733 0.4150 +7316 9736 0.9820 +7316 9739 0.6520 +7316 9768 0.4990 +7316 9772 0.4570 +7316 9781 0.6840 +7316 9787 0.4110 +7316 9810 0.5810 +7316 9817 0.7960 +7316 9825 0.4090 +7316 9861 0.9510 +7316 9870 0.7080 +7316 9892 0.5110 +7316 9927 0.6080 +7316 9929 0.9130 +7316 9937 0.6340 +7316 9958 0.9890 +7316 9960 0.8670 +7316 9965 0.5070 +7316 9978 0.9730 +7316 9987 0.5100 +7316 10005 0.5130 +7316 10010 0.5600 +7316 10013 0.9950 +7316 10015 0.6670 +7316 10038 0.5280 +7316 10043 0.9840 +7316 10054 0.8550 +7316 10062 0.4130 +7316 10075 0.9790 +7316 10110 0.4470 +7316 10111 0.5170 +7316 10124 0.4560 +7316 10133 0.9960 +7316 10155 0.7000 +7316 10193 0.6090 +7316 10197 0.5270 +7316 10206 0.4990 +7316 10209 0.7740 +7316 10211 0.5910 +7316 10213 0.9970 +7316 10226 0.4430 +7316 10241 0.8620 +7316 10252 0.4990 +7316 10253 0.4990 +7316 10254 0.9950 +7316 10273 0.8500 +7316 10277 0.5000 +7316 10299 0.6640 +7316 10318 0.9820 +7316 10392 0.9490 +7316 10393 0.9110 +7316 10399 0.6490 +7316 10401 0.4350 +7316 10425 0.5850 +7316 10454 0.6310 +7316 10455 0.5390 +7316 10459 0.5220 +7316 10474 0.6520 +7316 10477 0.7900 +7316 10517 0.4140 +7316 10524 0.5280 +7316 10533 0.6370 +7316 10594 0.4320 +7316 10600 0.8760 +7316 10602 0.4180 +7316 10612 0.5390 +7316 10613 0.5160 +7316 10616 0.9990 +7316 10617 0.9710 +7316 10626 0.4140 +7316 10661 0.9500 +7316 10670 0.5140 +7316 10714 0.5420 +7316 10818 0.5070 +7316 10868 0.7050 +7316 10869 0.6550 +7316 10901 0.5420 +7316 10919 0.5970 +7316 10920 0.5550 +7316 10956 0.5680 +7316 10965 0.5230 +7316 10980 0.6650 +7316 10987 0.7400 +7316 11001 0.5530 +7316 11035 0.5440 +7316 11047 0.9930 +7316 11057 0.4820 +7316 11059 0.9860 +7316 11060 0.9320 +7316 11065 0.9420 +7316 11072 0.4740 +7316 11091 0.9110 +7316 11124 0.8450 +7316 11140 0.5400 +7316 11160 0.6550 +7316 11200 0.5370 +7316 11201 0.9900 +7316 11224 0.6270 +7316 11236 0.4720 +7316 11267 0.5260 +7316 11274 0.6160 +7316 11315 0.5510 +7316 11342 0.9040 +7316 22905 0.7530 +7316 22909 0.7440 +7316 22954 0.7080 +7316 22992 0.5380 +7316 23030 0.4990 +7316 23032 0.7310 +7316 23053 0.5370 +7316 23067 0.6430 +7316 23072 0.8090 +7316 23077 0.9130 +7316 23113 0.5830 +7316 23118 0.9990 +7316 23142 0.5460 +7316 23163 0.9860 +7316 23168 0.5530 +7316 23194 0.5800 +7316 23198 0.5710 +7316 23204 0.4400 +7316 23220 0.4990 +7316 23252 0.8760 +7316 23284 0.4120 +7316 23291 0.5250 +7316 23304 0.5590 +7316 23321 0.5140 +7316 23326 0.8280 +7316 23327 0.9960 +7316 23351 0.6280 +7316 23358 0.4300 +7316 23361 0.8210 +7316 23363 0.5840 +7316 23370 0.5010 +7316 23412 0.5030 +7316 23417 0.4990 +7316 23420 0.4260 +7316 23421 0.4990 +7316 23512 0.5370 +7316 23521 0.7900 +7316 23586 0.9720 +7316 23594 0.4990 +7316 23595 0.5390 +7316 23600 0.4990 +7316 23607 0.9470 +7316 23608 0.5210 +7316 23640 0.4040 +7316 23643 0.5130 +7316 23678 0.4120 +7316 25820 0.9720 +7316 25847 0.8040 +7316 25862 0.5620 +7316 25873 0.6600 +7316 25898 0.6590 +7316 25906 0.8970 +7316 25930 0.6010 +7316 25978 0.5040 +7316 25999 0.4610 +7316 26018 0.5170 +7316 26043 0.8440 +7316 26046 0.5680 +7316 26061 0.5110 +7316 26063 0.5290 +7316 26088 0.6910 +7316 26119 0.4990 +7316 26224 0.5850 +7316 26234 0.5120 +7316 26271 0.5210 +7316 26281 0.5410 +7316 26986 0.6110 +7316 26994 0.4050 +7316 27005 0.9950 +7316 27006 0.5410 +7316 27097 0.5020 +7316 27183 0.4290 +7316 27243 0.5820 +7316 27248 0.5310 +7316 27338 0.9960 +7316 28514 0.4670 +7316 28952 0.4990 +7316 28991 0.6060 +7316 28998 0.5250 +7316 29086 0.5580 +7316 29089 0.8310 +7316 29099 0.4990 +7316 29110 0.6810 +7316 29116 0.5590 +7316 29761 0.8970 +7316 29882 0.9610 +7316 29924 0.7860 +7316 29945 0.9050 +7316 29978 0.9970 +7316 29979 0.9960 +7316 30011 0.9910 +7316 30827 0.4480 +7316 50613 0.4920 +7316 50813 0.5350 +7316 50846 0.5020 +7316 50848 0.5050 +7316 50855 0.4990 +7316 51001 0.4990 +7316 51009 0.5170 +7316 51028 0.9820 +7316 51035 0.9030 +7316 51053 0.5300 +7316 51065 0.5740 +7316 51069 0.4560 +7316 51081 0.5030 +7316 51096 0.4990 +7316 51121 0.5210 +7316 51122 0.4990 +7316 51132 0.9370 +7316 51138 0.5700 +7316 51143 0.5030 +7316 51149 0.4860 +7316 51154 0.4240 +7316 51160 0.7090 +7316 51179 0.5180 +7316 51230 0.5660 +7316 51255 0.6750 +7316 51268 0.5070 +7316 51271 0.8160 +7316 51319 0.4910 +7316 51322 0.5600 +7316 51343 0.9110 +7316 51366 0.9560 +7316 51377 0.9650 +7316 51397 0.4990 +7316 51426 0.5550 +7316 51428 0.6080 +7316 51433 0.9110 +7316 51434 0.8960 +7316 51455 0.9730 +7316 51465 0.7760 +7316 51510 0.4330 +7316 51512 0.5070 +7316 51514 0.5160 +7316 51529 0.9060 +7316 51567 0.9000 +7316 51588 0.5590 +7316 51592 0.5880 +7316 51616 0.6730 +7316 51619 0.8460 +7316 51652 0.5190 +7316 51676 0.6610 +7316 51684 0.5120 +7316 51710 0.8200 +7316 51720 0.9960 +7316 53347 0.7530 +7316 54107 0.5120 +7316 54145 0.6130 +7316 54165 0.8080 +7316 54363 0.5180 +7316 54469 0.6720 +7316 54472 0.7360 +7316 54476 0.9310 +7316 54492 0.4690 +7316 54567 0.4530 +7316 54583 0.5120 +7316 54623 0.5070 +7316 54629 0.9750 +7316 54677 0.4990 +7316 54726 0.7010 +7316 54764 0.9900 +7316 54778 0.7370 +7316 54894 0.5540 +7316 54926 0.9920 +7316 54939 0.5420 +7316 54951 0.5420 +7316 55031 0.5200 +7316 55048 0.5520 +7316 55054 0.6470 +7316 55072 0.9990 +7316 55119 0.6020 +7316 55120 0.5090 +7316 55173 0.4390 +7316 55208 0.5860 +7316 55215 0.9650 +7316 55236 0.9930 +7316 55252 0.5570 +7316 55272 0.4390 +7316 55284 0.6870 +7316 55294 0.7950 +7316 55316 0.5440 +7316 55366 0.5190 +7316 55432 0.9960 +7316 55578 0.4340 +7316 55585 0.6900 +7316 55593 0.9820 +7316 55611 0.9960 +7316 55635 0.4440 +7316 55658 0.5810 +7316 55666 0.9980 +7316 55669 0.5990 +7316 55670 0.4990 +7316 55768 0.6250 +7316 55777 0.4670 +7316 55793 0.9790 +7316 55825 0.5290 +7316 55829 0.5140 +7316 55905 0.6980 +7316 55914 0.5280 +7316 55968 0.8080 +7316 56061 0.4110 +7316 56254 0.6230 +7316 56288 0.5220 +7316 56655 0.5090 +7316 56658 0.4270 +7316 56852 0.9950 +7316 56893 0.7640 +7316 56897 0.5870 +7316 56943 0.8190 +7316 56957 0.9930 +7316 56970 0.6020 +7316 56992 0.4670 +7316 57154 0.9020 +7316 57162 0.5440 +7316 57448 0.4470 +7316 57506 0.9170 +7316 57520 0.4730 +7316 57530 0.4990 +7316 57534 0.4560 +7316 57558 0.6180 +7316 57559 0.9890 +7316 57563 0.4980 +7316 57599 0.9850 +7316 57646 0.9910 +7316 57695 0.7030 +7316 57697 0.5460 +7316 57804 0.5010 +7316 58508 0.8090 +7316 58513 0.7730 +7316 59269 0.5530 +7316 59349 0.6820 +7316 59352 0.5110 +7316 63893 0.7630 +7316 63931 0.4670 +7316 64127 0.5220 +7316 64135 0.9090 +7316 64221 0.5510 +7316 64326 0.5670 +7316 64344 0.5390 +7316 64682 0.8960 +7316 64708 0.5350 +7316 64750 0.9950 +7316 64772 0.4460 +7316 64839 0.5800 +7316 64844 0.4010 +7316 64854 0.9400 +7316 64858 0.5050 +7316 64963 0.5030 +7316 64969 0.4170 +7316 65018 0.9890 +7316 65125 0.4260 +7316 65264 0.6690 +7316 65267 0.4170 +7316 78990 0.9870 +7316 79002 0.5090 +7316 79029 0.5430 +7316 79036 0.4870 +7316 79139 0.5430 +7316 79155 0.9890 +7316 79184 0.8620 +7316 79444 0.9550 +7316 79577 0.6590 +7316 79590 0.4200 +7316 79594 0.5570 +7316 79643 0.5080 +7316 79720 0.5130 +7316 79728 0.4550 +7316 79813 0.5780 +7316 79866 0.4990 +7316 79876 0.6040 +7316 80010 0.4990 +7316 80028 0.5350 +7316 80124 0.6810 +7316 80149 0.5290 +7316 80196 0.5010 +7316 80198 0.5460 +7316 80216 0.4990 +7316 80233 0.8380 +7316 80349 0.5490 +7316 80351 0.5460 +7316 80818 0.8200 +7316 80856 0.5100 +7316 81030 0.5090 +7316 81620 0.5800 +7316 81631 0.6240 +7316 81844 0.5860 +7316 81847 0.5120 +7316 81858 0.8260 +7316 83473 0.4560 +7316 83667 0.4180 +7316 83737 0.9930 +7316 83752 0.5190 +7316 83932 0.8640 +7316 83987 0.5950 +7316 83990 0.5240 +7316 84078 0.5080 +7316 84126 0.5130 +7316 84133 0.5540 +7316 84142 0.6740 +7316 84164 0.4420 +7316 84166 0.5010 +7316 84196 0.6840 +7316 84231 0.5760 +7316 84259 0.5460 +7316 84261 0.4140 +7316 84301 0.9080 +7316 84313 0.5050 +7316 84444 0.9550 +7316 84447 0.6100 +7316 84464 0.6350 +7316 84515 0.5090 +7316 84557 0.5950 +7316 84640 0.6120 +7316 84661 0.8700 +7316 84669 0.4090 +7316 84678 0.5250 +7316 84708 0.9040 +7316 84749 0.9920 +7316 84870 0.5080 +7316 84875 0.5160 +7316 84937 0.5340 +7316 84959 0.7150 +7316 84962 0.5010 +7316 84993 0.9730 +7316 85015 0.5880 +7316 85235 0.5710 +7316 85236 0.9600 +7316 85363 0.4530 +7316 89780 0.5140 +7316 89853 0.5070 +7316 89941 0.4120 +7316 90268 0.9980 +7316 91319 0.5170 +7316 91442 0.5390 +7316 91445 0.7150 +7316 91782 0.5040 +7316 92181 0.6330 +7316 92305 0.5350 +7316 92421 0.4990 +7316 92552 0.9760 +7316 92610 0.4990 +7316 92815 0.5710 +7316 92912 0.6420 +7316 93343 0.5070 +7316 93624 0.4180 +7316 112399 0.5180 +7316 113177 0.5200 +7316 113878 0.5970 +7316 114785 0.4520 +7316 114803 0.6960 +7316 114987 0.5210 +7316 115560 0.8210 +7316 116028 0.4990 +7316 116832 0.4860 +7316 117584 0.4600 +7316 118424 0.7400 +7316 119504 0.8960 +7316 121504 0.8640 +7316 121536 0.8040 +7316 122706 0.5590 +7316 122970 0.5230 +7316 123169 0.5020 +7316 124739 0.5680 +7316 126119 0.9840 +7316 126374 0.5010 +7316 126402 0.4990 +7316 126961 0.9350 +7316 127002 0.4860 +7316 128312 0.6120 +7316 128866 0.5010 +7316 130617 0.9430 +7316 133746 0.4420 +7316 137492 0.5440 +7316 139285 0.4990 +7316 140032 0.5430 +7316 140735 0.5370 +7316 140739 0.6350 +7316 140801 0.4960 +7316 142678 0.6860 +7316 143471 0.6830 +7316 143630 0.4700 +7316 144165 0.5280 +7316 146310 0.4220 +7316 146433 0.4990 +7316 146956 0.5420 +7316 147945 0.4990 +7316 148022 0.5150 +7316 148266 0.8200 +7316 148581 0.6770 +7316 149951 0.5180 +7316 150684 0.5070 +7316 152006 0.9440 +7316 152137 0.6150 +7316 152831 0.5090 +7316 155382 0.4990 +7316 158880 0.5840 +7316 161725 0.7270 +7316 161742 0.4990 +7316 165918 0.9910 +7316 166378 0.5430 +7316 170622 0.6620 +7316 171023 0.6030 +7316 171222 0.9200 +7316 196743 0.4990 +7316 197131 0.7700 +7316 197259 0.5380 +7316 197342 0.5490 +7316 199990 0.9150 +7316 200734 0.4990 +7316 200916 0.4990 +7316 201254 0.6530 +7316 219333 0.9420 +7316 219743 0.5260 +7316 220213 0.7600 +7316 220441 0.5390 +7316 221302 0.9980 +7316 221613 0.5810 +7316 221656 0.4180 +7316 221937 0.4430 +7316 222255 0.4850 +7316 246184 0.8960 +7316 254225 0.8350 +7316 254268 0.4780 +7316 255324 0.4990 +7316 255626 0.6130 +7316 257218 0.5630 +7316 257397 0.9200 +7316 283927 0.5020 +7316 284390 0.8200 +7316 284654 0.5270 +7316 285855 0.4740 +7316 286827 0.4500 +7316 317772 0.5710 +7316 333932 0.9350 +7316 337867 0.4970 +7316 339745 0.5610 +7316 340061 0.5130 +7316 340419 0.5080 +7316 343637 0.5130 +7316 347487 0.4870 +7316 349136 0.4140 +7316 353376 0.5150 +7316 353497 0.5070 +7316 373156 0.5190 +7316 374286 0.4140 +7316 378708 0.5020 +7316 378884 0.4470 +7316 387129 0.4700 +7316 387521 0.8320 +7316 387522 0.9760 +7316 389856 0.7870 +7316 390916 0.5080 +7316 399473 0.4990 +7316 404672 0.5320 +7316 440093 0.6760 +7316 440686 0.9650 +7316 440689 0.5350 +7316 494470 0.7130 +7316 548593 0.5020 +7316 554313 0.8640 +7316 644591 0.4190 +7316 645051 0.4030 +7316 645073 0.4030 +7316 645142 0.4190 +7316 653505 0.4580 +7316 653598 0.4190 +7316 653604 0.9660 +7316 723790 0.9280 +7316 728378 0.4880 +7316 728945 0.4190 +7316 729396 0.4030 +7316 729422 0.4030 +7316 729428 0.4030 +7316 729431 0.4030 +7316 729442 0.4030 +7316 729447 0.4030 +7316 730262 0.4190 +7316 100008586 0.4030 +7316 100132399 0.4030 +7316 100526842 0.4940 +7316 100529097 0.5050 +7316 100529239 0.5090 +7316 102724473 0.4030 +7316 105371242 0.4190 +7317 7318 0.9090 +7317 7319 0.9920 +7317 7320 0.9890 +7317 7321 0.9970 +7317 7322 0.9990 +7317 7323 0.9940 +7317 7324 0.9780 +7317 7325 0.9720 +7317 7326 0.9640 +7317 7327 0.9600 +7317 7328 0.9780 +7317 7329 0.8030 +7317 7332 0.9980 +7317 7334 0.9980 +7317 7335 0.8700 +7317 7336 0.8260 +7317 7337 0.8220 +7317 7341 0.7900 +7317 7345 0.6160 +7317 7347 0.5500 +7317 7353 0.5650 +7317 7403 0.4080 +7317 7404 0.4950 +7317 7415 0.8010 +7317 7529 0.5150 +7317 7531 0.6220 +7317 7543 0.7420 +7317 7544 0.5190 +7317 7592 0.4030 +7317 7706 0.5150 +7317 7712 0.5310 +7317 7874 0.4620 +7317 7965 0.6560 +7317 8065 0.4220 +7317 8078 0.8570 +7317 8139 0.8750 +7317 8218 0.5390 +7317 8237 0.6430 +7317 8239 0.6380 +7317 8241 0.6260 +7317 8242 0.7970 +7317 8266 0.4340 +7317 8284 0.5030 +7317 8287 0.4440 +7317 8335 0.4670 +7317 8349 0.5620 +7317 8450 0.6540 +7317 8451 0.5050 +7317 8452 0.7020 +7317 8453 0.4780 +7317 8454 0.7590 +7317 8665 0.4060 +7317 8856 0.5200 +7317 8881 0.4370 +7317 8883 0.7940 +7317 8916 0.4140 +7317 8975 0.5450 +7317 9025 0.4310 +7317 9039 0.8510 +7317 9040 0.9900 +7317 9054 0.4630 +7317 9097 0.6870 +7317 9099 0.5470 +7317 9101 0.4620 +7317 9140 0.6810 +7317 9146 0.4890 +7317 9184 0.4080 +7317 9246 0.8850 +7317 9276 0.4820 +7317 9282 0.4700 +7317 9319 0.4480 +7317 9320 0.5350 +7317 9354 0.6670 +7317 9373 0.4950 +7317 9474 0.4150 +7317 9531 0.4170 +7317 9601 0.4300 +7317 9615 0.4790 +7317 9616 0.5560 +7317 9636 0.6440 +7317 9861 0.4230 +7317 9978 0.7130 +7317 10054 0.6970 +7317 10075 0.7620 +7317 10155 0.4430 +7317 10209 0.4170 +7317 10213 0.7770 +7317 10243 0.4610 +7317 10273 0.7530 +7317 10277 0.5750 +7317 10299 0.4010 +7317 10477 0.9260 +7317 10533 0.7250 +7317 10537 0.8580 +7317 10574 0.4190 +7317 10576 0.4300 +7317 10617 0.5410 +7317 10628 0.5470 +7317 10808 0.6600 +7317 10963 0.5060 +7317 10980 0.4360 +7317 10987 0.5780 +7317 11047 0.5460 +7317 11059 0.4740 +7317 11060 0.5080 +7317 11065 0.9710 +7317 11169 0.5710 +7317 11183 0.5490 +7317 11337 0.4680 +7317 11345 0.5420 +7317 23019 0.5000 +7317 23020 0.5400 +7317 23198 0.4040 +7317 23327 0.7390 +7317 23352 0.4280 +7317 23361 0.5500 +7317 23476 0.4190 +7317 23710 0.5340 +7317 25820 0.8150 +7317 26046 0.6590 +7317 26100 0.5080 +7317 26168 0.4530 +7317 27068 0.4390 +7317 27197 0.4970 +7317 27304 0.4170 +7317 27338 0.9940 +7317 29089 0.9720 +7317 29978 0.5090 +7317 29979 0.5310 +7317 51185 0.5310 +7317 51257 0.4970 +7317 51377 0.4790 +7317 51433 0.4110 +7317 51465 0.8900 +7317 51520 0.6390 +7317 51529 0.4360 +7317 51540 0.4230 +7317 51569 0.6450 +7317 51619 0.9210 +7317 51710 0.5490 +7317 53917 0.5180 +7317 54926 0.9740 +7317 54960 0.4080 +7317 55016 0.5960 +7317 55034 0.5110 +7317 55072 0.6910 +7317 55236 0.9470 +7317 55284 0.9490 +7317 55585 0.6380 +7317 55611 0.7330 +7317 55666 0.6150 +7317 55832 0.4780 +7317 56254 0.6670 +7317 56474 0.4470 +7317 56852 0.4640 +7317 56893 0.4170 +7317 56957 0.4640 +7317 57128 0.5890 +7317 57448 0.4630 +7317 57559 0.4340 +7317 57574 0.4960 +7317 63893 0.7910 +7317 64422 0.6460 +7317 64750 0.4320 +7317 65264 0.9470 +7317 79184 0.4510 +7317 79876 0.6960 +7317 80258 0.5620 +7317 80267 0.4960 +7317 80818 0.5490 +7317 81605 0.6140 +7317 81631 0.4710 +7317 81858 0.5610 +7317 83544 0.4440 +7317 83737 0.5340 +7317 84231 0.5500 +7317 84954 0.4280 +7317 90268 0.4130 +7317 92181 0.5340 +7317 92912 0.8480 +7317 92979 0.4820 +7317 115560 0.5500 +7317 118424 0.8280 +7317 121441 0.4250 +7317 123228 0.4910 +7317 133482 0.5970 +7317 140739 0.8270 +7317 148266 0.5470 +7317 148581 0.7750 +7317 165918 0.4410 +7317 170082 0.4080 +7317 197131 0.6870 +7317 220972 0.5740 +7317 221302 0.5700 +7317 284390 0.5490 +7317 377841 0.4340 +7317 387082 0.6490 +7317 728378 0.5110 +7318 7319 0.9190 +7318 7320 0.9240 +7318 7321 0.8280 +7318 7322 0.8340 +7318 7323 0.8140 +7318 7324 0.8700 +7318 7325 0.9550 +7318 7326 0.8770 +7318 7327 0.7710 +7318 7328 0.7430 +7318 7329 0.5480 +7318 7332 0.9440 +7318 7334 0.9610 +7318 7335 0.6430 +7318 7336 0.6810 +7318 7341 0.5770 +7318 7375 0.4810 +7318 7415 0.5570 +7318 7706 0.8540 +7318 8078 0.5070 +7318 8237 0.4300 +7318 8454 0.4540 +7318 8638 0.4820 +7318 8916 0.4350 +7318 8975 0.4780 +7318 9039 0.6950 +7318 9040 0.8110 +7318 9054 0.4260 +7318 9097 0.4230 +7318 9100 0.5490 +7318 9140 0.4900 +7318 9246 0.9960 +7318 9373 0.4060 +7318 9616 0.4290 +7318 9636 0.9990 +7318 9978 0.5000 +7318 10213 0.5050 +7318 10243 0.4620 +7318 10346 0.4070 +7318 10379 0.5150 +7318 10477 0.7670 +7318 10533 0.7260 +7318 10537 0.5830 +7318 10561 0.4110 +7318 10987 0.4420 +7318 11065 0.7970 +7318 11201 0.5560 +7318 11274 0.9210 +7318 11345 0.4470 +7318 23586 0.7580 +7318 23710 0.4410 +7318 25820 0.4870 +7318 27304 0.4190 +7318 27338 0.8140 +7318 29089 0.6560 +7318 51191 0.9730 +7318 51426 0.5450 +7318 51455 0.5520 +7318 51465 0.7280 +7318 51540 0.4190 +7318 51569 0.5530 +7318 51619 0.7930 +7318 54739 0.4920 +7318 54926 0.8430 +7318 55008 0.6830 +7318 55034 0.5110 +7318 55080 0.4430 +7318 55236 0.9170 +7318 55284 0.7710 +7318 55337 0.4510 +7318 55585 0.6240 +7318 57674 0.4820 +7318 63893 0.7090 +7318 64108 0.4680 +7318 64135 0.4780 +7318 64422 0.6000 +7318 65264 0.7050 +7318 79132 0.5400 +7318 79184 0.4110 +7318 79792 0.4630 +7318 79876 0.6810 +7318 81554 0.5230 +7318 81605 0.6100 +7318 83666 0.4420 +7318 84557 0.4160 +7318 84875 0.4780 +7318 91543 0.4820 +7318 92912 0.6010 +7318 114803 0.4070 +7318 118424 0.7200 +7318 140739 0.7960 +7318 148581 0.7570 +7318 197131 0.5210 +7318 387082 0.5100 +7319 7320 0.9750 +7319 7322 0.7330 +7319 7324 0.5490 +7319 7332 0.7090 +7319 7334 0.9300 +7319 7335 0.9680 +7319 7336 0.9590 +7319 7337 0.7270 +7319 7341 0.6810 +7319 7750 0.6130 +7319 8338 0.4610 +7319 8340 0.7140 +7319 8341 0.7100 +7319 8342 0.7140 +7319 8345 0.7150 +7319 8347 0.7810 +7319 8348 0.7210 +7319 8349 0.7610 +7319 8450 0.7810 +7319 8454 0.4110 +7319 8970 0.7100 +7319 9025 0.4580 +7319 9039 0.7380 +7319 9097 0.4090 +7319 9184 0.4140 +7319 9320 0.5880 +7319 9354 0.5350 +7319 9491 0.4310 +7319 9616 0.4950 +7319 9646 0.7640 +7319 9810 0.9980 +7319 9978 0.5350 +7319 9987 0.4300 +7319 10015 0.4300 +7319 10054 0.4760 +7319 10075 0.5140 +7319 10213 0.4880 +7319 10273 0.8900 +7319 10277 0.5500 +7319 10459 0.4110 +7319 10477 0.5540 +7319 10479 0.4150 +7319 10533 0.6220 +7319 10537 0.4040 +7319 11065 0.4470 +7319 23067 0.4580 +7319 23168 0.7850 +7319 23304 0.9560 +7319 23352 0.7260 +7319 23597 0.4220 +7319 25820 0.7150 +7319 26046 0.7810 +7319 27304 0.4350 +7319 27338 0.4580 +7319 28985 0.7070 +7319 29089 0.5550 +7319 29945 0.4040 +7319 29978 0.4780 +7319 29979 0.4360 +7319 51012 0.4040 +7319 51035 0.5010 +7319 51322 0.7370 +7319 51366 0.4280 +7319 51455 0.4730 +7319 51529 0.6300 +7319 51692 0.4300 +7319 54145 0.4510 +7319 54623 0.6200 +7319 55093 0.6120 +7319 55236 0.8530 +7319 55284 0.5160 +7319 55585 0.5040 +7319 56254 0.9990 +7319 56852 0.9990 +7319 56888 0.7750 +7319 63932 0.5630 +7319 65991 0.4150 +7319 79577 0.7820 +7319 79876 0.6100 +7319 80335 0.4630 +7319 80349 0.6790 +7319 84231 0.4030 +7319 84250 0.5790 +7319 84893 0.5580 +7319 84901 0.4150 +7319 85236 0.7200 +7319 92912 0.5130 +7319 123169 0.7570 +7319 123803 0.6110 +7319 126961 0.4210 +7319 128312 0.4510 +7319 144983 0.4050 +7319 148581 0.5630 +7319 158983 0.4510 +7319 197131 0.9670 +7319 203427 0.4200 +7319 254065 0.4120 +7319 255626 0.7140 +7319 257218 0.4660 +7319 286436 0.4510 +7319 387082 0.6020 +7319 387521 0.4220 +7319 387522 0.5890 +7319 440689 0.4600 +7319 114483833 0.4520 +7320 7321 0.5080 +7320 7322 0.7430 +7320 7324 0.5330 +7320 7332 0.7340 +7320 7334 0.9290 +7320 7335 0.9790 +7320 7336 0.9660 +7320 7337 0.6010 +7320 7341 0.5160 +7320 7398 0.6210 +7320 7750 0.5770 +7320 7803 0.6290 +7320 8239 0.4870 +7320 8338 0.6800 +7320 8340 0.6970 +7320 8341 0.6960 +7320 8342 0.6970 +7320 8345 0.6980 +7320 8347 0.7000 +7320 8348 0.6970 +7320 8349 0.5240 +7320 8450 0.5460 +7320 8451 0.5870 +7320 8970 0.6970 +7320 9025 0.5110 +7320 9039 0.7070 +7320 9320 0.5680 +7320 9354 0.4550 +7320 9604 0.4260 +7320 9616 0.4180 +7320 9646 0.7310 +7320 9810 0.9970 +7320 9929 0.4160 +7320 9978 0.7570 +7320 10054 0.4900 +7320 10075 0.4210 +7320 10213 0.4580 +7320 10273 0.8850 +7320 10277 0.5220 +7320 10459 0.4230 +7320 10477 0.5460 +7320 10533 0.6450 +7320 10537 0.4300 +7320 10606 0.4960 +7320 10714 0.5550 +7320 11016 0.6370 +7320 11065 0.6630 +7320 22809 0.5100 +7320 23168 0.7650 +7320 23170 0.4240 +7320 23304 0.9750 +7320 23352 0.5570 +7320 26043 0.4140 +7320 27304 0.4370 +7320 27338 0.4440 +7320 29089 0.5530 +7320 30818 0.4110 +7320 51012 0.4140 +7320 51322 0.6580 +7320 51366 0.4350 +7320 51455 0.5150 +7320 51514 0.4990 +7320 51529 0.6230 +7320 54107 0.5440 +7320 54145 0.4210 +7320 54623 0.6140 +7320 55236 0.8380 +7320 55284 0.5330 +7320 55294 0.4590 +7320 55585 0.4460 +7320 56254 0.9980 +7320 56655 0.5450 +7320 56852 0.9990 +7320 57599 0.5960 +7320 57630 0.4640 +7320 57804 0.4990 +7320 79577 0.7360 +7320 79876 0.6030 +7320 80349 0.6400 +7320 84231 0.4460 +7320 84893 0.5720 +7320 84901 0.4210 +7320 85236 0.6950 +7320 85451 0.6050 +7320 92912 0.4920 +7320 123169 0.7440 +7320 128312 0.4200 +7320 148581 0.5680 +7320 158983 0.4220 +7320 197131 0.9850 +7320 255626 0.7140 +7320 257218 0.7090 +7320 284346 0.4870 +7320 286436 0.4220 +7320 387082 0.4370 +7320 387521 0.4120 +7320 387522 0.5890 +7320 440689 0.4200 +7320 114483833 0.4230 +7321 7322 0.9430 +7321 7323 0.7760 +7321 7324 0.8170 +7321 7326 0.4900 +7321 7327 0.4970 +7321 7328 0.6100 +7321 7332 0.6540 +7321 7334 0.5670 +7321 7335 0.9440 +7321 7336 0.8250 +7321 7337 0.9840 +7321 7341 0.6090 +7321 7415 0.5610 +7321 7428 0.6680 +7321 7517 0.4260 +7321 7552 0.5290 +7321 7681 0.6410 +7321 7706 0.9080 +7321 7874 0.4340 +7321 7979 0.5780 +7321 8065 0.6740 +7321 8239 0.7070 +7321 8309 0.5330 +7321 8310 0.5250 +7321 8405 0.5050 +7321 8443 0.5110 +7321 8451 0.5760 +7321 8452 0.6760 +7321 8453 0.8280 +7321 8454 0.9660 +7321 8517 0.6740 +7321 8528 0.4990 +7321 8540 0.5210 +7321 8651 0.5510 +7321 8697 0.8750 +7321 8717 0.6090 +7321 8737 0.6860 +7321 8805 0.5050 +7321 8837 0.5370 +7321 8877 0.4770 +7321 8881 0.8780 +7321 8883 0.6850 +7321 8900 0.6460 +7321 8915 0.5640 +7321 8945 0.9510 +7321 8994 0.5070 +7321 9021 0.5150 +7321 9025 0.7550 +7321 9039 0.8540 +7321 9040 0.5090 +7321 9097 0.4060 +7321 9184 0.6650 +7321 9212 0.5900 +7321 9232 0.6520 +7321 9246 0.5230 +7321 9320 0.9100 +7321 9354 0.7940 +7321 9412 0.4080 +7321 9491 0.4540 +7321 9577 0.7470 +7321 9604 0.4100 +7321 9616 0.9730 +7321 9618 0.6090 +7321 9666 0.4510 +7321 9690 0.9120 +7321 9700 0.6020 +7321 9736 0.4320 +7321 9781 0.4470 +7321 9810 0.4200 +7321 9861 0.4890 +7321 9870 0.8010 +7321 9978 0.9990 +7321 10005 0.5070 +7321 10013 0.6000 +7321 10043 0.4230 +7321 10054 0.4660 +7321 10055 0.4050 +7321 10075 0.8960 +7321 10155 0.4680 +7321 10197 0.4770 +7321 10210 0.8290 +7321 10213 0.6440 +7321 10254 0.4430 +7321 10273 0.9990 +7321 10277 0.7070 +7321 10299 0.4750 +7321 10330 0.4730 +7321 10346 0.4510 +7321 10393 0.9060 +7321 10413 0.4630 +7321 10425 0.5510 +7321 10455 0.5410 +7321 10475 0.4070 +7321 10477 0.4520 +7321 10533 0.6450 +7321 10537 0.4850 +7321 10612 0.6220 +7321 10616 0.6930 +7321 10617 0.5690 +7321 10901 0.5480 +7321 10919 0.5330 +7321 10965 0.5070 +7321 11001 0.5020 +7321 11043 0.4270 +7321 11059 0.7780 +7321 11060 0.7110 +7321 11065 0.8340 +7321 11074 0.8400 +7321 11275 0.4160 +7321 11342 0.4350 +7321 22888 0.4300 +7321 22954 0.8690 +7321 22974 0.4010 +7321 23019 0.4290 +7321 23072 0.5700 +7321 23142 0.5530 +7321 23291 0.8430 +7321 23295 0.4070 +7321 23304 0.4030 +7321 23321 0.6270 +7321 23327 0.9510 +7321 23412 0.5130 +7321 23417 0.5030 +7321 23586 0.7640 +7321 23600 0.5060 +7321 23609 0.5790 +7321 23624 0.4020 +7321 23640 0.8380 +7321 23643 0.4090 +7321 25793 0.4770 +7321 25820 0.9200 +7321 25831 0.4670 +7321 25898 0.6360 +7321 25906 0.8700 +7321 26001 0.8840 +7321 26043 0.6600 +7321 26046 0.4710 +7321 26061 0.5010 +7321 26063 0.5840 +7321 26994 0.8520 +7321 27246 0.6500 +7321 27338 0.8210 +7321 28952 0.5080 +7321 28991 0.5490 +7321 29099 0.5070 +7321 29116 0.9810 +7321 29128 0.8970 +7321 29882 0.8390 +7321 29945 0.8730 +7321 29979 0.5230 +7321 51053 0.4060 +7321 51122 0.5160 +7321 51127 0.7020 +7321 51132 0.9160 +7321 51179 0.4990 +7321 51185 0.8060 +7321 51191 0.4190 +7321 51255 0.8390 +7321 51257 0.5910 +7321 51268 0.4990 +7321 51343 0.7220 +7321 51397 0.5080 +7321 51433 0.8760 +7321 51434 0.8430 +7321 51529 0.9920 +7321 51569 0.6510 +7321 51619 0.9020 +7321 54101 0.4280 +7321 54165 0.6160 +7321 54363 0.4990 +7321 54469 0.5450 +7321 54476 0.5960 +7321 54583 0.5650 +7321 54677 0.4990 +7321 54708 0.6050 +7321 54778 0.4930 +7321 54926 0.4930 +7321 54939 0.5390 +7321 54941 0.9120 +7321 54951 0.5340 +7321 55016 0.7340 +7321 55072 0.9320 +7321 55122 0.4110 +7321 55208 0.5490 +7321 55236 0.8590 +7321 55585 0.4900 +7321 55611 0.9870 +7321 55658 0.8050 +7321 55670 0.5740 +7321 55743 0.7550 +7321 55819 0.4980 +7321 55825 0.5620 +7321 55832 0.4460 +7321 55905 0.7840 +7321 56254 0.4490 +7321 56658 0.7380 +7321 56852 0.5490 +7321 57154 0.6060 +7321 57162 0.4710 +7321 57448 0.4180 +7321 59348 0.4460 +7321 63891 0.5060 +7321 64135 0.6510 +7321 64320 0.8340 +7321 64326 0.6150 +7321 64344 0.5320 +7321 64682 0.8440 +7321 64750 0.9390 +7321 64844 0.4310 +7321 65264 0.4540 +7321 78990 0.7310 +7321 79102 0.4820 +7321 79184 0.6860 +7321 79444 0.6520 +7321 79589 0.7040 +7321 79594 0.7850 +7321 79718 0.4710 +7321 79813 0.5360 +7321 79845 0.4630 +7321 79876 0.6170 +7321 80019 0.5780 +7321 81559 0.4210 +7321 81620 0.5150 +7321 81786 0.7460 +7321 81847 0.9580 +7321 83666 0.4200 +7321 83737 0.7980 +7321 83752 0.5240 +7321 84231 0.5100 +7321 84259 0.5120 +7321 84676 0.7240 +7321 84937 0.6710 +7321 84962 0.4990 +7321 84993 0.4630 +7321 85363 0.4190 +7321 90678 0.6600 +7321 90850 0.5540 +7321 92912 0.6350 +7321 92979 0.4940 +7321 112399 0.5510 +7321 113878 0.5110 +7321 115426 0.7160 +7321 115992 0.4280 +7321 119504 0.8500 +7321 122970 0.5060 +7321 126374 0.4990 +7321 133482 0.5130 +7321 135892 0.6160 +7321 140462 0.4300 +7321 140691 0.4860 +7321 142678 0.5640 +7321 148022 0.4360 +7321 149951 0.5100 +7321 150684 0.6380 +7321 151636 0.8480 +7321 152006 0.5090 +7321 165918 0.7830 +7321 170622 0.5110 +7321 196403 0.6370 +7321 196743 0.5440 +7321 197131 0.7570 +7321 219743 0.5140 +7321 220972 0.7090 +7321 221302 0.5340 +7321 221687 0.4310 +7321 223082 0.5020 +7321 246184 0.8600 +7321 257218 0.4140 +7321 283927 0.5110 +7321 353376 0.4240 +7321 373156 0.5430 +7321 378884 0.6890 +7321 387082 0.4190 +7321 387521 0.6040 +7321 387522 0.6620 +7321 390916 0.5160 +7321 494470 0.6300 +7321 100532731 0.5660 +7322 7323 0.6400 +7322 7324 0.6300 +7322 7326 0.5090 +7322 7327 0.4990 +7322 7328 0.6240 +7322 7329 0.4550 +7322 7332 0.6830 +7322 7334 0.7360 +7322 7335 0.9740 +7322 7336 0.8830 +7322 7337 0.9840 +7322 7341 0.5640 +7322 7353 0.4350 +7322 7415 0.5220 +7322 7428 0.6730 +7322 7535 0.8380 +7322 7706 0.8360 +7322 8065 0.6440 +7322 8239 0.4030 +7322 8309 0.5330 +7322 8310 0.5230 +7322 8405 0.6620 +7322 8443 0.5230 +7322 8452 0.6860 +7322 8453 0.6290 +7322 8454 0.9930 +7322 8517 0.6200 +7322 8528 0.4990 +7322 8540 0.5180 +7322 8651 0.5420 +7322 8737 0.5420 +7322 8850 0.5680 +7322 8878 0.7690 +7322 8881 0.4690 +7322 8883 0.5000 +7322 8915 0.5400 +7322 8945 0.9900 +7322 8994 0.4990 +7322 9021 0.5190 +7322 9025 0.4710 +7322 9039 0.8220 +7322 9097 0.4350 +7322 9246 0.5070 +7322 9320 0.6500 +7322 9354 0.6940 +7322 9500 0.5410 +7322 9604 0.4520 +7322 9616 0.8290 +7322 9666 0.4720 +7322 9690 0.8410 +7322 9730 0.4190 +7322 9785 0.4620 +7322 9810 0.5280 +7322 9867 0.8210 +7322 9870 0.4400 +7322 9921 0.6940 +7322 9978 0.9990 +7322 10005 0.5100 +7322 10054 0.5120 +7322 10075 0.9570 +7322 10155 0.5690 +7322 10206 0.4820 +7322 10213 0.4420 +7322 10254 0.4500 +7322 10273 0.9860 +7322 10277 0.9150 +7322 10299 0.6770 +7322 10393 0.5000 +7322 10425 0.4150 +7322 10455 0.5410 +7322 10477 0.4510 +7322 10519 0.4560 +7322 10533 0.7090 +7322 10537 0.6300 +7322 10612 0.6170 +7322 10616 0.5970 +7322 10901 0.5480 +7322 10965 0.5060 +7322 11001 0.5020 +7322 11043 0.4290 +7322 11059 0.7610 +7322 11060 0.7970 +7322 11065 0.6710 +7322 11073 0.4030 +7322 11074 0.4690 +7322 11342 0.9300 +7322 22888 0.4690 +7322 22954 0.7150 +7322 23019 0.6090 +7322 23024 0.4530 +7322 23072 0.5630 +7322 23077 0.9350 +7322 23142 0.5410 +7322 23291 0.8440 +7322 23304 0.6000 +7322 23321 0.4730 +7322 23327 0.9990 +7322 23412 0.5010 +7322 23417 0.4990 +7322 23586 0.6430 +7322 23600 0.5060 +7322 23624 0.5810 +7322 23643 0.4010 +7322 25793 0.5820 +7322 25820 0.4880 +7322 25831 0.5060 +7322 25898 0.9580 +7322 26001 0.6640 +7322 26043 0.6680 +7322 26046 0.6060 +7322 26061 0.5030 +7322 26063 0.5710 +7322 26091 0.5170 +7322 26190 0.4310 +7322 26232 0.5600 +7322 26994 0.7230 +7322 27068 0.4450 +7322 27246 0.8010 +7322 27338 0.6460 +7322 28952 0.4990 +7322 28991 0.5460 +7322 29089 0.4200 +7322 29099 0.5040 +7322 29116 0.6090 +7322 29978 0.4180 +7322 29979 0.5780 +7322 50852 0.5460 +7322 51122 0.5150 +7322 51127 0.6820 +7322 51132 0.9700 +7322 51179 0.4990 +7322 51255 0.7850 +7322 51268 0.4990 +7322 51320 0.5580 +7322 51366 0.9190 +7322 51397 0.5290 +7322 51529 0.9660 +7322 51619 0.9030 +7322 53339 0.5920 +7322 54165 0.5800 +7322 54363 0.4990 +7322 54469 0.5310 +7322 54476 0.5370 +7322 54583 0.5280 +7322 54677 0.5010 +7322 54708 0.8530 +7322 54778 0.8060 +7322 54894 0.4200 +7322 54926 0.6260 +7322 54939 0.5220 +7322 54941 0.7530 +7322 54951 0.5220 +7322 55072 0.9870 +7322 55208 0.5110 +7322 55223 0.7940 +7322 55236 0.9630 +7322 55284 0.4940 +7322 55585 0.4450 +7322 55611 0.9760 +7322 55643 0.6130 +7322 55658 0.8880 +7322 55666 0.4080 +7322 55670 0.5260 +7322 55743 0.8250 +7322 55819 0.4380 +7322 55825 0.5620 +7322 55905 0.7340 +7322 56254 0.6010 +7322 56658 0.5410 +7322 56852 0.7480 +7322 56888 0.4530 +7322 57154 0.8640 +7322 57159 0.4790 +7322 57162 0.4220 +7322 57520 0.5020 +7322 64135 0.6070 +7322 64219 0.8380 +7322 64320 0.9910 +7322 64326 0.6460 +7322 64344 0.5430 +7322 64750 0.7410 +7322 64777 0.5750 +7322 64844 0.4440 +7322 65264 0.4700 +7322 78990 0.4430 +7322 79444 0.9890 +7322 79594 0.9970 +7322 79654 0.4800 +7322 79845 0.4440 +7322 79876 0.7010 +7322 80019 0.6600 +7322 81603 0.4370 +7322 81786 0.4160 +7322 81790 0.5610 +7322 83737 0.9270 +7322 83752 0.5060 +7322 84231 0.4990 +7322 84259 0.5130 +7322 84282 0.4700 +7322 84447 0.8440 +7322 84676 0.6330 +7322 84708 0.6810 +7322 84937 0.9120 +7322 84962 0.4990 +7322 85363 0.8510 +7322 90850 0.6000 +7322 90933 0.4130 +7322 91445 0.4750 +7322 92344 0.5250 +7322 92912 0.6310 +7322 112399 0.5270 +7322 113878 0.4820 +7322 115992 0.5740 +7322 117584 0.5320 +7322 122970 0.5060 +7322 126374 0.4990 +7322 133482 0.5450 +7322 135892 0.4030 +7322 142678 0.8240 +7322 146310 0.4790 +7322 148022 0.4140 +7322 149951 0.5130 +7322 150684 0.5090 +7322 151636 0.6380 +7322 152006 0.9960 +7322 165918 0.5780 +7322 170622 0.5040 +7322 196403 0.4390 +7322 196743 0.5440 +7322 197131 0.6970 +7322 201292 0.4230 +7322 219743 0.5140 +7322 221302 0.4740 +7322 222484 0.4110 +7322 223082 0.8780 +7322 283927 0.5110 +7322 339105 0.4130 +7322 353376 0.4190 +7322 373156 0.5420 +7322 387082 0.4080 +7322 387521 0.6860 +7322 387522 0.7350 +7322 390916 0.5150 +7322 445372 0.4450 +7322 494470 0.9260 +7322 100532731 0.5410 +7323 7324 0.4630 +7323 7332 0.4680 +7323 7334 0.7510 +7323 7335 0.9230 +7323 7336 0.7440 +7323 7337 0.9500 +7323 7341 0.5240 +7323 7415 0.4110 +7323 7428 0.6650 +7323 7703 0.4850 +7323 7706 0.8000 +7323 7726 0.4870 +7323 7756 0.4750 +7323 7874 0.5460 +7323 8065 0.6330 +7323 8309 0.5420 +7323 8310 0.5230 +7323 8337 0.4810 +7323 8338 0.4770 +7323 8361 0.4050 +7323 8369 0.4050 +7323 8443 0.5120 +7323 8450 0.4990 +7323 8451 0.4390 +7323 8452 0.6640 +7323 8453 0.7350 +7323 8454 0.7380 +7323 8517 0.5410 +7323 8528 0.4990 +7323 8540 0.5190 +7323 8651 0.5550 +7323 8737 0.6500 +7323 8878 0.7750 +7323 8883 0.5300 +7323 8887 0.9190 +7323 8915 0.5550 +7323 8945 0.8340 +7323 8994 0.5110 +7323 9021 0.5290 +7323 9025 0.8790 +7323 9039 0.8840 +7323 9246 0.5190 +7323 9318 0.5100 +7323 9320 0.5590 +7323 9354 0.8140 +7323 9584 0.4150 +7323 9616 0.9260 +7323 9636 0.5210 +7323 9690 0.7510 +7323 9730 0.4060 +7323 9810 0.4710 +7323 9829 0.4060 +7323 9867 0.6590 +7323 9870 0.4170 +7323 9921 0.6960 +7323 9978 0.9990 +7323 10005 0.5060 +7323 10054 0.4400 +7323 10075 0.6680 +7323 10155 0.4470 +7323 10193 0.6850 +7323 10209 0.5040 +7323 10210 0.5920 +7323 10254 0.4460 +7323 10273 0.9960 +7323 10277 0.9630 +7323 10296 0.4210 +7323 10299 0.4010 +7323 10336 0.5050 +7323 10425 0.4550 +7323 10454 0.4840 +7323 10455 0.5400 +7323 10475 0.4100 +7323 10533 0.6960 +7323 10537 0.4570 +7323 10612 0.4590 +7323 10616 0.9430 +7323 10728 0.4620 +7323 10901 0.5480 +7323 10965 0.5060 +7323 11001 0.5020 +7323 11043 0.4070 +7323 11059 0.7190 +7323 11060 0.9020 +7323 11065 0.5510 +7323 11074 0.6670 +7323 11146 0.6390 +7323 22888 0.5990 +7323 22954 0.8100 +7323 23072 0.6920 +7323 23077 0.4100 +7323 23118 0.5400 +7323 23142 0.6940 +7323 23291 0.7230 +7323 23321 0.4730 +7323 23327 0.9140 +7323 23412 0.5000 +7323 23417 0.4990 +7323 23586 0.6480 +7323 23600 0.5060 +7323 23640 0.4380 +7323 23643 0.4050 +7323 25793 0.5850 +7323 25820 0.7390 +7323 25827 0.5530 +7323 25831 0.5560 +7323 25893 0.4040 +7323 25898 0.4200 +7323 26001 0.4280 +7323 26043 0.5950 +7323 26061 0.5070 +7323 26063 0.5750 +7323 26118 0.4040 +7323 26224 0.5260 +7323 26249 0.4140 +7323 26259 0.7410 +7323 26994 0.8020 +7323 27246 0.6790 +7323 27338 0.5930 +7323 28952 0.4990 +7323 28991 0.5420 +7323 29099 0.5040 +7323 29116 0.6190 +7323 29128 0.7570 +7323 29979 0.4170 +7323 51122 0.5490 +7323 51127 0.4970 +7323 51179 0.4990 +7323 51185 0.5070 +7323 51255 0.7240 +7323 51268 0.4990 +7323 51320 0.4330 +7323 51343 0.4230 +7323 51366 0.7420 +7323 51397 0.5040 +7323 51529 0.8080 +7323 51592 0.6210 +7323 51619 0.6170 +7323 54165 0.8060 +7323 54363 0.4990 +7323 54469 0.6020 +7323 54476 0.5680 +7323 54583 0.5400 +7323 54677 0.4990 +7323 54708 0.4200 +7323 54778 0.5860 +7323 54894 0.4200 +7323 54939 0.5220 +7323 54941 0.7870 +7323 54951 0.5300 +7323 55072 0.9480 +7323 55122 0.4380 +7323 55167 0.5280 +7323 55208 0.5100 +7323 55236 0.8630 +7323 55585 0.4480 +7323 55611 0.9450 +7323 55658 0.7260 +7323 55670 0.4990 +7323 55743 0.7920 +7323 55819 0.4760 +7323 55825 0.5620 +7323 55905 0.5210 +7323 56254 0.4890 +7323 56658 0.5440 +7323 56852 0.5840 +7323 57154 0.9320 +7323 57159 0.6200 +7323 57162 0.4850 +7323 57520 0.5560 +7323 57630 0.6080 +7323 64135 0.4650 +7323 64219 0.5910 +7323 64320 0.8170 +7323 64344 0.5320 +7323 64750 0.9290 +7323 64844 0.5000 +7323 78990 0.4690 +7323 79139 0.4440 +7323 79589 0.4340 +7323 79594 0.6850 +7323 79845 0.5000 +7323 79876 0.6480 +7323 80019 0.8220 +7323 80196 0.4690 +7323 81559 0.4060 +7323 81786 0.4190 +7323 81847 0.6760 +7323 83737 0.7990 +7323 83752 0.5100 +7323 84108 0.4620 +7323 84231 0.4510 +7323 84259 0.5070 +7323 84282 0.6080 +7323 84333 0.7860 +7323 84447 0.7350 +7323 84675 0.6540 +7323 84676 0.8490 +7323 84759 0.4750 +7323 84937 0.7730 +7323 84962 0.5140 +7323 85363 0.6990 +7323 90850 0.5530 +7323 91445 0.7100 +7323 92305 0.4150 +7323 112399 0.5230 +7323 115426 0.6570 +7323 115992 0.4040 +7323 117584 0.7660 +7323 122970 0.5060 +7323 126374 0.5140 +7323 127544 0.4070 +7323 133482 0.5360 +7323 140691 0.4210 +7323 140883 0.4320 +7323 148022 0.4220 +7323 148581 0.4890 +7323 149951 0.4990 +7323 150684 0.5090 +7323 151636 0.4700 +7323 152006 0.4290 +7323 165918 0.8800 +7323 170622 0.5010 +7323 196743 0.5440 +7323 197131 0.4540 +7323 219743 0.4990 +7323 220972 0.5960 +7323 221302 0.5080 +7323 221656 0.5990 +7323 222235 0.4550 +7323 223082 0.8240 +7323 283927 0.5110 +7323 353376 0.4130 +7323 373156 0.5290 +7323 378884 0.6150 +7323 387082 0.5630 +7323 387522 0.4780 +7323 390916 0.5110 +7323 494470 0.5540 +7323 100532731 0.6760 +7324 7325 0.9380 +7324 7329 0.5380 +7324 7332 0.4960 +7324 7334 0.4970 +7324 7335 0.7350 +7324 7336 0.7120 +7324 7337 0.8250 +7324 7341 0.5870 +7324 7529 0.4620 +7324 7681 0.4320 +7324 7706 0.6400 +7324 7874 0.7020 +7324 7979 0.4120 +7324 8340 0.5260 +7324 8341 0.5260 +7324 8342 0.5260 +7324 8345 0.5280 +7324 8347 0.5310 +7324 8348 0.5270 +7324 8349 0.4020 +7324 8452 0.5200 +7324 8697 0.8400 +7324 8833 0.4240 +7324 8881 0.8510 +7324 8900 0.5600 +7324 8915 0.5210 +7324 8970 0.5250 +7324 9025 0.6300 +7324 9039 0.7290 +7324 9101 0.8070 +7324 9184 0.5780 +7324 9212 0.5400 +7324 9232 0.5260 +7324 9246 0.5580 +7324 9320 0.5210 +7324 9354 0.4510 +7324 9491 0.4160 +7324 9604 0.4820 +7324 9636 0.8390 +7324 9646 0.4400 +7324 9700 0.5340 +7324 9810 0.8230 +7324 9861 0.4710 +7324 9927 0.4350 +7324 9978 0.6290 +7324 10054 0.4200 +7324 10059 0.4580 +7324 10155 0.4390 +7324 10197 0.4430 +7324 10210 0.6850 +7324 10213 0.5480 +7324 10221 0.7940 +7324 10273 0.7850 +7324 10277 0.4270 +7324 10393 0.8630 +7324 10477 0.9600 +7324 10533 0.6150 +7324 10612 0.4150 +7324 10919 0.5290 +7324 11060 0.4450 +7324 11065 0.8230 +7324 11274 0.5400 +7324 22888 0.5780 +7324 22954 0.8290 +7324 23327 0.8700 +7324 23586 0.4820 +7324 25820 0.8020 +7324 25906 0.8250 +7324 26001 0.9430 +7324 26994 0.4960 +7324 27338 0.8330 +7324 28951 0.7890 +7324 29089 0.4550 +7324 29882 0.8240 +7324 29945 0.8880 +7324 51053 0.4190 +7324 51127 0.4950 +7324 51132 0.4810 +7324 51191 0.7020 +7324 51194 0.7150 +7324 51255 0.7470 +7324 51257 0.4630 +7324 51343 0.5910 +7324 51433 0.8360 +7324 51434 0.8310 +7324 51529 0.8680 +7324 51592 0.4090 +7324 54145 0.5280 +7324 54623 0.5350 +7324 54708 0.7830 +7324 55070 0.8820 +7324 55072 0.4680 +7324 55148 0.6060 +7324 55236 0.7330 +7324 55284 0.5070 +7324 55585 0.5980 +7324 55611 0.8230 +7324 55819 0.4360 +7324 55905 0.4380 +7324 56254 0.8980 +7324 56658 0.4370 +7324 56852 0.5120 +7324 57574 0.4130 +7324 57654 0.4070 +7324 64320 0.4380 +7324 64326 0.4770 +7324 64682 0.8460 +7324 64844 0.4560 +7324 79577 0.4880 +7324 79589 0.4090 +7324 79813 0.5290 +7324 79876 0.6320 +7324 79892 0.5770 +7324 81620 0.4320 +7324 81786 0.4010 +7324 83737 0.7210 +7324 83931 0.6320 +7324 84231 0.4090 +7324 84937 0.4350 +7324 85236 0.5340 +7324 92912 0.4390 +7324 92979 0.6350 +7324 118424 0.5560 +7324 119504 0.8230 +7324 128312 0.5280 +7324 135892 0.6470 +7324 140691 0.4020 +7324 158983 0.5270 +7324 165918 0.5470 +7324 197131 0.5120 +7324 223082 0.4930 +7324 246184 0.8390 +7324 254225 0.4320 +7324 255626 0.5260 +7324 285671 0.5010 +7324 286436 0.5270 +7324 378884 0.6980 +7324 387082 0.4240 +7324 387522 0.4390 +7324 440689 0.5280 +7324 494470 0.5390 +7324 100532731 0.5270 +7324 114483833 0.5290 +7325 7334 0.4910 +7325 7335 0.6010 +7325 7336 0.6830 +7325 7337 0.6470 +7325 7341 0.5700 +7325 7416 0.4070 +7325 7706 0.7380 +7325 7844 0.5750 +7325 7965 0.4900 +7325 8452 0.5000 +7325 8454 0.4670 +7325 8836 0.4240 +7325 8872 0.5020 +7325 8916 0.5130 +7325 9025 0.9010 +7325 9039 0.6830 +7325 9320 0.5400 +7325 9529 0.4310 +7325 9604 0.6790 +7325 9627 0.5890 +7325 9636 0.7330 +7325 9666 0.5920 +7325 9810 0.4290 +7325 9978 0.5640 +7325 10054 0.4020 +7325 10155 0.4110 +7325 10273 0.6840 +7325 10277 0.4130 +7325 10296 0.5030 +7325 10425 0.4120 +7325 10477 0.9360 +7325 10533 0.6520 +7325 10537 0.4700 +7325 10935 0.4180 +7325 11274 0.6310 +7325 11315 0.4030 +7325 22888 0.4940 +7325 22954 0.5860 +7325 23208 0.5030 +7325 23327 0.4990 +7325 25820 0.8290 +7325 25897 0.4440 +7325 29945 0.4260 +7325 51132 0.9760 +7325 51191 0.7640 +7325 51194 0.7140 +7325 54901 0.4380 +7325 54941 0.5430 +7325 55008 0.4810 +7325 55070 0.7850 +7325 55072 0.4850 +7325 55236 0.7710 +7325 55284 0.5280 +7325 55611 0.7020 +7325 56254 0.6930 +7325 56658 0.4490 +7325 56852 0.4880 +7325 64320 0.5030 +7325 65018 0.4100 +7325 79876 0.6670 +7325 83737 0.6660 +7325 84231 0.7740 +7325 84901 0.4440 +7325 135138 0.4730 +7325 135892 0.4160 +7325 140902 0.4130 +7325 145741 0.6910 +7325 165918 0.5460 +7325 387082 0.4550 +7325 387522 0.4390 +7325 388125 0.5800 +7326 7327 0.9150 +7326 7328 0.5710 +7326 7332 0.5000 +7326 7335 0.6010 +7326 7336 0.7260 +7326 7341 0.4460 +7326 8451 0.4220 +7326 8452 0.4110 +7326 8453 0.5630 +7326 8454 0.6010 +7326 8883 0.5330 +7326 9039 0.7820 +7326 9320 0.4500 +7326 9354 0.6180 +7326 9616 0.4150 +7326 9781 0.4410 +7326 9978 0.9290 +7326 10054 0.4730 +7326 10277 0.6330 +7326 10299 0.6170 +7326 10477 0.5080 +7326 10533 0.6060 +7326 11065 0.4960 +7326 11343 0.4200 +7326 23327 0.4350 +7326 23678 0.7760 +7326 25820 0.5070 +7326 26268 0.5010 +7326 26994 0.4050 +7326 27252 0.4760 +7326 27338 0.4910 +7326 29945 0.4440 +7326 51185 0.6810 +7326 51465 0.9290 +7326 51529 0.4040 +7326 54778 0.5430 +7326 54926 0.4310 +7326 55236 0.8800 +7326 55298 0.4190 +7326 55585 0.4970 +7326 55832 0.4580 +7326 56852 0.4330 +7326 56929 0.4020 +7326 63893 0.4380 +7326 64750 0.4700 +7326 79876 0.6320 +7326 80204 0.4750 +7326 83737 0.6000 +7326 84231 0.4070 +7326 84447 0.7670 +7326 84676 0.4700 +7326 92912 0.6180 +7326 116254 0.5170 +7326 118424 0.6460 +7326 197021 0.4340 +7326 286343 0.4400 +7326 387522 0.5090 +7327 7328 0.5540 +7327 7332 0.5220 +7327 7335 0.5380 +7327 7336 0.6230 +7327 7353 0.7110 +7327 7415 0.5530 +7327 7874 0.4160 +7327 7993 0.6760 +7327 8266 0.5780 +7327 8836 0.4170 +7327 9039 0.6670 +7327 9527 0.4060 +7327 9694 0.5070 +7327 9695 0.5370 +7327 9978 0.7450 +7327 10277 0.6040 +7327 10299 0.9960 +7327 10477 0.4990 +7327 10533 0.6460 +7327 10595 0.4090 +7327 10956 0.8060 +7327 11065 0.5110 +7327 11124 0.6760 +7327 11231 0.4210 +7327 11236 0.8840 +7327 23190 0.6200 +7327 23197 0.8950 +7327 25852 0.4120 +7327 26046 0.4250 +7327 27248 0.8310 +7327 27338 0.5190 +7327 29927 0.5710 +7327 51009 0.8060 +7327 51234 0.8540 +7327 51439 0.4790 +7327 51465 0.9650 +7327 54431 0.5360 +7327 54926 0.4790 +7327 55016 0.4260 +7327 55236 0.8380 +7327 55284 0.4960 +7327 55585 0.6570 +7327 55611 0.4360 +7327 55666 0.6710 +7327 55741 0.4420 +7327 55743 0.4290 +7327 55831 0.9070 +7327 56852 0.7520 +7327 57574 0.4430 +7327 64432 0.4780 +7327 64844 0.4040 +7327 65264 0.6890 +7327 79139 0.6460 +7327 79876 0.6420 +7327 80267 0.4750 +7327 81790 0.4500 +7327 83590 0.4600 +7327 84447 0.8580 +7327 91319 0.8030 +7327 92305 0.4520 +7327 92912 0.6100 +7327 114088 0.7870 +7327 118424 0.8490 +7327 120224 0.4910 +7327 153830 0.5590 +7327 197131 0.6220 +7327 337867 0.4480 +7327 348801 0.4240 +7327 388581 0.4740 +7328 7332 0.5980 +7328 7335 0.5050 +7328 7336 0.6210 +7328 7337 0.5660 +7328 8078 0.4590 +7328 8780 0.4790 +7328 8836 0.4430 +7328 9025 0.4090 +7328 9039 0.8670 +7328 9320 0.5870 +7328 9604 0.5040 +7328 9867 0.5610 +7328 10048 0.5190 +7328 10193 0.5250 +7328 10296 0.6660 +7328 10477 0.5720 +7328 10533 0.5610 +7328 10618 0.4280 +7328 11065 0.5870 +7328 11345 0.4940 +7328 23008 0.5470 +7328 23304 0.5280 +7328 23327 0.4610 +7328 23710 0.4320 +7328 25820 0.4640 +7328 25852 0.7790 +7328 27338 0.5760 +7328 29101 0.4420 +7328 29880 0.5130 +7328 50852 0.5210 +7328 51110 0.4820 +7328 51132 0.6100 +7328 51257 0.7010 +7328 51438 0.6320 +7328 51465 0.6600 +7328 51646 0.5310 +7328 54546 0.5480 +7328 54873 0.4070 +7328 54926 0.6540 +7328 54994 0.6140 +7328 55016 0.7640 +7328 55236 0.6480 +7328 55284 0.6880 +7328 55585 0.5440 +7328 55620 0.4930 +7328 57574 0.7720 +7328 57610 0.4840 +7328 63893 0.6670 +7328 64400 0.4060 +7328 64777 0.7150 +7328 64795 0.6500 +7328 65264 0.5240 +7328 79018 0.6600 +7328 79642 0.4090 +7328 79876 0.5640 +7328 80232 0.8600 +7328 81631 0.4010 +7328 90665 0.4510 +7328 92912 0.6300 +7328 92979 0.7480 +7328 118424 0.6220 +7328 220972 0.8550 +7328 378884 0.6710 +7328 493829 0.8230 +7329 7334 0.6480 +7329 7335 0.7000 +7329 7336 0.9540 +7329 7337 0.5920 +7329 7341 0.9990 +7329 7353 0.4940 +7329 7376 0.4630 +7329 7378 0.7460 +7329 7415 0.4300 +7329 7428 0.6310 +7329 7468 0.5530 +7329 7486 0.6380 +7329 7490 0.5930 +7329 7494 0.6640 +7329 7507 0.5950 +7329 7508 0.6020 +7329 7514 0.7840 +7329 7518 0.4290 +7329 7690 0.5610 +7329 7703 0.8970 +7329 7704 0.5660 +7329 7750 0.4520 +7329 7852 0.4520 +7329 8021 0.7850 +7329 8086 0.7150 +7329 8106 0.6150 +7329 8204 0.5970 +7329 8243 0.5740 +7329 8290 0.7010 +7329 8331 0.5150 +7329 8334 0.5180 +7329 8337 0.6350 +7329 8338 0.6330 +7329 8340 0.6040 +7329 8341 0.6010 +7329 8342 0.6030 +7329 8345 0.6040 +7329 8347 0.6020 +7329 8348 0.6110 +7329 8349 0.6690 +7329 8356 0.4250 +7329 8361 0.8170 +7329 8403 0.4160 +7329 8405 0.8930 +7329 8450 0.5680 +7329 8451 0.6210 +7329 8452 0.4120 +7329 8454 0.4690 +7329 8468 0.8190 +7329 8480 0.6060 +7329 8517 0.6670 +7329 8535 0.7860 +7329 8554 0.9990 +7329 8607 0.5850 +7329 8626 0.5190 +7329 8629 0.4220 +7329 8648 0.4810 +7329 8690 0.4160 +7329 8805 0.4610 +7329 8836 0.6960 +7329 8856 0.5690 +7329 8883 0.4860 +7329 8924 0.5210 +7329 8970 0.6010 +7329 8988 0.5240 +7329 9025 0.8130 +7329 9039 0.6430 +7329 9044 0.4210 +7329 9063 0.9960 +7329 9075 0.5110 +7329 9092 0.4020 +7329 9101 0.6660 +7329 9112 0.6030 +7329 9126 0.6240 +7329 9156 0.5790 +7329 9189 0.6900 +7329 9212 0.6930 +7329 9320 0.4900 +7329 9416 0.4700 +7329 9425 0.4450 +7329 9525 0.4040 +7329 9557 0.5700 +7329 9577 0.5290 +7329 9611 0.5400 +7329 9612 0.6400 +7329 9631 0.7630 +7329 9636 0.4780 +7329 9641 0.5830 +7329 9656 0.7970 +7329 9670 0.9970 +7329 9682 0.5400 +7329 9688 0.7870 +7329 9734 0.5310 +7329 9759 0.9470 +7329 9810 0.4960 +7329 9818 0.5750 +7329 9869 0.4270 +7329 9883 0.5420 +7329 9971 0.4500 +7329 9972 0.7860 +7329 9978 0.7770 +7329 9985 0.6980 +7329 9994 0.5950 +7329 10038 0.5290 +7329 10048 0.4740 +7329 10054 0.9990 +7329 10055 0.9990 +7329 10062 0.5600 +7329 10069 0.4490 +7329 10111 0.5290 +7329 10155 0.9600 +7329 10204 0.6210 +7329 10208 0.5020 +7329 10210 0.9000 +7329 10212 0.4770 +7329 10273 0.4380 +7329 10274 0.5390 +7329 10320 0.4710 +7329 10388 0.5320 +7329 10399 0.5190 +7329 10401 0.9650 +7329 10482 0.5660 +7329 10499 0.5070 +7329 10521 0.4630 +7329 10524 0.8180 +7329 10537 0.4720 +7329 10606 0.4410 +7329 10612 0.4020 +7329 10691 0.4120 +7329 10734 0.5110 +7329 10735 0.5330 +7329 10762 0.5910 +7329 10801 0.4520 +7329 10856 0.5740 +7329 10891 0.6840 +7329 10915 0.7700 +7329 10921 0.9690 +7329 10993 0.5050 +7329 11030 0.4510 +7329 11059 0.5410 +7329 11060 0.4360 +7329 11083 0.8100 +7329 11097 0.5280 +7329 11144 0.5200 +7329 11166 0.4160 +7329 11188 0.7140 +7329 11200 0.6410 +7329 11315 0.5970 +7329 11328 0.4460 +7329 22913 0.4080 +7329 22927 0.7660 +7329 22954 0.5260 +7329 22955 0.4460 +7329 22999 0.4830 +7329 23028 0.5540 +7329 23030 0.5240 +7329 23064 0.4130 +7329 23118 0.4180 +7329 23126 0.5350 +7329 23137 0.8720 +7329 23165 0.7600 +7329 23186 0.6730 +7329 23210 0.4500 +7329 23224 0.5440 +7329 23225 0.7380 +7329 23279 0.6000 +7329 23306 0.7950 +7329 23314 0.4250 +7329 23327 0.6920 +7329 23345 0.5750 +7329 23353 0.5280 +7329 23411 0.5170 +7329 23435 0.8870 +7329 23468 0.5320 +7329 23476 0.4050 +7329 23511 0.5500 +7329 23512 0.6100 +7329 23551 0.5810 +7329 23636 0.6330 +7329 25777 0.5100 +7329 25829 0.4550 +7329 25913 0.5080 +7329 25942 0.7100 +7329 25950 0.9910 +7329 26036 0.9710 +7329 26054 0.7490 +7329 26168 0.7860 +7329 26277 0.5870 +7329 27068 0.4390 +7329 27127 0.5430 +7329 27183 0.4310 +7329 27246 0.6200 +7329 27351 0.5070 +7329 27434 0.4070 +7329 28996 0.9660 +7329 29086 0.5250 +7329 29761 0.4790 +7329 29843 0.9170 +7329 29945 0.5370 +7329 30813 0.5810 +7329 50511 0.6110 +7329 51029 0.4460 +7329 51127 0.4820 +7329 51274 0.6180 +7329 51314 0.4240 +7329 51465 0.5150 +7329 51510 0.6460 +7329 51529 0.4200 +7329 51534 0.4060 +7329 51564 0.7920 +7329 51567 0.5040 +7329 51588 0.9960 +7329 51592 0.6420 +7329 51602 0.8420 +7329 51720 0.7070 +7329 53335 0.6300 +7329 53371 0.6600 +7329 54145 0.6030 +7329 54386 0.5240 +7329 54498 0.5140 +7329 54534 0.8420 +7329 54778 0.6370 +7329 54780 0.6010 +7329 55143 0.6390 +7329 55147 0.4610 +7329 55215 0.5450 +7329 55236 0.5260 +7329 55521 0.4410 +7329 55603 0.4140 +7329 55651 0.4200 +7329 55706 0.7350 +7329 55719 0.5510 +7329 55746 0.6730 +7329 55751 0.4260 +7329 55766 0.5150 +7329 55916 0.4590 +7329 56158 0.4990 +7329 56160 0.6490 +7329 56254 0.4630 +7329 56852 0.9030 +7329 57122 0.7820 +7329 57159 0.5680 +7329 57162 0.4130 +7329 57178 0.5850 +7329 57332 0.5170 +7329 57337 0.7250 +7329 57591 0.4550 +7329 59343 0.4090 +7329 59348 0.4870 +7329 63976 0.4970 +7329 64328 0.5590 +7329 64750 0.5090 +7329 79023 0.6320 +7329 79047 0.8560 +7329 79184 0.5990 +7329 79594 0.4910 +7329 79677 0.7660 +7329 79718 0.4530 +7329 79902 0.7660 +7329 79915 0.4820 +7329 80010 0.5420 +7329 80012 0.4360 +7329 80198 0.4560 +7329 81669 0.4560 +7329 81789 0.4160 +7329 81929 0.7910 +7329 83637 0.5600 +7329 83746 0.4560 +7329 83940 0.4540 +7329 84106 0.5250 +7329 84142 0.5290 +7329 84203 0.5190 +7329 84231 0.4870 +7329 84250 0.6010 +7329 84260 0.4400 +7329 84364 0.4590 +7329 84458 0.4590 +7329 84464 0.7810 +7329 84675 0.5610 +7329 84676 0.6400 +7329 84733 0.4630 +7329 84893 0.4950 +7329 84901 0.8360 +7329 84928 0.5040 +7329 84948 0.4180 +7329 85236 0.6060 +7329 85363 0.5860 +7329 92906 0.8030 +7329 93426 0.5490 +7329 94239 0.6020 +7329 113675 0.5120 +7329 114548 0.4620 +7329 115426 0.6100 +7329 118424 0.4120 +7329 123228 0.4890 +7329 128312 0.6030 +7329 128866 0.4130 +7329 129401 0.7870 +7329 131616 0.7460 +7329 133482 0.5290 +7329 143384 0.4520 +7329 146212 0.4830 +7329 151531 0.7460 +7329 152110 0.4480 +7329 154141 0.4260 +7329 165918 0.7840 +7329 166815 0.4160 +7329 196743 0.5140 +7329 197131 0.4160 +7329 197370 0.5630 +7329 200765 0.4160 +7329 201798 0.4160 +7329 202915 0.4260 +7329 205564 0.7580 +7329 220359 0.4430 +7329 255220 0.5190 +7329 255626 0.6050 +7329 256126 0.4990 +7329 256536 0.7460 +7329 284252 0.8790 +7329 286053 0.9650 +7329 333926 0.6750 +7329 339745 0.8540 +7329 347736 0.4070 +7329 348995 0.6270 +7329 375484 0.4840 +7329 387082 0.9980 +7329 387521 0.6050 +7329 387522 0.6550 +7329 404672 0.5290 +7329 440093 0.4290 +7329 440686 0.4200 +7329 474382 0.5150 +7329 493861 0.5980 +7329 644186 0.4990 +7329 653604 0.4310 +7329 729857 0.9720 +7329 100101267 0.5480 +7329 100529063 0.5140 +7332 7335 0.8080 +7332 7336 0.7470 +7332 7337 0.9990 +7332 7341 0.5460 +7332 7347 0.4160 +7332 7535 0.4010 +7332 7706 0.4810 +7332 7844 0.6370 +7332 8452 0.4080 +7332 8454 0.6580 +7332 8554 0.4300 +7332 8717 0.4520 +7332 8737 0.5490 +7332 8837 0.5030 +7332 8883 0.5200 +7332 8887 0.4700 +7332 8904 0.4150 +7332 8916 0.5490 +7332 9026 0.4100 +7332 9039 0.7550 +7332 9063 0.4280 +7332 9320 0.8740 +7332 9354 0.4490 +7332 9470 0.4840 +7332 9531 0.4060 +7332 9604 0.4890 +7332 9616 0.8070 +7332 9627 0.6340 +7332 9632 0.4360 +7332 9636 0.4400 +7332 9690 0.8870 +7332 9781 0.9190 +7332 9825 0.4550 +7332 9870 0.7520 +7332 9978 0.9470 +7332 10054 0.4290 +7332 10075 0.9210 +7332 10273 0.7900 +7332 10277 0.6100 +7332 10318 0.4590 +7332 10413 0.5110 +7332 10425 0.9630 +7332 10477 0.6170 +7332 10533 0.6230 +7332 10537 0.4830 +7332 10616 0.9560 +7332 10935 0.5960 +7332 11035 0.6010 +7332 11059 0.9860 +7332 11060 0.9290 +7332 11065 0.6740 +7332 22888 0.7640 +7332 23072 0.6910 +7332 23075 0.4260 +7332 23113 0.7080 +7332 23208 0.4140 +7332 23252 0.4320 +7332 23304 0.5910 +7332 23327 0.9770 +7332 25820 0.9950 +7332 25897 0.9050 +7332 26043 0.4710 +7332 26091 0.4850 +7332 26190 0.5550 +7332 26994 0.6980 +7332 27338 0.5700 +7332 29089 0.4680 +7332 51366 0.7650 +7332 51465 0.5740 +7332 51529 0.4660 +7332 53347 0.4980 +7332 54476 0.8790 +7332 54887 0.4770 +7332 54899 0.4310 +7332 54926 0.5160 +7332 54941 0.4750 +7332 54963 0.5240 +7332 54976 0.5020 +7332 55008 0.5180 +7332 55024 0.4090 +7332 55072 0.9800 +7332 55174 0.5090 +7332 55236 0.9180 +7332 55284 0.7080 +7332 55288 0.4200 +7332 55294 0.5110 +7332 55611 0.7420 +7332 55845 0.5800 +7332 55905 0.4260 +7332 56254 0.6660 +7332 56852 0.4860 +7332 57154 0.9580 +7332 57178 0.4930 +7332 57520 0.6650 +7332 57531 0.9350 +7332 57608 0.4050 +7332 57674 0.5810 +7332 63893 0.4460 +7332 64422 0.4560 +7332 64750 0.9840 +7332 65018 0.4340 +7332 65264 0.6440 +7332 79876 0.7260 +7332 80762 0.4330 +7332 81858 0.7390 +7332 83544 0.4730 +7332 83737 0.9770 +7332 84231 0.5090 +7332 84676 0.4750 +7332 90268 0.4180 +7332 90850 0.4970 +7332 92912 0.5690 +7332 92979 0.5270 +7332 118424 0.6510 +7332 120892 0.4780 +7332 127544 0.7530 +7332 133482 0.4470 +7332 150223 0.6930 +7332 161582 0.4390 +7332 196403 0.4030 +7332 197131 0.4740 +7332 197259 0.5620 +7332 205327 0.4370 +7332 221302 0.4600 +7332 255488 0.5540 +7332 387522 0.4900 +7334 7335 0.9990 +7334 7336 0.9990 +7334 7337 0.7560 +7334 7341 0.9130 +7334 7345 0.4010 +7334 7347 0.4520 +7334 7353 0.5550 +7334 7398 0.4160 +7334 7415 0.7850 +7334 7468 0.5600 +7334 7507 0.7010 +7334 7508 0.6120 +7334 7520 0.6870 +7334 7535 0.4250 +7334 7706 0.9900 +7334 7844 0.7730 +7334 7874 0.5390 +7334 7957 0.4230 +7334 8078 0.5070 +7334 8100 0.5460 +7334 8290 0.6530 +7334 8314 0.5850 +7334 8337 0.5550 +7334 8338 0.5520 +7334 8340 0.6090 +7334 8341 0.6070 +7334 8342 0.6090 +7334 8345 0.6080 +7334 8347 0.6060 +7334 8348 0.6140 +7334 8349 0.6940 +7334 8361 0.6530 +7334 8450 0.5960 +7334 8451 0.6400 +7334 8454 0.5130 +7334 8517 0.9760 +7334 8554 0.5370 +7334 8678 0.4070 +7334 8717 0.6070 +7334 8737 0.8750 +7334 8767 0.7340 +7334 8836 0.5020 +7334 8877 0.4780 +7334 8883 0.4120 +7334 8887 0.9810 +7334 8900 0.5980 +7334 8915 0.8990 +7334 8924 0.8020 +7334 8945 0.4010 +7334 8970 0.6070 +7334 9025 0.9990 +7334 9039 0.7180 +7334 9063 0.4800 +7334 9097 0.7700 +7334 9101 0.5480 +7334 9156 0.4990 +7334 9246 0.5580 +7334 9320 0.5850 +7334 9354 0.5040 +7334 9531 0.4180 +7334 9557 0.5640 +7334 9616 0.4880 +7334 9636 0.9170 +7334 9641 0.4740 +7334 9656 0.9310 +7334 9682 0.5890 +7334 9810 0.9480 +7334 9958 0.4150 +7334 9960 0.4270 +7334 9978 0.7910 +7334 10013 0.6050 +7334 10038 0.5670 +7334 10054 0.5150 +7334 10055 0.5990 +7334 10075 0.4070 +7334 10107 0.4640 +7334 10111 0.5620 +7334 10133 0.5580 +7334 10134 0.8850 +7334 10155 0.4510 +7334 10193 0.4900 +7334 10213 0.6770 +7334 10273 0.9990 +7334 10277 0.4790 +7334 10392 0.5930 +7334 10401 0.4010 +7334 10425 0.7090 +7334 10454 0.9190 +7334 10459 0.5890 +7334 10480 0.4220 +7334 10524 0.8910 +7334 10533 0.6320 +7334 10537 0.5580 +7334 10575 0.4420 +7334 10576 0.4490 +7334 10616 0.4960 +7334 10617 0.6300 +7334 10670 0.5320 +7334 10694 0.5060 +7334 10728 0.4320 +7334 10892 0.8770 +7334 10923 0.6350 +7334 10963 0.5200 +7334 10987 0.6460 +7334 11035 0.4250 +7334 11043 0.5540 +7334 11044 0.4130 +7334 11047 0.4070 +7334 11059 0.4560 +7334 11200 0.6970 +7334 11219 0.4200 +7334 11274 0.5590 +7334 11315 0.6340 +7334 22954 0.9510 +7334 22976 0.6190 +7334 23030 0.5330 +7334 23118 0.9670 +7334 23137 0.4120 +7334 23197 0.4430 +7334 23327 0.6360 +7334 23352 0.5310 +7334 23640 0.5600 +7334 23643 0.5010 +7334 25820 0.8970 +7334 25921 0.4960 +7334 26001 0.5150 +7334 26994 0.9460 +7334 27246 0.4530 +7334 27338 0.4480 +7334 27343 0.4280 +7334 27434 0.5510 +7334 29086 0.4100 +7334 29110 0.4610 +7334 29116 0.4220 +7334 29979 0.4160 +7334 50852 0.4010 +7334 51127 0.5060 +7334 51135 0.8720 +7334 51191 0.5940 +7334 51230 0.5830 +7334 51255 0.7020 +7334 51284 0.6560 +7334 51377 0.4040 +7334 51455 0.7980 +7334 51514 0.4030 +7334 51529 0.4350 +7334 51588 0.7980 +7334 51592 0.4390 +7334 51720 0.8420 +7334 51776 0.7950 +7334 54106 0.6330 +7334 54145 0.6090 +7334 54205 0.5450 +7334 54542 0.4290 +7334 54778 0.8440 +7334 54941 0.5130 +7334 55072 0.5730 +7334 55163 0.5850 +7334 55183 0.5320 +7334 55236 0.9400 +7334 55284 0.4700 +7334 55294 0.4610 +7334 55585 0.4270 +7334 55593 0.5350 +7334 55611 0.9990 +7334 55658 0.5280 +7334 55666 0.5470 +7334 55743 0.7320 +7334 56254 0.9520 +7334 56658 0.4080 +7334 56852 0.9880 +7334 56897 0.4500 +7334 56957 0.4070 +7334 57161 0.7320 +7334 57162 0.8210 +7334 57559 0.4550 +7334 57630 0.6340 +7334 57674 0.4500 +7334 57697 0.4110 +7334 59286 0.5700 +7334 63891 0.4240 +7334 64127 0.6150 +7334 64421 0.5380 +7334 64841 0.4610 +7334 64844 0.6940 +7334 78990 0.8220 +7334 79184 0.6100 +7334 79589 0.6670 +7334 79651 0.4220 +7334 79845 0.4910 +7334 79876 0.6640 +7334 79915 0.5380 +7334 80198 0.5000 +7334 80216 0.5260 +7334 80325 0.4280 +7334 81559 0.8370 +7334 81858 0.4400 +7334 83695 0.4120 +7334 83737 0.6810 +7334 84083 0.4620 +7334 84142 0.7120 +7334 84231 0.5120 +7334 84282 0.7990 +7334 84433 0.8560 +7334 84676 0.6010 +7334 84708 0.9100 +7334 84759 0.4070 +7334 84901 0.4170 +7334 84937 0.9890 +7334 85236 0.6090 +7334 85363 0.9930 +7334 89870 0.4200 +7334 90268 0.4090 +7334 90678 0.5200 +7334 92610 0.6410 +7334 92912 0.4100 +7334 128312 0.6080 +7334 131405 0.5030 +7334 133482 0.4730 +7334 140691 0.4020 +7334 142678 0.4500 +7334 143279 0.4510 +7334 148022 0.5110 +7334 148581 0.6340 +7334 152006 0.6710 +7334 165918 0.9990 +7334 197131 0.4560 +7334 200894 0.5010 +7334 201292 0.4650 +7334 220441 0.6770 +7334 221302 0.7930 +7334 223082 0.8440 +7334 246330 0.8030 +7334 255626 0.6080 +7334 256369 0.6200 +7334 257218 0.9780 +7334 257397 0.8800 +7334 286053 0.4570 +7334 353376 0.5090 +7334 378884 0.4700 +7334 387082 0.8000 +7334 387521 0.6480 +7334 387522 0.9700 +7334 404672 0.5370 +7334 445372 0.4620 +7334 494470 0.4690 +7335 7336 0.9340 +7335 7347 0.4450 +7335 7415 0.6840 +7335 7706 0.5020 +7335 8100 0.5020 +7335 8453 0.7000 +7335 8517 0.7670 +7335 8737 0.5920 +7335 8767 0.6070 +7335 8887 0.4820 +7335 8915 0.7940 +7335 9025 0.6170 +7335 9039 0.6500 +7335 9040 0.4070 +7335 9246 0.7040 +7335 9344 0.4890 +7335 9562 0.4350 +7335 9604 0.4220 +7335 9810 0.9080 +7335 10013 0.5590 +7335 10213 0.6030 +7335 10273 0.9960 +7335 10392 0.5820 +7335 10454 0.9290 +7335 10477 0.7310 +7335 10533 0.5670 +7335 10537 0.4690 +7335 10892 0.6710 +7335 11065 0.7240 +7335 11201 0.4040 +7335 11274 0.4550 +7335 11315 0.5880 +7335 22954 0.8410 +7335 23118 0.9620 +7335 23586 0.5590 +7335 23643 0.4860 +7335 26043 0.4240 +7335 26994 0.6410 +7335 27338 0.8380 +7335 29089 0.5950 +7335 29979 0.4740 +7335 51135 0.7480 +7335 51230 0.4090 +7335 51284 0.6280 +7335 51455 0.4470 +7335 51465 0.5500 +7335 51619 0.5250 +7335 54106 0.5950 +7335 54926 0.5440 +7335 54941 0.5480 +7335 55072 0.4480 +7335 55122 0.4130 +7335 55236 0.6820 +7335 55284 0.7360 +7335 55293 0.4150 +7335 55611 0.6080 +7335 56254 0.9070 +7335 56852 0.5100 +7335 57154 0.4650 +7335 57161 0.6920 +7335 57162 0.8550 +7335 57448 0.4820 +7335 57551 0.4100 +7335 57630 0.5040 +7335 57697 0.4650 +7335 63893 0.5440 +7335 64127 0.5810 +7335 64135 0.5320 +7335 65264 0.5090 +7335 79651 0.4270 +7335 79876 0.5730 +7335 80216 0.5140 +7335 83737 0.5330 +7335 84282 0.5350 +7335 84433 0.7820 +7335 84937 0.4110 +7335 85363 0.7250 +7335 92610 0.4990 +7335 114088 0.5050 +7335 118424 0.4090 +7335 148022 0.5410 +7335 148581 0.8000 +7335 200894 0.4990 +7335 221302 0.4470 +7335 246330 0.7690 +7335 257397 0.8860 +7335 353376 0.5310 +7335 387521 0.8790 +7335 387522 0.8090 +7336 7341 0.8850 +7336 7411 0.6530 +7336 7415 0.5260 +7336 7468 0.5220 +7336 7486 0.4260 +7336 7507 0.7510 +7336 7508 0.5630 +7336 7520 0.6090 +7336 7770 0.5130 +7336 8239 0.4650 +7336 8260 0.4100 +7336 8290 0.5970 +7336 8314 0.5230 +7336 8340 0.5160 +7336 8341 0.5180 +7336 8342 0.5170 +7336 8345 0.5160 +7336 8347 0.5140 +7336 8348 0.5240 +7336 8349 0.5770 +7336 8361 0.5210 +7336 8450 0.5750 +7336 8451 0.5870 +7336 8467 0.5090 +7336 8607 0.4140 +7336 8662 0.4070 +7336 8666 0.4780 +7336 8668 0.5060 +7336 8836 0.4830 +7336 8900 0.5140 +7336 8924 0.5210 +7336 8970 0.5150 +7336 9025 0.9430 +7336 9039 0.6660 +7336 9040 0.5150 +7336 9097 0.5100 +7336 9156 0.4330 +7336 9246 0.6100 +7336 9255 0.4570 +7336 9319 0.4200 +7336 9401 0.4640 +7336 9557 0.5700 +7336 9656 0.6760 +7336 9682 0.5100 +7336 9736 0.4530 +7336 9810 0.7580 +7336 9978 0.6720 +7336 10038 0.5620 +7336 10054 0.6460 +7336 10055 0.5800 +7336 10111 0.5980 +7336 10213 0.5680 +7336 10236 0.4250 +7336 10273 0.8830 +7336 10393 0.5670 +7336 10399 0.4150 +7336 10459 0.6320 +7336 10471 0.4780 +7336 10477 0.6650 +7336 10492 0.4360 +7336 10524 0.5220 +7336 10533 0.5510 +7336 10537 0.5000 +7336 10574 0.4470 +7336 10575 0.5120 +7336 10576 0.4920 +7336 10694 0.5400 +7336 10726 0.4280 +7336 10776 0.4230 +7336 10987 0.4310 +7336 11044 0.5590 +7336 11065 0.5860 +7336 11200 0.6720 +7336 11201 0.4470 +7336 22948 0.4730 +7336 22954 0.4510 +7336 22976 0.5960 +7336 23030 0.4990 +7336 23118 0.4670 +7336 23137 0.5970 +7336 23170 0.4460 +7336 23510 0.4760 +7336 26043 0.5380 +7336 27101 0.4930 +7336 27338 0.7540 +7336 27343 0.6340 +7336 27434 0.6600 +7336 28998 0.4170 +7336 29089 0.6230 +7336 29979 0.4350 +7336 51115 0.4720 +7336 51371 0.4360 +7336 51426 0.4130 +7336 51455 0.8540 +7336 51465 0.5750 +7336 51501 0.4010 +7336 51569 0.5410 +7336 51588 0.6350 +7336 51619 0.5810 +7336 51720 0.6690 +7336 54145 0.5160 +7336 54778 0.6690 +7336 54926 0.5140 +7336 55142 0.4960 +7336 55156 0.4520 +7336 55183 0.5090 +7336 55236 0.6620 +7336 55284 0.8380 +7336 55293 0.4680 +7336 55611 0.9490 +7336 56254 0.7790 +7336 56852 0.9920 +7336 57448 0.4910 +7336 57599 0.4110 +7336 57697 0.6040 +7336 63893 0.5510 +7336 64421 0.5330 +7336 65264 0.4970 +7336 79035 0.4390 +7336 79677 0.6840 +7336 79876 0.5820 +7336 79915 0.4900 +7336 80184 0.4170 +7336 80198 0.5160 +7336 83604 0.4010 +7336 84083 0.4780 +7336 84142 0.6630 +7336 84893 0.4380 +7336 85236 0.5190 +7336 85363 0.4660 +7336 114799 0.4220 +7336 118424 0.5270 +7336 128312 0.5160 +7336 146956 0.4530 +7336 148581 0.7990 +7336 165918 0.8330 +7336 171222 0.4020 +7336 255626 0.5190 +7336 257218 0.9880 +7336 286053 0.4720 +7336 387082 0.8200 +7336 387521 0.5560 +7336 404672 0.5610 +7337 7341 0.5240 +7337 7353 0.5740 +7337 7681 0.8090 +7337 7874 0.4960 +7337 8065 0.6950 +7337 8078 0.5800 +7337 8087 0.4930 +7337 8202 0.6940 +7337 8239 0.4370 +7337 8450 0.6250 +7337 8451 0.4780 +7337 8452 0.6280 +7337 8453 0.6210 +7337 8454 0.6930 +7337 8663 0.4620 +7337 8788 0.5890 +7337 8831 0.4020 +7337 8854 0.4440 +7337 8886 0.4390 +7337 8887 0.5330 +7337 8924 0.9100 +7337 8926 0.6160 +7337 8945 0.4510 +7337 9040 0.6010 +7337 9083 0.8880 +7337 9097 0.6290 +7337 9101 0.4540 +7337 9223 0.9140 +7337 9246 0.8690 +7337 9320 0.4440 +7337 9352 0.5280 +7337 9354 0.5740 +7337 9378 0.5320 +7337 9406 0.4700 +7337 9513 0.4170 +7337 9690 0.4800 +7337 9821 0.5170 +7337 9861 0.7620 +7337 9958 0.4180 +7337 9978 0.5130 +7337 10054 0.5180 +7337 10055 0.4620 +7337 10075 0.4990 +7337 10155 0.4090 +7337 10207 0.9190 +7337 10213 0.9300 +7337 10273 0.5220 +7337 10277 0.4130 +7337 10474 0.4350 +7337 10477 0.4120 +7337 10479 0.4890 +7337 10537 0.4160 +7337 10600 0.4360 +7337 10987 0.5590 +7337 11047 0.5900 +7337 11275 0.4050 +7337 22871 0.5480 +7337 22895 0.6320 +7337 22899 0.8720 +7337 22941 0.4860 +7337 23191 0.6880 +7337 23197 0.7770 +7337 23198 0.6600 +7337 23237 0.7210 +7337 23245 0.5050 +7337 23352 0.6210 +7337 23435 0.4450 +7337 23450 0.5210 +7337 23476 0.4070 +7337 23513 0.9800 +7337 23558 0.4940 +7337 23742 0.5270 +7337 25820 0.6870 +7337 25898 0.4750 +7337 26037 0.6560 +7337 26047 0.4460 +7337 26224 0.5440 +7337 26278 0.7930 +7337 26585 0.4220 +7337 27161 0.5780 +7337 27338 0.8960 +7337 28985 0.4370 +7337 29089 0.5010 +7337 29978 0.9170 +7337 29979 0.9070 +7337 51035 0.5540 +7337 51191 0.5470 +7337 51255 0.5870 +7337 51366 0.5370 +7337 51377 0.8700 +7337 51497 0.4330 +7337 51725 0.5940 +7337 54413 0.6670 +7337 54551 0.7160 +7337 54764 0.4590 +7337 54778 0.4870 +7337 54888 0.4880 +7337 55072 0.4550 +7337 55183 0.4570 +7337 55193 0.5970 +7337 55201 0.4110 +7337 55236 0.6010 +7337 55294 0.4550 +7337 55662 0.8740 +7337 55832 0.4050 +7337 55898 0.4710 +7337 56302 0.4080 +7337 56893 0.6180 +7337 57194 0.8860 +7337 57231 0.4700 +7337 57502 0.6330 +7337 57526 0.4060 +7337 57575 0.4050 +7337 57590 0.4090 +7337 57680 0.4340 +7337 64326 0.6260 +7337 64398 0.9080 +7337 79589 0.4800 +7337 79872 0.4610 +7337 81554 0.6430 +7337 81614 0.5040 +7337 84231 0.4830 +7337 84260 0.6910 +7337 84461 0.8710 +7337 84679 0.4660 +7337 85358 0.6470 +7337 92359 0.9000 +7337 114791 0.6080 +7337 114907 0.4100 +7337 123606 0.4950 +7337 146713 0.4310 +7337 152330 0.4820 +7337 171222 0.9060 +7337 197131 0.6150 +7337 221302 0.5700 +7337 259266 0.6330 +7337 345651 0.5230 +7337 414301 0.5610 +7341 7347 0.4080 +7341 7353 0.5580 +7341 7415 0.5290 +7341 7428 0.6420 +7341 7468 0.5740 +7341 7486 0.7400 +7341 7507 0.6090 +7341 7508 0.5770 +7341 7514 0.7080 +7341 7518 0.4910 +7341 7520 0.4920 +7341 7528 0.5320 +7341 7555 0.4880 +7341 7690 0.5660 +7341 7703 0.5200 +7341 7704 0.5530 +7341 7750 0.5970 +7341 7874 0.6920 +7341 7919 0.5770 +7341 8021 0.5250 +7341 8078 0.4010 +7341 8086 0.4490 +7341 8148 0.4500 +7341 8204 0.4770 +7341 8243 0.6110 +7341 8266 0.4650 +7341 8290 0.7330 +7341 8340 0.5980 +7341 8341 0.5960 +7341 8342 0.6040 +7341 8345 0.6040 +7341 8347 0.6010 +7341 8348 0.6110 +7341 8349 0.8430 +7341 8356 0.5020 +7341 8361 0.7710 +7341 8405 0.4210 +7341 8450 0.6430 +7341 8451 0.6680 +7341 8452 0.6170 +7341 8454 0.6260 +7341 8467 0.4310 +7341 8473 0.4120 +7341 8480 0.5130 +7341 8517 0.8850 +7341 8535 0.8660 +7341 8554 0.9980 +7341 8648 0.7120 +7341 8836 0.5420 +7341 8883 0.5970 +7341 8924 0.5460 +7341 8970 0.7360 +7341 9025 0.8020 +7341 9039 0.6640 +7341 9040 0.4620 +7341 9063 0.9990 +7341 9066 0.5340 +7341 9092 0.4450 +7341 9097 0.4420 +7341 9126 0.6260 +7341 9140 0.5060 +7341 9184 0.4200 +7341 9189 0.6040 +7341 9202 0.4270 +7341 9205 0.5020 +7341 9212 0.4290 +7341 9246 0.5120 +7341 9314 0.7350 +7341 9400 0.4500 +7341 9412 0.4960 +7341 9443 0.4880 +7341 9525 0.4060 +7341 9557 0.5960 +7341 9611 0.4840 +7341 9612 0.6920 +7341 9631 0.4920 +7341 9636 0.7540 +7341 9641 0.6630 +7341 9656 0.7210 +7341 9682 0.5710 +7341 9688 0.6150 +7341 9759 0.6810 +7341 9782 0.5570 +7341 9818 0.4960 +7341 9869 0.4020 +7341 9883 0.4580 +7341 9929 0.4010 +7341 9971 0.6210 +7341 9972 0.8840 +7341 9978 0.8260 +7341 9994 0.5630 +7341 10010 0.6670 +7341 10036 0.4110 +7341 10038 0.5910 +7341 10054 0.9990 +7341 10055 0.9990 +7341 10059 0.4170 +7341 10111 0.5220 +7341 10114 0.4110 +7341 10155 0.7700 +7341 10189 0.4560 +7341 10204 0.5430 +7341 10208 0.6950 +7341 10210 0.8690 +7341 10213 0.4450 +7341 10236 0.4430 +7341 10274 0.4620 +7341 10284 0.4080 +7341 10286 0.4010 +7341 10363 0.4590 +7341 10401 0.9680 +7341 10413 0.4100 +7341 10432 0.4270 +7341 10477 0.6220 +7341 10499 0.5030 +7341 10521 0.5910 +7341 10524 0.7350 +7341 10533 0.4550 +7341 10537 0.5550 +7341 10735 0.4350 +7341 10762 0.5490 +7341 10891 0.5290 +7341 10921 0.5610 +7341 10923 0.4700 +7341 10949 0.5490 +7341 10951 0.4050 +7341 10987 0.6830 +7341 11016 0.4430 +7341 11074 0.5010 +7341 11097 0.4290 +7341 11124 0.5060 +7341 11168 0.4270 +7341 11188 0.7730 +7341 11262 0.5170 +7341 11315 0.8330 +7341 11340 0.4240 +7341 11345 0.4170 +7341 22955 0.4250 +7341 23030 0.5350 +7341 23064 0.5240 +7341 23137 0.8080 +7341 23165 0.4490 +7341 23186 0.5120 +7341 23210 0.4640 +7341 23225 0.4650 +7341 23237 0.4030 +7341 23279 0.5470 +7341 23314 0.5250 +7341 23411 0.4680 +7341 23435 0.5700 +7341 23468 0.5790 +7341 23476 0.5120 +7341 23481 0.4990 +7341 23510 0.6020 +7341 23511 0.4320 +7341 23512 0.4910 +7341 23515 0.4220 +7341 23621 0.5420 +7341 23626 0.4330 +7341 23636 0.5750 +7341 25788 0.6220 +7341 25942 0.7720 +7341 25950 0.7530 +7341 26036 0.7290 +7341 26054 0.9500 +7341 26155 0.4430 +7341 26168 0.9860 +7341 27005 0.4390 +7341 27173 0.4940 +7341 27258 0.4030 +7341 27304 0.5720 +7341 27316 0.5020 +7341 27338 0.5700 +7341 27351 0.6370 +7341 28996 0.9270 +7341 29089 0.4660 +7341 29110 0.4710 +7341 29128 0.4600 +7341 29761 0.8630 +7341 29843 0.9990 +7341 29889 0.5360 +7341 29979 0.4250 +7341 50511 0.4240 +7341 50945 0.6000 +7341 51029 0.5850 +7341 51510 0.5790 +7341 51534 0.4360 +7341 51564 0.5220 +7341 51567 0.7950 +7341 51569 0.6840 +7341 51588 0.9940 +7341 51592 0.4010 +7341 51602 0.6020 +7341 51639 0.4130 +7341 51720 0.5180 +7341 53371 0.5630 +7341 54145 0.5990 +7341 54778 0.9250 +7341 54780 0.5270 +7341 54795 0.4520 +7341 54815 0.4400 +7341 54878 0.9200 +7341 54926 0.4510 +7341 55234 0.4230 +7341 55236 0.5730 +7341 55284 0.4330 +7341 55706 0.4270 +7341 55729 0.7410 +7341 55746 0.6260 +7341 55775 0.4660 +7341 56160 0.5450 +7341 56254 0.5580 +7341 56852 0.7410 +7341 57122 0.7290 +7341 57178 0.7590 +7341 57332 0.4640 +7341 57337 0.9310 +7341 57448 0.4150 +7341 57591 0.4310 +7341 57680 0.4020 +7341 59286 0.6790 +7341 59343 0.9970 +7341 59348 0.5130 +7341 63893 0.4150 +7341 63931 0.4290 +7341 64135 0.5030 +7341 65264 0.5530 +7341 79023 0.5450 +7341 79594 0.5700 +7341 79677 0.7160 +7341 79876 0.5170 +7341 79902 0.4980 +7341 79915 0.4330 +7341 80852 0.4290 +7341 81605 0.4760 +7341 81929 0.7510 +7341 83637 0.5030 +7341 83932 0.5070 +7341 84186 0.4060 +7341 84464 0.4280 +7341 84733 0.4610 +7341 84893 0.6040 +7341 85236 0.5970 +7341 85363 0.7440 +7341 93349 0.5410 +7341 94239 0.4180 +7341 112399 0.4330 +7341 115426 0.4820 +7341 116447 0.4390 +7341 123228 0.7750 +7341 126119 0.4410 +7341 127002 0.4450 +7341 128312 0.6020 +7341 129401 0.4860 +7341 132625 0.4690 +7341 133482 0.5420 +7341 147339 0.7100 +7341 148581 0.4300 +7341 152110 0.4600 +7341 165918 0.8970 +7341 170261 0.7610 +7341 197370 0.5100 +7341 205564 0.9550 +7341 220988 0.5290 +7341 221302 0.5000 +7341 222255 0.4340 +7341 254225 0.4390 +7341 255626 0.5950 +7341 282679 0.4730 +7341 285190 0.5090 +7341 286053 0.8500 +7341 333926 0.5100 +7341 339745 0.4090 +7341 348995 0.5590 +7341 375484 0.4050 +7341 387082 0.9340 +7341 404672 0.5790 +7341 440093 0.4930 +7341 440686 0.4870 +7341 493861 0.5430 +7341 653437 0.4730 +7341 653604 0.4910 +7341 728378 0.4630 +7341 729857 0.9330 +7341 100101267 0.4660 +7342 7347 0.4690 +7342 7375 0.4230 +7342 7398 0.4560 +7342 7528 0.4010 +7342 7703 0.4360 +7342 7874 0.5730 +7342 8106 0.4210 +7342 8726 0.4380 +7342 8880 0.5850 +7342 8939 0.4110 +7342 9282 0.5580 +7342 9320 0.4460 +7342 9958 0.4630 +7342 10048 0.4710 +7342 10277 0.4220 +7342 10797 0.6270 +7342 11325 0.4470 +7342 23122 0.4090 +7342 23326 0.4390 +7342 23505 0.5400 +7342 23512 0.4060 +7342 26523 0.4790 +7342 29842 0.5990 +7342 29843 0.4010 +7342 55170 0.6140 +7342 55611 0.4140 +7342 56848 0.4320 +7342 57148 0.6190 +7342 57720 0.4260 +7342 81537 0.7650 +7342 83723 0.7630 +7342 84733 0.5120 +7342 92140 0.5040 +7342 140901 0.6020 +7342 147463 0.7090 +7343 7528 0.5120 +7343 7812 0.4150 +7343 8019 0.4330 +7343 8161 0.5820 +7343 8331 0.4950 +7343 8334 0.4990 +7343 8337 0.5790 +7343 8338 0.5750 +7343 8340 0.5520 +7343 8341 0.5490 +7343 8342 0.5500 +7343 8345 0.5510 +7343 8347 0.5500 +7343 8348 0.5610 +7343 8349 0.5830 +7343 8356 0.6170 +7343 8361 0.6840 +7343 8467 0.6190 +7343 8568 0.5730 +7343 8569 0.4880 +7343 8607 0.4260 +7343 8660 0.4170 +7343 8805 0.5550 +7343 8932 0.4140 +7343 8970 0.5530 +7343 9013 0.9140 +7343 9014 0.8880 +7343 9015 0.9630 +7343 9031 0.4720 +7343 9112 0.4740 +7343 9191 0.5250 +7343 9219 0.4910 +7343 9221 0.6800 +7343 9416 0.4050 +7343 9533 0.6330 +7343 9640 0.4070 +7343 10106 0.4360 +7343 10155 0.6150 +7343 10445 0.8220 +7343 10514 0.7680 +7343 10524 0.5890 +7343 10527 0.5350 +7343 10528 0.7390 +7343 10629 0.4060 +7343 10664 0.7970 +7343 10775 0.4300 +7343 10849 0.9340 +7343 10919 0.6040 +7343 11176 0.5940 +7343 11198 0.4310 +7343 11201 0.9620 +7343 23409 0.4100 +7343 23476 0.6880 +7343 23481 0.4230 +7343 25885 0.9570 +7343 27309 0.8030 +7343 29997 0.4530 +7343 30834 0.5710 +7343 51082 0.6450 +7343 51176 0.6030 +7343 51547 0.9720 +7343 51574 0.4160 +7343 53615 0.4530 +7343 54145 0.5520 +7343 54700 0.9740 +7343 54815 0.6000 +7343 55226 0.4210 +7343 55695 0.5090 +7343 55766 0.4950 +7343 55814 0.5870 +7343 56919 0.5260 +7343 56970 0.6840 +7343 57459 0.4470 +7343 57504 0.4200 +7343 57680 0.5460 +7343 64425 0.9710 +7343 79101 0.8950 +7343 83746 0.4650 +7343 84172 0.8630 +7343 84656 0.5690 +7343 84955 0.6300 +7343 85236 0.5480 +7343 93973 0.4020 +7343 94239 0.6070 +7343 116447 0.4830 +7343 128312 0.5510 +7343 221830 0.7080 +7343 255626 0.5490 +7343 284119 0.5000 +7343 388610 0.4510 +7343 404672 0.4990 +7343 474382 0.4950 +7343 653604 0.7210 +7345 7347 0.4470 +7345 7375 0.4500 +7345 7398 0.5720 +7345 7432 0.5900 +7345 7442 0.5760 +7345 7534 0.4530 +7345 7704 0.4750 +7345 7837 0.4660 +7345 7846 0.4180 +7345 7874 0.6150 +7345 8078 0.6290 +7345 8237 0.4510 +7345 8239 0.4880 +7345 8314 0.4630 +7345 8398 0.7040 +7345 8450 0.5910 +7345 8651 0.4040 +7345 8975 0.5010 +7345 9039 0.4240 +7345 9097 0.8250 +7345 9099 0.5190 +7345 9101 0.6660 +7345 9118 0.4480 +7345 9627 0.6480 +7345 9636 0.4200 +7345 9829 0.4350 +7345 9929 0.4900 +7345 9958 0.6150 +7345 9960 0.4240 +7345 10004 0.7650 +7345 10213 0.7530 +7345 10381 0.4200 +7345 10537 0.4190 +7345 10617 0.4150 +7345 10868 0.4450 +7345 10869 0.4140 +7345 10971 0.5470 +7345 10987 0.7340 +7345 11315 0.8480 +7345 23032 0.4180 +7345 23162 0.4180 +7345 23239 0.4060 +7345 23326 0.4290 +7345 23358 0.4180 +7345 23400 0.6830 +7345 23621 0.4160 +7345 25793 0.7770 +7345 26058 0.8040 +7345 27005 0.5920 +7345 27087 0.4670 +7345 27429 0.7220 +7345 29761 0.4470 +7345 29978 0.4480 +7345 29979 0.4670 +7345 50943 0.4880 +7345 51083 0.4810 +7345 51806 0.4870 +7345 54386 0.5110 +7345 54514 0.4210 +7345 55031 0.4350 +7345 55593 0.4280 +7345 55611 0.6590 +7345 55737 0.4920 +7345 57211 0.6260 +7345 57379 0.5340 +7345 57646 0.6190 +7345 58157 0.4070 +7345 64854 0.4840 +7345 65018 0.7880 +7345 78990 0.4450 +7345 80335 0.4700 +7345 84676 0.5280 +7345 84684 0.4860 +7345 84749 0.5100 +7345 90268 0.4280 +7345 91860 0.4860 +7345 92552 0.4420 +7345 117286 0.4130 +7345 120892 0.8440 +7345 124739 0.4320 +7345 126119 0.4880 +7345 137902 0.4510 +7345 146713 0.4240 +7345 158880 0.4310 +7345 161725 0.4340 +7345 163688 0.4860 +7345 166647 0.5250 +7345 170622 0.5300 +7345 219333 0.4640 +7345 221302 0.8150 +7345 346562 0.5740 +7345 347733 0.4470 +7345 373509 0.4210 +7345 389856 0.4270 +7345 728373 0.4780 +7345 100008586 0.4470 +7347 7375 0.5450 +7347 7398 0.7670 +7347 7415 0.4530 +7347 7874 0.7050 +7347 7979 0.5290 +7347 8078 0.8190 +7347 8237 0.5040 +7347 8239 0.6480 +7347 8314 0.4590 +7347 8340 0.4340 +7347 8341 0.5820 +7347 8342 0.4340 +7347 8345 0.4340 +7347 8347 0.4310 +7347 8348 0.4350 +7347 8882 0.4810 +7347 8883 0.7470 +7347 8970 0.4340 +7347 8975 0.5260 +7347 9039 0.8050 +7347 9040 0.5110 +7347 9097 0.7880 +7347 9099 0.7070 +7347 9101 0.6560 +7347 9204 0.4570 +7347 9406 0.4570 +7347 9491 0.5040 +7347 9636 0.5190 +7347 9736 0.4240 +7347 9861 0.5870 +7347 9924 0.5080 +7347 9929 0.8210 +7347 9958 0.7510 +7347 9960 0.4480 +7347 10093 0.5110 +7347 10197 0.6250 +7347 10213 0.8900 +7347 10449 0.4650 +7347 10537 0.7440 +7347 10617 0.5230 +7347 10868 0.5450 +7347 10869 0.5070 +7347 10910 0.4130 +7347 10980 0.4810 +7347 10987 0.8460 +7347 11047 0.4770 +7347 11274 0.4350 +7347 23198 0.6370 +7347 23252 0.5940 +7347 23326 0.4290 +7347 23358 0.4280 +7347 23476 0.5600 +7347 27005 0.7450 +7347 27338 0.4840 +7347 29761 0.5100 +7347 29979 0.5960 +7347 30968 0.4590 +7347 51377 0.4780 +7347 51477 0.4280 +7347 51633 0.4930 +7347 51667 0.5550 +7347 54145 0.4350 +7347 54726 0.4190 +7347 54764 0.4320 +7347 55031 0.5060 +7347 55236 0.6960 +7347 55432 0.4930 +7347 55593 0.4610 +7347 55611 0.7310 +7347 55775 0.4250 +7347 56957 0.5730 +7347 57559 0.4820 +7347 57599 0.4420 +7347 57602 0.4190 +7347 57646 0.6700 +7347 57695 0.4020 +7347 64854 0.5210 +7347 78990 0.6320 +7347 79184 0.4410 +7347 81570 0.8080 +7347 83844 0.4360 +7347 84101 0.4030 +7347 84132 0.4080 +7347 84196 0.7170 +7347 84640 0.5110 +7347 84675 0.4910 +7347 84676 0.5050 +7347 84749 0.5070 +7347 84993 0.5670 +7347 85015 0.4020 +7347 85236 0.4320 +7347 90268 0.6280 +7347 92552 0.5180 +7347 114803 0.4170 +7347 122706 0.5380 +7347 123228 0.8570 +7347 124739 0.4570 +7347 126119 0.8290 +7347 128312 0.4350 +7347 139562 0.5170 +7347 140739 0.4800 +7347 143471 0.5900 +7347 158880 0.4050 +7347 158983 0.4350 +7347 159195 0.4020 +7347 170622 0.8350 +7347 219333 0.5000 +7347 221302 0.8630 +7347 255626 0.4320 +7347 286436 0.4350 +7347 377630 0.4330 +7347 440689 0.4350 +7347 728373 0.4050 +7347 114483833 0.4350 +7348 7379 0.9990 +7348 7380 0.9990 +7348 9096 0.4040 +7348 10321 0.4150 +7348 11199 0.6340 +7348 54103 0.4500 +7348 54474 0.5370 +7348 84189 0.4100 +7348 89876 0.4140 +7348 222171 0.4020 +7348 105375355 0.9750 +7349 7432 0.4690 +7349 7433 0.4430 +7349 7434 0.4870 +7349 7441 0.4460 +7349 9340 0.4060 +7349 9607 0.4220 +7349 9630 0.4290 +7349 10203 0.4490 +7349 10681 0.5220 +7349 10911 0.8010 +7349 51738 0.8810 +7349 54331 0.9410 +7349 54802 0.4600 +7349 54938 0.4570 +7349 55687 0.4420 +7349 59345 0.7880 +7349 63941 0.4480 +7349 90226 0.9960 +7349 113091 0.5660 +7349 114131 0.9950 +7349 162387 0.4600 +7349 390714 0.4070 +7349 102723407 0.4070 +7349 104909134 0.9990 +7350 7351 0.4370 +7350 7352 0.4380 +7350 7385 0.6190 +7350 7416 0.4070 +7350 7425 0.5100 +7350 7442 0.4490 +7350 7545 0.5710 +7350 7799 0.4770 +7350 7837 0.5220 +7350 8204 0.7280 +7350 8310 0.4340 +7350 8660 0.5950 +7350 8694 0.4850 +7350 9016 0.4910 +7350 9370 0.8320 +7350 9481 0.4800 +7350 9607 0.4440 +7350 9804 0.5230 +7350 9927 0.4530 +7350 9971 0.5170 +7350 10135 0.4160 +7350 10891 0.9430 +7350 11343 0.4420 +7350 23028 0.5280 +7350 23090 0.5070 +7350 23410 0.6980 +7350 23411 0.6310 +7350 26291 0.7940 +7350 26471 0.4700 +7350 50943 0.4040 +7350 51024 0.4060 +7350 51085 0.5060 +7350 51094 0.4970 +7350 51099 0.4450 +7350 51738 0.7130 +7350 54205 0.5310 +7350 55669 0.4070 +7350 55818 0.7130 +7350 56729 0.6350 +7350 57104 0.7740 +7350 57818 0.4770 +7350 63924 0.5430 +7350 63976 0.9460 +7350 64641 0.6500 +7350 79006 0.5080 +7350 79054 0.4240 +7350 79071 0.4190 +7350 79602 0.4790 +7350 83401 0.7950 +7350 84649 0.4440 +7350 84666 0.5830 +7350 84701 0.4800 +7350 92579 0.4540 +7350 126129 0.6850 +7350 133060 0.5720 +7350 133522 0.6220 +7350 137902 0.5210 +7350 145957 0.5520 +7350 148811 0.4490 +7350 151306 0.4810 +7350 152831 0.5940 +7350 153201 0.4970 +7350 219623 0.8210 +7350 252995 0.7930 +7350 255520 0.4600 +7350 284207 0.4460 +7350 376497 0.4860 +7350 431707 0.4990 +7350 440503 0.4230 +7350 548596 0.4250 +7351 7352 0.4280 +7351 7381 0.4510 +7351 7385 0.7220 +7351 7416 0.4600 +7351 7529 0.5250 +7351 7837 0.4160 +7351 8310 0.5510 +7351 8660 0.4560 +7351 9016 0.4760 +7351 9370 0.7900 +7351 9481 0.6600 +7351 9927 0.5190 +7351 9971 0.4010 +7351 10059 0.4880 +7351 10295 0.4180 +7351 10367 0.7780 +7351 10891 0.9280 +7351 10989 0.5120 +7351 11254 0.4570 +7351 22809 0.4220 +7351 22933 0.4390 +7351 23409 0.4820 +7351 23410 0.5920 +7351 23411 0.6680 +7351 25970 0.4990 +7351 26291 0.4550 +7351 50507 0.5800 +7351 51024 0.5210 +7351 51094 0.4940 +7351 51547 0.4050 +7351 51738 0.8160 +7351 54205 0.6190 +7351 55669 0.5190 +7351 56729 0.4220 +7351 57104 0.5440 +7351 57818 0.4260 +7351 63933 0.4080 +7351 63976 0.4090 +7351 65018 0.5050 +7351 79602 0.4770 +7351 90550 0.4530 +7351 92579 0.4350 +7351 126129 0.7200 +7351 133522 0.5220 +7351 137902 0.4150 +7351 252995 0.4450 +7351 257202 0.5160 +7351 338557 0.4300 +7351 376497 0.5350 +7351 493869 0.5180 +7351 619373 0.5540 +7352 7385 0.5550 +7352 7529 0.5390 +7352 8310 0.4810 +7352 9016 0.4820 +7352 9370 0.5710 +7352 9481 0.4830 +7352 9611 0.5130 +7352 9927 0.4660 +7352 10367 0.5900 +7352 10891 0.9170 +7352 10965 0.4400 +7352 23410 0.4200 +7352 23411 0.4950 +7352 23417 0.4360 +7352 26291 0.4820 +7352 51024 0.4150 +7352 51738 0.7040 +7352 54205 0.5310 +7352 55669 0.4470 +7352 55818 0.4430 +7352 57104 0.4910 +7352 63976 0.5160 +7352 84701 0.6340 +7352 114907 0.4850 +7352 126129 0.8100 +7352 133522 0.5840 +7352 219623 0.4470 +7352 252995 0.4530 +7352 376497 0.4150 +7352 387082 0.4440 +7353 7399 0.4990 +7353 7415 0.9990 +7353 7979 0.6390 +7353 7993 0.8570 +7353 8214 0.6090 +7353 8218 0.4780 +7353 8220 0.7170 +7353 8225 0.4040 +7353 8239 0.6370 +7353 8266 0.8280 +7353 8318 0.8130 +7353 8452 0.6390 +7353 8638 0.4660 +7353 8813 0.4430 +7353 8945 0.4440 +7353 8975 0.9450 +7353 9097 0.5050 +7353 9147 0.6470 +7353 9212 0.6440 +7353 9319 0.4910 +7353 9320 0.4250 +7353 9354 0.9700 +7353 9373 0.9920 +7353 9464 0.6240 +7353 9491 0.7020 +7353 9636 0.4800 +7353 9695 0.5630 +7353 9709 0.4830 +7353 9817 0.5130 +7353 9861 0.7040 +7353 9978 0.6830 +7353 9993 0.7660 +7353 10054 0.5310 +7353 10075 0.4270 +7353 10197 0.5510 +7353 10213 0.8490 +7353 10246 0.4310 +7353 10277 0.9690 +7353 10293 0.4500 +7353 10299 0.8230 +7353 10537 0.6160 +7353 10542 0.4650 +7353 10845 0.4920 +7353 10926 0.5460 +7353 10956 0.8410 +7353 11047 0.4510 +7353 11124 0.9990 +7353 11160 0.4560 +7353 11231 0.4330 +7353 11236 0.6220 +7353 22888 0.8430 +7353 22980 0.5650 +7353 22987 0.6010 +7353 23190 0.6590 +7353 23197 0.9990 +7353 23198 0.5620 +7353 23353 0.4330 +7353 23376 0.4250 +7353 23476 0.4500 +7353 26043 0.9990 +7353 26046 0.7040 +7353 27037 0.5200 +7353 27243 0.6930 +7353 27248 0.6630 +7353 29801 0.5670 +7353 29927 0.7270 +7353 29978 0.6880 +7353 29979 0.6840 +7353 50613 0.5230 +7353 51009 0.9630 +7353 51035 0.9430 +7353 51272 0.4970 +7353 51465 0.7410 +7353 51569 0.4250 +7353 54431 0.4550 +7353 54545 0.4840 +7353 54584 0.4910 +7353 54941 0.9100 +7353 55137 0.4810 +7353 55139 0.8240 +7353 55432 0.9890 +7353 55666 0.9990 +7353 55741 0.4280 +7353 55768 0.5360 +7353 55829 0.7940 +7353 55968 0.9980 +7353 56886 0.4420 +7353 56893 0.4960 +7353 57593 0.5440 +7353 58510 0.4740 +7353 63979 0.4850 +7353 64641 0.5440 +7353 64976 0.6810 +7353 79029 0.8390 +7353 79058 0.6120 +7353 79065 0.4420 +7353 79101 0.4050 +7353 79139 0.9950 +7353 79781 0.4810 +7353 79876 0.4620 +7353 79989 0.9940 +7353 80124 0.9980 +7353 80173 0.9940 +7353 80233 0.8880 +7353 80267 0.6370 +7353 80700 0.8370 +7353 81620 0.7000 +7353 83473 0.5300 +7353 83932 0.8070 +7353 84296 0.5840 +7353 84447 0.8820 +7353 84896 0.6400 +7353 85359 0.6090 +7353 91319 0.9300 +7353 91544 0.4410 +7353 91782 0.5480 +7353 92552 0.7500 +7353 93550 0.4660 +7353 118424 0.4900 +7353 122706 0.5550 +7353 122769 0.4530 +7353 127733 0.9950 +7353 128989 0.5360 +7353 134510 0.5350 +7353 137886 0.4520 +7353 143471 0.5650 +7353 143630 0.4550 +7353 153830 0.4210 +7353 164153 0.4660 +7353 165324 0.5080 +7353 166378 0.8440 +7353 197131 0.5610 +7353 221302 0.4270 +7353 253738 0.5440 +7353 258010 0.6370 +7353 337867 0.9950 +7353 387082 0.4240 +7353 392843 0.4810 +7353 401720 0.4810 +7355 7357 0.4020 +7355 7358 0.4180 +7355 7360 0.4910 +7355 7363 0.9720 +7355 7364 0.9670 +7355 7365 0.9720 +7355 7366 0.9720 +7355 7367 0.9320 +7355 7368 0.7560 +7355 8647 0.4260 +7355 8708 0.4300 +7355 8714 0.4860 +7355 8856 0.6230 +7355 8869 0.4560 +7355 9334 0.4320 +7355 9360 0.9230 +7355 9375 0.4050 +7355 9376 0.4750 +7355 9429 0.6010 +7355 9970 0.5820 +7355 10237 0.8100 +7355 10257 0.4370 +7355 10331 0.4170 +7355 10599 0.6480 +7355 10720 0.8830 +7355 10941 0.8210 +7355 11046 0.6700 +7355 11282 0.4610 +7355 11309 0.4490 +7355 22859 0.5320 +7355 23169 0.7250 +7355 23443 0.6190 +7355 25972 0.4130 +7355 27233 0.6930 +7355 27284 0.6960 +7355 27306 0.5950 +7355 28234 0.5830 +7355 29929 0.4570 +7355 51000 0.4260 +7355 51006 0.4530 +7355 51081 0.4780 +7355 51151 0.4770 +7355 54490 0.9250 +7355 54575 0.9890 +7355 54576 0.9890 +7355 54577 0.9890 +7355 54578 0.9900 +7355 54579 0.9600 +7355 54600 0.9790 +7355 54657 0.9900 +7355 54658 0.9840 +7355 54659 0.9690 +7355 55244 0.5050 +7355 55343 0.7150 +7355 55757 0.8160 +7355 55858 0.4750 +7355 56886 0.6860 +7355 79139 0.4640 +7355 79799 0.8830 +7355 79868 0.4730 +7355 84720 0.4340 +7355 84912 0.4300 +7355 85365 0.5440 +7355 113829 0.4990 +7355 114799 0.4460 +7355 133482 0.4820 +7355 133688 0.9730 +7355 135152 0.8930 +7355 146802 0.4420 +7355 157570 0.4460 +7355 164045 0.6820 +7355 167127 0.9730 +7355 171546 0.4210 +7355 192134 0.4170 +7355 220074 0.4330 +7355 340146 0.6850 +7355 347734 0.4720 +7355 442038 0.6700 +7355 574537 0.9500 +7355 100861540 0.4810 +7356 7380 0.4190 +7356 7536 0.7650 +7356 8029 0.6420 +7356 8061 0.7630 +7356 8626 0.5850 +7356 10553 0.5060 +7356 10568 0.4440 +7356 10630 0.6000 +7356 22954 0.6770 +7356 23200 0.6690 +7356 25803 0.5240 +7356 27019 0.4930 +7356 51208 0.4280 +7356 51297 0.6370 +7356 51705 0.5830 +7356 55644 0.4950 +7356 59340 0.4890 +7356 79026 0.7700 +7356 80332 0.4120 +7356 84525 0.5420 +7356 92304 0.8680 +7356 92747 0.5370 +7356 117156 0.9500 +7356 132203 0.4010 +7356 653509 0.8260 +7356 727897 0.6510 +7356 729238 0.6980 +7357 7368 0.9690 +7357 7841 0.4160 +7357 8398 0.4290 +7357 8560 0.9720 +7357 8612 0.9240 +7357 8613 0.9230 +7357 8705 0.5920 +7357 8795 0.6590 +7357 8869 0.6580 +7357 8877 0.6750 +7357 8879 0.5240 +7357 9331 0.9850 +7357 9334 0.7460 +7357 9375 0.4450 +7357 9517 0.8260 +7357 10087 0.6810 +7357 10099 0.4360 +7357 10247 0.7330 +7357 10558 0.8500 +7357 10577 0.5080 +7357 10994 0.6330 +7357 26003 0.4850 +7357 26061 0.6330 +7357 27293 0.4620 +7357 29906 0.4580 +7357 29956 0.9700 +7357 51228 0.5800 +7357 53947 0.7080 +7357 55258 0.6700 +7357 55304 0.8220 +7357 55331 0.4810 +7357 55512 0.9500 +7357 55627 0.9480 +7357 56624 0.9620 +7357 56848 0.6350 +7357 57591 0.6690 +7357 57608 0.4570 +7357 57704 0.9750 +7357 64781 0.9770 +7357 79152 0.5220 +7357 79583 0.5320 +7357 79603 0.9640 +7357 79896 0.6700 +7357 80235 0.4010 +7357 81537 0.9480 +7357 83723 0.6670 +7357 84002 0.4420 +7357 84725 0.6000 +7357 91012 0.9640 +7357 123099 0.9610 +7357 125981 0.9600 +7357 127550 0.4260 +7357 130367 0.9600 +7357 132949 0.4100 +7357 137872 0.5010 +7357 142891 0.4530 +7357 166929 0.9610 +7357 171546 0.5770 +7357 204219 0.9640 +7357 253012 0.5570 +7357 253782 0.9720 +7357 259230 0.9630 +7357 285498 0.4730 +7357 339221 0.9340 +7357 340485 0.9530 +7358 7360 0.9850 +7358 7363 0.9340 +7358 7364 0.9340 +7358 7365 0.9390 +7358 7366 0.9410 +7358 7367 0.9390 +7358 7780 0.4020 +7358 8813 0.5250 +7358 8836 0.6230 +7358 8891 0.4410 +7358 8893 0.4380 +7358 9060 0.5050 +7358 9061 0.4880 +7358 9391 0.5390 +7358 9563 0.5260 +7358 9945 0.4700 +7358 10381 0.4440 +7358 10382 0.4260 +7358 10383 0.4280 +7358 10720 0.9370 +7358 10841 0.5290 +7358 22856 0.4670 +7358 23169 0.4620 +7358 23483 0.9670 +7358 23761 0.4230 +7358 27430 0.7400 +7358 29880 0.5130 +7358 29925 0.6090 +7358 29926 0.5650 +7358 50814 0.7120 +7358 51175 0.4290 +7358 54187 0.5010 +7358 54490 0.9370 +7358 54575 0.9640 +7358 54576 0.9650 +7358 54577 0.9650 +7358 54578 0.9660 +7358 54579 0.9390 +7358 54600 0.9360 +7358 54657 0.9640 +7358 54658 0.9680 +7358 54659 0.9380 +7358 55276 0.4710 +7358 55312 0.5220 +7358 55586 0.6140 +7358 56052 0.5710 +7358 57563 0.4190 +7358 60558 0.4370 +7358 64841 0.4160 +7358 79730 0.4140 +7358 79799 0.9410 +7358 80008 0.4100 +7358 80146 0.9990 +7358 80270 0.6840 +7358 80308 0.4060 +7358 81027 0.4410 +7358 84263 0.4100 +7358 84617 0.4360 +7358 84790 0.4040 +7358 85365 0.5740 +7358 91373 0.5880 +7358 93517 0.6830 +7358 123263 0.6030 +7358 197258 0.6160 +7358 201895 0.6220 +7358 203068 0.4710 +7358 260334 0.4260 +7358 283209 0.4500 +7358 284098 0.5690 +7358 347688 0.4260 +7358 347733 0.4310 +7358 390637 0.4310 +7358 440138 0.6320 +7358 574537 0.9380 +7358 644974 0.5620 +7360 7372 0.4220 +7360 8277 0.4620 +7360 8908 0.9570 +7360 9375 0.4600 +7360 9563 0.6210 +7360 9583 0.4050 +7360 10097 0.4600 +7360 10243 0.8280 +7360 10425 0.6680 +7360 11181 0.6450 +7360 22944 0.7680 +7360 23178 0.7920 +7360 23483 0.5580 +7360 26086 0.4430 +7360 26227 0.4620 +7360 27068 0.4700 +7360 28966 0.4230 +7360 29925 0.5870 +7360 29926 0.6040 +7360 55276 0.9830 +7360 64080 0.4640 +7360 64841 0.4750 +7360 80146 0.6270 +7360 80201 0.4470 +7360 83440 0.4270 +7360 84076 0.4810 +7360 85365 0.5560 +7360 91373 0.5050 +7360 130589 0.4400 +7360 130752 0.4090 +7360 171546 0.4100 +7360 283209 0.9690 +7360 286451 0.4950 +7360 440138 0.4480 +7363 7923 0.6670 +7363 8630 0.6920 +7363 8644 0.9190 +7363 8647 0.5490 +7363 8714 0.4030 +7363 8854 0.6630 +7363 8856 0.5260 +7363 9360 0.7630 +7363 9365 0.6600 +7363 9376 0.4460 +7363 9429 0.4950 +7363 9970 0.4720 +7363 9971 0.4670 +7363 10599 0.7780 +7363 26229 0.4410 +7363 27233 0.6220 +7363 27284 0.6300 +7363 28234 0.5480 +7363 29785 0.6860 +7363 51144 0.6680 +7363 51478 0.6600 +7363 54576 0.4540 +7363 55577 0.4040 +7363 55586 0.9010 +7363 56121 0.4250 +7363 56126 0.4550 +7363 56128 0.4170 +7363 56131 0.4200 +7363 56603 0.6870 +7363 79644 0.7050 +7363 114799 0.4400 +7363 135152 0.6630 +7363 157570 0.4390 +7363 200931 0.4710 +7363 220074 0.8080 +7363 284541 0.6960 +7363 340665 0.6860 +7363 374875 0.6770 +7363 442038 0.6260 +7363 100861540 0.7820 +7364 7369 0.4830 +7364 7403 0.4020 +7364 7923 0.6850 +7364 8242 0.4210 +7364 8529 0.4320 +7364 8576 0.5480 +7364 8630 0.7110 +7364 8644 0.9330 +7364 8647 0.4620 +7364 8714 0.4670 +7364 8854 0.6690 +7364 8856 0.6010 +7364 9360 0.7900 +7364 9365 0.6600 +7364 9376 0.4860 +7364 9429 0.5950 +7364 9970 0.5270 +7364 10257 0.4070 +7364 10599 0.7330 +7364 10720 0.4370 +7364 11309 0.4820 +7364 26229 0.4240 +7364 27233 0.6280 +7364 27284 0.6410 +7364 27306 0.4200 +7364 28234 0.6320 +7364 29072 0.4040 +7364 29785 0.7270 +7364 51144 0.6910 +7364 51478 0.6890 +7364 55244 0.4300 +7364 55586 0.9010 +7364 56121 0.4090 +7364 56126 0.4080 +7364 56128 0.4050 +7364 56131 0.4030 +7364 56603 0.7140 +7364 79644 0.7040 +7364 114799 0.4370 +7364 135152 0.9130 +7364 157570 0.4310 +7364 220074 0.8180 +7364 284541 0.7070 +7364 340665 0.6950 +7364 374875 0.6720 +7364 442038 0.6380 +7364 100861540 0.8460 +7365 7923 0.6690 +7365 8630 0.6770 +7365 8644 0.9170 +7365 8647 0.4340 +7365 8854 0.6780 +7365 8856 0.4880 +7365 9360 0.7640 +7365 9365 0.6600 +7365 9376 0.4090 +7365 9429 0.5010 +7365 9970 0.4410 +7365 10246 0.4230 +7365 10599 0.6430 +7365 10720 0.4450 +7365 26229 0.4640 +7365 27233 0.6220 +7365 27284 0.6290 +7365 27306 0.4010 +7365 28234 0.5040 +7365 29785 0.6860 +7365 51144 0.6700 +7365 51478 0.6600 +7365 55586 0.9010 +7365 56603 0.6870 +7365 79644 0.6730 +7365 114799 0.4410 +7365 116519 0.4880 +7365 135152 0.5230 +7365 157570 0.4430 +7365 220074 0.8140 +7365 256394 0.4210 +7365 284541 0.6900 +7365 340665 0.6860 +7365 374875 0.6800 +7365 442038 0.6280 +7365 100861540 0.7670 +7366 7367 0.7880 +7366 7923 0.6850 +7366 8630 0.7640 +7366 8644 0.9460 +7366 8647 0.4470 +7366 8854 0.6630 +7366 8856 0.5020 +7366 9360 0.7630 +7366 9365 0.6600 +7366 9376 0.4100 +7366 9429 0.5200 +7366 9520 0.4130 +7366 9721 0.4230 +7366 9970 0.4050 +7366 10599 0.6530 +7366 10941 0.4200 +7366 11309 0.4530 +7366 26229 0.4300 +7366 27233 0.6390 +7366 27284 0.6540 +7366 28234 0.5550 +7366 29785 0.7140 +7366 51144 0.6890 +7366 51478 0.6700 +7366 54577 0.4470 +7366 54768 0.4250 +7366 55586 0.9010 +7366 55672 0.4240 +7366 56603 0.6870 +7366 64816 0.4250 +7366 79644 0.7620 +7366 79799 0.5220 +7366 114799 0.4260 +7366 135152 0.8770 +7366 157570 0.4260 +7366 220074 0.8130 +7366 284541 0.7470 +7366 340665 0.6860 +7366 374875 0.6760 +7366 442038 0.6420 +7366 100861540 0.8150 +7367 7923 0.6670 +7367 8529 0.6060 +7367 8630 0.7310 +7367 8644 0.9390 +7367 8854 0.6630 +7367 8856 0.4750 +7367 9360 0.7280 +7367 9365 0.6600 +7367 9429 0.4920 +7367 9520 0.8290 +7367 9721 0.8320 +7367 9901 0.8100 +7367 10288 0.4240 +7367 10599 0.5820 +7367 23380 0.8230 +7367 26229 0.4360 +7367 27233 0.6140 +7367 27284 0.6260 +7367 28234 0.4850 +7367 29785 0.7320 +7367 51144 0.6760 +7367 51478 0.6700 +7367 54768 0.8270 +7367 55586 0.9010 +7367 55672 0.8300 +7367 56603 0.6870 +7367 79644 0.7240 +7367 114799 0.4170 +7367 135152 0.8260 +7367 157570 0.4160 +7367 220074 0.8060 +7367 284541 0.6880 +7367 340665 0.6860 +7367 374875 0.6770 +7367 442038 0.6170 +7367 100861540 0.7930 +7368 8560 0.9340 +7368 8612 0.9290 +7368 8613 0.9150 +7368 8633 0.5500 +7368 8705 0.4660 +7368 8869 0.4650 +7368 9331 0.5360 +7368 9334 0.4140 +7368 9514 0.9640 +7368 9517 0.5040 +7368 10390 0.9000 +7368 10558 0.4810 +7368 10825 0.9010 +7368 23114 0.4210 +7368 29906 0.4950 +7368 29956 0.9450 +7368 51090 0.4450 +7368 51571 0.4240 +7368 55304 0.4810 +7368 55512 0.9270 +7368 55627 0.9350 +7368 56624 0.9160 +7368 56994 0.9000 +7368 57471 0.4650 +7368 57704 0.9370 +7368 64781 0.9510 +7368 79152 0.6940 +7368 79603 0.9380 +7368 81537 0.9380 +7368 83440 0.4420 +7368 85465 0.9050 +7368 91012 0.9320 +7368 123099 0.9290 +7368 125981 0.9330 +7368 129807 0.9110 +7368 130367 0.9340 +7368 130589 0.4330 +7368 135152 0.4210 +7368 166929 0.9310 +7368 204219 0.9360 +7368 253782 0.9370 +7368 259230 0.9360 +7368 339221 0.9100 +7368 340485 0.9260 +7369 7403 0.4740 +7369 7809 0.5710 +7369 7827 0.6360 +7369 8242 0.4570 +7369 8542 0.5050 +7369 9356 0.4900 +7369 9376 0.5470 +7369 10136 0.6210 +7369 10686 0.4370 +7369 10857 0.5160 +7369 11136 0.5060 +7369 11236 0.4540 +7369 23436 0.6160 +7369 29072 0.4410 +7369 29895 0.4240 +7369 29927 0.4590 +7369 51032 0.4100 +7369 51422 0.4050 +7369 51458 0.6110 +7369 55503 0.4790 +7369 55586 0.6340 +7369 55690 0.4040 +7369 56606 0.5320 +7369 57393 0.4280 +7369 57619 0.6230 +7369 78989 0.4280 +7369 79029 0.5020 +7369 114131 0.5460 +7369 116085 0.6090 +7369 120939 0.4870 +7369 124872 0.7910 +7369 134288 0.4240 +7369 138046 0.5300 +7369 200539 0.4230 +7369 204474 0.5890 +7369 284612 0.4590 +7369 340260 0.5920 +7371 7372 0.9780 +7371 7378 0.9790 +7371 8833 0.4650 +7371 9583 0.9080 +7371 10297 0.4750 +7371 22934 0.5300 +7371 23178 0.8970 +7371 23583 0.4130 +7371 26330 0.4430 +7371 51727 0.8310 +7371 51733 0.5670 +7371 54963 0.9700 +7371 56474 0.5430 +7371 57469 0.4150 +7371 57645 0.4500 +7371 83549 0.9800 +7371 84928 0.4030 +7371 118881 0.4540 +7371 124583 0.9110 +7371 127544 0.5800 +7371 129607 0.9390 +7371 139596 0.9990 +7371 151531 0.9750 +7371 285148 0.4220 +7371 377841 0.9130 +7371 440699 0.5060 +7371 729020 0.5480 +7372 7374 0.5690 +7372 7378 0.9830 +7372 7520 0.4040 +7372 8192 0.4170 +7372 8458 0.5220 +7372 8833 0.8020 +7372 9156 0.4460 +7372 9221 0.4060 +7372 9380 0.4680 +7372 9563 0.4720 +7372 9583 0.9030 +7372 9615 0.6170 +7372 9942 0.4390 +7372 9962 0.8870 +7372 9963 0.8870 +7372 10201 0.4510 +7372 10535 0.5450 +7372 10570 0.7470 +7372 10606 0.7190 +7372 10797 0.4960 +7372 10910 0.4600 +7372 11128 0.5250 +7372 22928 0.4460 +7372 22929 0.4380 +7372 22934 0.5530 +7372 22978 0.9170 +7372 22984 0.4960 +7372 23411 0.4090 +7372 23475 0.5050 +7372 23521 0.4550 +7372 25813 0.5340 +7372 25885 0.5160 +7372 26289 0.5280 +7372 27349 0.4420 +7372 28998 0.4160 +7372 29889 0.5160 +7372 29927 0.4150 +7372 29960 0.5950 +7372 30833 0.9380 +7372 50484 0.4120 +7372 50808 0.4590 +7372 51026 0.9570 +7372 51067 0.4260 +7372 51081 0.4980 +7372 51154 0.4160 +7372 51167 0.8780 +7372 51251 0.9290 +7372 51263 0.4640 +7372 51292 0.4290 +7372 51314 0.4080 +7372 51700 0.8530 +7372 51706 0.8540 +7372 51727 0.7760 +7372 51733 0.6330 +7372 54205 0.4300 +7372 54512 0.5950 +7372 54963 0.9810 +7372 54995 0.4390 +7372 55191 0.4370 +7372 55239 0.4920 +7372 55278 0.5690 +7372 55703 0.4230 +7372 55720 0.5000 +7372 55759 0.4830 +7372 56474 0.6960 +7372 56896 0.7470 +7372 56915 0.4030 +7372 56952 0.4480 +7372 56953 0.9160 +7372 57119 0.5370 +7372 60496 0.4780 +7372 64080 0.4610 +7372 65080 0.4120 +7372 65220 0.4210 +7372 83549 0.9810 +7372 84172 0.5240 +7372 84618 0.9050 +7372 89894 0.7970 +7372 91875 0.4440 +7372 92106 0.8580 +7372 92399 0.5480 +7372 93034 0.9150 +7372 115024 0.9130 +7372 118460 0.4110 +7372 122481 0.4300 +7372 122622 0.5520 +7372 124454 0.4320 +7372 124583 0.9000 +7372 127845 0.9570 +7372 129607 0.9450 +7372 132949 0.4590 +7372 139596 0.9730 +7372 144193 0.4170 +7372 151531 0.9840 +7372 158067 0.4300 +7372 158584 0.4440 +7372 162417 0.5220 +7372 164153 0.4070 +7372 200895 0.6730 +7372 221264 0.6010 +7372 221823 0.9650 +7372 377841 0.9110 +7372 606495 0.8540 +7372 100526794 0.9050 +7373 7412 0.5380 +7373 8516 0.5660 +7373 8974 0.5100 +7373 8985 0.5840 +7373 9358 0.5130 +7373 9507 0.4920 +7373 9509 0.5270 +7373 10491 0.5210 +7373 10516 0.4200 +7373 10536 0.5200 +7373 10631 0.5590 +7373 22795 0.4380 +7373 23090 0.4250 +7373 23127 0.5490 +7373 25878 0.4490 +7373 50509 0.5590 +7373 51006 0.4780 +7373 54829 0.6740 +7373 55214 0.5980 +7373 57642 0.5320 +7373 64102 0.4860 +7373 64175 0.5550 +7373 79709 0.5440 +7373 80781 0.5200 +7373 81578 0.6790 +7373 84570 0.5540 +7373 85301 0.5350 +7373 91522 0.5380 +7373 114898 0.4470 +7373 131873 0.5240 +7373 136227 0.4890 +7373 151887 0.4270 +7373 169044 0.5230 +7373 219654 0.4340 +7373 221476 0.4240 +7373 255631 0.5000 +7373 283208 0.5330 +7373 338872 0.4410 +7373 340267 0.5580 +7373 440163 0.4200 +7374 7486 0.4880 +7374 7507 0.6130 +7374 7514 0.4320 +7374 7515 0.8710 +7374 7517 0.4550 +7374 7520 0.4660 +7374 7529 0.4570 +7374 7531 0.4380 +7374 7532 0.4690 +7374 7533 0.4050 +7374 8930 0.6840 +7374 9156 0.7140 +7374 9582 0.6770 +7374 9730 0.9790 +7374 9941 0.5370 +7374 10309 0.4090 +7374 10459 0.5330 +7374 10535 0.4190 +7374 10721 0.8560 +7374 10930 0.6510 +7374 10935 0.4800 +7374 11051 0.4080 +7374 11201 0.6400 +7374 11284 0.5470 +7374 23583 0.9630 +7374 23705 0.5350 +7374 27301 0.7690 +7374 27343 0.7440 +7374 27350 0.5900 +7374 27434 0.7760 +7374 29128 0.5980 +7374 29997 0.4290 +7374 51010 0.4580 +7374 51021 0.4080 +7374 51412 0.5410 +7374 51426 0.4130 +7374 51455 0.9010 +7374 54840 0.4290 +7374 55247 0.6980 +7374 55775 0.5900 +7374 56941 0.4400 +7374 57379 0.9150 +7374 60489 0.7180 +7374 79661 0.7000 +7374 79991 0.5390 +7374 80198 0.4290 +7374 84893 0.4380 +7374 113179 0.4380 +7374 134637 0.4480 +7374 139596 0.4270 +7374 140564 0.5400 +7374 164668 0.6430 +7374 200315 0.7180 +7374 200316 0.6200 +7374 252969 0.5870 +7374 284131 0.5050 +7374 284439 0.4770 +7374 387103 0.4420 +7374 403314 0.4450 +7374 102723407 0.6390 +7375 7398 0.5610 +7375 7706 0.4050 +7375 7874 0.4110 +7375 8078 0.6350 +7375 8237 0.8390 +7375 8239 0.4130 +7375 8312 0.4360 +7375 8517 0.5280 +7375 8717 0.4790 +7375 8737 0.7750 +7375 8772 0.4780 +7375 9097 0.4340 +7375 9099 0.5270 +7375 9128 0.4920 +7375 9129 0.8850 +7375 9733 0.9980 +7375 9878 0.5750 +7375 9924 0.4090 +7375 9929 0.5240 +7375 9958 0.9310 +7375 9960 0.5070 +7375 10075 0.6500 +7375 10213 0.4740 +7375 10454 0.5750 +7375 10465 0.6750 +7375 10475 0.4820 +7375 10616 0.5360 +7375 10617 0.5370 +7375 10869 0.5250 +7375 10921 0.4040 +7375 10987 0.5810 +7375 11157 0.4730 +7375 11222 0.4140 +7375 23118 0.5930 +7375 23252 0.4700 +7375 23549 0.4100 +7375 23586 0.5070 +7375 25804 0.4440 +7375 26121 0.6570 +7375 27005 0.4430 +7375 29761 0.6520 +7375 50852 0.5040 +7375 51073 0.4330 +7375 51377 0.6110 +7375 51633 0.4490 +7375 51701 0.6420 +7375 54550 0.4140 +7375 54726 0.4600 +7375 54764 0.4730 +7375 54941 0.4540 +7375 54967 0.4200 +7375 55072 0.5830 +7375 55593 0.5940 +7375 55611 0.6360 +7375 56257 0.7190 +7375 56852 0.4260 +7375 56957 0.4840 +7375 57506 0.4980 +7375 57559 0.4560 +7375 57599 0.4550 +7375 57646 0.7180 +7375 57819 0.5740 +7375 63931 0.4030 +7375 63967 0.4680 +7375 64750 0.4760 +7375 64852 0.6130 +7375 64854 0.5100 +7375 64965 0.4210 +7375 65003 0.4120 +7375 78990 0.4630 +7375 79184 0.4070 +7375 79845 0.4330 +7375 81858 0.5270 +7375 83737 0.4510 +7375 83844 0.4940 +7375 84282 0.4330 +7375 84749 0.6040 +7375 89122 0.4070 +7375 90268 0.4320 +7375 114803 0.6280 +7375 126119 0.4740 +7375 161725 0.4270 +7375 219927 0.4240 +7375 220213 0.4420 +7375 221302 0.7470 +7375 257397 0.5620 +7376 7391 0.4240 +7376 7436 0.5170 +7376 8202 0.6650 +7376 8204 0.6810 +7376 8431 0.7290 +7376 8473 0.9030 +7376 8554 0.5860 +7376 8648 0.9230 +7376 8841 0.5140 +7376 9213 0.9320 +7376 9611 0.8760 +7376 9612 0.8250 +7376 9619 0.8920 +7376 9682 0.5280 +7376 9759 0.5890 +7376 9971 0.4160 +7376 9975 0.6070 +7376 10062 0.9150 +7376 10123 0.5330 +7376 10499 0.9750 +7376 10891 0.4320 +7376 23028 0.6390 +7376 23054 0.6720 +7376 23112 0.5150 +7376 23411 0.4530 +7376 24145 0.4780 +7376 26154 0.4170 +7376 26523 0.5330 +7376 27161 0.5330 +7376 27327 0.5010 +7376 27329 0.6090 +7376 29116 0.7540 +7376 51085 0.4470 +7376 54461 0.4900 +7376 54659 0.5080 +7376 55818 0.4990 +7376 64240 0.8980 +7376 64241 0.8860 +7376 79718 0.5320 +7376 80820 0.5250 +7376 133522 0.4040 +7376 192669 0.5330 +7376 192670 0.5330 +7376 221656 0.5060 +7376 340273 0.5420 +7378 7498 0.4770 +7378 8803 0.4220 +7378 9615 0.7250 +7378 22978 0.9160 +7378 23510 0.5150 +7378 23583 0.5230 +7378 30833 0.9370 +7378 50484 0.5510 +7378 51071 0.5510 +7378 51251 0.9280 +7378 51733 0.6570 +7378 54963 0.9800 +7378 55276 0.8420 +7378 56652 0.4180 +7378 56952 0.6680 +7378 56953 0.9420 +7378 64080 0.6030 +7378 79956 0.5030 +7378 80817 0.5650 +7378 81602 0.5440 +7378 83549 0.9790 +7378 84618 0.9150 +7378 84955 0.6190 +7378 93034 0.9140 +7378 113179 0.4860 +7378 115024 0.9000 +7378 129607 0.5450 +7378 134637 0.4860 +7378 139596 0.9690 +7378 144193 0.6480 +7378 151531 0.9180 +7378 154141 0.5540 +7378 283209 0.8780 +7378 283985 0.6130 +7378 646625 0.4160 +7378 100526794 0.9040 +7379 7380 0.9990 +7379 54474 0.7050 +7379 169166 0.4030 +7379 255798 0.4210 +7379 283150 0.5190 +7379 400566 0.5850 +7379 105375355 0.9430 +7380 28978 0.4680 +7380 54474 0.7280 +7380 117156 0.4420 +7380 147699 0.4590 +7380 169166 0.4400 +7380 257144 0.4410 +7380 400566 0.6540 +7381 7384 0.9990 +7381 7385 0.9990 +7381 7386 0.9990 +7381 7388 0.9990 +7381 7416 0.5940 +7381 7417 0.4340 +7381 8683 0.4330 +7381 8802 0.5090 +7381 9045 0.4320 +7381 9167 0.9490 +7381 9296 0.4040 +7381 9349 0.4260 +7381 9377 0.9990 +7381 9446 0.4390 +7381 9512 0.9900 +7381 9551 0.7740 +7381 9556 0.4800 +7381 9582 0.7580 +7381 10063 0.4090 +7381 10245 0.5590 +7381 10440 0.6090 +7381 10476 0.9760 +7381 10553 0.6840 +7381 10632 0.9290 +7381 10651 0.4020 +7381 10891 0.4530 +7381 10975 0.9990 +7381 11343 0.8280 +7381 23203 0.9590 +7381 23558 0.9170 +7381 23645 0.8540 +7381 25874 0.4360 +7381 25994 0.4030 +7381 27089 0.9990 +7381 27109 0.4060 +7381 27159 0.4550 +7381 27258 0.5090 +7381 27350 0.7570 +7381 28998 0.4750 +7381 29093 0.4880 +7381 29796 0.9990 +7381 29928 0.5800 +7381 29957 0.4830 +7381 51021 0.4610 +7381 51079 0.9890 +7381 51102 0.5250 +7381 51118 0.4550 +7381 51241 0.4050 +7381 51263 0.5450 +7381 51318 0.6810 +7381 51389 0.4040 +7381 51642 0.4100 +7381 54205 0.9900 +7381 54539 0.9530 +7381 54543 0.4810 +7381 54902 0.5960 +7381 54927 0.4080 +7381 55028 0.6010 +7381 55143 0.4560 +7381 55245 0.7010 +7381 55871 0.4640 +7381 55967 0.9990 +7381 56901 0.8490 +7381 56993 0.5300 +7381 57379 0.7560 +7381 57407 0.6810 +7381 58509 0.4480 +7381 60489 0.7600 +7381 63931 0.4260 +7381 64111 0.8770 +7381 79002 0.9700 +7381 79135 0.5510 +7381 79145 0.5140 +7381 79728 0.8240 +7381 80142 0.5570 +7381 80195 0.6810 +7381 81341 0.9160 +7381 81689 0.4400 +7381 84300 0.5790 +7381 84419 0.6280 +7381 84701 0.9820 +7381 84833 0.8860 +7381 84886 0.9810 +7381 84939 0.7790 +7381 84985 0.4050 +7381 84987 0.4350 +7381 90624 0.6050 +7381 91300 0.8540 +7381 112812 0.4820 +7381 119391 0.4290 +7381 125965 0.9830 +7381 126328 0.9770 +7381 128876 0.4050 +7381 130752 0.6180 +7381 131076 0.4240 +7381 139221 0.7790 +7381 139322 0.4520 +7381 140564 0.7560 +7381 143879 0.5050 +7381 164668 0.7560 +7381 164684 0.9170 +7381 170712 0.8930 +7381 200315 0.7560 +7381 200316 0.7590 +7381 267020 0.8360 +7381 283459 0.9600 +7381 341947 0.5860 +7381 374291 0.9780 +7381 388753 0.9740 +7381 440567 0.9980 +7381 440574 0.5880 +7381 493856 0.4560 +7381 728317 0.7790 +7381 790955 0.4560 +7381 100131801 0.4540 +7381 100287932 0.4310 +7381 100532726 0.6920 +7381 100534599 0.4170 +7381 105372267 0.4840 +7384 7385 0.9990 +7384 7386 0.9990 +7384 7388 0.9990 +7384 7416 0.6600 +7384 7417 0.5880 +7384 7419 0.5590 +7384 8050 0.5000 +7384 8192 0.6310 +7384 8402 0.7250 +7384 8802 0.4570 +7384 8803 0.4620 +7384 9093 0.4420 +7384 9114 0.5390 +7384 9167 0.9260 +7384 9361 0.4620 +7384 9377 0.9990 +7384 9551 0.6220 +7384 9582 0.5780 +7384 9804 0.4530 +7384 10063 0.4850 +7384 10201 0.5110 +7384 10245 0.4130 +7384 10273 0.4150 +7384 10440 0.4700 +7384 10449 0.4180 +7384 10452 0.5030 +7384 10469 0.4460 +7384 10476 0.8630 +7384 10531 0.4060 +7384 10535 0.4930 +7384 10553 0.5870 +7384 10632 0.6330 +7384 10935 0.4750 +7384 10975 0.9990 +7384 10989 0.5690 +7384 11315 0.4080 +7384 11331 0.8870 +7384 22907 0.5000 +7384 23155 0.4040 +7384 23203 0.9510 +7384 23395 0.4390 +7384 23558 0.8050 +7384 23645 0.6590 +7384 25813 0.4850 +7384 25828 0.5420 +7384 25915 0.4280 +7384 25994 0.5560 +7384 26073 0.5060 +7384 26519 0.4420 +7384 27044 0.4400 +7384 27089 0.9990 +7384 27159 0.4280 +7384 27350 0.5780 +7384 27440 0.5270 +7384 28958 0.4100 +7384 29085 0.5120 +7384 29090 0.4620 +7384 29796 0.9990 +7384 29928 0.4590 +7384 29957 0.4230 +7384 30968 0.5110 +7384 51069 0.6350 +7384 51079 0.9820 +7384 51103 0.5340 +7384 51295 0.6900 +7384 51314 0.4630 +7384 51606 0.4550 +7384 51751 0.4720 +7384 54205 0.9250 +7384 54431 0.5340 +7384 54539 0.9400 +7384 54902 0.5070 +7384 54927 0.4920 +7384 54998 0.4280 +7384 55143 0.7000 +7384 55245 0.5420 +7384 55572 0.4130 +7384 55753 0.5410 +7384 55967 0.9990 +7384 55969 0.4590 +7384 56901 0.6690 +7384 56993 0.5230 +7384 57017 0.5290 +7384 57379 0.5780 +7384 57407 0.5920 +7384 57505 0.4190 +7384 57552 0.4530 +7384 60489 0.5810 +7384 64111 0.5080 +7384 64976 0.4030 +7384 65993 0.4110 +7384 79002 0.7510 +7384 79085 0.4510 +7384 79598 0.4420 +7384 79728 0.7340 +7384 80142 0.7400 +7384 80195 0.5840 +7384 80221 0.4750 +7384 81341 0.8510 +7384 83447 0.5130 +7384 83858 0.4480 +7384 84290 0.6140 +7384 84300 0.4240 +7384 84419 0.6280 +7384 84545 0.5570 +7384 84676 0.4890 +7384 84701 0.9680 +7384 84886 0.9240 +7384 84939 0.6850 +7384 85476 0.4130 +7384 90624 0.4440 +7384 91300 0.6570 +7384 92609 0.5130 +7384 93380 0.4560 +7384 112812 0.4510 +7384 114789 0.4140 +7384 123346 0.5000 +7384 125965 0.8700 +7384 126328 0.9690 +7384 126767 0.4490 +7384 139221 0.6850 +7384 140564 0.5780 +7384 164668 0.5780 +7384 164684 0.7930 +7384 170712 0.7970 +7384 192286 0.6120 +7384 200315 0.5780 +7384 200316 0.5790 +7384 203068 0.4110 +7384 267020 0.5120 +7384 283459 0.7900 +7384 285521 0.4160 +7384 341947 0.6270 +7384 343066 0.4490 +7384 344752 0.4490 +7384 374291 0.9970 +7384 388753 0.8310 +7384 400916 0.4100 +7384 440567 0.9880 +7384 613227 0.4710 +7384 728317 0.6850 +7384 100287932 0.4510 +7384 100532726 0.5160 +7385 7386 0.9990 +7385 7388 0.9990 +7385 7415 0.4550 +7385 7416 0.8100 +7385 7417 0.7630 +7385 7419 0.5960 +7385 8192 0.5480 +7385 8802 0.8660 +7385 8803 0.7000 +7385 9131 0.4060 +7385 9167 0.9370 +7385 9361 0.5810 +7385 9377 0.9990 +7385 9391 0.4010 +7385 9512 0.9980 +7385 9551 0.5840 +7385 9582 0.5780 +7385 9694 0.4290 +7385 9804 0.6950 +7385 9868 0.4410 +7385 9927 0.5530 +7385 10059 0.5830 +7385 10063 0.4330 +7385 10128 0.4950 +7385 10245 0.4030 +7385 10440 0.5010 +7385 10449 0.4230 +7385 10452 0.4800 +7385 10476 0.8750 +7385 10553 0.5870 +7385 10574 0.4650 +7385 10632 0.6490 +7385 10694 0.4640 +7385 10730 0.4270 +7385 10891 0.7860 +7385 10935 0.4930 +7385 10939 0.5720 +7385 10975 0.9990 +7385 10989 0.8110 +7385 11222 0.5050 +7385 11331 0.5440 +7385 11343 0.9120 +7385 23137 0.4440 +7385 23203 0.5250 +7385 23558 0.9260 +7385 23645 0.8090 +7385 23788 0.5230 +7385 25813 0.4750 +7385 25912 0.4720 +7385 25994 0.4830 +7385 27068 0.4620 +7385 27069 0.6730 +7385 27089 0.9990 +7385 27159 0.4470 +7385 27350 0.5780 +7385 28958 0.4020 +7385 28976 0.4240 +7385 29090 0.4080 +7385 29796 0.9990 +7385 29928 0.5110 +7385 50511 0.4210 +7385 51024 0.4150 +7385 51056 0.4880 +7385 51079 0.9550 +7385 51103 0.4160 +7385 51606 0.4090 +7385 54205 0.9540 +7385 54431 0.5390 +7385 54539 0.9220 +7385 54902 0.5930 +7385 54927 0.8110 +7385 54940 0.5690 +7385 55143 0.7050 +7385 55245 0.6310 +7385 55669 0.4730 +7385 55702 0.4490 +7385 55967 0.9830 +7385 56901 0.6780 +7385 56947 0.4400 +7385 56993 0.6330 +7385 57017 0.4850 +7385 57142 0.4180 +7385 57379 0.5780 +7385 57407 0.5840 +7385 60489 0.5810 +7385 63976 0.4530 +7385 64111 0.7090 +7385 65018 0.4600 +7385 79002 0.9230 +7385 79145 0.4150 +7385 79598 0.4420 +7385 79671 0.9100 +7385 79728 0.6560 +7385 79982 0.4770 +7385 80142 0.6300 +7385 80195 0.5870 +7385 81341 0.9270 +7385 83447 0.5190 +7385 84300 0.4550 +7385 84303 0.4770 +7385 84311 0.4050 +7385 84419 0.6280 +7385 84701 0.9920 +7385 84886 0.9660 +7385 84939 0.6440 +7385 85476 0.4700 +7385 90624 0.5790 +7385 91300 0.8090 +7385 92399 0.4490 +7385 93974 0.5330 +7385 115209 0.4010 +7385 118487 0.4080 +7385 125965 0.9580 +7385 126328 0.9140 +7385 130752 0.4570 +7385 131474 0.4580 +7385 133522 0.5710 +7385 139221 0.6440 +7385 140564 0.5780 +7385 164668 0.5780 +7385 164684 0.9220 +7385 170712 0.8130 +7385 192286 0.5000 +7385 200315 0.5780 +7385 200316 0.5790 +7385 283459 0.9170 +7385 285521 0.4110 +7385 341947 0.5690 +7385 374291 0.9800 +7385 388753 0.9300 +7385 440567 0.9930 +7385 728317 0.6440 +7385 790955 0.5020 +7385 100287932 0.5540 +7385 100532726 0.5510 +7385 105372267 0.4270 +7386 7388 0.9990 +7386 7403 0.5720 +7386 7404 0.5720 +7386 7416 0.7680 +7386 7417 0.6110 +7386 8050 0.4410 +7386 8192 0.6280 +7386 8242 0.5100 +7386 8243 0.4210 +7386 8284 0.5100 +7386 8402 0.4530 +7386 8562 0.4550 +7386 8564 0.4140 +7386 8566 0.4180 +7386 8667 0.4250 +7386 8683 0.4490 +7386 8801 0.4070 +7386 8802 0.7520 +7386 8803 0.5010 +7386 9054 0.6430 +7386 9126 0.4240 +7386 9167 0.9280 +7386 9377 0.9990 +7386 9446 0.6070 +7386 9512 0.9850 +7386 9551 0.6960 +7386 9582 0.7620 +7386 9738 0.6800 +7386 9804 0.5250 +7386 9868 0.4970 +7386 9997 0.8540 +7386 10051 0.4220 +7386 10063 0.4840 +7386 10102 0.6840 +7386 10229 0.6240 +7386 10440 0.4910 +7386 10449 0.7400 +7386 10452 0.5250 +7386 10469 0.4950 +7386 10476 0.8920 +7386 10535 0.5110 +7386 10553 0.8620 +7386 10587 0.4600 +7386 10592 0.4220 +7386 10632 0.6670 +7386 10730 0.4320 +7386 10765 0.5100 +7386 10898 0.4350 +7386 10935 0.5040 +7386 10939 0.4030 +7386 10975 0.9990 +7386 10987 0.4860 +7386 10989 0.4400 +7386 11331 0.4650 +7386 23135 0.5930 +7386 23137 0.4210 +7386 23155 0.8210 +7386 23203 0.9840 +7386 23410 0.4940 +7386 23479 0.6840 +7386 23521 0.5110 +7386 23558 0.8700 +7386 23645 0.9750 +7386 23788 0.4480 +7386 25813 0.4700 +7386 25824 0.4060 +7386 25828 0.4620 +7386 25973 0.4180 +7386 25994 0.4930 +7386 26227 0.5660 +7386 26330 0.4430 +7386 26519 0.4260 +7386 26520 0.5200 +7386 27010 0.4370 +7386 27068 0.5830 +7386 27089 0.9990 +7386 27127 0.4240 +7386 27158 0.4420 +7386 27235 0.5020 +7386 27247 0.5850 +7386 27350 0.7610 +7386 28998 0.5140 +7386 29090 0.4530 +7386 29796 0.9990 +7386 29928 0.6730 +7386 51004 0.4660 +7386 51021 0.4150 +7386 51031 0.4900 +7386 51056 0.6930 +7386 51065 0.4820 +7386 51073 0.5640 +7386 51079 0.9990 +7386 51103 0.4050 +7386 51117 0.4430 +7386 51142 0.5750 +7386 51250 0.8150 +7386 51264 0.4160 +7386 51314 0.4200 +7386 51318 0.4050 +7386 51805 0.6150 +7386 54205 0.9990 +7386 54431 0.7490 +7386 54539 0.9320 +7386 54543 0.4650 +7386 54902 0.6670 +7386 54927 0.4350 +7386 54968 0.4390 +7386 55028 0.4990 +7386 55143 0.7510 +7386 55245 0.5070 +7386 55753 0.4870 +7386 55967 0.9990 +7386 56901 0.7840 +7386 56993 0.5800 +7386 57017 0.5110 +7386 57128 0.5480 +7386 57379 0.7610 +7386 57407 0.8610 +7386 57552 0.5510 +7386 58509 0.4460 +7386 60489 0.7650 +7386 64111 0.9890 +7386 64965 0.5980 +7386 79002 0.9240 +7386 79135 0.4880 +7386 79598 0.5200 +7386 79677 0.4210 +7386 79716 0.6830 +7386 79728 0.9210 +7386 80195 0.8610 +7386 80221 0.6000 +7386 80224 0.4110 +7386 80777 0.4020 +7386 81341 0.9830 +7386 81689 0.6280 +7386 83447 0.5270 +7386 84274 0.4590 +7386 84300 0.4470 +7386 84419 0.6280 +7386 84532 0.5110 +7386 84693 0.4690 +7386 84701 0.9930 +7386 84833 0.5560 +7386 84869 0.4980 +7386 84886 0.9870 +7386 84939 0.9040 +7386 90624 0.9590 +7386 91300 0.9750 +7386 91942 0.4320 +7386 92609 0.6160 +7386 93974 0.5240 +7386 94081 0.5880 +7386 112812 0.7050 +7386 114971 0.5250 +7386 119391 0.5110 +7386 119559 0.4380 +7386 122961 0.6620 +7386 125061 0.5110 +7386 125965 0.9510 +7386 126328 0.9990 +7386 126767 0.5350 +7386 130752 0.5890 +7386 131118 0.4080 +7386 131474 0.4520 +7386 139221 0.9040 +7386 140564 0.7610 +7386 150274 0.5230 +7386 164668 0.7610 +7386 164684 0.8700 +7386 170712 0.8220 +7386 192286 0.4340 +7386 197322 0.4230 +7386 200315 0.7610 +7386 200316 0.7630 +7386 254863 0.4140 +7386 267020 0.4860 +7386 283459 0.9250 +7386 285521 0.4170 +7386 341947 0.6180 +7386 343066 0.5350 +7386 344752 0.5350 +7386 374291 0.9930 +7386 388753 0.9490 +7386 389434 0.8390 +7386 400916 0.4550 +7386 440567 0.9840 +7386 440574 0.4070 +7386 493856 0.4700 +7386 644096 0.4750 +7386 728317 0.9040 +7386 100287932 0.7570 +7386 100532726 0.6550 +7388 9167 0.9410 +7388 9377 0.9950 +7388 9512 0.8610 +7388 9551 0.8260 +7388 9582 0.6890 +7388 9775 0.4820 +7388 9978 0.4740 +7388 10063 0.4860 +7388 10120 0.5090 +7388 10440 0.4040 +7388 10476 0.9110 +7388 10540 0.4330 +7388 10553 0.6350 +7388 10632 0.8890 +7388 10671 0.5150 +7388 10975 0.9990 +7388 11224 0.4510 +7388 11258 0.4150 +7388 23203 0.6570 +7388 23645 0.6380 +7388 26519 0.4210 +7388 26520 0.4080 +7388 26521 0.5610 +7388 27089 0.9990 +7388 27350 0.6870 +7388 29796 0.9990 +7388 29928 0.5890 +7388 51079 0.9910 +7388 54205 0.9420 +7388 54539 0.9600 +7388 54543 0.5150 +7388 54902 0.4780 +7388 55028 0.4190 +7388 55052 0.4040 +7388 55245 0.5480 +7388 55316 0.5410 +7388 55851 0.4530 +7388 55967 0.9970 +7388 56901 0.8190 +7388 56993 0.4300 +7388 57379 0.6870 +7388 57407 0.6040 +7388 60489 0.6940 +7388 64111 0.6950 +7388 79002 0.7990 +7388 79728 0.6510 +7388 80195 0.6020 +7388 80777 0.4170 +7388 81341 0.8330 +7388 84300 0.5040 +7388 84419 0.5450 +7388 84516 0.4790 +7388 84701 0.9820 +7388 84886 0.8810 +7388 84939 0.6140 +7388 90624 0.4290 +7388 91300 0.6380 +7388 91942 0.4010 +7388 125965 0.8860 +7388 126328 0.9640 +7388 127829 0.5410 +7388 139221 0.6140 +7388 140564 0.6870 +7388 140823 0.4420 +7388 164668 0.6870 +7388 170712 0.8710 +7388 200315 0.6880 +7388 200316 0.6920 +7388 267020 0.7310 +7388 283459 0.7960 +7388 341947 0.6050 +7388 374291 0.9640 +7388 388753 0.9000 +7388 401505 0.4130 +7388 440567 0.9010 +7388 440574 0.4110 +7388 728317 0.6140 +7388 100532726 0.5870 +7389 7390 0.9980 +7389 8565 0.4100 +7389 8623 0.4180 +7389 9054 0.4800 +7389 9380 0.4290 +7389 10058 0.6210 +7389 10539 0.4120 +7389 10845 0.4580 +7389 22934 0.5310 +7389 23369 0.4600 +7389 23456 0.4610 +7389 27235 0.4420 +7389 28982 0.4890 +7389 29086 0.4030 +7389 30061 0.4700 +7389 51312 0.4800 +7389 51629 0.4200 +7389 51654 0.6350 +7389 51805 0.4250 +7389 54901 0.6300 +7389 54977 0.6640 +7389 55253 0.6190 +7389 60490 0.4340 +7389 79747 0.4150 +7389 116151 0.4550 +7389 124454 0.4840 +7389 157638 0.7140 +7389 326625 0.4280 +7389 441250 0.6190 +7390 8458 0.4290 +7390 9338 0.4200 +7390 10058 0.6280 +7390 10661 0.4020 +7390 11107 0.4150 +7390 11325 0.4450 +7390 23456 0.4940 +7390 23479 0.4120 +7390 27235 0.4650 +7390 27247 0.4180 +7390 28982 0.4940 +7390 51027 0.4630 +7390 51312 0.5120 +7390 51629 0.4290 +7390 54707 0.4640 +7390 54977 0.6940 +7390 55312 0.4240 +7390 55640 0.4030 +7390 55644 0.4130 +7390 55760 0.8860 +7390 56647 0.9320 +7390 79747 0.4390 +7390 79877 0.4380 +7390 80308 0.5350 +7390 80347 0.4560 +7390 81689 0.4140 +7390 81894 0.4310 +7390 118856 0.5520 +7390 126075 0.4680 +7390 284131 0.8770 +7390 326625 0.4870 +7390 100506144 0.4410 +7391 7392 0.9990 +7391 7520 0.6070 +7391 7528 0.7200 +7391 7593 0.5660 +7391 7702 0.4790 +7391 7716 0.4170 +7391 7975 0.4150 +7391 8061 0.8460 +7391 8202 0.5480 +7391 8290 0.4190 +7391 8295 0.5630 +7391 8356 0.4190 +7391 8361 0.4160 +7391 8553 0.4430 +7391 8625 0.4420 +7391 8648 0.5730 +7391 8850 0.5190 +7391 9070 0.5990 +7391 9575 0.6080 +7391 9734 0.4370 +7391 9739 0.6270 +7391 10009 0.4170 +7391 10336 0.5320 +7391 10347 0.4430 +7391 10499 0.5460 +7391 10538 0.5110 +7391 10628 0.5910 +7391 10664 0.6520 +7391 10758 0.5010 +7391 10891 0.4700 +7391 11091 0.5830 +7391 23462 0.4090 +7391 51085 0.4860 +7391 51176 0.5480 +7391 55135 0.4060 +7391 55809 0.4550 +7391 57680 0.5510 +7391 64321 0.4110 +7391 79800 0.4530 +7391 79923 0.4710 +7391 80854 0.4890 +7391 81792 0.7410 +7391 93986 0.4980 +7391 116519 0.6030 +7391 140690 0.4530 +7391 147912 0.4510 +7391 221037 0.4850 +7391 257106 0.5710 +7391 284312 0.5430 +7391 440093 0.4190 +7391 440686 0.4190 +7391 653604 0.4190 +7392 7528 0.5090 +7392 7702 0.4600 +7392 7975 0.4700 +7392 8061 0.5860 +7392 8202 0.5380 +7392 8648 0.5890 +7392 9412 0.4220 +7392 9612 0.4340 +7392 9734 0.4510 +7392 9829 0.4300 +7392 9839 0.4240 +7392 10336 0.4690 +7392 10347 0.4250 +7392 10499 0.5330 +7392 10629 0.4240 +7392 10664 0.4990 +7392 11244 0.4390 +7392 27340 0.4540 +7392 55135 0.4280 +7392 57111 0.4780 +7392 57817 0.5010 +7392 80314 0.5630 +7392 81792 0.7660 +7392 147912 0.4480 +7398 7415 0.4450 +7398 7428 0.9200 +7398 7874 0.5650 +7398 7884 0.4790 +7398 7913 0.5180 +7398 8078 0.6630 +7398 8237 0.5240 +7398 8239 0.6020 +7398 8318 0.4090 +7398 8340 0.5130 +7398 8341 0.5100 +7398 8342 0.5130 +7398 8345 0.5160 +7398 8347 0.5070 +7398 8348 0.5120 +7398 8349 0.5730 +7398 8450 0.6230 +7398 8451 0.7430 +7398 8454 0.4690 +7398 8970 0.5100 +7398 8975 0.5920 +7398 8991 0.5350 +7398 9025 0.5160 +7398 9097 0.7110 +7398 9098 0.4090 +7398 9099 0.5100 +7398 9100 0.6890 +7398 9101 0.4180 +7398 9156 0.4380 +7398 9320 0.4480 +7398 9467 0.4940 +7398 9585 0.4150 +7398 9894 0.4280 +7398 9929 0.7950 +7398 9937 0.6660 +7398 9958 0.4430 +7398 9960 0.4720 +7398 9978 0.6050 +7398 9994 0.4420 +7398 10051 0.6740 +7398 10213 0.5800 +7398 10459 0.4660 +7398 10592 0.4240 +7398 10600 0.4780 +7398 10617 0.5240 +7398 10635 0.9530 +7398 10713 0.5680 +7398 10714 0.6660 +7398 10987 0.5700 +7398 11073 0.6640 +7398 11091 0.6280 +7398 22909 0.6250 +7398 23032 0.5890 +7398 23035 0.7070 +7398 23239 0.9330 +7398 23358 0.4570 +7398 23588 0.6300 +7398 26271 0.4520 +7398 26586 0.4330 +7398 27343 0.4740 +7398 29028 0.5880 +7398 29089 0.6960 +7398 29110 0.4020 +7398 29128 0.4080 +7398 29761 0.6840 +7398 51053 0.4010 +7398 51324 0.4480 +7398 51343 0.6750 +7398 51377 0.7110 +7398 51455 0.5130 +7398 51514 0.7040 +7398 51633 0.4820 +7398 54107 0.5810 +7398 54145 0.5130 +7398 54726 0.4100 +7398 54962 0.4490 +7398 55120 0.9720 +7398 55148 0.4310 +7398 55215 0.9920 +7398 55432 0.8090 +7398 55593 0.4550 +7398 55611 0.5340 +7398 55632 0.4120 +7398 55898 0.5780 +7398 56655 0.5010 +7398 56852 0.8790 +7398 56957 0.4230 +7398 57559 0.4260 +7398 57599 0.9990 +7398 57602 0.4190 +7398 57646 0.6410 +7398 57663 0.5220 +7398 57695 0.5700 +7398 57697 0.7850 +7398 57804 0.4990 +7398 63967 0.5970 +7398 64854 0.5360 +7398 64858 0.5480 +7398 78990 0.4570 +7398 79184 0.5290 +7398 79728 0.4300 +7398 79915 0.9060 +7398 79968 0.4080 +7398 80124 0.4040 +7398 80198 0.6060 +7398 80227 0.4560 +7398 80233 0.7550 +7398 83844 0.5270 +7398 83932 0.5730 +7398 83990 0.5780 +7398 84083 0.4070 +7398 84464 0.6550 +7398 84669 0.4130 +7398 84749 0.8740 +7398 85236 0.5170 +7398 91442 0.7850 +7398 91833 0.7580 +7398 92552 0.4070 +7398 114803 0.5320 +7398 124739 0.5130 +7398 126119 0.7810 +7398 126133 0.5300 +7398 128312 0.5120 +7398 146956 0.5820 +7398 158983 0.5130 +7398 165918 0.4490 +7398 197342 0.4490 +7398 199990 0.6230 +7398 201254 0.6090 +7398 219333 0.5350 +7398 220213 0.4310 +7398 221302 0.9120 +7398 255626 0.5090 +7398 257218 0.6990 +7398 286436 0.5130 +7398 377630 0.4190 +7398 378708 0.5770 +7398 440689 0.5120 +7398 548593 0.5860 +7398 114483833 0.5130 +7399 7401 0.8870 +7399 7439 0.5400 +7399 7466 0.6060 +7399 7840 0.4050 +7399 8481 0.6330 +7399 8671 0.4710 +7399 8701 0.5150 +7399 9129 0.4550 +7399 9132 0.6070 +7399 9227 0.4520 +7399 9381 0.5940 +7399 9497 0.7140 +7399 9498 0.6360 +7399 9657 0.4490 +7399 9742 0.5200 +7399 10002 0.5870 +7399 10083 0.9900 +7399 10210 0.4470 +7399 10319 0.4950 +7399 10461 0.4730 +7399 10518 0.7430 +7399 10594 0.4710 +7399 10615 0.4940 +7399 11078 0.4710 +7399 11190 0.5010 +7399 11200 0.4330 +7399 11236 0.9320 +7399 22981 0.9010 +7399 23020 0.4540 +7399 23322 0.5230 +7399 23345 0.5420 +7399 23746 0.4600 +7399 23764 0.5510 +7399 25794 0.4800 +7399 25861 0.9990 +7399 26090 0.4100 +7399 26121 0.6940 +7399 27229 0.6090 +7399 27445 0.5440 +7399 50939 0.5140 +7399 51095 0.4110 +7399 51133 0.7900 +7399 51168 0.8230 +7399 51199 0.4970 +7399 53353 0.6180 +7399 53405 0.4450 +7399 53904 0.4310 +7399 54084 0.4310 +7399 54102 0.4290 +7399 54714 0.5630 +7399 55591 0.9050 +7399 55666 0.5530 +7399 55812 0.4800 +7399 56649 0.4350 +7399 57096 0.6070 +7399 57689 0.6050 +7399 64072 0.9470 +7399 64478 0.4380 +7399 64699 0.5180 +7399 65217 0.9270 +7399 79139 0.4500 +7399 79776 0.5760 +7399 79947 0.4770 +7399 79955 0.9950 +7399 80184 0.7470 +7399 81502 0.8890 +7399 83715 0.5620 +7399 83872 0.4830 +7399 84059 0.9960 +7399 84131 0.4190 +7399 84140 0.6130 +7399 89795 0.4030 +7399 92211 0.5190 +7399 92305 0.4750 +7399 93035 0.4800 +7399 94025 0.5940 +7399 94137 0.5820 +7399 114788 0.6580 +7399 117531 0.6060 +7399 120114 0.4880 +7399 124590 0.9270 +7399 125336 0.5910 +7399 129446 0.5810 +7399 130557 0.4720 +7399 133482 0.4570 +7399 140453 0.4470 +7399 145226 0.6040 +7399 146183 0.4720 +7399 157657 0.4740 +7399 161497 0.6870 +7399 167691 0.9080 +7399 170692 0.4080 +7399 222662 0.4150 +7399 246213 0.5000 +7399 283310 0.4260 +7399 285440 0.4700 +7399 340990 0.5400 +7399 346007 0.5160 +7399 375298 0.6780 +7399 375611 0.5020 +7399 388939 0.6120 +7399 768206 0.4750 +7401 7439 0.4380 +7401 9129 0.4180 +7401 9227 0.4220 +7401 9381 0.4370 +7401 10002 0.4520 +7401 10083 0.9090 +7401 10210 0.4330 +7401 10369 0.8040 +7401 10518 0.8070 +7401 11190 0.5830 +7401 24148 0.4180 +7401 25794 0.5100 +7401 25861 0.8890 +7401 26090 0.5590 +7401 26121 0.5060 +7401 50939 0.5690 +7401 51168 0.5120 +7401 55591 0.4200 +7401 55812 0.5060 +7401 64072 0.8580 +7401 65217 0.8720 +7401 79947 0.5410 +7401 79955 0.8020 +7401 84059 0.8660 +7401 84131 0.4380 +7401 84140 0.5430 +7401 94137 0.4100 +7401 117531 0.4890 +7401 124590 0.8970 +7401 130557 0.5820 +7401 145226 0.4790 +7401 157657 0.5450 +7401 161497 0.5250 +7401 222662 0.5620 +7401 246213 0.4300 +7401 346007 0.5950 +7401 375298 0.5830 +7401 388939 0.6120 +7401 768206 0.5070 +7402 7414 0.5570 +7402 7430 0.5130 +7402 8038 0.6460 +7402 8082 0.9680 +7402 8291 0.7460 +7402 8563 0.6110 +7402 8727 0.7710 +7402 8910 0.8040 +7402 9136 0.6130 +7402 9371 0.4920 +7402 9690 0.5520 +7402 9697 0.4190 +7402 9722 0.4460 +7402 9922 0.4590 +7402 9984 0.5640 +7402 10468 0.4170 +7402 10585 0.5360 +7402 11167 0.4090 +7402 23303 0.5250 +7402 23371 0.4340 +7402 27005 0.6220 +7402 29954 0.5120 +7402 51393 0.4590 +7402 51430 0.4320 +7402 54212 0.7980 +7402 54221 0.9000 +7402 55624 0.5100 +7402 55854 0.6100 +7402 57187 0.6290 +7402 57716 0.8150 +7402 59339 0.7740 +7402 64328 0.6020 +7402 79026 0.4990 +7402 79147 0.6070 +7402 79228 0.6090 +7402 83660 0.4750 +7402 84321 0.6070 +7402 84955 0.6190 +7402 112849 0.4210 +7402 124872 0.5830 +7402 137868 0.5010 +7402 284119 0.5600 +7402 375790 0.8620 +7403 7404 0.7350 +7403 7468 0.6540 +7403 7490 0.4530 +7403 7528 0.5730 +7403 7543 0.8040 +7403 7544 0.4570 +7403 7703 0.6190 +7403 7994 0.4930 +7403 8085 0.9990 +7403 8091 0.4050 +7403 8202 0.5890 +7403 8226 0.5720 +7403 8228 0.4690 +7403 8233 0.5910 +7403 8239 0.6830 +7403 8241 0.4210 +7403 8242 0.9230 +7403 8243 0.5700 +7403 8277 0.4300 +7403 8284 0.7820 +7403 8287 0.5930 +7403 8289 0.6750 +7403 8290 0.9380 +7403 8314 0.4900 +7403 8331 0.6870 +7403 8334 0.7000 +7403 8336 0.4030 +7403 8337 0.8210 +7403 8338 0.8190 +7403 8340 0.6940 +7403 8341 0.6930 +7403 8342 0.6930 +7403 8345 0.7010 +7403 8347 0.6980 +7403 8348 0.6960 +7403 8349 0.7830 +7403 8350 0.8070 +7403 8351 0.6250 +7403 8352 0.7860 +7403 8353 0.7860 +7403 8354 0.6220 +7403 8355 0.6230 +7403 8356 0.9590 +7403 8357 0.6260 +7403 8358 0.6860 +7403 8361 0.8270 +7403 8366 0.4070 +7403 8369 0.5500 +7403 8473 0.5390 +7403 8535 0.5340 +7403 8573 0.4100 +7403 8607 0.5970 +7403 8653 0.6440 +7403 8726 0.8440 +7403 8802 0.5440 +7403 8841 0.6790 +7403 8850 0.4430 +7403 8856 0.4270 +7403 8968 0.6230 +7403 8969 0.4010 +7403 8970 0.6940 +7403 9070 0.9980 +7403 9086 0.5400 +7403 9126 0.5020 +7403 9184 0.4010 +7403 9203 0.6840 +7403 9282 0.4980 +7403 9296 0.5070 +7403 9314 0.7240 +7403 9343 0.5260 +7403 9349 0.6710 +7403 9533 0.6070 +7403 9551 0.4650 +7403 9555 0.5630 +7403 9556 0.5950 +7403 9611 0.7210 +7403 9627 0.4310 +7403 9669 0.4630 +7403 9682 0.7990 +7403 9734 0.5630 +7403 9739 0.9270 +7403 9757 0.7150 +7403 9759 0.4520 +7403 9782 0.6370 +7403 9858 0.4540 +7403 9869 0.6110 +7403 9935 0.6810 +7403 9968 0.4090 +7403 10013 0.4350 +7403 10061 0.4910 +7403 10102 0.5490 +7403 10131 0.5990 +7403 10320 0.4340 +7403 10471 0.4570 +7403 10473 0.4180 +7403 10476 0.8280 +7403 10498 0.4070 +7403 10499 0.6020 +7403 10524 0.4140 +7403 10632 0.5870 +7403 10664 0.7210 +7403 10735 0.7220 +7403 10765 0.6490 +7403 10856 0.5250 +7403 10919 0.6660 +7403 10933 0.4280 +7403 11091 0.9990 +7403 11128 0.5110 +7403 11198 0.4870 +7403 11222 0.4530 +7403 11224 0.5170 +7403 22866 0.4670 +7403 22976 0.9990 +7403 22984 0.5320 +7403 22992 0.6580 +7403 23028 0.8200 +7403 23030 0.6530 +7403 23054 0.9990 +7403 23067 0.7730 +7403 23081 0.7610 +7403 23133 0.6720 +7403 23135 0.7470 +7403 23199 0.4640 +7403 23204 0.4100 +7403 23210 0.4670 +7403 23314 0.4280 +7403 23394 0.4990 +7403 23405 0.4100 +7403 23411 0.5370 +7403 23476 0.6780 +7403 23512 0.9120 +7403 23522 0.4560 +7403 23640 0.5130 +7403 23645 0.4320 +7403 25763 0.4160 +7403 25836 0.5010 +7403 25885 0.5070 +7403 25942 0.4710 +7403 25975 0.4670 +7403 26040 0.6190 +7403 26147 0.5980 +7403 26289 0.5570 +7403 27349 0.4440 +7403 28227 0.4760 +7403 29072 0.8900 +7403 29093 0.4820 +7403 29882 0.4070 +7403 29927 0.5090 +7403 29947 0.4720 +7403 29978 0.4040 +7403 30009 0.7030 +7403 30827 0.6020 +7403 50808 0.5520 +7403 51069 0.5280 +7403 51073 0.4860 +7403 51081 0.5080 +7403 51116 0.4540 +7403 51132 0.4190 +7403 51154 0.6090 +7403 51230 0.5400 +7403 51314 0.4300 +7403 51317 0.5010 +7403 51548 0.5250 +7403 51564 0.5010 +7403 51727 0.5760 +7403 51742 0.4360 +7403 51755 0.4530 +7403 51780 0.5890 +7403 51804 0.7840 +7403 54145 0.6940 +7403 54556 0.5090 +7403 54790 0.6500 +7403 54904 0.5450 +7403 54948 0.5130 +7403 54960 0.4610 +7403 55028 0.4650 +7403 55133 0.4310 +7403 55170 0.5250 +7403 55173 0.4210 +7403 55176 0.5130 +7403 55193 0.6430 +7403 55252 0.7720 +7403 55272 0.5580 +7403 55291 0.4050 +7403 55294 0.6210 +7403 55316 0.4580 +7403 55506 0.5600 +7403 55636 0.4910 +7403 55677 0.4470 +7403 55693 0.5320 +7403 55703 0.5770 +7403 55709 0.4070 +7403 55766 0.6920 +7403 55787 0.4370 +7403 55818 0.6810 +7403 55869 0.5060 +7403 55870 0.6760 +7403 55904 0.6740 +7403 56474 0.5580 +7403 56950 0.5070 +7403 57448 0.6420 +7403 57477 0.4710 +7403 57492 0.4590 +7403 57634 0.6020 +7403 57680 0.4600 +7403 58508 0.9990 +7403 59339 0.4010 +7403 63035 0.5590 +7403 63875 0.4510 +7403 63931 0.4580 +7403 64324 0.6830 +7403 64328 0.4110 +7403 64374 0.5130 +7403 64754 0.5620 +7403 64963 0.5360 +7403 64969 0.5180 +7403 64979 0.4640 +7403 65003 0.4180 +7403 65008 0.4890 +7403 79142 0.4790 +7403 79447 0.9970 +7403 79577 0.4450 +7403 79631 0.5240 +7403 79668 0.4030 +7403 79697 0.4040 +7403 79723 0.5520 +7403 79728 0.5070 +7403 79813 0.6100 +7403 79823 0.4390 +7403 79831 0.5140 +7403 80312 0.4930 +7403 80335 0.5950 +7403 80351 0.4020 +7403 80816 0.5420 +7403 80820 0.4260 +7403 80853 0.7040 +7403 80854 0.5820 +7403 81341 0.4280 +7403 81570 0.4360 +7403 81572 0.4710 +7403 83473 0.4060 +7403 83852 0.5250 +7403 84076 0.4140 +7403 84148 0.5480 +7403 84172 0.5770 +7403 84295 0.6840 +7403 84332 0.4240 +7403 84444 0.6670 +7403 84661 0.9930 +7403 84678 0.7030 +7403 84833 0.6160 +7403 84962 0.5220 +7403 85236 0.7050 +7403 85476 0.5110 +7403 91300 0.4280 +7403 92399 0.4410 +7403 92815 0.4080 +7403 94239 0.6220 +7403 114826 0.4090 +7403 121504 0.4070 +7403 121536 0.4490 +7403 122481 0.5520 +7403 123169 0.5890 +7403 126402 0.5080 +7403 126961 0.7260 +7403 128312 0.6990 +7403 139081 0.4900 +7403 140801 0.5130 +7403 143241 0.4240 +7403 148479 0.4430 +7403 150572 0.4580 +7403 158067 0.5520 +7403 158983 0.4150 +7403 170082 0.5000 +7403 171023 0.8280 +7403 196528 0.5470 +7403 197335 0.4610 +7403 200424 0.4050 +7403 221037 0.5110 +7403 221120 0.6220 +7403 221264 0.5800 +7403 221613 0.4090 +7403 221656 0.6960 +7403 221823 0.4030 +7403 255626 0.7040 +7403 267020 0.5870 +7403 283742 0.4230 +7403 284058 0.4310 +7403 286436 0.4150 +7403 333932 0.6220 +7403 340096 0.6330 +7403 347487 0.4540 +7403 387893 0.5260 +7403 390245 0.4470 +7403 391769 0.6260 +7403 440093 0.9160 +7403 440686 0.9160 +7403 440689 0.4130 +7403 474381 0.4190 +7403 474382 0.6870 +7403 641776 0.4100 +7403 643909 0.4100 +7403 653604 0.9560 +7403 728524 0.4100 +7403 100287482 0.4540 +7403 100526842 0.4820 +7403 100532731 0.4130 +7403 100996746 0.4100 +7403 105180390 0.4100 +7403 105180391 0.4100 +7403 114483833 0.4130 +7403 114483834 0.4910 +7404 7468 0.4160 +7404 7543 0.7060 +7404 7544 0.9600 +7404 8085 0.8480 +7404 8239 0.6990 +7404 8242 0.7530 +7404 8277 0.4140 +7404 8284 0.9990 +7404 8287 0.9990 +7404 8290 0.7520 +7404 8337 0.4500 +7404 8338 0.4500 +7404 8349 0.4350 +7404 8350 0.6220 +7404 8351 0.6220 +7404 8352 0.6230 +7404 8353 0.6220 +7404 8354 0.6220 +7404 8355 0.6360 +7404 8356 0.8450 +7404 8357 0.6220 +7404 8358 0.6220 +7404 8361 0.4670 +7404 8369 0.4560 +7404 8607 0.5610 +7404 8653 0.9990 +7404 8726 0.4630 +7404 8802 0.5440 +7404 8841 0.5450 +7404 8856 0.6530 +7404 8968 0.6220 +7404 9070 0.8220 +7404 9081 0.6850 +7404 9083 0.7320 +7404 9084 0.4790 +7404 9085 0.7730 +7404 9086 0.9630 +7404 9087 0.9520 +7404 9296 0.5070 +7404 9343 0.5110 +7404 9349 0.6710 +7404 9533 0.6070 +7404 9551 0.4650 +7404 9555 0.4510 +7404 9556 0.5950 +7404 9669 0.4090 +7404 9682 0.4910 +7404 9739 0.4930 +7404 9757 0.4080 +7404 9858 0.4540 +7404 9869 0.4120 +7404 10102 0.5490 +7404 10131 0.5990 +7404 10473 0.4180 +7404 10476 0.8280 +7404 10632 0.5870 +7404 10856 0.4890 +7404 10857 0.4220 +7404 10919 0.4530 +7404 11091 0.7390 +7404 11128 0.5070 +7404 11198 0.4330 +7404 11222 0.4530 +7404 11224 0.5170 +7404 22829 0.8940 +7404 22976 0.6700 +7404 22984 0.5210 +7404 22992 0.5170 +7404 23028 0.4250 +7404 23030 0.4230 +7404 23054 0.7680 +7404 23067 0.4730 +7404 23081 0.4540 +7404 23133 0.4650 +7404 23135 0.6520 +7404 23204 0.4100 +7404 23512 0.4280 +7404 23560 0.4200 +7404 23640 0.5130 +7404 23645 0.4280 +7404 25885 0.5070 +7404 26289 0.5570 +7404 27328 0.4360 +7404 27349 0.4440 +7404 29072 0.7260 +7404 29093 0.4820 +7404 29927 0.5090 +7404 50808 0.5520 +7404 51069 0.5280 +7404 51073 0.4860 +7404 51081 0.5080 +7404 51116 0.4540 +7404 51154 0.6090 +7404 51230 0.4680 +7404 51312 0.4040 +7404 51314 0.4350 +7404 51727 0.5570 +7404 54514 0.5950 +7404 54904 0.4020 +7404 54948 0.5130 +7404 55028 0.4650 +7404 55133 0.4260 +7404 55173 0.4210 +7404 55176 0.5090 +7404 55272 0.5580 +7404 55316 0.4580 +7404 55506 0.4350 +7404 55703 0.5730 +7404 55787 0.4140 +7404 55870 0.5470 +7404 55904 0.5370 +7404 57054 0.7150 +7404 57055 0.7330 +7404 57135 0.6580 +7404 57448 0.5860 +7404 58508 0.8620 +7404 63875 0.4510 +7404 63931 0.4580 +7404 64324 0.4290 +7404 64374 0.5130 +7404 64963 0.5360 +7404 64969 0.5180 +7404 64979 0.4640 +7404 65003 0.4180 +7404 65008 0.4890 +7404 79142 0.4050 +7404 79447 0.6950 +7404 79631 0.5110 +7404 80820 0.4260 +7404 80853 0.5190 +7404 81341 0.4280 +7404 81570 0.4360 +7404 83259 0.6680 +7404 84076 0.4140 +7404 84172 0.5730 +7404 84332 0.4240 +7404 84661 0.6470 +7404 84678 0.5260 +7404 84833 0.6160 +7404 85476 0.5110 +7404 86614 0.5730 +7404 90665 0.9070 +7404 91300 0.4280 +7404 92399 0.4410 +7404 122481 0.5520 +7404 123169 0.5440 +7404 126402 0.5080 +7404 126961 0.6220 +7404 140032 0.8960 +7404 140801 0.5130 +7404 143241 0.4240 +7404 148479 0.4380 +7404 150572 0.4210 +7404 158067 0.5520 +7404 159163 0.7380 +7404 197335 0.4610 +7404 221120 0.6220 +7404 221264 0.5810 +7404 253175 0.4220 +7404 255308 0.4100 +7404 267020 0.5870 +7404 333932 0.6220 +7404 340096 0.6220 +7404 347487 0.4540 +7404 353513 0.4790 +7404 378948 0.4430 +7404 378949 0.7060 +7404 391769 0.6220 +7404 440093 0.7520 +7404 440686 0.7520 +7404 442862 0.6970 +7404 442867 0.7500 +7404 442868 0.7500 +7404 641776 0.4100 +7404 643909 0.4100 +7404 653604 0.8440 +7404 728524 0.4100 +7404 100287482 0.4540 +7404 100526842 0.4820 +7404 100996746 0.4100 +7404 105180390 0.4100 +7404 105180391 0.4100 +7405 7514 0.4120 +7405 7531 0.4530 +7405 7879 0.5360 +7405 7942 0.6420 +7405 8408 0.7820 +7405 8411 0.4490 +7405 8451 0.5990 +7405 8503 0.5720 +7405 8651 0.5400 +7405 8673 0.5460 +7405 8678 0.9990 +7405 8835 0.5400 +7405 8878 0.6820 +7405 9021 0.5400 +7405 9140 0.8400 +7405 9183 0.4410 +7405 9306 0.5400 +7405 9342 0.6530 +7405 9392 0.5370 +7405 9474 0.8530 +7405 9638 0.5830 +7405 9655 0.5430 +7405 9706 0.7360 +7405 9711 0.9990 +7405 9776 0.8200 +7405 9821 0.7890 +7405 9842 0.4600 +7405 9896 0.4100 +7405 9978 0.5650 +7405 10133 0.4340 +7405 10241 0.5180 +7405 10533 0.8950 +7405 10871 0.4790 +7405 11152 0.4160 +7405 11274 0.5130 +7405 11337 0.7830 +7405 11345 0.8190 +7405 22863 0.9990 +7405 22879 0.5640 +7405 23001 0.4200 +7405 23130 0.5540 +7405 23192 0.7250 +7405 23339 0.8170 +7405 23503 0.6300 +7405 23533 0.5510 +7405 23645 0.4970 +7405 23710 0.8190 +7405 26100 0.6950 +7405 26276 0.4350 +7405 27346 0.4240 +7405 29982 0.9430 +7405 30837 0.5400 +7405 30849 0.9990 +7405 51100 0.9980 +7405 51322 0.4920 +7405 51622 0.4370 +7405 53349 0.6170 +7405 53407 0.4020 +7405 54764 0.4570 +7405 55004 0.4410 +7405 55014 0.7700 +7405 55054 0.7610 +7405 55062 0.7340 +7405 55102 0.6950 +7405 55201 0.5850 +7405 55332 0.5580 +7405 55626 0.9960 +7405 55697 0.6530 +7405 55823 0.7120 +7405 56904 0.5010 +7405 57154 0.4980 +7405 57192 0.4780 +7405 57521 0.6110 +7405 57617 0.7140 +7405 57724 0.4120 +7405 60561 0.7010 +7405 60592 0.5520 +7405 60673 0.8530 +7405 64419 0.5210 +7405 64422 0.8090 +7405 64601 0.9680 +7405 65018 0.4140 +7405 65082 0.7590 +7405 79065 0.6330 +7405 79443 0.4010 +7405 80183 0.7550 +7405 81631 0.7700 +7405 81671 0.6210 +7405 83734 0.7730 +7405 84174 0.5400 +7405 84557 0.7090 +7405 84938 0.7060 +7405 84971 0.5910 +7405 85363 0.4730 +7405 89849 0.4670 +7405 115201 0.6630 +7405 122809 0.5520 +7405 124997 0.4170 +7405 128338 0.6640 +7405 132671 0.4490 +7405 146850 0.5400 +7405 152007 0.5210 +7405 200576 0.4780 +7405 221960 0.4810 +7405 282991 0.4040 +7405 285973 0.7020 +7405 286826 0.4420 +7405 345611 0.4340 +7405 440738 0.6640 +7405 441925 0.9740 +7405 493856 0.4860 +7405 110117498 0.5400 +7407 7453 0.9010 +7407 7517 0.4010 +7407 7965 0.5240 +7407 8050 0.4780 +7407 8361 0.5860 +7407 8449 0.4210 +7407 8565 0.9560 +7407 8574 0.4320 +7407 8623 0.4010 +7407 8662 0.4930 +7407 8697 0.7090 +7407 8833 0.7970 +7407 8894 0.4220 +7407 8940 0.4690 +7407 9045 0.5270 +7407 9086 0.4400 +7407 9255 0.7310 +7407 9343 0.6840 +7407 9349 0.4980 +7407 9361 0.4970 +7407 9521 0.5230 +7407 9533 0.8590 +7407 9563 0.4250 +7407 9669 0.6710 +7407 9732 0.5170 +7407 9858 0.5130 +7407 10056 0.7760 +7407 10061 0.4280 +7407 10102 0.6680 +7407 10352 0.9050 +7407 10423 0.4180 +7407 10449 0.4350 +7407 10473 0.4270 +7407 10514 0.4430 +7407 10535 0.4140 +7407 10574 0.4750 +7407 10575 0.4840 +7407 10576 0.4380 +7407 10667 0.8500 +7407 10845 0.4150 +7407 10985 0.4140 +7407 11128 0.7750 +7407 11151 0.4710 +7407 11222 0.4210 +7407 11224 0.4630 +7407 11232 0.5950 +7407 22948 0.4670 +7407 22984 0.8050 +7407 23135 0.4730 +7407 23246 0.5370 +7407 23252 0.4360 +7407 23395 0.8700 +7407 23438 0.8410 +7407 23474 0.4120 +7407 23481 0.4080 +7407 23521 0.6320 +7407 25885 0.7750 +7407 25973 0.9120 +7407 26155 0.4500 +7407 26284 0.4050 +7407 26330 0.4550 +7407 27068 0.5760 +7407 27079 0.4190 +7407 27102 0.5530 +7407 27349 0.4670 +7407 28998 0.6240 +7407 29088 0.4060 +7407 29789 0.5570 +7407 29927 0.4700 +7407 51011 0.5370 +7407 51031 0.4640 +7407 51056 0.4930 +7407 51067 0.8780 +7407 51069 0.4830 +7407 51073 0.6210 +7407 51081 0.5530 +7407 51116 0.5390 +7407 51154 0.5730 +7407 51292 0.4230 +7407 51314 0.5520 +7407 51520 0.9680 +7407 51582 0.4370 +7407 51645 0.5340 +7407 54148 0.6110 +7407 54431 0.4260 +7407 54511 0.4430 +7407 54535 0.4850 +7407 54675 0.4170 +7407 54802 0.5620 +7407 54870 0.4220 +7407 54938 0.8860 +7407 54965 0.6020 +7407 54995 0.4190 +7407 55143 0.5650 +7407 55152 0.4870 +7407 55157 0.9530 +7407 55173 0.4840 +7407 55176 0.4120 +7407 55272 0.4930 +7407 55278 0.4860 +7407 55324 0.4130 +7407 55572 0.4980 +7407 55644 0.4780 +7407 55699 0.8960 +7407 55703 0.8540 +7407 56474 0.5510 +7407 56648 0.4290 +7407 57038 0.9430 +7407 57176 0.9260 +7407 57469 0.4280 +7407 57470 0.6610 +7407 57505 0.9150 +7407 57819 0.6200 +7407 60528 0.4110 +7407 60558 0.4490 +7407 60678 0.5060 +7407 63875 0.6080 +7407 64172 0.4360 +7407 64960 0.4120 +7407 64963 0.4470 +7407 64965 0.4810 +7407 64969 0.6390 +7407 65003 0.4720 +7407 65008 0.5670 +7407 65993 0.4100 +7407 79039 0.5200 +7407 79587 0.8920 +7407 79631 0.6210 +7407 79711 0.4590 +7407 79731 0.8530 +7407 80222 0.9100 +7407 80325 0.8050 +7407 80737 0.9690 +7407 81570 0.4280 +7407 81889 0.5370 +7407 81890 0.4430 +7407 83752 0.4490 +7407 84105 0.4760 +7407 84154 0.9170 +7407 84172 0.8450 +7407 84264 0.4080 +7407 84464 0.4770 +7407 84693 0.4560 +7407 84705 0.4320 +7407 84881 0.4060 +7407 84893 0.4310 +7407 85476 0.7600 +7407 90381 0.4850 +7407 91133 0.4040 +7407 91875 0.5500 +7407 91893 0.5740 +7407 92399 0.5850 +7407 92935 0.8890 +7407 93974 0.4260 +7407 113000 0.4400 +7407 113451 0.4370 +7407 116832 0.5470 +7407 121504 0.4310 +7407 121506 0.6040 +7407 122622 0.5010 +7407 123263 0.7330 +7407 123283 0.9040 +7407 124454 0.8800 +7407 126402 0.5090 +7407 135656 0.4490 +7407 143244 0.4290 +7407 151313 0.5340 +7407 162417 0.4550 +7407 202374 0.4120 +7407 219927 0.4920 +7407 246243 0.5320 +7407 255308 0.4360 +7407 285367 0.4200 +7407 285855 0.4740 +7407 342667 0.4240 +7407 347487 0.5010 +7407 374395 0.6110 +7407 374659 0.4060 +7407 387129 0.4580 +7407 387712 0.4260 +7407 389376 0.4470 +7407 440275 0.5960 +7407 100287482 0.4960 +7407 100505478 0.4570 +7407 101927367 0.5810 +7407 114483834 0.4150 +7408 7409 0.6030 +7408 7414 0.9990 +7408 7415 0.4090 +7408 7430 0.8440 +7408 7454 0.9490 +7408 7456 0.8550 +7408 7791 0.9990 +7408 8500 0.4800 +7408 8515 0.6570 +7408 8516 0.6640 +7408 8654 0.5440 +7408 8826 0.5950 +7408 8936 0.5300 +7408 8976 0.8690 +7408 9260 0.5270 +7408 9353 0.5820 +7408 9564 0.8350 +7408 9567 0.4410 +7408 10006 0.8480 +7408 10094 0.5440 +7408 10096 0.4880 +7408 10097 0.7110 +7408 10109 0.4740 +7408 10152 0.4180 +7408 10163 0.7920 +7408 10174 0.6570 +7408 10243 0.7300 +7408 10411 0.4200 +7408 10458 0.9860 +7408 10460 0.7150 +7408 10501 0.5060 +7408 10529 0.6220 +7408 10611 0.5110 +7408 11116 0.5360 +7408 11151 0.4500 +7408 11344 0.4480 +7408 22801 0.6570 +7408 23022 0.8170 +7408 23214 0.4160 +7408 23242 0.4970 +7408 23268 0.6510 +7408 23396 0.5290 +7408 23499 0.4800 +7408 25915 0.5710 +7408 26136 0.8270 +7408 26258 0.4550 +7408 26499 0.6480 +7408 26999 0.4390 +7408 27238 0.7720 +7408 29109 0.4460 +7408 29780 0.5640 +7408 50848 0.5100 +7408 51466 0.9990 +7408 54518 0.9990 +7408 54751 0.9790 +7408 55671 0.7080 +7408 55740 0.9990 +7408 55742 0.5780 +7408 57175 0.5950 +7408 57223 0.6690 +7408 57556 0.4710 +7408 63948 0.4520 +7408 64098 0.5640 +7408 64805 0.7720 +7408 65059 0.9980 +7408 81624 0.7500 +7408 83660 0.9660 +7408 85477 0.8540 +7408 91010 0.5960 +7408 114088 0.8120 +7408 114793 0.4080 +7408 120114 0.5490 +7408 151987 0.4710 +7408 153657 0.4220 +7408 165904 0.5810 +7408 170680 0.4890 +7408 345456 0.9980 +7408 375189 0.9980 +7408 388939 0.4610 +7408 389813 0.5160 +7408 440730 0.4360 +7408 644150 0.5070 +7408 100506658 0.5320 +7409 7410 0.9070 +7409 7412 0.4570 +7409 7430 0.6150 +7409 7454 0.9590 +7409 7456 0.4310 +7409 7462 0.5580 +7409 7525 0.5540 +7409 7535 0.9990 +7409 7805 0.4360 +7409 7846 0.4260 +7409 7957 0.4340 +7409 8503 0.9300 +7409 8631 0.5300 +7409 8651 0.8290 +7409 8660 0.4570 +7409 8726 0.6250 +7409 8831 0.4710 +7409 8832 0.5670 +7409 8874 0.5620 +7409 8915 0.4200 +7409 8935 0.5810 +7409 8936 0.5820 +7409 8976 0.4670 +7409 8997 0.5290 +7409 9046 0.4210 +7409 9047 0.6380 +7409 9138 0.5140 +7409 9218 0.4270 +7409 9402 0.9920 +7409 9437 0.5580 +7409 9473 0.4470 +7409 9475 0.5690 +7409 9479 0.4260 +7409 9564 0.5810 +7409 9846 0.5520 +7409 9938 0.4500 +7409 10006 0.6390 +7409 10125 0.5170 +7409 10152 0.5280 +7409 10163 0.7300 +7409 10320 0.5870 +7409 10451 0.9070 +7409 10458 0.6100 +7409 10657 0.5310 +7409 10661 0.6130 +7409 10672 0.5380 +7409 10750 0.5190 +7409 10787 0.5780 +7409 10810 0.5350 +7409 10870 0.9550 +7409 11151 0.4400 +7409 11184 0.4590 +7409 11214 0.5320 +7409 22914 0.6450 +7409 23191 0.5200 +7409 23526 0.4090 +7409 23533 0.6850 +7409 26191 0.7150 +7409 26499 0.6120 +7409 26999 0.5410 +7409 27040 0.9820 +7409 27071 0.6960 +7409 29126 0.5000 +7409 29760 0.9990 +7409 29851 0.4040 +7409 30011 0.4900 +7409 50619 0.4110 +7409 51206 0.7400 +7409 51667 0.4240 +7409 51744 0.6520 +7409 51806 0.4400 +7409 54440 0.5150 +7409 54518 0.5130 +7409 54900 0.4260 +7409 55619 0.5200 +7409 55690 0.4430 +7409 55824 0.4330 +7409 55843 0.5000 +7409 55845 0.6060 +7409 64098 0.4030 +7409 64170 0.4540 +7409 64926 0.4610 +7409 79027 0.6020 +7409 79930 0.4930 +7409 80005 0.4630 +7409 81704 0.5900 +7409 83593 0.4450 +7409 83660 0.6820 +7409 83706 0.6060 +7409 84106 0.5110 +7409 84433 0.5040 +7409 84868 0.4200 +7409 90273 0.5240 +7409 91860 0.4410 +7409 114836 0.6010 +7409 117157 0.4530 +7409 129138 0.4490 +7409 140885 0.4420 +7409 146850 0.5410 +7409 163688 0.4410 +7409 203068 0.6340 +7409 257106 0.4910 +7409 285220 0.4120 +7409 345456 0.4540 +7409 375189 0.4570 +7409 378884 0.4180 +7409 390714 0.4140 +7409 653361 0.8090 +7410 7454 0.6750 +7410 7525 0.5800 +7410 7535 0.9370 +7410 8503 0.9030 +7410 8651 0.4800 +7410 8766 0.5050 +7410 8826 0.4670 +7410 8915 0.4340 +7410 8936 0.6300 +7410 8976 0.4920 +7410 9047 0.5710 +7410 9138 0.5090 +7410 9402 0.5910 +7410 9475 0.6020 +7410 9479 0.4190 +7410 9564 0.5630 +7410 9846 0.5250 +7410 9990 0.6090 +7410 10006 0.6860 +7410 10152 0.5200 +7410 10163 0.7060 +7410 10235 0.4850 +7410 10439 0.4100 +7410 10451 0.9130 +7410 10458 0.6530 +7410 10628 0.9500 +7410 10672 0.6090 +7410 10787 0.5650 +7410 10810 0.5330 +7410 11214 0.6870 +7410 22914 0.5690 +7410 23191 0.5100 +7410 23533 0.6340 +7410 23607 0.4950 +7410 26130 0.5800 +7410 26499 0.4920 +7410 26999 0.5340 +7410 27035 0.5080 +7410 27040 0.6920 +7410 28964 0.5850 +7410 29760 0.9620 +7410 51206 0.5720 +7410 54209 0.5680 +7410 55845 0.5710 +7410 64170 0.4330 +7410 146850 0.5340 +7410 157922 0.4070 +7410 390714 0.5110 +7410 653361 0.6340 +7411 7415 0.4120 +7411 7428 0.9580 +7411 7846 0.7160 +7411 8125 0.5920 +7411 8260 0.5340 +7411 8409 0.6020 +7411 8453 0.8040 +7411 8607 0.4860 +7411 8662 0.4210 +7411 8665 0.5720 +7411 8666 0.4410 +7411 8668 0.5060 +7411 8725 0.4990 +7411 8816 0.6140 +7411 9141 0.4680 +7411 9255 0.4420 +7411 9743 0.4030 +7411 10075 0.4490 +7411 10190 0.4630 +7411 10213 0.6600 +7411 10381 0.6410 +7411 10382 0.5430 +7411 10383 0.6580 +7411 10471 0.9990 +7411 10492 0.4170 +7411 10574 0.9660 +7411 10575 0.9720 +7411 10576 0.9740 +7411 10693 0.6660 +7411 10694 0.9820 +7411 10726 0.4310 +7411 10963 0.5840 +7411 10987 0.4580 +7411 11168 0.4850 +7411 22948 0.9620 +7411 23304 0.4620 +7411 23352 0.4600 +7411 27339 0.5360 +7411 51184 0.4130 +7411 51260 0.4020 +7411 51691 0.4110 +7411 55355 0.4070 +7411 55621 0.6080 +7411 60496 0.5700 +7411 64083 0.5040 +7411 65991 0.6010 +7411 80349 0.6650 +7411 81027 0.5390 +7411 81572 0.8150 +7411 84260 0.5030 +7411 84617 0.5430 +7411 84790 0.6300 +7411 84993 0.6470 +7411 112714 0.8130 +7411 113457 0.5750 +7411 116442 0.4100 +7411 131076 0.6530 +7411 140809 0.4020 +7411 159090 0.5470 +7411 197131 0.4470 +7411 245936 0.4700 +7411 337960 0.5910 +7411 347733 0.5400 +7411 100272147 0.4920 +7412 7424 0.4970 +7412 7430 0.9800 +7412 7442 0.5060 +7412 7448 0.6470 +7412 7450 0.8570 +7412 7477 0.4620 +7412 7498 0.4830 +7412 7534 0.4870 +7412 7852 0.9780 +7412 8174 0.8550 +7412 8482 0.4440 +7412 8515 0.4560 +7412 8578 0.4790 +7412 8600 0.5460 +7412 8639 0.4630 +7412 8718 0.4470 +7412 8764 0.5370 +7412 8817 0.4750 +7412 8822 0.4740 +7412 8823 0.4760 +7412 8842 0.5140 +7412 9021 0.5760 +7412 9034 0.6380 +7412 9076 0.5200 +7412 9308 0.4160 +7412 9314 0.4620 +7412 9332 0.5830 +7412 9370 0.6320 +7412 9467 0.4100 +7412 9619 0.4750 +7412 10068 0.6310 +7412 10319 0.4010 +7412 10365 0.5770 +7412 10507 0.5020 +7412 10516 0.5240 +7412 10537 0.4580 +7412 10544 0.4200 +7412 10563 0.7000 +7412 10628 0.5930 +7412 10630 0.4860 +7412 10631 0.4940 +7412 10663 0.4300 +7412 10673 0.4650 +7412 10763 0.4680 +7412 10803 0.6100 +7412 10894 0.5320 +7412 11255 0.4530 +7412 22918 0.4970 +7412 23411 0.4850 +7412 23683 0.4120 +7412 23705 0.6680 +7412 26281 0.4750 +7412 27006 0.4750 +7412 27035 0.4950 +7412 29108 0.4350 +7412 29126 0.6750 +7412 50507 0.5690 +7412 50616 0.4160 +7412 50848 0.7790 +7412 50943 0.5090 +7412 51094 0.4950 +7412 51284 0.4390 +7412 51554 0.5880 +7412 54106 0.4170 +7412 54567 0.6020 +7412 56729 0.5710 +7412 57007 0.5150 +7412 58191 0.6750 +7412 59272 0.4400 +7412 64094 0.4340 +7412 83700 0.6390 +7412 84666 0.5670 +7412 90865 0.5020 +7412 90952 0.7350 +7412 114548 0.4830 +7412 123803 0.7010 +7412 140885 0.4730 +7412 169355 0.4120 +7412 257202 0.4760 +7412 259197 0.4570 +7412 493869 0.5710 +7412 653361 0.9420 +7412 100133941 0.4340 +7412 100506658 0.6000 +7414 7430 0.9790 +7414 7431 0.5970 +7414 7448 0.8290 +7414 7450 0.6140 +7414 7454 0.7610 +7414 7529 0.5520 +7414 7791 0.9990 +7414 7837 0.7020 +7414 7846 0.5150 +7414 8048 0.5950 +7414 8218 0.4960 +7414 8290 0.4480 +7414 8291 0.5200 +7414 8301 0.5490 +7414 8356 0.4470 +7414 8394 0.9070 +7414 8395 0.9040 +7414 8396 0.9080 +7414 8407 0.6520 +7414 8470 0.7770 +7414 8496 0.5870 +7414 8500 0.5150 +7414 8502 0.4750 +7414 8557 0.5170 +7414 8727 0.4680 +7414 8766 0.5780 +7414 8826 0.6610 +7414 8844 0.4370 +7414 8878 0.6330 +7414 8976 0.9840 +7414 8994 0.4470 +7414 9124 0.7060 +7414 9181 0.4180 +7414 9260 0.4390 +7414 9404 0.9130 +7414 9414 0.5160 +7414 9451 0.6730 +7414 9459 0.4210 +7414 9475 0.4720 +7414 9564 0.9990 +7414 9644 0.6430 +7414 9648 0.4990 +7414 9780 0.4010 +7414 9815 0.7300 +7414 9948 0.6540 +7414 10060 0.4140 +7414 10094 0.5300 +7414 10096 0.6290 +7414 10097 0.7250 +7414 10109 0.7410 +7414 10142 0.4110 +7414 10163 0.6380 +7414 10174 0.9990 +7414 10256 0.4200 +7414 10298 0.5100 +7414 10342 0.5620 +7414 10381 0.4570 +7414 10391 0.6930 +7414 10398 0.7490 +7414 10529 0.6290 +7414 10533 0.5920 +7414 10580 0.9990 +7414 10611 0.5080 +7414 10627 0.6490 +7414 10672 0.5000 +7414 10817 0.4990 +7414 10818 0.5320 +7414 10979 0.8960 +7414 10981 0.6280 +7414 11034 0.4370 +7414 11155 0.4950 +7414 11346 0.6600 +7414 22866 0.4050 +7414 22872 0.5500 +7414 22927 0.4030 +7414 23022 0.4690 +7414 23052 0.4620 +7414 23189 0.6010 +7414 23336 0.9480 +7414 23371 0.7860 +7414 23396 0.9540 +7414 23499 0.7100 +7414 23676 0.4830 +7414 25802 0.5780 +7414 25894 0.6430 +7414 25945 0.4550 +7414 25959 0.5440 +7414 26509 0.4660 +7414 26985 0.4210 +7414 26986 0.4350 +7414 27134 0.4420 +7414 27436 0.5770 +7414 28964 0.6570 +7414 29119 0.9730 +7414 29780 0.8640 +7414 29895 0.5710 +7414 30816 0.4990 +7414 50807 0.5510 +7414 51176 0.4790 +7414 51474 0.7730 +7414 51493 0.5790 +7414 51806 0.4050 +7414 53335 0.5020 +7414 54434 0.5330 +7414 54518 0.8120 +7414 54751 0.5170 +7414 54756 0.6270 +7414 55612 0.7300 +7414 55679 0.5510 +7414 55740 0.4700 +7414 55742 0.9480 +7414 57180 0.5760 +7414 57448 0.6180 +7414 57530 0.5750 +7414 57591 0.6100 +7414 58155 0.4140 +7414 58498 0.5840 +7414 59274 0.8450 +7414 64098 0.7330 +7414 64759 0.6260 +7414 65059 0.4840 +7414 65125 0.4410 +7414 79837 0.9000 +7414 80304 0.4990 +7414 80351 0.4250 +7414 81027 0.4250 +7414 81493 0.5610 +7414 83660 0.9990 +7414 83706 0.7020 +7414 84617 0.4280 +7414 84951 0.6060 +7414 85458 0.5150 +7414 85477 0.8850 +7414 91607 0.5310 +7414 91624 0.7730 +7414 93408 0.5100 +7414 103910 0.6860 +7414 115557 0.4490 +7414 133482 0.4790 +7414 137902 0.6920 +7414 140465 0.6410 +7414 140901 0.5090 +7414 143903 0.4320 +7414 144100 0.4040 +7414 196513 0.4220 +7414 200576 0.9150 +7414 203068 0.4570 +7414 253260 0.4120 +7414 256949 0.4210 +7414 282996 0.4950 +7414 342184 0.5170 +7414 345456 0.9730 +7414 375189 0.9780 +7414 405754 0.4950 +7414 440093 0.4470 +7414 440686 0.4610 +7414 653604 0.4610 +7414 653857 0.5760 +7414 728378 0.4460 +7414 100506658 0.4470 +7415 7416 0.4460 +7415 7419 0.5250 +7415 7431 0.7790 +7415 7443 0.4400 +7415 7458 0.4250 +7415 7486 0.7510 +7415 7525 0.4530 +7415 7529 0.6700 +7415 7531 0.7260 +7415 7532 0.4960 +7415 7534 0.6710 +7415 7535 0.4960 +7415 7555 0.4870 +7415 7844 0.4220 +7415 7874 0.5670 +7415 7879 0.7030 +7415 7917 0.8370 +7415 7979 0.7390 +7415 7993 0.9910 +7415 8036 0.4130 +7415 8078 0.4070 +7415 8100 0.9970 +7415 8161 0.5540 +7415 8218 0.5810 +7415 8237 0.4850 +7415 8266 0.7350 +7415 8277 0.4770 +7415 8349 0.5210 +7415 8411 0.4180 +7415 8412 0.6590 +7415 8431 0.6430 +7415 8451 0.5040 +7415 8452 0.8030 +7415 8453 0.8310 +7415 8454 0.8900 +7415 8607 0.5860 +7415 8655 0.6810 +7415 8663 0.4500 +7415 8665 0.4160 +7415 8761 0.5110 +7415 8766 0.4410 +7415 8775 0.6080 +7415 8826 0.5380 +7415 8878 0.8840 +7415 8945 0.8560 +7415 8975 0.7060 +7415 8988 0.5280 +7415 9025 0.5130 +7415 9040 0.4810 +7415 9047 0.6540 +7415 9097 0.7440 +7415 9100 0.4970 +7415 9114 0.4910 +7415 9147 0.8180 +7415 9212 0.7970 +7415 9217 0.7890 +7415 9218 0.6130 +7415 9230 0.4430 +7415 9276 0.4550 +7415 9319 0.4410 +7415 9320 0.5140 +7415 9341 0.5290 +7415 9354 0.9780 +7415 9373 0.9920 +7415 9474 0.5720 +7415 9475 0.4450 +7415 9491 0.7280 +7415 9497 0.4340 +7415 9499 0.4110 +7415 9528 0.5190 +7415 9531 0.4570 +7415 9588 0.4340 +7415 9601 0.6690 +7415 9612 0.6030 +7415 9636 0.4030 +7415 9646 0.4430 +7415 9694 0.4370 +7415 9695 0.8080 +7415 9700 0.4370 +7415 9709 0.5200 +7415 9782 0.7760 +7415 9817 0.7230 +7415 9861 0.8220 +7415 9896 0.6100 +7415 9897 0.4210 +7415 9908 0.4330 +7415 9927 0.8070 +7415 9929 0.7270 +7415 9939 0.4590 +7415 9948 0.5580 +7415 9958 0.4930 +7415 9978 0.6900 +7415 10013 0.9950 +7415 10015 0.4410 +7415 10016 0.4420 +7415 10020 0.5070 +7415 10049 0.4410 +7415 10059 0.4480 +7415 10075 0.7500 +7415 10112 0.5360 +7415 10121 0.5060 +7415 10130 0.4110 +7415 10131 0.4330 +7415 10133 0.8050 +7415 10146 0.8020 +7415 10197 0.7120 +7415 10206 0.7650 +7415 10213 0.9060 +7415 10232 0.4030 +7415 10241 0.5370 +7415 10273 0.8120 +7415 10277 0.9980 +7415 10280 0.5220 +7415 10298 0.4230 +7415 10299 0.8990 +7415 10376 0.5750 +7415 10381 0.5030 +7415 10383 0.6060 +7415 10399 0.4220 +7415 10412 0.4990 +7415 10525 0.7590 +7415 10533 0.4370 +7415 10537 0.5350 +7415 10574 0.6410 +7415 10575 0.4070 +7415 10576 0.5750 +7415 10598 0.4770 +7415 10613 0.8470 +7415 10694 0.5950 +7415 10728 0.9120 +7415 10767 0.4250 +7415 10845 0.6920 +7415 10856 0.5890 +7415 10952 0.5520 +7415 10953 0.4090 +7415 10956 0.9870 +7415 10963 0.6840 +7415 10971 0.6000 +7415 10987 0.7250 +7415 10992 0.5070 +7415 11047 0.5620 +7415 11124 0.9990 +7415 11140 0.4760 +7415 11160 0.7900 +7415 11200 0.5280 +7415 11231 0.4090 +7415 11236 0.8540 +7415 11315 0.7720 +7415 11331 0.4610 +7415 11345 0.4590 +7415 22888 0.8390 +7415 22913 0.4300 +7415 22919 0.5310 +7415 22926 0.5930 +7415 22948 0.7470 +7415 22980 0.8260 +7415 23020 0.5430 +7415 23025 0.4060 +7415 23059 0.4040 +7415 23064 0.6340 +7415 23165 0.4530 +7415 23190 0.9990 +7415 23193 0.5790 +7415 23195 0.4170 +7415 23197 0.9990 +7415 23198 0.7080 +7415 23231 0.5170 +7415 23235 0.6630 +7415 23256 0.4150 +7415 23291 0.4230 +7415 23327 0.6510 +7415 23352 0.4290 +7415 23435 0.9640 +7415 23476 0.5440 +7415 23529 0.5040 +7415 23560 0.5910 +7415 23640 0.5320 +7415 23710 0.4560 +7415 25828 0.4160 +7415 25897 0.6140 +7415 25912 0.5020 +7415 25962 0.5000 +7415 25978 0.8580 +7415 26013 0.7200 +7415 26043 0.9990 +7415 26046 0.9040 +7415 26100 0.5230 +7415 26168 0.4820 +7415 26270 0.4150 +7415 26330 0.4240 +7415 26353 0.4020 +7415 26986 0.6580 +7415 27243 0.4450 +7415 27248 0.8760 +7415 27338 0.4690 +7415 27429 0.4100 +7415 29110 0.6920 +7415 29761 0.5220 +7415 29927 0.8980 +7415 29978 0.9380 +7415 29979 0.9360 +7415 50613 0.4950 +7415 50846 0.5080 +7415 51009 0.9940 +7415 51035 0.9990 +7415 51042 0.5570 +7415 51068 0.5860 +7415 51128 0.5680 +7415 51141 0.6770 +7415 51143 0.6140 +7415 51154 0.4320 +7415 51187 0.6700 +7415 51272 0.6250 +7415 51377 0.5350 +7415 51465 0.9210 +7415 51574 0.5420 +7415 51652 0.4540 +7415 51667 0.6400 +7415 51726 0.5180 +7415 53407 0.5140 +7415 54205 0.4880 +7415 54431 0.7480 +7415 54664 0.5450 +7415 54708 0.5070 +7415 54941 0.5490 +7415 55004 0.4810 +7415 55072 0.8430 +7415 55075 0.4380 +7415 55139 0.9900 +7415 55210 0.4610 +7415 55236 0.4030 +7415 55432 0.9980 +7415 55611 0.6600 +7415 55666 0.9990 +7415 55669 0.5670 +7415 55717 0.4220 +7415 55737 0.5030 +7415 55768 0.9720 +7415 55775 0.4610 +7415 55829 0.9990 +7415 55920 0.4170 +7415 55968 0.9990 +7415 56851 0.5320 +7415 56893 0.5190 +7415 56924 0.4050 +7415 57144 0.4050 +7415 57154 0.4430 +7415 57473 0.4370 +7415 57679 0.6830 +7415 58515 0.9100 +7415 63908 0.4260 +7415 64374 0.4340 +7415 65018 0.7750 +7415 79058 0.9980 +7415 79139 0.9990 +7415 79184 0.5170 +7415 79577 0.6670 +7415 79594 0.4420 +7415 79609 0.9980 +7415 79752 0.9460 +7415 79989 0.9960 +7415 80124 0.9990 +7415 80173 0.9980 +7415 80208 0.6050 +7415 80233 0.6870 +7415 80343 0.5160 +7415 80700 0.9990 +7415 81502 0.8510 +7415 81567 0.4910 +7415 81570 0.5740 +7415 81624 0.4270 +7415 81631 0.7350 +7415 81839 0.5580 +7415 83443 0.4470 +7415 83473 0.6130 +7415 83743 0.5010 +7415 83932 0.9760 +7415 84076 0.4800 +7415 84236 0.9680 +7415 84301 0.4160 +7415 84447 0.9980 +7415 84464 0.4360 +7415 84557 0.4570 +7415 84649 0.4220 +7415 84790 0.4380 +7415 84923 0.8640 +7415 84993 0.6140 +7415 88455 0.6430 +7415 90268 0.6080 +7415 90850 0.5710 +7415 91319 0.9300 +7415 91445 0.6890 +7415 91544 0.8140 +7415 92305 0.8810 +7415 92552 0.9560 +7415 93621 0.4660 +7415 114885 0.4690 +7415 118424 0.8700 +7415 120892 0.5770 +7415 122706 0.6240 +7415 126119 0.7220 +7415 127733 0.9960 +7415 130617 0.8090 +7415 135138 0.5850 +7415 137886 0.9980 +7415 140735 0.6180 +7415 143471 0.6220 +7415 143630 0.4040 +7415 146862 0.4140 +7415 151194 0.5280 +7415 157769 0.4230 +7415 165324 0.9990 +7415 165918 0.5700 +7415 197131 0.7170 +7415 200894 0.5080 +7415 203068 0.5340 +7415 203228 0.8560 +7415 221302 0.6410 +7415 253959 0.4100 +7415 258010 0.9970 +7415 285855 0.4200 +7415 337867 0.7880 +7415 342538 0.6280 +7415 345456 0.5210 +7415 373509 0.4590 +7415 375189 0.5110 +7415 400916 0.7140 +7415 414301 0.4030 +7415 728378 0.5430 +7415 728689 0.4530 +7415 100526767 0.4470 +7416 7417 0.9980 +7416 7419 0.9950 +7416 7494 0.5790 +7416 7529 0.4210 +7416 7531 0.7650 +7416 7532 0.4510 +7416 7534 0.4690 +7416 7837 0.5880 +7416 7846 0.5820 +7416 7879 0.5060 +7416 7915 0.4230 +7416 7965 0.4300 +7416 8165 0.6300 +7416 8192 0.4020 +7416 8402 0.5030 +7416 8562 0.5610 +7416 8578 0.4200 +7416 8604 0.6270 +7416 8678 0.5880 +7416 8737 0.5610 +7416 8802 0.5550 +7416 8803 0.4370 +7416 8878 0.9940 +7416 9075 0.4350 +7416 9131 0.5200 +7416 9140 0.7010 +7416 9217 0.5980 +7416 9218 0.6320 +7416 9232 0.4330 +7416 9256 0.6860 +7416 9361 0.6180 +7416 9374 0.4270 +7416 9377 0.8200 +7416 9474 0.7640 +7416 9529 0.5510 +7416 9531 0.5720 +7416 9588 0.5750 +7416 9804 0.9640 +7416 9868 0.9060 +7416 9927 0.9890 +7416 10013 0.5260 +7416 10018 0.8890 +7416 10059 0.7680 +7416 10105 0.9990 +7416 10128 0.4270 +7416 10131 0.4310 +7416 10133 0.4610 +7416 10134 0.7310 +7416 10165 0.7680 +7416 10211 0.5120 +7416 10241 0.4540 +7416 10280 0.8480 +7416 10294 0.5590 +7416 10367 0.7880 +7416 10376 0.6460 +7416 10422 0.4590 +7416 10440 0.4920 +7416 10449 0.4780 +7416 10452 0.9620 +7416 10456 0.4690 +7416 10469 0.5490 +7416 10476 0.7350 +7416 10533 0.4900 +7416 10574 0.5100 +7416 10575 0.4240 +7416 10606 0.4170 +7416 10611 0.5120 +7416 10632 0.5670 +7416 10651 0.6300 +7416 10672 0.4120 +7416 10730 0.4640 +7416 10891 0.6230 +7416 10935 0.8410 +7416 10936 0.4540 +7416 10939 0.5170 +7416 10971 0.4200 +7416 10989 0.9080 +7416 11140 0.4050 +7416 11315 0.9340 +7416 11331 0.8220 +7416 11337 0.4120 +7416 11345 0.4650 +7416 22948 0.6800 +7416 23241 0.6130 +7416 23410 0.5260 +7416 23411 0.4310 +7416 23435 0.5770 +7416 23530 0.5420 +7416 23647 0.5260 +7416 23710 0.4460 +7416 23770 0.6680 +7416 23787 0.4020 +7416 23788 0.5220 +7416 25813 0.9100 +7416 25874 0.5560 +7416 26517 0.7230 +7416 26519 0.4470 +7416 26520 0.4250 +7416 26521 0.6220 +7416 27338 0.4450 +7416 27429 0.4720 +7416 27430 0.4720 +7416 28976 0.6880 +7416 29928 0.6710 +7416 30968 0.5480 +7416 51001 0.8390 +7416 51024 0.9590 +7416 51079 0.6570 +7416 51138 0.5820 +7416 51142 0.4880 +7416 51248 0.7320 +7416 51552 0.4630 +7416 51651 0.4650 +7416 51806 0.4500 +7416 51807 0.4790 +7416 54205 0.9960 +7416 54471 0.4490 +7416 54543 0.5600 +7416 54708 0.4590 +7416 54927 0.5680 +7416 54982 0.5850 +7416 55013 0.4630 +7416 55143 0.4470 +7416 55177 0.7600 +7416 55210 0.6790 +7416 55288 0.7870 +7416 55293 0.4420 +7416 55486 0.6220 +7416 55669 0.9720 +7416 55735 0.4940 +7416 55737 0.4670 +7416 55847 0.7330 +7416 56947 0.7540 +7416 56993 0.8190 +7416 57084 0.4510 +7416 57192 0.5250 +7416 57506 0.6350 +7416 58508 0.4320 +7416 60488 0.4180 +7416 63933 0.4680 +7416 64746 0.9550 +7416 65018 0.9630 +7416 79594 0.6390 +7416 79648 0.6690 +7416 79680 0.5340 +7416 79861 0.4720 +7416 80024 0.5710 +7416 80201 0.8870 +7416 81542 0.4510 +7416 81631 0.7640 +7416 83447 0.9610 +7416 84134 0.7320 +7416 84557 0.6710 +7416 84701 0.6990 +7416 84749 0.6930 +7416 84790 0.5200 +7416 84896 0.4120 +7416 85477 0.7280 +7416 89941 0.5100 +7416 90550 0.9330 +7416 91689 0.6270 +7416 91860 0.4060 +7416 92609 0.5440 +7416 93380 0.4060 +7416 112714 0.4710 +7416 113457 0.4730 +7416 114879 0.6010 +7416 115209 0.4460 +7416 117159 0.5840 +7416 118987 0.4810 +7416 120892 0.6680 +7416 125170 0.4790 +7416 131474 0.4670 +7416 137902 0.5850 +7416 139341 0.7270 +7416 144100 0.7320 +7416 163688 0.4060 +7416 192111 0.4920 +7416 221154 0.7770 +7416 222642 0.6750 +7416 286097 0.6190 +7416 340348 0.7240 +7416 387990 0.4590 +7416 400916 0.4750 +7416 440574 0.4010 +7416 493856 0.4440 +7416 548596 0.5960 +7416 728378 0.5980 +7416 100188893 0.4150 +7416 100287932 0.7430 +7417 7419 0.9970 +7417 7494 0.4340 +7417 7531 0.4080 +7417 7534 0.6430 +7417 7846 0.4110 +7417 7879 0.5870 +7417 8031 0.4750 +7417 8402 0.6130 +7417 8562 0.5120 +7417 8671 0.4240 +7417 8678 0.6160 +7417 9131 0.4140 +7417 9167 0.4380 +7417 9218 0.6270 +7417 9377 0.4710 +7417 9512 0.4520 +7417 9551 0.4240 +7417 9588 0.4620 +7417 9804 0.7920 +7417 9868 0.7710 +7417 9927 0.7140 +7417 10018 0.6320 +7417 10059 0.6000 +7417 10105 0.9580 +7417 10131 0.4270 +7417 10134 0.4310 +7417 10146 0.4120 +7417 10213 0.4340 +7417 10280 0.6060 +7417 10367 0.4620 +7417 10452 0.8730 +7417 10476 0.4900 +7417 10651 0.7150 +7417 10694 0.4050 +7417 10935 0.7090 +7417 10970 0.6670 +7417 10971 0.4670 +7417 10989 0.7080 +7417 11079 0.4380 +7417 11315 0.4710 +7417 11331 0.8050 +7417 22916 0.6320 +7417 23657 0.4720 +7417 23770 0.6020 +7417 23788 0.5910 +7417 25813 0.6990 +7417 26233 0.4120 +7417 26355 0.6170 +7417 27069 0.4280 +7417 27430 0.4690 +7417 28976 0.4790 +7417 30968 0.6520 +7417 51024 0.4860 +7417 51138 0.5960 +7417 51248 0.6000 +7417 51651 0.4880 +7417 54205 0.9950 +7417 54708 0.4200 +7417 54927 0.4850 +7417 55013 0.5020 +7417 55054 0.4720 +7417 55143 0.4390 +7417 55288 0.6110 +7417 55293 0.4420 +7417 55669 0.4600 +7417 55847 0.5260 +7417 56993 0.8450 +7417 57544 0.6480 +7417 65018 0.4670 +7417 79594 0.4920 +7417 80020 0.6190 +7417 80201 0.4240 +7417 81542 0.4170 +7417 83447 0.9590 +7417 84134 0.7430 +7417 84519 0.4950 +7417 84701 0.4080 +7417 84749 0.5820 +7417 84883 0.4690 +7417 90550 0.6090 +7417 92609 0.6200 +7417 117159 0.5400 +7417 124045 0.4790 +7417 144100 0.5600 +7417 340348 0.5470 +7417 400668 0.4510 +7417 441531 0.4940 +7417 493856 0.4270 +7417 548596 0.5450 +7417 100287932 0.4190 +7419 7533 0.4100 +7419 8402 0.5570 +7419 9218 0.4790 +7419 9377 0.5120 +7419 9588 0.4090 +7419 9804 0.7320 +7419 9868 0.7270 +7419 9927 0.4450 +7419 10018 0.4590 +7419 10105 0.9620 +7419 10213 0.4440 +7419 10367 0.4730 +7419 10452 0.8520 +7419 10476 0.7340 +7419 10632 0.4310 +7419 10935 0.4450 +7419 10971 0.4680 +7419 10987 0.4150 +7419 10989 0.5770 +7419 11331 0.5780 +7419 23770 0.5500 +7419 23788 0.4580 +7419 25813 0.6550 +7419 26330 0.4870 +7419 27430 0.5130 +7419 28976 0.4830 +7419 51074 0.4260 +7419 51138 0.7050 +7419 51248 0.5660 +7419 51651 0.4500 +7419 54205 0.9600 +7419 54363 0.4700 +7419 54948 0.4150 +7419 55143 0.4350 +7419 55288 0.5930 +7419 55293 0.4390 +7419 55294 0.5820 +7419 55669 0.4170 +7419 55847 0.5340 +7419 56993 0.7410 +7419 65018 0.4110 +7419 79594 0.4830 +7419 83447 0.9550 +7419 84134 0.7500 +7419 84701 0.4350 +7419 84749 0.5680 +7419 90550 0.4210 +7419 117159 0.5400 +7419 144100 0.5600 +7419 161514 0.4290 +7419 219938 0.5450 +7419 221154 0.4170 +7419 221481 0.4260 +7419 340348 0.5480 +7419 493856 0.4210 +7419 548596 0.5290 +7423 7424 0.9710 +7423 7542 0.7410 +7423 8817 0.4180 +7423 8822 0.4200 +7423 8823 0.4300 +7423 8828 0.7660 +7423 8829 0.9970 +7423 9817 0.4290 +7423 11000 0.6580 +7423 22859 0.9690 +7423 23266 0.9690 +7423 23284 0.9690 +7423 23564 0.4460 +7423 26281 0.4180 +7423 27006 0.4180 +7423 29949 0.4030 +7423 51129 0.5180 +7423 51247 0.4220 +7423 51378 0.4180 +7423 54567 0.5820 +7423 56034 0.8110 +7423 80781 0.4400 +7423 84309 0.4470 +7423 84830 0.4100 +7424 7450 0.4580 +7424 7472 0.4910 +7424 7474 0.4100 +7424 7837 0.4990 +7424 7852 0.6820 +7424 8795 0.4050 +7424 8817 0.5550 +7424 8822 0.5480 +7424 8823 0.5520 +7424 8828 0.9960 +7424 8829 0.9040 +7424 9508 0.4800 +7424 9509 0.5340 +7424 9564 0.4420 +7424 9901 0.4340 +7424 10371 0.4520 +7424 10468 0.6570 +7424 10512 0.5520 +7424 10630 0.7340 +7424 10725 0.7590 +7424 10894 0.9110 +7424 11082 0.4150 +7424 26281 0.5490 +7424 27006 0.5560 +7424 29126 0.4540 +7424 51378 0.4010 +7424 51705 0.4760 +7424 54345 0.6830 +7424 54487 0.4050 +7424 54567 0.5590 +7424 56034 0.8760 +7424 80310 0.4030 +7424 80781 0.5330 +7424 114790 0.4220 +7424 137902 0.4380 +7424 147372 0.9290 +7424 100133941 0.5450 +7425 7857 0.7300 +7425 8817 0.4610 +7425 8822 0.4660 +7425 8823 0.4470 +7425 8906 0.5470 +7425 8907 0.5190 +7425 9179 0.5230 +7425 9510 0.4090 +7425 10053 0.5330 +7425 10717 0.4810 +7425 23431 0.4730 +7425 23467 0.4580 +7425 26281 0.4460 +7425 27006 0.4480 +7425 27344 0.6420 +7425 29106 0.6610 +7425 51299 0.4540 +7425 55745 0.4410 +7425 56975 0.5040 +7425 221421 0.4410 +7428 7852 0.5150 +7428 8065 0.5120 +7428 8242 0.5280 +7428 8361 0.5250 +7428 8453 0.9990 +7428 8533 0.9000 +7428 8651 0.4460 +7428 8737 0.9150 +7428 8850 0.5560 +7428 8883 0.5840 +7428 8974 0.5500 +7428 8994 0.8560 +7428 9039 0.5900 +7428 9040 0.5980 +7428 9092 0.4010 +7428 9099 0.4420 +7428 9318 0.8200 +7428 9616 0.5000 +7428 9669 0.8010 +7428 9861 0.4030 +7428 9915 0.4300 +7428 9978 0.9990 +7428 10116 0.5000 +7428 10168 0.4930 +7428 10197 0.4050 +7428 10213 0.4190 +7428 10273 0.5010 +7428 10381 0.4360 +7428 10399 0.6780 +7428 10444 0.4300 +7428 10471 0.5910 +7428 10574 0.5710 +7428 10628 0.6570 +7428 10868 0.7440 +7428 10920 0.8180 +7428 10956 0.4350 +7428 10980 0.8050 +7428 10987 0.9580 +7428 11030 0.4740 +7428 11091 0.9050 +7428 11200 0.4040 +7428 22836 0.6640 +7428 22882 0.4540 +7428 22948 0.5570 +7428 22980 0.4450 +7428 23030 0.4120 +7428 23032 0.9590 +7428 23142 0.4990 +7428 23177 0.5670 +7428 23198 0.4050 +7428 23411 0.4680 +7428 23412 0.4990 +7428 23476 0.9390 +7428 25950 0.6920 +7428 26043 0.7710 +7428 26118 0.5850 +7428 27338 0.7850 +7428 28952 0.4990 +7428 28991 0.4990 +7428 29099 0.4990 +7428 51122 0.5040 +7428 51138 0.8000 +7428 51147 0.4310 +7428 51185 0.5760 +7428 51224 0.7340 +7428 51397 0.5140 +7428 51430 0.4380 +7428 51588 0.8170 +7428 51633 0.4270 +7428 54165 0.6620 +7428 54583 0.9870 +7428 54939 0.5440 +7428 54951 0.5070 +7428 55193 0.5670 +7428 55208 0.5040 +7428 55527 0.4520 +7428 55662 0.9110 +7428 55729 0.5940 +7428 55832 0.5590 +7428 55840 0.6970 +7428 56929 0.4370 +7428 57154 0.5900 +7428 57521 0.4860 +7428 57602 0.4190 +7428 64170 0.5870 +7428 64344 0.9260 +7428 64708 0.8030 +7428 79370 0.4140 +7428 79960 0.9260 +7428 84063 0.4220 +7428 84259 0.4990 +7428 84260 0.8170 +7428 84925 0.8170 +7428 84962 0.5460 +7428 112398 0.9000 +7428 112399 0.9460 +7428 112483 0.7160 +7428 120534 0.5060 +7428 122769 0.6120 +7428 126374 0.5460 +7428 130497 0.6260 +7428 149951 0.4990 +7428 150684 0.5190 +7428 170622 0.4990 +7428 284086 0.4620 +7428 431705 0.4290 +7429 8549 0.5560 +7429 9966 0.4250 +7429 10525 0.4560 +7429 10562 0.4790 +7429 10677 0.4660 +7429 50616 0.4820 +7429 54474 0.4600 +7429 56667 0.4940 +7429 57213 0.5450 +7429 57511 0.4990 +7429 79574 0.4460 +7429 83548 0.4490 +7429 144811 0.5430 +7429 160857 0.5430 +7429 170622 0.7200 +7430 7454 0.7190 +7430 7534 0.6480 +7430 7535 0.5780 +7430 7837 0.4700 +7430 8030 0.5230 +7430 8350 0.4660 +7430 8351 0.4620 +7430 8352 0.4750 +7430 8353 0.4720 +7430 8354 0.4660 +7430 8355 0.4700 +7430 8356 0.5400 +7430 8357 0.4620 +7430 8358 0.4580 +7430 8395 0.4280 +7430 8476 0.4090 +7430 8500 0.4610 +7430 8544 0.5210 +7430 8566 0.4170 +7430 8573 0.6490 +7430 8692 0.6520 +7430 8766 0.4650 +7430 8772 0.7780 +7430 8795 0.4930 +7430 8826 0.9380 +7430 8850 0.4710 +7430 8968 0.4620 +7430 8976 0.7200 +7430 9022 0.5930 +7430 9322 0.4080 +7430 9351 0.9980 +7430 9368 0.9990 +7430 9475 0.4600 +7430 9495 0.4540 +7430 9531 0.4400 +7430 9564 0.5710 +7430 9588 0.4230 +7430 9696 0.5810 +7430 9727 0.4550 +7430 9750 0.8000 +7430 9759 0.4870 +7430 9784 0.4270 +7430 9821 0.4040 +7430 10015 0.5310 +7430 10097 0.4260 +7430 10207 0.6490 +7430 10382 0.5190 +7430 10399 0.4530 +7430 10427 0.4230 +7430 10492 0.4070 +7430 10529 0.4050 +7430 10568 0.5750 +7430 10630 0.8920 +7430 10723 0.5570 +7430 10749 0.5010 +7430 10752 0.5460 +7430 10899 0.4370 +7430 10979 0.5330 +7430 11014 0.4750 +7430 11016 0.4080 +7430 11078 0.5810 +7430 11140 0.8600 +7430 11151 0.4860 +7430 11215 0.4740 +7430 11344 0.6040 +7430 22841 0.4750 +7430 22919 0.4640 +7430 23022 0.8460 +7430 23114 0.7700 +7430 23136 0.6150 +7430 23499 0.5010 +7430 23513 0.4180 +7430 25794 0.8200 +7430 25861 0.6640 +7430 25932 0.7390 +7430 25945 0.5210 +7430 26000 0.4410 +7430 26151 0.4240 +7430 26499 0.5700 +7430 27111 0.4110 +7430 27306 0.4090 +7430 29765 0.4280 +7430 30816 0.5150 +7430 50964 0.4140 +7430 51168 0.7500 +7430 51474 0.4740 +7430 51655 0.4430 +7430 51727 0.4080 +7430 51741 0.7500 +7430 51754 0.5220 +7430 51765 0.5140 +7430 51806 0.6390 +7430 53405 0.9740 +7430 53904 0.5590 +7430 54102 0.6370 +7430 54443 0.6530 +7430 55107 0.6980 +7430 55200 0.6110 +7430 55612 0.4900 +7430 55811 0.8100 +7430 55824 0.6570 +7430 57111 0.4870 +7430 57120 0.5120 +7430 57147 0.8740 +7430 57449 0.4450 +7430 57471 0.6160 +7430 57669 0.4630 +7430 57716 0.9590 +7430 64398 0.6970 +7430 64787 0.7280 +7430 79026 0.9580 +7430 79574 0.4350 +7430 80223 0.4970 +7430 80342 0.4230 +7430 81609 0.4690 +7430 83547 0.5880 +7430 83660 0.7960 +7430 83706 0.4660 +7430 83715 0.7670 +7430 83737 0.4150 +7430 83874 0.7750 +7430 85477 0.6880 +7430 90441 0.4300 +7430 90678 0.4440 +7430 91860 0.6360 +7430 92359 0.7370 +7430 93185 0.6930 +7430 94025 0.6030 +7430 121227 0.5890 +7430 126353 0.5820 +7430 129446 0.8040 +7430 137902 0.4570 +7430 140469 0.5310 +7430 143903 0.4810 +7430 152789 0.4050 +7430 163688 0.6360 +7430 169166 0.5080 +7430 255626 0.4030 +7430 286262 0.8250 +7430 339768 0.5410 +7430 345456 0.4650 +7430 375189 0.4690 +7430 389207 0.8000 +7430 494513 0.4990 +7430 643226 0.8000 +7430 653145 0.4420 +7430 728378 0.7600 +7430 100506658 0.5220 +7430 114108587 0.4200 +7431 7490 0.4010 +7431 7531 0.6060 +7431 7534 0.7460 +7431 7837 0.4950 +7431 7846 0.4710 +7431 7879 0.4410 +7431 8139 0.9150 +7431 8361 0.5910 +7431 8407 0.4070 +7431 8557 0.8230 +7431 8636 0.4120 +7431 8650 0.4320 +7431 8678 0.6090 +7431 8764 0.4540 +7431 8815 0.5580 +7431 8842 0.4780 +7431 8878 0.5440 +7431 8988 0.5560 +7431 9021 0.5430 +7431 9076 0.5260 +7431 9097 0.5160 +7431 9118 0.7840 +7431 9212 0.4330 +7431 9314 0.4090 +7431 9381 0.4090 +7431 9518 0.5350 +7431 9531 0.4110 +7431 9543 0.6550 +7431 9584 0.4780 +7431 9839 0.8990 +7431 9886 0.5700 +7431 10121 0.4200 +7431 10399 0.4280 +7431 10409 0.4260 +7431 10422 0.8740 +7431 10526 0.5060 +7431 10549 0.5160 +7431 10551 0.4570 +7431 10567 0.4320 +7431 10631 0.5000 +7431 10657 0.4170 +7431 10763 0.8670 +7431 10801 0.5880 +7431 10840 0.4060 +7431 10971 0.6750 +7431 11012 0.4160 +7431 22827 0.4030 +7431 22938 0.4420 +7431 23111 0.4150 +7431 23411 0.4300 +7431 23476 0.6170 +7431 23524 0.4230 +7431 23671 0.6550 +7431 23705 0.5330 +7431 23710 0.4350 +7431 25927 0.5620 +7431 51762 0.7110 +7431 54474 0.6720 +7431 54828 0.6980 +7431 55829 0.5120 +7431 56341 0.4410 +7431 57124 0.6440 +7431 58480 0.4600 +7431 59272 0.6610 +7431 64127 0.6630 +7431 64780 0.5430 +7431 65009 0.4770 +7431 65018 0.4090 +7431 79923 0.5020 +7431 79968 0.5100 +7431 81493 0.7440 +7431 83481 0.5520 +7431 83932 0.5450 +7431 84447 0.5530 +7431 84525 0.5660 +7431 84790 0.4390 +7431 89970 0.4420 +7431 91754 0.4310 +7431 117581 0.5960 +7431 120892 0.6600 +7431 137902 0.4830 +7431 149041 0.5100 +7431 203068 0.6860 +7431 284086 0.4300 +7431 728378 0.5480 +7431 100133941 0.5120 +7431 100423062 0.5090 +7431 100506658 0.4400 +7432 7433 0.9990 +7432 7434 0.9990 +7432 7442 0.4740 +7432 7837 0.5770 +7432 7857 0.5000 +7432 8086 0.4970 +7432 8864 0.6190 +7432 9340 0.7010 +7432 9575 0.4740 +7432 9607 0.5350 +7432 9677 0.8520 +7432 9863 0.4110 +7432 10203 0.6060 +7432 10266 0.6430 +7432 10267 0.6170 +7432 10268 0.5510 +7432 10681 0.4990 +7432 10874 0.5920 +7432 11069 0.4040 +7432 11251 0.5490 +7432 22953 0.4120 +7432 23262 0.8150 +7432 23394 0.5070 +7432 26468 0.4250 +7432 29909 0.5060 +7432 51083 0.9230 +7432 51738 0.5530 +7432 51764 0.5610 +7432 51806 0.6110 +7432 54331 0.5170 +7432 54587 0.5050 +7432 55922 0.4150 +7432 55970 0.5070 +7432 57030 0.4450 +7432 57084 0.4050 +7432 57105 0.5210 +7432 57113 0.4770 +7432 59345 0.4990 +7432 60675 0.4310 +7432 79924 0.4730 +7432 91860 0.6060 +7432 94233 0.5230 +7432 94235 0.5070 +7432 113091 0.4840 +7432 117194 0.6000 +7432 117579 0.4500 +7432 129521 0.5110 +7432 137902 0.4190 +7432 139760 0.9160 +7432 140679 0.4860 +7432 163688 0.6060 +7432 440387 0.4470 +7432 594857 0.5950 +7432 104909134 0.6190 +7433 7434 0.9700 +7433 7454 0.5770 +7433 8976 0.9080 +7433 9340 0.4590 +7433 9474 0.9880 +7433 9677 0.6670 +7433 9863 0.4590 +7433 10266 0.9420 +7433 10267 0.7660 +7433 10268 0.7530 +7433 10681 0.6180 +7433 23262 0.4670 +7433 27344 0.4830 +7433 30816 0.5670 +7433 51083 0.4800 +7433 51764 0.5700 +7433 54331 0.9070 +7433 55970 0.5690 +7433 59345 0.6120 +7433 94235 0.5580 +7433 144110 0.4130 +7433 405754 0.6440 +7434 8864 0.7730 +7434 9340 0.4790 +7434 9378 0.4230 +7434 9575 0.4660 +7434 9677 0.4330 +7434 10266 0.7360 +7434 10267 0.7510 +7434 10268 0.5710 +7434 10316 0.4320 +7434 10681 0.6160 +7434 10874 0.6060 +7434 23262 0.8450 +7434 51764 0.5580 +7434 54331 0.9070 +7434 55112 0.5040 +7434 55970 0.6010 +7434 59345 0.6560 +7434 60675 0.5950 +7434 94233 0.4310 +7434 94235 0.5580 +7434 129521 0.4750 +7434 140578 0.4710 +7436 7804 0.9580 +7436 7846 0.4040 +7436 7941 0.6320 +7436 8310 0.4750 +7436 8504 0.5400 +7436 8542 0.5520 +7436 8694 0.4070 +7436 9228 0.5950 +7436 9619 0.4840 +7436 9784 0.6900 +7436 9971 0.4280 +7436 10062 0.5270 +7436 10418 0.6690 +7436 10494 0.5410 +7436 10858 0.4780 +7436 10971 0.7910 +7436 26020 0.4120 +7436 26119 0.4830 +7436 27328 0.4470 +7436 29116 0.7650 +7436 29911 0.5140 +7436 30011 0.8330 +7436 51449 0.5400 +7436 51599 0.5830 +7436 51703 0.4610 +7436 51761 0.4290 +7436 54541 0.5430 +7436 55304 0.4220 +7436 55829 0.5440 +7436 55911 0.5930 +7436 55937 0.5940 +7436 64083 0.4570 +7436 64084 0.4500 +7436 79135 0.5400 +7436 79882 0.5110 +7436 83729 0.7620 +7436 83999 0.4450 +7436 92335 0.5180 +7436 116519 0.7110 +7436 124997 0.5790 +7436 255738 0.9730 +7436 375790 0.6830 +7436 100528017 0.6600 +7439 8842 0.5370 +7439 9129 0.6640 +7439 9187 0.4740 +7439 9227 0.5940 +7439 9635 0.5970 +7439 10002 0.6680 +7439 10210 0.6420 +7439 10461 0.7210 +7439 10586 0.4080 +7439 10594 0.6610 +7439 22802 0.5890 +7439 23020 0.6470 +7439 23507 0.5760 +7439 23539 0.4520 +7439 23746 0.4210 +7439 24148 0.4310 +7439 25794 0.7070 +7439 26022 0.5620 +7439 26121 0.7420 +7439 50939 0.7750 +7439 51557 0.4120 +7439 53918 0.4030 +7439 54714 0.5880 +7439 55107 0.5590 +7439 55144 0.5550 +7439 55812 0.5070 +7439 55975 0.6560 +7439 56262 0.7400 +7439 57096 0.5150 +7439 57101 0.4530 +7439 64218 0.6460 +7439 79947 0.4180 +7439 80131 0.5840 +7439 83552 0.5220 +7439 84140 0.4950 +7439 84230 0.5580 +7439 92211 0.4140 +7439 92595 0.4230 +7439 94137 0.5060 +7439 130557 0.6850 +7439 145226 0.7080 +7439 157657 0.4340 +7439 338917 0.4270 +7439 346007 0.7450 +7439 375298 0.7050 +7439 387509 0.4030 +7439 388939 0.6870 +7439 646960 0.5440 +7439 768206 0.7280 +7441 10113 0.4480 +7441 10320 0.5860 +7441 22806 0.4180 +7441 23284 0.4660 +7441 27130 0.4300 +7441 27156 0.4130 +7441 29760 0.6060 +7441 29802 0.4900 +7441 51341 0.5630 +7441 54331 0.4310 +7441 57593 0.4470 +7441 112770 0.4020 +7441 171558 0.4930 +7441 253738 0.4280 +7441 390714 0.5050 +7441 100423062 0.8700 +7441 102723407 0.9670 +7442 7837 0.4760 +7442 7881 0.4560 +7442 8111 0.4160 +7442 8165 0.6440 +7442 8477 0.4310 +7442 8514 0.4830 +7442 8911 0.4350 +7442 8912 0.5840 +7442 8989 0.9910 +7442 9033 0.6140 +7442 9048 0.5290 +7442 9290 0.9220 +7442 9311 0.8280 +7442 9495 0.6500 +7442 9780 0.6030 +7442 10267 0.4750 +7442 10677 0.4870 +7442 10887 0.4890 +7442 11280 0.6970 +7442 11343 0.7280 +7442 22953 0.6710 +7442 23557 0.6850 +7442 23729 0.5490 +7442 24145 0.4020 +7442 26090 0.4590 +7442 26291 0.4220 +7442 27039 0.5190 +7442 27163 0.5250 +7442 50508 0.4670 +7442 50801 0.5950 +7442 51083 0.4800 +7442 51305 0.4470 +7442 51350 0.5140 +7442 51393 0.4640 +7442 51806 0.9920 +7442 54207 0.4860 +7442 54795 0.7470 +7442 54822 0.7470 +7442 55107 0.5450 +7442 55212 0.6080 +7442 55273 0.4020 +7442 55283 0.5250 +7442 55515 0.5710 +7442 57084 0.4890 +7442 57121 0.5470 +7442 57192 0.7540 +7442 57406 0.5790 +7442 59335 0.4450 +7442 59340 0.6250 +7442 59341 0.7730 +7442 63874 0.4380 +7442 63895 0.7980 +7442 79054 0.9940 +7442 79738 0.4290 +7442 80036 0.7990 +7442 83756 0.5240 +7442 84876 0.4670 +7442 85480 0.6180 +7442 91860 0.9900 +7442 93129 0.4100 +7442 116512 0.7200 +7442 117194 0.5620 +7442 131601 0.4510 +7442 133396 0.4910 +7442 137902 0.4760 +7442 139760 0.6760 +7442 140803 0.6430 +7442 143425 0.7790 +7442 146713 0.4380 +7442 158584 0.4250 +7442 161003 0.8070 +7442 162514 0.4850 +7442 163688 0.9900 +7442 166379 0.4360 +7442 221955 0.5300 +7442 222236 0.7710 +7442 246213 0.4330 +7442 255231 0.4510 +7442 259249 0.4240 +7442 266977 0.5020 +7442 338567 0.5090 +7442 342372 0.4120 +7442 386653 0.6810 +7442 644139 0.7120 +7443 7813 0.5990 +7443 8091 0.6010 +7443 8161 0.7150 +7443 8290 0.7170 +7443 8294 0.8050 +7443 8317 0.5210 +7443 8329 0.9010 +7443 8330 0.9010 +7443 8331 0.4380 +7443 8332 0.9010 +7443 8336 0.9030 +7443 8339 0.9160 +7443 8343 0.9000 +7443 8344 0.9000 +7443 8346 0.9000 +7443 8347 0.9090 +7443 8349 0.9550 +7443 8356 0.4870 +7443 8359 0.8050 +7443 8360 0.8050 +7443 8361 0.8780 +7443 8362 0.8050 +7443 8363 0.8060 +7443 8364 0.8080 +7443 8366 0.8100 +7443 8367 0.8050 +7443 8368 0.8090 +7443 8370 0.8050 +7443 8379 0.6090 +7443 8518 0.4010 +7443 8649 0.4190 +7443 8815 0.9160 +7443 8886 0.4210 +7443 8969 0.9010 +7443 9025 0.4090 +7443 9212 0.6450 +7443 9493 0.4120 +7443 9555 0.6980 +7443 9787 0.4290 +7443 9833 0.4250 +7443 9971 0.4230 +7443 10051 0.4160 +7443 10189 0.4320 +7443 10403 0.5080 +7443 10592 0.4870 +7443 10733 0.4510 +7443 11340 0.4910 +7443 23141 0.9200 +7443 23476 0.5620 +7443 23592 0.6880 +7443 29127 0.4990 +7443 51010 0.5690 +7443 51053 0.4220 +7443 55182 0.4190 +7443 55215 0.4030 +7443 55781 0.5010 +7443 57038 0.7850 +7443 57122 0.4490 +7443 64105 0.4330 +7443 64151 0.4150 +7443 79042 0.5240 +7443 80746 0.5440 +7443 83540 0.4390 +7443 83903 0.4970 +7443 84057 0.4440 +7443 84946 0.6060 +7443 114034 0.4010 +7443 118426 0.4110 +7443 121504 0.8050 +7443 126961 0.8650 +7443 140836 0.8100 +7443 150379 0.4220 +7443 221496 0.5630 +7443 283989 0.7770 +7443 333932 0.8170 +7443 440093 0.4470 +7443 440686 0.4450 +7443 554313 0.8050 +7443 653604 0.8880 +7444 7726 0.4930 +7444 8379 0.4660 +7444 8665 0.4040 +7444 8815 0.8240 +7444 8844 0.7620 +7444 9479 0.8070 +7444 9881 0.4560 +7444 10575 0.4390 +7444 10652 0.4010 +7444 11077 0.4440 +7444 11342 0.4710 +7444 22978 0.5020 +7444 23141 0.8530 +7444 23225 0.4230 +7444 23344 0.4190 +7444 23592 0.5640 +7444 25932 0.4180 +7444 29984 0.5720 +7444 55120 0.5710 +7444 55215 0.4150 +7444 55781 0.4750 +7444 84946 0.5930 +7444 91752 0.6690 +7444 92703 0.5290 +7444 140836 0.7010 +7444 148109 0.4180 +7444 203062 0.4860 +7444 221496 0.5120 +7447 7532 0.5160 +7447 8573 0.4600 +7447 8618 0.6930 +7447 8851 0.4150 +7447 9478 0.4120 +7447 9568 0.4440 +7447 11141 0.6450 +7447 22953 0.5690 +7447 23621 0.4260 +7447 26059 0.4440 +7447 50805 0.4010 +7447 51806 0.4120 +7447 51807 0.4560 +7447 55143 0.4300 +7447 55156 0.4220 +7447 56934 0.4220 +7447 57205 0.4410 +7447 57546 0.4100 +7447 60558 0.5090 +7447 79012 0.4470 +7447 79861 0.4510 +7447 83698 0.4210 +7447 83988 0.6570 +7447 84152 0.4250 +7447 84790 0.4420 +7447 132204 0.4290 +7447 148252 0.4950 +7447 197335 0.4300 +7447 348487 0.5650 +7448 7450 0.9660 +7448 7837 0.4560 +7448 8076 0.5460 +7448 8277 0.4390 +7448 8515 0.7320 +7448 8516 0.9890 +7448 8817 0.4820 +7448 8822 0.4770 +7448 8823 0.4630 +7448 8900 0.4500 +7448 9189 0.4110 +7448 9314 0.4020 +7448 9564 0.4800 +7448 9622 0.4100 +7448 10024 0.4360 +7448 10085 0.5680 +7448 10296 0.8100 +7448 10461 0.4800 +7448 10516 0.6560 +7448 10631 0.4480 +7448 10747 0.4540 +7448 10944 0.4650 +7448 11117 0.6320 +7448 11202 0.5940 +7448 22801 0.7440 +7448 22915 0.7380 +7448 23098 0.4260 +7448 23539 0.5310 +7448 25945 0.4240 +7448 26281 0.4760 +7448 27006 0.4960 +7448 27286 0.4600 +7448 27346 0.4940 +7448 29126 0.4590 +7448 30008 0.5660 +7448 30816 0.6260 +7448 51206 0.6390 +7448 56172 0.4120 +7448 57120 0.4990 +7448 59272 0.4160 +7448 60676 0.4050 +7448 63923 0.5650 +7448 64093 0.4750 +7448 79026 0.4120 +7448 79038 0.5490 +7448 79923 0.4720 +7448 80781 0.7520 +7448 81494 0.5300 +7448 83660 0.7390 +7448 84076 0.4380 +7448 90070 0.7320 +7448 137902 0.4560 +7448 160622 0.4230 +7448 284217 0.6460 +7448 286133 0.6080 +7448 375790 0.6450 +7448 405754 0.6310 +7448 653145 0.4390 +7450 7529 0.5460 +7450 7534 0.6580 +7450 7837 0.6410 +7450 7852 0.6320 +7450 8290 0.6070 +7450 8356 0.5510 +7450 8361 0.5660 +7450 8369 0.4990 +7450 8404 0.4810 +7450 8515 0.6890 +7450 8516 0.7080 +7450 8578 0.4520 +7450 8646 0.7810 +7450 8766 0.5160 +7450 8817 0.4670 +7450 8822 0.4780 +7450 8823 0.4650 +7450 8826 0.6240 +7450 8838 0.6210 +7450 8839 0.6280 +7450 8840 0.6270 +7450 8842 0.6180 +7450 8844 0.4560 +7450 9124 0.4260 +7450 9172 0.6920 +7450 9213 0.4460 +7450 9255 0.5220 +7450 9332 0.5340 +7450 9370 0.4810 +7450 9564 0.5780 +7450 9622 0.4550 +7450 9784 0.4280 +7450 10190 0.4080 +7450 10332 0.5610 +7450 10365 0.4280 +7450 10516 0.4360 +7450 10544 0.5960 +7450 10630 0.5170 +7450 10672 0.4890 +7450 10763 0.4610 +7450 10894 0.7240 +7450 11081 0.4500 +7450 11082 0.4280 +7450 11093 0.9970 +7450 22801 0.6910 +7450 22915 0.7200 +7450 22918 0.4620 +7450 23218 0.4020 +7450 23569 0.6050 +7450 25884 0.4950 +7450 26281 0.4640 +7450 26512 0.5200 +7450 27006 0.4790 +7450 30816 0.6450 +7450 51206 0.9970 +7450 51266 0.8510 +7450 51705 0.5110 +7450 53635 0.4270 +7450 54518 0.5270 +7450 54538 0.4540 +7450 54567 0.5290 +7450 54756 0.5020 +7450 55576 0.6220 +7450 57045 0.4180 +7450 57101 0.4140 +7450 57153 0.5950 +7450 57413 0.4010 +7450 59272 0.6100 +7450 60495 0.6040 +7450 64094 0.5680 +7450 64805 0.6650 +7450 79077 0.4080 +7450 79987 0.8570 +7450 80144 0.4600 +7450 80318 0.4950 +7450 80781 0.4790 +7450 81857 0.4950 +7450 83483 0.5980 +7450 83595 0.4990 +7450 83660 0.4130 +7450 83706 0.5140 +7450 84168 0.8220 +7450 84941 0.4710 +7450 90952 0.7700 +7450 118429 0.8020 +7450 124872 0.7250 +7450 133482 0.4950 +7450 134957 0.4300 +7450 137902 0.6390 +7450 146713 0.4220 +7450 161198 0.5740 +7450 203068 0.5440 +7450 220001 0.5620 +7450 221395 0.5480 +7450 284217 0.4070 +7450 338328 0.4600 +7450 340267 0.5880 +7450 377841 0.4520 +7450 405754 0.6540 +7450 440093 0.5490 +7450 440686 0.5510 +7450 445329 0.5970 +7450 653604 0.5500 +7450 100506658 0.5910 +7453 7706 0.5720 +7453 7965 0.4440 +7453 8565 0.9970 +7453 8624 0.4220 +7453 8833 0.4840 +7453 9255 0.8190 +7453 9349 0.4070 +7453 9521 0.4680 +7453 9533 0.4280 +7453 9669 0.5140 +7453 9716 0.4190 +7453 10056 0.6790 +7453 10102 0.4540 +7453 10352 0.9920 +7453 10594 0.6060 +7453 10667 0.7200 +7453 11232 0.4580 +7453 11328 0.4100 +7453 23347 0.4860 +7453 23395 0.8480 +7453 23438 0.8130 +7453 25973 0.8840 +7453 28952 0.4150 +7453 29789 0.4650 +7453 51021 0.4200 +7453 51056 0.5100 +7453 51067 0.9320 +7453 51520 0.8620 +7453 54938 0.8470 +7453 55157 0.5970 +7453 55644 0.4100 +7453 55699 0.8460 +7453 57038 0.8520 +7453 57176 0.8880 +7453 57470 0.5170 +7453 57505 0.8500 +7453 79587 0.8120 +7453 79731 0.8260 +7453 80222 0.7870 +7453 83475 0.4540 +7453 84340 0.4140 +7453 84464 0.4480 +7453 85476 0.4730 +7453 91574 0.4190 +7453 91893 0.4500 +7453 92399 0.4750 +7453 92935 0.8930 +7453 93343 0.4880 +7453 95681 0.4800 +7453 115361 0.4680 +7453 115362 0.7150 +7453 123263 0.6830 +7453 123283 0.7890 +7453 124454 0.8010 +7453 145864 0.4220 +7453 246243 0.4060 +7453 374395 0.6120 +7453 440275 0.5290 +7453 101927367 0.4380 +7454 7456 0.9990 +7454 7535 0.8470 +7454 7791 0.6970 +7454 7879 0.5580 +7454 8218 0.5550 +7454 8440 0.8820 +7454 8476 0.6670 +7454 8522 0.6760 +7454 8631 0.4790 +7454 8766 0.5080 +7454 8773 0.4960 +7454 8826 0.5360 +7454 8867 0.4850 +7454 8871 0.6450 +7454 8874 0.6420 +7454 8936 0.9580 +7454 8976 0.9190 +7454 9026 0.6720 +7454 9050 0.5100 +7454 9051 0.9960 +7454 9322 0.9980 +7454 9341 0.5090 +7454 9402 0.6380 +7454 9459 0.4220 +7454 9475 0.5520 +7454 9497 0.4090 +7454 9535 0.4580 +7454 9559 0.4380 +7454 9564 0.7350 +7454 9578 0.4960 +7454 9644 0.9260 +7454 9788 0.7280 +7454 9815 0.5180 +7454 9873 0.8300 +7454 9897 0.6760 +7454 9901 0.6250 +7454 9948 0.4520 +7454 10006 0.8940 +7454 10092 0.9930 +7454 10093 0.9810 +7454 10094 0.9980 +7454 10095 0.9950 +7454 10096 0.9960 +7454 10097 0.9990 +7454 10109 0.9970 +7454 10152 0.8730 +7454 10163 0.9520 +7454 10188 0.8170 +7454 10298 0.6090 +7454 10421 0.4030 +7454 10451 0.6550 +7454 10458 0.9410 +7454 10552 0.9660 +7454 10578 0.4330 +7454 10750 0.6690 +7454 10787 0.9240 +7454 10810 0.9220 +7454 11060 0.4630 +7454 11135 0.4380 +7454 11151 0.7940 +7454 11252 0.5620 +7454 11344 0.5350 +7454 23002 0.4330 +7454 23048 0.9730 +7454 23075 0.4750 +7454 23149 0.4790 +7454 23191 0.8730 +7454 23242 0.7400 +7454 23325 0.7520 +7454 23380 0.6860 +7454 23433 0.8020 +7454 23513 0.5810 +7454 23603 0.4560 +7454 25802 0.4250 +7454 25894 0.4690 +7454 25917 0.4520 +7454 26030 0.4390 +7454 26499 0.5070 +7454 26751 0.8340 +7454 26999 0.9400 +7454 27040 0.5060 +7454 27128 0.4200 +7454 28952 0.4950 +7454 28964 0.5700 +7454 28988 0.6590 +7454 29109 0.4350 +7454 29763 0.4290 +7454 29765 0.4620 +7454 29984 0.4540 +7454 29993 0.5790 +7454 50618 0.7520 +7454 51019 0.7610 +7454 51199 0.5970 +7454 51225 0.7840 +7454 51429 0.9490 +7454 51438 0.4950 +7454 51517 0.9190 +7454 51669 0.5400 +7454 51699 0.4790 +7454 51806 0.6060 +7454 54440 0.5130 +7454 54509 0.4260 +7454 54518 0.5070 +7454 54520 0.5460 +7454 54874 0.9600 +7454 55004 0.4080 +7454 55114 0.4670 +7454 55660 0.5600 +7454 55737 0.4610 +7454 55789 0.4010 +7454 55845 0.9370 +7454 55909 0.5610 +7454 55971 0.7690 +7454 56203 0.4600 +7454 56776 0.4850 +7454 56907 0.6790 +7454 57175 0.4980 +7454 57180 0.9780 +7454 57381 0.8300 +7454 57522 0.5800 +7454 58480 0.5100 +7454 58513 0.4950 +7454 64098 0.5450 +7454 64423 0.5940 +7454 81609 0.6380 +7454 81624 0.7580 +7454 81704 0.9560 +7454 81839 0.4010 +7454 81873 0.9550 +7454 83660 0.8050 +7454 83706 0.6210 +7454 84501 0.4870 +7454 85477 0.8460 +7454 89848 0.6110 +7454 90507 0.4770 +7454 91010 0.5990 +7454 91860 0.5870 +7454 115677 0.5790 +7454 120892 0.4630 +7454 123720 0.9870 +7454 128239 0.5110 +7454 130560 0.5950 +7454 133482 0.6320 +7454 133746 0.8360 +7454 143098 0.4190 +7454 144402 0.4080 +7454 147179 0.9910 +7454 151306 0.5450 +7454 163688 0.5870 +7454 171177 0.4650 +7454 200894 0.4500 +7454 253725 0.6130 +7454 257106 0.5350 +7454 257364 0.4970 +7454 285590 0.7870 +7454 342184 0.4080 +7454 345456 0.9800 +7454 375189 0.9840 +7454 387680 0.4190 +7454 400581 0.4180 +7454 442721 0.4940 +7454 644150 0.9220 +7454 647135 0.4550 +7454 653361 0.4940 +7454 653464 0.4750 +7454 653857 0.9780 +7454 100287171 0.7540 +7454 100529144 0.5660 +7455 7783 0.5450 +7455 7784 0.7600 +7455 9043 0.4840 +7455 10343 0.5670 +7455 11055 0.5890 +7455 22917 0.5320 +7455 26330 0.4260 +7455 56163 0.4220 +7455 57829 0.5210 +7455 65991 0.4140 +7455 80712 0.4290 +7455 81833 0.5270 +7455 83853 0.4160 +7455 83893 0.4640 +7455 84519 0.4960 +7455 93550 0.4740 +7455 124626 0.4220 +7455 139604 0.4370 +7455 145942 0.4020 +7455 161142 0.4340 +7455 200232 0.4340 +7455 246777 0.6690 +7455 375607 0.4060 +7456 7535 0.6960 +7456 7562 0.4230 +7456 7576 0.4270 +7456 7639 0.4150 +7456 8440 0.9770 +7456 8493 0.4530 +7456 8867 0.5610 +7456 8871 0.5690 +7456 8936 0.7970 +7456 8976 0.9990 +7456 9026 0.6520 +7456 9051 0.7010 +7456 9322 0.5470 +7456 9644 0.4580 +7456 9647 0.4050 +7456 9788 0.4090 +7456 9948 0.4010 +7456 10006 0.5950 +7456 10092 0.7130 +7456 10093 0.5930 +7456 10094 0.7270 +7456 10095 0.7440 +7456 10096 0.8220 +7456 10097 0.9200 +7456 10109 0.7150 +7456 10152 0.6240 +7456 10163 0.7180 +7456 10458 0.7030 +7456 10552 0.6410 +7456 10750 0.5480 +7456 10787 0.5960 +7456 10810 0.6360 +7456 10922 0.5970 +7456 11151 0.6770 +7456 11252 0.4230 +7456 23048 0.7240 +7456 23075 0.4160 +7456 23191 0.5080 +7456 23380 0.5140 +7456 23592 0.4070 +7456 26999 0.5640 +7456 28988 0.5430 +7456 30011 0.4020 +7456 50618 0.7140 +7456 51199 0.5280 +7456 51206 0.4430 +7456 51429 0.5410 +7456 51517 0.6650 +7456 54518 0.4070 +7456 54874 0.9580 +7456 55845 0.6500 +7456 57175 0.4720 +7456 80264 0.4250 +7456 81704 0.9040 +7456 85477 0.5300 +7456 123720 0.4350 +7456 130560 0.5060 +7456 137209 0.4280 +7456 147179 0.9160 +7456 200407 0.4120 +7456 285672 0.4090 +7456 345456 0.7950 +7456 375189 0.7950 +7456 644150 0.9350 +7456 100529144 0.4920 +7458 7461 0.8150 +7458 7555 0.4710 +7458 7919 0.4990 +7458 8106 0.4090 +7458 8260 0.4290 +7458 8326 0.6320 +7458 8468 0.6840 +7458 8607 0.4680 +7458 8637 0.7890 +7458 8661 0.6960 +7458 8662 0.7970 +7458 8663 0.7100 +7458 8664 0.6110 +7458 8665 0.7720 +7458 8666 0.8090 +7458 8667 0.6100 +7458 8668 0.7480 +7458 8669 0.5570 +7458 8672 0.8250 +7458 8761 0.4740 +7458 8886 0.4520 +7458 8890 0.4910 +7458 8891 0.4670 +7458 8894 0.7990 +7458 9031 0.7480 +7458 9275 0.7730 +7458 9289 0.5850 +7458 9343 0.4430 +7458 9470 0.7470 +7458 9569 0.7080 +7458 9669 0.7800 +7458 9775 0.6430 +7458 9908 0.4310 +7458 10146 0.5790 +7458 10189 0.4690 +7458 10197 0.4130 +7458 10209 0.6640 +7458 10236 0.4740 +7458 10399 0.7250 +7458 10432 0.4040 +7458 10480 0.7050 +7458 10492 0.5540 +7458 10574 0.4260 +7458 10594 0.4270 +7458 10605 0.5150 +7458 10694 0.4570 +7458 10726 0.4630 +7458 10856 0.4130 +7458 10949 0.5220 +7458 10992 0.4630 +7458 11338 0.4490 +7458 22984 0.4050 +7458 23020 0.4180 +7458 23367 0.4440 +7458 23435 0.4720 +7458 23451 0.4650 +7458 23521 0.6630 +7458 23560 0.4490 +7458 26097 0.4560 +7458 26608 0.8000 +7458 26986 0.6060 +7458 27335 0.6470 +7458 27339 0.4300 +7458 28998 0.4410 +7458 29979 0.4660 +7458 51065 0.4040 +7458 51085 0.6020 +7458 51386 0.6480 +7458 51602 0.4200 +7458 54433 0.4230 +7458 54464 0.4550 +7458 54505 0.5330 +7458 55173 0.5040 +7458 55599 0.6190 +7458 55695 0.6940 +7458 55818 0.4450 +7458 60681 0.6750 +7458 64425 0.4660 +7458 83638 0.8220 +7458 84154 0.4230 +7458 84163 0.5420 +7458 84271 0.5170 +7458 93621 0.4020 +7458 135892 0.6630 +7458 143244 0.4290 +7458 149603 0.4490 +7458 155368 0.4390 +7458 201965 0.4340 +7458 253314 0.7190 +7458 255308 0.5300 +7458 317649 0.6620 +7458 389524 0.5430 +7458 728689 0.6090 +7461 8326 0.7350 +7461 8468 0.7360 +7461 9031 0.6680 +7461 9275 0.6440 +7461 9289 0.5500 +7461 9569 0.9080 +7461 9648 0.5220 +7461 9793 0.6740 +7461 10096 0.4010 +7461 10540 0.6020 +7461 10982 0.6780 +7461 11129 0.9740 +7461 22919 0.7750 +7461 22924 0.7880 +7461 23122 0.9670 +7461 23332 0.9350 +7461 23499 0.4110 +7461 26608 0.8390 +7461 51085 0.6310 +7461 55695 0.6160 +7461 57576 0.5890 +7461 57606 0.4440 +7461 60681 0.7210 +7461 84163 0.5400 +7461 90102 0.5140 +7461 114902 0.4520 +7461 135892 0.6750 +7461 389524 0.4750 +7462 7535 0.6480 +7462 7940 0.4180 +7462 9402 0.7170 +7462 9846 0.5470 +7462 27040 0.9180 +7462 29760 0.6960 +7462 54900 0.6000 +7462 54923 0.4790 +7462 202309 0.5070 +7464 8841 0.4510 +7464 9611 0.7620 +7464 9948 0.5800 +7464 10097 0.4510 +7464 11188 0.4800 +7464 51646 0.4390 +7464 54443 0.4030 +7464 55312 0.4340 +7464 64326 0.7560 +7464 79718 0.4170 +7464 144347 0.4130 +7464 200895 0.4500 +7464 728378 0.5250 +7465 7486 0.4470 +7465 7515 0.4080 +7465 7520 0.4200 +7465 7529 0.4700 +7465 7534 0.5170 +7465 7554 0.6120 +7465 8089 0.4510 +7465 8290 0.5440 +7465 8317 0.4930 +7465 8318 0.5400 +7465 8349 0.5290 +7465 8356 0.5440 +7465 8454 0.5210 +7465 8463 0.4040 +7465 8555 0.5900 +7465 8556 0.8420 +7465 8851 0.4040 +7465 8863 0.4340 +7465 8864 0.5690 +7465 8900 0.8720 +7465 8914 0.5410 +7465 8945 0.8940 +7465 9024 0.7430 +7465 9133 0.8200 +7465 9134 0.6920 +7465 9156 0.4430 +7465 9184 0.4620 +7465 9212 0.7580 +7465 9232 0.6530 +7465 9572 0.4530 +7465 9575 0.4620 +7465 9700 0.7150 +7465 9793 0.8010 +7465 9985 0.5410 +7465 10038 0.4250 +7465 10309 0.4370 +7465 10392 0.4010 +7465 10419 0.6780 +7465 10733 0.5070 +7465 10744 0.6950 +7465 10769 0.4870 +7465 10776 0.5430 +7465 10926 0.5300 +7465 10971 0.4610 +7465 10983 0.4280 +7465 11073 0.4790 +7465 11200 0.8830 +7465 11345 0.5230 +7465 22976 0.4720 +7465 23291 0.8480 +7465 23476 0.4220 +7465 26271 0.5690 +7465 51343 0.5950 +7465 51755 0.5260 +7465 54935 0.5200 +7465 55143 0.6940 +7465 55255 0.4540 +7465 55294 0.5790 +7465 55844 0.4080 +7465 57645 0.6120 +7465 57786 0.5380 +7465 63967 0.6300 +7465 64682 0.4490 +7465 65061 0.4320 +7465 79577 0.4490 +7465 79935 0.4540 +7465 80198 0.6820 +7465 81620 0.7280 +7465 81669 0.8070 +7465 83461 0.8950 +7465 84101 0.7180 +7465 84126 0.4120 +7465 84446 0.6400 +7465 85417 0.5520 +7465 91768 0.9360 +7465 126520 0.5100 +7465 167359 0.4470 +7465 286151 0.4320 +7465 345079 0.4120 +7465 440093 0.5440 +7465 440686 0.5440 +7465 494551 0.9090 +7465 642636 0.6330 +7465 644672 0.4180 +7465 645121 0.4120 +7465 653604 0.5440 +7465 728642 0.4560 +7465 100131017 0.6120 +7466 7494 0.8910 +7466 8462 0.4180 +7466 8660 0.4400 +7466 8872 0.6680 +7466 9132 0.6140 +7466 9381 0.6910 +7466 9451 0.6580 +7466 10002 0.4140 +7466 10083 0.4550 +7466 10560 0.5800 +7466 10644 0.6450 +7466 10804 0.6940 +7466 11078 0.4160 +7466 22926 0.9630 +7466 23322 0.4030 +7466 23413 0.6800 +7466 25861 0.4170 +7466 51124 0.5930 +7466 51156 0.4100 +7466 51168 0.6300 +7466 53904 0.4340 +7466 54102 0.4080 +7466 54587 0.4100 +7466 54757 0.6280 +7466 54867 0.6260 +7466 54901 0.7370 +7466 55847 0.6990 +7466 56649 0.4470 +7466 56975 0.5170 +7466 56999 0.5780 +7466 57118 0.5820 +7466 64072 0.6420 +7466 64167 0.4030 +7466 64699 0.5420 +7466 65217 0.6250 +7466 79041 0.5690 +7466 79068 0.5750 +7466 79443 0.4630 +7466 80207 0.8240 +7466 83715 0.5400 +7466 84059 0.5620 +7466 84168 0.4600 +7466 84233 0.5460 +7466 84447 0.4690 +7466 84814 0.4750 +7466 84816 0.4640 +7466 91851 0.4770 +7466 93587 0.4090 +7466 113278 0.4090 +7466 116985 0.4180 +7466 117531 0.6900 +7466 125336 0.4200 +7466 132299 0.4220 +7466 146183 0.4180 +7466 161497 0.5190 +7466 169026 0.6970 +7466 169792 0.5970 +7466 221895 0.6680 +7466 222546 0.5710 +7466 246213 0.4960 +7466 256297 0.4480 +7466 256394 0.4240 +7466 259236 0.4180 +7466 283953 0.5020 +7466 286262 0.4190 +7466 327657 0.4200 +7466 340990 0.4620 +7466 344752 0.4230 +7466 375611 0.5210 +7466 389207 0.4180 +7466 493856 0.9460 +7466 494513 0.4150 +7468 7469 0.6480 +7468 7520 0.6400 +7468 7799 0.4230 +7468 8019 0.9170 +7468 8085 0.4520 +7468 8242 0.4620 +7468 8290 0.9310 +7468 8294 0.8390 +7468 8314 0.5260 +7468 8318 0.4480 +7468 8329 0.9220 +7468 8330 0.9210 +7468 8332 0.9210 +7468 8334 0.9260 +7468 8335 0.9150 +7468 8336 0.9210 +7468 8337 0.5290 +7468 8338 0.5950 +7468 8340 0.5810 +7468 8341 0.5840 +7468 8342 0.5810 +7468 8345 0.5780 +7468 8347 0.5810 +7468 8348 0.5780 +7468 8349 0.7440 +7468 8350 0.7580 +7468 8356 0.8930 +7468 8359 0.8390 +7468 8360 0.8380 +7468 8361 0.9720 +7468 8362 0.8390 +7468 8363 0.8410 +7468 8364 0.8380 +7468 8366 0.8410 +7468 8367 0.8460 +7468 8368 0.8410 +7468 8369 0.5020 +7468 8370 0.8380 +7468 8726 0.5130 +7468 8900 0.5720 +7468 8924 0.5450 +7468 8969 0.9210 +7468 8970 0.9120 +7468 8985 0.6570 +7468 9025 0.6890 +7468 9045 0.4100 +7468 9070 0.5150 +7468 9656 0.8900 +7468 9682 0.7180 +7468 9935 0.6690 +7468 10021 0.4910 +7468 10052 0.4840 +7468 10111 0.5800 +7468 10196 0.4740 +7468 10322 0.4030 +7468 10419 0.4120 +7468 10460 0.4200 +7468 10498 0.4620 +7468 10514 0.5010 +7468 10524 0.7850 +7468 10765 0.4460 +7468 10933 0.4590 +7468 11107 0.4740 +7468 11200 0.6410 +7468 22894 0.4830 +7468 22976 0.6300 +7468 22992 0.5170 +7468 23028 0.6320 +7468 23030 0.6740 +7468 23046 0.4130 +7468 23135 0.5600 +7468 23378 0.5620 +7468 23476 0.9410 +7468 23512 0.5870 +7468 25942 0.5620 +7468 26013 0.4150 +7468 26147 0.4250 +7468 27161 0.6390 +7468 27302 0.4310 +7468 29072 0.5110 +7468 29997 0.4200 +7468 51111 0.6010 +7468 51514 0.5870 +7468 51588 0.5970 +7468 51634 0.4300 +7468 51720 0.6260 +7468 54145 0.5810 +7468 54855 0.4800 +7468 54892 0.4440 +7468 55170 0.4050 +7468 55183 0.5410 +7468 55209 0.4520 +7468 55870 0.5390 +7468 55904 0.4680 +7468 56829 0.4950 +7468 56950 0.6240 +7468 56979 0.4580 +7468 57167 0.8850 +7468 57621 0.4020 +7468 63977 0.4160 +7468 64324 0.4340 +7468 64421 0.5270 +7468 64754 0.5210 +7468 79823 0.7800 +7468 79915 0.5630 +7468 79918 0.4080 +7468 79923 0.7760 +7468 80854 0.5670 +7468 84142 0.5040 +7468 84193 0.5800 +7468 84444 0.7660 +7468 84656 0.5440 +7468 84661 0.4520 +7468 84678 0.4800 +7468 84787 0.5370 +7468 85236 0.9140 +7468 121504 0.8380 +7468 126961 0.9200 +7468 128312 0.5810 +7468 150572 0.4460 +7468 152098 0.4240 +7468 165918 0.6730 +7468 255626 0.5820 +7468 333932 0.9160 +7468 400506 0.5460 +7468 440093 0.8210 +7468 440686 0.8210 +7468 554313 0.8390 +7468 653604 0.9880 +7468 102723407 0.8750 +7469 7936 0.9990 +7469 8178 0.9020 +7469 8458 0.7250 +7469 8621 0.5660 +7469 8732 0.4520 +7469 8812 0.5990 +7469 9150 0.5440 +7469 9646 0.9350 +7469 9656 0.5120 +7469 9733 0.5980 +7469 9759 0.5130 +7469 9869 0.4180 +7469 10296 0.4790 +7469 10815 0.4800 +7469 10861 0.4210 +7469 11011 0.4300 +7469 11198 0.5750 +7469 22828 0.4820 +7469 22916 0.7960 +7469 22936 0.9040 +7469 23168 0.9330 +7469 23379 0.9010 +7469 23476 0.5590 +7469 25896 0.8140 +7469 25920 0.9990 +7469 26173 0.8330 +7469 26512 0.8140 +7469 26610 0.9030 +7469 26747 0.7240 +7469 27125 0.9170 +7469 29079 0.4210 +7469 29115 0.4200 +7469 29940 0.5420 +7469 51073 0.4410 +7469 51224 0.4990 +7469 51497 0.9990 +7469 51574 0.5790 +7469 51755 0.5470 +7469 51780 0.4180 +7469 54623 0.9040 +7469 54872 0.5450 +7469 54973 0.8230 +7469 55215 0.5520 +7469 55250 0.7270 +7469 55656 0.8250 +7469 55756 0.8200 +7469 55840 0.9000 +7469 57466 0.4200 +7469 57470 0.4040 +7469 57508 0.8080 +7469 57794 0.4450 +7469 64131 0.6120 +7469 79577 0.9320 +7469 79664 0.9000 +7469 80237 0.9000 +7469 80349 0.9000 +7469 80789 0.8140 +7469 81857 0.4230 +7469 84273 0.4360 +7469 84337 0.5730 +7469 84524 0.9000 +7469 85403 0.9010 +7469 92105 0.8080 +7469 114625 0.4160 +7469 123169 0.9080 +7469 124245 0.4590 +7469 404672 0.4990 +7471 7472 0.6960 +7471 7473 0.7070 +7471 7474 0.7360 +7471 7475 0.7070 +7471 7476 0.5450 +7471 7477 0.6530 +7471 7478 0.7080 +7471 7479 0.6810 +7471 7480 0.7510 +7471 7481 0.5970 +7471 7482 0.6960 +7471 7483 0.7210 +7471 7484 0.7580 +7471 7520 0.4070 +7471 7837 0.4100 +7471 7855 0.9760 +7471 7976 0.9600 +7471 8312 0.9180 +7471 8313 0.7150 +7471 8321 0.9970 +7471 8322 0.9790 +7471 8323 0.9740 +7471 8324 0.9860 +7471 8325 0.9950 +7471 8326 0.9760 +7471 8456 0.5040 +7471 8549 0.4220 +7471 8600 0.4200 +7471 8646 0.4190 +7471 8817 0.4610 +7471 8822 0.4500 +7471 8823 0.4600 +7471 8838 0.7080 +7471 8839 0.7970 +7471 8840 0.8130 +7471 8945 0.4510 +7471 8974 0.4230 +7471 9134 0.4080 +7471 9241 0.4130 +7471 9350 0.9090 +7471 9365 0.7360 +7471 10023 0.4350 +7471 10439 0.4060 +7471 10491 0.6030 +7471 10631 0.7760 +7471 10763 0.4520 +7471 11197 0.9700 +7471 11211 0.9860 +7471 22918 0.4600 +7471 22943 0.9650 +7471 23002 0.6570 +7471 23072 0.4450 +7471 23184 0.4760 +7471 25914 0.4270 +7471 26281 0.4630 +7471 27006 0.4830 +7471 27022 0.4070 +7471 27120 0.4830 +7471 27121 0.8340 +7471 27122 0.4850 +7471 27123 0.8490 +7471 50846 0.4160 +7471 50964 0.7900 +7471 50999 0.4770 +7471 51176 0.7300 +7471 51384 0.7340 +7471 51701 0.4440 +7471 54361 0.9120 +7471 55151 0.5960 +7471 55366 0.4020 +7471 58480 0.6770 +7471 60681 0.5770 +7471 63973 0.4800 +7471 64175 0.5780 +7471 64321 0.5600 +7471 64641 0.4500 +7471 64840 0.9890 +7471 79412 0.7960 +7471 79738 0.5030 +7471 79923 0.4350 +7471 79971 0.9400 +7471 80326 0.5730 +7471 81029 0.5430 +7471 83439 0.4180 +7471 83595 0.5210 +7471 83999 0.8250 +7471 84870 0.6130 +7471 85407 0.6490 +7471 85409 0.6550 +7471 89780 0.8320 +7471 90993 0.4340 +7471 121340 0.5320 +7471 137902 0.4100 +7471 139285 0.5830 +7471 147111 0.9780 +7471 151449 0.6030 +7471 166379 0.5420 +7471 256297 0.4210 +7471 284654 0.6790 +7471 340419 0.4420 +7471 343637 0.4690 +7471 387733 0.5750 +7471 100133941 0.4230 +7472 7473 0.7430 +7472 7474 0.7110 +7472 7475 0.5350 +7472 7476 0.5350 +7472 7477 0.5340 +7472 7478 0.5550 +7472 7479 0.7150 +7472 7480 0.7160 +7472 7481 0.5610 +7472 7482 0.5670 +7472 7483 0.5720 +7472 7484 0.5800 +7472 7804 0.4660 +7472 7855 0.9260 +7472 7976 0.9260 +7472 7982 0.5710 +7472 8312 0.7380 +7472 8313 0.6650 +7472 8321 0.9530 +7472 8322 0.9590 +7472 8323 0.9130 +7472 8324 0.9550 +7472 8325 0.9620 +7472 8326 0.9690 +7472 8549 0.4530 +7472 8817 0.4180 +7472 8822 0.4290 +7472 8840 0.5070 +7472 8842 0.4250 +7472 9350 0.9110 +7472 9370 0.4120 +7472 9496 0.4110 +7472 10631 0.4520 +7472 11197 0.9630 +7472 11211 0.9020 +7472 22943 0.9090 +7472 25960 0.6090 +7472 25975 0.4930 +7472 27006 0.4170 +7472 27121 0.8720 +7472 27122 0.4810 +7472 27123 0.8940 +7472 30816 0.4670 +7472 50999 0.4540 +7472 51176 0.6660 +7472 51384 0.7210 +7472 53944 0.4220 +7472 54361 0.5360 +7472 55366 0.4100 +7472 64840 0.9650 +7472 79971 0.8140 +7472 80326 0.5440 +7472 81029 0.5840 +7472 84364 0.5100 +7472 84870 0.5040 +7472 89780 0.6970 +7472 93986 0.5080 +7472 120892 0.5860 +7472 128209 0.5570 +7472 147111 0.9300 +7472 340419 0.4410 +7472 405754 0.4530 +7473 7474 0.5280 +7473 7475 0.5530 +7473 7476 0.5350 +7473 7477 0.5420 +7473 7478 0.5810 +7473 7479 0.7240 +7473 7480 0.7310 +7473 7481 0.5690 +7473 7482 0.5300 +7473 7483 0.6110 +7473 7484 0.6320 +7473 7855 0.9170 +7473 7976 0.8630 +7473 8312 0.7670 +7473 8313 0.6920 +7473 8320 0.4370 +7473 8321 0.9260 +7473 8322 0.8970 +7473 8323 0.9100 +7473 8324 0.9770 +7473 8325 0.9980 +7473 8326 0.8740 +7473 8456 0.6940 +7473 8549 0.6050 +7473 8646 0.4090 +7473 8701 0.4890 +7473 9241 0.4860 +7473 9350 0.9420 +7473 9365 0.6380 +7473 10562 0.4250 +7473 10637 0.4740 +7473 11197 0.9420 +7473 11211 0.8470 +7473 22943 0.8900 +7473 23097 0.4060 +7473 23184 0.7290 +7473 23493 0.4310 +7473 23499 0.5110 +7473 25960 0.7560 +7473 27121 0.7980 +7473 27122 0.4360 +7473 27123 0.8230 +7473 28514 0.4490 +7473 50999 0.4420 +7473 51176 0.6600 +7473 51384 0.6560 +7473 54361 0.6400 +7473 54567 0.4710 +7473 54894 0.5520 +7473 55366 0.4780 +7473 63978 0.6270 +7473 64321 0.5110 +7473 64840 0.9830 +7473 79923 0.4470 +7473 79971 0.8730 +7473 80326 0.5600 +7473 81029 0.5330 +7473 83439 0.4220 +7473 83881 0.5210 +7473 84870 0.4520 +7473 89780 0.9740 +7473 120892 0.7660 +7473 147111 0.9400 +7473 147495 0.5370 +7473 221833 0.6900 +7473 246744 0.6940 +7473 284058 0.6780 +7473 284654 0.6040 +7473 340419 0.4600 +7473 343637 0.5610 +7473 104909134 0.7310 +7474 7475 0.7050 +7474 7476 0.7340 +7474 7477 0.5370 +7474 7478 0.5470 +7474 7479 0.5420 +7474 7480 0.5650 +7474 7481 0.7310 +7474 7482 0.7050 +7474 7483 0.7280 +7474 7484 0.7040 +7474 7490 0.5360 +7474 7837 0.4480 +7474 7855 0.9990 +7474 7976 0.9990 +7474 7980 0.4830 +7474 8218 0.5070 +7474 8301 0.4990 +7474 8312 0.7100 +7474 8313 0.7610 +7474 8321 0.9900 +7474 8322 0.9990 +7474 8323 0.9970 +7474 8324 0.9980 +7474 8325 0.9560 +7474 8326 0.9980 +7474 8549 0.5180 +7474 8600 0.4700 +7474 8646 0.4090 +7474 8673 0.5010 +7474 8767 0.4330 +7474 8817 0.4770 +7474 8822 0.4410 +7474 8823 0.4500 +7474 8840 0.5310 +7474 8945 0.4180 +7474 9241 0.4520 +7474 9341 0.5010 +7474 9350 0.9160 +7474 9365 0.5640 +7474 9620 0.4740 +7474 9892 0.4990 +7474 9935 0.4310 +7474 10082 0.4260 +7474 10631 0.4230 +7474 10681 0.5030 +7474 10811 0.5090 +7474 11167 0.4630 +7474 11197 0.9850 +7474 11211 0.8690 +7474 22848 0.4990 +7474 22905 0.4990 +7474 22943 0.9420 +7474 23002 0.7970 +7474 23149 0.5070 +7474 23236 0.7280 +7474 23314 0.4570 +7474 23476 0.4640 +7474 23500 0.4450 +7474 25977 0.4990 +7474 26119 0.4990 +7474 26281 0.4640 +7474 27006 0.4430 +7474 27035 0.5210 +7474 27121 0.8330 +7474 27122 0.6120 +7474 27123 0.8650 +7474 29126 0.5620 +7474 29924 0.5080 +7474 29964 0.5230 +7474 29978 0.5000 +7474 50618 0.4990 +7474 50846 0.4060 +7474 50855 0.7480 +7474 50964 0.5300 +7474 50999 0.4320 +7474 51176 0.7270 +7474 51339 0.5650 +7474 51384 0.7340 +7474 51701 0.5370 +7474 51764 0.5080 +7474 54205 0.4900 +7474 54331 0.5320 +7474 54361 0.8710 +7474 54894 0.4430 +7474 55351 0.4010 +7474 55366 0.4780 +7474 55707 0.4990 +7474 55970 0.5550 +7474 56288 0.5600 +7474 57154 0.5690 +7474 57216 0.9730 +7474 59345 0.5030 +7474 64321 0.4320 +7474 64750 0.5850 +7474 64840 0.9690 +7474 79412 0.5440 +7474 79923 0.4190 +7474 79961 0.4670 +7474 79971 0.9550 +7474 80326 0.5540 +7474 81029 0.9600 +7474 81839 0.5600 +7474 83439 0.4360 +7474 84133 0.4100 +7474 84168 0.4590 +7474 84251 0.5230 +7474 84870 0.5190 +7474 85021 0.4990 +7474 85407 0.4780 +7474 85409 0.4310 +7474 89780 0.5340 +7474 91147 0.4540 +7474 94235 0.5220 +7474 115548 0.5070 +7474 116372 0.4050 +7474 117581 0.5230 +7474 121340 0.4250 +7474 124056 0.5010 +7474 144165 0.5800 +7474 147111 0.9370 +7474 166336 0.5680 +7474 284654 0.5450 +7474 340419 0.4880 +7474 340784 0.5500 +7474 387129 0.4040 +7474 392255 0.4760 +7475 7476 0.5490 +7475 7477 0.5530 +7475 7478 0.6500 +7475 7479 0.5660 +7475 7480 0.6190 +7475 7481 0.5750 +7475 7482 0.6750 +7475 7483 0.7310 +7475 7484 0.5860 +7475 7855 0.9260 +7475 7976 0.9190 +7475 8312 0.5720 +7475 8313 0.6310 +7475 8321 0.9280 +7475 8322 0.9310 +7475 8323 0.9100 +7475 8324 0.9090 +7475 8325 0.9060 +7475 8326 0.9400 +7475 9350 0.9090 +7475 9789 0.5910 +7475 10913 0.4470 +7475 11197 0.9470 +7475 11211 0.8520 +7475 22943 0.9450 +7475 23478 0.4770 +7475 25928 0.5540 +7475 27120 0.4710 +7475 27121 0.9490 +7475 27122 0.8650 +7475 27123 0.9540 +7475 27148 0.4170 +7475 28972 0.4200 +7475 50999 0.4500 +7475 51176 0.5860 +7475 51384 0.5540 +7475 54361 0.5620 +7475 58480 0.5140 +7475 64840 0.9570 +7475 79971 0.7990 +7475 80326 0.6080 +7475 81029 0.5570 +7475 83439 0.4020 +7475 85407 0.4600 +7475 89780 0.5420 +7475 90701 0.5910 +7475 147111 0.9420 +7475 147872 0.5000 +7475 284654 0.4660 +7476 7477 0.6890 +7476 7478 0.6770 +7476 7479 0.6880 +7476 7480 0.7120 +7476 7481 0.5460 +7476 7482 0.5300 +7476 7483 0.5870 +7476 7484 0.5800 +7476 7783 0.4300 +7476 7855 0.9940 +7476 7976 0.9450 +7476 8312 0.6280 +7476 8313 0.6440 +7476 8321 0.9320 +7476 8322 0.9930 +7476 8323 0.9650 +7476 8324 0.9950 +7476 8325 0.8630 +7476 8326 0.9870 +7476 8434 0.5460 +7476 8817 0.4140 +7476 9350 0.9080 +7476 9365 0.5270 +7476 11197 0.9870 +7476 11211 0.9860 +7476 22943 0.8780 +7476 23554 0.4760 +7476 25960 0.7470 +7476 27121 0.7980 +7476 27122 0.5520 +7476 27123 0.8200 +7476 50999 0.4320 +7476 51083 0.4970 +7476 51176 0.6500 +7476 51384 0.7380 +7476 54361 0.5510 +7476 55714 0.4180 +7476 57216 0.5260 +7476 64840 0.9820 +7476 79971 0.8970 +7476 80326 0.5550 +7476 81029 0.5400 +7476 84864 0.6700 +7476 89780 0.5440 +7476 147111 0.9650 +7476 284654 0.4060 +7476 340784 0.7510 +7477 7478 0.5610 +7477 7479 0.7000 +7477 7480 0.7060 +7477 7481 0.5590 +7477 7482 0.5300 +7477 7483 0.5880 +7477 7484 0.5820 +7477 7855 0.9400 +7477 7976 0.9470 +7477 8312 0.5750 +7477 8313 0.7830 +7477 8321 0.9510 +7477 8322 0.9900 +7477 8323 0.9390 +7477 8324 0.9640 +7477 8325 0.9230 +7477 8326 0.9510 +7477 8434 0.4700 +7477 9350 0.9110 +7477 9448 0.4250 +7477 10009 0.4290 +7477 10587 0.4020 +7477 11197 0.9470 +7477 11211 0.9640 +7477 22943 0.8760 +7477 25960 0.6830 +7477 27121 0.7870 +7477 27122 0.4470 +7477 27123 0.8290 +7477 50964 0.4650 +7477 50999 0.5540 +7477 51176 0.6470 +7477 51339 0.4970 +7477 51384 0.6940 +7477 54361 0.7900 +7477 54894 0.6030 +7477 57216 0.7370 +7477 64840 0.9590 +7477 79971 0.8600 +7477 80326 0.5490 +7477 81029 0.5380 +7477 83439 0.4180 +7477 84870 0.4060 +7477 85407 0.6140 +7477 89780 0.7010 +7477 147111 0.9350 +7477 150383 0.4570 +7477 284654 0.4320 +7477 340419 0.4400 +7477 388698 0.4070 +7478 7479 0.6510 +7478 7480 0.7260 +7478 7481 0.5630 +7478 7482 0.7060 +7478 7483 0.6190 +7478 7484 0.6170 +7478 7855 0.9470 +7478 7976 0.8250 +7478 8312 0.7390 +7478 8313 0.5230 +7478 8321 0.8560 +7478 8322 0.9230 +7478 8323 0.8250 +7478 8324 0.8310 +7478 8325 0.9510 +7478 8326 0.8950 +7478 8646 0.4650 +7478 9350 0.9250 +7478 11197 0.9320 +7478 11211 0.8340 +7478 22943 0.8470 +7478 27121 0.7470 +7478 27123 0.7580 +7478 50964 0.5180 +7478 50999 0.4320 +7478 51176 0.4760 +7478 51306 0.4210 +7478 51384 0.7040 +7478 54361 0.5470 +7478 54874 0.5150 +7478 64840 0.9530 +7478 79412 0.4520 +7478 79933 0.4180 +7478 79971 0.9910 +7478 80326 0.5730 +7478 81029 0.5450 +7478 83881 0.4330 +7478 83999 0.5320 +7478 89780 0.5820 +7478 117531 0.4160 +7478 139285 0.5220 +7478 147111 0.9320 +7478 340419 0.4520 +7479 7480 0.5870 +7479 7481 0.6110 +7479 7482 0.5590 +7479 7483 0.5950 +7479 7484 0.6020 +7479 7855 0.8550 +7479 7976 0.8350 +7479 8312 0.7160 +7479 8313 0.5250 +7479 8321 0.8670 +7479 8322 0.8470 +7479 8323 0.8400 +7479 8324 0.8320 +7479 8325 0.8550 +7479 8326 0.8640 +7479 9350 0.9110 +7479 9355 0.4160 +7479 10716 0.4250 +7479 11197 0.9320 +7479 11211 0.8340 +7479 22943 0.8400 +7479 27121 0.7520 +7479 27123 0.7650 +7479 50964 0.4930 +7479 50999 0.4690 +7479 51176 0.5500 +7479 51384 0.5560 +7479 54361 0.5450 +7479 64211 0.4850 +7479 64840 0.9480 +7479 79412 0.4290 +7479 79971 0.8110 +7479 80326 0.5760 +7479 81029 0.5460 +7479 83439 0.4530 +7479 83999 0.4750 +7479 89780 0.7290 +7479 139285 0.5250 +7479 147111 0.9270 +7480 7481 0.5580 +7480 7482 0.6890 +7480 7483 0.5720 +7480 7484 0.5620 +7480 7855 0.9040 +7480 7976 0.8160 +7480 8312 0.6270 +7480 8313 0.6600 +7480 8321 0.9470 +7480 8322 0.8980 +7480 8323 0.8410 +7480 8324 0.9440 +7480 8325 0.9050 +7480 8326 0.8530 +7480 8456 0.7230 +7480 8600 0.5060 +7480 8626 0.7600 +7480 8840 0.4600 +7480 9350 0.9090 +7480 10913 0.5380 +7480 11197 0.9490 +7480 11211 0.8810 +7480 22943 0.8850 +7480 27121 0.8340 +7480 27122 0.4510 +7480 27123 0.8380 +7480 50964 0.6250 +7480 50999 0.4380 +7480 51176 0.6790 +7480 51384 0.5640 +7480 54361 0.5770 +7480 64840 0.9540 +7480 79971 0.7930 +7480 80326 0.5300 +7480 81029 0.5710 +7480 89780 0.7160 +7480 121340 0.5090 +7480 128178 0.6020 +7480 147111 0.9330 +7480 727857 0.4040 +7481 7482 0.7100 +7481 7483 0.7390 +7481 7484 0.5880 +7481 7490 0.4130 +7481 7753 0.4920 +7481 7855 0.9790 +7481 7976 0.9960 +7481 8312 0.6340 +7481 8313 0.6450 +7481 8321 0.9820 +7481 8322 0.9950 +7481 8323 0.9980 +7481 8324 0.9970 +7481 8325 0.9940 +7481 8326 0.9960 +7481 8481 0.6220 +7481 8840 0.4030 +7481 9350 0.9240 +7481 9620 0.4460 +7481 9935 0.4700 +7481 10009 0.4410 +7481 10076 0.5820 +7481 10253 0.4130 +7481 10681 0.4990 +7481 10736 0.5050 +7481 11197 0.9690 +7481 11211 0.9640 +7481 22943 0.8710 +7481 23002 0.7640 +7481 23236 0.5700 +7481 23314 0.4720 +7481 26160 0.7660 +7481 27121 0.8130 +7481 27122 0.4360 +7481 27123 0.8290 +7481 29964 0.5540 +7481 50846 0.4310 +7481 50999 0.4380 +7481 51176 0.6180 +7481 51384 0.8890 +7481 51531 0.4680 +7481 51701 0.4430 +7481 51764 0.5080 +7481 53407 0.4300 +7481 54331 0.5230 +7481 54361 0.5530 +7481 55351 0.4940 +7481 55363 0.4290 +7481 55800 0.4490 +7481 55970 0.5280 +7481 57216 0.8230 +7481 59345 0.5050 +7481 60529 0.4210 +7481 64840 0.9570 +7481 79971 0.8300 +7481 80326 0.5630 +7481 81029 0.5510 +7481 81839 0.5360 +7481 84830 0.4890 +7481 84870 0.4150 +7481 85407 0.5070 +7481 85409 0.4180 +7481 89780 0.5740 +7481 94235 0.5090 +7481 132884 0.4800 +7481 144165 0.5600 +7481 147111 0.9440 +7481 147138 0.4120 +7481 166336 0.5620 +7481 284654 0.4400 +7481 340419 0.4930 +7481 347853 0.5020 +7481 392255 0.5230 +7481 100129239 0.4240 +7481 104909134 0.4010 +7482 7483 0.6760 +7482 7484 0.5940 +7482 7855 0.9170 +7482 7976 0.9360 +7482 8312 0.5840 +7482 8313 0.6820 +7482 8321 0.9410 +7482 8322 0.9570 +7482 8323 0.8620 +7482 8324 0.9390 +7482 8325 0.9530 +7482 8326 0.9340 +7482 8549 0.4890 +7482 8840 0.4210 +7482 9350 0.9030 +7482 11197 0.9470 +7482 11211 0.9090 +7482 22943 0.9390 +7482 27120 0.7620 +7482 27121 0.9370 +7482 27122 0.8580 +7482 27123 0.9410 +7482 50999 0.4320 +7482 51176 0.6150 +7482 51384 0.5420 +7482 54361 0.5330 +7482 55366 0.4110 +7482 64840 0.9600 +7482 79971 0.8110 +7482 80326 0.5490 +7482 81029 0.5470 +7482 84870 0.5700 +7482 89780 0.5470 +7482 147111 0.9330 +7482 147872 0.5650 +7482 284654 0.5440 +7482 340419 0.4190 +7483 7484 0.5380 +7483 7855 0.8390 +7483 7976 0.8390 +7483 8200 0.6130 +7483 8312 0.5500 +7483 8313 0.6060 +7483 8321 0.8750 +7483 8322 0.8750 +7483 8323 0.8560 +7483 8324 0.8550 +7483 8325 0.8610 +7483 8326 0.8660 +7483 9350 0.9040 +7483 11197 0.9460 +7483 11211 0.8170 +7483 22943 0.8410 +7483 27121 0.7730 +7483 27123 0.7900 +7483 50999 0.4250 +7483 51176 0.5340 +7483 51384 0.5990 +7483 54361 0.6080 +7483 64840 0.9530 +7483 79971 0.8490 +7483 80326 0.5810 +7483 80351 0.4040 +7483 81029 0.5890 +7483 83439 0.4110 +7483 89780 0.7430 +7483 147111 0.9260 +7483 283149 0.4130 +7484 7490 0.4660 +7484 7849 0.4870 +7484 7855 0.9010 +7484 7976 0.8170 +7484 8312 0.5360 +7484 8313 0.6330 +7484 8321 0.8480 +7484 8322 0.9070 +7484 8323 0.8700 +7484 8324 0.8890 +7484 8325 0.8390 +7484 8326 0.8280 +7484 9350 0.9150 +7484 10736 0.7110 +7484 11197 0.9330 +7484 11211 0.8830 +7484 22943 0.8600 +7484 27121 0.7490 +7484 27123 0.7730 +7484 50999 0.4250 +7484 51176 0.5290 +7484 51384 0.5740 +7484 54361 0.5890 +7484 55366 0.4340 +7484 57216 0.4290 +7484 64840 0.9480 +7484 79633 0.4820 +7484 79654 0.4480 +7484 79971 0.8550 +7484 80326 0.5660 +7484 81029 0.5840 +7484 84870 0.5540 +7484 89780 0.7460 +7484 147111 0.9310 +7484 284654 0.4660 +7484 340419 0.4030 +7485 7917 0.6660 +7485 8266 0.9070 +7485 8504 0.4750 +7485 8624 0.5540 +7485 9218 0.6150 +7485 9381 0.6380 +7485 10952 0.7290 +7485 11231 0.5000 +7485 23480 0.5100 +7485 27230 0.7580 +7485 29100 0.6050 +7485 29927 0.7170 +7485 51234 0.4250 +7485 51608 0.9580 +7485 54499 0.5880 +7485 54557 0.5450 +7485 55176 0.4170 +7485 55831 0.8140 +7485 80777 0.4600 +7485 83460 0.6530 +7485 94104 0.4420 +7485 118424 0.5160 +7485 285521 0.4100 +7486 7507 0.7560 +7486 7508 0.5000 +7486 7515 0.7920 +7486 7516 0.7410 +7486 7517 0.9640 +7486 7518 0.7740 +7486 7520 0.9930 +7486 7979 0.6090 +7486 8243 0.7340 +7486 8290 0.4380 +7486 8318 0.6900 +7486 8356 0.4490 +7486 8361 0.4450 +7486 8438 0.6810 +7486 8467 0.5050 +7486 8631 0.4510 +7486 8658 0.5790 +7486 8914 0.8500 +7486 8924 0.4360 +7486 8940 0.9310 +7486 9025 0.4180 +7486 9126 0.4800 +7486 9156 0.9980 +7486 9188 0.6320 +7486 9241 0.6770 +7486 9400 0.5320 +7486 9401 0.5300 +7486 9533 0.4750 +7486 9557 0.4220 +7486 9656 0.8590 +7486 9894 0.5230 +7486 9937 0.4130 +7486 10036 0.6740 +7486 10038 0.5030 +7486 10051 0.5440 +7486 10111 0.7560 +7486 10198 0.5500 +7486 10269 0.6770 +7486 10459 0.4710 +7486 10524 0.6740 +7486 10535 0.6450 +7486 10592 0.4550 +7486 10635 0.6220 +7486 10714 0.7510 +7486 10721 0.5260 +7486 10891 0.4850 +7486 11044 0.5780 +7486 11073 0.9020 +7486 11144 0.4820 +7486 11169 0.6190 +7486 11198 0.4070 +7486 11200 0.8240 +7486 11201 0.6670 +7486 11277 0.5510 +7486 11284 0.8070 +7486 22909 0.5020 +7486 22933 0.4610 +7486 22976 0.7130 +7486 23049 0.4640 +7486 23064 0.4600 +7486 23137 0.7260 +7486 23304 0.5840 +7486 23313 0.4570 +7486 23405 0.4930 +7486 23411 0.8540 +7486 23468 0.8880 +7486 23514 0.5870 +7486 23586 0.4900 +7486 23626 0.5070 +7486 25788 0.8490 +7486 25842 0.6130 +7486 25913 0.9240 +7486 26277 0.9230 +7486 27030 0.5780 +7486 27127 0.4480 +7486 27301 0.4420 +7486 27343 0.8070 +7486 27434 0.7340 +7486 50485 0.8770 +7486 51071 0.4920 +7486 51426 0.6660 +7486 51455 0.6440 +7486 51547 0.5690 +7486 51548 0.9120 +7486 51750 0.8550 +7486 51755 0.4090 +7486 54107 0.4720 +7486 54386 0.5700 +7486 54487 0.4640 +7486 54606 0.5790 +7486 54617 0.4210 +7486 54821 0.6910 +7486 54840 0.7610 +7486 54841 0.5700 +7486 54962 0.7650 +7486 55086 0.4450 +7486 55120 0.7240 +7486 55125 0.4210 +7486 55159 0.6430 +7486 55170 0.4480 +7486 55215 0.8050 +7486 55247 0.5970 +7486 55388 0.6380 +7486 55505 0.4050 +7486 55636 0.5770 +7486 55723 0.5870 +7486 55775 0.5420 +7486 55902 0.4110 +7486 56655 0.4830 +7486 56852 0.7770 +7486 56897 0.9980 +7486 56916 0.5960 +7486 57082 0.4990 +7486 57122 0.5980 +7486 57697 0.9940 +7486 57804 0.4070 +7486 63967 0.8480 +7486 64135 0.4940 +7486 64858 0.7110 +7486 79008 0.5990 +7486 79132 0.4900 +7486 79621 0.5810 +7486 79661 0.7920 +7486 79677 0.6790 +7486 79728 0.7810 +7486 79840 0.5890 +7486 79883 0.4060 +7486 79915 0.6600 +7486 79991 0.5570 +7486 80010 0.9710 +7486 80119 0.8910 +7486 80169 0.4480 +7486 80198 0.9660 +7486 80205 0.4840 +7486 81620 0.5140 +7486 83695 0.5620 +7486 83932 0.4730 +7486 83990 0.9150 +7486 84083 0.7900 +7486 84126 0.7850 +7486 84250 0.4260 +7486 84464 0.8260 +7486 84515 0.4950 +7486 84870 0.5730 +7486 84893 0.9240 +7486 85365 0.5620 +7486 89780 0.4760 +7486 91442 0.6520 +7486 92797 0.6330 +7486 113510 0.5740 +7486 116028 0.8870 +7486 116447 0.8180 +7486 135458 0.5580 +7486 144715 0.6300 +7486 146956 0.7070 +7486 165918 0.4450 +7486 170506 0.6830 +7486 197131 0.5330 +7486 197342 0.6260 +7486 200558 0.7370 +7486 201973 0.6000 +7486 246243 0.6100 +7486 254394 0.5190 +7486 254528 0.5830 +7486 257218 0.6390 +7486 259282 0.4640 +7486 283677 0.4220 +7486 284654 0.5260 +7486 286053 0.6600 +7486 286257 0.6860 +7486 348654 0.8470 +7486 353497 0.4630 +7486 375748 0.6140 +7486 440093 0.4370 +7486 440686 0.4380 +7486 548593 0.9050 +7486 653604 0.4420 +7486 100533467 0.7460 +7490 7750 0.4270 +7490 7767 0.5430 +7490 7799 0.5170 +7490 7827 0.9210 +7490 7837 0.4850 +7490 7849 0.7810 +7490 8021 0.4140 +7490 8148 0.4070 +7490 8233 0.5930 +7490 8243 0.4400 +7490 8289 0.4570 +7490 8356 0.4090 +7490 8493 0.4980 +7490 8542 0.6110 +7490 8796 0.5170 +7490 8854 0.5770 +7490 9077 0.4690 +7490 9096 0.7310 +7490 9126 0.4460 +7490 9391 0.8160 +7490 9476 0.6040 +7490 9589 0.9970 +7490 10046 0.4040 +7490 10232 0.6530 +7490 10370 0.7110 +7490 10409 0.7960 +7490 10480 0.4740 +7490 10630 0.5160 +7490 10735 0.6110 +7490 10736 0.7350 +7490 11281 0.7710 +7490 11338 0.4830 +7490 11346 0.8450 +7490 22822 0.4100 +7490 23213 0.5600 +7490 23405 0.4230 +7490 23414 0.7540 +7490 23512 0.7380 +7490 23532 0.6850 +7490 23600 0.4300 +7490 23607 0.7810 +7490 25844 0.5590 +7490 26040 0.6050 +7490 26610 0.5440 +7490 27235 0.4250 +7490 27316 0.4540 +7490 29072 0.4220 +7490 29126 0.4310 +7490 29855 0.5120 +7490 30812 0.5820 +7490 50485 0.4190 +7490 50846 0.4680 +7490 51004 0.4200 +7490 51176 0.5320 +7490 51196 0.8250 +7490 51209 0.4290 +7490 51232 0.5340 +7490 54361 0.6610 +7490 54443 0.4800 +7490 54474 0.7140 +7490 54790 0.8680 +7490 55145 0.4490 +7490 55294 0.4420 +7490 55809 0.4350 +7490 56956 0.7530 +7490 57144 0.4130 +7490 58524 0.4190 +7490 60529 0.4610 +7490 63035 0.5320 +7490 64324 0.4220 +7490 64332 0.4370 +7490 64423 0.7900 +7490 79870 0.6060 +7490 79923 0.5410 +7490 79934 0.4450 +7490 80319 0.5610 +7490 83902 0.4050 +7490 84295 0.6890 +7490 84448 0.4260 +7490 91614 0.5430 +7490 120237 0.4120 +7490 120526 0.4280 +7490 126374 0.6130 +7490 137902 0.4780 +7490 139285 0.8490 +7490 140628 0.5270 +7490 171023 0.7150 +7490 196294 0.4160 +7490 223117 0.4520 +7490 253260 0.4510 +7490 284654 0.5250 +7490 341019 0.4810 +7490 346673 0.5010 +7490 359787 0.4280 +7490 400566 0.7090 +7490 440686 0.4050 +7490 653604 0.4050 +7490 100288687 0.4550 +7490 105375355 0.5170 +7494 7709 0.7570 +7494 7837 0.5280 +7494 8522 0.4240 +7494 8634 0.4430 +7494 8678 0.5900 +7494 8720 0.6400 +7494 8764 0.4130 +7494 8795 0.4720 +7494 8878 0.4560 +7494 9045 0.8060 +7494 9114 0.7500 +7494 9140 0.5680 +7494 9217 0.5850 +7494 9349 0.8000 +7494 9451 0.9090 +7494 9474 0.6740 +7494 9519 0.9120 +7494 9570 0.7500 +7494 9601 0.6550 +7494 9695 0.9760 +7494 9709 0.8230 +7494 9797 0.7500 +7494 9927 0.6640 +7494 10018 0.6890 +7494 10106 0.7500 +7494 10113 0.7860 +7494 10130 0.8940 +7494 10134 0.4770 +7494 10280 0.6290 +7494 10399 0.8370 +7494 10483 0.4240 +7494 10488 0.5030 +7494 10525 0.9380 +7494 10533 0.5650 +7494 10551 0.4630 +7494 10595 0.8650 +7494 10628 0.4630 +7494 10891 0.4660 +7494 10897 0.7590 +7494 10952 0.9150 +7494 10954 0.8480 +7494 10956 0.4180 +7494 10961 0.4600 +7494 11015 0.8100 +7494 11025 0.4200 +7494 11224 0.8000 +7494 11231 0.6030 +7494 11236 0.4690 +7494 22809 0.7190 +7494 22852 0.4170 +7494 22872 0.8010 +7494 22926 0.9980 +7494 23071 0.4750 +7494 23316 0.4340 +7494 23411 0.4830 +7494 23435 0.4050 +7494 23480 0.8420 +7494 23521 0.8250 +7494 23645 0.6900 +7494 25873 0.8000 +7494 27102 0.5850 +7494 27201 0.4770 +7494 27230 0.8560 +7494 29117 0.4890 +7494 29760 0.4040 +7494 29927 0.9120 +7494 30001 0.7330 +7494 30827 0.7520 +7494 51009 0.4710 +7494 51121 0.8020 +7494 51237 0.4740 +7494 51303 0.5190 +7494 51360 0.7090 +7494 51493 0.7170 +7494 51726 0.8880 +7494 54084 0.4240 +7494 54205 0.5370 +7494 54431 0.4580 +7494 55033 0.7710 +7494 55054 0.5770 +7494 55062 0.8140 +7494 55738 0.7500 +7494 55741 0.7730 +7494 55829 0.4050 +7494 56005 0.7810 +7494 56605 0.6360 +7494 57379 0.6650 +7494 57761 0.7200 +7494 57823 0.5460 +7494 58477 0.8050 +7494 58487 0.6070 +7494 60468 0.7090 +7494 64061 0.7540 +7494 64127 0.4540 +7494 64764 0.4950 +7494 64798 0.4430 +7494 65018 0.4120 +7494 79094 0.6310 +7494 79139 0.6530 +7494 79174 0.5050 +7494 80267 0.5870 +7494 81502 0.5240 +7494 81567 0.4430 +7494 81631 0.4960 +7494 83939 0.6900 +7494 84447 0.8890 +7494 84649 0.4240 +7494 84699 0.5960 +7494 84919 0.4020 +7494 90993 0.4480 +7494 91319 0.7120 +7494 94103 0.4180 +7494 116138 0.7500 +7494 134266 0.4240 +7494 137902 0.5270 +7494 144717 0.4290 +7494 148327 0.5060 +7494 168620 0.6620 +7494 253827 0.4510 +7494 259217 0.4380 +7494 345611 0.4410 +7494 387332 0.9140 +7494 440275 0.7190 +7494 441549 0.5310 +7494 100137049 0.7530 +7494 100526842 0.8000 +7494 100529239 0.8120 +7494 102723407 0.4190 +7498 7837 0.7230 +7498 8292 0.4510 +7498 8772 0.4140 +7498 8972 0.6220 +7498 9356 0.4810 +7498 9360 0.4330 +7498 9376 0.4580 +7498 9429 0.4270 +7498 9563 0.4470 +7498 9615 0.9880 +7498 9817 0.5440 +7498 9958 0.5920 +7498 10135 0.5160 +7498 10384 0.9680 +7498 10385 0.9880 +7498 10811 0.4430 +7498 10891 0.4250 +7498 10917 0.9690 +7498 11118 0.9680 +7498 11119 0.9660 +7498 11120 0.9880 +7498 23411 0.4770 +7498 23583 0.5100 +7498 25828 0.4040 +7498 27035 0.8200 +7498 50506 0.6640 +7498 50507 0.7260 +7498 50508 0.5830 +7498 51806 0.4160 +7498 53905 0.7110 +7498 54205 0.6660 +7498 55034 0.7310 +7498 55270 0.4530 +7498 55867 0.4430 +7498 56606 0.6960 +7498 58157 0.4350 +7498 79400 0.6480 +7498 79908 0.9690 +7498 91860 0.4160 +7498 113179 0.5080 +7498 114625 0.9690 +7498 116085 0.7260 +7498 124056 0.4470 +7498 134637 0.5100 +7498 137902 0.7230 +7498 144193 0.6640 +7498 151531 0.4780 +7498 153579 0.9880 +7498 163688 0.4160 +7498 257202 0.8840 +7498 493869 0.8840 +7498 606495 0.4010 +7498 653361 0.7000 +7504 23230 0.9540 +7504 26040 0.4320 +7504 55113 0.5050 +7504 55363 0.4480 +7504 347404 0.4580 +7504 389668 0.4490 +7507 7508 0.9810 +7507 7515 0.8460 +7507 7516 0.5300 +7507 7517 0.7030 +7507 7518 0.7720 +7507 7520 0.8670 +7507 8317 0.4990 +7507 8450 0.6320 +7507 8451 0.7610 +7507 8467 0.7130 +7507 8505 0.4140 +7507 8554 0.5260 +7507 8924 0.6500 +7507 8930 0.5240 +7507 8932 0.4980 +7507 9156 0.6270 +7507 9401 0.9180 +7507 9436 0.4240 +7507 9555 0.4260 +7507 9557 0.8700 +7507 9656 0.4640 +7507 9849 0.4230 +7507 9937 0.5600 +7507 9978 0.6830 +7507 10038 0.8060 +7507 10393 0.4500 +7507 10401 0.4860 +7507 10450 0.4930 +7507 10459 0.4810 +7507 10524 0.5330 +7507 10973 0.5580 +7507 11073 0.4200 +7507 11186 0.9490 +7507 11200 0.5640 +7507 11201 0.5950 +7507 11284 0.4010 +7507 11321 0.9320 +7507 22827 0.5490 +7507 22897 0.7310 +7507 23028 0.5530 +7507 23186 0.5400 +7507 23411 0.7720 +7507 23424 0.4170 +7507 26015 0.4140 +7507 26227 0.4570 +7507 27030 0.7490 +7507 27301 0.5310 +7507 27343 0.5680 +7507 27434 0.4750 +7507 29935 0.5500 +7507 51008 0.5860 +7507 51317 0.5960 +7507 51426 0.5130 +7507 51455 0.7400 +7507 51548 0.5850 +7507 51750 0.4080 +7507 54778 0.5330 +7507 54840 0.4470 +7507 54962 0.5890 +7507 54969 0.4420 +7507 55120 0.4380 +7507 55215 0.7570 +7507 55775 0.5040 +7507 56852 0.6660 +7507 56949 0.9800 +7507 57654 0.7670 +7507 57697 0.8110 +7507 60386 0.4150 +7507 64210 0.7200 +7507 64421 0.7590 +7507 64858 0.4370 +7507 79661 0.7220 +7507 79728 0.7000 +7507 79827 0.5070 +7507 79840 0.7070 +7507 79913 0.4190 +7507 79991 0.8670 +7507 80198 0.7130 +7507 83593 0.4800 +7507 83932 0.4410 +7507 83990 0.6720 +7507 84126 0.4730 +7507 84164 0.5400 +7507 84464 0.5160 +7507 91419 0.5630 +7507 91442 0.6200 +7507 125150 0.5410 +7507 126074 0.5400 +7507 146956 0.4120 +7507 158427 0.4950 +7507 169841 0.5810 +7507 252969 0.4530 +7507 286257 0.5930 +7507 348654 0.4040 +7507 404672 0.9800 +7507 548593 0.5330 +7507 728340 0.4340 +7507 100526664 0.4360 +7507 100533467 0.9230 +7507 105375355 0.5400 +7508 7515 0.6290 +7508 7517 0.4910 +7508 7518 0.9210 +7508 7520 0.9530 +7508 7528 0.4230 +7508 7874 0.7010 +7508 8237 0.6790 +7508 8348 0.6330 +7508 8350 0.4290 +7508 8356 0.5830 +7508 8361 0.7100 +7508 8370 0.6230 +7508 8450 0.6810 +7508 8451 0.7430 +7508 8533 0.5060 +7508 8554 0.4710 +7508 8607 0.4210 +7508 9156 0.4280 +7508 9318 0.5070 +7508 9354 0.4810 +7508 9401 0.4160 +7508 9555 0.6160 +7508 9557 0.8710 +7508 9978 0.6910 +7508 10036 0.4260 +7508 10038 0.8610 +7508 10277 0.5990 +7508 10401 0.4540 +7508 10445 0.4370 +7508 10537 0.4450 +7508 10920 0.5070 +7508 10973 0.5490 +7508 10980 0.5230 +7508 10987 0.5330 +7508 11073 0.7620 +7508 11198 0.7360 +7508 23028 0.9020 +7508 23186 0.9010 +7508 27030 0.6520 +7508 28992 0.6180 +7508 29844 0.4110 +7508 29935 0.6910 +7508 29978 0.5690 +7508 29979 0.5790 +7508 50613 0.4140 +7508 50813 0.5040 +7508 51008 0.5460 +7508 51138 0.5070 +7508 51317 0.9150 +7508 51455 0.5300 +7508 51750 0.4250 +7508 54617 0.5050 +7508 54778 0.6740 +7508 54891 0.4160 +7508 55135 0.4910 +7508 55215 0.5550 +7508 55636 0.4190 +7508 55768 0.5690 +7508 56852 0.6250 +7508 56893 0.4400 +7508 56949 0.5450 +7508 57654 0.4630 +7508 57697 0.4190 +7508 64210 0.5590 +7508 64421 0.9110 +7508 64708 0.5080 +7508 79728 0.5880 +7508 79829 0.6010 +7508 79840 0.9180 +7508 79913 0.4690 +7508 79968 0.7530 +7508 80198 0.4430 +7508 81847 0.7440 +7508 83444 0.4480 +7508 83990 0.5370 +7508 84164 0.5490 +7508 84993 0.4040 +7508 91419 0.9000 +7508 92552 0.4290 +7508 93973 0.4330 +7508 125150 0.9000 +7508 125476 0.5080 +7508 126074 0.9000 +7508 143630 0.4090 +7508 146325 0.4420 +7508 166348 0.4410 +7508 200558 0.8240 +7508 283899 0.4050 +7508 286204 0.6060 +7508 286257 0.9110 +7508 339834 0.4130 +7508 404672 0.6830 +7508 474343 0.4200 +7508 728340 0.5570 +7508 100533467 0.4600 +7508 105375355 0.5400 +7511 7840 0.5060 +7511 9520 0.4670 +7511 9622 0.5390 +7511 10072 0.4750 +7511 10244 0.4900 +7511 23549 0.5140 +7511 25821 0.4210 +7511 25904 0.4850 +7511 29958 0.5300 +7511 51056 0.9590 +7511 51268 0.4160 +7511 51382 0.4610 +7511 51534 0.4250 +7511 51752 0.4790 +7511 55012 0.4120 +7511 55066 0.4220 +7511 57019 0.4370 +7511 63929 0.8910 +7511 64167 0.4580 +7511 64180 0.4010 +7511 81491 0.4270 +7511 84923 0.6350 +7511 93624 0.4530 +7511 114792 0.4740 +7511 123872 0.4530 +7511 133957 0.5510 +7511 206338 0.4190 +7511 261726 0.4020 +7511 474343 0.4200 +7512 7840 0.4360 +7512 8000 0.4480 +7512 8573 0.5270 +7512 8825 0.4400 +7512 8875 0.4650 +7512 8876 0.4720 +7512 9520 0.4510 +7512 9546 0.7660 +7512 9622 0.5410 +7512 9815 0.4490 +7512 10232 0.4700 +7512 10942 0.4310 +7512 22854 0.4240 +7512 23549 0.4660 +7512 23621 0.4930 +7512 23627 0.4430 +7512 27076 0.5550 +7512 29958 0.4190 +7512 51056 0.8990 +7512 51268 0.4420 +7512 54517 0.4360 +7512 55066 0.4110 +7512 57576 0.4970 +7512 58530 0.4090 +7512 59272 0.9550 +7512 63929 0.9160 +7512 64174 0.4140 +7512 64180 0.4260 +7512 64506 0.5200 +7512 79983 0.4360 +7512 80328 0.4110 +7512 80740 0.4040 +7512 84628 0.4360 +7512 116372 0.4200 +7512 117154 0.4730 +7512 123872 0.4090 +7512 130576 0.4160 +7512 135228 0.4570 +7512 137797 0.4480 +7512 147719 0.4010 +7512 154064 0.4110 +7512 257194 0.4170 +7512 284348 0.4010 +7512 338328 0.4030 +7512 353091 0.4110 +7512 360226 0.4310 +7512 390243 0.4050 +7514 7533 0.5310 +7514 7534 0.8620 +7514 7756 0.4110 +7514 7874 0.4420 +7514 7913 0.4580 +7514 7919 0.7020 +7514 7975 0.5410 +7514 8021 0.9990 +7514 8087 0.4740 +7514 8106 0.4240 +7514 8125 0.9740 +7514 8148 0.4680 +7514 8204 0.6260 +7514 8290 0.6060 +7514 8312 0.4760 +7514 8356 0.6140 +7514 8451 0.5510 +7514 8480 0.7840 +7514 8498 0.9660 +7514 8517 0.5930 +7514 8607 0.4850 +7514 8655 0.4890 +7514 8663 0.6150 +7514 8741 0.8000 +7514 8841 0.6270 +7514 8886 0.4990 +7514 8888 0.4180 +7514 8907 0.4590 +7514 9097 0.5480 +7514 9133 0.5300 +7514 9179 0.4250 +7514 9184 0.6370 +7514 9200 0.6850 +7514 9203 0.4410 +7514 9221 0.4980 +7514 9493 0.4150 +7514 9513 0.4070 +7514 9631 0.7690 +7514 9670 0.4570 +7514 9688 0.7120 +7514 9700 0.5540 +7514 9775 0.4730 +7514 9782 0.6840 +7514 9792 0.6130 +7514 9793 0.5330 +7514 9818 0.4450 +7514 9939 0.4300 +7514 9972 0.8940 +7514 9987 0.4150 +7514 10013 0.4990 +7514 10014 0.6720 +7514 10053 0.4230 +7514 10073 0.9990 +7514 10075 0.4760 +7514 10128 0.9380 +7514 10146 0.5060 +7514 10189 0.6170 +7514 10204 0.8160 +7514 10212 0.5040 +7514 10236 0.5530 +7514 10294 0.4930 +7514 10318 0.4690 +7514 10413 0.7880 +7514 10419 0.5400 +7514 10432 0.6010 +7514 10482 0.9240 +7514 10526 0.7770 +7514 10527 0.8280 +7514 10541 0.8350 +7514 10574 0.4120 +7514 10575 0.6400 +7514 10606 0.4030 +7514 10608 0.5650 +7514 10657 0.5320 +7514 10694 0.4540 +7514 10726 0.8420 +7514 10762 0.7850 +7514 10982 0.5610 +7514 10988 0.4430 +7514 10989 0.5740 +7514 11011 0.5220 +7514 11097 0.9660 +7514 11168 0.4610 +7514 11198 0.4420 +7514 11260 0.9530 +7514 11321 0.5370 +7514 11335 0.4500 +7514 11338 0.4360 +7514 22803 0.5630 +7514 22877 0.7020 +7514 22916 0.7740 +7514 22948 0.4950 +7514 23019 0.4870 +7514 23039 0.8790 +7514 23165 0.6270 +7514 23214 0.6510 +7514 23223 0.6310 +7514 23225 0.4970 +7514 23244 0.4340 +7514 23279 0.7080 +7514 23283 0.5010 +7514 23327 0.6280 +7514 23361 0.5620 +7514 23369 0.4620 +7514 23405 0.6440 +7514 23411 0.5080 +7514 23435 0.7470 +7514 23476 0.4480 +7514 23534 0.7640 +7514 23560 0.4940 +7514 23633 0.6000 +7514 23636 0.8690 +7514 25793 0.5850 +7514 25865 0.4190 +7514 25885 0.5390 +7514 26040 0.4650 +7514 26227 0.7860 +7514 26523 0.5890 +7514 26953 0.5740 +7514 26986 0.5810 +7514 27161 0.7670 +7514 27327 0.5830 +7514 27430 0.4500 +7514 27436 0.5670 +7514 28987 0.5000 +7514 29102 0.6320 +7514 29107 0.8490 +7514 29118 0.5200 +7514 29889 0.5640 +7514 29968 0.4590 +7514 30000 0.7060 +7514 51068 0.9960 +7514 51085 0.6500 +7514 51144 0.4190 +7514 51154 0.5240 +7514 51184 0.4110 +7514 51187 0.4450 +7514 51194 0.6460 +7514 51366 0.6050 +7514 51593 0.6690 +7514 51602 0.4030 +7514 51684 0.4290 +7514 51710 0.5640 +7514 51808 0.9880 +7514 53371 0.7470 +7514 53981 0.4820 +7514 54433 0.4520 +7514 54464 0.5410 +7514 54487 0.5110 +7514 54957 0.6310 +7514 55143 0.6420 +7514 55294 0.5540 +7514 55308 0.6500 +7514 55341 0.7750 +7514 55505 0.4200 +7514 55705 0.8030 +7514 55745 0.4470 +7514 55746 0.6680 +7514 55759 0.5560 +7514 55781 0.7300 +7514 55832 0.6100 +7514 55975 0.4650 +7514 56000 0.9510 +7514 56001 0.5360 +7514 56902 0.5620 +7514 57062 0.5790 +7514 57122 0.8080 +7514 57154 0.8300 +7514 57187 0.4520 +7514 57470 0.4380 +7514 57510 0.7520 +7514 57576 0.5570 +7514 57620 0.4330 +7514 57679 0.4880 +7514 57696 0.4330 +7514 60491 0.5270 +7514 64328 0.9040 +7514 64750 0.7190 +7514 64794 0.4040 +7514 64901 0.6470 +7514 65264 0.5070 +7514 79443 0.4300 +7514 79711 0.7140 +7514 79720 0.5910 +7514 79902 0.4220 +7514 80315 0.4310 +7514 80818 0.5600 +7514 81624 0.4700 +7514 84220 0.7380 +7514 84268 0.6060 +7514 84823 0.4090 +7514 84876 0.4120 +7514 84896 0.4170 +7514 84946 0.9110 +7514 89857 0.4800 +7514 90459 0.4180 +7514 92552 0.4560 +7514 96764 0.4930 +7514 115560 0.5620 +7514 116840 0.4290 +7514 126820 0.7250 +7514 133482 0.4200 +7514 148266 0.5670 +7514 166378 0.4740 +7514 171023 0.4480 +7514 201562 0.6490 +7514 203068 0.4670 +7514 221421 0.4220 +7514 266743 0.8250 +7514 283383 0.8570 +7514 284390 0.5610 +7514 340542 0.5230 +7514 348995 0.4090 +7514 402569 0.5180 +7514 440093 0.6050 +7514 440686 0.6060 +7514 653489 0.7880 +7514 653604 0.6120 +7514 727851 0.4820 +7514 728343 0.5320 +7514 729540 0.7380 +7514 729857 0.7830 +7514 100526737 0.5010 +7514 102723407 0.4180 +7515 7516 0.7480 +7515 7517 0.9110 +7515 7518 0.9400 +7515 7520 0.9200 +7515 7874 0.4890 +7515 7913 0.4080 +7515 8241 0.4100 +7515 8361 0.4160 +7515 8438 0.4020 +7515 8450 0.4240 +7515 8451 0.5220 +7515 8467 0.6250 +7515 8505 0.7870 +7515 8906 0.4330 +7515 8914 0.4060 +7515 8930 0.4750 +7515 9156 0.7420 +7515 9184 0.5960 +7515 9310 0.5800 +7515 9354 0.4950 +7515 9400 0.4280 +7515 9401 0.6390 +7515 9411 0.4770 +7515 9557 0.8850 +7515 9656 0.7190 +7515 9716 0.4210 +7515 9937 0.4090 +7515 9978 0.4840 +7515 10038 0.9940 +7515 10039 0.6140 +7515 10111 0.7570 +7515 10277 0.4240 +7515 10309 0.4210 +7515 10450 0.4330 +7515 10459 0.4730 +7515 10550 0.5690 +7515 10714 0.6070 +7515 10721 0.7500 +7515 11073 0.6860 +7515 11198 0.5580 +7515 11200 0.6960 +7515 11201 0.4770 +7515 11284 0.9990 +7515 22976 0.4010 +7515 23028 0.4600 +7515 23304 0.6350 +7515 23411 0.4750 +7515 23476 0.6620 +7515 23583 0.6290 +7515 23640 0.4570 +7515 25788 0.4350 +7515 27030 0.5960 +7515 27301 0.5960 +7515 27339 0.4900 +7515 27343 0.8270 +7515 27434 0.7350 +7515 28992 0.4140 +7515 51426 0.5910 +7515 51455 0.6250 +7515 54107 0.4910 +7515 54790 0.5090 +7515 54840 0.9990 +7515 54936 0.4810 +7515 54969 0.4060 +7515 55170 0.4260 +7515 55215 0.5860 +7515 55247 0.6640 +7515 55743 0.7700 +7515 55775 0.9890 +7515 56655 0.4980 +7515 56852 0.6250 +7515 56949 0.7060 +7515 57461 0.4110 +7515 57654 0.5540 +7515 57697 0.4230 +7515 57804 0.4190 +7515 64421 0.6250 +7515 79184 0.4400 +7515 79661 0.9840 +7515 79728 0.6290 +7515 79840 0.7580 +7515 80198 0.5210 +7515 81847 0.6950 +7515 81931 0.4260 +7515 83990 0.4050 +7515 84126 0.4460 +7515 91603 0.4470 +7515 165918 0.4720 +7515 197131 0.4910 +7515 200424 0.5200 +7515 200558 0.9990 +7515 221443 0.5860 +7515 252969 0.9930 +7515 286257 0.6090 +7515 378708 0.4560 +7515 404672 0.5670 +7515 100533467 0.8290 +7516 7517 0.9990 +7516 7518 0.6630 +7516 7520 0.6880 +7516 7979 0.6070 +7516 8438 0.6340 +7516 9156 0.8090 +7516 9401 0.4670 +7516 9700 0.4310 +7516 10111 0.5900 +7516 10123 0.6660 +7516 10459 0.4610 +7516 10524 0.5340 +7516 10635 0.7200 +7516 10714 0.5060 +7516 10721 0.4170 +7516 11073 0.6670 +7516 11144 0.6650 +7516 11200 0.7570 +7516 23514 0.5970 +7516 23594 0.4320 +7516 25788 0.6240 +7516 27030 0.4830 +7516 29089 0.4650 +7516 51426 0.4360 +7516 51750 0.6490 +7516 54107 0.4050 +7516 55120 0.4980 +7516 55159 0.5550 +7516 55215 0.5860 +7516 55247 0.4290 +7516 57697 0.7510 +7516 60561 0.5750 +7516 64421 0.4010 +7516 79133 0.6850 +7516 79728 0.8560 +7516 80010 0.6790 +7516 80198 0.7740 +7516 83695 0.5100 +7516 83990 0.8040 +7516 84057 0.4990 +7516 84126 0.5740 +7516 84142 0.6600 +7516 84464 0.7750 +7516 84515 0.5740 +7516 91442 0.4650 +7516 93426 0.4890 +7516 113510 0.5370 +7516 116028 0.6290 +7516 119392 0.9110 +7516 126074 0.4890 +7516 144715 0.5850 +7516 146956 0.7440 +7516 197342 0.5990 +7516 220134 0.4760 +7516 253714 0.4260 +7516 254528 0.4580 +7516 348654 0.7380 +7516 548593 0.6880 +7516 100533467 0.5350 +7517 7518 0.7980 +7517 7520 0.7600 +7517 7979 0.7790 +7517 8438 0.7580 +7517 8565 0.4020 +7517 8940 0.6490 +7517 9025 0.4090 +7517 9156 0.8800 +7517 9400 0.7180 +7517 9401 0.9050 +7517 9577 0.5260 +7517 9656 0.6970 +7517 9817 0.4120 +7517 9837 0.4010 +7517 10111 0.7060 +7517 10459 0.6090 +7517 10524 0.6020 +7517 10635 0.6930 +7517 10714 0.5740 +7517 10721 0.4690 +7517 11073 0.4150 +7517 11144 0.6920 +7517 11169 0.4030 +7517 11200 0.8090 +7517 11284 0.5010 +7517 22976 0.6410 +7517 23137 0.4770 +7517 23368 0.4380 +7517 23514 0.6280 +7517 23626 0.6810 +7517 25788 0.7310 +7517 26277 0.4950 +7517 27030 0.4890 +7517 27343 0.4190 +7517 29100 0.4500 +7517 50485 0.4870 +7517 51426 0.6090 +7517 51455 0.6190 +7517 51750 0.7070 +7517 54107 0.4690 +7517 54962 0.4340 +7517 55120 0.6690 +7517 55215 0.7010 +7517 55247 0.4600 +7517 55252 0.5780 +7517 55775 0.4160 +7517 56655 0.5350 +7517 56852 0.6890 +7517 57082 0.5810 +7517 57697 0.8330 +7517 63922 0.4340 +7517 64785 0.4460 +7517 64858 0.5660 +7517 79038 0.4640 +7517 79728 0.9100 +7517 79840 0.4410 +7517 79915 0.6100 +7517 80010 0.7870 +7517 80119 0.4410 +7517 80198 0.8780 +7517 83990 0.7530 +7517 84057 0.7270 +7517 84464 0.6860 +7517 84893 0.9120 +7517 90338 0.5140 +7517 91442 0.4710 +7517 113510 0.4210 +7517 116028 0.7080 +7517 119392 0.9170 +7517 126074 0.7870 +7517 146956 0.7530 +7517 157777 0.4300 +7517 164045 0.6250 +7517 165918 0.4930 +7517 197342 0.5840 +7517 254528 0.5310 +7517 348654 0.7470 +7517 548593 0.7090 +7517 100533467 0.7280 +7518 7520 0.9990 +7518 8554 0.4860 +7518 9025 0.5750 +7518 9063 0.4380 +7518 9156 0.7290 +7518 9656 0.6490 +7518 10038 0.5020 +7518 10039 0.5010 +7518 10283 0.4750 +7518 10459 0.4030 +7518 10721 0.5530 +7518 10973 0.5520 +7518 11073 0.4350 +7518 11200 0.5820 +7518 11284 0.9930 +7518 22919 0.9020 +7518 22976 0.5790 +7518 23028 0.9100 +7518 23049 0.5000 +7518 23186 0.9030 +7518 23586 0.4610 +7518 25788 0.5180 +7518 25900 0.9940 +7518 27030 0.6980 +7518 27343 0.9490 +7518 27434 0.9180 +7518 51008 0.5470 +7518 51317 0.9030 +7518 51455 0.4280 +7518 51567 0.4250 +7518 51720 0.4220 +7518 54840 0.9980 +7518 55215 0.7050 +7518 55294 0.6010 +7518 55743 0.6310 +7518 55745 0.4440 +7518 55775 0.6140 +7518 56852 0.4360 +7518 57379 0.4140 +7518 57697 0.4360 +7518 64421 0.9830 +7518 78996 0.6850 +7518 79728 0.7490 +7518 79840 0.9990 +7518 79991 0.4060 +7518 80198 0.4460 +7518 84126 0.4510 +7518 84164 0.5420 +7518 91419 0.9140 +7518 118461 0.4390 +7518 125150 0.9000 +7518 126074 0.9000 +7518 126917 0.6820 +7518 164832 0.4770 +7518 165918 0.5730 +7518 200558 0.9990 +7518 286257 0.9990 +7518 100423062 0.5630 +7518 100533467 0.4730 +7518 102723407 0.7410 +7518 105375355 0.5400 +7520 7528 0.4250 +7520 7874 0.4150 +7520 7919 0.4830 +7520 8161 0.7790 +7520 8237 0.6010 +7520 8290 0.7540 +7520 8318 0.5260 +7520 8329 0.4120 +7520 8337 0.5490 +7520 8338 0.5420 +7520 8340 0.6340 +7520 8341 0.6330 +7520 8342 0.6330 +7520 8345 0.6330 +7520 8347 0.6340 +7520 8348 0.6460 +7520 8349 0.7510 +7520 8350 0.4560 +7520 8356 0.6990 +7520 8361 0.9080 +7520 8369 0.6440 +7520 8438 0.4550 +7520 8467 0.7700 +7520 8505 0.5350 +7520 8565 0.6250 +7520 8602 0.7270 +7520 8607 0.4060 +7520 8850 0.4170 +7520 8924 0.5230 +7520 8970 0.6330 +7520 9025 0.8410 +7520 9126 0.4380 +7520 9136 0.5990 +7520 9156 0.9220 +7520 9188 0.5560 +7520 9212 0.6430 +7520 9277 0.5510 +7520 9320 0.5720 +7520 9400 0.5080 +7520 9401 0.7080 +7520 9493 0.4890 +7520 9555 0.5140 +7520 9557 0.6450 +7520 9577 0.6270 +7520 9612 0.4490 +7520 9656 0.8870 +7520 9688 0.4010 +7520 9724 0.5450 +7520 9782 0.7040 +7520 9887 0.4860 +7520 9937 0.4750 +7520 10036 0.4520 +7520 10038 0.8280 +7520 10039 0.6060 +7520 10111 0.8060 +7520 10155 0.4830 +7520 10186 0.4350 +7520 10199 0.5680 +7520 10236 0.4630 +7520 10432 0.8720 +7520 10436 0.5800 +7520 10459 0.5940 +7520 10521 0.7190 +7520 10524 0.7060 +7520 10528 0.6800 +7520 10551 0.5100 +7520 10574 0.4020 +7520 10606 0.4010 +7520 10614 0.5970 +7520 10657 0.4080 +7520 10721 0.6390 +7520 10813 0.5520 +7520 10856 0.5880 +7520 10885 0.5520 +7520 10951 0.4230 +7520 10973 0.5950 +7520 11073 0.5270 +7520 11103 0.5540 +7520 11177 0.6470 +7520 11198 0.6650 +7520 11200 0.8550 +7520 11201 0.5540 +7520 11284 0.8000 +7520 11338 0.4880 +7520 22909 0.4390 +7520 22918 0.4160 +7520 22933 0.6170 +7520 22948 0.4180 +7520 22976 0.7570 +7520 22984 0.5830 +7520 23020 0.5840 +7520 23028 0.9210 +7520 23049 0.5130 +7520 23054 0.5630 +7520 23137 0.5890 +7520 23186 0.9090 +7520 23293 0.5450 +7520 23381 0.4840 +7520 23411 0.5790 +7520 23435 0.5520 +7520 23450 0.5110 +7520 23468 0.4060 +7520 23476 0.6030 +7520 23512 0.4370 +7520 23595 0.4430 +7520 23626 0.5720 +7520 25788 0.6930 +7520 25879 0.5520 +7520 25900 0.6410 +7520 25913 0.8200 +7520 25942 0.4400 +7520 25983 0.5910 +7520 26168 0.6180 +7520 26277 0.8400 +7520 27030 0.6930 +7520 27042 0.5500 +7520 27316 0.4130 +7520 27340 0.7390 +7520 27343 0.8870 +7520 27434 0.8280 +7520 28992 0.4140 +7520 29086 0.6590 +7520 29089 0.4290 +7520 29110 0.5160 +7520 29117 0.4100 +7520 51008 0.5660 +7520 51077 0.5400 +7520 51096 0.5780 +7520 51118 0.5520 +7520 51317 0.9100 +7520 51341 0.5370 +7520 51455 0.6480 +7520 51548 0.7000 +7520 51567 0.5880 +7520 51574 0.5290 +7520 51588 0.7370 +7520 51602 0.5950 +7520 51654 0.6740 +7520 51720 0.7080 +7520 51750 0.5070 +7520 54145 0.6360 +7520 54386 0.9340 +7520 54537 0.4550 +7520 54606 0.5330 +7520 54840 0.8020 +7520 54841 0.4320 +7520 54932 0.4890 +7520 55023 0.5260 +7520 55127 0.6040 +7520 55183 0.5860 +7520 55215 0.7270 +7520 55218 0.4160 +7520 55247 0.4830 +7520 55269 0.5300 +7520 55272 0.5520 +7520 55355 0.4220 +7520 55658 0.5180 +7520 55775 0.7710 +7520 55813 0.5620 +7520 56852 0.4330 +7520 56916 0.4410 +7520 57050 0.5930 +7520 57332 0.6160 +7520 57379 0.4220 +7520 57697 0.5670 +7520 64421 0.9980 +7520 64858 0.4320 +7520 65083 0.5520 +7520 78996 0.8790 +7520 79050 0.5670 +7520 79184 0.6090 +7520 79677 0.5190 +7520 79728 0.7690 +7520 79782 0.6200 +7520 79840 0.9990 +7520 79954 0.5830 +7520 79968 0.7360 +7520 79991 0.9140 +7520 80010 0.4650 +7520 80119 0.6610 +7520 80155 0.6650 +7520 80169 0.7830 +7520 80198 0.7770 +7520 81611 0.4470 +7520 81847 0.4050 +7520 83879 0.4690 +7520 83990 0.4700 +7520 84126 0.8400 +7520 84142 0.5860 +7520 84164 0.5420 +7520 84294 0.5400 +7520 84464 0.4440 +7520 84916 0.5810 +7520 85236 0.6340 +7520 91419 0.9130 +7520 91442 0.4460 +7520 92691 0.4790 +7520 92797 0.4240 +7520 92856 0.5460 +7520 115426 0.5140 +7520 125150 0.9000 +7520 126074 0.9000 +7520 128312 0.6340 +7520 139212 0.4680 +7520 143570 0.7740 +7520 165918 0.7760 +7520 200558 0.9990 +7520 221443 0.4750 +7520 255626 0.6320 +7520 286257 0.9970 +7520 340061 0.4660 +7520 345630 0.5940 +7520 348654 0.5680 +7520 440093 0.5290 +7520 440686 0.5290 +7520 548593 0.4720 +7520 653604 0.5370 +7520 100134934 0.7440 +7520 100526737 0.7400 +7520 100532731 0.4910 +7520 100533467 0.6710 +7520 102723407 0.6280 +7520 105375355 0.5400 +7525 8440 0.4030 +7525 8503 0.7280 +7525 8563 0.8000 +7525 9021 0.4410 +7525 9368 0.4090 +7525 9402 0.8210 +7525 9475 0.4490 +7525 9542 0.4410 +7525 9564 0.4480 +7525 9846 0.5140 +7525 10000 0.5900 +7525 10211 0.5970 +7525 10413 0.9870 +7525 10451 0.5460 +7525 10603 0.5340 +7525 10657 0.5960 +7525 11140 0.4910 +7525 23371 0.4400 +7525 23624 0.9240 +7525 25791 0.5280 +7525 29760 0.5130 +7525 51206 0.4180 +7525 51659 0.4030 +7525 54443 0.4880 +7525 55556 0.4440 +7525 64135 0.4870 +7525 64866 0.5170 +7525 94025 0.4470 +7525 139341 0.4490 +7525 139716 0.5070 +7525 145957 0.4110 +7525 146433 0.4990 +7525 155038 0.4150 +7525 158471 0.4350 +7525 390714 0.4480 +7525 401397 0.4460 +7525 653499 0.4200 +7525 100506658 0.7030 +7528 7702 0.5170 +7528 7703 0.9410 +7528 7704 0.4140 +7528 7750 0.4400 +7528 8161 0.4330 +7528 8202 0.8550 +7528 8243 0.6430 +7528 8290 0.7900 +7528 8295 0.9320 +7528 8314 0.8700 +7528 8331 0.5310 +7528 8334 0.5350 +7528 8337 0.7070 +7528 8338 0.7050 +7528 8340 0.5710 +7528 8341 0.5700 +7528 8342 0.6260 +7528 8345 0.6310 +7528 8347 0.5710 +7528 8348 0.5780 +7528 8349 0.7790 +7528 8356 0.8870 +7528 8361 0.8130 +7528 8369 0.4090 +7528 8450 0.4410 +7528 8451 0.4730 +7528 8467 0.6360 +7528 8473 0.8290 +7528 8533 0.4090 +7528 8535 0.7280 +7528 8554 0.4450 +7528 8607 0.9900 +7528 8726 0.8920 +7528 8815 0.6700 +7528 8819 0.8870 +7528 8841 0.8850 +7528 8850 0.6180 +7528 8970 0.5850 +7528 8972 0.4340 +7528 9101 0.4360 +7528 9126 0.6110 +7528 9219 0.4920 +7528 9318 0.4320 +7528 9427 0.4240 +7528 9611 0.9310 +7528 9656 0.4660 +7528 9739 0.5980 +7528 9759 0.9470 +7528 9869 0.6160 +7528 9898 0.6060 +7528 9978 0.4540 +7528 10014 0.6610 +7528 10036 0.4280 +7528 10051 0.4030 +7528 10078 0.4020 +7528 10138 0.9790 +7528 10155 0.8320 +7528 10336 0.6550 +7528 10389 0.6220 +7528 10428 0.6220 +7528 10445 0.9660 +7528 10467 0.7270 +7528 10524 0.9380 +7528 10614 0.4190 +7528 10664 0.9910 +7528 10735 0.6120 +7528 10847 0.6550 +7528 10856 0.9880 +7528 10891 0.9950 +7528 10902 0.9090 +7528 10919 0.7590 +7528 10920 0.4080 +7528 10980 0.4250 +7528 10987 0.5140 +7528 11091 0.7430 +7528 11176 0.4210 +7528 11335 0.6400 +7528 22806 0.4690 +7528 22823 0.5460 +7528 22926 0.8120 +7528 22933 0.5060 +7528 23028 0.4730 +7528 23047 0.4210 +7528 23186 0.4690 +7528 23244 0.4800 +7528 23309 0.5290 +7528 23314 0.4790 +7528 23378 0.4210 +7528 23394 0.4600 +7528 23405 0.7060 +7528 23411 0.9360 +7528 23429 0.9980 +7528 23466 0.6360 +7528 23476 0.5910 +7528 23492 0.7040 +7528 23512 0.9930 +7528 23619 0.4400 +7528 25836 0.5570 +7528 25942 0.8460 +7528 26013 0.4690 +7528 26135 0.4480 +7528 26147 0.4930 +7528 27161 0.7960 +7528 29844 0.9720 +7528 29947 0.6290 +7528 50813 0.4050 +7528 50943 0.5360 +7528 51138 0.4080 +7528 51341 0.4660 +7528 51377 0.9900 +7528 51460 0.7960 +7528 51567 0.4720 +7528 54145 0.6360 +7528 54496 0.5180 +7528 54556 0.9130 +7528 54617 0.9920 +7528 54797 0.5300 +7528 54799 0.9730 +7528 54891 0.9250 +7528 55153 0.4490 +7528 55178 0.5840 +7528 55249 0.8230 +7528 55252 0.6780 +7528 55294 0.4270 +7528 55766 0.5320 +7528 55869 0.7540 +7528 55929 0.6080 +7528 56302 0.4200 +7528 56647 0.7380 +7528 57332 0.7810 +7528 57379 0.5050 +7528 57521 0.5830 +7528 57591 0.4950 +7528 57634 0.9250 +7528 57680 0.6760 +7528 57713 0.5740 +7528 58517 0.7400 +7528 63876 0.4170 +7528 63893 0.4370 +7528 64431 0.5780 +7528 64708 0.4100 +7528 64750 0.6380 +7528 64919 0.6150 +7528 79660 0.4450 +7528 79913 0.9840 +7528 79923 0.7750 +7528 80012 0.5810 +7528 80335 0.4020 +7528 80816 0.6000 +7528 81611 0.9060 +7528 83444 0.9620 +7528 83746 0.6240 +7528 84108 0.6620 +7528 84333 0.6350 +7528 84450 0.4750 +7528 84678 0.5670 +7528 84733 0.8060 +7528 84759 0.7010 +7528 84823 0.4010 +7528 84875 0.4430 +7528 85236 0.5810 +7528 93973 0.9860 +7528 94239 0.6040 +7528 121536 0.7330 +7528 125476 0.9870 +7528 128312 0.5710 +7528 129303 0.4080 +7528 132625 0.7020 +7528 133522 0.5840 +7528 147912 0.6040 +7528 149076 0.4100 +7528 171023 0.8330 +7528 221937 0.7860 +7528 255626 0.5690 +7528 283899 0.9840 +7528 284058 0.4990 +7528 404281 0.7220 +7528 440093 0.7590 +7528 440686 0.7590 +7528 448831 0.5780 +7528 474382 0.5310 +7528 653604 0.8770 +7528 100170841 0.4120 +7528 100288687 0.5880 +7528 100532731 0.8830 +7528 102723407 0.4120 +7529 7531 0.9790 +7529 7532 0.9530 +7529 7533 0.9700 +7529 7534 0.9920 +7529 7538 0.8950 +7529 7874 0.4820 +7529 7942 0.8270 +7529 8036 0.5340 +7529 8087 0.4400 +7529 8243 0.4580 +7529 8349 0.4700 +7529 8350 0.5800 +7529 8471 0.4450 +7529 8496 0.4130 +7529 8535 0.5100 +7529 8546 0.4150 +7529 8612 0.4190 +7529 8613 0.4090 +7529 8626 0.5040 +7529 8649 0.5420 +7529 8660 0.7670 +7529 8767 0.4040 +7529 8805 0.4080 +7529 8826 0.6250 +7529 8844 0.7340 +7529 8874 0.4990 +7529 9020 0.4110 +7529 9024 0.4420 +7529 9061 0.4200 +7529 9064 0.4510 +7529 9101 0.7860 +7529 9113 0.6280 +7529 9135 0.5280 +7529 9156 0.6720 +7529 9240 0.4780 +7529 9253 0.4160 +7529 9276 0.4740 +7529 9414 0.4730 +7529 9444 0.4950 +7529 9462 0.4510 +7529 9493 0.6700 +7529 9601 0.4090 +7529 9610 0.6840 +7529 9644 0.4080 +7529 9702 0.4390 +7529 9748 0.4840 +7529 9759 0.8230 +7529 9846 0.4670 +7529 9882 0.7240 +7529 10014 0.7620 +7529 10018 0.5980 +7529 10036 0.5210 +7529 10087 0.4310 +7529 10096 0.5340 +7529 10097 0.4860 +7529 10109 0.4410 +7529 10142 0.4480 +7529 10144 0.4060 +7529 10190 0.8290 +7529 10256 0.5040 +7529 10260 0.4290 +7529 10298 0.4890 +7529 10325 0.5680 +7529 10376 0.5390 +7529 10383 0.5850 +7529 10411 0.5000 +7529 10413 0.9830 +7529 10420 0.5260 +7529 10458 0.4460 +7529 10487 0.4110 +7529 10533 0.4890 +7529 10542 0.5130 +7529 10551 0.5100 +7529 10574 0.4530 +7529 10670 0.5210 +7529 10687 0.4650 +7529 10746 0.7490 +7529 10749 0.4190 +7529 10818 0.4990 +7529 10827 0.4050 +7529 10890 0.6210 +7529 10935 0.4750 +7529 10971 0.9780 +7529 11069 0.5020 +7529 11181 0.4600 +7529 11214 0.7960 +7529 11315 0.4010 +7529 11346 0.6610 +7529 22808 0.4850 +7529 22841 0.4710 +7529 22864 0.4760 +7529 22866 0.5090 +7529 22906 0.5050 +7529 22924 0.4980 +7529 22933 0.5590 +7529 23095 0.6010 +7529 23108 0.7050 +7529 23136 0.4940 +7529 23139 0.4560 +7529 23164 0.5800 +7529 23216 0.7000 +7529 23294 0.4390 +7529 23303 0.7050 +7529 23313 0.6070 +7529 23327 0.7110 +7529 23332 0.4230 +7529 23373 0.4280 +7529 23380 0.4610 +7529 23387 0.4820 +7529 23426 0.4380 +7529 23518 0.4320 +7529 23604 0.4580 +7529 23677 0.5860 +7529 25937 0.9200 +7529 25962 0.4350 +7529 26058 0.6110 +7529 26130 0.7010 +7529 26524 0.5520 +7529 26999 0.4210 +7529 27044 0.5450 +7529 28956 0.5340 +7529 29119 0.9000 +7529 29127 0.4010 +7529 51085 0.9160 +7529 51305 0.4050 +7529 51421 0.6530 +7529 51503 0.4330 +7529 51552 0.6850 +7529 51564 0.6030 +7529 51741 0.4010 +7529 54101 0.4310 +7529 54434 0.8150 +7529 54461 0.4360 +7529 54518 0.5400 +7529 54541 0.7800 +7529 54756 0.4990 +7529 54845 0.4070 +7529 55004 0.5590 +7529 55095 0.6180 +7529 55103 0.6130 +7529 55109 0.4260 +7529 55122 0.4770 +7529 55177 0.8440 +7529 55233 0.5460 +7529 55611 0.5230 +7529 55667 0.4320 +7529 55750 0.4080 +7529 55835 0.4510 +7529 55893 0.5310 +7529 56288 0.5450 +7529 56829 0.4110 +7529 57085 0.4060 +7529 57095 0.4650 +7529 57498 0.5480 +7529 57521 0.5250 +7529 57522 0.4200 +7529 57619 0.4260 +7529 57679 0.4400 +7529 58504 0.4910 +7529 58528 0.5020 +7529 64121 0.5120 +7529 64223 0.5250 +7529 64599 0.5640 +7529 64784 0.4240 +7529 64837 0.4040 +7529 65125 0.4250 +7529 65220 0.4390 +7529 78999 0.4550 +7529 79705 0.4020 +7529 81565 0.6720 +7529 84206 0.4630 +7529 84335 0.7940 +7529 84451 0.5380 +7529 84790 0.4420 +7529 85440 0.5540 +7529 89796 0.4570 +7529 89953 0.4090 +7529 90102 0.4220 +7529 92597 0.5470 +7529 118472 0.4140 +7529 120892 0.8150 +7529 121278 0.6830 +7529 121441 0.4220 +7529 124739 0.6360 +7529 139818 0.4240 +7529 144100 0.4850 +7529 153129 0.5120 +7529 154796 0.5530 +7529 154810 0.5890 +7529 171024 0.5080 +7529 200186 0.6230 +7529 203068 0.4870 +7529 221937 0.5300 +7529 222658 0.5010 +7529 253260 0.6860 +7529 285527 0.4260 +7529 345651 0.4420 +7529 389541 0.5340 +7529 728378 0.7560 +7529 100132074 0.4150 +7531 7532 0.9880 +7531 7533 0.9480 +7531 7534 0.9980 +7531 7706 0.8650 +7531 7846 0.6520 +7531 7942 0.7780 +7531 8208 0.5280 +7531 8218 0.5630 +7531 8349 0.4940 +7531 8350 0.6080 +7531 8356 0.4750 +7531 8407 0.5010 +7531 8452 0.4890 +7531 8470 0.6470 +7531 8481 0.4380 +7531 8550 0.5340 +7531 8578 0.7900 +7531 8626 0.5000 +7531 8660 0.6770 +7531 8761 0.4740 +7531 8766 0.6360 +7531 8851 0.4580 +7531 9064 0.4280 +7531 9101 0.8030 +7531 9110 0.4950 +7531 9156 0.6710 +7531 9218 0.4220 +7531 9230 0.4440 +7531 9276 0.5980 +7531 9413 0.4410 +7531 9470 0.5110 +7531 9493 0.4750 +7531 9531 0.4010 +7531 9588 0.5410 +7531 9601 0.5810 +7531 9610 0.8410 +7531 9679 0.5950 +7531 9734 0.4520 +7531 9759 0.8510 +7531 9840 0.4180 +7531 9846 0.5970 +7531 9859 0.5910 +7531 9882 0.6870 +7531 10014 0.8030 +7531 10044 0.4460 +7531 10133 0.5000 +7531 10190 0.8520 +7531 10376 0.6400 +7531 10383 0.7370 +7531 10399 0.6200 +7531 10406 0.4680 +7531 10413 0.9770 +7531 10419 0.4070 +7531 10469 0.4610 +7531 10551 0.5100 +7531 10574 0.4040 +7531 10576 0.4560 +7531 10694 0.4040 +7531 10746 0.7460 +7531 10749 0.6300 +7531 10856 0.4900 +7531 10890 0.6010 +7531 10971 0.9840 +7531 11021 0.5350 +7531 11181 0.4200 +7531 11329 0.4530 +7531 22841 0.4580 +7531 22948 0.4410 +7531 22981 0.4430 +7531 22994 0.4140 +7531 23012 0.5280 +7531 23034 0.6950 +7531 23094 0.4610 +7531 23095 0.4460 +7531 23189 0.4300 +7531 23216 0.6210 +7531 23235 0.4850 +7531 23264 0.6510 +7531 23313 0.7150 +7531 23327 0.4210 +7531 23354 0.5040 +7531 23363 0.6720 +7531 23387 0.6470 +7531 23476 0.5050 +7531 23499 0.4540 +7531 23512 0.4170 +7531 23586 0.8160 +7531 23677 0.4810 +7531 23774 0.5530 +7531 25828 0.4200 +7531 25831 0.4250 +7531 25932 0.4110 +7531 25937 0.9850 +7531 25962 0.4320 +7531 26272 0.4360 +7531 26524 0.5110 +7531 27018 0.9360 +7531 27115 0.4420 +7531 27185 0.9460 +7531 28954 0.4020 +7531 29114 0.4660 +7531 29119 0.9030 +7531 29928 0.7970 +7531 50807 0.4050 +7531 51199 0.4010 +7531 51307 0.4850 +7531 51320 0.6790 +7531 51421 0.6250 +7531 51552 0.6010 +7531 51564 0.6610 +7531 51741 0.6230 +7531 51765 0.5580 +7531 51806 0.6130 +7531 54101 0.4440 +7531 54206 0.6730 +7531 54541 0.5210 +7531 54790 0.4200 +7531 54801 0.5210 +7531 54820 0.8860 +7531 54930 0.4990 +7531 55095 0.8100 +7531 55142 0.5310 +7531 55233 0.5440 +7531 55353 0.4120 +7531 55559 0.4990 +7531 55893 0.6140 +7531 56288 0.6680 +7531 56924 0.6390 +7531 57449 0.6350 +7531 57506 0.4350 +7531 57530 0.7190 +7531 57662 0.6020 +7531 57706 0.8310 +7531 57787 0.5210 +7531 60672 0.4050 +7531 64762 0.6510 +7531 64769 0.4580 +7531 79084 0.4160 +7531 79441 0.4990 +7531 79722 0.4370 +7531 79866 0.5010 +7531 80153 0.4380 +7531 81565 0.9650 +7531 84206 0.4640 +7531 84687 0.5250 +7531 84708 0.4690 +7531 84790 0.6050 +7531 85409 0.7320 +7531 85417 0.5360 +7531 89953 0.4040 +7531 90850 0.4390 +7531 91860 0.6060 +7531 92597 0.5560 +7531 93323 0.5320 +7531 115106 0.5080 +7531 117177 0.5760 +7531 120892 0.9010 +7531 121278 0.7840 +7531 122786 0.4800 +7531 124739 0.4600 +7531 144100 0.4860 +7531 147700 0.4220 +7531 148753 0.6930 +7531 150094 0.4300 +7531 154796 0.5670 +7531 154810 0.6180 +7531 159090 0.4200 +7531 162655 0.4870 +7531 163486 0.8000 +7531 163688 0.6060 +7531 167691 0.5850 +7531 200186 0.6040 +7531 203068 0.5520 +7531 221178 0.7720 +7531 221895 0.6370 +7531 253260 0.7030 +7531 283008 0.5530 +7531 284403 0.5400 +7531 286753 0.8080 +7531 340602 0.4480 +7531 342527 0.6010 +7531 348801 0.4260 +7531 727857 0.8070 +7531 728118 0.7840 +7531 728642 0.6330 +7531 729262 0.7880 +7531 100533467 0.4450 +7532 7533 0.9700 +7532 7534 0.9850 +7532 7846 0.5710 +7532 7874 0.4930 +7532 7942 0.9400 +7532 8239 0.5270 +7532 8350 0.5560 +7532 8535 0.4630 +7532 8556 0.4300 +7532 8626 0.5000 +7532 8650 0.5030 +7532 8737 0.4470 +7532 8766 0.6750 +7532 8826 0.5010 +7532 8844 0.4200 +7532 9020 0.4190 +7532 9064 0.4600 +7532 9101 0.5400 +7532 9156 0.5500 +7532 9181 0.5320 +7532 9253 0.5870 +7532 9343 0.4760 +7532 9462 0.4090 +7532 9493 0.8050 +7532 9531 0.4800 +7532 9589 0.4380 +7532 9601 0.4060 +7532 9610 0.5950 +7532 9759 0.9890 +7532 9846 0.5560 +7532 9863 0.6270 +7532 9882 0.6340 +7532 10014 0.7100 +7532 10094 0.4210 +7532 10096 0.4460 +7532 10133 0.5820 +7532 10190 0.8740 +7532 10298 0.4500 +7532 10376 0.5170 +7532 10383 0.4200 +7532 10413 0.9730 +7532 10458 0.4360 +7532 10514 0.4350 +7532 10687 0.4290 +7532 10746 0.6720 +7532 10749 0.5980 +7532 10890 0.6510 +7532 10971 0.9100 +7532 11181 0.4200 +7532 11214 0.6010 +7532 22841 0.4060 +7532 23091 0.4970 +7532 23095 0.5190 +7532 23136 0.4630 +7532 23191 0.5570 +7532 23216 0.6790 +7532 23294 0.4090 +7532 23313 0.6450 +7532 23327 0.6810 +7532 23332 0.4200 +7532 23354 0.5040 +7532 23677 0.5970 +7532 23774 0.5640 +7532 25828 0.4400 +7532 25932 0.4280 +7532 25937 0.9340 +7532 25942 0.4400 +7532 25962 0.6370 +7532 26058 0.4030 +7532 26524 0.4920 +7532 27332 0.4010 +7532 29119 0.9360 +7532 29127 0.4270 +7532 29890 0.4980 +7532 29896 0.5610 +7532 51307 0.6120 +7532 51552 0.6080 +7532 51741 0.4010 +7532 53635 0.4400 +7532 54101 0.4250 +7532 54541 0.5330 +7532 54790 0.4220 +7532 54801 0.5230 +7532 54930 0.4990 +7532 55095 0.5660 +7532 55103 0.4800 +7532 55142 0.5080 +7532 55177 0.4410 +7532 55559 0.4990 +7532 55835 0.4820 +7532 56288 0.4520 +7532 56924 0.4440 +7532 57521 0.5090 +7532 57695 0.4420 +7532 57721 0.4180 +7532 58157 0.4110 +7532 59269 0.4680 +7532 64135 0.4500 +7532 64783 0.4150 +7532 64837 0.4140 +7532 78999 0.4410 +7532 79109 0.4110 +7532 79441 0.4990 +7532 79705 0.4090 +7532 79722 0.4740 +7532 79866 0.4990 +7532 80153 0.5340 +7532 84335 0.6480 +7532 84451 0.4420 +7532 84790 0.4200 +7532 84955 0.6280 +7532 93323 0.5290 +7532 115106 0.4990 +7532 117177 0.5140 +7532 117178 0.4080 +7532 120892 0.9060 +7532 121278 0.6420 +7532 126393 0.8300 +7532 144100 0.4030 +7532 167691 0.4370 +7532 203068 0.4290 +7532 220988 0.4660 +7532 253260 0.4120 +7532 284403 0.5940 +7532 338567 0.4560 +7532 345651 0.4140 +7532 653145 0.6920 +7532 728642 0.5720 +7533 7534 0.9720 +7533 7846 0.4130 +7533 7874 0.4390 +7533 8239 0.4850 +7533 8535 0.4530 +7533 8626 0.5000 +7533 8650 0.8130 +7533 8660 0.4860 +7533 8936 0.4930 +7533 9064 0.5370 +7533 9156 0.6520 +7533 9181 0.7610 +7533 9253 0.5610 +7533 9493 0.6980 +7533 9610 0.6860 +7533 9627 0.4130 +7533 9699 0.6480 +7533 9759 0.7690 +7533 9790 0.6610 +7533 9846 0.4490 +7533 9882 0.7080 +7533 10014 0.6360 +7533 10093 0.4810 +7533 10094 0.4740 +7533 10096 0.5820 +7533 10097 0.6050 +7533 10109 0.4950 +7533 10171 0.6580 +7533 10190 0.8410 +7533 10260 0.4240 +7533 10298 0.4790 +7533 10376 0.4300 +7533 10413 0.9790 +7533 10458 0.5080 +7533 10497 0.4360 +7533 10575 0.5040 +7533 10687 0.4760 +7533 10746 0.4400 +7533 10749 0.4350 +7533 10890 0.5940 +7533 10971 0.9110 +7533 11181 0.4410 +7533 11228 0.4270 +7533 22841 0.4590 +7533 22954 0.5240 +7533 22999 0.7710 +7533 23025 0.4490 +7533 23031 0.4580 +7533 23095 0.6230 +7533 23122 0.4300 +7533 23139 0.4620 +7533 23189 0.6070 +7533 23191 0.5790 +7533 23216 0.7000 +7533 23313 0.4170 +7533 23327 0.9590 +7533 23332 0.4660 +7533 23373 0.4830 +7533 23380 0.4290 +7533 23387 0.4820 +7533 23677 0.5480 +7533 23774 0.4060 +7533 25865 0.4390 +7533 25937 0.9260 +7533 26585 0.5980 +7533 26999 0.5280 +7533 27124 0.5850 +7533 29119 0.9020 +7533 51307 0.4260 +7533 51320 0.4510 +7533 51552 0.6200 +7533 51564 0.6540 +7533 53635 0.4480 +7533 54101 0.4270 +7533 54477 0.4020 +7533 54541 0.5470 +7533 54790 0.4340 +7533 55095 0.4110 +7533 55103 0.4810 +7533 55615 0.6330 +7533 55704 0.4190 +7533 55720 0.5880 +7533 56288 0.6810 +7533 57530 0.6350 +7533 57787 0.4690 +7533 59269 0.4180 +7533 59339 0.4350 +7533 64135 0.4570 +7533 64837 0.4560 +7533 64854 0.6120 +7533 65220 0.4240 +7533 79711 0.4100 +7533 80153 0.6070 +7533 83879 0.5070 +7533 84206 0.6480 +7533 84254 0.4140 +7533 84335 0.8740 +7533 84451 0.4600 +7533 89796 0.4110 +7533 89953 0.4500 +7533 120892 0.7940 +7533 121278 0.7110 +7533 147700 0.5260 +7533 169044 0.4290 +7533 222658 0.4740 +7533 253260 0.4100 +7533 284403 0.4220 +7533 285527 0.4100 +7533 338567 0.5480 +7533 345651 0.4390 +7533 494551 0.4970 +7534 7812 0.5300 +7534 7846 0.7260 +7534 7874 0.4670 +7534 7942 0.5970 +7534 8239 0.4850 +7534 8243 0.5120 +7534 8290 0.6650 +7534 8314 0.5380 +7534 8350 0.7710 +7534 8356 0.9060 +7534 8361 0.6490 +7534 8407 0.5770 +7534 8452 0.4610 +7534 8471 0.4010 +7534 8496 0.6100 +7534 8503 0.5350 +7534 8570 0.9460 +7534 8626 0.5460 +7534 8660 0.7400 +7534 8665 0.5110 +7534 8772 0.5270 +7534 8844 0.4810 +7534 8874 0.4340 +7534 8878 0.5810 +7534 8892 0.4140 +7534 8988 0.5380 +7534 9101 0.9710 +7534 9131 0.4160 +7534 9156 0.6660 +7534 9181 0.8040 +7534 9240 0.4190 +7534 9252 0.7140 +7534 9261 0.4650 +7534 9343 0.5350 +7534 9368 0.5190 +7534 9413 0.4420 +7534 9454 0.5110 +7534 9493 0.7830 +7534 9531 0.4420 +7534 9564 0.5160 +7534 9584 0.4840 +7534 9610 0.6510 +7534 9611 0.4500 +7534 9644 0.4270 +7534 9679 0.5560 +7534 9698 0.4210 +7534 9741 0.4550 +7534 9743 0.5510 +7534 9748 0.4280 +7534 9750 0.4120 +7534 9759 0.8380 +7534 9846 0.6530 +7534 9882 0.9250 +7534 9887 0.6690 +7534 10013 0.4300 +7534 10014 0.6910 +7534 10018 0.5090 +7534 10036 0.4800 +7534 10096 0.4680 +7534 10097 0.5300 +7534 10190 0.7820 +7534 10243 0.4240 +7534 10290 0.4450 +7534 10291 0.5020 +7534 10298 0.5980 +7534 10376 0.4480 +7534 10399 0.6450 +7534 10411 0.5000 +7534 10413 0.9910 +7534 10458 0.6560 +7534 10494 0.4890 +7534 10526 0.4940 +7534 10551 0.5230 +7534 10687 0.5290 +7534 10746 0.7370 +7534 10749 0.5230 +7534 10890 0.6100 +7534 10971 0.9880 +7534 11069 0.5020 +7534 11181 0.4200 +7534 11214 0.6060 +7534 11315 0.4320 +7534 22841 0.5350 +7534 22919 0.4170 +7534 23028 0.6460 +7534 23094 0.4760 +7534 23095 0.5230 +7534 23108 0.7470 +7534 23191 0.4890 +7534 23216 0.7150 +7534 23241 0.5950 +7534 23293 0.7260 +7534 23294 0.4150 +7534 23313 0.6370 +7534 23373 0.5930 +7534 23381 0.6630 +7534 23387 0.7230 +7534 23518 0.5550 +7534 23521 0.7780 +7534 23677 0.4220 +7534 25814 0.4180 +7534 25828 0.5090 +7534 25937 0.9480 +7534 25962 0.4500 +7534 26227 0.4760 +7534 26999 0.4540 +7534 27161 0.4610 +7534 27185 0.8510 +7534 27335 0.4840 +7534 28954 0.4060 +7534 29114 0.4780 +7534 29119 0.9000 +7534 51123 0.4210 +7534 51256 0.9390 +7534 51305 0.4560 +7534 51307 0.4530 +7534 51552 0.6250 +7534 51564 0.5260 +7534 51582 0.4470 +7534 51741 0.5670 +7534 51776 0.5060 +7534 51806 0.8090 +7534 53616 0.8210 +7534 54101 0.4480 +7534 54205 0.5450 +7534 54206 0.6290 +7534 54434 0.7700 +7534 54541 0.7770 +7534 54790 0.4320 +7534 54820 0.5610 +7534 55054 0.8700 +7534 55095 0.6130 +7534 55103 0.7990 +7534 55353 0.6900 +7534 55603 0.4920 +7534 55667 0.4710 +7534 56288 0.6070 +7534 56907 0.4590 +7534 56924 0.4180 +7534 57521 0.6000 +7534 57522 0.5410 +7534 57584 0.4790 +7534 57650 0.5050 +7534 57787 0.5310 +7534 64754 0.4180 +7534 65220 0.4370 +7534 65266 0.4100 +7534 79065 0.7500 +7534 79109 0.4740 +7534 79722 0.4130 +7534 83879 0.7190 +7534 84335 0.5870 +7534 84451 0.5040 +7534 84790 0.6780 +7534 84962 0.4830 +7534 85409 0.5100 +7534 85440 0.5060 +7534 90102 0.4830 +7534 91860 0.8000 +7534 103910 0.4210 +7534 112755 0.4320 +7534 120892 0.8740 +7534 121278 0.8680 +7534 126393 0.7010 +7534 144100 0.4890 +7534 147700 0.4050 +7534 150094 0.4200 +7534 163688 0.8000 +7534 200186 0.4470 +7534 203068 0.5410 +7534 220988 0.5280 +7534 221035 0.4670 +7534 221178 0.4050 +7534 222658 0.4470 +7534 253260 0.6530 +7534 284403 0.4200 +7534 345651 0.4470 +7534 440093 0.6780 +7534 440686 0.6630 +7534 441531 0.5460 +7534 653604 0.6660 +7534 728378 0.7080 +7535 7852 0.5130 +7535 7879 0.4080 +7535 8115 0.5240 +7535 8320 0.4530 +7535 8503 0.9150 +7535 8631 0.8450 +7535 8639 0.5270 +7535 8651 0.7760 +7535 8744 0.4310 +7535 8915 0.5040 +7535 8935 0.5180 +7535 8976 0.4810 +7535 9046 0.4360 +7535 9047 0.6810 +7535 9341 0.4300 +7535 9402 0.9740 +7535 9436 0.4850 +7535 9437 0.6370 +7535 9475 0.4290 +7535 9497 0.4290 +7535 9528 0.4390 +7535 9564 0.4450 +7535 9623 0.5050 +7535 9846 0.4460 +7535 10125 0.6360 +7535 10193 0.4910 +7535 10219 0.4050 +7535 10225 0.4890 +7535 10288 0.5150 +7535 10298 0.4380 +7535 10320 0.5080 +7535 10365 0.5190 +7535 10376 0.6040 +7535 10451 0.9550 +7535 10454 0.6180 +7535 10537 0.4070 +7535 10538 0.4250 +7535 10578 0.4430 +7535 10666 0.4130 +7535 10750 0.6100 +7535 10859 0.5750 +7535 10870 0.7560 +7535 10892 0.4620 +7535 11151 0.4600 +7535 22806 0.4260 +7535 22914 0.7760 +7535 23241 0.4750 +7535 25759 0.9140 +7535 26191 0.9100 +7535 27036 0.4170 +7535 27040 0.9990 +7535 27240 0.7120 +7535 28988 0.7730 +7535 29126 0.5070 +7535 29760 0.9050 +7535 29851 0.6750 +7535 29909 0.4420 +7535 30009 0.6060 +7535 50615 0.4320 +7535 50619 0.5990 +7535 50852 0.9560 +7535 50943 0.7200 +7535 51135 0.5020 +7535 51176 0.4080 +7535 51744 0.4400 +7535 53347 0.9630 +7535 53358 0.9380 +7535 54209 0.6770 +7535 54518 0.6060 +7535 55075 0.4330 +7535 55690 0.4500 +7535 55824 0.5700 +7535 55968 0.4030 +7535 56924 0.4280 +7535 57144 0.4280 +7535 57599 0.4370 +7535 64919 0.5080 +7535 64926 0.4290 +7535 79037 0.5510 +7535 80342 0.4670 +7535 80380 0.6550 +7535 80381 0.6680 +7535 81704 0.4160 +7535 81839 0.4010 +7535 83660 0.4010 +7535 83697 0.4010 +7535 83706 0.4840 +7535 84174 0.7020 +7535 84433 0.6250 +7535 84868 0.6170 +7535 84896 0.4100 +7535 84959 0.8450 +7535 114836 0.6610 +7535 114885 0.4090 +7535 115352 0.8300 +7535 115761 0.5300 +7535 117157 0.4380 +7535 150372 0.6130 +7535 157769 0.4080 +7535 171558 0.4710 +7535 197358 0.4720 +7535 201633 0.5110 +7535 203068 0.4030 +7535 253959 0.4010 +7535 259197 0.4850 +7535 374403 0.4600 +7535 387357 0.5840 +7535 399694 0.9120 +7535 102723407 0.8130 +7536 7919 0.8070 +7536 8061 0.7660 +7536 8148 0.5660 +7536 8175 0.9960 +7536 8233 0.7330 +7536 8241 0.7020 +7536 8292 0.4030 +7536 8449 0.4650 +7536 8498 0.4390 +7536 8570 0.7140 +7536 8683 0.4020 +7536 8880 0.5810 +7536 8896 0.4420 +7536 8899 0.5820 +7536 8939 0.5430 +7536 9092 0.7400 +7536 9128 0.5820 +7536 9129 0.6470 +7536 9295 0.4750 +7536 9343 0.8910 +7536 9391 0.4540 +7536 9410 0.6080 +7536 9416 0.8410 +7536 9584 0.9520 +7536 9667 0.4740 +7536 9733 0.4340 +7536 9785 0.5460 +7536 9879 0.9910 +7536 9987 0.6190 +7536 10056 0.5390 +7536 10179 0.8940 +7536 10181 0.7530 +7536 10189 0.6760 +7536 10212 0.5540 +7536 10250 0.7440 +7536 10262 0.8570 +7536 10285 0.5300 +7536 10286 0.5890 +7536 10291 0.9960 +7536 10465 0.6790 +7536 10482 0.4290 +7536 10521 0.8590 +7536 10523 0.9130 +7536 10569 0.4590 +7536 10594 0.6820 +7536 10657 0.6890 +7536 10713 0.5240 +7536 10772 0.4370 +7536 10907 0.6160 +7536 10915 0.9180 +7536 10921 0.4840 +7536 10946 0.9920 +7536 10949 0.4270 +7536 10992 0.8160 +7536 11017 0.5300 +7536 11030 0.4200 +7536 11052 0.5670 +7536 11100 0.7700 +7536 11157 0.5170 +7536 11193 0.6760 +7536 11325 0.7250 +7536 11338 0.9990 +7536 22826 0.7390 +7536 22827 0.9370 +7536 22889 0.5730 +7536 22916 0.6270 +7536 22938 0.4030 +7536 22985 0.5360 +7536 23020 0.7320 +7536 23244 0.4300 +7536 23350 0.8120 +7536 23363 0.5100 +7536 23435 0.5840 +7536 23450 0.8080 +7536 23451 0.9630 +7536 23517 0.5530 +7536 23524 0.9420 +7536 23543 0.4010 +7536 23658 0.5430 +7536 24144 0.4410 +7536 24148 0.7420 +7536 25766 0.9110 +7536 25804 0.6020 +7536 25949 0.4480 +7536 26121 0.7010 +7536 27258 0.5880 +7536 27336 0.8670 +7536 27339 0.4270 +7536 51322 0.5950 +7536 51362 0.6950 +7536 51585 0.4400 +7536 51593 0.9270 +7536 51631 0.5060 +7536 51639 0.8520 +7536 51663 0.6780 +7536 51690 0.5430 +7536 51691 0.6110 +7536 51747 0.8950 +7536 54870 0.4240 +7536 54904 0.4070 +7536 54952 0.7880 +7536 55015 0.6030 +7536 55192 0.4240 +7536 55234 0.7230 +7536 55660 0.9810 +7536 55692 0.5070 +7536 55702 0.4590 +7536 55749 0.5290 +7536 56259 0.6000 +7536 56949 0.5000 +7536 57092 0.4350 +7536 57187 0.4400 +7536 57794 0.9070 +7536 57819 0.5820 +7536 58517 0.9380 +7536 79026 0.7700 +7536 79084 0.5060 +7536 79171 0.5440 +7536 79696 0.5550 +7536 79868 0.4470 +7536 79869 0.4650 +7536 80335 0.4540 +7536 83443 0.6520 +7536 84292 0.4870 +7536 84844 0.7910 +7536 84991 0.9550 +7536 114034 0.4100 +7536 124245 0.5930 +7536 127933 0.4630 +7536 199746 0.7420 +7536 220988 0.4640 +7536 253943 0.4080 +7536 347744 0.7880 +7536 100996928 0.4680 +7536 101669762 0.7680 +7538 7832 0.6880 +7538 7837 0.4410 +7538 8021 0.4380 +7538 8087 0.5590 +7538 8290 0.4560 +7538 8356 0.4540 +7538 8570 0.7950 +7538 8870 0.6020 +7538 8882 0.4150 +7538 9021 0.5650 +7538 9125 0.7300 +7538 9261 0.9790 +7538 9271 0.5920 +7538 9314 0.4240 +7538 9337 0.7920 +7538 9513 0.5090 +7538 9592 0.7360 +7538 9698 0.4400 +7538 9924 0.4400 +7538 10140 0.5190 +7538 10146 0.6630 +7538 10221 0.4120 +7538 10365 0.4350 +7538 10521 0.4080 +7538 10865 0.4270 +7538 10949 0.4420 +7538 10971 0.5560 +7538 11040 0.4930 +7538 11340 0.9970 +7538 11341 0.5420 +7538 22849 0.5270 +7538 22894 0.5970 +7538 23016 0.5460 +7538 23019 0.9830 +7538 23369 0.4420 +7538 23404 0.5090 +7538 23405 0.6860 +7538 23644 0.5790 +7538 23645 0.4590 +7538 24149 0.5250 +7538 25904 0.6120 +7538 25976 0.4930 +7538 26019 0.4500 +7538 26058 0.6970 +7538 26271 0.4370 +7538 26523 0.7450 +7538 26986 0.7480 +7538 27161 0.9140 +7538 27327 0.4960 +7538 29102 0.5710 +7538 29883 0.8010 +7538 30011 0.6130 +7538 51010 0.5540 +7538 51013 0.5540 +7538 54464 0.9690 +7538 54512 0.5400 +7538 54542 0.4700 +7538 54625 0.4960 +7538 55571 0.6140 +7538 55657 0.6020 +7538 55802 0.8260 +7538 56478 0.5070 +7538 56915 0.5680 +7538 57472 0.7830 +7538 57521 0.4150 +7538 64332 0.6280 +7538 64506 0.5440 +7538 64599 0.7250 +7538 64651 0.6590 +7538 79727 0.4530 +7538 80149 0.6440 +7538 80153 0.8250 +7538 85456 0.5050 +7538 90850 0.4410 +7538 113802 0.6120 +7538 118460 0.7170 +7538 137902 0.4430 +7538 143689 0.5640 +7538 149041 0.6200 +7538 167227 0.9090 +7538 192669 0.5780 +7538 192670 0.5380 +7538 196513 0.4170 +7538 246175 0.7620 +7538 284131 0.4890 +7538 286151 0.5140 +7538 340719 0.4290 +7538 399664 0.4800 +7538 440093 0.4570 +7538 440686 0.4570 +7538 653604 0.4560 +7539 8882 0.7350 +7539 10155 0.5220 +7539 10262 0.5480 +7539 10409 0.4090 +7539 27253 0.4260 +7539 51616 0.4970 +7539 57864 0.6200 +7539 132321 0.4200 +7541 8031 0.4260 +7541 9663 0.4180 +7541 9989 0.4360 +7541 10495 0.4420 +7541 10524 0.5680 +7541 22806 0.4190 +7541 23253 0.4510 +7541 23394 0.7780 +7541 23468 0.4590 +7541 27098 0.4810 +7541 84126 0.5060 +7541 84914 0.5980 +7541 91133 0.4420 +7541 135458 0.7850 +7541 339291 0.4380 +7541 642597 0.4380 +7542 9218 0.5350 +7542 9321 0.4750 +7542 9600 0.4550 +7542 9885 0.5110 +7542 9950 0.5900 +7542 9986 0.4800 +7542 10981 0.4020 +7542 11018 0.5960 +7542 11070 0.5150 +7542 22820 0.4160 +7542 23085 0.4190 +7542 23256 0.4100 +7542 51614 0.4140 +7542 55773 0.4640 +7542 56889 0.5000 +7542 64149 0.4070 +7542 64320 0.4780 +7542 79571 0.4120 +7542 79797 0.4610 +7542 83394 0.5180 +7542 84065 0.4920 +7542 91452 0.5070 +7542 157769 0.4110 +7543 7544 0.7260 +7543 8225 0.4320 +7543 8226 0.4470 +7543 8239 0.7770 +7543 8242 0.7160 +7543 8284 0.7300 +7543 8287 0.7170 +7543 8553 0.4110 +7543 8653 0.5490 +7543 8856 0.7420 +7543 8882 0.6600 +7543 8908 0.4880 +7543 9086 0.4300 +7543 9189 0.4130 +7543 10155 0.5880 +7543 10389 0.4010 +7543 10664 0.5510 +7543 10732 0.4030 +7543 22829 0.4750 +7543 23512 0.4830 +7543 23560 0.4360 +7543 27328 0.5230 +7543 51322 0.4240 +7543 54413 0.4030 +7543 55344 0.4300 +7543 55787 0.5920 +7543 55841 0.4090 +7543 56157 0.4750 +7543 57502 0.5230 +7543 79923 0.5880 +7543 83259 0.5120 +7543 90665 0.4740 +7544 8242 0.4550 +7544 8284 0.9710 +7544 8287 0.9990 +7544 8653 0.9730 +7544 8856 0.6510 +7544 8882 0.7010 +7544 9081 0.4490 +7544 9083 0.5810 +7544 9084 0.5750 +7544 9085 0.5180 +7544 9086 0.9650 +7544 9087 0.9310 +7544 9723 0.4300 +7544 10655 0.5140 +7544 22829 0.9450 +7544 27328 0.4720 +7544 51322 0.4180 +7544 55787 0.5130 +7544 57054 0.5150 +7544 57055 0.5280 +7544 64324 0.4420 +7544 64591 0.5080 +7544 83259 0.6920 +7544 86614 0.6390 +7544 90655 0.4600 +7544 90665 0.9030 +7544 140032 0.8960 +7544 159119 0.4250 +7544 159163 0.4720 +7544 353513 0.5750 +7544 378948 0.5020 +7544 378949 0.4190 +7544 442862 0.4340 +7544 442867 0.5710 +7544 442868 0.5710 +7544 728132 0.4030 +7544 728395 0.4360 +7545 7704 0.4290 +7545 8216 0.4070 +7545 8507 0.4480 +7545 8646 0.4080 +7545 8882 0.6830 +7545 9353 0.4340 +7545 9355 0.4710 +7545 9378 0.4690 +7545 9454 0.4830 +7545 9580 0.4310 +7545 10215 0.4660 +7545 10716 0.4840 +7545 10763 0.4070 +7545 11007 0.4040 +7545 11339 0.4390 +7545 23467 0.4110 +7545 23770 0.4680 +7545 27022 0.6980 +7545 30812 0.4620 +7545 54329 0.4280 +7545 55714 0.5070 +7545 56751 0.5070 +7545 57451 0.6240 +7545 64211 0.6210 +7545 64321 0.4550 +7545 64641 0.4650 +7545 79191 0.4010 +7545 79923 0.4030 +7545 84107 0.9510 +7545 84504 0.4380 +7545 123745 0.4250 +7545 219623 0.6690 +7545 257364 0.4580 +7545 431707 0.6890 +7546 7783 0.4840 +7546 8106 0.4870 +7546 8882 0.4570 +7546 8928 0.4670 +7546 9355 0.4450 +7546 9866 0.4420 +7546 27022 0.4510 +7546 29842 0.4520 +7546 50937 0.4640 +7546 51176 0.4740 +7546 55023 0.4510 +7546 55714 0.4180 +7546 57554 0.4010 +7546 60529 0.5320 +7546 64211 0.4790 +7546 64327 0.5030 +7546 64710 0.4100 +7546 64843 0.7520 +7546 79923 0.5920 +7546 84976 0.9190 +7546 85416 0.7210 +7546 170302 0.5370 +7546 200350 0.4380 +7546 285671 0.4070 +7546 646960 0.4570 +7547 8433 0.4740 +7547 8822 0.4310 +7547 8882 0.4050 +7547 8928 0.5240 +7547 9573 0.4790 +7547 10052 0.4400 +7547 10637 0.8050 +7547 23633 0.5900 +7547 27022 0.5290 +7547 27130 0.5410 +7547 55211 0.4820 +7547 55997 0.9040 +7547 57589 0.5480 +7547 64211 0.5240 +7547 64321 0.4650 +7547 78987 0.5240 +7547 79727 0.5300 +7547 79923 0.9490 +7547 80712 0.4540 +7547 85416 0.4420 +7547 139135 0.5320 +7547 168507 0.4460 +7547 220136 0.4610 +7547 359787 0.4300 +7549 7555 0.7290 +7549 9698 0.4770 +7549 10150 0.5720 +7549 10155 0.6860 +7549 23428 0.4270 +7549 51185 0.4060 +7549 55796 0.5650 +7549 58508 0.6460 +7549 342909 0.6110 +7552 7553 0.5300 +7552 8019 0.5280 +7552 8242 0.4180 +7552 10155 0.5480 +7552 11237 0.4170 +7552 23133 0.8270 +7552 27330 0.5040 +7552 55634 0.4470 +7552 56062 0.4370 +7552 56156 0.4970 +7552 56157 0.4900 +7552 64773 0.4170 +7552 79882 0.4420 +7552 79983 0.6570 +7552 117154 0.4700 +7552 139322 0.6130 +7552 158866 0.4460 +7552 221302 0.4520 +7552 254065 0.6030 +7552 340562 0.6050 +7553 7564 0.4520 +7553 8737 0.4350 +7553 9580 0.4730 +7553 25821 0.4420 +7553 25988 0.4570 +7553 50507 0.6890 +7553 79066 0.4360 +7553 79707 0.4610 +7553 84365 0.4310 +7553 221302 0.4470 +7554 7743 0.6100 +7554 10155 0.4180 +7554 25988 0.4870 +7554 57616 0.4660 +7554 79842 0.4450 +7554 150280 0.4070 +7554 151126 0.4880 +7554 152485 0.4750 +7554 192669 0.4410 +7554 196472 0.4670 +7555 7812 0.4200 +7555 8106 0.4930 +7555 9045 0.5250 +7555 9188 0.6490 +7555 9933 0.5560 +7555 9967 0.4330 +7555 9987 0.5310 +7555 9997 0.4290 +7555 10075 0.4350 +7555 10150 0.9720 +7555 10412 0.5190 +7555 10528 0.4590 +7555 10658 0.8350 +7555 10838 0.4050 +7555 10969 0.6270 +7555 11044 0.4100 +7555 11117 0.4350 +7555 11130 0.7840 +7555 11155 0.5510 +7555 22948 0.4430 +7555 23029 0.5260 +7555 23049 0.4140 +7555 23212 0.4820 +7555 23347 0.4340 +7555 23378 0.4780 +7555 23435 0.4340 +7555 23517 0.5160 +7555 23521 0.5740 +7555 23560 0.5640 +7555 25814 0.4480 +7555 25873 0.4830 +7555 26135 0.4370 +7555 27316 0.4880 +7555 29889 0.4440 +7555 29896 0.4560 +7555 29960 0.4150 +7555 29997 0.4470 +7555 51187 0.5050 +7555 51388 0.6040 +7555 51574 0.4020 +7555 51684 0.8280 +7555 54475 0.4030 +7555 54826 0.4200 +7555 54963 0.4370 +7555 55003 0.4830 +7555 55131 0.4910 +7555 55299 0.5140 +7555 55796 0.9710 +7555 56829 0.5540 +7555 57062 0.4090 +7555 57510 0.4280 +7555 64282 0.6480 +7555 65265 0.4650 +7555 80135 0.4990 +7555 81844 0.5370 +7555 84154 0.4870 +7555 84298 0.4970 +7555 84549 0.5860 +7555 117246 0.4480 +7555 126364 0.4310 +7555 147912 0.4240 +7555 170506 0.4660 +7555 203228 0.4550 +7555 285525 0.7700 +7555 643836 0.4330 +7555 692312 0.4230 +7556 8805 0.6880 +7556 9330 0.5200 +7556 9869 0.7560 +7556 10155 0.9950 +7556 11335 0.4550 +7556 26009 0.4640 +7556 51111 0.4280 +7556 51290 0.4740 +7556 51592 0.6160 +7556 84148 0.4170 +7556 84787 0.4240 +7556 200312 0.5860 +7556 283471 0.5450 +7559 10155 0.5850 +7559 10474 0.5520 +7559 22890 0.4470 +7559 23592 0.4690 +7559 55783 0.4720 +7559 56658 0.4720 +7559 57786 0.7730 +7559 79034 0.4280 +7559 85443 0.4670 +7559 114781 0.5110 +7559 133482 0.4740 +7559 389677 0.4330 +7561 7766 0.4080 +7561 10155 0.6760 +7561 25862 0.4310 +7561 157773 0.4470 +7561 729991 0.4080 +7562 7700 0.4830 +7562 9534 0.4220 +7562 10155 0.6140 +7562 23592 0.4510 +7562 51427 0.4840 +7562 56242 0.4890 +7562 158405 0.4400 +7562 170959 0.4770 +7562 171392 0.5200 +7562 200407 0.4510 +7562 256051 0.4200 +7562 285672 0.4620 +7562 337969 0.4470 +7564 8882 0.4830 +7564 8971 0.4850 +7564 10940 0.4020 +7564 29997 0.4610 +7564 50507 0.7700 +7564 50626 0.4040 +7564 58500 0.5510 +7564 65265 0.5290 +7564 80778 0.5970 +7564 84933 0.4080 +7564 84948 0.4140 +7564 348327 0.4790 +7564 388324 0.5880 +7565 7596 0.7890 +7565 7633 0.6350 +7565 7770 0.5540 +7565 7818 0.4170 +7565 9310 0.6360 +7565 10155 0.5470 +7565 22869 0.5550 +7565 26534 0.4470 +7565 28973 0.4630 +7565 55173 0.4010 +7565 55659 0.4950 +7565 56945 0.4410 +7565 56951 0.4090 +7565 79898 0.4130 +7565 91664 0.4160 +7565 125919 0.4300 +7565 147929 0.5450 +7565 221786 0.4410 +7566 7572 0.7900 +7566 7727 0.7980 +7566 9841 0.6020 +7566 10155 0.5180 +7566 23036 0.4470 +7566 51282 0.7040 +7566 55634 0.4800 +7566 55663 0.7260 +7566 57616 0.4450 +7566 57701 0.6690 +7566 84527 0.4570 +7566 89910 0.7190 +7566 130502 0.6280 +7566 138881 0.4310 +7566 146822 0.5070 +7566 151126 0.4910 +7566 152485 0.4770 +7566 158399 0.5930 +7566 283162 0.4870 +7566 338675 0.4470 +7566 442197 0.4050 +7566 554251 0.4730 +7566 653404 0.4630 +7566 727857 0.4330 +7567 8462 0.4100 +7567 9586 0.4780 +7567 10155 0.7330 +7567 22996 0.5460 +7567 23036 0.4220 +7567 23592 0.4450 +7567 50507 0.7750 +7567 51643 0.4410 +7567 56658 0.5770 +7567 64925 0.4900 +7567 79815 0.4500 +7567 114821 0.4080 +7567 118924 0.4040 +7567 342132 0.4660 +7567 729597 0.4340 +7568 10155 0.5870 +7569 7592 0.4010 +7569 7737 0.4260 +7569 9310 0.4740 +7569 10903 0.4240 +7569 23126 0.4250 +7569 23315 0.4070 +7569 26538 0.5060 +7569 51114 0.4200 +7569 55906 0.4740 +7569 64743 0.4710 +7569 159013 0.5450 +7569 203523 0.5100 +7569 728819 0.4420 +7569 729201 0.4460 +7570 10250 0.6230 +7570 11056 0.6900 +7570 26009 0.4130 +7570 51121 0.6540 +7570 54947 0.5350 +7570 57547 0.5100 +7570 131583 0.4410 +7570 388558 0.4670 +7571 10155 0.5790 +7571 10252 0.5910 +7571 50507 0.7800 +7571 56676 0.5000 +7571 84320 0.6730 +7571 118881 0.4080 +7571 255426 0.4230 +7572 7579 0.7850 +7572 7586 0.7090 +7572 7589 0.6450 +7572 7593 0.7730 +7572 7718 0.4250 +7572 7727 0.8640 +7572 7745 0.4950 +7572 7746 0.6950 +7572 7753 0.4830 +7572 7760 0.5500 +7572 7762 0.4530 +7572 7775 0.7820 +7572 8467 0.4110 +7572 8882 0.4230 +7572 9575 0.6090 +7572 10982 0.7820 +7572 22890 0.4140 +7572 23416 0.4240 +7572 26959 0.4970 +7572 51282 0.8570 +7572 51585 0.4810 +7572 54815 0.4030 +7572 54862 0.4180 +7572 54925 0.8550 +7572 54993 0.4120 +7572 55311 0.7970 +7572 55663 0.8880 +7572 56987 0.4360 +7572 65982 0.5040 +7572 79856 0.4310 +7572 79863 0.4830 +7572 80317 0.7940 +7572 80345 0.4860 +7572 84307 0.8100 +7572 84547 0.8310 +7572 116448 0.4600 +7572 158399 0.6630 +7572 222696 0.6370 +7572 252884 0.8700 +7572 284312 0.8250 +7572 342945 0.5380 +7572 387032 0.8190 +7572 100129654 0.4630 +7574 9101 0.6370 +7574 9811 0.4100 +7574 10155 0.5830 +7574 10795 0.4100 +7574 55501 0.4630 +7574 79009 0.4570 +7574 84272 0.4530 +7576 10155 0.6270 +7576 23592 0.4450 +7576 55762 0.5170 +7576 90333 0.7850 +7576 125893 0.5540 +7576 170958 0.4640 +7576 200407 0.4600 +7576 285672 0.4570 +7576 100131897 0.4520 +7576 101060684 0.5340 +7579 7586 0.7030 +7579 7589 0.7830 +7579 7727 0.8070 +7579 7745 0.7090 +7579 7760 0.7860 +7579 7762 0.5920 +7579 7775 0.7790 +7579 10127 0.6380 +7579 10168 0.7900 +7579 23660 0.7730 +7579 29991 0.5100 +7579 51282 0.8130 +7579 54854 0.4540 +7579 54925 0.8050 +7579 55223 0.4740 +7579 55799 0.4790 +7579 57582 0.4230 +7579 65982 0.7780 +7579 80317 0.8150 +7579 84124 0.7940 +7579 84307 0.7840 +7579 84547 0.7870 +7579 85442 0.4900 +7579 114821 0.7990 +7579 146050 0.6520 +7579 147912 0.4210 +7579 158067 0.4340 +7579 158135 0.5580 +7579 203523 0.4730 +7579 222696 0.7910 +7579 252884 0.8100 +7579 283554 0.4080 +7579 342945 0.7970 +7579 353274 0.5470 +7579 387032 0.8190 +7579 388561 0.5720 +7579 392399 0.5180 +7579 402381 0.4230 +7579 100101467 0.7940 +7580 51340 0.4850 +7580 84330 0.4030 +7580 84936 0.4020 +7580 118924 0.9130 +7581 9765 0.4060 +7581 10155 0.7080 +7581 51776 0.7620 +7582 10155 0.6610 +7582 84317 0.4070 +7582 127255 0.4470 +7582 255349 0.5860 +7584 51176 0.4450 +7584 84148 0.4160 +7586 7589 0.5530 +7586 7593 0.4500 +7586 7727 0.4800 +7586 7760 0.5860 +7586 7775 0.6390 +7586 10114 0.5040 +7586 10155 0.5220 +7586 23060 0.4350 +7586 50507 0.8280 +7586 51282 0.7080 +7586 53371 0.4030 +7586 54925 0.8390 +7586 55663 0.5310 +7586 83737 0.4230 +7586 84307 0.7940 +7586 84985 0.4170 +7586 157922 0.4460 +7586 158399 0.6250 +7586 222696 0.6030 +7586 387032 0.7590 +7587 10155 0.5850 +7587 83448 0.7820 +7587 91574 0.4830 +7587 285268 0.4860 +7589 7727 0.7180 +7589 7760 0.5460 +7589 7775 0.7050 +7589 7988 0.4640 +7589 9402 0.4420 +7589 23660 0.6580 +7589 50507 0.7710 +7589 51127 0.4370 +7589 51282 0.5180 +7589 54925 0.8610 +7589 55663 0.7010 +7589 55888 0.6120 +7589 58492 0.4410 +7589 84307 0.7890 +7589 84838 0.6410 +7589 90933 0.5820 +7589 114821 0.5370 +7589 222696 0.7590 +7589 252884 0.5210 +7589 342945 0.5960 +7589 387032 0.8380 +7589 780776 0.4300 +7589 100101467 0.5920 +7592 7626 0.7230 +7592 8242 0.4190 +7592 9459 0.4530 +7592 9758 0.4280 +7592 10084 0.6980 +7592 10155 0.7560 +7592 11141 0.4080 +7592 22869 0.7870 +7592 23126 0.4050 +7592 23133 0.6430 +7592 24140 0.8580 +7592 55906 0.4010 +7592 56548 0.4850 +7592 57477 0.4410 +7592 84679 0.4800 +7592 151126 0.8360 +7592 171483 0.5540 +7592 347344 0.4320 +7592 100130086 0.5000 +7592 100506164 0.4490 +7593 7727 0.6250 +7593 7753 0.8520 +7593 7760 0.5540 +7593 8216 0.4780 +7593 8836 0.4240 +7593 9013 0.4720 +7593 9905 0.4780 +7593 9935 0.4560 +7593 10871 0.4240 +7593 23113 0.5500 +7593 23770 0.4250 +7593 27102 0.4310 +7593 51282 0.7970 +7593 51450 0.4130 +7593 51676 0.4030 +7593 55657 0.4490 +7593 55663 0.6430 +7593 56834 0.4140 +7593 64772 0.5360 +7593 64779 0.4360 +7593 79068 0.4060 +7593 80198 0.5340 +7593 83483 0.7260 +7593 90678 0.5630 +7593 116835 0.4080 +7593 116983 0.4630 +7593 222894 0.4150 +7593 284312 0.7360 +7593 643641 0.4590 +7594 7639 0.4660 +7594 8722 0.4220 +7594 10155 0.5260 +7594 10793 0.5690 +7594 56242 0.4510 +7594 124751 0.4010 +7594 171392 0.4870 +7596 7633 0.5290 +7596 7693 0.5460 +7596 7768 0.4390 +7596 7770 0.7870 +7596 8805 0.5190 +7596 10155 0.8590 +7596 22869 0.5120 +7596 51111 0.4360 +7596 51592 0.6000 +7596 55659 0.4530 +7596 84787 0.4220 +7596 169841 0.6100 +7597 11261 0.4310 +7597 22929 0.4360 +7597 51193 0.4670 +7597 54859 0.7270 +7597 57621 0.5460 +7597 64395 0.4110 +7597 65125 0.6060 +7597 83878 0.5030 +7597 90321 0.4240 +7597 90809 0.4550 +7597 126626 0.5050 +7597 127428 0.4640 +7597 138199 0.5600 +7597 163049 0.4450 +7597 163087 0.7760 +7617 731220 0.4150 +7620 7621 0.9300 +7620 7625 0.8220 +7620 58491 0.8960 +7620 84056 0.4740 +7621 10155 0.5180 +7621 23038 0.4960 +7621 51233 0.5890 +7621 55658 0.4770 +7621 55734 0.5980 +7621 84365 0.4460 +7621 84503 0.4390 +7621 85379 0.4340 +7621 91057 0.4320 +7621 150248 0.5330 +7621 192111 0.4300 +7621 266747 0.4470 +7621 387597 0.4500 +7621 388886 0.5710 +7625 8214 0.8420 +7625 8216 0.5600 +7625 8829 0.4220 +7625 9342 0.4700 +7625 9993 0.8100 +7625 10155 0.8480 +7625 29801 0.6410 +7625 51586 0.8500 +7625 54584 0.6150 +7625 80764 0.6110 +7625 84861 0.5200 +7625 85359 0.8420 +7625 91179 0.5890 +7625 128977 0.4300 +7625 145497 0.4120 +7625 150209 0.4350 +7625 150248 0.4450 +7625 400891 0.4320 +7626 10155 0.6020 +7626 10782 0.6090 +7626 22869 0.6400 +7626 23341 0.4850 +7626 26610 0.4540 +7626 29080 0.4730 +7626 54916 0.4720 +7626 79364 0.4560 +7626 89932 0.4780 +7626 140460 0.4750 +7626 203523 0.4930 +7627 10155 0.5570 +7627 23768 0.4040 +7627 55893 0.4350 +7627 91151 0.6210 +7627 400258 0.5560 +7629 8554 0.4040 +7629 23070 0.5340 +7629 25989 0.4540 +7629 29841 0.5550 +7629 54956 0.4360 +7629 54963 0.4870 +7629 55290 0.4010 +7629 55929 0.5820 +7629 55954 0.4170 +7629 64601 0.4360 +7629 64963 0.5700 +7629 90678 0.4310 +7629 158405 0.4320 +7629 339965 0.4060 +7633 10155 0.5250 +7633 54980 0.6320 +7633 55659 0.5120 +7633 58492 0.5080 +7633 144125 0.6690 +7633 387032 0.4740 +7633 388561 0.4690 +7634 10349 0.4460 +7634 54535 0.4270 +7634 148109 0.5780 +7634 220082 0.4950 +7634 283238 0.4970 +7634 390883 0.5600 +7637 7752 0.5170 +7637 9729 0.4410 +7637 10038 0.5040 +7637 10155 0.6540 +7637 11201 0.4810 +7637 79759 0.4470 +7637 84911 0.4850 +7637 129025 0.5060 +7638 7768 0.5320 +7638 10155 0.5220 +7638 26476 0.5070 +7638 26531 0.5070 +7638 28974 0.4060 +7638 54865 0.4040 +7638 56980 0.4300 +7638 64168 0.4050 +7638 84270 0.4180 +7638 90204 0.4940 +7638 342909 0.4290 +7639 23592 0.4070 +7639 55970 0.4060 +7639 81931 0.4170 +7639 171392 0.5230 +7639 200407 0.4520 +7639 285672 0.4500 +7643 84148 0.4300 +7644 7757 0.4600 +7644 8882 0.7650 +7644 10155 0.4980 +7644 64397 0.8150 +7652 10155 0.5220 +7652 57615 0.4500 +7652 81127 0.4470 +7652 219493 0.4100 +7652 390142 0.4160 +7652 390148 0.4300 +7652 441234 0.4550 +7673 7711 0.7760 +7673 8690 0.4100 +7673 10155 0.5180 +7673 81491 0.4740 +7673 90506 0.4330 +7673 387718 0.5100 +7675 57335 0.4640 +7678 10155 0.5850 +7681 7857 0.4260 +7681 8761 0.4680 +7681 8788 0.5910 +7681 8926 0.8170 +7681 10477 0.4350 +7681 23191 0.4790 +7681 23742 0.8110 +7681 26986 0.6510 +7681 54551 0.9420 +7681 57194 0.8960 +7681 57798 0.4020 +7681 81614 0.5770 +7681 84260 0.4180 +7681 84634 0.6780 +7681 114791 0.6260 +7681 123606 0.5730 +7681 128674 0.4100 +7681 148581 0.4250 +7681 353500 0.5440 +7681 389421 0.5060 +7690 8535 0.7550 +7690 9457 0.4530 +7690 10472 0.4220 +7690 22976 0.5100 +7690 23309 0.6460 +7690 23354 0.5080 +7690 55100 0.4080 +7690 55178 0.4680 +7690 55559 0.4420 +7690 56946 0.7870 +7690 57649 0.4350 +7690 57798 0.5010 +7690 79441 0.5460 +7690 79842 0.4140 +7690 115426 0.7310 +7690 167359 0.4520 +7690 205564 0.4280 +7690 100129792 0.4560 +7691 10998 0.4680 +7691 84148 0.4280 +7691 220929 0.4180 +7692 7818 0.4790 +7692 8554 0.4490 +7692 10155 0.7840 +7692 10621 0.5260 +7692 10741 0.6470 +7692 22888 0.4120 +7692 26152 0.4290 +7692 27349 0.4250 +7692 51116 0.6360 +7692 54627 0.5310 +7692 55184 0.5140 +7692 57419 0.4960 +7692 60485 0.4630 +7692 79175 0.4640 +7692 84874 0.4850 +7692 340385 0.4690 +7693 9343 0.4480 +7693 10826 0.5820 +7693 11184 0.4180 +7693 22818 0.5070 +7693 23270 0.4980 +7693 23361 0.4080 +7693 51710 0.4350 +7693 55659 0.4830 +7693 57343 0.4060 +7693 79852 0.4010 +7693 80818 0.4280 +7693 115560 0.4090 +7693 148266 0.4970 +7693 284307 0.4990 +7693 284390 0.4590 +7694 10155 0.5220 +7694 57573 0.4190 +7694 65982 0.4060 +7695 10155 0.6660 +7695 130162 0.4260 +7697 10155 0.5860 +7697 132949 0.5470 +7697 340252 0.5410 +7697 100288413 0.4620 +7699 10155 0.6650 +7699 11066 0.5120 +7699 84292 0.4320 +7700 10155 0.6050 +7700 23288 0.7110 +7700 54872 0.4350 +7700 56242 0.4040 +7700 137392 0.5790 +7700 145282 0.5310 +7700 285600 0.5860 +7701 9730 0.4390 +7701 9923 0.4870 +7701 10623 0.4350 +7701 23163 0.4580 +7701 23363 0.4400 +7701 23644 0.4790 +7701 25930 0.4400 +7701 27148 0.5220 +7701 51021 0.4810 +7701 55626 0.5730 +7701 56156 0.4560 +7701 64114 0.4240 +7701 79411 0.4830 +7701 79739 0.4610 +7701 80153 0.4070 +7701 81543 0.4120 +7701 84792 0.4190 +7701 151258 0.4590 +7701 283373 0.5040 +7701 285180 0.5320 +7701 342346 0.6340 +7701 390061 0.4470 +7701 399909 0.4410 +7701 440590 0.4710 +7702 7707 0.4890 +7702 8812 0.5230 +7702 8846 0.5340 +7702 8898 0.4410 +7702 9126 0.7620 +7702 9533 0.5220 +7702 10155 0.4550 +7702 10302 0.5720 +7702 10621 0.5990 +7702 10622 0.5470 +7702 10623 0.5840 +7702 10664 0.7670 +7702 11016 0.4560 +7702 11021 0.4850 +7702 11104 0.4700 +7702 11128 0.6460 +7702 11335 0.4330 +7702 25942 0.4250 +7702 27159 0.4510 +7702 27297 0.5120 +7702 29101 0.5010 +7702 51082 0.5100 +7702 51340 0.4570 +7702 51585 0.5070 +7702 51728 0.5350 +7702 55145 0.6110 +7702 55290 0.6100 +7702 55703 0.5880 +7702 55718 0.5110 +7702 55814 0.6610 +7702 57215 0.8330 +7702 57680 0.8400 +7702 64321 0.4160 +7702 64963 0.4430 +7702 79102 0.5540 +7702 83607 0.4440 +7702 84265 0.5350 +7702 91603 0.4440 +7702 129685 0.6290 +7702 147912 0.9090 +7702 171568 0.5150 +7702 389421 0.5410 +7703 7874 0.6870 +7703 8085 0.5270 +7703 8202 0.5160 +7703 8237 0.6680 +7703 8290 0.6610 +7703 8314 0.9090 +7703 8331 0.5150 +7703 8334 0.5150 +7703 8337 0.8710 +7703 8338 0.8710 +7703 8340 0.5350 +7703 8341 0.5350 +7703 8342 0.5350 +7703 8345 0.5350 +7703 8347 0.5350 +7703 8348 0.5350 +7703 8349 0.6920 +7703 8356 0.8230 +7703 8361 0.6020 +7703 8467 0.4310 +7703 8535 0.9970 +7703 8697 0.9050 +7703 8726 0.9740 +7703 8881 0.9000 +7703 8970 0.5350 +7703 9070 0.5680 +7703 9577 0.9010 +7703 9611 0.8080 +7703 9898 0.9000 +7703 10138 0.9780 +7703 10219 0.4260 +7703 10336 0.9850 +7703 10370 0.7410 +7703 10389 0.9700 +7703 10393 0.9000 +7703 10951 0.9540 +7703 11065 0.9070 +7703 11091 0.6080 +7703 11335 0.4600 +7703 22823 0.5810 +7703 22955 0.9970 +7703 22976 0.5260 +7703 23054 0.5030 +7703 23269 0.4620 +7703 23429 0.9910 +7703 23451 0.5730 +7703 23466 0.9920 +7703 23492 0.9980 +7703 23512 0.9640 +7703 25803 0.4410 +7703 25847 0.9000 +7703 25906 0.9000 +7703 26053 0.5030 +7703 26147 0.5710 +7703 27338 0.9120 +7703 29882 0.9060 +7703 29945 0.9000 +7703 29947 0.4560 +7703 51239 0.5400 +7703 51343 0.5480 +7703 51433 0.9090 +7703 51434 0.9130 +7703 51529 0.9000 +7703 54145 0.5350 +7703 54880 0.9580 +7703 55252 0.6650 +7703 55766 0.5150 +7703 56242 0.4310 +7703 57332 0.9980 +7703 58508 0.5480 +7703 63035 0.8060 +7703 64319 0.6510 +7703 64682 0.9000 +7703 79184 0.9100 +7703 79447 0.5310 +7703 79923 0.4520 +7703 80012 0.9930 +7703 80816 0.5740 +7703 83746 0.7460 +7703 84108 0.9800 +7703 84333 0.9850 +7703 84678 0.7600 +7703 84733 0.9990 +7703 84759 0.9880 +7703 85236 0.5350 +7703 92912 0.4370 +7703 94239 0.5340 +7703 119504 0.9000 +7703 121536 0.9430 +7703 128312 0.5350 +7703 132625 0.5890 +7703 140459 0.5400 +7703 148581 0.4820 +7703 166979 0.5450 +7703 171023 0.9120 +7703 246184 0.9000 +7703 255626 0.5350 +7703 404281 0.5680 +7703 440093 0.6620 +7703 440686 0.6610 +7703 474382 0.5150 +7703 653604 0.8230 +7703 100170841 0.5940 +7703 100532731 0.9860 +7704 8139 0.4440 +7704 8204 0.4650 +7704 8320 0.5960 +7704 8405 0.4240 +7704 8433 0.6440 +7704 8452 0.9250 +7704 8807 0.4910 +7704 8809 0.6740 +7704 8835 0.4230 +7704 8841 0.6260 +7704 8883 0.5030 +7704 9021 0.4710 +7704 9034 0.4470 +7704 9039 0.5020 +7704 9040 0.5410 +7704 9219 0.5060 +7704 9437 0.4850 +7704 9580 0.4220 +7704 9611 0.9750 +7704 9612 0.9780 +7704 9734 0.5540 +7704 9759 0.9420 +7704 9817 0.4240 +7704 9860 0.4130 +7704 9903 0.6280 +7704 9978 0.6450 +7704 10013 0.4210 +7704 10014 0.5880 +7704 10020 0.6460 +7704 10159 0.7270 +7704 10273 0.4350 +7704 10320 0.4320 +7704 10324 0.4220 +7704 10628 0.6790 +7704 10663 0.5090 +7704 11007 0.5260 +7704 11275 0.4460 +7704 11339 0.4200 +7704 22974 0.4010 +7704 23142 0.5030 +7704 23309 0.4200 +7704 23412 0.4990 +7704 23492 0.4110 +7704 23512 0.5160 +7704 23710 0.4050 +7704 25942 0.8260 +7704 26249 0.4500 +7704 27087 0.4150 +7704 27252 0.4450 +7704 28952 0.4990 +7704 28991 0.4990 +7704 29099 0.4990 +7704 29924 0.6430 +7704 30009 0.6360 +7704 50511 0.6720 +7704 50615 0.4180 +7704 50616 0.4050 +7704 50674 0.5480 +7704 50943 0.4470 +7704 51088 0.4110 +7704 51122 0.4990 +7704 51397 0.5050 +7704 51564 0.6960 +7704 54165 0.5030 +7704 54514 0.6420 +7704 54937 0.5930 +7704 54939 0.5130 +7704 54951 0.5270 +7704 55175 0.4350 +7704 55208 0.5030 +7704 55540 0.4400 +7704 55832 0.5110 +7704 55958 0.4560 +7704 56647 0.5080 +7704 57616 0.4250 +7704 64410 0.4200 +7704 79727 0.5660 +7704 79923 0.4360 +7704 80262 0.5560 +7704 81608 0.4730 +7704 84078 0.4110 +7704 84106 0.7280 +7704 84259 0.5030 +7704 84541 0.4110 +7704 84861 0.4110 +7704 89890 0.4110 +7704 90135 0.5090 +7704 90293 0.4110 +7704 92140 0.6680 +7704 114836 0.4130 +7704 114907 0.4190 +7704 117157 0.4870 +7704 118663 0.4290 +7704 122416 0.4330 +7704 140456 0.4600 +7704 140458 0.4200 +7704 140462 0.4540 +7704 149951 0.4990 +7704 150684 0.6930 +7704 151126 0.4050 +7704 166647 0.6970 +7704 170622 0.4990 +7704 199713 0.5740 +7704 255877 0.5180 +7704 339345 0.7750 +7704 342977 0.6620 +7704 346673 0.8130 +7704 402381 0.6970 +7704 100133941 0.4440 +7704 100526761 0.5670 +7704 100532731 0.8870 +7705 8539 0.7740 +7705 8697 0.4880 +7705 8801 0.4550 +7705 9716 0.4480 +7705 22868 0.5300 +7705 54989 0.4690 +7705 56916 0.5530 +7705 147746 0.4670 +7705 261726 0.4050 +7706 7812 0.4860 +7706 8078 0.4130 +7706 8087 0.4490 +7706 8106 0.5500 +7706 8161 0.4530 +7706 8239 0.5010 +7706 8424 0.7300 +7706 8517 0.6930 +7706 8638 0.6570 +7706 8737 0.6810 +7706 8761 0.4180 +7706 8772 0.6340 +7706 8805 0.4100 +7706 8878 0.6940 +7706 9081 0.7240 +7706 9100 0.7370 +7706 9112 0.5830 +7706 9140 0.5750 +7706 9188 0.5790 +7706 9246 0.9870 +7706 9338 0.4220 +7706 9470 0.5870 +7706 9474 0.5950 +7706 9584 0.6050 +7706 9636 0.9350 +7706 9641 0.8150 +7706 9677 0.4310 +7706 9683 0.5550 +7706 9817 0.6860 +7706 9830 0.4350 +7706 9866 0.6170 +7706 9908 0.8390 +7706 9958 0.8320 +7706 9960 0.4840 +7706 10010 0.7140 +7706 10045 0.4030 +7706 10146 0.8640 +7706 10155 0.5980 +7706 10190 0.5690 +7706 10342 0.6410 +7706 10379 0.5580 +7706 10410 0.4500 +7706 10616 0.5380 +7706 10643 0.4080 +7706 10898 0.5730 +7706 10906 0.4670 +7706 11035 0.4050 +7706 11060 0.4210 +7706 11074 0.4690 +7706 11201 0.5300 +7706 11274 0.5820 +7706 11331 0.4100 +7706 22861 0.4250 +7706 22954 0.6110 +7706 23118 0.6880 +7706 23252 0.4300 +7706 23347 0.4810 +7706 23351 0.7390 +7706 23405 0.4710 +7706 23476 0.5620 +7706 23586 0.9990 +7706 24138 0.6850 +7706 25820 0.7780 +7706 26007 0.5920 +7706 26986 0.5080 +7706 27338 0.4680 +7706 29110 0.8240 +7706 50852 0.7620 +7706 51191 0.7620 +7706 51284 0.4450 +7706 51320 0.6940 +7706 51426 0.4990 +7706 51438 0.4500 +7706 51455 0.5110 +7706 51477 0.4070 +7706 54464 0.4380 +7706 54476 0.4340 +7706 54606 0.5740 +7706 54765 0.4730 +7706 54941 0.8310 +7706 55072 0.7770 +7706 55217 0.4310 +7706 55294 0.4240 +7706 55593 0.6300 +7706 55601 0.4650 +7706 56829 0.9200 +7706 57169 0.5710 +7706 57506 0.9820 +7706 64135 0.9800 +7706 64761 0.4080 +7706 64852 0.5050 +7706 79132 0.8950 +7706 79671 0.6740 +7706 79727 0.6000 +7706 79845 0.5100 +7706 80143 0.5540 +7706 80315 0.6000 +7706 81844 0.5570 +7706 83666 0.4010 +7706 83737 0.6550 +7706 84166 0.7800 +7706 84282 0.7400 +7706 85364 0.5640 +7706 85441 0.4360 +7706 89122 0.5640 +7706 90268 0.4440 +7706 91107 0.5230 +7706 91543 0.5990 +7706 91662 0.5150 +7706 115004 0.5460 +7706 129607 0.4510 +7706 135644 0.5030 +7706 148022 0.5470 +7706 162979 0.4460 +7706 170506 0.6090 +7706 221302 0.6740 +7706 253980 0.6770 +7706 286827 0.5090 +7706 442862 0.7290 +7706 728642 0.4290 +7707 8065 0.4390 +7707 9447 0.4010 +7707 9656 0.4680 +7707 9759 0.4240 +7707 23429 0.4610 +7707 50809 0.4260 +7707 54542 0.4570 +7707 54754 0.6260 +7707 55328 0.4900 +7707 55754 0.4570 +7707 55914 0.4740 +7707 161882 0.5740 +7707 284309 0.4360 +7707 388536 0.4040 +7709 7988 0.4690 +7709 8379 0.4920 +7709 8886 0.4920 +7709 10075 0.8260 +7709 10221 0.4620 +7709 10948 0.5380 +7709 10988 0.5100 +7709 11073 0.8500 +7709 26993 0.4060 +7709 51185 0.5810 +7709 51611 0.4250 +7709 57659 0.8410 +7709 63906 0.6260 +7709 64320 0.4240 +7709 79680 0.4730 +7709 79797 0.5460 +7709 80198 0.4710 +7709 84219 0.4450 +7709 84619 0.4750 +7709 112939 0.4630 +7709 114790 0.4490 +7709 127002 0.5080 +7709 166793 0.4250 +7710 8320 0.5060 +7710 8999 0.4720 +7710 10155 0.5220 +7710 10801 0.4610 +7710 22795 0.4990 +7710 27253 0.4180 +7710 79689 0.5740 +7710 79998 0.5660 +7710 91775 0.4830 +7710 140730 0.4440 +7710 286336 0.4490 +7710 389658 0.4460 +7711 7766 0.5410 +7711 10155 0.5180 +7711 55659 0.5110 +7711 79632 0.4030 +7711 130540 0.4310 +7711 440561 0.4070 +7711 474170 0.4210 +7712 9725 0.5080 +7712 10155 0.5330 +7712 53336 0.4090 +7712 340578 0.4310 +7712 441525 0.4160 +7716 9360 0.4090 +7716 10933 0.5850 +7716 54464 0.4380 +7716 54521 0.4940 +7716 84146 0.4790 +7716 135152 0.4930 +7718 10127 0.5620 +7718 51298 0.4180 +7718 53336 0.4470 +7718 53940 0.4790 +7718 54967 0.4200 +7718 55663 0.6950 +7718 81576 0.5600 +7718 89885 0.4780 +7718 124912 0.5070 +7718 125965 0.4020 +7718 203413 0.4320 +7718 222698 0.4770 +7718 256309 0.6300 +7718 388849 0.4710 +7726 8227 0.4450 +7726 8517 0.6150 +7726 8878 0.5090 +7726 9081 0.4180 +7726 9401 0.5100 +7726 9538 0.4360 +7726 9802 0.4050 +7726 9830 0.5140 +7726 10155 0.4960 +7726 10454 0.6220 +7726 10488 0.4040 +7726 10616 0.4440 +7726 10626 0.4020 +7726 10713 0.5380 +7726 22978 0.5700 +7726 23135 0.5150 +7726 23274 0.4370 +7726 23586 0.4140 +7726 23650 0.4120 +7726 26011 0.4360 +7726 29110 0.8130 +7726 50852 0.7720 +7726 51127 0.4870 +7726 51230 0.6280 +7726 51428 0.4390 +7726 51574 0.5210 +7726 54805 0.4250 +7726 55217 0.4740 +7726 56244 0.4140 +7726 56257 0.4300 +7726 65992 0.4350 +7726 79102 0.6910 +7726 80742 0.4420 +7726 81844 0.4370 +7726 84154 0.4100 +7726 114088 0.4690 +7726 135656 0.4270 +7726 149628 0.6360 +7726 253461 0.4740 +7726 442862 0.4300 +7727 7741 0.4180 +7727 7745 0.4650 +7727 7753 0.5170 +7727 7755 0.4200 +7727 7760 0.6300 +7727 7775 0.6560 +7727 26048 0.5130 +7727 27238 0.8940 +7727 51282 0.7530 +7727 54925 0.9650 +7727 54993 0.4410 +7727 55311 0.6850 +7727 55663 0.5900 +7727 65982 0.7200 +7727 79446 0.4370 +7727 80317 0.6340 +7727 84307 0.7940 +7727 84547 0.7830 +7727 158399 0.6200 +7727 222696 0.4940 +7727 252884 0.8200 +7727 284312 0.8320 +7727 387032 0.8520 +7728 9422 0.5010 +7728 10155 0.5810 +7732 8128 0.5890 +7732 8349 0.4310 +7732 9804 0.4180 +7732 10666 0.4270 +7732 22905 0.4470 +7732 22924 0.4290 +7732 25807 0.4480 +7732 26227 0.5720 +7732 50615 0.4010 +7732 54776 0.5330 +7733 10155 0.6470 +7733 126669 0.5060 +7737 7919 0.8050 +7737 8175 0.9980 +7737 8449 0.9980 +7737 8559 0.6470 +7737 8669 0.4890 +7737 8896 0.9820 +7737 9092 0.9170 +7737 9128 0.9050 +7737 9129 0.9270 +7737 9343 0.9930 +7737 9360 0.5320 +7737 9410 0.8190 +7737 9416 0.6590 +7737 9419 0.9000 +7737 9584 0.5700 +7737 9716 0.8410 +7737 9775 0.8240 +7737 9785 0.8420 +7737 9939 0.5090 +7737 10054 0.4220 +7737 10189 0.8060 +7737 10250 0.8140 +7737 10262 0.9930 +7737 10283 0.9990 +7737 10286 0.8270 +7737 10291 0.9950 +7737 10450 0.8480 +7737 10569 0.6800 +7737 10594 0.9950 +7737 10891 0.4780 +7737 10907 0.9120 +7737 10915 0.4160 +7737 10946 0.9940 +7737 10973 0.7130 +7737 10992 0.9990 +7737 11102 0.4210 +7737 11157 0.9060 +7737 11193 0.9100 +7737 11338 0.4680 +7737 22938 0.9350 +7737 23020 0.9990 +7737 23082 0.4780 +7737 23091 0.5490 +7737 23398 0.5910 +7737 23450 0.9960 +7737 23451 0.9970 +7737 23517 0.8330 +7737 23524 0.9950 +7737 23658 0.9130 +7737 23759 0.9740 +7737 24148 0.9210 +7737 25804 0.9180 +7737 25949 0.7730 +7737 26121 0.9210 +7737 27238 0.9710 +7737 27258 0.9010 +7737 27339 0.9930 +7737 51340 0.9580 +7737 51362 0.9870 +7737 51503 0.9750 +7737 51593 0.8050 +7737 51634 0.9950 +7737 51639 0.8530 +7737 51645 0.9710 +7737 51690 0.9110 +7737 51691 0.9120 +7737 53938 0.8470 +7737 54883 0.9060 +7737 55011 0.7570 +7737 55094 0.4110 +7737 55100 0.5320 +7737 55110 0.9040 +7737 55234 0.9030 +7737 55696 0.9640 +7737 55702 0.8620 +7737 55749 0.5700 +7737 56949 0.9390 +7737 57187 0.5840 +7737 57703 0.9990 +7737 57819 0.9080 +7737 59286 0.4830 +7737 60625 0.5620 +7737 65109 0.5620 +7737 79005 0.9080 +7737 79446 0.5670 +7737 79637 0.9240 +7737 79753 0.9960 +7737 83443 0.9920 +7737 84060 0.8250 +7737 84164 0.5370 +7737 84811 0.9970 +7737 84844 0.9930 +7737 84950 0.9230 +7737 84967 0.4890 +7737 85313 0.5540 +7737 90987 0.4400 +7737 91603 0.4690 +7737 136647 0.7120 +7737 138199 0.4630 +7737 151903 0.8480 +7737 153527 0.9110 +7737 154007 0.5140 +7737 164045 0.5750 +7737 199746 0.4510 +7737 222183 0.5630 +7737 286075 0.4270 +7737 388561 0.4100 +7737 404672 0.5090 +7737 100534599 0.8230 +7738 10155 0.6350 +7738 10279 0.4360 +7738 10473 0.4160 +7738 23378 0.4530 +7738 94026 0.5710 +7738 149420 0.5380 +7739 8519 0.4240 +7739 27302 0.4950 +7739 29121 0.4760 +7739 55334 0.4310 +7739 56061 0.4290 +7739 56063 0.4590 +7739 90871 0.4200 +7739 100861540 0.5200 +7741 10325 0.4370 +7741 26152 0.4570 +7741 55857 0.4190 +7741 79716 0.4240 +7741 81559 0.4460 +7741 147645 0.4530 +7741 203523 0.4580 +7741 222698 0.5740 +7741 256472 0.4180 +7741 386675 0.5980 +7741 387032 0.5680 +7743 10155 0.5180 +7743 10363 0.4500 +7743 25880 0.4400 +7743 54534 0.6770 +7743 55771 0.4220 +7743 55954 0.4320 +7743 79159 0.5960 +7743 84955 0.4160 +7745 7746 0.4580 +7745 7775 0.6080 +7745 10127 0.4030 +7745 10155 0.6590 +7745 23524 0.4190 +7745 51282 0.4680 +7745 54925 0.7480 +7745 55311 0.7280 +7745 55663 0.4460 +7745 80317 0.4780 +7745 84307 0.7790 +7745 84547 0.7040 +7745 135293 0.4720 +7745 158399 0.6180 +7745 220929 0.4070 +7745 222696 0.4070 +7745 222698 0.6450 +7745 252884 0.7850 +7745 375743 0.5330 +7745 387032 0.7470 +7746 51282 0.6060 +7746 55663 0.7970 +7746 222698 0.6140 +7748 10155 0.8780 +7748 51188 0.5330 +7748 56935 0.4910 +7748 132949 0.4220 +7748 139105 0.4060 +7748 170960 0.4690 +7748 442247 0.4160 +7750 7753 0.6110 +7750 7764 0.7380 +7750 7771 0.6530 +7750 8074 0.4700 +7750 8328 0.5770 +7750 8361 0.5360 +7750 8655 0.4020 +7750 8805 0.7210 +7750 8822 0.4510 +7750 9107 0.5090 +7750 9108 0.4830 +7750 9147 0.4670 +7750 9202 0.7770 +7750 9203 0.8670 +7750 9208 0.5660 +7750 9321 0.5560 +7750 9530 0.4050 +7750 9569 0.4450 +7750 9658 0.5650 +7750 9846 0.5000 +7750 10107 0.4390 +7750 10320 0.4840 +7750 10362 0.8350 +7750 10664 0.4060 +7750 10735 0.4160 +7750 11052 0.5600 +7750 11064 0.7150 +7750 11116 0.7690 +7750 11160 0.4050 +7750 23028 0.9690 +7750 23186 0.9570 +7750 23199 0.7790 +7750 23314 0.4860 +7750 23394 0.4800 +7750 23512 0.4030 +7750 26036 0.5510 +7750 26054 0.6990 +7750 26127 0.9240 +7750 26175 0.4710 +7750 26281 0.4540 +7750 27097 0.4480 +7750 27332 0.4380 +7750 50945 0.4240 +7750 51084 0.4770 +7750 51185 0.4050 +7750 51317 0.8380 +7750 51460 0.6350 +7750 51742 0.4620 +7750 54816 0.4290 +7750 54870 0.4390 +7750 55729 0.4470 +7750 55758 0.6960 +7750 55833 0.4140 +7750 56987 0.4340 +7750 64839 0.4500 +7750 79149 0.6380 +7750 79605 0.4620 +7750 80155 0.4070 +7750 81608 0.4820 +7750 170394 0.4480 +7750 283248 0.7050 +7750 399687 0.7570 +7752 9968 0.4860 +7752 10155 0.5850 +7752 10919 0.6860 +7752 11335 0.4220 +7752 23462 0.4420 +7752 54906 0.6980 +7752 79759 0.4510 +7752 84911 0.4570 +7752 91151 0.5280 +7752 129025 0.5950 +7752 643641 0.4160 +7753 8543 0.6100 +7753 9203 0.6450 +7753 9880 0.5210 +7753 9935 0.4390 +7753 10127 0.4140 +7753 10155 0.6180 +7753 23314 0.4820 +7753 25888 0.6010 +7753 51282 0.6870 +7753 51531 0.5290 +7753 53407 0.5230 +7753 54993 0.4560 +7753 55351 0.5270 +7753 55363 0.4910 +7753 55800 0.5040 +7753 57541 0.5950 +7753 60529 0.4570 +7753 64794 0.4750 +7753 84830 0.6180 +7753 92935 0.4300 +7753 132884 0.4910 +7753 133923 0.6610 +7753 147658 0.6110 +7753 284312 0.4590 +7753 347853 0.5100 +7753 392255 0.4340 +7753 441054 0.4320 +7753 104909134 0.4450 +7755 10155 0.6660 +7755 26151 0.5210 +7755 57017 0.5400 +7755 79935 0.4790 +7755 136306 0.5010 +7755 255027 0.4180 +7756 8175 0.7680 +7756 8480 0.5870 +7756 8880 0.7160 +7756 9184 0.9970 +7756 9295 0.6180 +7756 9584 0.5510 +7756 9656 0.4560 +7756 9774 0.4960 +7756 9798 0.4340 +7756 9898 0.4510 +7756 10054 0.4150 +7756 10291 0.4210 +7756 10772 0.6810 +7756 10921 0.6840 +7756 10946 0.7600 +7756 11100 0.7170 +7756 11222 0.4660 +7756 22827 0.4060 +7756 23450 0.4840 +7756 23451 0.6070 +7756 28960 0.4130 +7756 51366 0.4600 +7756 51379 0.5110 +7756 55813 0.4960 +7756 57567 0.4150 +7756 58517 0.4230 +7756 79084 0.5930 +7756 134829 0.4690 +7756 153527 0.4390 +7757 10155 0.5880 +7757 10200 0.5930 +7757 26094 0.5760 +7757 51750 0.6520 +7757 54899 0.5730 +7757 60625 0.5830 +7757 79991 0.7010 +7757 80169 0.6220 +7757 92345 0.4620 +7757 113835 0.4400 +7760 7775 0.6840 +7760 9605 0.4550 +7760 10155 0.5220 +7760 25917 0.4310 +7760 51282 0.6190 +7760 54925 0.8390 +7760 55269 0.4410 +7760 65982 0.5930 +7760 84307 0.8270 +7760 84547 0.7850 +7760 84905 0.5330 +7760 91151 0.4230 +7760 284312 0.7770 +7760 387032 0.7950 +7761 7762 0.4610 +7761 8788 0.4550 +7761 9031 0.6600 +7761 10155 0.5210 +7761 10210 0.4450 +7761 11176 0.8020 +7761 11177 0.6830 +7761 29994 0.8070 +7761 57511 0.4270 +7761 64324 0.5380 +7761 120775 0.4200 +7761 124401 0.4060 +7761 343171 0.4940 +7762 7764 0.4660 +7762 7915 0.4280 +7762 8290 0.4810 +7762 8356 0.4810 +7762 8788 0.4550 +7762 9031 0.5900 +7762 10077 0.4740 +7762 10155 0.5350 +7762 11176 0.9420 +7762 11177 0.6580 +7762 22984 0.4110 +7762 29994 0.9420 +7762 51282 0.4760 +7762 55663 0.4070 +7762 55690 0.4170 +7762 64324 0.5380 +7762 65980 0.4800 +7762 65982 0.5150 +7762 79868 0.4470 +7762 120775 0.5000 +7762 120776 0.4190 +7762 127255 0.4450 +7762 128853 0.4630 +7762 158399 0.4760 +7762 283297 0.4230 +7762 284312 0.4860 +7762 388272 0.4780 +7762 440093 0.4810 +7762 440686 0.4810 +7762 653604 0.4810 +7762 728858 0.4180 +7763 8517 0.7550 +7763 9135 0.4050 +7763 9310 0.5480 +7763 23361 0.5590 +7763 25976 0.4490 +7763 29970 0.4410 +7763 51710 0.5590 +7763 80818 0.5550 +7763 90637 0.4790 +7763 93550 0.4300 +7763 115560 0.5590 +7763 138240 0.5070 +7763 138241 0.6100 +7763 148266 0.5530 +7763 196394 0.4070 +7763 254170 0.4750 +7763 284390 0.5580 +7763 391714 0.5690 +7763 100505385 0.4410 +7764 8202 0.9170 +7764 8204 0.6260 +7764 8289 0.4150 +7764 8290 0.4620 +7764 8331 0.5280 +7764 8334 0.5560 +7764 8337 0.5490 +7764 8338 0.5480 +7764 8340 0.5310 +7764 8341 0.5300 +7764 8342 0.5340 +7764 8345 0.5400 +7764 8347 0.5340 +7764 8348 0.5330 +7764 8349 0.5420 +7764 8356 0.6210 +7764 8361 0.5270 +7764 8493 0.4730 +7764 8537 0.8520 +7764 8970 0.5300 +7764 9203 0.5810 +7764 9589 0.4550 +7764 9640 0.4720 +7764 9658 0.6390 +7764 9687 0.5840 +7764 9821 0.4420 +7764 10362 0.9650 +7764 10765 0.7600 +7764 10919 0.6790 +7764 23028 0.9860 +7764 23030 0.5450 +7764 23091 0.5840 +7764 23112 0.5290 +7764 23186 0.9980 +7764 25962 0.6400 +7764 26523 0.5130 +7764 27161 0.5510 +7764 27324 0.4200 +7764 27327 0.5880 +7764 51268 0.6070 +7764 51274 0.6880 +7764 51317 0.9560 +7764 54145 0.5300 +7764 54890 0.5020 +7764 55553 0.4120 +7764 55758 0.4960 +7764 55766 0.5450 +7764 55827 0.4180 +7764 56339 0.7610 +7764 57016 0.4220 +7764 57592 0.4120 +7764 57706 0.5540 +7764 57721 0.4970 +7764 79728 0.4130 +7764 79872 0.5960 +7764 80139 0.4710 +7764 80209 0.4810 +7764 84733 0.4490 +7764 85236 0.5420 +7764 94239 0.5390 +7764 128312 0.5310 +7764 129642 0.4970 +7764 161882 0.4590 +7764 192669 0.5090 +7764 192670 0.5130 +7764 255626 0.5300 +7764 474382 0.5280 +7764 653604 0.6250 +7766 7813 0.6310 +7766 8548 0.4370 +7766 8930 0.4060 +7766 10155 0.6050 +7766 25862 0.6410 +7766 51478 0.4940 +7766 55142 0.7770 +7766 55906 0.4830 +7766 57835 0.4180 +7766 80224 0.4490 +7766 80264 0.4430 +7766 84839 0.4970 +7766 91526 0.4180 +7766 136051 0.7770 +7766 162966 0.4260 +7766 342909 0.4240 +7766 386675 0.4200 +7766 401494 0.6450 +7766 440275 0.5240 +7767 10155 0.7990 +7767 10419 0.7820 +7767 25799 0.4360 +7767 55635 0.8200 +7767 57669 0.4100 +7767 79084 0.5370 +7767 84527 0.4900 +7767 199704 0.4820 +7768 9310 0.4130 +7768 9668 0.6300 +7768 10155 0.5220 +7768 10780 0.7850 +7768 23576 0.4800 +7768 79673 0.4500 +7768 152815 0.4920 +7768 256051 0.5650 +7768 284349 0.5350 +7768 374887 0.4180 +7768 374928 0.6440 +7769 10155 0.5850 +7769 51372 0.4190 +7769 55634 0.4370 +7769 63926 0.4110 +7769 79714 0.4800 +7769 90506 0.4170 +7770 10155 0.5850 +7770 26152 0.4140 +7770 51281 0.4910 +7770 79634 0.4390 +7770 79780 0.4090 +7770 80071 0.4220 +7770 80110 0.4840 +7770 83604 0.4460 +7770 84125 0.4620 +7770 120863 0.4760 +7770 341799 0.5700 +7771 9310 0.6320 +7771 10155 0.6870 +7771 11064 0.5540 +7771 26127 0.6460 +7771 63905 0.4030 +7771 114908 0.4070 +7771 342909 0.6310 +7772 390648 0.5060 +7773 10155 0.5180 +7775 10127 0.4520 +7775 10168 0.6900 +7775 23660 0.7270 +7775 51282 0.6990 +7775 54925 0.8250 +7775 55311 0.4900 +7775 55663 0.7930 +7775 60490 0.6230 +7775 79818 0.4320 +7775 80317 0.7680 +7775 84196 0.5330 +7775 84224 0.4090 +7775 84307 0.7890 +7775 84547 0.6920 +7775 90835 0.4210 +7775 114821 0.7220 +7775 146050 0.4580 +7775 158399 0.6310 +7775 222696 0.6060 +7775 387032 0.7510 +7775 388325 0.4800 +7775 729759 0.4030 +7775 100101467 0.7320 +7776 9310 0.4080 +7776 10194 0.4020 +7776 10345 0.4130 +7776 23335 0.4150 +7776 51513 0.4420 +7776 55102 0.4320 +7776 55628 0.8190 +7776 57805 0.4870 +7776 64216 0.4230 +7776 79034 0.4040 +7776 79870 0.5650 +7776 84622 0.4510 +7776 93986 0.4310 +7776 112950 0.4450 +7776 205717 0.4570 +7776 284273 0.4210 +7776 375748 0.4980 +7779 7780 0.5980 +7779 7781 0.6180 +7779 7782 0.6360 +7779 7922 0.8070 +7779 9077 0.6210 +7779 9843 0.4250 +7779 9973 0.4220 +7779 10463 0.8290 +7779 11322 0.9690 +7779 23169 0.4150 +7779 23516 0.7770 +7779 25800 0.8160 +7779 27173 0.8980 +7779 29985 0.5620 +7779 29986 0.6610 +7779 30061 0.4410 +7779 51000 0.4760 +7779 51006 0.4270 +7779 51026 0.4150 +7779 55314 0.4300 +7779 55334 0.7610 +7779 55343 0.4080 +7779 55584 0.4690 +7779 55630 0.7310 +7779 55676 0.9590 +7779 55790 0.5030 +7779 56256 0.4290 +7779 57181 0.8200 +7779 64116 0.7700 +7779 64924 0.5930 +7779 84560 0.4400 +7779 91252 0.7430 +7779 147138 0.9640 +7779 148266 0.4970 +7779 148867 0.5160 +7779 152519 0.4290 +7779 169026 0.4510 +7779 201266 0.7490 +7779 221074 0.6810 +7779 283375 0.7760 +7780 7781 0.6320 +7780 7922 0.7390 +7780 10463 0.8080 +7780 23516 0.7170 +7780 25800 0.7160 +7780 27173 0.7320 +7780 29985 0.5050 +7780 29986 0.4900 +7780 51330 0.5920 +7780 55334 0.6520 +7780 55532 0.6330 +7780 55630 0.7460 +7780 55676 0.5620 +7780 57181 0.7330 +7780 64116 0.6850 +7780 64924 0.5050 +7780 80332 0.4850 +7780 91252 0.7940 +7780 132949 0.4590 +7780 148867 0.5220 +7780 201266 0.6780 +7780 221074 0.7390 +7780 283375 0.7530 +7780 503497 0.4870 +7781 7782 0.6580 +7781 7922 0.7220 +7781 8546 0.6620 +7781 8943 0.8020 +7781 9197 0.4340 +7781 9486 0.4020 +7781 10239 0.6010 +7781 10463 0.7990 +7781 23516 0.6780 +7781 25800 0.6890 +7781 26985 0.5340 +7781 27173 0.7150 +7781 29985 0.5190 +7781 29986 0.4430 +7781 55032 0.4940 +7781 55334 0.6940 +7781 55532 0.6720 +7781 55630 0.5320 +7781 55676 0.5320 +7781 57030 0.5740 +7781 57181 0.6640 +7781 57468 0.4320 +7781 57835 0.4570 +7781 59336 0.4080 +7781 64116 0.6670 +7781 64924 0.5120 +7781 80331 0.4480 +7781 91252 0.6950 +7781 126204 0.4040 +7781 140679 0.4010 +7781 147991 0.4380 +7781 148867 0.5270 +7781 200931 0.4410 +7781 201266 0.6740 +7781 221074 0.6880 +7781 283375 0.6910 +7781 648791 0.4290 +7782 7922 0.7650 +7782 9153 0.7930 +7782 10463 0.8340 +7782 23047 0.4320 +7782 23516 0.7490 +7782 25800 0.7640 +7782 27173 0.8720 +7782 29985 0.5270 +7782 29986 0.5780 +7782 50506 0.7110 +7782 53905 0.7320 +7782 55334 0.7400 +7782 55343 0.4390 +7782 55532 0.6650 +7782 55630 0.9600 +7782 55676 0.8910 +7782 57181 0.7640 +7782 58517 0.4200 +7782 64116 0.7290 +7782 64924 0.5110 +7782 91252 0.7740 +7782 133060 0.5060 +7782 148223 0.4020 +7782 148867 0.5150 +7782 201266 0.7420 +7782 221074 0.6780 +7782 283375 0.7270 +7783 7784 0.9990 +7783 8747 0.5130 +7783 8748 0.5150 +7783 8817 0.5200 +7783 8822 0.5900 +7783 8823 0.5390 +7783 8991 0.4510 +7783 9210 0.6620 +7783 9464 0.5910 +7783 11055 0.4020 +7783 11085 0.5200 +7783 22917 0.9970 +7783 22932 0.4260 +7783 26281 0.5260 +7783 26585 0.6480 +7783 27006 0.6160 +7783 50511 0.4350 +7783 51087 0.4690 +7783 54514 0.4240 +7783 54766 0.4390 +7783 57829 0.9970 +7783 58503 0.5760 +7783 60529 0.7050 +7783 64327 0.9580 +7783 66037 0.4110 +7783 126206 0.6430 +7783 132243 0.4850 +7783 135935 0.6470 +7783 255649 0.4320 +7783 284359 0.6450 +7783 326340 0.5500 +7783 342184 0.5130 +7783 344018 0.7300 +7783 346673 0.4260 +7783 353238 0.4350 +7783 402381 0.5200 +7783 431705 0.7840 +7783 431707 0.4010 +7783 494551 0.4760 +7784 8747 0.4990 +7784 8748 0.4990 +7784 8913 0.6650 +7784 9043 0.5600 +7784 9210 0.6750 +7784 9898 0.6760 +7784 10343 0.9390 +7784 10761 0.8850 +7784 11055 0.4250 +7784 11085 0.4990 +7784 22917 0.9990 +7784 50511 0.4960 +7784 51087 0.4250 +7784 54514 0.5640 +7784 54937 0.4090 +7784 57829 0.9990 +7784 124912 0.4140 +7784 126206 0.4870 +7784 132243 0.4780 +7784 135935 0.7430 +7784 255649 0.5420 +7784 284359 0.7550 +7784 326340 0.5740 +7784 344018 0.7340 +7784 346673 0.5550 +7784 353238 0.5620 +7784 359787 0.5440 +7784 402381 0.5820 +7784 431705 0.6320 +7784 431707 0.5140 +7784 441161 0.4390 +7784 494551 0.5070 +7784 100129669 0.4270 +7784 100526761 0.4060 +7786 8737 0.5700 +7786 8788 0.6360 +7786 8878 0.4490 +7786 9479 0.7740 +7786 11035 0.5520 +7786 23077 0.5860 +7786 23162 0.4470 +7786 23395 0.6820 +7786 23542 0.5090 +7786 51520 0.6300 +7786 51562 0.9190 +7786 57619 0.4540 +7786 80222 0.7680 +7786 118924 0.5100 +7786 123283 0.7670 +7786 200933 0.4270 +7789 79364 0.8590 +7789 149175 0.4030 +7791 8048 0.7110 +7791 8407 0.4030 +7791 8777 0.4340 +7791 8820 0.4050 +7791 8825 0.4650 +7791 8976 0.4120 +7791 9113 0.8650 +7791 9124 0.4340 +7791 9260 0.5680 +7791 9414 0.4940 +7791 9501 0.5560 +7791 9564 0.9550 +7791 9722 0.5110 +7791 10163 0.4250 +7791 10501 0.5590 +7791 10529 0.7470 +7791 10611 0.4590 +7791 10755 0.5220 +7791 10979 0.4770 +7791 22895 0.4330 +7791 23022 0.5190 +7791 23336 0.8840 +7791 23396 0.5740 +7791 26000 0.4100 +7791 26115 0.6210 +7791 26136 0.8120 +7791 26258 0.7240 +7791 26524 0.5420 +7791 28964 0.5150 +7791 28996 0.4990 +7791 29780 0.6090 +7791 51176 0.4530 +7791 51317 0.5090 +7791 51466 0.9350 +7791 51611 0.4620 +7791 54518 0.4010 +7791 55272 0.5910 +7791 55740 0.9230 +7791 55742 0.6350 +7791 55749 0.7220 +7791 57506 0.4090 +7791 57556 0.4520 +7791 60485 0.4060 +7791 64098 0.6070 +7791 64759 0.4570 +7791 65059 0.6110 +7791 83660 0.9990 +7791 84816 0.7120 +7791 171024 0.4220 +7791 343521 0.4930 +7791 345456 0.6600 +7791 375189 0.6620 +7798 9743 0.4630 +7798 10097 0.5830 +7798 10277 0.4100 +7798 11104 0.5370 +7798 23013 0.4080 +7798 23271 0.4320 +7798 26047 0.4180 +7798 51213 0.4070 +7798 51474 0.5730 +7798 54443 0.4020 +7798 54462 0.4440 +7798 55930 0.4380 +7798 93986 0.4020 +7798 114798 0.4710 +7799 7994 0.5010 +7799 8202 0.4340 +7799 8290 0.7040 +7799 8356 0.4520 +7799 8361 0.4660 +7799 8985 0.6500 +7799 9589 0.5960 +7799 9658 0.4230 +7799 9739 0.4870 +7799 9869 0.5980 +7799 10274 0.4590 +7799 10320 0.4470 +7799 10498 0.4630 +7799 10664 0.5130 +7799 10725 0.4970 +7799 10919 0.5830 +7799 11108 0.4190 +7799 11186 0.5110 +7799 11214 0.4730 +7799 22806 0.4650 +7799 23013 0.4570 +7799 23028 0.4560 +7799 23081 0.4020 +7799 23133 0.4320 +7799 29072 0.6450 +7799 29855 0.5310 +7799 51111 0.4500 +7799 51780 0.4470 +7799 55870 0.6090 +7799 55904 0.4360 +7799 56978 0.5940 +7799 58508 0.6180 +7799 59336 0.4890 +7799 64324 0.5990 +7799 64754 0.4730 +7799 79723 0.5560 +7799 79813 0.5430 +7799 79823 0.8530 +7799 80854 0.4320 +7799 83852 0.5300 +7799 84260 0.5110 +7799 84444 0.4540 +7799 84787 0.4560 +7799 162239 0.5890 +7799 387893 0.4620 +7799 440093 0.4520 +7799 440686 0.4520 +7799 653604 0.4470 +7802 8382 0.4960 +7802 8632 0.5920 +7802 8655 0.5490 +7802 8671 0.4790 +7802 8701 0.7020 +7802 9497 0.4180 +7802 9498 0.6140 +7802 9576 0.6930 +7802 9742 0.4570 +7802 10126 0.6750 +7802 10233 0.4350 +7802 10856 0.4540 +7802 23639 0.7260 +7802 25809 0.5090 +7802 25981 0.6370 +7802 26160 0.4960 +7802 27019 0.8800 +7802 27156 0.4210 +7802 27285 0.4370 +7802 29070 0.5250 +7802 29889 0.5870 +7802 51098 0.4910 +7802 51364 0.7810 +7802 51626 0.6210 +7802 54768 0.4880 +7802 54919 0.6640 +7802 55011 0.5500 +7802 55036 0.7880 +7802 55130 0.7540 +7802 55172 0.6080 +7802 55329 0.4050 +7802 55567 0.5990 +7802 55722 0.6020 +7802 55764 0.4060 +7802 55779 0.4720 +7802 56171 0.6680 +7802 56683 0.5500 +7802 56912 0.4380 +7802 57282 0.4180 +7802 57560 0.4610 +7802 57728 0.4370 +7802 57758 0.4040 +7802 57835 0.5450 +7802 60494 0.4210 +7802 64446 0.9830 +7802 64769 0.4600 +7802 79819 0.4530 +7802 79925 0.4790 +7802 80217 0.4640 +7802 83538 0.6320 +7802 83544 0.5370 +7802 83657 0.6120 +7802 83659 0.5200 +7802 84217 0.4030 +7802 84229 0.4720 +7802 85016 0.5750 +7802 85478 0.7530 +7802 89765 0.7520 +7802 92749 0.5560 +7802 93233 0.7150 +7802 114327 0.6150 +7802 115811 0.4770 +7802 115948 0.5190 +7802 116143 0.5640 +7802 118491 0.4300 +7802 120379 0.5820 +7802 123872 0.9680 +7802 124637 0.7000 +7802 129880 0.4830 +7802 135138 0.4490 +7802 139212 0.7260 +7802 140735 0.5570 +7802 146754 0.6070 +7802 146845 0.5280 +7802 150483 0.4050 +7802 154865 0.6580 +7802 161582 0.6750 +7802 164395 0.5800 +7802 164781 0.4070 +7802 196385 0.4340 +7802 200132 0.4380 +7802 200728 0.4360 +7802 201625 0.5520 +7802 219681 0.5600 +7802 221421 0.7670 +7802 254173 0.4250 +7802 255758 0.5010 +7802 257236 0.4450 +7802 283237 0.4970 +7802 286207 0.4630 +7802 339829 0.7910 +7802 341019 0.5960 +7802 345895 0.7710 +7802 352909 0.7410 +7802 388389 0.5640 +7802 440585 0.4130 +7802 100130613 0.4240 +7803 8073 0.8710 +7803 9837 0.4430 +7803 11016 0.9230 +7803 22809 0.6580 +7803 23014 0.4080 +7803 23469 0.8010 +7803 23768 0.4070 +7803 26504 0.7370 +7803 26505 0.7980 +7803 26507 0.7340 +7803 26994 0.4430 +7803 54434 0.4440 +7803 54622 0.7180 +7803 54756 0.7680 +7803 54805 0.9700 +7803 60685 0.4270 +7803 64764 0.4670 +7803 84296 0.4220 +7803 84749 0.4170 +7803 90627 0.4630 +7803 93953 0.4090 +7803 153364 0.4090 +7803 202559 0.4200 +7803 101929989 0.4240 +7803 114108587 0.5100 +7804 8312 0.6100 +7804 9043 0.4970 +7804 9479 0.8360 +7804 9672 0.5020 +7804 9784 0.9010 +7804 10082 0.4290 +7804 10418 0.9100 +7804 10494 0.5670 +7804 10544 0.6110 +7804 10858 0.4840 +7804 10971 0.8060 +7804 23426 0.5030 +7804 23542 0.8120 +7804 23621 0.4360 +7804 26119 0.4310 +7804 27328 0.4260 +7804 29116 0.5100 +7804 29911 0.5300 +7804 51375 0.4550 +7804 51540 0.4350 +7804 53944 0.4240 +7804 54361 0.4060 +7804 54443 0.4360 +7804 55466 0.5250 +7804 64083 0.4760 +7804 79882 0.5450 +7804 83729 0.5810 +7804 83999 0.4550 +7804 84918 0.4500 +7804 92335 0.5700 +7804 221914 0.4390 +7804 255738 0.5590 +7804 375790 0.7060 +7805 7852 0.4190 +7805 7940 0.4110 +7805 8565 0.5490 +7805 8826 0.4600 +7805 9450 0.6890 +7805 9473 0.5030 +7805 9535 0.7040 +7805 9595 0.4310 +7805 9672 0.7780 +7805 9741 0.9160 +7805 9938 0.4160 +7805 10261 0.4570 +7805 10320 0.5840 +7805 10437 0.4690 +7805 11010 0.6350 +7805 11031 0.4550 +7805 11151 0.7290 +7805 11314 0.4440 +7805 11326 0.4020 +7805 23163 0.6590 +7805 27128 0.4360 +7805 51338 0.4020 +7805 54440 0.7190 +7805 54518 0.5140 +7805 55353 0.9170 +7805 55843 0.4630 +7805 57705 0.6640 +7805 63940 0.4050 +7805 64092 0.4590 +7805 64098 0.4740 +7805 64926 0.5170 +7805 83706 0.5050 +7805 83737 0.5010 +7805 257106 0.6150 +7809 9132 0.4340 +7809 9376 0.4140 +7809 9498 0.4490 +7809 10686 0.6430 +7809 10916 0.5700 +7809 23358 0.4730 +7809 23562 0.4580 +7809 27347 0.4640 +7809 28962 0.6700 +7809 51168 0.4300 +7809 54805 0.4300 +7809 55586 0.4630 +7809 56302 0.4110 +7809 64699 0.4460 +7809 65125 0.4270 +7809 65266 0.5120 +7809 79041 0.4240 +7809 83697 0.5220 +7809 84230 0.4320 +7809 126326 0.4750 +7809 127124 0.4500 +7809 140803 0.4850 +7809 146183 0.4410 +7809 149461 0.5710 +7809 200539 0.4080 +7809 255738 0.4240 +7809 259236 0.4040 +7809 284001 0.4380 +7809 286262 0.4190 +7809 389207 0.4120 +7809 494513 0.4270 +7812 7916 0.4030 +7812 8087 0.5270 +7812 8106 0.4940 +7812 8487 0.5780 +7812 8668 0.8120 +7812 8761 0.7670 +7812 9698 0.5820 +7812 9898 0.6880 +7812 9908 0.6780 +7812 10146 0.8580 +7812 10399 0.5150 +7812 10492 0.9840 +7812 10605 0.9190 +7812 10642 0.9320 +7812 11171 0.9770 +7812 23019 0.4490 +7812 23095 0.5230 +7812 23162 0.4010 +7812 23196 0.5150 +7812 23215 0.7710 +7812 23368 0.4210 +7812 23369 0.4430 +7812 23376 0.4170 +7812 23476 0.5190 +7812 26135 0.5950 +7812 26986 0.9850 +7812 50618 0.5470 +7812 51196 0.4920 +7812 51299 0.4080 +7812 51441 0.4140 +7812 54108 0.4050 +7812 54583 0.4200 +7812 54915 0.4850 +7812 54949 0.4880 +7812 55167 0.6460 +7812 55323 0.4900 +7812 55534 0.5950 +7812 55654 0.6590 +7812 56478 0.4500 +7812 79038 0.4140 +7812 79760 0.7850 +7812 80143 0.4650 +7812 83638 0.4610 +7812 89796 0.4830 +7812 90313 0.4240 +7812 90850 0.4750 +7812 113251 0.5600 +7812 119559 0.4140 +7812 149986 0.5130 +7812 163259 0.4650 +7812 170506 0.4920 +7812 200916 0.6140 +7812 255631 0.4210 +7812 283209 0.4180 +7812 283987 0.5980 +7812 389421 0.5580 +7812 728642 0.5370 +7812 102157402 0.4400 +7813 8766 0.9360 +7813 8881 0.5190 +7813 8900 0.4450 +7813 8945 0.5360 +7813 9230 0.4830 +7813 9765 0.4480 +7813 10125 0.4870 +7813 11021 0.5250 +7813 11064 0.6330 +7813 22901 0.4480 +7813 23274 0.5260 +7813 25862 0.4340 +7813 25938 0.4780 +7813 26271 0.8980 +7813 51053 0.6490 +7813 51160 0.4210 +7813 51231 0.4880 +7813 51256 0.4620 +7813 54536 0.4250 +7813 54662 0.4460 +7813 54806 0.4650 +7813 55142 0.6450 +7813 55254 0.4040 +7813 55296 0.4640 +7813 55633 0.4550 +7813 55672 0.6590 +7813 64786 0.4940 +7813 84839 0.5070 +7813 115704 0.4380 +7813 125058 0.4130 +7813 128637 0.4580 +7813 136051 0.4240 +7813 161514 0.4590 +7813 286151 0.6010 +7813 388650 0.5300 +7813 401494 0.5110 +7813 440275 0.6580 +7818 8624 0.8530 +7818 8772 0.4520 +7818 8795 0.4460 +7818 9085 0.4860 +7818 9093 0.4590 +7818 9349 0.9560 +7818 9360 0.4330 +7818 9374 0.4300 +7818 9425 0.4890 +7818 9465 0.8310 +7818 9512 0.7780 +7818 9553 0.9930 +7818 9584 0.4320 +7818 9617 0.6050 +7818 9669 0.5840 +7818 9801 0.9950 +7818 9812 0.6640 +7818 9858 0.9090 +7818 9862 0.4330 +7818 10049 0.4270 +7818 10102 0.6820 +7818 10128 0.4260 +7818 10240 0.9970 +7818 10455 0.4900 +7818 10465 0.5210 +7818 10473 0.6410 +7818 10573 0.8510 +7818 10730 0.4580 +7818 10884 0.9910 +7818 10946 0.4360 +7818 10964 0.6640 +7818 10987 0.4580 +7818 10989 0.5530 +7818 11080 0.4220 +7818 11112 0.4100 +7818 11222 0.9960 +7818 11331 0.4310 +7818 22907 0.4280 +7818 22982 0.4260 +7818 23107 0.9980 +7818 23181 0.4410 +7818 23193 0.5150 +7818 23204 0.5200 +7818 23234 0.4350 +7818 23341 0.4230 +7818 23405 0.7950 +7818 23423 0.6050 +7818 23521 0.8090 +7818 23560 0.4470 +7818 23640 0.6500 +7818 23732 0.7610 +7818 25771 0.4330 +7818 25822 0.4180 +7818 25851 0.5160 +7818 26024 0.6060 +7818 26156 0.6600 +7818 26164 0.4090 +7818 26275 0.9650 +7818 26284 0.9930 +7818 26589 0.9940 +7818 27349 0.9360 +7818 27430 0.4840 +7818 28957 0.9940 +7818 28973 0.9980 +7818 28977 0.9830 +7818 28998 0.9950 +7818 29074 0.8520 +7818 29088 0.9950 +7818 29093 0.9940 +7818 29102 0.8010 +7818 29889 0.5380 +7818 29896 0.5800 +7818 50814 0.4700 +7818 51008 0.8480 +7818 51014 0.5840 +7818 51021 0.9990 +7818 51023 0.9950 +7818 51069 0.9920 +7818 51073 0.9950 +7818 51081 0.9990 +7818 51106 0.8580 +7818 51116 0.9990 +7818 51121 0.8000 +7818 51149 0.8160 +7818 51253 0.9140 +7818 51258 0.9160 +7818 51263 0.9800 +7818 51264 0.9940 +7818 51318 0.8830 +7818 51373 0.9860 +7818 51535 0.4560 +7818 51574 0.5380 +7818 51642 0.9370 +7818 51649 0.9970 +7818 51650 0.9810 +7818 51759 0.4900 +7818 54059 0.9430 +7818 54148 0.9030 +7818 54460 0.9910 +7818 54465 0.5160 +7818 54516 0.6820 +7818 54534 0.8640 +7818 54596 0.5760 +7818 54788 0.4300 +7818 54948 0.9930 +7818 54998 0.9900 +7818 55003 0.4240 +7818 55037 0.9980 +7818 55052 0.9950 +7818 55168 0.9930 +7818 55173 0.9990 +7818 55268 0.4930 +7818 55272 0.8130 +7818 55301 0.4260 +7818 55316 0.7970 +7818 55633 0.4290 +7818 55862 0.5040 +7818 56945 0.9980 +7818 57129 0.9940 +7818 57508 0.4090 +7818 57609 0.4300 +7818 60488 0.9990 +7818 63875 0.9930 +7818 63931 0.9980 +7818 64374 0.6530 +7818 64432 0.9980 +7818 64745 0.9900 +7818 64928 0.9070 +7818 64949 0.9920 +7818 64951 0.9880 +7818 64960 0.9990 +7818 64963 0.9990 +7818 64965 0.9990 +7818 64968 0.9980 +7818 64969 0.9990 +7818 64975 0.9970 +7818 64976 0.9950 +7818 64978 0.9820 +7818 64979 0.9920 +7818 64981 0.9870 +7818 64983 0.9910 +7818 65003 0.9960 +7818 65005 0.9760 +7818 65008 0.9020 +7818 65080 0.9950 +7818 65121 0.5820 +7818 65122 0.5820 +7818 65993 0.9930 +7818 78988 0.8590 +7818 79590 0.9940 +7818 79728 0.4300 +7818 79863 0.8420 +7818 79962 0.4180 +7818 79982 0.4230 +7818 80146 0.4700 +7818 80221 0.8470 +7818 80270 0.4650 +7818 80324 0.5420 +7818 83475 0.5820 +7818 83480 0.5310 +7818 84060 0.5250 +7818 84273 0.9370 +7818 84311 0.9480 +7818 84545 0.9930 +7818 84656 0.4170 +7818 84968 0.4940 +7818 85476 0.8830 +7818 90313 0.7880 +7818 90480 0.8780 +7818 90624 0.6780 +7818 91574 0.4570 +7818 92170 0.5190 +7818 92259 0.8980 +7818 92399 0.9220 +7818 93517 0.4650 +7818 96459 0.4230 +7818 114781 0.6640 +7818 115416 0.5370 +7818 116540 0.8340 +7818 116541 0.9600 +7818 118487 0.9840 +7818 122704 0.8600 +7818 124359 0.4860 +7818 124995 0.9900 +7818 126402 0.8120 +7818 126789 0.5730 +7818 128308 0.8830 +7818 133015 0.4330 +7818 135138 0.4290 +7818 140432 0.4180 +7818 140801 0.6520 +7818 147660 0.5480 +7818 148022 0.5810 +7818 149478 0.5940 +7818 150209 0.4500 +7818 150353 0.4220 +7818 157310 0.8260 +7818 157869 0.4260 +7818 158234 0.7440 +7818 165721 0.4190 +7818 171425 0.4520 +7818 196074 0.9300 +7818 197322 0.4520 +7818 202052 0.4180 +7818 219402 0.9380 +7818 219927 0.9940 +7818 246243 0.4420 +7818 253175 0.4860 +7818 284106 0.4290 +7818 285126 0.4180 +7818 285282 0.4530 +7818 285855 0.4740 +7818 343068 0.5820 +7818 343070 0.5820 +7818 345051 0.7610 +7818 347487 0.7050 +7818 353376 0.5810 +7818 374407 0.4180 +7818 375337 0.5160 +7818 376497 0.4270 +7818 390999 0.5820 +7818 391002 0.5820 +7818 400735 0.5820 +7818 400736 0.5820 +7818 440145 0.5230 +7818 440560 0.5820 +7818 440561 0.5820 +7818 441873 0.5820 +7818 641776 0.5070 +7818 643909 0.5070 +7818 645359 0.5820 +7818 653619 0.5820 +7818 728524 0.5070 +7818 729528 0.5820 +7818 100130890 0.8420 +7818 100131187 0.8440 +7818 100287482 0.7050 +7818 100302736 0.5810 +7818 100526842 0.8330 +7818 100996746 0.5070 +7818 101929983 0.5820 +7818 105180390 0.5070 +7818 105180391 0.5070 +7827 8029 0.6110 +7827 8225 0.4160 +7827 8440 0.5790 +7827 8542 0.8250 +7827 8671 0.4040 +7827 8826 0.5630 +7827 9376 0.4100 +7827 9722 0.4050 +7827 9857 0.4040 +7827 10076 0.5300 +7827 10630 0.5390 +7827 10730 0.4900 +7827 10736 0.4800 +7827 10763 0.5380 +7827 10939 0.4900 +7827 11346 0.9260 +7827 22925 0.4630 +7827 22926 0.4170 +7827 23607 0.9990 +7827 26092 0.4330 +7827 27235 0.5900 +7827 27293 0.5720 +7827 30011 0.6450 +7827 50485 0.4840 +7827 51004 0.6160 +7827 51196 0.9430 +7827 51429 0.5660 +7827 54443 0.4610 +7827 55243 0.9990 +7827 57107 0.5510 +7827 57122 0.5400 +7827 57554 0.5630 +7827 64222 0.4180 +7827 64423 0.9210 +7827 79934 0.6260 +7827 83478 0.5470 +7827 84063 0.9260 +7827 84623 0.9400 +7827 84942 0.4280 +7827 163589 0.4800 +7832 8013 0.4410 +7832 8493 0.4260 +7832 9021 0.5190 +7832 9125 0.5870 +7832 9337 0.8810 +7832 9518 0.4420 +7832 9592 0.6360 +7832 9759 0.4470 +7832 9766 0.4110 +7832 10221 0.4810 +7832 10412 0.4120 +7832 10769 0.4160 +7832 10912 0.4330 +7832 11266 0.6280 +7832 23019 0.6940 +7832 23612 0.4070 +7832 25904 0.5690 +7832 26580 0.4120 +7832 26986 0.6430 +7832 27113 0.4150 +7832 27244 0.5080 +7832 27250 0.4920 +7832 29883 0.9630 +7832 51209 0.4220 +7832 51278 0.5340 +7832 54851 0.4130 +7832 55502 0.5230 +7832 55571 0.5710 +7832 57057 0.5500 +7832 57472 0.6430 +7832 64127 0.4680 +7832 64332 0.5470 +7832 85456 0.4990 +7832 94241 0.4060 +7832 140809 0.5150 +7832 170825 0.4490 +7832 246175 0.8400 +7832 266743 0.4190 +7837 7852 0.5750 +7837 8029 0.5850 +7837 8091 0.4130 +7837 8224 0.5330 +7837 8290 0.7180 +7837 8310 0.5240 +7837 8349 0.5060 +7837 8356 0.7170 +7837 8361 0.4560 +7837 8369 0.4550 +7837 8411 0.5500 +7837 8600 0.5520 +7837 8639 0.4810 +7837 8660 0.5550 +7837 8678 0.7380 +7837 8766 0.4110 +7837 8772 0.4680 +7837 8795 0.4480 +7837 8797 0.4200 +7837 8817 0.5320 +7837 8822 0.5290 +7837 8823 0.5100 +7837 8837 0.4230 +7837 8842 0.5540 +7837 8878 0.6120 +7837 8900 0.5910 +7837 8988 0.4800 +7837 9016 0.4740 +7837 9021 0.4560 +7837 9076 0.5300 +7837 9140 0.4310 +7837 9314 0.4660 +7837 9332 0.5450 +7837 9370 0.5450 +7837 9429 0.5350 +7837 9451 0.7070 +7837 9474 0.6270 +7837 9481 0.4830 +7837 9563 0.4780 +7837 9588 0.4490 +7837 9804 0.5350 +7837 9817 0.5590 +7837 9927 0.5300 +7837 10013 0.4120 +7837 10018 0.5430 +7837 10059 0.4670 +7837 10101 0.5430 +7837 10105 0.5200 +7837 10211 0.4730 +7837 10215 0.5150 +7837 10273 0.4050 +7837 10381 0.4350 +7837 10413 0.4650 +7837 10418 0.4770 +7837 10533 0.5660 +7837 10630 0.4260 +7837 10631 0.4610 +7837 10753 0.4160 +7837 10763 0.6560 +7837 10891 0.6150 +7837 10894 0.4580 +7837 10935 0.4320 +7837 10982 0.4520 +7837 11060 0.4140 +7837 11167 0.4270 +7837 11200 0.5020 +7837 11315 0.4110 +7837 11322 0.5290 +7837 22926 0.5790 +7837 22943 0.4520 +7837 23040 0.4280 +7837 23405 0.4730 +7837 23410 0.4570 +7837 23411 0.6390 +7837 23435 0.4390 +7837 23586 0.4040 +7837 23621 0.5140 +7837 26227 0.4880 +7837 26281 0.5040 +7837 26291 0.4060 +7837 27006 0.5150 +7837 27035 0.5540 +7837 27161 0.4940 +7837 27238 0.4180 +7837 29126 0.5220 +7837 29944 0.5830 +7837 30816 0.5430 +7837 50507 0.5910 +7837 50943 0.6190 +7837 51024 0.4220 +7837 51091 0.5200 +7837 51176 0.4010 +7837 51738 0.5790 +7837 51806 0.5600 +7837 54205 0.8890 +7837 54221 0.4170 +7837 54363 0.7270 +7837 55201 0.4810 +7837 55669 0.4330 +7837 55811 0.6780 +7837 56603 0.4440 +7837 57030 0.4330 +7837 57084 0.4140 +7837 57104 0.4440 +7837 57190 0.4070 +7837 57521 0.4310 +7837 59272 0.5120 +7837 64083 0.4310 +7837 65018 0.4380 +7837 79400 0.4040 +7837 79792 0.4060 +7837 79923 0.5610 +7837 80781 0.4320 +7837 81631 0.7070 +7837 81669 0.5170 +7837 83483 0.4230 +7837 84260 0.4470 +7837 84557 0.5450 +7837 84706 0.4400 +7837 84823 0.6570 +7837 85363 0.4180 +7837 89780 0.4660 +7837 90480 0.4910 +7837 91860 0.5730 +7837 114548 0.4470 +7837 114907 0.4190 +7837 121340 0.4860 +7837 133482 0.6700 +7837 137902 0.9810 +7837 144811 0.6040 +7837 146713 0.7370 +7837 163688 0.5440 +7837 253260 0.4490 +7837 255738 0.4260 +7837 257202 0.7030 +7837 259307 0.4900 +7837 405754 0.5080 +7837 440093 0.7170 +7837 440387 0.4640 +7837 440686 0.7370 +7837 441925 0.4180 +7837 493869 0.7300 +7837 653145 0.5890 +7837 653361 0.5060 +7837 653604 0.7380 +7837 728378 0.5660 +7837 100133941 0.5020 +7837 100506658 0.6990 +7837 100532731 0.4270 +7840 8100 0.5250 +7840 8481 0.4870 +7840 8766 0.5510 +7840 9027 0.4740 +7840 9282 0.5430 +7840 9648 0.4770 +7840 9657 0.4500 +7840 9700 0.4160 +7840 9851 0.4560 +7840 10133 0.5090 +7840 10677 0.5200 +7840 10733 0.5240 +7840 10806 0.4880 +7840 11005 0.4180 +7840 11127 0.4260 +7840 11136 0.4370 +7840 11190 0.4350 +7840 23049 0.4770 +7840 23271 0.4140 +7840 23303 0.4190 +7840 23322 0.4280 +7840 23354 0.5070 +7840 24149 0.4390 +7840 26160 0.4100 +7840 27031 0.4420 +7840 27130 0.4310 +7840 27241 0.5130 +7840 51270 0.4320 +7840 51422 0.4070 +7840 54801 0.5500 +7840 54903 0.4140 +7840 54930 0.4990 +7840 55125 0.6740 +7840 55142 0.5070 +7840 55212 0.7870 +7840 55320 0.4820 +7840 55355 0.4880 +7840 55559 0.4990 +7840 55755 0.5080 +7840 57477 0.4860 +7840 57545 0.4030 +7840 57560 0.4350 +7840 57835 0.8250 +7840 63929 0.8340 +7840 64753 0.5450 +7840 64793 0.5060 +7840 79140 0.4420 +7840 79441 0.5160 +7840 79738 0.6370 +7840 79809 0.5270 +7840 79866 0.5070 +7840 80184 0.8060 +7840 85459 0.5760 +7840 89790 0.4100 +7840 91147 0.4510 +7840 93323 0.6210 +7840 114928 0.5400 +7840 115106 0.5090 +7840 117177 0.5170 +7840 123872 0.7650 +7840 129880 0.5620 +7840 140453 0.4850 +7840 144811 0.4590 +7840 153745 0.4670 +7840 166379 0.5840 +7840 202333 0.6290 +7840 339965 0.4420 +7840 343068 0.4120 +7840 343070 0.4300 +7840 353274 0.5300 +7840 375056 0.4090 +7840 390999 0.4290 +7840 391002 0.4440 +7840 400735 0.4240 +7840 440560 0.4160 +7840 440561 0.4100 +7840 441873 0.4210 +7840 645359 0.4210 +7840 653619 0.4270 +7840 728642 0.5270 +7840 101929983 0.4430 +7841 7991 0.9630 +7841 8427 0.6320 +7841 8704 0.4550 +7841 8813 0.5550 +7841 8972 0.8490 +7841 9527 0.4100 +7841 9554 0.4530 +7841 9601 0.7300 +7841 9695 0.6660 +7841 9761 0.5880 +7841 10130 0.4260 +7841 10195 0.6950 +7841 10525 0.4430 +7841 10585 0.5380 +7841 10905 0.6330 +7841 10956 0.5680 +7841 10960 0.6630 +7841 10970 0.4570 +7841 11253 0.8520 +7841 22893 0.5360 +7841 23193 0.9970 +7841 23275 0.4750 +7841 23324 0.4300 +7841 26168 0.4100 +7841 26262 0.4530 +7841 27248 0.6400 +7841 27315 0.6250 +7841 29880 0.6300 +7841 29925 0.6050 +7841 29926 0.5040 +7841 29927 0.6340 +7841 29929 0.7280 +7841 29954 0.5310 +7841 51009 0.4640 +7841 51095 0.4460 +7841 51465 0.4280 +7841 51726 0.5360 +7841 54431 0.4590 +7841 54480 0.6480 +7841 54867 0.5520 +7841 54872 0.4710 +7841 55176 0.4110 +7841 55329 0.4430 +7841 55343 0.7530 +7841 55738 0.9600 +7841 55741 0.6530 +7841 55757 0.8270 +7841 56052 0.5850 +7841 56886 0.8650 +7841 57130 0.5090 +7841 57134 0.5070 +7841 57171 0.4420 +7841 64083 0.4270 +7841 64772 0.5080 +7841 79053 0.6620 +7841 79087 0.7090 +7841 79139 0.4200 +7841 79694 0.5050 +7841 80162 0.5250 +7841 80267 0.7500 +7841 80344 0.4610 +7841 81562 0.5640 +7841 83444 0.4880 +7841 84058 0.4190 +7841 84061 0.6400 +7841 84245 0.4020 +7841 84364 0.4400 +7841 84920 0.4500 +7841 85365 0.4600 +7841 118424 0.5030 +7841 120892 0.5720 +7841 125972 0.4570 +7841 144245 0.4620 +7841 155061 0.4070 +7841 199857 0.4270 +7841 201595 0.9520 +7841 221496 0.4910 +7841 283899 0.5560 +7841 339416 0.4180 +7841 440138 0.5770 +7841 548645 0.5190 +7844 8882 0.7190 +7844 10299 0.4770 +7844 10956 0.6080 +7844 11236 0.6000 +7844 51009 0.6080 +7844 51136 0.4730 +7844 51652 0.6860 +7844 54494 0.4530 +7844 57189 0.4310 +7844 79139 0.4670 +7844 81790 0.6060 +7844 84447 0.4490 +7844 92305 0.4340 +7844 92999 0.4060 +7844 112611 0.4470 +7844 148066 0.5390 +7844 153830 0.4330 +7846 7879 0.7100 +7846 7918 0.4150 +7846 8361 0.4460 +7846 8407 0.4400 +7846 8518 0.6780 +7846 8570 0.4300 +7846 8607 0.5810 +7846 8655 0.4330 +7846 8665 0.4130 +7846 8766 0.6110 +7846 8878 0.6130 +7846 9181 0.9080 +7846 9201 0.6120 +7846 9657 0.4170 +7846 9793 0.6240 +7846 9798 0.5360 +7846 10013 0.9530 +7846 10133 0.5140 +7846 10190 0.6820 +7846 10300 0.7650 +7846 10376 0.9660 +7846 10381 0.9990 +7846 10382 0.9790 +7846 10383 0.9990 +7846 10403 0.9130 +7846 10471 0.6630 +7846 10564 0.4040 +7846 10574 0.8540 +7846 10575 0.7330 +7846 10576 0.8370 +7846 10627 0.4210 +7846 10693 0.6620 +7846 10694 0.7340 +7846 10844 0.4140 +7846 10933 0.4030 +7846 10971 0.4770 +7846 10982 0.5140 +7846 11004 0.9230 +7846 11092 0.8000 +7846 11104 0.4020 +7846 22846 0.9670 +7846 22914 0.4210 +7846 22919 0.6190 +7846 22924 0.5210 +7846 22948 0.7310 +7846 23193 0.4400 +7846 23197 0.6160 +7846 23243 0.4610 +7846 23309 0.4150 +7846 23354 0.5030 +7846 25790 0.8660 +7846 25978 0.5370 +7846 26150 0.8410 +7846 26206 0.8220 +7846 26610 0.4470 +7846 27183 0.5810 +7846 27229 0.4270 +7846 27243 0.5380 +7846 27285 0.8560 +7846 29105 0.8600 +7846 29114 0.4150 +7846 29922 0.8350 +7846 51143 0.7000 +7846 51175 0.5220 +7846 51314 0.4980 +7846 51398 0.4250 +7846 51652 0.5100 +7846 51726 0.4880 +7846 51807 0.4330 +7846 54101 0.4220 +7846 54617 0.4070 +7846 54715 0.4120 +7846 54801 0.5040 +7846 54820 0.4070 +7846 54930 0.5100 +7846 55140 0.6030 +7846 55142 0.5010 +7846 55291 0.4190 +7846 55329 0.8370 +7846 55559 0.4990 +7846 55835 0.4520 +7846 57662 0.9020 +7846 64221 0.4220 +7846 64518 0.8350 +7846 64776 0.8090 +7846 79441 0.5410 +7846 79643 0.5040 +7846 79649 0.4330 +7846 79659 0.7420 +7846 79805 0.9420 +7846 79861 0.4890 +7846 79866 0.5040 +7846 80086 0.4160 +7846 80258 0.8670 +7846 81027 0.9630 +7846 81551 0.9250 +7846 81565 0.4680 +7846 81930 0.9330 +7846 83473 0.4890 +7846 83540 0.8280 +7846 83547 0.6500 +7846 83659 0.8380 +7846 84617 0.9810 +7846 84790 0.6910 +7846 91782 0.5030 +7846 92421 0.4990 +7846 92609 0.4080 +7846 93190 0.8290 +7846 93323 0.5090 +7846 112714 0.4060 +7846 113457 0.6140 +7846 114327 0.8700 +7846 114787 0.4230 +7846 115106 0.5790 +7846 117177 0.5090 +7846 117178 0.4120 +7846 120892 0.8490 +7846 127003 0.8220 +7846 128866 0.5070 +7846 129881 0.8350 +7846 134121 0.8000 +7846 135138 0.8950 +7846 136332 0.5070 +7846 138162 0.8360 +7846 138255 0.8220 +7846 140735 0.4550 +7846 145788 0.8200 +7846 146845 0.8260 +7846 150465 0.9660 +7846 150483 0.8260 +7846 151651 0.8910 +7846 153562 0.9000 +7846 157922 0.9040 +7846 161502 0.8150 +7846 197335 0.6730 +7846 200014 0.5000 +7846 203068 0.9960 +7846 219417 0.4250 +7846 219670 0.8520 +7846 220136 0.8460 +7846 221496 0.5470 +7846 255394 0.6330 +7846 257177 0.8250 +7846 260334 0.7550 +7846 284403 0.4770 +7846 284695 0.4040 +7846 337867 0.6520 +7846 338382 0.6610 +7846 339416 0.4280 +7846 339778 0.8120 +7846 345651 0.4500 +7846 347688 0.9630 +7846 347733 0.9970 +7846 374654 0.9160 +7846 374969 0.9100 +7846 388701 0.8220 +7846 389799 0.8030 +7846 440585 0.8000 +7846 728378 0.5350 +7846 728642 0.5620 +7846 730112 0.8000 +7849 8031 0.5810 +7849 8289 0.4180 +7849 9476 0.7200 +7849 10736 0.6150 +7849 23314 0.4460 +7849 23440 0.4520 +7849 23558 0.7200 +7849 23600 0.6990 +7849 50506 0.5190 +7849 53373 0.4180 +7849 54361 0.5210 +7849 54474 0.7980 +7849 57167 0.4940 +7849 84525 0.4520 +7849 145258 0.5940 +7849 151306 0.5480 +7849 169792 0.5060 +7849 389434 0.6080 +7849 400566 0.7920 +7849 405753 0.5720 +7850 7852 0.4690 +7850 8743 0.5610 +7850 8807 0.4720 +7850 8809 0.6980 +7850 9021 0.4150 +7850 9034 0.4160 +7850 9173 0.4200 +7850 9332 0.4020 +7850 9958 0.6280 +7850 10068 0.5470 +7850 10640 0.4060 +7850 11213 0.5120 +7850 11336 0.5030 +7850 22918 0.5350 +7850 23233 0.6200 +7850 23545 0.4930 +7850 23765 0.5980 +7850 26253 0.4390 +7850 26525 0.4880 +7850 27178 0.4300 +7850 27190 0.4830 +7850 51311 0.4110 +7850 51752 0.6380 +7850 53832 0.4730 +7850 54210 0.4120 +7850 54536 0.5160 +7850 55770 0.5910 +7850 56300 0.5920 +7850 57126 0.4390 +7850 59307 0.5090 +7850 60412 0.4810 +7850 64127 0.4180 +7850 64374 0.4020 +7850 64581 0.5380 +7850 84639 0.4810 +7850 90865 0.4560 +7850 118429 0.6700 +7850 134728 0.4150 +7850 149371 0.6190 +7850 414062 0.5320 +7851 9411 0.4510 +7851 51090 0.6840 +7851 54860 0.4470 +7851 84220 0.5820 +7851 114569 0.4900 +7851 255275 0.5190 +7851 261734 0.4100 +7851 729540 0.6060 +7852 8027 0.7040 +7852 8200 0.9380 +7852 8320 0.4100 +7852 8445 0.4450 +7852 8549 0.4130 +7852 8600 0.5400 +7852 8639 0.4080 +7852 8651 0.6540 +7852 8698 0.5830 +7852 8743 0.4230 +7852 8763 0.8200 +7852 8801 0.5460 +7852 8817 0.5170 +7852 8822 0.5120 +7852 8823 0.5070 +7852 8829 0.4480 +7852 8842 0.7280 +7852 8850 0.4290 +7852 8862 0.6800 +7852 9021 0.6650 +7852 9034 0.5640 +7852 9235 0.4580 +7852 9241 0.4050 +7852 9294 0.5780 +7852 9308 0.6170 +7852 9314 0.5240 +7852 9332 0.6750 +7852 9353 0.8430 +7852 9368 0.4930 +7852 9370 0.5270 +7852 9423 0.4590 +7852 9429 0.5110 +7852 9547 0.9840 +7852 9560 0.8050 +7852 9595 0.5590 +7852 9630 0.7010 +7852 9709 0.4500 +7852 9826 0.4240 +7852 9839 0.4070 +7852 9939 0.5530 +7852 9972 0.4380 +7852 10232 0.4750 +7852 10320 0.4150 +7852 10344 0.7290 +7852 10365 0.4860 +7852 10371 0.5800 +7852 10563 0.9980 +7852 10663 0.7970 +7852 10672 0.9520 +7852 10673 0.5250 +7852 10681 0.9230 +7852 10763 0.5930 +7852 10803 0.7210 +7852 10850 0.8610 +7852 10894 0.4720 +7852 10955 0.4730 +7852 10987 0.6800 +7852 11168 0.4560 +7852 22914 0.5130 +7852 23411 0.5220 +7852 23452 0.5610 +7852 23495 0.5770 +7852 23643 0.5910 +7852 25939 0.4700 +7852 25942 0.4580 +7852 26281 0.5110 +7852 27006 0.5150 +7852 27020 0.4190 +7852 29121 0.4260 +7852 29126 0.7520 +7852 29851 0.5200 +7852 30009 0.4590 +7852 30816 0.9940 +7852 30835 0.6190 +7852 50615 0.5130 +7852 50848 0.6940 +7852 50943 0.7310 +7852 51176 0.4520 +7852 51284 0.4940 +7852 51311 0.4050 +7852 51554 0.5180 +7852 51764 0.9080 +7852 53637 0.5870 +7852 54106 0.5010 +7852 54331 0.9170 +7852 54567 0.4970 +7852 55970 0.9120 +7852 56477 0.6950 +7852 57007 0.9960 +7852 57379 0.5090 +7852 58191 0.9330 +7852 59345 0.9220 +7852 60489 0.5000 +7852 60675 0.4680 +7852 63940 0.4610 +7852 64083 0.5510 +7852 64321 0.7290 +7852 79923 0.6190 +7852 79966 0.5070 +7852 80380 0.4760 +7852 80381 0.4740 +7852 83660 0.5280 +7852 83737 0.8340 +7852 83881 0.4080 +7852 84868 0.5130 +7852 84941 0.5040 +7852 85363 0.6260 +7852 89780 0.4460 +7852 94235 0.9180 +7852 112399 0.4330 +7852 118429 0.4260 +7852 131890 0.6890 +7852 137902 0.5690 +7852 140885 0.4310 +7852 169355 0.4610 +7852 256987 0.5170 +7852 284340 0.4690 +7852 389289 0.4590 +7852 404281 0.4370 +7852 405754 0.6250 +7852 414062 0.8440 +7852 414325 0.9120 +7852 728358 0.4220 +7852 100133941 0.6400 +7852 100289462 0.4290 +7852 100532731 0.4390 +7852 102723407 0.4790 +7855 7976 0.6840 +7855 8312 0.7680 +7855 8313 0.5580 +7855 8321 0.7080 +7855 8322 0.5530 +7855 8323 0.7260 +7855 8324 0.7040 +7855 8325 0.6900 +7855 8326 0.4710 +7855 8549 0.6200 +7855 8678 0.4690 +7855 9101 0.6530 +7855 9368 0.4280 +7855 10228 0.4400 +7855 10461 0.4690 +7855 10681 0.5230 +7855 10725 0.4340 +7855 11197 0.4390 +7855 22943 0.5890 +7855 23236 0.5340 +7855 23401 0.4080 +7855 23433 0.5150 +7855 25805 0.9650 +7855 26499 0.4240 +7855 27121 0.4040 +7855 27122 0.4890 +7855 27123 0.4530 +7855 50855 0.5210 +7855 51176 0.4580 +7855 51384 0.9030 +7855 51764 0.4990 +7855 54331 0.4990 +7855 54361 0.9590 +7855 54894 0.9840 +7855 55366 0.4700 +7855 55681 0.4180 +7855 55970 0.5010 +7855 57120 0.6820 +7855 57154 0.5390 +7855 57216 0.5330 +7855 59345 0.5230 +7855 64750 0.5550 +7855 64840 0.4840 +7855 80326 0.9020 +7855 81029 0.9410 +7855 81839 0.4770 +7855 83439 0.6030 +7855 84133 0.9380 +7855 89780 0.9740 +7855 94235 0.4990 +7855 260425 0.4050 +7855 284654 0.4540 +7857 8620 0.4380 +7857 8989 0.4180 +7857 9607 0.4220 +7857 9722 0.4030 +7857 10874 0.4650 +7857 27344 0.7240 +7857 29106 0.9240 +7857 51083 0.5090 +7857 54551 0.4650 +7857 54757 0.4330 +7857 56975 0.5300 +7857 57194 0.4890 +7857 117579 0.5280 +7857 347148 0.4580 +7857 353500 0.5010 +7862 7994 0.9990 +7862 8028 0.4320 +7862 8178 0.5470 +7862 8290 0.9650 +7862 8329 0.5390 +7862 8350 0.9520 +7862 8351 0.9110 +7862 8352 0.9110 +7862 8353 0.9110 +7862 8354 0.9110 +7862 8355 0.9110 +7862 8356 0.9780 +7862 8357 0.9110 +7862 8358 0.9110 +7862 8361 0.7910 +7862 8369 0.6110 +7862 8805 0.4220 +7862 8850 0.4280 +7862 8968 0.9110 +7862 9219 0.4360 +7862 9441 0.4650 +7862 9678 0.6410 +7862 9682 0.4710 +7862 9726 0.6320 +7862 9739 0.5140 +7862 10000 0.4050 +7862 10524 0.6310 +7862 10771 0.4770 +7862 10933 0.4560 +7862 11143 0.9970 +7862 11168 0.4120 +7862 11176 0.4810 +7862 23030 0.4080 +7862 23067 0.4040 +7862 23522 0.9990 +7862 23774 0.9470 +7862 25921 0.4090 +7862 26205 0.7750 +7862 27097 0.5420 +7862 27154 0.9640 +7862 29072 0.4430 +7862 29117 0.6460 +7862 29855 0.4660 +7862 50810 0.4220 +7862 51147 0.9400 +7862 53615 0.4260 +7862 54454 0.4270 +7862 54556 0.4530 +7862 54815 0.4750 +7862 55870 0.5220 +7862 57459 0.4090 +7862 57585 0.4910 +7862 64769 0.9990 +7862 65980 0.4790 +7862 78987 0.4160 +7862 79915 0.5310 +7862 79960 0.6520 +7862 84148 0.5490 +7862 84289 0.9990 +7862 84656 0.4780 +7862 84717 0.4540 +7862 84976 0.4250 +7862 90378 0.4030 +7862 126961 0.9550 +7862 138474 0.4500 +7862 221037 0.6390 +7862 333932 0.9200 +7862 440093 0.6640 +7862 440686 0.9650 +7862 653604 0.9780 +7866 9045 0.7580 +7866 9136 0.5260 +7866 9349 0.7500 +7866 9732 0.4890 +7866 9791 0.4340 +7866 9858 0.4040 +7866 10399 0.7530 +7866 10403 0.5290 +7866 10767 0.4090 +7866 11222 0.4510 +7866 11224 0.7610 +7866 23204 0.4630 +7866 23309 0.4540 +7866 23521 0.5320 +7866 23640 0.5960 +7866 25873 0.8010 +7866 26135 0.5200 +7866 26145 0.4370 +7866 28998 0.4200 +7866 29093 0.4320 +7866 51065 0.5170 +7866 51069 0.5000 +7866 51073 0.4780 +7866 51081 0.4630 +7866 51116 0.7270 +7866 51121 0.5270 +7866 51149 0.4760 +7866 51319 0.4800 +7866 54848 0.4880 +7866 54948 0.4020 +7866 55173 0.4670 +7866 55272 0.5050 +7866 55316 0.4980 +7866 55651 0.4350 +7866 57630 0.4220 +7866 63931 0.4160 +7866 64960 0.4510 +7866 64963 0.4630 +7866 64969 0.5020 +7866 65008 0.4560 +7866 79590 0.4710 +7866 84340 0.4710 +7866 114882 0.4140 +7866 114883 0.4450 +7866 114987 0.4760 +7866 115098 0.5900 +7866 115708 0.5710 +7866 116832 0.5170 +7866 126402 0.4220 +7866 132228 0.4060 +7866 140032 0.4790 +7866 140801 0.5320 +7866 200916 0.5180 +7866 202559 0.4200 +7866 254268 0.4650 +7866 285855 0.5300 +7866 347487 0.4870 +7866 387129 0.4160 +7866 100526842 0.5220 +7866 100529097 0.4560 +7866 100529239 0.5090 +7867 8331 0.4990 +7867 8334 0.4990 +7867 8337 0.5140 +7867 8338 0.5140 +7867 8340 0.4990 +7867 8341 0.4990 +7867 8342 0.4990 +7867 8345 0.4990 +7867 8347 0.4990 +7867 8348 0.4990 +7867 8349 0.4990 +7867 8356 0.5650 +7867 8361 0.4990 +7867 8440 0.5160 +7867 8535 0.5580 +7867 8970 0.4990 +7867 9261 0.9740 +7867 10454 0.4350 +7867 22955 0.5130 +7867 23112 0.4990 +7867 23466 0.5030 +7867 26523 0.5380 +7867 27327 0.4990 +7867 54145 0.4990 +7867 55766 0.4990 +7867 57332 0.5430 +7867 80012 0.4990 +7867 84733 0.4990 +7867 85236 0.4990 +7867 92241 0.7720 +7867 94239 0.4990 +7867 115727 0.4790 +7867 123169 0.4400 +7867 128312 0.4990 +7867 192669 0.5130 +7867 192670 0.5070 +7867 225689 0.5380 +7867 255626 0.4990 +7867 474382 0.4990 +7867 653604 0.5650 +7869 8828 0.9740 +7869 8829 0.9990 +7869 9423 0.4540 +7869 10154 0.8200 +7869 10641 0.4880 +7869 11186 0.4170 +7869 22925 0.6730 +7869 23129 0.7390 +7869 23560 0.4690 +7869 23654 0.4330 +7869 55558 0.9660 +7869 91584 0.8850 +7869 221981 0.7130 +7871 8428 0.9960 +7871 8514 0.4210 +7871 8864 0.4500 +7871 9135 0.4040 +7871 9448 0.4560 +7871 10008 0.6400 +7871 10021 0.5720 +7871 10060 0.5850 +7871 10345 0.4170 +7871 10471 0.6520 +7871 10494 0.9960 +7871 11235 0.9980 +7871 23043 0.4620 +7871 23171 0.6840 +7871 23493 0.4700 +7871 23630 0.6930 +7871 25843 0.9990 +7871 26127 0.9680 +7871 29098 0.7370 +7871 29888 0.8600 +7871 29966 0.9980 +7871 51765 0.9270 +7871 54764 0.6670 +7871 54795 0.5770 +7871 55800 0.6550 +7871 55917 0.7180 +7871 57464 0.9090 +7871 60485 0.4920 +7871 63978 0.5680 +7871 80143 0.9990 +7871 83992 0.7660 +7871 84174 0.7920 +7871 84875 0.4960 +7871 85369 0.9990 +7871 376132 0.5220 +7874 8030 0.6020 +7874 8065 0.5030 +7874 8078 0.8520 +7874 8125 0.4550 +7874 8178 0.4450 +7874 8237 0.9660 +7874 8239 0.7390 +7874 8266 0.5060 +7874 8290 0.4030 +7874 8295 0.4780 +7874 8312 0.8490 +7874 8314 0.4130 +7874 8337 0.4600 +7874 8338 0.7220 +7874 8340 0.4220 +7874 8341 0.4180 +7874 8342 0.4230 +7874 8345 0.4210 +7874 8347 0.4160 +7874 8348 0.4260 +7874 8349 0.6990 +7874 8356 0.4090 +7874 8361 0.5760 +7874 8405 0.4360 +7874 8450 0.6460 +7874 8451 0.5400 +7874 8452 0.5830 +7874 8453 0.4430 +7874 8454 0.6090 +7874 8467 0.4290 +7874 8473 0.4710 +7874 8480 0.4580 +7874 8517 0.7680 +7874 8535 0.5570 +7874 8651 0.5150 +7874 8665 0.4170 +7874 8678 0.6290 +7874 8726 0.6950 +7874 8805 0.5340 +7874 8833 0.9980 +7874 8930 0.6310 +7874 8945 0.4660 +7874 8970 0.4190 +7874 8975 0.8080 +7874 9025 0.4420 +7874 9097 0.8630 +7874 9098 0.4720 +7874 9099 0.4830 +7874 9100 0.4580 +7874 9101 0.5810 +7874 9184 0.7790 +7874 9314 0.4140 +7874 9320 0.9630 +7874 9338 0.6510 +7874 9401 0.5500 +7874 9447 0.4220 +7874 9577 0.5710 +7874 9589 0.4140 +7874 9618 0.7290 +7874 9636 0.5360 +7874 9656 0.8280 +7874 9924 0.4710 +7874 9929 0.6620 +7874 9935 0.4760 +7874 9948 0.4100 +7874 9958 0.5660 +7874 9960 0.4140 +7874 9978 0.4110 +7874 10013 0.5810 +7874 10015 0.4560 +7874 10048 0.5320 +7874 10075 0.8590 +7874 10105 0.4700 +7874 10138 0.6320 +7874 10213 0.6110 +7874 10273 0.5150 +7874 10320 0.4670 +7874 10389 0.8910 +7874 10524 0.9320 +7874 10537 0.4780 +7874 10600 0.4220 +7874 10617 0.5670 +7874 10664 0.4740 +7874 10687 0.4780 +7874 10713 0.6290 +7874 10869 0.6720 +7874 10916 0.4850 +7874 10987 0.7160 +7874 11059 0.4340 +7874 11060 0.6260 +7874 11074 0.4120 +7874 11186 0.5710 +7874 11200 0.6760 +7874 11260 0.6430 +7874 11325 0.5470 +7874 22868 0.5450 +7874 22933 0.5160 +7874 22938 0.7040 +7874 23028 0.9360 +7874 23072 0.4060 +7874 23077 0.4900 +7874 23090 0.4020 +7874 23133 0.7330 +7874 23135 0.6490 +7874 23172 0.8440 +7874 23198 0.4090 +7874 23244 0.5230 +7874 23252 0.4680 +7874 23327 0.5770 +7874 23358 0.5750 +7874 23392 0.4380 +7874 23405 0.4510 +7874 23411 0.5650 +7874 23429 0.7710 +7874 23469 0.4350 +7874 23476 0.6960 +7874 23512 0.7700 +7874 23517 0.4270 +7874 25820 0.4950 +7874 25828 0.4820 +7874 25898 0.5110 +7874 25946 0.4140 +7874 26054 0.5350 +7874 26227 0.5830 +7874 27005 0.5820 +7874 27113 0.4480 +7874 27248 0.4190 +7874 27332 0.4130 +7874 27338 0.5610 +7874 28996 0.5830 +7874 29035 0.4040 +7874 29117 0.5000 +7874 29126 0.4250 +7874 29128 0.9980 +7874 29761 0.7200 +7874 29978 0.4160 +7874 29979 0.4630 +7874 50488 0.4590 +7874 50943 0.4570 +7874 51127 0.4750 +7874 51185 0.4920 +7874 51320 0.4110 +7874 51329 0.4360 +7874 51366 0.6030 +7874 51377 0.7010 +7874 51533 0.6790 +7874 51547 0.5880 +7874 51633 0.5640 +7874 51720 0.4380 +7874 51741 0.4030 +7874 54145 0.4220 +7874 54551 0.9610 +7874 54726 0.8020 +7874 54764 0.5560 +7874 54880 0.7820 +7874 55031 0.4420 +7874 55182 0.6840 +7874 55294 0.4440 +7874 55432 0.4700 +7874 55593 0.5130 +7874 55611 0.6770 +7874 55743 0.6830 +7874 55793 0.5320 +7874 55904 0.7890 +7874 56254 0.4550 +7874 56852 0.7760 +7874 56893 0.4090 +7874 56957 0.5210 +7874 57062 0.5860 +7874 57154 0.4090 +7874 57332 0.4490 +7874 57407 0.8110 +7874 57448 0.5130 +7874 57559 0.4650 +7874 57599 0.7720 +7874 57646 0.6870 +7874 57654 0.9990 +7874 57663 0.6170 +7874 57664 0.4060 +7874 57695 0.5910 +7874 57805 0.4710 +7874 63035 0.4970 +7874 63893 0.5100 +7874 63967 0.6540 +7874 64219 0.5430 +7874 64750 0.4360 +7874 64844 0.7940 +7874 64854 0.4770 +7874 78990 0.5650 +7874 79184 0.5940 +7874 79665 0.8030 +7874 79730 0.4180 +7874 79813 0.4130 +7874 79882 0.4240 +7874 79892 0.7870 +7874 79921 0.7800 +7874 79968 0.5770 +7874 80124 0.6100 +7874 80204 0.7070 +7874 80232 0.4250 +7874 81545 0.7220 +7874 81603 0.4250 +7874 83637 0.6360 +7874 83737 0.4440 +7874 83844 0.5600 +7874 84081 0.4240 +7874 84101 0.5150 +7874 84182 0.4330 +7874 84196 0.4010 +7874 84260 0.5520 +7874 84458 0.4160 +7874 84669 0.4490 +7874 84678 0.7480 +7874 84749 0.6510 +7874 84759 0.8940 +7874 84926 0.4060 +7874 85015 0.4080 +7874 85236 0.4160 +7874 85313 0.7180 +7874 85358 0.4180 +7874 85440 0.6790 +7874 85453 0.9330 +7874 90268 0.5100 +7874 90850 0.5000 +7874 92552 0.5480 +7874 114803 0.5620 +7874 115004 0.4270 +7874 115426 0.6800 +7874 126119 0.6510 +7874 128312 0.5730 +7874 139562 0.4240 +7874 144100 0.4060 +7874 158983 0.4230 +7874 165918 0.6070 +7874 219333 0.5280 +7874 220213 0.4380 +7874 221120 0.6580 +7874 221302 0.8370 +7874 222658 0.4740 +7874 254225 0.9880 +7874 255626 0.4170 +7874 283987 0.6490 +7874 286436 0.4230 +7874 373509 0.6910 +7874 388468 0.5110 +7874 440093 0.4020 +7874 440686 0.4030 +7874 440689 0.4260 +7874 653604 0.4110 +7874 100170841 0.5770 +7874 114483833 0.4230 +7879 7905 0.5060 +7879 8218 0.4450 +7879 8411 0.6350 +7879 8417 0.4110 +7879 8476 0.4210 +7879 8615 0.4570 +7879 8673 0.4130 +7879 8678 0.4490 +7879 8724 0.8740 +7879 8737 0.4130 +7879 8766 0.8430 +7879 8773 0.6460 +7879 8776 0.4170 +7879 8826 0.4870 +7879 8874 0.4280 +7879 8878 0.5630 +7879 8976 0.5030 +7879 8987 0.4180 +7879 9114 0.5480 +7879 9140 0.4390 +7879 9146 0.5220 +7879 9230 0.8190 +7879 9322 0.4280 +7879 9341 0.6660 +7879 9342 0.4690 +7879 9368 0.4030 +7879 9474 0.4730 +7879 9475 0.4370 +7879 9482 0.5050 +7879 9497 0.4130 +7879 9528 0.4960 +7879 9531 0.4110 +7879 9550 0.5290 +7879 9559 0.9010 +7879 9578 0.4260 +7879 9590 0.4130 +7879 9710 0.4160 +7879 9711 0.9240 +7879 9779 0.7050 +7879 9804 0.4470 +7879 9815 0.4210 +7879 9842 0.8670 +7879 9927 0.4280 +7879 10006 0.4430 +7879 10015 0.4030 +7879 10133 0.4660 +7879 10134 0.5490 +7879 10152 0.4080 +7879 10163 0.4350 +7879 10211 0.4220 +7879 10241 0.4020 +7879 10298 0.4100 +7879 10376 0.7160 +7879 10381 0.6740 +7879 10382 0.6550 +7879 10383 0.7160 +7879 10409 0.4010 +7879 10452 0.4580 +7879 10533 0.4420 +7879 10567 0.5350 +7879 10618 0.4700 +7879 10787 0.4750 +7879 10788 0.4070 +7879 10890 0.5070 +7879 10956 0.4120 +7879 11060 0.4130 +7879 22879 0.8300 +7879 23048 0.4340 +7879 23191 0.4360 +7879 23197 0.6490 +7879 23230 0.5620 +7879 23256 0.4680 +7879 23339 0.8300 +7879 23344 0.5860 +7879 23433 0.6130 +7879 23513 0.4510 +7879 23580 0.4360 +7879 25912 0.5030 +7879 25979 0.4800 +7879 26030 0.4010 +7879 26049 0.4010 +7879 26050 0.4050 +7879 26092 0.4810 +7879 27072 0.6300 +7879 27131 0.4650 +7879 27243 0.5730 +7879 27246 0.6200 +7879 28952 0.4110 +7879 28964 0.4210 +7879 29062 0.4230 +7879 29843 0.4320 +7879 29919 0.4700 +7879 29984 0.6210 +7879 51024 0.5560 +7879 51143 0.8820 +7879 51324 0.6380 +7879 51347 0.4070 +7879 51552 0.5390 +7879 51606 0.4120 +7879 51622 0.9140 +7879 51699 0.8010 +7879 51762 0.5310 +7879 51807 0.6750 +7879 53916 0.6190 +7879 54332 0.4070 +7879 54509 0.6040 +7879 54874 0.4180 +7879 55004 0.6680 +7879 55014 0.4070 +7879 55075 0.4050 +7879 55240 0.4540 +7879 55357 0.8560 +7879 55717 0.4100 +7879 55737 0.8690 +7879 55789 0.4080 +7879 55823 0.6770 +7879 55845 0.4840 +7879 55914 0.4180 +7879 55968 0.4860 +7879 55971 0.4060 +7879 56850 0.5780 +7879 56851 0.5000 +7879 56924 0.4100 +7879 57144 0.4100 +7879 57381 0.5900 +7879 57403 0.4180 +7879 57460 0.5290 +7879 57617 0.6590 +7879 58533 0.4590 +7879 64284 0.4130 +7879 64423 0.5540 +7879 64601 0.6980 +7879 64786 0.9740 +7879 65018 0.5390 +7879 65082 0.5360 +7879 65124 0.4020 +7879 79065 0.5020 +7879 79180 0.4270 +7879 79443 0.9650 +7879 79628 0.4330 +7879 79659 0.8180 +7879 79735 0.9320 +7879 79861 0.6770 +7879 80255 0.4890 +7879 80728 0.4070 +7879 81027 0.6540 +7879 81609 0.5030 +7879 81631 0.4730 +7879 81839 0.4120 +7879 81876 0.4940 +7879 83547 0.9990 +7879 84315 0.9020 +7879 84557 0.5200 +7879 84617 0.6620 +7879 84790 0.7240 +7879 91010 0.4130 +7879 112714 0.6750 +7879 112936 0.4320 +7879 113457 0.6750 +7879 114876 0.9830 +7879 114885 0.4810 +7879 117177 0.5010 +7879 118813 0.5540 +7879 118987 0.9210 +7879 120892 0.6280 +7879 127829 0.4150 +7879 128239 0.4080 +7879 143098 0.4070 +7879 144402 0.4180 +7879 147179 0.4010 +7879 150786 0.4230 +7879 157769 0.4170 +7879 196383 0.5420 +7879 200894 0.4060 +7879 203068 0.7250 +7879 221960 0.9080 +7879 253959 0.4160 +7879 285636 0.6370 +7879 337867 0.6480 +7879 338382 0.9170 +7879 347688 0.6600 +7879 347733 0.6540 +7879 353116 0.4130 +7879 386676 0.4240 +7879 445582 0.4120 +7881 8514 0.6300 +7881 8644 0.4630 +7881 8788 0.4170 +7881 8825 0.4770 +7881 9132 0.6990 +7881 9196 0.4300 +7881 9211 0.8860 +7881 9312 0.7610 +7881 9883 0.4670 +7881 10327 0.5560 +7881 23415 0.6150 +7881 23416 0.6750 +7881 26047 0.4630 +7881 26251 0.6920 +7881 27012 0.8910 +7881 27133 0.6350 +7881 30818 0.4290 +7881 30819 0.6050 +7881 30820 0.5310 +7881 53616 0.5270 +7881 54995 0.4370 +7881 55327 0.5010 +7881 55349 0.4460 +7881 55746 0.5670 +7881 56479 0.7120 +7881 56912 0.4460 +7881 57016 0.5130 +7881 57122 0.5570 +7881 57582 0.4360 +7881 57727 0.4670 +7881 79902 0.4880 +7881 80333 0.4590 +7881 81033 0.6160 +7881 81929 0.4900 +7881 83592 0.5590 +7881 84708 0.4220 +7881 90134 0.6120 +7881 93107 0.7740 +7881 131096 0.5810 +7881 169522 0.6370 +7881 170850 0.6750 +7881 283518 0.4480 +7881 340811 0.4090 +7881 441282 0.5360 +7881 100101267 0.4670 +7884 7936 0.4020 +7884 8021 0.4230 +7884 8086 0.4050 +7884 8189 0.7340 +7884 8208 0.5730 +7884 8290 0.4220 +7884 8318 0.5580 +7884 8334 0.4750 +7884 8337 0.5540 +7884 8338 0.5350 +7884 8349 0.5120 +7884 8353 0.4050 +7884 8356 0.4720 +7884 8451 0.5800 +7884 8454 0.4470 +7884 8467 0.5860 +7884 8480 0.5230 +7884 8726 0.5270 +7884 8841 0.4950 +7884 8900 0.4260 +7884 9112 0.4300 +7884 9156 0.5190 +7884 9191 0.7850 +7884 9212 0.4380 +7884 9493 0.5010 +7884 9585 0.5080 +7884 9631 0.4750 +7884 9688 0.5200 +7884 9811 0.8970 +7884 9818 0.4620 +7884 9883 0.4450 +7884 9918 0.4230 +7884 9972 0.4510 +7884 9994 0.5460 +7884 10051 0.4580 +7884 10116 0.5080 +7884 10189 0.8510 +7884 10436 0.4100 +7884 10460 0.5940 +7884 10482 0.8190 +7884 10492 0.7660 +7884 10762 0.4450 +7884 11065 0.4130 +7884 11097 0.4130 +7884 11198 0.4180 +7884 22916 0.8740 +7884 23077 0.4890 +7884 23165 0.4310 +7884 23225 0.4390 +7884 23236 0.5850 +7884 23279 0.4690 +7884 23283 0.4350 +7884 23381 0.6560 +7884 23511 0.4050 +7884 23512 0.5250 +7884 23636 0.4830 +7884 25842 0.5050 +7884 25888 0.9390 +7884 25909 0.5000 +7884 25988 0.4690 +7884 26019 0.4040 +7884 26586 0.4220 +7884 27257 0.6810 +7884 29028 0.5260 +7884 29894 0.4540 +7884 50484 0.5180 +7884 51053 0.5910 +7884 51574 0.4270 +7884 51593 0.4040 +7884 51659 0.5280 +7884 51692 0.8080 +7884 53371 0.4840 +7884 53981 0.7150 +7884 54815 0.4550 +7884 54962 0.4660 +7884 55143 0.4040 +7884 55148 0.4920 +7884 55339 0.4040 +7884 55527 0.4660 +7884 55611 0.4790 +7884 55629 0.5540 +7884 55632 0.4240 +7884 55706 0.4550 +7884 55723 0.5160 +7884 55746 0.4410 +7884 55869 0.4860 +7884 56929 0.4740 +7884 57122 0.4330 +7884 57409 0.9990 +7884 57829 0.4060 +7884 64077 0.4530 +7884 79023 0.4820 +7884 79075 0.5600 +7884 79670 0.4870 +7884 79869 0.4210 +7884 79902 0.4740 +7884 79968 0.4540 +7884 80153 0.4650 +7884 80344 0.6960 +7884 81620 0.5080 +7884 81929 0.4720 +7884 83540 0.4470 +7884 83743 0.4050 +7884 84916 0.4020 +7884 84967 0.9010 +7884 90459 0.9990 +7884 92305 0.6790 +7884 94239 0.5040 +7884 124245 0.4730 +7884 129401 0.4790 +7884 134353 0.9610 +7884 149041 0.4550 +7884 152877 0.5160 +7884 283431 0.4100 +7884 348995 0.4690 +7884 440093 0.4190 +7884 440686 0.4180 +7884 653604 0.4210 +7884 100101267 0.4450 +7903 8828 0.6180 +7903 10020 0.4200 +7903 10559 0.5450 +7903 54187 0.5400 +7903 54414 0.4480 +7903 55808 0.4590 +7903 84896 0.4370 +7903 129807 0.4090 +7903 285203 0.4030 +7903 345757 0.5140 +7905 8266 0.4250 +7905 8651 0.4300 +7905 8913 0.5820 +7905 8992 0.5690 +7905 9172 0.4690 +7905 10313 0.9060 +7905 10550 0.5340 +7905 10567 0.7820 +7905 10970 0.6230 +7905 22931 0.4170 +7905 23197 0.4790 +7905 23204 0.6570 +7905 23344 0.6120 +7905 25875 0.4110 +7905 25912 0.4780 +7905 25923 0.8960 +7905 29994 0.4390 +7905 51062 0.8420 +7905 51348 0.4710 +7905 54463 0.4700 +7905 55161 0.6650 +7905 55180 0.4190 +7905 56851 0.5410 +7905 57142 0.9540 +7905 58477 0.4570 +7905 64225 0.8530 +7905 80856 0.5440 +7905 84447 0.4510 +7905 84897 0.6410 +7905 91137 0.7120 +7905 92840 0.7350 +7905 113178 0.4590 +7905 116150 0.6710 +7905 118813 0.5900 +7905 124491 0.4250 +7905 132720 0.4690 +7905 162427 0.5880 +7905 283337 0.7740 +7913 7919 0.4820 +7913 7994 0.4610 +7913 8019 0.4300 +7913 8021 0.9320 +7913 8028 0.4840 +7913 8125 0.7040 +7913 8202 0.4610 +7913 8243 0.4030 +7913 8331 0.5150 +7913 8334 0.5240 +7913 8337 0.7790 +7913 8338 0.8880 +7913 8340 0.5180 +7913 8341 0.5130 +7913 8342 0.5130 +7913 8345 0.5330 +7913 8347 0.5310 +7913 8348 0.5340 +7913 8349 0.8780 +7913 8350 0.5050 +7913 8356 0.7700 +7913 8361 0.8420 +7913 8405 0.8880 +7913 8452 0.4490 +7913 8467 0.9220 +7913 8480 0.4490 +7913 8805 0.5130 +7913 8850 0.6940 +7913 8970 0.5130 +7913 9013 0.4990 +7913 9014 0.5140 +7913 9015 0.5230 +7913 9031 0.9340 +7913 9055 0.4400 +7913 9126 0.4970 +7913 9188 0.9130 +7913 9295 0.7020 +7913 9533 0.5040 +7913 9555 0.4510 +7913 9648 0.4080 +7913 9775 0.4980 +7913 9928 0.6630 +7913 9939 0.5130 +7913 10051 0.5140 +7913 10189 0.8780 +7913 10250 0.9780 +7913 10285 0.4480 +7913 10482 0.4690 +7913 10514 0.9320 +7913 10614 0.4870 +7913 10849 0.5130 +7913 10919 0.4390 +7913 10921 0.9730 +7913 11073 0.4220 +7913 11168 0.4640 +7913 11335 0.4480 +7913 11338 0.8400 +7913 23210 0.6520 +7913 23421 0.4150 +7913 23451 0.9280 +7913 23468 0.5160 +7913 23476 0.6890 +7913 23512 0.4980 +7913 25885 0.5290 +7913 26019 0.5620 +7913 30834 0.5140 +7913 51082 0.5810 +7913 54145 0.5190 +7913 54606 0.4970 +7913 55110 0.5260 +7913 55294 0.4660 +7913 55766 0.5160 +7913 56992 0.4490 +7913 57337 0.4230 +7913 57521 0.4170 +7913 64425 0.5070 +7913 65109 0.5830 +7913 65110 0.5390 +7913 79101 0.5370 +7913 84172 0.5230 +7913 85236 0.5260 +7913 90353 0.4390 +7913 94239 0.5740 +7913 128312 0.5180 +7913 171017 0.4310 +7913 221830 0.5140 +7913 255626 0.5130 +7913 474382 0.5200 +7913 653604 0.6370 +7915 8050 0.4540 +7915 8574 0.7490 +7915 8639 0.5550 +7915 8801 0.4810 +7915 8802 0.6830 +7915 8803 0.6200 +7915 8879 0.5320 +7915 9563 0.4920 +7915 10247 0.4400 +7915 10449 0.5340 +7915 10873 0.4680 +7915 10905 0.4160 +7915 10993 0.4460 +7915 11112 0.4010 +7915 22934 0.4240 +7915 22984 0.4080 +7915 25902 0.4060 +7915 25959 0.4120 +7915 26063 0.4080 +7915 26227 0.4370 +7915 26275 0.4670 +7915 51004 0.4610 +7915 51011 0.4060 +7915 51071 0.4330 +7915 51102 0.4730 +7915 51179 0.4400 +7915 51380 0.4390 +7915 54363 0.4010 +7915 54806 0.4480 +7915 54884 0.4070 +7915 54988 0.4790 +7915 55349 0.4610 +7915 55526 0.4530 +7915 55753 0.8840 +7915 55902 0.5440 +7915 56912 0.4300 +7915 57591 0.5550 +7915 57687 0.4350 +7915 58510 0.5400 +7915 64850 0.4480 +7915 64902 0.5250 +7915 65220 0.4270 +7915 65985 0.5070 +7915 79611 0.4630 +7915 79814 0.5570 +7915 79944 0.4660 +7915 80777 0.4420 +7915 81889 0.4930 +7915 84263 0.7320 +7915 84529 0.4400 +7915 84532 0.5350 +7915 84680 0.4610 +7915 84693 0.4600 +7915 84869 0.4240 +7915 85007 0.4050 +7915 113675 0.6250 +7915 116285 0.4480 +7915 123876 0.4490 +7915 130013 0.4540 +7915 137872 0.5810 +7915 140679 0.4750 +7915 162417 0.4130 +7915 197257 0.4210 +7915 203068 0.4840 +7915 341392 0.4480 +7915 348158 0.4480 +7916 7917 0.8440 +7916 7918 0.7200 +7916 7920 0.7550 +7916 8100 0.4200 +7916 8224 0.6390 +7916 8266 0.4570 +7916 8667 0.4160 +7916 8939 0.4730 +7916 8974 0.4250 +7916 9374 0.4330 +7916 9513 0.4660 +7916 9589 0.5290 +7916 9698 0.4080 +7916 9879 0.5050 +7916 9898 0.7600 +7916 9908 0.4990 +7916 10146 0.5660 +7916 10155 0.4850 +7916 10213 0.4130 +7916 10459 0.4320 +7916 10642 0.6120 +7916 10644 0.5110 +7916 10847 0.4770 +7916 10989 0.4300 +7916 11060 0.5130 +7916 11218 0.5330 +7916 11273 0.4890 +7916 22985 0.4830 +7916 23019 0.4940 +7916 23020 0.4050 +7916 23091 0.5800 +7916 23152 0.5550 +7916 23193 0.4840 +7916 23215 0.6840 +7916 23476 0.4130 +7916 25962 0.6750 +7916 25970 0.4860 +7916 26135 0.4110 +7916 26284 0.4100 +7916 27316 0.6270 +7916 29063 0.5070 +7916 29081 0.4180 +7916 29890 0.5120 +7916 29894 0.4780 +7916 51428 0.4470 +7916 51441 0.7360 +7916 51608 0.5200 +7916 54542 0.4420 +7916 54890 0.5510 +7916 54915 0.7850 +7916 55833 0.4320 +7916 56339 0.7100 +7916 57176 0.4010 +7916 57721 0.5700 +7916 57827 0.4530 +7916 58496 0.4120 +7916 58506 0.5200 +7916 63935 0.4260 +7916 64783 0.5300 +7916 64848 0.7270 +7916 79047 0.4120 +7916 79066 0.5160 +7916 79068 0.5600 +7916 79171 0.5180 +7916 79872 0.4770 +7916 80737 0.4220 +7916 80758 0.4220 +7916 89866 0.5520 +7916 91746 0.7320 +7916 132789 0.4150 +7916 149041 0.4240 +7916 221527 0.4930 +7916 253943 0.7360 +7916 404734 0.5360 +7917 7936 0.5570 +7917 8266 0.9990 +7917 8975 0.6260 +7917 9131 0.5870 +7917 9218 0.5000 +7917 9354 0.5120 +7917 9381 0.5290 +7917 9436 0.4180 +7917 9530 0.4720 +7917 9612 0.7610 +7917 10155 0.4240 +7917 10213 0.7610 +7917 10273 0.4110 +7917 10277 0.4880 +7917 10498 0.4110 +7917 10952 0.6680 +7917 22858 0.4750 +7917 22914 0.5640 +7917 23197 0.9950 +7917 23480 0.5060 +7917 25793 0.5760 +7917 26579 0.6100 +7917 27230 0.4990 +7917 27246 0.4570 +7917 27351 0.9940 +7917 29979 0.4930 +7917 51009 0.5710 +7917 51035 0.9950 +7917 51552 0.4290 +7917 51608 0.9990 +7917 54557 0.6810 +7917 55658 0.9970 +7917 56893 0.6880 +7917 56914 0.4180 +7917 57506 0.4610 +7917 57827 0.4120 +7917 59349 0.4720 +7917 63891 0.5710 +7917 64083 0.6700 +7917 79654 0.4050 +7917 80199 0.6950 +7917 81631 0.4980 +7917 81857 0.4090 +7917 84223 0.4460 +7917 84868 0.9410 +7917 84993 0.6600 +7917 92521 0.5290 +7917 93099 0.5470 +7917 118424 0.5180 +7917 130617 0.5220 +7917 164153 0.8260 +7917 259197 0.9950 +7917 284194 0.4520 +7917 374383 0.5830 +7917 400668 0.4460 +7917 654346 0.4550 +7918 7920 0.6590 +7918 8570 0.4160 +7918 9208 0.4440 +7918 10133 0.4350 +7918 23193 0.4820 +7918 29777 0.5190 +7918 54902 0.4520 +7918 55937 0.9670 +7918 57827 0.6690 +7918 58496 0.5910 +7918 80222 0.4950 +7918 80740 0.4460 +7918 80741 0.5170 +7918 83541 0.4510 +7918 94097 0.4050 +7918 94160 0.4110 +7918 284695 0.4950 +7919 7920 0.6790 +7919 7940 0.6970 +7919 7979 0.4530 +7919 8021 0.5100 +7919 8106 0.8120 +7919 8125 0.4300 +7919 8148 0.6850 +7919 8175 0.4980 +7919 8260 0.4550 +7919 8449 0.8980 +7919 8480 0.9480 +7919 8539 0.4990 +7919 8563 0.9990 +7919 8570 0.4860 +7919 8607 0.6110 +7919 8662 0.4560 +7919 8666 0.5620 +7919 8668 0.5180 +7919 8683 0.7520 +7919 8880 0.4190 +7919 8888 0.8030 +7919 8899 0.8640 +7919 9063 0.4510 +7919 9092 0.4300 +7919 9128 0.4990 +7919 9129 0.4160 +7919 9130 0.8020 +7919 9136 0.4870 +7919 9184 0.4180 +7919 9271 0.4810 +7919 9295 0.6020 +7919 9343 0.7540 +7919 9349 0.4270 +7919 9360 0.8290 +7919 9410 0.4230 +7919 9584 0.9220 +7919 9589 0.6340 +7919 9656 0.4530 +7919 9669 0.4960 +7919 9704 0.5980 +7919 9716 0.5070 +7919 9774 0.7540 +7919 9775 0.9990 +7919 9782 0.7400 +7919 9785 0.9430 +7919 9877 0.8380 +7919 9939 0.9980 +7919 9967 0.4220 +7919 9984 0.9990 +7919 9987 0.4960 +7919 10084 0.8170 +7919 10128 0.5760 +7919 10155 0.5000 +7919 10179 0.6090 +7919 10181 0.8640 +7919 10189 0.9990 +7919 10197 0.5400 +7919 10204 0.5440 +7919 10212 0.9670 +7919 10236 0.7400 +7919 10250 0.9620 +7919 10262 0.4600 +7919 10283 0.8280 +7919 10284 0.8790 +7919 10286 0.4570 +7919 10291 0.5940 +7919 10399 0.4190 +7919 10432 0.6940 +7919 10450 0.4580 +7919 10471 0.4350 +7919 10482 0.9390 +7919 10492 0.6880 +7919 10541 0.5030 +7919 10569 0.8580 +7919 10574 0.4040 +7919 10575 0.4540 +7919 10576 0.5020 +7919 10594 0.5980 +7919 10657 0.6380 +7919 10694 0.4910 +7919 10726 0.4620 +7919 10772 0.5710 +7919 10856 0.5990 +7919 10907 0.8420 +7919 10915 0.8490 +7919 10921 0.9540 +7919 10946 0.4900 +7919 10949 0.7150 +7919 10969 0.4430 +7919 10978 0.5450 +7919 10992 0.4210 +7919 11017 0.4840 +7919 11051 0.8360 +7919 11052 0.8710 +7919 11100 0.4590 +7919 11157 0.6420 +7919 11193 0.8040 +7919 11222 0.4240 +7919 11244 0.4200 +7919 11338 0.9960 +7919 22794 0.7430 +7919 22826 0.6710 +7919 22827 0.4590 +7919 22907 0.4040 +7919 22913 0.5040 +7919 22916 0.9300 +7919 22948 0.4980 +7919 22985 0.8430 +7919 23016 0.5640 +7919 23019 0.4120 +7919 23020 0.7090 +7919 23064 0.4190 +7919 23160 0.5010 +7919 23221 0.5790 +7919 23246 0.4570 +7919 23398 0.8140 +7919 23404 0.4580 +7919 23435 0.7680 +7919 23450 0.6580 +7919 23451 0.6520 +7919 23481 0.4250 +7919 23517 0.8910 +7919 23521 0.4120 +7919 23524 0.8720 +7919 23560 0.4610 +7919 23636 0.4150 +7919 23658 0.6520 +7919 23759 0.8260 +7919 24144 0.6010 +7919 24148 0.9110 +7919 25804 0.7680 +7919 25843 0.4310 +7919 25914 0.4100 +7919 25949 0.8340 +7919 26017 0.8030 +7919 26019 0.6390 +7919 26097 0.9990 +7919 26121 0.7880 +7919 26155 0.4080 +7919 26986 0.5930 +7919 27238 0.8080 +7919 27257 0.5380 +7919 27258 0.8230 +7919 27316 0.7510 +7919 27336 0.7880 +7919 27339 0.8230 +7919 28996 0.4830 +7919 29107 0.8580 +7919 29855 0.5470 +7919 29894 0.5120 +7919 29901 0.5300 +7919 51213 0.8680 +7919 51340 0.4500 +7919 51362 0.8910 +7919 51388 0.4520 +7919 51428 0.8740 +7919 51493 0.4950 +7919 51538 0.5350 +7919 51585 0.8250 +7919 51593 0.9730 +7919 51602 0.5460 +7919 51637 0.5600 +7919 51639 0.5160 +7919 51645 0.8440 +7919 51690 0.6860 +7919 51691 0.7330 +7919 51692 0.4140 +7919 51729 0.8050 +7919 51747 0.6570 +7919 51759 0.5160 +7919 51808 0.6540 +7919 53938 0.8400 +7919 54663 0.4970 +7919 55015 0.4650 +7919 55082 0.4330 +7919 55110 0.9790 +7919 55234 0.8910 +7919 55299 0.4710 +7919 55421 0.8900 +7919 55660 0.8720 +7919 55677 0.4400 +7919 55749 0.5780 +7919 55759 0.5020 +7919 55795 0.6040 +7919 56000 0.6030 +7919 56001 0.5150 +7919 56259 0.7170 +7919 56919 0.5820 +7919 56943 0.6720 +7919 56949 0.4460 +7919 57136 0.4920 +7919 57187 0.9990 +7919 57647 0.5170 +7919 57703 0.8870 +7919 57721 0.6550 +7919 57794 0.6080 +7919 57819 0.7140 +7919 58509 0.8110 +7919 58517 0.8900 +7919 59286 0.8420 +7919 60625 0.5860 +7919 63932 0.8030 +7919 64318 0.4440 +7919 64783 0.5260 +7919 64789 0.4890 +7919 65109 0.9210 +7919 79165 0.5620 +7919 79228 0.9990 +7919 79576 0.5050 +7919 79665 0.5220 +7919 79706 0.8020 +7919 79869 0.6460 +7919 79882 0.8190 +7919 80145 0.9990 +7919 80218 0.4720 +7919 83443 0.5980 +7919 84248 0.9960 +7919 84271 0.9940 +7919 84321 0.9990 +7919 84324 0.9990 +7919 84844 0.5730 +7919 84950 0.8360 +7919 84991 0.4390 +7919 87178 0.5290 +7919 91607 0.4200 +7919 91746 0.5130 +7919 92906 0.6900 +7919 94239 0.4200 +7919 122402 0.4230 +7919 140890 0.4830 +7919 143689 0.4730 +7919 143884 0.5210 +7919 151903 0.8410 +7919 153527 0.8530 +7919 163859 0.8100 +7919 170506 0.4930 +7919 192669 0.4260 +7919 196441 0.4200 +7919 199746 0.5220 +7919 201164 0.4270 +7919 220988 0.6940 +7919 266743 0.5680 +7919 284695 0.5300 +7919 401250 0.4100 +7919 728343 0.6940 +7920 7940 0.7620 +7920 8519 0.6630 +7920 9552 0.4300 +7920 10331 0.5320 +7920 10410 0.5800 +7920 10430 0.4390 +7920 10434 0.5020 +7920 10908 0.4600 +7920 11057 0.5710 +7920 11313 0.4710 +7920 11338 0.5900 +7920 25864 0.4610 +7920 26090 0.8550 +7920 29990 0.4200 +7920 51104 0.4590 +7920 51365 0.5180 +7920 55283 0.4220 +7920 55347 0.5410 +7920 55890 0.4600 +7920 57406 0.6900 +7920 57827 0.4880 +7920 58489 0.4070 +7920 58496 0.5380 +7920 63874 0.5450 +7920 64215 0.4250 +7920 79575 0.4480 +7920 80740 0.4180 +7920 80741 0.6170 +7920 81502 0.7110 +7920 81926 0.5600 +7920 83451 0.5320 +7920 84065 0.4220 +7920 84636 0.4180 +7920 84696 0.5010 +7920 84945 0.5890 +7920 113878 0.4770 +7920 116236 0.4150 +7920 145447 0.5770 +7920 162427 0.4250 +7920 171586 0.6490 +7920 221527 0.8290 +7922 7923 0.9360 +7922 9092 0.7070 +7922 9947 0.5500 +7922 10273 0.8740 +7922 10463 0.8040 +7922 10471 0.9410 +7922 23516 0.4450 +7922 25800 0.4460 +7922 27173 0.8480 +7922 29927 0.5790 +7922 29940 0.7610 +7922 29985 0.7190 +7922 29986 0.7050 +7922 55176 0.4870 +7922 55334 0.8570 +7922 55532 0.7600 +7922 55676 0.8770 +7922 57181 0.4040 +7922 64116 0.4460 +7922 64924 0.8590 +7922 148867 0.8640 +7922 169026 0.6660 +7922 201266 0.8420 +7922 283375 0.4370 +7923 8192 0.4060 +7923 8309 0.4070 +7923 8630 0.9180 +7923 8644 0.9360 +7923 9278 0.4180 +7923 9380 0.4050 +7923 9563 0.4170 +7923 9942 0.5140 +7923 10449 0.4470 +7923 10455 0.4220 +7923 10471 0.8830 +7923 10720 0.6710 +7923 11112 0.5360 +7923 27236 0.4610 +7923 27349 0.8200 +7923 51102 0.7790 +7923 51144 0.9730 +7923 51167 0.4300 +7923 51478 0.9570 +7923 51495 0.4450 +7923 51645 0.4760 +7923 51649 0.4320 +7923 51805 0.4670 +7923 54490 0.6710 +7923 54575 0.6610 +7923 54576 0.6610 +7923 54577 0.6610 +7923 54578 0.6720 +7923 54579 0.6700 +7923 54600 0.6660 +7923 54657 0.6610 +7923 54658 0.6610 +7923 54659 0.6850 +7923 54995 0.9810 +7923 55034 0.4440 +7923 55268 0.5390 +7923 55964 0.5940 +7923 57128 0.4290 +7923 64064 0.4060 +7923 79154 0.9360 +7923 79644 0.9270 +7923 79799 0.6700 +7923 83693 0.5420 +7923 84263 0.4510 +7923 84330 0.4050 +7923 84869 0.9990 +7923 84955 0.6220 +7923 92949 0.4810 +7923 112812 0.5140 +7923 132949 0.4180 +7923 197322 0.4700 +7923 201140 0.4190 +7923 201562 0.4530 +7923 284086 0.6400 +7923 574537 0.6700 +7923 109703458 0.9380 +7932 10320 0.6940 +7932 27130 0.4890 +7932 51764 0.6500 +7932 93190 0.4190 +7932 206412 0.4360 +7932 282890 0.5530 +7932 346171 0.4900 +7932 378708 0.5450 +7932 100423062 0.6470 +7936 8175 0.4200 +7936 8178 0.9230 +7936 8458 0.7260 +7936 8621 0.7500 +7936 8812 0.7660 +7936 8859 0.4730 +7936 9015 0.4460 +7936 9150 0.6150 +7936 9343 0.4440 +7936 9611 0.4710 +7936 9646 0.9390 +7936 9656 0.5250 +7936 9939 0.4530 +7936 10179 0.4420 +7936 10524 0.4650 +7936 10614 0.5360 +7936 10765 0.4820 +7936 10946 0.4440 +7936 11198 0.6370 +7936 11335 0.7100 +7936 22803 0.6430 +7936 22916 0.9940 +7936 22936 0.9350 +7936 22938 0.4760 +7936 23168 0.9250 +7936 23186 0.4010 +7936 23379 0.9100 +7936 23451 0.5110 +7936 23476 0.5820 +7936 25920 0.9990 +7936 26173 0.4120 +7936 26610 0.9060 +7936 26747 0.7230 +7936 27125 0.9430 +7936 29894 0.4580 +7936 51224 0.5470 +7936 51319 0.5200 +7936 51497 0.9990 +7936 51574 0.6210 +7936 51755 0.7440 +7936 51808 0.5360 +7936 54623 0.9040 +7936 54700 0.4480 +7936 54973 0.4600 +7936 55215 0.5040 +7936 55250 0.7330 +7936 55596 0.4280 +7936 55756 0.4120 +7936 55840 0.9000 +7936 56257 0.6160 +7936 57819 0.6170 +7936 57827 0.4950 +7936 58509 0.5010 +7936 64131 0.6100 +7936 79577 0.9300 +7936 79664 0.9010 +7936 80237 0.9200 +7936 80349 0.9390 +7936 80789 0.5660 +7936 84337 0.5780 +7936 84524 0.9130 +7936 85403 0.9000 +7936 123169 0.9400 +7936 124790 0.4850 +7936 246721 0.4210 +7936 404672 0.5260 +7936 548644 0.4210 +7940 8698 0.4370 +7940 9450 0.4880 +7940 9535 0.4640 +7940 10288 0.5110 +7940 10870 0.4470 +7940 11027 0.4290 +7940 26509 0.6530 +7940 27128 0.4220 +7940 50856 0.5300 +7940 51655 0.4140 +7940 53829 0.4670 +7940 55103 0.7330 +7940 55632 0.4200 +7940 58509 0.4200 +7940 64231 0.4300 +7940 79626 0.4630 +7940 128346 0.4530 +7940 259197 0.7730 +7941 8398 0.8310 +7941 8399 0.8770 +7941 8504 0.9000 +7941 8542 0.7670 +7941 8605 0.8030 +7941 8681 0.6500 +7941 9332 0.4760 +7941 10261 0.5140 +7941 10344 0.4280 +7941 10390 0.9100 +7941 11145 0.8020 +7941 11251 0.4970 +7941 23659 0.6180 +7941 26279 0.8110 +7941 27299 0.5120 +7941 30814 0.7300 +7941 50487 0.7420 +7941 50640 0.4290 +7941 51131 0.5170 +7941 51449 0.7550 +7941 51599 0.5400 +7941 51738 0.7630 +7941 54947 0.9700 +7941 55829 0.7330 +7941 55911 0.5690 +7941 55937 0.7920 +7941 56833 0.5260 +7941 56994 0.9290 +7941 57406 0.4570 +7941 64231 0.4190 +7941 64582 0.4490 +7941 64600 0.7200 +7941 79135 0.5400 +7941 79888 0.9520 +7941 80332 0.4970 +7941 81579 0.7540 +7941 84647 0.7560 +7941 116519 0.9210 +7941 117156 0.5470 +7941 123745 0.7560 +7941 137872 0.5860 +7941 151056 0.7290 +7941 254531 0.9080 +7941 255189 0.7060 +7941 255738 0.4160 +7941 283748 0.7580 +7941 391013 0.6720 +7941 100137049 0.7210 +7941 100528017 0.5910 +7942 8290 0.4340 +7942 8356 0.4360 +7942 8408 0.6940 +7942 8649 0.8470 +7942 8673 0.4180 +7942 8678 0.7870 +7942 8722 0.4950 +7942 8878 0.7470 +7942 9140 0.6360 +7942 9342 0.4030 +7942 9474 0.7620 +7942 9706 0.5210 +7942 9711 0.5460 +7942 9776 0.8210 +7942 9821 0.5880 +7942 9927 0.4080 +7942 10014 0.4150 +7942 10133 0.4440 +7942 10241 0.4930 +7942 10273 0.5180 +7942 10325 0.4960 +7942 10498 0.6410 +7942 10533 0.7580 +7942 10542 0.8380 +7942 10626 0.5490 +7942 10645 0.4520 +7942 10670 0.9700 +7942 10871 0.4920 +7942 10891 0.6090 +7942 10971 0.7120 +7942 11337 0.6290 +7942 11345 0.6000 +7942 22797 0.5610 +7942 22863 0.6040 +7942 23192 0.5170 +7942 23400 0.4080 +7942 23411 0.5430 +7942 23435 0.4360 +7942 23710 0.6290 +7942 26100 0.5530 +7942 28956 0.8680 +7942 30849 0.4540 +7942 51606 0.5530 +7942 54664 0.4250 +7942 55004 0.8810 +7942 55014 0.5430 +7942 55054 0.5790 +7942 55062 0.5910 +7942 55201 0.5640 +7942 55283 0.4210 +7942 55626 0.5210 +7942 55823 0.5250 +7942 55902 0.5730 +7942 57192 0.8600 +7942 57521 0.9590 +7942 57600 0.4330 +7942 57617 0.5200 +7942 58528 0.6030 +7942 60673 0.5790 +7942 64121 0.9720 +7942 64223 0.8970 +7942 64422 0.6020 +7942 64798 0.4160 +7942 65018 0.6090 +7942 79058 0.5790 +7942 79065 0.4900 +7942 80317 0.6710 +7942 81578 0.4810 +7942 81631 0.7170 +7942 83734 0.4730 +7942 84141 0.4060 +7942 84557 0.5900 +7942 84971 0.4170 +7942 90809 0.4360 +7942 96459 0.4530 +7942 139341 0.4230 +7942 140775 0.4350 +7942 142910 0.4090 +7942 152007 0.4980 +7942 153129 0.4760 +7942 200576 0.4530 +7942 201163 0.6050 +7942 202559 0.4980 +7942 253260 0.4120 +7942 253559 0.4450 +7942 255231 0.4650 +7942 285973 0.5650 +7942 340654 0.4580 +7942 389541 0.8560 +7942 440093 0.4300 +7942 440686 0.4330 +7942 441925 0.5560 +7942 653604 0.4340 +7957 8878 0.4210 +7957 8908 0.7560 +7957 8987 0.9120 +7957 9352 0.6080 +7957 9852 0.9320 +7957 10023 0.4360 +7957 10133 0.4890 +7957 10273 0.7070 +7957 23401 0.4370 +7957 23640 0.4750 +7957 27247 0.9160 +7957 51741 0.4250 +7957 51744 0.4970 +7957 54935 0.5140 +7957 56978 0.6600 +7957 79660 0.5380 +7957 84085 0.6250 +7957 114971 0.4910 +7957 338599 0.4060 +7957 378884 0.9990 +7965 8565 0.6320 +7965 8570 0.4950 +7965 8880 0.8920 +7965 8939 0.5630 +7965 9246 0.4140 +7965 9255 0.9990 +7965 9521 0.9990 +7965 9529 0.4530 +7965 9627 0.6690 +7965 10056 0.4970 +7965 10286 0.4250 +7965 10436 0.5340 +7965 10514 0.4020 +7965 10574 0.5380 +7965 10576 0.4750 +7965 10898 0.5290 +7965 10935 0.4230 +7965 11060 0.6350 +7965 11315 0.6980 +7965 22827 0.4440 +7965 23208 0.5030 +7965 23395 0.7720 +7965 23513 0.4170 +7965 23640 0.4130 +7965 25973 0.4170 +7965 26517 0.4980 +7965 26519 0.4060 +7965 27338 0.5030 +7965 51067 0.4910 +7965 51491 0.4580 +7965 51520 0.9950 +7965 55157 0.4460 +7965 55651 0.5030 +7965 55699 0.5650 +7965 55737 0.4900 +7965 57019 0.5000 +7965 57038 0.8770 +7965 57176 0.4240 +7965 57505 0.4890 +7965 57663 0.5070 +7965 64750 0.4820 +7965 65018 0.5370 +7965 79173 0.6170 +7965 79731 0.4740 +7965 80222 0.4560 +7965 92935 0.8980 +7965 120892 0.5880 +7965 123283 0.4710 +7965 124454 0.4610 +7965 135138 0.4240 +7965 155061 0.6080 +7965 100310846 0.6340 +7975 8061 0.4940 +7975 8085 0.4320 +7975 8452 0.4020 +7975 8454 0.6020 +7975 8841 0.8490 +7975 9603 0.9690 +7975 9817 0.6030 +7975 9935 0.4290 +7975 9978 0.5710 +7975 10155 0.4270 +7975 10538 0.4400 +7975 10664 0.5840 +7975 11016 0.5990 +7975 11243 0.4260 +7975 23764 0.8970 +7975 55733 0.6990 +7975 60468 0.9800 +7975 64839 0.5190 +7975 79661 0.4360 +7975 84301 0.4800 +7975 122953 0.5140 +7975 283991 0.4470 +7975 100527963 0.4240 +7976 8029 0.4950 +7976 8312 0.4570 +7976 8313 0.5250 +7976 8321 0.5540 +7976 8322 0.6950 +7976 8323 0.6920 +7976 8324 0.5420 +7976 8325 0.5640 +7976 9620 0.8810 +7976 10681 0.5240 +7976 11197 0.4360 +7976 22881 0.4310 +7976 22943 0.4870 +7976 23002 0.7200 +7976 23236 0.5630 +7976 23513 0.6610 +7976 25805 0.9190 +7976 27122 0.4140 +7976 27123 0.4360 +7976 29964 0.6340 +7976 50855 0.7520 +7976 51176 0.4870 +7976 51384 0.8970 +7976 51764 0.4990 +7976 54331 0.4990 +7976 54361 0.9870 +7976 54810 0.5940 +7976 54894 0.9170 +7976 55970 0.4990 +7976 56288 0.4790 +7976 57154 0.5470 +7976 57216 0.9530 +7976 59345 0.5230 +7976 64750 0.5660 +7976 80319 0.4800 +7976 80326 0.8270 +7976 81029 0.9860 +7976 81839 0.7240 +7976 84133 0.9250 +7976 89780 0.9560 +7976 94235 0.4990 +7976 115908 0.7690 +7976 121512 0.4490 +7976 126326 0.4360 +7976 144165 0.7260 +7976 163183 0.4210 +7976 166336 0.6580 +7976 256051 0.4430 +7978 9617 0.4560 +7978 9801 0.4720 +7978 10128 0.4420 +7978 11232 0.5530 +7978 22868 0.5140 +7978 22984 0.4120 +7978 51001 0.8610 +7978 51021 0.4800 +7978 51073 0.4050 +7978 51081 0.4480 +7978 51095 0.4710 +7978 51106 0.8330 +7978 51264 0.4170 +7978 55006 0.4860 +7978 55052 0.4300 +7978 55163 0.5040 +7978 56652 0.6070 +7978 57102 0.6290 +7978 63875 0.4050 +7978 63899 0.4080 +7978 64216 0.8640 +7978 64965 0.4370 +7978 64979 0.5030 +7978 65005 0.4050 +7978 79072 0.5120 +7978 79736 0.8470 +7978 80006 0.5250 +7978 81892 0.4310 +7978 84629 0.5330 +7978 92399 0.5380 +7978 92667 0.4160 +7978 112840 0.6350 +7978 129831 0.5000 +7978 130916 0.7830 +7978 132949 0.4460 +7978 219927 0.4150 +7978 256471 0.4780 +7978 387338 0.6460 +7979 8321 0.4970 +7979 8452 0.5260 +7979 8453 0.5570 +7979 8454 0.5960 +7979 8600 0.4400 +7979 8658 0.4330 +7979 8697 0.4010 +7979 8792 0.4480 +7979 8881 0.4080 +7979 8888 0.9680 +7979 8900 0.4200 +7979 8945 0.4120 +7979 8994 0.4170 +7979 9097 0.8750 +7979 9134 0.4010 +7979 9156 0.6320 +7979 9491 0.4420 +7979 9577 0.5070 +7979 9690 0.6580 +7979 9775 0.4440 +7979 9817 0.5090 +7979 9861 0.9880 +7979 9958 0.5030 +7979 9978 0.5310 +7979 10111 0.5440 +7979 10197 0.6150 +7979 10213 0.9970 +7979 10393 0.4200 +7979 10482 0.6190 +7979 10524 0.5250 +7979 10537 0.5370 +7979 10635 0.5910 +7979 10714 0.4730 +7979 10944 0.4570 +7979 11047 0.9130 +7979 11065 0.4200 +7979 11073 0.5760 +7979 11188 0.4260 +7979 23198 0.6280 +7979 23392 0.6510 +7979 23514 0.5000 +7979 25896 0.4250 +7979 25906 0.4160 +7979 26043 0.4990 +7979 26271 0.4080 +7979 26512 0.4520 +7979 27338 0.4650 +7979 29107 0.5590 +7979 29945 0.4080 +7979 29978 0.6330 +7979 29979 0.5360 +7979 51053 0.4280 +7979 51371 0.5490 +7979 51377 0.8730 +7979 51433 0.4040 +7979 51512 0.4110 +7979 51529 0.4350 +7979 51667 0.6300 +7979 51750 0.4320 +7979 54973 0.7660 +7979 55149 0.5210 +7979 55174 0.4290 +7979 55656 0.4550 +7979 55666 0.5140 +7979 55726 0.4360 +7979 55756 0.8160 +7979 55795 0.9940 +7979 56655 0.4130 +7979 56920 0.6690 +7979 56943 0.9930 +7979 57508 0.4300 +7979 64682 0.4050 +7979 64852 0.5250 +7979 79728 0.9190 +7979 80010 0.6090 +7979 80198 0.6010 +7979 80227 0.7020 +7979 80351 0.4170 +7979 83695 0.5000 +7979 83737 0.4010 +7979 83990 0.5970 +7979 84126 0.5700 +7979 84262 0.4490 +7979 84301 0.4180 +7979 84464 0.5600 +7979 87178 0.4480 +7979 92105 0.4540 +7979 114823 0.4220 +7979 116028 0.5910 +7979 123228 0.5410 +7979 144165 0.4360 +7979 144715 0.4990 +7979 146956 0.5740 +7979 197342 0.4990 +7979 246184 0.4190 +7979 348654 0.4290 +7979 414301 0.5050 +7979 548593 0.5140 +7980 8100 0.4710 +7980 8741 0.4150 +7980 8772 0.4170 +7980 9510 0.4600 +7980 9982 0.5090 +7980 10544 0.4760 +7980 10801 0.4760 +7980 11186 0.6430 +7980 23059 0.4450 +7980 25850 0.4140 +7980 26160 0.4200 +7980 28981 0.4070 +7980 51098 0.4320 +7980 54980 0.4400 +7980 56912 0.4700 +7980 64792 0.4330 +7980 65009 0.6100 +7980 80173 0.4030 +7980 92104 0.4700 +7980 440387 0.4230 +7982 10419 0.4140 +7982 11231 0.4200 +7982 23341 0.4630 +7982 26094 0.6830 +7982 60561 0.4010 +7982 79042 0.4450 +7982 80746 0.5800 +7982 83943 0.4870 +7982 93986 0.6320 +7984 8727 0.5330 +7984 9138 0.5090 +7984 9459 0.4610 +7984 9721 0.4540 +7984 9747 0.4780 +7984 23380 0.5220 +7984 26095 0.4940 +7984 54959 0.4250 +7984 56892 0.4240 +7984 56940 0.4250 +7984 64762 0.6930 +7984 79663 0.4430 +7984 79705 0.4470 +7984 80258 0.6040 +7984 84940 0.4830 +7984 85358 0.4010 +7984 445328 0.6680 +7984 728340 0.4350 +7984 100271715 0.4800 +7984 100996758 0.4170 +7988 8427 0.8400 +7988 10127 0.5470 +7988 10155 0.6870 +7988 10946 0.5890 +7988 23071 0.5520 +7988 25888 0.4260 +7988 26205 0.4940 +7988 26276 0.4800 +7988 26538 0.5080 +7988 27153 0.7170 +7988 55633 0.4860 +7988 56623 0.4460 +7988 57541 0.8290 +7988 63906 0.5370 +7988 64763 0.5080 +7988 64852 0.5460 +7988 65999 0.4040 +7988 79797 0.7070 +7988 81559 0.4800 +7988 114790 0.4560 +7988 127002 0.6510 +7988 146059 0.4410 +7988 155061 0.8370 +7988 159013 0.4120 +7988 163033 0.4670 +7988 202865 0.4480 +7988 221785 0.4590 +7988 349136 0.4220 +7988 392843 0.4350 +7988 729201 0.4720 +7988 100289678 0.7250 +7988 100527949 0.4320 +7991 8813 0.4570 +7991 9761 0.8180 +7991 10195 0.6100 +7991 10395 0.4420 +7991 10585 0.4140 +7991 10952 0.7910 +7991 10972 0.6740 +7991 11141 0.9000 +7991 11253 0.4530 +7991 23193 0.6020 +7991 29880 0.4830 +7991 29927 0.6610 +7991 29929 0.5710 +7991 51072 0.4610 +7991 51185 0.9180 +7991 51201 0.4660 +7991 54862 0.4020 +7991 55176 0.5550 +7991 55757 0.4440 +7991 56886 0.5110 +7991 57171 0.9080 +7991 57509 0.4130 +7991 58505 0.9150 +7991 79053 0.5130 +7991 79087 0.6180 +7991 84061 0.8750 +7991 84920 0.9070 +7991 132660 0.4200 +7991 137868 0.4370 +7991 144245 0.9480 +7991 153527 0.6800 +7991 200185 0.9230 +7991 201595 0.9970 +7991 100128731 0.9650 +7993 9354 0.6110 +7993 9373 0.6740 +7993 10147 0.4450 +7993 10277 0.5030 +7993 10956 0.5460 +7993 22888 0.5030 +7993 23190 0.9560 +7993 23197 0.6990 +7993 23588 0.4140 +7993 26043 0.6500 +7993 27248 0.5580 +7993 51009 0.5750 +7993 51035 0.9600 +7993 54826 0.5180 +7993 55666 0.7920 +7993 55968 0.9500 +7993 64786 0.7280 +7993 79058 0.5120 +7993 79139 0.4320 +7993 79735 0.6970 +7993 80124 0.5030 +7993 80233 0.5730 +7993 80700 0.9590 +7993 84447 0.5280 +7993 91544 0.5970 +7993 127733 0.6410 +7993 137886 0.5600 +7993 165324 0.9650 +7993 258010 0.9120 +7993 337867 0.7520 +7993 387849 0.5810 +7993 441282 0.4900 +7994 8019 0.5200 +7994 8028 0.6110 +7994 8085 0.6340 +7994 8089 0.6680 +7994 8202 0.6770 +7994 8290 0.9960 +7994 8294 0.4860 +7994 8295 0.7220 +7994 8337 0.5370 +7994 8338 0.5370 +7994 8349 0.5750 +7994 8350 0.9690 +7994 8351 0.9220 +7994 8352 0.9300 +7994 8353 0.9280 +7994 8354 0.9220 +7994 8355 0.9220 +7994 8356 0.9940 +7994 8357 0.9220 +7994 8358 0.9220 +7994 8361 0.9020 +7994 8369 0.7620 +7994 8520 0.5340 +7994 8648 0.4830 +7994 8805 0.6030 +7994 8841 0.4600 +7994 8850 0.8330 +7994 8968 0.9220 +7994 9070 0.4110 +7994 9219 0.4650 +7994 9329 0.4800 +7994 9611 0.4570 +7994 9678 0.6380 +7994 9734 0.5000 +7994 9739 0.4810 +7994 9759 0.5220 +7994 9767 0.6370 +7994 10000 0.4290 +7994 10013 0.4800 +7994 10499 0.9910 +7994 10919 0.4330 +7994 10933 0.5420 +7994 10943 0.5910 +7994 11091 0.7340 +7994 11143 0.9600 +7994 22933 0.5070 +7994 22992 0.5440 +7994 23013 0.4130 +7994 23028 0.4250 +7994 23067 0.4260 +7994 23081 0.5640 +7994 23135 0.4500 +7994 23210 0.5540 +7994 23338 0.4490 +7994 23389 0.5290 +7994 23408 0.4150 +7994 23410 0.4070 +7994 23411 0.7230 +7994 23476 0.5610 +7994 23522 0.9980 +7994 23774 0.9950 +7994 26122 0.5620 +7994 27154 0.9920 +7994 27443 0.5030 +7994 28996 0.5810 +7994 29028 0.4070 +7994 29072 0.5430 +7994 29117 0.6260 +7994 51147 0.9400 +7994 51412 0.5350 +7994 51547 0.4330 +7994 51548 0.4110 +7994 51564 0.4410 +7994 51742 0.4940 +7994 53615 0.4950 +7994 54454 0.4510 +7994 54556 0.6550 +7994 54583 0.5210 +7994 54815 0.4450 +7994 54891 0.4200 +7994 54904 0.5150 +7994 55140 0.6390 +7994 55167 0.5360 +7994 55257 0.4010 +7994 55689 0.6700 +7994 55869 0.5690 +7994 55870 0.4580 +7994 55904 0.4530 +7994 55929 0.6670 +7994 56975 0.4030 +7994 57459 0.5450 +7994 57634 0.5730 +7994 58505 0.4560 +7994 64324 0.5080 +7994 64769 0.9980 +7994 65980 0.4050 +7994 79885 0.5620 +7994 79923 0.4870 +7994 79960 0.4820 +7994 80314 0.7130 +7994 83933 0.4620 +7994 84289 0.9990 +7994 84444 0.5460 +7994 92292 0.7650 +7994 94239 0.4360 +7994 112398 0.5420 +7994 114799 0.5990 +7994 126961 0.9430 +7994 138474 0.4040 +7994 157570 0.5720 +7994 171023 0.4130 +7994 200185 0.4050 +7994 284058 0.5660 +7994 333932 0.9220 +7994 339287 0.5950 +7994 440093 0.9930 +7994 440686 0.9900 +7994 440689 0.4190 +7994 653604 0.9940 +7994 728294 0.4540 +8000 8581 0.4970 +8000 8629 0.6020 +8000 10232 0.7210 +8000 11202 0.4530 +8000 23600 0.4960 +8000 26872 0.7500 +8000 29126 0.4010 +8000 51196 0.5200 +8000 51208 0.4060 +8000 51246 0.4240 +8000 54742 0.5370 +8000 57152 0.5700 +8000 57156 0.4410 +8000 58530 0.4670 +8000 60558 0.4020 +8000 66004 0.6100 +8000 83639 0.4270 +8000 137797 0.5110 +8000 399968 0.4340 +8001 9152 0.4830 +8001 10243 0.5780 +8001 23510 0.5600 +8001 26960 0.5170 +8001 51233 0.4160 +8001 80817 0.4430 +8001 89832 0.4280 +8001 116443 0.4110 +8001 123346 0.4670 +8001 146556 0.4050 +8001 728215 0.4170 +8013 8148 0.8650 +8013 9611 0.5770 +8013 9612 0.5670 +8013 9734 0.4370 +8013 10155 0.5600 +8013 10342 0.5880 +8013 23598 0.5720 +8013 23764 0.4620 +8013 51564 0.4630 +8013 55014 0.8110 +8013 55311 0.4670 +8013 55422 0.4660 +8013 64651 0.4420 +8013 91283 0.4970 +8013 150094 0.5280 +8013 266743 0.5010 +8019 8089 0.7120 +8019 8227 0.4460 +8019 8289 0.5170 +8019 8290 0.6880 +8019 8294 0.4540 +8019 8337 0.5700 +8019 8338 0.5650 +8019 8356 0.7040 +8019 8360 0.4540 +8019 8361 0.9370 +8019 8362 0.4540 +8019 8363 0.4540 +8019 8364 0.4700 +8019 8366 0.4540 +8019 8367 0.4540 +8019 8368 0.4540 +8019 8369 0.8380 +8019 8370 0.4620 +8019 8396 0.4780 +8019 8405 0.8580 +8019 8467 0.4880 +8019 8535 0.5700 +8019 8607 0.4180 +8019 8683 0.4640 +8019 8815 0.4850 +8019 8899 0.4290 +8019 9013 0.4280 +8019 9031 0.4120 +8019 9112 0.5120 +8019 9129 0.4480 +8019 9158 0.4790 +8019 9439 0.4720 +8019 9555 0.6740 +8019 9640 0.8340 +8019 9722 0.4200 +8019 9847 0.4360 +8019 9849 0.4320 +8019 10042 0.6200 +8019 10223 0.4100 +8019 10250 0.4430 +8019 10436 0.4130 +8019 10445 0.4460 +8019 10614 0.4990 +8019 10664 0.4770 +8019 10847 0.4520 +8019 10856 0.4380 +8019 10919 0.6940 +8019 10933 0.4680 +8019 10951 0.4940 +8019 11143 0.5320 +8019 11168 0.4610 +8019 11177 0.4070 +8019 11198 0.5380 +8019 11335 0.6900 +8019 23028 0.4340 +8019 23210 0.5750 +8019 23347 0.4150 +8019 23411 0.5860 +8019 23429 0.5020 +8019 23468 0.4650 +8019 23476 0.9600 +8019 23613 0.7710 +8019 23774 0.5180 +8019 26154 0.4390 +8019 26993 0.5270 +8019 29028 0.4460 +8019 29844 0.4280 +8019 29998 0.7730 +8019 51111 0.5120 +8019 51185 0.5950 +8019 51428 0.4610 +8019 51574 0.5600 +8019 51616 0.6310 +8019 51773 0.6380 +8019 53615 0.4590 +8019 54457 0.5380 +8019 54617 0.5720 +8019 54665 0.4380 +8019 54815 0.6920 +8019 54904 0.9860 +8019 55100 0.4870 +8019 55138 0.7860 +8019 55193 0.6070 +8019 55205 0.7550 +8019 55506 0.6510 +8019 55646 0.5540 +8019 55660 0.4260 +8019 55929 0.7850 +8019 56257 0.5060 +8019 56704 0.4200 +8019 57216 0.4330 +8019 57459 0.4490 +8019 57592 0.6250 +8019 57634 0.4650 +8019 57680 0.5630 +8019 58517 0.4430 +8019 64061 0.4340 +8019 65980 0.7100 +8019 79169 0.4300 +8019 79576 0.4290 +8019 79753 0.4340 +8019 79813 0.5630 +8019 79837 0.7350 +8019 79886 0.4250 +8019 79913 0.5230 +8019 79915 0.6410 +8019 80829 0.4680 +8019 81839 0.4290 +8019 83444 0.5380 +8019 83860 0.5500 +8019 84365 0.4310 +8019 84444 0.4050 +8019 90390 0.4110 +8019 93973 0.5840 +8019 94239 0.4770 +8019 114991 0.5690 +8019 115704 0.4200 +8019 129685 0.7060 +8019 170394 0.6150 +8019 221656 0.6150 +8019 222194 0.4270 +8019 256646 0.8030 +8019 283337 0.4450 +8019 283899 0.4530 +8019 284119 0.6280 +8019 317772 0.4670 +8019 400506 0.4250 +8019 400793 0.4200 +8019 440093 0.6880 +8019 440686 0.6880 +8019 653604 0.6990 +8021 8028 0.6470 +8021 8086 0.9920 +8021 8125 0.8470 +8021 8189 0.5060 +8021 8301 0.4030 +8021 8480 0.9920 +8021 8487 0.4290 +8021 8498 0.6720 +8021 8563 0.6280 +8021 8655 0.8490 +8021 8683 0.4460 +8021 8741 0.8000 +8021 8888 0.6060 +8021 9133 0.4130 +8021 9212 0.5080 +8021 9295 0.4760 +8021 9631 0.9980 +8021 9688 0.9990 +8021 9759 0.6990 +8021 9775 0.7170 +8021 9785 0.4660 +8021 9811 0.5010 +8021 9818 0.9970 +8021 9862 0.5330 +8021 9877 0.4470 +8021 9883 0.8920 +8021 9898 0.4540 +8021 9908 0.7230 +8021 9939 0.5260 +8021 9972 0.9930 +8021 9984 0.5600 +8021 10073 0.9640 +8021 10126 0.5880 +8021 10146 0.5130 +8021 10189 0.8160 +8021 10204 0.9020 +8021 10250 0.6120 +8021 10320 0.5770 +8021 10482 0.9950 +8021 10526 0.6370 +8021 10527 0.5460 +8021 10569 0.5750 +8021 10762 0.9660 +8021 10783 0.4050 +8021 10847 0.6410 +8021 10898 0.4620 +8021 10921 0.5250 +8021 11052 0.4030 +8021 11097 0.9680 +8021 11100 0.6350 +8021 11168 0.6910 +8021 11218 0.6810 +8021 11260 0.6440 +8021 11269 0.9500 +8021 11338 0.5030 +8021 22794 0.5870 +8021 22806 0.4060 +8021 22824 0.4230 +8021 22916 0.6440 +8021 23165 0.9980 +8021 23214 0.5740 +8021 23225 0.9890 +8021 23279 0.9860 +8021 23511 0.9920 +8021 23534 0.5340 +8021 23636 0.9990 +8021 25909 0.9650 +8021 25929 0.4550 +8021 26040 0.5570 +8021 26097 0.4780 +8021 27161 0.4620 +8021 27250 0.4200 +8021 29107 0.9360 +8021 29118 0.8410 +8021 29894 0.4130 +8021 30000 0.6670 +8021 30012 0.8480 +8021 50628 0.4160 +8021 51182 0.4920 +8021 51213 0.4600 +8021 51340 0.4040 +8021 51362 0.4650 +8021 51501 0.4220 +8021 51692 0.5400 +8021 51808 0.5930 +8021 53371 0.9950 +8021 53981 0.4820 +8021 54596 0.4040 +8021 54830 0.8730 +8021 54904 0.4090 +8021 54960 0.4130 +8021 55110 0.5410 +8021 55143 0.4230 +8021 55308 0.9700 +8021 55339 0.4960 +8021 55706 0.9750 +8021 55746 0.9990 +8021 55795 0.4680 +8021 55916 0.8270 +8021 56000 0.8380 +8021 56001 0.7750 +8021 56893 0.4230 +8021 57122 0.9990 +8021 57182 0.4010 +8021 57187 0.5800 +8021 57510 0.8390 +8021 57727 0.7300 +8021 64324 0.5920 +8021 65109 0.5520 +8021 79023 0.9680 +8021 79142 0.4450 +8021 79228 0.6980 +8021 79446 0.4130 +8021 79760 0.4150 +8021 79833 0.4110 +8021 79902 0.9990 +8021 80145 0.5530 +8021 81492 0.4240 +8021 81608 0.5330 +8021 81929 0.9980 +8021 84248 0.5180 +8021 84271 0.6860 +8021 84295 0.7480 +8021 84321 0.6220 +8021 84324 0.5200 +8021 91181 0.4210 +8021 91754 0.4580 +8021 92241 0.6240 +8021 116835 0.4180 +8021 124245 0.4910 +8021 124540 0.4270 +8021 129401 0.9920 +8021 137362 0.5860 +8021 140609 0.4620 +8021 140735 0.8490 +8021 150165 0.5810 +8021 161176 0.4700 +8021 171023 0.4210 +8021 197322 0.4040 +8021 199746 0.4510 +8021 259217 0.4180 +8021 266743 0.4180 +8021 283987 0.4940 +8021 286530 0.5760 +8021 345895 0.4240 +8021 348995 0.9890 +8021 400668 0.4260 +8021 728343 0.9420 +8021 729857 0.9960 +8021 100101267 0.8950 +8022 8153 0.4300 +8022 8403 0.4510 +8022 8576 0.4260 +8022 8820 0.4940 +8022 8848 0.5610 +8022 8861 0.9990 +8022 8928 0.4690 +8022 8929 0.4050 +8022 9079 0.9170 +8022 9095 0.6240 +8022 9353 0.5980 +8022 9819 0.6480 +8022 10021 0.4590 +8022 10215 0.7470 +8022 10637 0.4250 +8022 11281 0.4230 +8022 23040 0.5300 +8022 23336 0.7500 +8022 23635 0.5350 +8022 26160 0.6340 +8022 51132 0.7790 +8022 55810 0.4180 +8022 57053 0.4140 +8022 58158 0.7210 +8022 63973 0.8970 +8022 64843 0.9420 +8022 79190 0.4460 +8022 79191 0.4350 +8022 80712 0.7990 +8022 81628 0.6010 +8022 84504 0.6020 +8022 89884 0.8040 +8022 120237 0.4330 +8022 121643 0.4230 +8022 124925 0.4300 +8022 128408 0.4060 +8022 128674 0.5110 +8022 131096 0.4210 +8022 167410 0.4250 +8022 170463 0.6430 +8022 286148 0.4130 +8022 338917 0.4160 +8022 345456 0.4220 +8022 375189 0.4150 +8022 643226 0.4090 +8027 8218 0.5660 +8027 8301 0.5350 +8027 8453 0.4450 +8027 8673 0.5690 +8027 8766 0.4240 +8027 8826 0.4030 +8027 9101 0.9330 +8027 9146 0.9990 +8027 9185 0.4990 +8027 9201 0.4080 +8027 9341 0.5350 +8027 9373 0.5490 +8027 9516 0.5810 +8027 9525 0.6800 +8027 9798 0.6570 +8027 9892 0.5330 +8027 10015 0.6870 +8027 10252 0.4990 +8027 10253 0.5060 +8027 10254 0.9940 +8027 10427 0.4260 +8027 10617 0.9990 +8027 10855 0.5530 +8027 10987 0.4080 +8027 11021 0.4410 +8027 11075 0.5310 +8027 11267 0.9540 +8027 22872 0.5810 +8027 22905 0.6670 +8027 25930 0.7240 +8027 25978 0.9490 +8027 26018 0.5170 +8027 26119 0.4990 +8027 26276 0.4370 +8027 27183 0.5100 +8027 27243 0.9570 +8027 29924 0.6390 +8027 29978 0.8400 +8027 30011 0.5460 +8027 50618 0.5080 +8027 50700 0.5130 +8027 51028 0.9740 +8027 51160 0.9650 +8027 51271 0.9440 +8027 51510 0.5180 +8027 51534 0.7340 +8027 51652 0.9620 +8027 53349 0.6760 +8027 54472 0.4520 +8027 54894 0.4290 +8027 55048 0.9190 +8027 55293 0.7140 +8027 55620 0.6690 +8027 57132 0.9340 +8027 57559 0.4600 +8027 57561 0.4260 +8027 57646 0.4330 +8027 58480 0.6030 +8027 58513 0.6650 +8027 79643 0.9640 +8027 79720 0.9330 +8027 83737 0.6480 +8027 84313 0.9650 +8027 84936 0.6730 +8027 89853 0.9310 +8027 91782 0.9150 +8027 92421 0.7960 +8027 93343 0.9690 +8027 114803 0.4630 +8027 128866 0.9240 +8027 137492 0.9410 +8027 151636 0.4240 +8027 155382 0.9200 +8027 201140 0.5130 +8027 255324 0.4990 +8027 390595 0.5400 +8027 100526767 0.6300 +8028 8089 0.8640 +8028 8178 0.9160 +8028 8290 0.6310 +8028 8295 0.5240 +8028 8301 0.9220 +8028 8356 0.6260 +8028 8522 0.6690 +8028 8833 0.5610 +8028 9320 0.4160 +8028 9892 0.4120 +8028 10006 0.6650 +8028 10243 0.4620 +8028 10425 0.7240 +8028 10856 0.4180 +8028 10923 0.4240 +8028 10962 0.6000 +8028 10978 0.7780 +8028 11052 0.4460 +8028 11168 0.4320 +8028 23048 0.5370 +8028 23157 0.7090 +8028 23365 0.4700 +8028 27125 0.6820 +8028 29896 0.4150 +8028 30012 0.5800 +8028 55252 0.4030 +8028 55617 0.4070 +8028 57082 0.5400 +8028 64324 0.6750 +8028 84220 0.6230 +8028 84295 0.4210 +8028 84324 0.5090 +8028 84444 0.9990 +8028 124540 0.4720 +8028 440093 0.6290 +8028 440686 0.6290 +8028 653604 0.6290 +8029 8326 0.4290 +8029 9509 0.4590 +8029 9578 0.4280 +8029 11060 0.4240 +8029 11093 0.5210 +8029 11136 0.4270 +8029 25974 0.4250 +8029 26119 0.7270 +8029 27235 0.4180 +8029 51004 0.4090 +8029 51293 0.6080 +8029 55022 0.4120 +8029 55788 0.5000 +8029 79934 0.4230 +8029 81693 0.9990 +8029 120227 0.5300 +8029 137902 0.5860 +8029 151056 0.6760 +8030 8031 0.9890 +8030 8301 0.5340 +8030 8314 0.5990 +8030 8563 0.4960 +8030 8643 0.5700 +8030 8805 0.6050 +8030 9321 0.5840 +8030 9859 0.4180 +8030 9950 0.5760 +8030 9989 0.8430 +8030 10142 0.5340 +8030 10460 0.5480 +8030 10568 0.7900 +8030 10733 0.4030 +8030 11014 0.6410 +8030 23028 0.4090 +8030 23085 0.5870 +8030 23384 0.4840 +8030 26040 0.5510 +8030 27436 0.6970 +8030 51400 0.4040 +8030 51474 0.4280 +8030 51592 0.7930 +8030 53373 0.5940 +8030 54664 0.4260 +8030 55294 0.6130 +8030 55311 0.4370 +8030 55596 0.4950 +8030 55671 0.5810 +8030 55680 0.5270 +8030 55930 0.5910 +8030 55971 0.4550 +8030 56243 0.4080 +8030 57120 0.7350 +8030 57223 0.5550 +8030 57614 0.4860 +8030 58515 0.4830 +8030 80114 0.4810 +8030 80323 0.4200 +8030 83642 0.5670 +8030 90060 0.4150 +8030 121227 0.6930 +8030 151987 0.5590 +8030 220032 0.4180 +8030 387119 0.4660 +8030 399687 0.5490 +8031 8202 0.4550 +8031 8643 0.8890 +8031 8648 0.4100 +8031 8678 0.4200 +8031 8805 0.6580 +8031 8850 0.4140 +8031 8878 0.5030 +8031 8887 0.6480 +8031 8924 0.7550 +8031 9054 0.4220 +8031 9474 0.4570 +8031 9604 0.8740 +8031 9694 0.4450 +8031 9821 0.4400 +8031 9950 0.6310 +8031 10142 0.5450 +8031 10162 0.6060 +8031 10241 0.4500 +8031 10499 0.4720 +8031 10533 0.4430 +8031 11345 0.8520 +8031 23085 0.5200 +8031 23456 0.4140 +8031 23516 0.4280 +8031 23657 0.5860 +8031 23710 0.8380 +8031 26234 0.6080 +8031 27436 0.4350 +8031 28982 0.4690 +8031 30061 0.5990 +8031 51312 0.4010 +8031 51592 0.7630 +8031 53373 0.4730 +8031 55240 0.6050 +8031 55640 0.4730 +8031 55680 0.4520 +8031 55847 0.5920 +8031 57817 0.4450 +8031 79901 0.4180 +8031 81631 0.5280 +8031 84883 0.5800 +8031 94033 0.5110 +8031 124739 0.4860 +8031 150696 0.4630 +8031 221476 0.6380 +8031 100526737 0.4140 +8034 8549 0.4030 +8034 9045 0.5240 +8034 9197 0.5050 +8034 9349 0.4050 +8034 9527 0.5020 +8034 10128 0.4120 +8034 10206 0.7910 +8034 23091 0.4210 +8034 23787 0.7810 +8034 23788 0.7860 +8034 25962 0.4030 +8034 29126 0.5760 +8034 51149 0.4080 +8034 54915 0.4020 +8034 55051 0.4810 +8034 55658 0.4210 +8034 56339 0.4200 +8034 57509 0.4730 +8034 57721 0.4440 +8034 64848 0.4120 +8034 80380 0.4020 +8034 91746 0.4010 +8034 114987 0.4060 +8034 163087 0.4870 +8034 200916 0.4100 +8034 201931 0.6300 +8034 256356 0.5330 +8034 100526842 0.4070 +8036 8065 0.4570 +8036 8216 0.7490 +8036 8823 0.4100 +8036 8831 0.4130 +8036 8844 0.7920 +8036 10006 0.4100 +8036 10075 0.7500 +8036 22800 0.9490 +8036 22808 0.9990 +8036 22859 0.5260 +8036 22938 0.4260 +8036 23244 0.4360 +8036 23266 0.5260 +8036 23284 0.5260 +8036 23513 0.5000 +8036 23515 0.4840 +8036 23645 0.7200 +8036 26034 0.4890 +8036 51362 0.4440 +8036 55914 0.8880 +8036 57216 0.4160 +8036 57521 0.4050 +8036 79660 0.5420 +8036 81839 0.4250 +8036 84687 0.9010 +8036 84919 0.9030 +8036 85443 0.6320 +8036 89801 0.5400 +8036 90506 0.5400 +8036 90673 0.5400 +8036 144568 0.6400 +8036 161742 0.6330 +8036 254050 0.5400 +8036 255057 0.6100 +8036 286187 0.5400 +8036 388649 0.4760 +8036 648791 0.5400 +8036 653361 0.4280 +8038 8840 0.4700 +8038 9124 0.4240 +8038 9509 0.4530 +8038 9564 0.4090 +8038 9644 0.9520 +8038 10252 0.6000 +8038 10272 0.6810 +8038 10631 0.5060 +8038 10761 0.4490 +8038 10863 0.4570 +8038 22801 0.5150 +8038 26509 0.4690 +8038 29124 0.6680 +8038 29763 0.6720 +8038 50507 0.4740 +8038 51393 0.4890 +8038 60676 0.4130 +8038 284217 0.4580 +8045 8382 0.4110 +8045 8440 0.6110 +8045 9182 0.7360 +8045 9342 0.4440 +8045 9770 0.7790 +8045 10413 0.5240 +8045 11186 0.7720 +8045 23368 0.9190 +8045 26037 0.4040 +8045 27185 0.8370 +8045 55722 0.4300 +8045 56288 0.6860 +8045 57595 0.4480 +8045 64112 0.6290 +8045 79158 0.6250 +8045 79839 0.4310 +8045 83593 0.7830 +8045 83937 0.4420 +8045 122786 0.4760 +8045 123283 0.4010 +8045 137886 0.4550 +8045 166824 0.8430 +8045 283349 0.7710 +8045 644943 0.8360 +8048 8557 0.9980 +8048 8736 0.5170 +8048 9172 0.4200 +8048 9499 0.6720 +8048 9531 0.4560 +8048 9759 0.4120 +8048 10060 0.7240 +8048 10324 0.8490 +8048 10345 0.6880 +8048 10529 0.5610 +8048 10539 0.8480 +8048 10930 0.5290 +8048 11155 0.8200 +8048 23439 0.4450 +8048 23676 0.8460 +8048 26287 0.7350 +8048 26548 0.6180 +8048 27063 0.7000 +8048 27129 0.5820 +8048 27295 0.6820 +8048 29765 0.5430 +8048 29895 0.8440 +8048 51422 0.7930 +8048 51725 0.4550 +8048 51778 0.9520 +8048 55553 0.5820 +8048 57158 0.6450 +8048 57159 0.5150 +8048 57538 0.4520 +8048 58498 0.5630 +8048 58529 0.6930 +8048 79188 0.4750 +8048 79733 0.4240 +8048 79933 0.4690 +8048 81631 0.4800 +8048 84033 0.5160 +8048 84665 0.8260 +8048 84676 0.5400 +8048 85366 0.7490 +8048 91624 0.7210 +8048 125972 0.5520 +8048 127294 0.5010 +8048 129446 0.8810 +8048 131377 0.5650 +8048 137735 0.4750 +8048 140458 0.5180 +8048 146862 0.6800 +8048 150572 0.6250 +8048 165904 0.7360 +8048 200539 0.4250 +8048 202333 0.5380 +8048 219537 0.4400 +8048 282996 0.7920 +8048 347273 0.5790 +8048 389125 0.4360 +8048 401265 0.4500 +8048 442721 0.8790 +8050 8277 0.5380 +8050 8801 0.8170 +8050 8802 0.9360 +8050 8803 0.8920 +8050 8942 0.4840 +8050 9025 0.8090 +8050 9131 0.4210 +8050 9380 0.6460 +8050 9512 0.5310 +8050 9563 0.4550 +8050 9868 0.4350 +8050 10059 0.4410 +8050 10102 0.4680 +8050 10213 0.4420 +8050 10295 0.4640 +8050 10531 0.4210 +8050 10587 0.7720 +8050 10797 0.5390 +8050 10845 0.5580 +8050 10873 0.4060 +8050 10989 0.4850 +8050 10994 0.5570 +8050 11019 0.6080 +8050 11315 0.4730 +8050 22934 0.4500 +8050 23409 0.4550 +8050 23743 0.4140 +8050 25874 0.4790 +8050 25973 0.5140 +8050 26061 0.6190 +8050 26275 0.4370 +8050 26298 0.4550 +8050 27010 0.5400 +8050 27034 0.4460 +8050 27247 0.5020 +8050 28976 0.4710 +8050 29958 0.4680 +8050 51074 0.6260 +8050 51497 0.4200 +8050 51601 0.8320 +8050 51660 0.4500 +8050 54704 0.9650 +8050 54840 0.4350 +8050 55066 0.8360 +8050 55364 0.5670 +8050 55526 0.9290 +8050 55753 0.8920 +8050 56896 0.4420 +8050 56922 0.4860 +8050 56945 0.4020 +8050 56965 0.4510 +8050 57546 0.9830 +8050 60386 0.4320 +8050 64087 0.6140 +8050 79668 0.4510 +8050 79731 0.5540 +8050 80704 0.4520 +8050 84076 0.5420 +8050 84263 0.5870 +8050 84532 0.4260 +8050 85476 0.6260 +8050 87769 0.4310 +8050 92259 0.4050 +8050 92399 0.4130 +8050 114112 0.7690 +8050 126133 0.4310 +8050 130752 0.4440 +8050 150274 0.5990 +8050 200205 0.6630 +8050 200895 0.4620 +8050 221823 0.4900 +8050 387787 0.5870 +8050 441024 0.5340 +8061 8322 0.4490 +8061 8324 0.4730 +8061 8668 0.4240 +8061 8788 0.4240 +8061 8835 0.4050 +8061 8862 0.4260 +8061 8870 0.5440 +8061 9126 0.4160 +8061 9518 0.4460 +8061 9586 0.5770 +8061 9935 0.5690 +8061 10253 0.5290 +8061 10432 0.4020 +8061 10437 0.5120 +8061 10499 0.4950 +8061 10521 0.4630 +8061 10539 0.5330 +8061 11016 0.7000 +8061 23237 0.5570 +8061 23476 0.5870 +8061 23764 0.5850 +8061 24138 0.4390 +8061 51176 0.4270 +8061 51330 0.4010 +8061 55509 0.5920 +8061 64135 0.4450 +8061 79026 0.7870 +8061 122953 0.4410 +8061 225689 0.4040 +8061 387733 0.4020 +8061 100526737 0.4080 +8065 8405 0.4760 +8065 8450 0.8800 +8065 8451 0.9520 +8065 8452 0.9740 +8065 8453 0.9610 +8065 8454 0.9580 +8065 8651 0.9770 +8065 8835 0.9980 +8065 8883 0.7960 +8065 8945 0.6270 +8065 9021 0.9560 +8065 9039 0.8880 +8065 9040 0.8570 +8065 9306 0.9580 +8065 9318 0.6070 +8065 9320 0.4560 +8065 9559 0.4200 +8065 9582 0.9100 +8065 9616 0.9990 +8065 9655 0.9110 +8065 9730 0.5710 +8065 9978 0.9990 +8065 10075 0.4530 +8065 10116 0.5790 +8065 10425 0.9970 +8065 10444 0.4270 +8065 10489 0.9100 +8065 10920 0.5900 +8065 10930 0.4660 +8065 10966 0.8910 +8065 10980 0.6610 +8065 10987 0.8170 +8065 11140 0.4960 +8065 23113 0.7870 +8065 23142 0.6480 +8065 23412 0.5220 +8065 23462 0.5080 +8065 23466 0.4040 +8065 23588 0.5590 +8065 25939 0.4590 +8065 26118 0.9700 +8065 27252 0.4230 +8065 27338 0.5640 +8065 27350 0.9460 +8065 28952 0.6460 +8065 28991 0.5070 +8065 29099 0.5380 +8065 30837 0.9350 +8065 50813 0.4290 +8065 51122 0.5340 +8065 51224 0.7920 +8065 51397 0.5450 +8065 51529 0.4970 +8065 51665 0.9540 +8065 51666 0.9610 +8065 51676 0.9820 +8065 54165 0.9340 +8065 54939 0.5040 +8065 54951 0.5920 +8065 55031 0.5700 +8065 55208 0.7640 +8065 55236 0.4420 +8065 55251 0.7540 +8065 55294 0.4130 +8065 55832 0.9510 +8065 55884 0.7380 +8065 55914 0.5530 +8065 56254 0.4990 +8065 56995 0.8240 +8065 57379 0.4260 +8065 57799 0.8690 +8065 58480 0.4270 +8065 60489 0.9840 +8065 64708 0.4960 +8065 64798 0.4920 +8065 79577 0.4520 +8065 79699 0.4120 +8065 79754 0.8040 +8065 80176 0.7400 +8065 81620 0.4530 +8065 84259 0.7120 +8065 84727 0.8730 +8065 85363 0.4310 +8065 90864 0.7910 +8065 92369 0.8650 +8065 92591 0.5630 +8065 115294 0.5780 +8065 116064 0.4350 +8065 116138 0.5000 +8065 117583 0.4340 +8065 122416 0.9400 +8065 122773 0.9320 +8065 122809 0.9310 +8065 123355 0.4180 +8065 123879 0.7300 +8065 127247 0.5470 +8065 136371 0.7790 +8065 140456 0.7980 +8065 140458 0.6650 +8065 140459 0.9640 +8065 140460 0.9140 +8065 140461 0.8070 +8065 140462 0.9690 +8065 140564 0.5990 +8065 140739 0.9750 +8065 140825 0.6640 +8065 142684 0.8700 +8065 142685 0.6800 +8065 142686 0.6020 +8065 142689 0.7990 +8065 149951 0.5040 +8065 150684 0.6980 +8065 164668 0.8740 +8065 170622 0.5100 +8065 197131 0.5180 +8065 200315 0.8560 +8065 200316 0.9800 +8065 282808 0.8180 +8065 401036 0.6850 +8065 403314 0.4580 +8073 9564 0.4700 +8073 11156 0.4300 +8073 26504 0.7990 +8073 26505 0.9980 +8073 26507 0.7860 +8073 26952 0.5410 +8073 54622 0.5210 +8073 54756 0.7770 +8073 54805 0.7950 +8073 56940 0.5140 +8073 57185 0.6400 +8073 79815 0.6350 +8073 81614 0.6110 +8073 152519 0.6370 +8073 348938 0.6160 +8074 8600 0.6640 +8074 8817 0.9040 +8074 8822 0.9060 +8074 8823 0.7410 +8074 9247 0.4080 +8074 9365 0.9990 +8074 9368 0.4470 +8074 9370 0.6080 +8074 9518 0.4130 +8074 9965 0.7010 +8074 10568 0.6230 +8074 10817 0.4500 +8074 10818 0.7530 +8074 11052 0.4010 +8074 11064 0.4540 +8074 11116 0.4390 +8074 11160 0.4030 +8074 22943 0.5770 +8074 23767 0.5110 +8074 23768 0.5100 +8074 23769 0.5020 +8074 26127 0.4110 +8074 26281 0.7680 +8074 26291 0.4760 +8074 27006 0.9120 +8074 30849 0.4990 +8074 50964 0.8180 +8074 53834 0.7010 +8074 54106 0.5020 +8074 54757 0.6020 +8074 54809 0.5190 +8074 55503 0.5070 +8074 56302 0.8180 +8074 56955 0.8650 +8074 56975 0.7840 +8074 57121 0.6080 +8074 57817 0.4920 +8074 79057 0.6650 +8074 120227 0.6200 +8074 121340 0.4870 +8074 142680 0.9450 +8074 152831 0.9790 +8074 197021 0.8300 +8074 337876 0.5700 +8074 399687 0.4330 +8076 8483 0.5310 +8076 8839 0.4130 +8076 9509 0.4980 +8076 9547 0.4290 +8076 10516 0.7960 +8076 10578 0.4570 +8076 10631 0.5230 +8076 23213 0.4170 +8076 26577 0.4040 +8076 28514 0.7110 +8076 30008 0.7790 +8076 51162 0.4130 +8076 51593 0.4530 +8076 54829 0.5470 +8076 57124 0.4020 +8076 81031 0.4910 +8076 84171 0.5120 +8076 84189 0.4150 +8076 84467 0.6440 +8076 84695 0.5630 +8076 131540 0.4210 +8076 151887 0.5100 +8076 221476 0.5200 +8078 8237 0.6690 +8078 8239 0.7220 +8078 8242 0.5230 +8078 8266 0.4240 +8078 8912 0.8800 +8078 8975 0.4620 +8078 9039 0.5060 +8078 9097 0.8540 +8078 9098 0.4170 +8078 9099 0.6590 +8078 9100 0.4470 +8078 9101 0.4820 +8078 9636 0.5060 +8078 9736 0.4390 +8078 9810 0.6160 +8078 9924 0.4910 +8078 9929 0.5980 +8078 9958 0.4560 +8078 10054 0.7470 +8078 10075 0.4690 +8078 10146 0.5530 +8078 10213 0.7450 +8078 10273 0.8160 +8078 10432 0.4720 +8078 10537 0.5570 +8078 10600 0.5070 +8078 10617 0.6410 +8078 10713 0.7720 +8078 10868 0.6560 +8078 10869 0.4790 +8078 10980 0.4750 +8078 10987 0.6830 +8078 11047 0.5510 +8078 11060 0.5250 +8078 11274 0.6460 +8078 23032 0.5020 +8078 23252 0.4350 +8078 23326 0.5790 +8078 23327 0.4360 +8078 23358 0.5900 +8078 23361 0.8230 +8078 23381 0.4650 +8078 23644 0.4860 +8078 26091 0.4510 +8078 26994 0.4010 +8078 27005 0.4110 +8078 27020 0.6420 +8078 27338 0.5940 +8078 29761 0.8190 +8078 29978 0.4870 +8078 29979 0.5380 +8078 50613 0.4100 +8078 51324 0.5610 +8078 51377 0.8370 +8078 51428 0.5200 +8078 51441 0.4980 +8078 51455 0.4070 +8078 51633 0.5420 +8078 51710 0.8180 +8078 54532 0.4680 +8078 54726 0.4640 +8078 54764 0.5480 +8078 55236 0.5340 +8078 55432 0.5640 +8078 55593 0.4860 +8078 55611 0.7130 +8078 55793 0.4230 +8078 56852 0.4830 +8078 56893 0.5280 +8078 56957 0.5330 +8078 57154 0.8140 +8078 57558 0.4040 +8078 57559 0.5700 +8078 57599 0.5570 +8078 57602 0.5110 +8078 57646 0.8160 +8078 57663 0.5630 +8078 57664 0.4420 +8078 57695 0.5120 +8078 57805 0.4510 +8078 60626 0.4650 +8078 63893 0.4630 +8078 64854 0.7370 +8078 78990 0.5330 +8078 79178 0.5500 +8078 79184 0.5420 +8078 79876 0.4930 +8078 80124 0.4130 +8078 80789 0.4380 +8078 80818 0.8190 +8078 81605 0.6250 +8078 83461 0.4030 +8078 83737 0.5630 +8078 83844 0.5280 +8078 84132 0.4820 +8078 84196 0.7220 +8078 84640 0.4980 +8078 84669 0.4490 +8078 84749 0.7160 +8078 84954 0.4430 +8078 84993 0.4370 +8078 85015 0.4590 +8078 90268 0.6570 +8078 92181 0.5550 +8078 92552 0.6480 +8078 114803 0.6410 +8078 114882 0.6500 +8078 115560 0.8190 +8078 124739 0.4160 +8078 126119 0.5920 +8078 133482 0.5450 +8078 139562 0.5280 +8078 144100 0.4110 +8078 148266 0.8180 +8078 159195 0.4250 +8078 197131 0.5340 +8078 220213 0.4190 +8078 221302 0.7750 +8078 284390 0.8190 +8078 377630 0.4630 +8078 389856 0.4580 +8078 728373 0.4620 +8079 8448 0.6490 +8079 8773 0.5810 +8079 9529 0.6100 +8079 9530 0.4660 +8079 9531 0.6280 +8079 9532 0.4540 +8079 9696 0.7050 +8079 10049 0.8990 +8079 10273 0.6770 +8079 10590 0.7260 +8079 10963 0.4580 +8079 11080 0.6910 +8079 23564 0.4480 +8079 25764 0.4910 +8079 25822 0.5720 +8079 26286 0.4700 +8079 29104 0.4440 +8079 50717 0.4200 +8079 51586 0.4420 +8079 84364 0.7500 +8079 161198 0.4240 +8082 8291 0.4420 +8082 8910 0.9840 +8082 10105 0.4350 +8082 23336 0.4300 +8082 27106 0.4120 +8082 54212 0.7710 +8082 54221 0.7540 +8082 56675 0.4290 +8082 79365 0.6570 +8082 81493 0.6470 +8082 132671 0.5100 +8082 137868 0.8790 +8082 375790 0.4480 +8085 8202 0.6320 +8085 8242 0.5150 +8085 8289 0.8130 +8085 8290 0.8250 +8085 8295 0.7130 +8085 8331 0.6020 +8085 8334 0.7110 +8085 8337 0.7490 +8085 8338 0.6670 +8085 8340 0.6130 +8085 8341 0.6120 +8085 8342 0.6140 +8085 8345 0.6120 +8085 8347 0.6380 +8085 8348 0.6180 +8085 8349 0.6710 +8085 8356 0.8270 +8085 8358 0.4110 +8085 8361 0.9150 +8085 8369 0.4140 +8085 8405 0.4040 +8085 8626 0.5940 +8085 8726 0.5770 +8085 8764 0.5290 +8085 8841 0.5900 +8085 8850 0.5830 +8085 8924 0.4530 +8085 8945 0.5240 +8085 8970 0.6200 +8085 8985 0.6520 +8085 9070 0.9980 +8085 9203 0.6000 +8085 9321 0.4060 +8085 9611 0.7630 +8085 9612 0.4920 +8085 9739 0.7900 +8085 9757 0.9490 +8085 9935 0.5700 +8085 9968 0.7160 +8085 10062 0.4020 +8085 10155 0.4110 +8085 10413 0.4410 +8085 10499 0.4610 +8085 10664 0.6730 +8085 10672 0.4910 +8085 10735 0.4630 +8085 10847 0.4920 +8085 11091 0.9990 +8085 11200 0.4180 +8085 22976 0.9960 +8085 22992 0.4350 +8085 23013 0.5890 +8085 23028 0.4880 +8085 23030 0.6540 +8085 23054 0.9660 +8085 23067 0.8960 +8085 23112 0.4310 +8085 23135 0.7680 +8085 23199 0.4580 +8085 23309 0.6150 +8085 23345 0.5240 +8085 23352 0.4810 +8085 23476 0.4420 +8085 23512 0.7630 +8085 25836 0.4500 +8085 25942 0.7190 +8085 26108 0.5240 +8085 26168 0.5670 +8085 26523 0.4360 +8085 27327 0.4620 +8085 27445 0.4750 +8085 29072 0.6120 +8085 29123 0.4520 +8085 29126 0.4120 +8085 29915 0.4910 +8085 30827 0.7450 +8085 51176 0.5380 +8085 53353 0.6040 +8085 54145 0.6130 +8085 54554 0.9380 +8085 54790 0.6120 +8085 54894 0.4500 +8085 54904 0.5270 +8085 54989 0.4280 +8085 55170 0.5840 +8085 55193 0.5100 +8085 55294 0.6390 +8085 55636 0.5110 +8085 55766 0.6020 +8085 55870 0.5850 +8085 55904 0.5470 +8085 56979 0.5660 +8085 57492 0.6020 +8085 57634 0.6160 +8085 57680 0.4610 +8085 57822 0.5610 +8085 58508 0.9980 +8085 64324 0.4270 +8085 64754 0.5810 +8085 64783 0.4260 +8085 79447 0.9850 +8085 79633 0.4980 +8085 79718 0.4230 +8085 79755 0.4810 +8085 79776 0.5280 +8085 79823 0.7620 +8085 80335 0.4020 +8085 80816 0.4350 +8085 80854 0.5990 +8085 83439 0.5040 +8085 84033 0.4350 +8085 84193 0.6130 +8085 84433 0.6010 +8085 84444 0.4150 +8085 84661 0.9830 +8085 84962 0.5140 +8085 85236 0.6320 +8085 90780 0.6500 +8085 94025 0.5320 +8085 94137 0.4090 +8085 94239 0.5360 +8085 114788 0.5260 +8085 118738 0.4180 +8085 120114 0.4650 +8085 126961 0.4830 +8085 128312 0.6170 +8085 161882 0.5140 +8085 171023 0.4970 +8085 192669 0.4330 +8085 192670 0.4410 +8085 196528 0.6080 +8085 255626 0.6150 +8085 283149 0.5450 +8085 374879 0.4110 +8085 388697 0.4200 +8085 440093 0.6650 +8085 440686 0.6640 +8085 474382 0.6020 +8085 653604 0.8270 +8085 723790 0.4280 +8085 100271849 0.5760 +8085 102723407 0.4310 +8086 8189 0.4260 +8086 8480 0.9240 +8086 8487 0.4140 +8086 8563 0.4660 +8086 8683 0.4210 +8086 8826 0.4070 +8086 9133 0.4280 +8086 9212 0.5150 +8086 9295 0.4260 +8086 9631 0.9890 +8086 9677 0.5030 +8086 9688 0.9830 +8086 9775 0.5350 +8086 9785 0.4200 +8086 9818 0.9420 +8086 9877 0.4160 +8086 9883 0.6350 +8086 9939 0.5160 +8086 9972 0.9400 +8086 9984 0.4210 +8086 10073 0.4200 +8086 10189 0.5750 +8086 10250 0.5160 +8086 10424 0.7540 +8086 10445 0.5190 +8086 10482 0.5480 +8086 10526 0.4360 +8086 10762 0.9220 +8086 10783 0.4030 +8086 10898 0.4160 +8086 10921 0.5210 +8086 11097 0.9430 +8086 11113 0.5630 +8086 11218 0.4140 +8086 11260 0.4170 +8086 11338 0.4530 +8086 22794 0.5040 +8086 22824 0.4050 +8086 22916 0.5130 +8086 23165 0.9860 +8086 23225 0.9800 +8086 23279 0.9510 +8086 23511 0.9810 +8086 23636 0.9440 +8086 25909 0.8690 +8086 25929 0.4450 +8086 26097 0.4530 +8086 26284 0.5210 +8086 27161 0.4030 +8086 28960 0.4560 +8086 29107 0.5630 +8086 29894 0.4670 +8086 50628 0.4200 +8086 50813 0.4620 +8086 51182 0.4160 +8086 51362 0.4160 +8086 51501 0.4420 +8086 51692 0.5380 +8086 51808 0.4150 +8086 53371 0.9680 +8086 53981 0.4140 +8086 54840 0.4620 +8086 54903 0.5270 +8086 54960 0.4310 +8086 55110 0.7620 +8086 55143 0.4540 +8086 55339 0.4150 +8086 55706 0.9940 +8086 55746 0.9570 +8086 55756 0.4510 +8086 57122 0.9800 +8086 57187 0.4410 +8086 64708 0.4950 +8086 65109 0.5070 +8086 79023 0.9550 +8086 79228 0.4860 +8086 79760 0.4210 +8086 79833 0.4130 +8086 79902 0.9850 +8086 80145 0.4090 +8086 81608 0.4350 +8086 81887 0.4560 +8086 81929 0.9940 +8086 84248 0.4150 +8086 84271 0.5750 +8086 84321 0.4880 +8086 84324 0.4420 +8086 91754 0.4180 +8086 128239 0.4050 +8086 129401 0.9870 +8086 140609 0.4010 +8086 348995 0.9800 +8086 728343 0.5020 +8086 729857 0.8370 +8086 100101267 0.6020 +8087 8161 0.4350 +8087 8290 0.5150 +8087 8356 0.5260 +8087 8505 0.4460 +8087 8546 0.5340 +8087 8570 0.4190 +8087 8575 0.5780 +8087 8662 0.6580 +8087 8683 0.4300 +8087 8761 0.5910 +8087 8805 0.5320 +8087 8844 0.5140 +8087 8940 0.4900 +8087 9061 0.5030 +8087 9100 0.5280 +8087 9188 0.5230 +8087 9318 0.4510 +8087 9401 0.5440 +8087 9444 0.7170 +8087 9513 0.9990 +8087 9584 0.4140 +8087 9698 0.4840 +8087 9715 0.6680 +8087 9774 0.6230 +8087 9898 0.8130 +8087 9908 0.7810 +8087 9928 0.4870 +8087 9971 0.7160 +8087 9987 0.5820 +8087 10018 0.5120 +8087 10044 0.4760 +8087 10048 0.6010 +8087 10142 0.6040 +8087 10146 0.9500 +8087 10163 0.4110 +8087 10189 0.5410 +8087 10236 0.4020 +8087 10289 0.4040 +8087 10399 0.6150 +8087 10419 0.5580 +8087 10482 0.4980 +8087 10492 0.4500 +8087 10533 0.5280 +8087 10642 0.6850 +8087 10657 0.4210 +8087 10658 0.6860 +8087 10787 0.5110 +8087 10827 0.5040 +8087 10988 0.4280 +8087 11044 0.5040 +8087 11051 0.4960 +8087 11052 0.4790 +8087 11187 0.9400 +8087 11218 0.6130 +8087 11273 0.6350 +8087 22827 0.9310 +8087 22849 0.7780 +8087 22906 0.5370 +8087 22927 0.6980 +8087 23070 0.5590 +8087 23164 0.5040 +8087 23191 0.9990 +8087 23200 0.4070 +8087 23237 0.4730 +8087 23350 0.4240 +8087 23367 0.6100 +8087 23369 0.6040 +8087 23405 0.9590 +8087 23435 0.6840 +8087 23450 0.8760 +8087 25804 0.4290 +8087 25940 0.4340 +8087 26019 0.4380 +8087 26058 0.4290 +8087 26065 0.5370 +8087 26135 0.6030 +8087 26272 0.5350 +8087 26523 0.8480 +8087 26747 0.9590 +8087 26986 0.7730 +8087 26999 0.9990 +8087 27044 0.9040 +8087 27067 0.5870 +8087 27161 0.9960 +8087 27316 0.4320 +8087 27327 0.6830 +8087 29102 0.5770 +8087 29117 0.4140 +8087 51441 0.4670 +8087 51493 0.4710 +8087 51637 0.4250 +8087 54413 0.4160 +8087 54487 0.4560 +8087 54542 0.4980 +8087 54606 0.4550 +8087 54845 0.5300 +8087 54915 0.6030 +8087 55109 0.5290 +8087 55552 0.4100 +8087 55653 0.4480 +8087 55657 0.4020 +8087 55749 0.6510 +8087 55750 0.5000 +8087 55833 0.5590 +8087 56001 0.4930 +8087 56339 0.5770 +8087 56829 0.7320 +8087 56922 0.4420 +8087 57085 0.4990 +8087 57510 0.4130 +8087 57532 0.8890 +8087 57582 0.5740 +8087 57670 0.6140 +8087 64506 0.8940 +8087 79009 0.4530 +8087 80315 0.7980 +8087 80336 0.4380 +8087 80853 0.5070 +8087 83641 0.4320 +8087 131118 0.5920 +8087 132430 0.4240 +8087 132864 0.7410 +8087 140886 0.4390 +8087 149041 0.5250 +8087 151613 0.4820 +8087 167153 0.5180 +8087 170506 0.4790 +8087 192669 0.5680 +8087 192670 0.6000 +8087 222229 0.5370 +8087 253943 0.4420 +8087 253980 0.4030 +8087 340529 0.4230 +8087 440093 0.5150 +8087 440686 0.5150 +8087 448831 0.4370 +8087 653604 0.5190 +8087 728343 0.4920 +8087 100288687 0.4540 +8089 8290 0.8640 +8089 8295 0.9970 +8089 8329 0.4860 +8089 8331 0.4150 +8089 8334 0.4260 +8089 8337 0.7810 +8089 8338 0.7810 +8089 8344 0.4610 +8089 8346 0.4610 +8089 8349 0.6440 +8089 8350 0.4280 +8089 8356 0.8190 +8089 8361 0.8190 +8089 8369 0.6150 +8089 8467 0.4430 +8089 8473 0.7320 +8089 8607 0.9990 +8089 8850 0.7750 +8089 8891 0.4730 +8089 9211 0.4100 +8089 9360 0.4190 +8089 9519 0.4010 +8089 9793 0.6150 +8089 10428 0.9600 +8089 10445 0.7400 +8089 10460 0.5480 +8089 10467 0.9510 +8089 10474 0.7840 +8089 10524 0.9990 +8089 10579 0.6820 +8089 10629 0.5890 +8089 10761 0.4220 +8089 10818 0.6300 +8089 10847 0.9890 +8089 10856 0.9980 +8089 10902 0.9980 +8089 10933 0.9990 +8089 10943 0.9260 +8089 11051 0.4800 +8089 11091 0.8030 +8089 11143 0.7560 +8089 22832 0.6360 +8089 23168 0.4960 +8089 23361 0.4420 +8089 23476 0.4880 +8089 23522 0.7500 +8089 23658 0.4600 +8089 25842 0.4240 +8089 26122 0.9930 +8089 27443 0.5280 +8089 51105 0.5690 +8089 51230 0.7670 +8089 51412 0.9090 +8089 51710 0.4420 +8089 51742 0.5750 +8089 54556 0.9980 +8089 54799 0.9850 +8089 54934 0.7480 +8089 55167 0.9020 +8089 55193 0.4310 +8089 55257 0.9980 +8089 55421 0.4210 +8089 55508 0.4190 +8089 55683 0.7260 +8089 55689 0.6950 +8089 55795 0.5060 +8089 55929 0.9990 +8089 57122 0.5940 +8089 57634 0.9990 +8089 64089 0.4240 +8089 64426 0.4810 +8089 64431 0.8860 +8089 64769 0.9990 +8089 80314 0.9980 +8089 80818 0.4410 +8089 81611 0.4780 +8089 83741 0.5410 +8089 84148 0.9680 +8089 84289 0.6680 +8089 84444 0.5530 +8089 84451 0.4890 +8089 85235 0.4150 +8089 85437 0.5260 +8089 92815 0.4150 +8089 94239 0.8080 +8089 112869 0.5730 +8089 115560 0.4420 +8089 123591 0.4210 +8089 125476 0.5000 +8089 128312 0.4080 +8089 129685 0.4960 +8089 131375 0.4600 +8089 138474 0.4680 +8089 139628 0.7820 +8089 148266 0.4500 +8089 151050 0.5400 +8089 153241 0.5340 +8089 196513 0.4090 +8089 221613 0.4150 +8089 221895 0.8270 +8089 255626 0.7170 +8089 283150 0.8310 +8089 284058 0.7200 +8089 284390 0.4420 +8089 317772 0.4200 +8089 339287 0.9050 +8089 339488 0.5350 +8089 345651 0.6920 +8089 440093 0.8160 +8089 440686 0.8160 +8089 653604 0.8190 +8089 728294 0.6030 +8089 728858 0.5320 +8091 8805 0.4220 +8091 8850 0.6110 +8091 9839 0.5330 +8091 9968 0.5720 +8091 10184 0.4630 +8091 10186 0.8180 +8091 10413 0.4710 +8091 10620 0.4100 +8091 10642 0.8400 +8091 10643 0.9090 +8091 10644 0.9960 +8091 10664 0.4930 +8091 10951 0.5620 +8091 11236 0.4950 +8091 23405 0.6610 +8091 23523 0.5190 +8091 25842 0.5680 +8091 27161 0.4720 +8091 27324 0.4670 +8091 28987 0.4360 +8091 29102 0.4920 +8091 29855 0.4990 +8091 29911 0.6170 +8091 51129 0.4080 +8091 51231 0.5150 +8091 51361 0.4410 +8091 54487 0.5870 +8091 57623 0.4560 +8091 57634 0.4620 +8091 57706 0.5300 +8091 64151 0.5470 +8091 79137 0.4340 +8091 79727 0.7170 +8091 79923 0.4400 +8091 84909 0.4030 +8091 92797 0.4220 +8091 116092 0.6490 +8091 131405 0.4220 +8091 253827 0.5160 +8091 254251 0.5860 +8091 389421 0.8340 +8091 440686 0.4060 +8091 100532731 0.4350 +8092 27022 0.4210 +8092 56100 0.6210 +8092 60529 0.5650 +8092 84125 0.6770 +8092 84941 0.4460 +8092 153572 0.4300 +8099 8932 0.8900 +8099 9112 0.9290 +8099 9219 0.9040 +8099 10198 0.4190 +8099 10263 0.5920 +8099 10363 0.4490 +8099 10743 0.4360 +8099 11009 0.5070 +8099 23028 0.4520 +8099 23613 0.6020 +8099 26038 0.7470 +8099 51222 0.8390 +8099 53615 0.8770 +8099 54815 0.9930 +8099 55206 0.6260 +8099 57459 0.9710 +8099 57504 0.9190 +8099 57592 0.6350 +8099 57621 0.6070 +8099 58538 0.4300 +8099 64426 0.4130 +8099 64919 0.6680 +8099 79369 0.4320 +8099 85509 0.8760 +8099 114932 0.4230 +8100 8481 0.8110 +8100 8655 0.7020 +8100 8701 0.4070 +8100 8766 0.4360 +8100 8881 0.4200 +8100 9126 0.4330 +8100 9321 0.4830 +8100 9371 0.8650 +8100 9657 0.5370 +8100 9696 0.4690 +8100 9738 0.6620 +8100 9742 0.9530 +8100 9786 0.6210 +8100 9859 0.4220 +8100 10013 0.6310 +8100 10083 0.6250 +8100 10226 0.4480 +8100 10464 0.4420 +8100 10640 0.7150 +8100 10806 0.4010 +8100 10987 0.4390 +8100 11020 0.9990 +8100 11116 0.4980 +8100 11127 0.9790 +8100 11315 0.4520 +8100 22832 0.4610 +8100 22858 0.5440 +8100 22873 0.4090 +8100 22897 0.8200 +8100 22920 0.8180 +8100 22994 0.6610 +8100 23059 0.9990 +8100 23247 0.4990 +8100 23265 0.4030 +8100 23322 0.7600 +8100 23432 0.6230 +8100 23552 0.4090 +8100 25861 0.5910 +8100 25978 0.4070 +8100 26005 0.7350 +8100 26146 0.9930 +8100 26160 0.9990 +8100 27031 0.5460 +8100 27077 0.5530 +8100 27130 0.7230 +8100 27152 0.4540 +8100 27241 0.7610 +8100 27243 0.4090 +8100 28981 0.9990 +8100 29889 0.4870 +8100 30827 0.4340 +8100 50846 0.4130 +8100 51057 0.5500 +8100 51098 0.9990 +8100 51134 0.6390 +8100 51143 0.5700 +8100 51199 0.5900 +8100 51259 0.4350 +8100 51626 0.7530 +8100 51668 0.9980 +8100 51684 0.7490 +8100 51686 0.4480 +8100 51715 0.4490 +8100 54585 0.4290 +8100 54806 0.6400 +8100 54820 0.4150 +8100 54875 0.4830 +8100 54903 0.5170 +8100 55011 0.6520 +8100 55081 0.9990 +8100 55112 0.5210 +8100 55212 0.8440 +8100 55349 0.4330 +8100 55582 0.4220 +8100 55764 0.9420 +8100 55812 0.4590 +8100 56623 0.4500 +8100 56912 0.9990 +8100 56979 0.4130 +8100 57096 0.6360 +8100 57216 0.6560 +8100 57539 0.8850 +8100 57545 0.6870 +8100 57560 0.9990 +8100 57576 0.7690 +8100 57728 0.9100 +8100 64072 0.4820 +8100 64792 0.9950 +8100 79140 0.5340 +8100 79598 0.5450 +8100 79600 0.5500 +8100 79643 0.4120 +8100 79659 0.7430 +8100 79696 0.6040 +8100 79738 0.6510 +8100 79809 0.9710 +8100 79867 0.5870 +8100 79925 0.5560 +8100 79989 0.9970 +8100 80173 0.9990 +8100 80184 0.8100 +8100 80776 0.5090 +8100 81554 0.4070 +8100 84902 0.5030 +8100 84984 0.4650 +8100 85302 0.7190 +8100 89853 0.4010 +8100 89891 0.5060 +8100 90410 0.9920 +8100 91147 0.7040 +8100 91754 0.4730 +8100 91782 0.4130 +8100 92104 0.9870 +8100 92421 0.4050 +8100 92482 0.5770 +8100 93343 0.4010 +8100 112752 0.8620 +8100 115948 0.7030 +8100 116840 0.6240 +8100 117177 0.6450 +8100 120379 0.4390 +8100 123169 0.4800 +8100 127733 0.9950 +8100 128866 0.4050 +8100 129880 0.8190 +8100 132320 0.5290 +8100 137492 0.4050 +8100 140735 0.6490 +8100 146057 0.5780 +8100 146849 0.5720 +8100 150737 0.9990 +8100 153241 0.4970 +8100 166379 0.6620 +8100 167691 0.5380 +8100 192668 0.7520 +8100 199223 0.6130 +8100 200894 0.9540 +8100 203286 0.4030 +8100 255758 0.4280 +8100 261734 0.7160 +8100 284086 0.5130 +8100 374654 0.5480 +8100 392509 0.5590 +8106 8148 0.4650 +8106 8189 0.8860 +8106 8480 0.5240 +8106 8563 0.5030 +8106 8662 0.6660 +8106 8669 0.4220 +8106 8672 0.6920 +8106 8683 0.9050 +8106 8761 0.9340 +8106 9295 0.8370 +8106 9584 0.5870 +8106 9775 0.6940 +8106 9782 0.5440 +8106 9785 0.8250 +8106 9877 0.4930 +8106 9939 0.5200 +8106 9987 0.5870 +8106 10150 0.5080 +8106 10179 0.6240 +8106 10189 0.8810 +8106 10196 0.4950 +8106 10212 0.4190 +8106 10236 0.5850 +8106 10250 0.4220 +8106 10284 0.5820 +8106 10286 0.4550 +8106 10425 0.5500 +8106 10432 0.4910 +8106 10471 0.4340 +8106 10482 0.5880 +8106 10492 0.6990 +8106 10498 0.4480 +8106 10569 0.8210 +8106 10605 0.4930 +8106 10642 0.4900 +8106 10657 0.5510 +8106 10658 0.5270 +8106 10898 0.9030 +8106 10914 0.9910 +8106 10949 0.6260 +8106 10963 0.5290 +8106 10978 0.6060 +8106 11044 0.4550 +8106 11051 0.9130 +8106 11052 0.9200 +8106 11066 0.4100 +8106 11097 0.4440 +8106 11100 0.4950 +8106 11181 0.7120 +8106 11338 0.9290 +8106 22803 0.5420 +8106 22894 0.5920 +8106 22916 0.9880 +8106 22938 0.8000 +8106 22985 0.5590 +8106 23016 0.4680 +8106 23020 0.4270 +8106 23049 0.4340 +8106 23060 0.4860 +8106 23064 0.5220 +8106 23168 0.4470 +8106 23283 0.8200 +8106 23367 0.4720 +8106 23404 0.4350 +8106 23435 0.8550 +8106 23450 0.5770 +8106 23476 0.6960 +8106 23481 0.4900 +8106 23510 0.5430 +8106 23517 0.9050 +8106 24149 0.4210 +8106 26019 0.7910 +8106 26093 0.4710 +8106 26097 0.4820 +8106 26528 0.5390 +8106 26986 0.9560 +8106 27316 0.6660 +8106 27339 0.7080 +8106 29107 0.4120 +8106 29763 0.4500 +8106 29894 0.8550 +8106 29896 0.5620 +8106 51010 0.4830 +8106 51247 0.4470 +8106 51362 0.8140 +8106 51574 0.4270 +8106 51585 0.9080 +8106 51593 0.5710 +8106 51602 0.5060 +8106 51692 0.8850 +8106 53981 0.8140 +8106 54439 0.5850 +8106 54464 0.6160 +8106 55110 0.5220 +8106 55339 0.8040 +8106 55421 0.5610 +8106 55596 0.7120 +8106 55660 0.4430 +8106 55796 0.5120 +8106 56903 0.9260 +8106 56949 0.4390 +8106 57187 0.4700 +8106 58517 0.4270 +8106 64062 0.6110 +8106 64282 0.5980 +8106 64506 0.4240 +8106 64895 0.9280 +8106 65110 0.7710 +8106 79869 0.7530 +8106 79882 0.9000 +8106 80336 0.8930 +8106 81608 0.9070 +8106 83443 0.5130 +8106 83737 0.4140 +8106 84186 0.5540 +8106 84306 0.4520 +8106 124245 0.5290 +8106 129563 0.4220 +8106 132430 0.9150 +8106 140886 0.9260 +8106 144983 0.4220 +8106 167227 0.4090 +8106 170302 0.4270 +8106 196441 0.9800 +8106 220988 0.6430 +8106 253943 0.4210 +8106 283373 0.4860 +8106 317649 0.5730 +8106 340529 0.8870 +8106 390748 0.9230 +8106 100529063 0.9890 +8106 127814297 0.4030 +8111 8477 0.4840 +8111 8997 0.4990 +8111 9170 0.5360 +8111 9311 0.5160 +8111 9313 0.4080 +8111 9622 0.5120 +8111 9982 0.5280 +8111 10117 0.4900 +8111 10800 0.4320 +8111 23236 0.5020 +8111 27239 0.5750 +8111 29933 0.7500 +8111 54757 0.4130 +8111 55515 0.4210 +8111 57105 0.4140 +8111 64407 0.4100 +8111 81849 0.4100 +8111 84435 0.5300 +8111 115557 0.5010 +8111 123041 0.5860 +8111 134391 0.4610 +8111 152816 0.6850 +8111 256764 0.5230 +8111 286077 0.5850 +8111 387509 0.5570 +8111 401138 0.5280 +8115 8433 0.4240 +8115 8473 0.4360 +8115 8618 0.4220 +8115 8626 0.4440 +8115 9314 0.4070 +8115 9623 0.9440 +8115 10000 0.9360 +8115 10365 0.4130 +8115 10724 0.4250 +8115 23081 0.5370 +8115 23235 0.4910 +8115 23548 0.6260 +8115 26499 0.4450 +8115 29760 0.4370 +8115 29802 0.8360 +8115 51237 0.4760 +8115 55024 0.4600 +8115 55211 0.4340 +8115 55809 0.4050 +8115 55818 0.5300 +8115 56144 0.4720 +8115 57167 0.4530 +8115 63978 0.6510 +8115 64784 0.4260 +8115 79368 0.4970 +8115 79923 0.5340 +8115 83416 0.4260 +8115 84824 0.5840 +8115 87178 0.4070 +8115 115350 0.5200 +8115 132625 0.4630 +8115 170482 0.5830 +8115 199786 0.5430 +8115 201456 0.4220 +8115 359787 0.4380 +8115 100423062 0.6280 +8115 102723407 0.7980 +8120 8546 0.9040 +8120 8905 0.6250 +8120 8906 0.7770 +8120 8907 0.6470 +8120 8943 0.9790 +8120 8988 0.4680 +8120 9179 0.8660 +8120 9454 0.4860 +8120 9907 0.5610 +8120 10053 0.5970 +8120 10239 0.9560 +8120 10717 0.7020 +8120 10900 0.5590 +8120 10947 0.9870 +8120 11154 0.8700 +8120 11276 0.5500 +8120 23154 0.5770 +8120 23339 0.4940 +8120 23431 0.9300 +8120 25782 0.4060 +8120 26985 0.9970 +8120 53339 0.4260 +8120 55317 0.5780 +8120 55745 0.5920 +8120 57172 0.4690 +8120 57704 0.4970 +8120 84062 0.6970 +8120 84251 0.6850 +8120 91056 0.5400 +8120 92737 0.4990 +8120 122616 0.5400 +8120 123720 0.5810 +8120 123722 0.6320 +8120 130340 0.7120 +8120 145447 0.5820 +8120 284339 0.4530 +8120 348110 0.5710 +8120 100526783 0.7140 +8125 8290 0.4230 +8125 8312 0.6590 +8125 8337 0.4910 +8125 8338 0.6130 +8125 8349 0.4060 +8125 8350 0.5230 +8125 8356 0.5120 +8125 8361 0.7550 +8125 8369 0.5090 +8125 8741 0.8000 +8125 9208 0.4620 +8125 10541 0.7970 +8125 11033 0.4070 +8125 23479 0.4810 +8125 23633 0.5060 +8125 26040 0.5980 +8125 30000 0.4070 +8125 51451 0.4200 +8125 55929 0.5310 +8125 57650 0.4830 +8125 81611 0.7250 +8125 116986 0.5550 +8125 342371 0.5580 +8125 646817 0.4490 +8125 653604 0.4320 +8125 654364 0.4270 +8125 728378 0.4240 +8128 8828 0.6050 +8128 9348 0.4290 +8128 9554 0.4260 +8128 9700 0.4010 +8128 11093 0.4770 +8128 11227 0.4080 +8128 23509 0.4470 +8128 23673 0.4010 +8128 27090 0.7880 +8128 27333 0.4350 +8128 51726 0.7590 +8128 53947 0.6090 +8128 54187 0.4780 +8128 79158 0.4450 +8128 112755 0.6630 +8128 145748 0.4310 +8128 256435 0.6040 +8128 400451 0.5220 +8139 8216 0.9150 +8139 8405 0.9150 +8139 8452 0.9890 +8139 8454 0.5640 +8139 8507 0.9260 +8139 8883 0.5050 +8139 9039 0.5390 +8139 9040 0.5720 +8139 9118 0.8290 +8139 9817 0.9180 +8139 9903 0.9130 +8139 9978 0.9660 +8139 10016 0.7240 +8139 10324 0.9220 +8139 10489 0.4230 +8139 11146 0.7220 +8139 11275 0.7730 +8139 23053 0.9000 +8139 23091 0.4230 +8139 23142 0.5080 +8139 23412 0.5040 +8139 23510 0.6000 +8139 26235 0.4160 +8139 26249 0.9250 +8139 26278 0.4180 +8139 27252 0.9180 +8139 28952 0.5070 +8139 28991 0.5070 +8139 29099 0.5040 +8139 50717 0.6480 +8139 51088 0.4460 +8139 51122 0.5030 +8139 51397 0.5110 +8139 53339 0.4150 +8139 54165 0.5170 +8139 54442 0.6760 +8139 54476 0.4300 +8139 54726 0.4170 +8139 54800 0.7390 +8139 54939 0.5040 +8139 54951 0.5070 +8139 55054 0.4790 +8139 55175 0.5330 +8139 55201 0.6860 +8139 55208 0.5080 +8139 55832 0.5280 +8139 55958 0.9240 +8139 55975 0.9210 +8139 57542 0.9220 +8139 57563 0.9080 +8139 59349 0.9220 +8139 64410 0.9210 +8139 79734 0.9090 +8139 79968 0.5920 +8139 80176 0.4010 +8139 81493 0.4320 +8139 83544 0.7680 +8139 83892 0.7590 +8139 84078 0.9000 +8139 84259 0.5050 +8139 84541 0.9310 +8139 84861 0.9120 +8139 89890 0.9050 +8139 90135 0.5240 +8139 90293 0.9170 +8139 126433 0.4170 +8139 131377 0.7710 +8139 149951 0.5090 +8139 150684 0.5060 +8139 170622 0.5070 +8139 200845 0.4790 +8139 253980 0.9100 +8139 339745 0.9050 +8139 390594 0.4980 +8139 553115 0.7470 +8140 8501 0.9150 +8140 8622 0.4070 +8140 9056 0.5450 +8140 9057 0.5460 +8140 9123 0.4340 +8140 9376 0.4350 +8140 9780 0.4570 +8140 10257 0.5010 +8140 10381 0.4820 +8140 10397 0.7290 +8140 10600 0.6530 +8140 10652 0.5370 +8140 10797 0.5610 +8140 10991 0.4780 +8140 11136 0.5400 +8140 11254 0.6660 +8140 23428 0.8530 +8140 23650 0.4720 +8140 23657 0.7390 +8140 27037 0.6600 +8140 27165 0.5390 +8140 28231 0.4200 +8140 29968 0.5420 +8140 53919 0.5930 +8140 54407 0.7780 +8140 54541 0.4050 +8140 55089 0.5070 +8140 55151 0.4070 +8140 55238 0.4770 +8140 55353 0.4620 +8140 55785 0.7180 +8140 55920 0.4120 +8140 56301 0.5320 +8140 57521 0.4490 +8140 57709 0.4630 +8140 57761 0.7440 +8140 79094 0.4060 +8140 80150 0.4170 +8140 81539 0.7750 +8140 83667 0.4210 +8140 84102 0.4140 +8140 84889 0.4370 +8140 92745 0.6130 +8140 117247 0.5790 +8140 120103 0.4710 +8140 124935 0.7990 +8140 125061 0.4060 +8140 153129 0.5570 +8140 160728 0.4610 +8140 206358 0.5710 +8140 340024 0.5390 +8140 388662 0.4810 +8140 440275 0.5010 +8148 8607 0.5200 +8148 9343 0.5210 +8148 9774 0.4730 +8148 9775 0.4080 +8148 9782 0.8720 +8148 9987 0.5230 +8148 10189 0.6990 +8148 10197 0.4530 +8148 10236 0.7750 +8148 10284 0.5680 +8148 10432 0.7260 +8148 10492 0.6320 +8148 10521 0.4130 +8148 10657 0.4700 +8148 10658 0.4140 +8148 10772 0.6130 +8148 10949 0.7050 +8148 11051 0.5070 +8148 11052 0.5530 +8148 11100 0.4840 +8148 11338 0.6330 +8148 22985 0.4150 +8148 23016 0.4180 +8148 23064 0.4270 +8148 23350 0.4010 +8148 23435 0.8840 +8148 23476 0.5390 +8148 23598 0.5480 +8148 26097 0.6630 +8148 26986 0.4010 +8148 27258 0.4520 +8148 27316 0.8090 +8148 27339 0.5650 +8148 29115 0.4360 +8148 29894 0.5060 +8148 51574 0.5110 +8148 51593 0.5570 +8148 51616 0.8020 +8148 51637 0.7640 +8148 51639 0.4290 +8148 54457 0.4990 +8148 55234 0.5220 +8148 56259 0.5360 +8148 56341 0.5960 +8148 57187 0.5250 +8148 83860 0.8090 +8148 84324 0.4670 +8148 84844 0.4030 +8148 138474 0.5280 +8148 203228 0.4940 +8148 220988 0.7690 +8148 284695 0.5370 +8148 404672 0.5370 +8153 8502 0.5630 +8153 9231 0.5780 +8153 9352 0.5730 +8153 9928 0.5630 +8153 10215 0.4140 +8153 10507 0.4200 +8153 10726 0.5670 +8153 10817 0.5140 +8153 10818 0.4990 +8153 10970 0.5480 +8153 11180 0.5500 +8153 11188 0.5460 +8153 22836 0.4780 +8153 22852 0.5780 +8153 23048 0.6700 +8153 23074 0.5550 +8153 23129 0.7070 +8153 23513 0.5830 +8153 23592 0.5460 +8153 23654 0.8020 +8153 27316 0.6040 +8153 29127 0.4320 +8153 50618 0.5720 +8153 54442 0.4220 +8153 54874 0.4860 +8153 55227 0.5900 +8153 55789 0.5480 +8153 56667 0.5640 +8153 57216 0.5850 +8153 57498 0.5780 +8153 57528 0.4440 +8153 63973 0.7950 +8153 81839 0.5660 +8153 83892 0.4580 +8153 89846 0.4240 +8153 91544 0.7550 +8153 157285 0.8100 +8153 222584 0.5430 +8153 253980 0.8540 +8161 8189 0.4800 +8161 8295 0.4060 +8161 8361 0.4300 +8161 8487 0.8060 +8161 8570 0.4580 +8161 8882 0.4860 +8161 9128 0.6840 +8161 9129 0.6090 +8161 9221 0.9760 +8161 9444 0.4460 +8161 9733 0.8780 +8161 9900 0.4260 +8161 9908 0.4560 +8161 9994 0.6730 +8161 10073 0.5960 +8161 10084 0.4480 +8161 10146 0.5200 +8161 10153 0.4370 +8161 10197 0.8150 +8161 10199 0.8040 +8161 10208 0.7560 +8161 10236 0.4850 +8161 10419 0.5150 +8161 10482 0.4360 +8161 10492 0.4490 +8161 10528 0.4170 +8161 10611 0.5470 +8161 10775 0.4200 +8161 10856 0.4070 +8161 11030 0.4110 +8161 11171 0.4660 +8161 11179 0.4310 +8161 11218 0.6940 +8161 23029 0.4010 +8161 23076 0.4430 +8161 23152 0.4060 +8161 23379 0.4200 +8161 24148 0.4420 +8161 25804 0.6460 +8161 25894 0.6660 +8161 25926 0.4510 +8161 25929 0.6790 +8161 26121 0.4320 +8161 27336 0.4920 +8161 29978 0.5210 +8161 50628 0.5370 +8161 51230 0.4860 +8161 51574 0.6300 +8161 51602 0.5910 +8161 51692 0.6500 +8161 51808 0.7340 +8161 54433 0.5130 +8161 54881 0.4300 +8161 55011 0.4260 +8161 55135 0.8290 +8161 55153 0.4980 +8161 55269 0.4200 +8161 55505 0.6420 +8161 55651 0.6110 +8161 55904 0.4830 +8161 56893 0.5650 +8161 56899 0.4520 +8161 57410 0.5450 +8161 57819 0.5810 +8161 64282 0.4120 +8161 65123 0.4920 +8161 79657 0.5040 +8161 79760 0.5430 +8161 79833 0.4760 +8161 84524 0.4140 +8161 84967 0.5200 +8161 84991 0.4810 +8161 96764 0.6400 +8161 114034 0.4080 +8161 124245 0.4380 +8161 134353 0.7570 +8161 148479 0.4840 +8161 102157402 0.7700 +8165 8562 0.5280 +8165 8852 0.8020 +8165 8877 0.4470 +8165 8936 0.7010 +8165 9139 0.5060 +8165 9465 0.9240 +8165 9472 0.9310 +8165 9495 0.9310 +8165 9590 0.9150 +8165 9804 0.4520 +8165 9927 0.5080 +8165 10059 0.6100 +8165 10142 0.8740 +8165 10270 0.9030 +8165 10411 0.9570 +8165 10566 0.8010 +8165 10981 0.6270 +8165 11069 0.7390 +8165 11099 0.5330 +8165 11214 0.9200 +8165 11215 0.8570 +8165 11216 0.7430 +8165 23432 0.5530 +8165 25924 0.4180 +8165 26256 0.7930 +8165 26292 0.9450 +8165 26986 0.4780 +8165 51024 0.4840 +8165 51651 0.4090 +8165 51806 0.6750 +8165 54708 0.5880 +8165 54763 0.6350 +8165 55529 0.4340 +8165 55669 0.4400 +8165 56848 0.4820 +8165 56947 0.4760 +8165 56993 0.6460 +8165 57521 0.4710 +8165 57606 0.4340 +8165 63939 0.4210 +8165 64746 0.6430 +8165 80309 0.5360 +8165 83853 0.5030 +8165 84281 0.5450 +8165 89876 0.8200 +8165 91860 0.6760 +8165 158798 0.7870 +8165 163688 0.6750 +8165 253260 0.4180 +8165 445815 0.7340 +8165 692312 0.4790 +8170 9027 0.4140 +8170 9622 0.5810 +8170 23557 0.4220 +8170 26206 0.4480 +8170 26261 0.4780 +8170 27346 0.5200 +8170 90342 0.4710 +8170 134187 0.4610 +8170 162998 0.5330 +8170 342132 0.4370 +8170 374355 0.4840 +8170 375449 0.4150 +8170 730005 0.4670 +8174 8639 0.4560 +8174 8740 0.4880 +8174 8764 0.4650 +8174 9034 0.4360 +8174 10164 0.5270 +8174 10563 0.6020 +8174 10630 0.5060 +8174 10803 0.9940 +8174 10894 0.4340 +8174 23705 0.6040 +8174 27346 0.4590 +8174 29126 0.4780 +8174 50943 0.4050 +8174 51554 0.7780 +8174 51639 0.5940 +8174 51705 0.5320 +8174 83700 0.4780 +8174 123803 0.8590 +8174 146894 0.5990 +8174 159296 0.7560 +8174 199953 0.4460 +8175 8241 0.6650 +8175 8449 0.9980 +8175 8559 0.4310 +8175 8683 0.7680 +8175 8896 0.9860 +8175 8899 0.8320 +8175 9092 0.9990 +8175 9128 0.9960 +8175 9129 0.9980 +8175 9184 0.6650 +8175 9343 0.9980 +8175 9360 0.4920 +8175 9410 0.8970 +8175 9416 0.9620 +8175 9584 0.7510 +8175 9716 0.8830 +8175 9775 0.4450 +8175 9785 0.7510 +8175 9879 0.9990 +8175 9939 0.5590 +8175 10084 0.6590 +8175 10131 0.7070 +8175 10179 0.5210 +8175 10181 0.6920 +8175 10189 0.4880 +8175 10236 0.7300 +8175 10250 0.9330 +8175 10262 0.9990 +8175 10283 0.9940 +8175 10285 0.9120 +8175 10286 0.9450 +8175 10291 0.9990 +8175 10362 0.7190 +8175 10421 0.6820 +8175 10450 0.9430 +8175 10465 0.8510 +8175 10492 0.6460 +8175 10521 0.7120 +8175 10523 0.9600 +8175 10569 0.5550 +8175 10594 0.9990 +8175 10713 0.9150 +8175 10891 0.4720 +8175 10907 0.9890 +8175 10915 0.9410 +8175 10921 0.7090 +8175 10946 0.9990 +8175 10973 0.5410 +8175 10992 0.9990 +8175 11017 0.8450 +8175 11066 0.6020 +8175 11100 0.7170 +8175 11157 0.9920 +8175 11179 0.4570 +8175 11193 0.9870 +8175 11325 0.9970 +8175 11338 0.9730 +8175 22794 0.4230 +8175 22826 0.8420 +8175 22827 0.9420 +8175 22916 0.9870 +8175 22938 0.9800 +8175 22944 0.8960 +8175 22985 0.6580 +8175 23020 0.9990 +8175 23082 0.4950 +8175 23350 0.9630 +8175 23398 0.6140 +8175 23450 0.9990 +8175 23451 0.9990 +8175 23475 0.4060 +8175 23524 0.9980 +8175 23548 0.4530 +8175 23658 0.9900 +8175 23759 0.8580 +8175 24148 0.9990 +8175 25766 0.9120 +8175 25804 0.9960 +8175 25949 0.8370 +8175 25956 0.5910 +8175 26121 0.9990 +8175 27258 0.9910 +8175 27316 0.7540 +8175 27336 0.9900 +8175 27339 0.9970 +8175 29105 0.6010 +8175 29115 0.6280 +8175 51322 0.5140 +8175 51340 0.9480 +8175 51362 0.9720 +8175 51503 0.9710 +8175 51574 0.4400 +8175 51593 0.6520 +8175 51631 0.7530 +8175 51634 0.9960 +8175 51639 0.9990 +8175 51645 0.8700 +8175 51690 0.9910 +8175 51691 0.9930 +8175 51729 0.9270 +8175 51747 0.7040 +8175 54883 0.7150 +8175 54952 0.7630 +8175 54957 0.4260 +8175 55015 0.8290 +8175 55082 0.6160 +8175 55094 0.5280 +8175 55100 0.4080 +8175 55109 0.6130 +8175 55110 0.9080 +8175 55111 0.4910 +8175 55234 0.9880 +8175 55285 0.6200 +8175 55599 0.6200 +8175 55660 0.8850 +8175 55692 0.7470 +8175 55696 0.9510 +8175 55702 0.7270 +8175 55749 0.6000 +8175 55954 0.5640 +8175 56259 0.9250 +8175 56949 0.9760 +8175 57187 0.4560 +8175 57461 0.6220 +8175 57703 0.9950 +8175 57794 0.6980 +8175 57805 0.6080 +8175 57819 0.9940 +8175 58517 0.8460 +8175 59286 0.8060 +8175 60625 0.5590 +8175 65109 0.4240 +8175 79002 0.8090 +8175 79171 0.8500 +8175 79446 0.5350 +8175 79696 0.5070 +8175 79753 0.9950 +8175 80742 0.8860 +8175 83443 0.9990 +8175 83714 0.6020 +8175 83938 0.6820 +8175 84081 0.4130 +8175 84316 0.6390 +8175 84811 0.9980 +8175 84844 0.9990 +8175 84950 0.9880 +8175 84967 0.6450 +8175 84991 0.9550 +8175 85313 0.4880 +8175 87178 0.4340 +8175 90324 0.7990 +8175 91603 0.4930 +8175 124245 0.7540 +8175 126259 0.6440 +8175 126306 0.4320 +8175 147650 0.6390 +8175 153527 0.9950 +8175 154007 0.6030 +8175 164045 0.5610 +8175 164781 0.5310 +8175 220074 0.6820 +8175 220988 0.7460 +8175 222183 0.6950 +8175 284325 0.6250 +8175 347744 0.7630 +8175 348793 0.5310 +8175 392517 0.8370 +8175 100534599 0.9230 +8175 100996928 0.4410 +8178 8450 0.4460 +8178 8451 0.4140 +8178 8458 0.7200 +8178 8522 0.5610 +8178 8621 0.6010 +8178 8658 0.4220 +8178 8812 0.6600 +8178 9150 0.8190 +8178 9414 0.4290 +8178 9441 0.9690 +8178 9646 0.9300 +8178 9656 0.4990 +8178 9978 0.4220 +8178 10208 0.6030 +8178 10450 0.5050 +8178 10614 0.5960 +8178 10962 0.5960 +8178 11198 0.5950 +8178 11267 0.9710 +8178 22916 0.5530 +8178 22936 0.9730 +8178 23013 0.4440 +8178 23048 0.5250 +8178 23157 0.5430 +8178 23168 0.9240 +8178 23379 0.9790 +8178 23476 0.4590 +8178 25920 0.9420 +8178 26205 0.6280 +8178 26610 0.9000 +8178 26747 0.7230 +8178 27125 0.9990 +8178 27134 0.4370 +8178 27339 0.4610 +8178 29101 0.4490 +8178 51028 0.9470 +8178 51224 0.6480 +8178 51497 0.9030 +8178 51574 0.6910 +8178 51585 0.4630 +8178 51755 0.6180 +8178 54623 0.9060 +8178 55215 0.5040 +8178 55250 0.7220 +8178 55677 0.8130 +8178 55840 0.9980 +8178 56257 0.5750 +8178 56949 0.4860 +8178 57461 0.4160 +8178 57654 0.5350 +8178 64324 0.5200 +8178 64783 0.4680 +8178 64924 0.6410 +8178 79577 0.9190 +8178 79643 0.4640 +8178 79664 0.9810 +8178 79961 0.7410 +8178 80237 0.9920 +8178 80349 0.9070 +8178 81488 0.4160 +8178 84313 0.9260 +8178 84337 0.5450 +8178 84444 0.7740 +8178 84524 0.9770 +8178 85403 0.9990 +8178 85456 0.5580 +8178 91056 0.4360 +8178 91603 0.4160 +8178 93624 0.4660 +8178 123169 0.9210 +8178 124790 0.4290 +8178 171017 0.4520 +8178 404672 0.4990 +8187 26150 0.4030 +8187 64284 0.4230 +8187 64928 0.4960 +8187 84823 0.5520 +8187 90523 0.4470 +8189 8480 0.4050 +8189 8531 0.9380 +8189 8570 0.4440 +8189 8683 0.4270 +8189 9045 0.8420 +8189 9330 0.9590 +8189 9343 0.5110 +8189 9414 0.7330 +8189 9631 0.4570 +8189 9688 0.4070 +8189 9732 0.7550 +8189 9818 0.4470 +8189 9883 0.4200 +8189 9937 0.6530 +8189 9972 0.4210 +8189 9994 0.6800 +8189 10189 0.6190 +8189 10460 0.5650 +8189 10482 0.6470 +8189 10762 0.4990 +8189 10869 0.4300 +8189 10898 0.9990 +8189 10914 0.9980 +8189 10923 0.9610 +8189 10978 0.7380 +8189 11051 0.8750 +8189 11052 0.9630 +8189 11066 0.4570 +8189 11097 0.4130 +8189 11222 0.5780 +8189 11338 0.4590 +8189 22803 0.4810 +8189 22828 0.7030 +8189 22849 0.6450 +8189 22916 0.6560 +8189 23144 0.8020 +8189 23165 0.4160 +8189 23211 0.7180 +8189 23225 0.4160 +8189 23279 0.4490 +8189 23283 0.9830 +8189 23295 0.4610 +8189 23405 0.5000 +8189 23511 0.5510 +8189 23636 0.4530 +8189 24149 0.4210 +8189 25888 0.6860 +8189 25896 0.4470 +8189 25920 0.5270 +8189 25983 0.8350 +8189 26065 0.4650 +8189 26173 0.7940 +8189 26512 0.6110 +8189 26986 0.6200 +8189 27134 0.6870 +8189 29101 0.9980 +8189 29894 0.9990 +8189 50855 0.5090 +8189 51087 0.5140 +8189 51154 0.7550 +8189 51585 0.9950 +8189 51659 0.5450 +8189 51692 0.9990 +8189 51750 0.5490 +8189 53371 0.4080 +8189 53981 0.9990 +8189 54462 0.4430 +8189 54487 0.4890 +8189 54973 0.7990 +8189 55339 0.9990 +8189 55746 0.4130 +8189 55756 0.7830 +8189 56478 0.5550 +8189 56903 0.9940 +8189 57117 0.4400 +8189 57122 0.4100 +8189 57530 0.8540 +8189 57710 0.8380 +8189 64421 0.6110 +8189 64506 0.9850 +8189 64852 0.6520 +8189 64858 0.6080 +8189 64895 0.9940 +8189 65123 0.6540 +8189 79023 0.4430 +8189 79084 0.8410 +8189 79577 0.7940 +8189 79869 0.9090 +8189 79902 0.4110 +8189 80315 0.6710 +8189 80335 0.9790 +8189 80336 0.6560 +8189 81492 0.4120 +8189 81608 0.9990 +8189 81929 0.4080 +8189 83990 0.5140 +8189 84524 0.6980 +8189 84967 0.9460 +8189 91833 0.4540 +8189 92105 0.5890 +8189 93643 0.6770 +8189 129401 0.4160 +8189 132864 0.6590 +8189 134353 0.8750 +8189 136157 0.8060 +8189 143506 0.8060 +8189 150677 0.4310 +8189 153562 0.6030 +8189 154197 0.7790 +8189 167153 0.9810 +8189 196120 0.8060 +8189 221895 0.8630 +8189 348995 0.4110 +8189 376940 0.6820 +8189 388553 0.4530 +8189 390031 0.8060 +8189 390033 0.8060 +8189 441584 0.8060 +8189 642843 0.9480 +8189 643988 0.5950 +8189 100101267 0.4480 +8189 100506658 0.8450 +8190 9518 0.4920 +8190 10536 0.4040 +8190 23705 0.4010 +8190 55553 0.4300 +8192 8195 0.4390 +8192 8508 0.4500 +8192 8565 0.6010 +8192 8659 0.4900 +8192 8666 0.4370 +8192 8801 0.4070 +8192 8802 0.6200 +8192 8803 0.4250 +8192 9045 0.4430 +8192 9054 0.5880 +8192 9086 0.4420 +8192 9093 0.7770 +8192 9131 0.4540 +8192 9296 0.4370 +8192 9349 0.5490 +8192 9361 0.9330 +8192 9377 0.5840 +8192 9399 0.4010 +8192 9512 0.7490 +8192 9528 0.4180 +8192 9533 0.4710 +8192 9581 0.4050 +8192 9617 0.5710 +8192 9692 0.4060 +8192 9836 0.4360 +8192 9927 0.4420 +8192 10101 0.5210 +8192 10102 0.5620 +8192 10105 0.4450 +8192 10128 0.5120 +8192 10131 0.7250 +8192 10229 0.4250 +8192 10245 0.4250 +8192 10273 0.4330 +8192 10352 0.5890 +8192 10440 0.5600 +8192 10469 0.5600 +8192 10525 0.4260 +8192 10531 0.5830 +8192 10573 0.4620 +8192 10574 0.5000 +8192 10575 0.4440 +8192 10576 0.4730 +8192 10693 0.4340 +8192 10730 0.8700 +8192 10797 0.6080 +8192 10808 0.4220 +8192 10845 0.9990 +8192 10939 0.8160 +8192 10994 0.4270 +8192 11128 0.4140 +8192 11145 0.4180 +8192 11224 0.4380 +8192 11232 0.4800 +8192 11315 0.5610 +8192 11331 0.5620 +8192 22809 0.6200 +8192 22824 0.4200 +8192 22948 0.4870 +8192 22984 0.4270 +8192 23135 0.4150 +8192 23203 0.7140 +8192 23395 0.7910 +8192 23410 0.4290 +8192 23438 0.6050 +8192 23456 0.5260 +8192 23479 0.5660 +8192 23640 0.4730 +8192 25789 0.4180 +8192 25821 0.4960 +8192 25828 0.5450 +8192 25873 0.5100 +8192 25902 0.4950 +8192 25915 0.5160 +8192 26073 0.6640 +8192 26164 0.4800 +8192 26284 0.8130 +8192 26517 0.6100 +8192 26589 0.4590 +8192 26995 0.5640 +8192 27068 0.6390 +8192 27429 0.6500 +8192 28957 0.4110 +8192 28998 0.4610 +8192 29085 0.6280 +8192 29093 0.4740 +8192 29796 0.4390 +8192 29920 0.4620 +8192 29927 0.4660 +8192 29968 0.4530 +8192 30968 0.5780 +8192 50808 0.5470 +8192 50945 0.9940 +8192 51004 0.5180 +8192 51021 0.5640 +8192 51024 0.4300 +8192 51025 0.5690 +8192 51067 0.5260 +8192 51069 0.6150 +8192 51073 0.5440 +8192 51076 0.4080 +8192 51079 0.6120 +8192 51081 0.7030 +8192 51095 0.4860 +8192 51103 0.4290 +8192 51106 0.4270 +8192 51116 0.5980 +8192 51121 0.4600 +8192 51154 0.4360 +8192 51182 0.4740 +8192 51204 0.4420 +8192 51264 0.4870 +8192 51295 0.6910 +8192 51360 0.4590 +8192 51373 0.4060 +8192 51520 0.4130 +8192 51529 0.4260 +8192 51805 0.4820 +8192 54059 0.5490 +8192 54431 0.5230 +8192 54516 0.4440 +8192 54539 0.5380 +8192 54802 0.5430 +8192 54927 0.5130 +8192 54931 0.4030 +8192 54948 0.4830 +8192 54979 0.4180 +8192 54995 0.4840 +8192 55005 0.4890 +8192 55037 0.4460 +8192 55052 0.5820 +8192 55157 0.6130 +8192 55168 0.5060 +8192 55178 0.4980 +8192 55191 0.4500 +8192 55272 0.5030 +8192 55278 0.5720 +8192 55316 0.4240 +8192 55471 0.4060 +8192 55486 0.6200 +8192 55526 0.5180 +8192 55687 0.4740 +8192 55735 0.4030 +8192 55780 0.4340 +8192 55967 0.5060 +8192 56652 0.6590 +8192 56945 0.4410 +8192 57038 0.5000 +8192 57110 0.4180 +8192 57128 0.6220 +8192 57136 0.4420 +8192 57176 0.4080 +8192 57486 0.4200 +8192 57505 0.5250 +8192 59286 0.6010 +8192 60558 0.5680 +8192 63929 0.6100 +8192 63931 0.4650 +8192 64087 0.4070 +8192 64146 0.8100 +8192 64216 0.4220 +8192 64432 0.4440 +8192 64928 0.4340 +8192 64949 0.4970 +8192 64951 0.4920 +8192 64960 0.5750 +8192 64963 0.7510 +8192 64965 0.5310 +8192 64969 0.5270 +8192 64976 0.6050 +8192 64979 0.6720 +8192 64983 0.4850 +8192 65003 0.4450 +8192 65005 0.4400 +8192 65018 0.5240 +8192 65080 0.4920 +8192 65993 0.6010 +8192 79587 0.6050 +8192 79590 0.5670 +8192 79731 0.5690 +8192 79738 0.4340 +8192 79896 0.4840 +8192 79947 0.4240 +8192 80222 0.5890 +8192 80273 0.9240 +8192 80763 0.7220 +8192 81570 0.9990 +8192 83752 0.7990 +8192 84140 0.4340 +8192 84263 0.5340 +8192 84266 0.4510 +8192 84273 0.4810 +8192 84532 0.4360 +8192 84545 0.4620 +8192 84681 0.4860 +8192 84705 0.6390 +8192 84816 0.4040 +8192 84939 0.4320 +8192 85476 0.6350 +8192 85865 0.5530 +8192 87178 0.7050 +8192 90353 0.4060 +8192 90480 0.4980 +8192 91574 0.4160 +8192 92399 0.6700 +8192 92935 0.4520 +8192 93974 0.5450 +8192 115098 0.6090 +8192 115209 0.6650 +8192 116150 0.4190 +8192 116835 0.4180 +8192 118461 0.4180 +8192 124454 0.5120 +8192 124995 0.4960 +8192 125988 0.4470 +8192 126328 0.5640 +8192 128308 0.5250 +8192 131118 0.4560 +8192 134266 0.6800 +8192 139221 0.4280 +8192 142940 0.4430 +8192 169792 0.6410 +8192 171425 0.5060 +8192 196074 0.4460 +8192 219927 0.6190 +8192 259217 0.4180 +8192 284273 0.4050 +8192 339416 0.4180 +8192 374291 0.8010 +8192 374659 0.5230 +8192 388633 0.4180 +8192 440275 0.5370 +8192 441024 0.4050 +8192 728317 0.4280 +8193 8289 0.9980 +8193 8815 0.8880 +8193 9274 0.9430 +8193 9275 0.8530 +8193 9480 0.5040 +8193 10106 0.4400 +8193 10217 0.4420 +8193 10481 0.4770 +8193 11075 0.4340 +8193 23506 0.7440 +8193 26039 0.9700 +8193 29117 0.9210 +8193 29998 0.8010 +8193 51188 0.6000 +8193 51412 0.9990 +8193 53335 0.5500 +8193 55193 0.9210 +8193 55274 0.9000 +8193 56156 0.6110 +8193 57492 0.9910 +8193 58155 0.5250 +8193 58190 0.4400 +8193 64919 0.5540 +8193 65980 0.9010 +8193 94121 0.5420 +8193 196528 0.9280 +8195 9361 0.4340 +8195 10131 0.4610 +8195 10525 0.4030 +8195 10552 0.4700 +8195 10574 0.9220 +8195 10575 0.9500 +8195 10576 0.9940 +8195 10693 0.7780 +8195 10694 0.9660 +8195 22948 0.9900 +8195 27241 0.5130 +8195 51182 0.6100 +8195 55212 0.7500 +8195 55780 0.7010 +8195 63931 0.4270 +8195 79140 0.6210 +8195 79738 0.9290 +8195 80273 0.5830 +8195 81570 0.4700 +8195 83752 0.4340 +8195 84140 0.6310 +8195 84984 0.4450 +8195 92482 0.5170 +8195 129880 0.5970 +8195 134266 0.5670 +8195 150160 0.7800 +8195 157657 0.4180 +8195 166379 0.9660 +8195 339416 0.5930 +8200 8646 0.9710 +8200 8817 0.4370 +8200 8840 0.4570 +8200 9241 0.9970 +8200 9496 0.5650 +8200 9507 0.4560 +8200 9508 0.4560 +8200 10106 0.7500 +8200 10216 0.5060 +8200 10468 0.5180 +8200 11062 0.4340 +8200 11096 0.4930 +8200 22943 0.5320 +8200 23263 0.4880 +8200 25884 0.7450 +8200 26585 0.7550 +8200 27123 0.4230 +8200 27302 0.4910 +8200 50964 0.6090 +8200 54361 0.4290 +8200 54829 0.7860 +8200 55245 0.8670 +8200 55553 0.4020 +8200 56033 0.5270 +8200 56963 0.9260 +8200 57045 0.5190 +8200 64102 0.6150 +8200 64388 0.8770 +8200 78992 0.5530 +8200 90865 0.4200 +8200 117177 0.6030 +8200 130399 0.4640 +8200 148738 0.9150 +8200 151449 0.4490 +8200 168667 0.5940 +8200 220001 0.6170 +8200 283078 0.4170 +8200 284114 0.6300 +8200 285704 0.9220 +8200 642658 0.4980 +8202 8204 0.7660 +8202 8243 0.5380 +8202 8289 0.4690 +8202 8290 0.7050 +8202 8331 0.5040 +8202 8334 0.5100 +8202 8337 0.6030 +8202 8338 0.6000 +8202 8340 0.5560 +8202 8341 0.5560 +8202 8342 0.5450 +8202 8345 0.5610 +8202 8347 0.5550 +8202 8348 0.5590 +8202 8349 0.6200 +8202 8356 0.7010 +8202 8361 0.8040 +8202 8405 0.8890 +8202 8431 0.5030 +8202 8452 0.5990 +8202 8493 0.4530 +8202 8554 0.4590 +8202 8648 0.9940 +8202 8726 0.5430 +8202 8805 0.5160 +8202 8841 0.6080 +8202 8850 0.9860 +8202 8856 0.5530 +8202 8970 0.5770 +8202 9031 0.4720 +8202 9070 0.5680 +8202 9126 0.5560 +8202 9232 0.4250 +8202 9282 0.7690 +8202 9370 0.5460 +8202 9412 0.5050 +8202 9439 0.7340 +8202 9440 0.5760 +8202 9441 0.5810 +8202 9442 0.5200 +8202 9443 0.4990 +8202 9477 0.5160 +8202 9575 0.5280 +8202 9611 0.9280 +8202 9612 0.9170 +8202 9687 0.8140 +8202 9734 0.5360 +8202 9862 0.5910 +8202 9968 0.6660 +8202 9969 0.5930 +8202 9970 0.5890 +8202 9971 0.7750 +8202 9975 0.5510 +8202 10001 0.5640 +8202 10014 0.4200 +8202 10025 0.5720 +8202 10062 0.6390 +8202 10197 0.9410 +8202 10274 0.5540 +8202 10498 0.9970 +8202 10499 0.9970 +8202 10524 0.6630 +8202 10664 0.8460 +8202 10725 0.4790 +8202 10735 0.8220 +8202 10891 0.4080 +8202 11091 0.6020 +8202 11143 0.4260 +8202 22976 0.5480 +8202 23001 0.5100 +8202 23013 0.4300 +8202 23030 0.5630 +8202 23054 0.8540 +8202 23097 0.5470 +8202 23112 0.5310 +8202 23186 0.5100 +8202 23389 0.5650 +8202 23435 0.4050 +8202 23476 0.5410 +8202 23512 0.6000 +8202 23522 0.4140 +8202 24148 0.4150 +8202 26523 0.5320 +8202 27043 0.6320 +8202 27161 0.6790 +8202 27327 0.5390 +8202 29028 0.7630 +8202 29079 0.6230 +8202 29123 0.6700 +8202 51003 0.4990 +8202 51129 0.5310 +8202 51496 0.4130 +8202 51586 0.5740 +8202 54145 0.5710 +8202 54797 0.5100 +8202 55090 0.5350 +8202 55294 0.5160 +8202 55588 0.4990 +8202 55766 0.5070 +8202 57026 0.5000 +8202 57491 0.4130 +8202 58508 0.6650 +8202 63897 0.9360 +8202 79447 0.5150 +8202 79718 0.5290 +8202 80306 0.4990 +8202 81857 0.5210 +8202 84246 0.5170 +8202 84962 0.5110 +8202 85236 0.5730 +8202 90390 0.5500 +8202 93649 0.6310 +8202 94239 0.5040 +8202 112950 0.5450 +8202 128312 0.5560 +8202 135112 0.5830 +8202 153770 0.4480 +8202 192669 0.5120 +8202 192670 0.5090 +8202 255626 0.5570 +8202 266743 0.5300 +8202 339745 0.5880 +8202 400569 0.5230 +8202 440093 0.4230 +8202 440686 0.4230 +8202 474382 0.5060 +8202 653604 0.7060 +8202 728378 0.4130 +8204 8431 0.4090 +8204 8554 0.4400 +8204 8648 0.7590 +8204 8805 0.7030 +8204 8841 0.8700 +8204 8856 0.6020 +8204 9213 0.6470 +8204 9441 0.4200 +8204 9572 0.6400 +8204 9575 0.6080 +8204 9611 0.9070 +8204 9612 0.7290 +8204 9658 0.6140 +8204 9687 0.5750 +8204 10062 0.7940 +8204 10498 0.5000 +8204 10499 0.7540 +8204 10521 0.4050 +8204 10587 0.4450 +8204 10691 0.4640 +8204 10728 0.5270 +8204 10891 0.9850 +8204 11331 0.4630 +8204 23186 0.4190 +8204 23641 0.4350 +8204 28996 0.4320 +8204 55279 0.4470 +8204 55827 0.7260 +8204 57491 0.4530 +8204 63976 0.5530 +8204 80321 0.4200 +8204 84458 0.8330 +8204 129642 0.5990 +8204 133522 0.5050 +8204 167465 0.5870 +8208 8290 0.8340 +8208 8294 0.5250 +8208 8318 0.8520 +8208 8350 0.9180 +8208 8351 0.4090 +8208 8352 0.7490 +8208 8353 0.5820 +8208 8354 0.5190 +8208 8355 0.5140 +8208 8356 0.9730 +8208 8357 0.5430 +8208 8358 0.6330 +8208 8361 0.9290 +8208 8362 0.4140 +8208 8364 0.4530 +8208 8366 0.4860 +8208 8368 0.5190 +8208 8369 0.6450 +8208 8438 0.4170 +8208 8520 0.4130 +8208 8624 0.4040 +8208 8968 0.5080 +8208 9055 0.4930 +8208 9134 0.4890 +8208 9156 0.6960 +8208 9212 0.4310 +8208 9401 0.5760 +8208 9493 0.4370 +8208 9585 0.4630 +8208 9735 0.4590 +8208 9787 0.4900 +8208 9833 0.4280 +8208 9837 0.4480 +8208 9869 0.4100 +8208 9918 0.4800 +8208 9994 0.4300 +8208 10036 0.9990 +8208 10051 0.4620 +8208 10112 0.5560 +8208 10434 0.5040 +8208 10615 0.5740 +8208 10635 0.4210 +8208 10951 0.7470 +8208 11004 0.5240 +8208 11065 0.4440 +8208 11169 0.5400 +8208 11198 0.4050 +8208 11313 0.5000 +8208 11335 0.7340 +8208 23468 0.9110 +8208 23476 0.5820 +8208 23515 0.6360 +8208 23594 0.4410 +8208 23649 0.5270 +8208 25842 0.9880 +8208 25936 0.4810 +8208 26586 0.4870 +8208 29028 0.5850 +8208 29128 0.5420 +8208 29980 0.6640 +8208 51053 0.6080 +8208 51141 0.7350 +8208 51203 0.4790 +8208 51514 0.6460 +8208 51659 0.6800 +8208 54069 0.4020 +8208 54443 0.4030 +8208 54478 0.4350 +8208 54962 0.5490 +8208 55143 0.5260 +8208 55148 0.4920 +8208 55355 0.5760 +8208 55388 0.5580 +8208 55723 0.9930 +8208 57405 0.4580 +8208 63922 0.6080 +8208 63967 0.5370 +8208 79075 0.6260 +8208 79682 0.4260 +8208 79915 0.5550 +8208 79968 0.5840 +8208 79980 0.4610 +8208 81620 0.7350 +8208 83461 0.4830 +8208 83540 0.4780 +8208 83879 0.4870 +8208 84271 0.4810 +8208 84296 0.6480 +8208 84321 0.4140 +8208 84942 0.8310 +8208 113130 0.4470 +8208 126961 0.6110 +8208 127018 0.5000 +8208 147841 0.4350 +8208 157313 0.4360 +8208 246175 0.5700 +8208 283431 0.4980 +8208 284403 0.4650 +8208 340096 0.4290 +8208 391769 0.4280 +8208 440093 0.7740 +8208 440686 0.7740 +8208 653604 0.7740 +8209 8220 0.9250 +8209 8661 0.4200 +8209 8663 0.4330 +8209 10241 0.7120 +8209 11218 0.4890 +8209 11315 0.6440 +8209 23512 0.4080 +8209 50628 0.4980 +8209 51379 0.5260 +8209 51571 0.4200 +8209 56896 0.4120 +8209 114882 0.4140 +8214 8829 0.4260 +8214 9993 0.8460 +8214 10765 0.4380 +8214 11274 0.4220 +8214 23617 0.4110 +8214 29801 0.6030 +8214 54584 0.6650 +8214 57628 0.4460 +8214 58510 0.4760 +8214 64976 0.5840 +8214 85376 0.4630 +8214 128989 0.4040 +8214 152330 0.4510 +8214 728229 0.4750 +8216 8405 0.9090 +8216 8452 0.9980 +8216 8507 0.9000 +8216 8735 0.4230 +8216 9342 0.7580 +8216 9759 0.7020 +8216 9817 0.9090 +8216 9903 0.9130 +8216 9978 0.9060 +8216 10016 0.7240 +8216 10324 0.9050 +8216 10454 0.6360 +8216 11146 0.7200 +8216 11253 0.4040 +8216 11275 0.7350 +8216 22808 0.7350 +8216 23053 0.9150 +8216 23113 0.4450 +8216 23510 0.6150 +8216 23759 0.4780 +8216 26249 0.9210 +8216 27229 0.4320 +8216 27252 0.9080 +8216 29801 0.4400 +8216 51586 0.4920 +8216 54442 0.5550 +8216 54800 0.7340 +8216 55958 0.9020 +8216 55975 0.9110 +8216 57132 0.4080 +8216 57542 0.9020 +8216 57563 0.9120 +8216 57731 0.4110 +8216 59349 0.9050 +8216 64410 0.9060 +8216 79734 0.9040 +8216 80198 0.5400 +8216 80764 0.6020 +8216 83594 0.4150 +8216 83892 0.7620 +8216 84078 0.9030 +8216 84541 0.9120 +8216 84861 0.9490 +8216 85376 0.4110 +8216 89890 0.9040 +8216 90293 0.9000 +8216 91179 0.4840 +8216 91289 0.4380 +8216 131377 0.7510 +8216 144568 0.6210 +8216 150209 0.7160 +8216 150221 0.4090 +8216 161742 0.4390 +8216 253980 0.9040 +8216 339745 0.9010 +8216 400891 0.4250 +8216 553115 0.7260 +8218 8220 0.7060 +8218 8301 0.9150 +8218 8322 0.5110 +8218 8349 0.4930 +8218 8411 0.7150 +8218 8546 0.4830 +8218 8673 0.6360 +8218 8675 0.4350 +8218 8723 0.5950 +8218 8761 0.4140 +8218 8766 0.6640 +8218 8867 0.9070 +8218 8871 0.6540 +8218 8905 0.6590 +8218 8906 0.7930 +8218 8907 0.7620 +8218 8925 0.6720 +8218 8943 0.4220 +8218 8976 0.5700 +8218 9026 0.7970 +8218 9146 0.6090 +8218 9179 0.5400 +8218 9276 0.7120 +8218 9341 0.6840 +8218 9342 0.4600 +8218 9475 0.4180 +8218 9559 0.4350 +8218 9601 0.4700 +8218 9685 0.9480 +8218 9829 0.9960 +8218 9892 0.9390 +8218 9919 0.6080 +8218 9993 0.7270 +8218 10006 0.4420 +8218 10040 0.7920 +8218 10043 0.4850 +8218 10053 0.7290 +8218 10059 0.5510 +8218 10188 0.5830 +8218 10211 0.5040 +8218 10228 0.4810 +8218 10383 0.4810 +8218 10460 0.8350 +8218 10490 0.5320 +8218 10579 0.5080 +8218 10617 0.4740 +8218 10618 0.5090 +8218 10717 0.7690 +8218 10947 0.4430 +8218 10971 0.5440 +8218 10979 0.4520 +8218 10981 0.4250 +8218 11276 0.6620 +8218 11311 0.4640 +8218 11316 0.4270 +8218 11336 0.6240 +8218 11337 0.5850 +8218 22820 0.4370 +8218 22848 0.7030 +8218 22905 0.9840 +8218 23062 0.8060 +8218 23149 0.7670 +8218 23163 0.6350 +8218 23265 0.5620 +8218 23299 0.4360 +8218 23339 0.4350 +8218 23431 0.4910 +8218 23433 0.4880 +8218 25977 0.7240 +8218 26052 0.5510 +8218 26060 0.5520 +8218 26088 0.6380 +8218 26119 0.6360 +8218 26130 0.6510 +8218 26985 0.5350 +8218 27072 0.5240 +8218 27131 0.5210 +8218 29924 0.9210 +8218 29978 0.5470 +8218 30846 0.9330 +8218 50618 0.8300 +8218 51429 0.4990 +8218 51454 0.5670 +8218 51512 0.4710 +8218 51699 0.4150 +8218 55040 0.9810 +8218 55054 0.8410 +8218 55707 0.6290 +8218 55737 0.5430 +8218 55738 0.4540 +8218 55823 0.4300 +8218 56479 0.5760 +8218 56731 0.4360 +8218 57617 0.4410 +8218 57728 0.7850 +8218 58513 0.8710 +8218 60412 0.6010 +8218 64083 0.5280 +8218 80007 0.4500 +8218 80115 0.5400 +8218 83988 0.5780 +8218 84174 0.5790 +8218 84251 0.6730 +8218 84557 0.4900 +8218 84790 0.4820 +8218 85021 0.5410 +8218 85439 0.4040 +8218 115548 0.7300 +8218 122616 0.5400 +8218 130340 0.6180 +8218 132320 0.4100 +8218 133482 0.5940 +8218 146691 0.4040 +8218 150350 0.7730 +8218 157769 0.4440 +8220 8449 0.5640 +8220 9343 0.4140 +8220 9647 0.4060 +8220 9785 0.4200 +8220 9993 0.9430 +8220 10399 0.5960 +8220 10450 0.4790 +8220 22806 0.4180 +8220 22938 0.6260 +8220 23265 0.4870 +8220 23512 0.7250 +8220 25949 0.6220 +8220 27037 0.4710 +8220 27339 0.7060 +8220 51340 0.4350 +8220 51586 0.4330 +8220 54822 0.4230 +8220 55100 0.4030 +8220 56652 0.4050 +8220 56949 0.5760 +8220 57461 0.5000 +8220 64976 0.5030 +8220 79165 0.6050 +8220 81576 0.4560 +8220 91603 0.4100 +8220 118924 0.8310 +8220 138046 0.4680 +8220 151613 0.7130 +8220 165721 0.4310 +8224 8497 0.5890 +8224 8499 0.6990 +8224 8500 0.6890 +8224 8541 0.7300 +8224 8573 0.5810 +8224 8825 0.5610 +8224 9066 0.4550 +8224 9256 0.5270 +8224 9378 0.5240 +8224 9379 0.4880 +8224 9456 0.4770 +8224 9513 0.5430 +8224 9722 0.7150 +8224 9804 0.5140 +8224 9900 0.6210 +8224 10243 0.6490 +8224 10381 0.5240 +8224 10497 0.7480 +8224 10763 0.4900 +8224 10815 0.7090 +8224 11252 0.4610 +8224 22871 0.5820 +8224 22987 0.4310 +8224 22999 0.8210 +8224 23025 0.4420 +8224 23085 0.5540 +8224 23191 0.4540 +8224 23557 0.5390 +8224 23621 0.5480 +8224 50618 0.5970 +8224 51806 0.6780 +8224 53635 0.5860 +8224 54212 0.6240 +8224 54413 0.4560 +8224 55188 0.8400 +8224 55327 0.5250 +8224 57030 0.8090 +8224 57084 0.5490 +8224 57502 0.4240 +8224 57555 0.4290 +8224 64130 0.5580 +8224 79033 0.7040 +8224 80331 0.4760 +8224 81857 0.6650 +8224 85358 0.4010 +8224 91683 0.4560 +8224 91860 0.7210 +8224 127833 0.5740 +8224 132204 0.4300 +8224 134957 0.7180 +8224 137902 0.5350 +8224 140679 0.7580 +8224 146059 0.5580 +8224 146713 0.6230 +8224 163688 0.6620 +8225 8227 0.7200 +8225 8565 0.4220 +8225 8623 0.7760 +8225 8721 0.5010 +8225 9092 0.4610 +8225 9189 0.6690 +8225 9349 0.9100 +8225 9399 0.4240 +8225 9553 0.9780 +8225 9669 0.4030 +8225 9801 0.9820 +8225 9945 0.5090 +8225 9993 0.4310 +8225 10251 0.4620 +8225 10473 0.6930 +8225 10573 0.8050 +8225 10730 0.4370 +8225 10884 0.8010 +8225 10939 0.4910 +8225 11222 0.9470 +8225 11224 0.9030 +8225 11331 0.4320 +8225 23252 0.4010 +8225 23395 0.4280 +8225 23521 0.7200 +8225 23560 0.8340 +8225 23640 0.5420 +8225 25920 0.5160 +8225 26164 0.7900 +8225 26284 0.6060 +8225 26589 0.8030 +8225 26995 0.5350 +8225 27037 0.4220 +8225 28227 0.7590 +8225 28955 0.4180 +8225 28977 0.8000 +8225 28998 0.9380 +8225 29074 0.8000 +8225 29083 0.6700 +8225 29088 0.8750 +8225 29093 0.9350 +8225 29789 0.5780 +8225 29960 0.6500 +8225 30968 0.4410 +8225 51069 0.9320 +8225 51073 0.9440 +8225 51081 0.4100 +8225 51121 0.6440 +8225 51154 0.5260 +8225 51166 0.4250 +8225 51250 0.4250 +8225 51253 0.8220 +8225 51258 0.8000 +8225 51263 0.8010 +8225 51264 0.9800 +8225 51318 0.8010 +8225 51520 0.4050 +8225 51642 0.8000 +8225 51654 0.4170 +8225 54059 0.6480 +8225 54148 0.8350 +8225 54516 0.4900 +8225 54534 0.8000 +8225 54802 0.7790 +8225 54901 0.4010 +8225 54948 0.9010 +8225 54987 0.7280 +8225 55052 0.9780 +8225 55168 0.8060 +8225 55178 0.6150 +8225 55344 0.7560 +8225 55739 0.4640 +8225 55794 0.7080 +8225 56952 0.4010 +8225 57129 0.8240 +8225 60558 0.4180 +8225 63875 0.9800 +8225 64110 0.4040 +8225 64118 0.4820 +8225 64374 0.5310 +8225 64928 0.8060 +8225 64975 0.8150 +8225 64976 0.8680 +8225 64978 0.8270 +8225 64979 0.9710 +8225 64981 0.8040 +8225 64983 0.9850 +8225 65003 0.9440 +8225 65005 0.9450 +8225 65008 0.5000 +8225 65080 0.8580 +8225 78988 0.8020 +8225 79590 0.9320 +8225 79922 0.5130 +8225 79979 0.4030 +8225 80231 0.4180 +8225 81554 0.4160 +8225 81570 0.4210 +8225 84273 0.5250 +8225 84311 0.8000 +8225 84340 0.5770 +8225 84545 0.8030 +8225 84705 0.4940 +8225 84881 0.4700 +8225 85476 0.4180 +8225 85865 0.7850 +8225 90316 0.4470 +8225 90480 0.8040 +8225 91574 0.5020 +8225 92170 0.7110 +8225 92399 0.6780 +8225 115416 0.9520 +8225 116540 0.8050 +8225 116541 0.8080 +8225 122704 0.8020 +8225 124995 0.8130 +8225 128308 0.8030 +8225 130916 0.6260 +8225 139599 0.4700 +8225 140801 0.5250 +8225 161003 0.4160 +8225 207063 0.6590 +8225 219927 0.9810 +8225 285367 0.4220 +8225 285855 0.5930 +8225 286530 0.5680 +8225 374659 0.4590 +8225 387129 0.5830 +8225 387338 0.6070 +8225 400736 0.5120 +8225 100505478 0.5830 +8225 100526842 0.6890 +8225 127898561 0.8000 +8226 8227 0.4110 +8226 8228 0.8720 +8226 8623 0.5870 +8226 8908 0.4560 +8226 9189 0.4410 +8226 9563 0.5850 +8226 9764 0.5750 +8226 9942 0.4830 +8226 9945 0.7060 +8226 10020 0.4130 +8226 22934 0.4450 +8226 23116 0.4130 +8226 23171 0.4290 +8226 51167 0.4650 +8226 51480 0.6650 +8226 51481 0.7200 +8226 54059 0.4420 +8226 54888 0.4020 +8226 54960 0.4140 +8226 55276 0.6670 +8226 55313 0.4970 +8226 55344 0.5220 +8226 55644 0.4970 +8226 55787 0.4190 +8226 56062 0.4250 +8226 56474 0.4740 +8226 57502 0.5180 +8226 58478 0.4320 +8226 64172 0.4850 +8226 64943 0.4240 +8226 66036 0.4250 +8226 79693 0.8450 +8226 80162 0.9140 +8226 83473 0.4200 +8226 84879 0.4300 +8226 89910 0.4190 +8226 90025 0.4500 +8226 94056 0.4170 +8226 121642 0.5780 +8226 126321 0.4300 +8226 127428 0.4160 +8226 130589 0.5110 +8226 137872 0.8100 +8226 140838 0.4700 +8226 150290 0.4060 +8226 207063 0.4500 +8226 283209 0.6580 +8226 286451 0.8880 +8226 388931 0.4300 +8226 403313 0.4760 +8226 425054 0.6050 +8227 8623 0.9100 +8227 8856 0.4390 +8227 8908 0.4250 +8227 8924 0.4060 +8227 9189 0.6210 +8227 9406 0.5350 +8227 9722 0.4260 +8227 10107 0.4360 +8227 10949 0.4580 +8227 23274 0.4350 +8227 23524 0.6530 +8227 25972 0.4570 +8227 26993 0.4810 +8227 27238 0.4300 +8227 28227 0.4410 +8227 51263 0.4680 +8227 55344 0.6370 +8227 55787 0.6030 +8227 57502 0.4180 +8227 57645 0.4700 +8227 57819 0.4700 +8227 79886 0.7030 +8227 89858 0.4440 +8227 89870 0.4700 +8227 115704 0.4820 +8227 207063 0.6940 +8227 344558 0.4610 +8228 8242 0.4400 +8228 8398 0.6010 +8228 8605 0.4460 +8228 8608 0.9010 +8228 8623 0.4700 +8228 8630 0.9000 +8228 8908 0.5750 +8228 9249 0.9010 +8228 9282 0.4610 +8228 10170 0.9000 +8228 10901 0.9150 +8228 10908 0.6950 +8228 23659 0.4710 +8228 26090 0.4270 +8228 50640 0.7240 +8228 50700 0.9150 +8228 51099 0.8240 +8228 51109 0.9100 +8228 51480 0.6410 +8228 51481 0.7000 +8228 54884 0.9140 +8228 54960 0.4490 +8228 55313 0.4560 +8228 55859 0.4020 +8228 56474 0.4730 +8228 56882 0.4570 +8228 57406 0.4720 +8228 57502 0.4350 +8228 63874 0.5680 +8228 145226 0.9110 +8228 157506 0.9010 +8228 170082 0.6060 +8228 195814 0.9010 +8228 207063 0.4690 +8228 339761 0.9000 +8228 425054 0.5800 +8233 8241 0.5530 +8233 8243 0.6580 +8233 8493 0.4200 +8233 9126 0.5720 +8233 10019 0.6020 +8233 10081 0.9470 +8233 10181 0.6930 +8233 10262 0.9330 +8233 10291 0.8860 +8233 10320 0.5130 +8233 10523 0.6340 +8233 10594 0.6140 +8233 10735 0.7940 +8233 10946 0.7930 +8233 10992 0.9690 +8233 11066 0.9650 +8233 11238 0.4440 +8233 11338 0.9920 +8233 22916 0.5810 +8233 23350 0.6530 +8233 23450 0.9570 +8233 23451 0.9890 +8233 23548 0.6270 +8233 25766 0.6460 +8233 26040 0.7780 +8233 27288 0.5810 +8233 29123 0.4870 +8233 51428 0.4850 +8233 51631 0.7840 +8233 51639 0.9630 +8233 51690 0.6340 +8233 54790 0.7740 +8233 55252 0.4050 +8233 55285 0.6560 +8233 55500 0.5920 +8233 55599 0.9890 +8233 55954 0.9460 +8233 63035 0.7010 +8233 80036 0.4300 +8233 83443 0.9310 +8233 84295 0.7840 +8233 84844 0.9730 +8233 84991 0.7400 +8233 85437 0.8860 +8233 90324 0.7130 +8233 91603 0.4330 +8233 94056 0.4020 +8233 117178 0.4220 +8233 118924 0.4080 +8233 139804 0.5810 +8233 154007 0.9710 +8233 171023 0.8240 +8233 199746 0.7040 +8233 100996928 0.5440 +8233 101669762 0.5970 +8237 8241 0.4120 +8237 8452 0.4110 +8237 8480 0.5040 +8237 8841 0.4170 +8237 8975 0.6370 +8237 9025 0.4580 +8237 9097 0.4160 +8237 9134 0.4300 +8237 9320 0.4390 +8237 9338 0.8370 +8237 9686 0.6680 +8237 9733 0.4230 +8237 9924 0.4390 +8237 9929 0.5500 +8237 9958 0.7450 +8237 9960 0.5950 +8237 10048 0.6020 +8237 10075 0.4320 +8237 10208 0.4340 +8237 10213 0.5320 +8237 10238 0.4210 +8237 10381 0.5370 +8237 10528 0.4280 +8237 10574 0.5370 +8237 10575 0.5320 +8237 10576 0.6550 +8237 10617 0.4560 +8237 10693 0.5240 +8237 10694 0.6360 +8237 10869 0.4990 +8237 10987 0.5780 +8237 11124 0.4250 +8237 11222 0.4190 +8237 11328 0.4220 +8237 22803 0.4340 +8237 22948 0.6540 +8237 23252 0.4260 +8237 23313 0.4200 +8237 23326 0.4230 +8237 23466 0.5870 +8237 23774 0.4340 +8237 25885 0.5370 +8237 26190 0.4130 +8237 26224 0.4110 +8237 26234 0.4160 +8237 26272 0.4130 +8237 26330 0.4070 +8237 27154 0.4250 +8237 29128 0.4230 +8237 29761 0.5570 +8237 51377 0.6070 +8237 51533 0.6340 +8237 51633 0.4640 +8237 54531 0.4330 +8237 54764 0.4010 +8237 55135 0.7750 +8237 55294 0.5070 +8237 55593 0.7160 +8237 55611 0.6020 +8237 55793 0.4080 +8237 56957 0.4930 +8237 57558 0.4040 +8237 57559 0.4170 +8237 57599 0.5580 +8237 57646 0.6130 +8237 63971 0.4100 +8237 64795 0.4240 +8237 64965 0.4320 +8237 65003 0.4140 +8237 78990 0.4330 +8237 79184 0.5540 +8237 79665 0.5290 +8237 79728 0.5560 +8237 79921 0.6720 +8237 80124 0.4430 +8237 81545 0.4980 +8237 83734 0.4420 +8237 83752 0.4040 +8237 83932 0.5570 +8237 84172 0.4750 +8237 84749 0.5340 +8237 84926 0.5020 +8237 85313 0.5180 +8237 90268 0.4140 +8237 92521 0.4370 +8237 112752 0.6040 +8237 114803 0.6030 +8237 116254 0.4220 +8237 126119 0.4980 +8237 140597 0.7580 +8237 142940 0.6270 +8237 159195 0.4450 +8237 161725 0.4860 +8237 165918 0.4660 +8237 200845 0.4590 +8237 219927 0.4170 +8237 220213 0.5320 +8237 221302 0.8580 +8239 8242 0.7510 +8239 8284 0.6750 +8239 8312 0.7430 +8239 8454 0.4250 +8239 8653 0.6350 +8239 8826 0.4160 +8239 8856 0.5090 +8239 8878 0.4040 +8239 8908 0.4070 +8239 8915 0.6750 +8239 8945 0.4960 +8239 8975 0.6710 +8239 9097 0.4650 +8239 9098 0.5040 +8239 9113 0.5010 +8239 9181 0.4900 +8239 9212 0.5270 +8239 9246 0.5640 +8239 9282 0.4750 +8239 9320 0.7490 +8239 9401 0.5100 +8239 9531 0.6570 +8239 9657 0.6690 +8239 9698 0.6680 +8239 9736 0.7930 +8239 9784 0.4360 +8239 9891 0.8910 +8239 9929 0.5350 +8239 10013 0.5770 +8239 10075 0.9080 +8239 10213 0.4630 +8239 10277 0.4730 +8239 10413 0.7060 +8239 10514 0.4610 +8239 10542 0.4300 +8239 10565 0.4950 +8239 10617 0.4890 +8239 10687 0.4390 +8239 10987 0.4970 +8239 11059 0.8450 +8239 11060 0.7330 +8239 11065 0.4450 +8239 22905 0.4040 +8239 22980 0.4640 +8239 22994 0.4990 +8239 23089 0.5560 +8239 23170 0.4210 +8239 23191 0.4710 +8239 23244 0.4230 +8239 23252 0.4590 +8239 23286 0.4700 +8239 23352 0.4980 +8239 23358 0.4060 +8239 25814 0.4740 +8239 25831 0.6100 +8239 25836 0.4840 +8239 26043 0.5720 +8239 26057 0.5690 +8239 26524 0.6810 +8239 27246 0.4420 +8239 27288 0.4810 +8239 27316 0.5540 +8239 27328 0.4950 +8239 29126 0.6160 +8239 29924 0.4370 +8239 29978 0.4450 +8239 29979 0.4120 +8239 51127 0.4880 +8239 51132 0.4150 +8239 51185 0.4070 +8239 51322 0.4050 +8239 51366 0.6030 +8239 51377 0.6770 +8239 51421 0.7050 +8239 51569 0.4030 +8239 51592 0.4180 +8239 51633 0.4020 +8239 51634 0.4050 +8239 54469 0.5990 +8239 54542 0.4090 +8239 54726 0.7570 +8239 54764 0.4090 +8239 54776 0.4080 +8239 55031 0.5260 +8239 55294 0.6310 +8239 55593 0.5070 +8239 55611 0.5570 +8239 55670 0.6490 +8239 55787 0.5930 +8239 56957 0.5030 +8239 57154 0.7540 +8239 57448 0.4670 +8239 57502 0.5250 +8239 57532 0.4480 +8239 57534 0.5920 +8239 57599 0.4020 +8239 57663 0.4920 +8239 57695 0.4860 +8239 57761 0.4850 +8239 57787 0.8550 +8239 58480 0.5650 +8239 63967 0.5520 +8239 64219 0.4320 +8239 64844 0.6850 +8239 78990 0.4150 +8239 79868 0.4290 +8239 79923 0.5750 +8239 80124 0.4710 +8239 83259 0.4570 +8239 83737 0.8040 +8239 83844 0.4420 +8239 84669 0.4900 +8239 84749 0.4910 +8239 84936 0.4240 +8239 84955 0.6220 +8239 84993 0.4680 +8239 85451 0.5810 +8239 90665 0.4560 +8239 90850 0.6130 +8239 92552 0.4010 +8239 114803 0.4290 +8239 126119 0.4330 +8239 144165 0.4640 +8239 154796 0.7810 +8239 166336 0.4790 +8239 171177 0.5640 +8239 220213 0.4260 +8239 221120 0.6330 +8239 221302 0.7470 +8239 253260 0.5770 +8239 253461 0.4370 +8241 8289 0.5640 +8241 8340 0.4680 +8241 8341 0.4700 +8241 8342 0.4700 +8241 8345 0.4740 +8241 8347 0.4690 +8241 8348 0.4930 +8241 8361 0.5230 +8241 8449 0.4730 +8241 8570 0.5880 +8241 8602 0.5210 +8241 8650 0.7150 +8241 8683 0.5770 +8241 8880 0.6160 +8241 8970 0.4890 +8241 9100 0.4560 +8241 9129 0.4430 +8241 9253 0.7160 +8241 9295 0.5420 +8241 9416 0.5430 +8241 9444 0.4300 +8241 9584 0.5800 +8241 9656 0.4390 +8241 9775 0.4040 +8241 9785 0.9950 +8241 9817 0.4890 +8241 9967 0.4040 +8241 9968 0.4080 +8241 9987 0.5980 +8241 10075 0.5340 +8241 10137 0.4530 +8241 10236 0.5310 +8241 10262 0.7990 +8241 10291 0.8580 +8241 10432 0.4220 +8241 10521 0.5230 +8241 10523 0.4090 +8241 10657 0.5920 +8241 10772 0.5890 +8241 10929 0.4790 +8241 10946 0.4770 +8241 10992 0.4850 +8241 11052 0.4260 +8241 11103 0.5120 +8241 11338 0.9970 +8241 22827 0.4650 +8241 22916 0.6420 +8241 23223 0.4350 +8241 23350 0.8010 +8241 23451 0.5940 +8241 24144 0.6340 +8241 26156 0.5030 +8241 27042 0.5250 +8241 27238 0.9960 +8241 27316 0.6940 +8241 27339 0.8200 +8241 29072 0.4700 +8241 51428 0.4640 +8241 51586 0.4660 +8241 51593 0.5660 +8241 51747 0.6790 +8241 54033 0.5930 +8241 54145 0.4890 +8241 54623 0.4090 +8241 54865 0.4830 +8241 54984 0.4520 +8241 55272 0.5280 +8241 55294 0.4250 +8241 55749 0.7430 +8241 55813 0.5580 +8241 56850 0.5610 +8241 57050 0.5350 +8241 57794 0.9960 +8241 57805 0.4160 +8241 58155 0.8020 +8241 58517 0.7050 +8241 64434 0.5240 +8241 65083 0.5380 +8241 79058 0.5700 +8241 79869 0.4240 +8241 84231 0.4100 +8241 84844 0.4220 +8241 84991 0.6640 +8241 85236 0.4680 +8241 88745 0.5240 +8241 92906 0.4160 +8241 114803 0.7760 +8241 124245 0.4920 +8241 128312 0.4890 +8241 135295 0.4630 +8241 140890 0.5050 +8241 143884 0.5310 +8241 158983 0.4700 +8241 220988 0.5220 +8241 255626 0.4690 +8241 286436 0.4700 +8241 389677 0.5610 +8241 440689 0.5050 +8241 493860 0.4220 +8241 114483833 0.4890 +8242 8243 0.7400 +8242 8284 0.4460 +8242 8287 0.7220 +8242 8289 0.5610 +8242 8290 0.6910 +8242 8295 0.4260 +8242 8314 0.5100 +8242 8337 0.4100 +8242 8338 0.4090 +8242 8356 0.8060 +8242 8653 0.6990 +8242 8726 0.4280 +8242 8802 0.4780 +8242 8815 0.4610 +8242 8932 0.4560 +8242 9070 0.5310 +8242 9086 0.5320 +8242 9282 0.4910 +8242 9296 0.4820 +8242 9343 0.4610 +8242 9349 0.4970 +8242 9533 0.4790 +8242 9551 0.4600 +8242 9556 0.5960 +8242 9592 0.4150 +8242 9611 0.4980 +8242 9640 0.7120 +8242 9669 0.4440 +8242 9682 0.4320 +8242 9739 0.5840 +8242 9757 0.5970 +8242 9869 0.5490 +8242 9938 0.4080 +8242 9968 0.6660 +8242 10013 0.4950 +8242 10075 0.5040 +8242 10102 0.4630 +8242 10106 0.4370 +8242 10217 0.4580 +8242 10473 0.4040 +8242 10476 0.7560 +8242 10498 0.4680 +8242 10632 0.5850 +8242 10743 0.4810 +8242 10865 0.6960 +8242 10919 0.9900 +8242 10933 0.4870 +8242 11075 0.4190 +8242 11128 0.4960 +8242 11141 0.6370 +8242 11222 0.4220 +8242 11224 0.5010 +8242 11335 0.6610 +8242 22866 0.5140 +8242 22984 0.4920 +8242 22992 0.6520 +8242 23019 0.5510 +8242 23028 0.6550 +8242 23030 0.4550 +8242 23067 0.5170 +8242 23096 0.7880 +8242 23133 0.7130 +8242 23135 0.6440 +8242 23186 0.7270 +8242 23210 0.4560 +8242 23269 0.6110 +8242 23309 0.4150 +8242 23476 0.5990 +8242 23512 0.4770 +8242 23613 0.8870 +8242 23640 0.4310 +8242 25885 0.4880 +8242 25942 0.6120 +8242 29072 0.8870 +8242 29093 0.4390 +8242 29927 0.4760 +8242 51069 0.4490 +8242 51081 0.4370 +8242 51132 0.4500 +8242 51154 0.4710 +8242 51412 0.5320 +8242 51780 0.7360 +8242 54948 0.4310 +8242 54960 0.4390 +8242 55028 0.4580 +8242 55173 0.4030 +8242 55176 0.4780 +8242 55193 0.8580 +8242 55205 0.5240 +8242 55272 0.4800 +8242 55274 0.4470 +8242 55316 0.4300 +8242 55506 0.4450 +8242 55703 0.4470 +8242 55787 0.5790 +8242 55818 0.6120 +8242 55869 0.4050 +8242 55870 0.5460 +8242 55904 0.4630 +8242 56474 0.5130 +8242 57477 0.4480 +8242 57492 0.4200 +8242 57502 0.5360 +8242 57592 0.6950 +8242 57634 0.5250 +8242 57680 0.4580 +8242 58190 0.4600 +8242 63875 0.4580 +8242 63931 0.4250 +8242 64061 0.7150 +8242 64324 0.6370 +8242 64374 0.4370 +8242 64754 0.5010 +8242 64963 0.4680 +8242 64969 0.4950 +8242 65008 0.4520 +8242 79178 0.6310 +8242 79631 0.4570 +8242 79723 0.4260 +8242 79728 0.4170 +8242 79813 0.5800 +8242 79831 0.4670 +8242 80853 0.5900 +8242 80854 0.4410 +8242 84108 0.5240 +8242 84159 0.6470 +8242 84172 0.4530 +8242 84295 0.4420 +8242 84444 0.4250 +8242 84678 0.6150 +8242 84833 0.6150 +8242 85476 0.4570 +8242 90665 0.4180 +8242 92399 0.4080 +8242 112398 0.4360 +8242 126402 0.4340 +8242 139081 0.5310 +8242 140801 0.4270 +8242 170082 0.5070 +8242 170302 0.5440 +8242 196528 0.4030 +8242 221037 0.4680 +8242 221656 0.5460 +8242 256380 0.4720 +8242 267020 0.5850 +8242 387893 0.4960 +8242 440093 0.6920 +8242 440686 0.6910 +8242 653604 0.9240 +8242 100526842 0.4350 +8243 8290 0.6920 +8243 8317 0.5140 +8243 8318 0.6410 +8243 8331 0.5380 +8243 8334 0.5770 +8243 8337 0.6020 +8243 8338 0.5910 +8243 8340 0.5420 +8243 8341 0.5420 +8243 8342 0.5460 +8243 8345 0.5420 +8243 8347 0.5420 +8243 8348 0.5830 +8243 8349 0.5880 +8243 8356 0.7290 +8243 8361 0.7040 +8243 8379 0.4350 +8243 8458 0.5050 +8243 8467 0.5440 +8243 8468 0.5080 +8243 8508 0.4340 +8243 8970 0.5490 +8243 8975 0.7570 +8243 9126 0.9990 +8243 9133 0.5760 +8243 9138 0.4160 +8243 9184 0.4820 +8243 9212 0.4610 +8243 9401 0.4030 +8243 9440 0.4650 +8243 9656 0.9200 +8243 9700 0.9750 +8243 9793 0.5040 +8243 9918 0.7620 +8243 9968 0.5320 +8243 9985 0.9960 +8243 10051 0.8100 +8243 10075 0.5520 +8243 10111 0.4210 +8243 10250 0.4760 +8243 10274 0.9990 +8243 10291 0.5670 +8243 10388 0.7710 +8243 10403 0.8410 +8243 10428 0.4620 +8243 10528 0.6010 +8243 10557 0.5360 +8243 10592 0.8740 +8243 10594 0.4190 +8243 10664 0.9630 +8243 10733 0.6060 +8243 10734 0.9990 +8243 10735 0.9990 +8243 10769 0.5800 +8243 10946 0.4010 +8243 10992 0.5660 +8243 11044 0.4730 +8243 11083 0.5580 +8243 11169 0.4930 +8243 11180 0.6170 +8243 11198 0.4370 +8243 11200 0.6750 +8243 22976 0.6340 +8243 23047 0.9970 +8243 23063 0.9930 +8243 23096 0.7410 +8243 23137 0.7370 +8243 23224 0.5610 +8243 23244 0.9980 +8243 23310 0.4410 +8243 23345 0.5750 +8243 23347 0.5420 +8243 23353 0.5870 +8243 23365 0.4030 +8243 23383 0.8830 +8243 23397 0.7480 +8243 23450 0.6080 +8243 23451 0.5240 +8243 23476 0.8550 +8243 23626 0.5160 +8243 23649 0.4660 +8243 25777 0.5730 +8243 25836 0.9990 +8243 25842 0.6360 +8243 25913 0.5320 +8243 26036 0.4600 +8243 26040 0.5660 +8243 26099 0.4340 +8243 26277 0.5340 +8243 27127 0.9480 +8243 27159 0.4690 +8243 29101 0.4320 +8243 29123 0.6070 +8243 29781 0.4690 +8243 50511 0.8730 +8243 51182 0.4350 +8243 51366 0.4510 +8243 51574 0.4110 +8243 54145 0.5420 +8243 54386 0.5250 +8243 54780 0.7060 +8243 54790 0.5510 +8243 54870 0.4400 +8243 54921 0.4630 +8243 55252 0.4020 +8243 55253 0.4420 +8243 55294 0.4940 +8243 55723 0.6590 +8243 55766 0.5380 +8243 55869 0.9130 +8243 56158 0.6240 +8243 56160 0.5350 +8243 56916 0.4040 +8243 57379 0.4400 +8243 57634 0.4300 +8243 57697 0.6330 +8243 63035 0.5890 +8243 63922 0.5850 +8243 64151 0.7550 +8243 64682 0.5090 +8243 64779 0.5970 +8243 79677 0.7590 +8243 80119 0.4320 +8243 84072 0.4320 +8243 84135 0.7310 +8243 84246 0.5330 +8243 84295 0.6390 +8243 84450 0.4280 +8243 84823 0.5120 +8243 85236 0.5420 +8243 92521 0.7340 +8243 93426 0.5910 +8243 94239 0.6020 +8243 112950 0.5890 +8243 113130 0.9730 +8243 113444 0.6180 +8243 114799 0.8580 +8243 126520 0.5800 +8243 128312 0.5420 +8243 140690 0.6500 +8243 150280 0.4050 +8243 151246 0.9240 +8243 151648 0.6330 +8243 157570 0.9200 +8243 158787 0.5340 +8243 171023 0.6130 +8243 197370 0.7210 +8243 254827 0.6490 +8243 255626 0.5420 +8243 256126 0.5770 +8243 266743 0.5910 +8243 286053 0.8290 +8243 440093 0.4100 +8243 440686 0.4100 +8243 474382 0.5380 +8243 493861 0.7000 +8243 642636 0.9960 +8243 644186 0.5910 +8243 653604 0.7180 +8260 8269 0.4720 +8260 8361 0.4550 +8260 8369 0.4490 +8260 8607 0.4360 +8260 8662 0.4010 +8260 8666 0.5940 +8260 8668 0.5740 +8260 8850 0.4430 +8260 8894 0.6590 +8260 9040 0.4400 +8260 9045 0.5510 +8260 9349 0.6210 +8260 9459 0.5070 +8260 9782 0.4310 +8260 10197 0.4350 +8260 10236 0.5350 +8260 10399 0.5840 +8260 10432 0.4710 +8260 10471 0.4690 +8260 10492 0.5630 +8260 10574 0.4410 +8260 10575 0.4680 +8260 10576 0.4850 +8260 10694 0.5370 +8260 10726 0.4670 +8260 10811 0.5910 +8260 11047 0.4100 +8260 11224 0.6000 +8260 22920 0.6060 +8260 22948 0.4550 +8260 23424 0.4010 +8260 23435 0.4080 +8260 23521 0.4690 +8260 24142 0.7770 +8260 25764 0.9990 +8260 25873 0.4420 +8260 25939 0.4350 +8260 26519 0.4080 +8260 27316 0.4740 +8260 28989 0.4800 +8260 51121 0.4100 +8260 51126 0.7340 +8260 54453 0.4630 +8260 55226 0.6060 +8260 55559 0.5570 +8260 55662 0.4130 +8260 55907 0.4890 +8260 57092 0.4140 +8260 57325 0.6260 +8260 60560 0.9760 +8260 63877 0.4380 +8260 64963 0.4790 +8260 65993 0.7840 +8260 79590 0.4940 +8260 79612 0.9990 +8260 79664 0.7630 +8260 79829 0.8110 +8260 79903 0.9480 +8260 80018 0.9200 +8260 80145 0.4200 +8260 80155 0.9990 +8260 80218 0.9990 +8260 84316 0.9380 +8260 84779 0.9350 +8260 92002 0.4050 +8260 92292 0.5060 +8260 113130 0.4600 +8260 114799 0.7940 +8260 115265 0.5910 +8260 122830 0.9500 +8260 157570 0.7920 +8260 254187 0.4990 +8260 340533 0.4030 +8263 9427 0.5460 +8263 79184 0.4950 +8263 83740 0.4340 +8263 474383 0.8030 +8263 474384 0.8010 +8266 8269 0.5180 +8266 8273 0.8800 +8266 8844 0.4340 +8266 8975 0.7910 +8266 9045 0.7010 +8266 9217 0.5720 +8266 9218 0.5170 +8266 9320 0.4900 +8266 9349 0.7150 +8266 9381 0.5250 +8266 9563 0.4170 +8266 9618 0.4420 +8266 9732 0.4960 +8266 9739 0.4570 +8266 10075 0.6680 +8266 10084 0.4400 +8266 10134 0.4510 +8266 10197 0.4070 +8266 10213 0.6870 +8266 10236 0.4020 +8266 10299 0.4300 +8266 10399 0.6490 +8266 10952 0.7360 +8266 11047 0.6080 +8266 11124 0.4230 +8266 11218 0.4010 +8266 11224 0.6300 +8266 22992 0.5280 +8266 23067 0.4530 +8266 23197 0.9260 +8266 23204 0.4020 +8266 23480 0.5720 +8266 23521 0.6600 +8266 23640 0.4660 +8266 23780 0.4280 +8266 25793 0.4550 +8266 25873 0.7420 +8266 25929 0.4160 +8266 26579 0.5960 +8266 27230 0.6400 +8266 28998 0.4520 +8266 29927 0.4970 +8266 29979 0.4810 +8266 51035 0.4220 +8266 51065 0.5840 +8266 51069 0.4670 +8266 51081 0.5030 +8266 51121 0.5270 +8266 51149 0.4860 +8266 51154 0.4290 +8266 51319 0.4910 +8266 51608 0.9990 +8266 54557 0.7910 +8266 55173 0.4460 +8266 55272 0.4620 +8266 55316 0.5810 +8266 55432 0.4350 +8266 55611 0.5370 +8266 55626 0.4160 +8266 55658 0.8250 +8266 55666 0.7900 +8266 55768 0.4480 +8266 56154 0.6200 +8266 56943 0.4590 +8266 57794 0.4190 +8266 58477 0.7340 +8266 63931 0.4710 +8266 64963 0.5080 +8266 64969 0.4210 +8266 65008 0.4050 +8266 79084 0.4100 +8266 79590 0.4510 +8266 80199 0.5780 +8266 83473 0.4630 +8266 83732 0.5100 +8266 84196 0.4300 +8266 84231 0.5720 +8266 84301 0.5470 +8266 84447 0.5910 +8266 84678 0.5250 +8266 84993 0.4880 +8266 114987 0.5210 +8266 116832 0.5390 +8266 117283 0.4240 +8266 118424 0.6100 +8266 121506 0.4540 +8266 126402 0.4990 +8266 140032 0.5300 +8266 140801 0.5880 +8266 164153 0.6350 +8266 197131 0.4470 +8266 200916 0.4990 +8266 221302 0.5230 +8266 254268 0.4780 +8266 285855 0.4730 +8266 347487 0.4870 +8266 387129 0.4700 +8266 388662 0.5470 +8266 645051 0.4030 +8266 645073 0.4030 +8266 729396 0.4030 +8266 729422 0.4030 +8266 729428 0.4030 +8266 729431 0.4030 +8266 729442 0.4030 +8266 729447 0.4030 +8266 100008586 0.4030 +8266 100132399 0.4030 +8266 100526842 0.4890 +8266 100529097 0.5050 +8266 100529239 0.5090 +8266 102724473 0.4030 +8269 8270 0.9460 +8269 8852 0.5400 +8269 51027 0.5170 +8269 54552 0.4800 +8269 58517 0.4990 +8269 64172 0.4340 +8269 79873 0.4470 +8269 80231 0.5330 +8270 8453 0.4470 +8270 23532 0.4710 +8270 29902 0.5030 +8270 30848 0.4450 +8270 51002 0.9990 +8270 55644 0.9990 +8270 64172 0.9020 +8270 79140 0.4150 +8270 79693 0.8470 +8270 84336 0.4490 +8270 84520 0.9990 +8270 84942 0.6280 +8270 112858 0.9990 +8270 123688 0.5510 +8270 133482 0.4320 +8270 348995 0.7880 +8273 64083 0.6020 +8273 84068 0.7550 +8273 147007 0.4770 +8273 201780 0.4140 +8277 8565 0.5580 +8277 8789 0.9760 +8277 8802 0.4220 +8277 9380 0.4240 +8277 9562 0.8010 +8277 9563 0.9390 +8277 9942 0.8900 +8277 10560 0.5190 +8277 10587 0.5060 +8277 10768 0.4120 +8277 10797 0.4540 +8277 10873 0.4180 +8277 10994 0.4420 +8277 11181 0.4600 +8277 11284 0.5240 +8277 22934 0.9930 +8277 23135 0.4140 +8277 23382 0.4210 +8277 25796 0.7090 +8277 26007 0.4710 +8277 26061 0.5360 +8277 26330 0.9420 +8277 27010 0.9430 +8277 27068 0.4310 +8277 51071 0.9550 +8277 51074 0.4920 +8277 51292 0.4280 +8277 54870 0.4280 +8277 54995 0.4670 +8277 55152 0.4280 +8277 55276 0.9410 +8277 55753 0.4460 +8277 55902 0.4830 +8277 56159 0.4440 +8277 56965 0.4240 +8277 57103 0.5070 +8277 57469 0.6560 +8277 57818 0.8430 +8277 64080 0.9590 +8277 65220 0.4440 +8277 79631 0.4400 +8277 79668 0.4240 +8277 79692 0.4870 +8277 80201 0.8390 +8277 80273 0.5260 +8277 80704 0.5000 +8277 83440 0.8060 +8277 84076 0.9020 +8277 84532 0.4680 +8277 87178 0.4150 +8277 92483 0.9010 +8277 92579 0.8470 +8277 114112 0.4980 +8277 129831 0.7240 +8277 130589 0.4400 +8277 134266 0.5040 +8277 137362 0.4120 +8277 160287 0.9030 +8277 221823 0.9530 +8277 283677 0.5240 +8277 286451 0.4570 +8277 387712 0.8910 +8277 400745 0.5280 +8277 414328 0.5190 +8277 441531 0.8620 +8277 729020 0.9940 +8284 8287 0.9990 +8284 8290 0.6840 +8284 8356 0.7320 +8284 8653 0.9990 +8284 8802 0.4770 +8284 8856 0.6540 +8284 9081 0.4480 +8284 9083 0.5700 +8284 9084 0.5070 +8284 9085 0.5510 +8284 9086 0.9990 +8284 9087 0.9460 +8284 9296 0.4780 +8284 9343 0.4460 +8284 9349 0.4950 +8284 9533 0.4750 +8284 9551 0.4580 +8284 9556 0.5980 +8284 9739 0.5540 +8284 10102 0.4620 +8284 10476 0.7560 +8284 10632 0.5860 +8284 10919 0.5630 +8284 11128 0.4740 +8284 11222 0.4200 +8284 11224 0.4990 +8284 22829 0.8730 +8284 22984 0.4740 +8284 22992 0.4520 +8284 23028 0.5930 +8284 23067 0.5120 +8284 23133 0.4310 +8284 23135 0.4770 +8284 23560 0.4200 +8284 23640 0.4270 +8284 25885 0.4740 +8284 29072 0.5070 +8284 29093 0.4350 +8284 29927 0.4610 +8284 51069 0.4330 +8284 51081 0.4330 +8284 51154 0.4690 +8284 51780 0.4290 +8284 54514 0.5570 +8284 54816 0.4400 +8284 54948 0.4280 +8284 55028 0.4580 +8284 55176 0.4610 +8284 55272 0.4750 +8284 55316 0.4180 +8284 55703 0.4420 +8284 55787 0.4480 +8284 55818 0.4300 +8284 55870 0.4110 +8284 57054 0.4090 +8284 57055 0.4560 +8284 63875 0.4500 +8284 63931 0.4180 +8284 64374 0.4270 +8284 64963 0.4630 +8284 64969 0.4910 +8284 65008 0.4610 +8284 79631 0.4460 +8284 79831 0.4290 +8284 80853 0.4300 +8284 83259 0.5670 +8284 84108 0.8900 +8284 84172 0.4420 +8284 84678 0.4950 +8284 84833 0.6140 +8284 85476 0.4610 +8284 86614 0.5960 +8284 90665 0.6310 +8284 126402 0.4330 +8284 140032 0.9160 +8284 140801 0.4270 +8284 159163 0.6700 +8284 221656 0.4770 +8284 255308 0.4050 +8284 267020 0.5850 +8284 284004 0.6080 +8284 353513 0.5070 +8284 378948 0.4250 +8284 378949 0.5060 +8284 440093 0.5720 +8284 440686 0.5720 +8284 442862 0.4180 +8284 442867 0.5410 +8284 442868 0.5410 +8284 653604 0.7320 +8284 100526842 0.4350 +8287 8653 0.9990 +8287 8856 0.6220 +8287 8908 0.4710 +8287 9081 0.7800 +8287 9083 0.8210 +8287 9084 0.5810 +8287 9085 0.7890 +8287 9086 0.9990 +8287 9087 0.9520 +8287 9320 0.4410 +8287 22829 0.9410 +8287 27288 0.5320 +8287 27316 0.4870 +8287 27328 0.5110 +8287 51634 0.4630 +8287 55787 0.5770 +8287 57054 0.7580 +8287 57055 0.7800 +8287 57135 0.6830 +8287 80124 0.4240 +8287 83259 0.7290 +8287 83844 0.4500 +8287 84225 0.4160 +8287 86614 0.6920 +8287 90655 0.4480 +8287 90665 0.9210 +8287 140032 0.9090 +8287 159119 0.4470 +8287 159163 0.7810 +8287 253175 0.4710 +8287 353513 0.5810 +8287 378948 0.4160 +8287 378949 0.7270 +8287 442862 0.7860 +8287 442867 0.8400 +8287 442868 0.8400 +8287 728132 0.4140 +8287 728395 0.4200 +8288 10344 0.5790 +8288 10394 0.7690 +8288 11251 0.4420 +8288 27181 0.5850 +8288 65062 0.5930 +8288 85480 0.4880 +8288 90480 0.7170 +8288 90865 0.4590 +8288 117194 0.6420 +8289 8294 0.8000 +8289 8295 0.5080 +8289 8312 0.5290 +8289 8314 0.4270 +8289 8348 0.8330 +8289 8356 0.6440 +8289 8359 0.8000 +8289 8360 0.8020 +8289 8361 0.9540 +8289 8362 0.8030 +8289 8363 0.8000 +8289 8364 0.8030 +8289 8366 0.8000 +8289 8367 0.8080 +8289 8368 0.8000 +8289 8370 0.8000 +8289 8467 0.6730 +8289 8648 0.6440 +8289 8815 0.7340 +8289 8861 0.4830 +8289 8880 0.4260 +8289 9031 0.7130 +8289 9079 0.4750 +8289 9274 0.9950 +8289 9275 0.9920 +8289 9437 0.7200 +8289 9611 0.6640 +8289 9612 0.5720 +8289 9656 0.5510 +8289 9688 0.4040 +8289 9734 0.5410 +8289 9757 0.4840 +8289 9817 0.4540 +8289 9965 0.4180 +8289 9968 0.5270 +8289 10155 0.4760 +8289 10399 0.4080 +8289 10413 0.4920 +8289 10419 0.5810 +8289 10498 0.4520 +8289 10499 0.5160 +8289 10664 0.6460 +8289 10735 0.5560 +8289 10847 0.4600 +8289 11060 0.4890 +8289 11177 0.5590 +8289 11198 0.4110 +8289 11200 0.4330 +8289 22992 0.4970 +8289 23013 0.5070 +8289 23047 0.4220 +8289 23054 0.4220 +8289 23248 0.4580 +8289 23345 0.5090 +8289 23394 0.7540 +8289 23476 0.8180 +8289 23506 0.9520 +8289 25865 0.4560 +8289 25942 0.4970 +8289 26039 0.8870 +8289 27445 0.4260 +8289 29072 0.6950 +8289 29117 0.9720 +8289 29126 0.5830 +8289 29998 0.9800 +8289 51188 0.6140 +8289 51412 0.9780 +8289 51755 0.5220 +8289 51780 0.7620 +8289 53335 0.9750 +8289 53353 0.5840 +8289 54790 0.4700 +8289 54815 0.4740 +8289 54894 0.6370 +8289 55031 0.4180 +8289 55193 0.9990 +8289 55274 0.9910 +8289 55294 0.6430 +8289 55352 0.4990 +8289 55636 0.5310 +8289 55660 0.4020 +8289 55818 0.7380 +8289 56156 0.6100 +8289 57492 0.9990 +8289 57509 0.4270 +8289 57634 0.5990 +8289 57680 0.5930 +8289 58508 0.8230 +8289 64324 0.4990 +8289 64919 0.9440 +8289 65980 0.9960 +8289 79084 0.5460 +8289 79633 0.6250 +8289 79728 0.5130 +8289 79885 0.4310 +8289 80816 0.4060 +8289 84159 0.6910 +8289 84181 0.6080 +8289 84433 0.4390 +8289 90780 0.4600 +8289 94025 0.5400 +8289 114788 0.5720 +8289 114803 0.4360 +8289 120114 0.4130 +8289 121504 0.8050 +8289 135112 0.4140 +8289 139285 0.5440 +8289 140733 0.4440 +8289 142678 0.6700 +8289 171023 0.6510 +8289 196528 0.9980 +8289 255877 0.5070 +8289 317772 0.8050 +8289 554313 0.8000 +8289 653604 0.6290 +8289 728378 0.6730 +8289 100271849 0.4340 +8290 8294 0.9370 +8290 8295 0.7590 +8290 8314 0.6330 +8290 8317 0.4250 +8290 8318 0.4770 +8290 8320 0.4710 +8290 8329 0.4790 +8290 8331 0.6860 +8290 8334 0.6420 +8290 8335 0.9300 +8290 8336 0.4540 +8290 8337 0.9990 +8290 8338 0.9990 +8290 8339 0.4290 +8290 8340 0.9400 +8290 8341 0.9430 +8290 8342 0.9450 +8290 8343 0.4370 +8290 8344 0.4280 +8290 8345 0.9440 +8290 8346 0.4590 +8290 8347 0.9320 +8290 8348 0.9390 +8290 8349 0.9990 +8290 8350 0.8940 +8290 8351 0.8060 +8290 8352 0.8200 +8290 8353 0.8790 +8290 8354 0.8870 +8290 8355 0.8880 +8290 8356 0.9270 +8290 8357 0.8800 +8290 8358 0.8820 +8290 8359 0.9340 +8290 8360 0.9380 +8290 8361 0.9990 +8290 8362 0.9340 +8290 8363 0.9350 +8290 8364 0.9330 +8290 8366 0.9380 +8290 8367 0.9370 +8290 8368 0.9400 +8290 8369 0.9990 +8290 8370 0.9370 +8290 8451 0.4320 +8290 8467 0.8880 +8290 8468 0.6120 +8290 8520 0.9730 +8290 8535 0.7370 +8290 8549 0.4980 +8290 8607 0.7730 +8290 8678 0.4230 +8290 8726 0.9560 +8290 8805 0.8090 +8290 8815 0.9550 +8290 8841 0.7870 +8290 8850 0.9960 +8290 8877 0.5240 +8290 8900 0.8150 +8290 8924 0.6810 +8290 8932 0.4690 +8290 8968 0.8830 +8290 8970 0.9860 +8290 8971 0.4290 +8290 8988 0.5580 +8290 9025 0.7070 +8290 9031 0.6870 +8290 9070 0.9660 +8290 9085 0.8610 +8290 9112 0.5920 +8290 9126 0.7670 +8290 9156 0.4410 +8290 9184 0.5280 +8290 9203 0.4350 +8290 9212 0.9740 +8290 9219 0.6200 +8290 9232 0.4330 +8290 9252 0.9590 +8290 9271 0.5480 +8290 9314 0.5400 +8290 9391 0.4180 +8290 9401 0.4550 +8290 9425 0.5200 +8290 9451 0.4340 +8290 9513 0.4950 +8290 9533 0.4090 +8290 9555 0.6980 +8290 9611 0.7140 +8290 9612 0.6990 +8290 9646 0.5510 +8290 9656 0.7240 +8290 9682 0.9980 +8290 9700 0.5010 +8290 9730 0.6480 +8290 9734 0.6410 +8290 9739 0.9170 +8290 9757 0.5000 +8290 9759 0.6730 +8290 9775 0.6640 +8290 9810 0.6430 +8290 9866 0.9180 +8290 9869 0.9820 +8290 9874 0.7220 +8290 9985 0.6770 +8290 10013 0.6830 +8290 10014 0.8070 +8290 10018 0.4360 +8290 10036 0.7290 +8290 10038 0.5570 +8290 10051 0.6930 +8290 10111 0.6700 +8290 10155 0.6720 +8290 10196 0.4420 +8290 10209 0.5050 +8290 10215 0.4040 +8290 10273 0.5550 +8290 10274 0.6720 +8290 10362 0.5480 +8290 10363 0.4170 +8290 10388 0.6620 +8290 10403 0.5780 +8290 10413 0.4160 +8290 10419 0.7020 +8290 10450 0.9230 +8290 10474 0.4990 +8290 10498 0.7790 +8290 10499 0.4910 +8290 10524 0.9670 +8290 10592 0.6290 +8290 10664 0.7000 +8290 10716 0.4270 +8290 10734 0.6030 +8290 10735 0.6520 +8290 10744 0.4830 +8290 10763 0.5210 +8290 10765 0.7040 +8290 10771 0.7450 +8290 10847 0.4250 +8290 10856 0.5940 +8290 10891 0.4750 +8290 10919 0.9960 +8290 10927 0.9590 +8290 10933 0.8330 +8290 10943 0.4830 +8290 10951 0.9980 +8290 10992 0.4910 +8290 11004 0.6040 +8290 11011 0.5490 +8290 11083 0.9800 +8290 11091 0.9990 +8290 11143 0.6420 +8290 11144 0.5780 +8290 11168 0.6700 +8290 11169 0.4080 +8290 11177 0.5920 +8290 11198 0.8690 +8290 11200 0.8220 +8290 11201 0.5050 +8290 11240 0.6840 +8290 11266 0.5040 +8290 11335 0.9990 +8290 11338 0.5510 +8290 22823 0.6550 +8290 22893 0.4090 +8290 22933 0.8630 +8290 22976 0.8460 +8290 22992 0.7550 +8290 23028 0.9370 +8290 23030 0.7710 +8290 23054 0.6680 +8290 23067 0.8480 +8290 23081 0.6120 +8290 23133 0.9270 +8290 23135 0.9280 +8290 23168 0.5960 +8290 23186 0.9360 +8290 23210 0.5670 +8290 23244 0.6430 +8290 23286 0.4870 +8290 23310 0.6650 +8290 23326 0.4050 +8290 23361 0.4170 +8290 23367 0.5010 +8290 23378 0.4810 +8290 23405 0.5660 +8290 23408 0.9480 +8290 23409 0.4750 +8290 23410 0.9500 +8290 23411 0.8360 +8290 23429 0.4200 +8290 23466 0.9830 +8290 23468 0.9990 +8290 23469 0.4230 +8290 23476 0.9910 +8290 23492 0.9820 +8290 23512 0.9250 +8290 23515 0.9190 +8290 23522 0.9820 +8290 23569 0.9050 +8290 23595 0.5760 +8290 23613 0.6010 +8290 23626 0.7650 +8290 23774 0.8270 +8290 25842 0.9970 +8290 25913 0.5360 +8290 25942 0.5780 +8290 26009 0.9150 +8290 26038 0.4710 +8290 26108 0.9810 +8290 26147 0.9640 +8290 26227 0.5010 +8290 26277 0.6410 +8290 26523 0.4300 +8290 27030 0.5500 +8290 27127 0.6170 +8290 27161 0.4290 +8290 27443 0.4480 +8290 29028 0.5250 +8290 29072 0.9870 +8290 29102 0.4350 +8290 29117 0.6020 +8290 29128 0.9970 +8290 29781 0.5890 +8290 29893 0.4080 +8290 29947 0.9980 +8290 30827 0.7690 +8290 50511 0.7050 +8290 51111 0.4460 +8290 51147 0.9860 +8290 51176 0.6900 +8290 51230 0.5450 +8290 51317 0.8870 +8290 51412 0.4690 +8290 51460 0.4710 +8290 51533 0.6750 +8290 51547 0.5700 +8290 51548 0.6570 +8290 51564 0.5870 +8290 51588 0.6360 +8290 51592 0.9720 +8290 51710 0.4210 +8290 51720 0.6370 +8290 51742 0.5860 +8290 51780 0.5640 +8290 51806 0.4480 +8290 54069 0.4070 +8290 54107 0.4260 +8290 54145 0.9420 +8290 54205 0.4850 +8290 54386 0.5440 +8290 54496 0.4520 +8290 54556 0.9400 +8290 54583 0.7240 +8290 54623 0.4250 +8290 54737 0.9800 +8290 54790 0.5130 +8290 54815 0.5300 +8290 54892 0.6150 +8290 54904 0.9840 +8290 54969 0.6620 +8290 55140 0.4820 +8290 55143 0.8270 +8290 55170 0.7210 +8290 55183 0.5400 +8290 55193 0.9940 +8290 55211 0.5070 +8290 55247 0.5560 +8290 55320 0.4110 +8290 55352 0.4270 +8290 55355 0.6030 +8290 55506 0.4540 +8290 55636 0.5570 +8290 55677 0.5470 +8290 55689 0.7350 +8290 55693 0.5220 +8290 55723 0.9680 +8290 55729 0.7410 +8290 55766 0.6310 +8290 55818 0.7370 +8290 55839 0.6780 +8290 55869 0.8520 +8290 55870 0.6280 +8290 55904 0.9400 +8290 55929 0.4910 +8290 56154 0.4470 +8290 56158 0.5220 +8290 56254 0.7640 +8290 56848 0.9620 +8290 56943 0.4800 +8290 56950 0.5760 +8290 56979 0.8300 +8290 57082 0.5120 +8290 57332 0.8300 +8290 57634 0.4630 +8290 57661 0.6360 +8290 57680 0.5830 +8290 57713 0.5340 +8290 57721 0.6850 +8290 58508 0.8810 +8290 60496 0.4960 +8290 64324 0.7060 +8290 64421 0.5440 +8290 64754 0.7980 +8290 64769 0.5190 +8290 64919 0.4360 +8290 64946 0.4710 +8290 65980 0.5980 +8290 79019 0.4100 +8290 79142 0.6490 +8290 79447 0.4100 +8290 79577 0.6440 +8290 79710 0.4460 +8290 79711 0.9560 +8290 79723 0.7410 +8290 79813 0.9720 +8290 79823 0.5710 +8290 79831 0.4160 +8290 79885 0.6130 +8290 79923 0.7180 +8290 79960 0.6650 +8290 79980 0.4320 +8290 79991 0.4830 +8290 80012 0.7970 +8290 80152 0.8010 +8290 80312 0.5700 +8290 80314 0.4270 +8290 80335 0.8110 +8290 80349 0.4990 +8290 80818 0.4170 +8290 80853 0.5410 +8290 80854 0.9250 +8290 81620 0.5470 +8290 81631 0.4210 +8290 81669 0.7120 +8290 83439 0.5620 +8290 83540 0.4590 +8290 83746 0.5090 +8290 83852 0.6260 +8290 83860 0.9010 +8290 83903 0.8180 +8290 83933 0.5270 +8290 84057 0.4270 +8290 84142 0.5290 +8290 84148 0.5710 +8290 84152 0.5280 +8290 84260 0.4530 +8290 84289 0.4710 +8290 84444 0.9100 +8290 84656 0.4090 +8290 84661 0.7810 +8290 84678 0.7090 +8290 84717 0.9190 +8290 84733 0.9210 +8290 84759 0.4630 +8290 84787 0.4480 +8290 84823 0.5060 +8290 85236 0.9910 +8290 90665 0.5250 +8290 90780 0.9890 +8290 91860 0.4300 +8290 92292 0.4600 +8290 92815 0.5330 +8290 93426 0.5490 +8290 93624 0.5680 +8290 93974 0.5310 +8290 94239 0.8270 +8290 112398 0.9180 +8290 112399 0.7520 +8290 112869 0.9770 +8290 114799 0.4560 +8290 114803 0.4330 +8290 115560 0.4170 +8290 116985 0.4120 +8290 121504 0.9380 +8290 121536 0.6210 +8290 123169 0.6940 +8290 124359 0.9350 +8290 125476 0.4650 +8290 126961 0.8660 +8290 128312 0.9340 +8290 132243 0.9660 +8290 133482 0.8650 +8290 137902 0.7180 +8290 140690 0.5300 +8290 140836 0.8390 +8290 143689 0.5600 +8290 144097 0.8200 +8290 146713 0.4930 +8290 148266 0.4150 +8290 150572 0.4700 +8290 151648 0.4990 +8290 152098 0.9200 +8290 153090 0.5080 +8290 157570 0.4570 +8290 158983 0.8640 +8290 163688 0.4200 +8290 165918 0.6730 +8290 171023 0.4060 +8290 192669 0.6040 +8290 192670 0.4250 +8290 200424 0.4790 +8290 200558 0.5830 +8290 201254 0.5360 +8290 221037 0.5400 +8290 221656 0.7210 +8290 253175 0.8470 +8290 255626 0.9320 +8290 256126 0.5660 +8290 257218 0.5510 +8290 283149 0.5580 +8290 284390 0.4160 +8290 286436 0.8620 +8290 317772 0.4250 +8290 333932 0.8650 +8290 338376 0.4140 +8290 340602 0.4370 +8290 345456 0.4530 +8290 359787 0.5520 +8290 375189 0.4510 +8290 378708 0.6840 +8290 387103 0.5880 +8290 387893 0.7430 +8290 390245 0.4160 +8290 440093 0.8560 +8290 440686 0.8650 +8290 440689 0.8720 +8290 474381 0.5330 +8290 474382 0.7330 +8290 554313 0.9340 +8290 644186 0.5110 +8290 653604 0.9260 +8290 728378 0.5270 +8290 100170841 0.5070 +8290 100532731 0.7360 +8290 102723407 0.5930 +8290 114483833 0.8700 +8291 8557 0.7560 +8291 8773 0.4870 +8291 9066 0.6380 +8291 9172 0.6820 +8291 9499 0.6710 +8291 9750 0.6830 +8291 10013 0.7080 +8291 10020 0.5060 +8291 10049 0.5420 +8291 10324 0.4290 +8291 10436 0.5060 +8291 10585 0.7430 +8291 10938 0.6360 +8291 11149 0.6460 +8291 11155 0.4210 +8291 22954 0.6910 +8291 23233 0.4720 +8291 23549 0.4180 +8291 29780 0.5990 +8291 29895 0.4280 +8291 29925 0.4790 +8291 29954 0.7060 +8291 30845 0.8340 +8291 30846 0.8450 +8291 54920 0.4150 +8291 55624 0.6670 +8291 56943 0.4180 +8291 79026 0.9820 +8291 79041 0.4580 +8291 79147 0.8630 +8291 84262 0.8280 +8291 94120 0.4230 +8291 113146 0.5010 +8291 200539 0.4290 +8291 203859 0.9390 +8291 221938 0.8540 +8291 284119 0.7690 +8291 375790 0.4880 +8291 493829 0.9890 +8291 653145 0.4500 +8291 654231 0.4360 +8292 8985 0.4760 +8292 9581 0.5210 +8292 10609 0.4410 +8292 23127 0.4270 +8292 26061 0.7930 +8292 29925 0.5580 +8292 55843 0.4790 +8292 60482 0.4540 +8292 79709 0.5200 +8292 145270 0.8100 +8292 199857 0.6560 +8292 285489 0.9420 +8292 375790 0.8150 +8292 728215 0.5750 +8293 8553 0.4300 +8293 8792 0.4740 +8293 23438 0.4410 +8293 23621 0.5070 +8293 25915 0.9190 +8293 27238 0.7240 +8293 54623 0.4470 +8293 55814 0.6890 +8293 58492 0.4790 +8293 83551 0.6050 +8293 319100 0.5170 +8293 728340 0.5830 +8293 728492 0.4830 +8294 8329 0.9710 +8294 8330 0.9770 +8294 8331 0.9600 +8294 8332 0.9630 +8294 8334 0.9700 +8294 8335 0.9920 +8294 8336 0.9670 +8294 8337 0.9690 +8294 8338 0.9720 +8294 8339 0.9720 +8294 8340 0.7520 +8294 8341 0.9170 +8294 8342 0.9560 +8294 8343 0.9710 +8294 8344 0.9670 +8294 8345 0.8980 +8294 8346 0.9710 +8294 8347 0.9620 +8294 8348 0.9600 +8294 8349 0.9680 +8294 8350 0.9850 +8294 8351 0.9850 +8294 8352 0.9820 +8294 8353 0.9790 +8294 8354 0.9860 +8294 8355 0.9870 +8294 8356 0.9790 +8294 8357 0.9840 +8294 8358 0.9870 +8294 8359 0.9530 +8294 8360 0.9630 +8294 8361 0.9840 +8294 8362 0.9520 +8294 8363 0.9620 +8294 8364 0.9530 +8294 8366 0.9800 +8294 8367 0.9630 +8294 8368 0.9710 +8294 8370 0.9560 +8294 8467 0.9320 +8294 8520 0.6600 +8294 8607 0.8620 +8294 8805 0.5300 +8294 8968 0.9860 +8294 8969 0.9640 +8294 8970 0.9810 +8294 8971 0.9230 +8294 9070 0.8580 +8294 9188 0.4350 +8294 9282 0.8200 +8294 9324 0.4320 +8294 9412 0.8170 +8294 9439 0.8000 +8294 9440 0.8000 +8294 9441 0.8290 +8294 9442 0.8010 +8294 9443 0.8200 +8294 9477 0.8000 +8294 9555 0.9460 +8294 9557 0.9150 +8294 9646 0.8570 +8294 9682 0.9120 +8294 9862 0.8010 +8294 10001 0.8000 +8294 10025 0.8000 +8294 10286 0.4080 +8294 10320 0.4260 +8294 10419 0.9190 +8294 10856 0.8660 +8294 10943 0.9160 +8294 11091 0.8310 +8294 11168 0.8080 +8294 11198 0.9530 +8294 23028 0.5420 +8294 23168 0.8520 +8294 23234 0.9280 +8294 23411 0.4010 +8294 23421 0.8000 +8294 23476 0.4560 +8294 23512 0.8060 +8294 25842 0.9760 +8294 26013 0.9050 +8294 29028 0.9150 +8294 29072 0.8730 +8294 29079 0.8000 +8294 29104 0.9000 +8294 29117 0.8110 +8294 50615 0.4220 +8294 51003 0.8050 +8294 51504 0.8000 +8294 51586 0.8000 +8294 54145 0.5320 +8294 54606 0.4350 +8294 54617 0.8310 +8294 54623 0.8500 +8294 54797 0.8000 +8294 54904 0.8290 +8294 55090 0.8000 +8294 55166 0.8130 +8294 55193 0.8560 +8294 55274 0.9050 +8294 55355 0.9140 +8294 55506 0.4400 +8294 55588 0.8000 +8294 55723 0.9780 +8294 55766 0.9240 +8294 55839 0.9060 +8294 58508 0.8560 +8294 64105 0.8010 +8294 64946 0.8100 +8294 79019 0.8020 +8294 79084 0.8190 +8294 79172 0.8160 +8294 79577 0.8680 +8294 79682 0.8070 +8294 79711 0.9490 +8294 79829 0.5730 +8294 79913 0.8000 +8294 80152 0.8000 +8294 80306 0.8000 +8294 80349 0.8000 +8294 81857 0.8040 +8294 83439 0.4610 +8294 83444 0.8200 +8294 83740 0.9310 +8294 83860 0.8020 +8294 84246 0.8120 +8294 84444 0.9370 +8294 84661 0.8610 +8294 85235 0.9430 +8294 85236 0.9790 +8294 90390 0.8000 +8294 91687 0.8170 +8294 92815 0.5020 +8294 94239 0.9500 +8294 112950 0.8000 +8294 113177 0.4010 +8294 115004 0.8160 +8294 121504 0.9520 +8294 123169 0.8610 +8294 126961 0.9640 +8294 128312 0.9390 +8294 129685 0.8000 +8294 132243 0.6290 +8294 144108 0.9130 +8294 196528 0.8000 +8294 201254 0.8040 +8294 221613 0.9500 +8294 255626 0.9400 +8294 317772 0.9550 +8294 333932 0.9620 +8294 378708 0.8120 +8294 387103 0.8160 +8294 387893 0.9310 +8294 391769 0.9350 +8294 400569 0.8000 +8294 401541 0.8060 +8294 404672 0.8170 +8294 440093 0.9350 +8294 440686 0.4110 +8294 440689 0.8920 +8294 474381 0.9310 +8294 554313 0.9520 +8294 653604 0.9460 +8294 723790 0.9560 +8294 728378 0.5430 +8294 114483833 0.4520 +8295 8329 0.5810 +8295 8331 0.5810 +8295 8334 0.5900 +8295 8337 0.7960 +8295 8338 0.7900 +8295 8340 0.7160 +8295 8341 0.7150 +8295 8342 0.7160 +8295 8345 0.7160 +8295 8347 0.7150 +8295 8348 0.7170 +8295 8349 0.7590 +8295 8350 0.4370 +8295 8356 0.7380 +8295 8361 0.9240 +8295 8369 0.7240 +8295 8464 0.9990 +8295 8467 0.5230 +8295 8473 0.8100 +8295 8607 0.9990 +8295 8850 0.9990 +8295 8970 0.7150 +8295 9044 0.4520 +8295 9282 0.5150 +8295 9320 0.4680 +8295 9392 0.4650 +8295 9401 0.4060 +8295 9439 0.5520 +8295 9519 0.5570 +8295 9575 0.4460 +8295 9611 0.8370 +8295 9612 0.8290 +8295 9656 0.7010 +8295 9675 0.8650 +8295 9682 0.4160 +8295 9862 0.5110 +8295 9870 0.4630 +8295 9894 0.9090 +8295 9913 0.9990 +8295 9919 0.4360 +8295 9960 0.7230 +8295 9968 0.7100 +8295 9969 0.4860 +8295 10075 0.7780 +8295 10155 0.4830 +8295 10428 0.5590 +8295 10445 0.9080 +8295 10467 0.5920 +8295 10474 0.9990 +8295 10524 0.9990 +8295 10594 0.5360 +8295 10629 0.9990 +8295 10761 0.7820 +8295 10847 0.9300 +8295 10856 0.9990 +8295 10891 0.4330 +8295 10902 0.9980 +8295 10933 0.9980 +8295 10943 0.9450 +8295 10985 0.4600 +8295 11091 0.8810 +8295 11143 0.6960 +8295 11200 0.4260 +8295 22884 0.5470 +8295 22976 0.4930 +8295 23019 0.4820 +8295 23049 0.8410 +8295 23214 0.6130 +8295 23224 0.4750 +8295 23326 0.9980 +8295 23450 0.9470 +8295 23476 0.6850 +8295 23522 0.7130 +8295 25862 0.5520 +8295 26009 0.8330 +8295 26122 0.9970 +8295 27097 0.9990 +8295 27436 0.4450 +8295 27443 0.8440 +8295 29803 0.5150 +8295 29844 0.9030 +8295 51105 0.5400 +8295 51147 0.6680 +8295 51176 0.5770 +8295 51230 0.7680 +8295 51343 0.4460 +8295 51377 0.9000 +8295 51412 0.9380 +8295 51562 0.7870 +8295 51586 0.5100 +8295 51616 0.9970 +8295 51742 0.6390 +8295 54107 0.7370 +8295 54145 0.7160 +8295 54556 0.9980 +8295 54584 0.5010 +8295 54617 0.9610 +8295 54799 0.9590 +8295 54821 0.4930 +8295 54891 0.7760 +8295 54934 0.7700 +8295 54938 0.4510 +8295 55011 0.4210 +8295 55125 0.4100 +8295 55167 0.9060 +8295 55206 0.5530 +8295 55257 0.9990 +8295 55578 0.9990 +8295 55636 0.5040 +8295 55683 0.7430 +8295 55689 0.9130 +8295 55766 0.5810 +8295 55929 0.9990 +8295 56655 0.7290 +8295 56943 0.9980 +8295 56970 0.9980 +8295 57325 0.8370 +8295 57492 0.4080 +8295 57501 0.4850 +8295 57521 0.6170 +8295 57531 0.5750 +8295 57634 0.9990 +8295 57680 0.4780 +8295 64431 0.5960 +8295 64769 0.9990 +8295 64798 0.5190 +8295 79595 0.8450 +8295 79654 0.4510 +8295 79697 0.6740 +8295 79718 0.4750 +8295 79913 0.9130 +8295 79968 0.5100 +8295 80185 0.7350 +8295 80205 0.4080 +8295 80314 0.9980 +8295 80349 0.4090 +8295 81611 0.9530 +8295 83439 0.5760 +8295 83443 0.9620 +8295 83444 0.9110 +8295 83732 0.5660 +8295 84101 0.5510 +8295 84126 0.4140 +8295 84148 0.9670 +8295 84181 0.4030 +8295 84289 0.6620 +8295 84444 0.6750 +8295 84749 0.5550 +8295 85235 0.5810 +8295 85236 0.7140 +8295 90204 0.4760 +8295 90378 0.5660 +8295 90780 0.4150 +8295 91442 0.4570 +8295 92292 0.5070 +8295 92815 0.5810 +8295 93624 0.9980 +8295 93973 0.9240 +8295 94239 0.7970 +8295 112869 0.9990 +8295 117143 0.9990 +8295 125476 0.9060 +8295 127002 0.9290 +8295 128312 0.7520 +8295 129685 0.6140 +8295 139628 0.8040 +8295 140831 0.4760 +8295 148418 0.5600 +8295 151050 0.5600 +8295 158880 0.8420 +8295 158983 0.4550 +8295 166979 0.4040 +8295 221002 0.5280 +8295 221613 0.5810 +8295 221895 0.8410 +8295 222255 0.8190 +8295 255626 0.8390 +8295 283150 0.8180 +8295 283899 0.9010 +8295 284058 0.7400 +8295 286436 0.4550 +8295 317772 0.5840 +8295 339287 0.9050 +8295 345651 0.6800 +8295 374395 0.7520 +8295 374872 0.4040 +8295 375748 0.4890 +8295 387332 0.6530 +8295 389856 0.8820 +8295 399949 0.5510 +8295 440093 0.5390 +8295 440686 0.5390 +8295 440689 0.7170 +8295 474382 0.5810 +8295 653604 0.7140 +8295 728294 0.8190 +8295 100287513 0.5510 +8295 114483833 0.4560 +8301 8322 0.4990 +8301 8546 0.6220 +8301 8673 0.6590 +8301 8674 0.5680 +8301 8775 0.5210 +8301 8867 0.7530 +8301 8905 0.5560 +8301 8906 0.6440 +8301 8907 0.6320 +8301 9026 0.9270 +8301 9110 0.5050 +8301 9146 0.5280 +8301 9179 0.4480 +8301 9185 0.5640 +8301 9341 0.7370 +8301 9685 0.9820 +8301 9698 0.5350 +8301 9761 0.4730 +8301 9829 0.7750 +8301 9846 0.4900 +8301 9856 0.5260 +8301 9871 0.5870 +8301 9892 0.6860 +8301 10053 0.5840 +8301 10254 0.5660 +8301 10347 0.8720 +8301 10452 0.6040 +8301 10618 0.5710 +8301 10658 0.6390 +8301 10717 0.5360 +8301 10979 0.8020 +8301 11037 0.4990 +8301 11276 0.7950 +8301 22848 0.6730 +8301 22905 0.9470 +8301 23149 0.8400 +8301 23208 0.6370 +8301 23385 0.4300 +8301 23411 0.4170 +8301 23431 0.5930 +8301 23557 0.5040 +8301 23607 0.8650 +8301 23621 0.5060 +8301 23646 0.6130 +8301 25977 0.6260 +8301 26119 0.5960 +8301 26258 0.5140 +8301 27131 0.5040 +8301 27327 0.4200 +8301 29924 0.7550 +8301 29978 0.5730 +8301 29988 0.5020 +8301 30011 0.6230 +8301 50618 0.7190 +8301 51225 0.4670 +8301 51314 0.6960 +8301 51338 0.6760 +8301 51429 0.5770 +8301 51466 0.4790 +8301 51512 0.5790 +8301 54209 0.6960 +8301 54478 0.6680 +8301 54874 0.5280 +8301 54885 0.4990 +8301 55040 0.9440 +8301 55063 0.7180 +8301 55313 0.5060 +8301 55330 0.4990 +8301 55691 0.4710 +8301 55707 0.7580 +8301 56479 0.7200 +8301 57091 0.7280 +8301 57553 0.4220 +8301 57559 0.7100 +8301 57706 0.4620 +8301 58505 0.4720 +8301 58513 0.8360 +8301 64231 0.7900 +8301 64744 0.7260 +8301 65125 0.6090 +8301 79890 0.6730 +8301 80115 0.7240 +8301 80726 0.6040 +8301 81567 0.5170 +8301 83661 0.5940 +8301 83988 0.7200 +8301 84062 0.5400 +8301 84174 0.4560 +8301 84251 0.7590 +8301 85021 0.5880 +8301 85439 0.8020 +8301 90019 0.5410 +8301 114815 0.4700 +8301 115548 0.8520 +8301 122616 0.5470 +8301 123041 0.6880 +8301 124152 0.4460 +8301 127833 0.5710 +8301 130340 0.5450 +8301 143425 0.5020 +8301 150350 0.6460 +8301 245802 0.6960 +8301 255324 0.4990 +8301 286451 0.5010 +8301 388552 0.6850 +8301 643680 0.7740 +8302 9437 0.4220 +8302 9976 0.7860 +8302 10630 0.4150 +8302 22914 0.9690 +8302 26157 0.4020 +8302 51266 0.8040 +8302 51267 0.6340 +8302 51348 0.6210 +8302 51752 0.6330 +8302 115653 0.9150 +8302 149233 0.4830 +8302 337867 0.4700 +8303 51061 0.5560 +8309 8310 0.9430 +8309 8443 0.4470 +8309 8647 0.4210 +8309 8799 0.5350 +8309 8800 0.5730 +8309 8802 0.4730 +8309 9085 0.5080 +8309 9399 0.5160 +8309 9420 0.5340 +8309 9425 0.5180 +8309 9563 0.4540 +8309 9607 0.5530 +8309 10005 0.5740 +8309 10449 0.6090 +8309 10455 0.9380 +8309 10858 0.4430 +8309 10901 0.4100 +8309 10998 0.7020 +8309 10999 0.4190 +8309 11001 0.6420 +8309 11202 0.4060 +8309 23205 0.6100 +8309 23305 0.6090 +8309 23600 0.9750 +8309 26063 0.5330 +8309 26275 0.5380 +8309 28965 0.4110 +8309 50813 0.5580 +8309 51084 0.6390 +8309 51144 0.4480 +8309 51302 0.5290 +8309 51703 0.6720 +8309 54677 0.4600 +8309 55268 0.5930 +8309 55289 0.7850 +8309 55825 0.6820 +8309 55862 0.6660 +8309 55902 0.4940 +8309 56898 0.4690 +8309 56922 0.4180 +8309 60481 0.4380 +8309 64087 0.5870 +8309 65985 0.4240 +8309 79611 0.4720 +8309 79641 0.5650 +8309 79777 0.4900 +8309 79783 0.4630 +8309 80221 0.5590 +8309 80270 0.6540 +8309 80724 0.4430 +8309 81616 0.6220 +8309 83451 0.5020 +8309 83693 0.4160 +8309 84188 0.4130 +8309 84263 0.8290 +8309 84320 0.4650 +8309 84532 0.4480 +8309 84803 0.4420 +8309 91452 0.4930 +8309 93650 0.4080 +8309 116285 0.4710 +8309 122970 0.6330 +8309 124359 0.5080 +8309 132949 0.6330 +8309 134526 0.4290 +8309 140856 0.4420 +8309 219743 0.6450 +8309 253175 0.5080 +8309 339403 0.4460 +8309 341392 0.5470 +8309 376497 0.4300 +8309 414149 0.4650 +8309 646625 0.4400 +8309 109703458 0.6010 +8310 8443 0.4230 +8310 8468 0.4250 +8310 8504 0.5040 +8310 8540 0.4350 +8310 8694 0.4770 +8310 8800 0.5290 +8310 8802 0.5020 +8310 9085 0.4780 +8310 9213 0.4230 +8310 9370 0.4740 +8310 9388 0.4530 +8310 9399 0.5290 +8310 9409 0.4400 +8310 9415 0.4560 +8310 9425 0.4970 +8310 9563 0.5580 +8310 9607 0.5130 +8310 10005 0.4860 +8310 10449 0.9860 +8310 10455 0.9090 +8310 10891 0.5440 +8310 10901 0.4050 +8310 10998 0.4390 +8310 10999 0.4790 +8310 11001 0.5300 +8310 11112 0.8480 +8310 23205 0.5720 +8310 23305 0.6110 +8310 23417 0.4600 +8310 23597 0.4120 +8310 23600 0.7290 +8310 26063 0.4730 +8310 26275 0.5640 +8310 51084 0.6130 +8310 51102 0.9500 +8310 51144 0.4180 +8310 51703 0.6580 +8310 54677 0.5440 +8310 54988 0.4260 +8310 55268 0.5310 +8310 55304 0.4730 +8310 55554 0.5810 +8310 55670 0.5950 +8310 55825 0.5810 +8310 55862 0.9540 +8310 55902 0.9550 +8310 57104 0.4800 +8310 57678 0.4960 +8310 57818 0.4070 +8310 60481 0.4310 +8310 64064 0.4510 +8310 64087 0.4900 +8310 64902 0.8150 +8310 65985 0.4130 +8310 79611 0.9360 +8310 79777 0.4950 +8310 79783 0.4070 +8310 80221 0.4320 +8310 80347 0.5410 +8310 80724 0.5200 +8310 81616 0.5300 +8310 84129 0.4810 +8310 84188 0.4060 +8310 84263 0.8180 +8310 84320 0.4770 +8310 84532 0.9540 +8310 84649 0.4470 +8310 91452 0.5710 +8310 92579 0.4210 +8310 116285 0.4320 +8310 122970 0.4750 +8310 124359 0.4780 +8310 126129 0.4520 +8310 129303 0.4820 +8310 132949 0.8460 +8310 134526 0.4090 +8310 137902 0.5160 +8310 140856 0.4460 +8310 158833 0.4250 +8310 219743 0.6770 +8310 253175 0.4780 +8310 341392 0.4080 +8310 376497 0.5980 +8310 414149 0.5190 +8310 109703458 0.5060 +8312 8313 0.9990 +8312 8321 0.9280 +8312 8322 0.7610 +8312 8323 0.5010 +8312 8324 0.7250 +8312 8325 0.5560 +8312 8326 0.5050 +8312 8434 0.4130 +8312 8440 0.4600 +8312 8454 0.7780 +8312 8549 0.5450 +8312 8554 0.4690 +8312 8658 0.9980 +8312 8772 0.5150 +8312 8817 0.4200 +8312 8823 0.4140 +8312 8840 0.4190 +8312 8945 0.9990 +8312 9063 0.4020 +8312 9113 0.5100 +8312 9138 0.4370 +8312 9241 0.5240 +8312 9491 0.4090 +8312 9612 0.4170 +8312 9628 0.5540 +8312 9736 0.6510 +8312 9739 0.4100 +8312 9861 0.5450 +8312 9965 0.4120 +8312 9978 0.5810 +8312 10009 0.4970 +8312 10023 0.9920 +8312 10197 0.4170 +8312 10213 0.4350 +8312 10297 0.9930 +8312 10399 0.4410 +8312 10413 0.6770 +8312 10498 0.6250 +8312 10524 0.6180 +8312 11127 0.5400 +8312 11187 0.4270 +8312 11197 0.6800 +8312 11211 0.4350 +8312 22881 0.9910 +8312 22943 0.8310 +8312 23002 0.4910 +8312 23291 0.8970 +8312 23401 0.5780 +8312 23499 0.6170 +8312 23500 0.5350 +8312 23513 0.4180 +8312 25898 0.4240 +8312 25937 0.4570 +8312 25946 0.4530 +8312 25960 0.4370 +8312 26020 0.4310 +8312 26130 0.6470 +8312 26281 0.4280 +8312 27101 0.9050 +8312 27121 0.5960 +8312 27122 0.5550 +8312 27123 0.7520 +8312 28514 0.5080 +8312 28981 0.5370 +8312 28996 0.9790 +8312 50649 0.5710 +8312 50964 0.6960 +8312 51176 0.9590 +8312 51339 0.6450 +8312 51384 0.5220 +8312 51588 0.4460 +8312 51684 0.4420 +8312 51701 0.5240 +8312 51741 0.4530 +8312 53944 0.5780 +8312 54361 0.6400 +8312 54778 0.9510 +8312 54894 0.7210 +8312 54994 0.5910 +8312 55004 0.9060 +8312 55294 0.5110 +8312 55361 0.4400 +8312 55366 0.4890 +8312 56998 0.8230 +8312 57154 0.6860 +8312 57610 0.4090 +8312 57787 0.5360 +8312 57805 0.4260 +8312 64651 0.6750 +8312 64750 0.8700 +8312 64840 0.5530 +8312 64853 0.4680 +8312 79971 0.5250 +8312 80232 0.7720 +8312 80319 0.6200 +8312 80326 0.5420 +8312 80351 0.9960 +8312 80854 0.4850 +8312 81029 0.5740 +8312 81559 0.4390 +8312 81847 0.9020 +8312 83439 0.8190 +8312 83999 0.4180 +8312 84133 0.6120 +8312 84138 0.6450 +8312 84260 0.9890 +8312 84327 0.7360 +8312 85407 0.5630 +8312 85409 0.4730 +8312 85456 0.4630 +8312 85458 0.9040 +8312 89780 0.9640 +8312 89958 0.4460 +8312 90665 0.4420 +8312 120892 0.4700 +8312 122011 0.9380 +8312 122706 0.4150 +8312 137902 0.4010 +8312 139285 0.9990 +8312 143471 0.4030 +8312 144165 0.4380 +8312 147111 0.4720 +8312 147906 0.4890 +8312 153090 0.6060 +8312 153129 0.4820 +8312 166336 0.4180 +8312 192111 0.4360 +8312 196528 0.5490 +8312 199953 0.4120 +8312 201292 0.4450 +8312 222584 0.4970 +8312 283149 0.4610 +8312 284654 0.5470 +8312 340419 0.4040 +8313 8321 0.6330 +8313 8322 0.5920 +8313 8323 0.5540 +8313 8324 0.7530 +8313 8325 0.5570 +8313 8326 0.5680 +8313 8454 0.4060 +8313 8549 0.7650 +8313 8658 0.9550 +8313 8817 0.4550 +8313 8823 0.4170 +8313 8840 0.4720 +8313 8842 0.4470 +8313 8945 0.9350 +8313 9241 0.5200 +8313 9491 0.4110 +8313 9696 0.4160 +8313 9736 0.4390 +8313 9839 0.5380 +8313 10213 0.4180 +8313 10253 0.4640 +8313 10297 0.9770 +8313 10562 0.5720 +8313 10913 0.6070 +8313 11197 0.7070 +8313 11211 0.5060 +8313 22881 0.7560 +8313 22943 0.8640 +8313 23291 0.4820 +8313 23462 0.5930 +8313 26018 0.4670 +8313 26281 0.4350 +8313 27101 0.5610 +8313 27121 0.5750 +8313 27122 0.6180 +8313 27123 0.6170 +8313 28514 0.4800 +8313 50649 0.4360 +8313 50964 0.5150 +8313 51132 0.9350 +8313 51176 0.9640 +8313 51384 0.5910 +8313 51523 0.5850 +8313 51701 0.4260 +8313 54361 0.6720 +8313 54778 0.8610 +8313 54894 0.8050 +8313 55366 0.5780 +8313 55504 0.6280 +8313 55755 0.4330 +8313 56998 0.6990 +8313 57216 0.6330 +8313 59352 0.6100 +8313 64321 0.4180 +8313 64750 0.7610 +8313 64840 0.5980 +8313 79695 0.5590 +8313 79923 0.4300 +8313 79971 0.6560 +8313 80326 0.7060 +8313 80351 0.9680 +8313 81029 0.6160 +8313 81847 0.9180 +8313 83439 0.9060 +8313 84133 0.6490 +8313 84138 0.4360 +8313 84260 0.8070 +8313 84870 0.5980 +8313 85407 0.9270 +8313 85409 0.5430 +8313 85458 0.5750 +8313 89780 0.8940 +8313 121340 0.4600 +8313 122011 0.9500 +8313 122706 0.4150 +8313 128178 0.5070 +8313 139285 0.6730 +8313 143471 0.4030 +8313 144165 0.4420 +8313 147111 0.6440 +8313 147495 0.6260 +8313 201255 0.4400 +8313 283149 0.4330 +8313 284654 0.6710 +8313 340419 0.5800 +8313 388585 0.5490 +8313 441478 0.6020 +8313 100133941 0.4030 +8313 100532731 0.4020 +8314 8315 0.4750 +8314 8329 0.4210 +8314 8331 0.4210 +8314 8334 0.4210 +8314 8337 0.7460 +8314 8338 0.8650 +8314 8340 0.5250 +8314 8341 0.5220 +8314 8342 0.5240 +8314 8345 0.5250 +8314 8347 0.5210 +8314 8348 0.5250 +8314 8349 0.5920 +8314 8361 0.6430 +8314 8473 0.9780 +8314 8520 0.6710 +8314 8535 0.9140 +8314 8607 0.4220 +8314 8726 0.9050 +8314 8924 0.5090 +8314 8970 0.5220 +8314 8975 0.4400 +8314 9025 0.5650 +8314 9097 0.4630 +8314 9099 0.4820 +8314 9577 0.5210 +8314 9656 0.5500 +8314 9817 0.4160 +8314 9898 0.9020 +8314 9929 0.4490 +8314 9958 0.5040 +8314 10111 0.4990 +8314 10197 0.4580 +8314 10213 0.4360 +8314 10336 0.9090 +8314 10389 0.9000 +8314 10445 0.6130 +8314 10524 0.5310 +8314 10594 0.4040 +8314 10856 0.4460 +8314 10987 0.4260 +8314 11047 0.8720 +8314 11186 0.4590 +8314 11200 0.4050 +8314 11316 0.5140 +8314 11335 0.6880 +8314 23203 0.4620 +8314 23451 0.5530 +8314 23466 0.9020 +8314 23468 0.4500 +8314 23492 0.9040 +8314 23512 0.9130 +8314 26057 0.4630 +8314 27005 0.5140 +8314 29072 0.6380 +8314 29086 0.5640 +8314 29915 0.5080 +8314 51035 0.5410 +8314 51588 0.5230 +8314 51720 0.6080 +8314 54145 0.5260 +8314 54386 0.4320 +8314 54617 0.5570 +8314 54882 0.4640 +8314 55193 0.7080 +8314 55252 0.9990 +8314 55611 0.5030 +8314 55777 0.7900 +8314 57105 0.4420 +8314 57332 0.9030 +8314 57646 0.4920 +8314 58508 0.4620 +8314 63893 0.8530 +8314 79184 0.6510 +8314 79711 0.4400 +8314 80012 0.9000 +8314 80816 0.9170 +8314 84108 0.9110 +8314 84142 0.5400 +8314 84333 0.9060 +8314 84733 0.9030 +8314 84759 0.9110 +8314 85235 0.4210 +8314 85236 0.5260 +8314 92815 0.4210 +8314 114785 0.7260 +8314 121536 0.9000 +8314 126119 0.4430 +8314 128312 0.5250 +8314 132625 0.5400 +8314 165918 0.5570 +8314 171023 0.9990 +8314 221302 0.5460 +8314 221613 0.4210 +8314 221656 0.9600 +8314 221937 0.9820 +8314 255626 0.5220 +8314 317772 0.4210 +8314 404281 0.5400 +8315 8454 0.4540 +8315 8844 0.9840 +8315 8861 0.4910 +8315 9079 0.4910 +8315 9577 0.5100 +8315 9656 0.5100 +8315 9958 0.4040 +8315 10363 0.5910 +8315 22800 0.9010 +8315 22808 0.9030 +8315 23224 0.5530 +8315 23239 0.4050 +8315 29086 0.4920 +8315 29128 0.4390 +8315 51720 0.6820 +8315 55252 0.4010 +8315 59348 0.4780 +8315 79184 0.6120 +8315 84142 0.5910 +8315 90268 0.4210 +8315 91833 0.7830 +8315 114327 0.6210 +8315 116138 0.4160 +8315 221927 0.6670 +8317 8318 0.9910 +8317 8356 0.4310 +8317 8438 0.4900 +8317 8556 0.8320 +8317 8697 0.5370 +8317 8881 0.5380 +8317 8900 0.5420 +8317 8914 0.8680 +8317 9055 0.5730 +8317 9088 0.4300 +8317 9126 0.5690 +8317 9133 0.7370 +8317 9134 0.5640 +8317 9156 0.6920 +8317 9184 0.5110 +8317 9212 0.5990 +8317 9232 0.4400 +8317 9262 0.4060 +8317 9319 0.4920 +8317 9401 0.4790 +8317 9493 0.5010 +8317 9585 0.4060 +8317 9700 0.6240 +8317 9780 0.4740 +8317 9787 0.4960 +8317 9794 0.4040 +8317 9833 0.5250 +8317 9837 0.5100 +8317 9928 0.4340 +8317 9985 0.5780 +8317 10036 0.5490 +8317 10051 0.5080 +8317 10298 0.4120 +8317 10403 0.5900 +8317 10592 0.4450 +8317 10733 0.6680 +8317 10769 0.4740 +8317 10926 0.9990 +8317 11004 0.4730 +8317 11073 0.8780 +8317 11130 0.4300 +8317 11168 0.6530 +8317 11169 0.7940 +8317 11200 0.9880 +8317 11335 0.6240 +8317 23594 0.9610 +8317 23595 0.8010 +8317 23626 0.5170 +8317 23649 0.6420 +8317 25836 0.5550 +8317 26271 0.5040 +8317 27127 0.4670 +8317 29935 0.5450 +8317 51053 0.4160 +8317 51339 0.4280 +8317 51514 0.5780 +8317 51550 0.5800 +8317 51659 0.4430 +8317 54107 0.5210 +8317 54847 0.4540 +8317 54962 0.7820 +8317 55143 0.6260 +8317 55215 0.4850 +8317 55294 0.4170 +8317 55388 0.9890 +8317 55536 0.6010 +8317 55723 0.4950 +8317 56655 0.5030 +8317 56852 0.7810 +8317 56992 0.5000 +8317 57124 0.4870 +8317 63895 0.4740 +8317 63922 0.4150 +8317 63967 0.9400 +8317 64105 0.4800 +8317 64151 0.6970 +8317 64785 0.7140 +8317 79050 0.4100 +8317 79892 0.7280 +8317 79915 0.4350 +8317 80174 0.9920 +8317 80198 0.4410 +8317 81620 0.9480 +8317 81669 0.4770 +8317 83540 0.5360 +8317 83746 0.5650 +8317 84108 0.5750 +8317 84126 0.7850 +8317 84250 0.5490 +8317 84296 0.6930 +8317 84451 0.4550 +8317 84515 0.8810 +8317 85366 0.4860 +8317 90381 0.9260 +8317 113130 0.4410 +8317 114799 0.5160 +8317 116211 0.6400 +8317 126520 0.4310 +8317 146956 0.4370 +8317 149420 0.5420 +8317 157570 0.5020 +8317 157777 0.6870 +8317 220202 0.4120 +8317 254394 0.9130 +8317 340419 0.4240 +8317 404672 0.4660 +8317 440093 0.4240 +8317 440686 0.4250 +8317 653604 0.4240 +8317 728340 0.4560 +8318 8356 0.5070 +8318 8438 0.8560 +8318 8453 0.8550 +8318 8881 0.5120 +8318 8900 0.5540 +8318 8914 0.9970 +8318 9055 0.7440 +8318 9088 0.7360 +8318 9126 0.7270 +8318 9133 0.9500 +8318 9134 0.6310 +8318 9150 0.4160 +8318 9156 0.9630 +8318 9184 0.5900 +8318 9212 0.9260 +8318 9232 0.7920 +8318 9319 0.7830 +8318 9400 0.4590 +8318 9401 0.9820 +8318 9493 0.8030 +8318 9585 0.5010 +8318 9656 0.5940 +8318 9700 0.6210 +8318 9735 0.6980 +8318 9768 0.8330 +8318 9780 0.6790 +8318 9787 0.9210 +8318 9833 0.8760 +8318 9837 0.9990 +8318 9918 0.5820 +8318 9928 0.5150 +8318 9978 0.8480 +8318 10024 0.5540 +8318 10036 0.5950 +8318 10051 0.6970 +8318 10112 0.7970 +8318 10293 0.7140 +8318 10403 0.6850 +8318 10460 0.5110 +8318 10535 0.6390 +8318 10592 0.6220 +8318 10606 0.4990 +8318 10615 0.7230 +8318 10635 0.6690 +8318 10714 0.4560 +8318 10721 0.6130 +8318 10733 0.6980 +8318 10926 0.9870 +8318 10963 0.4530 +8318 11004 0.8920 +8318 11065 0.8360 +8318 11073 0.9990 +8318 11130 0.8420 +8318 11143 0.4200 +8318 11169 0.9990 +8318 11198 0.7770 +8318 11200 0.9260 +8318 11339 0.8050 +8318 22974 0.7660 +8318 23047 0.4310 +8318 23137 0.4760 +8318 23264 0.4340 +8318 23331 0.4260 +8318 23397 0.6970 +8318 23476 0.4580 +8318 23594 0.9820 +8318 23595 0.9690 +8318 23649 0.9090 +8318 24137 0.7300 +8318 25842 0.6940 +8318 25886 0.4780 +8318 26013 0.4110 +8318 26271 0.6720 +8318 27085 0.6460 +8318 27338 0.4330 +8318 29028 0.5790 +8318 29066 0.4730 +8318 29089 0.7510 +8318 29127 0.5440 +8318 29128 0.6150 +8318 29935 0.5520 +8318 29980 0.6480 +8318 50484 0.5060 +8318 50485 0.4570 +8318 51053 0.8250 +8318 51203 0.8950 +8318 51512 0.6330 +8318 51514 0.9380 +8318 51659 0.9990 +8318 54069 0.4420 +8318 54107 0.8200 +8318 54443 0.5210 +8318 54478 0.5780 +8318 54584 0.5720 +8318 54821 0.5310 +8318 54892 0.5770 +8318 54921 0.5340 +8318 54962 0.9960 +8318 54970 0.4260 +8318 55010 0.5840 +8318 55038 0.5370 +8318 55143 0.9350 +8318 55165 0.8960 +8318 55215 0.8800 +8318 55247 0.6140 +8318 55355 0.8820 +8318 55388 0.9990 +8318 55635 0.4220 +8318 55656 0.4080 +8318 55666 0.4380 +8318 55723 0.8830 +8318 55789 0.4260 +8318 55839 0.6710 +8318 56655 0.7960 +8318 56852 0.5370 +8318 56992 0.7880 +8318 57082 0.5090 +8318 57405 0.8390 +8318 57697 0.6330 +8318 63895 0.6730 +8318 63922 0.8260 +8318 63967 0.9950 +8318 64105 0.5280 +8318 64151 0.9180 +8318 64785 0.9990 +8318 64946 0.4680 +8318 64976 0.4040 +8318 79000 0.4530 +8318 79019 0.8420 +8318 79075 0.7950 +8318 79648 0.5600 +8318 79682 0.6250 +8318 79733 0.6340 +8318 79801 0.4800 +8318 79892 0.7560 +8318 79915 0.8280 +8318 79968 0.4620 +8318 79991 0.4380 +8318 80010 0.4240 +8318 80119 0.7430 +8318 80174 0.4930 +8318 80178 0.6030 +8318 80198 0.6350 +8318 81610 0.5180 +8318 81620 0.9940 +8318 81624 0.5360 +8318 81669 0.4180 +8318 81930 0.6150 +8318 83461 0.7650 +8318 83540 0.8160 +8318 83879 0.6560 +8318 83903 0.4320 +8318 83932 0.5790 +8318 83990 0.5560 +8318 84057 0.8100 +8318 84126 0.8460 +8318 84250 0.9470 +8318 84296 0.9990 +8318 84464 0.4330 +8318 84515 0.9510 +8318 84823 0.5040 +8318 84893 0.4670 +8318 90381 0.9880 +8318 92797 0.5080 +8318 113115 0.4320 +8318 113130 0.9370 +8318 114799 0.5070 +8318 116028 0.6180 +8318 116211 0.7970 +8318 116447 0.6520 +8318 122769 0.9050 +8318 144455 0.5820 +8318 146909 0.4570 +8318 146956 0.5310 +8318 147841 0.4870 +8318 150468 0.7520 +8318 151648 0.4450 +8318 157313 0.6520 +8318 157570 0.8110 +8318 157777 0.8250 +8318 201973 0.4840 +8318 220134 0.4640 +8318 221150 0.6020 +8318 222229 0.4290 +8318 253714 0.4740 +8318 254394 0.9400 +8318 254528 0.4930 +8318 259266 0.7030 +8318 348654 0.4290 +8318 387103 0.5550 +8318 387893 0.4150 +8318 440093 0.4770 +8318 440686 0.4770 +8318 647309 0.4920 +8318 653604 0.4820 +8320 8356 0.4730 +8320 8433 0.5780 +8320 8521 0.5110 +8320 8639 0.4470 +8320 8784 0.4090 +8320 8809 0.4700 +8320 8928 0.8820 +8320 9034 0.4890 +8320 9071 0.4090 +8320 9314 0.4470 +8320 9350 0.4840 +8320 9355 0.4340 +8320 9436 0.5070 +8320 9437 0.6990 +8320 9611 0.4310 +8320 9760 0.4730 +8320 9839 0.4310 +8320 10215 0.4930 +8320 10219 0.8580 +8320 10225 0.4780 +8320 10320 0.4230 +8320 10365 0.7090 +8320 10538 0.6360 +8320 10578 0.5870 +8320 10637 0.4690 +8320 10663 0.6840 +8320 10666 0.5110 +8320 10763 0.6900 +8320 11091 0.4730 +8320 11126 0.6850 +8320 22806 0.4210 +8320 22807 0.4500 +8320 22914 0.6860 +8320 23135 0.5580 +8320 23314 0.7130 +8320 23316 0.4910 +8320 23440 0.4570 +8320 26468 0.4220 +8320 27033 0.5850 +8320 27087 0.5390 +8320 27319 0.4250 +8320 29126 0.5100 +8320 29851 0.6100 +8320 30009 0.4760 +8320 50615 0.4690 +8320 50616 0.5090 +8320 50943 0.6810 +8320 51043 0.4920 +8320 51176 0.7870 +8320 51348 0.5070 +8320 51592 0.5490 +8320 51744 0.6160 +8320 53637 0.4340 +8320 55079 0.5290 +8320 55897 0.4510 +8320 56253 0.4910 +8320 56956 0.5130 +8320 57167 0.4160 +8320 57521 0.4200 +8320 60468 0.4320 +8320 63973 0.6480 +8320 63974 0.5240 +8320 63978 0.4280 +8320 64321 0.7520 +8320 64919 0.7700 +8320 79923 0.8180 +8320 80012 0.5700 +8320 80310 0.4260 +8320 80381 0.5960 +8320 83595 0.4230 +8320 83881 0.8940 +8320 84525 0.5280 +8320 84868 0.6620 +8320 84969 0.4210 +8320 89780 0.4340 +8320 93986 0.4720 +8320 114836 0.5370 +8320 145258 0.6220 +8320 145873 0.4030 +8320 146713 0.5940 +8320 151888 0.4890 +8320 154075 0.5370 +8320 170825 0.5150 +8320 201633 0.7130 +8320 253260 0.4290 +8320 257101 0.6680 +8320 259197 0.4760 +8320 284403 0.7620 +8320 387332 0.8020 +8320 388585 0.4220 +8320 440093 0.4550 +8320 440686 0.4540 +8320 653604 0.4540 +8321 8322 0.5590 +8321 8323 0.5680 +8321 8324 0.7270 +8321 8325 0.7440 +8321 8434 0.4150 +8321 8549 0.4430 +8321 9241 0.4750 +8321 9365 0.4320 +8321 9620 0.4570 +8321 11096 0.4060 +8321 11197 0.7200 +8321 11211 0.4050 +8321 22943 0.9040 +8321 23002 0.6760 +8321 25805 0.9130 +8321 25945 0.4160 +8321 25960 0.6640 +8321 27121 0.6850 +8321 27122 0.5410 +8321 27123 0.8480 +8321 29951 0.4070 +8321 29964 0.4110 +8321 50855 0.5810 +8321 50964 0.7710 +8321 51176 0.5790 +8321 51339 0.5160 +8321 51384 0.9130 +8321 54361 0.9460 +8321 54894 0.9390 +8321 55361 0.5010 +8321 55366 0.4470 +8321 57154 0.5600 +8321 57216 0.6990 +8321 64750 0.5780 +8321 64840 0.4860 +8321 79412 0.4670 +8321 79971 0.4030 +8321 80319 0.4350 +8321 80326 0.9210 +8321 81029 0.9080 +8321 81839 0.5250 +8321 83439 0.4090 +8321 83999 0.6050 +8321 84133 0.9400 +8321 84168 0.5610 +8321 84870 0.4150 +8321 84911 0.5180 +8321 85407 0.5920 +8321 89780 0.9980 +8321 113146 0.4610 +8321 118429 0.5520 +8321 120892 0.5990 +8321 139285 0.5470 +8321 144165 0.4820 +8321 166336 0.4580 +8321 284654 0.4650 +8322 8323 0.5710 +8322 8324 0.5620 +8322 8325 0.5570 +8322 8549 0.4130 +8322 8673 0.5080 +8322 8777 0.4750 +8322 9101 0.4940 +8322 9341 0.5110 +8322 9892 0.4990 +8322 10681 0.5470 +8322 10725 0.4290 +8322 11197 0.5390 +8322 22848 0.5390 +8322 22905 0.5080 +8322 22943 0.6210 +8322 23149 0.4990 +8322 23236 0.5430 +8322 23401 0.4080 +8322 23554 0.9970 +8322 25805 0.9240 +8322 25959 0.4160 +8322 25960 0.8020 +8322 25977 0.5000 +8322 25987 0.7200 +8322 26003 0.4410 +8322 26119 0.5130 +8322 27121 0.4410 +8322 27122 0.4910 +8322 27123 0.4990 +8322 29924 0.4990 +8322 29951 0.4030 +8322 29978 0.5260 +8322 50618 0.5560 +8322 50855 0.5290 +8322 50964 0.4880 +8322 51176 0.5430 +8322 51384 0.9160 +8322 51764 0.4990 +8322 54331 0.4990 +8322 54361 0.9690 +8322 54894 0.9340 +8322 55366 0.5460 +8322 55707 0.5000 +8322 55970 0.5230 +8322 57154 0.5480 +8322 57216 0.7100 +8322 59345 0.5310 +8322 64689 0.4180 +8322 64750 0.5730 +8322 79797 0.7340 +8322 80326 0.8410 +8322 80823 0.4320 +8322 81029 0.9700 +8322 81839 0.4950 +8322 83729 0.4340 +8322 84133 0.9530 +8322 84251 0.5010 +8322 84708 0.4300 +8322 85021 0.5020 +8322 85407 0.4090 +8322 89780 0.9730 +8322 94235 0.4990 +8322 115548 0.5000 +8322 144165 0.4220 +8322 161882 0.4610 +8322 166336 0.4170 +8322 219699 0.4270 +8322 260425 0.8900 +8322 284654 0.4280 +8323 8324 0.5540 +8323 8325 0.5850 +8323 8326 0.4550 +8323 9101 0.4540 +8323 9620 0.9810 +8323 10076 0.4640 +8323 10681 0.5230 +8323 11197 0.4390 +8323 22881 0.4610 +8323 22943 0.5440 +8323 23002 0.7020 +8323 23236 0.5550 +8323 23513 0.7380 +8323 25805 0.9140 +8323 27122 0.4450 +8323 27123 0.4040 +8323 29964 0.6470 +8323 51176 0.5140 +8323 51339 0.5170 +8323 51384 0.9350 +8323 51701 0.4510 +8323 51764 0.4990 +8323 54331 0.4990 +8323 54361 0.9830 +8323 54894 0.9250 +8323 55366 0.4210 +8323 55970 0.5320 +8323 56681 0.4700 +8323 57216 0.9700 +8323 59345 0.5240 +8323 64094 0.4700 +8323 64840 0.6220 +8323 79870 0.4190 +8323 80326 0.9020 +8323 81029 0.9680 +8323 81839 0.9460 +8323 84133 0.9510 +8323 85458 0.4630 +8323 89780 0.9280 +8323 94235 0.4990 +8323 144165 0.7360 +8323 147495 0.4770 +8323 148066 0.4170 +8323 166336 0.6820 +8323 343637 0.4380 +8323 440193 0.4730 +8324 8325 0.5840 +8324 8456 0.6690 +8324 8549 0.5000 +8324 8777 0.4640 +8324 9620 0.4420 +8324 9672 0.5090 +8324 10009 0.5040 +8324 10257 0.4130 +8324 10811 0.4990 +8324 11197 0.4820 +8324 22943 0.5710 +8324 23002 0.7000 +8324 25805 0.9160 +8324 27035 0.5070 +8324 27121 0.4170 +8324 27122 0.4840 +8324 27123 0.4650 +8324 29951 0.4160 +8324 29964 0.4610 +8324 29979 0.4540 +8324 50855 0.7160 +8324 51176 0.5440 +8324 51339 0.5890 +8324 51384 0.8160 +8324 54331 0.8060 +8324 54361 0.9410 +8324 54894 0.9340 +8324 55366 0.4690 +8324 56288 0.5030 +8324 57154 0.5360 +8324 57216 0.7960 +8324 64321 0.5290 +8324 64750 0.5590 +8324 64840 0.4410 +8324 80326 0.9120 +8324 81029 0.9550 +8324 81839 0.6600 +8324 83439 0.4760 +8324 84133 0.9550 +8324 84708 0.4150 +8324 84870 0.6370 +8324 89780 0.9380 +8324 115908 0.4610 +8324 124056 0.4990 +8324 144165 0.6900 +8324 166336 0.4830 +8324 260425 0.6550 +8324 284654 0.6520 +8324 340419 0.5420 +8324 440193 0.4600 +8325 8456 0.6320 +8325 8549 0.4190 +8325 8658 0.4020 +8325 9101 0.4510 +8325 10009 0.4380 +8325 10076 0.6290 +8325 10159 0.5210 +8325 11197 0.4980 +8325 22943 0.7760 +8325 23002 0.4040 +8325 23433 0.4200 +8325 25805 0.9190 +8325 27121 0.7870 +8325 27122 0.7530 +8325 27123 0.7770 +8325 50855 0.6910 +8325 51176 0.4780 +8325 51339 0.5200 +8325 51384 0.8970 +8325 54361 0.9580 +8325 54894 0.9550 +8325 55026 0.5160 +8325 55366 0.4650 +8325 57120 0.5290 +8325 57154 0.5350 +8325 57216 0.6650 +8325 64750 0.5490 +8325 64840 0.5390 +8325 80326 0.9080 +8325 81029 0.9610 +8325 81839 0.5040 +8325 83439 0.4620 +8325 84133 0.9420 +8325 84870 0.7240 +8325 89780 0.9890 +8325 130574 0.7270 +8325 144165 0.4050 +8325 166336 0.4180 +8325 219771 0.4890 +8325 260425 0.4370 +8325 284654 0.7790 +8326 8468 0.7980 +8326 9031 0.7600 +8326 9275 0.6170 +8326 9289 0.5820 +8326 9569 0.7020 +8326 9620 0.7580 +8326 11197 0.5330 +8326 22943 0.5430 +8326 23002 0.4440 +8326 25805 0.9220 +8326 26608 0.7290 +8326 27122 0.5010 +8326 27123 0.4240 +8326 29964 0.5710 +8326 51085 0.5770 +8326 51176 0.5440 +8326 51384 0.8630 +8326 54361 0.9580 +8326 54894 0.9280 +8326 55695 0.5930 +8326 57216 0.8690 +8326 60681 0.8000 +8326 80319 0.4850 +8326 80326 0.8980 +8326 81029 0.9550 +8326 81839 0.6730 +8326 83439 0.4010 +8326 84133 0.9300 +8326 84163 0.4330 +8326 85407 0.4490 +8326 89780 0.9490 +8326 115908 0.7290 +8326 135892 0.6250 +8326 144165 0.6030 +8326 166336 0.5720 +8326 256051 0.4360 +8326 389524 0.4340 +8328 8861 0.7330 +8328 9079 0.7320 +8328 9201 0.4180 +8328 9203 0.5590 +8328 10362 0.5770 +8328 10661 0.5100 +8328 10919 0.6970 +8328 23028 0.9820 +8328 23186 0.9730 +8328 23218 0.5300 +8328 25833 0.4050 +8328 29991 0.4130 +8328 51317 0.5220 +8328 54854 0.4100 +8328 55709 0.4280 +8328 55758 0.4580 +8328 79828 0.5220 +8328 81027 0.4830 +8328 85440 0.4160 +8328 124790 0.4770 +8328 148534 0.4590 +8328 158067 0.4420 +8328 161882 0.5710 +8328 171558 0.4360 +8328 201305 0.4710 +8328 283248 0.5170 +8328 392399 0.4030 +8328 728378 0.4150 +8329 8330 0.9310 +8329 8331 0.9850 +8329 8332 0.9230 +8329 8334 0.9550 +8329 8335 0.9560 +8329 8336 0.9750 +8329 8337 0.9350 +8329 8338 0.9360 +8329 8339 0.9810 +8329 8340 0.8040 +8329 8341 0.8670 +8329 8342 0.9120 +8329 8343 0.9910 +8329 8344 0.9810 +8329 8345 0.9270 +8329 8346 0.9910 +8329 8347 0.9980 +8329 8348 0.9770 +8329 8349 0.9960 +8329 8350 0.7000 +8329 8351 0.7370 +8329 8352 0.7810 +8329 8353 0.6910 +8329 8354 0.6180 +8329 8355 0.7310 +8329 8356 0.8850 +8329 8357 0.7610 +8329 8358 0.7480 +8329 8359 0.9670 +8329 8360 0.9770 +8329 8361 0.9890 +8329 8362 0.9620 +8329 8363 0.9780 +8329 8364 0.9670 +8329 8366 0.9780 +8329 8367 0.9800 +8329 8368 0.9730 +8329 8369 0.5740 +8329 8370 0.9720 +8329 8467 0.8640 +8329 8607 0.6900 +8329 8726 0.7240 +8329 8819 0.4030 +8329 8841 0.6860 +8329 8850 0.5650 +8329 8968 0.7360 +8329 8969 0.9580 +8329 8970 0.9900 +8329 9070 0.8530 +8329 9112 0.4010 +8329 9131 0.6550 +8329 9219 0.4010 +8329 9557 0.9140 +8329 9577 0.5230 +8329 9611 0.4080 +8329 9612 0.4080 +8329 9646 0.8360 +8329 9734 0.6890 +8329 9759 0.6890 +8329 9960 0.5370 +8329 10013 0.6950 +8329 10014 0.6890 +8329 10038 0.4340 +8329 10155 0.4340 +8329 10284 0.5010 +8329 10362 0.4950 +8329 10389 0.9000 +8329 10474 0.5020 +8329 10524 0.4800 +8329 10600 0.4990 +8329 10856 0.6960 +8329 10902 0.4530 +8329 10933 0.4290 +8329 10951 0.6840 +8329 11091 0.8360 +8329 11168 0.8330 +8329 11198 0.6040 +8329 23028 0.5100 +8329 23135 0.4140 +8329 23168 0.8460 +8329 23186 0.4630 +8329 23326 0.5500 +8329 23512 0.9060 +8329 25913 0.8000 +8329 27005 0.4990 +8329 29086 0.5050 +8329 51317 0.4630 +8329 51564 0.6890 +8329 51616 0.5040 +8329 51720 0.4990 +8329 51742 0.5410 +8329 54145 0.5940 +8329 54556 0.4630 +8329 54623 0.8360 +8329 54815 0.4060 +8329 54904 0.9130 +8329 54969 0.4550 +8329 55170 0.4590 +8329 55252 0.4150 +8329 55257 0.4060 +8329 55705 0.9150 +8329 55766 0.8110 +8329 55777 0.4530 +8329 55869 0.7010 +8329 55929 0.4890 +8329 57459 0.4060 +8329 57504 0.4010 +8329 57634 0.5390 +8329 58508 0.8540 +8329 64769 0.4910 +8329 79184 0.4990 +8329 79577 0.8380 +8329 79718 0.4220 +8329 79885 0.6860 +8329 80314 0.5140 +8329 80349 0.8000 +8329 83933 0.7040 +8329 84142 0.5030 +8329 84444 0.9170 +8329 84656 0.4560 +8329 84661 0.8540 +8329 85235 0.9520 +8329 85236 0.9880 +8329 92815 0.4390 +8329 93624 0.5390 +8329 114785 0.4530 +8329 114803 0.5970 +8329 121504 0.9650 +8329 121536 0.4120 +8329 123169 0.8490 +8329 126961 0.9760 +8329 128312 0.7190 +8329 158983 0.4690 +8329 171023 0.4490 +8329 221613 0.4140 +8329 221656 0.5030 +8329 221937 0.4080 +8329 255626 0.7710 +8329 286436 0.4640 +8329 317772 0.9040 +8329 333932 0.9530 +8329 387893 0.9280 +8329 440093 0.4330 +8329 440686 0.4650 +8329 440689 0.9730 +8329 554313 0.9630 +8329 653604 0.9740 +8329 723790 0.8210 +8329 114483833 0.4600 +8330 8331 0.9310 +8330 8332 0.9110 +8330 8334 0.9210 +8330 8335 0.9360 +8330 8336 0.9410 +8330 8337 0.8220 +8330 8338 0.8210 +8330 8339 0.9810 +8330 8340 0.5340 +8330 8341 0.7910 +8330 8342 0.6410 +8330 8343 0.9740 +8330 8344 0.9650 +8330 8345 0.5590 +8330 8346 0.9770 +8330 8347 0.9760 +8330 8348 0.8180 +8330 8349 0.9530 +8330 8350 0.5580 +8330 8351 0.6120 +8330 8352 0.4880 +8330 8354 0.5550 +8330 8355 0.6210 +8330 8356 0.4810 +8330 8357 0.6350 +8330 8358 0.5480 +8330 8359 0.9610 +8330 8360 0.9690 +8330 8361 0.9620 +8330 8362 0.9580 +8330 8363 0.9640 +8330 8364 0.9600 +8330 8366 0.9740 +8330 8367 0.9740 +8330 8368 0.9660 +8330 8370 0.9650 +8330 8467 0.8600 +8330 8968 0.5560 +8330 8969 0.9120 +8330 8970 0.9680 +8330 9070 0.8530 +8330 9557 0.9120 +8330 9646 0.8360 +8330 10038 0.4340 +8330 10389 0.9000 +8330 11091 0.8320 +8330 11168 0.8400 +8330 11198 0.4550 +8330 23135 0.4110 +8330 23168 0.8460 +8330 23512 0.8200 +8330 25913 0.8000 +8330 51427 0.4190 +8330 54145 0.4800 +8330 54623 0.8360 +8330 54904 0.9130 +8330 54969 0.4550 +8330 55705 0.9150 +8330 55766 0.8080 +8330 58508 0.8440 +8330 79577 0.8360 +8330 80349 0.8000 +8330 84444 0.9170 +8330 84656 0.4190 +8330 84661 0.8520 +8330 85235 0.9150 +8330 85236 0.9610 +8330 121504 0.9600 +8330 121536 0.4120 +8330 123169 0.8410 +8330 126961 0.9440 +8330 128312 0.4640 +8330 255626 0.4750 +8330 317772 0.8270 +8330 333932 0.9400 +8330 387893 0.9110 +8330 440689 0.9510 +8330 554313 0.9580 +8330 653604 0.9400 +8330 723790 0.8110 +8331 8332 0.9230 +8331 8334 0.9440 +8331 8335 0.9610 +8331 8336 0.9560 +8331 8337 0.8940 +8331 8338 0.8940 +8331 8339 0.5370 +8331 8340 0.8220 +8331 8341 0.7450 +8331 8342 0.9230 +8331 8343 0.8700 +8331 8344 0.6460 +8331 8345 0.8440 +8331 8346 0.9220 +8331 8347 0.8160 +8331 8348 0.8530 +8331 8349 0.8170 +8331 8350 0.5580 +8331 8351 0.6120 +8331 8352 0.5920 +8331 8353 0.4150 +8331 8354 0.5620 +8331 8355 0.6600 +8331 8356 0.7070 +8331 8357 0.5510 +8331 8358 0.7800 +8331 8359 0.9550 +8331 8360 0.9680 +8331 8361 0.9820 +8331 8362 0.9510 +8331 8363 0.9660 +8331 8364 0.9580 +8331 8366 0.9690 +8331 8367 0.9730 +8331 8368 0.9690 +8331 8369 0.4540 +8331 8370 0.9550 +8331 8467 0.6510 +8331 8468 0.5490 +8331 8535 0.5110 +8331 8607 0.6500 +8331 8726 0.6080 +8331 8819 0.5000 +8331 8841 0.6860 +8331 8850 0.5550 +8331 8932 0.5000 +8331 8968 0.6130 +8331 8969 0.9130 +8331 8970 0.9710 +8331 9031 0.4410 +8331 9070 0.6320 +8331 9112 0.5010 +8331 9126 0.5510 +8331 9131 0.6520 +8331 9188 0.4330 +8331 9219 0.5010 +8331 9261 0.5030 +8331 9533 0.5570 +8331 9577 0.5230 +8331 9611 0.5060 +8331 9612 0.4080 +8331 9687 0.4990 +8331 9734 0.6890 +8331 9759 0.6890 +8331 9935 0.4990 +8331 9960 0.5370 +8331 9985 0.5400 +8331 10013 0.6890 +8331 10014 0.6890 +8331 10051 0.5470 +8331 10111 0.5130 +8331 10155 0.4360 +8331 10274 0.5220 +8331 10284 0.5380 +8331 10362 0.4990 +8331 10388 0.4990 +8331 10389 0.9000 +8331 10419 0.4310 +8331 10474 0.5030 +8331 10524 0.5570 +8331 10526 0.5050 +8331 10592 0.5310 +8331 10600 0.4990 +8331 10664 0.5280 +8331 10734 0.5220 +8331 10735 0.5220 +8331 10856 0.5890 +8331 10902 0.5070 +8331 10919 0.5640 +8331 10933 0.4290 +8331 10951 0.5300 +8331 11083 0.6130 +8331 11091 0.5810 +8331 11176 0.5510 +8331 11198 0.4550 +8331 11335 0.5450 +8331 22823 0.4990 +8331 22955 0.4990 +8331 22976 0.6040 +8331 23028 0.5920 +8331 23030 0.5200 +8331 23054 0.4990 +8331 23081 0.4990 +8331 23112 0.5040 +8331 23133 0.5020 +8331 23135 0.6870 +8331 23186 0.4620 +8331 23309 0.5360 +8331 23310 0.5010 +8331 23326 0.5500 +8331 23378 0.5170 +8331 23411 0.5430 +8331 23451 0.4080 +8331 23466 0.5110 +8331 23512 0.5490 +8331 23595 0.5260 +8331 23626 0.5130 +8331 25855 0.4010 +8331 25885 0.4330 +8331 25913 0.4990 +8331 25942 0.5360 +8331 26108 0.5440 +8331 26147 0.5010 +8331 26277 0.5280 +8331 26523 0.4990 +8331 27005 0.4990 +8331 27127 0.5380 +8331 27161 0.4990 +8331 27327 0.4990 +8331 29086 0.5050 +8331 29115 0.5060 +8331 29128 0.5110 +8331 29781 0.5040 +8331 29947 0.5280 +8331 30834 0.4940 +8331 50511 0.5410 +8331 51176 0.4990 +8331 51317 0.4630 +8331 51548 0.5330 +8331 51564 0.6890 +8331 51616 0.5040 +8331 51720 0.4990 +8331 51742 0.5740 +8331 53615 0.5000 +8331 54145 0.7030 +8331 54386 0.5330 +8331 54556 0.4630 +8331 54815 0.5050 +8331 54892 0.5030 +8331 55170 0.5350 +8331 55247 0.5160 +8331 55252 0.4150 +8331 55257 0.4060 +8331 55766 0.8810 +8331 55777 0.4530 +8331 55869 0.6930 +8331 55929 0.4740 +8331 56158 0.4990 +8331 56979 0.5290 +8331 57332 0.5430 +8331 57459 0.5050 +8331 57504 0.5010 +8331 57634 0.5080 +8331 58508 0.6020 +8331 64425 0.4180 +8331 64426 0.4990 +8331 64769 0.4910 +8331 79084 0.4030 +8331 79184 0.4990 +8331 79447 0.5000 +8331 79595 0.4990 +8331 79685 0.4990 +8331 79718 0.4030 +8331 79813 0.4770 +8331 79885 0.6860 +8331 80012 0.4990 +8331 80314 0.5140 +8331 83439 0.4990 +8331 83933 0.6890 +8331 84142 0.4990 +8331 84172 0.5440 +8331 84444 0.9190 +8331 84733 0.5780 +8331 84962 0.4990 +8331 85235 0.9530 +8331 85236 0.9680 +8331 90780 0.5530 +8331 92815 0.4350 +8331 93426 0.4990 +8331 93624 0.5390 +8331 94239 0.6140 +8331 114785 0.4530 +8331 114803 0.5750 +8331 121504 0.9490 +8331 121536 0.6340 +8331 126961 0.9410 +8331 128312 0.7180 +8331 171023 0.4340 +8331 192669 0.4990 +8331 192670 0.4990 +8331 221613 0.4100 +8331 221656 0.4950 +8331 221937 0.4080 +8331 255626 0.6250 +8331 256126 0.5030 +8331 283149 0.4990 +8331 317772 0.8980 +8331 333932 0.9440 +8331 387893 0.4670 +8331 440689 0.7280 +8331 474382 0.4320 +8331 554313 0.9480 +8331 644186 0.5200 +8331 653604 0.9640 +8331 723790 0.8100 +8331 114483833 0.4950 +8332 8334 0.9130 +8332 8335 0.9310 +8332 8336 0.9240 +8332 8337 0.8030 +8332 8338 0.8330 +8332 8339 0.9760 +8332 8340 0.5450 +8332 8341 0.6790 +8332 8342 0.6000 +8332 8343 0.9640 +8332 8344 0.9660 +8332 8345 0.5540 +8332 8346 0.9690 +8332 8347 0.9760 +8332 8348 0.7610 +8332 8349 0.9500 +8332 8350 0.5410 +8332 8351 0.5790 +8332 8352 0.5160 +8332 8353 0.4300 +8332 8354 0.5830 +8332 8355 0.5830 +8332 8356 0.5690 +8332 8357 0.5920 +8332 8358 0.6100 +8332 8359 0.9660 +8332 8360 0.9670 +8332 8361 0.9600 +8332 8362 0.9600 +8332 8363 0.9660 +8332 8364 0.9630 +8332 8366 0.9680 +8332 8367 0.9660 +8332 8368 0.9700 +8332 8370 0.9670 +8332 8467 0.8600 +8332 8968 0.6220 +8332 8969 0.9100 +8332 8970 0.9660 +8332 9070 0.8530 +8332 9557 0.9120 +8332 9646 0.8360 +8332 10038 0.4340 +8332 10389 0.9000 +8332 11091 0.8320 +8332 11168 0.8370 +8332 11198 0.4550 +8332 23135 0.4080 +8332 23168 0.8460 +8332 23512 0.8200 +8332 25913 0.8000 +8332 51427 0.4020 +8332 54145 0.4940 +8332 54623 0.8360 +8332 54904 0.9130 +8332 54969 0.4550 +8332 55705 0.9150 +8332 55766 0.8030 +8332 58508 0.8590 +8332 79577 0.8360 +8332 80349 0.8000 +8332 84444 0.9170 +8332 84656 0.4190 +8332 84661 0.8520 +8332 85235 0.9230 +8332 85236 0.9620 +8332 121504 0.9640 +8332 121536 0.4120 +8332 123169 0.8410 +8332 126961 0.9460 +8332 128312 0.4610 +8332 255626 0.4650 +8332 317772 0.8460 +8332 333932 0.9420 +8332 387893 0.9110 +8332 440689 0.9510 +8332 554313 0.9600 +8332 653604 0.9460 +8332 723790 0.8140 +8334 8335 0.9120 +8334 8336 0.9430 +8334 8337 0.9720 +8334 8338 0.8800 +8334 8339 0.9800 +8334 8340 0.6500 +8334 8341 0.9880 +8334 8342 0.9880 +8334 8343 0.9850 +8334 8344 0.9790 +8334 8345 0.9920 +8334 8346 0.9740 +8334 8347 0.9900 +8334 8348 0.9900 +8334 8349 0.9940 +8334 8350 0.9330 +8334 8351 0.9650 +8334 8352 0.9340 +8334 8353 0.9300 +8334 8354 0.9310 +8334 8355 0.9340 +8334 8356 0.9630 +8334 8357 0.9850 +8334 8358 0.9420 +8334 8359 0.9690 +8334 8360 0.9700 +8334 8361 0.9930 +8334 8362 0.9680 +8334 8363 0.9700 +8334 8364 0.9690 +8334 8366 0.9710 +8334 8367 0.9770 +8334 8368 0.9690 +8334 8369 0.4800 +8334 8370 0.9790 +8334 8467 0.9280 +8334 8468 0.5490 +8334 8535 0.5120 +8334 8607 0.6530 +8334 8726 0.6110 +8334 8819 0.5070 +8334 8841 0.6910 +8334 8850 0.5720 +8334 8932 0.5050 +8334 8968 0.9430 +8334 8969 0.9330 +8334 8970 0.9880 +8334 9031 0.4450 +8334 9070 0.9240 +8334 9112 0.5010 +8334 9126 0.5660 +8334 9131 0.6570 +8334 9188 0.4410 +8334 9219 0.5050 +8334 9261 0.5230 +8334 9533 0.5590 +8334 9557 0.9120 +8334 9577 0.5270 +8334 9611 0.5170 +8334 9612 0.4080 +8334 9646 0.8390 +8334 9687 0.4990 +8334 9734 0.6890 +8334 9759 0.6890 +8334 9935 0.5070 +8334 9960 0.5440 +8334 9985 0.5510 +8334 10013 0.6900 +8334 10014 0.6890 +8334 10038 0.9420 +8334 10051 0.5540 +8334 10111 0.5200 +8334 10155 0.4460 +8334 10274 0.5300 +8334 10284 0.5440 +8334 10362 0.4950 +8334 10388 0.4990 +8334 10389 0.9000 +8334 10419 0.4380 +8334 10474 0.5020 +8334 10514 0.4080 +8334 10524 0.5570 +8334 10526 0.5060 +8334 10592 0.5340 +8334 10600 0.4990 +8334 10614 0.4050 +8334 10664 0.5540 +8334 10734 0.5220 +8334 10735 0.5340 +8334 10849 0.4080 +8334 10856 0.5920 +8334 10902 0.4570 +8334 10919 0.5670 +8334 10933 0.4370 +8334 10951 0.5380 +8334 11083 0.6180 +8334 11091 0.9130 +8334 11168 0.8130 +8334 11176 0.5370 +8334 11198 0.9440 +8334 11335 0.5340 +8334 22823 0.4990 +8334 22955 0.5010 +8334 22976 0.6100 +8334 23028 0.5940 +8334 23030 0.4990 +8334 23054 0.4990 +8334 23081 0.4990 +8334 23112 0.5040 +8334 23133 0.5110 +8334 23135 0.6890 +8334 23168 0.8490 +8334 23186 0.4640 +8334 23309 0.5430 +8334 23310 0.5030 +8334 23326 0.5500 +8334 23378 0.5210 +8334 23411 0.5600 +8334 23421 0.8000 +8334 23451 0.4130 +8334 23466 0.5380 +8334 23512 0.9070 +8334 23595 0.5250 +8334 23626 0.5130 +8334 25855 0.4040 +8334 25874 0.4100 +8334 25885 0.4360 +8334 25913 0.4990 +8334 25942 0.5440 +8334 26108 0.5440 +8334 26147 0.4990 +8334 26277 0.5300 +8334 26523 0.5040 +8334 27005 0.4990 +8334 27127 0.5460 +8334 27161 0.5030 +8334 27327 0.4990 +8334 29086 0.5130 +8334 29115 0.5130 +8334 29117 0.8190 +8334 29128 0.5030 +8334 29781 0.5020 +8334 29947 0.5280 +8334 30834 0.4940 +8334 50511 0.5920 +8334 51082 0.4040 +8334 51176 0.4990 +8334 51317 0.4810 +8334 51548 0.5410 +8334 51564 0.6940 +8334 51616 0.5040 +8334 51720 0.5070 +8334 51742 0.5880 +8334 53615 0.5040 +8334 54145 0.7010 +8334 54386 0.5950 +8334 54556 0.4650 +8334 54623 0.8370 +8334 54815 0.5090 +8334 54892 0.5010 +8334 54904 0.9130 +8334 54969 0.9450 +8334 55166 0.8020 +8334 55170 0.5380 +8334 55193 0.8520 +8334 55247 0.4990 +8334 55252 0.4150 +8334 55257 0.4110 +8334 55274 0.8190 +8334 55705 0.9160 +8334 55766 0.8870 +8334 55777 0.4530 +8334 55839 0.8180 +8334 55869 0.6940 +8334 55929 0.4840 +8334 56158 0.4990 +8334 56979 0.5290 +8334 57332 0.5430 +8334 57459 0.5090 +8334 57504 0.5050 +8334 57634 0.5230 +8334 58508 0.9170 +8334 64105 0.8000 +8334 64425 0.4230 +8334 64426 0.5080 +8334 64769 0.4910 +8334 64946 0.8090 +8334 79019 0.8020 +8334 79084 0.4110 +8334 79101 0.5260 +8334 79172 0.8090 +8334 79184 0.5060 +8334 79447 0.4990 +8334 79577 0.8450 +8334 79595 0.5110 +8334 79682 0.8000 +8334 79685 0.5110 +8334 79718 0.4860 +8334 79813 0.5020 +8334 79885 0.6860 +8334 80012 0.5110 +8334 80152 0.8000 +8334 80314 0.5170 +8334 80349 0.8010 +8334 83439 0.4990 +8334 83933 0.6890 +8334 84142 0.5030 +8334 84172 0.5450 +8334 84444 0.9190 +8334 84656 0.9420 +8334 84661 0.8540 +8334 84733 0.5110 +8334 84962 0.4990 +8334 85235 0.9450 +8334 85236 0.9940 +8334 90780 0.5530 +8334 91687 0.8170 +8334 92815 0.4740 +8334 93426 0.4990 +8334 93624 0.5390 +8334 94239 0.6360 +8334 114785 0.4540 +8334 114803 0.5750 +8334 121504 0.9680 +8334 121536 0.6390 +8334 123169 0.8520 +8334 124790 0.4110 +8334 126961 0.9440 +8334 128312 0.7550 +8334 171023 0.4480 +8334 192669 0.5000 +8334 192670 0.4990 +8334 196528 0.8260 +8334 201254 0.8000 +8334 221613 0.4070 +8334 221656 0.4950 +8334 221830 0.4090 +8334 221937 0.4760 +8334 255626 0.7030 +8334 256126 0.5010 +8334 283149 0.4990 +8334 317772 0.8820 +8334 333932 0.9460 +8334 378708 0.8080 +8334 387103 0.8080 +8334 387893 0.9440 +8334 401541 0.8020 +8334 440689 0.9860 +8334 474382 0.4320 +8334 554313 0.9710 +8334 644186 0.5200 +8334 653604 0.9610 +8334 723790 0.8300 +8334 114483833 0.4370 +8335 8336 0.9460 +8335 8339 0.6940 +8335 8340 0.5630 +8335 8341 0.4660 +8335 8342 0.7600 +8335 8343 0.7480 +8335 8344 0.5970 +8335 8345 0.6460 +8335 8346 0.7070 +8335 8347 0.6460 +8335 8348 0.9030 +8335 8349 0.9690 +8335 8350 0.9860 +8335 8351 0.9820 +8335 8352 0.9870 +8335 8353 0.9840 +8335 8354 0.9830 +8335 8355 0.9820 +8335 8356 0.9840 +8335 8357 0.9790 +8335 8358 0.9840 +8335 8359 0.9930 +8335 8360 0.9950 +8335 8361 0.9920 +8335 8362 0.9900 +8335 8363 0.9920 +8335 8364 0.9910 +8335 8366 0.9950 +8335 8367 0.9930 +8335 8368 0.9940 +8335 8369 0.4050 +8335 8370 0.9910 +8335 8467 0.8600 +8335 8607 0.8600 +8335 8968 0.9840 +8335 8969 0.9210 +8335 8970 0.9760 +8335 8971 0.8310 +8335 9070 0.8530 +8335 9555 0.9000 +8335 9557 0.9120 +8335 9646 0.8360 +8335 10038 0.4990 +8335 10856 0.8630 +8335 11091 0.8320 +8335 11168 0.8130 +8335 11198 0.4550 +8335 23168 0.8460 +8335 23512 0.8190 +8335 54145 0.4150 +8335 54617 0.8210 +8335 54623 0.8370 +8335 54904 0.9130 +8335 54969 0.6620 +8335 55705 0.9150 +8335 58508 0.8410 +8335 79577 0.8370 +8335 79913 0.8540 +8335 80349 0.8000 +8335 83444 0.8150 +8335 84444 0.9170 +8335 84656 0.4880 +8335 84661 0.8530 +8335 85235 0.9440 +8335 85236 0.9680 +8335 115004 0.9060 +8335 121504 0.9900 +8335 123169 0.8580 +8335 126961 0.9720 +8335 128312 0.9430 +8335 255626 0.9360 +8335 317772 0.4440 +8335 333932 0.9720 +8335 387893 0.9110 +8335 391769 0.9270 +8335 440093 0.9240 +8335 440689 0.5620 +8335 554313 0.9900 +8335 653604 0.9660 +8336 8337 0.8900 +8336 8338 0.8390 +8336 8339 0.9900 +8336 8340 0.6370 +8336 8341 0.8090 +8336 8342 0.6990 +8336 8343 0.9900 +8336 8344 0.9750 +8336 8345 0.8330 +8336 8346 0.9850 +8336 8347 0.9880 +8336 8348 0.9680 +8336 8349 0.9950 +8336 8350 0.6350 +8336 8351 0.8240 +8336 8352 0.7580 +8336 8353 0.6850 +8336 8354 0.5210 +8336 8355 0.6800 +8336 8356 0.7110 +8336 8357 0.8780 +8336 8358 0.7250 +8336 8359 0.9610 +8336 8360 0.9740 +8336 8361 0.9760 +8336 8362 0.9580 +8336 8363 0.9740 +8336 8364 0.9630 +8336 8366 0.9730 +8336 8367 0.9890 +8336 8368 0.9640 +8336 8369 0.5210 +8336 8370 0.9780 +8336 8467 0.8620 +8336 8968 0.7640 +8336 8969 0.9500 +8336 8970 0.9810 +8336 9070 0.8530 +8336 9557 0.9180 +8336 9646 0.8360 +8336 10038 0.4540 +8336 10389 0.9000 +8336 11091 0.8350 +8336 11168 0.8320 +8336 11198 0.4740 +8336 23135 0.4140 +8336 23168 0.8460 +8336 23512 0.8200 +8336 25913 0.8000 +8336 54145 0.5490 +8336 54623 0.8370 +8336 54904 0.9130 +8336 54969 0.4610 +8336 55705 0.9180 +8336 55766 0.8200 +8336 58508 0.8430 +8336 79577 0.8400 +8336 80349 0.8000 +8336 84444 0.9170 +8336 84656 0.4650 +8336 84661 0.8530 +8336 85235 0.9280 +8336 85236 0.9720 +8336 121504 0.9580 +8336 121536 0.4120 +8336 123169 0.8510 +8336 126961 0.9750 +8336 128312 0.5090 +8336 158983 0.4370 +8336 255626 0.5610 +8336 286436 0.4300 +8336 317772 0.8500 +8336 333932 0.9490 +8336 387893 0.9110 +8336 440093 0.4170 +8336 440686 0.4750 +8336 440689 0.9540 +8336 554313 0.9560 +8336 653604 0.9540 +8336 723790 0.8150 +8336 114483833 0.4190 +8337 8338 0.9380 +8337 8339 0.9770 +8337 8340 0.8890 +8337 8341 0.9160 +8337 8342 0.8990 +8337 8343 0.9740 +8337 8344 0.9750 +8337 8345 0.9430 +8337 8346 0.9650 +8337 8347 0.9960 +8337 8348 0.9780 +8337 8349 0.9990 +8337 8350 0.5360 +8337 8351 0.7260 +8337 8352 0.8840 +8337 8353 0.8790 +8337 8354 0.4390 +8337 8355 0.5330 +8337 8356 0.9990 +8337 8357 0.6700 +8337 8358 0.4480 +8337 8359 0.9720 +8337 8360 0.9730 +8337 8361 0.9990 +8337 8362 0.9710 +8337 8363 0.9730 +8337 8364 0.9720 +8337 8366 0.9720 +8337 8367 0.9770 +8337 8368 0.9700 +8337 8369 0.9990 +8337 8370 0.9830 +8337 8467 0.9150 +8337 8468 0.5720 +8337 8520 0.4020 +8337 8535 0.6810 +8337 8607 0.8770 +8337 8726 0.8800 +8337 8815 0.4900 +8337 8819 0.5800 +8337 8841 0.8290 +8337 8850 0.8240 +8337 8932 0.6110 +8337 8968 0.5460 +8337 8969 0.8850 +8337 8970 0.9410 +8337 8971 0.5160 +8337 9013 0.4250 +8337 9014 0.4310 +8337 9025 0.8590 +8337 9031 0.5970 +8337 9070 0.7600 +8337 9112 0.5970 +8337 9126 0.6850 +8337 9131 0.6610 +8337 9156 0.4920 +8337 9188 0.4970 +8337 9212 0.7890 +8337 9219 0.5910 +8337 9261 0.5030 +8337 9271 0.4060 +8337 9533 0.6160 +8337 9557 0.5300 +8337 9577 0.6580 +8337 9611 0.6670 +8337 9612 0.5340 +8337 9656 0.7590 +8337 9682 0.5050 +8337 9687 0.5240 +8337 9700 0.5090 +8337 9730 0.4560 +8337 9734 0.8030 +8337 9739 0.6710 +8337 9759 0.8300 +8337 9810 0.5020 +8337 9869 0.5120 +8337 9935 0.5230 +8337 9960 0.7640 +8337 9985 0.6340 +8337 10013 0.8060 +8337 10014 0.7770 +8337 10038 0.5250 +8337 10051 0.6180 +8337 10075 0.5580 +8337 10111 0.5670 +8337 10138 0.4140 +8337 10146 0.4440 +8337 10155 0.5940 +8337 10274 0.6310 +8337 10284 0.5970 +8337 10360 0.5040 +8337 10361 0.6050 +8337 10362 0.5600 +8337 10388 0.5090 +8337 10389 0.9210 +8337 10419 0.8600 +8337 10428 0.4560 +8337 10459 0.5730 +8337 10467 0.4790 +8337 10474 0.6100 +8337 10498 0.4340 +8337 10514 0.4610 +8337 10524 0.9460 +8337 10526 0.5050 +8337 10589 0.6310 +8337 10592 0.5460 +8337 10600 0.8870 +8337 10664 0.7480 +8337 10734 0.5220 +8337 10735 0.5610 +8337 10765 0.4570 +8337 10847 0.8080 +8337 10849 0.4010 +8337 10856 0.8540 +8337 10902 0.7090 +8337 10919 0.8060 +8337 10933 0.8070 +8337 10951 0.7600 +8337 11004 0.5180 +8337 11073 0.4560 +8337 11074 0.4430 +8337 11083 0.6340 +8337 11091 0.7550 +8337 11143 0.4980 +8337 11176 0.6490 +8337 11177 0.6730 +8337 11198 0.9720 +8337 11200 0.6030 +8337 11201 0.4440 +8337 11335 0.7270 +8337 22823 0.6340 +8337 22933 0.5700 +8337 22955 0.5860 +8337 22976 0.8430 +8337 23028 0.8180 +8337 23030 0.6600 +8337 23054 0.5340 +8337 23067 0.4960 +8337 23081 0.6400 +8337 23112 0.5040 +8337 23133 0.6410 +8337 23135 0.8280 +8337 23137 0.4090 +8337 23168 0.4430 +8337 23186 0.6650 +8337 23244 0.6140 +8337 23284 0.4560 +8337 23309 0.5850 +8337 23310 0.5760 +8337 23326 0.8500 +8337 23378 0.7140 +8337 23411 0.7810 +8337 23429 0.5020 +8337 23451 0.4580 +8337 23466 0.6430 +8337 23468 0.5450 +8337 23476 0.5010 +8337 23492 0.4320 +8337 23512 0.8560 +8337 23522 0.4440 +8337 23569 0.5050 +8337 23595 0.5550 +8337 23626 0.6640 +8337 23774 0.4300 +8337 25842 0.5980 +8337 25855 0.4150 +8337 25885 0.4780 +8337 25913 0.5390 +8337 25942 0.6760 +8337 26013 0.4350 +8337 26108 0.5590 +8337 26122 0.5250 +8337 26147 0.6380 +8337 26277 0.5960 +8337 26523 0.5700 +8337 27000 0.6900 +8337 27005 0.8470 +8337 27127 0.5740 +8337 27161 0.5780 +8337 27238 0.4200 +8337 27327 0.5090 +8337 28989 0.4540 +8337 29072 0.6720 +8337 29086 0.6760 +8337 29105 0.4620 +8337 29115 0.5100 +8337 29128 0.6880 +8337 29781 0.5130 +8337 29947 0.7130 +8337 29994 0.4890 +8337 30834 0.5150 +8337 50511 0.6510 +8337 51082 0.4310 +8337 51176 0.5450 +8337 51317 0.5810 +8337 51412 0.4020 +8337 51548 0.6940 +8337 51564 0.7830 +8337 51616 0.5040 +8337 51720 0.9340 +8337 51742 0.5920 +8337 53615 0.5040 +8337 54107 0.5870 +8337 54108 0.5550 +8337 54145 0.9020 +8337 54205 0.5600 +8337 54386 0.5360 +8337 54496 0.4040 +8337 54556 0.7530 +8337 54815 0.7220 +8337 54840 0.6480 +8337 54892 0.5570 +8337 54969 0.4330 +8337 55135 0.4560 +8337 55143 0.6120 +8337 55167 0.4520 +8337 55170 0.7750 +8337 55193 0.4750 +8337 55247 0.4990 +8337 55252 0.5760 +8337 55257 0.4950 +8337 55352 0.5180 +8337 55355 0.4790 +8337 55573 0.5930 +8337 55636 0.4420 +8337 55705 0.6750 +8337 55723 0.5190 +8337 55766 0.9000 +8337 55777 0.4740 +8337 55785 0.4070 +8337 55839 0.4290 +8337 55869 0.8490 +8337 55920 0.4020 +8337 55929 0.7660 +8337 56158 0.5050 +8337 56254 0.8180 +8337 56655 0.4260 +8337 56852 0.6710 +8337 56916 0.7820 +8337 56943 0.4490 +8337 56979 0.6180 +8337 57332 0.6900 +8337 57459 0.6550 +8337 57504 0.5580 +8337 57634 0.9060 +8337 58508 0.7140 +8337 60496 0.4360 +8337 64324 0.4120 +8337 64425 0.4490 +8337 64426 0.5860 +8337 64769 0.7710 +8337 79084 0.8260 +8337 79101 0.4020 +8337 79184 0.7280 +8337 79447 0.5120 +8337 79595 0.5030 +8337 79685 0.5200 +8337 79718 0.5160 +8337 79723 0.4320 +8337 79813 0.6300 +8337 79829 0.4550 +8337 79885 0.8270 +8337 79923 0.5730 +8337 79960 0.4890 +8337 79968 0.5850 +8337 80012 0.5940 +8337 80312 0.4300 +8337 80314 0.7050 +8337 80854 0.5090 +8337 81611 0.6670 +8337 83439 0.4990 +8337 83903 0.7410 +8337 83933 0.7810 +8337 83983 0.4480 +8337 84101 0.4170 +8337 84142 0.6600 +8337 84148 0.6190 +8337 84172 0.7150 +8337 84444 0.6590 +8337 84661 0.4470 +8337 84678 0.5240 +8337 84733 0.6970 +8337 84759 0.5280 +8337 84962 0.4990 +8337 85235 0.8760 +8337 85236 0.9970 +8337 90780 0.5830 +8337 90865 0.7510 +8337 91137 0.4790 +8337 92292 0.4850 +8337 92815 0.4970 +8337 93426 0.4990 +8337 93624 0.6080 +8337 94239 0.8630 +8337 114785 0.5210 +8337 114803 0.8440 +8337 115004 0.9500 +8337 121504 0.9720 +8337 121536 0.9050 +8337 125476 0.5450 +8337 126961 0.9730 +8337 128312 0.8920 +8337 132243 0.4830 +8337 133482 0.5070 +8337 143689 0.4030 +8337 144108 0.4930 +8337 151246 0.5300 +8337 151648 0.9290 +8337 157570 0.4870 +8337 158983 0.8240 +8337 165918 0.9610 +8337 171023 0.7400 +8337 192669 0.5270 +8337 192670 0.5720 +8337 199990 0.4520 +8337 200558 0.7280 +8337 221302 0.5130 +8337 221613 0.6180 +8337 221656 0.6660 +8337 221830 0.4530 +8337 221937 0.5080 +8337 254225 0.7480 +8337 255626 0.9050 +8337 256126 0.5150 +8337 283149 0.4990 +8337 286204 0.7710 +8337 286436 0.8150 +8337 317772 0.9410 +8337 333932 0.9420 +8337 340096 0.5840 +8337 341567 0.4190 +8337 387893 0.7070 +8337 391769 0.5850 +8337 440093 0.9980 +8337 440686 0.9980 +8337 440689 0.9620 +8337 474382 0.4700 +8337 554313 0.9720 +8337 644186 0.5340 +8337 653604 0.9990 +8337 723790 0.9000 +8337 100532731 0.8520 +8337 114483833 0.8180 +8338 8339 0.9580 +8338 8340 0.9090 +8338 8341 0.8970 +8338 8342 0.9080 +8338 8343 0.9600 +8338 8344 0.9630 +8338 8345 0.9250 +8338 8346 0.9620 +8338 8347 0.9910 +8338 8348 0.9390 +8338 8349 0.9990 +8338 8350 0.9770 +8338 8351 0.9420 +8338 8352 0.9880 +8338 8353 0.9870 +8338 8354 0.9420 +8338 8355 0.9410 +8338 8356 0.9990 +8338 8357 0.9410 +8338 8358 0.9640 +8338 8359 0.9740 +8338 8360 0.9750 +8338 8361 0.9990 +8338 8362 0.9690 +8338 8363 0.9740 +8338 8364 0.9730 +8338 8366 0.9760 +8338 8367 0.9740 +8338 8368 0.9720 +8338 8369 0.9990 +8338 8370 0.9790 +8338 8450 0.4370 +8338 8467 0.9140 +8338 8468 0.5720 +8338 8520 0.5550 +8338 8535 0.6790 +8338 8607 0.8750 +8338 8726 0.8720 +8338 8815 0.4700 +8338 8819 0.5750 +8338 8841 0.8280 +8338 8850 0.8700 +8338 8932 0.6070 +8338 8968 0.9460 +8338 8969 0.8810 +8338 8970 0.9170 +8338 8971 0.5040 +8338 9013 0.4060 +8338 9014 0.7090 +8338 9015 0.5630 +8338 9025 0.9280 +8338 9031 0.5970 +8338 9055 0.4120 +8338 9070 0.7580 +8338 9099 0.4300 +8338 9101 0.4180 +8338 9112 0.5960 +8338 9126 0.6770 +8338 9131 0.6550 +8338 9156 0.5020 +8338 9188 0.5390 +8338 9212 0.7890 +8338 9219 0.5850 +8338 9261 0.5000 +8338 9271 0.4060 +8338 9533 0.6150 +8338 9577 0.6580 +8338 9611 0.6650 +8338 9612 0.5260 +8338 9656 0.7590 +8338 9682 0.5050 +8338 9687 0.5240 +8338 9700 0.5120 +8338 9730 0.4490 +8338 9734 0.7990 +8338 9739 0.6710 +8338 9759 0.8300 +8338 9810 0.5010 +8338 9869 0.5090 +8338 9935 0.5110 +8338 9958 0.4560 +8338 9960 0.7620 +8338 9985 0.6320 +8338 10013 0.8050 +8338 10014 0.8350 +8338 10038 0.4560 +8338 10051 0.6240 +8338 10075 0.5610 +8338 10111 0.5620 +8338 10138 0.4140 +8338 10155 0.5880 +8338 10274 0.6290 +8338 10284 0.5920 +8338 10360 0.5010 +8338 10361 0.6050 +8338 10362 0.5520 +8338 10388 0.5090 +8338 10389 0.9210 +8338 10419 0.8940 +8338 10428 0.4370 +8338 10459 0.5700 +8338 10467 0.4680 +8338 10474 0.6120 +8338 10498 0.4290 +8338 10514 0.4590 +8338 10524 0.9460 +8338 10526 0.5050 +8338 10589 0.6250 +8338 10592 0.6750 +8338 10600 0.8980 +8338 10664 0.8290 +8338 10734 0.5220 +8338 10735 0.5530 +8338 10765 0.4540 +8338 10847 0.8070 +8338 10849 0.4010 +8338 10856 0.8330 +8338 10902 0.7090 +8338 10919 0.8050 +8338 10933 0.8550 +8338 10951 0.7600 +8338 11004 0.5230 +8338 11073 0.4540 +8338 11074 0.4480 +8338 11083 0.6330 +8338 11091 0.7520 +8338 11143 0.6270 +8338 11176 0.6530 +8338 11177 0.6660 +8338 11198 0.9720 +8338 11200 0.6030 +8338 11201 0.4390 +8338 11335 0.7270 +8338 22823 0.6340 +8338 22919 0.4120 +8338 22933 0.5700 +8338 22955 0.5860 +8338 22976 0.8420 +8338 23028 0.8170 +8338 23030 0.6550 +8338 23054 0.5340 +8338 23067 0.4960 +8338 23081 0.6400 +8338 23112 0.5040 +8338 23133 0.6370 +8338 23135 0.8280 +8338 23137 0.4080 +8338 23168 0.4390 +8338 23186 0.6620 +8338 23244 0.5510 +8338 23284 0.4560 +8338 23304 0.6050 +8338 23309 0.5880 +8338 23310 0.5710 +8338 23326 0.8890 +8338 23378 0.7130 +8338 23397 0.4490 +8338 23411 0.7810 +8338 23429 0.4950 +8338 23451 0.4490 +8338 23466 0.6420 +8338 23468 0.5440 +8338 23476 0.4970 +8338 23492 0.4320 +8338 23512 0.8560 +8338 23522 0.4430 +8338 23569 0.5050 +8338 23595 0.5510 +8338 23626 0.6680 +8338 23774 0.4270 +8338 25842 0.5970 +8338 25855 0.4040 +8338 25885 0.4770 +8338 25913 0.6600 +8338 25942 0.6730 +8338 26013 0.4350 +8338 26108 0.5590 +8338 26122 0.5260 +8338 26147 0.6400 +8338 26277 0.5950 +8338 26523 0.5650 +8338 27000 0.5810 +8338 27005 0.7950 +8338 27127 0.5700 +8338 27161 0.5760 +8338 27238 0.4080 +8338 27327 0.5090 +8338 28989 0.4470 +8338 29072 0.6690 +8338 29086 0.6740 +8338 29105 0.4570 +8338 29115 0.5220 +8338 29128 0.6880 +8338 29781 0.5130 +8338 29947 0.7880 +8338 29994 0.4890 +8338 30813 0.4200 +8338 30827 0.4060 +8338 30834 0.5180 +8338 50511 0.6510 +8338 51082 0.4310 +8338 51176 0.5470 +8338 51317 0.5730 +8338 51412 0.4020 +8338 51547 0.5310 +8338 51548 0.7260 +8338 51564 0.7810 +8338 51616 0.5040 +8338 51720 0.9660 +8338 51742 0.5800 +8338 53615 0.5000 +8338 54107 0.5840 +8338 54108 0.5530 +8338 54145 0.9050 +8338 54205 0.5560 +8338 54386 0.5330 +8338 54496 0.5600 +8338 54556 0.7530 +8338 54617 0.5190 +8338 54815 0.7960 +8338 54840 0.6490 +8338 54892 0.5570 +8338 54969 0.5160 +8338 55135 0.4560 +8338 55143 0.6150 +8338 55167 0.4520 +8338 55170 0.6930 +8338 55193 0.4720 +8338 55247 0.5100 +8338 55252 0.5760 +8338 55257 0.4920 +8338 55352 0.5190 +8338 55355 0.4810 +8338 55573 0.5900 +8338 55636 0.4470 +8338 55705 0.6460 +8338 55723 0.5190 +8338 55766 0.8770 +8338 55777 0.4740 +8338 55785 0.4070 +8338 55839 0.4290 +8338 55869 0.8500 +8338 55929 0.7650 +8338 56158 0.5050 +8338 56254 0.8230 +8338 56655 0.4260 +8338 56852 0.7270 +8338 56916 0.7820 +8338 56943 0.4450 +8338 56970 0.4900 +8338 56979 0.6180 +8338 57332 0.6910 +8338 57459 0.7430 +8338 57504 0.5570 +8338 57634 0.9060 +8338 58508 0.7140 +8338 60496 0.4320 +8338 64324 0.4130 +8338 64425 0.4470 +8338 64426 0.5890 +8338 64769 0.7710 +8338 64854 0.5050 +8338 79084 0.8210 +8338 79101 0.4010 +8338 79184 0.7280 +8338 79447 0.5140 +8338 79595 0.4990 +8338 79685 0.4990 +8338 79718 0.5140 +8338 79723 0.4320 +8338 79813 0.6290 +8338 79829 0.7090 +8338 79885 0.8270 +8338 79923 0.5740 +8338 79960 0.4890 +8338 80012 0.5930 +8338 80312 0.4300 +8338 80314 0.7050 +8338 80854 0.5900 +8338 81611 0.6640 +8338 83439 0.4990 +8338 83903 0.7250 +8338 83933 0.7810 +8338 83983 0.6040 +8338 84101 0.4170 +8338 84142 0.6600 +8338 84148 0.6190 +8338 84172 0.7210 +8338 84444 0.6560 +8338 84661 0.4470 +8338 84678 0.5240 +8338 84733 0.6960 +8338 84759 0.5290 +8338 84962 0.4990 +8338 85235 0.9040 +8338 85236 0.9920 +8338 90780 0.5860 +8338 90865 0.6650 +8338 91137 0.4790 +8338 92292 0.4850 +8338 92815 0.4370 +8338 93426 0.4990 +8338 93624 0.6080 +8338 94239 0.6250 +8338 114785 0.5140 +8338 114803 0.9200 +8338 115004 0.9500 +8338 121504 0.9730 +8338 121536 0.8880 +8338 125476 0.5460 +8338 126961 0.9790 +8338 128312 0.9160 +8338 132243 0.4850 +8338 133482 0.5070 +8338 140690 0.5370 +8338 143689 0.4020 +8338 144108 0.4920 +8338 151246 0.5310 +8338 151648 0.9160 +8338 158880 0.5520 +8338 158983 0.8240 +8338 165918 0.9830 +8338 171023 0.7400 +8338 192669 0.5260 +8338 192670 0.5690 +8338 199990 0.4520 +8338 200558 0.7260 +8338 219333 0.5240 +8338 221302 0.5130 +8338 221613 0.6170 +8338 221656 0.6670 +8338 221830 0.4520 +8338 221937 0.5040 +8338 254225 0.7470 +8338 255626 0.9950 +8338 256126 0.5150 +8338 283149 0.5070 +8338 286204 0.7710 +8338 286436 0.8140 +8338 317772 0.9140 +8338 333932 0.9530 +8338 340096 0.5840 +8338 341567 0.4200 +8338 387893 0.7070 +8338 391769 0.5990 +8338 440093 0.9980 +8338 440686 0.9980 +8338 440689 0.9030 +8338 474382 0.4680 +8338 554313 0.9720 +8338 644186 0.5340 +8338 653604 0.9990 +8338 723790 0.9090 +8338 100532731 0.7740 +8338 114483833 0.8210 +8339 8341 0.8700 +8339 8342 0.8680 +8339 8343 0.9460 +8339 8344 0.9400 +8339 8345 0.9140 +8339 8346 0.9310 +8339 8347 0.9280 +8339 8348 0.9030 +8339 8349 0.9420 +8339 8350 0.9200 +8339 8351 0.9550 +8339 8352 0.9140 +8339 8353 0.9070 +8339 8354 0.9100 +8339 8355 0.9280 +8339 8356 0.9270 +8339 8357 0.9490 +8339 8358 0.9270 +8339 8359 0.9670 +8339 8360 0.9740 +8339 8361 0.9710 +8339 8362 0.9650 +8339 8363 0.9680 +8339 8364 0.9690 +8339 8366 0.9720 +8339 8367 0.9830 +8339 8368 0.9670 +8339 8369 0.4590 +8339 8370 0.9730 +8339 8968 0.9640 +8339 8969 0.9820 +8339 8970 0.5500 +8339 9555 0.4710 +8339 10524 0.4780 +8339 10847 0.5650 +8339 10856 0.5280 +8339 10902 0.6100 +8339 11198 0.9440 +8339 23421 0.8030 +8339 26122 0.4650 +8339 29072 0.8610 +8339 29117 0.8230 +8339 54556 0.4050 +8339 55166 0.8030 +8339 55193 0.8260 +8339 55274 0.8300 +8339 55506 0.4460 +8339 55677 0.4100 +8339 55766 0.9520 +8339 55839 0.9100 +8339 55929 0.4290 +8339 57634 0.4970 +8339 64105 0.8040 +8339 64431 0.5980 +8339 64946 0.8070 +8339 79019 0.8030 +8339 79172 0.8070 +8339 79682 0.8040 +8339 80152 0.8380 +8339 83740 0.4790 +8339 84196 0.4470 +8339 84656 0.4850 +8339 85235 0.4930 +8339 91687 0.8120 +8339 92815 0.5460 +8339 94239 0.4050 +8339 121504 0.9690 +8339 126961 0.9030 +8339 196528 0.8090 +8339 201254 0.8000 +8339 221613 0.9380 +8339 317772 0.5650 +8339 333932 0.8800 +8339 378708 0.8050 +8339 387103 0.8030 +8339 401541 0.8020 +8339 440093 0.4270 +8339 440686 0.4230 +8339 440689 0.8360 +8339 474381 0.4280 +8339 554313 0.9670 +8339 653604 0.8940 +8339 723790 0.9540 +8340 8341 0.5870 +8340 8342 0.7270 +8340 8345 0.5410 +8340 8346 0.4010 +8340 8347 0.4950 +8340 8348 0.6610 +8340 8349 0.5330 +8340 8350 0.6370 +8340 8351 0.6230 +8340 8352 0.7140 +8340 8353 0.6450 +8340 8354 0.6800 +8340 8355 0.6270 +8340 8356 0.9390 +8340 8357 0.6360 +8340 8358 0.7140 +8340 8359 0.7210 +8340 8360 0.7510 +8340 8361 0.9360 +8340 8362 0.6760 +8340 8363 0.7310 +8340 8364 0.6970 +8340 8366 0.7650 +8340 8367 0.7270 +8340 8368 0.7700 +8340 8369 0.8370 +8340 8370 0.6950 +8340 8467 0.7340 +8340 8468 0.5690 +8340 8535 0.5070 +8340 8607 0.7550 +8340 8726 0.6250 +8340 8819 0.5030 +8340 8841 0.7200 +8340 8850 0.7000 +8340 8900 0.6200 +8340 8924 0.5340 +8340 8932 0.5270 +8340 8968 0.6780 +8340 8969 0.4380 +8340 8970 0.5610 +8340 9013 0.4050 +8340 9025 0.5960 +8340 9031 0.4710 +8340 9070 0.5720 +8340 9094 0.4200 +8340 9112 0.5190 +8340 9126 0.6340 +8340 9188 0.4190 +8340 9212 0.4790 +8340 9219 0.5010 +8340 9261 0.5080 +8340 9533 0.5620 +8340 9555 0.5920 +8340 9611 0.5600 +8340 9612 0.4530 +8340 9646 0.7570 +8340 9656 0.5840 +8340 9682 0.5660 +8340 9687 0.5130 +8340 9700 0.4010 +8340 9734 0.7240 +8340 9739 0.6710 +8340 9759 0.7280 +8340 9810 0.8910 +8340 9929 0.4760 +8340 9935 0.4990 +8340 9960 0.5730 +8340 9985 0.6000 +8340 10013 0.7690 +8340 10014 0.7060 +8340 10051 0.5780 +8340 10111 0.5120 +8340 10112 0.4100 +8340 10155 0.4710 +8340 10274 0.5730 +8340 10284 0.4990 +8340 10362 0.5000 +8340 10388 0.4990 +8340 10474 0.6060 +8340 10514 0.4010 +8340 10524 0.6340 +8340 10526 0.5090 +8340 10592 0.5570 +8340 10664 0.6000 +8340 10673 0.4220 +8340 10734 0.5290 +8340 10735 0.5390 +8340 10919 0.6360 +8340 10951 0.5670 +8340 11083 0.5360 +8340 11091 0.6120 +8340 11144 0.5050 +8340 11176 0.5470 +8340 11198 0.4810 +8340 11200 0.6450 +8340 11335 0.5410 +8340 22823 0.5120 +8340 22955 0.5050 +8340 22976 0.5210 +8340 23028 0.6460 +8340 23030 0.7280 +8340 23054 0.5030 +8340 23067 0.5270 +8340 23081 0.5470 +8340 23112 0.5150 +8340 23133 0.5350 +8340 23135 0.6730 +8340 23168 0.7900 +8340 23186 0.4910 +8340 23309 0.5260 +8340 23310 0.5630 +8340 23326 0.8730 +8340 23378 0.4990 +8340 23411 0.6550 +8340 23466 0.5070 +8340 23512 0.5720 +8340 23595 0.5180 +8340 23626 0.5820 +8340 25862 0.6530 +8340 25885 0.4680 +8340 25913 0.4990 +8340 25942 0.5450 +8340 26108 0.5280 +8340 26147 0.5140 +8340 26277 0.5370 +8340 26523 0.5480 +8340 27030 0.4990 +8340 27127 0.5550 +8340 27161 0.5680 +8340 27327 0.4990 +8340 29072 0.4310 +8340 29115 0.4990 +8340 29128 0.5810 +8340 29781 0.5440 +8340 29893 0.4010 +8340 29947 0.5640 +8340 30834 0.4650 +8340 50511 0.5440 +8340 51176 0.5280 +8340 51317 0.4850 +8340 51322 0.6430 +8340 51548 0.5760 +8340 51564 0.7300 +8340 51574 0.5440 +8340 51588 0.5260 +8340 51616 0.7330 +8340 51720 0.5590 +8340 51742 0.5650 +8340 53615 0.5040 +8340 54145 0.5030 +8340 54386 0.5460 +8340 54623 0.7570 +8340 54815 0.4990 +8340 54892 0.5200 +8340 55070 0.7270 +8340 55156 0.4680 +8340 55170 0.5340 +8340 55183 0.5310 +8340 55247 0.5230 +8340 55506 0.4090 +8340 55766 0.6870 +8340 55848 0.5840 +8340 55869 0.7320 +8340 56154 0.4310 +8340 56158 0.4990 +8340 56254 0.9240 +8340 56943 0.5430 +8340 56979 0.5390 +8340 57332 0.5290 +8340 57459 0.4990 +8340 57504 0.4990 +8340 58508 0.6390 +8340 64421 0.4990 +8340 64426 0.4990 +8340 79101 0.4110 +8340 79447 0.5040 +8340 79577 0.8140 +8340 79595 0.4990 +8340 79685 0.4990 +8340 79718 0.4650 +8340 79813 0.4950 +8340 79885 0.7010 +8340 80012 0.5430 +8340 80349 0.5720 +8340 83439 0.4990 +8340 83933 0.7030 +8340 84057 0.4160 +8340 84142 0.5210 +8340 84172 0.5550 +8340 84444 0.6590 +8340 84656 0.4570 +8340 84733 0.5160 +8340 84962 0.5010 +8340 85235 0.7280 +8340 85236 0.5240 +8340 90780 0.5580 +8340 92815 0.6780 +8340 93426 0.5010 +8340 93624 0.5850 +8340 94239 0.7000 +8340 114803 0.5390 +8340 121504 0.6700 +8340 121536 0.6370 +8340 123169 0.7090 +8340 126119 0.4780 +8340 126961 0.5730 +8340 128312 0.8990 +8340 165918 0.5960 +8340 192669 0.5240 +8340 192670 0.5350 +8340 221302 0.4330 +8340 221613 0.6250 +8340 255626 0.9130 +8340 256126 0.5130 +8340 283149 0.4990 +8340 317772 0.7180 +8340 333932 0.5550 +8340 387893 0.4870 +8340 440093 0.8630 +8340 440686 0.8650 +8340 440689 0.4860 +8340 474381 0.5550 +8340 474382 0.6080 +8340 554313 0.6620 +8340 644186 0.4990 +8340 653604 0.9420 +8340 723790 0.4370 +8341 8342 0.9300 +8341 8343 0.8830 +8341 8344 0.8530 +8341 8345 0.9270 +8341 8346 0.8550 +8341 8347 0.9020 +8341 8348 0.9630 +8341 8349 0.8940 +8341 8350 0.5100 +8341 8351 0.5390 +8341 8352 0.5530 +8341 8353 0.5010 +8341 8354 0.4700 +8341 8355 0.4920 +8341 8356 0.9290 +8341 8357 0.5740 +8341 8358 0.4930 +8341 8359 0.8840 +8341 8360 0.9050 +8341 8361 0.9870 +8341 8362 0.8760 +8341 8363 0.8920 +8341 8364 0.8880 +8341 8366 0.9010 +8341 8367 0.9140 +8341 8368 0.9000 +8341 8369 0.8350 +8341 8370 0.9000 +8341 8467 0.7300 +8341 8468 0.5700 +8341 8535 0.5080 +8341 8607 0.7550 +8341 8726 0.6290 +8341 8819 0.5070 +8341 8841 0.7190 +8341 8850 0.6990 +8341 8900 0.6190 +8341 8924 0.5340 +8341 8932 0.5250 +8341 8968 0.6170 +8341 8969 0.7180 +8341 8970 0.6110 +8341 9013 0.4050 +8341 9015 0.4150 +8341 9025 0.5950 +8341 9031 0.4600 +8341 9070 0.5710 +8341 9094 0.4160 +8341 9112 0.5180 +8341 9126 0.6280 +8341 9188 0.4190 +8341 9212 0.4660 +8341 9219 0.5000 +8341 9261 0.5080 +8341 9533 0.5620 +8341 9555 0.7490 +8341 9611 0.5600 +8341 9612 0.4560 +8341 9646 0.7570 +8341 9656 0.5890 +8341 9682 0.5650 +8341 9687 0.5150 +8341 9734 0.7240 +8341 9739 0.6710 +8341 9759 0.7280 +8341 9810 0.8910 +8341 9929 0.4800 +8341 9935 0.4990 +8341 9960 0.5710 +8341 9985 0.5990 +8341 10013 0.7320 +8341 10014 0.7100 +8341 10051 0.5780 +8341 10111 0.5120 +8341 10155 0.4680 +8341 10274 0.5760 +8341 10284 0.4990 +8341 10362 0.4990 +8341 10388 0.4990 +8341 10474 0.7100 +8341 10514 0.4010 +8341 10524 0.6340 +8341 10526 0.5080 +8341 10592 0.5640 +8341 10664 0.5990 +8341 10673 0.4340 +8341 10734 0.5310 +8341 10735 0.5380 +8341 10849 0.4110 +8341 10919 0.6330 +8341 10951 0.5650 +8341 11083 0.5360 +8341 11091 0.6110 +8341 11144 0.5150 +8341 11176 0.5460 +8341 11198 0.4880 +8341 11200 0.6500 +8341 11335 0.5420 +8341 22823 0.5120 +8341 22955 0.5050 +8341 22976 0.5200 +8341 23028 0.6430 +8341 23030 0.7270 +8341 23054 0.5100 +8341 23067 0.5260 +8341 23081 0.5470 +8341 23112 0.5250 +8341 23133 0.5320 +8341 23135 0.6750 +8341 23168 0.7860 +8341 23186 0.4900 +8341 23309 0.5260 +8341 23310 0.5620 +8341 23326 0.8710 +8341 23378 0.4990 +8341 23411 0.6540 +8341 23466 0.5070 +8341 23512 0.5720 +8341 23595 0.5180 +8341 23626 0.5820 +8341 25862 0.6540 +8341 25885 0.4680 +8341 25913 0.5020 +8341 25942 0.5470 +8341 26108 0.5240 +8341 26147 0.5140 +8341 26277 0.5350 +8341 26523 0.5470 +8341 27030 0.5040 +8341 27127 0.5530 +8341 27161 0.5660 +8341 27327 0.4990 +8341 29072 0.4290 +8341 29115 0.4990 +8341 29128 0.5760 +8341 29781 0.5420 +8341 29893 0.4040 +8341 29947 0.5640 +8341 30834 0.4610 +8341 50511 0.5470 +8341 51176 0.5280 +8341 51317 0.4850 +8341 51322 0.6420 +8341 51548 0.5800 +8341 51564 0.7310 +8341 51588 0.5250 +8341 51616 0.7340 +8341 51720 0.5570 +8341 51742 0.5650 +8341 53615 0.5040 +8341 54145 0.4820 +8341 54386 0.5460 +8341 54623 0.7570 +8341 54815 0.4990 +8341 54892 0.5160 +8341 55070 0.7250 +8341 55170 0.5360 +8341 55183 0.5280 +8341 55247 0.5120 +8341 55506 0.7510 +8341 55766 0.9680 +8341 55839 0.9670 +8341 55848 0.5650 +8341 55869 0.7270 +8341 56154 0.4310 +8341 56158 0.4990 +8341 56254 0.9210 +8341 56943 0.5430 +8341 56979 0.5400 +8341 57332 0.5300 +8341 57459 0.4990 +8341 57504 0.4990 +8341 58508 0.6370 +8341 64421 0.4990 +8341 64426 0.4990 +8341 79101 0.4070 +8341 79447 0.4990 +8341 79577 0.8190 +8341 79595 0.4990 +8341 79685 0.4990 +8341 79718 0.4630 +8341 79813 0.4940 +8341 79885 0.6990 +8341 80012 0.5420 +8341 80349 0.5710 +8341 83439 0.4990 +8341 83740 0.4330 +8341 83933 0.7020 +8341 84057 0.4160 +8341 84142 0.5240 +8341 84172 0.5550 +8341 84444 0.6600 +8341 84656 0.4570 +8341 84733 0.5080 +8341 84962 0.4990 +8341 85235 0.6880 +8341 85236 0.5130 +8341 90780 0.5470 +8341 92815 0.6520 +8341 93426 0.5010 +8341 93624 0.5850 +8341 94239 0.6800 +8341 114803 0.5400 +8341 121504 0.8820 +8341 121536 0.6370 +8341 123169 0.7050 +8341 126119 0.4820 +8341 126961 0.8910 +8341 128312 0.4580 +8341 165918 0.5950 +8341 192669 0.5340 +8341 192670 0.5350 +8341 221302 0.4190 +8341 221613 0.6460 +8341 255626 0.4060 +8341 256126 0.5160 +8341 283149 0.4990 +8341 286499 0.5510 +8341 317772 0.6640 +8341 333932 0.8800 +8341 387893 0.4870 +8341 404672 0.4490 +8341 440093 0.8700 +8341 440686 0.8710 +8341 440689 0.8880 +8341 474381 0.4770 +8341 474382 0.6080 +8341 554313 0.8840 +8341 644186 0.4990 +8341 653604 0.9840 +8342 8343 0.9270 +8342 8344 0.8720 +8342 8345 0.9430 +8342 8346 0.9550 +8342 8347 0.9080 +8342 8348 0.9710 +8342 8349 0.9070 +8342 8350 0.6530 +8342 8351 0.6250 +8342 8352 0.7440 +8342 8353 0.5310 +8342 8354 0.7170 +8342 8355 0.6970 +8342 8356 0.9390 +8342 8357 0.5490 +8342 8358 0.7410 +8342 8359 0.9520 +8342 8360 0.9620 +8342 8361 0.9970 +8342 8362 0.9450 +8342 8363 0.9550 +8342 8364 0.9480 +8342 8366 0.9670 +8342 8367 0.9670 +8342 8368 0.9700 +8342 8369 0.8360 +8342 8370 0.9490 +8342 8467 0.7340 +8342 8468 0.5650 +8342 8535 0.5070 +8342 8607 0.7580 +8342 8726 0.6250 +8342 8819 0.5070 +8342 8841 0.7200 +8342 8850 0.7000 +8342 8900 0.6200 +8342 8924 0.5340 +8342 8932 0.5300 +8342 8968 0.6880 +8342 8969 0.5160 +8342 8970 0.5520 +8342 9013 0.4050 +8342 9015 0.4150 +8342 9025 0.5960 +8342 9031 0.4690 +8342 9070 0.5720 +8342 9094 0.4180 +8342 9112 0.5290 +8342 9126 0.6340 +8342 9188 0.4210 +8342 9212 0.4720 +8342 9219 0.5030 +8342 9261 0.5120 +8342 9533 0.5620 +8342 9555 0.5960 +8342 9611 0.5610 +8342 9612 0.4520 +8342 9646 0.7570 +8342 9656 0.5930 +8342 9682 0.5650 +8342 9687 0.5150 +8342 9734 0.7280 +8342 9739 0.6700 +8342 9759 0.7280 +8342 9810 0.8910 +8342 9929 0.4760 +8342 9935 0.4990 +8342 9960 0.5720 +8342 9985 0.5990 +8342 10013 0.7410 +8342 10014 0.7100 +8342 10051 0.5900 +8342 10111 0.5120 +8342 10155 0.4740 +8342 10274 0.5720 +8342 10284 0.4990 +8342 10362 0.5010 +8342 10388 0.4990 +8342 10474 0.7090 +8342 10524 0.6340 +8342 10526 0.5080 +8342 10592 0.5600 +8342 10664 0.6000 +8342 10673 0.4360 +8342 10734 0.5290 +8342 10735 0.5460 +8342 10744 0.4060 +8342 10919 0.6350 +8342 10951 0.5650 +8342 11083 0.5360 +8342 11091 0.6130 +8342 11144 0.5050 +8342 11176 0.5510 +8342 11198 0.4800 +8342 11200 0.6460 +8342 11335 0.5350 +8342 22823 0.5120 +8342 22955 0.5050 +8342 22976 0.5200 +8342 23028 0.6490 +8342 23030 0.7270 +8342 23054 0.5100 +8342 23067 0.5270 +8342 23081 0.5470 +8342 23112 0.5150 +8342 23133 0.5320 +8342 23135 0.6730 +8342 23168 0.7900 +8342 23186 0.4910 +8342 23309 0.5260 +8342 23310 0.5660 +8342 23326 0.8730 +8342 23378 0.4990 +8342 23411 0.6540 +8342 23466 0.5070 +8342 23512 0.5690 +8342 23595 0.5180 +8342 23626 0.5820 +8342 25862 0.6500 +8342 25885 0.4680 +8342 25913 0.4990 +8342 25942 0.5470 +8342 26108 0.5240 +8342 26147 0.5150 +8342 26277 0.5370 +8342 26523 0.5480 +8342 27030 0.4990 +8342 27127 0.5550 +8342 27161 0.5680 +8342 27327 0.4990 +8342 29072 0.4310 +8342 29115 0.4990 +8342 29128 0.5770 +8342 29781 0.5430 +8342 29893 0.4010 +8342 29947 0.5640 +8342 30834 0.4640 +8342 50511 0.5430 +8342 51176 0.5270 +8342 51317 0.4850 +8342 51322 0.6430 +8342 51548 0.5750 +8342 51564 0.7330 +8342 51588 0.5280 +8342 51616 0.7330 +8342 51720 0.5580 +8342 51742 0.5650 +8342 53615 0.5040 +8342 54145 0.4500 +8342 54386 0.5450 +8342 54623 0.7570 +8342 54815 0.4990 +8342 54892 0.5170 +8342 55070 0.7270 +8342 55170 0.5370 +8342 55183 0.5390 +8342 55247 0.5120 +8342 55506 0.4550 +8342 55766 0.9680 +8342 55839 0.9680 +8342 55848 0.5810 +8342 55869 0.7270 +8342 56154 0.4310 +8342 56158 0.4990 +8342 56254 0.9240 +8342 56943 0.5430 +8342 56979 0.5390 +8342 57332 0.5270 +8342 57459 0.4990 +8342 57504 0.4990 +8342 58508 0.6380 +8342 64421 0.4990 +8342 64426 0.4990 +8342 79101 0.4070 +8342 79447 0.5030 +8342 79577 0.8150 +8342 79595 0.4990 +8342 79685 0.4990 +8342 79718 0.4650 +8342 79813 0.4970 +8342 79885 0.7010 +8342 80012 0.5430 +8342 80349 0.5720 +8342 83439 0.4990 +8342 83933 0.6980 +8342 84057 0.4130 +8342 84142 0.5150 +8342 84172 0.5550 +8342 84444 0.6600 +8342 84656 0.4570 +8342 84733 0.5070 +8342 84962 0.5010 +8342 85235 0.7390 +8342 85236 0.4900 +8342 90780 0.5470 +8342 92815 0.6590 +8342 93426 0.5010 +8342 93624 0.5850 +8342 94239 0.7010 +8342 114803 0.5400 +8342 121504 0.9460 +8342 121536 0.6360 +8342 123169 0.7070 +8342 126119 0.4790 +8342 126961 0.9040 +8342 128312 0.4620 +8342 165918 0.6020 +8342 192669 0.5240 +8342 192670 0.5350 +8342 221302 0.4260 +8342 221613 0.6310 +8342 255626 0.4260 +8342 256126 0.5130 +8342 283149 0.4990 +8342 317772 0.9720 +8342 333932 0.8960 +8342 387893 0.4970 +8342 440093 0.8700 +8342 440686 0.8720 +8342 440689 0.8910 +8342 474382 0.6210 +8342 554313 0.9450 +8342 644186 0.4990 +8342 653604 0.9870 +8342 723790 0.4800 +8343 8344 0.9750 +8343 8345 0.9660 +8343 8346 0.9770 +8343 8347 0.9770 +8343 8348 0.9640 +8343 8349 0.9460 +8343 8350 0.9320 +8343 8351 0.9860 +8343 8352 0.9220 +8343 8353 0.8990 +8343 8354 0.9180 +8343 8355 0.9430 +8343 8356 0.9450 +8343 8357 0.9620 +8343 8358 0.9310 +8343 8359 0.9690 +8343 8360 0.9790 +8343 8361 0.9710 +8343 8362 0.9660 +8343 8363 0.9740 +8343 8364 0.9730 +8343 8366 0.9760 +8343 8367 0.9900 +8343 8368 0.9720 +8343 8369 0.4730 +8343 8370 0.9760 +8343 8968 0.9370 +8343 8969 0.9730 +8343 8970 0.4830 +8343 11198 0.9360 +8343 23421 0.8150 +8343 29072 0.8600 +8343 29117 0.8100 +8343 55166 0.8000 +8343 55193 0.8160 +8343 55274 0.8190 +8343 55766 0.9520 +8343 55839 0.9080 +8343 64105 0.8000 +8343 64946 0.8060 +8343 79019 0.8010 +8343 79172 0.8050 +8343 79682 0.8000 +8343 80152 0.8050 +8343 84656 0.4570 +8343 85235 0.6220 +8343 85236 0.5750 +8343 91687 0.8090 +8343 92815 0.4570 +8343 94239 0.4070 +8343 121504 0.9690 +8343 126961 0.9170 +8343 196528 0.8060 +8343 201254 0.8000 +8343 221613 0.9370 +8343 317772 0.5890 +8343 333932 0.8980 +8343 378708 0.8050 +8343 387103 0.8130 +8343 401541 0.8020 +8343 440093 0.4200 +8343 440686 0.4150 +8343 440689 0.8340 +8343 554313 0.9670 +8343 653604 0.9010 +8343 723790 0.9460 +8344 8345 0.9650 +8344 8346 0.9760 +8344 8347 0.9760 +8344 8348 0.8970 +8344 8349 0.9610 +8344 8350 0.9110 +8344 8351 0.9760 +8344 8352 0.9140 +8344 8353 0.9080 +8344 8354 0.9020 +8344 8355 0.9280 +8344 8356 0.9070 +8344 8357 0.9430 +8344 8358 0.9200 +8344 8359 0.9670 +8344 8360 0.9760 +8344 8361 0.9680 +8344 8362 0.9650 +8344 8363 0.9730 +8344 8364 0.9690 +8344 8366 0.9690 +8344 8367 0.9790 +8344 8368 0.9650 +8344 8369 0.4570 +8344 8370 0.9710 +8344 8607 0.5120 +8344 8968 0.9320 +8344 8969 0.9680 +8344 8970 0.4640 +8344 9555 0.4210 +8344 10467 0.5700 +8344 10524 0.4240 +8344 10847 0.5390 +8344 10856 0.5470 +8344 10902 0.4550 +8344 11198 0.9420 +8344 23421 0.8010 +8344 26122 0.4650 +8344 29072 0.8610 +8344 29117 0.8100 +8344 54799 0.4280 +8344 55166 0.8270 +8344 55193 0.8160 +8344 55274 0.8190 +8344 55506 0.4750 +8344 55766 0.9560 +8344 55839 0.9140 +8344 57634 0.4740 +8344 64105 0.8020 +8344 64431 0.5790 +8344 64946 0.8060 +8344 79019 0.8030 +8344 79172 0.8050 +8344 79682 0.8030 +8344 80152 0.8040 +8344 80314 0.4630 +8344 84159 0.4820 +8344 84656 0.4570 +8344 85235 0.5450 +8344 85236 0.4840 +8344 91687 0.8100 +8344 92815 0.5100 +8344 121504 0.9680 +8344 126961 0.9060 +8344 196528 0.8060 +8344 201254 0.8000 +8344 221613 0.9370 +8344 317772 0.5280 +8344 333932 0.8770 +8344 378708 0.8050 +8344 387103 0.8010 +8344 401541 0.8020 +8344 440093 0.4230 +8344 440686 0.4560 +8344 440689 0.8210 +8344 554313 0.9660 +8344 653604 0.8900 +8344 723790 0.9540 +8345 8346 0.9650 +8345 8347 0.9760 +8345 8348 0.9710 +8345 8349 0.9410 +8345 8350 0.4880 +8345 8351 0.8490 +8345 8352 0.6220 +8345 8353 0.5040 +8345 8354 0.4780 +8345 8355 0.6690 +8345 8356 0.9310 +8345 8357 0.8110 +8345 8358 0.5810 +8345 8359 0.8930 +8345 8360 0.9170 +8345 8361 0.9890 +8345 8362 0.9060 +8345 8363 0.9240 +8345 8364 0.8940 +8345 8366 0.9060 +8345 8367 0.9390 +8345 8368 0.8990 +8345 8369 0.8330 +8345 8370 0.9140 +8345 8467 0.7360 +8345 8468 0.5650 +8345 8535 0.5080 +8345 8607 0.7580 +8345 8726 0.6270 +8345 8819 0.5040 +8345 8841 0.7200 +8345 8850 0.7000 +8345 8900 0.6200 +8345 8924 0.5340 +8345 8932 0.5260 +8345 8968 0.7030 +8345 8969 0.6850 +8345 8970 0.7440 +8345 9013 0.4050 +8345 9025 0.5960 +8345 9031 0.5290 +8345 9070 0.5720 +8345 9094 0.4210 +8345 9112 0.5180 +8345 9126 0.6310 +8345 9188 0.4190 +8345 9212 0.4840 +8345 9219 0.5010 +8345 9261 0.5150 +8345 9533 0.5620 +8345 9555 0.6030 +8345 9611 0.5590 +8345 9612 0.4490 +8345 9646 0.7570 +8345 9656 0.5840 +8345 9682 0.5670 +8345 9687 0.5260 +8345 9700 0.4040 +8345 9734 0.7240 +8345 9739 0.6650 +8345 9759 0.7350 +8345 9810 0.8910 +8345 9929 0.4810 +8345 9935 0.4990 +8345 9960 0.5730 +8345 9985 0.5990 +8345 10013 0.7280 +8345 10014 0.7050 +8345 10051 0.5860 +8345 10107 0.4070 +8345 10111 0.5120 +8345 10155 0.4680 +8345 10274 0.5720 +8345 10284 0.4990 +8345 10362 0.5110 +8345 10388 0.4990 +8345 10474 0.7130 +8345 10514 0.4240 +8345 10524 0.6350 +8345 10526 0.5140 +8345 10592 0.5640 +8345 10664 0.6020 +8345 10673 0.4400 +8345 10734 0.5320 +8345 10735 0.5400 +8345 10919 0.6300 +8345 10951 0.5680 +8345 11083 0.5360 +8345 11091 0.6070 +8345 11144 0.5050 +8345 11176 0.5460 +8345 11198 0.4850 +8345 11200 0.6440 +8345 11335 0.5390 +8345 22823 0.5150 +8345 22955 0.5050 +8345 22976 0.5210 +8345 23028 0.6580 +8345 23030 0.7280 +8345 23054 0.5030 +8345 23067 0.5290 +8345 23081 0.5470 +8345 23112 0.5150 +8345 23133 0.5280 +8345 23135 0.6800 +8345 23168 0.7900 +8345 23186 0.4930 +8345 23309 0.5260 +8345 23310 0.5580 +8345 23326 0.8730 +8345 23378 0.4990 +8345 23411 0.6550 +8345 23451 0.4010 +8345 23466 0.5070 +8345 23512 0.5710 +8345 23595 0.5180 +8345 23626 0.5810 +8345 25855 0.4050 +8345 25862 0.6510 +8345 25885 0.4680 +8345 25913 0.5000 +8345 25942 0.5440 +8345 26108 0.5240 +8345 26147 0.5190 +8345 26277 0.5370 +8345 26523 0.5480 +8345 27030 0.5070 +8345 27127 0.5550 +8345 27161 0.5680 +8345 27327 0.4990 +8345 29072 0.4300 +8345 29115 0.5020 +8345 29128 0.5760 +8345 29781 0.5410 +8345 29893 0.4030 +8345 29947 0.5640 +8345 30834 0.4710 +8345 50511 0.5440 +8345 51082 0.4030 +8345 51176 0.5300 +8345 51317 0.4850 +8345 51322 0.6450 +8345 51548 0.5750 +8345 51564 0.7300 +8345 51588 0.5270 +8345 51616 0.7340 +8345 51720 0.5590 +8345 51742 0.5650 +8345 53615 0.5040 +8345 54145 0.5840 +8345 54386 0.5460 +8345 54623 0.7600 +8345 54815 0.4990 +8345 54892 0.5200 +8345 55070 0.7270 +8345 55170 0.5340 +8345 55183 0.5290 +8345 55247 0.5170 +8345 55506 0.4080 +8345 55766 0.9740 +8345 55839 0.9670 +8345 55848 0.5820 +8345 55869 0.7280 +8345 56154 0.5040 +8345 56158 0.4990 +8345 56254 0.9240 +8345 56943 0.5430 +8345 56979 0.5390 +8345 57332 0.5270 +8345 57459 0.4990 +8345 57504 0.4990 +8345 58508 0.6380 +8345 64421 0.5000 +8345 64426 0.5000 +8345 79101 0.4310 +8345 79447 0.5010 +8345 79577 0.8170 +8345 79595 0.5000 +8345 79685 0.5040 +8345 79718 0.4650 +8345 79813 0.4980 +8345 79885 0.7010 +8345 80012 0.5430 +8345 80349 0.5720 +8345 83439 0.4990 +8345 83740 0.4620 +8345 83933 0.6980 +8345 84057 0.4190 +8345 84142 0.5220 +8345 84172 0.5550 +8345 84444 0.6600 +8345 84656 0.4570 +8345 84733 0.5180 +8345 84962 0.4990 +8345 85235 0.7350 +8345 85236 0.7620 +8345 89870 0.4210 +8345 90780 0.5470 +8345 92815 0.6900 +8345 93426 0.5010 +8345 93624 0.5850 +8345 94239 0.7060 +8345 114803 0.5400 +8345 121504 0.8880 +8345 121536 0.6370 +8345 123169 0.7060 +8345 126119 0.4840 +8345 126961 0.9060 +8345 128312 0.5540 +8345 140576 0.4140 +8345 165918 0.5970 +8345 192669 0.5250 +8345 192670 0.5350 +8345 221302 0.4300 +8345 221613 0.6450 +8345 255626 0.5560 +8345 256126 0.5090 +8345 283149 0.4990 +8345 317772 0.7480 +8345 333932 0.8980 +8345 387893 0.4920 +8345 440093 0.8710 +8345 440686 0.8920 +8345 440689 0.8880 +8345 474381 0.4620 +8345 474382 0.6630 +8345 554313 0.8860 +8345 644186 0.4990 +8345 653604 0.9880 +8345 723790 0.5210 +8345 115482686 0.4620 +8346 8347 0.9610 +8346 8348 0.9710 +8346 8349 0.9320 +8346 8350 0.9280 +8346 8351 0.9620 +8346 8352 0.9310 +8346 8353 0.9020 +8346 8354 0.9320 +8346 8355 0.9490 +8346 8356 0.9220 +8346 8357 0.9390 +8346 8358 0.9590 +8346 8359 0.9730 +8346 8360 0.9780 +8346 8361 0.9730 +8346 8362 0.9670 +8346 8363 0.9720 +8346 8364 0.9740 +8346 8366 0.9770 +8346 8367 0.9790 +8346 8368 0.9770 +8346 8369 0.4940 +8346 8370 0.9730 +8346 8607 0.5030 +8346 8904 0.4260 +8346 8968 0.9450 +8346 8969 0.9740 +8346 8970 0.4690 +8346 9555 0.4180 +8346 10467 0.5720 +8346 10524 0.4720 +8346 10550 0.4160 +8346 10847 0.4970 +8346 11198 0.9430 +8346 23421 0.8010 +8346 23522 0.4530 +8346 26122 0.4250 +8346 29072 0.8610 +8346 29117 0.8110 +8346 55166 0.8020 +8346 55193 0.8160 +8346 55274 0.8190 +8346 55506 0.4630 +8346 55766 0.9530 +8346 55839 0.9090 +8346 57634 0.4160 +8346 64105 0.8030 +8346 64431 0.5720 +8346 64946 0.8060 +8346 79019 0.8020 +8346 79172 0.8050 +8346 79682 0.8030 +8346 80152 0.8050 +8346 84656 0.4570 +8346 85235 0.6260 +8346 85236 0.4020 +8346 91687 0.8100 +8346 92815 0.5400 +8346 121504 0.9690 +8346 126961 0.9140 +8346 196528 0.8060 +8346 201254 0.8000 +8346 221613 0.9440 +8346 317772 0.6150 +8346 333932 0.8920 +8346 378708 0.8050 +8346 387103 0.8010 +8346 401541 0.8020 +8346 440093 0.4210 +8346 440686 0.4170 +8346 440689 0.8290 +8346 554313 0.9660 +8346 653604 0.9090 +8346 723790 0.9470 +8347 8348 0.9410 +8347 8349 0.9770 +8347 8350 0.9140 +8347 8351 0.9860 +8347 8352 0.9200 +8347 8353 0.9150 +8347 8354 0.9020 +8347 8355 0.9170 +8347 8356 0.9890 +8347 8357 0.9580 +8347 8358 0.9240 +8347 8359 0.9620 +8347 8360 0.9720 +8347 8361 0.9920 +8347 8362 0.9590 +8347 8363 0.9640 +8347 8364 0.9640 +8347 8366 0.9670 +8347 8367 0.9730 +8347 8368 0.9620 +8347 8369 0.8670 +8347 8370 0.9680 +8347 8467 0.7330 +8347 8468 0.5630 +8347 8535 0.5250 +8347 8607 0.7520 +8347 8726 0.6250 +8347 8819 0.4990 +8347 8841 0.7200 +8347 8850 0.6990 +8347 8900 0.6190 +8347 8924 0.5340 +8347 8932 0.5240 +8347 8968 0.9310 +8347 8969 0.9810 +8347 8970 0.6760 +8347 9013 0.4050 +8347 9025 0.5960 +8347 9031 0.4570 +8347 9070 0.5720 +8347 9094 0.4160 +8347 9112 0.5160 +8347 9126 0.6330 +8347 9188 0.4190 +8347 9212 0.4790 +8347 9219 0.4990 +8347 9261 0.5240 +8347 9533 0.5610 +8347 9555 0.5960 +8347 9611 0.5650 +8347 9612 0.4550 +8347 9646 0.7580 +8347 9656 0.5820 +8347 9682 0.5670 +8347 9687 0.5140 +8347 9734 0.7320 +8347 9739 0.6640 +8347 9759 0.7280 +8347 9775 0.6480 +8347 9810 0.8900 +8347 9929 0.4740 +8347 9935 0.5140 +8347 9960 0.5730 +8347 9985 0.5950 +8347 10013 0.7310 +8347 10014 0.7130 +8347 10038 0.4860 +8347 10051 0.5860 +8347 10111 0.5120 +8347 10155 0.4620 +8347 10274 0.5720 +8347 10284 0.4990 +8347 10362 0.4970 +8347 10388 0.4990 +8347 10474 0.6140 +8347 10514 0.4010 +8347 10524 0.6310 +8347 10526 0.5070 +8347 10592 0.5560 +8347 10614 0.4040 +8347 10664 0.6070 +8347 10673 0.4420 +8347 10734 0.5290 +8347 10735 0.5400 +8347 10919 0.6450 +8347 10951 0.6910 +8347 11083 0.5360 +8347 11091 0.6050 +8347 11144 0.5050 +8347 11176 0.5440 +8347 11198 0.9450 +8347 11200 0.6370 +8347 11335 0.5410 +8347 22823 0.5140 +8347 22955 0.5050 +8347 22976 0.5190 +8347 23028 0.6430 +8347 23030 0.7400 +8347 23054 0.5170 +8347 23067 0.5440 +8347 23081 0.5450 +8347 23112 0.5150 +8347 23133 0.5300 +8347 23135 0.6820 +8347 23168 0.7830 +8347 23186 0.4890 +8347 23309 0.5260 +8347 23310 0.5540 +8347 23326 0.8690 +8347 23378 0.4990 +8347 23411 0.6750 +8347 23421 0.8060 +8347 23466 0.5070 +8347 23476 0.4820 +8347 23512 0.5850 +8347 23522 0.4410 +8347 23595 0.5180 +8347 23626 0.5770 +8347 25855 0.4050 +8347 25862 0.6440 +8347 25885 0.4680 +8347 25913 0.4990 +8347 25942 0.5440 +8347 26108 0.5240 +8347 26147 0.5110 +8347 26277 0.5300 +8347 26523 0.5520 +8347 27030 0.5010 +8347 27127 0.5530 +8347 27161 0.5660 +8347 27327 0.4990 +8347 29072 0.8820 +8347 29115 0.4990 +8347 29117 0.8100 +8347 29128 0.5820 +8347 29781 0.5350 +8347 29893 0.4010 +8347 29947 0.5640 +8347 30834 0.4600 +8347 50511 0.5540 +8347 51176 0.5320 +8347 51317 0.4890 +8347 51322 0.6380 +8347 51548 0.5760 +8347 51564 0.7330 +8347 51588 0.5320 +8347 51616 0.7320 +8347 51720 0.5710 +8347 51742 0.5840 +8347 53615 0.5040 +8347 54145 0.5130 +8347 54386 0.5460 +8347 54623 0.7580 +8347 54790 0.4210 +8347 54815 0.4990 +8347 54892 0.5070 +8347 55070 0.7250 +8347 55166 0.8140 +8347 55170 0.5340 +8347 55183 0.5260 +8347 55193 0.8190 +8347 55247 0.5030 +8347 55274 0.8190 +8347 55506 0.4240 +8347 55766 0.9740 +8347 55839 0.9120 +8347 55848 0.5640 +8347 55869 0.7310 +8347 56154 0.4310 +8347 56158 0.4990 +8347 56254 0.9200 +8347 56943 0.5430 +8347 56979 0.5390 +8347 57332 0.5460 +8347 57459 0.4990 +8347 57504 0.4990 +8347 58508 0.6510 +8347 64105 0.8000 +8347 64421 0.5000 +8347 64426 0.5000 +8347 64946 0.8160 +8347 79019 0.8000 +8347 79101 0.4080 +8347 79172 0.8160 +8347 79447 0.4990 +8347 79577 0.8190 +8347 79595 0.4990 +8347 79682 0.8100 +8347 79685 0.5030 +8347 79718 0.4640 +8347 79813 0.4910 +8347 79885 0.7060 +8347 80012 0.5420 +8347 80152 0.8310 +8347 80349 0.5690 +8347 83439 0.4990 +8347 83740 0.4280 +8347 83933 0.7090 +8347 84057 0.4010 +8347 84142 0.5170 +8347 84172 0.5550 +8347 84444 0.6480 +8347 84656 0.4570 +8347 84733 0.6510 +8347 84962 0.4990 +8347 85235 0.7190 +8347 85236 0.6880 +8347 90780 0.5470 +8347 91687 0.8090 +8347 92815 0.6820 +8347 93426 0.5010 +8347 93624 0.5990 +8347 94239 0.6930 +8347 114803 0.5390 +8347 121504 0.9620 +8347 121536 0.6370 +8347 123169 0.7020 +8347 126119 0.4750 +8347 126961 0.9170 +8347 128312 0.4180 +8347 165918 0.5960 +8347 192669 0.5250 +8347 192670 0.5330 +8347 196528 0.8200 +8347 201254 0.8230 +8347 221302 0.4190 +8347 221613 0.9620 +8347 221830 0.4310 +8347 255626 0.4110 +8347 256126 0.5090 +8347 283149 0.4990 +8347 317772 0.7030 +8347 333932 0.8870 +8347 378708 0.8330 +8347 387103 0.8230 +8347 387893 0.4880 +8347 401541 0.8020 +8347 440093 0.8680 +8347 440686 0.8700 +8347 440689 0.8950 +8347 474381 0.4280 +8347 474382 0.6080 +8347 554313 0.9600 +8347 644186 0.4990 +8347 653604 0.9880 +8347 723790 0.9510 +8348 8349 0.9280 +8348 8350 0.5820 +8348 8351 0.6580 +8348 8352 0.7120 +8348 8353 0.5660 +8348 8354 0.5440 +8348 8355 0.6830 +8348 8356 0.9870 +8348 8357 0.7770 +8348 8358 0.6750 +8348 8359 0.9520 +8348 8360 0.9590 +8348 8361 0.9980 +8348 8362 0.9440 +8348 8363 0.9550 +8348 8364 0.9490 +8348 8366 0.9670 +8348 8367 0.9670 +8348 8368 0.9500 +8348 8369 0.8360 +8348 8370 0.9630 +8348 8467 0.7410 +8348 8468 0.5650 +8348 8535 0.5070 +8348 8607 0.7620 +8348 8726 0.6350 +8348 8819 0.5080 +8348 8841 0.7220 +8348 8850 0.6990 +8348 8900 0.6210 +8348 8924 0.5380 +8348 8932 0.5330 +8348 8968 0.6920 +8348 8969 0.8170 +8348 8970 0.7800 +8348 9013 0.4050 +8348 9025 0.5960 +8348 9031 0.4650 +8348 9070 0.5780 +8348 9094 0.4190 +8348 9112 0.5190 +8348 9126 0.6520 +8348 9188 0.4390 +8348 9212 0.4760 +8348 9219 0.5140 +8348 9261 0.5160 +8348 9533 0.5710 +8348 9555 0.6050 +8348 9611 0.5680 +8348 9612 0.4520 +8348 9646 0.7600 +8348 9656 0.5850 +8348 9682 0.5690 +8348 9687 0.5110 +8348 9700 0.4040 +8348 9734 0.7240 +8348 9739 0.6680 +8348 9759 0.7280 +8348 9810 0.8950 +8348 9929 0.4820 +8348 9935 0.4990 +8348 9960 0.5770 +8348 9985 0.5990 +8348 10013 0.7280 +8348 10014 0.7050 +8348 10051 0.5840 +8348 10111 0.5160 +8348 10155 0.4760 +8348 10274 0.5790 +8348 10284 0.5100 +8348 10362 0.5010 +8348 10388 0.4990 +8348 10474 0.7120 +8348 10514 0.4170 +8348 10524 0.6370 +8348 10526 0.5090 +8348 10592 0.5600 +8348 10664 0.6130 +8348 10673 0.4220 +8348 10734 0.5290 +8348 10735 0.5650 +8348 10849 0.4420 +8348 10919 0.6350 +8348 10951 0.5710 +8348 11083 0.5420 +8348 11091 0.6140 +8348 11143 0.4510 +8348 11144 0.5050 +8348 11176 0.5490 +8348 11198 0.5250 +8348 11200 0.6440 +8348 11335 0.5460 +8348 22823 0.5120 +8348 22955 0.5050 +8348 22976 0.5270 +8348 23028 0.6460 +8348 23030 0.7270 +8348 23054 0.5030 +8348 23067 0.5270 +8348 23081 0.5470 +8348 23112 0.5150 +8348 23133 0.5380 +8348 23135 0.6750 +8348 23168 0.7930 +8348 23186 0.4990 +8348 23309 0.5330 +8348 23310 0.5610 +8348 23326 0.8730 +8348 23378 0.5070 +8348 23411 0.6550 +8348 23451 0.4350 +8348 23466 0.5070 +8348 23512 0.5720 +8348 23595 0.5280 +8348 23626 0.5810 +8348 25855 0.4010 +8348 25862 0.6510 +8348 25885 0.4690 +8348 25913 0.4990 +8348 25942 0.5560 +8348 26108 0.5240 +8348 26147 0.5140 +8348 26277 0.5370 +8348 26523 0.5490 +8348 27030 0.5090 +8348 27127 0.5610 +8348 27161 0.5680 +8348 27327 0.4990 +8348 29072 0.4400 +8348 29115 0.5090 +8348 29128 0.5770 +8348 29781 0.5410 +8348 29893 0.4010 +8348 29947 0.5640 +8348 30834 0.4720 +8348 50511 0.5440 +8348 51176 0.5280 +8348 51317 0.4850 +8348 51322 0.6460 +8348 51548 0.6590 +8348 51564 0.7340 +8348 51588 0.5260 +8348 51616 0.7340 +8348 51720 0.5630 +8348 51742 0.5650 +8348 53615 0.5120 +8348 54145 0.8680 +8348 54386 0.5520 +8348 54623 0.7590 +8348 54815 0.5090 +8348 54892 0.5200 +8348 55070 0.7280 +8348 55170 0.5360 +8348 55183 0.5310 +8348 55247 0.5220 +8348 55506 0.4170 +8348 55766 0.9760 +8348 55839 0.9670 +8348 55848 0.5830 +8348 55869 0.7280 +8348 56154 0.4310 +8348 56158 0.5000 +8348 56254 0.9260 +8348 56943 0.5480 +8348 56979 0.5390 +8348 57332 0.5300 +8348 57459 0.5070 +8348 57504 0.5040 +8348 58508 0.6420 +8348 64421 0.4990 +8348 64425 0.4560 +8348 64426 0.5090 +8348 79101 0.4040 +8348 79447 0.4990 +8348 79577 0.8260 +8348 79595 0.5070 +8348 79685 0.4990 +8348 79718 0.4700 +8348 79813 0.4950 +8348 79885 0.6990 +8348 79968 0.4220 +8348 80012 0.5430 +8348 80349 0.5750 +8348 81611 0.4110 +8348 83439 0.4990 +8348 83740 0.4620 +8348 83933 0.6980 +8348 84057 0.4120 +8348 84142 0.5160 +8348 84172 0.5550 +8348 84444 0.6650 +8348 84656 0.9410 +8348 84733 0.5070 +8348 84962 0.4990 +8348 85235 0.8670 +8348 85236 0.8970 +8348 90780 0.5470 +8348 92815 0.6850 +8348 93426 0.5010 +8348 93624 0.5850 +8348 94239 0.8940 +8348 114803 0.5400 +8348 121504 0.9420 +8348 121536 0.6370 +8348 123169 0.7100 +8348 126119 0.4840 +8348 126961 0.9770 +8348 128312 0.5800 +8348 165918 0.5980 +8348 192669 0.5240 +8348 192670 0.5350 +8348 221302 0.4320 +8348 221613 0.6580 +8348 221830 0.4050 +8348 255626 0.5560 +8348 256126 0.5130 +8348 283149 0.4990 +8348 317772 0.9800 +8348 333932 0.9680 +8348 387893 0.4900 +8348 440093 0.8740 +8348 440686 0.9600 +8348 440689 0.9690 +8348 474381 0.4970 +8348 474382 0.6860 +8348 554313 0.9390 +8348 644186 0.4990 +8348 653604 0.9960 +8348 723790 0.5310 +8348 115482686 0.4620 +8349 8350 0.9220 +8349 8351 0.9350 +8349 8352 0.9740 +8349 8353 0.9760 +8349 8354 0.8880 +8349 8355 0.8960 +8349 8356 0.9990 +8349 8357 0.9620 +8349 8358 0.8950 +8349 8359 0.9720 +8349 8360 0.9720 +8349 8361 0.9990 +8349 8362 0.9710 +8349 8363 0.9700 +8349 8364 0.9710 +8349 8366 0.9710 +8349 8367 0.9760 +8349 8368 0.9700 +8349 8369 0.9980 +8349 8370 0.9810 +8349 8444 0.5160 +8349 8451 0.4660 +8349 8467 0.9170 +8349 8468 0.5720 +8349 8479 0.7600 +8349 8520 0.5910 +8349 8535 0.6480 +8349 8607 0.8240 +8349 8639 0.4340 +8349 8726 0.7730 +8349 8815 0.5390 +8349 8819 0.6730 +8349 8841 0.8230 +8349 8850 0.8850 +8349 8900 0.6760 +8349 8924 0.5340 +8349 8932 0.5960 +8349 8968 0.9120 +8349 8969 0.9720 +8349 8970 0.9380 +8349 8971 0.5740 +8349 9013 0.4130 +8349 9014 0.7050 +8349 9015 0.5670 +8349 9025 0.8240 +8349 9031 0.6510 +8349 9070 0.7330 +8349 9094 0.6200 +8349 9101 0.4020 +8349 9112 0.6470 +8349 9126 0.6910 +8349 9156 0.4270 +8349 9188 0.4570 +8349 9212 0.7090 +8349 9219 0.6360 +8349 9232 0.4050 +8349 9252 0.4630 +8349 9261 0.5170 +8349 9276 0.4090 +8349 9533 0.6050 +8349 9555 0.9150 +8349 9557 0.6050 +8349 9601 0.4160 +8349 9611 0.7880 +8349 9612 0.6780 +8349 9646 0.6610 +8349 9656 0.7540 +8349 9682 0.7140 +8349 9687 0.5340 +8349 9700 0.4390 +8349 9734 0.8080 +8349 9739 0.7950 +8349 9757 0.4110 +8349 9759 0.8250 +8349 9810 0.9430 +8349 9869 0.5000 +8349 9929 0.4130 +8349 9935 0.5440 +8349 9958 0.5010 +8349 9960 0.7340 +8349 9985 0.6340 +8349 10013 0.8160 +8349 10014 0.7810 +8349 10038 0.5120 +8349 10039 0.4800 +8349 10051 0.6290 +8349 10075 0.6590 +8349 10111 0.6010 +8349 10155 0.5690 +8349 10274 0.6360 +8349 10284 0.5290 +8349 10360 0.4870 +8349 10361 0.5770 +8349 10362 0.5470 +8349 10388 0.5220 +8349 10403 0.4330 +8349 10428 0.5560 +8349 10474 0.7050 +8349 10498 0.4020 +8349 10514 0.4790 +8349 10524 0.8030 +8349 10526 0.5070 +8349 10535 0.4860 +8349 10589 0.7310 +8349 10592 0.7380 +8349 10600 0.6260 +8349 10614 0.4450 +8349 10664 0.7420 +8349 10734 0.5430 +8349 10735 0.5610 +8349 10744 0.4520 +8349 10765 0.5380 +8349 10847 0.6850 +8349 10856 0.5830 +8349 10919 0.8130 +8349 10933 0.7040 +8349 10943 0.4220 +8349 10951 0.7410 +8349 10971 0.4790 +8349 11060 0.5370 +8349 11074 0.4400 +8349 11083 0.6330 +8349 11091 0.7720 +8349 11143 0.5160 +8349 11144 0.5050 +8349 11168 0.4670 +8349 11176 0.6180 +8349 11177 0.7070 +8349 11198 0.9760 +8349 11200 0.7170 +8349 11201 0.4090 +8349 11335 0.7320 +8349 22823 0.6250 +8349 22924 0.4400 +8349 22933 0.5700 +8349 22955 0.5590 +8349 22976 0.6070 +8349 22992 0.4250 +8349 23028 0.8220 +8349 23030 0.6570 +8349 23054 0.5590 +8349 23067 0.6310 +8349 23081 0.6490 +8349 23112 0.5150 +8349 23133 0.7460 +8349 23135 0.8200 +8349 23168 0.6870 +8349 23186 0.7040 +8349 23309 0.5580 +8349 23310 0.6300 +8349 23326 0.9400 +8349 23361 0.5180 +8349 23378 0.4990 +8349 23411 0.8590 +8349 23451 0.4190 +8349 23466 0.6700 +8349 23468 0.5670 +8349 23476 0.5610 +8349 23512 0.7450 +8349 23522 0.4940 +8349 23595 0.6150 +8349 23626 0.6230 +8349 25763 0.4360 +8349 25842 0.5770 +8349 25862 0.7720 +8349 25885 0.5210 +8349 25913 0.5260 +8349 25942 0.6590 +8349 26108 0.5350 +8349 26147 0.5790 +8349 26155 0.4800 +8349 26227 0.5820 +8349 26277 0.5870 +8349 26523 0.6050 +8349 27030 0.5200 +8349 27127 0.5790 +8349 27161 0.6050 +8349 27294 0.7220 +8349 27327 0.5190 +8349 28989 0.5270 +8349 28996 0.4160 +8349 29072 0.9240 +8349 29105 0.4620 +8349 29115 0.5010 +8349 29117 0.8680 +8349 29121 0.4070 +8349 29128 0.7300 +8349 29781 0.5810 +8349 29947 0.7760 +8349 29994 0.4680 +8349 30827 0.5580 +8349 30834 0.4720 +8349 50511 0.6000 +8349 50943 0.5060 +8349 51082 0.4420 +8349 51162 0.4080 +8349 51176 0.6290 +8349 51317 0.5770 +8349 51547 0.5410 +8349 51548 0.7000 +8349 51564 0.7870 +8349 51588 0.5800 +8349 51616 0.5470 +8349 51710 0.5180 +8349 51720 0.7490 +8349 51742 0.6480 +8349 51773 0.5580 +8349 51807 0.4670 +8349 53615 0.5890 +8349 54107 0.6810 +8349 54108 0.6150 +8349 54145 0.8590 +8349 54205 0.5700 +8349 54386 0.5550 +8349 54623 0.5080 +8349 54815 0.8390 +8349 54840 0.6730 +8349 54892 0.5690 +8349 54904 0.4430 +8349 54969 0.5110 +8349 55023 0.4400 +8349 55070 0.7230 +8349 55135 0.4100 +8349 55143 0.6290 +8349 55167 0.7450 +8349 55170 0.7350 +8349 55183 0.5910 +8349 55193 0.8760 +8349 55247 0.5090 +8349 55274 0.8690 +8349 55294 0.4090 +8349 55355 0.4730 +8349 55506 0.6710 +8349 55573 0.5690 +8349 55636 0.5180 +8349 55677 0.5000 +8349 55705 0.6760 +8349 55723 0.5180 +8349 55766 0.9810 +8349 55839 0.9780 +8349 55848 0.4850 +8349 55869 0.8420 +8349 55929 0.4920 +8349 56154 0.4310 +8349 56158 0.4990 +8349 56254 0.9760 +8349 56655 0.4050 +8349 56852 0.4010 +8349 56943 0.6530 +8349 56970 0.6170 +8349 56979 0.6090 +8349 57332 0.6430 +8349 57396 0.5570 +8349 57459 0.7340 +8349 57492 0.4430 +8349 57504 0.5560 +8349 57602 0.5960 +8349 57634 0.6480 +8349 58508 0.7200 +8349 58516 0.4220 +8349 60496 0.4180 +8349 63925 0.4670 +8349 64324 0.5440 +8349 64421 0.4990 +8349 64425 0.4210 +8349 64426 0.5500 +8349 64431 0.4580 +8349 64854 0.5040 +8349 79101 0.4070 +8349 79447 0.4990 +8349 79577 0.6710 +8349 79595 0.5020 +8349 79685 0.5030 +8349 79718 0.8020 +8349 79723 0.4160 +8349 79728 0.6140 +8349 79813 0.6730 +8349 79823 0.4180 +8349 79885 0.8230 +8349 80012 0.6500 +8349 80312 0.5210 +8349 80335 0.5560 +8349 80818 0.5180 +8349 80854 0.5260 +8349 81611 0.6600 +8349 81620 0.4010 +8349 83439 0.5070 +8349 83666 0.5330 +8349 83740 0.9420 +8349 83860 0.4870 +8349 83933 0.7860 +8349 83983 0.4490 +8349 84057 0.4090 +8349 84101 0.6700 +8349 84132 0.5660 +8349 84142 0.5580 +8349 84148 0.5200 +8349 84172 0.5620 +8349 84444 0.8370 +8349 84656 0.5510 +8349 84661 0.4260 +8349 84733 0.6410 +8349 84875 0.4070 +8349 84962 0.4990 +8349 85235 0.6700 +8349 85236 0.9290 +8349 90665 0.4500 +8349 90780 0.5770 +8349 90865 0.6590 +8349 91137 0.5070 +8349 92292 0.4690 +8349 92815 0.8300 +8349 93426 0.5100 +8349 93624 0.6650 +8349 94239 0.9890 +8349 112869 0.4870 +8349 114803 0.5470 +8349 115004 0.7000 +8349 115560 0.5180 +8349 121504 0.9730 +8349 121536 0.6910 +8349 123169 0.6140 +8349 125476 0.5600 +8349 126119 0.4210 +8349 126961 0.9490 +8349 128312 0.5200 +8349 132243 0.4660 +8349 133482 0.5420 +8349 137902 0.5060 +8349 140733 0.4870 +8349 144108 0.5040 +8349 148266 0.5180 +8349 158880 0.4420 +8349 165918 0.9140 +8349 192669 0.5440 +8349 192670 0.5900 +8349 196528 0.8620 +8349 200558 0.5310 +8349 219333 0.5190 +8349 221302 0.5550 +8349 221613 0.9830 +8349 221656 0.5310 +8349 222255 0.4040 +8349 254225 0.4590 +8349 255626 0.4390 +8349 256126 0.5190 +8349 260434 0.4110 +8349 283149 0.5170 +8349 284390 0.5180 +8349 317772 0.8290 +8349 333932 0.8910 +8349 339287 0.5230 +8349 340096 0.6040 +8349 341567 0.4020 +8349 387893 0.6750 +8349 391769 0.6170 +8349 440093 0.9980 +8349 440686 0.9980 +8349 440689 0.9090 +8349 474381 0.9700 +8349 474382 0.8760 +8349 554313 0.9730 +8349 644186 0.4990 +8349 653604 0.9990 +8349 723790 0.5150 +8349 728378 0.5910 +8349 100532731 0.5610 +8349 115482686 0.4360 +8350 8351 0.9220 +8350 8352 0.9400 +8350 8353 0.9000 +8350 8354 0.9400 +8350 8355 0.9370 +8350 8356 0.9490 +8350 8357 0.9130 +8350 8358 0.9550 +8350 8359 0.9870 +8350 8360 0.9870 +8350 8361 0.9970 +8350 8362 0.9840 +8350 8363 0.9860 +8350 8364 0.9830 +8350 8366 0.9920 +8350 8367 0.9890 +8350 8368 0.9890 +8350 8369 0.4290 +8350 8370 0.9940 +8350 8467 0.8310 +8350 8520 0.8920 +8350 8607 0.8760 +8350 8721 0.4310 +8350 8726 0.5540 +8350 8805 0.9790 +8350 8841 0.4250 +8350 8850 0.9950 +8350 8968 0.9420 +8350 8969 0.6470 +8350 8970 0.9450 +8350 8971 0.8770 +8350 9031 0.5590 +8350 9070 0.5330 +8350 9085 0.8470 +8350 9212 0.8210 +8350 9425 0.5180 +8350 9493 0.4870 +8350 9555 0.9770 +8350 9646 0.5120 +8350 9682 0.9750 +8350 9739 0.7570 +8350 9757 0.5610 +8350 9759 0.5310 +8350 9866 0.9070 +8350 9869 0.9670 +8350 10013 0.4090 +8350 10014 0.4260 +8350 10036 0.8750 +8350 10038 0.6510 +8350 10382 0.5880 +8350 10419 0.7950 +8350 10450 0.9030 +8350 10498 0.9820 +8350 10524 0.4490 +8350 10541 0.4930 +8350 10856 0.8780 +8350 10919 0.9710 +8350 10927 0.9000 +8350 10943 0.5330 +8350 10951 0.9850 +8350 11083 0.9450 +8350 11091 0.9910 +8350 11143 0.6180 +8350 11168 0.6510 +8350 11177 0.4220 +8350 11198 0.9780 +8350 11200 0.4380 +8350 11335 0.9860 +8350 22880 0.5040 +8350 22933 0.5790 +8350 22974 0.4240 +8350 22992 0.4160 +8350 23028 0.8700 +8350 23067 0.5410 +8350 23133 0.9840 +8350 23135 0.7210 +8350 23186 0.4050 +8350 23234 0.7580 +8350 23347 0.4690 +8350 23408 0.9140 +8350 23410 0.9360 +8350 23411 0.4440 +8350 23466 0.9270 +8350 23468 0.9880 +8350 23469 0.4220 +8350 23476 0.8310 +8350 23492 0.9540 +8350 23515 0.9250 +8350 23522 0.9220 +8350 23774 0.4830 +8350 25842 0.9910 +8350 26009 0.9030 +8350 26108 0.9090 +8350 26147 0.5320 +8350 27043 0.6720 +8350 29072 0.9610 +8350 29117 0.8540 +8350 29128 0.9840 +8350 29855 0.5430 +8350 29947 0.8180 +8350 50809 0.5210 +8350 51147 0.9760 +8350 51203 0.4840 +8350 51592 0.9080 +8350 51742 0.6290 +8350 51773 0.4720 +8350 54145 0.4190 +8350 54583 0.4900 +8350 54617 0.9140 +8350 54623 0.5050 +8350 54737 0.9320 +8350 54751 0.4820 +8350 54815 0.5740 +8350 54904 0.9690 +8350 54984 0.4170 +8350 55023 0.4730 +8350 55133 0.4220 +8350 55143 0.4530 +8350 55148 0.8290 +8350 55193 0.9780 +8350 55274 0.8100 +8350 55506 0.4370 +8350 55723 0.9050 +8350 55869 0.4180 +8350 55870 0.6700 +8350 55904 0.9080 +8350 55907 0.4030 +8350 55929 0.4390 +8350 56852 0.4970 +8350 57459 0.5230 +8350 57473 0.4590 +8350 57504 0.4120 +8350 57680 0.4620 +8350 58508 0.4830 +8350 64324 0.6390 +8350 79577 0.4950 +8350 79711 0.9810 +8350 79728 0.5100 +8350 79813 0.9790 +8350 79913 0.8540 +8350 79915 0.4870 +8350 80854 0.8180 +8350 83444 0.8280 +8350 83740 0.9240 +8350 84148 0.6180 +8350 84196 0.6470 +8350 84444 0.9320 +8350 84450 0.4600 +8350 84656 0.7110 +8350 84678 0.7450 +8350 84717 0.9450 +8350 84733 0.9480 +8350 85235 0.4310 +8350 85236 0.9490 +8350 90780 0.9160 +8350 91607 0.4200 +8350 94239 0.9440 +8350 112869 0.9200 +8350 114799 0.4090 +8350 114803 0.4660 +8350 115004 0.8090 +8350 115426 0.5430 +8350 121504 0.9840 +8350 123169 0.5580 +8350 124359 0.9230 +8350 126961 0.9680 +8350 128312 0.8830 +8350 144097 0.8000 +8350 146909 0.4760 +8350 152098 0.9120 +8350 153527 0.4470 +8350 157570 0.4100 +8350 196528 0.8400 +8350 221613 0.9240 +8350 221656 0.6820 +8350 253175 0.8470 +8350 254048 0.4310 +8350 255626 0.8630 +8350 257218 0.6740 +8350 317772 0.6480 +8350 333932 0.9620 +8350 387893 0.9320 +8350 401934 0.6640 +8350 440093 0.8550 +8350 440686 0.9460 +8350 440689 0.5010 +8350 474381 0.9240 +8350 554313 0.9830 +8350 653604 0.9620 +8350 723790 0.5530 +8350 728378 0.5470 +8351 8352 0.9160 +8351 8353 0.9010 +8351 8354 0.9120 +8351 8355 0.9400 +8351 8356 0.9390 +8351 8357 0.9500 +8351 8358 0.9550 +8351 8359 0.9840 +8351 8360 0.9930 +8351 8361 0.9860 +8351 8362 0.9830 +8351 8363 0.9870 +8351 8364 0.9830 +8351 8366 0.9870 +8351 8367 0.9910 +8351 8368 0.9840 +8351 8370 0.9880 +8351 8467 0.4040 +8351 8520 0.4760 +8351 8607 0.8760 +8351 8805 0.9510 +8351 8850 0.9600 +8351 8968 0.9410 +8351 8969 0.5840 +8351 8970 0.9590 +8351 8971 0.8580 +8351 9085 0.8470 +8351 9555 0.9280 +8351 9682 0.9110 +8351 9759 0.5310 +8351 9866 0.9070 +8351 9869 0.9150 +8351 10382 0.5810 +8351 10450 0.9030 +8351 10498 0.9220 +8351 10856 0.8780 +8351 10919 0.9230 +8351 10927 0.9000 +8351 10951 0.9340 +8351 11083 0.9320 +8351 11091 0.9220 +8351 11198 0.9450 +8351 11200 0.4790 +8351 11335 0.9330 +8351 23133 0.9190 +8351 23135 0.6280 +8351 23408 0.9140 +8351 23410 0.9140 +8351 23466 0.9090 +8351 23468 0.9330 +8351 23492 0.9160 +8351 23515 0.9060 +8351 23522 0.9220 +8351 25842 0.9390 +8351 26009 0.9030 +8351 26108 0.9090 +8351 29072 0.9470 +8351 29117 0.8220 +8351 29128 0.9090 +8351 29947 0.8180 +8351 51147 0.9160 +8351 51592 0.9080 +8351 51742 0.5380 +8351 54145 0.4120 +8351 54617 0.9140 +8351 54737 0.9320 +8351 54904 0.9150 +8351 55193 0.9320 +8351 55274 0.8100 +8351 55723 0.4490 +8351 55904 0.9090 +8351 79711 0.9300 +8351 79813 0.9260 +8351 79913 0.8540 +8351 83444 0.8280 +8351 83740 0.9370 +8351 84444 0.9320 +8351 84717 0.9050 +8351 84733 0.9120 +8351 85235 0.4110 +8351 85236 0.9620 +8351 90780 0.9160 +8351 92815 0.5140 +8351 94239 0.9510 +8351 112869 0.9200 +8351 115004 0.8090 +8351 121504 0.9830 +8351 123169 0.4010 +8351 124359 0.9230 +8351 126961 0.9590 +8351 128312 0.8890 +8351 144097 0.8000 +8351 152098 0.9120 +8351 196528 0.8040 +8351 221613 0.9270 +8351 253175 0.8470 +8351 255626 0.8680 +8351 317772 0.4900 +8351 333932 0.9590 +8351 387893 0.9170 +8351 401934 0.6480 +8351 440093 0.8550 +8351 440686 0.9320 +8351 474381 0.9310 +8351 554313 0.9830 +8351 653604 0.9590 +8351 723790 0.5990 +8351 728378 0.5470 +8352 8353 0.9000 +8352 8354 0.9450 +8352 8355 0.9370 +8352 8356 0.9440 +8352 8357 0.9090 +8352 8358 0.9530 +8352 8359 0.9860 +8352 8360 0.9820 +8352 8361 0.9900 +8352 8362 0.9810 +8352 8363 0.9820 +8352 8364 0.9800 +8352 8366 0.9870 +8352 8367 0.9830 +8352 8368 0.9850 +8352 8369 0.6580 +8352 8370 0.9820 +8352 8467 0.5000 +8352 8520 0.7010 +8352 8607 0.8850 +8352 8726 0.4440 +8352 8805 0.9520 +8352 8815 0.4440 +8352 8850 0.9650 +8352 8968 0.9280 +8352 8969 0.4690 +8352 8970 0.9530 +8352 8971 0.8620 +8352 9070 0.6180 +8352 9085 0.8470 +8352 9555 0.9480 +8352 9682 0.9490 +8352 9739 0.6170 +8352 9759 0.5490 +8352 9866 0.9070 +8352 9869 0.9380 +8352 10036 0.6690 +8352 10382 0.5730 +8352 10450 0.9030 +8352 10498 0.9300 +8352 10771 0.4860 +8352 10856 0.8860 +8352 10919 0.9530 +8352 10927 0.9000 +8352 10933 0.5260 +8352 10951 0.9580 +8352 11083 0.9320 +8352 11091 0.9660 +8352 11188 0.4140 +8352 11198 0.9650 +8352 11200 0.4660 +8352 11335 0.9590 +8352 23081 0.4420 +8352 23133 0.9250 +8352 23135 0.6930 +8352 23408 0.9140 +8352 23410 0.9140 +8352 23411 0.5000 +8352 23466 0.9090 +8352 23468 0.9530 +8352 23492 0.9170 +8352 23515 0.9060 +8352 23522 0.9220 +8352 23523 0.4830 +8352 23613 0.4750 +8352 25842 0.9890 +8352 26009 0.9060 +8352 26108 0.9090 +8352 29072 0.9640 +8352 29117 0.8250 +8352 29128 0.9160 +8352 29855 0.5820 +8352 29947 0.8900 +8352 51147 0.9140 +8352 51317 0.4760 +8352 51548 0.4760 +8352 51592 0.9080 +8352 51742 0.5340 +8352 53346 0.4160 +8352 54145 0.5110 +8352 54556 0.4930 +8352 54617 0.9210 +8352 54737 0.9370 +8352 54904 0.9210 +8352 55170 0.5000 +8352 55193 0.9380 +8352 55274 0.8100 +8352 55355 0.5090 +8352 55506 0.5240 +8352 55723 0.8840 +8352 55904 0.9100 +8352 57634 0.4020 +8352 79711 0.9830 +8352 79723 0.4360 +8352 79813 0.9270 +8352 79913 0.8540 +8352 83444 0.8330 +8352 83740 0.9360 +8352 84444 0.9610 +8352 84717 0.9050 +8352 84733 0.9100 +8352 85235 0.4730 +8352 85236 0.9730 +8352 90780 0.9160 +8352 92815 0.4530 +8352 94239 0.9590 +8352 112869 0.9230 +8352 115004 0.8130 +8352 121504 0.9800 +8352 123169 0.4010 +8352 124359 0.9230 +8352 126961 0.9680 +8352 128312 0.8960 +8352 132243 0.4840 +8352 144097 0.8000 +8352 146059 0.4180 +8352 152098 0.9120 +8352 158983 0.4490 +8352 196528 0.8040 +8352 221613 0.9450 +8352 221656 0.5460 +8352 253175 0.8470 +8352 253714 0.5420 +8352 255626 0.9120 +8352 286436 0.4230 +8352 317772 0.5120 +8352 333932 0.9600 +8352 387893 0.9200 +8352 401934 0.5670 +8352 440093 0.8560 +8352 440686 0.9400 +8352 440689 0.5180 +8352 474381 0.9640 +8352 474382 0.5840 +8352 554313 0.9790 +8352 653604 0.9600 +8352 723790 0.4480 +8352 728378 0.5710 +8352 114483833 0.4550 +8353 8354 0.9000 +8353 8355 0.9030 +8353 8356 0.9360 +8353 8357 0.9030 +8353 8358 0.9360 +8353 8359 0.9850 +8353 8360 0.9790 +8353 8361 0.9810 +8353 8362 0.9790 +8353 8363 0.9790 +8353 8364 0.9780 +8353 8366 0.9800 +8353 8367 0.9800 +8353 8368 0.9790 +8353 8369 0.6530 +8353 8370 0.9800 +8353 8467 0.5100 +8353 8520 0.7060 +8353 8607 0.8860 +8353 8726 0.4600 +8353 8805 0.9110 +8353 8850 0.9660 +8353 8968 0.9030 +8353 8969 0.4440 +8353 8970 0.9490 +8353 8971 0.8680 +8353 9070 0.6210 +8353 9085 0.8470 +8353 9555 0.9490 +8353 9682 0.9500 +8353 9739 0.6180 +8353 9759 0.5500 +8353 9866 0.9070 +8353 9869 0.9380 +8353 10036 0.4340 +8353 10382 0.5770 +8353 10450 0.9030 +8353 10498 0.9310 +8353 10771 0.4940 +8353 10856 0.8860 +8353 10919 0.9540 +8353 10927 0.9000 +8353 10933 0.5360 +8353 10951 0.9590 +8353 11083 0.9320 +8353 11091 0.9660 +8353 11198 0.9600 +8353 11200 0.4670 +8353 11335 0.9590 +8353 23081 0.4440 +8353 23133 0.9250 +8353 23135 0.9760 +8353 23408 0.9170 +8353 23410 0.9140 +8353 23411 0.5160 +8353 23466 0.9090 +8353 23468 0.9470 +8353 23492 0.9170 +8353 23515 0.9060 +8353 23522 0.9220 +8353 23523 0.4870 +8353 23613 0.4800 +8353 25842 0.9800 +8353 26009 0.9070 +8353 26108 0.9090 +8353 29072 0.9640 +8353 29117 0.8260 +8353 29128 0.9120 +8353 29855 0.5850 +8353 29947 0.8960 +8353 51147 0.9140 +8353 51317 0.4800 +8353 51548 0.5000 +8353 51592 0.9110 +8353 51742 0.5340 +8353 54145 0.4990 +8353 54556 0.4960 +8353 54617 0.9210 +8353 54737 0.9340 +8353 54904 0.9200 +8353 55170 0.5310 +8353 55193 0.9360 +8353 55274 0.8100 +8353 55355 0.5070 +8353 55506 0.5190 +8353 55723 0.7010 +8353 55904 0.9110 +8353 57634 0.4150 +8353 79711 0.9710 +8353 79723 0.4280 +8353 79813 0.9270 +8353 79913 0.8540 +8353 83444 0.8330 +8353 83740 0.9240 +8353 84444 0.9610 +8353 84717 0.9050 +8353 84733 0.9110 +8353 85236 0.9710 +8353 90780 0.9160 +8353 92815 0.4190 +8353 94239 0.9600 +8353 112869 0.9230 +8353 115004 0.8090 +8353 121504 0.9790 +8353 123169 0.4010 +8353 124359 0.9230 +8353 126961 0.9660 +8353 128312 0.8920 +8353 132243 0.4900 +8353 144097 0.8000 +8353 152098 0.9120 +8353 158983 0.4550 +8353 196528 0.8100 +8353 221613 0.9420 +8353 221656 0.5490 +8353 253175 0.8470 +8353 253714 0.4610 +8353 255626 0.9110 +8353 286436 0.4290 +8353 333932 0.9570 +8353 387893 0.9210 +8353 401934 0.5700 +8353 440093 0.8560 +8353 440686 0.9320 +8353 440689 0.4920 +8353 474381 0.9640 +8353 474382 0.6020 +8353 554313 0.9790 +8353 653604 0.9570 +8353 723790 0.4900 +8353 728378 0.5630 +8353 114483833 0.4600 +8354 8355 0.9390 +8354 8356 0.9550 +8354 8357 0.9070 +8354 8358 0.9550 +8354 8359 0.9850 +8354 8360 0.9870 +8354 8361 0.9850 +8354 8362 0.9830 +8354 8363 0.9860 +8354 8364 0.9830 +8354 8366 0.9910 +8354 8367 0.9870 +8354 8368 0.9910 +8354 8370 0.9900 +8354 8520 0.4810 +8354 8607 0.8760 +8354 8805 0.9510 +8354 8850 0.9600 +8354 8968 0.9710 +8354 8969 0.5060 +8354 8970 0.9520 +8354 8971 0.8460 +8354 9085 0.8470 +8354 9555 0.9350 +8354 9682 0.9110 +8354 9759 0.5310 +8354 9866 0.9070 +8354 9869 0.9150 +8354 10382 0.5870 +8354 10450 0.9030 +8354 10498 0.9220 +8354 10856 0.8780 +8354 10919 0.9330 +8354 10927 0.9000 +8354 10951 0.9340 +8354 11083 0.9320 +8354 11091 0.9220 +8354 11198 0.9530 +8354 11200 0.4490 +8354 11335 0.9330 +8354 23133 0.9190 +8354 23135 0.6220 +8354 23408 0.9140 +8354 23410 0.9140 +8354 23466 0.9090 +8354 23468 0.9420 +8354 23492 0.9170 +8354 23515 0.9060 +8354 23522 0.9220 +8354 25842 0.9390 +8354 26009 0.9030 +8354 26108 0.9100 +8354 29072 0.9470 +8354 29117 0.8160 +8354 29128 0.9070 +8354 29947 0.8180 +8354 51147 0.9140 +8354 51592 0.9080 +8354 51742 0.5340 +8354 54145 0.4080 +8354 54617 0.9140 +8354 54737 0.9320 +8354 54904 0.9150 +8354 55193 0.9320 +8354 55274 0.8100 +8354 55506 0.4280 +8354 55723 0.6650 +8354 55904 0.9080 +8354 79711 0.9370 +8354 79813 0.9370 +8354 79913 0.8540 +8354 83444 0.8280 +8354 83740 0.9240 +8354 84444 0.9320 +8354 84717 0.9050 +8354 84733 0.9130 +8354 85236 0.9480 +8354 90780 0.9160 +8354 92815 0.4190 +8354 94239 0.9440 +8354 112869 0.9200 +8354 115004 0.8120 +8354 121504 0.9840 +8354 123169 0.4010 +8354 124359 0.9230 +8354 126961 0.9590 +8354 128312 0.8760 +8354 144097 0.8000 +8354 152098 0.9120 +8354 196528 0.8000 +8354 221613 0.9240 +8354 253175 0.8470 +8354 255626 0.8630 +8354 317772 0.5720 +8354 333932 0.9590 +8354 387893 0.9160 +8354 401934 0.6580 +8354 440093 0.8550 +8354 440686 0.9390 +8354 440689 0.4140 +8354 474381 0.9240 +8354 554313 0.9830 +8354 653604 0.9600 +8354 723790 0.5340 +8354 728378 0.5500 +8355 8356 0.9490 +8355 8357 0.9240 +8355 8358 0.9610 +8355 8359 0.9850 +8355 8360 0.9870 +8355 8361 0.9800 +8355 8362 0.9840 +8355 8363 0.9870 +8355 8364 0.9830 +8355 8366 0.9870 +8355 8367 0.9880 +8355 8368 0.9860 +8355 8370 0.9920 +8355 8520 0.4800 +8355 8607 0.8760 +8355 8805 0.9510 +8355 8850 0.9600 +8355 8968 0.9410 +8355 8969 0.5660 +8355 8970 0.9550 +8355 8971 0.8430 +8355 9085 0.8470 +8355 9555 0.9280 +8355 9682 0.9110 +8355 9759 0.5310 +8355 9866 0.9070 +8355 9869 0.9150 +8355 10036 0.4340 +8355 10038 0.5170 +8355 10382 0.5900 +8355 10450 0.9030 +8355 10498 0.9220 +8355 10856 0.8780 +8355 10919 0.9230 +8355 10927 0.9000 +8355 10951 0.9340 +8355 11083 0.9360 +8355 11091 0.9220 +8355 11198 0.9520 +8355 11200 0.4470 +8355 11335 0.9330 +8355 23133 0.9190 +8355 23135 0.6350 +8355 23408 0.9140 +8355 23410 0.9140 +8355 23466 0.9090 +8355 23468 0.9340 +8355 23492 0.9160 +8355 23515 0.9060 +8355 23522 0.9220 +8355 25842 0.9670 +8355 26009 0.9030 +8355 26108 0.9090 +8355 29072 0.9470 +8355 29117 0.8160 +8355 29128 0.9090 +8355 29947 0.8180 +8355 51147 0.9140 +8355 51592 0.9080 +8355 51742 0.5340 +8355 54145 0.4100 +8355 54617 0.9140 +8355 54737 0.9320 +8355 54904 0.9150 +8355 55193 0.9320 +8355 55274 0.8100 +8355 55723 0.7350 +8355 55904 0.9080 +8355 79711 0.9410 +8355 79813 0.9260 +8355 79913 0.8540 +8355 83444 0.8490 +8355 83740 0.9240 +8355 84444 0.9320 +8355 84656 0.9160 +8355 84717 0.9050 +8355 84733 0.9140 +8355 85236 0.9530 +8355 90780 0.9160 +8355 94239 0.9440 +8355 112869 0.9200 +8355 115004 0.8120 +8355 121504 0.9840 +8355 123169 0.4010 +8355 124359 0.9230 +8355 126961 0.9600 +8355 128312 0.8760 +8355 144097 0.8000 +8355 152098 0.9120 +8355 196528 0.8000 +8355 221613 0.9240 +8355 253175 0.8470 +8355 255626 0.8620 +8355 317772 0.5020 +8355 333932 0.9600 +8355 387893 0.9170 +8355 401934 0.6480 +8355 440093 0.8550 +8355 440686 0.9320 +8355 440689 0.4650 +8355 474381 0.9240 +8355 554313 0.9840 +8355 653604 0.9590 +8355 723790 0.5260 +8355 728378 0.5460 +8356 8357 0.9420 +8356 8358 0.9760 +8356 8359 0.9770 +8356 8360 0.9800 +8356 8361 0.9990 +8356 8362 0.9750 +8356 8363 0.9770 +8356 8364 0.9760 +8356 8366 0.9790 +8356 8367 0.9780 +8356 8368 0.9800 +8356 8369 0.9990 +8356 8370 0.9850 +8356 8451 0.4500 +8356 8464 0.4270 +8356 8467 0.9160 +8356 8518 0.5770 +8356 8520 0.9950 +8356 8535 0.8520 +8356 8549 0.5010 +8356 8607 0.9120 +8356 8678 0.4220 +8356 8726 0.9580 +8356 8805 0.9890 +8356 8815 0.9580 +8356 8819 0.6120 +8356 8841 0.8900 +8356 8850 0.9970 +8356 8877 0.5240 +8356 8900 0.6460 +8356 8932 0.7220 +8356 8968 0.9490 +8356 8969 0.5040 +8356 8970 0.9920 +8356 8971 0.8730 +8356 8988 0.5420 +8356 9013 0.4840 +8356 9014 0.4330 +8356 9015 0.4780 +8356 9025 0.4390 +8356 9031 0.7180 +8356 9070 0.9450 +8356 9085 0.8620 +8356 9112 0.8140 +8356 9126 0.7880 +8356 9156 0.4680 +8356 9184 0.5390 +8356 9188 0.5410 +8356 9203 0.4410 +8356 9212 0.9090 +8356 9219 0.8250 +8356 9232 0.4480 +8356 9252 0.9700 +8356 9261 0.5850 +8356 9271 0.5470 +8356 9314 0.5390 +8356 9391 0.4240 +8356 9425 0.6480 +8356 9451 0.4250 +8356 9513 0.5010 +8356 9533 0.6300 +8356 9555 0.9670 +8356 9575 0.6090 +8356 9611 0.8490 +8356 9612 0.8120 +8356 9646 0.5550 +8356 9656 0.5040 +8356 9682 0.9990 +8356 9687 0.6060 +8356 9700 0.5110 +8356 9730 0.5300 +8356 9734 0.6410 +8356 9739 0.9600 +8356 9757 0.7650 +8356 9759 0.8010 +8356 9767 0.4750 +8356 9810 0.6340 +8356 9866 0.9180 +8356 9869 0.9880 +8356 9874 0.7510 +8356 9913 0.4410 +8356 9935 0.5820 +8356 10013 0.6750 +8356 10014 0.7390 +8356 10018 0.4370 +8356 10036 0.9650 +8356 10038 0.7270 +8356 10051 0.6990 +8356 10155 0.7320 +8356 10196 0.4470 +8356 10215 0.4480 +8356 10273 0.5550 +8356 10274 0.7060 +8356 10284 0.6420 +8356 10362 0.7190 +8356 10363 0.4780 +8356 10382 0.5760 +8356 10403 0.5880 +8356 10413 0.4290 +8356 10419 0.8540 +8356 10450 0.9540 +8356 10474 0.6870 +8356 10498 0.9940 +8356 10514 0.6030 +8356 10524 0.9380 +8356 10526 0.5620 +8356 10592 0.6300 +8356 10629 0.5050 +8356 10664 0.8520 +8356 10716 0.4260 +8356 10733 0.4110 +8356 10735 0.7040 +8356 10744 0.4810 +8356 10763 0.5210 +8356 10765 0.8630 +8356 10771 0.5620 +8356 10847 0.4650 +8356 10849 0.4730 +8356 10856 0.9170 +8356 10891 0.4750 +8356 10919 0.9980 +8356 10927 0.9600 +8356 10933 0.8360 +8356 10943 0.5040 +8356 10951 0.9990 +8356 10992 0.5120 +8356 11004 0.4870 +8356 11011 0.5520 +8356 11064 0.4610 +8356 11073 0.4010 +8356 11083 0.9670 +8356 11091 0.9990 +8356 11143 0.7790 +8356 11168 0.6920 +8356 11169 0.4250 +8356 11176 0.6930 +8356 11177 0.5980 +8356 11188 0.4630 +8356 11198 0.9920 +8356 11200 0.7480 +8356 11201 0.5050 +8356 11240 0.8010 +8356 11266 0.5180 +8356 11335 0.9990 +8356 11338 0.5650 +8356 22823 0.9030 +8356 22893 0.4090 +8356 22933 0.8680 +8356 22955 0.6320 +8356 22976 0.8460 +8356 22992 0.7930 +8356 23028 0.9710 +8356 23030 0.7700 +8356 23047 0.4670 +8356 23054 0.8270 +8356 23063 0.4010 +8356 23067 0.9400 +8356 23081 0.8520 +8356 23112 0.5750 +8356 23133 0.9870 +8356 23135 0.9620 +8356 23137 0.4040 +8356 23168 0.6000 +8356 23186 0.9240 +8356 23210 0.8870 +8356 23234 0.6720 +8356 23244 0.6810 +8356 23286 0.4870 +8356 23309 0.6730 +8356 23310 0.6660 +8356 23314 0.5750 +8356 23326 0.6280 +8356 23338 0.4900 +8356 23347 0.4170 +8356 23361 0.4340 +8356 23367 0.5740 +8356 23378 0.7320 +8356 23405 0.7020 +8356 23408 0.9480 +8356 23409 0.4730 +8356 23410 0.9500 +8356 23411 0.9200 +8356 23429 0.4200 +8356 23451 0.5580 +8356 23466 0.9830 +8356 23468 0.9990 +8356 23469 0.4020 +8356 23476 0.9920 +8356 23492 0.9740 +8356 23512 0.9560 +8356 23515 0.9230 +8356 23522 0.9850 +8356 23569 0.9400 +8356 23587 0.4830 +8356 23595 0.7850 +8356 23613 0.6480 +8356 23626 0.7650 +8356 23774 0.8600 +8356 25842 0.9990 +8356 25855 0.5010 +8356 25885 0.5190 +8356 25942 0.8020 +8356 26009 0.9470 +8356 26013 0.5370 +8356 26040 0.4020 +8356 26108 0.9810 +8356 26147 0.8730 +8356 26227 0.5020 +8356 26523 0.7030 +8356 26610 0.5380 +8356 27097 0.5010 +8356 27125 0.4440 +8356 27154 0.5670 +8356 27161 0.7030 +8356 27327 0.5690 +8356 27443 0.4530 +8356 29072 0.9950 +8356 29102 0.4440 +8356 29113 0.4130 +8356 29115 0.5260 +8356 29117 0.9450 +8356 29128 0.9940 +8356 29781 0.5870 +8356 29855 0.4660 +8356 29943 0.5600 +8356 29947 0.9990 +8356 30827 0.7610 +8356 30834 0.5030 +8356 50511 0.4420 +8356 51082 0.4520 +8356 51111 0.4580 +8356 51147 0.9850 +8356 51176 0.6900 +8356 51230 0.7220 +8356 51317 0.9040 +8356 51412 0.6680 +8356 51533 0.6730 +8356 51547 0.5690 +8356 51548 0.8730 +8356 51564 0.5900 +8356 51592 0.9840 +8356 51702 0.6220 +8356 51710 0.4350 +8356 51742 0.7910 +8356 51780 0.6400 +8356 51806 0.4470 +8356 53615 0.6720 +8356 54014 0.7500 +8356 54069 0.4350 +8356 54145 0.9270 +8356 54205 0.4890 +8356 54496 0.6570 +8356 54556 0.9410 +8356 54583 0.7260 +8356 54617 0.9240 +8356 54623 0.4290 +8356 54737 0.9860 +8356 54751 0.5930 +8356 54790 0.5200 +8356 54815 0.7830 +8356 54859 0.4410 +8356 54892 0.6160 +8356 54904 0.9810 +8356 55140 0.6770 +8356 55143 0.8370 +8356 55148 0.6550 +8356 55170 0.8560 +8356 55193 0.9950 +8356 55211 0.5040 +8356 55250 0.4620 +8356 55274 0.8420 +8356 55320 0.4460 +8356 55352 0.4540 +8356 55355 0.6470 +8356 55506 0.5570 +8356 55578 0.5850 +8356 55636 0.5750 +8356 55677 0.6100 +8356 55689 0.8360 +8356 55693 0.7000 +8356 55723 0.9880 +8356 55729 0.8390 +8356 55766 0.6440 +8356 55818 0.8360 +8356 55839 0.6920 +8356 55869 0.8730 +8356 55870 0.7680 +8356 55904 0.9680 +8356 55929 0.5410 +8356 56254 0.7680 +8356 56848 0.9620 +8356 56852 0.5180 +8356 56943 0.6770 +8356 56950 0.7340 +8356 56970 0.4780 +8356 56979 0.8580 +8356 57082 0.5270 +8356 57325 0.5110 +8356 57332 0.8690 +8356 57459 0.6790 +8356 57492 0.5590 +8356 57504 0.6650 +8356 57634 0.4850 +8356 57661 0.5090 +8356 57680 0.6280 +8356 57713 0.5350 +8356 57721 0.7690 +8356 58508 0.9160 +8356 60496 0.5040 +8356 63976 0.5870 +8356 64324 0.7590 +8356 64425 0.5480 +8356 64426 0.5950 +8356 64754 0.8280 +8356 64769 0.6990 +8356 64919 0.4360 +8356 64946 0.4730 +8356 65980 0.6030 +8356 79019 0.4150 +8356 79084 0.6960 +8356 79101 0.4110 +8356 79142 0.6520 +8356 79447 0.6900 +8356 79577 0.5290 +8356 79595 0.5120 +8356 79685 0.5220 +8356 79710 0.4460 +8356 79711 0.9950 +8356 79718 0.6120 +8356 79723 0.8380 +8356 79813 0.9780 +8356 79823 0.5710 +8356 79831 0.4150 +8356 79885 0.6470 +8356 79913 0.9430 +8356 79915 0.4460 +8356 79923 0.7180 +8356 79960 0.7110 +8356 79980 0.4330 +8356 79991 0.4830 +8356 80012 0.8920 +8356 80152 0.8060 +8356 80198 0.4040 +8356 80312 0.5710 +8356 80314 0.4260 +8356 80335 0.8160 +8356 80349 0.5010 +8356 80818 0.4340 +8356 80853 0.7140 +8356 80854 0.9510 +8356 81611 0.5070 +8356 81620 0.5740 +8356 81631 0.4290 +8356 81669 0.7120 +8356 83439 0.5620 +8356 83444 0.8500 +8356 83540 0.4730 +8356 83740 0.9300 +8356 83852 0.7650 +8356 83860 0.8660 +8356 83903 0.8100 +8356 83933 0.7030 +8356 84084 0.4180 +8356 84148 0.5890 +8356 84152 0.5220 +8356 84159 0.5370 +8356 84172 0.5930 +8356 84193 0.6140 +8356 84260 0.4530 +8356 84289 0.6690 +8356 84444 0.9960 +8356 84656 0.9320 +8356 84661 0.8850 +8356 84678 0.8180 +8356 84717 0.9230 +8356 84733 0.9940 +8356 84759 0.4720 +8356 84787 0.4490 +8356 84823 0.5090 +8356 84864 0.5560 +8356 84962 0.5430 +8356 85235 0.6970 +8356 85236 0.9970 +8356 90665 0.5230 +8356 90780 0.9890 +8356 91860 0.4290 +8356 92292 0.4600 +8356 92815 0.7550 +8356 93624 0.7540 +8356 94239 0.9910 +8356 112398 0.9170 +8356 112399 0.7520 +8356 112869 0.9890 +8356 114799 0.4560 +8356 114803 0.4520 +8356 115004 0.8620 +8356 115560 0.4340 +8356 116985 0.4120 +8356 117143 0.5180 +8356 121504 0.9760 +8356 121536 0.8030 +8356 123169 0.6970 +8356 124359 0.9360 +8356 125476 0.4760 +8356 126961 0.9680 +8356 128312 0.9840 +8356 132243 0.4390 +8356 133482 0.8680 +8356 137902 0.7180 +8356 140690 0.5300 +8356 140836 0.8390 +8356 143689 0.5590 +8356 144097 0.8200 +8356 146713 0.4960 +8356 148266 0.4330 +8356 150572 0.4700 +8356 151648 0.5120 +8356 152098 0.9190 +8356 153090 0.5090 +8356 157313 0.4270 +8356 157570 0.4730 +8356 158983 0.8640 +8356 163688 0.4200 +8356 171023 0.4180 +8356 192669 0.7910 +8356 192670 0.7000 +8356 196528 0.9140 +8356 200424 0.4800 +8356 201254 0.5470 +8356 221037 0.7290 +8356 221613 0.9600 +8356 221656 0.8340 +8356 221830 0.4480 +8356 253175 0.8470 +8356 253714 0.6560 +8356 255626 0.9830 +8356 257218 0.5670 +8356 283149 0.5570 +8356 284390 0.4340 +8356 286436 0.8630 +8356 317772 0.7500 +8356 333932 0.9600 +8356 338376 0.4180 +8356 340602 0.5250 +8356 345456 0.4510 +8356 353238 0.6050 +8356 359787 0.5530 +8356 375189 0.4490 +8356 378708 0.6850 +8356 387103 0.6100 +8356 387893 0.9780 +8356 390245 0.4160 +8356 440093 0.8560 +8356 440686 0.9440 +8356 440689 0.9690 +8356 474381 0.9550 +8356 474382 0.6880 +8356 554313 0.9750 +8356 642489 0.4030 +8356 653604 0.9880 +8356 723790 0.4250 +8356 728378 0.7220 +8356 100170841 0.5080 +8356 100532731 0.7340 +8356 102723407 0.5920 +8356 114483833 0.8710 +8357 8358 0.9490 +8357 8359 0.9840 +8357 8360 0.9860 +8357 8361 0.9770 +8357 8362 0.9830 +8357 8363 0.9850 +8357 8364 0.9830 +8357 8366 0.9850 +8357 8367 0.9880 +8357 8368 0.9830 +8357 8370 0.9940 +8357 8520 0.7060 +8357 8607 0.8750 +8357 8805 0.9510 +8357 8850 0.9610 +8357 8968 0.9610 +8357 8969 0.8900 +8357 8970 0.9790 +8357 8971 0.8450 +8357 9085 0.8470 +8357 9555 0.9280 +8357 9682 0.9110 +8357 9759 0.5310 +8357 9866 0.9070 +8357 9869 0.9150 +8357 10036 0.4360 +8357 10038 0.4470 +8357 10382 0.5810 +8357 10450 0.9030 +8357 10498 0.9220 +8357 10856 0.8780 +8357 10919 0.9310 +8357 10927 0.9000 +8357 10951 0.9340 +8357 11083 0.9320 +8357 11091 0.9220 +8357 11198 0.9510 +8357 11200 0.4630 +8357 11335 0.9330 +8357 23133 0.9190 +8357 23135 0.6220 +8357 23270 0.4490 +8357 23408 0.9140 +8357 23410 0.9140 +8357 23466 0.9090 +8357 23468 0.9410 +8357 23492 0.9160 +8357 23515 0.9060 +8357 23522 0.9220 +8357 25842 0.9660 +8357 26009 0.9030 +8357 26108 0.9090 +8357 29072 0.9470 +8357 29113 0.4590 +8357 29117 0.8160 +8357 29128 0.9090 +8357 29947 0.8180 +8357 51147 0.9140 +8357 51592 0.9080 +8357 51742 0.5360 +8357 54145 0.4510 +8357 54617 0.9140 +8357 54737 0.9320 +8357 54904 0.9160 +8357 55193 0.9350 +8357 55274 0.8100 +8357 55723 0.7030 +8357 55904 0.9080 +8357 79711 0.9400 +8357 79813 0.9250 +8357 79913 0.8540 +8357 83444 0.8280 +8357 83740 0.9240 +8357 84444 0.9320 +8357 84656 0.8030 +8357 84717 0.9050 +8357 84733 0.9130 +8357 85236 0.9710 +8357 90780 0.9160 +8357 92815 0.4780 +8357 94239 0.9440 +8357 112869 0.9200 +8357 115004 0.8090 +8357 121504 0.9830 +8357 123169 0.4010 +8357 124359 0.9230 +8357 126961 0.9620 +8357 128312 0.8740 +8357 144097 0.8010 +8357 152098 0.9120 +8357 196528 0.8000 +8357 221613 0.9240 +8357 253175 0.8470 +8357 255626 0.8610 +8357 317772 0.5050 +8357 333932 0.9620 +8357 387893 0.9170 +8357 401934 0.6480 +8357 440093 0.8550 +8357 440686 0.9320 +8357 440689 0.4750 +8357 474381 0.9240 +8357 554313 0.9830 +8357 653604 0.9610 +8357 723790 0.6100 +8357 728378 0.5540 +8358 8359 0.9870 +8358 8360 0.9900 +8358 8361 0.9880 +8358 8362 0.9840 +8358 8363 0.9880 +8358 8364 0.9860 +8358 8366 0.9900 +8358 8367 0.9900 +8358 8368 0.9900 +8358 8370 0.9890 +8358 8520 0.5500 +8358 8607 0.8740 +8358 8805 0.9510 +8358 8850 0.9600 +8358 8968 0.9680 +8358 8969 0.5730 +8358 8970 0.9530 +8358 8971 0.8400 +8358 9085 0.8470 +8358 9555 0.9520 +8358 9682 0.9110 +8358 9759 0.5310 +8358 9866 0.9070 +8358 9869 0.9150 +8358 10036 0.5100 +8358 10382 0.5600 +8358 10450 0.9030 +8358 10498 0.9220 +8358 10856 0.8760 +8358 10919 0.9310 +8358 10927 0.9000 +8358 10951 0.9510 +8358 11083 0.9320 +8358 11091 0.9220 +8358 11198 0.9530 +8358 11200 0.4760 +8358 11335 0.9350 +8358 23133 0.9190 +8358 23135 0.6430 +8358 23408 0.9140 +8358 23410 0.9140 +8358 23466 0.9090 +8358 23468 0.9580 +8358 23492 0.9140 +8358 23515 0.9060 +8358 23522 0.9220 +8358 25842 0.9620 +8358 26009 0.9030 +8358 26108 0.9100 +8358 29072 0.9600 +8358 29117 0.8160 +8358 29128 0.9100 +8358 29947 0.8180 +8358 51147 0.9140 +8358 51592 0.9080 +8358 51742 0.5340 +8358 54145 0.4340 +8358 54617 0.9140 +8358 54737 0.9320 +8358 54904 0.9150 +8358 55193 0.9320 +8358 55274 0.8100 +8358 55723 0.6700 +8358 55904 0.9080 +8358 57670 0.4170 +8358 79711 0.9370 +8358 79813 0.9330 +8358 79913 0.8540 +8358 83444 0.8280 +8358 83740 0.9240 +8358 84444 0.9330 +8358 84717 0.9050 +8358 84733 0.9110 +8358 85235 0.6540 +8358 85236 0.9470 +8358 90780 0.9160 +8358 94239 0.9430 +8358 112869 0.9200 +8358 115004 0.8090 +8358 121504 0.9840 +8358 123169 0.4010 +8358 124359 0.9230 +8358 126961 0.9650 +8358 128312 0.9110 +8358 144097 0.8000 +8358 152098 0.9120 +8358 196528 0.8000 +8358 200558 0.4630 +8358 221613 0.9300 +8358 253175 0.8470 +8358 255626 0.8720 +8358 317772 0.5800 +8358 333932 0.9650 +8358 340602 0.4410 +8358 387893 0.9160 +8358 401934 0.5940 +8358 440093 0.8550 +8358 440686 0.9370 +8358 440689 0.4610 +8358 474381 0.9240 +8358 554313 0.9840 +8358 653604 0.9650 +8358 723790 0.4850 +8358 728378 0.5500 +8359 8360 0.9620 +8359 8361 0.9710 +8359 8362 0.9520 +8359 8363 0.9570 +8359 8364 0.9560 +8359 8366 0.9780 +8359 8367 0.9570 +8359 8368 0.9570 +8359 8370 0.9560 +8359 8467 0.9320 +8359 8520 0.5280 +8359 8607 0.8620 +8359 8968 0.9870 +8359 8969 0.9610 +8359 8970 0.9750 +8359 8971 0.9240 +8359 9070 0.8580 +8359 9188 0.4350 +8359 9282 0.8200 +8359 9324 0.4340 +8359 9412 0.8170 +8359 9439 0.8000 +8359 9440 0.8000 +8359 9441 0.8290 +8359 9442 0.8010 +8359 9443 0.8190 +8359 9477 0.8000 +8359 9555 0.9430 +8359 9557 0.9150 +8359 9646 0.8570 +8359 9682 0.9120 +8359 9862 0.8010 +8359 10001 0.8000 +8359 10025 0.8000 +8359 10286 0.4080 +8359 10419 0.9200 +8359 10856 0.8660 +8359 10943 0.9160 +8359 11091 0.8310 +8359 11168 0.8080 +8359 11198 0.9480 +8359 23028 0.5430 +8359 23133 0.4890 +8359 23168 0.8520 +8359 23234 0.9000 +8359 23421 0.8000 +8359 23512 0.8060 +8359 25842 0.9410 +8359 26013 0.9050 +8359 29028 0.9150 +8359 29072 0.8730 +8359 29079 0.8000 +8359 29104 0.9000 +8359 29117 0.8110 +8359 51003 0.8040 +8359 51504 0.8000 +8359 51586 0.8000 +8359 54145 0.4260 +8359 54606 0.4350 +8359 54617 0.8310 +8359 54623 0.8500 +8359 54797 0.8000 +8359 54904 0.8290 +8359 55090 0.8000 +8359 55166 0.8000 +8359 55193 0.8560 +8359 55274 0.9050 +8359 55355 0.9020 +8359 55588 0.8000 +8359 55723 0.9450 +8359 55766 0.9240 +8359 55839 0.9050 +8359 58508 0.8550 +8359 64105 0.8010 +8359 64946 0.8100 +8359 79019 0.8000 +8359 79084 0.8190 +8359 79172 0.8070 +8359 79577 0.8680 +8359 79682 0.8010 +8359 79711 0.9420 +8359 79913 0.8000 +8359 80152 0.8000 +8359 80306 0.8000 +8359 80349 0.8000 +8359 81857 0.8040 +8359 83444 0.8190 +8359 83740 0.9310 +8359 83860 0.8020 +8359 84246 0.8120 +8359 84444 0.9370 +8359 84661 0.8610 +8359 85235 0.9460 +8359 85236 0.9700 +8359 90390 0.8000 +8359 91687 0.8170 +8359 92815 0.4440 +8359 94239 0.9500 +8359 112950 0.8000 +8359 113177 0.4010 +8359 115004 0.8100 +8359 121504 0.9540 +8359 123169 0.8610 +8359 126961 0.9660 +8359 128312 0.9410 +8359 129685 0.8000 +8359 132243 0.6320 +8359 144108 0.9040 +8359 196528 0.8000 +8359 201254 0.8140 +8359 221613 0.9500 +8359 255626 0.9420 +8359 317772 0.9610 +8359 333932 0.9680 +8359 341567 0.4240 +8359 378708 0.8120 +8359 387103 0.8120 +8359 387893 0.9150 +8359 391769 0.9350 +8359 400569 0.8000 +8359 401541 0.8060 +8359 404672 0.8170 +8359 440093 0.9350 +8359 440689 0.8970 +8359 474381 0.9310 +8359 554313 0.9520 +8359 653604 0.9540 +8359 723790 0.9560 +8359 728378 0.5440 +8359 114483833 0.4520 +8360 8361 0.9820 +8360 8362 0.9530 +8360 8363 0.9650 +8360 8364 0.9560 +8360 8366 0.9830 +8360 8367 0.9760 +8360 8368 0.9710 +8360 8370 0.9570 +8360 8467 0.9320 +8360 8520 0.5250 +8360 8607 0.8610 +8360 8805 0.5290 +8360 8968 0.9890 +8360 8969 0.9650 +8360 8970 0.9770 +8360 8971 0.9310 +8360 9070 0.8580 +8360 9188 0.4320 +8360 9282 0.8190 +8360 9324 0.4280 +8360 9412 0.8170 +8360 9439 0.8000 +8360 9440 0.8000 +8360 9441 0.8290 +8360 9442 0.8010 +8360 9443 0.8200 +8360 9477 0.8000 +8360 9555 0.9430 +8360 9557 0.9150 +8360 9646 0.8570 +8360 9682 0.9110 +8360 9862 0.8010 +8360 10001 0.8000 +8360 10025 0.8000 +8360 10286 0.4070 +8360 10419 0.9180 +8360 10856 0.8650 +8360 10943 0.9160 +8360 11091 0.8310 +8360 11168 0.8080 +8360 11198 0.9480 +8360 23028 0.5400 +8360 23168 0.8520 +8360 23234 0.9000 +8360 23421 0.8000 +8360 23476 0.4540 +8360 23512 0.8060 +8360 25842 0.9470 +8360 26013 0.9050 +8360 29028 0.9150 +8360 29072 0.8730 +8360 29079 0.8000 +8360 29104 0.9000 +8360 29117 0.8110 +8360 51003 0.8070 +8360 51504 0.8000 +8360 51586 0.8000 +8360 54145 0.4380 +8360 54606 0.4320 +8360 54617 0.8310 +8360 54623 0.8500 +8360 54797 0.8000 +8360 54904 0.8290 +8360 55090 0.8000 +8360 55166 0.8000 +8360 55193 0.8560 +8360 55274 0.9050 +8360 55355 0.9020 +8360 55588 0.8000 +8360 55723 0.9450 +8360 55766 0.9250 +8360 55839 0.9050 +8360 58508 0.8550 +8360 64105 0.8010 +8360 64946 0.8100 +8360 79019 0.8120 +8360 79084 0.8190 +8360 79172 0.8080 +8360 79577 0.8690 +8360 79682 0.8020 +8360 79711 0.9420 +8360 79913 0.8000 +8360 80152 0.8000 +8360 80306 0.8000 +8360 80349 0.8000 +8360 81857 0.8040 +8360 83444 0.8190 +8360 83740 0.9310 +8360 83860 0.8020 +8360 84246 0.8120 +8360 84444 0.9370 +8360 84661 0.8610 +8360 85235 0.9460 +8360 85236 0.9720 +8360 90390 0.8000 +8360 91687 0.8170 +8360 92815 0.4760 +8360 94239 0.9510 +8360 112950 0.8000 +8360 113177 0.4010 +8360 115004 0.8130 +8360 121504 0.9550 +8360 123169 0.8630 +8360 126961 0.9690 +8360 128312 0.9450 +8360 129685 0.8010 +8360 132243 0.6730 +8360 144108 0.9040 +8360 196528 0.8000 +8360 201254 0.8040 +8360 221613 0.9550 +8360 255626 0.9420 +8360 317772 0.9620 +8360 333932 0.9690 +8360 341567 0.4680 +8360 378708 0.8120 +8360 387103 0.8210 +8360 387893 0.9150 +8360 391769 0.9350 +8360 400569 0.8000 +8360 401541 0.8060 +8360 404672 0.8170 +8360 440093 0.9370 +8360 440689 0.8990 +8360 474381 0.9310 +8360 554313 0.9520 +8360 653604 0.9560 +8360 723790 0.9570 +8360 728378 0.5410 +8360 114483833 0.4520 +8361 8362 0.9690 +8361 8363 0.9800 +8361 8364 0.9700 +8361 8366 0.9830 +8361 8367 0.9810 +8361 8368 0.9810 +8361 8369 0.9070 +8361 8370 0.9700 +8361 8450 0.4540 +8361 8451 0.6430 +8361 8454 0.5250 +8361 8467 0.9970 +8361 8468 0.5690 +8361 8473 0.6200 +8361 8518 0.4890 +8361 8520 0.9980 +8361 8535 0.7810 +8361 8568 0.5300 +8361 8607 0.9740 +8361 8697 0.5290 +8361 8726 0.7860 +8361 8805 0.8310 +8361 8815 0.4720 +8361 8819 0.7760 +8361 8841 0.9410 +8361 8850 0.9960 +8361 8881 0.5130 +8361 8899 0.5110 +8361 8900 0.6800 +8361 8924 0.5510 +8361 8930 0.4200 +8361 8932 0.7020 +8361 8968 0.9820 +8361 8969 0.9580 +8361 8970 0.9940 +8361 8971 0.9070 +8361 9013 0.6070 +8361 9014 0.5570 +8361 9015 0.7130 +8361 9025 0.7330 +8361 9031 0.7010 +8361 9045 0.5680 +8361 9055 0.5600 +8361 9070 0.9820 +8361 9112 0.7470 +8361 9126 0.6650 +8361 9129 0.5140 +8361 9133 0.4040 +8361 9156 0.4880 +8361 9188 0.7600 +8361 9203 0.5500 +8361 9212 0.5290 +8361 9218 0.4220 +8361 9219 0.8460 +8361 9261 0.4990 +8361 9282 0.8290 +8361 9314 0.4870 +8361 9320 0.5490 +8361 9324 0.5680 +8361 9329 0.5790 +8361 9349 0.4300 +8361 9377 0.4690 +8361 9412 0.8080 +8361 9425 0.5150 +8361 9439 0.8030 +8361 9440 0.8580 +8361 9441 0.8290 +8361 9442 0.8030 +8361 9443 0.8330 +8361 9477 0.8120 +8361 9493 0.5370 +8361 9533 0.7100 +8361 9555 0.9810 +8361 9557 0.9660 +8361 9575 0.6350 +8361 9589 0.5420 +8361 9611 0.8950 +8361 9612 0.8360 +8361 9636 0.5790 +8361 9646 0.9050 +8361 9656 0.9130 +8361 9678 0.5130 +8361 9682 0.9930 +8361 9687 0.5480 +8361 9734 0.6540 +8361 9739 0.7460 +8361 9757 0.4900 +8361 9759 0.8080 +8361 9767 0.4290 +8361 9775 0.8000 +8361 9810 0.4400 +8361 9862 0.8040 +8361 9869 0.6410 +8361 9935 0.5170 +8361 9960 0.4080 +8361 9972 0.5560 +8361 9978 0.6240 +8361 9985 0.5610 +8361 9994 0.5510 +8361 10001 0.8570 +8361 10013 0.7310 +8361 10014 0.7260 +8361 10025 0.8010 +8361 10036 0.8920 +8361 10038 0.7390 +8361 10051 0.7020 +8361 10111 0.6930 +8361 10112 0.5170 +8361 10155 0.7960 +8361 10196 0.5660 +8361 10250 0.5470 +8361 10274 0.5350 +8361 10284 0.6800 +8361 10286 0.5540 +8361 10294 0.6320 +8361 10362 0.6060 +8361 10363 0.5560 +8361 10383 0.5800 +8361 10388 0.4990 +8361 10389 0.5540 +8361 10413 0.4520 +8361 10419 0.9970 +8361 10445 0.6540 +8361 10467 0.4380 +8361 10474 0.4580 +8361 10492 0.5470 +8361 10498 0.5650 +8361 10499 0.4100 +8361 10514 0.7520 +8361 10524 0.9930 +8361 10526 0.5280 +8361 10528 0.5590 +8361 10592 0.6630 +8361 10594 0.4790 +8361 10614 0.4390 +8361 10629 0.6530 +8361 10657 0.4170 +8361 10658 0.5170 +8361 10664 0.7860 +8361 10734 0.5000 +8361 10735 0.7620 +8361 10743 0.5810 +8361 10808 0.4300 +8361 10847 0.7160 +8361 10849 0.5660 +8361 10856 0.9720 +8361 10902 0.7690 +8361 10919 0.8400 +8361 10933 0.8350 +8361 10940 0.5130 +8361 10943 0.9920 +8361 10949 0.5270 +8361 10951 0.8810 +8361 10992 0.4010 +8361 11056 0.5180 +8361 11073 0.4110 +8361 11083 0.7380 +8361 11091 0.9730 +8361 11100 0.5500 +8361 11143 0.9680 +8361 11144 0.5310 +8361 11168 0.8960 +8361 11176 0.8890 +8361 11177 0.7870 +8361 11198 0.9900 +8361 11200 0.8100 +8361 11284 0.5540 +8361 11335 0.9290 +8361 11338 0.6050 +8361 11339 0.6270 +8361 22823 0.6640 +8361 22916 0.7050 +8361 22933 0.8440 +8361 22955 0.5270 +8361 22976 0.7520 +8361 22992 0.6060 +8361 23028 0.8990 +8361 23030 0.7980 +8361 23054 0.6720 +8361 23067 0.5010 +8361 23076 0.5320 +8361 23081 0.6410 +8361 23112 0.5640 +8361 23126 0.5540 +8361 23133 0.9540 +8361 23135 0.7710 +8361 23168 0.8700 +8361 23186 0.7520 +8361 23195 0.5580 +8361 23198 0.5730 +8361 23210 0.9320 +8361 23223 0.5140 +8361 23234 0.9710 +8361 23244 0.5960 +8361 23309 0.7050 +8361 23310 0.8800 +8361 23316 0.4030 +8361 23347 0.5870 +8361 23350 0.5170 +8361 23361 0.4390 +8361 23378 0.6380 +8361 23408 0.5290 +8361 23409 0.4710 +8361 23410 0.6230 +8361 23411 0.9060 +8361 23421 0.8990 +8361 23451 0.5810 +8361 23466 0.6470 +8361 23468 0.9110 +8361 23476 0.9990 +8361 23492 0.4020 +8361 23512 0.9640 +8361 23522 0.5470 +8361 23569 0.5060 +8361 23587 0.4880 +8361 23595 0.7920 +8361 23613 0.8320 +8361 23626 0.6000 +8361 23643 0.4340 +8361 23650 0.5490 +8361 24137 0.5480 +8361 24148 0.5160 +8361 25842 0.9960 +8361 25855 0.7540 +8361 25885 0.6110 +8361 25913 0.6410 +8361 25942 0.9010 +8361 25957 0.4010 +8361 25988 0.5090 +8361 26013 0.9850 +8361 26108 0.5530 +8361 26121 0.5130 +8361 26122 0.6820 +8361 26147 0.5800 +8361 26155 0.5140 +8361 26168 0.4090 +8361 26173 0.5140 +8361 26277 0.6770 +8361 26517 0.5140 +8361 26523 0.5480 +8361 26610 0.5000 +8361 27030 0.5270 +8361 27043 0.5380 +8361 27127 0.5630 +8361 27161 0.5690 +8361 27327 0.4990 +8361 27443 0.4790 +8361 29028 0.9600 +8361 29072 0.9470 +8361 29079 0.8550 +8361 29104 0.9170 +8361 29115 0.6350 +8361 29117 0.9240 +8361 29127 0.5470 +8361 29128 0.7350 +8361 29781 0.6350 +8361 29893 0.4010 +8361 29947 0.6670 +8361 29979 0.4430 +8361 29994 0.4510 +8361 30827 0.5640 +8361 30834 0.4900 +8361 30836 0.5140 +8361 50511 0.5500 +8361 50809 0.5570 +8361 50943 0.7930 +8361 51003 0.8120 +8361 51082 0.4230 +8361 51111 0.9010 +8361 51147 0.7160 +8361 51176 0.6640 +8361 51230 0.8120 +8361 51231 0.5220 +8361 51317 0.6900 +8361 51377 0.5230 +8361 51412 0.6530 +8361 51434 0.5170 +8361 51460 0.5580 +8361 51477 0.4200 +8361 51493 0.5190 +8361 51504 0.8750 +8361 51547 0.7550 +8361 51548 0.7530 +8361 51564 0.5120 +8361 51574 0.5530 +8361 51586 0.8050 +8361 51588 0.6020 +8361 51602 0.5140 +8361 51605 0.4360 +8361 51663 0.5210 +8361 51692 0.5570 +8361 51720 0.7420 +8361 51742 0.8520 +8361 53615 0.6420 +8361 53981 0.5490 +8361 54069 0.6310 +8361 54145 0.9070 +8361 54386 0.7490 +8361 54454 0.6190 +8361 54496 0.7860 +8361 54556 0.8420 +8361 54583 0.4730 +8361 54606 0.6080 +8361 54617 0.9380 +8361 54623 0.9300 +8361 54681 0.4460 +8361 54737 0.4150 +8361 54797 0.8010 +8361 54799 0.7260 +8361 54815 0.7960 +8361 54859 0.4450 +8361 54892 0.8320 +8361 54904 0.9360 +8361 54934 0.6770 +8361 54969 0.4430 +8361 55011 0.5070 +8361 55090 0.8520 +8361 55133 0.4830 +8361 55140 0.7380 +8361 55148 0.5260 +8361 55166 0.9180 +8361 55167 0.8400 +8361 55170 0.9200 +8361 55183 0.7800 +8361 55193 0.9670 +8361 55226 0.4230 +8361 55247 0.5230 +8361 55250 0.4710 +8361 55257 0.6690 +8361 55274 0.9110 +8361 55320 0.6190 +8361 55352 0.8370 +8361 55355 0.9990 +8361 55506 0.5270 +8361 55588 0.8570 +8361 55636 0.8180 +8361 55677 0.5540 +8361 55683 0.6540 +8361 55689 0.4720 +8361 55723 0.9930 +8361 55766 0.9590 +8361 55839 0.9610 +8361 55869 0.9210 +8361 55929 0.8350 +8361 55957 0.5210 +8361 56154 0.4380 +8361 56158 0.5000 +8361 56254 0.5610 +8361 56341 0.7710 +8361 56852 0.4950 +8361 56893 0.6000 +8361 56943 0.4860 +8361 56950 0.4140 +8361 56979 0.6130 +8361 57062 0.5450 +8361 57082 0.5430 +8361 57325 0.7180 +8361 57332 0.7790 +8361 57459 0.7800 +8361 57492 0.5480 +8361 57504 0.5690 +8361 57508 0.4280 +8361 57634 0.9290 +8361 57680 0.5170 +8361 58490 0.5180 +8361 58508 0.9770 +8361 58516 0.5120 +8361 60496 0.8110 +8361 64105 0.9030 +8361 64324 0.9180 +8361 64421 0.5100 +8361 64425 0.6280 +8361 64426 0.7250 +8361 64431 0.4920 +8361 64682 0.5130 +8361 64754 0.7210 +8361 64769 0.8670 +8361 64946 0.9180 +8361 79019 0.9050 +8361 79026 0.6010 +8361 79080 0.5190 +8361 79084 0.9650 +8361 79101 0.4110 +8361 79139 0.4360 +8361 79172 0.9030 +8361 79366 0.4740 +8361 79447 0.6300 +8361 79577 0.9110 +8361 79595 0.6350 +8361 79682 0.9050 +8361 79685 0.6300 +8361 79697 0.4780 +8361 79711 0.9770 +8361 79718 0.6530 +8361 79723 0.5130 +8361 79728 0.5780 +8361 79813 0.7230 +8361 79829 0.8330 +8361 79852 0.4790 +8361 79885 0.5990 +8361 79913 0.9550 +8361 79915 0.5930 +8361 79960 0.6830 +8361 79968 0.6810 +8361 80010 0.4200 +8361 80012 0.6520 +8361 80018 0.4280 +8361 80152 0.9220 +8361 80155 0.5160 +8361 80205 0.6890 +8361 80306 0.8100 +8361 80314 0.8070 +8361 80335 0.5990 +8361 80349 0.8140 +8361 80755 0.4210 +8361 80764 0.8160 +8361 80854 0.7760 +8361 81556 0.5640 +8361 81569 0.4010 +8361 81611 0.6230 +8361 81857 0.8070 +8361 83439 0.7140 +8361 83444 0.8190 +8361 83639 0.4240 +8361 83666 0.4310 +8361 83732 0.4860 +8361 83740 0.9630 +8361 83746 0.6020 +8361 83860 0.8490 +8361 83933 0.7960 +8361 84057 0.4300 +8361 84142 0.6410 +8361 84148 0.9570 +8361 84172 0.6030 +8361 84181 0.4820 +8361 84196 0.5140 +8361 84246 0.8610 +8361 84271 0.6710 +8361 84289 0.7300 +8361 84295 0.4400 +8361 84312 0.7300 +8361 84444 0.9800 +8361 84656 0.5030 +8361 84661 0.9460 +8361 84678 0.4970 +8361 84717 0.6080 +8361 84733 0.6740 +8361 84787 0.9040 +8361 84790 0.4480 +8361 84823 0.4690 +8361 84897 0.4880 +8361 84962 0.4990 +8361 85235 0.9720 +8361 85236 0.9970 +8361 90378 0.4830 +8361 90390 0.8030 +8361 90780 0.5890 +8361 91687 0.9100 +8361 92292 0.5120 +8361 92815 0.7860 +8361 93426 0.4990 +8361 93624 0.4060 +8361 93973 0.5670 +8361 94239 0.9950 +8361 112869 0.5130 +8361 112950 0.8050 +8361 113177 0.4140 +8361 114799 0.5060 +8361 115004 0.8270 +8361 120892 0.4820 +8361 121504 0.9690 +8361 121536 0.6010 +8361 123169 0.9070 +8361 124245 0.5770 +8361 126961 0.9790 +8361 128312 0.9890 +8361 129685 0.8030 +8361 132243 0.4600 +8361 132660 0.5440 +8361 133482 0.6750 +8361 134353 0.4430 +8361 137902 0.4550 +8361 138474 0.6650 +8361 144108 0.9350 +8361 146909 0.5300 +8361 151636 0.6570 +8361 152518 0.4110 +8361 158983 0.8270 +8361 165918 0.8120 +8361 192669 0.5170 +8361 192670 0.5470 +8361 196528 0.9310 +8361 200424 0.4260 +8361 201254 0.9330 +8361 203068 0.4760 +8361 220988 0.5500 +8361 221037 0.4050 +8361 221613 0.9730 +8361 221656 0.5770 +8361 221830 0.4260 +8361 221937 0.4640 +8361 222229 0.6170 +8361 253714 0.6600 +8361 255626 0.9890 +8361 256126 0.5110 +8361 257218 0.6970 +8361 283149 0.5110 +8361 283489 0.6290 +8361 284058 0.6940 +8361 286204 0.8070 +8361 286436 0.8250 +8361 317772 0.9840 +8361 333932 0.9540 +8361 339287 0.7350 +8361 340096 0.4600 +8361 378708 0.9450 +8361 387103 0.9130 +8361 387893 0.9990 +8361 391769 0.9430 +8361 400569 0.8010 +8361 401541 0.9020 +8361 404672 0.8170 +8361 440093 0.9990 +8361 440686 0.9980 +8361 440689 0.9930 +8361 474381 0.9730 +8361 474382 0.6990 +8361 554313 0.9680 +8361 644186 0.5130 +8361 653499 0.4930 +8361 653604 0.9990 +8361 723790 0.9540 +8361 728378 0.5690 +8361 100885850 0.4130 +8361 114483833 0.8450 +8362 8363 0.9520 +8362 8364 0.9520 +8362 8366 0.9680 +8362 8367 0.9520 +8362 8368 0.9530 +8362 8370 0.9520 +8362 8467 0.9320 +8362 8520 0.5880 +8362 8607 0.8620 +8362 8805 0.5290 +8362 8968 0.9830 +8362 8969 0.9620 +8362 8970 0.9740 +8362 8971 0.9320 +8362 9070 0.8580 +8362 9188 0.4350 +8362 9282 0.8200 +8362 9324 0.4320 +8362 9412 0.8170 +8362 9439 0.8000 +8362 9440 0.8000 +8362 9441 0.8290 +8362 9442 0.8010 +8362 9443 0.8190 +8362 9477 0.8000 +8362 9555 0.9430 +8362 9557 0.9150 +8362 9646 0.8570 +8362 9682 0.9120 +8362 9862 0.8010 +8362 10001 0.8000 +8362 10025 0.8000 +8362 10286 0.4080 +8362 10419 0.9190 +8362 10856 0.8650 +8362 10943 0.9160 +8362 11091 0.8310 +8362 11168 0.8080 +8362 11198 0.9530 +8362 23028 0.5500 +8362 23168 0.8520 +8362 23234 0.9000 +8362 23421 0.8000 +8362 23476 0.4540 +8362 23512 0.8060 +8362 25842 0.9470 +8362 26013 0.9050 +8362 29028 0.9150 +8362 29072 0.8730 +8362 29079 0.8000 +8362 29104 0.9000 +8362 29117 0.8110 +8362 51003 0.8040 +8362 51504 0.8000 +8362 51586 0.8000 +8362 54606 0.4350 +8362 54617 0.8310 +8362 54623 0.8500 +8362 54797 0.8000 +8362 54904 0.8290 +8362 55090 0.8000 +8362 55166 0.8000 +8362 55193 0.8560 +8362 55274 0.9050 +8362 55355 0.9140 +8362 55588 0.8000 +8362 55723 0.9460 +8362 55766 0.9240 +8362 55839 0.9050 +8362 58508 0.8550 +8362 64105 0.8010 +8362 64946 0.8100 +8362 79019 0.8000 +8362 79084 0.8190 +8362 79172 0.8070 +8362 79577 0.8680 +8362 79682 0.8010 +8362 79711 0.9500 +8362 79913 0.8000 +8362 80152 0.8000 +8362 80306 0.8000 +8362 80349 0.8070 +8362 81857 0.8040 +8362 83444 0.8190 +8362 83740 0.9310 +8362 83860 0.8020 +8362 84246 0.8120 +8362 84444 0.9370 +8362 84661 0.8610 +8362 85235 0.9310 +8362 85236 0.9690 +8362 90390 0.8000 +8362 91687 0.8170 +8362 92815 0.4410 +8362 94239 0.9500 +8362 112950 0.8000 +8362 113177 0.4010 +8362 115004 0.8100 +8362 121504 0.9520 +8362 123169 0.8610 +8362 126961 0.9610 +8362 128312 0.9410 +8362 129685 0.8000 +8362 132243 0.6730 +8362 144108 0.9140 +8362 196528 0.8000 +8362 201254 0.8040 +8362 221613 0.9500 +8362 255626 0.9400 +8362 317772 0.9540 +8362 333932 0.9610 +8362 341567 0.4680 +8362 378708 0.8120 +8362 387103 0.8120 +8362 387893 0.9150 +8362 391769 0.9350 +8362 400569 0.8000 +8362 401541 0.8060 +8362 404672 0.8170 +8362 440093 0.9350 +8362 440686 0.4320 +8362 440689 0.8880 +8362 474381 0.9310 +8362 554313 0.9520 +8362 653604 0.9430 +8362 723790 0.9580 +8362 728378 0.5420 +8362 114483833 0.4520 +8363 8364 0.9560 +8363 8366 0.9780 +8363 8367 0.9660 +8363 8368 0.9590 +8363 8370 0.9560 +8363 8467 0.9320 +8363 8520 0.5310 +8363 8607 0.8620 +8363 8805 0.5290 +8363 8968 0.9860 +8363 8969 0.9630 +8363 8970 0.9760 +8363 8971 0.9320 +8363 9070 0.8580 +8363 9188 0.4350 +8363 9282 0.8200 +8363 9324 0.4330 +8363 9412 0.8200 +8363 9439 0.8000 +8363 9440 0.8000 +8363 9441 0.8290 +8363 9442 0.8010 +8363 9443 0.8210 +8363 9477 0.8000 +8363 9555 0.9460 +8363 9557 0.9150 +8363 9646 0.8570 +8363 9682 0.9120 +8363 9862 0.8010 +8363 10001 0.8000 +8363 10025 0.8000 +8363 10286 0.4220 +8363 10419 0.9190 +8363 10856 0.8660 +8363 10943 0.9160 +8363 11091 0.8310 +8363 11168 0.8080 +8363 11198 0.9480 +8363 23028 0.5890 +8363 23168 0.8520 +8363 23234 0.9000 +8363 23421 0.8030 +8363 23476 0.4540 +8363 23512 0.8060 +8363 25842 0.9470 +8363 26013 0.9050 +8363 29028 0.9150 +8363 29072 0.8730 +8363 29079 0.8000 +8363 29104 0.9000 +8363 29117 0.8110 +8363 51003 0.8040 +8363 51504 0.8030 +8363 51586 0.8000 +8363 54145 0.4400 +8363 54606 0.4350 +8363 54617 0.8310 +8363 54623 0.8500 +8363 54797 0.8000 +8363 54904 0.8290 +8363 55090 0.8170 +8363 55166 0.8010 +8363 55193 0.8560 +8363 55274 0.9050 +8363 55355 0.9020 +8363 55588 0.8000 +8363 55723 0.9460 +8363 55766 0.9260 +8363 55839 0.9070 +8363 58508 0.8550 +8363 64105 0.8010 +8363 64946 0.8110 +8363 79019 0.8060 +8363 79084 0.8190 +8363 79172 0.8070 +8363 79577 0.8680 +8363 79682 0.8070 +8363 79711 0.9420 +8363 79913 0.8000 +8363 80152 0.8000 +8363 80306 0.8000 +8363 80349 0.8000 +8363 81857 0.8040 +8363 83444 0.8190 +8363 83740 0.9310 +8363 83860 0.8020 +8363 84246 0.8120 +8363 84444 0.9370 +8363 84661 0.8650 +8363 85235 0.9450 +8363 85236 0.9720 +8363 90390 0.8000 +8363 91687 0.8170 +8363 92815 0.4690 +8363 94239 0.9500 +8363 112950 0.8130 +8363 113177 0.4020 +8363 115004 0.8100 +8363 121504 0.9540 +8363 123169 0.8610 +8363 126961 0.9650 +8363 128312 0.9400 +8363 129685 0.8000 +8363 132243 0.6730 +8363 144108 0.9040 +8363 196528 0.8000 +8363 201254 0.8120 +8363 221613 0.9500 +8363 255626 0.9400 +8363 317772 0.9570 +8363 333932 0.9660 +8363 341567 0.4680 +8363 378708 0.8120 +8363 387103 0.8160 +8363 387893 0.9150 +8363 391769 0.9350 +8363 400569 0.8000 +8363 401541 0.8060 +8363 404672 0.8170 +8363 440093 0.9350 +8363 440689 0.8990 +8363 474381 0.9310 +8363 554313 0.9520 +8363 653604 0.9510 +8363 723790 0.9570 +8363 728378 0.5440 +8363 114483833 0.4520 +8364 8366 0.9810 +8364 8367 0.9570 +8364 8368 0.9620 +8364 8370 0.9530 +8364 8467 0.9320 +8364 8520 0.7420 +8364 8607 0.8660 +8364 8805 0.5330 +8364 8968 0.9830 +8364 8969 0.9600 +8364 8970 0.9750 +8364 8971 0.9320 +8364 9070 0.8580 +8364 9188 0.4280 +8364 9282 0.8190 +8364 9324 0.4260 +8364 9412 0.8140 +8364 9439 0.8000 +8364 9440 0.8000 +8364 9441 0.8290 +8364 9442 0.8010 +8364 9443 0.8190 +8364 9477 0.8000 +8364 9555 0.9420 +8364 9557 0.9150 +8364 9646 0.8570 +8364 9682 0.9100 +8364 9862 0.8010 +8364 10001 0.8000 +8364 10025 0.8000 +8364 10036 0.4570 +8364 10066 0.4070 +8364 10286 0.4050 +8364 10419 0.9200 +8364 10856 0.8650 +8364 10906 0.4250 +8364 10943 0.9160 +8364 11091 0.8320 +8364 11168 0.8110 +8364 11198 0.9500 +8364 23028 0.5370 +8364 23168 0.8520 +8364 23234 0.9040 +8364 23421 0.8030 +8364 23476 0.4540 +8364 23512 0.8220 +8364 25842 0.9750 +8364 26013 0.9050 +8364 29028 0.9200 +8364 29072 0.8730 +8364 29079 0.8000 +8364 29104 0.9000 +8364 29117 0.8110 +8364 51003 0.8050 +8364 51504 0.8180 +8364 51586 0.8000 +8364 54145 0.4120 +8364 54606 0.4310 +8364 54617 0.8310 +8364 54623 0.8500 +8364 54797 0.8000 +8364 54904 0.8290 +8364 55090 0.8000 +8364 55166 0.8020 +8364 55193 0.8560 +8364 55274 0.9050 +8364 55355 0.9160 +8364 55588 0.8000 +8364 55723 0.9730 +8364 55766 0.9240 +8364 55839 0.9100 +8364 58508 0.8550 +8364 64105 0.8190 +8364 64946 0.8130 +8364 79019 0.8230 +8364 79084 0.8220 +8364 79172 0.8100 +8364 79577 0.8680 +8364 79682 0.8060 +8364 79711 0.9520 +8364 79913 0.8000 +8364 80018 0.4150 +8364 80152 0.8000 +8364 80306 0.8000 +8364 80349 0.8000 +8364 81857 0.8040 +8364 83444 0.8190 +8364 83740 0.9310 +8364 83860 0.8020 +8364 84246 0.8140 +8364 84444 0.9370 +8364 84661 0.8650 +8364 85235 0.9510 +8364 85236 0.9690 +8364 90390 0.8040 +8364 91687 0.8250 +8364 92815 0.4470 +8364 94239 0.9530 +8364 112950 0.8000 +8364 113177 0.4010 +8364 115004 0.8110 +8364 121504 0.9540 +8364 123169 0.8600 +8364 126961 0.9610 +8364 128312 0.9450 +8364 129685 0.8000 +8364 132243 0.6760 +8364 144108 0.9040 +8364 196528 0.8000 +8364 201254 0.8110 +8364 221613 0.9520 +8364 255626 0.9440 +8364 317772 0.9570 +8364 333932 0.9610 +8364 341567 0.4910 +8364 378708 0.8120 +8364 387103 0.8190 +8364 387893 0.9150 +8364 391769 0.9350 +8364 400569 0.8000 +8364 401541 0.8060 +8364 404672 0.8220 +8364 440093 0.9340 +8364 440689 0.8870 +8364 474381 0.9310 +8364 554313 0.9530 +8364 653604 0.9460 +8364 723790 0.9540 +8364 728378 0.5440 +8364 114483833 0.4520 +8366 8367 0.9880 +8366 8368 0.9920 +8366 8370 0.9720 +8366 8467 0.9320 +8366 8520 0.7400 +8366 8607 0.8610 +8366 8805 0.5360 +8366 8968 0.9900 +8366 8969 0.9610 +8366 8970 0.9780 +8366 8971 0.9310 +8366 9070 0.8580 +8366 9188 0.4350 +8366 9282 0.8200 +8366 9324 0.4300 +8366 9412 0.8170 +8366 9439 0.8000 +8366 9440 0.8000 +8366 9441 0.8290 +8366 9442 0.8010 +8366 9443 0.8190 +8366 9477 0.8000 +8366 9555 0.9480 +8366 9557 0.9150 +8366 9646 0.8570 +8366 9682 0.9160 +8366 9862 0.8010 +8366 10001 0.8000 +8366 10025 0.8000 +8366 10286 0.4110 +8366 10419 0.9190 +8366 10856 0.8670 +8366 10943 0.9160 +8366 11091 0.8350 +8366 11168 0.8090 +8366 11198 0.9530 +8366 23028 0.5440 +8366 23168 0.8520 +8366 23234 0.9030 +8366 23421 0.8040 +8366 23476 0.4540 +8366 23512 0.8070 +8366 25842 0.9720 +8366 26013 0.9050 +8366 29028 0.9170 +8366 29072 0.8750 +8366 29079 0.8000 +8366 29104 0.9000 +8366 29117 0.8110 +8366 51003 0.8040 +8366 51504 0.8050 +8366 51586 0.8000 +8366 54145 0.4510 +8366 54606 0.4330 +8366 54617 0.8310 +8366 54623 0.8500 +8366 54797 0.8000 +8366 54904 0.8290 +8366 55090 0.8000 +8366 55166 0.8050 +8366 55193 0.8560 +8366 55274 0.9050 +8366 55355 0.9170 +8366 55588 0.8000 +8366 55723 0.9700 +8366 55766 0.9240 +8366 55839 0.9090 +8366 58508 0.8550 +8366 64105 0.8070 +8366 64946 0.8160 +8366 79019 0.8060 +8366 79084 0.8190 +8366 79172 0.8130 +8366 79577 0.8680 +8366 79682 0.8080 +8366 79711 0.9500 +8366 79913 0.8000 +8366 80152 0.8000 +8366 80306 0.8000 +8366 80349 0.8000 +8366 81857 0.8040 +8366 83444 0.8190 +8366 83740 0.9310 +8366 83860 0.8060 +8366 84246 0.8130 +8366 84444 0.9370 +8366 84661 0.8630 +8366 85235 0.9540 +8366 85236 0.9730 +8366 90390 0.8000 +8366 91687 0.8180 +8366 92815 0.5000 +8366 94239 0.9500 +8366 112950 0.8000 +8366 113177 0.4010 +8366 115004 0.8140 +8366 121504 0.9700 +8366 123169 0.8610 +8366 126961 0.9690 +8366 128312 0.9420 +8366 129685 0.8000 +8366 132243 0.6740 +8366 144108 0.9040 +8366 196528 0.8000 +8366 201254 0.8070 +8366 221613 0.9500 +8366 255626 0.9460 +8366 317772 0.9650 +8366 333932 0.9690 +8366 341567 0.4410 +8366 378708 0.8120 +8366 387103 0.8200 +8366 387893 0.9150 +8366 391769 0.9350 +8366 400569 0.8000 +8366 401541 0.8080 +8366 404672 0.8170 +8366 440093 0.9340 +8366 440689 0.9000 +8366 474381 0.9310 +8366 554313 0.9680 +8366 653604 0.9550 +8366 723790 0.9590 +8366 728378 0.5480 +8366 114483833 0.4520 +8367 8368 0.9630 +8367 8370 0.9700 +8367 8467 0.9320 +8367 8520 0.5570 +8367 8607 0.8620 +8367 8805 0.5290 +8367 8968 0.9930 +8367 8969 0.9650 +8367 8970 0.9810 +8367 8971 0.9350 +8367 9070 0.8580 +8367 9188 0.4340 +8367 9282 0.8200 +8367 9324 0.4310 +8367 9412 0.8190 +8367 9439 0.8000 +8367 9440 0.8000 +8367 9441 0.8290 +8367 9442 0.8010 +8367 9443 0.8200 +8367 9477 0.8000 +8367 9555 0.9430 +8367 9557 0.9150 +8367 9646 0.8570 +8367 9682 0.9120 +8367 9862 0.8010 +8367 10001 0.8000 +8367 10025 0.8000 +8367 10094 0.4290 +8367 10286 0.4070 +8367 10419 0.9190 +8367 10856 0.8650 +8367 10943 0.9160 +8367 11091 0.8310 +8367 11168 0.8080 +8367 11198 0.9480 +8367 23028 0.5410 +8367 23168 0.8520 +8367 23234 0.9000 +8367 23421 0.8000 +8367 23476 0.4540 +8367 23512 0.8060 +8367 25842 0.9470 +8367 26013 0.9050 +8367 29028 0.9150 +8367 29072 0.8760 +8367 29079 0.8000 +8367 29104 0.9000 +8367 29117 0.8110 +8367 51003 0.8040 +8367 51504 0.8010 +8367 51586 0.8000 +8367 54145 0.4270 +8367 54606 0.4330 +8367 54617 0.8310 +8367 54623 0.8510 +8367 54797 0.8000 +8367 54904 0.8290 +8367 55090 0.8000 +8367 55166 0.8000 +8367 55193 0.8560 +8367 55274 0.9050 +8367 55355 0.9020 +8367 55588 0.8000 +8367 55723 0.9460 +8367 55766 0.9310 +8367 55839 0.9050 +8367 58508 0.8550 +8367 64105 0.8010 +8367 64946 0.8100 +8367 79019 0.8010 +8367 79084 0.8190 +8367 79172 0.8080 +8367 79577 0.8680 +8367 79682 0.8010 +8367 79711 0.9420 +8367 79913 0.8000 +8367 80152 0.8000 +8367 80306 0.8000 +8367 80349 0.8000 +8367 81857 0.8040 +8367 83444 0.8200 +8367 83740 0.9310 +8367 83860 0.8020 +8367 84246 0.8120 +8367 84444 0.9370 +8367 84661 0.8610 +8367 85235 0.9410 +8367 85236 0.9730 +8367 90390 0.8000 +8367 91687 0.8170 +8367 92815 0.4740 +8367 94239 0.9490 +8367 112950 0.8000 +8367 113177 0.4010 +8367 115004 0.8110 +8367 121504 0.9540 +8367 123169 0.8610 +8367 126961 0.9660 +8367 128312 0.9410 +8367 129685 0.8000 +8367 132243 0.6730 +8367 144108 0.9040 +8367 196528 0.8000 +8367 201254 0.8040 +8367 221613 0.9500 +8367 255626 0.9400 +8367 317772 0.9580 +8367 333932 0.9660 +8367 341567 0.4680 +8367 378708 0.8120 +8367 387103 0.8150 +8367 387893 0.9150 +8367 391769 0.9350 +8367 400569 0.8000 +8367 401541 0.8060 +8367 404672 0.8170 +8367 440093 0.9360 +8367 440689 0.9030 +8367 474381 0.9310 +8367 554313 0.9530 +8367 653604 0.9490 +8367 723790 0.9560 +8367 728378 0.5570 +8367 114483833 0.4520 +8368 8370 0.9540 +8368 8467 0.9320 +8368 8520 0.7280 +8368 8607 0.8620 +8368 8805 0.5330 +8368 8968 0.9880 +8368 8969 0.9620 +8368 8970 0.9750 +8368 8971 0.9320 +8368 9070 0.8580 +8368 9188 0.4350 +8368 9282 0.8200 +8368 9324 0.4320 +8368 9412 0.8170 +8368 9439 0.8000 +8368 9440 0.8000 +8368 9441 0.8290 +8368 9442 0.8010 +8368 9443 0.8190 +8368 9477 0.8000 +8368 9555 0.9430 +8368 9557 0.9150 +8368 9646 0.8570 +8368 9682 0.9110 +8368 9862 0.8010 +8368 10001 0.8000 +8368 10025 0.8000 +8368 10286 0.4080 +8368 10419 0.9190 +8368 10856 0.8680 +8368 10943 0.9160 +8368 11091 0.8320 +8368 11168 0.8090 +8368 11198 0.9530 +8368 23028 0.5420 +8368 23168 0.8520 +8368 23234 0.9020 +8368 23421 0.8010 +8368 23476 0.4550 +8368 23512 0.8060 +8368 25842 0.9770 +8368 26013 0.9050 +8368 29028 0.9160 +8368 29072 0.8730 +8368 29079 0.8000 +8368 29104 0.9000 +8368 29117 0.8110 +8368 51003 0.8050 +8368 51504 0.8050 +8368 51586 0.8000 +8368 54145 0.4150 +8368 54606 0.4340 +8368 54617 0.8310 +8368 54623 0.8500 +8368 54797 0.8000 +8368 54904 0.8290 +8368 55090 0.8000 +8368 55166 0.8040 +8368 55193 0.8560 +8368 55274 0.9050 +8368 55355 0.9160 +8368 55588 0.8000 +8368 55723 0.9700 +8368 55766 0.9240 +8368 55839 0.9070 +8368 58508 0.8550 +8368 64105 0.8050 +8368 64946 0.8140 +8368 79019 0.8050 +8368 79084 0.8190 +8368 79172 0.8120 +8368 79577 0.8680 +8368 79682 0.8060 +8368 79711 0.9510 +8368 79913 0.8000 +8368 80152 0.8000 +8368 80306 0.8000 +8368 80349 0.8000 +8368 81857 0.8040 +8368 83444 0.8190 +8368 83740 0.9310 +8368 83860 0.8030 +8368 84246 0.8130 +8368 84444 0.9370 +8368 84661 0.8620 +8368 85235 0.9440 +8368 85236 0.9710 +8368 90390 0.8000 +8368 91687 0.8170 +8368 92815 0.4910 +8368 94239 0.9500 +8368 112950 0.8000 +8368 113177 0.4010 +8368 115004 0.8160 +8368 121504 0.9540 +8368 123169 0.8610 +8368 126961 0.9630 +8368 128312 0.9410 +8368 129685 0.8010 +8368 132243 0.6740 +8368 144108 0.9040 +8368 196528 0.8000 +8368 201254 0.8070 +8368 221613 0.9530 +8368 255626 0.9410 +8368 257218 0.4600 +8368 317772 0.9570 +8368 333932 0.9630 +8368 341567 0.4750 +8368 378708 0.8120 +8368 387103 0.8170 +8368 387893 0.9150 +8368 391769 0.9350 +8368 400569 0.8000 +8368 401541 0.8070 +8368 404672 0.8170 +8368 440093 0.9350 +8368 440686 0.4330 +8368 440689 0.8930 +8368 474381 0.9310 +8368 554313 0.9520 +8368 653604 0.9480 +8368 723790 0.9550 +8368 728378 0.5440 +8368 100272147 0.5080 +8368 114483833 0.4520 +8369 8467 0.8060 +8369 8520 0.9920 +8369 8607 0.6840 +8369 8726 0.4450 +8369 8819 0.4140 +8369 8841 0.7250 +8369 8850 0.9330 +8369 8970 0.8320 +8369 9025 0.5130 +8369 9070 0.6820 +8369 9555 0.5840 +8369 9557 0.5500 +8369 9611 0.6230 +8369 9656 0.6750 +8369 9682 0.6760 +8369 9734 0.5310 +8369 9739 0.6540 +8369 9759 0.7480 +8369 9869 0.4860 +8369 10013 0.6370 +8369 10014 0.4650 +8369 10036 0.5230 +8369 10196 0.5140 +8369 10419 0.6890 +8369 10498 0.5590 +8369 10524 0.9180 +8369 10629 0.5290 +8369 10664 0.4340 +8369 10847 0.4400 +8369 10856 0.6470 +8369 10902 0.4960 +8369 10919 0.5930 +8369 10933 0.6530 +8369 10943 0.7720 +8369 10951 0.4400 +8369 11091 0.5200 +8369 11143 0.8290 +8369 11176 0.5870 +8369 11177 0.4620 +8369 11198 0.6730 +8369 11200 0.6360 +8369 11335 0.4030 +8369 22933 0.8190 +8369 23028 0.6010 +8369 23067 0.5030 +8369 23133 0.6290 +8369 23135 0.5590 +8369 23186 0.4690 +8369 23210 0.6160 +8369 23310 0.6270 +8369 23408 0.5270 +8369 23409 0.4730 +8369 23410 0.4930 +8369 23411 0.8260 +8369 23468 0.5090 +8369 23476 0.9930 +8369 23522 0.5580 +8369 23569 0.5070 +8369 23643 0.4240 +8369 25842 0.6370 +8369 25855 0.4710 +8369 25942 0.6240 +8369 25988 0.5090 +8369 26013 0.7230 +8369 26122 0.5770 +8369 27443 0.4860 +8369 29028 0.6170 +8369 29072 0.6500 +8369 30827 0.4130 +8369 51111 0.7920 +8369 51147 0.6380 +8369 51477 0.4250 +8369 51547 0.5260 +8369 51548 0.5370 +8369 51564 0.5070 +8369 51605 0.4320 +8369 51742 0.6170 +8369 54145 0.8310 +8369 54454 0.6200 +8369 54496 0.7270 +8369 54556 0.6830 +8369 54583 0.4690 +8369 54681 0.4490 +8369 54799 0.4640 +8369 54892 0.6180 +8369 54904 0.4070 +8369 55011 0.4450 +8369 55140 0.4310 +8369 55167 0.5260 +8369 55170 0.5100 +8369 55193 0.4110 +8369 55352 0.5800 +8369 55355 0.9720 +8369 55506 0.4200 +8369 55636 0.6440 +8369 55723 0.6210 +8369 55869 0.7570 +8369 55929 0.6470 +8369 56341 0.6940 +8369 56950 0.4170 +8369 57634 0.7960 +8369 58508 0.4740 +8369 60496 0.8110 +8369 64324 0.6380 +8369 64426 0.4810 +8369 64754 0.4700 +8369 64769 0.7150 +8369 79084 0.6650 +8369 79568 0.5470 +8369 79577 0.4170 +8369 79697 0.4820 +8369 79711 0.6130 +8369 79723 0.5080 +8369 79829 0.4970 +8369 79852 0.4800 +8369 79885 0.5990 +8369 79923 0.5000 +8369 79960 0.5620 +8369 80155 0.5280 +8369 80205 0.5610 +8369 80314 0.5930 +8369 80764 0.7560 +8369 80854 0.5590 +8369 83666 0.4340 +8369 83732 0.4820 +8369 83740 0.6340 +8369 83933 0.6760 +8369 84148 0.8230 +8369 84289 0.6620 +8369 84312 0.4710 +8369 84444 0.8120 +8369 84661 0.5040 +8369 84717 0.4630 +8369 84787 0.7990 +8369 85236 0.8820 +8369 92292 0.5360 +8369 94239 0.6350 +8369 113177 0.4190 +8369 126961 0.6150 +8369 128312 0.8310 +8369 132243 0.4560 +8369 133482 0.6790 +8369 134353 0.4360 +8369 137902 0.4550 +8369 138474 0.5490 +8369 151636 0.5540 +8369 158983 0.8290 +8369 165918 0.5150 +8369 221613 0.4350 +8369 221656 0.4330 +8369 255626 0.8380 +8369 286204 0.6420 +8369 286436 0.8290 +8369 317772 0.4240 +8369 339287 0.4380 +8369 340096 0.4380 +8369 387893 0.9280 +8369 391769 0.4370 +8369 440093 0.9990 +8369 440686 0.9980 +8369 440689 0.8300 +8369 474381 0.7590 +8369 474382 0.5270 +8369 653499 0.4850 +8369 653604 0.9990 +8369 114483833 0.8300 +8370 8467 0.9320 +8370 8520 0.6500 +8370 8607 0.8610 +8370 8805 0.5290 +8370 8968 0.9930 +8370 8969 0.9690 +8370 8970 0.9830 +8370 8971 0.9270 +8370 9070 0.8580 +8370 9188 0.4340 +8370 9282 0.8200 +8370 9324 0.4300 +8370 9412 0.8160 +8370 9439 0.8000 +8370 9440 0.8000 +8370 9441 0.8290 +8370 9442 0.8010 +8370 9443 0.8190 +8370 9477 0.8000 +8370 9555 0.9440 +8370 9557 0.9150 +8370 9646 0.8570 +8370 9682 0.9110 +8370 9862 0.8010 +8370 10001 0.8000 +8370 10025 0.8000 +8370 10286 0.4070 +8370 10419 0.9190 +8370 10800 0.4350 +8370 10856 0.8650 +8370 10943 0.9160 +8370 11091 0.8310 +8370 11168 0.8080 +8370 11198 0.9480 +8370 23028 0.5410 +8370 23133 0.4550 +8370 23168 0.8520 +8370 23234 0.9000 +8370 23421 0.8000 +8370 23476 0.6220 +8370 23512 0.8060 +8370 25842 0.9760 +8370 25988 0.5980 +8370 26013 0.9490 +8370 29028 0.9370 +8370 29072 0.8730 +8370 29079 0.8000 +8370 29104 0.9000 +8370 29117 0.8110 +8370 30827 0.4800 +8370 51003 0.8040 +8370 51504 0.8030 +8370 51586 0.8000 +8370 54145 0.4380 +8370 54606 0.4330 +8370 54617 0.8310 +8370 54623 0.8500 +8370 54797 0.8000 +8370 54904 0.8290 +8370 55090 0.8000 +8370 55166 0.8000 +8370 55193 0.8560 +8370 55274 0.9050 +8370 55355 0.9020 +8370 55588 0.8000 +8370 55723 0.9770 +8370 55766 0.9330 +8370 55839 0.9050 +8370 57105 0.4260 +8370 58508 0.8550 +8370 64105 0.8010 +8370 64946 0.8100 +8370 79019 0.8000 +8370 79084 0.8190 +8370 79172 0.8070 +8370 79577 0.8680 +8370 79682 0.8010 +8370 79711 0.9420 +8370 79913 0.8000 +8370 80152 0.8000 +8370 80306 0.8000 +8370 80349 0.8000 +8370 81857 0.8040 +8370 83444 0.8200 +8370 83740 0.9310 +8370 83860 0.8020 +8370 84246 0.8130 +8370 84444 0.9370 +8370 84661 0.8610 +8370 85235 0.9360 +8370 85236 0.9750 +8370 90390 0.8000 +8370 91687 0.8190 +8370 92815 0.5760 +8370 94239 0.9490 +8370 112950 0.8000 +8370 113177 0.4010 +8370 115004 0.8100 +8370 121504 0.9530 +8370 123169 0.8610 +8370 126961 0.9930 +8370 128312 0.9590 +8370 129685 0.8000 +8370 132243 0.6280 +8370 144108 0.9040 +8370 196528 0.8000 +8370 201254 0.8040 +8370 221613 0.9500 +8370 255626 0.9410 +8370 317772 0.9550 +8370 333932 0.9700 +8370 378708 0.8120 +8370 387103 0.8120 +8370 387893 0.9150 +8370 391769 0.9350 +8370 400569 0.8000 +8370 401541 0.8060 +8370 404672 0.8170 +8370 440093 0.9360 +8370 440689 0.8970 +8370 474381 0.9310 +8370 554313 0.9530 +8370 653604 0.9650 +8370 723790 0.9630 +8370 728378 0.5420 +8370 114483833 0.4520 +8372 9043 0.8910 +8372 50618 0.5360 +8379 8697 0.8440 +8379 8881 0.7760 +8379 8888 0.9390 +8379 8895 0.4320 +8379 9126 0.5330 +8379 9133 0.7510 +8379 9159 0.4430 +8379 9183 0.7070 +8379 9184 0.9800 +8379 9196 0.4890 +8379 9212 0.4320 +8379 9255 0.4810 +8379 9529 0.6310 +8379 9587 0.8270 +8379 9647 0.4030 +8379 9700 0.6480 +8379 9735 0.5210 +8379 9793 0.5370 +8379 9858 0.4040 +8379 9881 0.6240 +8379 9972 0.9430 +8379 10393 0.7000 +8379 10459 0.9330 +8379 10726 0.8410 +8379 22843 0.4080 +8379 22853 0.4650 +8379 22897 0.4200 +8379 23122 0.4760 +8379 23250 0.4190 +8379 23288 0.4710 +8379 23301 0.4120 +8379 23600 0.4460 +8379 23636 0.5180 +8379 25847 0.6500 +8379 25909 0.4950 +8379 27152 0.5930 +8379 27232 0.4220 +8379 27436 0.6600 +8379 29803 0.4020 +8379 29882 0.6870 +8379 29945 0.7410 +8379 29960 0.8160 +8379 51231 0.4890 +8379 51343 0.9660 +8379 51433 0.7530 +8379 51434 0.7550 +8379 51750 0.4820 +8379 54921 0.5270 +8379 54925 0.5530 +8379 55063 0.4300 +8379 55159 0.5810 +8379 55729 0.4290 +8379 55795 0.9680 +8379 55885 0.4810 +8379 56943 0.9070 +8379 56992 0.4780 +8379 57551 0.4530 +8379 57687 0.4460 +8379 60528 0.4920 +8379 63922 0.5320 +8379 63932 0.4150 +8379 64682 0.6760 +8379 79759 0.4330 +8379 80150 0.4040 +8379 81037 0.5740 +8379 90990 0.4210 +8379 91752 0.4970 +8379 129401 0.5700 +8379 152098 0.4300 +8379 166979 0.6050 +8379 203062 0.6700 +8379 246184 0.6500 +8379 390999 0.4750 +8379 399979 0.4390 +8382 9070 0.4260 +8382 9262 0.4530 +8382 9263 0.4090 +8382 9349 0.4640 +8382 9553 0.4030 +8382 9858 0.4940 +8382 10902 0.4230 +8382 11222 0.4540 +8382 22984 0.5520 +8382 23521 0.4540 +8382 26289 0.5530 +8382 27039 0.4340 +8382 27285 0.4580 +8382 28973 0.4290 +8382 28998 0.4580 +8382 51021 0.5790 +8382 51073 0.4500 +8382 51081 0.5090 +8382 51116 0.4930 +8382 51121 0.4110 +8382 51149 0.5250 +8382 51264 0.5010 +8382 51306 0.6020 +8382 51727 0.7360 +8382 53340 0.4600 +8382 55052 0.4340 +8382 55173 0.5540 +8382 55259 0.4160 +8382 55316 0.4520 +8382 55703 0.4210 +8382 56648 0.4100 +8382 56945 0.4860 +8382 63931 0.4570 +8382 64374 0.4790 +8382 64518 0.4740 +8382 64960 0.5210 +8382 64963 0.4800 +8382 64965 0.4940 +8382 64968 0.5310 +8382 64969 0.4430 +8382 64983 0.4730 +8382 79092 0.5120 +8382 80258 0.4380 +8382 83450 0.4440 +8382 83538 0.5710 +8382 83657 0.4840 +8382 83853 0.4090 +8382 83894 0.4400 +8382 84284 0.4830 +8382 84332 0.8860 +8382 89765 0.5890 +8382 114327 0.4470 +8382 126402 0.5090 +8382 129607 0.4160 +8382 130752 0.4610 +8382 135138 0.4560 +8382 143241 0.8050 +8382 143244 0.4090 +8382 158067 0.5850 +8382 161582 0.5490 +8382 164781 0.5310 +8382 202051 0.4170 +8382 219670 0.5260 +8382 219927 0.5440 +8382 221264 0.4740 +8382 221421 0.5120 +8382 246243 0.4720 +8382 285755 0.5060 +8382 345895 0.4660 +8382 347487 0.5070 +8382 374407 0.4270 +8382 374659 0.4840 +8382 646262 0.4620 +8382 100287482 0.4930 +8383 9038 0.5030 +8383 26189 0.4450 +8383 26531 0.5190 +8383 50833 0.5200 +8383 50834 0.4670 +8383 51764 0.6540 +8383 125958 0.5670 +8383 132112 0.4460 +8383 284521 0.5120 +8383 344892 0.4790 +8383 391196 0.5140 +8383 401427 0.5180 +8386 26531 0.5200 +8386 51764 0.6800 +8386 83901 0.5380 +8386 125958 0.5160 +8386 131149 0.5210 +8386 144125 0.4100 +8386 146853 0.4410 +8386 284521 0.4990 +8386 339168 0.4550 +8386 388335 0.4180 +8386 391196 0.5100 +8386 401427 0.4990 +8386 728318 0.4940 +8386 100505724 0.6260 +8387 26531 0.5100 +8387 29992 0.4950 +8387 50838 0.5530 +8387 51234 0.4340 +8387 51764 0.6840 +8387 53828 0.5450 +8387 54429 0.5060 +8387 54811 0.4450 +8387 56901 0.4930 +8387 84651 0.5310 +8387 85294 0.4050 +8387 118430 0.6060 +8387 125958 0.5330 +8387 132671 0.6000 +8387 146862 0.5960 +8387 153218 0.5200 +8387 259296 0.5860 +8387 284521 0.5380 +8387 386672 0.5170 +8387 386675 0.4730 +8387 386676 0.5730 +8387 386678 0.5070 +8387 386680 0.4790 +8387 386681 0.4480 +8387 386682 0.5250 +8387 391196 0.5380 +8387 401427 0.5230 +8387 408187 0.6480 +8387 643394 0.5890 +8387 646951 0.4450 +8388 9856 0.5060 +8388 11078 0.5170 +8388 51764 0.6800 +8388 54499 0.5080 +8388 54811 0.5070 +8388 83901 0.5700 +8388 84818 0.4360 +8388 116328 0.4180 +8388 138639 0.4100 +8388 146853 0.4330 +8388 339168 0.4790 +8388 388335 0.4450 +8388 646951 0.5070 +8388 728318 0.5070 +8388 100505724 0.6410 +8388 101060351 0.4180 +8390 29989 0.5530 +8390 50834 0.5440 +8390 51764 0.6790 +8390 132112 0.4460 +8390 390066 0.5110 +8394 8395 0.9410 +8394 8396 0.9380 +8394 8503 0.9250 +8394 8525 0.4270 +8394 8867 0.9340 +8394 8871 0.9300 +8394 9475 0.9050 +8394 9651 0.7340 +8394 10914 0.4770 +8394 22876 0.9130 +8394 23007 0.7340 +8394 23236 0.7590 +8394 23396 0.9730 +8394 23480 0.6140 +8394 23511 0.4520 +8394 25820 0.5140 +8394 25999 0.4060 +8394 29899 0.5170 +8394 51196 0.7720 +8394 55300 0.9430 +8394 55361 0.9640 +8394 55529 0.9140 +8394 55626 0.5140 +8394 56623 0.9190 +8394 56903 0.4240 +8394 64852 0.7090 +8394 64895 0.5220 +8394 79605 0.5620 +8394 79837 0.9160 +8394 84812 0.7660 +8394 85477 0.9140 +8394 89869 0.7340 +8394 90809 0.9120 +8394 113026 0.7340 +8394 138429 0.9610 +8394 200576 0.5580 +8394 253430 0.4630 +8395 8396 0.9160 +8395 8503 0.9210 +8395 8814 0.4110 +8395 8867 0.9190 +8395 8871 0.9230 +8395 9475 0.9020 +8395 9651 0.7570 +8395 22876 0.9030 +8395 23007 0.7390 +8395 23236 0.7230 +8395 23345 0.5500 +8395 23396 0.9420 +8395 23480 0.6080 +8395 29899 0.5120 +8395 51196 0.7660 +8395 55300 0.9360 +8395 55361 0.9360 +8395 55529 0.9100 +8395 56623 0.9440 +8395 79837 0.9110 +8395 84812 0.7340 +8395 85477 0.9070 +8395 89869 0.7340 +8395 90809 0.9170 +8395 94033 0.4240 +8395 113026 0.7770 +8395 116224 0.4790 +8395 138429 0.9340 +8395 158067 0.4340 +8395 219899 0.4860 +8396 8405 0.4590 +8396 8503 0.9150 +8396 8717 0.4260 +8396 8776 0.7240 +8396 8814 0.4260 +8396 8837 0.4290 +8396 8867 0.9180 +8396 8871 0.9140 +8396 8897 0.7060 +8396 8898 0.6900 +8396 9107 0.6500 +8396 9108 0.6550 +8396 9110 0.7310 +8396 9406 0.7170 +8396 9416 0.4360 +8396 9475 0.9130 +8396 9651 0.7390 +8396 23007 0.7340 +8396 23236 0.7340 +8396 23349 0.4060 +8396 23396 0.9470 +8396 23476 0.7010 +8396 23480 0.6080 +8396 51196 0.7330 +8396 51329 0.7760 +8396 55300 0.4160 +8396 55312 0.6470 +8396 55529 0.9220 +8396 55613 0.6500 +8396 56623 0.9120 +8396 64419 0.6970 +8396 79837 0.9490 +8396 84812 0.7450 +8396 85461 0.4130 +8396 85477 0.9020 +8396 89869 0.7420 +8396 90809 0.9190 +8396 113026 0.7950 +8396 126299 0.6010 +8396 138429 0.9050 +8396 200576 0.9510 +8396 388228 0.4390 +8396 401190 0.4240 +8398 8399 0.6850 +8398 8529 0.6660 +8398 8605 0.5480 +8398 8681 0.4250 +8398 8867 0.7240 +8398 9415 0.7130 +8398 9791 0.6500 +8398 9829 0.7430 +8398 9895 0.6720 +8398 9907 0.4900 +8398 10390 0.6730 +8398 10400 0.7180 +8398 10434 0.6810 +8398 10908 0.8510 +8398 11145 0.8160 +8398 11152 0.6540 +8398 11283 0.6850 +8398 11315 0.8150 +8398 23230 0.4590 +8398 23259 0.4250 +8398 23317 0.6670 +8398 23400 0.8440 +8398 23646 0.7110 +8398 23659 0.8560 +8398 23761 0.6780 +8398 25793 0.8970 +8398 26058 0.8010 +8398 26279 0.6270 +8398 27429 0.7530 +8398 29058 0.5710 +8398 30814 0.5220 +8398 50487 0.5600 +8398 50640 0.4800 +8398 51142 0.7430 +8398 51151 0.5970 +8398 51806 0.7870 +8398 53354 0.7350 +8398 54832 0.7100 +8398 54947 0.7620 +8398 55349 0.6000 +8398 55737 0.7730 +8398 56623 0.4540 +8398 56994 0.6900 +8398 57104 0.4160 +8398 64600 0.5030 +8398 65018 0.8000 +8398 79152 0.6850 +8398 79153 0.7210 +8398 79608 0.5100 +8398 79888 0.7280 +8398 80025 0.9580 +8398 80067 0.6750 +8398 80115 0.4600 +8398 80208 0.7160 +8398 80347 0.6690 +8398 80821 0.6330 +8398 80851 0.4100 +8398 81037 0.5790 +8398 81490 0.6580 +8398 81579 0.4510 +8398 84647 0.4060 +8398 85465 0.6810 +8398 91574 0.4550 +8398 91860 0.7870 +8398 113612 0.8260 +8398 116442 0.5870 +8398 120892 0.6790 +8398 122618 0.7050 +8398 123745 0.6500 +8398 133121 0.6500 +8398 151056 0.7510 +8398 163688 0.7870 +8398 254531 0.7530 +8398 255043 0.7270 +8398 255189 0.6280 +8398 283748 0.6560 +8398 284161 0.7010 +8398 284541 0.6610 +8398 285848 0.4340 +8398 375775 0.7820 +8398 387521 0.6500 +8398 387522 0.6500 +8398 391013 0.4730 +8398 391356 0.4790 +8398 100137049 0.6150 +8399 8529 0.6740 +8399 8605 0.4490 +8399 9415 0.7150 +8399 9536 0.4420 +8399 9791 0.6760 +8399 10390 0.6740 +8399 10400 0.6500 +8399 10434 0.7020 +8399 10753 0.4140 +8399 10908 0.6750 +8399 11145 0.8150 +8399 11283 0.6620 +8399 22925 0.9260 +8399 23042 0.4390 +8399 23193 0.5240 +8399 23514 0.6170 +8399 23646 0.6680 +8399 23659 0.8140 +8399 23761 0.6500 +8399 25833 0.4330 +8399 26239 0.5910 +8399 26279 0.6050 +8399 30814 0.5800 +8399 50487 0.9710 +8399 50640 0.5100 +8399 51806 0.5060 +8399 54700 0.4040 +8399 54947 0.7100 +8399 55349 0.6000 +8399 56994 0.8050 +8399 64600 0.5870 +8399 79153 0.7990 +8399 79888 0.7420 +8399 81490 0.6650 +8399 81579 0.9760 +8399 84647 0.9170 +8399 84706 0.4060 +8399 85465 0.6790 +8399 91860 0.5100 +8399 113612 0.6550 +8399 122618 0.6500 +8399 125150 0.6200 +8399 126074 0.4220 +8399 133121 0.6500 +8399 151056 0.7860 +8399 153201 0.4110 +8399 163688 0.5030 +8399 254531 0.7350 +8399 255043 0.6560 +8399 284161 0.7910 +8399 284541 0.6540 +8399 375775 0.6940 +8399 387521 0.6520 +8399 387522 0.6670 +8402 8604 0.5450 +8402 8802 0.4730 +8402 8835 0.4120 +8402 9093 0.4890 +8402 9131 0.5780 +8402 9197 0.4240 +8402 9322 0.4590 +8402 9784 0.4740 +8402 10165 0.5690 +8402 10280 0.4610 +8402 10295 0.5270 +8402 10989 0.5290 +8402 11152 0.4370 +8402 11331 0.4480 +8402 23095 0.4280 +8402 23787 0.7660 +8402 23788 0.7280 +8402 51079 0.4010 +8402 51144 0.4730 +8402 54949 0.5320 +8402 55032 0.4180 +8402 55210 0.4730 +8402 55654 0.5840 +8402 57835 0.4370 +8402 64744 0.4470 +8402 80139 0.4200 +8402 120892 0.5160 +8402 126328 0.5390 +8402 374291 0.5730 +8402 653269 0.4280 +8403 27121 0.4100 +8403 28978 0.4170 +8403 30850 0.4250 +8403 56956 0.4450 +8403 63973 0.4100 +8403 64211 0.4710 +8403 120237 0.4660 +8403 203245 0.6240 +8404 8490 0.4820 +8404 9378 0.7100 +8404 9379 0.4560 +8404 9806 0.4240 +8404 10082 0.4680 +8404 10117 0.6600 +8404 10266 0.4310 +8404 10351 0.4750 +8404 10777 0.4490 +8404 11167 0.4520 +8404 11170 0.4650 +8404 22871 0.7370 +8404 22918 0.4570 +8404 50859 0.4120 +8404 51705 0.4330 +8404 51806 0.4450 +8404 54413 0.4360 +8404 54757 0.5020 +8404 54959 0.4220 +8404 56955 0.5360 +8404 56975 0.6680 +8404 57502 0.4280 +8404 57555 0.4610 +8404 57863 0.5770 +8404 64093 0.4560 +8404 64094 0.5860 +8404 84466 0.5730 +8404 91851 0.4900 +8404 91860 0.4370 +8404 116159 0.4620 +8404 147381 0.4010 +8404 161198 0.5590 +8404 163688 0.4370 +8404 221395 0.4060 +8404 401138 0.4180 +8404 729330 0.4090 +8405 8452 0.9990 +8405 8453 0.4500 +8405 8454 0.7830 +8405 8507 0.9080 +8405 8772 0.6060 +8405 8805 0.8790 +8405 8945 0.4730 +8405 9491 0.4110 +8405 9555 0.9580 +8405 9817 0.9240 +8405 9861 0.4120 +8405 9903 0.9110 +8405 9968 0.5070 +8405 9978 0.9960 +8405 10013 0.4590 +8405 10016 0.7200 +8405 10146 0.6070 +8405 10197 0.4220 +8405 10213 0.4760 +8405 10250 0.5920 +8405 10273 0.5570 +8405 10324 0.9060 +8405 10423 0.5140 +8405 10477 0.4310 +8405 10481 0.4180 +8405 10524 0.4790 +8405 10643 0.5850 +8405 10762 0.5480 +8405 10987 0.4750 +8405 11060 0.4170 +8405 11104 0.4260 +8405 11146 0.7240 +8405 11275 0.7680 +8405 22873 0.4570 +8405 23053 0.9000 +8405 23476 0.9140 +8405 23510 0.9130 +8405 23613 0.4750 +8405 25820 0.5260 +8405 25855 0.4600 +8405 26249 0.9210 +8405 27252 0.9240 +8405 28996 0.5670 +8405 29072 0.7320 +8405 29117 0.4830 +8405 29126 0.8220 +8405 51053 0.9460 +8405 51343 0.6490 +8405 51684 0.9600 +8405 51755 0.5610 +8405 54442 0.6730 +8405 54800 0.7610 +8405 54918 0.4240 +8405 55294 0.4680 +8405 55958 0.9090 +8405 55975 0.9070 +8405 56980 0.4560 +8405 57337 0.5990 +8405 57542 0.9080 +8405 57563 0.9140 +8405 58508 0.4230 +8405 59269 0.4760 +8405 59349 0.9190 +8405 64410 0.9070 +8405 64423 0.8300 +8405 79679 0.5490 +8405 79734 0.9140 +8405 79813 0.4030 +8405 79842 0.4990 +8405 79923 0.7890 +8405 80311 0.4270 +8405 83473 0.4530 +8405 83737 0.4020 +8405 83892 0.7410 +8405 84056 0.4260 +8405 84078 0.9070 +8405 84541 0.9130 +8405 84861 0.9210 +8405 89890 0.9080 +8405 90293 0.9130 +8405 91893 0.4050 +8405 112398 0.4070 +8405 131377 0.7450 +8405 132884 0.4060 +8405 143384 0.6060 +8405 148979 0.4140 +8405 152687 0.4790 +8405 169792 0.4250 +8405 253980 0.9000 +8405 339745 0.9660 +8405 344191 0.5490 +8405 553115 0.7230 +8405 100532731 0.5070 +8406 9507 0.4060 +8406 79633 0.4410 +8406 151887 0.4990 +8406 200728 0.4400 +8407 9948 0.6140 +8407 10097 0.5100 +8407 10376 0.4320 +8407 10383 0.4640 +8407 10398 0.6780 +8407 10551 0.5360 +8407 10627 0.4170 +8407 11034 0.4810 +8407 23052 0.4850 +8407 23406 0.5620 +8407 29114 0.6520 +8407 51643 0.4300 +8407 51806 0.5490 +8407 83442 0.6110 +8407 84790 0.5020 +8407 84955 0.6190 +8407 85477 0.5890 +8407 91860 0.5460 +8407 93649 0.4870 +8407 103910 0.4900 +8407 113457 0.4020 +8407 133015 0.4430 +8407 135138 0.4430 +8407 151651 0.4560 +8407 163688 0.5460 +8407 197335 0.7790 +8407 203068 0.4410 +8407 219670 0.4020 +8407 654364 0.4780 +8408 8504 0.4760 +8408 8649 0.5790 +8408 8655 0.5470 +8408 8673 0.4600 +8408 8678 0.9990 +8408 8717 0.4920 +8408 8723 0.5640 +8408 8737 0.6970 +8408 8766 0.6600 +8408 8831 0.8230 +8408 8878 0.9590 +8408 8887 0.4540 +8408 9140 0.9960 +8408 9146 0.4440 +8408 9230 0.5410 +8408 9236 0.4220 +8408 9342 0.5570 +8408 9474 0.9970 +8408 9638 0.6490 +8408 9706 0.9970 +8408 9711 0.5030 +8408 9776 0.9990 +8408 9779 0.4220 +8408 9817 0.5630 +8408 9821 0.9990 +8408 9842 0.4430 +8408 9919 0.6350 +8408 9927 0.5080 +8408 10013 0.5340 +8408 10059 0.7500 +8408 10133 0.6870 +8408 10241 0.8210 +8408 10325 0.6550 +8408 10519 0.5710 +8408 10533 0.9630 +8408 10542 0.6080 +8408 10626 0.4780 +8408 10652 0.4750 +8408 10670 0.6630 +8408 10868 0.4530 +8408 10871 0.6620 +8408 10891 0.4480 +8408 11140 0.4290 +8408 11152 0.5640 +8408 11337 0.9960 +8408 11345 0.9970 +8408 22863 0.9990 +8408 22878 0.4950 +8408 22898 0.7660 +8408 22930 0.5010 +8408 22954 0.4140 +8408 23001 0.4690 +8408 23049 0.4510 +8408 23130 0.9910 +8408 23192 0.9500 +8408 23207 0.5480 +8408 23327 0.6010 +8408 23411 0.5530 +8408 23710 0.9910 +8408 23770 0.4030 +8408 23786 0.5370 +8408 25782 0.4260 +8408 26100 0.9440 +8408 28956 0.5860 +8408 29110 0.6040 +8408 29982 0.9990 +8408 30849 0.9970 +8408 50852 0.5300 +8408 51019 0.4630 +8408 51024 0.4080 +8408 51030 0.4930 +8408 51100 0.4800 +8408 51422 0.6630 +8408 51655 0.5590 +8408 53349 0.7920 +8408 53632 0.6900 +8408 54205 0.4250 +8408 55004 0.5970 +8408 55014 0.7860 +8408 55054 0.9830 +8408 55062 0.9740 +8408 55102 0.9880 +8408 55201 0.7270 +8408 55332 0.5070 +8408 55626 0.9690 +8408 55669 0.4560 +8408 55770 0.4130 +8408 56270 0.4710 +8408 56947 0.4380 +8408 57521 0.9960 +8408 57533 0.8840 +8408 57724 0.4850 +8408 58528 0.6490 +8408 60592 0.5840 +8408 60673 0.9990 +8408 64121 0.6690 +8408 64223 0.9690 +8408 64422 0.9940 +8408 64798 0.9510 +8408 65018 0.5730 +8408 79065 0.9740 +8408 79109 0.4150 +8408 79443 0.4140 +8408 79594 0.5250 +8408 81631 0.9930 +8408 81671 0.6120 +8408 83667 0.9650 +8408 83734 0.8650 +8408 84335 0.9510 +8408 84557 0.9870 +8408 84938 0.8340 +8408 84971 0.8300 +8408 89849 0.7260 +8408 114548 0.4860 +8408 115201 0.9330 +8408 139341 0.9620 +8408 140735 0.5290 +8408 140775 0.9650 +8408 153129 0.6280 +8408 201158 0.4930 +8408 201163 0.4320 +8408 203228 0.9890 +8408 253260 0.5110 +8408 282808 0.7110 +8408 284040 0.4930 +8408 285973 0.8950 +8408 345611 0.5840 +8408 389541 0.5550 +8408 392307 0.6080 +8408 414301 0.5400 +8408 440738 0.9130 +8408 441925 0.9870 +8408 643246 0.5960 +8408 780776 0.4930 +8408 100533496 0.4930 +8409 8607 0.9550 +8409 8624 0.5800 +8409 8717 0.4960 +8409 8725 0.9910 +8409 9140 0.4010 +8409 9474 0.4310 +8409 9531 0.5670 +8409 9532 0.5440 +8409 9637 0.4650 +8409 9868 0.4400 +8409 10063 0.6560 +8409 10128 0.7820 +8409 10133 0.4130 +8409 10273 0.7190 +8409 10471 0.9990 +8409 10574 0.5860 +8409 10575 0.5790 +8409 10576 0.5730 +8409 10693 0.5460 +8409 10694 0.5670 +8409 10728 0.6640 +8409 10856 0.9690 +8409 10963 0.5990 +8409 11128 0.8090 +8409 11140 0.5560 +8409 11321 0.7540 +8409 11335 0.5150 +8409 22948 0.5730 +8409 23234 0.5440 +8409 23593 0.8680 +8409 23753 0.5430 +8409 25793 0.5680 +8409 25885 0.7950 +8409 26052 0.5480 +8409 26258 0.4970 +8409 26353 0.5400 +8409 27335 0.5870 +8409 27443 0.8450 +8409 28992 0.7230 +8409 29855 0.4200 +8409 30834 0.4050 +8409 51082 0.7480 +8409 51100 0.5830 +8409 51184 0.7430 +8409 51398 0.5910 +8409 51726 0.5610 +8409 51728 0.5680 +8409 54148 0.6870 +8409 54539 0.4330 +8409 55011 0.9760 +8409 55172 0.5600 +8409 55201 0.7610 +8409 55703 0.8330 +8409 55718 0.7800 +8409 56904 0.5830 +8409 56984 0.6230 +8409 57003 0.5400 +8409 57679 0.6940 +8409 64960 0.4300 +8409 79657 0.9890 +8409 79735 0.4250 +8409 79871 0.8830 +8409 81572 0.9990 +8409 83746 0.5350 +8409 84062 0.4350 +8409 84108 0.5040 +8409 84295 0.6060 +8409 92170 0.5530 +8409 116143 0.9980 +8409 117584 0.7640 +8409 120379 0.6060 +8409 140460 0.5600 +8409 150160 0.5400 +8409 192286 0.4590 +8409 386683 0.5910 +8409 388552 0.5460 +8409 100188893 0.4570 +8409 110599588 0.8720 +8411 8417 0.5540 +8411 8615 0.4090 +8411 8673 0.4490 +8411 8674 0.4460 +8411 8678 0.4410 +8411 8723 0.4060 +8411 8724 0.5530 +8411 8766 0.8980 +8411 8878 0.4030 +8411 9101 0.4750 +8411 9135 0.9830 +8411 9321 0.7360 +8411 9341 0.5210 +8411 9363 0.4110 +8411 9367 0.5090 +8411 9392 0.5790 +8411 9474 0.4850 +8411 9482 0.4180 +8411 9559 0.6510 +8411 9610 0.5950 +8411 9648 0.4810 +8411 9685 0.4830 +8411 9765 0.6100 +8411 9784 0.4690 +8411 9804 0.4220 +8411 9856 0.4680 +8411 9928 0.4200 +8411 9950 0.4900 +8411 10015 0.4270 +8411 10040 0.6960 +8411 10043 0.7220 +8411 10211 0.5150 +8411 10228 0.9640 +8411 10254 0.4320 +8411 10490 0.4550 +8411 10618 0.7880 +8411 10755 0.4950 +8411 10890 0.5100 +8411 10938 0.6620 +8411 11021 0.5830 +8411 11031 0.6910 +8411 11311 0.8600 +8411 22879 0.5670 +8411 22905 0.5550 +8411 23011 0.5520 +8411 23163 0.4360 +8411 23339 0.4960 +8411 23355 0.4150 +8411 23426 0.5090 +8411 23560 0.4460 +8411 23673 0.6720 +8411 25930 0.4110 +8411 26060 0.8290 +8411 26100 0.4020 +8411 26130 0.8020 +8411 26499 0.5680 +8411 26998 0.5560 +8411 27131 0.5760 +8411 27141 0.5440 +8411 29062 0.4020 +8411 29927 0.4120 +8411 30011 0.5840 +8411 30816 0.5200 +8411 30849 0.4250 +8411 51479 0.5430 +8411 51552 0.6300 +8411 51622 0.7010 +8411 51699 0.6130 +8411 51806 0.5890 +8411 54106 0.8200 +8411 55040 0.5480 +8411 55054 0.5900 +8411 55300 0.7500 +8411 55361 0.5190 +8411 55614 0.5880 +8411 55697 0.4280 +8411 55737 0.7790 +8411 55814 0.6780 +8411 55823 0.4040 +8411 56850 0.7540 +8411 57120 0.4270 +8411 57403 0.7930 +8411 57617 0.4580 +8411 57679 0.7850 +8411 58533 0.5000 +8411 64083 0.4830 +8411 64145 0.4190 +8411 64284 0.4730 +8411 64601 0.4450 +8411 79689 0.7410 +8411 79890 0.4460 +8411 79968 0.5110 +8411 80852 0.5500 +8411 81609 0.7930 +8411 81631 0.4590 +8411 81876 0.4630 +8411 83452 0.4440 +8411 83543 0.4700 +8411 83547 0.4340 +8411 83871 0.4040 +8411 84315 0.6950 +8411 84952 0.4520 +8411 91860 0.5760 +8411 115825 0.4380 +8411 118813 0.6370 +8411 133482 0.4800 +8411 137902 0.5460 +8411 146691 0.7060 +8411 163688 0.5760 +8411 200576 0.5980 +8411 221960 0.6970 +8411 259173 0.7050 +8411 261729 0.7520 +8411 339122 0.4010 +8411 376267 0.6600 +8411 387849 0.6680 +8411 405754 0.5570 +8411 100287171 0.5510 +8412 9564 0.9940 +8412 10044 0.5890 +8412 54733 0.4450 +8412 54874 0.4580 +8412 56995 0.4180 +8412 57717 0.4700 +8412 171177 0.4200 +8412 654364 0.4250 +8416 11000 0.4020 +8416 85025 0.4800 +8416 147409 0.4970 +8416 647024 0.4620 +8417 8602 0.4220 +8417 8673 0.9990 +8417 8674 0.9920 +8417 8675 0.8720 +8417 8676 0.8150 +8417 8677 0.9700 +8417 8723 0.6580 +8417 8724 0.6320 +8417 8766 0.7260 +8417 8773 0.9920 +8417 8774 0.9470 +8417 8775 0.9910 +8417 8876 0.5100 +8417 8883 0.4380 +8417 8907 0.4910 +8417 8943 0.4440 +8417 9038 0.8330 +8417 9066 0.6700 +8417 9117 0.6470 +8417 9140 0.4070 +8417 9217 0.4990 +8417 9218 0.5700 +8417 9230 0.4020 +8417 9287 0.5790 +8417 9341 0.9810 +8417 9342 0.9990 +8417 9367 0.4600 +8417 9392 0.5210 +8417 9474 0.4660 +8417 9482 0.9990 +8417 9515 0.5710 +8417 9522 0.4810 +8417 9527 0.9820 +8417 9554 0.9620 +8417 9570 0.9360 +8417 9842 0.5520 +8417 9997 0.4190 +8417 10228 0.9970 +8417 10282 0.9730 +8417 10490 0.9990 +8417 10533 0.4150 +8417 10652 0.9990 +8417 10791 0.7500 +8417 10814 0.5730 +8417 10815 0.6160 +8417 11021 0.4160 +8417 11311 0.7810 +8417 11345 0.4160 +8417 22863 0.4020 +8417 23256 0.6010 +8417 23339 0.9040 +8417 23355 0.6150 +8417 23673 0.9580 +8417 26002 0.8750 +8417 26022 0.6180 +8417 26276 0.9510 +8417 26984 0.6330 +8417 27072 0.8430 +8417 29091 0.6750 +8417 51119 0.4230 +8417 51272 0.7620 +8417 51552 0.4530 +8417 51622 0.4400 +8417 51699 0.4150 +8417 53407 0.9550 +8417 55014 0.8880 +8417 55107 0.4240 +8417 55737 0.4890 +8417 55787 0.7110 +8417 55823 0.9170 +8417 55850 0.9420 +8417 57617 0.9170 +8417 57724 0.4390 +8417 57794 0.4340 +8417 63894 0.7150 +8417 63908 0.9030 +8417 64145 0.5410 +8417 64601 0.9270 +8417 65082 0.9610 +8417 81876 0.4580 +8417 84079 0.4300 +8417 112755 0.7100 +8417 116841 0.9540 +8417 134864 0.4620 +8417 134957 0.9510 +8417 143187 0.9960 +8417 149111 0.4220 +8417 167838 0.7230 +8417 200081 0.5520 +8417 203062 0.5620 +8417 221960 0.4370 +8417 319100 0.6830 +8417 339302 0.5400 +8417 415117 0.7850 +8417 594855 0.5400 +8419 10730 0.5560 +8419 23336 0.4560 +8419 23424 0.5880 +8419 25925 0.4530 +8419 51557 0.5790 +8419 51562 0.5450 +8419 54205 0.4190 +8419 55891 0.4100 +8419 58511 0.4470 +8419 79443 0.5070 +8419 81493 0.4200 +8419 83878 0.4600 +8419 83889 0.4610 +8419 128866 0.6210 +8419 147138 0.4090 +8419 155051 0.5590 +8419 169792 0.4460 +8419 283953 0.6250 +8419 387700 0.4990 +8419 402635 0.4890 +8424 8651 0.4240 +8424 8805 0.8000 +8424 8878 0.5170 +8424 8908 0.5280 +8424 8940 0.5110 +8424 9051 0.6180 +8424 9081 0.8530 +8424 9830 0.8290 +8424 9866 0.7480 +8424 10010 0.5240 +8424 10155 0.8030 +8424 10206 0.6480 +8424 10346 0.8010 +8424 10475 0.4790 +8424 10612 0.7210 +8424 10621 0.5060 +8424 10626 0.7990 +8424 10713 0.5910 +8424 11043 0.7730 +8424 11074 0.7170 +8424 22954 0.7750 +8424 23321 0.4720 +8424 23650 0.8110 +8424 25893 0.4260 +8424 29110 0.5860 +8424 29883 0.4160 +8424 50852 0.9800 +8424 51084 0.6230 +8424 51127 0.9770 +8424 51507 0.4460 +8424 51592 0.7060 +8424 53840 0.5440 +8424 54765 0.7590 +8424 55217 0.4310 +8424 55223 0.4690 +8424 55521 0.7180 +8424 55663 0.4560 +8424 55814 0.4460 +8424 56658 0.8700 +8424 56987 0.8950 +8424 57093 0.7090 +8424 57159 0.8700 +8424 57506 0.4210 +8424 64343 0.4800 +8424 79187 0.5480 +8424 79814 0.4900 +8424 80128 0.6140 +8424 80263 0.7130 +8424 81559 0.7740 +8424 81603 0.6880 +8424 81631 0.4260 +8424 81786 0.7470 +8424 81844 0.5050 +8424 83856 0.5410 +8424 84062 0.4530 +8424 84188 0.4010 +8424 84675 0.8470 +8424 84676 0.7750 +8424 84851 0.4470 +8424 85363 0.8540 +8424 89870 0.4610 +8424 90933 0.7310 +8424 91107 0.6250 +8424 114088 0.8700 +8424 117854 0.8000 +8424 131405 0.8200 +8424 132949 0.4620 +8424 135892 0.7620 +8424 140691 0.5060 +8424 166655 0.4560 +8424 201292 0.4460 +8424 202333 0.6090 +8424 202658 0.8170 +8424 205860 0.4750 +8424 283518 0.4650 +8424 286827 0.5280 +8424 375593 0.7770 +8424 378108 0.7750 +8424 440730 0.7550 +8424 442862 0.8540 +8424 445372 0.8280 +8424 493829 0.8660 +8425 9719 0.4390 +8425 10516 0.6010 +8425 23545 0.4090 +8425 30008 0.6810 +8425 64763 0.4430 +8425 64856 0.4290 +8425 81031 0.4220 +8425 81794 0.4350 +8425 92344 0.4040 +8425 200132 0.4340 +8427 9344 0.5330 +8427 10155 0.7320 +8427 10875 0.6020 +8427 22893 0.8100 +8427 26262 0.4770 +8427 27153 0.6310 +8427 27339 0.5360 +8427 51236 0.4590 +8427 56970 0.4700 +8427 57473 0.4190 +8427 57541 0.8300 +8427 57658 0.4720 +8427 58506 0.5070 +8427 64925 0.5430 +8427 79724 0.5340 +8427 79803 0.4550 +8427 83855 0.4580 +8427 90850 0.6310 +8427 112939 0.4570 +8427 147658 0.4330 +8427 149986 0.4750 +8427 155061 0.4620 +8427 202865 0.4040 +8427 283899 0.5470 +8427 286262 0.4780 +8427 349136 0.4110 +8427 100131017 0.4720 +8427 100527949 0.4030 +8428 8655 0.4260 +8428 9448 0.4580 +8428 9770 0.5290 +8428 9990 0.6360 +8428 10413 0.4960 +8428 10494 0.9990 +8428 10574 0.9940 +8428 10575 0.9940 +8428 10576 0.9940 +8428 10694 0.9940 +8428 11235 0.9990 +8428 11329 0.5870 +8428 22948 0.9940 +8428 23012 0.5670 +8428 23286 0.4390 +8428 23348 0.4130 +8428 25843 0.9990 +8428 25937 0.4510 +8428 26127 0.9950 +8428 26249 0.4180 +8428 29888 0.9970 +8428 29966 0.9970 +8428 51606 0.4450 +8428 51719 0.9950 +8428 51765 0.9980 +8428 55233 0.8210 +8428 55286 0.8340 +8428 55917 0.9970 +8428 57464 0.9980 +8428 57468 0.4170 +8428 57649 0.6610 +8428 60485 0.8860 +8428 64223 0.4760 +8428 65125 0.5880 +8428 79109 0.5180 +8428 79567 0.7040 +8428 80143 0.9960 +8428 80342 0.9950 +8428 81532 0.4620 +8428 81617 0.9680 +8428 83605 0.5590 +8428 83992 0.9950 +8428 85369 0.9980 +8428 90678 0.8270 +8428 92335 0.5800 +8428 92597 0.6860 +8428 201294 0.5750 +8428 245973 0.5910 +8428 254427 0.6230 +8428 285527 0.4110 +8431 8554 0.4050 +8431 8647 0.9480 +8431 8648 0.5020 +8431 8714 0.5190 +8431 8841 0.6950 +8431 8856 0.9520 +8431 9032 0.4400 +8431 9213 0.8160 +8431 9318 0.4590 +8431 9420 0.7700 +8431 9572 0.4840 +8431 9611 0.7370 +8431 9612 0.7920 +8431 9846 0.4140 +8431 9965 0.7110 +8431 9970 0.8970 +8431 9971 0.9860 +8431 10062 0.9410 +8431 10257 0.6830 +8431 10488 0.9880 +8431 10499 0.4310 +8431 10587 0.4180 +8431 10599 0.4790 +8431 10891 0.6010 +8431 10919 0.4860 +8431 10998 0.4340 +8431 11126 0.4750 +8431 11188 0.4820 +8431 22858 0.5830 +8431 23028 0.5290 +8431 23411 0.5880 +8431 23741 0.8710 +8431 25942 0.8030 +8431 26291 0.4100 +8431 28234 0.4070 +8431 29881 0.5030 +8431 29992 0.4080 +8431 50856 0.5280 +8431 51085 0.4430 +8431 51302 0.5280 +8431 51548 0.4040 +8431 54575 0.5280 +8431 54576 0.5340 +8431 54577 0.5300 +8431 54578 0.5540 +8431 54657 0.5530 +8431 54658 0.5480 +8431 57473 0.4040 +8431 57818 0.4360 +8431 58487 0.6680 +8431 63924 0.5170 +8431 64240 0.7090 +8431 64241 0.6560 +8431 79047 0.4930 +8431 79081 0.4640 +8431 83932 0.4510 +8431 92579 0.4450 +8431 123264 0.7470 +8431 129787 0.4940 +8431 132789 0.4300 +8431 140885 0.5980 +8431 151306 0.6950 +8431 152831 0.7820 +8431 160364 0.7290 +8431 200186 0.6150 +8431 200931 0.7730 +8431 257194 0.4710 +8431 346673 0.5150 +8433 8822 0.4440 +8433 9314 0.6430 +8433 9573 0.6550 +8433 9623 0.4470 +8433 10365 0.4280 +8433 10637 0.5570 +8433 27022 0.5050 +8433 27287 0.4110 +8433 29842 0.5220 +8433 29947 0.4160 +8433 50511 0.4030 +8433 50674 0.4050 +8433 54514 0.5430 +8433 55211 0.6740 +8433 57167 0.7320 +8433 60385 0.4420 +8433 63978 0.6330 +8433 64321 0.5010 +8433 79727 0.6910 +8433 79923 0.8200 +8433 84891 0.5730 +8433 132625 0.6730 +8433 151871 0.6510 +8433 162979 0.5950 +8433 166647 0.5210 +8433 201456 0.6230 +8433 339345 0.5740 +8433 340168 0.6650 +8433 342977 0.5930 +8433 346673 0.4260 +8433 359787 0.7360 +8433 402381 0.4090 +8434 10253 0.4270 +8434 23554 0.5050 +8434 25960 0.7350 +8434 26524 0.5280 +8434 26959 0.4150 +8434 27250 0.7930 +8434 54541 0.4050 +8434 64087 0.4200 +8434 81544 0.4210 +8434 81794 0.5400 +8434 84951 0.4040 +8434 90427 0.4460 +8435 9023 0.8640 +8435 10555 0.4300 +8435 10858 0.8390 +8435 23659 0.4410 +8435 29881 0.6950 +8435 55937 0.5100 +8435 57678 0.4770 +8435 64240 0.6710 +8435 64241 0.5840 +8435 84649 0.7580 +8435 158833 0.4290 +8435 255738 0.4010 +8436 9656 0.4470 +8436 11252 0.4970 +8436 26499 0.5000 +8436 30845 0.5300 +8436 30846 0.6790 +8436 64859 0.4610 +8436 81027 0.6860 +8436 112464 0.8200 +8436 284119 0.7280 +8436 347273 0.8220 +8437 8831 0.5870 +8437 9462 0.6100 +8437 10125 0.6580 +8437 10156 0.4510 +8437 10458 0.4080 +8437 11221 0.4030 +8437 22800 0.7050 +8437 22808 0.7100 +8437 22821 0.4760 +8437 22895 0.4220 +8437 23416 0.4080 +8437 26130 0.4010 +8437 26499 0.5860 +8437 29127 0.4510 +8437 53905 0.4120 +8437 64926 0.5980 +8437 79072 0.4040 +8437 128414 0.4190 +8437 153090 0.5960 +8437 155185 0.4440 +8437 161742 0.4760 +8437 200424 0.4520 +8437 200734 0.4580 +8437 284001 0.4050 +8438 8458 0.4250 +8438 8914 0.5200 +8438 9055 0.4010 +8438 9088 0.6830 +8438 9133 0.6130 +8438 9156 0.8320 +8438 9212 0.5640 +8438 9232 0.5370 +8438 9319 0.6540 +8438 9400 0.5700 +8438 9401 0.8200 +8438 9493 0.5990 +8438 9656 0.5320 +8438 9700 0.5740 +8438 9735 0.5490 +8438 9768 0.5950 +8438 9787 0.6820 +8438 9824 0.4030 +8438 9833 0.6490 +8438 9928 0.5370 +8438 10024 0.5030 +8438 10036 0.6000 +8438 10038 0.4580 +8438 10112 0.6620 +8438 10293 0.4710 +8438 10403 0.4410 +8438 10459 0.5740 +8438 10460 0.4470 +8438 10535 0.4670 +8438 10615 0.6640 +8438 10635 0.7980 +8438 10721 0.5040 +8438 10733 0.5490 +8438 10856 0.4920 +8438 11004 0.6910 +8438 11065 0.5690 +8438 11073 0.4440 +8438 11130 0.5320 +8438 11144 0.5670 +8438 11169 0.6090 +8438 11200 0.7220 +8438 11339 0.4430 +8438 22974 0.6330 +8438 23397 0.6660 +8438 23594 0.5430 +8438 23626 0.4370 +8438 23649 0.4930 +8438 24137 0.5990 +8438 25788 0.9520 +8438 29028 0.4740 +8438 29089 0.5690 +8438 29127 0.4940 +8438 29128 0.4680 +8438 29893 0.4620 +8438 29901 0.4350 +8438 50485 0.4070 +8438 51203 0.6300 +8438 51455 0.4220 +8438 51512 0.6190 +8438 51514 0.5160 +8438 51659 0.5200 +8438 51750 0.4560 +8438 51755 0.6330 +8438 54443 0.5410 +8438 54821 0.5750 +8438 54892 0.4580 +8438 55010 0.5820 +8438 55055 0.4440 +8438 55093 0.4400 +8438 55120 0.6780 +8438 55143 0.7610 +8438 55165 0.6190 +8438 55215 0.7840 +8438 55247 0.5500 +8438 55355 0.6160 +8438 55388 0.7340 +8438 55635 0.4300 +8438 55697 0.9000 +8438 55723 0.6570 +8438 55732 0.5830 +8438 55775 0.4240 +8438 55839 0.4750 +8438 55929 0.4340 +8438 56852 0.5430 +8438 56992 0.7030 +8438 57082 0.5610 +8438 57405 0.5030 +8438 57697 0.7670 +8438 63922 0.4660 +8438 64105 0.4150 +8438 64151 0.6690 +8438 79000 0.4090 +8438 79019 0.6900 +8438 79075 0.5020 +8438 79682 0.5010 +8438 79728 0.6970 +8438 79733 0.5030 +8438 79801 0.4360 +8438 79915 0.6400 +8438 80010 0.4430 +8438 80119 0.5320 +8438 80178 0.5370 +8438 80198 0.6770 +8438 80351 0.4440 +8438 81620 0.6090 +8438 81930 0.4070 +8438 83461 0.6980 +8438 83540 0.5060 +8438 83879 0.4290 +8438 83990 0.4820 +8438 84057 0.6510 +8438 84083 0.4920 +8438 84433 0.4960 +8438 84893 0.6970 +8438 90381 0.6580 +8438 91442 0.4050 +8438 94239 0.4150 +8438 113130 0.6220 +8438 113510 0.4080 +8438 116028 0.6050 +8438 144455 0.4620 +8438 146909 0.5550 +8438 146956 0.7450 +8438 150468 0.4670 +8438 157313 0.5860 +8438 220134 0.5600 +8438 221150 0.5950 +8438 259266 0.6670 +8438 348654 0.5090 +8438 100533467 0.4260 +8439 10399 0.8320 +8439 10614 0.4540 +8439 22878 0.4410 +8439 23710 0.4560 +8439 55512 0.6850 +8439 90362 0.5940 +8439 93436 0.4690 +8439 137695 0.4130 +8439 137886 0.5920 +8439 195814 0.4540 +8439 196513 0.4550 +8439 257068 0.4080 +8440 8826 0.4900 +8440 8831 0.4770 +8440 8853 0.5350 +8440 8874 0.8600 +8440 8935 0.6060 +8440 8936 0.7350 +8440 8976 0.9590 +8440 9261 0.5400 +8440 9353 0.5550 +8440 9414 0.5160 +8440 9448 0.5250 +8440 9459 0.6620 +8440 9564 0.5600 +8440 9644 0.5170 +8440 9722 0.4420 +8440 9815 0.4460 +8440 10006 0.9010 +8440 10152 0.8910 +8440 10163 0.6710 +8440 10188 0.5710 +8440 10298 0.9240 +8440 10458 0.7900 +8440 10519 0.5240 +8440 10580 0.7090 +8440 10627 0.5020 +8440 10787 0.7740 +8440 10810 0.6660 +8440 10982 0.4760 +8440 11052 0.4300 +8440 11183 0.4680 +8440 11184 0.6100 +8440 11346 0.4750 +8440 22839 0.5940 +8440 23043 0.6370 +8440 23157 0.4300 +8440 23191 0.7880 +8440 23371 0.4050 +8440 26999 0.6660 +8440 28964 0.9190 +8440 29780 0.6520 +8440 29941 0.4930 +8440 30837 0.6210 +8440 50488 0.6090 +8440 50807 0.4940 +8440 51517 0.5150 +8440 51655 0.5630 +8440 55243 0.7190 +8440 55577 0.4460 +8440 55679 0.4150 +8440 55742 0.7770 +8440 55845 0.8290 +8440 56924 0.9170 +8440 57142 0.4430 +8440 57144 0.9180 +8440 57224 0.6490 +8440 57513 0.6110 +8440 57648 0.7270 +8440 58480 0.9320 +8440 64098 0.6590 +8440 65059 0.5800 +8440 78999 0.4280 +8440 96626 0.4910 +8440 118788 0.7030 +8440 122809 0.5540 +8440 127255 0.4050 +8440 147179 0.9800 +8440 161582 0.4570 +8440 171177 0.7710 +8440 285590 0.4820 +8440 340527 0.6460 +8440 345456 0.5070 +8440 375189 0.5140 +8440 644150 0.9650 +8443 8504 0.4180 +8443 8506 0.7760 +8443 8525 0.8210 +8443 8526 0.8420 +8443 8527 0.8120 +8443 8540 0.9970 +8443 8612 0.8350 +8443 8613 0.8130 +8443 8799 0.5000 +8443 8800 0.4310 +8443 9162 0.8520 +8443 9409 0.6390 +8443 9453 0.4500 +8443 9663 0.8200 +8443 9926 0.4610 +8443 10005 0.5220 +8443 10211 0.7870 +8443 10390 0.5010 +8443 10455 0.4060 +8443 10554 0.9030 +8443 10555 0.9050 +8443 10682 0.4160 +8443 23171 0.9560 +8443 23175 0.8400 +8443 25979 0.6040 +8443 26007 0.8130 +8443 50814 0.7650 +8443 51115 0.4270 +8443 51268 0.4260 +8443 51555 0.4040 +8443 54363 0.4100 +8443 54677 0.4610 +8443 54947 0.5120 +8443 55326 0.8980 +8443 55670 0.6550 +8443 55699 0.4940 +8443 55711 0.8700 +8443 56894 0.9100 +8443 56895 0.8890 +8443 56947 0.5290 +8443 56994 0.4090 +8443 64900 0.8180 +8443 79728 0.5570 +8443 79888 0.4810 +8443 79901 0.4550 +8443 84188 0.9780 +8443 84263 0.4290 +8443 84513 0.8130 +8443 84749 0.6430 +8443 84803 0.5120 +8443 85465 0.5450 +8443 91452 0.4330 +8443 129642 0.8810 +8443 137695 0.4370 +8443 137964 0.5320 +8443 139189 0.8100 +8443 154141 0.8020 +8443 160851 0.8280 +8443 196051 0.8130 +8443 219743 0.7370 +8443 222659 0.4430 +8443 253558 0.8880 +8443 254531 0.5250 +8443 387521 0.5060 +8443 387522 0.5010 +8443 400961 0.6100 +8444 10146 0.4050 +8444 10238 0.6810 +8444 10733 0.4100 +8444 23411 0.4960 +8445 8788 0.4710 +8445 8816 0.4100 +8445 8893 0.5200 +8445 8945 0.4010 +8445 9025 0.4220 +8445 9730 0.9410 +8445 9738 0.4790 +8445 9782 0.4400 +8445 10238 0.8090 +8445 11078 0.4230 +8445 11104 0.5840 +8445 11329 0.4120 +8445 22916 0.4260 +8445 51366 0.8890 +8445 51806 0.4200 +8445 63970 0.6220 +8445 64925 0.5990 +8445 83903 0.4890 +8445 84131 0.6400 +8445 91860 0.4070 +8445 118429 0.5160 +8445 163688 0.4070 +8445 284111 0.5820 +8446 8731 0.4660 +8446 9271 0.6120 +8446 9488 0.4340 +8446 9611 0.4870 +8446 9612 0.4870 +8446 9669 0.4760 +8446 10492 0.4580 +8446 11072 0.4120 +8446 11266 0.4830 +8446 22803 0.6240 +8446 23405 0.5560 +8446 24138 0.4180 +8446 29113 0.4370 +8446 51207 0.4070 +8446 54464 0.6530 +8446 55015 0.4200 +8446 55556 0.4160 +8446 56940 0.4460 +8446 57619 0.4220 +8446 63904 0.4900 +8446 90459 0.5370 +8446 92235 0.4160 +8446 117143 0.5170 +8446 129563 0.4270 +8446 147906 0.4090 +8446 150290 0.4320 +8446 167227 0.4780 +8446 255488 0.7320 +8446 286077 0.4590 +8447 8448 0.5900 +8447 8773 0.4510 +8447 9501 0.9350 +8447 10497 0.8790 +8447 23025 0.5990 +8447 115827 0.6320 +8447 123036 0.4460 +8447 342865 0.5040 +8448 8479 0.7000 +8448 8773 0.4010 +8448 9344 0.6080 +8448 9501 0.7580 +8448 9545 0.4380 +8448 10244 0.4480 +8448 10423 0.5590 +8448 10497 0.9200 +8448 10590 0.8460 +8448 11151 0.4390 +8448 22903 0.4190 +8448 23025 0.7400 +8448 23042 0.4210 +8448 23475 0.5420 +8448 26470 0.6950 +8448 27229 0.4180 +8448 51095 0.4590 +8448 57524 0.4150 +8448 63027 0.4280 +8448 79153 0.4730 +8448 79447 0.5700 +8448 79809 0.5080 +8448 83719 0.6240 +8448 83723 0.5540 +8448 84364 0.4550 +8448 84959 0.7050 +8448 112476 0.5650 +8448 115827 0.4080 +8448 124446 0.5210 +8448 134957 0.5150 +8448 146378 0.6260 +8448 146395 0.4180 +8448 201294 0.4700 +8448 253980 0.6760 +8448 253982 0.6840 +8448 283219 0.4970 +8448 283897 0.6000 +8448 283899 0.5830 +8448 440279 0.4240 +8448 653808 0.4770 +8449 8559 0.7040 +8449 8731 0.4450 +8449 8732 0.4140 +8449 8896 0.9770 +8449 9092 0.9530 +8449 9128 0.9500 +8449 9129 0.9730 +8449 9188 0.4610 +8449 9277 0.5610 +8449 9343 0.9990 +8449 9360 0.5230 +8449 9410 0.8580 +8449 9416 0.8950 +8449 9419 0.8330 +8449 9716 0.8900 +8449 9724 0.4310 +8449 9775 0.9090 +8449 9785 0.9970 +8449 9790 0.4600 +8449 9879 0.7130 +8449 9939 0.4280 +8449 10181 0.4060 +8449 10189 0.8490 +8449 10250 0.8850 +8449 10262 0.9970 +8449 10283 0.9980 +8449 10286 0.8810 +8449 10291 0.9980 +8449 10450 0.8320 +8449 10471 0.4050 +8449 10521 0.5020 +8449 10569 0.7890 +8449 10594 0.9990 +8449 10713 0.6200 +8449 10813 0.4440 +8449 10891 0.5600 +8449 10907 0.9280 +8449 10915 0.5350 +8449 10946 0.9980 +8449 10973 0.4050 +8449 10992 0.9990 +8449 11011 0.5750 +8449 11056 0.4270 +8449 11157 0.9580 +8449 11193 0.9160 +8449 11270 0.4130 +8449 11325 0.4910 +8449 11338 0.6740 +8449 22794 0.4330 +8449 22907 0.5360 +8449 22916 0.4680 +8449 22938 0.9850 +8449 22984 0.4420 +8449 23020 0.9990 +8449 23082 0.5690 +8449 23091 0.9000 +8449 23165 0.4290 +8449 23398 0.6610 +8449 23450 0.9990 +8449 23451 0.9990 +8449 23476 0.5560 +8449 23517 0.9030 +8449 23524 0.9950 +8449 23658 0.9560 +8449 23660 0.5020 +8449 23759 0.9730 +8449 24144 0.6510 +8449 24148 0.9660 +8449 25804 0.9100 +8449 25904 0.5320 +8449 25949 0.9400 +8449 26121 0.9650 +8449 27238 0.9990 +8449 27258 0.9150 +8449 27336 0.5040 +8449 27339 0.9880 +8449 50618 0.5390 +8449 51077 0.5280 +8449 51096 0.5080 +8449 51202 0.5240 +8449 51340 0.9910 +8449 51362 0.9970 +8449 51503 0.9760 +8449 51575 0.4700 +8449 51593 0.8440 +8449 51602 0.4190 +8449 51634 0.9980 +8449 51639 0.8960 +8449 51645 0.9770 +8449 51690 0.9190 +8449 51691 0.9130 +8449 53938 0.8230 +8449 54555 0.6180 +8449 54606 0.4330 +8449 54883 0.8940 +8449 55094 0.5170 +8449 55100 0.4930 +8449 55105 0.4150 +8449 55110 0.9130 +8449 55234 0.9140 +8449 55285 0.5540 +8449 55341 0.4020 +8449 55599 0.5540 +8449 55696 0.9850 +8449 55702 0.9170 +8449 55813 0.4150 +8449 56949 0.9990 +8449 57050 0.4430 +8449 57187 0.9060 +8449 57696 0.4040 +8449 57703 0.9980 +8449 57819 0.9520 +8449 59286 0.4450 +8449 60625 0.6110 +8449 64427 0.4010 +8449 65083 0.4110 +8449 65109 0.4450 +8449 79005 0.8030 +8449 79009 0.4050 +8449 79039 0.5610 +8449 79048 0.6200 +8449 79446 0.8020 +8449 79637 0.9250 +8449 79753 0.9970 +8449 79969 0.4510 +8449 80742 0.4550 +8449 83443 0.9970 +8449 83479 0.4830 +8449 83938 0.5400 +8449 84060 0.8110 +8449 84081 0.5320 +8449 84811 0.9980 +8449 84844 0.9980 +8449 84916 0.4310 +8449 84950 0.9450 +8449 85313 0.6330 +8449 113510 0.4760 +8449 120892 0.5250 +8449 151903 0.8020 +8449 153527 0.9150 +8449 154007 0.5280 +8449 199746 0.4060 +8449 220074 0.5400 +8449 222183 0.6560 +8449 100534599 0.8660 +8450 8451 0.9990 +8450 8452 0.9160 +8450 8453 0.9260 +8450 8454 0.9640 +8450 8533 0.9430 +8450 8554 0.4800 +8450 8607 0.4130 +8450 8816 0.9550 +8450 8819 0.5620 +8450 8841 0.4100 +8450 8883 0.7590 +8450 8945 0.4500 +8450 9039 0.7780 +8450 9040 0.8510 +8450 9112 0.4640 +8450 9318 0.9450 +8450 9320 0.4970 +8450 9557 0.5480 +8450 9584 0.4620 +8450 9611 0.5780 +8450 9616 0.9670 +8450 9730 0.9990 +8450 9939 0.4460 +8450 9948 0.4750 +8450 9978 0.9990 +8450 10038 0.5350 +8450 10075 0.7860 +8450 10238 0.9840 +8450 10320 0.4410 +8450 10401 0.4500 +8450 10419 0.7470 +8450 10445 0.4050 +8450 10479 0.4190 +8450 10607 0.7860 +8450 10714 0.5190 +8450 10885 0.4740 +8450 10920 0.9470 +8450 10935 0.4300 +8450 10951 0.4220 +8450 10980 0.9640 +8450 10987 0.9750 +8450 11091 0.8370 +8450 11146 0.8540 +8450 11169 0.4120 +8450 11180 0.4450 +8450 11198 0.4320 +8450 11339 0.4090 +8450 22806 0.4980 +8450 23038 0.8620 +8450 23113 0.5770 +8450 23137 0.5540 +8450 23142 0.7150 +8450 23186 0.5980 +8450 23411 0.4510 +8450 23412 0.5200 +8450 23468 0.6870 +8450 23476 0.4620 +8450 25853 0.9550 +8450 25879 0.9720 +8450 25939 0.5380 +8450 25942 0.7580 +8450 26043 0.8120 +8450 26094 0.9890 +8450 26133 0.9710 +8450 27252 0.4330 +8450 28952 0.5940 +8450 28985 0.8610 +8450 28991 0.5060 +8450 29099 0.5090 +8450 50717 0.9920 +8450 50813 0.9210 +8450 51122 0.5210 +8450 51138 0.9540 +8450 51185 0.9990 +8450 51366 0.5360 +8450 51397 0.5070 +8450 51514 0.9990 +8450 51547 0.6540 +8450 51742 0.4250 +8450 54014 0.4170 +8450 54107 0.5170 +8450 54165 0.9530 +8450 54461 0.9350 +8450 54617 0.4640 +8450 54778 0.6730 +8450 54876 0.9510 +8450 54939 0.5130 +8450 54951 0.5760 +8450 55023 0.8980 +8450 55070 0.9980 +8450 55167 0.4100 +8450 55208 0.8800 +8450 55234 0.5520 +8450 55294 0.5330 +8450 55421 0.4230 +8450 55626 0.9920 +8450 55795 0.5260 +8450 55827 0.9690 +8450 55832 0.9970 +8450 56157 0.4260 +8450 56254 0.4710 +8450 56655 0.5380 +8450 56852 0.5970 +8450 57148 0.4570 +8450 57167 0.4830 +8450 57521 0.6920 +8450 57599 0.6490 +8450 57654 0.4360 +8450 57697 0.4130 +8450 57804 0.5560 +8450 64326 0.9660 +8450 64708 0.9190 +8450 64795 0.4240 +8450 79016 0.9960 +8450 79084 0.4210 +8450 79188 0.6130 +8450 79269 0.9650 +8450 79698 0.4970 +8450 79913 0.4130 +8450 79968 0.7090 +8450 80067 0.9710 +8450 80232 0.4760 +8450 80344 0.9960 +8450 81620 0.9370 +8450 83444 0.4250 +8450 83743 0.6440 +8450 84259 0.8070 +8450 84295 0.4250 +8450 90379 0.9780 +8450 93611 0.8950 +8450 93621 0.4820 +8450 93973 0.4720 +8450 123879 0.6780 +8450 138009 0.8820 +8450 139170 0.7020 +8450 139425 0.5870 +8450 140739 0.5870 +8450 149951 0.5080 +8450 150678 0.6260 +8450 150684 0.6450 +8450 170622 0.5080 +8450 254065 0.8220 +8450 283899 0.4300 +8450 285429 0.7960 +8450 340578 0.6670 +8450 347442 0.6580 +8450 387893 0.4930 +8450 404672 0.5320 +8451 8452 0.9680 +8451 8453 0.9790 +8451 8454 0.9910 +8451 8533 0.9490 +8451 8554 0.4910 +8451 8607 0.4460 +8451 8678 0.4100 +8451 8815 0.4120 +8451 8816 0.9700 +8451 8844 0.4780 +8451 8883 0.8670 +8451 8945 0.9630 +8451 9039 0.8530 +8451 9040 0.9440 +8451 9113 0.6990 +8451 9156 0.4660 +8451 9318 0.9880 +8451 9320 0.4220 +8451 9361 0.4390 +8451 9401 0.4350 +8451 9557 0.5610 +8451 9584 0.5100 +8451 9616 0.9980 +8451 9646 0.8470 +8451 9730 0.9990 +8451 9807 0.4180 +8451 9810 0.4820 +8451 9948 0.4880 +8451 9978 0.9990 +8451 10038 0.5610 +8451 10054 0.4140 +8451 10075 0.4740 +8451 10155 0.4150 +8451 10213 0.5440 +8451 10238 0.9830 +8451 10320 0.5290 +8451 10401 0.4610 +8451 10419 0.5080 +8451 10425 0.5320 +8451 10445 0.4340 +8451 10477 0.5500 +8451 10714 0.5110 +8451 10885 0.5350 +8451 10920 0.9860 +8451 10980 0.9740 +8451 10987 0.9850 +8451 11091 0.8890 +8451 11137 0.7430 +8451 11146 0.8950 +8451 11169 0.4580 +8451 11180 0.4410 +8451 11198 0.4910 +8451 11199 0.5950 +8451 11200 0.4880 +8451 11331 0.5020 +8451 22806 0.7000 +8451 22894 0.4910 +8451 23038 0.9300 +8451 23113 0.6130 +8451 23137 0.4700 +8451 23142 0.7030 +8451 23352 0.4260 +8451 23405 0.5040 +8451 23412 0.5100 +8451 23450 0.5190 +8451 23462 0.5050 +8451 23468 0.6080 +8451 23476 0.4460 +8451 25820 0.4110 +8451 25833 0.5090 +8451 25853 0.9830 +8451 25879 0.9270 +8451 25939 0.7610 +8451 26043 0.7710 +8451 26094 0.9900 +8451 26133 0.9880 +8451 26227 0.5000 +8451 26259 0.7170 +8451 26270 0.4750 +8451 27338 0.4030 +8451 28952 0.5130 +8451 28976 0.6080 +8451 28991 0.5040 +8451 29099 0.5110 +8451 50717 0.9900 +8451 50813 0.9450 +8451 51122 0.5070 +8451 51138 0.9630 +8451 51185 0.9990 +8451 51366 0.5820 +8451 51397 0.5060 +8451 51514 0.9990 +8451 51529 0.7290 +8451 51676 0.4430 +8451 54014 0.6230 +8451 54107 0.5580 +8451 54165 0.9570 +8451 54461 0.9950 +8451 54541 0.4510 +8451 54617 0.4610 +8451 54623 0.8010 +8451 54778 0.6280 +8451 54876 0.9650 +8451 54939 0.5090 +8451 54951 0.5340 +8451 55023 0.8950 +8451 55070 0.9990 +8451 55208 0.8800 +8451 55294 0.5930 +8451 55388 0.5640 +8451 55626 0.9920 +8451 55795 0.8090 +8451 55827 0.9890 +8451 55832 0.9880 +8451 56655 0.5750 +8451 56852 0.6560 +8451 56949 0.6030 +8451 57599 0.6070 +8451 57654 0.9110 +8451 57804 0.5750 +8451 60489 0.4040 +8451 64326 0.9930 +8451 64708 0.9410 +8451 79016 0.9990 +8451 79269 0.9640 +8451 79577 0.8310 +8451 79913 0.4130 +8451 79968 0.7620 +8451 80067 0.9460 +8451 80232 0.4970 +8451 80344 0.9990 +8451 80349 0.8960 +8451 81620 0.9680 +8451 83444 0.4250 +8451 83737 0.4790 +8451 83743 0.5780 +8451 83752 0.4570 +8451 84259 0.8160 +8451 84464 0.6290 +8451 84678 0.5260 +8451 85476 0.4520 +8451 90379 0.9870 +8451 93621 0.4500 +8451 93973 0.4180 +8451 123169 0.8330 +8451 123228 0.7760 +8451 123879 0.6740 +8451 125476 0.4050 +8451 138009 0.8790 +8451 139170 0.6860 +8451 139425 0.6410 +8451 140739 0.5960 +8451 149951 0.5070 +8451 150365 0.5020 +8451 150678 0.6380 +8451 150684 0.6490 +8451 153090 0.5950 +8451 163590 0.5940 +8451 170622 0.5070 +8451 254065 0.6160 +8451 283899 0.4250 +8451 285429 0.8030 +8451 340578 0.6530 +8451 347442 0.6980 +8451 387893 0.6330 +8451 404672 0.5820 +8451 440093 0.4310 +8451 440686 0.4330 +8451 653604 0.4360 +8452 8453 0.9880 +8452 8454 0.9780 +8452 8507 0.9820 +8452 8533 0.8190 +8452 8664 0.6020 +8452 8678 0.7290 +8452 8743 0.5520 +8452 8772 0.5820 +8452 8795 0.6600 +8452 8797 0.6660 +8452 8805 0.4340 +8452 8878 0.9060 +8452 8883 0.8270 +8452 8945 0.9320 +8452 9039 0.8360 +8452 9040 0.9580 +8452 9097 0.4870 +8452 9212 0.9270 +8452 9318 0.9320 +8452 9320 0.5070 +8452 9474 0.4030 +8452 9491 0.5290 +8452 9531 0.4540 +8452 9555 0.4010 +8452 9603 0.4930 +8452 9616 0.9880 +8452 9656 0.4410 +8452 9817 0.9990 +8452 9861 0.6090 +8452 9886 0.9820 +8452 9903 0.9940 +8452 9920 0.4230 +8452 9943 0.4070 +8452 9958 0.4670 +8452 9978 0.9990 +8452 10013 0.5010 +8452 10016 0.8750 +8452 10025 0.4010 +8452 10054 0.4610 +8452 10072 0.6860 +8452 10075 0.4420 +8452 10197 0.5960 +8452 10213 0.7440 +8452 10324 0.9780 +8452 10465 0.4280 +8452 10477 0.5830 +8452 10488 0.5070 +8452 10524 0.4990 +8452 10533 0.4540 +8452 10537 0.6230 +8452 10626 0.4700 +8452 10920 0.8900 +8452 10980 0.9060 +8452 10987 0.9770 +8452 11011 0.6310 +8452 11059 0.5340 +8452 11074 0.4630 +8452 11104 0.6970 +8452 11124 0.7560 +8452 11146 0.8620 +8452 11273 0.4110 +8452 11275 0.9910 +8452 11337 0.6350 +8452 11345 0.5630 +8452 22836 0.9310 +8452 22872 0.7160 +8452 22873 0.4650 +8452 22903 0.4910 +8452 22954 0.4590 +8452 22976 0.4130 +8452 23053 0.9400 +8452 23066 0.7090 +8452 23113 0.7490 +8452 23142 0.9060 +8452 23194 0.4920 +8452 23198 0.6460 +8452 23221 0.9710 +8452 23276 0.9100 +8452 23291 0.8360 +8452 23327 0.4850 +8452 23352 0.5330 +8452 23386 0.6420 +8452 23411 0.4920 +8452 23412 0.5070 +8452 23450 0.4770 +8452 23462 0.7550 +8452 23476 0.6900 +8452 23510 0.9660 +8452 23710 0.6270 +8452 25793 0.4190 +8452 25820 0.9320 +8452 25828 0.5080 +8452 25841 0.4290 +8452 25855 0.5200 +8452 25948 0.7400 +8452 25998 0.9060 +8452 26043 0.9290 +8452 26168 0.6140 +8452 26190 0.4450 +8452 26224 0.6840 +8452 26233 0.5050 +8452 26249 0.9990 +8452 26259 0.5420 +8452 26268 0.5470 +8452 27079 0.4960 +8452 27244 0.5720 +8452 27252 0.9990 +8452 27306 0.4350 +8452 27338 0.5600 +8452 27347 0.6290 +8452 28952 0.6530 +8452 28991 0.5210 +8452 29072 0.4030 +8452 29099 0.5110 +8452 29126 0.4810 +8452 29761 0.4660 +8452 29978 0.4300 +8452 29979 0.4360 +8452 30813 0.4150 +8452 50813 0.8770 +8452 51035 0.5830 +8452 51088 0.8600 +8452 51119 0.4070 +8452 51122 0.5220 +8452 51133 0.5470 +8452 51138 0.9100 +8452 51397 0.5210 +8452 51479 0.7170 +8452 51514 0.4490 +8452 51547 0.4390 +8452 51684 0.9490 +8452 51719 0.4370 +8452 53339 0.9250 +8452 54165 0.9870 +8452 54442 0.9980 +8452 54455 0.6450 +8452 54461 0.4120 +8452 54540 0.4310 +8452 54583 0.4640 +8452 54793 0.8930 +8452 54800 0.9620 +8452 54813 0.6130 +8452 54850 0.4570 +8452 54926 0.5450 +8452 54939 0.5750 +8452 54951 0.6780 +8452 55175 0.9950 +8452 55208 0.9610 +8452 55213 0.8080 +8452 55236 0.4030 +8452 55294 0.7990 +8452 55295 0.6940 +8452 55336 0.4120 +8452 55527 0.4330 +8452 55643 0.8860 +8452 55666 0.6240 +8452 55709 0.8510 +8452 55832 0.9880 +8452 55958 0.9990 +8452 55975 0.9850 +8452 56062 0.5090 +8452 56888 0.6430 +8452 56929 0.5370 +8452 57016 0.4170 +8452 57154 0.4080 +8452 57337 0.4230 +8452 57448 0.4910 +8452 57528 0.5950 +8452 57539 0.4160 +8452 57542 0.9930 +8452 57563 0.9890 +8452 57599 0.4570 +8452 57626 0.5260 +8452 57664 0.4690 +8452 59349 0.9990 +8452 63891 0.4730 +8452 64410 0.9950 +8452 64708 0.7400 +8452 64750 0.5650 +8452 64783 0.4100 +8452 64839 0.5300 +8452 65125 0.7670 +8452 65266 0.8900 +8452 65267 0.4270 +8452 79661 0.5710 +8452 79698 0.4560 +8452 79728 0.7060 +8452 79734 0.9980 +8452 79786 0.5200 +8452 79798 0.5810 +8452 80119 0.4010 +8452 80204 0.5590 +8452 80311 0.9150 +8452 80325 0.8510 +8452 80344 0.5250 +8452 80856 0.5350 +8452 81620 0.5260 +8452 81631 0.7230 +8452 83473 0.4990 +8452 83667 0.5890 +8452 83892 0.9960 +8452 84033 0.4950 +8452 84078 0.9980 +8452 84181 0.4130 +8452 84231 0.4570 +8452 84259 0.9030 +8452 84280 0.7160 +8452 84541 0.9970 +8452 84861 0.9950 +8452 89857 0.7930 +8452 89890 0.9910 +8452 90135 0.8060 +8452 90293 0.9990 +8452 92799 0.6020 +8452 93624 0.4960 +8452 112398 0.4230 +8452 113622 0.4020 +8452 114781 0.6600 +8452 114803 0.4220 +8452 115207 0.5690 +8452 116138 0.4630 +8452 120892 0.4180 +8452 122706 0.5150 +8452 122769 0.4330 +8452 123879 0.9120 +8452 124540 0.4940 +8452 131377 0.8930 +8452 133482 0.4300 +8452 139285 0.5750 +8452 140739 0.6140 +8452 140809 0.4640 +8452 143471 0.5160 +8452 144699 0.4570 +8452 146330 0.4320 +8452 147040 0.9780 +8452 149951 0.5080 +8452 150365 0.6090 +8452 150678 0.6320 +8452 150684 0.6400 +8452 151230 0.7050 +8452 154881 0.8830 +8452 161742 0.4730 +8452 165918 0.4480 +8452 170622 0.5170 +8452 192111 0.6410 +8452 200734 0.4080 +8452 200845 0.9860 +8452 200933 0.4520 +8452 221302 0.4510 +8452 222235 0.6300 +8452 222658 0.5780 +8452 252969 0.7310 +8452 253980 0.9960 +8452 257202 0.4240 +8452 283219 0.6690 +8452 284252 0.6450 +8452 317719 0.8540 +8452 339451 0.7400 +8452 339745 0.9990 +8452 386617 0.6000 +8452 390594 0.8810 +8452 401265 0.7530 +8452 440738 0.4140 +8452 493869 0.4280 +8452 553115 0.9560 +8453 8454 0.6640 +8453 8533 0.9650 +8453 8651 0.9870 +8453 8850 0.9040 +8453 8878 0.6490 +8453 8883 0.8120 +8453 8914 0.8450 +8453 8945 0.6120 +8453 8994 0.5310 +8453 9021 0.5940 +8453 9027 0.4080 +8453 9039 0.8690 +8453 9040 0.8700 +8453 9094 0.4450 +8453 9245 0.4020 +8453 9318 0.9890 +8453 9320 0.4370 +8453 9474 0.4880 +8453 9491 0.4050 +8453 9616 0.9980 +8453 9647 0.7630 +8453 9655 0.4450 +8453 9669 0.4260 +8453 9684 0.6810 +8453 9736 0.4120 +8453 9782 0.4880 +8453 9817 0.6950 +8453 9837 0.8110 +8453 9861 0.4590 +8453 9915 0.5290 +8453 9978 0.9990 +8453 10018 0.5930 +8453 10116 0.9940 +8453 10197 0.4050 +8453 10213 0.5200 +8453 10299 0.4250 +8453 10399 0.4840 +8453 10444 0.9950 +8453 10513 0.9660 +8453 10920 0.9500 +8453 10956 0.4280 +8453 10980 0.9700 +8453 10987 0.9870 +8453 11124 0.7000 +8453 11146 0.8750 +8453 11169 0.8570 +8453 23008 0.9440 +8453 23032 0.5110 +8453 23053 0.8780 +8453 23113 0.7720 +8453 23142 0.8450 +8453 23197 0.6290 +8453 23198 0.4130 +8453 23352 0.4300 +8453 23412 0.5100 +8453 23462 0.7430 +8453 23476 0.7580 +8453 23532 0.9900 +8453 23588 0.9710 +8453 23640 0.4090 +8453 25820 0.6580 +8453 25836 0.4360 +8453 26043 0.9620 +8453 26190 0.7180 +8453 26227 0.4040 +8453 26259 0.5360 +8453 26272 0.7260 +8453 27246 0.4930 +8453 27252 0.5130 +8453 27338 0.6680 +8453 28952 0.6730 +8453 28991 0.5320 +8453 29099 0.5210 +8453 29110 0.4320 +8453 29761 0.6590 +8453 50813 0.4490 +8453 51035 0.6590 +8453 51122 0.5470 +8453 51138 0.9460 +8453 51182 0.4070 +8453 51185 0.5160 +8453 51224 0.6650 +8453 51382 0.4600 +8453 51397 0.6230 +8453 51529 0.5540 +8453 51659 0.8000 +8453 51666 0.9400 +8453 51676 0.4410 +8453 54165 0.9630 +8453 54583 0.7750 +8453 54778 0.4980 +8453 54939 0.5590 +8453 54951 0.6070 +8453 54962 0.8350 +8453 55208 0.8950 +8453 55294 0.4530 +8453 55527 0.9480 +8453 55662 0.6320 +8453 55666 0.5220 +8453 55832 0.9810 +8453 56929 0.9840 +8453 57019 0.4260 +8453 57107 0.5870 +8453 57492 0.7550 +8453 57630 0.4620 +8453 57643 0.6090 +8453 57688 0.6000 +8453 63967 0.8540 +8453 64221 0.5110 +8453 64344 0.7510 +8453 64708 0.8820 +8453 64750 0.4910 +8453 64785 0.8360 +8453 65249 0.5920 +8453 79139 0.5580 +8453 79594 0.4210 +8453 79699 0.9900 +8453 80204 0.6650 +8453 81620 0.4740 +8453 84246 0.5010 +8453 84259 0.9040 +8453 84260 0.7110 +8453 84296 0.8510 +8453 84925 0.5960 +8453 84962 0.5070 +8453 93611 0.5620 +8453 112398 0.5570 +8453 112399 0.8740 +8453 112483 0.6380 +8453 112950 0.7560 +8453 116138 0.9870 +8453 122706 0.4010 +8453 122769 0.9960 +8453 122809 0.5120 +8453 123228 0.8130 +8453 123879 0.8080 +8453 126374 0.5070 +8453 140459 0.4820 +8453 140739 0.6020 +8453 149951 0.5480 +8453 150678 0.4930 +8453 150684 0.9990 +8453 157922 0.4090 +8453 170622 0.7160 +8453 391104 0.5250 +8453 440561 0.9070 +8453 440590 0.9070 +8453 653619 0.9070 +8454 8517 0.7430 +8454 8533 0.8860 +8454 8665 0.4330 +8454 8697 0.4650 +8454 8850 0.6040 +8454 8863 0.9110 +8454 8864 0.9150 +8454 8877 0.4460 +8454 8878 0.5170 +8454 8883 0.9230 +8454 8900 0.8800 +8454 8915 0.4580 +8454 8945 0.9990 +8454 9020 0.5380 +8454 9039 0.9620 +8454 9040 0.9990 +8454 9064 0.4900 +8454 9097 0.4860 +8454 9099 0.4730 +8454 9113 0.4070 +8454 9134 0.9310 +8454 9212 0.5060 +8454 9232 0.5010 +8454 9318 0.9100 +8454 9320 0.5130 +8454 9491 0.5300 +8454 9616 0.9990 +8454 9636 0.4730 +8454 9656 0.4440 +8454 9663 0.4100 +8454 9682 0.7730 +8454 9683 0.4130 +8454 9700 0.4260 +8454 9730 0.6250 +8454 9782 0.5120 +8454 9794 0.6040 +8454 9817 0.9180 +8454 9861 0.5780 +8454 9927 0.5350 +8454 9958 0.4260 +8454 9978 0.9990 +8454 9987 0.5190 +8454 10000 0.6700 +8454 10013 0.4660 +8454 10046 0.5060 +8454 10054 0.4680 +8454 10075 0.4620 +8454 10197 0.5480 +8454 10213 0.8820 +8454 10273 0.4120 +8454 10277 0.4040 +8454 10393 0.4870 +8454 10477 0.6060 +8454 10498 0.4230 +8454 10517 0.8410 +8454 10537 0.4560 +8454 10626 0.4260 +8454 10642 0.4440 +8454 10733 0.4070 +8454 10920 0.9260 +8454 10963 0.4240 +8454 10980 0.9410 +8454 10987 0.9950 +8454 11065 0.4700 +8454 11073 0.5200 +8454 11124 0.7770 +8454 11146 0.9930 +8454 11200 0.7070 +8454 22938 0.7750 +8454 22976 0.4490 +8454 22992 0.4650 +8454 23014 0.9780 +8454 23066 0.9340 +8454 23077 0.5840 +8454 23113 0.5290 +8454 23142 0.8480 +8454 23194 0.9600 +8454 23197 0.6050 +8454 23198 0.4940 +8454 23219 0.9420 +8454 23291 0.9990 +8454 23327 0.4280 +8454 23403 0.8810 +8454 23450 0.4650 +8454 23462 0.9880 +8454 23476 0.6340 +8454 23493 0.5370 +8454 23567 0.7520 +8454 25791 0.4050 +8454 25793 0.9920 +8454 25820 0.9770 +8454 25827 0.9460 +8454 25842 0.4410 +8454 26043 0.8190 +8454 26168 0.7600 +8454 26190 0.9790 +8454 26224 0.9730 +8454 26232 0.9730 +8454 26233 0.9400 +8454 26234 0.9990 +8454 26235 0.8550 +8454 26249 0.4050 +8454 26259 0.9920 +8454 26260 0.9610 +8454 26261 0.7700 +8454 26263 0.9680 +8454 26267 0.9350 +8454 26268 0.9730 +8454 26269 0.4550 +8454 26270 0.9870 +8454 26271 0.9850 +8454 26272 0.9830 +8454 26273 0.9890 +8454 26994 0.4990 +8454 27101 0.7790 +8454 27252 0.4210 +8454 27338 0.7780 +8454 28951 0.4100 +8454 28996 0.6800 +8454 29066 0.4560 +8454 29089 0.4200 +8454 29110 0.4960 +8454 29882 0.4700 +8454 29978 0.4150 +8454 29979 0.5950 +8454 50813 0.9090 +8454 51035 0.7150 +8454 51138 0.9370 +8454 51185 0.7300 +8454 51343 0.7760 +8454 51382 0.4460 +8454 51433 0.4060 +8454 51514 0.6120 +8454 51529 0.7140 +8454 51530 0.9040 +8454 51619 0.8560 +8454 51676 0.6570 +8454 51684 0.6120 +8454 51725 0.7750 +8454 53339 0.5040 +8454 54101 0.4180 +8454 54165 0.9990 +8454 54432 0.4530 +8454 54455 0.9490 +8454 54461 0.9720 +8454 54556 0.4540 +8454 54790 0.4050 +8454 54850 0.9830 +8454 54926 0.5900 +8454 55030 0.8700 +8454 55070 0.4270 +8454 55175 0.5870 +8454 55208 0.8650 +8454 55236 0.4690 +8454 55294 0.9990 +8454 55336 0.9580 +8454 55339 0.4100 +8454 55534 0.5960 +8454 55832 0.9990 +8454 57144 0.4630 +8454 57154 0.4350 +8454 57599 0.4560 +8454 57646 0.4600 +8454 57695 0.4800 +8454 59349 0.6310 +8454 63967 0.4350 +8454 64708 0.8640 +8454 64798 0.4690 +8454 64839 0.9990 +8454 79008 0.4470 +8454 79058 0.5790 +8454 79155 0.5790 +8454 79577 0.4870 +8454 79791 0.9690 +8454 79866 0.6630 +8454 80028 0.9830 +8454 80204 0.9800 +8454 80325 0.4210 +8454 80344 0.4400 +8454 81545 0.8330 +8454 81620 0.8450 +8454 81669 0.6750 +8454 84085 0.8840 +8454 84231 0.4640 +8454 84259 0.8320 +8454 84261 0.9440 +8454 84441 0.5960 +8454 84678 0.8040 +8454 84893 0.9760 +8454 84961 0.9480 +8454 85363 0.4270 +8454 91544 0.5910 +8454 93611 0.9620 +8454 113622 0.4020 +8454 114803 0.4580 +8454 114907 0.9870 +8454 115290 0.9660 +8454 122706 0.4010 +8454 122769 0.5930 +8454 123228 0.9000 +8454 123879 0.9620 +8454 126433 0.9390 +8454 130888 0.6120 +8454 133482 0.6320 +8454 139285 0.6060 +8454 140739 0.8040 +8454 143471 0.4160 +8454 144699 0.9750 +8454 146330 0.8600 +8454 150365 0.4830 +8454 150678 0.4220 +8454 150684 0.8050 +8454 150726 0.7920 +8454 153090 0.6430 +8454 157567 0.4940 +8454 157574 0.8010 +8454 162517 0.6580 +8454 171222 0.8380 +8454 200933 0.9110 +8454 201456 0.7320 +8454 221302 0.4850 +8454 222229 0.5050 +8454 222235 0.9140 +8454 252969 0.4470 +8454 253260 0.9270 +8454 254170 0.9250 +8454 283807 0.9330 +8454 285231 0.7700 +8454 286151 0.9480 +8454 339745 0.6700 +8454 349136 0.4230 +8454 387893 0.5150 +8455 8722 0.4360 +8455 11238 0.4750 +8455 23295 0.9920 +8455 23632 0.4480 +8455 54878 0.4180 +8455 54891 0.4060 +8455 55266 0.4680 +8455 64773 0.4600 +8455 64924 0.4190 +8455 79908 0.6080 +8455 114804 0.7690 +8455 126147 0.4210 +8455 128710 0.4180 +8455 157567 0.7160 +8455 266727 0.4040 +8455 283652 0.4780 +8455 377677 0.4480 +8456 9241 0.4100 +8456 9247 0.7200 +8456 9355 0.4120 +8456 10279 0.5650 +8456 28514 0.4420 +8456 51151 0.4360 +8456 51176 0.4500 +8456 54361 0.6870 +8456 54567 0.6550 +8456 55079 0.4760 +8456 81029 0.8130 +8456 83942 0.6130 +8456 112802 0.4560 +8456 122706 0.6750 +8456 147409 0.4360 +8456 219793 0.4350 +8456 283652 0.4230 +8456 349633 0.5310 +8456 100526664 0.4390 +8458 8621 0.5460 +8458 8623 0.4780 +8458 8812 0.5430 +8458 8813 0.6350 +8458 8891 0.6330 +8458 8893 0.6280 +8458 9126 0.5090 +8458 9487 0.8120 +8458 9646 0.7500 +8458 10051 0.5500 +8458 10111 0.6790 +8458 10592 0.5620 +8458 10606 0.5840 +8458 10797 0.4530 +8458 10994 0.4260 +8458 11128 0.4700 +8458 11198 0.5810 +8458 11284 0.9370 +8458 22936 0.7200 +8458 23137 0.5020 +8458 23168 0.8040 +8458 23379 0.7220 +8458 23438 0.4060 +8458 25788 0.4160 +8458 25885 0.4880 +8458 25920 0.7240 +8458 26061 0.4260 +8458 26610 0.7320 +8458 26747 0.7270 +8458 27102 0.4010 +8458 27125 0.7220 +8458 27127 0.5020 +8458 27434 0.5140 +8458 29880 0.6290 +8458 29925 0.6260 +8458 29926 0.6230 +8458 29968 0.4660 +8458 51497 0.7590 +8458 51557 0.4050 +8458 51755 0.5610 +8458 54511 0.4920 +8458 54623 0.7240 +8458 54821 0.4350 +8458 55159 0.4850 +8458 55215 0.4210 +8458 55250 0.7330 +8458 55258 0.4370 +8458 55703 0.4270 +8458 55840 0.7200 +8458 63875 0.4200 +8458 64151 0.4570 +8458 79577 0.7460 +8458 79664 0.7590 +8458 79677 0.5440 +8458 79896 0.4420 +8458 79915 0.4010 +8458 80237 0.7220 +8458 80349 0.7620 +8458 81488 0.5930 +8458 81570 0.4970 +8458 83889 0.4040 +8458 84083 0.4270 +8458 84172 0.4780 +8458 84337 0.5580 +8458 84524 0.7240 +8458 85403 0.7200 +8458 122622 0.5970 +8458 123169 0.8200 +8458 132949 0.5710 +8458 144811 0.4020 +8458 162417 0.4080 +8458 201627 0.4320 +8458 283677 0.9370 +8458 348654 0.4010 +8458 440275 0.4350 +8458 441024 0.4320 +8459 9060 0.4600 +8459 9061 0.5940 +8459 10380 0.4640 +8459 23168 0.4290 +8459 27284 0.4530 +8459 50512 0.7680 +8459 64377 0.4210 +8459 80308 0.4180 +8459 123169 0.4790 +8459 125972 0.4900 +8459 136242 0.4780 +8459 204474 0.6170 +8459 285362 0.4250 +8459 338879 0.4930 +8459 347734 0.7250 +8459 402055 0.5150 +8460 9060 0.4050 +8460 9061 0.5110 +8460 10903 0.4020 +8460 23500 0.5200 +8460 50512 0.7670 +8460 51000 0.4090 +8460 51119 0.8080 +8460 55339 0.4600 +8460 123169 0.4790 +8460 126789 0.5080 +8460 222223 0.4170 +8460 347734 0.5300 +8462 8850 0.4850 +8462 9586 0.4050 +8462 23468 0.4280 +8462 24139 0.4840 +8462 25942 0.9710 +8462 26060 0.5740 +8462 29841 0.4820 +8462 51124 0.4460 +8462 57698 0.4040 +8462 222546 0.5190 +8463 8648 0.4450 +8463 8928 0.6040 +8463 9113 0.6580 +8463 9686 0.8820 +8463 10413 0.9990 +8463 25937 0.9950 +8463 26524 0.7070 +8463 27349 0.4100 +8463 30818 0.4400 +8463 51176 0.8370 +8463 51421 0.4460 +8463 51442 0.7070 +8463 55233 0.4420 +8463 60485 0.6160 +8463 79923 0.4640 +8463 83439 0.8400 +8463 84684 0.4130 +8463 254048 0.6070 +8463 344022 0.7820 +8464 8850 0.9990 +8464 9044 0.6040 +8464 9440 0.7670 +8464 9519 0.7290 +8464 9611 0.8020 +8464 9612 0.8020 +8464 9913 0.9990 +8464 9960 0.5420 +8464 9968 0.6720 +8464 9969 0.6210 +8464 10025 0.6210 +8464 10127 0.4460 +8464 10352 0.4340 +8464 10474 0.9990 +8464 10629 0.9990 +8464 10664 0.4420 +8464 11091 0.7310 +8464 22884 0.5270 +8464 23326 0.9950 +8464 23450 0.9870 +8464 25862 0.5460 +8464 26009 0.8450 +8464 27097 0.9990 +8464 27145 0.4020 +8464 27443 0.8400 +8464 51562 0.7800 +8464 51616 0.9950 +8464 54084 0.5730 +8464 54107 0.7200 +8464 54798 0.4910 +8464 54938 0.4950 +8464 55578 0.9990 +8464 55689 0.8960 +8464 55830 0.5430 +8464 56655 0.7200 +8464 56943 0.9930 +8464 56970 0.9940 +8464 57325 0.8120 +8464 79595 0.8520 +8464 83443 0.9740 +8464 84101 0.5480 +8464 84749 0.5460 +8464 93624 0.9990 +8464 112869 0.9990 +8464 113201 0.4060 +8464 117143 0.9990 +8464 127002 0.8420 +8464 129685 0.7690 +8464 138474 0.4280 +8464 158880 0.8160 +8464 222255 0.7830 +8464 374395 0.7890 +8464 387332 0.8820 +8464 389073 0.4160 +8464 389856 0.8650 +8464 399949 0.7240 +8464 644994 0.4180 +8464 653604 0.4150 +8464 100287513 0.5420 +8467 8520 0.5080 +8467 8607 0.8750 +8467 8653 0.4310 +8467 8661 0.4070 +8467 8726 0.5350 +8467 8815 0.6840 +8467 8819 0.6240 +8467 8841 0.4140 +8467 8850 0.7980 +8467 8932 0.6890 +8467 8969 0.8600 +8467 8970 0.9430 +8467 9013 0.5420 +8467 9014 0.5450 +8467 9015 0.5620 +8467 9031 0.9990 +8467 9044 0.6250 +8467 9112 0.6510 +8467 9126 0.7730 +8467 9188 0.9220 +8467 9189 0.6390 +8467 9203 0.5080 +8467 9219 0.6650 +8467 9320 0.4430 +8467 9401 0.4400 +8467 9533 0.7460 +8467 9555 0.6570 +8467 9584 0.5170 +8467 9611 0.6440 +8467 9646 0.5390 +8467 9656 0.6030 +8467 9738 0.5430 +8467 9739 0.4870 +8467 9774 0.4870 +8467 9775 0.4010 +8467 9810 0.4890 +8467 9869 0.5300 +8467 9908 0.5380 +8467 10042 0.9600 +8467 10051 0.4310 +8467 10146 0.5080 +8467 10155 0.6890 +8467 10284 0.6830 +8467 10393 0.4840 +8467 10514 0.9430 +8467 10524 0.5670 +8467 10592 0.4370 +8467 10664 0.7600 +8467 10847 0.4570 +8467 10849 0.5760 +8467 10856 0.7310 +8467 10914 0.4770 +8467 10919 0.4720 +8467 10933 0.5760 +8467 10943 0.4570 +8467 10951 0.7070 +8467 11044 0.4650 +8467 11091 0.4880 +8467 11128 0.7100 +8467 11143 0.4930 +8467 11169 0.4580 +8467 11176 0.9990 +8467 11177 0.9990 +8467 11198 0.7140 +8467 11201 0.5680 +8467 11335 0.8040 +8467 11339 0.5420 +8467 22803 0.5530 +8467 22823 0.5220 +8467 22828 0.4410 +8467 22893 0.4060 +8467 22933 0.5850 +8467 23028 0.4640 +8467 23047 0.4600 +8467 23091 0.5190 +8467 23168 0.4830 +8467 23186 0.4290 +8467 23195 0.4060 +8467 23244 0.5600 +8467 23269 0.6250 +8467 23309 0.7430 +8467 23378 0.4250 +8467 23394 0.5840 +8467 23405 0.4030 +8467 23411 0.6830 +8467 23435 0.4070 +8467 23451 0.9050 +8467 23468 0.4590 +8467 23476 0.8400 +8467 23512 0.6050 +8467 23598 0.4480 +8467 25836 0.5900 +8467 25842 0.4400 +8467 25885 0.7780 +8467 25942 0.9170 +8467 26013 0.5680 +8467 26043 0.4690 +8467 27068 0.4700 +8467 27343 0.4020 +8467 27434 0.4400 +8467 27443 0.9970 +8467 29063 0.5890 +8467 29072 0.4940 +8467 29115 0.6200 +8467 29117 0.5120 +8467 29128 0.5080 +8467 29994 0.9230 +8467 30834 0.5690 +8467 51082 0.5260 +8467 51147 0.5620 +8467 51340 0.4150 +8467 51412 0.4730 +8467 51433 0.4280 +8467 51547 0.6980 +8467 51548 0.8640 +8467 51592 0.4500 +8467 51663 0.4020 +8467 51742 0.6770 +8467 51759 0.4930 +8467 51773 0.9990 +8467 53615 0.5590 +8467 54069 0.5820 +8467 54107 0.9990 +8467 54108 0.9970 +8467 54145 0.7350 +8467 54514 0.4670 +8467 54556 0.6140 +8467 54606 0.4080 +8467 54617 0.4710 +8467 54737 0.4310 +8467 54815 0.5840 +8467 54882 0.6100 +8467 55023 0.4520 +8467 55193 0.8700 +8467 55320 0.5750 +8467 55355 0.5940 +8467 55506 0.4270 +8467 55636 0.6310 +8467 55660 0.5230 +8467 55703 0.4700 +8467 55726 0.5010 +8467 55766 0.6670 +8467 55814 0.4010 +8467 55869 0.4140 +8467 55929 0.5350 +8467 56254 0.6670 +8467 56655 0.6690 +8467 56852 0.5960 +8467 56916 0.6300 +8467 57459 0.4810 +8467 57492 0.4040 +8467 57504 0.4200 +8467 57621 0.4270 +8467 57680 0.5780 +8467 57697 0.5050 +8467 64425 0.5860 +8467 64426 0.6690 +8467 79101 0.5560 +8467 79577 0.5500 +8467 79595 0.5760 +8467 79685 0.5100 +8467 79913 0.4500 +8467 80205 0.4470 +8467 80854 0.4410 +8467 81620 0.7860 +8467 84172 0.7050 +8467 84181 0.4950 +8467 84444 0.4400 +8467 84640 0.4410 +8467 84661 0.7900 +8467 84950 0.6530 +8467 85236 0.9440 +8467 94239 0.7860 +8467 114799 0.4760 +8467 121504 0.9320 +8467 124245 0.4980 +8467 124944 0.9740 +8467 125476 0.5140 +8467 126961 0.9400 +8467 128312 0.7340 +8467 151987 0.5170 +8467 153527 0.4160 +8467 157570 0.4090 +8467 158983 0.4920 +8467 165918 0.5710 +8467 166752 0.5580 +8467 196528 0.4480 +8467 199699 0.4350 +8467 220988 0.4680 +8467 221830 0.5500 +8467 255626 0.7400 +8467 286436 0.4920 +8467 317772 0.5170 +8467 333932 0.9350 +8467 440093 0.8210 +8467 440686 0.8210 +8467 440689 0.4990 +8467 474381 0.4800 +8467 474382 0.7220 +8467 554313 0.9320 +8467 653604 0.9900 +8467 100529209 0.5400 +8467 100532731 0.4430 +8467 114483833 0.4920 +8468 8970 0.5650 +8468 9031 0.7090 +8468 9126 0.5710 +8468 9271 0.5390 +8468 9275 0.6260 +8468 9289 0.5480 +8468 9569 0.8360 +8468 9985 0.5920 +8468 10045 0.4210 +8468 10105 0.7500 +8468 10212 0.4360 +8468 10274 0.5190 +8468 10388 0.5400 +8468 10419 0.4050 +8468 10445 0.4280 +8468 10728 0.6510 +8468 10730 0.4900 +8468 10734 0.5870 +8468 10735 0.5190 +8468 10869 0.6880 +8468 10953 0.4550 +8468 11022 0.7270 +8468 11083 0.8120 +8468 11328 0.4810 +8468 23224 0.4990 +8468 23345 0.4990 +8468 23353 0.5350 +8468 23424 0.4040 +8468 23759 0.4600 +8468 23770 0.4440 +8468 25777 0.5350 +8468 25913 0.4990 +8468 26037 0.4030 +8468 26277 0.6150 +8468 26608 0.8070 +8468 26973 0.4390 +8468 27127 0.6100 +8468 29904 0.5560 +8468 30827 0.5860 +8468 50511 0.6610 +8468 51085 0.5940 +8468 51303 0.4540 +8468 51455 0.5450 +8468 51661 0.4720 +8468 54145 0.5650 +8468 54386 0.5190 +8468 54456 0.7790 +8468 54514 0.6580 +8468 55011 0.5740 +8468 55033 0.6070 +8468 55124 0.7180 +8468 55664 0.5290 +8468 55695 0.7480 +8468 55766 0.5500 +8468 56158 0.6270 +8468 56165 0.7200 +8468 56979 0.4520 +8468 63943 0.4180 +8468 79607 0.4020 +8468 80279 0.8320 +8468 84163 0.5170 +8468 84445 0.5640 +8468 84944 0.7180 +8468 85236 0.5650 +8468 85313 0.8380 +8468 90025 0.4030 +8468 91603 0.4650 +8468 91646 0.7570 +8468 93426 0.6680 +8468 94239 0.5510 +8468 113802 0.5390 +8468 121355 0.5600 +8468 122402 0.7540 +8468 128312 0.5650 +8468 135886 0.4130 +8468 135892 0.7820 +8468 136991 0.7800 +8468 143689 0.7220 +8468 161829 0.5800 +8468 163589 0.5670 +8468 169792 0.4030 +8468 200958 0.4680 +8468 201164 0.6180 +8468 222183 0.4240 +8468 255626 0.5650 +8468 256126 0.5930 +8468 339834 0.5040 +8468 378884 0.4270 +8468 389524 0.5180 +8468 474382 0.5510 +8468 644186 0.5530 +8470 8667 0.4220 +8470 8754 0.4940 +8470 8867 0.5860 +8470 8936 0.5750 +8470 9229 0.4180 +8470 10211 0.6430 +8470 10580 0.6460 +8470 10611 0.6830 +8470 22839 0.4640 +8470 23022 0.7090 +8470 23433 0.4320 +8470 25759 0.7190 +8470 25854 0.5280 +8470 27295 0.7060 +8470 51534 0.7820 +8470 53342 0.4810 +8470 55578 0.4030 +8470 58189 0.5900 +8470 83891 0.4370 +8470 219902 0.4120 +8470 391189 0.4260 +8471 8503 0.9750 +8471 8517 0.9030 +8471 8651 0.9130 +8471 8660 0.9830 +8471 8776 0.4420 +8471 8835 0.9240 +8471 9021 0.9170 +8471 9306 0.6800 +8471 9365 0.9120 +8471 10888 0.9000 +8471 11180 0.4810 +8471 11188 0.6040 +8471 23533 0.9180 +8471 26499 0.5470 +8471 30012 0.4250 +8471 30837 0.7150 +8471 51666 0.6410 +8471 54434 0.4510 +8471 54551 0.4810 +8471 55715 0.6210 +8471 55816 0.6610 +8471 59336 0.4760 +8471 83541 0.4720 +8471 83550 0.5440 +8471 84524 0.4200 +8471 85376 0.4550 +8471 122809 0.9690 +8471 126204 0.4470 +8471 146850 0.9000 +8471 147179 0.4150 +8471 147991 0.4300 +8471 149041 0.5100 +8471 150221 0.4560 +8471 387882 0.5550 +8471 389333 0.4200 +8471 440804 0.4560 +8471 648791 0.4210 +8471 102723796 0.7200 +8473 8502 0.4210 +8473 8503 0.9000 +8473 8607 0.7350 +8473 8725 0.4160 +8473 8737 0.7700 +8473 8819 0.7200 +8473 8945 0.6170 +8473 9070 0.6710 +8473 9342 0.6150 +8473 9439 0.4120 +8473 9623 0.4830 +8473 9656 0.4600 +8473 9739 0.8080 +8473 9945 0.7110 +8473 10000 0.9100 +8473 10018 0.4080 +8473 10056 0.4870 +8473 10062 0.9030 +8473 10075 0.5800 +8473 10181 0.4360 +8473 10360 0.4100 +8473 10445 0.9900 +8473 10454 0.6340 +8473 10456 0.4360 +8473 10488 0.5980 +8473 10498 0.5610 +8473 10524 0.8370 +8473 10531 0.5050 +8473 10724 0.9850 +8473 10856 0.7480 +8473 10891 0.9240 +8473 10902 0.7420 +8473 10933 0.7800 +8473 10943 0.7700 +8473 11019 0.4510 +8473 11035 0.7760 +8473 11091 0.9810 +8473 11338 0.4300 +8473 22877 0.9140 +8473 22906 0.9630 +8473 22926 0.4990 +8473 23133 0.4060 +8473 23235 0.4220 +8473 23291 0.5990 +8473 23309 0.6660 +8473 23373 0.5480 +8473 23468 0.4150 +8473 23564 0.4750 +8473 23636 0.6950 +8473 25855 0.5570 +8473 25942 0.9600 +8473 25957 0.5830 +8473 26122 0.7200 +8473 29855 0.7340 +8473 29915 0.7970 +8473 30827 0.5310 +8473 51085 0.9260 +8473 51105 0.6140 +8473 51230 0.9580 +8473 51412 0.5920 +8473 51742 0.7620 +8473 54187 0.4240 +8473 54542 0.4280 +8473 54556 0.7680 +8473 54790 0.9850 +8473 54799 0.7650 +8473 54830 0.7060 +8473 54934 0.9780 +8473 55082 0.5060 +8473 55167 0.7370 +8473 55252 0.9370 +8473 55257 0.7360 +8473 55269 0.6420 +8473 55683 0.9910 +8473 55689 0.5790 +8473 55777 0.5850 +8473 55904 0.6230 +8473 55929 0.7440 +8473 57215 0.4700 +8473 57396 0.4430 +8473 57634 0.7550 +8473 57649 0.6030 +8473 58508 0.4330 +8473 58516 0.7940 +8473 64426 0.7800 +8473 64769 0.7220 +8473 64841 0.4540 +8473 66008 0.8630 +8473 79595 0.5720 +8473 79685 0.5400 +8473 80012 0.4160 +8473 80312 0.9500 +8473 80314 0.7220 +8473 80319 0.5880 +8473 80335 0.4450 +8473 80816 0.4290 +8473 83591 0.6850 +8473 84148 0.9370 +8473 84312 0.5770 +8473 90326 0.6600 +8473 114785 0.4120 +8473 122616 0.5940 +8473 151050 0.5420 +8473 171023 0.9820 +8473 196441 0.4090 +8473 200186 0.9630 +8473 200424 0.9750 +8473 221302 0.4710 +8473 221656 0.8850 +8473 221937 0.9710 +8473 284058 0.9170 +8473 285203 0.9710 +8473 339287 0.7390 +8473 345651 0.5530 +8473 100507679 0.4640 +8476 8556 0.5140 +8476 8773 0.4610 +8476 8826 0.5710 +8476 8874 0.5600 +8476 8976 0.6890 +8476 9002 0.4020 +8476 9322 0.5200 +8476 9341 0.4190 +8476 9497 0.4040 +8476 9578 0.7190 +8476 9794 0.4310 +8476 9815 0.4190 +8476 10298 0.5330 +8476 10398 0.7740 +8476 10458 0.4050 +8476 10627 0.4760 +8476 10801 0.4640 +8476 11060 0.4280 +8476 11135 0.5120 +8476 23048 0.4400 +8476 23075 0.4170 +8476 23433 0.7820 +8476 23509 0.4040 +8476 23513 0.5240 +8476 25894 0.4800 +8476 27289 0.5120 +8476 28964 0.4820 +8476 51341 0.4070 +8476 54509 0.4400 +8476 54776 0.7200 +8476 54874 0.4940 +8476 55004 0.4200 +8476 55240 0.4590 +8476 55789 0.4160 +8476 55924 0.4570 +8476 57381 0.6930 +8476 64800 0.4720 +8476 80895 0.4670 +8476 81624 0.5980 +8476 81839 0.4240 +8476 83481 0.5220 +8476 83648 0.4800 +8476 91010 0.4690 +8476 103910 0.5280 +8476 128239 0.4540 +8476 143098 0.5080 +8476 144402 0.4010 +8476 147179 0.4160 +8476 152273 0.4260 +8476 197335 0.4510 +8476 200894 0.4040 +8476 286343 0.4700 +8476 399687 0.7200 +8476 541468 0.9890 +8477 8622 0.4550 +8477 8997 0.4990 +8477 9311 0.6080 +8477 9450 0.4020 +8477 9535 0.4240 +8477 9595 0.4800 +8477 10261 0.4790 +8477 10800 0.4680 +8477 11250 0.4130 +8477 23236 0.5020 +8477 25802 0.4290 +8477 26191 0.5070 +8477 29909 0.4510 +8477 29933 0.6030 +8477 53831 0.4580 +8477 55515 0.4510 +8477 57105 0.4470 +8477 64092 0.5460 +8477 64407 0.4600 +8477 115557 0.4990 +8477 117289 0.5350 +8477 134391 0.4200 +8479 9344 0.6050 +8479 9377 0.4820 +8479 10423 0.5860 +8479 11151 0.4890 +8479 23468 0.4570 +8479 23475 0.5840 +8479 25842 0.4340 +8479 26470 0.7050 +8479 79153 0.6010 +8479 79447 0.7040 +8479 83719 0.6470 +8479 83723 0.5100 +8479 84886 0.4580 +8479 85236 0.5480 +8479 112476 0.5800 +8479 124446 0.6080 +8479 146378 0.6020 +8479 253980 0.6550 +8479 253982 0.6930 +8479 283897 0.6640 +8479 283899 0.6500 +8479 389158 0.4110 +8479 653808 0.5700 +8480 8487 0.4410 +8480 8498 0.4170 +8480 8563 0.7690 +8480 8655 0.4700 +8480 8683 0.4960 +8480 8888 0.7150 +8480 9128 0.4430 +8480 9133 0.4750 +8480 9172 0.5370 +8480 9184 0.6910 +8480 9212 0.5040 +8480 9232 0.6820 +8480 9295 0.4280 +8480 9631 0.9340 +8480 9688 0.9370 +8480 9759 0.4260 +8480 9775 0.8150 +8480 9785 0.5000 +8480 9818 0.8110 +8480 9877 0.4840 +8480 9883 0.8490 +8480 9939 0.6340 +8480 9972 0.9750 +8480 9973 0.4610 +8480 9984 0.8420 +8480 10073 0.4140 +8480 10189 0.9420 +8480 10193 0.4250 +8480 10204 0.7040 +8480 10212 0.7260 +8480 10213 0.4130 +8480 10250 0.7600 +8480 10482 0.9980 +8480 10526 0.4240 +8480 10569 0.4330 +8480 10744 0.6770 +8480 10762 0.9160 +8480 10783 0.4220 +8480 10898 0.6160 +8480 10921 0.8390 +8480 10982 0.8080 +8480 11097 0.9640 +8480 11100 0.9170 +8480 11113 0.5030 +8480 11140 0.4840 +8480 11218 0.5440 +8480 11260 0.7110 +8480 11338 0.5160 +8480 22794 0.5840 +8480 22824 0.4370 +8480 22914 0.8630 +8480 22916 0.7970 +8480 23077 0.6650 +8480 23165 0.9190 +8480 23225 0.8650 +8480 23279 0.7350 +8480 23353 0.4540 +8480 23511 0.8780 +8480 23517 0.4230 +8480 23636 0.8740 +8480 25909 0.4180 +8480 25929 0.4770 +8480 26097 0.6070 +8480 26986 0.8060 +8480 27161 0.5200 +8480 29107 0.8940 +8480 29855 0.5940 +8480 29890 0.8930 +8480 29894 0.4090 +8480 29901 0.4270 +8480 50628 0.4160 +8480 51031 0.4160 +8480 51068 0.5380 +8480 51182 0.4650 +8480 51213 0.4960 +8480 51362 0.4160 +8480 51501 0.5170 +8480 51585 0.5940 +8480 51692 0.6080 +8480 51808 0.6240 +8480 53371 0.9160 +8480 53981 0.4510 +8480 54457 0.4290 +8480 54596 0.5310 +8480 54830 0.4710 +8480 54840 0.7810 +8480 54954 0.4320 +8480 54960 0.4280 +8480 55109 0.4260 +8480 55110 0.8250 +8480 55143 0.4560 +8480 55161 0.4160 +8480 55294 0.6220 +8480 55339 0.5220 +8480 55677 0.4620 +8480 55706 0.8330 +8480 55746 0.8640 +8480 55795 0.7120 +8480 56000 0.9620 +8480 56001 0.7430 +8480 56157 0.4130 +8480 56943 0.6380 +8480 56970 0.4610 +8480 57019 0.5340 +8480 57122 0.8690 +8480 57187 0.9140 +8480 57727 0.7230 +8480 64768 0.4640 +8480 64783 0.7140 +8480 65109 0.6330 +8480 79023 0.6600 +8480 79228 0.7380 +8480 79711 0.4720 +8480 79760 0.4500 +8480 79833 0.4140 +8480 79882 0.6190 +8480 79902 0.9590 +8480 80145 0.6910 +8480 81608 0.4500 +8480 81929 0.9640 +8480 84248 0.6540 +8480 84271 0.7680 +8480 84321 0.7460 +8480 84324 0.7690 +8480 84955 0.6360 +8480 91754 0.5390 +8480 116835 0.4310 +8480 129401 0.9310 +8480 140609 0.4140 +8480 163859 0.4050 +8480 199746 0.4130 +8480 200933 0.4470 +8480 221150 0.4650 +8480 259217 0.4310 +8480 283987 0.4050 +8480 348995 0.8790 +8480 728343 0.9730 +8480 729857 0.4270 +8480 100101267 0.8500 +8481 8655 0.7000 +8481 8701 0.5310 +8481 8766 0.6310 +8481 8801 0.6490 +8481 9221 0.7120 +8481 9367 0.4720 +8481 9371 0.4080 +8481 9657 0.8140 +8481 9662 0.7430 +8481 9696 0.6110 +8481 9738 0.6670 +8481 9742 0.4810 +8481 9776 0.5010 +8481 9786 0.6900 +8481 9821 0.5020 +8481 9851 0.8980 +8481 9857 0.5010 +8481 9859 0.4680 +8481 10013 0.7520 +8481 10133 0.6410 +8481 10211 0.4380 +8481 10309 0.4580 +8481 10464 0.7160 +8481 10528 0.5740 +8481 10733 0.5770 +8481 10806 0.9760 +8481 11020 0.4210 +8481 11116 0.5110 +8481 11127 0.7120 +8481 11190 0.4210 +8481 11337 0.6920 +8481 11345 0.5470 +8481 22832 0.5530 +8481 22897 0.7330 +8481 22919 0.5060 +8481 22981 0.6760 +8481 22994 0.8520 +8481 22995 0.4860 +8481 23093 0.5180 +8481 23322 0.8660 +8481 23354 0.5410 +8481 23639 0.4730 +8481 23710 0.5530 +8481 26005 0.8210 +8481 26121 0.4460 +8481 26123 0.6580 +8481 26160 0.8600 +8481 27019 0.4840 +8481 27031 0.6120 +8481 27077 0.5540 +8481 27130 0.7020 +8481 49856 0.5100 +8481 51098 0.4440 +8481 51134 0.6620 +8481 51199 0.7980 +8481 51259 0.8750 +8481 51314 0.4360 +8481 51524 0.5820 +8481 51684 0.5550 +8481 54768 0.4380 +8481 54801 0.5650 +8481 54806 0.8760 +8481 54820 0.9820 +8481 54875 0.5880 +8481 54903 0.6100 +8481 54919 0.4970 +8481 54930 0.4990 +8481 54986 0.4260 +8481 55036 0.5050 +8481 55081 0.4620 +8481 55125 0.5620 +8481 55142 0.5340 +8481 55172 0.4250 +8481 55212 0.5550 +8481 55239 0.4070 +8481 55559 0.5280 +8481 55722 0.6780 +8481 55755 0.6380 +8481 55764 0.5000 +8481 55835 0.7500 +8481 56623 0.4290 +8481 57096 0.4900 +8481 57216 0.6320 +8481 57534 0.6250 +8481 57536 0.4700 +8481 57545 0.8770 +8481 57560 0.5190 +8481 57562 0.4170 +8481 57728 0.5130 +8481 64446 0.4440 +8481 64770 0.8590 +8481 64793 0.6130 +8481 65062 0.6190 +8481 65250 0.7010 +8481 79441 0.5390 +8481 79583 0.6260 +8481 79598 0.5640 +8481 79600 0.6100 +8481 79659 0.5230 +8481 79738 0.4520 +8481 79809 0.5370 +8481 79848 0.7200 +8481 79866 0.5250 +8481 79867 0.6210 +8481 79959 0.4570 +8481 80173 0.4340 +8481 80184 0.9010 +8481 80776 0.5190 +8481 81565 0.5110 +8481 81631 0.6000 +8481 83479 0.5200 +8481 84131 0.4400 +8481 84140 0.5220 +8481 84318 0.5330 +8481 84902 0.6260 +8481 85302 0.5840 +8481 85444 0.4360 +8481 85459 0.6270 +8481 85478 0.4900 +8481 89765 0.4150 +8481 89891 0.4490 +8481 90410 0.6800 +8481 91147 0.8110 +8481 91754 0.4940 +8481 93233 0.4350 +8481 93323 0.5610 +8481 93594 0.5970 +8481 95681 0.6020 +8481 115106 0.5470 +8481 116840 0.5390 +8481 117177 0.6900 +8481 117178 0.6800 +8481 121441 0.6250 +8481 123811 0.9160 +8481 123872 0.4870 +8481 130557 0.4320 +8481 132320 0.6700 +8481 134359 0.5470 +8481 140735 0.5210 +8481 145508 0.4900 +8481 146057 0.5060 +8481 152185 0.5150 +8481 153241 0.6720 +8481 157657 0.6190 +8481 161582 0.4270 +8481 163786 0.5170 +8481 165055 0.5480 +8481 166379 0.4230 +8481 167691 0.8540 +8481 197335 0.5300 +8481 200894 0.8660 +8481 201255 0.4150 +8481 219844 0.4800 +8481 221322 0.5290 +8481 221421 0.4730 +8481 261734 0.6430 +8481 282809 0.4670 +8481 284086 0.5650 +8481 339829 0.4470 +8481 343099 0.5780 +8481 345895 0.5220 +8481 346007 0.4090 +8481 347240 0.4260 +8481 352909 0.4730 +8481 374654 0.6460 +8481 388389 0.4560 +8481 388939 0.4400 +8481 728642 0.5480 +8481 729440 0.5270 +8481 100129239 0.6700 +8482 8828 0.6180 +8482 8829 0.7690 +8482 9394 0.4110 +8482 10154 0.9990 +8482 23129 0.6550 +8482 23654 0.5610 +8482 26012 0.4450 +8482 51206 0.4690 +8482 55558 0.7310 +8482 83660 0.4460 +8482 83700 0.4460 +8482 84993 0.5150 +8482 91584 0.7550 +8482 128674 0.4320 +8483 8839 0.4030 +8483 9358 0.5170 +8483 10216 0.5320 +8483 10218 0.4560 +8483 10631 0.4260 +8483 26577 0.4170 +8483 54829 0.8800 +8483 55118 0.4660 +8483 64094 0.4550 +8484 8811 0.9390 +8484 8862 0.5740 +8484 9283 0.5010 +8484 10316 0.6690 +8484 10874 0.5510 +8484 23464 0.9000 +8484 26086 0.4250 +8484 29899 0.4450 +8484 51083 0.9990 +8484 56923 0.5140 +8484 63940 0.4100 +8484 80763 0.8830 +8484 84539 0.5200 +8484 85569 0.8150 +8484 129521 0.5250 +8484 256933 0.5320 +8484 283869 0.5140 +8487 8570 0.5760 +8487 8882 0.6550 +8487 9221 0.4710 +8487 9631 0.4570 +8487 9688 0.4290 +8487 9818 0.4370 +8487 9883 0.4580 +8487 9972 0.5060 +8487 10073 0.8060 +8487 10236 0.8200 +8487 10284 0.4210 +8487 10419 0.6500 +8487 10492 0.7220 +8487 10762 0.4210 +8487 11097 0.4280 +8487 11157 0.5060 +8487 11168 0.4210 +8487 11171 0.9990 +8487 11218 0.9990 +8487 22916 0.6600 +8487 23165 0.4590 +8487 23225 0.4250 +8487 23279 0.4260 +8487 23511 0.4440 +8487 23636 0.5080 +8487 23658 0.4130 +8487 25929 0.9990 +8487 26747 0.4280 +8487 27161 0.6940 +8487 27257 0.5450 +8487 27316 0.5360 +8487 50628 0.9990 +8487 51808 0.8330 +8487 53371 0.4310 +8487 54433 0.5960 +8487 54960 0.9990 +8487 55135 0.4120 +8487 55308 0.4340 +8487 55706 0.4360 +8487 55746 0.4180 +8487 56852 0.4530 +8487 57122 0.4670 +8487 57819 0.4240 +8487 79023 0.5470 +8487 79084 0.6050 +8487 79723 0.5060 +8487 79760 0.9990 +8487 79833 0.9990 +8487 79902 0.4150 +8487 81929 0.4430 +8487 84967 0.6910 +8487 96764 0.7000 +8487 113802 0.4270 +8487 124245 0.4060 +8487 129401 0.5330 +8487 192669 0.4280 +8487 192670 0.4680 +8487 284131 0.4760 +8487 348995 0.4470 +8487 100101267 0.4700 +8490 8601 0.5410 +8490 8786 0.5400 +8490 8787 0.5160 +8490 8801 0.8460 +8490 8802 0.6730 +8490 9138 0.7750 +8490 9170 0.5060 +8490 9628 0.5300 +8490 9630 0.6380 +8490 9826 0.7790 +8490 10287 0.5630 +8490 10316 0.4990 +8490 10636 0.5400 +8490 10672 0.7570 +8490 10681 0.9440 +8490 10874 0.4990 +8490 11216 0.6470 +8490 23161 0.4710 +8490 23365 0.5910 +8490 23557 0.4180 +8490 23566 0.5110 +8490 26499 0.6520 +8490 26575 0.5520 +8490 51573 0.4810 +8490 51705 0.4760 +8490 51764 0.5180 +8490 54331 0.5260 +8490 55970 0.5420 +8490 56923 0.4990 +8490 57121 0.5050 +8490 57231 0.4450 +8490 59345 0.6440 +8490 60626 0.5190 +8490 64407 0.5470 +8490 83891 0.4060 +8490 84539 0.4990 +8490 85397 0.5300 +8490 94235 0.5180 +8490 115557 0.6810 +8490 129521 0.4990 +8490 346562 0.6570 +8490 353299 0.7640 +8490 388531 0.4620 +8490 401190 0.7030 +8490 431704 0.5430 +8491 10325 0.4590 +8491 11183 0.6730 +8491 23677 0.4390 +8491 25873 0.5940 +8491 28988 0.8980 +8491 58528 0.4620 +8491 64121 0.6970 +8491 65003 0.6270 +8491 79772 0.4640 +8491 90141 0.5110 +8491 124152 0.4560 +8491 253430 0.5750 +8491 389421 0.5950 +8492 10072 0.4510 +8492 11173 0.4040 +8492 51185 0.8460 +8492 54862 0.9090 +8492 85445 0.4050 +8492 127833 0.4600 +8492 285489 0.4630 +8492 375790 0.7490 +8492 643394 0.4110 +8493 9025 0.4090 +8493 9282 0.4170 +8493 9412 0.4180 +8493 9443 0.4070 +8493 9656 0.4700 +8493 9821 0.4400 +8493 10273 0.4460 +8493 10309 0.4520 +8493 10513 0.9000 +8493 11200 0.9180 +8493 26118 0.4600 +8493 27244 0.4520 +8493 51003 0.4400 +8493 54790 0.5790 +8493 55181 0.5100 +8493 57144 0.4010 +8493 57460 0.4440 +8493 63035 0.4880 +8493 64393 0.4250 +8493 80279 0.4600 +8493 93100 0.4230 +8493 123263 0.4360 +8493 132160 0.5260 +8493 171023 0.6210 +8493 441531 0.4150 +8495 8496 0.6700 +8495 8497 0.8050 +8495 8499 0.8460 +8495 8500 0.8550 +8495 8541 0.8150 +8495 10732 0.5740 +8495 23254 0.5470 +8495 23426 0.5700 +8495 55239 0.4150 +8495 79583 0.4170 +8495 92399 0.4250 +8495 392465 0.4720 +8495 497189 0.4170 +8496 8497 0.8130 +8496 8499 0.8530 +8496 8500 0.9210 +8496 8541 0.8550 +8496 8655 0.4770 +8496 8878 0.5580 +8496 9451 0.5380 +8496 9648 0.5470 +8496 10342 0.6100 +8496 10817 0.4990 +8496 10818 0.4990 +8496 22872 0.7340 +8496 23085 0.7480 +8496 23189 0.6850 +8496 23254 0.5580 +8496 23426 0.5450 +8496 25959 0.7820 +8496 27436 0.6820 +8496 51768 0.4120 +8496 53335 0.5000 +8496 55605 0.6300 +8496 57448 0.5470 +8496 80304 0.6220 +8496 84668 0.4120 +8496 85440 0.4530 +8496 90102 0.4700 +8496 114825 0.5210 +8496 145567 0.4250 +8497 8499 0.4610 +8497 8500 0.4320 +8497 8541 0.4860 +8497 8573 0.5740 +8497 8825 0.6660 +8497 9256 0.6640 +8497 9699 0.5400 +8497 9815 0.4110 +8497 9957 0.4870 +8497 10497 0.6520 +8497 10815 0.5750 +8497 22999 0.6840 +8497 23085 0.5100 +8497 23504 0.4070 +8497 26059 0.5930 +8497 28964 0.7740 +8497 55327 0.5890 +8497 57030 0.5750 +8497 64130 0.6580 +8497 127845 0.4050 +8498 8888 0.4770 +8498 9328 0.4540 +8498 9513 0.4370 +8498 9567 0.4390 +8498 9701 0.4350 +8498 9785 0.4490 +8498 9972 0.6190 +8498 10073 0.4560 +8498 10204 0.4310 +8498 10421 0.4500 +8498 10762 0.5220 +8498 23039 0.6030 +8498 23192 0.5420 +8498 23214 0.5240 +8498 23225 0.4060 +8498 23636 0.6490 +8498 23644 0.5650 +8498 23759 0.4610 +8498 26133 0.5190 +8498 26953 0.4820 +8498 29107 0.5290 +8498 30827 0.5410 +8498 51593 0.5430 +8498 55627 0.5170 +8498 57610 0.5680 +8498 57805 0.9250 +8498 60626 0.4690 +8498 64328 0.6540 +8498 64901 0.4370 +8498 79711 0.5150 +8498 79869 0.4390 +8498 118812 0.5470 +8498 121536 0.4040 +8498 137964 0.4430 +8498 171017 0.5020 +8498 729857 0.4430 +8499 8500 0.5760 +8499 8541 0.5660 +8499 8573 0.9710 +8499 8825 0.8330 +8499 8927 0.4450 +8499 9256 0.6680 +8499 9378 0.5660 +8499 9379 0.4910 +8499 9699 0.6990 +8499 9815 0.4840 +8499 10497 0.7100 +8499 10815 0.6300 +8499 22999 0.8690 +8499 23025 0.6450 +8499 23085 0.7660 +8499 23162 0.4430 +8499 23426 0.5550 +8499 23504 0.5140 +8499 26059 0.6240 +8499 28964 0.8600 +8499 55327 0.6400 +8499 57030 0.6540 +8499 57524 0.4850 +8499 64130 0.6770 +8499 79611 0.4800 +8499 80852 0.4910 +8499 84144 0.4020 +8499 85360 0.4230 +8499 114798 0.4720 +8500 8541 0.5440 +8500 8573 0.6880 +8500 8727 0.4890 +8500 8772 0.4380 +8500 8825 0.6500 +8500 8927 0.4180 +8500 9256 0.6500 +8500 9378 0.4580 +8500 9379 0.4530 +8500 9699 0.5140 +8500 9815 0.7280 +8500 10497 0.9280 +8500 10815 0.6220 +8500 11129 0.7880 +8500 22941 0.4860 +8500 22999 0.7890 +8500 23025 0.4280 +8500 23085 0.9870 +8500 23162 0.6130 +8500 23189 0.6690 +8500 23426 0.9130 +8500 23499 0.4890 +8500 23774 0.5150 +8500 26059 0.7280 +8500 26115 0.5000 +8500 26579 0.4320 +8500 28964 0.9310 +8500 51147 0.8910 +8500 55107 0.4560 +8500 55327 0.5990 +8500 55605 0.5830 +8500 57030 0.5890 +8500 57524 0.4050 +8500 64130 0.6490 +8500 64397 0.4550 +8500 80852 0.5830 +8500 83660 0.5440 +8500 84687 0.5140 +8500 84708 0.4760 +8500 85021 0.5360 +8500 90102 0.9050 +8500 94030 0.4040 +8500 144165 0.4760 +8500 200081 0.4310 +8500 220064 0.7550 +8500 260293 0.5880 +8500 283576 0.4360 +8500 285782 0.4570 +8500 374654 0.4300 +8501 9056 0.4610 +8501 9057 0.6500 +8501 11136 0.4600 +8501 23428 0.9440 +8501 23657 0.4050 +8501 54407 0.5450 +8501 55117 0.4890 +8501 56731 0.4480 +8501 81539 0.5060 +8501 92745 0.4320 +8501 117247 0.4990 +8501 206358 0.4100 +8501 340024 0.4090 +8501 353174 0.4930 +8502 9201 0.4670 +8502 9371 0.7400 +8502 9869 0.4260 +8502 10009 0.6130 +8502 11187 0.5870 +8502 22998 0.4060 +8502 23037 0.9560 +8502 23513 0.4580 +8502 25829 0.4800 +8502 27289 0.6140 +8502 29087 0.4070 +8502 29119 0.7000 +8502 55715 0.4270 +8502 55914 0.9350 +8502 56339 0.4060 +8502 57554 0.7180 +8502 64065 0.6440 +8502 79026 0.5040 +8502 84959 0.4570 +8502 91647 0.5720 +8502 126638 0.5070 +8502 143162 0.8030 +8502 147409 0.5570 +8502 201163 0.6360 +8503 8651 0.7150 +8503 8660 0.9720 +8503 8678 0.5850 +8503 8776 0.6640 +8503 8821 0.9250 +8503 8826 0.4190 +8503 8835 0.5570 +8503 8867 0.6730 +8503 8871 0.6900 +8503 8897 0.6610 +8503 8898 0.7070 +8503 9021 0.5590 +8503 9047 0.6850 +8503 9048 0.4990 +8503 9107 0.6580 +8503 9108 0.6500 +8503 9110 0.6650 +8503 9306 0.7860 +8503 9342 0.4240 +8503 9630 0.5140 +8503 9655 0.5930 +8503 9815 0.4030 +8503 9846 0.9100 +8503 10000 0.9730 +8503 10006 0.4570 +8503 10048 0.4290 +8503 10152 0.4300 +8503 10163 0.4540 +8503 10298 0.4520 +8503 10423 0.9030 +8503 10451 0.9070 +8503 10589 0.4610 +8503 10681 0.6740 +8503 10787 0.4350 +8503 10870 0.9090 +8503 10938 0.4270 +8503 10989 0.5060 +8503 11188 0.5010 +8503 22800 0.7070 +8503 22808 0.9100 +8503 22863 0.5770 +8503 22876 0.9000 +8503 23191 0.4300 +8503 23236 0.8000 +8503 23308 0.4990 +8503 23396 0.9220 +8503 23528 0.4280 +8503 23533 0.9810 +8503 23769 0.6080 +8503 26499 0.4310 +8503 27436 0.9000 +8503 28964 0.4030 +8503 29760 0.5330 +8503 29851 0.9140 +8503 30837 0.5560 +8503 30849 0.7000 +8503 51196 0.6500 +8503 51206 0.5100 +8503 51347 0.4190 +8503 51562 0.4280 +8503 51764 0.6560 +8503 54331 0.6930 +8503 54413 0.6190 +8503 55300 0.9190 +8503 55361 0.9240 +8503 55529 0.9020 +8503 55613 0.6500 +8503 55697 0.5440 +8503 55845 0.4910 +8503 55914 0.4300 +8503 55970 0.7050 +8503 55971 0.4090 +8503 56623 0.6770 +8503 57580 0.9070 +8503 59345 0.6930 +8503 64096 0.4990 +8503 64419 0.6620 +8503 64599 0.4220 +8503 64857 0.5560 +8503 79837 0.9240 +8503 81839 0.4350 +8503 84174 0.5670 +8503 84456 0.4410 +8503 84634 0.9000 +8503 84812 0.6590 +8503 84868 0.4200 +8503 84941 0.4210 +8503 84957 0.5960 +8503 89869 0.6500 +8503 90809 0.9000 +8503 94235 0.6500 +8503 113026 0.6500 +8503 116362 0.4200 +8503 118788 0.9230 +8503 120939 0.6190 +8503 122809 0.7380 +8503 143098 0.4010 +8503 146850 0.9670 +8503 200576 0.9120 +8503 441925 0.5450 +8503 110117498 0.5480 +8504 8540 0.8570 +8504 8542 0.7200 +8504 8799 0.9490 +8504 8800 0.8630 +8504 9409 0.9950 +8504 9779 0.4040 +8504 9804 0.4060 +8504 10059 0.5610 +8504 10313 0.4600 +8504 10478 0.8010 +8504 11231 0.6020 +8504 11264 0.6430 +8504 11345 0.4170 +8504 23197 0.4280 +8504 23710 0.6370 +8504 26061 0.4850 +8504 29927 0.5870 +8504 51015 0.4460 +8504 51024 0.8160 +8504 51449 0.7220 +8504 51555 0.9100 +8504 51599 0.5430 +8504 54332 0.5430 +8504 54708 0.5390 +8504 55062 0.5090 +8504 55670 0.9710 +8504 55825 0.4350 +8504 55829 0.7220 +8504 55911 0.5400 +8504 55937 0.7220 +8504 56947 0.4490 +8504 60560 0.4400 +8504 79135 0.5490 +8504 79777 0.4550 +8504 84188 0.4810 +8504 84896 0.7260 +8504 91298 0.4450 +8504 91452 0.8100 +8504 92960 0.6400 +8504 116519 0.9020 +8504 134637 0.4390 +8504 196743 0.4630 +8504 222234 0.4280 +8504 100528017 0.5400 +8505 8658 0.6740 +8505 8732 0.5320 +8505 8914 0.4150 +8505 9131 0.8070 +8505 9156 0.4030 +8505 9411 0.8630 +8505 9513 0.4480 +8505 9555 0.5660 +8505 9557 0.5310 +8505 10001 0.5860 +8505 10038 0.9800 +8505 10039 0.8190 +8505 10459 0.5140 +8505 10899 0.4310 +8505 11164 0.7600 +8505 11284 0.6480 +8505 22976 0.4070 +8505 23435 0.5680 +8505 24137 0.5570 +8505 25976 0.4490 +8505 28992 0.8220 +8505 30849 0.4480 +8505 53343 0.6620 +8505 54625 0.6230 +8505 54834 0.5730 +8505 54840 0.5790 +8505 54936 0.8750 +8505 54956 0.5950 +8505 54969 0.7060 +8505 55703 0.5660 +8505 55743 0.4630 +8505 56829 0.6100 +8505 56946 0.4190 +8505 56965 0.4670 +8505 57097 0.4710 +8505 64761 0.5960 +8505 64802 0.4720 +8505 79661 0.4100 +8505 79728 0.4060 +8505 79915 0.4440 +8505 80067 0.4510 +8505 80351 0.6340 +8505 81847 0.6270 +8505 83666 0.5660 +8505 83707 0.4870 +8505 84875 0.6210 +8505 90113 0.4180 +8505 116969 0.8810 +8505 127731 0.4180 +8505 131870 0.6170 +8505 140733 0.7780 +8505 165631 0.6330 +8505 200558 0.6330 +8505 221443 0.7790 +8505 389677 0.4690 +8505 389799 0.4090 +8506 8514 0.6850 +8506 8540 0.4270 +8506 9211 0.5770 +8506 9378 0.4220 +8506 9379 0.4280 +8506 10207 0.5580 +8506 10211 0.7620 +8506 10215 0.5330 +8506 22871 0.4100 +8506 23092 0.5760 +8506 23114 0.9990 +8506 51133 0.4100 +8506 53616 0.4100 +8506 53942 0.4750 +8506 54103 0.4100 +8506 54413 0.4080 +8506 54715 0.4350 +8506 57502 0.4500 +8506 57555 0.4730 +8506 57669 0.8570 +8506 57731 0.7380 +8506 60484 0.4630 +8506 60496 0.4410 +8506 63827 0.4150 +8506 64359 0.8090 +8506 64398 0.5450 +8506 92359 0.6820 +8506 146713 0.4100 +8506 152330 0.4790 +8506 163175 0.4110 +8506 192683 0.4480 +8506 199731 0.6100 +8506 220296 0.5460 +8506 257194 0.4430 +8506 342035 0.7340 +8506 347731 0.5180 +8506 402665 0.4900 +8507 8878 0.6350 +8507 9777 0.4720 +8507 9817 0.9360 +8507 9903 0.9100 +8507 9978 0.9360 +8507 10016 0.7230 +8507 10324 0.9210 +8507 10459 0.4260 +8507 10716 0.4500 +8507 10724 0.6500 +8507 11146 0.7200 +8507 11275 0.7990 +8507 23053 0.9000 +8507 23386 0.6790 +8507 23476 0.4440 +8507 23510 0.5720 +8507 26249 0.9150 +8507 27252 0.9130 +8507 51520 0.4900 +8507 54329 0.4820 +8507 54442 0.5560 +8507 54800 0.7430 +8507 55958 0.9530 +8507 55975 0.9210 +8507 57542 0.9200 +8507 57563 0.9120 +8507 59349 0.9140 +8507 60468 0.4890 +8507 64410 0.9780 +8507 79734 0.9050 +8507 80311 0.4400 +8507 83892 0.7220 +8507 84078 0.9000 +8507 84541 0.9270 +8507 84861 0.9120 +8507 89890 0.9000 +8507 90293 0.9360 +8507 112939 0.5720 +8507 131377 0.7750 +8507 140838 0.4550 +8507 140893 0.4230 +8507 200942 0.4800 +8507 253980 0.9000 +8507 257364 0.6450 +8507 339745 0.9050 +8507 553115 0.7230 +8508 8563 0.8380 +8508 8878 0.8380 +8508 8887 0.7250 +8508 9742 0.4260 +8508 10241 0.7120 +8508 10528 0.5740 +8508 11180 0.6070 +8508 11331 0.5590 +8508 11337 0.7380 +8508 11345 0.7710 +8508 23365 0.4880 +8508 23710 0.7260 +8508 23770 0.5060 +8508 23786 0.4770 +8508 25842 0.4130 +8508 27127 0.4340 +8508 51566 0.4610 +8508 55503 0.8600 +8508 55626 0.5060 +8508 55723 0.4170 +8508 56302 0.8350 +8508 64779 0.6790 +8508 65018 0.5380 +8508 79711 0.4150 +8508 81631 0.4620 +8508 84135 0.5860 +8508 84164 0.4300 +8508 84557 0.5190 +8508 113444 0.6310 +8508 139341 0.5210 +8508 150274 0.4160 +8508 266743 0.5720 +8509 8861 0.4400 +8509 9394 0.7350 +8509 9653 0.8200 +8509 9672 0.6270 +8509 10082 0.6280 +8509 10090 0.6930 +8509 10221 0.4030 +8509 10855 0.4510 +8509 11285 0.4290 +8509 22856 0.4510 +8509 23213 0.5150 +8509 26035 0.7260 +8509 26229 0.4260 +8509 27233 0.8150 +8509 27284 0.8150 +8509 50515 0.4860 +8509 51200 0.4120 +8509 51363 0.4690 +8509 54480 0.4140 +8509 55454 0.5500 +8509 55501 0.5150 +8509 55790 0.4080 +8509 55959 0.5200 +8509 56548 0.4630 +8509 65217 0.7710 +8509 90161 0.6700 +8509 166012 0.4240 +8509 221914 0.6580 +8509 266722 0.6260 +8509 375790 0.5520 +8509 442038 0.8210 +8510 8621 0.9300 +8510 728642 0.8610 +8513 8525 0.6580 +8513 8526 0.6540 +8513 8527 0.6500 +8513 8612 0.6900 +8513 8613 0.6660 +8513 8694 0.7260 +8513 9019 0.4310 +8513 9023 0.4100 +8513 9162 0.6500 +8513 9388 0.9460 +8513 9663 0.6770 +8513 10647 0.5480 +8513 11343 0.9260 +8513 23175 0.6770 +8513 23205 0.6730 +8513 23305 0.6850 +8513 51703 0.6960 +8513 55072 0.6010 +8513 55750 0.9060 +8513 56287 0.7600 +8513 57104 0.9240 +8513 64900 0.6770 +8513 79728 0.4950 +8513 80168 0.6790 +8513 80339 0.9220 +8513 81616 0.6730 +8513 81858 0.6980 +8513 84513 0.9030 +8513 84649 0.6770 +8513 90678 0.5730 +8513 116255 0.6770 +8513 118932 0.4880 +8513 119548 0.9410 +8513 132949 0.4170 +8513 139189 0.6500 +8513 160851 0.6500 +8513 196051 0.9030 +8513 200504 0.5510 +8513 346606 0.6770 +8513 643834 0.7040 +8513 643847 0.4800 +8514 8644 0.4600 +8514 8878 0.6890 +8514 9132 0.6780 +8514 9196 0.6830 +8514 9312 0.7710 +8514 9378 0.4610 +8514 9379 0.5430 +8514 9883 0.4680 +8514 10008 0.4180 +8514 10327 0.5780 +8514 11127 0.6900 +8514 11332 0.4700 +8514 23303 0.4450 +8514 23415 0.5910 +8514 23416 0.6810 +8514 26047 0.7900 +8514 26251 0.5870 +8514 27012 0.8400 +8514 27133 0.6960 +8514 27173 0.7120 +8514 27345 0.4210 +8514 29986 0.4850 +8514 30819 0.4980 +8514 30820 0.4450 +8514 51133 0.4220 +8514 53616 0.4950 +8514 54363 0.8570 +8514 54995 0.4420 +8514 55349 0.4510 +8514 55746 0.5680 +8514 56479 0.6760 +8514 56912 0.4460 +8514 57016 0.4950 +8514 57122 0.5580 +8514 57727 0.4680 +8514 57805 0.7830 +8514 64359 0.5620 +8514 79902 0.4920 +8514 81033 0.5900 +8514 81929 0.4930 +8514 83592 0.5510 +8514 90134 0.6300 +8514 93107 0.7650 +8514 131096 0.6010 +8514 169522 0.6070 +8514 170850 0.6340 +8514 283518 0.4060 +8514 441282 0.5230 +8514 100101267 0.4710 +8515 8516 0.7790 +8515 8799 0.5160 +8515 9358 0.4220 +8515 9564 0.6600 +8515 10319 0.8340 +8515 10631 0.4700 +8515 10752 0.5020 +8515 11117 0.5480 +8515 22798 0.7330 +8515 22801 0.9460 +8515 29780 0.6720 +8515 55742 0.6720 +8515 63923 0.6980 +8515 64098 0.6720 +8515 83660 0.7150 +8515 128077 0.4170 +8515 131873 0.6890 +8515 253260 0.5220 +8515 284217 0.8200 +8516 9358 0.5970 +8516 9564 0.6580 +8516 10319 0.7270 +8516 10736 0.4890 +8516 11093 0.4520 +8516 11117 0.5650 +8516 22798 0.7180 +8516 22801 0.7910 +8516 25975 0.5460 +8516 29780 0.6920 +8516 55742 0.6960 +8516 63923 0.9150 +8516 64098 0.6720 +8516 65217 0.5250 +8516 80144 0.9400 +8516 83660 0.7040 +8516 84660 0.4030 +8516 131873 0.7670 +8516 197021 0.4350 +8516 255743 0.9990 +8516 284217 0.7630 +8516 285343 0.4120 +8516 341640 0.9370 +8516 375790 0.6080 +8517 8518 0.7750 +8517 8600 0.4120 +8517 8660 0.9050 +8517 8717 0.9940 +8517 8737 0.9990 +8517 8766 0.9960 +8517 8767 0.9930 +8517 8772 0.9370 +8517 8773 0.4720 +8517 8797 0.4300 +8517 8837 0.7010 +8517 8878 0.7410 +8517 8887 0.6690 +8517 8915 0.9990 +8517 8945 0.7750 +8517 8988 0.4650 +8517 9020 0.9940 +8517 9099 0.6310 +8517 9100 0.5750 +8517 9451 0.9230 +8517 9531 0.4360 +8517 9636 0.5430 +8517 9641 0.9990 +8517 9683 0.9010 +8517 9727 0.5990 +8517 9755 0.9360 +8517 9817 0.6190 +8517 9825 0.8520 +8517 9830 0.6270 +8517 9842 0.4630 +8517 10000 0.9180 +8517 10010 0.9990 +8517 10133 0.6980 +8517 10142 0.4080 +8517 10189 0.5050 +8517 10206 0.6470 +8517 10241 0.5400 +8517 10312 0.4420 +8517 10318 0.9820 +8517 10342 0.4340 +8517 10346 0.4200 +8517 10392 0.7090 +8517 10399 0.5950 +8517 10454 0.9990 +8517 10537 0.4430 +8517 10616 0.9990 +8517 10673 0.6820 +8517 10758 0.9370 +8517 10892 0.9980 +8517 10913 0.6440 +8517 11035 0.7100 +8517 11140 0.9210 +8517 11274 0.7540 +8517 11345 0.4940 +8517 22841 0.5760 +8517 22900 0.6890 +8517 22938 0.7450 +8517 23085 0.9990 +8517 23118 0.9990 +8517 23265 0.5120 +8517 23291 0.5320 +8517 23586 0.8450 +8517 23623 0.5150 +8517 23643 0.6390 +8517 23647 0.4470 +8517 23650 0.4870 +8517 23710 0.4950 +8517 26353 0.4470 +8517 27005 0.4380 +8517 27102 0.9020 +8517 27338 0.5220 +8517 28992 0.6220 +8517 29108 0.9060 +8517 29110 0.9980 +8517 29127 0.5960 +8517 29775 0.8890 +8517 29978 0.4140 +8517 50807 0.9700 +8517 50814 0.4980 +8517 51135 0.9990 +8517 51143 0.8640 +8517 51284 0.5260 +8517 51311 0.4610 +8517 51441 0.4500 +8517 51588 0.9750 +8517 51720 0.4680 +8517 54106 0.4630 +8517 54764 0.4290 +8517 55054 0.5290 +8517 55072 0.9990 +8517 55367 0.8330 +8517 55655 0.5400 +8517 55749 0.6160 +8517 55968 0.5740 +8517 56957 0.6000 +8517 57161 0.6360 +8517 57162 0.6600 +8517 57407 0.4220 +8517 57506 0.9930 +8517 57521 0.4500 +8517 59343 0.5120 +8517 60401 0.4800 +8517 64127 0.8670 +8517 64135 0.7380 +8517 64170 0.9290 +8517 64332 0.5070 +8517 64343 0.9660 +8517 79092 0.5450 +8517 79132 0.6460 +8517 79155 0.8390 +8517 79657 0.4790 +8517 79671 0.7380 +8517 80149 0.6460 +8517 80216 0.4200 +8517 81030 0.5880 +8517 81858 0.9980 +8517 83737 0.5580 +8517 84166 0.5740 +8517 84282 0.6410 +8517 84433 0.9980 +8517 84807 0.4450 +8517 84875 0.6170 +8517 85363 0.4040 +8517 89122 0.5700 +8517 90268 0.4890 +8517 92610 0.5170 +8517 114609 0.4860 +8517 115650 0.7220 +8517 135644 0.9460 +8517 142678 0.4370 +8517 148022 0.7100 +8517 203068 0.5460 +8517 220213 0.4890 +8517 221302 0.5110 +8517 246330 0.6500 +8517 253260 0.4560 +8517 257397 0.9990 +8517 260434 0.7360 +8517 353376 0.6550 +8517 400668 0.5250 +8517 440275 0.9060 +8517 727764 0.4440 +8518 9020 0.6500 +8518 9129 0.4050 +8518 9517 0.6750 +8518 9724 0.5460 +8518 9933 0.4220 +8518 10013 0.5350 +8518 10056 0.4270 +8518 10153 0.4020 +8518 10558 0.5880 +8518 10785 0.4790 +8518 10813 0.5510 +8518 10885 0.4170 +8518 22870 0.4750 +8518 22948 0.4050 +8518 22984 0.5910 +8518 23223 0.4020 +8518 23378 0.4180 +8518 23587 0.9990 +8518 25879 0.4770 +8518 25885 0.5230 +8518 26156 0.4110 +8518 26574 0.4050 +8518 26610 0.9990 +8518 27304 0.7000 +8518 27340 0.5710 +8518 29889 0.4090 +8518 51154 0.4920 +8518 51199 0.5060 +8518 51575 0.8230 +8518 51759 0.4490 +8518 54205 0.4190 +8518 54463 0.4740 +8518 54517 0.4230 +8518 54606 0.4160 +8518 54859 0.9900 +8518 54888 0.4710 +8518 54942 0.5240 +8518 55140 0.9990 +8518 55250 0.9980 +8518 55299 0.5480 +8518 55703 0.4400 +8518 57062 0.4260 +8518 57184 0.5670 +8518 64210 0.4330 +8518 64318 0.5940 +8518 64434 0.4200 +8518 65083 0.6020 +8518 65125 0.6980 +8518 81605 0.6440 +8518 83480 0.4620 +8518 83743 0.5310 +8518 84069 0.5050 +8518 84128 0.6330 +8518 84154 0.4250 +8518 84916 0.5560 +8518 84955 0.6340 +8518 90353 0.6590 +8518 112970 0.9090 +8518 113179 0.4610 +8518 121457 0.4250 +8518 130560 0.5060 +8518 161424 0.6660 +8518 221078 0.4110 +8518 285381 0.7980 +8518 653604 0.5770 +8518 102800317 0.4150 +8519 8638 0.7210 +8519 8743 0.4070 +8519 9217 0.4070 +8519 9218 0.4480 +8519 9246 0.6140 +8519 9308 0.4550 +8519 9636 0.9030 +8519 10044 0.5440 +8519 10269 0.4100 +8519 10346 0.5790 +8519 10379 0.9150 +8519 10410 0.8720 +8519 10437 0.5210 +8519 10561 0.7420 +8519 10581 0.7960 +8519 10964 0.7950 +8519 11274 0.5560 +8519 11325 0.4070 +8519 23586 0.6620 +8519 24138 0.6460 +8519 25939 0.7620 +8519 51191 0.6510 +8519 51720 0.4210 +8519 54707 0.4360 +8519 54739 0.6660 +8519 55008 0.4360 +8519 55193 0.5790 +8519 55337 0.5240 +8519 55601 0.5420 +8519 64108 0.4930 +8519 64135 0.7770 +8519 64778 0.4090 +8519 79132 0.5050 +8519 80162 0.4550 +8519 83666 0.5620 +8519 85363 0.4230 +8519 85441 0.4550 +8519 91543 0.7190 +8519 94240 0.5200 +8519 115361 0.4310 +8519 115362 0.4440 +8519 122509 0.4300 +8519 129607 0.4500 +8519 196528 0.7320 +8519 282618 0.4300 +8519 439996 0.4190 +8519 440387 0.4160 +8519 100506658 0.7210 +8519 100861540 0.4090 +8520 8661 0.5030 +8520 8662 0.4820 +8520 8663 0.4220 +8520 8813 0.4270 +8520 8841 0.4300 +8520 8850 0.6860 +8520 8883 0.4520 +8520 8968 0.6300 +8520 9097 0.4050 +8520 10213 0.4500 +8520 10524 0.5600 +8520 11143 0.5580 +8520 11235 0.4720 +8520 11267 0.4330 +8520 11335 0.5150 +8520 22933 0.4650 +8520 23411 0.4950 +8520 23476 0.4310 +8520 23522 0.4560 +8520 23595 0.9730 +8520 25804 0.7030 +8520 25842 0.9450 +8520 26953 0.4170 +8520 50943 0.4440 +8520 51002 0.4480 +8520 51068 0.4490 +8520 55140 0.5970 +8520 55723 0.9440 +8520 55869 0.4770 +8520 57473 0.5680 +8520 60496 0.8830 +8520 79711 0.7480 +8520 79903 0.5220 +8520 80218 0.4010 +8520 80854 0.4330 +8520 83660 0.4760 +8520 84148 0.5220 +8520 84271 0.7880 +8520 84301 0.4880 +8520 84942 0.8410 +8520 92292 0.4790 +8520 114799 0.4150 +8520 121504 0.5360 +8520 126961 0.5090 +8520 157570 0.4350 +8520 254042 0.4210 +8520 440093 0.9630 +8520 440686 0.6500 +8520 554313 0.5280 +8520 653604 0.9630 +8520 728689 0.4100 +8521 8536 0.4100 +8521 8841 0.5680 +8521 9247 0.9250 +8521 10761 0.4760 +8521 26190 0.7290 +8521 30816 0.6450 +8521 51294 0.4970 +8521 54935 0.4020 +8521 80712 0.4300 +8521 84144 0.4710 +8521 84879 0.4310 +8521 85360 0.4520 +8521 93659 0.5820 +8521 147664 0.4140 +8521 203100 0.7550 +8521 405754 0.5360 +8521 100271846 0.4630 +8522 8976 0.5510 +8522 9322 0.4390 +8522 10163 0.5250 +8522 10733 0.4310 +8522 10769 0.4530 +8522 10788 0.4380 +8522 10801 0.4340 +8522 11346 0.4100 +8522 22852 0.6120 +8522 23002 0.4010 +8522 23048 0.4040 +8522 23365 0.4860 +8522 23500 0.4410 +8522 29993 0.4120 +8522 50618 0.4180 +8522 51517 0.6560 +8522 54499 0.7480 +8522 55093 0.4440 +8522 55133 0.4660 +8522 55909 0.4330 +8522 56776 0.4120 +8522 57492 0.4220 +8522 60312 0.5740 +8522 63976 0.4030 +8522 64778 0.5170 +8522 64795 0.4230 +8522 79047 0.4100 +8522 85462 0.4010 +8522 89848 0.4240 +8522 90488 0.4310 +8522 114294 0.6890 +8522 126520 0.4470 +8522 128239 0.4030 +8522 136371 0.4040 +8522 151742 0.5670 +8522 220202 0.4600 +8522 257194 0.4270 +8522 342184 0.4190 +8525 8527 0.4270 +8525 8694 0.7050 +8525 8760 0.7390 +8525 8766 0.4180 +8525 8826 0.4200 +8525 8874 0.4780 +8525 9267 0.4850 +8525 9388 0.6510 +8525 9595 0.7180 +8525 9815 0.6040 +8525 10125 0.7140 +8525 10188 0.4650 +8525 10390 0.6900 +8525 10554 0.6990 +8525 10555 0.6600 +8525 22870 0.7660 +8525 23171 0.6030 +8525 23236 0.7000 +8525 23646 0.7260 +8525 25865 0.4060 +8525 28964 0.6440 +8525 51196 0.7470 +8525 54212 0.6200 +8525 55326 0.6980 +8525 56894 0.6830 +8525 56895 0.6880 +8525 56994 0.7200 +8525 57104 0.6910 +8525 80168 0.6890 +8525 80339 0.6500 +8525 81609 0.9870 +8525 84649 0.6850 +8525 84812 0.7390 +8525 85465 0.6580 +8525 89869 0.7250 +8525 113026 0.7190 +8525 116255 0.6870 +8525 119548 0.6620 +8525 122618 0.6740 +8525 129642 0.7260 +8525 154141 0.6500 +8525 169166 0.4410 +8525 200576 0.5320 +8525 253558 0.7160 +8525 346606 0.6710 +8526 8694 0.7300 +8526 8760 0.7570 +8526 9388 0.6610 +8526 9784 0.4210 +8526 9892 0.4060 +8526 10125 0.5390 +8526 10390 0.7160 +8526 10554 0.7060 +8526 10555 0.7290 +8526 10877 0.6690 +8526 10878 0.7720 +8526 11093 0.7670 +8526 23171 0.6110 +8526 23236 0.7250 +8526 23646 0.7280 +8526 23774 0.4280 +8526 25802 0.7640 +8526 25974 0.7800 +8526 26499 0.4310 +8526 51004 0.4020 +8526 51196 0.7700 +8526 51592 0.4250 +8526 55326 0.6780 +8526 56894 0.6850 +8526 56895 0.6950 +8526 56994 0.6760 +8526 57104 0.6910 +8526 57231 0.4380 +8526 64423 0.5540 +8526 80168 0.6540 +8526 80339 0.6500 +8526 81494 0.7960 +8526 84649 0.6780 +8526 84812 0.6770 +8526 85465 0.7010 +8526 89869 0.6750 +8526 113026 0.7040 +8526 116255 0.6540 +8526 119548 0.6500 +8526 122618 0.6920 +8526 125058 0.4140 +8526 129642 0.7350 +8526 154141 0.7110 +8526 253558 0.6810 +8526 339210 0.5460 +8526 346606 0.6540 +8527 8694 0.7270 +8527 8760 0.6680 +8527 9162 0.4020 +8527 9388 0.7020 +8527 9500 0.4020 +8527 9638 0.4200 +8527 9700 0.4160 +8527 10390 0.6540 +8527 10554 0.6890 +8527 10555 0.7240 +8527 23171 0.6160 +8527 23236 0.6580 +8527 23646 0.6750 +8527 25802 0.4290 +8527 26499 0.7030 +8527 51196 0.7510 +8527 55326 0.6740 +8527 55355 0.4120 +8527 56894 0.7790 +8527 56895 0.7040 +8527 56994 0.6620 +8527 57104 0.7230 +8527 58488 0.4220 +8527 64219 0.4830 +8527 80168 0.6610 +8527 80339 0.6650 +8527 84649 0.7250 +8527 84812 0.6750 +8527 85465 0.6510 +8527 89869 0.6810 +8527 113026 0.6660 +8527 116255 0.7130 +8527 119548 0.6550 +8527 122618 0.6640 +8527 129642 0.7260 +8527 139189 0.4460 +8527 142891 0.4410 +8527 154141 0.6770 +8527 253558 0.6650 +8527 259266 0.4160 +8527 346606 0.6610 +8528 9054 0.4930 +8528 9131 0.6240 +8528 9945 0.4230 +8528 10587 0.5150 +8528 10797 0.4690 +8528 11212 0.5680 +8528 23743 0.4660 +8528 29958 0.6460 +8528 51015 0.4510 +8528 51179 0.4290 +8528 51268 0.6090 +8528 51512 0.5260 +8528 51540 0.5630 +8528 51557 0.6260 +8528 54363 0.4700 +8528 55034 0.5930 +8528 55066 0.6340 +8528 55687 0.5260 +8528 58472 0.6310 +8528 63826 0.6550 +8528 64902 0.4500 +8528 79763 0.4550 +8528 79912 0.6210 +8528 84705 0.6710 +8528 84883 0.6210 +8528 84928 0.4410 +8528 85413 0.5470 +8528 114112 0.4360 +8528 137362 0.5150 +8528 150209 0.6210 +8528 196743 0.4980 +8528 219743 0.6890 +8528 441024 0.4690 +8528 728464 0.4330 +8529 8605 0.6750 +8529 8681 0.6500 +8529 8856 0.4610 +8529 9023 0.4150 +8529 9360 0.8450 +8529 10599 0.6500 +8529 10826 0.4150 +8529 10936 0.4320 +8529 11145 0.6960 +8529 11283 0.9070 +8529 26279 0.6500 +8529 27158 0.8380 +8529 29785 0.4320 +8529 30814 0.6750 +8529 50487 0.6950 +8529 54575 0.5690 +8529 54576 0.5730 +8529 54577 0.5560 +8529 54578 0.5670 +8529 54657 0.5940 +8529 54658 0.5550 +8529 54905 0.4480 +8529 55270 0.5700 +8529 64600 0.6500 +8529 64816 0.4430 +8529 66002 0.5780 +8529 79001 0.9670 +8529 80777 0.4370 +8529 81579 0.6560 +8529 84647 0.7070 +8529 113612 0.9420 +8529 123745 0.6640 +8529 132949 0.5170 +8529 151056 0.6630 +8529 255189 0.6830 +8529 283748 0.6780 +8529 284541 0.9150 +8529 348938 0.6090 +8529 391013 0.6530 +8529 100137049 0.6770 +8530 8698 0.4090 +8530 8807 0.6130 +8530 10457 0.4640 +8530 10578 0.6420 +8530 10875 0.5650 +8530 51744 0.4090 +8530 53829 0.5620 +8530 54209 0.6600 +8530 64407 0.4140 +8530 64581 0.6860 +8530 64805 0.7000 +8530 83888 0.4330 +8530 338773 0.7180 +8531 8761 0.5370 +8531 9181 0.6230 +8531 9188 0.6300 +8531 9414 0.7010 +8531 9415 0.4230 +8531 9520 0.4210 +8531 9584 0.5390 +8531 9775 0.7030 +8531 9782 0.4830 +8531 10146 0.4380 +8531 10205 0.4030 +8531 10212 0.5150 +8531 10642 0.4970 +8531 22916 0.6140 +8531 23585 0.4950 +8531 23608 0.4100 +8531 26135 0.5480 +8531 26986 0.6180 +8531 27134 0.5050 +8531 27161 0.4450 +8531 29946 0.4200 +8531 51574 0.6540 +8531 51631 0.4230 +8531 54542 0.5130 +8531 54606 0.5340 +8531 56257 0.4270 +8531 56829 0.5530 +8531 57412 0.4110 +8531 57530 0.5720 +8531 64398 0.4080 +8531 64979 0.4030 +8531 149041 0.6250 +8531 282808 0.4400 +8531 389421 0.5230 +8531 100506658 0.6350 +8531 100996928 0.4160 +8532 8939 0.4450 +8532 11201 0.6070 +8532 26578 0.6440 +8532 28972 0.4420 +8532 57142 0.5140 +8532 57620 0.4650 +8532 112849 0.4700 +8532 392636 0.4300 +8533 8562 0.4380 +8533 8607 0.4610 +8533 8665 0.4480 +8533 8678 0.6110 +8533 8816 0.4320 +8533 8834 0.4160 +8533 8883 0.4930 +8533 9040 0.7230 +8533 9318 0.9990 +8533 9401 0.4560 +8533 9684 0.5920 +8533 9730 0.7320 +8533 9840 0.9000 +8533 9861 0.7380 +8533 9978 0.9570 +8533 10116 0.6260 +8533 10213 0.6490 +8533 10238 0.4080 +8533 10307 0.6290 +8533 10445 0.4610 +8533 10482 0.4370 +8533 10513 0.6230 +8533 10617 0.4440 +8533 10713 0.4120 +8533 10750 0.6420 +8533 10920 0.9990 +8533 10946 0.5070 +8533 10980 0.9990 +8533 10987 0.9990 +8533 11037 0.4990 +8533 11091 0.4130 +8533 11236 0.4180 +8533 23038 0.4970 +8533 23142 0.4360 +8533 23276 0.4340 +8533 23412 0.4210 +8533 25793 0.4840 +8533 25852 0.5260 +8533 25879 0.4820 +8533 26094 0.8360 +8533 26234 0.5250 +8533 27040 0.7200 +8533 27348 0.5070 +8533 28952 0.4160 +8533 28991 0.4130 +8533 29099 0.4360 +8533 30833 0.4310 +8533 50717 0.5170 +8533 50813 0.9990 +8533 51122 0.4600 +8533 51138 0.9990 +8533 51185 0.8160 +8533 51397 0.4230 +8533 51514 0.6490 +8533 51655 0.4240 +8533 53339 0.7560 +8533 54165 0.5950 +8533 54617 0.4080 +8533 54876 0.4050 +8533 54939 0.4200 +8533 54951 0.4160 +8533 55070 0.6410 +8533 55090 0.4860 +8533 55208 0.4110 +8533 55643 0.8350 +8533 55827 0.4820 +8533 56953 0.8950 +8533 57559 0.4350 +8533 64326 0.5070 +8533 64708 0.9990 +8533 79016 0.6990 +8533 79084 0.4720 +8533 79184 0.4470 +8533 79269 0.4570 +8533 79913 0.4090 +8533 80067 0.4050 +8533 80344 0.8660 +8533 84259 0.5620 +8533 84954 0.4360 +8533 85439 0.4990 +8533 93973 0.4160 +8533 114803 0.5590 +8533 115290 0.5890 +8533 122769 0.8370 +8533 125476 0.4110 +8533 144699 0.5370 +8533 149951 0.4240 +8533 150678 0.9820 +8533 150684 0.4250 +8533 170622 0.4910 +8533 201163 0.6360 +8533 255275 0.4080 +8533 283899 0.4020 +8533 286187 0.8320 +8533 317719 0.5660 +8533 387357 0.7200 +8533 404672 0.5030 +8533 100287932 0.4200 +8534 8702 0.4350 +8534 11081 0.8290 +8534 27181 0.4120 +8534 27233 0.7290 +8534 27284 0.7220 +8534 51363 0.4040 +8534 54414 0.4090 +8534 55501 0.4100 +8534 83539 0.5380 +8534 89792 0.4400 +8534 93010 0.4990 +8534 123803 0.6360 +8534 442038 0.7560 +8535 8554 0.4460 +8535 8697 0.9000 +8535 8726 0.9480 +8535 8841 0.6010 +8535 8850 0.4640 +8535 8881 0.9000 +8535 8970 0.5070 +8535 9063 0.4150 +8535 9112 0.5800 +8535 9219 0.5560 +8535 9261 0.5330 +8535 9577 0.9020 +8535 9839 0.4010 +8535 9898 0.9000 +8535 9994 0.4220 +8535 10014 0.5730 +8535 10055 0.4360 +8535 10138 0.8060 +8535 10155 0.5230 +8535 10336 0.9760 +8535 10389 0.9740 +8535 10393 0.9000 +8535 10765 0.6240 +8535 10971 0.4730 +8535 11065 0.9060 +8535 11222 0.5420 +8535 22823 0.6680 +8535 22955 0.9510 +8535 23028 0.6070 +8535 23112 0.5050 +8535 23135 0.6710 +8535 23186 0.5940 +8535 23429 0.8210 +8535 23466 0.9890 +8535 23476 0.5890 +8535 23492 0.9870 +8535 23512 0.9490 +8535 25847 0.9000 +8535 25906 0.9000 +8535 26013 0.8190 +8535 26053 0.5420 +8535 26147 0.7390 +8535 26523 0.4990 +8535 27327 0.4990 +8535 27338 0.9060 +8535 28227 0.4190 +8535 28996 0.6700 +8535 29843 0.4260 +8535 29882 0.9060 +8535 29945 0.9000 +8535 29947 0.4090 +8535 51188 0.4540 +8535 51239 0.5400 +8535 51343 0.5820 +8535 51433 0.9000 +8535 51434 0.9000 +8535 51529 0.9000 +8535 51564 0.5900 +8535 51588 0.6910 +8535 53615 0.5640 +8535 54145 0.5070 +8535 54737 0.4010 +8535 54815 0.5280 +8535 54880 0.9560 +8535 55252 0.6110 +8535 55766 0.5180 +8535 55818 0.4100 +8535 57167 0.5450 +8535 57332 0.9990 +8535 57459 0.5060 +8535 57504 0.5190 +8535 64682 0.9000 +8535 79184 0.9070 +8535 80012 0.9950 +8535 80816 0.5730 +8535 83746 0.5910 +8535 84108 0.9810 +8535 84232 0.5100 +8535 84333 0.9620 +8535 84678 0.4830 +8535 84733 0.9980 +8535 84759 0.9850 +8535 85236 0.5080 +8535 94239 0.5560 +8535 119504 0.9000 +8535 121536 0.9280 +8535 124359 0.4420 +8535 128312 0.5070 +8535 132625 0.5610 +8535 140459 0.5490 +8535 143689 0.4140 +8535 166979 0.5460 +8535 171023 0.9070 +8535 192669 0.4990 +8535 192670 0.5040 +8535 246184 0.9000 +8535 255626 0.5070 +8535 404281 0.5610 +8535 440093 0.6450 +8535 440686 0.6450 +8535 474382 0.5110 +8535 653604 0.8520 +8535 100170841 0.4840 +8535 100505591 0.4220 +8535 100532731 0.9940 +8536 8874 0.6380 +8536 8997 0.5400 +8536 9586 0.6690 +8536 9647 0.8130 +8536 9759 0.4140 +8536 10014 0.6020 +8536 10059 0.4410 +8536 10488 0.6520 +8536 10645 0.7480 +8536 10777 0.6420 +8536 28964 0.5610 +8536 29903 0.4260 +8536 51024 0.4310 +8536 51400 0.4840 +8536 51678 0.5000 +8536 51806 0.9560 +8536 54850 0.4780 +8536 56947 0.4260 +8536 57118 0.5890 +8536 64764 0.6630 +8536 84254 0.7130 +8536 84699 0.6510 +8536 90993 0.6670 +8536 91860 0.9490 +8536 115557 0.4500 +8536 146779 0.4280 +8536 148327 0.6600 +8536 163688 0.9460 +8537 9444 0.8780 +8537 10215 0.4050 +8537 10657 0.4330 +8537 11030 0.6340 +8537 25948 0.4300 +8537 29072 0.4050 +8537 51090 0.4420 +8537 55679 0.5440 +8537 57471 0.4470 +8537 57697 0.5320 +8537 60484 0.4020 +8537 133121 0.6070 +8538 23039 0.4030 +8538 79718 0.6610 +8539 8570 0.4560 +8539 8697 0.4200 +8539 8880 0.4370 +8539 9531 0.4530 +8539 9557 0.4250 +8539 10000 0.4090 +8539 10054 0.4770 +8539 10137 0.4140 +8539 10212 0.5380 +8539 10291 0.6810 +8539 10539 0.4810 +8539 10657 0.4260 +8539 10694 0.4240 +8539 10915 0.4180 +8539 10946 0.6240 +8539 11052 0.5400 +8539 11325 0.4620 +8539 22985 0.7940 +8539 23019 0.4290 +8539 23244 0.4830 +8539 23279 0.4650 +8539 23294 0.4260 +8539 23451 0.5380 +8539 23760 0.4830 +8539 25813 0.4520 +8539 51493 0.4620 +8539 51593 0.4310 +8539 51663 0.5300 +8539 55421 0.5640 +8539 55644 0.4580 +8539 55761 0.4990 +8539 55773 0.7180 +8539 56259 0.4260 +8539 58517 0.5470 +8539 81890 0.4130 +8539 84991 0.4120 +8539 254394 0.5170 +8540 8799 0.5560 +8540 9409 0.8550 +8540 9563 0.4150 +8540 10005 0.4200 +8540 10211 0.5100 +8540 10390 0.4040 +8540 10455 0.4800 +8540 10901 0.4110 +8540 11234 0.4170 +8540 23600 0.4760 +8540 25979 0.5240 +8540 26061 0.6290 +8540 26063 0.4670 +8540 51031 0.4410 +8540 51144 0.5640 +8540 51179 0.6340 +8540 51268 0.4330 +8540 51555 0.8080 +8540 54363 0.6300 +8540 54953 0.4510 +8540 55670 0.7790 +8540 55711 0.7280 +8540 55825 0.4450 +8540 56894 0.4100 +8540 56940 0.4060 +8540 56965 0.4020 +8540 60496 0.4080 +8540 64689 0.7300 +8540 79668 0.4030 +8540 83693 0.4760 +8540 84188 0.8490 +8540 84263 0.4660 +8540 84693 0.4300 +8540 85465 0.5700 +8540 90407 0.4470 +8540 91452 0.4870 +8540 219743 0.8810 +8540 387521 0.5720 +8540 387522 0.4780 +8541 8573 0.7230 +8541 8825 0.6520 +8541 8927 0.4220 +8541 9256 0.6920 +8541 9378 0.5300 +8541 9379 0.5390 +8541 9699 0.6010 +8541 9783 0.4890 +8541 9815 0.7000 +8541 10497 0.9600 +8541 10815 0.7010 +8541 11129 0.7470 +8541 22999 0.8410 +8541 23025 0.5270 +8541 23085 0.9660 +8541 23162 0.6730 +8541 23189 0.5160 +8541 23426 0.7810 +8541 23504 0.5860 +8541 26059 0.7350 +8541 26115 0.4440 +8541 28964 0.8600 +8541 55327 0.5850 +8541 57030 0.6740 +8541 57453 0.4090 +8541 57524 0.5050 +8541 57555 0.4080 +8541 64130 0.6830 +8541 78999 0.4160 +8541 81624 0.4740 +8541 83660 0.4510 +8541 84687 0.5600 +8541 84708 0.4940 +8541 90102 0.5760 +8541 94030 0.5030 +8541 140730 0.4140 +8542 8673 0.4960 +8542 9332 0.5840 +8542 9519 0.6290 +8542 11346 0.5000 +8542 22925 0.5160 +8542 23607 0.8070 +8542 23780 0.5070 +8542 51004 0.4330 +8542 51196 0.7750 +8542 51449 0.8120 +8542 51599 0.5470 +8542 54757 0.4540 +8542 55829 0.7230 +8542 55911 0.5700 +8542 55937 0.9240 +8542 56975 0.6300 +8542 57619 0.4440 +8542 59272 0.4040 +8542 64423 0.8300 +8542 79135 0.7530 +8542 79934 0.4200 +8542 80830 0.5910 +8542 80831 0.4110 +8542 80833 0.5370 +8542 116519 0.8770 +8542 158471 0.4260 +8542 257019 0.4490 +8542 340260 0.4340 +8542 100423062 0.9130 +8542 100528017 0.5400 +8543 8861 0.9790 +8543 9079 0.7560 +8543 10661 0.6510 +8543 23635 0.8530 +8543 64843 0.7170 +8543 79977 0.6100 +8543 89884 0.4900 +8543 91734 0.8440 +8543 170463 0.8520 +8544 8804 0.4160 +8544 9271 0.9710 +8544 9824 0.5160 +8544 10524 0.4420 +8544 27429 0.4590 +8544 54187 0.4140 +8544 55124 0.9410 +8544 56925 0.4780 +8544 140809 0.4870 +8544 143689 0.9810 +8544 192669 0.6390 +8544 192670 0.4860 +8544 338917 0.5160 +8544 388969 0.6060 +8544 440822 0.5970 +8544 646862 0.4290 +8545 9875 0.4740 +8545 9922 0.5600 +8545 10927 0.7910 +8545 23218 0.5460 +8545 23369 0.4170 +8545 27107 0.4700 +8545 54826 0.5180 +8545 54989 0.4270 +8545 55279 0.6700 +8545 79723 0.4080 +8545 79922 0.6140 +8545 84107 0.5120 +8545 84928 0.4570 +8545 116135 0.5040 +8545 285237 0.6280 +8545 474343 0.7790 +8545 552889 0.5250 +8546 8673 0.5920 +8546 8676 0.7260 +8546 8775 0.5040 +8546 8776 0.4030 +8546 8805 0.5040 +8546 8844 0.5080 +8546 8905 0.6010 +8546 8906 0.7720 +8546 8907 0.6990 +8546 8943 0.9990 +8546 8988 0.4710 +8546 9026 0.5270 +8546 9056 0.4060 +8546 9061 0.5070 +8546 9179 0.7880 +8546 9320 0.4260 +8546 9444 0.5190 +8546 9486 0.4100 +8546 9559 0.4060 +8546 9685 0.6420 +8546 9698 0.5800 +8546 9715 0.4990 +8546 9829 0.5640 +8546 9907 0.5610 +8546 10018 0.4990 +8546 10053 0.5970 +8546 10142 0.5100 +8546 10239 0.9810 +8546 10283 0.4670 +8546 10527 0.4660 +8546 10533 0.5090 +8546 10618 0.5730 +8546 10717 0.6810 +8546 10827 0.5930 +8546 10947 0.9960 +8546 11044 0.4990 +8546 11127 0.6520 +8546 11154 0.8030 +8546 11234 0.8270 +8546 11276 0.6670 +8546 11311 0.4540 +8546 22906 0.5480 +8546 23063 0.4500 +8546 23164 0.5040 +8546 23339 0.4790 +8546 23431 0.8760 +8546 23557 0.6330 +8546 25977 0.4990 +8546 26258 0.8570 +8546 26985 0.9990 +8546 27043 0.4300 +8546 27044 0.5650 +8546 27131 0.5610 +8546 27319 0.7290 +8546 28956 0.4290 +8546 51151 0.4220 +8546 51429 0.5070 +8546 54845 0.5050 +8546 54885 0.4990 +8546 55109 0.5650 +8546 55317 0.5750 +8546 55330 0.5150 +8546 55745 0.6000 +8546 55750 0.5460 +8546 55823 0.4070 +8546 56829 0.5270 +8546 57085 0.4990 +8546 57153 0.4510 +8546 57662 0.4150 +8546 57670 0.4990 +8546 57704 0.5010 +8546 60412 0.4290 +8546 65980 0.4200 +8546 79577 0.6960 +8546 79803 0.8420 +8546 80853 0.5260 +8546 81567 0.5030 +8546 83548 0.5210 +8546 83938 0.4800 +8546 84061 0.6320 +8546 84062 0.8780 +8546 84251 0.5860 +8546 84343 0.9290 +8546 84524 0.4210 +8546 89781 0.9350 +8546 91056 0.5460 +8546 112936 0.4500 +8546 120892 0.6500 +8546 122616 0.5400 +8546 126204 0.4130 +8546 130340 0.5830 +8546 147991 0.4750 +8546 157680 0.4910 +8546 158586 0.5710 +8546 171482 0.4200 +8546 192669 0.6200 +8546 201294 0.7200 +8546 286451 0.5040 +8546 348110 0.5710 +8546 388552 0.9140 +8546 648791 0.4180 +8546 728642 0.4690 +8546 100526783 0.7140 +8547 10332 0.4470 +8547 10584 0.9400 +8547 10747 0.9930 +8547 11326 0.4160 +8547 22918 0.5090 +8547 27429 0.5400 +8547 51266 0.4740 +8547 55273 0.5380 +8547 78989 0.9460 +8547 115908 0.4120 +8547 131873 0.5310 +8547 147372 0.5060 +8547 160364 0.4160 +8547 245937 0.4140 +8547 390714 0.4310 +8548 8615 0.6820 +8548 8658 0.6980 +8548 8930 0.7200 +8548 9208 0.4050 +8548 9321 0.5650 +8548 9463 0.4910 +8548 9950 0.7310 +8548 10299 0.4180 +8548 10972 0.5000 +8548 22794 0.4660 +8548 23423 0.6930 +8548 25862 0.5340 +8548 26003 0.9990 +8548 29922 0.4130 +8548 51014 0.4430 +8548 51478 0.5800 +8548 51808 0.4940 +8548 54799 0.4800 +8548 55142 0.4360 +8548 57002 0.4200 +8548 57727 0.4100 +8548 57821 0.4700 +8548 64083 0.5580 +8548 64689 0.9800 +8548 64746 0.8980 +8548 80224 0.4350 +8548 81847 0.6870 +8548 81876 0.5650 +8548 83452 0.4690 +8548 84061 0.5680 +8548 84124 0.4330 +8548 142679 0.4490 +8548 143662 0.4030 +8548 148870 0.5150 +8548 374986 0.6310 +8548 541468 0.4860 +8549 8842 0.8310 +8549 8872 0.4760 +8549 9201 0.7180 +8549 9241 0.7730 +8549 9314 0.5400 +8549 9355 0.4340 +8549 9429 0.4830 +8549 9978 0.4140 +8549 10413 0.4610 +8549 10562 0.8160 +8549 10664 0.5090 +8549 10763 0.4560 +8549 22859 0.5670 +8549 22881 0.4230 +8549 22943 0.5400 +8549 23266 0.5770 +8549 23284 0.5750 +8549 25803 0.4070 +8549 27122 0.4370 +8549 27123 0.4590 +8549 28514 0.6230 +8549 50674 0.4640 +8549 51176 0.6070 +8549 53615 0.6700 +8549 54361 0.6710 +8549 54474 0.5840 +8549 54567 0.5050 +8549 54894 0.9970 +8549 55070 0.4360 +8549 55294 0.4450 +8549 55366 0.9500 +8549 55379 0.4100 +8549 55504 0.7850 +8549 56999 0.4140 +8549 59350 0.4080 +8549 59352 0.9400 +8549 64094 0.5780 +8549 64175 0.4780 +8549 64321 0.4230 +8549 64840 0.4490 +8549 79442 0.5230 +8549 79923 0.5980 +8549 83737 0.5120 +8549 83998 0.5320 +8549 84133 0.9970 +8549 84525 0.6950 +8549 84678 0.6020 +8549 84870 0.9870 +8549 85407 0.5200 +8549 89780 0.6870 +8549 92312 0.4930 +8549 93659 0.6240 +8549 122769 0.4690 +8549 147111 0.4120 +8549 168620 0.4220 +8549 221895 0.4180 +8549 284654 0.9990 +8549 338785 0.4340 +8549 340419 0.9990 +8549 343637 0.9700 +8549 440093 0.4980 +8549 440686 0.4980 +8549 653604 0.4980 +8549 728378 0.4410 +8549 100133941 0.6480 +8549 100506658 0.4140 +8549 100532731 0.7590 +8550 8924 0.4220 +8550 8988 0.7300 +8550 8997 0.8180 +8550 9874 0.4840 +8550 10435 0.4410 +8550 10454 0.4850 +8550 10602 0.4420 +8550 79092 0.4270 +8550 84461 0.5120 +8550 89894 0.4190 +8550 115727 0.4370 +8550 148170 0.4490 +8550 225689 0.4840 +8553 8863 0.9300 +8553 8864 0.9550 +8553 8914 0.7080 +8553 8945 0.6870 +8553 9126 0.4850 +8553 9213 0.4650 +8553 9572 0.9290 +8553 9575 0.9390 +8553 9940 0.4030 +8553 9975 0.9130 +8553 11178 0.4120 +8553 22836 0.4710 +8553 23291 0.5140 +8553 25915 0.6970 +8553 25942 0.4310 +8553 26224 0.4180 +8553 27238 0.7720 +8553 30009 0.6160 +8553 54962 0.4630 +8553 55858 0.4470 +8553 56938 0.6990 +8553 64410 0.4200 +8553 64651 0.4190 +8553 79365 0.9710 +8553 148523 0.4060 +8553 150572 0.4400 +8553 100526664 0.4470 +8553 102800317 0.7610 +8554 8651 0.4980 +8554 8836 0.5180 +8554 9021 0.4500 +8554 9025 0.7410 +8554 9063 0.6250 +8554 9112 0.4350 +8554 9557 0.4870 +8554 9611 0.5690 +8554 9656 0.5730 +8554 9937 0.4890 +8554 9978 0.5410 +8554 9994 0.6150 +8554 10038 0.4800 +8554 10054 0.7330 +8554 10055 0.8580 +8554 10208 0.4010 +8554 10210 0.5380 +8554 10401 0.4710 +8554 11016 0.4720 +8554 22985 0.4700 +8554 23071 0.6680 +8554 23087 0.6020 +8554 23132 0.5210 +8554 23137 0.4240 +8554 23314 0.6200 +8554 23468 0.4120 +8554 23510 0.5920 +8554 23515 0.4460 +8554 23704 0.4620 +8554 26036 0.6980 +8554 26054 0.6340 +8554 26168 0.5700 +8554 26191 0.4260 +8554 28996 0.5240 +8554 29072 0.4530 +8554 29110 0.5650 +8554 29843 0.7600 +8554 50944 0.4250 +8554 51127 0.5550 +8554 51588 0.4420 +8554 51720 0.5620 +8554 54778 0.5080 +8554 55215 0.4950 +8554 56852 0.6940 +8554 57337 0.6010 +8554 59343 0.4280 +8554 64135 0.5200 +8554 79184 0.4590 +8554 79923 0.5040 +8554 83746 0.6300 +8554 84464 0.5820 +8554 84901 0.4810 +8554 85363 0.4120 +8554 93986 0.4470 +8554 116447 0.4500 +8554 123228 0.4200 +8554 143279 0.4300 +8554 165918 0.7330 +8554 205564 0.5970 +8554 286053 0.7500 +8554 286827 0.4360 +8554 387082 0.7660 +8554 404672 0.4130 +8555 8556 0.9050 +8555 8697 0.7010 +8555 8881 0.7050 +8555 9055 0.4650 +8555 9088 0.5750 +8555 9700 0.4250 +8555 9837 0.5370 +8555 10393 0.6600 +8555 10733 0.4760 +8555 10769 0.5860 +8555 11329 0.6180 +8555 22933 0.4910 +8555 23012 0.6170 +8555 23411 0.4990 +8555 25847 0.6610 +8555 26953 0.5190 +8555 29882 0.6710 +8555 29945 0.6500 +8555 51343 0.8510 +8555 51433 0.6620 +8555 51434 0.6500 +8555 51659 0.4220 +8555 53838 0.4250 +8555 55051 0.4450 +8555 64396 0.4480 +8555 64682 0.7100 +8555 64785 0.4350 +8555 84296 0.4820 +8555 126520 0.5530 +8555 246184 0.6590 +8555 494551 0.5750 +8556 8634 0.4260 +8556 8697 0.8270 +8556 8881 0.8380 +8556 8900 0.4140 +8556 9051 0.4610 +8556 9088 0.5750 +8556 9133 0.6930 +8556 9150 0.4420 +8556 9183 0.4410 +8556 9184 0.4860 +8556 9212 0.7890 +8556 9232 0.7540 +8556 9700 0.9470 +8556 9814 0.5430 +8556 9985 0.4170 +8556 10051 0.4460 +8556 10112 0.4950 +8556 10393 0.7330 +8556 10434 0.7200 +8556 10594 0.4660 +8556 10606 0.4240 +8556 10733 0.5600 +8556 10744 0.7400 +8556 10769 0.5750 +8556 10926 0.4310 +8556 11130 0.4100 +8556 11200 0.4690 +8556 11201 0.5880 +8556 11329 0.7020 +8556 22933 0.9910 +8556 23012 0.6420 +8556 23020 0.4840 +8556 23411 0.9920 +8556 25847 0.6950 +8556 26953 0.5190 +8556 29882 0.7040 +8556 29945 0.6510 +8556 50488 0.4460 +8556 51097 0.4180 +8556 51343 0.9280 +8556 51433 0.7270 +8556 51434 0.6500 +8556 54847 0.6960 +8556 55051 0.4450 +8556 55143 0.5840 +8556 55233 0.4680 +8556 55844 0.5920 +8556 55869 0.5260 +8556 57124 0.5050 +8556 64682 0.7370 +8556 80198 0.4180 +8556 81669 0.7250 +8556 84930 0.4030 +8556 85417 0.4660 +8556 126520 0.5530 +8556 133482 0.4930 +8556 166979 0.4630 +8556 219699 0.4370 +8556 221830 0.4200 +8556 246184 0.7490 +8556 282808 0.5200 +8556 348654 0.4380 +8556 494551 0.5750 +8557 8736 0.7080 +8557 8878 0.4190 +8557 9172 0.5690 +8557 9499 0.8980 +8557 9531 0.4580 +8557 10060 0.6850 +8557 10273 0.5910 +8557 10324 0.5380 +8557 10345 0.5040 +8557 10468 0.4320 +8557 10529 0.5160 +8557 10585 0.6670 +8557 10631 0.5210 +8557 10930 0.4550 +8557 10948 0.7070 +8557 11155 0.8870 +8557 22954 0.6660 +8557 23171 0.4110 +8557 23294 0.4270 +8557 23336 0.5650 +8557 23345 0.4360 +8557 23676 0.4120 +8557 23683 0.5970 +8557 25865 0.5880 +8557 26224 0.4110 +8557 26287 0.9410 +8557 26548 0.4740 +8557 27063 0.6120 +8557 27295 0.6370 +8557 29119 0.5130 +8557 29765 0.5390 +8557 29895 0.6510 +8557 29954 0.6620 +8557 50805 0.4260 +8557 51422 0.5490 +8557 51778 0.9920 +8557 51806 0.4740 +8557 55624 0.6220 +8557 55750 0.4250 +8557 57158 0.6760 +8557 57159 0.7200 +8557 58529 0.9850 +8557 64221 0.5020 +8557 79147 0.7570 +8557 79188 0.4480 +8557 81031 0.4500 +8557 84033 0.8530 +8557 84299 0.6420 +8557 84665 0.8310 +8557 84675 0.6650 +8557 84676 0.9530 +8557 85366 0.5550 +8557 91624 0.6990 +8557 91860 0.4710 +8557 91977 0.8460 +8557 93210 0.7450 +8557 125972 0.5450 +8557 129446 0.5200 +8557 163688 0.5020 +8557 200539 0.4900 +8557 202333 0.5050 +8557 203859 0.7240 +8557 282996 0.7800 +8557 347273 0.5830 +8557 442721 0.6130 +8557 643226 0.4130 +8557 645104 0.4130 +8558 8812 0.5440 +8558 9129 0.6000 +8558 9605 0.4300 +8558 22980 0.5630 +8558 26088 0.4710 +8558 51117 0.6180 +8558 51409 0.5330 +8558 54849 0.5770 +8558 55508 0.5380 +8558 57018 0.5430 +8558 79007 0.4930 +8558 81669 0.7870 +8558 84501 0.4460 +8558 92002 0.8410 +8558 92822 0.8200 +8558 124045 0.5390 +8558 219771 0.4050 +8558 284001 0.4350 +8559 8896 0.9120 +8559 9092 0.6650 +8559 9128 0.7200 +8559 9129 0.8460 +8559 9343 0.9040 +8559 9410 0.6450 +8559 9416 0.8460 +8559 9453 0.8760 +8559 9704 0.6070 +8559 9733 0.4960 +8559 9785 0.9970 +8559 9879 0.5540 +8559 10283 0.5970 +8559 10286 0.4370 +8559 10291 0.5720 +8559 10421 0.5850 +8559 10465 0.8890 +8559 10569 0.9990 +8559 10594 0.9610 +8559 10713 0.5610 +8559 10907 0.5820 +8559 10946 0.4500 +8559 10973 0.5490 +8559 11017 0.6460 +8559 11157 0.7830 +8559 22938 0.7530 +8559 23020 0.9770 +8559 23451 0.5150 +8559 23524 0.6310 +8559 23620 0.4760 +8559 23658 0.6290 +8559 24144 0.7740 +8559 24148 0.7380 +8559 25804 0.7050 +8559 25949 0.8040 +8559 25980 0.6870 +8559 26121 0.8210 +8559 27258 0.6980 +8559 27339 0.5500 +8559 51163 0.5230 +8559 51244 0.4560 +8559 51340 0.7380 +8559 51362 0.9960 +8559 51503 0.7650 +8559 51538 0.4770 +8559 51690 0.6300 +8559 51691 0.6530 +8559 51759 0.5260 +8559 54883 0.9550 +8559 54957 0.5490 +8559 55015 0.4800 +8559 55094 0.5210 +8559 55100 0.5700 +8559 55696 0.7210 +8559 55702 0.9620 +8559 56919 0.5460 +8559 56949 0.8120 +8559 57461 0.7850 +8559 57647 0.4670 +8559 57703 0.8710 +8559 57819 0.6510 +8559 60625 0.7640 +8559 79165 0.5230 +8559 79171 0.6430 +8559 79446 0.6520 +8559 79576 0.5750 +8559 79665 0.5040 +8559 79753 0.5010 +8559 84081 0.5170 +8559 84950 0.4570 +8559 84991 0.4220 +8559 143884 0.6790 +8559 153527 0.5950 +8559 164045 0.5270 +8559 222183 0.5470 +8559 222389 0.4750 +8559 100534599 0.7750 +8560 8612 0.9040 +8560 8613 0.9090 +8560 8877 0.9600 +8560 8879 0.4860 +8560 9415 0.4980 +8560 9517 0.8170 +8560 10087 0.5100 +8560 10558 0.8300 +8560 10988 0.8960 +8560 27429 0.4070 +8560 29956 0.9740 +8560 55304 0.8160 +8560 55331 0.9510 +8560 55512 0.9460 +8560 55627 0.9520 +8560 56624 0.9480 +8560 56848 0.9600 +8560 57704 0.9220 +8560 64781 0.9590 +8560 79152 0.5090 +8560 79603 0.9700 +8560 81537 0.9440 +8560 83723 0.5530 +8560 91012 0.9710 +8560 123099 0.9040 +8560 125981 0.9520 +8560 130367 0.9300 +8560 132001 0.4150 +8560 142891 0.5130 +8560 166929 0.9530 +8560 204219 0.9650 +8560 253782 0.9770 +8560 259230 0.9620 +8560 339221 0.9240 +8560 340485 0.9510 +8560 401152 0.4750 +8562 8661 0.7650 +8562 8662 0.8050 +8562 8663 0.6930 +8562 8664 0.6870 +8562 8666 0.7350 +8562 8667 0.5260 +8562 8668 0.7510 +8562 8669 0.7830 +8562 8843 0.8250 +8562 8851 0.4200 +8562 8894 0.8860 +8562 8930 0.5060 +8562 9086 0.7320 +8562 9318 0.6460 +8562 9470 0.4430 +8562 9669 0.6660 +8562 9732 0.5720 +8562 9804 0.6470 +8562 9858 0.4960 +8562 9927 0.8080 +8562 9939 0.7060 +8562 10054 0.4100 +8562 10055 0.4680 +8562 10059 0.7390 +8562 10105 0.4140 +8562 10209 0.6730 +8562 10213 0.4300 +8562 10399 0.9260 +8562 10480 0.4990 +8562 10557 0.5360 +8562 10728 0.5060 +8562 10730 0.4630 +8562 10767 0.5180 +8562 10891 0.5060 +8562 10969 0.7650 +8562 10980 0.6600 +8562 10987 0.8060 +8562 10989 0.4190 +8562 11162 0.4310 +8562 11222 0.4030 +8562 11224 0.4480 +8562 22916 0.8150 +8562 23173 0.5360 +8562 23204 0.4980 +8562 23420 0.6990 +8562 23435 0.4720 +8562 26135 0.4020 +8562 27012 0.4410 +8562 27068 0.4470 +8562 27173 0.4200 +8562 27198 0.8390 +8562 27335 0.6630 +8562 28985 0.9990 +8562 29080 0.4170 +8562 50813 0.6230 +8562 51024 0.9950 +8562 51031 0.4040 +8562 51065 0.6370 +8562 51073 0.5650 +8562 51077 0.6790 +8562 51081 0.6840 +8562 51116 0.5090 +8562 51122 0.4540 +8562 51138 0.6670 +8562 51149 0.6200 +8562 51319 0.5090 +8562 51386 0.5460 +8562 51389 0.8340 +8562 51602 0.4680 +8562 54205 0.6000 +8562 54471 0.9900 +8562 54708 0.7090 +8562 55142 0.4470 +8562 55173 0.7310 +8562 55210 0.6280 +8562 55248 0.4360 +8562 55272 0.6660 +8562 55288 0.4780 +8562 55316 0.5770 +8562 55486 0.4740 +8562 55651 0.5350 +8562 55669 0.7930 +8562 56648 0.4060 +8562 56947 0.9940 +8562 56993 0.4220 +8562 60678 0.6120 +8562 63923 0.4940 +8562 63931 0.5860 +8562 64708 0.4880 +8562 64960 0.6410 +8562 64963 0.5790 +8562 64969 0.6400 +8562 65018 0.6210 +8562 79594 0.4120 +8562 80218 0.4280 +8562 80224 0.4290 +8562 85377 0.5050 +8562 114987 0.6380 +8562 115209 0.4830 +8562 120892 0.5950 +8562 125170 0.9880 +8562 126402 0.5810 +8562 139341 0.4740 +8562 140032 0.6060 +8562 143244 0.4020 +8562 192111 0.4090 +8562 255308 0.5990 +8562 283820 0.7240 +8562 285335 0.4430 +8562 338442 0.8290 +8562 347487 0.5050 +8562 408050 0.7150 +8562 440275 0.4960 +8562 641776 0.4520 +8562 643909 0.4520 +8562 728524 0.4520 +8562 728689 0.6580 +8562 100101490 0.8750 +8562 100287482 0.4950 +8562 100529239 0.6560 +8562 100996746 0.4520 +8562 105180390 0.4520 +8562 105180391 0.4520 +8563 8888 0.5370 +8563 9135 0.4320 +8563 9136 0.6320 +8563 9321 0.5900 +8563 9402 0.8150 +8563 9416 0.4170 +8563 9631 0.5030 +8563 9688 0.5190 +8563 9775 0.8480 +8563 9818 0.5040 +8563 9846 0.5110 +8563 9877 0.8870 +8563 9883 0.4590 +8563 9939 0.5800 +8563 9972 0.5260 +8563 9984 0.9990 +8563 10038 0.4070 +8563 10189 0.9980 +8563 10204 0.6330 +8563 10212 0.8930 +8563 10236 0.4590 +8563 10250 0.5880 +8563 10482 0.9920 +8563 10519 0.4970 +8563 10762 0.4840 +8563 10921 0.6090 +8563 10978 0.5790 +8563 11051 0.7420 +8563 11052 0.8720 +8563 11097 0.4620 +8563 11338 0.4650 +8563 22794 0.5430 +8563 22916 0.8020 +8563 23091 0.4630 +8563 23165 0.4540 +8563 23225 0.4050 +8563 23279 0.5200 +8563 23305 0.5490 +8563 23511 0.4330 +8563 23595 0.4760 +8563 23636 0.5590 +8563 23660 0.6340 +8563 26093 0.4230 +8563 26097 0.9920 +8563 27258 0.6550 +8563 29107 0.7910 +8563 51013 0.4300 +8563 51213 0.7590 +8563 51585 0.8120 +8563 51593 0.6200 +8563 51645 0.5920 +8563 51692 0.4350 +8563 51703 0.5490 +8563 51759 0.4310 +8563 53371 0.4720 +8563 53981 0.9390 +8563 55110 0.6560 +8563 55148 0.4360 +8563 55204 0.4400 +8563 55421 0.8860 +8563 55706 0.4110 +8563 55746 0.4800 +8563 55795 0.5640 +8563 55813 0.5430 +8563 55854 0.6020 +8563 56000 0.9480 +8563 56943 0.5060 +8563 57122 0.4860 +8563 57187 0.9990 +8563 57573 0.4330 +8563 57721 0.4870 +8563 64083 0.4090 +8563 64328 0.5920 +8563 64783 0.5260 +8563 65109 0.5340 +8563 79023 0.4550 +8563 79228 0.9990 +8563 79869 0.6840 +8563 79882 0.5510 +8563 79902 0.4750 +8563 80145 0.9990 +8563 81929 0.4930 +8563 84248 0.9330 +8563 84271 0.8530 +8563 84321 0.9990 +8563 84324 0.9860 +8563 91603 0.6070 +8563 93973 0.4710 +8563 124245 0.4270 +8563 126526 0.4390 +8563 129401 0.4260 +8563 139716 0.4990 +8563 146433 0.4990 +8563 348995 0.5360 +8563 399687 0.5910 +8563 728343 0.9300 +8563 100101267 0.4710 +8564 8942 0.9990 +8564 9023 0.4610 +8564 10280 0.5820 +8564 10826 0.4490 +8564 23475 0.8300 +8564 23498 0.9640 +8564 23596 0.8670 +8564 23761 0.4910 +8564 27185 0.4130 +8564 27235 0.7680 +8564 51031 0.4340 +8564 51072 0.5260 +8564 51166 0.9830 +8564 51167 0.4680 +8564 51733 0.4100 +8564 51805 0.7980 +8564 54884 0.4700 +8564 54988 0.4300 +8564 55034 0.4090 +8564 55191 0.4490 +8564 55526 0.4180 +8564 55902 0.4920 +8564 56267 0.9800 +8564 57552 0.4110 +8564 64577 0.5090 +8564 64802 0.5080 +8564 64902 0.4140 +8564 79611 0.4270 +8564 80020 0.4540 +8564 84274 0.4530 +8564 84532 0.4560 +8564 84693 0.4930 +8564 84795 0.4710 +8564 91734 0.5310 +8564 93100 0.6060 +8564 112812 0.5610 +8564 121278 0.4700 +8564 123688 0.4520 +8564 125061 0.9850 +8564 130013 0.8820 +8564 137682 0.5420 +8564 169355 0.8310 +8564 207063 0.4140 +8564 340390 0.5420 +8564 349565 0.4320 +8565 8644 0.4400 +8565 8662 0.4950 +8565 8663 0.4110 +8565 8664 0.4580 +8565 8666 0.5520 +8565 8667 0.4500 +8565 8668 0.4780 +8565 8697 0.7850 +8565 8731 0.6310 +8565 8833 0.5300 +8565 8891 0.4130 +8565 8894 0.6100 +8565 8898 0.4400 +8565 8940 0.4180 +8565 8972 0.4010 +8565 9086 0.5950 +8565 9156 0.4820 +8565 9255 0.5920 +8565 9343 0.5490 +8565 9349 0.4180 +8565 9361 0.4190 +8565 9516 0.4290 +8565 9521 0.5250 +8565 9533 0.4330 +8565 9553 0.5110 +8565 9563 0.4510 +8565 9584 0.4230 +8565 9617 0.6820 +8565 9669 0.7040 +8565 9698 0.5390 +8565 9775 0.4530 +8565 9797 0.4170 +8565 9801 0.5540 +8565 9858 0.6200 +8565 9933 0.4930 +8565 9945 0.4670 +8565 10020 0.5200 +8565 10056 0.9460 +8565 10102 0.8150 +8565 10135 0.6720 +8565 10155 0.6890 +8565 10289 0.4220 +8565 10352 0.9910 +8565 10473 0.4080 +8565 10528 0.7120 +8565 10535 0.4860 +8565 10575 0.4170 +8565 10576 0.4190 +8565 10667 0.9200 +8565 10797 0.5580 +8565 10845 0.4450 +8565 10856 0.4100 +8565 10969 0.4380 +8565 10988 0.4710 +8565 11128 0.5620 +8565 11201 0.4150 +8565 11212 0.5270 +8565 11219 0.4180 +8565 11222 0.4520 +8565 11232 0.7030 +8565 11260 0.7450 +8565 11277 0.4200 +8565 11315 0.4380 +8565 22894 0.4010 +8565 22934 0.4490 +8565 22948 0.4140 +8565 22984 0.6380 +8565 23173 0.4840 +8565 23252 0.5020 +8565 23369 0.5350 +8565 23395 0.9790 +8565 23405 0.4990 +8565 23438 0.8980 +8565 23450 0.4070 +8565 23478 0.4340 +8565 23479 0.4760 +8565 23521 0.6410 +8565 23536 0.4480 +8565 23633 0.4490 +8565 25813 0.5210 +8565 25821 0.4260 +8565 25885 0.5550 +8565 25973 0.9720 +8565 26227 0.5000 +8565 26271 0.6510 +8565 26289 0.4170 +8565 26330 0.4450 +8565 26353 0.4310 +8565 26995 0.4820 +8565 27068 0.5790 +8565 27102 0.6120 +8565 27292 0.5060 +8565 28998 0.6270 +8565 29093 0.4100 +8565 29102 0.5250 +8565 29789 0.8240 +8565 29927 0.4470 +8565 29968 0.4980 +8565 50808 0.4310 +8565 51021 0.4720 +8565 51067 0.9740 +8565 51069 0.4200 +8565 51073 0.4470 +8565 51081 0.5470 +8565 51095 0.6770 +8565 51106 0.5100 +8565 51116 0.6270 +8565 51121 0.4020 +8565 51149 0.5450 +8565 51154 0.4550 +8565 51204 0.5750 +8565 51290 0.4170 +8565 51292 0.5630 +8565 51409 0.4380 +8565 51512 0.5730 +8565 51520 0.9800 +8565 51582 0.4460 +8565 51614 0.4330 +8565 51654 0.5120 +8565 51727 0.4550 +8565 54148 0.5370 +8565 54332 0.6010 +8565 54516 0.6820 +8565 54802 0.4010 +8565 54841 0.4650 +8565 54870 0.4780 +8565 54901 0.4550 +8565 54938 0.8970 +8565 54965 0.5310 +8565 54974 0.4630 +8565 55034 0.4160 +8565 55052 0.5560 +8565 55140 0.4400 +8565 55152 0.4750 +8565 55157 0.8980 +8565 55163 0.4010 +8565 55176 0.4150 +8565 55178 0.4510 +8565 55258 0.4160 +8565 55272 0.4990 +8565 55278 0.4600 +8565 55591 0.4540 +8565 55687 0.5520 +8565 55697 0.4030 +8565 55699 0.9570 +8565 55703 0.6280 +8565 55780 0.4210 +8565 55846 0.4330 +8565 56005 0.4080 +8565 56474 0.5990 +8565 56648 0.5760 +8565 57038 0.9590 +8565 57136 0.4470 +8565 57176 0.9470 +8565 57222 0.4170 +8565 57412 0.4540 +8565 57469 0.4370 +8565 57470 0.9160 +8565 57505 0.9270 +8565 57761 0.5630 +8565 60491 0.4090 +8565 60558 0.5070 +8565 60678 0.5210 +8565 64146 0.4510 +8565 64216 0.5000 +8565 64960 0.5460 +8565 64963 0.5240 +8565 64969 0.4810 +8565 64983 0.4830 +8565 65003 0.4120 +8565 65005 0.4620 +8565 65008 0.4570 +8565 65080 0.5330 +8565 79587 0.8820 +8565 79590 0.4180 +8565 79628 0.5120 +8565 79631 0.5690 +8565 79693 0.5210 +8565 79731 0.9560 +8565 79896 0.4160 +8565 79922 0.4460 +8565 80222 0.8690 +8565 80324 0.4050 +8565 81846 0.5370 +8565 81890 0.4010 +8565 83940 0.5330 +8565 83943 0.4330 +8565 84034 0.4100 +8565 84076 0.5580 +8565 84172 0.6240 +8565 84340 0.5450 +8565 84464 0.8440 +8565 84893 0.4420 +8565 85363 0.4200 +8565 85441 0.4830 +8565 85476 0.6500 +8565 87178 0.4550 +8565 89894 0.4260 +8565 90353 0.4600 +8565 90381 0.5190 +8565 90678 0.4850 +8565 90701 0.4370 +8565 90861 0.4840 +8565 91574 0.6960 +8565 91875 0.5970 +8565 91893 0.7720 +8565 92399 0.6850 +8565 92675 0.5290 +8565 92935 0.9750 +8565 93974 0.4770 +8565 112487 0.6550 +8565 113451 0.4410 +8565 115416 0.4510 +8565 115752 0.4030 +8565 116832 0.7570 +8565 121512 0.4910 +8565 122481 0.4170 +8565 122622 0.5360 +8565 123263 0.5500 +8565 123283 0.8660 +8565 124454 0.9280 +8565 126402 0.5340 +8565 128387 0.4170 +8565 129563 0.4080 +8565 129831 0.4780 +8565 138428 0.4510 +8565 139596 0.5440 +8565 142940 0.4820 +8565 143244 0.5760 +8565 153443 0.4990 +8565 158067 0.4170 +8565 158584 0.4450 +8565 196294 0.4330 +8565 221264 0.4170 +8565 221823 0.6480 +8565 255308 0.4210 +8565 285521 0.5030 +8565 285855 0.4750 +8565 345630 0.6520 +8565 347487 0.6760 +8565 348654 0.4650 +8565 374395 0.6400 +8565 374659 0.5420 +8565 387129 0.4500 +8565 388789 0.4830 +8565 440275 0.6830 +8565 441024 0.4350 +8565 100287482 0.6180 +8565 100505478 0.4240 +8565 100526842 0.5280 +8565 100533467 0.4650 +8565 101927367 0.6900 +8566 9901 0.4130 +8566 11112 0.5270 +8566 11212 0.8620 +8566 23076 0.7170 +8566 23275 0.4670 +8566 23380 0.4570 +8566 23760 0.4170 +8566 27243 0.4480 +8566 29104 0.4010 +8566 29968 0.4450 +8566 29980 0.4640 +8566 49854 0.5300 +8566 51166 0.5690 +8566 51399 0.5830 +8566 54978 0.4650 +8566 55163 0.9960 +8566 57026 0.9660 +8566 59271 0.4880 +8566 64080 0.6540 +8566 79912 0.4270 +8566 80153 0.4060 +8566 91373 0.4260 +8566 112812 0.8050 +8566 112858 0.8030 +8566 143684 0.6510 +8566 154141 0.4740 +8566 493911 0.9040 +8567 8766 0.5200 +8567 8795 0.4990 +8567 8898 0.6320 +8567 9499 0.4520 +8567 9545 0.4430 +8567 10890 0.4160 +8567 11021 0.9550 +8567 22930 0.8480 +8567 23011 0.4450 +8567 23080 0.4310 +8567 23095 0.4500 +8567 23258 0.4090 +8567 23312 0.9370 +8567 23335 0.8130 +8567 23435 0.4190 +8567 25782 0.8530 +8567 27296 0.4410 +8567 55255 0.7150 +8567 57600 0.5870 +8567 57706 0.9420 +8567 57758 0.4360 +8567 64121 0.4730 +8567 79958 0.4860 +8567 84258 0.5150 +8567 96459 0.6090 +8567 115827 0.4280 +8567 116442 0.5860 +8567 117177 0.4180 +8567 140775 0.7280 +8567 148281 0.6280 +8567 163486 0.6770 +8567 201163 0.6000 +8567 203228 0.6920 +8568 8602 0.8000 +8568 8634 0.4500 +8568 8780 0.5120 +8568 8886 0.9380 +8568 9045 0.7840 +8568 9092 0.4440 +8568 9136 0.8100 +8568 9188 0.4030 +8568 9221 0.5970 +8568 9277 0.8000 +8568 9349 0.7630 +8568 9533 0.7290 +8568 9724 0.7530 +8568 9732 0.6370 +8568 9790 0.8140 +8568 9875 0.4660 +8568 9904 0.7770 +8568 9933 0.7030 +8568 10153 0.7520 +8568 10171 0.8210 +8568 10199 0.7640 +8568 10412 0.9450 +8568 10436 0.5670 +8568 10514 0.5100 +8568 10528 0.8510 +8568 10557 0.5160 +8568 10607 0.9110 +8568 10621 0.4230 +8568 10775 0.5120 +8568 10785 0.5670 +8568 10813 0.7790 +8568 10849 0.7910 +8568 10885 0.7670 +8568 10969 0.9870 +8568 11056 0.7390 +8568 11103 0.8780 +8568 11137 0.7580 +8568 11201 0.4600 +8568 11222 0.5620 +8568 11224 0.7720 +8568 22803 0.4160 +8568 22984 0.8240 +8568 23029 0.4850 +8568 23076 0.7430 +8568 23160 0.8220 +8568 23195 0.6760 +8568 23212 0.9490 +8568 23223 0.7820 +8568 23246 0.9880 +8568 23378 0.7070 +8568 23481 0.9770 +8568 23517 0.4630 +8568 23521 0.5290 +8568 23560 0.9500 +8568 24140 0.4980 +8568 24148 0.4210 +8568 25873 0.7660 +8568 25879 0.7780 +8568 25885 0.6470 +8568 25926 0.4670 +8568 25983 0.7670 +8568 26155 0.9710 +8568 26156 0.9750 +8568 26354 0.8050 +8568 26574 0.4240 +8568 27037 0.4220 +8568 27042 0.6010 +8568 27292 0.6710 +8568 27340 0.6330 +8568 27341 0.7710 +8568 28987 0.7900 +8568 28998 0.4740 +8568 29093 0.5150 +8568 29777 0.4090 +8568 29889 0.7100 +8568 29960 0.4900 +8568 29997 0.7690 +8568 30836 0.5650 +8568 51018 0.9540 +8568 51042 0.5750 +8568 51068 0.4650 +8568 51073 0.8110 +8568 51077 0.6130 +8568 51082 0.7280 +8568 51096 0.7990 +8568 51118 0.8250 +8568 51121 0.5740 +8568 51154 0.9800 +8568 51187 0.9530 +8568 51202 0.8220 +8568 51236 0.5340 +8568 51319 0.4700 +8568 51388 0.9410 +8568 51575 0.7100 +8568 51602 0.7670 +8568 51728 0.5010 +8568 54433 0.4090 +8568 54475 0.7550 +8568 54552 0.7960 +8568 54555 0.7720 +8568 54606 0.6810 +8568 54663 0.9820 +8568 54700 0.4550 +8568 54888 0.5050 +8568 54984 0.5900 +8568 55003 0.6340 +8568 55127 0.5520 +8568 55131 0.7730 +8568 55153 0.7890 +8568 55178 0.4470 +8568 55226 0.6760 +8568 55272 0.7650 +8568 55299 0.9810 +8568 55319 0.6100 +8568 55341 0.7290 +8568 55646 0.7310 +8568 55651 0.8580 +8568 55695 0.6750 +8568 55702 0.4440 +8568 55703 0.4330 +8568 55718 0.4080 +8568 55720 0.7530 +8568 55759 0.9710 +8568 55760 0.4250 +8568 55781 0.6060 +8568 55794 0.5430 +8568 55813 0.7890 +8568 56342 0.8950 +8568 57050 0.8270 +8568 57062 0.5470 +8568 57418 0.4850 +8568 57647 0.6080 +8568 57696 0.6100 +8568 63899 0.4760 +8568 64118 0.4960 +8568 64216 0.5580 +8568 64318 0.8650 +8568 64425 0.5650 +8568 64434 0.6290 +8568 64794 0.5200 +8568 65083 0.6740 +8568 65095 0.4150 +8568 79039 0.7920 +8568 79050 0.8410 +8568 79159 0.7130 +8568 79590 0.5220 +8568 79730 0.5140 +8568 79954 0.7060 +8568 80135 0.9780 +8568 80324 0.4370 +8568 81887 0.6760 +8568 83480 0.6380 +8568 83732 0.6050 +8568 83743 0.8550 +8568 84128 0.7060 +8568 84135 0.7280 +8568 84154 0.9200 +8568 84172 0.6530 +8568 84273 0.5030 +8568 84294 0.5980 +8568 84319 0.6050 +8568 84365 0.9740 +8568 84549 0.9830 +8568 84916 0.7740 +8568 84946 0.7330 +8568 85395 0.4510 +8568 88745 0.5910 +8568 90121 0.6580 +8568 90441 0.6500 +8568 92170 0.4490 +8568 92856 0.8780 +8568 115708 0.4510 +8568 116966 0.5460 +8568 117246 0.9170 +8568 124245 0.4050 +8568 146212 0.7550 +8568 155368 0.4370 +8568 161424 0.6050 +8568 165545 0.4510 +8568 221078 0.8630 +8568 221830 0.7410 +8568 254268 0.5240 +8568 285855 0.7500 +8568 339230 0.4140 +8568 345630 0.4070 +8568 387129 0.6790 +8568 387338 0.5120 +8568 692312 0.7010 +8568 100505478 0.6560 +8568 100526842 0.5700 +8569 8672 0.8050 +8569 9423 0.4450 +8569 9470 0.9150 +8569 10253 0.5950 +8569 10527 0.5150 +8569 26986 0.7210 +8569 54873 0.4320 +8569 117157 0.4660 +8569 148930 0.8050 +8569 253314 0.9120 +8570 8683 0.5600 +8570 8880 0.7890 +8570 8882 0.4710 +8570 8939 0.4930 +8570 9221 0.5420 +8570 9295 0.4230 +8570 9444 0.4200 +8570 9584 0.6540 +8570 9656 0.4750 +8570 9667 0.4230 +8570 9698 0.5820 +8570 9782 0.6320 +8570 9898 0.4730 +8570 9967 0.4470 +8570 9987 0.7140 +8570 9991 0.5920 +8570 10073 0.4390 +8570 10146 0.4670 +8570 10169 0.4120 +8570 10174 0.4100 +8570 10212 0.4540 +8570 10236 0.8840 +8570 10250 0.4250 +8570 10291 0.5940 +8570 10492 0.7150 +8570 10498 0.6660 +8570 10521 0.6270 +8570 10523 0.4750 +8570 10657 0.8980 +8570 10658 0.7910 +8570 10659 0.5350 +8570 10762 0.4920 +8570 10772 0.4470 +8570 10946 0.5550 +8570 10949 0.5890 +8570 11051 0.5080 +8570 11052 0.8070 +8570 11218 0.5420 +8570 11338 0.8710 +8570 11340 0.5290 +8570 22826 0.4100 +8570 22827 0.7670 +8570 22894 0.5560 +8570 22916 0.6740 +8570 23016 0.6510 +8570 23019 0.4570 +8570 23020 0.4090 +8570 23076 0.4410 +8570 23193 0.4420 +8570 23244 0.5260 +8570 23318 0.4800 +8570 23369 0.5570 +8570 23404 0.8000 +8570 23405 0.9790 +8570 23435 0.7510 +8570 23451 0.6330 +8570 23476 0.6620 +8570 23586 0.4470 +8570 23644 0.5060 +8570 25929 0.6390 +8570 26135 0.4910 +8570 26528 0.8390 +8570 26986 0.5400 +8570 27161 0.7140 +8570 27316 0.4960 +8570 27339 0.4940 +8570 29102 0.9850 +8570 29974 0.4170 +8570 50628 0.5140 +8570 51010 0.6120 +8570 51013 0.5290 +8570 51593 0.7360 +8570 51637 0.4150 +8570 51663 0.4620 +8570 51747 0.7390 +8570 51808 0.5560 +8570 54433 0.4630 +8570 54464 0.6340 +8570 54487 0.8490 +8570 54512 0.6290 +8570 54815 0.5060 +8570 55225 0.6150 +8570 55657 0.6050 +8570 55660 0.4590 +8570 55723 0.4010 +8570 55802 0.5390 +8570 56252 0.4650 +8570 56259 0.6950 +8570 56915 0.6270 +8570 57510 0.6120 +8570 58155 0.8610 +8570 58517 0.4770 +8570 59349 0.4030 +8570 79727 0.7250 +8570 79753 0.4020 +8570 79760 0.5050 +8570 79833 0.4370 +8570 79869 0.4280 +8570 80335 0.4310 +8570 84991 0.4990 +8570 118460 0.5280 +8570 120892 0.5270 +8570 124245 0.4500 +8570 124801 0.6040 +8570 140890 0.4340 +8570 167227 0.7890 +8570 202559 0.5120 +8570 219417 0.4100 +8570 220988 0.4640 +8570 221092 0.4110 +8570 283742 0.5850 +8570 284695 0.5420 +8570 348262 0.4430 +8572 9124 0.5630 +8572 9260 0.6290 +8572 10611 0.6020 +8572 10787 0.5710 +8572 11155 0.6060 +8572 23301 0.6120 +8572 23384 0.5490 +8572 23607 0.9000 +8572 27295 0.6800 +8572 29964 0.5810 +8572 53904 0.9010 +8572 55604 0.5400 +8572 56940 0.7340 +8572 56963 0.4780 +8572 57326 0.4070 +8572 64236 0.6440 +8572 83700 0.7200 +8572 83715 0.7230 +8572 84700 0.4440 +8572 89765 0.4060 +8572 92521 0.5490 +8572 219537 0.5490 +8572 254102 0.6180 +8572 342527 0.5490 +8573 8777 0.4700 +8573 8825 0.9990 +8573 8833 0.4330 +8573 9256 0.5140 +8573 9369 0.7190 +8573 9378 0.9380 +8573 9379 0.9190 +8573 9478 0.4880 +8573 9546 0.5320 +8573 9626 0.4430 +8573 9672 0.5330 +8573 9750 0.5050 +8573 9825 0.6840 +8573 9968 0.5600 +8573 10207 0.7080 +8573 10398 0.4390 +8573 10421 0.7200 +8573 10497 0.6240 +8573 10518 0.4590 +8573 10519 0.4440 +8573 10590 0.4390 +8573 10627 0.4390 +8573 10716 0.9270 +8573 10815 0.5030 +8573 11078 0.5180 +8573 11261 0.4420 +8573 11344 0.8040 +8573 22829 0.7880 +8573 22871 0.8080 +8573 22999 0.6280 +8573 23136 0.5950 +8573 23413 0.4430 +8573 23705 0.6130 +8573 25794 0.5110 +8573 25861 0.9680 +8573 26047 0.4550 +8573 26084 0.4540 +8573 26150 0.4390 +8573 27133 0.4880 +8573 27197 0.4710 +8573 29895 0.4390 +8573 30818 0.4430 +8573 30819 0.4430 +8573 30820 0.4430 +8573 50848 0.6140 +8573 51168 0.8000 +8573 51440 0.4430 +8573 51475 0.4390 +8573 51720 0.4290 +8573 51806 0.7380 +8573 53405 0.4990 +8573 53904 0.8090 +8573 54093 0.4030 +8573 54413 0.7860 +8573 54997 0.4390 +8573 55243 0.5760 +8573 55327 0.9870 +8573 56344 0.4390 +8573 57010 0.4390 +8573 57502 0.8090 +8573 57513 0.6650 +8573 57524 0.9720 +8573 57555 0.7970 +8573 57576 0.9190 +8573 57669 0.5720 +8573 58498 0.4390 +8573 63928 0.4390 +8573 64061 0.5740 +8573 64130 0.9960 +8573 64787 0.8670 +8573 64800 0.4390 +8573 79645 0.4430 +8573 80333 0.4430 +8573 83543 0.4390 +8573 83698 0.4390 +8573 83715 0.8110 +8573 83988 0.4470 +8573 84288 0.4390 +8573 84455 0.4410 +8573 84623 0.4650 +8573 84747 0.4440 +8573 85445 0.4380 +8573 90141 0.5150 +8573 90167 0.9320 +8573 91860 0.7380 +8573 93408 0.4390 +8573 103910 0.4410 +8573 116143 0.4470 +8573 117286 0.4390 +8573 117583 0.4500 +8573 124989 0.4390 +8573 129446 0.5290 +8573 130106 0.4390 +8573 140465 0.4390 +8573 140469 0.8090 +8573 143098 0.4780 +8573 146779 0.4390 +8573 158787 0.4730 +8573 162494 0.4520 +8573 163688 0.7380 +8573 164633 0.4390 +8573 260425 0.4010 +8573 285588 0.4390 +8573 286262 0.4990 +8573 339768 0.8110 +8573 343263 0.4200 +8573 374955 0.4390 +8573 388428 0.4390 +8573 389207 0.5150 +8573 389813 0.4380 +8573 494513 0.4990 +8573 643226 0.5070 +8573 654231 0.4390 +8573 729920 0.4450 +8573 100506658 0.5300 +8574 8644 0.7040 +8574 9242 0.4400 +8574 9360 0.4230 +8574 9380 0.4760 +8574 9883 0.4670 +8574 10120 0.5760 +8574 10121 0.6330 +8574 10134 0.4370 +8574 10327 0.8560 +8574 10540 0.6160 +8574 10671 0.5020 +8574 22890 0.6090 +8574 22977 0.9850 +8574 23065 0.4110 +8574 28978 0.5050 +8574 29882 0.4140 +8574 51154 0.4240 +8574 51164 0.5740 +8574 54995 0.4410 +8574 55349 0.4590 +8574 55746 0.5710 +8574 55860 0.4910 +8574 56912 0.4480 +8574 57016 0.7810 +8574 57122 0.5590 +8574 57727 0.4720 +8574 79902 0.4920 +8574 81929 0.4920 +8574 83592 0.6020 +8574 84869 0.4020 +8574 137872 0.5250 +8574 221357 0.4270 +8574 340811 0.4170 +8574 441282 0.6580 +8574 100101267 0.4680 +8575 8910 0.6000 +8575 8994 0.5440 +8575 9513 0.5570 +8575 9692 0.7350 +8575 9782 0.4410 +8575 9908 0.4820 +8575 9939 0.5090 +8575 9971 0.4430 +8575 10146 0.6250 +8575 10248 0.7340 +8575 10382 0.4340 +8575 10556 0.7310 +8575 10557 0.7220 +8575 10633 0.4260 +8575 10775 0.7250 +8575 10799 0.7240 +8575 10940 0.7560 +8575 10969 0.6070 +8575 10978 0.7220 +8575 11102 0.7230 +8575 23405 0.9990 +8575 23560 0.6310 +8575 23567 0.5960 +8575 23586 0.8220 +8575 25792 0.4550 +8575 25953 0.4510 +8575 26523 0.9360 +8575 27044 0.6970 +8575 27067 0.6390 +8575 27161 0.9650 +8575 27327 0.6450 +8575 29102 0.9400 +8575 51367 0.7250 +8575 54487 0.9070 +8575 54913 0.7200 +8575 54931 0.5630 +8575 55145 0.6720 +8575 55342 0.6950 +8575 55646 0.7820 +8575 55922 0.6440 +8575 56947 0.5370 +8575 57510 0.8300 +8575 63982 0.5700 +8575 64135 0.7330 +8575 64318 0.6090 +8575 65080 0.5520 +8575 79009 0.7010 +8575 79169 0.5010 +8575 79698 0.6080 +8575 79897 0.7250 +8575 80746 0.5720 +8575 94241 0.4250 +8575 112476 0.4080 +8575 114609 0.4590 +8575 115098 0.5920 +8575 120892 0.4110 +8575 138716 0.5430 +8575 167227 0.5750 +8575 192669 0.8340 +8575 192670 0.8560 +8575 256643 0.4690 +8575 283989 0.5500 +8576 8928 0.4340 +8576 53944 0.5190 +8576 55139 0.4100 +8576 55577 0.4770 +8576 60672 0.5870 +8576 65987 0.6080 +8576 90956 0.4160 +8576 140628 0.4290 +8577 10202 0.4350 +8577 10468 0.4340 +8577 25921 0.7850 +8577 27032 0.4330 +8577 51125 0.4220 +8577 56650 0.6080 +8577 56980 0.4200 +8577 79896 0.4270 +8577 91283 0.6930 +8577 405754 0.4350 +8578 10461 0.4030 +8578 10525 0.8550 +8578 10677 0.4160 +8578 22899 0.4790 +8578 22918 0.4150 +8578 23166 0.8730 +8578 29928 0.7140 +8578 51380 0.4480 +8578 54329 0.5570 +8578 54558 0.5760 +8578 54891 0.4030 +8578 55266 0.4300 +8578 55311 0.7900 +8578 55576 0.4280 +8578 55764 0.5700 +8578 56920 0.4440 +8578 64581 0.7510 +8578 81035 0.4210 +8578 91937 0.4040 +8578 116071 0.4610 +8578 118429 0.4430 +8578 118932 0.4160 +8578 126147 0.4150 +8578 161198 0.4070 +8578 286753 0.7250 +8578 339896 0.4120 +8578 727857 0.7590 +8581 23650 0.5650 +8581 50486 0.4080 +8581 54742 0.4600 +8581 57152 0.5950 +8581 57192 0.5510 +8581 58530 0.4010 +8581 137797 0.4040 +8590 25798 0.7660 +8590 26531 0.5060 +8590 26658 0.5180 +8590 26659 0.5370 +8590 26686 0.4990 +8590 50834 0.5700 +8590 51764 0.6820 +8590 65055 0.4260 +8590 119695 0.5360 +8590 120775 0.7900 +8590 120776 0.9990 +8590 125958 0.5300 +8590 132112 0.5040 +8590 135946 0.5270 +8590 144124 0.7450 +8590 144125 0.9930 +8590 219438 0.5300 +8590 219477 0.5220 +8590 219493 0.5280 +8590 219858 0.5160 +8590 219957 0.5110 +8590 219968 0.5130 +8590 282775 0.5300 +8590 283297 0.5380 +8590 284521 0.5040 +8590 341276 0.4390 +8590 344892 0.5020 +8590 390059 0.5370 +8590 390082 0.5070 +8590 390155 0.5650 +8590 390157 0.5190 +8590 390275 0.5220 +8590 390892 0.5420 +8590 391196 0.5080 +8590 401427 0.5500 +8590 442184 0.5400 +8600 8740 0.7060 +8600 8742 0.7420 +8600 8743 0.4820 +8600 8744 0.5430 +8600 8764 0.4170 +8600 8771 0.4210 +8600 8784 0.4160 +8600 8792 0.9990 +8600 8795 0.5440 +8600 8797 0.5660 +8600 8817 0.4740 +8600 8822 0.4470 +8600 8823 0.4490 +8600 8878 0.4950 +8600 9020 0.6090 +8600 9241 0.4140 +8600 9365 0.4560 +8600 9370 0.4800 +8600 9451 0.4490 +8600 9527 0.4220 +8600 9842 0.6450 +8600 9923 0.5840 +8600 9935 0.4510 +8600 10197 0.4260 +8600 10312 0.7520 +8600 10507 0.6300 +8600 10563 0.5630 +8600 10631 0.4350 +8600 10673 0.8800 +8600 10763 0.4610 +8600 11215 0.4970 +8600 22943 0.7670 +8600 26281 0.4540 +8600 27006 0.4480 +8600 28962 0.7510 +8600 29760 0.4680 +8600 29887 0.4300 +8600 50489 0.4980 +8600 50616 0.5140 +8600 50943 0.5320 +8600 50964 0.9270 +8600 51176 0.5070 +8600 51330 0.5960 +8600 51384 0.4560 +8600 54209 0.4190 +8600 54361 0.6400 +8600 55258 0.4450 +8600 55366 0.8930 +8600 56955 0.5700 +8600 79974 0.5170 +8600 81501 0.8310 +8600 89780 0.5060 +8600 90865 0.4300 +8600 112744 0.4630 +8600 115650 0.6760 +8600 121340 0.7910 +8600 122706 0.5020 +8600 122953 0.4740 +8600 126014 0.8160 +8600 128506 0.6730 +8600 133482 0.5240 +8600 136306 0.4030 +8600 137902 0.5520 +8600 143471 0.4210 +8600 146433 0.4090 +8600 245972 0.6960 +8601 8786 0.5930 +8601 8787 0.5570 +8601 8801 0.8530 +8601 8802 0.7280 +8601 9138 0.7910 +8601 9371 0.6090 +8601 9568 0.4170 +8601 9628 0.6000 +8601 9826 0.7880 +8601 10003 0.4080 +8601 10287 0.6830 +8601 10539 0.6250 +8601 10636 0.5880 +8601 10672 0.7690 +8601 10681 0.9470 +8601 10755 0.4440 +8601 10846 0.4040 +8601 11075 0.4170 +8601 11216 0.6620 +8601 23161 0.5270 +8601 23365 0.5990 +8601 23557 0.4240 +8601 26059 0.4290 +8601 26499 0.6660 +8601 26575 0.5310 +8601 28962 0.4260 +8601 51027 0.5510 +8601 51573 0.4520 +8601 51764 0.5180 +8601 54331 0.5370 +8601 55970 0.5480 +8601 57019 0.6160 +8601 57231 0.4710 +8601 59345 0.6430 +8601 60626 0.5700 +8601 64089 0.4530 +8601 64407 0.5590 +8601 83891 0.4430 +8601 85397 0.5330 +8601 94235 0.5240 +8601 115557 0.6670 +8601 116443 0.4080 +8601 259173 0.4100 +8601 346562 0.6690 +8601 353132 0.5910 +8601 353299 0.7710 +8601 388531 0.5170 +8601 401190 0.7330 +8601 431704 0.5660 +8601 440023 0.4200 +8602 8603 0.4820 +8602 8634 0.8860 +8602 8780 0.8280 +8602 8886 0.9140 +8602 8890 0.4350 +8602 9136 0.9980 +8602 9188 0.5060 +8602 9221 0.6690 +8602 9277 0.9990 +8602 9320 0.4060 +8602 9416 0.4020 +8602 9533 0.5410 +8602 9704 0.6290 +8602 9724 0.9890 +8602 9732 0.5130 +8602 9775 0.8460 +8602 9785 0.4550 +8602 9790 0.9990 +8602 9875 0.6320 +8602 9904 0.9140 +8602 9933 0.9120 +8602 10153 0.9370 +8602 10171 0.9920 +8602 10180 0.5080 +8602 10181 0.5140 +8602 10199 0.9980 +8602 10200 0.4850 +8602 10227 0.6000 +8602 10412 0.6840 +8602 10436 0.9990 +8602 10438 0.7560 +8602 10514 0.8270 +8602 10521 0.4420 +8602 10526 0.4980 +8602 10527 0.5060 +8602 10528 0.9960 +8602 10552 0.4940 +8602 10557 0.8500 +8602 10607 0.9980 +8602 10785 0.4600 +8602 10813 0.9980 +8602 10849 0.6420 +8602 10885 0.9960 +8602 10969 0.8630 +8602 11056 0.9780 +8602 11103 0.9990 +8602 11128 0.4630 +8602 11137 0.6990 +8602 11269 0.4170 +8602 11340 0.7940 +8602 22803 0.5820 +8602 22872 0.4450 +8602 22894 0.4970 +8602 22976 0.4460 +8602 22984 0.9990 +8602 23016 0.7790 +8602 23029 0.8400 +8602 23054 0.8600 +8602 23076 0.8290 +8602 23131 0.5170 +8602 23160 0.9980 +8602 23204 0.6350 +8602 23212 0.7020 +8602 23223 0.9980 +8602 23246 0.9610 +8602 23378 0.8580 +8602 23404 0.7640 +8602 23481 0.9780 +8602 23517 0.8920 +8602 23560 0.9280 +8602 23673 0.4220 +8602 24140 0.6610 +8602 25879 0.9970 +8602 25885 0.8450 +8602 25926 0.8460 +8602 25983 0.9940 +8602 26155 0.9680 +8602 26156 0.9920 +8602 26168 0.6020 +8602 26354 0.7270 +8602 26574 0.9970 +8602 26995 0.4420 +8602 27037 0.4160 +8602 27042 0.9840 +8602 27043 0.6160 +8602 27292 0.8650 +8602 27340 0.9990 +8602 27341 0.9890 +8602 28987 0.9540 +8602 29102 0.4480 +8602 29777 0.9830 +8602 29889 0.9180 +8602 29960 0.6410 +8602 29997 0.8720 +8602 30836 0.9720 +8602 51010 0.7230 +8602 51013 0.7770 +8602 51018 0.7590 +8602 51042 0.4100 +8602 51065 0.8550 +8602 51068 0.6990 +8602 51073 0.6850 +8602 51077 0.9930 +8602 51081 0.6520 +8602 51096 0.9970 +8602 51106 0.5780 +8602 51118 0.9980 +8602 51149 0.7930 +8602 51154 0.7160 +8602 51187 0.8990 +8602 51202 0.9290 +8602 51236 0.4180 +8602 51319 0.5680 +8602 51388 0.7370 +8602 51490 0.4870 +8602 51538 0.5090 +8602 51575 0.9180 +8602 51602 0.9980 +8602 51605 0.5630 +8602 51649 0.4440 +8602 54433 0.4640 +8602 54512 0.7560 +8602 54517 0.4600 +8602 54552 0.7460 +8602 54555 0.9210 +8602 54606 0.8860 +8602 54617 0.4530 +8602 54663 0.8270 +8602 54680 0.4720 +8602 54859 0.4440 +8602 54865 0.5510 +8602 54881 0.6650 +8602 54888 0.4310 +8602 54974 0.4160 +8602 54984 0.4520 +8602 55003 0.6880 +8602 55006 0.4560 +8602 55105 0.8410 +8602 55109 0.5080 +8602 55127 0.9950 +8602 55131 0.9460 +8602 55153 0.9550 +8602 55226 0.9990 +8602 55272 0.9920 +8602 55299 0.9000 +8602 55319 0.6640 +8602 55341 0.7600 +8602 55505 0.4110 +8602 55601 0.4520 +8602 55622 0.4350 +8602 55646 0.8700 +8602 55651 0.6160 +8602 55668 0.8410 +8602 55695 0.5710 +8602 55703 0.5750 +8602 55720 0.9780 +8602 55759 0.9440 +8602 55760 0.6470 +8602 55781 0.9510 +8602 55794 0.6330 +8602 55813 0.9970 +8602 56342 0.6740 +8602 56902 0.9500 +8602 56915 0.7350 +8602 56919 0.6430 +8602 56931 0.6050 +8602 57050 0.9990 +8602 57062 0.8900 +8602 57109 0.4900 +8602 57418 0.8290 +8602 57647 0.9750 +8602 57696 0.7810 +8602 60625 0.6330 +8602 64118 0.4290 +8602 64216 0.7810 +8602 64318 0.8740 +8602 64425 0.7330 +8602 64434 0.9020 +8602 64745 0.4540 +8602 64794 0.8710 +8602 64960 0.6420 +8602 64963 0.6600 +8602 65083 0.9990 +8602 65095 0.9440 +8602 79009 0.4520 +8602 79039 0.8910 +8602 79050 0.9990 +8602 79159 0.7010 +8602 79571 0.8600 +8602 79665 0.5450 +8602 79707 0.5910 +8602 79711 0.4860 +8602 79730 0.4700 +8602 79954 0.9960 +8602 79979 0.4160 +8602 80135 0.6950 +8602 80324 0.5050 +8602 81887 0.6750 +8602 83479 0.4200 +8602 83480 0.5800 +8602 83732 0.9120 +8602 83743 0.7140 +8602 84128 0.9970 +8602 84135 0.9910 +8602 84154 0.8840 +8602 84172 0.8000 +8602 84273 0.4070 +8602 84294 0.8810 +8602 84310 0.4170 +8602 84319 0.5720 +8602 84365 0.8690 +8602 84549 0.8800 +8602 84916 0.9980 +8602 84946 0.9760 +8602 85395 0.7470 +8602 88745 0.8600 +8602 90121 0.7650 +8602 90381 0.5800 +8602 91646 0.4150 +8602 91752 0.5040 +8602 91893 0.4090 +8602 92345 0.4620 +8602 92856 0.9970 +8602 115708 0.6210 +8602 115752 0.4780 +8602 116966 0.5240 +8602 117246 0.9590 +8602 118460 0.6680 +8602 126402 0.6470 +8602 126789 0.4490 +8602 129563 0.5280 +8602 140032 0.7740 +8602 142940 0.4150 +8602 146212 0.7550 +8602 153443 0.8330 +8602 155368 0.6160 +8602 161424 0.8200 +8602 165545 0.6440 +8602 219578 0.5040 +8602 221078 0.7850 +8602 221830 0.7990 +8602 285855 0.6220 +8602 317781 0.4500 +8602 344758 0.4150 +8602 345630 0.9600 +8602 387129 0.5940 +8602 641776 0.4500 +8602 643909 0.4500 +8602 692312 0.6160 +8602 728524 0.4500 +8602 100505478 0.5590 +8602 100996746 0.4500 +8602 105180390 0.4500 +8602 105180391 0.4500 +8603 10540 0.7560 +8603 24149 0.5450 +8603 51164 0.4070 +8603 56478 0.4690 +8604 9322 0.4490 +8604 10157 0.4040 +8604 10165 0.8090 +8604 10452 0.6060 +8604 10651 0.6730 +8604 10989 0.4260 +8604 11069 0.5490 +8604 11331 0.6810 +8604 23191 0.4420 +8604 23787 0.7020 +8604 23788 0.5890 +8604 25813 0.4700 +8604 26517 0.9710 +8604 26519 0.6810 +8604 26520 0.7330 +8604 26521 0.6830 +8604 27347 0.6450 +8604 29928 0.6960 +8604 54970 0.4120 +8604 55101 0.4240 +8604 81570 0.4380 +8604 90550 0.5030 +8604 125988 0.4350 +8604 100287932 0.9160 +8605 8694 0.4530 +8605 8767 0.4260 +8605 9050 0.4990 +8605 9218 0.4280 +8605 9415 0.6870 +8605 9791 0.6710 +8605 10390 0.6850 +8605 10400 0.6500 +8605 10434 0.6510 +8605 10672 0.6550 +8605 10908 0.7960 +8605 11145 0.7830 +8605 11283 0.6680 +8605 23646 0.6610 +8605 23659 0.7930 +8605 23761 0.6710 +8605 26279 0.5060 +8605 30814 0.4110 +8605 50640 0.7070 +8605 51365 0.4560 +8605 54947 0.6920 +8605 55349 0.6030 +8605 56994 0.6610 +8605 64600 0.4510 +8605 79153 0.7130 +8605 79888 0.7290 +8605 81490 0.6520 +8605 81579 0.5740 +8605 84647 0.4860 +8605 85465 0.6610 +8605 113612 0.6810 +8605 122618 0.6590 +8605 133121 0.6780 +8605 151056 0.7410 +8605 161247 0.4220 +8605 254531 0.6960 +8605 255043 0.6500 +8605 284161 0.7190 +8605 284541 0.6650 +8605 375775 0.7710 +8605 387521 0.6500 +8605 387522 0.6500 +8607 8624 0.6250 +8607 8661 0.4370 +8607 8662 0.6690 +8607 8665 0.4840 +8607 8666 0.5220 +8607 8668 0.6840 +8607 8725 0.9860 +8607 8850 0.5650 +8607 8900 0.5520 +8607 8968 0.8760 +8607 8970 0.9480 +8607 9044 0.4300 +8607 9045 0.5330 +8607 9055 0.4150 +8607 9070 0.5880 +8607 9136 0.5020 +8607 9212 0.4320 +8607 9221 0.5960 +8607 9255 0.4580 +8607 9318 0.4840 +8607 9319 0.4860 +8607 9325 0.4420 +8607 9326 0.7700 +8607 9343 0.6710 +8607 9401 0.4500 +8607 9440 0.6910 +8607 9531 0.5540 +8607 9532 0.5690 +8607 9533 0.6360 +8607 9555 0.5300 +8607 9577 0.4300 +8607 9627 0.4330 +8607 9675 0.9860 +8607 9704 0.4240 +8607 9757 0.5950 +8607 9775 0.4570 +8607 9782 0.4920 +8607 9894 0.9630 +8607 9939 0.4650 +8607 9978 0.4790 +8607 10013 0.4130 +8607 10038 0.4280 +8607 10055 0.4070 +8607 10075 0.5940 +8607 10078 0.4370 +8607 10120 0.5530 +8607 10121 0.4780 +8607 10131 0.4020 +8607 10155 0.8010 +8607 10189 0.4750 +8607 10236 0.5620 +8607 10270 0.5190 +8607 10273 0.6570 +8607 10383 0.4560 +8607 10399 0.6340 +8607 10419 0.5310 +8607 10428 0.9800 +8607 10432 0.4180 +8607 10445 0.9730 +8607 10452 0.4300 +8607 10454 0.4250 +8607 10467 0.9980 +8607 10471 0.9830 +8607 10480 0.5350 +8607 10492 0.4460 +8607 10524 0.9990 +8607 10528 0.8410 +8607 10574 0.8800 +8607 10575 0.8410 +8607 10576 0.8390 +8607 10594 0.6230 +8607 10598 0.4270 +8607 10693 0.6540 +8607 10694 0.8020 +8607 10713 0.4420 +8607 10726 0.5670 +8607 10728 0.8280 +8607 10847 0.9990 +8607 10856 0.9990 +8607 10902 0.9950 +8607 10920 0.4260 +8607 10933 0.9930 +8607 10943 0.9190 +8607 10946 0.4170 +8607 10963 0.7810 +8607 10969 0.4170 +8607 10980 0.5240 +8607 10987 0.5040 +8607 11044 0.4430 +8607 11091 0.9390 +8607 11140 0.7360 +8607 11143 0.4120 +8607 11198 0.5160 +8607 11200 0.4320 +8607 11319 0.5000 +8607 11321 0.9130 +8607 11331 0.4440 +8607 11335 0.5100 +8607 11338 0.4310 +8607 11339 0.5500 +8607 22907 0.4600 +8607 22948 0.8640 +8607 23020 0.4270 +8607 23049 0.8000 +8607 23135 0.5520 +8607 23234 0.6140 +8607 23269 0.9000 +8607 23361 0.4680 +8607 23421 0.5160 +8607 23435 0.4840 +8607 23476 0.5990 +8607 23559 0.9520 +8607 23753 0.5600 +8607 25788 0.4140 +8607 25862 0.4010 +8607 25911 0.8810 +8607 25980 0.6490 +8607 26015 0.8540 +8607 26121 0.9640 +8607 26122 0.9690 +8607 26155 0.5790 +8607 26168 0.9060 +8607 26353 0.5400 +8607 26747 0.8110 +8607 26986 0.6800 +8607 27031 0.4160 +8607 27043 0.9250 +8607 27316 0.4140 +8607 27339 0.5230 +8607 29118 0.4040 +8607 29777 0.6080 +8607 29844 0.9690 +8607 29915 0.5690 +8607 29922 0.4960 +8607 29997 0.4040 +8607 50485 0.4090 +8607 50813 0.4460 +8607 51001 0.7500 +8607 51105 0.5400 +8607 51138 0.5060 +8607 51154 0.5300 +8607 51176 0.9400 +8607 51187 0.4110 +8607 51230 0.9110 +8607 51377 0.9860 +8607 51398 0.5640 +8607 51412 0.9070 +8607 51493 0.4240 +8607 51602 0.9790 +8607 51637 0.4290 +8607 51710 0.4680 +8607 51726 0.5850 +8607 51773 0.5540 +8607 54069 0.5410 +8607 54145 0.7550 +8607 54433 0.7780 +8607 54556 0.9950 +8607 54584 0.4090 +8607 54606 0.5010 +8607 54617 0.9990 +8607 54680 0.7790 +8607 54799 0.9760 +8607 54821 0.4340 +8607 54881 0.9110 +8607 54891 0.9630 +8607 54919 0.4030 +8607 54934 0.7590 +8607 55011 0.9990 +8607 55127 0.4860 +8607 55135 0.8590 +8607 55164 0.8610 +8607 55166 0.5130 +8607 55167 0.9010 +8607 55172 0.7160 +8607 55181 0.5610 +8607 55226 0.4240 +8607 55257 0.9900 +8607 55308 0.4070 +8607 55320 0.4990 +8607 55355 0.8780 +8607 55505 0.9610 +8607 55636 0.4470 +8607 55651 0.9530 +8607 55683 0.7200 +8607 55689 0.7620 +8607 55766 0.6500 +8607 55839 0.5510 +8607 55929 0.9990 +8607 56006 0.5490 +8607 56683 0.4430 +8607 56915 0.4720 +8607 56984 0.5760 +8607 57003 0.5780 +8607 57082 0.5330 +8607 57634 0.9990 +8607 57680 0.9420 +8607 57695 0.8000 +8607 60678 0.4440 +8607 63922 0.6560 +8607 64105 0.5230 +8607 64421 0.4330 +8607 64431 0.9990 +8607 64708 0.4340 +8607 64769 0.9820 +8607 64946 0.5910 +8607 65123 0.7460 +8607 79019 0.5440 +8607 79050 0.4820 +8607 79084 0.4270 +8607 79172 0.5340 +8607 79613 0.4520 +8607 79618 0.4800 +8607 79657 0.9990 +8607 79682 0.5440 +8607 79819 0.5680 +8607 79871 0.8080 +8607 79913 0.9990 +8607 80152 0.4990 +8607 80185 0.9640 +8607 80205 0.4050 +8607 80304 0.7530 +8607 80314 0.9860 +8607 80818 0.4680 +8607 81533 0.4710 +8607 81572 0.9360 +8607 81611 0.9490 +8607 81887 0.9020 +8607 83439 0.9130 +8607 83444 0.9990 +8607 83743 0.6020 +8607 83758 0.5060 +8607 84148 0.9370 +8607 84154 0.4290 +8607 84181 0.4660 +8607 84661 0.5780 +8607 85235 0.5800 +8607 85236 0.7540 +8607 91607 0.4200 +8607 91687 0.5430 +8607 92815 0.5800 +8607 93624 0.4970 +8607 93973 0.9980 +8607 94031 0.4760 +8607 94239 0.9170 +8607 115560 0.4680 +8607 116143 0.9590 +8607 116447 0.4030 +8607 120379 0.9720 +8607 121053 0.7990 +8607 121504 0.8670 +8607 124944 0.9000 +8607 125476 0.9990 +8607 128312 0.7940 +8607 139212 0.6030 +8607 148266 0.4720 +8607 150160 0.5910 +8607 151050 0.5400 +8607 158983 0.5310 +8607 161582 0.6830 +8607 201254 0.5190 +8607 221613 0.5800 +8607 221895 0.6990 +8607 254394 0.5790 +8607 255626 0.9020 +8607 283899 0.9860 +8607 284058 0.9060 +8607 284390 0.4680 +8607 286436 0.5310 +8607 317772 0.5830 +8607 339287 0.9030 +8607 345630 0.6920 +8607 345651 0.7140 +8607 378708 0.5610 +8607 387103 0.5470 +8607 401541 0.5660 +8607 440093 0.5640 +8607 440686 0.5640 +8607 440689 0.5370 +8607 474382 0.6500 +8607 554313 0.8620 +8607 653604 0.5680 +8607 728378 0.4520 +8607 100529209 0.5400 +8607 100885850 0.4080 +8607 110599588 0.6420 +8607 114483833 0.5310 +8608 8694 0.9140 +8608 8854 0.9370 +8608 9227 0.9460 +8608 10901 0.4850 +8608 53630 0.9270 +8608 54884 0.9210 +8608 64577 0.4170 +8608 79154 0.4010 +8608 123876 0.4690 +8608 158835 0.9060 +8608 339761 0.9070 +8608 348158 0.4420 +8609 23036 0.4570 +8609 23126 0.4100 +8609 79727 0.4480 +8609 79923 0.4360 +8609 81545 0.9260 +8609 118429 0.4160 +8609 201456 0.4420 +8611 8612 0.4990 +8611 8694 0.6510 +8611 8877 0.4740 +8611 8879 0.4520 +8611 9296 0.4770 +8611 9663 0.5090 +8611 10423 0.4190 +8611 10554 0.5740 +8611 10555 0.4980 +8611 22913 0.4160 +8611 23175 0.5770 +8611 27235 0.4200 +8611 54675 0.4560 +8611 56848 0.4180 +8611 56894 0.5220 +8611 56994 0.4080 +8611 57026 0.4250 +8611 57678 0.4160 +8611 63924 0.4710 +8611 64781 0.4110 +8611 64900 0.4960 +8611 79888 0.4860 +8611 81537 0.4660 +8611 84513 0.4510 +8611 84649 0.6470 +8611 84803 0.5380 +8611 116255 0.5240 +8611 130367 0.4800 +8611 137964 0.4280 +8611 138046 0.5080 +8611 196051 0.4300 +8611 403313 0.9410 +8612 8613 0.9500 +8612 8694 0.9780 +8612 8760 0.9470 +8612 8877 0.9360 +8612 8879 0.9420 +8612 9388 0.7240 +8612 9489 0.4990 +8612 9663 0.9750 +8612 10390 0.9340 +8612 10423 0.6790 +8612 10554 0.9620 +8612 10555 0.9670 +8612 23171 0.8320 +8612 23175 0.9850 +8612 23305 0.4110 +8612 23646 0.6930 +8612 27163 0.4030 +8612 27235 0.4200 +8612 29956 0.9310 +8612 54675 0.4020 +8612 54995 0.4050 +8612 55326 0.7730 +8612 55331 0.9380 +8612 55512 0.9130 +8612 55627 0.9190 +8612 56624 0.9100 +8612 56848 0.9380 +8612 56894 0.8150 +8612 56895 0.7850 +8612 56994 0.9580 +8612 57026 0.4070 +8612 57104 0.8300 +8612 57678 0.4390 +8612 57704 0.9000 +8612 63924 0.4940 +8612 64781 0.4380 +8612 64900 0.9660 +8612 79603 0.9310 +8612 79887 0.4460 +8612 79888 0.4990 +8612 80168 0.7740 +8612 80339 0.7810 +8612 81537 0.9420 +8612 84513 0.9400 +8612 84649 0.9710 +8612 84803 0.5450 +8612 85465 0.9490 +8612 91012 0.9280 +8612 116255 0.8450 +8612 119548 0.6610 +8612 122618 0.6820 +8612 123099 0.9100 +8612 125981 0.9210 +8612 129642 0.8730 +8612 130367 0.9640 +8612 137964 0.4440 +8612 154141 0.6750 +8612 158833 0.4410 +8612 166929 0.9230 +8612 196051 0.9430 +8612 201501 0.4180 +8612 204219 0.9300 +8612 253558 0.7670 +8612 253782 0.9320 +8612 254531 0.5080 +8612 256281 0.4320 +8612 259230 0.9190 +8612 339221 0.9010 +8612 340485 0.9250 +8612 346606 0.7410 +8612 388963 0.4180 +8612 403313 0.4900 +8613 8694 0.9620 +8613 8760 0.9390 +8613 8877 0.9530 +8613 8879 0.9500 +8613 9388 0.7160 +8613 9489 0.4600 +8613 9663 0.9740 +8613 10390 0.9340 +8613 10423 0.6440 +8613 10554 0.9540 +8613 10555 0.9650 +8613 23171 0.8220 +8613 23175 0.9730 +8613 23566 0.4250 +8613 23646 0.6710 +8613 27235 0.4200 +8613 27329 0.4020 +8613 29956 0.9260 +8613 54675 0.4580 +8613 55326 0.7300 +8613 55331 0.9110 +8613 55512 0.9130 +8613 55627 0.9220 +8613 56624 0.9110 +8613 56848 0.9530 +8613 56894 0.8420 +8613 56895 0.8540 +8613 56994 0.9490 +8613 57104 0.7430 +8613 57704 0.9000 +8613 63924 0.4300 +8613 64900 0.9610 +8613 65220 0.4430 +8613 79153 0.4090 +8613 79603 0.9290 +8613 80168 0.7490 +8613 80339 0.7190 +8613 81537 0.9460 +8613 84513 0.9090 +8613 84649 0.9520 +8613 84803 0.4730 +8613 85465 0.9420 +8613 91012 0.9190 +8613 116255 0.7660 +8613 119548 0.6600 +8613 122618 0.6740 +8613 123099 0.9040 +8613 124976 0.4870 +8613 125981 0.9200 +8613 129642 0.8460 +8613 130367 0.9450 +8613 137964 0.4790 +8613 154141 0.7080 +8613 166929 0.9210 +8613 196051 0.9080 +8613 204219 0.9260 +8613 253558 0.7550 +8613 253782 0.9250 +8613 254531 0.4070 +8613 259230 0.9230 +8613 284161 0.4090 +8613 339221 0.9080 +8613 340485 0.9200 +8613 346606 0.7350 +8613 375056 0.4270 +8613 388931 0.4120 +8613 403313 0.4130 +8614 9076 0.5270 +8614 11065 0.4460 +8614 54757 0.4480 +8614 56975 0.6590 +8614 57118 0.4260 +8614 60676 0.5050 +8614 78987 0.4400 +8614 79616 0.4730 +8614 91272 0.8330 +8614 114786 0.4830 +8614 284257 0.7810 +8615 8650 0.4210 +8615 8678 0.5690 +8615 8729 0.7740 +8615 8774 0.6010 +8615 8775 0.7230 +8615 9117 0.6650 +8615 9253 0.4290 +8615 9276 0.7260 +8615 9321 0.7740 +8615 9382 0.5060 +8615 9463 0.4210 +8615 9527 0.9910 +8615 9554 0.8460 +8615 9570 0.9940 +8615 9632 0.7610 +8615 9648 0.4770 +8615 9871 0.7510 +8615 9919 0.8250 +8615 9950 0.6680 +8615 10113 0.6650 +8615 10142 0.4930 +8615 10175 0.5650 +8615 10282 0.9820 +8615 10427 0.8340 +8615 10483 0.4330 +8615 10484 0.7040 +8615 10494 0.6270 +8615 10615 0.5030 +8615 10652 0.8810 +8615 10802 0.7440 +8615 10959 0.5830 +8615 10960 0.5120 +8615 10972 0.6130 +8615 10973 0.4370 +8615 11196 0.5280 +8615 11218 0.4510 +8615 11231 0.5680 +8615 11316 0.6530 +8615 22796 0.6830 +8615 22818 0.5630 +8615 22820 0.5960 +8615 22863 0.4530 +8615 22872 0.4990 +8615 22878 0.6260 +8615 23039 0.4600 +8615 23256 0.9700 +8615 23376 0.4540 +8615 25839 0.4050 +8615 25956 0.4170 +8615 26003 0.7320 +8615 26049 0.4360 +8615 26958 0.5760 +8615 26984 0.7830 +8615 27095 0.6960 +8615 51026 0.4110 +8615 51134 0.4480 +8615 51226 0.5270 +8615 51272 0.9850 +8615 51290 0.4310 +8615 51399 0.5020 +8615 51560 0.4030 +8615 53407 0.5110 +8615 55014 0.5910 +8615 55160 0.4170 +8615 55196 0.4670 +8615 56681 0.4050 +8615 57511 0.7100 +8615 58485 0.6770 +8615 60561 0.5400 +8615 63908 0.5890 +8615 64083 0.8270 +8615 64398 0.4220 +8615 64689 0.9900 +8615 79090 0.5450 +8615 79571 0.4990 +8615 79748 0.5160 +8615 81562 0.5120 +8615 81876 0.9100 +8615 83452 0.5400 +8615 83548 0.7080 +8615 90411 0.5680 +8615 92335 0.5490 +8615 126003 0.5120 +8615 133383 0.5280 +8615 143098 0.4050 +8615 144108 0.4470 +8615 149111 0.5310 +8615 150786 0.5970 +8615 201931 0.4420 +8615 254263 0.5310 +8615 339122 0.4620 +8615 341405 0.4030 +8615 374897 0.5030 +8615 401409 0.4110 +8615 651746 0.4030 +8618 9094 0.5210 +8618 9143 0.4360 +8618 9145 0.4360 +8618 9543 0.5700 +8618 9699 0.4950 +8618 9883 0.7470 +8618 9924 0.4780 +8618 10497 0.8260 +8618 11141 0.6430 +8618 22895 0.4860 +8618 23025 0.5550 +8618 23413 0.7920 +8618 27445 0.5260 +8618 55362 0.4290 +8618 91608 0.8330 +8618 134957 0.5010 +8618 255967 0.4280 +8618 342035 0.4510 +8620 8802 0.5040 +8620 8997 0.4990 +8620 9311 0.4710 +8620 10800 0.4990 +8620 10874 0.6070 +8620 10886 0.9990 +8620 23236 0.4990 +8620 27344 0.4600 +8620 51052 0.9410 +8620 51083 0.6030 +8620 57105 0.4990 +8620 64106 0.9990 +8620 64111 0.8350 +8620 84109 0.5970 +8620 84634 0.5710 +8620 115557 0.5040 +8620 116511 0.8220 +8620 116512 0.8640 +8620 116534 0.7100 +8620 117194 0.8520 +8620 117195 0.8510 +8620 117196 0.8220 +8620 129521 0.6260 +8620 259249 0.8360 +8620 283869 0.4080 +8620 347148 0.8670 +8620 386746 0.7210 +8620 594857 0.6450 +8621 8812 0.9990 +8621 9134 0.4270 +8621 9150 0.6020 +8621 9320 0.4850 +8621 9646 0.7010 +8621 9817 0.4430 +8621 9969 0.4180 +8621 10565 0.5480 +8621 10614 0.5110 +8621 10902 0.4210 +8621 11011 0.6580 +8621 11168 0.4950 +8621 11198 0.6440 +8621 11325 0.5590 +8621 22828 0.5820 +8621 22936 0.6430 +8621 23168 0.7230 +8621 23379 0.6430 +8621 23476 0.5660 +8621 24149 0.6100 +8621 25920 0.5960 +8621 26043 0.4540 +8621 26610 0.5480 +8621 26747 0.5430 +8621 27125 0.6780 +8621 29072 0.6500 +8621 29101 0.4050 +8621 29113 0.6120 +8621 50810 0.4920 +8621 51455 0.4510 +8621 51497 0.5510 +8621 51574 0.6210 +8621 51585 0.5580 +8621 51755 0.9540 +8621 54434 0.4960 +8621 54542 0.4500 +8621 54617 0.4450 +8621 54623 0.5870 +8621 54726 0.4130 +8621 55209 0.4670 +8621 55250 0.5830 +8621 55252 0.4080 +8621 55840 0.5400 +8621 56647 0.7290 +8621 57018 0.5860 +8621 63893 0.4550 +8621 64210 0.5710 +8621 79577 0.7980 +8621 79664 0.6070 +8621 79871 0.4700 +8621 80204 0.4510 +8621 80237 0.5450 +8621 80349 0.6230 +8621 81669 0.6700 +8621 84337 0.5400 +8621 84524 0.5750 +8621 84656 0.5240 +8621 84717 0.5070 +8621 85403 0.5540 +8621 85458 0.4850 +8621 92002 0.6720 +8621 114825 0.4200 +8621 118856 0.8500 +8621 123169 0.7880 +8621 136647 0.4110 +8621 147906 0.4730 +8621 154150 0.4850 +8621 283237 0.4090 +8621 404672 0.5700 +8621 728340 0.5540 +8622 9049 0.4400 +8622 10846 0.6010 +8622 22978 0.6680 +8622 23636 0.6210 +8622 25802 0.4590 +8622 26289 0.6590 +8622 27115 0.5380 +8622 30833 0.6500 +8622 50808 0.9080 +8622 50940 0.6770 +8622 51251 0.6500 +8622 51562 0.4890 +8622 55811 0.6840 +8622 56953 0.6500 +8622 56981 0.4830 +8622 79798 0.7200 +8622 84290 0.4790 +8622 84618 0.6500 +8622 92949 0.4160 +8622 93034 0.6500 +8622 115024 0.6500 +8622 122481 0.6500 +8622 158067 0.6540 +8622 196883 0.7050 +8622 221264 0.6590 +8622 377841 0.6500 +8622 100526794 0.6500 +8622 102157402 0.6500 +8623 8856 0.7070 +8623 8908 0.4460 +8623 9086 0.6180 +8623 9189 0.7370 +8623 9895 0.4320 +8623 10251 0.5410 +8623 10930 0.4130 +8623 22905 0.4580 +8623 27349 0.4570 +8623 28227 0.6340 +8623 29924 0.4590 +8623 54802 0.4260 +8623 55040 0.4630 +8623 55132 0.4220 +8623 55344 0.7430 +8623 57136 0.4090 +8623 64976 0.4160 +8623 79877 0.4640 +8623 80347 0.4740 +8623 84263 0.4030 +8623 87178 0.4320 +8623 90353 0.4950 +8623 150350 0.4580 +8623 207063 0.7730 +8623 283209 0.4520 +8623 284131 0.4180 +8623 286530 0.6690 +8623 344558 0.4820 +8623 345557 0.4580 +8623 347744 0.4210 +8623 375316 0.5170 +8623 399818 0.4290 +8624 8725 0.5660 +8624 8771 0.5930 +8624 9349 0.8610 +8624 9491 0.5390 +8624 9531 0.7970 +8624 9532 0.5790 +8624 9553 0.8220 +8624 9801 0.8600 +8624 9858 0.7090 +8624 9861 0.4460 +8624 9875 0.4560 +8624 9946 0.5700 +8624 10213 0.4890 +8624 10273 0.5610 +8624 10311 0.7670 +8624 10317 0.5060 +8624 10471 0.6120 +8624 10473 0.5410 +8624 10574 0.9220 +8624 10575 0.9150 +8624 10576 0.9220 +8624 10693 0.9010 +8624 10694 0.9270 +8624 10728 0.9110 +8624 10730 0.5300 +8624 10856 0.5920 +8624 10939 0.5520 +8624 10963 0.9100 +8624 10964 0.4730 +8624 10969 0.4400 +8624 11075 0.5330 +8624 11140 0.9020 +8624 11157 0.4130 +8624 11222 0.8750 +8624 11224 0.4770 +8624 22948 0.9130 +8624 22984 0.4450 +8624 23193 0.4040 +8624 23198 0.5590 +8624 23204 0.5050 +8624 23234 0.9330 +8624 23405 0.5090 +8624 23423 0.4850 +8624 23476 0.5170 +8624 23521 0.6560 +8624 23625 0.4520 +8624 23640 0.5720 +8624 23732 0.5200 +8624 23753 0.7260 +8624 26275 0.7870 +8624 26353 0.7200 +8624 26519 0.4180 +8624 26589 0.8570 +8624 27339 0.4330 +8624 28952 0.4920 +8624 28957 0.6100 +8624 28973 0.5120 +8624 28977 0.4460 +8624 28998 0.8930 +8624 29088 0.6060 +8624 29093 0.8700 +8624 29102 0.5430 +8624 29980 0.5370 +8624 51014 0.5020 +8624 51021 0.9020 +8624 51069 0.6960 +8624 51073 0.8140 +8624 51081 0.6910 +8624 51116 0.7190 +8624 51121 0.6220 +8624 51149 0.6610 +8624 51154 0.5440 +8624 51258 0.4650 +8624 51263 0.7510 +8624 51264 0.8690 +8624 51318 0.4170 +8624 51371 0.9610 +8624 51373 0.5180 +8624 51377 0.5320 +8624 51398 0.5730 +8624 51637 0.5680 +8624 51642 0.4070 +8624 51649 0.6880 +8624 51650 0.5770 +8624 51726 0.7740 +8624 54014 0.6040 +8624 54148 0.5440 +8624 54543 0.4350 +8624 54948 0.8890 +8624 55052 0.8440 +8624 55172 0.5910 +8624 55173 0.8410 +8624 55272 0.6930 +8624 55316 0.6590 +8624 55862 0.5480 +8624 56675 0.4720 +8624 56934 0.5980 +8624 56945 0.4730 +8624 56984 0.9990 +8624 57003 0.5490 +8624 57129 0.8570 +8624 60488 0.8850 +8624 63875 0.8770 +8624 63931 0.8940 +8624 64285 0.4730 +8624 64374 0.5670 +8624 64432 0.7710 +8624 64745 0.6230 +8624 64949 0.4110 +8624 64951 0.4780 +8624 64960 0.9020 +8624 64963 0.7900 +8624 64965 0.8710 +8624 64968 0.8670 +8624 64969 0.8570 +8624 64975 0.8570 +8624 64976 0.8480 +8624 64978 0.5410 +8624 64979 0.8950 +8624 64981 0.8230 +8624 64983 0.8760 +8624 65003 0.8370 +8624 65005 0.6750 +8624 65008 0.5710 +8624 65080 0.7710 +8624 65121 0.4510 +8624 65122 0.4510 +8624 66036 0.4300 +8624 78987 0.6090 +8624 79023 0.4310 +8624 79590 0.5870 +8624 79657 0.5820 +8624 81572 0.5510 +8624 84262 0.8350 +8624 84311 0.4220 +8624 84545 0.8430 +8624 90313 0.7020 +8624 90624 0.4840 +8624 92399 0.6040 +8624 114781 0.4700 +8624 116541 0.7080 +8624 118487 0.6450 +8624 120379 0.5400 +8624 121268 0.4870 +8624 124995 0.6310 +8624 126402 0.6680 +8624 133619 0.4730 +8624 140801 0.5620 +8624 143471 0.4100 +8624 148022 0.4850 +8624 149478 0.4350 +8624 150082 0.6970 +8624 150160 0.5700 +8624 157310 0.5340 +8624 170626 0.4220 +8624 219927 0.7350 +8624 221409 0.6780 +8624 285513 0.4500 +8624 286046 0.4250 +8624 343068 0.4510 +8624 343070 0.4510 +8624 345051 0.5200 +8624 345611 0.4930 +8624 347487 0.5950 +8624 353376 0.4850 +8624 389362 0.7640 +8624 390999 0.4510 +8624 391002 0.4510 +8624 400735 0.4510 +8624 400736 0.4510 +8624 440560 0.4510 +8624 440561 0.4510 +8624 441873 0.4510 +8624 641776 0.4940 +8624 643909 0.4940 +8624 645359 0.4510 +8624 653619 0.4510 +8624 728524 0.4940 +8624 729528 0.4510 +8624 100287482 0.5950 +8624 100302736 0.4850 +8624 100526842 0.6100 +8624 100996746 0.4940 +8624 101929983 0.4510 +8624 105180390 0.4940 +8624 105180391 0.4940 +8625 9734 0.5910 +8625 9759 0.9640 +8625 10014 0.5850 +8625 25959 0.4280 +8625 26051 0.4260 +8625 29086 0.4220 +8625 51249 0.5050 +8625 51665 0.4790 +8625 51752 0.4320 +8625 54522 0.4970 +8625 54555 0.4500 +8625 54851 0.4390 +8625 57037 0.4520 +8625 57794 0.4170 +8625 64421 0.4460 +8625 79823 0.4490 +8625 79840 0.4080 +8625 84166 0.7440 +8625 84210 0.4810 +8625 92591 0.4190 +8625 117286 0.4370 +8625 118932 0.4240 +8625 126382 0.5830 +8625 136371 0.5140 +8625 140458 0.4860 +8625 140462 0.5250 +8625 142689 0.4740 +8625 157567 0.4530 +8625 253650 0.4380 +8625 284338 0.6500 +8625 441459 0.4340 +8625 729991 0.4470 +8625 100271849 0.8010 +8626 8850 0.5910 +8626 9518 0.4500 +8626 9540 0.5720 +8626 10114 0.4250 +8626 10397 0.4080 +8626 10399 0.5590 +8626 10413 0.7960 +8626 10460 0.4960 +8626 10694 0.5590 +8626 10848 0.7030 +8626 10971 0.5170 +8626 11059 0.5700 +8626 11200 0.5920 +8626 22895 0.5970 +8626 23368 0.6780 +8626 23411 0.5180 +8626 23650 0.4160 +8626 25803 0.4440 +8626 27113 0.5950 +8626 28996 0.6990 +8626 29882 0.5790 +8626 51741 0.4390 +8626 54541 0.8420 +8626 55294 0.5020 +8626 55544 0.5790 +8626 55869 0.4520 +8626 56940 0.6290 +8626 60529 0.4550 +8626 63970 0.4730 +8626 64065 0.9300 +8626 65244 0.6490 +8626 79755 0.4980 +8626 81037 0.4760 +8626 83737 0.8940 +8626 115265 0.5480 +8626 147746 0.4060 +8626 204851 0.4290 +8626 285386 0.5200 +8626 644994 0.4470 +8626 727897 0.5130 +8626 100532731 0.4190 +8629 8912 0.5130 +8629 51337 0.4340 +8629 57505 0.4370 +8629 57645 0.4170 +8629 90780 0.4290 +8629 146059 0.4310 +8629 203245 0.4190 +8630 8644 0.9780 +8630 8694 0.9110 +8630 8854 0.9080 +8630 9227 0.9220 +8630 10720 0.6900 +8630 22845 0.4160 +8630 51144 0.9160 +8630 51478 0.9340 +8630 53630 0.9130 +8630 54490 0.7000 +8630 54575 0.6850 +8630 54576 0.6850 +8630 54577 0.6850 +8630 54578 0.6920 +8630 54579 0.6660 +8630 54600 0.6670 +8630 54657 0.6850 +8630 54658 0.6850 +8630 54659 0.6810 +8630 54884 0.9210 +8630 79154 0.9460 +8630 79644 0.9390 +8630 79799 0.6950 +8630 83940 0.5960 +8630 84869 0.4090 +8630 158835 0.9060 +8630 195814 0.9190 +8630 339761 0.9050 +8630 574537 0.7000 +8631 8935 0.4370 +8631 9402 0.5420 +8631 9738 0.4480 +8631 10125 0.4340 +8631 10513 0.4100 +8631 10728 0.4200 +8631 10750 0.6040 +8631 11184 0.6290 +8631 23166 0.4110 +8631 26499 0.6280 +8631 27040 0.4400 +8631 29916 0.4280 +8631 50852 0.5390 +8631 54518 0.9810 +8631 55209 0.4380 +8631 60412 0.4090 +8631 79783 0.4780 +8631 83593 0.8310 +8631 83660 0.7100 +8631 83706 0.7220 +8631 84106 0.7330 +8631 84433 0.4110 +8631 90417 0.6570 +8631 140735 0.4570 +8631 261734 0.4300 +8631 399665 0.6840 +8632 8701 0.4100 +8632 8852 0.4480 +8632 9662 0.4280 +8632 10126 0.5630 +8632 10566 0.4410 +8632 11055 0.4200 +8632 22873 0.4460 +8632 23639 0.4670 +8632 25981 0.9190 +8632 26256 0.4800 +8632 27019 0.8360 +8632 51314 0.7540 +8632 55259 0.7380 +8632 55567 0.9110 +8632 55779 0.5810 +8632 56171 0.9140 +8632 57728 0.4870 +8632 64446 0.9100 +8632 79819 0.8320 +8632 79846 0.5840 +8632 79925 0.4710 +8632 80217 0.6010 +8632 81930 0.4270 +8632 83544 0.7960 +8632 83893 0.5260 +8632 83894 0.6110 +8632 84071 0.5720 +8632 84074 0.6050 +8632 85478 0.5120 +8632 89876 0.4990 +8632 92749 0.5190 +8632 93233 0.8200 +8632 118491 0.9560 +8632 122481 0.5960 +8632 126820 0.8710 +8632 127602 0.5940 +8632 140735 0.4450 +8632 144132 0.5710 +8632 144406 0.5490 +8632 146754 0.9140 +8632 151254 0.4570 +8632 159686 0.4830 +8632 199223 0.5680 +8632 201625 0.7000 +8632 221421 0.4540 +8632 283417 0.4370 +8632 286464 0.4600 +8632 374407 0.4940 +8632 374973 0.4260 +8632 388389 0.4470 +8632 401024 0.5320 +8632 402573 0.5400 +8633 9353 0.6820 +8633 9423 0.9990 +8633 9723 0.5590 +8633 10142 0.6250 +8633 10371 0.4130 +8633 10381 0.4330 +8633 22854 0.5680 +8633 22859 0.9740 +8633 23266 0.9710 +8633 23284 0.9740 +8633 23646 0.6670 +8633 23768 0.8460 +8633 23769 0.4170 +8633 54209 0.4950 +8633 54332 0.4580 +8633 57556 0.4270 +8633 59277 0.7360 +8633 84528 0.4790 +8633 84628 0.5690 +8633 90249 0.5480 +8633 126147 0.5450 +8633 137970 0.5440 +8633 158800 0.4610 +8633 219699 0.5360 +8634 8790 0.4480 +8634 8886 0.4330 +8634 9136 0.8950 +8634 9277 0.8570 +8634 9533 0.5340 +8634 9704 0.4130 +8634 9724 0.7180 +8634 9732 0.4110 +8634 9790 0.9780 +8634 9875 0.4060 +8634 9904 0.5040 +8634 10153 0.4590 +8634 10171 0.4070 +8634 10199 0.8510 +8634 10436 0.8160 +8634 10438 0.5540 +8634 10528 0.8040 +8634 10557 0.6160 +8634 10607 0.8710 +8634 10621 0.4350 +8634 10813 0.7280 +8634 10885 0.9040 +8634 11056 0.4420 +8634 11103 0.8770 +8634 11340 0.5280 +8634 22894 0.4400 +8634 22984 0.8760 +8634 23016 0.4740 +8634 23054 0.6810 +8634 23076 0.4560 +8634 23160 0.8800 +8634 23212 0.4460 +8634 23223 0.5500 +8634 23246 0.4790 +8634 23378 0.5350 +8634 23404 0.5110 +8634 23517 0.6350 +8634 23560 0.6240 +8634 25879 0.8190 +8634 25917 0.4360 +8634 25983 0.9140 +8634 26155 0.6630 +8634 26156 0.8110 +8634 26354 0.5570 +8634 26574 0.8760 +8634 27042 0.5010 +8634 27292 0.6140 +8634 27340 0.8770 +8634 27341 0.8650 +8634 28987 0.6610 +8634 29889 0.6950 +8634 30836 0.8300 +8634 51006 0.5070 +8634 51010 0.5500 +8634 51013 0.6110 +8634 51018 0.4420 +8634 51065 0.5250 +8634 51068 0.4370 +8634 51073 0.4360 +8634 51077 0.8710 +8634 51081 0.4890 +8634 51082 0.4080 +8634 51096 0.9010 +8634 51106 0.4880 +8634 51118 0.8130 +8634 51149 0.4950 +8634 51154 0.7300 +8634 51187 0.4330 +8634 51202 0.4320 +8634 51319 0.4270 +8634 51388 0.7070 +8634 51491 0.4640 +8634 51493 0.9450 +8634 51538 0.4730 +8634 51602 0.8840 +8634 51605 0.4210 +8634 51611 0.7630 +8634 54112 0.4220 +8634 54475 0.4270 +8634 54482 0.5840 +8634 54512 0.4180 +8634 54552 0.5050 +8634 54555 0.5040 +8634 54606 0.6190 +8634 55006 0.5820 +8634 55127 0.8690 +8634 55131 0.4850 +8634 55140 0.5310 +8634 55153 0.4930 +8634 55164 0.4470 +8634 55173 0.4930 +8634 55226 0.8650 +8634 55239 0.5820 +8634 55272 0.8140 +8634 55299 0.6440 +8634 55341 0.4050 +8634 55651 0.6210 +8634 55720 0.7330 +8634 55759 0.6630 +8634 55760 0.5590 +8634 55781 0.6870 +8634 55794 0.4250 +8634 55813 0.9300 +8634 56902 0.6930 +8634 56915 0.5910 +8634 56919 0.4180 +8634 56945 0.5600 +8634 57050 0.8890 +8634 57418 0.4570 +8634 57647 0.4180 +8634 57696 0.4370 +8634 60314 0.4110 +8634 60487 0.5820 +8634 60558 0.4060 +8634 60625 0.4290 +8634 64216 0.5730 +8634 64794 0.4430 +8634 64848 0.4130 +8634 64960 0.5440 +8634 64963 0.4820 +8634 65083 0.8570 +8634 65095 0.5210 +8634 79050 0.9120 +8634 79571 0.6770 +8634 79665 0.4180 +8634 79954 0.8430 +8634 80135 0.4810 +8634 83707 0.6330 +8634 83743 0.6800 +8634 84128 0.8170 +8634 84135 0.8280 +8634 84154 0.6520 +8634 84172 0.4330 +8634 84294 0.5680 +8634 84365 0.5740 +8634 84549 0.4800 +8634 84916 0.9130 +8634 84946 0.7190 +8634 87178 0.4570 +8634 90121 0.5110 +8634 92856 0.9250 +8634 115708 0.5740 +8634 118460 0.4290 +8634 126402 0.4480 +8634 140032 0.4610 +8634 148867 0.4680 +8634 153443 0.4940 +8634 155368 0.4050 +8634 165545 0.5500 +8634 199720 0.4390 +8634 221078 0.4170 +8634 221830 0.5910 +8634 283742 0.4570 +8634 339487 0.6370 +8634 345630 0.6740 +8635 8852 0.4610 +8635 9034 0.6200 +8635 10579 0.4650 +8635 10954 0.5230 +8635 11116 0.8850 +8635 25802 0.4970 +8635 26191 0.4480 +8635 26232 0.4630 +8635 26270 0.4260 +8635 51311 0.5240 +8635 59286 0.4210 +8635 87178 0.4140 +8635 115352 0.4440 +8635 196463 0.4430 +8636 8766 0.5000 +8636 9618 0.4220 +8636 10133 0.4990 +8636 10471 0.5510 +8636 10480 0.5070 +8636 10567 0.4980 +8636 10589 0.6170 +8636 22827 0.4820 +8636 23111 0.6390 +8636 23354 0.5250 +8636 23382 0.4240 +8636 23397 0.4180 +8636 23770 0.4560 +8636 25923 0.8220 +8636 51062 0.7490 +8636 51282 0.5200 +8636 54801 0.5080 +8636 54875 0.7700 +8636 54930 0.5070 +8636 55142 0.4990 +8636 55324 0.4060 +8636 55559 0.5740 +8636 57132 0.7850 +8636 64225 0.8280 +8636 79441 0.4990 +8636 79866 0.5010 +8636 93323 0.5160 +8636 115106 0.5440 +8636 117177 0.4990 +8636 131474 0.4320 +8636 131601 0.4790 +8636 222967 0.4610 +8636 348995 0.4310 +8636 728642 0.5080 +8637 8672 0.6980 +8637 9470 0.8480 +8637 10325 0.4580 +8637 10670 0.4650 +8637 23770 0.4540 +8637 25983 0.5890 +8637 54541 0.5070 +8637 54882 0.8170 +8637 57521 0.7360 +8637 58528 0.4510 +8637 64121 0.4590 +8637 64223 0.5970 +8637 83697 0.5470 +8637 253260 0.6360 +8637 253314 0.9160 +8637 317649 0.9230 +8637 404734 0.9140 +8638 8743 0.4370 +8638 8764 0.4180 +8638 9045 0.6460 +8638 9246 0.6240 +8638 9320 0.4640 +8638 9349 0.6130 +8638 9636 0.9870 +8638 9732 0.5000 +8638 9739 0.4530 +8638 9790 0.4390 +8638 10061 0.4410 +8638 10121 0.4270 +8638 10346 0.5790 +8638 10379 0.8720 +8638 10399 0.5210 +8638 10410 0.8040 +8638 10437 0.4240 +8638 10561 0.9500 +8638 10581 0.4940 +8638 10964 0.9510 +8638 11047 0.4210 +8638 11224 0.6440 +8638 11274 0.9260 +8638 22992 0.5270 +8638 23067 0.4530 +8638 23521 0.5660 +8638 23586 0.9990 +8638 24138 0.8600 +8638 25873 0.6490 +8638 25939 0.6670 +8638 26010 0.4840 +8638 28998 0.4620 +8638 29110 0.4500 +8638 51065 0.5710 +8638 51069 0.4560 +8638 51081 0.5070 +8638 51121 0.5680 +8638 51149 0.4860 +8638 51154 0.4240 +8638 51191 0.9470 +8638 51284 0.4130 +8638 51319 0.4910 +8638 51616 0.5220 +8638 54625 0.4540 +8638 54739 0.8240 +8638 54809 0.6760 +8638 55008 0.8150 +8638 55173 0.4390 +8638 55272 0.4380 +8638 55316 0.5440 +8638 55337 0.4380 +8638 55601 0.8880 +8638 56829 0.6460 +8638 56943 0.5120 +8638 57506 0.5090 +8638 63931 0.7390 +8638 64108 0.7990 +8638 64135 0.9400 +8638 64761 0.5440 +8638 64897 0.4260 +8638 64963 0.5040 +8638 64969 0.4170 +8638 79132 0.8220 +8638 79590 0.4200 +8638 81030 0.4020 +8638 83473 0.4560 +8638 83666 0.6250 +8638 84231 0.5580 +8638 84678 0.5250 +8638 85363 0.4600 +8638 85441 0.6660 +8638 91543 0.9770 +8638 94240 0.7690 +8638 114987 0.5210 +8638 115004 0.7040 +8638 115361 0.5780 +8638 115362 0.5560 +8638 116071 0.5380 +8638 116832 0.4960 +8638 122509 0.4690 +8638 126402 0.4990 +8638 129607 0.7220 +8638 136647 0.5050 +8638 140032 0.5440 +8638 140801 0.4780 +8638 146857 0.4870 +8638 200916 0.5070 +8638 219285 0.6790 +8638 254268 0.4780 +8638 282616 0.4390 +8638 282617 0.4470 +8638 282618 0.5540 +8638 285855 0.5490 +8638 347487 0.4870 +8638 387129 0.4780 +8638 439996 0.5250 +8638 645051 0.4030 +8638 645073 0.4030 +8638 729396 0.4030 +8638 729422 0.4030 +8638 729428 0.4030 +8638 729431 0.4030 +8638 729442 0.4030 +8638 729447 0.4030 +8638 100008586 0.4030 +8638 100132399 0.4030 +8638 100526842 0.4890 +8638 100529097 0.5050 +8638 100529239 0.5090 +8638 100996746 0.4280 +8638 102724473 0.4030 +8638 114483834 0.4400 +8639 8784 0.4790 +8639 9034 0.4780 +8639 9380 0.8200 +8639 9437 0.6250 +8639 10219 0.6420 +8639 10803 0.4180 +8639 11185 0.4460 +8639 22914 0.4470 +8639 23193 0.4440 +8639 26275 0.4280 +8639 27141 0.5990 +8639 27180 0.9770 +8639 29126 0.5070 +8639 29851 0.5800 +8639 30009 0.6260 +8639 50616 0.4480 +8639 50943 0.7830 +8639 55173 0.4220 +8639 57129 0.4080 +8639 57591 0.6940 +8639 60488 0.4100 +8639 64432 0.4280 +8639 64960 0.4310 +8639 64969 0.4140 +8639 65003 0.4170 +8639 80381 0.4120 +8639 84263 0.4130 +8639 89790 0.8900 +8639 116841 0.5910 +8639 137872 0.4710 +8639 137902 0.4790 +8639 140885 0.4220 +8639 170589 0.4530 +8639 220074 0.9070 +8639 100133941 0.5720 +8641 28513 0.4330 +8641 56101 0.6800 +8641 56102 0.6590 +8641 56103 0.4640 +8641 56104 0.4220 +8641 390260 0.4470 +8641 392309 0.4160 +8642 10297 0.5650 +8642 10564 0.6240 +8642 24147 0.6650 +8642 27328 0.4950 +8642 28316 0.7110 +8642 28513 0.5520 +8642 29886 0.6150 +8642 29995 0.4600 +8642 53841 0.4580 +8642 54798 0.9100 +8642 55780 0.5240 +8642 56104 0.4070 +8642 56108 0.4880 +8642 56109 0.4920 +8642 60437 0.5710 +8642 64072 0.5950 +8642 64403 0.5900 +8642 64405 0.5730 +8642 65217 0.4650 +8642 79633 0.6210 +8642 128077 0.4230 +8642 222256 0.5530 +8642 284403 0.4440 +8643 8831 0.4050 +8643 9260 0.5210 +8643 9950 0.4050 +8643 10142 0.4060 +8643 10611 0.4410 +8643 11216 0.4390 +8643 27148 0.6980 +8643 50846 0.9990 +8643 50937 0.9680 +8643 51592 0.4990 +8643 51684 0.9300 +8643 55582 0.5250 +8643 55733 0.4090 +8643 57154 0.9240 +8643 64399 0.6900 +8643 64750 0.9190 +8643 83729 0.4100 +8643 84976 0.5610 +8643 85455 0.4540 +8643 91653 0.9740 +8643 374654 0.5900 +8644 9196 0.5000 +8644 9380 0.4130 +8644 9536 0.7110 +8644 10020 0.4090 +8644 10170 0.9290 +8644 10551 0.5250 +8644 10720 0.9160 +8644 10728 0.4990 +8644 22845 0.4290 +8644 22949 0.4980 +8644 22977 0.6000 +8644 27294 0.9050 +8644 27306 0.9360 +8644 51144 0.4890 +8644 51170 0.4110 +8644 51171 0.5170 +8644 51478 0.5690 +8644 54490 0.9150 +8644 54575 0.9220 +8644 54576 0.9230 +8644 54577 0.9190 +8644 54578 0.9300 +8644 54579 0.9100 +8644 54600 0.9180 +8644 54657 0.9220 +8644 54658 0.9240 +8644 54659 0.9180 +8644 57016 0.9250 +8644 79154 0.7610 +8644 79644 0.9650 +8644 79799 0.9180 +8644 80142 0.6130 +8644 140809 0.4060 +8644 200942 0.4880 +8644 284422 0.4600 +8644 574537 0.9170 +8644 100861540 0.9230 +8645 8929 0.4980 +8645 9424 0.6130 +8645 10008 0.9230 +8645 10089 0.6240 +8645 50801 0.6200 +8645 51305 0.8100 +8645 51350 0.7990 +8645 54207 0.6420 +8645 54805 0.4090 +8645 56659 0.6690 +8645 56660 0.6590 +8645 57419 0.4160 +8645 60598 0.6550 +8645 64241 0.4430 +8645 83401 0.4020 +8645 83795 0.5980 +8645 89822 0.5940 +8645 338567 0.7150 +8645 728780 0.4210 +8646 8817 0.5780 +8646 8822 0.4870 +8646 8823 0.4990 +8646 8854 0.4640 +8646 9210 0.4160 +8646 9241 0.9080 +8646 9242 0.4460 +8646 9350 0.4200 +8646 9578 0.4390 +8646 10220 0.4820 +8646 10272 0.4310 +8646 10439 0.5610 +8646 10468 0.8460 +8646 10637 0.5590 +8646 22943 0.5260 +8646 25805 0.5580 +8646 25884 0.4370 +8646 25987 0.8370 +8646 26281 0.5020 +8646 26585 0.6550 +8646 27006 0.4690 +8646 27302 0.4840 +8646 50964 0.6840 +8646 54584 0.5500 +8646 56033 0.4980 +8646 57045 0.9690 +8646 57154 0.4650 +8646 64321 0.4390 +8646 64388 0.7430 +8646 81693 0.5840 +8646 83667 0.4240 +8646 89780 0.4940 +8646 147111 0.4260 +8646 151449 0.9700 +8646 168667 0.7990 +8646 199699 0.4110 +8646 220001 0.4450 +8646 353500 0.9340 +8646 375567 0.8260 +8646 375616 0.4160 +8646 392255 0.9490 +8646 431705 0.4980 +8647 8714 0.5800 +8647 8766 0.4030 +8647 8856 0.8390 +8647 9213 0.5600 +8647 9356 0.4840 +8647 9360 0.5950 +8647 9376 0.6200 +8647 9414 0.5480 +8647 9420 0.6890 +8647 9429 0.4400 +8647 9965 0.5860 +8647 9970 0.6200 +8647 9971 0.9640 +8647 10057 0.4590 +8647 10060 0.4190 +8647 10062 0.4320 +8647 10134 0.4320 +8647 10257 0.5760 +8647 10498 0.4340 +8647 10599 0.8620 +8647 10720 0.4060 +8647 10864 0.6830 +8647 10891 0.5000 +8647 10998 0.7720 +8647 11188 0.4430 +8647 11309 0.6740 +8647 26276 0.4510 +8647 28231 0.6290 +8647 28234 0.8410 +8647 28978 0.4230 +8647 29881 0.5450 +8647 51081 0.5820 +8647 51124 0.4080 +8647 51302 0.5080 +8647 51398 0.4480 +8647 53919 0.6140 +8647 54490 0.4150 +8647 54575 0.6210 +8647 54576 0.6480 +8647 54577 0.6210 +8647 54578 0.6330 +8647 54579 0.4340 +8647 54600 0.4790 +8647 54657 0.6470 +8647 54658 0.6450 +8647 54659 0.4950 +8647 54677 0.4100 +8647 55244 0.6480 +8647 57818 0.7100 +8647 63894 0.4360 +8647 64240 0.5170 +8647 64241 0.5210 +8647 79799 0.4240 +8647 80270 0.5030 +8647 84699 0.4350 +8647 85320 0.4620 +8647 89845 0.4390 +8647 94160 0.4320 +8647 114571 0.4770 +8647 114880 0.4630 +8647 123264 0.8030 +8647 146802 0.5960 +8647 151306 0.6410 +8647 152831 0.5580 +8647 200931 0.8200 +8647 374882 0.4140 +8647 574537 0.4050 +8648 8737 0.4040 +8648 8805 0.4970 +8648 8841 0.6010 +8648 8850 0.9950 +8648 8856 0.9980 +8648 9031 0.4180 +8648 9213 0.6130 +8648 9282 0.5290 +8648 9325 0.6560 +8648 9370 0.5820 +8648 9412 0.7280 +8648 9439 0.5490 +8648 9440 0.5080 +8648 9441 0.5740 +8648 9442 0.5060 +8648 9443 0.4990 +8648 9477 0.4990 +8648 9604 0.5070 +8648 9611 0.9360 +8648 9612 0.8840 +8648 9687 0.5290 +8648 9734 0.5290 +8648 9862 0.5490 +8648 9968 0.5640 +8648 9969 0.5760 +8648 9970 0.9940 +8648 9971 0.9970 +8648 9975 0.5420 +8648 10001 0.5040 +8648 10011 0.6910 +8648 10025 0.5150 +8648 10036 0.4080 +8648 10062 0.9920 +8648 10288 0.4070 +8648 10370 0.5590 +8648 10498 0.9760 +8648 10499 0.9970 +8648 10521 0.4510 +8648 10524 0.6240 +8648 10587 0.4790 +8648 10891 0.9520 +8648 10902 0.4240 +8648 11010 0.4270 +8648 22938 0.7710 +8648 23001 0.5280 +8648 23028 0.4480 +8648 23054 0.9120 +8648 23093 0.4740 +8648 23097 0.5510 +8648 23112 0.5340 +8648 23309 0.5660 +8648 23389 0.5860 +8648 25942 0.6000 +8648 26230 0.4050 +8648 26523 0.5190 +8648 27043 0.5800 +8648 27063 0.4150 +8648 27161 0.5200 +8648 27327 0.5340 +8648 29079 0.7720 +8648 29123 0.6010 +8648 29841 0.4120 +8648 50486 0.4460 +8648 51003 0.4990 +8648 51129 0.5390 +8648 51586 0.5700 +8648 54576 0.4330 +8648 54600 0.4030 +8648 54658 0.4440 +8648 54659 0.6840 +8648 54797 0.4990 +8648 54891 0.4120 +8648 55090 0.6070 +8648 55252 0.6300 +8648 55588 0.5000 +8648 57491 0.4220 +8648 57761 0.4060 +8648 63897 0.5800 +8648 79447 0.5900 +8648 79718 0.5780 +8648 80205 0.5090 +8648 80306 0.4990 +8648 80816 0.5050 +8648 81857 0.5080 +8648 81892 0.6900 +8648 84246 0.5170 +8648 85441 0.9130 +8648 90390 0.4990 +8648 96764 0.4570 +8648 112950 0.5200 +8648 115950 0.5980 +8648 116519 0.4200 +8648 133522 0.5910 +8648 135112 0.6050 +8648 153770 0.4480 +8648 171023 0.5010 +8648 192669 0.5030 +8648 192670 0.5200 +8648 196528 0.4430 +8648 254173 0.4680 +8648 266743 0.5300 +8648 376497 0.4100 +8648 400569 0.5060 +8649 8826 0.5750 +8649 8844 0.8200 +8649 8891 0.6390 +8649 8992 0.5330 +8649 9114 0.7770 +8649 9296 0.5510 +8649 9465 0.4790 +8649 9550 0.7200 +8649 9681 0.9360 +8649 9776 0.5830 +8649 9821 0.5930 +8649 9827 0.9000 +8649 9844 0.7240 +8649 10312 0.5050 +8649 10325 0.9990 +8649 10542 0.9990 +8649 10641 0.9510 +8649 10670 0.9990 +8649 11133 0.6470 +8649 23334 0.6600 +8649 23557 0.6280 +8649 23677 0.5280 +8649 27071 0.4070 +8649 27244 0.6270 +8649 28956 0.9990 +8649 51382 0.7260 +8649 51422 0.5690 +8649 51606 0.6700 +8649 53632 0.5390 +8649 54468 0.7330 +8649 54785 0.7620 +8649 55004 0.9990 +8649 55255 0.7360 +8649 55846 0.6750 +8649 56181 0.4110 +8649 57521 0.9990 +8649 57589 0.9010 +8649 57600 0.9240 +8649 58528 0.9990 +8649 60673 0.5240 +8649 64121 0.9990 +8649 64223 0.9300 +8649 79726 0.7380 +8649 80213 0.4810 +8649 81929 0.7180 +8649 83667 0.6190 +8649 83877 0.4290 +8649 83941 0.4380 +8649 84219 0.7280 +8649 84232 0.4130 +8649 84292 0.9560 +8649 84335 0.6110 +8649 85442 0.7200 +8649 90423 0.6500 +8649 90809 0.4450 +8649 96459 0.6150 +8649 115265 0.4490 +8649 118426 0.6330 +8649 119032 0.6800 +8649 127124 0.4990 +8649 133482 0.4320 +8649 140775 0.7200 +8649 144577 0.6800 +8649 153129 0.9990 +8649 154743 0.5530 +8649 155066 0.4990 +8649 201163 0.9330 +8649 203228 0.7410 +8649 245972 0.5080 +8649 245973 0.6930 +8649 374354 0.4430 +8649 389541 0.9990 +8649 652968 0.6230 +8649 729438 0.6320 +8650 8766 0.4630 +8650 8826 0.4150 +8650 8842 0.4360 +8650 8867 0.5820 +8650 8871 0.5600 +8650 8945 0.4380 +8650 8976 0.4720 +8650 9051 0.4030 +8650 9253 0.9610 +8650 9342 0.4800 +8650 9444 0.4340 +8650 9491 0.4050 +8650 9610 0.4450 +8650 9794 0.4910 +8650 9861 0.4080 +8650 10000 0.4620 +8650 10158 0.6090 +8650 10180 0.4620 +8650 10181 0.4890 +8650 10197 0.4380 +8650 10213 0.4050 +8650 10307 0.4630 +8650 10683 0.5040 +8650 10928 0.5170 +8650 22841 0.4590 +8650 22848 0.6610 +8650 22905 0.6160 +8650 23198 0.4050 +8650 23301 0.5280 +8650 23321 0.4130 +8650 23327 0.6180 +8650 23385 0.5760 +8650 23462 0.5630 +8650 23493 0.4470 +8650 23509 0.4020 +8650 23513 0.6080 +8650 23550 0.4630 +8650 23677 0.7260 +8650 26524 0.6060 +8650 27085 0.4830 +8650 28514 0.5790 +8650 28996 0.4260 +8650 29881 0.5970 +8650 29924 0.5080 +8650 30844 0.6550 +8650 50618 0.7150 +8650 50855 0.4640 +8650 51593 0.4570 +8650 51684 0.6220 +8650 54567 0.5220 +8650 55040 0.6030 +8650 55294 0.6210 +8650 55503 0.5880 +8650 55534 0.5000 +8650 55851 0.4030 +8650 56288 0.7670 +8650 57698 0.4400 +8650 57727 0.4110 +8650 58513 0.7890 +8650 64145 0.5710 +8650 64746 0.6440 +8650 80012 0.4390 +8650 83737 0.9920 +8650 84441 0.5050 +8650 84708 0.9940 +8650 85021 0.5310 +8650 85439 0.5800 +8650 90527 0.6420 +8650 122706 0.4100 +8650 124540 0.9300 +8650 131450 0.5400 +8650 143471 0.4070 +8650 144100 0.4050 +8650 146713 0.4580 +8650 222484 0.9300 +8650 387755 0.4970 +8650 388585 0.4820 +8650 405753 0.4710 +8651 8660 0.9850 +8651 8678 0.5920 +8651 8835 0.9670 +8651 8850 0.5680 +8651 8913 0.6970 +8651 9021 0.9690 +8651 9306 0.7540 +8651 9595 0.4660 +8651 9616 0.8480 +8651 9636 0.5240 +8651 9641 0.4700 +8651 9655 0.7260 +8651 9830 0.4210 +8651 9868 0.4500 +8651 9978 0.7540 +8651 10226 0.4540 +8651 10379 0.5240 +8651 10401 0.5270 +8651 10461 0.7120 +8651 10755 0.4630 +8651 11040 0.4970 +8651 11186 0.5120 +8651 11213 0.6410 +8651 11274 0.5480 +8651 22863 0.5500 +8651 23118 0.4190 +8651 23274 0.5400 +8651 23405 0.4820 +8651 23533 0.6020 +8651 23586 0.5590 +8651 28955 0.4180 +8651 29110 0.4460 +8651 29126 0.5370 +8651 29949 0.4840 +8651 30009 0.4900 +8651 30837 0.6780 +8651 30849 0.5400 +8651 30851 0.7910 +8651 50616 0.4040 +8651 50852 0.4590 +8651 50943 0.5610 +8651 51135 0.4300 +8651 51284 0.5270 +8651 51311 0.6660 +8651 54106 0.4530 +8651 54472 0.4880 +8651 55593 0.4170 +8651 55697 0.5460 +8651 64127 0.4050 +8651 64135 0.5540 +8651 64236 0.4130 +8651 64581 0.5680 +8651 79132 0.4050 +8651 79828 0.5300 +8651 81603 0.9460 +8651 84174 0.5990 +8651 84433 0.4360 +8651 91543 0.4110 +8651 114609 0.9180 +8651 116071 0.4230 +8651 122809 0.7760 +8651 146850 0.5490 +8651 150684 0.9580 +8651 282618 0.6190 +8651 441925 0.5400 +8651 110117498 0.5400 +8653 8856 0.4350 +8653 8886 0.4020 +8653 9081 0.7250 +8653 9083 0.7990 +8653 9084 0.5410 +8653 9085 0.7760 +8653 9086 0.9990 +8653 9087 0.9140 +8653 9133 0.4910 +8653 9343 0.6730 +8653 10048 0.4160 +8653 10476 0.5020 +8653 11222 0.4120 +8653 22829 0.8640 +8653 23246 0.4280 +8653 23481 0.5280 +8653 23560 0.5860 +8653 24148 0.6340 +8653 25885 0.4490 +8653 27328 0.4360 +8653 51602 0.4520 +8653 55143 0.4920 +8653 55787 0.4650 +8653 57054 0.7570 +8653 57055 0.7790 +8653 57135 0.6960 +8653 57136 0.4860 +8653 57610 0.4050 +8653 64318 0.4260 +8653 64434 0.5120 +8653 80176 0.4480 +8653 83259 0.6210 +8653 84833 0.4430 +8653 86614 0.6290 +8653 87178 0.4860 +8653 90655 0.4440 +8653 90665 0.6720 +8653 92369 0.4250 +8653 117178 0.4620 +8653 140032 0.9110 +8653 159163 0.7650 +8653 253175 0.4870 +8653 353513 0.5410 +8653 378948 0.4490 +8653 378949 0.7050 +8653 378951 0.4390 +8653 442862 0.7250 +8653 442867 0.8000 +8653 442868 0.8000 +8654 8833 0.9030 +8654 9583 0.6500 +8654 9886 0.7410 +8654 10335 0.6250 +8654 10411 0.4580 +8654 10846 0.5880 +8654 11069 0.4120 +8654 22978 0.6610 +8654 23157 0.5450 +8654 23176 0.6040 +8654 23746 0.4990 +8654 28234 0.4010 +8654 30833 0.6500 +8654 50940 0.7250 +8654 51251 0.6770 +8654 51806 0.5180 +8654 55811 0.7100 +8654 55964 0.6010 +8654 56953 0.6520 +8654 57104 0.4060 +8654 79258 0.4280 +8654 81704 0.4080 +8654 84618 0.6500 +8654 91860 0.5320 +8654 93034 0.6500 +8654 115024 0.6770 +8654 124583 0.7740 +8654 163688 0.5180 +8654 196883 0.7390 +8654 377841 0.6600 +8654 100526794 0.6500 +8655 8678 0.9010 +8655 8701 0.4660 +8655 8723 0.7620 +8655 8729 0.5070 +8655 8766 0.6080 +8655 9133 0.4310 +8655 9184 0.5330 +8655 9202 0.4660 +8655 9203 0.5530 +8655 9229 0.7190 +8655 9382 0.5030 +8655 9527 0.5310 +8655 9570 0.5710 +8655 9659 0.5740 +8655 9688 0.4680 +8655 9700 0.5420 +8655 9728 0.4710 +8655 9751 0.6870 +8655 9776 0.5010 +8655 9804 0.4120 +8655 9821 0.5780 +8655 9874 0.6470 +8655 9928 0.5110 +8655 10013 0.7810 +8655 10018 0.9990 +8655 10121 0.8810 +8655 10133 0.5940 +8655 10243 0.8940 +8655 10320 0.4670 +8655 10362 0.4350 +8655 10376 0.5110 +8655 10381 0.4170 +8655 10383 0.5490 +8655 10399 0.5200 +8655 10466 0.5040 +8655 10540 0.9150 +8655 10553 0.4940 +8655 10615 0.7930 +8655 10671 0.6050 +8655 10726 0.7330 +8655 10728 0.4380 +8655 10783 0.4990 +8655 11011 0.5810 +8655 11070 0.4990 +8655 11101 0.5450 +8655 11127 0.4170 +8655 11258 0.8620 +8655 11315 0.6060 +8655 22796 0.5270 +8655 22863 0.5190 +8655 22906 0.4040 +8655 22930 0.5040 +8655 22931 0.5040 +8655 23028 0.6360 +8655 23189 0.4710 +8655 23286 0.8550 +8655 23299 0.7970 +8655 23300 0.8710 +8655 23332 0.4270 +8655 23354 0.5320 +8655 23386 0.8010 +8655 23515 0.4910 +8655 25782 0.5060 +8655 25792 0.5630 +8655 25839 0.5080 +8655 25843 0.9940 +8655 25943 0.4140 +8655 25959 0.6420 +8655 26286 0.5000 +8655 27019 0.6310 +8655 27156 0.4110 +8655 27159 0.4300 +8655 27185 0.4580 +8655 27436 0.6050 +8655 29888 0.9940 +8655 29966 0.4470 +8655 30849 0.5190 +8655 50618 0.4110 +8655 51098 0.4810 +8655 51143 0.9860 +8655 51164 0.7300 +8655 51272 0.5810 +8655 51314 0.5740 +8655 51421 0.4520 +8655 51422 0.5210 +8655 51560 0.5010 +8655 51626 0.9950 +8655 51765 0.4820 +8655 51806 0.4240 +8655 53371 0.4820 +8655 53632 0.5130 +8655 54801 0.5070 +8655 54820 0.9480 +8655 54854 0.4180 +8655 54930 0.4990 +8655 55112 0.9980 +8655 55130 0.5440 +8655 55142 0.4990 +8655 55559 0.4990 +8655 55567 0.4330 +8655 55626 0.9520 +8655 55738 0.5030 +8655 55746 0.6500 +8655 55860 0.7630 +8655 55917 0.4130 +8655 56171 0.4480 +8655 57122 0.5210 +8655 57511 0.5040 +8655 60673 0.5100 +8655 64446 0.6580 +8655 64689 0.5200 +8655 79441 0.4990 +8655 79659 0.9990 +8655 79809 0.4240 +8655 79819 0.5280 +8655 79866 0.6040 +8655 79902 0.5000 +8655 80014 0.5700 +8655 80342 0.9940 +8655 81027 0.4150 +8655 81492 0.4520 +8655 81565 0.6870 +8655 81610 0.8520 +8655 81929 0.4530 +8655 83544 0.6670 +8655 83548 0.5330 +8655 83657 0.9560 +8655 83658 0.9970 +8655 83992 0.4020 +8655 84364 0.5070 +8655 84376 0.4050 +8655 84516 0.6460 +8655 84617 0.4110 +8655 84790 0.4380 +8655 84817 0.5220 +8655 85478 0.4120 +8655 89891 0.9970 +8655 90417 0.7130 +8655 90427 0.7020 +8655 91754 0.8440 +8655 91949 0.5230 +8655 93233 0.4080 +8655 93323 0.4990 +8655 93661 0.5460 +8655 113263 0.4460 +8655 115106 0.5560 +8655 117177 0.5760 +8655 126820 0.5590 +8655 127602 0.4480 +8655 128876 0.4060 +8655 140609 0.4630 +8655 140735 0.9900 +8655 150864 0.6950 +8655 154796 0.7540 +8655 154810 0.5020 +8655 160762 0.5070 +8655 161829 0.6740 +8655 167691 0.4520 +8655 196385 0.4890 +8655 200132 0.7180 +8655 200894 0.5980 +8655 203068 0.6650 +8655 219681 0.4110 +8655 255758 0.9280 +8655 256364 0.5130 +8655 285596 0.5910 +8655 343521 0.7120 +8655 374655 0.6460 +8655 440712 0.4030 +8655 728378 0.7990 +8655 728642 0.5170 +8655 100820829 0.4080 +8658 8711 0.5510 +8658 8887 0.5100 +8658 8945 0.4630 +8658 9320 0.5540 +8658 9467 0.7520 +8658 9491 0.6000 +8658 9506 0.4630 +8658 9555 0.8430 +8658 9557 0.4140 +8658 9656 0.4400 +8658 9736 0.5750 +8658 9861 0.4400 +8658 10038 0.7610 +8658 10039 0.7300 +8658 10075 0.5260 +8658 10213 0.4450 +8658 10274 0.4040 +8658 10806 0.4300 +8658 11127 0.7860 +8658 22943 0.4470 +8658 23048 0.6830 +8658 23198 0.4330 +8658 23499 0.4200 +8658 25913 0.8730 +8658 26277 0.9830 +8658 27125 0.4230 +8658 27185 0.6570 +8658 27283 0.6610 +8658 28992 0.4610 +8658 29086 0.9130 +8658 29110 0.5130 +8658 29761 0.7960 +8658 51176 0.5880 +8658 51384 0.4660 +8658 51421 0.7040 +8658 51750 0.4440 +8658 54386 0.7670 +8658 54936 0.6090 +8658 54956 0.6430 +8658 54969 0.4050 +8658 55032 0.4090 +8658 55662 0.6630 +8658 56965 0.6320 +8658 64761 0.5330 +8658 64840 0.5810 +8658 64858 0.6610 +8658 65220 0.4040 +8658 79633 0.4410 +8658 79668 0.5140 +8658 79682 0.4200 +8658 80351 0.5570 +8658 80851 0.5410 +8658 81847 0.9920 +8658 83666 0.6250 +8658 84138 0.5770 +8658 84875 0.6340 +8658 85456 0.9910 +8658 89780 0.5380 +8658 122706 0.4330 +8658 133482 0.4880 +8658 140733 0.4030 +8658 143471 0.4530 +8658 154796 0.6330 +8658 154810 0.5310 +8658 221443 0.5260 +8658 253012 0.4960 +8658 283149 0.5630 +8658 286046 0.5190 +8659 8802 0.5110 +8659 8803 0.4120 +8659 9563 0.4680 +8659 9684 0.5040 +8659 10247 0.4450 +8659 10449 0.4460 +8659 10841 0.8590 +8659 10901 0.4060 +8659 10993 0.4100 +8659 11212 0.4700 +8659 25900 0.8010 +8659 26227 0.4520 +8659 26873 0.8500 +8659 27034 0.4200 +8659 27165 0.9530 +8659 27244 0.4440 +8659 29920 0.9690 +8659 29968 0.4110 +8659 51011 0.4050 +8659 51071 0.4770 +8659 51268 0.4120 +8659 54511 0.5300 +8659 54623 0.4920 +8659 54988 0.4570 +8659 55163 0.4300 +8659 55268 0.4040 +8659 55748 0.8180 +8659 55753 0.4250 +8659 55902 0.4570 +8659 56267 0.5350 +8659 57103 0.5630 +8659 57571 0.8090 +8659 57591 0.4340 +8659 58510 0.9830 +8659 64080 0.4100 +8659 64850 0.4020 +8659 64902 0.4750 +8659 65220 0.4310 +8659 65263 0.9680 +8659 79611 0.4030 +8659 79814 0.4320 +8659 79944 0.8630 +8659 80221 0.4400 +8659 80834 0.6040 +8659 81889 0.5180 +8659 84263 0.6880 +8659 84532 0.5030 +8659 84693 0.4410 +8659 84706 0.4390 +8659 84735 0.8160 +8659 112817 0.4470 +8659 123876 0.4230 +8659 124454 0.8300 +8659 124975 0.8170 +8659 130013 0.4240 +8659 137362 0.9420 +8659 137872 0.5250 +8659 147015 0.4080 +8659 151313 0.4070 +8659 162417 0.4840 +8659 348158 0.4360 +8660 8835 0.9280 +8660 8925 0.4060 +8660 9021 0.9830 +8660 9365 0.9260 +8660 9370 0.6010 +8660 9882 0.5450 +8660 10000 0.4790 +8660 10818 0.4220 +8660 10888 0.9000 +8660 10891 0.5530 +8660 10971 0.4320 +8660 23395 0.4410 +8660 23410 0.5640 +8660 23411 0.7860 +8660 23533 0.9170 +8660 25970 0.8690 +8660 26228 0.4910 +8660 26499 0.5930 +8660 29924 0.6080 +8660 30849 0.5450 +8660 51085 0.4200 +8660 51548 0.4060 +8660 54106 0.5620 +8660 54677 0.4590 +8660 55023 0.5240 +8660 55715 0.4310 +8660 55816 0.5070 +8660 56729 0.4470 +8660 57521 0.5830 +8660 57572 0.4310 +8660 57818 0.5790 +8660 79071 0.6180 +8660 84666 0.4180 +8660 92579 0.5800 +8660 122809 0.9560 +8660 137902 0.5540 +8660 146850 0.9030 +8660 200186 0.4040 +8660 253260 0.4460 +8660 102723796 0.6850 +8661 8662 0.9990 +8661 8663 0.9990 +8661 8664 0.9990 +8661 8665 0.9990 +8661 8666 0.9990 +8661 8667 0.9990 +8661 8668 0.9990 +8661 8669 0.9990 +8661 8672 0.5270 +8661 8761 0.5830 +8661 8894 0.9980 +8661 8924 0.5720 +8661 9039 0.4820 +8661 9045 0.4680 +8661 9086 0.9290 +8661 9188 0.4440 +8661 9221 0.4280 +8661 9255 0.4120 +8661 9349 0.5060 +8661 9584 0.4040 +8661 9669 0.8510 +8661 9732 0.4610 +8661 9774 0.4820 +8661 9858 0.5630 +8661 10096 0.4040 +8661 10140 0.5910 +8661 10146 0.6220 +8661 10153 0.4530 +8661 10209 0.9950 +8661 10213 0.5730 +8661 10236 0.4690 +8661 10289 0.9460 +8661 10399 0.9900 +8661 10480 0.9990 +8661 10492 0.6260 +8661 10526 0.4760 +8661 10527 0.5480 +8661 10528 0.5190 +8661 10557 0.4950 +8661 10574 0.5010 +8661 10575 0.5070 +8661 10576 0.4630 +8661 10605 0.5660 +8661 10694 0.4890 +8661 10915 0.6030 +8661 10980 0.4130 +8661 10985 0.4710 +8661 10987 0.8260 +8661 11060 0.5140 +8661 11146 0.4360 +8661 11198 0.4710 +8661 11224 0.4240 +8661 22803 0.4060 +8661 22927 0.4140 +8661 22948 0.4550 +8661 22984 0.4220 +8661 23204 0.6490 +8661 23277 0.4470 +8661 23291 0.4970 +8661 23435 0.4340 +8661 23476 0.5310 +8661 23517 0.5060 +8661 23521 0.7430 +8661 23560 0.5630 +8661 23708 0.4320 +8661 25962 0.4580 +8661 26135 0.6660 +8661 26259 0.4350 +8661 26986 0.6490 +8661 27000 0.4100 +8661 27335 0.9990 +8661 29978 0.4400 +8661 51065 0.7460 +8661 51073 0.5480 +8661 51081 0.5680 +8661 51116 0.5810 +8661 51149 0.6670 +8661 51319 0.6600 +8661 51320 0.4020 +8661 51386 0.9990 +8661 51574 0.4370 +8661 51602 0.6070 +8661 54505 0.5650 +8661 55127 0.5140 +8661 55173 0.7000 +8661 55272 0.6620 +8661 55316 0.6290 +8661 55601 0.4880 +8661 55651 0.5050 +8661 55660 0.4160 +8661 55755 0.6040 +8661 57461 0.4690 +8661 57521 0.4940 +8661 60313 0.5070 +8661 60678 0.6830 +8661 63931 0.5460 +8661 64960 0.5820 +8661 64963 0.5730 +8661 64969 0.8100 +8661 79811 0.5280 +8661 80336 0.5510 +8661 83939 0.4720 +8661 85377 0.7400 +8661 114803 0.4020 +8661 114987 0.7670 +8661 126402 0.5550 +8661 132430 0.5610 +8661 140032 0.5540 +8661 140886 0.5750 +8661 221421 0.7730 +8661 255308 0.8770 +8661 340529 0.5370 +8661 347487 0.7200 +8661 440275 0.4600 +8661 641776 0.4450 +8661 643909 0.4450 +8661 645974 0.4490 +8661 728524 0.4450 +8661 728689 0.9990 +8661 100287482 0.5630 +8661 100529239 0.6530 +8661 100534599 0.4570 +8661 100996746 0.4450 +8661 105180390 0.4450 +8661 105180391 0.4450 +8662 8663 0.9990 +8662 8664 0.9990 +8662 8665 0.9990 +8662 8666 0.9990 +8662 8667 0.9990 +8662 8668 0.9990 +8662 8669 0.9990 +8662 8672 0.8300 +8662 8761 0.6250 +8662 8886 0.4050 +8662 8890 0.5660 +8662 8891 0.6320 +8662 8892 0.4640 +8662 8893 0.6230 +8662 8894 0.9980 +8662 8924 0.5390 +8662 9040 0.5080 +8662 9045 0.7260 +8662 9086 0.8960 +8662 9188 0.4020 +8662 9221 0.4690 +8662 9255 0.4470 +8662 9315 0.6520 +8662 9343 0.5790 +8662 9361 0.4120 +8662 9669 0.9440 +8662 9732 0.4740 +8662 9775 0.7470 +8662 9811 0.4390 +8662 9858 0.5800 +8662 9861 0.4590 +8662 9908 0.6110 +8662 9960 0.5090 +8662 10061 0.4590 +8662 10146 0.9830 +8662 10209 0.9980 +8662 10213 0.6410 +8662 10236 0.4800 +8662 10289 0.9630 +8662 10399 0.9990 +8662 10471 0.4020 +8662 10480 0.9990 +8662 10492 0.5030 +8662 10527 0.4760 +8662 10528 0.4940 +8662 10557 0.5040 +8662 10574 0.7280 +8662 10575 0.8560 +8662 10576 0.7330 +8662 10594 0.4150 +8662 10605 0.6330 +8662 10617 0.4490 +8662 10694 0.7130 +8662 10726 0.4540 +8662 10963 0.4440 +8662 10980 0.5510 +8662 10985 0.5220 +8662 10987 0.8800 +8662 22948 0.6800 +8662 22985 0.4310 +8662 23204 0.6100 +8662 23246 0.6630 +8662 23277 0.5310 +8662 23435 0.5670 +8662 23476 0.5460 +8662 23481 0.4450 +8662 23521 0.7930 +8662 23560 0.4580 +8662 23644 0.4990 +8662 25804 0.4710 +8662 25873 0.4150 +8662 25914 0.4340 +8662 25929 0.5810 +8662 25962 0.4990 +8662 26019 0.5310 +8662 26155 0.4960 +8662 26986 0.8670 +8662 26995 0.4140 +8662 27044 0.4400 +8662 27102 0.5520 +8662 27257 0.5390 +8662 27316 0.4240 +8662 27335 0.9990 +8662 28985 0.4010 +8662 29789 0.4520 +8662 29889 0.5540 +8662 29979 0.4690 +8662 51065 0.7380 +8662 51073 0.5830 +8662 51081 0.6030 +8662 51116 0.6170 +8662 51138 0.5090 +8662 51149 0.7460 +8662 51154 0.4310 +8662 51319 0.6660 +8662 51386 0.9990 +8662 51441 0.4080 +8662 51569 0.4300 +8662 51574 0.4180 +8662 51602 0.6200 +8662 51605 0.5740 +8662 54464 0.5170 +8662 54505 0.8410 +8662 54606 0.6700 +8662 54915 0.9370 +8662 55173 0.7340 +8662 55272 0.6770 +8662 55316 0.5240 +8662 55324 0.4730 +8662 55651 0.5760 +8662 55802 0.5150 +8662 56257 0.4070 +8662 56339 0.8320 +8662 56478 0.4720 +8662 56648 0.5320 +8662 57470 0.4480 +8662 57521 0.7640 +8662 57559 0.4410 +8662 60313 0.4910 +8662 60678 0.8350 +8662 63931 0.5190 +8662 64960 0.6300 +8662 64963 0.5530 +8662 64969 0.7210 +8662 79039 0.4590 +8662 79184 0.4380 +8662 79711 0.4340 +8662 80336 0.4070 +8662 80347 0.4070 +8662 83743 0.5820 +8662 83939 0.9600 +8662 84954 0.5310 +8662 85377 0.7800 +8662 85476 0.4560 +8662 90850 0.6480 +8662 91607 0.5240 +8662 114803 0.4480 +8662 114987 0.8810 +8662 126402 0.5940 +8662 140032 0.5900 +8662 142940 0.4230 +8662 143244 0.5460 +8662 167227 0.4320 +8662 221421 0.6690 +8662 253314 0.4380 +8662 253943 0.6350 +8662 255308 0.8720 +8662 286187 0.5150 +8662 317649 0.4520 +8662 347487 0.6690 +8662 375298 0.6500 +8662 440275 0.6420 +8662 641776 0.4480 +8662 643909 0.4480 +8662 728524 0.4480 +8662 728689 0.9950 +8662 100287482 0.5730 +8662 100529239 0.7980 +8662 100996746 0.4480 +8662 105180390 0.4480 +8662 105180391 0.4480 +8662 114483834 0.4820 +8663 8664 0.9990 +8663 8665 0.9990 +8663 8666 0.9990 +8663 8667 0.9990 +8663 8668 0.9990 +8663 8669 0.9990 +8663 8672 0.7130 +8663 8761 0.4380 +8663 8886 0.4860 +8663 8890 0.5090 +8663 8891 0.5330 +8663 8893 0.5870 +8663 8894 0.9980 +8663 8924 0.6170 +8663 9086 0.8840 +8663 9146 0.6200 +8663 9349 0.4520 +8663 9368 0.4060 +8663 9669 0.9020 +8663 9732 0.5950 +8663 9775 0.6800 +8663 9858 0.5710 +8663 10056 0.4580 +8663 10146 0.5780 +8663 10209 0.9990 +8663 10212 0.4730 +8663 10213 0.5350 +8663 10289 0.9140 +8663 10399 0.9940 +8663 10419 0.4360 +8663 10480 0.9990 +8663 10527 0.4050 +8663 10528 0.5070 +8663 10557 0.5480 +8663 10574 0.7280 +8663 10576 0.5020 +8663 10594 0.4030 +8663 10605 0.5780 +8663 10617 0.4380 +8663 10902 0.4020 +8663 10980 0.4720 +8663 10985 0.4250 +8663 10987 0.8560 +8663 10992 0.5080 +8663 11224 0.4360 +8663 23204 0.5250 +8663 23367 0.4350 +8663 23481 0.6060 +8663 23517 0.4410 +8663 23521 0.7170 +8663 23560 0.6860 +8663 23708 0.4350 +8663 25873 0.4730 +8663 25962 0.5480 +8663 26471 0.5820 +8663 26986 0.6580 +8663 26995 0.4020 +8663 27316 0.4280 +8663 27335 0.9990 +8663 51065 0.7480 +8663 51073 0.6000 +8663 51081 0.6180 +8663 51116 0.5800 +8663 51149 0.6900 +8663 51319 0.6940 +8663 51386 0.9990 +8663 51441 0.4740 +8663 51574 0.4450 +8663 51602 0.5820 +8663 54505 0.6550 +8663 54890 0.4070 +8663 54915 0.6220 +8663 55127 0.5800 +8663 55173 0.6980 +8663 55272 0.6600 +8663 55316 0.6320 +8663 55324 0.4200 +8663 55601 0.4660 +8663 55651 0.5420 +8663 55911 0.4730 +8663 56339 0.4560 +8663 57470 0.4370 +8663 57505 0.4290 +8663 57559 0.4330 +8663 57721 0.4040 +8663 60678 0.7130 +8663 63931 0.5550 +8663 64848 0.4920 +8663 64960 0.6090 +8663 64963 0.5970 +8663 64969 0.6960 +8663 65083 0.4110 +8663 79184 0.4470 +8663 79874 0.5640 +8663 83743 0.4280 +8663 84172 0.4360 +8663 84954 0.7080 +8663 85377 0.8370 +8663 90850 0.4020 +8663 91746 0.4500 +8663 94274 0.5840 +8663 112869 0.4400 +8663 114803 0.4460 +8663 114987 0.8240 +8663 126402 0.6080 +8663 132430 0.4050 +8663 140032 0.5980 +8663 142940 0.4310 +8663 221421 0.6200 +8663 253943 0.4390 +8663 255308 0.8270 +8663 286187 0.4320 +8663 347487 0.7160 +8663 374918 0.4020 +8663 641776 0.4370 +8663 643909 0.4370 +8663 728524 0.4370 +8663 728689 0.9610 +8663 100287482 0.5690 +8663 100507607 0.4230 +8663 100529239 0.7180 +8663 100996746 0.4370 +8663 105180390 0.4370 +8663 105180391 0.4370 +8664 8665 0.9990 +8664 8666 0.9990 +8664 8667 0.9990 +8664 8668 0.9990 +8664 8669 0.9990 +8664 8672 0.8060 +8664 8761 0.5240 +8664 8890 0.5960 +8664 8891 0.5080 +8664 8893 0.4740 +8664 8894 0.9850 +8664 8924 0.6400 +8664 9045 0.4570 +8664 9086 0.8680 +8664 9343 0.4410 +8664 9349 0.7250 +8664 9470 0.5380 +8664 9669 0.7420 +8664 9732 0.5090 +8664 9775 0.6630 +8664 9858 0.5500 +8664 9960 0.5230 +8664 10146 0.5340 +8664 10155 0.4340 +8664 10209 0.9890 +8664 10213 0.4990 +8664 10289 0.8920 +8664 10399 0.9900 +8664 10419 0.4270 +8664 10480 0.9990 +8664 10498 0.4180 +8664 10526 0.4430 +8664 10527 0.4300 +8664 10557 0.5280 +8664 10574 0.7450 +8664 10575 0.5730 +8664 10576 0.7640 +8664 10594 0.4620 +8664 10605 0.4270 +8664 10694 0.5750 +8664 10980 0.4430 +8664 10987 0.9410 +8664 11047 0.4350 +8664 11224 0.6380 +8664 11331 0.4240 +8664 22948 0.5210 +8664 23204 0.4770 +8664 23517 0.4050 +8664 23521 0.7890 +8664 23560 0.4870 +8664 25873 0.5950 +8664 25962 0.4250 +8664 26986 0.7190 +8664 27335 0.9990 +8664 29789 0.4170 +8664 51065 0.6870 +8664 51073 0.6360 +8664 51081 0.5910 +8664 51116 0.5710 +8664 51149 0.6440 +8664 51319 0.6750 +8664 51386 0.9990 +8664 51755 0.4080 +8664 54505 0.6500 +8664 54948 0.4900 +8664 55173 0.6750 +8664 55272 0.6030 +8664 55316 0.6470 +8664 55349 0.8480 +8664 55601 0.5570 +8664 55651 0.5900 +8664 60678 0.6450 +8664 63931 0.6070 +8664 64960 0.6300 +8664 64963 0.6330 +8664 64969 0.8170 +8664 80336 0.4750 +8664 83892 0.6740 +8664 84954 0.4510 +8664 85377 0.9320 +8664 90850 0.5600 +8664 92399 0.4150 +8664 114987 0.6650 +8664 126402 0.5830 +8664 132430 0.5040 +8664 140032 0.6260 +8664 140886 0.4830 +8664 200916 0.4070 +8664 253314 0.4180 +8664 255308 0.6720 +8664 317649 0.6730 +8664 340529 0.4970 +8664 347487 0.5860 +8664 404093 0.4410 +8664 641776 0.4700 +8664 643909 0.4700 +8664 728524 0.4700 +8664 728689 0.9910 +8664 729020 0.7320 +8664 100287482 0.5500 +8664 100529239 0.7430 +8664 100996746 0.4700 +8664 105180390 0.4700 +8664 105180391 0.4700 +8665 8666 0.9990 +8665 8667 0.9990 +8665 8668 0.9990 +8665 8669 0.9980 +8665 8672 0.5960 +8665 8890 0.5330 +8665 8892 0.4470 +8665 8893 0.4240 +8665 8894 0.9760 +8665 9045 0.8260 +8665 9086 0.7630 +8665 9097 0.6940 +8665 9318 0.5250 +8665 9349 0.6080 +8665 9669 0.5310 +8665 9775 0.4380 +8665 9861 0.7780 +8665 9929 0.6200 +8665 9960 0.4330 +8665 10146 0.4290 +8665 10155 0.5530 +8665 10209 0.9780 +8665 10213 0.6940 +8665 10289 0.8010 +8665 10376 0.4100 +8665 10383 0.4210 +8665 10399 0.9790 +8665 10419 0.4210 +8665 10456 0.4250 +8665 10465 0.4020 +8665 10480 0.9990 +8665 10533 0.4030 +8665 10574 0.5690 +8665 10575 0.6170 +8665 10576 0.4950 +8665 10594 0.4990 +8665 10605 0.5030 +8665 10617 0.4060 +8665 10642 0.4310 +8665 10694 0.5480 +8665 10920 0.4410 +8665 10980 0.4660 +8665 10987 0.9720 +8665 11047 0.6420 +8665 11224 0.4860 +8665 11236 0.6190 +8665 11342 0.4040 +8665 22948 0.5260 +8665 23097 0.7340 +8665 23392 0.4200 +8665 23521 0.8490 +8665 25873 0.5770 +8665 26156 0.4040 +8665 26515 0.4900 +8665 26986 0.5580 +8665 27335 0.9990 +8665 29789 0.4320 +8665 50813 0.5620 +8665 51065 0.4690 +8665 51082 0.4270 +8665 51116 0.4050 +8665 51138 0.7230 +8665 51149 0.5080 +8665 51386 0.9990 +8665 51574 0.4110 +8665 51637 0.4580 +8665 51725 0.4100 +8665 54505 0.5000 +8665 54839 0.7570 +8665 56061 0.4200 +8665 57559 0.4080 +8665 64708 0.4860 +8665 64963 0.4140 +8665 64969 0.4270 +8665 79096 0.7100 +8665 79184 0.4440 +8665 79651 0.9510 +8665 83473 0.5590 +8665 84142 0.4100 +8665 84154 0.4260 +8665 84954 0.5570 +8665 85377 0.6590 +8665 91978 0.6290 +8665 114803 0.4860 +8665 114907 0.8260 +8665 134510 0.4880 +8665 203068 0.4080 +8665 221357 0.4430 +8665 347487 0.5570 +8665 728642 0.4810 +8665 728689 0.9980 +8665 100529239 0.4010 +8665 100652824 0.4120 +8666 8667 0.9990 +8666 8668 0.9990 +8666 8669 0.9990 +8666 8672 0.5270 +8666 8721 0.5470 +8666 8833 0.5740 +8666 8886 0.4480 +8666 8890 0.6390 +8666 8891 0.4360 +8666 8892 0.5500 +8666 8893 0.4690 +8666 8894 0.9950 +8666 8924 0.5550 +8666 9040 0.4020 +8666 9045 0.6270 +8666 9086 0.8730 +8666 9131 0.6350 +8666 9255 0.5880 +8666 9349 0.4490 +8666 9470 0.5290 +8666 9533 0.4120 +8666 9669 0.8500 +8666 9732 0.4640 +8666 9775 0.7600 +8666 9811 0.6320 +8666 9858 0.4760 +8666 9939 0.4780 +8666 9960 0.5090 +8666 10056 0.5750 +8666 10146 0.6450 +8666 10209 0.9980 +8666 10212 0.4130 +8666 10213 0.4930 +8666 10236 0.4560 +8666 10289 0.9480 +8666 10399 0.9800 +8666 10412 0.4850 +8666 10432 0.4490 +8666 10436 0.4560 +8666 10471 0.4560 +8666 10480 0.9990 +8666 10492 0.5680 +8666 10528 0.4720 +8666 10574 0.6170 +8666 10575 0.6080 +8666 10576 0.4990 +8666 10605 0.9400 +8666 10617 0.4120 +8666 10694 0.5400 +8666 10726 0.4940 +8666 10856 0.4480 +8666 10949 0.4500 +8666 10969 0.7200 +8666 10980 0.5250 +8666 10987 0.8840 +8666 11047 0.4380 +8666 11140 0.5360 +8666 11224 0.6820 +8666 22827 0.5340 +8666 22948 0.4860 +8666 23204 0.4630 +8666 23246 0.4060 +8666 23277 0.4580 +8666 23435 0.5080 +8666 23474 0.4450 +8666 23481 0.4200 +8666 23521 0.7650 +8666 23560 0.4100 +8666 23708 0.4300 +8666 25873 0.5640 +8666 25983 0.4270 +8666 26986 0.4950 +8666 27316 0.4130 +8666 27335 0.9990 +8666 29101 0.4860 +8666 29789 0.4060 +8666 29997 0.4830 +8666 51035 0.5060 +8666 51065 0.5290 +8666 51070 0.4710 +8666 51073 0.4430 +8666 51081 0.5910 +8666 51116 0.5510 +8666 51121 0.4050 +8666 51138 0.4020 +8666 51149 0.4800 +8666 51154 0.4170 +8666 51187 0.4670 +8666 51202 0.4150 +8666 51319 0.5210 +8666 51386 0.9990 +8666 51574 0.4290 +8666 51602 0.6290 +8666 54433 0.6080 +8666 54505 0.6380 +8666 54606 0.5110 +8666 55173 0.7260 +8666 55272 0.4660 +8666 55299 0.5150 +8666 55552 0.5680 +8666 55651 0.6790 +8666 55696 0.4170 +8666 56342 0.8240 +8666 57409 0.6920 +8666 57470 0.4500 +8666 57559 0.4030 +8666 60678 0.8060 +8666 64434 0.6340 +8666 64960 0.5000 +8666 64963 0.4030 +8666 64969 0.5910 +8666 79039 0.4490 +8666 80218 0.4200 +8666 83939 0.4120 +8666 84954 0.4480 +8666 85377 0.5060 +8666 90957 0.4100 +8666 92399 0.4740 +8666 93974 0.4240 +8666 114987 0.6190 +8666 124801 0.4240 +8666 126402 0.5110 +8666 140032 0.4940 +8666 255308 0.8810 +8666 345630 0.4540 +8666 347487 0.5990 +8666 374291 0.4570 +8666 375298 0.6290 +8666 692312 0.8570 +8666 728689 0.9920 +8666 100287482 0.4760 +8666 100529239 0.9140 +8667 8668 0.9990 +8667 8669 0.9980 +8667 8672 0.6750 +8667 8886 0.4140 +8667 8894 0.9600 +8667 8924 0.5300 +8667 9045 0.4410 +8667 9086 0.7860 +8667 9343 0.4080 +8667 9349 0.5850 +8667 9470 0.5520 +8667 9589 0.5630 +8667 9669 0.4750 +8667 9960 0.5290 +8667 10056 0.5160 +8667 10209 0.9750 +8667 10213 0.7500 +8667 10289 0.7760 +8667 10399 0.9320 +8667 10412 0.4530 +8667 10480 0.9990 +8667 10575 0.4890 +8667 10576 0.5070 +8667 10617 0.6250 +8667 10920 0.6740 +8667 10980 0.8080 +8667 10987 0.9380 +8667 11224 0.4860 +8667 23091 0.4030 +8667 23185 0.5510 +8667 23212 0.4260 +8667 23229 0.4220 +8667 23521 0.7070 +8667 25873 0.7970 +8667 25962 0.6260 +8667 26156 0.4430 +8667 26986 0.5610 +8667 27185 0.4890 +8667 27316 0.4750 +8667 27335 0.9990 +8667 50813 0.6370 +8667 51065 0.4370 +8667 51073 0.4100 +8667 51081 0.4100 +8667 51082 0.4260 +8667 51116 0.4170 +8667 51121 0.4110 +8667 51138 0.4260 +8667 51149 0.4520 +8667 51225 0.6240 +8667 51386 0.9990 +8667 51441 0.5730 +8667 51574 0.4240 +8667 54505 0.6630 +8667 54890 0.4230 +8667 54915 0.5110 +8667 55651 0.4260 +8667 56339 0.9910 +8667 57521 0.4310 +8667 57532 0.5540 +8667 57559 0.6280 +8667 57721 0.4930 +8667 64848 0.4590 +8667 64960 0.4210 +8667 64963 0.4340 +8667 64969 0.4060 +8667 79066 0.4140 +8667 79184 0.5860 +8667 79590 0.4770 +8667 84154 0.5630 +8667 84294 0.6890 +8667 84954 0.6590 +8667 85377 0.7130 +8667 85415 0.5440 +8667 90390 0.5450 +8667 90850 0.5290 +8667 91746 0.4520 +8667 114803 0.6810 +8667 120376 0.4740 +8667 140032 0.5020 +8667 200916 0.4320 +8667 221421 0.7890 +8667 253943 0.4810 +8667 286187 0.5650 +8667 728689 0.9990 +8667 100529239 0.4240 +8668 8669 0.9990 +8668 8672 0.6260 +8668 8761 0.5280 +8668 8833 0.5440 +8668 8890 0.6100 +8668 8891 0.4450 +8668 8892 0.5480 +8668 8893 0.5650 +8668 8894 0.9910 +8668 8924 0.6060 +8668 9045 0.7600 +8668 9086 0.8660 +8668 9255 0.5350 +8668 9320 0.4240 +8668 9343 0.4280 +8668 9349 0.6350 +8668 9470 0.4300 +8668 9533 0.4910 +8668 9669 0.7370 +8668 9732 0.4850 +8668 9775 0.5620 +8668 9858 0.5590 +8668 9861 0.4430 +8668 9960 0.5170 +8668 10045 0.4500 +8668 10056 0.4380 +8668 10146 0.5580 +8668 10209 0.9970 +8668 10213 0.6990 +8668 10236 0.5580 +8668 10289 0.9510 +8668 10399 0.9970 +8668 10412 0.4020 +8668 10432 0.4260 +8668 10471 0.5080 +8668 10480 0.9990 +8668 10492 0.6940 +8668 10528 0.4580 +8668 10557 0.4930 +8668 10574 0.8330 +8668 10575 0.8190 +8668 10576 0.8480 +8668 10605 0.4230 +8668 10617 0.4390 +8668 10694 0.8430 +8668 10726 0.7040 +8668 10856 0.5090 +8668 10963 0.4730 +8668 10980 0.5420 +8668 10987 0.8670 +8668 10988 0.5390 +8668 11171 0.5090 +8668 11224 0.4720 +8668 11315 0.4290 +8668 22948 0.7840 +8668 23204 0.5450 +8668 23376 0.4360 +8668 23435 0.4330 +8668 23476 0.5190 +8668 23521 0.8520 +8668 23633 0.4080 +8668 25873 0.5150 +8668 25914 0.5210 +8668 26986 0.6590 +8668 27335 0.9990 +8668 29789 0.5100 +8668 51065 0.7860 +8668 51073 0.5320 +8668 51081 0.6850 +8668 51116 0.5970 +8668 51149 0.6230 +8668 51154 0.4110 +8668 51187 0.6790 +8668 51202 0.5220 +8668 51319 0.6400 +8668 51386 0.9990 +8668 51493 0.4360 +8668 51569 0.4540 +8668 51602 0.4580 +8668 51637 0.4090 +8668 54505 0.6440 +8668 54596 0.4300 +8668 54606 0.4760 +8668 55173 0.6990 +8668 55272 0.6410 +8668 55466 0.4700 +8668 55591 0.5490 +8668 55651 0.6470 +8668 55720 0.4060 +8668 56648 0.4130 +8668 56902 0.8020 +8668 57333 0.4230 +8668 57559 0.4310 +8668 60678 0.6490 +8668 64960 0.6850 +8668 64963 0.6050 +8668 64969 0.6820 +8668 79184 0.4340 +8668 79760 0.4060 +8668 84954 0.5000 +8668 85377 0.6340 +8668 90850 0.5450 +8668 114803 0.4310 +8668 114987 0.8400 +8668 126402 0.6280 +8668 134492 0.4280 +8668 140032 0.6830 +8668 143244 0.4730 +8668 200081 0.4030 +8668 200916 0.4390 +8668 253314 0.4040 +8668 255308 0.6840 +8668 285855 0.5980 +8668 286187 0.4420 +8668 345630 0.4210 +8668 347487 0.6880 +8668 375298 0.6150 +8668 728689 0.9950 +8668 100287482 0.5580 +8668 100287932 0.4120 +8668 100529239 0.9240 +8669 8672 0.4630 +8669 8894 0.9820 +8669 8899 0.4100 +8669 9086 0.8660 +8669 9188 0.4120 +8669 9669 0.6570 +8669 9858 0.5580 +8669 10056 0.4220 +8669 10109 0.4230 +8669 10146 0.4540 +8669 10150 0.4150 +8669 10209 0.9960 +8669 10213 0.5080 +8669 10289 0.9110 +8669 10399 0.9800 +8669 10480 0.9980 +8669 10557 0.4260 +8669 10605 0.4990 +8669 10767 0.4730 +8669 10980 0.4160 +8669 10987 0.8450 +8669 10988 0.4310 +8669 22985 0.4230 +8669 23060 0.4220 +8669 23204 0.5160 +8669 23376 0.4020 +8669 23521 0.5240 +8669 26986 0.4180 +8669 27335 0.9990 +8669 28985 0.4220 +8669 28998 0.7850 +8669 29979 0.4260 +8669 51065 0.6210 +8669 51073 0.4370 +8669 51081 0.5620 +8669 51116 0.5670 +8669 51149 0.5980 +8669 51247 0.7740 +8669 51319 0.5360 +8669 51329 0.6780 +8669 51386 0.9970 +8669 51569 0.4060 +8669 54505 0.7420 +8669 55173 0.7380 +8669 55272 0.5420 +8669 55651 0.4440 +8669 55796 0.4340 +8669 57470 0.4250 +8669 63931 0.4600 +8669 64960 0.5450 +8669 64963 0.5540 +8669 64969 0.7740 +8669 84954 0.4230 +8669 92399 0.5160 +8669 114987 0.7300 +8669 115098 0.5980 +8669 126402 0.5340 +8669 140032 0.5160 +8669 199857 0.4140 +8669 253314 0.4260 +8669 283373 0.6750 +8669 347487 0.6510 +8669 728689 0.9520 +8669 100287482 0.5580 +8669 100529239 0.6600 +8671 9122 0.4940 +8671 9123 0.4630 +8671 10083 0.5040 +8671 10768 0.9660 +8671 10786 0.4200 +8671 10861 0.5180 +8671 10991 0.4020 +8671 11238 0.4220 +8671 22802 0.4450 +8671 23315 0.4930 +8671 23316 0.5630 +8671 23382 0.6320 +8671 23632 0.5680 +8671 27347 0.5260 +8671 54084 0.5480 +8671 57127 0.4360 +8671 65010 0.7410 +8671 83697 0.4030 +8671 84059 0.5580 +8671 115019 0.6100 +8671 115111 0.5500 +8671 144717 0.5800 +8671 154664 0.4300 +8671 377677 0.4230 +8671 389015 0.4600 +8672 8761 0.7190 +8672 8886 0.4180 +8672 8893 0.4750 +8672 8894 0.5760 +8672 9100 0.4540 +8672 9470 0.9950 +8672 9513 0.5390 +8672 9669 0.6400 +8672 9775 0.8490 +8672 10199 0.4250 +8672 10209 0.5930 +8672 10480 0.5360 +8672 22916 0.5250 +8672 23367 0.5520 +8672 23560 0.4280 +8672 23708 0.4100 +8672 25885 0.4240 +8672 26986 0.9960 +8672 27335 0.4890 +8672 51366 0.5650 +8672 51386 0.5040 +8672 54464 0.4080 +8672 54517 0.4590 +8672 55132 0.4130 +8672 56478 0.5110 +8672 79711 0.4070 +8672 80153 0.4510 +8672 80336 0.6020 +8672 84901 0.4090 +8672 132430 0.5860 +8672 140886 0.5010 +8672 253314 0.9600 +8672 317649 0.9450 +8672 340529 0.4880 +8672 345630 0.4150 +8672 392517 0.4030 +8672 728689 0.4980 +8673 8674 0.7140 +8673 8675 0.9710 +8673 8676 0.9900 +8673 8677 0.9630 +8673 8678 0.4970 +8673 8723 0.9210 +8673 8766 0.8040 +8673 8773 0.9990 +8673 8774 0.8390 +8673 8775 0.9800 +8673 8878 0.4300 +8673 8905 0.5060 +8673 8907 0.7330 +8673 8943 0.4530 +8673 9026 0.5590 +8673 9066 0.4530 +8673 9140 0.5950 +8673 9146 0.5600 +8673 9185 0.4990 +8673 9217 0.6480 +8673 9218 0.7730 +8673 9341 0.9880 +8673 9342 0.9990 +8673 9378 0.4430 +8673 9392 0.4300 +8673 9474 0.5770 +8673 9482 0.9990 +8673 9515 0.6450 +8673 9522 0.5190 +8673 9527 0.9870 +8673 9545 0.5170 +8673 9554 0.8480 +8673 9570 0.8140 +8673 9685 0.5850 +8673 9698 0.5180 +8673 9776 0.6070 +8673 9821 0.5070 +8673 9829 0.5150 +8673 9842 0.7460 +8673 9856 0.4990 +8673 9892 0.6420 +8673 10053 0.5830 +8673 10228 0.9990 +8673 10254 0.5780 +8673 10282 0.9970 +8673 10490 0.9990 +8673 10497 0.4570 +8673 10533 0.5590 +8673 10618 0.6940 +8673 10652 0.9470 +8673 10717 0.5260 +8673 10791 0.7710 +8673 10814 0.7800 +8673 10815 0.7690 +8673 10871 0.4320 +8673 10959 0.5330 +8673 11037 0.4990 +8673 11337 0.5430 +8673 11345 0.5320 +8673 22848 0.4990 +8673 22863 0.9600 +8673 22905 0.5670 +8673 23149 0.5090 +8673 23208 0.6770 +8673 23339 0.9840 +8673 23431 0.5880 +8673 23557 0.6470 +8673 23673 0.9980 +8673 23710 0.5340 +8673 25977 0.5510 +8673 26022 0.7460 +8673 26100 0.4280 +8673 26119 0.5010 +8673 26258 0.6610 +8673 26276 0.9190 +8673 27072 0.9680 +8673 27095 0.4870 +8673 27131 0.5540 +8673 29091 0.7690 +8673 29924 0.5700 +8673 29978 0.5640 +8673 29988 0.5210 +8673 30011 0.5030 +8673 30849 0.5480 +8673 50618 0.5700 +8673 51272 0.7100 +8673 51429 0.5060 +8673 51622 0.4020 +8673 53349 0.4170 +8673 53407 0.9510 +8673 54106 0.4410 +8673 54843 0.6430 +8673 54885 0.5050 +8673 55014 0.9990 +8673 55054 0.4800 +8673 55330 0.5070 +8673 55707 0.5570 +8673 55823 0.4960 +8673 55850 0.7030 +8673 57590 0.4740 +8673 57617 0.6260 +8673 57724 0.6640 +8673 58513 0.5470 +8673 60673 0.4960 +8673 63908 0.8940 +8673 64422 0.5740 +8673 64601 0.9820 +8673 65082 0.9470 +8673 79065 0.4520 +8673 80331 0.4560 +8673 81567 0.5120 +8673 81631 0.4360 +8673 83547 0.5590 +8673 83734 0.4690 +8673 84062 0.5950 +8673 84251 0.4990 +8673 84958 0.5930 +8673 85021 0.5030 +8673 85439 0.5520 +8673 90019 0.5720 +8673 94120 0.5860 +8673 94121 0.6290 +8673 94122 0.5980 +8673 112755 0.9600 +8673 115548 0.5200 +8673 116841 0.8800 +8673 127833 0.8020 +8673 130340 0.4990 +8673 134957 0.9010 +8673 143187 0.9930 +8673 143425 0.7440 +8673 200576 0.4870 +8673 201294 0.5290 +8673 203062 0.6880 +8673 221960 0.4010 +8673 245972 0.4990 +8673 255324 0.4990 +8673 286451 0.4990 +8673 339302 0.5400 +8673 388552 0.5270 +8673 401258 0.5680 +8673 415117 0.9510 +8673 594855 0.5630 +8674 8675 0.9990 +8674 8676 0.9300 +8674 8677 0.9950 +8674 8723 0.6090 +8674 8766 0.6190 +8674 8773 0.9930 +8674 8774 0.9470 +8674 8775 0.9710 +8674 8907 0.6700 +8674 9066 0.5630 +8674 9183 0.6560 +8674 9218 0.4590 +8674 9341 0.7010 +8674 9342 0.9720 +8674 9382 0.7140 +8674 9482 0.9770 +8674 9515 0.6170 +8674 9527 0.9590 +8674 9545 0.4440 +8674 9554 0.8150 +8674 9570 0.9290 +8674 9648 0.6770 +8674 9685 0.4500 +8674 9827 0.5250 +8674 9892 0.7040 +8674 10139 0.5740 +8674 10226 0.4090 +8674 10228 0.9990 +8674 10282 0.8680 +8674 10466 0.6960 +8674 10490 0.9980 +8674 10618 0.9080 +8674 10640 0.4970 +8674 10652 0.8900 +8674 10814 0.7050 +8674 10815 0.6590 +8674 10890 0.4040 +8674 11311 0.8240 +8674 11336 0.5500 +8674 22796 0.7800 +8674 23215 0.4210 +8674 23256 0.8110 +8674 23339 0.4720 +8674 23673 0.9990 +8674 25839 0.8140 +8674 26119 0.5040 +8674 26276 0.4030 +8674 26984 0.4490 +8674 27072 0.4880 +8674 29978 0.5660 +8674 29988 0.4140 +8674 51272 0.7700 +8674 51542 0.8840 +8674 51560 0.5490 +8674 51594 0.6930 +8674 51603 0.4370 +8674 53407 0.9520 +8674 55014 0.7780 +8674 55275 0.9290 +8674 55610 0.4910 +8674 55690 0.5060 +8674 55770 0.5530 +8674 55850 0.8910 +8674 57189 0.4640 +8674 57511 0.7910 +8674 57589 0.5430 +8674 60412 0.4870 +8674 63908 0.9100 +8674 64601 0.5450 +8674 79571 0.6730 +8674 83548 0.7460 +8674 90196 0.5150 +8674 91949 0.7380 +8674 112755 0.9690 +8674 116841 0.9420 +8674 120892 0.4240 +8674 127833 0.4240 +8674 134957 0.7020 +8674 143187 0.9990 +8674 152579 0.6740 +8674 160364 0.6070 +8674 203062 0.6880 +8674 255758 0.4040 +8674 283849 0.4330 +8674 339122 0.5800 +8674 339302 0.6040 +8674 403313 0.4660 +8674 415117 0.8390 +8674 594855 0.5890 +8675 8676 0.7820 +8675 8677 0.9990 +8675 8723 0.9380 +8675 8766 0.5780 +8675 8773 0.9620 +8675 8774 0.8670 +8675 8775 0.9890 +8675 8802 0.5490 +8675 8938 0.5040 +8675 9117 0.4270 +8675 9183 0.6840 +8675 9341 0.9980 +8675 9342 0.9880 +8675 9367 0.6700 +8675 9382 0.8610 +8675 9392 0.4020 +8675 9482 0.9570 +8675 9515 0.5750 +8675 9527 0.8850 +8675 9554 0.7670 +8675 9559 0.4630 +8675 9570 0.9010 +8675 9648 0.9780 +8675 9685 0.6670 +8675 9827 0.6040 +8675 9890 0.4280 +8675 9950 0.4340 +8675 10139 0.6950 +8675 10226 0.6060 +8675 10228 0.9990 +8675 10244 0.5160 +8675 10282 0.8440 +8675 10466 0.7990 +8675 10490 0.9910 +8675 10618 0.7990 +8675 10652 0.9930 +8675 10791 0.8180 +8675 10814 0.7380 +8675 10815 0.7370 +8675 11311 0.9990 +8675 22796 0.7990 +8675 22836 0.6500 +8675 23256 0.7630 +8675 23339 0.4190 +8675 23355 0.5130 +8675 23673 0.9640 +8675 25839 0.8520 +8675 27333 0.4300 +8675 51209 0.6020 +8675 51272 0.7660 +8675 51542 0.9480 +8675 51560 0.6990 +8675 53407 0.9120 +8675 55014 0.9640 +8675 55275 0.9530 +8675 55610 0.5030 +8675 55850 0.7590 +8675 57511 0.8600 +8675 57589 0.6060 +8675 63908 0.9240 +8675 64601 0.4420 +8675 79065 0.4300 +8675 79571 0.7320 +8675 79716 0.7830 +8675 79948 0.5640 +8675 83548 0.8070 +8675 90196 0.5770 +8675 91949 0.8200 +8675 112755 0.7120 +8675 116841 0.7960 +8675 134957 0.6280 +8675 143187 0.9990 +8675 203062 0.7160 +8675 339122 0.5740 +8675 339302 0.5400 +8675 415117 0.7710 +8675 594855 0.5400 +8676 8677 0.7860 +8676 8723 0.5880 +8676 8766 0.4150 +8676 8773 0.9990 +8676 8774 0.5850 +8676 8775 0.8870 +8676 9056 0.4390 +8676 9341 0.9200 +8676 9342 0.8410 +8676 9482 0.8780 +8676 9515 0.8410 +8676 9527 0.7710 +8676 9545 0.4340 +8676 9554 0.7620 +8676 9570 0.6840 +8676 10228 0.8650 +8676 10282 0.6830 +8676 10490 0.8610 +8676 10497 0.5640 +8676 10578 0.7190 +8676 10652 0.8440 +8676 10791 0.6320 +8676 10814 0.6010 +8676 10815 0.5970 +8676 23265 0.4030 +8676 23673 0.8450 +8676 26258 0.5050 +8676 29110 0.4540 +8676 51272 0.6190 +8676 51311 0.4050 +8676 53407 0.7480 +8676 54535 0.4200 +8676 54819 0.4520 +8676 55014 0.6930 +8676 55763 0.5210 +8676 55850 0.6670 +8676 58484 0.4070 +8676 63908 0.7810 +8676 63932 0.4390 +8676 64005 0.4370 +8676 84061 0.5790 +8676 90019 0.4840 +8676 94120 0.4590 +8676 112755 0.5640 +8676 116841 0.7890 +8676 123207 0.4460 +8676 134957 0.9470 +8676 143187 0.7690 +8676 201294 0.9900 +8676 203062 0.6170 +8676 339229 0.4780 +8676 339302 0.5460 +8676 415117 0.9030 +8676 594855 0.5620 +8677 8723 0.5810 +8677 8773 0.6740 +8677 8774 0.7120 +8677 8775 0.9820 +8677 8907 0.4030 +8677 9117 0.6510 +8677 9172 0.4370 +8677 9341 0.9970 +8677 9342 0.7680 +8677 9367 0.6550 +8677 9392 0.4450 +8677 9482 0.8470 +8677 9515 0.5820 +8677 9527 0.8530 +8677 9554 0.9380 +8677 9570 0.7700 +8677 9648 0.9660 +8677 10226 0.6370 +8677 10228 0.8560 +8677 10244 0.5730 +8677 10282 0.8100 +8677 10490 0.9800 +8677 10618 0.4900 +8677 10652 0.9650 +8677 10791 0.5880 +8677 10814 0.5770 +8677 10815 0.5700 +8677 11311 0.8490 +8677 22836 0.6390 +8677 23256 0.4120 +8677 23339 0.4830 +8677 23673 0.9680 +8677 25839 0.4300 +8677 26276 0.5310 +8677 26984 0.6560 +8677 27072 0.5910 +8677 29091 0.5440 +8677 50846 0.4480 +8677 51209 0.6950 +8677 51272 0.6610 +8677 51542 0.7860 +8677 53407 0.8550 +8677 54212 0.4160 +8677 55014 0.7600 +8677 55275 0.7870 +8677 55823 0.6770 +8677 55850 0.7210 +8677 57511 0.4500 +8677 57617 0.7260 +8677 63908 0.7870 +8677 64601 0.7170 +8677 65082 0.5260 +8677 94233 0.5920 +8677 112755 0.6760 +8677 114801 0.4610 +8677 116841 0.6620 +8677 134957 0.6310 +8677 143187 0.9990 +8677 160364 0.6510 +8677 203062 0.7560 +8677 203245 0.5000 +8677 339302 0.5420 +8677 415117 0.7270 +8677 594855 0.5400 +8678 8723 0.4350 +8678 8737 0.4720 +8678 8766 0.4290 +8678 8772 0.5130 +8678 8835 0.5640 +8678 8837 0.6870 +8678 8841 0.4480 +8678 8877 0.7040 +8678 8878 0.9580 +8678 8887 0.4620 +8678 8975 0.9040 +8678 9021 0.6090 +8678 9077 0.5680 +8678 9097 0.6750 +8678 9100 0.6190 +8678 9140 0.9910 +8678 9191 0.8710 +8678 9261 0.4430 +8678 9306 0.5530 +8678 9342 0.5880 +8678 9392 0.4900 +8678 9447 0.7010 +8678 9451 0.5960 +8678 9474 0.9860 +8678 9531 0.6900 +8678 9655 0.5630 +8678 9706 0.9970 +8678 9711 0.9990 +8678 9776 0.9860 +8678 9804 0.5620 +8678 9817 0.5350 +8678 9821 0.9990 +8678 9927 0.6690 +8678 9958 0.4630 +8678 9978 0.4260 +8678 10013 0.5360 +8678 10017 0.8020 +8678 10018 0.9870 +8678 10044 0.4870 +8678 10059 0.7500 +8678 10128 0.6100 +8678 10133 0.5830 +8678 10134 0.4690 +8678 10190 0.7390 +8678 10228 0.5170 +8678 10241 0.6620 +8678 10346 0.5400 +8678 10399 0.7570 +8678 10423 0.4400 +8678 10456 0.5890 +8678 10533 0.9830 +8678 10563 0.4440 +8678 10626 0.7830 +8678 10645 0.4890 +8678 10869 0.5040 +8678 10871 0.6560 +8678 10891 0.5770 +8678 10987 0.5300 +8678 11009 0.4520 +8678 11035 0.4340 +8678 11130 0.5560 +8678 11152 0.5990 +8678 11315 0.4420 +8678 11329 0.4450 +8678 11337 0.9910 +8678 11345 0.9920 +8678 22863 0.9990 +8678 22926 0.6450 +8678 23001 0.5180 +8678 23032 0.4200 +8678 23118 0.8400 +8678 23130 0.6390 +8678 23192 0.8390 +8678 23239 0.5140 +8678 23410 0.6810 +8678 23411 0.7000 +8678 23433 0.4340 +8678 23503 0.7200 +8678 23533 0.5770 +8678 23551 0.9120 +8678 23604 0.9720 +8678 23645 0.5110 +8678 23657 0.8350 +8678 23710 0.9870 +8678 23786 0.4310 +8678 25851 0.4440 +8678 25989 0.7200 +8678 26100 0.9390 +8678 26578 0.4680 +8678 27113 0.5920 +8678 27252 0.5830 +8678 29062 0.7740 +8678 29108 0.4550 +8678 29110 0.6850 +8678 29982 0.9990 +8678 30837 0.5510 +8678 30849 0.9990 +8678 50852 0.6380 +8678 51024 0.5870 +8678 51099 0.6100 +8678 51100 0.9950 +8678 51135 0.5030 +8678 51191 0.5250 +8678 51284 0.6430 +8678 51339 0.6070 +8678 51422 0.5720 +8678 51652 0.5670 +8678 51744 0.4490 +8678 51806 0.4460 +8678 53349 0.8040 +8678 53632 0.5310 +8678 53917 0.5590 +8678 54106 0.8610 +8678 54205 0.7780 +8678 54463 0.4070 +8678 54476 0.6490 +8678 54541 0.4030 +8678 54734 0.4380 +8678 55014 0.7050 +8678 55054 0.9650 +8678 55062 0.9260 +8678 55102 0.6770 +8678 55201 0.9100 +8678 55332 0.6210 +8678 55353 0.6210 +8678 55626 0.9990 +8678 55669 0.6130 +8678 55697 0.6120 +8678 55737 0.8410 +8678 55770 0.6520 +8678 56270 0.5000 +8678 56848 0.4420 +8678 56947 0.4730 +8678 57120 0.8790 +8678 57192 0.4470 +8678 57488 0.4220 +8678 57521 0.6790 +8678 57617 0.4440 +8678 57724 0.5070 +8678 58484 0.9580 +8678 60673 0.9880 +8678 64127 0.6080 +8678 64223 0.4160 +8678 64422 0.9910 +8678 65018 0.9960 +8678 79065 0.8650 +8678 79370 0.6110 +8678 79443 0.4550 +8678 79680 0.7190 +8678 80183 0.7390 +8678 81631 0.9720 +8678 81671 0.9990 +8678 83460 0.8110 +8678 83667 0.4180 +8678 83734 0.8480 +8678 84174 0.5520 +8678 84260 0.4200 +8678 84557 0.9640 +8678 84676 0.4040 +8678 84938 0.7610 +8678 84971 0.7320 +8678 85363 0.7450 +8678 89849 0.6280 +8678 91860 0.4060 +8678 92552 0.9780 +8678 112770 0.4570 +8678 114548 0.7180 +8678 114907 0.5070 +8678 115004 0.9880 +8678 115201 0.7390 +8678 122809 0.5430 +8678 124997 0.6960 +8678 128338 0.7970 +8678 135892 0.4250 +8678 137902 0.7340 +8678 139341 0.6370 +8678 140735 0.5170 +8678 140901 0.5750 +8678 146850 0.5400 +8678 147945 0.9860 +8678 149371 0.9410 +8678 149420 0.5740 +8678 152007 0.8940 +8678 152559 0.5040 +8678 163688 0.4060 +8678 197259 0.6410 +8678 200576 0.4290 +8678 253260 0.4400 +8678 257202 0.4440 +8678 257397 0.7630 +8678 285973 0.8180 +8678 338322 0.7150 +8678 345611 0.8800 +8678 389384 0.4570 +8678 400668 0.5200 +8678 440093 0.4230 +8678 440686 0.4230 +8678 440738 0.8160 +8678 441925 0.9720 +8678 493856 0.7820 +8678 493869 0.4480 +8678 643246 0.4950 +8678 653604 0.4270 +8678 728378 0.4140 +8678 100287171 0.4840 +8678 100526767 0.5560 +8678 100528021 0.4570 +8678 110117498 0.5450 +8681 9415 0.6500 +8681 9791 0.6500 +8681 10390 0.6520 +8681 10400 0.6500 +8681 10434 0.6500 +8681 10672 0.6500 +8681 10908 0.6710 +8681 11145 0.6720 +8681 11283 0.7440 +8681 23646 0.6500 +8681 23659 0.7090 +8681 23761 0.6810 +8681 54947 0.6500 +8681 55002 0.4660 +8681 55349 0.7270 +8681 56994 0.6500 +8681 79153 0.6580 +8681 79663 0.5170 +8681 79888 0.6500 +8681 81490 0.6500 +8681 85465 0.6500 +8681 113612 0.6500 +8681 122618 0.6500 +8681 129450 0.4680 +8681 133121 0.6500 +8681 151056 0.6500 +8681 197342 0.4590 +8681 254531 0.6830 +8681 255043 0.6570 +8681 284161 0.6550 +8681 284541 0.6500 +8681 375775 0.6710 +8681 387521 0.6500 +8681 387522 0.6940 +8681 127814297 0.6470 +8682 8743 0.4450 +8682 8772 0.9600 +8682 8837 0.4360 +8682 8844 0.4010 +8682 9191 0.4610 +8683 8996 0.6250 +8683 9295 0.9620 +8683 9446 0.4580 +8683 9584 0.6640 +8683 9631 0.4500 +8683 9688 0.4500 +8683 9774 0.5140 +8683 9775 0.8910 +8683 9782 0.5370 +8683 9785 0.8150 +8683 9818 0.4290 +8683 9883 0.4410 +8683 9939 0.7080 +8683 9972 0.4420 +8683 9987 0.6670 +8683 10114 0.5900 +8683 10181 0.4050 +8683 10189 0.7620 +8683 10236 0.8240 +8683 10250 0.7800 +8683 10262 0.4540 +8683 10284 0.4080 +8683 10291 0.4930 +8683 10432 0.5080 +8683 10482 0.7580 +8683 10492 0.5670 +8683 10569 0.8610 +8683 10594 0.4550 +8683 10657 0.6640 +8683 10658 0.4610 +8683 10762 0.4450 +8683 10772 0.9210 +8683 10898 0.4300 +8683 10914 0.8560 +8683 10915 0.4160 +8683 10921 0.8280 +8683 10929 0.8620 +8683 10946 0.5030 +8683 10949 0.5110 +8683 10978 0.6800 +8683 10992 0.6190 +8683 11051 0.6480 +8683 11052 0.7360 +8683 11097 0.4860 +8683 11100 0.8180 +8683 11338 0.9650 +8683 22794 0.6100 +8683 22916 0.8650 +8683 22927 0.5130 +8683 23165 0.4190 +8683 23225 0.4370 +8683 23279 0.4500 +8683 23435 0.5580 +8683 23450 0.4340 +8683 23451 0.6400 +8683 23476 0.6860 +8683 23511 0.4290 +8683 23524 0.4710 +8683 23534 0.5470 +8683 23543 0.4050 +8683 23636 0.4330 +8683 23645 0.5770 +8683 24144 0.5620 +8683 25894 0.5370 +8683 26528 0.4830 +8683 26986 0.4230 +8683 27288 0.6130 +8683 27316 0.8840 +8683 27429 0.6780 +8683 29796 0.4460 +8683 29894 0.5160 +8683 29896 0.7520 +8683 29928 0.4440 +8683 29957 0.4120 +8683 51079 0.6120 +8683 51362 0.8410 +8683 51585 0.6970 +8683 51631 0.4230 +8683 53371 0.4660 +8683 55015 0.4870 +8683 55110 0.7150 +8683 55285 0.5730 +8683 55696 0.4450 +8683 55706 0.4130 +8683 55746 0.4890 +8683 55967 0.6220 +8683 56000 0.7060 +8683 57122 0.4510 +8683 58509 0.4360 +8683 58517 0.6530 +8683 65109 0.5650 +8683 79023 0.5950 +8683 79085 0.4080 +8683 79728 0.5220 +8683 79753 0.6120 +8683 79869 0.6450 +8683 79893 0.4010 +8683 79902 0.4890 +8683 80335 0.4700 +8683 81608 0.5450 +8683 81929 0.4430 +8683 84271 0.5940 +8683 84939 0.4050 +8683 84991 0.4170 +8683 91746 0.7250 +8683 92906 0.4440 +8683 112812 0.5280 +8683 114789 0.4080 +8683 119391 0.4490 +8683 129401 0.4600 +8683 135295 0.7690 +8683 139221 0.4050 +8683 140890 0.4890 +8683 143884 0.5290 +8683 146227 0.7600 +8683 168400 0.5570 +8683 199746 0.6220 +8683 220988 0.6620 +8683 284427 0.4080 +8683 348995 0.4390 +8683 374291 0.4080 +8683 390748 0.4460 +8683 493856 0.4330 +8683 728317 0.4050 +8683 728343 0.7060 +8683 100101267 0.4490 +8685 9332 0.5370 +8685 10901 0.4440 +8685 10954 0.4160 +8685 11326 0.5460 +8685 51311 0.5140 +8685 54209 0.4110 +8685 81035 0.5460 +8685 91937 0.5040 +8685 117156 0.7890 +8685 286133 0.4560 +8687 8688 0.5520 +8687 8689 0.4970 +8687 10362 0.5270 +8687 25984 0.4430 +8687 54474 0.4200 +8687 55507 0.4330 +8687 57639 0.5610 +8687 81850 0.4530 +8687 81851 0.5720 +8687 83896 0.6960 +8687 83900 0.4330 +8687 83901 0.4280 +8687 83902 0.4360 +8687 85280 0.4350 +8687 85289 0.5910 +8687 85290 0.5790 +8687 85291 0.4830 +8687 125115 0.4710 +8687 140258 0.6580 +8687 147183 0.5220 +8687 147409 0.6260 +8687 162605 0.5060 +8687 192666 0.4270 +8687 254950 0.4900 +8687 337878 0.6990 +8687 337879 0.7940 +8687 337880 0.7170 +8687 337970 0.4300 +8687 342574 0.5380 +8687 353288 0.5190 +8687 386672 0.4590 +8687 386676 0.4800 +8687 386678 0.6220 +8687 386680 0.4120 +8687 386682 0.4480 +8687 390792 0.4400 +8687 728224 0.4290 +8687 100132476 0.4410 +8688 8689 0.4800 +8688 25984 0.4580 +8688 54474 0.4170 +8688 121391 0.6380 +8688 125115 0.4340 +8688 147183 0.4870 +8688 162605 0.4810 +8688 192666 0.4320 +8688 206412 0.4140 +8688 342574 0.4930 +8688 353288 0.5050 +8688 390792 0.4410 +8689 25984 0.4200 +8689 54474 0.4420 +8689 55631 0.4140 +8689 57512 0.4040 +8689 64236 0.4150 +8689 83896 0.5500 +8689 113444 0.4530 +8689 125115 0.4660 +8689 140258 0.4150 +8689 147183 0.4840 +8689 149371 0.5910 +8689 162605 0.4720 +8689 192666 0.4640 +8689 203245 0.6250 +8689 337977 0.4010 +8689 342574 0.4940 +8689 353288 0.4880 +8689 390792 0.4500 +8690 53942 0.6910 +8690 57645 0.5000 +8690 84874 0.4180 +8690 116254 0.5180 +8690 203245 0.4830 +8692 9043 0.8180 +8692 9254 0.4120 +8692 9858 0.4240 +8692 10641 0.5150 +8692 10894 0.7320 +8692 11041 0.4440 +8692 11068 0.6290 +8692 11186 0.4010 +8692 11261 0.5480 +8692 23670 0.6200 +8692 26960 0.4380 +8692 50618 0.5360 +8692 51741 0.7590 +8692 54998 0.4490 +8692 55103 0.4950 +8692 55576 0.6630 +8692 57214 0.6080 +8692 64174 0.4560 +8692 79090 0.4020 +8693 9245 0.4780 +8693 10071 0.4470 +8693 23275 0.4110 +8693 29071 0.8180 +8693 51046 0.4030 +8693 51809 0.7550 +8693 55808 0.9420 +8693 56667 0.5870 +8693 56913 0.8410 +8693 83440 0.4290 +8693 94025 0.4920 +8693 118430 0.4150 +8693 140453 0.4930 +8693 143662 0.5090 +8693 192134 0.9070 +8693 200958 0.4760 +8693 256435 0.4010 +8693 394263 0.4670 +8693 727897 0.4460 +8693 728819 0.7610 +8694 9076 0.4280 +8694 9162 0.6560 +8694 9227 0.6400 +8694 9249 0.9210 +8694 9370 0.6800 +8694 9388 0.7280 +8694 9415 0.5150 +8694 9429 0.4620 +8694 9517 0.4150 +8694 9663 0.8720 +8694 9971 0.4330 +8694 10062 0.4950 +8694 10162 0.5900 +8694 10170 0.9200 +8694 10226 0.6200 +8694 10390 0.4380 +8694 10400 0.4310 +8694 10449 0.4100 +8694 10554 0.8090 +8694 10555 0.6850 +8694 10558 0.4740 +8694 10891 0.5830 +8694 10901 0.9130 +8694 10998 0.4580 +8694 10999 0.5670 +8694 11001 0.5540 +8694 11343 0.6310 +8694 22931 0.4580 +8694 22937 0.4580 +8694 23175 0.9110 +8694 23305 0.8230 +8694 23417 0.4790 +8694 23659 0.4630 +8694 26580 0.6520 +8694 27141 0.4660 +8694 29880 0.6080 +8694 29881 0.5030 +8694 29894 0.4830 +8694 50626 0.5080 +8694 50700 0.9190 +8694 51085 0.6270 +8694 51099 0.6730 +8694 51109 0.9240 +8694 51141 0.4030 +8694 51160 0.4120 +8694 51703 0.8360 +8694 54884 0.9140 +8694 54898 0.4140 +8694 55304 0.4010 +8694 55902 0.5440 +8694 56894 0.5380 +8694 56895 0.4310 +8694 56994 0.5030 +8694 57104 0.9270 +8694 57678 0.7410 +8694 60481 0.5510 +8694 63924 0.5510 +8694 64240 0.4500 +8694 64900 0.8540 +8694 79071 0.5650 +8694 79152 0.4060 +8694 79888 0.4890 +8694 79966 0.4590 +8694 80168 0.9930 +8694 80339 0.8280 +8694 80347 0.4870 +8694 84197 0.5140 +8694 84513 0.9520 +8694 84649 0.9990 +8694 84803 0.6540 +8694 84988 0.4820 +8694 116255 0.9960 +8694 119548 0.6600 +8694 126129 0.4910 +8694 128486 0.5220 +8694 129642 0.7190 +8694 132949 0.7490 +8694 137964 0.7610 +8694 139189 0.6590 +8694 145226 0.9240 +8694 150763 0.4750 +8694 157506 0.9230 +8694 158833 0.7810 +8694 158835 0.9520 +8694 160851 0.6740 +8694 195814 0.9210 +8694 196051 0.9560 +8694 203054 0.4040 +8694 254531 0.4390 +8694 339761 0.9070 +8694 346606 0.9890 +8694 347516 0.4260 +8694 376497 0.5530 +8694 440503 0.5910 +8694 727957 0.4580 +8694 729359 0.4490 +8697 8881 0.9990 +8697 8900 0.6720 +8697 9024 0.5050 +8697 9126 0.5130 +8697 9133 0.9530 +8697 9134 0.7220 +8697 9184 0.9790 +8697 9212 0.6420 +8697 9232 0.8280 +8697 9255 0.4340 +8697 9401 0.4230 +8697 9491 0.4110 +8697 9563 0.4820 +8697 9577 0.9010 +8697 9616 0.4550 +8697 9700 0.8870 +8697 9861 0.5460 +8697 10056 0.4860 +8697 10133 0.4780 +8697 10197 0.4630 +8697 10213 0.4840 +8697 10336 0.5600 +8697 10393 0.9990 +8697 10459 0.7020 +8697 10606 0.4490 +8697 10744 0.8290 +8697 10873 0.4100 +8697 10919 0.5160 +8697 11065 0.9910 +8697 11321 0.5050 +8697 23113 0.5890 +8697 23173 0.4540 +8697 23395 0.5830 +8697 23438 0.6250 +8697 23492 0.7200 +8697 23595 0.7050 +8697 23625 0.8300 +8697 23636 0.5100 +8697 23774 0.4440 +8697 25788 0.4720 +8697 25809 0.4340 +8697 25847 0.9990 +8697 25906 0.9990 +8697 25973 0.4530 +8697 26271 0.9850 +8697 27102 0.4450 +8697 27152 0.6370 +8697 27338 0.9950 +8697 29116 0.4650 +8697 29882 0.9990 +8697 29889 0.4110 +8697 29920 0.6460 +8697 29945 0.9990 +8697 51053 0.4620 +8697 51067 0.4880 +8697 51239 0.5680 +8697 51343 0.9990 +8697 51433 0.9990 +8697 51434 0.9990 +8697 51520 0.5560 +8697 51529 0.9990 +8697 51592 0.9940 +8697 51668 0.6460 +8697 51692 0.6460 +8697 54148 0.5040 +8697 54880 0.9060 +8697 55157 0.7900 +8697 55236 0.4510 +8697 55255 0.4230 +8697 55341 0.4470 +8697 55388 0.4970 +8697 55699 0.5750 +8697 55703 0.4050 +8697 55781 0.5340 +8697 55789 0.5230 +8697 56916 0.5150 +8697 57038 0.4780 +8697 57176 0.6650 +8697 57332 0.9050 +8697 57470 0.4350 +8697 57587 0.4280 +8697 60491 0.4780 +8697 60558 0.4140 +8697 64682 0.9990 +8697 65061 0.5040 +8697 79184 0.9130 +8697 79587 0.4050 +8697 79631 0.4960 +8697 79731 0.4300 +8697 79813 0.5190 +8697 79917 0.6040 +8697 80012 0.9000 +8697 80206 0.4970 +8697 80222 0.4230 +8697 81620 0.6650 +8697 81669 0.6040 +8697 81930 0.5340 +8697 83860 0.6850 +8697 84108 0.9110 +8697 84128 0.5560 +8697 84172 0.4050 +8697 84333 0.5560 +8697 84336 0.4340 +8697 84340 0.5300 +8697 84446 0.5050 +8697 84733 0.9020 +8697 84759 0.5710 +8697 85417 0.7990 +8697 92105 0.4880 +8697 92399 0.4650 +8697 92935 0.4330 +8697 93973 0.4440 +8697 119504 0.9990 +8697 124454 0.4040 +8697 140459 0.5710 +8697 166979 0.8250 +8697 246184 0.9990 +8697 254394 0.4390 +8697 283875 0.4060 +8697 286151 0.5890 +8697 375061 0.8300 +8697 388272 0.6140 +8697 440275 0.4510 +8698 8875 0.4560 +8698 8877 0.8750 +8698 8879 0.4960 +8698 9051 0.4380 +8698 9294 0.6670 +8698 9517 0.4060 +8698 9938 0.4760 +8698 10288 0.4550 +8698 10365 0.4100 +8698 10663 0.5160 +8698 10672 0.9240 +8698 10870 0.4950 +8698 53637 0.5070 +8698 53831 0.4590 +8698 55937 0.4460 +8698 56848 0.9220 +8698 57121 0.6060 +8698 63940 0.5800 +8698 64781 0.4050 +8698 64926 0.4560 +8698 79626 0.4780 +8698 80342 0.4260 +8698 81537 0.5080 +8698 120425 0.4050 +8698 124976 0.5710 +8698 126006 0.4240 +8698 130367 0.4110 +8698 374403 0.4820 +8698 388931 0.5820 +8701 10126 0.5910 +8701 10309 0.6650 +8701 23345 0.4010 +8701 23639 0.7830 +8701 25914 0.6920 +8701 27019 0.9860 +8701 27130 0.6240 +8701 27148 0.4270 +8701 28514 0.4060 +8701 51314 0.9420 +8701 51364 0.6640 +8701 54768 0.7500 +8701 54919 0.6850 +8701 54970 0.4760 +8701 55036 0.8090 +8701 55130 0.7550 +8701 55172 0.8980 +8701 55536 0.5250 +8701 55997 0.4260 +8701 56683 0.6170 +8701 64446 0.9790 +8701 79819 0.4360 +8701 79925 0.4580 +8701 80217 0.4820 +8701 81930 0.4290 +8701 83538 0.5980 +8701 83657 0.4150 +8701 83658 0.4220 +8701 85016 0.4240 +8701 85478 0.7510 +8701 89765 0.7220 +8701 92749 0.7140 +8701 93233 0.8130 +8701 94025 0.4030 +8701 115399 0.4130 +8701 115948 0.7050 +8701 123872 0.9060 +8701 126820 0.4780 +8701 127602 0.4500 +8701 135138 0.4080 +8701 139212 0.6420 +8701 140735 0.4040 +8701 149465 0.4130 +8701 160762 0.4020 +8701 161582 0.6800 +8701 163223 0.4080 +8701 164781 0.4300 +8701 200162 0.5390 +8701 201625 0.5620 +8701 220136 0.4310 +8701 221421 0.9190 +8701 221833 0.7790 +8701 246176 0.4690 +8701 256130 0.5340 +8701 339829 0.8150 +8701 345643 0.5820 +8701 345895 0.9300 +8701 352909 0.7340 +8701 374407 0.4030 +8701 388389 0.7390 +8701 441054 0.5060 +8702 8703 0.9120 +8702 8704 0.5580 +8702 8705 0.5590 +8702 8706 0.9370 +8702 8707 0.9340 +8702 8708 0.9490 +8702 9331 0.5600 +8702 9334 0.5730 +8702 9435 0.4660 +8702 9957 0.4460 +8702 10317 0.9540 +8702 10331 0.9520 +8702 10362 0.4480 +8702 10402 0.9480 +8702 10678 0.9540 +8702 10690 0.9350 +8702 11081 0.5040 +8702 11282 0.4740 +8702 11320 0.5620 +8702 50618 0.4100 +8702 51362 0.4950 +8702 53947 0.9380 +8702 55768 0.5290 +8702 56548 0.4570 +8702 56650 0.4180 +8702 56913 0.6650 +8702 79369 0.9310 +8702 84002 0.9560 +8702 93010 0.6380 +8702 113251 0.4460 +8702 124872 0.5470 +8702 146664 0.4820 +8702 192134 0.4360 +8702 221294 0.4060 +8702 256435 0.4420 +8702 283871 0.4110 +8702 391123 0.4580 +8703 8704 0.9120 +8703 8705 0.4140 +8703 8706 0.9280 +8703 8707 0.9180 +8703 8708 0.9220 +8703 9331 0.5250 +8703 9334 0.5500 +8703 9950 0.5020 +8703 10317 0.9350 +8703 10331 0.9380 +8703 10402 0.9400 +8703 10678 0.9440 +8703 10690 0.9260 +8703 11226 0.4720 +8703 11282 0.4590 +8703 27087 0.9130 +8703 27090 0.4870 +8703 51000 0.4340 +8703 53947 0.9220 +8703 55624 0.9390 +8703 55741 0.4490 +8703 56913 0.4210 +8703 64132 0.6390 +8703 79369 0.9080 +8703 79694 0.4130 +8703 80346 0.4890 +8703 81932 0.4050 +8703 83862 0.6490 +8703 84002 0.9240 +8703 84197 0.6330 +8703 84620 0.9250 +8703 124872 0.8390 +8703 135152 0.9170 +8703 146664 0.9410 +8703 283358 0.9210 +8703 338707 0.9000 +8704 8705 0.4590 +8704 8706 0.9280 +8704 8707 0.9300 +8704 8708 0.9510 +8704 9331 0.5430 +8704 9334 0.5710 +8704 10317 0.9410 +8704 10331 0.9430 +8704 10402 0.9370 +8704 10591 0.4190 +8704 10678 0.9600 +8704 10690 0.9360 +8704 11282 0.5360 +8704 11320 0.4290 +8704 22856 0.7900 +8704 27087 0.9190 +8704 30815 0.4090 +8704 53947 0.9240 +8704 55624 0.9310 +8704 56913 0.8630 +8704 79158 0.4080 +8704 79369 0.9420 +8704 84002 0.9340 +8704 84620 0.9580 +8704 124872 0.8790 +8704 135152 0.9230 +8704 146664 0.9420 +8704 149473 0.4700 +8704 283358 0.9240 +8704 338707 0.9070 +8705 8869 0.6460 +8705 9277 0.8290 +8705 9331 0.7060 +8705 9334 0.6660 +8705 11285 0.4320 +8705 29906 0.6440 +8705 53947 0.8710 +8705 55790 0.4660 +8705 56913 0.5780 +8705 64895 0.4930 +8705 81849 0.4130 +8705 84302 0.5070 +8705 170954 0.4110 +8706 9277 0.7650 +8706 9331 0.4600 +8706 10317 0.9060 +8706 10557 0.4400 +8706 26301 0.9590 +8706 53947 0.9960 +8706 56666 0.4180 +8706 64895 0.7460 +8706 84706 0.4880 +8706 127550 0.9410 +8707 8708 0.9080 +8707 9277 0.7640 +8707 9435 0.4060 +8707 9670 0.4200 +8707 10317 0.9130 +8707 26046 0.4240 +8707 30815 0.4810 +8707 51022 0.4930 +8707 53947 0.8050 +8707 54674 0.4780 +8707 56913 0.8450 +8707 64895 0.4310 +8707 79158 0.4960 +8707 79577 0.4520 +8707 84002 0.9090 +8707 91304 0.4200 +8707 222865 0.4460 +8707 285203 0.4870 +8707 619208 0.4300 +8708 8869 0.4090 +8708 9277 0.7630 +8708 9334 0.4480 +8708 10317 0.9120 +8708 10690 0.4200 +8708 30815 0.4920 +8708 51301 0.4440 +8708 53947 0.8380 +8708 56913 0.8770 +8708 64895 0.4280 +8708 84002 0.9130 +8708 124872 0.8520 +8708 127550 0.4610 +8710 9844 0.6110 +8710 23327 0.5480 +8710 57152 0.4170 +8710 130271 0.6620 +8710 149708 0.4350 +8710 163778 0.4120 +8710 388698 0.4090 +8710 389336 0.4440 +8711 9467 0.4080 +8711 27120 0.4710 +8711 84547 0.5730 +8711 85569 0.4870 +8712 9947 0.4240 +8712 30848 0.4640 +8712 51438 0.4920 +8712 56001 0.4030 +8712 81872 0.4330 +8712 90737 0.4560 +8712 158521 0.4370 +8712 203569 0.9460 +8712 389860 0.4050 +8712 100008586 0.5120 +8714 8856 0.7180 +8714 9356 0.4260 +8714 9360 0.4730 +8714 9376 0.6010 +8714 9420 0.4330 +8714 9429 0.6550 +8714 9619 0.5170 +8714 9688 0.6920 +8714 9961 0.4030 +8714 9965 0.6540 +8714 9970 0.5270 +8714 9971 0.6190 +8714 9972 0.5570 +8714 10045 0.4330 +8714 10057 0.5190 +8714 10347 0.4110 +8714 10350 0.5010 +8714 10560 0.4310 +8714 10599 0.7640 +8714 10864 0.6510 +8714 11309 0.7280 +8714 23460 0.4870 +8714 26168 0.4610 +8714 28231 0.5830 +8714 28232 0.4520 +8714 28234 0.7300 +8714 29940 0.4030 +8714 51081 0.7690 +8714 53919 0.4900 +8714 54575 0.5670 +8714 54576 0.5700 +8714 54577 0.5580 +8714 54578 0.6230 +8714 54600 0.4570 +8714 54657 0.5840 +8714 54658 0.6170 +8714 54659 0.4180 +8714 55048 0.5860 +8714 55244 0.5780 +8714 55324 0.4530 +8714 55867 0.4440 +8714 56413 0.4410 +8714 64137 0.4680 +8714 65108 0.5420 +8714 113235 0.4180 +8714 114571 0.5130 +8714 123264 0.8150 +8714 133482 0.5190 +8714 135152 0.4160 +8714 146802 0.4300 +8714 200931 0.9130 +8714 340273 0.4380 +8715 54623 0.5710 +8715 55852 0.4300 +8715 116135 0.4360 +8715 140688 0.6180 +8715 221150 0.4590 +8715 222234 0.4610 +8715 222235 0.4340 +8715 254251 0.5010 +8715 374618 0.6690 +8715 375323 0.5880 +8715 375612 0.4850 +8717 8718 0.9940 +8717 8737 0.9990 +8717 8738 0.9800 +8717 8742 0.7280 +8717 8743 0.8650 +8717 8767 0.4510 +8717 8772 0.9990 +8717 8795 0.9900 +8717 8797 0.9950 +8717 8837 0.9990 +8717 8877 0.4240 +8717 8887 0.5880 +8717 8915 0.5510 +8717 8996 0.4060 +8717 9099 0.6540 +8717 9140 0.4260 +8717 9149 0.4640 +8717 9260 0.6440 +8717 9261 0.5170 +8717 9466 0.4430 +8717 9474 0.4800 +8717 9530 0.8590 +8717 9532 0.4380 +8717 9618 0.5080 +8717 9641 0.8870 +8717 9755 0.5350 +8717 9825 0.9090 +8717 9868 0.6520 +8717 9927 0.4420 +8717 10010 0.9980 +8717 10018 0.4450 +8717 10133 0.7150 +8717 10293 0.5730 +8717 10318 0.6680 +8717 10399 0.4190 +8717 10454 0.9690 +8717 10616 0.8560 +8717 10657 0.4450 +8717 10771 0.6490 +8717 10811 0.5350 +8717 10913 0.6910 +8717 11035 0.9990 +8717 11124 0.9110 +8717 11140 0.5430 +8717 23118 0.9760 +8717 23586 0.7640 +8717 25999 0.5140 +8717 26133 0.5980 +8717 27005 0.4660 +8717 27035 0.9620 +8717 27242 0.9790 +8717 29110 0.8250 +8717 51135 0.4360 +8717 51330 0.7150 +8717 51567 0.4470 +8717 51741 0.5200 +8717 54205 0.5990 +8717 55072 0.8740 +8717 55312 0.8940 +8717 55367 0.6620 +8717 55731 0.4050 +8717 56957 0.5300 +8717 57162 0.9550 +8717 57506 0.9960 +8717 64135 0.6580 +8717 79132 0.6180 +8717 79155 0.5010 +8717 79671 0.4550 +8717 81858 0.8710 +8717 91689 0.5760 +8717 124056 0.8510 +8717 142678 0.8210 +8717 147138 0.4210 +8717 153090 0.6050 +8717 197259 0.8590 +8717 220213 0.4190 +8717 257397 0.9560 +8718 8737 0.7060 +8718 8740 0.6350 +8718 8741 0.4880 +8718 8742 0.9940 +8718 8743 0.9600 +8718 8744 0.4910 +8718 8771 0.8480 +8718 8772 0.9170 +8718 8784 0.7010 +8718 8797 0.9980 +8718 8837 0.4380 +8718 8856 0.4040 +8718 8995 0.4420 +8718 9232 0.4330 +8718 9530 0.4480 +8718 9966 0.9990 +8718 10018 0.5760 +8718 10673 0.5250 +8718 10913 0.4940 +8718 11148 0.4280 +8718 23274 0.5290 +8718 23308 0.4130 +8718 23495 0.5270 +8718 26191 0.6670 +8718 27242 0.7850 +8718 27348 0.7690 +8718 29851 0.4770 +8718 50943 0.4550 +8718 51091 0.4780 +8718 51330 0.8000 +8718 53347 0.4700 +8718 55532 0.6040 +8718 55717 0.7740 +8718 56244 0.4080 +8718 117289 0.5140 +8718 126259 0.4020 +8718 169026 0.5910 +8718 170685 0.7550 +8720 8877 0.5140 +8720 9159 0.6810 +8720 9451 0.6350 +8720 9567 0.7140 +8720 9695 0.5180 +8720 10159 0.4260 +8720 10488 0.8720 +8720 10595 0.5680 +8720 10956 0.5170 +8720 11253 0.5200 +8720 22926 0.9740 +8720 22937 0.9480 +8720 23065 0.4720 +8720 23193 0.4020 +8720 23645 0.4080 +8720 27344 0.4530 +8720 29927 0.4870 +8720 51141 0.5200 +8720 51156 0.4370 +8720 51360 0.9790 +8720 51586 0.5550 +8720 51643 0.4030 +8720 54757 0.4040 +8720 54760 0.6400 +8720 56975 0.5440 +8720 64374 0.4440 +8720 64764 0.9030 +8720 79158 0.6010 +8720 79794 0.7990 +8720 83693 0.4400 +8720 84572 0.5140 +8720 84699 0.9450 +8720 90407 0.4130 +8720 90993 0.8960 +8720 133522 0.4140 +8720 148327 0.8880 +8720 255738 0.7270 +8720 440026 0.4080 +8721 9045 0.8840 +8721 9349 0.8750 +8721 9470 0.4170 +8721 9732 0.7830 +8721 9789 0.4120 +8721 9858 0.4610 +8721 9877 0.4250 +8721 10262 0.4100 +8721 10399 0.9770 +8721 10430 0.4690 +8721 10471 0.4260 +8721 10598 0.5780 +8721 10767 0.4710 +8721 10963 0.5170 +8721 11222 0.6330 +8721 11224 0.9360 +8721 11316 0.4690 +8721 23204 0.4810 +8721 23215 0.4210 +8721 23521 0.8350 +8721 23640 0.6510 +8721 25873 0.9280 +8721 26058 0.5660 +8721 27243 0.5870 +8721 28998 0.6590 +8721 29085 0.5100 +8721 29093 0.6250 +8721 51035 0.5770 +8721 51042 0.4650 +8721 51065 0.5330 +8721 51069 0.7190 +8721 51079 0.4810 +8721 51081 0.5560 +8721 51116 0.5330 +8721 51121 0.8010 +8721 51149 0.5350 +8721 51154 0.4710 +8721 51319 0.5380 +8721 51329 0.4390 +8721 51398 0.4990 +8721 51806 0.5590 +8721 54948 0.5840 +8721 55173 0.6100 +8721 55272 0.5420 +8721 55316 0.5160 +8721 55646 0.8280 +8721 55651 0.5050 +8721 59286 0.4150 +8721 63931 0.4930 +8721 64374 0.7050 +8721 64960 0.5480 +8721 64963 0.5090 +8721 64969 0.6530 +8721 65003 0.4150 +8721 65008 0.4340 +8721 79590 0.6830 +8721 81570 0.5200 +8721 83658 0.4280 +8721 90850 0.6830 +8721 91689 0.6880 +8721 91860 0.5520 +8721 114987 0.7750 +8721 116832 0.8120 +8721 124454 0.5560 +8721 126402 0.4940 +8721 140032 0.4800 +8721 140801 0.8110 +8721 163688 0.5520 +8721 200916 0.7870 +8721 254268 0.7880 +8721 285855 0.7910 +8721 347487 0.4960 +8721 387129 0.6420 +8721 387332 0.4810 +8721 645051 0.4680 +8721 645073 0.4680 +8721 729396 0.4680 +8721 729422 0.4680 +8721 729428 0.4680 +8721 729431 0.4680 +8721 729442 0.4680 +8721 729447 0.4680 +8721 100008586 0.4680 +8721 100132399 0.4680 +8721 100287482 0.4570 +8721 100505478 0.5650 +8721 100526842 0.7690 +8721 100529097 0.5670 +8721 100529239 0.9600 +8721 102724473 0.4680 +8722 11337 0.4400 +8722 11345 0.6820 +8722 23192 0.7100 +8722 23400 0.5570 +8722 23710 0.7060 +8722 29952 0.4660 +8722 54982 0.7000 +8722 57192 0.4490 +8722 57573 0.4130 +8722 63934 0.4080 +8722 65082 0.4560 +8722 80331 0.6170 +8722 154881 0.6690 +8722 256471 0.7080 +8723 8724 0.7220 +8723 8766 0.5290 +8723 8773 0.9100 +8723 8774 0.5810 +8723 8775 0.5530 +8723 8867 0.4250 +8723 9146 0.4320 +8723 9341 0.9170 +8723 9342 0.9110 +8723 9474 0.4680 +8723 9482 0.5850 +8723 9515 0.5520 +8723 9527 0.6000 +8723 9554 0.6030 +8723 9559 0.8810 +8723 9570 0.7290 +8723 9706 0.5210 +8723 9784 0.7280 +8723 10228 0.9090 +8723 10282 0.5920 +8723 10490 0.7450 +8723 10652 0.6700 +8723 10814 0.7200 +8723 10815 0.7200 +8723 10897 0.5030 +8723 11337 0.4770 +8723 11345 0.5660 +8723 23161 0.5090 +8723 23173 0.4180 +8723 23286 0.8750 +8723 23386 0.7360 +8723 23673 0.9320 +8723 23710 0.5570 +8723 26100 0.5230 +8723 27131 0.8940 +8723 29886 0.5640 +8723 29907 0.8020 +8723 29916 0.4740 +8723 29934 0.6500 +8723 30849 0.4120 +8723 51102 0.5740 +8723 51143 0.9270 +8723 51164 0.4400 +8723 51272 0.5530 +8723 51375 0.9890 +8723 51429 0.5690 +8723 51626 0.9020 +8723 51699 0.8790 +8723 53407 0.5900 +8723 54536 0.4830 +8723 55014 0.9190 +8723 55062 0.5020 +8723 55112 0.9000 +8723 55435 0.5390 +8723 55614 0.4090 +8723 55737 0.8910 +8723 55764 0.7080 +8723 55850 0.5410 +8723 57614 0.4360 +8723 58533 0.9540 +8723 63908 0.5540 +8723 64089 0.4620 +8723 64422 0.4960 +8723 64786 0.4300 +8723 79065 0.5060 +8723 79441 0.4290 +8723 79659 0.7230 +8723 81609 0.5540 +8723 83657 0.7200 +8723 83658 0.7220 +8723 83891 0.4290 +8723 89891 0.9000 +8723 112755 0.5880 +8723 112936 0.7550 +8723 116841 0.5830 +8723 134957 0.5550 +8723 140735 0.5580 +8723 143187 0.6060 +8723 169166 0.4290 +8723 200132 0.5400 +8723 203062 0.6160 +8723 254122 0.7010 +8723 255758 0.7240 +8723 257364 0.5690 +8723 285973 0.4330 +8723 339302 0.5400 +8723 343521 0.5400 +8723 401548 0.9730 +8723 415117 0.5870 +8723 594855 0.5400 +8724 8766 0.4880 +8724 9100 0.8390 +8724 9146 0.6380 +8724 9559 0.9990 +8724 9779 0.8950 +8724 9784 0.7730 +8724 9877 0.4480 +8724 9897 0.4850 +8724 9980 0.4050 +8724 10137 0.4720 +8724 10311 0.5440 +8724 10490 0.4180 +8724 10618 0.4540 +8724 10652 0.4640 +8724 22986 0.4100 +8724 23033 0.4520 +8724 23041 0.5390 +8724 23161 0.5470 +8724 23317 0.5270 +8724 23325 0.4980 +8724 23678 0.5840 +8724 27131 0.9530 +8724 28966 0.5440 +8724 29886 0.8050 +8724 29907 0.5960 +8724 29934 0.9420 +8724 51019 0.4440 +8724 51119 0.4480 +8724 51429 0.5310 +8724 51479 0.5080 +8724 51699 0.9900 +8724 53938 0.4710 +8724 54520 0.4580 +8724 54899 0.4080 +8724 55004 0.4160 +8724 55737 0.9990 +8724 55764 0.7000 +8724 55773 0.4730 +8724 56914 0.4030 +8724 57020 0.4910 +8724 57231 0.4330 +8724 57537 0.4190 +8724 58533 0.9810 +8724 64089 0.5290 +8724 79856 0.5140 +8724 79971 0.9110 +8724 81609 0.9130 +8724 83891 0.4980 +8724 84079 0.4240 +8724 90203 0.4960 +8724 112574 0.4780 +8724 112936 0.9550 +8724 114815 0.4890 +8724 124460 0.4100 +8724 169166 0.4740 +8724 253725 0.5540 +8724 254122 0.6070 +8724 257364 0.4420 +8724 259287 0.4220 +8724 387680 0.4420 +8724 100287171 0.4340 +8725 9475 0.4740 +8725 9531 0.5590 +8725 9532 0.5520 +8725 9533 0.6980 +8725 9646 0.4970 +8725 9868 0.4780 +8725 10273 0.5400 +8725 10471 0.9820 +8725 10574 0.5890 +8725 10575 0.6500 +8725 10576 0.5860 +8725 10594 0.4720 +8725 10693 0.5500 +8725 10694 0.5830 +8725 10728 0.6860 +8725 10856 0.9780 +8725 10963 0.5850 +8725 11044 0.8260 +8725 11128 0.6800 +8725 11140 0.5770 +8725 11321 0.6160 +8725 22948 0.5590 +8725 23234 0.5600 +8725 23753 0.5820 +8725 25885 0.7040 +8725 26353 0.5400 +8725 51082 0.7920 +8725 51184 0.6730 +8725 51398 0.5400 +8725 51726 0.5480 +8725 51728 0.4490 +8725 54623 0.4170 +8725 54680 0.4840 +8725 54765 0.4350 +8725 54941 0.4240 +8725 55011 0.9680 +8725 55172 0.5680 +8725 55622 0.4280 +8725 55703 0.7240 +8725 55718 0.7840 +8725 55929 0.4660 +8725 56984 0.5500 +8725 57003 0.5650 +8725 58490 0.5110 +8725 79577 0.4570 +8725 79657 0.9770 +8725 79871 0.7130 +8725 81572 0.9730 +8725 83758 0.6850 +8725 116143 0.9680 +8725 120379 0.5750 +8725 150160 0.5400 +8725 729830 0.4400 +8725 110599588 0.8270 +8726 8815 0.4320 +8726 8841 0.7020 +8726 8882 0.4850 +8726 8945 0.4050 +8726 8970 0.6630 +8726 9070 0.6890 +8726 9112 0.6350 +8726 9219 0.6270 +8726 9320 0.4320 +8726 9425 0.4150 +8726 9427 0.4630 +8726 9555 0.6040 +8726 9611 0.6160 +8726 9612 0.4600 +8726 9739 0.5900 +8726 9757 0.5040 +8726 9759 0.4020 +8726 9869 0.6160 +8726 9898 0.9080 +8726 9935 0.5050 +8726 10014 0.6350 +8726 10138 0.4950 +8726 10155 0.5580 +8726 10322 0.4060 +8726 10336 0.9380 +8726 10389 0.9310 +8726 10399 0.4350 +8726 10419 0.5450 +8726 10539 0.5490 +8726 10664 0.7090 +8726 10743 0.4090 +8726 10765 0.5130 +8726 10919 0.6880 +8726 10951 0.7820 +8726 11091 0.6180 +8726 11168 0.4710 +8726 11335 0.4210 +8726 22823 0.9610 +8726 22955 0.7170 +8726 22976 0.5850 +8726 23028 0.7460 +8726 23054 0.5460 +8726 23067 0.5270 +8726 23112 0.5210 +8726 23135 0.8580 +8726 23186 0.6380 +8726 23411 0.7160 +8726 23429 0.7050 +8726 23466 0.9420 +8726 23476 0.4360 +8726 23492 0.9670 +8726 23512 0.9990 +8726 25942 0.5470 +8726 26040 0.4100 +8726 26147 0.9720 +8726 26523 0.5620 +8726 27152 0.4720 +8726 27327 0.4990 +8726 29072 0.5820 +8726 29947 0.6200 +8726 51131 0.4090 +8726 51501 0.5710 +8726 51533 0.4010 +8726 51564 0.6380 +8726 53615 0.6700 +8726 54145 0.6620 +8726 54815 0.6350 +8726 54904 0.5130 +8726 55252 0.7050 +8726 55632 0.4560 +8726 55766 0.6080 +8726 55869 0.4710 +8726 55870 0.5450 +8726 56950 0.4720 +8726 57167 0.6620 +8726 57332 0.9620 +8726 57459 0.6230 +8726 57504 0.6180 +8726 57621 0.4100 +8726 58508 0.6000 +8726 63978 0.4950 +8726 64324 0.5960 +8726 64754 0.5050 +8726 65018 0.4060 +8726 79084 0.4850 +8726 79447 0.5220 +8726 79605 0.4090 +8726 79718 0.4750 +8726 79723 0.6170 +8726 79813 0.5990 +8726 79823 0.5510 +8726 79923 0.6530 +8726 80012 0.9240 +8726 80314 0.6700 +8726 80816 0.5550 +8726 80854 0.6380 +8726 83746 0.4340 +8726 83852 0.4580 +8726 84108 0.9500 +8726 84232 0.4990 +8726 84295 0.4330 +8726 84333 0.9400 +8726 84444 0.6390 +8726 84458 0.5850 +8726 84678 0.6880 +8726 84733 0.9740 +8726 84759 0.9570 +8726 84942 0.7350 +8726 84962 0.5040 +8726 85235 0.6260 +8726 85236 0.6620 +8726 92815 0.6080 +8726 94239 0.5820 +8726 96764 0.4790 +8726 121536 0.9990 +8726 126961 0.4640 +8726 128312 0.6300 +8726 132625 0.7730 +8726 150572 0.4360 +8726 171023 0.9390 +8726 192669 0.5570 +8726 192670 0.5540 +8726 196528 0.4750 +8726 221613 0.6190 +8726 221895 0.4290 +8726 255626 0.6400 +8726 317772 0.6150 +8726 387640 0.6550 +8726 387893 0.6460 +8726 404281 0.6390 +8726 440093 0.9170 +8726 440686 0.9220 +8726 440689 0.6340 +8726 474382 0.6260 +8726 653604 0.9600 +8726 100170841 0.8750 +8726 100532731 0.7690 +8727 10880 0.9360 +8727 10881 0.9500 +8727 11214 0.8640 +8727 23731 0.6250 +8727 54212 0.4760 +8727 54221 0.7540 +8727 54942 0.4530 +8727 59274 0.4860 +8727 64283 0.5590 +8727 83660 0.5280 +8727 84282 0.6090 +8727 134266 0.4570 +8727 152273 0.5300 +8728 8754 0.4530 +8728 8848 0.4790 +8728 9374 0.4180 +8728 9537 0.4010 +8728 9644 0.7990 +8728 9819 0.4220 +8728 10144 0.5230 +8728 10417 0.4330 +8728 10459 0.7600 +8728 10631 0.4090 +8728 11197 0.4200 +8728 51429 0.6200 +8728 51455 0.6330 +8728 54890 0.4340 +8728 54974 0.4180 +8728 55022 0.4200 +8728 56339 0.5110 +8728 57117 0.4770 +8728 57721 0.5250 +8728 64399 0.4180 +8728 79068 0.4200 +8728 79148 0.4040 +8728 79807 0.5840 +8728 79875 0.4520 +8729 8766 0.5310 +8729 8945 0.4770 +8729 9230 0.4120 +8729 9276 0.6460 +8729 9371 0.5090 +8729 9391 0.5480 +8729 9493 0.5040 +8729 9554 0.5760 +8729 9585 0.5040 +8729 9632 0.6780 +8729 9919 0.7280 +8729 10112 0.4990 +8729 10113 0.5100 +8729 10121 0.5550 +8729 10124 0.4800 +8729 10139 0.5030 +8729 10427 0.4500 +8729 10540 0.6070 +8729 10564 0.4760 +8729 10565 0.4390 +8729 10671 0.5170 +8729 10749 0.5570 +8729 10945 0.6280 +8729 10959 0.6600 +8729 10972 0.6740 +8729 11004 0.5040 +8729 11014 0.5950 +8729 11015 0.5990 +8729 11127 0.5060 +8729 11258 0.5830 +8729 11316 0.6540 +8729 22818 0.5750 +8729 22820 0.8970 +8729 22920 0.4990 +8729 23041 0.4050 +8729 23046 0.4990 +8729 23095 0.5100 +8729 23163 0.4190 +8729 23303 0.5490 +8729 23423 0.5090 +8729 23644 0.4330 +8729 24137 0.6010 +8729 25972 0.4890 +8729 26153 0.4990 +8729 26225 0.5490 +8729 26286 0.7360 +8729 26958 0.7540 +8729 29127 0.5040 +8729 51014 0.5140 +8729 51143 0.5210 +8729 51164 0.5130 +8729 51226 0.5760 +8729 51326 0.4770 +8729 51552 0.4310 +8729 54622 0.4220 +8729 54732 0.5240 +8729 54867 0.4260 +8729 55083 0.4990 +8729 55324 0.4140 +8729 55582 0.4990 +8729 55605 0.5090 +8729 55614 0.5040 +8729 55738 0.8090 +8729 55860 0.5240 +8729 56681 0.4370 +8729 56992 0.5710 +8729 57104 0.4380 +8729 64746 0.5360 +8729 64837 0.5960 +8729 79591 0.5470 +8729 80117 0.4910 +8729 81876 0.8900 +8729 81930 0.4990 +8729 84100 0.4770 +8729 84364 0.7380 +8729 84516 0.5070 +8729 84643 0.4990 +8729 89953 0.5260 +8729 90990 0.5130 +8729 91543 0.5350 +8729 93661 0.5610 +8729 114960 0.4530 +8729 115761 0.4930 +8729 124602 0.4990 +8729 140735 0.5040 +8729 146909 0.4990 +8729 147700 0.5180 +8729 221079 0.4770 +8729 221458 0.4990 +8729 285643 0.5010 +8729 339122 0.4010 +8729 390790 0.4770 +8731 8732 0.9980 +8731 8812 0.4220 +8731 8898 0.6000 +8731 9019 0.9010 +8731 9150 0.4230 +8731 9470 0.9370 +8731 9516 0.8700 +8731 9639 0.5980 +8731 9656 0.4250 +8731 9896 0.4460 +8731 9927 0.7930 +8731 10397 0.4420 +8731 22803 0.4870 +8731 22828 0.6220 +8731 22916 0.9390 +8731 23070 0.7050 +8731 23095 0.7030 +8731 23191 0.7200 +8731 23633 0.8070 +8731 26353 0.4070 +8731 26580 0.4310 +8731 27161 0.9040 +8731 29113 0.4210 +8731 54332 0.8800 +8731 55421 0.9050 +8731 55783 0.7270 +8731 57466 0.5990 +8731 57716 0.7110 +8731 78997 0.4100 +8731 79101 0.4580 +8731 79628 0.7180 +8731 81846 0.5700 +8731 83640 0.9980 +8731 83891 0.7670 +8731 90678 0.4530 +8731 121512 0.4720 +8731 144233 0.4510 +8731 161198 0.8160 +8731 253314 0.7700 +8731 317649 0.8040 +8731 353267 0.9890 +8731 392517 0.6060 +8731 404672 0.5090 +8732 9110 0.5600 +8732 9150 0.5070 +8732 9400 0.6160 +8732 9611 0.5030 +8732 9612 0.5080 +8732 9646 0.4410 +8732 9669 0.5450 +8732 9716 0.5240 +8732 10045 0.5090 +8732 10146 0.4220 +8732 10621 0.4100 +8732 10762 0.7280 +8732 10905 0.4120 +8732 10914 0.4400 +8732 11218 0.4720 +8732 22803 0.4120 +8732 22916 0.7900 +8732 22980 0.4700 +8732 23070 0.8280 +8732 23168 0.5750 +8732 23595 0.4120 +8732 26043 0.4350 +8732 26608 0.4770 +8732 29113 0.4360 +8732 51126 0.4390 +8732 51611 0.4480 +8732 51729 0.4040 +8732 54439 0.4340 +8732 54464 0.5270 +8732 54606 0.4030 +8732 55656 0.5220 +8732 55671 0.4010 +8732 55783 0.7290 +8732 57223 0.5780 +8732 57466 0.4960 +8732 64895 0.6460 +8732 79577 0.5050 +8732 79871 0.5100 +8732 80067 0.5580 +8732 83640 0.6490 +8732 84284 0.4340 +8732 84310 0.4300 +8732 84549 0.4450 +8732 96764 0.5740 +8732 117143 0.4970 +8732 148932 0.4480 +8732 151987 0.6760 +8732 161198 0.9280 +8732 201626 0.4940 +8732 404672 0.5410 +8733 8813 0.4230 +8733 8818 0.5280 +8733 9091 0.7120 +8733 9400 0.4070 +8733 9401 0.4750 +8733 9487 0.7440 +8733 9488 0.7310 +8733 9526 0.5200 +8733 9684 0.4370 +8733 10026 0.9990 +8733 11159 0.4010 +8733 22827 0.4080 +8733 23246 0.4350 +8733 23556 0.5180 +8733 25896 0.4010 +8733 25963 0.5270 +8733 26233 0.4730 +8733 26873 0.4560 +8733 27315 0.4900 +8733 29122 0.4220 +8733 50626 0.5790 +8733 51160 0.4780 +8733 51227 0.7150 +8733 51604 0.9990 +8733 54344 0.4540 +8733 54512 0.7190 +8733 54872 0.6310 +8733 54958 0.4100 +8733 55596 0.4190 +8733 55630 0.4460 +8733 55650 0.7540 +8733 57597 0.4130 +8733 79087 0.5570 +8733 80055 0.9640 +8733 80235 0.6890 +8733 81858 0.5600 +8733 84232 0.5060 +8733 84290 0.5400 +8733 84720 0.9770 +8733 84875 0.4450 +8733 84988 0.4380 +8733 84992 0.6440 +8733 93183 0.7150 +8733 93210 0.5150 +8733 94005 0.9990 +8733 113655 0.5160 +8733 114770 0.5100 +8733 128869 0.9990 +8733 146705 0.4690 +8733 151742 0.4090 +8733 203054 0.4720 +8733 284098 0.7100 +8733 340390 0.4880 +8733 441381 0.4170 +8733 727957 0.5010 +8735 9051 0.4210 +8735 9829 0.4590 +8735 10200 0.4280 +8735 10398 0.8470 +8735 10627 0.7260 +8735 22989 0.5740 +8735 23303 0.4060 +8735 29895 0.8630 +8735 56985 0.6090 +8735 58498 0.4080 +8735 58529 0.4090 +8735 79784 0.9150 +8735 84700 0.5820 +8735 93408 0.4230 +8735 103910 0.7510 +8735 114801 0.4390 +8735 116369 0.4400 +8735 140465 0.8520 +8735 146862 0.4020 +8735 196541 0.4630 +8735 221491 0.4520 +8735 388335 0.4090 +8735 399687 0.5630 +8736 9663 0.4700 +8736 11155 0.4690 +8736 23363 0.9250 +8736 26548 0.4740 +8736 27098 0.5190 +8736 27295 0.6040 +8736 29895 0.4520 +8736 51773 0.4290 +8736 51778 0.6880 +8736 57158 0.4290 +8736 58529 0.4900 +8736 84033 0.6220 +8736 84034 0.4020 +8736 84676 0.4500 +8736 85366 0.4380 +8736 91624 0.4100 +8736 129446 0.4090 +8736 150572 0.5040 +8736 165904 0.5350 +8736 202333 0.4450 +8736 282996 0.4380 +8736 642597 0.4160 +8737 8738 0.8140 +8737 8743 0.9480 +8737 8767 0.7110 +8737 8772 0.9990 +8737 8795 0.9950 +8737 8797 0.9710 +8737 8837 0.9990 +8737 8877 0.4690 +8737 8878 0.9970 +8737 8887 0.8430 +8737 8915 0.6540 +8737 9020 0.6070 +8737 9076 0.4190 +8737 9099 0.7660 +8737 9140 0.6350 +8737 9175 0.5440 +8737 9261 0.7420 +8737 9368 0.4360 +8737 9447 0.4500 +8737 9474 0.8970 +8737 9530 0.5840 +8737 9641 0.7500 +8737 9817 0.5680 +8737 9825 0.6850 +8737 9844 0.4210 +8737 9958 0.4480 +8737 10010 0.8360 +8737 10018 0.4920 +8737 10059 0.9420 +8737 10105 0.5480 +8737 10133 0.9710 +8737 10273 0.6420 +8737 10392 0.4890 +8737 10399 0.5200 +8737 10454 0.9830 +8737 10475 0.4470 +8737 10533 0.6950 +8737 10537 0.5590 +8737 10616 0.9860 +8737 10892 0.6750 +8737 10956 0.4530 +8737 11035 0.9990 +8737 11040 0.4060 +8737 11124 0.9130 +8737 11140 0.6840 +8737 22861 0.4030 +8737 22900 0.4240 +8737 23098 0.7210 +8737 23118 0.9990 +8737 23411 0.5810 +8737 23586 0.9150 +8737 23643 0.6210 +8737 25999 0.6760 +8737 26994 0.5440 +8737 27005 0.9820 +8737 27035 0.8260 +8737 27242 0.4860 +8737 29108 0.7500 +8737 29110 0.9790 +8737 51079 0.4180 +8737 51135 0.4080 +8737 51284 0.7250 +8737 51311 0.6210 +8737 51588 0.5220 +8737 54106 0.6340 +8737 54205 0.5620 +8737 54476 0.9100 +8737 55054 0.5450 +8737 55072 0.9930 +8737 55312 0.5140 +8737 55367 0.9270 +8737 55423 0.4140 +8737 55665 0.4130 +8737 55692 0.4030 +8737 55749 0.4800 +8737 56957 0.6160 +8737 57162 0.9760 +8737 57506 0.9730 +8737 58484 0.4230 +8737 64127 0.6280 +8737 64135 0.7400 +8737 64170 0.6010 +8737 79132 0.4350 +8737 79155 0.5510 +8737 79576 0.6440 +8737 79680 0.4330 +8737 79792 0.6700 +8737 79875 0.5400 +8737 80013 0.5550 +8737 81030 0.9980 +8737 81858 0.9810 +8737 83737 0.6910 +8737 84282 0.5940 +8737 84674 0.7070 +8737 89122 0.5730 +8737 90268 0.6030 +8737 90550 0.4590 +8737 114548 0.8880 +8737 114609 0.5210 +8737 115004 0.4210 +8737 123803 0.5110 +8737 124056 0.4730 +8737 142678 0.9090 +8737 148022 0.9940 +8737 153090 0.7310 +8737 192111 0.9360 +8737 197259 0.9960 +8737 220213 0.7700 +8737 221302 0.6810 +8737 257397 0.9870 +8737 284110 0.4800 +8737 353376 0.9400 +8738 8767 0.6920 +8738 8772 0.9670 +8738 8835 0.5970 +8738 8837 0.6190 +8738 8915 0.4350 +8738 8996 0.4120 +8738 10392 0.6080 +8738 26999 0.9340 +8738 27242 0.5200 +8738 51283 0.4440 +8738 54205 0.4010 +8738 55198 0.4250 +8738 55367 0.9990 +8738 58484 0.4650 +8738 59082 0.4390 +8738 64127 0.4430 +8738 80013 0.7280 +8738 84270 0.4330 +8738 91689 0.5420 +8738 152185 0.4340 +8739 8797 0.4160 +8739 10017 0.7180 +8739 10018 0.8050 +8739 23705 0.4100 +8739 27113 0.6360 +8739 51270 0.9160 +8739 54205 0.6460 +8739 54878 0.7550 +8739 79370 0.4800 +8739 79680 0.6960 +8739 90427 0.8320 +8739 91039 0.6600 +8739 112399 0.4100 +8740 8741 0.5610 +8740 8742 0.7430 +8740 8744 0.7420 +8740 8764 0.9990 +8740 8771 0.9990 +8740 8784 0.4730 +8740 8792 0.5960 +8740 8995 0.4800 +8740 9020 0.5800 +8740 9235 0.4080 +8740 9861 0.4070 +8740 10673 0.7560 +8740 11126 0.9790 +8740 11148 0.5160 +8740 23308 0.4280 +8740 29116 0.4910 +8740 29126 0.4270 +8740 29851 0.4090 +8740 51330 0.6250 +8740 51744 0.4600 +8740 64115 0.4460 +8740 79679 0.6290 +8740 80380 0.4240 +8740 80381 0.4180 +8740 84868 0.4520 +8740 115650 0.6180 +8740 116844 0.4120 +8740 126259 0.5170 +8740 151888 0.8710 +8740 201633 0.4350 +8740 338339 0.4300 +8741 8742 0.9380 +8741 8764 0.5590 +8741 8772 0.4300 +8741 8792 0.4800 +8741 9308 0.6000 +8741 9332 0.4040 +8741 9982 0.4020 +8741 10673 0.8500 +8741 23495 0.9990 +8741 25911 0.5540 +8741 51284 0.4350 +8741 58191 0.4210 +8741 115650 0.9510 +8741 150280 0.4480 +8742 8743 0.7440 +8742 8744 0.5550 +8742 8772 0.4520 +8742 8792 0.5890 +8742 8795 0.8900 +8742 8797 0.8200 +8742 8817 0.7860 +8742 8822 0.7860 +8742 8823 0.7880 +8742 8995 0.4530 +8742 9020 0.6510 +8742 9332 0.7210 +8742 10190 0.6710 +8742 10197 0.4280 +8742 10673 0.9430 +8742 23495 0.6650 +8742 26281 0.7880 +8742 27006 0.7910 +8742 27242 0.5960 +8742 51171 0.4200 +8742 51330 0.9990 +8742 55109 0.7780 +8742 58191 0.4650 +8742 114907 0.4640 +8742 115650 0.8340 +8742 122706 0.4240 +8742 143471 0.4610 +8743 8771 0.5710 +8743 8772 0.9940 +8743 8793 0.9990 +8743 8794 0.9980 +8743 8795 0.9990 +8743 8797 0.9990 +8743 8837 0.9770 +8743 9021 0.4780 +8743 9436 0.4140 +8743 9437 0.4470 +8743 9636 0.4550 +8743 9759 0.4720 +8743 9966 0.5860 +8743 10014 0.4120 +8743 10018 0.5290 +8743 10344 0.4110 +8743 10346 0.4950 +8743 10561 0.5000 +8743 10578 0.5950 +8743 10666 0.4110 +8743 10673 0.6010 +8743 10964 0.4370 +8743 11010 0.4410 +8743 11035 0.7060 +8743 22914 0.5480 +8743 23586 0.6240 +8743 26150 0.4220 +8743 27242 0.7840 +8743 29126 0.5150 +8743 29933 0.4370 +8743 50848 0.4090 +8743 51284 0.4560 +8743 51330 0.5640 +8743 54106 0.6040 +8743 54205 0.7440 +8743 54739 0.5820 +8743 55504 0.5080 +8743 55515 0.4140 +8743 55601 0.4040 +8743 64108 0.5010 +8743 64135 0.5380 +8743 80781 0.4800 +8743 83666 0.4210 +8743 91543 0.5410 +8743 150962 0.6630 +8743 157310 0.4980 +8743 197259 0.4950 +8743 219285 0.4240 +8743 259197 0.4600 +8743 728378 0.4830 +8743 102723407 0.8110 +8744 8764 0.7400 +8744 8784 0.7560 +8744 8995 0.8500 +8744 9308 0.6120 +8744 9436 0.4460 +8744 9437 0.5170 +8744 9966 0.6810 +8744 10666 0.4820 +8744 10673 0.5870 +8744 11126 0.4710 +8744 11148 0.5580 +8744 22914 0.7260 +8744 23308 0.8710 +8744 29126 0.6300 +8744 29851 0.8930 +8744 50943 0.4460 +8744 51348 0.4710 +8744 51744 0.4350 +8744 58191 0.4380 +8744 64115 0.4490 +8744 79679 0.5310 +8744 80380 0.6310 +8744 80381 0.7960 +8744 84233 0.7280 +8744 84868 0.5770 +8744 126259 0.4850 +8744 131450 0.4340 +8744 135250 0.4090 +8744 151888 0.5070 +8744 169355 0.4230 +8744 201633 0.4810 +8744 259197 0.4810 +8744 284194 0.4290 +8744 654346 0.4260 +8745 9211 0.9970 +8745 10368 0.5200 +8745 10369 0.7240 +8745 11107 0.5140 +8745 26047 0.5270 +8745 27092 0.5470 +8745 30816 0.4220 +8745 53616 0.9440 +8745 55203 0.9180 +8745 56124 0.4240 +8745 57683 0.4710 +8745 59283 0.4990 +8745 64921 0.4540 +8745 112755 0.4580 +8745 151050 0.4110 +8745 163175 0.7950 +8745 203190 0.9260 +8745 378884 0.4040 +8745 390616 0.4030 +8745 391475 0.4100 +8745 405754 0.5170 +8747 8748 0.8160 +8747 11085 0.8270 +8747 22917 0.5130 +8747 57829 0.5420 +8747 152405 0.4430 +8747 100529257 0.4070 +8748 10343 0.4120 +8748 11085 0.8390 +8748 22917 0.5140 +8748 57829 0.5160 +8748 64395 0.4070 +8748 115749 0.4160 +8748 152065 0.4760 +8748 405754 0.4910 +8748 493901 0.4180 +8749 11085 0.4140 +8749 80757 0.4720 +8749 219293 0.4430 +8751 9644 0.9000 +8751 10096 0.4240 +8751 10097 0.4240 +8751 10459 0.8090 +8751 10863 0.4450 +8751 29763 0.6050 +8751 30011 0.4940 +8751 51429 0.9900 +8751 51455 0.5410 +8751 80332 0.4400 +8751 84692 0.4490 +8751 123096 0.4230 +8751 257364 0.6850 +8751 285590 0.8900 +8754 8842 0.4500 +8754 9094 0.5530 +8754 9365 0.4850 +8754 10459 0.9430 +8754 22999 0.5340 +8754 23385 0.5180 +8754 23621 0.5280 +8754 23746 0.5530 +8754 25825 0.4500 +8754 29763 0.7710 +8754 30011 0.4250 +8754 51107 0.4760 +8754 51206 0.6600 +8754 51266 0.6400 +8754 51429 0.9780 +8754 51455 0.4350 +8754 55272 0.4120 +8754 55851 0.5010 +8754 57096 0.6150 +8754 58191 0.5280 +8754 64218 0.5150 +8754 79258 0.4990 +8754 83394 0.6290 +8754 84839 0.6130 +8754 92211 0.6010 +8754 112574 0.5860 +8754 653361 0.5040 +8756 51181 0.4870 +8756 118472 0.4960 +8756 127670 0.4720 +8756 138307 0.4430 +8756 392399 0.5400 +8760 9162 0.7520 +8760 9468 0.4880 +8760 9489 0.9910 +8760 9663 0.9200 +8760 9926 0.4310 +8760 10390 0.4710 +8760 10400 0.4150 +8760 10423 0.9850 +8760 10535 0.6160 +8760 10554 0.9730 +8760 10555 0.9660 +8760 23175 0.9260 +8760 23646 0.9010 +8760 23761 0.5360 +8760 27235 0.8700 +8760 51477 0.4030 +8760 54675 0.9850 +8760 54947 0.4090 +8760 55326 0.9300 +8760 56894 0.9390 +8760 56895 0.9280 +8760 57152 0.4140 +8760 64900 0.9190 +8760 79888 0.4260 +8760 81490 0.4910 +8760 84513 0.9060 +8760 84803 0.4350 +8760 85465 0.5360 +8760 122618 0.9000 +8760 129642 0.9490 +8760 132001 0.9830 +8760 139189 0.6580 +8760 154141 0.9030 +8760 160851 0.7380 +8760 196051 0.9050 +8760 201164 0.4900 +8760 253558 0.9400 +8760 100129924 0.5070 +8761 8886 0.4100 +8761 9188 0.4900 +8761 9276 0.4650 +8761 9513 0.4820 +8761 9601 0.4770 +8761 9669 0.4110 +8761 9698 0.5700 +8761 9733 0.4250 +8761 9775 0.4980 +8761 9782 0.5610 +8761 9908 0.6430 +8761 9924 0.7960 +8761 9931 0.4510 +8761 9948 0.4940 +8761 10101 0.4280 +8761 10140 0.4920 +8761 10146 0.8700 +8761 10189 0.4210 +8761 10383 0.4390 +8761 10399 0.4950 +8761 10412 0.4540 +8761 10492 0.7580 +8761 10605 0.9910 +8761 10643 0.4830 +8761 10921 0.4370 +8761 10971 0.5450 +8761 11052 0.4340 +8761 11273 0.7410 +8761 22916 0.7620 +8761 23185 0.6280 +8761 23196 0.6500 +8761 23367 0.7520 +8761 23369 0.5580 +8761 23405 0.5790 +8761 23608 0.7000 +8761 23609 0.4990 +8761 23708 0.6590 +8761 26065 0.4950 +8761 26135 0.6560 +8761 26155 0.5190 +8761 26986 0.8700 +8761 27161 0.5940 +8761 27257 0.4790 +8761 27303 0.4060 +8761 27327 0.5970 +8761 30001 0.4940 +8761 51247 0.7210 +8761 51386 0.4660 +8761 51574 0.4020 +8761 51585 0.6160 +8761 54464 0.5450 +8761 54542 0.5210 +8761 54606 0.4410 +8761 54915 0.4160 +8761 55802 0.4360 +8761 57169 0.4310 +8761 57532 0.6510 +8761 57696 0.5730 +8761 64318 0.4640 +8761 79727 0.4690 +8761 79882 0.4710 +8761 80153 0.4960 +8761 81608 0.4030 +8761 85364 0.5240 +8761 113251 0.5160 +8761 124801 0.6970 +8761 149041 0.5540 +8761 149986 0.4260 +8761 167227 0.4460 +8761 192670 0.4170 +8761 196513 0.4220 +8761 219988 0.4040 +8761 253314 0.4320 +8761 255967 0.6700 +8761 284131 0.4060 +8761 317649 0.4040 +8761 400961 0.6130 +8761 728689 0.4760 +8763 8842 0.6680 +8763 9375 0.4180 +8763 10096 0.4800 +8763 10561 0.4420 +8763 10630 0.4490 +8763 23325 0.4340 +8764 8771 0.5140 +8764 8784 0.7640 +8764 8795 0.4520 +8764 8995 0.8200 +8764 9966 0.7580 +8764 10507 0.4040 +8764 10673 0.4290 +8764 11126 0.9980 +8764 11148 0.5070 +8764 23308 0.5710 +8764 23495 0.4390 +8764 23569 0.4600 +8764 26191 0.4800 +8764 27350 0.4580 +8764 29126 0.7610 +8764 29851 0.7440 +8764 29990 0.5210 +8764 29992 0.8260 +8764 30816 0.9650 +8764 50943 0.4490 +8764 51744 0.6340 +8764 58191 0.4960 +8764 64115 0.5500 +8764 79258 0.5160 +8764 79679 0.7470 +8764 79837 0.5740 +8764 80380 0.6630 +8764 80381 0.6060 +8764 84433 0.4720 +8764 84868 0.6150 +8764 115650 0.5390 +8764 126259 0.4800 +8764 131450 0.4030 +8764 145581 0.5130 +8764 151888 0.9990 +8764 167826 0.4920 +8764 201633 0.7450 +8764 284194 0.7120 +8764 654346 0.7150 +8764 100271849 0.4790 +8766 8773 0.6350 +8766 8775 0.4630 +8766 8826 0.5330 +8766 8850 0.4020 +8766 8881 0.4410 +8766 8934 0.4840 +8766 8976 0.4520 +8766 9094 0.5470 +8766 9135 0.6410 +8766 9146 0.6240 +8766 9182 0.7180 +8766 9230 0.9800 +8766 9253 0.4380 +8766 9267 0.5860 +8766 9321 0.4430 +8766 9341 0.8710 +8766 9342 0.4780 +8766 9368 0.4020 +8766 9392 0.4750 +8766 9414 0.4330 +8766 9467 0.9920 +8766 9474 0.4380 +8766 9482 0.6660 +8766 9525 0.4670 +8766 9554 0.5540 +8766 9559 0.6250 +8766 9595 0.5070 +8766 9648 0.4350 +8766 9657 0.5980 +8766 9662 0.5320 +8766 9685 0.4230 +8766 9702 0.5040 +8766 9712 0.6850 +8766 9727 0.9990 +8766 9744 0.4920 +8766 9779 0.5080 +8766 9784 0.4370 +8766 9793 0.5710 +8766 9814 0.4990 +8766 9882 0.7280 +8766 9905 0.6960 +8766 9950 0.4640 +8766 10015 0.4220 +8766 10053 0.4810 +8766 10094 0.4900 +8766 10112 0.5390 +8766 10121 0.5980 +8766 10133 0.9930 +8766 10134 0.4550 +8766 10142 0.6260 +8766 10211 0.5380 +8766 10228 0.7870 +8766 10266 0.4240 +8766 10267 0.4340 +8766 10382 0.5850 +8766 10383 0.5960 +8766 10399 0.4680 +8766 10490 0.5990 +8766 10540 0.6950 +8766 10618 0.6930 +8766 10640 0.8490 +8766 10652 0.5750 +8766 10733 0.5900 +8766 10806 0.5550 +8766 10890 0.6480 +8766 10938 0.7470 +8766 10949 0.4280 +8766 11064 0.6770 +8766 11116 0.5450 +8766 11190 0.5410 +8766 11216 0.7490 +8766 11252 0.4160 +8766 11258 0.5210 +8766 11311 0.4560 +8766 11336 0.9340 +8766 11337 0.4140 +8766 11345 0.4880 +8766 22832 0.5530 +8766 22841 0.9990 +8766 22878 0.6280 +8766 22897 0.7040 +8766 22919 0.6850 +8766 22924 0.4420 +8766 22981 0.5830 +8766 22994 0.6120 +8766 22995 0.5290 +8766 22999 0.5040 +8766 23061 0.6730 +8766 23080 0.4760 +8766 23163 0.4490 +8766 23233 0.4710 +8766 23258 0.9760 +8766 23265 0.9330 +8766 23301 0.4570 +8766 23322 0.6520 +8766 23332 0.5550 +8766 23339 0.8280 +8766 23354 0.5130 +8766 23413 0.4230 +8766 23637 0.5190 +8766 23673 0.7330 +8766 23710 0.4130 +8766 25978 0.4190 +8766 26005 0.5610 +8766 26056 0.9990 +8766 26060 0.4870 +8766 26100 0.5810 +8766 26123 0.5600 +8766 26258 0.4060 +8766 26276 0.9500 +8766 26985 0.5000 +8766 27077 0.5690 +8766 27095 0.7020 +8766 27183 0.4420 +8766 27243 0.5540 +8766 27352 0.7420 +8766 29796 0.5590 +8766 29911 0.5410 +8766 30011 0.4060 +8766 30816 0.4140 +8766 30818 0.4190 +8766 30844 0.4400 +8766 30845 0.5420 +8766 50618 0.6410 +8766 50807 0.9410 +8766 51134 0.7000 +8766 51143 0.5980 +8766 51259 0.5440 +8766 51361 0.7920 +8766 51399 0.7120 +8766 51429 0.4170 +8766 51479 0.4320 +8766 51510 0.4230 +8766 51534 0.4550 +8766 51622 0.4400 +8766 51652 0.4840 +8766 51655 0.4260 +8766 51693 0.5950 +8766 51699 0.6180 +8766 51806 0.4320 +8766 54521 0.7340 +8766 54536 0.9990 +8766 54567 0.4790 +8766 54801 0.5060 +8766 54806 0.6080 +8766 54820 0.5910 +8766 54832 0.4460 +8766 54903 0.5600 +8766 54930 0.5060 +8766 55014 0.4090 +8766 55054 0.6510 +8766 55125 0.5510 +8766 55142 0.5000 +8766 55255 0.4830 +8766 55296 0.4100 +8766 55559 0.4990 +8766 55614 0.4260 +8766 55667 0.4180 +8766 55722 0.5350 +8766 55737 0.8020 +8766 55755 0.5380 +8766 55763 0.8150 +8766 55770 0.9210 +8766 55773 0.5370 +8766 55814 0.4850 +8766 55823 0.5900 +8766 55835 0.5450 +8766 55860 0.5240 +8766 55930 0.7440 +8766 56288 0.4230 +8766 56776 0.5960 +8766 56850 0.6390 +8766 56907 0.5510 +8766 57403 0.4010 +8766 57533 0.9260 +8766 57545 0.6130 +8766 57614 0.6150 +8766 57787 0.5270 +8766 58485 0.7000 +8766 60412 0.9060 +8766 63894 0.8760 +8766 63971 0.7730 +8766 64083 0.6200 +8766 64145 0.5940 +8766 64601 0.4400 +8766 64786 0.7630 +8766 65082 0.6880 +8766 79083 0.4460 +8766 79090 0.5630 +8766 79441 0.5010 +8766 79600 0.5720 +8766 79628 0.7110 +8766 79735 0.4930 +8766 79867 0.5750 +8766 79959 0.5230 +8766 80184 0.6760 +8766 80208 0.4840 +8766 80223 0.9990 +8766 80321 0.5030 +8766 80331 0.4110 +8766 80776 0.5600 +8766 80851 0.7270 +8766 81555 0.4090 +8766 81609 0.7020 +8766 81631 0.5690 +8766 81876 0.7000 +8766 83452 0.4810 +8766 83660 0.5570 +8766 83874 0.6290 +8766 84131 0.5040 +8766 84315 0.4390 +8766 84376 0.6360 +8766 84440 0.9900 +8766 84501 0.4380 +8766 84902 0.6470 +8766 85302 0.6350 +8766 85377 0.5140 +8766 90410 0.5250 +8766 91147 0.5980 +8766 92714 0.4090 +8766 93323 0.4990 +8766 94121 0.6200 +8766 94122 0.4440 +8766 95681 0.5240 +8766 112574 0.4880 +8766 114569 0.5750 +8766 115106 0.5040 +8766 115704 0.5180 +8766 117177 0.9990 +8766 118813 0.9940 +8766 120892 0.5460 +8766 121441 0.5080 +8766 122553 0.4840 +8766 126003 0.6910 +8766 129049 0.6970 +8766 132320 0.6510 +8766 137902 0.4020 +8766 140775 0.4200 +8766 143187 0.4330 +8766 146057 0.6030 +8766 149371 0.8780 +8766 163688 0.4010 +8766 200576 0.4670 +8766 200894 0.5480 +8766 201294 0.5450 +8766 203068 0.6150 +8766 203228 0.5910 +8766 221960 0.4360 +8766 253725 0.6060 +8766 261734 0.5790 +8766 347240 0.5930 +8766 387849 0.5810 +8766 388552 0.4280 +8766 401409 0.4940 +8766 100128327 0.5360 +8766 100287171 0.6180 +8766 100506658 0.5680 +8767 8772 0.5330 +8767 8837 0.7990 +8767 8878 0.5160 +8767 8915 0.6930 +8767 9140 0.4500 +8767 9181 0.9480 +8767 9447 0.5800 +8767 9451 0.4130 +8767 9474 0.5990 +8767 9618 0.7330 +8767 9641 0.4120 +8767 9966 0.5720 +8767 10392 0.9990 +8767 10454 0.9590 +8767 10533 0.5960 +8767 10616 0.9340 +8767 11035 0.4470 +8767 22861 0.7420 +8767 22900 0.6670 +8767 23118 0.9820 +8767 23586 0.5480 +8767 29108 0.6850 +8767 29110 0.5240 +8767 51135 0.6230 +8767 51185 0.4190 +8767 51284 0.4690 +8767 54106 0.6560 +8767 54472 0.5290 +8767 55054 0.8000 +8767 55072 0.9560 +8767 55655 0.5600 +8767 57213 0.4340 +8767 57506 0.7260 +8767 58484 0.7520 +8767 64089 0.4190 +8767 64127 0.9990 +8767 64135 0.5050 +8767 64170 0.9710 +8767 64581 0.5300 +8767 79132 0.4320 +8767 80013 0.5920 +8767 81858 0.9350 +8767 83737 0.6530 +8767 84166 0.4450 +8767 84433 0.6010 +8767 84674 0.9970 +8767 90268 0.4210 +8767 91662 0.4800 +8767 114548 0.8610 +8767 114609 0.4180 +8767 144811 0.7210 +8767 148022 0.4010 +8767 148066 0.4750 +8767 160857 0.7490 +8767 197358 0.4110 +8767 246330 0.7180 +8767 257397 0.9740 +8767 338322 0.4260 +8771 8793 0.4790 +8771 8794 0.5070 +8771 8795 0.4760 +8771 8797 0.4390 +8771 8995 0.4840 +8771 9966 0.9990 +8771 51181 0.4460 +8771 51750 0.5610 +8771 60401 0.4180 +8771 84619 0.4670 +8771 345611 0.4300 +8771 102723407 0.4330 +8772 8793 0.5810 +8772 8794 0.5890 +8772 8795 0.9990 +8772 8797 0.9990 +8772 8837 0.9990 +8772 8878 0.7460 +8772 8915 0.6230 +8772 8930 0.6010 +8772 8996 0.4580 +8772 9099 0.4840 +8772 9140 0.9820 +8772 9191 0.7760 +8772 9214 0.4520 +8772 9474 0.9940 +8772 9641 0.5330 +8772 9755 0.4760 +8772 9966 0.5300 +8772 9994 0.6210 +8772 10010 0.9010 +8772 10018 0.5810 +8772 10114 0.7780 +8772 10273 0.4310 +8772 10293 0.4370 +8772 10318 0.4240 +8772 10454 0.7650 +8772 10533 0.5460 +8772 10572 0.4510 +8772 10616 0.6140 +8772 10913 0.4730 +8772 10938 0.5190 +8772 11035 0.9990 +8772 11124 0.9880 +8772 11332 0.4220 +8772 11337 0.5270 +8772 23017 0.5860 +8772 23118 0.5170 +8772 23586 0.8340 +8772 23608 0.4200 +8772 23643 0.6210 +8772 27005 0.4490 +8772 27035 0.4430 +8772 27178 0.4880 +8772 27242 0.6690 +8772 27429 0.4830 +8772 29108 0.4420 +8772 29110 0.6640 +8772 51135 0.4140 +8772 51284 0.4060 +8772 54205 0.7830 +8772 54822 0.4910 +8772 55054 0.5870 +8772 55072 0.6690 +8772 55107 0.6030 +8772 55367 0.9060 +8772 55749 0.4900 +8772 56957 0.4860 +8772 57062 0.4980 +8772 57448 0.4010 +8772 57506 0.9780 +8772 57534 0.4280 +8772 58484 0.5510 +8772 59082 0.5140 +8772 64135 0.7070 +8772 64422 0.7270 +8772 79155 0.5910 +8772 79444 0.4260 +8772 79680 0.4980 +8772 79792 0.6920 +8772 81030 0.6990 +8772 81631 0.6250 +8772 81858 0.6660 +8772 83737 0.5220 +8772 84282 0.5660 +8772 89122 0.5310 +8772 91689 0.5890 +8772 114548 0.8120 +8772 114609 0.9350 +8772 120892 0.6030 +8772 128240 0.6070 +8772 137902 0.4590 +8772 148022 0.9610 +8772 162989 0.5920 +8772 192111 0.4100 +8772 197259 0.9680 +8772 220064 0.5220 +8772 220213 0.4110 +8772 353376 0.6450 +8773 8774 0.6660 +8773 8775 0.9900 +8773 8776 0.4430 +8773 8826 0.4690 +8773 8874 0.4050 +8773 8976 0.4830 +8773 8987 0.4030 +8773 9066 0.8870 +8773 9166 0.4180 +8773 9217 0.6090 +8773 9218 0.6440 +8773 9322 0.5300 +8773 9341 0.9990 +8773 9342 0.9930 +8773 9367 0.4260 +8773 9414 0.4350 +8773 9475 0.4900 +8773 9482 0.8400 +8773 9493 0.5580 +8773 9497 0.4090 +8773 9515 0.9040 +8773 9522 0.5190 +8773 9527 0.7340 +8773 9545 0.5210 +8773 9554 0.9790 +8773 9570 0.8410 +8773 9578 0.4640 +8773 9590 0.4460 +8773 9666 0.4130 +8773 9748 0.4280 +8773 9815 0.4380 +8773 9847 0.5840 +8773 10066 0.5010 +8773 10160 0.4180 +8773 10211 0.5760 +8773 10228 0.9980 +8773 10282 0.8770 +8773 10298 0.4120 +8773 10409 0.4350 +8773 10490 0.8780 +8773 10497 0.5270 +8773 10590 0.8720 +8773 10626 0.5820 +8773 10640 0.7610 +8773 10652 0.8590 +8773 10791 0.8710 +8773 10814 0.8190 +8773 10815 0.8020 +8773 10890 0.7230 +8773 10938 0.5890 +8773 11021 0.5050 +8773 11034 0.4040 +8773 11060 0.4090 +8773 11336 0.7170 +8773 22987 0.4630 +8773 23002 0.4230 +8773 23048 0.4470 +8773 23075 0.4250 +8773 23256 0.5130 +8773 23265 0.7830 +8773 23344 0.4190 +8773 23354 0.4320 +8773 23390 0.7130 +8773 23433 0.6710 +8773 23513 0.4530 +8773 23557 0.9400 +8773 23564 0.4270 +8773 23673 0.9960 +8773 25921 0.4440 +8773 26049 0.4280 +8773 26092 0.4650 +8773 26258 0.4490 +8773 26984 0.4080 +8773 28964 0.4090 +8773 29091 0.8230 +8773 29843 0.4320 +8773 29941 0.4020 +8773 30820 0.4150 +8773 51272 0.6200 +8773 51552 0.6540 +8773 51762 0.4360 +8773 53407 0.8260 +8773 54212 0.7900 +8773 54443 0.4130 +8773 54503 0.5850 +8773 54509 0.6060 +8773 54536 0.7650 +8773 54874 0.4370 +8773 55004 0.4710 +8773 55014 0.9660 +8773 55240 0.4320 +8773 55763 0.7540 +8773 55770 0.7150 +8773 55789 0.4380 +8773 55850 0.7340 +8773 55914 0.4280 +8773 57381 0.6020 +8773 60412 0.7910 +8773 63908 0.9420 +8773 65124 0.4180 +8773 79058 0.4120 +8773 79171 0.4320 +8773 80331 0.6600 +8773 80728 0.4330 +8773 81839 0.4080 +8773 92421 0.4370 +8773 93323 0.5130 +8773 112755 0.9910 +8773 116841 0.8640 +8773 127833 0.5220 +8773 133482 0.5220 +8773 134957 0.9490 +8773 143098 0.4280 +8773 143187 0.8020 +8773 144402 0.4050 +8773 149371 0.7380 +8773 192683 0.4220 +8773 201294 0.5690 +8773 203062 0.7080 +8773 252983 0.7880 +8773 284119 0.5710 +8773 339302 0.5650 +8773 388552 0.4380 +8773 415117 0.9870 +8773 445582 0.4340 +8773 594855 0.5760 +8774 8775 0.9980 +8774 9117 0.5410 +8774 9183 0.5060 +8774 9276 0.5440 +8774 9341 0.7860 +8774 9342 0.8200 +8774 9367 0.5010 +8774 9382 0.5990 +8774 9482 0.9220 +8774 9515 0.5700 +8774 9527 0.8460 +8774 9554 0.8510 +8774 9570 0.6560 +8774 9632 0.5040 +8774 9648 0.5090 +8774 9741 0.4040 +8774 9827 0.5040 +8774 9871 0.5030 +8774 9950 0.5660 +8774 10139 0.5040 +8774 10175 0.5070 +8774 10228 0.9320 +8774 10244 0.5090 +8774 10282 0.8500 +8774 10466 0.5040 +8774 10484 0.5870 +8774 10490 0.9100 +8774 10618 0.5060 +8774 10652 0.7930 +8774 10791 0.4790 +8774 10814 0.5400 +8774 10815 0.5500 +8774 10905 0.5370 +8774 10945 0.5990 +8774 10959 0.5530 +8774 10960 0.5040 +8774 10972 0.5130 +8774 11014 0.6190 +8774 11015 0.5650 +8774 11070 0.4990 +8774 11311 0.4350 +8774 11316 0.5040 +8774 22796 0.5090 +8774 22818 0.5040 +8774 22820 0.5040 +8774 23256 0.7980 +8774 23423 0.5040 +8774 23673 0.9510 +8774 25839 0.5040 +8774 26056 0.6030 +8774 26958 0.5130 +8774 26984 0.5700 +8774 27333 0.5380 +8774 29085 0.4070 +8774 29091 0.7170 +8774 51014 0.5070 +8774 51128 0.4320 +8774 51209 0.5560 +8774 51226 0.4990 +8774 51268 0.4200 +8774 51272 0.6170 +8774 51332 0.4990 +8774 51542 0.5170 +8774 51560 0.5400 +8774 51594 0.9210 +8774 53407 0.7640 +8774 54732 0.5700 +8774 55014 0.6300 +8774 55275 0.5490 +8774 55850 0.7440 +8774 57134 0.5260 +8774 57511 0.5530 +8774 57589 0.5030 +8774 57731 0.4990 +8774 58513 0.4130 +8774 60561 0.5130 +8774 63893 0.4020 +8774 63908 0.9130 +8774 64689 0.6230 +8774 79571 0.5050 +8774 79748 0.5130 +8774 81562 0.5060 +8774 81876 0.5590 +8774 83448 0.4360 +8774 83548 0.5460 +8774 84328 0.4820 +8774 90196 0.5150 +8774 90411 0.5560 +8774 91949 0.6170 +8774 112755 0.5790 +8774 116841 0.7580 +8774 134957 0.8030 +8774 143187 0.8990 +8774 149111 0.5650 +8774 152579 0.7820 +8774 203062 0.6270 +8774 253012 0.4500 +8774 254263 0.4990 +8774 339302 0.5400 +8774 415117 0.6160 +8774 594855 0.5400 +8775 8905 0.5030 +8775 8907 0.5120 +8775 9026 0.5040 +8775 9117 0.7240 +8775 9183 0.7510 +8775 9276 0.5620 +8775 9341 0.9740 +8775 9342 0.9830 +8775 9367 0.7100 +8775 9382 0.5760 +8775 9482 0.9840 +8775 9515 0.6150 +8775 9527 0.9370 +8775 9554 0.9850 +8775 9570 0.9200 +8775 9632 0.5730 +8775 9648 0.5070 +8775 9827 0.5160 +8775 9829 0.5430 +8775 9871 0.5460 +8775 9950 0.5970 +8775 10053 0.5080 +8775 10139 0.5410 +8775 10175 0.5340 +8775 10228 0.9910 +8775 10244 0.5000 +8775 10282 0.9620 +8775 10466 0.5260 +8775 10484 0.5740 +8775 10490 0.9930 +8775 10497 0.6400 +8775 10618 0.6290 +8775 10652 0.9720 +8775 10672 0.5310 +8775 10717 0.5720 +8775 10791 0.7720 +8775 10814 0.7080 +8775 10815 0.7710 +8775 10905 0.5000 +8775 10945 0.5980 +8775 10959 0.5520 +8775 10960 0.5210 +8775 10972 0.5650 +8775 11014 0.5000 +8775 11015 0.4990 +8775 11070 0.5130 +8775 11311 0.8780 +8775 11316 0.6930 +8775 22796 0.5400 +8775 22818 0.5640 +8775 22820 0.5660 +8775 22895 0.4270 +8775 23025 0.6240 +8775 23256 0.9840 +8775 23339 0.5170 +8775 23365 0.4860 +8775 23423 0.5310 +8775 23431 0.4990 +8775 23557 0.6750 +8775 23558 0.6450 +8775 23673 0.9850 +8775 25839 0.5650 +8775 25977 0.5040 +8775 26258 0.8180 +8775 26958 0.5470 +8775 26984 0.7250 +8775 27095 0.7510 +8775 27131 0.5100 +8775 27333 0.5620 +8775 29091 0.7760 +8775 51014 0.5480 +8775 51209 0.6420 +8775 51226 0.4990 +8775 51272 0.7100 +8775 51332 0.5250 +8775 51429 0.5000 +8775 51542 0.5510 +8775 51560 0.5160 +8775 51594 0.8220 +8775 51669 0.4060 +8775 53407 0.9810 +8775 54732 0.5240 +8775 54885 0.5020 +8775 55014 0.9280 +8775 55275 0.5620 +8775 55330 0.8000 +8775 55638 0.6900 +8775 55850 0.9680 +8775 57134 0.5030 +8775 57511 0.6140 +8775 57589 0.5360 +8775 57731 0.5320 +8775 60561 0.8290 +8775 63908 0.8110 +8775 64083 0.5410 +8775 64601 0.4970 +8775 64689 0.6550 +8775 65082 0.4280 +8775 79571 0.5400 +8775 79748 0.5070 +8775 81562 0.5000 +8775 81567 0.8180 +8775 81876 0.6990 +8775 83473 0.4040 +8775 83548 0.6260 +8775 84062 0.8090 +8775 84766 0.4270 +8775 84876 0.5110 +8775 84896 0.4200 +8775 90196 0.5040 +8775 90411 0.5000 +8775 91949 0.5370 +8775 112755 0.9540 +8775 116841 0.8360 +8775 127833 0.4020 +8775 130340 0.4990 +8775 134957 0.9410 +8775 143187 0.9900 +8775 149111 0.5080 +8775 152579 0.5820 +8775 166378 0.4360 +8775 203062 0.7800 +8775 203245 0.5410 +8775 254263 0.5080 +8775 286451 0.5190 +8775 339302 0.5710 +8775 375346 0.4730 +8775 388552 0.8100 +8775 415117 0.8400 +8775 594855 0.5400 +8776 8821 0.9190 +8776 8898 0.7660 +8776 9341 0.4010 +8776 9486 0.4370 +8776 9497 0.4050 +8776 9590 0.4010 +8776 9730 0.4350 +8776 9827 0.6310 +8776 9896 0.9430 +8776 10046 0.8820 +8776 10107 0.4120 +8776 10160 0.4020 +8776 10423 0.9170 +8776 10658 0.6180 +8776 22876 0.9040 +8776 23236 0.6590 +8776 23344 0.4260 +8776 26056 0.4130 +8776 26092 0.4170 +8776 29843 0.4350 +8776 51053 0.4180 +8776 51196 0.6580 +8776 54509 0.5550 +8776 54545 0.4800 +8776 55240 0.4030 +8776 55300 0.6980 +8776 55361 0.6790 +8776 55529 0.9070 +8776 55559 0.5140 +8776 57148 0.4390 +8776 57541 0.4350 +8776 59336 0.4180 +8776 64419 0.6160 +8776 79837 0.7350 +8776 80728 0.4030 +8776 81624 0.4080 +8776 81839 0.4050 +8776 81846 0.7650 +8776 84524 0.4350 +8776 84812 0.6610 +8776 89869 0.6580 +8776 90809 0.9040 +8776 113026 0.6610 +8776 126204 0.4420 +8776 146223 0.4140 +8776 147912 0.4420 +8776 147991 0.4890 +8776 159013 0.4440 +8776 200576 0.9390 +8776 283337 0.4390 +8776 448831 0.7610 +8776 648791 0.4520 +8777 8825 0.6480 +8777 8831 0.6020 +8777 9069 0.6120 +8777 9075 0.5910 +8777 9076 0.6650 +8777 9223 0.5830 +8777 9350 0.4390 +8777 9414 0.8170 +8777 9463 0.6220 +8777 9568 0.4740 +8777 9863 0.5570 +8777 9928 0.4450 +8777 10158 0.5850 +8777 10207 0.8550 +8777 10413 0.7160 +8777 10723 0.4610 +8777 10755 0.4750 +8777 11168 0.4910 +8777 23286 0.5170 +8777 23513 0.5030 +8777 26960 0.5880 +8777 27111 0.4790 +8777 27134 0.8540 +8777 30813 0.4520 +8777 50848 0.7990 +8777 50855 0.4360 +8777 51278 0.7650 +8777 51421 0.9530 +8777 54971 0.4470 +8777 55327 0.6200 +8777 55591 0.5130 +8777 56288 0.6480 +8777 57369 0.7200 +8777 57449 0.4200 +8777 57530 0.8590 +8777 57554 0.4490 +8777 59338 0.5930 +8777 59339 0.6220 +8777 64398 0.9990 +8777 64759 0.4550 +8777 64778 0.5550 +8777 83700 0.4170 +8777 84627 0.5950 +8777 84708 0.4490 +8777 84952 0.4420 +8777 92359 0.4460 +8777 117583 0.5050 +8777 124925 0.4230 +8777 144125 0.6450 +8777 150084 0.4750 +8777 153562 0.7540 +8777 154796 0.9950 +8777 154810 0.9770 +8777 169522 0.7840 +8777 169693 0.4040 +8777 260425 0.5580 +8777 286204 0.4580 +8777 286256 0.4310 +8777 340481 0.5990 +8777 440193 0.6680 +8777 100506658 0.8920 +8780 9086 0.7030 +8780 9790 0.4370 +8780 10199 0.4130 +8780 10399 0.6300 +8780 10419 0.4240 +8780 10528 0.4330 +8780 10556 0.4360 +8780 10557 0.4160 +8780 10799 0.4050 +8780 11103 0.5600 +8780 23054 0.4190 +8780 23076 0.5120 +8780 23223 0.4070 +8780 23560 0.4170 +8780 26156 0.4310 +8780 26994 0.4790 +8780 27340 0.8260 +8780 28987 0.8890 +8780 29110 0.4870 +8780 51065 0.4310 +8780 51068 0.4250 +8780 51274 0.4810 +8780 54913 0.4280 +8780 55131 0.6140 +8780 55432 0.5000 +8780 55720 0.8480 +8780 55781 0.9820 +8780 56902 0.7670 +8780 57050 0.4610 +8780 57509 0.4080 +8780 64135 0.5000 +8780 64374 0.4130 +8780 64393 0.6120 +8780 79050 0.6360 +8780 79084 0.4460 +8780 79571 0.4140 +8780 79897 0.4220 +8780 80232 0.4260 +8780 83732 0.9250 +8780 84946 0.8640 +8780 85461 0.4260 +8780 117246 0.5220 +8780 140032 0.4280 +8780 161424 0.6380 +8780 221830 0.4430 +8780 388228 0.4620 +8780 401190 0.4060 +8780 102157402 0.4050 +8784 8829 0.5070 +8784 8995 0.9990 +8784 9034 0.5020 +8784 9966 0.4790 +8784 10219 0.5450 +8784 10538 0.4960 +8784 10572 0.7300 +8784 10666 0.4220 +8784 11126 0.4740 +8784 11148 0.5070 +8784 22807 0.5570 +8784 22914 0.5340 +8784 23308 0.7110 +8784 23532 0.4400 +8784 29126 0.8020 +8784 29851 0.8160 +8784 30009 0.6070 +8784 50615 0.4110 +8784 50943 0.9570 +8784 51744 0.4080 +8784 54760 0.5270 +8784 55144 0.4680 +8784 57509 0.4100 +8784 64115 0.5410 +8784 64375 0.5610 +8784 79679 0.5120 +8784 80380 0.6210 +8784 80381 0.6550 +8784 84868 0.8240 +8784 93986 0.5210 +8784 115650 0.5620 +8784 126259 0.5030 +8784 151888 0.6300 +8784 152404 0.4330 +8784 169355 0.8040 +8784 201633 0.8760 +8784 284194 0.6410 +8784 390243 0.4060 +8784 654346 0.6410 +8785 11061 0.5160 +8785 11317 0.5030 +8785 25876 0.4190 +8785 128488 0.4830 +8786 8787 0.5130 +8786 8801 0.8990 +8786 8802 0.7170 +8786 9138 0.7930 +8786 9628 0.6440 +8786 9826 0.7780 +8786 10287 0.5990 +8786 10574 0.4990 +8786 10575 0.4990 +8786 10576 0.5070 +8786 10636 0.6340 +8786 10672 0.7990 +8786 10681 0.9990 +8786 10693 0.4990 +8786 10694 0.4990 +8786 11101 0.4540 +8786 11216 0.6680 +8786 22948 0.5120 +8786 23365 0.6040 +8786 23557 0.4600 +8786 26499 0.7120 +8786 26575 0.5760 +8786 51573 0.4540 +8786 51764 0.5800 +8786 54331 0.5390 +8786 55970 0.5670 +8786 57231 0.4690 +8786 57512 0.5670 +8786 59345 0.6910 +8786 60506 0.4870 +8786 60626 0.5520 +8786 64407 0.5510 +8786 83986 0.4110 +8786 85397 0.5790 +8786 94235 0.5250 +8786 115557 0.6710 +8786 116443 0.4080 +8786 131890 0.4460 +8786 345193 0.6160 +8786 346562 0.7690 +8786 353299 0.7560 +8786 388531 0.9340 +8786 401190 0.9690 +8786 431704 0.5360 +8786 440435 0.6680 +8787 9628 0.5950 +8787 10287 0.5820 +8787 10574 0.4990 +8787 10575 0.4990 +8787 10576 0.5070 +8787 10636 0.5860 +8787 10681 0.9990 +8787 10693 0.4990 +8787 10694 0.4990 +8787 22948 0.5120 +8787 25766 0.8280 +8787 26499 0.4530 +8787 26575 0.5570 +8787 58517 0.7720 +8787 64407 0.5360 +8787 84253 0.4210 +8787 85397 0.5360 +8787 92292 0.6850 +8787 131890 0.4650 +8787 346562 0.7580 +8787 388531 0.9950 +8787 401190 0.7990 +8787 431704 0.5350 +8787 100132916 0.5060 +8788 8835 0.4320 +8788 8842 0.4150 +8788 8910 0.5650 +8788 9158 0.6890 +8788 9314 0.4170 +8788 9370 0.4620 +8788 10381 0.4110 +8788 10664 0.6750 +8788 10675 0.4230 +8788 23089 0.6790 +8788 23090 0.4730 +8788 23462 0.4340 +8788 23619 0.4170 +8788 26958 0.6320 +8788 51085 0.4810 +8788 51141 0.5400 +8788 51162 0.4160 +8788 51200 0.4460 +8788 54551 0.5440 +8788 55089 0.4530 +8788 56926 0.4350 +8788 57130 0.4420 +8788 57683 0.5420 +8788 57713 0.5760 +8788 64324 0.4150 +8788 64925 0.4900 +8788 79446 0.4390 +8788 79923 0.4870 +8788 81928 0.6420 +8788 89910 0.4220 +8788 91768 0.5270 +8788 91833 0.5380 +8788 118429 0.4960 +8788 266812 0.4970 +8788 346171 0.4970 +8788 347731 0.4660 +8788 353274 0.4140 +8788 388015 0.9200 +8788 653604 0.5050 +8789 9278 0.9520 +8789 9380 0.4180 +8789 9563 0.6100 +8789 10048 0.5280 +8789 10514 0.4540 +8789 10873 0.5050 +8789 10965 0.9010 +8789 22934 0.5730 +8789 25852 0.5260 +8789 26330 0.4780 +8789 27072 0.4370 +8789 51074 0.5210 +8789 51179 0.4100 +8789 53347 0.4650 +8789 54994 0.5810 +8789 55276 0.5990 +8789 55902 0.4060 +8789 57103 0.9590 +8789 57469 0.4410 +8789 57610 0.5280 +8789 57818 0.6010 +8789 79018 0.6090 +8789 80201 0.9310 +8789 84076 0.9760 +8789 84959 0.4650 +8789 92483 0.5100 +8789 92579 0.5950 +8789 122970 0.9010 +8789 130752 0.5400 +8789 137362 0.4810 +8789 160287 0.5130 +8789 283209 0.5730 +8789 387712 0.5230 +8789 641371 0.9110 +8789 729020 0.6450 +8790 9453 0.5510 +8790 23275 0.4060 +8790 51006 0.6200 +8790 51086 0.8040 +8790 55343 0.5490 +8790 127255 0.7360 +8790 196951 0.5110 +8790 197258 0.9530 +8790 404734 0.4550 +8792 8878 0.7060 +8792 9020 0.6230 +8792 9050 0.7640 +8792 9491 0.4300 +8792 9842 0.7400 +8792 10133 0.5110 +8792 10312 0.7140 +8792 10673 0.6210 +8792 25915 0.8160 +8792 27238 0.4750 +8792 28962 0.7790 +8792 29760 0.5690 +8792 29887 0.5140 +8792 50964 0.5060 +8792 51330 0.6200 +8792 54361 0.4750 +8792 57592 0.4830 +8792 57614 0.6460 +8792 79092 0.4350 +8792 79890 0.4760 +8792 81501 0.5490 +8792 115650 0.5950 +8792 122706 0.5470 +8792 131450 0.6040 +8792 143471 0.4040 +8793 8794 0.9610 +8793 8795 0.9780 +8793 8797 0.9460 +8793 8837 0.7150 +8793 23351 0.4200 +8793 27242 0.4340 +8793 51181 0.5720 +8793 56829 0.4330 +8793 64718 0.4100 +8793 64781 0.4370 +8793 80005 0.7380 +8793 399671 0.4440 +8794 8795 0.9380 +8794 8797 0.8720 +8794 8837 0.7480 +8794 23293 0.4090 +8794 51181 0.5830 +8795 8797 0.9980 +8795 8837 0.9910 +8795 9341 0.5360 +8795 9451 0.4750 +8795 10018 0.6700 +8795 10099 0.4140 +8795 10419 0.4880 +8795 10630 0.7940 +8795 10913 0.4650 +8795 11035 0.6050 +8795 22914 0.4280 +8795 22926 0.5250 +8795 23221 0.5630 +8795 23645 0.4170 +8795 27113 0.5700 +8795 27242 0.8890 +8795 27348 0.4050 +8795 27429 0.4310 +8795 28982 0.5910 +8795 29126 0.4050 +8795 30001 0.4280 +8795 51181 0.5720 +8795 51330 0.6380 +8795 51806 0.4850 +8795 54205 0.7000 +8795 54487 0.4670 +8795 54900 0.4770 +8795 55248 0.4020 +8795 55353 0.6100 +8795 55367 0.8180 +8795 55717 0.4390 +8795 59272 0.4040 +8795 64065 0.5520 +8795 64393 0.4210 +8795 79156 0.4450 +8795 79444 0.6350 +8795 79583 0.6080 +8795 79680 0.5050 +8795 80762 0.6760 +8795 84034 0.6880 +8795 91860 0.4830 +8795 137902 0.4480 +8795 163688 0.4850 +8795 253012 0.5480 +8795 284996 0.6310 +8795 100423062 0.9010 +8795 100507436 0.6470 +8795 102723407 0.9110 +8796 11005 0.5190 +8796 11346 0.7200 +8796 23213 0.7520 +8796 25844 0.7110 +8796 26053 0.4010 +8796 49860 0.5390 +8796 54544 0.5230 +8796 56342 0.4620 +8796 56649 0.4390 +8796 56956 0.5040 +8796 79098 0.4560 +8796 79596 0.4830 +8796 79705 0.4220 +8796 79983 0.4520 +8796 84518 0.4060 +8796 84648 0.5630 +8796 84651 0.4300 +8796 84838 0.4380 +8796 132724 0.4480 +8796 144568 0.4200 +8796 146664 0.4340 +8796 196374 0.4290 +8796 353145 0.4520 +8796 374897 0.4890 +8796 388533 0.5080 +8796 647024 0.4750 +8796 692312 0.4090 +8797 8837 0.9900 +8797 8856 0.6130 +8797 9213 0.5760 +8797 10018 0.7270 +8797 10419 0.4980 +8797 10913 0.4390 +8797 11035 0.6230 +8797 11118 0.4010 +8797 11186 0.4870 +8797 23780 0.4630 +8797 26191 0.5850 +8797 27242 0.8520 +8797 27348 0.7290 +8797 27429 0.4300 +8797 51181 0.5700 +8797 54205 0.6670 +8797 55312 0.4020 +8797 55367 0.5530 +8797 55532 0.5790 +8797 55621 0.5880 +8797 55717 0.7680 +8797 79444 0.5970 +8797 79680 0.4510 +8797 80005 0.5850 +8797 84034 0.6530 +8797 84273 0.4590 +8797 137902 0.4200 +8797 169026 0.5710 +8797 170685 0.6260 +8797 197259 0.4500 +8797 220972 0.6490 +8797 723961 0.4060 +8798 10238 0.8560 +8798 83714 0.4350 +8798 284111 0.5860 +8799 8800 0.9130 +8799 9409 0.9490 +8799 9927 0.5540 +8799 9939 0.5380 +8799 10005 0.6100 +8799 10059 0.8700 +8799 10455 0.5060 +8799 10478 0.8020 +8799 11264 0.8150 +8799 23510 0.4180 +8799 26052 0.4510 +8799 51015 0.5070 +8799 51024 0.9540 +8799 51368 0.4290 +8799 51555 0.7430 +8799 54332 0.6750 +8799 55288 0.4320 +8799 55670 0.8520 +8799 56947 0.5550 +8799 79777 0.4410 +8799 84265 0.4310 +8799 84896 0.6710 +8799 85025 0.4060 +8799 91452 0.8020 +8799 92960 0.9970 +8799 128077 0.5160 +8799 222234 0.4570 +8799 389058 0.4980 +8799 494143 0.5110 +8800 9409 0.8510 +8800 9927 0.6000 +8800 10005 0.5080 +8800 10059 0.9280 +8800 10455 0.5800 +8800 10478 0.5800 +8800 10499 0.6690 +8800 11264 0.6590 +8800 26052 0.4760 +8800 26063 0.4050 +8800 51022 0.4050 +8800 51024 0.9720 +8800 51555 0.5820 +8800 54677 0.5100 +8800 55670 0.5750 +8800 55825 0.4140 +8800 56947 0.7100 +8800 56964 0.5580 +8800 79718 0.4030 +8800 80205 0.4440 +8800 85441 0.4060 +8800 91452 0.4850 +8800 92960 0.9970 +8800 122970 0.4860 +8800 222234 0.4630 +8800 283927 0.4030 +8800 376497 0.4840 +8801 8802 0.9990 +8801 8803 0.9280 +8801 9221 0.5910 +8801 9293 0.4770 +8801 9563 0.4410 +8801 9628 0.8910 +8801 9630 0.4140 +8801 10287 0.8410 +8801 10295 0.5980 +8801 10399 0.7990 +8801 10449 0.8800 +8801 10528 0.4690 +8801 10531 0.6280 +8801 10587 0.5480 +8801 10636 0.6760 +8801 10672 0.5070 +8801 10681 0.8510 +8801 10873 0.4490 +8801 11112 0.4540 +8801 23135 0.4070 +8801 23236 0.4790 +8801 23533 0.7620 +8801 23560 0.4010 +8801 23683 0.4540 +8801 25865 0.4270 +8801 25902 0.5080 +8801 26499 0.7010 +8801 26575 0.8530 +8801 29958 0.5430 +8801 51314 0.5060 +8801 51444 0.5660 +8801 51738 0.4120 +8801 54093 0.4370 +8801 54331 0.7980 +8801 54511 0.8530 +8801 54941 0.5620 +8801 54949 0.4350 +8801 55066 0.6490 +8801 55293 0.5590 +8801 55526 0.8210 +8801 55699 0.4120 +8801 55753 0.9320 +8801 55902 0.8340 +8801 56521 0.4570 +8801 57580 0.5890 +8801 59345 0.5590 +8801 60626 0.5310 +8801 63917 0.4640 +8801 63940 0.7180 +8801 64407 0.8470 +8801 64577 0.4310 +8801 79072 0.4710 +8801 79109 0.4480 +8801 79944 0.4150 +8801 83475 0.5320 +8801 84193 0.4640 +8801 84532 0.8440 +8801 84687 0.5790 +8801 84916 0.6660 +8801 85397 0.8530 +8801 92259 0.5550 +8801 92483 0.5530 +8801 114112 0.5450 +8801 115557 0.4450 +8801 130752 0.6500 +8801 134526 0.8240 +8801 146850 0.5580 +8801 150274 0.5580 +8801 152559 0.5300 +8801 160287 0.6380 +8801 170589 0.4420 +8801 253260 0.7090 +8801 388531 0.4140 +8801 399888 0.4280 +8801 401190 0.4800 +8801 431704 0.8610 +8802 8803 0.9990 +8802 8854 0.4900 +8802 9361 0.4310 +8802 9377 0.7240 +8802 9380 0.5120 +8802 9404 0.5100 +8802 9512 0.5580 +8802 9551 0.6010 +8802 9563 0.5050 +8802 9628 0.7110 +8802 9651 0.4260 +8802 9879 0.4270 +8802 10005 0.4070 +8802 10063 0.4410 +8802 10102 0.8180 +8802 10201 0.4090 +8802 10240 0.4170 +8802 10287 0.7100 +8802 10295 0.5670 +8802 10383 0.4350 +8802 10449 0.9120 +8802 10476 0.6060 +8802 10540 0.4230 +8802 10587 0.7140 +8802 10636 0.4770 +8802 10672 0.7180 +8802 10765 0.4770 +8802 10797 0.4090 +8802 10840 0.4920 +8802 10873 0.7300 +8802 10886 0.4240 +8802 10935 0.4430 +8802 10989 0.5930 +8802 10994 0.4010 +8802 11128 0.4220 +8802 11232 0.5830 +8802 11251 0.4260 +8802 22934 0.6370 +8802 22978 0.7030 +8802 23135 0.5630 +8802 23161 0.5860 +8802 23171 0.4240 +8802 23284 0.4670 +8802 23365 0.5490 +8802 23479 0.4310 +8802 23534 0.4310 +8802 25828 0.5190 +8802 25885 0.4150 +8802 26061 0.4180 +8802 26235 0.5680 +8802 26275 0.4270 +8802 26575 0.7030 +8802 27034 0.5700 +8802 27068 0.5540 +8802 27089 0.4290 +8802 27247 0.4070 +8802 27249 0.5050 +8802 27349 0.4920 +8802 28976 0.5310 +8802 29796 0.4840 +8802 29899 0.4290 +8802 29968 0.4030 +8802 50484 0.7760 +8802 51031 0.4010 +8802 51073 0.4930 +8802 51079 0.4110 +8802 51084 0.4330 +8802 51444 0.7100 +8802 51727 0.4500 +8802 51805 0.4980 +8802 54205 0.5260 +8802 54331 0.5640 +8802 54511 0.8600 +8802 54539 0.4230 +8802 54941 0.7100 +8802 54949 0.4080 +8802 55066 0.5540 +8802 55143 0.5470 +8802 55188 0.6790 +8802 55258 0.4150 +8802 55289 0.4320 +8802 55293 0.7150 +8802 55526 0.9500 +8802 55699 0.4120 +8802 55750 0.5120 +8802 55753 0.9860 +8802 55902 0.8590 +8802 55967 0.5430 +8802 56652 0.7360 +8802 56898 0.4900 +8802 56945 0.5820 +8802 56954 0.4530 +8802 57511 0.5160 +8802 60488 0.4790 +8802 60626 0.6010 +8802 64087 0.5660 +8802 64106 0.4910 +8802 64407 0.7600 +8802 64577 0.5220 +8802 64969 0.5610 +8802 79590 0.4030 +8802 79728 0.4530 +8802 79896 0.4200 +8802 79944 0.4810 +8802 79948 0.4220 +8802 80273 0.5410 +8802 83475 0.4280 +8802 83857 0.4840 +8802 84076 0.4310 +8802 84263 0.4710 +8802 84532 0.8550 +8802 84693 0.5610 +8802 84705 0.4050 +8802 85313 0.4020 +8802 85397 0.5060 +8802 85476 0.4530 +8802 92259 0.5500 +8802 92483 0.7430 +8802 92667 0.5290 +8802 114112 0.7120 +8802 114787 0.4260 +8802 126133 0.4910 +8802 130752 0.7920 +8802 134526 0.8190 +8802 135114 0.5320 +8802 140576 0.4150 +8802 160287 0.7400 +8802 160428 0.4900 +8802 221823 0.4330 +8802 222545 0.4380 +8802 284422 0.4320 +8802 284958 0.6030 +8802 326625 0.5250 +8802 374291 0.5140 +8802 387712 0.4720 +8802 431704 0.7280 +8802 441024 0.4010 +8802 441531 0.4340 +8802 729020 0.4890 +8802 122405565 0.4320 +8803 9054 0.5330 +8803 9380 0.5990 +8803 9412 0.4470 +8803 9512 0.4290 +8803 9563 0.4460 +8803 9722 0.5480 +8803 10102 0.4890 +8803 10213 0.4430 +8803 10295 0.6250 +8803 10449 0.8980 +8803 10476 0.5000 +8803 10587 0.5600 +8803 10632 0.4400 +8803 10873 0.5050 +8803 10935 0.4270 +8803 10989 0.4630 +8803 11112 0.5050 +8803 11232 0.6300 +8803 22934 0.4010 +8803 23085 0.4780 +8803 23171 0.4060 +8803 23204 0.6620 +8803 23590 0.4490 +8803 26235 0.5890 +8803 26275 0.4280 +8803 27034 0.4250 +8803 27247 0.4110 +8803 27249 0.5950 +8803 29958 0.5350 +8803 50484 0.9050 +8803 51021 0.4270 +8803 51444 0.5560 +8803 54511 0.8490 +8803 54941 0.5530 +8803 54968 0.5100 +8803 55066 0.6210 +8803 55143 0.4180 +8803 55293 0.5820 +8803 55526 0.8280 +8803 55699 0.4320 +8803 55750 0.5140 +8803 55753 0.9600 +8803 55902 0.8500 +8803 56652 0.8740 +8803 56922 0.5240 +8803 57017 0.4210 +8803 57038 0.4610 +8803 57159 0.4190 +8803 64577 0.4170 +8803 79072 0.4150 +8803 79944 0.5390 +8803 80347 0.8330 +8803 83475 0.5320 +8803 84532 0.8580 +8803 84693 0.5220 +8803 84947 0.4820 +8803 85476 0.4860 +8803 92259 0.6250 +8803 92483 0.5530 +8803 92667 0.5530 +8803 114112 0.5450 +8803 127281 0.5380 +8803 130752 0.7120 +8803 134526 0.8230 +8803 150274 0.4200 +8803 160287 0.5530 +8803 246243 0.4090 +8803 326625 0.5330 +8803 374291 0.4160 +8804 10437 0.4670 +8804 54749 0.4020 +8804 60412 0.4340 +8805 8844 0.5540 +8805 8968 0.9510 +8805 9061 0.5530 +8805 9208 0.4980 +8805 9444 0.5460 +8805 9555 0.4680 +8805 9612 0.5020 +8805 9715 0.5120 +8805 9817 0.4700 +8805 9869 0.5670 +8805 9950 0.5990 +8805 10018 0.5300 +8805 10142 0.7260 +8805 10155 0.9620 +8805 10206 0.4150 +8805 10465 0.4300 +8805 10499 0.4970 +8805 10533 0.5460 +8805 10626 0.4660 +8805 10664 0.5540 +8805 10827 0.5830 +8805 10951 0.4380 +8805 11044 0.5090 +8805 11052 0.4450 +8805 11064 0.5000 +8805 11116 0.7300 +8805 11160 0.4160 +8805 11198 0.6720 +8805 11201 0.6420 +8805 11335 0.6940 +8805 22894 0.4240 +8805 22906 0.6310 +8805 22938 0.4740 +8805 22954 0.4940 +8805 23164 0.6060 +8805 23468 0.5120 +8805 23515 0.7190 +8805 23650 0.5180 +8805 26127 0.7070 +8805 27044 0.5820 +8805 29028 0.4990 +8805 29117 0.6110 +8805 29950 0.4830 +8805 50852 0.7790 +8805 51111 0.4400 +8805 51127 0.8040 +8805 51154 0.4400 +8805 51592 0.9510 +8805 51773 0.4710 +8805 54454 0.4580 +8805 54845 0.5120 +8805 54876 0.4690 +8805 55109 0.5020 +8805 55223 0.4080 +8805 55506 0.4540 +8805 55680 0.4200 +8805 55750 0.6080 +8805 55904 0.4590 +8805 55905 0.4480 +8805 56658 0.4310 +8805 56829 0.5730 +8805 57085 0.4990 +8805 57670 0.6010 +8805 64135 0.5070 +8805 65980 0.4460 +8805 79923 0.4900 +8805 79977 0.4380 +8805 80853 0.5540 +8805 81559 0.4300 +8805 81603 0.5600 +8805 84062 0.4090 +8805 84106 0.5820 +8805 84787 0.4090 +8805 85461 0.4350 +8805 112398 0.4410 +8805 117854 0.4430 +8805 126961 0.9080 +8805 197259 0.4440 +8805 221823 0.4220 +8805 286827 0.4570 +8805 333932 0.9080 +8805 399687 0.7010 +8805 440093 0.8090 +8805 440686 0.9800 +8805 445372 0.4180 +8805 653604 0.9800 +8807 8808 0.5480 +8807 8809 0.9990 +8807 8875 0.5460 +8807 9235 0.8130 +8807 10019 0.4520 +8807 10068 0.8880 +8807 10578 0.4730 +8807 10666 0.4210 +8807 23413 0.4510 +8807 23643 0.6480 +8807 26191 0.4800 +8807 26525 0.5160 +8807 27178 0.9560 +8807 30009 0.5300 +8807 51311 0.4020 +8807 51348 0.5010 +8807 57823 0.4390 +8807 58484 0.4490 +8807 64127 0.4760 +8807 64170 0.4880 +8807 64753 0.4310 +8807 81793 0.4750 +8807 84519 0.4810 +8807 84639 0.6760 +8807 85480 0.4140 +8807 90865 0.4040 +8807 117289 0.6530 +8807 149233 0.4780 +8807 150962 0.5380 +8808 8809 0.6880 +8808 9173 0.5090 +8808 10068 0.4470 +8808 26280 0.4240 +8808 26525 0.9990 +8808 27177 0.9910 +8808 27178 0.6610 +8808 27179 0.9960 +8808 50616 0.5370 +8808 56300 0.9800 +8808 79092 0.6320 +8808 84639 0.9990 +8808 90865 0.7570 +8808 130340 0.5810 +8809 9034 0.7550 +8809 9173 0.4210 +8809 9235 0.5590 +8809 9437 0.4400 +8809 9586 0.4180 +8809 9966 0.5580 +8809 10019 0.5820 +8809 10068 0.9210 +8809 10219 0.4470 +8809 10663 0.5180 +8809 11141 0.4830 +8809 11213 0.4670 +8809 22914 0.4090 +8809 26191 0.4530 +8809 26280 0.5050 +8809 26291 0.4130 +8809 26525 0.6940 +8809 27177 0.5300 +8809 27178 0.9990 +8809 27179 0.5140 +8809 29108 0.4880 +8809 29110 0.5510 +8809 29851 0.7020 +8809 30009 0.6160 +8809 50615 0.4260 +8809 50616 0.4500 +8809 50943 0.4290 +8809 51348 0.4040 +8809 55054 0.4220 +8809 55876 0.5800 +8809 55911 0.4150 +8809 59307 0.9190 +8809 64127 0.6490 +8809 64170 0.4050 +8809 80146 0.4080 +8809 84162 0.5880 +8809 84639 0.7270 +8809 84804 0.5000 +8809 85480 0.4480 +8809 90865 0.8950 +8809 94103 0.6040 +8809 117289 0.6910 +8809 124626 0.4290 +8809 132014 0.5520 +8809 132612 0.5490 +8809 149233 0.5650 +8809 159296 0.4520 +8809 163486 0.4340 +8809 389015 0.5860 +8809 400935 0.4610 +8809 100289462 0.4180 +8811 8862 0.5790 +8811 9283 0.5130 +8811 10316 0.6920 +8811 10874 0.5370 +8811 23265 0.5450 +8811 29899 0.4110 +8811 51083 0.9990 +8811 54331 0.8160 +8811 56923 0.5140 +8811 63940 0.4030 +8811 80763 0.9920 +8811 84539 0.5250 +8811 85569 0.9700 +8811 129521 0.5570 +8811 256933 0.5520 +8811 283869 0.5300 +8811 353174 0.8230 +8812 8900 0.4890 +8812 9150 0.8680 +8812 9238 0.4730 +8812 9584 0.4840 +8812 9646 0.8170 +8812 9656 0.5220 +8812 9739 0.7070 +8812 9978 0.4280 +8812 10302 0.4990 +8812 10614 0.6980 +8812 11168 0.4130 +8812 11198 0.6500 +8812 22916 0.5520 +8812 22936 0.6720 +8812 23067 0.4390 +8812 23097 0.5620 +8812 23168 0.8320 +8812 23379 0.5440 +8812 23476 0.7200 +8812 23552 0.4550 +8812 25920 0.6070 +8812 26039 0.7060 +8812 26610 0.5780 +8812 26747 0.5450 +8812 27125 0.7090 +8812 27336 0.5480 +8812 29072 0.5150 +8812 29101 0.6390 +8812 50674 0.4950 +8812 51224 0.5820 +8812 51497 0.5500 +8812 51574 0.5480 +8812 51585 0.6970 +8812 51755 0.9990 +8812 54623 0.7290 +8812 55215 0.6820 +8812 55250 0.5450 +8812 55840 0.5540 +8812 56257 0.4110 +8812 56647 0.5840 +8812 64210 0.6630 +8812 64211 0.8400 +8812 65061 0.4060 +8812 79577 0.8330 +8812 79664 0.5590 +8812 80237 0.6220 +8812 80335 0.4580 +8812 80349 0.6020 +8812 81669 0.5230 +8812 84337 0.5670 +8812 84524 0.5400 +8812 84656 0.4520 +8812 84717 0.4400 +8812 85403 0.5830 +8812 90379 0.4360 +8812 92822 0.4350 +8812 113878 0.7200 +8812 114034 0.4590 +8812 123169 0.7660 +8812 124790 0.4760 +8812 129685 0.4990 +8812 219771 0.4720 +8812 222546 0.8300 +8812 404672 0.5680 +8812 728340 0.5720 +8813 8818 0.9990 +8813 9091 0.5390 +8813 9215 0.4860 +8813 9487 0.6740 +8813 9488 0.6320 +8813 9526 0.9670 +8813 9731 0.5880 +8813 10026 0.6340 +8813 10195 0.9290 +8813 10213 0.4930 +8813 10295 0.4100 +8813 10312 0.5490 +8813 10329 0.7450 +8813 10458 0.5310 +8813 10574 0.4140 +8813 10585 0.7520 +8813 10987 0.4630 +8813 11041 0.6230 +8813 11060 0.5130 +8813 11231 0.6320 +8813 22845 0.8170 +8813 23394 0.5650 +8813 23483 0.5110 +8813 23534 0.4420 +8813 23545 0.6020 +8813 27235 0.4720 +8813 27249 0.5220 +8813 27315 0.5840 +8813 27430 0.4710 +8813 29880 0.5860 +8813 29925 0.8080 +8813 29926 0.6050 +8813 29927 0.6020 +8813 29929 0.9420 +8813 29954 0.7600 +8813 50617 0.5860 +8813 50814 0.5120 +8813 51227 0.5650 +8813 51604 0.5090 +8813 51741 0.4460 +8813 53347 0.4150 +8813 54187 0.4180 +8813 54344 0.9990 +8813 54529 0.5960 +8813 54793 0.4060 +8813 54872 0.5570 +8813 54953 0.4330 +8813 55294 0.6260 +8813 55299 0.4350 +8813 55316 0.4600 +8813 55624 0.7160 +8813 55650 0.7970 +8813 55971 0.5300 +8813 56052 0.7920 +8813 57171 0.6550 +8813 79053 0.7290 +8813 79087 0.9390 +8813 79147 0.6890 +8813 79644 0.6570 +8813 79796 0.8130 +8813 79868 0.7190 +8813 79947 0.7020 +8813 80055 0.4330 +8813 80115 0.4930 +8813 80146 0.5730 +8813 80235 0.5740 +8813 80270 0.4530 +8813 84197 0.7360 +8813 84720 0.6310 +8813 84892 0.7640 +8813 84959 0.4150 +8813 84992 0.5000 +8813 85365 0.6890 +8813 93183 0.5830 +8813 93517 0.4530 +8813 116150 0.5600 +8813 123263 0.8830 +8813 125997 0.7690 +8813 128869 0.4860 +8813 144245 0.5300 +8813 148789 0.7420 +8813 199857 0.7030 +8813 201595 0.6070 +8813 246269 0.5450 +8813 255738 0.4130 +8813 284098 0.7380 +8813 440138 0.7670 +8813 644974 0.5060 +8814 23411 0.6320 +8814 29930 0.5500 +8814 92749 0.4300 +8814 115825 0.4400 +8814 123872 0.4720 +8814 219854 0.4520 +8814 344387 0.7910 +8814 404217 0.4610 +8815 8816 0.6390 +8815 8850 0.4150 +8815 8878 0.4880 +8815 9112 0.4880 +8815 9212 0.5160 +8815 9271 0.4750 +8815 9274 0.5430 +8815 9474 0.4230 +8815 9480 0.4240 +8815 9584 0.5030 +8815 9656 0.4380 +8815 9837 0.4080 +8815 9972 0.4020 +8815 10155 0.5070 +8815 10269 0.5120 +8815 10284 0.6050 +8815 10467 0.4800 +8815 10498 0.4220 +8815 10524 0.6260 +8815 10614 0.4230 +8815 10664 0.4560 +8815 10856 0.4730 +8815 10919 0.9290 +8815 10951 0.5620 +8815 11073 0.4540 +8815 11128 0.4060 +8815 11168 0.7680 +8815 11177 0.5330 +8815 11270 0.4350 +8815 11335 0.5880 +8815 23028 0.4240 +8815 23135 0.5470 +8815 23141 0.8360 +8815 23224 0.4230 +8815 23345 0.5450 +8815 23353 0.7280 +8815 23394 0.5270 +8815 23468 0.4690 +8815 23476 0.7220 +8815 23506 0.5190 +8815 23592 0.9980 +8815 25777 0.6890 +8815 25909 0.4980 +8815 25937 0.4590 +8815 25942 0.6030 +8815 29117 0.7740 +8815 29998 0.5800 +8815 51231 0.6460 +8815 51412 0.9390 +8815 53335 0.5270 +8815 55122 0.4300 +8815 55193 0.8010 +8815 55274 0.9090 +8815 57492 0.8170 +8815 57504 0.4490 +8815 57680 0.4290 +8815 58155 0.4680 +8815 64919 0.5300 +8815 65980 0.7760 +8815 79727 0.5170 +8815 79923 0.5530 +8815 81631 0.4910 +8815 83443 0.4660 +8815 83637 0.6340 +8815 83932 0.4400 +8815 84661 0.5390 +8815 84823 0.8500 +8815 90853 0.6270 +8815 91782 0.5450 +8815 93273 0.8010 +8815 94121 0.4360 +8815 94239 0.4030 +8815 126549 0.6870 +8815 140836 0.4880 +8815 196528 0.7490 +8815 199953 0.6420 +8815 221496 0.9010 +8815 359787 0.5140 +8815 389421 0.6060 +8815 440093 0.9550 +8815 440686 0.9550 +8815 653604 0.9550 +8815 100131211 0.4680 +8816 8883 0.4990 +8816 9039 0.5170 +8816 9040 0.4990 +8816 9318 0.4210 +8816 9730 0.9250 +8816 9978 0.9150 +8816 10238 0.9050 +8816 10471 0.6290 +8816 10980 0.4200 +8816 10987 0.5570 +8816 11091 0.5870 +8816 11146 0.7290 +8816 23038 0.6320 +8816 23142 0.5120 +8816 23412 0.5010 +8816 25853 0.9540 +8816 25879 0.9120 +8816 26094 0.9580 +8816 26133 0.9360 +8816 28952 0.5040 +8816 28991 0.5000 +8816 29099 0.5040 +8816 50717 0.9290 +8816 50813 0.7480 +8816 51122 0.5040 +8816 51138 0.4170 +8816 51185 0.9140 +8816 51397 0.4990 +8816 51514 0.9140 +8816 54165 0.5090 +8816 54461 0.9000 +8816 54876 0.9370 +8816 54939 0.4990 +8816 54951 0.4990 +8816 55070 0.9330 +8816 55208 0.5170 +8816 55626 0.9170 +8816 55827 0.9420 +8816 55832 0.5070 +8816 55884 0.4210 +8816 64326 0.9010 +8816 64708 0.5300 +8816 79016 0.9320 +8816 79269 0.9520 +8816 80067 0.9020 +8816 80344 0.9220 +8816 83743 0.5990 +8816 84259 0.5040 +8816 84456 0.7990 +8816 90379 0.9270 +8816 138009 0.6660 +8816 139170 0.6560 +8816 139425 0.6240 +8816 149951 0.5040 +8816 150684 0.5180 +8816 163050 0.4550 +8816 170622 0.4990 +8816 285429 0.6660 +8816 340578 0.6560 +8816 347442 0.6240 +8816 440804 0.5230 +8816 100529257 0.4310 +8817 8822 0.4530 +8817 8823 0.5460 +8817 8826 0.4220 +8817 8829 0.8210 +8817 8842 0.5070 +8817 9241 0.5810 +8817 9314 0.4590 +8817 9365 0.9920 +8817 9370 0.6000 +8817 9464 0.4070 +8817 9759 0.4460 +8817 9965 0.7480 +8817 9971 0.5270 +8817 9982 0.9460 +8817 10251 0.5350 +8817 10252 0.4260 +8817 10253 0.6090 +8817 10468 0.6420 +8817 10631 0.4190 +8817 10763 0.5930 +8817 10817 0.6050 +8817 10818 0.8570 +8817 22943 0.5080 +8817 26281 0.5510 +8817 26291 0.5930 +8817 27006 0.5620 +8817 27020 0.4060 +8817 29126 0.4060 +8817 30816 0.5150 +8817 30849 0.5090 +8817 51176 0.4310 +8817 51330 0.7160 +8817 51806 0.5940 +8817 53834 0.8450 +8817 54106 0.5730 +8817 54361 0.4160 +8817 64321 0.4610 +8817 79923 0.5390 +8817 80781 0.6880 +8817 81848 0.4120 +8817 85027 0.4280 +8817 85443 0.4120 +8817 89780 0.5480 +8817 91860 0.5940 +8817 121340 0.4230 +8817 137902 0.5290 +8817 152831 0.9090 +8817 161742 0.4070 +8817 163688 0.5940 +8817 284654 0.4050 +8817 285888 0.4500 +8817 405754 0.5070 +8818 9091 0.9990 +8818 9215 0.5190 +8818 9487 0.9740 +8818 9488 0.9220 +8818 9526 0.9310 +8818 9649 0.4740 +8818 10026 0.6180 +8818 10195 0.9680 +8818 10329 0.7620 +8818 10423 0.8350 +8818 10585 0.7770 +8818 10979 0.4720 +8818 11041 0.5680 +8818 22845 0.9820 +8818 22856 0.4020 +8818 23556 0.5020 +8818 27090 0.4440 +8818 27315 0.4590 +8818 29086 0.5270 +8818 29880 0.9540 +8818 29925 0.7680 +8818 29926 0.9010 +8818 29929 0.5680 +8818 29954 0.7780 +8818 51227 0.9990 +8818 51604 0.5470 +8818 51629 0.4180 +8818 54344 0.9990 +8818 54749 0.6030 +8818 54872 0.6270 +8818 55316 0.4720 +8818 55624 0.7200 +8818 55650 0.9400 +8818 56052 0.9450 +8818 57171 0.9420 +8818 79053 0.4790 +8818 79087 0.6930 +8818 79147 0.7030 +8818 79644 0.5160 +8818 79868 0.6420 +8818 79947 0.5030 +8818 79971 0.4500 +8818 80055 0.4080 +8818 80235 0.4680 +8818 81858 0.4160 +8818 84197 0.7410 +8818 84337 0.4450 +8818 84720 0.6650 +8818 84892 0.7920 +8818 84992 0.9980 +8818 93183 0.9250 +8818 115294 0.5730 +8818 116150 0.4220 +8818 120071 0.5260 +8818 138429 0.5570 +8818 144100 0.5430 +8818 148789 0.7560 +8818 167127 0.4310 +8818 169792 0.4470 +8818 199857 0.4160 +8818 282966 0.4680 +8818 284098 0.6460 +8818 399665 0.6740 +8818 440138 0.6330 +8818 729920 0.5830 +8818 100996939 0.8110 +8819 8820 0.5030 +8819 8841 0.8400 +8819 8932 0.6340 +8819 8970 0.5090 +8819 9112 0.7040 +8819 9203 0.4570 +8819 9219 0.7970 +8819 9541 0.9650 +8819 9611 0.9380 +8819 9612 0.9490 +8819 9637 0.4540 +8819 10009 0.5410 +8819 10284 0.9990 +8819 10362 0.5190 +8819 10664 0.4230 +8819 10765 0.5980 +8819 10865 0.5480 +8819 10933 0.8360 +8819 11176 0.5060 +8819 11317 0.9090 +8819 22882 0.6360 +8819 23028 0.7310 +8819 23186 0.8010 +8819 23309 0.9990 +8819 23512 0.5630 +8819 25855 0.9870 +8819 25942 0.9990 +8819 26009 0.4010 +8819 26253 0.4930 +8819 26273 0.5240 +8819 29115 0.9170 +8819 51317 0.5970 +8819 51742 0.9970 +8819 53615 0.6750 +8819 54145 0.4990 +8819 54556 0.8470 +8819 54815 0.6710 +8819 55766 0.4990 +8819 55869 0.7800 +8819 55893 0.5600 +8819 55929 0.4080 +8819 56848 0.4680 +8819 57459 0.6770 +8819 57504 0.6740 +8819 57597 0.7500 +8819 57649 0.8340 +8819 57798 0.4840 +8819 58516 0.9740 +8819 60436 0.5940 +8819 64092 0.4170 +8819 64426 0.9990 +8819 79142 0.6570 +8819 79595 0.9730 +8819 79685 0.9760 +8819 80312 0.6320 +8819 83463 0.6840 +8819 83860 0.4700 +8819 84312 0.9950 +8819 84629 0.6840 +8819 84733 0.4110 +8819 85236 0.5080 +8819 90316 0.5920 +8819 94239 0.5560 +8819 112950 0.4930 +8819 128312 0.5010 +8819 221937 0.7200 +8819 255626 0.4990 +8819 317772 0.4050 +8819 388284 0.4040 +8819 440689 0.4080 +8819 474382 0.4990 +8819 619279 0.7010 +8819 653604 0.6160 +8819 100316904 0.7720 +8819 100532731 0.4310 +8820 9095 0.6180 +8820 9394 0.4470 +8820 9611 0.7120 +8820 10284 0.4950 +8820 11055 0.4380 +8820 26012 0.4760 +8820 26060 0.4400 +8820 55636 0.5310 +8820 55643 0.5180 +8820 60675 0.4790 +8820 79923 0.5630 +8820 83550 0.4280 +8820 84634 0.4640 +8820 89884 0.4570 +8820 113746 0.4050 +8820 128674 0.7080 +8820 389549 0.4400 +8820 653509 0.4950 +8820 100033411 0.5530 +8821 8867 0.9300 +8821 8871 0.9340 +8821 8897 0.9140 +8821 8898 0.9260 +8821 9107 0.9310 +8821 9108 0.9120 +8821 9110 0.9070 +8821 9138 0.5920 +8821 9896 0.9210 +8821 10000 0.5070 +8821 10551 0.4440 +8821 23239 0.4780 +8821 23678 0.6050 +8821 26499 0.4990 +8821 27124 0.5830 +8821 51477 0.9020 +8821 51763 0.4350 +8821 54928 0.9120 +8821 55613 0.9030 +8821 56623 0.9370 +8821 57418 0.5380 +8821 57580 0.4220 +8821 64419 0.9050 +8821 80117 0.4420 +8821 83694 0.4130 +8821 84640 0.4880 +8821 114815 0.4040 +8821 166752 0.4730 +8821 200576 0.9250 +8821 221303 0.4040 +8821 440957 0.4440 +8822 8823 0.4690 +8822 8826 0.4200 +8822 8829 0.8230 +8822 8842 0.5070 +8822 9241 0.5330 +8822 9314 0.4530 +8822 9365 0.9910 +8822 9370 0.5980 +8822 9394 0.4590 +8822 9429 0.4850 +8822 9464 0.4230 +8822 9759 0.4230 +8822 9965 0.8730 +8822 9971 0.5290 +8822 9982 0.9420 +8822 10215 0.4340 +8822 10251 0.5000 +8822 10253 0.5900 +8822 10371 0.4200 +8822 10468 0.6290 +8822 10763 0.5930 +8822 10817 0.6060 +8822 10818 0.8570 +8822 11052 0.4010 +8822 11064 0.4350 +8822 11160 0.4030 +8822 22943 0.4530 +8822 23166 0.4520 +8822 23767 0.6940 +8822 23768 0.5520 +8822 23769 0.5640 +8822 26127 0.4160 +8822 26281 0.4750 +8822 26291 0.5980 +8822 26585 0.5940 +8822 27006 0.5180 +8822 27020 0.4220 +8822 29126 0.4070 +8822 30816 0.5170 +8822 30849 0.4990 +8822 50964 0.4170 +8822 51330 0.7140 +8822 51806 0.8370 +8822 53834 0.8220 +8822 54106 0.5750 +8822 54756 0.5210 +8822 60529 0.4660 +8822 64321 0.4140 +8822 79923 0.5460 +8822 80781 0.6840 +8822 81848 0.4930 +8822 85027 0.4240 +8822 89780 0.5280 +8822 91860 0.8370 +8822 137902 0.5290 +8822 152831 0.9030 +8822 163688 0.8400 +8822 221833 0.4920 +8822 284654 0.4010 +8822 285888 0.4550 +8822 399687 0.4110 +8822 405754 0.5150 +8823 8826 0.4190 +8823 8829 0.8230 +8823 8842 0.5070 +8823 9210 0.4140 +8823 9241 0.5280 +8823 9314 0.4420 +8823 9365 0.9910 +8823 9370 0.6020 +8823 9464 0.4050 +8823 9542 0.4270 +8823 9759 0.4480 +8823 9965 0.7440 +8823 9971 0.5350 +8823 9982 0.9440 +8823 10251 0.5340 +8823 10252 0.5440 +8823 10253 0.6000 +8823 10468 0.6430 +8823 10631 0.4050 +8823 10718 0.4180 +8823 10763 0.5790 +8823 10817 0.5970 +8823 10818 0.8580 +8823 22943 0.4760 +8823 26281 0.4160 +8823 27006 0.5030 +8823 27020 0.4170 +8823 27302 0.4070 +8823 29126 0.4080 +8823 30816 0.5180 +8823 30849 0.4990 +8823 51176 0.4250 +8823 51330 0.7160 +8823 51806 0.5970 +8823 53834 0.7660 +8823 54106 0.5740 +8823 54361 0.4080 +8823 79923 0.5250 +8823 80781 0.6870 +8823 85027 0.4300 +8823 85443 0.4230 +8823 89780 0.5270 +8823 91860 0.5930 +8823 121340 0.4140 +8823 137902 0.5100 +8823 152831 0.9050 +8823 163688 0.5930 +8823 284654 0.4220 +8823 285888 0.4470 +8823 405754 0.5130 +8825 9211 0.5020 +8825 9215 0.4930 +8825 9256 0.5570 +8825 9369 0.5430 +8825 9378 0.7170 +8825 9379 0.7060 +8825 10207 0.9750 +8825 10458 0.5970 +8825 10497 0.5650 +8825 10716 0.6600 +8825 10815 0.5240 +8825 22999 0.6170 +8825 23513 0.4930 +8825 23705 0.5260 +8825 25824 0.6500 +8825 25861 0.4180 +8825 27304 0.6810 +8825 30851 0.4490 +8825 51678 0.9850 +8825 51806 0.4440 +8825 54557 0.4180 +8825 55327 0.5540 +8825 55359 0.6500 +8825 55591 0.5710 +8825 57524 0.6270 +8825 57576 0.9190 +8825 64130 0.5550 +8825 64398 0.9990 +8825 84708 0.4530 +8825 91860 0.4440 +8825 92359 0.5340 +8825 143098 0.9580 +8825 154796 0.5950 +8825 163688 0.4450 +8825 259197 0.5730 +8825 286204 0.4200 +8826 8844 0.8130 +8826 8874 0.5750 +8826 8936 0.4500 +8826 8976 0.9120 +8826 9050 0.4730 +8826 9051 0.5130 +8826 9055 0.4380 +8826 9113 0.4570 +8826 9146 0.4180 +8826 9181 0.4100 +8826 9184 0.4100 +8826 9231 0.4470 +8826 9260 0.4380 +8826 9322 0.5220 +8826 9341 0.4560 +8826 9352 0.4450 +8826 9414 0.6590 +8826 9453 0.4190 +8826 9459 0.4990 +8826 9475 0.6470 +8826 9495 0.9460 +8826 9497 0.4200 +8826 9564 0.5240 +8826 9578 0.5330 +8826 9738 0.4050 +8826 9748 0.4260 +8826 9793 0.4240 +8826 9815 0.5990 +8826 10006 0.4980 +8826 10094 0.5900 +8826 10096 0.6770 +8826 10097 0.5470 +8826 10152 0.4350 +8826 10163 0.8040 +8826 10211 0.4950 +8826 10254 0.4130 +8826 10256 0.4940 +8826 10298 0.5720 +8826 10399 0.5280 +8826 10411 0.5620 +8826 10413 0.4730 +8826 10427 0.4250 +8826 10435 0.4060 +8826 10594 0.5250 +8826 10602 0.4380 +8826 10671 0.4250 +8826 10787 0.4580 +8826 10788 0.9380 +8826 11010 0.4750 +8826 11031 0.4010 +8826 11060 0.5660 +8826 11069 0.5530 +8826 11113 0.6010 +8826 11129 0.7300 +8826 11135 0.4480 +8826 11180 0.4270 +8826 11215 0.6540 +8826 11346 0.4400 +8826 22808 0.5850 +8826 22866 0.4780 +8826 22919 0.6920 +8826 23002 0.6110 +8826 23048 0.4680 +8826 23075 0.5110 +8826 23122 0.4850 +8826 23191 0.4990 +8826 23197 0.4130 +8826 23256 0.4050 +8826 23265 0.8470 +8826 23380 0.5030 +8826 23432 0.4760 +8826 23433 0.7920 +8826 23513 0.5250 +8826 23580 0.4310 +8826 23603 0.6830 +8826 23607 0.5050 +8826 25831 0.5380 +8826 25894 0.4160 +8826 25921 0.4560 +8826 26030 0.5070 +8826 26136 0.4090 +8826 26251 0.5380 +8826 26281 0.4190 +8826 26548 0.7230 +8826 27006 0.4210 +8826 28964 0.6770 +8826 29119 0.4790 +8826 29127 0.9400 +8826 29941 0.4160 +8826 29984 0.4220 +8826 50618 0.5450 +8826 50649 0.7410 +8826 50855 0.5810 +8826 51196 0.6280 +8826 51347 0.4130 +8826 51655 0.5960 +8826 51806 0.9950 +8826 54438 0.4150 +8826 54443 0.6740 +8826 54509 0.4080 +8826 54518 0.4420 +8826 54756 0.5460 +8826 55004 0.4570 +8826 55243 0.5640 +8826 55366 0.5820 +8826 55742 0.4830 +8826 55763 0.9620 +8826 55789 0.4080 +8826 55845 0.4830 +8826 55914 0.5380 +8826 55971 0.4390 +8826 56006 0.4710 +8826 56924 0.7850 +8826 57144 0.4100 +8826 57473 0.4200 +8826 57514 0.4950 +8826 57630 0.4250 +8826 58480 0.6930 +8826 60412 0.9340 +8826 64423 0.6690 +8826 65124 0.4080 +8826 79834 0.4220 +8826 81624 0.6210 +8826 81839 0.4260 +8826 84292 0.6140 +8826 84317 0.4120 +8826 84612 0.4410 +8826 84955 0.6220 +8826 85415 0.4460 +8826 85477 0.5490 +8826 90417 0.5060 +8826 91010 0.5490 +8826 91452 0.4130 +8826 91860 0.9940 +8826 93408 0.5260 +8826 94134 0.5000 +8826 103910 0.4510 +8826 114793 0.5610 +8826 114822 0.4220 +8826 115548 0.4120 +8826 115703 0.4070 +8826 120892 0.5430 +8826 128239 0.9380 +8826 140465 0.7800 +8826 143098 0.4160 +8826 144402 0.4170 +8826 163688 0.9940 +8826 171177 0.6850 +8826 200894 0.4010 +8826 257106 0.5880 +8826 284119 0.4690 +8826 399687 0.4790 +8826 399693 0.4460 +8826 728378 0.5570 +8828 8829 0.9670 +8828 9037 0.6140 +8828 9423 0.4300 +8828 9723 0.9000 +8828 9956 0.4360 +8828 10154 0.9000 +8828 10371 0.9960 +8828 10501 0.6510 +8828 10509 0.4920 +8828 10512 0.9920 +8828 10630 0.4430 +8828 10894 0.5470 +8828 11249 0.5080 +8828 23129 0.9430 +8828 23654 0.6570 +8828 51046 0.4050 +8828 51129 0.5510 +8828 54345 0.4220 +8828 55558 0.9960 +8828 56920 0.8220 +8828 57556 0.9240 +8828 59277 0.4220 +8828 91584 0.9930 +8828 147372 0.4260 +8828 170482 0.4690 +8828 223117 0.7420 +8828 284217 0.5470 +8828 401994 0.6340 +8829 8851 0.5120 +8829 9037 0.6310 +8829 9308 0.4180 +8829 9423 0.6570 +8829 9547 0.4080 +8829 9723 0.9960 +8829 9855 0.6260 +8829 9951 0.4200 +8829 9953 0.4620 +8829 9993 0.4460 +8829 10154 0.8740 +8829 10287 0.4510 +8829 10332 0.5330 +8829 10371 0.9990 +8829 10501 0.5460 +8829 10505 0.5760 +8829 10507 0.5090 +8829 10512 0.9980 +8829 10529 0.4930 +8829 10570 0.5510 +8829 10752 0.9490 +8829 10755 0.9950 +8829 23129 0.9850 +8829 23396 0.5040 +8829 23547 0.4220 +8829 23654 0.7350 +8829 26060 0.4620 +8829 26281 0.8220 +8829 27006 0.8230 +8829 27161 0.6510 +8829 27289 0.5620 +8829 29126 0.4370 +8829 30816 0.5710 +8829 30835 0.4990 +8829 50943 0.6030 +8829 51284 0.6050 +8829 51286 0.4100 +8829 51311 0.5830 +8829 54106 0.4550 +8829 54209 0.4590 +8829 54567 0.4910 +8829 54584 0.5500 +8829 55558 0.9990 +8829 56034 0.8030 +8829 56896 0.5490 +8829 56920 0.9930 +8829 57555 0.4890 +8829 57556 0.9220 +8829 59272 0.8240 +8829 64218 0.9440 +8829 80031 0.6330 +8829 80310 0.4320 +8829 85359 0.4260 +8829 91584 0.9990 +8829 170482 0.8890 +8829 223117 0.9980 +8829 282618 0.4610 +8829 283420 0.4210 +8829 284217 0.4330 +8829 100133941 0.5090 +8829 100526664 0.4160 +8831 8927 0.4220 +8831 8997 0.7020 +8831 9046 0.5010 +8831 9228 0.8650 +8831 9229 0.7840 +8831 9378 0.5190 +8831 9379 0.4090 +8831 9454 0.6880 +8831 9456 0.7150 +8831 9462 0.6690 +8831 9706 0.8870 +8831 9722 0.4470 +8831 9743 0.6690 +8831 10146 0.5240 +8831 10156 0.5870 +8831 10369 0.7680 +8831 10458 0.4980 +8831 10787 0.5250 +8831 22800 0.7470 +8831 22808 0.7700 +8831 22821 0.6010 +8831 22829 0.6100 +8831 22839 0.4700 +8831 22866 0.4730 +8831 22871 0.6950 +8831 22941 0.8440 +8831 23001 0.4210 +8831 23096 0.5620 +8831 23191 0.4620 +8831 23237 0.5040 +8831 23245 0.4150 +8831 23294 0.4310 +8831 23389 0.4150 +8831 23394 0.4280 +8831 26047 0.4520 +8831 50944 0.8190 +8831 54413 0.7290 +8831 56731 0.4410 +8831 56899 0.4740 +8831 57148 0.4090 +8831 57492 0.4080 +8831 57502 0.7020 +8831 57526 0.4040 +8831 57554 0.5110 +8831 57555 0.7170 +8831 57680 0.5340 +8831 58512 0.5750 +8831 64926 0.4570 +8831 84631 0.4070 +8831 84708 0.4970 +8831 85358 0.8960 +8831 115703 0.4710 +8831 116986 0.4760 +8831 139411 0.7300 +8831 153090 0.4710 +8831 161742 0.6980 +8831 168400 0.5420 +8831 200734 0.5700 +8831 282808 0.6650 +8831 339451 0.5800 +8831 399473 0.4900 +8831 100271849 0.4320 +8832 9046 0.5990 +8832 9332 0.4320 +8832 9437 0.5600 +8832 10261 0.4330 +8832 11314 0.4180 +8832 23086 0.4150 +8832 29851 0.5570 +8832 30835 0.4310 +8832 51284 0.4290 +8832 51621 0.4230 +8832 51744 0.6480 +8832 54440 0.4170 +8832 56833 0.4730 +8832 64092 0.4560 +8832 114836 0.4400 +8832 117157 0.9770 +8833 8886 0.8590 +8833 9097 0.5160 +8833 9156 0.4170 +8833 9188 0.4690 +8833 9231 0.4240 +8833 9255 0.4220 +8833 9338 0.5640 +8833 9343 0.5400 +8833 9349 0.4600 +8833 9533 0.6630 +8833 9553 0.4230 +8833 9563 0.4560 +8833 9583 0.9000 +8833 9615 0.6860 +8833 9669 0.5880 +8833 9801 0.4840 +8833 9924 0.4650 +8833 9945 0.5450 +8833 9962 0.4020 +8833 9963 0.4020 +8833 10006 0.4550 +8833 10056 0.7270 +8833 10243 0.5200 +8833 10352 0.4550 +8833 10436 0.4550 +8833 10473 0.5570 +8833 10521 0.4040 +8833 10528 0.8230 +8833 10539 0.4280 +8833 10557 0.4470 +8833 10576 0.4320 +8833 10606 0.8500 +8833 10667 0.4560 +8833 10785 0.4860 +8833 10797 0.7780 +8833 10845 0.4280 +8833 10846 0.9000 +8833 10885 0.6380 +8833 10923 0.5070 +8833 10978 0.5440 +8833 10988 0.4820 +8833 11128 0.6900 +8833 11137 0.5130 +8833 11219 0.4260 +8833 11222 0.4040 +8833 11277 0.4270 +8833 11315 0.5120 +8833 22934 0.5920 +8833 22978 0.9280 +8833 22984 0.6380 +8833 23029 0.4180 +8833 23048 0.5100 +8833 23135 0.4590 +8833 23157 0.5020 +8833 23173 0.4730 +8833 23246 0.8780 +8833 23252 0.4160 +8833 23365 0.4760 +8833 23395 0.4200 +8833 23476 0.5240 +8833 23481 0.7180 +8833 23521 0.4520 +8833 23560 0.7470 +8833 23586 0.4870 +8833 25885 0.7850 +8833 25902 0.7570 +8833 25973 0.4620 +8833 26227 0.4910 +8833 26354 0.8080 +8833 26504 0.7010 +8833 26505 0.7010 +8833 26507 0.7010 +8833 26953 0.6240 +8833 26995 0.6970 +8833 27102 0.4010 +8833 27165 0.4920 +8833 27292 0.6200 +8833 28998 0.4760 +8833 29775 0.4240 +8833 29789 0.6230 +8833 29889 0.4950 +8833 29968 0.4380 +8833 30833 0.9230 +8833 50940 0.9000 +8833 51015 0.4110 +8833 51026 0.6280 +8833 51068 0.6310 +8833 51069 0.4480 +8833 51106 0.4210 +8833 51116 0.4020 +8833 51154 0.7000 +8833 51167 0.4990 +8833 51179 0.8440 +8833 51251 0.9060 +8833 51292 0.8480 +8833 51388 0.5360 +8833 51422 0.8530 +8833 51520 0.4340 +8833 51557 0.8780 +8833 51602 0.8420 +8833 51611 0.5480 +8833 51678 0.4820 +8833 51700 0.4910 +8833 51706 0.4910 +8833 51727 0.4630 +8833 51733 0.4120 +8833 51816 0.5520 +8833 53632 0.8300 +8833 54363 0.8440 +8833 54433 0.8230 +8833 54552 0.8010 +8833 54586 0.4260 +8833 54606 0.7340 +8833 54663 0.4060 +8833 54805 0.7010 +8833 54870 0.8550 +8833 54938 0.4610 +8833 54963 0.4020 +8833 55127 0.6570 +8833 55152 0.8530 +8833 55157 0.9120 +8833 55163 0.4290 +8833 55173 0.5180 +8833 55191 0.5620 +8833 55226 0.6990 +8833 55272 0.4910 +8833 55278 0.7890 +8833 55299 0.6800 +8833 55341 0.4070 +8833 55591 0.4430 +8833 55699 0.6430 +8833 55703 0.7070 +8833 55720 0.6210 +8833 55759 0.8320 +8833 56474 0.9100 +8833 56648 0.4290 +8833 56902 0.4180 +8833 56952 0.4830 +8833 56953 0.9170 +8833 56954 0.4110 +8833 57038 0.8660 +8833 57082 0.7000 +8833 57109 0.4670 +8833 57136 0.5260 +8833 57176 0.7310 +8833 57418 0.4200 +8833 57455 0.4260 +8833 57470 0.7030 +8833 58538 0.4240 +8833 60558 0.4270 +8833 63875 0.4830 +8833 64080 0.4890 +8833 64216 0.5130 +8833 64398 0.4260 +8833 64782 0.4390 +8833 64794 0.4140 +8833 64963 0.4240 +8833 64965 0.4810 +8833 64968 0.5330 +8833 64969 0.4810 +8833 64983 0.4160 +8833 65003 0.5730 +8833 65005 0.4470 +8833 65008 0.5690 +8833 65062 0.4560 +8833 79009 0.4090 +8833 79073 0.8560 +8833 79092 0.4240 +8833 79587 0.4360 +8833 79631 0.4390 +8833 79694 0.5800 +8833 79711 0.8610 +8833 79731 0.4100 +8833 79763 0.4180 +8833 79892 0.5310 +8833 80222 0.4940 +8833 80347 0.4070 +8833 81691 0.4420 +8833 81875 0.4390 +8833 83475 0.4500 +8833 83549 0.4280 +8833 83743 0.6990 +8833 84128 0.4210 +8833 84154 0.6620 +8833 84172 0.9000 +8833 84324 0.5580 +8833 84340 0.4990 +8833 84433 0.4330 +8833 84618 0.9070 +8833 85476 0.4950 +8833 87178 0.5970 +8833 89894 0.5090 +8833 90353 0.4650 +8833 91875 0.7980 +8833 91893 0.4620 +8833 92106 0.4770 +8833 92399 0.4740 +8833 92935 0.4260 +8833 93034 0.9010 +8833 113451 0.4090 +8833 115024 0.9000 +8833 116832 0.5030 +8833 117246 0.6260 +8833 122622 0.7130 +8833 123263 0.4170 +8833 123283 0.4710 +8833 124454 0.5110 +8833 124583 0.9070 +8833 127845 0.6150 +8833 136332 0.5830 +8833 138428 0.5030 +8833 139596 0.8210 +8833 142940 0.6920 +8833 143098 0.4240 +8833 143244 0.4200 +8833 144193 0.4200 +8833 146212 0.5470 +8833 149175 0.5930 +8833 158584 0.7740 +8833 161823 0.5790 +8833 200895 0.4740 +8833 221078 0.4380 +8833 221823 0.6400 +8833 260425 0.5800 +8833 283985 0.7970 +8833 285148 0.8740 +8833 285855 0.4420 +8833 341405 0.4240 +8833 345630 0.6840 +8833 374659 0.4370 +8833 377841 0.9060 +8833 387129 0.4190 +8833 441024 0.6910 +8833 606495 0.5020 +8833 651746 0.4240 +8833 729020 0.4400 +8833 100505478 0.4160 +8833 100526794 0.9010 +8834 9551 0.4210 +8834 10204 0.4770 +8834 10325 0.7060 +8834 10469 0.4080 +8834 10651 0.7590 +8834 10670 0.7670 +8834 10945 0.4310 +8834 10989 0.7320 +8834 23275 0.4300 +8834 25813 0.6770 +8834 25979 0.5380 +8834 28989 0.4490 +8834 51329 0.4840 +8834 51667 0.4510 +8834 54927 0.7130 +8834 55735 0.8920 +8834 58528 0.4970 +8834 64121 0.5140 +8834 79135 0.6720 +8834 79924 0.4260 +8834 84216 0.4360 +8834 84233 0.4200 +8834 84303 0.6310 +8834 91137 0.4140 +8834 125988 0.7260 +8834 139322 0.7890 +8834 256302 0.4710 +8834 389203 0.4930 +8834 440574 0.7580 +8835 8883 0.5120 +8835 9021 0.9620 +8835 9039 0.5040 +8835 9040 0.5040 +8835 9306 0.7580 +8835 9589 0.4750 +8835 9616 0.9090 +8835 9655 0.6240 +8835 10000 0.4350 +8835 10019 0.5050 +8835 10661 0.4120 +8835 22863 0.5400 +8835 23412 0.4990 +8835 23533 0.7370 +8835 25962 0.4470 +8835 28952 0.4990 +8835 28991 0.4990 +8835 29099 0.4990 +8835 29927 0.4640 +8835 30837 0.7000 +8835 30849 0.5400 +8835 51122 0.4990 +8835 51397 0.5020 +8835 51441 0.7160 +8835 54890 0.4470 +8835 54915 0.5090 +8835 54939 0.4990 +8835 54951 0.5000 +8835 55697 0.5450 +8835 55832 0.5200 +8835 56339 0.5860 +8835 57721 0.5520 +8835 79068 0.4280 +8835 80176 0.4040 +8835 84174 0.5970 +8835 91746 0.4240 +8835 114907 0.4050 +8835 122809 0.7700 +8835 134549 0.4490 +8835 140739 0.5110 +8835 146850 0.5400 +8835 149951 0.4990 +8835 150684 0.4990 +8835 153769 0.5490 +8835 170622 0.5000 +8835 441925 0.5400 +8835 110117498 0.5400 +8836 9246 0.4350 +8836 10054 0.4450 +8836 10055 0.5640 +8836 10956 0.4260 +8836 29028 0.4190 +8836 29089 0.4360 +8836 29843 0.4160 +8836 51132 0.4570 +8836 51148 0.4200 +8836 55293 0.9000 +8836 55743 0.4750 +8836 56254 0.4480 +8836 56852 0.4290 +8836 57544 0.4860 +8836 113235 0.5470 +8836 200895 0.9600 +8836 220042 0.4460 +8836 284312 0.4310 +8836 387082 0.4020 +8837 8897 0.4030 +8837 8915 0.4110 +8837 8988 0.4740 +8837 8996 0.4110 +8837 9101 0.6060 +8837 9191 0.6440 +8837 9214 0.5560 +8837 9474 0.6750 +8837 9641 0.4290 +8837 9994 0.4760 +8837 10018 0.6270 +8837 10273 0.4660 +8837 10392 0.4610 +8837 10616 0.6710 +8837 11025 0.5470 +8837 11035 0.9920 +8837 11124 0.9040 +8837 11337 0.4700 +8837 23118 0.4150 +8837 25816 0.6370 +8837 54205 0.7000 +8837 55072 0.7780 +8837 55312 0.4050 +8837 55626 0.4750 +8837 57448 0.4530 +8837 63979 0.5090 +8837 64344 0.4550 +8837 64422 0.9950 +8837 79444 0.4850 +8837 79680 0.4720 +8837 81858 0.6630 +8837 83641 0.5860 +8837 83737 0.9920 +8837 137902 0.4230 +8837 142678 0.8670 +8837 148022 0.9390 +8837 162989 0.7890 +8837 197259 0.8010 +8837 201163 0.4770 +8837 440503 0.6650 +8838 51202 0.4200 +8838 54361 0.4720 +8838 79174 0.4200 +8839 23090 0.4790 +8839 23643 0.4140 +8839 54361 0.6000 +8839 55128 0.4280 +8840 9509 0.4770 +8840 10397 0.8160 +8840 10631 0.5840 +8840 11197 0.4170 +8840 22943 0.5230 +8840 50964 0.4300 +8840 51176 0.4200 +8840 51384 0.4100 +8840 54361 0.6240 +8840 58480 0.5230 +8840 89780 0.4530 +8841 8850 0.8880 +8841 8970 0.7190 +8841 9063 0.4870 +8841 9070 0.6450 +8841 9112 0.8150 +8841 9134 0.4460 +8841 9212 0.4160 +8841 9219 0.6850 +8841 9282 0.5160 +8841 9314 0.7680 +8841 9370 0.5650 +8841 9412 0.5480 +8841 9439 0.5500 +8841 9440 0.5400 +8841 9441 0.5240 +8841 9442 0.5320 +8841 9443 0.5160 +8841 9477 0.5130 +8841 9555 0.7240 +8841 9569 0.5250 +8841 9572 0.9590 +8841 9575 0.6220 +8841 9611 0.9990 +8841 9612 0.9990 +8841 9682 0.4570 +8841 9734 0.7590 +8841 9739 0.5460 +8841 9759 0.9240 +8841 9794 0.5220 +8841 9862 0.5500 +8841 9967 0.5420 +8841 9968 0.5570 +8841 9969 0.4990 +8841 9989 0.4920 +8841 10001 0.5280 +8841 10009 0.6310 +8841 10013 0.5650 +8841 10014 0.9400 +8841 10025 0.5180 +8841 10046 0.5200 +8841 10062 0.5280 +8841 10123 0.4850 +8841 10155 0.4740 +8841 10238 0.4050 +8841 10270 0.4340 +8841 10284 0.4200 +8841 10365 0.5230 +8841 10413 0.5540 +8841 10419 0.7570 +8841 10474 0.4390 +8841 10488 0.8440 +8841 10498 0.5920 +8841 10499 0.5680 +8841 10521 0.5490 +8841 10524 0.7960 +8841 10528 0.4190 +8841 10574 0.6460 +8841 10575 0.5890 +8841 10576 0.5920 +8841 10693 0.5290 +8841 10694 0.5650 +8841 10891 0.6790 +8841 10919 0.4350 +8841 10933 0.9370 +8841 10943 0.4340 +8841 10951 0.5540 +8841 11091 0.9500 +8841 11108 0.6530 +8841 11143 0.4310 +8841 11198 0.4200 +8841 11328 0.4450 +8841 11331 0.5040 +8841 22803 0.4730 +8841 22933 0.8320 +8841 22938 0.5150 +8841 22948 0.7160 +8841 22955 0.5220 +8841 22976 0.5280 +8841 23013 0.4080 +8841 23028 0.9000 +8841 23054 0.5260 +8841 23097 0.5560 +8841 23118 0.5800 +8841 23135 0.4370 +8841 23186 0.8120 +8841 23253 0.4160 +8841 23309 0.8090 +8841 23389 0.4990 +8841 23409 0.4310 +8841 23410 0.4370 +8841 23411 0.8340 +8841 23466 0.5390 +8841 23476 0.4840 +8841 23512 0.7330 +8841 25855 0.6650 +8841 25925 0.8140 +8841 25937 0.5160 +8841 25942 0.9870 +8841 26060 0.7150 +8841 26190 0.4050 +8841 26224 0.4980 +8841 26270 0.4110 +8841 26330 0.4310 +8841 26985 0.4420 +8841 26993 0.4210 +8841 27033 0.5740 +8841 27136 0.4790 +8841 29072 0.6740 +8841 29079 0.5110 +8841 29123 0.6580 +8841 29978 0.4120 +8841 30009 0.4450 +8841 51003 0.4990 +8841 51043 0.6330 +8841 51129 0.5370 +8841 51230 0.4120 +8841 51477 0.5370 +8841 51547 0.4570 +8841 51548 0.5360 +8841 51564 0.8040 +8841 51586 0.5170 +8841 51742 0.6700 +8841 53615 0.6420 +8841 54145 0.7200 +8841 54461 0.4410 +8841 54797 0.5070 +8841 54815 0.5690 +8841 55090 0.5010 +8841 55135 0.4220 +8841 55140 0.4840 +8841 55294 0.4560 +8841 55506 0.7050 +8841 55534 0.5110 +8841 55588 0.5110 +8841 55766 0.6860 +8841 55904 0.4900 +8841 56893 0.4780 +8841 56946 0.5140 +8841 57167 0.5390 +8841 57215 0.4260 +8841 57332 0.6100 +8841 57459 0.5690 +8841 57504 0.6680 +8841 57649 0.6090 +8841 57763 0.5340 +8841 57805 0.4760 +8841 58508 0.5940 +8841 60436 0.4710 +8841 60468 0.5590 +8841 64422 0.4670 +8841 64426 0.8890 +8841 64783 0.7780 +8841 64919 0.4760 +8841 79447 0.5040 +8841 79576 0.6780 +8841 79685 0.4350 +8841 79718 0.9990 +8841 79885 0.4390 +8841 80012 0.5080 +8841 80205 0.5770 +8841 80306 0.4990 +8841 80764 0.6730 +8841 81857 0.5440 +8841 83746 0.6180 +8841 83752 0.4050 +8841 83933 0.6650 +8841 84101 0.6280 +8841 84106 0.5210 +8841 84232 0.5750 +8841 84246 0.5190 +8841 84261 0.4040 +8841 84271 0.4980 +8841 84441 0.5110 +8841 84458 0.4070 +8841 84498 0.5470 +8841 84733 0.5770 +8841 84962 0.8000 +8841 85235 0.4630 +8841 85236 0.7190 +8841 85441 0.5070 +8841 90390 0.5170 +8841 90665 0.9980 +8841 91750 0.6770 +8841 92292 0.4050 +8841 92815 0.6860 +8841 94239 0.7780 +8841 96764 0.5210 +8841 112950 0.5040 +8841 115004 0.4910 +8841 122953 0.6720 +8841 127002 0.4570 +8841 128312 0.7240 +8841 132660 0.6340 +8841 148327 0.7880 +8841 158983 0.7200 +8841 221613 0.7680 +8841 221937 0.4570 +8841 222255 0.4560 +8841 255626 0.7950 +8841 266740 0.5760 +8841 286436 0.7200 +8841 317772 0.6880 +8841 342371 0.4430 +8841 400569 0.5130 +8841 440093 0.7870 +8841 440686 0.7870 +8841 440689 0.7220 +8841 474381 0.6950 +8841 474382 0.6860 +8841 493856 0.4230 +8841 653604 0.8900 +8841 114483833 0.7200 +8842 9032 0.4970 +8842 9094 0.5330 +8842 9129 0.4590 +8842 9201 0.5700 +8842 9241 0.4350 +8842 9253 0.4360 +8842 9314 0.6640 +8842 9429 0.7870 +8842 9839 0.4780 +8842 9982 0.4610 +8842 10002 0.4930 +8842 10013 0.4630 +8842 10210 0.4910 +8842 10215 0.6140 +8842 10461 0.4480 +8842 10562 0.4330 +8842 10594 0.4820 +8842 10763 0.8290 +8842 22809 0.4300 +8842 22914 0.5710 +8842 22999 0.4610 +8842 23020 0.4750 +8842 23657 0.5310 +8842 23746 0.6220 +8842 25794 0.5360 +8842 26018 0.4330 +8842 26121 0.5070 +8842 26281 0.5070 +8842 27006 0.5070 +8842 27111 0.5090 +8842 28514 0.4100 +8842 29126 0.5070 +8842 50939 0.5570 +8842 51206 0.4140 +8842 54474 0.4420 +8842 54567 0.4240 +8842 54714 0.5930 +8842 54790 0.4390 +8842 55975 0.4410 +8842 57096 0.5200 +8842 57167 0.4290 +8842 64218 0.6270 +8842 79727 0.5200 +8842 79923 0.8460 +8842 83394 0.5860 +8842 84839 0.5200 +8842 89780 0.4230 +8842 90390 0.5820 +8842 92211 0.9170 +8842 130557 0.5120 +8842 137902 0.5540 +8842 145226 0.5570 +8842 171023 0.4070 +8842 340273 0.7860 +8842 346007 0.5960 +8842 375298 0.6750 +8842 388939 0.5270 +8842 768206 0.5360 +8842 100133941 0.8900 +8842 100532731 0.7750 +8843 27198 0.5440 +8843 51738 0.6730 +8843 53831 0.5630 +8843 54210 0.4190 +8843 55163 0.4050 +8843 63940 0.4430 +8843 126006 0.4030 +8843 338442 0.9990 +8843 344561 0.5950 +8844 9043 0.4680 +8844 9061 0.5050 +8844 9181 0.4460 +8844 9444 0.5020 +8844 9479 0.5150 +8844 9715 0.5130 +8844 9867 0.4670 +8844 10018 0.5680 +8844 10142 0.5500 +8844 10256 0.9410 +8844 10332 0.9020 +8844 10533 0.5820 +8844 10827 0.5000 +8844 10892 0.4060 +8844 11044 0.4990 +8844 11214 0.7140 +8844 22866 0.9110 +8844 22906 0.5040 +8844 23164 0.4990 +8844 23197 0.4100 +8844 23365 0.4330 +8844 27044 0.5000 +8844 27161 0.4430 +8844 30835 0.9510 +8844 51231 0.4790 +8844 54518 0.4640 +8844 54756 0.6110 +8844 54845 0.5150 +8844 55109 0.5330 +8844 55750 0.5020 +8844 55914 0.5960 +8844 56829 0.5010 +8844 57085 0.4990 +8844 57521 0.7220 +8844 57670 0.5380 +8844 80853 0.5820 +8844 84292 0.6530 +8844 84447 0.4240 +8844 154043 0.4450 +8844 253260 0.7080 +8846 9589 0.8410 +8846 9682 0.4240 +8846 9869 0.4320 +8846 9987 0.4310 +8846 10189 0.4010 +8846 10419 0.4940 +8846 10621 0.5380 +8846 10642 0.5810 +8846 10643 0.4690 +8846 10644 0.5050 +8846 10772 0.4190 +8846 10978 0.6490 +8846 23091 0.6960 +8846 23378 0.5160 +8846 23583 0.4430 +8846 25821 0.4440 +8846 25962 0.7880 +8846 27316 0.5150 +8846 29063 0.5080 +8846 29081 0.4510 +8846 29104 0.7180 +8846 29890 0.5980 +8846 51441 0.7910 +8846 51504 0.5490 +8846 51605 0.8050 +8846 51676 0.4490 +8846 54517 0.4190 +8846 54784 0.9550 +8846 54790 0.4890 +8846 54802 0.4210 +8846 54888 0.6620 +8846 54890 0.9800 +8846 54915 0.8090 +8846 54920 0.4010 +8846 54931 0.7150 +8846 55006 0.7190 +8846 55695 0.6140 +8846 56339 0.8580 +8846 57604 0.5430 +8846 57721 0.8520 +8846 63899 0.7030 +8846 63935 0.4050 +8846 64783 0.7130 +8846 64848 0.7670 +8846 64863 0.7610 +8846 79066 0.7000 +8846 79068 0.9580 +8846 79730 0.5280 +8846 79828 0.4220 +8846 79872 0.6450 +8846 80312 0.4940 +8846 83480 0.4200 +8846 83932 0.4390 +8846 84266 0.9460 +8846 84964 0.9540 +8846 91746 0.8030 +8846 91801 0.9530 +8846 115708 0.7080 +8846 121642 0.9860 +8846 129450 0.5620 +8846 130916 0.4540 +8846 133482 0.4290 +8846 142940 0.4150 +8846 200424 0.4330 +8846 221078 0.5680 +8846 221120 0.9900 +8846 253943 0.7410 +8846 348793 0.5100 +8846 387338 0.6110 +8848 29959 0.8910 +8848 56934 0.6220 +8848 81628 0.8210 +8848 89884 0.6160 +8848 133482 0.4280 +8848 340371 0.4380 +8850 8932 0.5410 +8850 8968 0.9600 +8850 8970 0.6990 +8850 9013 0.5620 +8850 9014 0.6090 +8850 9015 0.5320 +8850 9021 0.4530 +8850 9027 0.6910 +8850 9031 0.6220 +8850 9044 0.4670 +8850 9070 0.6880 +8850 9156 0.4060 +8850 9188 0.5540 +8850 9282 0.4510 +8850 9314 0.5750 +8850 9412 0.6980 +8850 9519 0.5220 +8850 9533 0.5760 +8850 9572 0.4150 +8850 9575 0.8290 +8850 9611 0.9210 +8850 9612 0.9000 +8850 9682 0.4340 +8850 9734 0.7950 +8850 9739 0.8950 +8850 9757 0.6010 +8850 9759 0.8980 +8850 9794 0.9380 +8850 9839 0.5310 +8850 9869 0.4780 +8850 9913 0.9610 +8850 9939 0.4140 +8850 9960 0.5220 +8850 9972 0.5150 +8850 9978 0.5930 +8850 10013 0.8060 +8850 10014 0.8250 +8850 10046 0.5190 +8850 10365 0.6850 +8850 10370 0.5400 +8850 10382 0.4170 +8850 10419 0.4500 +8850 10460 0.7060 +8850 10474 0.9990 +8850 10498 0.9260 +8850 10499 0.9620 +8850 10514 0.5430 +8850 10521 0.8490 +8850 10524 0.9920 +8850 10612 0.4250 +8850 10629 0.9970 +8850 10661 0.7900 +8850 10765 0.4810 +8850 10849 0.5090 +8850 10856 0.9110 +8850 10891 0.7010 +8850 10919 0.6650 +8850 10933 0.6000 +8850 11091 0.9930 +8850 11143 0.7700 +8850 11198 0.5770 +8850 11200 0.5080 +8850 11279 0.4330 +8850 11317 0.9160 +8850 22884 0.5190 +8850 22933 0.8270 +8850 22938 0.6790 +8850 23028 0.7580 +8850 23067 0.7370 +8850 23097 0.4210 +8850 23112 0.5180 +8850 23129 0.5020 +8850 23135 0.4530 +8850 23186 0.6060 +8850 23309 0.6560 +8850 23326 0.9870 +8850 23352 0.4140 +8850 23408 0.5110 +8850 23409 0.4810 +8850 23410 0.5540 +8850 23411 0.9600 +8850 23450 0.9290 +8850 23451 0.5740 +8850 23462 0.5880 +8850 23468 0.4880 +8850 23493 0.5690 +8850 23522 0.7540 +8850 25842 0.5810 +8850 25862 0.4500 +8850 25885 0.6600 +8850 25937 0.8060 +8850 25942 0.7290 +8850 26009 0.9400 +8850 26108 0.4860 +8850 26508 0.5610 +8850 26523 0.5510 +8850 27097 0.9980 +8850 27161 0.5560 +8850 27327 0.5220 +8850 28999 0.4390 +8850 29072 0.6340 +8850 29079 0.6830 +8850 29128 0.6270 +8850 30834 0.5640 +8850 50943 0.4430 +8850 51003 0.4020 +8850 51082 0.5110 +8850 51176 0.5790 +8850 51477 0.6070 +8850 51547 0.6840 +8850 51548 0.6210 +8850 51562 0.9740 +8850 51564 0.7640 +8850 51616 0.9800 +8850 51621 0.6080 +8850 53335 0.4730 +8850 54107 0.8610 +8850 54145 0.7000 +8850 54583 0.4970 +8850 55140 0.8340 +8850 55170 0.6850 +8850 55193 0.4490 +8850 55226 0.5730 +8850 55257 0.6310 +8850 55294 0.6080 +8850 55534 0.8410 +8850 55578 0.9880 +8850 55636 0.4740 +8850 55689 0.9710 +8850 55723 0.5640 +8850 55766 0.5590 +8850 55869 0.8600 +8850 55870 0.4350 +8850 55902 0.4340 +8850 55904 0.6590 +8850 56254 0.4780 +8850 56655 0.8390 +8850 56943 0.9970 +8850 56970 0.9930 +8850 57325 0.9860 +8850 57634 0.6920 +8850 58508 0.6290 +8850 60495 0.4340 +8850 63897 0.5150 +8850 64376 0.6470 +8850 64425 0.5690 +8850 64769 0.4600 +8850 79101 0.4990 +8850 79595 0.5010 +8850 79718 0.6780 +8850 79885 0.8700 +8850 79903 0.5680 +8850 79969 0.5140 +8850 80155 0.4460 +8850 80218 0.5340 +8850 80314 0.4570 +8850 80854 0.5630 +8850 81620 0.4240 +8850 83443 0.8040 +8850 83860 0.5100 +8850 83933 0.7900 +8850 84101 0.4890 +8850 84148 0.7740 +8850 84172 0.5340 +8850 84441 0.8430 +8850 84444 0.5570 +8850 84532 0.4360 +8850 84661 0.5670 +8850 84749 0.4550 +8850 85235 0.5550 +8850 85236 0.7010 +8850 90780 0.6760 +8850 92292 0.9010 +8850 92552 0.5050 +8850 92815 0.5550 +8850 93624 0.9920 +8850 94239 0.7610 +8850 112398 0.4180 +8850 112869 0.9990 +8850 114799 0.7630 +8850 114803 0.9850 +8850 117143 0.9980 +8850 126961 0.9680 +8850 127002 0.9320 +8850 128312 0.7100 +8850 135112 0.4640 +8850 150094 0.4020 +8850 150684 0.9480 +8850 157570 0.7580 +8850 158880 0.7660 +8850 158983 0.4250 +8850 161882 0.5400 +8850 192669 0.5080 +8850 192670 0.5310 +8850 200186 0.6950 +8850 221302 0.6750 +8850 221613 0.5550 +8850 221830 0.5160 +8850 222255 0.8870 +8850 255626 0.7000 +8850 256646 0.4830 +8850 286436 0.4250 +8850 317772 0.5550 +8850 333932 0.9330 +8850 338917 0.4430 +8850 343930 0.5090 +8850 374395 0.5510 +8850 387332 0.5820 +8850 387893 0.4220 +8850 388585 0.5340 +8850 389856 0.7520 +8850 399949 0.4920 +8850 440093 0.9920 +8850 440686 0.9920 +8850 440689 0.4260 +8850 474382 0.5720 +8850 653604 0.9960 +8850 728378 0.5340 +8850 100287513 0.4500 +8850 114483833 0.4250 +8851 8941 0.6150 +8851 9625 0.7040 +8851 9867 0.5740 +8851 9915 0.4200 +8851 10371 0.5310 +8851 10570 0.5790 +8851 10763 0.4050 +8851 23208 0.4720 +8851 23621 0.6460 +8851 25825 0.4680 +8851 29089 0.4220 +8851 51654 0.7480 +8851 55558 0.5280 +8851 55755 0.8580 +8851 55803 0.4950 +8851 56896 0.5630 +8851 80279 0.8220 +8851 81565 0.5500 +8851 84290 0.5460 +8851 84570 0.5830 +8851 91584 0.5300 +8851 91768 0.5200 +8851 148252 0.4320 +8851 163486 0.4200 +8851 266743 0.4130 +8852 9468 0.4010 +8852 9576 0.5440 +8852 10521 0.8990 +8852 10566 0.4950 +8852 11055 0.4800 +8852 11216 0.4150 +8852 25981 0.6060 +8852 26256 0.7470 +8852 26330 0.6070 +8852 27285 0.4510 +8852 30014 0.7540 +8852 51132 0.4020 +8852 51686 0.4280 +8852 53340 0.5160 +8852 54457 0.4420 +8852 54558 0.4760 +8852 54763 0.6600 +8852 54937 0.4850 +8852 55779 0.6100 +8852 56001 0.4370 +8852 56157 0.5400 +8852 79846 0.5340 +8852 79925 0.4430 +8852 80217 0.5840 +8852 80705 0.4570 +8852 81833 0.4650 +8852 83853 0.4490 +8852 84074 0.5350 +8852 84075 0.4610 +8852 84519 0.4430 +8852 84528 0.4150 +8852 84691 0.5550 +8852 85417 0.7900 +8852 85438 0.4240 +8852 89869 0.4520 +8852 93661 0.4220 +8852 117144 0.4940 +8852 120935 0.4060 +8852 130560 0.6390 +8852 140625 0.4400 +8852 145942 0.4140 +8852 146852 0.4090 +8852 150483 0.4680 +8852 152015 0.5060 +8852 158798 0.8420 +8852 160065 0.4490 +8852 161835 0.8030 +8852 171169 0.4480 +8852 199223 0.4150 +8852 200162 0.4330 +8852 246777 0.4170 +8852 283629 0.5340 +8852 339829 0.4520 +8852 374768 0.4640 +8852 401024 0.8000 +8852 728343 0.4360 +8852 728712 0.7450 +8852 100526761 0.4870 +8853 11021 0.4430 +8853 26499 0.4250 +8853 30011 0.7160 +8853 50807 0.9070 +8853 55616 0.9360 +8853 55824 0.4140 +8853 56903 0.7170 +8853 57648 0.4440 +8853 58515 0.4200 +8853 64429 0.4340 +8853 84632 0.4060 +8853 94134 0.4760 +8853 140460 0.4250 +8854 9021 0.4390 +8854 9096 0.6720 +8854 9227 0.4660 +8854 9249 0.9560 +8854 9464 0.4400 +8854 10048 0.4290 +8854 10170 0.9300 +8854 10247 0.4170 +8854 10720 0.6650 +8854 10803 0.4680 +8854 10901 0.9320 +8854 11151 0.5090 +8854 29785 0.9230 +8854 50700 0.9420 +8854 50805 0.4010 +8854 50943 0.5860 +8854 51050 0.4770 +8854 51071 0.4410 +8854 51109 0.9490 +8854 53630 0.9500 +8854 54490 0.6630 +8854 54575 0.6630 +8854 54576 0.6630 +8854 54577 0.6630 +8854 54578 0.6630 +8854 54579 0.6630 +8854 54584 0.4390 +8854 54600 0.6630 +8854 54657 0.6630 +8854 54658 0.6630 +8854 54659 0.6630 +8854 54884 0.4780 +8854 55902 0.4080 +8854 56603 0.9880 +8854 57016 0.5100 +8854 57591 0.4350 +8854 57665 0.4460 +8854 64220 0.6470 +8854 64581 0.5520 +8854 64850 0.4130 +8854 65220 0.4220 +8854 79611 0.4270 +8854 79799 0.6690 +8854 83667 0.4240 +8854 84263 0.6930 +8854 84532 0.4080 +8854 112724 0.4370 +8854 121214 0.4090 +8854 130013 0.4290 +8854 137872 0.5370 +8854 145226 0.9640 +8854 157506 0.9770 +8854 195814 0.9420 +8854 223117 0.4130 +8854 284541 0.9210 +8854 340665 0.9830 +8854 344191 0.4480 +8854 574537 0.6630 +8854 100861540 0.9180 +8854 109703458 0.4100 +8856 9002 0.6250 +8856 9213 0.8890 +8856 9294 0.5670 +8856 9360 0.7890 +8856 9420 0.5390 +8856 9429 0.7580 +8856 9611 0.7920 +8856 9612 0.8800 +8856 9965 0.4830 +8856 9971 0.6420 +8856 10110 0.4860 +8856 10135 0.4480 +8856 10257 0.7220 +8856 10403 0.7380 +8856 10499 0.5760 +8856 10577 0.5880 +8856 10599 0.8520 +8856 10720 0.4390 +8856 10864 0.5030 +8856 10891 0.8910 +8856 10899 0.5090 +8856 11012 0.4420 +8856 11309 0.4870 +8856 23054 0.4200 +8856 27233 0.4700 +8856 27284 0.5630 +8856 27306 0.4880 +8856 28234 0.8110 +8856 51081 0.5070 +8856 51302 0.4020 +8856 53919 0.4030 +8856 54490 0.4480 +8856 54575 0.7570 +8856 54576 0.7480 +8856 54577 0.7470 +8856 54578 0.8430 +8856 54579 0.5160 +8856 54600 0.6020 +8856 54657 0.7620 +8856 54658 0.7610 +8856 54659 0.5790 +8856 64240 0.5340 +8856 64241 0.5250 +8856 64816 0.5170 +8856 79799 0.5150 +8856 120227 0.5990 +8856 123264 0.5640 +8856 133688 0.4870 +8856 135152 0.5830 +8856 151306 0.7230 +8856 152831 0.4810 +8856 167127 0.4390 +8856 200931 0.6030 +8856 284111 0.5000 +8856 340273 0.5220 +8856 377841 0.6720 +8856 442038 0.4500 +8856 574537 0.4620 +8856 100861540 0.8150 +8857 10071 0.4640 +8857 10551 0.5470 +8857 10562 0.4060 +8857 11041 0.4040 +8857 27290 0.4180 +8857 56667 0.4080 +8857 91612 0.4030 +8857 140453 0.4480 +8857 158038 0.4200 +8857 200504 0.4640 +8857 653808 0.7800 +8858 10891 0.4400 +8858 23411 0.4440 +8858 51156 0.9960 +8858 114805 0.4150 +8858 120787 0.4380 +8858 166012 0.4180 +8858 219487 0.4010 +8858 245937 0.4680 +8859 10262 0.4200 +8859 11340 0.4260 +8859 22803 0.4240 +8859 23016 0.4440 +8859 23532 0.4840 +8859 51010 0.4650 +8859 51013 0.4370 +8859 51161 0.6010 +8859 54512 0.4260 +8859 56915 0.4360 +8859 57827 0.4130 +8859 80243 0.4180 +8859 84337 0.4140 +8859 118460 0.4370 +8859 169166 0.6970 +8859 196528 0.4790 +8861 9139 0.6600 +8861 9150 0.4080 +8861 9353 0.4990 +8861 9355 0.9840 +8861 9656 0.4330 +8861 10522 0.5940 +8861 10661 0.8760 +8861 10664 0.5250 +8861 11129 0.4480 +8861 23070 0.5290 +8861 23163 0.4660 +8861 23414 0.4710 +8861 23635 0.9970 +8861 26468 0.9660 +8861 51132 0.9170 +8861 51176 0.6130 +8861 51592 0.7300 +8861 53335 0.5250 +8861 55278 0.8000 +8861 55859 0.8680 +8861 55885 0.9020 +8861 56956 0.9570 +8861 57492 0.4420 +8861 58190 0.5040 +8861 63973 0.7800 +8861 64211 0.5910 +8861 64843 0.9370 +8861 80237 0.4180 +8861 83439 0.5970 +8861 84707 0.9030 +8861 84955 0.6190 +8861 89884 0.9440 +8861 90780 0.9140 +8861 91734 0.8370 +8861 152006 0.6190 +8861 161882 0.9420 +8861 170463 0.9500 +8861 283149 0.9260 +8861 431707 0.7120 +8862 9283 0.5240 +8862 9370 0.6980 +8862 9607 0.5220 +8862 10135 0.7220 +8862 10316 0.5380 +8862 10874 0.6050 +8862 11082 0.5300 +8862 23411 0.6140 +8862 26086 0.4090 +8862 26291 0.4180 +8862 51083 0.7520 +8862 51738 0.7230 +8862 54567 0.5910 +8862 55600 0.6970 +8862 56729 0.7150 +8862 56923 0.5490 +8862 57393 0.4370 +8862 59272 0.8450 +8862 63940 0.4010 +8862 84539 0.4990 +8862 84666 0.6970 +8862 129521 0.5960 +8862 145264 0.7120 +8862 252995 0.4790 +8862 256933 0.7780 +8862 283869 0.6200 +8862 100506013 0.8580 +8863 8864 0.9980 +8863 8914 0.9570 +8863 8945 0.9310 +8863 9099 0.4720 +8863 9572 0.9780 +8863 9575 0.8660 +8863 9975 0.9690 +8863 9978 0.9170 +8863 11200 0.6660 +8863 23291 0.9210 +8863 23411 0.4580 +8863 25819 0.5540 +8863 26224 0.6650 +8863 54962 0.6410 +8863 56938 0.6010 +8863 79365 0.9600 +8863 79836 0.5210 +8863 85457 0.4220 +8863 94233 0.6210 +8863 139135 0.4620 +8863 148523 0.7670 +8863 102800317 0.8760 +8864 8914 0.9490 +8864 8945 0.9930 +8864 9099 0.5830 +8864 9513 0.4680 +8864 9572 0.9980 +8864 9575 0.9910 +8864 9790 0.4290 +8864 9975 0.9700 +8864 9978 0.9190 +8864 10117 0.4090 +8864 10135 0.7740 +8864 10891 0.4890 +8864 11091 0.4670 +8864 23291 0.9300 +8864 23358 0.4140 +8864 23411 0.9250 +8864 25819 0.6210 +8864 25942 0.5350 +8864 26121 0.4120 +8864 26224 0.9170 +8864 29122 0.5710 +8864 51738 0.4090 +8864 53340 0.5070 +8864 54962 0.5700 +8864 55511 0.5840 +8864 56938 0.7470 +8864 57521 0.5870 +8864 60675 0.5560 +8864 64802 0.4830 +8864 79365 0.9990 +8864 79836 0.4960 +8864 90737 0.6210 +8864 94233 0.7260 +8864 112464 0.5340 +8864 114991 0.4220 +8864 139067 0.4130 +8864 139135 0.5440 +8864 148523 0.7190 +8864 150094 0.4080 +8864 221391 0.4150 +8864 102800317 0.8690 +8867 8871 0.9250 +8867 8905 0.6060 +8867 8906 0.7690 +8867 8907 0.6210 +8867 8934 0.5110 +8867 8976 0.8440 +8867 9026 0.4250 +8867 9051 0.4860 +8867 9107 0.4880 +8867 9108 0.4140 +8867 9179 0.4170 +8867 9253 0.5720 +8867 9342 0.5480 +8867 9651 0.6990 +8867 9685 0.7000 +8867 9829 0.9130 +8867 9892 0.8320 +8867 9896 0.4500 +8867 9946 0.4250 +8867 9980 0.4350 +8867 10053 0.5760 +8867 10059 0.6170 +8867 10311 0.4380 +8867 10381 0.4020 +8867 10717 0.4420 +8867 10785 0.5020 +8867 11252 0.8140 +8867 11276 0.6480 +8867 11315 0.5800 +8867 22841 0.4130 +8867 22848 0.4030 +8867 22876 0.9170 +8867 22905 0.9030 +8867 23007 0.6850 +8867 23149 0.4920 +8867 23208 0.4900 +8867 23236 0.7300 +8867 23301 0.4680 +8867 23317 0.7420 +8867 23396 0.9510 +8867 23400 0.7340 +8867 23431 0.4650 +8867 23607 0.7890 +8867 23677 0.4800 +8867 25793 0.6920 +8867 25977 0.7210 +8867 26052 0.4850 +8867 26058 0.5070 +8867 26499 0.4200 +8867 27124 0.5530 +8867 27429 0.5660 +8867 29058 0.5990 +8867 29763 0.6850 +8867 29924 0.7550 +8867 29993 0.8810 +8867 30011 0.7020 +8867 30811 0.5190 +8867 50618 0.9000 +8867 51100 0.6530 +8867 51142 0.6180 +8867 51196 0.6940 +8867 51429 0.9510 +8867 51763 0.5260 +8867 54832 0.7020 +8867 54885 0.4180 +8867 55040 0.9030 +8867 55062 0.4080 +8867 55300 0.7920 +8867 55333 0.6710 +8867 55361 0.7830 +8867 55529 0.9130 +8867 55604 0.4030 +8867 55707 0.6440 +8867 55737 0.7460 +8867 56479 0.5590 +8867 56623 0.9200 +8867 56683 0.4370 +8867 56904 0.5900 +8867 57514 0.4790 +8867 58494 0.5460 +8867 58513 0.8490 +8867 64145 0.4880 +8867 64422 0.5700 +8867 64744 0.4280 +8867 65018 0.6680 +8867 79608 0.5430 +8867 79837 0.9190 +8867 80115 0.5820 +8867 80208 0.5650 +8867 83988 0.5560 +8867 84251 0.8280 +8867 84812 0.6680 +8867 85439 0.7370 +8867 89869 0.6720 +8867 90809 0.9100 +8867 91683 0.4290 +8867 94104 0.7500 +8867 112574 0.4030 +8867 113026 0.6680 +8867 116442 0.5810 +8867 120892 0.8000 +8867 122616 0.5400 +8867 129642 0.5990 +8867 130340 0.5440 +8867 138429 0.9110 +8867 149371 0.4100 +8867 150350 0.6250 +8867 200576 0.4900 +8867 391356 0.5270 +8869 9331 0.9510 +8869 9334 0.6080 +8869 9435 0.4380 +8869 10020 0.4390 +8869 10317 0.5180 +8869 10559 0.6250 +8869 10690 0.4370 +8869 10825 0.4650 +8869 11226 0.4100 +8869 11227 0.4920 +8869 27090 0.4610 +8869 29906 0.7400 +8869 53947 0.5070 +8869 54187 0.5110 +8869 54414 0.5060 +8869 54621 0.4470 +8869 55790 0.4160 +8869 55858 0.4110 +8869 64921 0.5180 +8869 79087 0.4170 +8869 80235 0.4150 +8869 84002 0.5380 +8869 84302 0.4150 +8869 84720 0.4130 +8869 91304 0.4340 +8869 129807 0.4720 +8869 145173 0.4160 +8869 146760 0.4200 +8869 170384 0.4510 +8869 256435 0.5230 +8869 338596 0.6600 +8870 9518 0.4880 +8870 9592 0.5790 +8870 10221 0.5550 +8870 10253 0.4840 +8870 11259 0.4700 +8870 22822 0.6880 +8870 23539 0.4470 +8870 26471 0.4090 +8870 51278 0.4270 +8870 51330 0.5350 +8870 51435 0.4630 +8870 54542 0.4490 +8870 64332 0.5310 +8870 79893 0.5420 +8870 80149 0.4300 +8870 81848 0.4480 +8870 93974 0.5910 +8870 145173 0.5060 +8870 161742 0.4010 +8870 200734 0.4070 +8870 340554 0.4480 +8871 8906 0.5200 +8871 8936 0.4260 +8871 8976 0.8210 +8871 9051 0.4980 +8871 9107 0.5080 +8871 9253 0.5580 +8871 9342 0.5260 +8871 9644 0.4390 +8871 9651 0.6950 +8871 9829 0.6660 +8871 9892 0.7080 +8871 10152 0.4270 +8871 10163 0.4680 +8871 10458 0.5170 +8871 10787 0.4140 +8871 11346 0.4610 +8871 22876 0.9140 +8871 22905 0.8010 +8871 23007 0.6780 +8871 23048 0.5360 +8871 23149 0.5250 +8871 23236 0.7080 +8871 23301 0.4700 +8871 23396 0.9370 +8871 23431 0.4540 +8871 23607 0.6440 +8871 23647 0.5140 +8871 23677 0.4670 +8871 27124 0.5570 +8871 29924 0.5080 +8871 29993 0.4960 +8871 30011 0.7790 +8871 50618 0.8540 +8871 51196 0.6800 +8871 51429 0.8330 +8871 51454 0.4250 +8871 51763 0.5690 +8871 55040 0.7920 +8871 55300 0.6970 +8871 55333 0.9210 +8871 55361 0.7300 +8871 55529 0.9050 +8871 55604 0.4280 +8871 56623 0.9290 +8871 58513 0.6760 +8871 63916 0.4260 +8871 64145 0.4830 +8871 79837 0.9110 +8871 84812 0.6680 +8871 84947 0.4130 +8871 85439 0.7050 +8871 89869 0.6720 +8871 90809 0.9030 +8871 113026 0.6710 +8871 138429 0.9110 +8871 200576 0.4250 +8871 404672 0.4470 +8872 8881 0.4650 +8872 8894 0.8730 +8872 9025 0.4260 +8872 9317 0.4080 +8872 9861 0.5860 +8872 10296 0.4790 +8872 10644 0.6700 +8872 10694 0.4310 +8872 10944 0.6120 +8872 10946 0.5890 +8872 10987 0.6280 +8872 11085 0.5710 +8872 11164 0.7690 +8872 11321 0.4630 +8872 23462 0.4260 +8872 23788 0.4370 +8872 24146 0.4280 +8872 26503 0.4600 +8872 51373 0.4490 +8872 51493 0.5390 +8872 51649 0.4660 +8872 54469 0.5560 +8872 54901 0.7820 +8872 55327 0.4060 +8872 55957 0.4020 +8872 55968 0.4460 +8872 56942 0.4380 +8872 56999 0.7200 +8872 57118 0.8760 +8872 60678 0.5860 +8872 60685 0.4880 +8872 79068 0.5860 +8872 80320 0.4330 +8872 83643 0.4170 +8872 83795 0.4340 +8872 83890 0.4430 +8872 84327 0.5720 +8872 115825 0.4970 +8872 116985 0.5740 +8872 120935 0.4230 +8872 132789 0.4230 +8872 136259 0.4790 +8872 140902 0.4760 +8872 145741 0.6210 +8872 169026 0.7220 +8872 169792 0.5060 +8872 221895 0.8200 +8872 255308 0.7110 +8872 257194 0.4230 +8872 388125 0.6080 +8872 392636 0.4540 +8872 399818 0.4330 +8874 8976 0.6840 +8874 9138 0.9320 +8874 9181 0.6990 +8874 9229 0.5820 +8874 9322 0.5100 +8874 9341 0.4050 +8874 9404 0.5490 +8874 9459 0.9900 +8874 9497 0.4050 +8874 9578 0.5140 +8874 9647 0.4750 +8874 9758 0.5110 +8874 9815 0.9980 +8874 9943 0.5090 +8874 10190 0.4020 +8874 10243 0.5460 +8874 10298 0.9640 +8874 10519 0.6530 +8874 10627 0.5920 +8874 10645 0.7370 +8874 10672 0.5040 +8874 10810 0.4890 +8874 10989 0.4570 +8874 11060 0.4600 +8874 11135 0.4290 +8874 11151 0.4990 +8874 11275 0.4970 +8874 22843 0.4550 +8874 22941 0.8090 +8874 23048 0.4650 +8874 23219 0.4840 +8874 23365 0.9610 +8874 23433 0.6600 +8874 23513 0.9970 +8874 23533 0.5790 +8874 26499 0.5900 +8874 28964 0.9990 +8874 29127 0.5220 +8874 29780 0.6830 +8874 30011 0.5610 +8874 30851 0.6570 +8874 50944 0.9570 +8874 51517 0.8090 +8874 53346 0.4450 +8874 54776 0.4950 +8874 54874 0.4650 +8874 55004 0.4030 +8874 55240 0.4060 +8874 56924 0.9620 +8874 57144 0.9390 +8874 57216 0.4990 +8874 57381 0.6810 +8874 57468 0.5000 +8874 57522 0.6850 +8874 58480 0.6850 +8874 63916 0.4890 +8874 64283 0.4400 +8874 80232 0.4420 +8874 80728 0.5370 +8874 81609 0.8060 +8874 81624 0.5490 +8874 81831 0.5290 +8874 81839 0.4660 +8874 83737 0.7960 +8874 84254 0.5700 +8874 85021 0.4040 +8874 85358 0.7480 +8874 91010 0.4700 +8874 114897 0.4290 +8874 115557 0.4430 +8874 120892 0.6420 +8874 128239 0.4380 +8874 143098 0.4180 +8874 147179 0.5990 +8874 171177 0.8020 +8874 255324 0.4990 +8874 399687 0.4710 +8875 8876 0.9320 +8875 9750 0.4300 +8875 10598 0.5070 +8875 23057 0.4050 +8875 23381 0.4780 +8875 23475 0.5160 +8875 26873 0.4570 +8875 51311 0.4860 +8875 53354 0.9280 +8875 55270 0.4750 +8875 56729 0.4300 +8875 60675 0.4040 +8875 64174 0.4080 +8875 64802 0.4050 +8875 64850 0.4150 +8875 64902 0.4150 +8875 79646 0.9070 +8875 80025 0.9060 +8875 85007 0.4200 +8875 285521 0.4190 +8875 349565 0.4050 +8876 9038 0.5180 +8876 9287 0.5390 +8876 9663 0.4290 +8876 23057 0.4050 +8876 23475 0.4940 +8876 26873 0.4660 +8876 50486 0.4820 +8876 53354 0.9280 +8876 55270 0.4750 +8876 58488 0.4480 +8876 64802 0.4140 +8876 64850 0.4160 +8876 64902 0.4240 +8876 79056 0.5740 +8876 79646 0.9150 +8876 80025 0.9180 +8876 84706 0.4090 +8876 85007 0.4170 +8876 134864 0.4490 +8876 319100 0.4060 +8876 338339 0.4950 +8876 349565 0.4050 +8877 8879 0.9930 +8877 9294 0.9560 +8877 9517 0.7780 +8877 9563 0.4090 +8877 9978 0.4370 +8877 10087 0.4990 +8877 10449 0.4410 +8877 10558 0.8150 +8877 10566 0.4890 +8877 10574 0.5350 +8877 10575 0.5060 +8877 10576 0.5060 +8877 10693 0.5060 +8877 10694 0.4990 +8877 11035 0.4060 +8877 11215 0.5170 +8877 11331 0.4440 +8877 22948 0.5060 +8877 26750 0.4610 +8877 27161 0.4330 +8877 29956 0.9620 +8877 51088 0.4140 +8877 51181 0.6180 +8877 51806 0.4760 +8877 53637 0.9350 +8877 54205 0.4420 +8877 55304 0.7780 +8877 55331 0.9650 +8877 55512 0.5130 +8877 55627 0.4280 +8877 55937 0.5540 +8877 56624 0.9780 +8877 56848 0.9370 +8877 63893 0.4070 +8877 64781 0.4530 +8877 79603 0.9610 +8877 80309 0.9080 +8877 81537 0.9780 +8877 83723 0.6990 +8877 91012 0.9620 +8877 91860 0.4780 +8877 92610 0.4350 +8877 123099 0.9450 +8877 124976 0.8340 +8877 125981 0.9680 +8877 130367 0.9750 +8877 163688 0.4720 +8877 166929 0.4840 +8877 204219 0.9500 +8877 253782 0.9660 +8877 259230 0.5220 +8877 339221 0.4510 +8877 340485 0.9680 +8877 388931 0.7180 +8877 440093 0.5240 +8877 440686 0.5240 +8877 653308 0.4060 +8877 653604 0.5240 +8878 8887 0.9420 +8878 8915 0.5650 +8878 8987 0.5480 +8878 8994 0.6150 +8878 9097 0.6390 +8878 9100 0.5560 +8878 9101 0.4730 +8878 9140 0.9810 +8878 9148 0.4660 +8878 9175 0.4160 +8878 9217 0.6600 +8878 9236 0.5350 +8878 9342 0.4830 +8878 9447 0.7170 +8878 9451 0.7260 +8878 9474 0.9910 +8878 9529 0.5810 +8878 9531 0.9460 +8878 9636 0.8420 +8878 9648 0.5290 +8878 9695 0.5500 +8878 9706 0.7580 +8878 9711 0.5000 +8878 9722 0.4240 +8878 9776 0.7510 +8878 9782 0.5510 +8878 9804 0.6000 +8878 9817 0.9990 +8878 9821 0.9140 +8878 9842 0.4410 +8878 9896 0.7550 +8878 9927 0.9410 +8878 9978 0.7860 +8878 10010 0.9220 +8878 10013 0.9790 +8878 10059 0.5920 +8878 10133 0.9940 +8878 10146 0.5130 +8878 10189 0.4140 +8878 10206 0.6070 +8878 10213 0.4180 +8878 10241 0.9810 +8878 10273 0.6330 +8878 10325 0.4320 +8878 10342 0.5760 +8878 10452 0.4810 +8878 10498 0.4040 +8878 10533 0.9380 +8878 10537 0.6900 +8878 10540 0.4760 +8878 10626 0.5770 +8878 10651 0.4110 +8878 10788 0.4160 +8878 10801 0.9090 +8878 10817 0.4990 +8878 10818 0.5150 +8878 10868 0.4360 +8878 10871 0.9810 +8878 10891 0.5080 +8878 10935 0.4050 +8878 10989 0.4340 +8878 11035 0.6190 +8878 11140 0.5810 +8878 11152 0.4440 +8878 11315 0.7370 +8878 11331 0.7330 +8878 11337 0.9990 +8878 11342 0.5730 +8878 11345 0.9990 +8878 22863 0.8220 +8878 22872 0.6060 +8878 22926 0.4710 +8878 22954 0.4970 +8878 23001 0.9920 +8878 23048 0.9010 +8878 23064 0.4780 +8878 23118 0.4560 +8878 23130 0.5450 +8878 23132 0.6190 +8878 23157 0.9040 +8878 23176 0.9000 +8878 23192 0.7830 +8878 23208 0.4390 +8878 23411 0.7070 +8878 23421 0.8120 +8878 23435 0.9500 +8878 23586 0.7450 +8878 23657 0.5000 +8878 23710 0.9990 +8878 23786 0.4330 +8878 25978 0.7780 +8878 26100 0.6890 +8878 26249 0.4010 +8878 26353 0.5410 +8878 26471 0.4280 +8878 27113 0.4470 +8878 27163 0.5530 +8878 27173 0.4030 +8878 27244 0.7260 +8878 27252 0.4470 +8878 27338 0.4880 +8878 27436 0.6170 +8878 29108 0.6200 +8878 29110 0.9950 +8878 29978 0.7940 +8878 29979 0.5150 +8878 29982 0.4510 +8878 30816 0.4160 +8878 30849 0.7930 +8878 51001 0.8000 +8878 51024 0.5390 +8878 51100 0.4560 +8878 51368 0.4370 +8878 51465 0.5020 +8878 51699 0.4370 +8878 53335 0.5260 +8878 53349 0.5560 +8878 54205 0.5180 +8878 54463 0.6610 +8878 54472 0.8400 +8878 54492 0.4660 +8878 54749 0.5470 +8878 54764 0.4080 +8878 54874 0.9090 +8878 54986 0.5260 +8878 55014 0.6160 +8878 55054 0.9730 +8878 55062 0.6940 +8878 55102 0.5740 +8878 55201 0.9740 +8878 55255 0.5710 +8878 55332 0.5380 +8878 55349 0.7810 +8878 55486 0.5220 +8878 55626 0.7470 +8878 55666 0.5140 +8878 55669 0.9420 +8878 55697 0.6670 +8878 55752 0.9020 +8878 55823 0.6210 +8878 55964 0.9000 +8878 56947 0.4350 +8878 56957 0.5770 +8878 57154 0.5380 +8878 57159 0.4500 +8878 57192 0.5260 +8878 57216 0.5790 +8878 57448 0.6120 +8878 57506 0.7530 +8878 57521 0.9390 +8878 57679 0.5110 +8878 57724 0.4590 +8878 57761 0.6640 +8878 60673 0.7150 +8878 64121 0.7050 +8878 64127 0.5080 +8878 64135 0.6290 +8878 64223 0.5020 +8878 64422 0.8040 +8878 64786 0.4560 +8878 65018 0.9790 +8878 79065 0.7460 +8878 79102 0.5250 +8878 79443 0.4620 +8878 79594 0.4170 +8878 79923 0.4010 +8878 80208 0.4320 +8878 80304 0.5560 +8878 81559 0.4020 +8878 81619 0.4680 +8878 81631 0.9990 +8878 81671 0.4390 +8878 83666 0.4850 +8878 83667 0.9530 +8878 83734 0.6960 +8878 84033 0.4570 +8878 84141 0.4730 +8878 84335 0.4940 +8878 84557 0.9990 +8878 84665 0.4450 +8878 84675 0.7920 +8878 84676 0.8600 +8878 84938 0.5770 +8878 84962 0.5180 +8878 84971 0.5690 +8878 85363 0.4970 +8878 89849 0.5340 +8878 94241 0.4680 +8878 112399 0.4030 +8878 114548 0.5930 +8878 114907 0.4410 +8878 115004 0.4170 +8878 115201 0.5670 +8878 115992 0.4050 +8878 116442 0.9660 +8878 120892 0.8110 +8878 124404 0.9000 +8878 124997 0.4310 +8878 128866 0.4530 +8878 135892 0.6710 +8878 136991 0.4510 +8878 137902 0.6110 +8878 139341 0.7550 +8878 140775 0.5990 +8878 140809 0.4500 +8878 151636 0.4870 +8878 152007 0.4450 +8878 165918 0.6160 +8878 167227 0.4990 +8878 171024 0.6120 +8878 192111 0.4750 +8878 197259 0.4220 +8878 200576 0.6030 +8878 200734 0.6410 +8878 203068 0.4030 +8878 203228 0.8200 +8878 253260 0.5970 +8878 285973 0.6090 +8878 345611 0.6910 +8878 400916 0.6150 +8878 440738 0.9660 +8878 441925 0.6150 +8878 643246 0.8010 +8878 644139 0.4030 +8878 728378 0.4930 +8879 9294 0.7380 +8879 9509 0.4240 +8879 9517 0.6860 +8879 10558 0.7050 +8879 10989 0.4940 +8879 10994 0.4200 +8879 23253 0.4250 +8879 23761 0.4960 +8879 23788 0.4320 +8879 28991 0.4370 +8879 29956 0.5880 +8879 29968 0.4080 +8879 53637 0.5190 +8879 55304 0.6550 +8879 55331 0.5120 +8879 55379 0.4530 +8879 55512 0.4110 +8879 56624 0.5090 +8879 56848 0.9930 +8879 57142 0.4350 +8879 64781 0.6760 +8879 64850 0.4390 +8879 64902 0.4200 +8879 79143 0.5260 +8879 79603 0.6950 +8879 81537 0.9890 +8879 83723 0.4260 +8879 85007 0.4200 +8879 91012 0.6770 +8879 123099 0.4560 +8879 124976 0.5840 +8879 125981 0.5230 +8879 130367 0.9870 +8879 140766 0.8360 +8879 166929 0.4550 +8879 204219 0.4850 +8879 253782 0.7210 +8879 259230 0.4580 +8879 286753 0.4460 +8879 338872 0.4180 +8879 340485 0.5380 +8879 388931 0.5490 +8880 8939 0.7560 +8880 9295 0.6390 +8880 9584 0.6600 +8880 9656 0.4670 +8880 9698 0.4780 +8880 9774 0.4330 +8880 9782 0.5900 +8880 9898 0.5310 +8880 9987 0.6260 +8880 10137 0.4200 +8880 10169 0.4460 +8880 10181 0.4270 +8880 10236 0.5600 +8880 10291 0.5350 +8880 10360 0.4400 +8880 10492 0.4880 +8880 10523 0.4560 +8880 10642 0.6070 +8880 10657 0.7840 +8880 10658 0.4470 +8880 10946 0.5060 +8880 10989 0.6910 +8880 11051 0.4040 +8880 11052 0.7540 +8880 11338 0.7430 +8880 22827 0.9990 +8880 23019 0.4510 +8880 23152 0.5480 +8880 23168 0.4040 +8880 23244 0.4610 +8880 23326 0.4200 +8880 23350 0.4600 +8880 23405 0.4110 +8880 23435 0.6780 +8880 23451 0.7230 +8880 23476 0.4620 +8880 25942 0.4080 +8880 25962 0.5670 +8880 26135 0.5550 +8880 27161 0.4650 +8880 27316 0.5800 +8880 51586 0.4240 +8880 51593 0.5730 +8880 51639 0.4070 +8880 51747 0.6450 +8880 54619 0.4390 +8880 54870 0.4030 +8880 55660 0.5400 +8880 56259 0.6450 +8880 56339 0.4150 +8880 57663 0.4160 +8880 58517 0.6250 +8880 64783 0.4630 +8880 79084 0.4060 +8880 80335 0.4010 +8880 84844 0.4300 +8880 84991 0.4640 +8880 93487 0.4140 +8880 140890 0.4880 +8881 8900 0.7020 +8881 9098 0.9870 +8881 9133 0.9390 +8881 9134 0.7140 +8881 9184 0.9710 +8881 9212 0.6490 +8881 9232 0.8060 +8881 9382 0.5490 +8881 9401 0.4200 +8881 9491 0.4190 +8881 9577 0.9020 +8881 9616 0.4030 +8881 9656 0.5720 +8881 9700 0.8730 +8881 9779 0.6060 +8881 9861 0.4200 +8881 9882 0.5880 +8881 10197 0.4600 +8881 10200 0.4180 +8881 10213 0.5190 +8881 10336 0.5430 +8881 10393 0.9990 +8881 10459 0.7160 +8881 10744 0.8200 +8881 10919 0.5170 +8881 11021 0.5420 +8881 11065 0.9920 +8881 11138 0.4930 +8881 11337 0.4720 +8881 11345 0.4840 +8881 23011 0.4430 +8881 23061 0.4400 +8881 23102 0.4480 +8881 23113 0.5770 +8881 23216 0.8470 +8881 23492 0.7210 +8881 23625 0.8450 +8881 23710 0.4730 +8881 23774 0.4300 +8881 25809 0.4480 +8881 25847 0.9990 +8881 25906 0.9980 +8881 26000 0.7750 +8881 26271 0.9840 +8881 27097 0.4260 +8881 27152 0.7190 +8881 27338 0.9910 +8881 29882 0.9990 +8881 29920 0.6180 +8881 29945 0.9990 +8881 51024 0.4270 +8881 51053 0.4100 +8881 51239 0.5690 +8881 51256 0.8970 +8881 51343 0.9990 +8881 51433 0.9990 +8881 51434 0.9990 +8881 51529 0.9990 +8881 51592 0.9940 +8881 51668 0.8860 +8881 51699 0.5040 +8881 54880 0.9210 +8881 54885 0.4760 +8881 55038 0.4790 +8881 55074 0.4110 +8881 55293 0.4310 +8881 55339 0.4090 +8881 55357 0.5260 +8881 55773 0.6480 +8881 55789 0.4690 +8881 55839 0.4030 +8881 57332 0.9000 +8881 57403 0.5840 +8881 57418 0.4260 +8881 57465 0.6770 +8881 57505 0.8430 +8881 57533 0.6420 +8881 57587 0.6040 +8881 64506 0.5420 +8881 64682 0.9990 +8881 64786 0.6810 +8881 65061 0.4870 +8881 65110 0.4890 +8881 79184 0.9050 +8881 79735 0.4860 +8881 79813 0.5230 +8881 79917 0.5400 +8881 80012 0.9020 +8881 80206 0.4630 +8881 81620 0.4630 +8881 81669 0.4240 +8881 81930 0.4420 +8881 83452 0.4280 +8881 83860 0.5930 +8881 83874 0.7890 +8881 84108 0.9010 +8881 84333 0.5400 +8881 84733 0.9000 +8881 84759 0.5400 +8881 85417 0.7490 +8881 93627 0.4510 +8881 115825 0.5470 +8881 119504 0.9990 +8881 125058 0.5090 +8881 128637 0.8760 +8881 135112 0.5750 +8881 140459 0.5690 +8881 140711 0.6080 +8881 150223 0.5660 +8881 161514 0.5060 +8881 166979 0.8650 +8881 221322 0.4410 +8881 246184 0.9990 +8881 344558 0.4140 +8881 375061 0.8450 +8882 9221 0.4510 +8882 9869 0.5270 +8882 10073 0.5980 +8882 10077 0.4280 +8882 10078 0.4510 +8882 10213 0.4870 +8882 10224 0.5930 +8882 10236 0.4760 +8882 10277 0.4810 +8882 10492 0.5950 +8882 10664 0.6970 +8882 10781 0.5590 +8882 10885 0.5940 +8882 11218 0.5480 +8882 23261 0.4670 +8882 23361 0.6690 +8882 23517 0.6990 +8882 23522 0.4890 +8882 25885 0.6130 +8882 25929 0.4620 +8882 25962 0.4240 +8882 26118 0.4010 +8882 26155 0.6190 +8882 27000 0.7070 +8882 27185 0.4140 +8882 27316 0.4590 +8882 28987 0.4220 +8882 50628 0.4260 +8882 51154 0.4090 +8882 51530 0.4070 +8882 51663 0.5570 +8882 51710 0.6690 +8882 51808 0.5310 +8882 53349 0.7660 +8882 54386 0.4150 +8882 54433 0.4550 +8882 54960 0.4290 +8882 55140 0.4190 +8882 55515 0.4490 +8882 55759 0.4150 +8882 55888 0.5210 +8882 64783 0.4250 +8882 79760 0.4260 +8882 79833 0.4150 +8882 79872 0.4530 +8882 80818 0.6690 +8882 84107 0.7330 +8882 84154 0.5620 +8882 84722 0.4370 +8882 84811 0.8980 +8882 84967 0.4650 +8882 115560 0.6690 +8882 116519 0.8590 +8882 139596 0.5790 +8882 148266 0.6690 +8882 161882 0.4250 +8882 162239 0.4710 +8882 220202 0.4560 +8882 254102 0.4610 +8882 284390 0.6690 +8883 8945 0.6820 +8883 9021 0.4990 +8883 9039 0.9990 +8883 9040 0.9990 +8883 9054 0.4350 +8883 9140 0.5660 +8883 9184 0.4470 +8883 9306 0.4990 +8883 9320 0.6010 +8883 9616 0.8570 +8883 9636 0.4450 +8883 9655 0.5110 +8883 9817 0.5960 +8883 9903 0.5370 +8883 9978 0.8730 +8883 10054 0.6500 +8883 10116 0.5220 +8883 10213 0.8090 +8883 10238 0.5170 +8883 10243 0.4650 +8883 10324 0.6820 +8883 10489 0.5040 +8883 10513 0.4780 +8883 10517 0.5560 +8883 10533 0.4380 +8883 10537 0.5110 +8883 10920 0.5180 +8883 10980 0.5080 +8883 10987 0.8390 +8883 11051 0.4650 +8883 11091 0.5220 +8883 11275 0.5530 +8883 11337 0.4290 +8883 11345 0.5050 +8883 23014 0.5470 +8883 23038 0.5140 +8883 23113 0.6470 +8883 23142 0.6500 +8883 23174 0.4490 +8883 23194 0.5180 +8883 23291 0.6590 +8883 23412 0.5060 +8883 23588 0.4360 +8883 23710 0.4870 +8883 25793 0.5840 +8883 25879 0.6350 +8883 25902 0.4440 +8883 26094 0.5070 +8883 26118 0.5140 +8883 26190 0.6040 +8883 26224 0.5840 +8883 26232 0.4990 +8883 26234 0.5070 +8883 26235 0.5310 +8883 26249 0.5960 +8883 26259 0.5890 +8883 26263 0.5960 +8883 26267 0.5130 +8883 26268 0.5170 +8883 26270 0.4990 +8883 26272 0.5250 +8883 27252 0.7030 +8883 27304 0.5610 +8883 27338 0.4570 +8883 28952 0.5010 +8883 28991 0.5010 +8883 29099 0.5090 +8883 50717 0.5440 +8883 51088 0.5280 +8883 51122 0.5510 +8883 51138 0.6280 +8883 51185 0.4210 +8883 51397 0.5240 +8883 51514 0.6520 +8883 51540 0.4230 +8883 51569 0.5310 +8883 51665 0.5160 +8883 51666 0.5140 +8883 51676 0.5140 +8883 51725 0.5220 +8883 53339 0.5550 +8883 54165 0.8640 +8883 54461 0.5440 +8883 54778 0.4010 +8883 54850 0.5180 +8883 54876 0.5090 +8883 54926 0.5230 +8883 54939 0.5360 +8883 54951 0.5440 +8883 55034 0.5220 +8883 55175 0.6200 +8883 55208 0.7020 +8883 55294 0.6460 +8883 55299 0.4760 +8883 55336 0.5180 +8883 55527 0.5170 +8883 55827 0.5550 +8883 55832 0.6490 +8883 55884 0.5180 +8883 55958 0.5820 +8883 56929 0.5300 +8883 56995 0.4990 +8883 57122 0.4680 +8883 57542 0.5330 +8883 64326 0.5120 +8883 64410 0.5060 +8883 64422 0.5920 +8883 65018 0.4210 +8883 79016 0.5820 +8883 79269 0.5340 +8883 79754 0.5140 +8883 79791 0.5010 +8883 79876 0.6750 +8883 80028 0.5230 +8883 80067 0.5070 +8883 80176 0.5030 +8883 80204 0.7230 +8883 80344 0.5260 +8883 81605 0.6160 +8883 81620 0.4800 +8883 84078 0.5150 +8883 84085 0.5050 +8883 84259 0.7720 +8883 84261 0.5560 +8883 84337 0.4230 +8883 84541 0.5040 +8883 84727 0.5030 +8883 84861 0.5570 +8883 84961 0.5320 +8883 89890 0.5220 +8883 90135 0.5130 +8883 90293 0.5380 +8883 90864 0.5030 +8883 92369 0.5030 +8883 92591 0.5140 +8883 93611 0.4990 +8883 114907 0.6460 +8883 115290 0.5050 +8883 118424 0.4890 +8883 122416 0.5140 +8883 122769 0.5960 +8883 122773 0.4380 +8883 123228 0.8660 +8883 123879 0.7080 +8883 126433 0.5050 +8883 127247 0.4990 +8883 136371 0.5140 +8883 140456 0.5140 +8883 140458 0.5140 +8883 140459 0.5660 +8883 140460 0.5140 +8883 140461 0.5160 +8883 140462 0.5940 +8883 140739 0.9760 +8883 140825 0.5130 +8883 142685 0.5140 +8883 142686 0.5140 +8883 142689 0.5140 +8883 144699 0.5180 +8883 146330 0.5180 +8883 149951 0.5040 +8883 150365 0.6770 +8883 150684 0.5060 +8883 150726 0.4990 +8883 154881 0.4990 +8883 170622 0.5080 +8883 200845 0.5170 +8883 201456 0.4990 +8883 222235 0.5180 +8883 283807 0.5180 +8883 285231 0.5050 +8883 286187 0.4020 +8883 387082 0.4910 +8883 390594 0.6920 +8883 401036 0.5140 +8884 9121 0.4190 +8884 9962 0.4670 +8884 9963 0.4930 +8884 10560 0.4690 +8884 51248 0.9690 +8884 58510 0.4340 +8884 60482 0.6550 +8884 80704 0.4430 +8884 115584 0.4340 +8884 116085 0.6310 +8884 125206 0.4110 +8884 200010 0.4310 +8886 9045 0.9130 +8886 9136 0.6090 +8886 9147 0.5020 +8886 9188 0.8440 +8886 9221 0.6360 +8886 9277 0.7150 +8886 9343 0.4500 +8886 9349 0.8910 +8886 9533 0.5800 +8886 9669 0.4180 +8886 9698 0.4280 +8886 9704 0.4130 +8886 9724 0.8990 +8886 9732 0.6630 +8886 9775 0.7800 +8886 9790 0.9960 +8886 9875 0.6250 +8886 9879 0.5600 +8886 9904 0.8760 +8886 9908 0.4660 +8886 9933 0.9770 +8886 9939 0.5410 +8886 10146 0.4820 +8886 10153 0.9580 +8886 10171 0.8820 +8886 10181 0.5990 +8886 10196 0.4570 +8886 10199 0.9880 +8886 10221 0.4500 +8886 10412 0.9940 +8886 10436 0.5200 +8886 10514 0.6620 +8886 10521 0.7350 +8886 10528 0.9020 +8886 10557 0.4630 +8886 10605 0.4570 +8886 10607 0.9270 +8886 10614 0.4390 +8886 10714 0.4500 +8886 10785 0.7160 +8886 10813 0.9230 +8886 10885 0.9070 +8886 10946 0.4670 +8886 10969 0.9900 +8886 10988 0.6140 +8886 11056 0.9170 +8886 11073 0.4170 +8886 11103 0.9920 +8886 11137 0.8650 +8886 11198 0.4090 +8886 11222 0.5140 +8886 11224 0.9400 +8886 22803 0.4210 +8886 22984 0.9290 +8886 23019 0.4180 +8886 23029 0.8610 +8886 23054 0.4440 +8886 23076 0.9680 +8886 23160 0.9230 +8886 23212 0.8140 +8886 23223 0.9010 +8886 23244 0.4300 +8886 23246 0.9990 +8886 23350 0.4410 +8886 23363 0.4980 +8886 23369 0.4760 +8886 23378 0.4340 +8886 23450 0.5020 +8886 23451 0.5980 +8886 23476 0.7090 +8886 23481 0.9970 +8886 23517 0.8460 +8886 23521 0.8260 +8886 23560 0.9970 +8886 24140 0.4780 +8886 24148 0.4410 +8886 25873 0.9550 +8886 25879 0.7780 +8886 25885 0.7340 +8886 25926 0.4150 +8886 25983 0.5390 +8886 26065 0.6020 +8886 26135 0.4120 +8886 26155 0.9960 +8886 26156 0.9990 +8886 26354 0.9840 +8886 26574 0.7730 +8886 26986 0.4630 +8886 27000 0.4350 +8886 27042 0.5980 +8886 27257 0.4510 +8886 27292 0.7480 +8886 27340 0.7490 +8886 28987 0.7720 +8886 29777 0.9630 +8886 29889 0.9750 +8886 29997 0.6150 +8886 30836 0.4430 +8886 51013 0.4330 +8886 51018 0.8430 +8886 51042 0.4440 +8886 51068 0.7290 +8886 51077 0.4670 +8886 51082 0.4920 +8886 51096 0.6810 +8886 51121 0.8190 +8886 51154 0.9960 +8886 51187 0.9880 +8886 51202 0.9010 +8886 51388 0.9930 +8886 51535 0.4800 +8886 51574 0.7710 +8886 51575 0.9770 +8886 51602 0.9930 +8886 51605 0.8290 +8886 51692 0.6310 +8886 54433 0.6260 +8886 54475 0.7650 +8886 54487 0.5170 +8886 54505 0.4130 +8886 54514 0.4250 +8886 54517 0.7270 +8886 54552 0.9760 +8886 54555 0.5640 +8886 54606 0.9500 +8886 54663 0.9940 +8886 54853 0.4980 +8886 54865 0.4110 +8886 54888 0.7170 +8886 54984 0.6170 +8886 55003 0.8040 +8886 55035 0.4240 +8886 55052 0.4780 +8886 55105 0.8420 +8886 55127 0.8920 +8886 55131 0.9620 +8886 55140 0.4650 +8886 55153 0.8540 +8886 55170 0.4380 +8886 55226 0.9260 +8886 55272 0.4650 +8886 55285 0.5530 +8886 55299 0.9970 +8886 55308 0.4440 +8886 55341 0.7620 +8886 55621 0.4810 +8886 55622 0.4710 +8886 55646 0.9240 +8886 55651 0.8350 +8886 55660 0.4850 +8886 55668 0.8440 +8886 55720 0.9510 +8886 55759 0.9970 +8886 55760 0.4900 +8886 55781 0.4480 +8886 55794 0.5830 +8886 55813 0.7610 +8886 56341 0.4370 +8886 56342 0.7510 +8886 56647 0.5640 +8886 56902 0.4960 +8886 56919 0.5600 +8886 56931 0.4480 +8886 56937 0.4240 +8886 57050 0.9730 +8886 57062 0.9790 +8886 57109 0.5280 +8886 57122 0.4090 +8886 57136 0.4860 +8886 57418 0.7950 +8886 57647 0.6520 +8886 57696 0.9460 +8886 60487 0.4260 +8886 60625 0.4710 +8886 63875 0.4460 +8886 64318 0.9850 +8886 64425 0.8420 +8886 64794 0.8600 +8886 64859 0.4580 +8886 64965 0.4990 +8886 64969 0.4210 +8886 65083 0.8390 +8886 65095 0.4480 +8886 79009 0.7100 +8886 79039 0.9000 +8886 79050 0.7560 +8886 79159 0.8700 +8886 79571 0.4440 +8886 79680 0.4720 +8886 79711 0.4210 +8886 79727 0.5170 +8886 79954 0.7850 +8886 80135 0.9890 +8886 80324 0.7140 +8886 81627 0.4910 +8886 83475 0.6990 +8886 83479 0.4740 +8886 83743 0.9670 +8886 84128 0.7800 +8886 84135 0.6890 +8886 84154 0.9920 +8886 84172 0.8580 +8886 84294 0.5490 +8886 84311 0.4870 +8886 84365 0.9990 +8886 84549 0.9940 +8886 84881 0.5470 +8886 84916 0.8610 +8886 84946 0.7070 +8886 87178 0.6300 +8886 88745 0.7830 +8886 90441 0.4050 +8886 90957 0.4200 +8886 92856 0.9820 +8886 113251 0.5160 +8886 115708 0.6310 +8886 116832 0.4940 +8886 117246 0.9960 +8886 128061 0.5580 +8886 142940 0.6120 +8886 149986 0.4590 +8886 161424 0.8110 +8886 165545 0.4190 +8886 170506 0.5100 +8886 200916 0.7900 +8886 221078 0.9780 +8886 221830 0.6280 +8886 254268 0.5300 +8886 285855 0.9370 +8886 317781 0.4680 +8886 339487 0.4220 +8886 345630 0.7490 +8886 387129 0.6700 +8886 387338 0.4030 +8886 692312 0.6780 +8886 728689 0.4540 +8886 100526842 0.7910 +8886 114483834 0.4080 +8887 9140 0.4390 +8887 9236 0.5650 +8887 9457 0.4200 +8887 9474 0.5010 +8887 9641 0.7960 +8887 9755 0.5950 +8887 9776 0.4900 +8887 9821 0.8170 +8887 9830 0.4070 +8887 9927 0.4100 +8887 10010 0.6210 +8887 10133 0.9620 +8887 10241 0.7410 +8887 10277 0.4100 +8887 10287 0.4140 +8887 10318 0.8710 +8887 10454 0.4480 +8887 10533 0.5290 +8887 10725 0.4120 +8887 10871 0.8080 +8887 10928 0.5460 +8887 11074 0.6240 +8887 11112 0.5700 +8887 11331 0.4480 +8887 11337 0.9890 +8887 11345 0.9850 +8887 22863 0.4500 +8887 22954 0.7370 +8887 23054 0.4330 +8887 23710 0.9870 +8887 23770 0.5220 +8887 23786 0.6430 +8887 26100 0.4880 +8887 26994 0.9970 +8887 27246 0.5230 +8887 27338 0.7230 +8887 29110 0.9310 +8887 30849 0.4260 +8887 30851 0.4990 +8887 51368 0.5210 +8887 53349 0.4450 +8887 54463 0.5750 +8887 54472 0.5240 +8887 54543 0.4050 +8887 54708 0.4050 +8887 54941 0.4180 +8887 54954 0.5870 +8887 55014 0.4360 +8887 55054 0.4840 +8887 55062 0.4330 +8887 55201 0.4090 +8887 55486 0.5120 +8887 55611 0.4950 +8887 55626 0.4830 +8887 55658 0.4520 +8887 55669 0.4580 +8887 55922 0.4340 +8887 56852 0.4570 +8887 56947 0.4180 +8887 56957 0.4750 +8887 57506 0.5840 +8887 60673 0.5150 +8887 63027 0.4420 +8887 64343 0.9650 +8887 64422 0.4430 +8887 64786 0.6760 +8887 65018 0.6150 +8887 79102 0.5090 +8887 79594 0.4130 +8887 79671 0.4170 +8887 79931 0.6590 +8887 81631 0.7540 +8887 83737 0.9430 +8887 84288 0.4450 +8887 84433 0.4900 +8887 84557 0.5230 +8887 90627 0.5210 +8887 91754 0.4250 +8887 91949 0.6240 +8887 136991 0.4640 +8887 139341 0.6160 +8887 147945 0.4050 +8887 221302 0.4250 +8887 221895 0.5040 +8887 387082 0.4630 +8887 440738 0.8580 +8888 9416 0.5850 +8888 9592 0.4200 +8888 9631 0.4570 +8888 9789 0.4260 +8888 9818 0.4290 +8888 9866 0.4340 +8888 9919 0.4760 +8888 9972 0.9830 +8888 9984 0.6050 +8888 10147 0.4220 +8888 10189 0.8540 +8888 10212 0.6490 +8888 10482 0.9530 +8888 10985 0.7290 +8888 11083 0.5270 +8888 22828 0.4010 +8888 23076 0.4150 +8888 23091 0.4250 +8888 23181 0.4460 +8888 23381 0.6410 +8888 23383 0.4010 +8888 23636 0.5420 +8888 23644 0.5130 +8888 26097 0.5900 +8888 29107 0.5140 +8888 51479 0.5010 +8888 53371 0.4050 +8888 54033 0.4480 +8888 54058 0.4380 +8888 54059 0.5420 +8888 54872 0.4630 +8888 55023 0.4360 +8888 55088 0.4310 +8888 55159 0.4410 +8888 55249 0.6600 +8888 55308 0.4330 +8888 55627 0.4930 +8888 55746 0.4820 +8888 55795 0.9990 +8888 55957 0.4010 +8888 56000 0.7270 +8888 56001 0.6760 +8888 56259 0.5930 +8888 56943 0.9990 +8888 57187 0.7100 +8888 57379 0.5780 +8888 57466 0.5400 +8888 57805 0.4930 +8888 84248 0.6410 +8888 84271 0.5840 +8888 84324 0.7060 +8888 128989 0.4190 +8888 129401 0.5700 +8888 201798 0.4600 +8888 348995 0.5020 +8888 728343 0.6760 +8888 729857 0.6120 +8888 729920 0.5770 +8888 100101267 0.4130 +8890 8891 0.9990 +8890 8892 0.9990 +8890 8893 0.9990 +8890 8894 0.9980 +8890 9129 0.5190 +8890 9277 0.4290 +8890 9343 0.4200 +8890 9451 0.5230 +8890 9512 0.4570 +8890 9669 0.6560 +8890 9784 0.5910 +8890 9798 0.5420 +8890 9904 0.4390 +8890 9913 0.5540 +8890 10101 0.4060 +8890 10209 0.6430 +8890 10289 0.5010 +8890 10469 0.4720 +8890 10480 0.4640 +8890 10607 0.4100 +8890 10713 0.4240 +8890 10946 0.6100 +8890 10969 0.4250 +8890 11011 0.4210 +8890 11128 0.4270 +8890 23596 0.7160 +8890 23660 0.4030 +8890 25904 0.4890 +8890 26155 0.4670 +8890 27102 0.5430 +8890 27335 0.4910 +8890 29925 0.5790 +8890 29926 0.6230 +8890 29959 0.5110 +8890 51077 0.4980 +8890 51081 0.5960 +8890 51096 0.4780 +8890 51386 0.4510 +8890 51406 0.4260 +8890 54606 0.5470 +8890 55294 0.5290 +8890 55308 0.4030 +8890 55341 0.4290 +8890 55781 0.4120 +8890 55929 0.4890 +8890 57062 0.4190 +8890 57696 0.4310 +8890 60558 0.4090 +8890 60678 0.5870 +8890 64080 0.4440 +8890 64419 0.4010 +8890 64838 0.5830 +8890 79009 0.5100 +8890 79089 0.5460 +8890 79882 0.4180 +8890 80153 0.5780 +8890 81607 0.6140 +8890 83607 0.5640 +8890 84172 0.5250 +8890 84950 0.4990 +8890 85406 0.4370 +8890 117246 0.4870 +8890 154141 0.4440 +8890 200634 0.4010 +8890 255308 0.8760 +8890 440275 0.7510 +8891 8892 0.9990 +8891 8893 0.9990 +8891 8894 0.9990 +8891 9136 0.4600 +8891 9669 0.4180 +8891 9798 0.5310 +8891 9827 0.5400 +8891 9844 0.5400 +8891 9898 0.4330 +8891 9945 0.5160 +8891 10056 0.5470 +8891 10102 0.5270 +8891 10199 0.4770 +8891 10209 0.4260 +8891 10332 0.4240 +8891 10480 0.4490 +8891 10488 0.4490 +8891 10542 0.5580 +8891 10994 0.4940 +8891 22955 0.4810 +8891 23358 0.7730 +8891 23483 0.8180 +8891 23560 0.4610 +8891 23596 0.7420 +8891 25827 0.4910 +8891 26061 0.5130 +8891 27102 0.4230 +8891 27430 0.5180 +8891 28956 0.5430 +8891 29090 0.5340 +8891 50814 0.5210 +8891 51005 0.4270 +8891 51073 0.4530 +8891 51204 0.4180 +8891 51605 0.4110 +8891 51611 0.4010 +8891 54187 0.5240 +8891 54606 0.4110 +8891 54971 0.4030 +8891 55004 0.5420 +8891 55173 0.4030 +8891 55239 0.4050 +8891 55255 0.5710 +8891 55276 0.5870 +8891 56052 0.4920 +8891 57589 0.5410 +8891 59269 0.6630 +8891 60678 0.4160 +8891 79587 0.4060 +8891 79654 0.5380 +8891 80146 0.5860 +8891 80270 0.5120 +8891 81607 0.6120 +8891 84154 0.5800 +8891 84961 0.4910 +8891 85365 0.4660 +8891 85442 0.5400 +8891 93517 0.5120 +8891 127253 0.4130 +8891 140775 0.5460 +8891 148327 0.4730 +8891 197258 0.4280 +8891 200008 0.7760 +8891 203228 0.5690 +8891 255308 0.8890 +8891 283209 0.5810 +8891 284098 0.4660 +8891 389541 0.5430 +8891 440138 0.4660 +8891 440275 0.6190 +8891 644974 0.4620 +8892 8893 0.9990 +8892 8894 0.9990 +8892 9197 0.4560 +8892 9451 0.5200 +8892 9570 0.4570 +8892 9669 0.4550 +8892 10209 0.5060 +8892 10289 0.4280 +8892 10478 0.5320 +8892 10480 0.4150 +8892 10972 0.6290 +8892 11128 0.4600 +8892 22984 0.4020 +8892 23521 0.4560 +8892 23596 0.7860 +8892 26130 0.5910 +8892 26515 0.4380 +8892 27102 0.6220 +8892 27335 0.4560 +8892 29115 0.6060 +8892 29925 0.5980 +8892 29926 0.5720 +8892 29960 0.4650 +8892 29979 0.4680 +8892 51018 0.4040 +8892 51263 0.4360 +8892 51386 0.4330 +8892 51530 0.4720 +8892 55703 0.4800 +8892 56259 0.6380 +8892 60678 0.5800 +8892 64080 0.4440 +8892 64979 0.4630 +8892 81607 0.6210 +8892 84079 0.5800 +8892 84285 0.4730 +8892 115992 0.4140 +8892 154141 0.4720 +8892 203228 0.6360 +8892 255308 0.8800 +8892 440275 0.7760 +8893 8894 0.9990 +8893 9451 0.6510 +8893 9575 0.4400 +8893 9669 0.5200 +8893 9798 0.4400 +8893 9945 0.5160 +8893 10209 0.6070 +8893 10425 0.4480 +8893 10480 0.6420 +8893 10994 0.5650 +8893 23483 0.8160 +8893 23596 0.7020 +8893 25820 0.8920 +8893 26061 0.5130 +8893 27102 0.5450 +8893 27430 0.5180 +8893 50814 0.5190 +8893 51005 0.4330 +8893 51386 0.4110 +8893 54187 0.5200 +8893 54888 0.6200 +8893 55276 0.5900 +8893 55324 0.5430 +8893 56052 0.4660 +8893 60678 0.4240 +8893 80146 0.5860 +8893 80270 0.5120 +8893 84154 0.4580 +8893 85365 0.4730 +8893 93517 0.5120 +8893 126637 0.4250 +8893 197258 0.4440 +8893 255308 0.8750 +8893 283209 0.5810 +8893 284098 0.4620 +8893 440138 0.4650 +8893 440275 0.8720 +8893 644974 0.4620 +8894 9045 0.7690 +8894 9086 0.9460 +8894 9097 0.4590 +8894 9255 0.5290 +8894 9349 0.6220 +8894 9451 0.6980 +8894 9669 0.8240 +8894 9689 0.4390 +8894 9732 0.5210 +8894 9798 0.5250 +8894 9858 0.5720 +8894 9939 0.4230 +8894 10056 0.4520 +8894 10146 0.4260 +8894 10209 0.9980 +8894 10213 0.5800 +8894 10236 0.4310 +8894 10289 0.9150 +8894 10399 0.9600 +8894 10480 0.9730 +8894 10492 0.5160 +8894 10527 0.4200 +8894 10528 0.6630 +8894 10557 0.5190 +8894 10574 0.4610 +8894 10575 0.5650 +8894 10576 0.5740 +8894 10605 0.4810 +8894 10658 0.5340 +8894 10694 0.5480 +8894 10969 0.4250 +8894 10985 0.6540 +8894 10988 0.5220 +8894 11224 0.6130 +8894 22809 0.6230 +8894 22913 0.9360 +8894 22948 0.4860 +8894 23204 0.5040 +8894 23476 0.5140 +8894 23521 0.6930 +8894 23645 0.6520 +8894 25871 0.4440 +8894 25873 0.5920 +8894 26135 0.4470 +8894 26986 0.4230 +8894 27000 0.4540 +8894 27102 0.8110 +8894 27335 0.9720 +8894 27339 0.6690 +8894 28969 0.6330 +8894 29925 0.6220 +8894 29926 0.6220 +8894 29978 0.4290 +8894 51065 0.9110 +8894 51073 0.5880 +8894 51081 0.6970 +8894 51116 0.6260 +8894 51121 0.6650 +8894 51149 0.8100 +8894 51154 0.4570 +8894 51319 0.8090 +8894 51386 0.9700 +8894 51602 0.4750 +8894 54496 0.8110 +8894 55173 0.8080 +8894 55272 0.8300 +8894 55316 0.7590 +8894 55599 0.4110 +8894 55601 0.5400 +8894 55651 0.6260 +8894 55854 0.4560 +8894 56647 0.4830 +8894 56977 0.4070 +8894 56993 0.4100 +8894 60678 0.8980 +8894 63931 0.6280 +8894 64210 0.4330 +8894 64425 0.5270 +8894 64960 0.7010 +8894 64963 0.6890 +8894 64969 0.8110 +8894 79568 0.4810 +8894 83939 0.9250 +8894 84154 0.5070 +8894 84365 0.4090 +8894 84919 0.6320 +8894 85377 0.4720 +8894 114987 0.5500 +8894 116832 0.6580 +8894 121441 0.4220 +8894 125972 0.4770 +8894 126402 0.6870 +8894 140032 0.8310 +8894 140801 0.5580 +8894 200916 0.5890 +8894 253314 0.4780 +8894 255308 0.9630 +8894 317649 0.4350 +8894 347487 0.7830 +8894 359948 0.4770 +8894 373863 0.7050 +8894 440275 0.8500 +8894 641776 0.4810 +8894 643909 0.4810 +8894 728524 0.4810 +8894 728689 0.9720 +8894 100287482 0.5720 +8894 100529239 0.8110 +8894 100996746 0.4810 +8894 105180390 0.4810 +8894 105180391 0.4810 +8895 9159 0.4290 +8895 10987 0.6160 +8895 11059 0.4490 +8895 22853 0.5220 +8895 23301 0.4960 +8895 23476 0.5160 +8895 23600 0.4320 +8895 27232 0.4350 +8895 29803 0.4300 +8895 51115 0.4470 +8895 54714 0.4210 +8895 60528 0.4360 +8895 85414 0.4240 +8895 157724 0.5180 +8895 221895 0.4880 +8896 9092 0.5790 +8896 9343 0.9990 +8896 9360 0.8650 +8896 9410 0.9980 +8896 9416 0.6580 +8896 9541 0.8050 +8896 9584 0.4280 +8896 9704 0.6630 +8896 9716 0.9980 +8896 9775 0.8420 +8896 9785 0.9950 +8896 9939 0.8710 +8896 9987 0.4090 +8896 10078 0.6170 +8896 10250 0.8230 +8896 10262 0.9320 +8896 10283 0.9870 +8896 10284 0.4100 +8896 10286 0.9980 +8896 10291 0.9360 +8896 10450 0.9970 +8896 10465 0.4740 +8896 10569 0.9960 +8896 10594 0.9990 +8896 10891 0.8250 +8896 10907 0.6390 +8896 10915 0.9020 +8896 10946 0.9840 +8896 10973 0.7940 +8896 10992 0.9940 +8896 11157 0.8320 +8896 11193 0.4910 +8896 11338 0.6740 +8896 22794 0.8000 +8896 22916 0.8090 +8896 22938 0.9990 +8896 22944 0.8090 +8896 23020 0.9950 +8896 23082 0.8260 +8896 23091 0.6190 +8896 23398 0.8470 +8896 23450 0.9370 +8896 23451 0.9560 +8896 23524 0.9980 +8896 23658 0.8410 +8896 23759 0.8680 +8896 24144 0.9720 +8896 24148 0.6580 +8896 25804 0.8310 +8896 25949 0.9990 +8896 26017 0.8200 +8896 27258 0.9020 +8896 27339 0.9990 +8896 28974 0.4420 +8896 29896 0.5300 +8896 51002 0.5550 +8896 51340 0.9990 +8896 51362 0.9990 +8896 51503 0.9990 +8896 51538 0.5450 +8896 51634 0.9340 +8896 51639 0.8670 +8896 51645 0.9980 +8896 51690 0.8350 +8896 51691 0.8400 +8896 51729 0.8050 +8896 51816 0.4510 +8896 54826 0.5200 +8896 54883 0.9960 +8896 54891 0.4110 +8896 55094 0.4830 +8896 55100 0.9460 +8896 55110 0.8590 +8896 55234 0.5560 +8896 55285 0.7680 +8896 55599 0.7680 +8896 55696 0.9990 +8896 55702 0.9960 +8896 55760 0.8020 +8896 56259 0.9650 +8896 56919 0.6670 +8896 56943 0.5240 +8896 56949 0.9990 +8896 57187 0.6400 +8896 57456 0.6280 +8896 57461 0.9960 +8896 57647 0.5400 +8896 57703 0.9990 +8896 57819 0.8670 +8896 58509 0.8900 +8896 59286 0.9040 +8896 60625 0.6720 +8896 79446 0.8750 +8896 79576 0.8010 +8896 79631 0.7040 +8896 79650 0.6560 +8896 79665 0.5320 +8896 79706 0.8310 +8896 79753 0.9340 +8896 80011 0.8010 +8896 80331 0.8430 +8896 81576 0.4250 +8896 83443 0.9940 +8896 83938 0.8130 +8896 84292 0.7040 +8896 84316 0.6580 +8896 84811 0.9810 +8896 84844 0.9950 +8896 84950 0.9230 +8896 84967 0.8520 +8896 85476 0.7220 +8896 85479 0.8430 +8896 90362 0.5170 +8896 91603 0.8480 +8896 126259 0.6550 +8896 143884 0.9700 +8896 147650 0.6550 +8896 151903 0.8410 +8896 153527 0.8810 +8896 154007 0.8220 +8896 163859 0.8940 +8896 164045 0.7930 +8896 165545 0.8020 +8896 199746 0.5210 +8896 220074 0.8130 +8896 220988 0.5790 +8896 222183 0.8740 +8896 100534599 0.9830 +8897 9108 0.4100 +8897 9110 0.9740 +8897 9896 0.9200 +8897 10046 0.4270 +8897 10423 0.9210 +8897 11340 0.4200 +8897 22876 0.9060 +8897 23016 0.4200 +8897 23236 0.6600 +8897 51013 0.4200 +8897 51196 0.6830 +8897 55300 0.6880 +8897 55361 0.6880 +8897 55529 0.9110 +8897 55626 0.4740 +8897 56902 0.4570 +8897 57521 0.4210 +8897 79837 0.7090 +8897 84164 0.4180 +8897 84812 0.6910 +8897 89869 0.6580 +8897 90809 0.9120 +8897 113026 0.6580 +8897 124997 0.4020 +8897 150280 0.5480 +8897 200576 0.9250 +8898 9019 0.6850 +8898 9516 0.6030 +8898 9639 0.4760 +8898 9896 0.9760 +8898 9927 0.4720 +8898 10046 0.4980 +8898 10397 0.5060 +8898 10423 0.9270 +8898 22876 0.9160 +8898 23095 0.4180 +8898 23236 0.6930 +8898 26353 0.4320 +8898 26499 0.6080 +8898 28952 0.5580 +8898 30849 0.5840 +8898 51196 0.6580 +8898 53349 0.4460 +8898 54332 0.7220 +8898 54545 0.9840 +8898 54893 0.9680 +8898 55300 0.6730 +8898 55361 0.6720 +8898 55526 0.4180 +8898 55529 0.9170 +8898 55697 0.4740 +8898 57716 0.7990 +8898 64419 0.5840 +8898 66036 0.4500 +8898 79628 0.7780 +8898 79837 0.7020 +8898 81846 0.9910 +8898 84812 0.6580 +8898 89869 0.6580 +8898 90678 0.6270 +8898 90809 0.9130 +8898 113026 0.6580 +8898 114971 0.4070 +8898 121512 0.7090 +8898 200576 0.9590 +8898 221823 0.4190 +8899 9092 0.9480 +8899 9128 0.9590 +8899 9129 0.9000 +8899 9295 0.7020 +8899 9343 0.9560 +8899 9406 0.6280 +8899 9410 0.9200 +8899 9416 0.9370 +8899 9584 0.9030 +8899 9736 0.4090 +8899 9774 0.5870 +8899 9775 0.6520 +8899 9877 0.6020 +8899 9879 0.5340 +8899 9967 0.4570 +8899 9984 0.4650 +8899 10084 0.4420 +8899 10179 0.5370 +8899 10181 0.8590 +8899 10189 0.8390 +8899 10250 0.8930 +8899 10262 0.8260 +8899 10284 0.6460 +8899 10285 0.4420 +8899 10286 0.4270 +8899 10291 0.4370 +8899 10521 0.4160 +8899 10569 0.4130 +8899 10594 0.9570 +8899 10713 0.9300 +8899 10772 0.4840 +8899 10907 0.8390 +8899 10915 0.9270 +8899 10921 0.6310 +8899 10946 0.8190 +8899 10949 0.4150 +8899 10992 0.8560 +8899 11017 0.8320 +8899 11051 0.4720 +8899 11052 0.5020 +8899 11157 0.8940 +8899 11193 0.6860 +8899 22826 0.5630 +8899 22916 0.4220 +8899 22938 0.4910 +8899 22985 0.6840 +8899 23020 0.9400 +8899 23029 0.4220 +8899 23091 0.4370 +8899 23137 0.5710 +8899 23223 0.4550 +8899 23350 0.7390 +8899 23360 0.4220 +8899 23435 0.4950 +8899 23450 0.8750 +8899 23451 0.9300 +8899 23517 0.8230 +8899 23524 0.9090 +8899 23658 0.8370 +8899 24148 0.9730 +8899 25804 0.8920 +8899 25957 0.6900 +8899 26121 0.9650 +8899 26576 0.5250 +8899 27258 0.8280 +8899 27336 0.6960 +8899 29072 0.5450 +8899 29117 0.4070 +8899 29896 0.4590 +8899 51340 0.5190 +8899 51362 0.8530 +8899 51366 0.4810 +8899 51593 0.8910 +8899 51621 0.6470 +8899 51631 0.4580 +8899 51634 0.4050 +8899 51690 0.8350 +8899 51691 0.8650 +8899 51729 0.4310 +8899 51747 0.8600 +8899 55015 0.6390 +8899 55119 0.6200 +8899 55234 0.9120 +8899 55660 0.8830 +8899 55692 0.4830 +8899 55749 0.7630 +8899 57187 0.4620 +8899 57794 0.5210 +8899 57819 0.8200 +8899 58517 0.9500 +8899 59286 0.4370 +8899 65117 0.4420 +8899 79171 0.8790 +8899 79753 0.5630 +8899 79869 0.4040 +8899 83443 0.8370 +8899 84811 0.4440 +8899 84844 0.8280 +8899 84950 0.7640 +8899 94104 0.4680 +8899 124245 0.6270 +8899 140890 0.5930 +8899 153527 0.7140 +8899 196441 0.4160 +8899 221749 0.4710 +8899 256536 0.4050 +8900 8924 0.5030 +8900 8945 0.6230 +8900 8970 0.6200 +8900 9025 0.6070 +8900 9039 0.4080 +8900 9088 0.6780 +8900 9099 0.4120 +8900 9113 0.5260 +8900 9133 0.7390 +8900 9134 0.8210 +8900 9156 0.6280 +8900 9184 0.7360 +8900 9212 0.7080 +8900 9232 0.6950 +8900 9493 0.4860 +8900 9510 0.4250 +8900 9577 0.5580 +8900 9656 0.6660 +8900 9662 0.4720 +8900 9700 0.6970 +8900 9738 0.5490 +8900 9768 0.4010 +8900 9787 0.6270 +8900 9861 0.4530 +8900 9978 0.5720 +8900 10018 0.4140 +8900 10111 0.5130 +8900 10112 0.4050 +8900 10197 0.4330 +8900 10213 0.6470 +8900 10309 0.6960 +8900 10393 0.7050 +8900 10403 0.5040 +8900 10413 0.4200 +8900 10419 0.4690 +8900 10519 0.5080 +8900 10524 0.6270 +8900 10615 0.5870 +8900 10733 0.6410 +8900 10744 0.7120 +8900 10769 0.5900 +8900 10926 0.4370 +8900 10983 0.4570 +8900 11065 0.9380 +8900 11073 0.6320 +8900 11189 0.4010 +8900 11200 0.6930 +8900 22933 0.4480 +8900 22943 0.4890 +8900 23594 0.5990 +8900 23595 0.5570 +8900 23650 0.4350 +8900 25906 0.5980 +8900 25939 0.4040 +8900 26271 0.7630 +8900 26277 0.4310 +8900 27152 0.4260 +8900 27338 0.7010 +8900 29086 0.4990 +8900 29882 0.5660 +8900 29945 0.5430 +8900 29946 0.4930 +8900 29950 0.6990 +8900 29979 0.5160 +8900 49855 0.8330 +8900 50484 0.4270 +8900 50613 0.5640 +8900 51053 0.5800 +8900 51343 0.9670 +8900 51433 0.6310 +8900 51434 0.5760 +8900 51514 0.4930 +8900 51529 0.6460 +8900 51550 0.4570 +8900 51588 0.5860 +8900 51720 0.6000 +8900 51750 0.4610 +8900 51755 0.5300 +8900 54145 0.6200 +8900 54205 0.5800 +8900 54386 0.4350 +8900 55038 0.5500 +8900 55143 0.6510 +8900 55255 0.5040 +8900 55388 0.6000 +8900 55505 0.4160 +8900 55651 0.4160 +8900 55832 0.4650 +8900 55835 0.5100 +8900 55957 0.5780 +8900 57060 0.5090 +8900 57634 0.5590 +8900 57695 0.6840 +8900 63967 0.5340 +8900 64100 0.5270 +8900 64101 0.4960 +8900 64682 0.6450 +8900 65061 0.4740 +8900 79184 0.5360 +8900 79733 0.4610 +8900 79870 0.4790 +8900 79935 0.7650 +8900 79991 0.6480 +8900 80198 0.4290 +8900 81620 0.9610 +8900 81669 0.9500 +8900 83540 0.4290 +8900 84126 0.4970 +8900 84142 0.5210 +8900 84260 0.5410 +8900 84515 0.6240 +8900 84930 0.7370 +8900 85236 0.6200 +8900 85417 0.5770 +8900 90381 0.5140 +8900 91750 0.6000 +8900 91768 0.6840 +8900 119504 0.5850 +8900 126520 0.5200 +8900 128312 0.6200 +8900 132660 0.5880 +8900 133482 0.4550 +8900 137902 0.5910 +8900 144455 0.4930 +8900 147011 0.6020 +8900 151648 0.5100 +8900 163786 0.5670 +8900 165918 0.6060 +8900 166979 0.6390 +8900 246184 0.5730 +8900 255626 0.7190 +8900 259266 0.4680 +8900 286151 0.6470 +8900 286826 0.5970 +8900 388324 0.8890 +8900 440093 0.6460 +8900 440686 0.6510 +8900 653604 0.6510 +8900 728642 0.4130 +8904 8906 0.5190 +8904 9026 0.4010 +8904 9632 0.4440 +8904 9968 0.4340 +8904 10987 0.4160 +8904 23075 0.4550 +8904 26574 0.5110 +8904 51614 0.4940 +8904 54863 0.5150 +8904 54976 0.5410 +8904 55845 0.4430 +8904 57175 0.4150 +8904 57608 0.4420 +8904 64236 0.4150 +8904 83440 0.4590 +8904 85021 0.5700 +8904 126298 0.5350 +8905 8906 0.9990 +8905 8907 0.9990 +8905 8943 0.7290 +8905 9026 0.5250 +8905 9087 0.4360 +8905 9179 0.8910 +8905 9685 0.8610 +8905 9698 0.5760 +8905 9829 0.5890 +8905 9907 0.7390 +8905 10053 0.9970 +8905 10239 0.7400 +8905 10479 0.4590 +8905 10618 0.5820 +8905 10717 0.8730 +8905 10947 0.7760 +8905 11154 0.7460 +8905 11238 0.4770 +8905 11276 0.9430 +8905 22905 0.5860 +8905 23431 0.8650 +8905 23557 0.5030 +8905 25977 0.5880 +8905 26052 0.5290 +8905 26258 0.5100 +8905 26985 0.6920 +8905 27131 0.5620 +8905 29924 0.5710 +8905 51429 0.5000 +8905 54497 0.6700 +8905 54885 0.5140 +8905 55040 0.5900 +8905 55317 0.7810 +8905 55330 0.4990 +8905 55435 0.6020 +8905 55707 0.5440 +8905 55745 0.8640 +8905 55841 0.4510 +8905 56479 0.5490 +8905 57590 0.6460 +8905 57704 0.4180 +8905 58513 0.5810 +8905 79719 0.6290 +8905 80115 0.5400 +8905 81567 0.5010 +8905 83988 0.5480 +8905 84062 0.4990 +8905 84251 0.7570 +8905 84314 0.5810 +8905 84437 0.4930 +8905 84679 0.4200 +8905 91056 0.7270 +8905 94056 0.4020 +8905 115825 0.5120 +8905 122616 0.5400 +8905 124045 0.4220 +8905 130340 0.9020 +8905 134829 0.5210 +8905 140462 0.4060 +8905 150350 0.5710 +8905 157807 0.5210 +8905 158747 0.4530 +8905 221421 0.4410 +8905 286451 0.5710 +8905 388552 0.4990 +8905 440193 0.5240 +8905 645864 0.4520 +8906 8907 0.9900 +8906 8943 0.6250 +8906 9135 0.5650 +8906 9146 0.8730 +8906 9179 0.8720 +8906 9238 0.5400 +8906 9685 0.6210 +8906 9907 0.6540 +8906 10053 0.9930 +8906 10239 0.7830 +8906 10717 0.8930 +8906 10947 0.7920 +8906 11154 0.8190 +8906 11198 0.6400 +8906 11276 0.9620 +8906 22905 0.6840 +8906 23163 0.5510 +8906 23339 0.4510 +8906 23431 0.5750 +8906 25938 0.4230 +8906 25977 0.5860 +8906 26088 0.4270 +8906 26985 0.7600 +8906 27243 0.8190 +8906 29924 0.6870 +8906 54497 0.4430 +8906 55040 0.6890 +8906 55317 0.6820 +8906 55707 0.6700 +8906 55745 0.7710 +8906 55823 0.4230 +8906 56479 0.5400 +8906 57617 0.4320 +8906 58513 0.6190 +8906 64083 0.7890 +8906 79719 0.6360 +8906 80115 0.5470 +8906 83988 0.5400 +8906 84251 0.5920 +8906 84955 0.6190 +8906 91056 0.6420 +8906 122616 0.5420 +8906 130340 0.9820 +8906 150350 0.6840 +8906 170680 0.4500 +8906 200081 0.4050 +8906 221421 0.4530 +8906 348110 0.4070 +8906 100526783 0.6040 +8907 8943 0.8770 +8907 9026 0.5720 +8907 9179 0.6080 +8907 9238 0.5010 +8907 9482 0.5070 +8907 9685 0.7200 +8907 9698 0.5520 +8907 9829 0.6630 +8907 9907 0.5610 +8907 10053 0.9670 +8907 10139 0.4560 +8907 10239 0.7880 +8907 10490 0.4870 +8907 10535 0.5030 +8907 10614 0.4150 +8907 10618 0.9090 +8907 10717 0.8510 +8907 10807 0.4240 +8907 10900 0.4680 +8907 10947 0.6750 +8907 11154 0.8060 +8907 11198 0.4380 +8907 11276 0.6610 +8907 22905 0.6270 +8907 23062 0.5370 +8907 23163 0.7250 +8907 23214 0.4430 +8907 23339 0.4540 +8907 23431 0.8150 +8907 23557 0.5200 +8907 23641 0.4240 +8907 25977 0.6540 +8907 26052 0.5680 +8907 26088 0.7700 +8907 26258 0.5040 +8907 26504 0.4890 +8907 26985 0.7020 +8907 27131 0.6210 +8907 28960 0.4510 +8907 29911 0.4230 +8907 29924 0.6750 +8907 51429 0.5080 +8907 54885 0.5170 +8907 55040 0.6270 +8907 55317 0.7000 +8907 55327 0.5140 +8907 55330 0.5090 +8907 55707 0.6110 +8907 55745 0.6490 +8907 55821 0.4300 +8907 56479 0.5490 +8907 57510 0.4380 +8907 57574 0.6800 +8907 57704 0.4570 +8907 58513 0.6350 +8907 79065 0.6250 +8907 79621 0.4830 +8907 80115 0.5400 +8907 81492 0.4220 +8907 81567 0.5010 +8907 83988 0.5900 +8907 84062 0.4990 +8907 84251 0.5620 +8907 91056 0.5570 +8907 92979 0.6590 +8907 122616 0.5400 +8907 124045 0.4220 +8907 130340 0.9970 +8907 134829 0.5060 +8907 150350 0.5630 +8907 157807 0.5060 +8907 286451 0.5170 +8907 345895 0.4220 +8907 353116 0.4600 +8907 388552 0.5190 +8907 441061 0.7740 +8907 100526783 0.4420 +8908 8987 0.8450 +8908 10459 0.5850 +8908 22829 0.4150 +8908 25878 0.4450 +8908 27328 0.4570 +8908 50852 0.5890 +8908 55344 0.4980 +8908 55787 0.5290 +8908 56052 0.4760 +8908 57502 0.5300 +8908 64061 0.4410 +8908 81786 0.9620 +8908 83259 0.4300 +8908 89801 0.5050 +8908 90665 0.4200 +8908 114928 0.4450 +8908 124602 0.4260 +8908 127700 0.5970 +8908 207063 0.4160 +8908 378884 0.6940 +8908 440138 0.6320 +8909 9191 0.4390 +8909 9338 0.5820 +8909 10044 0.4330 +8909 10045 0.4790 +8909 10204 0.5930 +8909 23593 0.6410 +8909 25891 0.4070 +8909 27010 0.5400 +8909 29124 0.7100 +8909 64135 0.4220 +8910 9077 0.4480 +8910 9757 0.4220 +8910 10382 0.4790 +8910 10458 0.4220 +8910 10904 0.4140 +8910 23089 0.9520 +8910 23619 0.4470 +8910 25792 0.6060 +8910 25953 0.6010 +8910 26958 0.5360 +8910 51666 0.5860 +8910 54212 0.8180 +8910 54221 0.8040 +8910 54551 0.4100 +8910 55145 0.8520 +8910 55607 0.6260 +8910 57722 0.4480 +8910 63982 0.6460 +8910 64921 0.5400 +8910 79734 0.5950 +8910 79783 0.5570 +8910 83943 0.5140 +8910 84631 0.5480 +8910 112476 0.5920 +8910 112970 0.6730 +8910 114798 0.7260 +8910 136647 0.5840 +8910 137868 0.9300 +8910 255239 0.4950 +8910 266812 0.5590 +8910 284119 0.4380 +8910 388015 0.4360 +8911 8912 0.9790 +8911 8913 0.9630 +8911 9254 0.5790 +8911 10021 0.4780 +8911 10125 0.6650 +8911 10235 0.6660 +8911 10368 0.5130 +8911 10369 0.4740 +8911 11280 0.6770 +8911 25780 0.6500 +8911 25858 0.5330 +8911 27092 0.4430 +8911 30818 0.5880 +8911 51806 0.9380 +8911 54795 0.6160 +8911 55799 0.5290 +8911 55800 0.6190 +8911 57657 0.4220 +8911 57685 0.5890 +8911 57828 0.6010 +8911 59283 0.4780 +8911 59284 0.5120 +8911 79820 0.5610 +8911 84105 0.6390 +8911 91860 0.9360 +8911 93589 0.5470 +8911 115727 0.6520 +8911 117144 0.6990 +8911 117155 0.6700 +8911 163688 0.9360 +8911 246329 0.4330 +8911 257044 0.4960 +8911 257062 0.5350 +8911 285588 0.5650 +8911 340533 0.4110 +8911 347732 0.7400 +8911 780776 0.4400 +8911 100130348 0.5560 +8912 8913 0.9440 +8912 8989 0.4800 +8912 9254 0.8200 +8912 10021 0.6160 +8912 10125 0.6500 +8912 10235 0.6520 +8912 10368 0.8180 +8912 10369 0.8010 +8912 10399 0.4320 +8912 11280 0.6930 +8912 24145 0.4630 +8912 25780 0.6830 +8912 25858 0.7960 +8912 26047 0.4900 +8912 27092 0.8290 +8912 30818 0.4030 +8912 51806 0.9430 +8912 54331 0.7630 +8912 54795 0.6770 +8912 55799 0.8220 +8912 55800 0.7210 +8912 57582 0.4530 +8912 57626 0.5950 +8912 57657 0.4840 +8912 57685 0.6680 +8912 57828 0.8390 +8912 59283 0.7910 +8912 59284 0.7980 +8912 59285 0.7540 +8912 59341 0.4170 +8912 79798 0.5150 +8912 79820 0.8280 +8912 84033 0.4720 +8912 91860 0.9410 +8912 93589 0.8280 +8912 93664 0.4610 +8912 115727 0.6500 +8912 117144 0.8140 +8912 117155 0.8000 +8912 163688 0.9400 +8912 246329 0.7690 +8912 257044 0.7860 +8912 257062 0.8230 +8912 285588 0.8040 +8912 340393 0.7200 +8912 347732 0.8240 +8912 378807 0.7310 +8912 100130348 0.8060 +8913 9254 0.8770 +8913 10021 0.6820 +8913 10125 0.6500 +8913 10235 0.6510 +8913 10368 0.6970 +8913 10369 0.6740 +8913 11280 0.6810 +8913 25780 0.6500 +8913 25858 0.6570 +8913 27092 0.8190 +8913 27255 0.4380 +8913 27295 0.4050 +8913 30818 0.5840 +8913 30819 0.4040 +8913 51806 0.9790 +8913 54331 0.7540 +8913 54795 0.6760 +8913 55799 0.7440 +8913 55800 0.6770 +8913 57158 0.4920 +8913 57657 0.4490 +8913 57685 0.6810 +8913 57828 0.7110 +8913 57829 0.6570 +8913 59283 0.6690 +8913 59284 0.7890 +8913 59285 0.5400 +8913 79820 0.6850 +8913 84033 0.4040 +8913 90550 0.4220 +8913 91860 0.9790 +8913 93589 0.7040 +8913 115727 0.6510 +8913 117144 0.6910 +8913 117155 0.6650 +8913 140803 0.4520 +8913 144321 0.4080 +8913 163688 0.9790 +8913 246329 0.5970 +8913 257044 0.6030 +8913 257062 0.6650 +8913 285588 0.6730 +8913 340393 0.5400 +8913 347732 0.7100 +8913 378807 0.5520 +8913 100130348 0.6810 +8914 9088 0.4150 +8914 9126 0.5620 +8914 9133 0.4130 +8914 9156 0.7400 +8914 9212 0.5330 +8914 9282 0.5300 +8914 9400 0.6770 +8914 9401 0.8570 +8914 9572 0.8000 +8914 9575 0.9540 +8914 9656 0.4710 +8914 9700 0.6270 +8914 9735 0.5660 +8914 9768 0.4390 +8914 9780 0.8530 +8914 9833 0.5080 +8914 9837 0.9740 +8914 9918 0.5130 +8914 9975 0.7510 +8914 9978 0.8130 +8914 10036 0.5440 +8914 10051 0.4460 +8914 10112 0.4030 +8914 10155 0.4130 +8914 10293 0.4090 +8914 10535 0.5590 +8914 10592 0.4520 +8914 10615 0.4090 +8914 10714 0.4040 +8914 10721 0.4570 +8914 10926 0.6860 +8914 10963 0.4910 +8914 11004 0.4460 +8914 11073 0.8460 +8914 11169 0.9990 +8914 11198 0.4150 +8914 11200 0.7070 +8914 22976 0.4340 +8914 23049 0.4900 +8914 23137 0.6260 +8914 23264 0.4840 +8914 23271 0.4500 +8914 23303 0.4490 +8914 23331 0.4740 +8914 23411 0.5590 +8914 23649 0.6440 +8914 26224 0.4880 +8914 29066 0.4860 +8914 29980 0.5310 +8914 50485 0.5760 +8914 51514 0.4200 +8914 51659 0.9770 +8914 51750 0.5550 +8914 54107 0.4640 +8914 54892 0.4860 +8914 54921 0.7510 +8914 54962 0.9990 +8914 54970 0.4740 +8914 55159 0.4890 +8914 55215 0.8300 +8914 55388 0.9390 +8914 55536 0.4960 +8914 55746 0.4330 +8914 56852 0.5110 +8914 56924 0.4010 +8914 56938 0.7470 +8914 57697 0.6770 +8914 63895 0.8520 +8914 63922 0.7860 +8914 63967 0.9990 +8914 64151 0.4090 +8914 64785 0.9910 +8914 79075 0.6810 +8914 79365 0.7440 +8914 79677 0.5090 +8914 79915 0.7430 +8914 80119 0.7640 +8914 80174 0.4900 +8914 80198 0.6500 +8914 81620 0.7530 +8914 83990 0.5930 +8914 84126 0.7600 +8914 84250 0.5020 +8914 84296 0.9920 +8914 84515 0.7480 +8914 84893 0.6510 +8914 92797 0.5780 +8914 113130 0.5510 +8914 114799 0.4140 +8914 116028 0.4210 +8914 116211 0.6210 +8914 116447 0.5350 +8914 122769 0.8910 +8914 144715 0.4520 +8914 157570 0.4670 +8914 157777 0.6890 +8914 201973 0.9960 +8914 254065 0.4030 +8914 254394 0.9010 +8914 642636 0.4190 +8914 102800317 0.6270 +8915 8945 0.5930 +8915 9447 0.6020 +8915 9474 0.4420 +8915 9641 0.6590 +8915 10010 0.4450 +8915 10318 0.5000 +8915 10392 0.6280 +8915 10451 0.4600 +8915 10454 0.5810 +8915 10498 0.4800 +8915 10616 0.7880 +8915 10673 0.4130 +8915 10892 0.9990 +8915 23085 0.4220 +8915 23118 0.8020 +8915 23576 0.4990 +8915 23586 0.8990 +8915 26253 0.6510 +8915 27429 0.4230 +8915 29108 0.5430 +8915 29110 0.5230 +8915 29775 0.9990 +8915 51255 0.9020 +8915 55072 0.5840 +8915 57506 0.6110 +8915 58484 0.4910 +8915 64127 0.6290 +8915 64135 0.5780 +8915 64170 0.9990 +8915 64581 0.8160 +8915 79092 0.9880 +8915 80013 0.6320 +8915 80149 0.4170 +8915 81858 0.7190 +8915 84270 0.6940 +8915 84433 0.9990 +8915 84674 0.5940 +8915 90268 0.4630 +8915 93978 0.6780 +8915 115650 0.4020 +8915 142678 0.9380 +8915 338339 0.5170 +8915 102723407 0.5070 +8916 8924 0.4240 +8916 9246 0.4670 +8916 9354 0.4810 +8916 10144 0.5780 +8916 10346 0.4040 +8916 10904 0.5200 +8916 23327 0.4110 +8916 26958 0.4700 +8916 29089 0.4490 +8916 29978 0.7640 +8916 29979 0.8530 +8916 51302 0.4650 +8916 51666 0.4580 +8916 54108 0.5160 +8916 55008 0.4340 +8916 55521 0.4260 +8916 55763 0.4350 +8916 57630 0.4820 +8916 64921 0.4130 +8916 79754 0.4510 +8916 83887 0.4650 +8916 84992 0.4640 +8916 85363 0.4080 +8916 266812 0.6690 +8916 390616 0.4010 +8916 100101490 0.4470 +8916 100996939 0.4080 +8924 8925 0.6010 +8924 8970 0.5340 +8924 9025 0.9520 +8924 9648 0.4090 +8924 9656 0.6960 +8924 9682 0.5250 +8924 9775 0.4150 +8924 9859 0.6230 +8924 9972 0.4050 +8924 10075 0.5500 +8924 10111 0.5100 +8924 10480 0.5530 +8924 10524 0.5210 +8924 10534 0.4530 +8924 10600 0.7630 +8924 10868 0.8100 +8924 11196 0.5200 +8924 11200 0.5740 +8924 22976 0.5230 +8924 23030 0.5070 +8924 23032 0.4450 +8924 23299 0.4390 +8924 23352 0.6190 +8924 23380 0.5520 +8924 26234 0.7240 +8924 26586 0.4680 +8924 27335 0.5950 +8924 51386 0.6010 +8924 51538 0.4840 +8924 51588 0.8610 +8924 51720 0.6200 +8924 54145 0.5340 +8924 54764 0.4200 +8924 54881 0.5210 +8924 55183 0.5230 +8924 55226 0.4170 +8924 55521 0.4610 +8924 55619 0.9010 +8924 55791 0.4290 +8924 57448 0.6110 +8924 57558 0.9000 +8924 63967 0.5300 +8924 64421 0.5050 +8924 64795 0.4290 +8924 84142 0.5590 +8924 84461 0.9370 +8924 84654 0.5820 +8924 85236 0.5340 +8924 128312 0.5340 +8924 133396 0.4540 +8924 134492 0.6870 +8924 165918 0.7230 +8924 255626 0.5340 +8925 9728 0.4210 +8925 9736 0.5270 +8925 23077 0.6710 +8925 27136 0.4300 +8925 57448 0.5280 +8925 84162 0.6560 +8926 23742 0.6470 +8926 54551 0.6020 +8926 138311 0.4040 +8927 9381 0.6370 +8927 9474 0.7820 +8927 9751 0.7130 +8927 10497 0.4170 +8927 10815 0.4280 +8927 22999 0.6590 +8927 23025 0.6270 +8927 25957 0.4660 +8927 26052 0.4790 +8927 26059 0.7570 +8927 27445 0.9040 +8927 50944 0.5230 +8927 55638 0.8430 +8927 57030 0.5240 +8927 57468 0.4140 +8927 80331 0.5290 +8927 92691 0.4910 +8927 140679 0.4320 +8927 152006 0.4320 +8927 246213 0.5410 +8928 9464 0.6340 +8928 9569 0.5350 +8928 9972 0.4810 +8928 10413 0.5340 +8928 10468 0.4390 +8928 10538 0.4160 +8928 10589 0.9940 +8928 10637 0.5710 +8928 10763 0.4320 +8928 10865 0.5130 +8928 10922 0.4180 +8928 50626 0.4470 +8928 51592 0.5960 +8928 55997 0.7080 +8928 60528 0.6510 +8928 64321 0.4290 +8928 78987 0.4250 +8928 79072 0.4190 +8928 79675 0.4920 +8928 79923 0.8730 +8928 83881 0.9280 +8928 84976 0.5100 +8928 84988 0.4020 +8928 130399 0.4200 +8928 145258 0.6720 +8928 199699 0.4390 +8928 344022 0.5810 +8928 387332 0.8030 +8929 9464 0.8330 +8929 9839 0.5430 +8929 23095 0.4730 +8929 26128 0.4450 +8929 27022 0.4150 +8929 55054 0.4020 +8929 57057 0.4610 +8929 57084 0.6230 +8929 58158 0.5740 +8929 59335 0.4540 +8929 63895 0.4430 +8929 63973 0.6610 +8929 84684 0.4370 +8929 143872 0.4020 +8929 339145 0.6310 +8929 389421 0.4710 +8930 8932 0.7800 +8930 9112 0.5730 +8930 9208 0.4420 +8930 10009 0.7520 +8930 10930 0.4370 +8930 11321 0.4310 +8930 23583 0.8620 +8930 25764 0.4040 +8930 25862 0.4990 +8930 25942 0.5180 +8930 27030 0.4180 +8930 27343 0.4330 +8930 29128 0.7710 +8930 29947 0.4180 +8930 51478 0.6560 +8930 54790 0.4650 +8930 55142 0.5060 +8930 55247 0.5510 +8930 55777 0.5310 +8930 57379 0.4870 +8930 57659 0.5750 +8930 64393 0.4200 +8930 64421 0.4150 +8930 79157 0.4420 +8930 79661 0.6440 +8930 80224 0.5030 +8930 80312 0.5930 +8930 84061 0.6990 +8930 84124 0.4060 +8930 114785 0.6360 +8930 115426 0.6060 +8930 136051 0.4460 +8930 200424 0.5640 +8930 252969 0.5180 +8930 253461 0.5850 +8932 8970 0.5250 +8932 9112 0.9970 +8932 9219 0.9770 +8932 10284 0.5820 +8932 10363 0.4240 +8932 10419 0.6430 +8932 10765 0.4440 +8932 11176 0.5460 +8932 11321 0.7610 +8932 23028 0.7450 +8932 23186 0.6350 +8932 23309 0.6510 +8932 23613 0.5510 +8932 25942 0.8120 +8932 26038 0.8350 +8932 29115 0.5170 +8932 51105 0.7910 +8932 51222 0.8190 +8932 51742 0.5960 +8932 53615 0.9090 +8932 54145 0.5270 +8932 54815 0.9990 +8932 55766 0.5000 +8932 57167 0.6410 +8932 57459 0.9860 +8932 57473 0.6120 +8932 57504 0.9750 +8932 64426 0.6090 +8932 64919 0.6520 +8932 79084 0.5830 +8932 79595 0.5910 +8932 79685 0.5800 +8932 85236 0.5250 +8932 94239 0.5370 +8932 128312 0.5270 +8932 255626 0.5250 +8932 440093 0.4660 +8932 440686 0.4660 +8932 474382 0.5000 +8932 653604 0.7250 +8933 23089 0.8070 +8933 26071 0.7080 +8933 57529 0.6150 +8933 57697 0.5320 +8933 79921 0.4620 +8933 340526 0.6810 +8933 340595 0.6740 +8934 9529 0.8900 +8934 9551 0.4310 +8934 9559 0.4830 +8934 9829 0.6050 +8934 10618 0.4020 +8934 23275 0.4180 +8934 23301 0.4670 +8934 23317 0.5510 +8934 23400 0.5670 +8934 27314 0.5310 +8934 29058 0.4030 +8934 51102 0.4470 +8934 51699 0.4820 +8934 54832 0.4620 +8934 55255 0.6360 +8934 55737 0.7550 +8934 56922 0.4420 +8934 57460 0.6810 +8934 64710 0.9700 +8934 65018 0.5000 +8934 66005 0.4170 +8934 79096 0.6060 +8934 79705 0.6110 +8934 83547 0.4480 +8934 84286 0.5180 +8934 84869 0.4040 +8934 85414 0.7710 +8934 90410 0.6250 +8934 117177 0.5410 +8934 120892 0.9950 +8934 140775 0.7980 +8934 148811 0.9220 +8934 196383 0.7160 +8934 203228 0.7860 +8934 254102 0.5340 +8934 254428 0.9270 +8934 254863 0.4310 +8934 353116 0.7190 +8934 440574 0.4180 +8935 9564 0.5180 +8935 26191 0.6310 +8935 26499 0.5400 +8935 27071 0.5570 +8935 29760 0.4310 +8935 29887 0.4840 +8935 54504 0.4190 +8935 54518 0.4490 +8935 83706 0.4520 +8935 84106 0.8290 +8935 89857 0.4640 +8935 90417 0.5040 +8935 128387 0.4870 +8935 140885 0.7680 +8936 8976 0.9260 +8936 9139 0.4240 +8936 9322 0.7790 +8936 9495 0.4910 +8936 9564 0.5970 +8936 9618 0.4390 +8936 9844 0.5320 +8936 9901 0.9280 +8936 10006 0.9990 +8936 10011 0.7200 +8936 10092 0.9490 +8936 10093 0.9060 +8936 10094 0.9640 +8936 10095 0.9340 +8936 10096 0.7940 +8936 10097 0.7850 +8936 10109 0.9640 +8936 10152 0.9990 +8936 10163 0.9900 +8936 10174 0.4380 +8936 10270 0.5370 +8936 10439 0.7070 +8936 10451 0.5620 +8936 10458 0.9930 +8936 10552 0.9180 +8936 10787 0.9990 +8936 10810 0.9560 +8936 22999 0.4350 +8936 23075 0.4090 +8936 23191 0.9990 +8936 23268 0.4960 +8936 23380 0.6530 +8936 23624 0.6270 +8936 25894 0.4220 +8936 26999 0.9990 +8936 28964 0.5550 +8936 51019 0.4660 +8936 51225 0.9580 +8936 51517 0.6590 +8936 54874 0.8680 +8936 55740 0.6940 +8936 55845 0.9990 +8936 57224 0.6220 +8936 57522 0.7760 +8936 57575 0.9270 +8936 57624 0.6600 +8936 57648 0.7140 +8936 63916 0.6520 +8936 79658 0.4320 +8936 80018 0.6430 +8936 81624 0.4680 +8936 81873 0.9260 +8936 85358 0.4810 +8936 91544 0.6780 +8936 94134 0.4420 +8936 114336 0.5960 +8936 118472 0.6070 +8936 123720 0.8400 +8936 133746 0.8020 +8936 147179 0.7750 +8936 155185 0.4550 +8936 340527 0.6650 +8936 345456 0.6220 +8936 375189 0.6290 +8936 390714 0.4990 +8936 440184 0.5050 +8936 644150 0.6110 +8936 653361 0.5140 +8936 100287171 0.6280 +8938 9670 0.8130 +8938 10228 0.4820 +8938 10458 0.5280 +8938 50944 0.4050 +8938 257240 0.4820 +8939 9282 0.4660 +8939 9444 0.8430 +8939 9698 0.4360 +8939 9782 0.6840 +8939 9898 0.5110 +8939 9908 0.4780 +8939 10146 0.5470 +8939 10656 0.4270 +8939 10657 0.5310 +8939 10658 0.4870 +8939 10726 0.4140 +8939 10954 0.4310 +8939 11108 0.4230 +8939 22803 0.4850 +8939 22827 0.8130 +8939 22889 0.4850 +8939 23215 0.5720 +8939 23219 0.4510 +8939 23350 0.4780 +8939 23369 0.4120 +8939 23435 0.4670 +8939 23476 0.4200 +8939 26135 0.4540 +8939 26528 0.4530 +8939 54542 0.4190 +8939 54915 0.5020 +8939 55272 0.5090 +8939 56061 0.4380 +8939 57720 0.4730 +8939 83607 0.4360 +8939 90316 0.4590 +8939 130074 0.4490 +8939 149041 0.4200 +8939 163479 0.4160 +8939 169200 0.4320 +8939 202559 0.4580 +8939 390748 0.4110 +8940 9081 0.6690 +8940 9156 0.4550 +8940 9349 0.4500 +8940 9400 0.8120 +8940 9401 0.6760 +8940 9513 0.7480 +8940 9533 0.4690 +8940 10111 0.4760 +8940 10535 0.4140 +8940 10890 0.4150 +8940 11128 0.5190 +8940 11144 0.4350 +8940 23140 0.4080 +8940 23395 0.5370 +8940 23626 0.4470 +8940 25788 0.4260 +8940 25885 0.5600 +8940 26048 0.5010 +8940 27127 0.4010 +8940 27156 0.5030 +8940 27243 0.4170 +8940 29789 0.4880 +8940 29882 0.5500 +8940 29935 0.7460 +8940 51520 0.5200 +8940 51552 0.4290 +8940 51750 0.5870 +8940 54542 0.4340 +8940 55157 0.4210 +8940 56949 0.4980 +8940 57534 0.4500 +8940 57697 0.9660 +8940 64175 0.4150 +8940 64210 0.6560 +8940 64965 0.4550 +8940 79797 0.4030 +8940 80010 0.9660 +8940 80119 0.5280 +8940 80198 0.6900 +8940 80263 0.5470 +8940 81570 0.4620 +8940 84893 0.6360 +8940 85437 0.4520 +8940 90933 0.8750 +8940 90957 0.4070 +8940 92797 0.4260 +8940 113510 0.5070 +8940 116028 0.8800 +8940 116447 0.6170 +8940 146956 0.5110 +8940 161436 0.4470 +8940 200734 0.4270 +8940 246243 0.5110 +8940 339967 0.4540 +8940 442862 0.6880 +8940 548593 0.4700 +8941 9659 0.4620 +8941 10900 0.4070 +8941 50632 0.4650 +8941 51286 0.4410 +8941 56126 0.4190 +8941 56129 0.4400 +8941 56131 0.4690 +8941 56132 0.4300 +8941 63974 0.4440 +8941 83482 0.4820 +8941 92815 0.4190 +8941 399697 0.4360 +8941 441478 0.4080 +8942 9076 0.4600 +8942 10841 0.4040 +8942 23450 0.6240 +8942 23475 0.8660 +8942 23498 0.9980 +8942 51004 0.8060 +8942 51166 0.9800 +8942 51733 0.4130 +8942 55191 0.5590 +8942 55526 0.4690 +8942 56267 0.9820 +8942 57552 0.6040 +8942 64577 0.4720 +8942 64802 0.5060 +8942 64902 0.6110 +8942 79712 0.5220 +8942 79814 0.4430 +8942 84680 0.5140 +8942 84706 0.5480 +8942 93100 0.5550 +8942 121278 0.4190 +8942 123688 0.5240 +8942 123920 0.4740 +8942 125061 0.9880 +8942 126767 0.5790 +8942 130013 0.8930 +8942 169355 0.9810 +8942 343066 0.5790 +8942 344752 0.5840 +8942 349565 0.4360 +8942 390110 0.5140 +8943 9179 0.8960 +8943 9896 0.4290 +8943 9907 0.5490 +8943 10053 0.7990 +8943 10239 0.9970 +8943 10717 0.9120 +8943 10947 0.9960 +8943 11154 0.8610 +8943 11234 0.7280 +8943 11276 0.6110 +8943 11342 0.6660 +8943 22820 0.4030 +8943 23041 0.5110 +8943 23339 0.7090 +8943 23431 0.7150 +8943 23517 0.4180 +8943 25962 0.4790 +8943 26258 0.6020 +8943 26276 0.5890 +8943 26985 0.9990 +8943 27072 0.7600 +8943 27319 0.4690 +8943 27336 0.6060 +8943 29924 0.4800 +8943 51362 0.5230 +8943 55003 0.5690 +8943 55294 0.5170 +8943 55317 0.6030 +8943 55745 0.7650 +8943 55823 0.5220 +8943 57617 0.5110 +8943 63915 0.5160 +8943 65082 0.6020 +8943 79577 0.4970 +8943 79803 0.6890 +8943 80230 0.4170 +8943 80829 0.4450 +8943 81545 0.4690 +8943 84062 0.5440 +8943 84079 0.5380 +8943 84251 0.5800 +8943 84343 0.7270 +8943 89781 0.5200 +8943 91056 0.5470 +8943 122616 0.5410 +8943 130340 0.7710 +8943 192669 0.7840 +8943 221421 0.4470 +8943 348110 0.8210 +8943 388552 0.5820 +8943 100526783 0.8840 +8945 9020 0.5740 +8945 9039 0.6630 +8945 9040 0.7020 +8945 9070 0.5170 +8945 9113 0.5800 +8945 9231 0.4350 +8945 9232 0.4750 +8945 9491 0.4220 +8945 9575 0.7930 +8945 9612 0.4150 +8945 9616 0.7420 +8945 9693 0.4760 +8945 9788 0.4370 +8945 9790 0.4020 +8945 9817 0.7730 +8945 9861 0.4320 +8945 9891 0.6250 +8945 9958 0.7120 +8945 9978 0.9990 +8945 10018 0.8270 +8945 10075 0.4490 +8945 10197 0.4800 +8945 10213 0.7000 +8945 10273 0.5690 +8945 10413 0.9920 +8945 10426 0.5940 +8945 10642 0.9200 +8945 10644 0.4560 +8945 10660 0.6190 +8945 10726 0.7360 +8945 10733 0.8690 +8945 10746 0.4040 +8945 10769 0.4640 +8945 10845 0.5020 +8945 10980 0.5570 +8945 10987 0.5230 +8945 10988 0.5970 +8945 11124 0.5460 +8945 11146 0.4720 +8945 11186 0.6760 +8945 22943 0.5490 +8945 22992 0.5340 +8945 23175 0.6990 +8945 23177 0.4150 +8945 23194 0.5730 +8945 23198 0.4440 +8945 23239 0.6590 +8945 23291 0.9930 +8945 23462 0.4500 +8945 23512 0.5350 +8945 23555 0.6400 +8945 23558 0.4610 +8945 25777 0.6960 +8945 25793 0.4610 +8945 25820 0.5560 +8945 25827 0.4830 +8945 25937 0.9890 +8945 26049 0.5450 +8945 26108 0.5460 +8945 26118 0.4150 +8945 26147 0.6200 +8945 26190 0.7360 +8945 26224 0.7550 +8945 26232 0.9810 +8945 26234 0.6400 +8945 26235 0.6110 +8945 26259 0.8080 +8945 26269 0.5470 +8945 26270 0.8420 +8945 26271 0.9920 +8945 26272 0.9450 +8945 26524 0.4350 +8945 27122 0.6300 +8945 27250 0.9580 +8945 27338 0.4150 +8945 27343 0.6960 +8945 28951 0.8330 +8945 28996 0.4850 +8945 29110 0.5120 +8945 29126 0.4830 +8945 29128 0.6530 +8945 29904 0.8240 +8945 50813 0.6250 +8945 51176 0.7440 +8945 51343 0.7470 +8945 51455 0.5810 +8945 51619 0.8210 +8945 51684 0.8320 +8945 51701 0.6040 +8945 54101 0.5730 +8945 54461 0.4080 +8945 54541 0.4360 +8945 54926 0.8300 +8945 55031 0.8670 +8945 55294 0.9810 +8945 55666 0.4520 +8945 55832 0.8240 +8945 55914 0.4380 +8945 57154 0.8570 +8945 57695 0.8740 +8945 57697 0.4290 +8945 60485 0.4850 +8945 63967 0.9710 +8945 64750 0.6300 +8945 64798 0.8660 +8945 79155 0.5730 +8945 79365 0.5900 +8945 79661 0.4150 +8945 79866 0.7540 +8945 80019 0.6110 +8945 80149 0.4910 +8945 80204 0.5010 +8945 80351 0.4380 +8945 83439 0.6310 +8945 83593 0.9430 +8945 84133 0.5220 +8945 84260 0.4170 +8945 84699 0.5780 +8945 89780 0.5180 +8945 90780 0.6130 +8945 93611 0.4060 +8945 114088 0.9380 +8945 121536 0.5040 +8945 122706 0.4160 +8945 122786 0.4220 +8945 123879 0.4990 +8945 139067 0.5900 +8945 139285 0.9520 +8945 140685 0.4060 +8945 143384 0.5310 +8945 143471 0.4150 +8945 144699 0.6390 +8945 200933 0.4130 +8945 221302 0.5050 +8945 252969 0.6730 +8945 283149 0.5900 +8945 283349 0.4730 +8945 286151 0.9560 +8945 377630 0.4440 +8945 387103 0.6710 +8945 387882 0.5570 +8945 387893 0.4580 +8945 494551 0.4510 +8945 102800317 0.4820 +8968 8969 0.6000 +8968 8970 0.9600 +8968 8971 0.8490 +8968 9085 0.8470 +8968 9555 0.9320 +8968 9682 0.9110 +8968 9759 0.5310 +8968 9866 0.9070 +8968 9869 0.9150 +8968 10038 0.4970 +8968 10382 0.6000 +8968 10450 0.9030 +8968 10498 0.9220 +8968 10856 0.8780 +8968 10919 0.9230 +8968 10927 0.9000 +8968 10951 0.9340 +8968 11083 0.9320 +8968 11091 0.9220 +8968 11198 0.9510 +8968 11200 0.4470 +8968 11335 0.9330 +8968 23133 0.9190 +8968 23135 0.6220 +8968 23408 0.9140 +8968 23410 0.9140 +8968 23466 0.9090 +8968 23468 0.9410 +8968 23492 0.9160 +8968 23515 0.9060 +8968 23522 0.9220 +8968 25842 0.9640 +8968 26009 0.9030 +8968 26108 0.9090 +8968 29072 0.9470 +8968 29117 0.8160 +8968 29128 0.9070 +8968 29947 0.8180 +8968 51147 0.9140 +8968 51592 0.9080 +8968 51742 0.5360 +8968 54145 0.4120 +8968 54617 0.9140 +8968 54737 0.9370 +8968 54904 0.9150 +8968 55193 0.9320 +8968 55274 0.8100 +8968 55723 0.6880 +8968 55904 0.9080 +8968 79690 0.4610 +8968 79711 0.9360 +8968 79813 0.9260 +8968 79913 0.8540 +8968 83444 0.8280 +8968 83740 0.9240 +8968 84444 0.9340 +8968 84656 0.8030 +8968 84717 0.9050 +8968 84733 0.9140 +8968 85235 0.4390 +8968 85236 0.9560 +8968 90780 0.9160 +8968 94239 0.9440 +8968 112869 0.9200 +8968 115004 0.8120 +8968 121504 0.9840 +8968 123169 0.4010 +8968 124359 0.9230 +8968 126961 0.9620 +8968 128312 0.8780 +8968 144097 0.8000 +8968 152098 0.9120 +8968 196528 0.8000 +8968 221613 0.9240 +8968 253175 0.8470 +8968 255626 0.8620 +8968 317772 0.5970 +8968 333932 0.9630 +8968 387893 0.9160 +8968 401934 0.6480 +8968 440093 0.8550 +8968 440686 0.9370 +8968 440689 0.4540 +8968 474381 0.9240 +8968 554313 0.9830 +8968 653604 0.9650 +8968 723790 0.5470 +8968 728378 0.5440 +8969 8970 0.9870 +8969 9070 0.8530 +8969 9557 0.9120 +8969 9646 0.8360 +8969 10038 0.4340 +8969 10389 0.9000 +8969 11091 0.8320 +8969 11168 0.8400 +8969 11198 0.4550 +8969 23135 0.4110 +8969 23168 0.8460 +8969 23512 0.8200 +8969 25913 0.8010 +8969 51427 0.4170 +8969 54145 0.4940 +8969 54623 0.8360 +8969 54904 0.9130 +8969 54969 0.4550 +8969 55705 0.9150 +8969 55766 0.8230 +8969 58508 0.8440 +8969 79577 0.8390 +8969 80349 0.8000 +8969 84444 0.9170 +8969 84656 0.4190 +8969 84661 0.8520 +8969 85235 0.9160 +8969 85236 0.9800 +8969 121504 0.9610 +8969 121536 0.4120 +8969 123169 0.8410 +8969 126961 0.9450 +8969 128312 0.4930 +8969 158983 0.4350 +8969 200558 0.4780 +8969 255626 0.5800 +8969 317772 0.8230 +8969 333932 0.9400 +8969 387893 0.9110 +8969 440689 0.9510 +8969 554313 0.9590 +8969 653604 0.9400 +8969 723790 0.8120 +8970 8971 0.8350 +8970 9013 0.4050 +8970 9015 0.4010 +8970 9025 0.5960 +8970 9031 0.4600 +8970 9070 0.9100 +8970 9094 0.4170 +8970 9112 0.5180 +8970 9126 0.6280 +8970 9188 0.4190 +8970 9212 0.4770 +8970 9219 0.5090 +8970 9261 0.5160 +8970 9282 0.8010 +8970 9412 0.8020 +8970 9439 0.8210 +8970 9440 0.8120 +8970 9441 0.8230 +8970 9442 0.8010 +8970 9443 0.8060 +8970 9477 0.8020 +8970 9493 0.4550 +8970 9533 0.5620 +8970 9555 0.9580 +8970 9557 0.9170 +8970 9611 0.5590 +8970 9612 0.4520 +8970 9646 0.9490 +8970 9656 0.5830 +8970 9682 0.5670 +8970 9687 0.5120 +8970 9734 0.7230 +8970 9739 0.6630 +8970 9759 0.7310 +8970 9810 0.8910 +8970 9862 0.8000 +8970 9929 0.4810 +8970 9935 0.4990 +8970 9960 0.5710 +8970 9985 0.6770 +8970 10001 0.8000 +8970 10013 0.7280 +8970 10014 0.7040 +8970 10025 0.8000 +8970 10038 0.9480 +8970 10051 0.5860 +8970 10111 0.5120 +8970 10155 0.4660 +8970 10274 0.5700 +8970 10284 0.4990 +8970 10362 0.5020 +8970 10388 0.4990 +8970 10474 0.7070 +8970 10514 0.4010 +8970 10524 0.6340 +8970 10526 0.5080 +8970 10592 0.5600 +8970 10664 0.6050 +8970 10673 0.4230 +8970 10734 0.5300 +8970 10735 0.5430 +8970 10849 0.4050 +8970 10856 0.8630 +8970 10919 0.6310 +8970 10951 0.6360 +8970 11083 0.5360 +8970 11091 0.9180 +8970 11144 0.5050 +8970 11168 0.8330 +8970 11176 0.5460 +8970 11198 0.5890 +8970 11200 0.6440 +8970 11335 0.5530 +8970 22823 0.5110 +8970 22955 0.5060 +8970 22976 0.5200 +8970 23028 0.6430 +8970 23030 0.7270 +8970 23054 0.5030 +8970 23067 0.5260 +8970 23081 0.5470 +8970 23112 0.5150 +8970 23133 0.5270 +8970 23135 0.6770 +8970 23168 0.9550 +8970 23186 0.4900 +8970 23309 0.5260 +8970 23310 0.5690 +8970 23326 0.8710 +8970 23378 0.4990 +8970 23411 0.6540 +8970 23466 0.5070 +8970 23476 0.4800 +8970 23512 0.9100 +8970 23595 0.5180 +8970 23626 0.5800 +8970 25855 0.4010 +8970 25862 0.6470 +8970 25885 0.4680 +8970 25913 0.4990 +8970 25942 0.5440 +8970 26108 0.5240 +8970 26147 0.5190 +8970 26277 0.5350 +8970 26523 0.5460 +8970 27030 0.5100 +8970 27127 0.5540 +8970 27161 0.5700 +8970 27327 0.4990 +8970 29072 0.4270 +8970 29079 0.8000 +8970 29115 0.4990 +8970 29128 0.5760 +8970 29781 0.5540 +8970 29893 0.4050 +8970 29947 0.5630 +8970 30834 0.4680 +8970 50511 0.5550 +8970 51003 0.8000 +8970 51176 0.5400 +8970 51317 0.4850 +8970 51322 0.6420 +8970 51548 0.5850 +8970 51564 0.7280 +8970 51586 0.8100 +8970 51588 0.5250 +8970 51616 0.7330 +8970 51720 0.5610 +8970 51742 0.5680 +8970 53615 0.5040 +8970 54145 0.5060 +8970 54386 0.5460 +8970 54443 0.4310 +8970 54617 0.8240 +8970 54623 0.9570 +8970 54797 0.8130 +8970 54815 0.4990 +8970 54892 0.5260 +8970 54904 0.8250 +8970 54969 0.9420 +8970 55070 0.7250 +8970 55090 0.8000 +8970 55170 0.5330 +8970 55183 0.5280 +8970 55247 0.5200 +8970 55506 0.5080 +8970 55588 0.8000 +8970 55705 0.9210 +8970 55766 0.7590 +8970 55848 0.5650 +8970 55869 0.7270 +8970 56154 0.4310 +8970 56158 0.4990 +8970 56254 0.9210 +8970 56943 0.5430 +8970 56979 0.5400 +8970 57332 0.5360 +8970 57459 0.4990 +8970 57504 0.4990 +8970 58508 0.9240 +8970 64421 0.4990 +8970 64426 0.4990 +8970 79101 0.4030 +8970 79447 0.4990 +8970 79577 0.9610 +8970 79595 0.4990 +8970 79685 0.5040 +8970 79718 0.4630 +8970 79813 0.4950 +8970 79885 0.6990 +8970 79913 0.9470 +8970 79968 0.4100 +8970 80012 0.5430 +8970 80306 0.8000 +8970 80349 0.9100 +8970 81611 0.9470 +8970 81857 0.8010 +8970 83439 0.4990 +8970 83444 0.8190 +8970 83666 0.4930 +8970 83740 0.4740 +8970 83860 0.8250 +8970 83933 0.6980 +8970 84057 0.4130 +8970 84142 0.5140 +8970 84172 0.5550 +8970 84196 0.5650 +8970 84246 0.8130 +8970 84444 0.9640 +8970 84656 0.9410 +8970 84661 0.8190 +8970 84733 0.5070 +8970 84962 0.4990 +8970 85235 0.9730 +8970 85236 0.9730 +8970 90390 0.8000 +8970 90780 0.5470 +8970 92815 0.7300 +8970 93426 0.5010 +8970 93624 0.5850 +8970 94239 0.6920 +8970 112950 0.8000 +8970 114803 0.5400 +8970 115004 0.9130 +8970 121504 0.9750 +8970 121536 0.7320 +8970 123169 0.9380 +8970 126119 0.4830 +8970 126961 0.9100 +8970 128312 0.8920 +8970 129685 0.8160 +8970 151636 0.5390 +8970 165918 0.7420 +8970 192669 0.5240 +8970 192670 0.5350 +8970 221302 0.4210 +8970 221613 0.6270 +8970 255626 0.5580 +8970 256126 0.5090 +8970 266812 0.4090 +8970 283149 0.4990 +8970 317772 0.7450 +8970 333932 0.8970 +8970 387893 0.9460 +8970 391769 0.8680 +8970 400569 0.8000 +8970 404672 0.8340 +8970 440093 0.9720 +8970 440686 0.8800 +8970 440689 0.4600 +8970 474381 0.5020 +8970 474382 0.6360 +8970 554313 0.9740 +8970 644186 0.4990 +8970 653604 0.9860 +8970 723790 0.6240 +8970 115482686 0.4190 +8971 10579 0.4670 +8971 10826 0.4080 +8971 11224 0.4010 +8971 22913 0.5220 +8971 23076 0.5650 +8971 23223 0.4810 +8971 25802 0.4330 +8971 26156 0.7340 +8971 27000 0.4340 +8971 51574 0.5330 +8971 55506 0.4410 +8971 121504 0.9350 +8971 132243 0.9470 +8971 341567 0.9460 +8971 554313 0.9350 +8972 9370 0.4790 +8972 9563 0.4180 +8972 10020 0.4140 +8972 10724 0.5280 +8972 11181 0.7890 +8972 11253 0.5630 +8972 23193 0.4690 +8972 23601 0.7400 +8972 27254 0.5420 +8972 54363 0.7260 +8972 54431 0.4020 +8972 54575 0.5530 +8972 54576 0.5570 +8972 54577 0.5530 +8972 54578 0.5090 +8972 54657 0.5060 +8972 54658 0.5630 +8972 55120 0.4100 +8972 55757 0.4260 +8972 56886 0.5040 +8972 57818 0.5320 +8972 64080 0.7160 +8972 80201 0.9220 +8972 83756 0.4810 +8972 84572 0.5890 +8972 84706 0.4190 +8972 91749 0.4070 +8972 92579 0.5500 +8972 93432 0.9850 +8972 131566 0.4160 +8972 151056 0.5460 +8972 257202 0.4640 +8972 440387 0.5290 +8972 493869 0.4620 +8973 9568 0.4670 +8973 55584 0.7630 +8973 57053 0.6010 +8973 57084 0.5270 +8973 57152 0.6550 +8973 66004 0.6160 +8973 89832 0.5710 +8973 112398 0.5370 +8973 134957 0.5450 +8973 432355 0.6550 +8974 8985 0.6660 +8974 9601 0.8470 +8974 9669 0.4510 +8974 10130 0.6510 +8974 10413 0.4410 +8974 10491 0.5360 +8974 10536 0.5720 +8974 10609 0.4040 +8974 10898 0.5800 +8974 11015 0.4170 +8974 26993 0.4270 +8974 27161 0.4410 +8974 29920 0.9080 +8974 30001 0.4960 +8974 50509 0.4640 +8974 51056 0.9020 +8974 51692 0.4260 +8974 51726 0.4890 +8974 53981 0.6030 +8974 54583 0.7360 +8974 55214 0.8910 +8974 55662 0.4260 +8974 57642 0.4350 +8974 57829 0.6110 +8974 58510 0.9150 +8974 60681 0.4460 +8974 64175 0.8270 +8974 64344 0.4640 +8974 65263 0.9180 +8974 79714 0.4540 +8974 80781 0.6210 +8974 81578 0.4210 +8974 81608 0.7180 +8974 84146 0.4300 +8974 84570 0.4200 +8974 85301 0.4310 +8974 91252 0.5460 +8974 91522 0.4360 +8974 112398 0.6260 +8974 112399 0.6700 +8974 131873 0.4360 +8974 136227 0.4380 +8974 136332 0.5320 +8974 169044 0.4790 +8974 192669 0.5310 +8974 192670 0.5500 +8974 203068 0.5130 +8974 255631 0.4210 +8974 283208 0.5100 +8974 283375 0.4470 +8974 340267 0.4510 +8974 374654 0.4410 +8975 9039 0.4390 +8975 9097 0.7590 +8975 9099 0.6640 +8975 9100 0.8970 +8975 9101 0.4550 +8975 9126 0.6790 +8975 9636 0.4920 +8975 9656 0.4010 +8975 9690 0.6310 +8975 9736 0.4230 +8975 9924 0.4500 +8975 9929 0.5950 +8975 9984 0.4330 +8975 10075 0.4560 +8975 10213 0.6310 +8975 10617 0.4920 +8975 10713 0.6750 +8975 10868 0.6530 +8975 10869 0.7320 +8975 10987 0.5340 +8975 11060 0.4380 +8975 11274 0.7070 +8975 23197 0.8000 +8975 23252 0.4980 +8975 23326 0.8380 +8975 23358 0.6680 +8975 25862 0.5690 +8975 29761 0.8520 +8975 29978 0.4930 +8975 29979 0.4020 +8975 50613 0.4070 +8975 51097 0.4290 +8975 51127 0.5290 +8975 51377 0.5760 +8975 51633 0.5020 +8975 51720 0.7880 +8975 54532 0.4720 +8975 54726 0.4410 +8975 54764 0.5380 +8975 54913 0.4680 +8975 55031 0.4480 +8975 55236 0.4710 +8975 55250 0.4150 +8975 55432 0.7800 +8975 55593 0.4450 +8975 55611 0.5890 +8975 55666 0.7850 +8975 55793 0.4330 +8975 56893 0.4220 +8975 56957 0.4360 +8975 57154 0.4090 +8975 57558 0.5180 +8975 57559 0.4150 +8975 57599 0.4440 +8975 57602 0.5260 +8975 57646 0.7600 +8975 57663 0.5400 +8975 57695 0.5460 +8975 64854 0.6090 +8975 78990 0.4940 +8975 79102 0.4020 +8975 79184 0.5230 +8975 80124 0.5650 +8975 80145 0.6200 +8975 83737 0.4060 +8975 83844 0.4980 +8975 83892 0.4220 +8975 84132 0.4930 +8975 84196 0.7030 +8975 84640 0.5540 +8975 84669 0.4240 +8975 84675 0.5910 +8975 84676 0.5800 +8975 84749 0.6430 +8975 84954 0.4290 +8975 85015 0.5100 +8975 92552 0.6870 +8975 114803 0.6160 +8975 126119 0.5470 +8975 139562 0.4350 +8975 144699 0.4550 +8975 159195 0.4780 +8975 219333 0.5520 +8975 220213 0.4450 +8975 221302 0.7230 +8975 373509 0.5700 +8975 377630 0.6040 +8975 389856 0.4220 +8975 728373 0.4880 +8976 9025 0.6170 +8976 9026 0.7110 +8976 9050 0.4580 +8976 9051 0.7940 +8976 9253 0.4630 +8976 9322 0.9960 +8976 9341 0.5020 +8976 9402 0.5100 +8976 9423 0.6020 +8976 9497 0.4050 +8976 9564 0.6230 +8976 9578 0.5760 +8976 9644 0.9930 +8976 9788 0.5030 +8976 9815 0.5340 +8976 9873 0.9050 +8976 9901 0.8670 +8976 10006 0.9800 +8976 10092 0.9930 +8976 10093 0.9940 +8976 10094 0.9980 +8976 10095 0.9990 +8976 10096 0.9990 +8976 10097 0.9990 +8976 10109 0.9980 +8976 10152 0.9490 +8976 10163 0.9160 +8976 10174 0.5740 +8976 10188 0.5600 +8976 10298 0.7260 +8976 10435 0.4390 +8976 10458 0.9650 +8976 10519 0.4680 +8976 10552 0.9800 +8976 10602 0.4060 +8976 10750 0.5960 +8976 10787 0.8350 +8976 10810 0.7310 +8976 11060 0.4620 +8976 11135 0.4520 +8976 11151 0.4070 +8976 11252 0.9490 +8976 11344 0.4120 +8976 22905 0.4730 +8976 22941 0.4120 +8976 23002 0.4060 +8976 23022 0.4090 +8976 23048 0.9620 +8976 23075 0.4320 +8976 23149 0.7490 +8976 23191 0.6890 +8976 23242 0.4950 +8976 23265 0.5070 +8976 23268 0.9510 +8976 23380 0.8580 +8976 23433 0.8970 +8976 23513 0.5660 +8976 23580 0.4160 +8976 23607 0.4150 +8976 23647 0.4370 +8976 25791 0.4250 +8976 25894 0.5080 +8976 25917 0.4560 +8976 26030 0.4430 +8976 26052 0.4590 +8976 26499 0.4180 +8976 26751 0.9000 +8976 26999 0.8260 +8976 28964 0.5760 +8976 28988 0.6480 +8976 29109 0.4920 +8976 29763 0.8690 +8976 29984 0.4100 +8976 29993 0.8790 +8976 30011 0.4520 +8976 50618 0.9840 +8976 50855 0.4970 +8976 51019 0.4290 +8976 51199 0.5950 +8976 51429 0.9700 +8976 51517 0.8920 +8976 51669 0.5360 +8976 51806 0.5510 +8976 54874 0.9980 +8976 55040 0.4660 +8976 55114 0.4650 +8976 55243 0.5830 +8976 55660 0.6290 +8976 55740 0.7400 +8976 55789 0.4010 +8976 55845 0.8490 +8976 55909 0.5830 +8976 55971 0.9360 +8976 56776 0.4700 +8976 56907 0.5130 +8976 56924 0.5710 +8976 57175 0.5000 +8976 57180 0.9710 +8976 57381 0.7630 +8976 57522 0.5980 +8976 58480 0.4680 +8976 58513 0.4990 +8976 65059 0.4800 +8976 79585 0.4820 +8976 81027 0.4380 +8976 81624 0.7600 +8976 81839 0.4010 +8976 81873 0.9600 +8976 83660 0.5890 +8976 84501 0.4450 +8976 85477 0.9360 +8976 89848 0.6300 +8976 90507 0.4760 +8976 91010 0.5900 +8976 91860 0.5310 +8976 94134 0.6040 +8976 112574 0.5160 +8976 114793 0.4010 +8976 115548 0.7010 +8976 115677 0.7150 +8976 123720 0.5040 +8976 128239 0.5860 +8976 130560 0.5950 +8976 133482 0.4120 +8976 133746 0.4880 +8976 143098 0.4210 +8976 144402 0.4080 +8976 147179 0.9990 +8976 151306 0.5090 +8976 163688 0.5310 +8976 171177 0.7590 +8976 200894 0.4210 +8976 203068 0.4810 +8976 257364 0.4520 +8976 285590 0.6050 +8976 342184 0.4070 +8976 345456 0.9030 +8976 345651 0.4180 +8976 375189 0.9210 +8976 442721 0.4470 +8976 644150 0.9990 +8976 647135 0.4480 +8976 653464 0.4600 +8976 653857 0.9680 +8976 100529144 0.5990 +8985 9739 0.6580 +8985 9757 0.6570 +8985 9869 0.6670 +8985 10609 0.4820 +8985 10919 0.8630 +8985 23067 0.6550 +8985 23127 0.9640 +8985 25821 0.5120 +8985 50509 0.6350 +8985 54904 0.6550 +8985 55870 0.6550 +8985 55904 0.6500 +8985 56950 0.6800 +8985 56979 0.6510 +8985 57642 0.5440 +8985 58508 0.6520 +8985 60681 0.4050 +8985 63894 0.4500 +8985 64175 0.5820 +8985 64324 0.6550 +8985 64754 0.6840 +8985 78989 0.4880 +8985 79709 0.9820 +8985 79723 0.6500 +8985 79813 0.6520 +8985 79823 0.9000 +8985 80258 0.5570 +8985 80781 0.6770 +8985 80854 0.6750 +8985 81578 0.7650 +8985 83852 0.6500 +8985 84444 0.6560 +8985 84570 0.5680 +8985 84627 0.6710 +8985 84934 0.4330 +8985 84955 0.6270 +8985 85301 0.5930 +8985 91522 0.8210 +8985 93166 0.6530 +8985 113189 0.7200 +8985 114897 0.4390 +8985 114904 0.4250 +8985 117177 0.7750 +8985 131873 0.5580 +8985 136227 0.5810 +8985 150572 0.6670 +8985 169044 0.5950 +8985 255631 0.5700 +8985 283208 0.4640 +8985 283820 0.4440 +8985 340267 0.5180 +8985 374378 0.4140 +8985 387893 0.6520 +8986 9183 0.4070 +8986 9252 0.9040 +8986 9261 0.4640 +8986 9586 0.6720 +8986 10488 0.6500 +8986 10943 0.4910 +8986 27330 0.4420 +8986 53407 0.4190 +8986 60561 0.5630 +8986 64764 0.6500 +8986 84699 0.6500 +8986 85366 0.6070 +8986 90993 0.6610 +8986 148327 0.6500 +8986 339287 0.4540 +8987 9026 0.4050 +8987 9341 0.4010 +8987 10133 0.5460 +8987 10241 0.5770 +8987 10871 0.4470 +8987 11337 0.8280 +8987 11345 0.7360 +8987 23208 0.4440 +8987 23580 0.4610 +8987 23710 0.9890 +8987 27347 0.4020 +8987 29984 0.5670 +8987 51347 0.4100 +8987 55240 0.4050 +8987 56922 0.4790 +8987 79660 0.6730 +8987 81624 0.4010 +8987 81839 0.4050 +8987 84660 0.6150 +8987 91683 0.4480 +8987 112755 0.4470 +8987 114928 0.4760 +8987 130013 0.5380 +8987 144402 0.4370 +8987 388611 0.4070 +8988 9118 0.5380 +8988 9138 0.4520 +8988 9218 0.6270 +8988 9261 0.8220 +8988 9324 0.4280 +8988 9529 0.4930 +8988 9531 0.7400 +8988 9563 0.7060 +8988 9588 0.4340 +8988 10044 0.4020 +8988 10049 0.4250 +8988 10273 0.7600 +8988 10454 0.5440 +8988 10657 0.4520 +8988 10691 0.5530 +8988 10763 0.5370 +8988 10808 0.6750 +8988 10963 0.4790 +8988 10971 0.4910 +8988 11127 0.5420 +8988 11140 0.4490 +8988 22824 0.4560 +8988 22902 0.5900 +8988 22927 0.4050 +8988 23299 0.4290 +8988 23327 0.4180 +8988 23336 0.5130 +8988 25780 0.4370 +8988 26012 0.4490 +8988 26031 0.4020 +8988 26135 0.4100 +8988 26205 0.4950 +8988 26353 0.9060 +8988 26580 0.4740 +8988 27129 0.7680 +8988 27242 0.4440 +8988 29108 0.4780 +8988 29126 0.5240 +8988 30818 0.5670 +8988 51133 0.4360 +8988 51559 0.6500 +8988 51778 0.4030 +8988 54205 0.9890 +8988 54332 0.4040 +8988 54927 0.4280 +8988 55526 0.4660 +8988 58512 0.4220 +8988 59269 0.4200 +8988 60685 0.5900 +8988 64145 0.4070 +8988 79663 0.8560 +8988 90353 0.4970 +8988 92935 0.6370 +8988 94086 0.6480 +8988 114548 0.5070 +8988 114899 0.6570 +8988 115123 0.4440 +8988 124912 0.5490 +8988 126393 0.6020 +8988 137902 0.4800 +8988 148327 0.4240 +8988 220869 0.4690 +8988 246778 0.4030 +8988 284106 0.4370 +8988 284194 0.7640 +8988 375612 0.4970 +8988 399473 0.4890 +8988 440093 0.5390 +8988 440686 0.5390 +8988 445571 0.4690 +8988 644019 0.4690 +8988 653604 0.5410 +8988 654346 0.7640 +8988 102723407 0.4150 +8989 9033 0.6390 +8989 9048 0.4590 +8989 9290 0.6050 +8989 9311 0.6800 +8989 9780 0.6250 +8989 10677 0.4260 +8989 11280 0.6850 +8989 11343 0.4620 +8989 22953 0.5880 +8989 24145 0.4300 +8989 27039 0.6050 +8989 29106 0.8110 +8989 50801 0.6330 +8989 51284 0.6020 +8989 51305 0.4150 +8989 51350 0.5080 +8989 51393 0.8980 +8989 51741 0.4230 +8989 51806 0.7670 +8989 54207 0.4730 +8989 54795 0.7660 +8989 54822 0.7510 +8989 55107 0.4300 +8989 55273 0.4980 +8989 55283 0.6280 +8989 55503 0.4210 +8989 55662 0.9000 +8989 56302 0.6750 +8989 57192 0.7140 +8989 59341 0.7200 +8989 63895 0.7320 +8989 79054 0.9840 +8989 80036 0.8130 +8989 84876 0.4220 +8989 85480 0.6520 +8989 89822 0.4350 +8989 91860 0.7550 +8989 93129 0.4030 +8989 116512 0.7070 +8989 117195 0.4120 +8989 117196 0.4630 +8989 117532 0.4260 +8989 131096 0.4030 +8989 131601 0.7260 +8989 133396 0.5400 +8989 140803 0.6780 +8989 162514 0.7420 +8989 163688 0.7550 +8989 255231 0.5730 +8989 256356 0.4320 +8989 259232 0.4380 +8989 259249 0.4680 +8989 338567 0.4770 +8989 342372 0.4160 +8989 386653 0.6960 +8991 9319 0.5930 +8991 9588 0.4460 +8991 10661 0.4330 +8991 10768 0.8250 +8991 11169 0.5840 +8991 23032 0.5030 +8991 23382 0.8300 +8991 23743 0.8180 +8991 23762 0.4440 +8991 25853 0.6590 +8991 51327 0.7410 +8991 55437 0.6000 +8991 56257 0.4190 +8991 56267 0.8110 +8991 57016 0.4260 +8991 57171 0.4220 +8991 57466 0.5800 +8991 58472 0.9100 +8991 65260 0.5810 +8991 144811 0.4720 +8991 203547 0.5830 +8992 9114 0.9900 +8992 9296 0.9980 +8992 9550 0.9830 +8992 9551 0.7220 +8992 9681 0.4990 +8992 10159 0.9950 +8992 10312 0.8350 +8992 10325 0.4990 +8992 10476 0.4450 +8992 10542 0.5400 +8992 10632 0.4970 +8992 10641 0.5260 +8992 10670 0.5570 +8992 11133 0.4990 +8992 23334 0.4990 +8992 23545 0.9500 +8992 27068 0.6570 +8992 27244 0.5000 +8992 28956 0.5300 +8992 50617 0.9890 +8992 51382 0.9980 +8992 51606 0.9970 +8992 54468 0.4990 +8992 55004 0.5910 +8992 55846 0.5080 +8992 57521 0.4990 +8992 57707 0.9300 +8992 58528 0.5730 +8992 64077 0.6650 +8992 64121 0.5830 +8992 64223 0.4990 +8992 79726 0.4990 +8992 81929 0.4990 +8992 83667 0.4990 +8992 84219 0.5070 +8992 84317 0.8030 +8992 90423 0.9560 +8992 96459 0.4080 +8992 127124 0.8850 +8992 144577 0.4990 +8992 147007 0.8550 +8992 153129 0.5060 +8992 154743 0.4010 +8992 155066 0.9420 +8992 163882 0.7770 +8992 201163 0.4310 +8992 203547 0.6980 +8992 245972 0.9470 +8992 245973 0.9370 +8992 389541 0.5350 +8992 440400 0.9940 +8992 652968 0.4030 +8993 9231 0.6560 +8993 9524 0.5420 +8993 10321 0.5880 +8993 10392 0.7280 +8993 10562 0.6190 +8993 23098 0.4150 +8993 23118 0.4360 +8993 23569 0.5330 +8993 25927 0.6070 +8993 27283 0.4600 +8993 53905 0.4370 +8993 54210 0.9200 +8993 55284 0.4880 +8993 56729 0.6260 +8993 57126 0.4380 +8993 57161 0.4050 +8993 64127 0.7100 +8993 64129 0.4480 +8993 92799 0.4760 +8993 119180 0.4490 +8993 146225 0.4720 +8993 222487 0.4610 +8993 266747 0.4010 +8993 388698 0.4150 +8993 728358 0.6230 +8994 9113 0.9950 +8994 9260 0.5080 +8994 9491 0.4090 +8994 9501 0.7830 +8994 9722 0.5110 +8994 9796 0.6270 +8994 9861 0.4030 +8994 9978 0.5420 +8994 10197 0.4090 +8994 10213 0.4050 +8994 10217 0.4530 +8994 22836 0.6640 +8994 22895 0.6800 +8994 23198 0.4410 +8994 23395 0.9120 +8994 23405 0.9130 +8994 23503 0.4440 +8994 25937 0.4050 +8994 26523 0.9410 +8994 26524 0.9660 +8994 27161 0.9360 +8994 27327 0.9590 +8994 53349 0.5470 +8994 54583 0.9100 +8994 55683 0.4430 +8994 57510 0.9060 +8994 60485 0.9640 +8994 64236 0.5570 +8994 64344 0.5410 +8994 79177 0.5720 +8994 79872 0.4190 +8994 84962 0.9250 +8994 85329 0.4360 +8994 92346 0.4220 +8994 112399 0.6320 +8994 122706 0.4160 +8994 126374 0.9080 +8994 167227 0.9050 +8994 192669 0.8110 +8994 192670 0.8150 +8994 200014 0.4900 +8994 253512 0.4550 +8995 9034 0.4280 +8995 9966 0.7000 +8995 10010 0.4190 +8995 10068 0.4320 +8995 11126 0.4210 +8995 11148 0.5880 +8995 23308 0.7860 +8995 29126 0.5270 +8995 29851 0.6670 +8995 50615 0.4640 +8995 50943 0.4600 +8995 51438 0.4010 +8995 56244 0.4290 +8995 59067 0.4430 +8995 64115 0.4170 +8995 79679 0.5110 +8995 80380 0.5290 +8995 80381 0.5380 +8995 84868 0.4610 +8995 126259 0.4870 +8995 144455 0.4040 +8995 151888 0.4770 +8995 169355 0.8060 +8995 201633 0.5500 +8996 51283 0.4120 +8996 55224 0.4200 +8997 9001 0.5840 +8997 9002 0.5090 +8997 9138 0.6900 +8997 9170 0.4990 +8997 9181 0.4510 +8997 9229 0.6540 +8997 9262 0.7240 +8997 9263 0.7370 +8997 9448 0.4090 +8997 9627 0.4310 +8997 9630 0.6600 +8997 9901 0.4310 +8997 10161 0.4990 +8997 10316 0.4990 +8997 10369 0.5400 +8997 10672 0.4550 +8997 10681 0.5070 +8997 10800 0.4990 +8997 10874 0.4990 +8997 10886 0.5270 +8997 10887 0.4990 +8997 10911 0.4990 +8997 22829 0.5190 +8997 22871 0.6400 +8997 22899 0.4540 +8997 23365 0.5970 +8997 23433 0.4250 +8997 23566 0.4990 +8997 23604 0.8590 +8997 23620 0.5300 +8997 25791 0.5360 +8997 26052 0.4460 +8997 26499 0.4470 +8997 27185 0.8380 +8997 27334 0.4990 +8997 29933 0.4990 +8997 50944 0.5800 +8997 51738 0.4990 +8997 51764 0.5670 +8997 51806 0.4740 +8997 54331 0.4990 +8997 54413 0.5530 +8997 55970 0.4990 +8997 56413 0.4990 +8997 56923 0.5500 +8997 57030 0.7150 +8997 57105 0.5000 +8997 57121 0.5070 +8997 57502 0.5720 +8997 57514 0.8770 +8997 57555 0.5500 +8997 58480 0.4260 +8997 59345 0.4990 +8997 60675 0.4990 +8997 64106 0.5120 +8997 64283 0.5070 +8997 81565 0.5450 +8997 84109 0.4990 +8997 84432 0.5000 +8997 84539 0.5130 +8997 84634 0.4990 +8997 84687 0.5110 +8997 85358 0.4710 +8997 85366 0.4250 +8997 91860 0.4770 +8997 94233 0.5200 +8997 94235 0.4990 +8997 128674 0.5000 +8997 129521 0.5260 +8997 140679 0.6320 +8997 163688 0.4740 +8997 222545 0.4990 +8997 257313 0.5010 +8997 338557 0.4990 +8997 340156 0.5420 +8997 347148 0.4990 +8997 387129 0.5490 +8997 594857 0.4990 +8999 9021 0.4560 +8999 84336 0.4450 +8999 345079 0.4650 +9001 10120 0.8000 +9001 10121 0.8800 +9001 10243 0.5470 +9001 10540 0.8210 +9001 10671 0.8000 +9001 11054 0.4260 +9001 11258 0.8090 +9001 23551 0.4680 +9001 29803 0.9340 +9001 51164 0.8000 +9001 54806 0.9260 +9001 55860 0.8310 +9001 55879 0.9150 +9001 64837 0.9140 +9001 79800 0.4290 +9001 84516 0.8150 +9001 89953 0.8880 +9001 147700 0.9020 +9001 474383 0.5830 +9002 9630 0.5330 +9002 10316 0.4280 +9002 10672 0.9120 +9002 10681 0.5040 +9002 10800 0.4490 +9002 10874 0.5110 +9002 10911 0.4990 +9002 11098 0.4180 +9002 23236 0.5260 +9002 51738 0.5040 +9002 51764 0.5360 +9002 54331 0.4990 +9002 54674 0.5760 +9002 55970 0.7260 +9002 56923 0.4130 +9002 57105 0.5590 +9002 57491 0.7440 +9002 59345 0.4990 +9002 60675 0.5070 +9002 64005 0.6060 +9002 84432 0.4990 +9002 94235 0.5000 +9002 115557 0.4990 +9002 129521 0.4990 +9002 257313 0.5550 +9002 284434 0.4230 +9002 594857 0.4990 +9013 9014 0.9990 +9013 9015 0.9990 +9013 9031 0.5760 +9013 9045 0.4830 +9013 9112 0.4390 +9013 9188 0.5580 +9013 9219 0.4180 +9013 9533 0.6160 +9013 9684 0.4730 +9013 10514 0.5790 +9013 10849 0.7570 +9013 10919 0.4270 +9013 11201 0.7060 +9013 23163 0.4660 +9013 23378 0.4270 +9013 23411 0.4410 +9013 23451 0.4990 +9013 23644 0.5380 +9013 25885 0.8180 +9013 25909 0.4060 +9013 29990 0.4410 +9013 30834 0.5750 +9013 51082 0.6300 +9013 53615 0.4130 +9013 54145 0.4050 +9013 54552 0.4180 +9013 54700 0.9530 +9013 54815 0.4110 +9013 55738 0.6330 +9013 57504 0.4090 +9013 64425 0.8230 +9013 64772 0.4690 +9013 64852 0.4480 +9013 79101 0.9990 +9013 80198 0.5120 +9013 83860 0.4930 +9013 84172 0.7530 +9013 85236 0.4050 +9013 85403 0.5670 +9013 90324 0.4520 +9013 94239 0.4500 +9013 114790 0.5070 +9013 128312 0.4050 +9013 221830 0.7700 +9013 255626 0.4160 +9013 283899 0.4540 +9013 284119 0.5490 +9013 404672 0.5370 +9013 653604 0.4850 +9014 9015 0.9990 +9014 9031 0.5040 +9014 9188 0.5320 +9014 9533 0.6260 +9014 9816 0.5890 +9014 10514 0.5040 +9014 10849 0.8220 +9014 11201 0.6650 +9014 23378 0.4250 +9014 23411 0.4290 +9014 23451 0.5070 +9014 25885 0.7500 +9014 26155 0.8250 +9014 28990 0.8060 +9014 29841 0.4760 +9014 30834 0.5890 +9014 51082 0.7440 +9014 54700 0.9230 +9014 55096 0.4510 +9014 57504 0.4110 +9014 64425 0.7370 +9014 79101 0.9990 +9014 80003 0.5400 +9014 80764 0.8080 +9014 84172 0.7040 +9014 84365 0.4280 +9014 85403 0.6310 +9014 94239 0.4450 +9014 219493 0.4180 +9014 221830 0.6870 +9014 284119 0.4990 +9014 404672 0.5150 +9014 653604 0.4350 +9015 9031 0.5460 +9015 9045 0.5910 +9015 9188 0.6040 +9015 9533 0.6800 +9015 10514 0.6280 +9015 10849 0.9590 +9015 10919 0.4210 +9015 11201 0.9060 +9015 23029 0.4530 +9015 23411 0.4270 +9015 23451 0.5010 +9015 25885 0.7920 +9015 30834 0.5990 +9015 51082 0.5960 +9015 54700 0.9510 +9015 55814 0.4470 +9015 57504 0.4050 +9015 64425 0.9720 +9015 79101 0.9990 +9015 79802 0.4430 +9015 83540 0.4190 +9015 84172 0.7580 +9015 84450 0.5310 +9015 85403 0.6580 +9015 92345 0.4210 +9015 92747 0.4950 +9015 94239 0.4340 +9015 221830 0.6860 +9015 284119 0.5080 +9015 404672 0.5340 +9015 653604 0.4780 +9016 9481 0.4990 +9016 9737 0.4710 +9016 10105 0.5050 +9016 11315 0.6520 +9016 23787 0.4300 +9016 51634 0.5920 +9016 60506 0.6470 +9016 83548 0.6740 +9016 90167 0.5050 +9016 137902 0.4750 +9016 145482 0.4150 +9016 169966 0.5140 +9016 257202 0.5730 +9016 401612 0.4290 +9016 493869 0.5750 +9019 9402 0.5040 +9019 9927 0.4510 +9019 25874 0.4670 +9019 54332 0.8410 +9019 55914 0.4290 +9019 57716 0.8170 +9019 79628 0.4790 +9019 122945 0.5910 +9019 140885 0.8220 +9019 148581 0.4090 +9020 9039 0.4180 +9020 9040 0.4030 +9020 10000 0.5540 +9020 10010 0.4290 +9020 10189 0.5620 +9020 10197 0.4270 +9020 10213 0.4770 +9020 10231 0.4240 +9020 10454 0.9260 +9020 10673 0.7930 +9020 10758 0.5720 +9020 11123 0.4230 +9020 11140 0.4790 +9020 11266 0.4980 +9020 23118 0.9220 +9020 23291 0.4990 +9020 29110 0.6280 +9020 51330 0.6190 +9020 56957 0.4320 +9020 57162 0.4090 +9020 79705 0.4580 +9020 80829 0.4660 +9020 84433 0.4290 +9020 115650 0.8790 +9020 122706 0.4100 +9020 143471 0.4080 +9020 246330 0.6640 +9020 257397 0.9050 +9021 9039 0.4990 +9021 9180 0.4110 +9021 9306 0.6400 +9021 9314 0.4530 +9021 9332 0.4470 +9021 9370 0.4840 +9021 9466 0.5900 +9021 9616 0.8860 +9021 9636 0.4200 +9021 9641 0.4320 +9021 9655 0.8440 +9021 9827 0.4200 +9021 9978 0.5400 +9021 10135 0.4060 +9021 10379 0.4570 +9021 10401 0.7230 +9021 10461 0.6470 +9021 10563 0.5090 +9021 10628 0.5570 +9021 11213 0.4990 +9021 11274 0.4710 +9021 22863 0.5460 +9021 22904 0.4690 +9021 23327 0.4160 +9021 23412 0.4990 +9021 23533 0.6350 +9021 23586 0.4660 +9021 23643 0.5760 +9021 25805 0.4590 +9021 27036 0.6970 +9021 28952 0.4990 +9021 28991 0.4990 +9021 29099 0.4990 +9021 29110 0.5760 +9021 29126 0.4670 +9021 30009 0.4560 +9021 30837 0.7240 +9021 30849 0.5400 +9021 50616 0.4950 +9021 50943 0.5240 +9021 51088 0.4240 +9021 51122 0.4990 +9021 51284 0.4300 +9021 51397 0.5000 +9021 51434 0.4160 +9021 53832 0.4650 +9021 54106 0.4040 +9021 54939 0.4990 +9021 54951 0.5000 +9021 55626 0.4890 +9021 55697 0.5450 +9021 55832 0.5120 +9021 56729 0.4860 +9021 58480 0.4480 +9021 64127 0.4570 +9021 64135 0.4380 +9021 64332 0.6260 +9021 64581 0.5660 +9021 64651 0.5130 +9021 79004 0.4230 +9021 80176 0.4830 +9021 84166 0.4270 +9021 84174 0.5710 +9021 84666 0.5050 +9021 84676 0.4060 +9021 112744 0.4040 +9021 114548 0.4060 +9021 114907 0.6070 +9021 116379 0.4570 +9021 118980 0.4020 +9021 122809 0.7110 +9021 137902 0.4520 +9021 140739 0.4990 +9021 146850 0.5490 +9021 149951 0.4990 +9021 150684 0.4990 +9021 158405 0.4520 +9021 170622 0.5000 +9021 246778 0.5140 +9021 284119 0.6050 +9021 415116 0.4200 +9021 441925 0.5400 +9021 110117498 0.5400 +9022 9784 0.4600 +9022 9791 0.4490 +9022 9924 0.4240 +9022 11326 0.5180 +9022 57111 0.6200 +9022 91754 0.4300 +9022 225689 0.9770 +9023 9213 0.4440 +9023 9415 0.5440 +9023 9420 0.9890 +9023 9619 0.4690 +9023 9636 0.4390 +9023 10280 0.8880 +9023 10410 0.4500 +9023 10858 0.9780 +9023 11161 0.8590 +9023 11283 0.4150 +9023 22937 0.4820 +9023 26166 0.4910 +9023 27430 0.6010 +9023 50814 0.7680 +9023 51004 0.4490 +9023 51191 0.4440 +9023 51302 0.8410 +9023 51478 0.9180 +9023 51805 0.5060 +9023 55239 0.4370 +9023 56603 0.4150 +9023 57412 0.4910 +9023 57834 0.4150 +9023 66002 0.4150 +9023 79152 0.7030 +9023 80270 0.8870 +9023 90933 0.4250 +9023 91543 0.5240 +9023 91607 0.4640 +9023 91734 0.5780 +9023 93517 0.6500 +9023 126410 0.4150 +9023 137682 0.4790 +9023 199974 0.4170 +9023 260293 0.4230 +9023 284541 0.4150 +9023 285440 0.4250 +9023 286151 0.5120 +9023 340390 0.4790 +9023 347475 0.6920 +9023 387700 0.4230 +9023 643418 0.4260 +9024 9088 0.5520 +9024 10393 0.5050 +9024 10419 0.5170 +9024 10801 0.4090 +9024 26289 0.5040 +9024 51343 0.5350 +9024 51433 0.4080 +9024 51668 0.4240 +9024 51719 0.4800 +9024 54461 0.5310 +9024 55964 0.4930 +9024 90120 0.4010 +9024 124404 0.4210 +9024 266812 0.4660 +9024 494551 0.5450 +9025 9156 0.5520 +9025 9246 0.7880 +9025 9271 0.5450 +9025 9320 0.5610 +9025 9401 0.4010 +9025 9412 0.4450 +9025 9533 0.4040 +9025 9577 0.6410 +9025 9636 0.4010 +9025 9656 0.9990 +9025 9682 0.8380 +9025 9810 0.5280 +9025 9960 0.5770 +9025 10111 0.7130 +9025 10213 0.4150 +9025 10299 0.4040 +9025 10459 0.5260 +9025 10477 0.5530 +9025 10524 0.7800 +9025 10537 0.4990 +9025 10600 0.4530 +9025 11073 0.6720 +9025 11200 0.8970 +9025 22976 0.7930 +9025 23030 0.6220 +9025 23070 0.8620 +9025 23137 0.4100 +9025 23304 0.4270 +9025 23650 0.4150 +9025 26013 0.6380 +9025 26127 0.5220 +9025 27338 0.7850 +9025 29086 0.6280 +9025 29089 0.4540 +9025 29843 0.4290 +9025 50485 0.4820 +9025 50945 0.4240 +9025 51366 0.4570 +9025 51444 0.6220 +9025 51588 0.9080 +9025 51720 0.9730 +9025 54145 0.5960 +9025 54537 0.4300 +9025 54840 0.4190 +9025 54993 0.4240 +9025 55135 0.7650 +9025 55183 0.6790 +9025 55215 0.5300 +9025 55284 0.4650 +9025 55526 0.8390 +9025 55611 0.7550 +9025 55658 0.6060 +9025 55753 0.8340 +9025 55964 0.5940 +9025 56254 0.5370 +9025 56852 0.7370 +9025 57464 0.5070 +9025 57634 0.4190 +9025 57697 0.4130 +9025 63876 0.4050 +9025 63967 0.4220 +9025 64421 0.5960 +9025 78990 0.4180 +9025 79184 0.7960 +9025 79648 0.4470 +9025 79728 0.5210 +9025 79840 0.5560 +9025 80143 0.5280 +9025 83746 0.6780 +9025 84083 0.4400 +9025 84101 0.4060 +9025 84126 0.5500 +9025 84142 0.8460 +9025 84464 0.4110 +9025 85236 0.5950 +9025 85369 0.5310 +9025 90522 0.5070 +9025 128312 0.6060 +9025 143279 0.4660 +9025 165918 0.9970 +9025 199990 0.4080 +9025 221037 0.5000 +9025 221302 0.5430 +9025 246243 0.4110 +9025 254225 0.6810 +9025 255626 0.6160 +9025 257218 0.4770 +9025 387522 0.5560 +9025 387893 0.5810 +9025 440093 0.4370 +9025 440686 0.4500 +9025 653604 0.4500 +9026 9185 0.4480 +9026 9322 0.4290 +9026 9475 0.4100 +9026 9632 0.5100 +9026 9685 0.7290 +9026 9698 0.5400 +9026 9829 0.7320 +9026 9892 0.9620 +9026 10053 0.5370 +9026 10092 0.5410 +9026 10094 0.4840 +9026 10096 0.4380 +9026 10097 0.5940 +9026 10403 0.4250 +9026 10618 0.5590 +9026 10717 0.5490 +9026 10928 0.5120 +9026 22848 0.4980 +9026 22905 0.9790 +9026 23075 0.4690 +9026 23149 0.8630 +9026 23208 0.5820 +9026 23431 0.5390 +9026 23557 0.5000 +9026 25977 0.7180 +9026 26145 0.4290 +9026 26258 0.4990 +9026 27131 0.5080 +9026 27347 0.5660 +9026 28988 0.6000 +9026 29126 0.4420 +9026 29924 0.8790 +9026 30011 0.5660 +9026 50618 0.5500 +9026 51429 0.7100 +9026 54885 0.5170 +9026 54918 0.4990 +9026 54976 0.5790 +9026 55040 0.9710 +9026 55330 0.4990 +9026 55644 0.6380 +9026 55845 0.5050 +9026 56922 0.6690 +9026 57180 0.4070 +9026 57608 0.4750 +9026 58513 0.6210 +9026 64431 0.4260 +9026 81567 0.5080 +9026 83940 0.4450 +9026 84062 0.5010 +9026 84174 0.9510 +9026 84660 0.8730 +9026 85021 0.5250 +9026 91683 0.5970 +9026 95681 0.4450 +9026 112755 0.4320 +9026 115548 0.8460 +9026 120892 0.4030 +9026 130013 0.6310 +9026 130340 0.5180 +9026 147179 0.5980 +9026 150350 0.4920 +9026 286451 0.5010 +9026 388552 0.4990 +9027 9197 0.5430 +9027 9978 0.4180 +9027 11136 0.4530 +9027 23621 0.7990 +9027 51056 0.9000 +9027 51126 0.4200 +9027 60560 0.8090 +9027 79903 0.4150 +9027 84795 0.6240 +9027 114799 0.4030 +9027 157570 0.4060 +9028 9863 0.4500 +9028 25807 0.5590 +9028 26140 0.4250 +9028 55486 0.6860 +9028 57414 0.5960 +9028 64285 0.6410 +9028 79651 0.6100 +9028 83887 0.4690 +9028 84219 0.4140 +9028 84236 0.7230 +9028 89941 0.4280 +9028 124401 0.4180 +9028 161198 0.4250 +9028 197335 0.4390 +9028 260425 0.6180 +9028 337867 0.5090 +9031 9188 0.9160 +9031 9275 0.7220 +9031 9289 0.4260 +9031 9533 0.5170 +9031 9557 0.5450 +9031 9569 0.7830 +9031 9611 0.5330 +9031 9656 0.5800 +9031 9734 0.4910 +9031 9738 0.5910 +9031 9790 0.4800 +9031 10036 0.5990 +9031 10042 0.7540 +9031 10155 0.4030 +9031 10498 0.5100 +9031 10499 0.4780 +9031 10514 0.9460 +9031 10847 0.4870 +9031 10849 0.5640 +9031 10951 0.6140 +9031 11044 0.4540 +9031 11168 0.4300 +9031 11176 0.7380 +9031 11177 0.9460 +9031 11198 0.5380 +9031 11201 0.4280 +9031 11335 0.4340 +9031 22938 0.5140 +9031 22985 0.4120 +9031 23076 0.5700 +9031 23246 0.4040 +9031 23451 0.9190 +9031 23476 0.6930 +9031 25885 0.5890 +9031 26608 0.7650 +9031 27434 0.4260 +9031 27443 0.8740 +9031 29117 0.4250 +9031 29889 0.4230 +9031 29994 0.5990 +9031 30834 0.5030 +9031 51082 0.5410 +9031 51085 0.6460 +9031 51547 0.5610 +9031 51773 0.9500 +9031 54107 0.9180 +9031 54108 0.8780 +9031 54145 0.4600 +9031 54606 0.5470 +9031 55193 0.5330 +9031 55341 0.4460 +9031 55599 0.5660 +9031 55636 0.6360 +9031 55695 0.5210 +9031 55766 0.4400 +9031 56655 0.4070 +9031 56852 0.4140 +9031 57050 0.5000 +9031 57109 0.4500 +9031 57634 0.5540 +9031 57680 0.5600 +9031 60681 0.7050 +9031 64425 0.7440 +9031 79101 0.5250 +9031 79369 0.4340 +9031 79813 0.4450 +9031 79915 0.4240 +9031 79954 0.4730 +9031 80205 0.4010 +9031 81614 0.4230 +9031 81620 0.4290 +9031 84128 0.4310 +9031 84172 0.5820 +9031 84181 0.4380 +9031 85236 0.4680 +9031 94239 0.5010 +9031 114791 0.4340 +9031 123606 0.4180 +9031 124944 0.7720 +9031 128312 0.4600 +9031 134285 0.4800 +9031 135892 0.5510 +9031 155368 0.4510 +9031 221830 0.5360 +9031 255626 0.4740 +9031 284058 0.4220 +9031 353274 0.4060 +9031 440093 0.5000 +9031 440686 0.5000 +9031 474382 0.4610 +9031 653604 0.6920 +9031 100529209 0.5750 +9032 10103 0.8060 +9032 29974 0.5780 +9032 92211 0.7840 +9032 132158 0.4510 +9032 153129 0.4740 +9032 652968 0.4600 +9033 9311 0.4730 +9033 9709 0.6050 +9033 10021 0.4720 +9033 10133 0.4260 +9033 10343 0.4330 +9033 10399 0.4010 +9033 10456 0.5290 +9033 22953 0.4120 +9033 23632 0.4970 +9033 50832 0.4030 +9033 50834 0.5880 +9033 51393 0.5230 +9033 54795 0.6230 +9033 54822 0.5420 +9033 55283 0.6080 +9033 55503 0.5450 +9033 56302 0.5570 +9033 57192 0.6220 +9033 59341 0.6120 +9033 79054 0.6000 +9033 80036 0.5660 +9033 80834 0.6880 +9033 80835 0.7180 +9033 83756 0.6730 +9033 91624 0.5300 +9033 119395 0.4550 +9033 133060 0.7170 +9033 140803 0.5020 +9033 162514 0.5480 +9033 168507 0.9840 +9033 200894 0.4640 +9033 222545 0.4110 +9033 255022 0.5400 +9033 255231 0.4570 +9033 259285 0.5780 +9033 259287 0.5600 +9033 259289 0.4020 +9033 259292 0.5200 +9033 259294 0.4300 +9033 259296 0.5710 +9033 282991 0.4910 +9033 338398 0.5890 +9033 342372 0.9990 +9033 346562 0.6840 +9033 353164 0.5620 +9034 9173 0.4010 +9034 9235 0.4350 +9034 9308 0.5040 +9034 9332 0.4780 +9034 9370 0.4830 +9034 9436 0.5070 +9034 9437 0.5830 +9034 9547 0.5890 +9034 10004 0.5790 +9034 10135 0.6280 +9034 10219 0.5200 +9034 10344 0.5260 +9034 10538 0.4980 +9034 10563 0.8830 +9034 10663 0.5260 +9034 10673 0.4700 +9034 10803 0.5920 +9034 10850 0.8040 +9034 11116 0.7590 +9034 11251 0.5700 +9034 22914 0.4170 +9034 23308 0.4060 +9034 23569 0.4840 +9034 23765 0.5800 +9034 26191 0.4510 +9034 27033 0.4410 +9034 27087 0.4310 +9034 29121 0.5260 +9034 29126 0.5590 +9034 29851 0.7550 +9034 30009 0.7370 +9034 50489 0.4560 +9034 50615 0.4490 +9034 50616 0.7730 +9034 50943 0.7270 +9034 51094 0.4550 +9034 51284 0.4310 +9034 51554 0.5330 +9034 51561 0.5210 +9034 54106 0.4040 +9034 55801 0.5400 +9034 55975 0.4730 +9034 58191 0.9760 +9034 58985 0.4040 +9034 60468 0.5680 +9034 64127 0.6440 +9034 64581 0.4230 +9034 79602 0.4630 +9034 80381 0.4180 +9034 81793 0.4680 +9034 83417 0.4310 +9034 84868 0.5050 +9034 85480 0.4180 +9034 89857 0.5030 +9034 90865 0.4710 +9034 112744 0.6970 +9034 117289 0.5800 +9034 132014 0.5820 +9034 149233 0.8010 +9034 151888 0.5610 +9034 169355 0.5330 +9034 201633 0.4600 +9034 245928 0.5040 +9034 414062 0.4350 +9034 414325 0.9670 +9034 728358 0.5180 +9034 100289462 0.6140 +9037 9228 0.4380 +9037 9378 0.5300 +9037 9423 0.4130 +9037 9732 0.4160 +9037 10154 0.6090 +9037 10371 0.4940 +9037 10755 0.5730 +9037 22854 0.4340 +9037 22871 0.5800 +9037 23129 0.6060 +9037 23245 0.6090 +9037 23266 0.4390 +9037 23654 0.6570 +9037 50834 0.8520 +9037 51725 0.5580 +9037 54413 0.6370 +9037 54437 0.9330 +9037 54549 0.5330 +9037 55558 0.8460 +9037 55737 0.4910 +9037 57502 0.6510 +9037 64067 0.4620 +9037 64326 0.5130 +9037 79816 0.4340 +9037 84628 0.4140 +9037 84966 0.4110 +9037 91584 0.4700 +9037 139411 0.4860 +9037 140733 0.4520 +9037 145173 0.4190 +9037 152330 0.6850 +9037 157807 0.4160 +9038 9287 0.6820 +9038 23538 0.5240 +9038 26002 0.9050 +9038 26188 0.5350 +9038 26692 0.4140 +9038 50834 0.4280 +9038 83551 0.4880 +9038 119692 0.4490 +9038 119774 0.4910 +9038 125958 0.4580 +9038 132112 0.4310 +9038 134860 0.4590 +9038 134864 0.4720 +9038 219981 0.4840 +9038 219982 0.4780 +9038 219983 0.4260 +9038 319100 0.6180 +9038 390054 0.4420 +9038 390058 0.4150 +9038 390067 0.4480 +9038 390195 0.4420 +9038 390260 0.4150 +9038 442185 0.4380 +9038 442186 0.4640 +9039 9040 0.9990 +9039 9054 0.4390 +9039 9097 0.4740 +9039 9140 0.5540 +9039 9246 0.6670 +9039 9306 0.5010 +9039 9318 0.5950 +9039 9320 0.4660 +9039 9533 0.5250 +9039 9616 0.8750 +9039 9636 0.4610 +9039 9655 0.5180 +9039 9817 0.5530 +9039 9903 0.6170 +9039 9978 0.9490 +9039 10054 0.4770 +9039 10055 0.5250 +9039 10116 0.5180 +9039 10213 0.7530 +9039 10238 0.5240 +9039 10243 0.4580 +9039 10324 0.5040 +9039 10477 0.7070 +9039 10489 0.4990 +9039 10517 0.5460 +9039 10533 0.8260 +9039 10537 0.5070 +9039 10550 0.5990 +9039 10617 0.4020 +9039 10628 0.5360 +9039 10920 0.5060 +9039 10980 0.4760 +9039 10987 0.8820 +9039 11065 0.7980 +9039 11091 0.5180 +9039 11146 0.7450 +9039 11275 0.6360 +9039 11345 0.7470 +9039 23014 0.5290 +9039 23038 0.5320 +9039 23113 0.6660 +9039 23142 0.6810 +9039 23194 0.5180 +9039 23291 0.8600 +9039 23412 0.5170 +9039 23510 0.4340 +9039 23710 0.4910 +9039 25793 0.5820 +9039 25879 0.5390 +9039 26043 0.5010 +9039 26094 0.5090 +9039 26118 0.5270 +9039 26190 0.5680 +9039 26224 0.6040 +9039 26232 0.4990 +9039 26234 0.5990 +9039 26235 0.5700 +9039 26249 0.6120 +9039 26259 0.8670 +9039 26263 0.5110 +9039 26267 0.5010 +9039 26268 0.5150 +9039 26270 0.4990 +9039 26272 0.5450 +9039 27252 0.5160 +9039 27304 0.5310 +9039 27338 0.7140 +9039 28952 0.5230 +9039 28991 0.5030 +9039 29099 0.5090 +9039 50717 0.5340 +9039 51067 0.7530 +9039 51069 0.4500 +9039 51074 0.5250 +9039 51088 0.5160 +9039 51122 0.6060 +9039 51138 0.6050 +9039 51397 0.5560 +9039 51465 0.6910 +9039 51506 0.5230 +9039 51514 0.6160 +9039 51540 0.4180 +9039 51569 0.7180 +9039 51619 0.6480 +9039 51665 0.5140 +9039 51666 0.5140 +9039 51676 0.5140 +9039 51725 0.5220 +9039 53339 0.6080 +9039 54165 0.8930 +9039 54461 0.5380 +9039 54778 0.4010 +9039 54850 0.5180 +9039 54876 0.4990 +9039 54926 0.7590 +9039 54939 0.5410 +9039 54951 0.6280 +9039 55034 0.5110 +9039 55175 0.5210 +9039 55208 0.7650 +9039 55236 0.7120 +9039 55284 0.6610 +9039 55294 0.6300 +9039 55327 0.4040 +9039 55336 0.5180 +9039 55527 0.5140 +9039 55585 0.5690 +9039 55696 0.6870 +9039 55827 0.5540 +9039 55832 0.6440 +9039 55884 0.5390 +9039 55958 0.5830 +9039 56929 0.5370 +9039 56995 0.4990 +9039 57542 0.5070 +9039 63893 0.6160 +9039 64326 0.5360 +9039 64410 0.5130 +9039 64422 0.6740 +9039 65264 0.7040 +9039 79016 0.5340 +9039 79269 0.6070 +9039 79754 0.5140 +9039 79791 0.4990 +9039 79876 0.9030 +9039 80028 0.5220 +9039 80067 0.5040 +9039 80176 0.5100 +9039 80204 0.7290 +9039 80344 0.5310 +9039 81605 0.7070 +9039 81620 0.4580 +9039 84078 0.5180 +9039 84085 0.5180 +9039 84259 0.8080 +9039 84261 0.5520 +9039 84541 0.5210 +9039 84727 0.5100 +9039 84861 0.5640 +9039 84901 0.4220 +9039 84961 0.4990 +9039 89890 0.5070 +9039 90135 0.5110 +9039 90293 0.5390 +9039 90864 0.5100 +9039 92369 0.5100 +9039 92591 0.5140 +9039 92912 0.5270 +9039 93611 0.4990 +9039 114907 0.5110 +9039 115290 0.4990 +9039 115950 0.4080 +9039 118424 0.6060 +9039 122416 0.5140 +9039 122769 0.6320 +9039 123228 0.8920 +9039 123879 0.7670 +9039 126433 0.4990 +9039 127247 0.4990 +9039 136371 0.5140 +9039 140456 0.5140 +9039 140458 0.5140 +9039 140459 0.5140 +9039 140460 0.5140 +9039 140461 0.5190 +9039 140462 0.5930 +9039 140739 0.9920 +9039 140825 0.4990 +9039 142685 0.5140 +9039 142686 0.5140 +9039 142689 0.5140 +9039 144699 0.5180 +9039 146330 0.5180 +9039 148581 0.6370 +9039 149951 0.5040 +9039 150365 0.5870 +9039 150684 0.5060 +9039 150726 0.4990 +9039 154881 0.4990 +9039 170622 0.5060 +9039 200845 0.5060 +9039 201456 0.5010 +9039 221184 0.4160 +9039 222235 0.5180 +9039 283807 0.5180 +9039 285231 0.5090 +9039 286187 0.5210 +9039 387082 0.5690 +9039 390594 0.5030 +9039 401036 0.5140 +9039 100131187 0.4060 +9040 9097 0.4610 +9040 9306 0.4990 +9040 9318 0.7720 +9040 9343 0.4560 +9040 9520 0.5780 +9040 9616 0.8790 +9040 9618 0.4710 +9040 9636 0.4080 +9040 9655 0.4990 +9040 9730 0.4160 +9040 9817 0.5980 +9040 9886 0.7580 +9040 9903 0.6100 +9040 9958 0.4300 +9040 9978 0.9990 +9040 10054 0.6810 +9040 10055 0.7980 +9040 10075 0.4640 +9040 10116 0.5060 +9040 10121 0.4580 +9040 10155 0.6720 +9040 10213 0.6940 +9040 10238 0.5070 +9040 10273 0.4950 +9040 10324 0.5030 +9040 10517 0.4990 +9040 10533 0.7100 +9040 10537 0.4340 +9040 10641 0.5190 +9040 10920 0.5710 +9040 10980 0.8570 +9040 10987 0.9420 +9040 11047 0.4700 +9040 11091 0.5210 +9040 11140 0.4930 +9040 11188 0.5310 +9040 11275 0.6130 +9040 11315 0.6120 +9040 22827 0.4580 +9040 22872 0.4050 +9040 23014 0.6360 +9040 23038 0.5210 +9040 23113 0.6910 +9040 23142 0.8960 +9040 23194 0.5120 +9040 23276 0.6400 +9040 23291 0.6500 +9040 23363 0.5310 +9040 23412 0.5080 +9040 23510 0.4270 +9040 25793 0.7750 +9040 25820 0.4150 +9040 25879 0.5220 +9040 26043 0.6820 +9040 26094 0.5000 +9040 26190 0.5660 +9040 26224 0.5740 +9040 26232 0.5090 +9040 26234 0.4990 +9040 26235 0.5190 +9040 26249 0.5950 +9040 26259 0.5470 +9040 26263 0.5100 +9040 26267 0.5090 +9040 26268 0.5460 +9040 26270 0.5060 +9040 26272 0.5110 +9040 27252 0.6220 +9040 27304 0.4870 +9040 27338 0.5190 +9040 28952 0.5950 +9040 28991 0.5190 +9040 29099 0.5170 +9040 50717 0.6360 +9040 50813 0.8270 +9040 51088 0.5060 +9040 51122 0.5070 +9040 51138 0.8540 +9040 51185 0.5030 +9040 51377 0.4640 +9040 51397 0.5130 +9040 51444 0.4120 +9040 51465 0.4510 +9040 51506 0.8670 +9040 51514 0.7100 +9040 51569 0.8020 +9040 51725 0.4990 +9040 53339 0.7990 +9040 54165 0.9990 +9040 54461 0.5380 +9040 54778 0.5450 +9040 54850 0.5120 +9040 54876 0.5140 +9040 54939 0.5160 +9040 54951 0.5080 +9040 55175 0.4990 +9040 55208 0.9590 +9040 55236 0.8370 +9040 55294 0.6350 +9040 55336 0.6420 +9040 55527 0.5570 +9040 55827 0.6310 +9040 55832 0.9460 +9040 55884 0.5080 +9040 55958 0.6400 +9040 56929 0.5240 +9040 56995 0.4990 +9040 57154 0.6740 +9040 57542 0.7330 +9040 59349 0.4030 +9040 64326 0.5470 +9040 64344 0.4990 +9040 64410 0.5150 +9040 64708 0.7900 +9040 64750 0.4990 +9040 65018 0.4090 +9040 79016 0.7090 +9040 79269 0.5240 +9040 79791 0.5090 +9040 79876 0.9230 +9040 80028 0.5080 +9040 80067 0.5880 +9040 80204 0.7260 +9040 80344 0.6610 +9040 81620 0.5620 +9040 83737 0.4420 +9040 83987 0.4990 +9040 84078 0.7000 +9040 84085 0.6330 +9040 84259 0.9450 +9040 84261 0.5370 +9040 84541 0.5030 +9040 84861 0.6870 +9040 84961 0.5260 +9040 89890 0.5980 +9040 90135 0.5170 +9040 90293 0.6870 +9040 90864 0.5220 +9040 93611 0.5120 +9040 114907 0.4990 +9040 115290 0.7230 +9040 116138 0.4480 +9040 118424 0.4320 +9040 122416 0.5530 +9040 122769 0.5480 +9040 123228 0.8360 +9040 123879 0.9660 +9040 126433 0.4990 +9040 140739 0.5110 +9040 140825 0.5090 +9040 144699 0.5500 +9040 146330 0.5260 +9040 149951 0.5330 +9040 150365 0.6730 +9040 150684 0.5250 +9040 150726 0.5100 +9040 154881 0.4990 +9040 170622 0.5130 +9040 200845 0.7200 +9040 201456 0.4990 +9040 222235 0.5120 +9040 253738 0.6180 +9040 283807 0.5300 +9040 283871 0.4290 +9040 285231 0.4990 +9040 390594 0.4990 +9043 9467 0.4850 +9043 9479 0.7950 +9043 9501 0.4470 +9043 10801 0.4570 +9043 10890 0.7210 +9043 11232 0.5950 +9043 23095 0.4150 +9043 23162 0.6140 +9043 23542 0.7680 +9043 30816 0.4390 +9043 50937 0.6130 +9043 55686 0.5890 +9043 57184 0.4650 +9043 60412 0.6180 +9043 64770 0.4240 +9043 64837 0.5850 +9043 89869 0.5800 +9043 89953 0.5790 +9043 90809 0.9760 +9043 91653 0.5700 +9043 147700 0.4640 +9043 196383 0.4370 +9043 220047 0.5390 +9043 221079 0.4800 +9043 255798 0.6320 +9043 284359 0.5710 +9043 353116 0.4440 +9043 405754 0.4360 +9043 100271849 0.4990 +9044 9063 0.4150 +9044 9440 0.4140 +9044 9519 0.8700 +9044 9557 0.4670 +9044 9969 0.6610 +9044 9984 0.4180 +9044 9988 0.6260 +9044 10054 0.5360 +9044 10589 0.9560 +9044 10856 0.4590 +9044 11177 0.4210 +9044 11198 0.4090 +9044 22916 0.5500 +9044 23047 0.4180 +9044 23063 0.4200 +9044 23064 0.4130 +9044 23244 0.5680 +9044 23310 0.4050 +9044 23389 0.4410 +9044 23469 0.4570 +9044 25836 0.5660 +9044 25957 0.5590 +9044 26046 0.5430 +9044 29028 0.4140 +9044 50485 0.4040 +9044 51616 0.4270 +9044 54454 0.5800 +9044 54617 0.4600 +9044 54892 0.4150 +9044 55015 0.4480 +9044 55183 0.5090 +9044 55206 0.5880 +9044 55814 0.6850 +9044 57448 0.5030 +9044 57649 0.5910 +9044 64210 0.4180 +9044 114803 0.4520 +9044 115426 0.4010 +9044 125476 0.4570 +9044 140890 0.4560 +9044 197131 0.4530 +9044 253959 0.4460 +9044 387332 0.9290 +9044 399949 0.8110 +9045 9132 0.4890 +9045 9141 0.6510 +9045 9147 0.8090 +9045 9188 0.4670 +9045 9312 0.4890 +9045 9343 0.6920 +9045 9349 0.9990 +9045 9401 0.5310 +9045 9584 0.4390 +9045 9636 0.5940 +9045 9652 0.4320 +9045 9669 0.9590 +9045 9732 0.9760 +9045 9789 0.4220 +9045 9858 0.6650 +9045 9933 0.4950 +9045 10061 0.4930 +9045 10200 0.4160 +9045 10213 0.4500 +9045 10236 0.4790 +9045 10399 0.9990 +9045 10412 0.9390 +9045 10430 0.8180 +9045 10438 0.6420 +9045 10473 0.8230 +9045 10480 0.7930 +9045 10492 0.5420 +9045 10528 0.5120 +9045 10537 0.5910 +9045 10557 0.6630 +9045 10574 0.6400 +9045 10575 0.7320 +9045 10576 0.6130 +9045 10664 0.6040 +9045 10666 0.4160 +9045 10694 0.6500 +9045 10767 0.8700 +9045 10952 0.9490 +9045 10969 0.9460 +9045 10985 0.8790 +9045 10988 0.5440 +9045 11056 0.4560 +9045 11222 0.8390 +9045 11224 0.9990 +9045 22894 0.4210 +9045 22927 0.8430 +9045 22948 0.5920 +9045 23029 0.5520 +9045 23076 0.8580 +9045 23148 0.5680 +9045 23173 0.4620 +9045 23204 0.9370 +9045 23212 0.6580 +9045 23246 0.9480 +9045 23378 0.4610 +9045 23478 0.4250 +9045 23480 0.8900 +9045 23481 0.9310 +9045 23517 0.6580 +9045 23521 0.9990 +9045 23560 0.9840 +9045 23640 0.6240 +9045 23708 0.5320 +9045 25873 0.9990 +9045 25914 0.4460 +9045 26046 0.8120 +9045 26135 0.9790 +9045 26155 0.9040 +9045 26156 0.9070 +9045 26168 0.5210 +9045 26251 0.4890 +9045 26354 0.8470 +9045 26515 0.4670 +9045 26953 0.4710 +9045 26986 0.6110 +9045 27012 0.4890 +9045 27043 0.5830 +9045 28972 0.4540 +9045 28991 0.5780 +9045 28998 0.7560 +9045 29088 0.5730 +9045 29093 0.7890 +9045 29117 0.4930 +9045 29889 0.9320 +9045 29927 0.9030 +9045 29978 0.4380 +9045 29979 0.4760 +9045 29997 0.9000 +9045 50487 0.4160 +9045 50488 0.4050 +9045 50613 0.4290 +9045 51018 0.5470 +9045 51042 0.8890 +9045 51065 0.9870 +9045 51068 0.9240 +9045 51069 0.8000 +9045 51073 0.7250 +9045 51081 0.9300 +9045 51116 0.6850 +9045 51119 0.7040 +9045 51121 0.9980 +9045 51149 0.9800 +9045 51154 0.9590 +9045 51187 0.9890 +9045 51319 0.9760 +9045 51386 0.4570 +9045 51388 0.9010 +9045 51398 0.4520 +9045 51720 0.4190 +9045 53918 0.8630 +9045 54463 0.4580 +9045 54464 0.5180 +9045 54475 0.5450 +9045 54499 0.8160 +9045 54552 0.7870 +9045 54596 0.4930 +9045 54606 0.5400 +9045 54663 0.8850 +9045 54859 0.4050 +9045 54881 0.7180 +9045 54948 0.6610 +9045 54989 0.4280 +9045 55082 0.5170 +9045 55131 0.5550 +9045 55139 0.4340 +9045 55153 0.4750 +9045 55157 0.4110 +9045 55173 0.8190 +9045 55176 0.4910 +9045 55272 0.8330 +9045 55299 0.9060 +9045 55316 0.9810 +9045 55319 0.8030 +9045 55341 0.9000 +9045 55591 0.4390 +9045 55629 0.5090 +9045 55646 0.8140 +9045 55651 0.7030 +9045 55759 0.9390 +9045 55802 0.5120 +9045 55854 0.5520 +9045 55893 0.4220 +9045 56342 0.4260 +9045 56479 0.4890 +9045 56648 0.9020 +9045 56731 0.4170 +9045 56893 0.4440 +9045 56926 0.8160 +9045 56965 0.5440 +9045 57003 0.8150 +9045 57062 0.5970 +9045 57109 0.4230 +9045 57176 0.4530 +9045 57418 0.7320 +9045 57696 0.5320 +9045 58477 0.8180 +9045 58505 0.5270 +9045 60386 0.6120 +9045 60559 0.4610 +9045 60678 0.9120 +9045 63906 0.4210 +9045 63931 0.8150 +9045 64221 0.5120 +9045 64318 0.9080 +9045 64374 0.6280 +9045 64794 0.4190 +9045 64960 0.7810 +9045 64963 0.7840 +9045 64969 0.8590 +9045 65003 0.6880 +9045 65008 0.8410 +9045 65121 0.5540 +9045 65122 0.5540 +9045 65265 0.5310 +9045 79036 0.5160 +9045 79039 0.5370 +9045 79048 0.8160 +9045 79101 0.5070 +9045 79159 0.6440 +9045 79590 0.8050 +9045 79631 0.6540 +9045 79668 0.5440 +9045 79707 0.5060 +9045 79724 0.4370 +9045 79759 0.4440 +9045 80135 0.9500 +9045 80218 0.5500 +9045 80349 0.4440 +9045 81875 0.4230 +9045 81887 0.5150 +9045 84154 0.8280 +9045 84186 0.4910 +9045 84298 0.8430 +9045 84310 0.4730 +9045 84365 0.9380 +9045 84450 0.4370 +9045 84549 0.8920 +9045 84811 0.5690 +9045 84993 0.4510 +9045 85476 0.6520 +9045 90441 0.8910 +9045 90459 0.4030 +9045 90701 0.4090 +9045 91408 0.6010 +9045 91875 0.8220 +9045 92196 0.8080 +9045 93107 0.4890 +9045 93550 0.5910 +9045 93974 0.5180 +9045 114987 0.9670 +9045 115098 0.8680 +9045 116832 0.9820 +9045 117246 0.9320 +9045 121504 0.4160 +9045 124454 0.5960 +9045 124460 0.4080 +9045 126402 0.9280 +9045 140032 0.9710 +9045 140801 0.9960 +9045 143244 0.9110 +9045 143630 0.4290 +9045 146212 0.7590 +9045 147011 0.4270 +9045 154288 0.4160 +9045 164153 0.5910 +9045 169522 0.4890 +9045 170850 0.4890 +9045 200916 0.9850 +9045 201595 0.7920 +9045 203068 0.8550 +9045 203427 0.5240 +9045 221078 0.7760 +9045 222166 0.4150 +9045 254268 0.9780 +9045 283518 0.4890 +9045 283600 0.5240 +9045 285855 0.9850 +9045 339230 0.4570 +9045 342538 0.9130 +9045 343068 0.5540 +9045 343070 0.5540 +9045 345630 0.5020 +9045 347487 0.9760 +9045 387129 0.9420 +9045 390999 0.5540 +9045 391002 0.5540 +9045 400735 0.5540 +9045 400736 0.5540 +9045 440560 0.5540 +9045 440561 0.5540 +9045 441873 0.5540 +9045 619279 0.4160 +9045 641776 0.7050 +9045 642489 0.4390 +9045 642987 0.4160 +9045 643836 0.5550 +9045 643909 0.7050 +9045 645051 0.6840 +9045 645073 0.6840 +9045 645359 0.5540 +9045 653619 0.5540 +9045 692312 0.5730 +9045 728524 0.7050 +9045 729396 0.6840 +9045 729422 0.6840 +9045 729428 0.6840 +9045 729431 0.6840 +9045 729442 0.6840 +9045 729447 0.6840 +9045 729528 0.5540 +9045 100008586 0.6840 +9045 100128731 0.5590 +9045 100132399 0.6840 +9045 100287482 0.6650 +9045 100505478 0.7070 +9045 100526842 0.9960 +9045 100529097 0.9610 +9045 100529239 0.9870 +9045 100996746 0.7050 +9045 101929983 0.5540 +9045 102724473 0.6840 +9045 105180390 0.7050 +9045 105180391 0.7050 +9045 114483834 0.5020 +9046 9048 0.5010 +9046 9402 0.4130 +9046 10750 0.5930 +9046 23039 0.4380 +9046 26060 0.4240 +9046 26128 0.6200 +9046 27436 0.4580 +9046 30011 0.4820 +9046 51744 0.5370 +9046 54440 0.4630 +9046 55578 0.4310 +9046 55915 0.5320 +9046 64096 0.5040 +9046 64098 0.4950 +9046 79019 0.4200 +9046 79041 0.6250 +9046 79837 0.4120 +9046 79930 0.5790 +9046 83706 0.5000 +9046 114836 0.5080 +9046 131450 0.9460 +9046 164684 0.4120 +9046 285489 0.4370 +9047 9402 0.4090 +9047 10451 0.5310 +9047 10746 0.4260 +9047 10750 0.4430 +9047 25759 0.4180 +9047 25788 0.7200 +9047 26060 0.4200 +9047 54952 0.4180 +9047 64172 0.4460 +9047 79834 0.4760 +9047 84766 0.4060 +9047 116211 0.4290 +9047 117157 0.4300 +9047 139170 0.6670 +9047 221656 0.5700 +9048 9076 0.4510 +9048 9260 0.5060 +9048 9672 0.8170 +9048 9846 0.4990 +9048 10818 0.6920 +9048 53358 0.4180 +9048 55715 0.4990 +9048 55816 0.4990 +9048 64096 0.9950 +9048 79054 0.4360 +9048 85358 0.5000 +9048 220164 0.5280 +9048 389400 0.6200 +9048 441549 0.4130 +9048 645369 0.4050 +9049 9101 0.4110 +9049 9804 0.8270 +9049 9915 0.5420 +9049 10728 0.9590 +9049 10963 0.4900 +9049 23746 0.9050 +9049 23770 0.4860 +9049 25989 0.5740 +9049 51667 0.5700 +9049 51773 0.5980 +9049 57491 0.7870 +9049 80204 0.5310 +9049 83550 0.6830 +9049 196463 0.4100 +9049 343071 0.7800 +9049 391004 0.6180 +9050 9218 0.6220 +9050 9322 0.5410 +9050 9404 0.8140 +9050 9663 0.6660 +9050 10769 0.4750 +9050 10788 0.4510 +9050 23002 0.5310 +9050 23048 0.4810 +9050 23500 0.5300 +9050 26469 0.6470 +9050 50618 0.4100 +9050 54751 0.5270 +9050 54874 0.4310 +9050 55233 0.4220 +9050 55843 0.4040 +9050 57724 0.5810 +9050 85462 0.5310 +9050 89848 0.4330 +9050 118932 0.4400 +9050 126520 0.4640 +9050 128239 0.4500 +9050 128637 0.4050 +9050 147179 0.4080 +9050 339145 0.4290 +9050 399687 0.5230 +9050 494470 0.5050 +9051 9322 0.6440 +9051 9404 0.5420 +9051 9610 0.5000 +9051 9663 0.7210 +9051 9689 0.5170 +9051 9948 0.4480 +9051 10769 0.4640 +9051 10788 0.4620 +9051 11151 0.4370 +9051 22861 0.4300 +9051 23002 0.5300 +9051 23048 0.6240 +9051 23500 0.5300 +9051 26191 0.9570 +9051 26469 0.8640 +9051 26525 0.4380 +9051 27128 0.4560 +9051 29108 0.8460 +9051 30011 0.4940 +9051 30012 0.4910 +9051 50618 0.4510 +9051 50807 0.5340 +9051 51517 0.4280 +9051 51816 0.4630 +9051 54874 0.4900 +9051 55233 0.4310 +9051 55843 0.5060 +9051 57705 0.4570 +9051 58484 0.5000 +9051 64098 0.5620 +9051 64127 0.6430 +9051 64926 0.4290 +9051 79092 0.4770 +9051 80342 0.4740 +9051 85462 0.5300 +9051 89848 0.4820 +9051 91662 0.6460 +9051 114548 0.6270 +9051 126520 0.4640 +9051 128239 0.4500 +9051 147179 0.4080 +9051 257106 0.4590 +9051 339145 0.5270 +9051 374403 0.4460 +9052 10097 0.4220 +9052 54084 0.4060 +9052 57512 0.4900 +9052 81575 0.4470 +9052 165829 0.5800 +9052 200634 0.4160 +9052 391123 0.4070 +9053 9989 0.5040 +9053 10376 0.9060 +9053 10634 0.4200 +9053 22924 0.6360 +9053 23271 0.6090 +9053 29763 0.4720 +9053 55521 0.5370 +9053 57662 0.4300 +9053 59341 0.8010 +9053 79649 0.4330 +9053 149041 0.5780 +9053 163071 0.5670 +9053 347733 0.9030 +9053 474354 0.4740 +9054 9093 0.6190 +9054 9391 0.7180 +9054 10054 0.4350 +9054 10055 0.4340 +9054 10058 0.4050 +9054 10101 0.5480 +9054 10533 0.4900 +9054 10539 0.8780 +9054 10944 0.4020 +9054 11019 0.7530 +9054 11194 0.4300 +9054 11212 0.4400 +9054 22928 0.4830 +9054 22929 0.4690 +9054 23474 0.4100 +9054 23475 0.4750 +9054 23479 0.9990 +9054 23657 0.4120 +9054 25821 0.4560 +9054 26234 0.4260 +9054 26610 0.4060 +9054 27158 0.5950 +9054 27247 0.9820 +9054 27304 0.9930 +9054 30061 0.4260 +9054 51004 0.4990 +9054 51027 0.7850 +9054 51218 0.9090 +9054 51268 0.4940 +9054 51312 0.6350 +9054 51504 0.4330 +9054 51512 0.5130 +9054 51647 0.5250 +9054 51654 0.5120 +9054 51805 0.4110 +9054 54205 0.7140 +9054 54901 0.4060 +9054 54995 0.4160 +9054 55034 0.9190 +9054 55140 0.4770 +9054 55236 0.4670 +9054 55245 0.4400 +9054 55687 0.7740 +9054 55750 0.4480 +9054 55847 0.6580 +9054 57001 0.5240 +9054 57002 0.4680 +9054 57017 0.5090 +9054 57019 0.7370 +9054 57128 0.9990 +9054 57226 0.4620 +9054 63929 0.6020 +9054 64111 0.6340 +9054 64210 0.6730 +9054 64428 0.7530 +9054 79706 0.4220 +9054 79728 0.6070 +9054 79777 0.4080 +9054 79876 0.4440 +9054 80224 0.7290 +9054 80273 0.4670 +9054 80308 0.5990 +9054 81605 0.8240 +9054 81689 0.9280 +9054 81894 0.6620 +9054 84191 0.4290 +9054 84233 0.4350 +9054 84705 0.6390 +9054 84883 0.4590 +9054 90353 0.8470 +9054 90624 0.4990 +9054 92399 0.5570 +9054 112812 0.9620 +9054 115286 0.7710 +9054 119559 0.4820 +9054 122961 0.9220 +9054 123263 0.4480 +9054 124454 0.4310 +9054 124989 0.5840 +9054 144363 0.4860 +9054 150274 0.9070 +9054 200205 0.7990 +9054 348180 0.5770 +9054 388962 0.8170 +9054 441549 0.4770 +9054 493856 0.4340 +9054 552900 0.7370 +9054 644096 0.5060 +9054 654483 0.7390 +9054 730249 0.4920 +9054 100130890 0.7180 +9054 100131187 0.7380 +9055 9133 0.9250 +9055 9156 0.5830 +9055 9212 0.8500 +9055 9232 0.8460 +9055 9319 0.8200 +9055 9493 0.9920 +9055 9513 0.4300 +9055 9585 0.5990 +9055 9656 0.5390 +9055 9700 0.7130 +9055 9735 0.6440 +9055 9768 0.5800 +9055 9787 0.8920 +9055 9793 0.6030 +9055 9824 0.5350 +9055 9833 0.8930 +9055 9918 0.4770 +9055 9928 0.9860 +9055 9991 0.5170 +9055 10024 0.5570 +9055 10051 0.7900 +9055 10112 0.9370 +9055 10291 0.4380 +9055 10376 0.9320 +9055 10383 0.4380 +9055 10403 0.8280 +9055 10436 0.5120 +9055 10437 0.4310 +9055 10460 0.7370 +9055 10579 0.4730 +9055 10592 0.5890 +9055 10615 0.7550 +9055 10635 0.6460 +9055 10733 0.8340 +9055 10769 0.5440 +9055 10982 0.4500 +9055 10992 0.4450 +9055 11004 0.9440 +9055 11065 0.8270 +9055 11113 0.7580 +9055 11129 0.4920 +9055 11130 0.8250 +9055 11339 0.6680 +9055 11340 0.4090 +9055 22919 0.5180 +9055 22924 0.5420 +9055 22974 0.9990 +9055 23047 0.4120 +9055 23165 0.4430 +9055 23310 0.5000 +9055 23397 0.7240 +9055 23404 0.4700 +9055 24137 0.9950 +9055 25962 0.5230 +9055 26271 0.5170 +9055 26276 0.7510 +9055 26574 0.4540 +9055 26586 0.7600 +9055 29028 0.6350 +9055 29089 0.4740 +9055 29127 0.9730 +9055 29128 0.6870 +9055 29980 0.4180 +9055 30968 0.4390 +9055 51053 0.4920 +9055 51096 0.4150 +9055 51203 0.9360 +9055 51343 0.4260 +9055 51512 0.5490 +9055 51514 0.6240 +9055 54443 0.8390 +9055 54478 0.4880 +9055 54801 0.4700 +9055 54892 0.6120 +9055 54908 0.4100 +9055 55010 0.4810 +9055 55055 0.6180 +9055 55063 0.6630 +9055 55143 0.8940 +9055 55165 0.9040 +9055 55215 0.6850 +9055 55226 0.4250 +9055 55320 0.6960 +9055 55355 0.7970 +9055 55388 0.5130 +9055 55605 0.5890 +9055 55635 0.5570 +9055 55723 0.4480 +9055 55789 0.4620 +9055 55813 0.5490 +9055 55839 0.6260 +9055 56992 0.7820 +9055 57122 0.4380 +9055 57405 0.5490 +9055 57576 0.5200 +9055 64105 0.5160 +9055 64151 0.9210 +9055 79019 0.6030 +9055 79023 0.4110 +9055 79682 0.5110 +9055 79801 0.7850 +9055 79866 0.5050 +9055 79902 0.4530 +9055 79915 0.4590 +9055 79935 0.4220 +9055 81610 0.5440 +9055 81620 0.4630 +9055 81626 0.4460 +9055 81930 0.8680 +9055 83461 0.7350 +9055 83540 0.8290 +9055 83903 0.4570 +9055 84823 0.4760 +9055 84930 0.4660 +9055 84991 0.4510 +9055 85417 0.4570 +9055 90417 0.5850 +9055 113130 0.8290 +9055 124245 0.5360 +9055 124602 0.4570 +9055 126520 0.5420 +9055 128239 0.5960 +9055 146909 0.6260 +9055 150468 0.6310 +9055 151648 0.4790 +9055 152098 0.6630 +9055 157313 0.7230 +9055 157570 0.5910 +9055 166979 0.6450 +9055 220134 0.5270 +9055 221150 0.6250 +9055 259266 0.9210 +9055 285643 0.7660 +9055 345930 0.4530 +9055 347733 0.9240 +9055 387103 0.4040 +9055 440093 0.4150 +9055 653604 0.4310 +9056 9057 0.5180 +9056 9122 0.4520 +9056 9356 0.4570 +9056 9376 0.4390 +9056 9764 0.4020 +9056 9935 0.4040 +9056 10288 0.4470 +9056 10991 0.4750 +9056 11136 0.5760 +9056 11254 0.6680 +9056 23428 0.6640 +9056 23657 0.5440 +9056 51296 0.4290 +9056 54407 0.6140 +9056 55089 0.4450 +9056 55117 0.4080 +9056 55238 0.4830 +9056 56301 0.5430 +9056 57709 0.4200 +9056 81539 0.5540 +9056 84889 0.4720 +9056 92745 0.4380 +9056 117247 0.4840 +9056 124935 0.6710 +9056 145389 0.4360 +9056 206358 0.4800 +9056 340024 0.6770 +9057 9197 0.5130 +9057 9923 0.5360 +9057 9963 0.4290 +9057 10991 0.5440 +9057 11136 0.5650 +9057 11182 0.4430 +9057 11254 0.6810 +9057 23428 0.5460 +9057 23657 0.7350 +9057 54407 0.6900 +9057 54716 0.4060 +9057 55089 0.5190 +9057 55117 0.4680 +9057 55238 0.5370 +9057 56301 0.5510 +9057 57709 0.4420 +9057 79932 0.4290 +9057 80342 0.4390 +9057 81539 0.6230 +9057 84889 0.5920 +9057 92745 0.5430 +9057 117247 0.5490 +9057 124935 0.8100 +9057 145389 0.4590 +9057 206358 0.5070 +9057 340024 0.6190 +9058 9356 0.4220 +9058 9376 0.4020 +9058 11136 0.4310 +9058 23417 0.4970 +9058 56302 0.4020 +9058 57864 0.4360 +9058 64849 0.4810 +9058 65010 0.7880 +9058 115111 0.4430 +9058 126969 0.4360 +9058 153201 0.4970 +9058 160728 0.5000 +9058 387775 0.4020 +9058 729025 0.7330 +9060 9061 0.9510 +9060 9562 0.4170 +9060 9563 0.4610 +9060 10380 0.9750 +9060 10767 0.9080 +9060 23708 0.9270 +9060 25813 0.4130 +9060 25830 0.4170 +9060 26227 0.4290 +9060 27068 0.7290 +9060 27158 0.6350 +9060 27233 0.8440 +9060 27284 0.8550 +9060 51805 0.4330 +9060 54808 0.9300 +9060 54928 0.9750 +9060 58472 0.5180 +9060 60678 0.5470 +9060 79587 0.6660 +9060 80308 0.9900 +9060 255308 0.4630 +9060 347734 0.4230 +9060 377841 0.6660 +9060 442038 0.8510 +9060 100130890 0.4050 +9060 100131187 0.4060 +9061 9444 0.5280 +9061 9563 0.4580 +9061 9715 0.5760 +9061 10018 0.4990 +9061 10142 0.5300 +9061 10380 0.9720 +9061 10533 0.6140 +9061 10767 0.9090 +9061 10827 0.5810 +9061 11044 0.4990 +9061 22906 0.5010 +9061 23164 0.5000 +9061 23708 0.9000 +9061 25813 0.4180 +9061 25830 0.4580 +9061 26227 0.4500 +9061 26229 0.4280 +9061 27044 0.5040 +9061 27068 0.7630 +9061 27158 0.6350 +9061 27233 0.8320 +9061 27284 0.8390 +9061 51000 0.4190 +9061 51805 0.4330 +9061 54845 0.5000 +9061 54928 0.9740 +9061 55109 0.5040 +9061 55256 0.4230 +9061 55750 0.5310 +9061 56829 0.5260 +9061 57085 0.5040 +9061 57670 0.5720 +9061 58472 0.4620 +9061 60678 0.5650 +9061 79587 0.6740 +9061 80308 0.9900 +9061 80853 0.5050 +9061 164592 0.7850 +9061 255308 0.4630 +9061 347734 0.5260 +9061 377841 0.7020 +9061 442038 0.8210 +9061 100130890 0.4050 +9061 100131187 0.4920 +9063 9525 0.5830 +9063 9569 0.7540 +9063 9817 0.4880 +9063 10054 0.7870 +9063 10055 0.7320 +9063 10210 0.4820 +9063 11061 0.4970 +9063 11073 0.4480 +9063 11315 0.8620 +9063 22985 0.4730 +9063 23132 0.4120 +9063 23137 0.6600 +9063 23510 0.5810 +9063 23512 0.4250 +9063 26036 0.6350 +9063 26054 0.6230 +9063 26168 0.7110 +9063 27183 0.5730 +9063 28996 0.6760 +9063 29843 0.7160 +9063 50626 0.4740 +9063 51127 0.4220 +9063 51382 0.4120 +9063 51510 0.8080 +9063 51534 0.5500 +9063 54778 0.4290 +9063 54862 0.4950 +9063 56852 0.6810 +9063 57178 0.4650 +9063 57337 0.6040 +9063 59343 0.4700 +9063 64135 0.4390 +9063 64800 0.5760 +9063 79643 0.4400 +9063 79677 0.5150 +9063 79915 0.4070 +9063 83473 0.4560 +9063 84313 0.4700 +9063 84901 0.5890 +9063 89797 0.4900 +9063 90806 0.4230 +9063 92421 0.4950 +9063 116447 0.4110 +9063 123228 0.4250 +9063 128387 0.4220 +9063 205564 0.6200 +9063 286053 0.8710 +9063 387082 0.7610 +9064 9978 0.4440 +9064 10673 0.4140 +9064 10971 0.4420 +9064 26261 0.4400 +9064 50809 0.4100 +9064 63891 0.4300 +9064 80301 0.4440 +9066 9341 0.4700 +9066 9369 0.5580 +9066 9378 0.6180 +9066 9379 0.5820 +9066 9501 0.6030 +9066 9545 0.4580 +9066 9927 0.4370 +9066 10490 0.4110 +9066 10814 0.4810 +9066 10815 0.8640 +9066 10948 0.5470 +9066 23230 0.4490 +9066 23390 0.5880 +9066 54212 0.5120 +9066 54503 0.6890 +9066 57192 0.4730 +9066 83547 0.4810 +9066 84858 0.4020 +9066 114876 0.4400 +9066 115827 0.4460 +9066 118813 0.4180 +9066 134429 0.4450 +9066 390205 0.4460 +9068 10288 0.8070 +9068 51378 0.5400 +9069 9071 0.7700 +9069 9073 0.9550 +9069 9074 0.7800 +9069 9075 0.9580 +9069 9076 0.9520 +9069 9080 0.8040 +9069 9349 0.5570 +9069 9414 0.8470 +9069 9669 0.4010 +9069 9801 0.5090 +9069 10207 0.4430 +9069 10473 0.4500 +9069 10686 0.7640 +9069 11224 0.4020 +9069 23562 0.7630 +9069 24146 0.8620 +9069 26284 0.4090 +9069 26285 0.8890 +9069 27134 0.7350 +9069 28998 0.4070 +9069 49861 0.6980 +9069 50848 0.5100 +9069 51121 0.4180 +9069 51208 0.7290 +9069 51264 0.6720 +9069 51599 0.4190 +9069 53842 0.6770 +9069 55052 0.6820 +9069 55503 0.4840 +9069 63875 0.5960 +9069 64398 0.5040 +9069 64979 0.4570 +9069 64983 0.6140 +9069 65003 0.4480 +9069 65005 0.5210 +9069 65008 0.4620 +9069 79590 0.4180 +9069 83700 0.4890 +9069 84705 0.4080 +9069 84952 0.4690 +9069 91862 0.4250 +9069 115416 0.6890 +9069 137075 0.7010 +9069 138428 0.4120 +9069 149461 0.7700 +9069 150084 0.4800 +9069 153562 0.6040 +9069 219927 0.6100 +9069 286676 0.4950 +9069 374659 0.5040 +9069 644672 0.4870 +9069 100132463 0.4530 +9069 100506658 0.8110 +9070 9440 0.5380 +9070 9530 0.4610 +9070 9611 0.5930 +9070 9656 0.4960 +9070 9739 0.9990 +9070 9757 0.9770 +9070 9782 0.4920 +9070 9869 0.5960 +9070 9935 0.5260 +9070 10270 0.5090 +9070 10445 0.6390 +9070 10467 0.4620 +9070 10498 0.4460 +9070 10664 0.6250 +9070 10765 0.5540 +9070 10785 0.5150 +9070 10847 0.4930 +9070 10856 0.6120 +9070 10919 0.6320 +9070 11083 0.9000 +9070 11091 0.9990 +9070 11168 0.6970 +9070 11212 0.5350 +9070 22976 0.9990 +9070 23028 0.5280 +9070 23030 0.4790 +9070 23054 0.9980 +9070 23067 0.9990 +9070 23112 0.4030 +9070 23133 0.4890 +9070 23135 0.9430 +9070 23259 0.5320 +9070 23269 0.5980 +9070 23309 0.5680 +9070 23512 0.7980 +9070 25886 0.5950 +9070 25942 0.7470 +9070 26108 0.6420 +9070 26118 0.5960 +9070 26121 0.5430 +9070 26168 0.7050 +9070 26523 0.4310 +9070 27043 0.5600 +9070 27125 0.4140 +9070 27257 0.5130 +9070 27327 0.5630 +9070 29072 0.7470 +9070 29915 0.9410 +9070 30827 0.9990 +9070 51176 0.5140 +9070 51230 0.6450 +9070 51562 0.4260 +9070 51780 0.4750 +9070 54145 0.5730 +9070 54554 0.9780 +9070 54556 0.4010 +9070 54808 0.4370 +9070 54881 0.7070 +9070 54904 0.7930 +9070 54934 0.5080 +9070 55170 0.6300 +9070 55226 0.4580 +9070 55617 0.5130 +9070 55636 0.6740 +9070 55766 0.6320 +9070 55870 0.6270 +9070 55884 0.5960 +9070 55904 0.7600 +9070 56254 0.5900 +9070 56946 0.5060 +9070 56950 0.5530 +9070 56979 0.5040 +9070 57591 0.4570 +9070 57634 0.5980 +9070 57680 0.9120 +9070 58508 0.9990 +9070 64324 0.5050 +9070 64754 0.7310 +9070 79447 0.9940 +9070 79577 0.6660 +9070 79723 0.5720 +9070 79813 0.5370 +9070 79823 0.6310 +9070 80205 0.4580 +9070 80335 0.9990 +9070 80854 0.7920 +9070 81887 0.5780 +9070 83439 0.4990 +9070 83758 0.5320 +9070 83852 0.4510 +9070 83877 0.4140 +9070 84148 0.7950 +9070 84193 0.5430 +9070 84332 0.5440 +9070 84444 0.6470 +9070 84513 0.4300 +9070 84661 0.9990 +9070 84962 0.4990 +9070 85236 0.9100 +9070 90780 0.6790 +9070 91272 0.8640 +9070 94239 0.6500 +9070 121504 0.8580 +9070 124944 0.7170 +9070 125476 0.5430 +9070 126961 0.8680 +9070 128312 0.5720 +9070 143241 0.5400 +9070 146845 0.5940 +9070 150572 0.5230 +9070 152559 0.4250 +9070 161882 0.5100 +9070 192669 0.4450 +9070 192670 0.4160 +9070 221656 0.4170 +9070 255626 0.5700 +9070 259282 0.8480 +9070 282809 0.6080 +9070 283149 0.5020 +9070 284058 0.7190 +9070 333932 0.8680 +9070 387893 0.5700 +9070 401551 0.5940 +9070 440093 0.8350 +9070 440686 0.8350 +9070 474382 0.6320 +9070 554313 0.8580 +9070 653604 0.9820 +9070 100529209 0.5400 +9071 9073 0.8110 +9071 9074 0.7180 +9071 9075 0.7120 +9071 9076 0.6830 +9071 9080 0.7720 +9071 9414 0.4440 +9071 10207 0.4440 +9071 10686 0.8140 +9071 11101 0.4220 +9071 23562 0.6920 +9071 24146 0.6740 +9071 26285 0.6950 +9071 27134 0.7990 +9071 49861 0.6980 +9071 50848 0.4210 +9071 51208 0.7710 +9071 53842 0.6850 +9071 54102 0.4410 +9071 56288 0.6530 +9071 65266 0.4260 +9071 90952 0.6660 +9071 137075 0.8140 +9071 149461 0.6840 +9071 644672 0.7010 +9071 100132463 0.6890 +9071 100288814 0.6950 +9071 100506658 0.8250 +9073 9074 0.7060 +9073 9075 0.6970 +9073 9076 0.7960 +9073 9080 0.7860 +9073 9414 0.9110 +9073 10207 0.5130 +9073 10686 0.8000 +9073 23562 0.6830 +9073 24146 0.7140 +9073 26285 0.6690 +9073 27134 0.9700 +9073 49861 0.6840 +9073 50616 0.5440 +9073 50848 0.6540 +9073 51208 0.7990 +9073 53842 0.6930 +9073 56288 0.6770 +9073 57530 0.6510 +9073 64398 0.4600 +9073 90952 0.6690 +9073 137075 0.8100 +9073 149461 0.7900 +9073 153562 0.4890 +9073 644672 0.8050 +9073 100132463 0.6910 +9073 100288814 0.7460 +9073 100506658 0.9690 +9074 9075 0.6720 +9074 9076 0.7880 +9074 9080 0.8780 +9074 9113 0.4870 +9074 9414 0.7310 +9074 10686 0.7640 +9074 23562 0.8060 +9074 24146 0.7080 +9074 26285 0.6790 +9074 27134 0.8240 +9074 49861 0.6810 +9074 50848 0.4250 +9074 51208 0.7010 +9074 53842 0.6810 +9074 56288 0.6980 +9074 57369 0.4100 +9074 79727 0.5400 +9074 80341 0.4020 +9074 90952 0.7010 +9074 137075 0.7200 +9074 149461 0.6860 +9074 153562 0.4320 +9074 340168 0.4340 +9074 644672 0.6870 +9074 100132463 0.6900 +9074 100288814 0.7450 +9074 100506658 0.9150 +9075 9076 0.8430 +9075 9080 0.6670 +9075 9414 0.9080 +9075 10686 0.7420 +9075 10728 0.4810 +9075 10963 0.5900 +9075 11330 0.4740 +9075 23562 0.6650 +9075 24146 0.7130 +9075 26285 0.6890 +9075 27134 0.9570 +9075 49861 0.6690 +9075 50848 0.6640 +9075 51208 0.7090 +9075 53842 0.6820 +9075 56288 0.7320 +9075 57530 0.5800 +9075 65266 0.5300 +9075 79710 0.5680 +9075 84300 0.4710 +9075 90952 0.7880 +9075 91862 0.5070 +9075 130120 0.4760 +9075 136541 0.4180 +9075 137075 0.7320 +9075 149461 0.6770 +9075 150084 0.4420 +9075 153562 0.7930 +9075 644672 0.6910 +9075 100132463 0.6840 +9075 100288814 0.7120 +9075 100506658 0.9850 +9076 9080 0.8020 +9076 9172 0.6340 +9076 9414 0.9990 +9076 10207 0.9640 +9076 10332 0.5700 +9076 10686 0.8310 +9076 11188 0.6260 +9076 23411 0.4110 +9076 23541 0.5000 +9076 23562 0.7960 +9076 24146 0.6940 +9076 25827 0.4420 +9076 26285 0.6780 +9076 27134 0.9960 +9076 29881 0.6670 +9076 30816 0.5270 +9076 49861 0.6690 +9076 50848 0.9910 +9076 50855 0.5320 +9076 51208 0.6890 +9076 51257 0.4230 +9076 53842 0.6710 +9076 55114 0.4030 +9076 56288 0.7410 +9076 57369 0.4420 +9076 57530 0.7490 +9076 58494 0.7010 +9076 64398 0.6310 +9076 83700 0.5310 +9076 84552 0.4480 +9076 84612 0.4950 +9076 84708 0.6370 +9076 84961 0.4540 +9076 90952 0.8470 +9076 91862 0.5080 +9076 93643 0.5900 +9076 130120 0.4080 +9076 137075 0.7470 +9076 137902 0.5170 +9076 149461 0.6640 +9076 153443 0.4340 +9076 153562 0.8890 +9076 154796 0.4190 +9076 388698 0.5710 +9076 644672 0.6790 +9076 100132463 0.7410 +9076 100288814 0.7040 +9076 100506658 0.9990 +9077 10463 0.4070 +9077 11186 0.6240 +9077 22863 0.4490 +9077 23089 0.4880 +9077 23619 0.4210 +9077 26240 0.5830 +9077 50618 0.5400 +9077 55532 0.4120 +9077 57683 0.4350 +9077 79269 0.4350 +9077 127544 0.4800 +9077 266812 0.5470 +9079 9139 0.6390 +9079 9355 0.9410 +9079 9656 0.4260 +9079 10661 0.8020 +9079 10664 0.4930 +9079 23316 0.4860 +9079 23635 0.8500 +9079 26153 0.4310 +9079 26468 0.6490 +9079 51132 0.7400 +9079 51133 0.4380 +9079 51232 0.4210 +9079 51592 0.4540 +9079 53335 0.4900 +9079 55278 0.7770 +9079 55859 0.8800 +9079 55885 0.7940 +9079 56925 0.4120 +9079 56956 0.7420 +9079 57492 0.4330 +9079 63973 0.5180 +9079 64211 0.5520 +9079 64843 0.4580 +9079 84707 0.8750 +9079 89884 0.4660 +9079 137970 0.4230 +9079 161882 0.9050 +9079 170463 0.6590 +9079 202018 0.4780 +9079 202559 0.4200 +9079 256536 0.4440 +9079 386618 0.4820 +9079 431707 0.6430 +9079 100533181 0.4190 +9080 9414 0.7200 +9080 10686 0.7880 +9080 10804 0.4110 +9080 23562 0.8000 +9080 24146 0.7020 +9080 26167 0.4370 +9080 26285 0.6750 +9080 27134 0.8230 +9080 29881 0.5280 +9080 49861 0.6790 +9080 51208 0.6950 +9080 53842 0.6850 +9080 56288 0.6570 +9080 90952 0.6950 +9080 137075 0.7200 +9080 149461 0.6980 +9080 153562 0.4560 +9080 286676 0.4640 +9080 644672 0.6880 +9080 100132463 0.6860 +9080 100288814 0.7650 +9080 100506658 0.8720 +9081 9083 0.9320 +9081 9084 0.9120 +9081 9085 0.9160 +9081 9086 0.5070 +9081 9087 0.5410 +9081 9830 0.4470 +9081 10346 0.4800 +9081 10384 0.4180 +9081 10475 0.5070 +9081 10626 0.4320 +9081 10761 0.4320 +9081 11118 0.4310 +9081 11119 0.4740 +9081 22954 0.4460 +9081 23586 0.4180 +9081 28986 0.7740 +9081 50852 0.7720 +9081 51127 0.6940 +9081 51428 0.5900 +9081 55028 0.4450 +9081 55217 0.5830 +9081 56658 0.4800 +9081 57054 0.7540 +9081 57055 0.7770 +9081 57135 0.7260 +9081 57506 0.4050 +9081 80263 0.4260 +9081 81559 0.5130 +9081 81844 0.4350 +9081 83259 0.4740 +9081 84282 0.4740 +9081 85363 0.6650 +9081 86614 0.6910 +9081 89870 0.5060 +9081 90933 0.8170 +9081 117854 0.4140 +9081 140032 0.5440 +9081 159163 0.7860 +9081 201292 0.4200 +9081 253175 0.5440 +9081 353513 0.9120 +9081 378949 0.7040 +9081 378951 0.4460 +9081 442867 0.9430 +9081 442868 0.9430 +9081 445372 0.4470 +9081 493829 0.6730 +9083 9084 0.9460 +9083 9085 0.9640 +9083 9086 0.6040 +9083 9087 0.6050 +9083 55201 0.4100 +9083 57054 0.8920 +9083 57055 0.8970 +9083 57135 0.8420 +9083 83259 0.4780 +9083 86614 0.7620 +9083 90655 0.5060 +9083 90665 0.4270 +9083 140032 0.5710 +9083 159119 0.5810 +9083 159163 0.8160 +9083 253175 0.8110 +9083 353513 0.9460 +9083 378949 0.8000 +9083 442862 0.9320 +9083 730291 0.4470 +9084 9085 0.9180 +9084 9086 0.5740 +9084 9087 0.6660 +9084 9425 0.6980 +9084 10983 0.4180 +9084 51480 0.4600 +9084 57054 0.7030 +9084 57055 0.7170 +9084 57135 0.6620 +9084 64591 0.5750 +9084 83259 0.5070 +9084 86614 0.7200 +9084 90655 0.6260 +9084 90665 0.4750 +9084 124359 0.6060 +9084 140032 0.5440 +9084 159119 0.4460 +9084 159163 0.5430 +9084 170302 0.4970 +9084 378948 0.5710 +9084 378951 0.5050 +9084 442862 0.8570 +9084 442867 0.9170 +9084 442868 0.9170 +9084 728132 0.5070 +9084 728395 0.4670 +9085 9086 0.5150 +9085 9087 0.4700 +9085 9349 0.4220 +9085 9399 0.4560 +9085 9553 0.5340 +9085 9607 0.6360 +9085 9801 0.4580 +9085 10005 0.4900 +9085 10449 0.6360 +9085 23405 0.5880 +9085 23492 0.4110 +9085 26589 0.4490 +9085 27034 0.4780 +9085 27349 0.4060 +9085 28976 0.4780 +9085 29093 0.4260 +9085 29102 0.5820 +9085 51021 0.4710 +9085 51084 0.4690 +9085 51264 0.4630 +9085 51497 0.4100 +9085 54511 0.4720 +9085 55289 0.4780 +9085 55862 0.5770 +9085 56922 0.4100 +9085 57054 0.9460 +9085 57055 0.9460 +9085 57129 0.4680 +9085 57135 0.9200 +9085 57591 0.4460 +9085 60488 0.4790 +9085 63875 0.4670 +9085 64064 0.4300 +9085 64087 0.4760 +9085 64965 0.4980 +9085 64968 0.4880 +9085 64969 0.4390 +9085 64975 0.4450 +9085 64976 0.4590 +9085 64979 0.4680 +9085 64981 0.4080 +9085 64983 0.4080 +9085 65080 0.5820 +9085 66037 0.4420 +9085 80724 0.4780 +9085 83259 0.4750 +9085 84129 0.4840 +9085 84263 0.8100 +9085 84545 0.4680 +9085 84656 0.4170 +9085 86614 0.7130 +9085 90655 0.5160 +9085 124359 0.4270 +9085 126961 0.8470 +9085 139596 0.5180 +9085 140032 0.5440 +9085 140856 0.4130 +9085 159163 0.7620 +9085 253175 0.9090 +9085 254042 0.4030 +9085 284422 0.4840 +9085 333932 0.8470 +9085 353513 0.9180 +9085 378949 0.7320 +9085 440093 0.8610 +9085 440686 0.8610 +9085 442862 0.9170 +9085 442867 0.9680 +9085 442868 0.9680 +9085 653604 0.8620 +9085 100526842 0.4160 +9085 109703458 0.5000 +9085 122405565 0.4840 +9086 9087 0.8980 +9086 9343 0.7150 +9086 9349 0.8840 +9086 9533 0.7850 +9086 9553 0.5150 +9086 9669 0.9240 +9086 9732 0.6240 +9086 9801 0.6180 +9086 9858 0.7390 +9086 10056 0.4340 +9086 10209 0.9870 +9086 10289 0.9820 +9086 10399 0.8060 +9086 10412 0.4680 +9086 10473 0.6120 +9086 10528 0.4140 +9086 10557 0.6350 +9086 10969 0.4190 +9086 10988 0.5320 +9086 11101 0.4080 +9086 11103 0.4140 +9086 11128 0.6000 +9086 11222 0.7360 +9086 11224 0.8940 +9086 22829 0.9420 +9086 23173 0.5320 +9086 23204 0.7690 +9086 23521 0.6970 +9086 23640 0.6640 +9086 25885 0.6000 +9086 26289 0.5510 +9086 27328 0.4340 +9086 27335 0.7880 +9086 28998 0.7020 +9086 29088 0.4560 +9086 29093 0.7350 +9086 29789 0.4480 +9086 29927 0.7820 +9086 50808 0.5510 +9086 51021 0.8320 +9086 51065 0.7760 +9086 51069 0.7710 +9086 51073 0.9090 +9086 51081 0.8870 +9086 51116 0.7410 +9086 51121 0.7730 +9086 51149 0.8690 +9086 51154 0.7700 +9086 51248 0.5270 +9086 51264 0.6750 +9086 51319 0.8230 +9086 51386 0.4850 +9086 51727 0.5530 +9086 54059 0.4080 +9086 54948 0.6660 +9086 55052 0.7280 +9086 55173 0.9420 +9086 55176 0.7820 +9086 55272 0.9280 +9086 55316 0.9280 +9086 55591 0.5320 +9086 55601 0.4310 +9086 55651 0.6990 +9086 55703 0.6680 +9086 55781 0.4150 +9086 55787 0.4250 +9086 56648 0.6830 +9086 57054 0.4760 +9086 57055 0.5350 +9086 57135 0.4320 +9086 60678 0.6720 +9086 63875 0.8630 +9086 63931 0.8820 +9086 64374 0.6640 +9086 64591 0.5520 +9086 64960 0.7840 +9086 64963 0.8890 +9086 64965 0.8460 +9086 64968 0.8760 +9086 64969 0.9370 +9086 64979 0.8940 +9086 64983 0.7990 +9086 65003 0.6120 +9086 65008 0.6960 +9086 65121 0.4510 +9086 65122 0.4510 +9086 79590 0.7710 +9086 79631 0.7150 +9086 80273 0.4600 +9086 83259 0.6560 +9086 83732 0.7010 +9086 84172 0.6680 +9086 85377 0.4700 +9086 85476 0.7150 +9086 86614 0.6060 +9086 90665 0.7520 +9086 114987 0.7640 +9086 122481 0.5510 +9086 126402 0.8870 +9086 134266 0.4600 +9086 140032 0.9760 +9086 140801 0.7000 +9086 143244 0.8010 +9086 158067 0.5510 +9086 159163 0.5560 +9086 219927 0.8530 +9086 221264 0.5520 +9086 255308 0.7450 +9086 256714 0.4510 +9086 285855 0.7170 +9086 343068 0.4510 +9086 343070 0.4510 +9086 347487 0.8680 +9086 353513 0.5740 +9086 378948 0.5560 +9086 378949 0.4570 +9086 378950 0.4300 +9086 378951 0.5010 +9086 387129 0.7170 +9086 390999 0.4510 +9086 391002 0.4510 +9086 400735 0.4510 +9086 400736 0.4510 +9086 440560 0.4510 +9086 440561 0.4510 +9086 441873 0.4510 +9086 442862 0.5060 +9086 442867 0.6020 +9086 442868 0.6020 +9086 641776 0.7390 +9086 643909 0.7390 +9086 645359 0.4510 +9086 653619 0.4510 +9086 728132 0.4510 +9086 728395 0.4780 +9086 728524 0.7390 +9086 728689 0.8840 +9086 729528 0.4510 +9086 100287482 0.7390 +9086 100505478 0.7170 +9086 100526842 0.7340 +9086 100529239 0.8030 +9086 100996746 0.7390 +9086 101929983 0.4510 +9086 105180390 0.7390 +9086 105180391 0.7390 +9087 22829 0.7930 +9087 27328 0.4010 +9087 55787 0.5210 +9087 55841 0.4450 +9087 57054 0.5120 +9087 57055 0.5500 +9087 83259 0.6090 +9087 86614 0.4800 +9087 90655 0.4760 +9087 90665 0.6690 +9087 140032 0.6180 +9087 159163 0.4520 +9087 353513 0.6660 +9087 378948 0.4230 +9087 442862 0.5260 +9087 442867 0.5910 +9087 442868 0.5910 +9088 9133 0.9590 +9088 9134 0.4600 +9088 9156 0.5290 +9088 9212 0.5470 +9088 9232 0.6960 +9088 9319 0.4620 +9088 9401 0.6210 +9088 9493 0.4360 +9088 9700 0.6490 +9088 9793 0.7960 +9088 9833 0.4720 +9088 9985 0.4980 +9088 10024 0.6350 +9088 10112 0.4460 +9088 10226 0.4780 +9088 10309 0.4310 +9088 10419 0.6440 +9088 10615 0.6500 +9088 10733 0.5260 +9088 10769 0.4130 +9088 10776 0.4060 +9088 10797 0.4160 +9088 10983 0.4120 +9088 11004 0.5530 +9088 11065 0.6170 +9088 11200 0.8260 +9088 22974 0.4160 +9088 23070 0.4170 +9088 23397 0.6480 +9088 23594 0.6560 +9088 24137 0.4240 +9088 27330 0.9020 +9088 29128 0.4660 +9088 29901 0.5110 +9088 51343 0.4570 +9088 51512 0.5720 +9088 51514 0.4120 +9088 51659 0.5000 +9088 54935 0.5200 +9088 55143 0.4840 +9088 55240 0.9330 +9088 55255 0.4540 +9088 55355 0.4040 +9088 55388 0.4660 +9088 55723 0.5170 +9088 55839 0.4110 +9088 63922 0.4370 +9088 63946 0.4240 +9088 64682 0.4020 +9088 65061 0.4820 +9088 79019 0.5680 +9088 79733 0.4260 +9088 79935 0.4670 +9088 80178 0.4480 +9088 81620 0.6590 +9088 81624 0.5380 +9088 83461 0.4850 +9088 83540 0.4060 +9088 84446 0.5530 +9088 85417 0.5330 +9088 113130 0.6010 +9088 124222 0.5140 +9088 126520 0.4130 +9088 147841 0.4240 +9088 220134 0.4170 +9088 284403 0.4160 +9088 345079 0.4120 +9088 642636 0.6330 +9088 644672 0.4180 +9088 645121 0.4120 +9088 728642 0.4180 +9091 9487 0.9960 +9091 9488 0.7470 +9091 9526 0.5200 +9091 10026 0.7650 +9091 10423 0.8130 +9091 10673 0.4120 +9091 11253 0.4140 +9091 23556 0.7150 +9091 25843 0.4550 +9091 27315 0.6110 +9091 51227 0.9990 +9091 51604 0.7290 +9091 54344 0.4410 +9091 54872 0.7070 +9091 55650 0.7940 +9091 64801 0.5600 +9091 65258 0.4420 +9091 80055 0.5430 +9091 80233 0.6330 +9091 80235 0.7020 +9091 84298 0.4560 +9091 84720 0.8140 +9091 84992 0.9990 +9091 90459 0.7850 +9091 93183 0.7660 +9091 93210 0.6010 +9091 94005 0.5460 +9091 284098 0.8250 +9091 731220 0.4520 +9091 100996939 0.8060 +9092 9128 0.9990 +9092 9129 0.9990 +9092 9343 0.9990 +9092 9410 0.9830 +9092 9416 0.9960 +9092 9584 0.4550 +9092 9669 0.4030 +9092 9704 0.4210 +9092 9732 0.4850 +9092 9733 0.7140 +9092 9775 0.4930 +9092 9785 0.6900 +9092 9879 0.5930 +9092 9947 0.8100 +9092 10084 0.4970 +9092 10179 0.5060 +9092 10262 0.9990 +9092 10283 0.9230 +9092 10284 0.5160 +9092 10291 0.9990 +9092 10344 0.4950 +9092 10392 0.4420 +9092 10421 0.9090 +9092 10465 0.9340 +9092 10523 0.5540 +9092 10557 0.8950 +9092 10569 0.6110 +9092 10594 0.9990 +9092 10614 0.5920 +9092 10625 0.5740 +9092 10713 0.9860 +9092 10891 0.7990 +9092 10907 0.9980 +9092 10921 0.5400 +9092 10946 0.9990 +9092 10973 0.6390 +9092 10992 0.9990 +9092 11005 0.5800 +9092 11017 0.9770 +9092 11021 0.4810 +9092 11066 0.8700 +9092 11157 0.9990 +9092 11193 0.9950 +9092 11325 0.4160 +9092 11338 0.8340 +9092 22826 0.5950 +9092 22916 0.7320 +9092 22920 0.4070 +9092 22938 0.8840 +9092 22985 0.5150 +9092 23020 0.9990 +9092 23076 0.4570 +9092 23082 0.8080 +9092 23411 0.4260 +9092 23450 0.9990 +9092 23451 0.9990 +9092 23476 0.5350 +9092 23524 0.9570 +9092 23592 0.4460 +9092 23658 0.9990 +9092 24144 0.7400 +9092 24148 0.9990 +9092 25766 0.8990 +9092 25804 0.9990 +9092 25980 0.5250 +9092 26121 0.9990 +9092 27102 0.4600 +9092 27258 0.9980 +9092 27336 0.6280 +9092 27339 0.9900 +9092 29940 0.8840 +9092 50615 0.4290 +9092 51131 0.5970 +9092 51319 0.4960 +9092 51322 0.6520 +9092 51340 0.9760 +9092 51428 0.4740 +9092 51574 0.5150 +9092 51631 0.8100 +9092 51634 0.9910 +9092 51639 0.8550 +9092 51690 0.9990 +9092 51691 0.9990 +9092 51729 0.5360 +9092 51747 0.9040 +9092 54816 0.4250 +9092 54819 0.4880 +9092 54952 0.7700 +9092 54957 0.9440 +9092 55015 0.8720 +9092 55100 0.4360 +9092 55110 0.9020 +9092 55234 0.9910 +9092 55285 0.7580 +9092 55593 0.6480 +9092 55599 0.7580 +9092 55651 0.5100 +9092 55660 0.5040 +9092 55692 0.8430 +9092 55696 0.9630 +9092 55749 0.5490 +9092 55760 0.8140 +9092 56257 0.5760 +9092 56949 0.7300 +9092 57647 0.4200 +9092 57703 0.9400 +9092 57794 0.6540 +9092 57819 0.9990 +9092 58517 0.9940 +9092 59286 0.9990 +9092 65980 0.5270 +9092 79039 0.4400 +9092 79066 0.4060 +9092 79171 0.9890 +9092 79631 0.5200 +9092 79696 0.6470 +9092 79753 0.9850 +9092 83443 0.9990 +9092 83938 0.8200 +9092 84316 0.6270 +9092 84811 0.9880 +9092 84844 0.9990 +9092 84950 0.9940 +9092 84967 0.8490 +9092 85476 0.5130 +9092 90850 0.6460 +9092 124245 0.4720 +9092 126259 0.6270 +9092 147650 0.6270 +9092 153527 0.9990 +9092 154007 0.4060 +9092 164045 0.6360 +9092 164781 0.8090 +9092 165545 0.8120 +9092 220074 0.8200 +9092 222183 0.4280 +9092 254187 0.5460 +9092 283899 0.7870 +9092 284325 0.8540 +9092 347744 0.7680 +9092 348793 0.8130 +9092 440275 0.5260 +9092 100996928 0.8040 +9093 9191 0.4300 +9093 9361 0.7260 +9093 9512 0.6590 +9093 9528 0.4480 +9093 9829 0.4450 +9093 9868 0.4050 +9093 10015 0.6490 +9093 10059 0.4400 +9093 10131 0.6550 +9093 10273 0.6120 +9093 10294 0.5660 +9093 10440 0.4650 +9093 10452 0.4680 +9093 10456 0.4230 +9093 10469 0.7240 +9093 10525 0.5800 +9093 10535 0.4700 +9093 10574 0.4640 +9093 10598 0.5380 +9093 10606 0.4850 +9093 10730 0.4510 +9093 10808 0.6550 +9093 10845 0.6460 +9093 10939 0.5750 +9093 10963 0.4800 +9093 10989 0.4030 +9093 11080 0.6180 +9093 11145 0.4330 +9093 22824 0.6550 +9093 23203 0.4230 +9093 23640 0.4750 +9093 25788 0.4690 +9093 25789 0.4480 +9093 25822 0.5420 +9093 26073 0.4630 +9093 26519 0.4190 +9093 26589 0.4010 +9093 27000 0.4790 +9093 28998 0.4500 +9093 29103 0.5080 +9093 51025 0.4630 +9093 51073 0.4210 +9093 51081 0.4300 +9093 51182 0.7180 +9093 51314 0.4780 +9093 51649 0.4860 +9093 54517 0.4160 +9093 54596 0.4160 +9093 54948 0.4930 +9093 54979 0.4330 +9093 55157 0.4080 +9093 55466 0.5680 +9093 55699 0.4340 +9093 56521 0.4890 +9093 57110 0.4330 +9093 60488 0.4380 +9093 63875 0.4010 +9093 64215 0.4770 +9093 64374 0.6790 +9093 64965 0.4820 +9093 64969 0.4220 +9093 79922 0.4550 +9093 80196 0.6740 +9093 80256 0.4860 +9093 80273 0.8320 +9093 81570 0.7150 +9093 83752 0.5830 +9093 84057 0.4290 +9093 84260 0.6540 +9093 84545 0.4500 +9093 84705 0.4630 +9093 96459 0.4090 +9093 116835 0.5140 +9093 118461 0.4330 +9093 131118 0.6140 +9093 131474 0.4890 +9093 134266 0.8290 +9093 219927 0.4590 +9093 259217 0.5040 +9093 285126 0.4710 +9093 285489 0.4750 +9093 339416 0.4800 +9093 374291 0.4200 +9093 374407 0.5440 +9093 388633 0.4330 +9093 728489 0.4140 +9094 9166 0.5820 +9094 9188 0.5510 +9094 9360 0.4330 +9094 9399 0.6540 +9094 9513 0.5220 +9094 9543 0.7380 +9094 9638 0.7140 +9094 9768 0.4010 +9094 10044 0.4540 +9094 10444 0.4210 +9094 10450 0.8390 +9094 10497 0.6440 +9094 10594 0.4610 +9094 11178 0.7410 +9094 22999 0.7310 +9094 23180 0.4360 +9094 23353 0.6650 +9094 23435 0.5900 +9094 23626 0.6250 +9094 23746 0.7550 +9094 25803 0.6570 +9094 26227 0.5810 +9094 27031 0.9010 +9094 27143 0.4690 +9094 29117 0.6170 +9094 29979 0.4730 +9094 54145 0.4220 +9094 54606 0.5490 +9094 54847 0.7800 +9094 55764 0.4740 +9094 57010 0.4120 +9094 57096 0.6730 +9094 57576 0.4520 +9094 57578 0.5390 +9094 60592 0.4190 +9094 64218 0.6740 +9094 64783 0.4030 +9094 65985 0.6830 +9094 80196 0.4430 +9094 80344 0.4020 +9094 83394 0.8120 +9094 84440 0.6710 +9094 84747 0.7940 +9094 84839 0.7130 +9094 85236 0.4160 +9094 85481 0.6000 +9094 90355 0.8730 +9094 90410 0.4460 +9094 90459 0.5970 +9094 92211 0.6710 +9094 112942 0.4250 +9094 124817 0.7410 +9094 128312 0.4200 +9094 149076 0.4540 +9094 154796 0.4640 +9094 158983 0.4190 +9094 169522 0.4270 +9094 170506 0.4860 +9094 200894 0.5020 +9094 255626 0.4150 +9094 286436 0.4190 +9094 387882 0.4220 +9094 389813 0.7410 +9094 399664 0.4610 +9094 404550 0.7120 +9094 440590 0.4140 +9094 440689 0.4220 +9094 114483833 0.4230 +9095 9101 0.4060 +9095 80712 0.5790 +9095 89884 0.6310 +9096 9314 0.4850 +9096 9464 0.5530 +9096 9904 0.4220 +9096 10021 0.7380 +9096 10052 0.5330 +9096 10589 0.5400 +9096 10631 0.4740 +9096 10736 0.4040 +9096 27439 0.4260 +9096 50805 0.4810 +9096 57616 0.4100 +9096 58498 0.5020 +9096 79923 0.4830 +9096 93649 0.4040 +9096 132660 0.5400 +9096 134701 0.4640 +9096 140628 0.4930 +9096 145873 0.6940 +9096 223117 0.6110 +9096 340260 0.5620 +9096 375323 0.4180 +9096 642658 0.4270 +9096 105375355 0.4630 +9097 9098 0.8800 +9097 9099 0.7690 +9097 9100 0.4140 +9097 9101 0.6220 +9097 9212 0.5890 +9097 9255 0.4460 +9097 9319 0.4110 +9097 9320 0.4650 +9097 9343 0.4390 +9097 9352 0.7200 +9097 9373 0.6870 +9097 9491 0.7070 +9097 9636 0.5280 +9097 9690 0.7210 +9097 9830 0.9920 +9097 9861 0.9990 +9097 9908 0.4470 +9097 9929 0.6420 +9097 9958 0.8440 +9097 9984 0.6330 +9097 10054 0.4010 +9097 10059 0.4850 +9097 10075 0.4370 +9097 10146 0.5230 +9097 10197 0.8080 +9097 10213 0.9990 +9097 10277 0.4490 +9097 10480 0.4230 +9097 10492 0.4020 +9097 10514 0.6970 +9097 10537 0.4870 +9097 10575 0.5540 +9097 10576 0.5160 +9097 10594 0.4280 +9097 10617 0.7140 +9097 10694 0.5000 +9097 10713 0.6690 +9097 10868 0.6240 +9097 10869 0.6620 +9097 10946 0.4250 +9097 10963 0.4150 +9097 10980 0.5750 +9097 10987 0.9170 +9097 11047 0.9970 +9097 11104 0.4050 +9097 11337 0.4610 +9097 22948 0.5400 +9097 23039 0.6930 +9097 23076 0.4280 +9097 23118 0.4450 +9097 23198 0.8820 +9097 23252 0.4260 +9097 23326 0.4550 +9097 23358 0.5560 +9097 23392 0.8410 +9097 23435 0.5120 +9097 23586 0.4660 +9097 23729 0.4050 +9097 25862 0.4770 +9097 26994 0.5410 +9097 27005 0.5560 +9097 27338 0.5390 +9097 29028 0.4200 +9097 29128 0.4240 +9097 29761 0.6780 +9097 29889 0.4680 +9097 29978 0.6270 +9097 29979 0.6890 +9097 50613 0.4450 +9097 51100 0.7710 +9097 51377 0.9990 +9097 51633 0.5710 +9097 54454 0.4050 +9097 54764 0.4540 +9097 55031 0.4900 +9097 55236 0.4850 +9097 55432 0.5660 +9097 55556 0.4020 +9097 55593 0.4570 +9097 55611 0.6900 +9097 55793 0.4710 +9097 56893 0.4440 +9097 56904 0.5150 +9097 56957 0.4680 +9097 57558 0.4940 +9097 57559 0.6540 +9097 57599 0.5260 +9097 57646 0.7660 +9097 57663 0.4910 +9097 57695 0.5430 +9097 64397 0.6420 +9097 64854 0.6390 +9097 78990 0.5630 +9097 79184 0.7020 +9097 79720 0.5640 +9097 80227 0.6850 +9097 81559 0.5150 +9097 81631 0.5090 +9097 81890 0.9630 +9097 83473 0.5510 +9097 83844 0.5390 +9097 84056 0.4050 +9097 84101 0.4940 +9097 84166 0.5130 +9097 84196 0.5040 +9097 84301 0.4160 +9097 84669 0.5280 +9097 84749 0.6800 +9097 84954 0.6380 +9097 85015 0.4780 +9097 85476 0.4690 +9097 91445 0.4180 +9097 91833 0.5390 +9097 92552 0.6810 +9097 114803 0.7300 +9097 122706 0.7450 +9097 124739 0.4470 +9097 126119 0.5860 +9097 134510 0.5170 +9097 139562 0.4600 +9097 143471 0.8420 +9097 143630 0.4190 +9097 165918 0.4750 +9097 171586 0.4270 +9097 219333 0.4540 +9097 221302 0.8730 +9097 256356 0.4050 +9097 286187 0.4190 +9097 373509 0.4010 +9097 389856 0.4050 +9097 414301 0.4530 +9097 653499 0.4220 +9097 100652824 0.5310 +9098 9101 0.4820 +9098 9779 0.5220 +9098 9905 0.4150 +9098 11021 0.5730 +9098 11181 0.4160 +9098 11222 0.4140 +9098 11337 0.4780 +9098 11345 0.5350 +9098 22872 0.4310 +9098 23216 0.4140 +9098 23710 0.5220 +9098 25771 0.4190 +9098 26986 0.4420 +9098 27131 0.4520 +9098 29761 0.4660 +9098 51256 0.9560 +9098 55031 0.4360 +9098 55633 0.4190 +9098 55773 0.4860 +9098 57403 0.5800 +9098 57465 0.5980 +9098 57646 0.4710 +9098 58533 0.4440 +9098 64786 0.5770 +9098 64965 0.4160 +9098 65003 0.4110 +9098 80124 0.4260 +9098 81890 0.7680 +9098 83452 0.5670 +9098 93627 0.4230 +9098 114803 0.5270 +9098 128637 0.8960 +9098 140711 0.4460 +9098 161514 0.4180 +9098 163087 0.4170 +9098 219927 0.4160 +9098 221302 0.4940 +9099 9146 0.4120 +9099 9636 0.4020 +9099 9929 0.5660 +9099 9958 0.4590 +9099 10213 0.4690 +9099 10454 0.4820 +9099 10537 0.4120 +9099 10616 0.6310 +9099 10617 0.6830 +9099 10868 0.4610 +9099 10892 0.5640 +9099 10987 0.5590 +9099 23118 0.5370 +9099 23252 0.6610 +9099 23327 0.6360 +9099 27338 0.5140 +9099 29116 0.4080 +9099 29761 0.7260 +9099 29979 0.4310 +9099 51377 0.6220 +9099 51633 0.4660 +9099 54764 0.5230 +9099 55072 0.5790 +9099 55294 0.4260 +9099 55432 0.5290 +9099 55593 0.4150 +9099 55611 0.7070 +9099 56852 0.4160 +9099 56957 0.5780 +9099 57559 0.5440 +9099 57599 0.4780 +9099 57646 0.7720 +9099 80124 0.4290 +9099 81858 0.5130 +9099 90268 0.6540 +9099 92552 0.4750 +9099 123228 0.4070 +9099 126119 0.5830 +9099 139562 0.4930 +9099 220213 0.4250 +9099 221302 0.7820 +9099 257397 0.5090 +9100 9246 0.5250 +9100 9373 0.4730 +9100 9467 0.9260 +9100 9531 0.4130 +9100 9636 0.5760 +9100 9698 0.4890 +9100 9701 0.7120 +9100 9785 0.4820 +9100 9898 0.6620 +9100 9908 0.9960 +9100 9958 0.6450 +9100 10013 0.4400 +9100 10146 0.9990 +9100 10399 0.6290 +9100 10413 0.7030 +9100 10642 0.4920 +9100 10643 0.6050 +9100 10644 0.4530 +9100 10713 0.6110 +9100 11052 0.4340 +9100 11060 0.4430 +9100 11201 0.5260 +9100 22870 0.7130 +9100 22916 0.5020 +9100 22927 0.5480 +9100 23063 0.6420 +9100 23185 0.4470 +9100 23243 0.7520 +9100 23358 0.4850 +9100 23367 0.4650 +9100 23435 0.5840 +9100 23451 0.4070 +9100 23476 0.5400 +9100 25929 0.4590 +9100 25937 0.4090 +9100 25940 0.4640 +9100 25998 0.4220 +9100 26135 0.7260 +9100 26986 0.8180 +9100 27044 0.4370 +9100 29761 0.4660 +9100 51426 0.5130 +9100 51441 0.4960 +9100 51455 0.5040 +9100 51548 0.5330 +9100 54952 0.7880 +9100 55432 0.4010 +9100 55671 0.4050 +9100 55854 0.4180 +9100 57520 0.4230 +9100 57532 0.5310 +9100 57646 0.4760 +9100 57664 0.4090 +9100 57805 0.4420 +9100 79054 0.6020 +9100 79171 0.5370 +9100 80149 0.7440 +9100 81631 0.4060 +9100 83939 0.4100 +9100 84132 0.4510 +9100 91526 0.8010 +9100 116138 0.4550 +9100 124245 0.4880 +9100 124540 0.4300 +9100 124739 0.5810 +9100 151987 0.5450 +9100 221302 0.5300 +9100 283373 0.6490 +9100 347744 0.7540 +9100 392517 0.4170 +9101 9146 0.9140 +9101 9320 0.4230 +9101 9354 0.4780 +9101 9402 0.9090 +9101 9493 0.7160 +9101 9525 0.5120 +9101 9798 0.5690 +9101 9924 0.4560 +9101 9929 0.5400 +9101 9958 0.5820 +9101 10015 0.4370 +9101 10193 0.9990 +9101 10213 0.5330 +9101 10254 0.9930 +9101 10537 0.4170 +9101 10617 0.8330 +9101 10750 0.4750 +9101 10855 0.4660 +9101 10971 0.6480 +9101 10987 0.5690 +9101 11273 0.4070 +9101 22878 0.5530 +9101 23274 0.6170 +9101 23327 0.4200 +9101 23435 0.4280 +9101 25930 0.6820 +9101 25978 0.4880 +9101 26018 0.6370 +9101 27005 0.4370 +9101 27071 0.5920 +9101 27183 0.4100 +9101 27243 0.6640 +9101 27429 0.5030 +9101 29110 0.4020 +9101 29761 0.7470 +9101 51028 0.4070 +9101 51377 0.6360 +9101 51510 0.6170 +9101 51534 0.4810 +9101 51633 0.5220 +9101 51652 0.7090 +9101 54532 0.4050 +9101 54551 0.4610 +9101 54764 0.4330 +9101 55031 0.4110 +9101 55432 0.4170 +9101 55593 0.5810 +9101 55611 0.9700 +9101 55623 0.4290 +9101 55793 0.4030 +9101 56943 0.6760 +9101 56957 0.5290 +9101 56970 0.4730 +9101 57132 0.8610 +9101 57448 0.9030 +9101 57559 0.5860 +9101 57590 0.4050 +9101 57599 0.5560 +9101 57646 0.8440 +9101 57724 0.5170 +9101 65018 0.4480 +9101 78990 0.7060 +9101 79589 0.8920 +9101 79643 0.6980 +9101 79648 0.4490 +9101 80124 0.4590 +9101 81890 0.7740 +9101 83550 0.5060 +9101 83737 0.4070 +9101 83940 0.4760 +9101 84196 0.4600 +9101 84749 0.5480 +9101 84888 0.4550 +9101 89780 0.4090 +9101 90268 0.4400 +9101 91768 0.4570 +9101 91782 0.4250 +9101 92421 0.7350 +9101 92552 0.4990 +9101 114803 0.4060 +9101 126119 0.5150 +9101 128866 0.5850 +9101 136991 0.4140 +9101 139562 0.4030 +9101 159195 0.4850 +9101 165918 0.6110 +9101 197131 0.4430 +9101 221302 0.8890 +9101 100526767 0.5940 +9104 9380 0.4030 +9104 9563 0.6880 +9104 9588 0.4230 +9104 9767 0.5460 +9104 9919 0.8830 +9104 9942 0.6980 +9104 9962 0.4450 +9104 9963 0.4530 +9104 10327 0.4300 +9104 10335 0.4190 +9104 11315 0.8340 +9104 22934 0.4420 +9104 25796 0.4040 +9104 27232 0.5270 +9104 27294 0.6990 +9104 51686 0.4100 +9104 51806 0.7290 +9104 54363 0.4340 +9104 54438 0.6990 +9104 55349 0.8590 +9104 56912 0.8570 +9104 79893 0.4910 +9104 81577 0.6990 +9104 89866 0.9490 +9104 91860 0.7810 +9104 130589 0.5040 +9104 163688 0.7090 +9104 197257 0.4460 +9104 414328 0.9900 +9107 9108 0.6470 +9107 9896 0.9360 +9107 10046 0.4220 +9107 10423 0.9100 +9107 22876 0.9120 +9107 23236 0.6600 +9107 29085 0.6560 +9107 51196 0.6540 +9107 55300 0.6680 +9107 55361 0.6780 +9107 55529 0.9090 +9107 55613 0.5290 +9107 64419 0.6560 +9107 66036 0.9980 +9107 79837 0.6590 +9107 81876 0.5510 +9107 84812 0.6660 +9107 84945 0.6280 +9107 89869 0.6570 +9107 90809 0.9030 +9107 113026 0.6790 +9107 136332 0.4950 +9107 200576 0.9430 +9108 9110 0.4500 +9108 9896 0.9330 +9108 10423 0.9150 +9108 22876 0.9090 +9108 23236 0.6620 +9108 51196 0.6540 +9108 51318 0.4200 +9108 55300 0.6700 +9108 55361 0.6670 +9108 55529 0.9000 +9108 55613 0.7970 +9108 64419 0.6280 +9108 66036 0.9900 +9108 79837 0.6740 +9108 83648 0.7140 +9108 84812 0.6660 +9108 89869 0.6600 +9108 90809 0.9000 +9108 113026 0.7400 +9108 136332 0.4950 +9108 200576 0.9260 +9110 9228 0.4560 +9110 9869 0.4600 +9110 9870 0.4410 +9110 9896 0.9220 +9110 10046 0.4260 +9110 10277 0.4410 +9110 10423 0.9150 +9110 22843 0.4150 +9110 22876 0.9140 +9110 23070 0.4280 +9110 23201 0.4450 +9110 23236 0.6510 +9110 51196 0.6580 +9110 51479 0.7760 +9110 55165 0.4310 +9110 55300 0.6680 +9110 55361 0.7040 +9110 55529 0.9310 +9110 57148 0.5620 +9110 57609 0.5460 +9110 64419 0.5220 +9110 79837 0.7340 +9110 81545 0.4360 +9110 84812 0.6580 +9110 89869 0.6580 +9110 90809 0.9240 +9110 113026 0.6960 +9110 136263 0.5280 +9110 155435 0.4480 +9110 200576 0.9230 +9111 9246 0.7200 +9111 10488 0.6750 +9111 10524 0.8740 +9111 11117 0.4200 +9111 23586 0.5560 +9111 25855 0.7900 +9111 51131 0.5700 +9111 51177 0.5970 +9111 64108 0.4230 +9111 64135 0.6370 +9111 80150 0.5790 +9111 83666 0.5930 +9111 85363 0.4180 +9111 85441 0.4310 +9111 94240 0.4560 +9111 123283 0.4280 +9112 9203 0.4300 +9112 9219 0.9980 +9112 9611 0.4010 +9112 9612 0.4320 +9112 9839 0.7000 +9112 10014 0.6340 +9112 10284 0.6180 +9112 10320 0.5630 +9112 10362 0.5480 +9112 10401 0.4220 +9112 10498 0.4060 +9112 10628 0.5400 +9112 10919 0.7340 +9112 11129 0.5390 +9112 11315 0.5110 +9112 11335 0.5750 +9112 22955 0.5250 +9112 23013 0.5120 +9112 23028 0.9180 +9112 23090 0.8270 +9112 23186 0.7460 +9112 23309 0.6380 +9112 23411 0.5360 +9112 23466 0.5450 +9112 23476 0.4100 +9112 23512 0.6570 +9112 23613 0.6880 +9112 25855 0.7670 +9112 25925 0.8340 +9112 25942 0.7620 +9112 26038 0.9590 +9112 27043 0.7630 +9112 51105 0.6790 +9112 51222 0.8030 +9112 51317 0.5910 +9112 51564 0.6700 +9112 51588 0.4670 +9112 51742 0.7600 +9112 53335 0.9220 +9112 53615 0.9930 +9112 54145 0.5190 +9112 54815 0.9990 +9112 54828 0.7040 +9112 55636 0.4200 +9112 55766 0.5010 +9112 55869 0.6770 +9112 56257 0.4140 +9112 57167 0.7470 +9112 57332 0.5620 +9112 57459 0.9970 +9112 57473 0.8690 +9112 57504 0.9930 +9112 57592 0.4840 +9112 57616 0.4020 +9112 64426 0.6270 +9112 64919 0.8550 +9112 79101 0.4050 +9112 79685 0.5090 +9112 79923 0.4900 +9112 80012 0.4990 +9112 84232 0.5160 +9112 84312 0.6030 +9112 84733 0.5410 +9112 84942 0.5140 +9112 85235 0.4010 +9112 85236 0.5170 +9112 85509 0.9070 +9112 92815 0.4010 +9112 94239 0.5120 +9112 116092 0.4590 +9112 120892 0.4520 +9112 125997 0.7270 +9112 128312 0.5190 +9112 140685 0.5640 +9112 161882 0.6420 +9112 203259 0.4200 +9112 221613 0.4460 +9112 255626 0.5170 +9112 283160 0.4320 +9112 317772 0.4010 +9112 391196 0.4260 +9112 440093 0.5910 +9112 440686 0.5910 +9112 440689 0.4230 +9112 474382 0.5010 +9112 653604 0.7870 +9113 9414 0.4110 +9113 9448 0.4760 +9113 9531 0.6610 +9113 9647 0.5540 +9113 9686 0.6490 +9113 9730 0.5720 +9113 9863 0.4370 +9113 9867 0.5240 +9113 10207 0.5810 +9113 10413 0.9990 +9113 10746 0.5220 +9113 11059 0.5360 +9113 11060 0.4410 +9113 11186 0.8350 +9113 23286 0.9820 +9113 23327 0.4060 +9113 23368 0.5600 +9113 23513 0.8950 +9113 23558 0.4380 +9113 25816 0.5820 +9113 25843 0.5650 +9113 25937 0.9970 +9113 26524 0.9890 +9113 27063 0.5960 +9113 27429 0.6260 +9113 29072 0.4940 +9113 50488 0.6150 +9113 51421 0.8320 +9113 54847 0.5270 +9113 55233 0.9990 +9113 55841 0.8410 +9113 56288 0.7480 +9113 57124 0.4300 +9113 57521 0.5260 +9113 57551 0.4730 +9113 57664 0.4800 +9113 60485 0.9990 +9113 64112 0.6690 +9113 64398 0.6030 +9113 64750 0.4040 +9113 79577 0.5300 +9113 79633 0.4410 +9113 79767 0.4370 +9113 79817 0.5240 +9113 80014 0.7670 +9113 81532 0.5000 +9113 83593 0.4720 +9113 83660 0.4330 +9113 83737 0.9380 +9113 84962 0.9740 +9113 92597 0.9990 +9113 113251 0.6450 +9113 122786 0.6630 +9113 126308 0.5550 +9113 126374 0.9690 +9113 133482 0.5670 +9113 148932 0.4940 +9113 154796 0.9820 +9113 154810 0.8760 +9113 259230 0.5580 +9113 261734 0.9230 +9114 9296 0.9990 +9114 9550 0.9990 +9114 9551 0.5950 +9114 9681 0.5130 +9114 9823 0.4460 +9114 10159 0.9990 +9114 10312 0.9980 +9114 10325 0.5380 +9114 10476 0.6140 +9114 10482 0.4200 +9114 10542 0.5330 +9114 10632 0.5830 +9114 10641 0.5200 +9114 10670 0.6010 +9114 10682 0.5430 +9114 11133 0.5030 +9114 22820 0.4580 +9114 23334 0.5160 +9114 23479 0.4150 +9114 23545 0.9990 +9114 23673 0.4440 +9114 23677 0.4080 +9114 27068 0.6920 +9114 27109 0.5510 +9114 27244 0.5070 +9114 28956 0.8720 +9114 50617 0.9990 +9114 51382 0.9990 +9114 51606 0.9990 +9114 54468 0.5160 +9114 55004 0.6850 +9114 55846 0.5330 +9114 57192 0.4010 +9114 57521 0.5470 +9114 57600 0.4380 +9114 57707 0.9070 +9114 58528 0.5860 +9114 64077 0.6880 +9114 64121 0.6390 +9114 64223 0.5290 +9114 79133 0.7030 +9114 79726 0.5500 +9114 79877 0.5660 +9114 80347 0.5740 +9114 81929 0.5080 +9114 83667 0.5220 +9114 84219 0.5180 +9114 84317 0.9860 +9114 84513 0.4900 +9114 84650 0.5400 +9114 90231 0.6030 +9114 90423 0.9960 +9114 96459 0.4370 +9114 124997 0.4090 +9114 127124 0.9530 +9114 144577 0.4990 +9114 147007 0.9870 +9114 153129 0.8600 +9114 154743 0.4280 +9114 155066 0.9480 +9114 163882 0.9740 +9114 196051 0.4900 +9114 201163 0.5540 +9114 203547 0.9420 +9114 221264 0.4370 +9114 245972 0.9710 +9114 245973 0.9770 +9114 267020 0.5630 +9114 389541 0.5950 +9114 440400 0.9920 +9114 652968 0.4470 +9114 100526740 0.5400 +9114 102157402 0.7920 +9117 9482 0.5760 +9117 9527 0.8930 +9117 9554 0.6430 +9117 9570 0.9850 +9117 9632 0.5750 +9117 9871 0.5740 +9117 9919 0.5860 +9117 10175 0.5640 +9117 10228 0.6540 +9117 10282 0.9850 +9117 10342 0.5400 +9117 10427 0.7550 +9117 10483 0.5580 +9117 10484 0.7710 +9117 10490 0.8710 +9117 10652 0.9410 +9117 10802 0.7480 +9117 10959 0.5950 +9117 10960 0.5530 +9117 10972 0.6460 +9117 11196 0.5640 +9117 11232 0.6120 +9117 22872 0.5990 +9117 23256 0.8090 +9117 23673 0.5960 +9117 26049 0.4860 +9117 26984 0.5790 +9117 51128 0.6300 +9117 51188 0.5830 +9117 51272 0.7090 +9117 53407 0.6650 +9117 55014 0.7420 +9117 55615 0.4210 +9117 55850 0.4990 +9117 60561 0.4870 +9117 63908 0.7270 +9117 64083 0.5890 +9117 64689 0.5640 +9117 79748 0.5850 +9117 81562 0.5520 +9117 81876 0.4420 +9117 83690 0.4770 +9117 89866 0.5820 +9117 90411 0.5320 +9117 138050 0.4230 +9117 143187 0.8490 +9117 145264 0.4340 +9117 149111 0.5420 +9117 153918 0.6650 +9117 203062 0.4820 +9117 203245 0.4950 +9117 254263 0.5410 +9117 283576 0.5480 +9117 339122 0.4130 +9117 642968 0.6440 +9118 9229 0.7230 +9118 9456 0.6370 +9118 10158 0.4080 +9118 10586 0.4240 +9118 10763 0.7380 +9118 23336 0.5350 +9118 23435 0.4750 +9118 25830 0.4080 +9118 29114 0.4520 +9118 57222 0.4640 +9118 81493 0.6360 +9118 85461 0.7960 +9118 85477 0.4090 +9118 146713 0.4080 +9119 23636 0.6250 +9119 27156 0.6300 +9119 51350 0.5140 +9119 56164 0.4050 +9119 79072 0.4290 +9119 83896 0.4100 +9119 112802 0.5110 +9119 121391 0.4880 +9119 128414 0.4090 +9119 128653 0.4350 +9119 140807 0.4550 +9119 144501 0.4300 +9119 155185 0.4440 +9119 196374 0.4450 +9119 201299 0.4010 +9119 202333 0.4060 +9119 284001 0.4560 +9119 286887 0.4690 +9119 319101 0.4390 +9119 338785 0.4500 +9119 341640 0.4090 +9119 374454 0.4290 +9119 390199 0.4250 +9119 392392 0.4160 +9119 400720 0.4180 +9120 22901 0.5740 +9120 51129 0.4080 +9121 10476 0.4830 +9121 23510 0.4500 +9121 28985 0.4200 +9121 30833 0.4240 +9121 54020 0.4390 +9121 79637 0.4350 +9121 79872 0.4910 +9121 116369 0.4360 +9121 129530 0.4020 +9121 153328 0.4530 +9121 201266 0.4440 +9121 220963 0.4420 +9121 259173 0.4610 +9122 9194 0.6060 +9122 9376 0.4590 +9122 9497 0.4510 +9122 10864 0.4170 +9122 10891 0.4180 +9122 27198 0.6010 +9122 28985 0.5930 +9122 57103 0.4450 +9122 57835 0.4160 +9122 79674 0.4060 +9122 79872 0.8740 +9122 84465 0.4060 +9122 133418 0.5330 +9122 150275 0.4480 +9122 159963 0.5220 +9122 160728 0.6000 +9123 9194 0.8010 +9123 9497 0.4520 +9123 10891 0.4180 +9123 23539 0.5300 +9123 26503 0.7790 +9123 27198 0.6020 +9123 28985 0.6380 +9123 54407 0.4330 +9123 54583 0.4350 +9123 55966 0.4610 +9123 57103 0.4390 +9123 79872 0.8340 +9123 121260 0.4660 +9123 133418 0.9320 +9123 159963 0.5910 +9123 160728 0.6170 +9124 9212 0.4460 +9124 9260 0.6360 +9124 9499 0.5370 +9124 10611 0.7810 +9124 10787 0.5660 +9124 11155 0.6300 +9124 23301 0.6120 +9124 23384 0.5490 +9124 23607 0.5590 +9124 27295 0.5770 +9124 29964 0.5810 +9124 53904 0.5450 +9124 55604 0.5430 +9124 56940 0.5780 +9124 57407 0.5180 +9124 57514 0.4100 +9124 64236 0.5760 +9124 79850 0.4120 +9124 83594 0.4290 +9124 83700 0.5470 +9124 83715 0.5450 +9124 84700 0.4560 +9124 85477 0.4850 +9124 92521 0.5490 +9124 140901 0.9570 +9124 219537 0.5800 +9124 254102 0.6160 +9124 342527 0.5980 +9124 344558 0.4300 +9124 440574 0.4210 +9125 9191 0.6080 +9125 9337 0.9990 +9125 9402 0.4040 +9125 9775 0.4800 +9125 9924 0.4340 +9125 10140 0.9790 +9125 10247 0.8090 +9125 10526 0.4870 +9125 10527 0.4980 +9125 10605 0.5180 +9125 11044 0.7460 +9125 22849 0.9090 +9125 23019 0.9990 +9125 23112 0.5920 +9125 23369 0.4070 +9125 23517 0.9700 +9125 25819 0.8070 +9125 25904 0.9990 +9125 26058 0.6480 +9125 26986 0.7100 +9125 27327 0.9760 +9125 29883 0.9990 +9125 50488 0.6080 +9125 54464 0.6170 +9125 54542 0.7160 +9125 55571 0.9990 +9125 55601 0.4900 +9125 56157 0.6220 +9125 56478 0.4130 +9125 57472 0.9990 +9125 64282 0.7600 +9125 64599 0.8030 +9125 64682 0.4260 +9125 65095 0.4370 +9125 79596 0.4250 +9125 80153 0.4540 +9125 80313 0.6920 +9125 85456 0.9860 +9125 115795 0.4800 +9125 124801 0.7100 +9125 149041 0.8590 +9125 158787 0.6220 +9125 167227 0.5630 +9125 201626 0.7370 +9125 219988 0.5130 +9125 246175 0.9990 +9125 339345 0.7410 +9125 390748 0.4910 +9126 9133 0.5670 +9126 9156 0.5600 +9126 9184 0.6600 +9126 9212 0.7260 +9126 9232 0.5140 +9126 9371 0.4890 +9126 9401 0.5880 +9126 9584 0.4270 +9126 9656 0.9740 +9126 9657 0.4250 +9126 9700 0.9940 +9126 9734 0.5690 +9126 9780 0.4120 +9126 9782 0.4620 +9126 9793 0.4250 +9126 9918 0.8390 +9126 9928 0.4160 +9126 9968 0.5080 +9126 9985 0.9990 +9126 10051 0.8440 +9126 10111 0.4950 +9126 10127 0.5170 +9126 10142 0.5120 +9126 10155 0.4690 +9126 10274 0.9990 +9126 10291 0.4070 +9126 10388 0.7640 +9126 10403 0.6820 +9126 10428 0.4750 +9126 10576 0.4620 +9126 10592 0.8700 +9126 10664 0.9890 +9126 10733 0.5420 +9126 10734 0.9990 +9126 10735 0.9990 +9126 10744 0.5190 +9126 10769 0.5770 +9126 10926 0.4350 +9126 10933 0.4030 +9126 11083 0.5090 +9126 11127 0.6440 +9126 11144 0.4310 +9126 11168 0.6660 +9126 11169 0.8410 +9126 11198 0.4220 +9126 11200 0.5820 +9126 11201 0.4480 +9126 11335 0.5160 +9126 22920 0.6310 +9126 22976 0.6050 +9126 23047 0.9970 +9126 23063 0.9990 +9126 23137 0.9330 +9126 23224 0.6010 +9126 23244 0.9990 +9126 23310 0.7120 +9126 23322 0.4690 +9126 23345 0.6080 +9126 23353 0.6280 +9126 23381 0.4180 +9126 23383 0.9420 +9126 23397 0.8340 +9126 23469 0.4230 +9126 23476 0.6150 +9126 23595 0.6550 +9126 23626 0.7010 +9126 25777 0.5950 +9126 25836 0.9990 +9126 25861 0.4480 +9126 25913 0.5420 +9126 25942 0.5690 +9126 26040 0.4930 +9126 26277 0.5810 +9126 27030 0.4420 +9126 27127 0.9990 +9126 27159 0.5330 +9126 29123 0.5810 +9126 29781 0.5550 +9126 50511 0.8940 +9126 51341 0.4820 +9126 54145 0.6310 +9126 54386 0.5180 +9126 54780 0.7680 +9126 54790 0.5490 +9126 54892 0.6430 +9126 54921 0.9360 +9126 54962 0.5440 +9126 55003 0.4260 +9126 55031 0.4570 +9126 55143 0.4480 +9126 55252 0.4070 +9126 55696 0.4150 +9126 55701 0.5080 +9126 55766 0.5510 +9126 55869 0.9200 +9126 56158 0.6620 +9126 56160 0.6410 +9126 56916 0.4440 +9126 57082 0.4500 +9126 57096 0.4890 +9126 57680 0.4170 +9126 57695 0.4160 +9126 57697 0.6830 +9126 63035 0.5650 +9126 63895 0.4120 +9126 63922 0.9470 +9126 64151 0.8160 +9126 79075 0.9050 +9126 79677 0.9270 +9126 79892 0.5940 +9126 79915 0.7040 +9126 79923 0.4730 +9126 80184 0.4530 +9126 80198 0.5170 +9126 81554 0.6040 +9126 83540 0.4260 +9126 84057 0.5360 +9126 84072 0.7600 +9126 84295 0.5740 +9126 84515 0.4060 +9126 85236 0.6320 +9126 90379 0.5850 +9126 91404 0.5080 +9126 93426 0.7320 +9126 94239 0.6520 +9126 112950 0.4930 +9126 113130 0.9940 +9126 114799 0.9970 +9126 126520 0.5530 +9126 128312 0.6300 +9126 140690 0.7580 +9126 147912 0.5880 +9126 149708 0.4030 +9126 150280 0.7340 +9126 151246 0.9670 +9126 151648 0.8240 +9126 152110 0.4500 +9126 157570 0.9980 +9126 164045 0.4410 +9126 171023 0.6000 +9126 197370 0.7640 +9126 202018 0.4970 +9126 203068 0.4440 +9126 254827 0.5870 +9126 255626 0.6290 +9126 256126 0.7750 +9126 286053 0.8790 +9126 440093 0.5530 +9126 440686 0.5530 +9126 474382 0.5510 +9126 493861 0.7370 +9126 642636 0.9980 +9126 644186 0.7500 +9126 653604 0.7910 +9127 9529 0.4120 +9127 9934 0.7310 +9127 10291 0.4650 +9127 11080 0.7430 +9127 22953 0.9820 +9127 24145 0.4300 +9127 25822 0.8040 +9127 53829 0.7840 +9127 64805 0.6210 +9127 80764 0.5430 +9127 150209 0.5540 +9127 377841 0.4130 +9127 692312 0.7480 +9128 9129 0.9990 +9128 9343 0.9990 +9128 9410 0.9860 +9128 9416 0.9960 +9128 9465 0.4720 +9128 9532 0.4300 +9128 9584 0.5740 +9128 9733 0.9430 +9128 9785 0.6760 +9128 9879 0.4350 +9128 10084 0.4130 +9128 10179 0.5500 +9128 10189 0.6660 +9128 10243 0.4980 +9128 10262 0.9940 +9128 10283 0.9410 +9128 10284 0.5040 +9128 10286 0.4760 +9128 10291 0.9980 +9128 10328 0.4010 +9128 10421 0.6210 +9128 10465 0.9990 +9128 10554 0.6770 +9128 10594 0.9990 +9128 10621 0.4910 +9128 10713 0.9830 +9128 10856 0.4430 +9128 10907 0.9940 +9128 10921 0.6290 +9128 10946 0.9940 +9128 10973 0.5120 +9128 10992 0.9930 +9128 11017 0.9450 +9128 11157 0.9990 +9128 11193 0.9920 +9128 11315 0.4410 +9128 11338 0.5310 +9128 22826 0.5870 +9128 22827 0.4600 +9128 22938 0.4240 +9128 22985 0.4250 +9128 23020 0.9990 +9128 23404 0.5510 +9128 23450 0.9950 +9128 23451 0.9960 +9128 23517 0.4030 +9128 23524 0.9120 +9128 23658 0.9990 +9128 24144 0.5630 +9128 24148 0.9990 +9128 25804 0.9990 +9128 25926 0.4330 +9128 25980 0.6160 +9128 26121 0.9990 +9128 27238 0.7820 +9128 27257 0.5900 +9128 27258 0.9980 +9128 27336 0.5670 +9128 27339 0.8510 +9128 29894 0.4360 +9128 51340 0.4110 +9128 51634 0.9550 +9128 51639 0.8200 +9128 51690 0.9990 +9128 51691 0.9990 +9128 51729 0.4420 +9128 51747 0.5210 +9128 54840 0.5340 +9128 54957 0.7750 +9128 55110 0.9230 +9128 55226 0.4480 +9128 55234 0.9810 +9128 55341 0.6520 +9128 55746 0.4670 +9128 55749 0.5090 +9128 56257 0.8200 +9128 57187 0.4060 +9128 57703 0.9160 +9128 57794 0.5330 +9128 57819 0.9990 +9128 59286 0.8970 +9128 64852 0.8660 +9128 79066 0.5070 +9128 79171 0.9360 +9128 79631 0.4720 +9128 79753 0.9710 +9128 79902 0.4420 +9128 83443 0.9910 +9128 84316 0.4390 +9128 84619 0.7830 +9128 84811 0.9590 +9128 84844 0.9930 +9128 84950 0.9870 +9128 84967 0.4290 +9128 85476 0.4140 +9128 117246 0.5090 +9128 126259 0.4390 +9128 130557 0.4700 +9128 145226 0.4030 +9128 147650 0.4390 +9128 153527 0.9980 +9128 164045 0.4830 +9128 219988 0.6830 +9128 284325 0.8490 +9128 286257 0.5160 +9128 338657 0.4830 +9128 440275 0.4990 +9129 9147 0.5610 +9129 9227 0.4110 +9129 9343 0.9990 +9129 9360 0.4510 +9129 9410 0.9880 +9129 9416 0.9990 +9129 9465 0.7060 +9129 9584 0.7430 +9129 9694 0.4180 +9129 9733 0.9680 +9129 9785 0.7810 +9129 9790 0.4590 +9129 9869 0.5190 +9129 9879 0.6550 +9129 9958 0.7550 +9129 9967 0.4590 +9129 9984 0.5040 +9129 10002 0.7180 +9129 10084 0.4460 +9129 10179 0.5630 +9129 10210 0.8060 +9129 10250 0.5640 +9129 10262 0.9960 +9129 10283 0.9480 +9129 10284 0.4440 +9129 10285 0.8320 +9129 10286 0.5170 +9129 10291 0.9970 +9129 10421 0.7700 +9129 10461 0.6260 +9129 10465 0.9990 +9129 10557 0.4150 +9129 10569 0.9970 +9129 10594 0.9990 +9129 10713 0.9950 +9129 10907 0.9970 +9129 10921 0.5860 +9129 10946 0.9970 +9129 10973 0.7610 +9129 10992 0.9990 +9129 11017 0.9410 +9129 11157 0.9990 +9129 11193 0.9880 +9129 11338 0.9160 +9129 22826 0.5210 +9129 22938 0.6050 +9129 22985 0.6320 +9129 23020 0.9990 +9129 23047 0.5080 +9129 23244 0.5190 +9129 23435 0.4940 +9129 23450 0.9950 +9129 23451 0.9980 +9129 23524 0.9490 +9129 23658 0.9970 +9129 24144 0.7970 +9129 24148 0.9990 +9129 25794 0.8110 +9129 25804 0.9990 +9129 25940 0.6370 +9129 25980 0.4970 +9129 26121 0.9990 +9129 27257 0.5840 +9129 27258 0.9990 +9129 27336 0.5680 +9129 27339 0.8450 +9129 50939 0.7220 +9129 51362 0.5370 +9129 51574 0.5680 +9129 51575 0.4400 +9129 51602 0.4120 +9129 51611 0.4090 +9129 51634 0.9740 +9129 51639 0.8410 +9129 51690 0.9980 +9129 51691 0.9990 +9129 51729 0.4350 +9129 51747 0.5910 +9129 54460 0.4650 +9129 54505 0.5770 +9129 54542 0.4120 +9129 54819 0.4920 +9129 54870 0.4480 +9129 54957 0.9010 +9129 55110 0.9020 +9129 55234 0.9840 +9129 55280 0.4720 +9129 55421 0.4070 +9129 55599 0.4780 +9129 55660 0.6460 +9129 55692 0.5170 +9129 55696 0.4460 +9129 55702 0.4040 +9129 55749 0.5260 +9129 55812 0.4430 +9129 55975 0.7250 +9129 56257 0.9010 +9129 56259 0.7370 +9129 56949 0.7790 +9129 57703 0.9320 +9129 57794 0.5960 +9129 57819 0.9990 +9129 58517 0.6870 +9129 59286 0.8760 +9129 64116 0.6930 +9129 64218 0.7870 +9129 64852 0.7910 +9129 64969 0.5800 +9129 65083 0.5570 +9129 79171 0.9580 +9129 79576 0.7780 +9129 79631 0.5100 +9129 79727 0.5040 +9129 79753 0.9740 +9129 79947 0.4650 +9129 83443 0.9910 +9129 83938 0.5350 +9129 84140 0.4470 +9129 84316 0.5410 +9129 84619 0.7370 +9129 84811 0.9690 +9129 84844 0.9920 +9129 84950 0.9920 +9129 84967 0.6610 +9129 85476 0.5060 +9129 92105 0.5330 +9129 118924 0.5010 +9129 124245 0.4020 +9129 126259 0.5410 +9129 130557 0.7490 +9129 145226 0.7060 +9129 147650 0.5420 +9129 153527 0.9980 +9129 164045 0.5960 +9129 164781 0.8610 +9129 170506 0.5890 +9129 219988 0.6950 +9129 220074 0.5350 +9129 221092 0.5370 +9129 284325 0.8430 +9129 338657 0.7980 +9129 346007 0.7250 +9129 348793 0.8640 +9129 375298 0.7910 +9129 388939 0.7080 +9129 727897 0.4530 +9129 768206 0.7000 +9130 9343 0.5210 +9130 9785 0.5290 +9130 10189 0.8330 +9130 10250 0.8020 +9130 10569 0.8250 +9130 11338 0.5130 +9130 24144 0.5380 +9130 25855 0.4240 +9130 25949 0.8010 +9130 26240 0.4890 +9130 51362 0.8070 +9130 51645 0.8010 +9130 51759 0.5530 +9130 54883 0.5330 +9130 54913 0.4410 +9130 55094 0.5070 +9130 55100 0.5150 +9130 55702 0.5080 +9130 55837 0.4650 +9130 57187 0.4310 +9130 60343 0.4040 +9130 60625 0.5140 +9130 65109 0.8290 +9130 84081 0.4990 +9130 138716 0.5350 +9130 143884 0.4990 +9130 199746 0.4990 +9131 9531 0.4030 +9131 9555 0.7040 +9131 9868 0.4910 +9131 9941 0.4830 +9131 10001 0.4380 +9131 10102 0.6390 +9131 10105 0.5900 +9131 10243 0.4490 +9131 10452 0.6300 +9131 10456 0.4280 +9131 10492 0.6200 +9131 10572 0.5840 +9131 10587 0.4280 +9131 10730 0.5120 +9131 10845 0.4350 +9131 10856 0.4190 +9131 10939 0.5390 +9131 10989 0.5830 +9131 11035 0.4020 +9131 11160 0.5500 +9131 11331 0.5760 +9131 23676 0.5540 +9131 23705 0.4160 +9131 23759 0.4010 +9131 24137 0.4780 +9131 25959 0.6120 +9131 26092 0.4660 +9131 26521 0.4250 +9131 27429 0.4420 +9131 27430 0.4260 +9131 50814 0.4080 +9131 51021 0.7320 +9131 51167 0.4720 +9131 51268 0.6260 +9131 51300 0.5210 +9131 51741 0.4500 +9131 54205 0.6360 +9131 54902 0.4890 +9131 54927 0.4330 +9131 55066 0.4080 +9131 55168 0.4170 +9131 55506 0.6760 +9131 55526 0.4480 +9131 55735 0.4550 +9131 55766 0.6700 +9131 56945 0.5780 +9131 57129 0.4620 +9131 58157 0.4010 +9131 60488 0.4030 +9131 64112 0.4630 +9131 64965 0.4690 +9131 64983 0.4110 +9131 65260 0.4990 +9131 79135 0.4040 +9131 81570 0.4620 +9131 81624 0.4310 +9131 84883 0.5140 +9131 85476 0.6050 +9131 89941 0.4060 +9131 92815 0.6550 +9131 93974 0.5130 +9131 94081 0.4600 +9131 94239 0.6550 +9131 112812 0.6060 +9131 112817 0.5930 +9131 120892 0.5170 +9131 131474 0.7910 +9131 139322 0.5160 +9131 166824 0.4930 +9131 192111 0.5900 +9131 221613 0.6520 +9131 221823 0.6170 +9131 317772 0.6600 +9131 440603 0.4280 +9131 474381 0.6550 +9131 474382 0.6550 +9131 730249 0.6210 +9132 9196 0.6260 +9132 9349 0.5820 +9132 9381 0.6700 +9132 9635 0.4050 +9132 9732 0.4470 +9132 9780 0.4410 +9132 9858 0.4340 +9132 9992 0.5230 +9132 10008 0.8460 +9132 10083 0.4630 +9132 10399 0.4460 +9132 10412 0.4460 +9132 10473 0.4780 +9132 10804 0.5500 +9132 11078 0.4660 +9132 11222 0.4760 +9132 11224 0.5770 +9132 23416 0.4170 +9132 23521 0.4800 +9132 23562 0.4910 +9132 23630 0.4910 +9132 23704 0.9660 +9132 25873 0.5260 +9132 28998 0.4570 +9132 29093 0.5030 +9132 51065 0.5040 +9132 51069 0.4620 +9132 51073 0.4320 +9132 51081 0.5030 +9132 51116 0.4220 +9132 51121 0.5160 +9132 51149 0.5010 +9132 51154 0.4210 +9132 51168 0.6230 +9132 51305 0.4240 +9132 51806 0.5610 +9132 53405 0.4450 +9132 55173 0.5090 +9132 55272 0.4950 +9132 55316 0.5010 +9132 56479 0.9750 +9132 56648 0.4260 +9132 56649 0.4480 +9132 57053 0.4810 +9132 63895 0.4840 +9132 63931 0.5010 +9132 64072 0.6730 +9132 64699 0.5720 +9132 64960 0.5010 +9132 64963 0.5010 +9132 64969 0.4640 +9132 65003 0.4780 +9132 65008 0.4690 +9132 65217 0.7170 +9132 79590 0.5160 +9132 79784 0.4790 +9132 79977 0.4480 +9132 83715 0.4280 +9132 84059 0.5650 +9132 91860 0.4270 +9132 93550 0.4080 +9132 114987 0.4460 +9132 117531 0.7180 +9132 117532 0.5600 +9132 124590 0.5800 +9132 125336 0.5170 +9132 126402 0.5050 +9132 140032 0.4890 +9132 143244 0.4260 +9132 146183 0.4810 +9132 152137 0.4160 +9132 161003 0.4770 +9132 161497 0.5690 +9132 163688 0.4410 +9132 200916 0.4750 +9132 219736 0.4020 +9132 222662 0.4770 +9132 246213 0.6010 +9132 259236 0.4600 +9132 283310 0.6040 +9132 285855 0.4500 +9132 286262 0.4130 +9132 340990 0.6840 +9132 347487 0.4220 +9132 375611 0.6960 +9132 387129 0.4520 +9132 388551 0.4210 +9132 389207 0.6300 +9132 494513 0.6110 +9132 100134444 0.9180 +9132 100287482 0.4220 +9132 100505478 0.4500 +9132 100526842 0.5030 +9132 100529097 0.4960 +9132 100529239 0.5030 +9133 9134 0.8990 +9133 9156 0.7440 +9133 9183 0.4840 +9133 9184 0.8000 +9133 9212 0.9900 +9133 9232 0.9700 +9133 9319 0.7410 +9133 9493 0.9370 +9133 9585 0.6360 +9133 9631 0.5540 +9133 9636 0.4060 +9133 9688 0.4760 +9133 9700 0.7940 +9133 9735 0.7360 +9133 9748 0.9000 +9133 9768 0.8820 +9133 9787 0.9740 +9133 9793 0.7520 +9133 9818 0.4330 +9133 9824 0.5090 +9133 9833 0.9750 +9133 9837 0.4820 +9133 9883 0.4240 +9133 9918 0.7390 +9133 9928 0.6470 +9133 9972 0.4510 +9133 10024 0.6740 +9133 10036 0.4710 +9133 10051 0.8640 +9133 10112 0.9380 +9133 10274 0.4510 +9133 10389 0.6400 +9133 10393 0.9270 +9133 10403 0.8750 +9133 10460 0.6700 +9133 10535 0.4400 +9133 10592 0.7110 +9133 10615 0.7600 +9133 10635 0.7340 +9133 10726 0.4510 +9133 10733 0.7610 +9133 10735 0.4670 +9133 10744 0.6900 +9133 10762 0.4510 +9133 10769 0.6360 +9133 10912 0.9210 +9133 10926 0.6400 +9133 11004 0.9710 +9133 11047 0.6600 +9133 11065 0.9680 +9133 11097 0.4160 +9133 11130 0.9200 +9133 11169 0.4280 +9133 11200 0.6330 +9133 11243 0.4180 +9133 11339 0.7700 +9133 22849 0.9040 +9133 22919 0.4720 +9133 22974 0.9530 +9133 22984 0.4210 +9133 23047 0.5000 +9133 23063 0.4130 +9133 23165 0.5060 +9133 23225 0.4710 +9133 23244 0.5480 +9133 23279 0.4540 +9133 23397 0.8930 +9133 23421 0.4710 +9133 23511 0.4260 +9133 23594 0.5310 +9133 23636 0.4560 +9133 24137 0.8640 +9133 25847 0.9000 +9133 25886 0.4320 +9133 25909 0.4280 +9133 25936 0.4640 +9133 26271 0.5050 +9133 26586 0.5780 +9133 27152 0.6070 +9133 28227 0.6920 +9133 29028 0.4590 +9133 29089 0.6620 +9133 29127 0.8290 +9133 29128 0.5220 +9133 29882 0.9250 +9133 29925 0.4370 +9133 29945 0.9510 +9133 51053 0.5690 +9133 51143 0.4550 +9133 51203 0.9620 +9133 51343 0.9250 +9133 51377 0.5760 +9133 51433 0.9220 +9133 51434 0.9160 +9133 51512 0.8260 +9133 51514 0.5620 +9133 51659 0.8440 +9133 53371 0.4300 +9133 54069 0.4160 +9133 54443 0.6330 +9133 54478 0.7540 +9133 54820 0.5000 +9133 54821 0.6720 +9133 54892 0.5060 +9133 54908 0.5620 +9133 55010 0.5220 +9133 55055 0.6180 +9133 55143 0.9740 +9133 55165 0.9070 +9133 55166 0.5620 +9133 55215 0.5860 +9133 55294 0.4400 +9133 55355 0.9050 +9133 55388 0.6320 +9133 55635 0.7240 +9133 55706 0.5390 +9133 55723 0.5870 +9133 55746 0.4470 +9133 55771 0.4180 +9133 55789 0.6100 +9133 55839 0.8430 +9133 55920 0.5480 +9133 55957 0.6660 +9133 56992 0.8280 +9133 57082 0.8290 +9133 57122 0.4900 +9133 57405 0.7380 +9133 57551 0.4140 +9133 57590 0.4390 +9133 57650 0.4170 +9133 64105 0.6860 +9133 64151 0.9700 +9133 64506 0.9280 +9133 64682 0.9530 +9133 64689 0.4210 +9133 64946 0.7480 +9133 65061 0.5490 +9133 79003 0.4450 +9133 79019 0.8870 +9133 79023 0.6370 +9133 79075 0.5080 +9133 79172 0.5700 +9133 79616 0.4070 +9133 79682 0.8460 +9133 79733 0.5910 +9133 79801 0.5440 +9133 79866 0.6290 +9133 79902 0.4470 +9133 79980 0.5490 +9133 80119 0.4030 +9133 80152 0.5360 +9133 80315 0.9070 +9133 81565 0.4830 +9133 81610 0.5990 +9133 81620 0.8220 +9133 81624 0.7640 +9133 81669 0.8330 +9133 81876 0.4300 +9133 81929 0.4290 +9133 81930 0.8090 +9133 83461 0.9130 +9133 83540 0.9320 +9133 83879 0.6090 +9133 84057 0.5660 +9133 84153 0.4820 +9133 84643 0.5000 +9133 84930 0.4750 +9133 85417 0.9290 +9133 90381 0.4740 +9133 90417 0.4370 +9133 91687 0.4510 +9133 91750 0.6160 +9133 91754 0.4500 +9133 92292 0.4130 +9133 92906 0.6260 +9133 113115 0.4050 +9133 113130 0.9690 +9133 126520 0.5770 +9133 128239 0.4200 +9133 129401 0.4910 +9133 132660 0.6810 +9133 132864 0.9040 +9133 140735 0.5590 +9133 144455 0.5680 +9133 146909 0.5100 +9133 147841 0.7340 +9133 150468 0.7290 +9133 151195 0.4170 +9133 151246 0.5560 +9133 151648 0.8350 +9133 157313 0.7930 +9133 157570 0.5150 +9133 166979 0.7600 +9133 219970 0.4030 +9133 220134 0.7670 +9133 221150 0.6510 +9133 246184 0.9170 +9133 259266 0.9510 +9133 286826 0.7020 +9133 348235 0.5210 +9133 348995 0.4970 +9133 378708 0.5680 +9133 387103 0.6290 +9133 401541 0.5090 +9133 402569 0.5890 +9133 494551 0.5710 +9133 644672 0.4400 +9133 728378 0.4440 +9133 728642 0.4480 +9133 100101267 0.4240 +9133 100287520 0.4030 +9134 9156 0.5960 +9134 9212 0.5080 +9134 9493 0.5220 +9134 9519 0.6030 +9134 9692 0.5660 +9134 9768 0.6030 +9134 9787 0.4090 +9134 9833 0.4220 +9134 9837 0.4500 +9134 9861 0.4850 +9134 9928 0.5330 +9134 9978 0.9180 +9134 10051 0.4510 +9134 10197 0.4160 +9134 10213 0.4690 +9134 10238 0.4010 +9134 10309 0.4600 +9134 10389 0.6310 +9134 10393 0.6630 +9134 10517 0.4720 +9134 10519 0.5320 +9134 10528 0.4160 +9134 10564 0.4050 +9134 10574 0.5290 +9134 10575 0.5430 +9134 10576 0.5670 +9134 10635 0.4940 +9134 10693 0.5170 +9134 10694 0.5250 +9134 10733 0.5050 +9134 10983 0.4400 +9134 11073 0.5280 +9134 11130 0.4740 +9134 11200 0.4990 +9134 11328 0.4030 +9134 22803 0.4520 +9134 22948 0.5640 +9134 22984 0.8190 +9134 23063 0.5120 +9134 23594 0.4700 +9134 23595 0.7070 +9134 24137 0.4160 +9134 25847 0.6680 +9134 26190 0.4510 +9134 26224 0.4050 +9134 26271 0.6550 +9134 26272 0.4620 +9134 26330 0.6350 +9134 27113 0.5170 +9134 29028 0.6580 +9134 29128 0.4860 +9134 29882 0.6690 +9134 29945 0.6600 +9134 29980 0.4370 +9134 51053 0.5280 +9134 51203 0.4820 +9134 51433 0.6700 +9134 51434 0.7110 +9134 51514 0.5710 +9134 51659 0.4090 +9134 54443 0.5040 +9134 54461 0.4020 +9134 55135 0.4200 +9134 55143 0.4720 +9134 55244 0.5650 +9134 55255 0.4440 +9134 55294 0.7020 +9134 55388 0.8250 +9134 55957 0.5760 +9134 57060 0.5220 +9134 57634 0.5200 +9134 57680 0.4670 +9134 64682 0.7290 +9134 65061 0.4230 +9134 79075 0.5490 +9134 79733 0.7230 +9134 79935 0.4400 +9134 81620 0.6450 +9134 81669 0.7940 +9134 83879 0.4080 +9134 84261 0.4720 +9134 85417 0.5180 +9134 85453 0.4700 +9134 91750 0.5550 +9134 91768 0.5030 +9134 112849 0.5920 +9134 132660 0.6180 +9134 137682 0.5580 +9134 144455 0.5200 +9134 146802 0.5650 +9134 246184 0.6830 +9134 259266 0.4150 +9134 286826 0.6290 +9134 340390 0.5150 +9134 345079 0.4400 +9134 387332 0.6100 +9134 399949 0.6010 +9134 645121 0.4400 +9134 728378 0.4140 +9134 728642 0.4030 +9135 9321 0.6910 +9135 9414 0.4010 +9135 9610 0.4240 +9135 9648 0.5720 +9135 9738 0.4360 +9135 9821 0.4800 +9135 10890 0.4370 +9135 11276 0.4950 +9135 11311 0.5300 +9135 22879 0.4520 +9135 22895 0.5930 +9135 23011 0.5830 +9135 23062 0.9740 +9135 23163 0.9960 +9135 23355 0.4170 +9135 26060 0.6420 +9135 26088 0.9970 +9135 26130 0.7810 +9135 26146 0.9480 +9135 27352 0.4510 +9135 30811 0.6000 +9135 50618 0.5940 +9135 51479 0.7090 +9135 51622 0.7020 +9135 53916 0.4470 +9135 54461 0.4220 +9135 54469 0.4420 +9135 54536 0.4800 +9135 54806 0.4220 +9135 54843 0.4570 +9135 55054 0.4670 +9135 55435 0.5970 +9135 55662 0.4460 +9135 56850 0.4290 +9135 57120 0.4040 +9135 57403 0.7750 +9135 57679 0.5020 +9135 64145 0.8420 +9135 64284 0.5300 +9135 79874 0.5510 +9135 80184 0.4560 +9135 80230 0.5340 +9135 83452 0.5230 +9135 84254 0.4080 +9135 84315 0.7140 +9135 90410 0.6280 +9135 93550 0.4110 +9135 117177 0.5580 +9135 221960 0.7000 +9135 399687 0.4270 +9135 729873 0.5170 +9136 9188 0.4750 +9136 9221 0.7140 +9136 9277 0.9990 +9136 9410 0.9220 +9136 9533 0.6440 +9136 9704 0.6490 +9136 9724 0.9690 +9136 9732 0.6190 +9136 9775 0.4120 +9136 9782 0.4080 +9136 9790 0.9980 +9136 9904 0.6130 +9136 9924 0.4910 +9136 9933 0.8490 +9136 9984 0.7350 +9136 10153 0.6110 +9136 10171 0.9980 +9136 10189 0.4340 +9136 10199 0.9990 +9136 10200 0.4780 +9136 10236 0.4200 +9136 10248 0.9260 +9136 10302 0.4010 +9136 10322 0.5140 +9136 10412 0.5460 +9136 10436 0.9960 +9136 10438 0.7790 +9136 10514 0.6290 +9136 10521 0.5040 +9136 10528 0.9990 +9136 10556 0.9110 +9136 10557 0.9240 +9136 10607 0.9990 +9136 10775 0.6740 +9136 10785 0.6960 +9136 10799 0.6240 +9136 10813 0.9960 +9136 10849 0.5010 +9136 10856 0.4780 +9136 10885 0.9980 +9136 10940 0.9140 +9136 10969 0.7170 +9136 11056 0.5200 +9136 11103 0.9990 +9136 11128 0.4630 +9136 11137 0.5280 +9136 11157 0.5800 +9136 11340 0.7650 +9136 22803 0.4950 +9136 22894 0.4440 +9136 22907 0.4340 +9136 22984 0.9950 +9136 23016 0.7840 +9136 23029 0.4100 +9136 23054 0.7960 +9136 23076 0.7210 +9136 23160 0.9990 +9136 23204 0.6190 +9136 23212 0.8540 +9136 23223 0.8850 +9136 23246 0.9280 +9136 23350 0.4430 +9136 23367 0.4160 +9136 23378 0.6550 +9136 23404 0.7820 +9136 23481 0.8800 +9136 23517 0.8780 +9136 23560 0.6900 +9136 25879 0.9990 +9136 25885 0.7410 +9136 25926 0.9370 +9136 25983 0.9980 +9136 26155 0.8570 +9136 26156 0.9700 +9136 26168 0.6020 +9136 26354 0.6230 +9136 26574 0.9970 +9136 27037 0.4670 +9136 27042 0.9400 +9136 27043 0.5750 +9136 27292 0.9810 +9136 27340 0.9980 +9136 27341 0.9980 +9136 28987 0.8920 +9136 29777 0.6250 +9136 29889 0.8300 +9136 29896 0.4440 +9136 29997 0.5000 +9136 30836 0.9910 +9136 51010 0.7710 +9136 51013 0.8220 +9136 51018 0.7440 +9136 51042 0.7630 +9136 51065 0.8550 +9136 51068 0.4810 +9136 51073 0.8530 +9136 51077 0.9970 +9136 51081 0.8050 +9136 51082 0.5330 +9136 51096 0.9980 +9136 51106 0.5690 +9136 51118 0.9960 +9136 51149 0.8430 +9136 51154 0.8780 +9136 51187 0.6270 +9136 51202 0.8430 +9136 51236 0.4480 +9136 51319 0.5730 +9136 51367 0.9190 +9136 51388 0.8920 +9136 51406 0.8090 +9136 51538 0.5070 +9136 51547 0.6000 +9136 51574 0.5770 +9136 51575 0.7360 +9136 51602 0.9990 +9136 51692 0.4070 +9136 54433 0.8250 +9136 54475 0.7470 +9136 54512 0.8340 +9136 54552 0.6030 +9136 54555 0.7520 +9136 54606 0.8910 +9136 54663 0.7140 +9136 54853 0.4830 +9136 54865 0.4660 +9136 54881 0.6560 +9136 54913 0.9160 +9136 54984 0.6080 +9136 55003 0.7470 +9136 55006 0.5690 +9136 55127 0.9990 +9136 55131 0.8900 +9136 55153 0.4290 +9136 55164 0.4460 +9136 55226 0.9980 +9136 55272 0.9980 +9136 55299 0.7690 +9136 55341 0.4340 +9136 55505 0.9410 +9136 55621 0.5210 +9136 55622 0.4340 +9136 55646 0.5490 +9136 55651 0.9430 +9136 55695 0.5730 +9136 55720 0.8710 +9136 55759 0.9160 +9136 55760 0.4940 +9136 55781 0.4680 +9136 55794 0.6850 +9136 55813 0.9990 +9136 56342 0.8070 +9136 56902 0.9740 +9136 56915 0.8480 +9136 56919 0.6420 +9136 56931 0.4570 +9136 57050 0.9980 +9136 57109 0.5510 +9136 57418 0.7660 +9136 57647 0.9610 +9136 60487 0.6270 +9136 60625 0.6460 +9136 64077 0.4170 +9136 64118 0.4270 +9136 64216 0.7700 +9136 64318 0.4470 +9136 64425 0.8560 +9136 64434 0.9760 +9136 64794 0.6220 +9136 64960 0.7770 +9136 64963 0.7150 +9136 65083 0.9990 +9136 65095 0.6480 +9136 79039 0.6530 +9136 79050 0.9990 +9136 79080 0.6260 +9136 79159 0.7570 +9136 79228 0.5100 +9136 79571 0.7970 +9136 79665 0.5100 +9136 79707 0.5610 +9136 79711 0.4540 +9136 79954 0.9960 +9136 80135 0.6350 +9136 81627 0.4400 +9136 81887 0.6340 +9136 81890 0.4070 +9136 83475 0.5000 +9136 83732 0.4110 +9136 83743 0.9280 +9136 84128 0.9990 +9136 84135 0.9990 +9136 84154 0.8850 +9136 84172 0.6690 +9136 84294 0.8200 +9136 84321 0.4580 +9136 84365 0.7370 +9136 84549 0.8300 +9136 84916 0.9990 +9136 84946 0.4480 +9136 88745 0.9920 +9136 90121 0.5110 +9136 90381 0.4640 +9136 91582 0.8080 +9136 92345 0.9300 +9136 92856 0.9990 +9136 115708 0.6570 +9136 117246 0.8230 +9136 118460 0.6580 +9136 126402 0.7930 +9136 128061 0.8000 +9136 138716 0.5520 +9136 140032 0.7670 +9136 153443 0.6590 +9136 161424 0.6430 +9136 165545 0.4900 +9136 221078 0.6270 +9136 221830 0.6310 +9136 317781 0.6510 +9136 344758 0.4010 +9136 345630 0.9680 +9136 348180 0.6160 +9136 641776 0.4400 +9136 643909 0.4400 +9136 692312 0.6890 +9136 728524 0.4400 +9136 100996746 0.4400 +9136 105180390 0.4400 +9136 105180391 0.4400 +9138 9181 0.5780 +9138 9294 0.4200 +9138 9459 0.9310 +9138 9475 0.7910 +9138 9493 0.4250 +9138 9628 0.7880 +9138 9639 0.5560 +9138 9748 0.5220 +9138 9826 0.9250 +9138 9828 0.5080 +9138 10256 0.5570 +9138 10276 0.4620 +9138 10287 0.7920 +9138 10298 0.4060 +9138 10451 0.4560 +9138 10636 0.4540 +9138 10672 0.9990 +9138 10681 0.5830 +9138 11078 0.4310 +9138 11180 0.4060 +9138 11214 0.9260 +9138 11345 0.4360 +9138 22899 0.5050 +9138 23229 0.4740 +9138 23263 0.5360 +9138 23365 0.9160 +9138 23370 0.5870 +9138 25791 0.4770 +9138 26084 0.4980 +9138 26230 0.4920 +9138 26499 0.4480 +9138 26575 0.7910 +9138 27127 0.4080 +9138 27237 0.4990 +9138 29127 0.5190 +9138 30011 0.4080 +9138 50649 0.5410 +9138 50650 0.5560 +9138 51764 0.4990 +9138 51806 0.5280 +9138 54331 0.5010 +9138 54848 0.5290 +9138 55004 0.7180 +9138 55160 0.4900 +9138 55701 0.5180 +9138 55716 0.5500 +9138 55970 0.5010 +9138 57449 0.5050 +9138 57580 0.6190 +9138 59345 0.5160 +9138 64283 0.9250 +9138 64407 0.7770 +9138 64779 0.5260 +9138 64857 0.4970 +9138 83605 0.4810 +9138 84033 0.4280 +9138 84135 0.4190 +9138 84904 0.4380 +9138 85397 0.7950 +9138 89846 0.4900 +9138 90627 0.5510 +9138 91860 0.5280 +9138 94235 0.4990 +9138 115557 0.6510 +9138 121512 0.4800 +9138 128272 0.4960 +9138 149428 0.4790 +9138 158471 0.4550 +9138 163688 0.5280 +9138 221472 0.4650 +9138 286530 0.4550 +9138 389337 0.4900 +9138 431704 0.7980 +9138 445328 0.5090 +9138 100271715 0.5900 +9139 9495 0.5910 +9139 9611 0.5440 +9139 10009 0.5050 +9139 10270 0.6800 +9139 10472 0.4020 +9139 22834 0.4300 +9139 23181 0.6400 +9139 25942 0.4290 +9139 26088 0.4130 +9139 51585 0.4130 +9139 55421 0.4460 +9139 55558 0.4750 +9139 63941 0.4240 +9139 63978 0.9690 +9139 64718 0.4260 +9139 79726 0.6330 +9139 79813 0.4030 +9139 84263 0.4280 +9139 84955 0.6190 +9139 93166 0.8470 +9139 132949 0.5140 +9139 644186 0.4220 +9140 9146 0.4090 +9140 9342 0.6700 +9140 9363 0.6710 +9140 9451 0.4400 +9140 9474 0.9990 +9140 9528 0.4520 +9140 9636 0.4300 +9140 9706 0.9650 +9140 9711 0.5580 +9140 9776 0.9110 +9140 9821 0.9890 +9140 9842 0.6440 +9140 9868 0.4820 +9140 9895 0.6260 +9140 9927 0.8240 +9140 10013 0.4770 +9140 10015 0.7570 +9140 10018 0.4180 +9140 10054 0.4770 +9140 10055 0.4580 +9140 10059 0.4080 +9140 10133 0.5950 +9140 10241 0.6560 +9140 10533 0.9990 +9140 10537 0.4740 +9140 10652 0.4110 +9140 10871 0.6570 +9140 11152 0.7790 +9140 11337 0.9970 +9140 11345 0.9990 +9140 22863 0.9450 +9140 22926 0.5590 +9140 23001 0.9240 +9140 23130 0.7130 +9140 23192 0.9230 +9140 23411 0.5510 +9140 23586 0.9990 +9140 23604 0.4160 +9140 23710 0.9990 +9140 25851 0.9920 +9140 25989 0.7950 +9140 26100 0.9980 +9140 26330 0.4350 +9140 27304 0.6220 +9140 29110 0.4430 +9140 29887 0.4510 +9140 29982 0.4890 +9140 30849 0.9250 +9140 51001 0.5060 +9140 51100 0.5390 +9140 51477 0.4160 +9140 51569 0.6460 +9140 53349 0.7840 +9140 53917 0.4290 +9140 54205 0.5230 +9140 55014 0.7670 +9140 55054 0.9990 +9140 55062 0.9600 +9140 55102 0.7260 +9140 55201 0.9230 +9140 55236 0.5440 +9140 55332 0.5440 +9140 55626 0.7850 +9140 55669 0.7120 +9140 56270 0.6020 +9140 57506 0.9990 +9140 57521 0.6420 +9140 57724 0.7060 +9140 59286 0.4310 +9140 60412 0.5490 +9140 60592 0.4360 +9140 60673 0.9010 +9140 64127 0.9530 +9140 64135 0.9910 +9140 64223 0.4590 +9140 64419 0.4870 +9140 64422 0.9990 +9140 65018 0.7150 +9140 79065 0.8010 +9140 79132 0.5690 +9140 79671 0.8610 +9140 79876 0.5450 +9140 81605 0.6280 +9140 81631 0.9690 +9140 81671 0.6950 +9140 83452 0.8900 +9140 83734 0.9990 +9140 84282 0.5540 +9140 84557 0.9800 +9140 84938 0.8670 +9140 84971 0.8850 +9140 89122 0.4990 +9140 89849 0.9960 +9140 114907 0.4070 +9140 115201 0.8760 +9140 137902 0.4310 +9140 139341 0.7330 +9140 140901 0.7030 +9140 149420 0.7030 +9140 285973 0.7760 +9140 345611 0.5850 +9140 400668 0.4950 +9140 401548 0.4020 +9140 440275 0.4310 +9140 440738 0.8900 +9140 441925 0.7460 +9140 643246 0.7080 +9141 9255 0.5050 +9141 9343 0.6340 +9141 9349 0.8650 +9141 9732 0.6040 +9141 9858 0.5720 +9141 10015 0.4730 +9141 10138 0.6990 +9141 10284 0.4210 +9141 10376 0.4580 +9141 10471 0.5930 +9141 10473 0.6230 +9141 10524 0.8050 +9141 10557 0.6110 +9141 10574 0.6780 +9141 10575 0.6320 +9141 10576 0.6500 +9141 10694 0.6980 +9141 10856 0.4640 +9141 11157 0.4360 +9141 11222 0.6590 +9141 11224 0.8420 +9141 22948 0.6930 +9141 23204 0.4140 +9141 23480 0.4050 +9141 26519 0.5590 +9141 27258 0.4420 +9141 28998 0.4230 +9141 29093 0.7260 +9141 51069 0.5630 +9141 51081 0.7120 +9141 51116 0.5850 +9141 51119 0.5380 +9141 51121 0.6850 +9141 51154 0.7230 +9141 51258 0.4700 +9141 51260 0.5440 +9141 51263 0.6390 +9141 51319 0.6160 +9141 51372 0.4690 +9141 51602 0.4400 +9141 51639 0.4370 +9141 54849 0.4280 +9141 55173 0.5760 +9141 55593 0.5670 +9141 55651 0.6620 +9141 55967 0.4710 +9141 56648 0.5270 +9141 56943 0.4060 +9141 64779 0.4330 +9141 64960 0.4930 +9141 65003 0.6370 +9141 65008 0.6930 +9141 79031 0.6710 +9141 79590 0.6530 +9141 79631 0.6150 +9141 79731 0.4350 +9141 84324 0.4030 +9141 84661 0.4550 +9141 85476 0.6150 +9141 118487 0.4660 +9141 122622 0.6400 +9141 126402 0.6800 +9141 140032 0.6190 +9141 143244 0.5240 +9141 219927 0.7880 +9141 246777 0.4230 +9141 347487 0.5760 +9141 100287482 0.5710 +9141 100526842 0.6780 +9141 112268293 0.4220 +9143 9463 0.6740 +9143 9900 0.6880 +9143 10454 0.5510 +9143 50632 0.4280 +9143 57524 0.4060 +9143 112755 0.4510 +9143 132204 0.5740 +9143 284615 0.4130 +9143 390616 0.4110 +9144 9293 0.4200 +9144 10454 0.5210 +9144 11322 0.9070 +9144 51435 0.5100 +9144 51759 0.4180 +9144 132204 0.7440 +9144 147138 0.9260 +9144 162282 0.4700 +9144 283999 0.4460 +9144 339210 0.4350 +9145 9899 0.5770 +9145 9900 0.4310 +9145 10095 0.5240 +9145 10279 0.4850 +9145 10454 0.7830 +9145 10552 0.5240 +9145 10814 0.4400 +9145 10815 0.5150 +9145 22858 0.5470 +9145 22895 0.5260 +9145 51161 0.4670 +9145 55852 0.4700 +9145 89885 0.5970 +9145 115827 0.4740 +9145 132204 0.9260 +9145 138799 0.4480 +9146 9185 0.5010 +9146 9341 0.5480 +9146 9368 0.4860 +9146 9525 0.6480 +9146 9559 0.5260 +9146 9685 0.4210 +9146 9765 0.5040 +9146 9798 0.7720 +9146 9892 0.5760 +9146 9907 0.4160 +9146 10015 0.6500 +9146 10016 0.4690 +9146 10040 0.5650 +9146 10042 0.4270 +9146 10043 0.6050 +9146 10059 0.4050 +9146 10067 0.5150 +9146 10211 0.7610 +9146 10252 0.4990 +9146 10253 0.6480 +9146 10254 0.9990 +9146 10277 0.7920 +9146 10312 0.5530 +9146 10537 0.6020 +9146 10548 0.4370 +9146 10617 0.4790 +9146 10652 0.4200 +9146 10808 0.4380 +9146 10855 0.9920 +9146 11021 0.4160 +9146 11140 0.4810 +9146 11267 0.9660 +9146 11311 0.4950 +9146 11345 0.4320 +9146 22836 0.8670 +9146 22905 0.7720 +9146 22906 0.6190 +9146 23062 0.6230 +9146 23161 0.5320 +9146 23163 0.5920 +9146 23192 0.4070 +9146 23327 0.7840 +9146 23355 0.4760 +9146 23545 0.5290 +9146 23673 0.5060 +9146 23710 0.4150 +9146 25852 0.6170 +9146 25930 0.8570 +9146 25978 0.9230 +9146 26018 0.6710 +9146 26088 0.5090 +9146 26119 0.5180 +9146 26276 0.4560 +9146 26994 0.4690 +9146 27043 0.4110 +9146 27131 0.4360 +9146 27183 0.8190 +9146 27243 0.9710 +9146 29924 0.7260 +9146 29934 0.5280 +9146 29978 0.7180 +9146 29979 0.6080 +9146 30011 0.6850 +9146 30849 0.4380 +9146 50617 0.5520 +9146 50618 0.5520 +9146 51028 0.9870 +9146 51160 0.9810 +9146 51271 0.9370 +9146 51510 0.5850 +9146 51534 0.7210 +9146 51552 0.4190 +9146 51652 0.9760 +9146 51699 0.5030 +9146 54476 0.4030 +9146 55040 0.5800 +9146 55048 0.9490 +9146 55165 0.5280 +9146 55293 0.8250 +9146 55315 0.4610 +9146 55666 0.4640 +9146 55737 0.7250 +9146 55823 0.4270 +9146 56893 0.4610 +9146 57132 0.9490 +9146 57403 0.4050 +9146 57409 0.4050 +9146 57561 0.4190 +9146 58480 0.5680 +9146 58513 0.8120 +9146 64145 0.4340 +9146 66008 0.4860 +9146 79643 0.9780 +9146 79720 0.9400 +9146 83737 0.6450 +9146 84260 0.4260 +9146 84313 0.9840 +9146 89853 0.9180 +9146 91056 0.4350 +9146 91782 0.9220 +9146 92421 0.7820 +9146 93343 0.9610 +9146 94274 0.5880 +9146 128866 0.9540 +9146 137492 0.9280 +9146 155382 0.9090 +9146 200576 0.6900 +9146 255324 0.4990 +9146 390595 0.5400 +9146 100526767 0.7680 +9147 9325 0.5970 +9147 9349 0.9090 +9147 9360 0.5720 +9147 9553 0.4500 +9147 9801 0.5850 +9147 10399 0.4980 +9147 10473 0.5330 +9147 10528 0.6270 +9147 10767 0.7900 +9147 10973 0.6860 +9147 11224 0.8860 +9147 22980 0.9560 +9147 23350 0.5070 +9147 23469 0.4640 +9147 23521 0.8920 +9147 25873 0.8150 +9147 26046 0.9990 +9147 26058 0.5700 +9147 27332 0.5380 +9147 28998 0.4800 +9147 29093 0.4210 +9147 51069 0.4350 +9147 51073 0.4030 +9147 51121 0.4260 +9147 51154 0.4460 +9147 51264 0.4410 +9147 51773 0.5680 +9147 53918 0.7170 +9147 54464 0.5170 +9147 54676 0.6200 +9147 55052 0.4700 +9147 55139 0.8450 +9147 55666 0.6430 +9147 55726 0.4040 +9147 57187 0.8190 +9147 58517 0.4070 +9147 63875 0.4380 +9147 64979 0.4470 +9147 64983 0.4450 +9147 65003 0.4240 +9147 79590 0.4170 +9147 79811 0.6140 +9147 80155 0.4160 +9147 84164 0.6340 +9147 90850 0.8060 +9147 91875 0.4600 +9147 92399 0.4560 +9147 92906 0.4010 +9147 122769 0.4320 +9147 138428 0.4690 +9147 140801 0.8520 +9147 219927 0.4370 +9147 100526842 0.4120 +9148 10825 0.4210 +9148 22905 0.4530 +9148 23066 0.6350 +9148 23316 0.4880 +9148 28514 0.5820 +9148 29924 0.4250 +9148 54103 0.4660 +9148 54149 0.4410 +9148 54567 0.6740 +9148 55040 0.4560 +9148 79933 0.4720 +9148 84937 0.4030 +9148 89874 0.4120 +9148 140825 0.4190 +9148 142678 0.7590 +9148 150350 0.4210 +9148 223082 0.4150 +9149 9658 0.4720 +9149 9762 0.6140 +9149 10014 0.4580 +9149 10024 0.6570 +9149 10048 0.5100 +9149 10238 0.9890 +9149 11215 0.4500 +9149 23132 0.4280 +9149 23247 0.4310 +9149 51307 0.8390 +9149 51545 0.4090 +9149 55437 0.4320 +9149 57634 0.6400 +9149 80122 0.5310 +9149 84105 0.8920 +9149 84445 0.6440 +9149 89801 0.4330 +9149 91750 0.5500 +9149 113263 0.4090 +9149 118461 0.7710 +9149 133482 0.5210 +9149 143684 0.4210 +9149 150864 0.6300 +9149 199870 0.4880 +9149 221937 0.6260 +9149 254225 0.8160 +9149 284111 0.6580 +9150 9282 0.6020 +9150 9441 0.5290 +9150 9443 0.4400 +9150 9656 0.5160 +9150 9733 0.5510 +9150 10101 0.4310 +9150 10106 0.7440 +9150 10217 0.7490 +9150 10245 0.4870 +9150 10419 0.7960 +9150 10440 0.4560 +9150 10469 0.5310 +9150 10558 0.4080 +9150 10776 0.4130 +9150 10907 0.4310 +9150 10923 0.4080 +9150 11198 0.6960 +9150 22828 0.4440 +9150 22850 0.4480 +9150 22916 0.5560 +9150 23064 0.4690 +9150 23097 0.4500 +9150 23399 0.5600 +9150 23512 0.4800 +9150 25920 0.5490 +9150 26173 0.5870 +9150 27097 0.6160 +9150 27125 0.8170 +9150 29090 0.4620 +9150 29101 0.8430 +9150 50488 0.4110 +9150 51003 0.4880 +9150 51224 0.4990 +9150 51366 0.4340 +9150 51497 0.5100 +9150 51585 0.6230 +9150 51755 0.8060 +9150 54821 0.4160 +9150 55215 0.7100 +9150 55656 0.4380 +9150 55677 0.8710 +9150 55840 0.8050 +9150 57680 0.4290 +9150 58190 0.8720 +9150 58490 0.8420 +9150 58509 0.5870 +9150 64374 0.4380 +9150 79084 0.8730 +9150 79753 0.4180 +9150 79871 0.8660 +9150 80148 0.4980 +9150 81488 0.5300 +9150 81846 0.4270 +9150 81857 0.4190 +9150 84271 0.4220 +9150 84930 0.4490 +9150 85403 0.8110 +9150 90324 0.4670 +9150 134510 0.8770 +9150 166785 0.4110 +9150 404672 0.4990 +9150 100287932 0.4360 +9152 9324 0.5060 +9152 10243 0.8500 +9152 10841 0.4110 +9152 23034 0.4250 +9152 23229 0.8540 +9152 27111 0.5900 +9152 27319 0.4290 +9152 56301 0.4430 +9152 56896 0.8410 +9152 57030 0.6120 +9152 57084 0.7420 +9152 57468 0.4410 +9152 81627 0.4240 +9152 84249 0.4890 +9152 84708 0.4260 +9152 117532 0.4150 +9152 120237 0.5420 +9152 140679 0.7710 +9152 162427 0.4310 +9152 222484 0.4040 +9152 246213 0.5090 +9152 338917 0.4010 +9153 9356 0.4530 +9153 9376 0.4370 +9153 9694 0.4750 +9153 9962 0.4090 +9153 10057 0.4820 +9153 10257 0.4860 +9153 10328 0.4800 +9153 10599 0.4240 +9153 10864 0.4710 +9153 11309 0.4150 +9153 28231 0.4290 +9153 50506 0.7250 +9153 51071 0.4240 +9153 51234 0.4690 +9153 53905 0.7660 +9153 55315 0.7520 +9153 55831 0.5510 +9153 114571 0.4240 +9153 222962 0.7050 +9153 284361 0.6020 +9154 9356 0.4160 +9154 9376 0.4740 +9154 9429 0.4650 +9154 9498 0.4060 +9154 10057 0.5560 +9154 10257 0.4990 +9154 10599 0.4520 +9154 10864 0.6490 +9154 10890 0.5070 +9154 11254 0.4750 +9154 11309 0.4160 +9154 28231 0.4110 +9154 51071 0.4240 +9154 51727 0.4760 +9154 55315 0.7520 +9154 55356 0.4100 +9154 55867 0.4870 +9154 114571 0.4900 +9154 222962 0.7060 +9154 387775 0.4820 +9156 9212 0.7970 +9156 9232 0.5430 +9156 9319 0.8610 +9156 9400 0.8140 +9156 9401 0.9810 +9156 9493 0.6970 +9156 9585 0.5110 +9156 9656 0.8210 +9156 9700 0.7540 +9156 9730 0.6040 +9156 9735 0.7680 +9156 9768 0.6520 +9156 9780 0.4190 +9156 9787 0.7870 +9156 9824 0.5140 +9156 9833 0.9000 +9156 9837 0.5390 +9156 9874 0.4260 +9156 9918 0.6050 +9156 9928 0.7140 +9156 9937 0.7180 +9156 9985 0.4270 +9156 10036 0.5860 +9156 10038 0.5620 +9156 10039 0.4870 +9156 10051 0.7090 +9156 10054 0.4320 +9156 10097 0.4010 +9156 10111 0.8500 +9156 10112 0.6640 +9156 10198 0.4220 +9156 10293 0.4470 +9156 10403 0.7200 +9156 10459 0.7100 +9156 10460 0.6730 +9156 10524 0.6380 +9156 10535 0.8260 +9156 10592 0.7480 +9156 10606 0.5690 +9156 10615 0.5980 +9156 10635 0.9280 +9156 10714 0.7590 +9156 10721 0.8050 +9156 10733 0.8160 +9156 10926 0.5650 +9156 10971 0.6750 +9156 11004 0.7640 +9156 11065 0.6950 +9156 11073 0.8900 +9156 11130 0.7240 +9156 11144 0.4410 +9156 11169 0.9350 +9156 11200 0.8960 +9156 11201 0.5030 +9156 11277 0.7460 +9156 11284 0.6010 +9156 11339 0.5210 +9156 22909 0.4770 +9156 22974 0.8070 +9156 22976 0.7080 +9156 23064 0.4060 +9156 23137 0.7110 +9156 23172 0.4050 +9156 23310 0.4210 +9156 23397 0.7070 +9156 23514 0.5420 +9156 23583 0.4840 +9156 23586 0.4060 +9156 23594 0.5150 +9156 23626 0.8620 +9156 23649 0.7310 +9156 24137 0.6660 +9156 25788 0.7400 +9156 25913 0.4330 +9156 25939 0.4090 +9156 26054 0.6830 +9156 26271 0.5760 +9156 27030 0.9950 +9156 27257 0.4060 +9156 27301 0.6280 +9156 27343 0.7020 +9156 27434 0.6560 +9156 29028 0.5100 +9156 29089 0.6690 +9156 29127 0.6870 +9156 29128 0.5490 +9156 29893 0.4340 +9156 29935 0.4220 +9156 50484 0.4800 +9156 50485 0.7050 +9156 51053 0.5410 +9156 51154 0.4490 +9156 51203 0.7420 +9156 51426 0.6330 +9156 51455 0.6620 +9156 51512 0.6060 +9156 51514 0.9010 +9156 51548 0.6060 +9156 51567 0.4050 +9156 51659 0.6010 +9156 51720 0.5930 +9156 51750 0.8000 +9156 54069 0.4390 +9156 54107 0.5880 +9156 54443 0.7540 +9156 54478 0.4940 +9156 54537 0.5120 +9156 54821 0.8820 +9156 54840 0.6270 +9156 54892 0.6130 +9156 54932 0.5820 +9156 54962 0.7100 +9156 55010 0.5430 +9156 55055 0.5430 +9156 55086 0.5120 +9156 55143 0.6580 +9156 55165 0.6390 +9156 55215 0.8340 +9156 55218 0.6010 +9156 55247 0.8500 +9156 55345 0.4180 +9156 55355 0.7460 +9156 55388 0.9540 +9156 55536 0.4660 +9156 55632 0.4130 +9156 55635 0.5930 +9156 55651 0.4450 +9156 55723 0.7170 +9156 55732 0.6170 +9156 55775 0.6690 +9156 55789 0.4970 +9156 55839 0.5620 +9156 56652 0.5670 +9156 56655 0.5600 +9156 56852 0.7480 +9156 56897 0.5590 +9156 56916 0.8130 +9156 56992 0.7300 +9156 57082 0.6350 +9156 57379 0.4150 +9156 57405 0.6880 +9156 57650 0.4010 +9156 57697 0.8150 +9156 57804 0.6120 +9156 63895 0.4230 +9156 63922 0.7650 +9156 63967 0.7730 +9156 63979 0.4170 +9156 64105 0.4720 +9156 64151 0.7370 +9156 64421 0.6020 +9156 64785 0.5560 +9156 64789 0.4130 +9156 64858 0.7340 +9156 64946 0.7640 +9156 79000 0.4880 +9156 79008 0.4220 +9156 79019 0.4600 +9156 79075 0.7270 +9156 79172 0.4970 +9156 79621 0.5330 +9156 79677 0.6330 +9156 79682 0.5480 +9156 79728 0.8480 +9156 79733 0.6670 +9156 79801 0.6660 +9156 79840 0.6800 +9156 79892 0.5540 +9156 79915 0.8850 +9156 79968 0.5270 +9156 79991 0.6320 +9156 80010 0.9420 +9156 80119 0.7870 +9156 80169 0.4950 +9156 80198 0.9390 +9156 80820 0.6970 +9156 81620 0.8700 +9156 81624 0.4450 +9156 81930 0.5680 +9156 83461 0.6710 +9156 83540 0.8990 +9156 83695 0.5750 +9156 83879 0.4920 +9156 83903 0.4540 +9156 83990 0.8970 +9156 84057 0.8780 +9156 84083 0.6280 +9156 84126 0.8270 +9156 84250 0.4070 +9156 84464 0.8470 +9156 84515 0.7000 +9156 84722 0.4060 +9156 84893 0.7370 +9156 84930 0.4970 +9156 90381 0.7810 +9156 91442 0.5990 +9156 92797 0.5420 +9156 113130 0.6630 +9156 113510 0.5920 +9156 114799 0.4550 +9156 116028 0.8870 +9156 116211 0.4390 +9156 116447 0.7170 +9156 128025 0.4260 +9156 135458 0.4440 +9156 144455 0.5350 +9156 144715 0.7020 +9156 146909 0.4390 +9156 146956 0.9150 +9156 150468 0.5450 +9156 151648 0.5930 +9156 157313 0.5980 +9156 157570 0.6510 +9156 157777 0.4310 +9156 164045 0.5220 +9156 165918 0.5210 +9156 197342 0.7180 +9156 200558 0.4180 +9156 201973 0.5510 +9156 220134 0.6780 +9156 221150 0.8000 +9156 246243 0.5390 +9156 253714 0.5320 +9156 254394 0.6060 +9156 254528 0.6060 +9156 257218 0.4340 +9156 259266 0.8480 +9156 259282 0.5230 +9156 283677 0.4670 +9156 286053 0.5100 +9156 286257 0.4070 +9156 348654 0.7200 +9156 353497 0.5130 +9156 375748 0.4330 +9156 387103 0.4400 +9156 402569 0.4120 +9156 440093 0.4410 +9156 440686 0.4410 +9156 548593 0.8540 +9156 642636 0.4490 +9156 653604 0.4430 +9156 100533467 0.5010 +9158 9592 0.4300 +9158 9772 0.8100 +9158 9847 0.9350 +9158 10980 0.6670 +9158 23476 0.4600 +9158 28514 0.4050 +9158 29099 0.4420 +9158 30008 0.5990 +9158 51550 0.4550 +9158 54762 0.4380 +9158 81928 0.8290 +9158 91768 0.8360 +9158 115825 0.6170 +9159 9388 0.4530 +9159 9445 0.4370 +9159 10379 0.4340 +9159 22853 0.4370 +9159 23301 0.4270 +9159 23358 0.4090 +9159 23600 0.4350 +9159 23621 0.5080 +9159 27232 0.4300 +9159 27344 0.4150 +9159 29803 0.4330 +9159 60528 0.4810 +9159 81618 0.7500 +9159 85414 0.4600 +9159 221895 0.4240 +9159 255738 0.6800 +9159 643418 0.4780 +9162 9388 0.6510 +9162 10390 0.7020 +9162 10554 0.6840 +9162 10555 0.6890 +9162 23171 0.6000 +9162 23236 0.6800 +9162 23646 0.6670 +9162 25780 0.9040 +9162 51196 0.7360 +9162 55326 0.7520 +9162 56894 0.6650 +9162 56895 0.7020 +9162 56994 0.6640 +9162 57104 0.6500 +9162 80168 0.7090 +9162 80339 0.6540 +9162 84649 0.7170 +9162 84812 0.7520 +9162 85465 0.6580 +9162 89869 0.7330 +9162 113026 0.7170 +9162 114781 0.4050 +9162 116255 0.7420 +9162 119548 0.6620 +9162 122618 0.6670 +9162 129642 0.7200 +9162 154141 0.6500 +9162 253558 0.6770 +9162 346606 0.6820 +9166 9167 0.9480 +9166 9543 0.5930 +9166 10548 0.6200 +9166 23212 0.4560 +9166 51806 0.4870 +9166 54847 0.4570 +9166 56943 0.4940 +9166 84955 0.5710 +9166 163688 0.4870 +9166 285782 0.4490 +9167 9377 0.9690 +9167 9512 0.5890 +9167 9551 0.4310 +9167 9616 0.4780 +9167 10128 0.7280 +9167 10476 0.4420 +9167 10632 0.5030 +9167 10975 0.8000 +9167 25994 0.6700 +9167 27089 0.9410 +9167 29796 0.8890 +9167 51300 0.9940 +9167 54205 0.5460 +9167 54940 0.4210 +9167 55845 0.6310 +9167 56901 0.4130 +9167 58506 0.5100 +9167 64769 0.4480 +9167 80142 0.4300 +9167 81341 0.4430 +9167 84419 0.5250 +9167 84701 0.8410 +9167 125965 0.6950 +9167 126328 0.4030 +9167 170712 0.8270 +9167 192286 0.6890 +9167 341947 0.5870 +9167 374291 0.4600 +9167 388753 0.6080 +9167 440567 0.6900 +9168 10109 0.4470 +9168 10457 0.8510 +9168 25805 0.8250 +9168 25873 0.4790 +9168 29767 0.4780 +9168 83442 0.4160 +9168 84897 0.5780 +9168 283337 0.5430 +9169 9295 0.5290 +9169 9447 0.4550 +9169 9736 0.4560 +9169 9774 0.7200 +9169 9967 0.5950 +9169 10147 0.5280 +9169 10156 0.6340 +9169 10392 0.4640 +9169 10426 0.5860 +9169 10443 0.5380 +9169 10735 0.6000 +9169 10844 0.6270 +9169 11338 0.9500 +9169 22828 0.4480 +9169 22861 0.4960 +9169 23036 0.4220 +9169 23049 0.4410 +9169 23137 0.5650 +9169 23215 0.5770 +9169 23244 0.5200 +9169 23347 0.5310 +9169 23350 0.4610 +9169 23369 0.4480 +9169 23469 0.5800 +9169 23506 0.4060 +9169 23732 0.4090 +9169 25836 0.7300 +9169 25957 0.8990 +9169 27229 0.6320 +9169 27332 0.5350 +9169 29108 0.4830 +9169 29922 0.6190 +9169 51631 0.4310 +9169 51742 0.4420 +9169 51773 0.4850 +9169 54505 0.4780 +9169 54991 0.4560 +9169 55023 0.5040 +9169 55193 0.5340 +9169 55421 0.4120 +9169 55655 0.5430 +9169 55660 0.4360 +9169 55876 0.6590 +9169 56169 0.6180 +9169 57187 0.6960 +9169 57466 0.4830 +9169 58484 0.4770 +9169 58517 0.4340 +9169 64127 0.4130 +9169 64397 0.5120 +9169 79792 0.5730 +9169 79810 0.4370 +9169 83786 0.4060 +9169 84216 0.4550 +9169 85378 0.5970 +9169 114548 0.4460 +9169 114791 0.6060 +9169 114803 0.4070 +9169 115294 0.4180 +9169 121441 0.4480 +9169 144132 0.4290 +9169 171389 0.4890 +9169 196528 0.4890 +9169 199713 0.5460 +9169 259282 0.5540 +9169 284110 0.5070 +9169 284695 0.4080 +9169 440145 0.5400 +9169 494513 0.6060 +9169 653784 0.5970 +9170 9351 0.9780 +9170 9826 0.7270 +9170 9890 0.4480 +9170 10161 0.9870 +9170 10287 0.5700 +9170 10316 0.4270 +9170 10572 0.6150 +9170 10672 0.9350 +9170 10681 0.5560 +9170 10800 0.4430 +9170 11250 0.6390 +9170 23236 0.5810 +9170 23365 0.5930 +9170 23533 0.6590 +9170 23566 0.9490 +9170 26575 0.5300 +9170 27334 0.5920 +9170 51764 0.5700 +9170 53836 0.6780 +9170 54331 0.5480 +9170 55970 0.5410 +9170 56923 0.4040 +9170 57105 0.4570 +9170 57121 0.9880 +9170 59345 0.5780 +9170 63940 0.4280 +9170 64283 0.4710 +9170 64407 0.5210 +9170 79153 0.7040 +9170 84539 0.5700 +9170 84636 0.4620 +9170 84687 0.5390 +9170 92691 0.4150 +9170 94235 0.5410 +9170 115557 0.4990 +9170 126006 0.4070 +9170 146850 0.6500 +9170 260425 0.9180 +9170 284161 0.7040 +9170 431704 0.5170 +9172 9474 0.4180 +9172 9641 0.8580 +9172 9883 0.4570 +9172 10010 0.6330 +9172 10044 0.8010 +9172 10045 0.6850 +9172 10190 0.4440 +9172 10228 0.4290 +9172 10426 0.5210 +9172 10531 0.4320 +9172 10844 0.4430 +9172 23586 0.9830 +9172 23676 0.5420 +9172 26993 0.5940 +9172 27063 0.5640 +9172 29110 0.9530 +9172 29765 0.5030 +9172 29895 0.5330 +9172 30816 0.8400 +9172 51247 0.4020 +9172 51503 0.7230 +9172 51778 0.6470 +9172 54097 0.5540 +9172 55193 0.5110 +9172 57187 0.4590 +9172 57506 0.8180 +9172 57697 0.4430 +9172 57823 0.4300 +9172 58529 0.6360 +9172 59272 0.6690 +9172 64135 0.8100 +9172 79142 0.4420 +9172 79934 0.4170 +9172 80222 0.4320 +9172 83992 0.4050 +9172 91039 0.4180 +9172 91977 0.5110 +9172 92521 0.4260 +9172 114803 0.5880 +9172 123283 0.4270 +9172 127294 0.4620 +9172 136991 0.6180 +9172 150572 0.4550 +9172 154810 0.5040 +9172 165904 0.4520 +9172 196527 0.4060 +9172 202333 0.5140 +9172 375611 0.6050 +9172 400668 0.4790 +9172 405754 0.5910 +9172 102723407 0.5060 +9173 9180 0.4710 +9173 9235 0.4690 +9173 9466 0.4080 +9173 9709 0.4030 +9173 10219 0.5940 +9173 11018 0.8620 +9173 11251 0.5510 +9173 26525 0.4030 +9173 29851 0.5180 +9173 30009 0.4970 +9173 50616 0.4540 +9173 50943 0.4850 +9173 51135 0.8530 +9173 55540 0.7220 +9173 55876 0.6210 +9173 56300 0.4980 +9173 56946 0.4460 +9173 58985 0.5860 +9173 85480 0.8310 +9173 90865 0.9990 +9173 94103 0.6550 +9173 124626 0.4470 +9173 163486 0.4790 +9173 168667 0.4030 +9173 222256 0.4540 +9173 389015 0.5200 +9173 653361 0.4380 +9173 100289462 0.4120 +9175 9479 0.9290 +9175 10935 0.4380 +9175 11035 0.5510 +9175 11322 0.4050 +9175 23077 0.6040 +9175 23542 0.7940 +9175 57619 0.4770 +9175 57630 0.4890 +9175 200933 0.4450 +9177 10368 0.5860 +9177 10369 0.5590 +9177 27091 0.5620 +9177 27092 0.5430 +9177 54970 0.4030 +9177 57674 0.4220 +9177 59283 0.5510 +9177 59284 0.5460 +9177 79608 0.4150 +9177 93145 0.5490 +9177 116443 0.7210 +9177 116444 0.5600 +9177 118427 0.4680 +9177 149111 0.5400 +9177 170572 0.9820 +9177 200909 0.9860 +9177 254263 0.5760 +9177 255239 0.4210 +9177 285242 0.8130 +9177 375567 0.5400 +9177 388336 0.5400 +9177 402117 0.5580 +9177 440829 0.5400 +9177 729956 0.5400 +9177 729993 0.5840 +9177 102800317 0.4150 +9179 9197 0.4500 +9179 9238 0.5150 +9179 9382 0.4420 +9179 9685 0.4890 +9179 9751 0.4700 +9179 9895 0.4990 +9179 9897 0.4610 +9179 9907 0.9600 +9179 10053 0.6020 +9179 10239 0.9410 +9179 10618 0.4110 +9179 10717 0.9990 +9179 10749 0.4050 +9179 10908 0.4150 +9179 10947 0.7560 +9179 11137 0.4240 +9179 11154 0.9990 +9179 11160 0.4620 +9179 11276 0.7540 +9179 22905 0.4970 +9179 23093 0.4100 +9179 23189 0.7960 +9179 23214 0.4220 +9179 23259 0.4640 +9179 23265 0.4420 +9179 23284 0.4350 +9179 23431 0.9990 +9179 23503 0.4840 +9179 26048 0.4670 +9179 26509 0.4150 +9179 26985 0.6140 +9179 29924 0.4940 +9179 51091 0.7010 +9179 51308 0.4150 +9179 51324 0.5210 +9179 51361 0.4020 +9179 54676 0.5020 +9179 55031 0.5980 +9179 55040 0.4310 +9179 55317 0.9580 +9179 55745 0.9940 +9179 57165 0.4100 +9179 57510 0.4270 +9179 57679 0.4150 +9179 57704 0.6790 +9179 58513 0.4940 +9179 65055 0.4160 +9179 79065 0.6860 +9179 79152 0.4680 +9179 79723 0.6270 +9179 80067 0.4920 +9179 80208 0.5010 +9179 80344 0.4140 +9179 80821 0.4650 +9179 81492 0.4220 +9179 83695 0.4640 +9179 83988 0.4300 +9179 84251 0.7440 +9179 84292 0.5340 +9179 85021 0.4680 +9179 91056 0.9180 +9179 91574 0.4470 +9179 113612 0.4450 +9179 118813 0.4200 +9179 122616 0.5550 +9179 123606 0.4580 +9179 128408 0.5730 +9179 130340 0.8100 +9179 137492 0.5300 +9179 146705 0.8860 +9179 340075 0.4150 +9179 345895 0.4220 +9179 100526783 0.4420 +9180 11009 0.7060 +9180 23529 0.4970 +9180 29949 0.6990 +9180 50604 0.6500 +9180 50616 0.7060 +9180 51561 0.6560 +9180 53342 0.6740 +9180 56832 0.6560 +9180 59067 0.6500 +9180 85480 0.7270 +9180 90865 0.5330 +9180 133396 0.9970 +9180 282616 0.6560 +9180 282617 0.6500 +9180 282618 0.6630 +9180 285782 0.5030 +9180 338376 0.6620 +9180 386653 0.9990 +9181 9231 0.4430 +9181 9414 0.7090 +9181 9459 0.4770 +9181 9475 0.4260 +9181 9493 0.4190 +9181 9639 0.5250 +9181 9928 0.4580 +9181 10298 0.8160 +9181 10376 0.9050 +9181 10381 0.9040 +9181 10382 0.9060 +9181 10383 0.9050 +9181 10392 0.9020 +9181 10514 0.4970 +9181 10672 0.5610 +9181 10971 0.6760 +9181 22800 0.5120 +9181 22870 0.4570 +9181 23191 0.4870 +9181 23229 0.4710 +9181 23243 0.6020 +9181 23513 0.5610 +9181 26499 0.6000 +9181 28964 0.5410 +9181 29127 0.4500 +9181 50649 0.5230 +9181 50807 0.6030 +9181 51807 0.9040 +9181 54443 0.5010 +9181 55122 0.4780 +9181 55770 0.9090 +9181 57144 0.5700 +9181 57530 0.9940 +9181 57787 0.5970 +9181 64127 0.4990 +9181 79861 0.9050 +9181 81027 0.9010 +9181 84617 0.9040 +9181 84790 0.9030 +9181 84952 0.9920 +9181 84955 0.6210 +9181 112714 0.9040 +9181 113457 0.9040 +9181 115557 0.4840 +9181 115703 0.4230 +9181 138716 0.7290 +9181 165055 0.4080 +9181 203068 0.9060 +9181 347688 0.9020 +9181 347733 0.9010 +9182 9770 0.4890 +9182 54893 0.4560 +9182 83593 0.4480 +9182 130814 0.4030 +9182 136288 0.4050 +9182 166824 0.5180 +9182 283349 0.4760 +9183 9184 0.9310 +9183 9212 0.7520 +9183 9232 0.4970 +9183 9276 0.8100 +9183 9344 0.4900 +9183 9371 0.5180 +9183 9382 0.5320 +9183 9493 0.6100 +9183 9527 0.5490 +9183 9554 0.9440 +9183 9585 0.5780 +9183 9700 0.8400 +9183 9735 0.9990 +9183 9793 0.5370 +9183 10112 0.6340 +9183 10403 0.8630 +9183 10434 0.6430 +9183 10466 0.4940 +9183 10540 0.9320 +9183 10640 0.4260 +9183 10652 0.4220 +9183 10726 0.6730 +9183 10744 0.5100 +9183 10749 0.6000 +9183 10945 0.5230 +9183 10959 0.5040 +9183 10972 0.5240 +9183 11004 0.4710 +9183 11014 0.5040 +9183 11015 0.5000 +9183 11127 0.5340 +9183 11130 0.9970 +9183 11316 0.7270 +9183 22796 0.5040 +9183 22818 0.6170 +9183 22820 0.5950 +9183 22920 0.5070 +9183 22931 0.8840 +9183 23046 0.5520 +9183 23095 0.5400 +9183 23230 0.4490 +9183 23256 0.8920 +9183 23265 0.4720 +9183 23299 0.5250 +9183 23303 0.5000 +9183 23332 0.4650 +9183 23423 0.5040 +9183 23468 0.4470 +9183 24137 0.6120 +9183 25839 0.5510 +9183 25936 0.6630 +9183 26153 0.5150 +9183 26750 0.4260 +9183 26958 0.5980 +9183 26984 0.4570 +9183 27436 0.5210 +9183 29127 0.6250 +9183 51014 0.5040 +9183 51143 0.4960 +9183 51226 0.5740 +9183 51490 0.4180 +9183 51542 0.5440 +9183 51594 0.9990 +9183 53407 0.9990 +9183 54536 0.4170 +9183 54732 0.5040 +9183 54820 0.5900 +9183 54908 0.8540 +9183 54970 0.5390 +9183 55055 0.9990 +9183 55083 0.5150 +9183 55275 0.5490 +9183 55582 0.5520 +9183 55605 0.5470 +9183 55614 0.5040 +9183 55746 0.4660 +9183 55763 0.4270 +9183 55770 0.4150 +9183 55823 0.4200 +9183 55850 0.9850 +9183 56676 0.4060 +9183 56992 0.6120 +9183 57082 0.6730 +9183 57122 0.6580 +9183 57511 0.5340 +9183 57551 0.4780 +9183 59349 0.4160 +9183 60412 0.4870 +9183 60561 0.9990 +9183 63908 0.5460 +9183 64837 0.5820 +9183 64946 0.5500 +9183 79003 0.4230 +9183 79172 0.4210 +9183 79980 0.8040 +9183 80152 0.5680 +9183 81565 0.5350 +9183 81876 0.6760 +9183 83452 0.4330 +9183 83540 0.5860 +9183 83548 0.6860 +9183 84649 0.4550 +9183 89953 0.5630 +9183 90417 0.4330 +9183 90990 0.5630 +9183 91949 0.4970 +9183 124602 0.5520 +9183 126208 0.9460 +9183 132949 0.4160 +9183 146909 0.5520 +9183 147700 0.5830 +9183 147841 0.5390 +9183 148223 0.7490 +9183 149371 0.4340 +9183 151648 0.4050 +9183 152579 0.8760 +9183 220134 0.6260 +9183 221150 0.4790 +9183 221458 0.5150 +9183 285643 0.5430 +9183 375056 0.5470 +9183 378708 0.5740 +9183 401541 0.4040 +9184 9212 0.9430 +9184 9232 0.8400 +9184 9319 0.7410 +9184 9344 0.4690 +9184 9401 0.4560 +9184 9493 0.5360 +9184 9557 0.4430 +9184 9587 0.6250 +9184 9700 0.9320 +9184 9735 0.7050 +9184 9782 0.4620 +9184 9793 0.7480 +9184 10013 0.4520 +9184 10038 0.9030 +9184 10051 0.4090 +9184 10170 0.4240 +9184 10213 0.5770 +9184 10243 0.7210 +9184 10309 0.4180 +9184 10393 0.8860 +9184 10403 0.8990 +9184 10459 0.8870 +9184 10574 0.5550 +9184 10575 0.4720 +9184 10576 0.4800 +9184 10694 0.6110 +9184 10726 0.5600 +9184 10733 0.5140 +9184 10744 0.8400 +9184 10762 0.4450 +9184 10921 0.5360 +9184 10946 0.6320 +9184 10982 0.4650 +9184 10983 0.4280 +9184 11004 0.7620 +9184 11065 0.7810 +9184 11091 0.4940 +9184 11130 0.8970 +9184 11200 0.6210 +9184 11243 0.5320 +9184 22916 0.6660 +9184 22919 0.7800 +9184 22924 0.4850 +9184 22948 0.5680 +9184 23063 0.4640 +9184 23076 0.4070 +9184 23122 0.7240 +9184 23244 0.4410 +9184 23279 0.5890 +9184 23332 0.6710 +9184 23421 0.5610 +9184 24137 0.4070 +9184 25847 0.7700 +9184 25906 0.8130 +9184 25909 0.6320 +9184 25936 0.5800 +9184 26271 0.5470 +9184 27127 0.4050 +9184 27152 0.5010 +9184 27338 0.7180 +9184 27436 0.6130 +9184 29882 0.7450 +9184 29945 0.9980 +9184 51143 0.5790 +9184 51343 0.9030 +9184 51366 0.8280 +9184 51433 0.9690 +9184 51434 0.7170 +9184 51490 0.4760 +9184 51529 0.8180 +9184 54443 0.4540 +9184 54820 0.6380 +9184 54821 0.6200 +9184 54908 0.6490 +9184 55023 0.6680 +9184 55055 0.8900 +9184 55143 0.7630 +9184 55166 0.6180 +9184 55255 0.5230 +9184 55746 0.6290 +9184 55839 0.6610 +9184 55920 0.5920 +9184 55929 0.4670 +9184 56259 0.4200 +9184 57082 0.9960 +9184 57122 0.7420 +9184 57405 0.6140 +9184 57551 0.7310 +9184 63922 0.4030 +9184 64105 0.7080 +9184 64682 0.9510 +9184 64946 0.7070 +9184 79003 0.7320 +9184 79004 0.4940 +9184 79019 0.6650 +9184 79023 0.6470 +9184 79172 0.6330 +9184 79576 0.6680 +9184 79682 0.6510 +9184 79902 0.6040 +9184 79935 0.5100 +9184 79980 0.7600 +9184 80152 0.6770 +9184 80776 0.4990 +9184 81565 0.6310 +9184 81669 0.4350 +9184 81929 0.6790 +9184 81930 0.7210 +9184 83540 0.8640 +9184 83903 0.4390 +9184 84260 0.4250 +9184 84280 0.5550 +9184 84643 0.6390 +9184 84896 0.5160 +9184 85417 0.6150 +9184 91687 0.5960 +9184 94239 0.4290 +9184 119504 0.7820 +9184 129401 0.4320 +9184 140735 0.5050 +9184 147841 0.7250 +9184 151246 0.7280 +9184 151648 0.8590 +9184 166979 0.5500 +9184 196441 0.5500 +9184 220134 0.6780 +9184 221150 0.4090 +9184 222658 0.4680 +9184 246184 0.9480 +9184 345079 0.4180 +9184 348235 0.6630 +9184 348995 0.5880 +9184 378708 0.8220 +9184 401541 0.5730 +9184 440093 0.5280 +9184 440686 0.5280 +9184 645121 0.4180 +9184 653604 0.5320 +9185 9341 0.5010 +9185 9649 0.4560 +9185 9885 0.4270 +9185 9892 0.7500 +9185 10254 0.5160 +9185 10742 0.5750 +9185 10928 0.9900 +9185 22905 0.8880 +9185 26119 0.5840 +9185 29924 0.9780 +9185 29978 0.5680 +9185 30011 0.5880 +9185 51693 0.6200 +9185 54682 0.4060 +9185 55040 0.7880 +9185 56474 0.4330 +9185 58513 0.5470 +9185 85021 0.8800 +9185 94056 0.4600 +9185 255324 0.4990 +9185 286006 0.4640 +9187 9626 0.5240 +9187 10002 0.4160 +9187 51151 0.5790 +9187 51608 0.5720 +9187 54714 0.6270 +9187 57010 0.7040 +9187 60506 0.5540 +9187 64240 0.4050 +9187 80303 0.4520 +9187 93589 0.5080 +9187 93650 0.4550 +9187 131890 0.6150 +9187 169522 0.5690 +9187 285335 0.4100 +9187 345193 0.6660 +9187 346007 0.4790 +9187 388531 0.5210 +9187 440435 0.5730 +9188 9212 0.5760 +9188 9219 0.4310 +9188 9221 0.6570 +9188 9238 0.4460 +9188 9277 0.8690 +9188 9343 0.5930 +9188 9416 0.4540 +9188 9533 0.6970 +9188 9584 0.7240 +9188 9774 0.4350 +9188 9775 0.5030 +9188 9782 0.5840 +9188 9790 0.6190 +9188 9875 0.4440 +9188 9904 0.5120 +9188 9908 0.4800 +9188 9933 0.6360 +9188 9939 0.5200 +9188 9967 0.5030 +9188 9972 0.5380 +9188 9987 0.5980 +9188 10146 0.6630 +9188 10153 0.5440 +9188 10155 0.4470 +9188 10171 0.4030 +9188 10189 0.5490 +9188 10199 0.4490 +9188 10212 0.4820 +9188 10236 0.7300 +9188 10249 0.4270 +9188 10412 0.6720 +9188 10436 0.4100 +9188 10452 0.4290 +9188 10482 0.4960 +9188 10492 0.7860 +9188 10514 0.9630 +9188 10521 0.5720 +9188 10528 0.8110 +9188 10594 0.6030 +9188 10614 0.8090 +9188 10625 0.4090 +9188 10657 0.4270 +9188 10664 0.4690 +9188 10813 0.5350 +9188 10849 0.6360 +9188 10885 0.5160 +9188 10949 0.4810 +9188 10969 0.9920 +9188 11056 0.5350 +9188 11103 0.5990 +9188 11137 0.4970 +9188 11198 0.6010 +9188 11201 0.6530 +9188 11222 0.5000 +9188 11224 0.4460 +9188 11338 0.4550 +9188 22803 0.6760 +9188 22907 0.6110 +9188 22913 0.5410 +9188 22916 0.7000 +9188 22984 0.5440 +9188 23020 0.5970 +9188 23029 0.7200 +9188 23064 0.4650 +9188 23076 0.8060 +9188 23135 0.6250 +9188 23160 0.7220 +9188 23212 0.8420 +9188 23215 0.4610 +9188 23223 0.5510 +9188 23246 0.8380 +9188 23367 0.6170 +9188 23378 0.5470 +9188 23435 0.4380 +9188 23451 0.9270 +9188 23481 0.9750 +9188 23517 0.6340 +9188 23521 0.5520 +9188 23560 0.8130 +9188 23586 0.6920 +9188 25852 0.6300 +9188 25873 0.5980 +9188 25879 0.4850 +9188 25885 0.7860 +9188 25983 0.4010 +9188 25998 0.4640 +9188 26065 0.5180 +9188 26135 0.6220 +9188 26155 0.6160 +9188 26156 0.8100 +9188 26168 0.4780 +9188 26354 0.9630 +9188 26523 0.4130 +9188 26574 0.5370 +9188 26986 0.6230 +9188 27000 0.5600 +9188 27043 0.5280 +9188 27067 0.4240 +9188 27161 0.4510 +9188 27292 0.4820 +9188 27316 0.4240 +9188 27327 0.4350 +9188 27341 0.4210 +9188 28987 0.4500 +9188 28998 0.4160 +9188 29889 0.6840 +9188 30834 0.5730 +9188 51068 0.4320 +9188 51082 0.6810 +9188 51096 0.5430 +9188 51121 0.4740 +9188 51154 0.5420 +9188 51187 0.5710 +9188 51202 0.5860 +9188 51340 0.4060 +9188 51388 0.6220 +9188 51493 0.4510 +9188 51547 0.7300 +9188 51574 0.8660 +9188 51575 0.4310 +9188 51602 0.8770 +9188 51605 0.4450 +9188 51631 0.4390 +9188 54145 0.4190 +9188 54433 0.5850 +9188 54505 0.5820 +9188 54514 0.4020 +9188 54517 0.4550 +9188 54542 0.5200 +9188 54552 0.5360 +9188 54555 0.4800 +9188 54606 0.6080 +9188 54663 0.5740 +9188 54700 0.4520 +9188 54865 0.5010 +9188 54881 0.6280 +9188 54888 0.4770 +9188 55127 0.5000 +9188 55131 0.5580 +9188 55153 0.6260 +9188 55226 0.5420 +9188 55299 0.7090 +9188 55341 0.5030 +9188 55505 0.4110 +9188 55601 0.6160 +9188 55646 0.5270 +9188 55651 0.6360 +9188 55660 0.4400 +9188 55720 0.6840 +9188 55759 0.8390 +9188 55760 0.4050 +9188 55766 0.5720 +9188 55781 0.4850 +9188 55794 0.4080 +9188 56257 0.7020 +9188 56829 0.4080 +9188 56902 0.6180 +9188 56919 0.7370 +9188 57050 0.4720 +9188 57062 0.7060 +9188 57109 0.4570 +9188 57136 0.4860 +9188 57418 0.6650 +9188 57506 0.4490 +9188 57647 0.4890 +9188 57696 0.5260 +9188 64135 0.4660 +9188 64318 0.6550 +9188 64425 0.7200 +9188 64794 0.5940 +9188 65003 0.4010 +9188 65083 0.4750 +9188 65095 0.4430 +9188 79009 0.6220 +9188 79017 0.4670 +9188 79039 0.6160 +9188 79080 0.4640 +9188 79101 0.6420 +9188 79132 0.4660 +9188 79159 0.4130 +9188 79707 0.4680 +9188 79954 0.4780 +9188 80135 0.4560 +9188 81887 0.5170 +9188 83732 0.4270 +9188 83743 0.6150 +9188 84154 0.6610 +9188 84172 0.7410 +9188 84365 0.7830 +9188 84444 0.5660 +9188 84450 0.4480 +9188 84549 0.6050 +9188 84916 0.4110 +9188 84946 0.4800 +9188 84955 0.6840 +9188 85236 0.4190 +9188 85437 0.4030 +9188 87178 0.5320 +9188 90957 0.5090 +9188 92856 0.5400 +9188 94239 0.4490 +9188 117246 0.7860 +9188 121504 0.4330 +9188 124245 0.4960 +9188 128312 0.4190 +9188 144983 0.4040 +9188 149041 0.5160 +9188 161424 0.4030 +9188 170506 0.9980 +9188 220988 0.4950 +9188 221078 0.4620 +9188 221830 0.6760 +9188 255626 0.4190 +9188 285855 0.5190 +9188 317781 0.4170 +9188 345630 0.4730 +9188 387129 0.4070 +9188 402569 0.4770 +9188 474382 0.4330 +9188 548645 0.4090 +9188 554313 0.4350 +9188 653604 0.5350 +9188 692312 0.4190 +9188 728378 0.4590 +9188 100996928 0.4050 +9189 9407 0.4320 +9189 9519 0.5900 +9189 10251 0.4580 +9189 10597 0.4160 +9189 10664 0.4070 +9189 55222 0.4410 +9189 55344 0.5980 +9189 57645 0.4540 +9189 79413 0.4160 +9189 84327 0.4250 +9189 114327 0.4980 +9189 115825 0.4350 +9189 162968 0.4070 +9189 207063 0.8790 +9191 9271 0.4180 +9191 9330 0.4550 +9191 9337 0.6290 +9191 23019 0.5080 +9191 25819 0.5220 +9191 25904 0.4320 +9191 29883 0.6200 +9191 54464 0.4120 +9191 55571 0.4530 +9191 57109 0.5270 +9191 57472 0.6770 +9191 79033 0.4160 +9191 80196 0.7030 +9191 81875 0.4290 +9191 84134 0.4460 +9191 90459 0.8820 +9191 90806 0.4060 +9191 114034 0.4150 +9191 143689 0.4160 +9191 154197 0.4960 +9191 162989 0.5850 +9191 201626 0.4630 +9191 246175 0.6100 +9194 23539 0.7170 +9194 26503 0.7720 +9194 27198 0.5720 +9194 28985 0.5970 +9194 79872 0.4260 +9194 133418 0.9880 +9194 159963 0.5790 +9194 160728 0.5800 +9194 654790 0.4040 +9196 9211 0.4020 +9196 9312 0.9080 +9196 9424 0.5350 +9196 9883 0.4750 +9196 9899 0.4380 +9196 10013 0.4760 +9196 10327 0.5870 +9196 10458 0.4330 +9196 10776 0.4060 +9196 10777 0.4090 +9196 23158 0.4300 +9196 23415 0.6310 +9196 23416 0.7960 +9196 24145 0.7530 +9196 26251 0.5980 +9196 27012 0.8340 +9196 27133 0.6630 +9196 54995 0.4370 +9196 55349 0.4460 +9196 55746 0.5670 +9196 56479 0.6350 +9196 56659 0.5060 +9196 56912 0.4460 +9196 57016 0.5450 +9196 57030 0.4530 +9196 57122 0.5570 +9196 57727 0.4670 +9196 65987 0.4150 +9196 79902 0.4880 +9196 81033 0.5910 +9196 81929 0.4900 +9196 83592 0.6190 +9196 84959 0.4070 +9196 90134 0.6380 +9196 93107 0.7260 +9196 114798 0.4120 +9196 131096 0.6540 +9196 169522 0.6280 +9196 170850 0.6210 +9196 340811 0.4360 +9196 441282 0.5880 +9196 100101267 0.4670 +9197 9527 0.5370 +9197 9885 0.4080 +9197 9895 0.4910 +9197 9897 0.5590 +9197 9907 0.5770 +9197 9963 0.4200 +9197 10478 0.4200 +9197 10717 0.5150 +9197 10749 0.4090 +9197 10908 0.5540 +9197 11154 0.5400 +9197 11160 0.5080 +9197 23111 0.4640 +9197 23204 0.4270 +9197 23259 0.4680 +9197 23431 0.4850 +9197 23503 0.5760 +9197 25782 0.4500 +9197 26580 0.4750 +9197 51062 0.4420 +9197 51308 0.4630 +9197 51324 0.5240 +9197 55032 0.5740 +9197 57165 0.4180 +9197 57704 0.5230 +9197 57835 0.4600 +9197 64924 0.4970 +9197 65055 0.5310 +9197 79152 0.4670 +9197 79717 0.7110 +9197 80055 0.4370 +9197 80207 0.4090 +9197 80208 0.4970 +9197 80821 0.4650 +9197 91574 0.4570 +9197 113612 0.4500 +9197 118813 0.4720 +9197 123606 0.6300 +9197 128209 0.4010 +9197 137492 0.5770 +9197 201931 0.4740 +9197 284439 0.4180 +9197 285315 0.6190 +9197 340075 0.4140 +9200 9524 0.9840 +9200 51144 0.9810 +9200 51495 0.9180 +9200 54898 0.9340 +9200 64419 0.4100 +9200 64834 0.5090 +9200 79022 0.4880 +9200 79071 0.9440 +9200 79966 0.9140 +9200 79993 0.4130 +9200 80347 0.4680 +9200 83693 0.6060 +9200 201562 0.9030 +9200 253017 0.7250 +9200 401494 0.9190 +9200 752014 0.8130 +9201 10254 0.4080 +9201 10344 0.4480 +9201 10376 0.5630 +9201 10381 0.5630 +9201 10382 0.5460 +9201 10383 0.5110 +9201 10456 0.4060 +9201 10562 0.5130 +9201 11200 0.4550 +9201 25833 0.6280 +9201 25913 0.5420 +9201 26018 0.5230 +9201 26575 0.4600 +9201 26960 0.8160 +9201 29941 0.4050 +9201 51175 0.5110 +9201 51806 0.7730 +9201 51807 0.5480 +9201 55143 0.4430 +9201 55422 0.5050 +9201 57452 0.4650 +9201 60482 0.4230 +9201 65982 0.6350 +9201 79861 0.5440 +9201 80086 0.5440 +9201 81027 0.5110 +9201 83756 0.4270 +9201 83987 0.4660 +9201 84525 0.4540 +9201 84617 0.5130 +9201 84790 0.5440 +9201 91860 0.7740 +9201 112714 0.5440 +9201 113457 0.5440 +9201 147015 0.4360 +9201 163688 0.7740 +9201 203068 0.5110 +9201 260334 0.5110 +9201 284266 0.4870 +9201 284654 0.4600 +9201 346562 0.5260 +9201 347688 0.5110 +9201 347733 0.5990 +9201 374354 0.4630 +9201 100133941 0.4470 +9201 100532731 0.5360 +9202 9203 0.5370 +9202 9282 0.5620 +9202 10664 0.4530 +9202 10951 0.4490 +9202 11328 0.4650 +9202 22828 0.4750 +9202 23028 0.6070 +9202 23126 0.5140 +9202 23186 0.7650 +9202 23252 0.4350 +9202 23394 0.5010 +9202 26043 0.4150 +9202 27352 0.4470 +9202 29979 0.4870 +9202 54816 0.4060 +9202 54989 0.4150 +9202 55023 0.4790 +9202 55249 0.5790 +9202 55325 0.5050 +9202 55729 0.4830 +9202 55870 0.4270 +9202 56893 0.5100 +9202 56916 0.5030 +9202 57534 0.7810 +9202 79149 0.5500 +9202 79621 0.4300 +9202 80224 0.4350 +9202 85457 0.5720 +9202 91782 0.4370 +9202 221786 0.5100 +9202 374354 0.4100 +9202 100506144 0.4480 +9203 9555 0.4140 +9203 9577 0.4520 +9203 9658 0.5420 +9203 9772 0.5400 +9203 9968 0.5530 +9203 10284 0.5050 +9203 10362 0.5860 +9203 10951 0.5340 +9203 23028 0.9080 +9203 23036 0.4980 +9203 23186 0.8340 +9203 23199 0.7160 +9203 23468 0.4170 +9203 26036 0.4660 +9203 26227 0.4050 +9203 29072 0.5320 +9203 51317 0.5790 +9203 51720 0.8460 +9203 54816 0.5240 +9203 54870 0.4500 +9203 55709 0.5170 +9203 55758 0.5780 +9203 55975 0.5660 +9203 56254 0.5070 +9203 56474 0.4170 +9203 56848 0.4470 +9203 57481 0.4060 +9203 58508 0.6310 +9203 79149 0.4450 +9203 79605 0.4630 +9203 84142 0.4650 +9203 89857 0.5880 +9203 116179 0.4590 +9203 254225 0.4280 +9203 256006 0.4330 +9203 284695 0.4490 +9203 286451 0.4200 +9203 440093 0.4430 +9203 440686 0.4370 +9203 653604 0.4420 +9203 731220 0.4160 +9204 10474 0.4230 +9204 11154 0.4950 +9204 27314 0.4360 +9204 51005 0.4320 +9204 51426 0.4370 +9204 55929 0.4310 +9204 56156 0.4280 +9204 57685 0.4750 +9204 63941 0.4770 +9204 80818 0.4260 +9204 83852 0.7190 +9204 284371 0.5800 +9204 399697 0.4060 +9204 100506144 0.4480 +9205 9310 0.4190 +9205 27303 0.4470 +9205 51742 0.4100 +9205 54870 0.5060 +9205 54989 0.4260 +9205 55269 0.4340 +9205 56521 0.4730 +9205 79621 0.4400 +9205 114805 0.4520 +9205 117583 0.4650 +9205 151649 0.4250 +9205 100101467 0.4080 +9208 9447 0.5750 +9208 9530 0.4090 +9208 9939 0.6950 +9208 10267 0.4010 +9208 10634 0.5800 +9208 11052 0.4900 +9208 11064 0.5330 +9208 11116 0.4700 +9208 11160 0.4150 +9208 23193 0.4070 +9208 23512 0.4410 +9208 23586 0.4480 +9208 26127 0.6040 +9208 29110 0.4260 +9208 29765 0.4930 +9208 29766 0.4740 +9208 51428 0.7390 +9208 51478 0.4050 +9208 55601 0.4110 +9208 55793 0.4580 +9208 56203 0.4110 +9208 64135 0.4140 +9208 79157 0.4670 +9208 80222 0.4060 +9208 81030 0.5190 +9208 84061 0.4060 +9208 84124 0.4150 +9208 84334 0.4440 +9208 94160 0.4050 +9208 115004 0.5460 +9208 137735 0.4280 +9208 142679 0.5330 +9208 149951 0.4560 +9208 170506 0.7040 +9208 197259 0.4060 +9208 284695 0.4420 +9208 375316 0.4330 +9208 399687 0.5630 +9209 9852 0.4740 +9209 10537 0.4100 +9209 29766 0.4240 +9209 51213 0.4790 +9209 54502 0.4190 +9209 55075 0.4300 +9209 55930 0.4220 +9209 56853 0.4020 +9209 91647 0.4960 +9209 137735 0.4280 +9210 10468 0.8930 +9210 10734 0.5930 +9210 10857 0.4520 +9210 22917 0.6610 +9210 23105 0.4350 +9210 25831 0.4470 +9210 29893 0.4180 +9210 54361 0.4370 +9210 54514 0.4130 +9210 54757 0.4310 +9210 54766 0.4810 +9210 54937 0.4800 +9210 55827 0.4960 +9210 56975 0.6870 +9210 57829 0.6870 +9210 66037 0.4770 +9210 79983 0.8760 +9210 84515 0.4600 +9210 93426 0.4450 +9210 117166 0.4400 +9210 126206 0.6440 +9210 132243 0.6500 +9210 135935 0.9410 +9210 164045 0.4490 +9210 219990 0.4240 +9210 254394 0.4470 +9210 255649 0.4460 +9210 326340 0.6910 +9210 342931 0.4020 +9210 342977 0.4740 +9210 344018 0.9550 +9210 353238 0.5250 +9210 402381 0.5730 +9210 431707 0.5480 +9210 494551 0.4510 +9210 100526761 0.4490 +9211 9369 0.4890 +9211 9378 0.4440 +9211 9454 0.5710 +9211 9568 0.4130 +9211 9681 0.5260 +9211 10368 0.5710 +9211 10369 0.9070 +9211 10687 0.8840 +9211 10863 0.9940 +9211 11249 0.4260 +9211 23092 0.5170 +9211 23114 0.4700 +9211 23154 0.4290 +9211 26047 0.9940 +9211 26289 0.4430 +9211 27092 0.5320 +9211 29998 0.4910 +9211 30010 0.4410 +9211 53616 0.9990 +9211 55175 0.4160 +9211 56896 0.8790 +9211 57526 0.4880 +9211 57575 0.4100 +9211 57582 0.5040 +9211 57628 0.8820 +9211 59283 0.5370 +9211 65078 0.4740 +9211 84059 0.7750 +9211 84107 0.7900 +9211 92737 0.7660 +9211 112476 0.4840 +9211 114327 0.4460 +9211 118924 0.7640 +9211 163175 0.4090 +9211 203190 0.4850 +9211 402665 0.8850 +9212 9232 0.9490 +9212 9319 0.7880 +9212 9401 0.4290 +9212 9493 0.9610 +9212 9585 0.6580 +9212 9631 0.5490 +9212 9656 0.5590 +9212 9688 0.5330 +9212 9700 0.9850 +9212 9735 0.6000 +9212 9739 0.5850 +9212 9768 0.7850 +9212 9787 0.9500 +9212 9793 0.6930 +9212 9818 0.4190 +9212 9824 0.5070 +9212 9833 0.9020 +9212 9837 0.5710 +9212 9859 0.4670 +9212 9874 0.4400 +9212 9883 0.4280 +9212 9903 0.5710 +9212 9908 0.5880 +9212 9918 0.7920 +9212 9928 0.8320 +9212 9972 0.5870 +9212 9985 0.7040 +9212 10013 0.5180 +9212 10024 0.8360 +9212 10036 0.4150 +9212 10051 0.8670 +9212 10112 0.9900 +9212 10155 0.4110 +9212 10270 0.4040 +9212 10274 0.4090 +9212 10296 0.4050 +9212 10393 0.6150 +9212 10401 0.5060 +9212 10403 0.9790 +9212 10426 0.4760 +9212 10434 0.6670 +9212 10460 0.7400 +9212 10514 0.6380 +9212 10524 0.4510 +9212 10528 0.4030 +9212 10535 0.5060 +9212 10537 0.4060 +9212 10592 0.6490 +9212 10615 0.8780 +9212 10635 0.5200 +9212 10713 0.5120 +9212 10724 0.9300 +9212 10726 0.6210 +9212 10733 0.7260 +9212 10735 0.5900 +9212 10744 0.7640 +9212 10762 0.5490 +9212 10769 0.5160 +9212 10856 0.5200 +9212 10857 0.4760 +9212 10926 0.4340 +9212 10951 0.6430 +9212 10980 0.4120 +9212 10982 0.7350 +9212 11004 0.9960 +9212 11065 0.9550 +9212 11097 0.4220 +9212 11113 0.4870 +9212 11129 0.4910 +9212 11130 0.9270 +9212 11140 0.7320 +9212 11169 0.4400 +9212 11186 0.4400 +9212 11335 0.7500 +9212 11339 0.6600 +9212 22919 0.9170 +9212 22924 0.6910 +9212 22974 0.9400 +9212 22981 0.4030 +9212 23063 0.5870 +9212 23165 0.5260 +9212 23225 0.4660 +9212 23244 0.7430 +9212 23279 0.5900 +9212 23310 0.5680 +9212 23387 0.4580 +9212 23397 0.9090 +9212 23468 0.8550 +9212 23476 0.5360 +9212 23511 0.4890 +9212 23636 0.4930 +9212 24137 0.9420 +9212 25827 0.6300 +9212 25836 0.5590 +9212 25886 0.4240 +9212 25906 0.6110 +9212 26135 0.5340 +9212 26155 0.8670 +9212 26271 0.5360 +9212 26278 0.4600 +9212 26586 0.4840 +9212 27127 0.5920 +9212 27250 0.4030 +9212 27338 0.7190 +9212 27436 0.6120 +9212 29028 0.6210 +9212 29072 0.4660 +9212 29089 0.4350 +9212 29116 0.4460 +9212 29127 0.9660 +9212 29128 0.6160 +9212 29882 0.5220 +9212 29945 0.5650 +9212 51053 0.4580 +9212 51115 0.4750 +9212 51203 0.9090 +9212 51343 0.8920 +9212 51433 0.5630 +9212 51434 0.5560 +9212 51512 0.8410 +9212 51514 0.6800 +9212 51529 0.6150 +9212 51659 0.6190 +9212 53371 0.4180 +9212 54069 0.4460 +9212 54145 0.4720 +9212 54431 0.5500 +9212 54443 0.8460 +9212 54478 0.7370 +9212 54606 0.4070 +9212 54801 0.4870 +9212 54821 0.6140 +9212 54888 0.8370 +9212 54892 0.6050 +9212 55055 0.6800 +9212 55063 0.5490 +9212 55125 0.4780 +9212 55143 0.9990 +9212 55165 0.8640 +9212 55166 0.4190 +9212 55215 0.5650 +9212 55247 0.4130 +9212 55255 0.4010 +9212 55294 0.6770 +9212 55320 0.6140 +9212 55355 0.9270 +9212 55388 0.7300 +9212 55635 0.5690 +9212 55666 0.4400 +9212 55706 0.5030 +9212 55723 0.7020 +9212 55746 0.6180 +9212 55755 0.4160 +9212 55789 0.6820 +9212 55835 0.4010 +9212 55839 0.6360 +9212 55920 0.9730 +9212 55958 0.9090 +9212 56829 0.4020 +9212 56990 0.4520 +9212 56992 0.8580 +9212 57082 0.9160 +9212 57122 0.6770 +9212 57156 0.7960 +9212 57405 0.6020 +9212 57418 0.4240 +9212 57448 0.6870 +9212 57509 0.7800 +9212 57558 0.5950 +9212 57650 0.5230 +9212 63922 0.4410 +9212 63967 0.6620 +9212 64105 0.4860 +9212 64151 0.9130 +9212 64506 0.5240 +9212 64682 0.5920 +9212 64946 0.5820 +9212 65061 0.4170 +9212 79003 0.5890 +9212 79019 0.8450 +9212 79023 0.6050 +9212 79075 0.4840 +9212 79109 0.4800 +9212 79172 0.6170 +9212 79444 0.5860 +9212 79682 0.7550 +9212 79733 0.6460 +9212 79801 0.5550 +9212 79823 0.5410 +9212 79866 0.6920 +9212 79902 0.6070 +9212 79935 0.4090 +9212 79980 0.8290 +9212 80012 0.4770 +9212 80152 0.6130 +9212 81554 0.4660 +9212 81610 0.6840 +9212 81620 0.7900 +9212 81624 0.4740 +9212 81669 0.5710 +9212 81929 0.6740 +9212 81930 0.8140 +9212 83461 0.9330 +9212 83540 0.9500 +9212 83879 0.6350 +9212 83903 0.9560 +9212 84057 0.4880 +9212 84643 0.6770 +9212 84790 0.4190 +9212 84823 0.4890 +9212 84936 0.5330 +9212 84959 0.4010 +9212 84962 0.5650 +9212 85236 0.4640 +9212 85417 0.5280 +9212 90293 0.9020 +9212 90381 0.4900 +9212 90417 0.5540 +9212 92421 0.6820 +9212 113130 0.9680 +9212 114799 0.4090 +9212 117246 0.4090 +9212 119504 0.5260 +9212 121441 0.4080 +9212 126520 0.5710 +9212 126961 0.6520 +9212 128239 0.4270 +9212 128312 0.4680 +9212 129401 0.5850 +9212 133482 0.6720 +9212 144455 0.4920 +9212 146909 0.7520 +9212 147841 0.7290 +9212 150468 0.7370 +9212 151246 0.8390 +9212 151648 0.9690 +9212 152098 0.5490 +9212 157313 0.7560 +9212 157570 0.5800 +9212 158983 0.4610 +9212 163786 0.4360 +9212 166979 0.5940 +9212 203068 0.4800 +9212 220134 0.8830 +9212 221150 0.7850 +9212 222229 0.4510 +9212 246184 0.5640 +9212 255626 0.6000 +9212 259266 0.8900 +9212 283431 0.5490 +9212 284403 0.5250 +9212 285643 0.4050 +9212 286436 0.4610 +9212 347240 0.4600 +9212 348995 0.5750 +9212 378708 0.7850 +9212 387103 0.5560 +9212 389677 0.4700 +9212 440093 0.9220 +9212 440686 0.8950 +9212 440689 0.4650 +9212 653604 0.9220 +9212 100101267 0.4300 +9212 111064650 0.4460 +9212 114483833 0.4610 +9213 9360 0.4300 +9213 9370 0.4710 +9213 9378 0.4470 +9213 9379 0.4570 +9213 9420 0.4470 +9213 9611 0.6380 +9213 9619 0.8740 +9213 9970 0.8070 +9213 9971 0.9900 +9213 10062 0.8850 +9213 10190 0.4280 +9213 10330 0.4970 +9213 10858 0.5300 +9213 10891 0.7140 +9213 22829 0.4710 +9213 22871 0.4880 +9213 22937 0.5530 +9213 22976 0.4140 +9213 23054 0.6420 +9213 23411 0.4790 +9213 27189 0.6390 +9213 29116 0.8990 +9213 29881 0.5810 +9213 29895 0.5630 +9213 29919 0.7200 +9213 30816 0.4920 +9213 50943 0.4910 +9213 51085 0.6440 +9213 54413 0.5340 +9213 57462 0.6770 +9213 57498 0.8140 +9213 57502 0.4710 +9213 57555 0.4970 +9213 64137 0.4520 +9213 64240 0.9190 +9213 64241 0.9020 +9213 79152 0.4080 +9213 80339 0.4180 +9213 84320 0.4040 +9213 84498 0.5620 +9213 84623 0.4240 +9213 103910 0.5130 +9213 133522 0.5860 +9213 151306 0.5710 +9213 255738 0.4480 +9213 340273 0.5360 +9213 375519 0.4740 +9214 11009 0.4490 +9214 23643 0.4390 +9214 26287 0.4380 +9214 29802 0.6150 +9214 51237 0.4780 +9214 64753 0.4790 +9214 83953 0.4170 +9214 84824 0.6450 +9214 89790 0.4140 +9214 115350 0.4080 +9214 115352 0.4730 +9215 9378 0.4560 +9215 9379 0.4760 +9215 9486 0.4330 +9215 10329 0.8010 +9215 10585 0.8750 +9215 11041 0.9530 +9215 22845 0.5070 +9215 29925 0.5460 +9215 29954 0.8550 +9215 51108 0.4390 +9215 54344 0.5180 +9215 55624 0.9140 +9215 56254 0.5350 +9215 79147 0.8640 +9215 84197 0.7240 +9215 84892 0.7110 +9215 120071 0.9040 +9215 133584 0.5180 +9215 148789 0.7220 +9215 375790 0.5760 +9215 729920 0.6700 +9217 9218 0.9640 +9217 9312 0.7380 +9217 9474 0.4890 +9217 9516 0.5100 +9217 9554 0.4420 +9217 9600 0.9480 +9217 9776 0.4840 +9217 9782 0.6110 +9217 9804 0.4890 +9217 9821 0.6970 +9217 9868 0.6400 +9217 9885 0.8700 +9217 9896 0.8440 +9217 9927 0.8700 +9217 10059 0.4270 +9217 10087 0.9300 +9217 10133 0.7990 +9217 10134 0.9150 +9217 10280 0.7120 +9217 10313 0.5040 +9217 10424 0.4460 +9217 10536 0.4710 +9217 10652 0.4950 +9217 10868 0.7050 +9217 10897 0.7380 +9217 10948 0.9400 +9217 10952 0.4120 +9217 10970 0.4860 +9217 11124 0.7330 +9217 11186 0.4890 +9217 11231 0.4070 +9217 22926 0.9890 +9217 22930 0.8390 +9217 23025 0.4480 +9217 23064 0.8650 +9217 23148 0.4220 +9217 23230 0.6770 +9217 23241 0.7690 +9217 23256 0.4010 +9217 23344 0.5780 +9217 23435 0.8910 +9217 23762 0.7850 +9217 23770 0.4950 +9217 25782 0.7340 +9217 25909 0.5490 +9217 25923 0.5010 +9217 25963 0.4050 +9217 25978 0.7360 +9217 26031 0.8730 +9217 29110 0.5230 +9217 29978 0.7430 +9217 29984 0.5570 +9217 30820 0.7500 +9217 51024 0.7920 +9217 51608 0.4830 +9217 51806 0.4730 +9217 54521 0.7340 +9217 54708 0.5360 +9217 54832 0.5980 +9217 55177 0.9990 +9217 55187 0.4110 +9217 55219 0.4010 +9217 55277 0.5000 +9217 55288 0.5240 +9217 55341 0.6660 +9217 55669 0.6890 +9217 55831 0.4500 +9217 55852 0.4730 +9217 56180 0.4700 +9217 56947 0.4370 +9217 57142 0.4880 +9217 57466 0.4740 +9217 57488 0.5470 +9217 57506 0.4740 +9217 57605 0.7560 +9217 57658 0.6010 +9217 57679 0.8790 +9217 64423 0.4240 +9217 64598 0.4090 +9217 65018 0.4680 +9217 65055 0.5240 +9217 65992 0.4110 +9217 79188 0.5810 +9217 79716 0.4310 +9217 79777 0.9800 +9217 80208 0.6610 +9217 81027 0.4470 +9217 83394 0.5220 +9217 83547 0.4630 +9217 83850 0.4230 +9217 83930 0.8540 +9217 84317 0.4530 +9217 84895 0.7150 +9217 90550 0.4980 +9217 91452 0.9970 +9217 91860 0.4740 +9217 93643 0.4800 +9217 112755 0.5940 +9217 112936 0.4260 +9217 114876 0.7430 +9217 114879 0.6470 +9217 114880 0.8110 +9217 114881 0.4810 +9217 114882 0.6580 +9217 114883 0.9640 +9217 114884 0.8050 +9217 114885 0.7690 +9217 118813 0.8290 +9217 118987 0.6890 +9217 125893 0.4270 +9217 133746 0.4530 +9217 151393 0.8060 +9217 151742 0.7480 +9217 158219 0.5730 +9217 158747 0.4020 +9217 163688 0.4740 +9217 203228 0.7460 +9217 255738 0.4020 +9217 400916 0.6040 +9217 644815 0.5910 +9218 9312 0.7560 +9218 9381 0.5440 +9218 9409 0.5070 +9218 9516 0.4530 +9218 9600 0.9010 +9218 9685 0.4280 +9218 9694 0.4210 +9218 9805 0.6960 +9218 9821 0.7330 +9218 9854 0.5000 +9218 9885 0.8100 +9218 10087 0.9900 +9218 10134 0.6980 +9218 10269 0.5560 +9218 10313 0.6470 +9218 10410 0.8460 +9218 10476 0.4870 +9218 10558 0.4180 +9218 10618 0.4260 +9218 10794 0.4190 +9218 10868 0.4470 +9218 10897 0.6200 +9218 10948 0.9900 +9218 10952 0.7360 +9218 10970 0.4870 +9218 11031 0.4110 +9218 11124 0.6870 +9218 11186 0.4710 +9218 11231 0.6810 +9218 11345 0.4760 +9218 22930 0.7300 +9218 22931 0.4250 +9218 23230 0.8040 +9218 23344 0.6170 +9218 23365 0.5990 +9218 23480 0.5000 +9218 23551 0.6130 +9218 23760 0.4640 +9218 23762 0.9380 +9218 23770 0.4880 +9218 25782 0.5360 +9218 25923 0.4230 +9218 26031 0.8990 +9218 26499 0.6210 +9218 27230 0.5240 +9218 30820 0.4730 +9218 51228 0.4200 +9218 51495 0.4580 +9218 51510 0.4180 +9218 51608 0.5760 +9218 54521 0.7340 +9218 54832 0.6190 +9218 54910 0.4700 +9218 55062 0.5040 +9218 55177 0.8070 +9218 55187 0.4120 +9218 55341 0.5760 +9218 56180 0.4910 +9218 57142 0.5640 +9218 57488 0.5660 +9218 57515 0.5830 +9218 57605 0.8130 +9218 57655 0.4770 +9218 57658 0.5960 +9218 64598 0.4750 +9218 64746 0.4030 +9218 65977 0.5690 +9218 79443 0.5890 +9218 79777 0.9080 +9218 81671 0.4450 +9218 83394 0.6760 +9218 83850 0.4810 +9218 83930 0.9330 +9218 84725 0.6750 +9218 84895 0.7990 +9218 91452 0.9950 +9218 91543 0.6750 +9218 112936 0.4310 +9218 114876 0.8630 +9218 114879 0.7750 +9218 114880 0.8110 +9218 114881 0.7590 +9218 114882 0.5940 +9218 114883 0.9730 +9218 114884 0.7800 +9218 114885 0.7220 +9218 118424 0.4990 +9218 118813 0.9240 +9218 118987 0.6280 +9218 133746 0.4340 +9218 151393 0.6190 +9218 151742 0.8200 +9218 158747 0.7620 +9218 201595 0.4990 +9218 246175 0.6360 +9218 387733 0.4210 +9218 100506658 0.6190 +9219 9611 0.6000 +9219 9682 0.4910 +9219 9782 0.4260 +9219 9839 0.6210 +9219 10014 0.7260 +9219 10155 0.6630 +9219 10284 0.7300 +9219 10362 0.5700 +9219 10363 0.4810 +9219 10614 0.4430 +9219 10919 0.7960 +9219 11335 0.6540 +9219 22955 0.5190 +9219 23028 0.9470 +9219 23186 0.8260 +9219 23314 0.6270 +9219 23466 0.5170 +9219 23476 0.6880 +9219 23512 0.6640 +9219 23613 0.5300 +9219 23774 0.4480 +9219 25855 0.5640 +9219 25942 0.7830 +9219 26038 0.9540 +9219 26060 0.5540 +9219 27154 0.4190 +9219 27161 0.4330 +9219 29117 0.4300 +9219 51105 0.6740 +9219 51222 0.7320 +9219 51317 0.6490 +9219 51341 0.6710 +9219 51564 0.6240 +9219 51574 0.5370 +9219 51742 0.5980 +9219 53335 0.7750 +9219 53615 0.9960 +9219 54145 0.4990 +9219 54478 0.4100 +9219 54815 0.9990 +9219 54828 0.4480 +9219 55198 0.4050 +9219 55766 0.5270 +9219 55869 0.4180 +9219 56257 0.5240 +9219 57167 0.7020 +9219 57332 0.5460 +9219 57459 0.9980 +9219 57473 0.5520 +9219 57504 0.9660 +9219 57798 0.5560 +9219 64426 0.6770 +9219 64769 0.4020 +9219 64919 0.8330 +9219 79084 0.4180 +9219 79370 0.4200 +9219 79685 0.5090 +9219 79923 0.5380 +9219 80012 0.5040 +9219 84232 0.5010 +9219 84289 0.4190 +9219 84619 0.5390 +9219 84661 0.4610 +9219 84733 0.5110 +9219 84942 0.5140 +9219 85235 0.4010 +9219 85236 0.5090 +9219 85509 0.8800 +9219 92815 0.4010 +9219 94239 0.5220 +9219 125997 0.6190 +9219 128312 0.4990 +9219 203259 0.4260 +9219 221613 0.4150 +9219 255626 0.4990 +9219 317772 0.4150 +9219 440093 0.6190 +9219 440686 0.6200 +9219 440689 0.4130 +9219 474382 0.5010 +9219 653604 0.8040 +9221 9277 0.6230 +9221 9343 0.5580 +9221 9360 0.4580 +9221 9493 0.4020 +9221 9533 0.7360 +9221 9733 0.4280 +9221 9775 0.5300 +9221 9790 0.5250 +9221 9904 0.4750 +9221 9908 0.5030 +9221 9933 0.4110 +9221 9939 0.4060 +9221 10073 0.4670 +9221 10112 0.4010 +9221 10146 0.6090 +9221 10153 0.8940 +9221 10199 0.6590 +9221 10236 0.5090 +9221 10419 0.4780 +9221 10492 0.4780 +9221 10514 0.4490 +9221 10528 0.9950 +9221 10556 0.4210 +9221 10557 0.6390 +9221 10607 0.4140 +9221 10775 0.5170 +9221 10813 0.5840 +9221 10849 0.4920 +9221 10856 0.5890 +9221 10885 0.4690 +9221 10923 0.4300 +9221 10940 0.4220 +9221 10969 0.7760 +9221 11137 0.6140 +9221 11201 0.5970 +9221 11218 0.4190 +9221 22803 0.4200 +9221 22820 0.4260 +9221 22984 0.7380 +9221 23076 0.7690 +9221 23082 0.4850 +9221 23160 0.8360 +9221 23212 0.8060 +9221 23223 0.6550 +9221 23246 0.7820 +9221 23367 0.4330 +9221 23476 0.6430 +9221 23481 0.5420 +9221 23560 0.7470 +9221 23636 0.4470 +9221 25879 0.4040 +9221 25885 0.9720 +9221 25929 0.5770 +9221 26155 0.8570 +9221 26156 0.9500 +9221 26354 0.8890 +9221 26995 0.5360 +9221 27292 0.4270 +9221 27340 0.4670 +9221 27341 0.5600 +9221 28987 0.4800 +9221 29889 0.7270 +9221 50628 0.4830 +9221 51018 0.6310 +9221 51068 0.4140 +9221 51096 0.5320 +9221 51147 0.4550 +9221 51154 0.6510 +9221 51202 0.4290 +9221 51388 0.4820 +9221 51491 0.5390 +9221 51574 0.4140 +9221 51575 0.4950 +9221 51602 0.9840 +9221 51808 0.8500 +9221 54433 0.9150 +9221 54443 0.4010 +9221 54475 0.4580 +9221 54552 0.7370 +9221 54606 0.8520 +9221 54663 0.4110 +9221 54700 0.5420 +9221 54820 0.4370 +9221 54845 0.4650 +9221 54865 0.5800 +9221 54984 0.5860 +9221 55011 0.4600 +9221 55127 0.5100 +9221 55131 0.7290 +9221 55135 0.4940 +9221 55153 0.4420 +9221 55226 0.8040 +9221 55239 0.4380 +9221 55299 0.8260 +9221 55341 0.4090 +9221 55505 0.6560 +9221 55646 0.6210 +9221 55651 0.8960 +9221 55703 0.5920 +9221 55720 0.6630 +9221 55759 0.5340 +9221 55760 0.4740 +9221 55813 0.4460 +9221 56342 0.6300 +9221 57050 0.6530 +9221 57109 0.4820 +9221 57418 0.4300 +9221 64216 0.4030 +9221 64318 0.4020 +9221 64425 0.6600 +9221 65083 0.8150 +9221 65095 0.4200 +9221 65980 0.4210 +9221 79760 0.4320 +9221 79833 0.4020 +9221 79902 0.4730 +9221 79961 0.4120 +9221 80223 0.6040 +9221 80232 0.5340 +9221 83743 0.6990 +9221 84128 0.4020 +9221 84135 0.5160 +9221 84154 0.6600 +9221 84172 0.8770 +9221 84365 0.6990 +9221 84541 0.8140 +9221 84549 0.4310 +9221 84916 0.5320 +9221 84946 0.8470 +9221 92345 0.7140 +9221 92856 0.4300 +9221 117246 0.7880 +9221 128866 0.5140 +9221 142940 0.6200 +9221 148362 0.4140 +9221 161424 0.4870 +9221 165545 0.4740 +9221 167691 0.4220 +9221 171482 0.4440 +9221 221078 0.7870 +9221 221830 0.7710 +9221 317781 0.4520 +9221 345630 0.8800 +9221 692312 0.6140 +9223 9311 0.6980 +9223 9368 0.4360 +9223 9414 0.5320 +9223 9463 0.5470 +9223 9693 0.9860 +9223 9863 0.9220 +9223 9873 0.5350 +9223 10241 0.5890 +9223 10276 0.6290 +9223 10612 0.6390 +9223 11059 0.4060 +9223 11346 0.9940 +9223 22829 0.5050 +9223 22871 0.5180 +9223 23095 0.5440 +9223 23109 0.8390 +9223 50855 0.9130 +9223 51421 0.5830 +9223 51735 0.9160 +9223 54413 0.4910 +9223 56288 0.9450 +9223 57120 0.4390 +9223 57498 0.4130 +9223 57502 0.5080 +9223 57555 0.5200 +9223 64130 0.4200 +9223 79056 0.4350 +9223 79155 0.4160 +9223 84552 0.9060 +9223 84612 0.9060 +9223 84708 0.4990 +9223 116159 0.5460 +9223 150084 0.9940 +9223 154796 0.7270 +9223 260425 0.9470 +9223 284353 0.4120 +9223 100506658 0.5370 +9227 9249 0.9500 +9227 9626 0.5490 +9227 9657 0.5220 +9227 10002 0.4480 +9227 10170 0.9440 +9227 10461 0.7970 +9227 10901 0.9220 +9227 23322 0.4730 +9227 23746 0.8880 +9227 25794 0.4740 +9227 26121 0.4450 +9227 50700 0.9580 +9227 50939 0.4450 +9227 51109 0.9650 +9227 53630 0.7440 +9227 54884 0.9490 +9227 55812 0.9020 +9227 56603 0.6810 +9227 57096 0.8060 +9227 57665 0.4640 +9227 64220 0.8500 +9227 64802 0.4160 +9227 79947 0.4180 +9227 80184 0.7330 +9227 83758 0.4470 +9227 83875 0.5900 +9227 84140 0.4070 +9227 84649 0.5240 +9227 91464 0.4080 +9227 92292 0.5010 +9227 94233 0.7820 +9227 112724 0.4400 +9227 121214 0.7000 +9227 130557 0.4470 +9227 145226 0.9870 +9227 157506 0.9670 +9227 157657 0.4180 +9227 166863 0.4550 +9227 167691 0.7980 +9227 195814 0.9220 +9227 339761 0.9200 +9227 340665 0.4450 +9227 343035 0.8390 +9227 346007 0.4520 +9227 375298 0.5810 +9227 376497 0.4750 +9227 388939 0.4160 +9227 768206 0.4790 +9228 9229 0.7040 +9228 9369 0.6450 +9228 9378 0.8030 +9228 9379 0.7140 +9228 9454 0.6980 +9228 9455 0.6370 +9228 9456 0.7340 +9228 9639 0.5350 +9228 9787 0.4190 +9228 9863 0.4200 +9228 10178 0.4430 +9228 10458 0.4290 +9228 22829 0.6690 +9228 22839 0.8800 +9228 22871 0.8110 +9228 22941 0.9690 +9228 23245 0.6480 +9228 26047 0.5890 +9228 26053 0.4230 +9228 26260 0.4560 +9228 28988 0.4990 +9228 29123 0.5070 +9228 50834 0.4840 +9228 50944 0.8410 +9228 51305 0.4100 +9228 51725 0.5210 +9228 54413 0.8390 +9228 57502 0.8410 +9228 57524 0.4180 +9228 57554 0.4420 +9228 57555 0.7150 +9228 57628 0.5130 +9228 58512 0.8680 +9228 64326 0.4910 +9228 79813 0.4420 +9228 85358 0.9880 +9228 139411 0.8530 +9228 143098 0.4340 +9228 152330 0.6090 +9228 157697 0.4660 +9228 168400 0.6940 +9228 169270 0.4030 +9228 285195 0.4320 +9229 9362 0.4870 +9229 9369 0.6590 +9229 9378 0.7740 +9229 9379 0.7430 +9229 9419 0.4470 +9229 9454 0.9430 +9229 9455 0.8570 +9229 9456 0.9860 +9229 9463 0.4960 +9229 9863 0.7320 +9229 9899 0.4900 +9229 9901 0.4750 +9229 9912 0.4700 +9229 9939 0.4080 +9229 10369 0.7510 +9229 10458 0.5930 +9229 22829 0.8430 +9229 22839 0.5670 +9229 22865 0.4670 +9229 22866 0.4020 +9229 22871 0.9270 +9229 22903 0.5000 +9229 22941 0.9810 +9229 22999 0.4540 +9229 23007 0.4130 +9229 23096 0.4100 +9229 23191 0.4950 +9229 23380 0.4450 +9229 23426 0.4470 +9229 23705 0.4230 +9229 26050 0.4820 +9229 26052 0.5830 +9229 27098 0.4180 +9229 28988 0.5110 +9229 50944 0.9960 +9229 53353 0.4190 +9229 54413 0.8550 +9229 56899 0.5660 +9229 57495 0.4110 +9229 57502 0.8610 +9229 57526 0.4370 +9229 57554 0.6290 +9229 57555 0.8440 +9229 57622 0.5980 +9229 58512 0.7240 +9229 64478 0.4350 +9229 84260 0.4240 +9229 85358 0.9970 +9229 85461 0.7150 +9229 91050 0.5390 +9229 94120 0.4250 +9229 114798 0.4090 +9229 116986 0.5810 +9229 140735 0.4820 +9229 151393 0.4760 +9229 221692 0.4030 +9230 9467 0.8070 +9230 9727 0.7200 +9230 10067 0.4980 +9230 22841 0.9890 +9230 22878 0.4200 +9230 23216 0.9020 +9230 23265 0.4560 +9230 23339 0.7620 +9230 23549 0.4820 +9230 26056 0.9610 +9230 27095 0.5830 +9230 27120 0.7220 +9230 50618 0.5390 +9230 51399 0.5880 +9230 51552 0.4790 +9230 51693 0.4680 +9230 54536 0.6210 +9230 54836 0.4140 +9230 55748 0.4450 +9230 55823 0.4970 +9230 55930 0.5960 +9230 57111 0.4690 +9230 57533 0.6610 +9230 58485 0.5990 +9230 58506 0.4200 +9230 79090 0.4240 +9230 80223 0.9900 +9230 80851 0.7350 +9230 81555 0.4010 +9230 81876 0.9160 +9230 84440 0.6550 +9230 84519 0.4770 +9230 117177 0.6050 +9230 118813 0.4390 +9230 120892 0.4040 +9230 122553 0.4300 +9230 126003 0.5710 +9230 285782 0.7930 +9230 100128327 0.5150 +9231 9644 0.4800 +9231 10174 0.9340 +9231 10392 0.6160 +9231 22994 0.5220 +9231 23288 0.5050 +9231 23432 0.4600 +9231 23513 0.9070 +9231 27289 0.5960 +9231 54106 0.4550 +9231 55054 0.4490 +9231 55704 0.4720 +9231 58480 0.5870 +9231 64127 0.8910 +9231 84445 0.5310 +9231 84455 0.4820 +9231 84612 0.4570 +9231 132884 0.5310 +9231 149233 0.4180 +9231 159296 0.6680 +9231 171177 0.5990 +9231 345611 0.4150 +9232 9319 0.6490 +9232 9371 0.4210 +9232 9493 0.6070 +9232 9700 0.9990 +9232 9735 0.5370 +9232 9768 0.8700 +9232 9787 0.9130 +9232 9833 0.8740 +9232 9918 0.5830 +9232 9928 0.4980 +9232 9985 0.6780 +9232 10024 0.6370 +9232 10051 0.5900 +9232 10112 0.9000 +9232 10142 0.4670 +9232 10318 0.5130 +9232 10393 0.9110 +9232 10403 0.8330 +9232 10434 0.5580 +9232 10460 0.4280 +9232 10535 0.4050 +9232 10615 0.8400 +9232 10635 0.6530 +9232 10733 0.6170 +9232 10735 0.5510 +9232 10744 0.9030 +9232 10776 0.4930 +9232 10797 0.4520 +9232 10926 0.4250 +9232 11004 0.8750 +9232 11065 0.9800 +9232 11130 0.7250 +9232 11200 0.4300 +9232 11339 0.5170 +9232 22974 0.9210 +9232 23063 0.4480 +9232 23397 0.7170 +9232 23594 0.6860 +9232 24137 0.7860 +9232 25847 0.7800 +9232 25906 0.7490 +9232 26271 0.7390 +9232 26586 0.4130 +9232 27338 0.8440 +9232 29089 0.8540 +9232 29127 0.8220 +9232 29128 0.6290 +9232 29882 0.8510 +9232 29945 0.7350 +9232 51053 0.5320 +9232 51203 0.9060 +9232 51343 0.9900 +9232 51433 0.8000 +9232 51434 0.6650 +9232 51512 0.4420 +9232 51514 0.5080 +9232 51529 0.9200 +9232 51659 0.5530 +9232 51752 0.4260 +9232 54443 0.5790 +9232 54478 0.5160 +9232 54892 0.4120 +9232 54982 0.5100 +9232 55055 0.5480 +9232 55143 0.8930 +9232 55165 0.8920 +9232 55215 0.4940 +9232 55355 0.7080 +9232 55388 0.4560 +9232 55635 0.5650 +9232 55723 0.6360 +9232 55839 0.6020 +9232 55844 0.6880 +9232 56992 0.7460 +9232 57082 0.5880 +9232 57405 0.5970 +9232 64105 0.5470 +9232 64151 0.8040 +9232 64682 0.7600 +9232 64946 0.4200 +9232 79004 0.4310 +9232 79019 0.6700 +9232 79682 0.5040 +9232 79733 0.4060 +9232 79801 0.5020 +9232 79935 0.4930 +9232 79980 0.4230 +9232 81610 0.4940 +9232 81620 0.5960 +9232 81669 0.6000 +9232 81930 0.5780 +9232 83461 0.8380 +9232 83540 0.8100 +9232 84057 0.5300 +9232 84101 0.5330 +9232 84648 0.4080 +9232 84823 0.5660 +9232 84930 0.6730 +9232 85417 0.5540 +9232 90417 0.4300 +9232 113130 0.8290 +9232 119504 0.6740 +9232 131544 0.4090 +9232 146909 0.4180 +9232 147841 0.4880 +9232 150468 0.5130 +9232 151246 0.6750 +9232 151648 0.8770 +9232 157313 0.5550 +9232 157570 0.5230 +9232 166979 0.6700 +9232 203068 0.4280 +9232 220134 0.5500 +9232 221150 0.5570 +9232 246184 0.7760 +9232 259266 0.8660 +9232 286151 0.4870 +9232 387103 0.7480 +9232 440093 0.4300 +9232 440686 0.4470 +9232 653604 0.4470 +9232 653820 0.4040 +9232 729533 0.4030 +9235 10294 0.6450 +9235 10563 0.4870 +9235 10663 0.4740 +9235 11009 0.4950 +9235 29949 0.4480 +9235 50615 0.5060 +9235 50616 0.6290 +9235 55801 0.4800 +9235 64127 0.5700 +9235 85480 0.4160 +9235 90865 0.4340 +9235 146433 0.5070 +9235 282618 0.4240 +9236 9474 0.4080 +9236 9776 0.4470 +9236 9821 0.9990 +9236 10133 0.5540 +9236 10241 0.6180 +9236 10313 0.7940 +9236 10871 0.6230 +9236 11337 0.9150 +9236 11345 0.7510 +9236 23710 0.7520 +9236 25923 0.8210 +9236 26747 0.4140 +9236 51267 0.4260 +9236 51368 0.8150 +9236 54463 0.8190 +9236 55014 0.4410 +9236 55062 0.4120 +9236 57658 0.6380 +9236 60509 0.4350 +9236 60673 0.5860 +9236 64225 0.4100 +9236 79137 0.4610 +9236 79750 0.4040 +9236 79841 0.4460 +9236 80237 0.4030 +9236 81631 0.5370 +9236 84871 0.5060 +9236 139341 0.4280 +9236 161582 0.6760 +9236 162427 0.5380 +9236 340351 0.5090 +9236 400668 0.4260 +9236 440738 0.4070 +9238 9692 0.4210 +9238 9928 0.4060 +9238 10053 0.4990 +9238 10128 0.4040 +9238 10268 0.5460 +9238 10294 0.5160 +9238 10445 0.5440 +9238 10452 0.5500 +9238 10469 0.4050 +9238 10534 0.4090 +9238 10717 0.4850 +9238 10827 0.5940 +9238 10922 0.5020 +9238 22868 0.5270 +9238 22907 0.6350 +9238 23203 0.6580 +9238 23276 0.5810 +9238 23431 0.4580 +9238 25980 0.5300 +9238 26155 0.5560 +9238 26284 0.4210 +9238 27076 0.4160 +9238 29960 0.4170 +9238 51116 0.4070 +9238 54606 0.7560 +9238 55178 0.4390 +9238 55621 0.4250 +9238 55745 0.4460 +9238 60493 0.6730 +9238 60528 0.6150 +9238 65083 0.4560 +9238 79675 0.4220 +9238 80308 0.4820 +9238 80347 0.4480 +9238 81554 0.5490 +9238 84179 0.5890 +9238 87178 0.6210 +9238 93210 0.5460 +9238 93436 0.4450 +9238 112476 0.4280 +9238 153443 0.4410 +9238 221421 0.4900 +9238 285367 0.4130 +9238 114515518 0.5610 +9240 10397 0.4180 +9240 10687 0.4800 +9240 23623 0.6170 +9240 26999 0.4240 +9240 30850 0.4280 +9240 54840 0.4520 +9240 55228 0.7980 +9240 56242 0.5290 +9240 57697 0.5320 +9240 64112 0.7970 +9240 79696 0.4310 +9240 79723 0.5970 +9240 79876 0.4510 +9240 84080 0.4300 +9240 84107 0.4760 +9240 84247 0.4620 +9240 84968 0.7430 +9240 85440 0.4510 +9240 85865 0.4240 +9240 92737 0.4650 +9240 140458 0.4820 +9240 170261 0.8160 +9240 222658 0.5160 +9240 345651 0.4030 +9241 9314 0.4610 +9241 9325 0.4200 +9241 9451 0.4080 +9241 9496 0.4590 +9241 9682 0.5440 +9241 10215 0.4540 +9241 10468 0.7740 +9241 10562 0.5300 +9241 10763 0.5860 +9241 10913 0.4030 +9241 22943 0.6400 +9241 23213 0.5100 +9241 25805 0.4840 +9241 26281 0.5400 +9241 26585 0.8020 +9241 27006 0.5970 +9241 28514 0.4400 +9241 50674 0.4390 +9241 50964 0.8220 +9241 51176 0.6700 +9241 54790 0.4510 +9241 55245 0.4240 +9241 55366 0.4360 +9241 55722 0.4650 +9241 56033 0.6230 +9241 57045 0.4020 +9241 63973 0.4080 +9241 64321 0.5720 +9241 64388 0.6740 +9241 78992 0.4890 +9241 79923 0.6400 +9241 80853 0.4970 +9241 83539 0.4290 +9241 84504 0.4360 +9241 84870 0.5910 +9241 89780 0.8760 +9241 91851 0.4930 +9241 121340 0.5270 +9241 151449 0.9490 +9241 168667 0.5600 +9241 284654 0.9250 +9241 285704 0.5690 +9241 353500 0.9130 +9241 375567 0.5910 +9241 392255 0.9730 +9241 644168 0.4240 +9242 10664 0.5140 +9242 22933 0.6350 +9242 22977 0.7450 +9242 23411 0.5710 +9242 54584 0.4970 +9242 55502 0.8170 +9242 166793 0.4820 +9244 9466 0.4230 +9244 23529 0.9990 +9244 25789 0.4340 +9244 55049 0.8290 +9244 79006 0.4580 +9244 84839 0.4050 +9244 246778 0.9820 +9245 9334 0.4520 +9245 10071 0.5500 +9245 10317 0.5710 +9245 10331 0.5850 +9245 10610 0.4020 +9245 10678 0.4220 +9245 10690 0.4100 +9245 11226 0.4660 +9245 11227 0.4130 +9245 25803 0.4310 +9245 27090 0.5540 +9245 29071 0.9560 +9245 51146 0.5330 +9245 51301 0.9110 +9245 55808 0.6200 +9245 56667 0.6580 +9245 56913 0.9710 +9245 79695 0.5230 +9245 93010 0.4410 +9245 94025 0.5350 +9245 117248 0.4180 +9245 140453 0.5710 +9245 143662 0.5710 +9245 192134 0.9680 +9245 200958 0.6190 +9245 283358 0.4120 +9245 394263 0.4890 +9245 727897 0.6000 +9245 728819 0.9020 +9246 9320 0.4890 +9246 9354 0.4240 +9246 9470 0.6350 +9246 9529 0.5080 +9246 9627 0.6290 +9246 9636 0.9940 +9246 9781 0.4420 +9246 9810 0.5680 +9246 9978 0.5880 +9246 10346 0.6670 +9246 10379 0.6700 +9246 10384 0.6680 +9246 10410 0.4510 +9246 10425 0.8480 +9246 10533 0.6400 +9246 10537 0.5290 +9246 10561 0.6240 +9246 10581 0.4350 +9246 10616 0.6450 +9246 10656 0.4050 +9246 10906 0.4840 +9246 10935 0.4860 +9246 10964 0.6320 +9246 11060 0.4200 +9246 11118 0.5480 +9246 11201 0.5410 +9246 11274 0.8790 +9246 23208 0.4300 +9246 23327 0.6640 +9246 23586 0.9040 +9246 24138 0.5840 +9246 25820 0.9670 +9246 25897 0.7610 +9246 26268 0.4330 +9246 26270 0.4240 +9246 51056 0.5310 +9246 51131 0.4180 +9246 51191 0.9770 +9246 51426 0.5410 +9246 51455 0.5410 +9246 54476 0.4330 +9246 54625 0.6070 +9246 54739 0.6570 +9246 54809 0.4820 +9246 54941 0.8540 +9246 54963 0.5940 +9246 55008 0.8680 +9246 55072 0.4400 +9246 55236 0.8350 +9246 55337 0.5680 +9246 55601 0.6010 +9246 55905 0.4170 +9246 56254 0.5980 +9246 56852 0.4410 +9246 57506 0.4890 +9246 57674 0.7310 +9246 64108 0.6370 +9246 64135 0.8630 +9246 64761 0.4320 +9246 79132 0.6500 +9246 79876 0.6630 +9246 80830 0.4440 +9246 83666 0.6960 +9246 84231 0.4690 +9246 85363 0.4690 +9246 91543 0.6690 +9246 94240 0.5310 +9246 115361 0.6340 +9246 115362 0.4970 +9246 118424 0.4010 +9246 127544 0.7330 +9246 129607 0.4900 +9246 135892 0.5070 +9246 151636 0.6530 +9246 219285 0.5950 +9246 255488 0.5230 +9246 387082 0.4340 +9246 387522 0.6170 +9247 9935 0.6120 +9247 56302 0.4680 +9247 63901 0.4180 +9247 79577 0.6590 +9247 86614 0.7860 +9247 344167 0.6260 +9248 10524 0.4970 +9248 23066 0.4380 +9248 27239 0.4160 +9248 30062 0.4280 +9248 54112 0.4460 +9248 64111 0.4620 +9248 118442 0.4980 +9248 121391 0.4420 +9248 347148 0.5410 +9249 10170 0.9510 +9249 10202 0.4080 +9249 10901 0.9340 +9249 51109 0.7290 +9249 53630 0.9380 +9249 54884 0.9360 +9249 54995 0.4740 +9249 56603 0.6520 +9249 57665 0.6560 +9249 64220 0.6240 +9249 84129 0.4830 +9249 112812 0.4630 +9249 114826 0.4140 +9249 145226 0.5830 +9249 157506 0.7850 +9249 158835 0.9040 +9249 339761 0.9240 +9249 340665 0.5720 +9252 9373 0.4490 +9252 9586 0.9070 +9252 9682 0.4670 +9252 10488 0.9010 +9252 10943 0.4910 +9252 11335 0.9360 +9252 27330 0.4460 +9252 53407 0.4030 +9252 55167 0.4050 +9252 60561 0.5570 +9252 64764 0.9000 +9252 84699 0.9000 +9252 90993 0.9000 +9252 148327 0.9000 +9252 339287 0.4550 +9252 440093 0.9590 +9252 440686 0.6140 +9252 653604 0.9590 +9253 9342 0.4770 +9253 9610 0.4580 +9253 9794 0.5060 +9253 10000 0.4830 +9253 10158 0.5660 +9253 10180 0.4540 +9253 10181 0.4660 +9253 10307 0.4530 +9253 10683 0.5040 +9253 22841 0.4480 +9253 22848 0.6560 +9253 22905 0.6070 +9253 23118 0.8240 +9253 23301 0.5470 +9253 23321 0.4100 +9253 23327 0.6160 +9253 23385 0.5710 +9253 23462 0.5620 +9253 23493 0.4460 +9253 23513 0.6120 +9253 23550 0.4290 +9253 23677 0.7250 +9253 26524 0.5840 +9253 27085 0.4580 +9253 28514 0.5830 +9253 28996 0.4170 +9253 29881 0.5910 +9253 29924 0.5110 +9253 30844 0.6510 +9253 50618 0.6950 +9253 50855 0.4480 +9253 51593 0.4470 +9253 54567 0.5230 +9253 54715 0.4440 +9253 55040 0.5940 +9253 55294 0.6190 +9253 55534 0.5010 +9253 56288 0.7380 +9253 58513 0.9250 +9253 64145 0.5620 +9253 64746 0.6400 +9253 79934 0.4750 +9253 83737 0.8150 +9253 84441 0.5050 +9253 84708 0.9920 +9253 85439 0.5790 +9253 90527 0.6420 +9253 90864 0.4870 +9253 124540 0.9450 +9253 131450 0.5100 +9253 146713 0.4370 +9253 222484 0.8800 +9253 222643 0.5940 +9253 284697 0.4200 +9253 387755 0.4990 +9253 388585 0.5140 +9253 405753 0.4680 +9254 10021 0.4010 +9254 10125 0.6760 +9254 10235 0.6700 +9254 10368 0.6700 +9254 10369 0.8240 +9254 10641 0.5130 +9254 10681 0.5190 +9254 11068 0.5870 +9254 11070 0.5330 +9254 11280 0.4120 +9254 25780 0.6500 +9254 25858 0.5400 +9254 27092 0.8370 +9254 27244 0.8280 +9254 28227 0.6500 +9254 29100 0.4270 +9254 51364 0.5870 +9254 51764 0.5650 +9254 54331 0.5250 +9254 55012 0.6580 +9254 55336 0.4240 +9254 55799 0.7790 +9254 55844 0.6500 +9254 55970 0.5140 +9254 57685 0.6220 +9254 57828 0.5400 +9254 59283 0.7460 +9254 59284 0.8370 +9254 59285 0.6240 +9254 59345 0.5080 +9254 79152 0.4040 +9254 79820 0.5940 +9254 83667 0.6700 +9254 93589 0.6610 +9254 94235 0.5500 +9254 115727 0.6500 +9254 117144 0.6140 +9254 117155 0.6920 +9254 143686 0.8440 +9254 246329 0.5500 +9254 257044 0.5800 +9254 257062 0.5650 +9254 285588 0.5580 +9254 340393 0.5400 +9254 347732 0.6770 +9254 378807 0.5850 +9254 440163 0.4200 +9254 100130348 0.5400 +9255 9521 0.9990 +9255 9553 0.5000 +9255 9669 0.4150 +9255 9775 0.4350 +9255 9933 0.4960 +9255 10056 0.5970 +9255 10133 0.4250 +9255 10213 0.5050 +9255 10352 0.8510 +9255 10399 0.4070 +9255 10412 0.4650 +9255 10471 0.4420 +9255 10480 0.5000 +9255 10575 0.5780 +9255 10576 0.4630 +9255 10667 0.4690 +9255 10694 0.4800 +9255 10856 0.4060 +9255 10969 0.4060 +9255 10987 0.4630 +9255 11128 0.4340 +9255 11260 0.6770 +9255 22948 0.4430 +9255 23395 0.8200 +9255 23438 0.6540 +9255 23521 0.4270 +9255 25917 0.4420 +9255 25973 0.6430 +9255 27309 0.4490 +9255 29789 0.6110 +9255 51067 0.7720 +9255 51095 0.4080 +9255 51386 0.4700 +9255 51389 0.4600 +9255 51520 0.9970 +9255 51575 0.4460 +9255 51637 0.4210 +9255 53918 0.4330 +9255 54938 0.5280 +9255 55157 0.5620 +9255 55246 0.4750 +9255 55699 0.7330 +9255 55703 0.4800 +9255 55854 0.4200 +9255 57019 0.4840 +9255 57038 0.9080 +9255 57165 0.7250 +9255 57176 0.6350 +9255 57470 0.5210 +9255 57505 0.6120 +9255 64750 0.4120 +9255 65008 0.7200 +9255 65992 0.4690 +9255 79587 0.5690 +9255 79731 0.6720 +9255 80135 0.5000 +9255 80222 0.5550 +9255 83939 0.4480 +9255 84340 0.4710 +9255 84464 0.4680 +9255 84668 0.8440 +9255 84896 0.4740 +9255 92935 0.8850 +9255 116832 0.4760 +9255 123283 0.8990 +9255 124454 0.7490 +9255 219927 0.4920 +9256 9479 0.4650 +9256 9699 0.9700 +9256 10497 0.9380 +9256 10815 0.5440 +9256 22999 0.9770 +9256 23085 0.4900 +9256 23504 0.4980 +9256 23542 0.5170 +9256 51744 0.6050 +9256 55327 0.5670 +9256 57030 0.5070 +9256 64130 0.5860 +9256 64746 0.7130 +9256 79746 0.4180 +9256 115827 0.8090 +9256 643338 0.4130 +9258 9867 0.7380 +9258 10424 0.4260 +9258 10494 0.5240 +9258 11127 0.4290 +9258 22859 0.5220 +9258 23266 0.5220 +9258 23284 0.5220 +9258 55857 0.4430 +9258 79660 0.9290 +9258 79858 0.4370 +9258 90459 0.4080 +9258 137075 0.9700 +9258 157922 0.6220 +9258 286046 0.4600 +9258 441317 0.5060 +9260 9457 0.4560 +9260 9496 0.7000 +9260 9531 0.5730 +9260 9759 0.4290 +9260 10611 0.8100 +9260 10627 0.4630 +9260 10655 0.4290 +9260 10771 0.6220 +9260 10787 0.5930 +9260 11060 0.7860 +9260 11155 0.5920 +9260 23208 0.4220 +9260 23301 0.6120 +9260 23384 0.6240 +9260 23607 0.5440 +9260 27295 0.6430 +9260 29964 0.5910 +9260 51513 0.5010 +9260 53904 0.5450 +9260 54205 0.4120 +9260 55072 0.4290 +9260 55106 0.4470 +9260 55604 0.5400 +9260 56940 0.5590 +9260 57154 0.8740 +9260 64096 0.4990 +9260 64236 0.7590 +9260 64866 0.4340 +9260 79177 0.5820 +9260 83660 0.4810 +9260 83700 0.5520 +9260 83715 0.5470 +9260 84700 0.4440 +9260 92521 0.5810 +9260 219537 0.5760 +9260 254102 0.6560 +9260 342527 0.5690 +9261 9532 0.5820 +9261 10092 0.4020 +9261 10376 0.4220 +9261 10454 0.5280 +9261 10949 0.6350 +9261 11035 0.4810 +9261 22955 0.5130 +9261 23466 0.5000 +9261 26986 0.4060 +9261 29110 0.4060 +9261 51135 0.4390 +9261 54145 0.5090 +9261 55766 0.5390 +9261 57162 0.4250 +9261 57332 0.5290 +9261 80012 0.5070 +9261 84733 0.4990 +9261 85236 0.5080 +9261 92241 0.7740 +9261 94239 0.5000 +9261 115727 0.4090 +9261 128312 0.5100 +9261 225689 0.5200 +9261 246330 0.5720 +9261 255626 0.5090 +9261 474382 0.4990 +9261 653604 0.5830 +9262 11261 0.6200 +9262 23683 0.4570 +9262 25865 0.4560 +9262 30819 0.4960 +9262 57520 0.4620 +9262 79156 0.4270 +9262 79781 0.4040 +9262 83608 0.4130 +9262 115557 0.5650 +9263 79020 0.4110 +9263 79156 0.5890 +9263 81578 0.4770 +9265 9266 0.5140 +9265 9267 0.8010 +9265 9463 0.4220 +9265 9595 0.9050 +9265 9815 0.4290 +9265 9863 0.4320 +9265 9922 0.5060 +9265 9970 0.4260 +9265 10124 0.7210 +9265 10256 0.8170 +9265 10399 0.5930 +9265 23150 0.8720 +9265 25780 0.6840 +9265 25804 0.4160 +9265 26034 0.8120 +9265 26499 0.8340 +9265 27128 0.5160 +9265 50807 0.4340 +9265 51751 0.4360 +9265 51806 0.4540 +9265 55691 0.6810 +9265 55765 0.7470 +9265 58512 0.6420 +9265 64083 0.4430 +9265 65977 0.4830 +9265 90060 0.7320 +9265 91860 0.4540 +9265 160622 0.8760 +9265 163688 0.4540 +9265 100310846 0.4280 +9266 9267 0.8960 +9266 9595 0.7170 +9266 9844 0.5520 +9266 9863 0.4360 +9266 10123 0.6310 +9266 10124 0.8590 +9266 10256 0.6830 +9266 10399 0.5200 +9266 10928 0.4870 +9266 23150 0.6450 +9266 23163 0.6820 +9266 23545 0.5450 +9266 26034 0.8760 +9266 26499 0.7400 +9266 27128 0.5180 +9266 51363 0.4180 +9266 54550 0.4040 +9266 55691 0.6830 +9266 55765 0.8470 +9266 58512 0.6420 +9266 64083 0.4240 +9266 64397 0.4310 +9266 83874 0.4830 +9266 84173 0.4020 +9266 90060 0.8840 +9266 154043 0.6500 +9266 160622 0.9820 +9267 9595 0.9880 +9267 10124 0.6160 +9267 10139 0.5270 +9267 10256 0.6750 +9267 10399 0.6170 +9267 23062 0.4150 +9267 23150 0.8900 +9267 23163 0.5870 +9267 23327 0.4530 +9267 23421 0.4440 +9267 26034 0.8480 +9267 26088 0.4430 +9267 26499 0.9190 +9267 27128 0.5600 +9267 51363 0.5880 +9267 54847 0.4010 +9267 55691 0.9190 +9267 55765 0.8270 +9267 64083 0.4060 +9267 81609 0.6830 +9267 90060 0.6510 +9267 146713 0.5890 +9267 160622 0.6580 +9267 100529144 0.4290 +9270 9475 0.5860 +9270 9784 0.5370 +9270 10494 0.5970 +9270 11214 0.5430 +9270 11235 0.9200 +9270 23421 0.4280 +9270 29094 0.4230 +9270 57154 0.6550 +9270 57493 0.5070 +9270 59274 0.6290 +9270 81858 0.4770 +9270 83605 0.9910 +9270 83660 0.6180 +9270 85457 0.4390 +9270 140706 0.4770 +9271 9869 0.5050 +9271 9927 0.4560 +9271 9936 0.5070 +9271 10389 0.4200 +9271 10419 0.6750 +9271 10914 0.4160 +9271 10919 0.6300 +9271 10963 0.4780 +9271 11022 0.9890 +9271 11091 0.8770 +9271 11218 0.4370 +9271 11335 0.5190 +9271 23028 0.4890 +9271 23405 0.9570 +9271 23424 0.8400 +9271 23626 0.4890 +9271 25909 0.4520 +9271 26013 0.6900 +9271 26523 0.4690 +9271 26986 0.4510 +9271 27044 0.9590 +9271 27161 0.4600 +9271 27327 0.9550 +9271 29102 0.8460 +9271 29107 0.6360 +9271 29118 0.4900 +9271 29883 0.4660 +9271 29947 0.5450 +9271 50511 0.4830 +9271 51087 0.4170 +9271 51398 0.4850 +9271 51435 0.4950 +9271 54456 0.9000 +9271 54464 0.4790 +9271 54487 0.6540 +9271 54514 0.6690 +9271 54847 0.4670 +9271 54932 0.4160 +9271 55051 0.4770 +9271 55802 0.6320 +9271 56001 0.6160 +9271 56052 0.5130 +9271 56163 0.8270 +9271 56164 0.7700 +9271 56165 0.9700 +9271 56903 0.4510 +9271 57167 0.4180 +9271 57510 0.6360 +9271 57576 0.7420 +9271 64506 0.4080 +9271 64895 0.4090 +9271 66037 0.4820 +9271 79727 0.4830 +9271 84944 0.8060 +9271 90459 0.4130 +9271 91646 0.5680 +9271 113802 0.8940 +9271 117178 0.4090 +9271 121355 0.8950 +9271 122402 0.9270 +9271 125061 0.4410 +9271 136991 0.5540 +9271 143471 0.4550 +9271 143689 0.8490 +9271 154197 0.5320 +9271 161829 0.6340 +9271 163589 0.9000 +9271 192669 0.4620 +9271 192670 0.4390 +9271 201164 0.7910 +9271 221400 0.9920 +9271 339345 0.6040 +9271 340719 0.6010 +9271 342977 0.6310 +9271 346673 0.4550 +9271 373863 0.4960 +9271 387332 0.4590 +9271 440093 0.5480 +9271 440686 0.5460 +9271 440822 0.4480 +9271 653604 0.5470 +9271 728343 0.6140 +9271 100129278 0.7390 +9274 9275 0.9910 +9274 9437 0.7200 +9274 9749 0.5860 +9274 9991 0.4850 +9274 10486 0.6230 +9274 10487 0.6660 +9274 11344 0.6750 +9274 23506 0.9880 +9274 26039 0.8840 +9274 29117 0.9260 +9274 29998 0.9840 +9274 51412 0.9250 +9274 53335 0.9340 +9274 55193 0.9600 +9274 55274 0.9390 +9274 57492 0.9910 +9274 64919 0.9280 +9274 65980 0.9920 +9274 79876 0.4090 +9274 90639 0.4760 +9274 196528 0.9680 +9274 200014 0.4020 +9275 9289 0.5800 +9275 9437 0.7200 +9275 9569 0.7370 +9275 10762 0.6000 +9275 23506 0.9650 +9275 26039 0.8000 +9275 26608 0.9310 +9275 29117 0.4860 +9275 29998 0.9610 +9275 51085 0.7140 +9275 51412 0.8530 +9275 53335 0.9310 +9275 55193 0.8160 +9275 55274 0.7590 +9275 55695 0.6670 +9275 57492 0.9840 +9275 60681 0.6200 +9275 64919 0.9400 +9275 65980 0.9710 +9275 84163 0.5520 +9275 84277 0.4110 +9275 135892 0.7250 +9275 155368 0.5110 +9275 196528 0.8250 +9275 389524 0.5380 +9276 9322 0.4210 +9276 9382 0.4680 +9276 9527 0.6290 +9276 9554 0.7860 +9276 9570 0.7310 +9276 9601 0.5140 +9276 9632 0.5100 +9276 9871 0.4860 +9276 9919 0.4820 +9276 9928 0.4330 +9276 9950 0.4590 +9276 10075 0.4170 +9276 10113 0.4030 +9276 10130 0.4290 +9276 10213 0.4470 +9276 10282 0.7560 +9276 10342 0.4030 +9276 10383 0.5900 +9276 10399 0.4190 +9276 10427 0.5810 +9276 10483 0.6220 +9276 10484 0.5250 +9276 10618 0.4380 +9276 10652 0.6430 +9276 10802 0.4730 +9276 10945 0.7230 +9276 10959 0.6750 +9276 10971 0.4500 +9276 10972 0.9320 +9276 11014 0.7170 +9276 11015 0.6680 +9276 11079 0.5960 +9276 11196 0.6160 +9276 11316 0.9990 +9276 22818 0.9990 +9276 22820 0.9990 +9276 22872 0.6370 +9276 23141 0.4350 +9276 23256 0.6910 +9276 23306 0.4170 +9276 23423 0.7450 +9276 25956 0.5030 +9276 26088 0.4840 +9276 26286 0.9380 +9276 26958 0.9990 +9276 28972 0.4350 +9276 51014 0.9110 +9276 51128 0.4320 +9276 51226 0.9920 +9276 51272 0.6140 +9276 51594 0.7340 +9276 53407 0.6920 +9276 54732 0.7090 +9276 55204 0.4110 +9276 55262 0.4920 +9276 55738 0.7100 +9276 55850 0.5060 +9276 56945 0.8080 +9276 57410 0.9480 +9276 60561 0.7630 +9276 63908 0.5150 +9276 64083 0.7480 +9276 79170 0.7180 +9276 80267 0.5060 +9276 81876 0.6410 +9276 84364 0.9500 +9276 85440 0.4730 +9276 92344 0.4640 +9276 114960 0.8030 +9276 205428 0.9000 +9276 222171 0.4020 +9276 440026 0.4140 +9276 440138 0.4270 +9276 728378 0.4250 +9277 9533 0.4970 +9277 9704 0.5000 +9277 9724 0.9860 +9277 9732 0.5080 +9277 9790 0.9990 +9277 9875 0.5520 +9277 9904 0.8880 +9277 9933 0.9480 +9277 10153 0.9480 +9277 10171 0.9970 +9277 10199 0.9990 +9277 10200 0.4720 +9277 10412 0.4090 +9277 10436 0.9980 +9277 10438 0.7490 +9277 10471 0.8240 +9277 10514 0.9010 +9277 10528 0.9990 +9277 10557 0.8350 +9277 10607 0.9990 +9277 10785 0.5630 +9277 10813 0.9990 +9277 10849 0.5440 +9277 10856 0.4030 +9277 10885 0.9990 +9277 10969 0.9280 +9277 11056 0.9710 +9277 11103 0.9990 +9277 11128 0.4740 +9277 11137 0.7260 +9277 11340 0.8470 +9277 22803 0.5090 +9277 22894 0.5400 +9277 22907 0.4620 +9277 22984 0.9990 +9277 23016 0.8340 +9277 23029 0.7160 +9277 23054 0.8010 +9277 23076 0.7540 +9277 23160 0.9990 +9277 23204 0.6350 +9277 23212 0.8800 +9277 23223 0.8980 +9277 23246 0.9690 +9277 23378 0.8390 +9277 23404 0.7940 +9277 23481 0.9230 +9277 23517 0.9000 +9277 23560 0.7970 +9277 24140 0.4410 +9277 25879 0.9990 +9277 25885 0.7260 +9277 25926 0.9670 +9277 25983 0.9990 +9277 26155 0.9650 +9277 26156 0.9860 +9277 26168 0.5590 +9277 26354 0.7470 +9277 26574 0.9980 +9277 27037 0.5530 +9277 27042 0.9360 +9277 27043 0.5610 +9277 27292 0.9590 +9277 27340 0.9990 +9277 27341 0.9990 +9277 28987 0.8730 +9277 29777 0.4400 +9277 29889 0.9140 +9277 29960 0.4510 +9277 29997 0.7390 +9277 30834 0.5150 +9277 30836 0.9970 +9277 51010 0.7810 +9277 51013 0.8250 +9277 51018 0.8710 +9277 51042 0.7850 +9277 51065 0.8630 +9277 51068 0.6160 +9277 51073 0.6950 +9277 51077 0.9990 +9277 51081 0.6880 +9277 51096 0.9990 +9277 51106 0.5170 +9277 51118 0.9990 +9277 51149 0.7620 +9277 51154 0.9680 +9277 51187 0.7280 +9277 51202 0.9740 +9277 51319 0.5130 +9277 51340 0.4640 +9277 51388 0.8400 +9277 51406 0.8070 +9277 51490 0.7360 +9277 51491 0.4750 +9277 51538 0.4500 +9277 51575 0.8790 +9277 51602 0.9980 +9277 51605 0.5250 +9277 51645 0.4410 +9277 54433 0.4470 +9277 54475 0.7730 +9277 54512 0.7930 +9277 54517 0.4340 +9277 54552 0.7150 +9277 54555 0.9620 +9277 54606 0.9680 +9277 54663 0.7030 +9277 54680 0.4270 +9277 54853 0.5880 +9277 54865 0.9070 +9277 54881 0.6530 +9277 54888 0.6130 +9277 54984 0.9760 +9277 55003 0.6470 +9277 55006 0.4120 +9277 55127 0.9990 +9277 55131 0.9640 +9277 55140 0.4250 +9277 55153 0.8810 +9277 55226 0.9990 +9277 55272 0.9980 +9277 55299 0.8670 +9277 55319 0.4090 +9277 55341 0.6700 +9277 55505 0.4240 +9277 55621 0.6480 +9277 55622 0.6810 +9277 55646 0.6610 +9277 55651 0.6820 +9277 55703 0.7980 +9277 55720 0.9070 +9277 55759 0.9210 +9277 55760 0.6140 +9277 55781 0.4310 +9277 55794 0.7100 +9277 55813 0.9990 +9277 56342 0.8370 +9277 56902 0.9710 +9277 56915 0.7770 +9277 56919 0.5200 +9277 57050 0.9990 +9277 57062 0.7310 +9277 57109 0.7290 +9277 57418 0.8450 +9277 57647 0.9850 +9277 57696 0.6760 +9277 58496 0.5720 +9277 60487 0.5860 +9277 60625 0.4890 +9277 64118 0.6130 +9277 64216 0.7060 +9277 64318 0.8600 +9277 64425 0.7410 +9277 64434 0.7070 +9277 64794 0.8120 +9277 64848 0.4440 +9277 64960 0.6310 +9277 64963 0.6400 +9277 65083 0.9990 +9277 65095 0.7810 +9277 79039 0.8700 +9277 79050 0.9990 +9277 79159 0.6110 +9277 79571 0.8040 +9277 79665 0.4530 +9277 79707 0.5960 +9277 79711 0.5180 +9277 79954 0.9990 +9277 79979 0.5160 +9277 80135 0.6920 +9277 80324 0.5240 +9277 81627 0.5890 +9277 81887 0.6700 +9277 83448 0.4080 +9277 83479 0.5180 +9277 83480 0.4430 +9277 83732 0.5550 +9277 83743 0.9200 +9277 84128 0.9990 +9277 84135 0.9990 +9277 84154 0.8770 +9277 84172 0.8300 +9277 84294 0.9060 +9277 84365 0.6630 +9277 84549 0.6770 +9277 84916 0.9990 +9277 84946 0.8440 +9277 85441 0.5190 +9277 88745 0.7450 +9277 90121 0.6310 +9277 90381 0.6140 +9277 91582 0.8600 +9277 92345 0.5720 +9277 92856 0.9980 +9277 115708 0.6320 +9277 115752 0.5120 +9277 116966 0.5960 +9277 117246 0.9520 +9277 118460 0.6700 +9277 126402 0.6550 +9277 128061 0.8000 +9277 129563 0.5230 +9277 140032 0.6410 +9277 142940 0.6140 +9277 146212 0.4050 +9277 153443 0.5690 +9277 161424 0.7180 +9277 165545 0.6170 +9277 170506 0.4800 +9277 221078 0.8350 +9277 221830 0.7070 +9277 283106 0.5720 +9277 285855 0.4280 +9277 317781 0.5180 +9277 345630 0.9720 +9277 387129 0.4760 +9277 440026 0.7680 +9277 641776 0.4530 +9277 643909 0.4530 +9277 692312 0.7400 +9277 728524 0.4530 +9277 100996746 0.4530 +9277 105180390 0.4530 +9277 105180391 0.4530 +9278 23037 0.4170 +9278 23276 0.4320 +9278 23710 0.5240 +9282 9370 0.5090 +9282 9412 0.9990 +9282 9439 0.9990 +9282 9440 0.9990 +9282 9441 0.9990 +9282 9442 0.9990 +9282 9443 0.9990 +9282 9444 0.9940 +9282 9477 0.9990 +9282 9519 0.5800 +9282 9533 0.8570 +9282 9611 0.7450 +9282 9612 0.5750 +9282 9623 0.6250 +9282 9640 0.4040 +9282 9647 0.4150 +9282 9648 0.4680 +9282 9696 0.5570 +9282 9774 0.6270 +9282 9862 0.9990 +9282 9898 0.5190 +9282 9967 0.9420 +9282 9968 0.9990 +9282 9969 0.9990 +9282 9970 0.7100 +9282 9991 0.4700 +9282 10001 0.9990 +9282 10025 0.9990 +9282 10084 0.5110 +9282 10202 0.4510 +9282 10277 0.5940 +9282 10454 0.4280 +9282 10499 0.6370 +9282 10526 0.4440 +9282 10856 0.4010 +9282 10891 0.6560 +9282 10901 0.4510 +9282 11036 0.5230 +9282 11083 0.4450 +9282 22828 0.6480 +9282 22843 0.4120 +9282 22870 0.6480 +9282 22901 0.5940 +9282 23019 0.4890 +9282 23049 0.4710 +9282 23091 0.9940 +9282 23092 0.5200 +9282 23097 0.9930 +9282 23133 0.4350 +9282 23213 0.4720 +9282 23271 0.4820 +9282 23303 0.4580 +9282 23389 0.9800 +9282 23476 0.8090 +9282 25975 0.4600 +9282 26043 0.6040 +9282 26063 0.4650 +9282 27327 0.5590 +9282 29079 0.9990 +9282 29102 0.5150 +9282 30834 0.5170 +9282 50640 0.6300 +9282 51003 0.9990 +9282 51092 0.5630 +9282 51129 0.4990 +9282 51171 0.4500 +9282 51366 0.5010 +9282 51535 0.6330 +9282 51586 0.9990 +9282 51728 0.5170 +9282 51750 0.4830 +9282 54439 0.4200 +9282 54468 0.5410 +9282 54797 0.9990 +9282 54847 0.5540 +9282 54960 0.4540 +9282 55066 0.4570 +9282 55090 0.9970 +9282 55294 0.5330 +9282 55588 0.9990 +9282 55703 0.7540 +9282 55825 0.4500 +9282 55833 0.5370 +9282 55959 0.4720 +9282 56474 0.5180 +9282 56898 0.4510 +9282 57121 0.5540 +9282 57148 0.4760 +9282 57466 0.4650 +9282 57634 0.4180 +9282 57680 0.4300 +9282 57720 0.4610 +9282 57786 0.4100 +9282 60558 0.4270 +9282 65125 0.5740 +9282 65266 0.5260 +9282 65267 0.5740 +9282 65268 0.5260 +9282 79577 0.4190 +9282 79642 0.5050 +9282 79991 0.9940 +9282 80306 0.9990 +9282 80774 0.4830 +9282 80895 0.4860 +9282 81488 0.4440 +9282 81857 0.9960 +9282 83860 0.8330 +9282 83990 0.4820 +9282 84172 0.7620 +9282 84246 0.9990 +9282 84263 0.4650 +9282 84498 0.5480 +9282 84955 0.6350 +9282 85441 0.5070 +9282 90390 0.9990 +9282 112950 0.9990 +9282 115817 0.4520 +9282 116931 0.8940 +9282 121504 0.8190 +9282 124817 0.5260 +9282 126961 0.8150 +9282 127428 0.5210 +9282 129685 0.8650 +9282 133522 0.9000 +9282 140453 0.4880 +9282 149483 0.5540 +9282 151649 0.4120 +9282 151742 0.4170 +9282 152926 0.4120 +9282 153642 0.4720 +9282 154865 0.4120 +9282 159013 0.5450 +9282 170082 0.7480 +9282 171017 0.4110 +9282 246721 0.8150 +9282 256309 0.4180 +9282 256643 0.6150 +9282 286749 0.4980 +9282 317749 0.4500 +9282 333932 0.8150 +9282 340075 0.5050 +9282 340602 0.5540 +9282 342371 0.4360 +9282 347527 0.6420 +9282 387332 0.6570 +9282 399949 0.5040 +9282 400569 0.9990 +9282 404672 0.8140 +9282 448834 0.5540 +9282 548644 0.8150 +9282 554313 0.8200 +9282 653604 0.8460 +9282 728340 0.5530 +9282 100134938 0.5800 +9282 107983993 0.5800 +9282 122455342 0.5540 +9283 10316 0.5200 +9283 10874 0.5720 +9283 29899 0.4360 +9283 51083 0.5140 +9283 56923 0.4990 +9283 57348 0.4450 +9283 84539 0.5200 +9283 89796 0.4690 +9283 129521 0.4990 +9283 220296 0.6130 +9283 256933 0.5240 +9283 283869 0.5070 +9284 23042 0.4540 +9284 23636 0.8860 +9284 27252 0.4330 +9284 55889 0.4220 +9284 79876 0.4750 +9287 9939 0.5410 +9287 81697 0.4440 +9287 83551 0.5330 +9287 134860 0.4950 +9287 134864 0.4610 +9287 319100 0.5020 +9287 390067 0.4530 +9289 9569 0.5450 +9289 10672 0.9780 +9289 26608 0.6360 +9289 51085 0.5470 +9289 51348 0.5000 +9289 51704 0.4700 +9289 53637 0.5140 +9289 54331 0.9430 +9289 55695 0.5800 +9289 57523 0.4520 +9289 59345 0.4400 +9289 60681 0.5480 +9289 63943 0.4040 +9289 83888 0.4420 +9289 84435 0.5880 +9289 84525 0.4660 +9289 93986 0.4110 +9289 135892 0.5490 +9289 166647 0.5140 +9289 221395 0.4370 +9289 284403 0.4340 +9289 284422 0.4390 +9289 347733 0.4180 +9290 10316 0.4440 +9290 10672 0.8670 +9290 11343 0.7760 +9290 23560 0.5300 +9290 26090 0.6760 +9290 27163 0.6600 +9290 27199 0.5040 +9290 51393 0.6870 +9290 51573 0.4970 +9290 56413 0.4080 +9290 56670 0.5310 +9290 57406 0.7170 +9290 59341 0.4920 +9290 63874 0.5450 +9290 63940 0.4410 +9290 79054 0.7470 +9290 80821 0.4230 +9290 126006 0.4100 +9290 139760 0.9220 +9290 158584 0.5540 +9290 162514 0.5310 +9290 221955 0.6210 +9290 222236 0.8010 +9290 266977 0.5190 +9290 338442 0.5570 +9293 10888 0.4200 +9293 10936 0.4270 +9293 27197 0.4890 +9293 27239 0.4560 +9293 54112 0.7420 +9293 54329 0.4490 +9293 54331 0.8160 +9293 57512 0.5480 +9293 81491 0.4940 +9293 83873 0.4800 +9293 118442 0.5230 +9293 124274 0.4610 +9293 128486 0.4200 +9293 148534 0.4100 +9293 285601 0.4850 +9293 353345 0.4080 +9293 374395 0.4440 +9294 9517 0.5140 +9294 9627 0.4620 +9294 9970 0.4370 +9294 9971 0.5810 +9294 10558 0.5120 +9294 10672 0.9990 +9294 23365 0.5860 +9294 23513 0.4570 +9294 25817 0.5050 +9294 29956 0.6060 +9294 53637 0.4730 +9294 54331 0.8160 +9294 55304 0.5140 +9294 55937 0.8520 +9294 56848 0.8900 +9294 57142 0.7210 +9294 57580 0.4420 +9294 64781 0.4490 +9294 81537 0.5730 +9294 91012 0.5670 +9294 124976 0.7950 +9294 126006 0.4050 +9294 130367 0.4800 +9294 146760 0.4870 +9294 151306 0.7560 +9294 253782 0.6140 +9294 286530 0.5390 +9294 349667 0.4500 +9294 388931 0.6910 +9295 9343 0.4930 +9295 9360 0.6110 +9295 9406 0.7780 +9295 9584 0.9820 +9295 9631 0.4130 +9295 9688 0.4100 +9295 9774 0.6530 +9295 9775 0.7340 +9295 9785 0.8110 +9295 9818 0.4800 +9295 9879 0.6630 +9295 9883 0.4080 +9295 9939 0.8210 +9295 9967 0.5720 +9295 9972 0.4420 +9295 9987 0.7890 +9295 10181 0.6680 +9295 10189 0.8580 +9295 10236 0.5160 +9295 10250 0.9840 +9295 10284 0.7170 +9295 10285 0.4460 +9295 10482 0.5860 +9295 10569 0.9140 +9295 10658 0.4640 +9295 10762 0.5270 +9295 10772 0.8830 +9295 10914 0.8400 +9295 10915 0.5360 +9295 10921 0.9820 +9295 10929 0.7720 +9295 10978 0.4990 +9295 10992 0.7290 +9295 11051 0.5830 +9295 11052 0.6830 +9295 11097 0.4650 +9295 11338 0.9200 +9295 22794 0.5320 +9295 22827 0.8920 +9295 22916 0.7210 +9295 22948 0.4170 +9295 22985 0.6490 +9295 23131 0.5600 +9295 23165 0.4130 +9295 23168 0.4060 +9295 23210 0.7390 +9295 23215 0.8320 +9295 23279 0.4130 +9295 23350 0.5820 +9295 23360 0.4790 +9295 23451 0.7240 +9295 23469 0.5230 +9295 23511 0.4080 +9295 23524 0.7240 +9295 23636 0.4910 +9295 24144 0.6640 +9295 25902 0.4060 +9295 25957 0.9450 +9295 26019 0.6570 +9295 27107 0.4570 +9295 27316 0.5310 +9295 27332 0.5070 +9295 29896 0.8090 +9295 51362 0.8560 +9295 51585 0.6370 +9295 51631 0.5570 +9295 51747 0.9150 +9295 53371 0.5630 +9295 55015 0.5570 +9295 55082 0.7820 +9295 55110 0.5960 +9295 55119 0.7580 +9295 55599 0.4110 +9295 55660 0.6920 +9295 55677 0.4210 +9295 55692 0.6050 +9295 55706 0.4050 +9295 55746 0.4380 +9295 55749 0.7200 +9295 55904 0.4280 +9295 57122 0.4690 +9295 57187 0.4300 +9295 57396 0.4260 +9295 58155 0.4290 +9295 58517 0.9670 +9295 65109 0.9110 +9295 65110 0.7250 +9295 65117 0.6780 +9295 79023 0.4160 +9295 79811 0.4250 +9295 79869 0.6470 +9295 79902 0.4480 +9295 81929 0.4100 +9295 84081 0.5380 +9295 84271 0.5560 +9295 84530 0.8480 +9295 91746 0.5660 +9295 92906 0.4780 +9295 124245 0.5270 +9295 129401 0.4350 +9295 135295 0.8210 +9295 140890 0.9330 +9295 143884 0.5280 +9295 196441 0.4900 +9295 199746 0.5390 +9295 220988 0.7170 +9295 222183 0.4840 +9295 254048 0.4140 +9295 348995 0.4190 +9295 100101267 0.4290 +9295 100996928 0.4230 +9296 9377 0.5390 +9296 9550 0.9990 +9296 9551 0.4150 +9296 9681 0.4990 +9296 9789 0.4310 +9296 10159 0.9960 +9296 10312 0.9950 +9296 10325 0.5010 +9296 10476 0.4530 +9296 10542 0.7550 +9296 10632 0.4260 +9296 10641 0.5040 +9296 10670 0.5130 +9296 10682 0.5840 +9296 10765 0.4770 +9296 10975 0.4480 +9296 11112 0.4370 +9296 11133 0.5230 +9296 23135 0.5190 +9296 23312 0.6200 +9296 23334 0.4990 +9296 23335 0.4840 +9296 23545 0.9980 +9296 26289 0.4220 +9296 27089 0.5180 +9296 27244 0.4990 +9296 28956 0.6750 +9296 29796 0.6320 +9296 50617 0.9990 +9296 50808 0.4400 +9296 51079 0.6690 +9296 51160 0.4830 +9296 51382 0.9990 +9296 51529 0.5160 +9296 51606 0.9990 +9296 51727 0.4320 +9296 54468 0.5180 +9296 54539 0.5150 +9296 55004 0.6380 +9296 55143 0.5740 +9296 55173 0.4090 +9296 55846 0.5000 +9296 55851 0.4890 +9296 57508 0.4220 +9296 57521 0.5130 +9296 57705 0.4040 +9296 57707 0.8140 +9296 58528 0.5170 +9296 64121 0.5510 +9296 64223 0.5370 +9296 79095 0.4390 +9296 79641 0.6230 +9296 79726 0.5290 +9296 79877 0.7850 +9296 80347 0.7880 +9296 81929 0.5170 +9296 83667 0.4990 +9296 84219 0.4990 +9296 84317 0.9500 +9296 84337 0.5370 +9296 84650 0.5760 +9296 84656 0.4220 +9296 90231 0.5220 +9296 90423 0.9980 +9296 96459 0.4610 +9296 122481 0.4300 +9296 126328 0.4900 +9296 127124 0.9900 +9296 140711 0.5130 +9296 144577 0.4990 +9296 147007 0.9620 +9296 153129 0.4990 +9296 155066 0.9780 +9296 158067 0.4300 +9296 163882 0.9860 +9296 201163 0.5220 +9296 203547 0.6630 +9296 221264 0.7480 +9296 245972 0.9990 +9296 245973 0.9960 +9296 374291 0.6210 +9296 389541 0.6240 +9296 414918 0.4110 +9296 440400 0.9960 +9296 652968 0.4030 +9296 102157402 0.8090 +9306 9616 0.7740 +9306 9655 0.8720 +9306 10019 0.4580 +9306 10425 0.6200 +9306 10616 0.4660 +9306 22863 0.5600 +9306 23404 0.4070 +9306 23412 0.4990 +9306 23533 0.5730 +9306 25914 0.5620 +9306 28952 0.4990 +9306 28991 0.4990 +9306 29099 0.4990 +9306 30837 0.5960 +9306 30849 0.5430 +9306 51010 0.4400 +9306 51122 0.4990 +9306 51397 0.5010 +9306 51442 0.4160 +9306 54939 0.4990 +9306 54951 0.5030 +9306 55697 0.5890 +9306 55832 0.5280 +9306 57626 0.7640 +9306 80204 0.4270 +9306 84174 0.6060 +9306 122809 0.5990 +9306 140462 0.5990 +9306 140739 0.5200 +9306 146850 0.5400 +9306 149951 0.5110 +9306 150684 0.4990 +9306 170622 0.5230 +9306 192111 0.7340 +9306 441925 0.5400 +9306 110117498 0.5400 +9308 9332 0.6680 +9308 9560 0.4720 +9308 10288 0.4510 +9308 10673 0.6150 +9308 10859 0.4110 +9308 11006 0.5540 +9308 11027 0.5200 +9308 11151 0.4850 +9308 23308 0.4900 +9308 23495 0.5740 +9308 27074 0.7070 +9308 29126 0.6230 +9308 30009 0.4310 +9308 30835 0.7870 +9308 50489 0.6150 +9308 50943 0.6070 +9308 51284 0.6150 +9308 51311 0.4930 +9308 51744 0.4270 +9308 54106 0.5520 +9308 55016 0.6400 +9308 64581 0.5210 +9308 65258 0.4460 +9308 80380 0.5180 +9308 80381 0.6430 +9308 115650 0.4940 +9308 169355 0.4340 +9308 170482 0.6100 +9308 283420 0.4570 +9308 405754 0.5070 +9308 414062 0.4080 +9308 100526664 0.6230 +9310 10155 0.6790 +9310 10982 0.4800 +9310 57547 0.5200 +9310 58486 0.4440 +9310 90576 0.6400 +9310 91664 0.4640 +9310 284370 0.5590 +9311 9368 0.5070 +9311 9399 0.5060 +9311 9463 0.6340 +9311 9780 0.4740 +9311 11280 0.5230 +9311 22953 0.5280 +9311 29933 0.4960 +9311 50801 0.4280 +9311 51393 0.4770 +9311 51802 0.9150 +9311 54207 0.4330 +9311 55515 0.9690 +9311 57120 0.4100 +9311 59335 0.4520 +9311 59341 0.6040 +9311 63895 0.6180 +9311 64130 0.6000 +9311 79054 0.5870 +9311 161003 0.8070 +9311 162514 0.4310 +9312 9349 0.5820 +9312 9378 0.4560 +9312 9858 0.4220 +9312 10399 0.4500 +9312 10412 0.4460 +9312 10473 0.4780 +9312 11222 0.4760 +9312 11224 0.5770 +9312 23416 0.4220 +9312 23521 0.4570 +9312 25873 0.5260 +9312 27012 0.4290 +9312 27092 0.4660 +9312 27133 0.5050 +9312 28998 0.4570 +9312 29093 0.5030 +9312 30820 0.4950 +9312 51065 0.5040 +9312 51069 0.4620 +9312 51073 0.4320 +9312 51081 0.5030 +9312 51116 0.4220 +9312 51121 0.5160 +9312 51149 0.5010 +9312 51154 0.4210 +9312 51319 0.4200 +9312 55173 0.5090 +9312 55272 0.4950 +9312 55316 0.5010 +9312 55800 0.4470 +9312 56648 0.4260 +9312 56934 0.4780 +9312 57463 0.4960 +9312 57582 0.4360 +9312 63931 0.5010 +9312 64318 0.5250 +9312 64960 0.5010 +9312 64963 0.5010 +9312 64969 0.4640 +9312 65003 0.4860 +9312 65008 0.4690 +9312 79590 0.5160 +9312 83795 0.4490 +9312 90134 0.4230 +9312 93107 0.6890 +9312 114987 0.4460 +9312 116832 0.4240 +9312 126402 0.5040 +9312 140032 0.4890 +9312 143244 0.4260 +9312 200916 0.4750 +9312 285855 0.4500 +9312 338567 0.4230 +9312 344758 0.4200 +9312 347487 0.4220 +9312 347902 0.4690 +9312 386724 0.4580 +9312 387129 0.4520 +9312 400120 0.5070 +9312 100287482 0.4220 +9312 100505478 0.4500 +9312 100526842 0.5030 +9312 100529097 0.4960 +9312 100529239 0.5030 +9313 9622 0.9630 +9313 10117 0.8970 +9313 24144 0.4470 +9313 26504 0.7210 +9313 54757 0.5440 +9313 54959 0.7440 +9313 56955 0.4140 +9313 56975 0.4820 +9313 80781 0.4380 +9313 84957 0.4070 +9313 93650 0.5320 +9313 123041 0.5380 +9313 152816 0.7290 +9313 256764 0.9680 +9313 286077 0.7650 +9313 401138 0.7810 +9314 9429 0.5300 +9314 9573 0.6010 +9314 9623 0.4180 +9314 9935 0.6750 +9314 10000 0.5950 +9314 10011 0.4720 +9314 10014 0.4890 +9314 10075 0.4520 +9314 10215 0.4220 +9314 10365 0.5760 +9314 10381 0.4150 +9314 10413 0.7430 +9314 10481 0.4980 +9314 10524 0.4580 +9314 10637 0.4800 +9314 10763 0.6730 +9314 10891 0.5570 +9314 10919 0.4470 +9314 22943 0.4050 +9314 23028 0.5480 +9314 23040 0.4450 +9314 23135 0.5920 +9314 23186 0.5170 +9314 23405 0.4830 +9314 23411 0.4820 +9314 23512 0.5210 +9314 25803 0.5860 +9314 25942 0.4200 +9314 26281 0.4400 +9314 27006 0.4390 +9314 27022 0.4810 +9314 29102 0.5900 +9314 29842 0.6540 +9314 29947 0.4220 +9314 50674 0.4050 +9314 51176 0.4330 +9314 51450 0.4590 +9314 51564 0.4650 +9314 51738 0.7730 +9314 53615 0.4480 +9314 54790 0.7950 +9314 55211 0.5070 +9314 56339 0.4090 +9314 56917 0.4290 +9314 57167 0.6780 +9314 57822 0.4970 +9314 63973 0.4020 +9314 63978 0.7810 +9314 64321 0.6740 +9314 79727 0.9710 +9314 79755 0.8550 +9314 79923 0.9940 +9314 80312 0.5170 +9314 80854 0.4730 +9314 83595 0.4560 +9314 83881 0.4360 +9314 84231 0.6240 +9314 84891 0.5690 +9314 89780 0.4560 +9314 93649 0.8330 +9314 137902 0.4650 +9314 148979 0.5450 +9314 151871 0.5120 +9314 162979 0.6440 +9314 201456 0.8440 +9314 286133 0.4210 +9314 340168 0.5180 +9314 346171 0.4690 +9314 359787 0.7400 +9314 389421 0.6120 +9314 440093 0.5390 +9314 440686 0.5500 +9314 653604 0.5500 +9314 100133941 0.5700 +9314 100532731 0.6320 +9315 22838 0.4340 +9315 84898 0.4190 +9315 148304 0.4940 +9315 152006 0.4010 +9317 10248 0.5580 +9317 23017 0.5800 +9317 23788 0.5770 +9317 25970 0.5800 +9317 27285 0.4200 +9317 29091 0.5000 +9317 51367 0.6570 +9317 54958 0.4170 +9317 55092 0.4490 +9317 55640 0.4090 +9317 55814 0.4210 +9317 56654 0.4200 +9317 79047 0.6130 +9317 79068 0.4490 +9317 89866 0.6030 +9317 129787 0.6180 +9317 132789 0.6090 +9317 142689 0.4080 +9317 144233 0.4190 +9317 257194 0.5450 +9317 100500938 0.5300 +9318 9611 0.4870 +9318 9728 0.5820 +9318 9735 0.4030 +9318 9840 0.9000 +9318 9886 0.5720 +9318 9978 0.9900 +9318 10116 0.6420 +9318 10213 0.6010 +9318 10238 0.4080 +9318 10307 0.6800 +9318 10513 0.6330 +9318 10587 0.6640 +9318 10617 0.5170 +9318 10750 0.5480 +9318 10920 0.9990 +9318 10980 0.9990 +9318 10987 0.9990 +9318 11037 0.4990 +9318 11091 0.4340 +9318 23038 0.5580 +9318 23107 0.4350 +9318 23142 0.6900 +9318 23412 0.4160 +9318 25793 0.5100 +9318 25879 0.5330 +9318 25942 0.5230 +9318 26094 0.8540 +9318 26224 0.4750 +9318 26234 0.6180 +9318 26273 0.4190 +9318 27040 0.7200 +9318 27348 0.5390 +9318 28952 0.4160 +9318 28991 0.4160 +9318 29099 0.4260 +9318 29844 0.4080 +9318 50717 0.5260 +9318 50813 0.9990 +9318 51068 0.4310 +9318 51122 0.6280 +9318 51138 0.9990 +9318 51185 0.8040 +9318 51187 0.4400 +9318 51397 0.4800 +9318 51514 0.5600 +9318 51759 0.4660 +9318 53339 0.7500 +9318 54165 0.7260 +9318 54472 0.4040 +9318 54617 0.4200 +9318 54876 0.4050 +9318 54939 0.4460 +9318 54951 0.5550 +9318 54979 0.4430 +9318 55070 0.6490 +9318 55208 0.4430 +9318 55643 0.8090 +9318 55827 0.5460 +9318 56949 0.5590 +9318 57559 0.5120 +9318 58490 0.4200 +9318 60491 0.7800 +9318 64326 0.6880 +9318 64708 0.9990 +9318 79016 0.5750 +9318 79184 0.5160 +9318 79269 0.4630 +9318 79913 0.4100 +9318 80067 0.4160 +9318 80218 0.4460 +9318 80344 0.8680 +9318 83444 0.4560 +9318 84259 0.5660 +9318 84897 0.4750 +9318 84954 0.5070 +9318 85439 0.4990 +9318 90293 0.6780 +9318 93973 0.4110 +9318 114803 0.5170 +9318 115290 0.7720 +9318 122769 0.7930 +9318 125476 0.4050 +9318 138009 0.6030 +9318 140459 0.4350 +9318 144699 0.4680 +9318 149951 0.4350 +9318 150678 0.9730 +9318 150684 0.4210 +9318 151987 0.4320 +9318 170622 0.5030 +9318 222235 0.4550 +9318 283899 0.4100 +9318 286187 0.6760 +9318 317719 0.5960 +9318 387357 0.7200 +9318 404672 0.5070 +9319 9320 0.4580 +9319 9321 0.4320 +9319 9325 0.4520 +9319 9373 0.4140 +9319 9493 0.7790 +9319 9587 0.9970 +9319 9700 0.6670 +9319 9702 0.6810 +9319 9735 0.6170 +9319 9768 0.6040 +9319 9787 0.7890 +9319 9833 0.9060 +9319 9837 0.6510 +9319 9918 0.4710 +9319 9928 0.7440 +9319 9985 0.5370 +9319 10024 0.5390 +9319 10036 0.4750 +9319 10051 0.4610 +9319 10112 0.9130 +9319 10403 0.6520 +9319 10459 0.9800 +9319 10460 0.5950 +9319 10535 0.4890 +9319 10587 0.6670 +9319 10592 0.5180 +9319 10615 0.6070 +9319 10617 0.4400 +9319 10635 0.6330 +9319 10733 0.6020 +9319 11004 0.8110 +9319 11065 0.8280 +9319 11073 0.4070 +9319 11113 0.4610 +9319 11130 0.7270 +9319 11144 0.7050 +9319 11169 0.4550 +9319 11331 0.4180 +9319 11339 0.6130 +9319 22974 0.8790 +9319 23397 0.6200 +9319 23626 0.7350 +9319 24137 0.7600 +9319 25836 0.4040 +9319 25886 0.4680 +9319 25906 0.4970 +9319 26043 0.6650 +9319 26271 0.4210 +9319 27127 0.4460 +9319 27338 0.4200 +9319 29028 0.5130 +9319 29089 0.6670 +9319 29127 0.6380 +9319 29128 0.5400 +9319 50511 0.5150 +9319 51203 0.7440 +9319 51512 0.4980 +9319 51514 0.5460 +9319 51659 0.6610 +9319 54443 0.7480 +9319 54478 0.4670 +9319 54537 0.5050 +9319 54821 0.5200 +9319 54892 0.5870 +9319 54973 0.4230 +9319 55010 0.4870 +9319 55055 0.6250 +9319 55093 0.4130 +9319 55143 0.7360 +9319 55165 0.8150 +9319 55215 0.4920 +9319 55247 0.4480 +9319 55294 0.4360 +9319 55355 0.7410 +9319 55388 0.6950 +9319 55635 0.5040 +9319 55722 0.4180 +9319 55723 0.5310 +9319 55732 0.4600 +9319 55789 0.4240 +9319 55839 0.6330 +9319 56992 0.5960 +9319 57082 0.6570 +9319 57088 0.5740 +9319 57405 0.5320 +9319 57707 0.5880 +9319 64105 0.4530 +9319 64151 0.7110 +9319 64778 0.5620 +9319 64946 0.5110 +9319 79019 0.5830 +9319 79058 0.4110 +9319 79075 0.6380 +9319 79733 0.5200 +9319 79801 0.5340 +9319 80198 0.4070 +9319 81610 0.6940 +9319 81620 0.6060 +9319 81930 0.5060 +9319 83461 0.7740 +9319 83540 0.8160 +9319 83879 0.4860 +9319 83932 0.4170 +9319 84057 0.5210 +9319 84072 0.7810 +9319 84171 0.4620 +9319 84515 0.4030 +9319 91875 0.4940 +9319 93081 0.4170 +9319 113130 0.8760 +9319 115761 0.6130 +9319 122769 0.4330 +9319 126074 0.4150 +9319 132158 0.4200 +9319 143471 0.6030 +9319 144455 0.4120 +9319 146909 0.4450 +9319 149840 0.5080 +9319 150280 0.7510 +9319 150468 0.5420 +9319 151246 0.4490 +9319 151648 0.5750 +9319 157313 0.5060 +9319 165918 0.4300 +9319 197135 0.4530 +9319 220134 0.7220 +9319 221150 0.4970 +9319 259266 0.7290 +9319 283677 0.4500 +9319 286151 0.4380 +9319 337966 0.4870 +9319 347688 0.4360 +9319 387103 0.5480 +9319 642636 0.4760 +9319 112441434 0.9170 +9320 9325 0.4900 +9320 9337 0.4030 +9320 9354 0.6910 +9320 9373 0.4940 +9320 9470 0.4460 +9320 9636 0.4770 +9320 9656 0.5450 +9320 9690 0.5190 +9320 9698 0.4470 +9320 9736 0.7230 +9320 9810 0.4700 +9320 9867 0.5360 +9320 9877 0.4510 +9320 9960 0.4750 +9320 10075 0.5810 +9320 10096 0.4580 +9320 10277 0.8040 +9320 10393 0.5650 +9320 10477 0.5440 +9320 10537 0.5340 +9320 10565 0.5670 +9320 10576 0.4070 +9320 10587 0.5470 +9320 10598 0.5130 +9320 10765 0.4350 +9320 10847 0.4470 +9320 10973 0.5260 +9320 10994 0.4160 +9320 11065 0.4290 +9320 11073 0.4760 +9320 11198 0.4560 +9320 22828 0.4140 +9320 22888 0.4850 +9320 22930 0.4370 +9320 23001 0.5300 +9320 23019 0.7630 +9320 23020 0.4590 +9320 23063 0.7820 +9320 23091 0.4270 +9320 23133 0.4060 +9320 23135 0.4030 +9320 23190 0.4060 +9320 23198 0.6310 +9320 23211 0.4460 +9320 23304 0.9640 +9320 23352 0.5070 +9320 23358 0.4880 +9320 23369 0.5770 +9320 23389 0.6500 +9320 23394 0.6330 +9320 23469 0.6610 +9320 23476 0.5660 +9320 23503 0.4080 +9320 23510 0.4070 +9320 23511 0.4070 +9320 23512 0.4600 +9320 23517 0.5080 +9320 23608 0.4370 +9320 25782 0.5350 +9320 25820 0.4030 +9320 25831 0.6410 +9320 25836 0.4300 +9320 25962 0.4680 +9320 26046 0.4450 +9320 26057 0.5580 +9320 26061 0.4150 +9320 26130 0.5390 +9320 26190 0.4170 +9320 26235 0.5030 +9320 26267 0.5440 +9320 26354 0.4350 +9320 26993 0.4290 +9320 27338 0.7940 +9320 29072 0.8060 +9320 29089 0.5320 +9320 29123 0.5220 +9320 29883 0.4240 +9320 29978 0.4170 +9320 29979 0.5300 +9320 51111 0.5640 +9320 51322 0.5740 +9320 51366 0.9340 +9320 51465 0.4320 +9320 51619 0.6020 +9320 51633 0.4130 +9320 51720 0.4480 +9320 51755 0.4060 +9320 54542 0.5650 +9320 54778 0.4210 +9320 54926 0.4840 +9320 55031 0.6510 +9320 55153 0.4830 +9320 55193 0.4790 +9320 55209 0.4490 +9320 55236 0.5560 +9320 55284 0.5810 +9320 55294 0.6850 +9320 55339 0.4420 +9320 55553 0.7000 +9320 55611 0.5270 +9320 55798 0.4200 +9320 55870 0.4980 +9320 55914 0.5490 +9320 56254 0.5630 +9320 56852 0.5490 +9320 56893 0.4620 +9320 57062 0.4810 +9320 57148 0.5000 +9320 57187 0.4510 +9320 57448 0.5760 +9320 57532 0.6310 +9320 57634 0.4960 +9320 57646 0.4230 +9320 57664 0.4140 +9320 57674 0.4560 +9320 57680 0.5350 +9320 63893 0.5390 +9320 64431 0.4180 +9320 64854 0.4070 +9320 65125 0.5760 +9320 65264 0.5550 +9320 79665 0.4090 +9320 79718 0.4030 +9320 79828 0.4240 +9320 80129 0.4140 +9320 80155 0.4400 +9320 80204 0.4130 +9320 80232 0.7900 +9320 80351 0.5950 +9320 81545 0.5830 +9320 81847 0.6140 +9320 83473 0.5450 +9320 84196 0.4230 +9320 84231 0.4070 +9320 84518 0.4800 +9320 84893 0.4390 +9320 84993 0.4230 +9320 85313 0.6040 +9320 89910 0.5180 +9320 90853 0.5240 +9320 93550 0.5120 +9320 118424 0.4480 +9320 130888 0.5720 +9320 131965 0.4200 +9320 133482 0.4240 +9320 148581 0.4900 +9320 164153 0.4640 +9320 165100 0.4080 +9320 165918 0.8340 +9320 171222 0.4090 +9320 195827 0.4550 +9320 197131 0.9730 +9320 254225 0.4620 +9320 256297 0.6490 +9320 339175 0.4200 +9320 404734 0.6610 +9321 9325 0.4700 +9321 9527 0.5020 +9321 9648 0.6790 +9321 9659 0.5390 +9321 9793 0.4480 +9321 9846 0.4990 +9321 9857 0.6770 +9321 9950 0.8150 +9321 10142 0.5710 +9321 10426 0.4190 +9321 10427 0.4310 +9321 10618 0.4350 +9321 23256 0.4100 +9321 23426 0.7420 +9321 26003 0.6400 +9321 26146 0.5150 +9321 27314 0.5960 +9321 51134 0.4360 +9321 54464 0.4090 +9321 55081 0.5320 +9321 57511 0.4210 +9321 57534 0.4410 +9321 64083 0.5660 +9321 64689 0.7110 +9321 79571 0.5480 +9321 79886 0.4250 +9321 84376 0.4340 +9321 85441 0.4660 +9321 90410 0.9970 +9321 92344 0.4910 +9321 123041 0.4560 +9321 148870 0.5580 +9321 253461 0.4190 +9321 399687 0.8580 +9322 9341 0.4320 +9322 9497 0.4010 +9322 9578 0.4840 +9322 9610 0.5080 +9322 9815 0.4540 +9322 9873 0.5960 +9322 9901 0.7850 +9322 9912 0.8310 +9322 10097 0.4650 +9322 10142 0.6990 +9322 10163 0.4090 +9322 10165 0.4480 +9322 10207 0.5110 +9322 10298 0.5530 +9322 10426 0.4750 +9322 10435 0.4210 +9322 10451 0.4520 +9322 10458 0.5130 +9322 10587 0.4320 +9322 10602 0.4010 +9322 10844 0.4290 +9322 11060 0.4080 +9322 11135 0.4370 +9322 11252 0.7870 +9322 22905 0.4040 +9322 23002 0.5440 +9322 23048 0.5520 +9322 23149 0.9630 +9322 23380 0.7730 +9322 23433 0.9760 +9322 23513 0.4800 +9322 23580 0.4270 +9322 26030 0.4150 +9322 26130 0.7290 +9322 27229 0.4180 +9322 28964 0.4510 +9322 29763 0.6970 +9322 29993 0.7460 +9322 50618 0.8600 +9322 51429 0.5430 +9322 51517 0.5510 +9322 54438 0.4280 +9322 55004 0.4080 +9322 55114 0.9520 +9322 55240 0.4270 +9322 55789 0.4090 +9322 56288 0.4940 +9322 57522 0.6230 +9322 58513 0.4150 +9322 64398 0.4990 +9322 65059 0.6970 +9322 79782 0.5140 +9322 80746 0.8220 +9322 81570 0.4100 +9322 81624 0.5610 +9322 81839 0.4200 +9322 89848 0.6420 +9322 94134 0.6930 +9322 115548 0.9640 +9322 115677 0.4910 +9322 115703 0.4250 +9322 128239 0.4180 +9322 147179 0.4700 +9322 154796 0.5570 +9324 10587 0.5480 +9324 23476 0.5100 +9324 25909 0.5020 +9324 79366 0.5900 +9324 121504 0.4290 +9324 554313 0.4330 +9324 728116 0.4030 +9325 9439 0.9940 +9325 9440 0.9940 +9325 9442 0.9940 +9325 9862 0.9940 +9325 9968 0.9940 +9325 9969 0.9940 +9325 10587 0.6560 +9325 10783 0.4560 +9325 10856 0.4590 +9325 10973 0.9990 +9325 11331 0.5350 +9325 23020 0.4150 +9325 23186 0.9940 +9325 23376 0.5800 +9325 26046 0.4120 +9325 29079 0.9940 +9325 29087 0.4900 +9325 51008 0.9860 +9325 51314 0.4230 +9325 51506 0.5160 +9325 51569 0.5570 +9325 51586 0.9940 +9325 55034 0.5140 +9325 55063 0.4350 +9325 55139 0.4800 +9325 55293 0.4860 +9325 55325 0.6460 +9325 65992 0.5750 +9325 79068 0.4240 +9325 79876 0.4950 +9325 80306 0.9940 +9325 81857 0.9940 +9325 84164 0.9990 +9325 84246 0.9940 +9325 84888 0.4270 +9325 90850 0.6300 +9325 91966 0.4480 +9325 112950 0.9940 +9325 124093 0.4180 +9325 131377 0.4050 +9325 164045 0.4170 +9325 221120 0.9280 +9325 390594 0.4550 +9325 400569 0.9940 +9325 402682 0.4670 +9326 9675 0.4860 +9326 10467 0.5880 +9326 10471 0.4120 +9326 10528 0.7570 +9326 10587 0.6490 +9326 10594 0.4210 +9326 10856 0.5910 +9326 11056 0.5920 +9326 11072 0.4720 +9326 11276 0.5810 +9326 23219 0.4910 +9326 26121 0.5470 +9326 26574 0.4830 +9326 26747 0.9990 +9326 51187 0.4320 +9326 51602 0.9290 +9326 54680 0.9570 +9326 55011 0.9060 +9326 55831 0.4460 +9326 64795 0.5460 +9326 79154 0.5600 +9326 79657 0.6810 +9326 79893 0.6690 +9326 79922 0.6530 +9326 80179 0.6130 +9326 80185 0.4030 +9326 83444 0.6260 +9326 121053 0.5750 +9326 124245 0.4440 +9326 138199 0.4300 +9326 284098 0.6450 +9326 284099 0.5810 +9326 342527 0.5910 +9326 729877 0.5060 +9326 101060389 0.4480 +9328 9329 0.9990 +9328 9330 0.9990 +9328 9533 0.5880 +9328 9656 0.4590 +9328 9785 0.4830 +9328 10621 0.7460 +9328 10622 0.7830 +9328 10623 0.8110 +9328 11092 0.4050 +9328 11128 0.7830 +9328 23065 0.4410 +9328 27297 0.6320 +9328 29117 0.7360 +9328 29781 0.5270 +9328 51082 0.5670 +9328 51428 0.5150 +9328 51605 0.4540 +9328 51728 0.6980 +9328 55193 0.7220 +9328 55290 0.8190 +9328 55703 0.5860 +9328 55718 0.6790 +9328 55814 0.8710 +9328 55821 0.4150 +9328 57570 0.4270 +9328 57693 0.4580 +9328 57805 0.4680 +9328 60528 0.4750 +9328 64223 0.4940 +9328 64794 0.4470 +9328 81609 0.4480 +9328 84265 0.6950 +9328 84271 0.4090 +9328 92400 0.4280 +9328 112495 0.9980 +9328 171568 0.6210 +9328 220108 0.4140 +9328 283767 0.5010 +9328 390191 0.5400 +9328 642968 0.4030 +9328 643699 0.4470 +9328 727909 0.4480 +9328 728047 0.4740 +9329 9330 0.9980 +9329 9533 0.5740 +9329 10621 0.8040 +9329 10622 0.6890 +9329 10623 0.8390 +9329 11128 0.7840 +9329 11143 0.4180 +9329 22828 0.4330 +9329 22850 0.5440 +9329 27297 0.5460 +9329 51082 0.5420 +9329 51728 0.6340 +9329 54107 0.4330 +9329 54815 0.4770 +9329 54930 0.4630 +9329 55038 0.4060 +9329 55071 0.4410 +9329 55140 0.5150 +9329 55290 0.7270 +9329 55703 0.5810 +9329 55718 0.5810 +9329 55814 0.7380 +9329 57673 0.4230 +9329 79903 0.4210 +9329 84265 0.5990 +9329 112495 0.9960 +9329 146540 0.4080 +9329 171568 0.6570 +9329 653604 0.4080 +9330 9533 0.5930 +9330 9937 0.4410 +9330 10621 0.7190 +9330 10622 0.7010 +9330 10623 0.8560 +9330 10978 0.9590 +9330 11128 0.8370 +9330 11196 0.6300 +9330 22916 0.4370 +9330 23076 0.4160 +9330 23283 0.7680 +9330 23314 0.6950 +9330 23518 0.4160 +9330 25831 0.4090 +9330 26009 0.7990 +9330 27297 0.6550 +9330 29117 0.6380 +9330 29894 0.9780 +9330 51082 0.6170 +9330 51434 0.4780 +9330 51692 0.9630 +9330 51728 0.6830 +9330 53981 0.9820 +9330 54973 0.4390 +9330 55140 0.4610 +9330 55290 0.9680 +9330 55322 0.4440 +9330 55656 0.4660 +9330 55703 0.7360 +9330 55718 0.7130 +9330 55756 0.4460 +9330 55814 0.9400 +9330 56916 0.5610 +9330 60558 0.5400 +9330 64421 0.4550 +9330 64858 0.4340 +9330 84128 0.5400 +9330 84248 0.4640 +9330 84265 0.5840 +9330 112495 0.9700 +9330 114883 0.4470 +9330 129684 0.4380 +9330 152877 0.4100 +9330 162989 0.6920 +9330 171568 0.6540 +9330 284992 0.5710 +9330 285429 0.4070 +9331 9334 0.7110 +9331 9517 0.4190 +9331 10558 0.4830 +9331 10841 0.4110 +9331 25834 0.4660 +9331 29906 0.5530 +9331 29956 0.4540 +9331 53947 0.9390 +9331 55858 0.4010 +9331 56667 0.4110 +9331 56913 0.4150 +9331 56981 0.4460 +9331 57704 0.9360 +9331 64781 0.4300 +9331 79603 0.4080 +9331 80235 0.4200 +9331 84002 0.9050 +9331 84725 0.5580 +9331 127550 0.8580 +9331 143662 0.4460 +9331 158405 0.5860 +9331 200958 0.4440 +9331 253782 0.4300 +9331 727897 0.4360 +9332 9437 0.5780 +9332 9935 0.4740 +9332 10288 0.5750 +9332 10371 0.4330 +9332 10461 0.6800 +9332 10462 0.6370 +9332 10563 0.4990 +9332 10578 0.4020 +9332 10631 0.4280 +9332 10663 0.4210 +9332 10673 0.5500 +9332 10804 0.4520 +9332 10859 0.4240 +9332 10875 0.5910 +9332 10894 0.6230 +9332 10990 0.4840 +9332 11006 0.4700 +9332 11326 0.9380 +9332 22918 0.5530 +9332 23166 0.7270 +9332 23601 0.4350 +9332 26253 0.4370 +9332 27036 0.4180 +9332 27074 0.5040 +9332 27163 0.4040 +9332 27180 0.4430 +9332 29126 0.7180 +9332 30009 0.4590 +9332 30061 0.4310 +9332 30835 0.7410 +9332 50489 0.6330 +9332 50856 0.5220 +9332 50943 0.7900 +9332 51279 0.7830 +9332 51284 0.6840 +9332 51311 0.6980 +9332 51338 0.8430 +9332 51741 0.4950 +9332 54106 0.4330 +9332 54209 0.5810 +9332 54210 0.4480 +9332 55303 0.4490 +9332 56833 0.4630 +9332 57817 0.4480 +9332 58191 0.4080 +9332 58475 0.7990 +9332 58484 0.4200 +9332 64231 0.8730 +9332 64581 0.5850 +9332 64805 0.5130 +9332 65258 0.4360 +9332 79679 0.4450 +9332 80380 0.5470 +9332 80381 0.4750 +9332 84666 0.5250 +9332 84868 0.6470 +9332 89790 0.5160 +9332 90865 0.4350 +9332 91937 0.5030 +9332 114548 0.4990 +9332 131450 0.6040 +9332 136991 0.4690 +9332 137902 0.5480 +9332 140885 0.6130 +9332 146433 0.5500 +9332 151888 0.5990 +9332 160364 0.4180 +9332 165530 0.4320 +9332 169355 0.4540 +9332 170482 0.4380 +9332 201633 0.4660 +9332 283420 0.4540 +9332 338773 0.5030 +9332 440387 0.5540 +9333 11202 0.5040 +9333 23086 0.6290 +9333 55612 0.5160 +9333 57822 0.4370 +9333 59344 0.4720 +9333 64377 0.5190 +9333 79714 0.4300 +9333 84518 0.4060 +9333 91252 0.4110 +9333 93650 0.4630 +9333 147409 0.6690 +9333 284110 0.4170 +9333 339403 0.4220 +9333 346007 0.4340 +9333 388698 0.4260 +9333 401138 0.4080 +9333 646625 0.4010 +9334 9375 0.5700 +9334 9517 0.4760 +9334 9741 0.4490 +9334 10071 0.4100 +9334 10317 0.4160 +9334 10331 0.4780 +9334 10402 0.5350 +9334 10558 0.4640 +9334 10678 0.5450 +9334 11081 0.4890 +9334 25972 0.4490 +9334 29906 0.4400 +9334 53947 0.6630 +9334 55741 0.4740 +9334 55858 0.4500 +9334 56667 0.4080 +9334 56913 0.5870 +9334 63917 0.4580 +9334 84002 0.5880 +9334 84302 0.4100 +9334 84725 0.5060 +9334 94025 0.4210 +9334 124872 0.5270 +9334 127550 0.4430 +9334 143662 0.4140 +9334 148789 0.5150 +9334 171546 0.6070 +9334 200958 0.4560 +9334 727897 0.4440 +9337 9698 0.8620 +9337 9775 0.5840 +9337 9887 0.4400 +9337 9931 0.4450 +9337 10114 0.5120 +9337 10140 0.9870 +9337 10605 0.5220 +9337 10766 0.7560 +9337 10950 0.6640 +9337 22849 0.9230 +9337 23019 0.9990 +9337 23112 0.4710 +9337 23293 0.4020 +9337 23357 0.4900 +9337 23369 0.6540 +9337 23381 0.6490 +9337 23649 0.4100 +9337 25819 0.7690 +9337 25904 0.9960 +9337 26057 0.4600 +9337 26986 0.7020 +9337 27161 0.4350 +9337 27327 0.7570 +9337 29066 0.4610 +9337 29883 0.9930 +9337 51441 0.5450 +9337 54464 0.5870 +9337 54542 0.4770 +9337 54766 0.9020 +9337 55571 0.9950 +9337 55629 0.5340 +9337 55802 0.5630 +9337 56157 0.6130 +9337 57472 0.9990 +9337 60313 0.4890 +9337 80153 0.4550 +9337 80313 0.6480 +9337 85451 0.4660 +9337 85456 0.9410 +9337 90806 0.6510 +9337 114034 0.5180 +9337 115795 0.4220 +9337 149041 0.6710 +9337 154197 0.4500 +9337 158787 0.6160 +9337 167227 0.6840 +9337 196513 0.4070 +9337 197135 0.7920 +9337 201626 0.6910 +9337 219988 0.9980 +9337 246175 0.9990 +9337 253943 0.5720 +9337 339345 0.7650 +9337 340719 0.6330 +9337 390748 0.5040 +9338 10204 0.4310 +9338 23077 0.4420 +9338 23593 0.7130 +9338 27010 0.4450 +9338 27018 0.8660 +9338 29124 0.5050 +9338 29128 0.4220 +9338 51209 0.6460 +9338 51309 0.4850 +9338 51533 0.7000 +9338 51566 0.4020 +9338 55818 0.5320 +9338 56271 0.4240 +9338 56849 0.9500 +9338 57448 0.4470 +9338 79921 0.9630 +9338 80063 0.4510 +9338 85012 0.7310 +9338 90843 0.4400 +9338 90850 0.4880 +9338 140597 0.8050 +9338 158931 0.9560 +9338 221302 0.6380 +9338 340543 0.5430 +9340 10267 0.5830 +9340 10681 0.6120 +9340 50674 0.5710 +9340 51764 0.5920 +9340 54331 0.9070 +9340 55970 0.5700 +9340 59345 0.6200 +9340 80834 0.7680 +9340 83756 0.7670 +9340 94235 0.5580 +9340 166752 0.4620 +9340 338557 0.6540 +9340 346562 0.6590 +9341 9342 0.9850 +9341 9367 0.7320 +9341 9392 0.4110 +9341 9414 0.5200 +9341 9475 0.4310 +9341 9482 0.9360 +9341 9497 0.4110 +9341 9515 0.6390 +9341 9527 0.9200 +9341 9528 0.4380 +9341 9545 0.5260 +9341 9554 0.8040 +9341 9570 0.8110 +9341 9578 0.4210 +9341 9590 0.4050 +9341 9648 0.6310 +9341 9710 0.4190 +9341 9744 0.5960 +9341 9748 0.4130 +9341 9815 0.4180 +9341 9856 0.4990 +9341 9892 0.6730 +9341 10006 0.4360 +9341 10133 0.4060 +9341 10134 0.5850 +9341 10160 0.4380 +9341 10163 0.4570 +9341 10211 0.5290 +9341 10226 0.8460 +9341 10228 0.9990 +9341 10244 0.8470 +9341 10254 0.5650 +9341 10282 0.8680 +9341 10298 0.4050 +9341 10376 0.4490 +9341 10409 0.4470 +9341 10490 0.9830 +9341 10497 0.4660 +9341 10618 0.8410 +9341 10640 0.4090 +9341 10652 0.8520 +9341 10787 0.4030 +9341 10788 0.4010 +9341 10814 0.8010 +9341 10815 0.9810 +9341 10890 0.4310 +9341 11021 0.4790 +9341 11037 0.4990 +9341 11060 0.5030 +9341 11149 0.4100 +9341 11311 0.4140 +9341 11315 0.4380 +9341 22836 0.6020 +9341 22848 0.5000 +9341 22905 0.5700 +9341 23002 0.4360 +9341 23048 0.4070 +9341 23075 0.4090 +9341 23149 0.5110 +9341 23191 0.4120 +9341 23208 0.6800 +9341 23261 0.6600 +9341 23339 0.4610 +9341 23344 0.4360 +9341 23433 0.6370 +9341 23513 0.4700 +9341 23527 0.5640 +9341 23580 0.4090 +9341 23673 0.9920 +9341 25894 0.4140 +9341 25977 0.5550 +9341 26022 0.5310 +9341 26049 0.4110 +9341 26092 0.5240 +9341 26119 0.5040 +9341 26276 0.4960 +9341 27072 0.4940 +9341 27289 0.4130 +9341 28964 0.4350 +9341 29843 0.4110 +9341 29924 0.6020 +9341 29941 0.4270 +9341 29978 0.5380 +9341 29984 0.5780 +9341 29988 0.5070 +9341 30011 0.5070 +9341 50618 0.5960 +9341 51209 0.6020 +9341 51257 0.5890 +9341 51272 0.7530 +9341 51347 0.4310 +9341 51542 0.6230 +9341 51552 0.4450 +9341 51762 0.4430 +9341 53407 0.7530 +9341 54443 0.4230 +9341 54509 0.6010 +9341 54874 0.4060 +9341 55004 0.4930 +9341 55014 0.9520 +9341 55075 0.4190 +9341 55107 0.4640 +9341 55240 0.4930 +9341 55275 0.6150 +9341 55707 0.5770 +9341 55717 0.4160 +9341 55789 0.4280 +9341 55845 0.4430 +9341 55850 0.7410 +9341 55914 0.4320 +9341 55968 0.4350 +9341 55971 0.4110 +9341 56924 0.4050 +9341 57144 0.4050 +9341 57381 0.5880 +9341 57590 0.4410 +9341 57679 0.5000 +9341 58513 0.5470 +9341 60412 0.4020 +9341 63908 0.8670 +9341 64091 0.4350 +9341 64601 0.5650 +9341 65009 0.4300 +9341 65082 0.4850 +9341 65124 0.4190 +9341 79180 0.4520 +9341 80115 0.4100 +9341 80728 0.4050 +9341 81624 0.4600 +9341 81839 0.4030 +9341 81876 0.4010 +9341 83639 0.4460 +9341 84251 0.4990 +9341 85021 0.5040 +9341 85439 0.5620 +9341 90019 0.5440 +9341 91010 0.4090 +9341 112755 0.9980 +9341 114885 0.4380 +9341 115548 0.5330 +9341 115557 0.5630 +9341 115825 0.4820 +9341 116841 0.8790 +9341 127833 0.8120 +9341 132204 0.4300 +9341 134957 0.7600 +9341 143098 0.4140 +9341 143187 0.9980 +9341 143425 0.7130 +9341 144402 0.4620 +9341 147179 0.4070 +9341 157769 0.4160 +9341 200894 0.4490 +9341 203062 0.6880 +9341 253959 0.4050 +9341 255324 0.4990 +9341 284119 0.5190 +9341 339302 0.5400 +9341 415117 0.8850 +9341 445582 0.4300 +9341 594855 0.5630 +9342 9382 0.6100 +9342 9474 0.7760 +9342 9482 0.9760 +9342 9515 0.7120 +9342 9527 0.8320 +9342 9554 0.9190 +9342 9570 0.8770 +9342 9706 0.4190 +9342 9776 0.6510 +9342 9821 0.5830 +9342 9842 0.8880 +9342 10190 0.4130 +9342 10228 0.9990 +9342 10241 0.4120 +9342 10282 0.7840 +9342 10466 0.5700 +9342 10490 0.8680 +9342 10533 0.6860 +9342 10640 0.4660 +9342 10652 0.9880 +9342 10791 0.7980 +9342 10814 0.7700 +9342 10815 0.7670 +9342 10871 0.4470 +9342 10938 0.9830 +9342 11130 0.8890 +9342 11311 0.4590 +9342 11336 0.4030 +9342 11337 0.5870 +9342 11345 0.5730 +9342 22796 0.6090 +9342 22863 0.9990 +9342 22905 0.4680 +9342 23130 0.4280 +9342 23192 0.4110 +9342 23256 0.7670 +9342 23265 0.5260 +9342 23339 0.6840 +9342 23354 0.4360 +9342 23557 0.6510 +9342 23673 0.9920 +9342 23677 0.4340 +9342 23710 0.5730 +9342 25839 0.7440 +9342 25851 0.4470 +9342 26100 0.5240 +9342 26276 0.5210 +9342 26984 0.4350 +9342 29091 0.6210 +9342 30844 0.5720 +9342 30845 0.6940 +9342 30849 0.6400 +9342 51272 0.6790 +9342 51586 0.4200 +9342 53349 0.4230 +9342 53407 0.9050 +9342 54536 0.4810 +9342 54822 0.4220 +9342 55014 0.9990 +9342 55040 0.4510 +9342 55054 0.5320 +9342 55062 0.4660 +9342 55223 0.4210 +9342 55275 0.6920 +9342 55610 0.6970 +9342 55626 0.4160 +9342 55763 0.5720 +9342 55823 0.5710 +9342 55850 0.6930 +9342 57448 0.4100 +9342 57511 0.9050 +9342 57617 0.4550 +9342 57724 0.7200 +9342 60412 0.7350 +9342 60673 0.6470 +9342 63908 0.8610 +9342 64145 0.7200 +9342 64422 0.6200 +9342 64599 0.4910 +9342 64601 0.6180 +9342 64976 0.4360 +9342 65082 0.7240 +9342 79065 0.5780 +9342 79171 0.4400 +9342 80233 0.4620 +9342 80764 0.6060 +9342 81631 0.4480 +9342 81671 0.4020 +9342 83547 0.5570 +9342 83548 0.6070 +9342 83734 0.4770 +9342 84861 0.4390 +9342 85376 0.4150 +9342 85439 0.4910 +9342 91179 0.4500 +9342 91949 0.6000 +9342 93323 0.5230 +9342 112755 0.8510 +9342 116841 0.9130 +9342 117177 0.4050 +9342 127687 0.6070 +9342 128989 0.4650 +9342 134957 0.9570 +9342 143187 0.9360 +9342 145497 0.4450 +9342 149371 0.4640 +9342 150209 0.5540 +9342 203062 0.8230 +9342 220134 0.4780 +9342 221079 0.4100 +9342 339302 0.5400 +9342 415117 0.8170 +9342 440738 0.4520 +9342 594855 0.5630 +9343 9349 0.9490 +9343 9360 0.8550 +9343 9401 0.6010 +9343 9410 0.9990 +9343 9416 0.9990 +9343 9419 0.8000 +9343 9521 0.4190 +9343 9533 0.7440 +9343 9541 0.8000 +9343 9553 0.8660 +9343 9584 0.5410 +9343 9669 0.7430 +9343 9688 0.4660 +9343 9704 0.7000 +9343 9716 0.9990 +9343 9732 0.6630 +9343 9733 0.7090 +9343 9775 0.9920 +9343 9782 0.4780 +9343 9785 0.9960 +9343 9801 0.9280 +9343 9810 0.4120 +9343 9858 0.6910 +9343 9879 0.7230 +9343 9939 0.8710 +9343 9987 0.5950 +9343 10055 0.4450 +9343 10075 0.4300 +9343 10078 0.8740 +9343 10102 0.7280 +9343 10146 0.4800 +9343 10153 0.4290 +9343 10179 0.5210 +9343 10181 0.4770 +9343 10189 0.8900 +9343 10197 0.4800 +9343 10212 0.5680 +9343 10236 0.6510 +9343 10250 0.8850 +9343 10262 0.9990 +9343 10283 0.9950 +9343 10285 0.5510 +9343 10286 0.9990 +9343 10291 0.9990 +9343 10399 0.7530 +9343 10419 0.4180 +9343 10421 0.9590 +9343 10432 0.4500 +9343 10450 0.9920 +9343 10465 0.9810 +9343 10473 0.7070 +9343 10492 0.6250 +9343 10498 0.5820 +9343 10521 0.6600 +9343 10528 0.5060 +9343 10557 0.7770 +9343 10569 0.9740 +9343 10574 0.6500 +9343 10594 0.9990 +9343 10597 0.4350 +9343 10607 0.4050 +9343 10614 0.4390 +9343 10667 0.4470 +9343 10694 0.4410 +9343 10713 0.9950 +9343 10735 0.5890 +9343 10765 0.4470 +9343 10768 0.4110 +9343 10771 0.7300 +9343 10772 0.5230 +9343 10826 0.5050 +9343 10856 0.7930 +9343 10891 0.8010 +9343 10907 0.9990 +9343 10915 0.9740 +9343 10921 0.5780 +9343 10946 0.9980 +9343 10949 0.5130 +9343 10973 0.5630 +9343 10985 0.6770 +9343 10987 0.6390 +9343 10988 0.6610 +9343 10992 0.9990 +9343 11017 0.9300 +9343 11051 0.5220 +9343 11052 0.4650 +9343 11128 0.7530 +9343 11157 0.9960 +9343 11193 0.9860 +9343 11198 0.5200 +9343 11222 0.8250 +9343 11224 0.9470 +9343 11319 0.7620 +9343 11321 0.4610 +9343 11325 0.4100 +9343 11338 0.7490 +9343 22794 0.8270 +9343 22826 0.5910 +9343 22827 0.5210 +9343 22907 0.5580 +9343 22913 0.5080 +9343 22916 0.9590 +9343 22927 0.5510 +9343 22938 0.9990 +9343 22944 0.8560 +9343 22948 0.6350 +9343 22984 0.8280 +9343 22985 0.4050 +9343 23016 0.4170 +9343 23020 0.9990 +9343 23076 0.5570 +9343 23082 0.8140 +9343 23091 0.6530 +9343 23135 0.5150 +9343 23154 0.6580 +9343 23173 0.6390 +9343 23204 0.6220 +9343 23223 0.4420 +9343 23350 0.4010 +9343 23352 0.4920 +9343 23382 0.4690 +9343 23395 0.5180 +9343 23398 0.8220 +9343 23404 0.4510 +9343 23435 0.6320 +9343 23450 0.9990 +9343 23451 0.9990 +9343 23476 0.4040 +9343 23517 0.4150 +9343 23521 0.8270 +9343 23524 0.9990 +9343 23640 0.6970 +9343 23658 0.9980 +9343 23759 0.9250 +9343 24144 0.9890 +9343 24148 0.9990 +9343 25804 0.9970 +9343 25813 0.5490 +9343 25873 0.7900 +9343 25885 0.7980 +9343 25902 0.4720 +9343 25949 0.9990 +9343 25962 0.6680 +9343 25980 0.9940 +9343 26017 0.8060 +9343 26097 0.4040 +9343 26121 0.9990 +9343 26135 0.6490 +9343 26155 0.4960 +9343 26289 0.4460 +9343 26330 0.4630 +9343 26986 0.4590 +9343 27068 0.4290 +9343 27102 0.5380 +9343 27238 0.8700 +9343 27257 0.4580 +9343 27258 0.9970 +9343 27292 0.4330 +9343 27316 0.6330 +9343 27336 0.7000 +9343 27339 0.9990 +9343 27430 0.4290 +9343 28998 0.8140 +9343 29088 0.5720 +9343 29093 0.8340 +9343 29789 0.5830 +9343 29889 0.5610 +9343 29894 0.4550 +9343 29896 0.5480 +9343 29927 0.6970 +9343 29979 0.4060 +9343 50808 0.4470 +9343 51021 0.9410 +9343 51065 0.5580 +9343 51069 0.8110 +9343 51073 0.8090 +9343 51081 0.8500 +9343 51096 0.4150 +9343 51116 0.7540 +9343 51119 0.5650 +9343 51121 0.7960 +9343 51149 0.7590 +9343 51154 0.8970 +9343 51202 0.4520 +9343 51264 0.9400 +9343 51314 0.4250 +9343 51319 0.6580 +9343 51340 0.9990 +9343 51362 0.9990 +9343 51428 0.4910 +9343 51434 0.4720 +9343 51493 0.5590 +9343 51503 0.9990 +9343 51520 0.5450 +9343 51538 0.5710 +9343 51574 0.7020 +9343 51585 0.4460 +9343 51593 0.5230 +9343 51602 0.5580 +9343 51631 0.4080 +9343 51634 0.9940 +9343 51639 0.9270 +9343 51645 0.9990 +9343 51690 0.9980 +9343 51691 0.9990 +9343 51727 0.4510 +9343 51729 0.8320 +9343 51747 0.6840 +9343 51759 0.7380 +9343 54148 0.4450 +9343 54495 0.4150 +9343 54514 0.6730 +9343 54606 0.4070 +9343 54883 0.9860 +9343 54948 0.7040 +9343 54952 0.7700 +9343 54957 0.8540 +9343 54995 0.4690 +9343 55011 0.8120 +9343 55015 0.5080 +9343 55052 0.9330 +9343 55094 0.6280 +9343 55100 0.8130 +9343 55110 0.9880 +9343 55143 0.4770 +9343 55157 0.5060 +9343 55173 0.8720 +9343 55176 0.6890 +9343 55192 0.5150 +9343 55226 0.4400 +9343 55234 0.9910 +9343 55272 0.8490 +9343 55285 0.6360 +9343 55316 0.8070 +9343 55421 0.4370 +9343 55591 0.6070 +9343 55599 0.6460 +9343 55622 0.7780 +9343 55636 0.4460 +9343 55651 0.7280 +9343 55660 0.4550 +9343 55692 0.5230 +9343 55696 0.9990 +9343 55699 0.4170 +9343 55702 0.9930 +9343 55703 0.6610 +9343 55737 0.4110 +9343 55749 0.5510 +9343 55760 0.8210 +9343 55837 0.9170 +9343 56257 0.4740 +9343 56259 0.9100 +9343 56474 0.4790 +9343 56648 0.7050 +9343 56919 0.7130 +9343 56949 0.9990 +9343 57062 0.4280 +9343 57136 0.6680 +9343 57187 0.6700 +9343 57461 0.9860 +9343 57469 0.4330 +9343 57510 0.4240 +9343 57647 0.6370 +9343 57664 0.5930 +9343 57696 0.4580 +9343 57703 0.9990 +9343 57794 0.5780 +9343 57819 0.9980 +9343 58509 0.8290 +9343 58517 0.5040 +9343 59286 0.8600 +9343 60528 0.4270 +9343 60625 0.8530 +9343 60678 0.4860 +9343 63875 0.9370 +9343 63931 0.8350 +9343 64374 0.7000 +9343 64960 0.7650 +9343 64963 0.8140 +9343 64965 0.9500 +9343 64968 0.9420 +9343 64969 0.8730 +9343 64979 0.9360 +9343 64983 0.9230 +9343 65003 0.7410 +9343 65005 0.9430 +9343 65008 0.8330 +9343 65121 0.5600 +9343 65122 0.5600 +9343 65993 0.4310 +9343 79005 0.8010 +9343 79039 0.4140 +9343 79171 0.9330 +9343 79446 0.8880 +9343 79576 0.8010 +9343 79590 0.7940 +9343 79637 0.9230 +9343 79657 0.7620 +9343 79665 0.5710 +9343 79706 0.8220 +9343 79753 0.9950 +9343 79811 0.4320 +9343 79837 0.4060 +9343 80011 0.8030 +9343 80331 0.6890 +9343 81576 0.9570 +9343 81892 0.4450 +9343 83443 0.9930 +9343 83732 0.4730 +9343 83938 0.8310 +9343 84060 0.8190 +9343 84172 0.6770 +9343 84316 0.6380 +9343 84811 0.9960 +9343 84844 0.9940 +9343 84950 0.9910 +9343 84967 0.8760 +9343 85479 0.6750 +9343 87178 0.7250 +9343 90338 0.4190 +9343 90441 0.4750 +9343 91875 0.4120 +9343 91893 0.4540 +9343 92196 0.4930 +9343 92399 0.9030 +9343 93974 0.6780 +9343 94104 0.4840 +9343 114987 0.6780 +9343 115098 0.4470 +9343 116832 0.5690 +9343 117246 0.4670 +9343 120892 0.5210 +9343 122481 0.4460 +9343 122622 0.5040 +9343 124454 0.5860 +9343 124808 0.4450 +9343 126259 0.6370 +9343 126402 0.8060 +9343 129831 0.4690 +9343 133396 0.6730 +9343 140032 0.7510 +9343 140801 0.6960 +9343 140890 0.5020 +9343 143244 0.7050 +9343 143884 0.9940 +9343 147650 0.6370 +9343 151903 0.9730 +9343 153527 0.9980 +9343 154007 0.8380 +9343 158067 0.4460 +9343 163859 0.8600 +9343 164045 0.5300 +9343 164781 0.6060 +9343 165545 0.8200 +9343 200916 0.6280 +9343 219927 0.9420 +9343 220074 0.8310 +9343 220988 0.7310 +9343 221264 0.4460 +9343 221823 0.4130 +9343 222183 0.8910 +9343 256536 0.8400 +9343 284325 0.8420 +9343 285855 0.7710 +9343 343068 0.5600 +9343 343070 0.5600 +9343 347487 0.6890 +9343 347744 0.7660 +9343 348793 0.6090 +9343 387129 0.7590 +9343 387712 0.5010 +9343 390999 0.5600 +9343 391002 0.5600 +9343 400735 0.5600 +9343 400736 0.5600 +9343 440275 0.6020 +9343 440560 0.5600 +9343 440561 0.5600 +9343 441873 0.5600 +9343 641776 0.6150 +9343 643909 0.6150 +9343 645051 0.5410 +9343 645073 0.5410 +9343 645359 0.5600 +9343 653619 0.5600 +9343 728524 0.6150 +9343 729396 0.5410 +9343 729422 0.5410 +9343 729428 0.5410 +9343 729431 0.5410 +9343 729442 0.5410 +9343 729447 0.5410 +9343 729528 0.5600 +9343 100008586 0.5410 +9343 100132399 0.5410 +9343 100287482 0.6890 +9343 100505478 0.7580 +9343 100526842 0.8060 +9343 100529097 0.5890 +9343 100529239 0.5720 +9343 100534599 0.9760 +9343 100996746 0.6150 +9343 101929983 0.5600 +9343 102724473 0.5410 +9343 105180390 0.6150 +9343 105180391 0.6150 +9343 114483834 0.4890 +9344 9378 0.5240 +9344 9726 0.4590 +9344 10371 0.5240 +9344 10413 0.4030 +9344 10423 0.5260 +9344 10454 0.6140 +9344 10494 0.6610 +9344 11235 0.5560 +9344 22919 0.6220 +9344 23070 0.6240 +9344 23396 0.4780 +9344 23475 0.5670 +9344 26173 0.4260 +9344 26470 0.6330 +9344 29888 0.4550 +9344 29970 0.7610 +9344 51347 0.9440 +9344 51684 0.4190 +9344 54879 0.4380 +9344 55626 0.5300 +9344 56970 0.4520 +9344 57551 0.9430 +9344 57610 0.4510 +9344 58506 0.6690 +9344 60485 0.4230 +9344 79153 0.4220 +9344 79447 0.4940 +9344 80851 0.5420 +9344 83719 0.5430 +9344 83723 0.4710 +9344 84687 0.4990 +9344 90678 0.4500 +9344 112476 0.4860 +9344 124446 0.6060 +9344 146378 0.5060 +9344 151742 0.4700 +9344 155061 0.4370 +9344 253980 0.8020 +9344 253982 0.6000 +9344 283373 0.4410 +9344 283897 0.5850 +9344 283899 0.7650 +9344 399909 0.5530 +9344 100505385 0.7410 +9348 9394 0.6350 +9348 9653 0.7360 +9348 9672 0.6320 +9348 10082 0.6360 +9348 10090 0.5770 +9348 11285 0.4530 +9348 22856 0.4100 +9348 23213 0.4020 +9348 26035 0.6870 +9348 26229 0.4880 +9348 27233 0.7560 +9348 27284 0.7290 +9348 54480 0.4330 +9348 55454 0.4690 +9348 55501 0.4460 +9348 56548 0.4140 +9348 90161 0.5720 +9348 92126 0.4030 +9348 113189 0.4060 +9348 221914 0.6600 +9348 253980 0.4840 +9348 266722 0.5820 +9348 375790 0.5480 +9348 442038 0.7590 +9349 9360 0.4880 +9349 9425 0.4270 +9349 9528 0.4320 +9349 9533 0.9380 +9349 9553 0.9930 +9349 9617 0.6170 +9349 9636 0.7140 +9349 9652 0.4510 +9349 9669 0.9790 +9349 9732 0.9770 +9349 9775 0.4790 +9349 9789 0.4050 +9349 9801 0.9990 +9349 9858 0.9640 +9349 9862 0.4740 +9349 9973 0.4670 +9349 10049 0.4460 +9349 10056 0.4670 +9349 10061 0.7800 +9349 10102 0.9140 +9349 10105 0.4080 +9349 10135 0.6230 +9349 10200 0.4130 +9349 10201 0.4690 +9349 10294 0.5060 +9349 10399 0.9990 +9349 10412 0.9790 +9349 10419 0.4800 +9349 10430 0.8280 +9349 10438 0.6430 +9349 10450 0.4270 +9349 10455 0.4800 +9349 10465 0.4960 +9349 10473 0.9390 +9349 10476 0.4220 +9349 10480 0.5700 +9349 10492 0.4480 +9349 10528 0.4480 +9349 10537 0.6130 +9349 10557 0.8500 +9349 10574 0.6760 +9349 10575 0.5870 +9349 10576 0.5000 +9349 10657 0.4530 +9349 10666 0.5210 +9349 10694 0.4470 +9349 10726 0.5470 +9349 10730 0.6350 +9349 10765 0.4950 +9349 10767 0.8600 +9349 10808 0.4070 +9349 10939 0.8090 +9349 10952 0.9240 +9349 10964 0.5830 +9349 10969 0.8530 +9349 10985 0.8640 +9349 10988 0.8610 +9349 11047 0.6180 +9349 11080 0.4530 +9349 11128 0.9370 +9349 11137 0.4700 +9349 11222 0.9950 +9349 11224 0.9990 +9349 11315 0.6550 +9349 22894 0.4460 +9349 22927 0.8500 +9349 22948 0.5000 +9349 22982 0.4560 +9349 22984 0.9920 +9349 23076 0.8260 +9349 23135 0.6710 +9349 23148 0.6770 +9349 23173 0.8580 +9349 23181 0.4560 +9349 23193 0.4580 +9349 23204 0.9610 +9349 23212 0.5540 +9349 23234 0.4550 +9349 23246 0.9250 +9349 23252 0.8930 +9349 23341 0.4450 +9349 23395 0.4640 +9349 23405 0.5840 +9349 23423 0.4770 +9349 23478 0.4430 +9349 23480 0.8920 +9349 23481 0.9500 +9349 23517 0.6860 +9349 23521 0.9990 +9349 23560 0.9740 +9349 23640 0.9090 +9349 23708 0.5400 +9349 23732 0.8380 +9349 23759 0.4880 +9349 24140 0.6020 +9349 25789 0.4270 +9349 25822 0.4450 +9349 25873 0.9990 +9349 25885 0.9450 +9349 26046 0.8150 +9349 26135 0.9880 +9349 26155 0.9330 +9349 26156 0.9100 +9349 26164 0.5570 +9349 26168 0.5180 +9349 26227 0.4290 +9349 26251 0.5820 +9349 26271 0.6250 +9349 26275 0.9220 +9349 26289 0.6880 +9349 26354 0.8890 +9349 26589 0.9720 +9349 26986 0.7590 +9349 27000 0.4980 +9349 27012 0.5820 +9349 27043 0.5690 +9349 27068 0.4400 +9349 27079 0.6690 +9349 27292 0.4660 +9349 27430 0.6340 +9349 28972 0.4740 +9349 28991 0.5770 +9349 28998 0.9960 +9349 29083 0.8840 +9349 29088 0.7500 +9349 29093 0.9950 +9349 29102 0.5950 +9349 29789 0.4220 +9349 29889 0.9200 +9349 29922 0.4660 +9349 29927 0.9970 +9349 29960 0.6150 +9349 29978 0.5580 +9349 29979 0.5740 +9349 29997 0.8510 +9349 50487 0.5210 +9349 50613 0.5540 +9349 50808 0.6850 +9349 50814 0.6230 +9349 51001 0.4050 +9349 51014 0.4870 +9349 51018 0.4260 +9349 51021 0.9990 +9349 51023 0.8430 +9349 51042 0.8890 +9349 51065 0.9840 +9349 51068 0.9510 +9349 51069 0.9800 +9349 51073 0.9950 +9349 51081 0.9720 +9349 51116 0.9710 +9349 51119 0.6820 +9349 51121 0.9970 +9349 51149 0.9790 +9349 51154 0.9830 +9349 51182 0.4520 +9349 51187 0.9940 +9349 51224 0.5400 +9349 51263 0.7290 +9349 51264 0.9970 +9349 51314 0.5930 +9349 51319 0.9760 +9349 51388 0.9020 +9349 51398 0.5530 +9349 51520 0.4820 +9349 51574 0.6240 +9349 51720 0.5280 +9349 51727 0.7310 +9349 53918 0.8780 +9349 54059 0.4850 +9349 54431 0.5580 +9349 54463 0.5290 +9349 54464 0.4420 +9349 54475 0.4390 +9349 54499 0.8190 +9349 54516 0.6170 +9349 54517 0.7570 +9349 54543 0.5200 +9349 54552 0.7860 +9349 54596 0.5980 +9349 54606 0.4080 +9349 54663 0.8440 +9349 54788 0.4520 +9349 54802 0.4020 +9349 54881 0.7060 +9349 54888 0.4310 +9349 54948 0.9920 +9349 55052 0.9990 +9349 55139 0.4440 +9349 55143 0.5370 +9349 55153 0.4490 +9349 55157 0.4580 +9349 55168 0.8450 +9349 55173 0.9820 +9349 55176 0.9750 +9349 55178 0.8450 +9349 55268 0.4220 +9349 55272 0.9830 +9349 55299 0.9080 +9349 55301 0.4560 +9349 55308 0.4590 +9349 55316 0.9810 +9349 55319 0.8060 +9349 55324 0.7800 +9349 55341 0.9110 +9349 55466 0.4200 +9349 55591 0.8750 +9349 55607 0.5670 +9349 55629 0.5070 +9349 55646 0.8080 +9349 55651 0.8530 +9349 55695 0.4160 +9349 55699 0.4440 +9349 55703 0.9220 +9349 55759 0.9370 +9349 55802 0.5350 +9349 55854 0.7040 +9349 55862 0.4590 +9349 55893 0.5210 +9349 55969 0.4310 +9349 56474 0.4580 +9349 56479 0.5820 +9349 56647 0.9310 +9349 56648 0.9640 +9349 56731 0.5210 +9349 56893 0.5800 +9349 56926 0.8190 +9349 56965 0.8620 +9349 57003 0.8170 +9349 57129 0.9700 +9349 57418 0.7330 +9349 57470 0.4470 +9349 57471 0.4820 +9349 57609 0.4600 +9349 57696 0.6820 +9349 58477 0.8350 +9349 58505 0.5660 +9349 60386 0.4060 +9349 60488 0.9480 +9349 60558 0.8940 +9349 60559 0.4180 +9349 60678 0.9420 +9349 63875 0.9990 +9349 63899 0.4150 +9349 63931 0.9940 +9349 64146 0.9440 +9349 64221 0.4990 +9349 64318 0.8500 +9349 64374 0.9090 +9349 64432 0.4480 +9349 64960 0.9940 +9349 64963 0.9950 +9349 64965 0.9990 +9349 64968 0.9990 +9349 64969 0.9940 +9349 64975 0.9410 +9349 64976 0.8640 +9349 64978 0.5770 +9349 64979 0.9990 +9349 64981 0.9520 +9349 64983 0.9980 +9349 65003 0.9920 +9349 65005 0.9960 +9349 65008 0.9740 +9349 65080 0.8570 +9349 65121 0.7200 +9349 65122 0.7200 +9349 65993 0.5850 +9349 79036 0.5160 +9349 79048 0.8170 +9349 79084 0.6100 +9349 79137 0.4700 +9349 79159 0.4290 +9349 79165 0.4010 +9349 79587 0.4330 +9349 79590 0.9930 +9349 79631 0.9440 +9349 79668 0.8620 +9349 79707 0.5040 +9349 79728 0.8400 +9349 79730 0.4150 +9349 79848 0.4010 +9349 79922 0.5800 +9349 79962 0.4450 +9349 79982 0.4460 +9349 80135 0.8590 +9349 80146 0.6210 +9349 80218 0.5440 +9349 80221 0.5130 +9349 80270 0.6210 +9349 80349 0.4660 +9349 81875 0.4590 +9349 81887 0.5040 +9349 83448 0.7540 +9349 83743 0.6410 +9349 84154 0.6420 +9349 84172 0.9210 +9349 84273 0.5700 +9349 84298 0.8040 +9349 84340 0.5100 +9349 84365 0.9470 +9349 84545 0.9670 +9349 84549 0.8510 +9349 84705 0.8490 +9349 84851 0.5070 +9349 84881 0.6750 +9349 84993 0.5990 +9349 85476 0.9480 +9349 85865 0.5640 +9349 87178 0.4360 +9349 90313 0.4290 +9349 90441 0.9050 +9349 90459 0.4050 +9349 90624 0.5780 +9349 90701 0.4360 +9349 91408 0.4350 +9349 91574 0.6170 +9349 91875 0.8800 +9349 92170 0.8770 +9349 92196 0.8080 +9349 92399 0.9860 +9349 93107 0.5820 +9349 93517 0.6210 +9349 93550 0.6160 +9349 93974 0.4130 +9349 96459 0.4450 +9349 113000 0.6680 +9349 114781 0.5650 +9349 114908 0.4090 +9349 114987 0.9710 +9349 115098 0.8860 +9349 115416 0.9770 +9349 116541 0.4380 +9349 116832 0.9780 +9349 117246 0.9360 +9349 120892 0.6250 +9349 122481 0.6840 +9349 122622 0.4270 +9349 123263 0.4020 +9349 124359 0.4220 +9349 124454 0.8790 +9349 124995 0.4790 +9349 126402 0.9710 +9349 137994 0.4890 +9349 138428 0.4010 +9349 140032 0.9650 +9349 140432 0.4450 +9349 140801 0.9970 +9349 143244 0.9640 +9349 143630 0.5540 +9349 146212 0.6530 +9349 147011 0.5210 +9349 148022 0.4760 +9349 149041 0.5100 +9349 149478 0.5210 +9349 150353 0.4450 +9349 154288 0.5210 +9349 157310 0.5680 +9349 157869 0.4560 +9349 158067 0.6840 +9349 162427 0.4660 +9349 164153 0.6130 +9349 165721 0.4450 +9349 169522 0.5820 +9349 170850 0.5820 +9349 171425 0.4450 +9349 197322 0.4570 +9349 200916 0.9630 +9349 201595 0.7930 +9349 202052 0.4450 +9349 203068 0.8440 +9349 203427 0.4050 +9349 219927 0.9990 +9349 221078 0.7640 +9349 221264 0.6880 +9349 253175 0.4220 +9349 254268 0.9160 +9349 255308 0.4570 +9349 283518 0.5820 +9349 283600 0.4050 +9349 284418 0.4010 +9349 285126 0.4450 +9349 285190 0.4010 +9349 285282 0.4500 +9349 285367 0.6680 +9349 285755 0.4010 +9349 285855 0.9850 +9349 342538 0.9490 +9349 343068 0.7200 +9349 343070 0.7200 +9349 345051 0.8380 +9349 347487 0.9770 +9349 353376 0.4760 +9349 374407 0.4450 +9349 374659 0.9430 +9349 376497 0.4570 +9349 387129 0.9490 +9349 387338 0.4190 +9349 387712 0.5640 +9349 390999 0.7200 +9349 391002 0.7200 +9349 400735 0.7200 +9349 400736 0.7200 +9349 401466 0.4370 +9349 440560 0.7200 +9349 440561 0.7200 +9349 441873 0.7200 +9349 619279 0.5210 +9349 641776 0.8350 +9349 642987 0.5250 +9349 643909 0.8350 +9349 644591 0.4070 +9349 645051 0.7830 +9349 645073 0.7830 +9349 645142 0.4070 +9349 645359 0.7200 +9349 653505 0.4150 +9349 653598 0.4070 +9349 653619 0.7200 +9349 654364 0.5140 +9349 727851 0.4010 +9349 728524 0.8350 +9349 728945 0.4070 +9349 729396 0.7830 +9349 729422 0.7830 +9349 729428 0.7830 +9349 729431 0.7830 +9349 729442 0.7830 +9349 729447 0.7830 +9349 729528 0.7200 +9349 729857 0.4010 +9349 730262 0.4070 +9349 100008586 0.7830 +9349 100128731 0.5630 +9349 100132399 0.7830 +9349 100287482 0.9030 +9349 100302736 0.4760 +9349 100505478 0.9430 +9349 100526842 0.9960 +9349 100527943 0.4290 +9349 100529097 0.9610 +9349 100529239 0.9940 +9349 100996746 0.8350 +9349 101929983 0.7200 +9349 102724473 0.7830 +9349 105180390 0.8350 +9349 105180391 0.8350 +9349 105371242 0.4070 +9349 114483834 0.7930 +9350 9573 0.6710 +9350 10637 0.7250 +9350 11261 0.7550 +9350 22943 0.4820 +9350 25928 0.4800 +9350 51384 0.9020 +9350 54361 0.9100 +9350 55997 0.4930 +9350 63978 0.4520 +9350 64321 0.6050 +9350 79923 0.4410 +9350 80311 0.4200 +9350 80326 0.9010 +9350 81029 0.9070 +9350 83881 0.6420 +9350 89780 0.9320 +9350 130399 0.4720 +9350 199699 0.8560 +9351 9368 0.9010 +9351 9826 0.4990 +9351 10083 0.4960 +9351 10257 0.4380 +9351 10411 0.4180 +9351 10413 0.6080 +9351 10452 0.4250 +9351 10572 0.6460 +9351 10577 0.6120 +9351 10607 0.4820 +9351 11060 0.5420 +9351 11273 0.4910 +9351 22941 0.6180 +9351 23022 0.4100 +9351 23035 0.6940 +9351 23139 0.5830 +9351 23236 0.7630 +9351 23239 0.7330 +9351 23315 0.5570 +9351 23365 0.5310 +9351 25937 0.6720 +9351 26000 0.5040 +9351 29970 0.4560 +9351 56302 0.4010 +9351 57120 0.7830 +9351 57121 0.6180 +9351 59272 0.5680 +9351 64283 0.5080 +9351 65010 0.7110 +9351 83874 0.7860 +9351 84687 0.5550 +9351 124801 0.5400 +9351 160364 0.4090 +9351 390916 0.6160 +9351 100505385 0.4560 +9352 9537 0.7720 +9352 9588 0.4180 +9352 9802 0.7630 +9352 9811 0.4010 +9352 9852 0.5640 +9352 9861 0.5710 +9352 9886 0.5570 +9352 10130 0.4440 +9352 10190 0.6020 +9352 10213 0.9860 +9352 10294 0.5400 +9352 10539 0.6140 +9352 10549 0.4290 +9352 10575 0.5250 +9352 10576 0.4380 +9352 10728 0.4270 +9352 10907 0.5750 +9352 10935 0.4430 +9352 10980 0.4240 +9352 10987 0.7570 +9352 10988 0.4040 +9352 11047 0.7070 +9352 11171 0.4010 +9352 11260 0.5900 +9352 22897 0.4380 +9352 23221 0.5580 +9352 25828 0.5440 +9352 27101 0.4530 +9352 27247 0.7670 +9352 27249 0.4490 +9352 27289 0.5750 +9352 29015 0.5010 +9352 51022 0.4080 +9352 51377 0.6210 +9352 51629 0.4610 +9352 51699 0.4830 +9352 54431 0.4520 +9352 54953 0.4570 +9352 55972 0.4650 +9352 56255 0.4060 +9352 58480 0.5730 +9352 59349 0.5180 +9352 64359 0.5780 +9352 81542 0.4810 +9352 81605 0.4250 +9352 84817 0.7530 +9352 91408 0.4510 +9352 93621 0.4250 +9352 171177 0.5620 +9352 220134 0.4620 +9352 378884 0.5510 +9352 100423062 0.6780 +9353 9355 0.5740 +9353 9423 0.8210 +9353 9542 0.4560 +9353 9723 0.4050 +9353 9839 0.4350 +9353 9901 0.6390 +9353 9956 0.4430 +9353 10298 0.5350 +9353 10371 0.7410 +9353 10479 0.4120 +9353 10486 0.5590 +9353 10487 0.5260 +9353 10512 0.5170 +9353 22854 0.5530 +9353 22859 0.5510 +9353 23118 0.4140 +9353 23122 0.5110 +9353 23129 0.5750 +9353 23253 0.5630 +9353 23266 0.6350 +9353 23284 0.5770 +9353 23332 0.5020 +9353 23380 0.6470 +9353 51466 0.5520 +9353 54437 0.5740 +9353 54538 0.9980 +9353 55740 0.6370 +9353 56924 0.5670 +9353 56980 0.4260 +9353 57144 0.5590 +9353 57522 0.8210 +9353 64221 0.9110 +9353 80728 0.5940 +9353 81832 0.4290 +9353 84504 0.6640 +9353 89884 0.5540 +9353 133015 0.5070 +9353 145957 0.4540 +9353 219699 0.4590 +9353 223117 0.4600 +9353 375790 0.4440 +9354 9373 0.7540 +9354 9627 0.4380 +9354 9690 0.4200 +9354 9807 0.6340 +9354 9819 0.4160 +9354 10213 0.4850 +9354 10273 0.9340 +9354 10277 0.5580 +9354 10299 0.6640 +9354 10477 0.4840 +9354 10537 0.5110 +9354 10987 0.4470 +9354 10989 0.4100 +9354 11047 0.4450 +9354 11065 0.4190 +9354 11124 0.6080 +9354 23190 0.8910 +9354 23197 0.6960 +9354 23304 0.5930 +9354 23327 0.5930 +9354 23640 0.6470 +9354 24144 0.4230 +9354 26043 0.4580 +9354 26608 0.4070 +9354 27338 0.6690 +9354 29089 0.4450 +9354 29116 0.4840 +9354 29978 0.9340 +9354 29979 0.9270 +9354 50613 0.5610 +9354 51366 0.4220 +9354 51465 0.6790 +9354 51619 0.5090 +9354 54926 0.4640 +9354 54956 0.4280 +9354 55139 0.7680 +9354 55236 0.4440 +9354 55284 0.4530 +9354 55432 0.9120 +9354 55521 0.4110 +9354 55611 0.4660 +9354 55666 0.9370 +9354 55768 0.5950 +9354 55898 0.4750 +9354 55968 0.8120 +9354 56893 0.6310 +9354 57448 0.4940 +9354 57630 0.4470 +9354 63893 0.4990 +9354 79029 0.6430 +9354 79139 0.6660 +9354 79754 0.5030 +9354 80124 0.4880 +9354 80194 0.4240 +9354 80233 0.8000 +9354 80700 0.6410 +9354 84447 0.4420 +9354 84896 0.4240 +9354 84993 0.4900 +9354 91544 0.4970 +9354 92552 0.5470 +9354 137886 0.7620 +9354 143630 0.5270 +9354 146862 0.7340 +9354 151525 0.4140 +9354 165324 0.5040 +9354 166378 0.8310 +9354 197131 0.6130 +9354 254225 0.4090 +9355 10215 0.5020 +9355 10370 0.8950 +9355 10716 0.5880 +9355 10763 0.4470 +9355 10783 0.6540 +9355 11023 0.4700 +9355 11166 0.4120 +9355 23314 0.5750 +9355 23316 0.4630 +9355 23512 0.4350 +9355 25806 0.4490 +9355 27319 0.4700 +9355 51132 0.7270 +9355 51176 0.4990 +9355 51232 0.4010 +9355 55079 0.6080 +9355 55885 0.4480 +9355 56751 0.4830 +9355 56956 0.8090 +9355 57706 0.6420 +9355 58524 0.4380 +9355 59352 0.4030 +9355 63950 0.4080 +9355 63973 0.7650 +9355 64221 0.6520 +9355 64919 0.4630 +9355 79190 0.4370 +9355 79191 0.4790 +9355 89780 0.4190 +9355 120237 0.6220 +9355 121643 0.4490 +9355 137970 0.4640 +9355 140609 0.6350 +9355 163486 0.4970 +9355 167410 0.4700 +9355 170463 0.6680 +9355 170825 0.4960 +9355 220202 0.5090 +9355 221833 0.5200 +9355 286204 0.6020 +9355 338917 0.4840 +9355 343472 0.4660 +9355 388585 0.4190 +9355 389549 0.5540 +9355 390259 0.4270 +9356 9376 0.7980 +9356 9390 0.5030 +9356 9429 0.6970 +9356 10257 0.7340 +9356 10599 0.6910 +9356 10741 0.4970 +9356 10786 0.7590 +9356 10864 0.5550 +9356 11309 0.6090 +9356 22987 0.4850 +9356 23327 0.4150 +9356 28231 0.4890 +9356 28232 0.4880 +9356 28234 0.7130 +9356 29988 0.4990 +9356 51081 0.4090 +9356 51614 0.4370 +9356 53919 0.4810 +9356 55244 0.7520 +9356 56606 0.8400 +9356 64849 0.6680 +9356 79693 0.7710 +9356 89845 0.4050 +9356 113235 0.4040 +9356 134288 0.4080 +9356 146802 0.7370 +9356 157724 0.5320 +9356 159963 0.4560 +9356 220963 0.4950 +9356 340024 0.4730 +9356 353189 0.6260 +9358 10631 0.4080 +9358 22801 0.5590 +9358 23213 0.4410 +9358 25878 0.5120 +9358 54829 0.4710 +9358 151887 0.4480 +9360 9376 0.5750 +9360 9410 0.8280 +9360 9420 0.4370 +9360 9429 0.6930 +9360 9563 0.5990 +9360 9669 0.6760 +9360 9716 0.8310 +9360 9774 0.4460 +9360 9775 0.8290 +9360 9785 0.9630 +9360 9879 0.5540 +9360 9939 0.8790 +9360 9967 0.5520 +9360 9970 0.7200 +9360 9971 0.5060 +9360 10045 0.9300 +9360 10131 0.5970 +9360 10153 0.4760 +9360 10189 0.8170 +9360 10199 0.6470 +9360 10250 0.8960 +9360 10257 0.4710 +9360 10262 0.5370 +9360 10283 0.5750 +9360 10286 0.8480 +9360 10291 0.5350 +9360 10450 0.8580 +9360 10521 0.4950 +9360 10569 0.9640 +9360 10594 0.8770 +9360 10598 0.8110 +9360 10599 0.7790 +9360 10720 0.7610 +9360 10728 0.7590 +9360 10858 0.4820 +9360 10946 0.5490 +9360 10963 0.7590 +9360 10992 0.5140 +9360 11080 0.5570 +9360 11222 0.5290 +9360 11309 0.5500 +9360 11325 0.4890 +9360 11338 0.5190 +9360 22794 0.8010 +9360 22938 0.8900 +9360 22977 0.4190 +9360 22985 0.4800 +9360 23020 0.9030 +9360 23091 0.5420 +9360 23264 0.4300 +9360 23331 0.4180 +9360 23350 0.5230 +9360 23398 0.9120 +9360 23450 0.4970 +9360 23451 0.6120 +9360 23469 0.4680 +9360 23524 0.8530 +9360 23621 0.4390 +9360 23640 0.4750 +9360 24144 0.5320 +9360 25822 0.5500 +9360 25836 0.4540 +9360 25949 0.9690 +9360 25957 0.4460 +9360 26589 0.4670 +9360 27233 0.5910 +9360 27238 0.4680 +9360 27284 0.5980 +9360 27306 0.7140 +9360 27339 0.8750 +9360 28234 0.6830 +9360 28998 0.5170 +9360 29066 0.4900 +9360 29083 0.4270 +9360 29785 0.5820 +9360 29803 0.4200 +9360 29896 0.7200 +9360 30836 0.4430 +9360 51069 0.4590 +9360 51081 0.5140 +9360 51167 0.4390 +9360 51302 0.4060 +9360 51340 0.8710 +9360 51362 0.9730 +9360 51503 0.8930 +9360 51574 0.4190 +9360 51575 0.4830 +9360 51585 0.4130 +9360 51602 0.4350 +9360 51634 0.4850 +9360 51639 0.4290 +9360 51645 0.9610 +9360 51773 0.5420 +9360 54205 0.4440 +9360 54490 0.7610 +9360 54575 0.7910 +9360 54576 0.7910 +9360 54577 0.7910 +9360 54578 0.7980 +9360 54579 0.7650 +9360 54600 0.7850 +9360 54657 0.8110 +9360 54658 0.7910 +9360 54659 0.7710 +9360 54737 0.4420 +9360 54819 0.5380 +9360 54883 0.8340 +9360 54905 0.5320 +9360 54970 0.4180 +9360 55110 0.8080 +9360 55119 0.6820 +9360 55178 0.4330 +9360 55216 0.4400 +9360 55244 0.5010 +9360 55435 0.6150 +9360 55660 0.8370 +9360 55692 0.5910 +9360 55696 0.8430 +9360 55702 0.8180 +9360 55749 0.4120 +9360 55854 0.5180 +9360 56603 0.4540 +9360 56949 0.8760 +9360 57129 0.4880 +9360 57187 0.5420 +9360 57404 0.4310 +9360 57461 0.8060 +9360 57491 0.4240 +9360 57703 0.8950 +9360 57834 0.4170 +9360 58517 0.6270 +9360 59341 0.5890 +9360 63875 0.4810 +9360 64083 0.4590 +9360 64374 0.6550 +9360 64805 0.7920 +9360 64816 0.5820 +9360 65003 0.4990 +9360 65109 0.8570 +9360 65117 0.4620 +9360 66002 0.4780 +9360 79001 0.6660 +9360 79154 0.4170 +9360 79576 0.6490 +9360 79590 0.4930 +9360 79647 0.4030 +9360 79753 0.8800 +9360 79799 0.7610 +9360 79811 0.7930 +9360 79893 0.4230 +9360 79982 0.4050 +9360 80221 0.4990 +9360 80777 0.8860 +9360 81570 0.4810 +9360 83443 0.4920 +9360 84295 0.4140 +9360 84545 0.4630 +9360 84705 0.4090 +9360 84706 0.4270 +9360 84811 0.5390 +9360 84896 0.5640 +9360 84950 0.6590 +9360 85363 0.6180 +9360 92170 0.4440 +9360 96459 0.5540 +9360 113612 0.4900 +9360 114799 0.6160 +9360 115416 0.4250 +9360 120227 0.5890 +9360 124245 0.6390 +9360 124637 0.4280 +9360 127933 0.4430 +9360 133482 0.5800 +9360 134864 0.4810 +9360 135152 0.8020 +9360 143884 0.6260 +9360 146802 0.4700 +9360 157570 0.5410 +9360 199746 0.5070 +9360 199974 0.4530 +9360 219927 0.4870 +9360 220074 0.4510 +9360 220988 0.4970 +9360 257202 0.4600 +9360 257415 0.4440 +9360 259282 0.6000 +9360 285440 0.4030 +9360 340665 0.4410 +9360 374407 0.5500 +9360 442038 0.5930 +9360 493869 0.4600 +9360 574537 0.7610 +9360 100861540 0.7650 +9360 100885848 0.5090 +9360 100885850 0.5090 +9361 9377 0.4150 +9361 9399 0.4130 +9361 9401 0.4320 +9361 9512 0.5750 +9361 9694 0.4160 +9361 9804 0.4260 +9361 9812 0.4300 +9361 9927 0.5320 +9361 10059 0.4690 +9361 10128 0.6240 +9361 10131 0.7080 +9361 10440 0.4590 +9361 10452 0.5540 +9361 10469 0.6470 +9361 10525 0.4390 +9361 10531 0.5290 +9361 10574 0.5120 +9361 10575 0.4600 +9361 10576 0.4500 +9361 10693 0.4340 +9361 10730 0.8270 +9361 10845 0.9120 +9361 10939 0.8500 +9361 11331 0.6200 +9361 22809 0.6630 +9361 22907 0.4710 +9361 22948 0.4470 +9361 23203 0.6880 +9361 23395 0.4540 +9361 23410 0.4690 +9361 23464 0.5310 +9361 25813 0.4650 +9361 26284 0.4860 +9361 27429 0.6120 +9361 30968 0.6410 +9361 51024 0.4210 +9361 51116 0.4560 +9361 51182 0.4330 +9361 51185 0.8260 +9361 51295 0.5800 +9361 51360 0.4040 +9361 51520 0.4320 +9361 54205 0.4320 +9361 54431 0.4050 +9361 55210 0.5090 +9361 55486 0.5710 +9361 55626 0.4100 +9361 55669 0.4770 +9361 55699 0.4070 +9361 55780 0.4350 +9361 55794 0.4030 +9361 56652 0.4240 +9361 57176 0.4040 +9361 57506 0.4400 +9361 63929 0.5080 +9361 64216 0.4650 +9361 65018 0.5530 +9361 79738 0.4340 +9361 80273 0.7750 +9361 81554 0.4080 +9361 81570 0.8710 +9361 84140 0.4340 +9361 84701 0.6460 +9361 87178 0.4840 +9361 115209 0.7110 +9361 131474 0.5390 +9361 134266 0.7630 +9361 139341 0.4570 +9361 203100 0.4040 +9361 219743 0.4320 +9361 374291 0.7850 +9361 440275 0.4040 +9361 441476 0.5260 +9362 9369 0.5030 +9362 9796 0.5210 +9362 10368 0.4190 +9362 10956 0.5420 +9362 23620 0.4170 +9362 26289 0.7030 +9362 51440 0.4360 +9362 56899 0.5150 +9362 57030 0.4230 +9362 60484 0.5780 +9362 65975 0.4320 +9362 80128 0.4850 +9362 83987 0.4300 +9362 84958 0.4180 +9362 93377 0.4770 +9362 93517 0.4760 +9362 131034 0.5070 +9362 132204 0.4520 +9362 100170229 0.4250 +9363 9474 0.6980 +9363 10567 0.4840 +9363 10597 0.4050 +9363 22878 0.5510 +9363 22902 0.6090 +9363 23080 0.4410 +9363 25771 0.4890 +9363 26276 0.5000 +9363 27095 0.4450 +9363 51399 0.5530 +9363 54101 0.4450 +9363 55054 0.9100 +9363 55255 0.5900 +9363 55633 0.4850 +9363 55680 0.6200 +9363 57128 0.5450 +9363 57179 0.4850 +9363 57589 0.5300 +9363 58485 0.5550 +9363 65082 0.4810 +9363 79090 0.4210 +9363 80230 0.4160 +9363 83452 0.8980 +9363 112812 0.4250 +9363 122553 0.4250 +9363 126003 0.5090 +9363 128637 0.4070 +9363 140775 0.5680 +9363 167691 0.4450 +9363 203228 0.5900 +9363 100128327 0.4450 +9364 9880 0.4530 +9364 9957 0.4040 +9364 10466 0.4040 +9364 10923 0.4010 +9364 11160 0.4400 +9364 22844 0.4580 +9364 22898 0.4560 +9364 22999 0.4020 +9364 23093 0.5180 +9364 23258 0.4490 +9364 23746 0.4070 +9364 26010 0.4100 +9364 26050 0.4150 +9364 28981 0.4090 +9364 54455 0.4010 +9364 54714 0.4160 +9364 55092 0.4430 +9364 55784 0.4550 +9364 57096 0.5010 +9364 57699 0.4310 +9364 60412 0.4110 +9364 64792 0.4940 +9364 79633 0.4100 +9364 79958 0.4470 +9364 83394 0.4690 +9364 83988 0.4270 +9364 84131 0.4180 +9364 84839 0.4450 +9364 92211 0.4920 +9364 114134 0.4520 +9364 115950 0.5870 +9364 117177 0.4620 +9364 128338 0.4010 +9364 144983 0.4170 +9364 152485 0.4190 +9364 157657 0.6210 +9364 160518 0.4340 +9364 167691 0.4140 +9364 169522 0.4270 +9364 254173 0.4810 +9364 282809 0.5060 +9365 9965 0.9760 +9365 10327 0.9050 +9365 10568 0.5500 +9365 10720 0.6600 +9365 10767 0.4950 +9365 10817 0.4490 +9365 10818 0.8270 +9365 22943 0.5530 +9365 23371 0.4590 +9365 23411 0.6070 +9365 23586 0.4890 +9365 23767 0.5160 +9365 23768 0.5060 +9365 23769 0.5440 +9365 26281 0.9910 +9365 26291 0.9780 +9365 27006 0.9910 +9365 30849 0.5020 +9365 50964 0.5810 +9365 54106 0.5060 +9365 54361 0.7320 +9365 54490 0.6600 +9365 54575 0.6600 +9365 54576 0.6650 +9365 54577 0.6600 +9365 54578 0.6600 +9365 54579 0.6600 +9365 54600 0.6600 +9365 54657 0.6600 +9365 54658 0.6600 +9365 54659 0.6600 +9365 55503 0.7150 +9365 55586 0.8070 +9365 56302 0.9030 +9365 56955 0.5670 +9365 57591 0.4150 +9365 58191 0.4640 +9365 79799 0.6720 +9365 142680 0.8900 +9365 150223 0.4240 +9365 152831 0.4990 +9365 337876 0.4470 +9365 574537 0.6600 +9367 9392 0.6590 +9367 9482 0.5090 +9367 9522 0.4880 +9367 9559 0.5260 +9367 9648 0.9760 +9367 9779 0.4380 +9367 9905 0.8360 +9367 10226 0.8480 +9367 10228 0.4270 +9367 10244 0.7010 +9367 10490 0.4210 +9367 10597 0.4100 +9367 10652 0.5810 +9367 22836 0.8400 +9367 22879 0.5340 +9367 23011 0.5010 +9367 23207 0.9410 +9367 23339 0.6750 +9367 23355 0.4010 +9367 23446 0.4420 +9367 23507 0.4280 +9367 23673 0.7160 +9367 26276 0.8160 +9367 27072 0.8920 +9367 27147 0.7330 +9367 51209 0.9050 +9367 51361 0.4480 +9367 51542 0.5340 +9367 51622 0.6520 +9367 51699 0.5260 +9367 54820 0.9140 +9367 54832 0.4520 +9367 55275 0.6360 +9367 55737 0.6310 +9367 55754 0.4490 +9367 55823 0.9090 +9367 56850 0.6090 +9367 57617 0.9020 +9367 63908 0.6420 +9367 64145 0.4320 +9367 64601 0.9140 +9367 64786 0.6430 +9367 65082 0.8460 +9367 79961 0.6400 +9367 81565 0.4120 +9367 81631 0.4120 +9367 84079 0.4750 +9367 84315 0.5620 +9367 84343 0.4020 +9367 84376 0.4610 +9367 84932 0.4230 +9367 112936 0.4060 +9367 129049 0.7020 +9367 143187 0.7110 +9367 163259 0.6550 +9367 170082 0.4600 +9367 221960 0.6450 +9367 254428 0.4220 +9367 347365 0.4110 +9368 9497 0.5410 +9368 9498 0.4930 +9368 10071 0.4740 +9368 10257 0.7710 +9368 10268 0.6680 +9368 10399 0.4630 +9368 10413 0.6850 +9368 10458 0.5740 +9368 10479 0.4530 +9368 10568 0.9230 +9368 10598 0.4760 +9368 10636 0.4920 +9368 10728 0.4080 +9368 10956 0.4040 +9368 11314 0.4260 +9368 22941 0.4710 +9368 23035 0.8420 +9368 23139 0.4670 +9368 23236 0.8030 +9368 23239 0.4190 +9368 23315 0.5440 +9368 23426 0.4970 +9368 23433 0.4170 +9368 26000 0.4940 +9368 26151 0.7700 +9368 26230 0.4180 +9368 50512 0.5710 +9368 51564 0.4380 +9368 51806 0.5380 +9368 55114 0.6780 +9368 55824 0.8990 +9368 55914 0.5480 +9368 56606 0.5900 +9368 57120 0.8660 +9368 59272 0.6920 +9368 65010 0.8430 +9368 79092 0.4770 +9368 79849 0.4770 +9368 81609 0.4230 +9368 83874 0.9550 +9368 84260 0.4510 +9368 91860 0.5400 +9368 92359 0.4910 +9368 94274 0.4620 +9368 114799 0.4580 +9368 115019 0.4960 +9368 124599 0.4340 +9368 133482 0.5440 +9368 142680 0.9610 +9368 157570 0.4580 +9368 160364 0.4090 +9368 163688 0.5370 +9368 285195 0.4050 +9368 389015 0.4650 +9368 653361 0.6180 +9369 9378 0.7520 +9369 9379 0.5850 +9369 9454 0.5160 +9369 9455 0.6910 +9369 9456 0.6080 +9369 9546 0.5280 +9369 10243 0.4040 +9369 11165 0.5050 +9369 11249 0.4940 +9369 22829 0.8270 +9369 22839 0.5330 +9369 22871 0.9640 +9369 22941 0.7250 +9369 23017 0.5330 +9369 23040 0.4730 +9369 23114 0.5770 +9369 23136 0.5360 +9369 23788 0.4750 +9369 25970 0.5070 +9369 26045 0.9200 +9369 26047 0.5920 +9369 28988 0.4990 +9369 30010 0.6710 +9369 50833 0.5490 +9369 50944 0.6960 +9369 51086 0.4960 +9369 51277 0.4780 +9369 53353 0.4190 +9369 54413 0.9400 +9369 54715 0.4450 +9369 54814 0.4750 +9369 54958 0.5050 +9369 55327 0.5460 +9369 57502 0.8590 +9369 57507 0.4780 +9369 57526 0.4550 +9369 57555 0.9780 +9369 57628 0.4940 +9369 57669 0.5200 +9369 58512 0.6340 +9369 64130 0.5310 +9369 79047 0.5410 +9369 79068 0.5200 +9369 80059 0.7390 +9369 84320 0.4010 +9369 85358 0.7030 +9369 89866 0.5710 +9369 91683 0.5380 +9369 127018 0.4400 +9369 127833 0.6420 +9369 129787 0.5830 +9369 131034 0.4190 +9369 132789 0.5770 +9369 134359 0.4350 +9369 140679 0.4340 +9369 140689 0.4200 +9369 143425 0.5450 +9369 147381 0.6250 +9369 152330 0.6720 +9369 158038 0.5040 +9369 165257 0.5570 +9369 219402 0.4790 +9369 253559 0.5620 +9369 255239 0.6300 +9369 257194 0.6410 +9369 341359 0.5250 +9369 347730 0.7180 +9369 347731 0.8240 +9369 402665 0.5420 +9369 100526835 0.4840 +9370 9412 0.4990 +9370 9429 0.4370 +9370 9439 0.5070 +9370 9440 0.4990 +9370 9441 0.4990 +9370 9442 0.4990 +9370 9443 0.4990 +9370 9474 0.5050 +9370 9477 0.5090 +9370 9563 0.5430 +9370 9611 0.6380 +9370 9612 0.5870 +9370 9862 0.4990 +9370 9882 0.4310 +9370 9965 0.4320 +9370 9967 0.5630 +9370 9968 0.4990 +9370 9969 0.5230 +9370 9971 0.4880 +9370 10001 0.4990 +9370 10025 0.4990 +9370 10062 0.4180 +9370 10135 0.8760 +9370 10499 0.5880 +9370 10645 0.6060 +9370 10891 0.9440 +9370 22918 0.4090 +9370 23071 0.6360 +9370 23090 0.4490 +9370 23097 0.4990 +9370 23175 0.4210 +9370 23389 0.4990 +9370 23411 0.8620 +9370 25970 0.4780 +9370 26060 0.8930 +9370 26119 0.4540 +9370 26281 0.6020 +9370 26291 0.7820 +9370 27006 0.6060 +9370 29079 0.4990 +9370 29121 0.4210 +9370 50507 0.5640 +9370 50616 0.5460 +9370 51003 0.4990 +9370 51085 0.7090 +9370 51094 0.9990 +9370 51129 0.4920 +9370 51422 0.5840 +9370 51586 0.4990 +9370 51738 0.8440 +9370 53345 0.4020 +9370 54622 0.4330 +9370 54797 0.4990 +9370 55054 0.4780 +9370 55090 0.4990 +9370 55588 0.4990 +9370 55600 0.7710 +9370 56729 0.9670 +9370 57048 0.4300 +9370 57104 0.7050 +9370 57818 0.5670 +9370 63924 0.7430 +9370 63976 0.6590 +9370 79068 0.5420 +9370 79602 0.9990 +9370 79966 0.4790 +9370 80306 0.4990 +9370 80339 0.6030 +9370 81857 0.5120 +9370 83401 0.4800 +9370 84246 0.4990 +9370 84498 0.5190 +9370 84649 0.5130 +9370 84666 0.9330 +9370 84706 0.5070 +9370 85441 0.4990 +9370 90390 0.4990 +9370 92579 0.5580 +9370 112950 0.4990 +9370 121340 0.4370 +9370 126129 0.4330 +9370 133522 0.4320 +9370 137902 0.5450 +9370 145264 0.7200 +9370 145957 0.4440 +9370 149685 0.5000 +9370 152559 0.6420 +9370 152831 0.6010 +9370 164091 0.8000 +9370 219623 0.4690 +9370 252995 0.6650 +9370 257202 0.5290 +9370 338557 0.4550 +9370 376497 0.4060 +9370 388581 0.4460 +9370 400569 0.4990 +9370 440503 0.4480 +9370 493869 0.5240 +9370 646480 0.6240 +9370 646486 0.5990 +9370 728226 0.4370 +9370 729359 0.6910 +9371 9493 0.6080 +9371 9585 0.6070 +9371 9742 0.5740 +9371 9777 0.5840 +9371 9928 0.6020 +9371 9973 0.4300 +9371 10112 0.6030 +9371 10121 0.5150 +9371 10540 0.5550 +9371 10671 0.5030 +9371 10749 0.5920 +9371 11004 0.6200 +9371 11020 0.5210 +9371 11127 0.9990 +9371 11258 0.5200 +9371 22920 0.9990 +9371 23046 0.5910 +9371 23059 0.5220 +9371 23095 0.6010 +9371 23303 0.6000 +9371 23322 0.4030 +9371 23345 0.6620 +9371 23397 0.4330 +9371 23509 0.7700 +9371 24137 0.4900 +9371 25897 0.4260 +9371 26056 0.6580 +9371 26128 0.5710 +9371 26146 0.5240 +9371 26153 0.5940 +9371 26160 0.6670 +9371 26286 0.5010 +9371 28981 0.5840 +9371 29127 0.4700 +9371 51098 0.7430 +9371 51164 0.5190 +9371 51361 0.5320 +9371 51594 0.5130 +9371 51626 0.4550 +9371 51668 0.4230 +9371 53407 0.5510 +9371 54820 0.6170 +9371 55081 0.6910 +9371 55083 0.5820 +9371 55212 0.5200 +9371 55252 0.7030 +9371 55582 0.5870 +9371 55605 0.6240 +9371 55614 0.5920 +9371 55738 0.5070 +9371 55764 0.6100 +9371 55850 0.5150 +9371 55860 0.5010 +9371 56912 0.8040 +9371 56992 0.7480 +9371 57539 0.6410 +9371 57560 0.5960 +9371 57576 0.6040 +9371 57728 0.6440 +9371 60561 0.5030 +9371 63971 0.6000 +9371 64792 0.4870 +9371 64837 0.7990 +9371 79659 0.5890 +9371 79809 0.5890 +9371 79989 0.6900 +9371 80173 0.6040 +9371 80184 0.4160 +9371 81565 0.5730 +9371 81930 0.6070 +9371 84364 0.5030 +9371 84516 0.5180 +9371 84643 0.5970 +9371 84823 0.4670 +9371 85376 0.7420 +9371 89891 0.4100 +9371 89953 0.4940 +9371 90410 0.8090 +9371 90990 0.6290 +9371 93661 0.4990 +9371 112752 0.4830 +9371 124602 0.5920 +9371 140688 0.4760 +9371 140732 0.5220 +9371 140893 0.5160 +9371 146909 0.5940 +9371 147700 0.5570 +9371 147872 0.4060 +9371 150737 0.6060 +9371 166655 0.7880 +9371 171023 0.8110 +9371 200894 0.4880 +9371 221458 0.5680 +9371 256979 0.4430 +9371 261734 0.4330 +9371 283385 0.4920 +9371 285643 0.4890 +9371 344148 0.4350 +9371 374654 0.6070 +9372 9622 0.4340 +9372 9765 0.9220 +9372 10254 0.5000 +9372 11012 0.4460 +9372 23645 0.5830 +9372 25930 0.9450 +9372 26994 0.6320 +9372 55603 0.5650 +9372 55914 0.8380 +9372 56649 0.6320 +9372 57154 0.4390 +9372 64750 0.5220 +9372 440387 0.5550 +9373 9612 0.4070 +9373 9646 0.5630 +9373 9868 0.4160 +9373 10013 0.7480 +9373 10254 0.5120 +9373 10277 0.7610 +9373 10291 0.4240 +9373 10409 0.6640 +9373 10537 0.4260 +9373 10987 0.4910 +9373 11124 0.8830 +9373 11218 0.4830 +9373 22888 0.4280 +9373 23173 0.4720 +9373 23195 0.4020 +9373 23197 0.8820 +9373 23219 0.4710 +9373 23327 0.5880 +9373 23534 0.4560 +9373 25885 0.4230 +9373 26043 0.8070 +9373 26046 0.4750 +9373 29978 0.4800 +9373 29979 0.7400 +9373 50640 0.4390 +9373 51035 0.8880 +9373 51056 0.5910 +9373 51340 0.4460 +9373 54439 0.4540 +9373 55031 0.5810 +9373 55139 0.7020 +9373 55236 0.4430 +9373 55432 0.9950 +9373 55666 0.9720 +9373 55832 0.4190 +9373 55968 0.9440 +9373 56061 0.5020 +9373 57593 0.5180 +9373 63979 0.4100 +9373 64641 0.5180 +9373 64922 0.4140 +9373 79029 0.7560 +9373 79058 0.6800 +9373 79139 0.5150 +9373 79577 0.6830 +9373 79885 0.4340 +9373 79886 0.7370 +9373 80233 0.8990 +9373 80700 0.9740 +9373 83473 0.4910 +9373 84896 0.5860 +9373 91544 0.8160 +9373 134510 0.5730 +9373 137886 0.8920 +9373 165324 0.8440 +9373 166378 0.7540 +9373 253738 0.5180 +9373 494115 0.4570 +9374 9553 0.4290 +9374 9900 0.5960 +9374 10144 0.5400 +9374 10434 0.5430 +9374 11313 0.5320 +9374 23205 0.8340 +9374 23305 0.8500 +9374 23390 0.4980 +9374 25921 0.4590 +9374 29801 0.4650 +9374 29937 0.4380 +9374 51021 0.4290 +9374 51102 0.9060 +9374 51104 0.4860 +9374 51172 0.4140 +9374 51201 0.4220 +9374 51264 0.4570 +9374 51304 0.4270 +9374 51703 0.8470 +9374 54503 0.5380 +9374 54938 0.6190 +9374 54982 0.7110 +9374 55022 0.4800 +9374 55052 0.4430 +9374 55146 0.5350 +9374 55347 0.4660 +9374 55625 0.4850 +9374 55699 0.5670 +9374 55759 0.4330 +9374 57117 0.5740 +9374 57129 0.4290 +9374 58489 0.4760 +9374 63875 0.4460 +9374 64399 0.4030 +9374 64965 0.4290 +9374 64979 0.4400 +9374 79807 0.6100 +9374 79875 0.4470 +9374 80864 0.7120 +9374 81616 0.8410 +9374 81926 0.6190 +9374 84243 0.4100 +9374 84287 0.4630 +9374 84545 0.4300 +9374 120935 0.4300 +9374 158866 0.4080 +9374 219927 0.4300 +9374 221527 0.4910 +9374 255743 0.4180 +9374 256471 0.5570 +9374 399979 0.4030 +9374 414152 0.5140 +9375 9741 0.6850 +9375 10558 0.5110 +9375 10959 0.5570 +9375 10972 0.9220 +9375 25972 0.5940 +9375 27303 0.4190 +9375 51542 0.4740 +9375 53947 0.4960 +9375 54453 0.4920 +9375 55858 0.6250 +9375 56927 0.4580 +9375 57613 0.4930 +9375 171425 0.4830 +9375 171546 0.5690 +9375 219621 0.5940 +9375 252839 0.4490 +9375 375743 0.4480 +9375 728276 0.6230 +9376 9429 0.8080 +9376 10057 0.4900 +9376 10257 0.8060 +9376 10351 0.7960 +9376 10599 0.8300 +9376 10786 0.7140 +9376 10864 0.9520 +9376 11182 0.4750 +9376 11309 0.7750 +9376 22987 0.4960 +9376 23327 0.4140 +9376 23460 0.5380 +9376 28231 0.5850 +9376 28232 0.5820 +9376 28234 0.8480 +9376 29988 0.5270 +9376 51081 0.5990 +9376 53919 0.6080 +9376 54490 0.4110 +9376 54575 0.4950 +9376 54576 0.5040 +9376 54577 0.4940 +9376 54578 0.5300 +9376 54600 0.5270 +9376 54657 0.5220 +9376 54658 0.5030 +9376 54659 0.4470 +9376 55244 0.8170 +9376 55586 0.5410 +9376 56606 0.8620 +9376 64078 0.4370 +9376 64849 0.6990 +9376 66035 0.4090 +9376 81031 0.4050 +9376 134288 0.4070 +9376 144195 0.4460 +9376 146802 0.8410 +9376 155184 0.4660 +9376 157724 0.4170 +9376 159963 0.4510 +9376 220963 0.4410 +9376 340024 0.4540 +9376 353189 0.7270 +9376 574537 0.4080 +9377 9512 0.9850 +9377 9551 0.8220 +9377 9582 0.8200 +9377 9804 0.4120 +9377 9997 0.4650 +9377 10063 0.6830 +9377 10165 0.5360 +9377 10295 0.4430 +9377 10463 0.5500 +9377 10476 0.9940 +9377 10553 0.5760 +9377 10632 0.9120 +9377 10891 0.4460 +9377 10935 0.4090 +9377 10975 0.9980 +9377 11331 0.5200 +9377 23155 0.5240 +9377 23203 0.9170 +9377 23558 0.6640 +9377 23645 0.7440 +9377 23788 0.4420 +9377 25994 0.9060 +9377 26520 0.4190 +9377 27089 0.9990 +9377 27159 0.5870 +9377 27235 0.4400 +9377 27350 0.8280 +9377 28958 0.8850 +9377 28977 0.5050 +9377 29796 0.9990 +9377 50511 0.5010 +9377 51079 0.9860 +9377 51142 0.6340 +9377 51241 0.5190 +9377 54205 0.9520 +9377 54539 0.9820 +9377 54543 0.4030 +9377 54927 0.6980 +9377 55028 0.6740 +9377 55143 0.6890 +9377 55744 0.6660 +9377 55967 0.9970 +9377 56901 0.7590 +9377 56993 0.4100 +9377 57184 0.4440 +9377 57379 0.8190 +9377 57407 0.5720 +9377 60489 0.8220 +9377 64111 0.7270 +9377 79002 0.9760 +9377 79135 0.5630 +9377 79598 0.5120 +9377 79728 0.8010 +9377 80195 0.5700 +9377 81341 0.8210 +9377 83447 0.4110 +9377 84284 0.4290 +9377 84303 0.6030 +9377 84419 0.6900 +9377 84689 0.4750 +9377 84701 0.9990 +9377 84833 0.7620 +9377 84886 0.9950 +9377 84939 0.5850 +9377 84987 0.7850 +9377 90423 0.4260 +9377 91300 0.7440 +9377 93974 0.5770 +9377 116228 0.4330 +9377 118490 0.7310 +9377 125965 0.9880 +9377 126328 0.9210 +9377 130752 0.6490 +9377 139221 0.5850 +9377 140564 0.8190 +9377 164668 0.8190 +9377 164684 0.6630 +9377 170712 0.8530 +9377 192286 0.6520 +9377 200315 0.8190 +9377 200316 0.8210 +9377 259307 0.4870 +9377 267020 0.8060 +9377 283459 0.9700 +9377 285521 0.5630 +9377 341947 0.6710 +9377 374291 0.9840 +9377 388753 0.9830 +9377 400916 0.5430 +9377 440567 0.9070 +9377 493753 0.4150 +9377 728317 0.5850 +9377 100131801 0.6030 +9377 100303755 0.4760 +9377 100532726 0.7740 +9377 105372267 0.6130 +9378 9379 0.9220 +9378 9454 0.6190 +9378 9455 0.6050 +9378 9456 0.7060 +9378 9463 0.4650 +9378 9513 0.4110 +9378 9515 0.4150 +9378 9546 0.5530 +9378 9568 0.4140 +9378 9699 0.5410 +9378 9722 0.4150 +9378 9746 0.7340 +9378 9783 0.4200 +9378 9863 0.4610 +9378 9900 0.4470 +9378 10243 0.8310 +9378 10330 0.4050 +9378 10369 0.4350 +9378 10497 0.6420 +9378 10585 0.5630 +9378 10656 0.4820 +9378 10657 0.4260 +9378 10716 0.6430 +9378 10814 0.4090 +9378 11075 0.4160 +9378 11141 0.5180 +9378 11247 0.8930 +9378 11248 0.8560 +9378 11249 0.8980 +9378 22829 0.9990 +9378 22839 0.5760 +9378 22854 0.4110 +9378 22859 0.7110 +9378 22865 0.6120 +9378 22871 0.9990 +9378 22941 0.9140 +9378 22997 0.4340 +9378 22999 0.5770 +9378 23001 0.4420 +9378 23025 0.4850 +9378 23040 0.5010 +9378 23085 0.6600 +9378 23114 0.6940 +9378 23136 0.5330 +9378 23191 0.6350 +9378 23229 0.5410 +9378 23245 0.6840 +9378 23266 0.6060 +9378 23284 0.6780 +9378 23426 0.4890 +9378 23670 0.6530 +9378 23705 0.7260 +9378 26045 0.9970 +9378 26047 0.5430 +9378 26050 0.4890 +9378 26053 0.7450 +9378 26059 0.4480 +9378 26230 0.4460 +9378 27111 0.4490 +9378 27185 0.6020 +9378 27255 0.5910 +9378 27328 0.6610 +9378 28988 0.4990 +9378 29119 0.4010 +9378 29801 0.4030 +9378 29954 0.5400 +9378 30010 0.9730 +9378 50834 0.4820 +9378 50848 0.4060 +9378 50944 0.8870 +9378 51133 0.4220 +9378 51725 0.5670 +9378 53942 0.4810 +9378 54413 0.9990 +9378 54715 0.6680 +9378 54733 0.4930 +9378 55243 0.5090 +9378 55327 0.5690 +9378 55624 0.6720 +9378 55777 0.4040 +9378 56934 0.5400 +9378 57030 0.5820 +9378 57084 0.5150 +9378 57451 0.4550 +9378 57497 0.5170 +9378 57502 0.9990 +9378 57513 0.6040 +9378 57524 0.9240 +9378 57526 0.4780 +9378 57555 0.9990 +9378 57575 0.4740 +9378 57576 0.4160 +9378 57586 0.8400 +9378 57622 0.4470 +9378 57628 0.4410 +9378 57669 0.5200 +9378 57680 0.5720 +9378 57689 0.6930 +9378 58512 0.7330 +9378 60412 0.4170 +9378 64084 0.4050 +9378 64101 0.4500 +9378 64130 0.6090 +9378 64326 0.5310 +9378 64359 0.8360 +9378 64398 0.4510 +9378 64478 0.4110 +9378 64839 0.4480 +9378 78999 0.4700 +9378 79147 0.4780 +9378 79414 0.4070 +9378 80059 0.8230 +9378 83943 0.4470 +9378 84059 0.4390 +9378 84063 0.4540 +9378 84107 0.5000 +9378 84628 0.4280 +9378 85358 0.9610 +9378 85445 0.4880 +9378 91683 0.6030 +9378 91752 0.6700 +9378 93986 0.6650 +9378 94030 0.6450 +9378 94121 0.4750 +9378 112755 0.6080 +9378 114798 0.5950 +9378 114815 0.5680 +9378 115827 0.4110 +9378 127833 0.7140 +9378 129684 0.5040 +9378 132204 0.4460 +9378 133584 0.5300 +9378 137868 0.4930 +9378 139411 0.6040 +9378 140679 0.5950 +9378 140689 0.5320 +9378 143425 0.5530 +9378 145581 0.5320 +9378 146713 0.4230 +9378 147381 0.6590 +9378 152330 0.8050 +9378 165257 0.5500 +9378 201514 0.4250 +9378 202559 0.4390 +9378 222537 0.4300 +9378 253559 0.5310 +9378 257194 0.4210 +9378 266727 0.5920 +9378 267012 0.4730 +9378 341359 0.5990 +9378 341640 0.4290 +9378 347730 0.9010 +9378 347731 0.8820 +9378 375790 0.6440 +9378 389941 0.5860 +9378 407738 0.5250 +9379 9454 0.6190 +9379 9455 0.5920 +9379 9456 0.6870 +9379 9463 0.4730 +9379 9546 0.5560 +9379 9699 0.4480 +9379 9746 0.7050 +9379 9900 0.4080 +9379 10125 0.5470 +9379 10235 0.6780 +9379 10243 0.8310 +9379 10329 0.4270 +9379 10330 0.4160 +9379 10369 0.4080 +9379 10497 0.6260 +9379 10585 0.5920 +9379 10656 0.4760 +9379 11041 0.4390 +9379 11141 0.4020 +9379 11247 0.6020 +9379 11248 0.4460 +9379 11249 0.5380 +9379 22829 0.9990 +9379 22839 0.5950 +9379 22859 0.6760 +9379 22865 0.6120 +9379 22871 0.9990 +9379 22883 0.4010 +9379 22941 0.8800 +9379 22997 0.4500 +9379 22999 0.4910 +9379 23025 0.4050 +9379 23085 0.6520 +9379 23114 0.5340 +9379 23136 0.5340 +9379 23229 0.5320 +9379 23266 0.5440 +9379 23284 0.5790 +9379 23426 0.4900 +9379 23670 0.6710 +9379 23705 0.7100 +9379 26045 0.9930 +9379 26047 0.4850 +9379 26053 0.5540 +9379 27111 0.4550 +9379 27328 0.6340 +9379 28988 0.4990 +9379 29954 0.5690 +9379 30010 0.8270 +9379 50848 0.4010 +9379 50944 0.8760 +9379 51133 0.4930 +9379 54413 0.9990 +9379 54715 0.4760 +9379 55243 0.5070 +9379 55327 0.5420 +9379 55624 0.7230 +9379 56606 0.4710 +9379 57030 0.5510 +9379 57451 0.4110 +9379 57497 0.5010 +9379 57502 0.9990 +9379 57524 0.4620 +9379 57555 0.9990 +9379 57622 0.4690 +9379 57669 0.5200 +9379 57689 0.4710 +9379 58512 0.7190 +9379 64084 0.5550 +9379 64101 0.4850 +9379 64130 0.5950 +9379 64359 0.7870 +9379 64398 0.4590 +9379 78999 0.4890 +9379 79147 0.5110 +9379 79414 0.4160 +9379 80059 0.7800 +9379 83706 0.6480 +9379 84063 0.4490 +9379 84892 0.4470 +9379 84966 0.5490 +9379 85358 0.8970 +9379 91683 0.5520 +9379 93986 0.6680 +9379 94030 0.6970 +9379 94121 0.4550 +9379 112755 0.4110 +9379 114798 0.5310 +9379 114815 0.5380 +9379 127833 0.7130 +9379 133584 0.5420 +9379 140679 0.6210 +9379 140689 0.5490 +9379 143425 0.5390 +9379 145581 0.4930 +9379 147381 0.6580 +9379 152330 0.4540 +9379 165257 0.5710 +9379 266727 0.6120 +9379 341359 0.5180 +9379 347730 0.8960 +9379 347731 0.9080 +9379 375790 0.6560 +9379 389941 0.5710 +9379 407738 0.5370 +9379 643866 0.4030 +9380 9563 0.5490 +9380 9588 0.5330 +9380 9963 0.4370 +9380 10109 0.4020 +9380 10295 0.4200 +9380 10327 0.6200 +9380 10587 0.6260 +9380 10797 0.4910 +9380 10861 0.5810 +9380 10901 0.4220 +9380 10993 0.8530 +9380 11136 0.4960 +9380 22977 0.4080 +9380 23474 0.5100 +9380 23600 0.5500 +9380 25974 0.4120 +9380 26284 0.4290 +9380 26330 0.8040 +9380 29958 0.6670 +9380 29968 0.8770 +9380 51084 0.4160 +9380 51110 0.4650 +9380 51179 0.9480 +9380 54363 0.9650 +9380 55066 0.6660 +9380 55364 0.8490 +9380 55739 0.4370 +9380 56267 0.5470 +9380 56954 0.4480 +9380 56965 0.7700 +9380 57016 0.4130 +9380 57469 0.8040 +9380 57591 0.4130 +9380 58510 0.5950 +9380 64080 0.5970 +9380 64902 0.8810 +9380 65010 0.4380 +9380 79668 0.7700 +9380 79783 0.5550 +9380 79944 0.4620 +9380 80012 0.6040 +9380 80347 0.4420 +9380 80896 0.4240 +9380 81888 0.5150 +9380 83592 0.4130 +9380 83857 0.7680 +9380 84076 0.4060 +9380 84263 0.4960 +9380 84680 0.5130 +9380 84681 0.4290 +9380 84706 0.5750 +9380 90507 0.4610 +9380 92483 0.4340 +9380 112817 0.9980 +9380 113675 0.8540 +9380 114112 0.6230 +9380 123688 0.5160 +9380 132158 0.9860 +9380 137872 0.4590 +9380 142680 0.4670 +9380 144811 0.4020 +9380 149461 0.4390 +9380 153364 0.4140 +9380 154141 0.5940 +9380 160287 0.4360 +9380 200205 0.5710 +9380 283871 0.9270 +9380 340811 0.4130 +9380 387712 0.5860 +9380 389434 0.4700 +9380 390110 0.5120 +9380 414328 0.8400 +9380 441024 0.4290 +9380 441282 0.4130 +9380 729020 0.4240 +9381 10083 0.6350 +9381 10436 0.6250 +9381 10755 0.5490 +9381 10804 0.6070 +9381 10952 0.4990 +9381 11078 0.6010 +9381 23480 0.4990 +9381 23562 0.4180 +9381 25861 0.6100 +9381 27230 0.4990 +9381 27445 0.5750 +9381 51168 0.8800 +9381 51475 0.5170 +9381 51608 0.5090 +9381 51762 0.9020 +9381 53904 0.6030 +9381 56649 0.6290 +9381 64072 0.8210 +9381 64699 0.7220 +9381 65217 0.7110 +9381 79955 0.4280 +9381 80331 0.8240 +9381 81624 0.5350 +9381 83715 0.5330 +9381 84059 0.6660 +9381 113278 0.4590 +9381 117531 0.8340 +9381 117532 0.5660 +9381 118424 0.4990 +9381 124590 0.4640 +9381 125336 0.7020 +9381 126326 0.5290 +9381 127833 0.8450 +9381 146183 0.6790 +9381 153562 0.4180 +9381 161497 0.7220 +9381 203068 0.4760 +9381 222662 0.6260 +9381 246213 0.9350 +9381 253827 0.4280 +9381 259236 0.6270 +9381 283310 0.4690 +9381 286262 0.5420 +9381 286676 0.4730 +9381 340990 0.6720 +9381 344752 0.4520 +9381 375611 0.6590 +9381 388551 0.4050 +9381 389207 0.5310 +9381 494513 0.7330 +9381 654231 0.4960 +9382 9527 0.8000 +9382 9570 0.8660 +9382 9609 0.5380 +9382 9648 0.6600 +9382 9827 0.5780 +9382 9950 0.7720 +9382 10121 0.5210 +9382 10135 0.4440 +9382 10139 0.6680 +9382 10228 0.6910 +9382 10282 0.7570 +9382 10466 0.9990 +9382 10540 0.5640 +9382 10618 0.7920 +9382 10652 0.7570 +9382 10671 0.5060 +9382 10905 0.5310 +9382 11137 0.4370 +9382 11231 0.4030 +9382 11253 0.4660 +9382 11258 0.5130 +9382 11311 0.6080 +9382 11336 0.4010 +9382 22796 0.9990 +9382 23093 0.4170 +9382 23181 0.4780 +9382 23256 0.4860 +9382 23265 0.4320 +9382 23383 0.4360 +9382 25839 0.9990 +9382 25972 0.4160 +9382 27314 0.6440 +9382 27333 0.7140 +9382 29126 0.6100 +9382 51084 0.4080 +9382 51143 0.5040 +9382 51164 0.5090 +9382 51272 0.6200 +9382 51542 0.7800 +9382 51560 0.5380 +9382 54549 0.4130 +9382 54734 0.5040 +9382 54872 0.4180 +9382 54951 0.6080 +9382 54956 0.6290 +9382 54991 0.4740 +9382 55275 0.8210 +9382 55858 0.4620 +9382 55860 0.5040 +9382 56052 0.4730 +9382 57134 0.5310 +9382 57511 0.9990 +9382 57589 0.8000 +9382 60561 0.8020 +9382 63908 0.5040 +9382 64083 0.6340 +9382 64145 0.4410 +9382 64689 0.4340 +9382 79086 0.4280 +9382 79571 0.5740 +9382 80344 0.4140 +9382 83452 0.5640 +9382 83548 0.9990 +9382 83695 0.4490 +9382 84516 0.5510 +9382 85365 0.6260 +9382 90196 0.6510 +9382 91949 0.9990 +9382 93661 0.4990 +9382 126003 0.4790 +9382 126208 0.5100 +9382 140735 0.5110 +9382 143187 0.7800 +9382 200312 0.5430 +9382 339122 0.5360 +9382 347517 0.5220 +9388 9619 0.5270 +9388 9663 0.7120 +9388 10161 0.5290 +9388 10221 0.4770 +9388 10959 0.4430 +9388 10972 0.4750 +9388 11343 0.9260 +9388 23175 0.7490 +9388 23205 0.6140 +9388 23305 0.6660 +9388 23566 0.5900 +9388 25833 0.8440 +9388 27329 0.7770 +9388 50999 0.6120 +9388 51129 0.5840 +9388 51703 0.7850 +9388 55304 0.4290 +9388 55750 0.9020 +9388 57104 0.9280 +9388 64240 0.4260 +9388 64241 0.4390 +9388 64788 0.5800 +9388 64900 0.6760 +9388 65124 0.4640 +9388 80168 0.6800 +9388 80339 0.9240 +9388 81616 0.6540 +9388 84513 0.9080 +9388 84649 0.7340 +9388 116255 0.7260 +9388 116519 0.6410 +9388 119548 0.9080 +9388 139189 0.6660 +9388 158219 0.4340 +9388 160851 0.6760 +9388 196051 0.9030 +9388 222068 0.4310 +9388 255738 0.5890 +9388 326625 0.5070 +9388 338328 0.5850 +9388 340654 0.4420 +9388 346606 0.6630 +9388 643418 0.4540 +9389 9940 0.4350 +9389 9942 0.9620 +9389 9943 0.8360 +9389 10217 0.4050 +9389 50853 0.5270 +9389 51310 0.4770 +9389 55356 0.4770 +9389 56606 0.4520 +9389 63027 0.4860 +9389 140679 0.4220 +9389 283238 0.4920 +9389 338661 0.4750 +9389 339669 0.4300 +9389 340273 0.4160 +9389 387775 0.4510 +9390 9429 0.5670 +9390 9942 0.9140 +9390 9943 0.8280 +9390 10158 0.4720 +9390 10257 0.5430 +9390 10786 0.7430 +9390 11182 0.4070 +9390 11309 0.4190 +9390 27347 0.4480 +9390 55244 0.6310 +9390 56606 0.8290 +9390 57649 0.5660 +9390 64849 0.4490 +9390 120103 0.4600 +9390 146802 0.5130 +9390 155184 0.4040 +9390 159963 0.6140 +9390 160728 0.6260 +9390 220963 0.4260 +9390 222962 0.4860 +9390 353189 0.4060 +9391 9416 0.4790 +9391 9557 0.5800 +9391 10101 0.8850 +9391 10291 0.4740 +9391 10539 0.7650 +9391 10574 0.4110 +9391 11019 0.6210 +9391 11091 0.4190 +9391 23479 0.6110 +9391 23559 0.4710 +9391 24148 0.4150 +9391 25879 0.4380 +9391 26234 0.7590 +9391 26502 0.5730 +9391 27158 0.6720 +9391 27247 0.4890 +9391 27304 0.4090 +9391 51218 0.6980 +9391 51239 0.4130 +9391 51252 0.4020 +9391 51647 0.9990 +9391 51750 0.7670 +9391 54606 0.6420 +9391 54901 0.7080 +9391 55033 0.4260 +9391 55140 0.5930 +9391 55174 0.4350 +9391 55272 0.4570 +9391 55333 0.4270 +9391 55654 0.5570 +9391 55795 0.5320 +9391 57002 0.6350 +9391 57019 0.8140 +9391 57128 0.5910 +9391 57404 0.4450 +9391 59283 0.4120 +9391 60491 0.6930 +9391 60626 0.4560 +9391 64149 0.4970 +9391 64210 0.9990 +9391 64428 0.9980 +9391 79269 0.4800 +9391 80224 0.6290 +9391 80349 0.4790 +9391 81689 0.5190 +9391 83990 0.7620 +9391 84191 0.9990 +9391 84217 0.4150 +9391 85313 0.4600 +9391 90353 0.4980 +9391 91543 0.7920 +9391 91782 0.4380 +9391 112812 0.4200 +9391 119504 0.4120 +9391 122961 0.4540 +9391 140775 0.4710 +9391 150274 0.6040 +9391 150771 0.4480 +9391 151313 0.4330 +9391 200205 0.4430 +9391 256356 0.4030 +9391 388962 0.4160 +9391 440093 0.4180 +9391 440686 0.4180 +9391 552900 0.4180 +9391 653604 0.4260 +9391 654483 0.4310 +9392 9482 0.5890 +9392 9559 0.4130 +9392 9609 0.4240 +9392 10228 0.5300 +9392 10325 0.4040 +9392 10490 0.7200 +9392 10561 0.4370 +9392 10640 0.4730 +9392 10652 0.8400 +9392 11311 0.7910 +9392 22879 0.5080 +9392 23339 0.9870 +9392 23355 0.9990 +9392 23673 0.4320 +9392 25930 0.4170 +9392 26276 0.9730 +9392 27072 0.9960 +9392 27243 0.8590 +9392 29982 0.4510 +9392 30849 0.4710 +9392 51209 0.6400 +9392 51542 0.4780 +9392 51560 0.4240 +9392 51622 0.8240 +9392 54468 0.4220 +9392 55014 0.4860 +9392 55206 0.7900 +9392 55275 0.4250 +9392 55697 0.5240 +9392 55737 0.5180 +9392 55823 0.9990 +9392 57198 0.4330 +9392 57403 0.4520 +9392 57617 0.9990 +9392 63894 0.5760 +9392 64145 0.7090 +9392 64284 0.4860 +9392 64601 0.9990 +9392 65082 0.9960 +9392 79697 0.7820 +9392 79719 0.4560 +9392 79763 0.4330 +9392 83548 0.4650 +9392 83732 0.7770 +9392 83871 0.4550 +9392 84084 0.4240 +9392 84315 0.6270 +9392 123591 0.5580 +9392 143187 0.6530 +9392 154743 0.4060 +9392 200576 0.5050 +9392 203062 0.4290 +9392 203245 0.4570 +9392 221002 0.7900 +9392 221960 0.8150 +9392 338382 0.6140 +9392 347517 0.4240 +9394 9469 0.4010 +9394 9653 0.9960 +9394 9672 0.6030 +9394 9951 0.5910 +9394 9953 0.5770 +9394 9955 0.5460 +9394 9956 0.5740 +9394 9957 0.7540 +9394 10082 0.6270 +9394 10090 0.4130 +9394 10331 0.4760 +9394 10371 0.6100 +9394 11285 0.4650 +9394 22856 0.4040 +9394 23213 0.6760 +9394 23767 0.5470 +9394 26012 0.7320 +9394 26035 0.8730 +9394 26229 0.5920 +9394 27233 0.4050 +9394 27284 0.4030 +9394 51363 0.4490 +9394 54756 0.6990 +9394 55454 0.4730 +9394 55501 0.4340 +9394 55636 0.5820 +9394 55959 0.6520 +9394 56548 0.4060 +9394 60675 0.6320 +9394 64579 0.5740 +9394 64711 0.6370 +9394 79625 0.4800 +9394 81848 0.4800 +9394 84634 0.6750 +9394 128674 0.7240 +9394 221914 0.6160 +9394 222537 0.6350 +9394 347734 0.5200 +9394 375790 0.6160 +9394 389549 0.5830 +9394 442038 0.4120 +9397 10001 0.5560 +9397 10988 0.4850 +9397 11214 0.4220 +9397 23173 0.4740 +9397 29903 0.5160 +9397 57707 0.4570 +9397 84320 0.9170 +9397 84937 0.4220 +9397 115290 0.4040 +9397 150209 0.4300 +9397 161394 0.4540 +9397 221061 0.4910 +9397 284451 0.4700 +9398 9402 0.4250 +9398 9495 0.4840 +9398 10663 0.4330 +9398 50943 0.4220 +9398 83901 0.4870 +9398 84868 0.6020 +9399 9425 0.4560 +9399 9540 0.4090 +9399 9607 0.5670 +9399 9858 0.4840 +9399 9862 0.4130 +9399 10269 0.4100 +9399 10449 0.5760 +9399 10455 0.5500 +9399 10497 0.4760 +9399 10730 0.5410 +9399 10939 0.5410 +9399 10994 0.5420 +9399 11343 0.4050 +9399 22920 0.4130 +9399 22982 0.4140 +9399 23065 0.5440 +9399 23181 0.4250 +9399 23205 0.4040 +9399 23305 0.4090 +9399 23457 0.4150 +9399 23600 0.4720 +9399 25987 0.4400 +9399 26061 0.5350 +9399 26275 0.4390 +9399 27034 0.4950 +9399 28976 0.5080 +9399 29091 0.4460 +9399 30968 0.4740 +9399 51084 0.5150 +9399 51167 0.4240 +9399 51314 0.4370 +9399 54596 0.4130 +9399 54802 0.4350 +9399 54988 0.4010 +9399 54995 0.4360 +9399 55268 0.4440 +9399 55289 0.5200 +9399 55301 0.4130 +9399 55856 0.4300 +9399 55862 0.4390 +9399 55902 0.4010 +9399 56948 0.6160 +9399 57523 0.5450 +9399 57578 0.4840 +9399 57609 0.4130 +9399 64087 0.4920 +9399 64130 0.4570 +9399 65985 0.6310 +9399 79154 0.4380 +9399 79611 0.4780 +9399 79783 0.4680 +9399 80221 0.4180 +9399 80347 0.4690 +9399 80724 0.5200 +9399 83473 0.4010 +9399 83752 0.4080 +9399 84129 0.5060 +9399 84263 0.4950 +9399 84532 0.4010 +9399 115209 0.4460 +9399 116285 0.4010 +9399 123876 0.4010 +9399 124359 0.4560 +9399 137872 0.4820 +9399 140856 0.5390 +9399 157869 0.4130 +9399 197322 0.4380 +9399 253175 0.4560 +9399 284422 0.4900 +9399 285521 0.4080 +9399 341392 0.4010 +9399 348158 0.4010 +9399 376497 0.4480 +9399 388886 0.4490 +9399 389813 0.4510 +9399 643866 0.5210 +9399 122405565 0.4900 +9400 9401 0.7640 +9400 9656 0.7770 +9400 10111 0.5980 +9400 10535 0.5590 +9400 10714 0.4300 +9400 11059 0.4450 +9400 11060 0.7330 +9400 11073 0.4780 +9400 11169 0.4420 +9400 11200 0.6740 +9400 11321 0.4150 +9400 22944 0.6300 +9400 22976 0.6890 +9400 23064 0.5360 +9400 23137 0.4150 +9400 23201 0.4500 +9400 23247 0.4260 +9400 23248 0.6420 +9400 23304 0.5290 +9400 23586 0.4430 +9400 23626 0.4180 +9400 25788 0.5520 +9400 25963 0.4420 +9400 26173 0.4530 +9400 27030 0.4170 +9400 27343 0.5780 +9400 50485 0.7220 +9400 51750 0.7780 +9400 54386 0.4300 +9400 54505 0.5080 +9400 54841 0.4500 +9400 54932 0.4060 +9400 54962 0.6640 +9400 55086 0.5190 +9400 55197 0.7170 +9400 55215 0.4080 +9400 55388 0.4170 +9400 56852 0.6880 +9400 56897 0.6200 +9400 56916 0.4010 +9400 57466 0.5000 +9400 57505 0.4690 +9400 57697 0.9910 +9400 58490 0.9300 +9400 58508 0.4040 +9400 63967 0.4380 +9400 64135 0.4460 +9400 79008 0.5560 +9400 79132 0.4430 +9400 79621 0.5410 +9400 79728 0.4290 +9400 79871 0.7180 +9400 79915 0.5940 +9400 80010 0.8070 +9400 80119 0.7250 +9400 80198 0.8880 +9400 81488 0.8460 +9400 83990 0.7160 +9400 84083 0.6590 +9400 84246 0.4290 +9400 84464 0.7430 +9400 84720 0.6300 +9400 84893 0.9380 +9400 92797 0.4690 +9400 113510 0.5230 +9400 116028 0.6010 +9400 116447 0.6240 +9400 135458 0.4060 +9400 140459 0.4510 +9400 146705 0.4420 +9400 146956 0.6290 +9400 170506 0.4430 +9400 197131 0.4350 +9400 201973 0.4230 +9400 246243 0.5740 +9400 254528 0.5550 +9400 286053 0.5040 +9400 348654 0.6490 +9400 548593 0.6960 +9400 100533467 0.4900 +9401 9656 0.8360 +9401 9684 0.4610 +9401 9700 0.5540 +9401 9780 0.4180 +9401 9804 0.4480 +9401 9837 0.4830 +9401 9875 0.4450 +9401 9928 0.4120 +9401 9937 0.4080 +9401 9939 0.4070 +9401 10024 0.4340 +9401 10036 0.4640 +9401 10051 0.6610 +9401 10056 0.4170 +9401 10111 0.6390 +9401 10198 0.5330 +9401 10285 0.5180 +9401 10293 0.4460 +9401 10360 0.5540 +9401 10383 0.5450 +9401 10514 0.4110 +9401 10524 0.4320 +9401 10535 0.7070 +9401 10549 0.4060 +9401 10592 0.4080 +9401 10606 0.4620 +9401 10635 0.4040 +9401 10721 0.5020 +9401 10768 0.5140 +9401 10808 0.5300 +9401 10856 0.4120 +9401 10926 0.5950 +9401 10963 0.4120 +9401 10973 0.4070 +9401 11065 0.4310 +9401 11073 0.9480 +9401 11091 0.4070 +9401 11128 0.4890 +9401 11144 0.4410 +9401 11169 0.8100 +9401 11200 0.8400 +9401 22827 0.4800 +9401 22907 0.4280 +9401 22909 0.4420 +9401 22948 0.4120 +9401 22976 0.6520 +9401 23064 0.4030 +9401 23137 0.6690 +9401 23178 0.4910 +9401 23304 0.9400 +9401 23405 0.5230 +9401 23411 0.7560 +9401 23450 0.4440 +9401 23586 0.4450 +9401 23626 0.5670 +9401 25788 0.7010 +9401 25842 0.5660 +9401 25913 0.4830 +9401 26227 0.4220 +9401 26873 0.4440 +9401 26953 0.5140 +9401 27030 0.5840 +9401 27085 0.7720 +9401 27292 0.4100 +9401 29089 0.4230 +9401 29935 0.4110 +9401 50485 0.6030 +9401 50626 0.4360 +9401 51053 0.4320 +9401 51203 0.4440 +9401 51659 0.5560 +9401 51750 0.7300 +9401 54386 0.6100 +9401 54433 0.4240 +9401 54512 0.5180 +9401 54841 0.4550 +9401 54882 0.5100 +9401 54962 0.9080 +9401 55135 0.5280 +9401 55143 0.4660 +9401 55210 0.5870 +9401 55215 0.7110 +9401 55218 0.4130 +9401 55227 0.5140 +9401 55247 0.4690 +9401 55388 0.9890 +9401 55723 0.6360 +9401 56652 0.4340 +9401 56852 0.7670 +9401 56897 0.5430 +9401 56916 0.5180 +9401 57082 0.4350 +9401 57664 0.4330 +9401 57697 0.9910 +9401 63891 0.4460 +9401 63893 0.5780 +9401 63922 0.9510 +9401 63967 0.7310 +9401 63979 0.4510 +9401 64135 0.4450 +9401 64151 0.4840 +9401 64210 0.4200 +9401 64682 0.5640 +9401 64785 0.6450 +9401 64965 0.5440 +9401 65263 0.4510 +9401 79008 0.6690 +9401 79058 0.4800 +9401 79075 0.4510 +9401 79132 0.4460 +9401 79621 0.6170 +9401 79650 0.9120 +9401 79677 0.7390 +9401 79728 0.4760 +9401 79763 0.4090 +9401 79801 0.4140 +9401 79892 0.6530 +9401 79915 0.8270 +9401 79991 0.5740 +9401 80010 0.8600 +9401 80119 0.8660 +9401 80174 0.4920 +9401 80198 0.9340 +9401 81620 0.7920 +9401 83743 0.4440 +9401 83932 0.5070 +9401 83990 0.6540 +9401 84296 0.8790 +9401 84464 0.5810 +9401 84515 0.4200 +9401 84617 0.5270 +9401 84823 0.5600 +9401 84893 0.8820 +9401 85365 0.6070 +9401 90381 0.9720 +9401 92797 0.5550 +9401 113130 0.5260 +9401 113510 0.5430 +9401 113655 0.4540 +9401 116028 0.5420 +9401 116447 0.7020 +9401 135458 0.4380 +9401 146956 0.5120 +9401 170506 0.4270 +9401 197131 0.9040 +9401 197370 0.5010 +9401 203054 0.4290 +9401 246243 0.5110 +9401 254528 0.5730 +9401 257218 0.5020 +9401 286053 0.5940 +9401 348654 0.6310 +9401 353497 0.4210 +9401 548593 0.7230 +9401 647309 0.4750 +9401 100533467 0.6620 +9402 9832 0.4220 +9402 9846 0.8780 +9402 10125 0.7270 +9402 10235 0.5150 +9402 10318 0.4260 +9402 10399 0.5820 +9402 10451 0.7500 +9402 10617 0.8290 +9402 10750 0.4420 +9402 11184 0.9700 +9402 22914 0.5510 +9402 23582 0.9360 +9402 25930 0.9320 +9402 27040 0.9990 +9402 27071 0.5640 +9402 29760 0.7040 +9402 29851 0.4240 +9402 29882 0.4240 +9402 51052 0.6610 +9402 51806 0.8960 +9402 53347 0.6200 +9402 54209 0.5070 +9402 54900 0.5600 +9402 54923 0.7810 +9402 64762 0.6350 +9402 64926 0.4610 +9402 83737 0.4630 +9402 84174 0.4440 +9402 84433 0.4370 +9402 84519 0.4330 +9402 91860 0.8950 +9402 112574 0.4920 +9402 115727 0.4250 +9402 117157 0.4750 +9402 119504 0.4550 +9402 128611 0.4820 +9402 139716 0.6140 +9402 140885 0.5070 +9402 146433 0.5170 +9402 163688 0.8950 +9402 171558 0.4210 +9402 387357 0.4460 +9402 390714 0.5170 +9403 10587 0.7800 +9403 22921 0.5210 +9403 22928 0.8310 +9403 22929 0.5770 +9403 51061 0.4070 +9403 51091 0.5980 +9403 51109 0.4590 +9403 51540 0.6330 +9403 51714 0.9280 +9403 51734 0.7790 +9403 54431 0.5010 +9403 54952 0.4430 +9403 55757 0.9530 +9403 55829 0.9150 +9403 56886 0.9880 +9403 57190 0.8710 +9403 58515 0.8950 +9403 60678 0.6870 +9403 79048 0.8100 +9403 79717 0.4180 +9403 83642 0.8490 +9403 85465 0.8130 +9403 114112 0.7940 +9403 118672 0.5190 +9403 140606 0.8920 +9403 157567 0.4340 +9403 257202 0.5550 +9403 280636 0.8430 +9403 348303 0.7990 +9403 100130613 0.4710 +9404 9459 0.7120 +9404 9564 0.5150 +9404 9815 0.6760 +9404 10520 0.4120 +9404 22897 0.4100 +9404 23177 0.4220 +9404 23495 0.4290 +9404 27175 0.4080 +9404 28964 0.7580 +9404 55619 0.4180 +9404 55742 0.5700 +9404 55843 0.4230 +9404 64098 0.4310 +9404 80110 0.4600 +9404 83660 0.5380 +9404 83706 0.5050 +9404 85477 0.5040 +9404 114898 0.4130 +9404 119467 0.4480 +9404 124599 0.4260 +9404 130271 0.5780 +9404 151195 0.4250 +9404 121725057 0.4030 +9406 9736 0.5100 +9406 9774 0.4750 +9406 9967 0.4890 +9406 9984 0.4220 +9406 9987 0.5340 +9406 10181 0.4690 +9406 10250 0.4570 +9406 11065 0.4880 +9406 23170 0.5020 +9406 23350 0.4530 +9406 23435 0.4380 +9406 23524 0.5720 +9406 23608 0.5000 +9406 25949 0.5140 +9406 25957 0.5750 +9406 26043 0.4340 +9406 27316 0.6040 +9406 29896 0.4790 +9406 51329 0.6860 +9406 51631 0.5520 +9406 51747 0.7020 +9406 55109 0.5340 +9406 55339 0.4080 +9406 57092 0.5190 +9406 57187 0.4870 +9406 58517 0.4980 +9406 65117 0.4430 +9406 79837 0.6160 +9406 81839 0.5180 +9406 84993 0.4480 +9406 94101 0.4250 +9406 136991 0.4030 +9406 140890 0.7730 +9406 222194 0.4510 +9406 283237 0.5230 +9407 10653 0.4250 +9407 26085 0.4820 +9407 56649 0.4370 +9407 58486 0.4790 +9407 59272 0.7350 +9407 339967 0.5250 +9409 9551 0.4380 +9409 10005 0.6060 +9409 10059 0.4030 +9409 10478 0.8480 +9409 11264 0.7510 +9409 51024 0.7810 +9409 51555 0.9000 +9409 51805 0.4020 +9409 54332 0.6410 +9409 54677 0.4520 +9409 55670 0.9570 +9409 56947 0.4580 +9409 79777 0.4150 +9409 84188 0.4580 +9409 84619 0.4630 +9409 84749 0.4910 +9409 84896 0.6540 +9409 89866 0.5450 +9409 91452 0.8640 +9409 92960 0.7280 +9410 9416 0.9970 +9410 9419 0.8000 +9410 9541 0.8000 +9410 9584 0.5030 +9410 9716 0.9970 +9410 9775 0.9390 +9410 9785 0.8920 +9410 9939 0.8270 +9410 9984 0.4010 +9410 10078 0.8990 +9410 10179 0.5750 +9410 10189 0.4590 +9410 10199 0.9060 +9410 10208 0.4280 +9410 10236 0.4790 +9410 10248 0.9020 +9410 10250 0.8630 +9410 10262 0.8060 +9410 10283 0.8670 +9410 10286 0.9990 +9410 10291 0.9400 +9410 10421 0.9720 +9410 10436 0.4080 +9410 10438 0.4110 +9410 10450 0.9940 +9410 10465 0.9280 +9410 10528 0.7900 +9410 10556 0.9060 +9410 10557 0.4580 +9410 10569 0.8390 +9410 10594 0.9990 +9410 10623 0.5480 +9410 10657 0.4530 +9410 10713 0.9850 +9410 10775 0.5780 +9410 10799 0.5540 +9410 10891 0.4640 +9410 10907 0.9950 +9410 10915 0.9730 +9410 10940 0.9020 +9410 10946 0.9350 +9410 10992 0.8490 +9410 11017 0.9410 +9410 11052 0.4860 +9410 11066 0.5580 +9410 11157 0.9270 +9410 11193 0.8300 +9410 11319 0.8290 +9410 11338 0.5850 +9410 22794 0.8010 +9410 22826 0.6170 +9410 22913 0.4170 +9410 22916 0.8840 +9410 22938 0.9940 +9410 22944 0.8050 +9410 23020 0.9990 +9410 23082 0.4560 +9410 23398 0.8320 +9410 23435 0.4240 +9410 23450 0.8520 +9410 23451 0.8880 +9410 23524 0.9820 +9410 23658 0.9370 +9410 23759 0.8380 +9410 24144 0.7900 +9410 24148 0.9990 +9410 25804 0.9560 +9410 25949 0.9890 +9410 25980 0.9740 +9410 26017 0.8200 +9410 26121 0.9440 +9410 27238 0.8530 +9410 27258 0.9210 +9410 27316 0.4450 +9410 27336 0.5420 +9410 27339 0.9990 +9410 51070 0.8410 +9410 51095 0.4170 +9410 51263 0.4720 +9410 51319 0.7610 +9410 51340 0.9980 +9410 51362 0.9990 +9410 51367 0.9110 +9410 51503 0.9900 +9410 51538 0.4750 +9410 51593 0.6420 +9410 51601 0.8690 +9410 51602 0.9150 +9410 51634 0.8230 +9410 51639 0.9280 +9410 51645 0.9920 +9410 51690 0.9260 +9410 51691 0.9390 +9410 51729 0.8130 +9410 51747 0.6130 +9410 51759 0.5430 +9410 54433 0.7400 +9410 54555 0.5910 +9410 54883 0.8320 +9410 54913 0.9000 +9410 54957 0.5420 +9410 55094 0.5280 +9410 55100 0.8160 +9410 55110 0.8690 +9410 55192 0.4170 +9410 55234 0.8610 +9410 55505 0.9050 +9410 55622 0.4020 +9410 55651 0.7690 +9410 55696 0.9970 +9410 55702 0.8220 +9410 55749 0.6090 +9410 55756 0.5730 +9410 56259 0.8800 +9410 56949 0.9940 +9410 57461 0.9370 +9410 57703 0.9830 +9410 57794 0.5210 +9410 57819 0.9520 +9410 58509 0.8430 +9410 59286 0.8180 +9410 60528 0.4250 +9410 60625 0.5840 +9410 64282 0.4650 +9410 79005 0.8010 +9410 79171 0.9430 +9410 79446 0.8690 +9410 79570 0.5210 +9410 79576 0.8000 +9410 79631 0.5430 +9410 79637 0.9220 +9410 79706 0.8100 +9410 79753 0.8770 +9410 80011 0.8020 +9410 83443 0.8340 +9410 83938 0.5060 +9410 84060 0.9010 +9410 84186 0.4900 +9410 84811 0.8100 +9410 84844 0.8570 +9410 84950 0.8600 +9410 84967 0.6600 +9410 84993 0.4070 +9410 85476 0.5380 +9410 92345 0.9030 +9410 94104 0.7990 +9410 115708 0.4230 +9410 138716 0.5520 +9410 140890 0.5570 +9410 143884 0.9420 +9410 151903 0.6450 +9410 153527 0.9390 +9410 163859 0.8370 +9410 220074 0.5060 +9410 220988 0.4380 +9410 256536 0.8400 +9410 345630 0.5950 +9410 347735 0.4040 +9410 100534599 0.8420 +9411 10963 0.4750 +9411 11023 0.5050 +9411 29984 0.4110 +9411 54922 0.9450 +9411 57493 0.4020 +9411 57822 0.5580 +9411 79822 0.4910 +9411 114569 0.4460 +9411 138009 0.4140 +9412 9439 0.9980 +9412 9440 0.9990 +9412 9441 0.9990 +9412 9442 0.9980 +9412 9443 0.9990 +9412 9477 0.9990 +9412 9519 0.4730 +9412 9533 0.8330 +9412 9577 0.4210 +9412 9611 0.5250 +9412 9612 0.4990 +9412 9647 0.4060 +9412 9696 0.5430 +9412 9774 0.5470 +9412 9862 0.9970 +9412 9967 0.9000 +9412 9968 0.9990 +9412 9969 0.9910 +9412 10001 0.9990 +9412 10025 0.9990 +9412 10190 0.4240 +9412 10454 0.4060 +9412 10499 0.5460 +9412 10640 0.4130 +9412 10891 0.6300 +9412 11036 0.4970 +9412 11244 0.4580 +9412 22843 0.4060 +9412 22901 0.4890 +9412 22974 0.4040 +9412 23091 0.9940 +9412 23097 0.9800 +9412 23213 0.4690 +9412 23389 0.9710 +9412 23476 0.5120 +9412 25920 0.4430 +9412 26043 0.5440 +9412 26127 0.4040 +9412 26985 0.4160 +9412 29079 0.9990 +9412 30834 0.4900 +9412 51003 0.9990 +9412 51092 0.5430 +9412 51126 0.4340 +9412 51129 0.4990 +9412 51586 0.9980 +9412 51720 0.4220 +9412 51728 0.5590 +9412 51750 0.4120 +9412 51768 0.5140 +9412 53371 0.4510 +9412 54797 0.9990 +9412 54847 0.5430 +9412 55090 0.9990 +9412 55294 0.5330 +9412 55297 0.4210 +9412 55588 0.9990 +9412 55658 0.4340 +9412 55703 0.6090 +9412 55726 0.4230 +9412 55959 0.4690 +9412 57121 0.5430 +9412 57148 0.4550 +9412 59348 0.4860 +9412 79184 0.4240 +9412 79642 0.4880 +9412 80306 0.9990 +9412 80895 0.4100 +9412 81488 0.5250 +9412 81857 0.9920 +9412 83860 0.8000 +9412 83990 0.4170 +9412 84142 0.4370 +9412 84172 0.6050 +9412 84246 0.9990 +9412 84498 0.5120 +9412 85441 0.5220 +9412 90390 0.9990 +9412 112950 0.9990 +9412 116931 0.9080 +9412 121504 0.8160 +9412 126961 0.8100 +9412 127428 0.4860 +9412 129685 0.8000 +9412 133522 0.9000 +9412 149483 0.5430 +9412 151649 0.4060 +9412 151742 0.4060 +9412 152926 0.4060 +9412 153527 0.4270 +9412 153642 0.4700 +9412 154865 0.4060 +9412 170082 0.4860 +9412 246721 0.5640 +9412 256643 0.5430 +9412 286749 0.4970 +9412 333932 0.8100 +9412 340075 0.4880 +9412 340602 0.5430 +9412 347527 0.4910 +9412 387332 0.4390 +9412 399949 0.4390 +9412 400569 0.9990 +9412 404672 0.8490 +9412 448834 0.5430 +9412 548644 0.5640 +9412 554313 0.8170 +9412 653604 0.8240 +9412 728340 0.5680 +9412 100134938 0.5620 +9412 107983993 0.5620 +9412 122455342 0.5430 +9413 9414 0.8540 +9413 9531 0.4640 +9413 10254 0.4220 +9413 10712 0.6550 +9413 11059 0.6170 +9413 11060 0.6550 +9413 23294 0.4040 +9413 23327 0.5290 +9413 29979 0.4680 +9413 54682 0.4690 +9413 56850 0.4260 +9413 57520 0.5500 +9413 58511 0.4550 +9413 79038 0.4010 +9413 83737 0.6110 +9413 114801 0.4020 +9413 117531 0.7610 +9413 134548 0.5350 +9413 162968 0.4920 +9413 285051 0.4120 +9413 338692 0.4870 +9413 389073 0.4790 +9413 399909 0.5410 +9413 727800 0.4570 +9414 9463 0.4070 +9414 9475 0.4900 +9414 9559 0.4270 +9414 9662 0.4060 +9414 9693 0.9800 +9414 9748 0.4090 +9414 9863 0.5720 +9414 9928 0.6090 +9414 10207 0.7210 +9414 10211 0.4010 +9414 10413 0.9900 +9414 10686 0.5410 +9414 10804 0.6250 +9414 11064 0.4370 +9414 11113 0.5570 +9414 11149 0.5150 +9414 11188 0.4980 +9414 23002 0.4630 +9414 23513 0.9430 +9414 23562 0.7300 +9414 24146 0.5220 +9414 25937 0.9220 +9414 27134 0.9880 +9414 29941 0.4090 +9414 30011 0.4950 +9414 50848 0.9960 +9414 51208 0.4660 +9414 51735 0.4050 +9414 54443 0.5840 +9414 54532 0.7330 +9414 55914 0.4770 +9414 56288 0.6870 +9414 57369 0.7480 +9414 57530 0.9990 +9414 58494 0.5670 +9414 64398 0.6500 +9414 65124 0.4600 +9414 65266 0.4860 +9414 80036 0.6920 +9414 81609 0.6820 +9414 81624 0.4170 +9414 81839 0.4350 +9414 83700 0.5560 +9414 84078 0.5210 +9414 84708 0.6100 +9414 84952 0.4210 +9414 90952 0.5620 +9414 91862 0.5860 +9414 117531 0.8170 +9414 118429 0.5070 +9414 144100 0.4740 +9414 145508 0.4520 +9414 145581 0.4870 +9414 149461 0.4660 +9414 150084 0.4140 +9414 153562 0.9970 +9414 154796 0.6510 +9414 192111 0.6060 +9414 200576 0.4020 +9414 260425 0.4220 +9414 284119 0.4350 +9414 333929 0.5130 +9414 100506658 0.9990 +9415 10400 0.5150 +9415 10826 0.5440 +9415 11145 0.9100 +9415 26279 0.6640 +9415 30814 0.6500 +9415 50487 0.6920 +9415 54898 0.7770 +9415 54995 0.4490 +9415 55856 0.4120 +9415 60481 0.8400 +9415 64600 0.6640 +9415 64834 0.6400 +9415 79071 0.7030 +9415 79966 0.6060 +9415 79993 0.5790 +9415 81579 0.6500 +9415 83401 0.5850 +9415 84647 0.6660 +9415 84649 0.4420 +9415 84955 0.6190 +9415 112812 0.5700 +9415 123099 0.5580 +9415 123745 0.6820 +9415 132949 0.4870 +9415 151056 0.6500 +9415 255189 0.6500 +9415 283748 0.6610 +9415 283985 0.4110 +9415 391013 0.6500 +9415 100137049 0.6880 +9416 9584 0.6880 +9416 9632 0.4880 +9416 9704 0.4650 +9416 9716 0.5770 +9416 9733 0.7170 +9416 9775 0.6950 +9416 9785 0.9830 +9416 9810 0.6490 +9416 9869 0.5030 +9416 9879 0.5220 +9416 9939 0.5250 +9416 10078 0.7220 +9416 10179 0.5320 +9416 10180 0.4040 +9416 10181 0.4210 +9416 10189 0.5050 +9416 10262 0.8620 +9416 10283 0.7150 +9416 10286 0.6330 +9416 10291 0.9550 +9416 10421 0.9960 +9416 10450 0.5050 +9416 10465 0.8180 +9416 10514 0.4050 +9416 10557 0.4010 +9416 10569 0.7130 +9416 10594 0.9990 +9416 10713 0.9960 +9416 10772 0.4010 +9416 10856 0.4020 +9416 10907 0.9990 +9416 10921 0.4170 +9416 10946 0.9400 +9416 10969 0.4320 +9416 10985 0.6140 +9416 10987 0.4280 +9416 10992 0.9230 +9416 11017 0.9370 +9416 11066 0.5890 +9416 11083 0.5360 +9416 11157 0.9900 +9416 11193 0.4710 +9416 11222 0.4270 +9416 11231 0.5440 +9416 11338 0.7250 +9416 22803 0.4970 +9416 22826 0.5180 +9416 22907 0.4490 +9416 22916 0.4100 +9416 22938 0.7910 +9416 22984 0.5150 +9416 22985 0.4840 +9416 23020 0.9990 +9416 23064 0.5860 +9416 23070 0.4040 +9416 23076 0.5500 +9416 23246 0.5350 +9416 23367 0.4700 +9416 23381 0.5630 +9416 23450 0.9230 +9416 23451 0.9560 +9416 23476 0.5400 +9416 23481 0.5190 +9416 23524 0.4600 +9416 23560 0.5310 +9416 23644 0.5570 +9416 23658 0.9880 +9416 23759 0.6340 +9416 24144 0.9280 +9416 24148 0.9990 +9416 25804 0.9900 +9416 25921 0.4580 +9416 25949 0.4920 +9416 25980 0.9800 +9416 26121 0.9970 +9416 26155 0.5520 +9416 26156 0.4010 +9416 27238 0.5350 +9416 27257 0.5530 +9416 27258 0.9830 +9416 27336 0.7370 +9416 27339 0.7020 +9416 29102 0.4190 +9416 29889 0.4320 +9416 51319 0.7800 +9416 51340 0.9830 +9416 51362 0.6250 +9416 51428 0.6220 +9416 51434 0.4500 +9416 51479 0.5390 +9416 51503 0.5560 +9416 51602 0.5180 +9416 51631 0.6380 +9416 51639 0.8470 +9416 51645 0.4930 +9416 51690 0.9930 +9416 51691 0.9810 +9416 51692 0.5150 +9416 51747 0.8110 +9416 51759 0.6010 +9416 53938 0.4790 +9416 54505 0.4780 +9416 54606 0.5820 +9416 54883 0.7370 +9416 54952 0.5460 +9416 54957 0.6440 +9416 55015 0.6880 +9416 55226 0.5080 +9416 55234 0.4030 +9416 55299 0.4210 +9416 55308 0.4020 +9416 55341 0.4930 +9416 55599 0.4030 +9416 55660 0.4790 +9416 55692 0.7430 +9416 55696 0.6250 +9416 55702 0.7130 +9416 55749 0.5500 +9416 55760 0.4300 +9416 55837 0.8300 +9416 55954 0.8240 +9416 56259 0.6220 +9416 56919 0.6020 +9416 56949 0.8390 +9416 57136 0.4970 +9416 57461 0.4690 +9416 57506 0.5010 +9416 57647 0.4560 +9416 57696 0.4050 +9416 57703 0.8050 +9416 57794 0.6710 +9416 57805 0.5010 +9416 57819 0.9900 +9416 58517 0.8450 +9416 60625 0.6210 +9416 64318 0.4610 +9416 65083 0.4610 +9416 79171 0.9450 +9416 79665 0.4550 +9416 79869 0.4370 +9416 79902 0.4990 +9416 80153 0.5110 +9416 83443 0.8760 +9416 84271 0.5580 +9416 84273 0.4010 +9416 84365 0.4240 +9416 84811 0.5410 +9416 84844 0.9080 +9416 84950 0.5910 +9416 84991 0.5160 +9416 85476 0.4330 +9416 87178 0.5000 +9416 89876 0.4900 +9416 91603 0.4520 +9416 94104 0.7960 +9416 117246 0.6250 +9416 124245 0.4100 +9416 129831 0.6260 +9416 151903 0.4050 +9416 153527 0.8370 +9416 170506 0.4440 +9416 246243 0.5340 +9416 347744 0.5370 +9416 100996928 0.6400 +9416 114483834 0.4250 +9419 10250 0.8000 +9419 10262 0.8000 +9419 10283 0.8050 +9419 10594 0.9000 +9419 10992 0.9000 +9419 22938 0.8030 +9419 23020 0.8000 +9419 23450 0.9000 +9419 23451 0.9000 +9419 23524 0.8000 +9419 23759 0.8510 +9419 26017 0.4250 +9419 27238 0.8000 +9419 51340 0.8360 +9419 51503 0.8240 +9419 51634 0.8060 +9419 51639 0.8210 +9419 56172 0.4040 +9419 57703 0.8030 +9419 79005 0.8540 +9419 79637 0.9420 +9419 79753 0.8000 +9419 83443 0.8010 +9419 84060 0.8650 +9419 84811 0.8000 +9419 84844 0.9050 +9419 90423 0.5890 +9419 92400 0.4160 +9419 388946 0.6890 +9419 440730 0.4370 +9420 9619 0.4530 +9420 9897 0.4470 +9420 9907 0.6510 +9420 9970 0.4850 +9420 9971 0.8790 +9420 10280 0.6690 +9420 10826 0.7040 +9420 10858 0.8270 +9420 10908 0.6800 +9420 10998 0.4660 +9420 11161 0.6510 +9420 23259 0.4480 +9420 23503 0.5700 +9420 26166 0.4760 +9420 27430 0.5070 +9420 50814 0.5780 +9420 51324 0.5050 +9420 51478 0.7080 +9420 54905 0.6540 +9420 56603 0.6600 +9420 57165 0.5440 +9420 57404 0.5490 +9420 57412 0.4760 +9420 57704 0.4470 +9420 57834 0.4670 +9420 64240 0.8170 +9420 64241 0.8120 +9420 65055 0.5160 +9420 79152 0.5810 +9420 79661 0.5470 +9420 80208 0.5810 +9420 80270 0.9880 +9420 80777 0.4350 +9420 80821 0.4340 +9420 93517 0.5930 +9420 113612 0.4650 +9420 120227 0.5830 +9420 123264 0.5990 +9420 123606 0.4180 +9420 126410 0.5520 +9420 132949 0.5530 +9420 151306 0.5890 +9420 152831 0.4240 +9420 199974 0.4330 +9420 200931 0.5810 +9420 260293 0.5310 +9420 284541 0.5370 +9420 286151 0.4760 +9420 339761 0.4580 +9420 340665 0.6450 +9420 346673 0.5490 +9420 389692 0.4280 +9421 23493 0.4480 +9421 54716 0.5070 +9421 64131 0.6200 +9421 64132 0.5670 +9422 9860 0.5610 +9422 10155 0.6640 +9422 10794 0.4780 +9422 57663 0.4660 +9422 80321 0.5910 +9422 84859 0.4740 +9422 90933 0.4390 +9422 192669 0.5420 +9422 390980 0.7150 +9422 440590 0.4260 +9422 619279 0.4280 +9423 9723 0.5470 +9423 10371 0.7380 +9423 10507 0.4530 +9423 10512 0.6350 +9423 10527 0.4240 +9423 10553 0.5440 +9423 11023 0.4790 +9423 22885 0.6020 +9423 23129 0.4200 +9423 23384 0.4040 +9423 23767 0.4620 +9423 23768 0.5880 +9423 54538 0.4960 +9423 54549 0.4940 +9423 55558 0.4510 +9423 56935 0.4130 +9423 56963 0.6580 +9423 57453 0.6410 +9423 57556 0.4510 +9423 57689 0.5950 +9423 57722 0.5500 +9423 64221 0.8660 +9423 79075 0.4470 +9423 84448 0.5970 +9423 90249 0.9990 +9423 114088 0.5710 +9423 121227 0.5490 +9423 137970 0.9860 +9423 219699 0.9990 +9423 285704 0.9310 +9423 374946 0.9740 +9424 10089 0.6230 +9424 50801 0.6270 +9424 51305 0.6210 +9424 51350 0.9800 +9424 54207 0.6060 +9424 56659 0.7640 +9424 56660 0.6280 +9424 60598 0.6410 +9424 65266 0.4350 +9424 83795 0.6090 +9424 89822 0.5810 +9424 90134 0.4560 +9424 338567 0.6380 +9425 9553 0.5420 +9425 9607 0.6360 +9425 9801 0.4660 +9425 9862 0.4050 +9425 9869 0.8620 +9425 10005 0.4940 +9425 10114 0.4970 +9425 10449 0.6360 +9425 10643 0.4850 +9425 10905 0.4420 +9425 10919 0.9950 +9425 10951 0.6450 +9425 22985 0.4940 +9425 23028 0.6460 +9425 23060 0.4220 +9425 23186 0.7880 +9425 23405 0.6160 +9425 23512 0.5940 +9425 23626 0.4140 +9425 26275 0.4500 +9425 26589 0.4610 +9425 27034 0.4860 +9425 27349 0.4110 +9425 28976 0.4790 +9425 29093 0.4300 +9425 29102 0.6090 +9425 30827 0.5010 +9425 51021 0.4760 +9425 51084 0.4690 +9425 51264 0.4670 +9425 51497 0.4200 +9425 54511 0.4720 +9425 54531 0.7490 +9425 55052 0.4050 +9425 55289 0.4780 +9425 55662 0.7060 +9425 55833 0.4770 +9425 55862 0.4780 +9425 55902 0.5380 +9425 56922 0.4110 +9425 56979 0.6640 +9425 57054 0.5690 +9425 57055 0.5840 +9425 57129 0.4760 +9425 57135 0.5560 +9425 57591 0.4460 +9425 57708 0.9330 +9425 60488 0.4830 +9425 63875 0.4740 +9425 64064 0.4300 +9425 64087 0.4830 +9425 64965 0.5020 +9425 64968 0.4900 +9425 64969 0.4470 +9425 64975 0.4540 +9425 64976 0.4670 +9425 64979 0.4680 +9425 64981 0.4290 +9425 64983 0.4210 +9425 65080 0.5860 +9425 79813 0.9120 +9425 79901 0.7490 +9425 80063 0.5120 +9425 80221 0.4020 +9425 80724 0.4750 +9425 80854 0.4320 +9425 84129 0.4730 +9425 84146 0.7890 +9425 84263 0.8080 +9425 84458 0.6110 +9425 84532 0.4010 +9425 84545 0.4710 +9425 84656 0.4950 +9425 124359 0.4550 +9425 140856 0.4130 +9425 140883 0.4930 +9425 254042 0.4030 +9425 255626 0.4030 +9425 284422 0.4840 +9425 353513 0.6980 +9425 387893 0.4130 +9425 440093 0.5200 +9425 440686 0.5200 +9425 653604 0.5240 +9425 100526842 0.4160 +9425 109703458 0.5000 +9425 122405565 0.4840 +9427 9470 0.4440 +9427 10664 0.4440 +9427 23405 0.4310 +9427 55906 0.4090 +9427 63895 0.5020 +9427 79184 0.4280 +9427 79923 0.4380 +9427 205428 0.4110 +9429 9961 0.5060 +9429 9970 0.5260 +9429 9971 0.4020 +9429 10057 0.6480 +9429 10061 0.4870 +9429 10144 0.4200 +9429 10257 0.6320 +9429 10476 0.4090 +9429 10599 0.8860 +9429 10720 0.4970 +9429 10763 0.6110 +9429 10786 0.6610 +9429 10864 0.6790 +9429 10894 0.6970 +9429 11309 0.7750 +9429 23657 0.5620 +9429 27306 0.4210 +9429 28231 0.4470 +9429 28232 0.4060 +9429 28234 0.7900 +9429 28982 0.4860 +9429 51081 0.8130 +9429 53919 0.4350 +9429 54490 0.4900 +9429 54575 0.6730 +9429 54576 0.6780 +9429 54577 0.6740 +9429 54578 0.6810 +9429 54579 0.4900 +9429 54600 0.6140 +9429 54657 0.6760 +9429 54658 0.6830 +9429 54659 0.5930 +9429 55143 0.4770 +9429 55244 0.7520 +9429 55867 0.7460 +9429 56606 0.8810 +9429 64078 0.4570 +9429 64399 0.4960 +9429 79799 0.4950 +9429 79923 0.7170 +9429 85413 0.4340 +9429 89845 0.4190 +9429 113235 0.4810 +9429 114571 0.6440 +9429 116085 0.8690 +9429 123264 0.4160 +9429 124976 0.4560 +9429 126133 0.5280 +9429 135152 0.5110 +9429 137902 0.5360 +9429 146802 0.7200 +9429 160728 0.4330 +9429 200931 0.4200 +9429 220963 0.5490 +9429 340273 0.4450 +9429 353189 0.4410 +9429 574537 0.4910 +9429 100133941 0.6610 +9429 100506658 0.4430 +9429 100532731 0.6900 +9429 114483834 0.4880 +9435 9912 0.4150 +9435 10164 0.9150 +9435 10331 0.4580 +9435 10402 0.4520 +9435 11081 0.4150 +9435 11226 0.4960 +9435 51363 0.4970 +9435 55501 0.4220 +9435 79087 0.4180 +9435 113189 0.4190 +9435 123803 0.9130 +9436 9437 0.9950 +9436 9976 0.6410 +9436 10219 0.4760 +9436 10225 0.5150 +9436 10663 0.4340 +9436 10666 0.8150 +9436 10859 0.6680 +9436 10870 0.8520 +9436 10871 0.4490 +9436 11251 0.6250 +9436 11314 0.4910 +9436 22914 0.9630 +9436 23547 0.4030 +9436 27036 0.4770 +9436 27087 0.6010 +9436 29126 0.4330 +9436 30009 0.5810 +9436 30816 0.4930 +9436 50616 0.6430 +9436 50943 0.4240 +9436 51348 0.7930 +9436 51744 0.6080 +9436 54209 0.7100 +9436 54210 0.5670 +9436 55904 0.9840 +9436 55911 0.4600 +9436 57823 0.4160 +9436 79465 0.5820 +9436 79865 0.4430 +9436 80310 0.6920 +9436 80328 0.7420 +9436 80329 0.8030 +9436 84271 0.4910 +9436 84662 0.4240 +9436 84868 0.4740 +9436 114836 0.7940 +9436 124599 0.4400 +9436 146722 0.5100 +9436 146894 0.4050 +9436 148022 0.4020 +9436 151888 0.4680 +9436 170482 0.4470 +9436 201633 0.5440 +9436 259197 0.9950 +9436 340205 0.5530 +9436 342510 0.4210 +9436 374383 0.9710 +9436 100131439 0.4160 +9436 100507436 0.5630 +9436 100526664 0.5390 +9437 9976 0.7030 +9437 10018 0.4100 +9437 10219 0.7430 +9437 10225 0.7690 +9437 10578 0.5450 +9437 10663 0.5900 +9437 10666 0.9270 +9437 10870 0.8580 +9437 11126 0.5590 +9437 11251 0.4500 +9437 11314 0.4150 +9437 22914 0.9860 +9437 23506 0.7240 +9437 27036 0.5440 +9437 27087 0.7090 +9437 27141 0.5070 +9437 29126 0.5720 +9437 29851 0.4770 +9437 29998 0.7240 +9437 30009 0.7490 +9437 30816 0.5200 +9437 50616 0.6690 +9437 50943 0.6430 +9437 51266 0.4230 +9437 51348 0.8470 +9437 51412 0.7200 +9437 51526 0.4720 +9437 51744 0.8790 +9437 53335 0.7340 +9437 55193 0.7200 +9437 55274 0.5400 +9437 55904 0.6620 +9437 56253 0.4780 +9437 57477 0.4290 +9437 57492 0.7200 +9437 57823 0.7310 +9437 64919 0.7940 +9437 65980 0.7200 +9437 79465 0.6460 +9437 80328 0.6580 +9437 80329 0.9030 +9437 84271 0.5710 +9437 84662 0.4380 +9437 84868 0.5930 +9437 85451 0.4480 +9437 90865 0.4940 +9437 114836 0.8360 +9437 117157 0.5300 +9437 130120 0.4020 +9437 135250 0.4840 +9437 149233 0.4090 +9437 154064 0.4080 +9437 196528 0.7200 +9437 199713 0.4090 +9437 201294 0.4250 +9437 201633 0.6310 +9437 259197 0.9920 +9437 285220 0.5830 +9437 353091 0.4310 +9437 374383 0.9580 +9437 405754 0.5150 +9437 100507436 0.5750 +9437 100526664 0.5310 +9439 9440 0.9980 +9439 9441 0.9980 +9439 9442 0.9970 +9439 9443 0.9970 +9439 9444 0.9940 +9439 9477 0.9960 +9439 9611 0.6150 +9439 9612 0.5180 +9439 9774 0.5790 +9439 9862 0.9990 +9439 9967 0.5590 +9439 9968 0.9990 +9439 9969 0.9960 +9439 9970 0.7450 +9439 10001 0.9980 +9439 10025 0.9990 +9439 10432 0.5240 +9439 10499 0.5940 +9439 10891 0.5600 +9439 22887 0.4190 +9439 23054 0.4390 +9439 23070 0.4450 +9439 23091 0.9950 +9439 23097 0.9820 +9439 23186 0.4370 +9439 23369 0.4040 +9439 23389 0.9780 +9439 23476 0.8180 +9439 25836 0.5250 +9439 25855 0.4210 +9439 29079 0.9990 +9439 51003 0.9970 +9439 51129 0.4990 +9439 51586 0.9990 +9439 54797 0.9990 +9439 55090 0.9960 +9439 55588 0.9970 +9439 56254 0.6240 +9439 57818 0.4480 +9439 79869 0.4160 +9439 79991 0.9940 +9439 80306 0.9990 +9439 81857 0.9990 +9439 83860 0.8150 +9439 84246 0.9980 +9439 84498 0.5200 +9439 84955 0.6290 +9439 85441 0.5130 +9439 90390 0.9980 +9439 92579 0.4550 +9439 112950 0.9960 +9439 116931 0.9180 +9439 121504 0.8000 +9439 126961 0.8000 +9439 129685 0.8600 +9439 133522 0.5680 +9439 256643 0.5500 +9439 333932 0.8000 +9439 400569 0.9960 +9439 404672 0.8150 +9439 554313 0.8000 +9439 653604 0.8380 +9440 9441 0.9990 +9440 9442 0.9990 +9440 9443 0.9990 +9440 9444 0.9940 +9440 9477 0.9990 +9440 9519 0.5600 +9440 9533 0.7030 +9440 9611 0.6240 +9440 9612 0.5310 +9440 9623 0.4950 +9440 9696 0.4820 +9440 9774 0.5710 +9440 9862 0.9980 +9440 9913 0.8420 +9440 9967 0.9060 +9440 9968 0.9990 +9440 9969 0.9960 +9440 9970 0.6210 +9440 10001 0.9990 +9440 10025 0.9990 +9440 10471 0.7220 +9440 10499 0.5080 +9440 10856 0.6300 +9440 10891 0.6600 +9440 11036 0.4380 +9440 11321 0.7900 +9440 22894 0.4980 +9440 22901 0.4330 +9440 23091 0.9950 +9440 23097 0.9870 +9440 23168 0.4430 +9440 23389 0.9550 +9440 23476 0.6870 +9440 24144 0.6520 +9440 25836 0.5150 +9440 25976 0.4400 +9440 26015 0.7720 +9440 26043 0.5950 +9440 28970 0.4980 +9440 29079 0.9990 +9440 30834 0.4770 +9440 50640 0.5230 +9440 51003 0.9990 +9440 51092 0.5240 +9440 51129 0.4990 +9440 51535 0.5840 +9440 51586 0.9990 +9440 51728 0.4750 +9440 51755 0.4350 +9440 54797 0.9990 +9440 54847 0.4780 +9440 55090 0.9970 +9440 55294 0.5220 +9440 55339 0.5730 +9440 55588 0.9990 +9440 55689 0.5070 +9440 55703 0.5750 +9440 57121 0.4770 +9440 63925 0.4700 +9440 65123 0.7220 +9440 65125 0.4320 +9440 65266 0.4060 +9440 65267 0.4060 +9440 65268 0.4060 +9440 79441 0.4770 +9440 79642 0.4330 +9440 79657 0.7740 +9440 79871 0.8650 +9440 79991 0.9940 +9440 80306 0.9990 +9440 81488 0.5110 +9440 81857 0.9960 +9440 83860 0.8030 +9440 84172 0.5490 +9440 84246 0.9990 +9440 84498 0.5130 +9440 84955 0.6250 +9440 85441 0.5000 +9440 90390 0.9990 +9440 90806 0.4910 +9440 112950 0.9990 +9440 116931 0.8620 +9440 121504 0.8000 +9440 124817 0.4060 +9440 126961 0.8050 +9440 127428 0.5170 +9440 129685 0.9290 +9440 133522 0.9000 +9440 149483 0.4780 +9440 170082 0.4830 +9440 246721 0.5370 +9440 256643 0.5460 +9440 286749 0.4380 +9440 333932 0.8050 +9440 340075 0.4330 +9440 340602 0.4770 +9440 347527 0.4330 +9440 387332 0.5420 +9440 387804 0.5270 +9440 399949 0.5320 +9440 400569 0.9990 +9440 404672 0.8150 +9440 448834 0.4770 +9440 548644 0.5410 +9440 554313 0.8000 +9440 653604 0.8420 +9440 728340 0.4710 +9440 100134938 0.5370 +9440 107983993 0.5370 +9440 122455342 0.4770 +9441 9442 0.9980 +9441 9443 0.9990 +9441 9444 0.5040 +9441 9477 0.9970 +9441 9533 0.5390 +9441 9611 0.5470 +9441 9612 0.5270 +9441 9774 0.5570 +9441 9862 0.9960 +9441 9967 0.9040 +9441 9968 0.9940 +9441 9969 0.9940 +9441 10001 0.9990 +9441 10025 0.9970 +9441 10499 0.5890 +9441 10621 0.4710 +9441 10849 0.4210 +9441 10891 0.5240 +9441 10919 0.5600 +9441 11128 0.5080 +9441 11198 0.5400 +9441 22936 0.7920 +9441 23091 0.9940 +9441 23097 0.9720 +9441 23168 0.4940 +9441 23379 0.5470 +9441 23389 0.9640 +9441 23476 0.6840 +9441 25885 0.5040 +9441 27125 0.8100 +9441 27297 0.4150 +9441 29079 0.9990 +9441 29113 0.4890 +9441 51003 0.9990 +9441 51082 0.6660 +9441 51129 0.4990 +9441 51224 0.6250 +9441 51586 0.9970 +9441 54797 0.9990 +9441 55090 0.9980 +9441 55588 0.9980 +9441 55677 0.6550 +9441 55703 0.4840 +9441 55718 0.4370 +9441 55840 0.6500 +9441 56257 0.4410 +9441 57455 0.4060 +9441 64425 0.5450 +9441 79577 0.4660 +9441 79664 0.6410 +9441 79871 0.6360 +9441 80237 0.6890 +9441 80306 0.9990 +9441 81488 0.6070 +9441 81857 0.9910 +9441 83860 0.8890 +9441 84172 0.4840 +9441 84246 0.9990 +9441 84498 0.5220 +9441 84524 0.4300 +9441 85403 0.8290 +9441 85441 0.5400 +9441 90390 0.9990 +9441 112950 0.9970 +9441 116931 0.8410 +9441 121504 0.8290 +9441 123169 0.5540 +9441 126961 0.8380 +9441 129685 0.8680 +9441 133522 0.9000 +9441 149478 0.4240 +9441 221830 0.6060 +9441 246721 0.4120 +9441 256643 0.5400 +9441 333932 0.8380 +9441 400569 0.9980 +9441 404672 0.8130 +9441 548644 0.4120 +9441 554313 0.8290 +9441 653604 0.8630 +9441 100134938 0.4120 +9441 100820829 0.4790 +9441 107983993 0.4120 +9442 9443 0.9990 +9442 9444 0.9940 +9442 9477 0.9990 +9442 9611 0.5170 +9442 9612 0.5040 +9442 9774 0.5600 +9442 9862 0.9990 +9442 9967 0.5600 +9442 9968 0.9990 +9442 9969 0.9890 +9442 10001 0.9980 +9442 10025 0.9990 +9442 10499 0.5140 +9442 10891 0.5090 +9442 23091 0.9940 +9442 23097 0.9750 +9442 23389 0.9700 +9442 23476 0.5600 +9442 24144 0.4240 +9442 29079 0.9980 +9442 51003 0.9980 +9442 51129 0.5340 +9442 51586 0.9990 +9442 54797 0.9990 +9442 55090 0.9960 +9442 55170 0.4260 +9442 55588 0.9990 +9442 64320 0.4630 +9442 79913 0.4270 +9442 79991 0.9940 +9442 80306 0.9990 +9442 81857 0.9840 +9442 83759 0.4090 +9442 83860 0.8000 +9442 84246 0.9990 +9442 84498 0.5280 +9442 84955 0.6360 +9442 85441 0.5120 +9442 90390 0.9990 +9442 112950 0.9980 +9442 116931 0.7610 +9442 121504 0.8010 +9442 126961 0.8080 +9442 129685 0.8090 +9442 132949 0.5140 +9442 133522 0.5530 +9442 256643 0.5400 +9442 333932 0.8080 +9442 400569 0.9990 +9442 404672 0.8140 +9442 554313 0.8010 +9442 653604 0.8160 +9443 9477 0.9990 +9443 9519 0.5390 +9443 9533 0.8360 +9443 9611 0.4990 +9443 9612 0.4990 +9443 9647 0.4120 +9443 9696 0.5470 +9443 9774 0.5600 +9443 9862 0.9970 +9443 9967 0.5570 +9443 9968 0.9910 +9443 9969 0.9870 +9443 10001 0.9990 +9443 10025 0.9980 +9443 10393 0.4040 +9443 10454 0.4060 +9443 10499 0.5140 +9443 10891 0.4990 +9443 11036 0.5200 +9443 22796 0.4780 +9443 22843 0.4120 +9443 22901 0.5760 +9443 23041 0.4480 +9443 23097 0.9930 +9443 23213 0.4660 +9443 23389 0.9770 +9443 26043 0.5510 +9443 29079 0.9990 +9443 30834 0.6630 +9443 50640 0.6000 +9443 51003 0.9990 +9443 51092 0.5470 +9443 51129 0.4990 +9443 51535 0.5970 +9443 51586 0.9990 +9443 51728 0.4930 +9443 51750 0.4270 +9443 54797 0.9990 +9443 54847 0.5470 +9443 55090 0.9990 +9443 55145 0.5900 +9443 55588 0.9980 +9443 55703 0.7550 +9443 55959 0.4660 +9443 57121 0.5470 +9443 65125 0.5140 +9443 65266 0.5000 +9443 65267 0.5000 +9443 65268 0.5000 +9443 79607 0.4510 +9443 79642 0.4910 +9443 80006 0.6220 +9443 80306 0.9980 +9443 80324 0.4300 +9443 80895 0.4060 +9443 81488 0.4510 +9443 81857 0.9920 +9443 83860 0.8030 +9443 83990 0.4280 +9443 84172 0.7510 +9443 84246 0.9990 +9443 84498 0.5080 +9443 84868 0.7070 +9443 85004 0.4010 +9443 85441 0.4990 +9443 90390 0.9980 +9443 112950 0.9990 +9443 116931 0.9480 +9443 121504 0.8300 +9443 124817 0.5010 +9443 126961 0.8000 +9443 127428 0.4840 +9443 129685 0.8230 +9443 133522 0.5400 +9443 149483 0.5470 +9443 151649 0.4060 +9443 151742 0.4060 +9443 152926 0.4060 +9443 153642 0.4710 +9443 154865 0.4060 +9443 170082 0.4840 +9443 246721 0.8140 +9443 256643 0.5570 +9443 286749 0.4970 +9443 333932 0.8000 +9443 340075 0.4910 +9443 340602 0.5470 +9443 347527 0.5730 +9443 387332 0.5880 +9443 399949 0.5080 +9443 400569 0.9990 +9443 404672 0.8250 +9443 448834 0.5470 +9443 548644 0.8140 +9443 554313 0.8190 +9443 653604 0.8170 +9443 728340 0.5830 +9443 100134938 0.6100 +9443 107983993 0.6100 +9443 122455342 0.5470 +9444 9513 0.4180 +9444 9530 0.4490 +9444 9630 0.4020 +9444 9715 0.7180 +9444 9775 0.7200 +9444 9839 0.4010 +9444 9862 0.9940 +9444 9968 0.9940 +9444 9969 0.9940 +9444 9987 0.4330 +9444 10018 0.5410 +9444 10025 0.9940 +9444 10084 0.5030 +9444 10114 0.4380 +9444 10142 0.5420 +9444 10150 0.9140 +9444 10181 0.4540 +9444 10492 0.5480 +9444 10533 0.5620 +9444 10642 0.6610 +9444 10643 0.5160 +9444 10644 0.4920 +9444 10658 0.5260 +9444 10659 0.4730 +9444 10827 0.5160 +9444 10949 0.4860 +9444 11030 0.9670 +9444 11044 0.5730 +9444 11189 0.4820 +9444 11338 0.7030 +9444 22906 0.4990 +9444 22913 0.6350 +9444 23060 0.5160 +9444 23152 0.4680 +9444 23164 0.5900 +9444 23369 0.6540 +9444 23451 0.4570 +9444 23543 0.9670 +9444 23597 0.4220 +9444 25793 0.4290 +9444 25894 0.4950 +9444 26528 0.4490 +9444 26986 0.4290 +9444 27044 0.5900 +9444 27161 0.4990 +9444 27185 0.4100 +9444 27316 0.5540 +9444 27327 0.4390 +9444 29079 0.9940 +9444 29896 0.4210 +9444 29966 0.4140 +9444 29978 0.4970 +9444 51003 0.9940 +9444 51366 0.8500 +9444 51586 0.9940 +9444 54502 0.4420 +9444 54715 0.6840 +9444 54845 0.8610 +9444 54882 0.4880 +9444 54915 0.5530 +9444 55109 0.5410 +9444 55147 0.6460 +9444 55573 0.4620 +9444 55588 0.9940 +9444 55646 0.4220 +9444 55750 0.5370 +9444 55796 0.8910 +9444 56829 0.5800 +9444 56893 0.5570 +9444 57085 0.5030 +9444 57670 0.7030 +9444 58155 0.7550 +9444 63948 0.4310 +9444 64506 0.5640 +9444 79084 0.5170 +9444 79171 0.4970 +9444 80004 0.6960 +9444 80853 0.5080 +9444 81857 0.9940 +9444 84246 0.9940 +9444 84991 0.5870 +9444 92906 0.7750 +9444 114793 0.4160 +9444 124540 0.5850 +9444 135138 0.6700 +9444 138151 0.4570 +9444 253943 0.5310 +9444 282996 0.4340 +9444 283373 0.4470 +9445 9528 0.4270 +9445 10161 0.5880 +9445 10505 0.4200 +9445 11061 0.4740 +9445 22862 0.4830 +9445 23621 0.6400 +9445 25789 0.4950 +9445 25978 0.4670 +9445 29959 0.4480 +9445 51131 0.5070 +9445 56928 0.6200 +9445 57556 0.4290 +9445 81502 0.4790 +9445 81602 0.4490 +9445 81617 0.4490 +9445 83852 0.4370 +9445 84522 0.4070 +9445 84650 0.4080 +9445 84888 0.5950 +9445 124446 0.4270 +9446 9512 0.4260 +9446 9588 0.9570 +9446 10443 0.4230 +9446 10587 0.4680 +9446 10728 0.4190 +9446 10858 0.4950 +9446 10901 0.4330 +9446 10935 0.4190 +9446 23203 0.4220 +9446 27306 0.9560 +9446 29785 0.6870 +9446 29796 0.4850 +9446 29957 0.4140 +9446 29979 0.4620 +9446 51060 0.9060 +9446 51079 0.5530 +9446 55728 0.4260 +9446 55967 0.5810 +9446 57412 0.6230 +9446 57552 0.4090 +9446 79094 0.7570 +9446 79728 0.4230 +9446 79774 0.4180 +9446 84293 0.4410 +9446 84833 0.4840 +9446 90634 0.4770 +9446 112812 0.5650 +9446 119391 0.8020 +9446 124975 0.7320 +9446 133482 0.6860 +9446 221357 0.8360 +9446 257202 0.7960 +9446 284323 0.4310 +9446 373156 0.7110 +9446 374291 0.4170 +9446 440574 0.4020 +9446 493869 0.8000 +9446 494143 0.7030 +9446 653689 0.8900 +9447 9636 0.4220 +9447 9641 0.4360 +9447 10379 0.4070 +9447 10392 0.6250 +9447 10628 0.4640 +9447 11035 0.4920 +9447 11262 0.6890 +9447 11277 0.4740 +9447 22861 0.9990 +9447 22900 0.9810 +9447 22919 0.6110 +9447 23586 0.9420 +9447 23643 0.4150 +9447 24145 0.6750 +9447 28990 0.4240 +9447 29108 0.9990 +9447 29110 0.6360 +9447 29126 0.4400 +9447 50852 0.5460 +9447 51092 0.4140 +9447 51284 0.6180 +9447 51311 0.6250 +9447 51428 0.6830 +9447 54106 0.7010 +9447 55655 0.9630 +9447 55876 0.5080 +9447 56169 0.5430 +9447 56919 0.9290 +9447 57506 0.7140 +9447 58484 0.9990 +9447 59082 0.4110 +9447 64127 0.6900 +9447 64135 0.6980 +9447 64170 0.6380 +9447 64581 0.4400 +9447 79132 0.6190 +9447 79671 0.4960 +9447 79792 0.9470 +9447 80712 0.4200 +9447 81030 0.6890 +9447 81557 0.4390 +9447 81559 0.8850 +9447 84166 0.8230 +9447 91543 0.4440 +9447 91662 0.9810 +9447 114548 0.9990 +9447 114609 0.4510 +9447 115004 0.8050 +9447 115362 0.6200 +9447 140609 0.6130 +9447 147945 0.8620 +9447 170506 0.5150 +9447 171389 0.9990 +9447 197259 0.4730 +9447 197358 0.5150 +9447 199713 0.9120 +9447 260434 0.9210 +9447 284110 0.6470 +9447 338321 0.9540 +9447 338322 0.6710 +9447 340061 0.5820 +9447 494513 0.4800 +9447 728239 0.4450 +9448 10982 0.7400 +9448 11183 0.5170 +9448 11235 0.6260 +9448 23043 0.6650 +9448 23095 0.4080 +9448 25843 0.5030 +9448 26127 0.6590 +9448 26524 0.5550 +9448 27087 0.4360 +9448 27185 0.5190 +9448 29888 0.8140 +9448 29966 0.8040 +9448 50488 0.8830 +9448 51062 0.4950 +9448 51765 0.4490 +9448 54764 0.4240 +9448 55083 0.5640 +9448 55262 0.4200 +9448 55770 0.5160 +9448 55917 0.6210 +9448 56259 0.5350 +9448 57826 0.6260 +9448 60485 0.4660 +9448 80143 0.4080 +9448 81688 0.4060 +9448 85369 0.6070 +9448 131096 0.4140 +9448 260425 0.4600 +9448 339345 0.5230 +9448 388698 0.4070 +9448 389692 0.4670 +9450 9794 0.4200 +9450 10261 0.4280 +9450 10437 0.4450 +9450 10457 0.4030 +9450 11151 0.4160 +9450 11314 0.5870 +9450 11326 0.4090 +9450 23643 0.9950 +9450 25959 0.4170 +9450 26190 0.6600 +9450 27069 0.4680 +9450 50856 0.4150 +9450 51284 0.5780 +9450 51311 0.5440 +9450 51338 0.4400 +9450 54209 0.4480 +9450 54440 0.5390 +9450 54504 0.5350 +9450 54583 0.5460 +9450 54681 0.5460 +9450 57705 0.5150 +9450 58475 0.4070 +9450 64098 0.4710 +9450 64231 0.5770 +9450 64926 0.4230 +9450 112398 0.6290 +9450 112399 0.5040 +9450 122618 0.6140 +9450 146722 0.4090 +9450 219972 0.4770 +9451 9474 0.5620 +9451 9601 0.4330 +9451 9648 0.5460 +9451 9695 0.6100 +9451 9709 0.5430 +9451 9817 0.5300 +9451 9927 0.7820 +9451 9961 0.4830 +9451 10018 0.5880 +9451 10130 0.7560 +9451 10134 0.4510 +9451 10209 0.6150 +9451 10342 0.5720 +9451 10525 0.4800 +9451 10533 0.4740 +9451 10560 0.4110 +9451 10595 0.4200 +9451 10817 0.5230 +9451 10818 0.6400 +9451 11231 0.4810 +9451 22809 0.4490 +9451 22872 0.5670 +9451 22926 0.9780 +9451 22937 0.4790 +9451 23411 0.4720 +9451 23645 0.9010 +9451 26608 0.5500 +9451 27201 0.4040 +9451 27436 0.5060 +9451 29126 0.4100 +9451 30001 0.6120 +9451 51124 0.5210 +9451 51360 0.6500 +9451 53335 0.4100 +9451 54205 0.6040 +9451 54541 0.4150 +9451 54822 0.4250 +9451 55669 0.4210 +9451 56605 0.4380 +9451 56886 0.4780 +9451 57448 0.4990 +9451 57538 0.7910 +9451 57761 0.4620 +9451 65018 0.4050 +9451 79701 0.4210 +9451 80304 0.4990 +9451 81567 0.4490 +9451 81631 0.5690 +9451 83548 0.4120 +9451 83939 0.7480 +9451 84447 0.5500 +9451 84699 0.4010 +9451 84823 0.4140 +9451 84919 0.7290 +9451 114548 0.4430 +9451 133482 0.6240 +9451 137902 0.7060 +9451 168400 0.5580 +9451 169792 0.4270 +9451 201595 0.4190 +9451 221937 0.4170 +9451 222546 0.4310 +9451 256297 0.4380 +9451 439996 0.9050 +9451 440093 0.4330 +9451 440275 0.5120 +9451 440686 0.4330 +9451 653604 0.4320 +9451 102723407 0.5100 +9452 84636 0.4690 +9453 9482 0.5280 +9453 9733 0.4950 +9453 9853 0.5760 +9453 10229 0.4960 +9453 10449 0.5300 +9453 10654 0.7770 +9453 10682 0.4560 +9453 11315 0.4460 +9453 22937 0.4050 +9453 23590 0.9610 +9453 23623 0.6150 +9453 27235 0.7300 +9453 29914 0.6760 +9453 50814 0.6460 +9453 51179 0.4680 +9453 51478 0.5330 +9453 51725 0.6120 +9453 51805 0.5000 +9453 54363 0.4770 +9453 54884 0.4390 +9453 57017 0.4260 +9453 57107 0.9500 +9453 64963 0.4880 +9453 79086 0.4570 +9453 79947 0.9670 +9453 80347 0.5640 +9453 84274 0.5660 +9453 84795 0.4130 +9453 91543 0.9520 +9453 91734 0.9860 +9453 116150 0.9520 +9453 133957 0.4380 +9453 137682 0.5650 +9453 150275 0.4250 +9453 153396 0.4120 +9453 286319 0.5430 +9453 340390 0.5610 +9453 390916 0.4110 +9453 729920 0.4680 +9453 100529261 0.4940 +9454 9455 0.9900 +9454 9456 0.9930 +9454 9572 0.4060 +9454 10006 0.5360 +9454 10152 0.4830 +9454 10207 0.4420 +9454 10687 0.4470 +9454 10787 0.4390 +9454 11007 0.4560 +9454 11232 0.4810 +9454 22829 0.6080 +9454 22839 0.6190 +9454 22871 0.6430 +9454 22941 0.7990 +9454 23022 0.4250 +9454 23092 0.6110 +9454 23154 0.6050 +9454 23558 0.4750 +9454 26999 0.4410 +9454 30850 0.4890 +9454 50944 0.9660 +9454 51225 0.6200 +9454 51806 0.5350 +9454 54413 0.6500 +9454 55081 0.5500 +9454 57502 0.6190 +9454 57555 0.6970 +9454 58512 0.7200 +9454 84107 0.5230 +9454 84253 0.4810 +9454 84665 0.6100 +9454 85358 0.8840 +9454 85397 0.4780 +9454 91860 0.5270 +9454 92737 0.5840 +9454 120892 0.4010 +9454 150356 0.4230 +9454 163688 0.5270 +9454 285527 0.6810 +9454 339745 0.4780 +9454 402665 0.4020 +9455 9456 0.9910 +9455 10193 0.7150 +9455 10207 0.4070 +9455 10399 0.4670 +9455 22829 0.6070 +9455 22839 0.6030 +9455 22871 0.6180 +9455 22941 0.7820 +9455 23022 0.6280 +9455 27159 0.4680 +9455 50944 0.9270 +9455 51806 0.5120 +9455 54413 0.6410 +9455 55081 0.6990 +9455 57502 0.5960 +9455 57554 0.5180 +9455 57555 0.6470 +9455 58512 0.6660 +9455 64398 0.4330 +9455 79848 0.4420 +9455 84665 0.6100 +9455 85358 0.7580 +9455 91860 0.5070 +9455 120892 0.4140 +9455 163688 0.5070 +9455 339745 0.6420 +9456 9463 0.5810 +9456 9567 0.4050 +9456 10243 0.7330 +9456 10369 0.4460 +9456 10399 0.4100 +9456 10458 0.4770 +9456 10628 0.4190 +9456 10769 0.5040 +9456 22829 0.6490 +9456 22839 0.6990 +9456 22871 0.7260 +9456 22941 0.9370 +9456 22999 0.4320 +9456 23025 0.4790 +9456 23154 0.4890 +9456 23237 0.6290 +9456 26052 0.8080 +9456 29904 0.4850 +9456 50944 0.9840 +9456 51806 0.6240 +9456 54413 0.7210 +9456 55166 0.6190 +9456 57030 0.8000 +9456 57084 0.5130 +9456 57502 0.6900 +9456 57555 0.6990 +9456 57731 0.4440 +9456 58512 0.8160 +9456 79098 0.8290 +9456 84525 0.4140 +9456 84665 0.4750 +9456 84687 0.4080 +9456 84876 0.5230 +9456 85358 0.9570 +9456 85461 0.6330 +9456 91860 0.6180 +9456 116986 0.4410 +9456 140679 0.4800 +9456 146713 0.4170 +9456 160622 0.4040 +9456 163688 0.6180 +9456 266743 0.5440 +9456 285527 0.6280 +9456 286205 0.4050 +9457 10126 0.7760 +9457 24142 0.4680 +9457 55195 0.4810 +9457 55663 0.4280 +9457 57576 0.7040 +9457 79005 0.4630 +9457 79785 0.5130 +9457 79830 0.4200 +9457 79959 0.4200 +9457 154214 0.6100 +9457 220082 0.4150 +9457 375686 0.4470 +9459 9493 0.4490 +9459 9639 0.4270 +9459 9647 0.5720 +9459 9815 0.9980 +9459 9943 0.4080 +9459 10298 0.9640 +9459 10672 0.4520 +9459 10681 0.5200 +9459 11141 0.4360 +9459 22800 0.9160 +9459 22808 0.9080 +9459 22843 0.5610 +9459 22866 0.5980 +9459 22941 0.5260 +9459 23219 0.6150 +9459 23365 0.9260 +9459 23380 0.4940 +9459 23513 0.7670 +9459 28964 0.9990 +9459 29780 0.9990 +9459 29901 0.4570 +9459 30851 0.4330 +9459 51517 0.6690 +9459 51764 0.4990 +9459 54331 0.5170 +9459 55742 0.6820 +9459 55843 0.5660 +9459 55970 0.5250 +9459 56924 0.9350 +9459 57144 0.9340 +9459 57381 0.4690 +9459 58480 0.6710 +9459 59345 0.5200 +9459 64083 0.8090 +9459 64098 0.7930 +9459 80728 0.4680 +9459 83550 0.4710 +9459 94235 0.4990 +9459 116985 0.4470 +9459 128272 0.4170 +9459 139818 0.4360 +9459 259266 0.4110 +9459 445328 0.4330 +9462 10156 0.5880 +9462 22800 0.7160 +9462 22808 0.7360 +9462 22821 0.6920 +9462 23017 0.4230 +9462 26499 0.4470 +9462 27289 0.6180 +9462 56899 0.6260 +9462 64926 0.4770 +9462 79047 0.4470 +9462 85437 0.4430 +9462 89866 0.5140 +9462 92140 0.4020 +9462 132789 0.4500 +9462 153090 0.8290 +9462 161742 0.5130 +9462 200734 0.4950 +9462 257194 0.4170 +9462 399473 0.4560 +9463 9855 0.4220 +9463 10369 0.6770 +9463 10399 0.5350 +9463 10585 0.4670 +9463 10769 0.4960 +9463 11055 0.5390 +9463 11346 0.4710 +9463 22829 0.6260 +9463 22871 0.6520 +9463 22986 0.8130 +9463 23162 0.6710 +9463 23413 0.6290 +9463 23426 0.9860 +9463 26278 0.5180 +9463 27065 0.4960 +9463 27161 0.5160 +9463 27236 0.6060 +9463 27289 0.4100 +9463 29109 0.4150 +9463 29801 0.4520 +9463 29997 0.4300 +9463 50848 0.4340 +9463 51052 0.5580 +9463 51542 0.4790 +9463 51806 0.6160 +9463 54413 0.6250 +9463 54800 0.5090 +9463 54840 0.4450 +9463 55909 0.4790 +9463 55914 0.4720 +9463 56850 0.4250 +9463 57120 0.8970 +9463 57446 0.4200 +9463 57502 0.6160 +9463 57555 0.6500 +9463 57704 0.4510 +9463 63826 0.9180 +9463 64130 0.6280 +9463 64645 0.4110 +9463 80852 0.9460 +9463 81558 0.4240 +9463 81833 0.5770 +9463 83893 0.7410 +9463 84619 0.4270 +9463 84660 0.4690 +9463 84708 0.6050 +9463 84866 0.4230 +9463 85358 0.8020 +9463 90249 0.5280 +9463 91860 0.6130 +9463 127002 0.4630 +9463 130026 0.8010 +9463 132204 0.4010 +9463 160622 0.5420 +9463 163688 0.6120 +9463 170302 0.6110 +9463 195827 0.5590 +9463 222255 0.4310 +9463 222484 0.4060 +9463 254263 0.4030 +9463 283417 0.7620 +9463 347730 0.4070 +9463 729993 0.4010 +9464 9496 0.4760 +9464 9759 0.5690 +9464 10021 0.4060 +9464 10265 0.7300 +9464 10529 0.7970 +9464 10631 0.5490 +9464 10763 0.4760 +9464 23414 0.6790 +9464 23462 0.5960 +9464 23493 0.4920 +9464 27022 0.4530 +9464 27302 0.4160 +9464 50805 0.7710 +9464 55897 0.7010 +9464 56033 0.5690 +9464 57057 0.8760 +9464 58498 0.6920 +9464 60529 0.4870 +9464 64321 0.4180 +9464 64327 0.6100 +9464 79192 0.7010 +9464 93649 0.8460 +9464 114815 0.4160 +9464 116039 0.5650 +9464 140628 0.6310 +9464 150572 0.7900 +9464 159296 0.4290 +9464 161882 0.4740 +9465 9472 0.8090 +9465 9495 0.8490 +9465 9590 0.6090 +9465 10142 0.7380 +9465 10270 0.5920 +9465 10411 0.4190 +9465 10465 0.4290 +9465 10473 0.4170 +9465 10542 0.4220 +9465 11069 0.5890 +9465 11157 0.6270 +9465 11214 0.6990 +9465 11215 0.6350 +9465 11216 0.6390 +9465 11222 0.7580 +9465 22881 0.4010 +9465 23336 0.4220 +9465 23521 0.4630 +9465 23658 0.6890 +9465 25804 0.4320 +9465 26589 0.7580 +9465 27115 0.4090 +9465 28956 0.4780 +9465 28998 0.7690 +9465 51121 0.4510 +9465 51690 0.4330 +9465 53340 0.8170 +9465 54059 0.8320 +9465 56257 0.4100 +9465 57129 0.7580 +9465 63875 0.7580 +9465 65003 0.7580 +9465 79590 0.7580 +9465 79856 0.4230 +9465 80221 0.7580 +9465 83853 0.4870 +9465 84281 0.5740 +9465 84545 0.7580 +9465 126393 0.4680 +9465 201626 0.5590 +9465 219927 0.7580 +9465 389541 0.4950 +9465 445815 0.6190 +9465 100130890 0.6430 +9465 100131187 0.6430 +9466 10068 0.4590 +9466 10148 0.9900 +9466 11009 0.7230 +9466 23177 0.4640 +9466 29851 0.4590 +9466 29949 0.6730 +9466 30009 0.7990 +9466 50604 0.6540 +9466 50615 0.4490 +9466 50616 0.7690 +9466 50943 0.5160 +9466 51561 0.7970 +9466 53342 0.9130 +9466 56832 0.6500 +9466 58985 0.4700 +9466 59067 0.6980 +9466 85480 0.6970 +9466 149233 0.7860 +9466 246778 0.9990 +9466 282616 0.6870 +9466 282617 0.6660 +9466 282618 0.6860 +9466 338376 0.6580 +9467 10146 0.8850 +9467 10383 0.4020 +9467 23677 0.4720 +9467 25998 0.4190 +9467 27185 0.5790 +9467 55811 0.4280 +9467 60684 0.4440 +9467 64397 0.4160 +9467 80351 0.4660 +9467 81847 0.5410 +9467 131965 0.5430 +9468 10389 0.4420 +9468 10390 0.9840 +9468 10400 0.6790 +9468 10994 0.5900 +9468 23597 0.4890 +9468 23761 0.4110 +9468 26061 0.5900 +9468 51132 0.4020 +9468 51477 0.4890 +9468 54457 0.4870 +9468 55224 0.6080 +9468 55500 0.5130 +9468 56157 0.4340 +9468 56159 0.4110 +9468 56261 0.4710 +9468 56994 0.9860 +9468 79135 0.4600 +9468 79888 0.4690 +9468 80311 0.4830 +9468 84647 0.4010 +9468 85465 0.7270 +9468 154807 0.6390 +9468 162466 0.9120 +9468 255758 0.5740 +9468 286151 0.4040 +9468 375307 0.5070 +9468 402117 0.4970 +9469 9653 0.5900 +9469 9917 0.4720 +9469 10675 0.4790 +9469 11081 0.6910 +9469 11285 0.5200 +9469 22856 0.6350 +9469 26035 0.4310 +9469 26229 0.5530 +9469 27233 0.7620 +9469 27284 0.7480 +9469 29940 0.5050 +9469 50515 0.7390 +9469 51363 0.7320 +9469 54480 0.5080 +9469 55454 0.6090 +9469 55501 0.7440 +9469 55790 0.6080 +9469 56548 0.9280 +9469 63827 0.5820 +9469 64131 0.5520 +9469 64132 0.5040 +9469 79586 0.6140 +9469 83539 0.4540 +9469 92126 0.5510 +9469 113189 0.6720 +9469 123803 0.5900 +9469 126792 0.4300 +9469 166012 0.7370 +9469 283953 0.5070 +9469 442038 0.7500 +9470 9636 0.5700 +9470 9669 0.7330 +9470 9898 0.4700 +9470 10209 0.5460 +9470 10289 0.4310 +9470 10399 0.4100 +9470 10480 0.4520 +9470 22916 0.9410 +9470 23019 0.5520 +9470 23191 0.9050 +9470 23367 0.4530 +9470 23534 0.4200 +9470 25820 0.9230 +9470 25983 0.6040 +9470 26057 0.4310 +9470 26058 0.9990 +9470 26065 0.5200 +9470 26986 0.4340 +9470 26999 0.9040 +9470 27161 0.9110 +9470 27335 0.5250 +9470 29115 0.5170 +9470 51010 0.4720 +9470 51191 0.4990 +9470 55421 0.9120 +9470 55968 0.7690 +9470 56478 0.9350 +9470 56915 0.4750 +9470 64599 0.9970 +9470 80222 0.4750 +9470 83640 0.9060 +9470 84955 0.6240 +9470 90850 0.9260 +9470 91544 0.4830 +9470 115752 0.7140 +9470 123283 0.6010 +9470 149986 0.4900 +9470 200765 0.4520 +9470 253314 0.9140 +9470 317649 0.8540 +9470 353267 0.5400 +9470 392517 0.5590 +9472 9495 0.8010 +9472 9590 0.5820 +9472 9853 0.6300 +9472 10142 0.7530 +9472 10270 0.5370 +9472 10345 0.5060 +9472 10411 0.9670 +9472 11069 0.6870 +9472 11214 0.6920 +9472 11215 0.4660 +9472 11216 0.5790 +9472 23336 0.4600 +9472 23345 0.6830 +9472 23637 0.4630 +9472 23683 0.4250 +9472 23704 0.4720 +9472 25865 0.4230 +9472 26960 0.4140 +9472 27185 0.4170 +9472 51806 0.4800 +9472 54715 0.5120 +9472 54808 0.4050 +9472 57578 0.4470 +9472 64067 0.5860 +9472 64708 0.4030 +9472 79759 0.6210 +9472 80852 0.5860 +9472 84162 0.4240 +9472 91860 0.4800 +9472 112399 0.5860 +9472 163688 0.4810 +9472 168975 0.5060 +9472 445815 0.4690 +9473 9595 0.4360 +9473 10288 0.4040 +9473 10312 0.4480 +9473 10875 0.4600 +9473 11252 0.4020 +9473 27293 0.4150 +9473 54210 0.4950 +9473 54440 0.5390 +9473 55113 0.4370 +9473 64092 0.4370 +9473 64762 0.4640 +9473 79930 0.4050 +9473 80301 0.5160 +9473 84333 0.4110 +9473 114836 0.4170 +9473 116071 0.4140 +9473 117289 0.4650 +9473 118788 0.5040 +9473 126364 0.4390 +9473 150946 0.4740 +9473 317649 0.6390 +9473 100505993 0.4470 +9474 9531 0.4070 +9474 9572 0.4810 +9474 9636 0.5840 +9474 9706 0.9660 +9474 9711 0.5870 +9474 9776 0.9450 +9474 9804 0.6010 +9474 9817 0.6210 +9474 9821 0.9700 +9474 9842 0.6400 +9474 9868 0.5660 +9474 9895 0.5510 +9474 9927 0.8860 +9474 10013 0.7220 +9474 10018 0.4730 +9474 10059 0.5530 +9474 10105 0.4320 +9474 10133 0.7980 +9474 10190 0.4090 +9474 10241 0.7770 +9474 10392 0.6040 +9474 10399 0.6080 +9474 10533 0.9990 +9474 10645 0.4260 +9474 10848 0.4020 +9474 10871 0.6930 +9474 10891 0.5200 +9474 11035 0.6390 +9474 11152 0.7790 +9474 11331 0.5200 +9474 11337 0.9940 +9474 11345 0.9990 +9474 22863 0.9600 +9474 22878 0.4130 +9474 22926 0.6530 +9474 23001 0.9920 +9474 23118 0.4420 +9474 23130 0.7130 +9474 23192 0.9150 +9474 23254 0.4750 +9474 23405 0.4850 +9474 23410 0.4980 +9474 23411 0.9930 +9474 23586 0.9990 +9474 23604 0.6050 +9474 23710 0.9990 +9474 25851 0.9990 +9474 25978 0.4190 +9474 25989 0.8130 +9474 26003 0.4180 +9474 26031 0.4320 +9474 26100 0.9970 +9474 29110 0.6170 +9474 29887 0.4830 +9474 29982 0.5080 +9474 30816 0.5050 +9474 30835 0.4030 +9474 30849 0.9440 +9474 51001 0.5070 +9474 51024 0.5840 +9474 51100 0.6730 +9474 51284 0.7740 +9474 51311 0.5060 +9474 51441 0.5200 +9474 51548 0.4040 +9474 51806 0.4030 +9474 53349 0.7970 +9474 53917 0.4770 +9474 54205 0.8200 +9474 54463 0.4430 +9474 55014 0.9200 +9474 55054 0.9990 +9474 55062 0.9060 +9474 55102 0.7760 +9474 55201 0.8860 +9474 55332 0.5810 +9474 55486 0.5020 +9474 55626 0.7700 +9474 55669 0.8040 +9474 55737 0.4370 +9474 56269 0.4350 +9474 56270 0.5940 +9474 57506 0.9990 +9474 57521 0.6680 +9474 57705 0.4260 +9474 57724 0.8000 +9474 60412 0.5810 +9474 60592 0.4560 +9474 60673 0.9320 +9474 64127 0.9670 +9474 64135 0.9850 +9474 64223 0.4540 +9474 64419 0.4770 +9474 64422 0.9990 +9474 65018 0.7760 +9474 79065 0.7940 +9474 79132 0.5870 +9474 79594 0.4140 +9474 79671 0.9050 +9474 81631 0.9870 +9474 81671 0.6780 +9474 83452 0.9490 +9474 83734 0.9980 +9474 84141 0.5330 +9474 84260 0.5990 +9474 84282 0.5560 +9474 84557 0.9770 +9474 84938 0.8820 +9474 84971 0.8980 +9474 85363 0.7160 +9474 89122 0.5180 +9474 89849 0.9990 +9474 92737 0.4090 +9474 114548 0.6830 +9474 115201 0.8710 +9474 137902 0.6240 +9474 139341 0.7770 +9474 140901 0.7040 +9474 149420 0.7210 +9474 192111 0.4240 +9474 197259 0.4300 +9474 200576 0.4420 +9474 253260 0.4600 +9474 285973 0.7340 +9474 326624 0.5950 +9474 345611 0.9910 +9474 405754 0.4950 +9474 440275 0.4820 +9474 440738 0.8990 +9474 441925 0.7690 +9474 643246 0.6990 +9474 728378 0.4740 +9475 9493 0.4420 +9475 9497 0.4190 +9475 9528 0.4390 +9475 9585 0.4460 +9475 9748 0.5140 +9475 9826 0.6900 +9475 9886 0.7320 +9475 10211 0.6170 +9475 10244 0.4100 +9475 10298 0.5000 +9475 10371 0.4210 +9475 10376 0.5740 +9475 10398 0.9510 +9475 10451 0.5610 +9475 10507 0.6330 +9475 10627 0.9300 +9475 10672 0.6650 +9475 10788 0.4580 +9475 11113 0.5420 +9475 11235 0.7090 +9475 23002 0.5740 +9475 23365 0.6670 +9475 23370 0.8700 +9475 23396 0.9020 +9475 23476 0.4620 +9475 26499 0.4420 +9475 27289 0.7350 +9475 29109 0.9190 +9475 29127 0.5530 +9475 29895 0.9190 +9475 29924 0.4020 +9475 29941 0.4900 +9475 51466 0.4300 +9475 51726 0.4850 +9475 54443 0.5480 +9475 54509 0.5460 +9475 54776 0.9210 +9475 55004 0.4210 +9475 55075 0.4490 +9475 55717 0.4110 +9475 55789 0.4740 +9475 55914 0.5790 +9475 55968 0.4190 +9475 56924 0.4810 +9475 57144 0.4620 +9475 57154 0.5020 +9475 57530 0.6840 +9475 58498 0.9130 +9475 64283 0.6300 +9475 64398 0.4420 +9475 65124 0.4420 +9475 79784 0.5400 +9475 79837 0.9030 +9475 81624 0.5870 +9475 81839 0.4400 +9475 83605 0.6640 +9475 90627 0.4540 +9475 91010 0.5440 +9475 93408 0.9130 +9475 94274 0.4640 +9475 103910 0.9540 +9475 114885 0.4140 +9475 128239 0.5270 +9475 157769 0.4320 +9475 197335 0.4510 +9475 200576 0.9140 +9475 253959 0.4560 +9475 284119 0.4490 +9475 345456 0.5280 +9475 375189 0.5240 +9476 10568 0.4710 +9476 23600 0.5430 +9476 27436 0.5250 +9476 29126 0.4600 +9476 54474 0.8210 +9476 54587 0.5460 +9476 389376 0.4020 +9476 400566 0.8140 +9476 643834 0.4360 +9476 643847 0.4360 +9476 653509 0.5540 +9476 729238 0.4110 +9477 9611 0.5070 +9477 9612 0.5000 +9477 9623 0.6250 +9477 9774 0.5490 +9477 9862 0.9960 +9477 9967 0.5470 +9477 9968 0.9990 +9477 9969 0.9810 +9477 10001 0.9990 +9477 10025 0.9970 +9477 10499 0.5070 +9477 10575 0.5100 +9477 10891 0.6470 +9477 23091 0.9940 +9477 23097 0.9760 +9477 23389 0.9450 +9477 23476 0.5210 +9477 25778 0.4120 +9477 25862 0.6360 +9477 29079 0.9980 +9477 51003 0.9970 +9477 51129 0.5070 +9477 51586 0.9980 +9477 54797 0.9990 +9477 55090 0.9980 +9477 55588 0.9990 +9477 57466 0.4030 +9477 80153 0.4260 +9477 80306 0.9990 +9477 81857 0.9890 +9477 83860 0.8000 +9477 84246 0.9990 +9477 84498 0.5200 +9477 84955 0.6400 +9477 85441 0.6640 +9477 90390 0.9990 +9477 112950 0.9990 +9477 116931 0.8890 +9477 121504 0.8000 +9477 126961 0.8000 +9477 129685 0.8420 +9477 133522 0.5470 +9477 256643 0.5400 +9477 333932 0.8000 +9477 400569 0.9990 +9477 404672 0.8260 +9477 554313 0.8000 +9477 653604 0.8160 +9478 9495 0.5920 +9478 9601 0.5280 +9478 23413 0.5640 +9478 51806 0.4710 +9478 56521 0.4130 +9478 57679 0.4440 +9478 60558 0.5150 +9478 64093 0.4010 +9478 83988 0.4280 +9478 91860 0.5420 +9478 122258 0.4120 +9478 163688 0.5130 +9479 9638 0.4350 +9479 9654 0.5940 +9479 10307 0.5060 +9479 10451 0.4120 +9479 10454 0.4350 +9479 10519 0.4270 +9479 10890 0.6460 +9479 10891 0.4100 +9479 11132 0.4250 +9479 11184 0.9190 +9479 22883 0.5010 +9479 23012 0.4110 +9479 23162 0.9250 +9479 23504 0.4900 +9479 23542 0.9960 +9479 23557 0.6260 +9479 26060 0.4990 +9479 27185 0.4140 +9479 51143 0.4880 +9479 51361 0.4400 +9479 55805 0.4240 +9479 57582 0.4060 +9479 64283 0.5070 +9479 64837 0.9310 +9479 80824 0.7270 +9479 85376 0.4650 +9479 89953 0.9270 +9479 147700 0.8910 +9479 150221 0.4650 +9479 153090 0.4080 +9479 158135 0.4110 +9479 392399 0.4040 +9479 440804 0.4650 +9480 9541 0.4030 +9480 22847 0.4270 +9480 23595 0.5380 +9480 51412 0.5270 +9480 55274 0.5120 +9480 56751 0.4230 +9480 84530 0.5010 +9480 94121 0.9300 +9480 121643 0.4020 +9480 136319 0.4640 +9480 220202 0.4320 +9480 222546 0.4790 +9480 256297 0.4090 +9480 338917 0.4440 +9480 375323 0.4070 +9481 9858 0.4120 +9481 10105 0.5560 +9481 10651 0.4280 +9481 10891 0.4150 +9481 11315 0.6700 +9481 65018 0.4070 +9481 137902 0.4850 +9481 221400 0.4990 +9481 257202 0.5750 +9481 493869 0.5800 +9482 9515 0.6180 +9482 9527 0.8700 +9482 9554 0.9430 +9482 9570 0.8440 +9482 9685 0.6010 +9482 9842 0.4070 +9482 10228 0.9490 +9482 10244 0.4360 +9482 10282 0.8590 +9482 10490 0.9990 +9482 10652 0.9840 +9482 10791 0.7940 +9482 10814 0.5400 +9482 10815 0.5970 +9482 11311 0.7620 +9482 23256 0.6990 +9482 23339 0.6830 +9482 23355 0.5530 +9482 23557 0.6700 +9482 23673 0.9950 +9482 26022 0.5750 +9482 26258 0.5020 +9482 26276 0.8460 +9482 26984 0.6020 +9482 27072 0.5930 +9482 29091 0.6770 +9482 50846 0.4480 +9482 51272 0.6540 +9482 51542 0.4570 +9482 51622 0.4700 +9482 51699 0.4170 +9482 53407 0.9600 +9482 55014 0.8960 +9482 55275 0.4720 +9482 55300 0.4100 +9482 55787 0.7610 +9482 55823 0.7310 +9482 55850 0.8760 +9482 57617 0.7800 +9482 63894 0.7160 +9482 63908 0.7870 +9482 64601 0.7740 +9482 65082 0.9000 +9482 79654 0.4340 +9482 112755 0.7380 +9482 116841 0.8060 +9482 126306 0.5940 +9482 134957 0.8250 +9482 143187 0.9960 +9482 150684 0.4740 +9482 160364 0.6700 +9482 167838 0.7630 +9482 200081 0.6370 +9482 203062 0.7540 +9482 203245 0.4870 +9482 221960 0.4760 +9482 222484 0.4290 +9482 283578 0.4910 +9482 339302 0.5760 +9482 415117 0.7940 +9482 594855 0.5400 +9486 10329 0.4430 +9486 10461 0.5590 +9486 11041 0.4630 +9486 11182 0.4270 +9486 26056 0.4230 +9486 27087 0.9790 +9486 27233 0.5980 +9486 27284 0.5580 +9486 54910 0.7920 +9486 55251 0.4980 +9486 59336 0.4340 +9486 84524 0.4480 +9486 124454 0.4090 +9486 125704 0.4720 +9486 126204 0.4560 +9486 135152 0.9500 +9486 146223 0.4320 +9486 147991 0.5120 +9486 153642 0.4670 +9486 164832 0.6120 +9486 402381 0.4080 +9486 440138 0.4900 +9486 442038 0.6090 +9486 648791 0.4610 +9487 9488 0.8220 +9487 9526 0.4740 +9487 9563 0.4380 +9487 10026 0.8110 +9487 23556 0.7720 +9487 27315 0.8430 +9487 29880 0.4010 +9487 51005 0.8580 +9487 51095 0.5730 +9487 51227 0.9800 +9487 51604 0.8130 +9487 54187 0.4150 +9487 54344 0.6010 +9487 54872 0.8160 +9487 55650 0.8760 +9487 56052 0.5960 +9487 65258 0.4990 +9487 79587 0.8780 +9487 80055 0.6420 +9487 80235 0.6640 +9487 84720 0.8760 +9487 84902 0.6100 +9487 84992 0.9770 +9487 85365 0.5810 +9487 93183 0.8960 +9487 93210 0.7000 +9487 94005 0.4760 +9487 123228 0.8820 +9487 123263 0.4090 +9487 128869 0.4190 +9487 220002 0.4080 +9487 284098 0.9910 +9487 353299 0.4310 +9487 440138 0.6390 +9487 644974 0.5580 +9488 9526 0.5160 +9488 10026 0.8100 +9488 10195 0.8880 +9488 10972 0.5160 +9488 23556 0.9740 +9488 23592 0.4470 +9488 27315 0.6050 +9488 29929 0.6340 +9488 50515 0.4120 +9488 51227 0.7850 +9488 51604 0.7740 +9488 54344 0.8840 +9488 54872 0.8250 +9488 55650 0.9860 +9488 58986 0.4150 +9488 64326 0.4250 +9488 65258 0.6240 +9488 79053 0.4780 +9488 79087 0.4910 +9488 80055 0.6570 +9488 80235 0.5840 +9488 84302 0.4460 +9488 84720 0.9790 +9488 84899 0.4680 +9488 84992 0.7130 +9488 93183 0.9850 +9488 93210 0.4720 +9488 94005 0.5840 +9488 128869 0.6730 +9488 160418 0.4680 +9488 284098 0.8090 +9488 440138 0.4560 +9488 101928527 0.5030 +9489 10390 0.4970 +9489 10400 0.5550 +9489 10423 0.9730 +9489 23265 0.4120 +9489 23479 0.5420 +9489 23761 0.8530 +9489 25979 0.4010 +9489 27166 0.4490 +9489 51070 0.5330 +9489 54675 0.9760 +9489 56994 0.6420 +9489 79621 0.6870 +9489 85465 0.5820 +9489 112770 0.4040 +9489 114971 0.6570 +9489 132001 0.7360 +9489 253558 0.4660 +9491 9817 0.5090 +9491 9861 0.6720 +9491 9978 0.5300 +9491 10197 0.8070 +9491 10213 0.4280 +9491 10393 0.4080 +9491 10421 0.4210 +9491 10537 0.5610 +9491 10656 0.4520 +9491 11047 0.6980 +9491 11059 0.4050 +9491 11065 0.4130 +9491 22818 0.5070 +9491 23194 0.4200 +9491 23198 0.8260 +9491 23392 0.5090 +9491 23543 0.4230 +9491 25793 0.9760 +9491 25906 0.6020 +9491 26043 0.5050 +9491 26271 0.4080 +9491 27338 0.4160 +9491 29882 0.4050 +9491 29945 0.4340 +9491 51343 0.4400 +9491 51371 0.4570 +9491 51377 0.8020 +9491 51433 0.4330 +9491 51434 0.4520 +9491 51529 0.4050 +9491 51667 0.5800 +9491 51752 0.4090 +9491 54583 0.4060 +9491 55294 0.4850 +9491 55666 0.6600 +9491 56984 0.8280 +9491 59349 0.4330 +9491 64326 0.4010 +9491 64682 0.4090 +9491 80351 0.6000 +9491 81847 0.5190 +9491 83737 0.4160 +9491 84262 0.5460 +9491 84528 0.4500 +9491 112399 0.4200 +9491 119504 0.4270 +9491 122706 0.8280 +9491 123228 0.5000 +9491 143471 0.8330 +9491 196394 0.4470 +9491 222389 0.4500 +9491 246184 0.4050 +9491 389362 0.5420 +9493 9585 0.8610 +9493 9631 0.4990 +9493 9666 0.5260 +9493 9700 0.7690 +9493 9727 0.5170 +9493 9735 0.7980 +9493 9768 0.6240 +9493 9787 0.9510 +9493 9793 0.5650 +9493 9824 0.6250 +9493 9833 0.9060 +9493 9837 0.5310 +9493 9918 0.6930 +9493 9928 0.9580 +9493 10024 0.5680 +9493 10036 0.5120 +9493 10051 0.8010 +9493 10112 0.9580 +9493 10121 0.5230 +9493 10128 0.4980 +9493 10146 0.5270 +9493 10190 0.4310 +9493 10193 0.6440 +9493 10285 0.5100 +9493 10371 0.4070 +9493 10391 0.6630 +9493 10403 0.8660 +9493 10460 0.5410 +9493 10483 0.5090 +9493 10535 0.4040 +9493 10540 0.5200 +9493 10592 0.7350 +9493 10615 0.6860 +9493 10635 0.5420 +9493 10642 0.4050 +9493 10643 0.4840 +9493 10671 0.5030 +9493 10682 0.5420 +9493 10721 0.4610 +9493 10733 0.7770 +9493 10749 0.6220 +9493 10769 0.5590 +9493 10772 0.4100 +9493 10921 0.4730 +9493 10971 0.6160 +9493 11004 0.9170 +9493 11064 0.4080 +9493 11065 0.8340 +9493 11091 0.6220 +9493 11113 0.9020 +9493 11127 0.5960 +9493 11130 0.8680 +9493 11169 0.5770 +9493 11235 0.4500 +9493 11258 0.5000 +9493 11339 0.5420 +9493 22801 0.6740 +9493 22920 0.6370 +9493 22974 0.9060 +9493 23046 0.6050 +9493 23095 0.6390 +9493 23139 0.4010 +9493 23303 0.7070 +9493 23310 0.5250 +9493 23397 0.7160 +9493 23594 0.4270 +9493 23603 0.5070 +9493 23607 0.6640 +9493 23647 0.4980 +9493 24137 0.9550 +9493 25983 0.5260 +9493 26153 0.6100 +9493 26271 0.5240 +9493 26286 0.5000 +9493 26524 0.4320 +9493 26586 0.5720 +9493 29028 0.6590 +9493 29089 0.5460 +9493 29127 0.9990 +9493 29128 0.6450 +9493 29899 0.4010 +9493 29922 0.7620 +9493 29980 0.4520 +9493 51053 0.4880 +9493 51164 0.5430 +9493 51203 0.9000 +9493 51512 0.6240 +9493 51514 0.6330 +9493 51594 0.5000 +9493 51659 0.5190 +9493 53407 0.5030 +9493 54069 0.4280 +9493 54443 0.9890 +9493 54478 0.6030 +9493 54820 0.5640 +9493 54821 0.6500 +9493 54852 0.7370 +9493 54892 0.6400 +9493 54962 0.4720 +9493 55010 0.5770 +9493 55055 0.6210 +9493 55063 0.4540 +9493 55083 0.6490 +9493 55143 0.9540 +9493 55165 0.9750 +9493 55215 0.5370 +9493 55247 0.5210 +9493 55255 0.4150 +9493 55299 0.4130 +9493 55320 0.4110 +9493 55355 0.8420 +9493 55388 0.7110 +9493 55582 0.7030 +9493 55605 0.7550 +9493 55614 0.5840 +9493 55632 0.5270 +9493 55635 0.8650 +9493 55723 0.4890 +9493 55732 0.4700 +9493 55738 0.5030 +9493 55771 0.4450 +9493 55789 0.6540 +9493 55839 0.6180 +9493 55850 0.5000 +9493 55860 0.5170 +9493 55957 0.4750 +9493 56992 0.8930 +9493 57082 0.7620 +9493 57405 0.6180 +9493 57448 0.8100 +9493 57553 0.7370 +9493 57576 0.6750 +9493 57650 0.4700 +9493 60482 0.7970 +9493 60561 0.5140 +9493 63967 0.6210 +9493 63971 0.5920 +9493 64105 0.5860 +9493 64151 0.9490 +9493 64324 0.4270 +9493 64837 0.5770 +9493 64946 0.5030 +9493 79019 0.4900 +9493 79075 0.4830 +9493 79682 0.6960 +9493 79733 0.6900 +9493 79801 0.9650 +9493 79866 0.5430 +9493 79935 0.6150 +9493 80119 0.4650 +9493 81565 0.5630 +9493 81610 0.5920 +9493 81611 0.5210 +9493 81620 0.6230 +9493 81624 0.6500 +9493 81930 0.9210 +9493 83461 0.8860 +9493 83540 0.9120 +9493 83879 0.4700 +9493 84057 0.4400 +9493 84364 0.5030 +9493 84515 0.4980 +9493 84516 0.5040 +9493 84529 0.5470 +9493 84643 0.6780 +9493 84722 0.4840 +9493 84823 0.4750 +9493 84930 0.6300 +9493 84936 0.4190 +9493 85417 0.4530 +9493 90102 0.6040 +9493 90381 0.4500 +9493 90417 0.5360 +9493 90627 0.7770 +9493 90990 0.7360 +9493 92421 0.5370 +9493 93661 0.5230 +9493 113130 0.7990 +9493 116369 0.5870 +9493 124602 0.6480 +9493 126520 0.5220 +9493 128239 0.5610 +9493 132001 0.4270 +9493 132660 0.5210 +9493 144455 0.6040 +9493 146059 0.5980 +9493 146909 0.8590 +9493 147700 0.4830 +9493 147841 0.4990 +9493 150468 0.6930 +9493 151246 0.5580 +9493 151648 0.6130 +9493 152098 0.4540 +9493 157313 0.7580 +9493 157570 0.4680 +9493 220134 0.6060 +9493 221150 0.5230 +9493 221458 0.5700 +9493 255626 0.4310 +9493 259266 0.9870 +9493 283431 0.5670 +9493 284403 0.4400 +9493 285643 0.7790 +9493 286826 0.5470 +9493 342184 0.4010 +9493 345930 0.4340 +9493 348654 0.4410 +9493 374654 0.6270 +9493 387103 0.4750 +9493 440093 0.4730 +9495 9590 0.8450 +9495 10142 0.7700 +9495 10270 0.8420 +9495 10368 0.4010 +9495 10369 0.6540 +9495 10411 0.7420 +9495 11069 0.7410 +9495 11214 0.7000 +9495 11215 0.5740 +9495 11216 0.5780 +9495 23523 0.7100 +9495 23557 0.4590 +9495 26251 0.4990 +9495 27092 0.4470 +9495 51201 0.4480 +9495 51806 0.8220 +9495 55273 0.4140 +9495 55573 0.6010 +9495 59283 0.4540 +9495 59341 0.4480 +9495 59350 0.7830 +9495 60626 0.4630 +9495 64221 0.9020 +9495 84876 0.6020 +9495 91860 0.8220 +9495 163688 0.8220 +9495 338567 0.5010 +9495 440686 0.4970 +9495 445815 0.4610 +9496 54828 0.6970 +9496 57167 0.6070 +9496 64321 0.5320 +9496 79572 0.6660 +9496 147381 0.4340 +9496 343637 0.4070 +9496 440275 0.5460 +9496 100288687 0.5270 +9497 9578 0.4040 +9497 9590 0.4090 +9497 9815 0.4080 +9497 10083 0.8500 +9497 10160 0.4170 +9497 10298 0.4220 +9497 10376 0.4010 +9497 10479 0.4040 +9497 10768 0.5020 +9497 10861 0.4070 +9497 11060 0.4030 +9497 22981 0.4970 +9497 23048 0.4050 +9497 23315 0.4540 +9497 23344 0.4050 +9497 23433 0.5560 +9497 23551 0.4410 +9497 23632 0.5210 +9497 25861 0.5060 +9497 26049 0.4780 +9497 26092 0.4150 +9497 27324 0.7750 +9497 28964 0.4110 +9497 29843 0.4050 +9497 29984 0.5430 +9497 51337 0.4030 +9497 53904 0.4170 +9497 54221 0.4900 +9497 54509 0.5580 +9497 54874 0.4290 +9497 55004 0.4200 +9497 55075 0.4090 +9497 55240 0.4980 +9497 55717 0.4050 +9497 55789 0.4500 +9497 55968 0.4420 +9497 55971 0.4060 +9497 56924 0.4210 +9497 57127 0.4180 +9497 57144 0.4210 +9497 57381 0.5440 +9497 64072 0.5450 +9497 65010 0.6380 +9497 65124 0.4070 +9497 65217 0.5130 +9497 79180 0.4200 +9497 80728 0.4060 +9497 80864 0.4290 +9497 81609 0.5450 +9497 81624 0.4090 +9497 84059 0.7910 +9497 91010 0.4050 +9497 114885 0.4110 +9497 115019 0.5170 +9497 121793 0.4200 +9497 124590 0.5330 +9497 124637 0.4190 +9497 125336 0.4290 +9497 128239 0.4100 +9497 143098 0.4280 +9497 144402 0.4360 +9497 152110 0.8030 +9497 157769 0.4110 +9497 161497 0.4020 +9497 167691 0.4300 +9497 200894 0.4150 +9497 252983 0.4400 +9497 253959 0.4550 +9497 285335 0.4040 +9497 389015 0.5250 +9497 654346 0.6200 +9498 9990 0.4720 +9498 10083 0.6850 +9498 10768 0.4710 +9498 11226 0.5220 +9498 23632 0.4690 +9498 26160 0.5610 +9498 55356 0.4180 +9498 57468 0.4580 +9498 65010 0.5530 +9498 84059 0.7410 +9498 115019 0.5530 +9498 115111 0.6140 +9498 122616 0.5940 +9498 124637 0.6070 +9498 284129 0.4070 +9498 389015 0.4390 +9499 9531 0.8980 +9499 10020 0.6680 +9499 10049 0.6930 +9499 10324 0.6970 +9499 10345 0.6420 +9499 10529 0.4920 +9499 10585 0.5070 +9499 10930 0.4770 +9499 11155 0.9650 +9499 22927 0.4190 +9499 22954 0.4790 +9499 23336 0.6390 +9499 23534 0.4460 +9499 23676 0.5860 +9499 26353 0.5720 +9499 26548 0.4340 +9499 27063 0.4040 +9499 27295 0.5970 +9499 29765 0.5360 +9499 29895 0.5770 +9499 29954 0.4750 +9499 50651 0.4040 +9499 51778 0.9270 +9499 55624 0.4310 +9499 55958 0.4210 +9499 56203 0.4350 +9499 56674 0.4170 +9499 57159 0.5110 +9499 57190 0.7880 +9499 58529 0.9870 +9499 79050 0.4080 +9499 79147 0.6060 +9499 79912 0.4920 +9499 79933 0.4010 +9499 80737 0.4060 +9499 81493 0.4800 +9499 83660 0.4420 +9499 84033 0.5010 +9499 84665 0.5740 +9499 84675 0.4530 +9499 84676 0.8080 +9499 89822 0.4080 +9499 91977 0.6580 +9499 92002 0.4090 +9499 129446 0.6570 +9499 131377 0.5100 +9499 140458 0.5070 +9499 165904 0.4880 +9499 171024 0.6810 +9499 200539 0.4290 +9499 202333 0.5650 +9499 203859 0.6200 +9499 219537 0.4150 +9499 256356 0.4010 +9499 286148 0.4360 +9499 342372 0.4220 +9499 347273 0.4910 +9499 390594 0.6370 +9499 442721 0.5840 +9500 9867 0.7750 +9500 9915 0.5840 +9500 10018 0.5090 +9500 10075 0.4910 +9500 10155 0.4700 +9500 10342 0.4770 +9500 10454 0.7800 +9500 10916 0.7710 +9500 23137 0.5850 +9500 23197 0.9940 +9500 23263 0.4850 +9500 25793 0.6430 +9500 25874 0.4550 +9500 26574 0.9380 +9500 27018 0.7130 +9500 51035 0.9940 +9500 51441 0.4740 +9500 51538 0.4340 +9500 54780 0.5650 +9500 64219 0.9970 +9500 79677 0.5370 +9500 84708 0.4040 +9500 84955 0.6220 +9500 90249 0.9690 +9500 139285 0.4780 +9500 197370 0.5530 +9500 203068 0.5540 +9500 266743 0.8230 +9500 286053 0.5210 +9500 389857 0.5160 +9500 493861 0.4760 +9501 9545 0.5510 +9501 10153 0.6550 +9501 10200 0.4260 +9501 10497 0.4880 +9501 10642 0.4690 +9501 22984 0.6040 +9501 27255 0.4210 +9501 50628 0.5180 +9501 51763 0.4250 +9501 54843 0.5450 +9501 55275 0.5140 +9501 57587 0.4370 +9501 79083 0.4480 +9501 84958 0.5490 +9501 84962 0.7370 +9501 85446 0.4120 +9501 115827 0.4700 +9501 126374 0.8370 +9501 127833 0.5140 +9501 134265 0.4580 +9501 148281 0.5940 +9501 163589 0.4110 +9501 220047 0.5100 +9501 254827 0.4180 +9501 341359 0.5440 +9502 10919 0.4070 +9502 30014 0.4060 +9502 58499 0.6100 +9502 64395 0.7190 +9502 64648 0.5700 +9502 64663 0.5720 +9502 147664 0.4480 +9502 541466 0.4020 +9502 653067 0.8860 +9502 653220 0.9230 +9502 728695 0.4550 +9502 728712 0.4470 +9506 30848 0.4230 +9506 56001 0.4260 +9506 63904 0.4070 +9506 80351 0.4790 +9506 158521 0.5020 +9506 204851 0.5770 +9506 645073 0.4470 +9506 653220 0.4800 +9506 728343 0.4120 +9506 729447 0.5070 +9506 100008586 0.4920 +9507 9510 0.4380 +9507 9719 0.5110 +9507 10216 0.4570 +9507 10516 0.7070 +9507 11095 0.4910 +9507 23275 0.4340 +9507 23545 0.6820 +9507 27286 0.7020 +9507 27335 0.4260 +9507 30008 0.7270 +9507 51162 0.4360 +9507 55033 0.4180 +9507 63827 0.9130 +9507 64175 0.5060 +9507 79883 0.4460 +9507 89866 0.4070 +9507 121340 0.4180 +9507 145173 0.4720 +9507 171017 0.4320 +9507 283208 0.5630 +9507 387119 0.4550 +9507 653145 0.4240 +9508 10100 0.4130 +9508 10216 0.4460 +9508 23275 0.4230 +9508 27286 0.5220 +9508 50509 0.5370 +9508 51554 0.4020 +9508 56243 0.4260 +9508 63827 0.6080 +9508 79633 0.4580 +9508 85301 0.5020 +9508 145173 0.4450 +9508 147372 0.8250 +9508 255631 0.4440 +9509 9510 0.5480 +9509 9719 0.6240 +9509 10175 0.5290 +9509 10269 0.4520 +9509 10491 0.5580 +9509 10516 0.7890 +9509 11095 0.5600 +9509 11285 0.5100 +9509 23275 0.4200 +9509 23545 0.7860 +9509 25903 0.4570 +9509 27335 0.5110 +9509 30008 0.8370 +9509 50509 0.6730 +9509 51162 0.4440 +9509 55033 0.5460 +9509 56674 0.4040 +9509 64175 0.5770 +9509 79633 0.4130 +9509 81792 0.4080 +9509 84627 0.5480 +9509 85301 0.5730 +9509 89866 0.4770 +9509 91252 0.4500 +9509 92344 0.4680 +9509 113189 0.4760 +9509 121340 0.4080 +9509 126792 0.4350 +9509 145173 0.5400 +9509 147372 0.8520 +9509 149111 0.5100 +9509 165257 0.4040 +9509 171017 0.5470 +9509 255631 0.5310 +9509 283208 0.5760 +9509 286148 0.4180 +9509 387119 0.4730 +9509 440387 0.4300 +9510 10785 0.4250 +9510 11096 0.5030 +9510 23275 0.4450 +9510 54148 0.4020 +9510 58494 0.5180 +9510 80781 0.6700 +9510 124152 0.4470 +9510 145173 0.5250 +9510 171024 0.4010 +9510 440387 0.4020 +9512 9582 0.5780 +9512 9804 0.4600 +9512 9868 0.4020 +9512 9989 0.4420 +9512 10102 0.4090 +9512 10131 0.4030 +9512 10213 0.4010 +9512 10245 0.6420 +9512 10440 0.7870 +9512 10452 0.6770 +9512 10469 0.6610 +9512 10476 0.7160 +9512 10480 0.4110 +9512 10531 0.5740 +9512 10535 0.4710 +9512 10553 0.5860 +9512 10632 0.4060 +9512 10730 0.6050 +9512 10845 0.5290 +9512 10939 0.7830 +9512 10975 0.9360 +9512 10989 0.5930 +9512 11019 0.4060 +9512 11222 0.4330 +9512 11331 0.7530 +9512 22826 0.4320 +9512 23107 0.4310 +9512 23155 0.4290 +9512 23203 0.9990 +9512 23558 0.7950 +9512 23645 0.6560 +9512 25813 0.5260 +9512 25828 0.4420 +9512 25994 0.5070 +9512 26073 0.4210 +9512 26156 0.5180 +9512 26995 0.4470 +9512 27089 0.9770 +9512 27159 0.4280 +9512 27235 0.4760 +9512 27247 0.4870 +9512 27350 0.5780 +9512 27440 0.4170 +9512 29088 0.5290 +9512 29090 0.6980 +9512 29796 0.9810 +9512 29928 0.5250 +9512 29957 0.4050 +9512 30968 0.4830 +9512 51025 0.6540 +9512 51079 0.7630 +9512 51314 0.4630 +9512 51535 0.7070 +9512 51602 0.4170 +9512 51606 0.4130 +9512 51751 0.4720 +9512 54148 0.4040 +9512 54205 0.6400 +9512 54431 0.5400 +9512 54539 0.5740 +9512 54940 0.4910 +9512 55037 0.5940 +9512 55143 0.6950 +9512 55174 0.4780 +9512 55178 0.4830 +9512 55245 0.4180 +9512 55486 0.4880 +9512 55572 0.4290 +9512 55671 0.4640 +9512 55768 0.4660 +9512 55967 0.7910 +9512 56945 0.6120 +9512 56954 0.5050 +9512 56993 0.4810 +9512 57223 0.6580 +9512 57379 0.5780 +9512 57407 0.5850 +9512 57552 0.4500 +9512 60489 0.5810 +9512 63929 0.7300 +9512 64111 0.5080 +9512 64432 0.4690 +9512 64960 0.4460 +9512 64969 0.5110 +9512 79002 0.7510 +9512 79072 0.4360 +9512 79085 0.4020 +9512 79568 0.5530 +9512 79598 0.4460 +9512 79728 0.7350 +9512 79934 0.4880 +9512 80195 0.5920 +9512 80221 0.4990 +9512 80273 0.6560 +9512 81341 0.8510 +9512 81570 0.4180 +9512 81689 0.4850 +9512 83447 0.4990 +9512 83943 0.5340 +9512 84457 0.4040 +9512 84545 0.4430 +9512 84701 0.8870 +9512 84886 0.9240 +9512 84939 0.6850 +9512 84950 0.4430 +9512 85476 0.5440 +9512 87178 0.8600 +9512 91300 0.6560 +9512 91689 0.4650 +9512 92399 0.4120 +9512 92609 0.7200 +9512 112812 0.4890 +9512 115209 0.4480 +9512 122961 0.4810 +9512 123346 0.4860 +9512 125965 0.7600 +9512 126328 0.4520 +9512 126767 0.4490 +9512 131118 0.7030 +9512 132001 0.4260 +9512 134266 0.5790 +9512 139221 0.6850 +9512 140564 0.5780 +9512 150274 0.6300 +9512 164668 0.5780 +9512 164684 0.7930 +9512 170712 0.5170 +9512 192286 0.5000 +9512 196294 0.5220 +9512 197257 0.4170 +9512 200205 0.4740 +9512 200315 0.5780 +9512 200316 0.5780 +9512 254042 0.5050 +9512 283459 0.8020 +9512 285855 0.4370 +9512 343066 0.4490 +9512 344752 0.4490 +9512 374291 0.8220 +9512 388753 0.7060 +9512 388962 0.4380 +9512 440567 0.8560 +9512 613227 0.5010 +9512 728317 0.6850 +9512 100287932 0.7270 +9512 100532726 0.4860 +9513 9526 0.4060 +9513 9698 0.4240 +9513 9755 0.6810 +9513 9775 0.4050 +9513 9898 0.8030 +9513 9908 0.7320 +9513 9971 0.6830 +9513 9987 0.5920 +9513 10006 0.4240 +9513 10044 0.4620 +9513 10048 0.5270 +9513 10146 0.9060 +9513 10163 0.4540 +9513 10236 0.4330 +9513 10381 0.6620 +9513 10419 0.5040 +9513 10482 0.5280 +9513 10492 0.4110 +9513 10606 0.4080 +9513 10642 0.6860 +9513 10787 0.5470 +9513 11127 0.4490 +9513 11218 0.5810 +9513 22827 0.9590 +9513 22849 0.7800 +9513 22927 0.5020 +9513 23191 0.9990 +9513 23237 0.5050 +9513 23264 0.4100 +9513 23369 0.4800 +9513 23405 0.9310 +9513 23435 0.6010 +9513 23450 0.9250 +9513 23641 0.4240 +9513 26000 0.4780 +9513 26065 0.5600 +9513 26135 0.7840 +9513 26523 0.8080 +9513 26747 0.9370 +9513 26986 0.7190 +9513 26999 0.9990 +9513 27044 0.6890 +9513 27067 0.5920 +9513 27161 0.9490 +9513 27316 0.5070 +9513 27327 0.5850 +9513 29102 0.4910 +9513 29888 0.4020 +9513 51441 0.4550 +9513 51493 0.4770 +9513 51562 0.4200 +9513 51637 0.4160 +9513 54413 0.4300 +9513 54487 0.4180 +9513 54542 0.4610 +9513 54915 0.5050 +9513 55201 0.4020 +9513 55653 0.4720 +9513 55749 0.5510 +9513 55833 0.5540 +9513 56001 0.5360 +9513 56061 0.4480 +9513 56339 0.5720 +9513 56478 0.4080 +9513 56829 0.4910 +9513 57532 0.9040 +9513 57582 0.5950 +9513 58509 0.4690 +9513 58512 0.4050 +9513 64506 0.8870 +9513 64769 0.4200 +9513 64837 0.4350 +9513 79869 0.4680 +9513 80315 0.7860 +9513 80336 0.4260 +9513 83641 0.4470 +9513 85358 0.4150 +9513 90850 0.4170 +9513 132430 0.4030 +9513 132864 0.7180 +9513 134957 0.4260 +9513 140886 0.4310 +9513 149041 0.4730 +9513 149986 0.4130 +9513 167153 0.5150 +9513 192669 0.6150 +9513 192670 0.6070 +9513 253943 0.4320 +9513 340529 0.4020 +9513 440093 0.4970 +9513 440686 0.4970 +9513 653604 0.5010 +9513 728343 0.5350 +9514 10825 0.9000 +9514 26018 0.6410 +9514 64377 0.4960 +9514 113452 0.4120 +9514 121227 0.8150 +9514 129807 0.9160 +9514 138802 0.4460 +9515 9527 0.5400 +9515 9554 0.6300 +9515 9570 0.6400 +9515 9699 0.4400 +9515 10228 0.6480 +9515 10239 0.4740 +9515 10282 0.5450 +9515 10490 0.5870 +9515 10590 0.4870 +9515 10652 0.5770 +9515 10814 0.6270 +9515 10815 0.6140 +9515 23673 0.7000 +9515 51272 0.5400 +9515 53407 0.5450 +9515 55014 0.5680 +9515 55763 0.4210 +9515 55850 0.5400 +9515 60412 0.5270 +9515 63908 0.5980 +9515 112755 0.7670 +9515 116841 0.6720 +9515 134957 0.5590 +9515 143187 0.6590 +9515 171024 0.4100 +9515 203062 0.5680 +9515 339302 0.5400 +9515 415117 0.9270 +9515 594855 0.5720 +9516 9531 0.7010 +9516 9896 0.6460 +9516 9927 0.4520 +9516 9966 0.4670 +9516 10254 0.5830 +9516 23327 0.6530 +9516 26353 0.4280 +9516 26580 0.4320 +9516 29924 0.4560 +9516 29965 0.4740 +9516 51741 0.6980 +9516 54332 0.6290 +9516 57697 0.5320 +9516 57716 0.4120 +9516 79628 0.7090 +9516 81846 0.5710 +9516 83737 0.7480 +9516 90678 0.5380 +9516 116028 0.4690 +9516 117584 0.4040 +9516 121512 0.5330 +9516 130557 0.4270 +9516 169270 0.4090 +9516 283349 0.5210 +9516 388591 0.5710 +9517 10087 0.6710 +9517 10558 0.9990 +9517 10993 0.8470 +9517 23761 0.4330 +9517 27293 0.4190 +9517 29095 0.9460 +9517 29956 0.7630 +9517 51114 0.9080 +9517 51125 0.9000 +9517 51741 0.4220 +9517 53637 0.4270 +9517 54205 0.4110 +9517 55304 0.9420 +9517 55331 0.6380 +9517 55512 0.5740 +9517 55627 0.4800 +9517 56624 0.7200 +9517 56848 0.7730 +9517 57591 0.4350 +9517 57704 0.4910 +9517 63826 0.8330 +9517 64781 0.7920 +9517 64834 0.4030 +9517 65125 0.6090 +9517 79152 0.5150 +9517 79603 0.7540 +9517 80177 0.4290 +9517 81537 0.5910 +9517 83723 0.8720 +9517 84725 0.4480 +9517 91012 0.7420 +9517 94101 0.9530 +9517 94103 0.9990 +9517 113675 0.8390 +9517 117246 0.4680 +9517 123099 0.7410 +9517 124976 0.4370 +9517 125981 0.7230 +9517 130367 0.5220 +9517 142891 0.4830 +9517 165679 0.9980 +9517 166929 0.6050 +9517 171546 0.9990 +9517 204219 0.6770 +9517 253782 0.8040 +9517 259230 0.6410 +9517 339221 0.5420 +9517 340485 0.7000 +9517 388931 0.4830 +9517 401647 0.5840 +9518 10418 0.5110 +9518 10468 0.5090 +9518 11188 0.4220 +9518 23450 0.4180 +9518 23671 0.4260 +9518 23705 0.4400 +9518 26291 0.6810 +9518 27302 0.4750 +9518 50616 0.4510 +9518 51186 0.4560 +9518 51330 0.4910 +9518 54994 0.4200 +9518 55636 0.4840 +9518 55811 0.4300 +9518 57045 0.6570 +9518 57761 0.4750 +9518 57817 0.8770 +9518 64795 0.5090 +9518 79923 0.4180 +9518 84699 0.5430 +9518 84868 0.4510 +9518 148738 0.7050 +9518 151176 0.5450 +9518 164656 0.7220 +9518 389400 0.9990 +9519 9533 0.4530 +9519 9692 0.5330 +9519 10001 0.5360 +9519 10474 0.6250 +9519 10589 0.8050 +9519 10621 0.4840 +9519 10623 0.4300 +9519 10629 0.6250 +9519 10880 0.4530 +9519 11036 0.8460 +9519 11128 0.4400 +9519 11201 0.6580 +9519 11317 0.9040 +9519 22984 0.6670 +9519 26330 0.5570 +9519 27443 0.5680 +9519 51003 0.5400 +9519 51082 0.5710 +9519 51616 0.7080 +9519 54386 0.4780 +9519 54457 0.8730 +9519 55244 0.5270 +9519 55290 0.6960 +9519 55689 0.4190 +9519 55703 0.4600 +9519 55705 0.4370 +9519 55814 0.7310 +9519 55860 0.4210 +9519 56924 0.5140 +9519 56943 0.5030 +9519 57091 0.4020 +9519 57469 0.4810 +9519 64577 0.4450 +9519 80224 0.5980 +9519 83860 0.4050 +9519 84246 0.4900 +9519 129685 0.8180 +9519 137682 0.4850 +9519 138474 0.7690 +9519 146802 0.5270 +9519 149345 0.4290 +9519 158038 0.5980 +9519 286749 0.7540 +9519 340390 0.4850 +9519 387332 0.9380 +9520 9698 0.4750 +9520 9721 0.8290 +9520 9755 0.4380 +9520 9901 0.8110 +9520 10288 0.4260 +9520 10724 0.4140 +9520 10971 0.4660 +9520 23380 0.8340 +9520 23507 0.6050 +9520 23549 0.5630 +9520 23585 0.4970 +9520 29911 0.4800 +9520 29946 0.4540 +9520 51056 0.6210 +9520 54490 0.4910 +9520 54768 0.8290 +9520 54858 0.5180 +9520 55144 0.4400 +9520 55672 0.8300 +9520 57446 0.4140 +9520 63929 0.4540 +9520 64167 0.4420 +9520 79882 0.5880 +9520 124975 0.6890 +9521 9533 0.6530 +9521 10056 0.4740 +9521 10213 0.4190 +9521 10799 0.4140 +9521 11128 0.5240 +9521 23395 0.8440 +9521 23438 0.4190 +9521 25885 0.5530 +9521 25973 0.4370 +9521 26151 0.5900 +9521 28998 0.5030 +9521 29081 0.5110 +9521 51000 0.4110 +9521 51011 0.4130 +9521 51067 0.5130 +9521 51154 0.4340 +9521 51520 0.9970 +9521 54148 0.4010 +9521 55299 0.4790 +9521 55699 0.7720 +9521 55703 0.4610 +9521 57019 0.4960 +9521 57038 0.7490 +9521 57176 0.4770 +9521 63915 0.8440 +9521 65985 0.4110 +9521 79731 0.4340 +9521 80222 0.4260 +9521 81889 0.4250 +9521 84172 0.4960 +9521 92935 0.9680 +9521 123283 0.4340 +9521 124454 0.5010 +9521 151313 0.4070 +9521 283385 0.4560 +9522 9581 0.4370 +9522 9652 0.4240 +9522 10066 0.6460 +9522 10067 0.4940 +9522 10479 0.4610 +9522 10640 0.5980 +9522 11177 0.4300 +9522 11276 0.8290 +9522 23208 0.4070 +9522 23446 0.4330 +9522 23507 0.4330 +9522 23673 0.4040 +9522 50618 0.5530 +9522 51164 0.4100 +9522 51361 0.4200 +9522 57590 0.4400 +9522 64151 0.4130 +9522 64786 0.4470 +9522 84328 0.4030 +9522 84376 0.4450 +9522 84679 0.4360 +9522 85439 0.4450 +9522 114805 0.4050 +9522 201627 0.4580 +9522 222537 0.4060 +9522 284612 0.4100 +9522 100507436 0.4330 +9524 10965 0.9030 +9524 10991 0.4710 +9524 11112 0.4230 +9524 11231 0.4620 +9524 11332 0.9040 +9524 23383 0.4770 +9524 51144 0.9950 +9524 51495 0.9840 +9524 54623 0.5730 +9524 54898 0.9180 +9524 56993 0.5560 +9524 57508 0.4210 +9524 64834 0.6400 +9524 79071 0.9730 +9524 79644 0.8640 +9524 79966 0.9170 +9524 80347 0.6010 +9524 83693 0.6260 +9524 84061 0.5110 +9524 84522 0.5720 +9524 84656 0.4450 +9524 92799 0.5290 +9524 114625 0.9180 +9524 114770 0.4320 +9524 117145 0.9000 +9524 122970 0.9010 +9524 140880 0.5820 +9524 150353 0.8820 +9524 201562 0.9960 +9524 284486 0.9000 +9524 401494 0.9840 +9524 641371 0.9060 +9525 9559 0.4550 +9525 9798 0.9940 +9525 10015 0.9870 +9525 10016 0.8570 +9525 10040 0.4110 +9525 10211 0.5300 +9525 10254 0.5090 +9525 10490 0.4150 +9525 10548 0.6130 +9525 11061 0.5530 +9525 11267 0.4840 +9525 23327 0.5910 +9525 25930 0.6170 +9525 25978 0.9980 +9525 26130 0.4130 +9525 27030 0.6350 +9525 27183 0.9880 +9525 27243 0.9980 +9525 28996 0.4890 +9525 29907 0.4520 +9525 51028 0.6850 +9525 51066 0.5340 +9525 51160 0.8610 +9525 51271 0.6910 +9525 51510 0.9980 +9525 51534 0.9990 +9525 51652 0.9780 +9525 54862 0.7130 +9525 55028 0.5830 +9525 55048 0.7810 +9525 55165 0.6550 +9525 55293 0.5100 +9525 56893 0.5980 +9525 57132 0.9960 +9525 57614 0.4210 +9525 64149 0.8040 +9525 79643 0.9950 +9525 79720 0.7520 +9525 84313 0.8310 +9525 84936 0.8270 +9525 85415 0.4240 +9525 89853 0.6420 +9525 91782 0.7740 +9525 92421 0.9870 +9525 93343 0.6700 +9525 114822 0.4260 +9525 128866 0.9360 +9525 129531 0.6990 +9525 137492 0.6990 +9525 148362 0.5850 +9525 155382 0.6790 +9525 197259 0.9080 +9525 283237 0.5450 +9525 100526737 0.4320 +9525 100526767 0.9560 +9526 9784 0.4540 +9526 10026 0.5290 +9526 10195 0.6420 +9526 10585 0.4130 +9526 22845 0.6210 +9526 27315 0.4780 +9526 29880 0.4140 +9526 29925 0.4590 +9526 29929 0.7410 +9526 29954 0.4190 +9526 51227 0.5700 +9526 51604 0.5090 +9526 54344 0.7620 +9526 54785 0.5200 +9526 54872 0.4650 +9526 55343 0.5090 +9526 55650 0.6340 +9526 56052 0.5340 +9526 57171 0.7040 +9526 79053 0.5950 +9526 79087 0.6520 +9526 79644 0.6610 +9526 79868 0.4960 +9526 79947 0.5780 +9526 84720 0.6220 +9526 84992 0.4170 +9526 85365 0.5210 +9526 93183 0.4750 +9526 93210 0.4250 +9526 116150 0.5950 +9526 128869 0.5300 +9526 199870 0.4460 +9526 284098 0.5060 +9526 440138 0.5780 +9527 9551 0.4310 +9527 9554 0.9980 +9527 9570 0.9990 +9527 9648 0.4530 +9527 9950 0.8270 +9527 10113 0.4140 +9527 10121 0.6040 +9527 10139 0.4090 +9527 10228 0.9770 +9527 10282 0.9990 +9527 10425 0.4530 +9527 10435 0.5280 +9527 10466 0.7600 +9527 10490 0.9660 +9527 10540 0.5060 +9527 10615 0.4940 +9527 10618 0.6090 +9527 10652 0.9990 +9527 10671 0.5600 +9527 10791 0.9320 +9527 10814 0.5630 +9527 10815 0.5570 +9527 10905 0.5270 +9527 10945 0.6000 +9527 10959 0.5740 +9527 10972 0.5940 +9527 11014 0.5880 +9527 11015 0.5590 +9527 11070 0.5910 +9527 11258 0.5110 +9527 11316 0.7100 +9527 11337 0.6500 +9527 11345 0.7740 +9527 22796 0.7680 +9527 22818 0.5510 +9527 22820 0.6230 +9527 23015 0.4940 +9527 23192 0.6260 +9527 23256 0.9990 +9527 23307 0.4350 +9527 23423 0.5350 +9527 23673 0.9740 +9527 23710 0.6330 +9527 25839 0.8390 +9527 25972 0.6870 +9527 26003 0.6250 +9527 26049 0.4160 +9527 26058 0.4460 +9527 26088 0.4140 +9527 26958 0.6170 +9527 26984 0.9330 +9527 27246 0.4220 +9527 27297 0.4460 +9527 27333 0.7780 +9527 51005 0.4520 +9527 51009 0.4110 +9527 51014 0.6580 +9527 51077 0.4360 +9527 51102 0.4330 +9527 51134 0.4280 +9527 51143 0.5260 +9527 51164 0.5880 +9527 51213 0.4340 +9527 51226 0.5200 +9527 51272 0.9990 +9527 51332 0.4990 +9527 51465 0.4030 +9527 51594 0.6310 +9527 53407 0.8970 +9527 53981 0.5320 +9527 54221 0.5900 +9527 54732 0.6010 +9527 54811 0.5340 +9527 55014 0.8720 +9527 55275 0.4400 +9527 55308 0.7640 +9527 55421 0.4460 +9527 55556 0.4250 +9527 55670 0.5300 +9527 55798 0.5330 +9527 55850 0.9290 +9527 55858 0.5860 +9527 55860 0.5370 +9527 55889 0.4590 +9527 56900 0.4010 +9527 57134 0.5170 +9527 57511 0.8380 +9527 57731 0.4990 +9527 63908 0.7200 +9527 64083 0.4500 +9527 64689 0.8240 +9527 79090 0.4010 +9527 80235 0.4220 +9527 81631 0.6000 +9527 81876 0.6050 +9527 83446 0.4450 +9527 83452 0.6500 +9527 83548 0.8210 +9527 83877 0.4100 +9527 84516 0.7080 +9527 84557 0.5400 +9527 84720 0.4200 +9527 84826 0.4150 +9527 84859 0.7780 +9527 84896 0.5530 +9527 87178 0.4780 +9527 91949 0.8720 +9527 93661 0.4990 +9527 94056 0.4570 +9527 112755 0.6690 +9527 114801 0.5350 +9527 116841 0.6760 +9527 123207 0.4510 +9527 129880 0.4320 +9527 134957 0.5400 +9527 140735 0.5140 +9527 143187 0.9300 +9527 144108 0.4370 +9527 153339 0.4070 +9527 160364 0.5930 +9527 163049 0.4480 +9527 201931 0.6660 +9527 203062 0.8220 +9527 203245 0.6150 +9527 283685 0.4450 +9527 283768 0.4590 +9527 339302 0.5400 +9527 342096 0.4590 +9527 374897 0.4930 +9527 375035 0.4270 +9527 375743 0.4030 +9527 415117 0.7250 +9527 440243 0.4450 +9527 440270 0.5040 +9527 440738 0.6050 +9527 594855 0.5400 +9527 643699 0.4590 +9527 643707 0.4340 +9527 653061 0.4590 +9527 653073 0.4590 +9527 653075 0.4590 +9527 653125 0.4590 +9527 653641 0.4590 +9527 653643 0.4590 +9527 653720 0.4590 +9527 727909 0.4590 +9527 728047 0.4590 +9527 728310 0.4450 +9527 728498 0.4590 +9527 101059918 0.4590 +9528 10049 0.4250 +9528 10131 0.5510 +9528 10159 0.4850 +9528 10294 0.5510 +9528 10298 0.4370 +9528 10376 0.5230 +9528 10392 0.5060 +9528 10399 0.4100 +9528 10575 0.4210 +9528 10576 0.4150 +9528 10693 0.4340 +9528 10963 0.6320 +9528 11080 0.5270 +9528 22948 0.4030 +9528 23184 0.4390 +9528 23234 0.4210 +9528 23341 0.4210 +9528 23479 0.5510 +9528 23554 0.4480 +9528 25822 0.5220 +9528 25960 0.5350 +9528 26100 0.5520 +9528 27000 0.6500 +9528 27289 0.5970 +9528 51121 0.4030 +9528 51314 0.4300 +9528 51726 0.4390 +9528 53833 0.5400 +9528 54431 0.5700 +9528 54788 0.4350 +9528 55004 0.4540 +9528 55014 0.4280 +9528 55054 0.8800 +9528 55075 0.4410 +9528 55466 0.5450 +9528 55717 0.4080 +9528 55735 0.4200 +9528 55788 0.4400 +9528 55968 0.4590 +9528 56924 0.4370 +9528 56990 0.4250 +9528 57144 0.4370 +9528 60673 0.4380 +9528 64127 0.4700 +9528 64374 0.5070 +9528 79443 0.4510 +9528 79962 0.4200 +9528 79982 0.4480 +9528 80273 0.5880 +9528 80331 0.4950 +9528 81570 0.6950 +9528 84141 0.4660 +9528 85479 0.4200 +9528 96459 0.5360 +9528 113444 0.4370 +9528 114885 0.4230 +9528 120526 0.4370 +9528 134266 0.6030 +9528 136332 0.4560 +9528 140432 0.4200 +9528 150353 0.4200 +9528 157769 0.4110 +9528 165721 0.4200 +9528 171425 0.4200 +9528 202052 0.4350 +9528 253959 0.4110 +9528 285126 0.4200 +9528 285282 0.4240 +9528 374407 0.5220 +9528 388633 0.4390 +9528 548645 0.4200 +9528 552891 0.4200 +9529 9530 0.6050 +9529 9531 0.7110 +9529 9532 0.9550 +9529 9627 0.5280 +9529 10049 0.6890 +9529 10116 0.4620 +9529 10131 0.4350 +9529 10213 0.4480 +9529 10273 0.9190 +9529 10294 0.6760 +9529 10469 0.4560 +9529 10594 0.4820 +9529 10808 0.7370 +9529 10856 0.5550 +9529 11080 0.6750 +9529 11315 0.6750 +9529 22824 0.5560 +9529 23208 0.4970 +9529 23317 0.5550 +9529 23341 0.4230 +9529 23368 0.5000 +9529 23640 0.6200 +9529 25822 0.4550 +9529 29104 0.4020 +9529 51182 0.5670 +9529 51726 0.5420 +9529 51806 0.4200 +9529 54788 0.6080 +9529 55466 0.5020 +9529 55626 0.5570 +9529 55735 0.4340 +9529 56521 0.4250 +9529 56897 0.4520 +9529 65018 0.8090 +9529 79038 0.5630 +9529 79705 0.7910 +9529 79982 0.5870 +9529 80331 0.4750 +9529 85479 0.4310 +9529 91860 0.4200 +9529 116835 0.5160 +9529 120892 0.8430 +9529 135138 0.4300 +9529 150353 0.4060 +9529 163688 0.4200 +9529 165721 0.4480 +9529 202052 0.4600 +9529 259217 0.5160 +9530 9531 0.6240 +9530 9532 0.9070 +9530 10018 0.4730 +9530 10273 0.8530 +9530 10808 0.5330 +9530 10818 0.5060 +9530 11052 0.4190 +9530 11160 0.6500 +9530 11212 0.5310 +9530 22824 0.5160 +9530 23259 0.6470 +9530 23294 0.4660 +9530 23640 0.4070 +9530 26986 0.4260 +9530 27257 0.8350 +9530 51182 0.5860 +9530 54543 0.5740 +9530 54904 0.5040 +9530 55796 0.4490 +9530 55802 0.8240 +9530 56892 0.8800 +9530 56899 0.4660 +9530 65018 0.4410 +9530 80139 0.4770 +9530 80153 0.6390 +9530 80223 0.4490 +9530 83640 0.4880 +9530 83737 0.5550 +9530 83877 0.4520 +9530 84513 0.5980 +9530 84955 0.6200 +9530 114793 0.6960 +9530 116835 0.5410 +9530 137994 0.4730 +9530 148362 0.4200 +9530 196513 0.7630 +9530 259217 0.5400 +9530 283373 0.4590 +9530 283514 0.6120 +9530 399687 0.4080 +9531 9532 0.9770 +9531 9636 0.4550 +9531 9774 0.4600 +9531 9898 0.4420 +9531 10013 0.7290 +9531 10015 0.5680 +9531 10018 0.4300 +9531 10020 0.5520 +9531 10049 0.9560 +9531 10133 0.5580 +9531 10146 0.4500 +9531 10188 0.4040 +9531 10190 0.4280 +9531 10262 0.4260 +9531 10273 0.9990 +9531 10294 0.5340 +9531 10471 0.5500 +9531 10525 0.4250 +9531 10533 0.5700 +9531 10574 0.8430 +9531 10575 0.7540 +9531 10576 0.7540 +9531 10594 0.4250 +9531 10598 0.4130 +9531 10693 0.7450 +9531 10694 0.7320 +9531 10728 0.7620 +9531 10808 0.7400 +9531 10856 0.7520 +9531 10910 0.4560 +9531 10963 0.8760 +9531 10971 0.4350 +9531 11065 0.4020 +9531 11080 0.6040 +9531 11140 0.8000 +9531 11155 0.8240 +9531 11329 0.5400 +9531 11345 0.5200 +9531 11346 0.4580 +9531 22824 0.6500 +9531 22948 0.7650 +9531 23001 0.4910 +9531 23192 0.4090 +9531 23234 0.7450 +9531 23294 0.5420 +9531 23435 0.4270 +9531 23558 0.5300 +9531 23640 0.5270 +9531 23710 0.5440 +9531 23753 0.7290 +9531 26353 0.9990 +9531 26524 0.6240 +9531 27129 0.7960 +9531 27161 0.4190 +9531 27295 0.5290 +9531 51182 0.6430 +9531 51398 0.5400 +9531 51421 0.5300 +9531 51547 0.4160 +9531 51726 0.7890 +9531 51735 0.5990 +9531 55172 0.5400 +9531 55466 0.4940 +9531 56984 0.7260 +9531 57003 0.5430 +9531 57190 0.7580 +9531 57448 0.4790 +9531 57521 0.5040 +9531 57532 0.4090 +9531 57561 0.4250 +9531 64374 0.4080 +9531 64422 0.6310 +9531 65264 0.4390 +9531 79188 0.4150 +9531 79575 0.4400 +9531 79657 0.6090 +9531 79705 0.4340 +9531 80700 0.4150 +9531 81572 0.5430 +9531 81631 0.6540 +9531 84665 0.5260 +9531 90427 0.5660 +9531 116835 0.5740 +9531 120379 0.5600 +9531 126393 0.9380 +9531 131920 0.4300 +9531 133558 0.4460 +9531 139341 0.5100 +9531 146691 0.4120 +9531 146862 0.5850 +9531 150160 0.5430 +9531 151194 0.6390 +9531 154810 0.5590 +9531 171024 0.8080 +9531 221833 0.4780 +9531 259217 0.5860 +9531 266812 0.4230 +9531 282996 0.6120 +9531 339416 0.4780 +9532 9829 0.6750 +9532 10049 0.7570 +9532 10131 0.5100 +9532 10273 0.9970 +9532 10294 0.6660 +9532 10465 0.7940 +9532 10471 0.6100 +9532 10569 0.6120 +9532 10574 0.6130 +9532 10575 0.5850 +9532 10576 0.5990 +9532 10598 0.4970 +9532 10693 0.5450 +9532 10694 0.5980 +9532 10728 0.6440 +9532 10808 0.9950 +9532 10856 0.5620 +9532 10902 0.4200 +9532 10963 0.7810 +9532 11080 0.7830 +9532 11140 0.7160 +9532 22824 0.9380 +9532 22948 0.5680 +9532 23234 0.6740 +9532 23341 0.4920 +9532 23640 0.9580 +9532 23753 0.5400 +9532 23774 0.4220 +9532 25822 0.5470 +9532 26036 0.4510 +9532 26353 0.6830 +9532 27154 0.4200 +9532 27257 0.4320 +9532 51182 0.5260 +9532 51398 0.5400 +9532 51592 0.4260 +9532 51715 0.4050 +9532 51726 0.7440 +9532 54788 0.7140 +9532 55172 0.5650 +9532 55466 0.5620 +9532 55626 0.5100 +9532 55898 0.4030 +9532 56892 0.4950 +9532 56984 0.5460 +9532 57003 0.5430 +9532 57805 0.7440 +9532 65018 0.6850 +9532 79084 0.5240 +9532 79657 0.6570 +9532 79705 0.4670 +9532 79982 0.4830 +9532 80331 0.4860 +9532 81572 0.5810 +9532 84162 0.4580 +9532 84292 0.4870 +9532 85479 0.4190 +9532 116835 0.5090 +9532 120379 0.6090 +9532 150160 0.5400 +9532 150353 0.5010 +9532 165721 0.5110 +9532 202052 0.5410 +9532 259217 0.4830 +9533 9553 0.9040 +9533 9669 0.6850 +9533 9696 0.4860 +9533 9732 0.4030 +9533 9790 0.4010 +9533 9801 0.9190 +9533 9858 0.8220 +9533 9933 0.6480 +9533 10001 0.8640 +9533 10056 0.5130 +9533 10102 0.7810 +9533 10153 0.4630 +9533 10171 0.7250 +9533 10302 0.6330 +9533 10436 0.7050 +9533 10471 0.4810 +9533 10473 0.7970 +9533 10514 0.6160 +9533 10528 0.7600 +9533 10557 0.5710 +9533 10574 0.5030 +9533 10576 0.4460 +9533 10607 0.5940 +9533 10621 0.9990 +9533 10622 0.9990 +9533 10623 0.9990 +9533 10667 0.5250 +9533 10730 0.4260 +9533 10765 0.4800 +9533 10785 0.4130 +9533 10849 0.9990 +9533 10885 0.7020 +9533 10939 0.4490 +9533 10969 0.7180 +9533 10988 0.6420 +9533 11103 0.7020 +9533 11128 0.9990 +9533 11137 0.5480 +9533 11198 0.8900 +9533 11201 0.7560 +9533 11222 0.8600 +9533 11224 0.9350 +9533 11321 0.8490 +9533 22984 0.9400 +9533 23016 0.4200 +9533 23029 0.4430 +9533 23076 0.6900 +9533 23135 0.6090 +9533 23160 0.5000 +9533 23168 0.5700 +9533 23173 0.6450 +9533 23204 0.7330 +9533 23212 0.8590 +9533 23223 0.6370 +9533 23246 0.6910 +9533 23378 0.4640 +9533 23395 0.4870 +9533 23451 0.5160 +9533 23481 0.5040 +9533 23517 0.4020 +9533 23521 0.8520 +9533 23560 0.6430 +9533 23640 0.7630 +9533 25774 0.6360 +9533 25879 0.6120 +9533 25885 0.9990 +9533 25926 0.4220 +9533 25983 0.4660 +9533 26015 0.5710 +9533 26043 0.4840 +9533 26155 0.8120 +9533 26156 0.5630 +9533 26289 0.5570 +9533 26354 0.7060 +9533 26995 0.5180 +9533 27042 0.4220 +9533 27292 0.6750 +9533 27297 0.9990 +9533 27349 0.5820 +9533 28987 0.6520 +9533 28998 0.8200 +9533 29088 0.5590 +9533 29093 0.8230 +9533 29113 0.7990 +9533 29789 0.4220 +9533 29880 0.8230 +9533 29889 0.4810 +9533 29927 0.7890 +9533 30834 0.9990 +9533 50808 0.5610 +9533 51003 0.8000 +9533 51004 0.4390 +9533 51013 0.4250 +9533 51018 0.4270 +9533 51021 0.9750 +9533 51042 0.4220 +9533 51068 0.5360 +9533 51069 0.8730 +9533 51073 0.8280 +9533 51081 0.8830 +9533 51082 0.9990 +9533 51092 0.4820 +9533 51096 0.5980 +9533 51116 0.8570 +9533 51121 0.8570 +9533 51149 0.8630 +9533 51154 0.9650 +9533 51184 0.9080 +9533 51187 0.5900 +9533 51202 0.6080 +9533 51264 0.9370 +9533 51319 0.4200 +9533 51388 0.8890 +9533 51504 0.5970 +9533 51520 0.4860 +9533 51575 0.4650 +9533 51602 0.7570 +9533 51605 0.5400 +9533 51727 0.5610 +9533 51728 0.9990 +9533 54145 0.5630 +9533 54433 0.6170 +9533 54475 0.6510 +9533 54552 0.6790 +9533 54555 0.4350 +9533 54606 0.7030 +9533 54623 0.6770 +9533 54663 0.4270 +9533 54700 0.9990 +9533 54707 0.4530 +9533 54797 0.5250 +9533 54802 0.4390 +9533 54847 0.4820 +9533 54948 0.7640 +9533 54995 0.4870 +9533 55003 0.5950 +9533 55006 0.5090 +9533 55011 0.4780 +9533 55052 0.9320 +9533 55127 0.5630 +9533 55131 0.4510 +9533 55133 0.6390 +9533 55140 0.4780 +9533 55143 0.4850 +9533 55157 0.4150 +9533 55173 0.9430 +9533 55176 0.7850 +9533 55226 0.7380 +9533 55272 0.9260 +9533 55290 0.8630 +9533 55299 0.8680 +9533 55316 0.8590 +9533 55341 0.4210 +9533 55591 0.6320 +9533 55621 0.4120 +9533 55646 0.6030 +9533 55651 0.8560 +9533 55677 0.8030 +9533 55695 0.4610 +9533 55703 0.9990 +9533 55718 0.9990 +9533 55720 0.8100 +9533 55759 0.6150 +9533 55760 0.4510 +9533 55766 0.5570 +9533 55813 0.4590 +9533 55814 0.9180 +9533 56342 0.4570 +9533 56474 0.4820 +9533 56647 0.6680 +9533 56648 0.4880 +9533 56902 0.4850 +9533 56965 0.4220 +9533 57038 0.4550 +9533 57050 0.5460 +9533 57062 0.4040 +9533 57121 0.4820 +9533 57136 0.7310 +9533 57418 0.4380 +9533 57470 0.5160 +9533 57647 0.5320 +9533 57696 0.4130 +9533 63875 0.9410 +9533 63931 0.8580 +9533 64216 0.5550 +9533 64374 0.7620 +9533 64425 0.9990 +9533 64960 0.8700 +9533 64963 0.8790 +9533 64965 0.9800 +9533 64968 0.9780 +9533 64969 0.9200 +9533 64979 0.9280 +9533 64983 0.9330 +9533 65003 0.8030 +9533 65005 0.9470 +9533 65008 0.7720 +9533 65080 0.4450 +9533 65083 0.4520 +9533 65121 0.5380 +9533 65122 0.5380 +9533 79050 0.6830 +9533 79101 0.6630 +9533 79577 0.6300 +9533 79590 0.8600 +9533 79631 0.7090 +9533 79657 0.8310 +9533 79668 0.4220 +9533 79711 0.4070 +9533 79728 0.4310 +9533 79871 0.6900 +9533 80135 0.6140 +9533 80273 0.7200 +9533 80324 0.7590 +9533 80820 0.5680 +9533 81488 0.4660 +9533 83480 0.7220 +9533 83743 0.7880 +9533 84128 0.6170 +9533 84135 0.4130 +9533 84138 0.6540 +9533 84154 0.8980 +9533 84172 0.9990 +9533 84232 0.8190 +9533 84246 0.7130 +9533 84265 0.9950 +9533 84294 0.4210 +9533 84337 0.7950 +9533 84365 0.8040 +9533 84549 0.4610 +9533 84893 0.4040 +9533 84916 0.7340 +9533 85236 0.5620 +9533 85456 0.6240 +9533 85476 0.7040 +9533 87178 0.7360 +9533 90121 0.4210 +9533 90353 0.4780 +9533 91875 0.4600 +9533 91893 0.5420 +9533 92399 0.7700 +9533 92856 0.6480 +9533 94239 0.5120 +9533 112495 0.5010 +9533 115708 0.4360 +9533 116143 0.4600 +9533 122481 0.5570 +9533 123169 0.5520 +9533 126402 0.8770 +9533 126789 0.7050 +9533 127428 0.5340 +9533 128312 0.5620 +9533 140032 0.4050 +9533 140801 0.7590 +9533 142940 0.5670 +9533 143244 0.4880 +9533 149483 0.4820 +9533 158067 0.5570 +9533 161424 0.4680 +9533 165545 0.4460 +9533 170082 0.5340 +9533 171568 0.9990 +9533 219927 0.9290 +9533 221078 0.6080 +9533 221264 0.5570 +9533 221830 0.9990 +9533 222484 0.6880 +9533 246721 0.6360 +9533 255626 0.5620 +9533 284119 0.5690 +9533 285855 0.7820 +9533 340602 0.4820 +9533 343068 0.5380 +9533 343070 0.5380 +9533 345630 0.6890 +9533 347487 0.8220 +9533 387129 0.7750 +9533 387332 0.5350 +9533 387712 0.6150 +9533 390999 0.5380 +9533 391002 0.5380 +9533 399949 0.4410 +9533 400735 0.5380 +9533 400736 0.5380 +9533 404672 0.5350 +9533 440093 0.4090 +9533 440560 0.5380 +9533 440561 0.5380 +9533 440686 0.4090 +9533 441873 0.5380 +9533 448834 0.4820 +9533 474382 0.5570 +9533 548644 0.6510 +9533 641776 0.7320 +9533 643909 0.7320 +9533 645051 0.4500 +9533 645073 0.4500 +9533 645359 0.5380 +9533 653604 0.6330 +9533 653619 0.5380 +9533 653689 0.6360 +9533 728340 0.4860 +9533 728524 0.7320 +9533 729396 0.4500 +9533 729422 0.4500 +9533 729428 0.4500 +9533 729431 0.4500 +9533 729442 0.4500 +9533 729447 0.4500 +9533 729528 0.5380 +9533 100008586 0.4500 +9533 100132399 0.4500 +9533 100134938 0.6000 +9533 100287482 0.8220 +9533 100505478 0.7750 +9533 100526842 0.8170 +9533 100996746 0.7320 +9533 101929983 0.5380 +9533 102724473 0.4500 +9533 105180390 0.7320 +9533 105180391 0.7320 +9533 107983993 0.6000 +9533 114483834 0.4590 +9533 122455342 0.4820 +9534 10155 0.6000 +9534 10557 0.4320 +9534 56242 0.4320 +9534 79843 0.4200 +9534 90827 0.4740 +9534 171392 0.5210 +9534 645121 0.4060 +9535 9938 0.4370 +9535 9948 0.4460 +9535 10092 0.8630 +9535 10093 0.8190 +9535 10094 0.8310 +9535 10095 0.9270 +9535 10096 0.8840 +9535 10097 0.9750 +9535 10109 0.8780 +9535 10163 0.5020 +9535 10870 0.4290 +9535 11151 0.5390 +9535 11319 0.4550 +9535 11344 0.5920 +9535 28988 0.4500 +9535 55843 0.5630 +9535 374403 0.4220 +9536 9543 0.5130 +9536 10728 0.9960 +9536 22949 0.4330 +9536 27306 0.9580 +9536 80142 0.9880 +9536 84260 0.4050 +9537 27296 0.4910 +9537 51450 0.4410 +9537 55784 0.4300 +9537 56942 0.4170 +9537 63977 0.4230 +9537 90313 0.4020 +9537 285175 0.4230 +9537 375449 0.4170 +9538 9540 0.9270 +9538 25898 0.4260 +9538 57724 0.7320 +9538 64065 0.4490 +9538 64393 0.4190 +9538 64782 0.4480 +9538 81671 0.6660 +9538 84253 0.4430 +9538 84260 0.5420 +9538 84897 0.4080 +9538 90933 0.4290 +9538 138199 0.4040 +9540 23368 0.5640 +9540 26999 0.4260 +9540 27113 0.4890 +9540 27244 0.6430 +9540 50484 0.4940 +9540 51071 0.4940 +9540 51499 0.4790 +9540 51714 0.4160 +9540 55332 0.4710 +9540 55367 0.4620 +9540 64393 0.4480 +9540 80790 0.4340 +9540 83667 0.4120 +9540 84260 0.5620 +9540 84263 0.5680 +9540 143686 0.4980 +9541 9611 0.5310 +9541 9612 0.9360 +9541 9785 0.8440 +9541 10569 0.5470 +9541 10594 0.8060 +9541 11017 0.4670 +9541 11317 0.9370 +9541 22938 0.9540 +9541 23013 0.5600 +9541 23524 0.8030 +9541 25942 0.8250 +9541 25949 0.6260 +9541 29937 0.7800 +9541 51340 0.8130 +9541 51362 0.8240 +9541 51503 0.8610 +9541 51645 0.8070 +9541 54883 0.8710 +9541 55051 0.4860 +9541 55100 0.8400 +9541 55696 0.8570 +9541 55702 0.8090 +9541 55759 0.4360 +9541 57703 0.8430 +9541 79576 0.6530 +9541 79685 0.8270 +9541 84441 0.4090 +9541 222698 0.5290 +9541 100534599 0.8000 +9542 10193 0.5580 +9542 10718 0.9550 +9542 11140 0.5010 +9542 22899 0.4550 +9542 26054 0.4280 +9542 26353 0.4090 +9542 51072 0.5070 +9542 51380 0.4740 +9542 55879 0.4990 +9542 55914 0.5910 +9542 56920 0.4230 +9542 56980 0.4240 +9542 145957 0.9970 +9542 255324 0.6140 +9542 339896 0.4820 +9543 9638 0.5230 +9543 10497 0.5670 +9543 22854 0.4660 +9543 26227 0.4880 +9543 54847 0.6960 +9543 65985 0.4740 +9543 90459 0.4700 +9543 374946 0.5370 +9543 389813 0.4080 +9545 9699 0.6340 +9545 9928 0.4110 +9545 10228 0.4270 +9545 10497 0.4520 +9545 22895 0.6100 +9545 22930 0.4060 +9545 22999 0.4380 +9545 23208 0.4010 +9545 25924 0.4030 +9545 51280 0.4070 +9545 79083 0.4060 +9545 90019 0.4430 +9545 94121 0.5540 +9545 117177 0.6170 +9545 127833 0.5250 +9545 168620 0.4940 +9545 201294 0.4370 +9545 283229 0.4920 +9546 10307 0.4850 +9546 10893 0.4720 +9546 11171 0.4650 +9546 22888 0.5020 +9546 29110 0.4380 +9546 29907 0.4610 +9546 55662 0.8360 +9546 57576 0.4690 +9546 63941 0.7230 +9546 64343 0.5080 +9546 79879 0.4520 +9546 93643 0.4550 +9546 116285 0.6000 +9547 10344 0.9960 +9547 10563 0.6060 +9547 10663 0.7700 +9547 10803 0.7610 +9547 10850 0.5130 +9547 54329 0.8360 +9547 56477 0.9950 +9547 58191 0.5840 +9547 64094 0.4160 +9547 84516 0.4310 +9547 91543 0.4230 +9547 284340 0.9970 +9550 9681 0.4990 +9550 10159 0.9910 +9550 10284 0.5340 +9550 10312 0.9210 +9550 10325 0.5030 +9550 10476 0.4760 +9550 10542 0.7310 +9550 10641 0.4990 +9550 10670 0.5160 +9550 11133 0.4990 +9550 23312 0.6840 +9550 23334 0.4990 +9550 23335 0.7880 +9550 23545 0.9340 +9550 27068 0.7990 +9550 27089 0.4060 +9550 27109 0.4590 +9550 27244 0.5110 +9550 28956 0.7140 +9550 29978 0.4270 +9550 50617 0.9960 +9550 51122 0.4210 +9550 51382 0.9990 +9550 51606 0.9980 +9550 54468 0.5130 +9550 55004 0.6790 +9550 55846 0.4990 +9550 57465 0.4400 +9550 57521 0.5130 +9550 57600 0.4010 +9550 57707 0.9250 +9550 58528 0.5690 +9550 64077 0.6620 +9550 64121 0.5720 +9550 64223 0.4990 +9550 79641 0.5230 +9550 79726 0.5130 +9550 81929 0.5170 +9550 83547 0.5730 +9550 83667 0.5050 +9550 84219 0.4990 +9550 84317 0.9310 +9550 84656 0.4180 +9550 90423 0.9950 +9550 96459 0.4920 +9550 127124 0.5660 +9550 135112 0.6270 +9550 140711 0.6160 +9550 144577 0.4990 +9550 147007 0.9490 +9550 153129 0.5030 +9550 154743 0.4150 +9550 155066 0.9610 +9550 163882 0.7550 +9550 245972 0.9890 +9550 245973 0.9900 +9550 389541 0.6570 +9550 440400 0.9870 +9551 9556 0.9960 +9551 9563 0.4170 +9551 10159 0.5820 +9551 10476 0.9990 +9551 10632 0.9990 +9551 10765 0.4580 +9551 10975 0.9170 +9551 11112 0.4140 +9551 23135 0.5040 +9551 23275 0.4890 +9551 23545 0.4210 +9551 25994 0.4260 +9551 26521 0.5840 +9551 27068 0.7170 +9551 27089 0.8960 +9551 27109 0.8410 +9551 29058 0.4220 +9551 29078 0.4320 +9551 29796 0.9090 +9551 51079 0.8690 +9551 51102 0.6820 +9551 51258 0.5080 +9551 51263 0.4490 +9551 51382 0.5070 +9551 51522 0.4350 +9551 51650 0.4970 +9551 54460 0.7100 +9551 54539 0.6920 +9551 54543 0.4540 +9551 54995 0.5090 +9551 55143 0.7780 +9551 55471 0.4870 +9551 55699 0.4420 +9551 55967 0.8090 +9551 56901 0.4010 +9551 63931 0.4570 +9551 64077 0.7680 +9551 64951 0.4830 +9551 64981 0.4300 +9551 79002 0.4220 +9551 84233 0.5480 +9551 84701 0.4690 +9551 84833 0.9950 +9551 84869 0.4570 +9551 84886 0.4800 +9551 84987 0.5670 +9551 91689 0.5290 +9551 93974 0.7720 +9551 125965 0.6330 +9551 125988 0.4020 +9551 126328 0.8240 +9551 131076 0.4170 +9551 155066 0.6460 +9551 170712 0.6280 +9551 245972 0.4020 +9551 254863 0.6390 +9551 267020 0.9620 +9551 374291 0.6540 +9551 388753 0.4410 +9551 401505 0.5210 +9551 440400 0.5500 +9551 440567 0.6500 +9551 440574 0.7570 +9551 100526740 0.5480 +9552 27252 0.4400 +9552 79086 0.4550 +9552 79657 0.4670 +9552 84792 0.9520 +9552 113419 0.4390 +9553 9617 0.6570 +9553 9669 0.6240 +9553 9801 0.9990 +9553 9858 0.9380 +9553 10061 0.7890 +9553 10063 0.5240 +9553 10102 0.9330 +9553 10135 0.6610 +9553 10240 0.8520 +9553 10455 0.5860 +9553 10473 0.9090 +9553 10573 0.9090 +9553 10730 0.4030 +9553 10884 0.9700 +9553 10964 0.6940 +9553 10988 0.4020 +9553 11128 0.5350 +9553 11182 0.4030 +9553 11222 0.9980 +9553 11224 0.9960 +9553 22921 0.4740 +9553 22984 0.8670 +9553 23107 0.8380 +9553 23193 0.5120 +9553 23204 0.8340 +9553 23252 0.8480 +9553 23405 0.8300 +9553 23423 0.5970 +9553 23521 0.9710 +9553 23640 0.8310 +9553 23732 0.8400 +9553 25771 0.4300 +9553 25885 0.5300 +9553 25973 0.4310 +9553 26164 0.8750 +9553 26227 0.4010 +9553 26271 0.6590 +9553 26275 0.9500 +9553 26519 0.4110 +9553 26521 0.4260 +9553 26589 0.9940 +9553 27089 0.4630 +9553 27430 0.4930 +9553 28957 0.8690 +9553 28973 0.8800 +9553 28977 0.9630 +9553 28998 0.9990 +9553 29074 0.9280 +9553 29088 0.9940 +9553 29093 0.9990 +9553 29102 0.8290 +9553 29922 0.4050 +9553 29927 0.7890 +9553 29960 0.8030 +9553 29988 0.4020 +9553 50814 0.4820 +9553 51014 0.5430 +9553 51021 0.9990 +9553 51023 0.9660 +9553 51069 0.9980 +9553 51073 0.9990 +9553 51081 0.9980 +9553 51116 0.9880 +9553 51121 0.9630 +9553 51149 0.9650 +9553 51154 0.9810 +9553 51241 0.5820 +9553 51250 0.8550 +9553 51253 0.9340 +9553 51258 0.9520 +9553 51263 0.9870 +9553 51264 0.9990 +9553 51318 0.9710 +9553 51373 0.8650 +9553 51642 0.8500 +9553 51649 0.8990 +9553 51650 0.9200 +9553 51734 0.4500 +9553 54148 0.9480 +9553 54460 0.8940 +9553 54516 0.7090 +9553 54534 0.9720 +9553 54543 0.5030 +9553 54948 0.9970 +9553 54965 0.4010 +9553 54998 0.8350 +9553 55037 0.8240 +9553 55052 0.9990 +9553 55157 0.4350 +9553 55168 0.9810 +9553 55173 0.9980 +9553 55176 0.7860 +9553 55268 0.5350 +9553 55272 0.9820 +9553 55316 0.9540 +9553 55324 0.7880 +9553 55633 0.4290 +9553 55703 0.5580 +9553 55862 0.5410 +9553 55871 0.4890 +9553 55967 0.5650 +9553 56648 0.9000 +9553 56945 0.8530 +9553 57129 0.9980 +9553 57471 0.4300 +9553 60488 0.9920 +9553 60558 0.8500 +9553 60678 0.4250 +9553 63875 0.9990 +9553 63931 0.9980 +9553 64080 0.5260 +9553 64146 0.9430 +9553 64374 0.8230 +9553 64432 0.9820 +9553 64928 0.8410 +9553 64949 0.8310 +9553 64951 0.8470 +9553 64960 0.9990 +9553 64963 0.9980 +9553 64965 0.9990 +9553 64968 0.9990 +9553 64969 0.9990 +9553 64975 0.9950 +9553 64976 0.9920 +9553 64978 0.9610 +9553 64979 0.9990 +9553 64981 0.9960 +9553 64983 0.9990 +9553 65003 0.9970 +9553 65005 0.9990 +9553 65008 0.9940 +9553 65080 0.9930 +9553 65121 0.6710 +9553 65122 0.6710 +9553 65993 0.8860 +9553 78988 0.8720 +9553 79587 0.4420 +9553 79590 0.9970 +9553 79631 0.8590 +9553 79728 0.5940 +9553 80146 0.4810 +9553 80222 0.4440 +9553 80270 0.4810 +9553 81031 0.4020 +9553 81892 0.4570 +9553 84172 0.5470 +9553 84311 0.9240 +9553 84340 0.9160 +9553 84545 0.9940 +9553 84883 0.4020 +9553 85476 0.9700 +9553 85865 0.4540 +9553 90313 0.7860 +9553 90480 0.9840 +9553 90624 0.7050 +9553 91574 0.9280 +9553 92170 0.8270 +9553 92259 0.5820 +9553 92399 0.9920 +9553 93517 0.4810 +9553 114134 0.4020 +9553 114781 0.6940 +9553 115416 0.9300 +9553 116540 0.9260 +9553 116541 0.9760 +9553 118487 0.9060 +9553 122704 0.9150 +9553 124359 0.5340 +9553 124995 0.9860 +9553 126402 0.9530 +9553 128308 0.8770 +9553 130916 0.8190 +9553 133015 0.4290 +9553 135138 0.4290 +9553 140801 0.8450 +9553 143244 0.9000 +9553 148022 0.5330 +9553 149478 0.6330 +9553 150472 0.5180 +9553 154091 0.4020 +9553 157310 0.7680 +9553 219402 0.5750 +9553 219927 0.9990 +9553 220869 0.4820 +9553 253175 0.5340 +9553 253827 0.4470 +9553 284106 0.4300 +9553 285855 0.9400 +9553 343068 0.6710 +9553 343070 0.6710 +9553 345051 0.8400 +9553 347487 0.8540 +9553 353376 0.5330 +9553 374659 0.9440 +9553 387129 0.9400 +9553 387338 0.9050 +9553 390999 0.6710 +9553 391002 0.6710 +9553 400735 0.6710 +9553 400736 0.6710 +9553 440560 0.6710 +9553 440561 0.6710 +9553 441873 0.6710 +9553 445571 0.4870 +9553 641776 0.8290 +9553 643909 0.8290 +9553 644019 0.4820 +9553 645359 0.6710 +9553 653247 0.4020 +9553 653619 0.6710 +9553 654364 0.4170 +9553 728524 0.8290 +9553 729528 0.6710 +9553 100131801 0.4640 +9553 100287482 0.8540 +9553 100302736 0.5330 +9553 100505478 0.9400 +9553 100526842 0.9540 +9553 100996746 0.8290 +9553 101929983 0.6710 +9553 105180390 0.8290 +9553 105180391 0.8290 +9553 114483834 0.7920 +9553 127898561 0.8110 +9554 9570 0.9990 +9554 9632 0.7260 +9554 9854 0.4440 +9554 9871 0.7280 +9554 9919 0.7570 +9554 10113 0.5450 +9554 10175 0.5800 +9554 10228 0.9630 +9554 10282 0.9990 +9554 10342 0.5590 +9554 10427 0.9080 +9554 10483 0.6960 +9554 10484 0.9930 +9554 10490 0.9840 +9554 10554 0.4530 +9554 10618 0.4330 +9554 10626 0.9360 +9554 10652 0.9950 +9554 10791 0.5000 +9554 10802 0.9850 +9554 10814 0.5410 +9554 10815 0.5410 +9554 10945 0.6040 +9554 10959 0.7460 +9554 10960 0.6170 +9554 10972 0.8510 +9554 11014 0.6510 +9554 11015 0.6100 +9554 11079 0.4740 +9554 11196 0.7170 +9554 11231 0.4700 +9554 11316 0.6640 +9554 22818 0.7200 +9554 22820 0.7320 +9554 22872 0.7910 +9554 22931 0.4640 +9554 23011 0.4430 +9554 23256 0.9970 +9554 23423 0.5890 +9554 23673 0.9270 +9554 25923 0.5070 +9554 26003 0.5380 +9554 26276 0.4210 +9554 26286 0.6430 +9554 26958 0.6690 +9554 26984 0.6270 +9554 27095 0.4690 +9554 29927 0.5640 +9554 50852 0.4480 +9554 51014 0.6350 +9554 51026 0.4600 +9554 51128 0.7870 +9554 51226 0.6980 +9554 51234 0.4260 +9554 51272 0.9820 +9554 51594 0.8940 +9554 53407 0.9990 +9554 54732 0.7900 +9554 54734 0.4490 +9554 55014 0.8750 +9554 55737 0.4010 +9554 55738 0.6030 +9554 55752 0.4810 +9554 55850 0.9980 +9554 56681 0.7810 +9554 57142 0.4050 +9554 57222 0.4510 +9554 57705 0.4240 +9554 58485 0.4120 +9554 60561 0.9430 +9554 63908 0.7460 +9554 63915 0.4080 +9554 64083 0.6290 +9554 64422 0.4050 +9554 64689 0.7050 +9554 79139 0.4040 +9554 79748 0.5850 +9554 81562 0.5640 +9554 81876 0.8100 +9554 83452 0.4070 +9554 83548 0.5340 +9554 84364 0.6630 +9554 89866 0.6170 +9554 90411 0.5880 +9554 112755 0.7320 +9554 116841 0.9270 +9554 134957 0.6490 +9554 135114 0.4310 +9554 140576 0.4420 +9554 143187 0.9740 +9554 148223 0.6280 +9554 149111 0.5410 +9554 152579 0.7840 +9554 203062 0.7510 +9554 203245 0.4820 +9554 222068 0.4040 +9554 254263 0.5410 +9554 339122 0.4110 +9554 339302 0.5550 +9554 415117 0.7670 +9554 594855 0.5400 +9555 9557 0.5080 +9555 9584 0.5800 +9555 9678 0.5640 +9555 9734 0.6910 +9555 9759 0.6960 +9555 9940 0.4730 +9555 10013 0.6920 +9555 10014 0.6950 +9555 10038 0.4280 +9555 10664 0.5120 +9555 10765 0.5830 +9555 10856 0.6320 +9555 10919 0.5100 +9555 10951 0.6880 +9555 11176 0.4430 +9555 11198 0.6630 +9555 11335 0.6470 +9555 22933 0.4560 +9555 22992 0.4190 +9555 23135 0.4650 +9555 23347 0.4750 +9555 23468 0.4780 +9555 23476 0.7310 +9555 23512 0.4650 +9555 23613 0.7120 +9555 25842 0.4070 +9555 25942 0.4080 +9555 29072 0.4490 +9555 51547 0.5840 +9555 51564 0.6940 +9555 54145 0.5940 +9555 54625 0.4810 +9555 54834 0.4700 +9555 54904 0.5980 +9555 54936 0.4810 +9555 54969 0.6560 +9555 55193 0.4740 +9555 55506 0.4870 +9555 55869 0.6960 +9555 57680 0.4100 +9555 79829 0.5520 +9555 79885 0.6940 +9555 79968 0.5410 +9555 83666 0.5380 +9555 83933 0.6910 +9555 84196 0.5810 +9555 84661 0.4170 +9555 85236 0.6070 +9555 94239 0.4070 +9555 114803 0.4150 +9555 121504 0.9440 +9555 126961 0.9510 +9555 128312 0.9570 +9555 133482 0.4450 +9555 151636 0.5720 +9555 158983 0.6540 +9555 165631 0.5070 +9555 165918 0.5030 +9555 200558 0.9080 +9555 221443 0.4150 +9555 255626 0.7140 +9555 285141 0.5570 +9555 286436 0.5840 +9555 286827 0.4430 +9555 333932 0.9360 +9555 340096 0.5380 +9555 391769 0.5340 +9555 440093 0.5910 +9555 440686 0.5900 +9555 440689 0.5900 +9555 554313 0.9470 +9555 653604 0.9580 +9555 114483833 0.5770 +9556 9770 0.4420 +9556 10476 0.9980 +9556 10632 0.9890 +9556 10765 0.5950 +9556 10975 0.4940 +9556 23135 0.6040 +9556 23788 0.5670 +9556 27089 0.6350 +9556 27109 0.5590 +9556 29796 0.6260 +9556 51079 0.5680 +9556 51241 0.4530 +9556 54539 0.4010 +9556 55028 0.8750 +9556 55143 0.8920 +9556 55967 0.5220 +9556 60484 0.4210 +9556 81892 0.5340 +9556 84833 0.9990 +9556 84987 0.4350 +9556 90231 0.5210 +9556 93974 0.7670 +9556 267020 0.9580 +9556 440574 0.4760 +9556 100526740 0.5400 +9557 9939 0.4650 +9557 9978 0.5450 +9557 10038 0.9030 +9557 10401 0.5230 +9557 10664 0.4050 +9557 10951 0.4790 +9557 11176 0.4730 +9557 11177 0.5190 +9557 11198 0.7860 +9557 11335 0.4150 +9557 23229 0.5920 +9557 23468 0.4620 +9557 23476 0.4450 +9557 28992 0.4520 +9557 29063 0.4060 +9557 29994 0.4200 +9557 51028 0.5120 +9557 51205 0.7060 +9557 51463 0.6070 +9557 51592 0.6610 +9557 54107 0.5860 +9557 54768 0.4470 +9557 54778 0.4770 +9557 54834 0.5020 +9557 54840 0.4020 +9557 54882 0.4100 +9557 55506 0.4430 +9557 55743 0.5250 +9557 56131 0.4100 +9557 56655 0.4230 +9557 57410 0.4490 +9557 57697 0.4490 +9557 65980 0.4550 +9557 80351 0.4610 +9557 81847 0.8580 +9557 84950 0.5440 +9557 84955 0.6260 +9557 85236 0.9390 +9557 94239 0.4010 +9557 115992 0.4730 +9557 120892 0.4380 +9557 121504 0.9150 +9557 126961 0.9220 +9557 140733 0.4040 +9557 200030 0.6100 +9557 200558 0.8890 +9557 221443 0.4880 +9557 260425 0.4140 +9557 284615 0.4100 +9557 333932 0.9220 +9557 404672 0.5510 +9557 554313 0.9200 +9557 653519 0.5410 +9557 653604 0.9360 +9559 9685 0.4250 +9559 9779 0.9980 +9559 9784 0.7390 +9559 9897 0.8580 +9559 10059 0.4780 +9559 10096 0.4420 +9559 10239 0.5530 +9559 10311 0.5070 +9559 10363 0.5010 +9559 10490 0.4910 +9559 10618 0.5790 +9559 10652 0.4290 +9559 10807 0.6130 +9559 10890 0.6140 +9559 10938 0.7500 +9559 11311 0.6660 +9559 22986 0.5490 +9559 23041 0.7610 +9559 23307 0.6600 +9559 23317 0.6760 +9559 23325 0.7120 +9559 23339 0.4840 +9559 23355 0.5070 +9559 23621 0.6010 +9559 27131 0.9980 +9559 27243 0.4150 +9559 28952 0.4390 +9559 29886 0.7380 +9559 29887 0.5930 +9559 29901 0.6220 +9559 29907 0.4180 +9559 29916 0.6580 +9559 29934 0.8910 +9559 51019 0.6280 +9559 51028 0.8400 +9559 51122 0.5190 +9559 51160 0.4750 +9559 51375 0.6450 +9559 51429 0.4330 +9559 51479 0.4940 +9559 51510 0.4500 +9559 51699 0.9990 +9559 54520 0.5160 +9559 54551 0.4240 +9559 55667 0.4680 +9559 55737 0.9990 +9559 55773 0.4100 +9559 55907 0.5760 +9559 57020 0.6990 +9559 57182 0.4780 +9559 57537 0.5520 +9559 58533 0.9940 +9559 64089 0.6840 +9559 64786 0.5080 +9559 79009 0.4330 +9559 79065 0.4540 +9559 79594 0.8030 +9559 79971 0.7100 +9559 81609 0.9980 +9559 84079 0.6440 +9559 84313 0.6060 +9559 112574 0.4060 +9559 112936 0.9910 +9559 114815 0.7690 +9559 120892 0.4990 +9559 124997 0.4030 +9559 150684 0.5800 +9559 169166 0.4970 +9559 253725 0.7130 +9559 254122 0.6600 +9559 257364 0.4200 +9559 338382 0.5340 +9559 374354 0.4350 +9559 387680 0.5880 +9559 401548 0.5610 +9559 645432 0.4390 +9559 100287171 0.7990 +9560 10424 0.5050 +9560 10563 0.9960 +9560 10663 0.7700 +9560 10803 0.7400 +9560 26086 0.4110 +9560 29899 0.4110 +9560 30834 0.4460 +9560 58191 0.5500 +9560 64115 0.4980 +9560 126006 0.4110 +9560 128209 0.4570 +9560 414062 0.9580 +9562 9563 0.8020 +9562 9651 0.9000 +9562 9807 0.4570 +9562 23007 0.9000 +9562 23236 0.9090 +9562 27124 0.9190 +9562 51071 0.8030 +9562 51196 0.9050 +9562 51447 0.4430 +9562 51763 0.9230 +9562 64768 0.6910 +9562 80271 0.9290 +9562 84076 0.8010 +9562 84812 0.9000 +9562 89869 0.9000 +9562 92211 0.7430 +9562 113026 0.9000 +9562 117283 0.5070 +9562 132158 0.8060 +9562 253430 0.9560 +9562 387712 0.9130 +9562 441531 0.9120 +9563 9588 0.4880 +9563 9817 0.4850 +9563 9942 0.6350 +9563 9945 0.6340 +9563 10007 0.9490 +9563 10020 0.9030 +9563 10295 0.4660 +9563 10298 0.4390 +9563 10327 0.4110 +9563 10352 0.4580 +9563 10449 0.4480 +9563 10455 0.4460 +9563 10549 0.4680 +9563 10587 0.5920 +9563 10606 0.4970 +9563 10797 0.5690 +9563 10840 0.4180 +9563 10873 0.7570 +9563 10891 0.4030 +9563 10935 0.5530 +9563 11112 0.4970 +9563 11132 0.4640 +9563 11181 0.5620 +9563 11260 0.4050 +9563 11313 0.4050 +9563 22933 0.4730 +9563 22934 0.8340 +9563 22980 0.4200 +9563 23171 0.4150 +9563 23408 0.4900 +9563 23409 0.4580 +9563 23410 0.6070 +9563 23411 0.5450 +9563 23417 0.4910 +9563 23479 0.4790 +9563 23483 0.4380 +9563 23530 0.4280 +9563 23729 0.4540 +9563 25796 0.9850 +9563 25824 0.4110 +9563 25828 0.4670 +9563 25902 0.4170 +9563 26227 0.5280 +9563 26270 0.4930 +9563 26330 0.9380 +9563 27068 0.5200 +9563 27165 0.6030 +9563 29968 0.5230 +9563 51005 0.8730 +9563 51022 0.4130 +9563 51071 0.5010 +9563 51076 0.5340 +9563 51102 0.5280 +9563 51167 0.4610 +9563 51179 0.4450 +9563 51314 0.4160 +9563 51548 0.4150 +9563 51557 0.4160 +9563 51706 0.4010 +9563 54205 0.5140 +9563 54363 0.6040 +9563 54511 0.4130 +9563 54658 0.4190 +9563 54995 0.5610 +9563 55066 0.5100 +9563 55276 0.9360 +9563 55293 0.4080 +9563 55526 0.4150 +9563 55577 0.6400 +9563 55750 0.4190 +9563 55753 0.4450 +9563 55902 0.5130 +9563 56898 0.4170 +9563 56965 0.5510 +9563 56998 0.4070 +9563 57016 0.4180 +9563 57026 0.4080 +9563 57103 0.6920 +9563 57469 0.6470 +9563 57505 0.4890 +9563 57591 0.4100 +9563 57818 0.9420 +9563 64080 0.6830 +9563 64434 0.6680 +9563 64841 0.4900 +9563 65220 0.9190 +9563 79154 0.4980 +9563 79668 0.5510 +9563 79893 0.4020 +9563 79944 0.4470 +9563 80201 0.9220 +9563 80273 0.4360 +9563 80347 0.4960 +9563 80777 0.5220 +9563 81570 0.6400 +9563 81577 0.4080 +9563 83440 0.8390 +9563 83473 0.4060 +9563 84076 0.9380 +9563 84168 0.4150 +9563 84263 0.4860 +9563 84467 0.5960 +9563 84532 0.5230 +9563 84680 0.4010 +9563 84693 0.4490 +9563 84706 0.5870 +9563 84869 0.4750 +9563 92483 0.9260 +9563 92579 0.9450 +9563 93100 0.4320 +9563 112483 0.4030 +9563 114112 0.5470 +9563 118881 0.4590 +9563 122622 0.4230 +9563 129831 0.9760 +9563 130589 0.5950 +9563 130752 0.4570 +9563 130951 0.6130 +9563 132789 0.8780 +9563 137362 0.4750 +9563 137902 0.4590 +9563 138050 0.4310 +9563 140809 0.4200 +9563 154141 0.4970 +9563 160287 0.9260 +9563 160428 0.4280 +9563 197257 0.4430 +9563 200895 0.5680 +9563 220074 0.5120 +9563 221823 0.6010 +9563 254042 0.4870 +9563 257202 0.8280 +9563 283209 0.5750 +9563 283871 0.4670 +9563 340562 0.4030 +9563 387712 0.8760 +9563 414328 0.9820 +9563 440574 0.4290 +9563 441024 0.4820 +9563 441531 0.9000 +9563 493869 0.8200 +9563 606495 0.4240 +9563 729020 0.7980 +9563 730249 0.4010 +9563 120356740 0.4580 +9564 9743 0.5100 +9564 9844 0.9520 +9564 10006 0.7830 +9564 10044 0.9900 +9564 10045 0.7920 +9564 10095 0.4470 +9564 10152 0.7370 +9564 10163 0.6490 +9564 10174 0.6120 +9564 10188 0.7240 +9564 10207 0.5810 +9564 10278 0.4960 +9564 10428 0.6150 +9564 10451 0.4020 +9564 10458 0.6020 +9564 10519 0.5290 +9564 10552 0.4590 +9564 10787 0.5760 +9564 10810 0.5570 +9564 10979 0.4470 +9564 11156 0.7150 +9564 22801 0.6780 +9564 22919 0.5170 +9564 22924 0.5300 +9564 23162 0.4810 +9564 23191 0.5650 +9564 23371 0.5650 +9564 23607 0.8030 +9564 26060 0.4570 +9564 26167 0.4080 +9564 26999 0.5400 +9564 27043 0.5430 +9564 27130 0.5570 +9564 29780 0.5040 +9564 29941 0.4280 +9564 30011 0.7450 +9564 50855 0.5480 +9564 51429 0.4520 +9564 51438 0.5430 +9564 54518 0.6290 +9564 55742 0.6440 +9564 55845 0.5510 +9564 55914 0.4430 +9564 56288 0.5490 +9564 57096 0.6400 +9564 63916 0.9150 +9564 64098 0.5110 +9564 64283 0.4770 +9564 64398 0.5750 +9564 64759 0.9060 +9564 65059 0.4850 +9564 79834 0.4980 +9564 80725 0.6780 +9564 83660 0.9960 +9564 84106 0.4520 +9564 84662 0.6540 +9564 84951 0.7980 +9564 85440 0.5010 +9564 124491 0.7810 +9564 132160 0.4260 +9564 171017 0.8110 +9564 261734 0.9410 +9564 285489 0.5770 +9567 10200 0.7200 +9567 10332 0.8140 +9567 10438 0.7620 +9567 11340 0.7200 +9567 22894 0.8340 +9567 23016 0.7200 +9567 23154 0.4210 +9567 23383 0.4590 +9567 23386 0.4040 +9567 23404 0.8070 +9567 23644 0.5440 +9567 30816 0.6250 +9567 30835 0.7860 +9567 51010 0.7200 +9567 51013 0.7340 +9567 51206 0.8510 +9567 51643 0.6010 +9567 53918 0.4560 +9567 54464 0.4010 +9567 54512 0.7540 +9567 56061 0.4210 +9567 56915 0.7340 +9567 57805 0.5410 +9567 64083 0.6890 +9567 64284 0.4370 +9567 87178 0.7210 +9567 92106 0.4010 +9567 115752 0.8100 +9567 118460 0.7380 +9567 121274 0.4380 +9567 129563 0.5880 +9567 196441 0.7220 +9567 339390 0.7010 +9568 9832 0.5020 +9568 10203 0.7680 +9568 10266 0.7350 +9568 10267 0.7260 +9568 10268 0.7480 +9568 10681 0.8140 +9568 11230 0.4170 +9568 23208 0.4550 +9568 23560 0.6430 +9568 23644 0.4610 +9568 23705 0.4350 +9568 26047 0.4650 +9568 26059 0.4160 +9568 26086 0.4510 +9568 29899 0.4370 +9568 50831 0.4990 +9568 50832 0.4990 +9568 50833 0.4990 +9568 50834 0.4990 +9568 50835 0.5000 +9568 50836 0.4990 +9568 50837 0.4990 +9568 50838 0.4990 +9568 50839 0.4990 +9568 50840 0.4990 +9568 51738 0.6720 +9568 51764 0.7290 +9568 53947 0.7180 +9568 54331 0.9420 +9568 54429 0.4990 +9568 55879 0.7540 +9568 55970 0.6720 +9568 56934 0.4500 +9568 57030 0.7260 +9568 57084 0.7230 +9568 57468 0.4010 +9568 57512 0.4470 +9568 57528 0.9610 +9568 59345 0.6500 +9568 63940 0.4220 +9568 80834 0.6630 +9568 80835 0.6060 +9568 81491 0.4520 +9568 83756 0.6010 +9568 84152 0.4420 +9568 84708 0.4310 +9568 94235 0.6630 +9568 115207 0.5060 +9568 126006 0.4370 +9568 127833 0.4080 +9568 140679 0.5750 +9568 152789 0.7500 +9568 165829 0.9330 +9568 259285 0.4990 +9568 259286 0.4990 +9568 259287 0.4990 +9568 259289 0.4990 +9568 259290 0.4990 +9568 259292 0.4990 +9568 259293 0.4990 +9568 259294 0.4990 +9568 259295 0.4990 +9568 259296 0.4990 +9568 282973 0.4490 +9568 338398 0.4990 +9568 353164 0.4990 +9569 26608 0.8240 +9569 29954 0.4750 +9569 51085 0.6440 +9569 55695 0.7320 +9569 60681 0.8380 +9569 63976 0.7310 +9569 84163 0.4500 +9569 84277 0.4510 +9569 85415 0.4110 +9569 91050 0.4620 +9569 124842 0.4300 +9569 135886 0.5110 +9569 135892 0.7440 +9569 155382 0.4260 +9569 348793 0.4300 +9569 389524 0.6000 +9570 9632 0.8380 +9570 9871 0.8650 +9570 9919 0.6420 +9570 9950 0.5010 +9570 10113 0.7630 +9570 10121 0.5790 +9570 10175 0.5210 +9570 10228 0.9790 +9570 10282 0.9990 +9570 10342 0.5480 +9570 10427 0.7670 +9570 10466 0.8430 +9570 10483 0.4460 +9570 10484 0.7090 +9570 10490 0.9820 +9570 10540 0.5280 +9570 10618 0.6810 +9570 10652 0.9950 +9570 10671 0.5130 +9570 10791 0.5420 +9570 10802 0.7470 +9570 10814 0.7200 +9570 10815 0.7530 +9570 10945 0.5680 +9570 10959 0.6390 +9570 10960 0.6420 +9570 10972 0.6120 +9570 11014 0.5760 +9570 11015 0.5780 +9570 11070 0.5700 +9570 11196 0.6770 +9570 11258 0.5090 +9570 11316 0.7350 +9570 22796 0.8430 +9570 22818 0.6690 +9570 22820 0.7140 +9570 22872 0.6280 +9570 23256 0.9990 +9570 23423 0.5040 +9570 23609 0.4680 +9570 23673 0.9380 +9570 25839 0.7580 +9570 26003 0.4520 +9570 26286 0.4690 +9570 26958 0.6530 +9570 26984 0.9920 +9570 29925 0.4610 +9570 51014 0.5090 +9570 51128 0.6770 +9570 51143 0.5210 +9570 51164 0.6090 +9570 51226 0.5370 +9570 51272 0.9970 +9570 51332 0.4990 +9570 51542 0.4630 +9570 53407 0.8710 +9570 54732 0.6120 +9570 55014 0.8310 +9570 55140 0.4780 +9570 55850 0.8880 +9570 55860 0.5260 +9570 56681 0.4170 +9570 57511 0.8970 +9570 57731 0.4990 +9570 60684 0.6310 +9570 63908 0.6970 +9570 64083 0.6120 +9570 64689 0.6980 +9570 79748 0.6020 +9570 80273 0.4250 +9570 81562 0.5980 +9570 81876 0.7350 +9570 83548 0.9090 +9570 84364 0.5030 +9570 84516 0.5640 +9570 89866 0.5990 +9570 90411 0.5690 +9570 91949 0.8440 +9570 93661 0.5700 +9570 112755 0.6960 +9570 112950 0.4910 +9570 116841 0.7360 +9570 124808 0.4670 +9570 134957 0.6450 +9570 140735 0.5320 +9570 143187 0.8990 +9570 149111 0.4990 +9570 154881 0.4450 +9570 158747 0.4300 +9570 160364 0.6760 +9570 203062 0.6410 +9570 254263 0.4990 +9570 285855 0.4360 +9570 339302 0.5400 +9570 415117 0.7270 +9570 594855 0.5400 +9572 9575 0.9750 +9572 9611 0.9990 +9572 9612 0.9390 +9572 9975 0.6740 +9572 10002 0.6740 +9572 10135 0.4760 +9572 10891 0.8390 +9572 23411 0.5700 +9572 25819 0.5860 +9572 25942 0.4150 +9572 26224 0.6600 +9572 29122 0.4360 +9572 51141 0.5880 +9572 55511 0.4470 +9572 56938 0.6850 +9572 79365 0.9400 +9572 90737 0.4750 +9572 92369 0.4210 +9572 94233 0.5410 +9572 117143 0.4630 +9572 133522 0.4170 +9572 148523 0.6200 +9572 102800317 0.7140 +9573 10468 0.4390 +9573 10637 0.6510 +9573 27022 0.4640 +9573 29842 0.4300 +9573 29947 0.4020 +9573 55211 0.7670 +9573 57167 0.5860 +9573 63978 0.6160 +9573 64321 0.5080 +9573 79727 0.6910 +9573 79923 0.8060 +9573 84891 0.4610 +9573 128209 0.4350 +9573 130399 0.9980 +9573 132625 0.6120 +9573 151871 0.6810 +9573 162979 0.5020 +9573 201456 0.4980 +9573 338917 0.7520 +9573 340168 0.6260 +9573 359787 0.7230 +9573 503582 0.4170 +9575 9611 0.6760 +9575 9790 0.4030 +9575 9901 0.4760 +9575 9915 0.4960 +9575 9971 0.4290 +9575 9975 0.9500 +9575 10135 0.9090 +9575 10399 0.5800 +9575 10743 0.8140 +9575 10891 0.7170 +9575 11091 0.7160 +9575 23028 0.8970 +9575 23411 0.9990 +9575 25819 0.7680 +9575 26224 0.9310 +9575 28999 0.6380 +9575 29122 0.4350 +9575 51548 0.7640 +9575 54467 0.5300 +9575 54962 0.5840 +9575 55511 0.4540 +9575 55904 0.4040 +9575 56938 0.9990 +9575 56987 0.6220 +9575 57491 0.4520 +9575 64802 0.5720 +9575 79365 0.9690 +9575 79968 0.4600 +9575 83666 0.4670 +9575 85457 0.9120 +9575 90737 0.4800 +9575 93986 0.4350 +9575 94233 0.6140 +9575 139135 0.6040 +9575 148523 0.6440 +9575 150483 0.4340 +9575 266743 0.5740 +9575 653604 0.6090 +9575 102800317 0.8390 +9576 9648 0.4400 +9576 9940 0.6450 +9576 9972 0.5360 +9576 10438 0.6200 +9576 10566 0.4430 +9576 23378 0.5040 +9576 23617 0.4980 +9576 25790 0.7220 +9576 25876 0.6990 +9576 25911 0.4850 +9576 25981 0.4970 +9576 26206 0.5210 +9576 26256 0.4150 +9576 27019 0.6530 +9576 27120 0.4160 +9576 27148 0.4310 +9576 27285 0.5510 +9576 29118 0.4170 +9576 50511 0.4150 +9576 54768 0.6660 +9576 55036 0.4550 +9576 55779 0.4110 +9576 56912 0.4530 +9576 56964 0.4420 +9576 57501 0.5600 +9576 57639 0.5410 +9576 57679 0.4880 +9576 64446 0.4800 +9576 79582 0.9900 +9576 79657 0.4100 +9576 79846 0.4870 +9576 79925 0.7860 +9576 79989 0.5000 +9576 80217 0.5300 +9576 80258 0.4630 +9576 81492 0.5750 +9576 83450 0.5540 +9576 83544 0.4170 +9576 83659 0.5980 +9576 83853 0.5060 +9576 84220 0.4400 +9576 84661 0.6730 +9576 85478 0.5260 +9576 89765 0.5170 +9576 89876 0.5340 +9576 90410 0.5800 +9576 90835 0.4610 +9576 114327 0.5680 +9576 122481 0.4030 +9576 128153 0.6660 +9576 132851 0.5150 +9576 135138 0.5490 +9576 136332 0.5900 +9576 144535 0.5470 +9576 146845 0.6520 +9576 164781 0.4570 +9576 200162 0.9250 +9576 200373 0.8010 +9576 219670 0.4260 +9576 219681 0.4950 +9576 286464 0.4530 +9576 345895 0.6530 +9576 345930 0.5990 +9576 374618 0.4040 +9576 374768 0.4500 +9576 644890 0.9660 +9576 653489 0.4400 +9576 729540 0.4400 +9577 9595 0.4960 +9577 9616 0.4390 +9577 9656 0.6510 +9577 10111 0.5090 +9577 10336 0.5450 +9577 10393 0.9010 +9577 10524 0.5780 +9577 10987 0.4770 +9577 11060 0.6340 +9577 11065 0.9050 +9577 11200 0.7280 +9577 22974 0.5100 +9577 22976 0.5710 +9577 23172 0.9990 +9577 23492 0.7270 +9577 25847 0.9000 +9577 25906 0.9000 +9577 27302 0.4310 +9577 27338 0.9090 +9577 29086 0.9990 +9577 29882 0.9000 +9577 29945 0.9000 +9577 50619 0.7800 +9577 51239 0.5770 +9577 51343 0.5870 +9577 51433 0.9280 +9577 51434 0.9020 +9577 51529 0.9000 +9577 51588 0.4300 +9577 51720 0.9990 +9577 54880 0.9080 +9577 55183 0.5320 +9577 55757 0.5790 +9577 57332 0.9020 +9577 59348 0.4140 +9577 64080 0.4240 +9577 64421 0.5340 +9577 64682 0.9040 +9577 79184 0.9990 +9577 79728 0.5230 +9577 80012 0.9000 +9577 84057 0.4970 +9577 84108 0.9010 +9577 84142 0.9990 +9577 84333 0.5450 +9577 84733 0.9020 +9577 84759 0.5450 +9577 85235 0.5230 +9577 92815 0.5230 +9577 114548 0.5410 +9577 119504 0.9000 +9577 129852 0.4830 +9577 138241 0.6080 +9577 140459 0.5770 +9577 165918 0.4520 +9577 166979 0.5620 +9577 221613 0.5230 +9577 246184 0.9000 +9577 317772 0.5240 +9577 548645 0.6240 +9578 9640 0.4450 +9578 9815 0.4090 +9578 9826 0.5870 +9578 10298 0.5300 +9578 10398 0.4200 +9578 10458 0.4620 +9578 11060 0.4340 +9578 11135 0.4900 +9578 23048 0.4400 +9578 23095 0.4170 +9578 23164 0.5320 +9578 23370 0.4600 +9578 23433 0.6410 +9578 23513 0.5310 +9578 23580 0.5820 +9578 28964 0.4800 +9578 50650 0.5120 +9578 54509 0.5170 +9578 54776 0.5110 +9578 54874 0.4800 +9578 55004 0.4050 +9578 55240 0.4130 +9578 55789 0.4160 +9578 55924 0.4660 +9578 55971 0.4290 +9578 56882 0.4460 +9578 56990 0.4620 +9578 57381 0.6170 +9578 57478 0.4070 +9578 80184 0.4260 +9578 80725 0.4680 +9578 81624 0.4780 +9578 81693 0.6140 +9578 81839 0.4250 +9578 83648 0.4980 +9578 84254 0.4330 +9578 91010 0.4400 +9578 103910 0.4170 +9578 121601 0.4350 +9578 128239 0.4490 +9578 137886 0.8260 +9578 143098 0.5080 +9578 143282 0.4100 +9578 147179 0.4250 +9578 152273 0.4480 +9578 197335 0.4550 +9578 286343 0.4630 +9578 375061 0.6220 +9578 399687 0.5370 +9578 541468 0.5260 +9578 100271715 0.4770 +9580 10417 0.5300 +9580 51176 0.5590 +9580 55553 0.6900 +9580 64793 0.8810 +9580 83439 0.5220 +9580 160364 0.4850 +9580 644815 0.4130 +9581 9684 0.4280 +9581 10449 0.4220 +9581 10741 0.4670 +9581 11136 0.4120 +9581 11313 0.4230 +9581 29925 0.4880 +9581 29952 0.4620 +9581 51400 0.4970 +9581 54878 0.5070 +9581 55347 0.4480 +9581 55892 0.4640 +9581 63929 0.4980 +9581 64718 0.4220 +9581 79004 0.4220 +9581 79823 0.9760 +9581 91039 0.4140 +9581 124995 0.4010 +9581 130916 0.4110 +9581 145389 0.4260 +9581 158763 0.4610 +9581 199857 0.6650 +9581 285489 0.4660 +9582 9616 0.6870 +9582 9978 0.4350 +9582 10476 0.5310 +9582 10632 0.4010 +9582 10930 0.5980 +9582 10975 0.5760 +9582 11100 0.4610 +9582 23203 0.5780 +9582 23558 0.4270 +9582 27089 0.7580 +9582 27350 0.7130 +9582 29796 0.7100 +9582 29974 0.6240 +9582 51079 0.5550 +9582 51455 0.4240 +9582 54205 0.4640 +9582 54539 0.5450 +9582 55124 0.4500 +9582 55167 0.5500 +9582 55967 0.5200 +9582 64111 0.4630 +9582 79002 0.5880 +9582 79728 0.4600 +9582 84886 0.7360 +9582 84955 0.6250 +9582 85363 0.4890 +9582 125965 0.5880 +9582 164668 0.7690 +9582 164684 0.4260 +9582 200315 0.9390 +9582 200316 0.4410 +9582 283459 0.6610 +9582 388753 0.5910 +9582 403314 0.8670 +9582 440567 0.6870 +9582 100532726 0.4600 +9583 10201 0.7470 +9583 10846 0.6500 +9583 22978 0.6890 +9583 23039 0.4440 +9583 29091 0.4350 +9583 29922 0.6770 +9583 30833 0.6580 +9583 50484 0.9140 +9583 50940 0.6500 +9583 51251 0.6770 +9583 51727 0.4120 +9583 51760 0.4240 +9583 54872 0.4570 +9583 54963 0.9170 +9583 56953 0.6530 +9583 57590 0.5230 +9583 81545 0.4460 +9583 83549 0.9090 +9583 84618 0.7240 +9583 93034 0.7870 +9583 115024 0.6780 +9583 122622 0.9230 +9583 124583 0.9040 +9583 139596 0.9000 +9583 146909 0.4140 +9583 221264 0.7020 +9583 374659 0.9020 +9583 377841 0.9330 +9583 389136 0.4200 +9583 441250 0.4770 +9583 654364 0.6590 +9583 100526794 0.7880 +9584 9667 0.5740 +9584 9698 0.4910 +9584 9716 0.4700 +9584 9774 0.7500 +9584 9775 0.7730 +9584 9782 0.5420 +9584 9877 0.5910 +9584 9879 0.5120 +9584 9898 0.4880 +9584 9908 0.4140 +9584 9939 0.4820 +9584 9967 0.6770 +9584 9984 0.4200 +9584 9987 0.7970 +9584 10084 0.6780 +9584 10147 0.4980 +9584 10155 0.4950 +9584 10179 0.8880 +9584 10180 0.6410 +9584 10181 0.9550 +9584 10189 0.9060 +9584 10212 0.5860 +9584 10236 0.5590 +9584 10240 0.4770 +9584 10250 0.9340 +9584 10262 0.5680 +9584 10284 0.9250 +9584 10285 0.5520 +9584 10286 0.6510 +9584 10291 0.7220 +9584 10399 0.4340 +9584 10419 0.4870 +9584 10432 0.8020 +9584 10450 0.5450 +9584 10465 0.4430 +9584 10492 0.5070 +9584 10521 0.5910 +9584 10523 0.7440 +9584 10569 0.4130 +9584 10594 0.5290 +9584 10642 0.4260 +9584 10657 0.5880 +9584 10713 0.6280 +9584 10772 0.6860 +9584 10813 0.5190 +9584 10915 0.8870 +9584 10921 0.7880 +9584 10946 0.6380 +9584 10949 0.6240 +9584 10992 0.7390 +9584 11011 0.5150 +9584 11051 0.4900 +9584 11052 0.5780 +9584 11091 0.4770 +9584 11157 0.4400 +9584 11193 0.5650 +9584 11198 0.5980 +9584 11224 0.4170 +9584 11325 0.5330 +9584 11335 0.4990 +9584 11338 0.9930 +9584 22803 0.5980 +9584 22826 0.8680 +9584 22827 0.5840 +9584 22828 0.4600 +9584 22889 0.4010 +9584 22894 0.4200 +9584 22907 0.4600 +9584 22913 0.6080 +9584 22938 0.6180 +9584 22944 0.4170 +9584 22948 0.4170 +9584 22985 0.6750 +9584 23020 0.6900 +9584 23054 0.6350 +9584 23107 0.4250 +9584 23168 0.4730 +9584 23210 0.6980 +9584 23212 0.4650 +9584 23215 0.6530 +9584 23223 0.4560 +9584 23350 0.5730 +9584 23360 0.4610 +9584 23367 0.4970 +9584 23394 0.4440 +9584 23398 0.5710 +9584 23435 0.6040 +9584 23450 0.6000 +9584 23451 0.9620 +9584 23476 0.6110 +9584 23517 0.8880 +9584 23521 0.4670 +9584 23524 0.9260 +9584 23534 0.4420 +9584 24148 0.4530 +9584 25957 0.8050 +9584 26097 0.4640 +9584 26121 0.4540 +9584 26576 0.5520 +9584 26986 0.4300 +9584 27316 0.6210 +9584 27336 0.8360 +9584 27339 0.6760 +9584 28973 0.4260 +9584 29115 0.6510 +9584 29896 0.6530 +9584 50809 0.4040 +9584 51065 0.4260 +9584 51185 0.6550 +9584 51319 0.9170 +9584 51329 0.4730 +9584 51340 0.5530 +9584 51362 0.9000 +9584 51428 0.4480 +9584 51441 0.4110 +9584 51574 0.6130 +9584 51593 0.9360 +9584 51631 0.4750 +9584 51634 0.4270 +9584 51639 0.6300 +9584 51645 0.4810 +9584 51663 0.4890 +9584 51692 0.5170 +9584 51729 0.6960 +9584 51747 0.9570 +9584 51808 0.4790 +9584 53981 0.4210 +9584 54819 0.6090 +9584 54870 0.4370 +9584 55015 0.4320 +9584 55037 0.4720 +9584 55082 0.4930 +9584 55110 0.4160 +9584 55119 0.5040 +9584 55147 0.6530 +9584 55234 0.9240 +9584 55294 0.5450 +9584 55421 0.6340 +9584 55660 0.9620 +9584 55692 0.9060 +9584 55696 0.5310 +9584 55749 0.8750 +9584 55904 0.5410 +9584 56257 0.4060 +9584 56259 0.6600 +9584 56945 0.4330 +9584 56949 0.6370 +9584 57396 0.4400 +9584 57461 0.4360 +9584 57794 0.8680 +9584 57805 0.6810 +9584 57819 0.4340 +9584 58517 0.9850 +9584 59286 0.5020 +9584 60488 0.4310 +9584 65083 0.4230 +9584 65117 0.6130 +9584 79009 0.4680 +9584 79016 0.9680 +9584 79084 0.5920 +9584 79152 0.6030 +9584 79576 0.4920 +9584 79753 0.4160 +9584 79811 0.4140 +9584 79869 0.4310 +9584 79882 0.4810 +9584 80335 0.4510 +9584 83932 0.5100 +9584 84081 0.4160 +9584 84248 0.4640 +9584 84271 0.4390 +9584 84811 0.4930 +9584 84844 0.5030 +9584 84950 0.8110 +9584 84991 0.7380 +9584 90379 0.9990 +9584 94104 0.4640 +9584 113251 0.4670 +9584 114034 0.6020 +9584 120892 0.5270 +9584 124245 0.5420 +9584 140890 0.7960 +9584 144983 0.4930 +9584 151613 0.6500 +9584 153527 0.5240 +9584 155435 0.4150 +9584 220988 0.5730 +9584 221092 0.4420 +9584 284695 0.6150 +9584 286257 0.4940 +9584 100526737 0.4700 +9584 100996928 0.4270 +9585 9700 0.4500 +9585 9735 0.5440 +9585 9787 0.6600 +9585 9793 0.4310 +9585 9824 0.4390 +9585 9833 0.5830 +9585 9918 0.4990 +9585 9928 0.7490 +9585 10051 0.6740 +9585 10112 0.7170 +9585 10403 0.5940 +9585 10460 0.6060 +9585 10592 0.7390 +9585 10615 0.4500 +9585 10643 0.4490 +9585 10733 0.7620 +9585 10749 0.6330 +9585 10769 0.4010 +9585 10926 0.4750 +9585 11004 0.7640 +9585 11065 0.5040 +9585 11113 0.4470 +9585 11127 0.6000 +9585 11169 0.4450 +9585 11339 0.4060 +9585 22920 0.5820 +9585 22974 0.4710 +9585 23046 0.6240 +9585 23095 0.6210 +9585 23303 0.6350 +9585 23397 0.5360 +9585 23426 0.5710 +9585 24137 0.7170 +9585 26153 0.6280 +9585 26227 0.5750 +9585 26286 0.5010 +9585 26586 0.6690 +9585 29028 0.5580 +9585 29119 0.4260 +9585 29127 0.9540 +9585 29128 0.4070 +9585 51053 0.5120 +9585 51203 0.5830 +9585 51594 0.5040 +9585 51659 0.4810 +9585 53407 0.5060 +9585 54443 0.6520 +9585 54478 0.5640 +9585 54742 0.4590 +9585 54820 0.6060 +9585 54892 0.4770 +9585 54908 0.5260 +9585 55010 0.4360 +9585 55055 0.4180 +9585 55063 0.4540 +9585 55083 0.6030 +9585 55143 0.7140 +9585 55165 0.5150 +9585 55215 0.4170 +9585 55320 0.7650 +9585 55582 0.6170 +9585 55605 0.7190 +9585 55614 0.6240 +9585 55632 0.6140 +9585 55635 0.7040 +9585 55738 0.5040 +9585 55835 0.4330 +9585 55839 0.4930 +9585 55850 0.5030 +9585 56992 0.8830 +9585 57405 0.4080 +9585 57576 0.6710 +9585 57650 0.4050 +9585 57698 0.5320 +9585 60561 0.5150 +9585 63967 0.5080 +9585 63971 0.6170 +9585 64105 0.4470 +9585 64151 0.8230 +9585 64837 0.5420 +9585 64946 0.4350 +9585 79075 0.5130 +9585 79682 0.4690 +9585 79733 0.4180 +9585 79801 0.4330 +9585 79968 0.4370 +9585 81565 0.6900 +9585 81611 0.4170 +9585 81624 0.4110 +9585 81930 0.8190 +9585 83461 0.5830 +9585 83540 0.8390 +9585 83879 0.4650 +9585 84364 0.5040 +9585 84643 0.6500 +9585 84722 0.4950 +9585 90990 0.6960 +9585 124602 0.6660 +9585 146909 0.7200 +9585 151246 0.6030 +9585 151648 0.5250 +9585 152098 0.4540 +9585 157313 0.6730 +9585 221458 0.5860 +9585 221908 0.4500 +9585 255022 0.4970 +9585 259266 0.8190 +9585 283431 0.5040 +9585 285643 0.6240 +9585 343099 0.4950 +9585 345930 0.4340 +9585 374654 0.6510 +9586 10000 0.7550 +9586 10488 0.9320 +9586 10891 0.9130 +9586 11016 0.8440 +9586 11031 0.4050 +9586 23036 0.4120 +9586 23533 0.4220 +9586 23683 0.6610 +9586 25820 0.4580 +9586 25865 0.6590 +9586 29108 0.4610 +9586 29124 0.4780 +9586 54518 0.4120 +9586 55509 0.7730 +9586 57118 0.6780 +9586 57172 0.6690 +9586 60468 0.5330 +9586 64127 0.4310 +9586 64764 0.9220 +9586 79937 0.4690 +9586 84699 0.9180 +9586 90993 0.9190 +9586 148327 0.9410 +9586 200186 0.9020 +9586 287015 0.6130 +9586 386682 0.4330 +9587 10459 0.5210 +9587 29945 0.4210 +9587 51763 0.7350 +9587 55168 0.4030 +9587 81628 0.4110 +9587 83540 0.4490 +9587 151246 0.4130 +9587 374946 0.4390 +9588 9601 0.4110 +9588 9636 0.4010 +9588 10105 0.4580 +9588 10130 0.4440 +9588 10465 0.4060 +9588 10539 0.5540 +9588 10551 0.5150 +9588 10576 0.5000 +9588 10587 0.4410 +9588 10768 0.4440 +9588 10801 0.4110 +9588 11168 0.5250 +9588 11315 0.7090 +9588 22949 0.5110 +9588 23382 0.4450 +9588 23479 0.4260 +9588 25796 0.4250 +9588 25824 0.8320 +9588 25828 0.6180 +9588 26330 0.4660 +9588 27306 0.9420 +9588 29101 0.8030 +9588 51022 0.5400 +9588 51060 0.9180 +9588 51218 0.4330 +9588 51314 0.6110 +9588 51645 0.4120 +9588 51700 0.4060 +9588 54431 0.4790 +9588 79048 0.4060 +9588 79094 0.9010 +9588 80273 0.4260 +9588 81567 0.4380 +9588 84203 0.5070 +9588 119391 0.9330 +9588 124975 0.9090 +9588 126393 0.5250 +9588 134266 0.4080 +9588 137695 0.5960 +9588 137902 0.4250 +9588 140809 0.6570 +9588 163081 0.4430 +9588 220296 0.5020 +9588 221357 0.9160 +9588 246744 0.7430 +9588 255220 0.4610 +9588 257202 0.9660 +9588 347736 0.4110 +9588 493869 0.9710 +9588 494143 0.9060 +9588 653689 0.9280 +9589 9774 0.4150 +9589 9987 0.5260 +9589 10128 0.7550 +9589 10189 0.4800 +9589 10320 0.6270 +9589 10482 0.4560 +9589 10492 0.5880 +9589 10542 0.4160 +9589 10637 0.5550 +9589 10642 0.7730 +9589 10643 0.7200 +9589 10644 0.7230 +9589 10772 0.5150 +9589 11051 0.5250 +9589 11052 0.5080 +9589 22916 0.4450 +9589 23013 0.6670 +9589 23091 0.9990 +9589 23211 0.5560 +9589 25804 0.4630 +9589 25962 0.9990 +9589 27316 0.7630 +9589 29063 0.8610 +9589 29081 0.8150 +9589 29855 0.8070 +9589 29890 0.9990 +9589 29896 0.6230 +9589 29974 0.5410 +9589 51441 0.9180 +9589 51504 0.4850 +9589 51603 0.8870 +9589 51605 0.4170 +9589 51676 0.4790 +9589 54487 0.4460 +9589 54785 0.4260 +9589 54888 0.5880 +9589 54890 0.9390 +9589 54915 0.9430 +9589 56254 0.5370 +9589 56339 0.9990 +9589 57187 0.4560 +9589 57628 0.7390 +9589 57721 0.9990 +9589 63935 0.5360 +9589 64761 0.4120 +9589 64783 0.9990 +9589 64848 0.9220 +9589 64863 0.9930 +9589 79036 0.4020 +9589 79066 0.9970 +9589 79068 0.9150 +9589 79830 0.4340 +9589 79872 0.9990 +9589 79923 0.5190 +9589 81892 0.4240 +9589 84142 0.5920 +9589 89872 0.5720 +9589 91746 0.9330 +9589 124245 0.4050 +9589 149708 0.4080 +9589 158506 0.7610 +9589 221120 0.5910 +9589 253943 0.9300 +9589 440093 0.4250 +9589 100509620 0.5720 +9590 10112 0.4410 +9590 10142 0.5960 +9590 10160 0.4200 +9590 10270 0.5740 +9590 10409 0.4970 +9590 10644 0.4510 +9590 11214 0.7690 +9590 11215 0.6020 +9590 11216 0.4720 +9590 23423 0.4860 +9590 26049 0.4200 +9590 29984 0.5540 +9590 51806 0.9360 +9590 54509 0.5480 +9590 54583 0.4510 +9590 55466 0.4420 +9590 65124 0.4050 +9590 79180 0.4050 +9590 79624 0.4210 +9590 80129 0.4420 +9590 80728 0.4160 +9590 81624 0.4030 +9590 81669 0.8760 +9590 90637 0.4220 +9590 91860 0.9360 +9590 116835 0.7740 +9590 144402 0.4050 +9590 163688 0.9360 +9590 259217 0.8070 +9590 284119 0.7930 +9590 445815 0.5210 +9590 493861 0.4240 +9592 9923 0.4400 +9592 11266 0.4790 +9592 22822 0.5030 +9592 23401 0.4130 +9592 51278 0.4520 +9592 54780 0.4200 +9592 55844 0.4830 +9592 64651 0.5670 +9592 64748 0.4610 +9592 128218 0.4420 +9592 151246 0.4670 +9592 157313 0.4200 +9595 9938 0.4100 +9595 23172 0.4350 +9595 27128 0.4650 +9595 27334 0.4700 +9595 54440 0.4360 +9595 55741 0.4210 +9595 64092 0.5410 +9595 64926 0.5080 +9595 80342 0.4910 +9595 81609 0.9570 +9595 89857 0.4280 +9595 117289 0.5450 +9595 283897 0.4320 +9600 9854 0.5910 +9600 9858 0.4300 +9600 10002 0.6220 +9600 10087 0.6950 +9600 10423 0.5470 +9600 10948 0.4860 +9600 23344 0.6830 +9600 23370 0.4590 +9600 26031 0.4250 +9600 55177 0.4070 +9600 56851 0.4010 +9600 57010 0.4670 +9600 57488 0.5280 +9600 57655 0.4360 +9600 65977 0.4180 +9600 80194 0.4040 +9600 83552 0.5280 +9600 83850 0.5240 +9600 84725 0.5180 +9600 114879 0.6130 +9600 114882 0.5680 +9600 132001 0.5610 +9600 343035 0.5070 +9600 375611 0.7750 +9600 390212 0.4360 +9600 654231 0.8260 +9601 9695 0.8150 +9601 9709 0.5920 +9601 10130 0.8930 +9601 10381 0.4020 +9601 10382 0.4280 +9601 10383 0.6290 +9601 10483 0.4800 +9601 10525 0.9970 +9601 10549 0.6500 +9601 10551 0.5160 +9601 10574 0.4580 +9601 10585 0.6690 +9601 10935 0.4260 +9601 10954 0.5700 +9601 10956 0.6600 +9601 10960 0.4640 +9601 10961 0.7650 +9601 10971 0.5230 +9601 10972 0.4870 +9601 11231 0.4360 +9601 11253 0.4310 +9601 22926 0.6390 +9601 23071 0.4740 +9601 23193 0.7170 +9601 23753 0.8940 +9601 25824 0.4010 +9601 27044 0.4900 +9601 27248 0.4310 +9601 27333 0.4510 +9601 29927 0.6810 +9601 29937 0.4590 +9601 29954 0.6270 +9601 30001 0.9840 +9601 51009 0.4290 +9601 51060 0.5500 +9601 51303 0.5600 +9601 51726 0.9860 +9601 54431 0.6490 +9601 54575 0.4050 +9601 54576 0.4050 +9601 54577 0.4050 +9601 54578 0.4310 +9601 54657 0.4050 +9601 54658 0.4220 +9601 54788 0.4020 +9601 55176 0.4680 +9601 55237 0.4420 +9601 55741 0.5930 +9601 55757 0.6800 +9601 55831 0.6320 +9601 56605 0.9840 +9601 56851 0.6160 +9601 56886 0.8400 +9601 60681 0.4190 +9601 64167 0.4840 +9601 64374 0.5210 +9601 64714 0.6960 +9601 79174 0.8190 +9601 80267 0.7090 +9601 81567 0.6750 +9601 84061 0.4720 +9601 84617 0.4120 +9601 91319 0.6270 +9601 121506 0.5120 +9601 125972 0.6610 +9601 134359 0.5470 +9601 201595 0.4880 +9601 203068 0.4720 +9601 339416 0.5410 +9603 9817 0.6630 +9603 9978 0.4030 +9603 23764 0.8440 +9603 26031 0.4520 +9603 51371 0.4440 +9603 55922 0.5890 +9603 60468 0.4390 +9603 79661 0.4460 +9603 80344 0.4200 +9603 84181 0.4390 +9603 84301 0.4840 +9603 114880 0.4500 +9603 252969 0.5330 +9603 494513 0.4090 +9604 10193 0.4790 +9604 10432 0.4910 +9604 10477 0.5400 +9604 10499 0.6120 +9604 23708 0.4210 +9604 51128 0.4170 +9604 51327 0.4420 +9604 51444 0.4060 +9604 51619 0.5600 +9604 54476 0.6290 +9604 55269 0.4890 +9604 80762 0.4620 +9604 153222 0.4390 +9604 100526737 0.5120 +9604 122513141 0.8150 +9605 9798 0.4140 +9605 10212 0.5690 +9605 11128 0.4290 +9605 23363 0.4470 +9605 26130 0.4460 +9605 54849 0.4490 +9605 55329 0.4050 +9605 56902 0.4550 +9605 57455 0.4230 +9605 57561 0.4270 +9605 79007 0.5120 +9605 84901 0.4490 +9605 89795 0.6100 +9605 92822 0.6940 +9605 113878 0.5030 +9605 124044 0.7970 +9605 222256 0.4290 +9605 373863 0.4330 +9607 10455 0.9790 +9607 22982 0.4120 +9607 23373 0.5440 +9607 26275 0.6360 +9607 26996 0.5470 +9607 27034 0.5100 +9607 27344 0.4040 +9607 28976 0.5020 +9607 51052 0.4710 +9607 51083 0.6430 +9607 51084 0.8670 +9607 51738 0.7200 +9607 54112 0.5180 +9607 54988 0.4480 +9607 55268 0.6360 +9607 55289 0.5130 +9607 55862 0.6850 +9607 55902 0.4650 +9607 57084 0.5320 +9607 64064 0.5530 +9607 64087 0.4920 +9607 65985 0.4500 +9607 79611 0.4650 +9607 79777 0.4640 +9607 80221 0.4380 +9607 84263 0.8920 +9607 84320 0.4640 +9607 84532 0.4650 +9607 91452 0.4640 +9607 116285 0.4480 +9607 123876 0.4480 +9607 124359 0.6360 +9607 140679 0.5560 +9607 140689 0.4090 +9607 140856 0.5250 +9607 253175 0.6360 +9607 284422 0.5300 +9607 341392 0.4480 +9607 347148 0.4180 +9607 348158 0.4480 +9607 414149 0.5200 +9607 109703458 0.5130 +9607 122405565 0.5300 +9609 9648 0.6720 +9609 9779 0.4710 +9609 9905 0.4850 +9609 10466 0.5890 +9609 10497 0.4300 +9609 10890 0.4970 +9609 22796 0.5820 +9609 23102 0.4340 +9609 23258 0.4170 +9609 23339 0.5120 +9609 23527 0.4170 +9609 23637 0.6130 +9609 25839 0.6110 +9609 26276 0.5440 +9609 27156 0.9830 +9609 27314 0.5710 +9609 51763 0.4020 +9609 54734 0.6280 +9609 55275 0.5230 +9609 55686 0.4180 +9609 55737 0.4120 +9609 57511 0.8010 +9609 57553 0.4250 +9609 57589 0.5930 +9609 65082 0.5440 +9609 79083 0.4460 +9609 79778 0.4250 +9609 83547 0.6560 +9609 83548 0.6250 +9609 85377 0.6850 +9609 91949 0.5460 +9609 129049 0.5640 +9609 196383 0.7310 +9609 347517 0.5820 +9609 647310 0.4390 +9610 9712 0.4370 +9610 9927 0.4740 +9610 10000 0.4260 +9610 10254 0.8050 +9610 11031 0.4160 +9610 22800 0.9810 +9610 22808 0.9200 +9610 23294 0.7900 +9610 26130 0.8090 +9610 30012 0.4240 +9610 54453 0.5170 +9610 55353 0.4400 +9610 56899 0.6270 +9610 57679 0.7540 +9610 65059 0.4440 +9610 79890 0.7280 +9610 83593 0.4900 +9610 121278 0.4260 +9610 126432 0.5250 +9610 259173 0.6470 +9611 9612 0.9980 +9611 9666 0.6200 +9611 9682 0.9300 +9611 9734 0.9720 +9611 9759 0.9990 +9611 9794 0.7620 +9611 9862 0.5170 +9611 9869 0.4220 +9611 9967 0.6270 +9611 9968 0.7590 +9611 9969 0.6540 +9611 9970 0.6960 +9611 9971 0.9830 +9611 9975 0.9920 +9611 9991 0.5460 +9611 10001 0.5430 +9611 10002 0.6180 +9611 10009 0.9470 +9611 10011 0.4570 +9611 10013 0.7820 +9611 10014 0.9790 +9611 10025 0.5270 +9611 10042 0.6810 +9611 10046 0.4990 +9611 10062 0.9090 +9611 10155 0.8930 +9611 10210 0.4640 +9611 10284 0.5680 +9611 10291 0.6520 +9611 10322 0.6330 +9611 10419 0.5220 +9611 10438 0.7600 +9611 10474 0.8290 +9611 10498 0.7260 +9611 10499 0.9000 +9611 10521 0.4120 +9611 10524 0.7200 +9611 10587 0.6610 +9611 10614 0.7090 +9611 10629 0.5700 +9611 10664 0.8980 +9611 10765 0.4330 +9611 10771 0.6430 +9611 10773 0.4050 +9611 10847 0.6100 +9611 10891 0.7790 +9611 10919 0.4600 +9611 10951 0.4820 +9611 11091 0.6260 +9611 11177 0.4520 +9611 11337 0.4750 +9611 22933 0.4490 +9611 22938 0.7890 +9611 22976 0.5650 +9611 23013 0.8980 +9611 23020 0.4210 +9611 23028 0.8310 +9611 23030 0.4290 +9611 23036 0.4390 +9611 23054 0.7940 +9611 23097 0.5450 +9611 23118 0.9990 +9611 23186 0.9760 +9611 23309 0.9320 +9611 23326 0.5810 +9611 23381 0.5540 +9611 23389 0.6440 +9611 23411 0.9960 +9611 23451 0.6110 +9611 23462 0.4850 +9611 23476 0.5740 +9611 23493 0.6110 +9611 23512 0.7500 +9611 23598 0.7260 +9611 25909 0.4060 +9611 25942 0.9990 +9611 26993 0.4470 +9611 27097 0.6340 +9611 27185 0.5020 +9611 27327 0.4260 +9611 27443 0.5320 +9611 29072 0.5340 +9611 29079 0.6830 +9611 29115 0.5670 +9611 29123 0.4920 +9611 29959 0.5040 +9611 29982 0.5530 +9611 51003 0.5040 +9611 51129 0.7150 +9611 51176 0.4650 +9611 51341 0.8230 +9611 51564 0.9590 +9611 51586 0.5860 +9611 51616 0.6310 +9611 53335 0.5120 +9611 53635 0.4030 +9611 54145 0.5620 +9611 54778 0.5660 +9611 54797 0.5140 +9611 54880 0.5180 +9611 55090 0.5070 +9611 55193 0.4480 +9611 55534 0.5920 +9611 55578 0.5440 +9611 55588 0.4990 +9611 55766 0.5060 +9611 55814 0.8630 +9611 55869 0.8210 +9611 55904 0.8000 +9611 55929 0.5460 +9611 56254 0.4130 +9611 56943 0.6840 +9611 56970 0.5930 +9611 57473 0.4310 +9611 57492 0.5180 +9611 57504 0.6250 +9611 57585 0.4100 +9611 57634 0.4230 +9611 58508 0.8300 +9611 58517 0.4240 +9611 60468 0.8900 +9611 63976 0.5870 +9611 64324 0.4260 +9611 64750 0.5420 +9611 64783 0.7390 +9611 79084 0.4070 +9611 79447 0.4990 +9611 79718 0.9990 +9611 79813 0.6480 +9611 79885 0.8640 +9611 80205 0.6810 +9611 80306 0.5040 +9611 80712 0.4180 +9611 80764 0.7600 +9611 81857 0.6340 +9611 83933 0.7350 +9611 84101 0.7670 +9611 84106 0.7460 +9611 84181 0.4090 +9611 84246 0.4990 +9611 84312 0.4800 +9611 84441 0.5880 +9611 84456 0.4070 +9611 84458 0.4830 +9611 84498 0.5200 +9611 84962 0.8170 +9611 85235 0.4080 +9611 85236 0.5650 +9611 85441 0.5850 +9611 90390 0.5630 +9611 90665 0.9980 +9611 92552 0.5760 +9611 92815 0.4080 +9611 93624 0.5470 +9611 94239 0.5450 +9611 96764 0.5510 +9611 112869 0.6260 +9611 112950 0.5030 +9611 117154 0.4670 +9611 126382 0.5700 +9611 127002 0.5350 +9611 128312 0.5620 +9611 135112 0.5280 +9611 158880 0.5550 +9611 200958 0.4030 +9611 221037 0.4310 +9611 221613 0.4080 +9611 221937 0.5120 +9611 222255 0.5330 +9611 255626 0.5630 +9611 255877 0.5610 +9611 283248 0.6360 +9611 317772 0.4130 +9611 359948 0.8480 +9611 387332 0.4980 +9611 389856 0.5590 +9611 400569 0.5500 +9611 440093 0.7140 +9611 440686 0.7080 +9611 440689 0.4790 +9611 474382 0.5060 +9611 642623 0.4570 +9611 653604 0.8520 +9612 9656 0.4460 +9612 9682 0.4610 +9612 9734 0.9160 +9612 9739 0.4140 +9612 9757 0.4190 +9612 9759 0.9990 +9612 9794 0.7070 +9612 9862 0.5250 +9612 9967 0.5840 +9612 9968 0.6050 +9612 9969 0.5700 +9612 9970 0.6490 +9612 9971 0.8080 +9612 9975 0.8480 +9612 9989 0.4390 +9612 10001 0.5050 +9612 10002 0.5800 +9612 10009 0.7180 +9612 10011 0.4080 +9612 10013 0.7790 +9612 10014 0.9440 +9612 10025 0.5490 +9612 10046 0.4990 +9612 10062 0.8110 +9612 10084 0.5380 +9612 10238 0.7980 +9612 10320 0.4690 +9612 10401 0.4080 +9612 10438 0.4050 +9612 10474 0.8100 +9612 10498 0.7450 +9612 10499 0.8770 +9612 10629 0.5760 +9612 10891 0.7060 +9612 10951 0.4880 +9612 11317 0.9290 +9612 11331 0.7140 +9612 22938 0.9170 +9612 23013 0.9750 +9612 23028 0.4930 +9612 23054 0.8470 +9612 23097 0.5270 +9612 23118 0.4250 +9612 23135 0.5870 +9612 23152 0.6710 +9612 23186 0.7390 +9612 23309 0.8150 +9612 23326 0.5460 +9612 23335 0.8560 +9612 23345 0.4330 +9612 23389 0.5750 +9612 23411 0.7000 +9612 23476 0.5200 +9612 23512 0.5360 +9612 25865 0.4240 +9612 25942 0.9990 +9612 27097 0.6310 +9612 27443 0.5210 +9612 29079 0.5970 +9612 29959 0.5000 +9612 29978 0.4030 +9612 29982 0.5640 +9612 51003 0.4990 +9612 51129 0.5800 +9612 51341 0.7730 +9612 51564 0.9300 +9612 51586 0.5810 +9612 51616 0.6310 +9612 53635 0.5210 +9612 54778 0.5060 +9612 54797 0.5000 +9612 54880 0.6420 +9612 55023 0.5840 +9612 55090 0.4990 +9612 55534 0.6900 +9612 55578 0.5100 +9612 55588 0.5040 +9612 55814 0.4530 +9612 55869 0.8820 +9612 55904 0.7960 +9612 56893 0.4580 +9612 56943 0.6580 +9612 56970 0.5820 +9612 57504 0.5620 +9612 58508 0.6010 +9612 60468 0.8510 +9612 64750 0.5200 +9612 64783 0.8530 +9612 79685 0.8080 +9612 79718 0.9890 +9612 79885 0.8310 +9612 79923 0.4150 +9612 80205 0.5830 +9612 80306 0.4990 +9612 81857 0.6230 +9612 83933 0.9650 +9612 84101 0.7200 +9612 84106 0.8450 +9612 84246 0.5200 +9612 84441 0.6830 +9612 84498 0.5120 +9612 84991 0.4320 +9612 85235 0.4080 +9612 85236 0.4470 +9612 85441 0.5500 +9612 90390 0.5010 +9612 90665 0.9910 +9612 91833 0.4910 +9612 92815 0.4340 +9612 93624 0.4990 +9612 96764 0.5540 +9612 112869 0.5880 +9612 112950 0.4990 +9612 126382 0.5400 +9612 127002 0.5260 +9612 128312 0.4550 +9612 135112 0.5350 +9612 158880 0.5310 +9612 221613 0.4080 +9612 222255 0.5260 +9612 254065 0.5830 +9612 255626 0.4480 +9612 283248 0.6500 +9612 317772 0.4080 +9612 342371 0.7750 +9612 359948 0.6010 +9612 387332 0.4980 +9612 389856 0.5310 +9612 400569 0.5030 +9612 440093 0.6990 +9612 440686 0.6990 +9612 440689 0.4530 +9612 653604 0.8110 +9615 9722 0.4580 +9615 9836 0.4940 +9615 10841 0.4150 +9615 10963 0.7080 +9615 23557 0.6210 +9615 29085 0.4010 +9615 56952 0.4500 +9615 84126 0.6120 +9615 122622 0.4650 +9615 133482 0.4240 +9615 139596 0.9000 +9615 151531 0.7570 +9616 9655 0.8290 +9616 9978 0.9710 +9616 10190 0.4050 +9616 10245 0.4050 +9616 10393 0.5000 +9616 10425 0.9850 +9616 10489 0.6540 +9616 10920 0.4880 +9616 10966 0.6460 +9616 10987 0.5730 +9616 11065 0.9060 +9616 11146 0.4690 +9616 23113 0.6430 +9616 23142 0.4720 +9616 23412 0.5550 +9616 23492 0.5680 +9616 25793 0.4190 +9616 25847 0.4200 +9616 25906 0.4090 +9616 26118 0.7650 +9616 26190 0.4070 +9616 26227 0.6540 +9616 26259 0.5500 +9616 27338 0.9520 +9616 27350 0.8000 +9616 28952 0.5070 +9616 28991 0.5360 +9616 29099 0.5440 +9616 29882 0.5640 +9616 30837 0.7240 +9616 51122 0.5740 +9616 51138 0.5080 +9616 51224 0.5410 +9616 51343 0.5770 +9616 51371 0.4090 +9616 51397 0.5090 +9616 51433 0.4040 +9616 51434 0.4050 +9616 51514 0.4970 +9616 51529 0.9250 +9616 51665 0.8680 +9616 51666 0.9430 +9616 51676 0.9560 +9616 54165 0.7930 +9616 54778 0.5300 +9616 54939 0.5070 +9616 54951 0.5580 +9616 55208 0.4960 +9616 55234 0.4540 +9616 55251 0.4630 +9616 55294 0.5600 +9616 55832 0.8560 +9616 55884 0.7510 +9616 55914 0.4460 +9616 56995 0.5640 +9616 57799 0.6200 +9616 59286 0.5270 +9616 60489 0.8910 +9616 63931 0.6190 +9616 64682 0.4360 +9616 64708 0.4490 +9616 79184 0.4580 +9616 79754 0.6680 +9616 80176 0.6580 +9616 81618 0.4200 +9616 81620 0.5340 +9616 81689 0.5540 +9616 84231 0.4520 +9616 84232 0.4120 +9616 84259 0.5620 +9616 84727 0.7160 +9616 90864 0.6270 +9616 92369 0.7660 +9616 92591 0.4320 +9616 119504 0.4580 +9616 122416 0.9160 +9616 122773 0.9110 +9616 122809 0.8550 +9616 122961 0.4700 +9616 123228 0.5000 +9616 123879 0.5390 +9616 127247 0.5130 +9616 136371 0.6020 +9616 140456 0.6890 +9616 140458 0.4520 +9616 140459 0.8720 +9616 140460 0.8380 +9616 140461 0.5480 +9616 140462 0.6850 +9616 140564 0.4990 +9616 140739 0.9980 +9616 140825 0.4990 +9616 142685 0.5270 +9616 142686 0.4810 +9616 142689 0.7770 +9616 143384 0.6670 +9616 149951 0.5090 +9616 150684 0.6030 +9616 164668 0.8270 +9616 170622 0.5260 +9616 200315 0.7040 +9616 200316 0.8880 +9616 246184 0.5080 +9616 401036 0.5920 +9617 9669 0.5190 +9617 9801 0.6940 +9617 9858 0.4920 +9617 10102 0.5060 +9617 10240 0.8020 +9617 10542 0.4690 +9617 10573 0.4820 +9617 10884 0.5680 +9617 11019 0.4800 +9617 11193 0.6170 +9617 11222 0.5150 +9617 11224 0.6190 +9617 11232 0.5130 +9617 23078 0.6310 +9617 23107 0.5150 +9617 23252 0.4250 +9617 23521 0.5300 +9617 23640 0.4250 +9617 25973 0.4780 +9617 26164 0.4570 +9617 26589 0.4900 +9617 28957 0.4740 +9617 28973 0.5640 +9617 28977 0.5520 +9617 28998 0.7250 +9617 29063 0.5310 +9617 29074 0.4770 +9617 29088 0.5260 +9617 29093 0.5490 +9617 29104 0.8740 +9617 29789 0.6350 +9617 51021 0.7560 +9617 51023 0.4930 +9617 51067 0.5710 +9617 51069 0.4990 +9617 51073 0.6050 +9617 51081 0.7970 +9617 51106 0.4980 +9617 51116 0.6300 +9617 51121 0.4710 +9617 51149 0.5760 +9617 51154 0.5280 +9617 51204 0.4880 +9617 51258 0.5020 +9617 51264 0.7200 +9617 51318 0.7120 +9617 51373 0.4500 +9617 51409 0.9400 +9617 51642 0.5750 +9617 51649 0.5490 +9617 51650 0.5300 +9617 51654 0.4030 +9617 54148 0.6430 +9617 54460 0.4490 +9617 54482 0.4630 +9617 54534 0.4870 +9617 54901 0.4270 +9617 54948 0.5510 +9617 54998 0.4360 +9617 55005 0.4370 +9617 55037 0.7030 +9617 55052 0.7860 +9617 55157 0.4230 +9617 55173 0.6970 +9617 55272 0.5360 +9617 55316 0.5870 +9617 55471 0.6180 +9617 56945 0.5970 +9617 57038 0.5090 +9617 57129 0.5910 +9617 57136 0.4530 +9617 57505 0.4010 +9617 60488 0.4860 +9617 60558 0.7070 +9617 63875 0.7190 +9617 63931 0.5350 +9617 64216 0.4250 +9617 64374 0.4250 +9617 64432 0.5020 +9617 64928 0.4830 +9617 64949 0.4600 +9617 64951 0.4670 +9617 64960 0.5410 +9617 64963 0.8240 +9617 64965 0.7500 +9617 64968 0.7250 +9617 64969 0.6000 +9617 64975 0.4950 +9617 64976 0.5720 +9617 64979 0.7350 +9617 64981 0.4420 +9617 64983 0.6790 +9617 65003 0.5170 +9617 65005 0.7860 +9617 65008 0.6750 +9617 65080 0.6480 +9617 78988 0.4400 +9617 79133 0.4050 +9617 79590 0.6120 +9617 79612 0.4910 +9617 84311 0.5850 +9617 84340 0.8610 +9617 84545 0.4620 +9617 85476 0.6690 +9617 85865 0.4330 +9617 87178 0.5440 +9617 90480 0.4790 +9617 92399 0.7730 +9617 118487 0.4700 +9617 122704 0.5020 +9617 124454 0.4520 +9617 124995 0.5040 +9617 126402 0.5650 +9617 128308 0.5020 +9617 140801 0.4250 +9617 219402 0.6840 +9617 219927 0.7360 +9617 285521 0.4080 +9617 285855 0.4020 +9617 347487 0.4920 +9617 374659 0.4500 +9617 387129 0.4020 +9617 100287482 0.4920 +9617 100505478 0.4020 +9617 100526842 0.5020 +9618 9915 0.4370 +9618 9958 0.6070 +9618 10006 0.5480 +9618 10392 0.4080 +9618 10419 0.5570 +9618 10567 0.4090 +9618 10573 0.5220 +9618 10589 0.4130 +9618 23048 0.6470 +9618 23098 0.4260 +9618 23765 0.7770 +9618 25821 0.7860 +9618 27242 0.5470 +9618 29882 0.4180 +9618 51035 0.4100 +9618 51135 0.4950 +9618 51206 0.6940 +9618 51438 0.5390 +9618 51477 0.6280 +9618 55611 0.4600 +9618 57154 0.7170 +9618 63893 0.4070 +9618 64127 0.8470 +9618 64170 0.5150 +9618 64750 0.6430 +9618 84708 0.5180 +9618 84818 0.5970 +9618 164153 0.6680 +9618 378807 0.5960 +9618 653361 0.9670 +9619 9682 0.5210 +9619 9971 0.4880 +9619 10057 0.5560 +9619 10062 0.9320 +9619 10257 0.5910 +9619 10347 0.4020 +9619 10476 0.4090 +9619 10577 0.4710 +9619 10785 0.4670 +9619 10858 0.6490 +9619 22937 0.5410 +9619 23028 0.5490 +9619 29116 0.7570 +9619 29881 0.6410 +9619 54677 0.5600 +9619 55143 0.4650 +9619 55324 0.4130 +9619 55818 0.5340 +9619 55937 0.4250 +9619 57552 0.4810 +9619 58494 0.4240 +9619 64240 0.6040 +9619 89845 0.4470 +9619 162466 0.5180 +9619 221656 0.5380 +9619 255738 0.5650 +9620 9826 0.7660 +9620 10076 0.5660 +9620 10427 0.4330 +9620 22881 0.6320 +9620 23002 0.7250 +9620 23513 0.8110 +9620 23774 0.4290 +9620 27130 0.4950 +9620 27152 0.6150 +9620 27253 0.4320 +9620 29964 0.7760 +9620 51339 0.5240 +9620 54621 0.4250 +9620 55687 0.4160 +9620 57216 0.9750 +9620 57619 0.6130 +9620 57822 0.4220 +9620 81839 0.9630 +9620 144165 0.7880 +9620 166336 0.7820 +9622 9679 0.4440 +9622 10117 0.8360 +9622 11005 0.8690 +9622 26504 0.5000 +9622 27180 0.5660 +9622 51056 0.6450 +9622 51279 0.4810 +9622 54757 0.4610 +9622 54959 0.6660 +9622 56955 0.4080 +9622 56975 0.4090 +9622 59272 0.5990 +9622 64386 0.8070 +9622 80333 0.6870 +9622 84258 0.6010 +9622 93650 0.6760 +9622 123041 0.5020 +9622 152816 0.6430 +9622 158248 0.4010 +9622 256764 0.8620 +9622 286077 0.6700 +9622 388698 0.5580 +9622 401138 0.7630 +9622 404203 0.7230 +9622 448831 0.4240 +9622 643394 0.4650 +9623 9862 0.6280 +9623 9969 0.6980 +9623 10000 0.9180 +9623 10724 0.4430 +9623 11234 0.6090 +9623 22926 0.4240 +9623 23081 0.5470 +9623 23235 0.5470 +9623 29079 0.6010 +9623 55211 0.4130 +9623 55588 0.6270 +9623 55818 0.5470 +9623 57167 0.4590 +9623 63978 0.6470 +9623 64784 0.4910 +9623 79803 0.5990 +9623 79923 0.5530 +9623 80306 0.6690 +9623 84246 0.6260 +9623 84343 0.5400 +9623 112950 0.6840 +9623 132625 0.4810 +9623 170482 0.5430 +9623 200186 0.4310 +9623 260425 0.4200 +9623 359787 0.4710 +9623 102723407 0.6100 +9625 23061 0.4320 +9625 91663 0.4120 +9625 388428 0.4510 +9626 10002 0.4780 +9626 10461 0.5260 +9626 23322 0.6010 +9626 23582 0.4080 +9626 23746 0.5760 +9626 25769 0.4800 +9626 51806 0.4500 +9626 54714 0.5070 +9626 56344 0.4170 +9626 57096 0.5650 +9626 60558 0.5240 +9626 63906 0.4410 +9626 83733 0.7600 +9626 91860 0.4320 +9626 163688 0.4350 +9626 197335 0.4300 +9626 343035 0.5490 +9626 728458 0.5020 +9627 10013 0.4810 +9627 10273 0.6510 +9627 10935 0.5570 +9627 11315 0.7050 +9627 23208 0.6560 +9627 23400 0.4460 +9627 23640 0.4840 +9627 25793 0.4040 +9627 25820 0.5220 +9627 25897 0.7350 +9627 51465 0.4130 +9627 51504 0.4590 +9627 51667 0.7280 +9627 51762 0.6140 +9627 51806 0.4820 +9627 53349 0.4920 +9627 55709 0.4660 +9627 65018 0.7570 +9627 80851 0.4150 +9627 91860 0.4730 +9627 92552 0.4050 +9627 93166 0.4560 +9627 120892 0.7060 +9627 135138 0.5290 +9627 163688 0.4730 +9627 246744 0.4240 +9628 9826 0.7620 +9628 10287 0.6010 +9628 10574 0.4990 +9628 10575 0.4990 +9628 10576 0.5070 +9628 10636 0.6540 +9628 10672 0.7980 +9628 10681 0.9990 +9628 10693 0.4990 +9628 10694 0.4990 +9628 11075 0.4600 +9628 11216 0.6760 +9628 22948 0.5120 +9628 23161 0.5150 +9628 23236 0.6100 +9628 23365 0.5960 +9628 23557 0.4690 +9628 26499 0.7480 +9628 26575 0.5960 +9628 51573 0.4730 +9628 51764 0.5390 +9628 54331 0.7360 +9628 55929 0.7250 +9628 55970 0.5590 +9628 57231 0.4450 +9628 59345 0.7750 +9628 60626 0.5680 +9628 64407 0.5670 +9628 85397 0.5990 +9628 94235 0.5180 +9628 115557 0.6370 +9628 116443 0.4550 +9628 131890 0.4120 +9628 345193 0.4070 +9628 346562 0.7010 +9628 353299 0.7620 +9628 388531 0.8870 +9628 401190 0.9510 +9628 431704 0.5400 +9630 10287 0.6260 +9630 10672 0.6030 +9630 10681 0.8560 +9630 10800 0.6820 +9630 23236 0.9470 +9630 26575 0.6170 +9630 29968 0.4340 +9630 51764 0.7600 +9630 54331 0.7470 +9630 55188 0.5000 +9630 55970 0.7270 +9630 56413 0.7230 +9630 56940 0.4040 +9630 57105 0.7190 +9630 59340 0.4590 +9630 59345 0.8460 +9630 60626 0.6450 +9630 64407 0.6090 +9630 80834 0.5020 +9630 80835 0.4790 +9630 83756 0.6850 +9630 85397 0.5240 +9630 94235 0.7340 +9630 115557 0.7120 +9630 158158 0.4070 +9630 346562 0.5910 +9630 431704 0.6400 +9630 105372280 0.7100 +9631 9648 0.5140 +9631 9688 0.9990 +9631 9735 0.4160 +9631 9759 0.9660 +9631 9775 0.5710 +9631 9785 0.4450 +9631 9818 0.9970 +9631 9862 0.6230 +9631 9877 0.4100 +9631 9883 0.9480 +9631 9928 0.4130 +9631 9939 0.5210 +9631 9972 0.9960 +9631 9984 0.5100 +9631 9992 0.5520 +9631 10051 0.4900 +9631 10073 0.4270 +9631 10112 0.4530 +9631 10146 0.4010 +9631 10189 0.6490 +9631 10204 0.4340 +9631 10250 0.5600 +9631 10482 0.8030 +9631 10526 0.6120 +9631 10527 0.5890 +9631 10569 0.4040 +9631 10762 0.9670 +9631 10783 0.4190 +9631 10898 0.4130 +9631 10921 0.5300 +9631 11052 0.5390 +9631 11097 0.9120 +9631 11218 0.5320 +9631 11260 0.6960 +9631 11338 0.4100 +9631 22794 0.5040 +9631 22824 0.4710 +9631 22916 0.5130 +9631 22982 0.5410 +9631 23165 0.9990 +9631 23181 0.5450 +9631 23225 0.9910 +9631 23279 0.9940 +9631 23353 0.4270 +9631 23511 0.9990 +9631 23534 0.6310 +9631 23630 0.4880 +9631 23636 0.9970 +9631 25836 0.7990 +9631 25885 0.4480 +9631 25909 0.9870 +9631 25926 0.4170 +9631 25929 0.4860 +9631 26097 0.4220 +9631 26953 0.4270 +9631 27161 0.4250 +9631 27340 0.4500 +9631 29107 0.6430 +9631 29894 0.4510 +9631 50628 0.4920 +9631 51182 0.4750 +9631 51362 0.4250 +9631 51388 0.4010 +9631 51501 0.5820 +9631 51692 0.5020 +9631 51808 0.4480 +9631 53371 0.9990 +9631 53981 0.6120 +9631 54596 0.6470 +9631 54801 0.4100 +9631 54830 0.8740 +9631 55010 0.5300 +9631 55100 0.9440 +9631 55110 0.5680 +9631 55143 0.5510 +9631 55161 0.4140 +9631 55301 0.6200 +9631 55339 0.4230 +9631 55706 0.9920 +9631 55746 0.9980 +9631 55800 0.4450 +9631 57122 0.9990 +9631 57187 0.5030 +9631 57510 0.4030 +9631 57609 0.5470 +9631 57727 0.7690 +9631 63892 0.4040 +9631 65109 0.5190 +9631 65250 0.9350 +9631 79023 0.9860 +9631 79228 0.4260 +9631 79760 0.4100 +9631 79833 0.4250 +9631 79902 0.9980 +9631 80145 0.4860 +9631 80155 0.5360 +9631 80221 0.5410 +9631 81608 0.4130 +9631 81929 0.9990 +9631 84220 0.5280 +9631 84248 0.4100 +9631 84271 0.6000 +9631 84321 0.5020 +9631 84324 0.4390 +9631 84955 0.6430 +9631 85313 0.4530 +9631 90381 0.4890 +9631 91181 0.4960 +9631 91408 0.7740 +9631 91754 0.4270 +9631 129401 0.9990 +9631 140609 0.4030 +9631 148304 0.4400 +9631 157869 0.6200 +9631 197322 0.6230 +9631 253714 0.5610 +9631 283987 0.5750 +9631 348995 0.9940 +9631 375035 0.4490 +9631 376497 0.6250 +9631 389170 0.4310 +9631 653489 0.5140 +9631 728343 0.5760 +9631 729540 0.5070 +9631 729857 0.7300 +9631 100101267 0.9060 +9632 9777 0.7870 +9632 9785 0.4240 +9632 9871 0.9890 +9632 9898 0.5310 +9632 9919 0.9990 +9632 9972 0.4210 +9632 10011 0.6150 +9632 10016 0.9220 +9632 10113 0.8680 +9632 10175 0.5950 +9632 10282 0.7350 +9632 10342 0.7120 +9632 10427 0.9710 +9632 10483 0.9990 +9632 10484 0.9980 +9632 10652 0.6660 +9632 10802 0.9950 +9632 10959 0.7080 +9632 10960 0.6300 +9632 10972 0.6210 +9632 10985 0.4870 +9632 11052 0.4080 +9632 11060 0.5400 +9632 11196 0.7370 +9632 11254 0.5280 +9632 22820 0.8310 +9632 22870 0.4550 +9632 22872 0.9950 +9632 22937 0.7050 +9632 23070 0.4350 +9632 23075 0.4990 +9632 23163 0.4490 +9632 23243 0.4170 +9632 23256 0.5820 +9632 23339 0.6200 +9632 23381 0.5350 +9632 23644 0.5380 +9632 24144 0.4140 +9632 25956 0.9640 +9632 26003 0.4300 +9632 26133 0.5400 +9632 26984 0.5870 +9632 27044 0.5050 +9632 27095 0.5910 +9632 29927 0.6060 +9632 30011 0.4210 +9632 51014 0.9030 +9632 51128 0.8440 +9632 51399 0.7030 +9632 51586 0.4600 +9632 51693 0.5910 +9632 54221 0.4950 +9632 54463 0.5090 +9632 54976 0.5970 +9632 55014 0.5920 +9632 55291 0.4890 +9632 55845 0.4540 +9632 56681 0.9920 +9632 57410 0.4130 +9632 57608 0.4320 +9632 58485 0.5560 +9632 59349 0.9480 +9632 60626 0.4670 +9632 63908 0.5460 +9632 64083 0.8510 +9632 64422 0.4280 +9632 64689 0.7800 +9632 64764 0.4380 +9632 79090 0.5560 +9632 79748 0.5530 +9632 79869 0.4830 +9632 80856 0.5640 +9632 81562 0.5590 +9632 81876 0.7000 +9632 89866 0.9220 +9632 90411 0.6820 +9632 91369 0.4040 +9632 122553 0.5550 +9632 126003 0.6340 +9632 133619 0.7280 +9632 149111 0.5620 +9632 254263 0.5620 +9632 375056 0.8150 +9632 553115 0.9290 +9633 10430 0.5330 +9633 24149 0.4280 +9633 27095 0.4590 +9633 51693 0.4760 +9633 55124 0.4270 +9633 55262 0.4200 +9633 55957 0.6650 +9633 64799 0.4590 +9633 84942 0.4640 +9633 91750 0.6820 +9633 92345 0.5830 +9633 126003 0.4820 +9633 286826 0.7460 +9635 22802 0.9170 +9635 23507 0.5770 +9635 27304 0.4050 +9635 50636 0.4800 +9635 51806 0.4800 +9635 53836 0.4040 +9635 54102 0.4020 +9635 54831 0.5880 +9635 55107 0.9260 +9635 55129 0.6010 +9635 55144 0.4790 +9635 56262 0.5110 +9635 57101 0.9730 +9635 63982 0.4730 +9635 80131 0.5060 +9635 84230 0.5040 +9635 84530 0.4090 +9635 118430 0.4020 +9635 121601 0.4320 +9635 144110 0.4710 +9635 144453 0.4430 +9635 196527 0.6570 +9635 203859 0.5450 +9635 219736 0.4330 +9635 338440 0.4790 +9635 344752 0.4630 +9635 645191 0.4030 +9636 9641 0.6140 +9636 9677 0.4200 +9636 9732 0.4960 +9636 9739 0.4760 +9636 9768 0.5700 +9636 9830 0.4160 +9636 9960 0.4160 +9636 9997 0.4080 +9636 10010 0.4600 +9636 10013 0.9190 +9636 10044 0.8310 +9636 10045 0.5390 +9636 10054 0.4060 +9636 10208 0.4880 +9636 10250 0.4070 +9636 10346 0.7080 +9636 10376 0.4270 +9636 10379 0.9910 +9636 10399 0.7890 +9636 10410 0.9110 +9636 10537 0.7850 +9636 10561 0.9640 +9636 10581 0.6760 +9636 10590 0.4690 +9636 10602 0.5320 +9636 10616 0.4170 +9636 10673 0.4040 +9636 10714 0.5670 +9636 10964 0.9630 +9636 10987 0.4690 +9636 11047 0.5050 +9636 11201 0.5850 +9636 11224 0.6060 +9636 11274 0.9990 +9636 11345 0.5990 +9636 22992 0.5290 +9636 23067 0.4530 +9636 23521 0.5840 +9636 23586 0.9990 +9636 23710 0.5910 +9636 24138 0.8170 +9636 25820 0.7010 +9636 25873 0.6560 +9636 25893 0.6260 +9636 25939 0.7780 +9636 26007 0.5750 +9636 26010 0.4530 +9636 27005 0.4530 +9636 27338 0.4170 +9636 28998 0.4780 +9636 29110 0.6990 +9636 29761 0.4240 +9636 50852 0.4910 +9636 51056 0.5120 +9636 51062 0.5490 +9636 51065 0.7980 +9636 51069 0.4570 +9636 51081 0.5000 +9636 51121 0.5320 +9636 51131 0.4170 +9636 51149 0.4860 +9636 51154 0.5750 +9636 51191 0.9980 +9636 51284 0.6310 +9636 51311 0.6590 +9636 51319 0.4910 +9636 51426 0.5550 +9636 51434 0.4190 +9636 51455 0.5720 +9636 51510 0.5720 +9636 51569 0.6110 +9636 54106 0.5010 +9636 54107 0.5160 +9636 54505 0.5640 +9636 54625 0.7820 +9636 54739 0.8910 +9636 54809 0.7570 +9636 54941 0.6760 +9636 55008 0.9410 +9636 55173 0.4390 +9636 55236 0.5840 +9636 55272 0.4390 +9636 55316 0.5760 +9636 55337 0.5790 +9636 55367 0.4140 +9636 55601 0.9390 +9636 55611 0.6680 +9636 55666 0.4030 +9636 55768 0.4260 +9636 56655 0.5280 +9636 56829 0.5190 +9636 56832 0.4470 +9636 56943 0.4710 +9636 57506 0.8070 +9636 57674 0.5300 +9636 57804 0.5100 +9636 59272 0.4460 +9636 60489 0.4530 +9636 63931 0.4670 +9636 64108 0.8940 +9636 64127 0.4300 +9636 64135 0.9940 +9636 64761 0.8170 +9636 64963 0.7640 +9636 64969 0.4180 +9636 65008 0.4010 +9636 78990 0.4200 +9636 79132 0.9120 +9636 79590 0.4220 +9636 80143 0.4160 +9636 80755 0.4110 +9636 81030 0.5060 +9636 81554 0.5200 +9636 81605 0.5990 +9636 81844 0.4870 +9636 83473 0.4570 +9636 83597 0.4600 +9636 83666 0.8570 +9636 83939 0.5410 +9636 83982 0.4310 +9636 84231 0.5840 +9636 84282 0.4510 +9636 84678 0.5250 +9636 84875 0.4470 +9636 85363 0.5770 +9636 85441 0.8290 +9636 87178 0.4580 +9636 91543 0.9780 +9636 91607 0.4840 +9636 92521 0.5080 +9636 94240 0.7960 +9636 114987 0.5210 +9636 115004 0.6470 +9636 115361 0.5640 +9636 115362 0.5680 +9636 116071 0.4800 +9636 116832 0.4870 +9636 121504 0.5630 +9636 123228 0.4070 +9636 124739 0.5800 +9636 126364 0.5330 +9636 126402 0.4990 +9636 129607 0.7460 +9636 140032 0.7740 +9636 140801 0.4780 +9636 142678 0.4380 +9636 148022 0.5480 +9636 151636 0.5240 +9636 163702 0.6060 +9636 200916 0.5000 +9636 219285 0.6600 +9636 221302 0.6990 +9636 254268 0.4780 +9636 282616 0.6180 +9636 282617 0.6650 +9636 282618 0.7640 +9636 285855 0.4700 +9636 338376 0.4830 +9636 340061 0.4990 +9636 342667 0.4160 +9636 347487 0.4870 +9636 387082 0.4420 +9636 387129 0.4700 +9636 388646 0.5230 +9636 439996 0.5510 +9636 645051 0.4030 +9636 645073 0.4030 +9636 729396 0.4030 +9636 729422 0.4030 +9636 729428 0.4030 +9636 729431 0.4030 +9636 729442 0.4440 +9636 729447 0.4030 +9636 730249 0.4120 +9636 100008586 0.4030 +9636 100132399 0.4030 +9636 100526842 0.4890 +9636 100529097 0.5050 +9636 100529239 0.5090 +9636 100885850 0.4310 +9636 102724473 0.4030 +9637 11178 0.7940 +9637 22809 0.6680 +9637 22841 0.5250 +9637 22930 0.4130 +9637 25943 0.5830 +9637 25989 0.4270 +9637 51232 0.8940 +9637 55079 0.4340 +9637 55133 0.4760 +9637 55296 0.5630 +9637 57337 0.4650 +9637 60592 0.8870 +9637 79929 0.4070 +9637 84142 0.4020 +9637 146057 0.4640 +9637 221458 0.6170 +9638 9751 0.4180 +9638 9764 0.4720 +9638 9783 0.4440 +9638 10277 0.4090 +9638 10589 0.4470 +9638 11127 0.5440 +9638 22906 0.4630 +9638 23122 0.6010 +9638 23286 0.4680 +9638 23299 0.4530 +9638 27185 0.8100 +9638 51454 0.5500 +9638 55079 0.4480 +9638 55125 0.4330 +9638 55638 0.6220 +9638 60592 0.9450 +9638 63916 0.4220 +9638 64837 0.4790 +9638 66008 0.5030 +9638 79685 0.4530 +9638 79767 0.4330 +9638 81565 0.4520 +9638 84967 0.4070 +9638 89953 0.5080 +9638 147700 0.4780 +9638 389549 0.4620 +9639 9828 0.4800 +9639 10397 0.5080 +9639 10672 0.5160 +9639 22930 0.5300 +9639 23365 0.4900 +9639 26260 0.4660 +9639 54332 0.4320 +9639 55526 0.4410 +9639 57449 0.4370 +9639 64283 0.5340 +9639 79628 0.5050 +9639 81846 0.4870 +9639 84727 0.4520 +9639 90678 0.4370 +9639 139231 0.4060 +9639 157697 0.4050 +9639 169270 0.4080 +9639 256536 0.4240 +9639 375061 0.4010 +9639 100131827 0.4150 +9639 100271715 0.5120 +9640 9726 0.5310 +9640 9745 0.4900 +9640 9810 0.4610 +9640 9827 0.5310 +9640 23133 0.4570 +9640 23383 0.7240 +9640 23476 0.8280 +9640 23613 0.9880 +9640 26512 0.9940 +9640 29855 0.4560 +9640 51741 0.4750 +9640 53615 0.4360 +9640 54205 0.5010 +9640 54815 0.5990 +9640 54904 0.5020 +9640 55027 0.4390 +9640 55205 0.6140 +9640 55686 0.4150 +9640 57478 0.4140 +9640 57538 0.4790 +9640 57592 0.9240 +9640 57610 0.4520 +9640 65123 0.9940 +9640 79712 0.4620 +9640 80184 0.4110 +9640 80789 0.9940 +9640 84749 0.4170 +9640 84942 0.5070 +9640 121601 0.4380 +9640 143282 0.4330 +9640 146227 0.4280 +9640 256646 0.5290 +9640 342371 0.4980 +9640 100271715 0.4790 +9641 9755 0.9750 +9641 9759 0.6910 +9641 9825 0.5310 +9641 10010 0.9990 +9641 10044 0.6130 +9641 10045 0.5090 +9641 10146 0.4340 +9641 10193 0.4100 +9641 10210 0.6150 +9641 10241 0.4720 +9641 10244 0.4010 +9641 10318 0.5750 +9641 10379 0.5790 +9641 10392 0.4640 +9641 10413 0.4070 +9641 10454 0.6640 +9641 10475 0.4300 +9641 10537 0.4440 +9641 10616 0.6680 +9641 10758 0.6570 +9641 11140 0.6980 +9641 11213 0.4420 +9641 23118 0.7600 +9641 23586 0.9780 +9641 23643 0.6940 +9641 23765 0.5630 +9641 26994 0.4660 +9641 29110 0.9990 +9641 29927 0.4080 +9641 30835 0.5060 +9641 50852 0.4180 +9641 51284 0.6920 +9641 51311 0.6350 +9641 51428 0.4990 +9641 54106 0.7110 +9641 54941 0.4720 +9641 55072 0.6540 +9641 55593 0.7460 +9641 55770 0.6650 +9641 57162 0.4910 +9641 57407 0.4070 +9641 57506 0.9990 +9641 64127 0.4720 +9641 64135 0.9700 +9641 64332 0.4670 +9641 64343 0.9860 +9641 79132 0.7500 +9641 79671 0.4390 +9641 80143 0.9890 +9641 80149 0.5370 +9641 80342 0.5720 +9641 81030 0.9630 +9641 81858 0.6430 +9641 83593 0.4140 +9641 83737 0.5280 +9641 84282 0.7630 +9641 89122 0.6460 +9641 91543 0.4380 +9641 114548 0.4130 +9641 114609 0.6350 +9641 115004 0.6120 +9641 117854 0.6380 +9641 148022 0.9120 +9641 163702 0.4060 +9641 170506 0.4210 +9641 221302 0.4280 +9641 257397 0.7090 +9641 282618 0.4490 +9641 340061 0.9880 +9641 353376 0.7190 +9641 387332 0.4760 +9641 445372 0.4810 +9641 728378 0.4670 +9644 10097 0.5230 +9644 10298 0.4470 +9644 10811 0.7440 +9644 10966 0.6510 +9644 10971 0.4030 +9644 26073 0.6190 +9644 27035 0.7160 +9644 29895 0.4090 +9644 50508 0.7420 +9644 51306 0.5030 +9644 51429 0.6050 +9644 65065 0.4070 +9644 83660 0.6150 +9644 84320 0.4100 +9644 84632 0.4710 +9644 85477 0.5130 +9644 103910 0.4130 +9644 285590 0.4660 +9644 100527963 0.4010 +9645 10134 0.4740 +9645 10890 0.6290 +9645 51734 0.4830 +9645 51762 0.6740 +9645 55843 0.5380 +9645 57591 0.4040 +9645 64780 0.5200 +9645 89941 0.4570 +9645 91584 0.7470 +9645 254102 0.4620 +9645 376267 0.5860 +9646 9733 0.4230 +9646 9739 0.5870 +9646 9810 0.8820 +9646 9869 0.5590 +9646 9978 0.8140 +9646 10919 0.4370 +9646 11196 0.4660 +9646 11198 0.9970 +9646 22828 0.5040 +9646 22916 0.6120 +9646 22930 0.5320 +9646 22936 0.9300 +9646 23047 0.4120 +9646 23067 0.4070 +9646 23168 0.9990 +9646 23244 0.4380 +9646 23248 0.6110 +9646 23360 0.4710 +9646 23379 0.9100 +9646 23476 0.6120 +9646 25920 0.9490 +9646 26100 0.4340 +9646 26610 0.9090 +9646 26747 0.7370 +9646 27125 0.9520 +9646 27161 0.7440 +9646 29072 0.6950 +9646 29113 0.4370 +9646 29116 0.5910 +9646 29882 0.4280 +9646 29894 0.5490 +9646 29945 0.4170 +9646 51224 0.6440 +9646 51322 0.5780 +9646 51340 0.5420 +9646 51433 0.4110 +9646 51497 0.9070 +9646 51574 0.5430 +9646 51585 0.5180 +9646 51755 0.7580 +9646 53981 0.4310 +9646 54145 0.5350 +9646 54623 0.9990 +9646 54733 0.4350 +9646 55153 0.4620 +9646 55209 0.4860 +9646 55250 0.7600 +9646 55339 0.6010 +9646 55677 0.9150 +9646 55840 0.9000 +9646 55929 0.4930 +9646 56254 0.9300 +9646 57187 0.4170 +9646 57606 0.4480 +9646 57654 0.8450 +9646 57680 0.5030 +9646 57703 0.5620 +9646 64426 0.4890 +9646 64682 0.4620 +9646 79577 0.9990 +9646 79664 0.9060 +9646 80237 0.9150 +9646 80335 0.7020 +9646 80349 0.9990 +9646 81608 0.7990 +9646 84295 0.7580 +9646 84321 0.4220 +9646 84337 0.8260 +9646 84524 0.9110 +9646 85236 0.7550 +9646 85403 0.9040 +9646 85456 0.8920 +9646 96764 0.4290 +9646 112869 0.4680 +9646 121504 0.8570 +9646 123169 0.9990 +9646 124245 0.5780 +9646 125476 0.4060 +9646 126961 0.8620 +9646 128312 0.5350 +9646 158983 0.5350 +9646 195828 0.4180 +9646 246721 0.4500 +9646 255626 0.7570 +9646 286436 0.5360 +9646 333932 0.8620 +9646 440093 0.5510 +9646 440686 0.5510 +9646 440689 0.5390 +9646 548644 0.4500 +9646 554313 0.8570 +9646 653499 0.4820 +9646 653604 0.9080 +9646 728642 0.5250 +9646 100170841 0.4310 +9646 114483833 0.5360 +9647 9759 0.4560 +9647 9881 0.4040 +9647 9978 0.4490 +9647 9993 0.5000 +9647 10116 0.6850 +9647 11040 0.5170 +9647 22938 0.5450 +9647 23759 0.4310 +9647 29109 0.6300 +9647 29799 0.4100 +9647 29896 0.5180 +9647 51003 0.4150 +9647 51340 0.4200 +9647 51586 0.4350 +9647 54469 0.4110 +9647 54934 0.4210 +9647 55527 0.4820 +9647 56929 0.4910 +9647 80212 0.4350 +9647 84164 0.4370 +9647 91603 0.4350 +9647 123263 0.4240 +9647 132160 0.6150 +9647 160760 0.5160 +9648 9688 0.5680 +9648 9827 0.4990 +9648 9883 0.4170 +9648 9950 0.5450 +9648 10124 0.8180 +9648 10139 0.6380 +9648 10142 0.7230 +9648 10226 0.7260 +9648 10228 0.7230 +9648 10244 0.5260 +9648 10342 0.5530 +9648 10466 0.6290 +9648 10618 0.8090 +9648 10817 0.5030 +9648 10818 0.5080 +9648 11021 0.4780 +9648 11129 0.9540 +9648 22796 0.6170 +9648 22836 0.7580 +9648 22872 0.6530 +9648 23049 0.5380 +9648 23062 0.4630 +9648 23122 0.8110 +9648 23163 0.4140 +9648 23190 0.5430 +9648 23258 0.5740 +9648 23271 0.5270 +9648 23294 0.4520 +9648 23303 0.4440 +9648 23332 0.7930 +9648 23426 0.9590 +9648 23633 0.4490 +9648 25839 0.5400 +9648 26003 0.6210 +9648 27314 0.7390 +9648 27436 0.6890 +9648 51050 0.4810 +9648 51209 0.9260 +9648 51542 0.6760 +9648 51560 0.8830 +9648 53335 0.5230 +9648 53371 0.5580 +9648 54764 0.4230 +9648 55088 0.4580 +9648 55275 0.7880 +9648 55374 0.4400 +9648 55746 0.4040 +9648 55773 0.4650 +9648 57448 0.6320 +9648 57511 0.5900 +9648 57589 0.5780 +9648 57727 0.4180 +9648 63908 0.5000 +9648 64083 0.4170 +9648 64689 0.6880 +9648 64753 0.6340 +9648 79571 0.8110 +9648 79902 0.4380 +9648 79987 0.4570 +9648 80304 0.4990 +9648 80725 0.4150 +9648 83548 0.6790 +9648 83871 0.4360 +9648 84084 0.5230 +9648 84220 0.4110 +9648 90196 0.6160 +9648 91949 0.5790 +9648 123096 0.4900 +9648 140453 0.4500 +9648 143187 0.8510 +9648 143941 0.4180 +9648 283212 0.4950 +9648 283383 0.5250 +9648 285190 0.4020 +9648 339122 0.5840 +9648 347517 0.5090 +9648 376267 0.4740 +9648 389558 0.5050 +9648 402569 0.4400 +9648 727851 0.4390 +9648 100101267 0.4260 +9649 57148 0.5290 +9649 57529 0.5120 +9649 84253 0.6080 +9649 253959 0.4770 +9649 256714 0.4310 +9649 389643 0.4760 +9649 441457 0.5960 +9649 728568 0.4240 +9650 10404 0.4480 +9650 10875 0.4600 +9650 22919 0.4300 +9650 25929 0.7800 +9650 119559 0.4110 +9650 140680 0.4090 +9650 140683 0.8270 +9651 23007 0.5440 +9651 23396 0.7460 +9651 27124 0.7060 +9651 51196 0.5430 +9651 51763 0.6980 +9651 54331 0.6140 +9651 54532 0.4220 +9651 55344 0.4310 +9651 56623 0.6630 +9651 79837 0.7370 +9651 80271 0.6600 +9651 113026 0.5700 +9651 130827 0.4480 +9651 138429 0.7300 +9651 253430 0.9120 +9652 9732 0.4100 +9652 10153 0.4180 +9652 10179 0.4750 +9652 10200 0.4260 +9652 10399 0.8410 +9652 10438 0.6280 +9652 10526 0.5710 +9652 10527 0.5890 +9652 10653 0.4310 +9652 10767 0.8880 +9652 11044 0.5160 +9652 11224 0.4330 +9652 11340 0.7630 +9652 22803 0.4640 +9652 22894 0.8130 +9652 22979 0.4640 +9652 23016 0.8140 +9652 23335 0.5200 +9652 23341 0.4010 +9652 23404 0.7920 +9652 23517 0.8710 +9652 23644 0.4220 +9652 23774 0.4210 +9652 25873 0.4320 +9652 25929 0.5320 +9652 26009 0.4250 +9652 26019 0.4820 +9652 26046 0.4850 +9652 27000 0.5010 +9652 27257 0.5070 +9652 51010 0.8160 +9652 51013 0.8690 +9652 51095 0.4790 +9652 51121 0.4330 +9652 51149 0.4770 +9652 51319 0.5080 +9652 51592 0.4300 +9652 54464 0.8330 +9652 54512 0.8600 +9652 54623 0.4970 +9652 54914 0.4790 +9652 55596 0.4510 +9652 55601 0.5460 +9652 55612 0.4850 +9652 56915 0.8100 +9652 57217 0.6660 +9652 57655 0.4430 +9652 64969 0.4460 +9652 79269 0.5110 +9652 79590 0.4230 +9652 80349 0.9990 +9652 84186 0.6540 +9652 84549 0.4740 +9652 84668 0.4140 +9652 114987 0.7440 +9652 115752 0.5990 +9652 116832 0.4290 +9652 118460 0.8140 +9652 129563 0.4420 +9652 140801 0.4340 +9652 145567 0.4300 +9652 151525 0.5160 +9652 153642 0.5050 +9652 167227 0.6210 +9652 196441 0.4360 +9652 254268 0.4020 +9652 256764 0.5070 +9652 399664 0.4220 +9652 440138 0.4050 +9652 100529239 0.4280 +9653 9672 0.6450 +9653 9917 0.4750 +9653 9951 0.6720 +9653 9953 0.6570 +9653 9955 0.6490 +9653 9956 0.6850 +9653 9957 0.8770 +9653 10082 0.6420 +9653 10855 0.4400 +9653 10970 0.4220 +9653 11214 0.4130 +9653 11285 0.6040 +9653 22856 0.5390 +9653 23213 0.6630 +9653 26035 0.8970 +9653 26229 0.6290 +9653 27233 0.5090 +9653 27284 0.5100 +9653 29940 0.5350 +9653 50515 0.6020 +9653 51363 0.6660 +9653 54480 0.4080 +9653 54928 0.5060 +9653 55454 0.5660 +9653 55501 0.6060 +9653 55773 0.4240 +9653 55790 0.5950 +9653 55959 0.6650 +9653 56548 0.4730 +9653 64131 0.5140 +9653 64132 0.5400 +9653 64579 0.6910 +9653 64711 0.7140 +9653 79586 0.5070 +9653 80146 0.5140 +9653 80829 0.4100 +9653 83548 0.4030 +9653 90161 0.7350 +9653 113189 0.5940 +9653 126792 0.4640 +9653 166012 0.5610 +9653 221914 0.6400 +9653 222537 0.7370 +9653 246175 0.4020 +9653 266722 0.6760 +9653 347734 0.5620 +9653 349565 0.4360 +9653 375790 0.6410 +9653 442038 0.5270 +9654 9779 0.4060 +9654 23093 0.5770 +9654 23170 0.7220 +9654 23287 0.7810 +9654 23542 0.4630 +9654 25809 0.4660 +9654 26140 0.4070 +9654 56243 0.4220 +9654 57576 0.4410 +9654 57722 0.4180 +9654 60509 0.6880 +9654 79739 0.4180 +9654 79969 0.5530 +9654 81545 0.4370 +9654 81887 0.4110 +9654 84445 0.4630 +9654 84871 0.8080 +9654 91445 0.4460 +9654 119587 0.5300 +9654 150465 0.5800 +9654 158135 0.4460 +9654 164714 0.4160 +9654 254173 0.5200 +9654 284076 0.4490 +9654 374969 0.4260 +9655 22863 0.5500 +9655 22899 0.4040 +9655 23412 0.4990 +9655 23533 0.5770 +9655 27161 0.4120 +9655 28952 0.4990 +9655 28991 0.4990 +9655 29099 0.4990 +9655 30837 0.6930 +9655 30849 0.5430 +9655 51122 0.5070 +9655 51397 0.5040 +9655 54939 0.4990 +9655 54951 0.5220 +9655 55697 0.5450 +9655 55832 0.5430 +9655 84174 0.6600 +9655 122809 0.8240 +9655 140739 0.5040 +9655 146850 0.5400 +9655 149951 0.4990 +9655 150684 0.4990 +9655 170622 0.5040 +9655 441925 0.5400 +9655 110117498 0.5400 +9656 9682 0.6740 +9656 9810 0.5020 +9656 9874 0.4730 +9656 9878 0.4720 +9656 9968 0.6450 +9656 10038 0.4980 +9656 10051 0.4930 +9656 10111 0.9470 +9656 10155 0.6550 +9656 10274 0.8220 +9656 10459 0.7010 +9656 10524 0.9100 +9656 10592 0.5260 +9656 10664 0.4300 +9656 10721 0.4100 +9656 10926 0.4840 +9656 10951 0.4500 +9656 11051 0.4330 +9656 11052 0.4610 +9656 11073 0.9950 +9656 11169 0.4380 +9656 11198 0.6120 +9656 11200 0.9900 +9656 11201 0.5050 +9656 11284 0.5010 +9656 11335 0.4190 +9656 11339 0.4640 +9656 11340 0.4770 +9656 22890 0.4390 +9656 22974 0.6100 +9656 22976 0.6390 +9656 23030 0.5600 +9656 23064 0.5060 +9656 23137 0.8250 +9656 23248 0.4470 +9656 23269 0.4480 +9656 23300 0.4010 +9656 23309 0.4460 +9656 23347 0.4940 +9656 23379 0.4490 +9656 23384 0.4620 +9656 23405 0.4340 +9656 23469 0.4570 +9656 23476 0.5850 +9656 23595 0.4950 +9656 25788 0.5600 +9656 25842 0.4710 +9656 25913 0.5470 +9656 25920 0.6710 +9656 25942 0.6590 +9656 26013 0.4540 +9656 26093 0.4660 +9656 26277 0.6100 +9656 27127 0.6130 +9656 29072 0.5160 +9656 29086 0.7200 +9656 50485 0.4150 +9656 50511 0.5450 +9656 51224 0.5150 +9656 51366 0.5070 +9656 51497 0.5220 +9656 51548 0.4770 +9656 51588 0.8030 +9656 51592 0.5350 +9656 51720 0.9970 +9656 51755 0.5680 +9656 53616 0.8170 +9656 54145 0.5840 +9656 54386 0.4730 +9656 54443 0.4650 +9656 54487 0.6520 +9656 54617 0.4110 +9656 54840 0.4130 +9656 54870 0.4660 +9656 54934 0.4430 +9656 54962 0.5400 +9656 55135 0.7490 +9656 55183 0.7950 +9656 55215 0.7030 +9656 55257 0.4630 +9656 56160 0.5250 +9656 56254 0.5220 +9656 56852 0.8000 +9656 56916 0.4310 +9656 56946 0.4630 +9656 57082 0.5860 +9656 57162 0.4560 +9656 57492 0.4860 +9656 57621 0.4430 +9656 57634 0.6970 +9656 57646 0.5260 +9656 57649 0.4550 +9656 57673 0.4830 +9656 57697 0.7240 +9656 63967 0.6200 +9656 64324 0.4700 +9656 64397 0.4740 +9656 64421 0.6370 +9656 64426 0.4430 +9656 64682 0.5550 +9656 65986 0.4060 +9656 79003 0.4570 +9656 79184 0.8720 +9656 79648 0.8220 +9656 79677 0.9340 +9656 79682 0.4400 +9656 79728 0.4980 +9656 79840 0.7210 +9656 79915 0.5990 +9656 79980 0.4800 +9656 79991 0.4820 +9656 80010 0.4120 +9656 80198 0.7240 +9656 80232 0.4400 +9656 81556 0.4750 +9656 83746 0.5850 +9656 83990 0.4210 +9656 84072 0.4120 +9656 84126 0.7420 +9656 84142 0.9230 +9656 84250 0.7790 +9656 84256 0.4690 +9656 84311 0.6960 +9656 84464 0.6760 +9656 84661 0.4510 +9656 84733 0.4760 +9656 84893 0.6710 +9656 84939 0.6360 +9656 85236 0.5860 +9656 85365 0.4660 +9656 90381 0.5560 +9656 90522 0.7510 +9656 91272 0.4580 +9656 91748 0.4680 +9656 92521 0.4300 +9656 114884 0.4390 +9656 116092 0.4470 +9656 128312 0.5860 +9656 128710 0.5280 +9656 135458 0.4740 +9656 144715 0.4310 +9656 165918 0.9970 +9656 170482 0.4580 +9656 197370 0.5500 +9656 221037 0.6920 +9656 221458 0.4390 +9656 221656 0.4480 +9656 254225 0.8030 +9656 255626 0.5890 +9656 286053 0.5720 +9656 286204 0.4950 +9656 286205 0.4700 +9656 286257 0.4310 +9656 339287 0.4460 +9656 348654 0.4270 +9656 401541 0.4890 +9656 404672 0.6060 +9656 440093 0.4720 +9656 440686 0.4720 +9656 548593 0.5330 +9656 653604 0.4760 +9656 102723407 0.5820 +9657 9688 0.4720 +9657 9742 0.5390 +9657 10210 0.4160 +9657 10244 0.4440 +9657 10376 0.4170 +9657 10381 0.4210 +9657 10383 0.4210 +9657 10640 0.4330 +9657 10806 0.9650 +9657 11127 0.4350 +9657 11165 0.5740 +9657 22832 0.6500 +9657 22897 0.4910 +9657 22954 0.6550 +9657 23059 0.4490 +9657 23089 0.5860 +9657 23093 0.4210 +9657 23322 0.8720 +9657 23354 0.5040 +9657 23411 0.4010 +9657 23511 0.6040 +9657 23636 0.5090 +9657 23746 0.6730 +9657 25814 0.8100 +9657 25861 0.4360 +9657 25938 0.4460 +9657 26123 0.5020 +9657 26160 0.5670 +9657 26504 0.4100 +9657 27031 0.9510 +9657 27077 0.6110 +9657 27130 0.8100 +9657 27152 0.4330 +9657 27241 0.5900 +9657 51134 0.5060 +9657 51199 0.7270 +9657 51259 0.7120 +9657 51764 0.5430 +9657 51806 0.9370 +9657 54536 0.4070 +9657 54585 0.4740 +9657 54801 0.5910 +9657 54806 0.8290 +9657 54903 0.7250 +9657 54930 0.5480 +9657 55142 0.5040 +9657 55212 0.6140 +9657 55559 0.5040 +9657 55763 0.6670 +9657 55764 0.7580 +9657 55812 0.7410 +9657 57010 0.6080 +9657 57096 0.8560 +9657 57545 0.6460 +9657 57560 0.4140 +9657 57576 0.4020 +9657 57728 0.5340 +9657 60412 0.6450 +9657 64792 0.4370 +9657 64802 0.5750 +9657 65062 0.7170 +9657 79441 0.5310 +9657 79583 0.6820 +9657 79600 0.5850 +9657 79738 0.5770 +9657 79809 0.5820 +9657 79867 0.5940 +9657 80086 0.4170 +9657 80173 0.4030 +9657 80184 0.9990 +9657 80776 0.6220 +9657 81554 0.6530 +9657 84617 0.4210 +9657 84662 0.4880 +9657 84790 0.4170 +9657 91147 0.6640 +9657 91754 0.5950 +9657 91860 0.9370 +9657 93323 0.7010 +9657 115106 0.5100 +9657 117177 0.6780 +9657 124401 0.4400 +9657 129880 0.5990 +9657 136332 0.4600 +9657 145226 0.6340 +9657 163688 0.9370 +9657 166379 0.5180 +9657 167691 0.7580 +9657 200728 0.5290 +9657 200894 0.5090 +9657 203068 0.4210 +9657 203286 0.5950 +9657 261734 0.9530 +9657 283554 0.4150 +9657 284086 0.6390 +9657 343035 0.6390 +9657 346007 0.4210 +9657 347688 0.4210 +9657 401124 0.4360 +9658 10472 0.5940 +9658 10919 0.4540 +9658 23028 0.9840 +9658 23186 0.9540 +9658 25771 0.4500 +9658 28996 0.4460 +9658 51274 0.6620 +9658 51320 0.5420 +9658 54549 0.4530 +9658 63976 0.9920 +9658 79664 0.4130 +9658 79863 0.4260 +9658 80148 0.5040 +9658 81575 0.4630 +9658 84458 0.6450 +9658 84733 0.5520 +9658 124565 0.4460 +9658 129642 0.6360 +9658 136242 0.4150 +9658 161882 0.4970 +9658 222553 0.4380 +9658 284273 0.4450 +9658 284274 0.4450 +9658 100128927 0.5960 +9658 100130613 0.4440 +9659 9793 0.4400 +9659 9857 0.4060 +9659 9859 0.5690 +9659 9863 0.4010 +9659 10142 0.9770 +9659 10564 0.4210 +9659 10628 0.4160 +9659 22919 0.8450 +9659 22924 0.7330 +9659 23043 0.6070 +9659 23253 0.4570 +9659 23271 0.5060 +9659 25821 0.4110 +9659 27063 0.5530 +9659 27185 0.5410 +9659 50618 0.5800 +9659 55755 0.7300 +9659 79668 0.4380 +9659 121441 0.5100 +9659 149281 0.4210 +9659 390061 0.4510 +9659 440145 0.4290 +9662 9696 0.7300 +9662 9700 0.4640 +9662 9702 0.5930 +9662 9731 0.4790 +9662 9738 0.9640 +9662 9814 0.4660 +9662 9851 0.7090 +9662 9857 0.7490 +9662 9859 0.5990 +9662 9928 0.7070 +9662 10112 0.4090 +9662 10133 0.5000 +9662 10142 0.7170 +9662 10464 0.7340 +9662 10540 0.5250 +9662 10733 0.9880 +9662 11064 0.5730 +9662 11116 0.4560 +9662 11190 0.7500 +9662 22832 0.6480 +9662 22873 0.4510 +9662 22897 0.7370 +9662 22919 0.4280 +9662 22981 0.5270 +9662 22994 0.6650 +9662 22995 0.9680 +9662 23093 0.5360 +9662 23141 0.6450 +9662 23354 0.5370 +9662 25886 0.5460 +9662 25914 0.6650 +9662 25981 0.5500 +9662 49856 0.8620 +9662 50618 0.4560 +9662 51134 0.5450 +9662 51174 0.5530 +9662 51175 0.5390 +9662 51199 0.7250 +9662 54785 0.6100 +9662 54801 0.7450 +9662 54820 0.4370 +9662 54875 0.8870 +9662 54930 0.5460 +9662 55125 0.8560 +9662 55142 0.6680 +9662 55262 0.4110 +9662 55559 0.5250 +9662 55722 0.4980 +9662 55755 0.7970 +9662 55763 0.4120 +9662 55779 0.5000 +9662 55835 0.9960 +9662 57082 0.5720 +9662 57534 0.4920 +9662 57536 0.6250 +9662 57662 0.4030 +9662 57728 0.5010 +9662 63925 0.6670 +9662 64682 0.6450 +9662 64770 0.7500 +9662 64793 0.4620 +9662 79441 0.6440 +9662 79598 0.6060 +9662 79648 0.6750 +9662 79846 0.4740 +9662 79848 0.6220 +9662 79866 0.5430 +9662 79925 0.5060 +9662 79959 0.6340 +9662 80127 0.4200 +9662 80184 0.8290 +9662 80217 0.5190 +9662 80321 0.4030 +9662 81565 0.5600 +9662 83449 0.4130 +9662 83894 0.6450 +9662 84071 0.4610 +9662 84074 0.4990 +9662 84318 0.5130 +9662 84879 0.4530 +9662 84902 0.5560 +9662 85302 0.4810 +9662 85378 0.4890 +9662 85459 0.9360 +9662 89876 0.4210 +9662 93323 0.5740 +9662 93594 0.6200 +9662 115106 0.5880 +9662 116840 0.8420 +9662 117177 0.5260 +9662 117178 0.5870 +9662 118491 0.4150 +9662 121441 0.6310 +9662 122481 0.5640 +9662 123811 0.5020 +9662 132320 0.5620 +9662 134359 0.7570 +9662 140732 0.4580 +9662 144406 0.4830 +9662 145508 0.6680 +9662 146754 0.4040 +9662 152185 0.7410 +9662 153241 0.7850 +9662 163786 0.9990 +9662 167838 0.4980 +9662 197335 0.5830 +9662 199223 0.5860 +9662 200081 0.4740 +9662 200894 0.4670 +9662 201134 0.4980 +9662 201255 0.6420 +9662 221908 0.5320 +9662 259266 0.7180 +9662 282809 0.7270 +9662 284403 0.7720 +9662 286464 0.4040 +9662 343099 0.5950 +9662 374407 0.4490 +9662 401024 0.4930 +9662 728642 0.5320 +9662 729440 0.4430 +9663 10390 0.9340 +9663 10554 0.8210 +9663 10555 0.8290 +9663 10864 0.4210 +9663 10891 0.5110 +9663 23171 0.8230 +9663 23175 0.9630 +9663 23347 0.4590 +9663 23399 0.8680 +9663 23646 0.6720 +9663 27098 0.5050 +9663 54751 0.4040 +9663 55317 0.4130 +9663 55326 0.7610 +9663 56894 0.7960 +9663 56895 0.8020 +9663 56994 0.9280 +9663 57104 0.7600 +9663 57678 0.5890 +9663 58488 0.4630 +9663 63924 0.5010 +9663 64127 0.4340 +9663 64900 0.9630 +9663 80168 0.7820 +9663 80339 0.7420 +9663 84513 0.9200 +9663 84649 0.8540 +9663 84803 0.4580 +9663 85465 0.9210 +9663 91662 0.4480 +9663 114548 0.4190 +9663 116255 0.8080 +9663 119548 0.6710 +9663 122618 0.6650 +9663 129642 0.7280 +9663 137964 0.5350 +9663 154141 0.6500 +9663 196051 0.9200 +9663 253558 0.7050 +9663 255919 0.6040 +9663 346606 0.7340 +9665 9683 0.4520 +9665 23019 0.4070 +9665 23042 0.5410 +9665 23424 0.6750 +9665 23644 0.7930 +9665 54464 0.4370 +9665 54700 0.5730 +9665 54820 0.7060 +9665 55802 0.7130 +9665 56478 0.4560 +9665 80153 0.4400 +9665 85417 0.4380 +9665 89927 0.6470 +9665 123803 0.5400 +9665 123811 0.7580 +9665 149986 0.4500 +9665 163589 0.7540 +9665 167227 0.6070 +9665 196513 0.4320 +9665 255027 0.6400 +9665 408050 0.6280 +9665 100129480 0.4790 +9666 10073 0.8030 +9666 10202 0.9420 +9666 10498 0.4090 +9666 11100 0.4560 +9666 11130 0.4950 +9666 22873 0.5370 +9666 23028 0.4340 +9666 26994 0.5680 +9666 27136 0.4330 +9666 50852 0.4030 +9666 51255 0.4590 +9666 51649 0.4290 +9666 55081 0.4210 +9666 83759 0.4460 +9666 84206 0.8690 +9666 84626 0.4020 +9666 84708 0.5510 +9666 114928 0.4470 +9666 199221 0.4520 +9667 9782 0.4660 +9667 10146 0.4010 +9667 10174 0.8870 +9667 10250 0.4250 +9667 10847 0.6250 +9667 11100 0.6860 +9667 22916 0.6890 +9667 22985 0.6000 +9667 23013 0.4870 +9667 23283 0.4350 +9667 23476 0.5350 +9667 27316 0.6290 +9667 29102 0.4820 +9667 55552 0.4100 +9667 57470 0.4080 +9667 90441 0.4550 +9667 124245 0.4380 +9667 140467 0.4220 +9667 140890 0.4320 +9667 148066 0.5880 +9668 10155 0.6510 +9668 10780 0.4810 +9668 22835 0.4010 +9668 57209 0.6470 +9668 79673 0.4780 +9668 79744 0.5240 +9668 80852 0.4740 +9668 85415 0.4440 +9668 90317 0.4520 +9668 256051 0.5110 +9668 374928 0.4910 +9668 100289635 0.4580 +9669 9698 0.4340 +9669 9732 0.9060 +9669 9775 0.4610 +9669 9801 0.8340 +9669 9858 0.7610 +9669 9933 0.8660 +9669 10056 0.5900 +9669 10061 0.6480 +9669 10102 0.9540 +9669 10135 0.4370 +9669 10153 0.6300 +9669 10209 0.9760 +9669 10289 0.5910 +9669 10352 0.5220 +9669 10381 0.4580 +9669 10399 0.9920 +9669 10412 0.4950 +9669 10473 0.7170 +9669 10480 0.5500 +9669 10492 0.4360 +9669 10521 0.4350 +9669 10535 0.4370 +9669 10557 0.6980 +9669 10574 0.4670 +9669 10575 0.4470 +9669 10576 0.4960 +9669 10605 0.5520 +9669 10667 0.4330 +9669 10694 0.5070 +9669 10730 0.5040 +9669 10767 0.5460 +9669 10939 0.4360 +9669 11128 0.8170 +9669 11222 0.8360 +9669 11224 0.9730 +9669 22927 0.5140 +9669 22948 0.4560 +9669 22984 0.7460 +9669 23135 0.4400 +9669 23204 0.7490 +9669 23223 0.4500 +9669 23363 0.5470 +9669 23367 0.4890 +9669 23395 0.6460 +9669 23405 0.5160 +9669 23438 0.5190 +9669 23476 0.5660 +9669 23481 0.4670 +9669 23521 0.9770 +9669 23560 0.6290 +9669 23640 0.7950 +9669 23708 0.5340 +9669 25813 0.4550 +9669 25873 0.9550 +9669 25885 0.8130 +9669 25902 0.4620 +9669 25929 0.4530 +9669 25973 0.5980 +9669 26135 0.6830 +9669 26156 0.4650 +9669 26164 0.4230 +9669 26986 0.5980 +9669 26995 0.7640 +9669 27000 0.4920 +9669 27102 0.4890 +9669 28987 0.6230 +9669 28998 0.7890 +9669 29088 0.5960 +9669 29093 0.7850 +9669 29102 0.5120 +9669 29789 0.4940 +9669 29927 0.7140 +9669 29997 0.5020 +9669 50807 0.4200 +9669 51021 0.9030 +9669 51065 0.8130 +9669 51067 0.5820 +9669 51069 0.8610 +9669 51073 0.8420 +9669 51081 0.8040 +9669 51116 0.7660 +9669 51121 0.8850 +9669 51147 0.4570 +9669 51149 0.8470 +9669 51154 0.8740 +9669 51204 0.4110 +9669 51264 0.7520 +9669 51314 0.4110 +9669 51319 0.8810 +9669 51430 0.5410 +9669 51520 0.6870 +9669 51575 0.4070 +9669 51602 0.4210 +9669 54059 0.5700 +9669 54148 0.5620 +9669 54465 0.4140 +9669 54505 0.6890 +9669 54516 0.4910 +9669 54534 0.4540 +9669 54583 0.8050 +9669 54938 0.4920 +9669 54948 0.7890 +9669 54965 0.5540 +9669 55011 0.4910 +9669 55052 0.7490 +9669 55157 0.5460 +9669 55173 0.8740 +9669 55176 0.6970 +9669 55226 0.4050 +9669 55272 0.9360 +9669 55294 0.5390 +9669 55316 0.8500 +9669 55324 0.4060 +9669 55651 0.8080 +9669 55662 0.4810 +9669 55699 0.6300 +9669 55703 0.7760 +9669 55720 0.6010 +9669 55749 0.4500 +9669 55781 0.5640 +9669 56474 0.5350 +9669 56882 0.4790 +9669 57038 0.6590 +9669 57136 0.7810 +9669 57176 0.6090 +9669 57470 0.5170 +9669 57505 0.6800 +9669 60558 0.5460 +9669 60678 0.8040 +9669 63875 0.7940 +9669 63931 0.7540 +9669 64344 0.7010 +9669 64374 0.7890 +9669 64794 0.4530 +9669 64848 0.4050 +9669 64960 0.7150 +9669 64963 0.8440 +9669 64965 0.9260 +9669 64968 0.9280 +9669 64969 0.9130 +9669 64975 0.4630 +9669 64976 0.4650 +9669 64979 0.8630 +9669 64983 0.6900 +9669 65003 0.7290 +9669 65005 0.8780 +9669 65008 0.8340 +9669 65080 0.4910 +9669 65121 0.5830 +9669 65122 0.5830 +9669 78988 0.4370 +9669 79587 0.5540 +9669 79590 0.7250 +9669 79631 0.7010 +9669 79728 0.4820 +9669 79731 0.4150 +9669 79901 0.4790 +9669 80222 0.6990 +9669 80273 0.4590 +9669 80312 0.4840 +9669 81570 0.5760 +9669 83732 0.4490 +9669 83939 0.7890 +9669 83990 0.4260 +9669 84135 0.4510 +9669 84172 0.7820 +9669 84340 0.6070 +9669 84844 0.6220 +9669 84925 0.4920 +9669 84946 0.5660 +9669 85476 0.8670 +9669 85865 0.4130 +9669 87178 0.8330 +9669 90480 0.4600 +9669 91574 0.4840 +9669 91875 0.5340 +9669 92399 0.8610 +9669 92935 0.7360 +9669 93974 0.9980 +9669 112398 0.7620 +9669 112399 0.7530 +9669 114987 0.8100 +9669 116832 0.8420 +9669 117246 0.4260 +9669 122622 0.4330 +9669 123263 0.7830 +9669 123283 0.7040 +9669 124454 0.6930 +9669 126402 0.8100 +9669 128308 0.4400 +9669 140032 0.6930 +9669 140801 0.9580 +9669 142940 0.7970 +9669 143244 0.4070 +9669 196385 0.4160 +9669 200916 0.8290 +9669 219402 0.5710 +9669 219927 0.8290 +9669 219988 0.4060 +9669 253314 0.4920 +9669 254268 0.8340 +9669 255308 0.8280 +9669 285855 0.8930 +9669 317649 0.6280 +9669 343068 0.5830 +9669 343070 0.5830 +9669 345630 0.5350 +9669 347487 0.9160 +9669 374659 0.4460 +9669 387129 0.8520 +9669 390999 0.5830 +9669 391002 0.5830 +9669 400735 0.5830 +9669 400736 0.5830 +9669 440275 0.6470 +9669 440560 0.5830 +9669 440561 0.5830 +9669 441873 0.5830 +9669 641776 0.6080 +9669 643909 0.6080 +9669 645051 0.5040 +9669 645073 0.5040 +9669 645359 0.5830 +9669 653619 0.5830 +9669 728524 0.6080 +9669 728689 0.8210 +9669 729396 0.5040 +9669 729422 0.5040 +9669 729428 0.5040 +9669 729431 0.5040 +9669 729442 0.5040 +9669 729447 0.5040 +9669 729528 0.5830 +9669 100008586 0.5040 +9669 100132399 0.5040 +9669 100287482 0.7610 +9669 100505478 0.7010 +9669 100526842 0.9080 +9669 100529097 0.7700 +9669 100529239 0.9580 +9669 100996746 0.6080 +9669 101929983 0.5830 +9669 102724473 0.5040 +9669 105180390 0.6080 +9669 105180391 0.6080 +9669 114483834 0.7160 +9670 9939 0.9720 +9670 9972 0.6680 +9670 10054 0.4090 +9670 10204 0.4160 +9670 10526 0.7260 +9670 10527 0.7450 +9670 10738 0.4240 +9670 11260 0.7930 +9670 23039 0.7060 +9670 23214 0.5670 +9670 23510 0.8040 +9670 23534 0.5100 +9670 23633 0.4690 +9670 26953 0.6210 +9670 30000 0.7020 +9670 51194 0.7740 +9670 51501 0.4880 +9670 55110 0.8460 +9670 55705 0.7600 +9670 56648 0.5590 +9670 57510 0.6760 +9670 64328 0.8180 +9670 64901 0.4920 +9670 79711 0.7810 +9670 80178 0.4110 +9670 80714 0.6940 +9670 84315 0.4480 +9670 143244 0.5720 +9670 170302 0.7460 +9670 171024 0.4650 +9670 283383 0.5380 +9670 402569 0.4840 +9671 22943 0.4130 +9671 55805 0.4170 +9671 57697 0.8790 +9671 64405 0.4040 +9671 129049 0.4680 +9671 389730 0.4350 +9672 9951 0.5030 +9672 9953 0.5130 +9672 9955 0.4520 +9672 9956 0.5160 +9672 9957 0.5800 +9672 10082 0.6730 +9672 10675 0.6800 +9672 10755 0.5720 +9672 10855 0.5420 +9672 11285 0.5120 +9672 23213 0.6440 +9672 23788 0.4680 +9672 25970 0.4350 +9672 26020 0.4020 +9672 26035 0.5890 +9672 26229 0.5070 +9672 27087 0.4230 +9672 29967 0.4010 +9672 30835 0.5140 +9672 51393 0.5470 +9672 51399 0.5900 +9672 55959 0.6480 +9672 60495 0.5290 +9672 63827 0.6490 +9672 64131 0.5320 +9672 64132 0.5190 +9672 64579 0.5660 +9672 64711 0.4900 +9672 79068 0.4480 +9672 84661 0.5330 +9672 90161 0.5900 +9672 114805 0.7750 +9672 126792 0.5150 +9672 132789 0.5400 +9672 133522 0.4540 +9672 135152 0.4190 +9672 221914 0.7530 +9672 222537 0.5040 +9672 257194 0.5690 +9672 266722 0.4850 +9672 338557 0.4900 +9672 375790 0.6720 +9672 440533 0.5260 +9673 9776 0.4660 +9673 11243 0.7840 +9673 23143 0.4020 +9673 23174 0.4380 +9673 25934 0.4060 +9673 27089 0.4070 +9673 28998 0.4080 +9673 57129 0.4420 +9673 64218 0.4880 +9673 65065 0.4300 +9673 79973 0.4800 +9673 80262 0.5310 +9673 89822 0.4150 +9673 92014 0.4770 +9673 129303 0.4320 +9673 130026 0.4470 +9673 150864 0.4450 +9673 152926 0.4830 +9673 730005 0.4120 +9673 100527963 0.6960 +9674 23469 0.4180 +9674 57567 0.4390 +9674 63876 0.5240 +9674 80731 0.4180 +9674 84614 0.4980 +9674 339416 0.4760 +9674 347735 0.5810 +9674 401546 0.4100 +9674 730159 0.5850 +9675 9894 0.9990 +9675 10623 0.4360 +9675 10856 0.9860 +9675 23049 0.9370 +9675 23165 0.5370 +9675 23279 0.4510 +9675 26268 0.6910 +9675 51095 0.5680 +9675 51447 0.4510 +9675 51513 0.4860 +9675 54584 0.5100 +9675 54680 0.5230 +9675 55011 0.8800 +9675 55615 0.9990 +9675 57521 0.9990 +9675 57794 0.4220 +9675 60625 0.6050 +9675 64223 0.9990 +9675 64798 0.9950 +9675 79109 0.9970 +9675 79657 0.7660 +9675 79899 0.9080 +9675 80185 0.9990 +9675 81887 0.4800 +9675 83667 0.4380 +9675 84335 0.9930 +9675 92105 0.5250 +9675 116143 0.6070 +9675 143686 0.4620 +9675 253260 0.9990 +9677 9807 0.9970 +9677 10423 0.5000 +9677 11165 0.4370 +9677 23262 0.9050 +9677 23586 0.5010 +9677 23774 0.4230 +9677 25885 0.4490 +9677 26160 0.4510 +9677 51447 0.9940 +9677 54941 0.4890 +9677 55697 0.5670 +9677 57506 0.4280 +9677 64135 0.5420 +9677 64768 0.9820 +9677 79132 0.6500 +9677 117155 0.9300 +9677 117283 0.9960 +9677 161497 0.9190 +9677 253430 0.7630 +9678 10363 0.9100 +9678 11143 0.5960 +9678 23091 0.4070 +9678 23469 0.4050 +9678 23522 0.5820 +9678 23774 0.6140 +9678 27154 0.5990 +9678 64769 0.5560 +9678 84289 0.5490 +9678 84295 0.4260 +9678 112398 0.5330 +9678 112399 0.4750 +9678 114825 0.5940 +9678 114991 0.4300 +9678 255626 0.4720 +9679 9726 0.4480 +9679 22938 0.5100 +9679 26999 0.4620 +9679 79364 0.4830 +9679 149111 0.5500 +9681 9869 0.5440 +9681 10000 0.5170 +9681 10312 0.5010 +9681 10325 0.9850 +9681 10542 0.9400 +9681 10641 0.9990 +9681 10670 0.9990 +9681 11133 0.9990 +9681 23334 0.9990 +9681 26499 0.4220 +9681 26610 0.4110 +9681 27244 0.6890 +9681 28956 0.9400 +9681 51256 0.6040 +9681 51382 0.4990 +9681 51606 0.5040 +9681 54468 0.9990 +9681 55004 0.9380 +9681 55846 0.9990 +9681 57465 0.4730 +9681 57521 0.7250 +9681 57526 0.5810 +9681 57575 0.4800 +9681 57582 0.6960 +9681 57600 0.4370 +9681 58528 0.8640 +9681 64121 0.9990 +9681 64223 0.6260 +9681 79726 0.9990 +9681 81929 0.9940 +9681 83667 0.9980 +9681 84219 0.9990 +9681 84330 0.4570 +9681 84861 0.4910 +9681 90423 0.5400 +9681 96459 0.4850 +9681 112476 0.5920 +9681 127124 0.4990 +9681 144577 0.9990 +9681 153129 0.5370 +9681 154743 0.9660 +9681 155066 0.4990 +9681 201163 0.5380 +9681 245972 0.5130 +9681 245973 0.5000 +9681 389541 0.9460 +9681 652968 0.7490 +9681 729438 0.6940 +9682 9726 0.4850 +9682 9739 0.6840 +9682 9869 0.5940 +9682 10062 0.5320 +9682 10111 0.5090 +9682 10196 0.5210 +9682 10419 0.6770 +9682 10524 0.7180 +9682 10664 0.5790 +9682 10765 0.6350 +9682 10919 0.7270 +9682 10933 0.5660 +9682 10951 0.4380 +9682 11091 0.5770 +9682 11335 0.4680 +9682 22933 0.6270 +9682 22992 0.7280 +9682 23028 0.9660 +9682 23030 0.8210 +9682 23067 0.4150 +9682 23133 0.7420 +9682 23135 0.7560 +9682 23210 0.5700 +9682 23411 0.5840 +9682 23468 0.4670 +9682 26013 0.6210 +9682 26235 0.5130 +9682 26263 0.7480 +9682 29072 0.6450 +9682 29947 0.5340 +9682 51111 0.4710 +9682 51317 0.5910 +9682 51548 0.4960 +9682 51588 0.6480 +9682 51780 0.7180 +9682 54145 0.5660 +9682 54556 0.6000 +9682 54583 0.4550 +9682 54790 0.4020 +9682 55170 0.5810 +9682 55662 0.5400 +9682 55818 0.9100 +9682 55870 0.4450 +9682 55904 0.4340 +9682 56950 0.4860 +9682 57541 0.5600 +9682 57680 0.4300 +9682 64324 0.5140 +9682 64798 0.5200 +9682 79697 0.5700 +9682 79723 0.5840 +9682 79813 0.4740 +9682 79823 0.4300 +9682 79831 0.6680 +9682 80312 0.4010 +9682 80853 0.7800 +9682 80854 0.5050 +9682 84193 0.4170 +9682 84330 0.4350 +9682 84444 0.6640 +9682 84678 0.6780 +9682 84864 0.4650 +9682 85236 0.5660 +9682 90665 0.5040 +9682 93973 0.4370 +9682 112398 0.4150 +9682 121504 0.9110 +9682 121642 0.4290 +9682 126961 0.9150 +9682 128312 0.5690 +9682 129450 0.4150 +9682 140690 0.4660 +9682 165918 0.8240 +9682 221037 0.8920 +9682 221656 0.8780 +9682 255626 0.5750 +9682 333932 0.9080 +9682 387893 0.4990 +9682 440093 0.9950 +9682 440686 0.9950 +9682 554313 0.9120 +9682 653604 0.9970 +9683 9692 0.4010 +9683 10241 0.4060 +9683 10712 0.4250 +9683 54469 0.4500 +9683 54877 0.5310 +9683 55905 0.4290 +9683 56061 0.4790 +9683 60685 0.4970 +9683 83737 0.6650 +9683 85363 0.4390 +9683 127544 0.4980 +9684 9894 0.4550 +9684 10607 0.5610 +9684 10987 0.6000 +9684 11194 0.4640 +9684 26262 0.4360 +9684 27037 0.6460 +9684 28991 0.4980 +9684 29894 0.5260 +9684 50626 0.5680 +9684 54663 0.4640 +9684 64852 0.4740 +9684 65265 0.4410 +9684 79087 0.7350 +9684 79169 0.4660 +9684 79676 0.4830 +9684 79798 0.4360 +9684 80233 0.4850 +9684 80728 0.4970 +9684 84219 0.4650 +9684 84934 0.4570 +9684 84948 0.4160 +9684 84988 0.6280 +9684 90990 0.4710 +9684 113655 0.6010 +9684 113791 0.4250 +9684 115708 0.4680 +9684 126789 0.4330 +9684 150223 0.5880 +9684 197258 0.4180 +9684 203054 0.5800 +9684 221927 0.6180 +9684 286075 0.4130 +9684 286077 0.4320 +9684 340390 0.4930 +9684 347735 0.4620 +9684 441381 0.6550 +9684 727957 0.4020 +9685 9698 0.8920 +9685 9722 0.4470 +9685 9829 0.8390 +9685 9892 0.7200 +9685 9898 0.4100 +9685 9919 0.6900 +9685 10053 0.7060 +9685 10128 0.4930 +9685 10228 0.4050 +9685 10427 0.4620 +9685 10490 0.9990 +9685 10617 0.7240 +9685 10618 0.7460 +9685 10652 0.4330 +9685 10717 0.5510 +9685 10928 0.6540 +9685 11276 0.7650 +9685 22905 0.7140 +9685 23062 0.9250 +9685 23149 0.5110 +9685 23215 0.5230 +9685 23431 0.6500 +9685 23557 0.5350 +9685 23593 0.4050 +9685 25977 0.6370 +9685 26088 0.4070 +9685 26499 0.4900 +9685 27131 0.6330 +9685 29801 0.4390 +9685 29924 0.6700 +9685 50618 0.4640 +9685 51429 0.6990 +9685 54882 0.4260 +9685 54885 0.4990 +9685 55040 0.7110 +9685 55315 0.5480 +9685 55681 0.7180 +9685 55707 0.5490 +9685 56479 0.5400 +9685 57559 0.7640 +9685 58513 0.6960 +9685 64083 0.4440 +9685 64744 0.5620 +9685 65977 0.4880 +9685 80115 0.5510 +9685 83988 0.5620 +9685 84062 0.4320 +9685 84174 0.4250 +9685 84251 0.6080 +9685 85021 0.6960 +9685 85439 0.7010 +9685 91752 0.4240 +9685 122616 0.5400 +9685 130340 0.5750 +9685 146705 0.4480 +9685 150350 0.5680 +9685 153830 0.4640 +9685 200576 0.5380 +9685 267012 0.5070 +9685 286451 0.5420 +9685 319100 0.4240 +9686 10360 0.4010 +9686 10413 0.8470 +9686 10672 0.4060 +9686 25822 0.4180 +9686 25937 0.7600 +9686 26145 0.8380 +9686 26524 0.5480 +9686 51442 0.8260 +9686 55204 0.4210 +9686 55233 0.5550 +9686 60485 0.6950 +9686 64207 0.8510 +9686 64750 0.4840 +9686 79705 0.4830 +9686 153339 0.4580 +9686 154796 0.4850 +9686 222950 0.4790 +9686 245806 0.5260 +9686 359948 0.9390 +9686 389136 0.6300 +9687 10499 0.4160 +9687 10983 0.4600 +9687 23112 0.5260 +9687 26523 0.4990 +9687 27161 0.4990 +9687 27327 0.5030 +9687 54145 0.5160 +9687 54361 0.4960 +9687 55591 0.5070 +9687 55766 0.4990 +9687 64093 0.4110 +9687 85236 0.5120 +9687 94239 0.4990 +9687 128312 0.5130 +9687 192669 0.4990 +9687 192670 0.4990 +9687 255626 0.5110 +9687 474382 0.4990 +9687 653604 0.6050 +9688 9759 0.4940 +9688 9775 0.6560 +9688 9782 0.4160 +9688 9785 0.4910 +9688 9818 0.9990 +9688 9862 0.6600 +9688 9877 0.4510 +9688 9883 0.9520 +9688 9939 0.5210 +9688 9972 0.9960 +9688 9984 0.4380 +9688 10045 0.9590 +9688 10073 0.5290 +9688 10189 0.6880 +9688 10204 0.8070 +9688 10250 0.5100 +9688 10432 0.5690 +9688 10482 0.8420 +9688 10526 0.7720 +9688 10527 0.6090 +9688 10569 0.4190 +9688 10762 0.9710 +9688 10783 0.4670 +9688 10898 0.4160 +9688 10921 0.6210 +9688 11097 0.8900 +9688 11218 0.6290 +9688 11260 0.6610 +9688 11338 0.4510 +9688 22794 0.5260 +9688 22824 0.4580 +9688 22916 0.6730 +9688 22982 0.5600 +9688 23028 0.4790 +9688 23165 0.9990 +9688 23181 0.5640 +9688 23195 0.4950 +9688 23225 0.9930 +9688 23279 0.9910 +9688 23450 0.4080 +9688 23511 0.9990 +9688 23534 0.4050 +9688 23592 0.4240 +9688 23636 0.9990 +9688 25909 0.9890 +9688 25929 0.4510 +9688 26097 0.5730 +9688 26168 0.4080 +9688 26953 0.6660 +9688 27161 0.4330 +9688 29107 0.6330 +9688 29894 0.5140 +9688 30000 0.4160 +9688 50628 0.4200 +9688 51182 0.4860 +9688 51362 0.4380 +9688 51433 0.4160 +9688 51501 0.4940 +9688 51692 0.4730 +9688 51808 0.4680 +9688 53371 0.9990 +9688 53981 0.4770 +9688 54443 0.4600 +9688 54596 0.6770 +9688 54830 0.9110 +9688 55110 0.5590 +9688 55143 0.5900 +9688 55236 0.4900 +9688 55301 0.6490 +9688 55339 0.4770 +9688 55627 0.5010 +9688 55705 0.5440 +9688 55706 0.9980 +9688 55746 0.9980 +9688 57122 0.9990 +9688 57187 0.5630 +9688 57510 0.6710 +9688 57609 0.5640 +9688 57727 0.8250 +9688 64423 0.4270 +9688 65109 0.5060 +9688 79023 0.9880 +9688 79228 0.4890 +9688 79711 0.4770 +9688 79760 0.4160 +9688 79833 0.4160 +9688 79885 0.4430 +9688 79902 0.9990 +9688 80145 0.4690 +9688 80184 0.4450 +9688 80221 0.5610 +9688 81608 0.4510 +9688 81929 0.9990 +9688 84220 0.5670 +9688 84248 0.4130 +9688 84271 0.5860 +9688 84321 0.5870 +9688 84324 0.4460 +9688 84823 0.4140 +9688 84955 0.6350 +9688 91181 0.4670 +9688 91408 0.8360 +9688 91754 0.5420 +9688 91942 0.4410 +9688 116835 0.4490 +9688 129401 0.9990 +9688 136319 0.5070 +9688 137362 0.4140 +9688 140609 0.4350 +9688 140735 0.4370 +9688 150094 0.4430 +9688 157869 0.6490 +9688 197322 0.6520 +9688 199746 0.4430 +9688 259217 0.4490 +9688 348995 0.9940 +9688 376497 0.6540 +9688 653489 0.5760 +9688 728343 0.6270 +9688 729540 0.5670 +9688 729857 0.7950 +9688 100101267 0.9310 +9688 100526737 0.4460 +9689 9868 0.6490 +9689 10209 0.4280 +9689 10575 0.4250 +9689 10694 0.4160 +9689 22948 0.4150 +9689 28969 0.8390 +9689 51194 0.5280 +9689 51444 0.4190 +9689 53938 0.4900 +9689 60491 0.5720 +9689 79188 0.5450 +9689 121227 0.4200 +9689 285172 0.4860 +9689 286753 0.4470 +9690 9861 0.6960 +9690 9868 0.5350 +9690 9917 0.6460 +9690 10075 0.5330 +9690 10213 0.8850 +9690 10277 0.5270 +9690 10299 0.4810 +9690 10447 0.4340 +9690 10463 0.4150 +9690 11047 0.6260 +9690 11073 0.4050 +9690 11236 0.4110 +9690 23066 0.5130 +9690 23077 0.4590 +9690 23198 0.7260 +9690 23252 0.4830 +9690 23352 0.6310 +9690 23392 0.4090 +9690 26046 0.5150 +9690 51255 0.5140 +9690 51377 0.6260 +9690 54764 0.5660 +9690 55112 0.4060 +9690 55611 0.4330 +9690 55666 0.4890 +9690 56888 0.4760 +9690 56995 0.4290 +9690 57092 0.4220 +9690 64434 0.6130 +9690 79026 0.4480 +9690 81554 0.4320 +9690 84193 0.4170 +9690 84301 0.4500 +9690 134510 0.4200 +9690 140545 0.5580 +9690 197131 0.5240 +9692 10128 0.5980 +9692 10248 0.9370 +9692 10556 0.9320 +9692 10557 0.9320 +9692 10775 0.9440 +9692 10799 0.9260 +9692 10940 0.9320 +9692 10978 0.9000 +9692 11102 0.9010 +9692 22868 0.4140 +9692 22984 0.6060 +9692 23107 0.6050 +9692 23405 0.9080 +9692 23729 0.4120 +9692 26024 0.7100 +9692 26275 0.5680 +9692 26284 0.4340 +9692 26330 0.5620 +9692 26523 0.7200 +9692 26995 0.4860 +9692 27161 0.9030 +9692 29102 0.7330 +9692 51095 0.4330 +9692 51106 0.5000 +9692 51367 0.9630 +9692 54487 0.7200 +9692 54802 0.4790 +9692 54913 0.9290 +9692 54931 0.9990 +9692 55002 0.4080 +9692 55012 0.4830 +9692 55037 0.6220 +9692 55149 0.4450 +9692 55178 0.4590 +9692 57469 0.4500 +9692 57570 0.4190 +9692 60493 0.4510 +9692 60528 0.7280 +9692 64067 0.7660 +9692 64216 0.4350 +9692 65990 0.4990 +9692 79675 0.4080 +9692 79810 0.6720 +9692 79897 0.9310 +9692 79922 0.5650 +9692 80235 0.4360 +9692 80746 0.5570 +9692 81892 0.4430 +9692 84881 0.4270 +9692 87178 0.5460 +9692 93587 0.6620 +9692 137682 0.5750 +9692 138716 0.5940 +9692 144423 0.4530 +9692 158234 0.5470 +9692 161835 0.8050 +9692 192669 0.7200 +9692 192670 0.7200 +9692 283254 0.4870 +9692 283989 0.5400 +9692 340390 0.5730 +9692 387332 0.5270 +9692 399949 0.5270 +9693 9863 0.9890 +9693 10125 0.5050 +9693 10299 0.5740 +9693 10413 0.5080 +9693 10534 0.6450 +9693 11346 0.5800 +9693 22800 0.9280 +9693 22808 0.9760 +9693 23291 0.5380 +9693 50848 0.5750 +9693 51735 0.9630 +9693 51741 0.5100 +9693 54518 0.5120 +9693 56910 0.6500 +9693 57826 0.9660 +9693 83876 0.4400 +9693 115727 0.4750 +9693 221002 0.4660 +9693 260425 0.9310 +9693 401474 0.7580 +9694 9789 0.4200 +9694 10075 0.4440 +9694 10162 0.4780 +9694 10328 0.9990 +9694 10345 0.6030 +9694 10613 0.7070 +9694 10946 0.4660 +9694 11160 0.6320 +9694 11231 0.6200 +9694 23065 0.9990 +9694 23480 0.4050 +9694 23608 0.4960 +9694 25912 0.4120 +9694 27145 0.4500 +9694 28972 0.5530 +9694 30968 0.5170 +9694 50814 0.4040 +9694 51009 0.9040 +9694 51016 0.9990 +9694 51164 0.8920 +9694 51234 0.9990 +9694 51465 0.5330 +9694 54732 0.5800 +9694 55191 0.4830 +9694 55831 0.9990 +9694 55847 0.5790 +9694 56851 0.9990 +9694 57003 0.6550 +9694 63931 0.5290 +9694 80221 0.6260 +9694 80267 0.5770 +9694 80777 0.6960 +9694 83460 0.9990 +9694 93380 0.9990 +9694 201595 0.5050 +9694 283310 0.4330 +9694 284361 0.9990 +9694 286075 0.5010 +9694 337867 0.8470 +9694 404550 0.6590 +9695 9709 0.7330 +9695 9761 0.5230 +9695 10130 0.5660 +9695 10299 0.4960 +9695 10313 0.4600 +9695 10483 0.4980 +9695 10488 0.4320 +9695 10525 0.7950 +9695 10533 0.4320 +9695 10595 0.5680 +9695 10952 0.7710 +9695 10954 0.4430 +9695 10956 0.9520 +9695 11079 0.4690 +9695 11231 0.4390 +9695 11236 0.5380 +9695 11253 0.5030 +9695 22926 0.8960 +9695 23071 0.5430 +9695 23190 0.4780 +9695 23197 0.7520 +9695 23621 0.5010 +9695 23645 0.4830 +9695 27230 0.5560 +9695 27248 0.9100 +9695 29927 0.6430 +9695 29943 0.5530 +9695 29978 0.4340 +9695 30001 0.5880 +9695 51009 0.9600 +9695 51061 0.5860 +9695 51360 0.6040 +9695 51465 0.8260 +9695 51726 0.7840 +9695 54431 0.9980 +9695 54788 0.5500 +9695 55329 0.4920 +9695 55666 0.5490 +9695 55741 0.9180 +9695 55757 0.6980 +9695 55768 0.4290 +9695 55829 0.5220 +9695 56605 0.5650 +9695 56886 0.8530 +9695 64714 0.5530 +9695 64764 0.4070 +9695 79139 0.8660 +9695 80020 0.5250 +9695 80267 0.9380 +9695 80343 0.4210 +9695 81567 0.4430 +9695 84447 0.8700 +9695 84699 0.4900 +9695 91319 0.9310 +9695 148327 0.4040 +9695 168620 0.6000 +9695 201595 0.5130 +9696 9700 0.4200 +9696 9738 0.5480 +9696 9859 0.4940 +9696 10001 0.5210 +9696 10590 0.8320 +9696 10634 0.5800 +9696 10733 0.5880 +9696 10856 0.4010 +9696 11190 0.9080 +9696 11198 0.5230 +9696 22897 0.6700 +9696 22981 0.4390 +9696 22994 0.5220 +9696 22995 0.6160 +9696 23168 0.4140 +9696 23177 0.5310 +9696 23345 0.4300 +9696 27130 0.4890 +9696 29113 0.5410 +9696 51003 0.5450 +9696 51134 0.4350 +9696 51199 0.6290 +9696 54623 0.4180 +9696 54875 0.9220 +9696 55125 0.5650 +9696 55133 0.4510 +9696 55677 0.4920 +9696 55703 0.4290 +9696 55755 0.7900 +9696 55835 0.5310 +9696 60485 0.4460 +9696 79577 0.4590 +9696 79598 0.4760 +9696 79858 0.6870 +9696 80184 0.5010 +9696 80351 0.4220 +9696 84172 0.4520 +9696 84246 0.4530 +9696 84337 0.4560 +9696 84364 0.4960 +9696 84902 0.4200 +9696 85302 0.5440 +9696 85378 0.5910 +9696 116840 0.6300 +9696 121441 0.4850 +9696 134359 0.4200 +9696 153241 0.4210 +9696 163786 0.7110 +9696 201255 0.9810 +9696 283149 0.4360 +9697 11199 0.4010 +9697 11231 0.5370 +9697 23276 0.4460 +9697 28978 0.4640 +9697 29927 0.4690 +9697 51012 0.5310 +9697 51514 0.8290 +9697 54682 0.4320 +9697 81542 0.4540 +9697 83460 0.4020 +9697 114327 0.4210 +9697 151887 0.4810 +9697 100113407 0.4710 +9698 9736 0.4510 +9698 9774 0.4420 +9698 9801 0.7210 +9698 9804 0.4060 +9698 9829 0.5530 +9698 9898 0.6680 +9698 9908 0.6490 +9698 9931 0.4630 +9698 9933 0.5450 +9698 9991 0.5930 +9698 10053 0.5260 +9698 10055 0.5160 +9698 10063 0.6990 +9698 10075 0.4330 +9698 10146 0.6810 +9698 10181 0.4160 +9698 10244 0.4030 +9698 10250 0.4720 +9698 10291 0.5630 +9698 10427 0.4730 +9698 10455 0.4250 +9698 10526 0.5690 +9698 10618 0.5680 +9698 10642 0.4330 +9698 10657 0.4470 +9698 10658 0.6190 +9698 10717 0.5310 +9698 10914 0.4300 +9698 11011 0.4660 +9698 11273 0.5080 +9698 22828 0.4900 +9698 22887 0.4490 +9698 22929 0.4530 +9698 22930 0.4200 +9698 23013 0.4960 +9698 23019 0.7110 +9698 23196 0.5630 +9698 23215 0.5800 +9698 23318 0.4450 +9698 23367 0.5200 +9698 23369 0.7210 +9698 23405 0.6410 +9698 23431 0.5170 +9698 23435 0.5380 +9698 23521 0.4230 +9698 23543 0.8430 +9698 23557 0.5100 +9698 25836 0.4230 +9698 25977 0.5200 +9698 26057 0.8010 +9698 26058 0.4750 +9698 26065 0.5220 +9698 26135 0.4340 +9698 26523 0.5070 +9698 26986 0.5810 +9698 27067 0.4420 +9698 27131 0.5290 +9698 27161 0.6460 +9698 29066 0.4200 +9698 29102 0.4160 +9698 29883 0.8140 +9698 29896 0.4110 +9698 49856 0.4790 +9698 51322 0.5270 +9698 51366 0.4600 +9698 51429 0.5000 +9698 51441 0.5870 +9698 51499 0.4100 +9698 51585 0.4020 +9698 51663 0.4480 +9698 54462 0.4600 +9698 54464 0.4420 +9698 54542 0.4080 +9698 54885 0.5070 +9698 54915 0.4280 +9698 55209 0.5290 +9698 55870 0.5730 +9698 56829 0.4030 +9698 56993 0.4480 +9698 57223 0.4110 +9698 57472 0.4200 +9698 57532 0.4890 +9698 60680 0.5150 +9698 64506 0.5840 +9698 66037 0.4290 +9698 79923 0.5000 +9698 80114 0.4210 +9698 80315 0.4200 +9698 84274 0.4700 +9698 85302 0.4080 +9698 124801 0.5480 +9698 128178 0.5600 +9698 130340 0.5280 +9698 146713 0.6560 +9698 149041 0.6050 +9698 161424 0.5000 +9698 170506 0.4100 +9698 253943 0.5280 +9698 285521 0.4610 +9698 286451 0.5460 +9698 339345 0.6910 +9698 340719 0.8930 +9698 342977 0.7210 +9698 373863 0.4890 +9698 390748 0.4590 +9698 728378 0.4510 +9699 9783 0.4270 +9699 9892 0.5190 +9699 10497 0.9840 +9699 10567 0.7610 +9699 10981 0.4020 +9699 11069 0.9960 +9699 23025 0.9890 +9699 23085 0.8960 +9699 23254 0.4040 +9699 23504 0.9790 +9699 25879 0.5120 +9699 26059 0.8190 +9699 27445 0.8920 +9699 51560 0.4310 +9699 51762 0.4580 +9699 55156 0.4100 +9699 55186 0.4020 +9699 56995 0.4690 +9699 57030 0.4370 +9699 57403 0.4100 +9699 57578 0.6150 +9699 83851 0.4020 +9699 84079 0.4140 +9699 84275 0.4300 +9699 85376 0.8320 +9699 89781 0.4080 +9699 93664 0.4650 +9699 94121 0.4360 +9699 115827 0.9240 +9699 117177 0.5000 +9699 134957 0.4060 +9699 137835 0.4320 +9699 150221 0.8070 +9699 339302 0.4530 +9699 440279 0.9660 +9699 440804 0.8200 +9699 111064647 0.4490 +9700 9735 0.8590 +9700 9738 0.4410 +9700 9768 0.4980 +9700 9787 0.8200 +9700 9793 0.7270 +9700 9824 0.6580 +9700 9833 0.6590 +9700 9837 0.4200 +9700 9918 0.7220 +9700 9928 0.6900 +9700 9985 0.9930 +9700 10024 0.8460 +9700 10051 0.7100 +9700 10112 0.8960 +9700 10274 0.9890 +9700 10393 0.8950 +9700 10403 0.9250 +9700 10434 0.7970 +9700 10460 0.5880 +9700 10592 0.5930 +9700 10615 0.9220 +9700 10635 0.6000 +9700 10721 0.4410 +9700 10726 0.5750 +9700 10733 0.9060 +9700 10734 0.6680 +9700 10735 0.9870 +9700 10744 0.9990 +9700 10769 0.8710 +9700 10926 0.6120 +9700 11004 0.9390 +9700 11065 0.9270 +9700 11130 0.8460 +9700 11169 0.5390 +9700 11200 0.5020 +9700 11201 0.4190 +9700 11243 0.5280 +9700 22919 0.5280 +9700 22974 0.8100 +9700 23047 0.8040 +9700 23063 0.9590 +9700 23122 0.5840 +9700 23137 0.6420 +9700 23244 0.9470 +9700 23279 0.5300 +9700 23310 0.4070 +9700 23332 0.5980 +9700 23383 0.7250 +9700 23397 0.7190 +9700 23421 0.5110 +9700 23594 0.4400 +9700 23626 0.6270 +9700 24137 0.7770 +9700 25836 0.8870 +9700 25906 0.7020 +9700 25909 0.5760 +9700 25936 0.5450 +9700 26271 0.5680 +9700 26586 0.6770 +9700 27127 0.9760 +9700 27152 0.4450 +9700 27338 0.7480 +9700 29127 0.6270 +9700 29128 0.5510 +9700 29882 0.5780 +9700 29945 0.7470 +9700 51143 0.5090 +9700 51203 0.7040 +9700 51343 0.6950 +9700 51433 0.7890 +9700 51434 0.5480 +9700 51490 0.4250 +9700 51512 0.5240 +9700 51514 0.4270 +9700 51529 0.7720 +9700 51668 0.5230 +9700 54438 0.4250 +9700 54443 0.5640 +9700 54820 0.5160 +9700 54821 0.7570 +9700 54892 0.7330 +9700 54908 0.5950 +9700 54962 0.4660 +9700 55010 0.4490 +9700 55055 0.8720 +9700 55063 0.6690 +9700 55125 0.4350 +9700 55143 0.9720 +9700 55165 0.7430 +9700 55166 0.5370 +9700 55215 0.4850 +9700 55355 0.8450 +9700 55388 0.7190 +9700 55635 0.6640 +9700 55723 0.6040 +9700 55732 0.4010 +9700 55746 0.5360 +9700 55789 0.4810 +9700 55835 0.4540 +9700 55839 0.8040 +9700 55844 0.4730 +9700 55920 0.5890 +9700 56992 0.7600 +9700 57082 0.8010 +9700 57122 0.5980 +9700 57405 0.7630 +9700 57505 0.4930 +9700 57551 0.4990 +9700 57650 0.4020 +9700 60314 0.4320 +9700 63922 0.8340 +9700 63967 0.5700 +9700 64105 0.6070 +9700 64151 0.7300 +9700 64682 0.6440 +9700 64946 0.6130 +9700 79003 0.5650 +9700 79019 0.7030 +9700 79023 0.5610 +9700 79172 0.6410 +9700 79677 0.5530 +9700 79682 0.6830 +9700 79733 0.6330 +9700 79781 0.4030 +9700 79801 0.6820 +9700 79902 0.5380 +9700 79915 0.4080 +9700 79935 0.4640 +9700 79980 0.6740 +9700 80119 0.4240 +9700 80152 0.6320 +9700 80198 0.4830 +9700 80776 0.5560 +9700 81565 0.5080 +9700 81610 0.4100 +9700 81620 0.7640 +9700 81624 0.5590 +9700 81669 0.5440 +9700 81929 0.5330 +9700 81930 0.7530 +9700 83461 0.7190 +9700 83540 0.8410 +9700 83903 0.5390 +9700 84072 0.4750 +9700 84643 0.7660 +9700 84930 0.6040 +9700 84975 0.4960 +9700 85417 0.5970 +9700 89839 0.5700 +9700 90381 0.6270 +9700 90417 0.4010 +9700 91687 0.5840 +9700 112950 0.4950 +9700 113130 0.9300 +9700 114799 0.8700 +9700 119504 0.6180 +9700 124602 0.5500 +9700 126520 0.8510 +9700 128239 0.7240 +9700 139189 0.4160 +9700 140735 0.5250 +9700 144455 0.4140 +9700 146909 0.8500 +9700 147841 0.6920 +9700 150280 0.4770 +9700 150468 0.4150 +9700 151246 0.9130 +9700 151648 0.9760 +9700 152098 0.6690 +9700 157313 0.6150 +9700 157570 0.8740 +9700 158763 0.4370 +9700 160851 0.4160 +9700 163786 0.6150 +9700 164684 0.4050 +9700 166979 0.7630 +9700 197131 0.4790 +9700 220134 0.8170 +9700 221150 0.4390 +9700 246184 0.6220 +9700 259266 0.8570 +9700 286151 0.4650 +9700 348235 0.5760 +9700 348995 0.5440 +9700 378708 0.6220 +9700 401541 0.6200 +9700 440093 0.5010 +9700 440686 0.5010 +9700 494551 0.4220 +9700 642636 0.7770 +9700 653604 0.5010 +9700 728637 0.5810 +9701 9989 0.5870 +9701 10336 0.4300 +9701 22870 0.6810 +9701 23243 0.9350 +9701 23451 0.9250 +9701 25771 0.5440 +9701 27037 0.4400 +9701 27304 0.4490 +9701 27352 0.4490 +9701 51343 0.6790 +9701 54808 0.4110 +9701 54859 0.5750 +9701 55140 0.4760 +9701 55291 0.5230 +9701 57718 0.4350 +9701 81605 0.4660 +9701 84908 0.4810 +9701 90353 0.4890 +9701 91526 0.9140 +9701 112970 0.6320 +9701 134510 0.4110 +9701 151987 0.6020 +9701 221496 0.5330 +9701 223082 0.4410 +9701 283373 0.9430 +9701 285381 0.6810 +9701 388650 0.4930 +9701 414918 0.4750 +9702 10133 0.5070 +9702 10382 0.4390 +9702 10733 0.6370 +9702 22897 0.4780 +9702 22994 0.4120 +9702 22995 0.7840 +9702 23354 0.5160 +9702 29883 0.4130 +9702 54801 0.5360 +9702 54875 0.5100 +9702 54930 0.5040 +9702 55031 0.4380 +9702 55125 0.5040 +9702 55142 0.6000 +9702 55559 0.4990 +9702 55755 0.4450 +9702 79101 0.4230 +9702 79441 0.5090 +9702 79571 0.4220 +9702 79866 0.5670 +9702 80184 0.6120 +9702 84617 0.4790 +9702 93323 0.5560 +9702 115106 0.5290 +9702 116369 0.4240 +9702 117177 0.4990 +9702 121441 0.4070 +9702 134359 0.4500 +9702 143684 0.5450 +9702 153241 0.4120 +9702 159989 0.5410 +9702 163786 0.4970 +9702 203068 0.4590 +9702 282809 0.4190 +9702 283489 0.4420 +9702 728642 0.5200 +9703 23064 0.4480 +9703 29101 0.5030 +9703 54947 0.4350 +9703 55658 0.4550 +9703 79772 0.4190 +9703 140545 0.4060 +9703 165721 0.4230 +9704 9724 0.6000 +9704 9726 0.4730 +9704 9775 0.8040 +9704 9785 0.6890 +9704 9790 0.4410 +9704 9887 0.6440 +9704 10171 0.4780 +9704 10199 0.6050 +9704 10212 0.6080 +9704 10569 0.6760 +9704 10594 0.6290 +9704 10607 0.4890 +9704 10813 0.6000 +9704 10856 0.4030 +9704 10885 0.4260 +9704 11056 0.4510 +9704 11103 0.6160 +9704 22794 0.4930 +9704 22916 0.4620 +9704 22938 0.5810 +9704 22984 0.4660 +9704 23020 0.4840 +9704 23049 0.8530 +9704 23160 0.6480 +9704 23223 0.4180 +9704 23293 0.6560 +9704 23379 0.4800 +9704 23381 0.7060 +9704 23517 0.5340 +9704 23524 0.4980 +9704 24144 0.4860 +9704 25949 0.5970 +9704 25983 0.6320 +9704 26019 0.8540 +9704 26986 0.5380 +9704 27037 0.4180 +9704 27042 0.6410 +9704 27339 0.8010 +9704 28987 0.4460 +9704 29889 0.6020 +9704 50618 0.5080 +9704 51096 0.6670 +9704 51202 0.4560 +9704 51340 0.6470 +9704 51362 0.8350 +9704 51503 0.5510 +9704 51575 0.6380 +9704 51594 0.5090 +9704 53407 0.4080 +9704 54555 0.7390 +9704 54865 0.4540 +9704 54883 0.4920 +9704 54984 0.5680 +9704 55105 0.5270 +9704 55110 0.4390 +9704 55181 0.8590 +9704 55272 0.7010 +9704 55629 0.4640 +9704 55668 0.4860 +9704 55696 0.6010 +9704 55702 0.5100 +9704 55760 0.5860 +9704 55813 0.6460 +9704 56006 0.8620 +9704 56949 0.6570 +9704 57050 0.6820 +9704 57062 0.4510 +9704 57696 0.4510 +9704 57703 0.6670 +9704 60625 0.4590 +9704 64434 0.6480 +9704 64794 0.4100 +9704 65083 0.6780 +9704 65109 0.6400 +9704 65110 0.8460 +9704 79039 0.7040 +9704 79050 0.4750 +9704 79446 0.5380 +9704 79954 0.4150 +9704 80336 0.4110 +9704 83479 0.5360 +9704 84258 0.4560 +9704 84916 0.4480 +9704 84946 0.4130 +9704 90957 0.5330 +9704 91056 0.4100 +9704 92856 0.6610 +9704 116729 0.5600 +9704 165545 0.5640 +9704 222183 0.4900 +9704 100131137 0.4010 +9705 115294 0.6050 +9705 144100 0.4460 +9705 282966 0.5180 +9706 9711 0.4210 +9706 9776 0.9980 +9706 9821 0.9990 +9706 9919 0.6570 +9706 10241 0.4450 +9706 10519 0.6560 +9706 10533 0.8320 +9706 10871 0.4470 +9706 11152 0.4900 +9706 11337 0.8920 +9706 11345 0.9360 +9706 22863 0.9850 +9706 23130 0.9890 +9706 23192 0.9380 +9706 23207 0.5250 +9706 23710 0.9430 +9706 26100 0.9280 +9706 29982 0.9420 +9706 30849 0.9960 +9706 51030 0.4930 +9706 51422 0.4060 +9706 53349 0.5630 +9706 55014 0.5360 +9706 55054 0.8540 +9706 55062 0.9170 +9706 55102 0.9900 +9706 55201 0.4790 +9706 55332 0.5070 +9706 55626 0.7870 +9706 56270 0.4070 +9706 57521 0.9660 +9706 60673 0.9990 +9706 64223 0.9370 +9706 64422 0.9640 +9706 64798 0.9320 +9706 65018 0.4910 +9706 79065 0.9070 +9706 79443 0.4310 +9706 81631 0.8410 +9706 81671 0.6610 +9706 83734 0.7020 +9706 84335 0.9240 +9706 84557 0.7110 +9706 84938 0.8240 +9706 84971 0.8160 +9706 89849 0.7850 +9706 115201 0.9320 +9706 139341 0.4050 +9706 140775 0.9210 +9706 201158 0.4950 +9706 203228 0.9130 +9706 284040 0.4970 +9706 285973 0.8980 +9706 317781 0.4450 +9706 414301 0.5250 +9706 440738 0.6890 +9706 441925 0.9840 +9706 643246 0.5490 +9706 780776 0.4930 +9706 100533496 0.4930 +9708 56106 0.4390 +9708 56107 0.7700 +9708 56109 0.6410 +9708 56110 0.7410 +9708 56111 0.7340 +9708 128366 0.4800 +9709 10130 0.4060 +9709 10133 0.4300 +9709 10456 0.5030 +9709 10525 0.4750 +9709 22926 0.6320 +9709 23645 0.4650 +9709 23753 0.5410 +9709 27230 0.4010 +9709 29978 0.4590 +9709 30001 0.4750 +9709 51009 0.6690 +9709 51360 0.4120 +9709 51439 0.5930 +9709 51726 0.4550 +9709 55666 0.5230 +9709 55829 0.6840 +9709 56605 0.5720 +9709 56893 0.4320 +9709 57761 0.4970 +9709 59307 0.4230 +9709 65260 0.4370 +9709 79094 0.4530 +9709 79139 0.6530 +9709 79174 0.5590 +9709 84447 0.9260 +9709 90441 0.4160 +9709 91319 0.5700 +9709 91624 0.5110 +9710 9866 0.4280 +9710 9980 0.4020 +9710 10006 0.4010 +9710 10152 0.5790 +9710 10163 0.4040 +9710 10787 0.7020 +9710 23033 0.4160 +9710 23075 0.4260 +9710 23580 0.4010 +9710 25894 0.4160 +9710 26030 0.5730 +9710 26050 0.4080 +9710 54987 0.4470 +9710 55004 0.4260 +9710 55023 0.4320 +9710 55196 0.5490 +9710 55316 0.4430 +9710 55914 0.4090 +9710 55971 0.4320 +9710 64793 0.4100 +9710 79596 0.4120 +9710 151354 0.4240 +9711 9776 0.5530 +9711 9821 0.6290 +9711 10533 0.7730 +9711 11337 0.4340 +9711 11345 0.4530 +9711 22863 0.9840 +9711 23339 0.4450 +9711 23503 0.4160 +9711 23623 0.4340 +9711 23645 0.4700 +9711 23710 0.4520 +9711 26100 0.5180 +9711 29982 0.6070 +9711 30849 0.9910 +9711 51100 0.7620 +9711 53349 0.5970 +9711 55014 0.4530 +9711 55054 0.5290 +9711 55062 0.4680 +9711 55626 0.8430 +9711 60673 0.4880 +9711 64422 0.4920 +9711 81631 0.5440 +9711 83734 0.4730 +9711 152007 0.5030 +9711 441925 0.6470 +9712 9779 0.4120 +9712 9847 0.4320 +9712 10006 0.6340 +9712 10467 0.4200 +9712 11060 0.4200 +9712 23011 0.4310 +9712 54453 0.4090 +9712 55614 0.4130 +9712 55633 0.4030 +9712 79746 0.5690 +9712 80256 0.4690 +9712 83695 0.4120 +9712 128637 0.5550 +9712 260425 0.4540 +9712 339122 0.9190 +9715 9815 0.4210 +9715 9901 0.6610 +9715 10018 0.4990 +9715 10142 0.6320 +9715 10533 0.4990 +9715 10569 0.4310 +9715 10827 0.4990 +9715 11044 0.4990 +9715 22906 0.4990 +9715 23164 0.4990 +9715 23359 0.4170 +9715 23380 0.6250 +9715 23499 0.4200 +9715 23608 0.6570 +9715 25789 0.4340 +9715 27044 0.4990 +9715 54845 0.5410 +9715 55109 0.5290 +9715 55750 0.5550 +9715 55819 0.7580 +9715 56829 0.5030 +9715 57085 0.5560 +9715 57670 0.8950 +9715 80853 0.5190 +9715 132332 0.4340 +9715 153527 0.4560 +9715 165215 0.4010 +9715 284339 0.4230 +9715 388021 0.4810 +9715 643965 0.4540 +9716 9775 0.9890 +9716 9785 0.8490 +9716 9790 0.5420 +9716 9931 0.5770 +9716 9939 0.9460 +9716 10078 0.7000 +9716 10084 0.6240 +9716 10250 0.9030 +9716 10262 0.8050 +9716 10283 0.8570 +9716 10286 0.9990 +9716 10291 0.8800 +9716 10450 0.9990 +9716 10569 0.9600 +9716 10594 0.9990 +9716 10907 0.4050 +9716 10915 0.5060 +9716 10921 0.5710 +9716 10946 0.8790 +9716 10973 0.6750 +9716 10992 0.8080 +9716 11193 0.4090 +9716 11196 0.5660 +9716 11338 0.6070 +9716 22794 0.9540 +9716 22894 0.4460 +9716 22938 0.9980 +9716 22944 0.8030 +9716 23020 0.9940 +9716 23082 0.4090 +9716 23274 0.4490 +9716 23279 0.4420 +9716 23398 0.8490 +9716 23450 0.9010 +9716 23451 0.9000 +9716 23524 0.9940 +9716 23658 0.4060 +9716 23759 0.8390 +9716 24144 0.6410 +9716 24148 0.5450 +9716 25782 0.5380 +9716 25949 0.9960 +9716 25980 0.4840 +9716 26017 0.8010 +9716 27339 0.9990 +9716 51163 0.4260 +9716 51340 0.9990 +9716 51362 0.9990 +9716 51366 0.5100 +9716 51428 0.4090 +9716 51503 0.9970 +9716 51634 0.8010 +9716 51639 0.8450 +9716 51645 0.9980 +9716 54521 0.5090 +9716 54883 0.8450 +9716 55100 0.8110 +9716 55110 0.9500 +9716 55234 0.5820 +9716 55322 0.4360 +9716 55627 0.4010 +9716 55696 0.9990 +9716 55702 0.9420 +9716 55832 0.4320 +9716 56259 0.8130 +9716 56949 0.9990 +9716 57102 0.4370 +9716 57461 0.9950 +9716 57703 0.9960 +9716 58509 0.8090 +9716 59286 0.8750 +9716 79084 0.4960 +9716 79446 0.8430 +9716 79576 0.8270 +9716 79577 0.4440 +9716 79631 0.5880 +9716 79650 0.6790 +9716 79664 0.4520 +9716 79706 0.9380 +9716 79753 0.8910 +9716 80011 0.8040 +9716 83443 0.8020 +9716 84292 0.7960 +9716 84811 0.8180 +9716 84844 0.8040 +9716 84950 0.9400 +9716 84967 0.4220 +9716 85476 0.6900 +9716 90806 0.4360 +9716 91603 0.9910 +9716 124245 0.4360 +9716 143884 0.9120 +9716 151903 0.4940 +9716 153527 0.8760 +9716 163859 0.8300 +9716 164045 0.5850 +9716 199746 0.4990 +9716 253143 0.4520 +9716 100534599 0.9320 +9717 56052 0.9590 +9717 60484 0.4490 +9717 63982 0.4490 +9717 123688 0.4240 +9717 203523 0.4120 +9717 254225 0.4250 +9717 260429 0.4750 +9718 10282 0.4540 +9718 10344 0.4030 +9718 23028 0.4760 +9718 23186 0.4310 +9718 23379 0.4780 +9718 23621 0.4580 +9718 55758 0.4290 +9718 79665 0.5130 +9718 751071 0.4030 +9718 110599564 0.8580 +9719 23275 0.7140 +9719 30008 0.4260 +9719 80332 0.4220 +9719 81794 0.6380 +9719 84467 0.4160 +9719 84897 0.6040 +9719 115939 0.4490 +9719 145173 0.6730 +9719 642968 0.4100 +9720 54621 0.4180 +9720 55279 0.5290 +9720 56311 0.5740 +9720 80313 0.4290 +9720 84218 0.4460 +9720 124773 0.5340 +9720 124923 0.4590 +9720 124989 0.4910 +9720 144404 0.4060 +9720 146853 0.4140 +9720 146861 0.5200 +9720 162387 0.4370 +9720 162517 0.4180 +9720 254272 0.5860 +9720 256223 0.5990 +9720 339168 0.4470 +9720 353149 0.4790 +9720 374286 0.4530 +9720 375190 0.4720 +9720 388333 0.4800 +9720 414059 0.4510 +9720 643664 0.5070 +9720 100130933 0.4180 +9720 100505591 0.4810 +9720 100505724 0.4290 +9720 101060321 0.4790 +9720 101060351 0.4020 +9721 9747 0.4610 +9721 9901 0.8500 +9721 10288 0.4280 +9721 11185 0.4100 +9721 22941 0.4880 +9721 23380 0.8580 +9721 26095 0.5140 +9721 54490 0.4910 +9721 54768 0.9140 +9721 55672 0.8410 +9721 56940 0.4390 +9721 63967 0.4590 +9721 66004 0.4200 +9721 83849 0.5560 +9721 84033 0.4560 +9721 85443 0.4160 +9721 94025 0.4720 +9721 116443 0.4760 +9721 139599 0.5000 +9721 140735 0.4530 +9721 169355 0.4410 +9721 221504 0.4430 +9721 285513 0.6320 +9721 728340 0.4250 +9721 100996758 0.6490 +9721 102724488 0.5220 +9722 9857 0.4350 +9722 9992 0.5100 +9722 10142 0.4390 +9722 22926 0.4200 +9722 23171 0.4790 +9722 23513 0.8570 +9722 25903 0.4880 +9722 27185 0.6090 +9722 29801 0.5580 +9722 51070 0.4420 +9722 51428 0.6200 +9722 51538 0.4200 +9722 51655 0.9960 +9722 54751 0.5110 +9722 54930 0.5110 +9722 57216 0.5030 +9722 64222 0.4090 +9722 64785 0.4480 +9722 65009 0.4700 +9722 79576 0.6210 +9722 79745 0.4190 +9722 81839 0.5610 +9722 84062 0.6340 +9722 84962 0.5110 +9722 85403 0.4200 +9722 91752 0.5240 +9722 126374 0.5110 +9722 127933 0.4740 +9722 154664 0.4240 +9722 163589 0.4020 +9722 267012 0.6050 +9722 319100 0.5310 +9722 345062 0.4940 +9722 388591 0.6070 +9722 400793 0.9430 +9723 10154 0.7610 +9723 23129 0.9990 +9723 23167 0.4480 +9723 23654 0.5390 +9723 26012 0.4100 +9723 54437 0.4500 +9723 54538 0.5260 +9723 55558 0.8790 +9723 55636 0.8450 +9723 57381 0.4410 +9723 57556 0.5250 +9723 81832 0.6000 +9723 91584 0.8190 +9723 646862 0.4020 +9724 9732 0.4810 +9724 9775 0.5460 +9724 9785 0.4300 +9724 9790 0.9780 +9724 9875 0.4210 +9724 9904 0.8050 +9724 9933 0.7700 +9724 10153 0.8420 +9724 10171 0.9120 +9724 10199 0.9870 +9724 10200 0.4490 +9724 10436 0.9560 +9724 10438 0.7470 +9724 10514 0.5310 +9724 10526 0.5250 +9724 10527 0.4770 +9724 10528 0.9700 +9724 10557 0.6660 +9724 10607 0.9650 +9724 10623 0.4750 +9724 10813 0.9610 +9724 10849 0.5310 +9724 10885 0.9860 +9724 10943 0.4510 +9724 10969 0.8410 +9724 11056 0.7470 +9724 11103 0.9750 +9724 11137 0.6910 +9724 11180 0.4540 +9724 11340 0.7550 +9724 22803 0.4500 +9724 22907 0.4190 +9724 22984 0.9790 +9724 23016 0.6990 +9724 23029 0.7030 +9724 23054 0.6630 +9724 23076 0.6130 +9724 23160 0.9760 +9724 23204 0.5180 +9724 23212 0.6160 +9724 23223 0.7790 +9724 23246 0.8610 +9724 23378 0.6500 +9724 23404 0.7470 +9724 23481 0.8060 +9724 23517 0.9150 +9724 23560 0.7200 +9724 25879 0.9770 +9724 25885 0.6390 +9724 25926 0.5930 +9724 25983 0.9780 +9724 26155 0.8510 +9724 26156 0.9650 +9724 26168 0.5380 +9724 26354 0.6340 +9724 26574 0.9770 +9724 27042 0.8380 +9724 27043 0.5270 +9724 27292 0.7620 +9724 27340 0.9700 +9724 27341 0.9380 +9724 28987 0.7530 +9724 29127 0.4030 +9724 29777 0.5930 +9724 29889 0.7340 +9724 29997 0.8140 +9724 30836 0.9220 +9724 51010 0.7260 +9724 51013 0.7700 +9724 51018 0.4070 +9724 51065 0.7310 +9724 51068 0.6690 +9724 51073 0.4880 +9724 51077 0.9560 +9724 51081 0.5080 +9724 51096 0.9860 +9724 51106 0.5370 +9724 51118 0.9670 +9724 51149 0.6290 +9724 51154 0.6490 +9724 51187 0.6410 +9724 51202 0.4760 +9724 51319 0.5260 +9724 51388 0.5980 +9724 51538 0.4570 +9724 51575 0.8460 +9724 51602 0.9720 +9724 54475 0.4490 +9724 54505 0.4350 +9724 54512 0.7360 +9724 54517 0.4150 +9724 54552 0.6550 +9724 54555 0.4890 +9724 54606 0.7660 +9724 54663 0.5580 +9724 54881 0.5820 +9724 54888 0.4280 +9724 55003 0.4510 +9724 55127 0.9570 +9724 55131 0.9310 +9724 55153 0.7730 +9724 55226 0.9630 +9724 55272 0.9420 +9724 55299 0.6380 +9724 55319 0.5440 +9724 55341 0.7220 +9724 55601 0.4640 +9724 55622 0.4060 +9724 55651 0.6530 +9724 55695 0.4030 +9724 55703 0.5770 +9724 55720 0.7190 +9724 55759 0.7000 +9724 55760 0.5850 +9724 55781 0.4650 +9724 55794 0.4020 +9724 55813 0.9840 +9724 56342 0.6230 +9724 56902 0.9180 +9724 56915 0.7820 +9724 56919 0.6410 +9724 57050 0.9890 +9724 57062 0.7190 +9724 57418 0.6860 +9724 57647 0.5330 +9724 57696 0.4730 +9724 60487 0.4060 +9724 60625 0.6040 +9724 64118 0.4510 +9724 64216 0.5510 +9724 64318 0.7960 +9724 64396 0.4300 +9724 64425 0.7100 +9724 64434 0.6970 +9724 64794 0.5100 +9724 64848 0.4350 +9724 64960 0.5460 +9724 64963 0.5090 +9724 65083 0.9810 +9724 65095 0.7200 +9724 79039 0.6790 +9724 79050 0.9530 +9724 79159 0.5560 +9724 79571 0.6940 +9724 79665 0.4620 +9724 79707 0.5730 +9724 79954 0.9870 +9724 80135 0.6130 +9724 81887 0.6130 +9724 83732 0.4400 +9724 83743 0.6600 +9724 84128 0.9650 +9724 84135 0.9570 +9724 84154 0.7490 +9724 84172 0.5430 +9724 84294 0.8870 +9724 84365 0.7310 +9724 84445 0.5880 +9724 84549 0.7910 +9724 84916 0.9850 +9724 84946 0.7440 +9724 88745 0.7580 +9724 90121 0.6110 +9724 90957 0.4350 +9724 92856 0.9740 +9724 116966 0.5930 +9724 117246 0.9120 +9724 118460 0.6510 +9724 122402 0.4190 +9724 126402 0.5080 +9724 140032 0.5270 +9724 144165 0.4820 +9724 146212 0.6870 +9724 153443 0.5220 +9724 155368 0.4400 +9724 158431 0.4310 +9724 161424 0.7210 +9724 165545 0.5700 +9724 170506 0.4230 +9724 221078 0.7110 +9724 221830 0.6330 +9724 255308 0.5030 +9724 283106 0.4860 +9724 283464 0.4140 +9724 345630 0.9000 +9724 440138 0.5210 +9724 441273 0.4470 +9724 494115 0.4270 +9724 641776 0.4030 +9724 643909 0.4030 +9724 692312 0.6200 +9724 728524 0.4030 +9724 100996746 0.4030 +9724 105180390 0.4030 +9724 105180391 0.4030 +9725 9780 0.4020 +9725 10239 0.4380 +9725 10430 0.6500 +9725 23556 0.4460 +9725 29920 0.4310 +9725 51114 0.4240 +9725 54872 0.4100 +9725 56063 0.4300 +9725 56926 0.4030 +9725 83862 0.4650 +9725 130589 0.5880 +9725 401548 0.4400 +9726 9810 0.5180 +9726 9827 0.4510 +9726 10038 0.4010 +9726 10412 0.4490 +9726 25853 0.4230 +9726 26205 0.4660 +9726 27143 0.4800 +9726 51320 0.4620 +9726 54520 0.4160 +9726 56948 0.4390 +9726 56970 0.5220 +9726 64857 0.4090 +9726 79759 0.4690 +9726 79842 0.4310 +9726 83695 0.4750 +9726 84148 0.5700 +9726 84189 0.4970 +9726 91056 0.4830 +9726 140461 0.4410 +9726 140766 0.4570 +9726 146547 0.4120 +9726 254359 0.4870 +9726 283933 0.5400 +9726 284004 0.4070 +9726 339105 0.4050 +9726 387914 0.5040 +9726 100131017 0.4920 +9727 9742 0.4160 +9727 9744 0.4630 +9727 10311 0.4150 +9727 10640 0.5940 +9727 10869 0.4030 +9727 11021 0.4620 +9727 11127 0.4910 +9727 11336 0.6090 +9727 22841 0.9650 +9727 22981 0.6060 +9727 23116 0.4520 +9727 23265 0.8900 +9727 23299 0.7300 +9727 23527 0.5090 +9727 26056 0.9470 +9727 26063 0.5680 +9727 29127 0.4960 +9727 50807 0.9490 +9727 51143 0.7770 +9727 51199 0.4520 +9727 51361 0.6270 +9727 51552 0.4230 +9727 54536 0.7000 +9727 54908 0.4660 +9727 55763 0.5140 +9727 55770 0.5830 +9727 57111 0.8960 +9727 57568 0.4260 +9727 60412 0.5220 +9727 64145 0.4070 +9727 79006 0.4230 +9727 80223 0.9390 +9727 80851 0.4690 +9727 84376 0.7450 +9727 84440 0.9640 +9727 84766 0.4560 +9727 88745 0.4720 +9727 89953 0.4640 +9727 91461 0.4440 +9727 92558 0.7320 +9727 117177 0.9900 +9727 145258 0.8410 +9727 146325 0.5440 +9727 146439 0.4990 +9727 149371 0.5220 +9727 158158 0.5000 +9727 166348 0.4920 +9727 170850 0.4310 +9727 200942 0.4520 +9727 339834 0.4350 +9727 375567 0.4250 +9727 391475 0.4080 +9727 100130988 0.4510 +9728 10574 0.4020 +9728 22930 0.4450 +9728 23041 0.4470 +9728 25936 0.6810 +9728 51714 0.4220 +9728 55102 0.5100 +9728 55870 0.4990 +9728 60678 0.5110 +9728 84162 0.4330 +9728 118672 0.4300 +9728 170482 0.4160 +9728 197131 0.4530 +9728 253959 0.4400 +9728 339416 0.5350 +9729 10623 0.5910 +9729 25974 0.4740 +9729 51225 0.7170 +9729 56203 0.4080 +9729 57475 0.4150 +9729 80167 0.4600 +9729 89887 0.5750 +9729 126069 0.4760 +9729 149175 0.4530 +9729 155185 0.4090 +9729 352999 0.4610 +9729 387104 0.7150 +9729 387357 0.4040 +9729 553158 0.4160 +9729 100381270 0.4170 +9730 9738 0.5000 +9730 9972 0.5250 +9730 9978 0.9990 +9730 10238 0.9080 +9730 10309 0.5600 +9730 10427 0.4170 +9730 10456 0.4110 +9730 10535 0.4510 +9730 10920 0.6700 +9730 10980 0.7580 +9730 10985 0.4530 +9730 10987 0.8310 +9730 11059 0.4320 +9730 11083 0.4570 +9730 11104 0.4440 +9730 11137 0.4060 +9730 11146 0.7500 +9730 11277 0.4400 +9730 23038 0.6520 +9730 23070 0.4650 +9730 23272 0.5030 +9730 23583 0.4690 +9730 25853 0.9320 +9730 25879 0.9430 +9730 25939 0.9950 +9730 26043 0.5600 +9730 26094 0.9430 +9730 26133 0.9100 +9730 26524 0.5020 +9730 27338 0.4670 +9730 50488 0.4060 +9730 50717 0.9330 +9730 50813 0.5240 +9730 51138 0.6700 +9730 51185 0.9190 +9730 51366 0.8100 +9730 51514 0.9960 +9730 51547 0.7530 +9730 54461 0.9220 +9730 54790 0.8330 +9730 54876 0.9060 +9730 55070 0.9280 +9730 55388 0.8670 +9730 55626 0.9470 +9730 55827 0.9320 +9730 57805 0.5210 +9730 60489 0.5130 +9730 64326 0.9190 +9730 64708 0.5640 +9730 79016 0.9950 +9730 79269 0.9300 +9730 79621 0.4640 +9730 80067 0.9330 +9730 80198 0.7900 +9730 80344 0.9460 +9730 81620 0.8410 +9730 81669 0.7890 +9730 84131 0.7660 +9730 84153 0.4660 +9730 84172 0.5420 +9730 84464 0.8680 +9730 84619 0.4150 +9730 85363 0.4020 +9730 90379 0.9440 +9730 93621 0.4170 +9730 138009 0.5750 +9730 139170 0.5630 +9730 139425 0.5950 +9730 146956 0.6490 +9730 149628 0.6090 +9730 154796 0.4490 +9730 154810 0.5020 +9730 196441 0.4020 +9730 197370 0.4450 +9730 200424 0.4570 +9730 256987 0.5610 +9730 285429 0.6370 +9730 339230 0.4100 +9730 340578 0.5630 +9730 347442 0.5950 +9730 440093 0.5240 +9730 440686 0.5240 +9730 653604 0.5510 +9731 9738 0.8560 +9731 9786 0.4500 +9731 9793 0.4050 +9731 9855 0.4610 +9731 9923 0.4500 +9731 11020 0.4600 +9731 22897 0.5110 +9731 23116 0.5900 +9731 23247 0.6890 +9731 23322 0.4190 +9731 54806 0.4340 +9731 55835 0.5320 +9731 57470 0.7160 +9731 79598 0.8260 +9731 79786 0.4570 +9731 79791 0.4390 +9731 79848 0.6110 +9731 80184 0.6970 +9731 80210 0.4390 +9731 84902 0.6300 +9731 91147 0.4040 +9731 128637 0.5270 +9731 145508 0.5430 +9731 146057 0.5550 +9731 148870 0.4810 +9731 200014 0.5320 +9731 200894 0.4210 +9731 339448 0.5150 +9731 347240 0.5010 +9732 9790 0.5650 +9732 9844 0.9350 +9732 9856 0.4270 +9732 9858 0.6110 +9732 10171 0.4110 +9732 10199 0.5650 +9732 10209 0.5720 +9732 10289 0.5720 +9732 10399 0.8950 +9732 10412 0.8490 +9732 10436 0.5800 +9732 10473 0.7390 +9732 10528 0.8100 +9732 10537 0.4960 +9732 10556 0.5290 +9732 10594 0.4440 +9732 10607 0.5660 +9732 10788 0.4310 +9732 10813 0.4810 +9732 10885 0.5450 +9732 10952 0.4830 +9732 10969 0.8500 +9732 10985 0.7590 +9732 10988 0.4680 +9732 11103 0.7170 +9732 11179 0.5880 +9732 11222 0.6870 +9732 11224 0.9550 +9732 22927 0.6990 +9732 22941 0.4700 +9732 22984 0.5620 +9732 23076 0.6370 +9732 23148 0.6640 +9732 23160 0.5090 +9732 23173 0.4980 +9732 23181 0.4290 +9732 23204 0.6380 +9732 23212 0.5540 +9732 23246 0.8840 +9732 23481 0.8570 +9732 23521 0.9320 +9732 23560 0.7910 +9732 23640 0.5940 +9732 25873 0.9740 +9732 25879 0.4810 +9732 25983 0.5340 +9732 26135 0.6990 +9732 26155 0.8470 +9732 26156 0.8290 +9732 26354 0.6220 +9732 26574 0.5420 +9732 26751 0.5930 +9732 26995 0.6220 +9732 27237 0.4760 +9732 27335 0.5980 +9732 27340 0.5320 +9732 27341 0.5220 +9732 28991 0.4890 +9732 28998 0.6730 +9732 29088 0.5040 +9732 29093 0.6760 +9732 29889 0.5510 +9732 29927 0.4150 +9732 29997 0.7720 +9732 30836 0.4890 +9732 51018 0.5630 +9732 51042 0.4410 +9732 51065 0.8690 +9732 51068 0.7310 +9732 51069 0.6880 +9732 51073 0.6720 +9732 51077 0.5680 +9732 51081 0.8570 +9732 51096 0.5550 +9732 51116 0.6110 +9732 51118 0.5330 +9732 51119 0.5800 +9732 51121 0.9190 +9732 51149 0.9010 +9732 51154 0.9190 +9732 51187 0.9010 +9732 51264 0.4320 +9732 51319 0.8980 +9732 51367 0.4200 +9732 51388 0.8490 +9732 51398 0.4330 +9732 51602 0.7570 +9732 54433 0.7100 +9732 54464 0.4290 +9732 54552 0.6220 +9732 54663 0.8000 +9732 54948 0.5940 +9732 55127 0.5670 +9732 55173 0.7790 +9732 55176 0.4150 +9732 55226 0.5660 +9732 55272 0.6920 +9732 55299 0.8760 +9732 55316 0.8600 +9732 55505 0.7480 +9732 55591 0.4680 +9732 55759 0.8180 +9732 55813 0.5550 +9732 56648 0.7010 +9732 56965 0.4970 +9732 57050 0.5210 +9732 57602 0.4460 +9732 57647 0.9130 +9732 57680 0.4270 +9732 58505 0.4290 +9732 60678 0.5190 +9732 63916 0.9670 +9732 63931 0.6720 +9732 64318 0.8570 +9732 64374 0.5940 +9732 64960 0.6350 +9732 64963 0.6610 +9732 64969 0.7080 +9732 65003 0.6150 +9732 65008 0.6890 +9732 65083 0.4830 +9732 65121 0.5040 +9732 65122 0.5040 +9732 79036 0.4680 +9732 79050 0.5150 +9732 79159 0.4880 +9732 79590 0.6600 +9732 79631 0.6630 +9732 79668 0.5000 +9732 79767 0.8440 +9732 79897 0.4730 +9732 79932 0.4020 +9732 79954 0.5040 +9732 80135 0.8680 +9732 81624 0.4290 +9732 83943 0.6190 +9732 84128 0.5510 +9732 84135 0.6940 +9732 84154 0.7160 +9732 84365 0.8870 +9732 84549 0.8090 +9732 84916 0.5830 +9732 84946 0.4530 +9732 85476 0.6630 +9732 91408 0.4540 +9732 92196 0.6180 +9732 92856 0.5760 +9732 93550 0.4960 +9732 114625 0.4160 +9732 114987 0.9060 +9732 116832 0.9060 +9732 117246 0.8430 +9732 124454 0.4830 +9732 126402 0.8600 +9732 137994 0.4060 +9732 140032 0.8590 +9732 140801 0.9090 +9732 142940 0.6220 +9732 143244 0.7010 +9732 146212 0.6690 +9732 152518 0.4900 +9732 164153 0.4960 +9732 200916 0.8880 +9732 201595 0.5900 +9732 221078 0.5930 +9732 254268 0.8860 +9732 255308 0.5190 +9732 283518 0.4990 +9732 285855 0.8360 +9732 342538 0.6530 +9732 343068 0.5040 +9732 343070 0.5040 +9732 345630 0.6330 +9732 347487 0.9250 +9732 387129 0.8360 +9732 390999 0.5040 +9732 391002 0.5040 +9732 400735 0.5040 +9732 400736 0.5040 +9732 440560 0.5040 +9732 440561 0.5040 +9732 441873 0.5040 +9732 641776 0.6380 +9732 642987 0.4170 +9732 643909 0.6380 +9732 645051 0.6570 +9732 645073 0.6570 +9732 645359 0.5040 +9732 653619 0.5040 +9732 728524 0.6380 +9732 728689 0.5950 +9732 729396 0.6570 +9732 729422 0.6570 +9732 729428 0.6570 +9732 729431 0.6570 +9732 729442 0.6570 +9732 729447 0.6570 +9732 729528 0.5040 +9732 100008586 0.6570 +9732 100128731 0.4290 +9732 100132399 0.6570 +9732 100287482 0.6110 +9732 100505478 0.6510 +9732 100526842 0.9330 +9732 100529097 0.8450 +9732 100529239 0.9260 +9732 100996746 0.6380 +9732 101929983 0.5040 +9732 102724473 0.6570 +9732 105180390 0.6380 +9732 105180391 0.6380 +9733 9785 0.6310 +9733 9958 0.9990 +9733 10128 0.6300 +9733 10284 0.5520 +9733 10291 0.4940 +9733 10465 0.7290 +9733 10594 0.6810 +9733 10614 0.8570 +9733 10657 0.4760 +9733 10713 0.6300 +9733 10813 0.4190 +9733 10921 0.8390 +9733 10946 0.4130 +9733 11060 0.5140 +9733 11083 0.4460 +9733 11128 0.4500 +9733 11157 0.9930 +9733 11196 0.4300 +9733 11218 0.4610 +9733 22984 0.5580 +9733 22985 0.5890 +9733 23020 0.7970 +9733 23070 0.4530 +9733 23076 0.5590 +9733 23384 0.4370 +9733 23451 0.4500 +9733 23532 0.4140 +9733 23534 0.4630 +9733 23644 0.4730 +9733 23658 0.9900 +9733 24144 0.6570 +9733 24148 0.7580 +9733 25804 0.9950 +9733 25871 0.4210 +9733 25929 0.4380 +9733 25980 0.5620 +9733 26121 0.9350 +9733 26523 0.6090 +9733 26986 0.4260 +9733 27044 0.4310 +9733 27257 0.5140 +9733 27258 0.9570 +9733 27303 0.6460 +9733 27336 0.5510 +9733 29115 0.5020 +9733 29940 0.6090 +9733 51319 0.4500 +9733 51340 0.5630 +9733 51362 0.5140 +9733 51574 0.9500 +9733 51593 0.4780 +9733 51690 0.9950 +9733 51691 0.9960 +9733 51808 0.4090 +9733 54464 0.4990 +9733 54969 0.4050 +9733 55015 0.4060 +9733 55131 0.5080 +9733 55140 0.4830 +9733 55226 0.5460 +9733 55677 0.5560 +9733 55696 0.4790 +9733 55909 0.5450 +9733 56257 0.9760 +9733 56259 0.4020 +9733 56852 0.4870 +9733 57520 0.4280 +9733 57703 0.4010 +9733 57805 0.4630 +9733 57819 0.9980 +9733 58509 0.4090 +9733 63893 0.4300 +9733 64852 0.8890 +9733 65095 0.4480 +9733 79650 0.5390 +9733 80153 0.4410 +9733 80212 0.4270 +9733 81608 0.5410 +9733 84128 0.4900 +9733 84619 0.4190 +9733 96764 0.5130 +9733 114034 0.5170 +9733 124790 0.4590 +9733 144108 0.5090 +9733 149041 0.4410 +9733 219988 0.4480 +9733 284325 0.8840 +9733 338657 0.4590 +9734 9759 0.7150 +9734 9794 0.6640 +9734 10013 0.7150 +9734 10014 0.4080 +9734 10036 0.4560 +9734 10046 0.5190 +9734 10100 0.4090 +9734 10498 0.5730 +9734 10499 0.4890 +9734 10524 0.9880 +9734 10919 0.5030 +9734 10971 0.4130 +9734 11143 0.4490 +9734 11279 0.4330 +9734 22933 0.6700 +9734 22938 0.5400 +9734 23028 0.5150 +9734 23125 0.4770 +9734 23135 0.5310 +9734 23186 0.4810 +9734 23293 0.4060 +9734 23294 0.4010 +9734 23309 0.5910 +9734 23408 0.5930 +9734 23409 0.6810 +9734 23410 0.5880 +9734 23411 0.8190 +9734 23522 0.4590 +9734 23523 0.8030 +9734 23650 0.4580 +9734 23683 0.4390 +9734 25865 0.4460 +9734 25942 0.7970 +9734 29072 0.4340 +9734 50943 0.9570 +9734 51547 0.6320 +9734 51548 0.6130 +9734 51564 0.4320 +9734 51742 0.4690 +9734 51806 0.7400 +9734 54145 0.7240 +9734 55506 0.6910 +9734 55534 0.5250 +9734 55766 0.6890 +9734 55869 0.7400 +9734 57649 0.4040 +9734 57763 0.5100 +9734 63035 0.6700 +9734 64754 0.4210 +9734 79718 0.6170 +9734 79723 0.4220 +9734 79885 0.4240 +9734 80854 0.4910 +9734 83933 0.5750 +9734 84148 0.4150 +9734 84441 0.5310 +9734 84444 0.4010 +9734 85236 0.7250 +9734 91860 0.7400 +9734 92815 0.6890 +9734 94239 0.7130 +9734 117154 0.5850 +9734 128312 0.7260 +9734 158983 0.7240 +9734 163688 0.7400 +9734 221613 0.6890 +9734 255626 0.7280 +9734 286436 0.7240 +9734 317772 0.6890 +9734 375056 0.4390 +9734 440093 0.6410 +9734 440686 0.6410 +9734 440689 0.7240 +9734 474381 0.6890 +9734 474382 0.6890 +9734 653604 0.7350 +9734 100271849 0.9800 +9734 114483833 0.7240 +9735 9768 0.4320 +9735 9787 0.7640 +9735 9793 0.5610 +9735 9824 0.4890 +9735 9833 0.7040 +9735 9918 0.6410 +9735 9928 0.4730 +9735 10024 0.4280 +9735 10036 0.6430 +9735 10051 0.6900 +9735 10112 0.6910 +9735 10198 0.4070 +9735 10403 0.7800 +9735 10460 0.5030 +9735 10592 0.8460 +9735 10615 0.5930 +9735 10635 0.6440 +9735 10721 0.5040 +9735 10726 0.5460 +9735 10733 0.6400 +9735 11004 0.6720 +9735 11065 0.4690 +9735 11073 0.5400 +9735 11113 0.4590 +9735 11130 0.9270 +9735 11169 0.6070 +9735 11339 0.4650 +9735 22974 0.5310 +9735 23165 0.4380 +9735 23279 0.4730 +9735 23306 0.4410 +9735 23310 0.4420 +9735 23397 0.7660 +9735 23649 0.4150 +9735 24137 0.6560 +9735 25788 0.4830 +9735 25880 0.4190 +9735 26586 0.4480 +9735 27436 0.5840 +9735 29028 0.6120 +9735 29127 0.6540 +9735 29128 0.4740 +9735 29980 0.4540 +9735 51203 0.6550 +9735 51514 0.4940 +9735 51659 0.5150 +9735 54443 0.5740 +9735 54821 0.4620 +9735 54892 0.7420 +9735 54908 0.6230 +9735 55010 0.6840 +9735 55055 0.9990 +9735 55063 0.6000 +9735 55143 0.8420 +9735 55165 0.6290 +9735 55215 0.6380 +9735 55355 0.5420 +9735 55388 0.4810 +9735 55605 0.4010 +9735 55732 0.5650 +9735 55835 0.5390 +9735 55839 0.5190 +9735 56992 0.7370 +9735 57082 0.5560 +9735 57122 0.4680 +9735 57149 0.5850 +9735 57405 0.4910 +9735 63922 0.4490 +9735 63967 0.5160 +9735 64105 0.5880 +9735 64151 0.6060 +9735 64946 0.5870 +9735 65117 0.6890 +9735 79019 0.6380 +9735 79075 0.5120 +9735 79682 0.5060 +9735 79801 0.5220 +9735 79866 0.4360 +9735 79915 0.5360 +9735 79980 0.4150 +9735 80152 0.5500 +9735 81620 0.4980 +9735 81930 0.5550 +9735 83461 0.6500 +9735 83540 0.7620 +9735 84057 0.4940 +9735 84515 0.5530 +9735 84897 0.4060 +9735 84930 0.4760 +9735 90381 0.4570 +9735 113130 0.7800 +9735 116028 0.4710 +9735 144455 0.4130 +9735 146909 0.4560 +9735 147841 0.4680 +9735 151246 0.4850 +9735 151648 0.5630 +9735 152098 0.5970 +9735 157313 0.5100 +9735 157570 0.4640 +9735 220134 0.6010 +9735 221150 0.6550 +9735 259266 0.9310 +9735 285643 0.4700 +9736 9857 0.4020 +9736 9877 0.6620 +9736 9931 0.5500 +9736 10277 0.4400 +9736 10480 0.4120 +9736 10565 0.5800 +9736 11065 0.4890 +9736 23049 0.7220 +9736 23064 0.4680 +9736 23170 0.4350 +9736 23304 0.5400 +9736 23352 0.4330 +9736 23358 0.5150 +9736 23369 0.5450 +9736 23469 0.6590 +9736 23640 0.4080 +9736 23731 0.6110 +9736 25831 0.4870 +9736 25836 0.6670 +9736 25957 0.4090 +9736 26043 0.5670 +9736 26057 0.6560 +9736 27332 0.5430 +9736 29072 0.6930 +9736 29978 0.5550 +9736 29979 0.6180 +9736 51322 0.4700 +9736 51366 0.6680 +9736 51742 0.4070 +9736 54464 0.4240 +9736 54882 0.4140 +9736 55031 0.4240 +9736 55193 0.5690 +9736 55206 0.4360 +9736 55870 0.8220 +9736 56893 0.5340 +9736 57448 0.6040 +9736 57532 0.4030 +9736 57664 0.4060 +9736 65125 0.6310 +9736 80351 0.6020 +9736 81847 0.5890 +9736 84162 0.4880 +9736 84936 0.5700 +9736 84993 0.6080 +9736 85451 0.4420 +9736 114803 0.4280 +9736 196528 0.4260 +9736 197131 0.5010 +9736 285527 0.4830 +9736 404734 0.7400 +9737 27018 0.4880 +9737 55859 0.5170 +9737 89849 0.4130 +9737 140597 0.4180 +9737 140803 0.4230 +9737 145482 0.4750 +9737 169966 0.5100 +9737 441925 0.6070 +9738 9786 0.8760 +9738 9851 0.5070 +9738 9857 0.5530 +9738 9859 0.5820 +9738 9967 0.4330 +9738 10096 0.4390 +9738 10133 0.4990 +9738 10198 0.5110 +9738 10309 0.4680 +9738 10733 0.9640 +9738 10807 0.4230 +9738 10868 0.4030 +9738 10938 0.5130 +9738 11064 0.4870 +9738 11127 0.4630 +9738 22832 0.6610 +9738 22897 0.8010 +9738 22994 0.5250 +9738 22995 0.8520 +9738 23032 0.9020 +9738 23322 0.7690 +9738 23354 0.5530 +9738 25914 0.4460 +9738 26005 0.5840 +9738 26123 0.6060 +9738 26146 0.5870 +9738 27077 0.6410 +9738 51134 0.7210 +9738 51174 0.4110 +9738 51175 0.5130 +9738 51199 0.6620 +9738 51203 0.4280 +9738 51259 0.6300 +9738 51626 0.4030 +9738 51764 0.4260 +9738 51806 0.7010 +9738 54461 0.4750 +9738 54801 0.6780 +9738 54806 0.8190 +9738 54820 0.4220 +9738 54875 0.8780 +9738 54903 0.7220 +9738 54930 0.4990 +9738 54986 0.4530 +9738 55125 0.6470 +9738 55142 0.5090 +9738 55559 0.4990 +9738 55755 0.6300 +9738 55835 0.9800 +9738 57020 0.4740 +9738 57545 0.8130 +9738 64682 0.5830 +9738 64770 0.5010 +9738 64793 0.4180 +9738 79441 0.5350 +9738 79598 0.9990 +9738 79600 0.6880 +9738 79838 0.4340 +9738 79848 0.4180 +9738 79866 0.5590 +9738 79867 0.6710 +9738 79959 0.9370 +9738 80184 0.9970 +9738 80776 0.6410 +9738 83857 0.4500 +9738 84131 0.6450 +9738 84461 0.9030 +9738 84902 0.7000 +9738 84984 0.4390 +9738 85302 0.6340 +9738 85459 0.7020 +9738 89765 0.4150 +9738 90410 0.5210 +9738 91147 0.7180 +9738 91860 0.7020 +9738 93323 0.5940 +9738 115106 0.5610 +9738 116840 0.7610 +9738 117177 0.5800 +9738 117178 0.4060 +9738 121441 0.8190 +9738 128344 0.4200 +9738 132320 0.6730 +9738 134359 0.7170 +9738 145508 0.5280 +9738 146057 0.7550 +9738 152185 0.5810 +9738 153241 0.7210 +9738 163688 0.7020 +9738 163786 0.9610 +9738 166979 0.4200 +9738 171177 0.5640 +9738 200894 0.6550 +9738 201255 0.4320 +9738 221908 0.4180 +9738 259266 0.4690 +9738 261734 0.7250 +9738 282809 0.5410 +9738 284716 0.4110 +9738 338657 0.4270 +9738 345643 0.4880 +9738 347240 0.9580 +9738 728642 0.4990 +9739 9757 0.8210 +9739 9810 0.6040 +9739 10013 0.4490 +9739 10137 0.4530 +9739 10322 0.4240 +9739 10419 0.5300 +9739 10498 0.5940 +9739 10524 0.5240 +9739 10537 0.4530 +9739 10664 0.5100 +9739 10762 0.4010 +9739 10765 0.6240 +9739 10785 0.4090 +9739 10847 0.4680 +9739 10891 0.4120 +9739 10919 0.6140 +9739 10933 0.6130 +9739 10943 0.4120 +9739 11083 0.6870 +9739 11091 0.9990 +9739 11143 0.4550 +9739 11168 0.6630 +9739 11198 0.6090 +9739 11335 0.4450 +9739 22933 0.4720 +9739 22976 0.9080 +9739 22992 0.6020 +9739 23028 0.9360 +9739 23030 0.4360 +9739 23054 0.7620 +9739 23064 0.4120 +9739 23067 0.9980 +9739 23081 0.5720 +9739 23112 0.4270 +9739 23133 0.8550 +9739 23135 0.6710 +9739 23143 0.4140 +9739 23168 0.8050 +9739 23186 0.7200 +9739 23305 0.4620 +9739 23309 0.5830 +9739 23310 0.6260 +9739 23338 0.7300 +9739 23411 0.6670 +9739 23476 0.4730 +9739 23512 0.6290 +9739 23522 0.4200 +9739 23626 0.4740 +9739 25886 0.5210 +9739 25930 0.4810 +9739 25942 0.7050 +9739 26040 0.5620 +9739 26118 0.5130 +9739 26227 0.5150 +9739 26523 0.5170 +9739 27327 0.4240 +9739 27336 0.4200 +9739 29072 0.8820 +9739 29915 0.8870 +9739 30827 0.9990 +9739 51111 0.5790 +9739 51230 0.5210 +9739 51317 0.6330 +9739 51703 0.4600 +9739 51742 0.4130 +9739 51755 0.4530 +9739 51780 0.4070 +9739 54093 0.4690 +9739 54145 0.6700 +9739 54554 0.7710 +9739 54556 0.4280 +9739 54623 0.4580 +9739 54737 0.4690 +9739 54892 0.6170 +9739 54904 0.5510 +9739 54934 0.4270 +9739 55170 0.8000 +9739 55636 0.4180 +9739 55677 0.4010 +9739 55683 0.4070 +9739 55818 0.4830 +9739 55869 0.5340 +9739 55884 0.5220 +9739 55902 0.4290 +9739 55904 0.8220 +9739 56254 0.7880 +9739 56852 0.6510 +9739 56950 0.5760 +9739 56979 0.7290 +9739 57332 0.4970 +9739 57591 0.4280 +9739 57634 0.5900 +9739 57649 0.4090 +9739 57661 0.4510 +9739 57666 0.4870 +9739 57680 0.6730 +9739 58508 0.9880 +9739 63925 0.5310 +9739 64754 0.7640 +9739 79447 0.7460 +9739 79577 0.5430 +9739 79823 0.8190 +9739 80335 0.9990 +9739 80853 0.4690 +9739 80854 0.7980 +9739 83743 0.4220 +9739 83860 0.5120 +9739 84148 0.6350 +9739 84193 0.6350 +9739 84332 0.5720 +9739 84444 0.9110 +9739 84532 0.4110 +9739 84661 0.9990 +9739 84678 0.5790 +9739 84787 0.5340 +9739 85236 0.6620 +9739 91272 0.6970 +9739 93550 0.5990 +9739 112869 0.4770 +9739 113177 0.4940 +9739 123169 0.6030 +9739 126961 0.5600 +9739 128312 0.6700 +9739 140690 0.6110 +9739 143241 0.5720 +9739 146845 0.5130 +9739 148479 0.4030 +9739 150572 0.4990 +9739 158983 0.6700 +9739 161882 0.6070 +9739 164153 0.4530 +9739 192669 0.4540 +9739 192670 0.4690 +9739 221656 0.6470 +9739 255626 0.6650 +9739 259282 0.9270 +9739 282809 0.5130 +9739 284058 0.6210 +9739 286436 0.6710 +9739 401551 0.5130 +9739 440093 0.9170 +9739 440686 0.9170 +9739 440689 0.6730 +9739 653604 0.9570 +9739 114483833 0.6710 +9741 25972 0.4120 +9741 29115 0.4340 +9741 51195 0.4010 +9741 53947 0.4670 +9741 55007 0.4840 +9741 55353 0.9190 +9741 55770 0.4280 +9741 55858 0.4440 +9741 171546 0.5090 +9742 9786 0.4690 +9742 9857 0.4190 +9742 9894 0.5500 +9742 10806 0.4190 +9742 11020 0.9860 +9742 11127 0.6250 +9742 22858 0.4130 +9742 22884 0.5740 +9742 22897 0.6730 +9742 22920 0.6100 +9742 23059 0.8840 +9742 23322 0.5340 +9742 23432 0.7590 +9742 23761 0.4220 +9742 24139 0.4330 +9742 26146 0.8730 +9742 26160 0.9370 +9742 27031 0.4280 +9742 27077 0.5210 +9742 27152 0.6210 +9742 27241 0.6380 +9742 27436 0.5350 +9742 28981 0.9480 +9742 51098 0.9530 +9742 51343 0.4020 +9742 51364 0.4650 +9742 51626 0.7470 +9742 51668 0.8310 +9742 54806 0.4120 +9742 54903 0.5280 +9742 55081 0.9020 +9742 55112 0.7040 +9742 55212 0.6650 +9742 55764 0.9990 +9742 55779 0.4420 +9742 55812 0.5690 +9742 56912 0.8980 +9742 57096 0.5180 +9742 57539 0.9990 +9742 57545 0.5980 +9742 57560 0.9670 +9742 57568 0.4040 +9742 57576 0.5190 +9742 57728 0.9990 +9742 64792 0.9110 +9742 79363 0.4570 +9742 79600 0.4490 +9742 79652 0.4740 +9742 79659 0.7670 +9742 79714 0.4240 +9742 79809 0.9990 +9742 79819 0.4830 +9742 79867 0.4120 +9742 79989 0.8770 +9742 80173 0.8760 +9742 80184 0.7230 +9742 80776 0.5310 +9742 84215 0.4370 +9742 84284 0.4220 +9742 84902 0.4180 +9742 85302 0.5780 +9742 88745 0.4430 +9742 89891 0.7610 +9742 90410 0.9360 +9742 91147 0.5720 +9742 91461 0.4100 +9742 91833 0.4180 +9742 92104 0.7860 +9742 92482 0.4050 +9742 112752 0.9990 +9742 119710 0.8440 +9742 122553 0.4130 +9742 124222 0.4010 +9742 129880 0.6320 +9742 132320 0.4220 +9742 132884 0.4950 +9742 145226 0.4530 +9742 146057 0.4630 +9742 146325 0.5090 +9742 150737 0.8760 +9742 153241 0.5500 +9742 157657 0.4880 +9742 161436 0.4250 +9742 166348 0.4600 +9742 167691 0.4570 +9742 170850 0.4070 +9742 199223 0.8380 +9742 200894 0.6420 +9742 255758 0.6040 +9742 256364 0.4440 +9742 261734 0.6820 +9742 284086 0.4230 +9742 339834 0.4090 +9742 374654 0.4250 +9742 375567 0.4020 +9742 400954 0.4250 +9742 401124 0.4620 +9743 9846 0.4130 +9743 10243 0.4750 +9743 10393 0.4380 +9743 10434 0.4450 +9743 10787 0.4720 +9743 11104 0.4620 +9743 11337 0.4940 +9743 23229 0.4470 +9743 23433 0.5420 +9743 26047 0.4150 +9743 27161 0.4930 +9743 29984 0.5280 +9743 51430 0.4970 +9743 51466 0.4300 +9743 54509 0.5070 +9743 57148 0.4420 +9743 57381 0.4960 +9743 57555 0.4810 +9743 80790 0.4250 +9743 114798 0.5060 +9743 149041 0.5120 +9743 388135 0.4520 +9743 642938 0.4280 +9744 9922 0.4390 +9744 11020 0.4150 +9744 11021 0.7360 +9744 11184 0.5810 +9744 25900 0.4230 +9744 26499 0.6200 +9744 51454 0.6770 +9744 55914 0.4740 +9744 58533 0.4180 +9744 64926 0.4270 +9744 80342 0.4090 +9744 91433 0.4010 +9744 157567 0.4560 +9744 254122 0.4200 +9744 374403 0.6310 +9745 26232 0.4010 +9745 26297 0.4020 +9745 54862 0.4180 +9745 56987 0.4140 +9745 57540 0.4010 +9745 57592 0.5250 +9745 64478 0.4460 +9745 89795 0.4580 +9745 114788 0.4100 +9745 114794 0.4050 +9745 129446 0.4230 +9745 220382 0.5230 +9745 342865 0.4410 +9746 9894 0.4240 +9746 10160 0.4650 +9746 11122 0.4290 +9746 22941 0.4110 +9746 23129 0.4640 +9746 57555 0.4200 +9746 64084 0.4430 +9746 64359 0.6430 +9746 64837 0.4660 +9746 80851 0.4840 +9746 84966 0.4850 +9746 89953 0.4300 +9746 121506 0.4950 +9746 266727 0.4540 +9746 347730 0.6340 +9746 404037 0.4030 +9747 23089 0.7060 +9747 26095 0.5320 +9747 51035 0.4830 +9747 56940 0.4750 +9747 79054 0.6660 +9747 84124 0.4110 +9747 89839 0.4770 +9747 135948 0.5770 +9747 147199 0.4120 +9747 340307 0.5060 +9747 445328 0.4330 +9747 653486 0.4120 +9747 728340 0.4600 +9747 100996758 0.4620 +9748 9817 0.6040 +9748 11113 0.4030 +9748 23002 0.4200 +9748 29941 0.4540 +9748 54443 0.4010 +9748 55914 0.5180 +9748 55968 0.4300 +9748 57095 0.4540 +9748 65124 0.4230 +9748 81624 0.4310 +9748 84545 0.4380 +9748 134218 0.4540 +9748 284119 0.4050 +9749 10184 0.4030 +9749 10210 0.4670 +9749 11127 0.4210 +9749 26608 0.5250 +9749 29766 0.7140 +9749 51706 0.4060 +9749 54495 0.4050 +9749 55216 0.4090 +9749 55890 0.4230 +9749 84189 0.4180 +9749 94121 0.4150 +9749 135228 0.4330 +9749 285590 0.4180 +9749 441027 0.4730 +9750 9856 0.4540 +9750 10013 0.6180 +9750 10867 0.4020 +9750 11078 0.6720 +9750 11344 0.5750 +9750 23136 0.5200 +9750 25794 0.8240 +9750 25861 0.6280 +9750 51046 0.4040 +9750 51168 0.6130 +9750 53405 0.8510 +9750 53904 0.6060 +9750 64787 0.5570 +9750 64793 0.4210 +9750 81688 0.4320 +9750 83715 0.6120 +9750 117289 0.4640 +9750 129446 0.8320 +9750 140469 0.5330 +9750 286262 0.8750 +9750 339768 0.5520 +9750 389207 0.8480 +9750 494513 0.5190 +9750 643226 0.8960 +9751 9891 0.5020 +9751 9927 0.5430 +9751 10059 0.4420 +9751 22906 0.7470 +9751 27185 0.7050 +9751 51024 0.4330 +9751 51309 0.5960 +9751 55288 0.7270 +9751 55638 0.7030 +9751 55669 0.5090 +9751 56947 0.4400 +9751 65018 0.5160 +9751 66008 0.7080 +9751 80179 0.5450 +9751 89941 0.6240 +9751 130560 0.4330 +9751 339302 0.4980 +9751 388595 0.4710 +9752 23417 0.6220 +9752 26025 0.5510 +9752 56099 0.6460 +9752 56100 0.4770 +9752 56103 0.4760 +9752 56106 0.5230 +9752 56111 0.4930 +9752 56122 0.6250 +9752 56138 0.6000 +9752 56139 0.9190 +9752 56141 0.7810 +9752 56144 0.7280 +9752 56145 0.6910 +9752 83752 0.5670 +9752 127731 0.4430 +9753 55663 0.5940 +9753 55888 0.4670 +9753 84547 0.5910 +9753 84985 0.4070 +9753 221711 0.4170 +9753 222698 0.4010 +9753 441476 0.5290 +9754 10087 0.5430 +9754 10611 0.4130 +9754 10809 0.5360 +9754 10948 0.5240 +9754 23371 0.5470 +9754 23607 0.4030 +9754 26027 0.4820 +9754 30011 0.6170 +9754 51100 0.4240 +9754 56904 0.4240 +9754 56910 0.5500 +9754 57519 0.5460 +9754 58488 0.5530 +9754 64759 0.5690 +9754 80765 0.5770 +9754 83660 0.4030 +9754 84951 0.5290 +9754 115861 0.4250 +9754 134429 0.4640 +9754 146395 0.4050 +9754 147323 0.5800 +9754 286451 0.8530 +9755 9821 0.8570 +9755 10010 0.9960 +9755 10133 0.4790 +9755 10193 0.4530 +9755 10241 0.9860 +9755 10454 0.4180 +9755 23118 0.4200 +9755 27161 0.4720 +9755 29110 0.9990 +9755 57506 0.6440 +9755 64343 0.9370 +9757 10445 0.6220 +9757 10498 0.4050 +9757 10765 0.5350 +9757 10847 0.4160 +9757 10856 0.5870 +9757 11091 0.9980 +9757 11168 0.6000 +9757 22976 0.8180 +9757 22992 0.5480 +9757 23028 0.4070 +9757 23030 0.4760 +9757 23054 0.8420 +9757 23067 0.9500 +9757 23112 0.4270 +9757 23135 0.5520 +9757 23269 0.5840 +9757 23309 0.6220 +9757 23476 0.4370 +9757 23512 0.4820 +9757 25942 0.6270 +9757 25970 0.4510 +9757 26121 0.5650 +9757 26168 0.5870 +9757 26523 0.4670 +9757 27043 0.7000 +9757 27327 0.6040 +9757 29915 0.9070 +9757 30827 0.6390 +9757 51230 0.7170 +9757 51780 0.4010 +9757 54538 0.4100 +9757 54881 0.5480 +9757 54904 0.5000 +9757 55145 0.6120 +9757 55170 0.5580 +9757 55617 0.4190 +9757 55870 0.4890 +9757 55904 0.6090 +9757 56979 0.5180 +9757 57332 0.7900 +9757 57492 0.4370 +9757 57634 0.4040 +9757 57649 0.6830 +9757 57680 0.7150 +9757 58508 0.9770 +9757 63976 0.4600 +9757 64754 0.5240 +9757 79823 0.7790 +9757 80335 0.6290 +9757 80854 0.5660 +9757 81887 0.5780 +9757 84148 0.7380 +9757 84193 0.5360 +9757 84444 0.5520 +9757 84661 0.9120 +9757 124944 0.5680 +9757 125476 0.5400 +9757 126961 0.4040 +9757 151648 0.4020 +9757 161198 0.4070 +9757 161882 0.5560 +9757 192669 0.4620 +9757 192670 0.4670 +9757 284058 0.7540 +9757 440093 0.5090 +9757 440686 0.5000 +9757 653604 0.7380 +9757 100529209 0.5400 +9758 10943 0.5890 +9758 22866 0.5280 +9758 23037 0.5120 +9758 29899 0.9050 +9758 51286 0.4980 +9758 53335 0.4040 +9758 55753 0.4040 +9758 56850 0.4070 +9758 57477 0.4230 +9758 64398 0.4410 +9758 81609 0.4750 +9759 9794 0.5780 +9759 9818 0.4180 +9759 9839 0.4460 +9759 9869 0.4270 +9759 9883 0.4330 +9759 9972 0.4950 +9759 10013 0.6410 +9759 10014 0.9730 +9759 10046 0.5200 +9759 10049 0.8270 +9759 10062 0.6180 +9759 10190 0.4940 +9759 10320 0.4100 +9759 10382 0.4670 +9759 10492 0.4910 +9759 10524 0.5310 +9759 10762 0.4180 +9759 10765 0.5430 +9759 10891 0.4350 +9759 10919 0.5190 +9759 10933 0.4160 +9759 10971 0.8940 +9759 11096 0.5270 +9759 11097 0.4160 +9759 11143 0.4280 +9759 11198 0.4770 +9759 11274 0.4460 +9759 22933 0.7040 +9759 22938 0.6730 +9759 23028 0.7070 +9759 23125 0.4930 +9759 23135 0.6440 +9759 23165 0.4190 +9759 23186 0.5540 +9759 23225 0.4580 +9759 23235 0.4600 +9759 23309 0.5070 +9759 23387 0.5080 +9759 23405 0.5360 +9759 23408 0.5880 +9759 23409 0.5720 +9759 23410 0.5940 +9759 23411 0.9000 +9759 23476 0.5540 +9759 23511 0.4490 +9759 23522 0.4780 +9759 23523 0.6570 +9759 23636 0.4840 +9759 23683 0.4030 +9759 25822 0.6280 +9759 25855 0.5110 +9759 25865 0.4510 +9759 25942 0.9520 +9759 26281 0.4380 +9759 27006 0.4360 +9759 27332 0.4770 +9759 29102 0.4780 +9759 29110 0.6940 +9759 29123 0.5090 +9759 29843 0.6360 +9759 50964 0.5710 +9759 51547 0.6500 +9759 51548 0.6120 +9759 51564 0.6240 +9759 51742 0.4820 +9759 51806 0.7410 +9759 53371 0.4410 +9759 53635 0.6300 +9759 54145 0.7280 +9759 54880 0.4080 +9759 55103 0.4840 +9759 55294 0.4410 +9759 55506 0.6910 +9759 55534 0.5330 +9759 55553 0.4010 +9759 55706 0.4010 +9759 55746 0.4550 +9759 55766 0.6890 +9759 55869 0.6190 +9759 57122 0.4680 +9759 57491 0.4270 +9759 57649 0.4300 +9759 57763 0.9950 +9759 60468 0.4750 +9759 63035 0.7430 +9759 79023 0.4460 +9759 79366 0.4140 +9759 79718 0.7660 +9759 79813 0.4310 +9759 79885 0.6220 +9759 79902 0.4110 +9759 80705 0.4640 +9759 80854 0.4950 +9759 81929 0.4180 +9759 83933 0.5510 +9759 84148 0.4350 +9759 84441 0.5560 +9759 85236 0.7310 +9759 90480 0.4200 +9759 91860 0.7420 +9759 92292 0.4260 +9759 92815 0.6890 +9759 93649 0.7370 +9759 94239 0.7170 +9759 112939 0.8740 +9759 114907 0.4410 +9759 117154 0.4950 +9759 122953 0.4320 +9759 128312 0.7280 +9759 129401 0.4940 +9759 157570 0.4930 +9759 158983 0.7280 +9759 163688 0.7420 +9759 164832 0.4500 +9759 165721 0.4030 +9759 221613 0.6890 +9759 255626 0.7280 +9759 286436 0.7280 +9759 317772 0.6890 +9759 440093 0.6730 +9759 440686 0.6730 +9759 440689 0.7280 +9759 474381 0.6890 +9759 474382 0.6890 +9759 653604 0.6730 +9759 728137 0.4090 +9759 728378 0.5520 +9759 100101267 0.4330 +9759 100271849 0.4450 +9759 100289087 0.4100 +9759 114483833 0.7280 +9760 30009 0.4420 +9760 51043 0.4350 +9760 84868 0.4270 +9760 84969 0.5590 +9760 201633 0.4080 +9761 10956 0.4990 +9761 10960 0.6750 +9761 11253 0.4510 +9761 23193 0.8080 +9761 27248 0.7320 +9761 55741 0.5730 +9761 55757 0.5050 +9761 56886 0.6600 +9761 58505 0.8370 +9761 80267 0.5160 +9761 81562 0.4380 +9761 84061 0.9430 +9761 200185 0.8390 +9761 201595 0.9790 +9761 100128731 0.9490 +9762 10799 0.4900 +9762 22888 0.6240 +9762 23094 0.7180 +9762 26037 0.9500 +9762 57568 0.6100 +9762 65992 0.4050 +9762 85358 0.9550 +9762 118471 0.4640 +9762 140545 0.5200 +9762 167465 0.4470 +9762 195828 0.4380 +9764 9772 0.4480 +9764 9887 0.4480 +9764 10020 0.5310 +9764 10456 0.7540 +9764 23286 0.9250 +9764 23543 0.4170 +9764 51317 0.4610 +9764 54734 0.4740 +9764 55625 0.4630 +9764 63971 0.4530 +9764 79786 0.7090 +9764 79954 0.5060 +9764 80162 0.5630 +9764 83716 0.4080 +9764 92105 0.9190 +9764 93550 0.4260 +9764 159091 0.4180 +9764 221937 0.4060 +9764 286451 0.5670 +9764 339145 0.6080 +9765 10040 0.8760 +9765 10042 0.4470 +9765 10043 0.9540 +9765 10254 0.5970 +9765 11165 0.4060 +9765 23635 0.5150 +9765 25930 0.9570 +9765 51108 0.4110 +9765 51160 0.4050 +9765 51439 0.4030 +9765 54894 0.4100 +9765 55900 0.4190 +9765 90874 0.4800 +9765 133482 0.4900 +9765 146691 0.8860 +9765 167555 0.6530 +9766 23327 0.6290 +9766 54682 0.4400 +9766 252983 0.4730 +9766 375341 0.4460 +9766 100529257 0.4480 +9767 11143 0.9710 +9767 23133 0.4720 +9767 23338 0.6170 +9767 23774 0.5280 +9767 26735 0.4350 +9767 27154 0.5950 +9767 51147 0.9280 +9767 55609 0.4220 +9767 55909 0.5070 +9767 57649 0.4230 +9767 64769 0.9590 +9767 79960 0.5800 +9767 84289 0.9010 +9767 168002 0.4500 +9768 9787 0.8810 +9768 9824 0.5070 +9768 9833 0.8710 +9768 9837 0.5290 +9768 9928 0.4790 +9768 10024 0.4990 +9768 10051 0.5080 +9768 10112 0.8260 +9768 10403 0.6850 +9768 10459 0.4300 +9768 10615 0.7960 +9768 10635 0.5160 +9768 10714 0.7260 +9768 11004 0.7660 +9768 11065 0.9380 +9768 11130 0.9130 +9768 11169 0.4080 +9768 11339 0.6890 +9768 22974 0.7240 +9768 23397 0.4040 +9768 23594 0.5570 +9768 24137 0.5230 +9768 26227 0.5920 +9768 26271 0.4130 +9768 26586 0.5570 +9768 29028 0.4500 +9768 29089 0.7850 +9768 29127 0.7510 +9768 29128 0.8540 +9768 51053 0.4260 +9768 51203 0.9140 +9768 51343 0.4950 +9768 51514 0.7940 +9768 51659 0.6920 +9768 54107 0.5300 +9768 54443 0.4460 +9768 54478 0.4950 +9768 54892 0.5000 +9768 55010 0.4730 +9768 55063 0.4130 +9768 55143 0.8390 +9768 55165 0.8610 +9768 55215 0.5180 +9768 55247 0.4620 +9768 55355 0.7630 +9768 55388 0.7310 +9768 55635 0.5090 +9768 55723 0.7720 +9768 55789 0.4080 +9768 55839 0.5630 +9768 56655 0.5130 +9768 56992 0.7970 +9768 57405 0.7050 +9768 57697 0.8010 +9768 57804 0.5030 +9768 57817 0.4340 +9768 64105 0.5360 +9768 64151 0.7440 +9768 79019 0.7390 +9768 79682 0.5750 +9768 79733 0.6430 +9768 79801 0.6140 +9768 81610 0.4570 +9768 81620 0.5000 +9768 81930 0.4020 +9768 83461 0.8110 +9768 83540 0.7280 +9768 83879 0.4800 +9768 84057 0.6610 +9768 88745 0.4060 +9768 113130 0.6470 +9768 123169 0.4280 +9768 124739 0.4990 +9768 144455 0.4470 +9768 147841 0.5160 +9768 151648 0.5610 +9768 152098 0.4130 +9768 157313 0.4250 +9768 157570 0.4860 +9768 166979 0.5810 +9768 220134 0.5110 +9768 259266 0.9090 +9768 387103 0.5660 +9770 10184 0.4460 +9770 11186 0.7530 +9770 11228 0.4870 +9770 23627 0.4380 +9770 29106 0.4630 +9770 55607 0.5830 +9770 57551 0.4090 +9770 60485 0.6300 +9770 64112 0.5630 +9770 80183 0.4100 +9770 83593 0.8960 +9770 83937 0.9080 +9770 128077 0.4670 +9770 133418 0.5990 +9770 283349 0.6660 +9770 644943 0.6270 +9771 22800 0.9160 +9771 22808 0.9840 +9771 51195 0.4630 +9771 55343 0.8380 +9771 79742 0.4160 +9771 196951 0.4480 +9771 256130 0.4510 +9772 10454 0.4870 +9772 27346 0.4450 +9772 54868 0.4980 +9772 54916 0.4390 +9772 54929 0.6200 +9772 57513 0.6250 +9772 83604 0.4800 +9772 84665 0.4310 +9772 92162 0.5280 +9772 130733 0.5510 +9772 284439 0.4560 +9774 9775 0.8100 +9774 9782 0.7220 +9774 9862 0.5910 +9774 9877 0.5350 +9774 9898 0.4210 +9774 9939 0.5040 +9774 9967 0.9930 +9774 9968 0.5790 +9774 9969 0.5880 +9774 9984 0.5630 +9774 9987 0.5010 +9774 10001 0.5590 +9774 10025 0.6980 +9774 10096 0.4020 +9774 10116 0.4030 +9774 10189 0.6850 +9774 10236 0.4970 +9774 10250 0.5300 +9774 10291 0.4640 +9774 10432 0.4770 +9774 10576 0.4720 +9774 10594 0.5450 +9774 10600 0.4140 +9774 10657 0.4080 +9774 10772 0.7320 +9774 10915 0.4220 +9774 11051 0.4180 +9774 11052 0.5490 +9774 11338 0.7030 +9774 22794 0.4570 +9774 22916 0.6180 +9774 22938 0.8230 +9774 22985 0.4590 +9774 23091 0.7540 +9774 23097 0.5450 +9774 23215 0.5500 +9774 23350 0.7970 +9774 23389 0.5640 +9774 23435 0.5250 +9774 23451 0.6230 +9774 23469 0.4300 +9774 23506 0.4900 +9774 23524 0.4570 +9774 23592 0.6370 +9774 25957 0.4720 +9774 25962 0.7750 +9774 26019 0.4330 +9774 26097 0.6190 +9774 27316 0.5370 +9774 27332 0.5700 +9774 28959 0.4560 +9774 29079 0.6030 +9774 29896 0.4290 +9774 51003 0.5420 +9774 51593 0.4290 +9774 51602 0.4500 +9774 51631 0.7010 +9774 51663 0.4640 +9774 51747 0.4210 +9774 54797 0.5510 +9774 55023 0.4530 +9774 55082 0.5030 +9774 55090 0.5400 +9774 55110 0.5140 +9774 55206 0.4090 +9774 55294 0.4180 +9774 55588 0.5400 +9774 55660 0.6570 +9774 55692 0.5360 +9774 55749 0.5370 +9774 57134 0.4980 +9774 57187 0.6690 +9774 57761 0.4450 +9774 58517 0.6000 +9774 64783 0.7200 +9774 65109 0.4060 +9774 65110 0.4090 +9774 65117 0.5200 +9774 79228 0.4550 +9774 79753 0.8690 +9774 79811 0.4660 +9774 79872 0.7330 +9774 80145 0.4600 +9774 80306 0.5480 +9774 81857 0.5870 +9774 84146 0.5570 +9774 84246 0.5420 +9774 84271 0.5280 +9774 84321 0.6280 +9774 84456 0.7390 +9774 84656 0.4430 +9774 90390 0.5720 +9774 91746 0.4620 +9774 112950 0.5870 +9774 113115 0.5710 +9774 116931 0.5650 +9774 124245 0.5220 +9774 133522 0.5400 +9774 140890 0.5560 +9774 246243 0.4470 +9774 256643 0.5780 +9774 284695 0.6390 +9774 341676 0.5000 +9774 400569 0.5680 +9775 9782 0.8000 +9775 9785 0.9450 +9775 9790 0.5490 +9775 9818 0.5220 +9775 9875 0.4080 +9775 9877 0.8150 +9775 9883 0.5510 +9775 9887 0.6750 +9775 9904 0.5900 +9775 9924 0.4720 +9775 9933 0.6450 +9775 9939 0.9990 +9775 9967 0.7580 +9775 9972 0.5960 +9775 9984 0.7910 +9775 9987 0.4310 +9775 10055 0.4080 +9775 10146 0.6010 +9775 10153 0.4560 +9775 10155 0.4880 +9775 10181 0.5260 +9775 10189 0.9990 +9775 10209 0.5170 +9775 10212 0.7740 +9775 10236 0.6140 +9775 10250 0.9490 +9775 10262 0.5620 +9775 10283 0.9790 +9775 10284 0.9610 +9775 10286 0.9340 +9775 10291 0.7840 +9775 10399 0.4180 +9775 10412 0.5400 +9775 10419 0.4300 +9775 10432 0.4690 +9775 10436 0.5270 +9775 10450 0.9330 +9775 10480 0.6410 +9775 10482 0.9670 +9775 10484 0.4450 +9775 10492 0.4300 +9775 10521 0.7630 +9775 10528 0.6690 +9775 10569 0.9390 +9775 10574 0.6940 +9775 10575 0.4950 +9775 10576 0.5090 +9775 10594 0.9970 +9775 10605 0.6760 +9775 10607 0.4170 +9775 10657 0.5130 +9775 10762 0.5990 +9775 10772 0.7450 +9775 10801 0.5540 +9775 10813 0.6720 +9775 10856 0.4750 +9775 10885 0.6410 +9775 10907 0.6260 +9775 10914 0.4010 +9775 10915 0.5820 +9775 10921 0.9990 +9775 10929 0.6950 +9775 10946 0.5050 +9775 10949 0.4790 +9775 10951 0.4880 +9775 10963 0.4240 +9775 10969 0.6330 +9775 10978 0.5220 +9775 10992 0.8450 +9775 11051 0.8010 +9775 11052 0.7630 +9775 11056 0.6500 +9775 11060 0.5400 +9775 11097 0.5620 +9775 11103 0.4950 +9775 11137 0.4120 +9775 11171 0.4110 +9775 11193 0.4340 +9775 11222 0.4330 +9775 11315 0.4280 +9775 11338 0.8980 +9775 22794 0.9990 +9775 22913 0.7210 +9775 22916 0.9420 +9775 22938 0.9360 +9775 22948 0.6620 +9775 22984 0.5250 +9775 22985 0.9590 +9775 23019 0.6500 +9775 23020 0.9960 +9775 23029 0.4810 +9775 23049 0.9980 +9775 23076 0.5080 +9775 23091 0.6840 +9775 23160 0.4770 +9775 23165 0.5950 +9775 23212 0.4010 +9775 23225 0.5070 +9775 23246 0.5760 +9775 23279 0.5670 +9775 23293 0.7500 +9775 23318 0.4780 +9775 23378 0.4530 +9775 23381 0.7340 +9775 23398 0.8280 +9775 23435 0.8570 +9775 23450 0.7530 +9775 23451 0.8170 +9775 23476 0.5620 +9775 23481 0.5480 +9775 23511 0.5130 +9775 23517 0.9350 +9775 23521 0.7770 +9775 23524 0.9650 +9775 23560 0.6020 +9775 23636 0.6830 +9775 23708 0.4300 +9775 23759 0.8260 +9775 24144 0.6220 +9775 24148 0.7380 +9775 25804 0.4420 +9775 25879 0.4440 +9775 25902 0.4210 +9775 25904 0.4340 +9775 25926 0.4730 +9775 25949 0.8110 +9775 25983 0.9850 +9775 26017 0.8290 +9775 26019 0.9910 +9775 26065 0.4440 +9775 26093 0.9700 +9775 26097 0.9290 +9775 26121 0.4400 +9775 26155 0.6930 +9775 26156 0.5200 +9775 26354 0.5420 +9775 26523 0.5230 +9775 26574 0.7910 +9775 26986 0.9640 +9775 27042 0.4300 +9775 27067 0.6160 +9775 27161 0.7390 +9775 27238 0.8110 +9775 27250 0.7430 +9775 27257 0.4580 +9775 27258 0.4110 +9775 27292 0.4520 +9775 27316 0.5490 +9775 27327 0.4800 +9775 27339 0.9850 +9775 28987 0.4550 +9775 29102 0.5180 +9775 29107 0.7010 +9775 29883 0.5830 +9775 29889 0.5830 +9775 29896 0.7040 +9775 29904 0.4450 +9775 29934 0.4370 +9775 29997 0.4140 +9775 51018 0.4180 +9775 51096 0.5350 +9775 51121 0.4480 +9775 51154 0.5470 +9775 51187 0.4910 +9775 51202 0.7890 +9775 51213 0.6610 +9775 51244 0.7950 +9775 51340 0.9400 +9775 51362 0.9840 +9775 51388 0.4780 +9775 51428 0.5810 +9775 51493 0.4650 +9775 51503 0.9350 +9775 51538 0.5390 +9775 51574 0.6240 +9775 51575 0.6180 +9775 51585 0.8080 +9775 51593 0.8700 +9775 51602 0.8040 +9775 51605 0.4520 +9775 51645 0.9690 +9775 53371 0.6060 +9775 53938 0.8410 +9775 53981 0.5160 +9775 54464 0.5890 +9775 54502 0.4860 +9775 54505 0.4320 +9775 54552 0.4370 +9775 54555 0.4810 +9775 54606 0.8030 +9775 54663 0.6850 +9775 54865 0.8640 +9775 54881 0.4580 +9775 54883 0.9820 +9775 54888 0.4070 +9775 54952 0.4080 +9775 54984 0.9620 +9775 55100 0.8020 +9775 55110 0.9990 +9775 55127 0.5220 +9775 55131 0.4900 +9775 55181 0.6800 +9775 55226 0.5150 +9775 55234 0.6350 +9775 55272 0.4740 +9775 55291 0.5250 +9775 55299 0.5390 +9775 55421 0.6600 +9775 55571 0.4640 +9775 55629 0.6560 +9775 55651 0.4270 +9775 55660 0.4160 +9775 55696 0.9750 +9775 55702 0.9830 +9775 55706 0.5160 +9775 55720 0.4160 +9775 55746 0.6140 +9775 55759 0.6210 +9775 55794 0.4860 +9775 55802 0.7480 +9775 55813 0.7440 +9775 56000 0.9130 +9775 56006 0.6710 +9775 56259 0.6020 +9775 56339 0.4790 +9775 56342 0.4290 +9775 56903 0.4020 +9775 56919 0.6990 +9775 56945 0.4170 +9775 56949 0.9320 +9775 57050 0.5120 +9775 57062 0.5200 +9775 57122 0.6700 +9775 57136 0.4900 +9775 57187 0.8190 +9775 57418 0.6500 +9775 57461 0.9810 +9775 57472 0.4820 +9775 57647 0.7620 +9775 57696 0.4810 +9775 57703 0.9990 +9775 58506 0.6020 +9775 58509 0.8540 +9775 59286 0.4350 +9775 60625 0.7100 +9775 60678 0.5890 +9775 64221 0.5630 +9775 64318 0.5330 +9775 64434 0.9960 +9775 64794 0.5190 +9775 65109 0.9990 +9775 65110 0.9990 +9775 79023 0.6030 +9775 79039 0.4030 +9775 79048 0.7590 +9775 79050 0.4050 +9775 79228 0.6510 +9775 79576 0.8100 +9775 79665 0.5850 +9775 79670 0.4780 +9775 79706 0.8200 +9775 79727 0.5820 +9775 79753 0.6450 +9775 79869 0.6010 +9775 79882 0.7220 +9775 79902 0.6690 +9775 79954 0.5530 +9775 79968 0.5230 +9775 80011 0.8100 +9775 80135 0.5160 +9775 80145 0.7650 +9775 80153 0.4440 +9775 80336 0.4530 +9775 81929 0.5630 +9775 83443 0.4550 +9775 84154 0.5330 +9775 84186 0.4620 +9775 84248 0.8520 +9775 84271 0.9770 +9775 84305 0.9820 +9775 84321 0.6030 +9775 84324 0.7970 +9775 84365 0.6810 +9775 84549 0.5040 +9775 84844 0.4880 +9775 84916 0.4330 +9775 84950 0.6730 +9775 85456 0.4650 +9775 87178 0.7290 +9775 88745 0.4950 +9775 91746 0.6800 +9775 92856 0.4450 +9775 92906 0.4050 +9775 115708 0.4100 +9775 116039 0.4290 +9775 117246 0.8190 +9775 124245 0.4210 +9775 129401 0.5810 +9775 132430 0.4640 +9775 135295 0.6600 +9775 140886 0.4520 +9775 143884 0.5640 +9775 151903 0.8160 +9775 153527 0.4860 +9775 163859 0.8170 +9775 167227 0.4580 +9775 192111 0.5960 +9775 199746 0.5540 +9775 219988 0.4030 +9775 220988 0.4290 +9775 221613 0.6140 +9775 246175 0.4850 +9775 253943 0.5930 +9775 255967 0.4550 +9775 257218 0.5720 +9775 285855 0.4270 +9775 317649 0.6930 +9775 340529 0.4570 +9775 348995 0.6210 +9775 387129 0.4110 +9775 692312 0.4030 +9775 728343 0.9140 +9775 728689 0.5700 +9775 100101267 0.5570 +9775 100534599 0.9820 +9776 9779 0.4370 +9776 9804 0.5380 +9776 9821 0.9990 +9776 9842 0.4500 +9776 9921 0.4780 +9776 10133 0.5400 +9776 10241 0.7820 +9776 10325 0.6790 +9776 10459 0.6150 +9776 10519 0.9390 +9776 10533 0.8720 +9776 10542 0.5470 +9776 10645 0.4040 +9776 10670 0.6940 +9776 10871 0.6290 +9776 11152 0.5700 +9776 11331 0.4620 +9776 11337 0.9680 +9776 11345 0.9870 +9776 22863 0.9890 +9776 23001 0.4110 +9776 23118 0.5950 +9776 23130 0.7500 +9776 23192 0.8220 +9776 23339 0.4640 +9776 23411 0.4190 +9776 23710 0.9870 +9776 24144 0.5340 +9776 25989 0.7920 +9776 26100 0.8540 +9776 26190 0.4480 +9776 28956 0.5590 +9776 29982 0.6230 +9776 30849 0.9570 +9776 51019 0.4710 +9776 51100 0.5180 +9776 51422 0.5520 +9776 53349 0.7100 +9776 53632 0.5250 +9776 55004 0.5930 +9776 55014 0.8350 +9776 55054 0.9490 +9776 55062 0.8850 +9776 55102 0.6840 +9776 55108 0.5750 +9776 55201 0.6590 +9776 55255 0.5520 +9776 55332 0.4750 +9776 55626 0.9380 +9776 56270 0.4440 +9776 57521 0.9530 +9776 57724 0.6310 +9776 58528 0.6730 +9776 60673 0.9990 +9776 64121 0.7020 +9776 64223 0.8240 +9776 64422 0.8600 +9776 64798 0.5890 +9776 65018 0.6820 +9776 79065 0.8940 +9776 79109 0.4330 +9776 79594 0.4430 +9776 81631 0.9600 +9776 81671 0.7510 +9776 83667 0.8640 +9776 83734 0.9780 +9776 84141 0.4230 +9776 84335 0.7050 +9776 84516 0.4360 +9776 84557 0.9690 +9776 84938 0.7010 +9776 84971 0.7050 +9776 89849 0.5610 +9776 115201 0.6880 +9776 137964 0.4360 +9776 139341 0.4810 +9776 140735 0.5170 +9776 140775 0.8930 +9776 140901 0.4830 +9776 149420 0.4800 +9776 153129 0.6400 +9776 203228 0.8940 +9776 253260 0.5150 +9776 285973 0.6130 +9776 389541 0.5720 +9776 392307 0.6800 +9776 440738 0.9060 +9776 441925 0.5750 +9776 643246 0.5110 +9777 9919 0.5260 +9777 10558 0.4030 +9777 10630 0.4200 +9777 10959 0.5420 +9777 10960 0.6330 +9777 10972 0.4140 +9777 22820 0.5330 +9777 23070 0.4410 +9777 23509 0.6870 +9777 25898 0.4930 +9777 26133 0.4300 +9777 51014 0.4020 +9777 55858 0.4210 +9777 57719 0.4440 +9777 57720 0.6460 +9777 79654 0.4970 +9777 118461 0.4980 +9777 140688 0.4340 +9777 140893 0.6900 +9777 219621 0.4610 +9777 389792 0.4140 +9778 23023 0.4520 +9778 51111 0.5400 +9778 80724 0.5260 +9778 221504 0.4180 +9778 339983 0.4200 +9778 376940 0.4470 +9778 653404 0.4050 +9779 9784 0.4310 +9779 9842 0.6030 +9779 9897 0.7360 +9779 10938 0.5860 +9779 11138 0.4020 +9779 11345 0.9270 +9779 22878 0.4650 +9779 22879 0.4320 +9779 22930 0.4150 +9779 22931 0.5490 +9779 23011 0.4390 +9779 23061 0.5580 +9779 23102 0.5260 +9779 23216 0.4480 +9779 23307 0.7600 +9779 23317 0.4420 +9779 23325 0.5000 +9779 23329 0.4420 +9779 23339 0.5330 +9779 23355 0.5220 +9779 23637 0.4490 +9779 23710 0.9270 +9779 25771 0.4870 +9779 26000 0.5150 +9779 27131 0.9700 +9779 29934 0.6930 +9779 51019 0.4670 +9779 51560 0.4560 +9779 51622 0.5410 +9779 51699 0.9990 +9779 54885 0.4720 +9779 55296 0.4640 +9779 55357 0.6480 +9779 55633 0.4490 +9779 55667 0.5170 +9779 55719 0.4260 +9779 55737 0.9970 +9779 55773 0.5030 +9779 55814 0.4100 +9779 56243 0.4040 +9779 57020 0.5490 +9779 57182 0.4560 +9779 57533 0.6120 +9779 58533 0.9500 +9779 60412 0.5380 +9779 60684 0.4990 +9779 64786 0.7920 +9779 79065 0.8050 +9779 79158 0.4450 +9779 79443 0.6040 +9779 79735 0.4040 +9779 79774 0.5310 +9779 81545 0.4640 +9779 81609 0.8010 +9779 81631 0.5290 +9779 83452 0.4130 +9779 83871 0.4310 +9779 84079 0.6030 +9779 84084 0.4560 +9779 84557 0.4860 +9779 112936 0.9890 +9779 128637 0.6430 +9779 161514 0.4850 +9779 221424 0.5090 +9779 221960 0.5290 +9779 253725 0.4790 +9779 338382 0.5230 +9779 347517 0.4560 +9779 374403 0.5270 +9779 387680 0.5440 +9779 100287171 0.4320 +9780 10095 0.4240 +9780 10098 0.4290 +9780 10226 0.4360 +9780 10331 0.4170 +9780 11169 0.7610 +9780 11200 0.8460 +9780 23129 0.4090 +9780 23649 0.4490 +9780 24145 0.6250 +9780 50801 0.7190 +9780 51350 0.5470 +9780 51393 0.5600 +9780 54207 0.5900 +9780 54822 0.4560 +9780 54962 0.8640 +9780 55536 0.4060 +9780 59341 0.7870 +9780 63895 0.5750 +9780 63922 0.4710 +9780 79054 0.4130 +9780 80119 0.4210 +9780 83660 0.4110 +9780 83862 0.4350 +9780 84296 0.4690 +9780 84893 0.5430 +9780 115992 0.4990 +9780 117531 0.6350 +9780 117532 0.7290 +9780 144715 0.4060 +9780 146059 0.4330 +9780 147372 0.4240 +9780 161003 0.6720 +9780 222662 0.5330 +9780 254394 0.6020 +9780 441027 0.6660 +9781 10970 0.4670 +9781 51112 0.4450 +9781 51136 0.4290 +9781 51253 0.4270 +9781 84243 0.4940 +9781 84900 0.4310 +9781 91543 0.4030 +9781 129607 0.5300 +9781 138065 0.4090 +9781 196951 0.5590 +9781 254778 0.4430 +9781 401934 0.4830 +9781 728597 0.4290 +9782 9896 0.5450 +9782 9962 0.8390 +9782 9963 0.8410 +9782 9967 0.5830 +9782 9987 0.7830 +9782 9988 0.4150 +9782 9991 0.6830 +9782 10133 0.5980 +9782 10146 0.5220 +9782 10147 0.8360 +9782 10189 0.8570 +9782 10197 0.6580 +9782 10236 0.8510 +9782 10280 0.4560 +9782 10284 0.5660 +9782 10432 0.9640 +9782 10454 0.4330 +9782 10482 0.5740 +9782 10492 0.7710 +9782 10521 0.6320 +9782 10592 0.4580 +9782 10594 0.4130 +9782 10614 0.6220 +9782 10642 0.9100 +9782 10643 0.7350 +9782 10644 0.5310 +9782 10657 0.8900 +9782 10658 0.7200 +9782 10772 0.5530 +9782 10921 0.4920 +9782 10949 0.7610 +9782 11051 0.6080 +9782 11052 0.7000 +9782 11091 0.7390 +9782 11100 0.5350 +9782 11335 0.6140 +9782 11338 0.7540 +9782 22826 0.4310 +9782 22827 0.5040 +9782 22907 0.4470 +9782 22913 0.8170 +9782 22916 0.6390 +9782 22976 0.5910 +9782 23016 0.4990 +9782 23020 0.6440 +9782 23054 0.4660 +9782 23064 0.6110 +9782 23160 0.5100 +9782 23279 0.4680 +9782 23350 0.4130 +9782 23361 0.5180 +9782 23404 0.4200 +9782 23405 0.4280 +9782 23435 0.9960 +9782 23451 0.4550 +9782 23476 0.6620 +9782 23644 0.4040 +9782 23710 0.4450 +9782 24148 0.4190 +9782 25792 0.4810 +9782 25962 0.4360 +9782 25978 0.5700 +9782 26097 0.6770 +9782 26156 0.4090 +9782 26986 0.6850 +9782 27161 0.4220 +9782 27185 0.5280 +9782 27258 0.5330 +9782 27316 0.8070 +9782 27339 0.6480 +9782 29110 0.5340 +9782 29894 0.5170 +9782 29978 0.7580 +9782 51493 0.4620 +9782 51593 0.5940 +9782 51637 0.4860 +9782 51639 0.5190 +9782 51655 0.5760 +9782 51663 0.5370 +9782 51691 0.4140 +9782 51710 0.5180 +9782 55110 0.4630 +9782 55234 0.4990 +9782 55269 0.9250 +9782 55272 0.4640 +9782 55802 0.4240 +9782 56252 0.5040 +9782 56259 0.6640 +9782 56339 0.4490 +9782 56829 0.5510 +9782 56915 0.6110 +9782 57062 0.4860 +9782 57122 0.5230 +9782 57187 0.7300 +9782 57679 0.6140 +9782 57721 0.4420 +9782 58155 0.8420 +9782 64374 0.5450 +9782 79447 0.4530 +9782 80208 0.5760 +9782 80218 0.4200 +9782 80818 0.5180 +9782 81608 0.4600 +9782 83443 0.4320 +9782 84271 0.4720 +9782 84324 0.5600 +9782 84661 0.5670 +9782 84823 0.4300 +9782 84844 0.4340 +9782 84991 0.4200 +9782 115560 0.5180 +9782 120892 0.5680 +9782 124245 0.4100 +9782 129831 0.4540 +9782 148266 0.5150 +9782 149041 0.5100 +9782 161882 0.4110 +9782 203228 0.7170 +9782 220988 0.8310 +9782 221092 0.5240 +9782 284390 0.5180 +9782 284695 0.8270 +9782 389677 0.4450 +9782 400916 0.7360 +9782 100526737 0.8030 +9783 10497 0.5290 +9783 11141 0.5850 +9783 23017 0.4260 +9783 23025 0.5300 +9783 23085 0.5130 +9783 23504 0.4320 +9783 26059 0.5290 +9783 54413 0.4920 +9783 55914 0.4280 +9783 83538 0.4180 +9783 84976 0.4150 +9783 117532 0.4020 +9783 254042 0.4360 +9783 285220 0.4210 +9783 440279 0.4680 +9783 441151 0.4090 +9784 9892 0.4460 +9784 9897 0.4820 +9784 10311 0.7750 +9784 11021 0.4260 +9784 22878 0.4480 +9784 23161 0.6090 +9784 23163 0.4750 +9784 23166 0.7440 +9784 23325 0.4120 +9784 23412 0.4230 +9784 27131 0.8000 +9784 28952 0.7400 +9784 28988 0.6360 +9784 29886 0.5450 +9784 29887 0.4100 +9784 29907 0.6280 +9784 29916 0.6280 +9784 29934 0.7380 +9784 51019 0.4810 +9784 51292 0.6120 +9784 51375 0.5360 +9784 51429 0.4590 +9784 51699 0.7680 +9784 53407 0.6820 +9784 54520 0.7590 +9784 55737 0.8240 +9784 56654 0.4230 +9784 57020 0.8010 +9784 57231 0.5870 +9784 58533 0.6690 +9784 64089 0.5510 +9784 64838 0.5410 +9784 79856 0.4270 +9784 81609 0.4480 +9784 83605 0.4310 +9784 83891 0.5300 +9784 90203 0.4880 +9784 112936 0.6430 +9784 124460 0.4700 +9784 140706 0.4590 +9784 150684 0.5320 +9784 169166 0.4450 +9784 170622 0.4670 +9784 254122 0.5440 +9784 257364 0.6090 +9784 399979 0.4200 +9784 440712 0.4220 +9784 100133941 0.5470 +9784 100287171 0.4460 +9785 9790 0.4370 +9785 9818 0.4210 +9785 9869 0.4140 +9785 9879 0.9780 +9785 9883 0.4780 +9785 9904 0.4500 +9785 9939 0.9280 +9785 9972 0.4690 +9785 9987 0.4040 +9785 10171 0.4540 +9785 10189 0.8850 +9785 10212 0.5010 +9785 10250 0.8410 +9785 10262 0.6310 +9785 10283 0.9240 +9785 10286 0.8850 +9785 10291 0.8200 +9785 10421 0.6520 +9785 10450 0.8320 +9785 10569 0.9980 +9785 10594 0.9980 +9785 10713 0.4770 +9785 10762 0.5120 +9785 10813 0.5060 +9785 10891 0.6820 +9785 10914 0.8410 +9785 10921 0.6610 +9785 10946 0.7710 +9785 10973 0.4150 +9785 10978 0.5330 +9785 10987 0.4110 +9785 10992 0.7710 +9785 11051 0.5330 +9785 11052 0.5500 +9785 11056 0.4180 +9785 11083 0.4290 +9785 11097 0.4050 +9785 11218 0.4800 +9785 11231 0.6180 +9785 11325 0.7210 +9785 11338 0.9240 +9785 22794 0.9070 +9785 22827 0.5440 +9785 22907 0.4030 +9785 22916 0.8820 +9785 22938 0.9950 +9785 22984 0.4750 +9785 23020 0.9990 +9785 23070 0.5460 +9785 23082 0.7260 +9785 23091 0.4680 +9785 23165 0.4600 +9785 23225 0.4070 +9785 23251 0.4600 +9785 23279 0.5200 +9785 23293 0.4430 +9785 23398 0.9640 +9785 23450 0.8000 +9785 23451 0.8620 +9785 23481 0.4070 +9785 23511 0.5120 +9785 23517 0.5740 +9785 23524 0.9950 +9785 23620 0.5220 +9785 23636 0.4260 +9785 23644 0.5760 +9785 23759 0.5580 +9785 24144 0.9240 +9785 24148 0.7610 +9785 25949 0.9980 +9785 25980 0.5270 +9785 26017 0.6100 +9785 26121 0.7150 +9785 27238 0.9980 +9785 27336 0.4780 +9785 27339 0.9960 +9785 50618 0.5190 +9785 51163 0.9050 +9785 51340 0.9940 +9785 51362 0.9990 +9785 51428 0.7100 +9785 51503 0.9890 +9785 51585 0.5260 +9785 51593 0.8800 +9785 51605 0.4260 +9785 51634 0.7470 +9785 51639 0.5660 +9785 51645 0.9630 +9785 51759 0.5340 +9785 53371 0.4230 +9785 53938 0.8220 +9785 54555 0.5690 +9785 54883 0.9980 +9785 55100 0.8870 +9785 55110 0.9100 +9785 55226 0.4170 +9785 55285 0.5710 +9785 55565 0.4410 +9785 55599 0.5680 +9785 55626 0.4830 +9785 55671 0.4970 +9785 55696 0.9940 +9785 55702 0.9980 +9785 55706 0.4050 +9785 55746 0.4890 +9785 55760 0.4250 +9785 56919 0.4730 +9785 56949 0.9960 +9785 57122 0.4770 +9785 57187 0.5460 +9785 57461 0.9720 +9785 57647 0.5580 +9785 57703 0.9980 +9785 57805 0.5350 +9785 58509 0.6390 +9785 60625 0.6570 +9785 63932 0.5290 +9785 65083 0.5280 +9785 65109 0.8230 +9785 79023 0.4490 +9785 79039 0.4020 +9785 79165 0.5560 +9785 79446 0.8910 +9785 79576 0.5300 +9785 79665 0.4900 +9785 79706 0.6540 +9785 79753 0.6800 +9785 79869 0.7450 +9785 79902 0.4800 +9785 81609 0.4080 +9785 81929 0.4560 +9785 83443 0.5720 +9785 83479 0.4130 +9785 83938 0.7220 +9785 84271 0.6980 +9785 84811 0.8450 +9785 84844 0.4050 +9785 84950 0.4210 +9785 124245 0.4130 +9785 129401 0.4080 +9785 143884 0.6320 +9785 151903 0.8080 +9785 151987 0.7230 +9785 154007 0.6860 +9785 163859 0.6040 +9785 165545 0.4060 +9785 170506 0.5380 +9785 171017 0.4790 +9785 199746 0.5050 +9785 220074 0.7220 +9785 222183 0.8310 +9785 283767 0.4320 +9785 342371 0.4590 +9785 348995 0.4830 +9785 392517 0.5690 +9785 100101267 0.5270 +9785 100534599 0.9720 +9786 9851 0.5080 +9786 10198 0.4270 +9786 10464 0.5070 +9786 10733 0.4710 +9786 11127 0.4770 +9786 11337 0.5190 +9786 22897 0.6240 +9786 22994 0.5670 +9786 23247 0.4580 +9786 23322 0.5260 +9786 26005 0.6230 +9786 26123 0.4730 +9786 26160 0.5780 +9786 26520 0.4320 +9786 27077 0.4410 +9786 27152 0.4950 +9786 51057 0.4270 +9786 51098 0.5140 +9786 51134 0.5910 +9786 51199 0.4870 +9786 51259 0.5150 +9786 51339 0.4700 +9786 51524 0.4440 +9786 51626 0.5280 +9786 54806 0.5490 +9786 54875 0.6550 +9786 54903 0.4650 +9786 55112 0.5810 +9786 55689 0.4610 +9786 55764 0.4570 +9786 55835 0.4050 +9786 57539 0.5640 +9786 57545 0.5510 +9786 57560 0.6400 +9786 57728 0.5110 +9786 64770 0.4470 +9786 65062 0.4720 +9786 65250 0.5830 +9786 79598 0.7800 +9786 79600 0.4260 +9786 79659 0.5850 +9786 79741 0.4150 +9786 79809 0.6050 +9786 79848 0.5650 +9786 79867 0.4490 +9786 79959 0.4340 +9786 80184 0.7750 +9786 84131 0.4470 +9786 84902 0.5440 +9786 85302 0.4460 +9786 85459 0.5950 +9786 89891 0.6070 +9786 91147 0.5830 +9786 95681 0.4540 +9786 112752 0.4060 +9786 116840 0.4040 +9786 117178 0.4300 +9786 132320 0.5350 +9786 132884 0.4760 +9786 152185 0.4350 +9786 153241 0.8840 +9786 166378 0.6520 +9786 200894 0.5430 +9786 219844 0.4310 +9786 255758 0.5320 +9786 347240 0.6390 +9786 374654 0.5210 +9786 100190949 0.5060 +9787 9793 0.7260 +9787 9794 0.4990 +9787 9824 0.8010 +9787 9833 0.9820 +9787 9837 0.5180 +9787 9918 0.7630 +9787 9928 0.9330 +9787 10024 0.7700 +9787 10046 0.5120 +9787 10051 0.7280 +9787 10112 0.9700 +9787 10376 0.5090 +9787 10383 0.5490 +9787 10403 0.9570 +9787 10460 0.8450 +9787 10592 0.8070 +9787 10615 0.9280 +9787 10635 0.8840 +9787 10721 0.4310 +9787 10733 0.6870 +9787 10744 0.5190 +9787 10926 0.4600 +9787 11004 0.9750 +9787 11065 0.9680 +9787 11130 0.9200 +9787 11169 0.7540 +9787 11339 0.8560 +9787 22974 0.9780 +9787 23306 0.6930 +9787 23310 0.4080 +9787 23397 0.8180 +9787 23594 0.4770 +9787 24137 0.9620 +9787 25793 0.7540 +9787 26271 0.7180 +9787 26586 0.8380 +9787 29028 0.5870 +9787 29089 0.6190 +9787 29127 0.9350 +9787 29128 0.6180 +9787 51053 0.5700 +9787 51203 0.9650 +9787 51343 0.4330 +9787 51512 0.7360 +9787 51514 0.7560 +9787 51659 0.7200 +9787 54069 0.5270 +9787 54443 0.9140 +9787 54478 0.7260 +9787 54801 0.5570 +9787 54821 0.5720 +9787 54892 0.5620 +9787 54908 0.4600 +9787 54962 0.4270 +9787 55010 0.6450 +9787 55055 0.6790 +9787 55143 0.9610 +9787 55165 0.9990 +9787 55215 0.5620 +9787 55247 0.6720 +9787 55355 0.9460 +9787 55388 0.7560 +9787 55534 0.4990 +9787 55632 0.6000 +9787 55635 0.8810 +9787 55723 0.7510 +9787 55789 0.8780 +9787 55839 0.6870 +9787 56942 0.4330 +9787 56992 0.9370 +9787 57082 0.7480 +9787 57405 0.8540 +9787 57576 0.4590 +9787 57650 0.4820 +9787 63967 0.5680 +9787 64105 0.6610 +9787 64151 0.9480 +9787 64946 0.4820 +9787 79019 0.8030 +9787 79075 0.5620 +9787 79682 0.7340 +9787 79733 0.7990 +9787 79801 0.7400 +9787 79866 0.6600 +9787 79915 0.4180 +9787 79935 0.4020 +9787 81610 0.7700 +9787 81611 0.4090 +9787 81620 0.6210 +9787 81624 0.5430 +9787 81930 0.9450 +9787 83461 0.9510 +9787 83540 0.9640 +9787 83879 0.5480 +9787 84057 0.8160 +9787 84441 0.4990 +9787 84643 0.4530 +9787 84722 0.5820 +9787 84930 0.6370 +9787 85417 0.4330 +9787 89839 0.5970 +9787 90381 0.5720 +9787 90417 0.6280 +9787 90990 0.5290 +9787 113130 0.9210 +9787 114799 0.4050 +9787 128239 0.5890 +9787 133690 0.6640 +9787 144455 0.5650 +9787 146909 0.8180 +9787 147841 0.6180 +9787 148137 0.4010 +9787 150468 0.8970 +9787 151246 0.5970 +9787 151648 0.8490 +9787 157313 0.8980 +9787 157570 0.7140 +9787 166979 0.7020 +9787 220134 0.8080 +9787 221150 0.8010 +9787 259266 0.9940 +9787 283431 0.6080 +9787 285643 0.4260 +9787 387103 0.6820 +9787 402569 0.5060 +9787 554282 0.4540 +9787 653820 0.4730 +9787 728833 0.4490 +9787 729533 0.4720 +9788 10097 0.4660 +9788 23002 0.4570 +9788 25855 0.5100 +9788 51684 0.7250 +9788 54556 0.4530 +9788 80115 0.4460 +9788 84312 0.5100 +9788 137209 0.4480 +9789 10130 0.4380 +9789 10483 0.4140 +9789 10857 0.6230 +9789 10952 0.7900 +9789 10959 0.5950 +9789 10972 0.5660 +9789 11085 0.4200 +9789 11224 0.4570 +9789 11231 0.5680 +9789 23065 0.4340 +9789 23471 0.5920 +9789 23478 0.9970 +9789 23480 0.7630 +9789 23521 0.4050 +9789 25873 0.4050 +9789 28972 0.9990 +9789 29927 0.7330 +9789 51065 0.4800 +9789 51121 0.4630 +9789 51126 0.4210 +9789 51399 0.4510 +9789 51726 0.4020 +9789 51738 0.4160 +9789 54499 0.7760 +9789 55176 0.6910 +9789 55846 0.4550 +9789 58477 0.7060 +9789 58485 0.4550 +9789 58505 0.4100 +9789 60559 0.9990 +9789 79033 0.4620 +9789 79037 0.6080 +9789 79748 0.4580 +9789 80213 0.4440 +9789 81502 0.4140 +9789 81873 0.4520 +9789 83943 0.4450 +9789 84061 0.4040 +9789 90637 0.4520 +9789 90701 0.9990 +9789 94101 0.4070 +9789 140032 0.4280 +9789 140801 0.4020 +9789 143570 0.4740 +9789 196294 0.4520 +9789 200185 0.5200 +9789 200916 0.4600 +9789 339416 0.5200 +9789 375056 0.5020 +9790 9875 0.7440 +9790 9879 0.4480 +9790 9904 0.9960 +9790 9933 0.8820 +9790 10153 0.9390 +9790 10171 0.9990 +9790 10199 0.9990 +9790 10200 0.4110 +9790 10436 0.9970 +9790 10438 0.8320 +9790 10514 0.8080 +9790 10521 0.4480 +9790 10526 0.4540 +9790 10527 0.5090 +9790 10528 0.9990 +9790 10552 0.4330 +9790 10557 0.9030 +9790 10607 0.9990 +9790 10813 0.9980 +9790 10849 0.5300 +9790 10885 0.9990 +9790 10946 0.4070 +9790 10969 0.8890 +9790 10985 0.6290 +9790 11056 0.9010 +9790 11103 0.9990 +9790 11128 0.7890 +9790 11137 0.8750 +9790 11198 0.6670 +9790 11222 0.6390 +9790 11269 0.4160 +9790 11340 0.8830 +9790 22803 0.6850 +9790 22894 0.7100 +9790 22907 0.4600 +9790 22984 0.9990 +9790 23016 0.8100 +9790 23029 0.6830 +9790 23053 0.4750 +9790 23054 0.8800 +9790 23076 0.7740 +9790 23160 0.9990 +9790 23195 0.5870 +9790 23204 0.7720 +9790 23212 0.9390 +9790 23223 0.9820 +9790 23246 0.9400 +9790 23378 0.8550 +9790 23404 0.8380 +9790 23481 0.9470 +9790 23517 0.9730 +9790 23560 0.9430 +9790 24140 0.4910 +9790 25879 0.9980 +9790 25885 0.9380 +9790 25917 0.4570 +9790 25926 0.9420 +9790 25983 0.9980 +9790 26058 0.4690 +9790 26103 0.4200 +9790 26155 0.9670 +9790 26156 0.9960 +9790 26168 0.5620 +9790 26354 0.8490 +9790 26574 0.9980 +9790 26995 0.4660 +9790 27037 0.4170 +9790 27042 0.6880 +9790 27043 0.5750 +9790 27292 0.9710 +9790 27340 0.9990 +9790 27341 0.9980 +9790 28987 0.9550 +9790 29068 0.4640 +9790 29102 0.4050 +9790 29777 0.4650 +9790 29889 0.9790 +9790 29960 0.4870 +9790 29997 0.8510 +9790 30836 0.9960 +9790 51010 0.8200 +9790 51013 0.8950 +9790 51018 0.6790 +9790 51042 0.4200 +9790 51065 0.8950 +9790 51068 0.7100 +9790 51073 0.6830 +9790 51077 0.9980 +9790 51081 0.7950 +9790 51082 0.4400 +9790 51096 0.9990 +9790 51106 0.5620 +9790 51118 0.9970 +9790 51149 0.8450 +9790 51154 0.8890 +9790 51187 0.7400 +9790 51202 0.7430 +9790 51319 0.5770 +9790 51388 0.7670 +9790 51406 0.8050 +9790 51504 0.4240 +9790 51538 0.4220 +9790 51574 0.4050 +9790 51575 0.9120 +9790 51602 0.9990 +9790 51616 0.4430 +9790 54475 0.4980 +9790 54505 0.5010 +9790 54512 0.8130 +9790 54517 0.6460 +9790 54552 0.8140 +9790 54555 0.7330 +9790 54606 0.8270 +9790 54663 0.7060 +9790 54758 0.4240 +9790 54881 0.7180 +9790 54888 0.5090 +9790 55003 0.6470 +9790 55037 0.4530 +9790 55127 0.9990 +9790 55131 0.9860 +9790 55153 0.9470 +9790 55226 0.9990 +9790 55239 0.6800 +9790 55272 0.9970 +9790 55299 0.9080 +9790 55319 0.4260 +9790 55339 0.4100 +9790 55341 0.9170 +9790 55505 0.4830 +9790 55601 0.4540 +9790 55621 0.4230 +9790 55622 0.6870 +9790 55646 0.7880 +9790 55651 0.7720 +9790 55677 0.4490 +9790 55695 0.4820 +9790 55703 0.8400 +9790 55720 0.9760 +9790 55759 0.8870 +9790 55760 0.8030 +9790 55781 0.8690 +9790 55794 0.6830 +9790 55813 0.9990 +9790 55854 0.4760 +9790 56342 0.7310 +9790 56902 0.9910 +9790 56915 0.8300 +9790 56919 0.4570 +9790 57050 0.9990 +9790 57062 0.8740 +9790 57418 0.6860 +9790 57647 0.9460 +9790 57696 0.7530 +9790 60528 0.4910 +9790 60625 0.4570 +9790 63899 0.4130 +9790 63931 0.4960 +9790 64118 0.4100 +9790 64216 0.6980 +9790 64318 0.8730 +9790 64425 0.6270 +9790 64434 0.8620 +9790 64794 0.8660 +9790 64848 0.4430 +9790 64960 0.7770 +9790 64963 0.7820 +9790 65083 0.9990 +9790 65095 0.9210 +9790 79009 0.4900 +9790 79039 0.8920 +9790 79050 0.9980 +9790 79159 0.7380 +9790 79365 0.4060 +9790 79571 0.8790 +9790 79665 0.4680 +9790 79707 0.6900 +9790 79954 0.9990 +9790 79979 0.4050 +9790 80135 0.8360 +9790 81627 0.4380 +9790 81887 0.6270 +9790 83448 0.6130 +9790 83479 0.4190 +9790 83732 0.8150 +9790 83743 0.8880 +9790 84128 0.9990 +9790 84135 0.9990 +9790 84154 0.9270 +9790 84172 0.8520 +9790 84294 0.8240 +9790 84319 0.5280 +9790 84365 0.8090 +9790 84549 0.8860 +9790 84916 0.9990 +9790 84946 0.9220 +9790 85441 0.4140 +9790 85476 0.4180 +9790 88745 0.8410 +9790 90121 0.6480 +9790 90381 0.6290 +9790 90957 0.4470 +9790 91582 0.8290 +9790 91646 0.4140 +9790 92399 0.4210 +9790 92856 0.9990 +9790 115708 0.4060 +9790 115752 0.5440 +9790 116966 0.6840 +9790 117246 0.9630 +9790 118460 0.6990 +9790 122402 0.4100 +9790 124245 0.5800 +9790 126402 0.7760 +9790 128061 0.8050 +9790 129563 0.5650 +9790 140032 0.7670 +9790 142940 0.4780 +9790 146212 0.8910 +9790 153443 0.8290 +9790 155368 0.4820 +9790 161424 0.8630 +9790 165545 0.7970 +9790 170506 0.4500 +9790 221078 0.8010 +9790 221830 0.4100 +9790 285855 0.7260 +9790 317781 0.6130 +9790 340745 0.4480 +9790 344758 0.4140 +9790 345630 0.9190 +9790 387129 0.6770 +9790 387338 0.4680 +9790 641776 0.4890 +9790 643909 0.4890 +9790 692312 0.6830 +9790 728524 0.4890 +9790 100287284 0.5310 +9790 100505478 0.6540 +9790 100996746 0.4890 +9790 102157402 0.4280 +9790 105180390 0.4890 +9790 105180391 0.4890 +9791 10162 0.9150 +9791 10390 0.9560 +9791 10400 0.9580 +9791 10423 0.4530 +9791 10558 0.4420 +9791 11145 0.9000 +9791 11180 0.4430 +9791 23241 0.4700 +9791 23646 0.9000 +9791 23761 0.9860 +9791 26279 0.6500 +9791 26608 0.4170 +9791 30814 0.6810 +9791 50487 0.6500 +9791 51365 0.9190 +9791 51727 0.4970 +9791 54947 0.9130 +9791 55425 0.4730 +9791 56994 0.9530 +9791 64600 0.6820 +9791 79888 0.9150 +9791 81490 0.9360 +9791 81579 0.7120 +9791 84107 0.4080 +9791 84647 0.6500 +9791 85465 0.4500 +9791 114882 0.4190 +9791 114883 0.4660 +9791 122618 0.9000 +9791 123745 0.6950 +9791 129642 0.9280 +9791 151056 0.6890 +9791 154141 0.9000 +9791 254531 0.9040 +9791 255189 0.7140 +9791 283748 0.6590 +9791 391013 0.6500 +9791 100137049 0.6990 +9792 23580 0.4150 +9792 28999 0.4240 +9792 29946 0.6440 +9792 29950 0.5820 +9792 55844 0.4250 +9792 56256 0.5490 +9792 123207 0.4330 +9792 254427 0.4190 +9792 646962 0.4470 +9793 9857 0.4600 +9793 9918 0.6900 +9793 10051 0.5810 +9793 10112 0.6350 +9793 10133 0.5000 +9793 10142 0.5200 +9793 10244 0.4590 +9793 10376 0.6830 +9793 10381 0.5900 +9793 10382 0.5460 +9793 10383 0.6850 +9793 10403 0.9940 +9793 10426 0.6050 +9793 10460 0.9990 +9793 10540 0.6090 +9793 10579 0.9750 +9793 10592 0.4990 +9793 10615 0.5710 +9793 10726 0.8400 +9793 10733 0.5450 +9793 10806 0.5200 +9793 10844 0.7030 +9793 10982 0.8500 +9793 11004 0.7750 +9793 11064 0.4730 +9793 11129 0.7200 +9793 11190 0.4740 +9793 22841 0.4200 +9793 22919 0.9540 +9793 22924 0.9480 +9793 22938 0.7890 +9793 22974 0.7230 +9793 23046 0.4170 +9793 23116 0.5260 +9793 23122 0.7270 +9793 23271 0.4330 +9793 23332 0.6170 +9793 23354 0.5170 +9793 24137 0.6720 +9793 25841 0.4100 +9793 26049 0.4090 +9793 26052 0.4140 +9793 26586 0.5180 +9793 26986 0.5010 +9793 27127 0.4580 +9793 27175 0.4170 +9793 27237 0.4390 +9793 27436 0.5270 +9793 29028 0.4240 +9793 29127 0.4710 +9793 51134 0.5180 +9793 51143 0.5360 +9793 51175 0.5730 +9793 51199 0.4860 +9793 51203 0.4430 +9793 51512 0.4180 +9793 51807 0.5360 +9793 54443 0.4660 +9793 54478 0.5200 +9793 54517 0.5010 +9793 54801 0.7030 +9793 54821 0.5040 +9793 54875 0.4460 +9793 54930 0.5860 +9793 55125 0.5110 +9793 55142 0.5980 +9793 55143 0.5880 +9793 55255 0.4950 +9793 55559 0.5010 +9793 55582 0.4170 +9793 55632 0.5220 +9793 55755 0.6850 +9793 55835 0.4950 +9793 56992 0.6040 +9793 57576 0.6050 +9793 57606 0.9970 +9793 57662 0.4100 +9793 60528 0.5630 +9793 65985 0.4010 +9793 79441 0.5980 +9793 79861 0.5360 +9793 79866 0.5880 +9793 79935 0.4720 +9793 80086 0.5270 +9793 80184 0.4510 +9793 80223 0.4010 +9793 81027 0.5790 +9793 81533 0.4500 +9793 81930 0.8190 +9793 83540 0.9470 +9793 84076 0.4160 +9793 84617 0.5500 +9793 84643 0.4600 +9793 84722 0.4850 +9793 84790 0.6070 +9793 85378 0.5800 +9793 85417 0.5100 +9793 90417 0.4310 +9793 90990 0.4640 +9793 91687 0.4820 +9793 93323 0.5670 +9793 93594 0.5450 +9793 112714 0.5270 +9793 113457 0.5520 +9793 115106 0.5910 +9793 116840 0.4990 +9793 117177 0.5000 +9793 117286 0.4170 +9793 120892 0.5130 +9793 121441 0.5620 +9793 122060 0.7150 +9793 124093 0.4170 +9793 124602 0.4980 +9793 146909 0.5540 +9793 151246 0.5050 +9793 151648 0.5520 +9793 153241 0.8640 +9793 157313 0.4490 +9793 201931 0.4050 +9793 203068 0.7050 +9793 259266 0.4280 +9793 260334 0.5320 +9793 283431 0.5270 +9793 347688 0.5600 +9793 347733 0.6000 +9793 348235 0.4960 +9793 374654 0.4660 +9793 494551 0.7820 +9793 728378 0.4480 +9793 728642 0.7390 +9794 9839 0.4810 +9794 9978 0.5650 +9794 10013 0.5410 +9794 10014 0.5270 +9794 10046 0.6610 +9794 10320 0.5890 +9794 10578 0.8320 +9794 10683 0.6890 +9794 11317 0.9750 +9794 22938 0.8040 +9794 23013 0.6180 +9794 23028 0.4500 +9794 23112 0.5070 +9794 23129 0.5330 +9794 23135 0.5400 +9794 23286 0.5220 +9794 23373 0.7250 +9794 23385 0.5840 +9794 23462 0.8710 +9794 23493 0.7770 +9794 23509 0.6530 +9794 26508 0.7760 +9794 26523 0.4990 +9794 27161 0.5410 +9794 27327 0.5140 +9794 28514 0.7380 +9794 51107 0.5800 +9794 51176 0.6070 +9794 51564 0.7340 +9794 51593 0.7060 +9794 54567 0.7100 +9794 55294 0.7110 +9794 55534 0.9380 +9794 55851 0.5450 +9794 55869 0.5250 +9794 57801 0.5130 +9794 64783 0.5020 +9794 79718 0.5160 +9794 79866 0.4310 +9794 79885 0.5120 +9794 83933 0.5310 +9794 84441 0.9500 +9794 84456 0.5570 +9794 157285 0.4960 +9794 171558 0.6640 +9794 192669 0.5000 +9794 192670 0.5000 +9794 285527 0.4020 +9794 343930 0.5440 +9794 388585 0.7950 +9794 441478 0.7060 +9796 23253 0.4280 +9796 25865 0.4200 +9796 26470 0.4010 +9796 54852 0.6200 +9796 56934 0.5360 +9796 56992 0.5390 +9796 57795 0.4520 +9796 94059 0.4160 +9796 112950 0.4010 +9796 124540 0.4690 +9796 146330 0.4260 +9796 203190 0.6610 +9796 348013 0.4220 +9797 11282 0.4720 +9797 22893 0.5080 +9797 23042 0.4010 +9797 23510 0.4430 +9797 51244 0.6240 +9797 56181 0.5700 +9797 58526 0.4020 +9797 79685 0.4400 +9797 84275 0.4130 +9797 84522 0.4220 +9797 84561 0.4460 +9797 84890 0.5330 +9797 115795 0.4460 +9797 127731 0.4830 +9797 171222 0.4800 +9797 221908 0.4560 +9797 285368 0.5790 +9797 389610 0.4370 +9797 619373 0.4790 +9797 100533464 0.5090 +9798 9897 0.5330 +9798 10015 0.6360 +9798 10016 0.6020 +9798 10254 0.6910 +9798 10376 0.5470 +9798 10381 0.5210 +9798 10382 0.5150 +9798 10383 0.5320 +9798 10548 0.5570 +9798 10617 0.5260 +9798 10972 0.4470 +9798 11267 0.4910 +9798 22878 0.4020 +9798 23023 0.4160 +9798 23111 0.9570 +9798 23429 0.5060 +9798 23473 0.7620 +9798 23493 0.6840 +9798 25930 0.5910 +9798 25978 0.8860 +9798 25989 0.9330 +9798 27183 0.9880 +9798 27243 0.9860 +9798 51010 0.4310 +9798 51028 0.7350 +9798 51160 0.7250 +9798 51228 0.4310 +9798 51271 0.5360 +9798 51510 0.9980 +9798 51534 0.9960 +9798 51652 0.9900 +9798 51807 0.5430 +9798 55004 0.5020 +9798 55165 0.5450 +9798 55293 0.4090 +9798 57132 0.9990 +9798 64149 0.5220 +9798 65055 0.4400 +9798 79643 0.9930 +9798 79720 0.5240 +9798 79861 0.5510 +9798 80086 0.4990 +9798 81027 0.5140 +9798 84313 0.7520 +9798 84617 0.5150 +9798 84790 0.5460 +9798 84936 0.5390 +9798 89853 0.4190 +9798 91782 0.9490 +9798 92421 0.9470 +9798 93343 0.6960 +9798 112714 0.5440 +9798 113457 0.5410 +9798 118813 0.4860 +9798 128866 0.9170 +9798 129531 0.7410 +9798 137492 0.5280 +9798 148362 0.4620 +9798 200014 0.7120 +9798 221496 0.9010 +9798 260334 0.5140 +9798 347688 0.5270 +9798 347733 0.5150 +9798 100526767 0.9790 +9801 9856 0.7270 +9801 9858 0.9640 +9801 9914 0.5660 +9801 9987 0.4510 +9801 10056 0.4850 +9801 10061 0.7660 +9801 10102 0.9560 +9801 10135 0.6680 +9801 10240 0.8560 +9801 10291 0.6280 +9801 10455 0.4960 +9801 10473 0.9100 +9801 10526 0.5780 +9801 10573 0.9700 +9801 10667 0.4760 +9801 10730 0.6300 +9801 10772 0.4240 +9801 10884 0.9770 +9801 10939 0.8340 +9801 10964 0.7820 +9801 10988 0.4190 +9801 11128 0.6610 +9801 11222 0.9990 +9801 11224 0.9990 +9801 22794 0.4360 +9801 22984 0.9970 +9801 23107 0.9280 +9801 23173 0.4120 +9801 23193 0.5140 +9801 23204 0.8310 +9801 23252 0.8670 +9801 23405 0.8410 +9801 23423 0.5520 +9801 23521 0.9750 +9801 23640 0.8880 +9801 23658 0.4150 +9801 23732 0.8730 +9801 25885 0.6790 +9801 26164 0.9130 +9801 26227 0.4150 +9801 26271 0.6870 +9801 26275 0.9530 +9801 26354 0.4080 +9801 26589 0.9950 +9801 26995 0.5730 +9801 27068 0.4240 +9801 27079 0.4340 +9801 27430 0.4670 +9801 28957 0.8800 +9801 28973 0.8950 +9801 28977 0.9530 +9801 28998 0.9990 +9801 29074 0.9740 +9801 29088 0.9830 +9801 29093 0.9990 +9801 29102 0.8460 +9801 29889 0.4010 +9801 29896 0.4440 +9801 29927 0.8900 +9801 29960 0.8550 +9801 50814 0.4710 +9801 51001 0.5890 +9801 51014 0.5760 +9801 51021 0.9990 +9801 51023 0.9730 +9801 51067 0.4060 +9801 51069 0.9970 +9801 51073 0.9990 +9801 51081 0.9950 +9801 51116 0.9930 +9801 51121 0.9510 +9801 51149 0.9690 +9801 51154 0.9820 +9801 51204 0.6360 +9801 51250 0.8370 +9801 51253 0.9370 +9801 51258 0.9460 +9801 51263 0.9920 +9801 51264 0.9990 +9801 51318 0.8730 +9801 51373 0.8670 +9801 51473 0.7040 +9801 51642 0.8480 +9801 51649 0.8490 +9801 51650 0.8410 +9801 54148 0.9820 +9801 54460 0.9100 +9801 54516 0.7040 +9801 54534 0.9810 +9801 54552 0.4040 +9801 54948 0.9980 +9801 54995 0.5190 +9801 54998 0.8460 +9801 55037 0.8590 +9801 55052 0.9990 +9801 55157 0.4170 +9801 55168 0.9830 +9801 55173 0.9990 +9801 55176 0.8870 +9801 55178 0.8410 +9801 55268 0.4510 +9801 55272 0.9820 +9801 55316 0.9500 +9801 55324 0.7700 +9801 55341 0.4730 +9801 55651 0.4110 +9801 55699 0.6230 +9801 55703 0.8260 +9801 55794 0.8230 +9801 55856 0.5160 +9801 55862 0.5050 +9801 56474 0.4710 +9801 56648 0.8790 +9801 56945 0.9340 +9801 57129 0.9990 +9801 57136 0.6930 +9801 57470 0.4140 +9801 57471 0.5770 +9801 58472 0.4120 +9801 60488 0.9960 +9801 60558 0.8860 +9801 60678 0.4200 +9801 63875 0.9990 +9801 63931 0.9980 +9801 64146 0.9430 +9801 64374 0.8900 +9801 64432 0.9930 +9801 64756 0.4340 +9801 64928 0.9710 +9801 64949 0.8750 +9801 64951 0.8520 +9801 64960 0.9990 +9801 64963 0.9990 +9801 64965 0.9990 +9801 64968 0.9990 +9801 64969 0.9980 +9801 64975 0.9980 +9801 64976 0.9970 +9801 64978 0.9930 +9801 64979 0.9990 +9801 64981 0.9940 +9801 64983 0.9990 +9801 65003 0.9990 +9801 65005 0.9990 +9801 65008 0.9980 +9801 65080 0.9980 +9801 65121 0.6750 +9801 65122 0.6750 +9801 65993 0.8650 +9801 78988 0.9060 +9801 79590 0.9970 +9801 79631 0.9290 +9801 79691 0.4690 +9801 79728 0.5530 +9801 79922 0.4340 +9801 79932 0.5160 +9801 80146 0.5180 +9801 80270 0.4470 +9801 80298 0.4520 +9801 80775 0.4700 +9801 80790 0.5470 +9801 81890 0.4550 +9801 84141 0.4150 +9801 84172 0.8290 +9801 84273 0.4030 +9801 84311 0.9640 +9801 84340 0.9330 +9801 84545 0.9950 +9801 84881 0.5240 +9801 84883 0.4230 +9801 85476 0.9870 +9801 85865 0.9020 +9801 87178 0.7120 +9801 90313 0.8110 +9801 90480 0.9660 +9801 90624 0.7940 +9801 91574 0.9350 +9801 91875 0.4710 +9801 91893 0.4430 +9801 92170 0.8840 +9801 92399 0.9960 +9801 93517 0.4470 +9801 113000 0.4220 +9801 114781 0.7810 +9801 115416 0.9970 +9801 116540 0.9020 +9801 116541 0.9660 +9801 118487 0.8850 +9801 122704 0.9370 +9801 124359 0.4580 +9801 124995 0.9900 +9801 126402 0.9690 +9801 128308 0.9090 +9801 130916 0.8390 +9801 140801 0.8870 +9801 142940 0.6290 +9801 143244 0.8780 +9801 148022 0.5490 +9801 149478 0.6600 +9801 150209 0.4180 +9801 153830 0.5510 +9801 157310 0.8200 +9801 161582 0.7300 +9801 219402 0.5380 +9801 219927 0.9990 +9801 253175 0.4580 +9801 255308 0.5070 +9801 285367 0.4340 +9801 285855 0.9120 +9801 343068 0.6750 +9801 343070 0.6750 +9801 345051 0.8730 +9801 347487 0.9080 +9801 353376 0.5490 +9801 374659 0.9480 +9801 387129 0.9100 +9801 387338 0.8290 +9801 390999 0.6750 +9801 391002 0.6750 +9801 400735 0.6750 +9801 400736 0.6750 +9801 440560 0.6750 +9801 440561 0.6750 +9801 441873 0.6750 +9801 641776 0.8230 +9801 643909 0.8230 +9801 645359 0.6750 +9801 653619 0.6750 +9801 728378 0.4350 +9801 728524 0.8230 +9801 729528 0.6750 +9801 100287482 0.9080 +9801 100302736 0.5490 +9801 100505478 0.9100 +9801 100526842 0.9680 +9801 100996746 0.8230 +9801 101929983 0.6750 +9801 105180390 0.8230 +9801 105180391 0.8230 +9801 114483834 0.7700 +9801 127898561 0.8110 +9802 10766 0.5280 +9802 11030 0.4630 +9802 11201 0.4200 +9802 23543 0.6100 +9802 26528 0.9380 +9802 27246 0.4630 +9802 54472 0.6010 +9802 54514 0.5590 +9802 54932 0.5330 +9802 55540 0.7000 +9802 60680 0.4870 +9802 64744 0.4950 +9802 64750 0.5960 +9802 65055 0.4930 +9802 66037 0.8350 +9802 84528 0.7480 +9802 92715 0.4680 +9802 116071 0.6380 +9802 122060 0.5070 +9802 130617 0.6570 +9802 133482 0.4220 +9802 170302 0.5410 +9802 200523 0.5300 +9802 283659 0.4800 +9802 337970 0.5910 +9802 553115 0.4280 +9802 729233 0.4290 +9804 9868 0.9990 +9804 9927 0.8350 +9804 10018 0.5650 +9804 10059 0.8120 +9804 10105 0.4760 +9804 10128 0.4300 +9804 10133 0.5620 +9804 10241 0.5220 +9804 10245 0.8890 +9804 10367 0.4270 +9804 10440 0.9320 +9804 10452 0.9990 +9804 10469 0.7430 +9804 10533 0.5520 +9804 10651 0.7770 +9804 10730 0.5810 +9804 10871 0.4410 +9804 10891 0.6030 +9804 10939 0.5820 +9804 10952 0.4430 +9804 10989 0.8820 +9804 11315 0.4640 +9804 11331 0.6130 +9804 11337 0.4820 +9804 11345 0.5030 +9804 22906 0.4850 +9804 23197 0.4040 +9804 23203 0.4200 +9804 23277 0.4740 +9804 23369 0.4350 +9804 23410 0.4180 +9804 23710 0.5080 +9804 23770 0.7940 +9804 23786 0.4930 +9804 25793 0.7890 +9804 25813 0.9630 +9804 26515 0.4560 +9804 26517 0.5560 +9804 26519 0.7230 +9804 26520 0.7160 +9804 26521 0.4080 +9804 27430 0.4100 +9804 29090 0.5780 +9804 29928 0.6320 +9804 29956 0.4240 +9804 51021 0.4030 +9804 51024 0.8090 +9804 51025 0.5030 +9804 51651 0.4580 +9804 51742 0.5560 +9804 54205 0.8020 +9804 54471 0.6770 +9804 54543 0.9990 +9804 54708 0.6350 +9804 54927 0.7930 +9804 54940 0.4910 +9804 55014 0.4010 +9804 55177 0.5030 +9804 55187 0.4040 +9804 55288 0.8040 +9804 55333 0.5090 +9804 55486 0.6470 +9804 55669 0.9020 +9804 55699 0.4860 +9804 55735 0.7030 +9804 55847 0.4610 +9804 56947 0.7260 +9804 56993 0.9990 +9804 57506 0.4800 +9804 64216 0.4150 +9804 64976 0.4610 +9804 65018 0.9850 +9804 79135 0.7120 +9804 79594 0.6940 +9804 80179 0.4520 +9804 81631 0.7790 +9804 84134 0.8450 +9804 84303 0.6820 +9804 84311 0.4480 +9804 84557 0.5400 +9804 84701 0.6380 +9804 84749 0.9390 +9804 89941 0.6250 +9804 90550 0.4800 +9804 92609 0.7640 +9804 115209 0.6350 +9804 125170 0.5840 +9804 125988 0.7010 +9804 131118 0.6090 +9804 131474 0.6270 +9804 137902 0.5270 +9804 139322 0.7280 +9804 139341 0.6200 +9804 140823 0.4930 +9804 192111 0.4990 +9804 201931 0.4050 +9804 345778 0.7180 +9804 387990 0.5640 +9804 401505 0.9980 +9804 440574 0.7390 +9804 100188893 0.9970 +9804 100287932 0.9450 +9805 23078 0.5500 +9805 64208 0.4150 +9805 64689 0.5440 +9805 79187 0.5310 +9805 84080 0.4160 +9805 122830 0.4250 +9805 130162 0.5200 +9805 137392 0.5540 +9806 10468 0.7330 +9807 9993 0.4690 +9807 10869 0.6850 +9807 11163 0.4030 +9807 11165 0.4660 +9807 23016 0.7690 +9807 23190 0.7850 +9807 23262 0.9920 +9807 51343 0.4910 +9807 51447 0.9310 +9807 51477 0.5820 +9807 57805 0.5320 +9807 58497 0.4040 +9807 60626 0.4800 +9807 63891 0.5810 +9807 64768 0.9670 +9807 80194 0.5840 +9807 84315 0.4400 +9807 90196 0.4450 +9807 117283 0.9130 +9807 118813 0.4060 +9807 151473 0.4040 +9807 221830 0.4780 +9807 389118 0.5270 +9810 9869 0.4150 +9810 9958 0.5710 +9810 9960 0.4630 +9810 10273 0.8070 +9810 10293 0.4050 +9810 10421 0.7830 +9810 10467 0.4140 +9810 10477 0.4560 +9810 10847 0.5330 +9810 10869 0.4050 +9810 11065 0.4130 +9810 11074 0.4780 +9810 11091 0.4310 +9810 11198 0.5980 +9810 23067 0.5140 +9810 23070 0.4410 +9810 23168 0.7650 +9810 23326 0.6380 +9810 23381 0.5600 +9810 23510 0.4290 +9810 23644 0.7900 +9810 24144 0.6750 +9810 25962 0.6210 +9810 27136 0.4410 +9810 27338 0.5740 +9810 29072 0.6840 +9810 29089 0.4580 +9810 30827 0.4200 +9810 51322 0.9640 +9810 54145 0.7910 +9810 54623 0.9320 +9810 54926 0.4500 +9810 54939 0.5830 +9810 55140 0.4610 +9810 55167 0.5500 +9810 55234 0.7920 +9810 56254 0.9990 +9810 56852 0.4670 +9810 56970 0.5720 +9810 57410 0.4520 +9810 57448 0.4230 +9810 57634 0.5060 +9810 57720 0.4020 +9810 57805 0.7840 +9810 60626 0.5140 +9810 63893 0.4810 +9810 65264 0.4620 +9810 79577 0.9400 +9810 80335 0.5420 +9810 80349 0.6360 +9810 84101 0.5170 +9810 84444 0.5710 +9810 85236 0.8910 +9810 94239 0.4200 +9810 123169 0.7490 +9810 128312 0.7910 +9810 148581 0.8410 +9810 158880 0.4640 +9810 158983 0.7910 +9810 165918 0.4650 +9810 255626 0.8910 +9810 286436 0.7910 +9810 339287 0.4350 +9810 440093 0.6400 +9810 440686 0.6400 +9810 440689 0.7920 +9810 653604 0.6400 +9810 114483833 0.7910 +9811 10449 0.4120 +9811 10527 0.4690 +9811 11269 0.6620 +9811 22916 0.9280 +9811 23143 0.4460 +9811 26019 0.4350 +9811 29118 0.4450 +9811 54808 0.6520 +9811 55068 0.5870 +9811 55308 0.9060 +9811 55421 0.4610 +9811 55629 0.4530 +9811 57409 0.8750 +9811 84376 0.5480 +9811 85456 0.4160 +9811 125336 0.4620 +9811 201501 0.4440 +9811 220134 0.5130 +9811 284427 0.4190 +9812 10956 0.5320 +9812 22809 0.4840 +9812 27102 0.7480 +9812 27248 0.5290 +9812 27348 0.4240 +9812 54439 0.4360 +9812 55145 0.4270 +9812 81570 0.5830 +9812 83939 0.4030 +9812 115209 0.7650 +9812 153830 0.4170 +9813 64756 0.4750 +9813 65983 0.6170 +9813 143384 0.4210 +9813 158427 0.4520 +9813 158431 0.4800 +9813 283237 0.4380 +9813 285175 0.4360 +9813 374973 0.6080 +9814 10133 0.4990 +9814 10426 0.5430 +9814 10733 0.4320 +9814 10844 0.5440 +9814 23019 0.5230 +9814 23354 0.5750 +9814 26173 0.4480 +9814 54801 0.4990 +9814 54930 0.4990 +9814 55142 0.5040 +9814 55559 0.4990 +9814 55746 0.4180 +9814 57473 0.4530 +9814 57585 0.4730 +9814 64080 0.4170 +9814 79081 0.5720 +9814 79441 0.5090 +9814 79866 0.4990 +9814 80764 0.4720 +9814 84261 0.4550 +9814 90141 0.6870 +9814 93323 0.5220 +9814 115106 0.4990 +9814 116138 0.4390 +9814 117177 0.5000 +9814 117245 0.4330 +9814 132851 0.4280 +9814 134359 0.6930 +9814 284001 0.5090 +9814 728642 0.5960 +9814 729920 0.6930 +9815 9853 0.6370 +9815 10006 0.4530 +9815 10038 0.6300 +9815 10152 0.5000 +9815 10163 0.4770 +9815 10298 0.5540 +9815 10318 0.4320 +9815 10518 0.4790 +9815 10787 0.4550 +9815 11060 0.4200 +9815 23048 0.4270 +9815 23075 0.4170 +9815 23191 0.4450 +9815 23219 0.4650 +9815 23433 0.5810 +9815 23513 0.5680 +9815 23580 0.4050 +9815 23764 0.4430 +9815 25894 0.4060 +9815 26030 0.4010 +9815 27128 0.4330 +9815 27445 0.4890 +9815 28964 0.9520 +9815 50807 0.4770 +9815 51289 0.5600 +9815 51347 0.4300 +9815 51517 0.6220 +9815 54874 0.4370 +9815 55004 0.4010 +9815 55240 0.4050 +9815 55616 0.4110 +9815 55742 0.6520 +9815 55914 0.4210 +9815 57381 0.6290 +9815 58480 0.5880 +9815 64083 0.4510 +9815 64320 0.4030 +9815 81609 0.4830 +9815 81624 0.4540 +9815 91010 0.4050 +9815 116984 0.5250 +9815 117579 0.4620 +9815 128239 0.4210 +9815 143098 0.4100 +9815 144402 0.4050 +9815 147179 0.4500 +9815 170589 0.5490 +9815 171177 0.5730 +9816 9875 0.8900 +9816 9948 0.5780 +9816 10097 0.4470 +9816 10391 0.4120 +9816 10486 0.4480 +9816 10487 0.4440 +9816 23076 0.4680 +9816 23082 0.5030 +9816 23160 0.4690 +9816 23212 0.4550 +9816 23395 0.4070 +9816 23625 0.4780 +9816 27340 0.4520 +9816 28970 0.4800 +9816 50628 0.6240 +9816 55035 0.7620 +9816 64794 0.7800 +9816 84135 0.5020 +9816 84172 0.6380 +9816 84549 0.4170 +9816 84747 0.4740 +9816 92935 0.6540 +9816 112840 0.4550 +9816 163081 0.4320 +9816 100130958 0.4250 +9817 9861 0.5640 +9817 9886 0.9160 +9817 9903 0.9140 +9817 9958 0.8200 +9817 9978 0.9990 +9817 10016 0.7340 +9817 10025 0.4510 +9817 10072 0.9920 +9817 10133 0.6140 +9817 10197 0.5590 +9817 10213 0.6140 +9817 10241 0.6090 +9817 10324 0.9150 +9817 10488 0.5940 +9817 10533 0.7080 +9817 10626 0.5390 +9817 10628 0.4780 +9817 10763 0.6210 +9817 10848 0.7930 +9817 10871 0.7220 +9817 10891 0.5300 +9817 11146 0.7230 +9817 11243 0.5770 +9817 11275 0.9010 +9817 11315 0.9150 +9817 11337 0.5580 +9817 11345 0.4430 +9817 22926 0.4430 +9817 23053 0.9000 +9817 23142 0.5150 +9817 23198 0.5600 +9817 23221 0.9190 +9817 23410 0.4320 +9817 23411 0.6110 +9817 23412 0.5220 +9817 23510 0.6400 +9817 23552 0.4420 +9817 23633 0.6660 +9817 23657 0.6300 +9817 23710 0.4360 +9817 23764 0.5320 +9817 25828 0.5250 +9817 26043 0.5100 +9817 26249 0.9640 +9817 27035 0.4870 +9817 27244 0.8520 +9817 27252 0.9090 +9817 27306 0.6310 +9817 28952 0.5170 +9817 28991 0.5090 +9817 29072 0.4210 +9817 29099 0.5040 +9817 29126 0.4320 +9817 50507 0.5930 +9817 50852 0.4070 +9817 51081 0.4080 +9817 51088 0.4500 +9817 51122 0.5070 +9817 51397 0.5060 +9817 53339 0.4360 +9817 53905 0.4430 +9817 54165 0.5770 +9817 54205 0.5720 +9817 54442 0.6080 +9817 54575 0.4150 +9817 54576 0.4120 +9817 54577 0.4130 +9817 54578 0.4430 +9817 54583 0.4600 +9817 54657 0.4100 +9817 54658 0.4390 +9817 54800 0.7790 +9817 54876 0.4950 +9817 54939 0.5300 +9817 54951 0.5100 +9817 55014 0.4180 +9817 55074 0.5340 +9817 55175 0.4960 +9817 55208 0.5450 +9817 55294 0.5250 +9817 55666 0.5530 +9817 55832 0.6400 +9817 55905 0.4950 +9817 55922 0.8920 +9817 55958 0.9220 +9817 55975 0.9150 +9817 57153 0.7270 +9817 57521 0.5600 +9817 57542 0.9130 +9817 57563 0.9090 +9817 59349 0.9340 +9817 64410 0.9110 +9817 64750 0.4890 +9817 64839 0.9550 +9817 64855 0.7510 +9817 65018 0.6540 +9817 79661 0.7480 +9817 79728 0.9960 +9817 79734 0.9100 +9817 79892 0.7690 +9817 80311 0.4130 +9817 80344 0.4920 +9817 81628 0.6380 +9817 81631 0.9300 +9817 83667 0.9210 +9817 83892 0.7400 +9817 84078 0.9010 +9817 84181 0.5820 +9817 84259 0.5400 +9817 84292 0.4600 +9817 84541 0.9160 +9817 84557 0.7220 +9817 84823 0.5280 +9817 84861 0.9140 +9817 84883 0.4050 +9817 89890 0.9020 +9817 90135 0.4010 +9817 90293 0.9190 +9817 114548 0.4760 +9817 122706 0.5200 +9817 129831 0.5430 +9817 131377 0.7620 +9817 133482 0.5470 +9817 135152 0.4060 +9817 137902 0.5580 +9817 139285 0.9780 +9817 140809 0.6450 +9817 143471 0.5430 +9817 149951 0.5130 +9817 150684 0.5070 +9817 150864 0.5010 +9817 154881 0.4130 +9817 165918 0.4420 +9817 170622 0.5070 +9817 192111 0.9980 +9817 200845 0.5930 +9817 252969 0.9990 +9817 253980 0.9010 +9817 257202 0.7270 +9817 339745 0.9110 +9817 390594 0.4520 +9817 493869 0.7370 +9817 553115 0.7520 +9817 653604 0.4050 +9817 730249 0.4300 +9817 100527963 0.5680 +9818 9862 0.4640 +9818 9877 0.4230 +9818 9883 0.8280 +9818 9939 0.5370 +9818 9972 0.9530 +9818 9984 0.4530 +9818 10045 0.5620 +9818 10073 0.4730 +9818 10189 0.5070 +9818 10204 0.9000 +9818 10250 0.6620 +9818 10291 0.4570 +9818 10482 0.8150 +9818 10526 0.5550 +9818 10569 0.4050 +9818 10762 0.9390 +9818 10783 0.4090 +9818 10898 0.4210 +9818 10921 0.5220 +9818 11097 0.8440 +9818 11218 0.4230 +9818 11260 0.7160 +9818 11338 0.4220 +9818 22794 0.5040 +9818 22824 0.4280 +9818 22894 0.4160 +9818 22916 0.5310 +9818 23165 0.9970 +9818 23225 0.9620 +9818 23279 0.9740 +9818 23511 0.9840 +9818 23636 0.9990 +9818 25909 0.9690 +9818 25929 0.4190 +9818 26097 0.4110 +9818 26953 0.4820 +9818 27161 0.4780 +9818 29107 0.6100 +9818 29894 0.4330 +9818 50628 0.4050 +9818 51132 0.4530 +9818 51182 0.4820 +9818 51362 0.4270 +9818 51501 0.4500 +9818 51692 0.4940 +9818 51808 0.5330 +9818 53371 0.9990 +9818 53981 0.4750 +9818 54596 0.4490 +9818 54830 0.7010 +9818 54960 0.4310 +9818 54989 0.5640 +9818 55110 0.5540 +9818 55143 0.4140 +9818 55301 0.4440 +9818 55339 0.4200 +9818 55706 0.9630 +9818 55746 0.9930 +9818 56000 0.4350 +9818 56001 0.4290 +9818 57122 0.9950 +9818 57187 0.5320 +9818 57609 0.4090 +9818 57727 0.5670 +9818 65109 0.5270 +9818 79023 0.9620 +9818 79228 0.4720 +9818 79711 0.4220 +9818 79760 0.4870 +9818 79833 0.4130 +9818 79902 0.9900 +9818 80145 0.5150 +9818 81608 0.4410 +9818 81929 0.9840 +9818 84248 0.4160 +9818 84271 0.5110 +9818 84321 0.5000 +9818 84324 0.4640 +9818 91754 0.4220 +9818 115825 0.4580 +9818 116835 0.4050 +9818 129401 0.9890 +9818 137362 0.4020 +9818 140609 0.4110 +9818 157869 0.4440 +9818 197322 0.4470 +9818 259217 0.4050 +9818 348995 0.9810 +9818 376497 0.4490 +9818 400668 0.4060 +9818 728343 0.7020 +9818 729857 0.6690 +9818 100101267 0.8040 +9819 23211 0.4090 +9819 26608 0.4210 +9819 29959 0.9230 +9819 56287 0.4110 +9819 79084 0.6430 +9819 81628 0.7410 +9819 89884 0.6800 +9819 150864 0.6370 +9819 163033 0.4010 +9819 200504 0.4370 +9819 256369 0.4310 +9819 340371 0.4380 +9819 342667 0.4580 +9819 389941 0.6100 +9821 9842 0.4590 +9821 9858 0.4280 +9821 9895 0.4910 +9821 10113 0.6650 +9821 10133 0.9690 +9821 10241 0.9990 +9821 10313 0.4180 +9821 10325 0.6370 +9821 10459 0.5240 +9821 10533 0.9150 +9821 10542 0.5410 +9821 10670 0.6290 +9821 10724 0.4590 +9821 10871 0.7940 +9821 11152 0.6410 +9821 11337 0.9700 +9821 11345 0.9530 +9821 22863 0.9990 +9821 22878 0.5500 +9821 23001 0.5000 +9821 23130 0.7580 +9821 23192 0.7240 +9821 23411 0.5220 +9821 23710 0.9670 +9821 23770 0.4040 +9821 23786 0.6010 +9821 25988 0.4260 +9821 25989 0.7500 +9821 26100 0.9300 +9821 28956 0.5480 +9821 29110 0.8790 +9821 29982 0.9990 +9821 30849 0.9860 +9821 51100 0.5280 +9821 51366 0.4570 +9821 51368 0.4460 +9821 51422 0.5520 +9821 53349 0.7090 +9821 53632 0.5210 +9821 54463 0.4830 +9821 55004 0.5710 +9821 55014 0.8170 +9821 55054 0.9990 +9821 55062 0.8730 +9821 55102 0.7180 +9821 55183 0.4020 +9821 55201 0.6440 +9821 55255 0.6450 +9821 55332 0.5060 +9821 55626 0.8760 +9821 56270 0.5060 +9821 57521 0.9790 +9821 57724 0.6170 +9821 58528 0.6380 +9821 60673 0.9990 +9821 64121 0.6580 +9821 64223 0.7400 +9821 64343 0.6830 +9821 64422 0.9360 +9821 64786 0.4910 +9821 64798 0.4610 +9821 65018 0.7190 +9821 79065 0.8330 +9821 79443 0.4520 +9821 81631 0.8640 +9821 81671 0.7120 +9821 83452 0.4260 +9821 83667 0.8560 +9821 83734 0.9490 +9821 84335 0.9620 +9821 84557 0.8980 +9821 84938 0.6740 +9821 84971 0.6130 +9821 89849 0.9610 +9821 115201 0.6640 +9821 138151 0.4280 +9821 139341 0.4480 +9821 140735 0.5530 +9821 140775 0.8750 +9821 149420 0.4140 +9821 153129 0.5870 +9821 203228 0.9830 +9821 221037 0.4110 +9821 253260 0.5090 +9821 259217 0.4780 +9821 285973 0.6260 +9821 389541 0.5390 +9821 392307 0.5430 +9821 440738 0.8760 +9821 441925 0.9540 +9821 643246 0.4480 +9823 22927 0.5160 +9823 23545 0.4400 +9823 26112 0.4900 +9823 51309 0.5840 +9823 55653 0.4800 +9823 57696 0.4940 +9823 64756 0.4750 +9823 80011 0.5150 +9823 83446 0.5130 +9823 84528 0.4570 +9823 85012 0.4850 +9823 90423 0.5000 +9823 129563 0.4730 +9823 143570 0.4020 +9823 151790 0.5290 +9823 400506 0.4430 +9824 9833 0.5420 +9824 9928 0.7510 +9824 10024 0.4670 +9824 10112 0.6920 +9824 10403 0.6800 +9824 10592 0.6440 +9824 10615 0.6810 +9824 10733 0.5430 +9824 11004 0.6300 +9824 11065 0.5200 +9824 11169 0.4270 +9824 22974 0.5530 +9824 23306 0.4380 +9824 23397 0.5430 +9824 24137 0.6820 +9824 26095 0.4350 +9824 26586 0.6460 +9824 29127 0.6170 +9824 51203 0.6280 +9824 51514 0.4030 +9824 54443 0.6210 +9824 54821 0.4640 +9824 54892 0.4970 +9824 55010 0.4340 +9824 55143 0.7020 +9824 55165 0.7270 +9824 55247 0.4070 +9824 55355 0.5980 +9824 55388 0.4840 +9824 55635 0.6840 +9824 55732 0.5130 +9824 55789 0.6260 +9824 55930 0.4330 +9824 56992 0.6980 +9824 57082 0.5600 +9824 57405 0.5080 +9824 57576 0.4080 +9824 59348 0.4100 +9824 63967 0.4470 +9824 64105 0.4170 +9824 64151 0.6030 +9824 79019 0.4310 +9824 79733 0.5840 +9824 79801 0.6480 +9824 81624 0.4590 +9824 81930 0.6330 +9824 83461 0.4710 +9824 83540 0.6130 +9824 83903 0.5330 +9824 84124 0.4500 +9824 84930 0.4070 +9824 90381 0.4810 +9824 91057 0.4760 +9824 113130 0.5180 +9824 128239 0.4320 +9824 144455 0.4020 +9824 146909 0.6190 +9824 151246 0.4380 +9824 151648 0.5360 +9824 157313 0.5360 +9824 157570 0.5420 +9824 195828 0.4390 +9824 220134 0.4450 +9824 221150 0.4650 +9824 259266 0.8090 +9824 284992 0.4520 +9824 554282 0.4610 +9824 653820 0.5450 +9824 728833 0.4480 +9824 729533 0.4940 +9825 10133 0.5770 +9825 10318 0.7400 +9825 10454 0.6700 +9825 10616 0.9840 +9825 10733 0.4400 +9825 10875 0.6030 +9825 29110 0.5370 +9825 55072 0.9960 +9825 55327 0.6190 +9825 55905 0.4530 +9825 64127 0.4980 +9825 81858 0.9820 +9825 90268 0.6160 +9825 124044 0.9210 +9825 221302 0.4120 +9826 10287 0.7580 +9826 10298 0.8840 +9826 10507 0.8870 +9826 10672 0.9980 +9826 11214 0.9200 +9826 22899 0.4450 +9826 23002 0.7950 +9826 23173 0.4610 +9826 23263 0.4800 +9826 23294 0.5260 +9826 23365 0.9650 +9826 23654 0.9860 +9826 26499 0.4380 +9826 26575 0.7880 +9826 27289 0.7700 +9826 54845 0.4670 +9826 55160 0.4400 +9826 55200 0.4570 +9826 55201 0.5580 +9826 55740 0.5020 +9826 57144 0.7340 +9826 64283 0.4890 +9826 64407 0.7780 +9826 64779 0.5350 +9826 84135 0.4150 +9826 84687 0.5610 +9826 84952 0.5540 +9826 85397 0.7890 +9826 89846 0.4310 +9826 115557 0.6200 +9826 115708 0.4730 +9826 116984 0.4100 +9826 149499 0.4370 +9826 153478 0.4950 +9826 260425 0.4600 +9826 353299 0.4440 +9826 431704 0.7920 +9826 440695 0.4210 +9826 100271715 0.4860 +9827 9844 0.7200 +9827 10139 0.5820 +9827 10228 0.5880 +9827 10466 0.5000 +9827 10542 0.9000 +9827 10618 0.5060 +9827 22796 0.5280 +9827 23351 0.4510 +9827 25839 0.5260 +9827 28956 0.9000 +9827 51542 0.6120 +9827 51560 0.6410 +9827 54059 0.6080 +9827 55004 0.9000 +9827 55255 0.7220 +9827 55275 0.6180 +9827 57511 0.5940 +9827 57589 0.9860 +9827 57720 0.5380 +9827 63908 0.5170 +9827 79065 0.4470 +9827 79571 0.5590 +9827 79791 0.4460 +9827 83452 0.5660 +9827 83548 0.5130 +9827 85442 0.7200 +9827 90196 0.5220 +9827 91949 0.5220 +9827 121355 0.4500 +9827 140775 0.7260 +9827 143187 0.5240 +9827 203228 0.7200 +9827 283337 0.5140 +9827 339122 0.5610 +9827 342371 0.4450 +9827 389541 0.9000 +9828 10395 0.4240 +9828 10672 0.4400 +9828 23365 0.4430 +9828 23551 0.5570 +9828 24147 0.4530 +9828 25960 0.4670 +9828 27303 0.4320 +9828 29803 0.4520 +9828 30827 0.4550 +9828 51285 0.5680 +9828 51421 0.4780 +9828 54443 0.4720 +9828 55160 0.4770 +9828 55331 0.4110 +9828 55701 0.5250 +9828 55901 0.4610 +9828 57124 0.5010 +9828 57125 0.6430 +9828 64283 0.4400 +9828 83478 0.4180 +9828 84897 0.4220 +9828 85004 0.4340 +9828 93663 0.4890 +9828 728763 0.4270 +9829 9892 0.7190 +9829 10049 0.5400 +9829 10053 0.5950 +9829 10059 0.4280 +9829 10294 0.6370 +9829 10618 0.5500 +9829 10717 0.5370 +9829 10808 0.4610 +9829 11080 0.8070 +9829 11231 0.4750 +9829 11315 0.6410 +9829 22848 0.5020 +9829 22905 0.6970 +9829 23149 0.5490 +9829 23230 0.4460 +9829 23317 0.8240 +9829 23400 0.7890 +9829 23431 0.6520 +9829 23557 0.5500 +9829 25793 0.7630 +9829 25977 0.6110 +9829 26052 0.5680 +9829 26058 0.6140 +9829 26258 0.4990 +9829 26278 0.4550 +9829 27000 0.5570 +9829 27131 0.5500 +9829 27429 0.5930 +9829 29058 0.5990 +9829 29924 0.4750 +9829 50618 0.4550 +9829 51142 0.6450 +9829 51429 0.7290 +9829 54431 0.6290 +9829 54741 0.4920 +9829 54832 0.7620 +9829 54885 0.5210 +9829 55040 0.6930 +9829 55192 0.4180 +9829 55330 0.4990 +9829 55466 0.6620 +9829 55735 0.4020 +9829 55737 0.8170 +9829 56521 0.5810 +9829 64215 0.5240 +9829 65018 0.7250 +9829 79608 0.5970 +9829 80208 0.5950 +9829 80331 0.6110 +9829 81567 0.5300 +9829 83932 0.6020 +9829 84062 0.5280 +9829 84286 0.4480 +9829 85021 0.4640 +9829 85479 0.4570 +9829 115548 0.4100 +9829 116442 0.6620 +9829 120526 0.4280 +9829 120892 0.6350 +9829 130162 0.9740 +9829 130340 0.5490 +9829 131118 0.5040 +9829 134218 0.5640 +9829 148534 0.4640 +9829 165721 0.4650 +9829 286451 0.5820 +9829 388552 0.5190 +9829 391356 0.6200 +9830 9866 0.4260 +9830 9958 0.5350 +9830 10475 0.5200 +9830 11074 0.5580 +9830 11140 0.4700 +9830 22954 0.5200 +9830 23087 0.4320 +9830 23321 0.4070 +9830 23586 0.6880 +9830 25939 0.4230 +9830 29110 0.5520 +9830 50852 0.9210 +9830 51191 0.4840 +9830 54765 0.6300 +9830 54941 0.4940 +9830 55601 0.4610 +9830 56897 0.6190 +9830 57506 0.9050 +9830 64135 0.4580 +9830 79132 0.5920 +9830 81603 0.4840 +9830 81844 0.6130 +9830 84851 0.6190 +9830 91445 0.4490 +9830 91543 0.5770 +9830 114088 0.4210 +9830 115004 0.5840 +9830 286827 0.5550 +9830 442862 0.4720 +9831 10940 0.4910 +9831 28991 0.4500 +9831 65265 0.4590 +9831 80728 0.4940 +9831 84933 0.4970 +9831 84948 0.4610 +9831 148223 0.5200 +9831 286077 0.4040 +9831 400258 0.4390 +9831 100533106 0.4790 +9832 10381 0.4010 +9832 26687 0.5070 +9832 57687 0.4050 +9832 79187 0.5210 +9832 79745 0.6020 +9832 79887 0.4610 +9832 128611 0.5090 +9832 202374 0.4930 +9832 388536 0.4020 +9833 9837 0.6060 +9833 9918 0.4770 +9833 9928 0.8540 +9833 10024 0.7190 +9833 10051 0.6460 +9833 10112 0.9290 +9833 10403 0.9350 +9833 10460 0.7210 +9833 10592 0.6850 +9833 10615 0.7350 +9833 10635 0.8870 +9833 10721 0.4990 +9833 10733 0.8470 +9833 10971 0.4220 +9833 11004 0.9350 +9833 11065 0.9480 +9833 11130 0.9030 +9833 11169 0.5690 +9833 11339 0.8420 +9833 22974 0.9580 +9833 23310 0.4550 +9833 23397 0.8930 +9833 23594 0.5400 +9833 24137 0.9640 +9833 25886 0.4420 +9833 26271 0.5190 +9833 26586 0.5360 +9833 29028 0.5830 +9833 29089 0.7060 +9833 29127 0.8560 +9833 29128 0.5970 +9833 29980 0.5310 +9833 51053 0.4360 +9833 51203 0.9300 +9833 51422 0.4330 +9833 51512 0.7460 +9833 51514 0.8420 +9833 51659 0.5890 +9833 53632 0.4250 +9833 54069 0.6280 +9833 54443 0.8310 +9833 54478 0.6270 +9833 54821 0.6920 +9833 54892 0.7280 +9833 54908 0.5510 +9833 55010 0.6740 +9833 55055 0.6510 +9833 55143 0.9020 +9833 55165 0.9560 +9833 55215 0.6150 +9833 55247 0.7120 +9833 55355 0.9240 +9833 55388 0.8610 +9833 55635 0.7510 +9833 55723 0.5740 +9833 55732 0.4550 +9833 55789 0.6660 +9833 55839 0.7050 +9833 56992 0.8680 +9833 57082 0.4770 +9833 57405 0.7240 +9833 57650 0.4840 +9833 63967 0.5580 +9833 64105 0.6520 +9833 64151 0.9360 +9833 64946 0.5180 +9833 79019 0.6740 +9833 79075 0.5010 +9833 79370 0.5400 +9833 79682 0.6270 +9833 79733 0.7450 +9833 79801 0.7390 +9833 79866 0.4100 +9833 79915 0.4750 +9833 79935 0.4280 +9833 80119 0.4030 +9833 81610 0.6060 +9833 81620 0.5370 +9833 81624 0.6050 +9833 81930 0.6850 +9833 83461 0.8720 +9833 83540 0.9360 +9833 83879 0.5250 +9833 83903 0.5480 +9833 84057 0.7970 +9833 84904 0.4800 +9833 84930 0.5100 +9833 90381 0.5060 +9833 90417 0.4500 +9833 90441 0.9660 +9833 113115 0.4770 +9833 113130 0.8750 +9833 116028 0.4090 +9833 144455 0.5310 +9833 146760 0.4020 +9833 146909 0.6800 +9833 150468 0.9120 +9833 151246 0.4650 +9833 151648 0.7330 +9833 157313 0.6620 +9833 157570 0.5100 +9833 166979 0.5720 +9833 220134 0.8160 +9833 221150 0.7180 +9833 259266 0.9460 +9833 285643 0.4560 +9833 387103 0.6180 +9833 402569 0.5200 +9836 11128 0.4650 +9836 24140 0.6010 +9836 27079 0.4860 +9836 51504 0.4970 +9836 55039 0.9190 +9836 55253 0.8640 +9836 55900 0.7660 +9836 56902 0.4470 +9836 57561 0.4100 +9836 57570 0.8250 +9836 57617 0.4170 +9836 63891 0.4200 +9836 127253 0.9060 +9836 129450 0.9600 +9836 100130742 0.4670 +9837 9918 0.5800 +9837 9928 0.6620 +9837 9978 0.8150 +9837 10036 0.5150 +9837 10051 0.5740 +9837 10112 0.5140 +9837 10592 0.5440 +9837 10615 0.4110 +9837 10635 0.5590 +9837 10926 0.6520 +9837 11004 0.6290 +9837 11011 0.5460 +9837 11065 0.7010 +9837 11073 0.7570 +9837 11130 0.8490 +9837 11169 0.9960 +9837 11339 0.6060 +9837 22974 0.6260 +9837 23397 0.6580 +9837 23594 0.5530 +9837 23595 0.6670 +9837 23649 0.6710 +9837 24137 0.5080 +9837 25842 0.5370 +9837 26586 0.4220 +9837 29127 0.5480 +9837 29128 0.4030 +9837 29980 0.4380 +9837 51053 0.5360 +9837 51203 0.5340 +9837 51514 0.5130 +9837 51659 0.9990 +9837 51750 0.4560 +9837 53981 0.4130 +9837 54107 0.6040 +9837 54443 0.4050 +9837 54821 0.5480 +9837 54892 0.7830 +9837 54962 0.9960 +9837 55143 0.4410 +9837 55165 0.6770 +9837 55171 0.4770 +9837 55355 0.4130 +9837 55388 0.9650 +9837 55635 0.4880 +9837 55723 0.6110 +9837 55732 0.4480 +9837 55789 0.5330 +9837 55839 0.4020 +9837 56648 0.4610 +9837 56655 0.6010 +9837 56992 0.5110 +9837 57050 0.5200 +9837 57405 0.5300 +9837 57719 0.4110 +9837 57819 0.4750 +9837 63922 0.4410 +9837 63967 0.8740 +9837 64105 0.4790 +9837 64151 0.6690 +9837 64785 0.9990 +9837 64802 0.4080 +9837 64946 0.5080 +9837 79000 0.4310 +9837 79019 0.4240 +9837 79075 0.6260 +9837 79733 0.5740 +9837 79801 0.6450 +9837 81577 0.4380 +9837 81620 0.6300 +9837 81930 0.6240 +9837 83540 0.4780 +9837 84057 0.6440 +9837 84250 0.5970 +9837 84296 0.9990 +9837 84515 0.8010 +9837 84823 0.4250 +9837 90381 0.6300 +9837 113130 0.4510 +9837 116211 0.6880 +9837 122769 0.8690 +9837 146909 0.5600 +9837 147841 0.5150 +9837 151648 0.5280 +9837 157570 0.5690 +9837 157777 0.6880 +9837 220134 0.6100 +9837 221150 0.4450 +9837 254394 0.9020 +9837 259266 0.6460 +9837 282809 0.4350 +9837 387103 0.4250 +9839 10413 0.4020 +9839 10919 0.5020 +9839 23028 0.6470 +9839 23405 0.4850 +9839 26128 0.6470 +9839 27250 0.4070 +9839 29102 0.4180 +9839 30009 0.4640 +9839 50943 0.4320 +9839 51176 0.4320 +9839 54845 0.4350 +9839 55135 0.4240 +9839 55294 0.4990 +9839 57514 0.8390 +9839 64129 0.4120 +9839 79712 0.5270 +9839 79923 0.5080 +9839 91612 0.7970 +9839 117581 0.7480 +9839 100133941 0.5070 +9839 100506658 0.4770 +9839 100532731 0.5480 +9840 10750 0.5600 +9840 10920 0.9000 +9840 10980 0.9000 +9840 10987 0.9000 +9840 27040 0.8570 +9840 50813 0.9000 +9840 50852 0.4980 +9840 51138 0.9000 +9840 51390 0.4500 +9840 54482 0.4050 +9840 64708 0.9000 +9840 80196 0.4340 +9840 150678 0.9000 +9840 155435 0.4240 +9840 283316 0.4440 +9840 387357 0.8710 +9841 23598 0.4090 +9841 27097 0.4330 +9841 28999 0.5950 +9841 55892 0.4510 +9841 57109 0.4150 +9841 83879 0.7320 +9841 91603 0.4600 +9841 200558 0.4160 +9841 285755 0.5000 +9842 9884 0.4450 +9842 10241 0.4580 +9842 10312 0.8980 +9842 10533 0.4290 +9842 10652 0.4440 +9842 10871 0.6900 +9842 11337 0.9650 +9842 11345 0.9010 +9842 22863 0.6140 +9842 22898 0.4040 +9842 23339 0.7910 +9842 23710 0.8600 +9842 23770 0.4070 +9842 25851 0.6920 +9842 25940 0.5050 +9842 26100 0.4330 +9842 26499 0.7090 +9842 27072 0.6310 +9842 28962 0.9190 +9842 29887 0.7330 +9842 30849 0.4450 +9842 51326 0.5120 +9842 51622 0.4540 +9842 55014 0.7530 +9842 55357 0.4590 +9842 55626 0.4140 +9842 55823 0.7060 +9842 57617 0.7120 +9842 57724 0.7530 +9842 60673 0.4060 +9842 64422 0.4490 +9842 64601 0.5660 +9842 65082 0.6260 +9842 79443 0.7360 +9842 81565 0.4940 +9842 81631 0.5310 +9842 83547 0.5670 +9842 83590 0.4540 +9842 84557 0.4040 +9842 127829 0.4950 +9842 139341 0.4370 +9842 147710 0.4560 +9842 162540 0.4310 +9842 221079 0.6830 +9842 221960 0.4520 +9842 284058 0.4510 +9842 285180 0.4440 +9842 374819 0.4310 +9842 440738 0.9470 +9843 9973 0.4290 +9843 10085 0.6420 +9843 23229 0.4250 +9843 23516 0.4850 +9843 28970 0.4060 +9843 30061 0.9920 +9843 55240 0.5300 +9843 57817 0.7880 +9843 60401 0.4780 +9843 64116 0.4230 +9843 79901 0.8320 +9843 80003 0.4260 +9843 84869 0.5120 +9843 113235 0.4880 +9843 132949 0.4340 +9843 148738 0.6650 +9843 164656 0.4070 +9844 9891 0.6330 +9844 10006 0.6580 +9844 10124 0.7730 +9844 10152 0.5590 +9844 10163 0.5830 +9844 10458 0.5680 +9844 10461 0.6130 +9844 10542 0.7260 +9844 10787 0.5560 +9844 10810 0.4990 +9844 23191 0.5400 +9844 23210 0.5580 +9844 23327 0.4350 +9844 23348 0.4310 +9844 23433 0.5200 +9844 23499 0.7840 +9844 25780 0.4150 +9844 26999 0.5820 +9844 27237 0.5040 +9844 28956 0.7350 +9844 51003 0.4670 +9844 51454 0.8930 +9844 55004 0.7220 +9844 55255 0.7200 +9844 55531 0.4440 +9844 55576 0.6370 +9844 55692 0.4200 +9844 55764 0.6230 +9844 55845 0.5500 +9844 57539 0.9860 +9844 57541 0.7730 +9844 57589 0.7220 +9844 57647 0.5340 +9844 63916 0.9800 +9844 79767 0.9810 +9844 80005 0.9900 +9844 84173 0.4940 +9844 84466 0.5320 +9844 84735 0.5640 +9844 85442 0.7200 +9844 91937 0.4350 +9844 130271 0.6300 +9844 140775 0.7200 +9844 151126 0.7210 +9844 203228 0.7210 +9844 255520 0.5070 +9844 257019 0.5710 +9844 389541 0.7310 +9844 390714 0.5020 +9846 10190 0.4560 +9846 10750 0.6020 +9846 10818 0.4310 +9846 10858 0.4240 +9846 10971 0.4680 +9846 22878 0.5990 +9846 23476 0.4120 +9846 23607 0.6120 +9846 25759 0.4640 +9846 26499 0.5730 +9846 27040 0.4010 +9846 27095 0.5420 +9846 30849 0.4990 +9846 51112 0.6010 +9846 51399 0.4220 +9846 51693 0.4730 +9846 54106 0.4990 +9846 57533 0.6150 +9846 58485 0.5750 +9846 60684 0.6120 +9846 64096 0.4990 +9846 78986 0.4020 +9846 79731 0.4150 +9846 80006 0.5890 +9846 84547 0.4470 +9846 119391 0.4200 +9846 122553 0.5330 +9846 126003 0.4790 +9846 139716 0.6850 +9846 146433 0.4990 +9846 285193 0.4020 +9846 399665 0.4890 +9846 399687 0.4990 +9847 9913 0.4870 +9847 10640 0.4640 +9847 10890 0.5770 +9847 11336 0.4620 +9847 23265 0.5090 +9847 23476 0.4340 +9847 51552 0.5430 +9847 54536 0.4900 +9847 55763 0.4550 +9847 55770 0.5360 +9847 60412 0.5320 +9847 79058 0.5710 +9847 80256 0.4060 +9847 84445 0.4200 +9847 115825 0.4410 +9847 139886 0.4060 +9847 149371 0.5020 +9847 225689 0.4540 +9847 252983 0.4250 +9848 10675 0.4700 +9848 51166 0.4530 +9848 51388 0.4790 +9848 51562 0.4420 +9848 54681 0.4060 +9848 63877 0.5270 +9848 64225 0.4100 +9848 253714 0.4720 +9848 375035 0.5820 +9848 445815 0.4450 +9849 9984 0.4410 +9849 10919 0.4550 +9849 23350 0.5160 +9849 27202 0.4570 +9849 54877 0.5730 +9849 79927 0.4290 +9849 158431 0.4580 +9849 256643 0.5240 +9849 284417 0.4660 +9849 389333 0.4670 +9851 10464 0.6010 +9851 11116 0.4440 +9851 22832 0.6840 +9851 22994 0.6620 +9851 22995 0.5250 +9851 23322 0.6850 +9851 54806 0.5380 +9851 54875 0.5570 +9851 55012 0.5130 +9851 55178 0.4360 +9851 55722 0.5210 +9851 57562 0.4020 +9851 64770 0.9220 +9851 79848 0.4850 +9851 79959 0.4160 +9851 80184 0.4730 +9851 121278 0.5800 +9851 123811 0.8940 +9851 152206 0.5050 +9851 153241 0.6620 +9851 153733 0.4380 +9851 159989 0.4030 +9851 163786 0.5030 +9851 165055 0.4210 +9851 246744 0.4320 +9851 284403 0.4640 +9851 285331 0.4190 +9851 343099 0.5240 +9851 374618 0.4360 +9852 23619 0.4870 +9852 27247 0.6990 +9852 51507 0.4560 +9852 57477 0.4750 +9852 60682 0.4330 +9852 79078 0.4340 +9852 84316 0.4910 +9852 85443 0.4270 +9852 92104 0.5070 +9852 113802 0.4200 +9852 129530 0.5720 +9852 140831 0.4630 +9852 200916 0.4400 +9852 378884 0.7000 +9853 9950 0.4100 +9853 10717 0.5850 +9853 10955 0.5710 +9853 11021 0.9640 +9853 11073 0.4390 +9853 11154 0.5770 +9853 11315 0.4300 +9853 23431 0.5620 +9853 23527 0.5710 +9853 23590 0.4600 +9853 27235 0.6050 +9853 28964 0.4080 +9853 29914 0.5610 +9853 51179 0.4680 +9853 54363 0.4680 +9853 57107 0.4600 +9853 57515 0.5990 +9853 64137 0.4520 +9853 64780 0.6450 +9853 64837 0.4050 +9853 79065 0.6920 +9853 79759 0.5990 +9853 79947 0.5860 +9853 80852 0.6220 +9853 81876 0.9010 +9853 91734 0.5610 +9853 116150 0.5360 +9853 137682 0.5610 +9853 145282 0.4820 +9853 146705 0.5090 +9853 163486 0.4310 +9853 221955 0.4200 +9853 340390 0.5610 +9853 414918 0.4970 +9853 440026 0.4350 +9854 23344 0.6220 +9854 55852 0.4570 +9854 57488 0.5860 +9854 57605 0.4770 +9854 79849 0.4200 +9854 83850 0.4310 +9854 112476 0.4100 +9854 114879 0.5720 +9854 114882 0.5160 +9854 118987 0.4500 +9854 221468 0.4690 +9855 10371 0.8270 +9855 10494 0.4770 +9855 10585 0.4140 +9855 11216 0.4300 +9855 23396 0.9070 +9855 26499 0.4400 +9855 27289 0.4910 +9855 51078 0.4970 +9855 51281 0.4560 +9855 54848 0.4030 +9855 55558 0.6710 +9855 55584 0.4020 +9855 57679 0.4350 +9855 60412 0.4180 +9855 91584 0.8290 +9855 132204 0.4020 +9855 148281 0.4150 +9855 347730 0.4040 +9856 9892 0.5560 +9856 9914 0.7050 +9856 10618 0.4050 +9856 23181 0.4530 +9856 26047 0.6910 +9856 26119 0.4990 +9856 29978 0.5390 +9856 29988 0.4010 +9856 51473 0.9860 +9856 51567 0.9310 +9856 54221 0.4730 +9856 54806 0.4220 +9856 55856 0.9450 +9856 64753 0.5190 +9856 65078 0.5190 +9856 79648 0.4220 +9856 79750 0.5240 +9856 80790 0.6840 +9856 81688 0.4970 +9856 84239 0.4030 +9856 85445 0.4690 +9856 93986 0.6620 +9856 140767 0.6100 +9856 149069 0.5850 +9856 152518 0.5700 +9856 161582 0.9720 +9856 259266 0.4130 +9856 285195 0.5480 +9856 728597 0.5570 +9857 9859 0.6150 +9857 9969 0.4880 +9857 10142 0.4170 +9857 10540 0.4440 +9857 10733 0.6130 +9857 11064 0.4870 +9857 11116 0.9770 +9857 11158 0.7020 +9857 11190 0.6130 +9857 22897 0.5680 +9857 22919 0.6300 +9857 22924 0.5730 +9857 22994 0.5700 +9857 22995 0.6450 +9857 23049 0.6490 +9857 23064 0.6420 +9857 23358 0.4190 +9857 23469 0.7840 +9857 25836 0.6830 +9857 25903 0.4180 +9857 25962 0.4780 +9857 26046 0.5660 +9857 26092 0.5680 +9857 49856 0.4280 +9857 51134 0.4780 +9857 51174 0.4500 +9857 51175 0.4180 +9857 51199 0.6850 +9857 51592 0.4620 +9857 54454 0.6020 +9857 54464 0.6520 +9857 54542 0.5190 +9857 54875 0.5740 +9857 54882 0.4240 +9857 55012 0.7360 +9857 55023 0.5240 +9857 55088 0.5180 +9857 55125 0.6590 +9857 55722 0.4460 +9857 55755 0.6050 +9857 55814 0.6390 +9857 55835 0.4240 +9857 57448 0.4150 +9857 64222 0.5070 +9857 64770 0.4310 +9857 79598 0.6830 +9857 80173 0.4140 +9857 80184 0.6580 +9857 83987 0.4370 +9857 84461 0.4280 +9857 84902 0.6450 +9857 84984 0.8770 +9857 85302 0.4800 +9857 114803 0.4200 +9857 116840 0.4400 +9857 121441 0.5870 +9857 123811 0.5540 +9857 132320 0.5570 +9857 145508 0.5060 +9857 146057 0.5710 +9857 152185 0.4120 +9857 152206 0.4160 +9857 153241 0.6390 +9857 163589 0.4740 +9857 163590 0.4820 +9857 163786 0.4850 +9857 197131 0.5320 +9857 200894 0.4840 +9857 259282 0.4500 +9857 282991 0.5370 +9858 10056 0.4520 +9858 10061 0.4870 +9858 10102 0.6840 +9858 10135 0.4920 +9858 10201 0.4930 +9858 10209 0.4950 +9858 10240 0.4400 +9858 10289 0.4950 +9858 10399 0.8000 +9858 10412 0.7790 +9858 10473 0.6730 +9858 10557 0.6110 +9858 10939 0.5610 +9858 10964 0.5220 +9858 10985 0.5420 +9858 10988 0.5690 +9858 11103 0.4570 +9858 11128 0.6280 +9858 11222 0.9420 +9858 11224 0.9030 +9858 22927 0.5440 +9858 22984 0.9060 +9858 23042 0.4910 +9858 23107 0.5110 +9858 23135 0.4540 +9858 23148 0.4930 +9858 23173 0.5600 +9858 23193 0.4780 +9858 23204 0.6800 +9858 23252 0.6200 +9858 23368 0.4740 +9858 23405 0.5200 +9858 23423 0.4980 +9858 23521 0.7740 +9858 23553 0.4090 +9858 23640 0.6830 +9858 23732 0.5620 +9858 25813 0.4390 +9858 25873 0.8530 +9858 25885 0.6280 +9858 25988 0.5010 +9858 26135 0.5440 +9858 26251 0.4220 +9858 26271 0.4940 +9858 26275 0.8760 +9858 26589 0.8890 +9858 27012 0.4220 +9858 27068 0.4390 +9858 27292 0.4950 +9858 27335 0.5480 +9858 27340 0.4710 +9858 27433 0.4930 +9858 28957 0.4200 +9858 28973 0.4260 +9858 28991 0.4100 +9858 28998 0.9340 +9858 29088 0.8950 +9858 29093 0.9390 +9858 29102 0.5240 +9858 29922 0.4930 +9858 29927 0.7830 +9858 51014 0.4980 +9858 51021 0.9650 +9858 51023 0.7080 +9858 51065 0.6840 +9858 51069 0.9330 +9858 51073 0.9340 +9858 51081 0.9370 +9858 51106 0.4820 +9858 51119 0.4900 +9858 51121 0.7700 +9858 51149 0.7730 +9858 51154 0.8210 +9858 51187 0.4650 +9858 51263 0.6650 +9858 51264 0.9590 +9858 51314 0.5440 +9858 51319 0.6110 +9858 51386 0.4220 +9858 51649 0.4210 +9858 51650 0.4110 +9858 53339 0.4180 +9858 54148 0.4020 +9858 54460 0.4830 +9858 54516 0.5160 +9858 54948 0.9320 +9858 55052 0.9520 +9858 55168 0.7080 +9858 55173 0.9530 +9858 55176 0.7830 +9858 55272 0.8280 +9858 55316 0.7700 +9858 55324 0.4690 +9858 55591 0.5600 +9858 55651 0.6130 +9858 55703 0.6780 +9858 55781 0.4530 +9858 56474 0.5230 +9858 56479 0.4220 +9858 56648 0.7550 +9858 56965 0.6440 +9858 57010 0.4560 +9858 57129 0.8560 +9858 57470 0.4560 +9858 57763 0.4300 +9858 60488 0.8630 +9858 60558 0.6200 +9858 60678 0.5500 +9858 63875 0.9600 +9858 63931 0.9470 +9858 63932 0.4330 +9858 64146 0.6200 +9858 64216 0.4900 +9858 64374 0.6760 +9858 64432 0.8320 +9858 64745 0.8130 +9858 64951 0.4120 +9858 64960 0.9440 +9858 64963 0.9410 +9858 64965 0.9650 +9858 64968 0.9610 +9858 64969 0.9490 +9858 64975 0.8850 +9858 64976 0.8680 +9858 64978 0.5780 +9858 64979 0.9590 +9858 64981 0.8390 +9858 64983 0.9560 +9858 65003 0.9060 +9858 65005 0.9400 +9858 65008 0.8100 +9858 65080 0.8970 +9858 65121 0.5560 +9858 65122 0.5560 +9858 65993 0.5250 +9858 79590 0.8310 +9858 79631 0.6940 +9858 79668 0.6430 +9858 80150 0.4630 +9858 80194 0.4890 +9858 81790 0.4290 +9858 84172 0.6790 +9858 84311 0.4740 +9858 84545 0.9180 +9858 84883 0.4080 +9858 84946 0.4660 +9858 85377 0.4260 +9858 85476 0.6890 +9858 90231 0.4620 +9858 90313 0.4910 +9858 90624 0.5220 +9858 91574 0.4920 +9858 91875 0.5100 +9858 92196 0.4710 +9858 92399 0.8930 +9858 93107 0.4220 +9858 114781 0.5220 +9858 114987 0.8000 +9858 116541 0.4770 +9858 116729 0.4830 +9858 116832 0.6270 +9858 118487 0.6410 +9858 124454 0.6350 +9858 124995 0.6910 +9858 126402 0.8160 +9858 138151 0.5920 +9858 138428 0.5480 +9858 140032 0.7520 +9858 140801 0.6760 +9858 143244 0.7550 +9858 148022 0.5050 +9858 150209 0.4060 +9858 153443 0.4790 +9858 157310 0.5780 +9858 169522 0.4220 +9858 170850 0.4220 +9858 200916 0.7110 +9858 219927 0.9410 +9858 253769 0.4550 +9858 254268 0.4220 +9858 255308 0.5370 +9858 266812 0.6230 +9858 283518 0.4220 +9858 285855 0.6890 +9858 286077 0.4410 +9858 343068 0.5560 +9858 343070 0.5560 +9858 345051 0.5620 +9858 353376 0.4980 +9858 374659 0.6010 +9858 386746 0.4110 +9858 387129 0.6860 +9858 387712 0.4610 +9858 390212 0.5500 +9858 390999 0.5560 +9858 391002 0.5560 +9858 400735 0.5560 +9858 400736 0.5560 +9858 440560 0.5560 +9858 440561 0.5560 +9858 441873 0.5560 +9858 641776 0.6800 +9858 643909 0.6800 +9858 645051 0.5300 +9858 645073 0.5300 +9858 645359 0.5560 +9858 653619 0.5560 +9858 654364 0.5240 +9858 728524 0.6800 +9858 728689 0.5690 +9858 729396 0.5300 +9858 729422 0.5300 +9858 729428 0.5300 +9858 729431 0.5300 +9858 729442 0.5300 +9858 729447 0.5300 +9858 729528 0.5560 +9858 100008586 0.5300 +9858 100101490 0.4390 +9858 100132399 0.5300 +9858 100302736 0.4980 +9858 100505478 0.6860 +9858 100526842 0.7700 +9858 100529097 0.6850 +9858 100529239 0.7270 +9858 100996746 0.6800 +9858 101929983 0.5560 +9858 102724473 0.5300 +9858 105180390 0.6800 +9858 105180391 0.6800 +9858 114483834 0.4870 +9859 9866 0.4240 +9859 9928 0.4090 +9859 9950 0.4380 +9859 10142 0.6260 +9859 10390 0.4250 +9859 10460 0.4630 +9859 10472 0.4730 +9859 10579 0.4580 +9859 10602 0.4240 +9859 10733 0.4870 +9859 10806 0.4630 +9859 10982 0.4620 +9859 11004 0.7690 +9859 11064 0.9840 +9859 11116 0.4340 +9859 11127 0.4400 +9859 11190 0.6260 +9859 22832 0.5180 +9859 22897 0.7350 +9859 22919 0.7390 +9859 22981 0.4570 +9859 22994 0.6600 +9859 22995 0.5500 +9859 23043 0.4520 +9859 23243 0.4570 +9859 23322 0.4120 +9859 26005 0.4470 +9859 27185 0.6510 +9859 27285 0.4450 +9859 29110 0.5600 +9859 30011 0.4490 +9859 51134 0.6400 +9859 51175 0.7620 +9859 51199 0.9780 +9859 54069 0.4770 +9859 54801 0.4350 +9859 54875 0.8790 +9859 55023 0.5040 +9859 55125 0.5290 +9859 55250 0.4410 +9859 55722 0.4770 +9859 55755 0.5930 +9859 55765 0.5250 +9859 57805 0.4800 +9859 79598 0.5750 +9859 80184 0.6270 +9859 80323 0.9740 +9859 81565 0.5290 +9859 84167 0.4240 +9859 84376 0.4600 +9859 84461 0.6530 +9859 84643 0.8290 +9859 84902 0.6550 +9859 84984 0.5570 +9859 85302 0.6240 +9859 90060 0.9720 +9859 115948 0.4300 +9859 116840 0.4910 +9859 121441 0.5340 +9859 132320 0.6690 +9859 140609 0.4690 +9859 145508 0.9920 +9859 146057 0.4550 +9859 152185 0.4080 +9859 153241 0.5740 +9859 163087 0.4530 +9859 163786 0.5770 +9859 197335 0.4530 +9859 200894 0.5200 +9859 259266 0.4160 +9859 283638 0.5370 +9859 284403 0.8400 +9859 729440 0.8700 +9860 9913 0.4160 +9860 10695 0.5080 +9860 22859 0.5140 +9860 23141 0.5050 +9860 23266 0.5140 +9860 23284 0.5140 +9860 26018 0.7600 +9860 26031 0.4130 +9860 54876 0.5360 +9860 56963 0.4570 +9860 57448 0.4660 +9860 57474 0.5410 +9860 57711 0.4910 +9860 60495 0.7180 +9860 64766 0.5300 +9860 84859 0.5440 +9860 84961 0.4560 +9860 90806 0.4510 +9860 114803 0.4040 +9860 170959 0.5590 +9860 192669 0.6640 +9860 285268 0.7860 +9860 401265 0.4180 +9861 9978 0.5430 +9861 10197 0.7550 +9861 10213 0.9990 +9861 10296 0.5220 +9861 10393 0.4260 +9861 10480 0.4660 +9861 10537 0.6700 +9861 10574 0.4920 +9861 10575 0.5150 +9861 10576 0.4620 +9861 10617 0.6810 +9861 10694 0.4960 +9861 10920 0.4350 +9861 10980 0.7560 +9861 10987 0.8320 +9861 11014 0.4140 +9861 11047 0.9990 +9861 11059 0.4190 +9861 11065 0.4960 +9861 11104 0.6200 +9861 11140 0.4430 +9861 22948 0.5530 +9861 23072 0.4520 +9861 23194 0.4240 +9861 23198 0.7980 +9861 23392 0.8530 +9861 23729 0.5980 +9861 25906 0.4310 +9861 26043 0.5090 +9861 26271 0.4540 +9861 27335 0.5930 +9861 27338 0.4980 +9861 29028 0.6150 +9861 29882 0.4250 +9861 29945 0.4540 +9861 29978 0.6670 +9861 29979 0.6670 +9861 51029 0.4060 +9861 51053 0.4570 +9861 51138 0.7590 +9861 51330 0.4010 +9861 51343 0.4560 +9861 51371 0.6840 +9861 51377 0.9980 +9861 51433 0.4510 +9861 51434 0.4110 +9861 51512 0.4290 +9861 51529 0.4010 +9861 51667 0.5180 +9861 51699 0.4190 +9861 54454 0.6010 +9861 54469 0.5550 +9861 54583 0.4160 +9861 55139 0.4370 +9861 55277 0.5980 +9861 55294 0.4040 +9861 55666 0.5560 +9861 55795 0.5600 +9861 55968 0.4100 +9861 56061 0.8830 +9861 56893 0.9960 +9861 56984 0.4210 +9861 57559 0.7030 +9861 59269 0.4020 +9861 59349 0.4270 +9861 60685 0.5710 +9861 64326 0.4090 +9861 64344 0.4460 +9861 64682 0.4160 +9861 64750 0.4080 +9861 79184 0.8200 +9861 79571 0.5560 +9861 80145 0.6140 +9861 80212 0.7890 +9861 80227 0.8660 +9861 80351 0.4550 +9861 81847 0.4010 +9861 83473 0.9400 +9861 83737 0.4150 +9861 83795 0.5240 +9861 84056 0.5980 +9861 84262 0.4510 +9861 84706 0.4010 +9861 84954 0.8590 +9861 84962 0.4050 +9861 84993 0.4090 +9861 90557 0.5910 +9861 90637 0.6350 +9861 91409 0.8020 +9861 114803 0.8160 +9861 115286 0.4690 +9861 119504 0.4050 +9861 120892 0.5160 +9861 122706 0.7490 +9861 123228 0.5360 +9861 128486 0.4790 +9861 130617 0.8190 +9861 134510 0.9440 +9861 140902 0.5930 +9861 143471 0.9610 +9861 144165 0.4720 +9861 145741 0.4790 +9861 203562 0.4460 +9861 246184 0.4370 +9861 256356 0.5980 +9861 286187 0.7140 +9861 339745 0.4070 +9861 100652824 0.8870 +9862 9898 0.4650 +9862 9967 0.6200 +9862 9968 0.9990 +9862 9969 0.9870 +9862 9970 0.4540 +9862 10001 0.9980 +9862 10025 0.9990 +9862 10455 0.4370 +9862 10499 0.5220 +9862 10891 0.5210 +9862 22828 0.4100 +9862 22870 0.5670 +9862 23054 0.4850 +9862 23091 0.9940 +9862 23097 0.9720 +9862 23165 0.6430 +9862 23389 0.9430 +9862 23476 0.6650 +9862 23600 0.4600 +9862 23636 0.4800 +9862 24144 0.5820 +9862 26589 0.4710 +9862 29079 0.9980 +9862 51003 0.9950 +9862 51084 0.5230 +9862 51129 0.4990 +9862 51586 0.9990 +9862 53371 0.6000 +9862 54059 0.4260 +9862 54431 0.5100 +9862 54797 0.9990 +9862 54830 0.4570 +9862 54880 0.4180 +9862 54988 0.4430 +9862 55090 0.9970 +9862 55119 0.4870 +9862 55294 0.5130 +9862 55588 0.9990 +9862 55746 0.5110 +9862 55862 0.4020 +9862 55902 0.4610 +9862 57122 0.4890 +9862 57129 0.4750 +9862 57727 0.4270 +9862 63875 0.4760 +9862 64960 0.4010 +9862 65985 0.4580 +9862 79590 0.4220 +9862 79611 0.4590 +9862 79728 0.6550 +9862 79902 0.4100 +9862 79991 0.9940 +9862 80306 0.9990 +9862 81857 0.9960 +9862 81929 0.4560 +9862 83860 0.8040 +9862 84129 0.5540 +9862 84246 0.9980 +9862 84263 0.8040 +9862 84498 0.5180 +9862 84532 0.4770 +9862 84545 0.4720 +9862 85441 0.6320 +9862 90390 0.9960 +9862 112950 0.9970 +9862 116285 0.4430 +9862 116931 0.8850 +9862 121504 0.8010 +9862 123876 0.4430 +9862 126961 0.8040 +9862 129685 0.8030 +9862 132949 0.7170 +9862 133522 0.5400 +9862 219927 0.4680 +9862 256643 0.5400 +9862 333932 0.8040 +9862 341392 0.4430 +9862 348158 0.4430 +9862 389434 0.4700 +9862 400569 0.9970 +9862 404672 0.8120 +9862 554313 0.8010 +9862 653604 0.8120 +9863 9992 0.4750 +9863 10369 0.9150 +9863 22829 0.7430 +9863 22866 0.5110 +9863 22871 0.8930 +9863 22941 0.4130 +9863 22983 0.7700 +9863 22997 0.5640 +9863 23047 0.4440 +9863 23109 0.9040 +9863 23139 0.8400 +9863 23229 0.4060 +9863 23365 0.4260 +9863 27134 0.4950 +9863 28514 0.5040 +9863 29997 0.4050 +9863 50944 0.4180 +9863 51555 0.6220 +9863 51735 0.9040 +9863 54413 0.7790 +9863 55243 0.6570 +9863 55296 0.4310 +9863 57498 0.8080 +9863 57502 0.7630 +9863 57555 0.8130 +9863 57623 0.4460 +9863 58512 0.6330 +9863 64283 0.4250 +9863 80110 0.4020 +9863 84708 0.4690 +9863 85463 0.4380 +9863 154796 0.4290 +9863 160622 0.7960 +9863 260425 0.9450 +9863 284353 0.6020 +9863 353116 0.4220 +9865 22859 0.5280 +9865 23266 0.5310 +9865 23284 0.5460 +9865 23643 0.9200 +9865 79002 0.7050 +9865 80342 0.4510 +9865 399512 0.4300 +9866 9887 0.4250 +9866 10155 0.5760 +9866 10612 0.4420 +9866 10626 0.4250 +9866 10951 0.5420 +9866 11043 0.4070 +9866 11335 0.9250 +9866 22954 0.4730 +9866 23060 0.4360 +9866 23087 0.4710 +9866 23186 0.4200 +9866 23196 0.4240 +9866 23199 0.4440 +9866 23468 0.5320 +9866 23528 0.4420 +9866 23650 0.4710 +9866 26993 0.4850 +9866 27161 0.4530 +9866 27327 0.4330 +9866 50852 0.6220 +9866 51127 0.7860 +9866 54765 0.5960 +9866 54880 0.4260 +9866 54954 0.4320 +9866 55023 0.4680 +9866 55128 0.4770 +9866 55223 0.5430 +9866 55755 0.4020 +9866 56658 0.4700 +9866 57507 0.4200 +9866 64420 0.4270 +9866 80128 0.4600 +9866 80315 0.4270 +9866 81559 0.5890 +9866 81603 0.5780 +9866 83940 0.5650 +9866 84851 0.4600 +9866 89122 0.5230 +9866 89870 0.4560 +9866 90933 0.5040 +9866 91107 0.6220 +9866 91607 0.4200 +9866 117854 0.4490 +9866 126961 0.9070 +9866 253260 0.4270 +9866 286827 0.5580 +9866 287015 0.4150 +9866 333932 0.9070 +9866 440093 0.9190 +9866 440686 0.9170 +9866 440730 0.4480 +9866 445372 0.4480 +9866 653604 0.9170 +9867 10299 0.4560 +9867 10979 0.4810 +9867 11059 0.4310 +9867 11124 0.5390 +9867 11236 0.4150 +9867 23077 0.4290 +9867 23197 0.5500 +9867 23216 0.4070 +9867 23235 0.5440 +9867 23341 0.4480 +9867 23774 0.4200 +9867 26043 0.5980 +9867 51035 0.5880 +9867 51592 0.5110 +9867 55233 0.5450 +9867 57470 0.4940 +9867 57498 0.4820 +9867 57515 0.6590 +9867 64839 0.5830 +9867 91452 0.4240 +9867 153222 0.4830 +9867 158763 0.5830 +9867 221154 0.4020 +9868 9927 0.8830 +9868 10018 0.4910 +9868 10045 0.4300 +9868 10059 0.5620 +9868 10131 0.6200 +9868 10133 0.4310 +9868 10193 0.5970 +9868 10245 0.8070 +9868 10440 0.9470 +9868 10452 0.9990 +9868 10469 0.9300 +9868 10651 0.7750 +9868 10728 0.4410 +9868 10730 0.5450 +9868 10845 0.4210 +9868 10939 0.4850 +9868 10963 0.5280 +9868 10989 0.9390 +9868 11140 0.4690 +9868 11222 0.4330 +9868 11331 0.6720 +9868 23300 0.4570 +9868 23339 0.4210 +9868 23770 0.6110 +9868 25813 0.9380 +9868 26515 0.4380 +9868 26517 0.7120 +9868 26519 0.8880 +9868 26520 0.7660 +9868 26521 0.5350 +9868 27430 0.4180 +9868 29090 0.8290 +9868 29108 0.5180 +9868 29110 0.7910 +9868 29927 0.4190 +9868 29928 0.7600 +9868 51024 0.6880 +9868 51025 0.6450 +9868 51651 0.4590 +9868 54205 0.5490 +9868 54543 0.9990 +9868 54708 0.7090 +9868 54927 0.8600 +9868 55139 0.4310 +9868 55288 0.7420 +9868 55333 0.4270 +9868 55486 0.4750 +9868 55626 0.4120 +9868 55669 0.9020 +9868 55735 0.8100 +9868 55847 0.5920 +9868 56993 0.9990 +9868 57506 0.9830 +9868 57655 0.4370 +9868 59272 0.5430 +9868 65018 0.8880 +9868 79135 0.8080 +9868 79594 0.6160 +9868 80273 0.7080 +9868 83943 0.4020 +9868 84134 0.8600 +9868 84303 0.8250 +9868 84701 0.4020 +9868 84749 0.8030 +9868 84896 0.7460 +9868 89941 0.5290 +9868 90580 0.4090 +9868 92609 0.9130 +9868 94081 0.4900 +9868 114548 0.5710 +9868 118987 0.5120 +9868 125988 0.7820 +9868 131118 0.6500 +9868 131474 0.7410 +9868 139322 0.8210 +9868 139341 0.4080 +9868 140823 0.5040 +9868 345778 0.8440 +9868 387990 0.8040 +9868 388753 0.4280 +9868 401505 0.9980 +9868 440574 0.8470 +9868 100188893 0.9960 +9868 100287932 0.8440 +9869 9968 0.4430 +9869 10000 0.4830 +9869 10009 0.4580 +9869 10036 0.7660 +9869 10127 0.5750 +9869 10155 0.9980 +9869 10196 0.5840 +9869 10419 0.6110 +9869 10498 0.4550 +9869 10524 0.4890 +9869 10664 0.6230 +9869 10765 0.6030 +9869 10782 0.9800 +9869 10919 0.9650 +9869 10927 0.5120 +9869 10933 0.4410 +9869 10951 0.8510 +9869 11011 0.4570 +9869 11016 0.8320 +9869 11060 0.4610 +9869 11083 0.6220 +9869 11091 0.5270 +9869 11108 0.4100 +9869 11143 0.4080 +9869 11176 0.4930 +9869 11266 0.4240 +9869 11335 0.7980 +9869 22828 0.4350 +9869 22880 0.5070 +9869 22893 0.6190 +9869 22992 0.5380 +9869 23028 0.7650 +9869 23030 0.5370 +9869 23070 0.5020 +9869 23081 0.5300 +9869 23126 0.4150 +9869 23133 0.6210 +9869 23135 0.6390 +9869 23137 0.5580 +9869 23186 0.7480 +9869 23248 0.5470 +9869 23272 0.8220 +9869 23309 0.5580 +9869 23361 0.7070 +9869 23383 0.4890 +9869 23405 0.4200 +9869 23468 0.9810 +9869 23476 0.5890 +9869 23492 0.6050 +9869 23512 0.7630 +9869 25942 0.7050 +9869 26276 0.4370 +9869 27161 0.5700 +9869 27332 0.5920 +9869 29128 0.7160 +9869 29947 0.5430 +9869 30827 0.5830 +9869 51111 0.8180 +9869 51127 0.4080 +9869 51131 0.5040 +9869 51479 0.5010 +9869 51535 0.6590 +9869 51588 0.4210 +9869 51701 0.6150 +9869 51710 0.7160 +9869 51780 0.6140 +9869 54093 0.4300 +9869 54487 0.4290 +9869 54496 0.4510 +9869 54556 0.5230 +9869 54737 0.9180 +9869 54790 0.5390 +9869 54815 0.4040 +9869 54908 0.4170 +9869 55013 0.7050 +9869 55170 0.5140 +9869 55196 0.4040 +9869 55209 0.4400 +9869 55249 0.4650 +9869 55596 0.4840 +9869 55626 0.5020 +9869 55693 0.4180 +9869 55729 0.9990 +9869 55818 0.4660 +9869 55888 0.9020 +9869 55904 0.4200 +9869 55929 0.5140 +9869 56254 0.4680 +9869 56339 0.5430 +9869 56916 0.5010 +9869 56950 0.5780 +9869 56979 0.5120 +9869 57332 0.5440 +9869 57343 0.6450 +9869 57649 0.4490 +9869 57659 0.4980 +9869 57680 0.4930 +9869 60412 0.5570 +9869 63977 0.4350 +9869 64754 0.5410 +9869 64848 0.4490 +9869 79577 0.5170 +9869 79813 0.7780 +9869 79823 0.8460 +9869 79869 0.4240 +9869 79923 0.6280 +9869 80063 0.9600 +9869 80312 0.5800 +9869 80335 0.4240 +9869 80818 0.7000 +9869 80854 0.6030 +9869 81931 0.4530 +9869 83746 0.4700 +9869 84085 0.4250 +9869 84193 0.4580 +9869 84206 0.4010 +9869 84444 0.6280 +9869 84661 0.4060 +9869 84678 0.6040 +9869 84787 0.8160 +9869 91746 0.4430 +9869 92105 0.5610 +9869 92595 0.4680 +9869 115426 0.4060 +9869 115560 0.6960 +9869 120534 0.8070 +9869 122402 0.4780 +9869 123169 0.5090 +9869 124245 0.4610 +9869 126961 0.9190 +9869 143689 0.5320 +9869 148266 0.6990 +9869 200424 0.4610 +9869 201516 0.4090 +9869 221656 0.5240 +9869 284390 0.7020 +9869 317781 0.4380 +9869 333932 0.9160 +9869 346171 0.7610 +9869 353274 0.6850 +9869 387893 0.5860 +9869 440093 0.9820 +9869 440686 0.9820 +9869 644100 0.4550 +9869 653604 0.9920 +9869 100532731 0.5510 +9870 10651 0.5830 +9870 11065 0.4420 +9870 22916 0.4310 +9870 27316 0.4380 +9870 27429 0.5620 +9870 51004 0.4210 +9870 51077 0.4780 +9870 51588 0.4790 +9870 55237 0.6210 +9870 55521 0.4660 +9870 56252 0.5630 +9870 57609 0.5520 +9870 83694 0.4820 +9870 84271 0.4020 +9870 89970 0.4130 +9870 90933 0.4640 +9870 145483 0.4840 +9870 145497 0.5050 +9870 283571 0.5980 +9870 345778 0.4760 +9870 399671 0.4280 +9870 646658 0.4750 +9871 9895 0.5070 +9871 9919 0.9980 +9871 10011 0.5890 +9871 10016 0.9190 +9871 10113 0.8920 +9871 10175 0.6310 +9871 10282 0.7220 +9871 10342 0.6660 +9871 10427 0.9760 +9871 10483 0.9990 +9871 10484 0.9990 +9871 10491 0.7070 +9871 10652 0.6110 +9871 10802 0.9970 +9871 10959 0.7540 +9871 10960 0.5300 +9871 10972 0.6330 +9871 11014 0.4960 +9871 11015 0.4550 +9871 11196 0.7180 +9871 22870 0.4210 +9871 22872 0.9940 +9871 22937 0.4990 +9871 23243 0.4210 +9871 23256 0.5890 +9871 25956 0.9750 +9871 26003 0.4010 +9871 26984 0.6290 +9871 27095 0.7230 +9871 29097 0.5920 +9871 29927 0.4870 +9871 51014 0.9190 +9871 51128 0.9450 +9871 51360 0.6850 +9871 51399 0.6120 +9871 51693 0.5540 +9871 53407 0.4030 +9871 55014 0.6280 +9871 55151 0.7530 +9871 55291 0.4320 +9871 55603 0.4920 +9871 56681 0.9870 +9871 58485 0.5280 +9871 59349 0.9440 +9871 60681 0.6840 +9871 63908 0.5460 +9871 64083 0.8140 +9871 64175 0.6700 +9871 64689 0.6840 +9871 64764 0.7480 +9871 65977 0.4830 +9871 79090 0.5430 +9871 79748 0.5370 +9871 79879 0.4060 +9871 81562 0.5890 +9871 81876 0.6060 +9871 89866 0.7180 +9871 90411 0.6220 +9871 90993 0.7260 +9871 121340 0.4140 +9871 122553 0.5480 +9871 126003 0.5620 +9871 133619 0.5920 +9871 149111 0.5690 +9871 254263 0.5840 +9871 375056 0.6380 +9871 387733 0.6290 +9871 440738 0.5890 +9871 553115 0.9210 +9873 10580 0.8140 +9873 10809 0.4320 +9873 22888 0.4210 +9873 23048 0.5420 +9873 23111 0.8400 +9873 23149 0.4550 +9873 23201 0.4220 +9873 50618 0.4100 +9873 51429 0.4610 +9873 54785 0.5910 +9873 55324 0.4790 +9873 64089 0.7630 +9873 79955 0.8110 +9873 80263 0.8810 +9873 80746 0.4760 +9873 89849 0.6060 +9873 115548 0.4360 +9873 115653 0.7130 +9873 222484 0.5320 +9873 257364 0.4370 +9873 387694 0.4160 +9873 389337 0.4230 +9874 11011 0.9950 +9874 23293 0.4980 +9874 23468 0.4140 +9874 25842 0.9810 +9874 51720 0.5510 +9874 55215 0.4790 +9874 55723 0.9620 +9874 79932 0.4070 +9874 84836 0.4580 +9874 113510 0.5450 +9874 140735 0.6260 +9874 440093 0.7220 +9874 440686 0.7220 +9874 653604 0.7260 +9875 9883 0.4950 +9875 9904 0.6640 +9875 9933 0.6880 +9875 9946 0.5540 +9875 10153 0.8160 +9875 10171 0.5480 +9875 10199 0.4960 +9875 10412 0.4460 +9875 10436 0.4140 +9875 10514 0.6960 +9875 10528 0.4670 +9875 10607 0.8350 +9875 10785 0.4080 +9875 10813 0.6630 +9875 10885 0.6840 +9875 10969 0.5220 +9875 10985 0.4680 +9875 11056 0.4700 +9875 11128 0.7500 +9875 11137 0.5260 +9875 22828 0.4160 +9875 22984 0.9730 +9875 23029 0.8120 +9875 23076 0.5830 +9875 23160 0.4060 +9875 23195 0.4430 +9875 23223 0.7410 +9875 23246 0.7210 +9875 23378 0.6130 +9875 23395 0.4760 +9875 23481 0.4460 +9875 23517 0.5850 +9875 23560 0.4030 +9875 25885 0.9060 +9875 26009 0.4960 +9875 26155 0.7650 +9875 26156 0.4850 +9875 26995 0.4060 +9875 27340 0.9150 +9875 29889 0.6590 +9875 30811 0.5510 +9875 51018 0.4740 +9875 51068 0.4720 +9875 51096 0.4700 +9875 51147 0.4260 +9875 51154 0.5500 +9875 51202 0.5850 +9875 51236 0.4040 +9875 51388 0.6380 +9875 51602 0.6710 +9875 54014 0.4250 +9875 54069 0.5630 +9875 54414 0.4420 +9875 54433 0.5460 +9875 54475 0.5380 +9875 54552 0.4010 +9875 54555 0.4140 +9875 54556 0.4260 +9875 54606 0.5960 +9875 54663 0.5180 +9875 54906 0.4110 +9875 55003 0.5310 +9875 55035 0.8380 +9875 55127 0.9140 +9875 55131 0.6800 +9875 55140 0.4240 +9875 55226 0.9010 +9875 55299 0.5210 +9875 55319 0.4460 +9875 55341 0.5170 +9875 55622 0.5760 +9875 55651 0.5850 +9875 55703 0.6150 +9875 55720 0.6390 +9875 55759 0.6070 +9875 55781 0.4560 +9875 55794 0.4200 +9875 55813 0.4460 +9875 56342 0.6760 +9875 56683 0.4510 +9875 56902 0.5020 +9875 57062 0.7700 +9875 57418 0.4400 +9875 57647 0.4200 +9875 57696 0.5770 +9875 59271 0.5870 +9875 64318 0.6070 +9875 64434 0.5430 +9875 64794 0.6630 +9875 65083 0.8110 +9875 65095 0.4250 +9875 79039 0.6770 +9875 79050 0.5670 +9875 79613 0.4880 +9875 79707 0.7320 +9875 79954 0.6020 +9875 83743 0.7990 +9875 84128 0.4110 +9875 84154 0.5700 +9875 84172 0.8280 +9875 84289 0.4570 +9875 84365 0.4080 +9875 84450 0.4140 +9875 84916 0.8310 +9875 84946 0.6220 +9875 90204 0.4310 +9875 117246 0.5580 +9875 124454 0.4800 +9875 140831 0.4260 +9875 142940 0.4090 +9875 161424 0.4050 +9875 221078 0.6270 +9875 317781 0.6480 +9875 348801 0.4880 +9875 387338 0.4250 +9875 552889 0.4720 +9875 692312 0.5800 +9875 728294 0.4370 +9875 729515 0.5620 +9877 9883 0.4050 +9877 9939 0.6210 +9877 9972 0.4800 +9877 9984 0.9130 +9877 10189 0.7030 +9877 10212 0.7880 +9877 10250 0.5330 +9877 10664 0.4170 +9877 10725 0.4170 +9877 10762 0.4770 +9877 10921 0.5590 +9877 10978 0.4990 +9877 11051 0.5300 +9877 11052 0.6230 +9877 11097 0.5450 +9877 22794 0.6610 +9877 22828 0.4230 +9877 22916 0.8210 +9877 23165 0.4630 +9877 23215 0.6130 +9877 23225 0.4050 +9877 23279 0.4160 +9877 23394 0.4660 +9877 23476 0.5370 +9877 23511 0.4080 +9877 23609 0.6210 +9877 23636 0.4250 +9877 23708 0.4820 +9877 26097 0.8990 +9877 26986 0.5480 +9877 51213 0.5960 +9877 51585 0.6060 +9877 53371 0.4110 +9877 54439 0.5150 +9877 55110 0.5720 +9877 55216 0.4220 +9877 55421 0.9130 +9877 55706 0.4030 +9877 55746 0.4670 +9877 55870 0.5300 +9877 57122 0.4190 +9877 57187 0.8880 +9877 64062 0.4410 +9877 65109 0.5210 +9877 79023 0.4190 +9877 79228 0.7870 +9877 79869 0.5360 +9877 79902 0.4090 +9877 80145 0.7620 +9877 81929 0.4160 +9877 84248 0.8310 +9877 84271 0.8760 +9877 84321 0.7770 +9877 84324 0.9750 +9877 84919 0.4420 +9877 91746 0.5060 +9877 124245 0.5340 +9877 129401 0.4200 +9877 134553 0.4010 +9877 348995 0.4210 +9877 100101267 0.4160 +9877 100381270 0.9800 +9878 11168 0.6110 +9878 11198 0.5490 +9878 26058 0.4540 +9878 26533 0.4070 +9878 26534 0.4050 +9878 51634 0.4590 +9878 55536 0.5060 +9878 57680 0.4950 +9878 59343 0.5180 +9878 80335 0.9950 +9878 84932 0.4440 +9878 84969 0.5100 +9878 151963 0.5480 +9878 205564 0.4540 +9878 100507650 0.4560 +9879 9939 0.4530 +9879 9987 0.4850 +9879 10153 0.4450 +9879 10179 0.5150 +9879 10199 0.4240 +9879 10250 0.6280 +9879 10262 0.9900 +9879 10283 0.5130 +9879 10285 0.8960 +9879 10291 0.9990 +9879 10328 0.4350 +9879 10412 0.4260 +9879 10523 0.8590 +9879 10569 0.6230 +9879 10594 0.7920 +9879 10713 0.5020 +9879 10915 0.9270 +9879 10946 0.9990 +9879 10969 0.4190 +9879 10992 0.9970 +9879 11017 0.4200 +9879 11066 0.5350 +9879 11198 0.5040 +9879 11222 0.4320 +9879 11231 0.6030 +9879 11325 0.6750 +9879 11338 0.8380 +9879 22803 0.4010 +9879 22827 0.8840 +9879 22916 0.9010 +9879 22938 0.5690 +9879 22984 0.4060 +9879 22985 0.5770 +9879 23020 0.8740 +9879 23076 0.4930 +9879 23091 0.8510 +9879 23246 0.4460 +9879 23350 0.9180 +9879 23405 0.5760 +9879 23450 0.9970 +9879 23451 0.9990 +9879 23481 0.4190 +9879 23517 0.4090 +9879 23524 0.4640 +9879 23560 0.4940 +9879 23640 0.4470 +9879 24144 0.4290 +9879 24148 0.7200 +9879 25766 0.8700 +9879 25804 0.4520 +9879 25949 0.5500 +9879 25962 0.4950 +9879 25980 0.4820 +9879 26019 0.5070 +9879 26065 0.4450 +9879 26121 0.4290 +9879 27316 0.6110 +9879 27336 0.9830 +9879 27339 0.6730 +9879 29117 0.5180 +9879 29889 0.4320 +9879 29960 0.4570 +9879 51010 0.4210 +9879 51154 0.4570 +9879 51319 0.4300 +9879 51322 0.6520 +9879 51340 0.5750 +9879 51362 0.4540 +9879 51366 0.4320 +9879 51428 0.4660 +9879 51574 0.4180 +9879 51602 0.5980 +9879 51631 0.7400 +9879 51634 0.6760 +9879 51639 0.9480 +9879 51692 0.5620 +9879 51747 0.7950 +9879 54505 0.5400 +9879 54517 0.4850 +9879 54883 0.5540 +9879 54890 0.9810 +9879 54952 0.4410 +9879 55015 0.7500 +9879 55119 0.4880 +9879 55131 0.5020 +9879 55299 0.4030 +9879 55599 0.5090 +9879 55660 0.8960 +9879 55677 0.4020 +9879 55692 0.6750 +9879 55702 0.5680 +9879 55749 0.5420 +9879 55759 0.4120 +9879 55760 0.4420 +9879 55954 0.5780 +9879 56339 0.4310 +9879 56919 0.5510 +9879 56949 0.7230 +9879 57062 0.4770 +9879 57136 0.4860 +9879 57187 0.5140 +9879 57506 0.8250 +9879 57696 0.4470 +9879 57697 0.4280 +9879 57703 0.4820 +9879 57721 0.5780 +9879 58517 0.9700 +9879 59286 0.5470 +9879 60625 0.4870 +9879 63925 0.4290 +9879 64318 0.4320 +9879 64374 0.4340 +9879 64848 0.4300 +9879 79039 0.5290 +9879 79132 0.5110 +9879 79665 0.4250 +9879 79696 0.6220 +9879 79753 0.6110 +9879 79770 0.4360 +9879 79811 0.5590 +9879 80742 0.8770 +9879 81608 0.5010 +9879 83443 0.9980 +9879 83938 0.4510 +9879 84316 0.5400 +9879 84365 0.4190 +9879 84811 0.8280 +9879 84844 0.9940 +9879 84950 0.4390 +9879 84967 0.8460 +9879 84991 0.9090 +9879 87178 0.5130 +9879 90957 0.6350 +9879 92906 0.4050 +9879 124245 0.4190 +9879 126259 0.5390 +9879 140890 0.6050 +9879 142940 0.4400 +9879 147650 0.5390 +9879 170506 0.4760 +9879 220074 0.4510 +9879 220965 0.4180 +9879 256536 0.9050 +9879 347732 0.4390 +9879 347744 0.4300 +9879 392517 0.8510 +9879 100996928 0.6400 +9879 101669762 0.5570 +9880 22864 0.4010 +9880 23344 0.4630 +9880 23366 0.4580 +9880 51185 0.4700 +9880 56986 0.4750 +9880 57541 0.4390 +9880 81566 0.6000 +9880 89795 0.4220 +9880 113828 0.5070 +9880 115992 0.6600 +9880 152485 0.5300 +9880 283373 0.4880 +9881 22978 0.4390 +9881 23345 0.6070 +9881 25780 0.4620 +9881 26011 0.6450 +9881 26166 0.4110 +9881 57674 0.4040 +9881 81562 0.5480 +9881 85443 0.4620 +9881 85461 0.4390 +9881 91752 0.4040 +9881 267012 0.5080 +9882 10000 0.9300 +9882 10890 0.9540 +9882 10891 0.4470 +9882 10971 0.7820 +9882 10981 0.5230 +9882 11031 0.5540 +9882 11215 0.5810 +9882 23216 0.6780 +9882 23239 0.7020 +9882 25999 0.4200 +9882 26056 0.5350 +9882 50805 0.4950 +9882 51256 0.4410 +9882 51552 0.9550 +9882 51806 0.6590 +9882 54536 0.5930 +9882 54662 0.4780 +9882 55296 0.4210 +9882 55633 0.4140 +9882 55667 0.4250 +9882 79003 0.4260 +9882 79109 0.5100 +9882 79191 0.5120 +9882 79192 0.4360 +9882 79735 0.4130 +9882 84079 0.4620 +9882 84335 0.4850 +9882 91860 0.6490 +9882 117145 0.4220 +9882 118813 0.4260 +9882 153572 0.4890 +9882 161514 0.4530 +9882 163688 0.6490 +9882 170622 0.5000 +9882 219493 0.4200 +9882 252983 0.4030 +9882 253260 0.5690 +9882 253959 0.4920 +9882 317649 0.5090 +9882 401409 0.5190 +9883 9939 0.5170 +9883 9972 0.8330 +9883 9984 0.4030 +9883 10073 0.4230 +9883 10189 0.5630 +9883 10250 0.5300 +9883 10482 0.7530 +9883 10526 0.4820 +9883 10762 0.7490 +9883 10898 0.4330 +9883 10921 0.5150 +9883 11097 0.5040 +9883 11218 0.4660 +9883 11260 0.4890 +9883 11338 0.4370 +9883 22794 0.5380 +9883 22824 0.4370 +9883 22916 0.5190 +9883 22977 0.4670 +9883 23165 0.9240 +9883 23225 0.7190 +9883 23279 0.9390 +9883 23511 0.6170 +9883 23633 0.4140 +9883 23636 0.8320 +9883 25909 0.9030 +9883 25929 0.4280 +9883 26097 0.4110 +9883 27161 0.4360 +9883 29107 0.5200 +9883 29894 0.4300 +9883 50628 0.4130 +9883 51182 0.4380 +9883 51213 0.4270 +9883 51362 0.4100 +9883 51501 0.4380 +9883 51692 0.4630 +9883 51808 0.4140 +9883 53371 0.9030 +9883 53833 0.5150 +9883 53981 0.4550 +9883 54830 0.5730 +9883 54921 0.4050 +9883 54960 0.4180 +9883 55110 0.5000 +9883 55143 0.4340 +9883 55339 0.4160 +9883 55706 0.7060 +9883 55746 0.9170 +9883 57122 0.8900 +9883 57187 0.4510 +9883 65109 0.5140 +9883 79023 0.5990 +9883 79228 0.4740 +9883 79760 0.4010 +9883 79902 0.9170 +9883 80145 0.4550 +9883 81608 0.4110 +9883 81929 0.8490 +9883 84220 0.4170 +9883 84271 0.6220 +9883 84321 0.4530 +9883 84324 0.4560 +9883 91227 0.4830 +9883 91754 0.4360 +9883 94026 0.9040 +9883 116835 0.4380 +9883 129401 0.8240 +9883 199746 0.4150 +9883 259217 0.4380 +9883 348995 0.8390 +9883 402569 0.4630 +9883 653489 0.4170 +9883 728343 0.6500 +9883 729540 0.4220 +9883 729857 0.5010 +9883 100101267 0.9310 +9884 10388 0.4540 +9884 10594 0.5190 +9884 22859 0.5140 +9884 23266 0.5140 +9884 23284 0.5560 +9884 51326 0.7310 +9884 79877 0.4510 +9884 130540 0.4440 +9884 148545 0.5080 +9884 162540 0.4120 +9884 200030 0.4270 +9884 284058 0.7290 +9884 342908 0.4440 +9884 442590 0.6100 +9884 642799 0.4110 +9884 728888 0.4130 +9884 100271927 0.4040 +9884 100288332 0.4240 +9884 100507607 0.4030 +9884 100996331 0.6450 +9884 104909134 0.5050 +9885 10948 0.4710 +9885 11047 0.9040 +9885 23583 0.4270 +9885 26039 0.5300 +9885 26164 0.4870 +9885 26167 0.4230 +9885 26499 0.6680 +9885 54856 0.4380 +9885 79932 0.5400 +9885 84649 0.4120 +9885 84814 0.5080 +9885 85450 0.4500 +9885 123099 0.4770 +9885 132243 0.4700 +9885 133482 0.4750 +9885 134429 0.4020 +9886 10226 0.6170 +9886 10250 0.5640 +9886 10307 0.7160 +9886 10574 0.5900 +9886 10576 0.5900 +9886 10980 0.7460 +9886 11329 0.6190 +9886 22836 0.4230 +9886 23013 0.5640 +9886 23221 0.9040 +9886 27316 0.5890 +9886 50618 0.5600 +9886 50813 0.7060 +9886 51138 0.5640 +9886 55958 0.9050 +9886 56254 0.5640 +9886 64708 0.4890 +9886 79869 0.5790 +9886 90293 0.9070 +9886 196410 0.4030 +9887 9898 0.4520 +9887 9919 0.4190 +9887 9939 0.9960 +9887 10728 0.5480 +9887 10767 0.4710 +9887 10921 0.5110 +9887 22794 0.6490 +9887 22803 0.4760 +9887 22916 0.7820 +9887 23019 0.5220 +9887 23049 0.9990 +9887 23057 0.8630 +9887 23293 0.9920 +9887 23381 0.9990 +9887 23644 0.6570 +9887 26019 0.9710 +9887 26065 0.4130 +9887 26986 0.9450 +9887 27068 0.4010 +9887 27257 0.4770 +9887 51317 0.4410 +9887 54433 0.5730 +9887 54464 0.7870 +9887 54542 0.4770 +9887 54552 0.5510 +9887 55023 0.4420 +9887 55110 0.6380 +9887 55135 0.5590 +9887 55181 0.9160 +9887 55226 0.5630 +9887 55345 0.4560 +9887 55505 0.5780 +9887 55554 0.4120 +9887 55629 0.8910 +9887 55651 0.5920 +9887 55802 0.8470 +9887 55869 0.5150 +9887 56006 0.9480 +9887 56478 0.4840 +9887 63971 0.4270 +9887 65109 0.9220 +9887 65110 0.9850 +9887 80153 0.5810 +9887 84305 0.4070 +9887 84614 0.4120 +9887 93643 0.5840 +9887 129563 0.4670 +9887 131405 0.4490 +9887 134353 0.5400 +9887 158427 0.4420 +9887 167227 0.6820 +9887 219988 0.4880 +9889 9949 0.4050 +9889 23774 0.5570 +9889 25771 0.4300 +9889 29890 0.4590 +9889 57645 0.5200 +9889 79413 0.5600 +9889 84327 0.4180 +9889 114821 0.4130 +9889 220082 0.4130 +9890 10423 0.4140 +9890 23101 0.5020 +9890 27235 0.4570 +9890 51806 0.4080 +9890 54675 0.4020 +9890 54873 0.4370 +9890 55529 0.4110 +9890 91860 0.4070 +9890 146167 0.4510 +9890 163688 0.4070 +9891 23235 0.5450 +9891 23291 0.6200 +9891 23387 0.4860 +9891 51719 0.4060 +9891 54776 0.4320 +9891 63916 0.4460 +9892 9900 0.5040 +9892 10254 0.5170 +9892 10497 0.4410 +9892 10618 0.6060 +9892 10814 0.4800 +9892 10815 0.4550 +9892 10928 0.4650 +9892 11037 0.5950 +9892 22848 0.8220 +9892 22905 0.9900 +9892 22999 0.4760 +9892 23149 0.8720 +9892 23208 0.7060 +9892 23327 0.4920 +9892 25977 0.7050 +9892 26052 0.4060 +9892 26119 0.5640 +9892 27185 0.4180 +9892 29924 0.9080 +9892 29978 0.5180 +9892 29988 0.5020 +9892 29993 0.4620 +9892 30011 0.6430 +9892 50618 0.9190 +9892 51429 0.4460 +9892 55040 0.9810 +9892 55707 0.5960 +9892 57030 0.4570 +9892 57084 0.4120 +9892 57231 0.4040 +9892 58513 0.8140 +9892 64083 0.4280 +9892 84174 0.7030 +9892 84251 0.6720 +9892 85021 0.5530 +9892 85439 0.8450 +9892 90019 0.5410 +9892 115548 0.8210 +9892 115827 0.4450 +9892 127833 0.6650 +9892 134701 0.5120 +9892 140679 0.4050 +9892 143425 0.6220 +9892 167681 0.4510 +9892 203062 0.4750 +9892 255324 0.4990 +9894 10229 0.8240 +9894 10607 0.4520 +9894 10856 0.9830 +9894 10989 0.5830 +9894 11073 0.4500 +9894 22994 0.6340 +9894 23049 0.9560 +9894 24140 0.4010 +9894 26173 0.4570 +9894 26268 0.5950 +9894 27158 0.4780 +9894 51750 0.5260 +9894 53632 0.4490 +9894 54584 0.4270 +9894 55011 0.8920 +9894 55615 0.9570 +9894 57521 0.9910 +9894 57697 0.9980 +9894 58528 0.4420 +9894 63922 0.5720 +9894 64121 0.4060 +9894 64223 0.9940 +9894 64798 0.9460 +9894 79109 0.8250 +9894 79657 0.7490 +9894 79798 0.5090 +9894 79899 0.9100 +9894 79991 0.4060 +9894 80010 0.6450 +9894 80169 0.5230 +9894 80185 0.9990 +9894 80233 0.7880 +9894 80851 0.4960 +9894 84126 0.5880 +9894 84219 0.6780 +9894 84268 0.4150 +9894 84335 0.7550 +9894 91442 0.9880 +9894 114790 0.4590 +9894 201255 0.4780 +9894 221927 0.6410 +9894 246243 0.4560 +9894 253260 0.9840 +9894 253314 0.4130 +9895 9897 0.5060 +9895 9907 0.7260 +9895 9927 0.4150 +9895 10613 0.4520 +9895 10717 0.5870 +9895 10749 0.4420 +9895 10908 0.4510 +9895 11152 0.6490 +9895 11154 0.6250 +9895 11160 0.5170 +9895 11337 0.6550 +9895 11345 0.8630 +9895 22863 0.4060 +9895 22948 0.4160 +9895 23111 0.4210 +9895 23204 0.4180 +9895 23259 0.5070 +9895 23431 0.5600 +9895 23503 0.6820 +9895 23710 0.8590 +9895 25782 0.6080 +9895 27072 0.7890 +9895 51112 0.5280 +9895 51308 0.5750 +9895 51324 0.6680 +9895 55054 0.5900 +9895 55823 0.4980 +9895 56270 0.4900 +9895 57165 0.4300 +9895 57231 0.4020 +9895 57617 0.6480 +9895 57704 0.5460 +9895 57724 0.6830 +9895 64601 0.7290 +9895 65055 0.4400 +9895 65082 0.5010 +9895 79152 0.4690 +9895 79443 0.4090 +9895 80055 0.4460 +9895 80208 0.7420 +9895 80821 0.6870 +9895 81631 0.7070 +9895 91574 0.5680 +9895 113612 0.5050 +9895 118813 0.5310 +9895 123606 0.4900 +9895 137492 0.5160 +9895 200205 0.5520 +9895 340075 0.4180 +9895 440738 0.8240 +9896 10133 0.7380 +9896 10280 0.5430 +9896 10618 0.4660 +9896 11234 0.5200 +9896 23025 0.4450 +9896 23064 0.8200 +9896 23355 0.5170 +9896 23435 0.8350 +9896 25978 0.7690 +9896 26100 0.4940 +9896 27163 0.8400 +9896 29110 0.4380 +9896 29978 0.7210 +9896 30849 0.4430 +9896 51622 0.4100 +9896 51763 0.4070 +9896 54332 0.5950 +9896 54979 0.4290 +9896 55062 0.8550 +9896 55526 0.4050 +9896 55613 0.9190 +9896 55697 0.9990 +9896 55830 0.4420 +9896 57192 0.5130 +9896 57679 0.8540 +9896 60412 0.4380 +9896 64419 0.9370 +9896 64601 0.4600 +9896 65055 0.5010 +9896 65082 0.4670 +9896 79628 0.7390 +9896 80208 0.6750 +9896 81846 0.7410 +9896 84343 0.4940 +9896 84557 0.6680 +9896 90678 0.4890 +9896 121512 0.6100 +9896 200576 0.9990 +9896 203228 0.6240 +9896 221960 0.4080 +9896 400757 0.4470 +9896 400916 0.5710 +9897 9907 0.6230 +9897 10311 0.5590 +9897 10717 0.5590 +9897 10807 0.4670 +9897 10908 0.5480 +9897 11154 0.5630 +9897 11160 0.5010 +9897 22978 0.4070 +9897 23022 0.4030 +9897 23111 0.5410 +9897 23204 0.4150 +9897 23259 0.5210 +9897 23307 0.8760 +9897 23317 0.4930 +9897 23325 0.9990 +9897 23395 0.4740 +9897 23431 0.5210 +9897 23503 0.7020 +9897 25962 0.6330 +9897 26580 0.5420 +9897 27131 0.5190 +9897 28952 0.6410 +9897 51019 0.9990 +9897 51062 0.7270 +9897 51308 0.5240 +9897 51324 0.5960 +9897 51699 0.8860 +9897 54108 0.7120 +9897 54520 0.6990 +9897 55127 0.4050 +9897 55737 0.8980 +9897 57020 0.5720 +9897 57165 0.4460 +9897 57182 0.4720 +9897 57704 0.5190 +9897 58533 0.4990 +9897 65055 0.9170 +9897 79152 0.5270 +9897 80055 0.4010 +9897 80208 0.7140 +9897 80821 0.5180 +9897 81609 0.8230 +9897 91574 0.4750 +9897 112936 0.5810 +9897 113612 0.4400 +9897 118813 0.8760 +9897 123606 0.8690 +9897 137209 0.6120 +9897 137492 0.5670 +9897 150684 0.4370 +9897 253725 0.9980 +9897 286053 0.4230 +9897 340075 0.4100 +9897 387680 0.9920 +9897 100287171 0.9990 +9898 9908 0.8910 +9898 9919 0.4020 +9898 9967 0.7150 +9898 10146 0.9480 +9898 10204 0.4070 +9898 10336 0.9020 +9898 10389 0.9000 +9898 10427 0.4470 +9898 10726 0.4280 +9898 11052 0.4910 +9898 11273 0.6610 +9898 22820 0.4460 +9898 22828 0.4010 +9898 23019 0.7860 +9898 23037 0.4570 +9898 23215 0.9150 +9898 23276 0.5020 +9898 23381 0.4880 +9898 23435 0.4110 +9898 23466 0.9000 +9898 23492 0.9000 +9898 23511 0.4970 +9898 23512 0.9040 +9898 23518 0.4040 +9898 25820 0.5870 +9898 26057 0.5440 +9898 26058 0.4340 +9898 26135 0.7210 +9898 26986 0.8170 +9898 27349 0.4070 +9898 29978 0.4540 +9898 51441 0.5840 +9898 51637 0.4230 +9898 51663 0.4430 +9898 54542 0.4530 +9898 54544 0.4790 +9898 54815 0.4290 +9898 54870 0.4990 +9898 54915 0.4260 +9898 54995 0.4660 +9898 55252 0.5770 +9898 55585 0.4270 +9898 55626 0.4400 +9898 55689 0.5570 +9898 55833 0.5980 +9898 57332 0.9040 +9898 57521 0.9960 +9898 57532 0.4630 +9898 64793 0.4020 +9898 65125 0.4140 +9898 79869 0.5600 +9898 80012 0.9010 +9898 80816 0.5790 +9898 84056 0.4160 +9898 84108 0.9000 +9898 84333 0.9000 +9898 84733 0.9010 +9898 84759 0.9030 +9898 92312 0.5090 +9898 112812 0.4630 +9898 121536 0.9070 +9898 132625 0.5760 +9898 132949 0.4240 +9898 149041 0.5120 +9898 153090 0.4240 +9898 171017 0.4370 +9898 171023 0.9100 +9898 253943 0.5350 +9898 254428 0.4090 +9898 348262 0.4640 +9898 376940 0.4260 +9898 404281 0.5760 +9898 404734 0.5540 +9899 9900 0.9090 +9899 10319 0.7130 +9899 10458 0.4190 +9899 10716 0.5190 +9899 10777 0.5230 +9899 10814 0.4230 +9899 10989 0.6870 +9899 22798 0.6800 +9899 22941 0.4740 +9899 22987 0.9430 +9899 23158 0.4010 +9899 23416 0.4420 +9899 54346 0.4140 +9899 55530 0.5320 +9899 55867 0.4650 +9899 57030 0.6040 +9899 57084 0.4050 +9899 57282 0.5040 +9899 57526 0.4100 +9899 79157 0.4340 +9899 83985 0.4070 +9899 84804 0.4700 +9899 84894 0.4650 +9899 84975 0.4140 +9899 85413 0.4470 +9899 112476 0.4980 +9899 112755 0.6670 +9899 115827 0.4780 +9899 116443 0.4660 +9899 117178 0.5270 +9899 127833 0.5590 +9899 132204 0.6520 +9899 140679 0.4370 +9899 266743 0.4100 +9899 283238 0.4320 +9899 284217 0.6630 +9899 387775 0.4770 +9900 10243 0.5770 +9900 10319 0.7020 +9900 10815 0.4650 +9900 10989 0.5690 +9900 22795 0.4540 +9900 22798 0.6500 +9900 22871 0.4380 +9900 22987 0.9050 +9900 22999 0.4650 +9900 23557 0.5310 +9900 30816 0.4240 +9900 50861 0.4210 +9900 54346 0.4200 +9900 55530 0.4790 +9900 57030 0.6680 +9900 57084 0.5380 +9900 79596 0.4990 +9900 80331 0.5070 +9900 85439 0.5230 +9900 112755 0.6670 +9900 115827 0.4440 +9900 127833 0.7670 +9900 132204 0.4310 +9900 140679 0.5360 +9900 146713 0.4650 +9900 192683 0.4980 +9900 283238 0.4180 +9900 284217 0.7650 +9900 387775 0.4080 +9900 405754 0.4230 +9901 10152 0.7820 +9901 10163 0.5730 +9901 10458 0.4980 +9901 10615 0.4810 +9901 10787 0.5280 +9901 11196 0.4100 +9901 22866 0.4480 +9901 23191 0.5200 +9901 23380 0.9510 +9901 26999 0.4510 +9901 27034 0.4200 +9901 27185 0.6670 +9901 29993 0.4090 +9901 51399 0.4590 +9901 51517 0.4300 +9901 54490 0.4280 +9901 54768 0.8750 +9901 54874 0.4520 +9901 55672 0.8470 +9901 55845 0.5090 +9901 57522 0.9030 +9901 57670 0.5930 +9901 80746 0.4760 +9901 91050 0.5150 +9901 115548 0.4720 +9901 151393 0.4830 +9901 200407 0.4010 +9901 222484 0.5460 +9901 317762 0.4530 +9901 388677 0.4670 +9901 100996763 0.4660 +9902 10244 0.4260 +9902 22925 0.9070 +9902 50489 0.4380 +9902 79230 0.4470 +9902 140467 0.4520 +9902 283316 0.5420 +9903 9978 0.9260 +9903 10016 0.7220 +9903 10324 0.9160 +9903 11146 0.7260 +9903 11275 0.7380 +9903 23053 0.9060 +9903 23142 0.5450 +9903 23412 0.4990 +9903 23510 0.5950 +9903 26249 0.9070 +9903 27252 0.9100 +9903 28952 0.5000 +9903 28991 0.5000 +9903 29099 0.4990 +9903 51088 0.4520 +9903 51122 0.4990 +9903 51397 0.4990 +9903 53339 0.4560 +9903 54165 0.6460 +9903 54442 0.5620 +9903 54800 0.7300 +9903 54813 0.6490 +9903 54939 0.4990 +9903 54951 0.5030 +9903 55175 0.4400 +9903 55208 0.5470 +9903 55832 0.5440 +9903 55958 0.9600 +9903 55975 0.9150 +9903 57542 0.9140 +9903 57563 0.9070 +9903 59349 0.9130 +9903 64410 0.9350 +9903 64839 0.5210 +9903 79707 0.5810 +9903 79734 0.9020 +9903 80311 0.4440 +9903 83892 0.7730 +9903 84078 0.9050 +9903 84259 0.5600 +9903 84541 0.9060 +9903 84676 0.4350 +9903 84861 0.9270 +9903 84937 0.4440 +9903 89890 0.9080 +9903 90135 0.4010 +9903 90293 0.9500 +9903 90326 0.4280 +9903 93611 0.5120 +9903 114818 0.5190 +9903 114907 0.4640 +9903 122416 0.5650 +9903 131377 0.7600 +9903 136371 0.4010 +9903 140456 0.5380 +9903 142686 0.5420 +9903 149951 0.4990 +9903 150684 0.4990 +9903 154881 0.4050 +9903 170622 0.4990 +9903 200845 0.4220 +9903 253980 0.9110 +9903 283807 0.4370 +9903 339745 0.9050 +9903 390594 0.4300 +9903 553115 0.7280 +9904 9933 0.8620 +9904 10153 0.8970 +9904 10171 0.6920 +9904 10199 0.8060 +9904 10412 0.6190 +9904 10436 0.5080 +9904 10514 0.8130 +9904 10521 0.4270 +9904 10607 0.7460 +9904 10785 0.4080 +9904 10813 0.8230 +9904 10885 0.8550 +9904 10940 0.5190 +9904 10969 0.6840 +9904 11056 0.8910 +9904 11103 0.8380 +9904 11128 0.4290 +9904 11269 0.4010 +9904 22984 0.9410 +9904 23029 0.8410 +9904 23054 0.4240 +9904 23076 0.6820 +9904 23160 0.7980 +9904 23212 0.7920 +9904 23223 0.9280 +9904 23246 0.9140 +9904 23378 0.8210 +9904 23389 0.4440 +9904 23481 0.9240 +9904 23517 0.8220 +9904 23560 0.7850 +9904 24140 0.6080 +9904 25879 0.4460 +9904 25885 0.6970 +9904 25983 0.8750 +9904 26155 0.9170 +9904 26156 0.5960 +9904 26354 0.8140 +9904 26574 0.9490 +9904 26995 0.4350 +9904 27042 0.7020 +9904 27340 0.8370 +9904 27341 0.4920 +9904 28987 0.6190 +9904 29102 0.4030 +9904 29777 0.4460 +9904 29889 0.7710 +9904 29960 0.6040 +9904 29997 0.7270 +9904 30836 0.5710 +9904 51018 0.4060 +9904 51096 0.7160 +9904 51154 0.7030 +9904 51187 0.4590 +9904 51202 0.6890 +9904 51575 0.4730 +9904 51602 0.7260 +9904 51605 0.8230 +9904 54033 0.4860 +9904 54475 0.4480 +9904 54552 0.8280 +9904 54555 0.7870 +9904 54606 0.9210 +9904 54663 0.9150 +9904 54758 0.4280 +9904 54865 0.5080 +9904 54984 0.6030 +9904 55127 0.9020 +9904 55131 0.8670 +9904 55140 0.4500 +9904 55153 0.8330 +9904 55226 0.9190 +9904 55299 0.8090 +9904 55341 0.5210 +9904 55621 0.4220 +9904 55622 0.7040 +9904 55646 0.4370 +9904 55703 0.4380 +9904 55720 0.8370 +9904 55759 0.9020 +9904 55760 0.4520 +9904 55794 0.5920 +9904 55813 0.7930 +9904 56342 0.5370 +9904 56829 0.4610 +9904 56902 0.4240 +9904 56931 0.4140 +9904 57050 0.6000 +9904 57062 0.8810 +9904 57109 0.4250 +9904 57167 0.5480 +9904 57418 0.8600 +9904 57647 0.4880 +9904 57696 0.7560 +9904 58487 0.5240 +9904 60625 0.4610 +9904 64318 0.8900 +9904 64425 0.4520 +9904 64434 0.8360 +9904 64794 0.9030 +9904 65083 0.6260 +9904 65095 0.7980 +9904 79009 0.4420 +9904 79039 0.9220 +9904 79050 0.8690 +9904 79080 0.4500 +9904 79159 0.6940 +9904 79571 0.4200 +9904 79954 0.9290 +9904 80135 0.6010 +9904 80324 0.4610 +9904 81627 0.4870 +9904 81887 0.5250 +9904 83732 0.5390 +9904 83743 0.8760 +9904 84128 0.6070 +9904 84135 0.4660 +9904 84154 0.6900 +9904 84172 0.8640 +9904 84294 0.6930 +9904 84319 0.4030 +9904 84365 0.8420 +9904 84549 0.5540 +9904 84916 0.8560 +9904 84946 0.6520 +9904 84991 0.4280 +9904 85437 0.5640 +9904 88745 0.4440 +9904 90353 0.5290 +9904 92856 0.9910 +9904 117246 0.9360 +9904 129831 0.4370 +9904 132954 0.4070 +9904 142940 0.4690 +9904 146212 0.5050 +9904 161424 0.9150 +9904 165545 0.4470 +9904 221078 0.6950 +9904 283989 0.4540 +9904 692312 0.6110 +9905 10981 0.6040 +9905 23061 0.4260 +9905 23113 0.5420 +9905 23162 0.4610 +9905 23232 0.5190 +9905 23293 0.6120 +9905 23329 0.5120 +9905 23682 0.4380 +9905 25771 0.4310 +9905 26000 0.4260 +9905 27352 0.9090 +9905 50801 0.4030 +9905 51209 0.4650 +9905 55296 0.4280 +9905 55633 0.4960 +9905 55773 0.4790 +9905 79774 0.4260 +9905 83452 0.5380 +9905 84079 0.5440 +9905 128637 0.4540 +9905 161514 0.4230 +9905 254272 0.4130 +9905 401993 0.4340 +9905 414059 0.4530 +9907 10053 0.5610 +9907 10239 0.9280 +9907 10717 0.9640 +9907 10749 0.4720 +9907 10908 0.8800 +9907 10947 0.7390 +9907 11154 0.9660 +9907 11160 0.5320 +9907 11276 0.7480 +9907 23111 0.7750 +9907 23204 0.4770 +9907 23259 0.6060 +9907 23339 0.4530 +9907 23431 0.9620 +9907 23503 0.9920 +9907 26580 0.5190 +9907 26985 0.5900 +9907 27333 0.4320 +9907 51062 0.4800 +9907 51308 0.5630 +9907 51324 0.8680 +9907 51663 0.4060 +9907 55317 0.9970 +9907 55745 0.9730 +9907 57165 0.8390 +9907 57599 0.4060 +9907 57617 0.4830 +9907 57704 0.6210 +9907 65055 0.5920 +9907 79152 0.5810 +9907 80055 0.4620 +9907 80208 0.9960 +9907 80821 0.5970 +9907 84251 0.7330 +9907 91056 0.9980 +9907 91574 0.6880 +9907 113612 0.6820 +9907 118813 0.5700 +9907 122616 0.5430 +9907 123606 0.5920 +9907 126129 0.4670 +9907 130340 0.5670 +9907 137492 0.5830 +9907 221937 0.4990 +9907 340075 0.4610 +9908 9972 0.4360 +9908 10044 0.7120 +9908 10146 0.9870 +9908 10155 0.4060 +9908 10204 0.6170 +9908 10399 0.5890 +9908 10492 0.5710 +9908 10594 0.5180 +9908 10642 0.6150 +9908 10643 0.6680 +9908 10644 0.5800 +9908 10730 0.4780 +9908 10772 0.4260 +9908 10776 0.6180 +9908 10914 0.4600 +9908 11051 0.4500 +9908 11060 0.5560 +9908 11224 0.4470 +9908 11273 0.8960 +9908 22907 0.6160 +9908 23155 0.4370 +9908 23185 0.4920 +9908 23196 0.4490 +9908 23215 0.6350 +9908 23277 0.6670 +9908 23367 0.4670 +9908 23369 0.4270 +9908 23405 0.4600 +9908 23435 0.5560 +9908 23560 0.4890 +9908 23636 0.4740 +9908 26058 0.4010 +9908 26065 0.6290 +9908 26135 0.5020 +9908 26986 0.9070 +9908 27161 0.5740 +9908 27250 0.4110 +9908 27316 0.5510 +9908 29110 0.4690 +9908 51441 0.6410 +9908 54464 0.5250 +9908 54915 0.6300 +9908 54940 0.4480 +9908 54952 0.5240 +9908 55781 0.4820 +9908 55802 0.4180 +9908 55833 0.4160 +9908 56257 0.4760 +9908 56829 0.4320 +9908 57532 0.9380 +9908 64848 0.5070 +9908 79084 0.4190 +9908 90957 0.4270 +9908 91746 0.4250 +9908 124801 0.6280 +9908 153768 0.5120 +9908 170506 0.4390 +9908 253943 0.5490 +9908 347744 0.5240 +9909 10890 0.6660 +9909 23080 0.4060 +9909 54958 0.4130 +9909 57706 0.4990 +9909 63891 0.4110 +9909 79958 0.4740 +9909 116985 0.4500 +9909 160518 0.4600 +9909 200186 0.6330 +9910 23637 0.4660 +9910 25771 0.4640 +9910 55633 0.4550 +9910 57403 0.4550 +9910 83871 0.4020 +9910 128637 0.4540 +9910 221749 0.6230 +9911 10107 0.4800 +9911 10661 0.5430 +9911 10900 0.6450 +9911 11151 0.5900 +9911 23762 0.5990 +9911 25778 0.4800 +9911 51327 0.4470 +9911 92906 0.4930 +9911 219539 0.4650 +9911 222642 0.5850 +9911 388730 0.4110 +9912 23268 0.4450 +9912 23607 0.5280 +9912 23616 0.7830 +9912 30011 0.6080 +9912 54874 0.5160 +9912 55114 0.8130 +9912 85358 0.6700 +9912 89848 0.4370 +9912 90627 0.4470 +9912 146822 0.4180 +9912 389337 0.4950 +9913 10025 0.6210 +9913 10474 0.9940 +9913 10523 0.4020 +9913 10629 0.9990 +9913 10761 0.6900 +9913 11091 0.7720 +9913 11321 0.4300 +9913 22884 0.4620 +9913 23070 0.4390 +9913 23326 0.9740 +9913 23450 0.9660 +9913 24144 0.4320 +9913 25821 0.6740 +9913 25871 0.4380 +9913 25904 0.5350 +9913 26009 0.9230 +9913 27097 0.9980 +9913 51562 0.7950 +9913 51616 0.9920 +9913 54107 0.7270 +9913 54455 0.4370 +9913 54872 0.5180 +9913 55322 0.4080 +9913 55339 0.4440 +9913 55578 0.9990 +9913 55644 0.4640 +9913 55689 0.8510 +9913 55830 0.4750 +9913 55929 0.4370 +9913 56655 0.7200 +9913 56943 0.9600 +9913 56970 0.9910 +9913 57035 0.4350 +9913 57325 0.8540 +9913 79595 0.8110 +9913 79635 0.4770 +9913 83443 0.9470 +9913 83860 0.4510 +9913 84108 0.4100 +9913 84144 0.4400 +9913 84320 0.4500 +9913 84450 0.4410 +9913 84923 0.7440 +9913 91689 0.4240 +9913 92400 0.5100 +9913 93624 0.9920 +9913 112869 0.9930 +9913 117143 0.9990 +9913 127002 0.4100 +9913 129685 0.9580 +9913 133957 0.7780 +9913 140460 0.6620 +9913 283237 0.4770 +9913 388569 0.4080 +9913 653604 0.4410 +9914 23250 0.4360 +9914 23439 0.4190 +9914 23543 0.4810 +9914 26047 0.6230 +9914 51172 0.5740 +9914 51473 0.7440 +9914 51669 0.4050 +9914 55503 0.4270 +9914 55858 0.5170 +9914 57620 0.5400 +9914 64579 0.5080 +9914 79158 0.4750 +9914 79750 0.4870 +9914 79853 0.4180 +9914 80228 0.5030 +9914 80790 0.9420 +9914 84572 0.5200 +9914 84766 0.4340 +9914 84876 0.8890 +9914 85445 0.4540 +9914 93129 0.6280 +9914 93986 0.5730 +9914 149069 0.4730 +9914 152518 0.6890 +9914 161582 0.7530 +9914 728597 0.4750 +9915 10135 0.6790 +9915 10451 0.5250 +9915 10769 0.5070 +9915 23314 0.4140 +9915 23440 0.6190 +9915 54583 0.6450 +9915 56938 0.5780 +9915 57491 0.8440 +9915 64067 0.8170 +9915 64344 0.9770 +9915 112399 0.6030 +9915 146713 0.4240 +9915 266743 0.9980 +9915 341359 0.4990 +9915 440073 0.5280 +9917 9953 0.4280 +9917 10117 0.5290 +9917 11285 0.6710 +9917 22856 0.5000 +9917 23039 0.4650 +9917 24147 0.6440 +9917 26035 0.4830 +9917 26151 0.6990 +9917 26229 0.6870 +9917 50515 0.4500 +9917 51313 0.4680 +9917 51363 0.4130 +9917 54480 0.4440 +9917 55454 0.5370 +9917 55790 0.5190 +9917 57168 0.4440 +9917 64131 0.7510 +9917 64132 0.6590 +9917 64711 0.4250 +9917 79586 0.5010 +9917 80146 0.6580 +9917 84197 0.5550 +9917 91461 0.4520 +9917 92370 0.6680 +9917 113189 0.4150 +9917 116039 0.4190 +9917 121665 0.4210 +9917 124583 0.4840 +9917 126792 0.7010 +9917 154807 0.5030 +9917 166012 0.4260 +9917 347734 0.4470 +9917 729085 0.7140 +9917 730094 0.4780 +9918 9928 0.5840 +9918 9972 0.5850 +9918 10036 0.4380 +9918 10051 0.9990 +9918 10112 0.6410 +9918 10270 0.4990 +9918 10274 0.4260 +9918 10403 0.5360 +9918 10460 0.6210 +9918 10535 0.4930 +9918 10552 0.4440 +9918 10592 0.9990 +9918 10615 0.6060 +9918 10635 0.4140 +9918 11004 0.6190 +9918 11065 0.5980 +9918 11113 0.4220 +9918 11130 0.4390 +9918 11169 0.4560 +9918 22974 0.6000 +9918 23047 0.4080 +9918 23076 0.5430 +9918 23137 0.8200 +9918 23141 0.4310 +9918 23165 0.5860 +9918 23244 0.5020 +9918 23310 0.9840 +9918 23397 0.9990 +9918 23468 0.4190 +9918 23649 0.6000 +9918 24137 0.7250 +9918 24149 0.4230 +9918 25836 0.4020 +9918 26586 0.5330 +9918 27127 0.7360 +9918 29028 0.4990 +9918 29127 0.5670 +9918 29128 0.4560 +9918 29781 0.9770 +9918 51053 0.4090 +9918 51203 0.6540 +9918 51605 0.4950 +9918 51659 0.7650 +9918 54443 0.5960 +9918 54478 0.5920 +9918 54821 0.5370 +9918 54892 0.9880 +9918 55055 0.4880 +9918 55063 0.4800 +9918 55143 0.6410 +9918 55165 0.4900 +9918 55215 0.4810 +9918 55262 0.4670 +9918 55355 0.5680 +9918 55388 0.4120 +9918 55632 0.5130 +9918 55746 0.4380 +9918 55835 0.4240 +9918 55920 0.4120 +9918 56992 0.8600 +9918 57082 0.4990 +9918 57405 0.5350 +9918 57650 0.5890 +9918 63922 0.6110 +9918 63967 0.4070 +9918 64105 0.4340 +9918 64151 0.9990 +9918 79023 0.5150 +9918 79075 0.4750 +9918 79677 0.7590 +9918 79733 0.4200 +9918 79915 0.4510 +9918 81620 0.5160 +9918 83461 0.6710 +9918 83540 0.6040 +9918 83879 0.4290 +9918 83903 0.4190 +9918 84296 0.6620 +9918 84515 0.5610 +9918 84661 0.4370 +9918 84722 0.5220 +9918 84946 0.4650 +9918 85459 0.4290 +9918 93517 0.4370 +9918 113130 0.5960 +9918 146909 0.4360 +9918 147841 0.6180 +9918 152098 0.4800 +9918 157313 0.5890 +9918 166979 0.4190 +9918 254394 0.4810 +9918 259266 0.7100 +9918 283431 0.6030 +9919 9931 0.4780 +9919 10016 0.4770 +9919 10113 0.9600 +9919 10175 0.5620 +9919 10282 0.5050 +9919 10342 0.9430 +9919 10427 0.9990 +9919 10483 0.9990 +9919 10484 0.9880 +9919 10490 0.4390 +9919 10652 0.5860 +9919 10802 0.9990 +9919 10890 0.4800 +9919 10959 0.5680 +9919 10960 0.5670 +9919 10972 0.5540 +9919 10985 0.5230 +9919 11083 0.4430 +9919 11196 0.7630 +9919 11316 0.4660 +9919 11336 0.4140 +9919 22872 0.9800 +9919 23218 0.4490 +9919 23381 0.5100 +9919 23644 0.4720 +9919 25921 0.4690 +9919 25930 0.5260 +9919 25956 0.7390 +9919 26003 0.5190 +9919 26984 0.5920 +9919 27095 0.6830 +9919 51128 0.8340 +9919 51399 0.6000 +9919 51693 0.5130 +9919 53407 0.5000 +9919 55018 0.4630 +9919 55626 0.6120 +9919 55697 0.4310 +9919 56681 0.9330 +9919 57720 0.4690 +9919 58485 0.6070 +9919 59349 0.7530 +9919 60561 0.4460 +9919 64083 0.8260 +9919 64689 0.5500 +9919 79090 0.6580 +9919 79654 0.4420 +9919 79748 0.5740 +9919 79902 0.4230 +9919 81562 0.5390 +9919 81570 0.4280 +9919 81876 0.5800 +9919 81929 0.4240 +9919 84955 0.6220 +9919 85440 0.4120 +9919 89866 0.9210 +9919 90411 0.5200 +9919 91369 0.4680 +9919 120892 0.6450 +9919 122553 0.5630 +9919 126003 0.5950 +9919 133482 0.4130 +9919 138065 0.4130 +9919 149041 0.5270 +9919 149111 0.5380 +9919 196513 0.5210 +9919 219988 0.4180 +9919 225689 0.4520 +9919 254263 0.5380 +9919 342371 0.4820 +9919 375056 0.8630 +9919 399909 0.4520 +9919 553115 0.4920 +9919 100101267 0.4070 +9920 157695 0.4010 +9920 157697 0.4340 +9920 169270 0.4740 +9920 221472 0.4920 +9920 441308 0.4320 +9921 10477 0.4540 +9921 10987 0.4270 +9921 23431 0.4520 +9921 23608 0.4920 +9921 26135 0.4560 +9921 51094 0.4490 +9921 55122 0.5580 +9921 55142 0.4680 +9921 55907 0.6020 +9921 63891 0.4390 +9921 63893 0.4210 +9921 80700 0.5400 +9921 84274 0.4330 +9921 89978 0.4140 +9921 92558 0.4080 +9921 374946 0.4260 +9921 402635 0.4800 +9922 23096 0.4250 +9922 23163 0.4570 +9922 26031 0.4170 +9922 26499 0.5930 +9922 50807 0.7460 +9922 51363 0.5910 +9922 145942 0.4430 +9922 261734 0.4770 +9923 10165 0.4050 +9923 11215 0.6020 +9923 23140 0.4630 +9923 24149 0.5330 +9923 26009 0.4840 +9923 26574 0.4420 +9923 49856 0.8300 +9923 51384 0.4210 +9923 55094 0.4070 +9923 55102 0.4450 +9923 55252 0.4340 +9923 55297 0.4240 +9923 55553 0.4120 +9923 56907 0.4750 +9923 56955 0.4790 +9923 57507 0.4630 +9923 65084 0.5560 +9923 78995 0.5300 +9923 79971 0.4480 +9923 80067 0.4420 +9923 80129 0.6060 +9923 81627 0.4060 +9923 83930 0.5450 +9923 85021 0.4940 +9923 125228 0.5920 +9923 200014 0.5390 +9923 341019 0.5800 +9923 348487 0.4210 +9924 9929 0.4160 +9924 9958 0.4140 +9924 10208 0.5910 +9924 10605 0.4190 +9924 10713 0.6070 +9924 10868 0.5510 +9924 10869 0.5390 +9924 23032 0.4190 +9924 23113 0.4570 +9924 25819 0.4450 +9924 25842 0.5430 +9924 25862 0.4150 +9924 26986 0.9570 +9924 27257 0.4800 +9924 27327 0.4420 +9924 29761 0.4340 +9924 51320 0.4770 +9924 54464 0.4230 +9924 54532 0.5520 +9924 54726 0.4220 +9924 54764 0.4510 +9924 55031 0.4010 +9924 56957 0.4680 +9924 57136 0.4030 +9924 57472 0.5190 +9924 57558 0.4400 +9924 57602 0.4330 +9924 57646 0.4390 +9924 57663 0.4410 +9924 64077 0.4440 +9924 64854 0.4690 +9924 80313 0.4720 +9924 80336 0.7380 +9924 83844 0.5120 +9924 84132 0.4100 +9924 84196 0.4850 +9924 84640 0.5620 +9924 84749 0.5170 +9924 85015 0.4650 +9924 87178 0.4030 +9924 124739 0.6270 +9924 126119 0.4070 +9924 129563 0.4650 +9924 132430 0.7270 +9924 140886 0.6030 +9924 158880 0.4600 +9924 159195 0.6750 +9924 201626 0.4500 +9924 221302 0.5190 +9924 246175 0.4680 +9924 255967 0.9990 +9924 340529 0.6080 +9924 373509 0.7300 +9924 377630 0.4020 +9925 10240 0.4070 +9925 51043 0.4170 +9925 51193 0.4220 +9925 54880 0.4390 +9925 55633 0.4420 +9925 143879 0.4260 +9925 285051 0.4180 +9925 342371 0.4390 +9926 10390 0.4150 +9926 10554 0.4350 +9926 10652 0.4020 +9926 54675 0.9460 +9926 54947 0.9370 +9926 56894 0.4830 +9926 56994 0.5230 +9926 57678 0.9130 +9926 79888 0.9420 +9926 129642 0.4330 +9926 130574 0.4550 +9926 132949 0.4170 +9926 150763 0.5180 +9926 154141 0.5570 +9926 163590 0.4250 +9926 253558 0.9230 +9926 254531 0.9350 +9926 390648 0.4500 +9927 10013 0.5640 +9927 10018 0.5110 +9927 10059 0.9840 +9927 10075 0.8320 +9927 10105 0.6190 +9927 10133 0.5560 +9927 10134 0.7580 +9927 10241 0.5780 +9927 10280 0.6940 +9927 10367 0.7110 +9927 10452 0.6390 +9927 10469 0.4290 +9927 10533 0.5990 +9927 10613 0.4850 +9927 10730 0.7040 +9927 10871 0.4790 +9927 10891 0.7910 +9927 10939 0.6160 +9927 10989 0.6290 +9927 11022 0.4910 +9927 11232 0.4460 +9927 11315 0.7240 +9927 11331 0.6370 +9927 11337 0.5060 +9927 11345 0.5060 +9927 22906 0.9420 +9927 22926 0.4100 +9927 23095 0.8330 +9927 23230 0.5820 +9927 23241 0.9360 +9927 23381 0.5240 +9927 23410 0.6290 +9927 23411 0.7730 +9927 23435 0.4330 +9927 23499 0.5270 +9927 23710 0.5270 +9927 23761 0.4230 +9927 23770 0.4180 +9927 23786 0.4520 +9927 25813 0.6960 +9927 25923 0.4340 +9927 26052 0.5020 +9927 26353 0.4500 +9927 26580 0.4820 +9927 27069 0.4360 +9927 27429 0.4820 +9927 50618 0.4200 +9927 51001 0.8110 +9927 51024 0.9880 +9927 51062 0.4020 +9927 51100 0.6380 +9927 51537 0.5180 +9927 53349 0.4540 +9927 54205 0.8700 +9927 54332 0.9260 +9927 54471 0.8090 +9927 54514 0.4500 +9927 54708 0.9990 +9927 54838 0.4090 +9927 54927 0.4530 +9927 54977 0.4220 +9927 55014 0.5000 +9927 55139 0.4010 +9927 55154 0.4080 +9927 55177 0.9100 +9927 55187 0.4380 +9927 55201 0.4360 +9927 55210 0.4310 +9927 55288 0.9680 +9927 55329 0.7100 +9927 55333 0.4010 +9927 55486 0.7660 +9927 55626 0.5330 +9927 55669 0.9990 +9927 55737 0.5200 +9927 55847 0.4580 +9927 56652 0.4730 +9927 56947 0.8910 +9927 56993 0.5070 +9927 57144 0.4280 +9927 57506 0.9820 +9927 60672 0.4360 +9927 64423 0.5850 +9927 64786 0.4230 +9927 65018 0.9990 +9927 66008 0.8260 +9927 78997 0.5460 +9927 79065 0.5100 +9927 79142 0.4120 +9927 79594 0.7130 +9927 79628 0.5830 +9927 79671 0.5860 +9927 80024 0.4500 +9927 80207 0.6230 +9927 81631 0.8750 +9927 81846 0.4390 +9927 83891 0.4400 +9927 84260 0.9100 +9927 84300 0.6060 +9927 84557 0.7240 +9927 84701 0.5080 +9927 84749 0.6120 +9927 84895 0.5230 +9927 89941 0.9790 +9927 90550 0.7820 +9927 90678 0.4550 +9927 91137 0.8530 +9927 91689 0.5300 +9927 92935 0.4330 +9927 114548 0.8950 +9927 114879 0.4510 +9927 115209 0.7430 +9927 118987 0.5560 +9927 120892 0.7370 +9927 121512 0.4280 +9927 125170 0.8150 +9927 131474 0.4210 +9927 133522 0.5820 +9927 136991 0.4690 +9927 137902 0.5260 +9927 139341 0.8130 +9927 155061 0.4630 +9927 192111 0.5840 +9927 201164 0.4590 +9927 221154 0.6300 +9927 286097 0.5230 +9927 340061 0.4630 +9927 440503 0.5690 +9927 493869 0.4320 +9927 100287932 0.5300 +9928 10024 0.6580 +9928 10051 0.7850 +9928 10112 0.9730 +9928 10376 0.9280 +9928 10403 0.7360 +9928 10592 0.6240 +9928 10615 0.7240 +9928 10635 0.6100 +9928 10643 0.4820 +9928 10721 0.4930 +9928 10733 0.8210 +9928 10749 0.6160 +9928 10807 0.4790 +9928 10982 0.4390 +9928 11004 0.9010 +9928 11064 0.4150 +9928 11065 0.6450 +9928 11113 0.9700 +9928 11127 0.6040 +9928 11130 0.5440 +9928 11169 0.5200 +9928 11339 0.5330 +9928 22920 0.6610 +9928 22974 0.9030 +9928 22995 0.4290 +9928 23046 0.5980 +9928 23095 0.6330 +9928 23271 0.4270 +9928 23299 0.4260 +9928 23303 0.6270 +9928 23354 0.4750 +9928 23363 0.5170 +9928 23397 0.7720 +9928 24137 0.9210 +9928 26003 0.6220 +9928 26128 0.6880 +9928 26153 0.6280 +9928 26271 0.4820 +9928 27185 0.4160 +9928 27289 0.5820 +9928 29028 0.6210 +9928 29089 0.4940 +9928 29127 0.8680 +9928 29128 0.4620 +9928 51203 0.8990 +9928 51474 0.4150 +9928 51512 0.6890 +9928 51514 0.6830 +9928 54443 0.8280 +9928 54478 0.5320 +9928 54820 0.6240 +9928 54821 0.6450 +9928 54892 0.4660 +9928 55010 0.4330 +9928 55055 0.4270 +9928 55083 0.6370 +9928 55143 0.8300 +9928 55157 0.4260 +9928 55165 0.9430 +9928 55215 0.4890 +9928 55247 0.6100 +9928 55262 0.4560 +9928 55320 0.4030 +9928 55355 0.9270 +9928 55388 0.7440 +9928 55582 0.5920 +9928 55605 0.6350 +9928 55614 0.6060 +9928 55635 0.8730 +9928 55732 0.5910 +9928 55755 0.4680 +9928 55771 0.4720 +9928 55789 0.8220 +9928 55835 0.6000 +9928 55839 0.5080 +9928 56667 0.4480 +9928 56992 0.9310 +9928 57082 0.6650 +9928 57405 0.5400 +9928 57576 0.5930 +9928 57650 0.4310 +9928 57674 0.4200 +9928 57696 0.4220 +9928 63925 0.5520 +9928 63971 0.6170 +9928 64105 0.5550 +9928 64151 0.9240 +9928 64837 0.5980 +9928 64946 0.5150 +9928 79019 0.5020 +9928 79023 0.5540 +9928 79682 0.5070 +9928 79733 0.5970 +9928 79801 0.7380 +9928 79866 0.5000 +9928 81565 0.6020 +9928 81610 0.6370 +9928 81624 0.6980 +9928 81930 0.9450 +9928 83461 0.6440 +9928 83479 0.4790 +9928 83540 0.8720 +9928 83879 0.5810 +9928 83990 0.4040 +9928 84057 0.4830 +9928 84643 0.6100 +9928 84823 0.5880 +9928 84879 0.4850 +9928 85439 0.4120 +9928 89953 0.4850 +9928 90417 0.4650 +9928 90990 0.6480 +9928 113130 0.7280 +9928 124602 0.5980 +9928 126820 0.4070 +9928 128239 0.5090 +9928 144455 0.4480 +9928 144983 0.4320 +9928 146909 0.7620 +9928 146956 0.4130 +9928 150468 0.8520 +9928 151246 0.6280 +9928 151648 0.6030 +9928 157313 0.7540 +9928 157570 0.5310 +9928 163786 0.6160 +9928 164684 0.4050 +9928 220134 0.7320 +9928 221150 0.5040 +9928 221458 0.5690 +9928 259266 0.9630 +9928 283431 0.4850 +9928 284403 0.6000 +9928 345778 0.4220 +9928 347733 0.9160 +9928 374654 0.6490 +9928 387103 0.4480 +9928 399909 0.4010 +9928 728833 0.4170 +9928 100532724 0.4420 +9929 9958 0.6670 +9929 9960 0.4470 +9929 10208 0.4760 +9929 10213 0.5730 +9929 10273 0.5180 +9929 10617 0.5880 +9929 10713 0.4960 +9929 10868 0.4610 +9929 10869 0.4190 +9929 10987 0.8100 +9929 23326 0.4860 +9929 25862 0.4880 +9929 27005 0.5760 +9929 29761 0.5100 +9929 51012 0.4250 +9929 51127 0.4590 +9929 51377 0.5880 +9929 51569 0.4790 +9929 51633 0.4760 +9929 54145 0.4830 +9929 54532 0.4120 +9929 54726 0.5180 +9929 54764 0.5150 +9929 55031 0.4740 +9929 55432 0.4520 +9929 55593 0.5690 +9929 55611 0.6240 +9929 55793 0.5780 +9929 56957 0.5340 +9929 57559 0.5530 +9929 57602 0.5230 +9929 57646 0.6580 +9929 57663 0.4990 +9929 57695 0.5020 +9929 64854 0.5200 +9929 78990 0.5130 +9929 79184 0.4360 +9929 80124 0.4330 +9929 83844 0.5060 +9929 84101 0.4540 +9929 84132 0.4130 +9929 84196 0.4920 +9929 84640 0.4840 +9929 84669 0.4690 +9929 84954 0.6440 +9929 85015 0.4130 +9929 85236 0.4770 +9929 90268 0.5240 +9929 92552 0.8610 +9929 114803 0.4840 +9929 128312 0.4830 +9929 139562 0.4720 +9929 144699 0.4440 +9929 158983 0.4840 +9929 161725 0.4180 +9929 200933 0.4030 +9929 219333 0.5250 +9929 220213 0.5080 +9929 221302 0.7370 +9929 255626 0.4760 +9929 284111 0.6430 +9929 284346 0.4620 +9929 286436 0.4840 +9929 373509 0.4830 +9929 377630 0.5910 +9929 389856 0.4290 +9929 440689 0.4830 +9929 728373 0.4250 +9929 114483833 0.4850 +9931 9969 0.4060 +9931 10146 0.4720 +9931 10322 0.4370 +9931 10399 0.4800 +9931 10522 0.4160 +9931 10565 0.4430 +9931 10605 0.4020 +9931 10746 0.4510 +9931 11273 0.4870 +9931 23013 0.4220 +9931 23019 0.8310 +9931 23041 0.4610 +9931 23064 0.5590 +9931 23215 0.5370 +9931 23304 0.5430 +9931 23318 0.4140 +9931 23369 0.5240 +9931 23469 0.7870 +9931 23644 0.4580 +9931 25836 0.5000 +9931 26058 0.4330 +9931 26207 0.5460 +9931 26257 0.8270 +9931 26523 0.4040 +9931 51366 0.4750 +9931 54464 0.4370 +9931 54542 0.7880 +9931 54915 0.4480 +9931 55023 0.4500 +9931 55870 0.5550 +9931 55904 0.4650 +9931 56950 0.4750 +9931 64754 0.9620 +9931 64793 0.4160 +9931 79577 0.4550 +9931 80124 0.4430 +9931 90624 0.5030 +9931 113251 0.4150 +9931 149041 0.7510 +9931 150274 0.6670 +9931 150572 0.4230 +9931 167227 0.4840 +9931 192669 0.4130 +9931 197131 0.4420 +9931 201229 0.4230 +9931 219988 0.5620 +9931 255967 0.5530 +9931 285527 0.4350 +9933 10063 0.4670 +9933 10153 0.9720 +9933 10171 0.5440 +9933 10199 0.8610 +9933 10412 0.9110 +9933 10436 0.6120 +9933 10514 0.8510 +9933 10521 0.4180 +9933 10528 0.9300 +9933 10607 0.9510 +9933 10664 0.6290 +9933 10785 0.4270 +9933 10813 0.8810 +9933 10849 0.4370 +9933 10885 0.9050 +9933 10969 0.9950 +9933 10988 0.4310 +9933 11056 0.8480 +9933 11103 0.8940 +9933 11128 0.6040 +9933 11137 0.9470 +9933 22984 0.9560 +9933 23029 0.8730 +9933 23054 0.4770 +9933 23076 0.7900 +9933 23160 0.9160 +9933 23173 0.4070 +9933 23212 0.9620 +9933 23223 0.8370 +9933 23246 0.8540 +9933 23369 0.5360 +9933 23378 0.9290 +9933 23481 0.9350 +9933 23517 0.8410 +9933 23521 0.5160 +9933 23526 0.4700 +9933 23560 0.9900 +9933 24140 0.5610 +9933 25873 0.4870 +9933 25879 0.8650 +9933 25885 0.8620 +9933 25983 0.7540 +9933 26155 0.9580 +9933 26156 0.9450 +9933 26354 0.9120 +9933 26574 0.9120 +9933 26986 0.4080 +9933 26995 0.4970 +9933 27000 0.4870 +9933 27037 0.4060 +9933 27042 0.7910 +9933 27292 0.4290 +9933 27340 0.8120 +9933 28987 0.8700 +9933 29777 0.4130 +9933 29889 0.9340 +9933 29960 0.4120 +9933 29997 0.9180 +9933 30836 0.7020 +9933 51018 0.7480 +9933 51068 0.8800 +9933 51096 0.8440 +9933 51118 0.6210 +9933 51121 0.4850 +9933 51154 0.9170 +9933 51187 0.8600 +9933 51202 0.8400 +9933 51236 0.6020 +9933 51388 0.8520 +9933 51574 0.4360 +9933 51575 0.9190 +9933 51602 0.9640 +9933 51605 0.7140 +9933 54433 0.5760 +9933 54475 0.4220 +9933 54517 0.5930 +9933 54552 0.8760 +9933 54555 0.4430 +9933 54606 0.9290 +9933 54663 0.7870 +9933 54865 0.6410 +9933 54881 0.4690 +9933 54888 0.8770 +9933 54984 0.4120 +9933 55003 0.7850 +9933 55027 0.4770 +9933 55127 0.8370 +9933 55131 0.9720 +9933 55153 0.9240 +9933 55226 0.8480 +9933 55272 0.4830 +9933 55299 0.9880 +9933 55319 0.5070 +9933 55341 0.8430 +9933 55622 0.6280 +9933 55646 0.5460 +9933 55651 0.5000 +9933 55695 0.6110 +9933 55703 0.6910 +9933 55720 0.8710 +9933 55759 0.8750 +9933 55760 0.6020 +9933 55781 0.5090 +9933 55794 0.7000 +9933 55813 0.8540 +9933 56342 0.8480 +9933 56647 0.6370 +9933 56829 0.6080 +9933 56902 0.6650 +9933 57038 0.4060 +9933 57050 0.8340 +9933 57062 0.9290 +9933 57109 0.6210 +9933 57418 0.4550 +9933 57696 0.7910 +9933 60487 0.6260 +9933 63899 0.6820 +9933 64005 0.4010 +9933 64216 0.4550 +9933 64282 0.6560 +9933 64318 0.8750 +9933 64425 0.8420 +9933 64434 0.7410 +9933 64794 0.9180 +9933 65083 0.7020 +9933 65095 0.5950 +9933 79009 0.4620 +9933 79039 0.9100 +9933 79050 0.7020 +9933 79159 0.6580 +9933 79571 0.4780 +9933 79730 0.4990 +9933 79954 0.8500 +9933 79979 0.4020 +9933 80135 0.8980 +9933 83448 0.4360 +9933 83732 0.4200 +9933 83743 0.9140 +9933 84128 0.8850 +9933 84135 0.7290 +9933 84154 0.9910 +9933 84172 0.7630 +9933 84186 0.6920 +9933 84273 0.4210 +9933 84294 0.6560 +9933 84310 0.6480 +9933 84319 0.4170 +9933 84365 0.9900 +9933 84549 0.9660 +9933 84916 0.8580 +9933 84928 0.4530 +9933 84946 0.9070 +9933 85302 0.4370 +9933 85441 0.4350 +9933 88745 0.4050 +9933 90121 0.4770 +9933 91893 0.5650 +9933 92170 0.4250 +9933 92856 0.7830 +9933 115708 0.4050 +9933 116966 0.6890 +9933 117246 0.9710 +9933 128061 0.4050 +9933 142940 0.5110 +9933 146212 0.8720 +9933 161424 0.8950 +9933 165545 0.5950 +9933 221078 0.8920 +9933 221830 0.7460 +9933 285855 0.7930 +9933 317781 0.5160 +9933 339230 0.5420 +9933 387129 0.4900 +9933 387338 0.6870 +9933 400506 0.5960 +9933 643836 0.6330 +9933 692312 0.7280 +9933 100505478 0.4610 +9934 10410 0.4140 +9934 10563 0.4200 +9934 22953 0.7150 +9934 24145 0.4260 +9934 29899 0.4110 +9934 53829 0.7660 +9934 63940 0.4080 +9934 64805 0.8070 +9934 377841 0.4480 +9935 10381 0.4900 +9935 10536 0.5530 +9935 10538 0.6090 +9935 10664 0.8570 +9935 10736 0.4090 +9935 11023 0.5190 +9935 11091 0.5410 +9935 22797 0.4410 +9935 22809 0.5310 +9935 22976 0.5180 +9935 23054 0.7610 +9935 23314 0.4990 +9935 23512 0.5290 +9935 50674 0.6240 +9935 51531 0.4340 +9935 53335 0.4480 +9935 53407 0.4260 +9935 54145 0.4990 +9935 54209 0.4120 +9935 54361 0.5620 +9935 54997 0.6650 +9935 55351 0.4390 +9935 55363 0.4260 +9935 55509 0.4250 +9935 55766 0.5010 +9935 55800 0.4330 +9935 56603 0.4390 +9935 57822 0.4100 +9935 58508 0.7350 +9935 60468 0.5880 +9935 64798 0.7090 +9935 79447 0.5260 +9935 81029 0.7110 +9935 84504 0.6760 +9935 84830 0.4390 +9935 85236 0.5210 +9935 94239 0.4990 +9935 114131 0.4620 +9935 116071 0.4020 +9935 122953 0.5240 +9935 128312 0.4990 +9935 132884 0.4260 +9935 153572 0.4520 +9935 222546 0.5270 +9935 255626 0.4990 +9935 256297 0.4990 +9935 284312 0.4010 +9935 338773 0.4050 +9935 347853 0.4970 +9935 392255 0.4440 +9935 474382 0.5140 +9935 653604 0.5830 +9935 102723407 0.6940 +9936 11000 0.4080 +9936 23405 0.7310 +9936 26523 0.7850 +9936 27161 0.4080 +9936 29102 0.5490 +9936 51593 0.6700 +9936 143689 0.5250 +9936 192670 0.5320 +9936 284021 0.5990 +9936 100526664 0.8650 +9937 10248 0.4310 +9937 10459 0.4450 +9937 10557 0.4070 +9937 10775 0.5190 +9937 10799 0.4670 +9937 10914 0.4870 +9937 22909 0.8300 +9937 25788 0.4250 +9937 27339 0.5710 +9937 27343 0.4990 +9937 27434 0.4290 +9937 29089 0.6780 +9937 29894 0.6540 +9937 51110 0.4470 +9937 51268 0.5360 +9937 51367 0.5990 +9937 51435 0.5490 +9937 51455 0.5900 +9937 51585 0.5540 +9937 51692 0.9410 +9937 53981 0.9020 +9937 54840 0.4600 +9937 54973 0.4590 +9937 55088 0.4240 +9937 55120 0.7300 +9937 55215 0.8480 +9937 55520 0.5290 +9937 55756 0.4810 +9937 56852 0.6930 +9937 56903 0.4870 +9937 57599 0.6120 +9937 57697 0.8520 +9937 60528 0.8240 +9937 64421 0.4020 +9937 64429 0.4320 +9937 64848 0.4090 +9937 64858 0.6700 +9937 64895 0.5100 +9937 79949 0.4180 +9937 80198 0.8510 +9937 80233 0.6960 +9937 80335 0.5720 +9937 81608 0.4490 +9937 83990 0.5030 +9937 84083 0.4380 +9937 84464 0.8460 +9937 91442 0.7710 +9937 92105 0.4410 +9937 143187 0.4110 +9937 146956 0.7380 +9937 153364 0.5220 +9937 197342 0.6080 +9937 199990 0.7040 +9937 200558 0.5500 +9937 201254 0.6640 +9937 255374 0.4920 +9937 348654 0.4190 +9937 353497 0.6870 +9937 374354 0.5410 +9937 378708 0.6740 +9937 548593 0.8350 +9937 100533467 0.4090 +9938 10533 0.5640 +9938 10607 0.4490 +9938 25778 0.4200 +9938 27128 0.4810 +9938 54440 0.5910 +9938 55154 0.4200 +9938 55236 0.4200 +9938 55843 0.4960 +9938 63948 0.4240 +9938 117289 0.4900 +9938 200150 0.4160 +9938 202374 0.4490 +9938 257106 0.4920 +9939 9967 0.5800 +9939 9972 0.5790 +9939 9984 0.6380 +9939 9987 0.6980 +9939 10150 0.4670 +9939 10189 0.9840 +9939 10212 0.5730 +9939 10250 0.8870 +9939 10262 0.4640 +9939 10283 0.4390 +9939 10284 0.9160 +9939 10286 0.8830 +9939 10291 0.5460 +9939 10432 0.6070 +9939 10450 0.8080 +9939 10480 0.4260 +9939 10482 0.9980 +9939 10521 0.6810 +9939 10569 0.9670 +9939 10575 0.6950 +9939 10594 0.9880 +9939 10614 0.8750 +9939 10656 0.4600 +9939 10657 0.5500 +9939 10762 0.5670 +9939 10856 0.4750 +9939 10915 0.5320 +9939 10921 0.9990 +9939 10929 0.5280 +9939 10946 0.5540 +9939 10949 0.5460 +9939 10969 0.7260 +9939 10978 0.5030 +9939 10992 0.8680 +9939 11051 0.6550 +9939 11052 0.6780 +9939 11097 0.5160 +9939 11218 0.4190 +9939 11315 0.4230 +9939 11325 0.5810 +9939 11338 0.6370 +9939 22794 0.9990 +9939 22916 0.9970 +9939 22936 0.5070 +9939 22938 0.8410 +9939 22985 0.8690 +9939 23020 0.9910 +9939 23049 0.9970 +9939 23054 0.4190 +9939 23165 0.5220 +9939 23218 0.5500 +9939 23225 0.5040 +9939 23279 0.5130 +9939 23293 0.7170 +9939 23381 0.6700 +9939 23398 0.8340 +9939 23405 0.9940 +9939 23435 0.8660 +9939 23450 0.6130 +9939 23451 0.5950 +9939 23476 0.7730 +9939 23511 0.5080 +9939 23524 0.9120 +9939 23543 0.4590 +9939 23636 0.5550 +9939 24144 0.5130 +9939 25804 0.4750 +9939 25949 0.8230 +9939 26017 0.8330 +9939 26019 0.9990 +9939 26093 0.9360 +9939 26097 0.7310 +9939 26471 0.4040 +9939 26523 0.4510 +9939 26986 0.9960 +9939 27125 0.6820 +9939 27161 0.9610 +9939 27238 0.4230 +9939 27250 0.5460 +9939 27258 0.5130 +9939 27316 0.4840 +9939 27327 0.7830 +9939 27336 0.8370 +9939 27339 0.9250 +9939 29102 0.7870 +9939 29113 0.4370 +9939 29896 0.4140 +9939 51205 0.4260 +9939 51213 0.6300 +9939 51340 0.8330 +9939 51362 0.9160 +9939 51388 0.4150 +9939 51503 0.8580 +9939 51574 0.7960 +9939 51585 0.5830 +9939 51639 0.5880 +9939 51645 0.8520 +9939 53371 0.5260 +9939 54205 0.5180 +9939 54487 0.7400 +9939 54606 0.4340 +9939 54883 0.9790 +9939 55100 0.8020 +9939 55110 0.9990 +9939 55181 0.7790 +9939 55421 0.7050 +9939 55629 0.5580 +9939 55660 0.6010 +9939 55696 0.9220 +9939 55702 0.9790 +9939 55706 0.5040 +9939 55746 0.5680 +9939 55802 0.6390 +9939 56006 0.8510 +9939 56257 0.7540 +9939 56949 0.8140 +9939 57107 0.5470 +9939 57122 0.5240 +9939 57187 0.6710 +9939 57461 0.9820 +9939 57510 0.6510 +9939 57703 0.9900 +9939 57819 0.5770 +9939 58509 0.8020 +9939 60489 0.4820 +9939 64221 0.4990 +9939 65109 0.9990 +9939 65110 0.9990 +9939 79023 0.5310 +9939 79228 0.5580 +9939 79576 0.8030 +9939 79647 0.4370 +9939 79706 0.8200 +9939 79753 0.5810 +9939 79869 0.5490 +9939 79902 0.5090 +9939 80011 0.8140 +9939 80145 0.7050 +9939 81929 0.5430 +9939 83443 0.5660 +9939 83551 0.4790 +9939 84248 0.6420 +9939 84271 0.8250 +9939 84305 0.9990 +9939 84321 0.5750 +9939 84324 0.6400 +9939 84844 0.4750 +9939 114034 0.6150 +9939 117246 0.6250 +9939 124790 0.5090 +9939 127933 0.4070 +9939 128077 0.4740 +9939 129401 0.5280 +9939 134860 0.4470 +9939 134864 0.4470 +9939 143884 0.5040 +9939 163859 0.8390 +9939 199746 0.5580 +9939 203228 0.4470 +9939 220988 0.6860 +9939 317649 0.4600 +9939 348995 0.5290 +9939 641371 0.5210 +9939 100101267 0.5250 +9939 100534599 0.9810 +9940 9943 0.5540 +9940 10233 0.5250 +9940 11178 0.7310 +9940 11186 0.6000 +9940 27156 0.5230 +9940 50853 0.4230 +9940 51196 0.5900 +9940 51364 0.4130 +9940 51741 0.5430 +9940 51761 0.4520 +9940 55815 0.5600 +9940 56673 0.4320 +9940 57402 0.6690 +9940 57501 0.6140 +9940 57639 0.5050 +9940 64446 0.4550 +9940 85478 0.5600 +9940 92304 0.4210 +9940 113278 0.7230 +9940 118491 0.5470 +9940 126637 0.4700 +9940 128153 0.6170 +9940 136332 0.4570 +9940 145508 0.4010 +9940 146845 0.5380 +9940 151112 0.4130 +9940 151827 0.4520 +9940 161502 0.5270 +9940 200162 0.4310 +9940 222967 0.4640 +9940 286464 0.5100 +9940 340359 0.4420 +9941 25771 0.4280 +9941 26953 0.4030 +9941 55520 0.5400 +9941 55775 0.4670 +9941 56652 0.4120 +9941 60528 0.8570 +9941 84947 0.4220 +9941 92667 0.6500 +9941 100505876 0.4610 +9942 9943 0.8400 +9942 10007 0.4610 +9942 10020 0.4990 +9942 10994 0.4430 +9942 11181 0.4070 +9942 22934 0.6780 +9942 25796 0.6050 +9942 27294 0.4190 +9942 51074 0.7930 +9942 51084 0.4090 +9942 51171 0.4170 +9942 51179 0.4330 +9942 54363 0.4350 +9942 54438 0.4050 +9942 54851 0.4890 +9942 55277 0.4610 +9942 57016 0.4910 +9942 57591 0.4160 +9942 64080 0.6380 +9942 65220 0.4090 +9942 80201 0.4100 +9942 81577 0.4050 +9942 84076 0.8960 +9942 84263 0.4700 +9942 84842 0.7920 +9942 92342 0.4800 +9942 92370 0.4120 +9942 92483 0.4740 +9942 129831 0.4150 +9942 130589 0.6760 +9942 132789 0.4570 +9942 133015 0.4290 +9942 137868 0.5050 +9942 137872 0.4010 +9942 207063 0.4260 +9942 282969 0.9310 +9942 283871 0.5510 +9942 284004 0.4530 +9942 374875 0.4300 +9942 390190 0.4750 +9942 414328 0.4420 +9942 729020 0.9510 +9943 9990 0.7390 +9943 10723 0.5650 +9943 10952 0.8140 +9943 11231 0.8320 +9943 23327 0.5310 +9943 23379 0.4420 +9943 23480 0.9000 +9943 26249 0.4540 +9943 29927 0.7180 +9943 51719 0.8500 +9943 54915 0.4370 +9943 55176 0.7160 +9943 57468 0.6470 +9943 57649 0.6950 +9943 65125 0.9010 +9943 65266 0.8860 +9943 65267 0.7760 +9943 65268 0.7980 +9943 81617 0.5840 +9943 84957 0.9540 +9943 127833 0.4350 +9943 285613 0.9550 +9943 768211 0.8850 +9945 10007 0.9690 +9945 10020 0.5690 +9945 10724 0.7580 +9945 11224 0.4010 +9945 22934 0.5010 +9945 26751 0.4020 +9945 27165 0.9240 +9945 27349 0.4190 +9945 29925 0.5370 +9945 29926 0.5550 +9945 29968 0.4700 +9945 51005 0.8190 +9945 51557 0.5410 +9945 55191 0.4150 +9945 55276 0.7080 +9945 55278 0.5400 +9945 55577 0.6670 +9945 55748 0.4510 +9945 64841 0.9930 +9945 79073 0.8330 +9945 80201 0.9170 +9945 84735 0.4510 +9945 91373 0.5010 +9945 112483 0.4830 +9945 132789 0.9620 +9945 148811 0.4410 +9945 158584 0.5400 +9945 283209 0.6280 +9945 340562 0.4830 +9946 10476 0.4310 +9946 10493 0.4620 +9946 23052 0.4340 +9946 29980 0.5480 +9946 30061 0.7150 +9946 51056 0.8640 +9946 51071 0.4390 +9946 51084 0.5570 +9946 51102 0.4760 +9946 51557 0.5190 +9946 54014 0.5070 +9946 56683 0.5480 +9946 57102 0.6270 +9946 84263 0.5450 +9946 129285 0.9420 +9946 131544 0.4890 +9946 155051 0.4630 +9946 284273 0.5310 +9946 347862 0.8190 +9946 729515 0.4180 +9947 11086 0.4910 +9947 23137 0.5380 +9947 23532 0.5690 +9947 29122 0.4480 +9947 29940 0.8280 +9947 30014 0.5290 +9947 30848 0.7230 +9947 51213 0.5720 +9947 51438 0.7950 +9947 53340 0.4520 +9947 54780 0.5210 +9947 54967 0.5740 +9947 55511 0.6920 +9947 56001 0.5300 +9947 64648 0.4800 +9947 64663 0.5030 +9947 79677 0.5250 +9947 81569 0.4230 +9947 84224 0.4080 +9947 84519 0.5400 +9947 90737 0.5840 +9947 139081 0.4050 +9947 139135 0.6630 +9947 148545 0.4510 +9947 158521 0.4990 +9947 158809 0.6270 +9947 170626 0.4480 +9947 197370 0.5650 +9947 203413 0.4150 +9947 285782 0.6080 +9947 286053 0.4750 +9947 389903 0.4450 +9947 441525 0.4100 +9947 493861 0.4840 +9947 541466 0.6650 +9947 548313 0.6560 +9947 645073 0.4740 +9947 653067 0.4190 +9947 653149 0.4190 +9947 653220 0.7440 +9947 727837 0.6920 +9947 728343 0.5050 +9947 728712 0.5520 +9947 729428 0.4070 +9947 729447 0.5490 +9947 100008586 0.5270 +9947 102723547 0.4790 +9947 105371346 0.4160 +9948 10092 0.6150 +9948 10093 0.5820 +9948 10094 0.5330 +9948 10095 0.6780 +9948 10096 0.8260 +9948 10097 0.7110 +9948 10109 0.5400 +9948 10121 0.5180 +9948 10383 0.5390 +9948 10465 0.4360 +9948 10486 0.6400 +9948 10487 0.7990 +9948 10576 0.4860 +9948 10587 0.4380 +9948 11034 0.7940 +9948 11151 0.6450 +9948 11344 0.5960 +9948 22919 0.4570 +9948 23052 0.4200 +9948 23603 0.4070 +9948 27154 0.4010 +9948 28988 0.4780 +9948 54443 0.4770 +9948 54584 0.4370 +9948 56606 0.5420 +9948 57175 0.4750 +9948 57180 0.4360 +9948 64855 0.4250 +9948 79017 0.4590 +9948 84817 0.4710 +9948 85013 0.4390 +9948 85460 0.6220 +9948 85477 0.4490 +9948 93661 0.5070 +9948 103910 0.4270 +9948 140775 0.6500 +9948 345456 0.5160 +9948 345651 0.4060 +9948 375189 0.5850 +9948 445582 0.6010 +9948 653857 0.4450 +9948 728378 0.4770 +9948 100529144 0.5420 +9949 10978 0.4260 +9949 23630 0.8730 +9949 51072 0.4540 +9949 51248 0.4310 +9949 54521 0.4120 +9949 55916 0.8060 +9949 57187 0.4170 +9949 57529 0.6640 +9949 84187 0.6870 +9949 84899 0.4010 +9949 159090 0.4530 +9949 283989 0.6120 +9949 284433 0.4470 +9950 10142 0.5680 +9950 10228 0.4560 +9950 10282 0.5060 +9950 10466 0.8410 +9950 10618 0.5270 +9950 10652 0.5890 +9950 10905 0.5140 +9950 11196 0.4750 +9950 11316 0.4330 +9950 22796 0.7780 +9950 23015 0.4090 +9950 23085 0.4800 +9950 23256 0.4400 +9950 23557 0.4180 +9950 25839 0.7730 +9950 26003 0.7170 +9950 26276 0.4150 +9950 27333 0.7810 +9950 51272 0.5760 +9950 51592 0.6930 +9950 55204 0.4110 +9950 55275 0.4260 +9950 55297 0.4390 +9950 55763 0.4450 +9950 57134 0.4990 +9950 57511 0.8760 +9950 63908 0.4990 +9950 64083 0.6300 +9950 64601 0.4240 +9950 64689 0.7990 +9950 64746 0.4660 +9950 79571 0.5650 +9950 81876 0.6890 +9950 83452 0.6650 +9950 83548 0.8920 +9950 85365 0.4510 +9950 90410 0.4420 +9950 91949 0.9640 +9950 92344 0.5050 +9950 115948 0.5290 +9950 143187 0.4840 +9950 153339 0.4110 +9950 440270 0.4230 +9951 10082 0.5910 +9951 10090 0.5310 +9951 26035 0.5730 +9951 27233 0.7170 +9951 27284 0.6820 +9951 55501 0.5120 +9951 55959 0.4340 +9951 90161 0.5560 +9951 146395 0.4600 +9951 221914 0.5170 +9951 266722 0.5730 +9951 375790 0.4910 +9951 442038 0.7250 +9953 9955 0.9100 +9953 10082 0.5610 +9953 10090 0.5550 +9953 10463 0.4050 +9953 22856 0.5010 +9953 23213 0.4240 +9953 25949 0.5290 +9953 26035 0.5240 +9953 27233 0.8270 +9953 27284 0.8250 +9953 50515 0.4400 +9953 55069 0.4160 +9953 55454 0.4810 +9953 55501 0.4700 +9953 55959 0.4180 +9953 64131 0.4170 +9953 64816 0.4140 +9953 90161 0.5090 +9953 113189 0.4020 +9953 146822 0.6050 +9953 221914 0.5260 +9953 266722 0.5460 +9953 284040 0.4370 +9953 286256 0.4100 +9953 375790 0.4940 +9953 390079 0.4960 +9953 442038 0.8290 +9955 10082 0.5350 +9955 10090 0.5010 +9955 25949 0.4970 +9955 26035 0.5050 +9955 27233 0.8370 +9955 27284 0.8330 +9955 50515 0.4040 +9955 55454 0.4290 +9955 55501 0.4360 +9955 64131 0.4830 +9955 90161 0.5570 +9955 146822 0.4160 +9955 221914 0.5030 +9955 266722 0.5180 +9955 375790 0.5020 +9955 442038 0.8320 +9956 10082 0.5200 +9956 10090 0.5010 +9956 10801 0.4100 +9956 11186 0.5070 +9956 23136 0.4060 +9956 23213 0.4540 +9956 23671 0.4800 +9956 26035 0.5350 +9956 27233 0.7540 +9956 27284 0.7310 +9956 55454 0.4390 +9956 55959 0.5290 +9956 55966 0.4040 +9956 80110 0.4450 +9956 90161 0.4120 +9956 116154 0.4630 +9956 151647 0.4310 +9956 221914 0.5160 +9956 266722 0.4970 +9956 375790 0.5190 +9956 442038 0.7620 +9957 10082 0.5470 +9957 10090 0.7910 +9957 10855 0.4160 +9957 11285 0.4040 +9957 22901 0.4290 +9957 23213 0.5860 +9957 26035 0.7360 +9957 26229 0.4360 +9957 27233 0.8450 +9957 27284 0.8450 +9957 51363 0.4490 +9957 55454 0.4880 +9957 55501 0.4280 +9957 55790 0.4230 +9957 55959 0.5850 +9957 64131 0.4100 +9957 79746 0.5050 +9957 90161 0.6620 +9957 221914 0.5920 +9957 266722 0.6190 +9957 375790 0.6120 +9957 442038 0.8470 +9958 9960 0.4590 +9958 9978 0.4030 +9958 10059 0.4630 +9958 10075 0.5700 +9958 10208 0.4160 +9958 10213 0.7920 +9958 10454 0.4050 +9958 10465 0.5430 +9958 10616 0.4210 +9958 10617 0.5100 +9958 10868 0.4590 +9958 10869 0.5640 +9958 10980 0.4120 +9958 10987 0.7820 +9958 11059 0.4080 +9958 11060 0.6330 +9958 11222 0.4180 +9958 23032 0.5040 +9958 23063 0.6480 +9958 23118 0.5130 +9958 23327 0.7140 +9958 23521 0.5030 +9958 23586 0.6060 +9958 26121 0.7400 +9958 27005 0.4350 +9958 27338 0.8590 +9958 29110 0.5760 +9958 29761 0.6980 +9958 50813 0.6820 +9958 51021 0.5400 +9958 51081 0.4970 +9958 51127 0.4310 +9958 51377 0.8550 +9958 51533 0.4030 +9958 51633 0.4590 +9958 54726 0.4540 +9958 54764 0.4730 +9958 54925 0.4390 +9958 54941 0.4300 +9958 55432 0.5390 +9958 55486 0.4010 +9958 55593 0.5310 +9958 55611 0.7220 +9958 55669 0.4030 +9958 55693 0.4170 +9958 56254 0.5180 +9958 56257 0.6090 +9958 56957 0.6250 +9958 56992 0.5640 +9958 57154 0.7230 +9958 57559 0.4720 +9958 57599 0.4540 +9958 57646 0.7040 +9958 63931 0.4040 +9958 64170 0.5240 +9958 64708 0.4290 +9958 64750 0.9850 +9958 64852 0.6660 +9958 64965 0.4190 +9958 65003 0.4110 +9958 65018 0.4660 +9958 78990 0.4400 +9958 79102 0.7400 +9958 79158 0.4510 +9958 79184 0.4370 +9958 80124 0.4610 +9958 83737 0.4850 +9958 84282 0.4300 +9958 84447 0.4660 +9958 84749 0.5100 +9958 89122 0.4250 +9958 90268 0.4520 +9958 90313 0.4090 +9958 92552 0.4740 +9958 114803 0.6030 +9958 120892 0.4260 +9958 123228 0.5110 +9958 126119 0.5180 +9958 158880 0.4990 +9958 219927 0.4240 +9958 220213 0.4360 +9958 221302 0.7620 +9958 257397 0.4820 +9958 497189 0.5320 +9960 10213 0.4570 +9960 10474 0.7040 +9960 10537 0.4120 +9960 10629 0.4690 +9960 10987 0.4500 +9960 23326 0.5050 +9960 23512 0.6370 +9960 23586 0.7060 +9960 27097 0.4020 +9960 27443 0.4500 +9960 51320 0.4530 +9960 51377 0.4660 +9960 51616 0.6340 +9960 51633 0.4600 +9960 51720 0.5220 +9960 54726 0.4490 +9960 54941 0.4720 +9960 55593 0.5220 +9960 55611 0.6310 +9960 56254 0.4780 +9960 56943 0.6410 +9960 56957 0.4460 +9960 57414 0.4090 +9960 57599 0.4380 +9960 64135 0.6870 +9960 78990 0.5440 +9960 79184 0.6170 +9960 79845 0.4950 +9960 80124 0.5060 +9960 84282 0.5470 +9960 85235 0.5370 +9960 85236 0.5740 +9960 85364 0.4360 +9960 89122 0.5210 +9960 90268 0.6310 +9960 92815 0.5380 +9960 93624 0.6780 +9960 112869 0.6250 +9960 114803 0.6360 +9960 121227 0.4170 +9960 126119 0.4120 +9960 128312 0.5730 +9960 165918 0.6060 +9960 220213 0.4200 +9960 221302 0.6650 +9960 221613 0.5370 +9960 254225 0.4440 +9960 255626 0.5710 +9960 317772 0.5440 +9960 440689 0.5780 +9961 10492 0.4170 +9961 10694 0.4190 +9961 22948 0.4090 +9961 27161 0.4670 +9961 64326 0.6030 +9961 84875 0.4130 +9961 85376 0.5020 +9961 115908 0.4180 +9961 128866 0.4900 +9961 163255 0.4650 +9962 10570 0.6320 +9962 10606 0.4590 +9962 29988 0.4150 +9962 51026 0.7040 +9962 51167 0.4750 +9962 51700 0.4210 +9962 51706 0.4210 +9962 55010 0.4520 +9962 55278 0.4020 +9962 56896 0.6320 +9962 64374 0.4290 +9962 80312 0.4100 +9962 89894 0.6540 +9962 92106 0.4330 +9962 127845 0.7040 +9962 139596 0.5090 +9962 144195 0.4040 +9962 154091 0.4010 +9962 606495 0.4210 +9963 10570 0.6320 +9963 10606 0.4590 +9963 29988 0.4390 +9963 51026 0.7040 +9963 51167 0.4750 +9963 51700 0.4210 +9963 51706 0.4210 +9963 54716 0.4470 +9963 55065 0.4680 +9963 56896 0.6320 +9963 64374 0.4460 +9963 80736 0.4590 +9963 89894 0.6540 +9963 92106 0.4210 +9963 127845 0.7050 +9963 139596 0.4960 +9963 144195 0.4060 +9963 154091 0.4350 +9963 160728 0.4710 +9963 389434 0.4060 +9963 606495 0.4210 +9965 9971 0.9160 +9965 10817 0.4590 +9965 10818 0.7240 +9965 26281 0.7580 +9965 26291 0.4430 +9965 26579 0.4040 +9965 27006 0.5540 +9965 30849 0.4990 +9965 53834 0.4150 +9965 54106 0.5280 +9965 64240 0.4470 +9965 84706 0.4630 +9965 123264 0.7260 +9965 151306 0.7230 +9965 152831 0.9990 +9965 200931 0.8730 +9965 220064 0.9100 +9965 100423062 0.9000 +9966 10673 0.5990 +9966 11148 0.4680 +9966 23308 0.4410 +9966 23765 0.5960 +9966 27242 0.7660 +9966 50616 0.4480 +9966 54756 0.4600 +9966 55054 0.6810 +9966 57213 0.4890 +9966 64127 0.7700 +9966 64170 0.4300 +9966 90865 0.4460 +9966 112744 0.4520 +9966 126259 0.4190 +9966 132014 0.4520 +9966 144811 0.7280 +9966 149233 0.6330 +9966 159296 0.4050 +9966 160857 0.7790 +9966 339145 0.4220 +9966 345611 0.5270 +9966 400935 0.5050 +9967 9968 0.9240 +9967 9969 0.9090 +9967 9987 0.5070 +9967 10001 0.9100 +9967 10025 0.9480 +9967 10250 0.7060 +9967 10291 0.6020 +9967 10432 0.4500 +9967 10482 0.5300 +9967 10521 0.5700 +9967 10657 0.4630 +9967 10915 0.5340 +9967 10921 0.6450 +9967 10929 0.4840 +9967 10992 0.5430 +9967 11052 0.4740 +9967 11100 0.4150 +9967 11168 0.4660 +9967 11325 0.4150 +9967 11338 0.6640 +9967 22794 0.4600 +9967 22803 0.4080 +9967 22827 0.6040 +9967 22916 0.6560 +9967 22938 0.6030 +9967 22985 0.6060 +9967 23020 0.4630 +9967 23042 0.4140 +9967 23091 0.7550 +9967 23097 0.5410 +9967 23215 0.4350 +9967 23350 0.5290 +9967 23389 0.5920 +9967 23405 0.4180 +9967 23451 0.5250 +9967 23506 0.5050 +9967 23524 0.4860 +9967 23609 0.4970 +9967 24148 0.4690 +9967 25957 0.4370 +9967 25962 0.6950 +9967 27316 0.4990 +9967 29079 0.9110 +9967 29896 0.7020 +9967 50809 0.4690 +9967 51003 0.5410 +9967 51129 0.5490 +9967 51319 0.4460 +9967 51329 0.4430 +9967 51493 0.4160 +9967 51586 0.5340 +9967 51631 0.6460 +9967 51747 0.4320 +9967 54797 0.9020 +9967 54870 0.4200 +9967 55090 0.5400 +9967 55421 0.4080 +9967 55588 0.9000 +9967 55660 0.5500 +9967 55700 0.5640 +9967 57187 0.5230 +9967 57721 0.4250 +9967 58517 0.4240 +9967 64062 0.4420 +9967 64783 0.6710 +9967 65109 0.4050 +9967 79753 0.8010 +9967 79872 0.7190 +9967 79882 0.4900 +9967 80306 0.5600 +9967 81857 0.6050 +9967 84246 0.5400 +9967 90390 0.9070 +9967 112950 0.9100 +9967 116931 0.5650 +9967 124245 0.5350 +9967 133522 0.9000 +9967 140890 0.5410 +9967 168850 0.4350 +9967 246243 0.4950 +9967 256643 0.6020 +9967 284695 0.4320 +9967 400569 0.9020 +9968 9969 0.9990 +9968 10001 0.9990 +9968 10025 0.9990 +9968 10075 0.5000 +9968 10498 0.4740 +9968 10499 0.6430 +9968 10524 0.6310 +9968 10664 0.5510 +9968 10847 0.5390 +9968 10891 0.6520 +9968 10919 0.9250 +9968 22976 0.5880 +9968 23091 0.9940 +9968 23097 0.9990 +9968 23186 0.9950 +9968 23210 0.5620 +9968 23389 0.9990 +9968 23476 0.7210 +9968 23522 0.4120 +9968 25836 0.7460 +9968 29072 0.5210 +9968 29079 0.9990 +9968 30812 0.4300 +9968 51003 0.9990 +9968 51129 0.4990 +9968 51481 0.4460 +9968 51586 0.9990 +9968 54797 0.9990 +9968 55090 0.9820 +9968 55294 0.6780 +9968 55588 0.9990 +9968 57492 0.5800 +9968 57634 0.4790 +9968 57680 0.4390 +9968 58508 0.5780 +9968 64324 0.4070 +9968 65109 0.4160 +9968 79923 0.5000 +9968 79991 0.9940 +9968 80306 0.9990 +9968 81857 0.9990 +9968 83440 0.4320 +9968 84246 0.9990 +9968 84295 0.4360 +9968 84498 0.5440 +9968 84955 0.6240 +9968 85441 0.5290 +9968 90390 0.9990 +9968 93624 0.5900 +9968 112950 0.9990 +9968 116448 0.4340 +9968 116931 0.6960 +9968 133522 0.9000 +9968 142678 0.5390 +9968 171023 0.4010 +9968 221823 0.4260 +9968 254065 0.4020 +9968 256643 0.5590 +9968 400569 0.9990 +9969 9970 0.7230 +9969 10001 0.9920 +9969 10025 0.9950 +9969 10499 0.6040 +9969 10513 0.5070 +9969 10725 0.4190 +9969 10891 0.5830 +9969 10985 0.4840 +9969 22828 0.4770 +9969 23091 0.9940 +9969 23097 0.9990 +9969 23389 0.9730 +9969 23469 0.5160 +9969 23476 0.5270 +9969 25836 0.5120 +9969 25962 0.4050 +9969 27125 0.7310 +9969 29079 0.9940 +9969 51003 0.9730 +9969 51129 0.4990 +9969 51366 0.4900 +9969 51586 0.9910 +9969 51755 0.4380 +9969 54542 0.5010 +9969 54797 0.9990 +9969 54891 0.5330 +9969 55090 0.9830 +9969 55206 0.4690 +9969 55294 0.7960 +9969 55553 0.4190 +9969 55588 0.9960 +9969 55870 0.4640 +9969 56886 0.4170 +9969 57148 0.4060 +9969 57508 0.7600 +9969 57532 0.5060 +9969 57695 0.4120 +9969 79991 0.9940 +9969 80124 0.4860 +9969 80232 0.5060 +9969 80306 0.9990 +9969 81857 0.9160 +9969 84246 0.9940 +9969 84498 0.4990 +9969 84669 0.4380 +9969 84955 0.6220 +9969 85441 0.4990 +9969 90390 0.9910 +9969 112950 0.9880 +9969 116931 0.9960 +9969 133522 0.9180 +9969 149041 0.5170 +9969 157769 0.4980 +9969 197131 0.4070 +9969 254048 0.4750 +9969 256643 0.5430 +9969 400569 0.9840 +9970 10257 0.4680 +9970 10403 0.5640 +9970 10499 0.9110 +9970 10587 0.4680 +9970 10599 0.6350 +9970 10720 0.4160 +9970 10864 0.4990 +9970 10891 0.6280 +9970 27284 0.4160 +9970 27306 0.4050 +9970 28234 0.4900 +9970 29079 0.6700 +9970 51081 0.4470 +9970 51302 0.4070 +9970 54490 0.4260 +9970 54575 0.6690 +9970 54576 0.6730 +9970 54577 0.6680 +9970 54578 0.6890 +9970 54579 0.4340 +9970 54600 0.4850 +9970 54657 0.6850 +9970 54658 0.6910 +9970 54659 0.4720 +9970 64240 0.4640 +9970 64816 0.5240 +9970 79799 0.4480 +9970 80205 0.6140 +9970 120227 0.6390 +9970 135152 0.5470 +9970 151306 0.5860 +9970 200931 0.5350 +9970 340273 0.5550 +9970 574537 0.4250 +9970 100861540 0.7560 +9971 9975 0.6140 +9971 10062 0.4260 +9971 10221 0.4140 +9971 10257 0.7050 +9971 10498 0.5710 +9971 10499 0.9810 +9971 10599 0.6370 +9971 10864 0.4360 +9971 10891 0.9830 +9971 10998 0.5170 +9971 11188 0.6310 +9971 23054 0.4720 +9971 23411 0.6700 +9971 23576 0.4050 +9971 26281 0.5310 +9971 26291 0.6030 +9971 26999 0.4240 +9971 27006 0.5340 +9971 27044 0.4180 +9971 27161 0.5060 +9971 28231 0.4400 +9971 28234 0.5430 +9971 28999 0.5330 +9971 29116 0.6130 +9971 29881 0.5840 +9971 29974 0.4020 +9971 51085 0.7270 +9971 51302 0.8080 +9971 53345 0.5140 +9971 53919 0.4460 +9971 54575 0.4980 +9971 54576 0.5270 +9971 54577 0.4770 +9971 54578 0.5410 +9971 54657 0.5360 +9971 54658 0.5400 +9971 57818 0.4950 +9971 64240 0.8760 +9971 64241 0.8580 +9971 64902 0.4270 +9971 79071 0.4680 +9971 79799 0.4730 +9971 80270 0.4540 +9971 80339 0.5260 +9971 80854 0.4120 +9971 84649 0.4470 +9971 84699 0.5130 +9971 92579 0.4760 +9971 116519 0.5210 +9971 123264 0.8080 +9971 139760 0.4090 +9971 151306 0.9910 +9971 152831 0.7400 +9971 200931 0.8250 +9971 255738 0.4050 +9971 338442 0.4330 +9971 340273 0.4510 +9971 340895 0.4470 +9972 9984 0.4910 +9972 10073 0.4850 +9972 10189 0.7080 +9972 10204 0.9540 +9972 10250 0.5440 +9972 10274 0.6230 +9972 10482 0.9890 +9972 10526 0.6130 +9972 10527 0.8330 +9972 10569 0.4150 +9972 10762 0.9990 +9972 10783 0.4570 +9972 10898 0.4460 +9972 10921 0.5290 +9972 10943 0.5090 +9972 11052 0.8690 +9972 11097 0.9160 +9972 11100 0.6640 +9972 11168 0.7200 +9972 11218 0.5700 +9972 11260 0.6810 +9972 11338 0.4840 +9972 22794 0.5430 +9972 22824 0.4510 +9972 22828 0.4320 +9972 22916 0.8560 +9972 23039 0.4010 +9972 23165 0.9950 +9972 23225 0.9730 +9972 23279 0.9960 +9972 23299 0.4350 +9972 23353 0.9260 +9972 23405 0.7250 +9972 23476 0.5870 +9972 23511 0.9680 +9972 23534 0.8740 +9972 23560 0.4120 +9972 23592 0.4920 +9972 23633 0.7710 +9972 23636 0.9960 +9972 25777 0.5930 +9972 25909 0.9770 +9972 25929 0.5310 +9972 26097 0.4570 +9972 26227 0.6790 +9972 27161 0.5670 +9972 29107 0.8890 +9972 29843 0.5300 +9972 29894 0.4080 +9972 29901 0.5420 +9972 30000 0.8520 +9972 50628 0.4450 +9972 51182 0.4880 +9972 51362 0.4100 +9972 51501 0.4980 +9972 51574 0.5530 +9972 51602 0.4150 +9972 51692 0.4320 +9972 51808 0.4810 +9972 53371 0.9830 +9972 53981 0.4500 +9972 54726 0.5320 +9972 54830 0.5960 +9972 54867 0.5260 +9972 54960 0.5240 +9972 55110 0.5470 +9972 55143 0.5490 +9972 55161 0.4480 +9972 55339 0.4860 +9972 55374 0.5360 +9972 55627 0.5080 +9972 55706 0.9400 +9972 55720 0.5540 +9972 55746 0.9980 +9972 55795 0.9390 +9972 55916 0.6930 +9972 56000 0.8210 +9972 56001 0.7870 +9972 56943 0.9830 +9972 57122 0.9990 +9972 57187 0.5920 +9972 57418 0.4030 +9972 57510 0.9070 +9972 57727 0.4880 +9972 59343 0.9810 +9972 63971 0.5650 +9972 64328 0.4110 +9972 65109 0.5100 +9972 79023 0.9360 +9972 79228 0.6360 +9972 79760 0.4560 +9972 79833 0.4130 +9972 79902 0.9930 +9972 80145 0.4720 +9972 81608 0.5490 +9972 81929 0.9810 +9972 84248 0.4960 +9972 84271 0.6000 +9972 84321 0.4700 +9972 84324 0.4820 +9972 84661 0.4410 +9972 84823 0.6060 +9972 84928 0.6030 +9972 85363 0.6880 +9972 87178 0.6140 +9972 91754 0.4970 +9972 116835 0.4330 +9972 120892 0.5120 +9972 129401 0.9950 +9972 137362 0.4310 +9972 140609 0.4160 +9972 140836 0.4330 +9972 157313 0.7090 +9972 171023 0.4190 +9972 259217 0.4330 +9972 266743 0.4490 +9972 283383 0.4850 +9972 284058 0.5040 +9972 285672 0.5960 +9972 348995 0.9820 +9972 389170 0.4260 +9972 402569 0.5870 +9972 727851 0.5100 +9972 728343 0.9450 +9972 728741 0.4220 +9972 729857 0.9820 +9972 729920 0.4800 +9972 100101267 0.8380 +9973 9997 0.5940 +9973 10063 0.8160 +9973 10463 0.5600 +9973 10587 0.5650 +9973 10935 0.5880 +9973 22920 0.4240 +9973 22934 0.4250 +9973 23479 0.4110 +9973 23621 0.5580 +9973 25828 0.4480 +9973 25897 0.5110 +9973 27035 0.4120 +9973 27068 0.4630 +9973 51022 0.4530 +9973 53938 0.5010 +9973 54987 0.6670 +9973 55002 0.4080 +9973 81570 0.4110 +9973 90639 0.4420 +9973 114112 0.4800 +9973 114757 0.4460 +9973 131474 0.5910 +9973 150684 0.4790 +9973 257202 0.5880 +9973 493869 0.5680 +9973 100130890 0.4630 +9973 100131187 0.4870 +9975 10062 0.6080 +9975 10499 0.5340 +9975 26224 0.6630 +9975 56938 0.6860 +9975 79365 0.9200 +9975 84196 0.6040 +9975 85291 0.4950 +9975 85457 0.5150 +9975 148523 0.6510 +9975 386676 0.4240 +9975 102800317 0.5390 +9976 10143 0.5120 +9976 10666 0.4530 +9976 22914 0.5500 +9976 23586 0.4470 +9976 51348 0.9960 +9976 54106 0.4870 +9976 114836 0.8020 +9976 259197 0.6350 +9976 374383 0.4480 +9976 100431172 0.7440 +9978 10016 0.7370 +9978 10038 0.5280 +9978 10046 0.4990 +9978 10054 0.4040 +9978 10072 0.6330 +9978 10116 0.9720 +9978 10190 0.4030 +9978 10197 0.6200 +9978 10213 0.8320 +9978 10238 0.9180 +9978 10284 0.4030 +9978 10320 0.5360 +9978 10324 0.9600 +9978 10401 0.5150 +9978 10444 0.9470 +9978 10445 0.4490 +9978 10477 0.6210 +9978 10489 0.7550 +9978 10513 0.9040 +9978 10517 0.7480 +9978 10607 0.6650 +9978 10626 0.5730 +9978 10714 0.5740 +9978 10847 0.6120 +9978 10910 0.4320 +9978 10920 0.9820 +9978 10980 0.9690 +9978 10987 0.9830 +9978 11065 0.5110 +9978 11073 0.4540 +9978 11091 0.5900 +9978 11146 0.9990 +9978 11169 0.8150 +9978 11200 0.5170 +9978 11275 0.7950 +9978 22806 0.6220 +9978 22873 0.4320 +9978 22938 0.5850 +9978 23008 0.9130 +9978 23014 0.8040 +9978 23038 0.6740 +9978 23053 0.9200 +9978 23066 0.5940 +9978 23077 0.5040 +9978 23113 0.9950 +9978 23142 0.7130 +9978 23194 0.9040 +9978 23198 0.5180 +9978 23276 0.4610 +9978 23291 0.9950 +9978 23327 0.4020 +9978 23363 0.7070 +9978 23412 0.5600 +9978 23462 0.6260 +9978 23476 0.5470 +9978 23510 0.7280 +9978 23532 0.9700 +9978 23567 0.5720 +9978 23588 0.9470 +9978 25793 0.9650 +9978 25820 0.9840 +9978 25827 0.5850 +9978 25828 0.4070 +9978 25853 0.9190 +9978 25879 0.9650 +9978 25939 0.5250 +9978 25998 0.4010 +9978 26043 0.8840 +9978 26094 0.9530 +9978 26118 0.8080 +9978 26133 0.9350 +9978 26190 0.8980 +9978 26224 0.6510 +9978 26227 0.5670 +9978 26232 0.8530 +9978 26233 0.5000 +9978 26234 0.8800 +9978 26235 0.5820 +9978 26249 0.9680 +9978 26259 0.9990 +9978 26260 0.6930 +9978 26263 0.7780 +9978 26267 0.4830 +9978 26268 0.6240 +9978 26270 0.8520 +9978 26271 0.9400 +9978 26272 0.6980 +9978 26273 0.8220 +9978 27244 0.8600 +9978 27252 0.9860 +9978 27338 0.8440 +9978 27350 0.4950 +9978 28952 0.5140 +9978 28991 0.5260 +9978 29089 0.4560 +9978 29099 0.5570 +9978 29844 0.4360 +9978 50717 0.9480 +9978 50813 0.8570 +9978 51035 0.4380 +9978 51088 0.5070 +9978 51122 0.5180 +9978 51138 0.9930 +9978 51185 0.9990 +9978 51224 0.5320 +9978 51371 0.5330 +9978 51372 0.4470 +9978 51397 0.5510 +9978 51438 0.8590 +9978 51465 0.4230 +9978 51514 0.9950 +9978 51529 0.9150 +9978 51530 0.8890 +9978 51619 0.8990 +9978 51639 0.4030 +9978 51650 0.6560 +9978 51659 0.8020 +9978 51666 0.9140 +9978 51684 0.5040 +9978 51725 0.5140 +9978 53339 0.6830 +9978 54107 0.6050 +9978 54165 0.9980 +9978 54442 0.7270 +9978 54455 0.8040 +9978 54461 0.9860 +9978 54583 0.6710 +9978 54617 0.4580 +9978 54623 0.8010 +9978 54778 0.6600 +9978 54800 0.8760 +9978 54850 0.7820 +9978 54876 0.9130 +9978 54926 0.9870 +9978 54939 0.5210 +9978 54951 0.5770 +9978 54962 0.8100 +9978 55070 0.9990 +9978 55175 0.6290 +9978 55208 0.7770 +9978 55234 0.4720 +9978 55236 0.4990 +9978 55294 0.9990 +9978 55336 0.6230 +9978 55388 0.4220 +9978 55527 0.9170 +9978 55534 0.5540 +9978 55626 0.9650 +9978 55643 0.5550 +9978 55666 0.6370 +9978 55827 0.9200 +9978 55832 0.9990 +9978 55958 0.9740 +9978 55975 0.9380 +9978 56655 0.6130 +9978 56852 0.6700 +9978 56929 0.9190 +9978 56949 0.5180 +9978 57448 0.4110 +9978 57492 0.5930 +9978 57542 0.9520 +9978 57563 0.9240 +9978 57599 0.5970 +9978 57634 0.4890 +9978 57643 0.5400 +9978 57654 0.8850 +9978 57688 0.5400 +9978 57804 0.5150 +9978 59286 0.4770 +9978 59349 0.9380 +9978 60489 0.4920 +9978 63967 0.8440 +9978 64221 0.5070 +9978 64326 0.9870 +9978 64344 0.6550 +9978 64410 0.9160 +9978 64708 0.9400 +9978 64785 0.8120 +9978 64839 0.8970 +9978 65249 0.5400 +9978 79016 0.9620 +9978 79269 0.9090 +9978 79577 0.8040 +9978 79594 0.4520 +9978 79661 0.4750 +9978 79699 0.9680 +9978 79728 0.5470 +9978 79734 0.9790 +9978 79791 0.8530 +9978 79913 0.4210 +9978 80028 0.9560 +9978 80067 0.9110 +9978 80204 0.8720 +9978 80311 0.6420 +9978 80344 0.9780 +9978 80349 0.8150 +9978 80829 0.4250 +9978 81545 0.5520 +9978 81620 0.7670 +9978 81631 0.5990 +9978 81689 0.6510 +9978 81853 0.4030 +9978 83444 0.4280 +9978 83667 0.9830 +9978 83737 0.4980 +9978 83892 0.9580 +9978 83987 0.6410 +9978 84078 0.9410 +9978 84085 0.4710 +9978 84231 0.5070 +9978 84246 0.4280 +9978 84259 0.8400 +9978 84260 0.7160 +9978 84261 0.8340 +9978 84296 0.8500 +9978 84441 0.5540 +9978 84541 0.9210 +9978 84678 0.7650 +9978 84844 0.4330 +9978 84861 0.9550 +9978 84893 0.9180 +9978 84961 0.4830 +9978 84962 0.5040 +9978 89890 0.9400 +9978 90135 0.4790 +9978 90293 0.9690 +9978 90379 0.9570 +9978 93611 0.7690 +9978 93973 0.4440 +9978 112399 0.6400 +9978 112483 0.5770 +9978 112950 0.8210 +9978 114781 0.4300 +9978 114907 0.7800 +9978 115290 0.7970 +9978 116138 0.9610 +9978 122416 0.9070 +9978 122706 0.5190 +9978 122769 0.9900 +9978 122773 0.9110 +9978 122961 0.4780 +9978 123169 0.8110 +9978 123228 0.5070 +9978 123879 0.9020 +9978 125476 0.4280 +9978 126374 0.5230 +9978 126433 0.7630 +9978 131377 0.7730 +9978 133482 0.6570 +9978 138009 0.5580 +9978 139170 0.5760 +9978 139285 0.5700 +9978 139425 0.5740 +9978 140459 0.5260 +9978 140739 0.8860 +9978 143384 0.6900 +9978 143471 0.5580 +9978 144699 0.8200 +9978 146330 0.6070 +9978 149951 0.5130 +9978 150684 0.9300 +9978 154881 0.4160 +9978 157567 0.4560 +9978 157574 0.4340 +9978 170622 0.5560 +9978 171222 0.8620 +9978 192111 0.5980 +9978 200316 0.5950 +9978 200845 0.4750 +9978 200933 0.6060 +9978 201456 0.4760 +9978 221302 0.4430 +9978 222235 0.6560 +9978 252969 0.6250 +9978 253260 0.8960 +9978 253980 0.9100 +9978 283807 0.5850 +9978 283899 0.4330 +9978 285231 0.4740 +9978 285429 0.5880 +9978 286151 0.9200 +9978 339745 0.9470 +9978 340578 0.5680 +9978 347442 0.5740 +9978 349136 0.5530 +9978 374286 0.5530 +9978 387893 0.4930 +9978 390594 0.5230 +9978 391104 0.4440 +9978 404672 0.7430 +9978 440498 0.5280 +9978 440561 0.9030 +9978 440590 0.6990 +9978 553115 0.7460 +9978 613227 0.4250 +9978 653619 0.9030 +9980 10079 0.4780 +9980 23041 0.9360 +9980 23275 0.4480 +9980 23515 0.4130 +9980 26173 0.4100 +9980 54733 0.6450 +9980 59271 0.4710 +9980 64478 0.5300 +9980 64968 0.5170 +9980 80148 0.4470 +9980 83943 0.5570 +9980 89832 0.5100 +9980 94104 0.4630 +9980 219793 0.4180 +9980 343069 0.4770 +9980 374868 0.4800 +9982 10232 0.4270 +9982 10321 0.4410 +9982 26281 0.9450 +9982 27006 0.9880 +9982 147841 0.4010 +9982 391123 0.4060 +9984 10179 0.4650 +9984 10189 0.9990 +9984 10212 0.9370 +9984 10250 0.5750 +9984 10482 0.7640 +9984 10762 0.4210 +9984 10921 0.6450 +9984 10978 0.5120 +9984 10992 0.6970 +9984 11051 0.5720 +9984 11052 0.7080 +9984 11066 0.4110 +9984 11097 0.4160 +9984 22794 0.5040 +9984 22916 0.7540 +9984 22938 0.4570 +9984 23016 0.4120 +9984 23091 0.7230 +9984 23165 0.4590 +9984 23225 0.4050 +9984 23279 0.5140 +9984 23398 0.6540 +9984 23451 0.6690 +9984 23511 0.4110 +9984 23636 0.4750 +9984 25942 0.7290 +9984 26097 0.9880 +9984 27098 0.5070 +9984 29107 0.5760 +9984 29115 0.7450 +9984 29945 0.4770 +9984 51213 0.7190 +9984 51585 0.7160 +9984 51593 0.6120 +9984 51808 0.4360 +9984 53371 0.6660 +9984 54439 0.4140 +9984 55110 0.7000 +9984 55421 0.8630 +9984 55556 0.5490 +9984 55596 0.4990 +9984 55696 0.4800 +9984 55706 0.4130 +9984 55746 0.5690 +9984 55795 0.4370 +9984 55854 0.6200 +9984 56943 0.5340 +9984 57122 0.5550 +9984 57187 0.9990 +9984 60560 0.4290 +9984 64112 0.7830 +9984 64328 0.6940 +9984 65109 0.5820 +9984 79009 0.4980 +9984 79023 0.4260 +9984 79084 0.5160 +9984 79228 0.9990 +9984 79611 0.4060 +9984 79869 0.5560 +9984 79882 0.6800 +9984 79902 0.4380 +9984 80145 0.9990 +9984 81035 0.5130 +9984 81608 0.4710 +9984 81929 0.4440 +9984 84128 0.4210 +9984 84248 0.9250 +9984 84271 0.9020 +9984 84298 0.4520 +9984 84321 0.9990 +9984 84324 0.9950 +9984 85019 0.4190 +9984 91768 0.4380 +9984 118924 0.5020 +9984 126526 0.5200 +9984 129401 0.4940 +9984 155435 0.4900 +9984 171586 0.4400 +9984 246243 0.4680 +9984 348995 0.4160 +9984 642597 0.4310 +9984 731220 0.4380 +9984 100101267 0.4240 +9985 10051 0.6980 +9985 10274 0.9940 +9985 10388 0.7900 +9985 10592 0.6070 +9985 10733 0.5000 +9985 10734 0.9990 +9985 10735 0.9930 +9985 10744 0.5900 +9985 10769 0.5500 +9985 10776 0.5140 +9985 10815 0.4920 +9985 10926 0.5430 +9985 11083 0.5170 +9985 11144 0.6070 +9985 11169 0.4750 +9985 23047 0.8850 +9985 23063 0.8100 +9985 23137 0.7820 +9985 23224 0.5080 +9985 23244 0.9720 +9985 23345 0.5040 +9985 23353 0.6590 +9985 23383 0.7080 +9985 23626 0.9240 +9985 25777 0.5480 +9985 25836 0.9560 +9985 25913 0.4990 +9985 26277 0.6400 +9985 27030 0.5050 +9985 27127 0.9990 +9985 27173 0.6410 +9985 29893 0.4110 +9985 29922 0.4750 +9985 50511 0.9360 +9985 54145 0.6000 +9985 54386 0.5160 +9985 54514 0.4510 +9985 54937 0.4670 +9985 55671 0.4710 +9985 55766 0.5400 +9985 55844 0.5090 +9985 56158 0.7830 +9985 56159 0.5320 +9985 56949 0.4200 +9985 56979 0.6520 +9985 57082 0.4180 +9985 57461 0.4200 +9985 57536 0.4260 +9985 57697 0.5270 +9985 63922 0.4180 +9985 66005 0.4840 +9985 79677 0.7610 +9985 80152 0.4050 +9985 80198 0.5830 +9985 80349 0.5160 +9985 83666 0.4120 +9985 84057 0.7430 +9985 84072 0.8520 +9985 84515 0.4660 +9985 84690 0.4190 +9985 84930 0.5840 +9985 85236 0.5950 +9985 91754 0.4520 +9985 93426 0.8610 +9985 94239 0.5410 +9985 113130 0.6820 +9985 114799 0.6880 +9985 117144 0.4230 +9985 124783 0.4600 +9985 126520 0.4820 +9985 128312 0.6000 +9985 128822 0.4650 +9985 133015 0.4130 +9985 135138 0.4130 +9985 135935 0.5050 +9985 140685 0.4010 +9985 150280 0.8020 +9985 150365 0.5310 +9985 151246 0.9790 +9985 151648 0.9180 +9985 151651 0.4170 +9985 157570 0.6440 +9985 157777 0.4970 +9985 158401 0.5740 +9985 164045 0.7120 +9985 197335 0.5570 +9985 219670 0.4990 +9985 254394 0.4170 +9985 254528 0.5560 +9985 255626 0.6090 +9985 256006 0.4110 +9985 256126 0.8060 +9985 283677 0.6720 +9985 283847 0.4630 +9985 285498 0.7340 +9985 317761 0.4070 +9985 339345 0.4760 +9985 339834 0.4960 +9985 344018 0.4960 +9985 346673 0.7920 +9985 388553 0.4060 +9985 402381 0.5450 +9985 431707 0.4040 +9985 474382 0.5400 +9985 494551 0.5090 +9985 642636 0.9740 +9985 643803 0.4250 +9985 644186 0.7580 +9985 728637 0.6960 +9985 100507650 0.5860 +9985 100526761 0.4250 +9985 101928601 0.5910 +9986 10269 0.9920 +9986 10434 0.4210 +9986 23345 0.5850 +9986 23353 0.6880 +9986 23463 0.9980 +9986 25777 0.6580 +9986 51125 0.4750 +9986 51360 0.4260 +9986 51449 0.4070 +9986 57511 0.5400 +9986 79947 0.4940 +9986 115209 0.5740 +9986 151651 0.4180 +9986 377630 0.8620 +9986 392188 0.5870 +9986 401447 0.5370 +9986 645402 0.5830 +9986 645836 0.5880 +9986 728373 0.7920 +9986 728386 0.5370 +9986 100287144 0.5370 +9986 100287178 0.5820 +9986 100287205 0.5370 +9986 100287238 0.5370 +9986 100287327 0.5370 +9986 100287364 0.5370 +9986 100287404 0.5370 +9986 100287441 0.6050 +9986 100287478 0.5370 +9986 100287513 0.5750 +9986 100529261 0.6650 +9987 9991 0.5320 +9987 10128 0.4960 +9987 10146 0.5270 +9987 10150 0.4700 +9987 10155 0.6350 +9987 10181 0.4510 +9987 10189 0.6960 +9987 10196 0.6460 +9987 10236 0.5820 +9987 10250 0.4960 +9987 10291 0.5590 +9987 10399 0.4570 +9987 10419 0.4250 +9987 10432 0.5840 +9987 10482 0.7330 +9987 10492 0.5890 +9987 10521 0.7030 +9987 10536 0.5350 +9987 10569 0.4180 +9987 10594 0.4970 +9987 10605 0.5840 +9987 10614 0.5360 +9987 10642 0.6060 +9987 10657 0.7760 +9987 10658 0.4880 +9987 10772 0.5940 +9987 10914 0.4480 +9987 10915 0.4490 +9987 10921 0.4730 +9987 10929 0.6220 +9987 10933 0.5420 +9987 10946 0.4610 +9987 10949 0.6190 +9987 10992 0.5190 +9987 11052 0.5160 +9987 11100 0.6890 +9987 11168 0.5210 +9987 11338 0.7540 +9987 11339 0.4240 +9987 11340 0.4650 +9987 22913 0.4920 +9987 22916 0.4820 +9987 22938 0.4360 +9987 23020 0.4960 +9987 23091 0.5250 +9987 23283 0.4430 +9987 23293 0.4090 +9987 23405 0.4630 +9987 23435 0.8800 +9987 23450 0.4080 +9987 23451 0.5760 +9987 23476 0.5350 +9987 23543 0.6860 +9987 23609 0.4350 +9987 23644 0.4270 +9987 25940 0.5850 +9987 25949 0.4720 +9987 25957 0.5330 +9987 25962 0.4860 +9987 26065 0.4550 +9987 26284 0.6930 +9987 26747 0.4010 +9987 26986 0.6700 +9987 27161 0.4700 +9987 27288 0.4420 +9987 27316 0.8300 +9987 27339 0.4570 +9987 27349 0.6290 +9987 29102 0.5020 +9987 29894 0.4060 +9987 29896 0.4690 +9987 51001 0.5940 +9987 51067 0.4480 +9987 51335 0.4400 +9987 51340 0.4140 +9987 51441 0.7010 +9987 51574 0.5360 +9987 51585 0.4200 +9987 51637 0.4380 +9987 51691 0.5700 +9987 51747 0.6010 +9987 54039 0.4300 +9987 54464 0.4190 +9987 54487 0.7610 +9987 54606 0.5290 +9987 54715 0.5440 +9987 54845 0.4020 +9987 54890 0.5110 +9987 54915 0.5430 +9987 55082 0.4090 +9987 55110 0.6280 +9987 55225 0.7300 +9987 55602 0.6520 +9987 55660 0.4900 +9987 55692 0.4010 +9987 55796 0.4520 +9987 55802 0.5000 +9987 56257 0.4980 +9987 56339 0.5500 +9987 56949 0.5030 +9987 57060 0.4900 +9987 57107 0.5100 +9987 57187 0.4300 +9987 57532 0.4260 +9987 57721 0.6280 +9987 58155 0.7890 +9987 58517 0.5880 +9987 64848 0.5800 +9987 79066 0.5150 +9987 79068 0.4610 +9987 79084 0.4420 +9987 80004 0.4910 +9987 85437 0.4510 +9987 91746 0.6650 +9987 92906 0.5360 +9987 124801 0.6380 +9987 129831 0.6950 +9987 140890 0.4020 +9987 170506 0.4030 +9987 203228 0.4610 +9987 220988 0.5290 +9987 253943 0.6450 +9987 283742 0.6240 +9988 25957 0.4810 +9988 55156 0.4430 +9988 79161 0.6190 +9988 81669 0.6860 +9988 84317 0.4190 +9988 154661 0.5730 +9989 10928 0.4950 +9989 11040 0.6490 +9989 22870 0.4920 +9989 23242 0.6380 +9989 23368 0.4230 +9989 27185 0.4220 +9989 28227 0.7730 +9989 51451 0.4950 +9989 54455 0.5700 +9989 55671 0.8990 +9989 55844 0.8010 +9989 57223 0.8010 +9989 57718 0.7940 +9989 64599 0.4730 +9989 81565 0.5180 +9989 85407 0.7240 +9989 90665 0.4220 +9989 134510 0.4870 +9989 139420 0.5980 +9989 151987 0.9920 +9989 339291 0.4520 +9990 10861 0.4550 +9990 27347 0.9200 +9990 51324 0.4410 +9990 57468 0.4480 +9990 65125 0.6530 +9990 65266 0.5450 +9990 65267 0.6680 +9990 65268 0.4760 +9990 80031 0.5470 +9990 80208 0.7070 +9990 84146 0.4120 +9990 114991 0.5720 +9990 125958 0.4050 +9990 654346 0.7030 +9991 10092 0.4810 +9991 10147 0.4730 +9991 10250 0.4610 +9991 10575 0.6250 +9991 10658 0.7790 +9991 10659 0.4520 +9991 11100 0.4120 +9991 22913 0.5310 +9991 23196 0.4770 +9991 23327 0.7210 +9991 23369 0.4440 +9991 23435 0.4300 +9991 23543 0.4810 +9991 25828 0.5590 +9991 26019 0.4070 +9991 26528 0.4420 +9991 27161 0.5050 +9991 29978 0.4440 +9991 55225 0.5920 +9991 55553 0.4300 +9991 92906 0.4180 +9991 112464 0.5640 +9991 112479 0.4050 +9991 115908 0.5880 +9991 128239 0.5940 +9992 10008 0.9650 +9992 10021 0.8120 +9992 10060 0.5350 +9992 10142 0.9320 +9992 10265 0.5400 +9992 10345 0.5700 +9992 23171 0.7790 +9992 23630 0.7910 +9992 23704 0.8860 +9992 26136 0.5080 +9992 30819 0.6120 +9992 51422 0.4160 +9992 51555 0.6700 +9992 54102 0.4610 +9992 55800 0.7600 +9992 56479 0.4600 +9992 57158 0.4310 +9992 57835 0.4190 +9992 64968 0.5070 +9992 79188 0.4360 +9992 79192 0.4800 +9992 160622 0.5740 +9992 221692 0.4470 +9993 10444 0.4680 +9993 11060 0.5470 +9993 22937 0.4430 +9993 23759 0.4750 +9993 27037 0.6270 +9993 27339 0.4200 +9993 29801 0.7690 +9993 51340 0.4410 +9993 51586 0.5830 +9993 54487 0.4370 +9993 54584 0.7170 +9993 54934 0.4380 +9993 56949 0.4190 +9993 58510 0.5370 +9993 64976 0.6080 +9993 65078 0.4490 +9993 79065 0.4570 +9993 84164 0.5320 +9993 84861 0.4180 +9993 85359 0.8390 +9993 91179 0.4020 +9993 91603 0.4600 +9993 119749 0.4470 +9993 128989 0.5320 +9993 150248 0.4020 +9994 11235 0.4330 +9994 22955 0.4060 +9994 23244 0.4230 +9994 29028 0.4470 +9994 51588 0.4170 +9994 51659 0.4280 +9994 51692 0.8160 +9994 55148 0.4570 +9994 57332 0.4050 +9994 79075 0.4540 +9994 79968 0.5110 +9994 84694 0.5960 +9994 84733 0.4140 +9994 84967 0.4340 +9994 134353 0.9430 +9994 283431 0.4790 +9994 343263 0.4220 +9997 10063 0.9800 +9997 10075 0.4570 +9997 10084 0.4280 +9997 10128 0.6860 +9997 10247 0.5920 +9997 10469 0.5520 +9997 22868 0.5450 +9997 23155 0.5100 +9997 23474 0.4510 +9997 23774 0.5000 +9997 25828 0.4340 +9997 26519 0.4260 +9997 27154 0.4200 +9997 27165 0.6520 +9997 28958 0.4940 +9997 28976 0.4080 +9997 50484 0.6100 +9997 51119 0.4400 +9997 51204 0.7800 +9997 51241 0.5230 +9997 51314 0.4130 +9997 51592 0.4210 +9997 54205 0.8340 +9997 54968 0.4620 +9997 55214 0.6100 +9997 55572 0.5070 +9997 57017 0.4710 +9997 57019 0.4140 +9997 57103 0.8140 +9997 57794 0.4970 +9997 79133 0.5960 +9997 79145 0.5190 +9997 84146 0.5840 +9997 84701 0.4770 +9997 84875 0.4100 +9997 84987 0.5210 +9997 90639 0.6200 +9997 91289 0.4970 +9997 91942 0.5630 +9997 93517 0.4060 +9997 116228 0.5930 +9997 125965 0.4670 +9997 131474 0.5260 +9997 137682 0.5850 +9997 283375 0.6090 +9997 285521 0.6380 +9997 374291 0.5520 +9997 388753 0.9070 +9997 440836 0.4250 +9997 493753 0.6920 +9997 100131801 0.5910 +9997 100303755 0.5840 +10000 10320 0.4050 +10000 10472 0.4850 +10000 10488 0.7030 +10000 10641 0.4080 +10000 10681 0.5850 +10000 11140 0.9630 +10000 23035 0.9960 +10000 23060 0.4360 +10000 23239 0.9930 +10000 23411 0.4350 +10000 23533 0.9410 +10000 23774 0.4050 +10000 26060 0.4790 +10000 26499 0.7400 +10000 27071 0.4050 +10000 27154 0.4050 +10000 28227 0.6550 +10000 51230 0.4280 +10000 51256 0.9340 +10000 51764 0.4990 +10000 54331 0.5440 +10000 54704 0.4510 +10000 55012 0.6540 +10000 55294 0.4150 +10000 55615 0.5290 +10000 55677 0.4930 +10000 55844 0.6500 +10000 55970 0.5270 +10000 57521 0.9590 +10000 57761 0.9100 +10000 59345 0.6030 +10000 64223 0.6360 +10000 64764 0.6770 +10000 64769 0.4090 +10000 64778 0.4260 +10000 79109 0.6570 +10000 83666 0.4280 +10000 84289 0.4240 +10000 84335 0.9630 +10000 84699 0.6550 +10000 84969 0.6220 +10000 89795 0.4160 +10000 90993 0.6710 +10000 94235 0.4990 +10000 117145 0.9220 +10000 146850 0.9210 +10000 148327 0.7020 +10000 196883 0.6710 +10000 200186 0.9020 +10000 253260 0.7930 +10000 260425 0.4810 +10000 100132074 0.6780 +10001 10025 0.9980 +10001 10286 0.4150 +10001 10499 0.5260 +10001 10891 0.4990 +10001 11036 0.5070 +10001 22901 0.5810 +10001 23091 0.9940 +10001 23097 0.9860 +10001 23213 0.4700 +10001 23389 0.9670 +10001 23404 0.4190 +10001 24137 0.6040 +10001 25983 0.4450 +10001 26043 0.5370 +10001 29079 0.9990 +10001 29903 0.4790 +10001 30834 0.6880 +10001 50640 0.5000 +10001 51003 0.9990 +10001 51092 0.5210 +10001 51129 0.4990 +10001 51535 0.5460 +10001 51586 0.9980 +10001 51728 0.5760 +10001 51750 0.4290 +10001 53635 0.6980 +10001 54797 0.9990 +10001 54847 0.5240 +10001 54960 0.4090 +10001 55090 0.9970 +10001 55294 0.5210 +10001 55588 0.9990 +10001 55703 0.6620 +10001 55959 0.4700 +10001 57121 0.5210 +10001 65125 0.4420 +10001 65266 0.4240 +10001 65267 0.4240 +10001 65268 0.4240 +10001 79642 0.4970 +10001 79991 0.9940 +10001 80306 0.9990 +10001 81488 0.4600 +10001 81857 0.9970 +10001 83860 0.8080 +10001 83990 0.4300 +10001 84172 0.6640 +10001 84246 0.9990 +10001 84498 0.5210 +10001 84955 0.6290 +10001 84964 0.4390 +10001 85441 0.4990 +10001 90390 0.9990 +10001 112950 0.9990 +10001 116931 0.7590 +10001 121504 0.8000 +10001 123169 0.4140 +10001 124817 0.4240 +10001 126961 0.8160 +10001 127428 0.6730 +10001 129685 0.8670 +10001 133522 0.9000 +10001 149483 0.5210 +10001 153642 0.4800 +10001 170082 0.5920 +10001 246721 0.8100 +10001 256643 0.5400 +10001 286749 0.4820 +10001 333932 0.8160 +10001 340075 0.4970 +10001 340602 0.5210 +10001 347527 0.5780 +10001 387332 0.6120 +10001 399949 0.5100 +10001 400569 0.9990 +10001 404672 0.8250 +10001 448834 0.5210 +10001 548644 0.8120 +10001 554313 0.8000 +10001 653604 0.8400 +10001 728340 0.5530 +10001 100134938 0.5950 +10001 107983993 0.5950 +10001 122455342 0.5210 +10002 10210 0.7150 +10002 10401 0.6270 +10002 10461 0.5750 +10002 10594 0.7270 +10002 22907 0.6080 +10002 23020 0.6670 +10002 23746 0.6220 +10002 24148 0.4180 +10002 25794 0.7360 +10002 26121 0.7640 +10002 30813 0.5460 +10002 50939 0.7420 +10002 54557 0.4040 +10002 54714 0.6220 +10002 54982 0.5140 +10002 55812 0.4270 +10002 55975 0.6840 +10002 57010 0.5810 +10002 57096 0.5880 +10002 64218 0.5960 +10002 79947 0.4320 +10002 80184 0.4870 +10002 83552 0.6600 +10002 84140 0.5430 +10002 84839 0.5200 +10002 92840 0.4820 +10002 94137 0.5470 +10002 94233 0.4410 +10002 115861 0.4760 +10002 121643 0.4560 +10002 127002 0.5630 +10002 130557 0.6920 +10002 131890 0.4500 +10002 145226 0.7380 +10002 148398 0.4090 +10002 157657 0.4350 +10002 169522 0.5740 +10002 220202 0.5100 +10002 222255 0.5570 +10002 256297 0.4140 +10002 338917 0.6680 +10002 343035 0.6090 +10002 344658 0.6550 +10002 346007 0.7610 +10002 375298 0.7660 +10002 388531 0.4460 +10002 388939 0.7450 +10002 768206 0.7420 +10003 57093 0.5490 +10003 64089 0.4530 +10003 79747 0.4450 +10003 79758 0.4240 +10003 120146 0.4900 +10003 145942 0.4060 +10003 254827 0.6490 +10003 259173 0.4870 +10003 283116 0.5450 +10003 338661 0.4560 +10003 642446 0.5140 +10004 27087 0.5760 +10004 29851 0.4870 +10004 30009 0.4620 +10004 50943 0.6300 +10004 57211 0.7680 +10004 84647 0.4260 +10004 84684 0.6940 +10004 84868 0.5430 +10005 10449 0.4570 +10005 10455 0.6930 +10005 10478 0.5620 +10005 10902 0.4250 +10005 10965 0.9570 +10005 10998 0.9350 +10005 11264 0.5160 +10005 11332 0.6140 +10005 23305 0.4120 +10005 23597 0.7070 +10005 26027 0.6060 +10005 26061 0.4050 +10005 26063 0.4780 +10005 26275 0.4560 +10005 27034 0.5900 +10005 27238 0.4370 +10005 51084 0.8660 +10005 51102 0.4030 +10005 51606 0.4450 +10005 51703 0.4200 +10005 54677 0.4820 +10005 54995 0.5360 +10005 55268 0.4510 +10005 55856 0.7180 +10005 55862 0.4550 +10005 57148 0.4450 +10005 57678 0.4170 +10005 79611 0.4800 +10005 84263 0.4220 +10005 90203 0.4830 +10005 90204 0.4120 +10005 122970 0.6990 +10005 124359 0.4900 +10005 128486 0.4040 +10005 128497 0.5090 +10005 134526 0.6550 +10005 140825 0.4520 +10005 151230 0.5040 +10005 219743 0.6920 +10005 253175 0.4900 +10005 285148 0.5180 +10005 641371 0.9520 +10005 641372 0.6390 +10006 10011 0.9010 +10006 10092 0.7470 +10006 10093 0.6710 +10006 10094 0.7810 +10006 10095 0.7160 +10006 10096 0.8390 +10006 10097 0.8470 +10006 10109 0.8150 +10006 10152 0.9960 +10006 10163 0.9990 +10006 10298 0.4570 +10006 10451 0.5560 +10006 10458 0.9840 +10006 10552 0.6720 +10006 10787 0.9990 +10006 10810 0.9970 +10006 10962 0.4890 +10006 22879 0.4070 +10006 23048 0.6860 +10006 23075 0.5090 +10006 23114 0.4710 +10006 23157 0.4290 +10006 23191 0.9990 +10006 23365 0.5750 +10006 25890 0.6880 +10006 25894 0.4140 +10006 26030 0.4060 +10006 26050 0.4030 +10006 26060 0.4720 +10006 26130 0.4430 +10006 26999 0.9990 +10006 28964 0.5440 +10006 29765 0.4120 +10006 50944 0.4580 +10006 51225 0.7520 +10006 51347 0.4780 +10006 51454 0.6150 +10006 51517 0.6120 +10006 54518 0.5210 +10006 54869 0.7600 +10006 54874 0.6840 +10006 55004 0.4240 +10006 55740 0.8870 +10006 55789 0.4160 +10006 55845 0.9990 +10006 55914 0.4700 +10006 55971 0.4780 +10006 57082 0.5890 +10006 57648 0.6250 +10006 58480 0.4130 +10006 63916 0.7630 +10006 64132 0.4120 +10006 64787 0.5600 +10006 65059 0.8500 +10006 79574 0.5550 +10006 80018 0.5390 +10006 81624 0.6230 +10006 81839 0.4150 +10006 81873 0.7040 +10006 84062 0.4190 +10006 84315 0.4020 +10006 84959 0.4240 +10006 85358 0.8530 +10006 89797 0.5750 +10006 89884 0.4390 +10006 91544 0.6130 +10006 94134 0.5030 +10006 114336 0.5020 +10006 118472 0.5880 +10006 143098 0.4250 +10006 147179 0.5330 +10006 340527 0.6960 +10006 390714 0.5110 +10006 644150 0.4980 +10007 10020 0.4580 +10007 10121 0.4220 +10007 10797 0.4210 +10007 10875 0.4540 +10007 22934 0.4460 +10007 50814 0.4070 +10007 51005 0.9940 +10007 51076 0.4260 +10007 55577 0.8030 +10007 57863 0.4180 +10007 64080 0.4250 +10007 64841 0.9710 +10007 65258 0.6860 +10007 80201 0.9170 +10007 84680 0.5150 +10007 91373 0.4930 +10007 129831 0.5830 +10007 130951 0.5240 +10007 132789 0.9700 +10007 414328 0.6240 +10008 10021 0.8230 +10008 10060 0.6430 +10008 10142 0.9090 +10008 10265 0.6120 +10008 10345 0.4140 +10008 11019 0.7460 +10008 22941 0.5500 +10008 23171 0.9050 +10008 23630 0.8270 +10008 23704 0.9500 +10008 29098 0.7390 +10008 30819 0.6190 +10008 51601 0.8650 +10008 54795 0.5710 +10008 55800 0.8900 +10008 56479 0.5620 +10008 79192 0.5940 +10008 220074 0.5490 +10008 100134444 0.7520 +10009 10075 0.4350 +10009 10133 0.4030 +10009 10155 0.4410 +10009 10413 0.4010 +10009 10522 0.4230 +10009 10524 0.4160 +10009 10664 0.7820 +10009 10765 0.4860 +10009 23186 0.4270 +10009 25942 0.4510 +10009 29128 0.5810 +10009 50855 0.4300 +10009 51339 0.5790 +10009 55758 0.5530 +10009 56288 0.4120 +10009 57216 0.4270 +10009 57659 0.6350 +10009 57680 0.5060 +10009 64839 0.4390 +10009 79718 0.5380 +10009 80312 0.4060 +10009 93380 0.4550 +10009 115426 0.6280 +10009 147912 0.4290 +10009 200424 0.4290 +10009 205860 0.4830 +10009 253461 0.5700 +10009 346171 0.5930 +10009 375790 0.4910 +10010 10068 0.4130 +10010 10133 0.9450 +10010 10193 0.5040 +10010 10293 0.5230 +10010 10379 0.4210 +10010 10454 0.6340 +10010 10616 0.5320 +10010 10892 0.5500 +10010 23118 0.8010 +10010 23269 0.5130 +10010 23363 0.4210 +10010 23586 0.8350 +10010 23643 0.6390 +10010 29110 0.9990 +10010 51135 0.5010 +10010 51230 0.4030 +10010 51284 0.5250 +10010 51311 0.4190 +10010 54106 0.4490 +10010 54708 0.8130 +10010 55072 0.5190 +10010 55128 0.5110 +10010 55255 0.4560 +10010 55593 0.6680 +10010 55770 0.5510 +10010 57162 0.5110 +10010 57506 0.9730 +10010 64135 0.8390 +10010 64343 0.9780 +10010 79132 0.7310 +10010 79155 0.6630 +10010 80143 0.6490 +10010 80149 0.9550 +10010 81030 0.6210 +10010 81559 0.5020 +10010 84282 0.6720 +10010 84433 0.4360 +10010 84640 0.5360 +10010 89122 0.5960 +10010 92610 0.7370 +10010 114609 0.4770 +10010 115004 0.5350 +10010 115650 0.5470 +10010 140775 0.9250 +10010 148022 0.8200 +10010 203228 0.6490 +10010 257397 0.4500 +10010 353376 0.6770 +10011 10152 0.9000 +10011 10163 0.9000 +10011 10307 0.4060 +10011 10427 0.5380 +10011 10483 0.6130 +10011 10521 0.7910 +10011 10787 0.9000 +10011 10802 0.5980 +10011 10810 0.5400 +10011 23191 0.7200 +10011 26999 0.7200 +10011 29089 0.4870 +10011 51225 0.7240 +10011 55845 0.9000 +10011 80324 0.5960 +10011 81892 0.6550 +10011 83480 0.4110 +10013 10014 0.4590 +10013 10046 0.5400 +10013 10048 0.5950 +10013 10049 0.4050 +10013 10075 0.4090 +10013 10146 0.9140 +10013 10155 0.9030 +10013 10226 0.4900 +10013 10273 0.8310 +10013 10376 0.8100 +10013 10383 0.4030 +10013 10524 0.6840 +10013 10533 0.5480 +10013 10537 0.6720 +10013 10574 0.4440 +10013 10575 0.4220 +10013 10576 0.4320 +10013 10728 0.8490 +10013 10871 0.5730 +10013 10907 0.6490 +10013 10919 0.4580 +10013 10933 0.4150 +10013 11076 0.8160 +10013 11143 0.4170 +10013 11315 0.7110 +10013 11337 0.4270 +10013 11345 0.4460 +10013 22919 0.4630 +10013 22933 0.9410 +10013 22938 0.5000 +10013 22948 0.5140 +10013 23001 0.5170 +10013 23028 0.5880 +10013 23133 0.4200 +10013 23135 0.4430 +10013 23186 0.5050 +10013 23309 0.4790 +10013 23361 0.6710 +10013 23400 0.6470 +10013 23408 0.6010 +10013 23409 0.5960 +10013 23410 0.6200 +10013 23411 0.7820 +10013 23435 0.9810 +10013 23476 0.4510 +10013 23522 0.4200 +10013 23586 0.6590 +10013 23640 0.4730 +10013 23710 0.4510 +10013 23774 0.4890 +10013 25855 0.5440 +10013 25909 0.4160 +10013 25942 0.6060 +10013 25978 0.5240 +10013 26353 0.4050 +10013 26610 0.5070 +10013 26986 0.4310 +10013 27243 0.4220 +10013 28964 0.4750 +10013 29072 0.4060 +10013 29978 0.5650 +10013 30832 0.7550 +10013 51143 0.5520 +10013 51160 0.4190 +10013 51185 0.5480 +10013 51271 0.4010 +10013 51547 0.6320 +10013 51548 0.6170 +10013 51564 0.5910 +10013 51592 0.4700 +10013 51652 0.4190 +10013 51710 0.6710 +10013 51742 0.4690 +10013 51806 0.4730 +10013 51807 0.5910 +10013 53635 0.5010 +10013 54145 0.7300 +10013 54806 0.4580 +10013 54820 0.7490 +10013 54880 0.4280 +10013 54971 0.5780 +10013 55031 0.5460 +10013 55072 0.4220 +10013 55140 0.6670 +10013 55193 0.4160 +10013 55288 0.4090 +10013 55506 0.6910 +10013 55534 0.5230 +10013 55626 0.4050 +10013 55766 0.6890 +10013 55869 0.6580 +10013 57649 0.4090 +10013 60489 0.9180 +10013 60672 0.5230 +10013 64422 0.4220 +10013 65018 0.4920 +10013 79643 0.4230 +10013 79649 0.4690 +10013 79718 0.5970 +10013 79861 0.5340 +10013 79866 0.4970 +10013 79885 0.8910 +10013 79969 0.8480 +10013 80818 0.6710 +10013 81565 0.4780 +10013 81624 0.6830 +10013 81631 0.4500 +10013 84148 0.4540 +10013 84282 0.4700 +10013 84441 0.5270 +10013 84458 0.7680 +10013 84790 0.6940 +10013 84962 0.4890 +10013 84993 0.5090 +10013 85236 0.7340 +10013 89853 0.4010 +10013 91782 0.4050 +10013 91860 0.4730 +10013 92482 0.5270 +10013 92552 0.7810 +10013 92815 0.6890 +10013 93343 0.4050 +10013 94239 0.7140 +10013 112714 0.5330 +10013 113457 0.5400 +10013 114548 0.6410 +10013 115560 0.6710 +10013 120892 0.4540 +10013 122953 0.4090 +10013 128312 0.7290 +10013 128866 0.4030 +10013 135892 0.7930 +10013 137492 0.4030 +10013 137902 0.4120 +10013 140735 0.6390 +10013 148266 0.6710 +10013 158983 0.7300 +10013 163688 0.4730 +10013 171023 0.4180 +10013 200894 0.6250 +10013 203068 0.5310 +10013 203286 0.4090 +10013 221302 0.5480 +10013 221613 0.6890 +10013 255626 0.7320 +10013 284390 0.6710 +10013 284403 0.4630 +10013 286436 0.7320 +10013 317772 0.6900 +10013 347240 0.5730 +10013 387893 0.4040 +10013 440093 0.6830 +10013 440686 0.6830 +10013 440689 0.7300 +10013 474381 0.6890 +10013 474382 0.6890 +10013 574414 0.4330 +10013 653604 0.6840 +10013 100271849 0.4180 +10013 114483833 0.7300 +10014 10046 0.5190 +10014 10075 0.4300 +10014 10155 0.4250 +10014 10284 0.4790 +10014 10365 0.4150 +10014 10419 0.4790 +10014 10524 0.5300 +10014 10664 0.4980 +10014 10765 0.5010 +10014 10856 0.4210 +10014 10919 0.5150 +10014 10971 0.8030 +10014 11091 0.4190 +10014 11143 0.4160 +10014 11165 0.4240 +10014 11218 0.6060 +10014 11331 0.5590 +10014 22893 0.7040 +10014 22933 0.5360 +10014 22938 0.5290 +10014 22955 0.5250 +10014 23028 0.7790 +10014 23125 0.6090 +10014 23135 0.4410 +10014 23186 0.6030 +10014 23197 0.5680 +10014 23235 0.6350 +10014 23261 0.4120 +10014 23309 0.5110 +10014 23387 0.4230 +10014 23408 0.4280 +10014 23409 0.4420 +10014 23410 0.4810 +10014 23411 0.6250 +10014 23466 0.5890 +10014 23512 0.6130 +10014 23683 0.7170 +10014 25855 0.7090 +10014 25865 0.8010 +10014 25942 0.7740 +10014 26270 0.4520 +10014 27033 0.5740 +10014 29123 0.5470 +10014 30009 0.6220 +10014 51477 0.4520 +10014 51520 0.4770 +10014 51547 0.4880 +10014 51548 0.4710 +10014 51564 0.6290 +10014 51742 0.4820 +10014 51806 0.4420 +10014 53615 0.6030 +10014 54145 0.7060 +10014 54726 0.5070 +10014 54815 0.5370 +10014 54978 0.5450 +10014 55506 0.7020 +10014 55534 0.5110 +10014 55766 0.6900 +10014 55869 0.5890 +10014 56731 0.4380 +10014 56893 0.5260 +10014 57167 0.5150 +10014 57332 0.5910 +10014 57459 0.5400 +10014 57504 0.5990 +10014 57649 0.4380 +10014 57763 0.8430 +10014 57805 0.5490 +10014 63035 0.6750 +10014 79718 0.7020 +10014 79885 0.4350 +10014 80012 0.5170 +10014 84232 0.5340 +10014 84312 0.6060 +10014 84441 0.5140 +10014 84733 0.5480 +10014 85236 0.7820 +10014 91860 0.4420 +10014 92815 0.6890 +10014 93649 0.6360 +10014 94239 0.7200 +10014 122953 0.4130 +10014 128312 0.7060 +10014 150094 0.7790 +10014 158983 0.7060 +10014 163688 0.4430 +10014 221613 0.6890 +10014 255626 0.7070 +10014 286436 0.7060 +10014 317772 0.6890 +10014 440093 0.7390 +10014 440686 0.7390 +10014 440689 0.7060 +10014 474381 0.6890 +10014 474382 0.6890 +10014 653604 0.7390 +10014 114483833 0.7060 +10015 10016 0.9990 +10015 10146 0.4430 +10015 10211 0.5280 +10015 10254 0.5270 +10015 10525 0.4220 +10015 10533 0.5000 +10015 10548 0.4890 +10015 10575 0.4350 +10015 10617 0.4980 +10015 11060 0.4960 +10015 11267 0.4990 +10015 23327 0.8520 +10015 23607 0.7350 +10015 25930 0.5500 +10015 25978 0.6540 +10015 26985 0.4680 +10015 27111 0.7980 +10015 27183 0.9630 +10015 27243 0.9110 +10015 27352 0.5300 +10015 27429 0.5140 +10015 29127 0.4550 +10015 30011 0.9170 +10015 51028 0.5160 +10015 51160 0.8910 +10015 51271 0.6620 +10015 51510 0.8060 +10015 51534 0.9020 +10015 51652 0.8530 +10015 54862 0.6120 +10015 55048 0.7060 +10015 55165 0.9870 +10015 55737 0.4580 +10015 57132 0.5170 +10015 57630 0.4750 +10015 64422 0.7220 +10015 79643 0.9000 +10015 79720 0.6970 +10015 81027 0.4190 +10015 83737 0.4560 +10015 84313 0.7290 +10015 85365 0.8000 +10015 89853 0.9280 +10015 91782 0.6690 +10015 92421 0.9990 +10015 92714 0.5960 +10015 93343 0.9520 +10015 128866 0.9980 +10015 137492 0.6960 +10015 153769 0.5190 +10015 155382 0.5890 +10015 203068 0.6290 +10015 553115 0.6540 +10015 100526767 0.7140 +10016 10081 0.4690 +10016 10324 0.7230 +10016 10342 0.4650 +10016 10427 0.9430 +10016 10483 0.6260 +10016 10484 0.9350 +10016 10523 0.4900 +10016 10540 0.4070 +10016 10802 0.9180 +10016 11146 0.7220 +10016 11196 0.7760 +10016 11275 0.7410 +10016 22872 0.9990 +10016 23053 0.7200 +10016 23510 0.5750 +10016 23593 0.9860 +10016 25930 0.5110 +10016 25956 0.6880 +10016 26249 0.7420 +10016 27183 0.6730 +10016 27252 0.7310 +10016 29929 0.7730 +10016 30011 0.4430 +10016 51014 0.9060 +10016 51128 0.7540 +10016 51160 0.4320 +10016 51534 0.4560 +10016 51669 0.4440 +10016 54442 0.5400 +10016 54800 0.7240 +10016 55048 0.4040 +10016 55165 0.7950 +10016 55696 0.4100 +10016 55958 0.7450 +10016 55975 0.7250 +10016 56052 0.7830 +10016 56681 0.9240 +10016 57048 0.6200 +10016 57192 0.7770 +10016 57542 0.7330 +10016 57563 0.7290 +10016 59349 0.9710 +10016 60558 0.4190 +10016 64410 0.7230 +10016 79643 0.4070 +10016 79734 0.7200 +10016 83892 0.7220 +10016 84078 0.7240 +10016 84541 0.7480 +10016 84861 0.7240 +10016 89890 0.7430 +10016 90293 0.7220 +10016 92421 0.8130 +10016 93343 0.4450 +10016 128866 0.5490 +10016 131377 0.7230 +10016 149345 0.4520 +10016 253980 0.7200 +10016 339745 0.7200 +10016 553115 0.9910 +10017 10018 0.9930 +10017 10768 0.7630 +10017 23581 0.4800 +10017 23786 0.4050 +10017 27113 0.5440 +10017 29979 0.8140 +10017 54205 0.6970 +10017 56893 0.4770 +10017 79370 0.5280 +10017 79680 0.5060 +10017 90427 0.6860 +10017 440603 0.4240 +10017 441925 0.4570 +10018 10142 0.5000 +10018 10168 0.4010 +10018 10399 0.4100 +10018 10533 0.6920 +10018 10563 0.4710 +10018 10827 0.4990 +10018 11044 0.4990 +10018 22906 0.5040 +10018 22926 0.5840 +10018 23164 0.4990 +10018 23241 0.7260 +10018 23291 0.6130 +10018 23321 0.4850 +10018 23405 0.6460 +10018 23411 0.5270 +10018 23568 0.4480 +10018 23645 0.4200 +10018 27044 0.5050 +10018 27113 0.9710 +10018 27161 0.5650 +10018 27250 0.4200 +10018 27429 0.4830 +10018 30001 0.4710 +10018 50943 0.4730 +10018 51310 0.4890 +10018 54205 0.8990 +10018 54845 0.5160 +10018 55109 0.5040 +10018 55750 0.5090 +10018 56829 0.5000 +10018 57085 0.4990 +10018 57670 0.5010 +10018 60482 0.5140 +10018 79370 0.6750 +10018 79444 0.4150 +10018 79680 0.8770 +10018 80853 0.5500 +10018 81631 0.4220 +10018 81669 0.4460 +10018 84260 0.4050 +10018 85415 0.4200 +10018 90427 0.9010 +10018 112770 0.6320 +10018 114836 0.5460 +10018 137902 0.5430 +10018 140735 0.7480 +10018 149428 0.4220 +10018 389384 0.5290 +10018 389856 0.7610 +10018 440093 0.4330 +10018 440686 0.4330 +10018 653604 0.4330 +10018 100132074 0.5120 +10018 100528021 0.5100 +10018 100529063 0.5550 +10019 10116 0.4600 +10019 10320 0.6040 +10019 10735 0.4550 +10019 22834 0.4020 +10019 22978 0.4180 +10019 23172 0.5220 +10019 23274 0.7270 +10019 23316 0.4890 +10019 25970 0.9160 +10019 26040 0.6570 +10019 26191 0.6160 +10019 26499 0.6380 +10019 29775 0.4140 +10019 30837 0.4240 +10019 51530 0.4770 +10019 53347 0.5460 +10019 54790 0.8390 +10019 54897 0.5080 +10019 54986 0.4210 +10019 55500 0.4620 +10019 60468 0.6520 +10019 63035 0.4320 +10019 64127 0.5210 +10019 80018 0.7600 +10019 80212 0.4570 +10019 84162 0.6910 +10019 84295 0.5450 +10019 114904 0.5630 +10019 117289 0.8120 +10019 132612 0.6310 +10019 171023 0.8880 +10019 219621 0.4790 +10019 286530 0.4420 +10019 387103 0.4300 +10019 723961 0.4420 +10020 10559 0.7600 +10020 11155 0.4470 +10020 11181 0.8120 +10020 23193 0.4490 +10020 23483 0.4650 +10020 26503 0.8510 +10020 51005 0.8980 +10020 54187 0.9920 +10020 55276 0.7980 +10020 55343 0.4440 +10020 55577 0.6120 +10020 55907 0.6210 +10020 56052 0.5440 +10020 56965 0.4120 +10020 57190 0.5600 +10020 57462 0.4550 +10020 65220 0.4770 +10020 79147 0.4130 +10020 79668 0.4070 +10020 80162 0.8650 +10020 80896 0.9500 +10020 81932 0.5150 +10020 84688 0.4040 +10020 85365 0.5330 +10020 91373 0.9220 +10020 93432 0.4030 +10020 121642 0.5310 +10020 129831 0.4010 +10020 130589 0.5720 +10020 132789 0.4040 +10020 140838 0.7750 +10020 152006 0.9530 +10020 203859 0.4200 +10020 283209 0.7980 +10020 284098 0.4360 +10020 388969 0.5890 +10020 440138 0.5020 +10020 644974 0.4360 +10020 729020 0.4890 +10021 10052 0.8270 +10021 10060 0.6370 +10021 10265 0.4460 +10021 10335 0.4550 +10021 10345 0.4920 +10021 10637 0.5020 +10021 23171 0.8340 +10021 23224 0.4310 +10021 23493 0.4280 +10021 23630 0.6770 +10021 23704 0.5830 +10021 27302 0.5550 +10021 29098 0.6230 +10021 30818 0.4390 +10021 30819 0.4670 +10021 50805 0.4940 +10021 50834 0.4340 +10021 51422 0.4610 +10021 51555 0.8100 +10021 54795 0.5820 +10021 55800 0.8020 +10021 57057 0.5020 +10021 57084 0.4780 +10021 57167 0.4850 +10021 57657 0.8790 +10021 58498 0.6350 +10021 79933 0.5310 +10021 80834 0.4320 +10021 80835 0.4120 +10021 83756 0.4230 +10021 84909 0.4750 +10021 125111 0.4520 +10021 127833 0.4390 +10021 259287 0.4090 +10021 282996 0.4200 +10021 338398 0.4060 +10021 342372 0.4920 +10021 346562 0.6300 +10021 348980 0.9040 +10021 353164 0.4050 +10021 376132 0.4010 +10022 11172 0.7430 +10022 23538 0.5070 +10022 29899 0.4410 +10022 51289 0.9510 +10022 54860 0.4860 +10022 59350 0.9320 +10022 84886 0.4340 +10022 117579 0.9970 +10022 122042 0.9090 +10022 339403 0.9950 +10022 350383 0.5660 +10022 353164 0.4120 +10023 23401 0.9510 +10023 51744 0.4370 +10023 139285 0.4130 +10023 378884 0.4300 +10024 10051 0.4810 +10024 10112 0.8310 +10024 10238 0.5180 +10024 10403 0.5550 +10024 10460 0.7010 +10024 10615 0.8130 +10024 10635 0.4150 +10024 10721 0.4870 +10024 10733 0.4120 +10024 11004 0.8330 +10024 11065 0.7780 +10024 11339 0.4180 +10024 22919 0.7210 +10024 22924 0.6240 +10024 22974 0.6760 +10024 23132 0.4740 +10024 23397 0.5390 +10024 24137 0.8360 +10024 25792 0.4330 +10024 26586 0.4290 +10024 29089 0.4110 +10024 51203 0.6290 +10024 51512 0.7000 +10024 51659 0.4240 +10024 54478 0.6230 +10024 55010 0.4740 +10024 55143 0.7940 +10024 55165 0.6120 +10024 55184 0.4750 +10024 55247 0.5740 +10024 55355 0.9180 +10024 55388 0.4050 +10024 55635 0.4940 +10024 55723 0.4780 +10024 55789 0.4400 +10024 55839 0.4620 +10024 56992 0.7000 +10024 57405 0.4320 +10024 64151 0.6900 +10024 64753 0.4110 +10024 79019 0.4480 +10024 79616 0.4590 +10024 80119 0.7110 +10024 81610 0.5320 +10024 81620 0.4720 +10024 83461 0.8570 +10024 83540 0.5140 +10024 84445 0.5270 +10024 89790 0.4370 +10024 90381 0.7130 +10024 113130 0.6330 +10024 114132 0.4280 +10024 124602 0.6360 +10024 128239 0.5950 +10024 146909 0.9060 +10024 150468 0.6350 +10024 150864 0.6060 +10024 151648 0.4340 +10024 157313 0.7050 +10024 166979 0.4020 +10024 202500 0.5150 +10024 221150 0.5020 +10024 254225 0.5160 +10024 259266 0.7640 +10025 10423 0.4400 +10025 10499 0.5070 +10025 10555 0.4880 +10025 10576 0.4290 +10025 10629 0.4250 +10025 10891 0.6480 +10025 23091 0.9940 +10025 23097 0.9780 +10025 23389 0.9510 +10025 23476 0.6920 +10025 27235 0.4200 +10025 27332 0.4210 +10025 29079 0.9980 +10025 51003 0.9960 +10025 51129 0.5260 +10025 51586 0.9990 +10025 54675 0.4020 +10025 54797 0.9990 +10025 55090 0.9970 +10025 55122 0.5200 +10025 55294 0.5310 +10025 55588 0.9990 +10025 79948 0.4930 +10025 79991 0.9940 +10025 80306 0.9990 +10025 81857 0.9970 +10025 83860 0.8000 +10025 84181 0.5360 +10025 84246 0.9990 +10025 84498 0.5200 +10025 84656 0.5190 +10025 84955 0.6330 +10025 85441 0.5270 +10025 90390 0.9970 +10025 91300 0.7050 +10025 91304 0.5910 +10025 112950 0.9980 +10025 116444 0.4530 +10025 116931 0.7650 +10025 121504 0.8000 +10025 126961 0.8000 +10025 129685 0.8010 +10025 133522 0.9000 +10025 256643 0.5400 +10025 333932 0.8000 +10025 400569 0.9980 +10025 404672 0.8120 +10025 554313 0.8000 +10025 653604 0.8070 +10026 10404 0.4080 +10026 10468 0.4480 +10026 10972 0.4930 +10026 23556 0.7990 +10026 23592 0.4080 +10026 27258 0.4850 +10026 27315 0.7540 +10026 29122 0.5960 +10026 29929 0.4400 +10026 51227 0.7170 +10026 51604 0.9990 +10026 54344 0.5770 +10026 54872 0.8240 +10026 55650 0.7990 +10026 64801 0.4440 +10026 64841 0.4170 +10026 65258 0.5910 +10026 79087 0.5980 +10026 80055 0.9750 +10026 80235 0.7300 +10026 84290 0.5400 +10026 84720 0.9810 +10026 84992 0.6690 +10026 93183 0.8070 +10026 93210 0.7230 +10026 94005 0.9990 +10026 114770 0.4400 +10026 128869 0.9990 +10026 151790 0.4670 +10026 284098 0.7930 +10036 10051 0.4220 +10036 10112 0.4720 +10036 10155 0.7650 +10036 10403 0.4830 +10036 10445 0.4200 +10036 10535 0.5230 +10036 10592 0.4470 +10036 10615 0.4240 +10036 10915 0.4210 +10036 10919 0.4630 +10036 10926 0.4730 +10036 10951 0.8740 +10036 11004 0.5030 +10036 11113 0.4190 +10036 11130 0.4540 +10036 11169 0.5180 +10036 11200 0.4620 +10036 11335 0.8920 +10036 23028 0.6220 +10036 23234 0.4160 +10036 23397 0.4920 +10036 23468 0.9710 +10036 23476 0.6770 +10036 23649 0.5350 +10036 25842 0.8820 +10036 29128 0.4450 +10036 30827 0.6530 +10036 51203 0.5200 +10036 51512 0.4410 +10036 51514 0.4100 +10036 51535 0.4500 +10036 51659 0.5130 +10036 54821 0.6420 +10036 54892 0.4840 +10036 54962 0.4150 +10036 55011 0.5630 +10036 55055 0.4310 +10036 55143 0.4720 +10036 55215 0.4950 +10036 55355 0.4860 +10036 55388 0.4560 +10036 55723 0.9580 +10036 57472 0.5230 +10036 57696 0.4860 +10036 63922 0.5740 +10036 63967 0.4930 +10036 64151 0.4750 +10036 79075 0.4850 +10036 79915 0.5240 +10036 80321 0.4010 +10036 81620 0.7110 +10036 83461 0.4060 +10036 83540 0.5510 +10036 84271 0.7020 +10036 84942 0.4090 +10036 90381 0.5120 +10036 93611 0.4840 +10036 113130 0.6590 +10036 126961 0.5200 +10036 151648 0.4700 +10036 246175 0.5180 +10036 254394 0.6440 +10036 440093 0.7290 +10036 440686 0.7290 +10036 653604 0.8010 +10038 10111 0.5410 +10038 10155 0.4080 +10038 10401 0.4520 +10038 10721 0.6720 +10038 10856 0.4410 +10038 11198 0.4390 +10038 11200 0.5450 +10038 11284 0.6770 +10038 23411 0.5320 +10038 23468 0.6160 +10038 25976 0.5320 +10038 28992 0.6890 +10038 29128 0.4280 +10038 29935 0.6290 +10038 51455 0.5100 +10038 51548 0.5620 +10038 54145 0.7940 +10038 54625 0.6630 +10038 54778 0.4190 +10038 54840 0.7720 +10038 54936 0.6690 +10038 54956 0.7070 +10038 54969 0.9990 +10038 55506 0.4120 +10038 55775 0.5470 +10038 56829 0.6610 +10038 56852 0.4220 +10038 56965 0.6700 +10038 57097 0.6050 +10038 64421 0.4700 +10038 64761 0.6400 +10038 64802 0.4180 +10038 79661 0.4360 +10038 79668 0.5550 +10038 79728 0.4940 +10038 80198 0.5500 +10038 80351 0.7560 +10038 81847 0.8860 +10038 83666 0.6210 +10038 83707 0.4930 +10038 84875 0.7650 +10038 85235 0.4340 +10038 85236 0.7970 +10038 126961 0.4790 +10038 131870 0.4010 +10038 140733 0.4970 +10038 165631 0.6970 +10038 200558 0.8870 +10038 221443 0.4990 +10038 255626 0.4320 +10038 333932 0.4790 +10038 378708 0.8000 +10038 404672 0.6320 +10038 440686 0.6250 +10038 642636 0.4080 +10038 653604 0.6240 +10039 11284 0.5040 +10039 23512 0.4560 +10039 25976 0.5320 +10039 27350 0.4070 +10039 28989 0.5160 +10039 28992 0.5720 +10039 51548 0.4120 +10039 54625 0.6880 +10039 54840 0.4820 +10039 54936 0.5930 +10039 54956 0.7780 +10039 54969 0.6800 +10039 56829 0.6590 +10039 56965 0.7390 +10039 57097 0.6570 +10039 64761 0.6900 +10039 79668 0.6300 +10039 80351 0.7120 +10039 81847 0.4070 +10039 81888 0.5060 +10039 83666 0.6890 +10039 83707 0.6300 +10039 84875 0.7700 +10039 131870 0.4350 +10039 140733 0.5210 +10039 165631 0.7500 +10039 200558 0.8800 +10039 221443 0.4480 +10039 252969 0.4930 +10039 653604 0.4540 +10040 10043 0.4500 +10040 10753 0.4480 +10040 26986 0.4350 +10040 27243 0.4390 +10040 51160 0.5320 +10040 54472 0.8830 +10040 55017 0.4190 +10040 55048 0.4750 +10040 55068 0.4340 +10040 58488 0.4320 +10040 80157 0.4660 +10040 92421 0.4880 +10040 128178 0.5720 +10040 200403 0.4770 +10040 252983 0.6430 +10042 10043 0.9300 +10042 10283 0.4600 +10042 11177 0.9030 +10042 23551 0.4220 +10042 27443 0.9220 +10042 29117 0.4690 +10042 51327 0.4800 +10042 51773 0.7440 +10042 53834 0.4230 +10042 54107 0.5500 +10042 54108 0.5670 +10042 54855 0.4670 +10042 55656 0.4540 +10042 55749 0.4280 +10042 58986 0.4090 +10042 80020 0.4930 +10042 124944 0.9830 +10042 128025 0.4570 +10042 196441 0.4010 +10042 255252 0.4190 +10042 439996 0.4460 +10042 728621 0.5350 +10042 100529209 0.5400 +10043 10075 0.7900 +10043 10133 0.4400 +10043 10241 0.4360 +10043 10755 0.4510 +10043 22853 0.6730 +10043 23163 0.4200 +10043 25930 0.4420 +10043 26060 0.5790 +10043 29924 0.4370 +10043 51271 0.4280 +10043 54472 0.9980 +10043 55293 0.4350 +10043 133482 0.4300 +10043 134957 0.4550 +10043 146705 0.4360 +10043 221079 0.7100 +10043 404093 0.4770 +10044 10045 0.9310 +10044 10146 0.8740 +10044 10278 0.6640 +10044 10605 0.5450 +10044 23264 0.8380 +10044 23586 0.5760 +10044 23607 0.4420 +10044 25898 0.6530 +10044 25939 0.4450 +10044 26986 0.6150 +10044 29110 0.6820 +10044 30011 0.4800 +10044 51503 0.5850 +10044 54097 0.4750 +10044 55716 0.4130 +10044 57506 0.5220 +10044 59272 0.6650 +10044 64135 0.5450 +10044 64651 0.4130 +10044 83992 0.4180 +10044 84284 0.4180 +10044 84875 0.5900 +10044 92521 0.9270 +10044 136991 0.6970 +10044 340061 0.5150 +10044 400668 0.9980 +10044 474344 0.5490 +10045 10146 0.4690 +10045 10204 0.6840 +10045 10379 0.4790 +10045 10465 0.9360 +10045 10482 0.9100 +10045 11123 0.4330 +10045 23291 0.4610 +10045 23586 0.6580 +10045 23636 0.7260 +10045 29107 0.5070 +10045 29110 0.5950 +10045 30816 0.4340 +10045 51284 0.4490 +10045 51503 0.6240 +10045 53371 0.5650 +10045 54097 0.4470 +10045 57506 0.6220 +10045 59272 0.7200 +10045 64135 0.6130 +10045 79132 0.4030 +10045 79709 0.4300 +10045 83992 0.4470 +10045 84284 0.4320 +10045 92521 0.9120 +10045 132243 0.4780 +10045 136991 0.7130 +10045 259307 0.5180 +10045 400668 0.9970 +10046 10320 0.5420 +10046 10413 0.5120 +10046 22938 0.5650 +10046 23112 0.5070 +10046 23129 0.4990 +10046 23286 0.5280 +10046 23462 0.5420 +10046 23493 0.5240 +10046 26508 0.5730 +10046 26523 0.5360 +10046 26974 0.4250 +10046 27161 0.5370 +10046 27327 0.5210 +10046 51176 0.5090 +10046 51564 0.5190 +10046 54796 0.4350 +10046 55294 0.5080 +10046 55534 0.7220 +10046 55869 0.5720 +10046 56979 0.4020 +10046 65998 0.7470 +10046 79607 0.8220 +10046 79718 0.5410 +10046 79885 0.5190 +10046 83933 0.5190 +10046 84441 0.6830 +10046 84622 0.4130 +10046 139189 0.5860 +10046 154796 0.4560 +10046 171558 0.4990 +10046 192669 0.5490 +10046 192670 0.5470 +10046 343930 0.4990 +10046 344787 0.4960 +10046 388585 0.5360 +10046 390992 0.5040 +10047 10407 0.4270 +10047 29107 0.4080 +10047 64412 0.4610 +10047 128821 0.4500 +10047 128822 0.7780 +10047 138307 0.4970 +10047 338661 0.4120 +10048 10296 0.9520 +10048 10394 0.4200 +10048 10445 0.4370 +10048 10987 0.4020 +10048 11033 0.6690 +10048 22974 0.4740 +10048 23138 0.4990 +10048 23186 0.4040 +10048 25852 0.9930 +10048 26206 0.4840 +10048 28996 0.6750 +10048 51186 0.4330 +10048 51646 0.9490 +10048 54514 0.9100 +10048 54737 0.9430 +10048 54994 0.9950 +10048 55558 0.5580 +10048 55770 0.4720 +10048 56413 0.5530 +10048 57532 0.4250 +10048 57610 0.9970 +10048 58533 0.4080 +10048 64581 0.5440 +10048 64777 0.7940 +10048 64795 0.9970 +10048 79018 0.9900 +10048 80232 0.9960 +10048 80258 0.4220 +10048 91584 0.5210 +10048 116225 0.5840 +10048 133396 0.4050 +10048 133482 0.5460 +10048 144321 0.4200 +10048 160622 0.4060 +10049 10273 0.9200 +10049 10294 0.4920 +10049 10525 0.5240 +10049 10585 0.4500 +10049 10745 0.4460 +10049 10808 0.7450 +10049 10963 0.7410 +10049 11080 0.6480 +10049 11145 0.4200 +10049 11155 0.5160 +10049 11222 0.4420 +10049 22824 0.7630 +10049 23152 0.5100 +10049 23317 0.4580 +10049 23435 0.4760 +10049 23534 0.4270 +10049 23587 0.4290 +10049 23640 0.4670 +10049 23761 0.4210 +10049 23770 0.5850 +10049 25789 0.4200 +10049 25822 0.5500 +10049 26278 0.4070 +10049 26353 0.8210 +10049 26589 0.4410 +10049 27000 0.4120 +10049 28998 0.4390 +10049 29954 0.4350 +10049 51122 0.4230 +10049 51182 0.8460 +10049 51314 0.4680 +10049 51501 0.4830 +10049 54788 0.5890 +10049 54979 0.4200 +10049 55294 0.5100 +10049 56521 0.4420 +10049 57110 0.4240 +10049 57129 0.4110 +10049 63875 0.4850 +10049 64374 0.4630 +10049 79147 0.4240 +10049 79912 0.4920 +10049 80273 0.8940 +10049 81570 0.5530 +10049 84545 0.4070 +10049 84617 0.4340 +10049 84717 0.4040 +10049 84991 0.5480 +10049 116835 0.6610 +10049 116985 0.4370 +10049 118461 0.4200 +10049 121053 0.5440 +10049 126393 0.4680 +10049 134266 0.4530 +10049 202500 0.4140 +10049 203859 0.5300 +10049 259217 0.6420 +10049 339416 0.4340 +10049 388633 0.4200 +10050 10351 0.4440 +10050 10590 0.4200 +10050 10599 0.4520 +10050 22882 0.4770 +10050 23328 0.4010 +10050 29974 0.5350 +10050 55604 0.4460 +10050 55867 0.6050 +10050 56606 0.6010 +10050 116085 0.5360 +10050 124491 0.5060 +10050 126133 0.4170 +10050 151295 0.4300 +10050 220963 0.6590 +10050 283375 0.4780 +10051 10112 0.8150 +10051 10162 0.5490 +10051 10274 0.7520 +10051 10403 0.8670 +10051 10438 0.4020 +10051 10460 0.5240 +10051 10592 0.9990 +10051 10615 0.5030 +10051 10635 0.4360 +10051 10664 0.6030 +10051 10733 0.7620 +10051 10734 0.6460 +10051 10735 0.7720 +10051 10769 0.4240 +10051 10926 0.4590 +10051 10985 0.4010 +10051 11004 0.6460 +10051 11065 0.6380 +10051 11073 0.6270 +10051 11113 0.4450 +10051 11130 0.7110 +10051 11169 0.6380 +10051 11200 0.6830 +10051 22974 0.6160 +10051 22976 0.4710 +10051 23047 0.7370 +10051 23063 0.6270 +10051 23133 0.5550 +10051 23137 0.7740 +10051 23244 0.7370 +10051 23310 0.9990 +10051 23350 0.4010 +10051 23383 0.4850 +10051 23397 0.9990 +10051 23476 0.6350 +10051 23595 0.4160 +10051 23626 0.5260 +10051 23649 0.5830 +10051 24137 0.7250 +10051 25831 0.5240 +10051 25836 0.8280 +10051 25981 0.4710 +10051 26271 0.6000 +10051 26586 0.6290 +10051 27085 0.4100 +10051 27127 0.4870 +10051 29028 0.7660 +10051 29127 0.6290 +10051 29128 0.4110 +10051 29781 0.9990 +10051 51053 0.4040 +10051 51203 0.8910 +10051 51512 0.5560 +10051 51574 0.6160 +10051 51659 0.7350 +10051 53354 0.4890 +10051 54145 0.5750 +10051 54443 0.8060 +10051 54780 0.6070 +10051 54821 0.5630 +10051 54892 0.9990 +10051 54908 0.5260 +10051 54962 0.4700 +10051 55010 0.4810 +10051 55055 0.4910 +10051 55063 0.4160 +10051 55143 0.6100 +10051 55152 0.5820 +10051 55165 0.6160 +10051 55215 0.6220 +10051 55226 0.4150 +10051 55355 0.5220 +10051 55388 0.5920 +10051 55632 0.4910 +10051 55635 0.6020 +10051 55766 0.5400 +10051 56160 0.4300 +10051 56992 0.8600 +10051 57082 0.5660 +10051 57405 0.5620 +10051 57560 0.4580 +10051 57650 0.5700 +10051 57697 0.6640 +10051 63922 0.6710 +10051 63967 0.5180 +10051 64105 0.4380 +10051 64151 0.9990 +10051 64682 0.4020 +10051 79075 0.4680 +10051 79646 0.4640 +10051 79648 0.6210 +10051 79677 0.8310 +10051 79682 0.5520 +10051 79733 0.4320 +10051 79915 0.6420 +10051 79968 0.5120 +10051 80119 0.4200 +10051 80198 0.4110 +10051 81610 0.5980 +10051 81611 0.4100 +10051 81620 0.5080 +10051 81930 0.7450 +10051 83461 0.5870 +10051 83540 0.7730 +10051 83879 0.4060 +10051 84057 0.4750 +10051 84296 0.5970 +10051 84515 0.4480 +10051 84661 0.5020 +10051 84930 0.4740 +10051 84946 0.4200 +10051 85236 0.5910 +10051 94239 0.6880 +10051 113130 0.4650 +10051 114799 0.7260 +10051 124602 0.5320 +10051 126520 0.4240 +10051 128312 0.5840 +10051 147841 0.5460 +10051 151246 0.4610 +10051 151648 0.6170 +10051 151742 0.4210 +10051 152098 0.4160 +10051 157313 0.5580 +10051 157570 0.7390 +10051 166979 0.4010 +10051 197370 0.6160 +10051 203068 0.4470 +10051 255626 0.5830 +10051 259266 0.8090 +10051 283431 0.4100 +10051 286053 0.6530 +10051 374786 0.4120 +10051 402569 0.4050 +10051 440093 0.4110 +10051 440686 0.4110 +10051 474382 0.5400 +10051 493861 0.5530 +10051 642636 0.6690 +10051 653604 0.6950 +10052 10804 0.9290 +10052 23062 0.4950 +10052 24145 0.6010 +10052 26088 0.4240 +10052 27134 0.6610 +10052 27302 0.4540 +10052 56666 0.4900 +10052 56893 0.4240 +10052 57165 0.4070 +10052 57167 0.4590 +10052 57369 0.9310 +10052 57589 0.5490 +10052 81025 0.4690 +10052 83604 0.4620 +10052 84694 0.4600 +10052 116337 0.4500 +10052 125111 0.7930 +10052 127534 0.6100 +10052 163882 0.8030 +10052 219770 0.4400 +10052 349149 0.6720 +10052 375519 0.4200 +10052 100126572 0.9070 +10053 10239 0.7520 +10053 10618 0.8200 +10053 10717 0.8540 +10053 10947 0.5780 +10053 11154 0.7740 +10053 11187 0.4040 +10053 11198 0.4150 +10053 11276 0.8410 +10053 22905 0.6120 +10053 23062 0.4080 +10053 23214 0.4220 +10053 23396 0.4440 +10053 23431 0.8210 +10053 23557 0.4990 +10053 25977 0.6100 +10053 26052 0.5200 +10053 26258 0.4990 +10053 26504 0.4830 +10053 26985 0.5850 +10053 27131 0.5460 +10053 27237 0.4010 +10053 29924 0.7320 +10053 51429 0.4990 +10053 54497 0.7680 +10053 54845 0.5600 +10053 54885 0.5130 +10053 55040 0.6810 +10053 55317 0.6960 +10053 55330 0.4990 +10053 55707 0.5400 +10053 55745 0.6810 +10053 55814 0.4220 +10053 55966 0.4780 +10053 56479 0.5490 +10053 57111 0.6430 +10053 57402 0.4110 +10053 57510 0.4220 +10053 57704 0.4470 +10053 58513 0.5890 +10053 80115 0.5400 +10053 81492 0.4230 +10053 81567 0.4990 +10053 83988 0.5900 +10053 84062 0.4990 +10053 84251 0.5620 +10053 91056 0.5540 +10053 114569 0.4130 +10053 122616 0.5410 +10053 126695 0.4950 +10053 130340 0.9910 +10053 134829 0.5060 +10053 150350 0.5630 +10053 157807 0.5060 +10053 286451 0.5130 +10053 345895 0.4220 +10053 388552 0.5190 +10053 548596 0.4410 +10053 100526783 0.4420 +10054 10055 0.9990 +10054 10155 0.4240 +10054 10208 0.4990 +10054 10210 0.6000 +10054 10213 0.4930 +10054 10243 0.4660 +10054 10291 0.4940 +10054 10401 0.7880 +10054 10477 0.4790 +10054 10537 0.6380 +10054 10946 0.4580 +10054 10980 0.4230 +10054 10987 0.5990 +10054 11065 0.4910 +10054 11188 0.4990 +10054 11335 0.4070 +10054 11345 0.4910 +10054 22928 0.4420 +10054 23137 0.5930 +10054 23160 0.5180 +10054 23361 0.6480 +10054 23451 0.4950 +10054 23510 0.8870 +10054 23710 0.4860 +10054 25950 0.5510 +10054 26036 0.4630 +10054 26054 0.7050 +10054 26065 0.8200 +10054 26135 0.5200 +10054 26168 0.7750 +10054 27338 0.5180 +10054 27351 0.4910 +10054 29843 0.8720 +10054 29978 0.7150 +10054 29979 0.5800 +10054 51029 0.5310 +10054 51540 0.4300 +10054 51569 0.5130 +10054 51588 0.7040 +10054 51622 0.4030 +10054 51710 0.6470 +10054 55034 0.5150 +10054 55284 0.4680 +10054 55327 0.4170 +10054 55660 0.4680 +10054 55666 0.4050 +10054 55717 0.5000 +10054 55768 0.5390 +10054 55832 0.4440 +10054 56852 0.6800 +10054 57337 0.6620 +10054 57559 0.4300 +10054 57698 0.4060 +10054 57699 0.6100 +10054 59343 0.4320 +10054 64422 0.5980 +10054 65264 0.4160 +10054 79184 0.4060 +10054 80267 0.4870 +10054 80818 0.6470 +10054 81605 0.5690 +10054 84128 0.4420 +10054 84901 0.5540 +10054 115560 0.6480 +10054 123228 0.5210 +10054 126374 0.4160 +10054 133482 0.6010 +10054 140739 0.6280 +10054 148266 0.6580 +10054 205564 0.7230 +10054 284390 0.6470 +10054 284402 0.4480 +10054 286053 0.7440 +10054 387082 0.8760 +10055 10155 0.7180 +10055 10208 0.5260 +10055 10210 0.5180 +10055 10213 0.4770 +10055 10243 0.5020 +10055 10401 0.6980 +10055 10537 0.5470 +10055 10574 0.4630 +10055 10713 0.5140 +10055 10726 0.4150 +10055 10856 0.4480 +10055 10946 0.4860 +10055 10980 0.4150 +10055 10987 0.4260 +10055 11065 0.4280 +10055 11188 0.4950 +10055 11345 0.4240 +10055 22929 0.4340 +10055 23476 0.4030 +10055 23510 0.6630 +10055 23515 0.8570 +10055 23710 0.4130 +10055 25950 0.5680 +10055 26036 0.6010 +10055 26054 0.7010 +10055 26168 0.7320 +10055 27068 0.4930 +10055 27304 0.4690 +10055 27338 0.4410 +10055 27351 0.5730 +10055 29843 0.8970 +10055 51029 0.5810 +10055 51540 0.4310 +10055 51569 0.4740 +10055 51588 0.7340 +10055 51592 0.8130 +10055 54778 0.4120 +10055 55034 0.5150 +10055 55215 0.4730 +10055 55294 0.6300 +10055 56852 0.5310 +10055 57178 0.4070 +10055 57337 0.6910 +10055 57699 0.4380 +10055 64135 0.7150 +10055 64422 0.5720 +10055 79876 0.5110 +10055 80267 0.4700 +10055 81605 0.6190 +10055 83637 0.4020 +10055 84618 0.4450 +10055 84901 0.5570 +10055 123228 0.4390 +10055 140739 0.5090 +10055 205564 0.7610 +10055 286053 0.6010 +10055 286257 0.4090 +10055 387082 0.8930 +10056 10102 0.4070 +10056 10213 0.4540 +10056 10352 0.6060 +10056 10436 0.4190 +10056 10480 0.5040 +10056 10528 0.4150 +10056 10574 0.5510 +10056 10575 0.5770 +10056 10576 0.4320 +10056 10667 0.9970 +10056 10694 0.5450 +10056 11128 0.5770 +10056 11180 0.4330 +10056 11222 0.5810 +10056 22948 0.4180 +10056 22984 0.4880 +10056 23107 0.5300 +10056 23173 0.4140 +10056 23395 0.8160 +10056 23438 0.4210 +10056 23521 0.4980 +10056 24140 0.4790 +10056 25879 0.4880 +10056 25885 0.5250 +10056 25973 0.5610 +10056 26156 0.4480 +10056 27335 0.5010 +10056 28998 0.4800 +10056 29789 0.7020 +10056 51021 0.5180 +10056 51067 0.7050 +10056 51081 0.5650 +10056 51116 0.4670 +10056 51184 0.4130 +10056 51386 0.5410 +10056 51520 0.8140 +10056 51602 0.4090 +10056 51611 0.4230 +10056 51738 0.4220 +10056 51741 0.4270 +10056 54148 0.4690 +10056 54499 0.8840 +10056 54938 0.4840 +10056 54965 0.4500 +10056 54968 0.4030 +10056 55052 0.5130 +10056 55157 0.6590 +10056 55173 0.5550 +10056 55239 0.4060 +10056 55299 0.4600 +10056 55699 0.8050 +10056 55703 0.5190 +10056 57038 0.6780 +10056 57176 0.6020 +10056 57505 0.5070 +10056 60678 0.4900 +10056 63875 0.4570 +10056 64963 0.4040 +10056 64965 0.4180 +10056 64969 0.4440 +10056 64983 0.4400 +10056 65005 0.5140 +10056 65008 0.5070 +10056 65080 0.4080 +10056 79587 0.5680 +10056 79731 0.5100 +10056 80222 0.5880 +10056 84172 0.5600 +10056 84464 0.5250 +10056 89765 0.4160 +10056 91875 0.4050 +10056 91893 0.9360 +10056 92399 0.4870 +10056 92935 0.6740 +10056 116832 0.4170 +10056 117154 0.4360 +10056 123263 0.4350 +10056 123283 0.6720 +10056 124454 0.5080 +10056 126402 0.5540 +10056 130367 0.4640 +10056 138428 0.4040 +10056 140739 0.4280 +10056 196074 0.4120 +10056 255104 0.4680 +10056 255308 0.6280 +10056 285855 0.4260 +10056 347487 0.4520 +10056 100287482 0.4520 +10056 114483834 0.4330 +10057 10061 0.5830 +10057 10347 0.4340 +10057 10599 0.4930 +10057 10864 0.5460 +10057 11309 0.5860 +10057 23562 0.4220 +10057 28231 0.4340 +10057 28232 0.4220 +10057 28234 0.4150 +10057 51081 0.9440 +10057 55244 0.4390 +10057 55315 0.4020 +10057 55324 0.6160 +10057 55867 0.4620 +10057 56413 0.4430 +10057 64078 0.5540 +10057 64137 0.5650 +10057 114571 0.4860 +10057 154664 0.4790 +10057 340273 0.4380 +10057 114483834 0.5770 +10058 10060 0.6560 +10058 10061 0.6430 +10058 11194 0.8130 +10058 23479 0.4400 +10058 28982 0.6110 +10058 30061 0.4560 +10058 51312 0.6250 +10058 51522 0.5020 +10058 51629 0.4360 +10058 54977 0.6640 +10058 55089 0.4170 +10058 55324 0.5790 +10058 55652 0.5330 +10058 64220 0.4970 +10058 64240 0.9280 +10058 64241 0.9260 +10058 81689 0.4210 +10058 81894 0.4750 +10058 113235 0.4130 +10058 200205 0.4070 +10058 392255 0.4610 +10058 114483834 0.6430 +10059 10105 0.5740 +10059 10133 0.5290 +10059 10134 0.8620 +10059 10213 0.4090 +10059 10241 0.5160 +10059 10452 0.5090 +10059 10477 0.4070 +10059 10492 0.4150 +10059 10533 0.5500 +10059 10730 0.7100 +10059 10871 0.4460 +10059 10891 0.7340 +10059 10935 0.5380 +10059 10939 0.5380 +10059 10981 0.5010 +10059 10989 0.7980 +10059 11035 0.9420 +10059 11051 0.5330 +10059 11187 0.4140 +10059 11311 0.4080 +10059 11315 0.7260 +10059 11331 0.5510 +10059 11337 0.4850 +10059 11345 0.5060 +10059 22863 0.5550 +10059 22906 0.5410 +10059 23080 0.7210 +10059 23241 0.4940 +10059 23410 0.6400 +10059 23411 0.5330 +10059 23710 0.5090 +10059 23786 0.8400 +10059 24146 0.4210 +10059 25813 0.7740 +10059 25923 0.4550 +10059 26168 0.5190 +10059 26278 0.5980 +10059 26499 0.5570 +10059 27429 0.4140 +10059 50618 0.4380 +10059 51024 0.9990 +10059 51062 0.4450 +10059 51100 0.7350 +10059 51537 0.9030 +10059 51806 0.4170 +10059 54205 0.8620 +10059 54332 0.5990 +10059 54471 0.9980 +10059 54708 0.9810 +10059 54927 0.7360 +10059 55014 0.6970 +10059 55177 0.4830 +10059 55210 0.5490 +10059 55288 0.6840 +10059 55486 0.6690 +10059 55626 0.4030 +10059 55669 0.9580 +10059 55737 0.9000 +10059 56904 0.6270 +10059 56947 0.9990 +10059 56993 0.5130 +10059 57189 0.4440 +10059 57506 0.4350 +10059 64225 0.4480 +10059 64423 0.7580 +10059 64786 0.5480 +10059 65018 0.9470 +10059 66008 0.4030 +10059 78997 0.4550 +10059 79594 0.7270 +10059 79671 0.5200 +10059 80207 0.5250 +10059 81631 0.5960 +10059 84557 0.4530 +10059 84749 0.4390 +10059 84896 0.4150 +10059 89941 0.5580 +10059 90550 0.5890 +10059 91137 0.4520 +10059 92960 0.4960 +10059 114548 0.4260 +10059 115209 0.6600 +10059 120892 0.9430 +10059 125170 0.9990 +10059 129642 0.4940 +10059 133522 0.4430 +10059 135138 0.4220 +10059 137902 0.4660 +10059 139341 0.9350 +10059 140885 0.4560 +10059 192111 0.9930 +10059 197259 0.4680 +10059 201164 0.6370 +10059 201627 0.4280 +10059 205564 0.4800 +10059 404636 0.4950 +10059 100287932 0.4590 +10060 10142 0.4410 +10060 10345 0.4070 +10060 10347 0.4050 +10060 10349 0.5190 +10060 10350 0.5470 +10060 10351 0.5810 +10060 10529 0.4050 +10060 10560 0.4100 +10060 11155 0.7000 +10060 11194 0.6260 +10060 23171 0.6170 +10060 23439 0.4010 +10060 23630 0.6640 +10060 27063 0.4070 +10060 27295 0.4610 +10060 29098 0.6330 +10060 51422 0.4280 +10060 54664 0.5330 +10060 54795 0.5160 +10060 55324 0.4680 +10060 55800 0.6340 +10060 57158 0.4750 +10060 57646 0.4190 +10060 64137 0.4830 +10060 64240 0.6660 +10060 64241 0.6550 +10060 79188 0.4470 +10060 84665 0.5160 +10060 84955 0.6190 +10060 85366 0.4250 +10060 91624 0.6990 +10060 125972 0.4120 +10060 154664 0.5280 +10060 282996 0.8060 +10060 344905 0.4990 +10060 114483834 0.4230 +10061 10347 0.4050 +10061 10528 0.4370 +10061 10607 0.5160 +10061 10910 0.4870 +10061 10963 0.5860 +10061 10985 0.5800 +10061 11194 0.5780 +10061 11222 0.5740 +10061 11224 0.7940 +10061 23223 0.4610 +10061 23457 0.5360 +10061 23521 0.5330 +10061 23640 0.5110 +10061 25885 0.6260 +10061 26354 0.4070 +10061 28998 0.5330 +10061 29093 0.5320 +10061 51021 0.7800 +10061 51069 0.5230 +10061 51073 0.7160 +10061 51081 0.6200 +10061 51116 0.5090 +10061 51121 0.5450 +10061 51149 0.5540 +10061 51154 0.4630 +10061 51264 0.8040 +10061 51429 0.4250 +10061 51602 0.4120 +10061 54433 0.4290 +10061 54552 0.4140 +10061 54948 0.4930 +10061 55052 0.8120 +10061 55173 0.5670 +10061 55272 0.5900 +10061 55316 0.5170 +10061 55324 0.4090 +10061 63875 0.7610 +10061 63931 0.5130 +10061 64137 0.5590 +10061 64240 0.4420 +10061 64241 0.4470 +10061 64374 0.4930 +10061 64960 0.5610 +10061 64963 0.5350 +10061 64965 0.7660 +10061 64968 0.7560 +10061 64969 0.5640 +10061 64979 0.7630 +10061 64983 0.7730 +10061 65005 0.4890 +10061 65008 0.5270 +10061 65083 0.4290 +10061 79050 0.4410 +10061 79590 0.5330 +10061 79711 0.6130 +10061 83743 0.4740 +10061 84172 0.5150 +10061 84975 0.4130 +10061 85320 0.5670 +10061 89845 0.4970 +10061 94160 0.5400 +10061 126402 0.5600 +10061 140801 0.4930 +10061 154664 0.4910 +10061 219927 0.7910 +10061 285855 0.4980 +10061 345630 0.4100 +10061 347487 0.4690 +10061 387129 0.4940 +10061 100287482 0.4690 +10061 100505478 0.4940 +10061 100526842 0.5320 +10062 10123 0.5750 +10062 10196 0.5140 +10062 10197 0.9040 +10062 10499 0.8680 +10062 10891 0.5940 +10062 10948 0.5350 +10062 23028 0.6350 +10062 23054 0.4930 +10062 23112 0.5150 +10062 23411 0.5790 +10062 26523 0.5330 +10062 27161 0.5330 +10062 27327 0.5010 +10062 27329 0.6640 +10062 29116 0.7700 +10062 29881 0.4970 +10062 51085 0.6250 +10062 51311 0.4650 +10062 51586 0.4760 +10062 54659 0.5480 +10062 55818 0.5080 +10062 55937 0.4620 +10062 57678 0.6170 +10062 64240 0.9120 +10062 64241 0.9030 +10062 79071 0.4080 +10062 79365 0.4030 +10062 79718 0.5190 +10062 79966 0.5950 +10062 80765 0.5670 +10062 80820 0.5340 +10062 84301 0.4270 +10062 84649 0.4810 +10062 133522 0.6170 +10062 134429 0.5680 +10062 147323 0.5560 +10062 192669 0.5330 +10062 192670 0.5330 +10062 221656 0.5060 +10062 340273 0.4390 +10063 10440 0.4290 +10063 10452 0.6720 +10063 10476 0.5150 +10063 10935 0.4670 +10063 10975 0.6020 +10063 23369 0.6770 +10063 25813 0.4880 +10063 26504 0.4220 +10063 26515 0.5460 +10063 26517 0.7750 +10063 26519 0.7900 +10063 26520 0.7520 +10063 26521 0.7390 +10063 27089 0.6370 +10063 28958 0.5400 +10063 29093 0.4050 +10063 29796 0.6370 +10063 29928 0.6320 +10063 51021 0.4180 +10063 51023 0.4560 +10063 51079 0.4370 +10063 51142 0.6690 +10063 51241 0.7470 +10063 51263 0.5400 +10063 51287 0.8020 +10063 51499 0.4940 +10063 51506 0.4480 +10063 54205 0.5610 +10063 54539 0.4120 +10063 54543 0.4210 +10063 54927 0.5910 +10063 55681 0.6720 +10063 55744 0.5760 +10063 55753 0.4130 +10063 55967 0.5170 +10063 56942 0.6820 +10063 56993 0.4080 +10063 65260 0.6000 +10063 79145 0.8600 +10063 80775 0.4450 +10063 84056 0.6330 +10063 84269 0.6430 +10063 84701 0.5350 +10063 84987 0.7530 +10063 90639 0.9840 +10063 91419 0.5820 +10063 91647 0.4210 +10063 92609 0.4840 +10063 93974 0.4530 +10063 116228 0.5320 +10063 125965 0.4150 +10063 131118 0.4090 +10063 131474 0.9980 +10063 135154 0.4960 +10063 140823 0.4490 +10063 150684 0.5870 +10063 152100 0.6200 +10063 219927 0.4630 +10063 285521 0.6670 +10063 388753 0.8640 +10063 400916 0.6170 +10063 493753 0.8420 +10063 100131801 0.7850 +10063 100272147 0.5780 +10063 100303755 0.7270 +10066 10067 0.6130 +10066 10134 0.4770 +10066 10223 0.4130 +10066 10276 0.4390 +10066 10956 0.4440 +10066 54838 0.4750 +10066 56927 0.7660 +10066 57184 0.5130 +10066 79748 0.4430 +10066 81622 0.4600 +10066 84522 0.5920 +10066 84679 0.4010 +10066 119032 0.4630 +10066 153364 0.4130 +10066 374659 0.4770 +10067 10254 0.4240 +10067 10712 0.5640 +10067 51097 0.4130 +10067 51741 0.4010 +10067 55332 0.6960 +10067 57794 0.4550 +10067 80308 0.4270 +10067 80331 0.4280 +10067 128240 0.5000 +10067 200185 0.5580 +10068 10071 0.4220 +10068 10158 0.4030 +10068 26280 0.4360 +10068 26525 0.4790 +10068 27178 0.9700 +10068 56667 0.4200 +10068 58484 0.5140 +10068 59307 0.4800 +10068 79713 0.4380 +10068 80008 0.4960 +10068 84639 0.4860 +10068 90865 0.6550 +10068 114548 0.4050 +10068 140453 0.4220 +10068 200958 0.4110 +10068 282616 0.4300 +10068 282618 0.4310 +10069 10600 0.4700 +10069 10611 0.6220 +10069 10912 0.8640 +10069 23127 0.4860 +10069 23275 0.5710 +10069 26046 0.5280 +10069 51389 0.4530 +10069 54039 0.4530 +10069 54059 0.6310 +10069 55163 0.4510 +10069 55204 0.4470 +10069 56911 0.4710 +10069 79624 0.4260 +10069 126306 0.4250 +10069 146754 0.4170 +10069 196792 0.5700 +10069 346689 0.4630 +10071 10158 0.4240 +10071 10331 0.4300 +10071 10462 0.5420 +10071 10678 0.4210 +10071 11226 0.4490 +10071 11227 0.4490 +10071 26290 0.4150 +10071 27090 0.4830 +10071 29071 0.5050 +10071 50614 0.4430 +10071 51079 0.4240 +10071 51146 0.4100 +10071 51301 0.4480 +10071 51705 0.6460 +10071 55568 0.4860 +10071 56667 0.9800 +10071 56913 0.5010 +10071 57452 0.4010 +10071 63917 0.4020 +10071 64409 0.4060 +10071 79369 0.4050 +10071 79623 0.4260 +10071 79695 0.5110 +10071 84002 0.4710 +10071 84752 0.4130 +10071 93010 0.4830 +10071 94025 0.9230 +10071 113146 0.4120 +10071 114805 0.4130 +10071 117248 0.4310 +10071 118430 0.6280 +10071 140453 0.9290 +10071 143662 0.9500 +10071 146712 0.4780 +10071 192134 0.5290 +10071 200958 0.9380 +10071 256435 0.4170 +10071 374378 0.4020 +10071 374907 0.4170 +10071 375790 0.4540 +10071 394263 0.8820 +10071 442117 0.4230 +10071 653808 0.5090 +10071 727897 0.9360 +10071 100507679 0.7370 +10072 10404 0.4020 +10072 23549 0.5460 +10072 23552 0.5640 +10072 23649 0.5470 +10072 29952 0.6940 +10072 54878 0.4450 +10072 57486 0.5170 +10072 79258 0.4100 +10072 79728 0.6900 +10072 80789 0.4430 +10072 84181 0.5660 +10072 91039 0.4060 +10072 91419 0.4470 +10072 114884 0.6570 +10072 139285 0.6700 +10072 192111 0.5290 +10072 252969 0.4190 +10073 10236 0.5140 +10073 10492 0.4390 +10073 10514 0.5490 +10073 10556 0.4390 +10073 10762 0.5050 +10073 11097 0.4150 +10073 11218 0.8630 +10073 11260 0.4680 +10073 23165 0.4320 +10073 23225 0.4310 +10073 23279 0.4190 +10073 23511 0.5040 +10073 23534 0.4210 +10073 23633 0.5700 +10073 23636 0.5340 +10073 25813 0.4680 +10073 25929 0.7890 +10073 50628 0.7440 +10073 51103 0.4780 +10073 51283 0.4090 +10073 51808 0.8150 +10073 53371 0.4400 +10073 54433 0.4360 +10073 54704 0.4430 +10073 54859 0.5370 +10073 54952 0.4860 +10073 54960 0.5530 +10073 55599 0.5970 +10073 55706 0.4050 +10073 55746 0.4640 +10073 57122 0.4490 +10073 57510 0.6850 +10073 65083 0.6020 +10073 79023 0.4610 +10073 79595 0.4520 +10073 79760 0.7630 +10073 79833 0.7790 +10073 79902 0.4610 +10073 81929 0.5160 +10073 84206 0.8490 +10073 114034 0.8600 +10073 120787 0.5280 +10073 129401 0.4570 +10073 133482 0.4510 +10073 345222 0.4900 +10073 347732 0.4330 +10073 348995 0.4600 +10073 402569 0.5710 +10073 100101267 0.4230 +10075 10155 0.6050 +10075 10171 0.4320 +10075 10189 0.5200 +10075 10190 0.4720 +10075 10197 0.4480 +10075 10213 0.6930 +10075 10273 0.4480 +10075 10277 0.4920 +10075 10291 0.4690 +10075 10551 0.4200 +10075 10594 0.6430 +10075 10856 0.5220 +10075 10912 0.5060 +10075 10985 0.4300 +10075 11047 0.5860 +10075 11091 0.4650 +10075 11274 0.4410 +10075 11331 0.4780 +10075 22820 0.4300 +10075 22998 0.5180 +10075 23013 0.4150 +10075 23019 0.4860 +10075 23020 0.6790 +10075 23077 0.7220 +10075 23118 0.4610 +10075 23133 0.5100 +10075 23172 0.5640 +10075 23197 0.8110 +10075 23215 0.6240 +10075 23304 0.5890 +10075 23352 0.8810 +10075 23392 0.4070 +10075 23476 0.4240 +10075 23524 0.4100 +10075 23558 0.5980 +10075 25793 0.4060 +10075 25898 0.6640 +10075 25976 0.4710 +10075 26057 0.8050 +10075 26058 0.4730 +10075 26100 0.8310 +10075 26135 0.4220 +10075 26270 0.5120 +10075 26994 0.4040 +10075 27044 0.4150 +10075 27245 0.4050 +10075 27338 0.5020 +10075 27339 0.4070 +10075 27343 0.4180 +10075 29035 0.5220 +10075 29086 0.4350 +10075 29089 0.4750 +10075 29978 0.6370 +10075 29979 0.4700 +10075 51035 0.5800 +10075 51132 0.4590 +10075 51247 0.4060 +10075 51255 0.5590 +10075 51366 0.5370 +10075 51377 0.6510 +10075 51434 0.4270 +10075 51585 0.5020 +10075 51649 0.4040 +10075 51720 0.5200 +10075 51808 0.7980 +10075 54541 0.9560 +10075 54708 0.5430 +10075 54726 0.5450 +10075 54963 0.4730 +10075 54978 0.5290 +10075 55209 0.5830 +10075 55294 0.6440 +10075 55611 0.4630 +10075 55626 0.5880 +10075 55669 0.4090 +10075 55818 0.4060 +10075 55892 0.4030 +10075 56254 0.4380 +10075 56893 0.6270 +10075 57187 0.4740 +10075 57448 0.5200 +10075 57510 0.4810 +10075 57634 0.4320 +10075 57646 0.4200 +10075 57680 0.5580 +10075 58499 0.4080 +10075 63893 0.4370 +10075 64324 0.6440 +10075 64710 0.5040 +10075 65018 0.4340 +10075 65125 0.6420 +10075 79184 0.4090 +10075 79594 0.4840 +10075 80243 0.6060 +10075 80335 0.5480 +10075 80351 0.5440 +10075 81631 0.4490 +10075 81847 0.5610 +10075 84749 0.4750 +10075 90850 0.4060 +10075 91445 0.4610 +10075 139599 0.4180 +10075 158787 0.5200 +10075 161835 0.5940 +10075 192111 0.4450 +10075 197131 0.6390 +10075 221302 0.6160 +10075 254065 0.4280 +10075 283489 0.4470 +10075 344838 0.5410 +10075 404734 0.4190 +10076 11122 0.4520 +10076 22881 0.4430 +10076 29964 0.6960 +10076 51196 0.4660 +10076 54587 0.4500 +10076 54622 0.4180 +10076 55770 0.4050 +10076 57107 0.4040 +10076 57216 0.4590 +10076 64423 0.4130 +10076 81839 0.6660 +10076 84631 0.5110 +10076 90167 0.4670 +10076 132160 0.4640 +10076 144165 0.6230 +10076 149345 0.4570 +10076 152519 0.4200 +10076 166336 0.6760 +10077 10078 0.9290 +10077 10098 0.4860 +10077 10099 0.4270 +10077 10100 0.4460 +10077 10664 0.4170 +10077 10867 0.7150 +10077 10919 0.4220 +10077 27075 0.4780 +10077 29125 0.9360 +10077 64581 0.4680 +10077 64805 0.4950 +10077 64978 0.4510 +10077 90139 0.5050 +10077 144448 0.5030 +10077 284521 0.4020 +10077 340348 0.4770 +10077 441631 0.4560 +10077 100423062 0.5090 +10078 10286 0.5630 +10078 10421 0.8820 +10078 10450 0.6320 +10078 10594 0.9900 +10078 10664 0.4820 +10078 10907 0.8420 +10078 10919 0.5420 +10078 11319 0.8510 +10078 22938 0.7020 +10078 23020 0.9850 +10078 23154 0.6030 +10078 23640 0.5400 +10078 24144 0.5660 +10078 24148 0.8190 +10078 25949 0.7800 +10078 25980 0.9330 +10078 51116 0.5400 +10078 51319 0.6180 +10078 51340 0.7140 +10078 51362 0.6220 +10078 54795 0.4290 +10078 55094 0.7970 +10078 55280 0.5510 +10078 55607 0.4140 +10078 55622 0.5470 +10078 55696 0.5490 +10078 55702 0.4470 +10078 55837 0.8950 +10078 56949 0.6830 +10078 57461 0.7010 +10078 57713 0.5180 +10078 60625 0.8160 +10078 79797 0.4870 +10078 79959 0.5880 +10078 81469 0.4610 +10078 83475 0.5480 +10078 84138 0.5580 +10078 84292 0.6790 +10078 84296 0.5060 +10078 84619 0.4510 +10078 94104 0.6440 +10078 114879 0.7120 +10078 115708 0.4970 +10078 116225 0.4240 +10078 143884 0.6510 +10078 151903 0.7130 +10078 266812 0.4750 +10078 342979 0.4700 +10079 23033 0.5640 +10079 23041 0.6150 +10079 25843 0.4160 +10079 51621 0.4080 +10079 51693 0.4610 +10079 55691 0.4180 +10079 55754 0.6790 +10079 57553 0.4700 +10079 64005 0.5250 +10079 79608 0.4030 +10079 80148 0.4370 +10079 114327 0.4870 +10079 161291 0.6630 +10079 162427 0.4400 +10081 10236 0.4640 +10081 10262 0.7480 +10081 10992 0.7300 +10081 11066 0.9880 +10081 23450 0.7270 +10081 23451 0.7410 +10081 27250 0.4350 +10081 27288 0.5650 +10081 51639 0.7200 +10081 51690 0.5640 +10081 51741 0.4440 +10081 55193 0.5150 +10081 55285 0.5690 +10081 55571 0.4060 +10081 55599 0.8450 +10081 55954 0.9540 +10081 64793 0.4740 +10081 83443 0.7300 +10081 84844 0.8520 +10081 85437 0.9130 +10081 114803 0.5910 +10081 139804 0.5650 +10081 154007 0.9380 +10081 283742 0.5140 +10082 10085 0.4230 +10082 10675 0.5640 +10082 10855 0.5360 +10082 11285 0.5060 +10082 23213 0.4630 +10082 26020 0.4130 +10082 26035 0.6750 +10082 26229 0.5180 +10082 26577 0.4630 +10082 27087 0.4320 +10082 29967 0.4290 +10082 60495 0.5290 +10082 63827 0.6030 +10082 64131 0.5090 +10082 64132 0.5080 +10082 64579 0.6120 +10082 64711 0.6090 +10082 79739 0.4010 +10082 81544 0.4290 +10082 84466 0.4890 +10082 90161 0.5860 +10082 126792 0.4800 +10082 135152 0.4320 +10082 147111 0.5930 +10082 221914 0.4540 +10082 222537 0.6100 +10082 266722 0.6820 +10082 375790 0.6190 +10083 10518 0.8190 +10083 10804 0.4770 +10083 11078 0.5110 +10083 11190 0.5610 +10083 22981 0.5320 +10083 23034 0.4550 +10083 23276 0.4010 +10083 23562 0.4100 +10083 25861 0.9500 +10083 25979 0.4220 +10083 26090 0.4710 +10083 26160 0.4040 +10083 26297 0.7720 +10083 51168 0.8550 +10083 53841 0.9090 +10083 53904 0.6430 +10083 54825 0.9000 +10083 55095 0.4520 +10083 55591 0.8290 +10083 56649 0.4260 +10083 57192 0.4370 +10083 64072 0.9990 +10083 64699 0.5410 +10083 65217 0.9920 +10083 79574 0.6160 +10083 79955 0.9150 +10083 83605 0.5840 +10083 83715 0.7360 +10083 83878 0.9260 +10083 84059 0.9900 +10083 84140 0.4430 +10083 92211 0.4610 +10083 117531 0.7630 +10083 117532 0.7500 +10083 119467 0.5280 +10083 124590 0.9990 +10083 125336 0.5530 +10083 126326 0.5900 +10083 133482 0.4200 +10083 140706 0.4080 +10083 146183 0.5010 +10083 148823 0.4190 +10083 160335 0.4250 +10083 161497 0.6280 +10083 167691 0.5380 +10083 222662 0.7860 +10083 246213 0.5870 +10083 253827 0.4400 +10083 257629 0.9950 +10083 259236 0.6440 +10083 286262 0.5490 +10083 286676 0.4240 +10083 340990 0.8560 +10083 346007 0.4510 +10083 375611 0.5280 +10083 388551 0.4830 +10083 389207 0.7770 +10083 494513 0.4930 +10083 643226 0.4970 +10083 645104 0.5550 +10084 10181 0.4380 +10084 10189 0.8190 +10084 10245 0.4250 +10084 10247 0.6100 +10084 10250 0.8110 +10084 10286 0.8190 +10084 10393 0.4230 +10084 10421 0.5720 +10084 10465 0.4210 +10084 10524 0.4810 +10084 10589 0.4400 +10084 10614 0.6990 +10084 10713 0.4210 +10084 10907 0.9940 +10084 10915 0.8310 +10084 11017 0.4310 +10084 11030 0.4600 +10084 11052 0.4500 +10084 11141 0.4460 +10084 11157 0.4100 +10084 11193 0.9130 +10084 22919 0.4410 +10084 23152 0.5410 +10084 23384 0.4100 +10084 23451 0.4330 +10084 23476 0.5270 +10084 23517 0.8080 +10084 23524 0.8290 +10084 23658 0.4100 +10084 24140 0.8670 +10084 24148 0.8390 +10084 25804 0.5840 +10084 25894 0.4930 +10084 26121 0.4790 +10084 26227 0.4860 +10084 27258 0.5150 +10084 27339 0.8280 +10084 28952 0.4770 +10084 29978 0.4980 +10084 51319 0.5040 +10084 51362 0.8040 +10084 51406 0.4920 +10084 51428 0.6260 +10084 51503 0.8190 +10084 51593 0.8260 +10084 51690 0.4800 +10084 51691 0.4440 +10084 51729 0.9940 +10084 51759 0.4450 +10084 54957 0.5600 +10084 55234 0.8710 +10084 55322 0.5680 +10084 55636 0.4220 +10084 55660 0.4350 +10084 56259 0.8500 +10084 56893 0.5740 +10084 57794 0.5220 +10084 57819 0.5590 +10084 58517 0.4360 +10084 59286 0.8900 +10084 79084 0.6230 +10084 79171 0.5530 +10084 79954 0.4530 +10084 84337 0.4560 +10084 84950 0.8680 +10084 84991 0.6530 +10084 85363 0.4060 +10084 85364 0.5030 +10084 115004 0.7680 +10084 116540 0.4730 +10084 151903 0.5630 +10084 153527 0.8820 +10084 342371 0.6880 +10085 11107 0.4540 +10085 11322 0.4120 +10085 145864 0.4190 +10085 225689 0.4080 +10085 341208 0.5410 +10085 730051 0.4510 +10086 145447 0.5440 +10086 347541 0.4170 +10086 404734 0.4590 +10086 646603 0.5300 +10086 729330 0.9700 +10087 10313 0.5460 +10087 10395 0.4130 +10087 10558 0.6630 +10087 10809 0.6910 +10087 10948 0.7290 +10087 23421 0.4200 +10087 23683 0.7510 +10087 23760 0.4880 +10087 25865 0.7470 +10087 26031 0.4100 +10087 26499 0.7490 +10087 29956 0.4650 +10087 51010 0.4680 +10087 51228 0.6610 +10087 55177 0.4310 +10087 55304 0.6500 +10087 56624 0.4520 +10087 56848 0.4960 +10087 56910 0.6910 +10087 57142 0.5540 +10087 58488 0.7980 +10087 64781 0.6660 +10087 65977 0.4140 +10087 79603 0.4660 +10087 80183 0.4680 +10087 80765 0.6470 +10087 80772 0.5100 +10087 80781 0.7970 +10087 81569 0.5370 +10087 83723 0.4850 +10087 83930 0.4610 +10087 90627 0.4250 +10087 91012 0.4620 +10087 114879 0.5050 +10087 114882 0.4900 +10087 125981 0.4450 +10087 134429 0.6460 +10087 142891 0.5190 +10087 147323 0.4720 +10087 151742 0.6640 +10087 158747 0.5990 +10087 166929 0.4850 +10087 204219 0.4170 +10087 253782 0.5420 +10087 259230 0.5740 +10087 340485 0.4370 +10087 390792 0.4100 +10089 23625 0.5180 +10089 50801 0.6650 +10089 51305 0.6600 +10089 51350 0.9540 +10089 54207 0.6040 +10089 55281 0.4040 +10089 56659 0.7150 +10089 56660 0.7170 +10089 60598 0.6760 +10089 83795 0.6010 +10089 89822 0.6120 +10089 220359 0.4920 +10089 254102 0.4700 +10089 283130 0.4430 +10089 338567 0.8430 +10090 10675 0.4170 +10090 11285 0.4040 +10090 22856 0.4010 +10090 26035 0.6050 +10090 29940 0.6090 +10090 50515 0.4340 +10090 55501 0.5000 +10090 56548 0.4050 +10090 63827 0.4310 +10090 64132 0.4570 +10090 64579 0.4910 +10090 64711 0.4200 +10090 222537 0.5260 +10092 10093 0.9990 +10092 10094 0.9990 +10092 10095 0.9990 +10092 10096 0.9990 +10092 10097 0.9990 +10092 10109 0.9990 +10092 10120 0.4180 +10092 10121 0.5100 +10092 10152 0.6650 +10092 10163 0.9430 +10092 10458 0.6340 +10092 10487 0.5480 +10092 10550 0.4570 +10092 10552 0.9990 +10092 10787 0.7790 +10092 10810 0.7220 +10092 10881 0.4350 +10092 23149 0.5120 +10092 23191 0.7710 +10092 26999 0.7570 +10092 28988 0.6680 +10092 29978 0.4010 +10092 51517 0.9870 +10092 54443 0.4950 +10092 55845 0.9440 +10092 55860 0.5100 +10092 57180 0.9790 +10092 81027 0.4820 +10092 81873 0.9470 +10092 90507 0.6870 +10092 115548 0.5220 +10092 147179 0.6420 +10092 151306 0.8260 +10092 203068 0.5390 +10092 345456 0.4200 +10092 348110 0.8570 +10092 375189 0.4780 +10092 390714 0.4990 +10092 644150 0.6030 +10092 653857 0.8780 +10092 728378 0.4420 +10092 100526693 0.7450 +10093 10094 0.9990 +10093 10095 0.9990 +10093 10096 0.9990 +10093 10097 0.9990 +10093 10109 0.9990 +10093 10121 0.5140 +10093 10152 0.5130 +10093 10163 0.9210 +10093 10458 0.5880 +10093 10487 0.4030 +10093 10552 0.9990 +10093 10787 0.6960 +10093 10810 0.6670 +10093 23149 0.5000 +10093 23191 0.7150 +10093 26999 0.6910 +10093 28988 0.4490 +10093 51517 0.9840 +10093 55845 0.9550 +10093 55860 0.4090 +10093 57180 0.9770 +10093 79008 0.8650 +10093 79180 0.5420 +10093 81873 0.9990 +10093 90507 0.8750 +10093 114824 0.4980 +10093 115548 0.4990 +10093 147179 0.6070 +10093 151306 0.9170 +10093 345651 0.4040 +10093 348110 0.8170 +10093 390714 0.4990 +10093 548593 0.8630 +10093 644150 0.5590 +10093 653857 0.8700 +10094 10095 0.9990 +10094 10096 0.9990 +10094 10097 0.9990 +10094 10109 0.9990 +10094 10121 0.5680 +10094 10152 0.6890 +10094 10163 0.9460 +10094 10458 0.6650 +10094 10476 0.4360 +10094 10552 0.9990 +10094 10787 0.8020 +10094 10810 0.7710 +10094 11151 0.4280 +10094 23149 0.5030 +10094 23191 0.8380 +10094 23274 0.4730 +10094 23603 0.5270 +10094 26999 0.7710 +10094 28988 0.5230 +10094 29902 0.4130 +10094 51184 0.4890 +10094 51434 0.4460 +10094 51517 0.9740 +10094 51699 0.4020 +10094 54443 0.4150 +10094 55845 0.9650 +10094 55860 0.4590 +10094 55930 0.4510 +10094 56776 0.4040 +10094 57175 0.4790 +10094 57180 0.9900 +10094 57631 0.6100 +10094 79180 0.5290 +10094 81704 0.7870 +10094 81873 0.9990 +10094 85440 0.5340 +10094 90507 0.8750 +10094 91612 0.6230 +10094 93973 0.4230 +10094 115548 0.5040 +10094 147179 0.7100 +10094 151306 0.9170 +10094 345456 0.4140 +10094 345651 0.4370 +10094 348110 0.8550 +10094 375189 0.4590 +10094 390714 0.4990 +10094 644150 0.5640 +10094 653857 0.9280 +10094 728378 0.4620 +10094 100526693 0.8270 +10095 10096 0.9990 +10095 10097 0.9990 +10095 10109 0.9990 +10095 10121 0.4630 +10095 10152 0.5660 +10095 10163 0.9370 +10095 10383 0.4100 +10095 10458 0.6110 +10095 10471 0.5430 +10095 10487 0.4190 +10095 10552 0.9850 +10095 10677 0.4040 +10095 10787 0.7140 +10095 10810 0.6980 +10095 10880 0.4260 +10095 11151 0.6130 +10095 23191 0.7300 +10095 23265 0.5690 +10095 23269 0.5240 +10095 23526 0.4470 +10095 23607 0.4460 +10095 26999 0.7400 +10095 29063 0.5240 +10095 30011 0.4740 +10095 30833 0.5330 +10095 51184 0.5240 +10095 51466 0.4080 +10095 51517 0.9100 +10095 55125 0.4620 +10095 55644 0.5390 +10095 55845 0.9280 +10095 57110 0.4820 +10095 57180 0.9640 +10095 57645 0.4360 +10095 64778 0.5160 +10095 65083 0.5240 +10095 81704 0.4320 +10095 81873 0.9990 +10095 83548 0.5240 +10095 84141 0.4260 +10095 84790 0.4690 +10095 84950 0.4220 +10095 90507 0.6040 +10095 90956 0.4130 +10095 112858 0.5630 +10095 120892 0.5120 +10095 140465 0.4860 +10095 147179 0.5660 +10095 151306 0.6830 +10095 203068 0.4350 +10095 345651 0.4170 +10095 348110 0.8370 +10095 375189 0.4290 +10095 390714 0.4990 +10095 644150 0.5020 +10095 653857 0.7280 +10095 728378 0.4110 +10095 100131801 0.4240 +10095 100526693 0.8820 +10096 10097 0.9990 +10096 10109 0.9990 +10096 10121 0.5440 +10096 10152 0.6290 +10096 10163 0.9530 +10096 10190 0.4310 +10096 10376 0.4650 +10096 10383 0.4360 +10096 10458 0.7510 +10096 10487 0.8610 +10096 10540 0.4320 +10096 10552 0.9990 +10096 10574 0.4330 +10096 10576 0.6040 +10096 10677 0.8830 +10096 10694 0.4430 +10096 10728 0.6360 +10096 10787 0.6720 +10096 10810 0.7030 +10096 11034 0.5630 +10096 11151 0.6210 +10096 22919 0.6810 +10096 23022 0.4070 +10096 23149 0.5620 +10096 23191 0.7300 +10096 23603 0.6730 +10096 26999 0.6420 +10096 28988 0.6730 +10096 29766 0.4060 +10096 51429 0.5690 +10096 51517 0.9720 +10096 51571 0.4400 +10096 54443 0.5130 +10096 54920 0.4210 +10096 55711 0.4010 +10096 55845 0.7150 +10096 55860 0.4100 +10096 55884 0.4650 +10096 55930 0.5780 +10096 56776 0.6370 +10096 56943 0.4150 +10096 57175 0.4720 +10096 57180 0.9360 +10096 81873 0.9980 +10096 84516 0.4130 +10096 84656 0.4690 +10096 84790 0.4400 +10096 91612 0.6500 +10096 115548 0.5650 +10096 120892 0.5520 +10096 123720 0.9160 +10096 140465 0.4240 +10096 147179 0.6730 +10096 151306 0.6970 +10096 203068 0.4210 +10096 345456 0.7000 +10096 348110 0.9290 +10096 375189 0.7530 +10096 390714 0.5100 +10096 644150 0.6080 +10096 653857 0.6540 +10096 100526693 0.7410 +10097 10109 0.9990 +10097 10120 0.4890 +10097 10121 0.6240 +10097 10152 0.6880 +10097 10163 0.9880 +10097 10409 0.4660 +10097 10458 0.8440 +10097 10487 0.6490 +10097 10540 0.4550 +10097 10552 0.9990 +10097 10558 0.4020 +10097 10671 0.4020 +10097 10677 0.4380 +10097 10694 0.4040 +10097 10726 0.4360 +10097 10733 0.4340 +10097 10787 0.8180 +10097 10810 0.7310 +10097 10880 0.4480 +10097 10881 0.4480 +10097 11034 0.6190 +10097 11151 0.7070 +10097 11344 0.4890 +10097 11346 0.4750 +10097 22919 0.4590 +10097 22948 0.6640 +10097 23002 0.4430 +10097 23048 0.4390 +10097 23149 0.5900 +10097 23191 0.8070 +10097 23242 0.5070 +10097 23406 0.5220 +10097 23603 0.8990 +10097 26330 0.4200 +10097 26999 0.7440 +10097 28988 0.6890 +10097 29766 0.4740 +10097 51164 0.4040 +10097 51199 0.4790 +10097 51429 0.5250 +10097 51517 0.9710 +10097 51652 0.4300 +10097 54443 0.5650 +10097 54874 0.4740 +10097 55294 0.5220 +10097 55696 0.4020 +10097 55737 0.5450 +10097 55845 0.8130 +10097 55860 0.4790 +10097 55930 0.4300 +10097 56776 0.4050 +10097 57175 0.7800 +10097 57180 0.9990 +10097 58513 0.4500 +10097 64423 0.5630 +10097 64431 0.4300 +10097 79031 0.5890 +10097 79180 0.5420 +10097 79901 0.4320 +10097 81569 0.4480 +10097 81624 0.4340 +10097 81873 0.9990 +10097 84517 0.4480 +10097 84940 0.4080 +10097 85477 0.6140 +10097 91612 0.7810 +10097 92521 0.4230 +10097 115548 0.5330 +10097 120892 0.5520 +10097 123720 0.9430 +10097 125988 0.4150 +10097 126353 0.4220 +10097 130560 0.4330 +10097 139741 0.4480 +10097 140465 0.4340 +10097 140625 0.4480 +10097 147179 0.7460 +10097 151306 0.8980 +10097 284382 0.4480 +10097 345456 0.8870 +10097 345651 0.4930 +10097 348110 0.8490 +10097 375189 0.9030 +10097 390714 0.5100 +10097 445582 0.4480 +10097 644150 0.7870 +10097 653269 0.4480 +10097 653857 0.9980 +10097 728378 0.5600 +10097 100287284 0.4060 +10097 100526693 0.7770 +10097 100526767 0.4160 +10098 10867 0.4120 +10098 23555 0.7210 +10098 27075 0.5340 +10098 51522 0.4500 +10098 55069 0.4720 +10098 57451 0.4040 +10098 81619 0.6470 +10098 83891 0.4200 +10098 93185 0.5430 +10098 116151 0.4510 +10098 127254 0.7420 +10098 196294 0.4220 +10098 221955 0.4450 +10098 285555 0.4110 +10098 339983 0.4100 +10098 340348 0.5540 +10099 49855 0.4310 +10099 64241 0.6050 +10099 340348 0.4590 +10100 10444 0.4190 +10100 10867 0.4100 +10100 23161 0.5770 +10100 23245 0.4100 +10100 23554 0.4150 +10100 23555 0.5010 +10100 26526 0.4180 +10100 27075 0.4410 +10100 55966 0.4190 +10100 79783 0.4810 +10100 144110 0.4560 +10100 144448 0.5390 +10100 171546 0.4140 +10100 221692 0.5010 +10101 10539 0.4430 +10101 23479 0.5310 +10101 25797 0.6040 +10101 26472 0.4710 +10101 26502 0.5120 +10101 27158 0.7950 +10101 27247 0.4490 +10101 29944 0.4830 +10101 51647 0.7170 +10101 51750 0.5820 +10101 54995 0.4560 +10101 55572 0.8040 +10101 55968 0.8300 +10101 57019 0.8240 +10101 57128 0.4260 +10101 64210 0.7050 +10101 64223 0.4690 +10101 64428 0.9020 +10101 65993 0.5000 +10101 79621 0.4230 +10101 80224 0.6250 +10101 81689 0.4150 +10101 81889 0.4830 +10101 83990 0.5770 +10101 84191 0.4230 +10101 137902 0.5420 +10101 150274 0.5050 +10101 285367 0.4930 +10102 10128 0.4800 +10102 10240 0.5920 +10102 10352 0.5470 +10102 10469 0.4500 +10102 10473 0.6590 +10102 10478 0.4570 +10102 10573 0.5880 +10102 10667 0.5960 +10102 10730 0.4470 +10102 10765 0.4620 +10102 10845 0.4920 +10102 10884 0.6420 +10102 10928 0.4740 +10102 10939 0.4750 +10102 10988 0.6890 +10102 11128 0.5540 +10102 11222 0.8760 +10102 11224 0.8870 +10102 22868 0.4290 +10102 22984 0.9390 +10102 23107 0.6090 +10102 23135 0.5510 +10102 23173 0.6780 +10102 23204 0.5240 +10102 23395 0.7960 +10102 23438 0.5690 +10102 23521 0.7490 +10102 23640 0.6720 +10102 25813 0.7870 +10102 25821 0.4070 +10102 25885 0.5420 +10102 25895 0.7380 +10102 25973 0.7390 +10102 26164 0.5150 +10102 26284 0.7670 +10102 26589 0.8980 +10102 26995 0.4750 +10102 27068 0.6800 +10102 27349 0.4080 +10102 28957 0.6330 +10102 28973 0.6850 +10102 28977 0.5720 +10102 28989 0.4450 +10102 28998 0.8890 +10102 29074 0.5890 +10102 29078 0.4100 +10102 29088 0.7740 +10102 29093 0.8900 +10102 29927 0.7320 +10102 29960 0.4770 +10102 50808 0.4320 +10102 51021 0.9940 +10102 51023 0.6420 +10102 51067 0.8220 +10102 51069 0.8810 +10102 51073 0.9290 +10102 51081 0.9310 +10102 51116 0.8770 +10102 51121 0.7270 +10102 51149 0.5390 +10102 51154 0.8270 +10102 51204 0.8790 +10102 51253 0.6800 +10102 51258 0.6400 +10102 51263 0.6160 +10102 51264 0.9570 +10102 51287 0.5580 +10102 51318 0.5930 +10102 51373 0.5690 +10102 51520 0.7620 +10102 51642 0.6470 +10102 51649 0.6540 +10102 51650 0.5730 +10102 51727 0.4020 +10102 54148 0.6720 +10102 54460 0.5300 +10102 54516 0.5760 +10102 54534 0.5510 +10102 54802 0.4550 +10102 54840 0.5150 +10102 54931 0.4290 +10102 54938 0.5990 +10102 54948 0.8450 +10102 54998 0.5820 +10102 55005 0.4990 +10102 55037 0.6440 +10102 55052 0.9490 +10102 55143 0.4800 +10102 55157 0.6530 +10102 55168 0.6170 +10102 55173 0.9200 +10102 55176 0.7300 +10102 55178 0.4050 +10102 55272 0.8210 +10102 55278 0.4620 +10102 55316 0.7070 +10102 55591 0.7360 +10102 55687 0.6150 +10102 55699 0.6470 +10102 55703 0.7090 +10102 56474 0.4350 +10102 56648 0.5440 +10102 56945 0.9660 +10102 57038 0.6840 +10102 57129 0.6990 +10102 57136 0.6900 +10102 57176 0.6340 +10102 57505 0.7800 +10102 60488 0.6560 +10102 60528 0.4420 +10102 60558 0.6370 +10102 60678 0.4200 +10102 63875 0.9580 +10102 63931 0.8820 +10102 64146 0.6180 +10102 64374 0.6590 +10102 64432 0.6010 +10102 64928 0.6460 +10102 64949 0.5580 +10102 64951 0.5950 +10102 64960 0.8100 +10102 64963 0.9100 +10102 64965 0.9640 +10102 64968 0.9400 +10102 64969 0.8880 +10102 64975 0.5370 +10102 64976 0.5800 +10102 64978 0.6260 +10102 64979 0.8630 +10102 64981 0.5410 +10102 64983 0.9480 +10102 65003 0.8800 +10102 65005 0.9500 +10102 65008 0.8850 +10102 65080 0.8240 +10102 65121 0.4330 +10102 65122 0.4330 +10102 65993 0.7560 +10102 78988 0.5280 +10102 79587 0.6180 +10102 79590 0.8910 +10102 79631 0.7220 +10102 79728 0.4610 +10102 79731 0.6890 +10102 79947 0.5100 +10102 80222 0.5920 +10102 80273 0.6380 +10102 80324 0.7250 +10102 81570 0.4820 +10102 84172 0.7200 +10102 84311 0.7140 +10102 84340 0.8340 +10102 84545 0.6460 +10102 84705 0.5020 +10102 85476 0.9930 +10102 87178 0.7840 +10102 90480 0.5310 +10102 91574 0.5810 +10102 91875 0.4380 +10102 92170 0.4580 +10102 92259 0.5520 +10102 92399 0.9920 +10102 92935 0.6060 +10102 93974 0.8530 +10102 112817 0.7700 +10102 115416 0.6850 +10102 116150 0.5040 +10102 116540 0.5560 +10102 116541 0.5520 +10102 118487 0.6110 +10102 119559 0.4740 +10102 122622 0.5290 +10102 122704 0.5550 +10102 123263 0.6120 +10102 123283 0.5620 +10102 124454 0.7040 +10102 124995 0.5970 +10102 125170 0.6490 +10102 126402 0.7210 +10102 128308 0.6600 +10102 137362 0.4190 +10102 139596 0.4720 +10102 140801 0.6570 +10102 142940 0.4240 +10102 143244 0.5260 +10102 219402 0.4900 +10102 219927 0.9610 +10102 221823 0.4370 +10102 285855 0.6480 +10102 343068 0.4330 +10102 343070 0.4330 +10102 347487 0.6830 +10102 387129 0.6420 +10102 387712 0.4520 +10102 390999 0.4330 +10102 391002 0.4330 +10102 400735 0.4330 +10102 400736 0.4330 +10102 440560 0.4330 +10102 440561 0.4330 +10102 441873 0.4330 +10102 641776 0.5190 +10102 643909 0.5190 +10102 645359 0.4330 +10102 653619 0.4330 +10102 728524 0.5190 +10102 729528 0.4330 +10102 100287482 0.6830 +10102 100505478 0.6420 +10102 100526842 0.7310 +10102 100996746 0.5190 +10102 101929983 0.4330 +10102 105180390 0.5190 +10102 105180391 0.5190 +10103 10551 0.5920 +10103 10560 0.7490 +10103 27075 0.5570 +10103 51192 0.4470 +10103 80736 0.4430 +10103 92211 0.5660 +10103 113540 0.5700 +10103 116173 0.4450 +10103 116441 0.5050 +10103 126353 0.4020 +10103 146225 0.4470 +10103 152189 0.4510 +10105 10131 0.7660 +10105 10165 0.4320 +10105 10294 0.4220 +10105 10367 0.5120 +10105 10450 0.4290 +10105 10452 0.7280 +10105 10465 0.5590 +10105 10891 0.5750 +10105 11035 0.5690 +10105 11222 0.4670 +10105 22933 0.5640 +10105 23405 0.4270 +10105 23408 0.4160 +10105 23410 0.6540 +10105 23411 0.4480 +10105 25828 0.6180 +10105 26589 0.4110 +10105 27306 0.4630 +10105 27429 0.4710 +10105 28998 0.4630 +10105 29103 0.7120 +10105 51024 0.5520 +10105 51248 0.7210 +10105 51314 0.4070 +10105 51318 0.4720 +10105 54205 0.9830 +10105 55013 0.4360 +10105 55669 0.5250 +10105 56947 0.4310 +10105 57129 0.4400 +10105 57794 0.4030 +10105 63875 0.4150 +10105 63933 0.4800 +10105 65003 0.4920 +10105 65018 0.5050 +10105 79590 0.4390 +10105 79594 0.5250 +10105 79718 0.4400 +10105 79922 0.4290 +10105 80024 0.5950 +10105 80221 0.4620 +10105 83447 0.9600 +10105 84134 0.6110 +10105 84220 0.5570 +10105 84545 0.4250 +10105 90550 0.6260 +10105 92170 0.4390 +10105 92399 0.5000 +10105 93974 0.4020 +10105 115416 0.4100 +10105 116540 0.5060 +10105 117159 0.5400 +10105 120892 0.4310 +10105 137902 0.5200 +10105 144100 0.7300 +10105 192111 0.4530 +10105 197259 0.5240 +10105 219927 0.4410 +10105 221154 0.4530 +10105 257202 0.5710 +10105 285190 0.4960 +10105 340348 0.7200 +10105 493869 0.5810 +10105 642489 0.6450 +10105 653489 0.5590 +10105 654364 0.4180 +10105 727851 0.4910 +10105 729540 0.5550 +10105 729857 0.4910 +10106 10217 0.6400 +10106 10956 0.5180 +10106 11075 0.4240 +10106 23052 0.4290 +10106 26512 0.4200 +10106 51412 0.4360 +10106 54469 0.4330 +10106 54808 0.4520 +10106 54829 0.8410 +10106 55274 0.4590 +10106 55291 0.4170 +10106 55700 0.4730 +10106 58190 0.7110 +10106 78994 0.4440 +10106 83461 0.8490 +10106 166863 0.4390 +10107 10324 0.4920 +10107 10661 0.6040 +10107 11027 0.4210 +10107 23087 0.5970 +10107 23274 0.4400 +10107 23762 0.4500 +10107 29110 0.4350 +10107 29123 0.4010 +10107 50852 0.6890 +10107 51327 0.4590 +10107 54540 0.5250 +10107 54765 0.6350 +10107 55217 0.4260 +10107 56244 0.4060 +10107 57547 0.4220 +10107 64927 0.5030 +10107 80742 0.4540 +10107 140576 0.4030 +10107 222642 0.5820 +10107 222696 0.4770 +10107 442184 0.4350 +10109 10120 0.4440 +10109 10121 0.4920 +10109 10152 0.6460 +10109 10163 0.9570 +10109 10169 0.5720 +10109 10458 0.6920 +10109 10487 0.6650 +10109 10552 0.9990 +10109 10681 0.4350 +10109 10787 0.8260 +10109 10810 0.7390 +10109 11151 0.4100 +10109 23149 0.4990 +10109 23191 0.8420 +10109 23384 0.4750 +10109 23451 0.4860 +10109 23603 0.4500 +10109 26999 0.8010 +10109 28988 0.6950 +10109 51019 0.4010 +10109 51517 0.9760 +10109 54434 0.4130 +10109 54443 0.4390 +10109 55054 0.4170 +10109 55191 0.5900 +10109 55612 0.4680 +10109 55845 0.9590 +10109 55860 0.4170 +10109 55930 0.4620 +10109 57175 0.6020 +10109 57180 0.9820 +10109 59345 0.4920 +10109 65108 0.4060 +10109 79180 0.5990 +10109 81873 0.9990 +10109 103910 0.5510 +10109 115548 0.5000 +10109 120892 0.5170 +10109 123720 0.4140 +10109 132014 0.4200 +10109 147179 0.6260 +10109 151306 0.6740 +10109 339145 0.4220 +10109 345456 0.4950 +10109 345651 0.4080 +10109 348110 0.8980 +10109 375189 0.5450 +10109 390714 0.5950 +10109 400935 0.4610 +10109 644150 0.5780 +10109 653857 0.8910 +10109 100526693 0.8560 +10110 10476 0.5920 +10110 11059 0.5350 +10110 11140 0.4930 +10110 23071 0.4360 +10110 23327 0.6770 +10110 23678 0.9340 +10110 26013 0.4300 +10110 53635 0.4140 +10110 55143 0.4160 +10110 57521 0.4040 +10110 79109 0.4980 +10110 92579 0.4080 +10110 253260 0.4020 +10111 10524 0.6840 +10111 10635 0.5100 +10111 10714 0.5370 +10111 10721 0.5890 +10111 11073 0.6610 +10111 11169 0.5450 +10111 11200 0.7850 +10111 22976 0.8010 +10111 23030 0.4990 +10111 23137 0.6040 +10111 23476 0.5160 +10111 23514 0.5040 +10111 23626 0.7380 +10111 23774 0.4210 +10111 25913 0.5450 +10111 26277 0.5130 +10111 29086 0.5320 +10111 51032 0.4140 +10111 51426 0.5550 +10111 51455 0.4380 +10111 51588 0.5360 +10111 51720 0.5680 +10111 51750 0.4580 +10111 54107 0.4610 +10111 54145 0.5120 +10111 54386 0.9000 +10111 54841 0.4230 +10111 55183 0.5920 +10111 55766 0.5130 +10111 56655 0.4060 +10111 56852 0.6090 +10111 56916 0.4550 +10111 57804 0.4050 +10111 60561 0.8410 +10111 64421 0.7250 +10111 79184 0.5780 +10111 79677 0.4290 +10111 79693 0.4030 +10111 79728 0.6650 +10111 79915 0.5150 +10111 80010 0.7190 +10111 80119 0.6120 +10111 80198 0.7230 +10111 83695 0.5000 +10111 83990 0.7230 +10111 84126 0.6560 +10111 84142 0.5130 +10111 84464 0.5320 +10111 84893 0.5700 +10111 85236 0.5120 +10111 92797 0.4880 +10111 93183 0.4290 +10111 93973 0.4230 +10111 94239 0.5400 +10111 116028 0.5090 +10111 128312 0.5120 +10111 144715 0.5260 +10111 146956 0.5810 +10111 165918 0.6030 +10111 197342 0.5440 +10111 254528 0.4010 +10111 255626 0.5120 +10111 283489 0.7930 +10111 348654 0.6240 +10111 474382 0.5130 +10111 548593 0.5250 +10111 100533467 0.4150 +10112 10121 0.5620 +10112 10383 0.4060 +10112 10403 0.8960 +10112 10460 0.7870 +10112 10494 0.4210 +10112 10540 0.5310 +10112 10592 0.6660 +10112 10615 0.9250 +10112 10635 0.7830 +10112 10643 0.7140 +10112 10671 0.5310 +10112 10733 0.7230 +10112 10749 0.6310 +10112 10769 0.4730 +10112 10856 0.4550 +10112 11004 0.9730 +10112 11065 0.9610 +10112 11113 0.9430 +10112 11127 0.5870 +10112 11130 0.8870 +10112 11169 0.5070 +10112 11258 0.5030 +10112 11339 0.8170 +10112 22920 0.6010 +10112 22974 0.9720 +10112 23046 0.6040 +10112 23095 0.6110 +10112 23165 0.4590 +10112 23299 0.4930 +10112 23303 0.6150 +10112 23310 0.4140 +10112 23354 0.4480 +10112 23397 0.8420 +10112 23594 0.4880 +10112 24137 0.9920 +10112 25886 0.4940 +10112 26153 0.6430 +10112 26227 0.5140 +10112 26271 0.6800 +10112 26286 0.4990 +10112 26586 0.8610 +10112 27285 0.4190 +10112 28951 0.5080 +10112 29028 0.5470 +10112 29089 0.6870 +10112 29127 0.9970 +10112 29128 0.7640 +10112 29899 0.4070 +10112 51164 0.5110 +10112 51203 0.9560 +10112 51512 0.7530 +10112 51514 0.6460 +10112 51552 0.6250 +10112 51560 0.6990 +10112 51594 0.4990 +10112 51659 0.5540 +10112 53407 0.4990 +10112 54443 0.9490 +10112 54478 0.8290 +10112 54742 0.4600 +10112 54820 0.5650 +10112 54821 0.6950 +10112 54892 0.6910 +10112 54908 0.5280 +10112 55010 0.4800 +10112 55055 0.5910 +10112 55063 0.4540 +10112 55083 0.6530 +10112 55143 0.9800 +10112 55165 0.9620 +10112 55215 0.6940 +10112 55247 0.5710 +10112 55320 0.5610 +10112 55355 0.9350 +10112 55388 0.7020 +10112 55466 0.4640 +10112 55582 0.6130 +10112 55605 0.6870 +10112 55614 0.6140 +10112 55635 0.9000 +10112 55723 0.8400 +10112 55732 0.4300 +10112 55738 0.4990 +10112 55746 0.4210 +10112 55789 0.7950 +10112 55839 0.6760 +10112 55850 0.4990 +10112 55860 0.5170 +10112 56992 0.9420 +10112 57016 0.4260 +10112 57082 0.5590 +10112 57405 0.8230 +10112 57576 0.6680 +10112 57650 0.5490 +10112 60561 0.5820 +10112 63967 0.4060 +10112 63971 0.7000 +10112 64105 0.5930 +10112 64151 0.9580 +10112 64208 0.4510 +10112 64837 0.7020 +10112 64946 0.4460 +10112 79019 0.8250 +10112 79023 0.4570 +10112 79075 0.4430 +10112 79682 0.5640 +10112 79733 0.7220 +10112 79801 0.7220 +10112 79866 0.5120 +10112 79980 0.4370 +10112 80256 0.6190 +10112 81565 0.5830 +10112 81610 0.9250 +10112 81620 0.5910 +10112 81624 0.5870 +10112 81930 0.9220 +10112 83461 0.9300 +10112 83540 0.9550 +10112 83879 0.6240 +10112 83903 0.5090 +10112 84057 0.5980 +10112 84364 0.5440 +10112 84516 0.5010 +10112 84643 0.6570 +10112 84722 0.5050 +10112 84790 0.4710 +10112 84823 0.5120 +10112 84930 0.4930 +10112 84959 0.4520 +10112 89839 0.5050 +10112 89953 0.5720 +10112 90381 0.5330 +10112 90417 0.7270 +10112 90990 0.6900 +10112 92558 0.4670 +10112 93661 0.5050 +10112 113130 0.8800 +10112 124602 0.6520 +10112 126520 0.4040 +10112 128239 0.7730 +10112 138639 0.4050 +10112 144455 0.4930 +10112 146909 0.8880 +10112 147700 0.6060 +10112 147841 0.5840 +10112 150468 0.8360 +10112 151246 0.6570 +10112 151648 0.7910 +10112 152098 0.4540 +10112 157313 0.8990 +10112 157570 0.6670 +10112 166979 0.6690 +10112 203068 0.4650 +10112 220134 0.7670 +10112 221150 0.6480 +10112 221458 0.5750 +10112 259266 0.9750 +10112 285643 0.6440 +10112 285855 0.4710 +10112 342977 0.4270 +10112 345930 0.4340 +10112 347733 0.6190 +10112 374654 0.6550 +10112 387103 0.6760 +10112 440093 0.4450 +10112 493860 0.4080 +10112 653604 0.4450 +10113 10175 0.6330 +10113 10282 0.5900 +10113 10342 0.4150 +10113 10427 0.9830 +10113 10483 0.8160 +10113 10484 0.9240 +10113 10490 0.4320 +10113 10652 0.5810 +10113 10669 0.5730 +10113 10802 0.9450 +10113 10897 0.5840 +10113 10945 0.5980 +10113 10959 0.6830 +10113 10960 0.6650 +10113 10972 0.7380 +10113 11079 0.8680 +10113 11231 0.6730 +10113 11316 0.5470 +10113 11336 0.4270 +10113 22872 0.9040 +10113 23256 0.4540 +10113 23603 0.4020 +10113 25956 0.5130 +10113 26003 0.4220 +10113 27095 0.6930 +10113 27238 0.5340 +10113 29927 0.6340 +10113 51128 0.9970 +10113 51290 0.4180 +10113 53407 0.6630 +10113 54732 0.6210 +10113 55738 0.4220 +10113 55821 0.4090 +10113 56681 0.9980 +10113 59349 0.4580 +10113 63924 0.4100 +10113 64083 0.7800 +10113 64689 0.4490 +10113 64693 0.4120 +10113 79654 0.4470 +10113 79748 0.6450 +10113 80347 0.4610 +10113 81562 0.6190 +10113 81876 0.4230 +10113 84447 0.4170 +10113 84696 0.8540 +10113 89866 0.6100 +10113 90411 0.5730 +10113 149111 0.5270 +10113 254263 0.5270 +10113 375056 0.8910 +10114 10150 0.4220 +10114 10238 0.7100 +10114 10499 0.4330 +10114 10905 0.4960 +10114 23019 0.5850 +10114 23060 0.5780 +10114 23157 0.4190 +10114 25758 0.4610 +10114 25821 0.4430 +10114 27161 0.4500 +10114 27288 0.6340 +10114 27316 0.5560 +10114 27429 0.4280 +10114 55796 0.4020 +10114 55833 0.4220 +10114 83593 0.9070 +10114 83737 0.5680 +10114 84934 0.4040 +10114 157922 0.4350 +10114 283373 0.5170 +10116 10399 0.6950 +10116 10444 0.9200 +10116 10513 0.9370 +10116 10745 0.5260 +10116 10920 0.6280 +10116 10980 0.8270 +10116 10987 0.5450 +10116 11146 0.7580 +10116 23008 0.9370 +10116 23053 0.5800 +10116 23142 0.5080 +10116 23291 0.4540 +10116 23412 0.5020 +10116 23532 0.9140 +10116 23588 0.9280 +10116 26043 0.5620 +10116 26512 0.5090 +10116 28952 0.4990 +10116 28991 0.5070 +10116 29099 0.4990 +10116 51122 0.5070 +10116 51138 0.4810 +10116 51397 0.5070 +10116 51666 0.9010 +10116 54165 0.5270 +10116 54897 0.4910 +10116 54939 0.5160 +10116 54951 0.5500 +10116 54993 0.4730 +10116 55208 0.5680 +10116 55527 0.9170 +10116 55810 0.4010 +10116 55832 0.5950 +10116 56929 0.9230 +10116 56993 0.4990 +10116 57643 0.6610 +10116 57688 0.5730 +10116 64344 0.5060 +10116 65249 0.5500 +10116 79699 0.9320 +10116 84125 0.4900 +10116 84259 0.5040 +10116 84467 0.4640 +10116 84707 0.4160 +10116 94241 0.4210 +10116 96459 0.9120 +10116 116138 0.9300 +10116 122769 0.7650 +10116 140739 0.5070 +10116 140775 0.5580 +10116 149951 0.4990 +10116 150684 0.9000 +10116 170622 0.4990 +10116 196528 0.4850 +10116 220441 0.4410 +10116 353322 0.7190 +10116 440561 0.9000 +10116 440590 0.6760 +10116 653619 0.9000 +10117 10615 0.4390 +10117 11202 0.4180 +10117 24144 0.6660 +10117 25818 0.4200 +10117 26504 0.5060 +10117 51561 0.4510 +10117 54757 0.8580 +10117 54959 0.8540 +10117 56934 0.4380 +10117 56955 0.6760 +10117 56975 0.8260 +10117 58985 0.4040 +10117 64386 0.7170 +10117 79641 0.4030 +10117 93650 0.7160 +10117 123041 0.6270 +10117 123775 0.4870 +10117 152816 0.7740 +10117 256764 0.7880 +10117 286077 0.8110 +10117 401138 0.9930 +10120 10121 0.9920 +10120 10540 0.9980 +10120 10552 0.4440 +10120 10576 0.6310 +10120 10671 0.9930 +10120 10880 0.6720 +10120 10881 0.6720 +10120 11034 0.4980 +10120 11258 0.9920 +10120 11275 0.4610 +10120 11336 0.5670 +10120 11344 0.4720 +10120 22981 0.4210 +10120 23440 0.6750 +10120 25791 0.4370 +10120 51143 0.5930 +10120 51164 0.9980 +10120 51255 0.6570 +10120 54504 0.5090 +10120 55860 0.9950 +10120 55929 0.4340 +10120 60626 0.5530 +10120 79031 0.7900 +10120 79157 0.4110 +10120 79848 0.6480 +10120 80310 0.6770 +10120 81569 0.6620 +10120 81873 0.4580 +10120 84516 0.9930 +10120 84790 0.4160 +10120 84975 0.4450 +10120 85477 0.4440 +10120 89927 0.6690 +10120 91582 0.5520 +10120 93973 0.4740 +10120 140850 0.7520 +10120 145282 0.4220 +10120 284382 0.6730 +10120 375189 0.5050 +10121 10133 0.5060 +10121 10383 0.4590 +10121 10466 0.5010 +10121 10540 0.9990 +10121 10552 0.4140 +10121 10576 0.4110 +10121 10671 0.9990 +10121 10728 0.4720 +10121 10856 0.4040 +10121 10880 0.6720 +10121 10881 0.6710 +10121 11004 0.5300 +10121 11034 0.4590 +10121 11070 0.6100 +10121 11127 0.5480 +10121 11258 0.9980 +10121 11275 0.6160 +10121 11344 0.4790 +10121 22796 0.5650 +10121 22919 0.5690 +10121 22920 0.5130 +10121 22930 0.5400 +10121 22931 0.5320 +10121 22948 0.4340 +10121 22981 0.4980 +10121 23122 0.5670 +10121 23299 0.7770 +10121 23332 0.5490 +10121 23354 0.5120 +10121 23440 0.6660 +10121 24137 0.5220 +10121 25782 0.5130 +10121 25839 0.5310 +10121 26153 0.4990 +10121 26286 0.5280 +10121 29127 0.5130 +10121 29765 0.5270 +10121 51143 0.8520 +10121 51164 0.9990 +10121 51199 0.4170 +10121 51255 0.4590 +10121 51272 0.5200 +10121 51560 0.5230 +10121 51574 0.5410 +10121 54504 0.5190 +10121 54801 0.5040 +10121 54930 0.5200 +10121 55142 0.5040 +10121 55559 0.5090 +10121 55738 0.5570 +10121 55765 0.4510 +10121 55860 0.9990 +10121 55929 0.4430 +10121 56992 0.5900 +10121 57511 0.5120 +10121 57835 0.4690 +10121 60626 0.6060 +10121 64689 0.5410 +10121 64837 0.6080 +10121 79031 0.6040 +10121 79441 0.5070 +10121 79847 0.4780 +10121 79866 0.5160 +10121 81569 0.6620 +10121 81930 0.5510 +10121 83548 0.7500 +10121 83658 0.8730 +10121 84364 0.6050 +10121 84376 0.4100 +10121 84516 0.9990 +10121 84643 0.5140 +10121 89927 0.4020 +10121 89953 0.5730 +10121 91949 0.5740 +10121 92558 0.9420 +10121 93323 0.5010 +10121 93661 0.6370 +10121 93973 0.4740 +10121 115106 0.4990 +10121 117177 0.5270 +10121 140735 0.7030 +10121 140850 0.5730 +10121 147700 0.5760 +10121 196385 0.4300 +10121 284382 0.6730 +10121 285643 0.5210 +10121 375189 0.4830 +10121 728378 0.4420 +10121 728642 0.5500 +10123 23112 0.5090 +10123 23625 0.4340 +10123 26523 0.5020 +10123 27161 0.5160 +10123 27327 0.4990 +10123 50618 0.5360 +10123 55691 0.4370 +10123 122953 0.9080 +10123 148252 0.4780 +10123 158787 0.4060 +10123 192669 0.5020 +10123 192670 0.5020 +10124 25870 0.4790 +10124 27128 0.6470 +10124 29109 0.5130 +10124 50618 0.5360 +10124 54664 0.4070 +10124 63916 0.5600 +10124 79767 0.4420 +10124 122953 0.4970 +10124 221806 0.4400 +10125 10156 0.8270 +10125 10235 0.9140 +10125 10368 0.6600 +10125 10369 0.6510 +10125 10750 0.5940 +10125 10888 0.4190 +10125 11151 0.4740 +10125 22800 0.8390 +10125 22808 0.7710 +10125 22821 0.5100 +10125 25780 0.8170 +10125 26499 0.5670 +10125 27040 0.4850 +10125 27091 0.6570 +10125 27092 0.6510 +10125 51655 0.5680 +10125 51806 0.4970 +10125 54518 0.4080 +10125 54840 0.4370 +10125 55799 0.6640 +10125 59283 0.6760 +10125 59284 0.6570 +10125 59285 0.6500 +10125 80380 0.4240 +10125 83706 0.7960 +10125 84061 0.4720 +10125 84433 0.4890 +10125 91860 0.4970 +10125 93589 0.6620 +10125 115727 0.4730 +10125 163688 0.4990 +10125 221002 0.6290 +10126 10881 0.4770 +10126 25943 0.4890 +10126 25981 0.5080 +10126 27019 0.7150 +10126 27156 0.4060 +10126 51314 0.6540 +10126 55112 0.5230 +10126 55130 0.4780 +10126 55567 0.6280 +10126 55746 0.4720 +10126 56171 0.6190 +10126 56906 0.4540 +10126 56977 0.4200 +10126 64446 0.7310 +10126 79007 0.4460 +10126 79095 0.4170 +10126 79819 0.6560 +10126 83544 0.5260 +10126 83657 0.6870 +10126 83658 0.7360 +10126 89765 0.4300 +10126 89891 0.5300 +10126 116143 0.4530 +10126 126820 0.5370 +10126 127602 0.5120 +10126 129531 0.4230 +10126 140735 0.7390 +10126 144132 0.4560 +10126 146562 0.4910 +10126 146754 0.5950 +10126 160762 0.4600 +10126 161829 0.5590 +10126 196385 0.6180 +10126 200132 0.5460 +10126 201625 0.4960 +10126 255758 0.5290 +10126 343521 0.5250 +10126 345895 0.4440 +10126 347736 0.4010 +10127 10155 0.7640 +10127 10481 0.4420 +10127 11091 0.4160 +10127 11132 0.4460 +10127 11335 0.5940 +10127 23133 0.5330 +10127 23592 0.4380 +10127 25942 0.4580 +10127 26205 0.5500 +10127 51067 0.4150 +10127 51282 0.6310 +10127 51684 0.6330 +10127 54915 0.4110 +10127 55572 0.4130 +10127 55663 0.6260 +10127 57017 0.4050 +10127 57541 0.4460 +10127 64412 0.4470 +10127 79364 0.6410 +10127 84148 0.4680 +10127 84307 0.6430 +10127 91133 0.4530 +10127 91151 0.4660 +10127 171017 0.4240 +10127 222696 0.4040 +10127 342357 0.5240 +10128 10482 0.4620 +10128 10642 0.7610 +10128 10643 0.5910 +10128 10644 0.5480 +10128 10845 0.4540 +10128 10891 0.7190 +10128 10939 0.5350 +10128 11186 0.4810 +10128 11260 0.4550 +10128 11331 0.6000 +10128 22868 0.7990 +10128 22905 0.4950 +10128 22907 0.5240 +10128 23091 0.7220 +10128 23107 0.6380 +10128 23345 0.4350 +10128 23474 0.7750 +10128 23593 0.8800 +10128 25962 0.7890 +10128 25973 0.5100 +10128 26024 0.6900 +10128 26284 0.5960 +10128 27316 0.7010 +10128 27443 0.8380 +10128 28958 0.5430 +10128 28973 0.4330 +10128 29789 0.4060 +10128 29890 0.7250 +10128 50808 0.4010 +10128 51001 0.5940 +10128 51106 0.5300 +10128 51204 0.8950 +10128 51320 0.5130 +10128 51441 0.6710 +10128 51603 0.4400 +10128 51605 0.4800 +10128 51642 0.4590 +10128 54205 0.5450 +10128 54460 0.4110 +10128 54464 0.4030 +10128 54890 0.7900 +10128 54915 0.8050 +10128 54931 0.5710 +10128 55037 0.8040 +10128 55040 0.5000 +10128 55149 0.7170 +10128 55178 0.4810 +10128 55201 0.9770 +10128 55210 0.4960 +10128 55572 0.5320 +10128 55699 0.5160 +10128 55750 0.4090 +10128 55794 0.4380 +10128 56339 0.6640 +10128 56652 0.5230 +10128 56945 0.6900 +10128 57721 0.7480 +10128 60488 0.6150 +10128 60528 0.5670 +10128 64216 0.5930 +10128 64783 0.6740 +10128 64848 0.7190 +10128 65003 0.4190 +10128 79066 0.6460 +10128 79068 0.6260 +10128 79072 0.7330 +10128 79133 0.5460 +10128 79675 0.5100 +10128 79731 0.4750 +10128 79736 0.4900 +10128 79810 0.6590 +10128 79872 0.6350 +10128 79922 0.4490 +10128 79968 0.5180 +10128 80298 0.4290 +10128 80324 0.4320 +10128 81892 0.9990 +10128 83932 0.5100 +10128 84273 0.4270 +10128 84311 0.6160 +10128 84316 0.4280 +10128 84524 0.4330 +10128 84881 0.4380 +10128 84947 0.4250 +10128 84987 0.4840 +10128 85476 0.7170 +10128 87178 0.6700 +10128 91137 0.4260 +10128 91574 0.4810 +10128 91746 0.6960 +10128 91942 0.5670 +10128 118487 0.4230 +10128 130916 0.5540 +10128 137682 0.6970 +10128 150274 0.4140 +10128 201626 0.6510 +10128 219402 0.4670 +10128 221120 0.4260 +10128 246243 0.4020 +10128 253943 0.7080 +10128 374291 0.5550 +10128 387338 0.4540 +10128 440574 0.4960 +10128 100131801 0.4720 +10129 11329 0.6870 +10129 23012 0.6970 +10129 122042 0.4330 +10129 144321 0.4570 +10129 285527 0.4870 +10130 10189 0.4170 +10130 10237 0.4410 +10130 10330 0.4160 +10130 10525 0.9430 +10130 10549 0.9760 +10130 10551 0.6410 +10130 10574 0.4610 +10130 10628 0.4250 +10130 10935 0.4720 +10130 10954 0.5420 +10130 10956 0.4420 +10130 10959 0.4670 +10130 10961 0.6500 +10130 10970 0.5130 +10130 10972 0.6420 +10130 11014 0.5030 +10130 11183 0.5270 +10130 11184 0.5510 +10130 11315 0.5840 +10130 11328 0.4120 +10130 22820 0.4070 +10130 22914 0.6670 +10130 22926 0.5480 +10130 22948 0.4270 +10130 23051 0.6140 +10130 23071 0.4340 +10130 23193 0.4690 +10130 23753 0.8070 +10130 25824 0.5020 +10130 29927 0.5960 +10130 30001 0.9610 +10130 51060 0.5170 +10130 51138 0.4910 +10130 51237 0.7610 +10130 51726 0.9590 +10130 54431 0.7490 +10130 54732 0.4070 +10130 54800 0.4290 +10130 55176 0.4310 +10130 55379 0.4220 +10130 56605 0.9550 +10130 56886 0.4920 +10130 56975 0.6480 +10130 64714 0.5940 +10130 64856 0.4540 +10130 79174 0.6610 +10130 81502 0.4190 +10130 81567 0.4340 +10130 83648 0.5400 +10130 91319 0.4510 +10130 92906 0.4400 +10130 114781 0.4290 +10130 121506 0.4200 +10130 125972 0.7780 +10130 201595 0.4350 +10130 203068 0.4040 +10130 204474 0.4250 +10130 401207 0.4090 +10131 10294 0.4850 +10131 10469 0.4510 +10131 10525 0.5940 +10131 10574 0.5640 +10131 10575 0.4850 +10131 10576 0.4700 +10131 10598 0.8770 +10131 10693 0.4450 +10131 10728 0.8410 +10131 10808 0.6020 +10131 10845 0.4420 +10131 10856 0.5120 +10131 10910 0.6290 +10131 10963 0.9140 +10131 11080 0.4200 +10131 11140 0.7520 +10131 11145 0.5100 +10131 11315 0.4640 +10131 11331 0.4070 +10131 22824 0.5470 +10131 22948 0.5020 +10131 23135 0.6010 +10131 23203 0.4120 +10131 23234 0.4100 +10131 23264 0.4730 +10131 23277 0.4480 +10131 23331 0.4690 +10131 23640 0.4440 +10131 25789 0.5510 +10131 25813 0.5340 +10131 25822 0.4180 +10131 26548 0.5490 +10131 26973 0.5510 +10131 27068 0.4600 +10131 27429 0.4740 +10131 29066 0.4790 +10131 51009 0.6170 +10131 51182 0.5200 +10131 51256 0.5360 +10131 51726 0.4020 +10131 54101 0.4880 +10131 54205 0.9400 +10131 54431 0.5520 +10131 54970 0.4770 +10131 54979 0.5100 +10131 55466 0.4810 +10131 55664 0.5930 +10131 55735 0.5250 +10131 55780 0.4490 +10131 55898 0.4780 +10131 57110 0.5100 +10131 60528 0.5720 +10131 65018 0.8170 +10131 79738 0.4570 +10131 80267 0.4710 +10131 80273 0.6280 +10131 80347 0.4380 +10131 81570 0.7670 +10131 83752 0.4950 +10131 83877 0.5960 +10131 84140 0.4540 +10131 84263 0.4180 +10131 85476 0.5410 +10131 91319 0.5480 +10131 96459 0.4180 +10131 113444 0.4490 +10131 116835 0.5100 +10131 118461 0.5100 +10131 120526 0.4440 +10131 120892 0.6480 +10131 134266 0.5230 +10131 146862 0.4470 +10131 165721 0.4160 +10131 171425 0.4220 +10131 259217 0.5100 +10131 285282 0.4060 +10131 339416 0.5610 +10131 373863 0.4470 +10131 374407 0.4180 +10131 388633 0.5100 +10131 440275 0.4630 +10131 100885848 0.6180 +10131 100885850 0.6180 +10133 10142 0.5200 +10133 10211 0.4440 +10133 10241 0.9880 +10133 10280 0.4500 +10133 10287 0.4550 +10133 10313 0.5840 +10133 10318 0.9220 +10133 10382 0.5080 +10133 10383 0.5150 +10133 10452 0.5150 +10133 10533 0.5710 +10133 10537 0.6850 +10133 10540 0.5350 +10133 10616 0.6910 +10133 10733 0.4990 +10133 10806 0.4990 +10133 10871 0.8710 +10133 10890 0.8090 +10133 11064 0.5000 +10133 11116 0.4990 +10133 11190 0.5320 +10133 11258 0.5030 +10133 11331 0.5200 +10133 11337 0.9990 +10133 11345 0.9980 +10133 22841 0.5150 +10133 22853 0.4230 +10133 22863 0.6440 +10133 22897 0.5040 +10133 22919 0.5000 +10133 22981 0.5040 +10133 22994 0.5090 +10133 22995 0.4990 +10133 23001 0.5600 +10133 23025 0.4160 +10133 23064 0.7500 +10133 23332 0.5000 +10133 23354 0.5000 +10133 23435 0.9540 +10133 23710 0.9980 +10133 23770 0.5230 +10133 23786 0.7330 +10133 25820 0.4470 +10133 25978 0.6950 +10133 26056 0.4550 +10133 26100 0.7470 +10133 26994 0.5780 +10133 27329 0.4950 +10133 29110 0.9990 +10133 29978 0.9540 +10133 29979 0.7440 +10133 30816 0.4510 +10133 30849 0.4470 +10133 50613 0.6180 +10133 51019 0.5730 +10133 51024 0.5600 +10133 51762 0.7890 +10133 53349 0.6220 +10133 54463 0.6050 +10133 54472 0.4650 +10133 54499 0.5470 +10133 54708 0.4880 +10133 54801 0.5000 +10133 54820 0.5080 +10133 54930 0.4990 +10133 55014 0.6570 +10133 55054 0.6910 +10133 55062 0.5920 +10133 55072 0.7300 +10133 55125 0.5030 +10133 55133 0.4020 +10133 55142 0.4990 +10133 55177 0.4020 +10133 55201 0.6750 +10133 55255 0.6990 +10133 55288 0.4360 +10133 55388 0.5160 +10133 55486 0.6290 +10133 55559 0.4990 +10133 55626 0.5750 +10133 55669 0.5580 +10133 55722 0.5280 +10133 55755 0.5000 +10133 55835 0.4990 +10133 56893 0.6310 +10133 56947 0.5320 +10133 57111 0.7610 +10133 57448 0.4080 +10133 57506 0.6090 +10133 57531 0.5230 +10133 57679 0.7720 +10133 60673 0.5050 +10133 64422 0.5070 +10133 64786 0.7590 +10133 65018 0.8940 +10133 79065 0.7130 +10133 79441 0.4990 +10133 79594 0.4800 +10133 79735 0.9320 +10133 79866 0.5010 +10133 79959 0.4990 +10133 80184 0.5110 +10133 80208 0.6000 +10133 80321 0.4990 +10133 81631 0.9980 +10133 81858 0.6420 +10133 83734 0.4450 +10133 84131 0.5050 +10133 84557 0.8380 +10133 84749 0.5070 +10133 90678 0.5370 +10133 93145 0.4760 +10133 93323 0.4990 +10133 95681 0.4990 +10133 115106 0.4990 +10133 116442 0.5870 +10133 118427 0.5870 +10133 120892 0.4780 +10133 121441 0.5000 +10133 128387 0.4060 +10133 136371 0.7650 +10133 139341 0.6970 +10133 140775 0.4460 +10133 149371 0.4270 +10133 192111 0.4470 +10133 203068 0.5330 +10133 203228 0.7740 +10133 222389 0.4020 +10133 222484 0.4230 +10133 400916 0.6470 +10133 405754 0.4460 +10133 440738 0.6800 +10134 10280 0.4840 +10134 10313 0.4110 +10134 10424 0.5970 +10134 10452 0.8110 +10134 10536 0.4490 +10134 10551 0.5580 +10134 10652 0.4620 +10134 10857 0.5940 +10134 10952 0.4940 +10134 11001 0.5620 +10134 11079 0.7070 +10134 11161 0.4840 +10134 11231 0.5240 +10134 22863 0.5260 +10134 23065 0.6370 +10134 23205 0.6650 +10134 23241 0.9900 +10134 23344 0.5460 +10134 23471 0.4120 +10134 25923 0.4620 +10134 25963 0.4190 +10134 27113 0.4480 +10134 28978 0.4550 +10134 29789 0.4620 +10134 29927 0.7580 +10134 29965 0.9430 +10134 30001 0.4060 +10134 50814 0.5210 +10134 51024 0.9960 +10134 51257 0.4960 +10134 51283 0.4130 +10134 51699 0.4280 +10134 51726 0.4570 +10134 54205 0.4140 +10134 54431 0.6210 +10134 54539 0.4460 +10134 54708 0.6230 +10134 54788 0.4790 +10134 55014 0.7000 +10134 55177 0.8350 +10134 55219 0.4550 +10134 55333 0.5160 +10134 55669 0.5630 +10134 55690 0.7690 +10134 55831 0.5440 +10134 55843 0.4600 +10134 55847 0.4930 +10134 55852 0.4960 +10134 56851 0.4710 +10134 56947 0.4610 +10134 57142 0.4500 +10134 64423 0.4410 +10134 65992 0.4860 +10134 79139 0.5590 +10134 79982 0.4910 +10134 80347 0.6730 +10134 84317 0.4110 +10134 90550 0.4070 +10134 90956 0.4100 +10134 92140 0.4780 +10134 93380 0.5830 +10134 114879 0.4630 +10134 114882 0.4480 +10134 118987 0.6310 +10134 158747 0.5090 +10134 201562 0.4450 +10134 387733 0.4580 +10135 10240 0.4290 +10135 10277 0.5050 +10135 10410 0.4090 +10135 10891 0.6300 +10135 11222 0.4850 +10135 11224 0.6250 +10135 22933 0.9580 +10135 22978 0.9080 +10135 23057 0.9760 +10135 23098 0.5630 +10135 23252 0.4130 +10135 23408 0.9520 +10135 23409 0.9590 +10135 23410 0.9700 +10135 23411 0.9930 +10135 23475 0.6240 +10135 23521 0.5560 +10135 23640 0.4260 +10135 26291 0.4700 +10135 27231 0.9470 +10135 28973 0.4110 +10135 28998 0.5340 +10135 29093 0.5110 +10135 29104 0.7810 +10135 29789 0.5590 +10135 30001 0.4910 +10135 30833 0.9040 +10135 51021 0.7180 +10135 51067 0.4780 +10135 51069 0.4640 +10135 51073 0.5110 +10135 51081 0.5680 +10135 51094 0.7870 +10135 51116 0.4990 +10135 51121 0.4720 +10135 51149 0.5170 +10135 51154 0.5240 +10135 51264 0.7040 +10135 51409 0.7790 +10135 51547 0.9480 +10135 51548 0.9640 +10135 51738 0.5960 +10135 54901 0.4150 +10135 54948 0.4450 +10135 54981 0.9710 +10135 55052 0.6950 +10135 55173 0.6020 +10135 55191 0.5570 +10135 55272 0.5360 +10135 55316 0.4940 +10135 55600 0.7740 +10135 56729 0.9160 +10135 56953 0.9050 +10135 57038 0.4390 +10135 57136 0.4580 +10135 57829 0.4050 +10135 60558 0.4150 +10135 63875 0.6940 +10135 63931 0.5150 +10135 64374 0.4270 +10135 64802 0.9920 +10135 64960 0.5200 +10135 64963 0.5370 +10135 64965 0.7170 +10135 64968 0.7130 +10135 64969 0.5570 +10135 64979 0.6580 +10135 64983 0.6920 +10135 65005 0.6900 +10135 65008 0.5440 +10135 65220 0.4850 +10135 79590 0.4890 +10135 79602 0.8210 +10135 83594 0.9080 +10135 84340 0.4990 +10135 84561 0.4750 +10135 84618 0.9040 +10135 84666 0.8800 +10135 84866 0.4200 +10135 87178 0.4580 +10135 91582 0.5780 +10135 93034 0.9040 +10135 93100 0.9570 +10135 126402 0.5650 +10135 140801 0.4250 +10135 145264 0.7690 +10135 219927 0.6460 +10135 252995 0.4480 +10135 266743 0.5650 +10135 285855 0.4020 +10135 347487 0.4920 +10135 349565 0.7730 +10135 387129 0.4170 +10135 100287482 0.4920 +10135 100505478 0.4020 +10135 100526794 0.9040 +10135 100526842 0.5020 +10136 11330 0.8360 +10136 26254 0.5400 +10136 50624 0.5300 +10136 51032 0.7840 +10136 51200 0.6250 +10136 63036 0.7260 +10136 64714 0.4630 +10136 140683 0.6860 +10136 342898 0.6950 +10136 440387 0.8490 +10137 10291 0.4290 +10137 10521 0.4270 +10137 10946 0.4260 +10137 11052 0.5390 +10137 23451 0.4470 +10137 23534 0.4780 +10137 23636 0.4410 +10137 23708 0.4930 +10137 26528 0.6210 +10137 29079 0.4250 +10137 51132 0.4800 +10137 51322 0.6200 +10137 55269 0.4010 +10137 56254 0.5350 +10137 57198 0.4400 +10137 57805 0.4290 +10137 58517 0.4010 +10137 84991 0.4420 +10137 142689 0.5190 +10137 170394 0.5120 +10137 376940 0.4370 +10138 10238 0.7630 +10138 10336 0.9790 +10138 10389 0.4150 +10138 10919 0.7010 +10138 10951 0.5470 +10138 11091 0.9150 +10138 11335 0.9150 +10138 22823 0.4260 +10138 22955 0.7980 +10138 23269 0.9080 +10138 23429 0.9920 +10138 23466 0.8580 +10138 23492 0.6250 +10138 23512 0.5430 +10138 26013 0.5430 +10138 26053 0.9580 +10138 26147 0.4290 +10138 51171 0.4200 +10138 51460 0.4840 +10138 54432 0.4610 +10138 54880 0.9560 +10138 57332 0.8740 +10138 57666 0.8260 +10138 63035 0.9080 +10138 64319 0.8850 +10138 79710 0.5710 +10138 79813 0.5780 +10138 80012 0.8330 +10138 83746 0.9860 +10138 84108 0.9990 +10138 84333 0.9890 +10138 84678 0.9920 +10138 84733 0.9580 +10138 84759 0.9990 +10138 85437 0.4590 +10138 121536 0.5590 +10138 132625 0.4100 +10138 283464 0.4090 +10138 100170841 0.5200 +10138 100532731 0.8610 +10139 10228 0.6730 +10139 10466 0.5160 +10139 10618 0.6430 +10139 22796 0.5880 +10139 23041 0.5650 +10139 23426 0.4790 +10139 23550 0.4380 +10139 25771 0.5230 +10139 25839 0.5870 +10139 25972 0.4700 +10139 26205 0.6080 +10139 50861 0.4820 +10139 51006 0.5090 +10139 51517 0.4260 +10139 51542 0.6660 +10139 51560 0.6850 +10139 54923 0.4670 +10139 55275 0.7310 +10139 55610 0.4740 +10139 57216 0.5590 +10139 57511 0.7440 +10139 57589 0.7200 +10139 57794 0.5350 +10139 60560 0.5820 +10139 60592 0.5050 +10139 63908 0.5210 +10139 79025 0.5030 +10139 79571 0.6760 +10139 83548 0.5730 +10139 83746 0.4370 +10139 84304 0.4360 +10139 84316 0.5500 +10139 84619 0.6600 +10139 90196 0.9900 +10139 91949 0.5430 +10139 122830 0.6750 +10139 122953 0.5070 +10139 137886 0.4690 +10139 143187 0.6500 +10139 339122 0.5610 +10139 643155 0.4220 +10140 22849 0.9670 +10140 23019 0.9840 +10140 25904 0.9800 +10140 26986 0.9060 +10140 29883 0.9990 +10140 51176 0.4200 +10140 55571 0.9790 +10140 55643 0.4820 +10140 57472 0.9770 +10140 79596 0.6510 +10140 80315 0.6310 +10140 83858 0.4160 +10140 85456 0.9770 +10140 246175 0.9830 +10142 10270 0.7020 +10142 10345 0.5220 +10142 10347 0.5880 +10142 10411 0.4160 +10142 10426 0.7160 +10142 10443 0.4590 +10142 10460 0.4750 +10142 10533 0.5250 +10142 10645 0.4260 +10142 10733 0.4940 +10142 10827 0.5010 +10142 10844 0.6450 +10142 11044 0.5140 +10142 11214 0.7230 +10142 11215 0.6040 +10142 11216 0.5570 +10142 22906 0.5270 +10142 22919 0.8500 +10142 22924 0.4690 +10142 23043 0.6110 +10142 23122 0.4870 +10142 23164 0.5150 +10142 23171 0.6140 +10142 23253 0.4320 +10142 23271 0.5070 +10142 23327 0.4350 +10142 23345 0.6560 +10142 23354 0.5100 +10142 23630 0.7250 +10142 23646 0.6090 +10142 23704 0.6290 +10142 27044 0.5350 +10142 27175 0.4810 +10142 27185 0.8060 +10142 29098 0.4240 +10142 51199 0.5420 +10142 51592 0.4130 +10142 51806 0.8020 +10142 54102 0.5060 +10142 54209 0.5370 +10142 54431 0.4490 +10142 54801 0.6180 +10142 54845 0.5210 +10142 54875 0.4070 +10142 54926 0.4220 +10142 54930 0.5090 +10142 55109 0.5200 +10142 55125 0.7470 +10142 55142 0.5080 +10142 55559 0.5400 +10142 55722 0.6140 +10142 55750 0.6130 +10142 55755 0.9430 +10142 55800 0.4340 +10142 55835 0.4490 +10142 55870 0.4150 +10142 56829 0.5210 +10142 57085 0.5640 +10142 57670 0.7620 +10142 58508 0.4480 +10142 64083 0.5040 +10142 79441 0.5180 +10142 79866 0.5100 +10142 80323 0.4550 +10142 80853 0.5080 +10142 83853 0.4640 +10142 90410 0.6350 +10142 91860 0.7800 +10142 93323 0.5950 +10142 115106 0.5630 +10142 117177 0.5450 +10142 121441 0.5020 +10142 163688 0.7800 +10142 163786 0.4670 +10142 728642 0.5340 +10143 11061 0.4380 +10143 25884 0.5170 +10143 25949 0.4400 +10143 51266 0.5310 +10143 51741 0.4630 +10143 54360 0.4870 +10143 57687 0.6460 +10143 124359 0.4430 +10143 246243 0.5110 +10143 284217 0.6690 +10144 10428 0.4270 +10144 22837 0.4010 +10144 23250 0.5830 +10144 23255 0.4530 +10144 23411 0.4250 +10144 27146 0.4440 +10144 51191 0.4180 +10144 53916 0.5280 +10144 54622 0.5610 +10144 55022 0.5840 +10144 57117 0.5740 +10144 57211 0.5140 +10144 59341 0.6400 +10144 60678 0.4020 +10144 64399 0.8540 +10144 79722 0.4490 +10144 79807 0.7080 +10144 79875 0.6010 +10144 79890 0.6230 +10144 79991 0.4470 +10144 83890 0.4360 +10144 83938 0.4310 +10144 84071 0.5180 +10144 84992 0.5110 +10144 91039 0.5710 +10144 120935 0.4450 +10144 123688 0.4470 +10144 127018 0.4470 +10144 162540 0.5700 +10144 255743 0.4950 +10144 727897 0.5080 +10144 100996939 0.5290 +10146 10204 0.8470 +10146 10247 0.4370 +10146 10298 0.5240 +10146 10399 0.8150 +10146 10419 0.5580 +10146 10480 0.4520 +10146 10482 0.5020 +10146 10492 0.7130 +10146 10498 0.4690 +10146 10499 0.4130 +10146 10527 0.4870 +10146 10528 0.4300 +10146 10574 0.5020 +10146 10575 0.6250 +10146 10594 0.4220 +10146 10642 0.8640 +10146 10643 0.6670 +10146 10644 0.6510 +10146 10657 0.5420 +10146 10658 0.5700 +10146 10728 0.4930 +10146 10847 0.7730 +10146 10885 0.4590 +10146 10949 0.4190 +10146 10963 0.4100 +10146 11052 0.4730 +10146 11060 0.5600 +10146 11100 0.6570 +10146 11113 0.5170 +10146 11140 0.4600 +10146 11171 0.4600 +10146 11187 0.7320 +10146 11273 0.8700 +10146 11345 0.5270 +10146 22803 0.4040 +10146 22907 0.6630 +10146 22919 0.4390 +10146 23019 0.5790 +10146 23112 0.4730 +10146 23165 0.6030 +10146 23173 0.4240 +10146 23185 0.4990 +10146 23196 0.4090 +10146 23197 0.4490 +10146 23210 0.4930 +10146 23215 0.7990 +10146 23367 0.6330 +10146 23369 0.5780 +10146 23435 0.9830 +10146 23481 0.5560 +10146 23560 0.4270 +10146 23586 0.8760 +10146 23633 0.5660 +10146 23636 0.6520 +10146 23644 0.6800 +10146 23710 0.5080 +10146 25804 0.6240 +10146 25904 0.4340 +10146 25929 0.4020 +10146 25940 0.8510 +10146 25962 0.4640 +10146 26057 0.4850 +10146 26058 0.4580 +10146 26065 0.7310 +10146 26135 0.7320 +10146 26523 0.5590 +10146 26528 0.4850 +10146 26973 0.4190 +10146 26986 0.9950 +10146 27044 0.8320 +10146 27067 0.4830 +10146 27102 0.4910 +10146 27161 0.8000 +10146 27257 0.4110 +10146 27316 0.6090 +10146 27327 0.4740 +10146 29066 0.5470 +10146 29110 0.6020 +10146 29978 0.4790 +10146 51202 0.5130 +10146 51320 0.4920 +10146 51386 0.5280 +10146 51441 0.7450 +10146 51493 0.4920 +10146 51548 0.6510 +10146 51574 0.4020 +10146 51602 0.4900 +10146 51657 0.6530 +10146 51806 0.5690 +10146 54464 0.6250 +10146 54726 0.5520 +10146 54806 0.4710 +10146 54888 0.5700 +10146 54915 0.8200 +10146 54952 0.5280 +10146 55110 0.4100 +10146 55210 0.5220 +10146 55239 0.6340 +10146 55308 0.4700 +10146 55660 0.4280 +10146 55746 0.4020 +10146 55749 0.5840 +10146 55802 0.6750 +10146 55833 0.6780 +10146 56478 0.4350 +10146 56829 0.6410 +10146 57506 0.4500 +10146 57521 0.4530 +10146 57532 0.9340 +10146 58155 0.4030 +10146 64135 0.6950 +10146 64506 0.4560 +10146 79084 0.4600 +10146 79171 0.4170 +10146 79577 0.4160 +10146 79727 0.4920 +10146 79869 0.4230 +10146 80153 0.4550 +10146 80308 0.7740 +10146 81542 0.4990 +10146 81844 0.4370 +10146 83743 0.4010 +10146 83939 0.5830 +10146 85364 0.4950 +10146 90853 0.4850 +10146 91746 0.4900 +10146 113251 0.6400 +10146 115004 0.8130 +10146 116844 0.4450 +10146 117246 0.4180 +10146 124540 0.4010 +10146 124801 0.5320 +10146 129831 0.4650 +10146 140775 0.4180 +10146 149041 0.4950 +10146 149986 0.4730 +10146 167227 0.5260 +10146 170506 0.6150 +10146 192669 0.4830 +10146 203228 0.5640 +10146 219988 0.4160 +10146 220988 0.5080 +10146 253943 0.7650 +10146 347744 0.5240 +10146 400668 0.4180 +10146 440275 0.5600 +10146 653604 0.5400 +10147 10155 0.5230 +10147 11190 0.4380 +10147 51747 0.4080 +10147 54826 0.4910 +10147 55608 0.4740 +10147 55863 0.5640 +10147 57794 0.4600 +10147 124245 0.4980 +10148 10288 0.4600 +10148 10859 0.4310 +10148 51561 0.4940 +10148 246778 0.9990 +10149 10178 0.5070 +10149 10672 0.4030 +10149 11141 0.4090 +10149 54331 0.5070 +10149 55511 0.4120 +10149 56159 0.4100 +10149 59345 0.7580 +10149 127670 0.5190 +10149 159091 0.5320 +10150 10657 0.4540 +10150 10658 0.9230 +10150 10659 0.6560 +10150 11030 0.4090 +10150 11155 0.5460 +10150 11189 0.6170 +10150 23060 0.5930 +10150 23332 0.4100 +10150 23435 0.4340 +10150 23481 0.4130 +10150 23543 0.6130 +10150 54502 0.4720 +10150 54715 0.5750 +10150 54845 0.4570 +10150 55796 0.6520 +10150 56853 0.5710 +10150 57060 0.4180 +10150 58155 0.4600 +10150 60680 0.5350 +10150 80004 0.4220 +10150 92906 0.5050 +10150 124540 0.4520 +10150 147912 0.4610 +10150 203228 0.4350 +10150 253943 0.4270 +10150 282996 0.4800 +10150 283373 0.5300 +10150 285525 0.5700 +10150 389874 0.4330 +10152 10163 0.9990 +10152 10298 0.4410 +10152 10451 0.5390 +10152 10458 0.9700 +10152 10552 0.5370 +10152 10767 0.4840 +10152 10787 0.9990 +10152 10810 0.9950 +10152 22871 0.4090 +10152 22954 0.8600 +10152 23075 0.4210 +10152 23157 0.4810 +10152 23190 0.4940 +10152 23191 0.9990 +10152 23380 0.5020 +10152 23624 0.6650 +10152 23636 0.4200 +10152 25894 0.4140 +10152 26005 0.4120 +10152 26030 0.4060 +10152 26050 0.5010 +10152 26999 0.9990 +10152 27253 0.4160 +10152 28964 0.4840 +10152 30837 0.4340 +10152 51019 0.5260 +10152 51225 0.8230 +10152 51334 0.4020 +10152 51454 0.4920 +10152 51517 0.6430 +10152 51763 0.4300 +10152 54518 0.4130 +10152 54869 0.4420 +10152 54874 0.7640 +10152 55740 0.4600 +10152 55789 0.4660 +10152 55845 0.9990 +10152 55914 0.4030 +10152 55971 0.4660 +10152 56623 0.4420 +10152 57082 0.4190 +10152 57224 0.7360 +10152 57513 0.6800 +10152 57524 0.5560 +10152 57575 0.9560 +10152 57648 0.5010 +10152 58480 0.4540 +10152 63916 0.7240 +10152 65059 0.8270 +10152 81624 0.5580 +10152 81839 0.4280 +10152 89884 0.4340 +10152 91544 0.6240 +10152 114336 0.6210 +10152 118472 0.7220 +10152 122809 0.4280 +10152 143098 0.4120 +10152 147179 0.5310 +10152 155185 0.5680 +10152 340527 0.6890 +10152 390714 0.5110 +10152 644150 0.5310 +10153 10171 0.6790 +10153 10199 0.9770 +10153 10412 0.7450 +10153 10482 0.4090 +10153 10514 0.8440 +10153 10521 0.4210 +10153 10527 0.4020 +10153 10528 0.9330 +10153 10557 0.5490 +10153 10602 0.4760 +10153 10607 0.8840 +10153 10623 0.4050 +10153 10813 0.8560 +10153 10849 0.5880 +10153 10885 0.9150 +10153 10969 0.9680 +10153 10985 0.4010 +10153 10988 0.4410 +10153 11056 0.8770 +10153 11103 0.9000 +10153 11128 0.5650 +10153 11137 0.9070 +10153 22803 0.5150 +10153 22984 0.9990 +10153 23029 0.9590 +10153 23076 0.8380 +10153 23160 0.9220 +10153 23195 0.5580 +10153 23212 0.8170 +10153 23223 0.9720 +10153 23246 0.9500 +10153 23378 0.8260 +10153 23379 0.5160 +10153 23385 0.5030 +10153 23481 0.9680 +10153 23517 0.8750 +10153 23560 0.9830 +10153 24140 0.5250 +10153 25879 0.8080 +10153 25885 0.8440 +10153 25926 0.4360 +10153 25983 0.8560 +10153 26155 0.9990 +10153 26156 0.9370 +10153 26354 0.9020 +10153 26574 0.8120 +10153 26995 0.5150 +10153 27000 0.5860 +10153 27037 0.4050 +10153 27042 0.7720 +10153 27292 0.4270 +10153 27340 0.9680 +10153 27341 0.4750 +10153 28987 0.8060 +10153 29777 0.6700 +10153 29889 0.9420 +10153 29960 0.4870 +10153 29997 0.8450 +10153 30836 0.6820 +10153 51018 0.8300 +10153 51068 0.8250 +10153 51096 0.8380 +10153 51107 0.4830 +10153 51118 0.4660 +10153 51154 0.8670 +10153 51187 0.8770 +10153 51202 0.6560 +10153 51236 0.4420 +10153 51388 0.8440 +10153 51490 0.4400 +10153 51574 0.4770 +10153 51575 0.9280 +10153 51602 0.9460 +10153 51605 0.4130 +10153 54433 0.5400 +10153 54463 0.4840 +10153 54475 0.7320 +10153 54517 0.6370 +10153 54552 0.8620 +10153 54555 0.4610 +10153 54606 0.9790 +10153 54663 0.9350 +10153 54665 0.5090 +10153 54700 0.4040 +10153 54758 0.5190 +10153 54822 0.4640 +10153 54865 0.6460 +10153 54881 0.5900 +10153 54888 0.7630 +10153 54984 0.6930 +10153 55003 0.8060 +10153 55035 0.5430 +10153 55127 0.9420 +10153 55131 0.9840 +10153 55153 0.9440 +10153 55226 0.9250 +10153 55299 0.9540 +10153 55319 0.4440 +10153 55341 0.8520 +10153 55621 0.5100 +10153 55622 0.6580 +10153 55646 0.6610 +10153 55651 0.5670 +10153 55677 0.4120 +10153 55695 0.4700 +10153 55703 0.8410 +10153 55720 0.8500 +10153 55759 0.8950 +10153 55760 0.7910 +10153 55781 0.8060 +10153 55794 0.4800 +10153 55813 0.8320 +10153 55851 0.5010 +10153 55854 0.5800 +10153 56339 0.4240 +10153 56342 0.8660 +10153 56474 0.4300 +10153 57050 0.8650 +10153 57062 0.9240 +10153 57109 0.7030 +10153 57418 0.7810 +10153 57696 0.7670 +10153 57703 0.4620 +10153 60487 0.4530 +10153 63892 0.4180 +10153 63899 0.5330 +10153 64216 0.4240 +10153 64318 0.9560 +10153 64425 0.7250 +10153 64434 0.5520 +10153 64794 0.8160 +10153 64837 0.4140 +10153 65083 0.9190 +10153 65095 0.8900 +10153 79009 0.4520 +10153 79039 0.7680 +10153 79050 0.6770 +10153 79711 0.4450 +10153 79730 0.4680 +10153 79954 0.9310 +10153 80135 0.8630 +10153 81627 0.5090 +10153 83448 0.5560 +10153 83464 0.4350 +10153 83480 0.4360 +10153 83732 0.5830 +10153 83743 0.8970 +10153 84128 0.8940 +10153 84135 0.6130 +10153 84154 0.9750 +10153 84172 0.9170 +10153 84273 0.4040 +10153 84294 0.6580 +10153 84310 0.4810 +10153 84365 0.9510 +10153 84450 0.4780 +10153 84549 0.8780 +10153 84916 0.8970 +10153 84946 0.8590 +10153 88745 0.4270 +10153 89953 0.4200 +10153 90121 0.6110 +10153 90441 0.6110 +10153 92856 0.7010 +10153 116966 0.7280 +10153 117246 0.9290 +10153 142940 0.6640 +10153 146212 0.8010 +10153 158521 0.4260 +10153 161424 0.7960 +10153 165545 0.7060 +10153 221078 0.8930 +10153 221830 0.8320 +10153 285855 0.5820 +10153 345630 0.7000 +10153 387129 0.5740 +10153 387338 0.5370 +10153 692312 0.8220 +10153 100505478 0.5520 +10154 10371 0.6610 +10154 10500 0.6940 +10154 10501 0.4970 +10154 10507 0.8920 +10154 10512 0.5320 +10154 23129 0.6140 +10154 23654 0.6310 +10154 27289 0.4220 +10154 54910 0.6140 +10154 55558 0.6500 +10154 57556 0.8130 +10154 57715 0.6080 +10154 64218 0.4190 +10154 80031 0.5860 +10154 91584 0.6490 +10154 223117 0.4860 +10155 10168 0.7290 +10155 10172 0.6900 +10155 10210 0.4500 +10155 10212 0.4320 +10155 10224 0.6200 +10155 10291 0.4410 +10155 10308 0.7240 +10155 10346 0.4900 +10155 10399 0.5560 +10155 10413 0.4300 +10155 10419 0.5670 +10155 10482 0.4060 +10155 10498 0.4700 +10155 10499 0.4850 +10155 10514 0.6380 +10155 10520 0.6140 +10155 10526 0.4190 +10155 10528 0.5770 +10155 10574 0.6970 +10155 10576 0.6300 +10155 10594 0.6160 +10155 10614 0.5810 +10155 10626 0.4170 +10155 10657 0.5910 +10155 10664 0.5460 +10155 10694 0.6600 +10155 10765 0.4560 +10155 10780 0.5220 +10155 10781 0.5280 +10155 10782 0.9780 +10155 10793 0.7380 +10155 10794 0.7340 +10155 10795 0.7470 +10155 10856 0.8640 +10155 10919 0.8300 +10155 10951 0.9870 +10155 11065 0.4040 +10155 11074 0.4380 +10155 11091 0.4580 +10155 11130 0.8010 +10155 11198 0.5440 +10155 11200 0.5190 +10155 11331 0.5210 +10155 11335 0.9840 +10155 11338 0.5510 +10155 22803 0.4140 +10155 22835 0.6710 +10155 22869 0.5220 +10155 22880 0.5020 +10155 22890 0.6520 +10155 22893 0.6280 +10155 22907 0.4790 +10155 22913 0.5070 +10155 22938 0.4260 +10155 22948 0.5730 +10155 22954 0.4660 +10155 23020 0.4140 +10155 23028 0.8950 +10155 23067 0.4920 +10155 23076 0.7150 +10155 23235 0.4250 +10155 23272 0.4230 +10155 23361 0.9820 +10155 23411 0.7540 +10155 23435 0.6720 +10155 23468 0.9970 +10155 23476 0.7570 +10155 23512 0.5910 +10155 23613 0.4440 +10155 23619 0.6340 +10155 23633 0.4120 +10155 23650 0.4390 +10155 23660 0.5220 +10155 25799 0.8520 +10155 25842 0.4420 +10155 25885 0.4240 +10155 25888 0.5280 +10155 25920 0.5500 +10155 25939 0.5130 +10155 25942 0.8180 +10155 25962 0.5550 +10155 26048 0.5430 +10155 26136 0.5250 +10155 26149 0.7340 +10155 26152 0.5210 +10155 26168 0.4720 +10155 26974 0.5220 +10155 26993 0.4680 +10155 27044 0.4140 +10155 27153 0.6170 +10155 27300 0.6280 +10155 27338 0.5590 +10155 29117 0.4220 +10155 29128 0.9360 +10155 29947 0.6500 +10155 29978 0.4740 +10155 30832 0.9620 +10155 50852 0.8170 +10155 51058 0.5540 +10155 51111 0.5850 +10155 51116 0.4080 +10155 51123 0.5080 +10155 51127 0.8950 +10155 51155 0.5010 +10155 51320 0.5500 +10155 51333 0.5550 +10155 51341 0.4330 +10155 51366 0.6100 +10155 51385 0.7580 +10155 51438 0.9920 +10155 51548 0.6820 +10155 51574 0.8240 +10155 51592 0.9350 +10155 51593 0.4080 +10155 51602 0.6060 +10155 51710 0.9840 +10155 54542 0.4030 +10155 54596 0.5190 +10155 54700 0.7430 +10155 54737 0.4230 +10155 54765 0.4080 +10155 54807 0.5190 +10155 54811 0.5630 +10155 54925 0.5220 +10155 54989 0.5240 +10155 55127 0.5230 +10155 55196 0.4080 +10155 55250 0.4320 +10155 55422 0.6370 +10155 55634 0.6540 +10155 55657 0.5510 +10155 55659 0.6250 +10155 55663 0.5730 +10155 55713 0.5180 +10155 55762 0.6150 +10155 55778 0.5150 +10155 55786 0.5220 +10155 55888 0.9720 +10155 55900 0.6520 +10155 56160 0.5750 +10155 56242 0.5220 +10155 56254 0.4270 +10155 56257 0.5860 +10155 56259 0.4270 +10155 56339 0.6670 +10155 56852 0.4420 +10155 56916 0.9980 +10155 56979 0.5410 +10155 57209 0.6210 +10155 57335 0.5180 +10155 57336 0.6000 +10155 57337 0.5520 +10155 57343 0.8610 +10155 57418 0.4270 +10155 57448 0.4160 +10155 57474 0.5670 +10155 57504 0.4770 +10155 57541 0.6070 +10155 57547 0.6800 +10155 57573 0.6690 +10155 57615 0.6070 +10155 57645 0.6550 +10155 57677 0.5180 +10155 57680 0.4320 +10155 57693 0.6400 +10155 57711 0.5180 +10155 57786 0.4270 +10155 57805 0.5750 +10155 58491 0.5740 +10155 58492 0.6090 +10155 58500 0.7910 +10155 59348 0.9870 +10155 63893 0.4970 +10155 63934 0.5350 +10155 64135 0.4030 +10155 64919 0.4140 +10155 65243 0.5540 +10155 65251 0.7480 +10155 65988 0.7450 +10155 79027 0.5730 +10155 79088 0.6320 +10155 79171 0.4140 +10155 79175 0.5180 +10155 79230 0.6430 +10155 79577 0.4780 +10155 79711 0.5170 +10155 79727 0.4240 +10155 79744 0.5250 +10155 79755 0.4990 +10155 79759 0.6250 +10155 79788 0.5220 +10155 79813 0.6630 +10155 79818 0.6700 +10155 79862 0.5960 +10155 79891 0.6090 +10155 79898 0.5220 +10155 79923 0.7160 +10155 79943 0.5240 +10155 79973 0.5220 +10155 80032 0.6250 +10155 80095 0.5650 +10155 80108 0.5220 +10155 80110 0.5220 +10155 80139 0.5080 +10155 80264 0.6320 +10155 80317 0.5470 +10155 80335 0.4150 +10155 80349 0.4180 +10155 80778 0.6970 +10155 80818 0.9900 +10155 81559 0.6610 +10155 81856 0.7230 +10155 81931 0.9610 +10155 83744 0.5720 +10155 83932 0.5310 +10155 84124 0.5200 +10155 84436 0.5500 +10155 84449 0.7480 +10155 84527 0.5220 +10155 84619 0.4610 +10155 84626 0.5340 +10155 84671 0.5220 +10155 84765 0.5220 +10155 84775 0.6110 +10155 84787 0.5630 +10155 84838 0.7180 +10155 84874 0.6580 +10155 84911 0.9680 +10155 84914 0.6390 +10155 84924 0.6880 +10155 85235 0.4340 +10155 85236 0.4630 +10155 85363 0.4960 +10155 89941 0.4010 +10155 90075 0.6510 +10155 90233 0.5240 +10155 90317 0.6160 +10155 90321 0.5550 +10155 90333 0.6680 +10155 90338 0.5640 +10155 90576 0.5850 +10155 90589 0.5220 +10155 90592 0.5220 +10155 90594 0.5490 +10155 90634 0.4470 +10155 90649 0.5360 +10155 90827 0.5750 +10155 90874 0.5220 +10155 90933 0.5070 +10155 91107 0.4520 +10155 91120 0.5850 +10155 91664 0.4270 +10155 91975 0.5840 +10155 92283 0.5460 +10155 92285 0.6770 +10155 92595 0.6750 +10155 92609 0.4540 +10155 92815 0.4350 +10155 93134 0.6920 +10155 93474 0.6730 +10155 94039 0.6060 +10155 113835 0.5700 +10155 114026 0.6250 +10155 114991 0.4140 +10155 115196 0.6900 +10155 115509 0.7930 +10155 115560 0.9810 +10155 117608 0.6100 +10155 117854 0.5660 +10155 121274 0.5180 +10155 124411 0.6610 +10155 125919 0.6120 +10155 126068 0.5220 +10155 126070 0.6390 +10155 126133 0.4140 +10155 126295 0.8240 +10155 126375 0.5180 +10155 127396 0.6590 +10155 128312 0.4650 +10155 136051 0.5220 +10155 139285 0.4240 +10155 140612 0.5730 +10155 144348 0.5180 +10155 146198 0.8250 +10155 146434 0.5330 +10155 146540 0.6000 +10155 146542 0.6020 +10155 147657 0.5830 +10155 147686 0.5870 +10155 147687 0.7210 +10155 147694 0.5850 +10155 147741 0.5330 +10155 147837 0.5220 +10155 147923 0.6600 +10155 147929 0.5220 +10155 147948 0.5850 +10155 147949 0.5220 +10155 148103 0.5360 +10155 148156 0.5800 +10155 148203 0.7210 +10155 148206 0.5640 +10155 148213 0.5220 +10155 148254 0.7370 +10155 148266 0.9900 +10155 148268 0.5220 +10155 148479 0.5430 +10155 149041 0.5170 +10155 152687 0.6830 +10155 155054 0.5220 +10155 155061 0.9050 +10155 157807 0.4370 +10155 158399 0.6250 +10155 158431 0.5220 +10155 162239 0.7380 +10155 162461 0.4430 +10155 162655 0.5750 +10155 162963 0.5180 +10155 162966 0.5930 +10155 162967 0.6300 +10155 163049 0.5860 +10155 163050 0.5800 +10155 163051 0.5220 +10155 163059 0.5700 +10155 163071 0.7350 +10155 163081 0.6050 +10155 163087 0.5700 +10155 163126 0.4040 +10155 163223 0.5880 +10155 163227 0.6570 +10155 163255 0.5220 +10155 168374 0.6500 +10155 168417 0.5820 +10155 169270 0.5220 +10155 169841 0.5600 +10155 170959 0.5220 +10155 170960 0.6750 +10155 171392 0.5800 +10155 197320 0.5490 +10155 199692 0.6180 +10155 199704 0.5220 +10155 199777 0.5330 +10155 201514 0.5720 +10155 201516 0.4700 +10155 203068 0.4110 +10155 219578 0.4990 +10155 219749 0.5760 +10155 220992 0.5810 +10155 221613 0.4340 +10155 221785 0.5510 +10155 253639 0.7170 +10155 255403 0.5720 +10155 255626 0.4750 +10155 256051 0.5570 +10155 266740 0.7070 +10155 282890 0.5180 +10155 283337 0.5450 +10155 284306 0.5180 +10155 284307 0.5320 +10155 284309 0.5810 +10155 284370 0.5220 +10155 284390 0.9810 +10155 284443 0.5470 +10155 284459 0.5180 +10155 285267 0.5220 +10155 285268 0.7110 +10155 285349 0.5220 +10155 285676 0.5220 +10155 285971 0.5340 +10155 286075 0.6670 +10155 286827 0.6320 +10155 317772 0.4440 +10155 339327 0.5610 +10155 339500 0.5220 +10155 339559 0.5210 +10155 340252 0.5220 +10155 340385 0.6760 +10155 342132 0.5300 +10155 342926 0.5410 +10155 344787 0.5180 +10155 346171 0.9860 +10155 347344 0.6220 +10155 348327 0.5800 +10155 349075 0.5800 +10155 353088 0.5320 +10155 353274 0.8680 +10155 353355 0.5220 +10155 359787 0.4470 +10155 374655 0.5270 +10155 374879 0.5840 +10155 374899 0.6700 +10155 374900 0.6750 +10155 374928 0.5740 +10155 387032 0.5810 +10155 388536 0.5670 +10155 388561 0.6520 +10155 388566 0.5220 +10155 388567 0.5180 +10155 388569 0.6620 +10155 389114 0.5260 +10155 390927 0.5660 +10155 400720 0.5600 +10155 440077 0.5220 +10155 440093 0.5560 +10155 440515 0.5560 +10155 440519 0.5970 +10155 440686 0.5560 +10155 440689 0.4760 +10155 441234 0.5220 +10155 442319 0.5220 +10155 445372 0.4230 +10155 619279 0.5160 +10155 641339 0.6170 +10155 653604 0.7240 +10155 654254 0.6510 +10155 728927 0.5590 +10155 728957 0.5220 +10155 730087 0.5830 +10155 730291 0.5220 +10155 100129543 0.5220 +10155 100129842 0.5220 +10155 100131017 0.4130 +10155 100131827 0.5220 +10155 100131980 0.5220 +10155 100287226 0.5220 +10155 100289635 0.5220 +10156 22800 0.6920 +10156 22808 0.7110 +10156 22821 0.4910 +10156 23581 0.5500 +10156 26499 0.5570 +10156 27289 0.5360 +10156 64926 0.6090 +10156 83446 0.5240 +10156 115727 0.5840 +10156 150962 0.4430 +10156 153090 0.5780 +10156 161742 0.4160 +10156 200734 0.4180 +10156 399473 0.4080 +10157 10840 0.4220 +10157 10993 0.4970 +10157 10994 0.4570 +10157 26227 0.4370 +10157 27165 0.4740 +10157 51091 0.4030 +10157 51166 0.5820 +10157 51268 0.5270 +10157 51314 0.4560 +10157 51504 0.4250 +10157 51582 0.7940 +10157 51608 0.4400 +10157 54511 0.4260 +10157 55101 0.4460 +10157 56267 0.4070 +10157 60496 0.5310 +10157 64902 0.4140 +10157 83733 0.4130 +10157 84693 0.4140 +10157 85007 0.9440 +10157 113451 0.7940 +10157 123096 0.4460 +10157 132949 0.6690 +10157 160428 0.4140 +10157 198437 0.4450 +10157 257202 0.4830 +10157 373156 0.4130 +10157 386684 0.4050 +10158 51079 0.4400 +10158 51278 0.5890 +10158 55248 0.4460 +10158 55867 0.4690 +10158 56667 0.4490 +10158 65010 0.6270 +10158 79064 0.4570 +10158 84924 0.4770 +10158 90196 0.4150 +10158 140453 0.4360 +10158 152273 0.4110 +10158 159963 0.4970 +10158 160728 0.4820 +10158 200958 0.4410 +10158 727897 0.4300 +10159 10312 0.9770 +10159 10476 0.6010 +10159 10632 0.5660 +10159 23545 0.9830 +10159 27109 0.5420 +10159 50617 0.9950 +10159 51122 0.4250 +10159 51382 0.9950 +10159 51606 0.9940 +10159 55737 0.4790 +10159 57707 0.9250 +10159 59272 0.7470 +10159 79956 0.4340 +10159 84317 0.9630 +10159 90231 0.6540 +10159 90423 0.6790 +10159 127124 0.7560 +10159 147007 0.9610 +10159 155066 0.8970 +10159 163882 0.5100 +10159 203547 0.8460 +10159 245972 0.9920 +10159 245973 0.8440 +10159 267020 0.5520 +10159 440400 0.9980 +10159 100526740 0.5400 +10160 23129 0.4860 +10160 23344 0.4010 +10160 23348 0.4070 +10160 23705 0.5590 +10160 26049 0.4070 +10160 26499 0.6950 +10160 54509 0.5860 +10160 55971 0.5150 +10160 57556 0.5650 +10160 65124 0.4110 +10160 80115 0.4150 +10160 80728 0.4160 +10160 81624 0.4480 +10160 81839 0.4010 +10160 91584 0.6200 +10160 140432 0.5710 +10160 340578 0.4020 +10161 10672 0.8580 +10161 10800 0.6180 +10161 22862 0.5620 +10161 23236 0.5570 +10161 23533 0.6760 +10161 23566 0.9930 +10161 25833 0.6520 +10161 27334 0.5070 +10161 50832 0.4030 +10161 51131 0.4190 +10161 51365 0.6930 +10161 54504 0.4430 +10161 57105 0.4720 +10161 57121 0.9180 +10161 79153 0.6900 +10161 79574 0.4460 +10161 81602 0.4330 +10161 81617 0.5000 +10161 84668 0.4220 +10161 84876 0.4580 +10161 85027 0.4740 +10161 115557 0.4990 +10161 121391 0.8630 +10161 146850 0.6620 +10161 147409 0.7580 +10161 147495 0.4900 +10161 200879 0.9490 +10161 284161 0.7040 +10162 10313 0.4310 +10162 10390 0.9430 +10162 10400 0.9300 +10162 10434 0.9350 +10162 10436 0.5830 +10162 10908 0.9110 +10162 11015 0.4330 +10162 11145 0.9140 +10162 23305 0.4970 +10162 23310 0.4690 +10162 23646 0.9140 +10162 23657 0.5740 +10162 23659 0.7170 +10162 23761 0.9180 +10162 26234 0.4470 +10162 27141 0.5190 +10162 27165 0.4660 +10162 29781 0.7970 +10162 29933 0.4470 +10162 30061 0.4340 +10162 51365 0.9160 +10162 51703 0.4650 +10162 54892 0.4930 +10162 54947 0.9700 +10162 55240 0.5630 +10162 55349 0.8000 +10162 55847 0.5420 +10162 56894 0.5040 +10162 56994 0.9580 +10162 79587 0.4410 +10162 79888 0.9720 +10162 80221 0.4150 +10162 80339 0.4750 +10162 80347 0.4860 +10162 81490 0.9130 +10162 81704 0.4820 +10162 84649 0.4430 +10162 84883 0.6640 +10162 85465 0.9360 +10162 94033 0.4310 +10162 122618 0.9100 +10162 129642 0.9300 +10162 132949 0.5020 +10162 151056 0.9210 +10162 154141 0.9180 +10162 254531 0.9630 +10162 258010 0.5450 +10162 375775 0.9070 +10162 440498 0.4240 +10163 10298 0.5360 +10163 10451 0.6190 +10163 10458 0.9990 +10163 10497 0.4100 +10163 10552 0.9270 +10163 10787 0.9990 +10163 10810 0.9650 +10163 11135 0.4010 +10163 23048 0.4330 +10163 23075 0.4050 +10163 23191 0.9990 +10163 23580 0.4800 +10163 23624 0.6200 +10163 23647 0.4580 +10163 25894 0.4220 +10163 26030 0.4010 +10163 26050 0.4510 +10163 26135 0.4070 +10163 26999 0.9990 +10163 28964 0.5880 +10163 50618 0.4210 +10163 51019 0.5800 +10163 51225 0.9650 +10163 51347 0.4160 +10163 51466 0.4020 +10163 51517 0.5790 +10163 51763 0.4090 +10163 54869 0.4540 +10163 54874 0.4420 +10163 55004 0.4050 +10163 55845 0.9990 +10163 55914 0.4500 +10163 55971 0.7610 +10163 57175 0.4770 +10163 57180 0.9190 +10163 57224 0.5510 +10163 57648 0.6500 +10163 58504 0.4470 +10163 63916 0.6890 +10163 79658 0.4680 +10163 80115 0.6040 +10163 81624 0.7970 +10163 81873 0.9150 +10163 83660 0.4610 +10163 83871 0.6040 +10163 85477 0.4270 +10163 89884 0.5740 +10163 94134 0.4600 +10163 118472 0.6160 +10163 123720 0.5890 +10163 133746 0.5800 +10163 143098 0.4820 +10163 147179 0.4970 +10163 155185 0.4560 +10163 340527 0.7880 +10163 345456 0.4160 +10163 375189 0.4250 +10163 390714 0.4990 +10163 644150 0.5160 +10163 653857 0.9150 +10164 10331 0.5890 +10164 10402 0.6040 +10164 10678 0.4370 +10164 27284 0.4140 +10164 51696 0.5050 +10164 51705 0.4480 +10164 56667 0.4090 +10164 64327 0.4050 +10164 94025 0.4190 +10164 116151 0.4670 +10164 123803 0.9620 +10164 140453 0.4040 +10164 143662 0.4180 +10164 146894 0.5850 +10164 166012 0.4560 +10164 170384 0.4100 +10164 192134 0.4790 +10164 200958 0.4150 +10164 442038 0.4120 +10164 727897 0.4070 +10165 10452 0.5260 +10165 10651 0.4270 +10165 11331 0.4410 +10165 23787 0.5300 +10165 23788 0.5000 +10165 25953 0.4220 +10165 26517 0.9620 +10165 26519 0.6580 +10165 26520 0.7210 +10165 26521 0.6180 +10165 29090 0.4580 +10165 29928 0.7490 +10165 51079 0.4050 +10165 54902 0.4120 +10165 55626 0.4050 +10165 57148 0.5470 +10165 57186 0.4560 +10165 81570 0.4530 +10165 90550 0.5120 +10165 92609 0.4440 +10165 125228 0.5210 +10165 162417 0.6090 +10165 221154 0.4150 +10165 253959 0.4770 +10165 100287932 0.9260 +10166 23787 0.7440 +10166 23788 0.6940 +10166 91442 0.6240 +10166 162417 0.7240 +10168 11331 0.4310 +10168 54925 0.8070 +10168 84168 0.4410 +10168 84307 0.8010 +10168 158399 0.6280 +10168 286319 0.4120 +10169 10209 0.4950 +10169 11030 0.4210 +10169 22828 0.4240 +10169 25764 0.6810 +10169 28974 0.4800 +10169 51372 0.8030 +10169 59286 0.4080 +10169 66037 0.5870 +10169 92340 0.4330 +10169 255252 0.4250 +10169 619189 0.4480 +10170 10327 0.7370 +10170 10901 0.9490 +10170 26511 0.6670 +10170 27294 0.8380 +10170 29988 0.4290 +10170 53630 0.9280 +10170 54884 0.9170 +10170 55153 0.5710 +10170 56603 0.4960 +10170 57016 0.7860 +10170 63917 0.5080 +10170 80727 0.4610 +10170 91703 0.4570 +10170 91749 0.4220 +10170 115817 0.4150 +10170 133418 0.4300 +10170 157506 0.4620 +10170 158835 0.9060 +10170 317749 0.4560 +10170 339761 0.9210 +10171 10199 0.9960 +10171 10200 0.4600 +10171 10412 0.5830 +10171 10436 0.9980 +10171 10438 0.7810 +10171 10514 0.4020 +10171 10528 0.9930 +10171 10557 0.6940 +10171 10607 0.9970 +10171 10621 0.5410 +10171 10813 0.9940 +10171 10885 0.9980 +10171 10969 0.5400 +10171 11056 0.7530 +10171 11103 0.9970 +10171 11137 0.6780 +10171 11318 0.4470 +10171 11340 0.7930 +10171 22803 0.6690 +10171 22894 0.5120 +10171 22984 0.9830 +10171 23016 0.6740 +10171 23029 0.4070 +10171 23054 0.8210 +10171 23076 0.7830 +10171 23160 0.9990 +10171 23204 0.6290 +10171 23212 0.7500 +10171 23223 0.9230 +10171 23246 0.8530 +10171 23378 0.7680 +10171 23404 0.7440 +10171 23481 0.7100 +10171 23517 0.9050 +10171 23560 0.7940 +10171 25879 0.9930 +10171 25926 0.9280 +10171 25983 0.9980 +10171 26155 0.8680 +10171 26156 0.9460 +10171 26168 0.5330 +10171 26354 0.6990 +10171 26574 0.9970 +10171 27042 0.7330 +10171 27043 0.5720 +10171 27292 0.9840 +10171 27340 0.9980 +10171 27341 0.9980 +10171 28987 0.8730 +10171 29889 0.8650 +10171 29997 0.5930 +10171 30836 0.9930 +10171 50808 0.4750 +10171 51010 0.7630 +10171 51013 0.8580 +10171 51018 0.4380 +10171 51042 0.6040 +10171 51065 0.8590 +10171 51068 0.6410 +10171 51073 0.6190 +10171 51077 0.9970 +10171 51081 0.4580 +10171 51082 0.5490 +10171 51096 0.9990 +10171 51106 0.4700 +10171 51118 0.9930 +10171 51149 0.4950 +10171 51154 0.9350 +10171 51187 0.6350 +10171 51202 0.7130 +10171 51319 0.4130 +10171 51388 0.9150 +10171 51406 0.8050 +10171 51490 0.5420 +10171 51491 0.4720 +10171 51493 0.7340 +10171 51504 0.4550 +10171 51538 0.4140 +10171 51575 0.5490 +10171 51602 0.9970 +10171 51605 0.5380 +10171 51611 0.5210 +10171 51728 0.5530 +10171 54433 0.4730 +10171 54475 0.8360 +10171 54512 0.7660 +10171 54552 0.6920 +10171 54555 0.7590 +10171 54606 0.7920 +10171 54663 0.6500 +10171 54700 0.4470 +10171 54881 0.7270 +10171 54888 0.4780 +10171 55003 0.4990 +10171 55006 0.5770 +10171 55127 0.9980 +10171 55131 0.7860 +10171 55140 0.7350 +10171 55153 0.6740 +10171 55164 0.4980 +10171 55226 0.9960 +10171 55272 0.9930 +10171 55299 0.8350 +10171 55339 0.4460 +10171 55341 0.6120 +10171 55622 0.4400 +10171 55646 0.6500 +10171 55651 0.8540 +10171 55703 0.4370 +10171 55718 0.4110 +10171 55720 0.9810 +10171 55759 0.9450 +10171 55760 0.5540 +10171 55781 0.8450 +10171 55794 0.4320 +10171 55813 0.9980 +10171 56342 0.6030 +10171 56902 0.9880 +10171 56915 0.8800 +10171 56919 0.4870 +10171 56949 0.4160 +10171 57050 0.9970 +10171 57109 0.6130 +10171 57418 0.8540 +10171 57647 0.9220 +10171 57696 0.5540 +10171 60487 0.6960 +10171 60625 0.4880 +10171 64118 0.4530 +10171 64216 0.5810 +10171 64318 0.4120 +10171 64425 0.4540 +10171 64434 0.4300 +10171 64794 0.6460 +10171 64960 0.4760 +10171 64963 0.4600 +10171 65083 0.9970 +10171 65095 0.7820 +10171 79039 0.4090 +10171 79050 0.9980 +10171 79159 0.6100 +10171 79571 0.8240 +10171 79665 0.4500 +10171 79707 0.5480 +10171 79954 0.9910 +10171 80135 0.7050 +10171 81887 0.6780 +10171 83480 0.4040 +10171 83732 0.6660 +10171 83743 0.9270 +10171 84128 0.9970 +10171 84135 0.9980 +10171 84154 0.9040 +10171 84172 0.6650 +10171 84294 0.7590 +10171 84365 0.6930 +10171 84549 0.6640 +10171 84916 0.9990 +10171 84946 0.8630 +10171 88745 0.7690 +10171 90121 0.6840 +10171 90441 0.4180 +10171 91582 0.8110 +10171 92856 0.9990 +10171 115708 0.8330 +10171 115752 0.4140 +10171 117246 0.6870 +10171 118460 0.6470 +10171 126402 0.4480 +10171 128061 0.8010 +10171 129563 0.4180 +10171 140032 0.6310 +10171 144535 0.4380 +10171 153443 0.5570 +10171 155368 0.4050 +10171 161424 0.5160 +10171 165545 0.5500 +10171 170506 0.4170 +10171 221078 0.5740 +10171 221830 0.7620 +10171 253827 0.4190 +10171 317781 0.4520 +10171 345222 0.4940 +10171 345630 0.8820 +10171 348995 0.4460 +10171 692312 0.5630 +10172 55659 0.4400 +10172 83546 0.5410 +10172 148266 0.4080 +10172 158405 0.4060 +10172 284307 0.4460 +10174 10398 0.5610 +10174 10580 0.8450 +10174 10627 0.5230 +10174 11212 0.4090 +10174 23037 0.4110 +10174 25802 0.5290 +10174 29895 0.5180 +10174 51534 0.7840 +10174 57731 0.4930 +10174 58498 0.5230 +10174 63898 0.4580 +10174 64236 0.5350 +10174 64834 0.4080 +10174 80725 0.4640 +10174 83660 0.6840 +10174 93408 0.5210 +10174 103910 0.5340 +10174 137362 0.4280 +10174 140465 0.5200 +10174 541565 0.4010 +10175 10282 0.5500 +10175 10342 0.5840 +10175 10369 0.6020 +10175 10427 0.7040 +10175 10484 0.6000 +10175 10491 0.4330 +10175 10652 0.5630 +10175 10668 0.5440 +10175 10802 0.6290 +10175 10959 0.6740 +10175 10960 0.5710 +10175 10972 0.8280 +10175 11196 0.5620 +10175 22872 0.6090 +10175 22916 0.4930 +10175 23034 0.4390 +10175 23256 0.5630 +10175 23732 0.4770 +10175 26984 0.5620 +10175 27091 0.4490 +10175 27339 0.8970 +10175 51014 0.4440 +10175 51026 0.4640 +10175 51128 0.6130 +10175 53407 0.4250 +10175 55014 0.5550 +10175 57642 0.5020 +10175 59283 0.7890 +10175 59284 0.4840 +10175 63908 0.5520 +10175 64083 0.5750 +10175 64689 0.6560 +10175 79748 0.5460 +10175 79953 0.6140 +10175 81562 0.5760 +10175 81578 0.6040 +10175 81831 0.5010 +10175 81832 0.4370 +10175 84618 0.8680 +10175 85027 0.4950 +10175 85301 0.5230 +10175 89866 0.6890 +10175 90411 0.5250 +10175 140766 0.5910 +10175 146395 0.7250 +10175 149111 0.6000 +10175 169044 0.5650 +10175 254263 0.6010 +10175 255631 0.5160 +10175 388336 0.4510 +10175 644070 0.6240 +10175 729993 0.7340 +10178 10580 0.9370 +10178 22859 0.9860 +10178 23245 0.4080 +10178 23266 0.9860 +10178 23284 0.9880 +10178 30011 0.4020 +10178 131405 0.4470 +10178 159091 0.4560 +10179 10181 0.6260 +10179 10189 0.7090 +10179 10200 0.7440 +10179 10250 0.5360 +10179 10262 0.6460 +10179 10285 0.6200 +10179 10291 0.6040 +10179 10438 0.9040 +10179 10465 0.5210 +10179 10521 0.5530 +10179 10523 0.7360 +10179 10594 0.5510 +10179 10656 0.4200 +10179 10657 0.6360 +10179 10713 0.5060 +10179 10907 0.5080 +10179 10914 0.4120 +10179 10915 0.5370 +10179 10946 0.6080 +10179 10992 0.9900 +10179 11017 0.5290 +10179 11044 0.6160 +10179 11157 0.5880 +10179 11325 0.5140 +10179 11340 0.9440 +10179 22803 0.5230 +10179 22826 0.5080 +10179 22827 0.5620 +10179 22894 0.6930 +10179 22916 0.5650 +10179 23016 0.9050 +10179 23020 0.5600 +10179 23217 0.4460 +10179 23350 0.5480 +10179 23404 0.8900 +10179 23450 0.5130 +10179 23451 0.6100 +10179 23517 0.9990 +10179 23524 0.8380 +10179 23658 0.5270 +10179 24148 0.5910 +10179 25804 0.5380 +10179 26121 0.5410 +10179 27258 0.5130 +10179 27336 0.8710 +10179 51010 0.9670 +10179 51013 0.8730 +10179 51362 0.5300 +10179 51593 0.9280 +10179 51639 0.5740 +10179 51663 0.4370 +10179 51690 0.5100 +10179 51691 0.5910 +10179 51747 0.8020 +10179 51808 0.7000 +10179 54033 0.6320 +10179 54108 0.4310 +10179 54439 0.4680 +10179 54512 0.8350 +10179 55051 0.5510 +10179 55234 0.5220 +10179 55421 0.5850 +10179 55596 0.9990 +10179 55660 0.8020 +10179 55749 0.5630 +10179 55844 0.6250 +10179 56915 0.8850 +10179 57794 0.8000 +10179 57819 0.5380 +10179 58517 0.8590 +10179 64062 0.5340 +10179 64282 0.6620 +10179 64895 0.4270 +10179 79171 0.5320 +10179 80349 0.4440 +10179 83443 0.5180 +10179 84186 0.8640 +10179 84844 0.6030 +10179 84991 0.5880 +10179 90826 0.4350 +10179 114034 0.4610 +10179 115752 0.6200 +10179 118460 0.8240 +10179 124245 0.7300 +10179 129563 0.4310 +10179 133482 0.4200 +10179 196441 0.8220 +10179 200845 0.4510 +10179 493753 0.4220 +10180 10181 0.5400 +10180 10982 0.4890 +10180 11103 0.5060 +10180 26156 0.4730 +10180 27042 0.5080 +10180 27339 0.4670 +10180 51547 0.4120 +10180 51747 0.4500 +10180 54865 0.4520 +10180 54984 0.4510 +10180 55272 0.5070 +10180 55285 0.4200 +10180 55692 0.4510 +10180 55813 0.5420 +10180 57050 0.5090 +10180 58517 0.5320 +10180 64434 0.5370 +10180 65083 0.5310 +10180 84898 0.4770 +10180 84955 0.6190 +10180 88745 0.5170 +10180 124961 0.4340 +10181 10189 0.8650 +10181 10250 0.8860 +10181 10262 0.4500 +10181 10284 0.4090 +10181 10285 0.4010 +10181 10521 0.4670 +10181 10574 0.4110 +10181 10594 0.4850 +10181 10658 0.4320 +10181 10772 0.4230 +10181 10902 0.4310 +10181 10915 0.8340 +10181 10921 0.4840 +10181 10946 0.6240 +10181 10992 0.5630 +10181 11103 0.5230 +10181 11193 0.4800 +10181 11338 0.8960 +10181 22826 0.8110 +10181 22948 0.4130 +10181 22985 0.6150 +10181 23020 0.4780 +10181 23350 0.8240 +10181 23360 0.5160 +10181 23417 0.5990 +10181 23450 0.4020 +10181 23451 0.5210 +10181 23517 0.8400 +10181 23524 0.8690 +10181 23543 0.4450 +10181 24144 0.5310 +10181 25957 0.5790 +10181 26156 0.5010 +10181 27042 0.5250 +10181 27336 0.8250 +10181 27339 0.8260 +10181 29896 0.5250 +10181 51362 0.8220 +10181 51585 0.5400 +10181 51593 0.8360 +10181 51634 0.4940 +10181 51691 0.6360 +10181 51729 0.7940 +10181 51741 0.4010 +10181 51747 0.7950 +10181 54487 0.4300 +10181 54495 0.4160 +10181 54865 0.4630 +10181 54883 0.4680 +10181 54984 0.4510 +10181 55082 0.4810 +10181 55234 0.8250 +10181 55272 0.5150 +10181 55285 0.5220 +10181 55660 0.8700 +10181 55692 0.5420 +10181 55749 0.9100 +10181 55813 0.5940 +10181 57050 0.5410 +10181 57794 0.8680 +10181 57805 0.4210 +10181 58155 0.4180 +10181 58517 0.9590 +10181 59286 0.4330 +10181 64434 0.5280 +10181 64859 0.4370 +10181 65083 0.7240 +10181 79084 0.5820 +10181 79753 0.4720 +10181 81669 0.4040 +10181 84811 0.4920 +10181 84844 0.6460 +10181 84881 0.4170 +10181 84950 0.5400 +10181 84991 0.8840 +10181 88745 0.5170 +10181 113251 0.4570 +10181 153527 0.5090 +10181 223082 0.4370 +10181 401934 0.4750 +10181 643677 0.4250 +10184 23329 0.4760 +10184 55092 0.4840 +10184 56675 0.4400 +10184 56948 0.4110 +10184 94121 0.4400 +10184 94134 0.4160 +10184 132299 0.4560 +10184 135228 0.4320 +10184 144110 0.4670 +10184 221687 0.4760 +10186 10240 0.4580 +10186 57511 0.5890 +10188 10207 0.4550 +10188 10461 0.5990 +10188 11140 0.5600 +10188 23327 0.9140 +10188 25791 0.4980 +10188 27120 0.5990 +10188 50649 0.4100 +10188 51429 0.7690 +10188 51741 0.8400 +10188 55114 0.4930 +10188 55818 0.4580 +10188 56288 0.4270 +10188 64398 0.4240 +10188 81565 0.4380 +10188 84941 0.8620 +10188 154796 0.4990 +10188 167359 0.4080 +10188 221178 0.5120 +10188 344558 0.4350 +10188 644815 0.4140 +10189 10197 0.5360 +10189 10204 0.6210 +10189 10212 0.9940 +10189 10236 0.8510 +10189 10250 0.9930 +10189 10262 0.4600 +10189 10283 0.8140 +10189 10284 0.9740 +10189 10286 0.4270 +10189 10419 0.5960 +10189 10432 0.7950 +10189 10436 0.4230 +10189 10482 0.9990 +10189 10492 0.7150 +10189 10521 0.4900 +10189 10569 0.8120 +10189 10574 0.4700 +10189 10643 0.4490 +10189 10657 0.5760 +10189 10658 0.4500 +10189 10673 0.5820 +10189 10762 0.6720 +10189 10772 0.5390 +10189 10856 0.4550 +10189 10898 0.5930 +10189 10907 0.8280 +10189 10914 0.6890 +10189 10915 0.8360 +10189 10921 0.9950 +10189 10929 0.4510 +10189 10949 0.7770 +10189 10971 0.4640 +10189 10978 0.6020 +10189 10992 0.5510 +10189 11051 0.8390 +10189 11052 0.8540 +10189 11097 0.6250 +10189 11100 0.4820 +10189 11193 0.8000 +10189 11338 0.9590 +10189 22794 0.7480 +10189 22803 0.4570 +10189 22826 0.6120 +10189 22913 0.4970 +10189 22916 0.9650 +10189 22948 0.5690 +10189 22985 0.9200 +10189 23016 0.5950 +10189 23076 0.4940 +10189 23091 0.9090 +10189 23160 0.4430 +10189 23165 0.5780 +10189 23225 0.5430 +10189 23279 0.5920 +10189 23283 0.6460 +10189 23398 0.8290 +10189 23404 0.4830 +10189 23435 0.8090 +10189 23451 0.4200 +10189 23476 0.5730 +10189 23511 0.5090 +10189 23517 0.9470 +10189 23524 0.8720 +10189 23636 0.6770 +10189 23759 0.8120 +10189 24144 0.5800 +10189 24148 0.8740 +10189 24149 0.4020 +10189 25888 0.5140 +10189 25902 0.4040 +10189 25949 0.8070 +10189 25962 0.8840 +10189 26017 0.8000 +10189 26019 0.7920 +10189 26097 0.9920 +10189 26953 0.8480 +10189 26986 0.7740 +10189 27185 0.5390 +10189 27238 0.8120 +10189 27258 0.4600 +10189 27288 0.4150 +10189 27316 0.9460 +10189 27336 0.5850 +10189 27339 0.9520 +10189 29107 0.9100 +10189 29855 0.4020 +10189 29890 0.5240 +10189 29894 0.8390 +10189 29896 0.4420 +10189 29901 0.4330 +10189 51010 0.4130 +10189 51176 0.8410 +10189 51213 0.7120 +10189 51231 0.4240 +10189 51362 0.8250 +10189 51428 0.8060 +10189 51441 0.4860 +10189 51574 0.4630 +10189 51585 0.9390 +10189 51593 0.9900 +10189 51605 0.4440 +10189 51645 0.8340 +10189 51690 0.4280 +10189 51692 0.7160 +10189 51729 0.8130 +10189 51747 0.6730 +10189 51808 0.6250 +10189 53371 0.6000 +10189 53938 0.8240 +10189 53981 0.7540 +10189 54464 0.5020 +10189 54512 0.4250 +10189 54517 0.5240 +10189 54606 0.4670 +10189 54888 0.8260 +10189 54890 0.4640 +10189 54915 0.4680 +10189 54952 0.7740 +10189 55006 0.4030 +10189 55081 0.5890 +10189 55110 0.9810 +10189 55226 0.4770 +10189 55234 0.8670 +10189 55339 0.5740 +10189 55421 0.8850 +10189 55596 0.4540 +10189 55660 0.8320 +10189 55677 0.7120 +10189 55695 0.7180 +10189 55706 0.5220 +10189 55746 0.6170 +10189 55749 0.5290 +10189 55795 0.4680 +10189 56000 0.9650 +10189 56001 0.6640 +10189 56257 0.4450 +10189 56259 0.6460 +10189 56339 0.4560 +10189 56341 0.5160 +10189 56915 0.4110 +10189 56943 0.6130 +10189 57122 0.6470 +10189 57187 0.9990 +10189 57531 0.5190 +10189 57703 0.8950 +10189 57721 0.6870 +10189 57794 0.5120 +10189 58509 0.8030 +10189 58517 0.8130 +10189 59286 0.8040 +10189 63899 0.7000 +10189 63932 0.8100 +10189 64397 0.5740 +10189 64783 0.8220 +10189 64848 0.4060 +10189 64863 0.4120 +10189 65109 0.9810 +10189 65110 0.9980 +10189 79023 0.6220 +10189 79084 0.4370 +10189 79228 0.9940 +10189 79706 0.8150 +10189 79711 0.5510 +10189 79730 0.7070 +10189 79869 0.6110 +10189 79882 0.8950 +10189 79902 0.5890 +10189 80145 0.9950 +10189 80324 0.4540 +10189 81608 0.6470 +10189 81929 0.5730 +10189 83443 0.4720 +10189 84186 0.4390 +10189 84220 0.4470 +10189 84248 0.9300 +10189 84271 0.9290 +10189 84321 0.9990 +10189 84324 0.9990 +10189 84844 0.5010 +10189 84950 0.8340 +10189 84967 0.5260 +10189 91746 0.4720 +10189 115650 0.6830 +10189 115708 0.4640 +10189 124245 0.6700 +10189 129401 0.5630 +10189 134353 0.5350 +10189 139804 0.4550 +10189 142940 0.4450 +10189 143884 0.5300 +10189 144983 0.5230 +10189 151903 0.8080 +10189 153527 0.8690 +10189 159163 0.4040 +10189 163859 0.8050 +10189 196441 0.6150 +10189 199746 0.5420 +10189 203228 0.6800 +10189 220988 0.8710 +10189 221078 0.7090 +10189 253943 0.4390 +10189 266743 0.5270 +10189 284695 0.4590 +10189 345630 0.4850 +10189 347744 0.7740 +10189 348995 0.5970 +10189 378948 0.4170 +10189 378949 0.4220 +10189 378950 0.4220 +10189 378951 0.4040 +10189 387338 0.7090 +10189 392517 0.6500 +10189 642659 0.5040 +10189 653489 0.4590 +10189 728343 0.9640 +10189 729540 0.4470 +10189 100101267 0.5700 +10190 10213 0.4910 +10190 10273 0.4530 +10190 10376 0.8200 +10190 10413 0.4080 +10190 10574 0.7500 +10190 10575 0.5380 +10190 10576 0.7160 +10190 10693 0.6620 +10190 10971 0.7630 +10190 10980 0.4630 +10190 11051 0.5160 +10190 11052 0.5100 +10190 11235 0.4730 +10190 22948 0.6880 +10190 23235 0.4530 +10190 23241 0.4270 +10190 23327 0.5080 +10190 23516 0.5780 +10190 23586 0.5320 +10190 23604 0.4630 +10190 25886 0.4550 +10190 26580 0.4370 +10190 27175 0.4250 +10190 27339 0.4520 +10190 30849 0.4820 +10190 51182 0.7200 +10190 51258 0.4210 +10190 51263 0.4010 +10190 51290 0.6180 +10190 51341 0.4060 +10190 51373 0.4380 +10190 51585 0.6220 +10190 54205 0.4410 +10190 54951 0.4480 +10190 55177 0.4040 +10190 55220 0.6980 +10190 55626 0.4440 +10190 57521 0.4730 +10190 59286 0.4100 +10190 64359 0.4300 +10190 79005 0.5070 +10190 79031 0.6150 +10190 79861 0.8580 +10190 84261 0.4770 +10190 84790 0.6640 +10190 84817 0.4590 +10190 113457 0.4640 +10190 119467 0.4870 +10190 126393 0.5260 +10190 200186 0.4260 +10190 203068 0.5050 +10190 253260 0.4660 +10190 285848 0.6180 +10190 349136 0.7330 +10190 441531 0.4700 +10193 10239 0.7770 +10193 10273 0.5910 +10193 10910 0.7030 +10193 11059 0.4270 +10193 11274 0.5100 +10193 23220 0.4370 +10193 23255 0.4240 +10193 23274 0.9030 +10193 24138 0.4200 +10193 26015 0.4680 +10193 26190 0.6410 +10193 26232 0.5200 +10193 27101 0.7880 +10193 27297 0.5400 +10193 27338 0.4290 +10193 27429 0.5620 +10193 29110 0.7330 +10193 50484 0.5260 +10193 51077 0.5300 +10193 51329 0.4300 +10193 51561 0.5660 +10193 51780 0.5850 +10193 53347 0.5200 +10193 54551 0.4380 +10193 55197 0.4240 +10193 55527 0.4330 +10193 55610 0.4590 +10193 57216 0.4210 +10193 57448 0.9670 +10193 57506 0.4120 +10193 57698 0.4220 +10193 58478 0.7460 +10193 64854 0.4940 +10193 65082 0.4660 +10193 79589 0.4800 +10193 79594 0.4970 +10193 81790 0.4950 +10193 81839 0.6270 +10193 83608 0.4990 +10193 83746 0.4350 +10193 84188 0.4080 +10193 84516 0.7810 +10193 84959 0.5010 +10193 89796 0.4410 +10193 122961 0.6070 +10193 140459 0.8880 +10193 140710 0.6260 +10193 142678 0.5060 +10194 10249 0.5810 +10194 55628 0.4270 +10194 57616 0.6170 +10194 79017 0.7360 +10194 83860 0.4480 +10194 128674 0.6000 +10194 139818 0.6140 +10194 170825 0.4360 +10194 219409 0.4010 +10194 221833 0.4630 +10194 284273 0.6590 +10194 284274 0.4730 +10194 100131390 0.4370 +10195 10458 0.8410 +10195 10488 0.4680 +10195 10585 0.4330 +10195 11253 0.6550 +10195 22845 0.4350 +10195 22872 0.4740 +10195 22984 0.6710 +10195 27230 0.4950 +10195 27233 0.6390 +10195 27248 0.4060 +10195 27284 0.6380 +10195 29880 0.9880 +10195 29929 0.9940 +10195 29954 0.4030 +10195 30815 0.4220 +10195 51435 0.4900 +10195 54344 0.9480 +10195 55343 0.4080 +10195 55624 0.4250 +10195 55650 0.8770 +10195 55971 0.8410 +10195 56052 0.8720 +10195 56886 0.4040 +10195 57565 0.4490 +10195 79053 0.8820 +10195 79087 0.9940 +10195 79644 0.4470 +10195 79796 0.9930 +10195 79868 0.7300 +10195 80115 0.8060 +10195 84061 0.6020 +10195 84920 0.6260 +10195 85365 0.9130 +10195 93183 0.8990 +10195 131408 0.4200 +10195 144245 0.9660 +10195 146712 0.4100 +10195 199857 0.7450 +10195 201595 0.6810 +10195 254187 0.4310 +10195 284098 0.5740 +10195 440138 0.9830 +10195 442038 0.6390 +10195 644974 0.4360 +10196 10280 0.4120 +10196 10419 0.9080 +10196 10498 0.7950 +10196 10528 0.4400 +10196 10885 0.5620 +10196 10919 0.5740 +10196 10969 0.4060 +10196 10992 0.4310 +10196 11137 0.4320 +10196 11179 0.4440 +10196 23028 0.5700 +10196 23136 0.9140 +10196 23160 0.4430 +10196 23212 0.4470 +10196 23223 0.5400 +10196 23560 0.5740 +10196 23564 0.5110 +10196 23576 0.4010 +10196 25885 0.4160 +10196 26155 0.5670 +10196 26156 0.4370 +10196 26267 0.4300 +10196 26354 0.4390 +10196 28989 0.4910 +10196 29072 0.4470 +10196 29925 0.4910 +10196 51111 0.5370 +10196 51154 0.5080 +10196 51477 0.4440 +10196 51504 0.5470 +10196 51602 0.4230 +10196 54433 0.4570 +10196 54475 0.4460 +10196 54496 0.4910 +10196 54517 0.4690 +10196 54552 0.4440 +10196 54888 0.4570 +10196 55006 0.4260 +10196 55170 0.5140 +10196 55226 0.4360 +10196 55299 0.4390 +10196 55573 0.4130 +10196 55622 0.4120 +10196 55651 0.4710 +10196 55720 0.4320 +10196 55870 0.4010 +10196 56341 0.4650 +10196 56950 0.5650 +10196 56979 0.4240 +10196 60487 0.5370 +10196 64318 0.4450 +10196 64425 0.4210 +10196 64754 0.5990 +10196 79084 0.6480 +10196 79668 0.4460 +10196 79723 0.6630 +10196 79813 0.4880 +10196 79979 0.4120 +10196 80854 0.7190 +10196 84128 0.4950 +10196 84154 0.5950 +10196 84172 0.4510 +10196 84306 0.9150 +10196 84365 0.4490 +10196 84444 0.5520 +10196 84787 0.5270 +10196 84916 0.4150 +10196 144233 0.4720 +10196 151194 0.4050 +10196 221078 0.4290 +10196 345630 0.4420 +10196 387893 0.5940 +10196 415117 0.4210 +10196 440093 0.4320 +10196 440686 0.4320 +10196 653604 0.4390 +10197 10213 0.9580 +10197 10236 0.5400 +10197 10393 0.4560 +10197 10432 0.6110 +10197 10492 0.4990 +10197 10537 0.5590 +10197 10673 0.4400 +10197 10683 0.4930 +10197 10762 0.4460 +10197 10844 0.4130 +10197 10949 0.5510 +10197 10980 0.4050 +10197 10992 0.4590 +10197 11047 0.8770 +10197 11059 0.4490 +10197 11065 0.5120 +10197 11200 0.5790 +10197 11235 0.4260 +10197 11338 0.5500 +10197 22843 0.4210 +10197 23125 0.6300 +10197 23198 0.8730 +10197 23392 0.6320 +10197 23411 0.6480 +10197 23435 0.5060 +10197 23476 0.5200 +10197 25793 0.5010 +10197 25906 0.4050 +10197 26043 0.5090 +10197 26097 0.4780 +10197 26271 0.4010 +10197 27042 0.5230 +10197 27316 0.4790 +10197 27338 0.5480 +10197 29882 0.4190 +10197 29945 0.4350 +10197 29979 0.4220 +10197 50846 0.5270 +10197 51053 0.4140 +10197 51330 0.4050 +10197 51343 0.4300 +10197 51371 0.4210 +10197 51377 0.7790 +10197 51433 0.4440 +10197 51434 0.4730 +10197 51512 0.4030 +10197 51593 0.4420 +10197 51605 0.4040 +10197 51667 0.5700 +10197 51684 0.4280 +10197 51686 0.4100 +10197 54496 0.4310 +10197 54850 0.5160 +10197 55294 0.4680 +10197 55666 0.5290 +10197 56259 0.5560 +10197 57026 0.6970 +10197 57035 0.4180 +10197 57154 0.4310 +10197 57805 0.5600 +10197 59349 0.4240 +10197 63897 0.4670 +10197 64221 0.4160 +10197 64326 0.4210 +10197 64344 0.4330 +10197 64682 0.4330 +10197 64750 0.4560 +10197 65993 0.4310 +10197 79446 0.4200 +10197 80011 0.9490 +10197 80218 0.4450 +10197 81847 0.4740 +10197 83443 0.5880 +10197 83737 0.4240 +10197 83743 0.4830 +10197 84262 0.6190 +10197 84733 0.6010 +10197 93649 0.4530 +10197 112399 0.4010 +10197 119504 0.4050 +10197 122706 0.5920 +10197 123228 0.5030 +10197 129531 0.5790 +10197 143471 0.8450 +10197 161742 0.4030 +10197 200734 0.5960 +10197 201161 0.6050 +10197 246184 0.4100 +10197 339745 0.4210 +10197 100652824 0.5210 +10198 10208 0.4410 +10198 10459 0.4280 +10198 10856 0.4260 +10198 11144 0.5550 +10198 22897 0.4930 +10198 29028 0.4250 +10198 51134 0.5890 +10198 54532 0.4040 +10198 55206 0.4140 +10198 55345 0.4400 +10198 57082 0.5340 +10198 57519 0.4230 +10198 57697 0.6030 +10198 64770 0.6360 +10198 79598 0.6630 +10198 79676 0.4160 +10198 79915 0.5290 +10198 80198 0.5410 +10198 84250 0.4190 +10198 84893 0.6000 +10198 146057 0.5360 +10198 157680 0.4570 +10198 284325 0.5230 +10198 347240 0.4790 +10198 399909 0.4550 +10199 10200 0.4330 +10199 10248 0.9010 +10199 10283 0.5380 +10199 10436 0.9950 +10199 10438 0.7660 +10199 10465 0.4050 +10199 10514 0.4920 +10199 10521 0.4020 +10199 10527 0.5020 +10199 10528 0.9990 +10199 10556 0.9420 +10199 10557 0.9370 +10199 10607 0.9990 +10199 10775 0.5660 +10199 10799 0.6800 +10199 10813 0.9990 +10199 10849 0.4560 +10199 10885 0.9990 +10199 10940 0.9090 +10199 10969 0.9320 +10199 11017 0.4120 +10199 11056 0.8720 +10199 11103 0.9990 +10199 11137 0.7300 +10199 11157 0.5470 +10199 11180 0.5060 +10199 11340 0.7330 +10199 22803 0.5260 +10199 22894 0.4300 +10199 22984 0.9970 +10199 23016 0.7130 +10199 23029 0.6850 +10199 23054 0.7340 +10199 23076 0.7180 +10199 23160 0.9990 +10199 23195 0.4820 +10199 23204 0.6430 +10199 23212 0.8060 +10199 23223 0.7400 +10199 23246 0.8500 +10199 23378 0.4590 +10199 23398 0.4070 +10199 23404 0.7710 +10199 23481 0.8890 +10199 23517 0.8630 +10199 23560 0.9330 +10199 25879 0.9980 +10199 25885 0.4590 +10199 25926 0.9530 +10199 25983 0.9980 +10199 26155 0.9220 +10199 26156 0.9890 +10199 26168 0.5560 +10199 26354 0.8240 +10199 26574 0.9970 +10199 27000 0.4010 +10199 27037 0.4400 +10199 27042 0.9980 +10199 27043 0.5360 +10199 27292 0.9510 +10199 27340 0.9970 +10199 27341 0.9960 +10199 28987 0.8790 +10199 29777 0.6660 +10199 29889 0.8100 +10199 29960 0.4210 +10199 29997 0.7020 +10199 30836 0.9970 +10199 51010 0.7420 +10199 51013 0.7780 +10199 51018 0.6550 +10199 51065 0.8540 +10199 51068 0.7380 +10199 51073 0.5290 +10199 51077 0.9960 +10199 51081 0.6270 +10199 51096 0.9990 +10199 51106 0.5050 +10199 51118 0.9980 +10199 51149 0.7710 +10199 51154 0.4190 +10199 51187 0.6400 +10199 51202 0.6520 +10199 51204 0.4320 +10199 51319 0.6250 +10199 51367 0.9060 +10199 51388 0.6770 +10199 51406 0.8330 +10199 51428 0.4070 +10199 51504 0.4380 +10199 51538 0.5310 +10199 51574 0.6540 +10199 51575 0.9870 +10199 51602 0.9990 +10199 51605 0.5430 +10199 51729 0.4310 +10199 54433 0.8680 +10199 54505 0.4440 +10199 54512 0.7420 +10199 54552 0.7430 +10199 54555 0.5740 +10199 54606 0.8490 +10199 54663 0.6490 +10199 54700 0.6210 +10199 54865 0.5910 +10199 54881 0.6500 +10199 54913 0.9240 +10199 54931 0.4420 +10199 54948 0.4090 +10199 54984 0.6560 +10199 55003 0.7610 +10199 55006 0.4230 +10199 55035 0.8480 +10199 55127 0.9990 +10199 55131 0.9250 +10199 55140 0.4070 +10199 55153 0.9680 +10199 55226 0.9960 +10199 55272 0.9990 +10199 55299 0.7770 +10199 55319 0.4440 +10199 55341 0.6610 +10199 55505 0.9290 +10199 55622 0.5510 +10199 55646 0.7810 +10199 55651 0.9080 +10199 55677 0.5940 +10199 55703 0.5370 +10199 55718 0.4280 +10199 55720 0.8580 +10199 55759 0.8080 +10199 55760 0.7180 +10199 55781 0.9240 +10199 55794 0.4930 +10199 55813 0.9990 +10199 55835 0.4130 +10199 55854 0.5210 +10199 56163 0.4310 +10199 56342 0.7460 +10199 56647 0.5220 +10199 56829 0.5180 +10199 56902 0.9500 +10199 56915 0.7210 +10199 56919 0.6110 +10199 56986 0.4890 +10199 57050 0.9990 +10199 57062 0.6340 +10199 57109 0.4260 +10199 57418 0.6020 +10199 57647 0.9460 +10199 57696 0.6780 +10199 60487 0.6310 +10199 60625 0.6080 +10199 64216 0.6100 +10199 64318 0.8520 +10199 64425 0.6390 +10199 64434 0.9680 +10199 64794 0.7280 +10199 64960 0.6500 +10199 64963 0.7610 +10199 65083 0.9990 +10199 65095 0.9280 +10199 79009 0.4620 +10199 79039 0.6840 +10199 79050 0.9980 +10199 79080 0.4380 +10199 79159 0.6240 +10199 79571 0.7360 +10199 79665 0.5610 +10199 79707 0.5570 +10199 79954 0.9990 +10199 79979 0.4270 +10199 80135 0.8360 +10199 81887 0.6970 +10199 83732 0.9200 +10199 83743 0.6860 +10199 84128 0.9990 +10199 84135 0.9990 +10199 84154 0.8060 +10199 84172 0.7650 +10199 84186 0.5470 +10199 84240 0.5630 +10199 84294 0.8340 +10199 84365 0.9150 +10199 84549 0.8750 +10199 84916 0.9990 +10199 84946 0.9870 +10199 85313 0.4410 +10199 88745 0.7150 +10199 90121 0.6910 +10199 90381 0.5640 +10199 90441 0.4070 +10199 91582 0.8450 +10199 92345 0.9400 +10199 92856 0.9990 +10199 115708 0.5840 +10199 116966 0.5570 +10199 117246 0.9120 +10199 118460 0.6330 +10199 123169 0.6040 +10199 126402 0.6180 +10199 127428 0.4530 +10199 128061 0.8930 +10199 138716 0.5980 +10199 140032 0.7740 +10199 146212 0.8450 +10199 153443 0.7800 +10199 155368 0.6150 +10199 161424 0.7470 +10199 165545 0.6660 +10199 170506 0.4020 +10199 221078 0.7100 +10199 221830 0.8250 +10199 317762 0.4750 +10199 317781 0.4250 +10199 345630 0.9580 +10199 641776 0.4530 +10199 643909 0.4530 +10199 692312 0.6790 +10199 728524 0.4530 +10199 100996746 0.4530 +10199 105180390 0.4530 +10199 105180391 0.4530 +10200 10436 0.4490 +10200 10438 0.9960 +10200 10528 0.4160 +10200 10607 0.4940 +10200 10651 0.4430 +10200 10767 0.4370 +10200 10813 0.4490 +10200 10885 0.5170 +10200 11056 0.4100 +10200 11103 0.4510 +10200 11224 0.6540 +10200 11340 0.9990 +10200 22894 0.9890 +10200 22984 0.4140 +10200 23016 0.9990 +10200 23144 0.4080 +10200 23160 0.7170 +10200 23404 0.9980 +10200 23517 0.9970 +10200 23521 0.4300 +10200 25873 0.4130 +10200 25879 0.4620 +10200 25926 0.5900 +10200 26094 0.4570 +10200 26168 0.4740 +10200 26471 0.4500 +10200 27042 0.4100 +10200 27043 0.4160 +10200 27340 0.4350 +10200 27341 0.4440 +10200 51010 0.9990 +10200 51013 0.9990 +10200 51077 0.4670 +10200 51096 0.5620 +10200 51118 0.5660 +10200 51121 0.4430 +10200 51202 0.4440 +10200 51406 0.4220 +10200 51602 0.4260 +10200 54512 0.9990 +10200 54555 0.4340 +10200 54881 0.4250 +10200 55094 0.4870 +10200 55127 0.4360 +10200 55159 0.4460 +10200 55272 0.4650 +10200 55596 0.7010 +10200 55602 0.4490 +10200 55813 0.4620 +10200 56915 0.9990 +10200 57050 0.5500 +10200 57418 0.4210 +10200 57647 0.4260 +10200 65083 0.4160 +10200 79050 0.4580 +10200 79707 0.4050 +10200 79725 0.4770 +10200 79922 0.4630 +10200 79987 0.4230 +10200 81887 0.4110 +10200 84128 0.6610 +10200 84135 0.5920 +10200 84614 0.4390 +10200 84916 0.6340 +10200 87178 0.9070 +10200 88745 0.4050 +10200 92856 0.5390 +10200 115752 0.9770 +10200 116832 0.4050 +10200 118460 0.9990 +10200 129563 0.6480 +10200 140801 0.4190 +10200 196441 0.9540 +10200 200916 0.4140 +10201 10476 0.4150 +10201 11222 0.4590 +10201 22911 0.4340 +10201 22984 0.5560 +10201 23395 0.4030 +10201 23521 0.4570 +10201 26289 0.8050 +10201 26995 0.4380 +10201 28973 0.4550 +10201 28998 0.4620 +10201 29922 0.9220 +10201 30834 0.4060 +10201 50484 0.7960 +10201 50808 0.9400 +10201 51021 0.6160 +10201 51023 0.4110 +10201 51073 0.4610 +10201 51081 0.5590 +10201 51116 0.5080 +10201 51149 0.5210 +10201 51264 0.5240 +10201 51524 0.5330 +10201 51550 0.4300 +10201 51642 0.4220 +10201 51727 0.5160 +10201 51728 0.4720 +10201 54952 0.7720 +10201 54963 0.4250 +10201 55052 0.4640 +10201 55173 0.6100 +10201 55316 0.4520 +10201 55811 0.6940 +10201 56474 0.9370 +10201 56648 0.4140 +10201 56945 0.5150 +10201 56953 0.4890 +10201 63931 0.4990 +10201 64080 0.4290 +10201 64960 0.5370 +10201 64963 0.6410 +10201 64965 0.5940 +10201 64968 0.5390 +10201 64969 0.5310 +10201 64983 0.4820 +10201 79077 0.9120 +10201 79590 0.4050 +10201 79815 0.4390 +10201 81554 0.8220 +10201 83941 0.4070 +10201 84284 0.9480 +10201 84618 0.4990 +10201 91875 0.4270 +10201 93034 0.5440 +10201 93627 0.4830 +10201 114885 0.4730 +10201 122481 0.7490 +10201 123263 0.4790 +10201 124583 0.7430 +10201 126402 0.5090 +10201 127428 0.4180 +10201 129607 0.9350 +10201 131870 0.9020 +10201 131965 0.5520 +10201 143244 0.4090 +10201 158067 0.7490 +10201 196883 0.6600 +10201 219927 0.5530 +10201 221264 0.9540 +10201 246243 0.4950 +10201 347487 0.5070 +10201 374659 0.9490 +10201 377841 0.7260 +10201 654364 0.9240 +10201 100287482 0.4930 +10201 100526794 0.4780 +10201 102157402 0.7020 +10202 10536 0.7100 +10202 10691 0.7640 +10202 11216 0.4550 +10202 27349 0.4610 +10202 51015 0.4410 +10202 51110 0.4250 +10202 51400 0.4150 +10202 54995 0.4680 +10202 56267 0.5260 +10202 56961 0.7660 +10202 57403 0.4410 +10202 79763 0.4540 +10202 112812 0.4640 +10202 132949 0.4240 +10202 445815 0.4780 +10203 10266 0.9990 +10203 10267 0.9990 +10203 10268 0.9990 +10203 11069 0.4540 +10203 11318 0.5070 +10203 27297 0.9850 +10203 51705 0.5940 +10203 54331 0.8240 +10203 55586 0.4280 +10203 57016 0.4220 +10203 59350 0.4640 +10203 79924 0.9990 +10203 165829 0.5510 +10204 10226 0.4510 +10204 10482 0.9740 +10204 10527 0.5450 +10204 10762 0.4570 +10204 11062 0.4160 +10204 11097 0.4030 +10204 11100 0.7080 +10204 11260 0.6030 +10204 23279 0.6320 +10204 23534 0.4420 +10204 23593 0.6020 +10204 23633 0.4030 +10204 23636 0.9970 +10204 26097 0.6320 +10204 26227 0.4320 +10204 27010 0.4880 +10204 29098 0.6280 +10204 29107 0.9850 +10204 29124 0.5840 +10204 30000 0.7530 +10204 51501 0.4540 +10204 53371 0.9640 +10204 54830 0.6230 +10204 55746 0.6120 +10204 55916 0.9450 +10204 56000 0.9080 +10204 56001 0.8860 +10204 57122 0.4340 +10204 79023 0.4550 +10204 79228 0.4460 +10204 79902 0.6370 +10204 84248 0.4040 +10204 84321 0.4240 +10204 129401 0.7250 +10204 282808 0.5270 +10204 283383 0.5950 +10204 348995 0.4010 +10204 728343 0.8860 +10204 729857 0.5040 +10205 28973 0.4110 +10205 51184 0.4290 +10205 55850 0.6330 +10205 57616 0.4550 +10205 59271 0.4050 +10205 79056 0.4660 +10205 84141 0.6100 +10205 158747 0.4160 +10205 196264 0.5850 +10205 219623 0.5050 +10205 347735 0.4300 +10205 100506658 0.5900 +10206 10626 0.4150 +10206 10956 0.5930 +10206 11104 0.6020 +10206 11236 0.4300 +10206 22974 0.4370 +10206 23054 0.4100 +10206 23650 0.4350 +10206 27185 0.4220 +10206 50852 0.7680 +10206 51009 0.5480 +10206 51295 0.4380 +10206 51428 0.4220 +10206 54587 0.4140 +10206 54765 0.4080 +10206 54820 0.5410 +10206 55636 0.4350 +10206 55851 0.7900 +10206 56886 0.4040 +10206 56893 0.4240 +10206 57213 0.6340 +10206 64135 0.5790 +10206 81565 0.4290 +10206 81790 0.4420 +10206 135644 0.4180 +10206 283518 0.9370 +10207 10413 0.7330 +10207 10686 0.4010 +10207 23286 0.7820 +10207 23370 0.9370 +10207 23418 0.9950 +10207 23513 0.4370 +10207 23526 0.4010 +10207 25791 0.4220 +10207 26285 0.4150 +10207 27130 0.4240 +10207 27134 0.9960 +10207 50848 0.6860 +10207 50855 0.8790 +10207 51196 0.4020 +10207 51361 0.4560 +10207 51421 0.9570 +10207 51678 0.7260 +10207 55114 0.9770 +10207 55327 0.9050 +10207 55359 0.6420 +10207 56288 0.9850 +10207 57096 0.4870 +10207 57530 0.7210 +10207 57669 0.7510 +10207 60485 0.4730 +10207 64130 0.6520 +10207 64359 0.4950 +10207 64398 0.9990 +10207 65266 0.4470 +10207 83700 0.8120 +10207 84552 0.4690 +10207 84612 0.5900 +10207 84708 0.4140 +10207 84952 0.4130 +10207 92359 0.9990 +10207 143098 0.6860 +10207 149461 0.4430 +10207 150084 0.4080 +10207 153562 0.6840 +10207 154796 0.9990 +10207 154810 0.9730 +10207 163782 0.4820 +10207 221178 0.4030 +10207 261734 0.6770 +10207 286204 0.9950 +10207 100506658 0.8510 +10208 10713 0.4710 +10208 23032 0.5390 +10208 23379 0.5510 +10208 25862 0.4150 +10208 26036 0.4250 +10208 26054 0.6010 +10208 26168 0.6340 +10208 27291 0.4350 +10208 27351 0.8310 +10208 29843 0.6640 +10208 51029 0.7760 +10208 54532 0.4930 +10208 54726 0.4020 +10208 54778 0.4150 +10208 57337 0.6180 +10208 57599 0.5140 +10208 57663 0.4110 +10208 64376 0.4840 +10208 79664 0.6090 +10208 83844 0.4740 +10208 84056 0.4250 +10208 84132 0.4020 +10208 84524 0.4120 +10208 84640 0.4370 +10208 84749 0.4500 +10208 85015 0.4210 +10208 85403 0.4040 +10208 90268 0.5240 +10208 126119 0.4530 +10208 158427 0.4360 +10208 159195 0.4680 +10208 205564 0.7180 +10208 221302 0.4400 +10208 284325 0.5150 +10208 373509 0.6040 +10208 387082 0.4180 +10209 10289 0.9240 +10209 10399 0.9840 +10209 10480 0.9540 +10209 10557 0.5610 +10209 10605 0.4490 +10209 10767 0.5300 +10209 10987 0.5610 +10209 11224 0.4900 +10209 23204 0.5470 +10209 23521 0.4270 +10209 23645 0.6400 +10209 26019 0.6390 +10209 26986 0.7910 +10209 27102 0.4760 +10209 27335 0.9730 +10209 28969 0.4150 +10209 28985 0.7850 +10209 29978 0.5360 +10209 29979 0.4010 +10209 51065 0.8030 +10209 51073 0.5680 +10209 51081 0.6440 +10209 51116 0.5320 +10209 51149 0.8050 +10209 51319 0.7840 +10209 51386 0.9640 +10209 54505 0.9670 +10209 54883 0.4750 +10209 54915 0.4450 +10209 55173 0.7020 +10209 55272 0.6460 +10209 55316 0.7970 +10209 55601 0.4930 +10209 55651 0.5380 +10209 55720 0.5910 +10209 55781 0.5770 +10209 56648 0.5640 +10209 60678 0.6540 +10209 63931 0.5750 +10209 63932 0.4360 +10209 64960 0.6240 +10209 64963 0.5780 +10209 64969 0.6360 +10209 65109 0.6680 +10209 65110 0.6640 +10209 84919 0.7970 +10209 85377 0.5260 +10209 85476 0.4520 +10209 89858 0.5290 +10209 92399 0.5540 +10209 92935 0.6390 +10209 93974 0.7860 +10209 114987 0.7860 +10209 126402 0.6410 +10209 132243 0.4490 +10209 140032 0.6710 +10209 143244 0.5840 +10209 144983 0.4010 +10209 255308 0.6550 +10209 347487 0.7710 +10209 440275 0.6420 +10209 641776 0.4760 +10209 643909 0.4760 +10209 728524 0.4760 +10209 728689 0.8990 +10209 100101490 0.6340 +10209 100287482 0.4950 +10209 100529097 0.4520 +10209 100529239 0.7860 +10209 100996746 0.4760 +10209 105180390 0.4760 +10209 105180391 0.4760 +10210 10399 0.4030 +10210 10401 0.4220 +10210 10426 0.5400 +10210 10461 0.5680 +10210 10524 0.4290 +10210 10594 0.7890 +10210 10600 0.4040 +10210 10844 0.5400 +10210 10927 0.7510 +10210 11127 0.4150 +10210 22927 0.4370 +10210 23020 0.7410 +10210 23064 0.4100 +10210 23322 0.4070 +10210 24148 0.4500 +10210 25794 0.7800 +10210 25898 0.5020 +10210 25942 0.6580 +10210 26036 0.4100 +10210 26043 0.6310 +10210 26046 0.4040 +10210 26054 0.5920 +10210 26121 0.8000 +10210 26135 0.4040 +10210 26608 0.4600 +10210 27175 0.5400 +10210 27229 0.7390 +10210 28996 0.4140 +10210 50939 0.7080 +10210 51512 0.4020 +10210 51588 0.5370 +10210 55643 0.4610 +10210 55812 0.5780 +10210 55835 0.7260 +10210 55975 0.8110 +10210 57096 0.4310 +10210 57337 0.6140 +10210 57787 0.7200 +10210 64218 0.6620 +10210 64397 0.4530 +10210 79947 0.4220 +10210 80097 0.7200 +10210 84140 0.5320 +10210 84312 0.4630 +10210 85015 0.5040 +10210 85378 0.7440 +10210 94137 0.4440 +10210 114791 0.7200 +10210 116447 0.5990 +10210 130557 0.7090 +10210 145226 0.6910 +10210 157657 0.5440 +10210 167691 0.4380 +10210 282991 0.7760 +10210 346007 0.7080 +10210 375298 0.7390 +10210 387082 0.4090 +10210 388939 0.7400 +10210 440145 0.7310 +10210 474343 0.6160 +10210 653784 0.7200 +10210 768206 0.7030 +10211 10399 0.4250 +10211 10580 0.9860 +10211 10817 0.4840 +10211 10818 0.4070 +10211 11021 0.5400 +10211 11113 0.5570 +10211 23603 0.8340 +10211 23621 0.4350 +10211 25921 0.5190 +10211 27111 0.5710 +10211 29941 0.4080 +10211 53635 0.9230 +10211 54443 0.5590 +10211 55914 0.4380 +10211 58157 0.8320 +10211 65124 0.4180 +10211 79414 0.7670 +10211 81624 0.4060 +10211 81839 0.4200 +10211 91010 0.4060 +10211 118427 0.7650 +10211 128239 0.4010 +10211 128866 0.4740 +10211 137902 0.4720 +10211 284119 0.6460 +10212 10213 0.5150 +10212 10247 0.4050 +10212 10262 0.4500 +10212 10291 0.5660 +10212 10381 0.4610 +10212 10482 0.8280 +10212 10528 0.4900 +10212 10657 0.4380 +10212 10921 0.4550 +10212 10946 0.4900 +10212 10969 0.4100 +10212 10978 0.5690 +10212 10992 0.4290 +10212 11047 0.4310 +10212 11051 0.6670 +10212 11052 0.7750 +10212 11222 0.4220 +10212 11338 0.8280 +10212 22916 0.6880 +10212 22985 0.4030 +10212 23020 0.5530 +10212 23076 0.4950 +10212 23246 0.5360 +10212 23363 0.4110 +10212 23450 0.4470 +10212 23451 0.6470 +10212 23481 0.4570 +10212 23560 0.5060 +10212 26097 0.9110 +10212 26135 0.5330 +10212 26986 0.4630 +10212 26995 0.4570 +10212 27161 0.4870 +10212 27257 0.5530 +10212 27258 0.5620 +10212 27292 0.4110 +10212 27339 0.4530 +10212 29093 0.4610 +10212 29107 0.7570 +10212 51087 0.4160 +10212 51213 0.5450 +10212 51428 0.5010 +10212 51538 0.6040 +10212 51585 0.7500 +10212 51593 0.6190 +10212 51602 0.5630 +10212 51690 0.4660 +10212 51808 0.4050 +10212 53938 0.4350 +10212 54606 0.5490 +10212 54663 0.4020 +10212 54823 0.4390 +10212 55015 0.4130 +10212 55110 0.5500 +10212 55294 0.5430 +10212 55299 0.4530 +10212 55421 0.8450 +10212 55759 0.4180 +10212 55794 0.4710 +10212 55795 0.4080 +10212 56259 0.4880 +10212 56339 0.4710 +10212 56919 0.6090 +10212 56943 0.5450 +10212 57136 0.4860 +10212 57187 0.9800 +10212 57466 0.5320 +10212 57562 0.4170 +10212 57647 0.5950 +10212 57664 0.5360 +10212 57728 0.4220 +10212 58517 0.4690 +10212 60625 0.5810 +10212 60678 0.4020 +10212 64318 0.4320 +10212 79050 0.5270 +10212 79173 0.4070 +10212 79228 0.8090 +10212 79631 0.4710 +10212 79665 0.5430 +10212 79869 0.6120 +10212 79882 0.6770 +10212 80135 0.5060 +10212 80145 0.9190 +10212 83443 0.4720 +10212 84248 0.8850 +10212 84271 0.9240 +10212 84321 0.6910 +10212 84324 0.9990 +10212 84865 0.4310 +10212 84944 0.4200 +10212 84991 0.4050 +10212 87178 0.5170 +10212 90957 0.4440 +10212 91746 0.4200 +10212 92856 0.4060 +10212 113802 0.4880 +10212 113878 0.4160 +10212 143689 0.4320 +10212 170506 0.4110 +10212 728343 0.5810 +10213 10273 0.6320 +10213 10277 0.4320 +10213 10393 0.5250 +10213 10399 0.5930 +10213 10440 0.4220 +10213 10480 0.8080 +10213 10528 0.4080 +10213 10533 0.4420 +10213 10537 0.7260 +10213 10539 0.5540 +10213 10574 0.7460 +10213 10575 0.7930 +10213 10576 0.7920 +10213 10594 0.4590 +10213 10606 0.4640 +10213 10617 0.7050 +10213 10651 0.4290 +10213 10673 0.4070 +10213 10694 0.7960 +10213 10713 0.4410 +10213 10856 0.4040 +10213 10868 0.4110 +10213 10869 0.4170 +10213 10910 0.4750 +10213 10916 0.4650 +10213 10920 0.6130 +10213 10946 0.4330 +10213 10969 0.4500 +10213 10980 0.7500 +10213 10987 0.7990 +10213 11047 0.9990 +10213 11059 0.5310 +10213 11065 0.5830 +10213 11104 0.4570 +10213 11236 0.5610 +10213 22948 0.7590 +10213 23072 0.4600 +10213 23172 0.7360 +10213 23194 0.4180 +10213 23198 0.9400 +10213 23304 0.4210 +10213 23326 0.4480 +10213 23392 0.9760 +10213 23560 0.4860 +10213 25879 0.4420 +10213 25906 0.4650 +10213 26043 0.5830 +10213 26271 0.4910 +10213 27101 0.4980 +10213 27249 0.4380 +10213 27304 0.4380 +10213 27335 0.6720 +10213 27338 0.6430 +10213 29089 0.4150 +10213 29761 0.4590 +10213 29789 0.4880 +10213 29882 0.4560 +10213 29945 0.4170 +10213 29978 0.7680 +10213 29979 0.8960 +10213 50485 0.6480 +10213 50613 0.5360 +10213 50813 0.5330 +10213 51031 0.4270 +10213 51053 0.5370 +10213 51081 0.4510 +10213 51138 0.7890 +10213 51318 0.4220 +10213 51330 0.4080 +10213 51343 0.5290 +10213 51371 0.7920 +10213 51377 0.9990 +10213 51386 0.8090 +10213 51433 0.4660 +10213 51434 0.4960 +10213 51493 0.4380 +10213 51512 0.4100 +10213 51529 0.4440 +10213 51608 0.5770 +10213 51633 0.4380 +10213 51667 0.5470 +10213 51686 0.4080 +10213 51720 0.4660 +10213 54205 0.6830 +10213 54583 0.4090 +10213 54764 0.6260 +10213 54903 0.6700 +10213 55031 0.4330 +10213 55173 0.4670 +10213 55236 0.6020 +10213 55284 0.4090 +10213 55294 0.6760 +10213 55299 0.4770 +10213 55432 0.4610 +10213 55593 0.4230 +10213 55611 0.5960 +10213 55666 0.7090 +10213 55832 0.7970 +10213 56061 0.5500 +10213 56254 0.5330 +10213 56474 0.4210 +10213 56893 0.9970 +10213 56945 0.4380 +10213 56957 0.4070 +10213 56984 0.5320 +10213 57599 0.4030 +10213 57646 0.4560 +10213 57695 0.4920 +10213 59269 0.4150 +10213 59349 0.4150 +10213 64326 0.4840 +10213 64344 0.4380 +10213 64682 0.4190 +10213 64708 0.4140 +10213 64750 0.5210 +10213 64854 0.4100 +10213 64960 0.4480 +10213 78990 0.4340 +10213 79029 0.5230 +10213 79876 0.4480 +10213 80212 0.8290 +10213 80227 0.9700 +10213 80351 0.4530 +10213 81847 0.4280 +10213 83473 0.5610 +10213 83737 0.5150 +10213 83844 0.4800 +10213 84056 0.4190 +10213 84101 0.4640 +10213 84142 0.4700 +10213 84196 0.5480 +10213 84301 0.7640 +10213 84661 0.5000 +10213 84954 0.5070 +10213 84959 0.4850 +10213 84962 0.4050 +10213 90557 0.5960 +10213 91409 0.8300 +10213 92552 0.5760 +10213 112399 0.4820 +10213 119504 0.4110 +10213 122706 0.7020 +10213 123228 0.6650 +10213 126119 0.5500 +10213 131076 0.4300 +10213 134510 0.8070 +10213 138199 0.5330 +10213 143471 0.9690 +10213 143630 0.5010 +10213 150160 0.4170 +10213 150365 0.5880 +10213 161742 0.4120 +10213 166378 0.5820 +10213 197131 0.4390 +10213 200734 0.4120 +10213 203562 0.4790 +10213 219333 0.4460 +10213 221302 0.8500 +10213 246184 0.5410 +10213 254394 0.5120 +10213 339745 0.4590 +10213 377630 0.4390 +10213 399473 0.4120 +10213 414301 0.5100 +10213 728689 0.4330 +10213 100287932 0.4640 +10213 100652824 0.5490 +10214 51351 0.6450 +10214 55769 0.6410 +10214 79057 0.5440 +10214 117177 0.6300 +10214 117178 0.8320 +10214 145282 0.5180 +10214 280658 0.7030 +10214 283284 0.4470 +10214 392390 0.4340 +10215 10381 0.5450 +10215 10683 0.4370 +10215 10716 0.6850 +10215 10763 0.8360 +10215 10840 0.6430 +10215 11251 0.5030 +10215 23040 0.4980 +10215 23314 0.4740 +10215 26281 0.4040 +10215 26468 0.4880 +10215 27181 0.4320 +10215 27185 0.6690 +10215 30812 0.7010 +10215 54857 0.4270 +10215 55079 0.4080 +10215 55553 0.4240 +10215 55617 0.4320 +10215 55636 0.5490 +10215 57030 0.5330 +10215 57084 0.4620 +10215 57165 0.4400 +10215 57670 0.4010 +10215 57680 0.5420 +10215 63827 0.4270 +10215 63973 0.8250 +10215 64321 0.4070 +10215 64843 0.7120 +10215 64919 0.4520 +10215 79190 0.7000 +10215 79191 0.7290 +10215 79923 0.5670 +10215 80012 0.4030 +10215 81544 0.6180 +10215 84504 0.7610 +10215 84525 0.4490 +10215 84894 0.5510 +10215 91752 0.4290 +10215 93377 0.5320 +10215 116448 0.9090 +10215 118738 0.5920 +10215 120237 0.6460 +10215 133121 0.4590 +10215 137902 0.5150 +10215 140679 0.4700 +10215 146713 0.8280 +10215 170825 0.6050 +10215 219409 0.4840 +10215 221833 0.4020 +10215 260429 0.7040 +10215 338917 0.5380 +10215 388585 0.6790 +10215 440093 0.4060 +10215 440097 0.6090 +10215 440686 0.4050 +10215 653604 0.4150 +10215 100532731 0.4460 +10216 11096 0.5320 +10216 116844 0.4700 +10216 390038 0.4590 +10217 10867 0.4660 +10217 11075 0.4300 +10217 23210 0.4210 +10217 50853 0.4940 +10217 51412 0.4290 +10217 51454 0.4490 +10217 55274 0.4360 +10217 55754 0.4100 +10217 55764 0.4840 +10217 57539 0.5070 +10217 58190 0.8420 +10217 63916 0.4480 +10217 79767 0.4790 +10217 83461 0.8610 +10217 83699 0.4360 +10217 84365 0.4560 +10217 116135 0.4530 +10218 22846 0.4090 +10218 253935 0.4670 +10218 340267 0.4200 +10219 10225 0.4680 +10219 10365 0.4150 +10219 10538 0.5160 +10219 10578 0.5620 +10219 10663 0.6260 +10219 10666 0.6220 +10219 10803 0.4040 +10219 10859 0.6570 +10219 10870 0.4330 +10219 10871 0.4760 +10219 11126 0.8450 +10219 11251 0.4810 +10219 22807 0.4350 +10219 22914 0.6250 +10219 23484 0.7450 +10219 27036 0.4670 +10219 27087 0.7350 +10219 27141 0.5400 +10219 29121 0.5810 +10219 29126 0.5070 +10219 29851 0.7460 +10219 29990 0.6720 +10219 29992 0.6860 +10219 30009 0.8350 +10219 50616 0.4560 +10219 50943 0.7320 +10219 51176 0.4080 +10219 51744 0.6680 +10219 53637 0.4990 +10219 55540 0.5220 +10219 56253 0.5680 +10219 57823 0.4030 +10219 64946 0.4600 +10219 80328 0.4690 +10219 80381 0.4230 +10219 84868 0.7120 +10219 85480 0.4750 +10219 90865 0.6370 +10219 114836 0.5350 +10219 135250 0.4340 +10219 151888 0.5270 +10219 154064 0.4040 +10219 154075 0.4020 +10219 201633 0.7280 +10219 257101 0.5530 +10219 259197 0.5750 +10219 353091 0.4150 +10220 10272 0.8740 +10220 10468 0.9910 +10220 11197 0.8330 +10220 54760 0.4460 +10220 114907 0.4070 +10220 117166 0.8290 +10220 124857 0.9200 +10220 130399 0.9060 +10220 220202 0.9050 +10220 102723407 0.8000 +10221 10988 0.4280 +10221 11266 0.4440 +10221 22915 0.4340 +10221 26150 0.9440 +10221 26608 0.4710 +10221 27106 0.4390 +10221 27329 0.7030 +10221 28951 0.8000 +10221 51085 0.6710 +10221 51231 0.4160 +10221 51330 0.4260 +10221 51422 0.4940 +10221 53345 0.4700 +10221 53632 0.4430 +10221 55070 0.8150 +10221 64326 0.9180 +10221 64651 0.4650 +10221 65997 0.4050 +10221 79660 0.5650 +10221 79680 0.4280 +10221 80339 0.4740 +10221 80714 0.4470 +10221 83931 0.8820 +10221 84722 0.4540 +10221 84811 0.4270 +10221 90865 0.4360 +10221 116519 0.6230 +10221 127018 0.4160 +10221 137209 0.4270 +10221 144348 0.4480 +10221 148113 0.5800 +10221 255738 0.4280 +10221 326625 0.5280 +10223 23150 0.4610 +10223 79853 0.4520 +10223 100133941 0.4180 +10224 23768 0.4050 +10224 55552 0.6280 +10225 10584 0.5710 +10225 10663 0.4380 +10225 10666 0.7150 +10225 10859 0.6130 +10225 10870 0.4610 +10225 11126 0.5940 +10225 11314 0.5200 +10225 22914 0.6980 +10225 25945 0.6170 +10225 27036 0.4780 +10225 29126 0.5420 +10225 29851 0.6610 +10225 29909 0.4450 +10225 50852 0.5500 +10225 51348 0.5580 +10225 51744 0.5770 +10225 54958 0.4210 +10225 55423 0.4010 +10225 55843 0.4740 +10225 56253 0.6690 +10225 57823 0.4280 +10225 64115 0.4330 +10225 79037 0.7740 +10225 80329 0.4330 +10225 80342 0.4130 +10225 80380 0.4440 +10225 80381 0.4160 +10225 81607 0.5790 +10225 84868 0.6960 +10225 114836 0.6720 +10225 115653 0.4570 +10225 149628 0.4550 +10225 151888 0.5720 +10225 160364 0.5990 +10225 201633 0.9730 +10225 259197 0.8010 +10225 374383 0.4080 +10226 10244 0.8280 +10226 10382 0.5510 +10226 11315 0.4430 +10226 11343 0.5250 +10226 22836 0.9770 +10226 22931 0.7480 +10226 23111 0.7690 +10226 23175 0.4080 +10226 23221 0.6110 +10226 23593 0.5420 +10226 23788 0.4890 +10226 25978 0.4720 +10226 26580 0.5630 +10226 27010 0.4400 +10226 27141 0.4660 +10226 27243 0.4590 +10226 27430 0.4150 +10226 29124 0.4310 +10226 29923 0.4160 +10226 51099 0.8170 +10226 51160 0.4090 +10226 51209 0.5480 +10226 51271 0.4110 +10226 51422 0.4360 +10226 51542 0.5140 +10226 51652 0.4470 +10226 51699 0.4050 +10226 53632 0.4530 +10226 55048 0.4090 +10226 55275 0.5490 +10226 55690 0.4170 +10226 57104 0.8350 +10226 63924 0.6140 +10226 79643 0.4050 +10226 79720 0.4110 +10226 80339 0.4200 +10226 81876 0.4280 +10226 83442 0.4470 +10226 84649 0.6090 +10226 91782 0.4110 +10226 92421 0.4050 +10226 93343 0.4510 +10226 128486 0.5130 +10226 128866 0.5110 +10226 137492 0.4120 +10226 137964 0.5370 +10226 143187 0.6170 +10226 150379 0.4470 +10226 151987 0.6050 +10226 200894 0.4160 +10226 440503 0.4080 +10226 729359 0.4850 +10227 27109 0.4980 +10227 51102 0.4290 +10227 54346 0.6140 +10227 54842 0.6770 +10227 55315 0.4390 +10227 55530 0.6380 +10227 55627 0.4130 +10227 56255 0.4300 +10227 57864 0.5230 +10227 64645 0.4620 +10227 64747 0.4690 +10227 79157 0.6240 +10227 79847 0.5540 +10227 83985 0.6300 +10227 84641 0.4250 +10227 84803 0.8040 +10227 84804 0.5770 +10227 84975 0.6530 +10227 85450 0.4300 +10227 113235 0.5480 +10227 113655 0.6000 +10227 126321 0.5560 +10227 136306 0.6860 +10227 137964 0.7320 +10227 150771 0.4440 +10227 162073 0.4490 +10227 162387 0.5120 +10227 201305 0.6150 +10227 256471 0.4460 +10227 256987 0.9680 +10227 388931 0.5130 +10228 10282 0.9450 +10228 10466 0.6800 +10228 10490 0.9990 +10228 10497 0.5860 +10228 10618 0.9220 +10228 10652 0.9840 +10228 10678 0.4190 +10228 10791 0.7100 +10228 10814 0.7480 +10228 10815 0.7600 +10228 10890 0.4180 +10228 10938 0.5640 +10228 11311 0.9770 +10228 11336 0.4030 +10228 22796 0.6990 +10228 23074 0.8180 +10228 23163 0.4120 +10228 23256 0.8480 +10228 23339 0.5550 +10228 23355 0.4730 +10228 23433 0.6520 +10228 23673 0.9990 +10228 25839 0.7910 +10228 26003 0.4140 +10228 26060 0.4340 +10228 26276 0.6290 +10228 26984 0.7340 +10228 27072 0.6120 +10228 29091 0.6640 +10228 50846 0.4480 +10228 51257 0.9520 +10228 51272 0.7310 +10228 51278 0.4540 +10228 51542 0.9330 +10228 51552 0.4170 +10228 51560 0.6680 +10228 51594 0.7900 +10228 51622 0.4010 +10228 53407 0.9600 +10228 55014 0.9720 +10228 55275 0.9400 +10228 55610 0.6570 +10228 55737 0.5110 +10228 55823 0.7230 +10228 55850 0.8260 +10228 57120 0.9700 +10228 57403 0.5860 +10228 57486 0.5820 +10228 57511 0.9140 +10228 57589 0.5850 +10228 57617 0.7740 +10228 63908 0.9600 +10228 64083 0.6010 +10228 64145 0.7450 +10228 64284 0.4870 +10228 64601 0.7280 +10228 65082 0.5760 +10228 79571 0.7590 +10228 83548 0.7250 +10228 89846 0.4100 +10228 90196 0.5290 +10228 91949 0.8110 +10228 112755 0.9300 +10228 115123 0.9120 +10228 116841 0.7520 +10228 134957 0.9210 +10228 143187 0.9990 +10228 160364 0.7090 +10228 192683 0.4640 +10228 203062 0.7540 +10228 203245 0.5050 +10228 339122 0.6250 +10228 339302 0.5420 +10228 415117 0.7790 +10228 594855 0.5400 +10228 100506658 0.4030 +10229 10989 0.8160 +10229 23590 0.8760 +10229 26986 0.4020 +10229 27235 0.8680 +10229 51004 0.9900 +10229 51023 0.4830 +10229 51117 0.9870 +10229 51258 0.4060 +10229 51805 0.9990 +10229 54108 0.4080 +10229 54205 0.4750 +10229 54534 0.4990 +10229 57017 0.9990 +10229 57107 0.8650 +10229 57143 0.5090 +10229 58472 0.4320 +10229 79934 0.9010 +10229 80219 0.6290 +10229 84274 0.9980 +10229 84889 0.6970 +10229 90956 0.5790 +10229 93058 0.6850 +10229 112812 0.4260 +10229 137682 0.4950 +10229 160760 0.5920 +10229 203054 0.4540 +10231 10418 0.4620 +10231 10744 0.4350 +10231 22871 0.4110 +10231 23235 0.4970 +10231 49860 0.4230 +10231 54443 0.4270 +10231 59084 0.4470 +10231 79624 0.4310 +10231 128434 0.4850 +10231 144402 0.4270 +10231 147381 0.4260 +10231 151126 0.4710 +10231 152330 0.4230 +10231 390082 0.5400 +10232 10406 0.5140 +10232 10630 0.4480 +10232 22914 0.4790 +10232 23099 0.5240 +10232 29126 0.6060 +10232 51208 0.4230 +10232 55178 0.4200 +10232 56975 0.5090 +10232 80321 0.4310 +10232 80381 0.4310 +10232 84868 0.4470 +10232 94025 0.9950 +10232 164312 0.4890 +10232 390243 0.5050 +10232 727897 0.5400 +10232 100526664 0.4060 +10232 105375355 0.6590 +10233 22859 0.5140 +10233 22998 0.4020 +10233 23266 0.5140 +10233 23284 0.5140 +10233 25790 0.5350 +10233 27156 0.5700 +10233 29070 0.6510 +10233 51314 0.4260 +10233 54753 0.4090 +10233 54841 0.4090 +10233 55036 0.4850 +10233 55222 0.4660 +10233 55556 0.4350 +10233 55815 0.6720 +10233 57639 0.5380 +10233 60494 0.4140 +10233 79411 0.4020 +10233 83657 0.4490 +10233 83659 0.4090 +10233 83759 0.4100 +10233 85452 0.5300 +10233 85478 0.4690 +10233 89944 0.4270 +10233 90506 0.4710 +10233 92565 0.4620 +10233 112703 0.4240 +10233 114327 0.4060 +10233 115948 0.4650 +10233 118491 0.4200 +10233 132671 0.4710 +10233 137797 0.4800 +10233 145508 0.4520 +10233 146845 0.6480 +10233 149465 0.4400 +10233 151112 0.4530 +10233 151827 0.6190 +10233 161502 0.5880 +10233 200162 0.4650 +10233 200373 0.4070 +10233 221264 0.5210 +10233 222967 0.4970 +10233 253769 0.4930 +10233 283726 0.4670 +10233 374618 0.4190 +10233 401089 0.4470 +10233 100130613 0.4640 +10234 10631 0.4370 +10234 22859 0.5140 +10234 23266 0.5180 +10234 23284 0.5330 +10234 26112 0.4540 +10234 51804 0.4610 +10234 79733 0.4370 +10234 91404 0.4060 +10234 130271 0.4490 +10234 222235 0.5750 +10234 283431 0.4070 +10235 10368 0.6510 +10235 10369 0.6620 +10235 10451 0.4860 +10235 10750 0.5300 +10235 22800 0.7130 +10235 22808 0.7750 +10235 22821 0.5840 +10235 23108 0.4140 +10235 27091 0.7090 +10235 27092 0.6750 +10235 51206 0.4490 +10235 51655 0.6330 +10235 54518 0.5010 +10235 55612 0.4130 +10235 55799 0.6630 +10235 59283 0.6980 +10235 59284 0.7000 +10235 59285 0.6500 +10235 64805 0.4690 +10235 64926 0.4410 +10235 83660 0.4250 +10235 83706 0.9070 +10235 93589 0.6700 +10235 221002 0.4130 +10235 400581 0.4030 +10236 10284 0.5840 +10236 10286 0.4130 +10236 10291 0.5760 +10236 10399 0.6410 +10236 10432 0.8150 +10236 10471 0.4710 +10236 10492 0.9560 +10236 10514 0.6050 +10236 10521 0.4490 +10236 10536 0.6520 +10236 10574 0.5900 +10236 10575 0.5440 +10236 10576 0.5670 +10236 10594 0.4830 +10236 10605 0.5240 +10236 10614 0.4370 +10236 10642 0.6840 +10236 10656 0.5300 +10236 10657 0.8680 +10236 10694 0.5570 +10236 10726 0.4510 +10236 10772 0.6560 +10236 10856 0.4320 +10236 10921 0.4660 +10236 10929 0.4210 +10236 10946 0.4100 +10236 10949 0.8900 +10236 11051 0.6210 +10236 11052 0.6200 +10236 11100 0.4030 +10236 11171 0.4650 +10236 11218 0.5490 +10236 11335 0.4160 +10236 11338 0.8290 +10236 22913 0.5970 +10236 22916 0.6430 +10236 22948 0.5060 +10236 23016 0.5400 +10236 23020 0.4560 +10236 23160 0.4430 +10236 23350 0.5110 +10236 23404 0.4350 +10236 23405 0.4010 +10236 23435 0.8990 +10236 23450 0.6340 +10236 24144 0.5820 +10236 25804 0.4660 +10236 25914 0.4370 +10236 25929 0.5940 +10236 26065 0.4110 +10236 26097 0.7310 +10236 26135 0.4570 +10236 26986 0.7190 +10236 27258 0.5220 +10236 27316 0.9360 +10236 27339 0.7230 +10236 29896 0.4620 +10236 50628 0.4760 +10236 51493 0.7020 +10236 51574 0.8170 +10236 51593 0.5500 +10236 51637 0.5350 +10236 51639 0.4200 +10236 51663 0.7930 +10236 51691 0.4430 +10236 51808 0.5300 +10236 54433 0.4710 +10236 54606 0.5300 +10236 54998 0.4360 +10236 55110 0.4760 +10236 55234 0.4420 +10236 55342 0.7190 +10236 55660 0.4100 +10236 56257 0.5730 +10236 56259 0.6710 +10236 56341 0.6570 +10236 57187 0.5300 +10236 60489 0.4640 +10236 64963 0.4670 +10236 64969 0.6130 +10236 79760 0.5790 +10236 79833 0.5230 +10236 80218 0.4790 +10236 83443 0.4360 +10236 84064 0.4210 +10236 84844 0.4890 +10236 84967 0.4450 +10236 92906 0.4870 +10236 135295 0.4390 +10236 143884 0.5070 +10236 149041 0.5400 +10236 202559 0.6260 +10236 220988 0.9250 +10236 221092 0.5660 +10236 284695 0.4540 +10236 440026 0.4690 +10237 10430 0.4990 +10237 10559 0.5590 +10237 10682 0.4160 +10237 11046 0.7810 +10237 23169 0.9520 +10237 26003 0.4420 +10237 29100 0.6060 +10237 51006 0.5590 +10237 51124 0.5010 +10237 51726 0.4880 +10237 55032 0.6010 +10237 55343 0.5800 +10237 56005 0.4300 +10237 56851 0.5880 +10237 57003 0.4130 +10237 64924 0.4410 +10237 79139 0.4530 +10237 79939 0.5630 +10237 81558 0.6600 +10237 84102 0.4230 +10237 84255 0.4440 +10237 84975 0.4880 +10237 113655 0.4150 +10237 113829 0.6060 +10237 222553 0.5310 +10237 286451 0.4910 +10237 340146 0.8030 +10238 10336 0.7870 +10238 10528 0.4080 +10238 10564 0.4050 +10238 10574 0.7370 +10238 10575 0.7440 +10238 10576 0.8030 +10238 10693 0.5850 +10238 10694 0.7840 +10238 10920 0.5210 +10238 10980 0.4900 +10238 10987 0.4320 +10238 11091 0.7610 +10238 11146 0.7230 +10238 11328 0.4060 +10238 11331 0.7580 +10238 22803 0.4870 +10238 22948 0.7460 +10238 23038 0.5730 +10238 23132 0.7920 +10238 23142 0.5240 +10238 23197 0.5550 +10238 23412 0.5060 +10238 23429 0.8770 +10238 23774 0.4290 +10238 25853 0.9020 +10238 25879 0.9000 +10238 26053 0.8680 +10238 26094 0.9170 +10238 26115 0.4240 +10238 26133 0.9010 +10238 26190 0.4600 +10238 26224 0.4110 +10238 26330 0.4150 +10238 26985 0.4500 +10238 27154 0.4250 +10238 28952 0.5070 +10238 28991 0.5080 +10238 28996 0.9390 +10238 29099 0.5220 +10238 50717 0.9120 +10238 50813 0.4050 +10238 51122 0.5130 +10238 51138 0.4080 +10238 51185 0.9050 +10238 51307 0.7780 +10238 51397 0.5110 +10238 51514 0.9320 +10238 51592 0.4360 +10238 54165 0.5270 +10238 54461 0.9170 +10238 54681 0.6510 +10238 54765 0.4120 +10238 54876 0.9030 +10238 54880 0.5240 +10238 54939 0.5440 +10238 54951 0.5040 +10238 55070 0.9030 +10238 55135 0.4010 +10238 55208 0.5200 +10238 55294 0.4160 +10238 55626 0.9340 +10238 55827 0.9000 +10238 55832 0.5280 +10238 57332 0.5180 +10238 57666 0.8490 +10238 64319 0.8190 +10238 64326 0.9000 +10238 64708 0.4110 +10238 65124 0.4730 +10238 79016 0.9410 +10238 79269 0.9140 +10238 80012 0.4630 +10238 80067 0.9000 +10238 80139 0.7260 +10238 80344 0.9330 +10238 84259 0.5240 +10238 84333 0.7080 +10238 84678 0.5660 +10238 84759 0.4240 +10238 84858 0.4300 +10238 90379 0.9110 +10238 91750 0.5580 +10238 113263 0.4270 +10238 118461 0.6890 +10238 134548 0.4310 +10238 138009 0.5410 +10238 139170 0.5400 +10238 139425 0.5400 +10238 147746 0.6520 +10238 149951 0.5090 +10238 150684 0.5070 +10238 150864 0.7790 +10238 170622 0.5080 +10238 204851 0.6740 +10238 221937 0.4610 +10238 254225 0.7970 +10238 285429 0.5410 +10238 340578 0.5400 +10238 347442 0.5400 +10239 10363 0.6340 +10239 10717 0.9290 +10239 10947 0.9900 +10239 11154 0.9100 +10239 11276 0.7290 +10239 11342 0.4760 +10239 23339 0.4030 +10239 23431 0.9510 +10239 26190 0.4370 +10239 26985 0.9960 +10239 55317 0.9400 +10239 55745 0.9370 +10239 55823 0.4290 +10239 57704 0.4170 +10239 65082 0.4440 +10239 79571 0.4120 +10239 84251 0.7200 +10239 91056 0.9210 +10239 122616 0.5400 +10239 128408 0.7000 +10239 128486 0.4190 +10239 130340 0.5590 +10239 348110 0.8730 +10240 10573 0.8340 +10240 10884 0.9780 +10240 11097 0.5390 +10240 11193 0.6340 +10240 11222 0.8590 +10240 11331 0.4360 +10240 11340 0.4140 +10240 22907 0.4120 +10240 23078 0.5110 +10240 23107 0.9950 +10240 23144 0.5180 +10240 23414 0.5140 +10240 23512 0.4370 +10240 26271 0.4330 +10240 26284 0.9620 +10240 26589 0.9110 +10240 27349 0.8680 +10240 28957 0.9920 +10240 28973 0.9940 +10240 28977 0.9390 +10240 28998 0.8930 +10240 29074 0.8560 +10240 29080 0.4880 +10240 29088 0.8660 +10240 29093 0.8780 +10240 29896 0.6170 +10240 51021 0.9930 +10240 51023 0.9900 +10240 51069 0.8960 +10240 51073 0.8850 +10240 51081 0.9970 +10240 51103 0.4750 +10240 51106 0.8550 +10240 51116 0.9950 +10240 51121 0.5650 +10240 51253 0.8380 +10240 51258 0.8870 +10240 51263 0.9020 +10240 51264 0.8440 +10240 51318 0.8820 +10240 51373 0.9830 +10240 51574 0.5600 +10240 51642 0.8940 +10240 51649 0.9980 +10240 51650 0.9990 +10240 51805 0.4070 +10240 54148 0.9790 +10240 54460 0.9960 +10240 54516 0.7050 +10240 54534 0.8600 +10240 54931 0.5400 +10240 54948 0.8980 +10240 54998 0.9940 +10240 55037 0.9990 +10240 55052 0.8820 +10240 55168 0.9550 +10240 55173 0.9980 +10240 55316 0.4640 +10240 56829 0.4040 +10240 56945 0.9980 +10240 57038 0.5140 +10240 57129 0.8850 +10240 57511 0.5220 +10240 60488 0.9980 +10240 60528 0.4410 +10240 63875 0.8510 +10240 63931 0.9980 +10240 64432 0.9960 +10240 64745 0.8610 +10240 64928 0.8450 +10240 64949 0.9950 +10240 64951 0.9980 +10240 64960 0.9960 +10240 64963 0.9960 +10240 64965 0.9980 +10240 64968 0.9930 +10240 64969 0.9960 +10240 64975 0.8840 +10240 64976 0.9080 +10240 64978 0.8900 +10240 64979 0.8630 +10240 64981 0.8420 +10240 64983 0.8650 +10240 65003 0.8890 +10240 65005 0.8920 +10240 65008 0.9340 +10240 65080 0.9000 +10240 65993 0.9960 +10240 78988 0.8370 +10240 79072 0.7660 +10240 79590 0.8740 +10240 79863 0.8300 +10240 79922 0.5270 +10240 80222 0.4440 +10240 84273 0.8930 +10240 84311 0.9300 +10240 84545 0.8390 +10240 85476 0.8630 +10240 90480 0.8400 +10240 91574 0.5450 +10240 92259 0.8590 +10240 92399 0.8810 +10240 116540 0.9150 +10240 116541 0.8680 +10240 118487 0.9840 +10240 122704 0.9050 +10240 124637 0.4890 +10240 124995 0.8880 +10240 128308 0.8680 +10240 131118 0.5080 +10240 139322 0.4090 +10240 158234 0.8300 +10240 196074 0.8280 +10240 219402 0.9560 +10240 219927 0.9140 +10240 286075 0.6310 +10240 100288797 0.4330 +10241 10287 0.4680 +10241 10455 0.4100 +10241 10465 0.4350 +10241 10533 0.6520 +10241 10537 0.5710 +10241 10616 0.5770 +10241 10626 0.4640 +10241 10755 0.4910 +10241 10871 0.9120 +10241 11021 0.7920 +10241 11059 0.6050 +10241 11074 0.4230 +10241 11137 0.4060 +10241 11267 0.4870 +10241 11331 0.5230 +10241 11337 0.9940 +10241 11345 0.9960 +10241 22863 0.6850 +10241 23001 0.5750 +10241 23118 0.4420 +10241 23158 0.5170 +10241 23192 0.6440 +10241 23405 0.7470 +10241 23710 0.9950 +10241 23770 0.5790 +10241 23786 0.7020 +10241 25820 0.4270 +10241 25851 0.5060 +10241 26100 0.7530 +10241 26994 0.4790 +10241 27161 0.5160 +10241 29110 0.9860 +10241 29982 0.4200 +10241 30849 0.5520 +10241 50628 0.5870 +10241 51024 0.4830 +10241 51368 0.4390 +10241 53349 0.7800 +10241 54463 0.5300 +10241 54469 0.4070 +10241 54472 0.5130 +10241 54708 0.4380 +10241 55014 0.5940 +10241 55054 0.7540 +10241 55062 0.7600 +10241 55072 0.4680 +10241 55149 0.8200 +10241 55201 0.7270 +10241 55288 0.4870 +10241 55486 0.6430 +10241 55626 0.6190 +10241 55669 0.5660 +10241 55905 0.4400 +10241 56061 0.4030 +10241 56947 0.4120 +10241 56957 0.4150 +10241 57109 0.7570 +10241 57154 0.6740 +10241 57506 0.7980 +10241 60673 0.5810 +10241 60685 0.4020 +10241 64127 0.4450 +10241 64343 0.9600 +10241 64422 0.6960 +10241 64783 0.4420 +10241 64786 0.4330 +10241 65018 0.9250 +10241 79065 0.7110 +10241 79443 0.4240 +10241 79594 0.5120 +10241 79735 0.4150 +10241 80196 0.5240 +10241 80344 0.4830 +10241 80712 0.5000 +10241 81631 0.9400 +10241 83734 0.5110 +10241 84557 0.9150 +10241 84749 0.5480 +10241 84938 0.5740 +10241 84971 0.5860 +10241 90678 0.8830 +10241 112858 0.4230 +10241 115004 0.4210 +10241 115201 0.5290 +10241 124540 0.4270 +10241 136991 0.4750 +10241 139341 0.7200 +10241 192111 0.4800 +10241 220972 0.5950 +10241 257397 0.4240 +10241 345611 0.5370 +10241 440738 0.9990 +10241 643246 0.5440 +10242 27094 0.9110 +10242 27345 0.9350 +10242 128408 0.5710 +10242 157855 0.9210 +10243 10533 0.4830 +10243 10923 0.4090 +10243 10978 0.4260 +10243 11129 0.8030 +10243 11337 0.9340 +10243 22829 0.4780 +10243 22865 0.5020 +10243 22871 0.7220 +10243 22906 0.4850 +10243 22941 0.4860 +10243 23114 0.4880 +10243 23157 0.4250 +10243 23229 0.9980 +10243 23380 0.4750 +10243 23710 0.5360 +10243 26045 0.4640 +10243 27304 0.7210 +10243 50944 0.4160 +10243 51062 0.4440 +10243 51304 0.4370 +10243 54413 0.6480 +10243 54552 0.4010 +10243 54996 0.7780 +10243 55034 0.5630 +10243 55236 0.4610 +10243 55740 0.7300 +10243 56252 0.4840 +10243 57030 0.7370 +10243 57082 0.4310 +10243 57084 0.6170 +10243 57468 0.5920 +10243 57502 0.7670 +10243 57555 0.9680 +10243 64398 0.4320 +10243 79876 0.4680 +10243 80059 0.4050 +10243 81831 0.4750 +10243 83641 0.6790 +10243 83942 0.4260 +10243 84324 0.4350 +10243 84885 0.4110 +10243 85358 0.5410 +10243 127833 0.4830 +10243 140679 0.9390 +10243 140735 0.8130 +10243 146713 0.4440 +10243 284451 0.4510 +10243 345456 0.8170 +10243 375189 0.8150 +10243 375323 0.7530 +10243 375612 0.6810 +10243 388135 0.8070 +10243 440073 0.8260 +10243 653519 0.5190 +10243 728378 0.4100 +10244 10890 0.4090 +10244 22836 0.5490 +10244 23002 0.4760 +10244 23369 0.4040 +10244 23404 0.4780 +10244 23500 0.4750 +10244 25807 0.4010 +10244 25924 0.4440 +10244 27243 0.4070 +10244 29090 0.7810 +10244 51154 0.4290 +10244 51209 0.5160 +10244 51263 0.4430 +10244 51542 0.5170 +10244 51550 0.5890 +10244 51642 0.4590 +10244 55239 0.4570 +10244 55275 0.6200 +10244 57576 0.4190 +10244 63908 0.4990 +10244 63932 0.4460 +10244 79230 0.5440 +10244 80131 0.4460 +10244 85462 0.4750 +10244 93594 0.4130 +10244 123207 0.5020 +10244 140467 0.5150 +10244 143187 0.5680 +10244 145581 0.4580 +10245 10440 0.8230 +10245 10452 0.8090 +10245 10469 0.9310 +10245 10730 0.5390 +10245 10953 0.4740 +10245 11331 0.5760 +10245 11343 0.5500 +10245 23203 0.6840 +10245 23399 0.4180 +10245 25874 0.6470 +10245 26229 0.4940 +10245 26515 0.8110 +10245 26517 0.5910 +10245 26519 0.8930 +10245 26520 0.7900 +10245 26521 0.5940 +10245 27089 0.4470 +10245 27166 0.4050 +10245 27235 0.5010 +10245 28952 0.4740 +10245 29090 0.9520 +10245 29103 0.8740 +10245 29796 0.4440 +10245 29928 0.8300 +10245 29957 0.4910 +10245 51025 0.9550 +10245 51079 0.7590 +10245 51161 0.4580 +10245 51260 0.4860 +10245 51312 0.4870 +10245 51496 0.4100 +10245 54539 0.6000 +10245 54543 0.5340 +10245 55154 0.4850 +10245 55967 0.6360 +10245 56993 0.5980 +10245 57407 0.4250 +10245 57722 0.4690 +10245 58986 0.4590 +10245 60386 0.4020 +10245 79085 0.5220 +10245 80045 0.4740 +10245 80273 0.7880 +10245 84134 0.5550 +10245 84886 0.7820 +10245 90580 0.4110 +10245 91942 0.4360 +10245 92609 0.9960 +10245 114789 0.5670 +10245 131118 0.9210 +10245 131474 0.5160 +10245 134266 0.7320 +10245 140823 0.8420 +10245 150274 0.5090 +10245 165100 0.5470 +10245 197257 0.5050 +10245 200576 0.4970 +10245 284427 0.4570 +10245 374291 0.5920 +10245 100287932 0.9990 +10246 10396 0.4250 +10246 55867 0.4470 +10246 116519 0.4480 +10246 142680 0.4380 +10246 256394 0.4310 +10247 10840 0.4170 +10247 10993 0.7870 +10247 10994 0.8230 +10247 23016 0.7480 +10247 23019 0.7740 +10247 26061 0.8280 +10247 29883 0.4010 +10247 51441 0.9890 +10247 51611 0.5070 +10247 54512 0.5870 +10247 54890 0.4310 +10247 54915 0.5190 +10247 55629 0.4640 +10247 56339 0.4890 +10247 56915 0.4830 +10247 57721 0.4110 +10247 57794 0.4840 +10247 58477 0.4250 +10247 63826 0.7480 +10247 64577 0.4370 +10247 64848 0.4890 +10247 84293 0.4130 +10247 89978 0.5120 +10247 91746 0.5420 +10247 92715 0.4890 +10247 113675 0.7660 +10247 118460 0.5770 +10247 126133 0.4170 +10247 160428 0.4020 +10247 253943 0.5510 +10247 285381 0.5130 +10248 10528 0.7270 +10248 10556 0.9990 +10248 10557 0.9970 +10248 10775 0.9980 +10248 10799 0.9970 +10248 10940 0.9960 +10248 10978 0.9100 +10248 11102 0.9910 +10248 11157 0.6640 +10248 23405 0.9020 +10248 25871 0.6470 +10248 25998 0.6800 +10248 26046 0.4090 +10248 26523 0.7220 +10248 27161 0.9000 +10248 29102 0.7220 +10248 51002 0.5250 +10248 51367 0.9990 +10248 51602 0.9040 +10248 54433 0.7580 +10248 54487 0.7200 +10248 54913 0.9990 +10248 54931 0.6150 +10248 55505 0.9160 +10248 55644 0.4230 +10248 55651 0.7780 +10248 79897 0.9950 +10248 80746 0.5400 +10248 83608 0.6160 +10248 92345 0.9020 +10248 112858 0.5780 +10248 138716 0.9890 +10248 192669 0.7200 +10248 192670 0.7200 +10248 283989 0.5600 +10248 345630 0.5790 +10249 10544 0.5270 +10249 51179 0.4470 +10249 54575 0.4140 +10249 54576 0.4310 +10249 54577 0.4150 +10249 54578 0.4270 +10249 54657 0.4210 +10249 54658 0.4230 +10249 55224 0.4560 +10249 55631 0.4220 +10249 57148 0.4340 +10249 79017 0.7800 +10249 81552 0.4910 +10249 84619 0.4560 +10249 123876 0.6350 +10249 132949 0.4010 +10249 139818 0.6130 +10249 157574 0.4330 +10249 196541 0.4200 +10249 348158 0.6950 +10249 728226 0.6080 +10249 100509620 0.4180 +10250 10262 0.8300 +10250 10283 0.8330 +10250 10284 0.8210 +10250 10286 0.8170 +10250 10291 0.9140 +10250 10450 0.8350 +10250 10482 0.9970 +10250 10569 0.8820 +10250 10594 0.9480 +10250 10657 0.7880 +10250 10762 0.5800 +10250 10772 0.4940 +10250 10907 0.8050 +10250 10915 0.9840 +10250 10921 0.9990 +10250 10929 0.4790 +10250 10946 0.9170 +10250 10949 0.5330 +10250 10978 0.5000 +10250 10992 0.9170 +10250 11051 0.5590 +10250 11052 0.6920 +10250 11097 0.5740 +10250 11157 0.8210 +10250 11193 0.8000 +10250 11338 0.9230 +10250 22794 0.7250 +10250 22826 0.6810 +10250 22916 0.9130 +10250 22938 0.8940 +10250 22944 0.8120 +10250 22985 0.8940 +10250 23020 0.8780 +10250 23029 0.5550 +10250 23091 0.4350 +10250 23165 0.5290 +10250 23215 0.5920 +10250 23221 0.5640 +10250 23225 0.5040 +10250 23279 0.8420 +10250 23350 0.4770 +10250 23360 0.4560 +10250 23398 0.8350 +10250 23450 0.8510 +10250 23451 0.9710 +10250 23476 0.5790 +10250 23511 0.5070 +10250 23517 0.8210 +10250 23524 0.9990 +10250 23636 0.6140 +10250 23658 0.8060 +10250 23759 0.9610 +10250 24144 0.6500 +10250 24148 0.8250 +10250 25804 0.8520 +10250 25949 0.8450 +10250 25957 0.5710 +10250 26017 0.8000 +10250 26019 0.9980 +10250 26097 0.5680 +10250 27238 0.8370 +10250 27258 0.8070 +10250 27316 0.4300 +10250 27336 0.6850 +10250 27339 0.8520 +10250 29896 0.7280 +10250 51213 0.4990 +10250 51340 0.8390 +10250 51362 0.9670 +10250 51366 0.4120 +10250 51428 0.8570 +10250 51503 0.9070 +10250 51585 0.6350 +10250 51593 0.8460 +10250 51634 0.8000 +10250 51639 0.8970 +10250 51645 0.9630 +10250 51690 0.8480 +10250 51691 0.8060 +10250 51729 0.9770 +10250 51747 0.8330 +10250 53371 0.5080 +10250 53938 0.8320 +10250 54845 0.4850 +10250 55110 0.9040 +10250 55119 0.5550 +10250 55234 0.8060 +10250 55660 0.9270 +10250 55692 0.4180 +10250 55696 0.8830 +10250 55706 0.5030 +10250 55746 0.6760 +10250 55749 0.6550 +10250 56259 0.8510 +10250 56949 0.8600 +10250 57122 0.5440 +10250 57187 0.7140 +10250 57703 0.9680 +10250 57794 0.5720 +10250 57819 0.8230 +10250 58509 0.8050 +10250 58517 0.9990 +10250 59286 0.9600 +10250 63932 0.8140 +10250 65109 0.9650 +10250 65110 0.9990 +10250 65117 0.4880 +10250 79005 0.8010 +10250 79023 0.5130 +10250 79228 0.5530 +10250 79637 0.9220 +10250 79706 0.8010 +10250 79753 0.8590 +10250 79811 0.4730 +10250 79869 0.6690 +10250 79902 0.5070 +10250 80004 0.5150 +10250 80145 0.5070 +10250 80755 0.4650 +10250 81929 0.5170 +10250 83443 0.9040 +10250 84060 0.8000 +10250 84081 0.4730 +10250 84248 0.5720 +10250 84271 0.7180 +10250 84321 0.5110 +10250 84324 0.5290 +10250 84530 0.5810 +10250 84811 0.8330 +10250 84844 0.9200 +10250 84950 0.9780 +10250 84991 0.4220 +10250 114823 0.4030 +10250 124245 0.6620 +10250 129401 0.5160 +10250 140890 0.4970 +10250 143884 0.5810 +10250 151903 0.8520 +10250 151987 0.4470 +10250 153527 0.9590 +10250 163859 0.8090 +10250 199746 0.5850 +10250 222183 0.5530 +10250 348995 0.5150 +10250 100101267 0.5520 +10250 100534599 0.8390 +10250 100885850 0.4650 +10251 10252 0.4940 +10251 10818 0.4700 +10251 11162 0.4080 +10251 26281 0.5350 +10251 27006 0.5210 +10251 27328 0.4900 +10251 55217 0.5390 +10251 55344 0.5790 +10251 83259 0.4480 +10251 90316 0.5080 +10251 207063 0.5420 +10252 10253 0.7670 +10252 10254 0.5030 +10252 10818 0.7580 +10252 11338 0.4910 +10252 27006 0.4020 +10252 27250 0.6550 +10252 29123 0.4240 +10252 29924 0.4990 +10252 30011 0.6390 +10252 54756 0.4530 +10252 55217 0.5480 +10252 55521 0.6490 +10252 58513 0.4990 +10252 81671 0.4040 +10252 81848 0.5360 +10252 84648 0.5910 +10252 255324 0.5060 +10252 285888 0.4360 +10252 353141 0.6220 +10252 353142 0.5910 +10253 10254 0.5220 +10253 10818 0.8020 +10253 22822 0.6910 +10253 22943 0.4360 +10253 23314 0.4360 +10253 23390 0.6240 +10253 23462 0.4700 +10253 25829 0.4180 +10253 26281 0.5970 +10253 27006 0.5950 +10253 27250 0.5190 +10253 29924 0.4990 +10253 30011 0.7040 +10253 51603 0.4710 +10253 54756 0.6390 +10253 58513 0.4990 +10253 64067 0.4020 +10253 81848 0.6250 +10253 85407 0.5260 +10253 127018 0.4380 +10253 161742 0.5540 +10253 200734 0.5810 +10253 255324 0.4990 +10253 347853 0.5470 +10253 441478 0.5050 +10254 10617 0.9990 +10254 10855 0.5420 +10254 10987 0.6260 +10254 11267 0.8660 +10254 22905 0.6600 +10254 23468 0.4340 +10254 25930 0.9930 +10254 25978 0.8470 +10254 26018 0.5340 +10254 26119 0.4990 +10254 26994 0.8230 +10254 27183 0.5040 +10254 27236 0.4300 +10254 27243 0.8690 +10254 29924 0.6650 +10254 29978 0.7880 +10254 29979 0.5380 +10254 30011 0.5860 +10254 50618 0.5420 +10254 50700 0.5130 +10254 51028 0.9030 +10254 51160 0.8960 +10254 51271 0.8680 +10254 51510 0.5440 +10254 51534 0.6110 +10254 51652 0.9390 +10254 53349 0.6790 +10254 55048 0.8430 +10254 55293 0.8010 +10254 55620 0.5900 +10254 55742 0.4050 +10254 55763 0.5420 +10254 57132 0.9080 +10254 57559 0.4520 +10254 58480 0.6080 +10254 58513 0.7910 +10254 64750 0.6450 +10254 79643 0.8950 +10254 79720 0.8520 +10254 83737 0.5230 +10254 84313 0.8910 +10254 84936 0.6760 +10254 84959 0.4490 +10254 89853 0.8240 +10254 91782 0.7410 +10254 92421 0.7270 +10254 93343 0.9050 +10254 114803 0.4580 +10254 128866 0.8250 +10254 137492 0.8510 +10254 148362 0.5460 +10254 155382 0.7980 +10254 201140 0.5130 +10254 255324 0.4990 +10254 390595 0.5400 +10254 399473 0.4120 +10254 100526767 0.7860 +10256 11186 0.9150 +10256 22866 0.4810 +10256 26499 0.5710 +10256 27106 0.4320 +10256 27128 0.6740 +10256 54509 0.4340 +10256 54518 0.4100 +10256 54756 0.5160 +10256 65997 0.4560 +10256 83593 0.6290 +10256 84144 0.4630 +10256 84292 0.4370 +10256 114822 0.8470 +10257 10599 0.7220 +10257 10786 0.6370 +10257 10864 0.8150 +10257 11309 0.7130 +10257 28231 0.5130 +10257 28232 0.4810 +10257 28234 0.7140 +10257 51081 0.9480 +10257 53919 0.4880 +10257 54575 0.5180 +10257 54576 0.5180 +10257 54577 0.5240 +10257 54578 0.5340 +10257 54657 0.5270 +10257 54658 0.5290 +10257 55244 0.6880 +10257 55270 0.4920 +10257 55867 0.8280 +10257 56606 0.6260 +10257 64078 0.5010 +10257 64137 0.4870 +10257 81609 0.7990 +10257 113235 0.4010 +10257 114571 0.7160 +10257 116085 0.7680 +10257 123264 0.6000 +10257 131450 0.4090 +10257 146802 0.6140 +10257 200931 0.6090 +10257 340273 0.4380 +10257 353189 0.5310 +10257 654346 0.7140 +10260 10890 0.7210 +10260 23261 0.4880 +10260 23546 0.4660 +10260 26235 0.4610 +10260 51495 0.4180 +10260 51762 0.4190 +10260 54991 0.4180 +10260 55636 0.4060 +10260 57706 0.4480 +10260 79101 0.5030 +10260 79722 0.4860 +10260 81556 0.4090 +10260 131965 0.5260 +10260 204474 0.4650 +10261 10288 0.5290 +10261 10875 0.5120 +10261 11025 0.4810 +10261 29992 0.5070 +10261 50852 0.4190 +10261 50856 0.5590 +10261 51108 0.9720 +10261 51311 0.5430 +10261 53829 0.5420 +10261 54440 0.4820 +10261 56833 0.4670 +10261 58475 0.4410 +10261 64231 0.5910 +10261 64581 0.4340 +10261 64926 0.4390 +10261 79626 0.4270 +10261 146183 0.4800 +10261 152404 0.4170 +10261 160364 0.4510 +10261 219972 0.4620 +10261 283284 0.4110 +10262 10283 0.9940 +10262 10285 0.7640 +10262 10286 0.9980 +10262 10291 0.9990 +10262 10419 0.4730 +10262 10421 0.4120 +10262 10450 0.9150 +10262 10465 0.8510 +10262 10491 0.4380 +10262 10498 0.6720 +10262 10499 0.4730 +10262 10521 0.6140 +10262 10523 0.8350 +10262 10594 0.9990 +10262 10713 0.8550 +10262 10891 0.4700 +10262 10903 0.4860 +10262 10907 0.9930 +10262 10915 0.9950 +10262 10921 0.4020 +10262 10946 0.9990 +10262 10973 0.6040 +10262 10992 0.9990 +10262 11017 0.8170 +10262 11066 0.8610 +10262 11100 0.6340 +10262 11157 0.9900 +10262 11193 0.9920 +10262 11325 0.9870 +10262 11338 0.9990 +10262 22826 0.4400 +10262 22827 0.6080 +10262 22916 0.9590 +10262 22938 0.9300 +10262 22944 0.8110 +10262 22985 0.5430 +10262 23020 0.9990 +10262 23029 0.4020 +10262 23082 0.4810 +10262 23091 0.5430 +10262 23350 0.6970 +10262 23398 0.5580 +10262 23450 0.9990 +10262 23451 0.9990 +10262 23524 0.9910 +10262 23548 0.4560 +10262 23658 0.9890 +10262 23759 0.8420 +10262 24148 0.9990 +10262 25766 0.5820 +10262 25804 0.9910 +10262 25949 0.8050 +10262 26121 0.9920 +10262 27238 0.8650 +10262 27258 0.9870 +10262 27288 0.6590 +10262 27316 0.4570 +10262 27336 0.9580 +10262 27339 0.9830 +10262 29896 0.6370 +10262 51322 0.4650 +10262 51340 0.9460 +10262 51362 0.9870 +10262 51503 0.9330 +10262 51538 0.6410 +10262 51574 0.6520 +10262 51631 0.6000 +10262 51634 0.9990 +10262 51639 0.9990 +10262 51645 0.8450 +10262 51690 0.9910 +10262 51691 0.9950 +10262 51729 0.8590 +10262 51747 0.7690 +10262 54496 0.4820 +10262 54883 0.6180 +10262 54952 0.7570 +10262 54957 0.4260 +10262 55015 0.5100 +10262 55094 0.4350 +10262 55100 0.4090 +10262 55110 0.9020 +10262 55234 0.9790 +10262 55285 0.8080 +10262 55596 0.5420 +10262 55599 0.9580 +10262 55660 0.4200 +10262 55671 0.4820 +10262 55692 0.6500 +10262 55696 0.9550 +10262 55702 0.4680 +10262 55954 0.8980 +10262 56259 0.8610 +10262 56949 0.9300 +10262 57187 0.5880 +10262 57466 0.5950 +10262 57703 0.9920 +10262 57819 0.9910 +10262 58517 0.7370 +10262 59286 0.8480 +10262 60625 0.5480 +10262 64431 0.8510 +10262 65109 0.4930 +10262 79005 0.8090 +10262 79084 0.5770 +10262 79171 0.8540 +10262 79446 0.7740 +10262 79637 0.9230 +10262 79696 0.4570 +10262 79753 0.9940 +10262 79869 0.5480 +10262 83443 0.9990 +10262 83938 0.7920 +10262 84060 0.8000 +10262 84081 0.5050 +10262 84100 0.4110 +10262 84292 0.9950 +10262 84316 0.6390 +10262 84811 0.9970 +10262 84844 0.9990 +10262 84950 0.9870 +10262 84967 0.4460 +10262 84991 0.7490 +10262 85313 0.6180 +10262 85437 0.8120 +10262 90324 0.7880 +10262 90826 0.7120 +10262 126259 0.6390 +10262 139804 0.6540 +10262 147650 0.6390 +10262 151987 0.6370 +10262 153527 0.9910 +10262 154007 0.8470 +10262 164045 0.6340 +10262 164781 0.5320 +10262 220074 0.7920 +10262 222183 0.4240 +10262 256536 0.8400 +10262 284325 0.4340 +10262 347744 0.7570 +10262 348793 0.5410 +10262 392517 0.5350 +10262 100996928 0.5880 +10262 101669762 0.6140 +10263 57504 0.4450 +10263 114932 0.4260 +10263 221468 0.4050 +10265 23171 0.6680 +10265 23322 0.6170 +10265 23405 0.4310 +10265 23704 0.6920 +10265 30813 0.5180 +10265 55800 0.5650 +10265 79068 0.6880 +10265 79190 0.6450 +10265 79191 0.9370 +10265 84159 0.6440 +10265 150572 0.7930 +10265 153572 0.4080 +10266 10267 0.9630 +10266 10268 0.9910 +10266 11318 0.5390 +10266 27297 0.4130 +10266 54331 0.8040 +10266 54345 0.4400 +10266 54538 0.4470 +10266 79812 0.4520 +10266 79924 0.9240 +10266 79987 0.4440 +10266 165829 0.5400 +10266 221395 0.7160 +10266 641700 0.4970 +10267 10268 0.9640 +10267 10327 0.4030 +10267 11318 0.4320 +10267 27297 0.9810 +10267 54331 0.8000 +10267 55586 0.4240 +10267 57016 0.4320 +10267 79924 0.9510 +10267 165829 0.5400 +10267 375316 0.4920 +10268 11318 0.4790 +10268 27297 0.4170 +10268 51705 0.4130 +10268 54112 0.4310 +10268 54331 0.8000 +10268 57007 0.5500 +10268 79924 0.9940 +10268 165829 0.6490 +10268 387266 0.4910 +10268 114515518 0.4030 +10269 10491 0.5020 +10269 10555 0.8010 +10269 10730 0.4510 +10269 10890 0.4520 +10269 10939 0.4150 +10269 10999 0.5290 +10269 23028 0.5200 +10269 23173 0.4510 +10269 23224 0.4030 +10269 23345 0.6550 +10269 23353 0.7950 +10269 23462 0.4440 +10269 23463 0.9960 +10269 23592 0.5800 +10269 25777 0.7500 +10269 26580 0.8030 +10269 29927 0.5550 +10269 51360 0.5470 +10269 51449 0.4530 +10269 55157 0.5090 +10269 55226 0.4810 +10269 55676 0.4080 +10269 57107 0.4080 +10269 63924 0.4720 +10269 79102 0.4260 +10269 79188 0.4550 +10269 79947 0.4150 +10269 80273 0.5400 +10269 81570 0.5630 +10269 84061 0.4300 +10269 84823 0.6230 +10269 91419 0.4310 +10269 115209 0.4670 +10269 134266 0.5680 +10269 140836 0.4050 +10269 284119 0.4840 +10269 100529261 0.5920 +10270 10383 0.4300 +10270 10482 0.5410 +10270 10494 0.4280 +10270 11091 0.4450 +10270 11214 0.6350 +10270 11215 0.6970 +10270 11216 0.7150 +10270 23774 0.4570 +10270 26292 0.5890 +10270 26960 0.4370 +10270 26993 0.6890 +10270 27154 0.4250 +10270 55596 0.5030 +10270 55660 0.5620 +10270 81669 0.5500 +10270 84661 0.8290 +10270 112703 0.4040 +10270 130162 0.4020 +10270 222229 0.4540 +10270 445815 0.4330 +10272 11167 0.6270 +10272 23105 0.4580 +10272 25884 0.4100 +10272 56884 0.5710 +10272 56975 0.5490 +10272 60676 0.4370 +10272 79187 0.4680 +10272 91851 0.4460 +10272 117166 0.5290 +10272 124857 0.6240 +10272 387640 0.4890 +10272 392255 0.4090 +10273 10277 0.9200 +10273 10294 0.5790 +10273 10299 0.4320 +10273 10320 0.4530 +10273 10413 0.4930 +10273 10419 0.7270 +10273 10471 0.5800 +10273 10477 0.6920 +10273 10525 0.4350 +10273 10574 0.7110 +10273 10575 0.5670 +10273 10576 0.5910 +10273 10594 0.4230 +10273 10598 0.7160 +10273 10664 0.4320 +10273 10693 0.5630 +10273 10694 0.5710 +10273 10728 0.8930 +10273 10746 0.4170 +10273 10808 0.5320 +10273 10856 0.6880 +10273 10869 0.5140 +10273 10891 0.6070 +10273 10902 0.4200 +10273 10963 0.7770 +10273 11035 0.7840 +10273 11047 0.5700 +10273 11059 0.4820 +10273 11128 0.4130 +10273 11140 0.8000 +10273 11315 0.8200 +10273 22824 0.4860 +10273 22948 0.7470 +10273 23234 0.5610 +10273 23239 0.4100 +10273 23252 0.4070 +10273 23317 0.4360 +10273 23327 0.4650 +10273 23381 0.5700 +10273 23476 0.5020 +10273 23586 0.5670 +10273 23621 0.4420 +10273 23640 0.9620 +10273 23753 0.5500 +10273 25822 0.4720 +10273 25898 0.4330 +10273 26168 0.4360 +10273 26232 0.8800 +10273 26270 0.4810 +10273 26353 0.9930 +10273 26986 0.4080 +10273 27042 0.4300 +10273 27161 0.4680 +10273 27252 0.4820 +10273 27338 0.9090 +10273 29089 0.5540 +10273 29116 0.4660 +10273 50943 0.6620 +10273 51176 0.4270 +10273 51182 0.4020 +10273 51398 0.5960 +10273 51465 0.7610 +10273 51548 0.5140 +10273 51619 0.7800 +10273 51726 0.7350 +10273 54106 0.4060 +10273 54476 0.4830 +10273 54788 0.6440 +10273 54790 0.6680 +10273 54905 0.4050 +10273 55072 0.4240 +10273 55170 0.4660 +10273 55172 0.5520 +10273 55284 0.9170 +10273 55466 0.4890 +10273 55585 0.4310 +10273 55611 0.5070 +10273 55626 0.5700 +10273 55666 0.4830 +10273 55735 0.4290 +10273 55787 0.5280 +10273 55869 0.4960 +10273 55904 0.5430 +10273 55914 0.4420 +10273 56254 0.7760 +10273 56521 0.5570 +10273 56984 0.5590 +10273 57003 0.5660 +10273 57154 0.6620 +10273 57591 0.4160 +10273 57650 0.4080 +10273 60673 0.4360 +10273 64127 0.4800 +10273 64750 0.5930 +10273 64783 0.4070 +10273 65018 0.4380 +10273 65993 0.4620 +10273 79139 0.6830 +10273 79444 0.4900 +10273 79657 0.5710 +10273 79705 0.4720 +10273 79733 0.4120 +10273 79982 0.4470 +10273 80331 0.8410 +10273 81572 0.5540 +10273 85300 0.6410 +10273 85479 0.4280 +10273 91252 0.6740 +10273 92552 0.8540 +10273 93649 0.4330 +10273 114548 0.4190 +10273 118427 0.6820 +10273 120379 0.5400 +10273 120892 0.8720 +10273 121340 0.6200 +10273 126119 0.5540 +10273 133522 0.5420 +10273 135138 0.4850 +10273 136991 0.4350 +10273 137902 0.4010 +10273 140458 0.4060 +10273 146850 0.4300 +10273 146862 0.4710 +10273 148581 0.6350 +10273 150160 0.5400 +10273 161582 0.5640 +10273 165324 0.7200 +10273 165721 0.4960 +10273 171023 0.6690 +10273 171024 0.5290 +10273 197131 0.4310 +10273 221302 0.4800 +10273 285237 0.4200 +10273 378884 0.7580 +10273 387522 0.8130 +10273 440093 0.5550 +10273 440686 0.5550 +10273 653604 0.5560 +10274 10388 0.6180 +10274 10592 0.6510 +10274 10664 0.8640 +10274 10734 0.9620 +10274 10735 0.9960 +10274 10744 0.4360 +10274 11083 0.5510 +10274 11169 0.4620 +10274 22890 0.4020 +10274 23047 0.9900 +10274 23063 0.9990 +10274 23137 0.8550 +10274 23224 0.5150 +10274 23244 0.9990 +10274 23345 0.5260 +10274 23353 0.6540 +10274 23383 0.9110 +10274 23626 0.5440 +10274 25777 0.6020 +10274 25836 0.9970 +10274 25913 0.5600 +10274 26277 0.7880 +10274 27107 0.4970 +10274 27127 0.9980 +10274 50511 0.6980 +10274 54145 0.5740 +10274 54386 0.5160 +10274 54780 0.4790 +10274 55766 0.5220 +10274 55869 0.6140 +10274 56158 0.5590 +10274 56160 0.5040 +10274 57695 0.6010 +10274 63922 0.6970 +10274 64151 0.6680 +10274 79577 0.5290 +10274 79677 0.8310 +10274 85236 0.5740 +10274 92799 0.6210 +10274 93426 0.6040 +10274 94239 0.5390 +10274 113130 0.9750 +10274 114799 0.9520 +10274 128312 0.5730 +10274 140690 0.6550 +10274 149708 0.4120 +10274 151246 0.9370 +10274 151648 0.4950 +10274 157570 0.8810 +10274 197370 0.4860 +10274 255626 0.5750 +10274 256126 0.6450 +10274 286053 0.5270 +10274 474382 0.5220 +10274 642636 0.9650 +10274 644186 0.5710 +10274 653604 0.6800 +10276 10672 0.4370 +10276 23148 0.5290 +10276 27289 0.4410 +10276 54509 0.4410 +10276 58480 0.4280 +10277 10299 0.6290 +10277 10537 0.4920 +10277 11047 0.4420 +10277 11065 0.5330 +10277 11124 0.6330 +10277 22878 0.4410 +10277 23057 0.7390 +10277 23095 0.4700 +10277 23098 0.6240 +10277 23118 0.4330 +10277 23131 0.4060 +10277 23190 0.4360 +10277 23197 0.6650 +10277 23304 0.4170 +10277 23352 0.4190 +10277 23411 0.4290 +10277 23640 0.6000 +10277 23759 0.4550 +10277 26043 0.7600 +10277 26190 0.4610 +10277 26259 0.4250 +10277 26523 0.4070 +10277 26659 0.5840 +10277 27338 0.5400 +10277 29089 0.4650 +10277 29978 0.9140 +10277 29979 0.9560 +10277 30001 0.4240 +10277 50613 0.5800 +10277 51035 0.6590 +10277 51366 0.5380 +10277 51434 0.4570 +10277 51465 0.7590 +10277 51479 0.5660 +10277 51619 0.4720 +10277 54926 0.4070 +10277 55066 0.4450 +10277 55139 0.7780 +10277 55173 0.4060 +10277 55236 0.4890 +10277 55284 0.5340 +10277 55432 0.9230 +10277 55585 0.5800 +10277 55611 0.5030 +10277 55666 0.9400 +10277 55768 0.5450 +10277 55795 0.5090 +10277 55833 0.4020 +10277 55898 0.5260 +10277 55968 0.8270 +10277 56061 0.4170 +10277 56893 0.6700 +10277 57148 0.4500 +10277 57448 0.4480 +10277 57720 0.4450 +10277 63893 0.6370 +10277 64802 0.8960 +10277 65264 0.6310 +10277 79029 0.6450 +10277 79139 0.6200 +10277 79705 0.4580 +10277 80124 0.4370 +10277 80232 0.4120 +10277 80233 0.8010 +10277 80700 0.6290 +10277 84447 0.4280 +10277 84656 0.5190 +10277 84993 0.9090 +10277 91544 0.4970 +10277 91582 0.4440 +10277 92552 0.6500 +10277 116362 0.4570 +10277 137886 0.7760 +10277 143630 0.5120 +10277 146862 0.7180 +10277 165324 0.5590 +10277 166378 0.9510 +10277 197131 0.5760 +10277 283237 0.4030 +10277 340596 0.5700 +10277 349565 0.6530 +10278 10763 0.4400 +10278 54205 0.4210 +10278 54897 0.6510 +10278 57091 0.6170 +10278 57156 0.5240 +10278 83942 0.4710 +10279 84547 0.5260 +10279 91752 0.5720 +10279 94026 0.6130 +10279 122706 0.8180 +10279 126321 0.4260 +10279 219793 0.6140 +10279 100526664 0.4600 +10280 10367 0.5620 +10280 10682 0.6770 +10280 10826 0.8880 +10280 10857 0.6410 +10280 11079 0.4710 +10280 11161 0.9830 +10280 11255 0.5060 +10280 22926 0.4730 +10280 23064 0.6900 +10280 23071 0.4110 +10280 23193 0.4710 +10280 23241 0.6800 +10280 23435 0.6030 +10280 25840 0.4100 +10280 25978 0.5450 +10280 26166 0.6950 +10280 27346 0.9430 +10280 27430 0.6890 +10280 29978 0.5450 +10280 50814 0.7640 +10280 50848 0.4480 +10280 51004 0.5750 +10280 51144 0.4940 +10280 51302 0.6550 +10280 51478 0.4670 +10280 51629 0.4940 +10280 51643 0.8760 +10280 54496 0.4060 +10280 55170 0.4120 +10280 55177 0.6180 +10280 55210 0.6060 +10280 55669 0.6080 +10280 56341 0.4070 +10280 56937 0.4070 +10280 57412 0.6950 +10280 57679 0.6130 +10280 64220 0.4360 +10280 80146 0.4250 +10280 80208 0.5940 +10280 80270 0.7440 +10280 81033 0.9440 +10280 84876 0.4940 +10280 90550 0.6180 +10280 90826 0.4040 +10280 91689 0.5370 +10280 93517 0.7270 +10280 139341 0.5620 +10280 203228 0.6140 +10280 221154 0.5430 +10280 255520 0.5210 +10280 285282 0.4220 +10280 286097 0.5100 +10280 286151 0.6950 +10280 347475 0.6450 +10280 400916 0.5190 +10282 10427 0.9560 +10282 10466 0.7280 +10282 10483 0.6690 +10282 10484 0.8160 +10282 10490 0.9790 +10282 10652 0.9980 +10282 10791 0.6770 +10282 10802 0.9140 +10282 10814 0.5400 +10282 10815 0.5700 +10282 10897 0.4440 +10282 10945 0.5700 +10282 10959 0.5430 +10282 10960 0.6390 +10282 10972 0.5520 +10282 11014 0.4690 +10282 11015 0.4720 +10282 11070 0.5050 +10282 11079 0.4910 +10282 11196 0.6580 +10282 11311 0.5130 +10282 11316 0.7370 +10282 22796 0.7720 +10282 22818 0.6890 +10282 22820 0.7180 +10282 22872 0.7410 +10282 23256 0.9990 +10282 23423 0.5180 +10282 23673 0.8960 +10282 25839 0.7940 +10282 26003 0.6700 +10282 26286 0.6080 +10282 26958 0.6570 +10282 26984 0.9950 +10282 27095 0.8800 +10282 27314 0.4610 +10282 51014 0.5560 +10282 51128 0.6540 +10282 51226 0.6500 +10282 51272 0.9170 +10282 51290 0.6030 +10282 51332 0.4990 +10282 51399 0.6430 +10282 51594 0.4520 +10282 51614 0.4630 +10282 51693 0.5130 +10282 53407 0.9510 +10282 54221 0.6110 +10282 54732 0.5470 +10282 55014 0.8080 +10282 55850 0.8870 +10282 56681 0.6850 +10282 57511 0.7780 +10282 57731 0.4990 +10282 58485 0.7700 +10282 60561 0.4350 +10282 63908 0.7550 +10282 64083 0.6290 +10282 64689 0.7130 +10282 79090 0.6060 +10282 79748 0.5190 +10282 80124 0.4240 +10282 81562 0.6510 +10282 81876 0.7590 +10282 83548 0.8380 +10282 84364 0.4660 +10282 90411 0.5490 +10282 91949 0.6710 +10282 112755 0.8270 +10282 113746 0.4560 +10282 116841 0.6200 +10282 122553 0.6370 +10282 126003 0.6140 +10282 134957 0.5700 +10282 143187 0.9800 +10282 149111 0.5200 +10282 152579 0.4930 +10282 157769 0.4900 +10282 203062 0.7620 +10282 203245 0.5040 +10282 254263 0.5200 +10282 339302 0.5400 +10282 415117 0.7220 +10282 594855 0.5400 +10283 10286 0.8580 +10283 10291 0.9930 +10283 10450 0.8310 +10283 10490 0.4030 +10283 10569 0.7120 +10283 10594 0.9970 +10283 10907 0.9440 +10283 10915 0.5200 +10283 10946 0.9950 +10283 10992 0.9930 +10283 11157 0.9620 +10283 11193 0.9320 +10283 11338 0.6420 +10283 22794 0.4590 +10283 22938 0.9770 +10283 23020 0.9990 +10283 23091 0.4980 +10283 23398 0.6630 +10283 23450 0.9930 +10283 23451 0.9940 +10283 23517 0.9380 +10283 23524 0.9920 +10283 23658 0.9180 +10283 23759 0.9710 +10283 24148 0.9470 +10283 25804 0.9030 +10283 25949 0.8240 +10283 26121 0.9470 +10283 27238 0.9710 +10283 27258 0.9150 +10283 27339 0.9920 +10283 51194 0.4580 +10283 51340 0.9590 +10283 51362 0.9880 +10283 51503 0.9650 +10283 51574 0.5570 +10283 51575 0.4610 +10283 51593 0.8050 +10283 51634 0.9970 +10283 51639 0.8370 +10283 51645 0.9630 +10283 51690 0.9080 +10283 51691 0.9120 +10283 51759 0.5630 +10283 53938 0.8500 +10283 54883 0.8530 +10283 55094 0.4770 +10283 55100 0.5270 +10283 55110 0.9310 +10283 55153 0.4230 +10283 55234 0.9070 +10283 55609 0.4050 +10283 55696 0.9430 +10283 55702 0.8380 +10283 56949 0.9410 +10283 57129 0.4170 +10283 57153 0.5390 +10283 57703 0.9990 +10283 57819 0.9570 +10283 59286 0.4400 +10283 60625 0.6490 +10283 65109 0.5850 +10283 79005 0.8170 +10283 79637 0.9220 +10283 79753 0.9970 +10283 83443 0.9910 +10283 83938 0.5230 +10283 84060 0.8310 +10283 84081 0.5710 +10283 84316 0.4450 +10283 84811 0.9970 +10283 84844 0.9910 +10283 84950 0.9330 +10283 84967 0.4590 +10283 85313 0.6410 +10283 89894 0.5040 +10283 118924 0.8440 +10283 126259 0.4340 +10283 128061 0.4220 +10283 147650 0.4340 +10283 151903 0.8140 +10283 153527 0.9080 +10283 154007 0.4340 +10283 199746 0.4010 +10283 220074 0.5110 +10283 222183 0.5270 +10283 285672 0.5280 +10283 345630 0.4080 +10283 619279 0.4430 +10283 642489 0.4260 +10283 100534599 0.8240 +10284 10362 0.5460 +10284 10432 0.5590 +10284 10450 0.4090 +10284 10465 0.5620 +10284 10471 0.4230 +10284 10492 0.4220 +10284 10514 0.5330 +10284 10575 0.5650 +10284 10576 0.4980 +10284 10713 0.4090 +10284 10772 0.5460 +10284 10856 0.4160 +10284 10921 0.9990 +10284 10933 0.6070 +10284 11017 0.6030 +10284 11157 0.5430 +10284 11176 0.5090 +10284 11338 0.6040 +10284 22794 0.7740 +10284 22882 0.6220 +10284 22985 0.9990 +10284 23028 0.7270 +10284 23186 0.8040 +10284 23309 0.9850 +10284 23411 0.4490 +10284 23435 0.5180 +10284 23476 0.6530 +10284 23524 0.4820 +10284 23658 0.4640 +10284 24144 0.5170 +10284 25804 0.6140 +10284 25855 0.8600 +10284 25942 0.9960 +10284 25957 0.4170 +10284 26097 0.5230 +10284 26121 0.4050 +10284 26227 0.4260 +10284 27258 0.5770 +10284 27316 0.4480 +10284 27339 0.4050 +10284 29115 0.8270 +10284 29896 0.6070 +10284 51317 0.6210 +10284 51593 0.4730 +10284 51639 0.4590 +10284 51684 0.7910 +10284 51690 0.7620 +10284 51691 0.5630 +10284 51699 0.4460 +10284 51742 0.9570 +10284 53615 0.6260 +10284 53981 0.4800 +10284 54145 0.5090 +10284 54815 0.6720 +10284 55110 0.9080 +10284 55234 0.4220 +10284 55421 0.5790 +10284 55544 0.4120 +10284 55660 0.6570 +10284 55766 0.5390 +10284 55869 0.4810 +10284 55929 0.4380 +10284 56848 0.4970 +10284 57459 0.7940 +10284 57504 0.5380 +10284 57703 0.4190 +10284 57819 0.5310 +10284 58516 0.5670 +10284 58517 0.5400 +10284 64426 0.9980 +10284 65109 0.7080 +10284 79171 0.4990 +10284 79595 0.8230 +10284 79685 0.9410 +10284 80145 0.5330 +10284 83443 0.4170 +10284 84312 0.7220 +10284 84661 0.4210 +10284 85235 0.4460 +10284 85236 0.5070 +10284 92815 0.4840 +10284 94239 0.6430 +10284 128312 0.4990 +10284 140836 0.4300 +10284 143884 0.5430 +10284 153527 0.4120 +10284 158248 0.5060 +10284 220988 0.4430 +10284 221613 0.4460 +10284 255626 0.4990 +10284 317772 0.4500 +10284 440689 0.4080 +10284 474382 0.5380 +10284 653604 0.6350 +10284 100316904 0.4030 +10285 10291 0.7500 +10285 10492 0.4340 +10285 10523 0.8210 +10285 10594 0.5110 +10285 10915 0.6740 +10285 10946 0.7880 +10285 10992 0.7410 +10285 11022 0.4250 +10285 11325 0.5580 +10285 22827 0.8620 +10285 23020 0.5170 +10285 23350 0.8450 +10285 23411 0.4460 +10285 23450 0.7590 +10285 23451 0.8130 +10285 24148 0.9680 +10285 26135 0.4380 +10285 26147 0.4330 +10285 27044 0.6060 +10285 29127 0.4950 +10285 51050 0.5310 +10285 51503 0.4080 +10285 51585 0.5290 +10285 51639 0.7160 +10285 51747 0.5360 +10285 55279 0.4200 +10285 56165 0.4380 +10285 79171 0.4690 +10285 79657 0.4570 +10285 81608 0.5360 +10285 83443 0.7160 +10285 84844 0.8810 +10285 84991 0.8740 +10286 10291 0.8730 +10286 10421 0.4200 +10286 10432 0.4110 +10286 10450 0.9960 +10286 10492 0.4040 +10286 10569 0.8720 +10286 10594 0.9990 +10286 10772 0.4700 +10286 10891 0.5810 +10286 10907 0.6360 +10286 10915 0.9030 +10286 10919 0.4180 +10286 10946 0.8380 +10286 10949 0.4710 +10286 10963 0.4460 +10286 10973 0.5900 +10286 10992 0.8440 +10286 11193 0.5570 +10286 11325 0.5200 +10286 11338 0.8430 +10286 22794 0.8000 +10286 22938 0.9990 +10286 22985 0.4690 +10286 23020 0.9930 +10286 23082 0.5820 +10286 23398 0.8370 +10286 23450 0.9040 +10286 23451 0.9000 +10286 23524 0.9840 +10286 24144 0.4580 +10286 24148 0.7360 +10286 25804 0.4570 +10286 25949 0.9980 +10286 25980 0.5910 +10286 26017 0.8130 +10286 26121 0.7080 +10286 27316 0.4960 +10286 27339 0.9990 +10286 30836 0.4950 +10286 51340 0.9980 +10286 51362 0.9990 +10286 51503 0.9990 +10286 51534 0.9580 +10286 51574 0.4050 +10286 51634 0.8300 +10286 51639 0.8830 +10286 51645 0.9970 +10286 51729 0.8490 +10286 54665 0.4280 +10286 54883 0.8380 +10286 55094 0.6260 +10286 55100 0.8070 +10286 55110 0.8460 +10286 55180 0.4790 +10286 55234 0.5610 +10286 55294 0.5120 +10286 55599 0.4600 +10286 55696 0.9960 +10286 55702 0.9650 +10286 56259 0.9950 +10286 56949 0.9990 +10286 57187 0.4720 +10286 57461 0.9610 +10286 57703 0.9850 +10286 57819 0.4210 +10286 58509 0.8060 +10286 59286 0.4160 +10286 60625 0.4790 +10286 79446 0.8750 +10286 79576 0.8430 +10286 79631 0.5770 +10286 79650 0.7710 +10286 79706 0.8130 +10286 79753 0.8630 +10286 79980 0.4800 +10286 80011 0.8100 +10286 81576 0.5440 +10286 83443 0.9000 +10286 83938 0.5190 +10286 84811 0.8210 +10286 84844 0.8510 +10286 84950 0.7090 +10286 84967 0.4540 +10286 85476 0.5900 +10286 88745 0.4060 +10286 121504 0.4070 +10286 126393 0.4020 +10286 143884 0.9440 +10286 151903 0.4730 +10286 153527 0.4840 +10286 163259 0.4110 +10286 163859 0.8300 +10286 164045 0.5800 +10286 199746 0.5100 +10286 220074 0.5190 +10286 256536 0.8410 +10286 554313 0.4080 +10286 100534599 0.9350 +10287 10316 0.4990 +10287 10540 0.4280 +10287 10636 0.6060 +10287 10672 0.7690 +10287 10681 0.9440 +10287 10755 0.9990 +10287 10874 0.4990 +10287 11216 0.6570 +10287 22853 0.4810 +10287 23161 0.4940 +10287 23365 0.5880 +10287 23557 0.4430 +10287 23566 0.5680 +10287 26499 0.6490 +10287 26575 0.5220 +10287 28962 0.6380 +10287 51573 0.4470 +10287 51764 0.5180 +10287 51806 0.6030 +10287 53917 0.4560 +10287 54331 0.5410 +10287 54810 0.6650 +10287 55970 0.5330 +10287 56923 0.4990 +10287 57121 0.5490 +10287 57231 0.4410 +10287 59345 0.6450 +10287 60626 0.6420 +10287 64407 0.6020 +10287 83891 0.4250 +10287 84539 0.4990 +10287 84687 0.4780 +10287 85397 0.5430 +10287 89849 0.4810 +10287 91860 0.6060 +10287 94235 0.5190 +10287 115557 0.6250 +10287 116443 0.4080 +10287 126326 0.6130 +10287 129521 0.4990 +10287 163688 0.6030 +10287 346562 0.6920 +10287 353299 0.7460 +10287 388531 0.4900 +10287 401190 0.7120 +10287 431704 0.5670 +10288 10437 0.4110 +10288 10462 0.4050 +10288 10578 0.7030 +10288 10673 0.4480 +10288 10859 0.7930 +10288 10870 0.4060 +10288 10871 0.9000 +10288 10875 0.4530 +10288 10990 0.4020 +10288 11006 0.7470 +10288 11024 0.6820 +10288 11025 0.7910 +10288 11027 0.5210 +10288 11126 0.4240 +10288 11314 0.4520 +10288 22918 0.4010 +10288 23380 0.4210 +10288 23405 0.4070 +10288 23452 0.9820 +10288 27036 0.4500 +10288 27161 0.5060 +10288 27180 0.4750 +10288 27329 0.4440 +10288 29126 0.4520 +10288 29992 0.4630 +10288 30817 0.4070 +10288 30835 0.4090 +10288 50856 0.5700 +10288 50943 0.4520 +10288 51311 0.8800 +10288 51338 0.4310 +10288 53829 0.4330 +10288 54768 0.4650 +10288 55303 0.4480 +10288 55355 0.4370 +10288 55672 0.4630 +10288 57142 0.4610 +10288 57823 0.4400 +10288 58475 0.5010 +10288 64167 0.4240 +10288 64218 0.6250 +10288 64231 0.5480 +10288 64581 0.4340 +10288 65078 0.5020 +10288 79168 0.4660 +10288 84689 0.4080 +10288 84868 0.5360 +10288 120425 0.4610 +10288 128346 0.6130 +10288 146722 0.6260 +10288 160364 0.6740 +10288 200315 0.4220 +10288 219972 0.4330 +10288 253935 0.8290 +10289 10399 0.8200 +10289 10480 0.6680 +10289 10557 0.5570 +10289 11031 0.4460 +10289 11224 0.4400 +10289 23204 0.5480 +10289 27335 0.8440 +10289 28985 0.6360 +10289 29978 0.4020 +10289 29995 0.5710 +10289 51065 0.8100 +10289 51073 0.5620 +10289 51081 0.6410 +10289 51116 0.5710 +10289 51149 0.8050 +10289 51319 0.7840 +10289 51386 0.7420 +10289 54460 0.4820 +10289 54505 0.5780 +10289 55147 0.4500 +10289 55173 0.7030 +10289 55272 0.6430 +10289 55316 0.7970 +10289 55601 0.4050 +10289 55651 0.5280 +10289 56648 0.4120 +10289 60678 0.5990 +10289 63931 0.5740 +10289 64960 0.6210 +10289 64963 0.5780 +10289 64969 0.6330 +10289 85377 0.5260 +10289 93974 0.6300 +10289 114987 0.7860 +10289 116832 0.4190 +10289 126402 0.6410 +10289 140032 0.6710 +10289 143244 0.4120 +10289 255308 0.6550 +10289 347487 0.7710 +10289 641776 0.4760 +10289 643909 0.4760 +10289 728524 0.4760 +10289 728689 0.8990 +10289 100101490 0.6340 +10289 100287482 0.4950 +10289 100529239 0.7860 +10289 100996746 0.4760 +10289 105180390 0.4760 +10289 105180391 0.4760 +10290 10971 0.5310 +10290 57158 0.7560 +10290 64772 0.4760 +10290 163859 0.4700 +10291 10421 0.5800 +10291 10432 0.5370 +10291 10450 0.9110 +10291 10465 0.8850 +10291 10521 0.4230 +10291 10523 0.8180 +10291 10557 0.4310 +10291 10569 0.5940 +10291 10594 0.9990 +10291 10657 0.6250 +10291 10713 0.9160 +10291 10735 0.5070 +10291 10772 0.4090 +10291 10891 0.4210 +10291 10907 0.9890 +10291 10915 0.9920 +10291 10921 0.4240 +10291 10946 0.9990 +10291 10949 0.4760 +10291 10973 0.5940 +10291 10992 0.9990 +10291 11052 0.4200 +10291 11066 0.6270 +10291 11157 0.9910 +10291 11193 0.9880 +10291 11325 0.9030 +10291 11338 0.9720 +10291 11345 0.4240 +10291 22794 0.5660 +10291 22826 0.6610 +10291 22827 0.7780 +10291 22913 0.4410 +10291 22916 0.9770 +10291 22938 0.9890 +10291 22944 0.8110 +10291 22985 0.5980 +10291 23020 0.9990 +10291 23047 0.4030 +10291 23082 0.4410 +10291 23091 0.6210 +10291 23244 0.4610 +10291 23248 0.4340 +10291 23350 0.8530 +10291 23398 0.6470 +10291 23435 0.4390 +10291 23450 0.9990 +10291 23451 0.9990 +10291 23517 0.5050 +10291 23524 0.9950 +10291 23543 0.5910 +10291 23636 0.4140 +10291 23658 0.9910 +10291 23710 0.5140 +10291 23759 0.8600 +10291 24144 0.6590 +10291 24148 0.9990 +10291 24149 0.4290 +10291 25766 0.9430 +10291 25804 0.9960 +10291 25949 0.6420 +10291 26121 0.9960 +10291 27258 0.9950 +10291 27316 0.5080 +10291 27336 0.9590 +10291 27339 0.9970 +10291 29896 0.5450 +10291 51322 0.5020 +10291 51340 0.9770 +10291 51362 0.9850 +10291 51428 0.6470 +10291 51503 0.9450 +10291 51574 0.6800 +10291 51593 0.5430 +10291 51631 0.8350 +10291 51634 0.9930 +10291 51639 0.9840 +10291 51645 0.9240 +10291 51690 0.9930 +10291 51691 0.9910 +10291 51729 0.8840 +10291 51741 0.4450 +10291 51747 0.7220 +10291 54883 0.7680 +10291 54952 0.7530 +10291 54957 0.4250 +10291 55003 0.4040 +10291 55015 0.8390 +10291 55094 0.4870 +10291 55100 0.4590 +10291 55110 0.9180 +10291 55122 0.5370 +10291 55234 0.9850 +10291 55285 0.5210 +10291 55599 0.5320 +10291 55660 0.9630 +10291 55692 0.7790 +10291 55696 0.9460 +10291 55702 0.7110 +10291 55749 0.4430 +10291 55954 0.6770 +10291 56259 0.9200 +10291 56949 0.9920 +10291 57187 0.5600 +10291 57461 0.6550 +10291 57703 0.9950 +10291 57794 0.4080 +10291 57805 0.5020 +10291 57819 0.9930 +10291 58517 0.8710 +10291 59286 0.8570 +10291 60625 0.6000 +10291 63035 0.4230 +10291 65109 0.4410 +10291 79084 0.5590 +10291 79446 0.6080 +10291 79696 0.4320 +10291 79753 0.9940 +10291 80742 0.8670 +10291 83443 0.9990 +10291 83938 0.7700 +10291 84081 0.5850 +10291 84316 0.6610 +10291 84811 0.9950 +10291 84844 0.9980 +10291 84946 0.4150 +10291 84950 0.9870 +10291 84967 0.8270 +10291 84991 0.9600 +10291 85313 0.6960 +10291 90324 0.7990 +10291 91603 0.7690 +10291 94104 0.4170 +10291 124245 0.7220 +10291 126259 0.6610 +10291 140890 0.4430 +10291 147650 0.6610 +10291 153527 0.9920 +10291 154007 0.4920 +10291 164045 0.5910 +10291 164781 0.6120 +10291 171023 0.4730 +10291 220074 0.7700 +10291 220988 0.4770 +10291 222183 0.5290 +10291 256536 0.8440 +10291 284325 0.7210 +10291 284695 0.4050 +10291 347744 0.7530 +10291 348793 0.6120 +10291 392517 0.8400 +10291 728378 0.4680 +10291 100526737 0.4010 +10291 100534599 0.9050 +10291 100996928 0.6280 +10293 10714 0.4200 +10293 10982 0.7230 +10293 11004 0.4850 +10293 11065 0.4040 +10293 11124 0.4020 +10293 11169 0.5100 +10293 25886 0.4470 +10293 26271 0.4650 +10293 29089 0.4080 +10293 29110 0.4370 +10293 29980 0.4740 +10293 51514 0.4100 +10293 51720 0.7830 +10293 55143 0.4590 +10293 55215 0.5120 +10293 55247 0.7140 +10293 55388 0.5130 +10293 56254 0.6320 +10293 56941 0.4520 +10293 57695 0.4290 +10293 57697 0.4770 +10293 63922 0.4210 +10293 63967 0.4240 +10293 80119 0.4640 +10293 80198 0.4510 +10293 81620 0.4970 +10293 83932 0.6640 +10293 84126 0.4130 +10293 84296 0.5490 +10293 84464 0.5080 +10293 113130 0.4640 +10293 122769 0.7030 +10293 146956 0.4940 +10293 163859 0.4340 +10293 286053 0.4860 +10293 389118 0.4660 +10294 10525 0.6180 +10294 10535 0.4550 +10294 10574 0.5350 +10294 10575 0.7130 +10294 10576 0.5460 +10294 10598 0.5850 +10294 10606 0.4040 +10294 10693 0.4030 +10294 10694 0.5510 +10294 10726 0.7140 +10294 10728 0.4170 +10294 10808 0.7930 +10294 10856 0.4300 +10294 10963 0.8830 +10294 11080 0.7390 +10294 11140 0.5840 +10294 11145 0.4480 +10294 11171 0.6380 +10294 11231 0.4260 +10294 11315 0.4890 +10294 22824 0.7580 +10294 22826 0.4220 +10294 22948 0.6070 +10294 23135 0.4190 +10294 23234 0.5050 +10294 23640 0.5550 +10294 23770 0.5530 +10294 25789 0.5450 +10294 25822 0.5810 +10294 27000 0.5890 +10294 29110 0.4700 +10294 29927 0.5540 +10294 51182 0.7650 +10294 51314 0.4670 +10294 54596 0.4080 +10294 54788 0.4070 +10294 54979 0.4480 +10294 55466 0.8880 +10294 55699 0.4700 +10294 55735 0.6720 +10294 57110 0.4480 +10294 57721 0.4060 +10294 60412 0.4850 +10294 64374 0.5470 +10294 79647 0.4040 +10294 79968 0.6130 +10294 80273 0.6210 +10294 80331 0.7840 +10294 81533 0.4110 +10294 81570 0.6360 +10294 81631 0.4370 +10294 83932 0.5250 +10294 84617 0.6220 +10294 96459 0.4950 +10294 116835 0.6440 +10294 118461 0.4480 +10294 120526 0.5830 +10294 134266 0.5410 +10294 150274 0.5390 +10294 150353 0.4080 +10294 165721 0.4370 +10294 259217 0.5280 +10294 339416 0.5550 +10294 374407 0.5710 +10294 388633 0.4480 +10295 10455 0.4560 +10295 11184 0.5320 +10295 23028 0.4440 +10295 23038 0.4100 +10295 26275 0.5070 +10295 27429 0.4370 +10295 51293 0.4250 +10295 51314 0.4420 +10295 54205 0.6010 +10295 54814 0.4160 +10295 55093 0.4420 +10295 55268 0.4010 +10295 55753 0.6020 +10295 56922 0.5180 +10295 57505 0.4860 +10295 57680 0.5540 +10295 64111 0.5710 +10295 65220 0.4500 +10295 80305 0.4240 +10295 81890 0.4450 +10295 84304 0.5210 +10295 92259 0.5460 +10295 120071 0.4240 +10295 120892 0.4340 +10295 132949 0.4470 +10295 152926 0.8430 +10295 161145 0.4100 +10295 196541 0.5040 +10295 219743 0.4300 +10295 221656 0.4310 +10296 10815 0.4350 +10296 10861 0.4040 +10296 10897 0.4890 +10296 23192 0.4380 +10296 25852 0.9860 +10296 27429 0.6250 +10296 51646 0.8820 +10296 54707 0.4340 +10296 54994 0.9600 +10296 57610 0.9200 +10296 57654 0.6380 +10296 60685 0.5520 +10296 64777 0.8660 +10296 64795 0.9690 +10296 79018 0.9140 +10296 79571 0.5900 +10296 79637 0.4690 +10296 80232 0.9690 +10296 80258 0.4220 +10296 83795 0.5900 +10296 90522 0.4860 +10296 116225 0.5460 +10296 128486 0.5070 +10296 140902 0.5960 +10296 144321 0.5960 +10296 145741 0.4730 +10296 169792 0.4340 +10297 10982 0.6900 +10297 11186 0.4320 +10297 22919 0.6990 +10297 22924 0.8270 +10297 25831 0.4890 +10297 27101 0.5400 +10297 27231 0.4790 +10297 28316 0.5810 +10297 28513 0.5400 +10297 50649 0.9290 +10297 51176 0.7050 +10297 54963 0.4750 +10297 54981 0.4750 +10297 56998 0.6710 +10297 60437 0.5400 +10297 64072 0.5650 +10297 64403 0.5520 +10297 64405 0.5910 +10297 79718 0.9010 +10297 83439 0.7050 +10297 83549 0.4760 +10297 90665 0.9010 +10297 122011 0.9180 +10297 140711 0.4640 +10297 221178 0.9030 +10297 222256 0.5400 +10297 441381 0.4420 +10298 10376 0.4360 +10298 10787 0.4430 +10298 10788 0.4720 +10298 10971 0.4650 +10298 11060 0.4170 +10298 11135 0.6900 +10298 22800 0.4780 +10298 22866 0.4660 +10298 23048 0.4640 +10298 23191 0.4380 +10298 23243 0.4600 +10298 23433 0.7480 +10298 23513 0.5580 +10298 23580 0.4400 +10298 25894 0.4180 +10298 26030 0.4150 +10298 26050 0.4360 +10298 28964 0.6580 +10298 51126 0.5000 +10298 51341 0.4070 +10298 51347 0.4280 +10298 51552 0.5160 +10298 54434 0.5850 +10298 54874 0.4880 +10298 55004 0.4260 +10298 55075 0.4180 +10298 55240 0.4010 +10298 55604 0.6310 +10298 55789 0.4260 +10298 55845 0.4050 +10298 55914 0.5090 +10298 55924 0.4360 +10298 55968 0.4130 +10298 55970 0.9000 +10298 55971 0.4350 +10298 56924 0.9380 +10298 57144 0.8990 +10298 57381 0.7540 +10298 57556 0.4260 +10298 58480 0.9600 +10298 79109 0.4260 +10298 79893 0.4550 +10298 80018 0.7860 +10298 80279 0.4450 +10298 80728 0.5190 +10298 81624 0.4350 +10298 81839 0.4110 +10298 84986 0.4190 +10298 85359 0.7540 +10298 85366 0.7420 +10298 91010 0.4510 +10298 91807 0.6810 +10298 114885 0.4410 +10298 117145 0.4220 +10298 128239 0.4840 +10298 142684 0.4700 +10298 143098 0.4420 +10298 144402 0.4140 +10298 147179 0.4720 +10298 153769 0.5070 +10298 157769 0.4410 +10298 171177 0.8310 +10298 200894 0.4380 +10298 253260 0.4180 +10298 253959 0.4050 +10298 256364 0.4910 +10298 282808 0.4070 +10298 339967 0.4500 +10298 340156 0.6990 +10298 340419 0.4290 +10299 10668 0.4120 +10299 10952 0.4300 +10299 10956 0.8740 +10299 11065 0.4210 +10299 11080 0.4080 +10299 11124 0.4310 +10299 11231 0.4050 +10299 11236 0.7880 +10299 23032 0.6870 +10299 23197 0.7230 +10299 23304 0.6820 +10299 23327 0.4580 +10299 26046 0.5970 +10299 26118 0.4860 +10299 27248 0.7300 +10299 27338 0.5180 +10299 29927 0.7310 +10299 29978 0.5050 +10299 29979 0.5190 +10299 51009 0.7950 +10299 51126 0.5010 +10299 51439 0.6640 +10299 51465 0.7590 +10299 54431 0.5480 +10299 54788 0.4230 +10299 55298 0.4240 +10299 55666 0.8630 +10299 55689 0.4720 +10299 55722 0.4690 +10299 56886 0.4340 +10299 56910 0.6640 +10299 57414 0.5510 +10299 57574 0.5290 +10299 64422 0.5410 +10299 79029 0.6770 +10299 79139 0.9240 +10299 79770 0.6010 +10299 80155 0.4520 +10299 81502 0.6030 +10299 81790 0.5980 +10299 83590 0.4170 +10299 83853 0.5860 +10299 84246 0.4520 +10299 84447 0.9750 +10299 84498 0.6440 +10299 84619 0.4530 +10299 84896 0.5230 +10299 91319 0.7710 +10299 91445 0.4870 +10299 92305 0.5620 +10299 118424 0.9120 +10299 134111 0.4770 +10299 148066 0.4380 +10299 153830 0.7300 +10299 166378 0.6770 +10299 197131 0.8590 +10299 337867 0.4180 +10299 388581 0.5570 +10299 401474 0.6700 +10300 10381 0.4600 +10300 10844 0.5690 +10300 11104 0.9990 +10300 11178 0.4280 +10300 23247 0.7250 +10300 23271 0.4910 +10300 23729 0.4130 +10300 26589 0.4620 +10300 29028 0.4080 +10300 51361 0.4200 +10300 54454 0.4080 +10300 54820 0.4330 +10300 55137 0.6340 +10300 55277 0.4090 +10300 55835 0.4740 +10300 57662 0.5520 +10300 79768 0.9640 +10300 81565 0.6250 +10300 83473 0.8490 +10300 84056 0.9790 +10300 84229 0.4910 +10300 84445 0.8980 +10300 84617 0.4620 +10300 157922 0.4190 +10300 203068 0.7350 +10300 256356 0.4080 +10300 259266 0.7800 +10300 284403 0.4730 +10300 111064647 0.4050 +10302 10621 0.6850 +10302 10622 0.6300 +10302 10623 0.6290 +10302 11128 0.5190 +10302 23178 0.4750 +10302 27297 0.6620 +10302 29101 0.4050 +10302 51082 0.5950 +10302 51728 0.5640 +10302 55290 0.7240 +10302 55703 0.5040 +10302 55718 0.6820 +10302 55814 0.5960 +10302 79184 0.4350 +10302 83877 0.4140 +10302 84265 0.5650 +10302 113419 0.4360 +10302 129685 0.5310 +10302 171568 0.6420 +10302 197021 0.5170 +10302 388789 0.4090 +10307 10513 0.4250 +10307 10980 0.6650 +10307 10987 0.6940 +10307 23221 0.6490 +10307 50813 0.6770 +10307 51138 0.7020 +10307 64708 0.6760 +10308 55388 0.4730 +10308 79153 0.4170 +10308 84166 0.4550 +10308 84448 0.4080 +10308 147686 0.6090 +10309 10733 0.5750 +10309 23583 0.4640 +10309 23639 0.6380 +10309 25981 0.4690 +10309 27019 0.6450 +10309 51314 0.5060 +10309 51343 0.4140 +10309 51364 0.6380 +10309 54768 0.6280 +10309 54919 0.6050 +10309 55036 0.7350 +10309 55130 0.6170 +10309 55172 0.4800 +10309 56683 0.5920 +10309 60489 0.4120 +10309 64446 0.5830 +10309 65061 0.4400 +10309 79935 0.5820 +10309 79991 0.5070 +10309 81669 0.6570 +10309 83538 0.5190 +10309 85478 0.6590 +10309 89765 0.6840 +10309 92292 0.4030 +10309 92749 0.6100 +10309 93233 0.6000 +10309 115399 0.4340 +10309 115948 0.6290 +10309 121643 0.4690 +10309 123872 0.5690 +10309 124093 0.4850 +10309 139212 0.4950 +10309 159989 0.6630 +10309 161582 0.6240 +10309 163786 0.4590 +10309 166979 0.7800 +10309 219970 0.4070 +10309 221421 0.6590 +10309 339829 0.7460 +10309 345643 0.9220 +10309 345895 0.7660 +10309 352909 0.6300 +10309 374407 0.4160 +10309 388389 0.6070 +10309 494551 0.4520 +10309 644672 0.4400 +10309 647309 0.6660 +10309 728642 0.4400 +10309 100287520 0.4030 +10311 11075 0.8170 +10311 23039 0.7930 +10311 23325 0.5030 +10311 23412 0.9110 +10311 27131 0.4130 +10311 28952 0.9840 +10311 28991 0.7370 +10311 29099 0.8170 +10311 51019 0.4840 +10311 51100 0.8100 +10311 51122 0.9250 +10311 51227 0.6240 +10311 51397 0.8620 +10311 51699 0.9990 +10311 54520 0.9840 +10311 54939 0.9410 +10311 54951 0.8450 +10311 55737 0.7760 +10311 57020 0.9980 +10311 78987 0.6500 +10311 81609 0.7110 +10311 112936 0.4530 +10311 149951 0.6910 +10311 150684 0.9530 +10311 169166 0.6370 +10311 170622 0.9260 +10311 253725 0.4390 +10311 387680 0.4830 +10311 404636 0.9310 +10311 441933 0.6100 +10311 645432 0.4930 +10311 100287171 0.4370 +10312 10325 0.6220 +10312 10542 0.5160 +10312 10641 0.5440 +10312 10670 0.5970 +10312 10682 0.4850 +10312 11133 0.5010 +10312 11311 0.4390 +10312 11345 0.4300 +10312 23312 0.4120 +10312 23334 0.5210 +10312 23406 0.4210 +10312 23545 0.9500 +10312 23710 0.4190 +10312 27068 0.7210 +10312 27244 0.5070 +10312 28956 0.5470 +10312 28962 0.9630 +10312 29887 0.7180 +10312 50617 0.9400 +10312 51160 0.5050 +10312 51382 0.9940 +10312 51606 0.9930 +10312 54468 0.4990 +10312 55004 0.5370 +10312 55315 0.4740 +10312 55697 0.4280 +10312 55846 0.4990 +10312 57521 0.5930 +10312 57707 0.5140 +10312 58528 0.5380 +10312 64077 0.7010 +10312 64121 0.6370 +10312 64223 0.5550 +10312 64924 0.6110 +10312 79643 0.5320 +10312 79726 0.4990 +10312 79877 0.4170 +10312 80347 0.4380 +10312 81501 0.4130 +10312 81929 0.4990 +10312 83667 0.5050 +10312 83706 0.4650 +10312 84219 0.5170 +10312 84317 0.8070 +10312 84650 0.4470 +10312 90423 0.9850 +10312 96459 0.4300 +10312 127124 0.9240 +10312 144577 0.5020 +10312 147007 0.8850 +10312 147710 0.4430 +10312 153129 0.5070 +10312 155066 0.8400 +10312 163882 0.8290 +10312 200576 0.4960 +10312 201163 0.4760 +10312 203547 0.7080 +10312 221264 0.5400 +10312 245972 0.9990 +10312 245973 0.9470 +10312 389541 0.5230 +10312 440400 0.8950 +10312 652968 0.4120 +10313 10488 0.4540 +10313 10567 0.5530 +10313 10871 0.5790 +10313 10952 0.4960 +10313 10970 0.5190 +10313 11231 0.5040 +10313 11337 0.7970 +10313 11345 0.7460 +10313 23163 0.5640 +10313 23204 0.6170 +10313 23621 0.9910 +10313 23710 0.7290 +10313 23770 0.5450 +10313 25825 0.9760 +10313 25923 0.9050 +10313 29100 0.4870 +10313 29927 0.4850 +10313 51062 0.7020 +10313 51308 0.4520 +10313 51368 0.7290 +10313 51534 0.5300 +10313 51733 0.4440 +10313 54463 0.8220 +10313 57142 0.9930 +10313 57497 0.5960 +10313 57622 0.5160 +10313 57658 0.4950 +10313 64225 0.6650 +10313 65055 0.4440 +10313 65078 0.5300 +10313 78999 0.5240 +10313 79137 0.4230 +10313 79414 0.5160 +10313 80346 0.6050 +10313 80856 0.5690 +10313 89796 0.5630 +10313 89953 0.4230 +10313 92840 0.6300 +10313 116150 0.6790 +10313 148327 0.4440 +10313 162427 0.5830 +10313 729665 0.4480 +10314 11319 0.5100 +10314 23061 0.5760 +10314 23158 0.6280 +10314 23349 0.4560 +10314 50813 0.4270 +10314 51071 0.6310 +10314 51657 0.4460 +10314 55137 0.6260 +10314 55860 0.5770 +10314 79033 0.4610 +10314 79641 0.4590 +10314 114826 0.4360 +10314 126133 0.8440 +10314 151050 0.5030 +10314 254048 0.5180 +10314 340371 0.6110 +10316 10681 0.5600 +10316 10800 0.4520 +10316 10874 0.9990 +10316 10887 0.4450 +10316 10911 0.5340 +10316 23236 0.5020 +10316 23566 0.4230 +10316 23620 0.4470 +10316 26269 0.4350 +10316 26575 0.4990 +10316 51083 0.5970 +10316 51738 0.5950 +10316 51764 0.6220 +10316 54331 0.9060 +10316 55970 0.5410 +10316 56923 0.9380 +10316 57105 0.4350 +10316 57121 0.4100 +10316 59345 0.5620 +10316 60675 0.5110 +10316 63940 0.4010 +10316 64407 0.5080 +10316 80045 0.4180 +10316 84432 0.5230 +10316 84634 0.4580 +10316 90865 0.4190 +10316 94235 0.5410 +10316 115557 0.5000 +10316 128674 0.4060 +10316 129521 0.9980 +10316 256933 0.5380 +10316 257313 0.5010 +10316 283869 0.5020 +10316 387129 0.4640 +10316 431704 0.5050 +10316 594857 0.5760 +10316 104909134 0.4030 +10317 10402 0.4210 +10317 10690 0.5100 +10317 26301 0.9320 +10317 30815 0.5510 +10317 53947 0.5350 +10317 55808 0.4520 +10317 56913 0.9430 +10317 66036 0.4260 +10317 84002 0.9300 +10317 124872 0.5150 +10317 150082 0.5370 +10317 170384 0.4200 +10317 283358 0.4520 +10317 286046 0.4180 +10318 10403 0.4040 +10318 10616 0.5710 +10318 10758 0.6370 +10318 10930 0.4110 +10318 11345 0.4700 +10318 22861 0.4470 +10318 23057 0.4200 +10318 23710 0.5860 +10318 26191 0.5070 +10318 26994 0.6250 +10318 29110 0.7550 +10318 51752 0.6700 +10318 54887 0.5020 +10318 54899 0.4180 +10318 55024 0.4870 +10318 55072 0.5870 +10318 55905 0.5940 +10318 57179 0.4500 +10318 64127 0.4140 +10318 64135 0.4240 +10318 64478 0.4290 +10318 79092 0.5130 +10318 79155 0.8210 +10318 79931 0.4720 +10318 80304 0.4180 +10318 81858 0.5450 +10318 83648 0.5540 +10318 84433 0.4920 +10318 84557 0.5960 +10318 84648 0.5910 +10318 85463 0.4190 +10318 121260 0.4420 +10318 149233 0.6670 +10318 152137 0.4650 +10318 338322 0.5060 +10318 353143 0.5410 +10318 353144 0.6490 +10319 22795 0.7620 +10319 22801 0.7330 +10319 22987 0.7250 +10319 23594 0.4460 +10319 23595 0.4330 +10319 50509 0.4380 +10319 59277 0.5760 +10319 81620 0.8560 +10319 131873 0.4250 +10319 160418 0.4480 +10319 284217 0.5540 +10319 390077 0.4030 +10320 10524 0.6260 +10320 10538 0.4960 +10320 10664 0.4710 +10320 10735 0.4720 +10320 10801 0.4040 +10320 11055 0.5780 +10320 11151 0.4190 +10320 11162 0.5490 +10320 11179 0.5480 +10320 22806 0.9180 +10320 22807 0.7980 +10320 22938 0.4320 +10320 23028 0.4920 +10320 23242 0.4580 +10320 23309 0.8940 +10320 23476 0.6130 +10320 23495 0.4220 +10320 23512 0.4130 +10320 25942 0.9710 +10320 26040 0.4970 +10320 29760 0.5100 +10320 29844 0.5680 +10320 29851 0.4820 +10320 30009 0.5230 +10320 30012 0.5890 +10320 50943 0.7170 +10320 51176 0.7780 +10320 51185 0.9990 +10320 51311 0.4630 +10320 51564 0.4610 +10320 53335 0.7010 +10320 54440 0.5890 +10320 54518 0.4050 +10320 54790 0.5770 +10320 54815 0.4840 +10320 54897 0.4060 +10320 55294 0.4580 +10320 55534 0.5710 +10320 57459 0.4250 +10320 57504 0.4220 +10320 57705 0.4970 +10320 57823 0.4300 +10320 60468 0.4540 +10320 63035 0.4410 +10320 63979 0.5220 +10320 64098 0.4450 +10320 64375 0.8100 +10320 64376 0.8320 +10320 64926 0.4180 +10320 79718 0.4380 +10320 81704 0.4190 +10320 84159 0.6210 +10320 84295 0.7640 +10320 84433 0.4610 +10320 84441 0.5780 +10320 84868 0.5460 +10320 89857 0.5120 +10320 90379 0.4220 +10320 117289 0.4510 +10320 124626 0.5820 +10320 142678 0.4070 +10320 151888 0.4150 +10320 161882 0.5910 +10320 171023 0.6060 +10320 171558 0.8490 +10320 221120 0.4920 +10320 257106 0.4230 +10320 286530 0.8150 +10320 339448 0.6350 +10320 374569 0.4520 +10320 402635 0.4720 +10320 100288687 0.4560 +10320 100423062 0.7920 +10320 102723407 0.7370 +10321 10562 0.6260 +10321 23600 0.4120 +10321 25797 0.4380 +10321 29988 0.4510 +10321 83716 0.4360 +10321 92140 0.7610 +10321 92747 0.5140 +10321 140738 0.4180 +10321 151056 0.6190 +10321 154664 0.4340 +10321 259307 0.6250 +10322 10522 0.5440 +10322 10919 0.4660 +10322 11108 0.5470 +10322 23067 0.5070 +10322 23135 0.4350 +10322 29072 0.4180 +10322 51078 0.4740 +10322 51111 0.4920 +10322 51741 0.4790 +10322 54093 0.4710 +10322 54732 0.4870 +10322 55209 0.4490 +10322 55870 0.4010 +10322 55904 0.4990 +10322 56950 0.5330 +10322 56980 0.4430 +10322 59336 0.4930 +10322 63977 0.5410 +10322 64754 0.5480 +10322 79723 0.4940 +10322 79813 0.4210 +10322 79918 0.4520 +10322 80854 0.4260 +10322 84193 0.5310 +10322 84444 0.4120 +10322 84787 0.4270 +10322 93166 0.4470 +10322 114826 0.8450 +10322 117159 0.4320 +10322 150572 0.7690 +10322 222068 0.4880 +10324 10345 0.5030 +10324 10529 0.5620 +10324 10930 0.6270 +10324 11146 0.7200 +10324 11275 0.7700 +10324 23053 0.9000 +10324 23142 0.5040 +10324 23412 0.5010 +10324 23510 0.5930 +10324 23588 0.4440 +10324 23676 0.6520 +10324 25898 0.4810 +10324 26249 0.9130 +10324 27241 0.5320 +10324 27252 0.9180 +10324 27295 0.4180 +10324 28952 0.4990 +10324 28991 0.4990 +10324 29099 0.4990 +10324 29765 0.4780 +10324 29895 0.8470 +10324 51088 0.4600 +10324 51118 0.5220 +10324 51122 0.4990 +10324 51397 0.4990 +10324 51778 0.7300 +10324 53339 0.4150 +10324 54165 0.5040 +10324 54442 0.6230 +10324 54800 0.7440 +10324 54939 0.4990 +10324 54951 0.5030 +10324 55175 0.4680 +10324 55208 0.5040 +10324 55212 0.4530 +10324 55832 0.5090 +10324 55958 0.9340 +10324 55975 0.9120 +10324 56203 0.8020 +10324 57542 0.9240 +10324 57563 0.9120 +10324 58529 0.5960 +10324 59349 0.9130 +10324 64410 0.9150 +10324 79734 0.9050 +10324 79933 0.5240 +10324 80311 0.4290 +10324 83892 0.7200 +10324 84078 0.9000 +10324 84259 0.5040 +10324 84541 0.9140 +10324 84665 0.6990 +10324 84700 0.6540 +10324 84861 0.9130 +10324 89890 0.9040 +10324 90135 0.4480 +10324 90293 0.9270 +10324 122773 0.4760 +10324 124093 0.4110 +10324 129446 0.7590 +10324 129880 0.4600 +10324 131377 0.8870 +10324 140458 0.5500 +10324 140465 0.4570 +10324 146862 0.5710 +10324 149951 0.4990 +10324 150684 0.4990 +10324 154881 0.4080 +10324 165904 0.4770 +10324 170622 0.4990 +10324 200845 0.5820 +10324 246329 0.4120 +10324 253980 0.9030 +10324 339745 0.9060 +10324 390594 0.6610 +10324 401265 0.4740 +10324 442721 0.6290 +10324 553115 0.7230 +10325 10542 0.9990 +10325 10641 0.9890 +10325 10645 0.4350 +10325 10670 0.9990 +10325 11133 0.7130 +10325 23049 0.5430 +10325 23334 0.7030 +10325 23339 0.7320 +10325 23395 0.7290 +10325 23677 0.8710 +10325 23770 0.5470 +10325 27244 0.7670 +10325 28956 0.9990 +10325 51256 0.6520 +10325 51382 0.7060 +10325 51422 0.5840 +10325 51520 0.7380 +10325 51606 0.6230 +10325 53632 0.5530 +10325 54468 0.8560 +10325 54541 0.6600 +10325 55004 0.9990 +10325 55846 0.7300 +10325 57521 0.9990 +10325 57600 0.9550 +10325 58528 0.9990 +10325 60673 0.6080 +10325 64121 0.9990 +10325 64223 0.9280 +10325 64798 0.8200 +10325 79109 0.4740 +10325 79726 0.8650 +10325 81929 0.8420 +10325 83667 0.8030 +10325 84219 0.9990 +10325 84232 0.4690 +10325 84335 0.9600 +10325 84946 0.4820 +10325 90423 0.4990 +10325 96459 0.9680 +10325 120103 0.6490 +10325 121268 0.6740 +10325 127124 0.4990 +10325 143686 0.4220 +10325 144577 0.7440 +10325 153129 0.9990 +10325 154743 0.7090 +10325 155066 0.5040 +10325 201163 0.9860 +10325 206358 0.6470 +10325 220441 0.9250 +10325 245972 0.5380 +10325 245973 0.5170 +10325 253260 0.7050 +10325 389541 0.9990 +10325 440275 0.4060 +10325 652968 0.7550 +10325 654346 0.6210 +10325 729438 0.6890 +10326 23601 0.5120 +10326 54209 0.6970 +10326 54210 0.5670 +10326 124599 0.4490 +10326 126014 0.6800 +10326 131450 0.5300 +10326 140885 0.9180 +10326 255043 0.4110 +10327 10901 0.4420 +10327 11343 0.9080 +10327 22949 0.4410 +10327 22977 0.7320 +10327 23542 0.6490 +10327 25906 0.4220 +10327 27294 0.4950 +10327 29780 0.6500 +10327 51084 0.9270 +10327 54995 0.4060 +10327 55586 0.9680 +10327 79924 0.7610 +10327 84817 0.4160 +10327 130589 0.4190 +10327 132789 0.4670 +10327 157769 0.4190 +10327 221357 0.4050 +10328 10345 0.6070 +10328 23065 0.9990 +10328 26189 0.5750 +10328 29978 0.6510 +10328 51016 0.9120 +10328 51234 0.9990 +10328 51659 0.6010 +10328 55257 0.4360 +10328 55831 0.9990 +10328 56851 0.9990 +10328 83460 0.9990 +10328 84701 0.9490 +10328 93380 0.9990 +10328 115416 0.4630 +10328 118424 0.7140 +10328 284361 0.9980 +10328 404550 0.6290 +10328 503841 0.4260 +10329 10585 0.8620 +10329 10678 0.4760 +10329 11041 0.9850 +10329 22845 0.7730 +10329 29925 0.8120 +10329 29954 0.8620 +10329 54344 0.7520 +10329 55624 0.9050 +10329 55780 0.4030 +10329 79147 0.9910 +10329 84197 0.8760 +10329 84892 0.8930 +10329 120071 0.6940 +10329 133584 0.5160 +10329 148789 0.8780 +10329 375790 0.4870 +10329 729920 0.8010 +10330 10695 0.5830 +10330 10952 0.4090 +10330 10954 0.4070 +10330 29116 0.9220 +10330 29895 0.8830 +10330 80059 0.8540 +10330 80169 0.4440 +10330 103910 0.8290 +10330 150350 0.4020 +10330 245812 0.6460 +10330 347730 0.4970 +10330 768239 0.8590 +10331 10402 0.9540 +10331 10410 0.7280 +10331 10463 0.4450 +10331 10678 0.9260 +10331 10690 0.9300 +10331 11081 0.4330 +10331 11187 0.4070 +10331 23443 0.4870 +10331 23555 0.4950 +10331 23624 0.4060 +10331 23767 0.4190 +10331 29119 0.5300 +10331 30815 0.4330 +10331 51146 0.4710 +10331 51301 0.4170 +10331 55532 0.4110 +10331 55676 0.6110 +10331 55808 0.4920 +10331 56667 0.5370 +10331 56913 0.5190 +10331 79369 0.9160 +10331 79695 0.4690 +10331 94025 0.5230 +10331 124872 0.4290 +10331 137970 0.4520 +10331 140453 0.5110 +10331 143662 0.4520 +10331 200958 0.5480 +10331 219699 0.4650 +10331 283358 0.5040 +10331 347731 0.8810 +10331 394263 0.4880 +10331 727897 0.5090 +10332 10488 0.4280 +10332 10894 0.4260 +10332 23365 0.9000 +10332 25827 0.4950 +10332 27069 0.6760 +10332 30816 0.8020 +10332 30835 0.9960 +10332 50943 0.4220 +10332 55576 0.8170 +10332 57393 0.5380 +10332 57506 0.4060 +10332 59272 0.9830 +10332 84961 0.4950 +10332 123036 0.5470 +10332 134957 0.5070 +10332 148327 0.4700 +10332 286133 0.4990 +10332 339390 0.4300 +10335 10840 0.4100 +10335 10894 0.4320 +10335 51313 0.4510 +10335 51806 0.5090 +10335 64407 0.4720 +10335 91851 0.4380 +10335 91860 0.5110 +10335 116135 0.4840 +10335 140458 0.5600 +10335 151651 0.4340 +10335 163688 0.5090 +10335 375033 0.6350 +10336 10389 0.9330 +10336 10393 0.5400 +10336 10477 0.5100 +10336 10815 0.4100 +10336 10898 0.5790 +10336 11065 0.5950 +10336 22823 0.5630 +10336 22955 0.5610 +10336 23013 0.5280 +10336 23269 0.5070 +10336 23429 0.9870 +10336 23466 0.9820 +10336 23492 0.9850 +10336 23512 0.9430 +10336 25847 0.5400 +10336 25906 0.5400 +10336 26053 0.8880 +10336 26147 0.5480 +10336 27338 0.5620 +10336 29882 0.5610 +10336 29945 0.5520 +10336 51239 0.5400 +10336 51343 0.5770 +10336 51429 0.5310 +10336 51433 0.5470 +10336 51434 0.5680 +10336 51529 0.5400 +10336 54880 0.9190 +10336 55252 0.6640 +10336 57332 0.9810 +10336 57666 0.7310 +10336 63035 0.8380 +10336 64319 0.8790 +10336 64682 0.5690 +10336 79184 0.5560 +10336 80012 0.9500 +10336 80816 0.5640 +10336 83746 0.5690 +10336 84108 0.9800 +10336 84133 0.9680 +10336 84179 0.4430 +10336 84286 0.4520 +10336 84333 0.9930 +10336 84678 0.8170 +10336 84733 0.9740 +10336 84759 0.9810 +10336 119504 0.5400 +10336 121536 0.9410 +10336 132625 0.5840 +10336 140459 0.5490 +10336 166979 0.5450 +10336 171023 0.9150 +10336 246184 0.5400 +10336 340061 0.4300 +10336 404281 0.5840 +10336 642843 0.6200 +10336 100170841 0.5760 +10336 100532731 0.6800 +10342 10427 0.7030 +10342 10484 0.5910 +10342 10652 0.5220 +10342 10802 0.7470 +10342 10817 0.5890 +10342 10818 0.5840 +10342 10959 0.5760 +10342 10960 0.5100 +10342 10972 0.5710 +10342 11005 0.5370 +10342 11072 0.4050 +10342 11196 0.6330 +10342 22872 0.9520 +10342 26003 0.4460 +10342 26984 0.5320 +10342 27095 0.5370 +10342 27436 0.7920 +10342 29110 0.4130 +10342 51128 0.6450 +10342 51399 0.5340 +10342 51693 0.5110 +10342 53335 0.5470 +10342 55128 0.5720 +10342 57448 0.6350 +10342 58485 0.5210 +10342 79090 0.5220 +10342 79748 0.5050 +10342 80304 0.5830 +10342 81562 0.5570 +10342 81876 0.5640 +10342 84336 0.4020 +10342 84433 0.4630 +10342 84873 0.4370 +10342 89866 0.6680 +10342 90411 0.5420 +10342 93487 0.5020 +10342 122553 0.5710 +10342 126003 0.5060 +10342 144100 0.4340 +10342 149111 0.5100 +10342 254263 0.5100 +10342 343069 0.4090 +10342 553115 0.5300 +10343 22917 0.4320 +10343 23536 0.4180 +10343 27039 0.4560 +10343 56948 0.4050 +10343 57489 0.4800 +10343 83853 0.4960 +10343 83893 0.5610 +10343 83983 0.4470 +10343 84519 0.4230 +10343 90342 0.4010 +10343 93550 0.5970 +10343 117144 0.4620 +10343 138724 0.5610 +10343 139604 0.5550 +10343 145942 0.5170 +10343 146852 0.4780 +10343 150383 0.6140 +10343 152065 0.4470 +10343 161142 0.4410 +10343 200232 0.5680 +10343 219938 0.4190 +10343 220082 0.4530 +10343 257169 0.5740 +10343 283461 0.5930 +10343 284359 0.5380 +10343 342372 0.5020 +10343 100129669 0.4910 +10344 10392 0.4710 +10344 10563 0.7190 +10344 10631 0.5840 +10344 10663 0.8020 +10344 10673 0.4420 +10344 10803 0.7840 +10344 10850 0.7530 +10344 11005 0.5350 +10344 11251 0.6410 +10344 26575 0.4310 +10344 27178 0.4320 +10344 27181 0.4010 +10344 50616 0.4350 +10344 51131 0.5490 +10344 51200 0.4540 +10344 56477 0.9950 +10344 58191 0.5060 +10344 60437 0.4620 +10344 80332 0.4700 +10344 85480 0.6870 +10344 90865 0.5410 +10344 117156 0.4240 +10344 284266 0.4280 +10344 284340 0.9950 +10344 386653 0.5430 +10344 388698 0.5200 +10344 440854 0.6670 +10345 10930 0.4480 +10345 10970 0.4850 +10345 11155 0.4400 +10345 23171 0.4100 +10345 23439 0.5420 +10345 23630 0.4140 +10345 23676 0.5330 +10345 23704 0.4040 +10345 27063 0.4700 +10345 27295 0.4650 +10345 51016 0.4730 +10345 51234 0.4740 +10345 51422 0.4560 +10345 51593 0.4220 +10345 51778 0.7210 +10345 51806 0.9180 +10345 55831 0.6130 +10345 56704 0.9360 +10345 56851 0.4630 +10345 57158 0.9450 +10345 57338 0.8850 +10345 84033 0.4390 +10345 84502 0.8840 +10345 84665 0.5060 +10345 84769 0.4270 +10345 85366 0.4530 +10345 91860 0.9160 +10345 126306 0.7500 +10345 129446 0.6730 +10345 140458 0.4480 +10345 146862 0.4700 +10345 150572 0.4120 +10345 163688 0.9190 +10345 201140 0.4730 +10345 202333 0.4250 +10345 246329 0.6940 +10345 253017 0.6750 +10345 282996 0.6330 +10345 284361 0.6710 +10345 284612 0.6990 +10345 401265 0.4770 +10345 442721 0.6200 +10346 10379 0.6530 +10346 10410 0.6860 +10346 10561 0.8540 +10346 10581 0.4510 +10346 10673 0.4080 +10346 10957 0.4350 +10346 10964 0.8710 +10346 11274 0.5160 +10346 23118 0.5160 +10346 23137 0.4440 +10346 23586 0.7180 +10346 24138 0.5400 +10346 25939 0.5070 +10346 50852 0.9650 +10346 51131 0.5110 +10346 51191 0.6020 +10346 53339 0.4400 +10346 54625 0.5370 +10346 54739 0.7960 +10346 54809 0.5650 +10346 55008 0.6020 +10346 55337 0.4670 +10346 55351 0.4100 +10346 55601 0.7620 +10346 55643 0.4290 +10346 56829 0.4130 +10346 57506 0.4600 +10346 60489 0.6210 +10346 64108 0.5950 +10346 64127 0.5280 +10346 64135 0.6380 +10346 64761 0.4880 +10346 79132 0.4520 +10346 81844 0.6040 +10346 83666 0.7470 +10346 84166 0.4360 +10346 85441 0.6270 +10346 91543 0.6900 +10346 94240 0.5500 +10346 114088 0.4070 +10346 115361 0.5520 +10346 115362 0.4510 +10346 129607 0.4210 +10346 164668 0.4580 +10346 200315 0.4480 +10346 200316 0.4180 +10346 219285 0.6440 +10346 283953 0.4220 +10346 442862 0.5060 +10347 10452 0.5070 +10347 10658 0.6230 +10347 10979 0.6700 +10347 23526 0.8860 +10347 23607 0.8830 +10347 23621 0.4820 +10347 23646 0.6560 +10347 29990 0.4770 +10347 29992 0.5400 +10347 51225 0.5360 +10347 51314 0.7300 +10347 51338 0.7130 +10347 54209 0.7750 +10347 54859 0.7610 +10347 54926 0.4050 +10347 55063 0.7640 +10347 57091 0.7270 +10347 64231 0.8110 +10347 79746 0.4780 +10347 79865 0.4190 +10347 79890 0.6870 +10347 83661 0.6210 +10347 123041 0.7260 +10347 124152 0.4740 +10347 222950 0.4040 +10347 245802 0.7200 +10347 643680 0.8230 +10347 114483834 0.4040 +10349 10350 0.4270 +10349 23460 0.4400 +10349 28965 0.4030 +10349 54535 0.4230 +10349 55324 0.5320 +10349 85320 0.4870 +10349 148109 0.5650 +10349 220082 0.4620 +10349 283238 0.5280 +10349 387775 0.4290 +10349 390883 0.5410 +10349 401827 0.4890 +10349 642574 0.4290 +10350 23460 0.7900 +10351 10599 0.4050 +10351 23460 0.6830 +10351 55324 0.4520 +10351 79987 0.4040 +10351 147381 0.4270 +10351 219654 0.4660 +10351 441250 0.4180 +10352 10667 0.8050 +10352 11232 0.4820 +10352 23395 0.8680 +10352 23438 0.8280 +10352 25813 0.4590 +10352 25973 0.8990 +10352 26227 0.4050 +10352 29789 0.4650 +10352 51021 0.4660 +10352 51067 0.9510 +10352 51520 0.8600 +10352 54796 0.4860 +10352 54938 0.8690 +10352 55157 0.7660 +10352 55644 0.4170 +10352 55699 0.8770 +10352 57038 0.8630 +10352 57176 0.9060 +10352 57470 0.5120 +10352 57505 0.8760 +10352 60558 0.4220 +10352 64172 0.4520 +10352 64795 0.4760 +10352 79587 0.8380 +10352 79731 0.8540 +10352 80222 0.8020 +10352 83451 0.5440 +10352 84340 0.4820 +10352 84464 0.4470 +10352 85476 0.5520 +10352 90353 0.4040 +10352 91574 0.4830 +10352 91893 0.4780 +10352 92399 0.5400 +10352 92935 0.9080 +10352 116143 0.4360 +10352 123263 0.7240 +10352 123283 0.7950 +10352 124454 0.8380 +10352 246243 0.4060 +10352 374395 0.5570 +10352 440275 0.5000 +10352 101927367 0.4420 +10360 10361 0.8710 +10360 10724 0.7390 +10360 23076 0.4290 +10360 23246 0.4380 +10360 23481 0.4090 +10360 25871 0.5600 +10360 27043 0.4130 +10360 55299 0.4450 +10360 55759 0.4180 +10360 57418 0.4200 +10360 81887 0.4970 +10360 153339 0.5190 +10360 200844 0.4220 +10360 285237 0.4170 +10360 285855 0.4190 +10360 646817 0.4460 +10361 51602 0.5310 +10361 90381 0.5040 +10361 126206 0.4480 +10361 127700 0.4540 +10361 132243 0.5260 +10361 326340 0.6410 +10361 402569 0.6610 +10361 646799 0.4420 +10362 10363 0.9320 +10362 11320 0.4020 +10362 23028 0.9990 +10362 23186 0.9990 +10362 23199 0.9750 +10362 24137 0.4220 +10362 25855 0.5280 +10362 50618 0.4380 +10362 51317 0.9990 +10362 51362 0.4440 +10362 51742 0.5790 +10362 53615 0.5680 +10362 54815 0.5500 +10362 55758 0.9030 +10362 55909 0.4580 +10362 56204 0.4010 +10362 56950 0.4180 +10362 57459 0.5220 +10362 57504 0.6770 +10362 58495 0.4350 +10362 64426 0.5450 +10362 79685 0.5200 +10362 84720 0.4220 +10362 85235 0.4950 +10362 85236 0.5270 +10362 92255 0.4700 +10362 92815 0.4950 +10362 112885 0.4530 +10362 113251 0.4380 +10362 126321 0.4320 +10362 128312 0.4990 +10362 132660 0.4220 +10362 168002 0.4590 +10362 221613 0.4950 +10362 255626 0.5200 +10362 283248 0.8880 +10362 317772 0.4950 +10362 345079 0.4400 +10362 440093 0.5470 +10362 440686 0.5470 +10362 440689 0.4990 +10362 653604 0.7190 +10362 728378 0.4820 +10363 10556 0.6120 +10363 10743 0.6650 +10363 11198 0.4670 +10363 23028 0.9000 +10363 23186 0.9380 +10363 23199 0.9510 +10363 51105 0.4520 +10363 51317 0.9170 +10363 51460 0.7510 +10363 53820 0.4450 +10363 54815 0.6030 +10363 54901 0.4940 +10363 55213 0.5320 +10363 55671 0.4270 +10363 55715 0.4920 +10363 55758 0.9300 +10363 56916 0.5640 +10363 57459 0.6300 +10363 57542 0.4780 +10363 57599 0.4400 +10363 57680 0.4770 +10363 60490 0.4370 +10363 92400 0.4230 +10363 94121 0.4260 +10363 112885 0.7230 +10363 112970 0.4890 +10363 169026 0.4410 +10363 170302 0.4470 +10363 255626 0.4050 +10363 283248 0.7050 +10363 286046 0.4240 +10363 359948 0.4050 +10363 440093 0.4170 +10363 440686 0.4170 +10363 653604 0.4210 +10365 10538 0.4350 +10365 10663 0.4700 +10365 10803 0.5270 +10365 11059 0.7200 +10365 11235 0.4440 +10365 23028 0.4510 +10365 23411 0.4170 +10365 23512 0.4100 +10365 26524 0.4060 +10365 27033 0.4290 +10365 29128 0.4030 +10365 29842 0.6240 +10365 30009 0.5650 +10365 50615 0.4050 +10365 50943 0.4380 +10365 51176 0.4200 +10365 54715 0.4110 +10365 55294 0.5160 +10365 57154 0.4240 +10365 60468 0.5890 +10365 64321 0.5060 +10365 79923 0.7650 +10365 83605 0.5500 +10365 115362 0.4150 +10365 359787 0.6400 +10365 414062 0.4180 +10365 440686 0.4050 +10365 653604 0.4050 +10367 10923 0.4950 +10367 10939 0.7500 +10367 10989 0.4510 +10367 11331 0.8240 +10367 25771 0.6490 +10367 26517 0.4300 +10367 27429 0.4380 +10367 29090 0.4720 +10367 29928 0.4320 +10367 51079 0.4250 +10367 54205 0.4470 +10367 54902 0.4270 +10367 55013 0.9990 +10367 55486 0.4470 +10367 55669 0.6490 +10367 57620 0.4840 +10367 60492 0.4760 +10367 60558 0.4960 +10367 63933 0.9970 +10367 65018 0.4900 +10367 65260 0.4930 +10367 79085 0.9850 +10367 79568 0.5440 +10367 80024 0.8070 +10367 84876 0.4060 +10367 90550 0.9990 +10367 91689 0.9990 +10367 92609 0.5040 +10367 114789 0.5240 +10367 131474 0.9150 +10367 137994 0.4620 +10367 139285 0.4220 +10367 221154 0.9990 +10367 286097 0.9950 +10367 100287932 0.4910 +10368 10369 0.7560 +10368 25780 0.6950 +10368 25858 0.7300 +10368 27091 0.8140 +10368 27092 0.9050 +10368 28227 0.6500 +10368 51440 0.4070 +10368 53616 0.5350 +10368 55012 0.6530 +10368 55799 0.5830 +10368 55844 0.6500 +10368 57468 0.4360 +10368 57685 0.5710 +10368 57828 0.7480 +10368 59283 0.9130 +10368 59284 0.9390 +10368 59285 0.9080 +10368 79820 0.7200 +10368 93145 0.7420 +10368 93377 0.5050 +10368 93589 0.9150 +10368 115727 0.6550 +10368 116443 0.7940 +10368 116444 0.7690 +10368 117144 0.7230 +10368 117155 0.7200 +10368 118427 0.5210 +10368 146395 0.4800 +10368 149111 0.8040 +10368 170572 0.5400 +10368 200909 0.5400 +10368 246329 0.7200 +10368 254263 0.8350 +10368 257044 0.7200 +10368 257062 0.7200 +10368 285242 0.5430 +10368 285588 0.7200 +10368 340393 0.7200 +10368 347732 0.7200 +10368 375567 0.5960 +10368 378807 0.7230 +10368 388336 0.7200 +10368 402117 0.6320 +10368 440829 0.5720 +10368 644070 0.4810 +10368 729956 0.7170 +10368 729993 0.8200 +10368 100130348 0.7200 +10369 10767 0.4200 +10369 22871 0.4130 +10369 22983 0.4170 +10369 23031 0.4090 +10369 23208 0.4330 +10369 23237 0.6500 +10369 23426 0.7440 +10369 25780 0.6580 +10369 25858 0.7200 +10369 27091 0.7950 +10369 27092 0.7340 +10369 27185 0.5940 +10369 28227 0.6500 +10369 29097 0.7250 +10369 50944 0.4180 +10369 51764 0.4830 +10369 53616 0.9370 +10369 55012 0.6500 +10369 55327 0.4380 +10369 55450 0.4120 +10369 55799 0.7080 +10369 55844 0.6500 +10369 57120 0.7420 +10369 57406 0.4560 +10369 57685 0.5580 +10369 57828 0.7240 +10369 59283 0.7480 +10369 59284 0.8010 +10369 59285 0.7410 +10369 64840 0.4320 +10369 79820 0.7200 +10369 79953 0.4780 +10369 81831 0.5200 +10369 81832 0.5420 +10369 93145 0.7270 +10369 93589 0.7910 +10369 115727 0.6500 +10369 116443 0.8520 +10369 116444 0.8450 +10369 117144 0.7230 +10369 117155 0.7200 +10369 118427 0.4300 +10369 119467 0.7170 +10369 126129 0.4270 +10369 146395 0.6540 +10369 149111 0.8340 +10369 170572 0.5410 +10369 200909 0.5400 +10369 245973 0.7620 +10369 246329 0.7320 +10369 254170 0.4060 +10369 254263 0.9060 +10369 257044 0.7200 +10369 257062 0.7200 +10369 260425 0.4310 +10369 285242 0.5400 +10369 285588 0.7200 +10369 340393 0.7200 +10369 347732 0.7200 +10369 375567 0.5670 +10369 378807 0.7230 +10369 388336 0.7000 +10369 402117 0.5750 +10369 440829 0.5570 +10369 645104 0.7230 +10369 729956 0.6990 +10369 729993 0.9730 +10369 100130348 0.7200 +10370 10499 0.6060 +10370 26234 0.4390 +10370 51430 0.5930 +10370 56980 0.4930 +10370 64344 0.5350 +10370 83741 0.5720 +10370 85441 0.4260 +10370 93986 0.6310 +10370 163732 0.6420 +10370 339488 0.5440 +10370 100532731 0.6460 +10371 10570 0.6490 +10371 10752 0.6670 +10371 10755 0.4270 +10371 23060 0.4190 +10371 23129 0.9450 +10371 23396 0.4990 +10371 23630 0.4220 +10371 23654 0.5640 +10371 26012 0.5060 +10371 27185 0.4100 +10371 27289 0.7860 +10371 29098 0.4180 +10371 29127 0.4040 +10371 54437 0.5050 +10371 54756 0.5790 +10371 55079 0.4290 +10371 55558 0.9990 +10371 55636 0.4200 +10371 56896 0.6870 +10371 56920 0.4080 +10371 57142 0.4350 +10371 60675 0.4790 +10371 63827 0.4330 +10371 64780 0.4950 +10371 64919 0.4530 +10371 65078 0.6180 +10371 79679 0.4760 +10371 84634 0.4750 +10371 84894 0.4480 +10371 90249 0.6370 +10371 91584 0.9990 +10371 128674 0.5810 +10371 137970 0.5080 +10371 170482 0.4240 +10371 284217 0.5430 +10376 10381 0.9990 +10376 10382 0.9770 +10376 10383 0.9960 +10376 10553 0.4870 +10376 10574 0.8410 +10376 10575 0.7980 +10376 10576 0.8700 +10376 10693 0.6860 +10376 10694 0.7190 +10376 10844 0.4680 +10376 10971 0.5790 +10376 10982 0.4280 +10376 11004 0.8560 +10376 11156 0.4500 +10376 22846 0.4920 +10376 22919 0.5200 +10376 22924 0.9440 +10376 22948 0.8000 +10376 22974 0.9190 +10376 23089 0.5060 +10376 23521 0.4190 +10376 25978 0.5030 +10376 27183 0.5290 +10376 27243 0.5370 +10376 27436 0.4900 +10376 51143 0.6750 +10376 51175 0.5180 +10376 51314 0.4980 +10376 51574 0.5390 +10376 51652 0.5030 +10376 51807 0.4270 +10376 54101 0.5810 +10376 54617 0.4140 +10376 54715 0.5000 +10376 55004 0.4210 +10376 55075 0.4710 +10376 55717 0.4080 +10376 55835 0.9420 +10376 55968 0.4080 +10376 56924 0.4160 +10376 57144 0.4230 +10376 64221 0.5450 +10376 79643 0.5070 +10376 79645 0.4040 +10376 79659 0.7420 +10376 79805 0.9460 +10376 79861 0.4280 +10376 80086 0.4150 +10376 81027 0.9790 +10376 81551 0.9570 +10376 83473 0.4430 +10376 83547 0.6500 +10376 83658 0.4140 +10376 84617 0.9850 +10376 84790 0.9840 +10376 84946 0.5910 +10376 91782 0.5080 +10376 92421 0.4990 +10376 112714 0.4050 +10376 113457 0.4310 +10376 114787 0.5510 +10376 114885 0.4440 +10376 128866 0.5150 +10376 133690 0.4980 +10376 136332 0.5070 +10376 140465 0.4270 +10376 140735 0.4830 +10376 150465 0.9630 +10376 151651 0.4410 +10376 153562 0.9000 +10376 157769 0.4460 +10376 157922 0.9070 +10376 197335 0.6530 +10376 200014 0.5000 +10376 203068 0.9990 +10376 221496 0.5480 +10376 253959 0.4200 +10376 255394 0.7530 +10376 260334 0.7550 +10376 338382 0.6710 +10376 339416 0.4280 +10376 347688 0.9840 +10376 347733 0.9980 +10376 374969 0.9120 +10376 653319 0.9000 +10376 728378 0.6590 +10379 10410 0.8880 +10379 10499 0.6210 +10379 10561 0.8550 +10379 10581 0.7660 +10379 10964 0.7840 +10379 11274 0.7730 +10379 23560 0.4160 +10379 23586 0.8660 +10379 24138 0.7920 +10379 25939 0.8010 +10379 29110 0.6170 +10379 51062 0.5270 +10379 51191 0.5970 +10379 51284 0.5840 +10379 51311 0.4480 +10379 51447 0.5100 +10379 54106 0.4790 +10379 54625 0.7340 +10379 54739 0.8210 +10379 54809 0.5040 +10379 54926 0.4140 +10379 55008 0.7510 +10379 55072 0.4020 +10379 55337 0.4760 +10379 55601 0.6760 +10379 56829 0.4590 +10379 56832 0.5840 +10379 57506 0.6700 +10379 64108 0.7750 +10379 64135 0.8960 +10379 64761 0.5310 +10379 79132 0.7160 +10379 79969 0.4380 +10379 83666 0.8430 +10379 84166 0.4370 +10379 85363 0.4020 +10379 85441 0.5310 +10379 87178 0.6870 +10379 91543 0.9240 +10379 94240 0.5500 +10379 115004 0.5500 +10379 115361 0.4120 +10379 115362 0.4230 +10379 129607 0.4740 +10379 150771 0.4050 +10379 163702 0.6750 +10379 219285 0.4430 +10379 282616 0.5890 +10379 282617 0.5820 +10379 282618 0.6290 +10379 338376 0.5800 +10379 345611 0.5020 +10379 388646 0.5060 +10380 10637 0.4120 +10380 22803 0.4070 +10380 27284 0.4720 +10380 27351 0.4240 +10380 51077 0.4990 +10380 51477 0.7820 +10380 54928 0.9290 +10380 56252 0.4080 +10380 64135 0.4070 +10380 64746 0.8540 +10380 80308 0.5690 +10380 84276 0.4040 +10380 84976 0.6360 +10380 390916 0.4580 +10381 10382 0.7030 +10381 10383 0.6450 +10381 10399 0.5830 +10381 10471 0.6080 +10381 10574 0.7090 +10381 10575 0.6940 +10381 10576 0.7000 +10381 10590 0.4210 +10381 10693 0.5920 +10381 10694 0.6820 +10381 10716 0.4920 +10381 10763 0.7710 +10381 10891 0.4100 +10381 10982 0.4370 +10381 11075 0.4770 +10381 11104 0.4090 +10381 22846 0.8890 +10381 22919 0.4770 +10381 22924 0.9460 +10381 22948 0.7090 +10381 24139 0.4820 +10381 25978 0.5320 +10381 27183 0.5320 +10381 27243 0.5080 +10381 51143 0.6790 +10381 51314 0.4610 +10381 51652 0.5030 +10381 51807 0.9620 +10381 55130 0.4130 +10381 55346 0.5720 +10381 55605 0.9430 +10381 55626 0.5690 +10381 57030 0.4530 +10381 57084 0.4020 +10381 63973 0.5120 +10381 64321 0.4110 +10381 64714 0.4020 +10381 64919 0.4450 +10381 79187 0.4200 +10381 79643 0.5030 +10381 79659 0.7480 +10381 79805 0.4410 +10381 79861 0.9630 +10381 79923 0.5440 +10381 80086 0.7160 +10381 81027 0.5310 +10381 83473 0.4440 +10381 83547 0.6500 +10381 84056 0.4660 +10381 84617 0.5720 +10381 84790 0.9930 +10381 91782 0.5130 +10381 92421 0.6300 +10381 112714 0.9620 +10381 113457 0.9620 +10381 116448 0.4010 +10381 120892 0.4520 +10381 126961 0.4650 +10381 128866 0.5130 +10381 136332 0.4590 +10381 137902 0.4190 +10381 146713 0.6490 +10381 150465 0.5720 +10381 197335 0.6310 +10381 200014 0.5340 +10381 221496 0.5600 +10381 260334 0.5760 +10381 284403 0.5850 +10381 338382 0.6520 +10381 345651 0.5200 +10381 347688 0.4520 +10381 347733 0.6550 +10381 374969 0.8950 +10381 400954 0.4270 +10381 653319 0.9010 +10381 653604 0.5950 +10381 728378 0.5410 +10382 10383 0.8830 +10382 10471 0.5460 +10382 10574 0.6530 +10382 10575 0.6030 +10382 10576 0.6450 +10382 10693 0.6160 +10382 10694 0.5520 +10382 10806 0.5370 +10382 10982 0.4090 +10382 11128 0.4050 +10382 22919 0.4490 +10382 22924 0.6910 +10382 22948 0.6130 +10382 23354 0.5160 +10382 25792 0.6600 +10382 25953 0.4300 +10382 25978 0.5170 +10382 26960 0.4390 +10382 27183 0.5550 +10382 27243 0.5040 +10382 29114 0.4240 +10382 51143 0.6890 +10382 51314 0.4610 +10382 51652 0.5000 +10382 51807 0.9650 +10382 54801 0.5110 +10382 54930 0.4990 +10382 55142 0.4990 +10382 55145 0.6890 +10382 55346 0.4670 +10382 55559 0.4990 +10382 55703 0.4300 +10382 57524 0.4940 +10382 63982 0.6220 +10382 64499 0.6230 +10382 64714 0.4490 +10382 79441 0.5170 +10382 79643 0.5000 +10382 79659 0.7380 +10382 79805 0.4490 +10382 79861 0.9630 +10382 79866 0.5230 +10382 80086 0.7220 +10382 81027 0.4110 +10382 83473 0.4410 +10382 83547 0.6500 +10382 84617 0.5180 +10382 84790 0.9780 +10382 91782 0.5010 +10382 92421 0.6300 +10382 93323 0.4990 +10382 112476 0.4730 +10382 112714 0.9710 +10382 113457 0.9630 +10382 115106 0.5060 +10382 117177 0.4990 +10382 120892 0.6110 +10382 121441 0.4490 +10382 128866 0.5040 +10382 135138 0.4010 +10382 136332 0.4590 +10382 150465 0.5640 +10382 153918 0.4200 +10382 197335 0.6260 +10382 200014 0.5330 +10382 203068 0.4340 +10382 221496 0.5460 +10382 260334 0.4040 +10382 338382 0.6500 +10382 347688 0.4110 +10382 347733 0.4680 +10382 374969 0.4010 +10382 728378 0.6880 +10382 728642 0.5470 +10383 10426 0.4010 +10383 10471 0.6630 +10383 10540 0.5750 +10383 10574 0.7390 +10383 10575 0.7510 +10383 10576 0.7570 +10383 10693 0.5890 +10383 10694 0.7170 +10383 10806 0.5370 +10383 10844 0.4170 +10383 10951 0.4030 +10383 10963 0.5310 +10383 10971 0.6660 +10383 10982 0.4250 +10383 11092 0.8230 +10383 11104 0.4470 +10383 11316 0.4880 +10383 22846 0.4170 +10383 22919 0.5190 +10383 22948 0.7220 +10383 22984 0.4310 +10383 23354 0.5220 +10383 23476 0.5270 +10383 24139 0.4920 +10383 25790 0.8650 +10383 25978 0.5200 +10383 26150 0.8380 +10383 26206 0.8230 +10383 27183 0.5380 +10383 27243 0.5160 +10383 27285 0.8670 +10383 29105 0.8660 +10383 29922 0.8220 +10383 51143 0.7360 +10383 51314 0.4610 +10383 51398 0.7660 +10383 51574 0.5350 +10383 51652 0.5040 +10383 51807 0.9620 +10383 54101 0.5300 +10383 54801 0.5150 +10383 54930 0.5810 +10383 55142 0.5640 +10383 55329 0.8330 +10383 55346 0.4230 +10383 55559 0.5090 +10383 55611 0.4280 +10383 55860 0.4080 +10383 64499 0.4770 +10383 64518 0.8760 +10383 64776 0.8030 +10383 79441 0.5170 +10383 79643 0.5060 +10383 79659 0.7380 +10383 79805 0.4230 +10383 79861 0.9640 +10383 79866 0.5320 +10383 79968 0.6050 +10383 80086 0.7650 +10383 80258 0.8720 +10383 81027 0.4660 +10383 81930 0.4090 +10383 83473 0.4800 +10383 83547 0.6530 +10383 83658 0.4490 +10383 83659 0.8610 +10383 83932 0.5100 +10383 84617 0.5300 +10383 84790 0.9900 +10383 91782 0.5130 +10383 92421 0.4990 +10383 92906 0.4020 +10383 93190 0.8230 +10383 93323 0.5190 +10383 112714 0.9620 +10383 113457 0.9710 +10383 114327 0.8680 +10383 115106 0.5100 +10383 117177 0.4990 +10383 120892 0.5850 +10383 127003 0.8230 +10383 128866 0.5200 +10383 129881 0.8370 +10383 133690 0.4260 +10383 134121 0.8000 +10383 135138 0.8680 +10383 136332 0.4590 +10383 138162 0.8300 +10383 138255 0.8230 +10383 140735 0.4900 +10383 145788 0.8200 +10383 146845 0.8290 +10383 150465 0.5880 +10383 150483 0.8520 +10383 151651 0.8870 +10383 161502 0.8150 +10383 197335 0.6260 +10383 200014 0.5340 +10383 203068 0.9860 +10383 219670 0.8540 +10383 220136 0.8520 +10383 221496 0.5470 +10383 257177 0.8260 +10383 260334 0.6490 +10383 338382 0.6500 +10383 339778 0.8010 +10383 347688 0.6590 +10383 347733 0.6660 +10383 374969 0.4500 +10383 388701 0.8230 +10383 389799 0.8000 +10383 440585 0.8000 +10383 728378 0.4390 +10383 728642 0.5570 +10383 730112 0.8050 +10384 11118 0.9600 +10384 11119 0.9660 +10384 11120 0.4860 +10384 22914 0.4610 +10384 50852 0.4630 +10384 80833 0.4360 +10384 84166 0.5600 +10384 132949 0.4710 +10384 143662 0.5240 +10384 339390 0.8240 +10384 442862 0.4320 +10384 100507436 0.4430 +10385 11119 0.5850 +10385 11120 0.6810 +10385 132949 0.4840 +10385 143662 0.5360 +10388 10734 0.8550 +10388 10735 0.5700 +10388 11083 0.5070 +10388 11202 0.4890 +10388 23224 0.5150 +10388 23345 0.5230 +10388 23353 0.5540 +10388 23626 0.5850 +10388 25777 0.5140 +10388 25913 0.5080 +10388 26277 0.4990 +10388 27127 0.8000 +10388 50511 0.9980 +10388 54145 0.4990 +10388 54386 0.4990 +10388 55766 0.5010 +10388 56158 0.9000 +10388 56159 0.9610 +10388 63939 0.4300 +10388 64779 0.4400 +10388 84072 0.7540 +10388 85236 0.4990 +10388 93426 0.9010 +10388 94239 0.5010 +10388 128312 0.4990 +10388 150280 0.7700 +10388 150365 0.4730 +10388 166348 0.4060 +10388 219770 0.4280 +10388 254528 0.4490 +10388 255626 0.5090 +10388 256126 0.9040 +10388 317761 0.5440 +10388 339834 0.4320 +10388 346673 0.4180 +10388 374819 0.4500 +10388 474170 0.4550 +10388 474382 0.4990 +10388 642636 0.6110 +10388 644186 0.8930 +10388 645369 0.4610 +10388 101928601 0.4430 +10389 10742 0.4550 +10389 11222 0.7690 +10389 11335 0.4760 +10389 22823 0.5250 +10389 23429 0.5980 +10389 23466 0.9690 +10389 23492 0.9580 +10389 23512 0.9540 +10389 26013 0.5920 +10389 26147 0.5350 +10389 29947 0.4090 +10389 50511 0.5800 +10389 51132 0.4600 +10389 54457 0.4090 +10389 54799 0.5710 +10389 55252 0.6760 +10389 55766 0.9000 +10389 56157 0.4110 +10389 57332 0.9760 +10389 63898 0.4140 +10389 80012 0.9150 +10389 80071 0.4990 +10389 80816 0.5530 +10389 83746 0.6000 +10389 84072 0.6210 +10389 84108 0.9650 +10389 84333 0.9320 +10389 84733 0.9620 +10389 84759 0.9660 +10389 85235 0.9000 +10389 114826 0.4210 +10389 121536 0.9140 +10389 132625 0.6410 +10389 143689 0.4300 +10389 146198 0.4520 +10389 150280 0.6320 +10389 171023 0.9020 +10389 317772 0.9000 +10389 404281 0.5950 +10389 723790 0.9000 +10389 100170841 0.4670 +10389 100532731 0.7890 +10390 10400 0.9760 +10390 10423 0.7930 +10390 10554 0.4870 +10390 10602 0.4140 +10390 10890 0.6510 +10390 11145 0.9180 +10390 22794 0.4020 +10390 23175 0.9420 +10390 23646 0.9190 +10390 23761 0.9720 +10390 26279 0.6500 +10390 30814 0.6500 +10390 50487 0.7060 +10390 51028 0.4390 +10390 51586 0.4170 +10390 54947 0.9520 +10390 55224 0.6500 +10390 55349 0.8540 +10390 55500 0.6170 +10390 55610 0.4540 +10390 56261 0.5310 +10390 56994 0.9050 +10390 57678 0.4030 +10390 64418 0.5300 +10390 64600 0.6500 +10390 64900 0.9330 +10390 79888 0.9420 +10390 81490 0.9660 +10390 81579 0.7230 +10390 84513 0.9190 +10390 84647 0.6540 +10390 84649 0.4080 +10390 84803 0.4080 +10390 85465 0.9260 +10390 116238 0.5020 +10390 122618 0.9130 +10390 123745 0.6910 +10390 129642 0.9430 +10390 132001 0.5080 +10390 132949 0.4520 +10390 139189 0.6540 +10390 150763 0.4220 +10390 151056 0.7150 +10390 153396 0.4300 +10390 154141 0.9400 +10390 160851 0.6570 +10390 196051 0.9190 +10390 254531 0.9290 +10390 255189 0.6670 +10390 283748 0.6920 +10390 387521 0.9110 +10390 387522 0.9040 +10390 391013 0.6540 +10390 100137049 0.6610 +10391 22801 0.8390 +10391 55312 0.4300 +10391 55964 0.4930 +10391 115557 0.5210 +10391 200895 0.4500 +10392 10454 0.8240 +10392 10562 0.5200 +10392 10910 0.9730 +10392 11005 0.4440 +10392 11345 0.5190 +10392 22861 0.7750 +10392 22900 0.4780 +10392 23118 0.6730 +10392 23586 0.7850 +10392 23643 0.5290 +10392 29108 0.8210 +10392 29110 0.4790 +10392 29775 0.4950 +10392 50856 0.4060 +10392 51131 0.5420 +10392 51135 0.6550 +10392 51284 0.6420 +10392 51296 0.4190 +10392 51311 0.5960 +10392 51752 0.4750 +10392 54106 0.6690 +10392 55054 0.9990 +10392 55062 0.4150 +10392 56169 0.4450 +10392 57506 0.7100 +10392 58484 0.7460 +10392 60673 0.4090 +10392 64127 0.9750 +10392 64135 0.6440 +10392 64170 0.7950 +10392 64581 0.5290 +10392 79092 0.4790 +10392 79132 0.6290 +10392 79792 0.4970 +10392 80013 0.6050 +10392 80216 0.5590 +10392 80332 0.4140 +10392 81793 0.5080 +10392 83737 0.5030 +10392 84166 0.4470 +10392 84433 0.5170 +10392 84674 0.8890 +10392 91662 0.6340 +10392 92610 0.4260 +10392 93978 0.4120 +10392 114548 0.6500 +10392 114609 0.5570 +10392 121260 0.4900 +10392 130120 0.4160 +10392 147945 0.5410 +10392 199713 0.5720 +10392 257397 0.6470 +10392 284110 0.5910 +10392 345611 0.5930 +10392 494513 0.6340 +10392 100289462 0.5760 +10393 10459 0.6570 +10393 10744 0.8610 +10393 10919 0.5220 +10393 11020 0.5860 +10393 11021 0.5610 +10393 11065 0.9930 +10393 23113 0.8670 +10393 23384 0.4060 +10393 23492 0.7200 +10393 23548 0.4280 +10393 23625 0.6610 +10393 25847 0.9990 +10393 25906 0.9990 +10393 26271 0.9860 +10393 27101 0.5250 +10393 27152 0.5450 +10393 27338 0.9960 +10393 29882 0.9990 +10393 29945 0.9990 +10393 51053 0.4330 +10393 51239 0.5610 +10393 51343 0.9970 +10393 51433 0.9990 +10393 51434 0.9990 +10393 51529 0.9990 +10393 54880 0.9010 +10393 55153 0.4350 +10393 57332 0.9000 +10393 57505 0.6280 +10393 57587 0.6450 +10393 64399 0.4660 +10393 64682 0.9990 +10393 79184 0.9050 +10393 79813 0.5240 +10393 80012 0.9000 +10393 80790 0.4120 +10393 81620 0.4890 +10393 81624 0.4190 +10393 81930 0.4880 +10393 83860 0.6030 +10393 84108 0.9080 +10393 84333 0.5430 +10393 84446 0.5050 +10393 84640 0.4060 +10393 84733 0.9000 +10393 84759 0.5490 +10393 85417 0.7530 +10393 92906 0.4570 +10393 119504 0.9990 +10393 140459 0.5450 +10393 145553 0.4850 +10393 166752 0.4760 +10393 166979 0.7800 +10393 246184 0.9990 +10393 286151 0.6550 +10393 375061 0.6610 +10393 388272 0.4980 +10393 388531 0.6100 +10394 64777 0.4410 +10394 64795 0.5440 +10395 23286 0.5300 +10395 23371 0.9920 +10395 23433 0.4850 +10395 23607 0.4280 +10395 30011 0.4030 +10395 54461 0.4900 +10395 54518 0.5990 +10395 56910 0.4370 +10395 57509 0.4100 +10395 59274 0.5510 +10395 64283 0.4370 +10395 64759 0.6460 +10395 80765 0.4260 +10395 83660 0.8210 +10395 84951 0.6210 +10396 10938 0.5190 +10396 11020 0.4140 +10396 23120 0.9170 +10396 23200 0.6350 +10396 23250 0.9220 +10396 23439 0.4160 +10396 51761 0.5680 +10396 55041 0.5410 +10396 55754 0.9990 +10396 57194 0.9170 +10396 57198 0.5960 +10396 57205 0.9180 +10396 79895 0.6050 +10396 126549 0.4230 +10396 148229 0.6050 +10396 161291 0.9160 +10396 286410 0.6600 +10396 389207 0.9270 +10397 11332 0.4530 +10397 23012 0.8940 +10397 23411 0.4830 +10397 23621 0.4270 +10397 23678 0.5670 +10397 26986 0.5850 +10397 27037 0.6630 +10397 30001 0.4270 +10397 51129 0.4250 +10397 51373 0.4190 +10397 54332 0.5270 +10397 54541 0.5020 +10397 56242 0.4080 +10397 57447 0.8000 +10397 79628 0.5990 +10397 81846 0.5080 +10397 83733 0.6460 +10397 85414 0.5660 +10397 121512 0.5070 +10397 253260 0.5310 +10397 353322 0.4250 +10398 10580 0.6040 +10398 10627 0.9610 +10398 11113 0.6700 +10398 22989 0.7600 +10398 25802 0.8440 +10398 29114 0.6420 +10398 29895 0.7350 +10398 54443 0.5680 +10398 54567 0.4430 +10398 54776 0.9890 +10398 58498 0.6830 +10398 79763 0.4190 +10398 79784 0.9460 +10398 84033 0.4820 +10398 84700 0.7100 +10398 85366 0.9880 +10398 91807 0.9610 +10398 93408 0.6280 +10398 93649 0.4990 +10398 94274 0.6190 +10398 103910 0.9600 +10398 120892 0.4590 +10398 140465 0.9760 +10398 140597 0.4190 +10398 200504 0.4090 +10398 340156 0.9250 +10398 399687 0.7300 +10399 10465 0.4150 +10399 10471 0.4330 +10399 10473 0.7010 +10399 10476 0.4270 +10399 10479 0.7330 +10399 10480 0.9790 +10399 10492 0.7910 +10399 10523 0.4960 +10399 10526 0.5160 +10399 10527 0.5440 +10399 10537 0.5210 +10399 10557 0.7000 +10399 10574 0.7920 +10399 10575 0.7680 +10399 10576 0.7960 +10399 10616 0.6210 +10399 10643 0.4830 +10399 10664 0.4540 +10399 10694 0.7530 +10399 10726 0.4560 +10399 10750 0.4430 +10399 10767 0.9310 +10399 10768 0.4570 +10399 10856 0.4750 +10399 10952 0.9000 +10399 10980 0.4350 +10399 10985 0.9120 +10399 10987 0.5330 +10399 10988 0.5050 +10399 11047 0.4150 +10399 11060 0.5260 +10399 11103 0.4350 +10399 11222 0.8460 +10399 11224 0.9990 +10399 11315 0.6360 +10399 11331 0.4240 +10399 22863 0.7530 +10399 22916 0.6240 +10399 22927 0.9650 +10399 22948 0.7380 +10399 23054 0.5030 +10399 23148 0.6900 +10399 23185 0.8790 +10399 23204 0.9370 +10399 23315 0.7390 +10399 23367 0.6680 +10399 23405 0.4400 +10399 23435 0.8010 +10399 23476 0.5320 +10399 23480 0.8600 +10399 23517 0.4910 +10399 23521 0.9990 +10399 23609 0.4890 +10399 23640 0.6650 +10399 25789 0.4020 +10399 25873 0.9990 +10399 25914 0.5030 +10399 25929 0.4070 +10399 26046 0.4700 +10399 26121 0.5930 +10399 26135 0.9980 +10399 26251 0.4460 +10399 26354 0.4300 +10399 26986 0.8440 +10399 27000 0.5450 +10399 27012 0.4460 +10399 27102 0.4080 +10399 27128 0.5970 +10399 27161 0.4740 +10399 27185 0.5050 +10399 27316 0.4890 +10399 27335 0.9630 +10399 27338 0.4500 +10399 27430 0.4810 +10399 28985 0.8410 +10399 28987 0.9390 +10399 28991 0.4840 +10399 28998 0.8620 +10399 29088 0.5560 +10399 29093 0.7660 +10399 29127 0.5130 +10399 29789 0.6310 +10399 29889 0.4450 +10399 29927 0.8670 +10399 29978 0.4930 +10399 29979 0.5080 +10399 29997 0.5090 +10399 30849 0.5930 +10399 50613 0.4460 +10399 50814 0.4680 +10399 51052 0.4260 +10399 51065 0.9940 +10399 51069 0.8250 +10399 51073 0.8430 +10399 51081 0.8490 +10399 51116 0.8110 +10399 51121 0.9970 +10399 51149 0.8820 +10399 51154 0.9390 +10399 51187 0.5530 +10399 51319 0.8990 +10399 51386 0.9600 +10399 51400 0.4340 +10399 51593 0.5280 +10399 51806 0.5910 +10399 53635 0.4900 +10399 53918 0.9590 +10399 54331 0.5250 +10399 54464 0.9060 +10399 54505 0.6720 +10399 54542 0.5100 +10399 54596 0.4660 +10399 54948 0.6610 +10399 55062 0.5590 +10399 55072 0.4210 +10399 55143 0.4470 +10399 55173 0.9180 +10399 55272 0.9140 +10399 55294 0.7020 +10399 55316 0.7920 +10399 55324 0.4860 +10399 55327 0.4320 +10399 55512 0.7190 +10399 55601 0.4450 +10399 55611 0.4110 +10399 55646 0.8480 +10399 55651 0.7550 +10399 55720 0.9390 +10399 55781 0.9920 +10399 55854 0.8290 +10399 56479 0.4460 +10399 56648 0.9350 +10399 56893 0.4660 +10399 56902 0.9260 +10399 57085 0.6670 +10399 57129 0.5510 +10399 57470 0.8620 +10399 57506 0.4180 +10399 60678 0.9110 +10399 63931 0.7690 +10399 64285 0.4180 +10399 64374 0.6610 +10399 64960 0.8310 +10399 64963 0.9250 +10399 64969 0.9350 +10399 65003 0.6990 +10399 65008 0.8380 +10399 65121 0.5470 +10399 65122 0.5470 +10399 79048 0.8250 +10399 79571 0.5060 +10399 79590 0.8360 +10399 79612 0.4100 +10399 79631 0.7270 +10399 79968 0.5680 +10399 80146 0.4710 +10399 80155 0.4510 +10399 80263 0.5600 +10399 80270 0.4670 +10399 80349 0.8720 +10399 81858 0.4290 +10399 83706 0.5660 +10399 83732 0.8470 +10399 83743 0.4240 +10399 83939 0.6700 +10399 84285 0.8320 +10399 84292 0.5620 +10399 84679 0.7120 +10399 84844 0.4050 +10399 84946 0.9940 +10399 84950 0.4020 +10399 84993 0.4780 +10399 85364 0.4390 +10399 85377 0.5490 +10399 85476 0.8190 +10399 89796 0.4450 +10399 90850 0.8790 +10399 91408 0.4040 +10399 91860 0.5580 +10399 92196 0.7950 +10399 93107 0.4460 +10399 93517 0.4670 +10399 93550 0.5490 +10399 112399 0.4150 +10399 112483 0.6860 +10399 113251 0.9480 +10399 114803 0.4330 +10399 115098 0.9160 +10399 116832 0.9460 +10399 120892 0.5270 +10399 124454 0.6060 +10399 126402 0.8400 +10399 131076 0.4830 +10399 140032 0.9800 +10399 140801 0.9990 +10399 143244 0.9390 +10399 143630 0.4460 +10399 149041 0.5350 +10399 152518 0.4290 +10399 163688 0.5580 +10399 164153 0.5210 +10399 169522 0.4460 +10399 170850 0.4460 +10399 200916 0.9800 +10399 201595 0.4300 +10399 252983 0.4180 +10399 253260 0.4020 +10399 253314 0.4180 +10399 254268 0.8490 +10399 255308 0.5620 +10399 283518 0.4460 +10399 285195 0.8540 +10399 285855 0.9760 +10399 342538 0.6460 +10399 343035 0.4230 +10399 343068 0.5470 +10399 343070 0.5470 +10399 347487 0.8930 +10399 387129 0.8090 +10399 390999 0.5470 +10399 391002 0.5470 +10399 400735 0.5470 +10399 400736 0.5470 +10399 440275 0.5840 +10399 440560 0.5470 +10399 440561 0.5470 +10399 441873 0.5470 +10399 641776 0.6470 +10399 642489 0.5730 +10399 643909 0.6470 +10399 645051 0.6260 +10399 645073 0.6260 +10399 645359 0.5470 +10399 653619 0.5470 +10399 728524 0.6470 +10399 728689 0.8710 +10399 729396 0.6260 +10399 729422 0.6260 +10399 729428 0.6260 +10399 729431 0.6260 +10399 729442 0.6260 +10399 729447 0.6260 +10399 729528 0.5470 +10399 100008586 0.6260 +10399 100132399 0.6260 +10399 100287482 0.7990 +10399 100505478 0.8070 +10399 100526842 0.9940 +10399 100529097 0.9330 +10399 100529239 0.9930 +10399 100996746 0.6470 +10399 101929983 0.5470 +10399 102724473 0.6260 +10399 105180390 0.6470 +10399 105180391 0.6470 +10400 10423 0.6460 +10400 10841 0.4820 +10400 10998 0.4700 +10400 11145 0.9010 +10400 23646 0.9100 +10400 23659 0.4120 +10400 23761 0.9780 +10400 26279 0.6500 +10400 27232 0.6410 +10400 30814 0.6510 +10400 50487 0.6500 +10400 51085 0.4220 +10400 51477 0.4040 +10400 54947 0.9290 +10400 55160 0.4090 +10400 55177 0.4160 +10400 55196 0.4250 +10400 55224 0.5370 +10400 55349 0.9330 +10400 55500 0.4990 +10400 56994 0.9740 +10400 57412 0.4210 +10400 64600 0.6500 +10400 79888 0.9290 +10400 80339 0.4210 +10400 81490 0.9560 +10400 81579 0.6740 +10400 84647 0.6970 +10400 84649 0.4800 +10400 85465 0.9630 +10400 122618 0.9060 +10400 123745 0.6500 +10400 125061 0.4070 +10400 129642 0.9360 +10400 132001 0.4480 +10400 151056 0.6770 +10400 154141 0.9180 +10400 158833 0.4330 +10400 254531 0.9240 +10400 255189 0.6800 +10400 283748 0.6500 +10400 391013 0.6540 +10400 100137049 0.6500 +10401 10499 0.5270 +10401 10919 0.4360 +10401 22927 0.6260 +10401 22954 0.6630 +10401 23085 0.4370 +10401 23118 0.4580 +10401 23176 0.4160 +10401 23510 0.5850 +10401 26036 0.4450 +10401 26054 0.5710 +10401 26059 0.4100 +10401 26135 0.5220 +10401 26168 0.5500 +10401 27246 0.4560 +10401 29843 0.8370 +10401 55143 0.4220 +10401 56852 0.5620 +10401 57337 0.5490 +10401 59343 0.4110 +10401 64750 0.6860 +10401 81603 0.7640 +10401 84901 0.4310 +10401 116447 0.4110 +10401 199746 0.4650 +10401 205564 0.5710 +10401 286053 0.7050 +10401 387082 0.7090 +10401 404672 0.4130 +10402 10678 0.9420 +10402 10690 0.9420 +10402 10825 0.4370 +10402 27090 0.4160 +10402 29094 0.4060 +10402 56913 0.4300 +10402 79369 0.9090 +10402 84002 0.4700 +10402 124872 0.4180 +10402 129807 0.4850 +10402 170384 0.4670 +10402 285203 0.4060 +10402 338596 0.6670 +10403 10426 0.5060 +10403 10460 0.7540 +10403 10592 0.8990 +10403 10615 0.8870 +10403 10635 0.5250 +10403 10726 0.6030 +10403 10733 0.7120 +10403 10744 0.6670 +10403 11004 0.9340 +10403 11065 0.8700 +10403 11113 0.4490 +10403 11130 0.9910 +10403 11169 0.5290 +10403 11243 0.8770 +10403 11339 0.7120 +10403 22974 0.7880 +10403 23137 0.4040 +10403 23310 0.5770 +10403 23397 0.7770 +10403 23421 0.4730 +10403 23594 0.4700 +10403 24137 0.8210 +10403 25936 0.9650 +10403 26271 0.6300 +10403 26586 0.7430 +10403 27034 0.4540 +10403 27127 0.5570 +10403 27152 0.4170 +10403 27436 0.5640 +10403 28981 0.5190 +10403 29028 0.5020 +10403 29089 0.4820 +10403 29127 0.7010 +10403 29128 0.4130 +10403 29893 0.4010 +10403 29980 0.4330 +10403 51019 0.6390 +10403 51203 0.9180 +10403 51343 0.5050 +10403 51490 0.4210 +10403 51512 0.5110 +10403 51514 0.6540 +10403 51659 0.4120 +10403 54069 0.5590 +10403 54443 0.6120 +10403 54478 0.4380 +10403 54535 0.4100 +10403 54765 0.5410 +10403 54801 0.8620 +10403 54821 0.5880 +10403 54892 0.8100 +10403 54908 0.8780 +10403 55010 0.5630 +10403 55055 0.8460 +10403 55063 0.7190 +10403 55143 0.9070 +10403 55165 0.9140 +10403 55166 0.6140 +10403 55215 0.5950 +10403 55247 0.5090 +10403 55320 0.6150 +10403 55355 0.8660 +10403 55388 0.5390 +10403 55605 0.4330 +10403 55635 0.6200 +10403 55723 0.4870 +10403 55789 0.5380 +10403 55835 0.4580 +10403 55839 0.8520 +10403 56992 0.9000 +10403 57082 0.9950 +10403 57122 0.4430 +10403 57405 0.9990 +10403 57576 0.4440 +10403 57650 0.4400 +10403 63967 0.4980 +10403 64105 0.7330 +10403 64151 0.9490 +10403 64946 0.8970 +10403 79003 0.9910 +10403 79019 0.6490 +10403 79172 0.6440 +10403 79441 0.4900 +10403 79677 0.4360 +10403 79682 0.8970 +10403 79733 0.6040 +10403 79801 0.5980 +10403 79823 0.7350 +10403 79866 0.5360 +10403 79915 0.4320 +10403 79935 0.4150 +10403 79980 0.9870 +10403 80152 0.7720 +10403 80323 0.4200 +10403 81620 0.8270 +10403 81624 0.5200 +10403 81930 0.8530 +10403 83461 0.8220 +10403 83540 0.9990 +10403 83903 0.6020 +10403 84057 0.7800 +10403 84135 0.4150 +10403 84318 0.5150 +10403 84515 0.4320 +10403 84643 0.6770 +10403 84930 0.4770 +10403 85378 0.5930 +10403 89839 0.5260 +10403 90381 0.4750 +10403 90417 0.6860 +10403 91272 0.7770 +10403 91687 0.4610 +10403 93323 0.8380 +10403 112869 0.5890 +10403 113130 0.6840 +10403 120227 0.5810 +10403 146909 0.5840 +10403 147841 0.9990 +10403 150468 0.4650 +10403 151246 0.6690 +10403 151648 0.9320 +10403 152098 0.7190 +10403 157313 0.6670 +10403 157570 0.6610 +10403 163786 0.4020 +10403 166979 0.6870 +10403 200081 0.6260 +10403 220134 0.9790 +10403 221150 0.9430 +10403 259266 0.9690 +10403 259282 0.5430 +10403 284257 0.5550 +10403 284439 0.4140 +10403 285180 0.6080 +10403 285643 0.5510 +10403 347240 0.4020 +10403 347733 0.9250 +10403 348235 0.8900 +10403 378708 0.7210 +10403 387103 0.7670 +10403 401541 0.4980 +10403 402569 0.4040 +10403 440093 0.5780 +10403 440686 0.5780 +10403 554282 0.4230 +10403 653604 0.5790 +10403 653820 0.4290 +10403 728833 0.4160 +10403 729533 0.4230 +10403 100861540 0.6700 +10404 23062 0.4250 +10404 27297 0.4450 +10404 80059 0.5250 +10404 92140 0.5830 +10406 10551 0.6190 +10406 11098 0.5470 +10406 29062 0.4300 +10406 78987 0.4080 +10406 81577 0.4540 +10406 94025 0.6460 +10406 124997 0.4260 +10406 128488 0.4050 +10406 140686 0.5760 +10406 140832 0.4730 +10406 140870 0.4410 +10406 157310 0.5080 +10406 164237 0.5250 +10406 167681 0.6050 +10406 259239 0.4880 +10406 259240 0.4980 +10407 55894 0.4740 +10407 81623 0.7410 +10407 83639 0.4240 +10407 117285 0.5330 +10407 118461 0.4340 +10407 140596 0.7710 +10407 140880 0.4460 +10407 245908 0.8310 +10407 245909 0.8480 +10407 245910 0.8240 +10407 245911 0.5910 +10407 245927 0.5530 +10407 245932 0.5230 +10407 245934 0.4780 +10407 245940 0.4410 +10407 389151 0.5010 +10407 389152 0.5230 +10407 392197 0.4180 +10407 392399 0.4120 +10407 414325 0.8230 +10407 503614 0.4640 +10407 503618 0.5220 +10407 503841 0.8360 +10407 645402 0.4470 +10407 653333 0.4470 +10407 728358 0.4090 +10407 729627 0.5560 +10407 100131608 0.5990 +10407 100133251 0.5990 +10409 11075 0.4350 +10409 26049 0.4020 +10409 26092 0.4010 +10409 51806 0.7360 +10409 54443 0.4290 +10409 54509 0.5680 +10409 65108 0.5770 +10409 65124 0.4110 +10409 81839 0.4460 +10409 84154 0.5730 +10409 91749 0.4970 +10409 91860 0.7440 +10409 112495 0.5460 +10409 163688 0.7450 +10409 284427 0.4890 +10410 10437 0.5160 +10410 10561 0.8440 +10410 10581 0.8050 +10410 10964 0.8460 +10410 11274 0.6730 +10410 23385 0.4760 +10410 23586 0.6750 +10410 24138 0.5660 +10410 25939 0.8080 +10410 30816 0.4990 +10410 51191 0.6050 +10410 51246 0.4170 +10410 51284 0.4120 +10410 54739 0.7620 +10410 55337 0.4160 +10410 55601 0.5100 +10410 56829 0.4030 +10410 57142 0.4590 +10410 57506 0.4460 +10410 59272 0.4880 +10410 60489 0.4080 +10410 64108 0.6460 +10410 64135 0.7570 +10410 79132 0.4750 +10410 80162 0.4300 +10410 83666 0.6410 +10410 85363 0.4490 +10410 85441 0.7330 +10410 91543 0.7440 +10410 94240 0.6100 +10410 115361 0.4020 +10410 115362 0.5190 +10410 219285 0.4400 +10410 282618 0.4030 +10411 11069 0.9110 +10411 11214 0.4610 +10411 22800 0.9110 +10411 22808 0.4200 +10411 23108 0.6040 +10411 23173 0.4290 +10411 26499 0.4310 +10411 51655 0.6720 +10411 51806 0.5700 +10411 54518 0.5050 +10411 54922 0.4080 +10411 55811 0.5440 +10411 57521 0.4720 +10411 83593 0.9270 +10411 91860 0.5730 +10411 151306 0.4010 +10411 163688 0.5700 +10411 196883 0.9390 +10411 221833 0.4210 +10412 10438 0.5570 +10412 10473 0.7200 +10412 10480 0.4190 +10412 10482 0.4440 +10412 10521 0.5800 +10412 10527 0.4400 +10412 10528 0.7550 +10412 10548 0.5280 +10412 10557 0.7540 +10412 10607 0.4040 +10412 10813 0.4340 +10412 10969 0.9970 +10412 10988 0.7320 +10412 11056 0.7010 +10412 11103 0.6420 +10412 11137 0.8320 +10412 11218 0.4330 +10412 11222 0.9060 +10412 11224 0.9920 +10412 11264 0.4720 +10412 11266 0.4760 +10412 11269 0.5190 +10412 11325 0.4080 +10412 22984 0.6840 +10412 23016 0.4070 +10412 23029 0.8840 +10412 23054 0.6050 +10412 23076 0.9590 +10412 23160 0.4260 +10412 23173 0.7110 +10412 23195 0.9340 +10412 23204 0.5610 +10412 23212 0.9790 +10412 23223 0.6940 +10412 23246 0.9950 +10412 23481 0.9990 +10412 23517 0.7920 +10412 23521 0.8730 +10412 23560 0.9990 +10412 23640 0.7860 +10412 24140 0.8890 +10412 25873 0.9270 +10412 25983 0.6300 +10412 26099 0.4940 +10412 26135 0.4320 +10412 26155 0.9930 +10412 26156 0.9850 +10412 26251 0.4460 +10412 26354 0.9690 +10412 26471 0.8730 +10412 26574 0.6840 +10412 26995 0.4880 +10412 27012 0.4460 +10412 27292 0.7740 +10412 28987 0.6480 +10412 28998 0.8580 +10412 29081 0.4090 +10412 29088 0.6040 +10412 29093 0.9420 +10412 29889 0.9990 +10412 29960 0.7680 +10412 29997 0.9540 +10412 30836 0.6000 +10412 51018 0.8780 +10412 51042 0.9650 +10412 51068 0.9800 +10412 51069 0.9040 +10412 51073 0.8240 +10412 51077 0.8200 +10412 51081 0.8900 +10412 51082 0.4040 +10412 51096 0.4080 +10412 51106 0.4460 +10412 51116 0.8150 +10412 51118 0.4600 +10412 51119 0.7410 +10412 51121 0.9660 +10412 51149 0.9220 +10412 51154 0.9990 +10412 51187 0.9990 +10412 51202 0.6250 +10412 51319 0.7490 +10412 51388 0.9970 +10412 51575 0.4150 +10412 51602 0.8600 +10412 51605 0.6410 +10412 54433 0.4490 +10412 54463 0.5300 +10412 54475 0.9920 +10412 54482 0.4210 +10412 54552 0.9690 +10412 54555 0.6190 +10412 54606 0.8110 +10412 54663 0.9970 +10412 54865 0.5740 +10412 54881 0.6300 +10412 54888 0.6470 +10412 54948 0.8200 +10412 54984 0.4050 +10412 55003 0.8300 +10412 55006 0.6190 +10412 55027 0.4390 +10412 55037 0.4130 +10412 55131 0.5560 +10412 55153 0.9840 +10412 55173 0.9270 +10412 55226 0.4670 +10412 55272 0.9430 +10412 55299 0.9870 +10412 55316 0.8040 +10412 55319 0.6000 +10412 55341 0.8910 +10412 55591 0.6920 +10412 55646 0.4850 +10412 55651 0.7860 +10412 55695 0.5900 +10412 55720 0.8030 +10412 55759 0.9970 +10412 55781 0.5380 +10412 55794 0.6300 +10412 55813 0.5510 +10412 56341 0.4860 +10412 56342 0.7520 +10412 56479 0.4460 +10412 56648 0.6540 +10412 56829 0.4940 +10412 56902 0.6950 +10412 56965 0.6130 +10412 57050 0.5100 +10412 57062 0.8150 +10412 57109 0.5320 +10412 57418 0.8780 +10412 57696 0.9090 +10412 63899 0.6350 +10412 63931 0.8230 +10412 64216 0.6060 +10412 64318 0.9470 +10412 64374 0.7880 +10412 64425 0.4200 +10412 64794 0.8490 +10412 64960 0.9240 +10412 64963 0.8470 +10412 64965 0.4360 +10412 64969 0.9030 +10412 65003 0.7290 +10412 65008 0.7240 +10412 65121 0.4690 +10412 65122 0.4690 +10412 79009 0.5970 +10412 79029 0.4990 +10412 79039 0.6550 +10412 79080 0.7690 +10412 79137 0.4580 +10412 79159 0.7930 +10412 79571 0.6090 +10412 79590 0.8560 +10412 79668 0.6140 +10412 79730 0.5840 +10412 79954 0.5650 +10412 80135 0.9910 +10412 81887 0.5790 +10412 83475 0.6350 +10412 83479 0.5220 +10412 83732 0.5010 +10412 83743 0.5710 +10412 84154 0.9990 +10412 84172 0.4830 +10412 84273 0.7400 +10412 84294 0.4940 +10412 84365 0.9960 +10412 84549 0.9930 +10412 84946 0.7580 +10412 90121 0.6130 +10412 90353 0.4030 +10412 90441 0.7850 +10412 91646 0.5190 +10412 92170 0.7060 +10412 92856 0.6800 +10412 93107 0.4460 +10412 93973 0.4170 +10412 115708 0.6980 +10412 116832 0.8100 +10412 116966 0.5210 +10412 117246 0.9970 +10412 123920 0.4210 +10412 124454 0.5310 +10412 126402 0.8810 +10412 134265 0.4010 +10412 134288 0.4200 +10412 140032 0.8910 +10412 140801 0.8230 +10412 142940 0.5150 +10412 143244 0.6350 +10412 146212 0.9240 +10412 153443 0.5810 +10412 161582 0.4470 +10412 162427 0.4570 +10412 166378 0.4960 +10412 169522 0.4460 +10412 170850 0.4460 +10412 200916 0.8470 +10412 205327 0.5300 +10412 221078 0.9090 +10412 254268 0.7780 +10412 283518 0.4460 +10412 285855 0.9190 +10412 317781 0.5270 +10412 343068 0.4690 +10412 343070 0.4690 +10412 344758 0.5190 +10412 347487 0.7790 +10412 387129 0.9140 +10412 387338 0.6380 +10412 389421 0.4290 +10412 390999 0.4690 +10412 391002 0.4690 +10412 400735 0.4690 +10412 400736 0.4690 +10412 440560 0.4690 +10412 440561 0.4690 +10412 441873 0.4690 +10412 641776 0.5570 +10412 643909 0.5570 +10412 645051 0.6110 +10412 645073 0.6110 +10412 645359 0.4690 +10412 653619 0.4690 +10412 728524 0.5570 +10412 729396 0.6110 +10412 729422 0.6110 +10412 729428 0.6110 +10412 729431 0.6110 +10412 729442 0.6110 +10412 729447 0.6110 +10412 729528 0.4690 +10412 100008586 0.6110 +10412 100132399 0.6110 +10412 100287482 0.7790 +10412 100505478 0.9050 +10412 100526842 0.9370 +10412 100529097 0.8960 +10412 100996746 0.5570 +10412 101929983 0.4690 +10412 102724473 0.6110 +10412 105180390 0.5570 +10412 105180391 0.5570 +10413 10521 0.6180 +10413 10765 0.4290 +10413 10856 0.4450 +10413 10971 0.9820 +10413 11059 0.5930 +10413 11065 0.4370 +10413 11091 0.4590 +10413 11099 0.6700 +10413 11103 0.4030 +10413 11186 0.6200 +10413 11228 0.5610 +10413 23054 0.4900 +10413 23261 0.5400 +10413 23286 0.5910 +10413 23291 0.9290 +10413 23368 0.4260 +10413 23411 0.4640 +10413 23476 0.6910 +10413 23513 0.5030 +10413 23558 0.9700 +10413 23559 0.4320 +10413 25833 0.5910 +10413 25925 0.5250 +10413 25937 0.9560 +10413 26043 0.4290 +10413 26524 0.9990 +10413 26986 0.4070 +10413 27063 0.7220 +10413 27113 0.4180 +10413 27324 0.4880 +10413 29110 0.4100 +10413 29126 0.4070 +10413 29978 0.4080 +10413 51176 0.8780 +10413 51208 0.6360 +10413 51341 0.4120 +10413 51421 0.9820 +10413 51442 0.7280 +10413 54541 0.4210 +10413 55233 0.8200 +10413 55294 0.6590 +10413 55327 0.5980 +10413 55740 0.4610 +10413 55844 0.9030 +10413 56288 0.4450 +10413 57551 0.4670 +10413 57561 0.6660 +10413 57706 0.5440 +10413 59272 0.4030 +10413 60485 0.9320 +10413 63970 0.4460 +10413 64112 0.6030 +10413 64398 0.7130 +10413 65998 0.6180 +10413 79056 0.6220 +10413 79607 0.5900 +10413 79633 0.4680 +10413 79833 0.4120 +10413 79923 0.4570 +10413 80019 0.5290 +10413 83439 0.8290 +10413 83593 0.4940 +10413 83737 0.7030 +10413 84909 0.4790 +10413 84936 0.5990 +10413 84962 0.4710 +10413 85016 0.5970 +10413 90427 0.4090 +10413 92597 0.7860 +10413 92714 0.7130 +10413 93649 0.5510 +10413 116159 0.4930 +10413 122786 0.6800 +10413 126119 0.5100 +10413 126374 0.4230 +10413 154796 0.9980 +10413 154810 0.9630 +10413 245806 0.6780 +10413 317762 0.7580 +10413 344022 0.7520 +10413 389136 0.7980 +10413 440093 0.4160 +10413 440686 0.4160 +10413 653604 0.4200 +10417 11197 0.4030 +10417 22974 0.8170 +10417 83888 0.4610 +10418 10524 0.4030 +10418 22974 0.5640 +10418 23275 0.7780 +10418 23621 0.6280 +10418 23705 0.4300 +10418 54443 0.4040 +10418 54994 0.4570 +10418 64094 0.4240 +10418 64777 0.4220 +10418 64795 0.4590 +10418 115939 0.4080 +10418 128434 0.4250 +10418 144402 0.4200 +10418 145173 0.8810 +10418 147381 0.4260 +10418 151126 0.4050 +10418 152330 0.4430 +10418 284654 0.5240 +10419 10498 0.7710 +10419 10524 0.6030 +10419 10574 0.5020 +10419 10598 0.4680 +10419 10856 0.4220 +10419 10915 0.4430 +10419 10919 0.6470 +10419 10946 0.8430 +10419 10992 0.4590 +10419 11022 0.4540 +10419 11072 0.4430 +10419 11091 0.9070 +10419 11108 0.8610 +10419 11157 0.6110 +10419 11218 0.5370 +10419 11329 0.4200 +10419 11335 0.5430 +10419 22976 0.4240 +10419 23028 0.7270 +10419 23064 0.4190 +10419 23070 0.5600 +10419 23081 0.4430 +10419 23097 0.4110 +10419 23112 0.4670 +10419 23135 0.5300 +10419 23136 0.6100 +10419 23210 0.4690 +10419 23223 0.4710 +10419 23405 0.5610 +10419 23468 0.4750 +10419 23476 0.7450 +10419 23512 0.8100 +10419 23543 0.4320 +10419 25804 0.8720 +10419 25929 0.7170 +10419 25942 0.5650 +10419 26097 0.7270 +10419 26267 0.4460 +10419 26523 0.4600 +10419 27161 0.4780 +10419 27250 0.5730 +10419 28989 0.4370 +10419 29072 0.4440 +10419 29102 0.5060 +10419 29117 0.5180 +10419 29128 0.7330 +10419 30968 0.4040 +10419 50628 0.5760 +10419 50943 0.4700 +10419 51111 0.7030 +10419 51412 0.5480 +10419 51547 0.4060 +10419 51780 0.4420 +10419 54433 0.5050 +10419 54456 0.4170 +10419 54496 0.9790 +10419 54606 0.4630 +10419 54715 0.4400 +10419 54790 0.8130 +10419 54960 0.5300 +10419 55074 0.4580 +10419 55082 0.5900 +10419 55124 0.4440 +10419 55147 0.8040 +10419 55170 0.8830 +10419 55193 0.5590 +10419 55211 0.4080 +10419 55352 0.9890 +10419 55646 0.5670 +10419 55766 0.4310 +10419 55818 0.4480 +10419 55869 0.4070 +10419 56165 0.5450 +10419 56339 0.4980 +10419 56341 0.8340 +10419 56950 0.5610 +10419 57019 0.4200 +10419 57332 0.4530 +10419 57492 0.6770 +10419 57805 0.6890 +10419 58508 0.5800 +10419 64129 0.4650 +10419 64754 0.5260 +10419 65110 0.4200 +10419 79084 0.9990 +10419 79711 0.5440 +10419 79723 0.5460 +10419 79760 0.5180 +10419 79813 0.5130 +10419 79833 0.5170 +10419 79885 0.5250 +10419 79923 0.7100 +10419 80125 0.4440 +10419 80204 0.4160 +10419 80312 0.8870 +10419 80854 0.6200 +10419 81858 0.5880 +10419 83732 0.9960 +10419 83737 0.4860 +10419 84444 0.7640 +10419 84446 0.5170 +10419 84787 0.4480 +10419 85235 0.4310 +10419 90826 0.7590 +10419 91646 0.4580 +10419 91875 0.6220 +10419 94239 0.4320 +10419 121504 0.9180 +10419 133746 0.6400 +10419 134353 0.4180 +10419 134492 0.5700 +10419 143689 0.6660 +10419 169792 0.5500 +10419 192669 0.4660 +10419 192670 0.4490 +10419 196528 0.5610 +10419 200424 0.8820 +10419 221400 0.5270 +10419 221613 0.4310 +10419 221895 0.4260 +10419 284695 0.4830 +10419 345630 0.5000 +10419 387893 0.5450 +10419 440093 0.7010 +10419 440686 0.7010 +10419 474382 0.4390 +10419 494551 0.6270 +10419 554313 0.9190 +10419 653604 0.8470 +10419 100129583 0.4120 +10420 10971 0.4480 +10420 22859 0.5140 +10420 23266 0.5140 +10420 23284 0.5140 +10420 54434 0.4550 +10420 54961 0.4910 +10420 57026 0.4800 +10420 85464 0.4290 +10420 114034 0.4760 +10420 387718 0.5720 +10421 10594 0.9820 +10421 10713 0.8030 +10421 10869 0.4420 +10421 10907 0.9970 +10421 10946 0.4250 +10421 10973 0.5480 +10421 11017 0.4010 +10421 11338 0.4130 +10421 22938 0.5170 +10421 23020 0.9980 +10421 23192 0.7840 +10421 23450 0.4650 +10421 23476 0.5230 +10421 24144 0.6400 +10421 24148 0.9940 +10421 25980 0.9670 +10421 26099 0.4420 +10421 26121 0.7780 +10421 51006 0.5300 +10421 51362 0.4260 +10421 51729 0.6020 +10421 51759 0.5940 +10421 54957 0.6420 +10421 55234 0.7680 +10421 55588 0.4360 +10421 55837 0.8530 +10421 57461 0.4250 +10421 57805 0.4950 +10421 57819 0.4500 +10421 60626 0.5380 +10421 79171 0.4260 +10421 79705 0.4310 +10421 81605 0.5610 +10421 84129 0.6220 +10421 84271 0.4450 +10421 94104 0.5140 +10421 121340 0.4840 +10421 122830 0.4210 +10421 147965 0.4180 +10421 164045 0.5440 +10421 100507003 0.4440 +10422 10526 0.7330 +10422 11009 0.4180 +10422 11149 0.5970 +10422 11344 0.6100 +10422 23203 0.4670 +10422 23321 0.5200 +10422 29927 0.4490 +10422 50939 0.4030 +10422 51667 0.4630 +10422 55122 0.4500 +10422 55684 0.4130 +10422 55813 0.6190 +10422 57124 0.8750 +10422 60528 0.4460 +10422 63891 0.9990 +10422 83546 0.4240 +10422 83707 0.4390 +10422 84196 0.6250 +10422 84993 0.5020 +10422 91543 0.4530 +10422 124220 0.4040 +10422 157922 0.7100 +10422 158067 0.4340 +10422 285848 0.4510 +10423 10554 0.5830 +10423 10555 0.5610 +10423 10558 0.4920 +10423 10797 0.5880 +10423 10890 0.5710 +10423 11151 0.4600 +10423 11316 0.5430 +10423 22845 0.8600 +10423 22876 0.9000 +10423 22934 0.4330 +10423 23236 0.9090 +10423 23475 0.4570 +10423 23760 0.4090 +10423 23761 0.9280 +10423 26470 0.5900 +10423 27166 0.4830 +10423 30833 0.4160 +10423 51196 0.9060 +10423 51227 0.8150 +10423 51477 0.8160 +10423 51573 0.4220 +10423 51643 0.5150 +10423 54675 0.9500 +10423 54886 0.4140 +10423 54928 0.9220 +10423 55266 0.5770 +10423 55300 0.9460 +10423 55361 0.9440 +10423 55500 0.5140 +10423 55586 0.9190 +10423 55613 0.9040 +10423 56894 0.4140 +10423 56994 0.6060 +10423 57171 0.4160 +10423 57605 0.4170 +10423 63906 0.4330 +10423 64419 0.9150 +10423 64748 0.4260 +10423 64768 0.5590 +10423 79153 0.5380 +10423 79447 0.5920 +10423 79888 0.4030 +10423 79948 0.4140 +10423 80347 0.4710 +10423 81537 0.4020 +10423 83719 0.6340 +10423 83723 0.5050 +10423 84317 0.5190 +10423 84513 0.5540 +10423 84812 0.9060 +10423 84992 0.8120 +10423 85465 0.6900 +10423 89869 0.9100 +10423 90231 0.4540 +10423 112476 0.4620 +10423 113026 0.9120 +10423 124446 0.5240 +10423 129642 0.4110 +10423 130367 0.4020 +10423 132001 0.9640 +10423 137964 0.4660 +10423 146378 0.4890 +10423 163404 0.4140 +10423 196051 0.5160 +10423 196294 0.4530 +10423 200576 0.9430 +10423 253558 0.5140 +10423 253980 0.6350 +10423 253982 0.7040 +10423 283897 0.6700 +10423 283899 0.5030 +10423 415116 0.4290 +10423 441024 0.5850 +10423 552900 0.4090 +10423 654483 0.4100 +10424 10652 0.4050 +10424 10857 0.6360 +10424 10908 0.4240 +10424 23592 0.4160 +10424 25963 0.4130 +10424 26135 0.5380 +10424 29984 0.5670 +10424 51479 0.4060 +10424 51699 0.4280 +10424 54852 0.8130 +10424 54867 0.4030 +10424 55132 0.5890 +10424 55219 0.4100 +10424 55831 0.4070 +10424 55852 0.4220 +10424 56942 0.4760 +10424 57130 0.4820 +10424 60559 0.5100 +10424 65992 0.4090 +10424 79957 0.6770 +10424 80777 0.7240 +10424 84317 0.4060 +10424 85315 0.8420 +10424 135293 0.4510 +10424 158747 0.4130 +10424 164091 0.8240 +10424 344838 0.6160 +10425 10966 0.5380 +10425 11074 0.5180 +10425 22907 0.5390 +10425 23295 0.5320 +10425 25827 0.5220 +10425 27246 0.4210 +10425 27252 0.6120 +10425 54165 0.4310 +10425 55308 0.5440 +10425 55666 0.4150 +10425 56254 0.4340 +10425 57161 0.4210 +10425 57799 0.4260 +10425 60489 0.4840 +10425 64844 0.6120 +10425 79754 0.6030 +10425 84676 0.4090 +10425 90025 0.5240 +10425 92703 0.4400 +10425 114548 0.4500 +10425 140460 0.6520 +10425 140462 0.7140 +10425 140739 0.4200 +10425 142684 0.5350 +10425 163126 0.4180 +10425 171222 0.4460 +10425 200316 0.4580 +10426 10615 0.4460 +10426 10733 0.4200 +10426 10806 0.4310 +10426 10844 0.9990 +10426 11064 0.4330 +10426 22841 0.4040 +10426 22919 0.4630 +10426 23122 0.4680 +10426 23250 0.5650 +10426 23291 0.6080 +10426 23787 0.4180 +10426 25821 0.6990 +10426 25851 0.4380 +10426 25897 0.4040 +10426 26024 0.4400 +10426 26049 0.4040 +10426 26059 0.8250 +10426 27034 0.6520 +10426 27175 0.9960 +10426 27229 0.9990 +10426 29922 0.7430 +10426 29958 0.4190 +10426 51060 0.6200 +10426 51134 0.4080 +10426 51174 0.7100 +10426 51806 0.5670 +10426 51807 0.5710 +10426 54460 0.4380 +10426 54465 0.4430 +10426 54801 0.4280 +10426 54875 0.4310 +10426 55066 0.4200 +10426 55125 0.4930 +10426 55308 0.4250 +10426 55755 0.7410 +10426 55835 0.7230 +10426 57787 0.5400 +10426 64122 0.4160 +10426 79913 0.5280 +10426 80097 0.9720 +10426 80223 0.4040 +10426 80852 0.5760 +10426 83540 0.5400 +10426 84060 0.4490 +10426 85378 0.9990 +10426 91860 0.6110 +10426 114791 0.9990 +10426 121441 0.9710 +10426 124995 0.5310 +10426 143241 0.4040 +10426 144108 0.4040 +10426 163688 0.5680 +10426 201931 0.4060 +10426 222229 0.4510 +10426 259266 0.4900 +10426 282991 0.5860 +10426 374897 0.4040 +10426 375337 0.4380 +10426 440145 0.9990 +10426 653784 0.8510 +10427 10436 0.4400 +10427 10483 0.9990 +10427 10484 0.9990 +10427 10492 0.4330 +10427 10652 0.6630 +10427 10802 0.9660 +10427 10945 0.4970 +10427 10959 0.7620 +10427 10960 0.6360 +10427 10972 0.6940 +10427 11079 0.4060 +10427 11196 0.8690 +10427 11231 0.6210 +10427 11316 0.4670 +10427 22818 0.5500 +10427 22828 0.5460 +10427 22870 0.4360 +10427 22872 0.9980 +10427 22878 0.6830 +10427 22937 0.7760 +10427 23041 0.6250 +10427 23215 0.4010 +10427 23243 0.4490 +10427 23256 0.7840 +10427 25956 0.9890 +10427 26003 0.6360 +10427 26984 0.8030 +10427 26986 0.4260 +10427 27095 0.8270 +10427 29097 0.4370 +10427 29927 0.6930 +10427 51014 0.9090 +10427 51128 0.9820 +10427 51141 0.4180 +10427 51272 0.4060 +10427 51290 0.4820 +10427 51399 0.6110 +10427 51614 0.4300 +10427 51655 0.4820 +10427 51693 0.5800 +10427 51752 0.4390 +10427 53407 0.4730 +10427 54778 0.6290 +10427 55014 0.5850 +10427 55018 0.6060 +10427 55102 0.4030 +10427 55176 0.4490 +10427 55254 0.5450 +10427 55291 0.4530 +10427 55770 0.4380 +10427 56681 0.9960 +10427 57216 0.7090 +10427 57223 0.4570 +10427 58485 0.6340 +10427 59349 0.9610 +10427 60684 0.4530 +10427 64083 0.9490 +10427 64689 0.8770 +10427 64764 0.4140 +10427 65977 0.5350 +10427 79090 0.5880 +10427 79748 0.5550 +10427 81555 0.9420 +10427 81562 0.6240 +10427 81839 0.4050 +10427 81876 0.6990 +10427 83548 0.5850 +10427 84640 0.4510 +10427 85477 0.6550 +10427 89866 0.8400 +10427 90196 0.5020 +10427 90411 0.6560 +10427 91369 0.6070 +10427 122553 0.5700 +10427 126003 0.6280 +10427 133482 0.5190 +10427 133619 0.5120 +10427 149111 0.5660 +10427 157769 0.4420 +10427 253943 0.5540 +10427 254263 0.6020 +10427 342371 0.4360 +10427 375056 0.9750 +10427 553115 0.9230 +10428 10445 0.5430 +10428 10467 0.8710 +10428 10524 0.6300 +10428 10847 0.9700 +10428 10856 0.9690 +10428 10902 0.6230 +10428 22882 0.4100 +10428 23476 0.5240 +10428 29844 0.5440 +10428 51377 0.5800 +10428 51412 0.4150 +10428 51542 0.5090 +10428 54556 0.6300 +10428 54617 0.6150 +10428 54891 0.5500 +10428 55257 0.4260 +10428 55929 0.9890 +10428 56923 0.4100 +10428 57634 0.8970 +10428 64431 0.7810 +10428 79577 0.4240 +10428 79807 0.4320 +10428 79913 0.5570 +10428 80129 0.4790 +10428 81611 0.6030 +10428 83444 0.5970 +10428 83890 0.5410 +10428 83938 0.4200 +10428 84071 0.5650 +10428 93973 0.5970 +10428 94239 0.7850 +10428 117143 0.4060 +10428 120935 0.4840 +10428 124491 0.8600 +10428 125476 0.7130 +10428 157378 0.4460 +10428 163782 0.4610 +10428 255626 0.5950 +10428 283229 0.4370 +10428 283899 0.5690 +10430 10567 0.4110 +10430 10653 0.4860 +10430 10952 0.8600 +10430 11161 0.6240 +10430 11224 0.8280 +10430 23385 0.4270 +10430 23420 0.6300 +10430 23480 0.8380 +10430 23521 0.8300 +10430 23659 0.7640 +10430 25873 0.8380 +10430 29085 0.5260 +10430 29927 0.8910 +10430 51069 0.4040 +10430 51079 0.5850 +10430 51124 0.5840 +10430 51398 0.6770 +10430 51643 0.4750 +10430 54499 0.9250 +10430 55176 0.5140 +10430 55362 0.4320 +10430 55651 0.4490 +10430 55831 0.4490 +10430 55969 0.5190 +10430 56851 0.6470 +10430 56926 0.9980 +10430 57003 0.9250 +10430 64131 0.5490 +10430 64951 0.4350 +10430 65003 0.4250 +10430 79064 0.5960 +10430 79639 0.5590 +10430 84942 0.4370 +10430 90993 0.4300 +10430 91750 0.5120 +10430 117248 0.4520 +10430 125988 0.4520 +10430 126328 0.4690 +10430 128240 0.4870 +10430 130589 0.5770 +10430 132660 0.5330 +10430 200185 0.5950 +10430 283820 0.9860 +10430 286451 0.5930 +10430 286826 0.4860 +10430 388564 0.4780 +10430 408050 0.7830 +10430 100527943 0.4870 +10432 10471 0.4240 +10432 10492 0.7220 +10432 10521 0.6350 +10432 10614 0.6380 +10432 10629 0.4470 +10432 10657 0.6930 +10432 10772 0.5280 +10432 10921 0.4590 +10432 10949 0.8350 +10432 10963 0.4080 +10432 11051 0.6390 +10432 11052 0.7590 +10432 11060 0.5590 +10432 11338 0.7520 +10432 22913 0.4050 +10432 22916 0.6340 +10432 22985 0.4800 +10432 23016 0.4490 +10432 23028 0.4600 +10432 23054 0.8260 +10432 23091 0.4050 +10432 23160 0.4340 +10432 23195 0.4240 +10432 23404 0.4110 +10432 23435 0.7660 +10432 23476 0.5420 +10432 23511 0.4170 +10432 23515 0.4430 +10432 23543 0.4400 +10432 26097 0.6330 +10432 27258 0.4860 +10432 27316 0.8050 +10432 27339 0.7470 +10432 28974 0.4660 +10432 29894 0.6560 +10432 30827 0.5130 +10432 51428 0.4100 +10432 51593 0.6170 +10432 55110 0.4460 +10432 55269 0.9910 +10432 56259 0.6520 +10432 57187 0.5080 +10432 57510 0.4450 +10432 57721 0.6050 +10432 57805 0.6400 +10432 58512 0.4330 +10432 79042 0.4340 +10432 79159 0.4360 +10432 80218 0.4490 +10432 81608 0.4250 +10432 83443 0.4470 +10432 83746 0.4460 +10432 84844 0.4360 +10432 124245 0.5660 +10432 220988 0.5930 +10432 284695 0.5650 +10432 389792 0.4300 +10432 440603 0.4050 +10432 727837 0.4970 +10434 10672 0.6790 +10434 10744 0.4910 +10434 10908 0.9280 +10434 11057 0.4220 +10434 11130 0.5650 +10434 11145 0.6990 +10434 11201 0.4490 +10434 11235 0.4180 +10434 23390 0.4900 +10434 23659 0.9320 +10434 25921 0.5250 +10434 26090 0.4770 +10434 26279 0.6720 +10434 29801 0.4510 +10434 30814 0.7340 +10434 50487 0.6660 +10434 51104 0.6940 +10434 51114 0.5020 +10434 51201 0.5270 +10434 51304 0.4870 +10434 54503 0.4780 +10434 54680 0.5090 +10434 54947 0.7740 +10434 55146 0.4630 +10434 55347 0.5620 +10434 55625 0.4400 +10434 56261 0.9510 +10434 56994 0.5250 +10434 57406 0.5080 +10434 57552 0.4120 +10434 58489 0.6900 +10434 64429 0.5000 +10434 64600 0.7110 +10434 79888 0.7770 +10434 81544 0.4140 +10434 81579 0.7180 +10434 81926 0.7650 +10434 83451 0.6010 +10434 84243 0.4190 +10434 84287 0.4780 +10434 84647 0.6600 +10434 84696 0.4280 +10434 84945 0.6050 +10434 123745 0.6540 +10434 129642 0.9130 +10434 137695 0.5250 +10434 151056 0.9360 +10434 154141 0.9010 +10434 158866 0.4310 +10434 171586 0.4750 +10434 254359 0.4190 +10434 254531 0.9090 +10434 255189 0.6540 +10434 283748 0.6500 +10434 375775 0.9100 +10434 391013 0.6540 +10434 619373 0.4720 +10434 100137049 0.6800 +10435 10534 0.4490 +10435 10602 0.4780 +10435 23048 0.4010 +10435 23092 0.7340 +10435 23157 0.5980 +10435 23433 0.9670 +10435 23625 0.5030 +10435 23649 0.4640 +10435 25972 0.4780 +10435 51005 0.4650 +10435 57091 0.4440 +10435 83786 0.4240 +10435 124404 0.4090 +10435 128239 0.4030 +10435 148170 0.9760 +10435 220359 0.4510 +10435 283130 0.5410 +10436 10438 0.7960 +10436 10471 0.4630 +10436 10482 0.5380 +10436 10527 0.4290 +10436 10528 0.9960 +10436 10557 0.8730 +10436 10607 0.9950 +10436 10785 0.4070 +10436 10813 0.9940 +10436 10885 0.9950 +10436 10969 0.8800 +10436 10987 0.5070 +10436 11051 0.4150 +10436 11056 0.8860 +10436 11103 0.9990 +10436 11137 0.6040 +10436 11157 0.4650 +10436 11331 0.5800 +10436 11340 0.8190 +10436 22803 0.5160 +10436 22984 0.9930 +10436 23016 0.8360 +10436 23054 0.7820 +10436 23076 0.4040 +10436 23160 0.9980 +10436 23204 0.6640 +10436 23212 0.5980 +10436 23223 0.4680 +10436 23246 0.7170 +10436 23378 0.8240 +10436 23404 0.8800 +10436 23481 0.7990 +10436 23517 0.8060 +10436 23560 0.5010 +10436 24140 0.4950 +10436 25879 0.9970 +10436 25926 0.9780 +10436 25940 0.4120 +10436 25973 0.4260 +10436 25983 0.9960 +10436 26135 0.5040 +10436 26155 0.4090 +10436 26156 0.9840 +10436 26168 0.5680 +10436 26354 0.5110 +10436 26509 0.4030 +10436 26519 0.4600 +10436 26574 0.9970 +10436 26953 0.4260 +10436 27037 0.4180 +10436 27042 0.8960 +10436 27043 0.5530 +10436 27292 0.9650 +10436 27340 0.9970 +10436 27341 0.9950 +10436 28957 0.4090 +10436 28987 0.7210 +10436 29087 0.4300 +10436 29090 0.4410 +10436 29777 0.7110 +10436 30834 0.4530 +10436 30836 0.9870 +10436 51010 0.8480 +10436 51013 0.9000 +10436 51018 0.4930 +10436 51042 0.5750 +10436 51065 0.8640 +10436 51068 0.4220 +10436 51069 0.6140 +10436 51073 0.5800 +10436 51077 0.9990 +10436 51081 0.7910 +10436 51082 0.6910 +10436 51096 0.9980 +10436 51106 0.5770 +10436 51118 0.9980 +10436 51119 0.5240 +10436 51149 0.7920 +10436 51154 0.7900 +10436 51184 0.4070 +10436 51187 0.7460 +10436 51202 0.8780 +10436 51318 0.4190 +10436 51319 0.5840 +10436 51388 0.9580 +10436 51406 0.8240 +10436 51491 0.6250 +10436 51504 0.5830 +10436 51567 0.4050 +10436 51575 0.8030 +10436 51602 0.9990 +10436 54433 0.6610 +10436 54475 0.4990 +10436 54512 0.8650 +10436 54552 0.4150 +10436 54555 0.9680 +10436 54606 0.6180 +10436 54881 0.6620 +10436 55039 0.4360 +10436 55052 0.6540 +10436 55127 0.9980 +10436 55131 0.7840 +10436 55226 0.9970 +10436 55272 0.9970 +10436 55299 0.8500 +10436 55341 0.4810 +10436 55505 0.5220 +10436 55623 0.4510 +10436 55651 0.9520 +10436 55695 0.5210 +10436 55720 0.5960 +10436 55759 0.9360 +10436 55781 0.6380 +10436 55813 0.9980 +10436 55837 0.4490 +10436 55856 0.4160 +10436 56902 0.9720 +10436 56915 0.8080 +10436 56943 0.4050 +10436 57050 0.9970 +10436 57062 0.4580 +10436 57142 0.7180 +10436 57418 0.7070 +10436 57541 0.4110 +10436 57570 0.4290 +10436 57647 0.9780 +10436 64216 0.6890 +10436 64960 0.6850 +10436 64963 0.6970 +10436 64969 0.4020 +10436 65078 0.8120 +10436 65083 0.9980 +10436 65095 0.4610 +10436 79050 0.9990 +10436 79159 0.5010 +10436 79258 0.5420 +10436 79571 0.7880 +10436 79707 0.5580 +10436 79954 0.9920 +10436 80135 0.5020 +10436 81887 0.6050 +10436 83475 0.5510 +10436 83732 0.4670 +10436 83743 0.8270 +10436 84128 0.9950 +10436 84135 0.9960 +10436 84154 0.8560 +10436 84172 0.4570 +10436 84240 0.4230 +10436 84294 0.8980 +10436 84365 0.6770 +10436 84894 0.4470 +10436 84916 0.9980 +10436 84946 0.4610 +10436 84950 0.4100 +10436 85462 0.5290 +10436 85476 0.5050 +10436 88745 0.5760 +10436 90121 0.4350 +10436 90342 0.4020 +10436 91582 0.8560 +10436 92856 0.9970 +10436 93587 0.5630 +10436 115939 0.7410 +10436 117246 0.7210 +10436 118460 0.6530 +10436 126402 0.7150 +10436 128061 0.8160 +10436 139596 0.4130 +10436 140032 0.6430 +10436 140609 0.4140 +10436 142940 0.4150 +10436 153443 0.6540 +10436 155368 0.4370 +10436 161424 0.6270 +10436 219927 0.4200 +10436 221830 0.5460 +10436 285855 0.6080 +10436 345630 0.9550 +10436 349667 0.4470 +10436 641776 0.4790 +10436 643909 0.4790 +10436 654463 0.4740 +10436 728524 0.4790 +10436 100996746 0.4790 +10436 105180390 0.4790 +10436 105180391 0.4790 +10437 10538 0.4930 +10437 10561 0.4710 +10437 10577 0.4180 +10437 10581 0.4510 +10437 10964 0.4090 +10437 24138 0.4740 +10437 26206 0.4290 +10437 27122 0.4970 +10437 51296 0.4630 +10437 51726 0.4790 +10437 54676 0.4200 +10437 55789 0.4450 +10437 55803 0.4510 +10437 64427 0.4590 +10437 80071 0.4260 +10437 84769 0.4750 +10437 93190 0.4290 +10437 122509 0.4820 +10437 127003 0.4370 +10437 128710 0.4760 +10437 138255 0.4290 +10437 151651 0.4290 +10437 197335 0.7080 +10437 257177 0.4290 +10437 387733 0.4050 +10437 388701 0.4290 +10437 439996 0.5010 +10437 100128569 0.4290 +10438 10526 0.4100 +10438 10527 0.4100 +10438 10528 0.9390 +10438 10557 0.5790 +10438 10607 0.7550 +10438 10767 0.4660 +10438 10813 0.7470 +10438 10885 0.7610 +10438 11044 0.5530 +10438 11056 0.4670 +10438 11066 0.4460 +10438 11103 0.6130 +10438 11224 0.6700 +10438 11340 0.9990 +10438 22894 0.9970 +10438 22916 0.4130 +10438 22984 0.7400 +10438 23016 0.9980 +10438 23054 0.4300 +10438 23064 0.4520 +10438 23160 0.8810 +10438 23212 0.6150 +10438 23378 0.4170 +10438 23404 0.9990 +10438 23481 0.5450 +10438 23517 0.9990 +10438 23521 0.5800 +10438 23560 0.5980 +10438 25873 0.6470 +10438 25879 0.7310 +10438 25926 0.6790 +10438 25983 0.6450 +10438 26168 0.5490 +10438 26354 0.5170 +10438 27042 0.4780 +10438 27043 0.4080 +10438 27340 0.7270 +10438 27341 0.7420 +10438 29889 0.6520 +10438 29997 0.6580 +10438 30836 0.6030 +10438 51010 0.9990 +10438 51013 0.9990 +10438 51018 0.4120 +10438 51042 0.6620 +10438 51077 0.7960 +10438 51095 0.4290 +10438 51096 0.9190 +10438 51118 0.8500 +10438 51121 0.5820 +10438 51149 0.4370 +10438 51154 0.6130 +10438 51187 0.6920 +10438 51202 0.4620 +10438 51388 0.5430 +10438 51602 0.9040 +10438 51806 0.5110 +10438 54475 0.5370 +10438 54512 0.9970 +10438 54552 0.5170 +10438 54555 0.4650 +10438 54586 0.4240 +10438 54606 0.4960 +10438 54768 0.4940 +10438 54881 0.4510 +10438 55127 0.7620 +10438 55272 0.7820 +10438 55319 0.5620 +10438 55596 0.8560 +10438 55601 0.4100 +10438 55813 0.7710 +10438 56902 0.4410 +10438 56915 0.9990 +10438 56964 0.6030 +10438 57050 0.9460 +10438 57418 0.4550 +10438 57501 0.4160 +10438 57647 0.5170 +10438 64282 0.5150 +10438 65083 0.7110 +10438 79050 0.8090 +10438 79159 0.4220 +10438 79571 0.4350 +10438 79707 0.4650 +10438 79925 0.5350 +10438 80349 0.5860 +10438 81887 0.4460 +10438 84128 0.8890 +10438 84135 0.8830 +10438 84154 0.6950 +10438 84186 0.7760 +10438 84294 0.4170 +10438 84319 0.4010 +10438 84916 0.8530 +10438 84967 0.4030 +10438 85441 0.8030 +10438 87178 0.9230 +10438 88745 0.4650 +10438 91860 0.5120 +10438 92856 0.8440 +10438 115708 0.4070 +10438 115752 0.9960 +10438 116143 0.6300 +10438 116832 0.6430 +10438 118460 0.9970 +10438 129563 0.9430 +10438 140801 0.4090 +10438 144535 0.5860 +10438 163688 0.5120 +10438 196441 0.9650 +10438 200162 0.4850 +10438 200373 0.6960 +10438 200916 0.5800 +10438 285855 0.4020 +10438 345630 0.4700 +10439 26011 0.8710 +10439 26577 0.4600 +10439 27185 0.4760 +10439 30812 0.4410 +10439 55741 0.4200 +10439 57498 0.5370 +10439 57582 0.4300 +10439 65078 0.7350 +10439 79694 0.4260 +10439 79813 0.8170 +10439 84894 0.4520 +10439 93145 0.6520 +10439 157922 0.4030 +10439 158067 0.4410 +10440 10452 0.9470 +10440 10469 0.9990 +10440 10478 0.4010 +10440 10539 0.5410 +10440 10651 0.4240 +10440 10730 0.7310 +10440 10939 0.5280 +10440 10953 0.4800 +10440 10989 0.5310 +10440 11264 0.5340 +10440 11343 0.5500 +10440 23203 0.7450 +10440 23479 0.4070 +10440 25813 0.6910 +10440 26515 0.8290 +10440 26517 0.8040 +10440 26519 0.9850 +10440 26520 0.9060 +10440 26521 0.6810 +10440 27089 0.5610 +10440 27166 0.4850 +10440 27235 0.4990 +10440 29090 0.9970 +10440 29103 0.8800 +10440 29796 0.4630 +10440 29928 0.8620 +10440 29957 0.4750 +10440 51025 0.9920 +10440 51079 0.6370 +10440 51118 0.4860 +10440 51123 0.4010 +10440 51161 0.4580 +10440 51258 0.4710 +10440 51300 0.4990 +10440 54205 0.4440 +10440 54543 0.7350 +10440 55154 0.4480 +10440 55486 0.4300 +10440 55750 0.4690 +10440 55967 0.6690 +10440 56993 0.8910 +10440 58190 0.4320 +10440 65084 0.6670 +10440 79085 0.5390 +10440 80273 0.9530 +10440 84134 0.5160 +10440 84769 0.4820 +10440 84886 0.7820 +10440 84896 0.4440 +10440 90580 0.6010 +10440 91419 0.4940 +10440 91942 0.4970 +10440 92609 0.9990 +10440 114789 0.5210 +10440 115209 0.4490 +10440 126328 0.5970 +10440 131118 0.9890 +10440 131474 0.7480 +10440 134266 0.7610 +10440 140823 0.9370 +10440 150274 0.5730 +10440 197257 0.5050 +10440 200576 0.4930 +10440 284427 0.4570 +10440 374291 0.4930 +10440 387990 0.4340 +10440 388753 0.4910 +10440 401505 0.6270 +10440 728489 0.4810 +10440 100188893 0.6120 +10440 100287932 0.9990 +10443 10465 0.5370 +10443 23233 0.4810 +10443 25957 0.5220 +10443 26574 0.4320 +10443 29796 0.4410 +10443 51079 0.4760 +10443 54361 0.4180 +10443 55967 0.5200 +10443 80975 0.4190 +10443 85021 0.4560 +10443 112812 0.4180 +10443 119391 0.4230 +10443 126298 0.4350 +10443 375056 0.5110 +10443 390980 0.4630 +10444 10513 0.9200 +10444 11146 0.7200 +10444 23008 0.9300 +10444 23053 0.6240 +10444 23352 0.5140 +10444 23510 0.5490 +10444 23532 0.9130 +10444 23588 0.9320 +10444 23770 0.4240 +10444 25790 0.4640 +10444 29068 0.4580 +10444 29916 0.4840 +10444 50488 0.4680 +10444 51666 0.9040 +10444 54662 0.4340 +10444 55527 0.9120 +10444 55762 0.6510 +10444 56929 0.9240 +10444 57643 0.5800 +10444 57688 0.5680 +10444 65249 0.5480 +10444 79065 0.4480 +10444 79699 0.9530 +10444 80700 0.4680 +10444 83546 0.4250 +10444 116138 0.9360 +10444 122769 0.6050 +10444 146691 0.4550 +10444 150684 0.9000 +10444 160760 0.4800 +10444 340204 0.4200 +10444 440561 0.9010 +10444 440590 0.6690 +10444 653619 0.9010 +10445 10467 0.5410 +10445 10524 0.9420 +10445 10847 0.5690 +10445 10856 0.9770 +10445 10902 0.9150 +10445 10920 0.4480 +10445 10933 0.7430 +10445 10943 0.8590 +10445 10980 0.4470 +10445 10987 0.5140 +10445 11007 0.5840 +10445 11091 0.9930 +10445 23269 0.9000 +10445 25855 0.5310 +10445 25980 0.4600 +10445 26121 0.9110 +10445 26122 0.7200 +10445 26168 0.9020 +10445 26284 0.6140 +10445 27043 0.9010 +10445 29844 0.9740 +10445 29915 0.6850 +10445 30827 0.6030 +10445 50813 0.5880 +10445 51019 0.4970 +10445 51105 0.8270 +10445 51138 0.4420 +10445 51230 0.9980 +10445 51377 0.9790 +10445 51412 0.5410 +10445 51428 0.5520 +10445 51451 0.4230 +10445 51493 0.4360 +10445 51729 0.6130 +10445 54556 0.9000 +10445 54617 0.9890 +10445 54799 0.7200 +10445 54820 0.5950 +10445 54881 0.9000 +10445 54891 0.9380 +10445 54934 0.9990 +10445 55011 0.5300 +10445 55167 0.8240 +10445 55257 0.7250 +10445 55683 0.9990 +10445 55689 0.6700 +10445 55695 0.5670 +10445 55904 0.4030 +10445 55929 0.8830 +10445 57215 0.5290 +10445 57634 0.9020 +10445 57680 0.9070 +10445 64431 0.6160 +10445 64708 0.4600 +10445 64769 0.7250 +10445 79142 0.4470 +10445 79571 0.4700 +10445 79913 0.9740 +10445 80314 0.7200 +10445 80321 0.4150 +10445 81611 0.9000 +10445 81887 0.9200 +10445 83444 0.9620 +10445 84065 0.4550 +10445 84148 0.9860 +10445 84313 0.4940 +10445 84337 0.4560 +10445 84545 0.4410 +10445 84661 0.6390 +10445 93081 0.4930 +10445 93973 0.9750 +10445 124944 0.9020 +10445 125476 0.9840 +10445 146057 0.4380 +10445 148479 0.4540 +10445 151050 0.6280 +10445 219938 0.4110 +10445 283899 0.9860 +10445 284058 0.9960 +10445 339287 0.7940 +10445 345651 0.5410 +10445 100529209 0.5400 +10446 22859 0.5890 +10446 23266 0.5310 +10446 23284 0.5300 +10446 55227 0.4970 +10446 79442 0.4390 +10446 147015 0.4030 +10447 51384 0.5130 +10447 55664 0.4630 +10447 79974 0.6570 +10447 80380 0.4400 +10447 90993 0.5230 +10447 201633 0.4470 +10449 10455 0.9870 +10449 10654 0.5210 +10449 10726 0.4330 +10449 10873 0.4220 +10449 10901 0.4190 +10449 10965 0.4560 +10449 11001 0.4720 +10449 11112 0.5500 +10449 22933 0.4030 +10449 23205 0.4280 +10449 23305 0.5380 +10449 23410 0.4080 +10449 23411 0.4490 +10449 23417 0.4840 +10449 23597 0.4050 +10449 26063 0.4440 +10449 26275 0.7300 +10449 27034 0.7900 +10449 28976 0.7870 +10449 30851 0.5690 +10449 51067 0.4970 +10449 51084 0.8820 +10449 51102 0.9370 +10449 51126 0.5860 +10449 51144 0.5920 +10449 51703 0.5520 +10449 54511 0.9370 +10449 54988 0.5250 +10449 54995 0.4930 +10449 55006 0.4220 +10449 55268 0.6590 +10449 55289 0.5510 +10449 55572 0.4130 +10449 55670 0.5890 +10449 55825 0.4970 +10449 55856 0.4300 +10449 55862 0.9570 +10449 55902 0.9330 +10449 56898 0.5290 +10449 56922 0.5040 +10449 57017 0.4890 +10449 64064 0.9410 +10449 64087 0.5800 +10449 64577 0.4170 +10449 65018 0.4280 +10449 65985 0.5610 +10449 79072 0.4340 +10449 79611 0.9270 +10449 79777 0.5060 +10449 80221 0.6100 +10449 80347 0.4270 +10449 80724 0.5570 +10449 81616 0.4510 +10449 84129 0.5080 +10449 84263 0.9180 +10449 84320 0.4690 +10449 84532 0.9370 +10449 84693 0.4130 +10449 84869 0.4080 +10449 91452 0.5030 +10449 91734 0.4460 +10449 116285 0.4400 +10449 123876 0.4620 +10449 124359 0.6360 +10449 126129 0.5490 +10449 130752 0.4520 +10449 132949 0.5460 +10449 134526 0.4340 +10449 140856 0.5240 +10449 157378 0.6060 +10449 160428 0.4340 +10449 197322 0.5060 +10449 253175 0.6360 +10449 284422 0.5020 +10449 341392 0.5450 +10449 348158 0.4850 +10449 376497 0.5260 +10449 414149 0.4640 +10449 641371 0.4670 +10449 109703458 0.5130 +10449 122405565 0.5020 +10450 10465 0.4530 +10450 10569 0.8610 +10450 10594 0.9880 +10450 10907 0.4770 +10450 10915 0.4400 +10450 10946 0.8470 +10450 10992 0.9350 +10450 11091 0.4490 +10450 11193 0.4110 +10450 11262 0.6380 +10450 11338 0.6490 +10450 22794 0.8050 +10450 22938 0.9970 +10450 22944 0.8010 +10450 22985 0.4220 +10450 23020 0.8410 +10450 23126 0.5210 +10450 23398 0.8570 +10450 23450 0.8580 +10450 23451 0.8340 +10450 23524 0.9840 +10450 23626 0.5620 +10450 23645 0.4120 +10450 23759 0.8460 +10450 24148 0.5180 +10450 25949 0.9970 +10450 26017 0.8060 +10450 27339 0.9990 +10450 51340 0.9980 +10450 51362 0.9920 +10450 51503 0.9920 +10450 51634 0.8330 +10450 51639 0.8200 +10450 51645 0.9910 +10450 53938 0.4800 +10450 54555 0.4090 +10450 54802 0.4190 +10450 54883 0.8200 +10450 55094 0.7890 +10450 55100 0.8330 +10450 55110 0.8270 +10450 55192 0.5760 +10450 55234 0.5000 +10450 55280 0.4770 +10450 55617 0.4700 +10450 55696 0.9960 +10450 55702 0.8910 +10450 56259 0.9040 +10450 56949 0.9990 +10450 57456 0.6270 +10450 57461 0.9940 +10450 57703 0.9830 +10450 58509 0.8020 +10450 59286 0.8800 +10450 60625 0.5930 +10450 79576 0.8030 +10450 79650 0.7870 +10450 79706 0.8000 +10450 79753 0.9080 +10450 80011 0.8070 +10450 80349 0.5750 +10450 81576 0.5670 +10450 83443 0.8330 +10450 84292 0.7130 +10450 84811 0.8330 +10450 84844 0.8390 +10450 84950 0.9030 +10450 89874 0.4220 +10450 91603 0.9960 +10450 112399 0.6480 +10450 123169 0.4080 +10450 124245 0.4660 +10450 124817 0.6200 +10450 126961 0.9030 +10450 127391 0.4150 +10450 138046 0.7060 +10450 143884 0.9580 +10450 148479 0.5190 +10450 151903 0.7940 +10450 153527 0.8750 +10450 199746 0.5590 +10450 317781 0.4710 +10450 333932 0.9030 +10450 440093 0.9230 +10450 440686 0.9230 +10450 653604 0.9240 +10450 100534599 0.9500 +10451 10458 0.6180 +10451 10657 0.4020 +10451 10672 0.4780 +10451 10765 0.4090 +10451 10787 0.5520 +10451 10810 0.5240 +10451 11033 0.4620 +10451 11140 0.4260 +10451 11214 0.6400 +10451 22914 0.7020 +10451 23191 0.4990 +10451 23533 0.6240 +10451 26499 0.4710 +10451 26999 0.5080 +10451 27040 0.7830 +10451 27071 0.6410 +10451 28964 0.4160 +10451 29760 0.9590 +10451 29899 0.6970 +10451 29957 0.5910 +10451 51206 0.6480 +10451 54209 0.5980 +10451 54583 0.4160 +10451 55845 0.5140 +10451 79930 0.4660 +10451 115727 0.4330 +10451 146850 0.5090 +10451 255743 0.4020 +10451 390714 0.5110 +10451 653361 0.5810 +10452 10469 0.9580 +10452 10651 0.7870 +10452 10730 0.5030 +10452 10939 0.4580 +10452 10953 0.5630 +10452 10989 0.9610 +10452 11331 0.7670 +10452 23130 0.6700 +10452 23197 0.7210 +10452 23203 0.5360 +10452 23246 0.4820 +10452 23339 0.9270 +10452 23607 0.4480 +10452 23647 0.4110 +10452 23788 0.5840 +10452 25813 0.9990 +10452 26515 0.4910 +10452 26517 0.9280 +10452 26519 0.9060 +10452 26520 0.8630 +10452 26521 0.7510 +10452 27023 0.4580 +10452 27089 0.4270 +10452 27235 0.6100 +10452 29090 0.8600 +10452 29927 0.4130 +10452 29928 0.8160 +10452 51024 0.7020 +10452 51025 0.8290 +10452 51069 0.4180 +10452 51142 0.7070 +10452 51248 0.5400 +10452 51287 0.5570 +10452 51314 0.4350 +10452 54205 0.5640 +10452 54209 0.4080 +10452 54543 0.9990 +10452 54606 0.4720 +10452 54708 0.5600 +10452 54927 0.9130 +10452 55177 0.4430 +10452 55210 0.5210 +10452 55288 0.4440 +10452 55333 0.4030 +10452 55486 0.4720 +10452 55669 0.8870 +10452 55735 0.8470 +10452 56942 0.5410 +10452 56993 0.9990 +10452 64231 0.4440 +10452 64710 0.4070 +10452 65018 0.9390 +10452 79135 0.8040 +10452 79145 0.5170 +10452 80142 0.4090 +10452 80273 0.7230 +10452 81876 0.4320 +10452 83447 0.6010 +10452 84134 0.9040 +10452 84269 0.5730 +10452 84303 0.8420 +10452 84749 0.5130 +10452 84896 0.4290 +10452 90639 0.5810 +10452 91137 0.4200 +10452 92609 0.9710 +10452 117159 0.5400 +10452 120892 0.6550 +10452 125988 0.7930 +10452 131118 0.8220 +10452 131474 0.7730 +10452 134266 0.6950 +10452 139322 0.8240 +10452 140823 0.4050 +10452 144100 0.6660 +10452 150274 0.5760 +10452 197257 0.5030 +10452 337867 0.6170 +10452 340348 0.5430 +10452 345778 0.9330 +10452 387990 0.8260 +10452 388753 0.5960 +10452 400916 0.6680 +10452 401505 0.9990 +10452 440574 0.8620 +10452 643680 0.4320 +10452 728489 0.4540 +10452 100188893 0.9990 +10452 100272147 0.4990 +10452 100287932 0.9650 +10454 10616 0.7210 +10454 10724 0.5810 +10454 10771 0.8080 +10454 10869 0.5950 +10454 10892 0.6580 +10454 11072 0.5200 +10454 11140 0.5920 +10454 11274 0.8780 +10454 23118 0.9990 +10454 23586 0.4100 +10454 23643 0.6350 +10454 27005 0.5980 +10454 29110 0.6870 +10454 30818 0.4120 +10454 51003 0.4150 +10454 51135 0.9710 +10454 51284 0.6290 +10454 51295 0.4250 +10454 51311 0.6020 +10454 54455 0.4140 +10454 54472 0.6610 +10454 54662 0.5380 +10454 55072 0.8280 +10454 56957 0.5190 +10454 57161 0.4930 +10454 57162 0.6870 +10454 57506 0.9350 +10454 57551 0.4610 +10454 64127 0.7170 +10454 79444 0.4610 +10454 80198 0.4480 +10454 80216 0.4990 +10454 80233 0.6300 +10454 81858 0.8460 +10454 83737 0.4480 +10454 83931 0.4670 +10454 84219 0.4040 +10454 84445 0.4040 +10454 84955 0.6220 +10454 89891 0.5860 +10454 92305 0.5400 +10454 92610 0.5070 +10454 114609 0.7700 +10454 123263 0.4190 +10454 148022 0.6760 +10454 220213 0.4770 +10454 246330 0.7060 +10454 257397 0.9990 +10454 338557 0.5440 +10454 353376 0.6410 +10455 10840 0.4280 +10455 10901 0.4740 +10455 11001 0.4120 +10455 11112 0.4770 +10455 11137 0.4200 +10455 11264 0.4060 +10455 11332 0.4410 +10455 11343 0.4380 +10455 22982 0.4380 +10455 23093 0.4090 +10455 23181 0.4370 +10455 23205 0.5990 +10455 23305 0.4400 +10455 23369 0.4250 +10455 23597 0.4110 +10455 23600 0.5080 +10455 26061 0.4730 +10455 26063 0.6780 +10455 26275 0.5630 +10455 26509 0.4100 +10455 26589 0.4640 +10455 27034 0.8640 +10455 27349 0.4110 +10455 28976 0.9240 +10455 28988 0.4840 +10455 51021 0.4920 +10455 51069 0.4150 +10455 51081 0.4030 +10455 51084 0.8210 +10455 51102 0.4930 +10455 51144 0.4570 +10455 51263 0.4460 +10455 51264 0.4750 +10455 51268 0.4350 +10455 51497 0.4150 +10455 51703 0.5420 +10455 51761 0.4040 +10455 54511 0.5130 +10455 54596 0.4420 +10455 54677 0.4780 +10455 54948 0.4720 +10455 54995 0.4900 +10455 55052 0.4190 +10455 55168 0.4540 +10455 55289 0.8510 +10455 55301 0.4370 +10455 55711 0.5150 +10455 55825 0.5970 +10455 55856 0.5680 +10455 55862 0.6370 +10455 55902 0.4880 +10455 56898 0.4330 +10455 56922 0.5820 +10455 56957 0.4050 +10455 57129 0.4720 +10455 57591 0.4480 +10455 57609 0.4450 +10455 60488 0.4980 +10455 63875 0.4840 +10455 64064 0.4320 +10455 64087 0.6520 +10455 64965 0.5150 +10455 64968 0.4710 +10455 64969 0.4410 +10455 64975 0.4530 +10455 64976 0.4770 +10455 64979 0.4790 +10455 64981 0.4210 +10455 64983 0.4250 +10455 79728 0.4320 +10455 79783 0.4040 +10455 80221 0.4860 +10455 80344 0.4380 +10455 80724 0.6770 +10455 81616 0.4910 +10455 83693 0.4110 +10455 83695 0.4310 +10455 84129 0.7510 +10455 84188 0.6350 +10455 84263 0.9210 +10455 84461 0.4160 +10455 84532 0.6020 +10455 84545 0.4720 +10455 84656 0.4750 +10455 84693 0.4790 +10455 132949 0.4900 +10455 134147 0.4120 +10455 134526 0.4980 +10455 140856 0.5270 +10455 157869 0.4370 +10455 197322 0.5320 +10455 219743 0.6870 +10455 219927 0.4020 +10455 254042 0.4340 +10455 284058 0.6140 +10455 284422 0.8510 +10455 341392 0.5640 +10455 345275 0.5020 +10455 376497 0.5390 +10455 109703458 0.5760 +10455 122405565 0.8510 +10456 10672 0.7530 +10456 10902 0.4400 +10456 10971 0.4270 +10456 10982 0.4850 +10456 11216 0.5140 +10456 11267 0.4430 +10456 11311 0.4720 +10456 11331 0.5500 +10456 23286 0.5660 +10456 23336 0.4070 +10456 26260 0.5070 +10456 26993 0.6210 +10456 27429 0.9060 +10456 28956 0.4330 +10456 51119 0.5130 +10456 51264 0.4390 +10456 53918 0.4060 +10456 55486 0.8330 +10456 55735 0.5930 +10456 60485 0.7330 +10456 81570 0.4580 +10456 83988 0.4200 +10456 84277 0.4580 +10456 84522 0.6920 +10456 84790 0.4030 +10456 84955 0.6240 +10456 90121 0.4090 +10456 91624 0.4740 +10456 92105 0.6930 +10456 92579 0.7630 +10456 131118 0.4580 +10456 153364 0.4270 +10456 154214 0.6160 +10456 157680 0.4060 +10456 165721 0.4300 +10456 171023 0.4830 +10456 221656 0.4550 +10457 10461 0.4190 +10457 11097 0.5530 +10457 11315 0.4260 +10457 22797 0.4680 +10457 51151 0.5590 +10457 54209 0.6940 +10457 56922 0.4140 +10457 64581 0.4820 +10457 64805 0.4810 +10457 80781 0.6570 +10457 84660 0.4880 +10457 91683 0.4180 +10457 112755 0.4470 +10457 120892 0.8090 +10457 130013 0.4440 +10457 133396 0.5070 +10457 149954 0.4160 +10457 338773 0.5070 +10457 100526664 0.4350 +10458 10552 0.5820 +10458 10787 0.9540 +10458 10810 0.9130 +10458 10966 0.7320 +10458 10971 0.9370 +10458 11346 0.4170 +10458 22941 0.7530 +10458 23040 0.4190 +10458 23048 0.6450 +10458 23075 0.4130 +10458 23096 0.8500 +10458 23158 0.4210 +10458 23191 0.9450 +10458 23380 0.4380 +10458 23416 0.4440 +10458 23433 0.5070 +10458 23476 0.5130 +10458 23580 0.5360 +10458 23647 0.4860 +10458 25791 0.4720 +10458 25894 0.4380 +10458 26030 0.4050 +10458 26999 0.9410 +10458 29880 0.8140 +10458 29984 0.4290 +10458 50944 0.8660 +10458 51225 0.5210 +10458 51517 0.9070 +10458 54509 0.4340 +10458 54869 0.5830 +10458 54874 0.7100 +10458 55740 0.9770 +10458 55845 0.9010 +10458 55971 0.8280 +10458 56882 0.4050 +10458 57030 0.4510 +10458 57381 0.4060 +10458 57554 0.5170 +10458 57648 0.8650 +10458 58480 0.4570 +10458 63916 0.6900 +10458 79053 0.4320 +10458 79087 0.8420 +10458 81624 0.9550 +10458 83715 0.7110 +10458 83943 0.5010 +10458 84631 0.5140 +10458 84687 0.4440 +10458 85358 0.8570 +10458 114798 0.4340 +10458 127829 0.4830 +10458 146330 0.4110 +10458 147179 0.5190 +10458 148223 0.6200 +10458 171177 0.4510 +10458 201595 0.4070 +10458 345456 0.5530 +10458 375189 0.5770 +10458 390714 0.4990 +10458 644150 0.5260 +10459 10625 0.4260 +10459 10714 0.9980 +10459 10721 0.5420 +10459 10919 0.6190 +10459 11044 0.4800 +10459 11200 0.4740 +10459 11201 0.8650 +10459 11232 0.9130 +10459 11275 0.5140 +10459 11335 0.4560 +10459 22976 0.9330 +10459 23126 0.8270 +10459 23468 0.7800 +10459 23626 0.4870 +10459 23649 0.9220 +10459 25788 0.5090 +10459 25847 0.6520 +10459 26073 0.4120 +10459 26249 0.5140 +10459 26270 0.6930 +10459 27297 0.9000 +10459 27343 0.7360 +10459 27434 0.7880 +10459 29089 0.6570 +10459 29882 0.7180 +10459 29945 0.6620 +10459 30968 0.4310 +10459 50485 0.4550 +10459 51343 0.9680 +10459 51426 0.8710 +10459 51429 0.5310 +10459 51433 0.6500 +10459 51434 0.6520 +10459 51455 0.9990 +10459 54107 0.9290 +10459 54108 0.9000 +10459 54537 0.9990 +10459 55120 0.6050 +10459 55159 0.6180 +10459 55183 0.6590 +10459 55215 0.6860 +10459 56655 0.9260 +10459 56852 0.7400 +10459 57565 0.4260 +10459 57697 0.7120 +10459 57804 0.6580 +10459 59349 0.5180 +10459 60673 0.6000 +10459 64410 0.4260 +10459 64682 0.6710 +10459 79693 0.4070 +10459 79728 0.5910 +10459 80169 0.4790 +10459 80198 0.6460 +10459 80233 0.4780 +10459 83990 0.6070 +10459 84072 0.7810 +10459 84083 0.4510 +10459 84464 0.6100 +10459 84893 0.4700 +10459 91442 0.5440 +10459 93611 0.6870 +10459 140680 0.5260 +10459 149840 0.9970 +10459 150280 0.6580 +10459 165918 0.5270 +10459 199990 0.4640 +10459 201973 0.5100 +10459 246184 0.6520 +10459 257218 0.4470 +10459 283489 0.9400 +10459 340359 0.4260 +10459 348180 0.5930 +10459 353497 0.5550 +10459 378949 0.4050 +10459 548593 0.4960 +10459 101928601 0.5390 +10459 112441434 0.9980 +10460 10579 0.5740 +10460 10592 0.4710 +10460 10615 0.6330 +10460 10733 0.6910 +10460 10768 0.5920 +10460 10769 0.4830 +10460 10914 0.5420 +10460 11004 0.8250 +10460 11064 0.4800 +10460 11065 0.6850 +10460 11339 0.4450 +10460 22924 0.4040 +10460 22974 0.7860 +10460 22994 0.4650 +10460 23369 0.5310 +10460 23397 0.6890 +10460 24137 0.5670 +10460 26586 0.4920 +10460 27436 0.5510 +10460 29127 0.7680 +10460 29128 0.4360 +10460 51053 0.4060 +10460 51199 0.4030 +10460 51203 0.6870 +10460 51343 0.7240 +10460 51512 0.5940 +10460 51535 0.5110 +10460 51659 0.4270 +10460 54443 0.4600 +10460 54478 0.4840 +10460 54801 0.5420 +10460 54875 0.4470 +10460 55055 0.4660 +10460 55125 0.5940 +10460 55143 0.9040 +10460 55165 0.8530 +10460 55215 0.5610 +10460 55355 0.6200 +10460 55632 0.4200 +10460 55723 0.5520 +10460 55740 0.6770 +10460 55839 0.4310 +10460 55857 0.5160 +10460 55971 0.6340 +10460 56903 0.5370 +10460 56992 0.4570 +10460 57405 0.4090 +10460 57606 0.4140 +10460 57647 0.4900 +10460 57670 0.4050 +10460 57698 0.5960 +10460 64151 0.6270 +10460 64506 0.8700 +10460 64895 0.5370 +10460 64946 0.4430 +10460 79075 0.6070 +10460 79801 0.4330 +10460 79866 0.5050 +10460 79935 0.4360 +10460 80114 0.6620 +10460 81565 0.5710 +10460 81930 0.6300 +10460 83461 0.7730 +10460 83540 0.7050 +10460 84722 0.4550 +10460 85440 0.5910 +10460 90381 0.5120 +10460 90417 0.7050 +10460 92305 0.6790 +10460 121441 0.5110 +10460 126520 0.4510 +10460 145508 0.4560 +10460 146909 0.4700 +10460 151648 0.4830 +10460 152185 0.7460 +10460 152877 0.5060 +10460 153241 0.8510 +10460 154197 0.4600 +10460 157313 0.5050 +10460 166979 0.6890 +10460 201255 0.4460 +10460 220134 0.5550 +10460 221150 0.4280 +10460 259266 0.5530 +10460 283431 0.4060 +10460 340359 0.5050 +10460 346288 0.5180 +10460 387103 0.4270 +10461 10594 0.6010 +10461 10894 0.4100 +10461 23020 0.6020 +10461 23166 0.5180 +10461 23236 0.4450 +10461 23322 0.4390 +10461 23746 0.7280 +10461 25794 0.6310 +10461 26121 0.6180 +10461 26207 0.4780 +10461 26986 0.4040 +10461 50939 0.6100 +10461 51454 0.4030 +10461 54209 0.6130 +10461 54910 0.6430 +10461 55576 0.4960 +10461 55764 0.5230 +10461 55812 0.6780 +10461 55975 0.5120 +10461 57096 0.6800 +10461 64218 0.5400 +10461 64805 0.5360 +10461 80184 0.5100 +10461 84466 0.7990 +10461 91937 0.7100 +10461 130557 0.6140 +10461 140685 0.4840 +10461 140885 0.5380 +10461 145226 0.7570 +10461 167691 0.4180 +10461 338773 0.5230 +10461 343035 0.5290 +10461 346007 0.6870 +10461 375298 0.7050 +10461 388939 0.6200 +10461 494513 0.6880 +10461 768206 0.6890 +10462 10894 0.4020 +10462 11326 0.5340 +10462 23166 0.5780 +10462 23601 0.5090 +10462 26253 0.4220 +10462 27036 0.4670 +10462 27180 0.4280 +10462 30816 0.4480 +10462 50856 0.5900 +10462 51311 0.5540 +10462 51338 0.4100 +10462 56667 0.5400 +10462 64231 0.5110 +10462 64581 0.5360 +10462 65258 0.5060 +10462 94025 0.5100 +10462 118430 0.5020 +10462 131450 0.4230 +10462 132720 0.5380 +10462 140453 0.5480 +10462 140885 0.4250 +10462 143662 0.4990 +10462 160364 0.4300 +10462 170575 0.5400 +10462 200958 0.5310 +10462 394263 0.5310 +10462 497189 0.4750 +10462 727897 0.5080 +10463 10499 0.5490 +10463 10767 0.4240 +10463 23516 0.7140 +10463 25800 0.7400 +10463 27173 0.7400 +10463 29985 0.6120 +10463 29986 0.5890 +10463 51444 0.4990 +10463 54793 0.4830 +10463 54941 0.4850 +10463 55161 0.6840 +10463 55293 0.6090 +10463 55334 0.8070 +10463 55532 0.7850 +10463 55584 0.4570 +10463 55630 0.5820 +10463 55676 0.8620 +10463 56910 0.4180 +10463 57181 0.7400 +10463 64116 0.6670 +10463 64816 0.4080 +10463 64924 0.8680 +10463 91252 0.7260 +10463 92483 0.4850 +10463 130752 0.4870 +10463 148867 0.8490 +10463 160287 0.4850 +10463 169026 0.7040 +10463 201266 0.8090 +10463 221074 0.6970 +10463 222236 0.4040 +10463 255119 0.4710 +10463 283375 0.6980 +10463 389206 0.6270 +10463 390079 0.4990 +10464 10733 0.4910 +10464 10948 0.4330 +10464 22832 0.4930 +10464 22894 0.5980 +10464 22897 0.4130 +10464 22919 0.4170 +10464 22994 0.6210 +10464 23093 0.4720 +10464 51060 0.4310 +10464 51134 0.5430 +10464 51199 0.4750 +10464 54785 0.4200 +10464 55722 0.5380 +10464 55755 0.6070 +10464 55857 0.4590 +10464 64770 0.8640 +10464 79866 0.6990 +10464 80184 0.6910 +10464 80709 0.4190 +10464 83875 0.4020 +10464 93594 0.5210 +10464 117178 0.5120 +10464 123811 0.6760 +10464 152206 0.6590 +10464 153241 0.4840 +10464 163786 0.4130 +10464 165055 0.6400 +10464 254173 0.4570 +10464 285331 0.4090 +10464 339145 0.4890 +10464 343099 0.4240 +10464 374618 0.4160 +10464 440145 0.6550 +10464 729440 0.4970 +10465 10594 0.9830 +10465 10713 0.7620 +10465 10858 0.4020 +10465 10907 0.9480 +10465 10921 0.4920 +10465 10946 0.8690 +10465 10992 0.8530 +10465 11017 0.5910 +10465 11157 0.9650 +10465 11193 0.9650 +10465 11212 0.4350 +10465 11222 0.5660 +10465 22826 0.5630 +10465 22827 0.4610 +10465 22938 0.5420 +10465 22985 0.5690 +10465 23020 0.9650 +10465 23251 0.4580 +10465 23450 0.8400 +10465 23451 0.8350 +10465 23521 0.4030 +10465 23658 0.9560 +10465 23770 0.4170 +10465 24148 0.9690 +10465 25804 0.9800 +10465 25949 0.5250 +10465 26121 0.9990 +10465 26589 0.5550 +10465 27079 0.4400 +10465 27258 0.9750 +10465 27336 0.5040 +10465 27339 0.4790 +10465 28998 0.5740 +10465 29083 0.5160 +10465 29088 0.4620 +10465 49856 0.4140 +10465 51008 0.4800 +10465 51121 0.4280 +10465 51503 0.4280 +10465 51574 0.4170 +10465 51602 0.4410 +10465 51634 0.5050 +10465 51639 0.8730 +10465 51645 0.4150 +10465 51690 0.9740 +10465 51691 0.9660 +10465 51729 0.4680 +10465 51747 0.5090 +10465 53938 0.4780 +10465 54517 0.4820 +10465 54596 0.4370 +10465 54957 0.5550 +10465 55178 0.4640 +10465 55234 0.9070 +10465 55749 0.5150 +10465 55813 0.4310 +10465 56257 0.4660 +10465 56949 0.4760 +10465 57129 0.5540 +10465 57404 0.4530 +10465 57794 0.5090 +10465 57819 0.9720 +10465 59286 0.8820 +10465 63875 0.5490 +10465 65003 0.6430 +10465 79023 0.5140 +10465 79171 0.6290 +10465 79590 0.6340 +10465 79728 0.4800 +10465 79753 0.5010 +10465 80221 0.5400 +10465 83443 0.8800 +10465 83448 0.4570 +10465 84220 0.4960 +10465 84292 0.4450 +10465 84545 0.5290 +10465 84557 0.4260 +10465 84705 0.5230 +10465 84811 0.5350 +10465 84844 0.8930 +10465 84950 0.9460 +10465 84967 0.4340 +10465 92170 0.5460 +10465 115416 0.5480 +10465 151903 0.5080 +10465 153527 0.9530 +10465 219927 0.5900 +10465 285190 0.5660 +10465 285367 0.4130 +10465 317781 0.4960 +10465 653489 0.5170 +10465 727851 0.5650 +10465 729540 0.4960 +10465 729857 0.5820 +10465 100130890 0.4400 +10465 100131187 0.4420 +10466 10540 0.5140 +10466 10618 0.8100 +10466 10652 0.7080 +10466 10671 0.5030 +10466 10905 0.5740 +10466 11062 0.7480 +10466 11231 0.4290 +10466 11258 0.5060 +10466 11311 0.6230 +10466 11336 0.4270 +10466 22796 0.9990 +10466 22978 0.4120 +10466 23256 0.4590 +10466 23263 0.4020 +10466 23294 0.4300 +10466 23584 0.6980 +10466 25839 0.9990 +10466 25873 0.4480 +10466 26959 0.4100 +10466 27314 0.6360 +10466 27333 0.6840 +10466 29126 0.6110 +10466 50640 0.4470 +10466 51143 0.5060 +10466 51164 0.5030 +10466 51272 0.5980 +10466 51542 0.8170 +10466 51560 0.5170 +10466 54734 0.5270 +10466 54828 0.4010 +10466 54951 0.6090 +10466 54956 0.5950 +10466 55275 0.8410 +10466 55610 0.4130 +10466 55763 0.4670 +10466 55830 0.4660 +10466 55858 0.4280 +10466 55860 0.5070 +10466 57037 0.4030 +10466 57134 0.5370 +10466 57511 0.9990 +10466 57589 0.7870 +10466 60412 0.4470 +10466 60561 0.4360 +10466 63908 0.5000 +10466 64083 0.6270 +10466 79086 0.4130 +10466 79571 0.5640 +10466 79719 0.4070 +10466 83452 0.5450 +10466 83548 0.9990 +10466 84317 0.4600 +10466 84516 0.5070 +10466 85365 0.5690 +10466 90196 0.4990 +10466 91949 0.9990 +10466 92017 0.4150 +10466 93661 0.5380 +10466 126208 0.4150 +10466 140735 0.5130 +10466 143187 0.7530 +10466 200312 0.6410 +10466 339122 0.5040 +10466 347517 0.5160 +10466 375056 0.4430 +10467 10524 0.6800 +10467 10847 0.9950 +10467 10856 0.9970 +10467 10902 0.5690 +10467 10933 0.4190 +10467 29072 0.5140 +10467 29844 0.6020 +10467 51003 0.4030 +10467 51377 0.5400 +10467 51412 0.7350 +10467 51742 0.4760 +10467 54556 0.6430 +10467 54617 0.6440 +10467 54680 0.6930 +10467 54891 0.5400 +10467 55011 0.4340 +10467 55257 0.7640 +10467 55795 0.6100 +10467 55904 0.4490 +10467 55929 0.9500 +10467 56254 0.4140 +10467 57634 0.9590 +10467 64431 0.9980 +10467 79641 0.4750 +10467 79913 0.5400 +10467 80129 0.7270 +10467 80256 0.5000 +10467 81611 0.7130 +10467 83444 0.8450 +10467 83695 0.4280 +10467 84661 0.4660 +10467 84901 0.7030 +10467 84910 0.4150 +10467 90850 0.4130 +10467 93973 0.6220 +10467 94239 0.7640 +10467 123169 0.4650 +10467 125476 0.6440 +10467 128312 0.5020 +10467 133923 0.4610 +10467 255626 0.7730 +10467 283208 0.5870 +10467 283899 0.5730 +10467 284058 0.4180 +10467 388633 0.5990 +10467 100505841 0.4610 +10468 11167 0.6360 +10468 22943 0.4730 +10468 23105 0.4030 +10468 23181 0.6760 +10468 25805 0.5110 +10468 26281 0.6520 +10468 26291 0.4640 +10468 26585 0.5810 +10468 27006 0.6480 +10468 27250 0.4160 +10468 27283 0.6140 +10468 50859 0.6300 +10468 50964 0.4300 +10468 51378 0.4350 +10468 54361 0.6180 +10468 56884 0.4300 +10468 63976 0.4100 +10468 64093 0.7860 +10468 64094 0.4720 +10468 64388 0.5900 +10468 79154 0.4910 +10468 81621 0.6500 +10468 83729 0.9700 +10468 84467 0.5690 +10468 89780 0.4090 +10468 114907 0.4800 +10468 117166 0.8780 +10468 124857 0.8520 +10468 130399 0.5140 +10468 151449 0.5980 +10468 168667 0.5480 +10468 220202 0.4320 +10468 252995 0.5070 +10468 346673 0.5010 +10468 392255 0.5460 +10468 405754 0.4820 +10469 10525 0.4200 +10469 10730 0.4550 +10469 10939 0.4230 +10469 10953 0.4180 +10469 10989 0.4240 +10469 11331 0.5250 +10469 23203 0.7460 +10469 25813 0.7100 +10469 26515 0.5850 +10469 26517 0.7880 +10469 26519 0.9590 +10469 26520 0.7340 +10469 26521 0.5050 +10469 26589 0.4290 +10469 27235 0.4990 +10469 29090 0.9690 +10469 29103 0.9450 +10469 29928 0.8700 +10469 51025 0.9990 +10469 51042 0.5060 +10469 51060 0.4030 +10469 51069 0.7710 +10469 51073 0.4130 +10469 51081 0.4330 +10469 51119 0.4280 +10469 51161 0.5130 +10469 51491 0.4090 +10469 54543 0.7190 +10469 55695 0.4230 +10469 56993 0.9110 +10469 57794 0.5120 +10469 64965 0.5660 +10469 64969 0.4680 +10469 65008 0.5080 +10469 80273 0.9970 +10469 83858 0.4350 +10469 84134 0.6100 +10469 84311 0.6520 +10469 85476 0.5100 +10469 90580 0.4360 +10469 92170 0.4020 +10469 92609 0.9850 +10469 131118 0.9990 +10469 131474 0.6080 +10469 134266 0.8870 +10469 140823 0.8000 +10469 150274 0.6440 +10469 197257 0.5040 +10469 285521 0.4980 +10469 401505 0.6050 +10469 728489 0.6390 +10469 100188893 0.5440 +10469 100287932 0.9890 +10471 10492 0.4180 +10471 10552 0.5390 +10471 10574 0.9560 +10471 10575 0.9800 +10471 10576 0.9560 +10471 10693 0.6370 +10471 10694 0.9780 +10471 10726 0.4380 +10471 10728 0.7150 +10471 10856 0.9770 +10471 10963 0.7510 +10471 11140 0.6140 +10471 11321 0.9040 +10471 11333 0.4300 +10471 22948 0.9550 +10471 23046 0.4590 +10471 23234 0.5590 +10471 23435 0.4280 +10471 23658 0.4620 +10471 23753 0.5610 +10471 25764 0.4520 +10471 25885 0.4900 +10471 26015 0.7780 +10471 26353 0.5400 +10471 26517 0.5550 +10471 26519 0.4370 +10471 27339 0.5440 +10471 29063 0.6780 +10471 51069 0.6450 +10471 51081 0.4820 +10471 51082 0.4550 +10471 51184 0.7330 +10471 51398 0.5680 +10471 51645 0.4150 +10471 51690 0.4470 +10471 51691 0.4910 +10471 51726 0.5660 +10471 51759 0.6850 +10471 54529 0.4400 +10471 54542 0.4110 +10471 54680 0.4320 +10471 54797 0.6920 +10471 55011 0.9610 +10471 55172 0.5940 +10471 55651 0.5770 +10471 55703 0.4460 +10471 56984 0.5890 +10471 57003 0.5560 +10471 57819 0.4560 +10471 64928 0.4110 +10471 65123 0.7660 +10471 79590 0.4480 +10471 79657 0.9960 +10471 79871 0.9000 +10471 80349 0.6220 +10471 81027 0.5420 +10471 81572 0.9990 +10471 83443 0.4420 +10471 84617 0.5470 +10471 84790 0.6410 +10471 84950 0.6830 +10471 112714 0.8130 +10471 113457 0.5760 +10471 116143 0.9940 +10471 120379 0.6090 +10471 125061 0.4370 +10471 128308 0.6210 +10471 140809 0.4180 +10471 150160 0.5780 +10471 245936 0.5910 +10471 337960 0.4930 +10471 347733 0.5430 +10471 110599588 0.8860 +10472 10806 0.4150 +10472 22887 0.4700 +10472 23013 0.4070 +10472 55083 0.4330 +10472 64839 0.6580 +10472 79842 0.5910 +10472 84418 0.4250 +10472 116228 0.5400 +10472 123169 0.4020 +10472 200159 0.4680 +10472 100128927 0.6540 +10473 10557 0.6280 +10473 10765 0.4020 +10473 10988 0.4330 +10473 11128 0.7050 +10473 11222 0.7830 +10473 11224 0.9390 +10473 22927 0.5050 +10473 22984 0.8180 +10473 23135 0.4260 +10473 23173 0.4760 +10473 23204 0.6140 +10473 23252 0.6070 +10473 23405 0.5290 +10473 23521 0.8340 +10473 23560 0.5250 +10473 23640 0.6800 +10473 25873 0.9160 +10473 25885 0.6520 +10473 26135 0.5180 +10473 26164 0.4480 +10473 26251 0.4780 +10473 26589 0.6550 +10473 27012 0.5440 +10473 27079 0.4570 +10473 27430 0.4160 +10473 28998 0.7740 +10473 29083 0.5390 +10473 29088 0.5550 +10473 29093 0.7820 +10473 29102 0.5320 +10473 29927 0.8000 +10473 29997 0.5220 +10473 51008 0.4280 +10473 51021 0.9040 +10473 51023 0.5150 +10473 51042 0.4100 +10473 51065 0.7300 +10473 51068 0.4850 +10473 51069 0.7750 +10473 51073 0.7770 +10473 51081 0.7860 +10473 51116 0.6810 +10473 51121 0.8210 +10473 51149 0.8040 +10473 51154 0.8290 +10473 51187 0.6230 +10473 51263 0.5010 +10473 51264 0.9100 +10473 51314 0.5900 +10473 51319 0.7320 +10473 54059 0.5500 +10473 54148 0.4270 +10473 54431 0.7420 +10473 54517 0.4670 +10473 54948 0.6870 +10473 54965 0.4120 +10473 54969 0.4350 +10473 55052 0.9090 +10473 55143 0.4210 +10473 55168 0.5330 +10473 55173 0.8330 +10473 55176 0.7980 +10473 55178 0.4940 +10473 55272 0.8350 +10473 55316 0.8050 +10473 55591 0.4250 +10473 55651 0.6260 +10473 55703 0.7850 +10473 56479 0.4780 +10473 56648 0.6470 +10473 56965 0.5540 +10473 57129 0.6650 +10473 57136 0.4070 +10473 57471 0.4240 +10473 60488 0.5810 +10473 60558 0.6160 +10473 63875 0.9090 +10473 63931 0.7820 +10473 64146 0.6260 +10473 64374 0.6830 +10473 64432 0.4920 +10473 64960 0.7830 +10473 64963 0.7820 +10473 64965 0.9070 +10473 64968 0.9070 +10473 64969 0.8310 +10473 64975 0.6210 +10473 64976 0.5180 +10473 64978 0.4470 +10473 64979 0.9080 +10473 64981 0.5460 +10473 64983 0.9030 +10473 65005 0.9050 +10473 65008 0.7770 +10473 65080 0.5370 +10473 65121 0.5440 +10473 65122 0.5440 +10473 79366 0.4560 +10473 79590 0.7770 +10473 79631 0.6970 +10473 79668 0.5560 +10473 79728 0.6180 +10473 79922 0.4270 +10473 80222 0.4160 +10473 83448 0.4540 +10473 84154 0.5240 +10473 84172 0.7690 +10473 84545 0.6740 +10473 84705 0.6120 +10473 84881 0.4560 +10473 84993 0.5040 +10473 85476 0.7010 +10473 85865 0.4630 +10473 87178 0.4120 +10473 90313 0.5120 +10473 92399 0.8300 +10473 93107 0.4780 +10473 94026 0.4720 +10473 113000 0.4450 +10473 114987 0.6970 +10473 115416 0.6160 +10473 116541 0.5330 +10473 116832 0.6820 +10473 122622 0.5710 +10473 123283 0.4110 +10473 124454 0.6020 +10473 124995 0.4840 +10473 126402 0.7830 +10473 140032 0.7590 +10473 140801 0.7350 +10473 143244 0.6450 +10473 157310 0.4390 +10473 169522 0.4780 +10473 170850 0.4780 +10473 200916 0.7180 +10473 201595 0.5030 +10473 219927 0.9050 +10473 254268 0.7440 +10473 283518 0.4780 +10473 285367 0.4490 +10473 285855 0.7300 +10473 317772 0.4130 +10473 343068 0.5440 +10473 343070 0.5440 +10473 347487 0.7460 +10473 374659 0.6960 +10473 387129 0.7270 +10473 390999 0.5440 +10473 391002 0.5440 +10473 400735 0.5440 +10473 400736 0.5440 +10473 440560 0.5440 +10473 440561 0.5440 +10473 441873 0.5440 +10473 641776 0.6000 +10473 643909 0.6000 +10473 645051 0.5680 +10473 645073 0.5680 +10473 645359 0.5440 +10473 653619 0.5440 +10473 728524 0.6000 +10473 729396 0.5680 +10473 729422 0.5680 +10473 729428 0.5680 +10473 729431 0.5680 +10473 729442 0.5680 +10473 729447 0.5680 +10473 729528 0.5440 +10473 100008586 0.5680 +10473 100130890 0.4620 +10473 100131187 0.4630 +10473 100132399 0.5680 +10473 100287482 0.6730 +10473 100505478 0.6940 +10473 100526842 0.7980 +10473 100529097 0.6920 +10473 100529239 0.7210 +10473 100996746 0.6000 +10473 101929983 0.5440 +10473 102724473 0.5680 +10473 105180390 0.6000 +10473 105180391 0.6000 +10474 10629 0.9990 +10474 11091 0.9720 +10474 11154 0.4050 +10474 22884 0.4650 +10474 22900 0.6020 +10474 23253 0.4500 +10474 23326 0.9970 +10474 23450 0.7390 +10474 25862 0.5650 +10474 26009 0.9900 +10474 26037 0.6200 +10474 26574 0.4050 +10474 27097 0.9990 +10474 27443 0.8430 +10474 28513 0.5550 +10474 29803 0.4480 +10474 30827 0.4770 +10474 30851 0.4400 +10474 51562 0.9820 +10474 51567 0.5160 +10474 51588 0.5000 +10474 51616 0.9980 +10474 54107 0.8740 +10474 54145 0.4430 +10474 54938 0.4590 +10474 55257 0.7020 +10474 55578 0.9990 +10474 55689 0.9930 +10474 55729 0.4620 +10474 55929 0.4660 +10474 56655 0.8450 +10474 56658 0.5150 +10474 56943 0.9980 +10474 56970 0.9960 +10474 57180 0.4050 +10474 57325 0.9900 +10474 57685 0.4170 +10474 58190 0.4840 +10474 60491 0.7510 +10474 63941 0.4340 +10474 64376 0.4700 +10474 78987 0.4170 +10474 79077 0.4380 +10474 79595 0.8080 +10474 80818 0.4430 +10474 83443 0.8500 +10474 83852 0.4010 +10474 84101 0.5270 +10474 84148 0.4050 +10474 84749 0.5310 +10474 85235 0.5020 +10474 85236 0.6020 +10474 85443 0.4310 +10474 92815 0.5020 +10474 93624 0.9990 +10474 112869 0.9990 +10474 114781 0.5230 +10474 117143 0.9980 +10474 123920 0.4020 +10474 127002 0.7920 +10474 128312 0.7130 +10474 158880 0.8560 +10474 158983 0.4430 +10474 162387 0.4490 +10474 167465 0.4340 +10474 221302 0.4830 +10474 221613 0.5020 +10474 222255 0.7470 +10474 255626 0.6060 +10474 256364 0.4180 +10474 284371 0.4990 +10474 286436 0.4430 +10474 317772 0.5020 +10474 337867 0.4300 +10474 374395 0.7590 +10474 387332 0.8290 +10474 389856 0.8490 +10474 399949 0.6250 +10474 440093 0.4980 +10474 440686 0.4990 +10474 440689 0.7090 +10474 552889 0.5200 +10474 653604 0.6860 +10474 100131755 0.5210 +10474 100287513 0.5270 +10474 114483833 0.4430 +10475 22954 0.5520 +10475 23118 0.7670 +10475 23586 0.5370 +10475 23650 0.4450 +10475 29110 0.4850 +10475 50852 0.6330 +10475 51428 0.4120 +10475 57337 0.4030 +10475 57506 0.4320 +10475 64135 0.5230 +10475 64343 0.5240 +10475 79132 0.4190 +10475 81603 0.4410 +10475 81844 0.7460 +10475 85364 0.5620 +10475 91445 0.4380 +10475 114088 0.4720 +10475 115004 0.6310 +10475 257397 0.5380 +10475 442862 0.5070 +10476 10632 0.9990 +10476 10765 0.7560 +10476 10935 0.4870 +10476 10939 0.4120 +10476 10975 0.9440 +10476 10989 0.4260 +10476 11079 0.5160 +10476 11112 0.4470 +10476 11315 0.4170 +10476 11331 0.4490 +10476 23135 0.8340 +10476 23203 0.4870 +10476 23510 0.7010 +10476 23678 0.5000 +10476 25874 0.5720 +10476 27034 0.4170 +10476 27068 0.8170 +10476 27089 0.9670 +10476 27109 0.8720 +10476 27350 0.5350 +10476 28976 0.5540 +10476 29796 0.9570 +10476 30968 0.4400 +10476 50808 0.4810 +10476 51023 0.5040 +10476 51079 0.9180 +10476 51081 0.4740 +10476 51142 0.8020 +10476 51263 0.5670 +10476 51314 0.4430 +10476 51382 0.4060 +10476 51650 0.4330 +10476 51651 0.4020 +10476 54205 0.6120 +10476 54514 0.4970 +10476 54539 0.9400 +10476 54543 0.4690 +10476 54927 0.6380 +10476 55028 0.9550 +10476 55082 0.4070 +10476 55143 0.9790 +10476 55351 0.5000 +10476 55847 0.5620 +10476 55967 0.9660 +10476 56901 0.7110 +10476 56993 0.5880 +10476 57017 0.4340 +10476 57379 0.5270 +10476 60386 0.8570 +10476 60489 0.5350 +10476 63875 0.4780 +10476 63931 0.4100 +10476 64077 0.7050 +10476 64111 0.4220 +10476 64137 0.4090 +10476 64240 0.4090 +10476 64241 0.4090 +10476 64756 0.4290 +10476 64975 0.4370 +10476 79002 0.7380 +10476 79637 0.4570 +10476 79728 0.4220 +10476 84303 0.4030 +10476 84701 0.8610 +10476 84833 0.9990 +10476 84886 0.8360 +10476 84939 0.4430 +10476 93974 0.9800 +10476 116541 0.4660 +10476 118813 0.4120 +10476 125965 0.7790 +10476 126328 0.5540 +10476 133396 0.4970 +10476 137868 0.4720 +10476 139221 0.4430 +10476 140564 0.5270 +10476 155066 0.5810 +10476 164668 0.5270 +10476 170712 0.6030 +10476 200315 0.5270 +10476 200316 0.5310 +10476 202374 0.5000 +10476 245972 0.4120 +10476 267020 0.9940 +10476 282974 0.5000 +10476 283459 0.7310 +10476 284184 0.4820 +10476 374291 0.8460 +10476 388753 0.6760 +10476 391059 0.5000 +10476 400916 0.5080 +10476 440400 0.5400 +10476 440567 0.8400 +10476 728317 0.4430 +10476 100526740 0.5400 +10476 100532726 0.7290 +10477 10533 0.6140 +10477 10612 0.5110 +10477 11060 0.4890 +10477 11065 0.4520 +10477 11337 0.5520 +10477 22888 0.5300 +10477 23304 0.4700 +10477 23327 0.9030 +10477 23435 0.5090 +10477 26001 0.4910 +10477 26994 0.4950 +10477 27338 0.4840 +10477 29089 0.4580 +10477 29945 0.4670 +10477 51194 0.9340 +10477 51529 0.4220 +10477 54708 0.7640 +10477 54926 0.5130 +10477 55070 0.7150 +10477 55072 0.4080 +10477 55182 0.4520 +10477 55213 0.4530 +10477 55236 0.7500 +10477 55284 0.4950 +10477 55611 0.6840 +10477 55825 0.4210 +10477 56852 0.5230 +10477 57159 0.5540 +10477 64219 0.4440 +10477 64320 0.7560 +10477 65264 0.5390 +10477 79016 0.4280 +10477 79594 0.7740 +10477 79661 0.5950 +10477 79718 0.4160 +10477 79876 0.6460 +10477 83737 0.4330 +10477 84676 0.5710 +10477 91445 0.6740 +10477 92912 0.6220 +10477 118424 0.5070 +10477 135892 0.6290 +10477 145226 0.4630 +10477 197131 0.5500 +10477 387082 0.4350 +10477 387522 0.4390 +10477 100130733 0.5160 +10478 10570 0.4240 +10478 11264 0.7560 +10478 23787 0.8970 +10478 23788 0.8490 +10478 26515 0.6490 +10478 29966 0.4840 +10478 51024 0.6440 +10478 51555 0.5110 +10478 54332 0.5420 +10478 55670 0.6950 +10478 56896 0.4230 +10478 64849 0.4170 +10478 79607 0.4550 +10478 84896 0.6210 +10478 91137 0.4280 +10478 91452 0.6480 +10478 92014 0.5800 +10478 92960 0.4100 +10478 147407 0.4370 +10478 196294 0.4230 +10478 349565 0.4330 +10478 390916 0.4200 +10478 401612 0.5290 +10479 23229 0.4130 +10479 51114 0.4050 +10479 55777 0.4220 +10479 55906 0.4630 +10479 57526 0.5350 +10479 57575 0.4470 +10479 64838 0.4140 +10479 79868 0.4280 +10479 80024 0.4070 +10479 84679 0.9460 +10479 93380 0.4780 +10479 114805 0.4120 +10479 133308 0.9180 +10479 150159 0.5990 +10479 205428 0.8270 +10479 222537 0.4490 +10479 254170 0.4290 +10479 266743 0.7010 +10479 284525 0.5050 +10479 285335 0.5980 +10480 10574 0.5960 +10480 10575 0.8270 +10480 10576 0.7190 +10480 10617 0.5290 +10480 10694 0.8090 +10480 10944 0.4220 +10480 10980 0.7240 +10480 10987 0.9140 +10480 22948 0.5730 +10480 23204 0.4110 +10480 23521 0.7370 +10480 23560 0.6140 +10480 26986 0.5300 +10480 27316 0.4690 +10480 27335 0.9990 +10480 28977 0.4750 +10480 29099 0.4170 +10480 51081 0.4420 +10480 51116 0.4730 +10480 51121 0.4090 +10480 51138 0.7620 +10480 51386 0.9990 +10480 51574 0.4160 +10480 51637 0.4910 +10480 54505 0.5950 +10480 55234 0.4070 +10480 55346 0.5280 +10480 56339 0.4190 +10480 57470 0.4630 +10480 57559 0.5220 +10480 60313 0.4400 +10480 64969 0.4060 +10480 79056 0.4260 +10480 79184 0.5250 +10480 80155 0.6170 +10480 83742 0.4470 +10480 84954 0.5780 +10480 85377 0.8460 +10480 91614 0.9260 +10480 114803 0.5260 +10480 114987 0.4760 +10480 120526 0.4070 +10480 120534 0.4060 +10480 126402 0.4020 +10480 140032 0.4200 +10480 221357 0.4310 +10480 286187 0.6150 +10480 493860 0.5760 +10480 728689 0.9970 +10481 11200 0.5050 +10481 51412 0.4600 +10481 51450 0.8320 +10481 55275 0.4170 +10481 55532 0.4110 +10481 55540 0.7470 +10481 64924 0.4010 +10481 79728 0.5250 +10481 79850 0.4630 +10481 79977 0.5960 +10481 84366 0.9880 +10481 222546 0.4940 +10481 360205 0.9210 +10482 10519 0.4260 +10482 10657 0.4030 +10482 10762 0.8080 +10482 10772 0.5690 +10482 10898 0.8320 +10482 10914 0.4370 +10482 10921 0.9980 +10482 10929 0.6990 +10482 10982 0.6390 +10482 11052 0.8880 +10482 11097 0.9700 +10482 11100 0.9930 +10482 11260 0.6780 +10482 11338 0.7050 +10482 22794 0.4760 +10482 22803 0.4900 +10482 22916 0.9040 +10482 22938 0.4100 +10482 23091 0.4850 +10482 23165 0.7870 +10482 23191 0.4340 +10482 23223 0.5490 +10482 23225 0.5970 +10482 23279 0.6880 +10482 23353 0.5260 +10482 23435 0.4310 +10482 23511 0.7310 +10482 23517 0.6240 +10482 23534 0.4710 +10482 23560 0.4050 +10482 23636 0.9890 +10482 25777 0.5110 +10482 25962 0.4230 +10482 26019 0.7510 +10482 26097 0.8230 +10482 26747 0.4380 +10482 26986 0.7870 +10482 26993 0.6060 +10482 27316 0.5930 +10482 29107 0.9990 +10482 29889 0.4690 +10482 29890 0.8050 +10482 29894 0.6330 +10482 29901 0.5550 +10482 30000 0.9240 +10482 51068 0.7890 +10482 51154 0.6680 +10482 51187 0.4690 +10482 51194 0.5630 +10482 51213 0.7900 +10482 51320 0.5140 +10482 51441 0.5070 +10482 51585 0.7260 +10482 51593 0.4550 +10482 51692 0.6870 +10482 51808 0.5530 +10482 53371 0.8090 +10482 53981 0.6390 +10482 54464 0.5090 +10482 54606 0.5230 +10482 54870 0.5000 +10482 54890 0.4560 +10482 54915 0.5390 +10482 55082 0.4220 +10482 55110 0.6680 +10482 55308 0.5430 +10482 55339 0.6470 +10482 55341 0.6470 +10482 55421 0.5430 +10482 55660 0.4620 +10482 55677 0.4870 +10482 55706 0.5590 +10482 55746 0.8590 +10482 55795 0.6510 +10482 55916 0.9970 +10482 56000 0.6910 +10482 56001 0.5660 +10482 56339 0.4720 +10482 56943 0.7780 +10482 57107 0.4690 +10482 57122 0.9280 +10482 57187 0.8850 +10482 57510 0.5410 +10482 57532 0.4220 +10482 57721 0.4320 +10482 57727 0.4510 +10482 64783 0.9630 +10482 64848 0.4530 +10482 65108 0.5890 +10482 65109 0.9990 +10482 65110 0.9990 +10482 79023 0.5910 +10482 79084 0.4420 +10482 79228 0.7460 +10482 79711 0.4720 +10482 79869 0.6100 +10482 79882 0.7020 +10482 79902 0.8970 +10482 79923 0.4260 +10482 80145 0.6470 +10482 80335 0.6920 +10482 81608 0.5650 +10482 81611 0.4110 +10482 81929 0.8260 +10482 84220 0.5700 +10482 84248 0.9810 +10482 84271 0.6870 +10482 84321 0.7530 +10482 84324 0.5970 +10482 91746 0.9200 +10482 124245 0.4270 +10482 129401 0.6760 +10482 253943 0.4580 +10482 266743 0.5420 +10482 348995 0.6340 +10482 389170 0.4010 +10482 392517 0.5590 +10482 728343 0.6800 +10482 729857 0.6610 +10482 100101267 0.7260 +10483 10484 0.9490 +10483 10490 0.4510 +10483 10661 0.7410 +10483 10741 0.5090 +10483 10802 0.9990 +10483 10952 0.4400 +10483 10959 0.5280 +10483 10960 0.4640 +10483 10972 0.4200 +10483 11196 0.7160 +10483 11231 0.4510 +10483 22820 0.5620 +10483 22872 0.9990 +10483 25956 0.9850 +10483 26003 0.6190 +10483 26958 0.4240 +10483 26984 0.5560 +10483 27095 0.8490 +10483 29927 0.6220 +10483 51014 0.6130 +10483 51128 0.9560 +10483 51251 0.4160 +10483 51272 0.4230 +10483 54461 0.9970 +10483 55018 0.6360 +10483 55176 0.5620 +10483 56681 0.9990 +10483 57325 0.4350 +10483 59349 0.8630 +10483 64083 0.8140 +10483 64689 0.4440 +10483 64764 0.4610 +10483 65977 0.5050 +10483 81876 0.5510 +10483 84529 0.7220 +10483 85477 0.6270 +10483 89866 0.6600 +10483 91369 0.6360 +10483 92675 0.4340 +10483 122553 0.4080 +10483 127262 0.5080 +10483 133619 0.5260 +10483 146059 0.9440 +10483 205717 0.4190 +10483 375056 0.5330 +10483 553115 0.6640 +10483 100144748 0.5070 +10484 10652 0.6100 +10484 10802 0.9990 +10484 10945 0.4160 +10484 10952 0.4250 +10484 10959 0.8280 +10484 10960 0.6470 +10484 10972 0.7330 +10484 11196 0.8880 +10484 11231 0.4570 +10484 22820 0.5460 +10484 22872 0.9990 +10484 22937 0.5590 +10484 23256 0.6650 +10484 25956 0.9770 +10484 26003 0.5000 +10484 26100 0.4780 +10484 26984 0.7740 +10484 27095 0.7610 +10484 27230 0.4080 +10484 29927 0.5660 +10484 29978 0.4200 +10484 51014 0.9390 +10484 51128 0.9600 +10484 51141 0.4040 +10484 51272 0.4120 +10484 51614 0.4420 +10484 55014 0.5580 +10484 55018 0.6360 +10484 55176 0.5090 +10484 55191 0.5480 +10484 56681 0.9950 +10484 59349 0.9570 +10484 63908 0.6280 +10484 64083 0.8150 +10484 64129 0.5940 +10484 64689 0.7400 +10484 64764 0.5530 +10484 79748 0.6250 +10484 79876 0.4010 +10484 79879 0.4490 +10484 81555 0.4820 +10484 81562 0.6450 +10484 81876 0.4370 +10484 85477 0.5620 +10484 89866 0.9370 +10484 90411 0.6140 +10484 91369 0.6390 +10484 113201 0.4260 +10484 120227 0.5060 +10484 122553 0.4790 +10484 133619 0.7960 +10484 144193 0.7160 +10484 149111 0.5530 +10484 254263 0.5530 +10484 375056 0.9610 +10484 553115 0.9370 +10486 10487 0.8360 +10486 11034 0.5380 +10486 11344 0.9150 +10486 23035 0.7090 +10486 23239 0.7080 +10486 23406 0.5610 +10486 28988 0.7960 +10486 84248 0.4400 +10486 125988 0.5610 +10486 221662 0.5750 +10486 345456 0.5020 +10486 345651 0.6420 +10486 375189 0.7300 +10486 389207 0.8290 +10486 643226 0.5130 +10486 653269 0.5500 +10486 653781 0.6270 +10486 728378 0.4070 +10486 100287284 0.5580 +10487 10627 0.4630 +10487 11034 0.5780 +10487 11344 0.9180 +10487 23035 0.7080 +10487 23239 0.7080 +10487 23406 0.6340 +10487 28988 0.8180 +10487 55860 0.4250 +10487 56729 0.9630 +10487 83442 0.4400 +10487 84248 0.4340 +10487 84666 0.9370 +10487 103910 0.6470 +10487 125988 0.5600 +10487 345456 0.7290 +10487 345651 0.6790 +10487 375189 0.8490 +10487 389207 0.7440 +10487 643226 0.5130 +10487 653269 0.4990 +10487 728378 0.4100 +10487 100287284 0.5580 +10488 10518 0.4100 +10488 10538 0.4950 +10488 10672 0.5160 +10488 10891 0.9400 +10488 10956 0.4080 +10488 22926 0.6090 +10488 23588 0.8990 +10488 23641 0.5150 +10488 23683 0.6500 +10488 25827 0.4910 +10488 25865 0.6540 +10488 27031 0.4210 +10488 29915 0.9240 +10488 51360 0.8780 +10488 54887 0.4400 +10488 56034 0.5690 +10488 56947 0.4270 +10488 57118 0.6550 +10488 57172 0.6510 +10488 58487 0.9450 +10488 64344 0.6270 +10488 64764 0.9640 +10488 80011 0.5190 +10488 81501 0.9590 +10488 84699 0.9580 +10488 84961 0.4910 +10488 90993 0.9470 +10488 93986 0.4100 +10488 122773 0.8520 +10488 147339 0.4500 +10488 148327 0.9600 +10488 153222 0.9810 +10488 200186 0.9260 +10488 338645 0.4160 +10489 22836 0.6890 +10489 23412 0.5070 +10489 26118 0.4470 +10489 28952 0.5070 +10489 28991 0.5040 +10489 29099 0.5090 +10489 51122 0.5060 +10489 51224 0.6290 +10489 51397 0.5040 +10489 54939 0.5110 +10489 54951 0.5040 +10489 55832 0.5460 +10489 120939 0.4070 +10489 140739 0.5380 +10489 149951 0.5060 +10489 150684 0.5090 +10489 170622 0.5040 +10490 10618 0.4090 +10490 10652 0.9990 +10490 10791 0.6800 +10490 10814 0.5690 +10490 10815 0.5940 +10490 10890 0.4810 +10490 10897 0.6590 +10490 11252 0.5570 +10490 11258 0.6120 +10490 11311 0.9520 +10490 11336 0.5850 +10490 11337 0.7260 +10490 11345 0.8000 +10490 22796 0.4520 +10490 22863 0.4050 +10490 22905 0.6910 +10490 23062 0.4620 +10490 23192 0.6870 +10490 23256 0.8870 +10490 23265 0.4210 +10490 23339 0.8310 +10490 23355 0.4890 +10490 23673 0.9790 +10490 23710 0.7610 +10490 25839 0.4280 +10490 26276 0.8230 +10490 26984 0.9330 +10490 26985 0.4840 +10490 27072 0.9400 +10490 29091 0.6510 +10490 29924 0.6720 +10490 30849 0.4140 +10490 51272 0.7690 +10490 51594 0.7420 +10490 51622 0.6120 +10490 51699 0.4140 +10490 51806 0.4210 +10490 53407 0.9320 +10490 55014 0.9290 +10490 55040 0.7030 +10490 55275 0.4800 +10490 55315 0.5240 +10490 55681 0.4060 +10490 55705 0.4790 +10490 55763 0.4310 +10490 55823 0.9360 +10490 55850 0.8480 +10490 56681 0.4020 +10490 56947 0.6200 +10490 57511 0.4760 +10490 57617 0.9410 +10490 58533 0.4010 +10490 63908 0.9080 +10490 64083 0.4160 +10490 64601 0.9410 +10490 65082 0.8730 +10490 79065 0.4250 +10490 81631 0.6820 +10490 83548 0.5750 +10490 84079 0.5520 +10490 84193 0.4690 +10490 84557 0.6180 +10490 84867 0.4830 +10490 91860 0.4220 +10490 112755 0.6580 +10490 116841 0.7610 +10490 134957 0.9240 +10490 143187 0.9730 +10490 146705 0.4270 +10490 150350 0.4130 +10490 160364 0.4220 +10490 163688 0.4220 +10490 203062 0.8080 +10490 203245 0.5990 +10490 221960 0.5840 +10490 286827 0.4180 +10490 339302 0.5400 +10490 415117 0.7980 +10490 440738 0.6570 +10490 594855 0.5400 +10491 10536 0.5370 +10491 11051 0.5690 +10491 23184 0.4790 +10491 50509 0.5160 +10491 50964 0.4470 +10491 51360 0.6580 +10491 55151 0.8330 +10491 55214 0.5170 +10491 55603 0.5070 +10491 56975 0.4010 +10491 57642 0.6280 +10491 60681 0.8720 +10491 64175 0.9990 +10491 79879 0.4130 +10491 80781 0.5480 +10491 81578 0.6740 +10491 84570 0.5030 +10491 85301 0.6410 +10491 90993 0.6930 +10491 91522 0.5030 +10491 121340 0.6260 +10491 131873 0.5300 +10491 136227 0.5500 +10491 149111 0.4060 +10491 155382 0.4910 +10491 169044 0.6340 +10491 202018 0.4180 +10491 255631 0.5950 +10491 340267 0.6600 +10491 375056 0.4910 +10491 387733 0.7830 +10492 10514 0.5200 +10492 10521 0.4720 +10492 10526 0.4290 +10492 10574 0.6260 +10492 10575 0.6880 +10492 10576 0.7120 +10492 10594 0.6180 +10492 10605 0.9870 +10492 10625 0.4260 +10492 10642 0.9870 +10492 10643 0.4810 +10492 10644 0.5690 +10492 10657 0.7990 +10492 10694 0.6910 +10492 10726 0.4400 +10492 10949 0.7740 +10492 11051 0.4070 +10492 11052 0.4620 +10492 11060 0.5190 +10492 11100 0.4590 +10492 11171 0.4440 +10492 11198 0.5350 +10492 11218 0.6910 +10492 11338 0.7040 +10492 22826 0.4390 +10492 22913 0.5130 +10492 22927 0.5230 +10492 22948 0.5840 +10492 23016 0.4290 +10492 23091 0.5750 +10492 23160 0.4400 +10492 23185 0.4350 +10492 23196 0.7490 +10492 23367 0.4970 +10492 23405 0.5280 +10492 23435 0.8100 +10492 23450 0.6150 +10492 23521 0.9990 +10492 23560 0.4040 +10492 25804 0.5000 +10492 25914 0.4930 +10492 25929 0.7010 +10492 25940 0.5110 +10492 25962 0.6800 +10492 25973 0.7000 +10492 26065 0.5690 +10492 26097 0.5390 +10492 26135 0.7280 +10492 26471 0.4500 +10492 26523 0.4350 +10492 26986 0.9290 +10492 27161 0.4640 +10492 27316 0.6890 +10492 27339 0.5570 +10492 28998 0.9720 +10492 29100 0.4060 +10492 29890 0.5610 +10492 29974 0.7790 +10492 29978 0.4970 +10492 50628 0.5220 +10492 51386 0.4840 +10492 51493 0.6260 +10492 51574 0.6370 +10492 51637 0.4710 +10492 51808 0.4550 +10492 54433 0.5220 +10492 54464 0.4010 +10492 54606 0.5230 +10492 55037 0.4820 +10492 55122 0.4030 +10492 55132 0.4480 +10492 55660 0.4830 +10492 56257 0.5360 +10492 56259 0.4550 +10492 56339 0.6780 +10492 56341 0.8350 +10492 57721 0.6750 +10492 60489 0.6360 +10492 64783 0.5620 +10492 79048 0.4490 +10492 79760 0.5050 +10492 79833 0.4610 +10492 79872 0.5560 +10492 79968 0.5210 +10492 80218 0.5320 +10492 84946 0.4380 +10492 90459 0.9370 +10492 90806 0.4520 +10492 90957 0.4930 +10492 113251 0.6460 +10492 124540 0.5090 +10492 127833 0.5870 +10492 129831 0.4290 +10492 134353 0.7640 +10492 149041 0.4410 +10492 164832 0.4960 +10492 170506 0.4660 +10492 202559 0.4010 +10492 220988 0.6250 +10492 221092 0.5030 +10492 494115 0.6230 +10493 51071 0.4340 +10493 51102 0.4560 +10493 84263 0.5270 +10493 134510 0.4350 +10494 10971 0.5730 +10494 11235 0.9990 +10494 11261 0.4320 +10494 11329 0.5110 +10494 23012 0.5020 +10494 25843 0.9990 +10494 26127 0.9960 +10494 26993 0.4150 +10494 29888 0.9980 +10494 29966 0.9980 +10494 51078 0.5640 +10494 51281 0.4220 +10494 51719 0.9950 +10494 51765 0.9990 +10494 54331 0.4200 +10494 55233 0.4180 +10494 55286 0.8320 +10494 55917 0.9960 +10494 57154 0.4300 +10494 57464 0.9990 +10494 57493 0.4050 +10494 57551 0.8030 +10494 57649 0.5680 +10494 64083 0.8430 +10494 64689 0.8290 +10494 79567 0.7590 +10494 80143 0.9970 +10494 80342 0.9950 +10494 81617 0.6140 +10494 83605 0.8620 +10494 83992 0.9950 +10494 85369 0.9990 +10494 90678 0.8300 +10494 90850 0.4550 +10494 92335 0.7770 +10494 114790 0.4540 +10495 10556 0.5870 +10495 27252 0.5340 +10495 27332 0.4080 +10495 51367 0.6110 +10495 59272 0.6980 +10495 81627 0.4420 +10495 138716 0.4940 +10495 203069 0.4040 +10495 205428 0.4400 +10495 317662 0.4710 +10497 10815 0.7520 +10497 11336 0.4620 +10497 22829 0.5350 +10497 22871 0.5780 +10497 22895 0.6490 +10497 22999 0.9980 +10497 23025 0.9030 +10497 23077 0.6370 +10497 23085 0.9930 +10497 23208 0.4670 +10497 23435 0.4820 +10497 23504 0.7810 +10497 26059 0.5310 +10497 27445 0.6630 +10497 51806 0.9660 +10497 54413 0.5550 +10497 54769 0.5990 +10497 54843 0.4080 +10497 55327 0.6070 +10497 57030 0.7000 +10497 57502 0.5070 +10497 57555 0.5640 +10497 64130 0.5200 +10497 83871 0.8110 +10497 85439 0.4270 +10497 91683 0.4790 +10497 91860 0.9630 +10497 94121 0.4510 +10497 112755 0.8620 +10497 127833 0.6700 +10497 134957 0.7260 +10497 140730 0.5010 +10497 163688 0.9630 +10497 200933 0.7100 +10497 201294 0.4290 +10497 415117 0.5020 +10497 440279 0.9040 +10498 10499 0.9940 +10498 10524 0.6940 +10498 10847 0.5820 +10498 10915 0.6490 +10498 10919 0.6100 +10498 11010 0.4220 +10498 11091 0.5980 +10498 23028 0.6660 +10498 23054 0.6370 +10498 23067 0.4170 +10498 23135 0.4400 +10498 23210 0.5780 +10498 23309 0.6480 +10498 23411 0.5780 +10498 23426 0.7240 +10498 23476 0.5460 +10498 23493 0.4020 +10498 23522 0.4110 +10498 23569 0.5550 +10498 23637 0.5430 +10498 25942 0.6750 +10498 25946 0.4530 +10498 26267 0.4230 +10498 26986 0.9570 +10498 27043 0.5790 +10498 27063 0.4190 +10498 28996 0.6080 +10498 29072 0.4210 +10498 29841 0.4040 +10498 50486 0.4050 +10498 51111 0.4440 +10498 51504 0.5220 +10498 51530 0.4330 +10498 51586 0.4270 +10498 51741 0.4390 +10498 54496 0.4010 +10498 55170 0.4990 +10498 55269 0.4930 +10498 55870 0.4690 +10498 56341 0.6180 +10498 56950 0.5040 +10498 57179 0.4340 +10498 57693 0.5050 +10498 57761 0.4210 +10498 57805 0.5090 +10498 63891 0.4730 +10498 63978 0.7140 +10498 64324 0.4690 +10498 64754 0.4350 +10498 79084 0.5950 +10498 79718 0.5710 +10498 79723 0.4670 +10498 80205 0.5220 +10498 80308 0.4070 +10498 80854 0.6610 +10498 84335 0.4610 +10498 84444 0.6240 +10498 84787 0.4050 +10498 85441 0.6330 +10498 96764 0.5720 +10498 116519 0.4090 +10498 126961 0.9270 +10498 148022 0.5790 +10498 333932 0.9270 +10498 339669 0.4460 +10498 376497 0.4240 +10498 387893 0.4670 +10498 440093 0.9740 +10498 440686 0.9780 +10498 653604 0.9940 +10499 10521 0.4990 +10499 10524 0.4580 +10499 10847 0.4450 +10499 10891 0.7380 +10499 10915 0.4190 +10499 11010 0.4080 +10499 23013 0.4180 +10499 23054 0.7860 +10499 23081 0.5260 +10499 23093 0.5360 +10499 23097 0.5520 +10499 23309 0.5510 +10499 23389 0.5810 +10499 23462 0.6860 +10499 23522 0.4910 +10499 25942 0.6440 +10499 27063 0.4150 +10499 29079 0.6150 +10499 29123 0.6560 +10499 29841 0.4140 +10499 50486 0.4320 +10499 51003 0.4990 +10499 51129 0.5300 +10499 51586 0.5820 +10499 54576 0.4300 +10499 54600 0.4010 +10499 54658 0.4430 +10499 54797 0.5080 +10499 55090 0.5390 +10499 55342 0.4040 +10499 55588 0.4990 +10499 57491 0.5100 +10499 57761 0.4260 +10499 58508 0.4440 +10499 63897 0.5740 +10499 64324 0.4570 +10499 66002 0.4530 +10499 79718 0.7590 +10499 80205 0.4470 +10499 80306 0.5000 +10499 80308 0.4560 +10499 80790 0.4410 +10499 81857 0.5400 +10499 84246 0.5240 +10499 84458 0.6820 +10499 85441 0.8640 +10499 90390 0.5080 +10499 93649 0.4520 +10499 96764 0.4310 +10499 112950 0.5200 +10499 115950 0.6420 +10499 116519 0.4060 +10499 135112 0.6100 +10499 153770 0.4480 +10499 245806 0.7160 +10499 254173 0.5040 +10499 266743 0.5300 +10499 376497 0.4150 +10499 400569 0.5140 +10500 23129 0.7490 +10500 55558 0.7640 +10500 91584 0.7840 +10501 23129 0.6580 +10501 26037 0.4010 +10501 51466 0.8320 +10501 55558 0.8140 +10501 83447 0.4050 +10501 91584 0.8850 +10501 166336 0.4330 +10505 23129 0.4700 +10505 23584 0.4150 +10505 23654 0.9510 +10505 55558 0.5610 +10505 285220 0.5070 +10505 339669 0.4570 +10507 23129 0.8160 +10507 23365 0.8260 +10507 23654 0.9990 +10507 27289 0.9580 +10507 50964 0.4030 +10507 51466 0.4200 +10507 54910 0.4380 +10507 55558 0.6840 +10507 84868 0.5030 +10507 91584 0.7880 +10507 120425 0.4690 +10509 23154 0.4130 +10509 23560 0.5890 +10509 23654 0.9650 +10509 112574 0.4490 +10509 131566 0.9060 +10509 257364 0.4750 +10512 23129 0.9880 +10512 23654 0.6920 +10512 54361 0.4030 +10512 55558 0.8890 +10512 91584 0.7950 +10512 137970 0.4670 +10512 223117 0.5890 +10513 10920 0.4110 +10513 11146 0.7600 +10513 11167 0.4240 +10513 22928 0.4560 +10513 23008 0.9330 +10513 23053 0.5860 +10513 23532 0.9170 +10513 23588 0.9480 +10513 51174 0.5600 +10513 51651 0.4870 +10513 51666 0.9070 +10513 54828 0.5590 +10513 55527 0.9280 +10513 56929 0.9440 +10513 57508 0.4690 +10513 57643 0.5860 +10513 57688 0.5800 +10513 58515 0.4910 +10513 63897 0.5030 +10513 65249 0.5570 +10513 79665 0.5520 +10513 79699 0.9160 +10513 84669 0.6260 +10513 84795 0.5620 +10513 116138 0.9490 +10513 123169 0.4860 +10513 124773 0.5920 +10513 145501 0.5030 +10513 147746 0.5840 +10513 150684 0.9000 +10513 158471 0.4120 +10513 197135 0.4660 +10513 348303 0.5360 +10513 440561 0.9370 +10513 440590 0.5570 +10513 653619 0.9280 +10514 10521 0.5920 +10514 10528 0.7370 +10514 10594 0.4090 +10514 10607 0.9090 +10514 10785 0.4390 +10514 10813 0.5710 +10514 10849 0.6270 +10514 10885 0.8780 +10514 10891 0.5940 +10514 10969 0.5620 +10514 10985 0.5960 +10514 11056 0.4430 +10514 11060 0.5550 +10514 11091 0.4830 +10514 11103 0.9740 +10514 11128 0.6620 +10514 11137 0.7640 +10514 11201 0.6550 +10514 22907 0.4530 +10514 22984 0.9490 +10514 23029 0.6030 +10514 23076 0.6240 +10514 23082 0.4120 +10514 23160 0.9340 +10514 23191 0.4780 +10514 23212 0.5800 +10514 23223 0.8460 +10514 23246 0.9150 +10514 23277 0.5180 +10514 23363 0.5240 +10514 23378 0.6590 +10514 23423 0.4260 +10514 23451 0.9080 +10514 23476 0.5370 +10514 23481 0.9480 +10514 23517 0.6730 +10514 23560 0.6870 +10514 23633 0.5770 +10514 25828 0.4260 +10514 25873 0.4100 +10514 25885 0.9640 +10514 25983 0.4130 +10514 26155 0.9110 +10514 26156 0.8310 +10514 26354 0.5640 +10514 26523 0.4480 +10514 26574 0.5090 +10514 27042 0.4110 +10514 27161 0.4560 +10514 27340 0.7090 +10514 27341 0.4880 +10514 28987 0.4390 +10514 29777 0.4860 +10514 29889 0.4520 +10514 29997 0.5050 +10514 30834 0.5790 +10514 51018 0.4820 +10514 51082 0.5510 +10514 51096 0.6090 +10514 51154 0.5740 +10514 51388 0.5750 +10514 51491 0.5520 +10514 51493 0.4960 +10514 51547 0.8900 +10514 51548 0.4190 +10514 51574 0.4060 +10514 51602 0.8210 +10514 54145 0.4010 +10514 54475 0.6180 +10514 54517 0.5510 +10514 54552 0.5130 +10514 54606 0.8380 +10514 54663 0.5300 +10514 54700 0.5020 +10514 54865 0.6730 +10514 54888 0.6160 +10514 54980 0.4960 +10514 55003 0.5600 +10514 55127 0.9730 +10514 55131 0.5990 +10514 55153 0.6820 +10514 55210 0.4310 +10514 55226 0.9140 +10514 55253 0.5310 +10514 55299 0.7600 +10514 55341 0.5090 +10514 55621 0.4150 +10514 55622 0.5940 +10514 55646 0.7110 +10514 55703 0.6490 +10514 55720 0.6680 +10514 55759 0.5820 +10514 55813 0.7540 +10514 56342 0.5140 +10514 56917 0.4990 +10514 57062 0.5340 +10514 57418 0.5200 +10514 57510 0.7940 +10514 57647 0.5160 +10514 57696 0.4410 +10514 63876 0.5220 +10514 64318 0.7550 +10514 64397 0.6540 +10514 64425 0.7490 +10514 64434 0.5230 +10514 64794 0.5460 +10514 65083 0.9700 +10514 79039 0.8790 +10514 79050 0.5590 +10514 79101 0.6320 +10514 79711 0.4590 +10514 79954 0.8300 +10514 81887 0.5070 +10514 83743 0.9040 +10514 83933 0.4040 +10514 84128 0.8000 +10514 84135 0.7840 +10514 84154 0.7380 +10514 84172 0.9470 +10514 84365 0.7340 +10514 84916 0.9230 +10514 85236 0.4010 +10514 90381 0.4010 +10514 90850 0.4080 +10514 92714 0.4720 +10514 92856 0.5750 +10514 94239 0.4530 +10514 116966 0.5360 +10514 117246 0.8720 +10514 128312 0.4010 +10514 134492 0.4410 +10514 134510 0.4180 +10514 142940 0.4080 +10514 146212 0.5290 +10514 155061 0.4440 +10514 221078 0.6020 +10514 221830 0.6100 +10514 222068 0.4410 +10514 255626 0.4100 +10514 387338 0.4570 +10514 402569 0.5730 +10514 653604 0.5910 +10514 692312 0.5480 +10516 10631 0.6920 +10516 10878 0.5260 +10516 11117 0.4430 +10516 22883 0.4170 +10516 23516 0.4410 +10516 23545 0.8650 +10516 27122 0.4730 +10516 30008 0.8370 +10516 51726 0.4500 +10516 54453 0.7820 +10516 56947 0.4250 +10516 80781 0.6160 +10516 81031 0.4320 +10516 84171 0.7550 +10516 84695 0.7670 +10516 84839 0.5570 +10516 85365 0.6650 +10516 92344 0.5570 +10517 10574 0.5510 +10517 10575 0.5100 +10517 10576 0.5030 +10517 10693 0.5030 +10517 10694 0.4990 +10517 22948 0.5030 +10517 26190 0.5030 +10517 26224 0.4590 +10517 26234 0.4720 +10517 26270 0.5190 +10517 26272 0.5350 +10517 26330 0.4060 +10517 51030 0.4730 +10517 54461 0.6350 +10517 55294 0.4460 +10517 55832 0.5470 +10517 57577 0.4490 +10517 63891 0.4010 +10517 84261 0.6940 +10517 84993 0.4360 +10517 123879 0.5030 +10517 283807 0.4360 +10517 285231 0.4850 +10518 11078 0.4390 +10518 11190 0.6080 +10518 25861 0.8670 +10518 26090 0.5430 +10518 27328 0.4200 +10518 51168 0.7780 +10518 51199 0.4480 +10518 51806 0.6260 +10518 53904 0.4550 +10518 64072 0.8410 +10518 65217 0.8790 +10518 79784 0.4780 +10518 79955 0.7770 +10518 81617 0.4250 +10518 83715 0.4880 +10518 84059 0.7400 +10518 84131 0.4680 +10518 87178 0.4040 +10518 91860 0.6270 +10518 117531 0.9840 +10518 117532 0.9800 +10518 124590 0.8380 +10518 163688 0.6270 +10518 222662 0.9860 +10518 259236 0.9480 +10518 283310 0.4020 +10518 286262 0.4520 +10519 10769 0.6870 +10519 11073 0.4510 +10519 11188 0.4470 +10519 11322 0.6430 +10519 11332 0.6500 +10519 22801 0.4010 +10519 23125 0.4530 +10519 23305 0.5510 +10519 23385 0.4470 +10519 23683 0.4410 +10519 25865 0.4630 +10519 28964 0.5430 +10519 51107 0.4490 +10519 51199 0.4740 +10519 51366 0.6340 +10519 51703 0.5570 +10519 51806 0.6510 +10519 55737 0.4590 +10519 55851 0.4550 +10519 60558 0.8150 +10519 60673 0.9250 +10519 60681 0.4390 +10519 79905 0.4060 +10519 80834 0.5180 +10519 81669 0.8080 +10519 81858 0.5230 +10519 90809 0.4210 +10519 91860 0.6560 +10519 117286 0.4800 +10519 127933 0.4100 +10519 130106 0.4940 +10519 147138 0.7170 +10519 163688 0.6510 +10519 253260 0.5930 +10519 390874 0.4260 +10519 642489 0.4440 +10520 22897 0.4310 +10520 27175 0.4600 +10520 51559 0.4200 +10520 54807 0.4100 +10520 55659 0.7290 +10520 119467 0.4600 +10520 151195 0.4630 +10521 10528 0.5640 +10521 10594 0.4680 +10521 10625 0.4120 +10521 10657 0.7740 +10521 10664 0.5850 +10521 10725 0.4530 +10521 10856 0.5620 +10521 10946 0.4400 +10521 10969 0.5280 +10521 11052 0.5920 +10521 11056 0.5170 +10521 11060 0.5470 +10521 11100 0.4870 +10521 11103 0.4870 +10521 11130 0.7800 +10521 11137 0.4100 +10521 11140 0.7520 +10521 11222 0.4490 +10521 11338 0.7810 +10521 22803 0.4300 +10521 22907 0.4700 +10521 22985 0.6110 +10521 23020 0.6240 +10521 23029 0.4860 +10521 23076 0.4290 +10521 23160 0.4800 +10521 23212 0.4510 +10521 23215 0.4030 +10521 23246 0.6610 +10521 23360 0.6850 +10521 23378 0.4890 +10521 23405 0.7140 +10521 23435 0.6210 +10521 23451 0.7850 +10521 23476 0.5710 +10521 23481 0.7010 +10521 23517 0.5470 +10521 23524 0.5330 +10521 23558 0.4070 +10521 23560 0.6290 +10521 24148 0.5010 +10521 26155 0.5380 +10521 26156 0.5890 +10521 26354 0.5020 +10521 26523 0.4070 +10521 26574 0.4500 +10521 26986 0.5230 +10521 27161 0.6590 +10521 27250 0.7320 +10521 27257 0.4890 +10521 27316 0.7210 +10521 27333 0.4940 +10521 28998 0.4050 +10521 29102 0.9980 +10521 29889 0.6120 +10521 51010 0.4510 +10521 51154 0.4880 +10521 51187 0.5570 +10521 51202 0.4680 +10521 51388 0.5040 +10521 51428 0.4050 +10521 51493 0.5510 +10521 51575 0.4160 +10521 51602 0.6620 +10521 51605 0.4030 +10521 51637 0.4380 +10521 51690 0.4250 +10521 51729 0.6360 +10521 51747 0.6820 +10521 54433 0.5150 +10521 54464 0.6200 +10521 54487 0.9960 +10521 54505 0.4650 +10521 54552 0.4960 +10521 54555 0.4410 +10521 54606 0.7000 +10521 54663 0.5720 +10521 54915 0.4460 +10521 54948 0.5200 +10521 55127 0.4440 +10521 55131 0.4350 +10521 55153 0.4360 +10521 55226 0.4360 +10521 55294 0.5570 +10521 55299 0.5230 +10521 55342 0.7120 +10521 55355 0.4290 +10521 55651 0.4680 +10521 55660 0.5430 +10521 55720 0.4190 +10521 55759 0.5960 +10521 55760 0.4550 +10521 55794 0.4170 +10521 55802 0.5230 +10521 55854 0.4300 +10521 55904 0.4680 +10521 56252 0.4870 +10521 56257 0.4470 +10521 56829 0.6610 +10521 56915 0.4960 +10521 56919 0.4840 +10521 57050 0.4180 +10521 57062 0.6420 +10521 57136 0.4860 +10521 57418 0.4360 +10521 57510 0.5000 +10521 57541 0.8150 +10521 57696 0.5150 +10521 57721 0.4070 +10521 58517 0.4680 +10521 59284 0.4090 +10521 64318 0.5250 +10521 64783 0.4470 +10521 64794 0.5420 +10521 65109 0.5730 +10521 65110 0.5730 +10521 79039 0.5450 +10521 79647 0.5860 +10521 79727 0.4800 +10521 79954 0.4510 +10521 80135 0.4350 +10521 81892 0.4270 +10521 83932 0.5220 +10521 84154 0.5140 +10521 84271 0.6530 +10521 84365 0.4990 +10521 84549 0.4660 +10521 87178 0.5320 +10521 91369 0.4490 +10521 92856 0.4080 +10521 117246 0.6060 +10521 124245 0.4020 +10521 127933 0.4960 +10521 140690 0.4820 +10521 140890 0.4650 +10521 149041 0.5240 +10521 167227 0.7310 +10521 170506 0.7390 +10521 200081 0.5050 +10521 201161 0.4860 +10521 220988 0.7210 +10521 221078 0.4400 +10521 283106 0.4160 +10521 285855 0.4120 +10521 345630 0.4990 +10521 387129 0.4070 +10521 389421 0.5960 +10521 100288687 0.5730 +10522 10771 0.8920 +10522 51364 0.4430 +10522 54836 0.4200 +10522 54862 0.6330 +10522 56950 0.5640 +10522 57162 0.5100 +10522 64754 0.5510 +10522 116225 0.8110 +10522 150572 0.5710 +10522 283232 0.4580 +10522 388585 0.4420 +10523 10657 0.4890 +10523 10772 0.4110 +10523 10921 0.6270 +10523 10946 0.8270 +10523 10992 0.7150 +10523 11017 0.7200 +10523 11052 0.4040 +10523 11231 0.4070 +10523 11325 0.6570 +10523 11338 0.8710 +10523 22827 0.8810 +10523 22916 0.6200 +10523 23020 0.4660 +10523 23076 0.4510 +10523 23168 0.4180 +10523 23350 0.9950 +10523 23450 0.6830 +10523 23451 0.7100 +10523 27238 0.4050 +10523 51574 0.4110 +10523 51593 0.4290 +10523 51639 0.7430 +10523 51747 0.6600 +10523 55082 0.6480 +10523 55109 0.6540 +10523 55147 0.5130 +10523 55660 0.6920 +10523 55692 0.7100 +10523 55749 0.5400 +10523 56259 0.4320 +10523 56926 0.4560 +10523 56949 0.4200 +10523 57048 0.6060 +10523 57794 0.4010 +10523 58506 0.4550 +10523 79595 0.5740 +10523 79753 0.6540 +10523 79825 0.4280 +10523 79939 0.4810 +10523 83443 0.5170 +10523 84844 0.9090 +10523 84950 0.6110 +10523 84991 0.9920 +10523 85313 0.5330 +10523 90324 0.6610 +10523 115825 0.4060 +10523 117286 0.4530 +10523 118924 0.7730 +10523 120892 0.4310 +10523 126382 0.4980 +10523 149345 0.4600 +10523 151613 0.4870 +10523 219988 0.4540 +10523 284439 0.4070 +10524 10635 0.5300 +10524 10714 0.4720 +10524 10761 0.8290 +10524 10847 0.9840 +10524 10856 0.9990 +10524 10902 0.9980 +10524 10919 0.8910 +10524 10933 0.9990 +10524 10943 0.9580 +10524 10951 0.6580 +10524 11073 0.6820 +10524 11091 0.8460 +10524 11143 0.4630 +10524 11168 0.8120 +10524 11198 0.4100 +10524 11200 0.7500 +10524 22807 0.5200 +10524 22890 0.4510 +10524 22927 0.5550 +10524 22933 0.5700 +10524 22976 0.6200 +10524 23028 0.4840 +10524 23030 0.6800 +10524 23067 0.4010 +10524 23118 0.6070 +10524 23133 0.6410 +10524 23135 0.4230 +10524 23210 0.4640 +10524 23408 0.4440 +10524 23409 0.4070 +10524 23410 0.4660 +10524 23411 0.9340 +10524 23476 0.7800 +10524 23514 0.5090 +10524 23522 0.4530 +10524 23645 0.4070 +10524 23650 0.6680 +10524 23774 0.7960 +10524 25898 0.7720 +10524 26013 0.4230 +10524 26122 0.9870 +10524 27154 0.7250 +10524 27161 0.6240 +10524 27443 0.4400 +10524 28996 0.5950 +10524 29072 0.4870 +10524 29086 0.5360 +10524 29128 0.9630 +10524 29803 0.4120 +10524 29844 0.9040 +10524 30827 0.5000 +10524 50943 0.9920 +10524 51105 0.5710 +10524 51147 0.5810 +10524 51176 0.5700 +10524 51230 0.8710 +10524 51377 0.9060 +10524 51412 0.8010 +10524 51426 0.4080 +10524 51547 0.5070 +10524 51548 0.5190 +10524 51564 0.9800 +10524 51567 0.4200 +10524 51588 0.6510 +10524 51720 0.6660 +10524 51750 0.4520 +10524 54107 0.4380 +10524 54145 0.6340 +10524 54556 0.9990 +10524 54617 0.9480 +10524 54799 0.9940 +10524 54891 0.7770 +10524 54934 0.8040 +10524 55022 0.4180 +10524 55128 0.6060 +10524 55140 0.6140 +10524 55143 0.4930 +10524 55167 0.9510 +10524 55183 0.5920 +10524 55193 0.5330 +10524 55257 0.9970 +10524 55288 0.4170 +10524 55683 0.8010 +10524 55689 0.7490 +10524 55766 0.5570 +10524 55869 0.6240 +10524 55929 0.9990 +10524 56949 0.4790 +10524 57332 0.7150 +10524 57634 0.9990 +10524 57661 0.5310 +10524 57804 0.4030 +10524 60468 0.4440 +10524 64129 0.4490 +10524 64397 0.4360 +10524 64421 0.5420 +10524 64431 0.6090 +10524 64769 0.9990 +10524 79184 0.5920 +10524 79723 0.4110 +10524 79728 0.6360 +10524 79759 0.6620 +10524 79885 0.5900 +10524 79913 0.9070 +10524 79923 0.5740 +10524 79960 0.6620 +10524 80010 0.5300 +10524 80198 0.6040 +10524 80314 0.9970 +10524 80854 0.5010 +10524 81611 0.9840 +10524 83439 0.4990 +10524 83444 0.9360 +10524 83695 0.5200 +10524 83933 0.5130 +10524 83987 0.6550 +10524 83990 0.8330 +10524 84126 0.6750 +10524 84142 0.5550 +10524 84148 0.9110 +10524 84289 0.8650 +10524 84444 0.4910 +10524 84464 0.5920 +10524 84678 0.5470 +10524 85235 0.4680 +10524 85236 0.6340 +10524 90480 0.4190 +10524 90665 0.4140 +10524 92292 0.7200 +10524 92815 0.4680 +10524 93624 0.5980 +10524 93973 0.9260 +10524 94239 0.8910 +10524 114799 0.5430 +10524 115353 0.4430 +10524 115426 0.4300 +10524 116028 0.5090 +10524 124801 0.4170 +10524 125476 0.9460 +10524 126961 0.6330 +10524 128312 0.7110 +10524 139628 0.8310 +10524 144715 0.5010 +10524 146956 0.6060 +10524 148479 0.4160 +10524 151050 0.6320 +10524 157570 0.5360 +10524 165918 0.7760 +10524 196528 0.4440 +10524 197342 0.5380 +10524 221613 0.4680 +10524 221895 0.7010 +10524 255626 0.9000 +10524 283150 0.8440 +10524 283899 0.9100 +10524 284058 0.8170 +10524 286204 0.4100 +10524 317772 0.4680 +10524 339287 0.9560 +10524 342371 0.9440 +10524 345651 0.6140 +10524 348654 0.4410 +10524 387893 0.4890 +10524 440093 0.9150 +10524 440686 0.9150 +10524 474382 0.6060 +10524 548593 0.5700 +10524 653121 0.5780 +10524 653604 0.9150 +10524 728294 0.4540 +10524 100532731 0.5970 +10525 10562 0.4310 +10525 10574 0.4410 +10525 10575 0.4400 +10525 10576 0.5270 +10525 10693 0.4280 +10525 10954 0.6140 +10525 10956 0.9060 +10525 10961 0.4290 +10525 11080 0.6400 +10525 11231 0.8530 +10525 22926 0.7610 +10525 22948 0.4910 +10525 23071 0.6580 +10525 23193 0.8300 +10525 23197 0.4760 +10525 23234 0.5430 +10525 23341 0.6540 +10525 23479 0.5240 +10525 23640 0.7560 +10525 23753 0.9150 +10525 25822 0.5530 +10525 27000 0.5510 +10525 27044 0.4380 +10525 27248 0.4870 +10525 27333 0.4020 +10525 29925 0.4070 +10525 29927 0.8060 +10525 30001 0.6520 +10525 51009 0.6620 +10525 51061 0.4240 +10525 51128 0.6730 +10525 51237 0.5720 +10525 51314 0.4110 +10525 51465 0.4910 +10525 51726 0.9760 +10525 54431 0.9610 +10525 54558 0.4410 +10525 54788 0.6170 +10525 54867 0.4200 +10525 55176 0.5410 +10525 55379 0.4080 +10525 55466 0.6930 +10525 55735 0.4790 +10525 55757 0.6270 +10525 56605 0.5980 +10525 56886 0.7910 +10525 56990 0.4200 +10525 58477 0.4920 +10525 64215 0.5550 +10525 64374 0.9970 +10525 64714 0.6000 +10525 79139 0.4270 +10525 79174 0.8000 +10525 79738 0.4030 +10525 79962 0.4320 +10525 79982 0.6280 +10525 80020 0.5030 +10525 80267 0.6520 +10525 80273 0.7500 +10525 80331 0.4330 +10525 81567 0.6300 +10525 81570 0.7250 +10525 83648 0.5520 +10525 84447 0.6110 +10525 84699 0.4090 +10525 85479 0.4470 +10525 91319 0.5130 +10525 96459 0.4400 +10525 113444 0.5340 +10525 116835 0.4320 +10525 120526 0.5660 +10525 124535 0.4450 +10525 125972 0.7350 +10525 134266 0.6150 +10525 140432 0.4200 +10525 150353 0.4330 +10525 165721 0.5120 +10525 171425 0.4200 +10525 201595 0.4860 +10525 202052 0.5940 +10525 203100 0.4270 +10525 259217 0.6890 +10525 285126 0.4960 +10525 285282 0.4460 +10525 339416 0.9050 +10525 374407 0.4610 +10525 548645 0.4690 +10525 552891 0.4200 +10526 10527 0.5300 +10526 10528 0.4430 +10526 10607 0.4390 +10526 10762 0.5590 +10526 10794 0.6290 +10526 10813 0.4970 +10526 10885 0.5860 +10526 11097 0.4700 +10526 11260 0.7750 +10526 11340 0.4150 +10526 22984 0.5260 +10526 23016 0.4070 +10526 23039 0.5800 +10526 23165 0.7370 +10526 23214 0.4730 +10526 23225 0.5090 +10526 23279 0.6160 +10526 23361 0.4340 +10526 23404 0.4320 +10526 23405 0.4420 +10526 23431 0.4600 +10526 23481 0.5650 +10526 23511 0.5510 +10526 23517 0.4080 +10526 23521 0.4960 +10526 23534 0.7180 +10526 23560 0.5090 +10526 23633 0.4040 +10526 23636 0.5710 +10526 25885 0.4470 +10526 25929 0.4060 +10526 26523 0.8940 +10526 26953 0.6430 +10526 27161 0.9750 +10526 29102 0.5170 +10526 29997 0.5700 +10526 30000 0.6370 +10526 50809 0.4060 +10526 51013 0.4330 +10526 51065 0.4180 +10526 51096 0.4440 +10526 51194 0.7020 +10526 51602 0.4510 +10526 51706 0.5100 +10526 53371 0.5880 +10526 54145 0.5090 +10526 54464 0.4730 +10526 54468 0.4350 +10526 54512 0.4180 +10526 55127 0.4930 +10526 55173 0.4230 +10526 55226 0.5490 +10526 55272 0.4100 +10526 55703 0.4280 +10526 55705 0.8880 +10526 55706 0.4330 +10526 55746 0.5400 +10526 55766 0.5050 +10526 57050 0.4760 +10526 57122 0.6030 +10526 57510 0.6990 +10526 57786 0.7790 +10526 64328 0.5910 +10526 64901 0.4200 +10526 64969 0.4180 +10526 65083 0.4750 +10526 79023 0.5590 +10526 79050 0.5260 +10526 79711 0.7750 +10526 79902 0.7350 +10526 81929 0.4380 +10526 83743 0.4420 +10526 84128 0.4050 +10526 84154 0.4640 +10526 84172 0.4210 +10526 84916 0.4650 +10526 85236 0.5070 +10526 85441 0.4050 +10526 94239 0.5000 +10526 114987 0.4610 +10526 118460 0.4020 +10526 128312 0.5090 +10526 129401 0.5100 +10526 148252 0.4390 +10526 162239 0.6170 +10526 192669 0.5150 +10526 192670 0.4880 +10526 196441 0.5770 +10526 220988 0.4490 +10526 255626 0.5080 +10526 348995 0.5060 +10526 402569 0.4050 +10526 474382 0.5050 +10526 653604 0.5620 +10526 728378 0.4360 +10526 100101267 0.4960 +10526 100529239 0.4320 +10527 10528 0.4680 +10527 10607 0.4360 +10527 10813 0.6510 +10527 10885 0.6290 +10527 11103 0.4320 +10527 11168 0.4050 +10527 11260 0.8300 +10527 11340 0.4190 +10527 22984 0.5630 +10527 23016 0.4120 +10527 23039 0.5540 +10527 23165 0.6210 +10527 23212 0.4050 +10527 23214 0.4070 +10527 23279 0.5240 +10527 23367 0.4080 +10527 23404 0.4390 +10527 23405 0.5660 +10527 23481 0.5080 +10527 23517 0.5790 +10527 23534 0.8260 +10527 23560 0.5410 +10527 23568 0.4470 +10527 23633 0.5440 +10527 23636 0.4450 +10527 25885 0.4900 +10527 26156 0.5080 +10527 26953 0.6120 +10527 29968 0.5440 +10527 29997 0.5720 +10527 30000 0.8330 +10527 50809 0.5180 +10527 51013 0.4380 +10527 51065 0.4170 +10527 51096 0.4510 +10527 51194 0.4790 +10527 51203 0.6340 +10527 51386 0.4170 +10527 51602 0.4850 +10527 51700 0.4470 +10527 54443 0.4590 +10527 54464 0.4280 +10527 54512 0.4210 +10527 55127 0.5260 +10527 55173 0.4320 +10527 55226 0.6040 +10527 55272 0.4110 +10527 55705 0.9070 +10527 55746 0.4070 +10527 56852 0.4050 +10527 56993 0.4270 +10527 57050 0.4500 +10527 57122 0.5580 +10527 57510 0.6650 +10527 57534 0.4400 +10527 64328 0.6020 +10527 64901 0.4750 +10527 64969 0.4250 +10527 65083 0.4550 +10527 79050 0.5660 +10527 79711 0.8210 +10527 79902 0.6480 +10527 79954 0.4690 +10527 83743 0.6880 +10527 84128 0.4120 +10527 84154 0.4910 +10527 84172 0.4010 +10527 84916 0.4770 +10527 85441 0.4010 +10527 114987 0.4610 +10527 118460 0.4030 +10527 196441 0.5720 +10527 253461 0.6060 +10527 259266 0.4100 +10527 402569 0.4690 +10527 729857 0.4230 +10527 100529239 0.4270 +10528 10552 0.4430 +10528 10556 0.7960 +10528 10557 0.9850 +10528 10574 0.7280 +10528 10575 0.7010 +10528 10576 0.8210 +10528 10607 0.9990 +10528 10693 0.5780 +10528 10694 0.6790 +10528 10775 0.6050 +10528 10785 0.4270 +10528 10799 0.6580 +10528 10813 0.9980 +10528 10849 0.6930 +10528 10856 0.8470 +10528 10885 0.9990 +10528 10939 0.4260 +10528 10940 0.8090 +10528 10969 0.9830 +10528 10985 0.4070 +10528 11051 0.4480 +10528 11056 0.5810 +10528 11103 0.9990 +10528 11128 0.6580 +10528 11137 0.8450 +10528 11157 0.5680 +10528 11180 0.8310 +10528 11201 0.7050 +10528 11222 0.4230 +10528 11269 0.4220 +10528 11328 0.5230 +10528 11340 0.8180 +10528 22803 0.6540 +10528 22894 0.5000 +10528 22907 0.4780 +10528 22916 0.4460 +10528 22948 0.7050 +10528 22984 0.9970 +10528 23016 0.7440 +10528 23029 0.7050 +10528 23054 0.7350 +10528 23076 0.8150 +10528 23160 0.9990 +10528 23204 0.6650 +10528 23212 0.8480 +10528 23223 0.9380 +10528 23246 0.9740 +10528 23283 0.4860 +10528 23363 0.5570 +10528 23378 0.5660 +10528 23395 0.4420 +10528 23404 0.7800 +10528 23435 0.4850 +10528 23450 0.4170 +10528 23481 0.9560 +10528 23517 0.8880 +10528 23521 0.4760 +10528 23560 0.9410 +10528 23633 0.4770 +10528 24140 0.5630 +10528 25814 0.6710 +10528 25842 0.7000 +10528 25873 0.5220 +10528 25879 0.9980 +10528 25885 0.9180 +10528 25926 0.9480 +10528 25934 0.4010 +10528 25983 0.9940 +10528 26099 0.4080 +10528 26121 0.6240 +10528 26155 0.9520 +10528 26156 0.9910 +10528 26168 0.6700 +10528 26190 0.4110 +10528 26224 0.4030 +10528 26330 0.4180 +10528 26354 0.9640 +10528 26574 0.9960 +10528 26747 0.9040 +10528 26985 0.4640 +10528 26986 0.4090 +10528 26995 0.9230 +10528 27000 0.4310 +10528 27042 0.6910 +10528 27043 0.5890 +10528 27127 0.6020 +10528 27292 0.9460 +10528 27340 0.9970 +10528 27341 0.9960 +10528 28987 0.7260 +10528 29102 0.4460 +10528 29889 0.8420 +10528 29960 0.5070 +10528 29997 0.5490 +10528 30836 0.9890 +10528 51010 0.7420 +10528 51013 0.8240 +10528 51018 0.6900 +10528 51065 0.8830 +10528 51068 0.7140 +10528 51073 0.6220 +10528 51077 0.9950 +10528 51081 0.7060 +10528 51082 0.4850 +10528 51096 0.9990 +10528 51106 0.4820 +10528 51118 0.9950 +10528 51126 0.4790 +10528 51149 0.8490 +10528 51154 0.9410 +10528 51187 0.8230 +10528 51202 0.6950 +10528 51236 0.5820 +10528 51319 0.7370 +10528 51340 0.4440 +10528 51367 0.7570 +10528 51388 0.9340 +10528 51406 0.8230 +10528 51491 0.4620 +10528 51504 0.5870 +10528 51520 0.5010 +10528 51547 0.4300 +10528 51574 0.7550 +10528 51575 0.8920 +10528 51602 0.9990 +10528 51690 0.7120 +10528 51692 0.4100 +10528 51808 0.5290 +10528 54433 0.9830 +10528 54443 0.4200 +10528 54475 0.6990 +10528 54512 0.8120 +10528 54517 0.6630 +10528 54552 0.8750 +10528 54555 0.4460 +10528 54606 0.8840 +10528 54663 0.7250 +10528 54680 0.8530 +10528 54700 0.4190 +10528 54881 0.6280 +10528 54888 0.6130 +10528 54913 0.7440 +10528 54984 0.4090 +10528 55003 0.4760 +10528 55011 0.9540 +10528 55035 0.4300 +10528 55127 0.9990 +10528 55131 0.9450 +10528 55135 0.6740 +10528 55153 0.7270 +10528 55164 0.6020 +10528 55170 0.4340 +10528 55226 0.9990 +10528 55272 0.9920 +10528 55294 0.5570 +10528 55299 0.9410 +10528 55341 0.7280 +10528 55505 0.9660 +10528 55646 0.7490 +10528 55651 0.9980 +10528 55695 0.5910 +10528 55703 0.7720 +10528 55720 0.7260 +10528 55723 0.7020 +10528 55759 0.8040 +10528 55760 0.7000 +10528 55794 0.4660 +10528 55813 0.9980 +10528 56341 0.4450 +10528 56342 0.7310 +10528 56474 0.5890 +10528 56647 0.4940 +10528 56902 0.9560 +10528 56915 0.8090 +10528 56919 0.5120 +10528 56931 0.4210 +10528 56937 0.4330 +10528 57038 0.4180 +10528 57050 0.9980 +10528 57062 0.6420 +10528 57418 0.6790 +10528 57602 0.4020 +10528 57647 0.9430 +10528 57696 0.6000 +10528 57721 0.4560 +10528 63899 0.4740 +10528 64118 0.4150 +10528 64216 0.5940 +10528 64318 0.7710 +10528 64425 0.8880 +10528 64779 0.8250 +10528 64794 0.4730 +10528 64960 0.7230 +10528 64963 0.6640 +10528 65083 0.9980 +10528 65095 0.6100 +10528 65992 0.4400 +10528 79009 0.6910 +10528 79039 0.5920 +10528 79050 0.9970 +10528 79159 0.7250 +10528 79571 0.7330 +10528 79657 0.5630 +10528 79707 0.7860 +10528 79711 0.7190 +10528 79730 0.4410 +10528 79954 0.9960 +10528 79968 0.5200 +10528 80119 0.6620 +10528 80135 0.6120 +10528 80324 0.5660 +10528 81887 0.5980 +10528 83448 0.4930 +10528 83479 0.4450 +10528 83480 0.4760 +10528 83732 0.5760 +10528 83743 0.8710 +10528 84128 0.9980 +10528 84135 0.9990 +10528 84154 0.9570 +10528 84172 0.8600 +10528 84261 0.4010 +10528 84273 0.4100 +10528 84294 0.7420 +10528 84365 0.8770 +10528 84549 0.6570 +10528 84618 0.4350 +10528 84656 0.4700 +10528 84916 0.9990 +10528 84946 0.7240 +10528 88745 0.7480 +10528 90121 0.5670 +10528 90381 0.5180 +10528 90957 0.4240 +10528 91582 0.8120 +10528 91646 0.4220 +10528 91875 0.5150 +10528 92170 0.4190 +10528 92345 0.7680 +10528 92797 0.5570 +10528 92856 0.9960 +10528 93034 0.4350 +10528 113444 0.7020 +10528 115752 0.4090 +10528 116966 0.6720 +10528 117246 0.9620 +10528 118460 0.6960 +10528 121053 0.4320 +10528 124454 0.4490 +10528 126402 0.6770 +10528 128061 0.8030 +10528 129563 0.4220 +10528 138716 0.5520 +10528 140032 0.7000 +10528 142940 0.9530 +10528 146212 0.6380 +10528 146227 0.4640 +10528 153443 0.5820 +10528 161424 0.5390 +10528 165545 0.7010 +10528 203228 0.4800 +10528 221078 0.8590 +10528 221830 0.7540 +10528 254394 0.6360 +10528 266743 0.6730 +10528 285855 0.5460 +10528 317781 0.6710 +10528 344758 0.4180 +10528 345630 0.9940 +10528 387129 0.4540 +10528 387338 0.4990 +10528 641776 0.4780 +10528 643909 0.4780 +10528 692312 0.6390 +10528 728524 0.4780 +10528 100505478 0.4490 +10528 100526794 0.4350 +10528 100996746 0.4780 +10528 105180390 0.4780 +10528 105180391 0.4780 +10528 114483834 0.5340 +10529 11155 0.4970 +10529 23022 0.4810 +10529 27063 0.6950 +10529 27295 0.5740 +10529 29765 0.4010 +10529 29766 0.4050 +10529 29767 0.4220 +10529 51778 0.5410 +10529 58529 0.4370 +10529 84033 0.4350 +10529 84665 0.9520 +10529 91624 0.4720 +10529 129446 0.8110 +10529 165904 0.4860 +10529 282996 0.4590 +10531 10544 0.7710 +10531 10730 0.4040 +10531 10939 0.4800 +10531 22926 0.5840 +10531 23173 0.4450 +10531 23203 0.5230 +10531 55031 0.4160 +10531 55699 0.4810 +10531 57038 0.5040 +10531 57486 0.5320 +10531 63929 0.4240 +10531 79885 0.4520 +10531 79956 0.4660 +10531 150274 0.6630 +10533 10645 0.4590 +10533 10652 0.4010 +10533 10827 0.5820 +10533 10871 0.6790 +10533 10891 0.5470 +10533 10987 0.4010 +10533 11035 0.5720 +10533 11044 0.5120 +10533 11065 0.6130 +10533 11152 0.6620 +10533 11331 0.4910 +10533 11337 0.9990 +10533 11345 0.9990 +10533 22863 0.9510 +10533 22906 0.5500 +10533 22926 0.5630 +10533 22933 0.5320 +10533 23001 0.5520 +10533 23130 0.7010 +10533 23164 0.5040 +10533 23192 0.9770 +10533 23230 0.4340 +10533 23307 0.5160 +10533 23339 0.4340 +10533 23410 0.4220 +10533 23411 0.9930 +10533 23435 0.4720 +10533 23476 0.4510 +10533 23604 0.4100 +10533 23645 0.4340 +10533 23710 0.9990 +10533 25978 0.4040 +10533 25989 0.5840 +10533 26100 0.9020 +10533 27044 0.5510 +10533 27304 0.5610 +10533 27338 0.6820 +10533 29110 0.5490 +10533 29978 0.5040 +10533 29979 0.4610 +10533 29982 0.4890 +10533 30849 0.9370 +10533 51024 0.5010 +10533 51100 0.4830 +10533 51441 0.5420 +10533 51465 0.6240 +10533 51540 0.4230 +10533 51569 0.4320 +10533 51619 0.6150 +10533 53349 0.6000 +10533 53917 0.5440 +10533 54205 0.5950 +10533 54463 0.4330 +10533 54845 0.5070 +10533 54926 0.6040 +10533 55014 0.7550 +10533 55034 0.5110 +10533 55054 0.9950 +10533 55062 0.8590 +10533 55102 0.7130 +10533 55109 0.5370 +10533 55201 0.8640 +10533 55236 0.7710 +10533 55284 0.6140 +10533 55332 0.5810 +10533 55585 0.5490 +10533 55626 0.8160 +10533 55669 0.5410 +10533 55737 0.5090 +10533 55750 0.5250 +10533 56270 0.5920 +10533 56829 0.5300 +10533 57085 0.5130 +10533 57448 0.4090 +10533 57521 0.7310 +10533 57670 0.5190 +10533 57724 0.6670 +10533 60625 0.5650 +10533 60673 0.8210 +10533 63893 0.6060 +10533 64127 0.6460 +10533 64223 0.4600 +10533 64422 0.9990 +10533 64601 0.4060 +10533 65018 0.7800 +10533 65264 0.6120 +10533 79065 0.8770 +10533 79792 0.4620 +10533 79876 0.7250 +10533 80853 0.5280 +10533 81605 0.5150 +10533 81631 0.9980 +10533 81671 0.6910 +10533 83734 0.9990 +10533 84557 0.9980 +10533 84938 0.8950 +10533 84971 0.9160 +10533 89849 0.6950 +10533 91647 0.4020 +10533 92552 0.5950 +10533 92912 0.5400 +10533 112611 0.4610 +10533 114548 0.6560 +10533 114907 0.4060 +10533 115201 0.8970 +10533 118424 0.6940 +10533 120892 0.4040 +10533 137902 0.5620 +10533 139341 0.5770 +10533 140739 0.6990 +10533 148581 0.6070 +10533 253260 0.4160 +10533 285973 0.7400 +10533 345611 0.5780 +10533 387082 0.4010 +10533 388581 0.4020 +10533 401548 0.4060 +10533 440275 0.4310 +10533 440738 0.9720 +10533 441925 0.7590 +10533 643246 0.7900 +10533 728378 0.4110 +10533 101669762 0.4590 +10534 10574 0.8090 +10534 10575 0.4550 +10534 10576 0.5300 +10534 22948 0.8020 +10534 23625 0.6130 +10534 30834 0.4130 +10534 64081 0.4350 +10534 79657 0.4140 +10534 83690 0.4130 +10534 83786 0.5490 +10534 84461 0.4470 +10534 115992 0.6220 +10534 140460 0.4540 +10534 144347 0.4310 +10534 160335 0.4370 +10534 283130 0.5000 +10535 10554 0.4800 +10535 10721 0.4330 +10535 10797 0.4220 +10535 11036 0.4180 +10535 11065 0.4720 +10535 11128 0.4230 +10535 11130 0.4270 +10535 11169 0.5490 +10535 11201 0.5300 +10535 11277 0.8850 +10535 23064 0.6460 +10535 23203 0.5530 +10535 23405 0.4500 +10535 23478 0.4640 +10535 23583 0.4790 +10535 23586 0.4160 +10535 23649 0.5130 +10535 25939 0.9670 +10535 26995 0.4080 +10535 29035 0.4480 +10535 29089 0.5240 +10535 29102 0.4730 +10535 29789 0.5840 +10535 50484 0.4080 +10535 51021 0.5050 +10535 51095 0.5180 +10535 51426 0.4100 +10535 51455 0.4100 +10535 51659 0.5200 +10535 51750 0.5220 +10535 54107 0.4170 +10535 54431 0.5740 +10535 54520 0.7050 +10535 54841 0.4120 +10535 54962 0.6410 +10535 55143 0.4110 +10535 55178 0.4440 +10535 55215 0.4640 +10535 55246 0.4100 +10535 55247 0.4360 +10535 55388 0.4530 +10535 55520 0.4010 +10535 55723 0.5950 +10535 55846 0.4600 +10535 55967 0.5170 +10535 56474 0.4280 +10535 56652 0.4910 +10535 56915 0.4710 +10535 57697 0.4780 +10535 60528 0.4160 +10535 64135 0.6820 +10535 65080 0.4020 +10535 79019 0.4380 +10535 79441 0.4690 +10535 79621 0.9990 +10535 79728 0.8160 +10535 79877 0.4560 +10535 79892 0.5860 +10535 79922 0.4320 +10535 80119 0.4810 +10535 80198 0.4660 +10535 80221 0.5100 +10535 80347 0.4720 +10535 81037 0.8210 +10535 81620 0.7760 +10535 83943 0.4560 +10535 83990 0.5430 +10535 84153 0.9990 +10535 84267 0.5040 +10535 84296 0.4570 +10535 84515 0.4140 +10535 84893 0.4290 +10535 87178 0.5110 +10535 90701 0.4560 +10535 91875 0.4320 +10535 92399 0.4870 +10535 92667 0.4670 +10535 113130 0.4680 +10535 115004 0.4900 +10535 116447 0.8090 +10535 134353 0.4110 +10535 146956 0.4920 +10535 196294 0.4600 +10535 246243 0.9510 +10535 254394 0.5210 +10535 340061 0.4800 +10535 374659 0.4710 +10535 387103 0.5100 +10535 100533467 0.4360 +10536 10609 0.4200 +10536 11201 0.4730 +10536 22914 0.7000 +10536 29072 0.4120 +10536 29760 0.5090 +10536 50509 0.5390 +10536 51024 0.5160 +10536 51806 0.4800 +10536 55177 0.8370 +10536 55214 0.4640 +10536 55869 0.4710 +10536 57642 0.5030 +10536 60681 0.4500 +10536 64083 0.4990 +10536 64175 0.7580 +10536 80781 0.5880 +10536 81578 0.5030 +10536 84570 0.5030 +10536 85301 0.5790 +10536 91522 0.5030 +10536 91860 0.4800 +10536 131873 0.5030 +10536 136227 0.5130 +10536 163688 0.4800 +10536 169044 0.5260 +10536 255631 0.5440 +10536 340267 0.5340 +10536 348980 0.4080 +10537 10563 0.4430 +10537 10617 0.5290 +10537 10987 0.6330 +10537 11047 0.6270 +10537 11065 0.4290 +10537 11075 0.4470 +10537 11224 0.6040 +10537 11274 0.5120 +10537 11345 0.6970 +10537 22992 0.5250 +10537 23067 0.4530 +10537 23118 0.5630 +10537 23198 0.5630 +10537 23304 0.4060 +10537 23327 0.4260 +10537 23361 0.4290 +10537 23363 0.4180 +10537 23521 0.5400 +10537 23586 0.6310 +10537 23710 0.6830 +10537 23746 0.6660 +10537 25873 0.6510 +10537 25930 0.4100 +10537 26002 0.4310 +10537 27000 0.4230 +10537 27304 0.4370 +10537 27338 0.4780 +10537 28998 0.4520 +10537 29089 0.4010 +10537 29978 0.4040 +10537 29979 0.4550 +10537 51065 0.5940 +10537 51069 0.4560 +10537 51081 0.4990 +10537 51121 0.5210 +10537 51149 0.4860 +10537 51154 0.4240 +10537 51230 0.6670 +10537 51319 0.4910 +10537 51377 0.4100 +10537 51567 0.4200 +10537 51569 0.6940 +10537 51667 0.9740 +10537 51710 0.4290 +10537 51720 0.4710 +10537 51752 0.4700 +10537 54926 0.8520 +10537 55173 0.4390 +10537 55236 0.9980 +10537 55272 0.4380 +10537 55316 0.5440 +10537 55611 0.6620 +10537 55666 0.6460 +10537 55768 0.4280 +10537 55832 0.5190 +10537 56852 0.4030 +10537 56943 0.4530 +10537 57448 0.4770 +10537 57559 0.4310 +10537 59286 0.4400 +10537 63931 0.4670 +10537 64963 0.5030 +10537 64969 0.4170 +10537 65018 0.4140 +10537 65264 0.8300 +10537 78990 0.4010 +10537 79184 0.4320 +10537 79590 0.4200 +10537 79876 0.5260 +10537 80818 0.4280 +10537 81605 0.6760 +10537 83473 0.4560 +10537 83953 0.4750 +10537 84231 0.5860 +10537 84301 0.4690 +10537 84675 0.4730 +10537 84678 0.5250 +10537 90850 0.4970 +10537 114987 0.5210 +10537 115362 0.4410 +10537 115560 0.4290 +10537 116071 0.4030 +10537 116832 0.4870 +10537 122706 0.6000 +10537 123228 0.6570 +10537 126402 0.4990 +10537 134510 0.4730 +10537 140032 0.5300 +10537 140801 0.4780 +10537 142678 0.4820 +10537 143471 0.5660 +10537 148266 0.4270 +10537 197131 0.4300 +10537 200916 0.4990 +10537 221302 0.7320 +10537 254268 0.4780 +10537 257397 0.4980 +10537 284390 0.4290 +10537 285855 0.4700 +10537 347487 0.4870 +10537 387082 0.4210 +10537 387129 0.4700 +10537 645051 0.4030 +10537 645073 0.4030 +10537 729396 0.4030 +10537 729422 0.4030 +10537 729428 0.4030 +10537 729431 0.4030 +10537 729442 0.4030 +10537 729447 0.4030 +10537 100008586 0.4030 +10537 100132399 0.4030 +10537 100526842 0.4890 +10537 100529097 0.5050 +10537 100529239 0.5090 +10537 102724473 0.4030 +10538 10663 0.4360 +10538 10664 0.5950 +10538 11126 0.4150 +10538 22807 0.4570 +10538 22809 0.7910 +10538 22926 0.5150 +10538 23411 0.5040 +10538 29126 0.6290 +10538 29851 0.6640 +10538 30009 0.7230 +10538 50615 0.5600 +10538 50616 0.6750 +10538 50943 0.6230 +10538 51176 0.4830 +10538 51547 0.4270 +10538 51744 0.4050 +10538 53335 0.6770 +10538 54790 0.6490 +10538 55509 0.9450 +10538 57379 0.4740 +10538 59067 0.4290 +10538 60468 0.7640 +10538 64321 0.4820 +10538 64332 0.4550 +10538 64919 0.5070 +10538 79923 0.4520 +10538 80380 0.6420 +10538 84868 0.5450 +10538 84969 0.4310 +10538 112744 0.7360 +10538 114836 0.4520 +10538 116071 0.9210 +10538 122953 0.8060 +10538 149233 0.5440 +10538 151888 0.4680 +10538 201633 0.5390 +10539 10549 0.5690 +10539 10574 0.4600 +10539 10575 0.7080 +10539 10576 0.4490 +10539 10587 0.4600 +10539 10935 0.5250 +10539 10980 0.4400 +10539 10987 0.6730 +10539 10988 0.4320 +10539 11019 0.6530 +10539 11151 0.4350 +10539 22948 0.4060 +10539 23173 0.4570 +10539 23479 0.8830 +10539 25824 0.4730 +10539 25828 0.4170 +10539 25879 0.4540 +10539 26002 0.4230 +10539 26234 0.5040 +10539 26502 0.4260 +10539 27101 0.5440 +10539 27158 0.8440 +10539 27247 0.8220 +10539 51022 0.8790 +10539 51027 0.9920 +10539 51218 0.6820 +10539 51312 0.4320 +10539 51540 0.4820 +10539 51647 0.6750 +10539 54148 0.5310 +10539 54965 0.4560 +10539 55034 0.4370 +10539 55253 0.6930 +10539 55644 0.5780 +10539 55773 0.7910 +10539 55847 0.4740 +10539 57019 0.9950 +10539 57128 0.8380 +10539 64210 0.7500 +10539 64428 0.6790 +10539 80222 0.4570 +10539 80224 0.4760 +10539 80273 0.4420 +10539 81689 0.8030 +10539 84191 0.4430 +10539 112812 0.8330 +10539 112858 0.6530 +10539 114112 0.4470 +10539 122961 0.7530 +10539 123283 0.4530 +10539 140809 0.4730 +10539 150274 0.5140 +10539 171425 0.4300 +10539 200205 0.6280 +10539 346689 0.4470 +10539 347736 0.4710 +10539 386678 0.4370 +10539 387723 0.5350 +10539 388962 0.9550 +10539 552900 0.9950 +10539 654483 0.9980 +10539 107282092 0.7590 +10540 10671 0.9990 +10540 10728 0.4480 +10540 10880 0.7480 +10540 10881 0.7480 +10540 10982 0.5970 +10540 11004 0.5730 +10540 11070 0.5090 +10540 11076 0.9680 +10540 11127 0.7100 +10540 11258 0.9990 +10540 11275 0.6820 +10540 22796 0.5070 +10540 22919 0.7440 +10540 22920 0.7600 +10540 22924 0.8670 +10540 22930 0.5230 +10540 22931 0.5170 +10540 22981 0.6670 +10540 23122 0.4740 +10540 23162 0.6410 +10540 23187 0.4230 +10540 23299 0.9990 +10540 23332 0.4890 +10540 23354 0.5650 +10540 24137 0.5560 +10540 25782 0.5160 +10540 25839 0.5090 +10540 26153 0.5040 +10540 26286 0.5070 +10540 29127 0.5030 +10540 29765 0.5580 +10540 51143 0.9110 +10540 51164 0.9990 +10540 51199 0.7140 +10540 51255 0.4390 +10540 51272 0.5050 +10540 51332 0.4630 +10540 51560 0.5050 +10540 54069 0.6050 +10540 54504 0.5020 +10540 54785 0.4040 +10540 54801 0.5490 +10540 54820 0.5870 +10540 54930 0.5000 +10540 55055 0.5160 +10540 55142 0.4990 +10540 55559 0.5090 +10540 55738 0.5120 +10540 55765 0.4460 +10540 55845 0.4450 +10540 55860 0.9990 +10540 56992 0.6280 +10540 57180 0.9310 +10540 57511 0.5060 +10540 57576 0.4330 +10540 60626 0.6490 +10540 63943 0.5460 +10540 64446 0.4280 +10540 64689 0.5350 +10540 64837 0.7050 +10540 65108 0.4470 +10540 79441 0.4990 +10540 79659 0.4060 +10540 79848 0.7220 +10540 79866 0.4990 +10540 79902 0.4960 +10540 80184 0.5030 +10540 80310 0.4550 +10540 81565 0.7190 +10540 81569 0.7480 +10540 81930 0.7350 +10540 83548 0.7200 +10540 83658 0.9370 +10540 84364 0.5160 +10540 84516 0.9990 +10540 84517 0.6440 +10540 84643 0.5340 +10540 89953 0.7160 +10540 90990 0.4290 +10540 91582 0.5990 +10540 91949 0.5060 +10540 92558 0.8460 +10540 93323 0.5620 +10540 93594 0.4470 +10540 93621 0.4520 +10540 93661 0.6560 +10540 115106 0.7120 +10540 117177 0.5530 +10540 139741 0.4760 +10540 140625 0.4760 +10540 140735 0.7350 +10540 140850 0.5920 +10540 147700 0.6790 +10540 148741 0.5070 +10540 165055 0.4280 +10540 196385 0.4360 +10540 284382 0.7480 +10540 285643 0.5050 +10540 345651 0.4800 +10540 374355 0.4530 +10540 399687 0.4550 +10540 445582 0.4760 +10540 653269 0.4760 +10540 653857 0.9350 +10540 728378 0.4940 +10540 728642 0.5040 +10541 23479 0.5740 +10541 51277 0.4090 +10541 55854 0.4050 +10541 55929 0.5310 +10541 94239 0.4870 +10541 345651 0.4070 +10542 10641 0.9470 +10542 10666 0.4240 +10542 10670 0.9990 +10542 11133 0.6710 +10542 23028 0.7670 +10542 23334 0.6600 +10542 23557 0.4380 +10542 23677 0.5430 +10542 25962 0.4130 +10542 27244 0.6280 +10542 28956 0.9990 +10542 30851 0.4210 +10542 51256 0.4850 +10542 51382 0.7060 +10542 51398 0.4950 +10542 51422 0.4990 +10542 51441 0.4420 +10542 51606 0.6550 +10542 53632 0.4990 +10542 54205 0.4890 +10542 54468 0.7450 +10542 54739 0.4570 +10542 54785 0.5440 +10542 54890 0.4590 +10542 55004 0.9990 +10542 55255 0.7240 +10542 55846 0.6980 +10542 56339 0.6060 +10542 57521 0.9990 +10542 57589 0.9000 +10542 57600 0.9460 +10542 57721 0.5480 +10542 58528 0.9990 +10542 59286 0.4870 +10542 60673 0.5200 +10542 64121 0.9990 +10542 64223 0.9250 +10542 79726 0.7350 +10542 79902 0.5460 +10542 81532 0.4580 +10542 81929 0.6890 +10542 83667 0.6360 +10542 83903 0.4240 +10542 84219 0.7770 +10542 84232 0.4140 +10542 84335 0.6170 +10542 85442 0.7200 +10542 90423 0.6500 +10542 91746 0.4740 +10542 96459 0.5800 +10542 116843 0.4770 +10542 118426 0.4830 +10542 119032 0.5230 +10542 127124 0.5070 +10542 140775 0.7200 +10542 144577 0.6860 +10542 153129 0.9990 +10542 154743 0.5510 +10542 155066 0.5170 +10542 200558 0.4400 +10542 201163 0.9200 +10542 203228 0.7200 +10542 245972 0.5200 +10542 245973 0.6500 +10542 282991 0.5660 +10542 389541 0.9990 +10542 652968 0.6230 +10542 729438 0.5960 +10542 729991 0.5250 +10544 11119 0.4060 +10544 22914 0.4610 +10544 25936 0.9220 +10544 55741 0.4820 +10544 56942 0.9280 +10544 57126 0.4990 +10544 64115 0.5940 +10544 79017 0.4030 +10544 158835 0.6340 +10544 445329 0.4800 +10548 11267 0.6050 +10548 25930 0.5460 +10548 26099 0.4340 +10548 27183 0.6110 +10548 27243 0.7590 +10548 51028 0.4810 +10548 51510 0.6890 +10548 51534 0.4960 +10548 51652 0.6440 +10548 55858 0.4030 +10548 57132 0.5570 +10548 64149 0.5690 +10548 79643 0.5750 +10548 84141 0.4790 +10548 84313 0.5030 +10548 85415 0.4910 +10548 91782 0.4450 +10548 92421 0.4570 +10548 114822 0.4890 +10548 134288 0.4780 +10548 148362 0.4890 +10548 157753 0.4820 +10548 100526767 0.6430 +10549 10551 0.5340 +10549 10587 0.6180 +10549 10954 0.4200 +10549 10961 0.4020 +10549 11315 0.5070 +10549 23071 0.9820 +10549 23597 0.5050 +10549 25820 0.4010 +10549 25824 0.8200 +10549 25828 0.6490 +10549 30001 0.6370 +10549 50507 0.4260 +10549 51022 0.6060 +10549 51314 0.6020 +10549 53940 0.4070 +10549 54431 0.6530 +10549 56255 0.4150 +10549 56605 0.5770 +10549 64714 0.4210 +10549 79001 0.5430 +10549 79135 0.5160 +10549 80273 0.4330 +10549 81542 0.4460 +10549 81567 0.9940 +10549 84203 0.5620 +10549 114112 0.5300 +10549 134266 0.4090 +10549 140809 0.7710 +10549 169714 0.4570 +10549 255220 0.5130 +10549 257202 0.5450 +10549 347736 0.4260 +10549 493869 0.6480 +10550 10567 0.7850 +10550 11230 0.4610 +10550 23204 0.5860 +10550 23344 0.6400 +10550 27069 0.5960 +10550 50813 0.5890 +10550 51009 0.6290 +10550 55076 0.5400 +10550 57142 0.6720 +10550 79139 0.6350 +10550 80013 0.5510 +10550 80863 0.4220 +10550 84100 0.6420 +10550 91445 0.6840 +10550 219738 0.4350 +10550 252839 0.4420 +10550 255758 0.4240 +10550 285242 0.6160 +10551 10595 0.4850 +10551 10856 0.5860 +10551 10916 0.4260 +10551 10954 0.4080 +10551 10961 0.6610 +10551 11199 0.5200 +10551 23071 0.5240 +10551 25803 0.7840 +10551 27075 0.4250 +10551 27076 0.9840 +10551 27290 0.5480 +10551 30001 0.4060 +10551 30816 0.4090 +10551 51164 0.4230 +10551 51594 0.4330 +10551 54474 0.4530 +10551 56667 0.4750 +10551 57016 0.4670 +10551 57111 0.4090 +10551 57402 0.4320 +10551 64087 0.5380 +10551 79679 0.4220 +10551 81567 0.4350 +10551 83998 0.4870 +10551 94025 0.5110 +10551 117156 0.4230 +10551 117159 0.4200 +10551 121506 0.4640 +10551 155465 0.6610 +10551 157310 0.4570 +10551 405754 0.5080 +10551 440957 0.4440 +10551 653808 0.6400 +10551 727897 0.7260 +10552 10787 0.6950 +10552 10810 0.6820 +10552 10813 0.4570 +10552 22800 0.4410 +10552 23149 0.5040 +10552 23191 0.6680 +10552 23265 0.7520 +10552 23269 0.5240 +10552 23397 0.4280 +10552 23607 0.4660 +10552 23660 0.5090 +10552 26060 0.4200 +10552 26999 0.6880 +10552 29063 0.5240 +10552 30011 0.4120 +10552 51184 0.5360 +10552 51517 0.8920 +10552 51602 0.4190 +10552 55845 0.9270 +10552 57154 0.5960 +10552 57180 0.9640 +10552 64151 0.4130 +10552 65083 0.5270 +10552 81873 0.9990 +10552 83548 0.5240 +10552 84135 0.4330 +10552 84313 0.6720 +10552 84916 0.4700 +10552 84950 0.4280 +10552 90507 0.6060 +10552 90956 0.4100 +10552 115548 0.5040 +10552 147179 0.5670 +10552 151306 0.6740 +10552 390714 0.5140 +10552 644150 0.5020 +10552 653720 0.4100 +10552 653857 0.7190 +10552 100526693 0.8820 +10553 11343 0.5500 +10553 23041 0.4010 +10553 23203 0.5840 +10553 23299 0.6130 +10553 23645 0.5340 +10553 27089 0.5600 +10553 27235 0.5230 +10553 29796 0.6990 +10553 29957 0.4400 +10553 51079 0.7690 +10553 51100 0.6830 +10553 51807 0.7230 +10553 54431 0.4620 +10553 54539 0.5900 +10553 55967 0.8140 +10553 57727 0.6150 +10553 64221 0.8010 +10553 79085 0.4300 +10553 79598 0.4930 +10553 79728 0.6890 +10553 79861 0.7690 +10553 81341 0.5340 +10553 84221 0.4180 +10553 84790 0.7690 +10553 84876 0.4100 +10553 84886 0.4420 +10553 84939 0.6660 +10553 91300 0.5340 +10553 91543 0.4540 +10553 91942 0.4710 +10553 112714 0.7680 +10553 113457 0.7230 +10553 114789 0.4300 +10553 126328 0.4600 +10553 139221 0.6660 +10553 148811 0.4230 +10553 200634 0.4130 +10553 282969 0.4670 +10553 284427 0.4300 +10553 374291 0.6710 +10553 404636 0.4840 +10553 440567 0.6020 +10553 728317 0.6660 +10553 100532726 0.5650 +10554 10555 0.9110 +10554 10564 0.4370 +10554 10565 0.4370 +10554 10999 0.5080 +10554 11001 0.4370 +10554 11343 0.4270 +10554 22845 0.4170 +10554 23171 0.8750 +10554 23175 0.8340 +10554 23305 0.4600 +10554 23646 0.6740 +10554 26580 0.5880 +10554 27303 0.4170 +10554 51099 0.4120 +10554 51703 0.4520 +10554 54947 0.4140 +10554 54995 0.4490 +10554 55326 0.9650 +10554 55750 0.9050 +10554 56894 0.9790 +10554 56895 0.9740 +10554 56994 0.4650 +10554 57104 0.4190 +10554 57678 0.9320 +10554 64900 0.8180 +10554 79071 0.4070 +10554 79888 0.5290 +10554 79966 0.4370 +10554 80168 0.5480 +10554 84513 0.9380 +10554 84649 0.6590 +10554 84803 0.8910 +10554 116255 0.6570 +10554 122618 0.6500 +10554 129642 0.9740 +10554 132001 0.4170 +10554 132949 0.5460 +10554 137964 0.9180 +10554 139189 0.6590 +10554 150763 0.8920 +10554 154141 0.9380 +10554 158833 0.4210 +10554 160851 0.6590 +10554 163404 0.4270 +10554 196051 0.9320 +10554 219902 0.5860 +10554 253558 0.9480 +10554 254531 0.6550 +10554 376497 0.4800 +10555 10564 0.4370 +10555 10565 0.4370 +10555 10864 0.4210 +10555 10999 0.5070 +10555 11001 0.4670 +10555 11343 0.5180 +10555 22845 0.4820 +10555 23171 0.8690 +10555 23175 0.9280 +10555 23646 0.6600 +10555 26580 0.9880 +10555 28965 0.4090 +10555 51099 0.5160 +10555 51703 0.4940 +10555 54947 0.8780 +10555 54995 0.4590 +10555 55326 0.9620 +10555 55750 0.9180 +10555 56894 0.9700 +10555 56895 0.9650 +10555 56934 0.4890 +10555 56994 0.4430 +10555 57104 0.5580 +10555 57678 0.9260 +10555 63924 0.6260 +10555 64748 0.4320 +10555 64900 0.8500 +10555 79071 0.4460 +10555 79888 0.4550 +10555 79966 0.4390 +10555 80168 0.5030 +10555 81616 0.5440 +10555 84513 0.9360 +10555 84649 0.7070 +10555 84803 0.9110 +10555 116255 0.5310 +10555 122618 0.6520 +10555 129642 0.9790 +10555 132949 0.5170 +10555 137964 0.9020 +10555 139189 0.6600 +10555 150763 0.8890 +10555 154141 0.9310 +10555 158833 0.4360 +10555 160851 0.6700 +10555 169841 0.4340 +10555 196051 0.9420 +10555 253558 0.9430 +10555 254531 0.5510 +10555 284119 0.8410 +10555 376497 0.4770 +10555 729359 0.4350 +10556 10557 0.9990 +10556 10775 0.9990 +10556 10799 0.9990 +10556 10940 0.9990 +10556 10946 0.4850 +10556 10978 0.9050 +10556 11102 0.9990 +10556 11103 0.4290 +10556 11157 0.6890 +10556 11340 0.4080 +10556 23016 0.5750 +10556 23076 0.5540 +10556 23405 0.9070 +10556 25871 0.8270 +10556 25926 0.4030 +10556 26523 0.7770 +10556 27042 0.4300 +10556 27161 0.9000 +10556 27292 0.4090 +10556 28987 0.8220 +10556 29090 0.4560 +10556 29102 0.7270 +10556 51010 0.5460 +10556 51013 0.6570 +10556 51023 0.6980 +10556 51065 0.5490 +10556 51118 0.7150 +10556 51154 0.4780 +10556 51319 0.5650 +10556 51367 0.9990 +10556 51575 0.4400 +10556 51602 0.9560 +10556 51634 0.5210 +10556 51691 0.4240 +10556 54433 0.7900 +10556 54487 0.7200 +10556 54512 0.4010 +10556 54913 0.9990 +10556 54931 0.6750 +10556 54952 0.4460 +10556 55272 0.4160 +10556 55299 0.4760 +10556 55505 0.9180 +10556 55520 0.4030 +10556 55651 0.8950 +10556 55775 0.4070 +10556 56647 0.4970 +10556 60528 0.4820 +10556 65095 0.8710 +10556 79042 0.4150 +10556 79897 0.9990 +10556 80135 0.4660 +10556 80746 0.5950 +10556 83608 0.6560 +10556 84154 0.7320 +10556 84365 0.4410 +10556 92345 0.9200 +10556 138716 0.9890 +10556 140032 0.4990 +10556 192669 0.7220 +10556 192670 0.7200 +10556 201161 0.4510 +10556 202658 0.5340 +10556 283989 0.5680 +10556 345630 0.5830 +10557 10594 0.4240 +10557 10607 0.8780 +10557 10775 0.9990 +10557 10785 0.4310 +10557 10799 0.9990 +10557 10813 0.7030 +10557 10885 0.8580 +10557 10940 0.9930 +10557 10946 0.4400 +10557 10952 0.4390 +10557 10969 0.6650 +10557 10978 0.9080 +10557 10985 0.4630 +10557 10988 0.4750 +10557 11102 0.9910 +10557 11103 0.8630 +10557 11108 0.4090 +10557 11157 0.6250 +10557 11180 0.6870 +10557 11222 0.6930 +10557 11224 0.8480 +10557 11340 0.5830 +10557 22927 0.4890 +10557 22984 0.8680 +10557 23016 0.5900 +10557 23020 0.8950 +10557 23054 0.6050 +10557 23076 0.6260 +10557 23160 0.8610 +10557 23173 0.4760 +10557 23204 0.5680 +10557 23212 0.5890 +10557 23246 0.6490 +10557 23404 0.5390 +10557 23405 0.9270 +10557 23450 0.4020 +10557 23481 0.6750 +10557 23517 0.5470 +10557 23521 0.6780 +10557 23560 0.6050 +10557 23640 0.6020 +10557 23658 0.4530 +10557 24140 0.4120 +10557 24148 0.5950 +10557 25842 0.6530 +10557 25871 0.7210 +10557 25873 0.7490 +10557 25879 0.7810 +10557 25983 0.8390 +10557 26121 0.4170 +10557 26135 0.5030 +10557 26155 0.6140 +10557 26156 0.8080 +10557 26354 0.5190 +10557 26523 0.7290 +10557 26574 0.8730 +10557 26692 0.4170 +10557 26995 0.6300 +10557 27127 0.5320 +10557 27161 0.9030 +10557 27292 0.5200 +10557 27335 0.5020 +10557 27340 0.8400 +10557 27341 0.8320 +10557 28987 0.8550 +10557 28998 0.6820 +10557 29088 0.6480 +10557 29093 0.6880 +10557 29102 0.8100 +10557 29927 0.4200 +10557 29960 0.6410 +10557 29979 0.4440 +10557 29997 0.4120 +10557 30836 0.8010 +10557 51010 0.6030 +10557 51013 0.5670 +10557 51018 0.4860 +10557 51042 0.4520 +10557 51065 0.8290 +10557 51068 0.5530 +10557 51069 0.7720 +10557 51073 0.6830 +10557 51077 0.8640 +10557 51081 0.7470 +10557 51082 0.4250 +10557 51096 0.8960 +10557 51116 0.6930 +10557 51118 0.8820 +10557 51119 0.5840 +10557 51121 0.7250 +10557 51149 0.7440 +10557 51154 0.7830 +10557 51187 0.7230 +10557 51319 0.4380 +10557 51367 0.9990 +10557 51388 0.7910 +10557 51574 0.4870 +10557 51602 0.9730 +10557 51634 0.4990 +10557 51690 0.7170 +10557 51691 0.4270 +10557 54433 0.8370 +10557 54487 0.7220 +10557 54512 0.4880 +10557 54552 0.4790 +10557 54606 0.4650 +10557 54663 0.4980 +10557 54865 0.7950 +10557 54913 0.9990 +10557 54931 0.6960 +10557 54948 0.6750 +10557 54984 0.7900 +10557 55127 0.8510 +10557 55173 0.7900 +10557 55176 0.4230 +10557 55226 0.8800 +10557 55272 0.8710 +10557 55299 0.8270 +10557 55316 0.6790 +10557 55505 0.9310 +10557 55591 0.4680 +10557 55651 0.9120 +10557 55723 0.6460 +10557 55759 0.6340 +10557 55760 0.4270 +10557 55781 0.5900 +10557 55813 0.8280 +10557 56648 0.6160 +10557 56893 0.5100 +10557 56902 0.6180 +10557 56915 0.5630 +10557 56965 0.4990 +10557 57050 0.8530 +10557 57062 0.4570 +10557 57819 0.4980 +10557 60678 0.5560 +10557 63931 0.6800 +10557 64216 0.5410 +10557 64318 0.5360 +10557 64374 0.6030 +10557 64779 0.6810 +10557 64960 0.6410 +10557 64963 0.6680 +10557 64969 0.7120 +10557 65003 0.6210 +10557 65008 0.6990 +10557 65083 0.8180 +10557 65121 0.4960 +10557 65122 0.4960 +10557 79050 0.8830 +10557 79571 0.6110 +10557 79590 0.6670 +10557 79631 0.6640 +10557 79668 0.4970 +10557 79753 0.4650 +10557 79897 0.9990 +10557 79954 0.8140 +10557 80135 0.5860 +10557 80746 0.6110 +10557 81856 0.4970 +10557 81887 0.4250 +10557 83608 0.6960 +10557 83743 0.4430 +10557 83759 0.5680 +10557 84128 0.8770 +10557 84135 0.9770 +10557 84154 0.5450 +10557 84294 0.5630 +10557 84365 0.7540 +10557 84549 0.5680 +10557 84811 0.4460 +10557 84916 0.9060 +10557 84946 0.5620 +10557 85476 0.6600 +10557 90441 0.4560 +10557 91408 0.4070 +10557 91607 0.4080 +10557 91775 0.4600 +10557 92196 0.4280 +10557 92345 0.6150 +10557 92856 0.8460 +10557 114987 0.6960 +10557 116832 0.5270 +10557 117246 0.4970 +10557 118460 0.4270 +10557 124454 0.4920 +10557 126375 0.4320 +10557 126402 0.6960 +10557 128061 0.6310 +10557 138716 0.9760 +10557 140032 0.8390 +10557 140801 0.5940 +10557 142940 0.7800 +10557 143244 0.6130 +10557 146212 0.4530 +10557 153527 0.4500 +10557 192669 0.7270 +10557 192670 0.7270 +10557 200916 0.6540 +10557 201595 0.4190 +10557 202658 0.4080 +10557 219899 0.4480 +10557 221830 0.4420 +10557 255308 0.5190 +10557 266743 0.5840 +10557 283989 0.5490 +10557 285855 0.6560 +10557 343068 0.4960 +10557 343070 0.4960 +10557 345630 0.8610 +10557 347487 0.6110 +10557 387129 0.6510 +10557 390999 0.4960 +10557 391002 0.4960 +10557 400735 0.4960 +10557 400736 0.4960 +10557 440560 0.4960 +10557 440561 0.4960 +10557 441873 0.4960 +10557 641776 0.5640 +10557 643909 0.5640 +10557 645051 0.5380 +10557 645073 0.5380 +10557 645359 0.4960 +10557 653619 0.4960 +10557 728524 0.5640 +10557 728689 0.5370 +10557 729396 0.5380 +10557 729422 0.5380 +10557 729428 0.5380 +10557 729431 0.5380 +10557 729442 0.5380 +10557 729447 0.5380 +10557 729528 0.4960 +10557 100008586 0.5380 +10557 100132399 0.5380 +10557 100287482 0.6110 +10557 100505478 0.6510 +10557 100526842 0.6760 +10557 100529097 0.6530 +10557 100529239 0.6980 +10557 100996746 0.5640 +10557 101929983 0.4960 +10557 102724473 0.5380 +10557 105180390 0.5640 +10557 105180391 0.5640 +10557 109703458 0.4430 +10558 10952 0.4140 +10558 10993 0.8440 +10558 23761 0.5430 +10558 27293 0.5110 +10558 29095 0.9690 +10558 29956 0.7900 +10558 50814 0.4300 +10558 51114 0.9100 +10558 51125 0.9040 +10558 51741 0.4220 +10558 53637 0.4490 +10558 54205 0.4740 +10558 54463 0.4030 +10558 55304 0.9980 +10558 55331 0.7220 +10558 55425 0.4110 +10558 55512 0.5610 +10558 55578 0.4510 +10558 55627 0.5110 +10558 56624 0.7720 +10558 56848 0.8000 +10558 57591 0.4310 +10558 57704 0.5710 +10558 63826 0.8330 +10558 64781 0.8200 +10558 64834 0.4240 +10558 79152 0.6230 +10558 79603 0.7840 +10558 79628 0.4340 +10558 80146 0.5410 +10558 81537 0.6400 +10558 83723 0.8500 +10558 84337 0.4290 +10558 84725 0.4510 +10558 84955 0.6290 +10558 91012 0.7910 +10558 94101 0.9720 +10558 94103 0.9990 +10558 113675 0.8380 +10558 114882 0.4250 +10558 116143 0.4350 +10558 117246 0.5450 +10558 120892 0.5620 +10558 123099 0.7360 +10558 124976 0.4270 +10558 125981 0.7790 +10558 130367 0.5640 +10558 132949 0.4100 +10558 140862 0.8330 +10558 142891 0.5490 +10558 145501 0.8330 +10558 165679 0.9980 +10558 166929 0.6450 +10558 171546 0.9990 +10558 204219 0.7110 +10558 253782 0.8340 +10558 255738 0.4960 +10558 259230 0.7000 +10558 339221 0.5290 +10558 340485 0.7540 +10558 375298 0.4410 +10558 388931 0.4590 +10558 401647 0.5800 +10558 653308 0.4210 +10559 10905 0.4200 +10559 11046 0.9310 +10559 22859 0.9690 +10559 23169 0.9300 +10559 23266 0.4170 +10559 25972 0.4900 +10559 26503 0.4330 +10559 27090 0.4720 +10559 29071 0.5370 +10559 29906 0.4280 +10559 29929 0.4310 +10559 51000 0.6150 +10559 51006 0.5750 +10559 54187 0.7200 +10559 54414 0.5120 +10559 55032 0.4540 +10559 55343 0.7550 +10559 55808 0.5620 +10559 55858 0.4340 +10559 55907 0.7120 +10559 56913 0.4360 +10559 64746 0.5930 +10559 79939 0.6200 +10559 80896 0.4070 +10559 83548 0.5110 +10559 84317 0.4740 +10559 84912 0.5690 +10559 85365 0.5340 +10559 121665 0.4120 +10559 140838 0.4920 +10559 148641 0.4310 +10559 154313 0.4110 +10559 164045 0.6580 +10559 196051 0.4120 +10559 222553 0.4750 +10559 340146 0.9220 +10559 347734 0.5280 +10560 27010 0.7550 +10560 28982 0.4510 +10560 50674 0.4350 +10560 51067 0.4030 +10560 51095 0.4090 +10560 51124 0.6640 +10560 51218 0.4570 +10560 51601 0.4380 +10560 54977 0.5780 +10560 57821 0.4620 +10560 60386 0.6530 +10560 79178 0.4560 +10560 80255 0.4090 +10560 80324 0.5280 +10560 80704 0.9090 +10560 84076 0.5170 +10560 113235 0.4840 +10560 113278 0.4080 +10560 169792 0.5450 +10560 222546 0.6050 +10560 256297 0.5070 +10560 346171 0.4480 +10560 387787 0.4890 +10561 10581 0.4760 +10561 10616 0.4260 +10561 10673 0.4300 +10561 10964 0.9990 +10561 11274 0.9390 +10561 23424 0.4300 +10561 23586 0.9130 +10561 24138 0.9170 +10561 26010 0.5540 +10561 51056 0.6230 +10561 51062 0.5240 +10561 51131 0.4430 +10561 51191 0.9140 +10561 51284 0.4270 +10561 54625 0.8420 +10561 54739 0.9700 +10561 54809 0.8620 +10561 55008 0.9080 +10561 55337 0.4780 +10561 55601 0.9190 +10561 64108 0.9320 +10561 64123 0.4760 +10561 64135 0.9540 +10561 64761 0.7490 +10561 79132 0.8070 +10561 80830 0.5330 +10561 81030 0.5170 +10561 83666 0.9290 +10561 85363 0.4110 +10561 85441 0.7430 +10561 91543 0.9830 +10561 94240 0.9090 +10561 115361 0.6170 +10561 115362 0.5980 +10561 122509 0.5040 +10561 129607 0.7900 +10561 151636 0.4600 +10561 163351 0.5550 +10561 165631 0.4200 +10561 219285 0.9140 +10561 388646 0.5380 +10561 439996 0.5600 +10562 11030 0.4200 +10562 26018 0.6990 +10562 26512 0.4340 +10562 28514 0.4370 +10562 51079 0.7530 +10562 54474 0.5390 +10562 54829 0.4890 +10562 55068 0.4320 +10562 56181 0.4200 +10562 56667 0.4060 +10562 57126 0.6140 +10562 64077 0.4430 +10562 64094 0.6000 +10562 64127 0.4860 +10562 83746 0.4020 +10562 83998 0.5190 +10562 84525 0.5970 +10562 89780 0.4260 +10562 92312 0.4200 +10562 121665 0.4050 +10562 153396 0.4970 +10562 154664 0.4160 +10562 284654 0.5980 +10562 728358 0.4040 +10562 100133941 0.4120 +10562 100532731 0.6070 +10563 10630 0.5130 +10563 10663 0.9060 +10563 10673 0.8330 +10563 10803 0.7930 +10563 10850 0.9130 +10563 10874 0.4030 +10563 10894 0.5330 +10563 23308 0.4660 +10563 23495 0.4380 +10563 27299 0.5980 +10563 29126 0.5650 +10563 29851 0.7520 +10563 30009 0.4960 +10563 50512 0.4390 +10563 50615 0.5690 +10563 50616 0.5470 +10563 50943 0.5880 +10563 51284 0.4430 +10563 51554 0.9920 +10563 54205 0.4070 +10563 54210 0.5680 +10563 56477 0.9970 +10563 57007 0.6540 +10563 57126 0.4520 +10563 57379 0.5660 +10563 58191 0.8730 +10563 59067 0.4980 +10563 63940 0.4130 +10563 64108 0.4340 +10563 65258 0.5290 +10563 80380 0.4250 +10563 84868 0.4570 +10563 90865 0.5940 +10563 112744 0.4510 +10563 115650 0.4870 +10563 123803 0.6080 +10563 151888 0.4470 +10563 201633 0.5350 +10563 260436 0.5310 +10563 284340 0.4070 +10563 414062 0.4550 +10563 102723407 0.4250 +10564 10565 0.8300 +10564 10574 0.5390 +10564 10575 0.5150 +10564 10576 0.5140 +10564 10693 0.5090 +10564 10694 0.5010 +10564 11216 0.5270 +10564 11328 0.4300 +10564 22803 0.4030 +10564 22930 0.4580 +10564 22948 0.5080 +10564 23041 0.4860 +10564 23265 0.6320 +10564 23327 0.4820 +10564 25782 0.4560 +10564 26190 0.4070 +10564 26224 0.4490 +10564 26270 0.4430 +10564 26292 0.6320 +10564 26330 0.4100 +10564 26985 0.4290 +10564 55294 0.4050 +10564 55653 0.5360 +10564 55656 0.4520 +10564 55780 0.7290 +10564 57148 0.4190 +10564 79633 0.5310 +10564 79876 0.4420 +10564 79877 0.4550 +10564 83737 0.5830 +10564 83752 0.4050 +10564 160418 0.4170 +10564 284403 0.4460 +10564 387755 0.4040 +10565 11216 0.5690 +10565 11231 0.4110 +10565 22828 0.4440 +10565 22878 0.6330 +10565 23039 0.4620 +10565 23041 0.5200 +10565 23189 0.4390 +10565 23636 0.8220 +10565 25831 0.4920 +10565 25836 0.5390 +10565 26060 0.4780 +10565 26292 0.6640 +10565 29100 0.4670 +10565 51366 0.7780 +10565 54521 0.4040 +10565 55336 0.4550 +10565 55605 0.6880 +10565 55633 0.4680 +10565 57148 0.4390 +10565 57532 0.5330 +10565 80124 0.4630 +10565 80781 0.4280 +10565 81876 0.4040 +10565 84661 0.5280 +10565 128387 0.4700 +10565 197131 0.4770 +10565 285527 0.5040 +10566 10672 0.4380 +10566 11055 0.4770 +10566 11214 0.4400 +10566 11216 0.4740 +10566 25915 0.6110 +10566 25981 0.5180 +10566 26256 0.9630 +10566 26330 0.5540 +10566 26338 0.5180 +10566 51686 0.4080 +10566 53340 0.9530 +10566 54763 0.9890 +10566 54865 0.4630 +10566 64518 0.4670 +10566 80705 0.5410 +10566 81833 0.5260 +10566 83853 0.9420 +10566 84075 0.5440 +10566 84519 0.5180 +10566 113746 0.4320 +10566 114822 0.8250 +10566 117144 0.4360 +10566 123775 0.4020 +10566 152015 0.6310 +10566 160419 0.5060 +10566 219681 0.4910 +10566 246777 0.4020 +10566 284110 0.4290 +10566 386677 0.4500 +10566 401024 0.5320 +10567 10589 0.5220 +10567 10897 0.7760 +10567 11069 0.7820 +10567 11230 0.7020 +10567 11316 0.5530 +10567 22800 0.5260 +10567 22827 0.4310 +10567 22954 0.5070 +10567 22999 0.4440 +10567 23770 0.4780 +10567 27445 0.8740 +10567 29100 0.5410 +10567 51282 0.5410 +10567 51806 0.4100 +10567 53916 0.5550 +10567 54432 0.4040 +10567 55829 0.4450 +10567 57142 0.6200 +10567 65009 0.4740 +10567 81555 0.5620 +10567 81876 0.6170 +10567 83851 0.5940 +10567 84272 0.4070 +10567 84826 0.4660 +10567 84871 0.4100 +10567 85013 0.5190 +10567 90522 0.7420 +10567 91860 0.4100 +10567 126119 0.4270 +10567 148932 0.4120 +10567 163688 0.4100 +10567 285525 0.4590 +10567 768206 0.4650 +10568 11014 0.6600 +10568 27349 0.4240 +10568 27436 0.6230 +10568 51208 0.4230 +10568 51474 0.4500 +10568 54664 0.4180 +10568 54995 0.5020 +10568 55596 0.4910 +10568 55930 0.4620 +10568 56302 0.4180 +10568 57120 0.7790 +10568 57148 0.4120 +10568 112812 0.4630 +10568 121227 0.7450 +10568 142680 0.9070 +10568 653509 0.5940 +10568 729238 0.4910 +10569 10594 0.9990 +10569 10762 0.4250 +10569 10772 0.4230 +10569 10891 0.5870 +10569 10914 0.8260 +10569 10921 0.5320 +10569 10946 0.5260 +10569 10949 0.4770 +10569 10973 0.6260 +10569 10978 0.5000 +10569 10992 0.9970 +10569 11017 0.4800 +10569 11051 0.5130 +10569 11052 0.5120 +10569 11097 0.4030 +10569 11338 0.8990 +10569 22794 0.8960 +10569 22827 0.4210 +10569 22916 0.8650 +10569 22938 0.9690 +10569 23020 0.9980 +10569 23082 0.5870 +10569 23165 0.4840 +10569 23279 0.4050 +10569 23350 0.4590 +10569 23398 0.8480 +10569 23451 0.6200 +10569 23524 0.9860 +10569 23620 0.5070 +10569 23636 0.4050 +10569 24144 0.8710 +10569 24148 0.4870 +10569 25949 0.9950 +10569 26017 0.9920 +10569 26121 0.5890 +10569 27238 0.4730 +10569 27336 0.5030 +10569 27339 0.9940 +10569 29079 0.4440 +10569 51340 0.9970 +10569 51362 0.9990 +10569 51428 0.8210 +10569 51503 0.9730 +10569 51538 0.5600 +10569 51585 0.5670 +10569 51593 0.8030 +10569 51631 0.5240 +10569 51634 0.5340 +10569 51645 0.9690 +10569 51759 0.8790 +10569 53371 0.4250 +10569 53938 0.9770 +10569 54505 0.4120 +10569 54819 0.5750 +10569 54883 0.9760 +10569 55094 0.5420 +10569 55100 0.6890 +10569 55110 0.9160 +10569 55660 0.4180 +10569 55696 0.9860 +10569 55702 0.9640 +10569 55746 0.4670 +10569 55760 0.4770 +10569 55854 0.4590 +10569 56919 0.6390 +10569 56949 0.9700 +10569 57122 0.4050 +10569 57187 0.4680 +10569 57461 0.6160 +10569 57647 0.5150 +10569 57703 0.9990 +10569 57721 0.4270 +10569 58509 0.9750 +10569 60625 0.8150 +10569 63877 0.4850 +10569 63932 0.8140 +10569 64208 0.4710 +10569 64848 0.4370 +10569 65109 0.8140 +10569 79023 0.4020 +10569 79165 0.8160 +10569 79446 0.8450 +10569 79576 0.9720 +10569 79665 0.5480 +10569 79706 0.9830 +10569 79753 0.4750 +10569 79869 0.5400 +10569 79902 0.4050 +10569 80011 0.8330 +10569 81892 0.4620 +10569 81929 0.4160 +10569 83443 0.4900 +10569 84081 0.6950 +10569 84271 0.5270 +10569 84811 0.7290 +10569 84950 0.5660 +10569 84967 0.5260 +10569 84991 0.4630 +10569 85476 0.4130 +10569 129401 0.4050 +10569 143884 0.7400 +10569 151903 0.8160 +10569 153527 0.5670 +10569 154007 0.5200 +10569 163859 0.9790 +10569 164045 0.6180 +10569 165545 0.4770 +10569 170506 0.4250 +10569 199746 0.6390 +10569 220988 0.5250 +10569 221092 0.5290 +10569 222183 0.5590 +10569 246243 0.4090 +10569 392517 0.6800 +10569 100534599 0.5860 +10569 100996928 0.5670 +10570 11227 0.4040 +10570 51026 0.6050 +10570 51167 0.5710 +10570 51700 0.5620 +10570 51706 0.5620 +10570 51733 0.4570 +10570 55160 0.4460 +10570 55186 0.4230 +10570 55558 0.5380 +10570 55748 0.4160 +10570 55821 0.4880 +10570 56896 0.8980 +10570 79663 0.4480 +10570 84275 0.4230 +10570 84735 0.4160 +10570 89894 0.6230 +10570 91584 0.5470 +10570 92106 0.5620 +10570 116154 0.4200 +10570 127845 0.6050 +10570 129049 0.5020 +10570 148811 0.4160 +10570 256536 0.4410 +10570 283985 0.4370 +10570 606495 0.5620 +10570 100526760 0.4160 +10572 22890 0.4360 +10572 56852 0.7830 +10572 80757 0.4160 +10572 90480 0.4610 +10572 442862 0.4020 +10573 10884 0.9650 +10573 11222 0.9760 +10573 23107 0.8320 +10573 26164 0.8160 +10573 26589 0.9470 +10573 27303 0.4020 +10573 28957 0.8490 +10573 28973 0.8500 +10573 28977 0.9330 +10573 28998 0.9700 +10573 29074 0.9410 +10573 29088 0.9880 +10573 29093 0.9240 +10573 29960 0.8230 +10573 51021 0.8500 +10573 51023 0.8460 +10573 51069 0.9630 +10573 51073 0.9840 +10573 51079 0.4330 +10573 51081 0.8970 +10573 51116 0.8770 +10573 51205 0.4360 +10573 51250 0.8250 +10573 51253 0.9860 +10573 51258 0.9510 +10573 51263 0.9620 +10573 51264 0.9740 +10573 51318 0.9380 +10573 51373 0.8660 +10573 51642 0.9020 +10573 51649 0.8800 +10573 51650 0.8550 +10573 54148 0.9750 +10573 54460 0.8490 +10573 54516 0.5530 +10573 54534 0.9690 +10573 54948 0.9750 +10573 54998 0.9020 +10573 55037 0.8310 +10573 55052 0.9520 +10573 55168 0.9770 +10573 55173 0.8610 +10573 55178 0.9390 +10573 55794 0.8230 +10573 56945 0.8430 +10573 57129 0.9870 +10573 57418 0.4180 +10573 58986 0.5360 +10573 60488 0.8340 +10573 63875 0.9710 +10573 63931 0.8500 +10573 64223 0.4780 +10573 64432 0.8700 +10573 64928 0.9070 +10573 64949 0.9390 +10573 64951 0.8550 +10573 64960 0.8630 +10573 64963 0.8790 +10573 64965 0.8910 +10573 64968 0.8340 +10573 64969 0.8470 +10573 64975 0.9860 +10573 64976 0.9700 +10573 64978 0.9840 +10573 64979 0.8510 +10573 64981 0.9610 +10573 64983 0.9670 +10573 65003 0.9340 +10573 65005 0.9890 +10573 65008 0.9590 +10573 65080 0.9720 +10573 65993 0.9280 +10573 78988 0.9620 +10573 79590 0.9750 +10573 84311 0.9600 +10573 84326 0.4160 +10573 84340 0.8160 +10573 84545 0.9190 +10573 85476 0.8160 +10573 85865 0.8160 +10573 90480 0.9890 +10573 91574 0.8330 +10573 92170 0.8210 +10573 92399 0.8410 +10573 115416 0.9460 +10573 116540 0.9020 +10573 116541 0.8730 +10573 118487 0.8790 +10573 122704 0.9000 +10573 124995 0.9490 +10573 128308 0.9690 +10573 130916 0.8190 +10573 150274 0.4220 +10573 219402 0.5320 +10573 219927 0.8910 +10573 387338 0.8110 +10573 127898561 0.8110 +10574 10575 0.9990 +10574 10576 0.9990 +10574 10594 0.5350 +10574 10598 0.6720 +10574 10606 0.5020 +10574 10681 0.6290 +10574 10693 0.9980 +10574 10694 0.9990 +10574 10726 0.7110 +10574 10728 0.9460 +10574 10808 0.4910 +10574 10856 0.8020 +10574 10915 0.4880 +10574 10921 0.4080 +10574 10963 0.9640 +10574 10971 0.5180 +10574 10987 0.4180 +10574 10992 0.6580 +10574 11047 0.5140 +10574 11080 0.4140 +10574 11140 0.9310 +10574 11171 0.5550 +10574 11224 0.5470 +10574 11315 0.4860 +10574 11328 0.5360 +10574 11331 0.5950 +10574 22803 0.5380 +10574 22824 0.5040 +10574 22827 0.4510 +10574 22948 0.9990 +10574 23030 0.4830 +10574 23221 0.5900 +10574 23234 0.9460 +10574 23243 0.4700 +10574 23435 0.5820 +10574 23521 0.6080 +10574 23753 0.7260 +10574 25822 0.4030 +10574 25843 0.9940 +10574 25873 0.5650 +10574 25879 0.4290 +10574 25902 0.4350 +10574 25914 0.4650 +10574 25956 0.6800 +10574 26135 0.4860 +10574 26140 0.5950 +10574 26190 0.5030 +10574 26224 0.5060 +10574 26234 0.4990 +10574 26259 0.6220 +10574 26270 0.5170 +10574 26272 0.4990 +10574 26330 0.6050 +10574 26353 0.7690 +10574 26985 0.5640 +10574 26986 0.5180 +10574 27101 0.4270 +10574 27175 0.4460 +10574 27285 0.4370 +10574 29102 0.4220 +10574 29888 0.9940 +10574 29966 0.9940 +10574 30846 0.4930 +10574 51061 0.4020 +10574 51081 0.4390 +10574 51154 0.4350 +10574 51174 0.6470 +10574 51182 0.4960 +10574 51386 0.6210 +10574 51398 0.5470 +10574 51585 0.4150 +10574 51726 0.8140 +10574 51764 0.5070 +10574 51807 0.5990 +10574 54331 0.5070 +10574 54431 0.4550 +10574 54461 0.5450 +10574 54495 0.4370 +10574 54542 0.6040 +10574 54853 0.4660 +10574 55135 0.7550 +10574 55171 0.4540 +10574 55172 0.5430 +10574 55220 0.5960 +10574 55291 0.4230 +10574 55294 0.5180 +10574 55466 0.4390 +10574 55622 0.4300 +10574 55651 0.6260 +10574 55780 0.9700 +10574 55844 0.6360 +10574 55970 0.5090 +10574 56984 0.9120 +10574 57003 0.5510 +10574 57180 0.4930 +10574 57470 0.4080 +10574 57826 0.4580 +10574 59345 0.5260 +10574 63971 0.4990 +10574 64326 0.4020 +10574 64446 0.4600 +10574 64714 0.4340 +10574 79031 0.9900 +10574 79048 0.4020 +10574 79084 0.7440 +10574 79657 0.6080 +10574 79738 0.9230 +10574 79861 0.8630 +10574 79968 0.5850 +10574 80005 0.4050 +10574 80086 0.5870 +10574 80273 0.6030 +10574 81027 0.6150 +10574 81570 0.5230 +10574 81572 0.5480 +10574 83743 0.4410 +10574 83752 0.7110 +10574 84140 0.8410 +10574 84261 0.6110 +10574 84617 0.6820 +10574 84790 0.7220 +10574 94235 0.5070 +10574 112714 0.6490 +10574 113457 0.6000 +10574 116835 0.5240 +10574 120379 0.5450 +10574 121441 0.4010 +10574 123103 0.4590 +10574 134266 0.5920 +10574 134492 0.4120 +10574 139741 0.4640 +10574 150160 0.9930 +10574 165721 0.4240 +10574 166863 0.4390 +10574 202052 0.4150 +10574 203068 0.9460 +10574 259217 0.4520 +10574 285126 0.5200 +10574 339416 0.4580 +10574 345630 0.6770 +10574 347733 0.6780 +10574 349136 0.5250 +10574 645545 0.4920 +10574 728689 0.5910 +10575 10576 0.9990 +10575 10594 0.4620 +10575 10598 0.5520 +10575 10606 0.5500 +10575 10681 0.5500 +10575 10693 0.9990 +10575 10694 0.9990 +10575 10726 0.6820 +10575 10728 0.9450 +10575 10808 0.4840 +10575 10856 0.7460 +10575 10963 0.9530 +10575 11055 0.4310 +10575 11080 0.4090 +10575 11140 0.9370 +10575 11171 0.4010 +10575 11224 0.4470 +10575 11328 0.5390 +10575 22803 0.5710 +10575 22824 0.5570 +10575 22948 0.9990 +10575 23030 0.4330 +10575 23193 0.4680 +10575 23234 0.9480 +10575 23243 0.4380 +10575 23476 0.5130 +10575 23521 0.5890 +10575 23753 0.7230 +10575 25822 0.4380 +10575 25886 0.4490 +10575 25914 0.4780 +10575 25956 0.6370 +10575 26135 0.4230 +10575 26140 0.6040 +10575 26190 0.5140 +10575 26224 0.5070 +10575 26234 0.4990 +10575 26270 0.5390 +10575 26272 0.4990 +10575 26330 0.6050 +10575 26353 0.7620 +10575 26985 0.5100 +10575 26986 0.4090 +10575 27000 0.4350 +10575 27101 0.4040 +10575 27241 0.4060 +10575 29789 0.5240 +10575 29888 0.9940 +10575 29966 0.9940 +10575 30846 0.4960 +10575 51174 0.5320 +10575 51182 0.5530 +10575 51386 0.5870 +10575 51398 0.5430 +10575 51574 0.5490 +10575 51637 0.4400 +10575 51726 0.8240 +10575 51764 0.4990 +10575 51807 0.5770 +10575 54331 0.4990 +10575 54431 0.4270 +10575 54461 0.4990 +10575 54552 0.4130 +10575 54788 0.4460 +10575 54853 0.4990 +10575 55135 0.7620 +10575 55154 0.5350 +10575 55172 0.5500 +10575 55212 0.5590 +10575 55291 0.4020 +10575 55294 0.5100 +10575 55466 0.7180 +10575 55622 0.4440 +10575 55780 0.9530 +10575 55832 0.4860 +10575 55844 0.6270 +10575 55970 0.5010 +10575 56257 0.4250 +10575 56984 0.9070 +10575 57003 0.5560 +10575 59345 0.5220 +10575 63971 0.4990 +10575 64326 0.5170 +10575 79031 0.9900 +10575 79084 0.4410 +10575 79657 0.6000 +10575 79738 0.9250 +10575 79861 0.6660 +10575 80086 0.5730 +10575 80273 0.6120 +10575 81027 0.5800 +10575 81570 0.5760 +10575 81572 0.5510 +10575 83752 0.7110 +10575 84140 0.5830 +10575 84261 0.5930 +10575 84617 0.6620 +10575 84790 0.7130 +10575 85479 0.4110 +10575 94235 0.4990 +10575 112714 0.5730 +10575 113457 0.5730 +10575 115908 0.4180 +10575 116835 0.4660 +10575 120379 0.5450 +10575 124626 0.4200 +10575 129880 0.4270 +10575 132954 0.4820 +10575 134266 0.5880 +10575 135138 0.5630 +10575 139741 0.4610 +10575 146845 0.8750 +10575 150160 0.9860 +10575 166379 0.8610 +10575 203068 0.9280 +10575 259217 0.4430 +10575 285126 0.4720 +10575 347733 0.6410 +10575 653333 0.4630 +10576 10598 0.6090 +10576 10606 0.5850 +10576 10681 0.6090 +10576 10693 0.9990 +10576 10694 0.9990 +10576 10726 0.7040 +10576 10728 0.9580 +10576 10735 0.4030 +10576 10808 0.6170 +10576 10818 0.5180 +10576 10856 0.7160 +10576 10935 0.5340 +10576 10963 0.9620 +10576 10971 0.4120 +10576 10988 0.4360 +10576 11055 0.4270 +10576 11140 0.9320 +10576 11145 0.4150 +10576 11171 0.5730 +10576 11218 0.4500 +10576 11315 0.4140 +10576 11316 0.4780 +10576 11328 0.5370 +10576 11345 0.4770 +10576 22803 0.5730 +10576 22824 0.5320 +10576 22948 0.9990 +10576 23193 0.4020 +10576 23221 0.5900 +10576 23234 0.9480 +10576 23243 0.4410 +10576 23322 0.4510 +10576 23435 0.4280 +10576 23476 0.5140 +10576 23521 0.5390 +10576 23567 0.5060 +10576 23753 0.7270 +10576 25789 0.4150 +10576 25843 0.9950 +10576 25914 0.5020 +10576 25956 0.4950 +10576 26135 0.4550 +10576 26140 0.4540 +10576 26190 0.5070 +10576 26224 0.5060 +10576 26234 0.4990 +10576 26270 0.5170 +10576 26272 0.4990 +10576 26330 0.6050 +10576 26353 0.7730 +10576 26354 0.4630 +10576 26985 0.5120 +10576 26986 0.4010 +10576 27000 0.4780 +10576 27044 0.4130 +10576 27241 0.4300 +10576 27316 0.4300 +10576 29789 0.4200 +10576 29888 0.9940 +10576 29966 0.9940 +10576 51174 0.5860 +10576 51182 0.6070 +10576 51386 0.6910 +10576 51398 0.5400 +10576 51406 0.4370 +10576 51493 0.4580 +10576 51602 0.6860 +10576 51726 0.8260 +10576 51764 0.4990 +10576 51807 0.5990 +10576 54331 0.4990 +10576 54431 0.4130 +10576 54461 0.5190 +10576 54542 0.5600 +10576 54979 0.4150 +10576 55135 0.7500 +10576 55159 0.4600 +10576 55172 0.5490 +10576 55212 0.7140 +10576 55291 0.4260 +10576 55294 0.6330 +10576 55466 0.6870 +10576 55622 0.4470 +10576 55759 0.5260 +10576 55780 0.9670 +10576 55844 0.6270 +10576 55970 0.5150 +10576 56257 0.4150 +10576 56648 0.5390 +10576 56984 0.9070 +10576 57003 0.6630 +10576 57110 0.4150 +10576 57122 0.4260 +10576 59345 0.5250 +10576 63971 0.4990 +10576 65003 0.4630 +10576 79031 0.9800 +10576 79577 0.4060 +10576 79657 0.6230 +10576 79738 0.9930 +10576 79849 0.4730 +10576 79861 0.8290 +10576 79968 0.6760 +10576 80086 0.5780 +10576 80273 0.6270 +10576 81027 0.5950 +10576 81570 0.5160 +10576 81572 0.5500 +10576 81631 0.5600 +10576 83752 0.7070 +10576 83992 0.9940 +10576 84140 0.9790 +10576 84261 0.5780 +10576 84365 0.4800 +10576 84617 0.7030 +10576 84656 0.4360 +10576 84790 0.8640 +10576 85377 0.4800 +10576 85479 0.4200 +10576 94235 0.4990 +10576 112714 0.6590 +10576 113457 0.6020 +10576 116143 0.4520 +10576 116835 0.5020 +10576 118461 0.4150 +10576 120379 0.6000 +10576 124626 0.4350 +10576 129880 0.4630 +10576 134266 0.5700 +10576 143244 0.5470 +10576 144453 0.5380 +10576 150160 0.9900 +10576 166379 0.8720 +10576 203068 0.9730 +10576 259217 0.4800 +10576 285126 0.4610 +10576 345630 0.4150 +10576 347733 0.7030 +10576 348995 0.4230 +10576 376132 0.6220 +10576 388633 0.4150 +10576 441531 0.4080 +10576 728378 0.5220 +10576 728689 0.4130 +10577 10670 0.4730 +10577 10948 0.9250 +10577 10973 0.4950 +10577 11155 0.4890 +10577 22878 0.4370 +10577 22937 0.7100 +10577 27069 0.4610 +10577 29881 0.8260 +10577 57192 0.4370 +10577 57704 0.4030 +10577 64798 0.4050 +10577 79947 0.6520 +10577 83930 0.8610 +10577 114879 0.5700 +10577 116150 0.4740 +10577 134429 0.4510 +10577 200162 0.4580 +10577 257194 0.6260 +10577 390916 0.7220 +10578 10663 0.5000 +10578 10683 0.6970 +10578 10859 0.6890 +10578 11126 0.6440 +10578 22914 0.7230 +10578 23547 0.4040 +10578 28514 0.5120 +10578 29126 0.4140 +10578 29851 0.4190 +10578 30009 0.6990 +10578 50943 0.4910 +10578 51348 0.7440 +10578 51593 0.9690 +10578 51744 0.4460 +10578 53637 0.5290 +10578 54541 0.4060 +10578 54567 0.6080 +10578 55534 0.8270 +10578 83888 0.8500 +10578 84441 0.8330 +10578 84868 0.5310 +10578 117157 0.4070 +10578 201294 0.6970 +10578 201633 0.6030 +10578 257101 0.6180 +10578 259197 0.5800 +10578 768239 0.8870 +10579 10769 0.4140 +10579 11064 0.4620 +10579 11078 0.4200 +10579 25802 0.5050 +10579 30011 0.4260 +10579 59339 0.4080 +10579 64777 0.4520 +10579 80114 0.4610 +10579 84260 0.4020 +10579 84632 0.4100 +10579 90417 0.4430 +10579 118663 0.4030 +10579 126520 0.4050 +10579 145508 0.4760 +10579 153241 0.5020 +10579 163131 0.4920 +10579 196051 0.4660 +10579 204474 0.4380 +10579 343263 0.4370 +10580 10603 0.6340 +10580 10627 0.5870 +10580 23037 0.4410 +10580 23111 0.9560 +10580 23433 0.5910 +10580 23603 0.5950 +10580 25802 0.6140 +10580 27295 0.4680 +10580 29895 0.5320 +10580 51513 0.4180 +10580 51534 0.7820 +10580 58498 0.5370 +10580 80263 0.9090 +10580 83660 0.7270 +10580 84940 0.4010 +10580 93408 0.5230 +10580 103910 0.5810 +10580 115653 0.8220 +10580 127002 0.7930 +10580 140465 0.5200 +10580 171024 0.4350 +10580 222255 0.7880 +10581 10964 0.5490 +10581 23586 0.4910 +10581 24138 0.4150 +10581 25939 0.6770 +10581 51191 0.4670 +10581 55337 0.4560 +10581 64135 0.4700 +10581 80162 0.4750 +10581 91543 0.5760 +10581 91607 0.4460 +10581 115362 0.4540 +10584 10747 0.9650 +10584 10970 0.4200 +10584 23127 0.4260 +10584 27429 0.5600 +10584 78989 0.9930 +10584 83729 0.4910 +10584 84570 0.7160 +10584 84868 0.4760 +10584 115908 0.4250 +10584 131873 0.4920 +10584 147372 0.5280 +10584 160364 0.6230 +10585 10678 0.4260 +10585 10945 0.6040 +10585 11041 0.8420 +10585 11253 0.7180 +10585 22845 0.7850 +10585 22954 0.6740 +10585 23275 0.4760 +10585 23509 0.4640 +10585 23534 0.4170 +10585 29925 0.8250 +10585 29926 0.4070 +10585 29929 0.5760 +10585 29954 0.9970 +10585 51744 0.4070 +10585 54344 0.8120 +10585 54872 0.4290 +10585 55204 0.4420 +10585 55624 0.9980 +10585 56052 0.4270 +10585 56983 0.4270 +10585 57190 0.5070 +10585 60412 0.4090 +10585 60684 0.5630 +10585 64083 0.4020 +10585 79087 0.6200 +10585 79147 0.9860 +10585 83857 0.4250 +10585 84197 0.8550 +10585 84572 0.4050 +10585 84892 0.9870 +10585 84899 0.4500 +10585 84912 0.4260 +10585 90678 0.4560 +10585 120071 0.7460 +10585 133584 0.6430 +10585 145173 0.4490 +10585 146664 0.5660 +10585 148789 0.8540 +10585 160418 0.4890 +10585 162461 0.4200 +10585 203859 0.7740 +10585 285203 0.4770 +10585 375790 0.7960 +10585 729920 0.7630 +10586 50939 0.4470 +10586 54471 0.6210 +10586 118427 0.4450 +10587 10797 0.5390 +10587 10873 0.4190 +10587 10891 0.5930 +10587 10935 0.8480 +10587 10994 0.5680 +10587 11315 0.4280 +10587 22921 0.4430 +10587 22928 0.9710 +10587 22929 0.9360 +10587 23411 0.4010 +10587 23530 0.5620 +10587 23544 0.4190 +10587 25824 0.7880 +10587 25828 0.9720 +10587 26061 0.5380 +10587 26227 0.4370 +10587 27037 0.4060 +10587 29801 0.5030 +10587 29958 0.4550 +10587 51022 0.8200 +10587 51079 0.6820 +10587 51091 0.5450 +10587 51102 0.5990 +10587 51218 0.4670 +10587 51268 0.4370 +10587 51314 0.4640 +10587 51422 0.4460 +10587 51540 0.9390 +10587 51601 0.4170 +10587 51714 0.7960 +10587 51734 0.8110 +10587 54205 0.5160 +10587 54431 0.4040 +10587 54499 0.4590 +10587 54584 0.6510 +10587 54802 0.4230 +10587 55066 0.4450 +10587 55364 0.5430 +10587 55526 0.6420 +10587 55753 0.6340 +10587 55829 0.7690 +10587 56267 0.9280 +10587 56965 0.4260 +10587 57190 0.7590 +10587 58515 0.7830 +10587 60312 0.4770 +10587 60678 0.5300 +10587 64976 0.6310 +10587 65220 0.6540 +10587 79048 0.6990 +10587 79668 0.4260 +10587 81567 0.4080 +10587 83637 0.5890 +10587 83642 0.7820 +10587 84076 0.5080 +10587 84203 0.4640 +10587 84883 0.4080 +10587 85441 0.5750 +10587 85465 0.6850 +10587 87769 0.5190 +10587 114112 0.9070 +10587 128989 0.6460 +10587 130752 0.4330 +10587 137682 0.4690 +10587 139628 0.4460 +10587 140606 0.7360 +10587 140809 0.5480 +10587 150209 0.4790 +10587 164091 0.4070 +10587 200205 0.5490 +10587 200895 0.4760 +10587 221037 0.4260 +10587 255220 0.4760 +10587 257202 0.7860 +10587 280636 0.7500 +10587 340390 0.4580 +10587 348303 0.6250 +10587 441024 0.5020 +10587 493869 0.7570 +10587 730249 0.4280 +10588 10797 0.9800 +10588 10841 0.9900 +10588 23228 0.5040 +10588 25902 0.8030 +10588 27232 0.5740 +10588 29958 0.5120 +10588 51144 0.4510 +10588 64779 0.6190 +10588 83693 0.4530 +10588 123263 0.4790 +10588 200895 0.4900 +10588 441024 0.9780 +10588 100528021 0.9060 +10589 22827 0.4940 +10589 23770 0.4810 +10589 27085 0.4200 +10589 29105 0.8070 +10589 51282 0.4450 +10589 51616 0.4970 +10589 54107 0.7240 +10589 54108 0.4680 +10589 55884 0.5440 +10589 79685 0.5640 +10589 83638 0.4310 +10589 132660 0.5400 +10589 375775 0.4100 +10589 387332 0.8900 +10589 399949 0.8000 +10589 728489 0.4310 +10590 11016 0.4450 +10590 23235 0.4140 +10590 23344 0.4340 +10590 23387 0.5070 +10590 23564 0.7230 +10590 26468 0.5060 +10590 29922 0.5260 +10590 30813 0.5400 +10590 51434 0.4950 +10590 53919 0.4420 +10590 57030 0.4280 +10590 84364 0.6870 +10590 84525 0.4170 +10590 90957 0.4180 +10590 127833 0.4060 +10590 134957 0.5030 +10590 222962 0.4190 +10590 252983 0.4180 +10590 260425 0.5640 +10590 338917 0.4260 +10590 378884 0.5430 +10590 645832 0.4860 +10591 51389 0.5050 +10591 57092 0.4880 +10591 85443 0.4530 +10591 197131 0.4700 +10591 729475 0.4510 +10592 10615 0.4410 +10592 10635 0.7790 +10592 10733 0.6910 +10592 10734 0.5400 +10592 10735 0.5650 +10592 10769 0.4230 +10592 10926 0.4230 +10592 11004 0.4910 +10592 11065 0.7360 +10592 11073 0.4760 +10592 11130 0.4610 +10592 11169 0.7190 +10592 11200 0.5530 +10592 11339 0.4950 +10592 22974 0.5650 +10592 22976 0.5070 +10592 23047 0.5140 +10592 23133 0.6560 +10592 23137 0.7050 +10592 23244 0.5490 +10592 23310 0.9950 +10592 23397 0.9990 +10592 23476 0.7640 +10592 23649 0.6050 +10592 24137 0.7740 +10592 25831 0.5210 +10592 25836 0.6910 +10592 26271 0.5200 +10592 26586 0.5070 +10592 29028 0.5380 +10592 29127 0.5080 +10592 29781 0.9900 +10592 50484 0.4070 +10592 51203 0.6160 +10592 51514 0.4470 +10592 51574 0.4170 +10592 51659 0.5050 +10592 54069 0.4680 +10592 54145 0.5560 +10592 54443 0.6560 +10592 54780 0.6030 +10592 54801 0.4070 +10592 54821 0.6170 +10592 54892 0.9940 +10592 54908 0.6640 +10592 54962 0.4530 +10592 55010 0.5880 +10592 55055 0.6980 +10592 55063 0.6410 +10592 55143 0.4340 +10592 55165 0.6160 +10592 55215 0.4840 +10592 55320 0.4360 +10592 55388 0.5640 +10592 55635 0.4780 +10592 55706 0.4320 +10592 55766 0.5310 +10592 55789 0.4120 +10592 56992 0.8400 +10592 57082 0.4740 +10592 57405 0.6340 +10592 57481 0.4060 +10592 57576 0.6030 +10592 57650 0.6330 +10592 57697 0.6700 +10592 63922 0.4890 +10592 63967 0.7340 +10592 64105 0.5730 +10592 64151 0.9990 +10592 64946 0.5860 +10592 79075 0.4220 +10592 79648 0.5760 +10592 79677 0.7020 +10592 79682 0.4200 +10592 79733 0.5050 +10592 79801 0.4540 +10592 79915 0.8740 +10592 80010 0.4320 +10592 81620 0.5430 +10592 81930 0.6630 +10592 83461 0.4800 +10592 83540 0.6890 +10592 84057 0.4320 +10592 84296 0.5020 +10592 84515 0.4490 +10592 85236 0.5580 +10592 89839 0.4420 +10592 91433 0.4030 +10592 94239 0.6410 +10592 114799 0.6670 +10592 126520 0.4230 +10592 126961 0.4160 +10592 128312 0.5570 +10592 147841 0.4220 +10592 151246 0.5010 +10592 151648 0.4450 +10592 152098 0.6410 +10592 157313 0.4010 +10592 157570 0.7590 +10592 166979 0.4150 +10592 197370 0.6150 +10592 254394 0.4520 +10592 255626 0.5560 +10592 259266 0.8380 +10592 285643 0.5340 +10592 286053 0.6710 +10592 348654 0.4060 +10592 387103 0.4400 +10592 402569 0.4200 +10592 474382 0.5310 +10592 493861 0.5070 +10592 642636 0.6190 +10592 653604 0.6320 +10594 10614 0.4940 +10594 10616 0.4260 +10594 10713 0.9940 +10594 10735 0.4180 +10594 10772 0.4600 +10594 10856 0.7240 +10594 10891 0.8160 +10594 10907 0.9990 +10594 10915 0.9800 +10594 10921 0.4960 +10594 10946 0.9990 +10594 10949 0.4810 +10594 10973 0.8940 +10594 10985 0.4610 +10594 10987 0.5250 +10594 10992 0.9990 +10594 11017 0.9340 +10594 11066 0.4420 +10594 11100 0.5150 +10594 11157 0.9980 +10594 11160 0.4230 +10594 11164 0.4400 +10594 11193 0.9820 +10594 11198 0.4140 +10594 11319 0.9010 +10594 11338 0.8370 +10594 22794 0.9800 +10594 22820 0.5400 +10594 22826 0.5560 +10594 22907 0.6220 +10594 22913 0.4850 +10594 22916 0.9550 +10594 22938 0.9990 +10594 22944 0.8040 +10594 22984 0.4380 +10594 22985 0.4630 +10594 23020 0.9990 +10594 23065 0.4150 +10594 23082 0.8310 +10594 23091 0.5850 +10594 23154 0.4680 +10594 23246 0.4080 +10594 23352 0.5190 +10594 23398 0.9430 +10594 23435 0.5220 +10594 23450 0.9990 +10594 23451 0.9990 +10594 23524 0.9990 +10594 23658 0.9980 +10594 23759 0.9520 +10594 24144 0.9690 +10594 24148 0.9990 +10594 25766 0.4530 +10594 25794 0.8020 +10594 25804 0.9970 +10594 25949 0.9980 +10594 25980 0.9990 +10594 26017 0.9000 +10594 26121 0.9990 +10594 26354 0.4530 +10594 27044 0.4780 +10594 27238 0.9570 +10594 27258 0.9970 +10594 27316 0.6940 +10594 27336 0.6650 +10594 27339 0.9990 +10594 29117 0.4030 +10594 29896 0.5320 +10594 50628 0.5230 +10594 50939 0.6820 +10594 51065 0.4770 +10594 51119 0.4280 +10594 51319 0.4950 +10594 51320 0.5100 +10594 51340 0.9990 +10594 51362 0.9990 +10594 51366 0.5200 +10594 51428 0.5610 +10594 51503 0.9990 +10594 51538 0.4900 +10594 51574 0.5910 +10594 51593 0.4040 +10594 51631 0.7270 +10594 51634 0.9920 +10594 51639 0.9530 +10594 51645 0.9990 +10594 51690 0.9960 +10594 51691 0.9990 +10594 51729 0.8640 +10594 51747 0.6050 +10594 51759 0.9510 +10594 53938 0.4600 +10594 54505 0.5120 +10594 54680 0.4300 +10594 54883 0.9980 +10594 54952 0.7590 +10594 54957 0.8280 +10594 55011 0.5380 +10594 55015 0.4820 +10594 55100 0.9200 +10594 55110 0.9870 +10594 55192 0.4950 +10594 55234 0.9930 +10594 55269 0.5210 +10594 55280 0.4430 +10594 55285 0.5970 +10594 55379 0.5650 +10594 55599 0.6560 +10594 55622 0.6840 +10594 55660 0.6840 +10594 55696 0.9990 +10594 55702 0.9990 +10594 55749 0.5290 +10594 55760 0.6320 +10594 55812 0.5630 +10594 55837 0.9260 +10594 55975 0.7340 +10594 56259 0.8410 +10594 56919 0.6140 +10594 56949 0.9990 +10594 57096 0.4050 +10594 57187 0.6330 +10594 57456 0.5930 +10594 57461 0.9980 +10594 57532 0.4660 +10594 57599 0.5270 +10594 57647 0.5330 +10594 57703 0.9990 +10594 57794 0.5110 +10594 57819 0.9980 +10594 58509 0.9320 +10594 58517 0.4590 +10594 59286 0.9970 +10594 60625 0.6850 +10594 64218 0.6550 +10594 64848 0.4720 +10594 79005 0.9000 +10594 79171 0.9260 +10594 79446 0.8800 +10594 79576 0.8020 +10594 79631 0.8150 +10594 79637 0.9220 +10594 79657 0.6980 +10594 79665 0.4980 +10594 79706 0.9000 +10594 79753 0.9960 +10594 79811 0.4300 +10594 79947 0.4240 +10594 80011 0.9010 +10594 80331 0.7870 +10594 83443 0.9930 +10594 83938 0.8140 +10594 84060 0.9000 +10594 84138 0.4630 +10594 84140 0.5430 +10594 84292 0.9940 +10594 84295 0.5000 +10594 84316 0.6450 +10594 84619 0.5080 +10594 84811 0.9970 +10594 84844 0.9930 +10594 84950 0.9950 +10594 84967 0.8620 +10594 85313 0.4170 +10594 85476 0.8150 +10594 85479 0.7870 +10594 90957 0.4920 +10594 91603 0.9940 +10594 114803 0.4270 +10594 116143 0.6190 +10594 122402 0.4720 +10594 124245 0.4090 +10594 126259 0.6450 +10594 130557 0.7140 +10594 134492 0.4620 +10594 143884 0.9850 +10594 145226 0.6930 +10594 147650 0.6450 +10594 153527 0.9960 +10594 154007 0.8410 +10594 163859 0.8150 +10594 164045 0.8800 +10594 164781 0.8150 +10594 165545 0.6310 +10594 170506 0.4860 +10594 171023 0.5760 +10594 220074 0.8140 +10594 220988 0.4650 +10594 221302 0.4100 +10594 222183 0.8750 +10594 256536 0.8420 +10594 284325 0.8540 +10594 343069 0.4660 +10594 346007 0.7300 +10594 347744 0.7590 +10594 348793 0.8150 +10594 374819 0.5180 +10594 375298 0.7420 +10594 388939 0.7020 +10594 644591 0.4530 +10594 645142 0.4530 +10594 653505 0.4530 +10594 653598 0.4530 +10594 728945 0.4530 +10594 730262 0.4530 +10594 768206 0.6940 +10594 100534599 0.9990 +10594 100996928 0.5590 +10594 105371242 0.4530 +10595 22926 0.8310 +10595 23193 0.4200 +10595 25803 0.4540 +10595 30001 0.4900 +10595 51360 0.5710 +10595 51493 0.5260 +10595 51726 0.4790 +10595 54784 0.4050 +10595 56061 0.4790 +10595 56605 0.4410 +10595 64764 0.4270 +10595 84447 0.4360 +10595 84516 0.4600 +10595 84699 0.5270 +10595 90993 0.4090 +10595 124454 0.4250 +10595 727897 0.4290 +10597 11259 0.4050 +10597 22878 0.9780 +10597 27095 0.9650 +10597 51112 0.8380 +10597 51399 0.9710 +10597 51693 0.9760 +10597 55262 0.7420 +10597 58485 0.9790 +10597 60684 0.9190 +10597 79090 0.9680 +10597 80006 0.8620 +10597 81876 0.6150 +10597 83452 0.4010 +10597 122553 0.9680 +10597 126003 0.9790 +10597 167691 0.6660 +10597 100128327 0.9090 +10598 10694 0.6070 +10598 10726 0.6340 +10598 10728 0.9940 +10598 10808 0.7280 +10598 10910 0.6100 +10598 10953 0.4460 +10598 10963 0.9980 +10598 11080 0.7760 +10598 11140 0.9680 +10598 22824 0.5860 +10598 22948 0.4930 +10598 23264 0.4610 +10598 23331 0.4570 +10598 23381 0.4300 +10598 23476 0.5160 +10598 23548 0.4280 +10598 23640 0.7340 +10598 23770 0.4580 +10598 25822 0.5570 +10598 26973 0.8580 +10598 27101 0.7300 +10598 29066 0.4710 +10598 29896 0.4350 +10598 30968 0.4090 +10598 51430 0.6400 +10598 51465 0.4290 +10598 53635 0.4050 +10598 54431 0.4070 +10598 54557 0.5860 +10598 54970 0.4570 +10598 55011 0.5310 +10598 55466 0.5950 +10598 55664 0.5700 +10598 55898 0.8280 +10598 63894 0.5030 +10598 63943 0.5150 +10598 64374 0.6260 +10598 79139 0.4640 +10598 80222 0.5110 +10598 81570 0.7400 +10598 96459 0.6240 +10598 146862 0.7550 +10598 339416 0.4880 +10598 374407 0.5530 +10598 100885848 0.5900 +10598 100885850 0.7280 +10598 114483834 0.5040 +10599 10720 0.7480 +10599 10864 0.9630 +10599 10998 0.4840 +10599 23460 0.4100 +10599 28231 0.5120 +10599 28234 0.4030 +10599 51081 0.5720 +10599 53919 0.4660 +10599 54490 0.6120 +10599 54575 0.7950 +10599 54576 0.7990 +10599 54577 0.7960 +10599 54578 0.8030 +10599 54579 0.5870 +10599 54600 0.6970 +10599 54657 0.8120 +10599 54658 0.9270 +10599 54659 0.6360 +10599 55244 0.7620 +10599 55270 0.5760 +10599 55867 0.6250 +10599 64078 0.4680 +10599 64240 0.4900 +10599 64241 0.4580 +10599 79001 0.7840 +10599 79799 0.6090 +10599 114571 0.6740 +10599 116085 0.4250 +10599 116519 0.4780 +10599 123264 0.5530 +10599 135152 0.5200 +10599 146802 0.7200 +10599 200931 0.6210 +10599 221458 0.4450 +10599 282617 0.4330 +10599 574537 0.6030 +10599 100861540 0.4520 +10600 10713 0.4560 +10600 11103 0.4760 +10600 23244 0.4600 +10600 27000 0.4800 +10600 27005 0.5810 +10600 50964 0.4200 +10600 55031 0.4770 +10600 55785 0.7180 +10600 55854 0.4100 +10600 57646 0.4330 +10600 57761 0.5950 +10600 80204 0.4790 +10600 83903 0.4930 +10600 85235 0.4990 +10600 92815 0.4990 +10600 114803 0.6610 +10600 118424 0.4140 +10600 127700 0.4780 +10600 151648 0.5480 +10600 221302 0.5100 +10600 221613 0.4990 +10600 317772 0.4990 +10602 10640 0.4080 +10602 10801 0.5220 +10602 23048 0.4090 +10602 23157 0.4800 +10602 23369 0.4430 +10602 23433 0.9820 +10602 55092 0.4710 +10602 55666 0.4790 +10602 59345 0.4140 +10602 79003 0.4020 +10602 79705 0.4560 +10602 81624 0.4810 +10602 84167 0.4070 +10602 128239 0.4300 +10602 148170 0.9710 +10602 221302 0.4180 +10603 84292 0.4220 +10605 10921 0.4090 +10605 10973 0.4380 +10605 11269 0.4820 +10605 22916 0.5250 +10605 23019 0.6430 +10605 23185 0.6550 +10605 23318 0.4330 +10605 23367 0.6310 +10605 23369 0.4200 +10605 23424 0.4710 +10605 23609 0.8380 +10605 23708 0.7110 +10605 25904 0.5490 +10605 26019 0.5420 +10605 26155 0.4090 +10605 26986 0.9990 +10605 27067 0.4630 +10605 27327 0.4050 +10605 29883 0.5680 +10605 29896 0.5250 +10605 51008 0.4270 +10605 51247 0.9850 +10605 51366 0.8500 +10605 54517 0.4860 +10605 54952 0.4500 +10605 55132 0.4700 +10605 55299 0.4120 +10605 55571 0.4500 +10605 57409 0.4480 +10605 57472 0.4490 +10605 60680 0.4220 +10605 64417 0.6420 +10605 79670 0.4330 +10605 80336 0.9870 +10605 83473 0.4250 +10605 85364 0.7050 +10605 85456 0.5070 +10605 113251 0.5180 +10605 124801 0.4890 +10605 129831 0.5330 +10605 132430 0.9700 +10605 140886 0.9740 +10605 246175 0.4450 +10605 253314 0.6160 +10605 255967 0.4260 +10605 317649 0.5810 +10605 340529 0.9540 +10605 345630 0.4190 +10605 375444 0.4030 +10605 392517 0.4030 +10605 400961 0.8100 +10605 728689 0.4150 +10606 10694 0.4970 +10606 10726 0.4020 +10606 10797 0.6200 +10606 10926 0.4360 +10606 11169 0.5940 +10606 11200 0.5970 +10606 11201 0.4390 +10606 11222 0.4030 +10606 22933 0.5250 +10606 22948 0.5040 +10606 23411 0.5310 +10606 23476 0.5960 +10606 23560 0.5870 +10606 23626 0.5600 +10606 25902 0.8420 +10606 25939 0.4040 +10606 26227 0.6550 +10606 26271 0.4180 +10606 27000 0.4410 +10606 29968 0.6460 +10606 51012 0.4180 +10606 51026 0.4440 +10606 51218 0.4270 +10606 51292 0.4110 +10606 51314 0.4130 +10606 51455 0.4560 +10606 51557 0.4280 +10606 54431 0.4410 +10606 54663 0.4060 +10606 54870 0.5180 +10606 55276 0.5560 +10606 55636 0.9460 +10606 55759 0.4650 +10606 55811 0.5880 +10606 56474 0.4650 +10606 56852 0.6020 +10606 56952 0.4220 +10606 57482 0.4520 +10606 60496 0.6180 +10606 60558 0.4010 +10606 63976 0.7020 +10606 79084 0.4670 +10606 79693 0.4340 +10606 79915 0.4070 +10606 80119 0.4970 +10606 80198 0.4020 +10606 80324 0.4330 +10606 81570 0.5110 +10606 83475 0.8140 +10606 83746 0.4810 +10606 84057 0.4910 +10606 84296 0.4100 +10606 84955 0.6460 +10606 90381 0.4020 +10606 122622 0.8260 +10606 127845 0.4190 +10606 131474 0.4250 +10606 133482 0.4460 +10606 134147 0.4160 +10606 221823 0.4900 +10606 260434 0.4140 +10606 284346 0.4310 +10606 284434 0.4010 +10606 441024 0.4810 +10606 653499 0.6690 +10607 10621 0.6010 +10607 10713 0.5620 +10607 10785 0.6030 +10607 10813 0.9970 +10607 10856 0.4470 +10607 10885 0.9990 +10607 10915 0.4330 +10607 10969 0.8470 +10607 10985 0.4330 +10607 11056 0.7660 +10607 11103 0.9990 +10607 11128 0.7090 +10607 11137 0.9500 +10607 11180 0.4430 +10607 11194 0.4430 +10607 11340 0.7430 +10607 22803 0.6060 +10607 22894 0.5400 +10607 22907 0.4880 +10607 22984 0.9960 +10607 23016 0.8070 +10607 23029 0.5320 +10607 23054 0.7580 +10607 23076 0.8870 +10607 23160 0.9990 +10607 23204 0.6550 +10607 23212 0.7570 +10607 23223 0.9530 +10607 23246 0.9670 +10607 23363 0.5530 +10607 23378 0.7080 +10607 23404 0.7970 +10607 23476 0.5200 +10607 23481 0.9350 +10607 23517 0.9600 +10607 23560 0.8950 +10607 23640 0.4030 +10607 24140 0.4130 +10607 25879 0.9990 +10607 25885 0.9240 +10607 25926 0.9130 +10607 25983 0.9960 +10607 26155 0.9850 +10607 26156 0.9910 +10607 26168 0.5430 +10607 26354 0.7730 +10607 26574 0.9980 +10607 26608 0.4670 +10607 26995 0.4490 +10607 27037 0.8540 +10607 27042 0.8860 +10607 27043 0.6030 +10607 27292 0.9500 +10607 27340 0.9990 +10607 27341 0.9990 +10607 28987 0.7800 +10607 29777 0.5960 +10607 29889 0.8970 +10607 29997 0.6130 +10607 30834 0.6060 +10607 30836 0.9900 +10607 51010 0.7180 +10607 51013 0.9120 +10607 51018 0.4090 +10607 51042 0.4330 +10607 51065 0.8540 +10607 51068 0.7650 +10607 51073 0.6490 +10607 51077 0.9940 +10607 51081 0.6570 +10607 51082 0.5540 +10607 51096 0.9990 +10607 51106 0.4960 +10607 51118 0.9960 +10607 51149 0.7700 +10607 51154 0.8530 +10607 51187 0.7040 +10607 51202 0.7210 +10607 51236 0.6460 +10607 51319 0.5700 +10607 51388 0.8920 +10607 51406 0.8140 +10607 51575 0.8360 +10607 51602 0.9990 +10607 51605 0.6860 +10607 54475 0.8710 +10607 54512 0.8240 +10607 54517 0.7970 +10607 54552 0.8050 +10607 54555 0.8220 +10607 54606 0.9380 +10607 54663 0.5700 +10607 54859 0.5510 +10607 54881 0.6800 +10607 54888 0.5520 +10607 55003 0.6710 +10607 55006 0.5760 +10607 55127 0.9990 +10607 55131 0.9410 +10607 55140 0.4190 +10607 55153 0.8320 +10607 55178 0.4540 +10607 55226 0.9990 +10607 55272 0.9960 +10607 55299 0.8440 +10607 55319 0.5800 +10607 55324 0.4030 +10607 55341 0.8480 +10607 55601 0.4360 +10607 55621 0.7400 +10607 55622 0.8630 +10607 55646 0.6000 +10607 55651 0.7870 +10607 55695 0.4590 +10607 55703 0.8570 +10607 55720 0.8260 +10607 55759 0.8890 +10607 55760 0.7180 +10607 55781 0.6260 +10607 55794 0.6030 +10607 55813 0.9990 +10607 56342 0.6900 +10607 56474 0.4010 +10607 56647 0.4260 +10607 56902 0.9860 +10607 56915 0.8610 +10607 56919 0.4630 +10607 56931 0.5290 +10607 57050 0.9970 +10607 57062 0.8980 +10607 57418 0.8980 +10607 57647 0.9130 +10607 57696 0.6500 +10607 60487 0.7240 +10607 60528 0.5690 +10607 60625 0.4690 +10607 64118 0.6420 +10607 64216 0.6250 +10607 64223 0.5470 +10607 64318 0.8650 +10607 64425 0.8380 +10607 64434 0.6870 +10607 64794 0.7330 +10607 64852 0.5610 +10607 64960 0.6290 +10607 64963 0.6440 +10607 65083 0.9990 +10607 65095 0.7770 +10607 79039 0.8480 +10607 79050 0.9990 +10607 79159 0.6720 +10607 79571 0.7630 +10607 79665 0.4010 +10607 79676 0.4510 +10607 79707 0.5810 +10607 79711 0.6570 +10607 79718 0.5390 +10607 79922 0.5050 +10607 79954 0.9960 +10607 79979 0.6080 +10607 80789 0.4550 +10607 81627 0.6920 +10607 81887 0.6440 +10607 83448 0.6080 +10607 83475 0.4490 +10607 83480 0.4550 +10607 83743 0.9420 +10607 84128 0.9990 +10607 84135 0.9990 +10607 84154 0.8990 +10607 84172 0.9270 +10607 84273 0.4250 +10607 84294 0.6440 +10607 84365 0.8210 +10607 84549 0.8220 +10607 84916 0.9990 +10607 84946 0.8310 +10607 85395 0.4160 +10607 85441 0.4860 +10607 88745 0.7550 +10607 90381 0.6930 +10607 91582 0.8080 +10607 92170 0.4020 +10607 92421 0.4440 +10607 92856 0.9990 +10607 93436 0.5350 +10607 113000 0.5380 +10607 115708 0.7790 +10607 115752 0.5400 +10607 116966 0.7360 +10607 117246 0.9250 +10607 118460 0.7120 +10607 122402 0.4020 +10607 126402 0.6420 +10607 126789 0.4500 +10607 128061 0.8000 +10607 129563 0.5560 +10607 140032 0.6270 +10607 142940 0.4970 +10607 146212 0.6750 +10607 153443 0.7660 +10607 161424 0.8610 +10607 165545 0.7350 +10607 221078 0.7900 +10607 221830 0.7360 +10607 285855 0.4030 +10607 345630 0.9580 +10607 641776 0.4700 +10607 643909 0.4700 +10607 692312 0.5760 +10607 728524 0.4700 +10607 100996746 0.6790 +10607 105180390 0.4700 +10607 105180391 0.4700 +10607 114483834 0.5140 +10608 22877 0.8950 +10608 23269 0.4820 +10608 23309 0.5800 +10608 25942 0.7850 +10608 51085 0.9310 +10608 55205 0.4560 +10608 57179 0.4480 +10608 60491 0.7650 +10608 113791 0.4330 +10608 140290 0.5870 +10608 256646 0.4450 +10609 60681 0.7170 +10609 64175 0.4350 +10609 79709 0.5210 +10609 283208 0.4910 +10610 27090 0.5600 +10610 29071 0.7190 +10610 30815 0.5570 +10610 54187 0.4050 +10610 56667 0.4450 +10610 56913 0.7370 +10610 79623 0.4230 +10610 89790 0.4110 +10610 89858 0.4170 +10610 94025 0.4660 +10610 118430 0.4130 +10610 140453 0.4100 +10610 143662 0.5160 +10610 192134 0.4310 +10610 200958 0.4480 +10610 256435 0.4800 +10610 394263 0.4780 +10610 727897 0.4910 +10610 100049587 0.4090 +10611 10664 0.4250 +10611 10787 0.6140 +10611 11155 0.6020 +10611 23301 0.7170 +10611 23361 0.5150 +10611 23384 0.5490 +10611 23607 0.5460 +10611 26037 0.5540 +10611 27238 0.4070 +10611 27295 0.6340 +10611 29964 0.5960 +10611 51710 0.5150 +10611 53904 0.5450 +10611 55604 0.5400 +10611 56940 0.5590 +10611 64236 0.7540 +10611 80818 0.5210 +10611 83700 0.5400 +10611 83715 0.5450 +10611 84700 0.4560 +10611 84901 0.4310 +10611 92521 0.5500 +10611 115560 0.5090 +10611 131965 0.4390 +10611 140901 0.5100 +10611 148266 0.5140 +10611 219537 0.6050 +10611 254102 0.6150 +10611 284390 0.5150 +10611 342527 0.5590 +10612 10626 0.4360 +10612 10742 0.4160 +10612 11346 0.6450 +10612 23046 0.7650 +10612 23321 0.7090 +10612 25820 0.4280 +10612 29943 0.4710 +10612 50852 0.6210 +10612 51619 0.5470 +10612 54765 0.5410 +10612 79083 0.6540 +10612 80131 0.5190 +10612 81603 0.4940 +10612 84057 0.5280 +10612 135644 0.4040 +10612 135892 0.4490 +10612 644943 0.4040 +10612 122513141 0.4770 +10613 10749 0.4420 +10613 10956 0.6610 +10613 11160 0.9980 +10613 11236 0.5030 +10613 11331 0.4550 +10613 23065 0.6390 +10613 23190 0.5030 +10613 23197 0.8410 +10613 27248 0.6530 +10613 27304 0.4980 +10613 51009 0.6140 +10613 51234 0.5920 +10613 51308 0.5020 +10613 51324 0.4550 +10613 51439 0.4290 +10613 54431 0.4680 +10613 54883 0.6040 +10613 54955 0.4610 +10613 55276 0.5080 +10613 55280 0.5760 +10613 57003 0.6450 +10613 79089 0.7870 +10613 79139 0.6410 +10613 79152 0.5140 +10613 80183 0.4020 +10613 80267 0.6320 +10613 80821 0.4460 +10613 81790 0.9310 +10613 83460 0.4470 +10613 83590 0.8460 +10613 84447 0.8070 +10613 91304 0.5330 +10613 91319 0.5860 +10613 91445 0.9150 +10613 91574 0.4750 +10613 94005 0.4420 +10613 114882 0.4030 +10613 118813 0.4080 +10613 142891 0.4270 +10613 147007 0.4860 +10613 200205 0.4030 +10613 201931 0.4110 +10613 284361 0.4300 +10613 337867 0.8260 +10613 387263 0.7570 +10613 400668 0.4690 +10613 440138 0.6050 +10614 10940 0.4520 +10614 11273 0.4760 +10614 22803 0.4230 +10614 22936 0.6330 +10614 23210 0.4300 +10614 23367 0.4800 +10614 23476 0.9870 +10614 25921 0.4240 +10614 27125 0.8770 +10614 27336 0.8580 +10614 51574 0.9990 +10614 51755 0.5550 +10614 54606 0.5250 +10614 54815 0.4410 +10614 55269 0.6500 +10614 55909 0.6580 +10614 56257 0.9990 +10614 56652 0.5910 +10614 63893 0.5760 +10614 64919 0.9180 +10614 79066 0.4440 +10614 85236 0.4040 +10614 114876 0.5920 +10614 124790 0.9950 +10614 144501 0.5180 +10614 154796 0.4480 +10614 256646 0.5930 +10614 440689 0.4030 +10615 10635 0.5610 +10615 10733 0.6390 +10615 10744 0.5240 +10615 10844 0.4030 +10615 11004 0.9260 +10615 11043 0.4210 +10615 11065 0.8840 +10615 11129 0.5760 +10615 11130 0.6660 +10615 11169 0.4040 +10615 11339 0.5740 +10615 22919 0.7010 +10615 22974 0.8540 +10615 23277 0.5240 +10615 23332 0.8120 +10615 23397 0.7660 +10615 23594 0.5840 +10615 24137 0.8870 +10615 26206 0.5040 +10615 26271 0.4250 +10615 26292 0.4310 +10615 26586 0.5810 +10615 28978 0.4080 +10615 29028 0.4580 +10615 29089 0.6320 +10615 29127 0.7710 +10615 29128 0.5920 +10615 51053 0.4290 +10615 51203 0.8590 +10615 51512 0.5350 +10615 51514 0.4990 +10615 51659 0.4050 +10615 54443 0.6970 +10615 54478 0.5280 +10615 54801 0.5000 +10615 54821 0.5420 +10615 54892 0.6550 +10615 54906 0.4220 +10615 55010 0.4550 +10615 55055 0.5160 +10615 55081 0.4010 +10615 55122 0.4140 +10615 55143 0.9290 +10615 55165 0.8760 +10615 55215 0.5620 +10615 55247 0.4570 +10615 55355 0.9260 +10615 55388 0.5130 +10615 55635 0.6040 +10615 55722 0.4860 +10615 55723 0.6790 +10615 55732 0.4710 +10615 55755 0.4830 +10615 55789 0.5390 +10615 55835 0.4560 +10615 55839 0.6790 +10615 56992 0.8600 +10615 57082 0.5720 +10615 57405 0.5510 +10615 57521 0.8330 +10615 64151 0.7420 +10615 64858 0.6800 +10615 64946 0.5040 +10615 79019 0.4970 +10615 79075 0.4390 +10615 79682 0.4660 +10615 79733 0.7350 +10615 79801 0.5640 +10615 79866 0.4090 +10615 79980 0.4700 +10615 81610 0.5380 +10615 81620 0.4680 +10615 81624 0.4690 +10615 81930 0.6500 +10615 83461 0.8770 +10615 83540 0.8040 +10615 83879 0.4220 +10615 84057 0.5910 +10615 84187 0.4320 +10615 84643 0.5900 +10615 84722 0.5410 +10615 84824 0.4150 +10615 84930 0.4050 +10615 89839 0.5900 +10615 90381 0.4840 +10615 90417 0.9830 +10615 113130 0.7880 +10615 114882 0.4760 +10615 123775 0.4070 +10615 128239 0.5580 +10615 144455 0.4210 +10615 146909 0.7180 +10615 146956 0.4100 +10615 147841 0.6280 +10615 150468 0.5140 +10615 151246 0.5340 +10615 151648 0.8050 +10615 157313 0.6330 +10615 157570 0.4370 +10615 158747 0.5160 +10615 159989 0.6890 +10615 166979 0.7780 +10615 200162 0.4090 +10615 203197 0.4260 +10615 220042 0.4350 +10615 220134 0.5100 +10615 221150 0.5680 +10615 259266 0.9450 +10615 387103 0.5700 +10615 400120 0.4200 +10615 728833 0.4410 +10616 10892 0.7980 +10616 10922 0.4810 +10616 11035 0.4280 +10616 23118 0.8060 +10616 23586 0.5680 +10616 25820 0.4050 +10616 27005 0.5860 +10616 29110 0.6540 +10616 51065 0.4080 +10616 51127 0.9590 +10616 51230 0.5710 +10616 54764 0.4150 +10616 54941 0.4920 +10616 55072 0.9990 +10616 55666 0.4840 +10616 56957 0.5510 +10616 63943 0.8110 +10616 64127 0.8300 +10616 79155 0.4210 +10616 81858 0.9990 +10616 84433 0.6740 +10616 84950 0.4450 +10616 90268 0.9750 +10616 91445 0.4100 +10616 124044 0.9120 +10616 197259 0.4410 +10616 220213 0.5470 +10616 221302 0.4600 +10616 257397 0.7760 +10617 10868 0.5610 +10617 10869 0.4550 +10617 10928 0.4650 +10617 10980 0.4750 +10617 10987 0.8350 +10617 11047 0.6610 +10617 11059 0.4800 +10617 23032 0.5160 +10617 23252 0.5230 +10617 23327 0.4290 +10617 25930 0.5400 +10617 25936 0.4380 +10617 26994 0.8790 +10617 27005 0.5870 +10617 27183 0.6260 +10617 27243 0.9780 +10617 27335 0.4590 +10617 27338 0.5210 +10617 29761 0.4340 +10617 29979 0.4250 +10617 50813 0.4480 +10617 51028 0.4700 +10617 51031 0.4870 +10617 51138 0.5800 +10617 51160 0.4360 +10617 51265 0.5940 +10617 51300 0.5310 +10617 51377 0.7670 +10617 51386 0.4150 +10617 51510 0.6750 +10617 51534 0.5060 +10617 51633 0.4440 +10617 51652 0.9980 +10617 54764 0.6360 +10617 54840 0.4420 +10617 54881 0.4180 +10617 55031 0.4020 +10617 55236 0.4540 +10617 55432 0.4510 +10617 55593 0.6630 +10617 55611 0.7200 +10617 56061 0.4280 +10617 56957 0.6240 +10617 57132 0.9870 +10617 57559 0.6950 +10617 57646 0.6910 +10617 59348 0.4730 +10617 64708 0.4110 +10617 64750 0.8720 +10617 64854 0.4070 +10617 78990 0.4550 +10617 79184 0.6660 +10617 79643 0.7260 +10617 79876 0.4100 +10617 83473 0.5710 +10617 83737 0.6040 +10617 84749 0.4460 +10617 84954 0.5200 +10617 85021 0.4380 +10617 85377 0.4060 +10617 90268 0.6100 +10617 90417 0.7230 +10617 92421 0.4390 +10617 92552 0.4440 +10617 114548 0.5580 +10617 114803 0.5940 +10617 126119 0.5930 +10617 128866 0.5340 +10617 133482 0.5530 +10617 134510 0.5030 +10617 139562 0.4550 +10617 161753 0.4570 +10617 199713 0.4890 +10617 219333 0.4030 +10617 220213 0.4470 +10617 221302 0.7530 +10617 728689 0.4380 +10617 100526767 0.9750 +10617 100652824 0.4120 +10618 10717 0.6470 +10618 10857 0.4580 +10618 22796 0.8150 +10618 22872 0.4120 +10618 23062 0.4700 +10618 23163 0.5270 +10618 23195 0.4150 +10618 23241 0.6060 +10618 23385 0.4450 +10618 23431 0.7160 +10618 23557 0.5620 +10618 25839 0.6850 +10618 25977 0.5090 +10618 26003 0.5440 +10618 26088 0.4890 +10618 26119 0.5350 +10618 26258 0.5660 +10618 26985 0.5330 +10618 27131 0.6860 +10618 27333 0.5760 +10618 29927 0.4100 +10618 29978 0.5570 +10618 29988 0.4780 +10618 51257 0.8230 +10618 51429 0.5750 +10618 51542 0.7230 +10618 51560 0.5750 +10618 51699 0.7040 +10618 54885 0.4990 +10618 55275 0.6990 +10618 55330 0.5070 +10618 55690 0.7610 +10618 55697 0.5970 +10618 55737 0.6140 +10618 55814 0.4460 +10618 56975 0.5340 +10618 57120 0.5340 +10618 57189 0.4240 +10618 57511 0.6390 +10618 57589 0.5630 +10618 58533 0.4140 +10618 63908 0.5110 +10618 64083 0.7800 +10618 64689 0.5910 +10618 64746 0.5120 +10618 79065 0.5290 +10618 79571 0.9340 +10618 80267 0.4800 +10618 81567 0.5140 +10618 81609 0.4680 +10618 83548 0.8320 +10618 84062 0.5070 +10618 84173 0.5560 +10618 84557 0.4970 +10618 85365 0.6340 +10618 90196 0.6050 +10618 91949 0.8090 +10618 115123 0.7840 +10618 130340 0.5620 +10618 133482 0.4360 +10618 143187 0.7640 +10618 200576 0.6950 +10618 286451 0.7050 +10618 339122 0.6320 +10618 388552 0.4990 +10618 100287171 0.4140 +10620 10865 0.5830 +10620 26468 0.5060 +10620 55193 0.5260 +10620 57157 0.4300 +10620 57418 0.4540 +10620 79727 0.4360 +10620 79923 0.5100 +10620 84159 0.4030 +10620 84260 0.4350 +10620 114803 0.4310 +10620 138715 0.5510 +10620 389421 0.5570 +10620 102723407 0.5090 +10621 10622 0.9990 +10621 10623 0.9990 +10621 10741 0.4860 +10621 10940 0.4540 +10621 11103 0.6540 +10621 11128 0.9990 +10621 11201 0.5320 +10621 23076 0.4400 +10621 23212 0.4200 +10621 23223 0.6510 +10621 23378 0.4160 +10621 25885 0.9010 +10621 25983 0.6310 +10621 26155 0.4050 +10621 27297 0.9990 +10621 30834 0.7090 +10621 51082 0.9990 +10621 51096 0.4390 +10621 51154 0.6330 +10621 51187 0.5380 +10621 51316 0.5060 +10621 51388 0.6080 +10621 51575 0.4790 +10621 51605 0.6190 +10621 51654 0.4970 +10621 51728 0.9990 +10621 54555 0.4590 +10621 54700 0.5160 +10621 54802 0.4040 +10621 55003 0.4040 +10621 55006 0.4520 +10621 55131 0.7630 +10621 55153 0.5410 +10621 55184 0.4240 +10621 55198 0.4580 +10621 55272 0.6530 +10621 55290 0.9660 +10621 55299 0.5960 +10621 55341 0.6050 +10621 55571 0.4930 +10621 55703 0.9990 +10621 55718 0.9990 +10621 55781 0.4560 +10621 55814 0.9850 +10621 57570 0.4360 +10621 60561 0.4670 +10621 64425 0.7150 +10621 79954 0.4680 +10621 80007 0.5460 +10621 81627 0.6870 +10621 83480 0.4740 +10621 83743 0.5980 +10621 84154 0.5600 +10621 84172 0.8380 +10621 84232 0.9330 +10621 84265 0.9990 +10621 84294 0.6270 +10621 84299 0.7040 +10621 84916 0.6510 +10621 92856 0.6080 +10621 112495 0.5020 +10621 127428 0.4600 +10621 134359 0.4450 +10621 170082 0.4600 +10621 171568 0.9990 +10621 221786 0.4360 +10621 221830 0.5890 +10621 348793 0.4530 +10621 387332 0.6090 +10621 399949 0.4740 +10622 10623 0.9990 +10622 10849 0.4690 +10622 11128 0.9990 +10622 11137 0.4500 +10622 23076 0.4270 +10622 25885 0.6140 +10622 27292 0.4110 +10622 27297 0.9980 +10622 30834 0.4080 +10622 51082 0.9960 +10622 51728 0.9920 +10622 54923 0.4480 +10622 55131 0.7030 +10622 55290 0.7290 +10622 55299 0.4070 +10622 55703 0.9990 +10622 55718 0.9990 +10622 55814 0.8780 +10622 64421 0.4140 +10622 84154 0.4360 +10622 84172 0.6700 +10622 84232 0.8040 +10622 84265 0.9520 +10622 112495 0.5250 +10622 116068 0.4610 +10622 153364 0.4840 +10622 171568 0.9990 +10622 221830 0.4540 +10622 387332 0.4210 +10622 100128071 0.4050 +10623 10785 0.4180 +10623 10813 0.4890 +10623 11128 0.9990 +10623 11137 0.4220 +10623 11201 0.5050 +10623 23560 0.4450 +10623 25885 0.9460 +10623 25980 0.6290 +10623 26292 0.4360 +10623 27246 0.5940 +10623 27292 0.4380 +10623 27297 0.9990 +10623 30834 0.6360 +10623 51082 0.9990 +10623 51096 0.4360 +10623 51202 0.5180 +10623 51728 0.9980 +10623 54475 0.4010 +10623 54606 0.4050 +10623 55035 0.4660 +10623 55290 0.8480 +10623 55703 0.9990 +10623 55718 0.9990 +10623 55720 0.4270 +10623 55814 0.9720 +10623 56156 0.4130 +10623 57109 0.4290 +10623 57418 0.4270 +10623 57696 0.4340 +10623 60528 0.4690 +10623 64425 0.5280 +10623 79050 0.4850 +10623 79918 0.4180 +10623 81627 0.6460 +10623 84128 0.4720 +10623 84172 0.8150 +10623 84232 0.9290 +10623 84265 0.9990 +10623 84661 0.5150 +10623 84916 0.4180 +10623 85452 0.5070 +10623 90835 0.5070 +10623 112495 0.5000 +10623 117246 0.4530 +10623 122481 0.4380 +10623 136332 0.8330 +10623 161424 0.4760 +10623 171568 0.9990 +10623 200035 0.5180 +10623 200162 0.5070 +10623 200373 0.5070 +10623 284615 0.4540 +10623 339451 0.4050 +10623 387332 0.5250 +10623 399949 0.4140 +10625 11100 0.4390 +10625 27252 0.4300 +10625 54823 0.5390 +10625 81627 0.4770 +10625 85302 0.4020 +10625 140838 0.4550 +10625 100288413 0.4250 +10626 11074 0.4540 +10626 22861 0.5030 +10626 22954 0.4410 +10626 23435 0.5180 +10626 50852 0.6940 +10626 54765 0.4460 +10626 55054 0.9020 +10626 80712 0.4440 +10626 84851 0.4630 +10626 117854 0.4700 +10626 126433 0.5090 +10626 134111 0.4900 +10626 286827 0.4680 +10626 442862 0.4440 +10627 22989 0.7730 +10627 23551 0.4670 +10627 25802 0.5380 +10627 27098 0.4180 +10627 28964 0.5320 +10627 29895 0.5630 +10627 51168 0.5110 +10627 51574 0.5380 +10627 54776 0.7200 +10627 58498 0.5240 +10627 79784 0.9590 +10627 84033 0.4510 +10627 84700 0.7100 +10627 84790 0.5130 +10627 85366 0.9910 +10627 91807 0.9450 +10627 93408 0.5390 +10627 103910 0.9450 +10627 140465 0.9840 +10627 340156 0.9370 +10627 347733 0.4240 +10627 399687 0.8380 +10628 10631 0.4030 +10628 10856 0.4890 +10628 10891 0.4060 +10628 10910 0.5260 +10628 10962 0.4530 +10628 10987 0.6860 +10628 11059 0.7690 +10628 11060 0.6130 +10628 11345 0.5020 +10628 22861 0.4840 +10628 22877 0.7090 +10628 22926 0.4540 +10628 23327 0.4520 +10628 23411 0.4750 +10628 25828 0.9990 +10628 28999 0.4070 +10628 29108 0.4890 +10628 50507 0.4970 +10628 51085 0.6010 +10628 51366 0.5870 +10628 54541 0.9910 +10628 55236 0.6330 +10628 57459 0.5360 +10628 58484 0.4650 +10628 64750 0.4140 +10628 79792 0.5310 +10628 79876 0.6240 +10628 83737 0.9890 +10628 84203 0.4320 +10628 114548 0.9990 +10628 140609 0.4330 +10628 162466 0.4470 +10628 257202 0.4270 +10628 373156 0.4250 +10628 493869 0.4190 +10628 645432 0.5920 +10629 11091 0.7510 +10629 22884 0.5410 +10629 23326 0.9850 +10629 23450 0.9760 +10629 23476 0.4140 +10629 25862 0.4800 +10629 26009 0.8380 +10629 26145 0.7790 +10629 27097 0.9990 +10629 27154 0.4020 +10629 27443 0.6380 +10629 29995 0.4050 +10629 30827 0.4590 +10629 51147 0.4070 +10629 51343 0.4200 +10629 51562 0.7790 +10629 51616 0.9980 +10629 54107 0.7290 +10629 54457 0.8740 +10629 54556 0.5260 +10629 55578 0.9980 +10629 55689 0.8820 +10629 56655 0.7200 +10629 56943 0.9920 +10629 56970 0.9930 +10629 57325 0.8360 +10629 57418 0.4050 +10629 79595 0.8170 +10629 83443 0.9750 +10629 83746 0.4570 +10629 83860 0.8540 +10629 84101 0.4690 +10629 84289 0.4770 +10629 84749 0.4990 +10629 89887 0.4500 +10629 93624 0.9960 +10629 112869 0.9970 +10629 115950 0.4100 +10629 117143 0.9990 +10629 127002 0.7710 +10629 129685 0.9550 +10629 138474 0.8650 +10629 158880 0.6740 +10629 222255 0.5970 +10629 256364 0.4240 +10629 387332 0.6220 +10629 389856 0.6630 +10629 391742 0.6000 +10629 391746 0.6000 +10629 391747 0.6000 +10629 399949 0.6140 +10629 404672 0.4900 +10629 552889 0.4200 +10629 646066 0.6000 +10629 646103 0.6000 +10629 653604 0.4860 +10629 728294 0.4250 +10629 100287513 0.4690 +10629 100526737 0.4450 +10629 102723526 0.6000 +10629 112488736 0.6000 +10629 112488737 0.6000 +10629 112488738 0.6000 +10629 112488739 0.6000 +10629 112488740 0.6000 +10629 112488745 0.6000 +10629 112488746 0.6000 +10629 112488747 0.6000 +10630 10631 0.4670 +10630 10894 0.8750 +10630 11346 0.4900 +10630 23013 0.4300 +10630 23509 0.4020 +10630 26952 0.4100 +10630 27161 0.4440 +10630 29126 0.4640 +10630 30817 0.4510 +10630 51206 0.8440 +10630 51266 0.9990 +10630 51267 0.5270 +10630 51705 0.4220 +10630 54345 0.5060 +10630 57124 0.4290 +10630 64805 0.5260 +10630 79924 0.4350 +10630 80739 0.5440 +10630 83483 0.5420 +10630 84525 0.4550 +10630 123803 0.5250 +10630 137902 0.4090 +10630 140893 0.4340 +10630 196374 0.4760 +10630 375611 0.4300 +10631 11098 0.4180 +10631 11167 0.4500 +10631 11215 0.5530 +10631 22795 0.4900 +10631 22801 0.6330 +10631 23213 0.6680 +10631 25878 0.5550 +10631 26281 0.4040 +10631 27006 0.4030 +10631 30008 0.4450 +10631 50805 0.5500 +10631 50964 0.5130 +10631 51450 0.4270 +10631 54205 0.4290 +10631 54829 0.8300 +10631 57124 0.4190 +10631 60681 0.4160 +10631 79191 0.5470 +10631 79192 0.4970 +10631 80781 0.4140 +10631 85480 0.5810 +10631 89780 0.7900 +10631 90865 0.5270 +10631 92689 0.4250 +10631 113146 0.4280 +10631 115908 0.7090 +10631 117581 0.6010 +10631 121340 0.4020 +10631 127281 0.4330 +10631 127435 0.4840 +10631 131578 0.4200 +10631 137902 0.4030 +10631 140628 0.4240 +10631 151887 0.4360 +10631 153572 0.5210 +10631 221044 0.4460 +10631 375790 0.5790 +10632 10765 0.5850 +10632 10939 0.6370 +10632 10975 0.8640 +10632 10989 0.4580 +10632 11079 0.5000 +10632 23135 0.5980 +10632 23479 0.5920 +10632 23545 0.4200 +10632 26517 0.4920 +10632 26519 0.5370 +10632 26520 0.4300 +10632 26521 0.4950 +10632 27068 0.7080 +10632 27089 0.9580 +10632 27109 0.7510 +10632 28976 0.5200 +10632 29796 0.9290 +10632 29990 0.4650 +10632 50840 0.5910 +10632 51079 0.8160 +10632 51142 0.5080 +10632 51372 0.4320 +10632 54205 0.4900 +10632 54539 0.7340 +10632 54543 0.5700 +10632 54551 0.4050 +10632 54927 0.4070 +10632 55028 0.8590 +10632 55143 0.8630 +10632 55210 0.7710 +10632 55847 0.4100 +10632 55967 0.8830 +10632 56901 0.5910 +10632 56993 0.5560 +10632 57128 0.6700 +10632 57508 0.4280 +10632 59286 0.4340 +10632 60489 0.4060 +10632 64077 0.7000 +10632 64756 0.4520 +10632 79002 0.4890 +10632 79728 0.4640 +10632 84701 0.6290 +10632 84833 0.9930 +10632 84886 0.6340 +10632 91647 0.4610 +10632 91942 0.4060 +10632 93974 0.6960 +10632 94033 0.5530 +10632 116541 0.5070 +10632 120892 0.5150 +10632 125965 0.5840 +10632 125988 0.4750 +10632 126328 0.6790 +10632 140823 0.5380 +10632 155066 0.5880 +10632 170712 0.4680 +10632 200316 0.4020 +10632 245972 0.4220 +10632 257202 0.4520 +10632 267020 0.5470 +10632 283459 0.6310 +10632 374291 0.7400 +10632 388753 0.5320 +10632 440400 0.5730 +10632 440567 0.7310 +10632 440574 0.5120 +10632 493869 0.4590 +10632 100526740 0.5400 +10632 100532726 0.6150 +10633 10634 0.9240 +10633 50618 0.5400 +10633 51285 0.4970 +10633 53340 0.7730 +10633 246176 0.8120 +10634 22919 0.8260 +10634 22924 0.8480 +10634 30011 0.5910 +10634 51496 0.4770 +10634 53340 0.6940 +10634 54584 0.4350 +10634 54875 0.4900 +10634 55109 0.4160 +10634 55755 0.4710 +10634 64969 0.4460 +10634 83659 0.4740 +10634 84164 0.6040 +10634 122773 0.5020 +10634 158067 0.4610 +10634 201255 0.6210 +10634 375307 0.5070 +10634 100132015 0.4200 +10635 10714 0.5750 +10635 10721 0.4090 +10635 10733 0.7620 +10635 11004 0.6480 +10635 11065 0.6870 +10635 11130 0.8610 +10635 11144 0.6120 +10635 11169 0.5650 +10635 11339 0.8500 +10635 22974 0.6720 +10635 23397 0.6230 +10635 23480 0.4670 +10635 23514 0.5550 +10635 23594 0.4060 +10635 24137 0.7950 +10635 25788 0.6550 +10635 26151 0.5410 +10635 26271 0.6820 +10635 26586 0.4670 +10635 29028 0.6580 +10635 29089 0.6360 +10635 29127 0.5760 +10635 29128 0.6120 +10635 51053 0.5690 +10635 51203 0.7580 +10635 51426 0.4150 +10635 51514 0.6020 +10635 51659 0.6490 +10635 51750 0.5470 +10635 54107 0.4260 +10635 54386 0.4210 +10635 54443 0.4930 +10635 54478 0.5020 +10635 54821 0.4670 +10635 54892 0.7140 +10635 54908 0.4780 +10635 55010 0.7000 +10635 55055 0.6440 +10635 55143 0.6170 +10635 55165 0.8390 +10635 55166 0.4720 +10635 55215 0.6250 +10635 55247 0.4700 +10635 55320 0.7440 +10635 55355 0.6550 +10635 55388 0.8330 +10635 55635 0.7150 +10635 55723 0.5440 +10635 55732 0.4270 +10635 55789 0.7220 +10635 55839 0.7600 +10635 56655 0.4130 +10635 56992 0.7650 +10635 57017 0.4530 +10635 57403 0.8450 +10635 57405 0.5820 +10635 57599 0.9950 +10635 63967 0.4540 +10635 64105 0.5980 +10635 64151 0.9110 +10635 64710 0.4280 +10635 64854 0.8690 +10635 64946 0.7050 +10635 79019 0.5230 +10635 79075 0.7660 +10635 79682 0.8060 +10635 79728 0.9520 +10635 79733 0.5610 +10635 79801 0.7490 +10635 79915 0.4420 +10635 79935 0.4240 +10635 80010 0.7460 +10635 80198 0.6060 +10635 81620 0.6040 +10635 81930 0.4810 +10635 83461 0.5040 +10635 83540 0.7060 +10635 83879 0.5490 +10635 83990 0.6380 +10635 84057 0.8570 +10635 84464 0.5790 +10635 91833 0.5510 +10635 113130 0.7240 +10635 116028 0.7540 +10635 136306 0.5220 +10635 136332 0.4890 +10635 144455 0.4640 +10635 146722 0.4860 +10635 146956 0.7170 +10635 150468 0.5480 +10635 151648 0.5120 +10635 157313 0.6240 +10635 197342 0.6260 +10635 219333 0.8040 +10635 220134 0.5780 +10635 221150 0.6330 +10635 253714 0.4290 +10635 259266 0.6730 +10635 348654 0.5710 +10635 387103 0.4250 +10635 548593 0.5570 +10635 729475 0.4920 +10636 10672 0.4460 +10636 10681 0.6960 +10636 26059 0.4110 +10636 26086 0.4800 +10636 26575 0.5660 +10636 27289 0.4110 +10636 29899 0.4460 +10636 30819 0.4070 +10636 51764 0.5180 +10636 54331 0.5850 +10636 54550 0.4340 +10636 54873 0.4230 +10636 55188 0.4640 +10636 55970 0.5450 +10636 56978 0.4120 +10636 59345 0.6290 +10636 60626 0.5480 +10636 63940 0.4040 +10636 64407 0.5860 +10636 85397 0.5590 +10636 94235 0.5190 +10636 114822 0.7250 +10636 126006 0.5250 +10636 148281 0.4190 +10636 346562 0.6270 +10636 347902 0.5460 +10636 431704 0.5930 +10637 22943 0.4820 +10637 27022 0.4210 +10637 27130 0.4630 +10637 29842 0.4160 +10637 55211 0.4900 +10637 55997 0.8650 +10637 57167 0.4620 +10637 63978 0.5780 +10637 64321 0.5790 +10637 79727 0.4180 +10637 79923 0.6540 +10637 83881 0.5440 +10637 84976 0.5480 +10637 130399 0.6580 +10637 132625 0.5850 +10637 199699 0.4820 +10637 201456 0.4750 +10637 283726 0.4340 +10637 359787 0.5070 +10640 10890 0.8400 +10640 10952 0.4040 +10640 11177 0.4190 +10640 11311 0.4950 +10640 11336 0.9990 +10640 23025 0.4060 +10640 23233 0.9970 +10640 23265 0.9990 +10640 23355 0.4740 +10640 23433 0.7950 +10640 26098 0.4520 +10640 29091 0.6440 +10640 30000 0.4050 +10640 50807 0.6620 +10640 51542 0.5350 +10640 51552 0.7540 +10640 51762 0.5370 +10640 54431 0.4230 +10640 54536 0.9990 +10640 55275 0.6930 +10640 55737 0.5940 +10640 55745 0.4160 +10640 55763 0.9990 +10640 55770 0.9990 +10640 55930 0.4040 +10640 57511 0.5490 +10640 57551 0.4480 +10640 60412 0.9990 +10640 64151 0.4870 +10640 64601 0.4060 +10640 64762 0.4100 +10640 79058 0.5170 +10640 79719 0.4700 +10640 83452 0.4520 +10640 83548 0.5350 +10640 83851 0.4230 +10640 90410 0.7780 +10640 91828 0.8120 +10640 116841 0.4200 +10640 117177 0.8620 +10640 134957 0.4120 +10640 149371 0.9990 +10640 150946 0.4100 +10640 283849 0.9650 +10640 376267 0.4100 +10640 644145 0.8890 +10641 10670 0.9990 +10641 10988 0.4450 +10641 11068 0.6640 +10641 11133 0.9990 +10641 11186 0.5950 +10641 11334 0.4640 +10641 23334 0.9980 +10641 23395 0.4650 +10641 27244 0.7590 +10641 28956 0.9660 +10641 51256 0.6960 +10641 51364 0.7540 +10641 51382 0.5040 +10641 51451 0.5840 +10641 51520 0.4600 +10641 51606 0.5230 +10641 54468 0.9990 +10641 55004 0.9470 +10641 55846 0.9990 +10641 57521 0.8260 +10641 57582 0.4500 +10641 57600 0.6300 +10641 58528 0.8970 +10641 64121 0.9830 +10641 64223 0.7130 +10641 79109 0.4620 +10641 79726 0.9990 +10641 80213 0.4450 +10641 81929 0.9990 +10641 83667 0.8480 +10641 83877 0.4610 +10641 83941 0.4410 +10641 84219 0.9990 +10641 84330 0.5480 +10641 84861 0.4410 +10641 90423 0.4990 +10641 96459 0.5360 +10641 127124 0.4990 +10641 143686 0.4510 +10641 144577 0.9990 +10641 146705 0.4360 +10641 153129 0.5490 +10641 154743 0.9660 +10641 155066 0.5210 +10641 201163 0.7160 +10641 221424 0.5050 +10641 245972 0.5200 +10641 245973 0.5010 +10641 253260 0.4480 +10641 338692 0.4390 +10641 374354 0.4290 +10641 389541 0.9620 +10641 652968 0.7760 +10641 729438 0.6930 +10642 10643 0.9840 +10642 10644 0.8290 +10642 10658 0.4380 +10642 10659 0.4610 +10642 11051 0.4030 +10642 11052 0.4460 +10642 11190 0.4380 +10642 11338 0.4720 +10642 22803 0.4780 +10642 22849 0.5690 +10642 23091 0.7710 +10642 23196 0.5200 +10642 23318 0.4890 +10642 23369 0.5050 +10642 23405 0.5220 +10642 23518 0.4230 +10642 23608 0.5660 +10642 25940 0.4120 +10642 25962 0.8480 +10642 26135 0.4590 +10642 26523 0.6670 +10642 26986 0.9280 +10642 26999 0.4560 +10642 27067 0.7270 +10642 27161 0.6770 +10642 27316 0.7960 +10642 29063 0.5100 +10642 29081 0.4870 +10642 29890 0.7200 +10642 29894 0.4420 +10642 51441 0.8720 +10642 51574 0.5750 +10642 51692 0.4220 +10642 53981 0.4520 +10642 54443 0.4110 +10642 54487 0.4020 +10642 54542 0.5210 +10642 54596 0.4750 +10642 54890 0.8480 +10642 54915 0.9450 +10642 56257 0.4380 +10642 56339 0.8440 +10642 56945 0.4300 +10642 57332 0.4100 +10642 57721 0.7860 +10642 58155 0.5790 +10642 64506 0.6860 +10642 64783 0.7300 +10642 64848 0.8590 +10642 79066 0.7290 +10642 79068 0.7200 +10642 79670 0.4410 +10642 79727 0.7480 +10642 79869 0.4380 +10642 79872 0.6540 +10642 80315 0.6100 +10642 91746 0.9060 +10642 92312 0.5040 +10642 124540 0.4210 +10642 131405 0.5220 +10642 132864 0.5530 +10642 149041 0.6440 +10642 192670 0.5760 +10642 220988 0.5050 +10642 221120 0.5120 +10642 253943 0.8700 +10642 389421 0.8270 +10643 10644 0.8510 +10643 10657 0.4220 +10643 10953 0.4320 +10643 11051 0.5950 +10643 11052 0.4840 +10643 22827 0.4690 +10643 22868 0.4280 +10643 23019 0.4420 +10643 23054 0.4010 +10643 23091 0.7270 +10643 23196 0.4010 +10643 23405 0.4450 +10643 23534 0.4250 +10643 23608 0.6400 +10643 23609 0.5150 +10643 25962 0.8180 +10643 26057 0.5240 +10643 26523 0.5710 +10643 26986 0.7030 +10643 27316 0.8320 +10643 29063 0.4790 +10643 29081 0.4710 +10643 29126 0.5020 +10643 29890 0.7200 +10643 51441 0.8450 +10643 51574 0.5650 +10643 51637 0.4110 +10643 51692 0.4230 +10643 54443 0.4960 +10643 54502 0.5150 +10643 54542 0.5290 +10643 54596 0.4370 +10643 54742 0.6240 +10643 54760 0.4970 +10643 54890 0.7210 +10643 54915 0.9060 +10643 55379 0.5180 +10643 55635 0.4790 +10643 56257 0.4650 +10643 56339 0.8380 +10643 57532 0.4170 +10643 57721 0.8290 +10643 64783 0.7170 +10643 64848 0.8360 +10643 79066 0.6830 +10643 79068 0.7940 +10643 79679 0.4460 +10643 79727 0.7630 +10643 79869 0.4370 +10643 79872 0.5800 +10643 81554 0.4340 +10643 81930 0.4540 +10643 83540 0.4230 +10643 91746 0.8490 +10643 118430 0.4160 +10643 120379 0.5010 +10643 149041 0.5480 +10643 154150 0.5290 +10643 221120 0.4370 +10643 221150 0.4100 +10643 253943 0.8500 +10643 259266 0.4390 +10643 389421 0.7130 +10643 723961 0.4110 +10644 10664 0.4620 +10644 11052 0.4230 +10644 11082 0.4290 +10644 11085 0.4140 +10644 11132 0.5170 +10644 22803 0.4350 +10644 22913 0.5690 +10644 23019 0.4510 +10644 23091 0.7220 +10644 23185 0.4730 +10644 23196 0.7700 +10644 23405 0.4450 +10644 23608 0.4070 +10644 25962 0.8650 +10644 26065 0.4210 +10644 26523 0.5090 +10644 26986 0.6380 +10644 27161 0.5170 +10644 27316 0.7570 +10644 29063 0.4790 +10644 29081 0.4480 +10644 29890 0.7150 +10644 30848 0.4280 +10644 51441 0.8680 +10644 51574 0.5390 +10644 54469 0.5420 +10644 54502 0.4450 +10644 54542 0.5150 +10644 54760 0.4910 +10644 54890 0.7240 +10644 54901 0.8980 +10644 54915 0.8800 +10644 55272 0.4250 +10644 56257 0.4400 +10644 56339 0.8550 +10644 56999 0.5790 +10644 57118 0.5820 +10644 57721 0.8310 +10644 64783 0.7120 +10644 64848 0.8530 +10644 79066 0.6830 +10644 79068 0.9140 +10644 79727 0.4990 +10644 79869 0.4050 +10644 79872 0.5800 +10644 84327 0.6210 +10644 91746 0.8770 +10644 94241 0.4410 +10644 116985 0.5060 +10644 127018 0.4300 +10644 145741 0.5070 +10644 149041 0.6080 +10644 157848 0.4150 +10644 161823 0.4410 +10644 168400 0.4070 +10644 169026 0.8630 +10644 192670 0.4040 +10644 221120 0.4360 +10644 221895 0.6740 +10644 253943 0.8680 +10644 284119 0.5280 +10644 388125 0.4450 +10644 389421 0.5740 +10644 441478 0.4800 +10644 723961 0.4980 +10645 10670 0.4140 +10645 10891 0.6960 +10645 22918 0.4290 +10645 23363 0.6250 +10645 23411 0.6560 +10645 28964 0.5880 +10645 30849 0.4620 +10645 51094 0.7200 +10645 51422 0.9750 +10645 51433 0.4040 +10645 51719 0.5450 +10645 51806 0.9980 +10645 53632 0.9580 +10645 54541 0.4510 +10645 57521 0.6660 +10645 57620 0.5200 +10645 58528 0.4240 +10645 64121 0.4420 +10645 64223 0.5510 +10645 79602 0.6610 +10645 80331 0.5420 +10645 84254 0.9080 +10645 84446 0.4140 +10645 91860 0.9970 +10645 92335 0.4840 +10645 114898 0.4340 +10645 163688 0.9970 +10645 253260 0.4460 +10647 10648 0.7810 +10647 11019 0.4160 +10647 54860 0.4430 +10647 55811 0.4240 +10647 56667 0.4450 +10647 80830 0.4180 +10647 92304 0.4870 +10647 117156 0.5840 +10647 118430 0.5950 +10647 139135 0.4480 +10647 147199 0.4310 +10647 284402 0.4110 +10647 340654 0.4030 +10648 11272 0.4550 +10648 84569 0.5480 +10648 90070 0.6470 +10648 92304 0.4160 +10648 117156 0.5630 +10648 124220 0.4380 +10648 130940 0.4280 +10648 140870 0.4910 +10648 147199 0.4680 +10648 653641 0.5710 +10650 27166 0.7830 +10650 51499 0.9610 +10650 91133 0.4050 +10650 642597 0.4800 +10651 10989 0.9900 +10651 11313 0.4170 +10651 22906 0.6280 +10651 25813 0.9990 +10651 26515 0.4620 +10651 26519 0.4420 +10651 26520 0.5400 +10651 26521 0.4020 +10651 29093 0.4570 +10651 29928 0.4930 +10651 51079 0.4830 +10651 51102 0.4350 +10651 51318 0.4070 +10651 51744 0.7570 +10651 54543 0.8300 +10651 54927 0.9840 +10651 55156 0.6300 +10651 55288 0.4670 +10651 55669 0.6250 +10651 55735 0.9360 +10651 56993 0.7990 +10651 66008 0.5930 +10651 79135 0.9390 +10651 80273 0.4380 +10651 80856 0.9450 +10651 84134 0.6710 +10651 84233 0.4060 +10651 84270 0.8040 +10651 84303 0.9880 +10651 122042 0.4140 +10651 125988 0.9460 +10651 126328 0.4310 +10651 131118 0.4710 +10651 139322 0.9650 +10651 344191 0.8370 +10651 345778 0.9840 +10651 387990 0.6450 +10651 401505 0.7430 +10651 440574 0.9500 +10651 100188893 0.7080 +10651 100287932 0.4890 +10652 10791 0.7860 +10652 10802 0.5720 +10652 10814 0.5400 +10652 10815 0.5630 +10652 10905 0.5060 +10652 10945 0.7220 +10652 10959 0.5610 +10652 10960 0.5170 +10652 10972 0.5180 +10652 11014 0.6250 +10652 11015 0.6180 +10652 11021 0.6510 +10652 11070 0.5300 +10652 11196 0.5090 +10652 11311 0.6800 +10652 11316 0.7190 +10652 11336 0.5470 +10652 11337 0.4200 +10652 11345 0.4810 +10652 22796 0.7000 +10652 22818 0.5600 +10652 22820 0.6410 +10652 22872 0.5600 +10652 23256 0.9950 +10652 23339 0.9810 +10652 23344 0.4140 +10652 23355 0.4660 +10652 23423 0.5110 +10652 23592 0.4050 +10652 23673 0.9650 +10652 23710 0.4790 +10652 25839 0.7950 +10652 25921 0.4210 +10652 26100 0.4640 +10652 26276 0.8760 +10652 26958 0.5920 +10652 26984 0.9460 +10652 27072 0.9780 +10652 27095 0.4830 +10652 27333 0.6390 +10652 30849 0.4730 +10652 51014 0.5110 +10652 51128 0.6620 +10652 51226 0.5430 +10652 51272 0.9980 +10652 51332 0.4990 +10652 51506 0.5360 +10652 51594 0.4850 +10652 51622 0.6260 +10652 53407 0.9120 +10652 54442 0.6370 +10652 54732 0.5890 +10652 55014 0.9800 +10652 55219 0.4010 +10652 55312 0.4860 +10652 55823 0.5840 +10652 55831 0.4100 +10652 55850 0.9430 +10652 56681 0.4910 +10652 57130 0.5070 +10652 57134 0.4990 +10652 57189 0.4750 +10652 57511 0.7810 +10652 57617 0.5260 +10652 57724 0.4980 +10652 57731 0.4990 +10652 60561 0.4050 +10652 63908 0.8350 +10652 64422 0.4570 +10652 64601 0.9740 +10652 64689 0.5880 +10652 65082 0.9190 +10652 65992 0.4250 +10652 79065 0.4780 +10652 79643 0.4220 +10652 79748 0.5160 +10652 81562 0.5500 +10652 81876 0.6760 +10652 83452 0.6720 +10652 83548 0.7990 +10652 84079 0.6160 +10652 84317 0.4080 +10652 84826 0.4120 +10652 84932 0.4270 +10652 89866 0.5140 +10652 90411 0.5120 +10652 91949 0.7040 +10652 112755 0.8000 +10652 116841 0.8590 +10652 134957 0.7050 +10652 143187 0.9980 +10652 149111 0.5410 +10652 203062 0.8320 +10652 203245 0.6460 +10652 221960 0.6160 +10652 254263 0.5410 +10652 259287 0.4200 +10652 339302 0.5400 +10652 345456 0.7830 +10652 375189 0.8140 +10652 375743 0.9720 +10652 415117 0.7980 +10652 440138 0.7540 +10652 594855 0.5400 +10653 10942 0.4030 +10653 11012 0.4460 +10653 11161 0.4840 +10653 22976 0.4240 +10653 27130 0.4220 +10653 27134 0.4450 +10653 28983 0.4370 +10653 50674 0.5060 +10653 51124 0.5050 +10653 55745 0.5480 +10653 56649 0.4410 +10653 57111 0.4200 +10653 58508 0.4240 +10653 64073 0.8820 +10653 84000 0.5860 +10653 89884 0.4910 +10653 94274 0.6630 +10653 164656 0.4880 +10653 200185 0.5020 +10653 202374 0.4130 +10653 286451 0.4590 +10653 339967 0.4820 +10653 360226 0.4450 +10653 391253 0.4330 +10653 100423062 0.4430 +10653 102723407 0.4270 +10654 10682 0.5240 +10654 23623 0.4190 +10654 28956 0.4930 +10654 50814 0.6960 +10654 51478 0.5740 +10654 55777 0.4600 +10654 57326 0.5190 +10654 79005 0.4330 +10654 79590 0.4660 +10654 80347 0.5270 +10654 81034 0.4200 +10654 91734 0.8220 +10654 729920 0.4260 +10655 23189 0.4990 +10655 30812 0.4120 +10655 54361 0.4070 +10655 58524 0.5820 +10655 221092 0.5060 +10655 401036 0.4530 +10655 116033993 0.4330 +10656 10657 0.8500 +10656 11030 0.4070 +10656 11338 0.6200 +10656 27288 0.5080 +10656 27316 0.7520 +10656 54715 0.4590 +10656 54845 0.4140 +10656 56288 0.4340 +10656 57554 0.4720 +10656 58155 0.7840 +10656 80125 0.4330 +10656 84081 0.4150 +10656 91746 0.6010 +10656 92140 0.4400 +10656 112398 0.4220 +10656 112399 0.4240 +10656 159163 0.6570 +10656 196541 0.4030 +10656 199990 0.4100 +10656 202559 0.8350 +10656 245711 0.4540 +10656 378949 0.6130 +10656 114515518 0.4090 +10657 10658 0.6590 +10657 10659 0.4120 +10657 10664 0.4590 +10657 10772 0.7070 +10657 10915 0.4930 +10657 10946 0.5060 +10657 10949 0.7580 +10657 10992 0.4100 +10657 11051 0.4920 +10657 11052 0.7750 +10657 11100 0.4140 +10657 11193 0.6800 +10657 11338 0.9600 +10657 22827 0.5340 +10657 22913 0.7540 +10657 22985 0.5490 +10657 23020 0.6020 +10657 23244 0.5140 +10657 23360 0.4080 +10657 23369 0.6460 +10657 23435 0.8730 +10657 23451 0.7000 +10657 23476 0.6560 +10657 23543 0.7370 +10657 23644 0.4350 +10657 26097 0.4560 +10657 26135 0.5160 +10657 26528 0.4090 +10657 26986 0.7490 +10657 27044 0.5850 +10657 27250 0.4160 +10657 27288 0.6000 +10657 27316 0.9350 +10657 29102 0.7530 +10657 29763 0.4530 +10657 29896 0.5490 +10657 30011 0.4450 +10657 50618 0.4130 +10657 51441 0.4630 +10657 51574 0.4220 +10657 51582 0.4370 +10657 51593 0.6730 +10657 51639 0.4550 +10657 51729 0.5610 +10657 54033 0.5950 +10657 54487 0.5860 +10657 54715 0.4280 +10657 54845 0.5160 +10657 54969 0.4430 +10657 55269 0.4210 +10657 55660 0.6330 +10657 55796 0.4360 +10657 55802 0.5020 +10657 56252 0.6960 +10657 56259 0.6840 +10657 58155 0.8380 +10657 58517 0.6880 +10657 64759 0.5850 +10657 64783 0.6210 +10657 79647 0.5830 +10657 80004 0.4220 +10657 80352 0.4200 +10657 84530 0.6340 +10657 84844 0.4600 +10657 84991 0.6330 +10657 91746 0.8860 +10657 92140 0.5520 +10657 127933 0.4200 +10657 133482 0.5320 +10657 139804 0.4440 +10657 159163 0.6690 +10657 202559 0.6600 +10657 220988 0.7550 +10657 378949 0.6670 +10657 494115 0.4410 +10657 728378 0.4620 +10658 10664 0.4290 +10658 10979 0.6720 +10658 11155 0.6690 +10658 11338 0.6040 +10658 22913 0.9950 +10658 23279 0.5390 +10658 23369 0.5580 +10658 23435 0.8510 +10658 23543 0.6480 +10658 23607 0.6160 +10658 25792 0.4510 +10658 26190 0.4550 +10658 26523 0.4280 +10658 27067 0.4370 +10658 27161 0.6770 +10658 27316 0.4540 +10658 29102 0.5120 +10658 29896 0.4170 +10658 49856 0.4850 +10658 51314 0.7140 +10658 51322 0.6420 +10658 51338 0.4670 +10658 54209 0.4160 +10658 54715 0.6380 +10658 55063 0.7200 +10658 55225 0.6540 +10658 55339 0.5030 +10658 55544 0.6000 +10658 55796 0.9030 +10658 56652 0.5750 +10658 57091 0.7230 +10658 57532 0.4480 +10658 58155 0.5710 +10658 64231 0.5910 +10658 64506 0.5000 +10658 79841 0.4160 +10658 79890 0.6200 +10658 80004 0.4460 +10658 80114 0.4950 +10658 80315 0.4400 +10658 83641 0.4320 +10658 91664 0.4040 +10658 117178 0.5810 +10658 123041 0.6210 +10658 125972 0.4560 +10658 147912 0.6680 +10658 149041 0.5580 +10658 154197 0.5400 +10658 220988 0.5580 +10658 221662 0.5170 +10658 245802 0.5050 +10658 282996 0.4800 +10658 414919 0.4430 +10658 643680 0.5070 +10659 11338 0.4770 +10659 23543 0.6380 +10659 26986 0.4900 +10659 29974 0.4570 +10659 54715 0.5940 +10659 55796 0.6210 +10659 56478 0.4830 +10659 56853 0.4790 +10659 58155 0.7150 +10659 79145 0.6310 +10659 80114 0.4260 +10659 81849 0.4900 +10659 117178 0.5810 +10660 10736 0.6650 +10660 27343 0.8170 +10660 51684 0.5720 +10660 51804 0.7520 +10660 54796 0.5070 +10660 57211 0.5260 +10660 64211 0.5140 +10660 79962 0.5120 +10660 135935 0.5920 +10660 147912 0.4670 +10660 256297 0.4680 +10660 390598 0.8870 +10660 645832 0.7010 +10660 100288687 0.6980 +10661 10767 0.6170 +10661 23762 0.4650 +10661 25893 0.6030 +10661 25942 0.6200 +10661 51312 0.5680 +10661 51327 0.9060 +10661 53335 0.6190 +10661 54790 0.6020 +10661 55363 0.6990 +10661 55553 0.7540 +10661 55811 0.4050 +10661 63893 0.4880 +10661 79727 0.4370 +10661 84529 0.5320 +10661 146059 0.7420 +10661 161882 0.8750 +10661 222642 0.6350 +10663 10666 0.4920 +10663 10803 0.6940 +10663 10850 0.8200 +10663 11126 0.4690 +10663 22914 0.5920 +10663 27087 0.4240 +10663 29126 0.4530 +10663 29851 0.6370 +10663 29909 0.4540 +10663 30009 0.6780 +10663 50615 0.4730 +10663 50616 0.4550 +10663 50943 0.7010 +10663 51744 0.4110 +10663 53637 0.4190 +10663 54585 0.6710 +10663 54716 0.6780 +10663 56477 0.7400 +10663 57007 0.5590 +10663 57121 0.4010 +10663 58191 0.9990 +10663 63940 0.4130 +10663 79443 0.9290 +10663 84868 0.5220 +10663 90865 0.5970 +10663 114836 0.4200 +10663 117583 0.4400 +10663 131890 0.6830 +10663 149233 0.4330 +10663 151888 0.4110 +10663 201633 0.6630 +10663 257101 0.5920 +10663 259197 0.4720 +10663 282808 0.6850 +10663 414062 0.8000 +10664 10734 0.5750 +10664 10735 0.9830 +10664 10765 0.5270 +10664 10782 0.4850 +10664 10919 0.5270 +10664 11011 0.5050 +10664 11091 0.8480 +10664 11107 0.4540 +10664 11143 0.4570 +10664 11335 0.7530 +10664 22938 0.4970 +10664 22976 0.6290 +10664 23028 0.5700 +10664 23047 0.6890 +10664 23054 0.5860 +10664 23063 0.7550 +10664 23096 0.4620 +10664 23107 0.4030 +10664 23133 0.4710 +10664 23135 0.4020 +10664 23186 0.4580 +10664 23244 0.7580 +10664 23314 0.5530 +10664 23347 0.5750 +10664 23383 0.5780 +10664 23394 0.4460 +10664 23468 0.6890 +10664 23476 0.7260 +10664 23512 0.9870 +10664 23521 0.6620 +10664 23774 0.5150 +10664 25836 0.8750 +10664 25942 0.9320 +10664 26036 0.4370 +10664 26118 0.7930 +10664 27159 0.7870 +10664 27161 0.4950 +10664 29072 0.4650 +10664 29855 0.4230 +10664 29947 0.4670 +10664 29978 0.4010 +10664 51121 0.4230 +10664 51341 0.4210 +10664 51574 0.6120 +10664 54145 0.6040 +10664 54487 0.5330 +10664 54496 0.4370 +10664 54790 0.5150 +10664 55063 0.4470 +10664 55135 0.8070 +10664 55170 0.4690 +10664 55193 0.4010 +10664 55219 0.4210 +10664 55294 0.4820 +10664 55355 0.4500 +10664 55766 0.5280 +10664 55869 0.4210 +10664 55876 0.6140 +10664 56829 0.4710 +10664 56943 0.5520 +10664 56945 0.4130 +10664 56979 0.4550 +10664 57492 0.4840 +10664 57631 0.4050 +10664 57680 0.9440 +10664 58508 0.6970 +10664 64324 0.5140 +10664 64327 0.4230 +10664 65993 0.4450 +10664 79058 0.4030 +10664 79447 0.5220 +10664 79723 0.5540 +10664 79727 0.5270 +10664 79830 0.4070 +10664 79923 0.7820 +10664 80312 0.5240 +10664 83860 0.8900 +10664 85236 0.6050 +10664 85437 0.5190 +10664 91833 0.4740 +10664 93986 0.4440 +10664 94103 0.5680 +10664 94239 0.6440 +10664 124245 0.4170 +10664 124626 0.6060 +10664 128312 0.6010 +10664 140690 0.4540 +10664 147912 0.8410 +10664 151648 0.4600 +10664 170082 0.4150 +10664 200424 0.4170 +10664 201456 0.4240 +10664 255626 0.6170 +10664 284058 0.4190 +10664 286749 0.4490 +10664 440093 0.6990 +10664 440686 0.7110 +10664 448831 0.4120 +10664 474382 0.5710 +10664 642636 0.7460 +10664 653604 0.8560 +10664 100288687 0.5770 +10664 102723407 0.5430 +10665 56244 0.6980 +10665 56979 0.4050 +10665 130502 0.5910 +10665 170679 0.4720 +10666 10859 0.6730 +10666 10870 0.7390 +10666 11126 0.4710 +10666 11224 0.4180 +10666 11314 0.4010 +10666 22914 0.9360 +10666 23274 0.4930 +10666 23308 0.5520 +10666 23521 0.4970 +10666 25873 0.4120 +10666 25914 0.6790 +10666 25945 0.6100 +10666 26191 0.4310 +10666 27036 0.5100 +10666 27087 0.6240 +10666 28998 0.4850 +10666 29101 0.7450 +10666 29121 0.4460 +10666 29126 0.5980 +10666 29851 0.5390 +10666 30009 0.5270 +10666 50852 0.4230 +10666 50943 0.4790 +10666 51069 0.5480 +10666 51348 0.8050 +10666 51659 0.4610 +10666 51692 0.7160 +10666 51744 0.8020 +10666 55904 0.4250 +10666 56253 0.6400 +10666 57128 0.5790 +10666 57823 0.5580 +10666 63931 0.4080 +10666 79037 0.7350 +10666 79465 0.7970 +10666 80328 0.8160 +10666 80329 0.9100 +10666 80335 0.6530 +10666 80380 0.4590 +10666 80381 0.5430 +10666 81607 0.5810 +10666 84662 0.4340 +10666 84868 0.6420 +10666 114836 0.8710 +10666 116832 0.4580 +10666 124454 0.4250 +10666 135250 0.4790 +10666 146722 0.4790 +10666 151888 0.4830 +10666 201633 0.9860 +10666 254268 0.4960 +10666 259197 0.9460 +10666 284194 0.4520 +10666 353091 0.4180 +10666 374383 0.7880 +10666 654346 0.4520 +10666 100507436 0.6520 +10667 22984 0.4170 +10667 23395 0.8470 +10667 23438 0.6870 +10667 25813 0.4620 +10667 25973 0.8400 +10667 27158 0.6480 +10667 29789 0.5440 +10667 29956 0.4220 +10667 50515 0.4250 +10667 51021 0.4890 +10667 51067 0.8830 +10667 51069 0.4290 +10667 51073 0.4050 +10667 51081 0.5130 +10667 51204 0.4050 +10667 51308 0.4140 +10667 51520 0.8030 +10667 54802 0.4270 +10667 54938 0.7110 +10667 54971 0.5940 +10667 55052 0.4990 +10667 55157 0.8700 +10667 55173 0.4170 +10667 55272 0.4370 +10667 55278 0.4750 +10667 55526 0.4440 +10667 55687 0.5090 +10667 55699 0.8360 +10667 56648 0.4030 +10667 56945 0.4990 +10667 57038 0.8250 +10667 57128 0.5790 +10667 57136 0.5460 +10667 57176 0.8310 +10667 57470 0.9370 +10667 57505 0.8330 +10667 64965 0.4690 +10667 64968 0.4080 +10667 64969 0.4440 +10667 64979 0.4190 +10667 64983 0.5220 +10667 65008 0.4790 +10667 79133 0.9090 +10667 79587 0.7380 +10667 79631 0.4860 +10667 79731 0.8560 +10667 80222 0.8270 +10667 84464 0.4410 +10667 85437 0.6120 +10667 85476 0.6190 +10667 87178 0.5530 +10667 91574 0.4950 +10667 92935 0.8070 +10667 123263 0.5370 +10667 123283 0.7980 +10667 124454 0.8320 +10667 126402 0.4720 +10667 139596 0.4850 +10667 143244 0.4030 +10667 200205 0.4200 +10667 440275 0.5200 +10668 10669 0.9600 +10668 23032 0.4100 +10668 51136 0.5920 +10668 51439 0.5010 +10668 51465 0.4640 +10668 55819 0.4160 +10668 79102 0.4470 +10668 81790 0.5160 +10668 84900 0.4120 +10668 118424 0.6020 +10668 148066 0.4270 +10668 153830 0.4220 +10669 26580 0.4310 +10669 57092 0.4120 +10669 65055 0.4470 +10670 11133 0.6690 +10670 23049 0.5580 +10670 23334 0.6970 +10670 23339 0.6890 +10670 23395 0.6650 +10670 23677 0.5920 +10670 23770 0.4450 +10670 27244 0.7670 +10670 28956 0.9990 +10670 51256 0.7030 +10670 51363 0.4660 +10670 51382 0.6410 +10670 51388 0.7090 +10670 51422 0.5250 +10670 51520 0.6910 +10670 51606 0.6610 +10670 53632 0.5700 +10670 54407 0.4070 +10670 54468 0.9980 +10670 54541 0.6390 +10670 55004 0.9990 +10670 55035 0.8050 +10670 55846 0.7040 +10670 57521 0.9990 +10670 57600 0.9950 +10670 58528 0.9990 +10670 60673 0.6010 +10670 64121 0.9990 +10670 64223 0.9850 +10670 64798 0.8900 +10670 79109 0.5020 +10670 79443 0.4110 +10670 79726 0.8380 +10670 81929 0.8140 +10670 83667 0.8100 +10670 84219 0.8570 +10670 84232 0.4750 +10670 84335 0.9940 +10670 84946 0.4190 +10670 90423 0.4990 +10670 96459 0.9670 +10670 120103 0.5520 +10670 121268 0.4130 +10670 127124 0.4990 +10670 143686 0.4080 +10670 144577 0.7110 +10670 153129 0.9990 +10670 154743 0.8210 +10670 155066 0.5090 +10670 201163 0.9980 +10670 206358 0.5940 +10670 220441 0.9750 +10670 245972 0.5480 +10670 245973 0.5440 +10670 253260 0.7240 +10670 389541 0.9990 +10670 440275 0.4110 +10670 652968 0.7900 +10670 729438 0.6050 +10671 10728 0.4150 +10671 10880 0.6840 +10671 10881 0.6840 +10671 11004 0.5000 +10671 11030 0.7750 +10671 11070 0.5040 +10671 11076 0.7680 +10671 11127 0.5320 +10671 11258 0.9990 +10671 11275 0.4730 +10671 22796 0.5060 +10671 22920 0.5470 +10671 22930 0.5170 +10671 22931 0.5970 +10671 22981 0.5900 +10671 23162 0.6380 +10671 23299 0.6360 +10671 23594 0.4220 +10671 24137 0.5330 +10671 25782 0.5090 +10671 25839 0.5040 +10671 26153 0.4990 +10671 26286 0.5460 +10671 29127 0.5010 +10671 29765 0.5120 +10671 29950 0.5260 +10671 51143 0.8420 +10671 51164 0.9990 +10671 51272 0.4990 +10671 51560 0.5540 +10671 54069 0.4800 +10671 54504 0.4220 +10671 55738 0.5070 +10671 55765 0.4200 +10671 55860 0.9990 +10671 56992 0.5040 +10671 57180 0.8360 +10671 57511 0.5130 +10671 60626 0.4640 +10671 64689 0.4990 +10671 64837 0.5040 +10671 79848 0.6730 +10671 80310 0.6280 +10671 81569 0.6840 +10671 81930 0.5770 +10671 83548 0.5060 +10671 83658 0.9320 +10671 84317 0.5350 +10671 84364 0.5090 +10671 84516 0.9990 +10671 84517 0.5050 +10671 84643 0.5070 +10671 84688 0.4240 +10671 89927 0.6310 +10671 89953 0.5030 +10671 90634 0.5870 +10671 91582 0.6300 +10671 91949 0.5040 +10671 92558 0.8800 +10671 93661 0.5520 +10671 140735 0.5520 +10671 140850 0.7770 +10671 147700 0.5500 +10671 284382 0.6840 +10671 285643 0.4990 +10671 653857 0.8460 +10672 10681 0.8050 +10672 11214 0.9330 +10672 22859 0.7700 +10672 22899 0.4160 +10672 23229 0.4490 +10672 23263 0.4310 +10672 23266 0.7640 +10672 23284 0.7750 +10672 23365 0.9990 +10672 23370 0.5470 +10672 23533 0.9060 +10672 23566 0.7570 +10672 25822 0.4060 +10672 26086 0.4050 +10672 26166 0.5100 +10672 26230 0.4320 +10672 26575 0.7690 +10672 29899 0.5220 +10672 50649 0.4780 +10672 50650 0.6200 +10672 51764 0.6780 +10672 53637 0.9270 +10672 54331 0.9680 +10672 54848 0.4330 +10672 55160 0.4400 +10672 55188 0.6030 +10672 55486 0.4700 +10672 55681 0.4450 +10672 55704 0.5690 +10672 55970 0.8030 +10672 57121 0.9160 +10672 57449 0.4220 +10672 57580 0.5480 +10672 59345 0.8740 +10672 60626 0.9110 +10672 64283 0.5970 +10672 64407 0.7710 +10672 64750 0.4100 +10672 64857 0.4180 +10672 83660 0.6920 +10672 84033 0.4240 +10672 84433 0.4830 +10672 84904 0.4720 +10672 85397 0.7700 +10672 89846 0.4090 +10672 89857 0.4130 +10672 94235 0.6830 +10672 115557 0.4800 +10672 121512 0.4080 +10672 123745 0.6550 +10672 128272 0.4360 +10672 146850 0.9000 +10672 201134 0.4030 +10672 221188 0.4310 +10672 221472 0.4080 +10672 255189 0.6550 +10672 283748 0.6550 +10672 286530 0.6880 +10672 346562 0.5960 +10672 389337 0.4320 +10672 431704 0.7990 +10672 100137049 0.6550 +10672 100271715 0.4400 +10672 100271849 0.5170 +10672 105372280 0.6790 +10673 10758 0.5830 +10673 10875 0.4080 +10673 10892 0.4150 +10673 10964 0.4730 +10673 11344 0.4440 +10673 22918 0.4530 +10673 23308 0.7680 +10673 23495 0.9990 +10673 23586 0.4810 +10673 23590 0.4120 +10673 23643 0.4830 +10673 23765 0.4670 +10673 26191 0.4740 +10673 26953 0.4200 +10673 29126 0.4590 +10673 29760 0.4750 +10673 29851 0.8700 +10673 29911 0.4490 +10673 30009 0.4920 +10673 30816 0.4880 +10673 50615 0.4670 +10673 50616 0.5070 +10673 50856 0.4240 +10673 50943 0.5500 +10673 51135 0.4190 +10673 51284 0.6920 +10673 51311 0.7450 +10673 51330 0.6600 +10673 51361 0.5470 +10673 54106 0.6220 +10673 54145 0.4220 +10673 54739 0.5180 +10673 55007 0.5500 +10673 57379 0.6530 +10673 57700 0.5530 +10673 57823 0.5040 +10673 59067 0.4210 +10673 64127 0.4550 +10673 64135 0.4850 +10673 64400 0.7830 +10673 64407 0.4540 +10673 65078 0.4820 +10673 80381 0.4340 +10673 83666 0.5020 +10673 84067 0.8020 +10673 84376 0.5760 +10673 84433 0.4050 +10673 85236 0.4300 +10673 85480 0.5070 +10673 90865 0.5020 +10673 91543 0.4630 +10673 94240 0.5760 +10673 112744 0.4280 +10673 115362 0.5180 +10673 115650 0.9990 +10673 128312 0.4310 +10673 158983 0.4220 +10673 219285 0.6300 +10673 255626 0.4310 +10673 286436 0.4220 +10673 389840 0.5020 +10673 405754 0.4710 +10673 440689 0.4220 +10673 441168 0.4180 +10673 100133941 0.4180 +10673 100423062 0.9360 +10673 102723407 0.7420 +10673 114483833 0.4220 +10675 11285 0.4220 +10675 22856 0.4600 +10675 23242 0.4370 +10675 26229 0.4400 +10675 27087 0.4510 +10675 29940 0.4600 +10675 51363 0.4290 +10675 54480 0.4130 +10675 55003 0.4310 +10675 55454 0.4090 +10675 55501 0.4350 +10675 55790 0.4580 +10675 57120 0.6390 +10675 57628 0.4120 +10675 63827 0.7150 +10675 64131 0.4170 +10675 65078 0.4990 +10675 79586 0.4380 +10675 81035 0.4730 +10675 81542 0.5120 +10675 84295 0.5340 +10675 90070 0.9110 +10675 92126 0.4570 +10675 113189 0.4250 +10675 126792 0.4520 +10675 135152 0.4200 +10675 166012 0.4170 +10675 221914 0.6800 +10675 337876 0.4120 +10675 375790 0.5220 +10677 25895 0.4500 +10677 57511 0.4990 +10677 83548 0.4500 +10677 646892 0.4580 +10678 10690 0.9360 +10678 11041 0.4560 +10678 11081 0.5650 +10678 11282 0.4940 +10678 11320 0.4340 +10678 29071 0.6990 +10678 29954 0.4220 +10678 54108 0.4630 +10678 54206 0.4570 +10678 55624 0.4900 +10678 55741 0.4520 +10678 56667 0.4410 +10678 56913 0.6070 +10678 79147 0.4740 +10678 79369 0.9130 +10678 80298 0.4610 +10678 84197 0.4340 +10678 84620 0.4300 +10678 84892 0.4930 +10678 94025 0.4310 +10678 120071 0.4130 +10678 121665 0.5630 +10678 122618 0.4310 +10678 124872 0.4820 +10678 140453 0.4050 +10678 150684 0.5970 +10678 200728 0.5870 +10678 200958 0.4250 +10678 285203 0.4090 +10678 374907 0.4280 +10678 390616 0.4090 +10678 394263 0.4050 +10678 727897 0.4090 +10678 728819 0.4040 +10678 729920 0.4180 +10681 10692 0.5690 +10681 10693 0.5630 +10681 10694 0.5410 +10681 10800 0.5720 +10681 10874 0.5060 +10681 22800 0.6970 +10681 22808 0.6920 +10681 22859 0.9670 +10681 22948 0.9970 +10681 23229 0.4130 +10681 23236 0.8550 +10681 23266 0.9670 +10681 23284 0.9670 +10681 23365 0.5540 +10681 23533 0.6500 +10681 23566 0.7110 +10681 23596 0.5940 +10681 25766 0.7820 +10681 25976 0.4020 +10681 26086 0.5040 +10681 26499 0.5320 +10681 26575 0.9470 +10681 29893 0.5420 +10681 29899 0.4770 +10681 29956 0.4230 +10681 51154 0.4100 +10681 51422 0.7190 +10681 51655 0.6980 +10681 51764 0.8810 +10681 53632 0.6730 +10681 54331 0.9990 +10681 55811 0.6730 +10681 55930 0.5410 +10681 55970 0.7870 +10681 56923 0.5600 +10681 57010 0.4170 +10681 57105 0.5670 +10681 57121 0.5420 +10681 57512 0.9320 +10681 57580 0.9390 +10681 59345 0.7240 +10681 60506 0.5420 +10681 63940 0.4080 +10681 64407 0.9460 +10681 64805 0.5140 +10681 79819 0.4230 +10681 84539 0.5450 +10681 85397 0.9490 +10681 90507 0.4010 +10681 92255 0.4260 +10681 92292 0.7550 +10681 94235 0.8090 +10681 115557 0.4990 +10681 117579 0.5030 +10681 122786 0.4620 +10681 126006 0.5580 +10681 126820 0.4230 +10681 129521 0.4990 +10681 131890 0.5520 +10681 139760 0.4610 +10681 146850 0.6720 +10681 151306 0.5120 +10681 196883 0.7350 +10681 201514 0.4920 +10681 221391 0.5710 +10681 284004 0.4270 +10681 345193 0.5850 +10681 346562 0.7670 +10681 387129 0.7590 +10681 388531 0.9990 +10681 401190 0.9950 +10681 431704 0.9530 +10681 440435 0.4880 +10681 594857 0.4990 +10681 104909134 0.4520 +10681 105372280 0.6930 +10682 11161 0.5800 +10682 23545 0.4500 +10682 27346 0.5050 +10682 50617 0.4560 +10682 50814 0.9640 +10682 51124 0.4690 +10682 51477 0.4460 +10682 51478 0.9610 +10682 64805 0.4120 +10682 79971 0.4740 +10682 81033 0.9010 +10682 91734 0.4350 +10682 245972 0.5400 +10682 286451 0.5040 +10683 11317 0.4370 +10683 23385 0.4560 +10683 23462 0.6990 +10683 23493 0.6140 +10683 23509 0.4220 +10683 26508 0.5330 +10683 28514 0.9400 +10683 51593 0.8670 +10683 54567 0.9190 +10683 55502 0.5570 +10683 55534 0.6710 +10683 57026 0.5200 +10683 57801 0.4500 +10683 63897 0.5640 +10683 80321 0.4360 +10683 84441 0.6860 +10683 93649 0.4130 +10683 134701 0.4700 +10683 145873 0.8570 +10683 388585 0.7230 +10683 441478 0.4790 +10686 23562 0.7910 +10686 24146 0.7470 +10686 26285 0.8570 +10686 26504 0.4690 +10686 27031 0.5830 +10686 27134 0.8060 +10686 49861 0.7210 +10686 50617 0.4130 +10686 51208 0.7810 +10686 53842 0.7230 +10686 54805 0.6460 +10686 54822 0.6190 +10686 54946 0.5120 +10686 56288 0.6720 +10686 56302 0.6040 +10686 65266 0.4490 +10686 84102 0.4600 +10686 90952 0.6780 +10686 131920 0.4090 +10686 137075 0.8640 +10686 140803 0.8280 +10686 142680 0.5020 +10686 149461 0.9950 +10686 152137 0.5740 +10686 254428 0.6630 +10686 261734 0.5610 +10686 644672 0.8110 +10686 100132463 0.7250 +10686 100288814 0.7520 +10686 100506658 0.8940 +10687 11157 0.4060 +10687 23092 0.5020 +10687 23774 0.4200 +10687 26047 0.8100 +10687 26289 0.4540 +10687 30850 0.4740 +10687 51592 0.4950 +10687 51676 0.4040 +10687 54890 0.4470 +10687 55175 0.5060 +10687 56339 0.4480 +10687 56896 0.8920 +10687 57628 0.7990 +10687 57697 0.5320 +10687 57721 0.4230 +10687 64112 0.4080 +10687 79068 0.5260 +10687 84107 0.8380 +10687 85440 0.4210 +10687 92737 0.7620 +10687 113246 0.4260 +10687 126393 0.4440 +10687 222658 0.4920 +10687 402665 0.8040 +10690 23275 0.5630 +10690 23509 0.5400 +10690 55033 0.4810 +10690 55343 0.5440 +10690 56913 0.4090 +10690 57127 0.4060 +10690 79369 0.9230 +10690 79694 0.4150 +10690 80271 0.4120 +10690 84002 0.4440 +10690 84868 0.4930 +10690 91937 0.5490 +10690 114792 0.4120 +10691 26205 0.8600 +10691 51077 0.4970 +10691 54432 0.4500 +10691 84676 0.6300 +10692 23596 0.6140 +10692 26103 0.4540 +10692 28955 0.4220 +10692 51764 0.5610 +10692 54331 0.5410 +10692 54433 0.4830 +10692 55970 0.5440 +10692 59345 0.5560 +10692 80303 0.4160 +10692 94235 0.5410 +10692 124274 0.4720 +10692 221391 0.6060 +10692 345193 0.8270 +10692 647286 0.5280 +10693 10694 0.9960 +10693 10728 0.9180 +10693 10808 0.4130 +10693 10856 0.5990 +10693 10963 0.9100 +10693 11140 0.9110 +10693 11145 0.4130 +10693 11328 0.5470 +10693 22803 0.5220 +10693 22824 0.5900 +10693 22948 0.9990 +10693 23234 0.9340 +10693 23753 0.7200 +10693 25789 0.4330 +10693 25843 0.9940 +10693 25870 0.4060 +10693 25956 0.4250 +10693 26190 0.5030 +10693 26224 0.5080 +10693 26234 0.5010 +10693 26259 0.5010 +10693 26270 0.4990 +10693 26272 0.5210 +10693 26330 0.6600 +10693 26353 0.7600 +10693 26985 0.4990 +10693 51182 0.4420 +10693 51398 0.5400 +10693 51726 0.7960 +10693 51764 0.4990 +10693 51807 0.7700 +10693 54331 0.4990 +10693 54431 0.4110 +10693 54461 0.5200 +10693 54979 0.4120 +10693 55135 0.5800 +10693 55172 0.5400 +10693 55294 0.5070 +10693 55466 0.6070 +10693 55780 0.8410 +10693 55970 0.4990 +10693 56984 0.9010 +10693 57003 0.5430 +10693 57110 0.4150 +10693 59345 0.5100 +10693 63971 0.5000 +10693 79031 0.5040 +10693 79657 0.5690 +10693 79738 0.8090 +10693 79861 0.6670 +10693 79960 0.4970 +10693 80086 0.5730 +10693 80273 0.5640 +10693 81027 0.5950 +10693 81570 0.4700 +10693 81572 0.5410 +10693 83752 0.7050 +10693 84140 0.6200 +10693 84261 0.5700 +10693 84617 0.6190 +10693 84790 0.6280 +10693 85479 0.4630 +10693 93081 0.4120 +10693 94235 0.4990 +10693 112714 0.5730 +10693 113457 0.5730 +10693 116835 0.4780 +10693 118461 0.4110 +10693 120379 0.5520 +10693 122481 0.4090 +10693 134266 0.5630 +10693 143471 0.4320 +10693 148345 0.4490 +10693 150160 0.9530 +10693 259217 0.4790 +10693 339416 0.4060 +10693 347733 0.6250 +10693 388633 0.4110 +10693 548645 0.4130 +10694 10726 0.6860 +10694 10728 0.9460 +10694 10808 0.5600 +10694 10856 0.7760 +10694 10946 0.4150 +10694 10963 0.9690 +10694 10989 0.4520 +10694 11055 0.4730 +10694 11140 0.9290 +10694 11316 0.4450 +10694 11328 0.5360 +10694 22803 0.5540 +10694 22824 0.6020 +10694 22916 0.4730 +10694 22948 0.9990 +10694 23030 0.5330 +10694 23234 0.9300 +10694 23435 0.4420 +10694 23521 0.4590 +10694 23753 0.7210 +10694 25843 0.9950 +10694 25886 0.4400 +10694 25914 0.5050 +10694 25956 0.4530 +10694 26190 0.5040 +10694 26224 0.4990 +10694 26234 0.4990 +10694 26270 0.5170 +10694 26272 0.4990 +10694 26330 0.7350 +10694 26353 0.7470 +10694 26985 0.5210 +10694 27000 0.5460 +10694 27241 0.4580 +10694 27316 0.4240 +10694 29789 0.4590 +10694 29888 0.9940 +10694 29966 0.9940 +10694 30846 0.4820 +10694 51182 0.4040 +10694 51386 0.4330 +10694 51398 0.5490 +10694 51493 0.4840 +10694 51602 0.4740 +10694 51637 0.4090 +10694 51726 0.8010 +10694 51764 0.4990 +10694 51807 0.6360 +10694 54148 0.4610 +10694 54331 0.5010 +10694 54433 0.4080 +10694 54461 0.4990 +10694 54832 0.4020 +10694 54853 0.4690 +10694 55135 0.7120 +10694 55154 0.4760 +10694 55172 0.5470 +10694 55212 0.6670 +10694 55220 0.6210 +10694 55291 0.4930 +10694 55294 0.4990 +10694 55466 0.4080 +10694 55720 0.8110 +10694 55735 0.6580 +10694 55759 0.6020 +10694 55780 0.9170 +10694 55844 0.4390 +10694 55970 0.5010 +10694 56257 0.4520 +10694 56984 0.9130 +10694 57003 0.5470 +10694 57180 0.4050 +10694 59345 0.5140 +10694 63971 0.4990 +10694 79031 0.9850 +10694 79657 0.6030 +10694 79738 0.9640 +10694 79861 0.5920 +10694 80086 0.5810 +10694 80342 0.9940 +10694 81027 0.5660 +10694 81572 0.5510 +10694 83752 0.5090 +10694 83992 0.9940 +10694 84140 0.7790 +10694 84261 0.6860 +10694 84617 0.6050 +10694 84790 0.6780 +10694 92482 0.4400 +10694 94235 0.4990 +10694 112714 0.5810 +10694 113457 0.5810 +10694 120379 0.5950 +10694 123103 0.5740 +10694 124626 0.5360 +10694 129880 0.4320 +10694 150160 0.5720 +10694 166379 0.8960 +10694 203068 0.9460 +10694 339416 0.4220 +10694 347733 0.6000 +10694 348995 0.5150 +10695 23643 0.8780 +10695 26018 0.4830 +10695 26045 0.4140 +10695 51237 0.4390 +10695 51284 0.6990 +10695 51311 0.7220 +10695 54106 0.7480 +10695 55227 0.4030 +10695 55631 0.8180 +10695 60506 0.4200 +10695 81622 0.8600 +10695 94097 0.4280 +10695 121227 0.4930 +10695 285888 0.5180 +10695 347688 0.4690 +10699 54361 0.4030 +10699 57408 0.4320 +10699 79258 0.4930 +10699 85451 0.4130 +10699 285489 0.4200 +10699 285888 0.4670 +10699 375790 0.5840 +10699 110806297 0.4070 +10712 11059 0.4660 +10712 11276 0.4310 +10712 25807 0.4400 +10712 51741 0.6960 +10712 55974 0.4280 +10712 57520 0.4330 +10712 57657 0.4230 +10712 80128 0.4680 +10712 83737 0.4740 +10712 84522 0.4080 +10712 200185 0.4130 +10712 338692 0.4940 +10713 10791 0.4690 +10713 10907 0.9860 +10713 10921 0.5980 +10713 10929 0.4350 +10713 10946 0.9190 +10713 10987 0.4220 +10713 10992 0.8370 +10713 11011 0.5820 +10713 11017 0.9980 +10713 11157 0.9790 +10713 11193 0.4010 +10713 11198 0.4360 +10713 11274 0.4110 +10713 22826 0.5320 +10713 22985 0.4850 +10713 23020 0.9650 +10713 23450 0.8560 +10713 23451 0.9100 +10713 23476 0.5310 +10713 23658 0.9790 +10713 23660 0.5420 +10713 24147 0.6360 +10713 24148 0.9860 +10713 25804 0.9900 +10713 25862 0.5910 +10713 25904 0.6280 +10713 25957 0.4180 +10713 25980 0.4510 +10713 26121 0.9950 +10713 27258 0.9790 +10713 27336 0.5310 +10713 27339 0.5490 +10713 29086 0.4550 +10713 29761 0.6740 +10713 51077 0.4760 +10713 51255 0.5360 +10713 51428 0.4810 +10713 51497 0.4890 +10713 51633 0.4060 +10713 51634 0.4030 +10713 51639 0.8420 +10713 51690 0.9870 +10713 51691 0.9900 +10713 51729 0.5310 +10713 51747 0.5110 +10713 54532 0.5030 +10713 54764 0.6510 +10713 54765 0.8900 +10713 54957 0.5470 +10713 55031 0.4130 +10713 55339 0.4020 +10713 55749 0.5160 +10713 56259 0.5230 +10713 56658 0.4120 +10713 57558 0.5240 +10713 57602 0.4120 +10713 57646 0.6240 +10713 57663 0.4750 +10713 57695 0.5230 +10713 57794 0.5220 +10713 57819 0.9900 +10713 59286 0.4860 +10713 64854 0.5710 +10713 78991 0.4240 +10713 79171 0.9670 +10713 79716 0.4340 +10713 79753 0.4740 +10713 80153 0.4270 +10713 83443 0.8170 +10713 83607 0.4330 +10713 83844 0.4430 +10713 84101 0.5710 +10713 84196 0.5950 +10713 84640 0.5720 +10713 84669 0.4620 +10713 84675 0.5810 +10713 84749 0.4400 +10713 84811 0.4630 +10713 84844 0.8440 +10713 84950 0.6950 +10713 85015 0.6100 +10713 124245 0.5280 +10713 124739 0.5050 +10713 153527 0.5500 +10713 153830 0.4010 +10713 159195 0.5780 +10713 219333 0.5430 +10713 221302 0.5580 +10714 11073 0.4270 +10714 11232 0.9070 +10714 23649 0.9530 +10714 25788 0.4590 +10714 25913 0.5590 +10714 26277 0.5890 +10714 27297 0.9010 +10714 27343 0.5340 +10714 27434 0.5110 +10714 29935 0.9290 +10714 29980 0.9020 +10714 50485 0.4920 +10714 51426 0.5730 +10714 51455 0.9910 +10714 51514 0.5870 +10714 51659 0.4140 +10714 54107 0.9520 +10714 54108 0.9020 +10714 54386 0.5640 +10714 54921 0.5000 +10714 55215 0.4210 +10714 55279 0.4230 +10714 55388 0.4340 +10714 56655 0.9480 +10714 56852 0.7830 +10714 57599 0.5370 +10714 57696 0.4300 +10714 57697 0.4330 +10714 57804 0.9990 +10714 63922 0.5500 +10714 64794 0.4070 +10714 79075 0.6380 +10714 79728 0.6550 +10714 80010 0.6990 +10714 80119 0.4220 +10714 80198 0.6610 +10714 83932 0.7630 +10714 83990 0.5510 +10714 84464 0.5950 +10714 116028 0.5520 +10714 124739 0.5070 +10714 146956 0.5440 +10714 201973 0.4220 +10714 548593 0.4820 +10716 10763 0.7460 +10716 10777 0.4430 +10716 11170 0.4200 +10716 22941 0.4060 +10716 23040 0.5170 +10716 23314 0.8980 +10716 23316 0.6390 +10716 23416 0.4230 +10716 23440 0.4550 +10716 23705 0.4270 +10716 26053 0.4880 +10716 26468 0.7470 +10716 27319 0.5820 +10716 53335 0.4400 +10716 55079 0.9410 +10716 55553 0.4340 +10716 56956 0.6790 +10716 57030 0.7360 +10716 57084 0.5850 +10716 57167 0.4760 +10716 57459 0.4410 +10716 57524 0.5600 +10716 57576 0.4410 +10716 57680 0.5870 +10716 63973 0.7030 +10716 63974 0.8620 +10716 64061 0.7680 +10716 64211 0.4750 +10716 64919 0.8840 +10716 79923 0.4330 +10716 80012 0.5700 +10716 83473 0.4380 +10716 84152 0.4210 +10716 84525 0.4460 +10716 84894 0.4330 +10716 85358 0.4360 +10716 93986 0.8610 +10716 116448 0.5020 +10716 120237 0.5600 +10716 140679 0.5060 +10716 146713 0.7170 +10716 170825 0.6400 +10716 219409 0.5570 +10716 221833 0.4790 +10716 257364 0.4060 +10716 266727 0.4420 +10716 266743 0.4290 +10716 431707 0.4270 +10716 440093 0.4270 +10716 440686 0.4270 +10716 653604 0.4270 +10717 10745 0.5840 +10717 10749 0.4780 +10717 10908 0.5100 +10717 10947 0.8020 +10717 10955 0.4470 +10717 11154 0.9990 +10717 11160 0.5200 +10717 11276 0.7650 +10717 22796 0.4430 +10717 22818 0.4190 +10717 22905 0.5030 +10717 23111 0.4450 +10717 23189 0.4710 +10717 23204 0.4760 +10717 23259 0.5530 +10717 23339 0.4640 +10717 23431 0.9990 +10717 23503 0.5870 +10717 23557 0.5230 +10717 24144 0.4090 +10717 25977 0.5730 +10717 26258 0.4990 +10717 26580 0.4360 +10717 26984 0.4360 +10717 26985 0.6680 +10717 27131 0.5160 +10717 29924 0.4800 +10717 50650 0.4020 +10717 51308 0.4770 +10717 51324 0.6100 +10717 51429 0.5520 +10717 54665 0.5840 +10717 54885 0.5300 +10717 55040 0.5060 +10717 55317 0.9380 +10717 55330 0.5000 +10717 55707 0.4700 +10717 55745 0.9600 +10717 57165 0.4760 +10717 57515 0.5000 +10717 57599 0.4620 +10717 57704 0.7450 +10717 58513 0.5040 +10717 65055 0.5130 +10717 79065 0.4340 +10717 79152 0.5150 +10717 79177 0.7130 +10717 80055 0.4320 +10717 80208 0.5580 +10717 80325 0.4110 +10717 80821 0.5530 +10717 81567 0.5140 +10717 84062 0.5090 +10717 84067 0.4820 +10717 84251 0.7640 +10717 91056 0.9200 +10717 91574 0.5870 +10717 113612 0.5360 +10717 118813 0.4690 +10717 122616 0.5400 +10717 123606 0.5620 +10717 130162 0.5940 +10717 130340 0.7930 +10717 137492 0.6070 +10717 146705 0.8660 +10717 150350 0.4800 +10717 221421 0.5100 +10717 221955 0.4110 +10717 286451 0.4990 +10717 340075 0.4780 +10717 388552 0.5040 +10717 440603 0.5760 +10717 100287238 0.4100 +10717 100526783 0.4100 +10718 11140 0.4990 +10718 26053 0.8250 +10718 29119 0.4610 +10718 51072 0.4990 +10718 55879 0.5110 +10718 55914 0.5190 +10718 93664 0.8660 +10718 145957 0.9940 +10718 157753 0.4330 +10718 255324 0.5260 +10720 26229 0.4530 +10720 27233 0.6280 +10720 27284 0.6400 +10720 28234 0.4900 +10720 29785 0.6860 +10720 51144 0.6620 +10720 51478 0.6600 +10720 54576 0.4130 +10720 55586 0.9010 +10720 56603 0.6870 +10720 79644 0.6740 +10720 114799 0.4420 +10720 157570 0.4430 +10720 220074 0.8140 +10720 284541 0.6900 +10720 340665 0.6860 +10720 374875 0.6810 +10720 442038 0.6390 +10720 100861540 0.7560 +10721 10733 0.5060 +10721 11004 0.4740 +10721 11073 0.4080 +10721 11169 0.4790 +10721 11201 0.4680 +10721 22909 0.4080 +10721 22976 0.4570 +10721 24137 0.4430 +10721 25788 0.4530 +10721 27343 0.6630 +10721 27434 0.6540 +10721 51426 0.6270 +10721 51455 0.6200 +10721 51514 0.5270 +10721 54537 0.5730 +10721 54821 0.4860 +10721 55010 0.4180 +10721 55165 0.4430 +10721 55215 0.5830 +10721 55247 0.7550 +10721 55355 0.5460 +10721 55388 0.5890 +10721 56852 0.4610 +10721 56992 0.6560 +10721 57082 0.4980 +10721 57697 0.5110 +10721 58517 0.4810 +10721 63967 0.4680 +10721 64151 0.5520 +10721 79000 0.4520 +10721 79066 0.5180 +10721 79728 0.5150 +10721 79840 0.4880 +10721 79915 0.4010 +10721 80119 0.5600 +10721 80198 0.4770 +10721 81620 0.4640 +10721 81930 0.4080 +10721 83990 0.6550 +10721 84515 0.4170 +10721 84893 0.4380 +10721 90381 0.5650 +10721 113130 0.4120 +10721 116028 0.4330 +10721 144455 0.4670 +10721 150468 0.4940 +10721 157570 0.6670 +10721 201973 0.5810 +10721 221150 0.4220 +10721 259266 0.5330 +10721 348654 0.4740 +10721 353497 0.5120 +10723 22948 0.4660 +10723 26355 0.4030 +10723 27347 0.6740 +10723 50834 0.4320 +10723 57282 0.4330 +10723 57835 0.4860 +10723 65125 0.5680 +10723 65266 0.5700 +10723 65267 0.6460 +10723 65268 0.4210 +10723 79888 0.4090 +10723 84246 0.4300 +10723 84708 0.4310 +10723 157378 0.4080 +10723 654346 0.6840 +10724 22906 0.5780 +10724 23235 0.4220 +10724 23373 0.5280 +10724 23636 0.4140 +10724 25942 0.4350 +10724 29110 0.4220 +10724 51110 0.4850 +10724 54790 0.5030 +10724 55577 0.4020 +10724 64841 0.5120 +10724 80114 0.4530 +10724 80312 0.4980 +10724 117194 0.5820 +10724 170954 0.4480 +10724 200186 0.6900 +10724 284004 0.5670 +10724 285203 0.5800 +10724 338872 0.4200 +10724 440387 0.4160 +10725 23215 0.4890 +10725 50943 0.5050 +10725 57551 0.4210 +10725 58508 0.6800 +10725 63924 0.5290 +10725 80777 0.4690 +10725 80824 0.4610 +10725 91860 0.4220 +10725 134285 0.4730 +10725 221037 0.4510 +10725 257218 0.4590 +10726 10728 0.8630 +10726 10856 0.5500 +10726 10910 0.4100 +10726 10963 0.5530 +10726 11004 0.8400 +10726 11130 0.8180 +10726 11140 0.4630 +10726 11184 0.4220 +10726 11243 0.5080 +10726 22827 0.5610 +10726 22919 0.8150 +10726 22948 0.7150 +10726 23122 0.8890 +10726 23215 0.4200 +10726 23279 0.5130 +10726 23291 0.7560 +10726 23332 0.8380 +10726 23421 0.5100 +10726 25790 0.4220 +10726 25909 0.8050 +10726 25914 0.4180 +10726 25936 0.5070 +10726 26100 0.5970 +10726 26973 0.5640 +10726 27101 0.4890 +10726 27436 0.6520 +10726 51143 0.7320 +10726 51400 0.4920 +10726 51637 0.4250 +10726 54820 0.9410 +10726 54821 0.8080 +10726 54908 0.8010 +10726 54998 0.4330 +10726 55011 0.7150 +10726 55055 0.5990 +10726 55143 0.6090 +10726 55166 0.6240 +10726 55577 0.4100 +10726 55746 0.5500 +10726 55839 0.5150 +10726 55920 0.8450 +10726 57082 0.5410 +10726 57122 0.5150 +10726 57405 0.5270 +10726 57551 0.8010 +10726 64105 0.5060 +10726 64946 0.5170 +10726 79003 0.5010 +10726 79019 0.5130 +10726 79023 0.5380 +10726 79172 0.5730 +10726 79682 0.7170 +10726 79902 0.6790 +10726 79980 0.5910 +10726 80152 0.5530 +10726 80776 0.8080 +10726 81490 0.4800 +10726 81565 0.9400 +10726 81929 0.5500 +10726 81930 0.8300 +10726 83540 0.5520 +10726 83594 0.5370 +10726 83658 0.4460 +10726 84643 0.8450 +10726 84955 0.8120 +10726 91687 0.4990 +10726 116092 0.4450 +10726 134492 0.7330 +10726 140735 0.6870 +10726 147841 0.5610 +10726 151246 0.8340 +10726 151648 0.8880 +10726 153241 0.4480 +10726 220134 0.8000 +10726 282809 0.4260 +10726 348235 0.8210 +10726 348995 0.5680 +10726 378708 0.5420 +10726 401541 0.5510 +10726 728637 0.4110 +10728 10808 0.4890 +10728 10856 0.8150 +10728 10910 0.6680 +10728 10923 0.4380 +10728 10963 0.9960 +10728 10971 0.4440 +10728 11140 0.9970 +10728 11258 0.4010 +10728 22924 0.4470 +10728 22948 0.9380 +10728 23234 0.9110 +10728 23293 0.5880 +10728 23341 0.4200 +10728 23381 0.5460 +10728 23386 0.8020 +10728 23640 0.4530 +10728 23746 0.4710 +10728 23753 0.7200 +10728 23770 0.7340 +10728 25980 0.5140 +10728 26135 0.4060 +10728 26353 0.7750 +10728 26973 0.5480 +10728 27069 0.4430 +10728 27101 0.5920 +10728 27161 0.4390 +10728 27306 0.9440 +10728 51143 0.4350 +10728 51164 0.4500 +10728 51398 0.5430 +10728 51726 0.7640 +10728 51773 0.5530 +10728 54433 0.9020 +10728 54552 0.7450 +10728 54583 0.7830 +10728 55011 0.8030 +10728 55135 0.9200 +10728 55172 0.8020 +10728 55226 0.7260 +10728 55505 0.9150 +10728 55651 0.9200 +10728 55664 0.8400 +10728 55860 0.4720 +10728 55898 0.4730 +10728 56984 0.9030 +10728 57003 0.5540 +10728 57092 0.5570 +10728 63943 0.4100 +10728 79139 0.4720 +10728 79657 0.8760 +10728 80142 0.9930 +10728 81570 0.4830 +10728 81572 0.6760 +10728 84516 0.4160 +10728 93661 0.4160 +10728 96459 0.4170 +10728 116143 0.6070 +10728 120379 0.6860 +10728 134353 0.7200 +10728 134492 0.6040 +10728 140735 0.4190 +10728 146862 0.4640 +10728 150160 0.5940 +10728 161582 0.5510 +10728 342538 0.8910 +10728 374407 0.4990 +10728 646817 0.4240 +10730 10845 0.9630 +10730 10939 0.5230 +10730 10953 0.4590 +10730 10989 0.6360 +10730 11222 0.5440 +10730 11331 0.8410 +10730 22931 0.4900 +10730 22984 0.5570 +10730 23195 0.4370 +10730 23203 0.5310 +10730 23410 0.4670 +10730 23431 0.4540 +10730 23521 0.5590 +10730 23640 0.4480 +10730 23761 0.4060 +10730 24140 0.4960 +10730 25813 0.5960 +10730 26515 0.4770 +10730 26517 0.4420 +10730 26519 0.5950 +10730 26520 0.6380 +10730 27166 0.5330 +10730 27429 0.5580 +10730 28998 0.5690 +10730 29093 0.5120 +10730 29103 0.4810 +10730 29927 0.4300 +10730 29928 0.4340 +10730 29960 0.5010 +10730 30968 0.8570 +10730 50945 0.5940 +10730 51021 0.6140 +10730 51023 0.4700 +10730 51024 0.7000 +10730 51056 0.4180 +10730 51069 0.5170 +10730 51073 0.4440 +10730 51079 0.9940 +10730 51081 0.5760 +10730 51149 0.4670 +10730 51154 0.4700 +10730 51264 0.6490 +10730 51300 0.9940 +10730 51360 0.4460 +10730 54059 0.5820 +10730 54205 0.6780 +10730 54471 0.5900 +10730 54708 0.4540 +10730 54788 0.4910 +10730 54802 0.4880 +10730 54927 0.5110 +10730 55052 0.5170 +10730 55157 0.4900 +10730 55168 0.5560 +10730 55173 0.5200 +10730 55272 0.5360 +10730 55316 0.5020 +10730 55486 0.9510 +10730 55669 0.7060 +10730 56910 0.4350 +10730 56947 0.6180 +10730 56952 0.6280 +10730 56993 0.4720 +10730 60558 0.5120 +10730 63875 0.6340 +10730 63931 0.5020 +10730 64087 0.4350 +10730 64374 0.4130 +10730 64960 0.4740 +10730 64963 0.5130 +10730 64965 0.5890 +10730 64969 0.5820 +10730 64979 0.6350 +10730 65005 0.5550 +10730 65018 0.5700 +10730 79590 0.4260 +10730 80207 0.5190 +10730 80273 0.7510 +10730 81570 0.8260 +10730 83538 0.4080 +10730 83752 0.6850 +10730 84233 0.4410 +10730 84273 0.4380 +10730 84275 0.4480 +10730 84749 0.4100 +10730 87178 0.4250 +10730 91419 0.5620 +10730 91689 0.5070 +10730 92399 0.6800 +10730 92609 0.4270 +10730 115209 0.9400 +10730 117246 0.4990 +10730 125170 0.5820 +10730 126328 0.6510 +10730 126402 0.4680 +10730 130752 0.4260 +10730 131118 0.5810 +10730 131474 0.4440 +10730 139322 0.4780 +10730 140823 0.4840 +10730 158248 0.4430 +10730 161003 0.4900 +10730 165721 0.4620 +10730 192111 0.4360 +10730 219927 0.5410 +10730 246269 0.5500 +10730 400916 0.4760 +10730 548645 0.4110 +10730 100287932 0.5800 +10730 100526842 0.5150 +10732 55131 0.5080 +10732 283385 0.4500 +10733 10744 0.4080 +10733 10807 0.4820 +10733 10926 0.6580 +10733 11004 0.7820 +10733 11064 0.4770 +10733 11065 0.4740 +10733 11130 0.5570 +10733 11169 0.5540 +10733 11190 0.6120 +10733 11200 0.5260 +10733 11329 0.5090 +10733 11339 0.5870 +10733 22897 0.6360 +10733 22974 0.7390 +10733 22981 0.4370 +10733 22994 0.7280 +10733 22995 0.9990 +10733 23012 0.5690 +10733 23141 0.4170 +10733 23291 0.6890 +10733 23310 0.4420 +10733 23354 0.5180 +10733 23397 0.6720 +10733 23594 0.4040 +10733 23649 0.4640 +10733 24137 0.6640 +10733 25886 0.6880 +10733 25914 0.4400 +10733 26040 0.4850 +10733 26271 0.7850 +10733 27127 0.5670 +10733 27152 0.4890 +10733 27165 0.4890 +10733 27229 0.5410 +10733 29028 0.6990 +10733 29127 0.7930 +10733 29922 0.4120 +10733 29980 0.4060 +10733 51134 0.4110 +10733 51174 0.4610 +10733 51175 0.6190 +10733 51199 0.5880 +10733 51203 0.8220 +10733 51343 0.4450 +10733 51512 0.4840 +10733 51514 0.4740 +10733 51659 0.4340 +10733 54443 0.6170 +10733 54461 0.7080 +10733 54801 0.7400 +10733 54821 0.5620 +10733 54855 0.9220 +10733 54875 0.8540 +10733 54892 0.5240 +10733 54908 0.4780 +10733 54930 0.5190 +10733 54935 0.5530 +10733 55010 0.6770 +10733 55051 0.5450 +10733 55055 0.5170 +10733 55125 0.9990 +10733 55142 0.5430 +10733 55143 0.5850 +10733 55165 0.8210 +10733 55183 0.4130 +10733 55215 0.7320 +10733 55247 0.4950 +10733 55355 0.7900 +10733 55388 0.7260 +10733 55559 0.5040 +10733 55635 0.5780 +10733 55732 0.5450 +10733 55755 0.6600 +10733 55789 0.6210 +10733 55835 0.9960 +10733 55839 0.6000 +10733 56852 0.4320 +10733 56992 0.8500 +10733 57082 0.6490 +10733 57405 0.4500 +10733 57646 0.4800 +10733 57650 0.5300 +10733 63967 0.4100 +10733 64105 0.4750 +10733 64151 0.8600 +10733 64682 0.7050 +10733 64770 0.5380 +10733 64793 0.7330 +10733 64946 0.5030 +10733 79019 0.5020 +10733 79075 0.4800 +10733 79441 0.5820 +10733 79598 0.5110 +10733 79682 0.6040 +10733 79733 0.5010 +10733 79801 0.5130 +10733 79866 0.7610 +10733 79959 0.6570 +10733 80174 0.5070 +10733 80184 0.6800 +10733 80705 0.4420 +10733 81610 0.5470 +10733 81620 0.5230 +10733 81930 0.7150 +10733 83461 0.4800 +10733 83540 0.8200 +10733 83903 0.4390 +10733 84057 0.5290 +10733 84131 0.4130 +10733 84461 0.4040 +10733 84930 0.4640 +10733 85378 0.6330 +10733 85417 0.4390 +10733 85459 0.7210 +10733 93323 0.6480 +10733 113130 0.5960 +10733 115106 0.5930 +10733 116840 0.6820 +10733 117177 0.5530 +10733 121441 0.8910 +10733 126520 0.7610 +10733 132320 0.4420 +10733 134359 0.5930 +10733 145508 0.4030 +10733 150468 0.7720 +10733 151246 0.5070 +10733 151648 0.5890 +10733 152185 0.5530 +10733 153241 0.6990 +10733 157313 0.5320 +10733 159195 0.5190 +10733 159989 0.6530 +10733 163786 0.9970 +10733 166979 0.4540 +10733 220134 0.7330 +10733 221150 0.5250 +10733 259266 0.8120 +10733 282809 0.5760 +10733 284403 0.5480 +10733 286826 0.5360 +10733 345456 0.6380 +10733 345643 0.4250 +10733 347240 0.5140 +10733 375189 0.6430 +10733 494551 0.4050 +10733 642636 0.4780 +10733 728358 0.5030 +10733 728642 0.6350 +10734 10735 0.9580 +10734 11083 0.5090 +10734 11144 0.4410 +10734 23047 0.7490 +10734 23063 0.5980 +10734 23137 0.6400 +10734 23224 0.5110 +10734 23244 0.8580 +10734 23345 0.5110 +10734 23353 0.7170 +10734 23383 0.5080 +10734 23626 0.7280 +10734 25777 0.5880 +10734 25836 0.8660 +10734 25913 0.5140 +10734 26277 0.5440 +10734 27127 0.9990 +10734 29893 0.5360 +10734 50511 0.9210 +10734 54145 0.5290 +10734 54386 0.4990 +10734 54545 0.4240 +10734 55766 0.5220 +10734 56154 0.4470 +10734 56158 0.7820 +10734 56159 0.5770 +10734 56478 0.4640 +10734 56979 0.5340 +10734 79677 0.7160 +10734 79983 0.4570 +10734 84072 0.7510 +10734 84515 0.6940 +10734 85236 0.5310 +10734 93426 0.9100 +10734 94239 0.5230 +10734 113130 0.4380 +10734 114799 0.5690 +10734 128312 0.5310 +10734 130951 0.5840 +10734 135935 0.6010 +10734 140690 0.5630 +10734 144132 0.4590 +10734 145645 0.4880 +10734 147872 0.4530 +10734 150280 0.6910 +10734 150365 0.5440 +10734 151246 0.9630 +10734 151648 0.6070 +10734 157570 0.6840 +10734 158401 0.5800 +10734 164045 0.6380 +10734 196483 0.4290 +10734 254394 0.6750 +10734 254528 0.6620 +10734 255626 0.5290 +10734 256006 0.4150 +10734 256126 0.8510 +10734 283129 0.5130 +10734 283677 0.4610 +10734 283847 0.6420 +10734 285498 0.4330 +10734 317761 0.4050 +10734 339834 0.4710 +10734 342850 0.4900 +10734 344018 0.6690 +10734 346673 0.4700 +10734 402381 0.4180 +10734 474382 0.5220 +10734 642636 0.9990 +10734 644186 0.8040 +10735 10776 0.4760 +10735 11004 0.4770 +10735 11083 0.5210 +10735 23047 0.9960 +10735 23063 0.9970 +10735 23137 0.7840 +10735 23224 0.5090 +10735 23244 0.9990 +10735 23332 0.4710 +10735 23345 0.5610 +10735 23353 0.5850 +10735 23369 0.5530 +10735 23383 0.8270 +10735 23451 0.4690 +10735 23476 0.4930 +10735 23512 0.4180 +10735 23528 0.4220 +10735 25777 0.5590 +10735 25836 0.9820 +10735 25913 0.5450 +10735 26036 0.4880 +10735 26040 0.6880 +10735 26277 0.5910 +10735 26740 0.5980 +10735 27127 0.9970 +10735 29072 0.5390 +10735 29101 0.4160 +10735 50511 0.6540 +10735 51428 0.4130 +10735 54145 0.5390 +10735 54386 0.5210 +10735 54780 0.4130 +10735 54790 0.7170 +10735 55193 0.5120 +10735 55252 0.4590 +10735 55294 0.4010 +10735 55500 0.4480 +10735 55766 0.5220 +10735 55844 0.4320 +10735 55869 0.6810 +10735 56158 0.5240 +10735 56160 0.4420 +10735 57187 0.4390 +10735 58508 0.4620 +10735 63035 0.6700 +10735 63922 0.4580 +10735 79677 0.7660 +10735 79849 0.4330 +10735 84295 0.7390 +10735 84930 0.4760 +10735 85236 0.5380 +10735 93426 0.5590 +10735 94239 0.5290 +10735 113130 0.9770 +10735 114799 0.8390 +10735 128312 0.5390 +10735 140690 0.8400 +10735 151246 0.9810 +10735 151648 0.9510 +10735 157570 0.8410 +10735 171023 0.7710 +10735 196528 0.5060 +10735 197370 0.4210 +10735 254786 0.5810 +10735 255626 0.5380 +10735 256126 0.6030 +10735 286053 0.5740 +10735 341416 0.6950 +10735 474382 0.5220 +10735 642636 0.9780 +10735 644186 0.5650 +10735 653604 0.6720 +10736 11346 0.4020 +10736 29843 0.4370 +10736 51176 0.4290 +10736 54361 0.6430 +10736 56033 0.4050 +10736 60529 0.4010 +10736 79191 0.4480 +10736 116039 0.4150 +10736 130497 0.4160 +10736 139285 0.4800 +10736 144233 0.4270 +10738 10739 0.7420 +10738 11011 0.4630 +10738 54529 0.5970 +10738 65121 0.4710 +10738 65122 0.4510 +10738 153090 0.4780 +10738 282775 0.4100 +10738 390999 0.4980 +10738 400736 0.5840 +10738 440560 0.5940 +10739 22847 0.4480 +10739 23239 0.4620 +10739 54468 0.4240 +10739 65121 0.6400 +10739 65122 0.5460 +10739 79097 0.4750 +10739 80759 0.4760 +10739 84942 0.4250 +10739 116412 0.4340 +10739 125997 0.5180 +10739 201516 0.5390 +10739 342900 0.4310 +10739 343070 0.4940 +10739 390999 0.5460 +10739 400736 0.5690 +10739 440560 0.5510 +10739 441873 0.5180 +10739 653619 0.4920 +10739 100129128 0.4780 +10739 100288687 0.4520 +10741 10904 0.5320 +10741 11313 0.5140 +10741 26007 0.4250 +10741 26999 0.5110 +10741 27131 0.4100 +10741 51104 0.5480 +10741 51400 0.6860 +10741 55184 0.5330 +10741 57325 0.4910 +10741 57419 0.4870 +10741 57552 0.4400 +10741 58510 0.4310 +10741 79693 0.9010 +10741 81926 0.4530 +10741 92675 0.4080 +10741 140836 0.4240 +10741 728361 0.4060 +10742 54557 0.6140 +10742 55789 0.4480 +10742 92255 0.4780 +10742 139105 0.4120 +10742 445815 0.4220 +10743 51759 0.4350 +10743 55255 0.7060 +10743 140775 0.4390 +10743 203228 0.4480 +10744 11004 0.6010 +10744 11065 0.7610 +10744 11123 0.4290 +10744 22974 0.4260 +10744 23063 0.4510 +10744 23235 0.4260 +10744 25847 0.7790 +10744 25906 0.5800 +10744 26271 0.6750 +10744 27338 0.6320 +10744 29127 0.4260 +10744 29882 0.7160 +10744 29945 0.7100 +10744 51343 0.7280 +10744 51433 0.8190 +10744 51434 0.6720 +10744 51529 0.6510 +10744 55055 0.4750 +10744 55143 0.7810 +10744 57082 0.5450 +10744 64682 0.7480 +10744 79004 0.4290 +10744 79142 0.4240 +10744 79935 0.4930 +10744 81620 0.4020 +10744 81669 0.7500 +10744 83461 0.6610 +10744 83540 0.5220 +10744 84101 0.4180 +10744 84930 0.4770 +10744 85417 0.5900 +10744 119504 0.4350 +10744 131544 0.4330 +10744 151246 0.4820 +10744 151648 0.8220 +10744 157570 0.4650 +10744 166979 0.6900 +10744 246184 0.7860 +10744 286151 0.5500 +10744 387103 0.4830 +10744 440093 0.4570 +10744 440686 0.4810 +10744 653604 0.4820 +10745 10943 0.5000 +10745 23587 0.4750 +10745 23761 0.4400 +10745 26191 0.6440 +10745 30001 0.4130 +10745 51122 0.4930 +10745 54665 0.8720 +10745 54823 0.5090 +10745 55577 0.4280 +10745 57157 0.6280 +10745 64858 0.5120 +10745 84109 0.4210 +10745 165829 0.4810 +10745 205860 0.4760 +10745 260425 0.7670 +10745 440603 0.6540 +10745 645864 0.4320 +10746 10971 0.6650 +10746 11329 0.5810 +10746 23012 0.5620 +10746 55233 0.4300 +10746 56950 0.4620 +10746 57154 0.7480 +10746 64754 0.9820 +10746 79442 0.4100 +10746 150572 0.4340 +10746 339761 0.4540 +10746 390714 0.4390 +10747 10877 0.4480 +10747 10878 0.4420 +10747 11093 0.4040 +10747 27202 0.4550 +10747 27429 0.5510 +10747 59272 0.4590 +10747 78989 0.9680 +10747 79841 0.6730 +10747 81494 0.5770 +10747 126353 0.6220 +10747 160364 0.6630 +10747 390714 0.4860 +10749 10908 0.5160 +10749 10939 0.4090 +10749 11004 0.6040 +10749 11099 0.9280 +10749 11127 0.6090 +10749 11154 0.4530 +10749 11160 0.4600 +10749 22920 0.6850 +10749 23046 0.6260 +10749 23095 0.8560 +10749 23259 0.4290 +10749 23299 0.5160 +10749 23303 0.7860 +10749 23431 0.4400 +10749 23503 0.4430 +10749 24137 0.5190 +10749 25782 0.4090 +10749 25923 0.4260 +10749 26128 0.9100 +10749 26153 0.5900 +10749 26286 0.5170 +10749 29127 0.4360 +10749 51062 0.5730 +10749 51308 0.5260 +10749 51324 0.4860 +10749 51479 0.8600 +10749 51594 0.5040 +10749 53407 0.5040 +10749 54820 0.5790 +10749 55083 0.5860 +10749 55582 0.6000 +10749 55605 0.6450 +10749 55614 0.6070 +10749 55738 0.5330 +10749 55850 0.5110 +10749 56992 0.6430 +10749 57576 0.6130 +10749 57704 0.5290 +10749 60561 0.6190 +10749 63971 0.6080 +10749 64837 0.7670 +10749 65055 0.6380 +10749 79152 0.4030 +10749 80055 0.4180 +10749 80208 0.4370 +10749 80821 0.4190 +10749 81565 0.5980 +10749 81930 0.6350 +10749 84364 0.5060 +10749 84376 0.8460 +10749 84643 0.5730 +10749 89953 0.5610 +10749 90990 0.6200 +10749 92558 0.7910 +10749 123606 0.4160 +10749 124602 0.6000 +10749 137492 0.4090 +10749 140735 0.4190 +10749 146909 0.5820 +10749 147700 0.6260 +10749 221458 0.5910 +10749 285643 0.5180 +10749 374654 0.6040 +10749 100532724 0.4090 +10750 10920 0.5440 +10750 10980 0.5620 +10750 10987 0.5600 +10750 11184 0.6880 +10750 25780 0.4510 +10750 25842 0.4160 +10750 25930 0.4290 +10750 27040 0.9390 +10750 50813 0.5610 +10750 51052 0.5820 +10750 51138 0.5470 +10750 51372 0.4200 +10750 53347 0.6260 +10750 54535 0.4510 +10750 54923 0.7670 +10750 57794 0.4200 +10750 58513 0.4560 +10750 64708 0.6620 +10750 65244 0.4470 +10750 79930 0.4200 +10750 80774 0.6380 +10750 115727 0.4190 +10750 150678 0.5400 +10750 387357 0.6880 +10752 23621 0.4570 +10752 27255 0.9840 +10752 53942 0.6740 +10752 85445 0.7330 +10752 152330 0.4990 +10753 23551 0.4620 +10753 26115 0.4590 +10753 27295 0.4930 +10753 55743 0.4040 +10753 56287 0.9450 +10753 56603 0.4090 +10753 57709 0.4140 +10753 64420 0.5290 +10753 80067 0.4210 +10753 80157 0.5100 +10753 84290 0.6630 +10753 116285 0.4570 +10753 136332 0.4500 +10753 154091 0.4440 +10753 388743 0.5530 +10755 22853 0.4790 +10755 22918 0.7980 +10755 23011 0.5530 +10755 23095 0.5880 +10755 23129 0.8690 +10755 23365 0.8740 +10755 23677 0.7460 +10755 25843 0.4550 +10755 26060 0.9770 +10755 26575 0.4430 +10755 29888 0.4450 +10755 29966 0.4460 +10755 29967 0.5290 +10755 30851 0.9340 +10755 51399 0.6140 +10755 54810 0.6310 +10755 54910 0.4130 +10755 55198 0.6160 +10755 55200 0.4230 +10755 79828 0.6260 +10755 81609 0.5160 +10755 84687 0.4810 +10755 127833 0.4800 +10755 146691 0.4030 +10755 260425 0.4300 +10755 343521 0.5180 +10755 388677 0.4490 +10755 100996717 0.5830 +10758 23475 0.4500 +10758 23765 0.9760 +10758 27189 0.4160 +10758 51135 0.4390 +10758 51752 0.5840 +10758 55253 0.4560 +10758 55540 0.7550 +10758 55905 0.5530 +10758 64332 0.6160 +10758 64806 0.4480 +10758 79092 0.6460 +10758 84818 0.8650 +10758 112744 0.5060 +10758 115650 0.4800 +10758 132014 0.4480 +10758 149233 0.5820 +10758 163702 0.4390 +10758 353143 0.5990 +10758 353144 0.5800 +10761 10902 0.7860 +10761 10933 0.6870 +10761 22917 0.4910 +10761 26122 0.7850 +10761 27097 0.4450 +10761 54556 0.7800 +10761 54799 0.7830 +10761 55257 0.4260 +10761 55578 0.6200 +10761 55929 0.7770 +10761 57634 0.7840 +10761 60676 0.4390 +10761 64769 0.7810 +10761 80314 0.7790 +10761 80712 0.4470 +10761 84295 0.4940 +10761 117143 0.7760 +10761 159090 0.4050 +10762 10783 0.4200 +10762 10898 0.4660 +10762 10921 0.5640 +10762 11097 0.8960 +10762 11169 0.5430 +10762 11218 0.4350 +10762 11260 0.5620 +10762 11338 0.5620 +10762 22794 0.5170 +10762 22824 0.4330 +10762 22916 0.6650 +10762 23165 0.9560 +10762 23225 0.9510 +10762 23279 0.9360 +10762 23435 0.4400 +10762 23511 0.9430 +10762 23534 0.4130 +10762 23592 0.4320 +10762 23633 0.8600 +10762 23636 0.9590 +10762 25909 0.8920 +10762 25929 0.4750 +10762 26097 0.4660 +10762 27161 0.4190 +10762 29107 0.6400 +10762 29117 0.7390 +10762 29894 0.4570 +10762 50628 0.4160 +10762 51182 0.5270 +10762 51362 0.4270 +10762 51501 0.4220 +10762 51692 0.4860 +10762 51759 0.4060 +10762 51808 0.4880 +10762 53371 0.9260 +10762 53981 0.6160 +10762 54830 0.5320 +10762 55110 0.5740 +10762 55143 0.4900 +10762 55193 0.7170 +10762 55274 0.6280 +10762 55339 0.4490 +10762 55706 0.8870 +10762 55746 0.9560 +10762 55975 0.4300 +10762 57122 0.9750 +10762 57187 0.5670 +10762 57727 0.5880 +10762 64708 0.4250 +10762 65109 0.5310 +10762 79023 0.8880 +10762 79228 0.4150 +10762 79760 0.4100 +10762 79833 0.4110 +10762 79892 0.4190 +10762 79902 0.9780 +10762 80145 0.4100 +10762 81608 0.4740 +10762 81929 0.9630 +10762 84248 0.4320 +10762 84271 0.5460 +10762 84321 0.4080 +10762 84324 0.4550 +10762 91754 0.4470 +10762 116835 0.4100 +10762 129401 0.9660 +10762 140609 0.4100 +10762 146909 0.4170 +10762 157313 0.8060 +10762 196528 0.7200 +10762 199746 0.4360 +10762 259217 0.4100 +10762 259282 0.6260 +10762 283383 0.6010 +10762 339745 0.4250 +10762 348995 0.9840 +10762 402569 0.4410 +10762 728343 0.5310 +10762 729857 0.7720 +10762 100101267 0.6940 +10763 10840 0.4860 +10763 22943 0.4210 +10763 23314 0.5290 +10763 23336 0.9490 +10763 23607 0.4510 +10763 26281 0.5820 +10763 27006 0.5940 +10763 27022 0.4250 +10763 29109 0.6100 +10763 50674 0.5000 +10763 54361 0.4050 +10763 57030 0.5560 +10763 57084 0.4030 +10763 57716 0.4080 +10763 63973 0.6320 +10763 64321 0.6730 +10763 64919 0.5820 +10763 79727 0.5330 +10763 79923 0.8250 +10763 80012 0.4720 +10763 80206 0.6660 +10763 81493 0.5350 +10763 81887 0.4240 +10763 83881 0.4240 +10763 84504 0.6710 +10763 89780 0.4330 +10763 89970 0.4060 +10763 91010 0.4520 +10763 116448 0.6580 +10763 121340 0.4940 +10763 129831 0.7490 +10763 132625 0.4480 +10763 137902 0.6240 +10763 146713 0.9320 +10763 222894 0.4010 +10763 338917 0.4790 +10763 340273 0.4260 +10763 387755 0.4350 +10763 388585 0.5830 +10763 440093 0.5130 +10763 440686 0.5380 +10763 653604 0.5400 +10763 100133941 0.5430 +10763 100532731 0.6200 +10765 10865 0.4820 +10765 10919 0.7460 +10765 10933 0.6280 +10765 11091 0.4250 +10765 11128 0.4760 +10765 11212 0.4470 +10765 11222 0.4180 +10765 11224 0.4990 +10765 11335 0.7260 +10765 22984 0.4740 +10765 22992 0.6080 +10765 23028 0.9880 +10765 23030 0.4170 +10765 23067 0.5450 +10765 23133 0.5850 +10765 23135 0.6950 +10765 23186 0.9010 +10765 23210 0.4480 +10765 23389 0.4600 +10765 23476 0.4910 +10765 23512 0.5860 +10765 23640 0.4270 +10765 25803 0.5360 +10765 25885 0.4740 +10765 25942 0.6490 +10765 26097 0.4670 +10765 29072 0.7040 +10765 29093 0.4350 +10765 29123 0.4880 +10765 29927 0.4660 +10765 51069 0.4330 +10765 51081 0.4330 +10765 51111 0.4410 +10765 51154 0.4680 +10765 51564 0.4620 +10765 51780 0.6170 +10765 54948 0.4270 +10765 55028 0.4580 +10765 55138 0.5960 +10765 55176 0.4750 +10765 55272 0.4750 +10765 55316 0.4180 +10765 55703 0.4430 +10765 55818 0.6810 +10765 55870 0.5710 +10765 55904 0.5120 +10765 56950 0.4390 +10765 57492 0.4500 +10765 57680 0.4540 +10765 63875 0.4500 +10765 63931 0.4190 +10765 64324 0.5010 +10765 64374 0.4270 +10765 64754 0.5220 +10765 64963 0.4630 +10765 64969 0.4910 +10765 65008 0.4490 +10765 79142 0.5820 +10765 79631 0.4460 +10765 79697 0.4810 +10765 79723 0.4760 +10765 79813 0.5500 +10765 79823 0.4170 +10765 79831 0.4860 +10765 80312 0.4420 +10765 80853 0.6230 +10765 80854 0.4770 +10765 83852 0.4590 +10765 84172 0.4420 +10765 84444 0.4560 +10765 84678 0.6560 +10765 84833 0.6140 +10765 85359 0.4380 +10765 85476 0.4470 +10765 112398 0.4510 +10765 126402 0.4330 +10765 140690 0.5110 +10765 140801 0.4270 +10765 221037 0.5510 +10765 221656 0.6240 +10765 267020 0.5850 +10765 340273 0.5250 +10765 387893 0.5060 +10765 440093 0.7040 +10765 440686 0.7040 +10765 653604 0.8150 +10765 100526842 0.4350 +10766 22849 0.5480 +10766 26986 0.8270 +10766 29883 0.9690 +10766 55571 0.6510 +10766 83858 0.5720 +10766 122060 0.4900 +10766 158787 0.7770 +10766 246175 0.7010 +10766 339345 0.7480 +10767 10923 0.4020 +10767 10952 0.8250 +10767 10973 0.4540 +10767 11224 0.8600 +10767 11340 0.9970 +10767 22894 0.9470 +10767 22980 0.5380 +10767 23016 0.9910 +10767 23049 0.8360 +10767 23173 0.4900 +10767 23293 0.5340 +10767 23381 0.5070 +10767 23404 0.9830 +10767 23432 0.5820 +10767 23517 0.6710 +10767 23521 0.8590 +10767 23567 0.8250 +10767 25852 0.5310 +10767 25873 0.8600 +10767 26009 0.5500 +10767 26019 0.9140 +10767 26046 0.8340 +10767 26058 0.4840 +10767 26135 0.5090 +10767 26986 0.6480 +10767 27115 0.4220 +10767 29889 0.4790 +10767 51010 0.9910 +10767 51013 0.9910 +10767 51095 0.6230 +10767 51225 0.5990 +10767 51319 0.6000 +10767 53335 0.8940 +10767 53918 0.9990 +10767 54464 0.7760 +10767 54512 0.9820 +10767 54676 0.6420 +10767 54806 0.4940 +10767 54861 0.4010 +10767 55139 0.5740 +10767 55181 0.4730 +10767 55239 0.4020 +10767 55554 0.5730 +10767 55667 0.4540 +10767 56006 0.4820 +10767 56915 0.9880 +10767 64577 0.6180 +10767 65109 0.6510 +10767 65110 0.8220 +10767 80349 0.9040 +10767 84186 0.4940 +10767 85441 0.6620 +10767 85476 0.4450 +10767 90850 0.7310 +10767 92399 0.7070 +10767 114987 0.4690 +10767 115752 0.9800 +10767 116254 0.4480 +10767 118460 0.9120 +10767 129563 0.8460 +10767 164656 0.4600 +10767 167227 0.4980 +10767 282763 0.4300 +10767 390937 0.4470 +10768 10993 0.8580 +10768 23071 0.4170 +10768 23135 0.4600 +10768 23382 0.9640 +10768 23743 0.9700 +10768 27232 0.5100 +10768 27347 0.5740 +10768 27430 0.4810 +10768 29968 0.4430 +10768 51535 0.5420 +10768 51805 0.5020 +10768 56267 0.9130 +10768 57136 0.4180 +10768 57282 0.6580 +10768 57698 0.6040 +10768 57835 0.4820 +10768 65010 0.7490 +10768 80114 0.6610 +10768 84076 0.4120 +10768 84955 0.6210 +10768 85369 0.5080 +10768 87178 0.4170 +10768 113675 0.8360 +10768 126119 0.6120 +10768 220965 0.6220 +10768 114483834 0.4990 +10769 10926 0.5410 +10769 11200 0.5200 +10769 23243 0.5520 +10769 23353 0.5940 +10769 23626 0.4240 +10769 27127 0.5950 +10769 27152 0.4880 +10769 27244 0.4170 +10769 51278 0.4030 +10769 51343 0.4750 +10769 54935 0.4760 +10769 55051 0.5780 +10769 55255 0.5800 +10769 55294 0.4950 +10769 55835 0.9310 +10769 57794 0.4180 +10769 64782 0.4290 +10769 64859 0.4680 +10769 65061 0.4180 +10769 79682 0.4030 +10769 79935 0.5770 +10769 80174 0.4930 +10769 85417 0.6140 +10769 91526 0.5290 +10769 124817 0.4720 +10769 163786 0.4020 +10769 166979 0.6020 +10769 221002 0.4040 +10769 266743 0.5820 +10769 285671 0.4410 +10769 286151 0.4650 +10769 494551 0.4130 +10769 642636 0.6580 +10771 10951 0.6160 +10771 11177 0.4080 +10771 11244 0.7700 +10771 22982 0.6040 +10771 23185 0.5020 +10771 23476 0.4640 +10771 27154 0.4290 +10771 29072 0.7070 +10771 54799 0.4770 +10771 55610 0.4360 +10771 55870 0.4340 +10771 55974 0.4050 +10771 56946 0.9200 +10771 57634 0.4980 +10771 93349 0.4040 +10771 126961 0.4610 +10771 340096 0.4310 +10771 391769 0.4290 +10771 440093 0.5730 +10771 440686 0.5600 +10771 653604 0.5680 +10772 10844 0.4390 +10772 10915 0.7420 +10772 10921 0.7070 +10772 10929 0.5850 +10772 10946 0.4370 +10772 10971 0.5690 +10772 11051 0.5030 +10772 11052 0.6990 +10772 11168 0.4660 +10772 11338 0.8630 +10772 22803 0.4050 +10772 22827 0.4160 +10772 22938 0.4620 +10772 23020 0.4920 +10772 23091 0.4940 +10772 23435 0.5210 +10772 23451 0.5180 +10772 24144 0.6430 +10772 25949 0.4040 +10772 25962 0.4800 +10772 26528 0.4750 +10772 27316 0.8540 +10772 27339 0.4820 +10772 29896 0.9530 +10772 30836 0.4060 +10772 51073 0.4350 +10772 51264 0.4320 +10772 51340 0.4310 +10772 51441 0.5820 +10772 51602 0.4450 +10772 51631 0.7400 +10772 51747 0.4330 +10772 54464 0.4410 +10772 54845 0.4940 +10772 54890 0.4780 +10772 54915 0.5580 +10772 55015 0.4330 +10772 55119 0.4030 +10772 55234 0.4570 +10772 55651 0.4650 +10772 55660 0.5660 +10772 55692 0.5450 +10772 55696 0.4260 +10772 56339 0.5280 +10772 57396 0.4060 +10772 57721 0.5950 +10772 58155 0.5910 +10772 58517 0.4400 +10772 64783 0.4220 +10772 64848 0.6530 +10772 65080 0.4030 +10772 79066 0.4870 +10772 79068 0.4560 +10772 79727 0.5630 +10772 79753 0.4780 +10772 81033 0.4120 +10772 83756 0.4220 +10772 84955 0.6240 +10772 91746 0.9810 +10772 124245 0.6250 +10772 135295 0.6410 +10772 140890 0.8500 +10772 143884 0.5520 +10772 158506 0.4240 +10772 220988 0.7180 +10772 221662 0.5040 +10772 253943 0.5530 +10772 284071 0.4130 +10773 22869 0.4220 +10773 23276 0.4250 +10773 23510 0.4480 +10773 57684 0.7170 +10773 81611 0.5150 +10773 140460 0.7910 +10775 10799 0.9990 +10775 10940 0.9990 +10775 10978 0.9040 +10775 11102 0.9990 +10775 11157 0.5810 +10775 23160 0.4290 +10775 23378 0.6060 +10775 23405 0.9110 +10775 25871 0.8380 +10775 26523 0.7220 +10775 27161 0.9010 +10775 27341 0.4270 +10775 28987 0.4030 +10775 29102 0.7640 +10775 51013 0.4510 +10775 51367 0.9990 +10775 51574 0.4560 +10775 51602 0.6060 +10775 54433 0.5470 +10775 54487 0.7200 +10775 54680 0.4090 +10775 54840 0.4570 +10775 54913 0.9990 +10775 54931 0.6620 +10775 55131 0.4300 +10775 55256 0.4600 +10775 55272 0.4320 +10775 55505 0.5970 +10775 55651 0.6130 +10775 64963 0.5330 +10775 65095 0.8660 +10775 79042 0.4510 +10775 79897 0.9990 +10775 80746 0.6060 +10775 81887 0.4210 +10775 83608 0.7980 +10775 83759 0.4830 +10775 92345 0.6670 +10775 138716 0.9870 +10775 192669 0.7200 +10775 192670 0.7200 +10775 283989 0.5730 +10775 342865 0.4370 +10775 345630 0.6030 +10775 102157402 0.4480 +10776 10777 0.8900 +10776 10966 0.4050 +10776 22983 0.4020 +10776 23031 0.6320 +10776 23158 0.4160 +10776 23416 0.4040 +10776 27314 0.4100 +10776 30968 0.4100 +10776 50488 0.9160 +10776 55004 0.4090 +10776 55844 0.9840 +10776 56270 0.4140 +10776 57650 0.4040 +10776 79077 0.4690 +10776 84152 0.7990 +10776 84930 0.9940 +10776 84959 0.4060 +10776 91272 0.4600 +10776 151246 0.5340 +10776 151648 0.5480 +10776 337867 0.4050 +10776 440498 0.4690 +10776 494551 0.4370 +10777 10846 0.4490 +10777 23158 0.4090 +10777 23313 0.4440 +10777 23314 0.4420 +10777 23416 0.4580 +10777 23551 0.4830 +10777 51806 0.4430 +10777 54112 0.4960 +10777 54715 0.4480 +10777 55608 0.4290 +10777 55830 0.4270 +10777 57030 0.4480 +10777 63982 0.5100 +10777 64919 0.5300 +10777 84152 0.8440 +10777 84894 0.4280 +10777 84930 0.4130 +10777 91860 0.4580 +10777 163688 0.4440 +10777 348235 0.4440 +10780 22835 0.5440 +10780 79744 0.5190 +10780 84924 0.4690 +10780 284349 0.5790 +10780 374899 0.4650 +10780 374928 0.4550 +10780 400745 0.4790 +10780 100289635 0.7940 +10781 26683 0.5110 +10781 84527 0.4220 +10781 90933 0.4740 +10781 93349 0.4270 +10781 126661 0.5940 +10782 10898 0.4720 +10782 23347 0.4100 +10782 26009 0.4700 +10782 51185 0.5660 +10782 51659 0.4100 +10782 54432 0.4510 +10782 54551 0.4040 +10782 55339 0.6120 +10782 78992 0.5930 +10783 11097 0.4280 +10783 11198 0.4510 +10783 23165 0.4640 +10783 23225 0.4150 +10783 23279 0.4050 +10783 23299 0.7770 +10783 23511 0.4470 +10783 23636 0.4360 +10783 27130 0.4160 +10783 27436 0.6550 +10783 53371 0.4030 +10783 54550 0.4210 +10783 55706 0.4050 +10783 55746 0.4030 +10783 56956 0.5670 +10783 57122 0.4050 +10783 57519 0.4170 +10783 57706 0.7330 +10783 79023 0.4240 +10783 79902 0.4080 +10783 81554 0.8430 +10783 81929 0.4050 +10783 91754 0.9750 +10783 115703 0.6320 +10783 121441 0.4540 +10783 124401 0.7460 +10783 124565 0.4150 +10783 129401 0.4530 +10783 140609 0.9460 +10783 144132 0.4170 +10783 163486 0.6020 +10783 203245 0.4120 +10783 203286 0.7310 +10783 256364 0.5490 +10783 286204 0.6680 +10783 348995 0.4030 +10783 100101267 0.4030 +10785 10885 0.4280 +10785 11056 0.4070 +10785 11062 0.5020 +10785 11091 0.5900 +10785 11180 0.5880 +10785 11260 0.4840 +10785 22954 0.5100 +10785 22976 0.4610 +10785 23029 0.4400 +10785 23054 0.6150 +10785 23076 0.4730 +10785 23212 0.7420 +10785 23246 0.7960 +10785 23481 0.8130 +10785 23560 0.4250 +10785 24140 0.8220 +10785 25885 0.4750 +10785 26155 0.4550 +10785 26156 0.6010 +10785 26354 0.4130 +10785 26995 0.5240 +10785 27037 0.5090 +10785 27292 0.4410 +10785 28989 0.5120 +10785 29104 0.5690 +10785 29960 0.5390 +10785 51154 0.8000 +10785 51187 0.5150 +10785 51236 0.7900 +10785 51388 0.5760 +10785 51504 0.7370 +10785 51602 0.4830 +10785 51605 0.9090 +10785 54433 0.4100 +10785 54475 0.5920 +10785 54517 0.7710 +10785 54552 0.4510 +10785 54606 0.6990 +10785 54663 0.5400 +10785 54802 0.4760 +10785 54888 0.7940 +10785 54920 0.4760 +10785 54931 0.8460 +10785 55006 0.8640 +10785 55007 0.6290 +10785 55039 0.5690 +10785 55127 0.6730 +10785 55226 0.6410 +10785 55253 0.5050 +10785 55621 0.7360 +10785 55623 0.4380 +10785 55695 0.6190 +10785 55720 0.4460 +10785 55746 0.4720 +10785 55759 0.6260 +10785 55798 0.4270 +10785 56342 0.5130 +10785 56902 0.4220 +10785 56931 0.7200 +10785 57062 0.5950 +10785 57122 0.4680 +10785 57418 0.7010 +10785 57570 0.6560 +10785 57646 0.4080 +10785 57647 0.4770 +10785 58494 0.5490 +10785 58508 0.4360 +10785 60487 0.7670 +10785 63892 0.4220 +10785 63899 0.5750 +10785 64118 0.6110 +10785 64425 0.5010 +10785 64794 0.5690 +10785 65083 0.4870 +10785 79039 0.4240 +10785 79447 0.5170 +10785 79571 0.4050 +10785 79693 0.4950 +10785 79711 0.4260 +10785 79730 0.4810 +10785 80324 0.9100 +10785 81627 0.4820 +10785 81890 0.4560 +10785 83448 0.5810 +10785 83480 0.8100 +10785 83743 0.7120 +10785 84172 0.4560 +10785 84661 0.5150 +10785 84916 0.4290 +10785 84942 0.6620 +10785 90353 0.6380 +10785 91801 0.5210 +10785 92856 0.4070 +10785 93587 0.8360 +10785 112858 0.6530 +10785 113179 0.7600 +10785 115708 0.9670 +10785 115939 0.4170 +10785 117246 0.7970 +10785 126789 0.6750 +10785 127253 0.4360 +10785 134637 0.6580 +10785 142940 0.7240 +10785 144233 0.4030 +10785 152992 0.6070 +10785 155368 0.4600 +10785 158234 0.7170 +10785 161424 0.6460 +10785 221078 0.5710 +10785 348180 0.5000 +10785 387338 0.5400 +10785 399818 0.4240 +10785 692312 0.4200 +10786 10864 0.4930 +10786 55244 0.4450 +10786 55315 0.4020 +10786 55604 0.5730 +10786 55867 0.8180 +10786 56606 0.8230 +10786 64849 0.4820 +10786 80724 0.4320 +10786 94026 0.4440 +10786 114571 0.6320 +10786 116085 0.8330 +10786 148811 0.4800 +10786 159963 0.5020 +10786 160728 0.4120 +10786 220963 0.7140 +10786 283450 0.4480 +10786 340024 0.4070 +10787 10810 0.9990 +10787 11135 0.4160 +10787 11155 0.5400 +10787 11222 0.4150 +10787 23001 0.4030 +10787 23036 0.4490 +10787 23075 0.4840 +10787 23112 0.5030 +10787 23191 0.9990 +10787 23301 0.6060 +10787 23384 0.5400 +10787 23389 0.4070 +10787 23394 0.5430 +10787 23580 0.4720 +10787 23607 0.5630 +10787 23624 0.6240 +10787 26030 0.4060 +10787 26999 0.9990 +10787 27295 0.5700 +10787 27328 0.5210 +10787 28964 0.4980 +10787 29964 0.5400 +10787 30837 0.4320 +10787 51225 0.9880 +10787 51347 0.4350 +10787 51454 0.4640 +10787 51517 0.5760 +10787 51763 0.4290 +10787 53904 0.5510 +10787 54869 0.4460 +10787 54874 0.4330 +10787 55297 0.4250 +10787 55604 0.5480 +10787 55740 0.4100 +10787 55789 0.4100 +10787 55845 0.9990 +10787 55914 0.4730 +10787 55971 0.4210 +10787 56623 0.4290 +10787 56940 0.5400 +10787 57148 0.4880 +10787 57224 0.6990 +10787 57526 0.5930 +10787 57575 0.8790 +10787 57624 0.4210 +10787 57648 0.6280 +10787 63916 0.7140 +10787 64236 0.5630 +10787 79658 0.4420 +10787 80007 0.5480 +10787 80816 0.4730 +10787 81624 0.5560 +10787 81839 0.4130 +10787 81873 0.6930 +10787 83700 0.5510 +10787 83715 0.5410 +10787 84959 0.4250 +10787 91544 0.4220 +10787 92521 0.5430 +10787 94086 0.4300 +10787 94134 0.4980 +10787 114336 0.6020 +10787 115703 0.4330 +10787 118472 0.6240 +10787 122809 0.4330 +10787 143098 0.4390 +10787 147179 0.5400 +10787 155185 0.4740 +10787 219537 0.5400 +10787 222950 0.4430 +10787 254102 0.5480 +10787 285527 0.4400 +10787 340527 0.7710 +10787 342527 0.5400 +10787 390714 0.4990 +10787 445582 0.4900 +10787 644150 0.5420 +10788 11215 0.8900 +10788 22989 0.4190 +10788 23075 0.4510 +10788 23191 0.4200 +10788 25894 0.4160 +10788 26030 0.4090 +10788 26286 0.4440 +10788 51806 0.9190 +10788 55004 0.4210 +10788 55789 0.4080 +10788 55914 0.4710 +10788 57514 0.4320 +10788 63916 0.4010 +10788 80005 0.4100 +10788 81624 0.4690 +10788 81839 0.4100 +10788 84131 0.4040 +10788 91860 0.8950 +10788 128239 0.9320 +10788 143098 0.4160 +10788 163688 0.8920 +10788 255738 0.4140 +10791 11311 0.5620 +10791 23256 0.6510 +10791 23504 0.4160 +10791 23673 0.6260 +10791 26984 0.4120 +10791 27072 0.4880 +10791 51255 0.4760 +10791 51272 0.5690 +10791 51594 0.5170 +10791 53407 0.5870 +10791 55014 0.4390 +10791 55850 0.6460 +10791 57189 0.4440 +10791 63908 0.6900 +10791 64601 0.4910 +10791 90019 0.4430 +10791 112755 0.5700 +10791 115362 0.4930 +10791 116841 0.7060 +10791 143187 0.7050 +10791 152579 0.4230 +10791 415117 0.6600 +10793 64776 0.4450 +10793 147664 0.4380 +10793 171392 0.6370 +10793 286075 0.6590 +10794 55111 0.4180 +10794 55175 0.4130 +10794 57515 0.5430 +10794 80311 0.4130 +10794 246175 0.4680 +10794 285605 0.4470 +10795 55425 0.4610 +10795 79088 0.5380 +10795 79230 0.4880 +10795 84307 0.4590 +10795 148003 0.4190 +10795 255308 0.4120 +10797 10840 0.9550 +10797 10841 0.9900 +10797 22809 0.4490 +10797 22934 0.5280 +10797 23070 0.4170 +10797 23382 0.4610 +10797 23397 0.5140 +10797 23594 0.4560 +10797 23743 0.7310 +10797 25902 0.9900 +10797 26227 0.7220 +10797 26284 0.4950 +10797 29958 0.8270 +10797 29968 0.7630 +10797 51071 0.4140 +10797 51144 0.4720 +10797 51268 0.4690 +10797 51805 0.4550 +10797 54675 0.5960 +10797 55066 0.6690 +10797 55157 0.4070 +10797 55577 0.6100 +10797 57761 0.4920 +10797 64146 0.4260 +10797 64779 0.7110 +10797 79094 0.4770 +10797 80224 0.4050 +10797 81034 0.5250 +10797 83693 0.4750 +10797 84076 0.4520 +10797 114112 0.5030 +10797 120892 0.5100 +10797 122622 0.5790 +10797 123263 0.9830 +10797 160428 0.9750 +10797 200205 0.8160 +10797 200895 0.6390 +10797 219927 0.4090 +10797 255324 0.5970 +10797 283985 0.4910 +10797 348995 0.4320 +10797 441024 0.9850 +10797 730249 0.4700 +10797 100528021 0.9140 +10798 11333 0.4030 +10798 23333 0.4480 +10798 51764 0.6810 +10798 79953 0.4490 +10798 90317 0.4900 +10798 146310 0.4220 +10798 153769 0.4100 +10798 158506 0.4470 +10798 166979 0.4200 +10798 171558 0.4500 +10799 10940 0.9920 +10799 10978 0.9030 +10799 11102 0.9960 +10799 11157 0.5520 +10799 23405 0.9150 +10799 25829 0.4070 +10799 25871 0.6340 +10799 26523 0.7290 +10799 27161 0.9030 +10799 28987 0.8110 +10799 29102 0.7530 +10799 51065 0.5170 +10799 51118 0.4310 +10799 51317 0.4080 +10799 51367 0.9990 +10799 51602 0.6880 +10799 54433 0.5740 +10799 54487 0.7200 +10799 54913 0.9990 +10799 54931 0.5920 +10799 55505 0.5570 +10799 55651 0.6580 +10799 56915 0.4040 +10799 79897 0.9980 +10799 80746 0.5540 +10799 83608 0.6320 +10799 83732 0.4220 +10799 83759 0.6720 +10799 84336 0.5100 +10799 92345 0.5560 +10799 118471 0.4700 +10799 138716 0.9690 +10799 140032 0.5020 +10799 192669 0.7250 +10799 192670 0.7250 +10799 283989 0.5530 +10799 345630 0.5600 +10800 10874 0.5950 +10800 10911 0.4990 +10800 11251 0.5060 +10800 11309 0.4100 +10800 23236 0.5370 +10800 23566 0.4750 +10800 23620 0.4030 +10800 25988 0.4150 +10800 27199 0.4990 +10800 27334 0.5200 +10800 29933 0.4310 +10800 50943 0.4790 +10800 51738 0.5030 +10800 51764 0.5410 +10800 54331 0.5550 +10800 54885 0.4410 +10800 55970 0.5410 +10800 56413 0.7210 +10800 56923 0.4130 +10800 57105 0.9760 +10800 57121 0.4200 +10800 59345 0.5900 +10800 60675 0.5030 +10800 64106 0.4280 +10800 64805 0.5670 +10800 84109 0.4250 +10800 84432 0.4990 +10800 84941 0.4100 +10800 85480 0.4470 +10800 90865 0.4510 +10800 94235 0.5410 +10800 115557 0.4990 +10800 129521 0.4990 +10800 222545 0.4040 +10800 257313 0.6220 +10800 338557 0.4440 +10800 347148 0.4990 +10800 387129 0.4340 +10800 389177 0.4340 +10800 594857 0.4990 +10801 11186 0.7260 +10801 11197 0.4150 +10801 11249 0.4990 +10801 23157 0.9990 +10801 23162 0.4360 +10801 23164 0.5110 +10801 23176 0.8660 +10801 23580 0.8820 +10801 23633 0.4510 +10801 23671 0.5700 +10801 25927 0.6600 +10801 25959 0.4280 +10801 27115 0.4260 +10801 27166 0.4020 +10801 30011 0.7360 +10801 30837 0.5100 +10801 54443 0.6410 +10801 54504 0.5200 +10801 55165 0.5590 +10801 55752 0.9960 +10801 55964 0.9620 +10801 56155 0.4610 +10801 57576 0.8220 +10801 60529 0.6030 +10801 64321 0.4030 +10801 65009 0.6970 +10801 79026 0.5170 +10801 84446 0.4090 +10801 84886 0.4200 +10801 90120 0.5430 +10801 90809 0.4210 +10801 116983 0.6450 +10801 122809 0.5280 +10801 124404 0.9390 +10801 124641 0.5030 +10801 148170 0.4990 +10801 151011 0.9630 +10801 346288 0.9280 +10801 375759 0.4750 +10801 399823 0.4810 +10802 10959 0.7560 +10802 10960 0.6150 +10802 10972 0.6430 +10802 11075 0.4620 +10802 11196 0.8260 +10802 11231 0.5620 +10802 22818 0.4690 +10802 22870 0.4050 +10802 22872 0.9960 +10802 22937 0.5040 +10802 23243 0.4510 +10802 23256 0.6980 +10802 25956 0.9830 +10802 26003 0.5400 +10802 26984 0.7510 +10802 27095 0.7520 +10802 29927 0.5640 +10802 51014 0.9390 +10802 51128 0.9900 +10802 51290 0.4950 +10802 51399 0.5140 +10802 51693 0.5590 +10802 55014 0.5560 +10802 55018 0.6060 +10802 55176 0.4490 +10802 55291 0.4050 +10802 56681 0.9950 +10802 58485 0.5190 +10802 59349 0.9290 +10802 64083 0.8530 +10802 64689 0.7580 +10802 79090 0.5260 +10802 79748 0.5430 +10802 81562 0.5880 +10802 81876 0.6530 +10802 89866 0.8120 +10802 90411 0.6580 +10802 90993 0.4200 +10802 91369 0.6060 +10802 122553 0.5260 +10802 126003 0.5540 +10802 133619 0.6840 +10802 149111 0.5660 +10802 254263 0.5660 +10802 255738 0.4850 +10802 375056 0.8410 +10802 553115 0.9270 +10803 10850 0.9120 +10803 29851 0.5020 +10803 30009 0.5120 +10803 50616 0.4570 +10803 50943 0.7080 +10803 51554 0.9250 +10803 54106 0.4130 +10803 54585 0.6810 +10803 54716 0.6660 +10803 56477 0.8910 +10803 57007 0.5510 +10803 58191 0.8050 +10803 59272 0.5500 +10803 63940 0.4190 +10803 79443 0.6370 +10803 131890 0.6830 +10803 414062 0.8440 +10803 100526664 0.4110 +10804 10840 0.5550 +10804 10913 0.5210 +10804 11078 0.4130 +10804 11197 0.4370 +10804 23562 0.5280 +10804 24145 0.6090 +10804 25861 0.4180 +10804 51168 0.8660 +10804 53904 0.4410 +10804 56649 0.5080 +10804 56666 0.4840 +10804 57165 0.7780 +10804 57369 0.4400 +10804 57471 0.4310 +10804 64072 0.7200 +10804 64699 0.5740 +10804 65217 0.4480 +10804 80207 0.6450 +10804 83873 0.4990 +10804 117531 0.5810 +10804 125111 0.4190 +10804 125336 0.4470 +10804 126326 0.4070 +10804 127534 0.4210 +10804 146183 0.5300 +10804 161497 0.5700 +10804 163882 0.8100 +10804 219770 0.4150 +10804 220296 0.5170 +10804 222662 0.5470 +10804 259236 0.4960 +10804 340990 0.4180 +10804 349149 0.4620 +10804 375611 0.5160 +10804 389207 0.4110 +10804 494513 0.4920 +10804 100126572 0.6700 +10806 10844 0.6170 +10806 11020 0.5450 +10806 22897 0.6760 +10806 22954 0.5350 +10806 22994 0.4400 +10806 23090 0.4780 +10806 23322 0.7220 +10806 23354 0.4990 +10806 26160 0.5240 +10806 27031 0.8880 +10806 27130 0.6230 +10806 27241 0.6500 +10806 51057 0.6690 +10806 51199 0.8740 +10806 51259 0.4220 +10806 51435 0.4400 +10806 51520 0.6950 +10806 54585 0.5600 +10806 54801 0.5210 +10806 54806 0.5930 +10806 54903 0.6770 +10806 54930 0.5000 +10806 55125 0.4680 +10806 55142 0.4990 +10806 55212 0.6300 +10806 55559 0.5070 +10806 55812 0.5260 +10806 57096 0.4620 +10806 57545 0.4950 +10806 57728 0.5530 +10806 65062 0.4280 +10806 79140 0.4470 +10806 79441 0.5080 +10806 79738 0.6770 +10806 79809 0.5220 +10806 79866 0.5240 +10806 79867 0.4180 +10806 79874 0.7560 +10806 80184 0.8640 +10806 84131 0.4320 +10806 91147 0.5720 +10806 91754 0.5110 +10806 92482 0.5980 +10806 93323 0.4990 +10806 115106 0.5320 +10806 117177 0.5640 +10806 129787 0.4300 +10806 129880 0.6580 +10806 157657 0.5060 +10806 166379 0.6670 +10806 167691 0.4200 +10806 200894 0.4050 +10806 261734 0.8750 +10806 284086 0.5410 +10806 285513 0.4030 +10806 728642 0.5490 +10807 23137 0.4240 +10807 23317 0.4170 +10807 26086 0.5710 +10807 28964 0.5860 +10807 51249 0.4810 +10807 51699 0.5340 +10807 55737 0.6980 +10807 57182 0.5700 +10807 64127 0.5170 +10807 64170 0.5580 +10807 64793 0.4930 +10807 81609 0.5300 +10807 84079 0.5900 +10807 85379 0.4740 +10807 112936 0.6160 +10807 159296 0.4910 +10807 338657 0.5290 +10807 389015 0.4890 +10807 100289462 0.4930 +10808 10963 0.9280 +10808 11080 0.9670 +10808 11140 0.4180 +10808 22824 0.9160 +10808 22948 0.4430 +10808 23234 0.6280 +10808 23341 0.5610 +10808 23479 0.5260 +10808 23640 0.9630 +10808 25822 0.8980 +10808 26353 0.7980 +10808 26973 0.6660 +10808 27000 0.5000 +10808 27101 0.4710 +10808 51182 0.5970 +10808 51314 0.4110 +10808 51726 0.6660 +10808 54431 0.6930 +10808 54788 0.7720 +10808 55466 0.8170 +10808 55735 0.5080 +10808 56990 0.4220 +10808 64374 0.5270 +10808 79065 0.4260 +10808 79962 0.4430 +10808 79982 0.8000 +10808 80267 0.5160 +10808 80273 0.8320 +10808 80331 0.5570 +10808 81570 0.7600 +10808 85479 0.5750 +10808 96459 0.5480 +10808 113444 0.4550 +10808 116835 0.6680 +10808 120526 0.4570 +10808 120892 0.5420 +10808 129303 0.4270 +10808 134266 0.6900 +10808 140432 0.4410 +10808 150160 0.4830 +10808 150353 0.5820 +10808 151194 0.4810 +10808 165721 0.6170 +10808 171425 0.4200 +10808 202052 0.8150 +10808 259217 0.6550 +10808 285126 0.4570 +10808 285282 0.4250 +10808 374407 0.6620 +10808 548645 0.4630 +10808 552891 0.4200 +10809 10948 0.6470 +10809 26027 0.4030 +10809 56910 0.5310 +10809 57519 0.5560 +10809 58488 0.4710 +10809 79837 0.4190 +10809 79888 0.9120 +10809 80765 0.6850 +10809 90627 0.4200 +10809 116985 0.6150 +10809 134429 0.4890 +10809 134526 0.4750 +10809 147323 0.5910 +10809 644139 0.6270 +10810 23191 0.9960 +10810 25894 0.4220 +10810 26999 0.9930 +10810 51225 0.9330 +10810 51517 0.5310 +10810 53344 0.4120 +10810 55210 0.4920 +10810 55845 0.9940 +10810 57648 0.4330 +10810 63916 0.5030 +10810 79658 0.4090 +10810 81873 0.6770 +10810 92609 0.4300 +10810 94134 0.5510 +10810 123720 0.5240 +10810 133746 0.4550 +10810 147179 0.4460 +10810 155185 0.4350 +10810 390714 0.4990 +10810 644150 0.4800 +10811 23075 0.4160 +10811 23583 0.4870 +10811 25894 0.4240 +10811 26030 0.4110 +10811 26073 0.7050 +10811 27035 0.9990 +10811 50506 0.8230 +10811 50507 0.9220 +10811 50508 0.9890 +10811 51534 0.5280 +10811 53905 0.8850 +10811 55312 0.5170 +10811 79400 0.8110 +10811 85376 0.6160 +10811 90527 0.7780 +10811 124056 0.9990 +10811 285590 0.7640 +10811 401944 0.4330 +10811 405753 0.6200 +10811 653361 0.9990 +10813 10849 0.5730 +10813 10885 0.9970 +10813 10943 0.4470 +10813 10969 0.8450 +10813 11056 0.8260 +10813 11103 0.9960 +10813 11128 0.4020 +10813 11137 0.7590 +10813 11180 0.4570 +10813 11340 0.7560 +10813 22803 0.5660 +10813 22907 0.4330 +10813 22984 0.9930 +10813 23016 0.7120 +10813 23029 0.8350 +10813 23054 0.6560 +10813 23076 0.7980 +10813 23160 0.9960 +10813 23204 0.5180 +10813 23212 0.7600 +10813 23223 0.9780 +10813 23246 0.8930 +10813 23378 0.7040 +10813 23404 0.7700 +10813 23481 0.9060 +10813 23517 0.9450 +10813 23560 0.8630 +10813 24144 0.4270 +10813 25879 0.9980 +10813 25885 0.6450 +10813 25926 0.9220 +10813 25929 0.4790 +10813 25983 0.9960 +10813 26155 0.8550 +10813 26156 0.9830 +10813 26168 0.5470 +10813 26354 0.6980 +10813 26574 0.9960 +10813 27042 0.8960 +10813 27043 0.5400 +10813 27292 0.9750 +10813 27340 0.9980 +10813 27341 0.9910 +10813 28987 0.8670 +10813 29777 0.7470 +10813 29889 0.7600 +10813 29960 0.4070 +10813 29997 0.8340 +10813 30836 0.9870 +10813 51010 0.7340 +10813 51013 0.7920 +10813 51018 0.4250 +10813 51065 0.7350 +10813 51068 0.6580 +10813 51073 0.4980 +10813 51077 0.9950 +10813 51081 0.5120 +10813 51082 0.4160 +10813 51096 0.9980 +10813 51106 0.5550 +10813 51118 0.9950 +10813 51149 0.6290 +10813 51154 0.6790 +10813 51187 0.6500 +10813 51202 0.4840 +10813 51319 0.5410 +10813 51388 0.5990 +10813 51406 0.8080 +10813 51490 0.4060 +10813 51504 0.9070 +10813 51538 0.4620 +10813 51575 0.8920 +10813 51602 0.9980 +10813 51605 0.4860 +10813 54433 0.4130 +10813 54475 0.4590 +10813 54505 0.4590 +10813 54512 0.7670 +10813 54517 0.5330 +10813 54552 0.7330 +10813 54555 0.6710 +10813 54606 0.8930 +10813 54663 0.5700 +10813 54680 0.4100 +10813 54859 0.4280 +10813 54865 0.4360 +10813 54881 0.6480 +10813 54888 0.4530 +10813 54984 0.4350 +10813 55003 0.5350 +10813 55005 0.4380 +10813 55127 0.9950 +10813 55131 0.9160 +10813 55153 0.8340 +10813 55226 0.9970 +10813 55272 0.9880 +10813 55299 0.6510 +10813 55319 0.5470 +10813 55341 0.8060 +10813 55601 0.4590 +10813 55622 0.4730 +10813 55646 0.4750 +10813 55651 0.6700 +10813 55695 0.5220 +10813 55703 0.5770 +10813 55720 0.9660 +10813 55759 0.7650 +10813 55760 0.5790 +10813 55781 0.6340 +10813 55794 0.4140 +10813 55813 0.9990 +10813 56342 0.7960 +10813 56902 0.9960 +10813 56915 0.8130 +10813 56919 0.6460 +10813 57050 0.9990 +10813 57062 0.7290 +10813 57418 0.7770 +10813 57602 0.7950 +10813 57647 0.9900 +10813 57696 0.5970 +10813 60487 0.4130 +10813 60625 0.6190 +10813 64118 0.4610 +10813 64216 0.5710 +10813 64318 0.8540 +10813 64425 0.8250 +10813 64434 0.8020 +10813 64794 0.6310 +10813 64848 0.4240 +10813 64960 0.5550 +10813 64963 0.5160 +10813 65083 0.9970 +10813 65095 0.8050 +10813 79039 0.7190 +10813 79050 0.9960 +10813 79159 0.5600 +10813 79571 0.6590 +10813 79665 0.4960 +10813 79707 0.7280 +10813 79954 0.9980 +10813 80135 0.6310 +10813 81887 0.6530 +10813 83732 0.5540 +10813 83743 0.7210 +10813 84128 0.9940 +10813 84135 0.9950 +10813 84154 0.8900 +10813 84172 0.5820 +10813 84294 0.9090 +10813 84310 0.4220 +10813 84365 0.8050 +10813 84549 0.8230 +10813 84916 0.9980 +10813 84946 0.8270 +10813 85395 0.9280 +10813 88745 0.8250 +10813 90121 0.6570 +10813 90381 0.4160 +10813 90957 0.5220 +10813 91582 0.8050 +10813 92856 0.9950 +10813 116966 0.5930 +10813 117246 0.9680 +10813 118460 0.6560 +10813 122402 0.4190 +10813 126402 0.5080 +10813 128061 0.8200 +10813 140032 0.5270 +10813 146212 0.6870 +10813 153443 0.6140 +10813 155368 0.4400 +10813 161424 0.7320 +10813 165545 0.5700 +10813 170506 0.4540 +10813 221078 0.7340 +10813 221830 0.7100 +10813 283106 0.5640 +10813 317781 0.4660 +10813 345630 0.8920 +10813 641776 0.4030 +10813 643311 0.4740 +10813 643909 0.4030 +10813 692312 0.7560 +10813 728524 0.4030 +10813 100996746 0.4030 +10813 105180390 0.4030 +10813 105180391 0.4030 +10814 10815 0.9530 +10814 11189 0.4150 +10814 22999 0.4500 +10814 23025 0.5180 +10814 23673 0.7450 +10814 29993 0.4750 +10814 51272 0.5400 +10814 53407 0.5400 +10814 55014 0.7200 +10814 55850 0.5400 +10814 63908 0.6000 +10814 64682 0.7640 +10814 83482 0.4130 +10814 112755 0.7660 +10814 116841 0.6430 +10814 127833 0.5200 +10814 134957 0.7110 +10814 140679 0.4280 +10814 143187 0.5920 +10814 203062 0.5400 +10814 254263 0.5390 +10814 339302 0.9580 +10814 415117 0.5910 +10814 594855 0.9290 +10815 10861 0.4490 +10815 11159 0.4500 +10815 22895 0.4120 +10815 22999 0.8800 +10815 23025 0.5540 +10815 23673 0.7530 +10815 51272 0.5430 +10815 51286 0.4040 +10815 53407 0.5400 +10815 54872 0.5090 +10815 55014 0.7200 +10815 55327 0.5630 +10815 55850 0.5400 +10815 57030 0.7140 +10815 57084 0.4110 +10815 57689 0.4070 +10815 63908 0.6030 +10815 64101 0.4090 +10815 64130 0.5220 +10815 80331 0.6100 +10815 84179 0.4900 +10815 84258 0.4580 +10815 112755 0.7700 +10815 116841 0.5700 +10815 127833 0.7660 +10815 134957 0.6500 +10815 140679 0.7390 +10815 143187 0.5960 +10815 203062 0.5750 +10815 283677 0.4890 +10815 285498 0.6070 +10815 339302 0.9620 +10815 415117 0.5910 +10815 594855 0.9720 +10815 100507650 0.4460 +10816 51078 0.4790 +10816 127670 0.5170 +10816 140832 0.4360 +10816 164237 0.4340 +10816 253725 0.4180 +10816 259240 0.5580 +10816 389396 0.5770 +10816 391253 0.6000 +10817 10818 0.6330 +10817 22872 0.4990 +10817 25862 0.4860 +10817 26281 0.6030 +10817 27006 0.5990 +10817 27289 0.6160 +10817 27436 0.5230 +10817 29964 0.4300 +10817 53335 0.5030 +10817 53834 0.4270 +10817 57448 0.4990 +10817 57451 0.4270 +10817 80304 0.5000 +10817 152831 0.4780 +10818 10956 0.4100 +10818 11160 0.5310 +10818 22809 0.6000 +10818 22872 0.4990 +10818 23390 0.4260 +10818 23657 0.4240 +10818 25970 0.5720 +10818 26281 0.8980 +10818 26291 0.6790 +10818 27006 0.8570 +10818 27289 0.6930 +10818 27436 0.6260 +10818 30849 0.5350 +10818 53335 0.5030 +10818 53834 0.6060 +10818 54106 0.4990 +10818 57122 0.4370 +10818 57448 0.5220 +10818 64096 0.4380 +10818 64764 0.6150 +10818 80304 0.4990 +10818 81848 0.5980 +10818 91419 0.4040 +10818 139716 0.4340 +10818 144453 0.5010 +10818 152831 0.8840 +10818 338917 0.4060 +10818 374462 0.4240 +10818 376132 0.4950 +10818 728858 0.4650 +10825 55808 0.4050 +10825 57192 0.7720 +10825 84557 0.4040 +10826 10858 0.4150 +10826 11161 0.8590 +10826 11283 0.4160 +10826 22818 0.4190 +10826 26166 0.4930 +10826 27430 0.6040 +10826 50814 0.7900 +10826 51004 0.4490 +10826 51302 0.6920 +10826 51478 0.9120 +10826 51805 0.5060 +10826 54884 0.4510 +10826 55239 0.4370 +10826 56603 0.4150 +10826 57412 0.4910 +10826 57834 0.4150 +10826 66002 0.4150 +10826 79152 0.7990 +10826 80270 0.6710 +10826 90338 0.5340 +10826 91734 0.5210 +10826 93517 0.6500 +10826 126410 0.4150 +10826 137682 0.4790 +10826 199974 0.4150 +10826 260293 0.4910 +10826 284541 0.4150 +10826 285440 0.4660 +10826 286151 0.4910 +10826 337972 0.4470 +10826 340390 0.4790 +10826 347475 0.6920 +10826 100532724 0.4300 +10827 11019 0.4090 +10827 11044 0.4990 +10827 22906 0.4990 +10827 23164 0.5000 +10827 26269 0.4370 +10827 27044 0.5870 +10827 27252 0.6410 +10827 54845 0.4990 +10827 55092 0.4200 +10827 55109 0.5420 +10827 55750 0.6090 +10827 56829 0.5990 +10827 57085 0.4990 +10827 57670 0.6070 +10827 80853 0.4990 +10827 138883 0.4760 +10827 160492 0.4100 +10838 23439 0.5600 +10838 79649 0.4220 +10838 79837 0.4960 +10838 83740 0.4070 +10838 144108 0.4290 +10840 10841 0.9390 +10840 10873 0.4160 +10840 10901 0.4260 +10840 23205 0.4310 +10840 25902 0.6500 +10840 26227 0.4710 +10840 27232 0.4220 +10840 51004 0.4430 +10840 51011 0.4040 +10840 51071 0.4330 +10840 54988 0.4230 +10840 55349 0.4060 +10840 55902 0.4230 +10840 57030 0.4800 +10840 57084 0.4240 +10840 57591 0.4340 +10840 64850 0.5140 +10840 64902 0.4560 +10840 65220 0.4480 +10840 84263 0.6960 +10840 84532 0.4590 +10840 85007 0.4030 +10840 116448 0.5280 +10840 130013 0.4300 +10840 137872 0.5170 +10840 146713 0.6090 +10840 160428 0.9500 +10840 200895 0.9370 +10840 220296 0.5530 +10840 338773 0.4490 +10840 440193 0.4200 +10840 441024 0.9510 +10841 25902 0.9910 +10841 27010 0.4120 +10841 27165 0.8280 +10841 27232 0.5330 +10841 29104 0.4030 +10841 29958 0.6560 +10841 51091 0.6390 +10841 51144 0.7500 +10841 51156 0.4020 +10841 51733 0.5740 +10841 54059 0.4050 +10841 54069 0.4800 +10841 54093 0.4540 +10841 64577 0.4770 +10841 64779 0.8580 +10841 64902 0.4780 +10841 79814 0.4030 +10841 80150 0.8260 +10841 81494 0.4060 +10841 81627 0.4410 +10841 83544 0.9790 +10841 83693 0.7530 +10841 84647 0.4040 +10841 84699 0.4540 +10841 122622 0.8140 +10841 123263 0.9360 +10841 131669 0.7800 +10841 132158 0.4510 +10841 137362 0.8010 +10841 144193 0.9770 +10841 158405 0.5880 +10841 160428 0.9220 +10841 200895 0.9310 +10841 255043 0.4370 +10841 259307 0.8210 +10841 339983 0.8060 +10841 390061 0.4060 +10841 441024 0.9890 +10841 100528021 0.9030 +10842 23167 0.4740 +10842 23348 0.4180 +10842 57053 0.4430 +10842 63974 0.4870 +10842 84152 0.4200 +10842 161497 0.4530 +10842 255738 0.6500 +10842 283933 0.4180 +10842 375611 0.4180 +10842 389161 0.4290 +10842 643226 0.5050 +10842 645104 0.5030 +10842 100271715 0.4120 +10844 11064 0.4360 +10844 22919 0.4070 +10844 22994 0.4150 +10844 23271 0.4050 +10844 25821 0.5230 +10844 26059 0.7960 +10844 27175 0.9970 +10844 27183 0.7730 +10844 27229 0.9990 +10844 28990 0.4420 +10844 29760 0.4350 +10844 29922 0.8220 +10844 49856 0.5130 +10844 51060 0.6440 +10844 51174 0.8720 +10844 51807 0.4050 +10844 53615 0.4470 +10844 54492 0.4090 +10844 55051 0.4640 +10844 55755 0.9750 +10844 55835 0.6550 +10844 56731 0.4240 +10844 57787 0.5590 +10844 80097 0.9760 +10844 80150 0.5620 +10844 80852 0.4720 +10844 85378 0.9990 +10844 92703 0.4890 +10844 114791 0.9990 +10844 115098 0.4060 +10844 121441 0.8840 +10844 201931 0.4210 +10844 222229 0.4510 +10844 282991 0.5710 +10844 440145 0.9980 +10844 653784 0.9900 +10844 728763 0.4830 +10845 10939 0.8730 +10845 11128 0.4680 +10845 11331 0.4990 +10845 22921 0.5130 +10845 22984 0.4550 +10845 23291 0.6030 +10845 23395 0.4590 +10845 25885 0.4470 +10845 26073 0.4650 +10845 26164 0.4600 +10845 26284 0.4980 +10845 26995 0.5010 +10845 27247 0.4280 +10845 27349 0.4730 +10845 27429 0.4450 +10845 29083 0.4060 +10845 50945 0.9610 +10845 51095 0.4050 +10845 51360 0.4680 +10845 51520 0.4820 +10845 51734 0.4180 +10845 54802 0.4300 +10845 54977 0.5240 +10845 55262 0.4170 +10845 55572 0.4310 +10845 55699 0.4410 +10845 55746 0.4440 +10845 55975 0.4300 +10845 56945 0.4130 +10845 57176 0.4110 +10845 60558 0.5120 +10845 63929 0.4150 +10845 64216 0.4570 +10845 64839 0.4580 +10845 79072 0.4890 +10845 79101 0.4110 +10845 79178 0.4360 +10845 79728 0.4090 +10845 80273 0.8690 +10845 80347 0.4140 +10845 80763 0.7740 +10845 81570 0.9710 +10845 81689 0.4290 +10845 83752 0.8270 +10845 84273 0.5420 +10845 84274 0.4090 +10845 84705 0.4240 +10845 84706 0.5090 +10845 85476 0.5790 +10845 85865 0.4230 +10845 91574 0.4060 +10845 92399 0.6090 +10845 115209 0.5240 +10845 122622 0.4700 +10845 123263 0.4320 +10845 134266 0.6000 +10845 196074 0.4190 +10845 219927 0.4530 +10845 253827 0.4170 +10845 282809 0.4190 +10845 400916 0.4680 +10846 22978 0.6610 +10846 26059 0.4040 +10846 26289 0.7020 +10846 27115 0.6180 +10846 27346 0.4120 +10846 30833 0.6500 +10846 50808 0.9040 +10846 50940 0.5240 +10846 51166 0.4320 +10846 51251 0.7710 +10846 51562 0.4320 +10846 54112 0.5070 +10846 55175 0.4920 +10846 55728 0.4380 +10846 55811 0.6810 +10846 56953 0.6500 +10846 56978 0.4060 +10846 56981 0.4310 +10846 84152 0.5770 +10846 84290 0.4180 +10846 84618 0.6500 +10846 93034 0.6820 +10846 115024 0.7160 +10846 122481 0.6670 +10846 124583 0.6770 +10846 158067 0.7090 +10846 196883 0.7530 +10846 221264 0.6770 +10846 377841 0.6500 +10846 100526794 0.6830 +10846 102157402 0.6500 +10847 10856 0.9990 +10847 10902 0.8260 +10847 10933 0.6360 +10847 11176 0.5190 +10847 11198 0.4020 +10847 22900 0.4200 +10847 22992 0.4740 +10847 23475 0.4280 +10847 23476 0.5090 +10847 23524 0.5050 +10847 26108 0.4930 +10847 29072 0.6590 +10847 29844 0.6060 +10847 51377 0.5610 +10847 51412 0.8490 +10847 54556 0.7670 +10847 54617 0.7160 +10847 54680 0.4180 +10847 54891 0.6540 +10847 55257 0.7070 +10847 55689 0.4640 +10847 55795 0.5330 +10847 55904 0.4860 +10847 55929 0.9920 +10847 56254 0.5010 +10847 57492 0.5060 +10847 57634 0.9030 +10847 57680 0.4890 +10847 57697 0.4200 +10847 58508 0.5820 +10847 60489 0.4730 +10847 64431 0.9990 +10847 79577 0.4080 +10847 79842 0.4290 +10847 79913 0.7880 +10847 80308 0.7820 +10847 81611 0.8760 +10847 83444 0.7760 +10847 84678 0.4950 +10847 84901 0.7120 +10847 90780 0.5110 +10847 93973 0.8010 +10847 94239 0.9040 +10847 116931 0.4360 +10847 125476 0.7950 +10847 128312 0.4270 +10847 222183 0.4560 +10847 255626 0.7370 +10847 283208 0.5180 +10847 283899 0.5990 +10847 285555 0.4130 +10847 345651 0.4050 +10847 440093 0.4210 +10847 440686 0.4190 +10847 474381 0.4240 +10847 474382 0.4060 +10847 653604 0.4290 +10848 10849 0.6660 +10848 22919 0.8090 +10848 55662 0.9020 +10849 10885 0.6200 +10849 10969 0.6990 +10849 11103 0.7080 +10849 11128 0.8760 +10849 11137 0.6080 +10849 11198 0.4060 +10849 11201 0.6980 +10849 23076 0.7070 +10849 23160 0.4630 +10849 23212 0.7650 +10849 23223 0.7460 +10849 23246 0.4360 +10849 23378 0.5370 +10849 23451 0.5210 +10849 23481 0.6440 +10849 23560 0.7310 +10849 25879 0.6360 +10849 25885 0.9990 +10849 25983 0.6200 +10849 26155 0.7930 +10849 26354 0.4280 +10849 26574 0.4030 +10849 27292 0.4510 +10849 27297 0.4500 +10849 28987 0.4230 +10849 29889 0.6410 +10849 29997 0.5620 +10849 30834 0.9990 +10849 30836 0.6900 +10849 51018 0.6800 +10849 51082 0.9990 +10849 51096 0.4760 +10849 51118 0.6420 +10849 51154 0.7000 +10849 51184 0.6120 +10849 51187 0.7830 +10849 51236 0.4830 +10849 51388 0.4390 +10849 51575 0.7100 +10849 51602 0.7800 +10849 51728 0.7070 +10849 54552 0.4350 +10849 54606 0.5640 +10849 54700 0.9960 +10849 54865 0.6550 +10849 54984 0.6520 +10849 55127 0.4530 +10849 55131 0.7270 +10849 55153 0.7410 +10849 55299 0.6430 +10849 55319 0.7830 +10849 55646 0.6340 +10849 55651 0.7370 +10849 55677 0.5280 +10849 55703 0.7600 +10849 55718 0.6780 +10849 55720 0.4150 +10849 55759 0.4250 +10849 55760 0.4020 +10849 55813 0.4420 +10849 56342 0.4200 +10849 57050 0.7280 +10849 64216 0.4120 +10849 64425 0.9990 +10849 79050 0.6200 +10849 79101 0.6430 +10849 79159 0.4010 +10849 79954 0.6840 +10849 81627 0.4160 +10849 83743 0.7600 +10849 84154 0.7110 +10849 84172 0.9990 +10849 84294 0.6900 +10849 84319 0.6230 +10849 84365 0.7990 +10849 84549 0.6960 +10849 84916 0.5630 +10849 84946 0.6880 +10849 85236 0.4010 +10849 90121 0.6870 +10849 92856 0.6430 +10849 94239 0.4050 +10849 115708 0.4200 +10849 116447 0.4500 +10849 116966 0.5940 +10849 123169 0.4970 +10849 124245 0.4130 +10849 127428 0.4210 +10849 165545 0.4020 +10849 170082 0.4210 +10849 171568 0.5310 +10849 221830 0.9990 +10849 284119 0.5010 +10849 404672 0.5290 +10849 653604 0.4260 +10849 692312 0.4230 +10850 27178 0.5440 +10850 50616 0.4320 +10850 51554 0.9980 +10850 56300 0.5850 +10850 56477 0.9200 +10850 57007 0.6270 +10850 58191 0.7870 +10850 65986 0.4220 +10850 85480 0.4470 +10850 128209 0.4170 +10850 353134 0.4120 +10850 353141 0.4040 +10850 374655 0.4380 +10850 388698 0.4060 +10855 23327 0.6140 +10855 51028 0.5840 +10855 51160 0.4100 +10855 51270 0.4910 +10855 55108 0.4080 +10855 55959 0.4180 +10855 60495 0.9130 +10855 79643 0.4210 +10855 84313 0.4480 +10855 90070 0.5050 +10855 113510 0.4310 +10855 221914 0.5180 +10855 375790 0.5450 +10856 10902 0.9970 +10856 10919 0.6250 +10856 10933 0.9960 +10856 10943 0.9270 +10856 10963 0.7660 +10856 10969 0.5110 +10856 11044 0.4560 +10856 11060 0.5090 +10856 11080 0.4190 +10856 11091 0.9360 +10856 11128 0.4880 +10856 11140 0.7320 +10856 11198 0.4690 +10856 11321 0.7890 +10856 11331 0.5330 +10856 22907 0.5640 +10856 22916 0.4100 +10856 22948 0.7050 +10856 23020 0.5810 +10856 23049 0.8230 +10856 23118 0.4220 +10856 23135 0.5430 +10856 23234 0.5890 +10856 23269 0.9030 +10856 23361 0.4510 +10856 23435 0.4180 +10856 23450 0.4200 +10856 23476 0.6860 +10856 23559 0.9500 +10856 23639 0.5540 +10856 23650 0.5230 +10856 23753 0.5640 +10856 25788 0.4460 +10856 25804 0.4010 +10856 25911 0.8960 +10856 25980 0.6770 +10856 26015 0.8080 +10856 26054 0.5220 +10856 26060 0.6200 +10856 26121 0.9440 +10856 26122 0.9680 +10856 26155 0.4350 +10856 26168 0.9060 +10856 26353 0.5500 +10856 26747 0.8250 +10856 26995 0.4540 +10856 27043 0.9220 +10856 27339 0.4580 +10856 29110 0.4730 +10856 29777 0.6230 +10856 29843 0.6950 +10856 29844 0.9770 +10856 29915 0.5720 +10856 29922 0.4720 +10856 50618 0.4060 +10856 51001 0.4640 +10856 51102 0.4220 +10856 51105 0.5400 +10856 51154 0.4570 +10856 51230 0.9060 +10856 51364 0.5460 +10856 51366 0.4020 +10856 51377 0.9840 +10856 51398 0.5490 +10856 51412 0.9160 +10856 51504 0.4130 +10856 51574 0.5440 +10856 51602 0.9880 +10856 51637 0.4130 +10856 51710 0.4830 +10856 51726 0.5810 +10856 54433 0.7710 +10856 54443 0.4500 +10856 54555 0.4110 +10856 54556 0.9950 +10856 54606 0.4150 +10856 54617 0.9990 +10856 54680 0.7350 +10856 54799 0.9820 +10856 54821 0.4040 +10856 54881 0.9110 +10856 54891 0.9500 +10856 54919 0.5490 +10856 54934 0.7200 +10856 55011 0.9990 +10856 55127 0.6860 +10856 55135 0.8920 +10856 55164 0.8290 +10856 55167 0.9000 +10856 55172 0.8450 +10856 55226 0.4920 +10856 55247 0.4300 +10856 55257 0.9890 +10856 55505 0.9750 +10856 55506 0.4480 +10856 55636 0.4420 +10856 55651 0.9750 +10856 55683 0.7220 +10856 55689 0.7610 +10856 55837 0.4380 +10856 55929 0.9990 +10856 56257 0.4430 +10856 56683 0.4740 +10856 56915 0.4410 +10856 56916 0.4100 +10856 56984 0.5470 +10856 57003 0.5630 +10856 57634 0.9990 +10856 57680 0.9380 +10856 57701 0.4050 +10856 63910 0.4060 +10856 63922 0.6390 +10856 64421 0.4310 +10856 64431 0.9980 +10856 64769 0.9820 +10856 65123 0.6920 +10856 79577 0.5170 +10856 79613 0.4790 +10856 79618 0.4810 +10856 79657 0.9990 +10856 79871 0.8620 +10856 79902 0.4730 +10856 79913 0.9990 +10856 80185 0.9790 +10856 80304 0.7200 +10856 80314 0.9850 +10856 80818 0.4480 +10856 81533 0.4910 +10856 81572 0.9080 +10856 81611 0.9390 +10856 81887 0.9060 +10856 83444 0.9990 +10856 83743 0.6490 +10856 83758 0.5090 +10856 84148 0.9210 +10856 84181 0.4160 +10856 84444 0.4930 +10856 84661 0.6490 +10856 85235 0.5890 +10856 92815 0.5910 +10856 93624 0.5390 +10856 93973 0.9970 +10856 94239 0.8010 +10856 115560 0.4490 +10856 116143 0.9660 +10856 120379 0.9560 +10856 120892 0.5310 +10856 121053 0.7700 +10856 121504 0.8650 +10856 124944 0.9050 +10856 125476 0.9990 +10856 126961 0.4040 +10856 139212 0.6060 +10856 139628 0.4240 +10856 142940 0.4570 +10856 147837 0.4720 +10856 148266 0.4500 +10856 150160 0.6780 +10856 151050 0.5400 +10856 161582 0.7210 +10856 201299 0.4380 +10856 221613 0.5890 +10856 255626 0.7010 +10856 283237 0.5380 +10856 283899 0.9860 +10856 284058 0.9000 +10856 284390 0.4480 +10856 317772 0.6680 +10856 333932 0.4040 +10856 339287 0.9020 +10856 340096 0.4040 +10856 345630 0.5450 +10856 345651 0.7140 +10856 352909 0.4700 +10856 388389 0.6590 +10856 391769 0.4040 +10856 440093 0.5940 +10856 440686 0.5940 +10856 554313 0.8660 +10856 643677 0.4040 +10856 653604 0.6600 +10856 728378 0.4230 +10856 100529209 0.5610 +10856 110599588 0.6650 +10857 22937 0.5470 +10857 23630 0.5480 +10857 25962 0.4230 +10857 26135 0.9020 +10857 27346 0.9850 +10857 51081 0.4190 +10857 51495 0.5050 +10857 54852 0.7880 +10857 79957 0.7020 +10857 80777 0.7660 +10857 85315 0.8560 +10857 135935 0.4330 +10857 164091 0.8850 +10857 344018 0.4180 +10857 344838 0.6490 +10858 22937 0.4060 +10858 23600 0.6420 +10858 27158 0.7170 +10858 29785 0.4190 +10858 29979 0.4760 +10858 50814 0.4600 +10858 51302 0.9800 +10858 51478 0.4140 +10858 54905 0.5290 +10858 64137 0.5360 +10858 80270 0.6720 +10858 80777 0.4300 +10858 113612 0.4270 +10858 119391 0.4980 +10858 120227 0.4230 +10858 132949 0.5310 +10858 201456 0.4730 +10858 339761 0.4030 +10859 10870 0.6410 +10859 10871 0.9450 +10859 11025 0.6580 +10859 11126 0.6490 +10859 11314 0.5190 +10859 22914 0.7860 +10859 23547 0.4890 +10859 27036 0.6610 +10859 27087 0.7490 +10859 27180 0.5490 +10859 29126 0.7040 +10859 29990 0.6460 +10859 29992 0.7080 +10859 51284 0.4450 +10859 51311 0.5070 +10859 51348 0.5630 +10859 51744 0.4730 +10859 57823 0.4900 +10859 64167 0.4460 +10859 79168 0.5840 +10859 79465 0.7770 +10859 80328 0.7940 +10859 80329 0.8110 +10859 80381 0.4050 +10859 83417 0.4110 +10859 84662 0.4040 +10859 84868 0.6700 +10859 85451 0.4340 +10859 89790 0.5300 +10859 114836 0.4620 +10859 133482 0.4260 +10859 140885 0.5200 +10859 146722 0.5530 +10859 201633 0.6780 +10859 259197 0.7360 +10859 374383 0.4930 +10859 100133941 0.6570 +10859 100423062 0.9140 +10861 26266 0.4160 +10861 27042 0.4430 +10861 55508 0.4020 +10861 57128 0.4970 +10861 83697 0.4860 +10861 91975 0.4460 +10861 142680 0.4810 +10861 147011 0.4330 +10861 284129 0.4360 +10861 100128927 0.4740 +10863 26047 0.4540 +10863 53616 0.8970 +10863 55203 0.5680 +10863 57683 0.4480 +10863 163175 0.4310 +10863 203190 0.6880 +10864 11309 0.7750 +10864 28231 0.5860 +10864 28232 0.5290 +10864 28234 0.9600 +10864 51081 0.5780 +10864 51179 0.4720 +10864 53919 0.5620 +10864 54578 0.4260 +10864 54657 0.4250 +10864 55244 0.7480 +10864 56606 0.4180 +10864 58510 0.4560 +10864 64078 0.5110 +10864 64240 0.4810 +10864 64241 0.5400 +10864 64849 0.5390 +10864 123264 0.4540 +10864 146802 0.7300 +10864 154091 0.4210 +10864 155184 0.4400 +10864 159963 0.4360 +10864 200931 0.4840 +10864 353189 0.6750 +10865 22904 0.5700 +10865 23397 0.4810 +10865 54542 0.4330 +10865 55193 0.5260 +10865 57532 0.4610 +10865 80149 0.6850 +10865 114803 0.4260 +10865 149041 0.5420 +10865 167826 0.4940 +10865 253725 0.4120 +10867 11346 0.4070 +10867 23555 0.4930 +10867 51206 0.6140 +10867 56341 0.4180 +10867 81619 0.4180 +10867 83714 0.4190 +10867 84766 0.4050 +10867 201191 0.4460 +10867 220001 0.4360 +10868 10987 0.5170 +10868 11222 0.4140 +10868 11274 0.8410 +10868 23032 0.5770 +10868 23118 0.4570 +10868 23492 0.7010 +10868 26118 0.6150 +10868 27005 0.5420 +10868 28988 0.4590 +10868 29761 0.4830 +10868 51377 0.4810 +10868 54726 0.4030 +10868 55191 0.4220 +10868 55294 0.4010 +10868 55593 0.4520 +10868 55611 0.5090 +10868 56957 0.5060 +10868 57559 0.6060 +10868 57599 0.4300 +10868 57646 0.7100 +10868 57663 0.5310 +10868 63891 0.4280 +10868 63967 0.7270 +10868 64965 0.4160 +10868 65003 0.4110 +10868 78990 0.4790 +10868 81858 0.4500 +10868 83844 0.4290 +10868 84461 0.6100 +10868 84749 0.6120 +10868 114803 0.5700 +10868 126119 0.4580 +10868 219927 0.4160 +10868 221302 0.6200 +10868 338917 0.4250 +10868 340061 0.5650 +10869 10987 0.5150 +10869 11140 0.5240 +10869 11222 0.4190 +10869 23070 0.4960 +10869 23116 0.4130 +10869 23197 0.4450 +10869 23341 0.4050 +10869 23644 0.4870 +10869 23759 0.5780 +10869 26973 0.4200 +10869 29110 0.4270 +10869 29761 0.5850 +10869 51246 0.4410 +10869 51377 0.4640 +10869 51633 0.4300 +10869 54726 0.4230 +10869 55161 0.4050 +10869 55432 0.5230 +10869 55593 0.5250 +10869 55611 0.4900 +10869 55626 0.5380 +10869 55898 0.5490 +10869 56957 0.4510 +10869 57506 0.4150 +10869 57568 0.4060 +10869 57610 0.4620 +10869 57646 0.5960 +10869 57805 0.4880 +10869 60681 0.4270 +10869 63891 0.9940 +10869 63931 0.4040 +10869 63943 0.5120 +10869 64965 0.4250 +10869 65003 0.4150 +10869 79139 0.4210 +10869 79862 0.4330 +10869 80124 0.4580 +10869 80331 0.4300 +10869 84124 0.4290 +10869 84447 0.5900 +10869 84749 0.4490 +10869 88745 0.4500 +10869 91461 0.4050 +10869 92305 0.4430 +10869 92552 0.5080 +10869 114803 0.5870 +10869 126119 0.4100 +10869 139341 0.6170 +10869 146325 0.4950 +10869 159195 0.4200 +10869 166348 0.4520 +10869 170850 0.4170 +10869 171558 0.4380 +10869 219927 0.4170 +10869 220213 0.4110 +10869 221302 0.6760 +10869 339834 0.4190 +10869 375567 0.4060 +10870 10871 0.6240 +10870 11314 0.4920 +10870 22914 0.9990 +10870 23601 0.8930 +10870 26253 0.5580 +10870 27299 0.4050 +10870 29851 0.4750 +10870 51348 0.4760 +10870 51744 0.6150 +10870 54209 0.4240 +10870 64926 0.6310 +10870 79465 0.9250 +10870 80328 0.8610 +10870 80329 0.9280 +10870 84662 0.4180 +10870 84868 0.4990 +10870 114836 0.4320 +10870 120425 0.4250 +10870 124599 0.8430 +10870 128346 0.4770 +10870 135250 0.8500 +10870 146722 0.4350 +10870 154064 0.5120 +10870 257106 0.4030 +10870 259197 0.7950 +10870 284266 0.6240 +10870 342510 0.5330 +10870 353091 0.5120 +10870 374383 0.4130 +10870 374403 0.4310 +10870 100049587 0.5330 +10870 100431172 0.4320 +10870 100507436 0.6730 +10871 10990 0.7730 +10871 11006 0.8060 +10871 11024 0.8750 +10871 11025 0.8380 +10871 11027 0.9500 +10871 11314 0.7190 +10871 11331 0.5440 +10871 11337 0.9890 +10871 11345 0.9790 +10871 22863 0.6070 +10871 23001 0.6910 +10871 23192 0.5440 +10871 23547 0.7170 +10871 23710 0.9780 +10871 23770 0.5830 +10871 23786 0.7680 +10871 25923 0.5190 +10871 26100 0.5810 +10871 26151 0.4970 +10871 26471 0.4180 +10871 27036 0.7450 +10871 27180 0.5870 +10871 29110 0.5840 +10871 29990 0.5750 +10871 29992 0.6860 +10871 30849 0.5430 +10871 51024 0.4310 +10871 51311 0.4540 +10871 51368 0.5890 +10871 51622 0.4990 +10871 53349 0.5750 +10871 54205 0.4220 +10871 54209 0.5030 +10871 54210 0.6200 +10871 54463 0.7610 +10871 54708 0.4740 +10871 55014 0.5840 +10871 55054 0.6210 +10871 55062 0.5070 +10871 55201 0.7810 +10871 55486 0.5810 +10871 55626 0.7460 +10871 55669 0.4770 +10871 57506 0.4600 +10871 57521 0.5340 +10871 60673 0.5850 +10871 64422 0.6210 +10871 65018 0.6940 +10871 79092 0.4060 +10871 79168 0.7700 +10871 79443 0.5710 +10871 79594 0.4480 +10871 79865 0.4410 +10871 81631 0.9720 +10871 83734 0.5070 +10871 84557 0.9060 +10871 84868 0.4160 +10871 94241 0.4910 +10871 114548 0.4460 +10871 124599 0.9390 +10871 125228 0.5940 +10871 139341 0.8700 +10871 146722 0.8150 +10871 146894 0.5180 +10871 192111 0.5810 +10871 221960 0.4990 +10871 284312 0.4240 +10871 285852 0.4980 +10871 340205 0.4830 +10871 342510 0.6390 +10871 353514 0.5750 +10871 440738 0.8370 +10871 100131439 0.4460 +10873 10994 0.6070 +10873 22934 0.5500 +10873 23530 0.4960 +10873 26061 0.6070 +10873 51444 0.4020 +10873 54941 0.4020 +10873 54988 0.4070 +10873 55293 0.4020 +10873 55902 0.5000 +10873 56965 0.5520 +10873 57505 0.4100 +10873 57645 0.4040 +10873 64087 0.5800 +10873 65985 0.4100 +10873 79611 0.4060 +10873 79668 0.5440 +10873 84076 0.4310 +10873 84532 0.5030 +10873 84706 0.4400 +10873 92483 0.9590 +10873 116285 0.4060 +10873 123876 0.4060 +10873 125061 0.8030 +10873 130752 0.5160 +10873 137362 0.5220 +10873 160287 0.9590 +10873 160428 0.4280 +10873 197257 0.9260 +10873 341392 0.4060 +10873 348158 0.4060 +10873 729020 0.4200 +10874 10887 0.5460 +10874 10911 0.5750 +10874 23236 0.5250 +10874 23620 0.7920 +10874 26575 0.5110 +10874 29899 0.4650 +10874 51052 0.5550 +10874 51083 0.8860 +10874 51738 0.7950 +10874 51764 0.5300 +10874 54331 0.9310 +10874 55970 0.5090 +10874 56923 0.9990 +10874 57105 0.5110 +10874 59345 0.5330 +10874 60675 0.5330 +10874 64111 0.4420 +10874 64407 0.4990 +10874 84432 0.5340 +10874 84539 0.5040 +10874 84634 0.5570 +10874 85480 0.4090 +10874 90865 0.4470 +10874 94235 0.4990 +10874 115330 0.4240 +10874 115557 0.4990 +10874 117579 0.4740 +10874 124274 0.4680 +10874 128674 0.5210 +10874 129521 0.6830 +10874 132954 0.4060 +10874 196883 0.4240 +10874 255061 0.4170 +10874 256933 0.7000 +10874 257313 0.4260 +10874 283869 0.6830 +10874 347148 0.7560 +10874 350383 0.4300 +10874 387129 0.6070 +10874 431704 0.4990 +10874 594857 0.7690 +10874 619373 0.4320 +10875 30009 0.4060 +10875 50856 0.4380 +10875 50943 0.4390 +10875 51311 0.5470 +10875 53829 0.4080 +10875 55303 0.6060 +10875 55755 0.4200 +10875 56833 0.4120 +10875 58475 0.4610 +10875 64231 0.7050 +10875 64407 0.4150 +10875 64581 0.4620 +10875 80380 0.4730 +10875 92521 0.4140 +10875 117289 0.4700 +10875 118788 0.4240 +10875 155038 0.4560 +10875 201633 0.4970 +10875 219972 0.4310 +10875 374654 0.5440 +10875 474344 0.4280 +10876 64184 0.4370 +10876 90199 0.4250 +10876 140850 0.4190 +10876 259239 0.4540 +10876 259240 0.5000 +10876 613211 0.4650 +10876 644414 0.4140 +10877 10878 0.7520 +10877 11093 0.5210 +10877 25974 0.5130 +10877 54920 0.4270 +10877 55748 0.5470 +10877 55794 0.4240 +10877 81494 0.8140 +10877 84658 0.4160 +10877 343450 0.4280 +10877 360023 0.4990 +10877 387715 0.5160 +10878 11093 0.8240 +10878 23191 0.4870 +10878 25974 0.5820 +10878 55329 0.4160 +10878 55748 0.4890 +10878 79841 0.4950 +10878 81494 0.7690 +10878 81614 0.6670 +10878 83872 0.6000 +10878 84839 0.4800 +10878 114791 0.7750 +10878 150280 0.5060 +10878 387715 0.6240 +10880 10881 0.5990 +10880 11034 0.4450 +10880 11258 0.6070 +10880 23617 0.5310 +10880 26330 0.4300 +10880 51164 0.6980 +10880 55860 0.7400 +10880 80022 0.4250 +10880 81569 0.5660 +10880 84516 0.6730 +10880 84617 0.5390 +10880 85452 0.4080 +10880 93661 0.4850 +10880 93973 0.4590 +10880 168090 0.4030 +10880 284382 0.5750 +10880 285598 0.4390 +10880 374973 0.4450 +10880 375189 0.5050 +10881 11258 0.6070 +10881 26136 0.9490 +10881 51164 0.6980 +10881 55740 0.8980 +10881 55860 0.7400 +10881 80705 0.4290 +10881 81569 0.5660 +10881 81833 0.4270 +10881 84516 0.6730 +10881 89869 0.5880 +10881 93661 0.4380 +10881 93973 0.4590 +10881 114336 0.5070 +10881 146852 0.5000 +10881 284382 0.6040 +10881 284680 0.4690 +10881 375189 0.4830 +10882 65065 0.4470 +10882 84570 0.4500 +10882 114897 0.4970 +10882 115908 0.4380 +10882 165257 0.4670 +10882 255631 0.4440 +10882 338761 0.4560 +10882 338872 0.6790 +10882 342035 0.4400 +10882 390664 0.6240 +10882 100507050 0.4030 +10884 11222 0.9800 +10884 23107 0.9900 +10884 26164 0.8410 +10884 26284 0.8920 +10884 26589 0.9780 +10884 27324 0.6090 +10884 28957 0.9720 +10884 28973 0.9510 +10884 28977 0.9700 +10884 28998 0.9730 +10884 29074 0.9820 +10884 29088 0.9670 +10884 29093 0.9650 +10884 29960 0.8080 +10884 51021 0.9770 +10884 51023 0.9330 +10884 51069 0.9680 +10884 51073 0.9700 +10884 51081 0.9860 +10884 51116 0.9760 +10884 51121 0.5300 +10884 51250 0.8230 +10884 51253 0.9920 +10884 51258 0.9790 +10884 51263 0.9790 +10884 51264 0.9600 +10884 51318 0.9790 +10884 51373 0.9790 +10884 51574 0.5140 +10884 51642 0.9770 +10884 51649 0.9830 +10884 51650 0.9770 +10884 54148 0.9800 +10884 54460 0.9780 +10884 54516 0.6510 +10884 54534 0.9720 +10884 54948 0.9690 +10884 54998 0.9630 +10884 55037 0.9750 +10884 55052 0.9810 +10884 55168 0.9860 +10884 55173 0.9740 +10884 55178 0.9560 +10884 55794 0.9190 +10884 56945 0.9860 +10884 57129 0.9670 +10884 60488 0.9720 +10884 63875 0.9820 +10884 63931 0.9720 +10884 64432 0.9780 +10884 64928 0.9630 +10884 64949 0.9700 +10884 64951 0.9760 +10884 64960 0.9800 +10884 64963 0.9720 +10884 64965 0.9860 +10884 64968 0.9640 +10884 64969 0.9760 +10884 64975 0.9930 +10884 64976 0.9800 +10884 64978 0.9610 +10884 64979 0.8510 +10884 64981 0.9680 +10884 64983 0.9810 +10884 65003 0.9820 +10884 65005 0.9690 +10884 65008 0.9780 +10884 65080 0.9810 +10884 65993 0.9770 +10884 78988 0.9620 +10884 79590 0.9780 +10884 83858 0.4180 +10884 84311 0.9740 +10884 84340 0.8730 +10884 84545 0.9630 +10884 85476 0.9180 +10884 85865 0.8800 +10884 90480 0.9830 +10884 91574 0.8380 +10884 92170 0.8650 +10884 92259 0.8570 +10884 92399 0.8890 +10884 115416 0.9580 +10884 116540 0.9580 +10884 116541 0.9160 +10884 118487 0.9730 +10884 122704 0.9740 +10884 124995 0.9690 +10884 128308 0.9870 +10884 130916 0.8340 +10884 152110 0.4470 +10884 219402 0.5660 +10884 219927 0.9670 +10884 387338 0.8250 +10884 127898561 0.8110 +10885 10969 0.7930 +10885 10980 0.5760 +10885 10985 0.4060 +10885 11056 0.6970 +10885 11103 0.9990 +10885 11128 0.7800 +10885 11137 0.9610 +10885 11180 0.6890 +10885 11260 0.4320 +10885 11340 0.7720 +10885 22803 0.5790 +10885 22894 0.5330 +10885 22984 0.9970 +10885 23016 0.7150 +10885 23029 0.4200 +10885 23054 0.7490 +10885 23076 0.7960 +10885 23160 0.9990 +10885 23204 0.6330 +10885 23212 0.7890 +10885 23223 0.8780 +10885 23246 0.9730 +10885 23378 0.8370 +10885 23404 0.8310 +10885 23481 0.9140 +10885 23517 0.9850 +10885 23560 0.9510 +10885 25879 0.9990 +10885 25885 0.9480 +10885 25926 0.9510 +10885 25983 0.9970 +10885 26155 0.9640 +10885 26156 0.9930 +10885 26168 0.6120 +10885 26263 0.4430 +10885 26354 0.8570 +10885 26574 0.9980 +10885 26995 0.5050 +10885 27037 0.5720 +10885 27042 0.8960 +10885 27043 0.5560 +10885 27292 0.9860 +10885 27297 0.4040 +10885 27340 0.9990 +10885 27341 0.9970 +10885 28987 0.9110 +10885 29777 0.9730 +10885 29889 0.8830 +10885 29997 0.5280 +10885 30000 0.4040 +10885 30836 0.9900 +10885 51010 0.7970 +10885 51013 0.8100 +10885 51018 0.4580 +10885 51065 0.8540 +10885 51068 0.7730 +10885 51073 0.5570 +10885 51077 0.9950 +10885 51081 0.7000 +10885 51082 0.4060 +10885 51096 0.9990 +10885 51106 0.6760 +10885 51118 0.9960 +10885 51149 0.7700 +10885 51154 0.7520 +10885 51187 0.6920 +10885 51202 0.6560 +10885 51319 0.5550 +10885 51388 0.8830 +10885 51406 0.8050 +10885 51490 0.6070 +10885 51538 0.4070 +10885 51575 0.8770 +10885 51602 0.9990 +10885 54433 0.7740 +10885 54475 0.6710 +10885 54512 0.7940 +10885 54517 0.7180 +10885 54552 0.8420 +10885 54555 0.7320 +10885 54606 0.8930 +10885 54663 0.5930 +10885 54700 0.6400 +10885 54834 0.6230 +10885 54881 0.7780 +10885 54888 0.4580 +10885 55003 0.6280 +10885 55127 0.9990 +10885 55131 0.9130 +10885 55140 0.4250 +10885 55153 0.9260 +10885 55170 0.5610 +10885 55226 0.9980 +10885 55239 0.4540 +10885 55272 0.9930 +10885 55299 0.8890 +10885 55319 0.4600 +10885 55324 0.4240 +10885 55341 0.8960 +10885 55601 0.5780 +10885 55622 0.8880 +10885 55651 0.7180 +10885 55695 0.5340 +10885 55703 0.8300 +10885 55720 0.9390 +10885 55759 0.9540 +10885 55760 0.7690 +10885 55781 0.6710 +10885 55794 0.4090 +10885 55813 0.9990 +10885 56252 0.4520 +10885 56341 0.5310 +10885 56342 0.7210 +10885 56902 0.9860 +10885 56915 0.8510 +10885 56919 0.5200 +10885 56937 0.5310 +10885 57050 0.9990 +10885 57062 0.7220 +10885 57418 0.8010 +10885 57647 0.8920 +10885 57696 0.4930 +10885 60487 0.6100 +10885 60528 0.4180 +10885 60625 0.4540 +10885 64118 0.5970 +10885 64216 0.8490 +10885 64318 0.8680 +10885 64425 0.8550 +10885 64434 0.9860 +10885 64794 0.8470 +10885 64960 0.6440 +10885 64963 0.8010 +10885 65083 0.9990 +10885 65095 0.7430 +10885 79038 0.4590 +10885 79039 0.7530 +10885 79050 0.9990 +10885 79159 0.5710 +10885 79571 0.7490 +10885 79665 0.4030 +10885 79707 0.6340 +10885 79711 0.5440 +10885 79954 0.9980 +10885 79979 0.5690 +10885 80135 0.7550 +10885 80324 0.4320 +10885 81627 0.4570 +10885 81887 0.7370 +10885 83448 0.5690 +10885 83480 0.4140 +10885 83732 0.6310 +10885 83743 0.8900 +10885 84128 0.9990 +10885 84135 0.9990 +10885 84154 0.9120 +10885 84172 0.9580 +10885 84294 0.8350 +10885 84319 0.4490 +10885 84365 0.8960 +10885 84549 0.8610 +10885 84916 0.9990 +10885 84946 0.7910 +10885 85395 0.4020 +10885 87178 0.4050 +10885 88745 0.6380 +10885 90121 0.5750 +10885 90381 0.5420 +10885 90441 0.4800 +10885 90826 0.4260 +10885 91582 0.8050 +10885 92856 0.9980 +10885 115752 0.4350 +10885 116966 0.8150 +10885 117246 0.8960 +10885 118460 0.6800 +10885 122402 0.4920 +10885 124739 0.4100 +10885 126402 0.6380 +10885 128061 0.8030 +10885 129563 0.4270 +10885 140032 0.6180 +10885 142940 0.4220 +10885 146212 0.6020 +10885 153443 0.8490 +10885 161424 0.8770 +10885 165545 0.7280 +10885 200162 0.5340 +10885 221078 0.8210 +10885 221830 0.7930 +10885 285855 0.4410 +10885 317781 0.4870 +10885 345630 0.9650 +10885 387338 0.4060 +10885 641776 0.4480 +10885 643909 0.4480 +10885 692312 0.6900 +10885 728524 0.4480 +10885 100996746 0.4480 +10885 105180390 0.4480 +10885 105180391 0.4480 +10885 114483834 0.4390 +10886 23236 0.5170 +10886 51052 0.7940 +10886 51083 0.6940 +10886 64106 0.9400 +10886 64111 0.9070 +10886 115557 0.5130 +10886 347148 0.9070 +10887 10911 0.4990 +10887 23236 0.5020 +10887 23620 0.4330 +10887 51738 0.5900 +10887 54465 0.4390 +10887 56923 0.4310 +10887 60675 0.9960 +10887 79577 0.5140 +10887 84432 0.9990 +10887 84539 0.4100 +10887 84634 0.4310 +10887 112609 0.7520 +10887 115557 0.4990 +10887 116143 0.5010 +10887 128674 0.4150 +10887 129521 0.5980 +10887 257313 0.5070 +10887 387129 0.4150 +10887 594857 0.5330 +10888 11245 0.5210 +10888 11250 0.5250 +10888 27344 0.6940 +10888 29909 0.7260 +10888 50943 0.5940 +10888 53831 0.4900 +10888 54112 0.4480 +10888 60675 0.6570 +10888 64375 0.4430 +10888 80045 0.4970 +10888 83450 0.4340 +10888 84432 0.7000 +10888 124274 0.4530 +10888 168507 0.4300 +10888 200726 0.4180 +10888 285601 0.6780 +10888 347148 0.5330 +10890 10938 0.4660 +10890 10971 0.6270 +10890 11336 0.7730 +10890 23011 0.4520 +10890 23062 0.4910 +10890 23162 0.6690 +10890 23216 0.9610 +10890 23233 0.4530 +10890 23265 0.7600 +10890 23301 0.8960 +10890 23637 0.5370 +10890 25923 0.4220 +10890 27243 0.4370 +10890 30845 0.6310 +10890 30846 0.8420 +10890 51552 0.8050 +10890 51622 0.4820 +10890 51699 0.4740 +10890 54536 0.9690 +10890 54734 0.4500 +10890 55004 0.5380 +10890 55255 0.4580 +10890 55296 0.4330 +10890 55647 0.4640 +10890 55667 0.7730 +10890 55737 0.6760 +10890 55763 0.7820 +10890 55770 0.8080 +10890 55930 0.6170 +10890 57460 0.6220 +10890 57511 0.4460 +10890 57521 0.5250 +10890 57553 0.6730 +10890 58533 0.4150 +10890 60412 0.8150 +10890 64601 0.5380 +10890 64780 0.9740 +10890 64786 0.4170 +10890 65018 0.4040 +10890 79058 0.5290 +10890 79083 0.5090 +10890 79778 0.6060 +10890 79890 0.4270 +10890 81876 0.6780 +10890 83452 0.4830 +10890 84315 0.4730 +10890 85377 0.7480 +10890 94120 0.4280 +10890 115704 0.4640 +10890 117177 0.7740 +10890 118813 0.6170 +10890 120892 0.7680 +10890 140775 0.4710 +10890 149371 0.7510 +10890 153129 0.4060 +10890 196383 0.9680 +10890 203228 0.5180 +10890 221960 0.4760 +10890 254102 0.5970 +10890 283229 0.4060 +10890 353116 0.9780 +10890 401409 0.4690 +10891 10915 0.6520 +10891 10935 0.4200 +10891 10946 0.5110 +10891 10973 0.5200 +10891 10992 0.4290 +10891 11059 0.5140 +10891 11315 0.5510 +10891 22926 0.7860 +10891 22933 0.7870 +10891 22938 0.8550 +10891 23020 0.7990 +10891 23028 0.5480 +10891 23054 0.5570 +10891 23082 0.5840 +10891 23097 0.4990 +10891 23143 0.4530 +10891 23175 0.9470 +10891 23373 0.6610 +10891 23389 0.4990 +10891 23408 0.6380 +10891 23409 0.6700 +10891 23410 0.9800 +10891 23411 0.9990 +10891 23417 0.5460 +10891 23435 0.4400 +10891 23450 0.4760 +10891 23451 0.4140 +10891 23524 0.4320 +10891 24144 0.5200 +10891 25828 0.4090 +10891 25929 0.4240 +10891 25949 0.6330 +10891 26291 0.7710 +10891 26471 0.4130 +10891 27339 0.8040 +10891 28999 0.4460 +10891 29079 0.7250 +10891 29915 0.4410 +10891 29950 0.4340 +10891 50507 0.5240 +10891 50804 0.4420 +10891 51003 0.4990 +10891 51024 0.7270 +10891 51085 0.6050 +10891 51094 0.7370 +10891 51099 0.4370 +10891 51106 0.8210 +10891 51129 0.6890 +10891 51340 0.8430 +10891 51362 0.6560 +10891 51422 0.9330 +10891 51503 0.7660 +10891 51547 0.6270 +10891 51548 0.6520 +10891 51586 0.5090 +10891 51634 0.5110 +10891 51684 0.4500 +10891 51738 0.4540 +10891 51806 0.4320 +10891 53632 0.9370 +10891 54205 0.7460 +10891 54704 0.5040 +10891 54797 0.4990 +10891 54883 0.4440 +10891 55090 0.5000 +10891 55285 0.4290 +10891 55294 0.4410 +10891 55486 0.4100 +10891 55588 0.4990 +10891 55599 0.4290 +10891 55669 0.7360 +10891 55702 0.5140 +10891 55818 0.5880 +10891 55902 0.6300 +10891 56652 0.4190 +10891 56729 0.5130 +10891 56947 0.5810 +10891 56949 0.8290 +10891 57104 0.7080 +10891 57461 0.5540 +10891 57521 0.6830 +10891 57546 0.5220 +10891 57703 0.5340 +10891 57818 0.6730 +10891 59269 0.4990 +10891 60386 0.5120 +10891 63924 0.4180 +10891 63976 0.9950 +10891 64216 0.8500 +10891 64641 0.5080 +10891 64764 0.9060 +10891 64784 0.7740 +10891 65018 0.7600 +10891 79071 0.4180 +10891 79446 0.6550 +10891 79602 0.7940 +10891 79631 0.4820 +10891 79753 0.4990 +10891 80196 0.4320 +10891 80306 0.5300 +10891 80331 0.5380 +10891 81631 0.5330 +10891 81857 0.5190 +10891 83401 0.6740 +10891 83443 0.4250 +10891 83938 0.5340 +10891 84246 0.4990 +10891 84316 0.4690 +10891 84532 0.4510 +10891 84557 0.4140 +10891 84649 0.5070 +10891 84666 0.4800 +10891 84676 0.5440 +10891 84699 0.9500 +10891 84701 0.6210 +10891 84808 0.6780 +10891 84811 0.4860 +10891 84844 0.4080 +10891 84967 0.5100 +10891 85476 0.5250 +10891 90390 0.5590 +10891 90550 0.4140 +10891 90993 0.9010 +10891 91860 0.4370 +10891 92579 0.6670 +10891 96459 0.4580 +10891 112398 0.6440 +10891 112399 0.4800 +10891 112950 0.4990 +10891 114548 0.4760 +10891 114799 0.4080 +10891 114907 0.6830 +10891 126129 0.6810 +10891 126259 0.4690 +10891 133522 0.6690 +10891 137902 0.6150 +10891 139341 0.4820 +10891 146713 0.4050 +10891 147650 0.4690 +10891 148327 0.9040 +10891 151306 0.4290 +10891 152831 0.5160 +10891 154007 0.4320 +10891 155061 0.7590 +10891 157570 0.4080 +10891 163688 0.4330 +10891 164045 0.5220 +10891 200186 0.9190 +10891 219623 0.7040 +10891 220074 0.5340 +10891 222183 0.4420 +10891 252995 0.7950 +10891 253260 0.4020 +10891 256536 0.6100 +10891 257202 0.9570 +10891 376497 0.4810 +10891 400569 0.4990 +10891 440093 0.4750 +10891 440503 0.6600 +10891 440686 0.4750 +10891 493869 0.9570 +10891 653604 0.4750 +10891 100132074 0.5920 +10891 100534599 0.5540 +10892 10987 0.6200 +10892 23118 0.9040 +10892 26253 0.6250 +10892 29108 0.7230 +10892 29760 0.4350 +10892 29775 0.9990 +10892 54542 0.5130 +10892 55072 0.7860 +10892 64170 0.9990 +10892 64332 0.4920 +10892 64581 0.8030 +10892 79092 0.9290 +10892 79654 0.4640 +10892 80149 0.5850 +10892 81858 0.7530 +10892 84433 0.9990 +10892 84807 0.4280 +10892 90268 0.6610 +10892 93978 0.6560 +10892 115650 0.6390 +10892 149041 0.5840 +10892 257397 0.7710 +10892 338339 0.5280 +10892 102723407 0.6510 +10893 11173 0.4280 +10893 23426 0.6770 +10893 64386 0.4760 +10893 118932 0.4220 +10894 10990 0.5110 +10894 11261 0.5280 +10894 11326 0.4960 +10894 22915 0.4470 +10894 22918 0.4440 +10894 23166 0.4760 +10894 23657 0.4420 +10894 30835 0.4880 +10894 50943 0.4060 +10894 51266 0.4380 +10894 51554 0.5240 +10894 51705 0.7460 +10894 54345 0.6710 +10894 54567 0.4610 +10894 55576 0.8860 +10894 56920 0.4910 +10894 80381 0.4260 +10894 83483 0.5430 +10894 90865 0.4110 +10894 90952 0.5850 +10894 91937 0.5240 +10894 123803 0.5730 +10894 137902 0.4580 +10894 143903 0.5600 +10894 147372 0.5250 +10894 161198 0.4130 +10894 165530 0.4910 +10894 339390 0.6110 +10897 10945 0.4090 +10897 10999 0.4130 +10897 11001 0.4840 +10897 11015 0.5170 +10897 25844 0.7040 +10897 25972 0.4050 +10897 51124 0.4080 +10897 51290 0.4840 +10897 51533 0.4460 +10897 51614 0.4330 +10897 54432 0.4900 +10897 55690 0.4220 +10897 55829 0.5720 +10897 57823 0.4560 +10897 58477 0.4270 +10897 64083 0.6820 +10897 78992 0.6540 +10897 81555 0.9960 +10897 81876 0.4460 +10897 84272 0.8380 +10897 91452 0.4330 +10897 285525 0.7400 +10897 286451 0.6370 +10897 100137049 0.4650 +10898 10914 0.9500 +10898 10978 0.9330 +10898 11051 0.9900 +10898 11052 0.9780 +10898 11097 0.4270 +10898 11100 0.4290 +10898 22803 0.4040 +10898 22828 0.6040 +10898 22916 0.5420 +10898 23144 0.4750 +10898 23165 0.4620 +10898 23225 0.4200 +10898 23279 0.5200 +10898 23283 0.9440 +10898 23511 0.4140 +10898 23513 0.4260 +10898 23586 0.4470 +10898 23636 0.4720 +10898 26024 0.4030 +10898 26155 0.8910 +10898 26986 0.4450 +10898 29101 0.9230 +10898 29894 0.9990 +10898 51585 0.9530 +10898 51659 0.4280 +10898 51692 0.9990 +10898 53371 0.4210 +10898 53981 0.9990 +10898 54973 0.5710 +10898 55339 0.9990 +10898 55706 0.4110 +10898 55746 0.4780 +10898 55756 0.5100 +10898 55922 0.5610 +10898 56302 0.4330 +10898 56903 0.8520 +10898 57122 0.4730 +10898 57721 0.4250 +10898 64428 0.5430 +10898 64852 0.5040 +10898 64895 0.8560 +10898 79023 0.4890 +10898 79042 0.8080 +10898 79084 0.4110 +10898 79577 0.5410 +10898 79869 0.9790 +10898 79902 0.5060 +10898 80335 0.9640 +10898 80746 0.8090 +10898 81608 0.9990 +10898 81929 0.4470 +10898 84955 0.6270 +10898 84967 0.4360 +10898 85403 0.4200 +10898 116461 0.8010 +10898 124245 0.5060 +10898 129401 0.4650 +10898 134353 0.4680 +10898 136157 0.7680 +10898 143506 0.7680 +10898 196120 0.7680 +10898 283989 0.8100 +10898 348995 0.5220 +10898 390031 0.7680 +10898 390033 0.7680 +10898 441584 0.7680 +10898 642843 0.5480 +10898 643988 0.5170 +10898 100101267 0.4390 +10899 23513 0.5750 +10899 56288 0.5950 +10899 64398 0.4470 +10899 83604 0.4410 +10899 375743 0.4330 +10900 10928 0.6230 +10900 22848 0.7930 +10900 23435 0.5470 +10900 23467 0.4030 +10900 23542 0.4180 +10900 23623 0.7960 +10900 23762 0.5630 +10900 50632 0.4240 +10900 51123 0.4640 +10900 51629 0.9010 +10900 55266 0.5050 +10900 55707 0.7760 +10900 56970 0.4590 +10900 58513 0.6900 +10900 78997 0.4350 +10900 79089 0.4110 +10900 79877 0.4870 +10900 85021 0.6660 +10900 90668 0.4410 +10900 122416 0.5090 +10900 146330 0.5050 +10900 154661 0.4680 +10900 222658 0.4090 +10900 284339 0.6040 +10900 285180 0.4180 +10900 399697 0.4190 +10900 643418 0.4150 +10901 10935 0.4900 +10901 23410 0.4610 +10901 25797 0.4550 +10901 27349 0.4100 +10901 29090 0.4440 +10901 51109 0.4770 +10901 51179 0.4040 +10901 53630 0.9250 +10901 54884 0.9470 +10901 54995 0.6170 +10901 55331 0.4700 +10901 79444 0.4690 +10901 79774 0.4500 +10901 80221 0.4070 +10901 84263 0.4050 +10901 84869 0.5750 +10901 91977 0.4510 +10901 112812 0.4640 +10901 121214 0.4830 +10901 132949 0.4240 +10901 158835 0.9030 +10901 219743 0.5730 +10901 284323 0.5200 +10901 317749 0.7170 +10901 338872 0.4010 +10901 339761 0.9190 +10901 373156 0.4090 +10901 440574 0.4410 +10901 728340 0.4180 +10902 10933 0.9980 +10902 10943 0.9050 +10902 11091 0.7220 +10902 22938 0.5300 +10902 23264 0.4320 +10902 23476 0.6660 +10902 26122 0.9830 +10902 26354 0.4270 +10902 27154 0.4970 +10902 27332 0.4750 +10902 29844 0.9050 +10902 51105 0.6590 +10902 51230 0.7660 +10902 51306 0.4480 +10902 51377 0.9000 +10902 51412 0.6300 +10902 54495 0.4460 +10902 54556 0.9970 +10902 54617 0.9080 +10902 54799 0.9900 +10902 54891 0.7420 +10902 54934 0.7300 +10902 55167 0.9000 +10902 55257 0.9940 +10902 55683 0.7380 +10902 55689 0.6180 +10902 55700 0.4630 +10902 55929 0.9990 +10902 56970 0.4440 +10902 57062 0.4580 +10902 57634 0.9990 +10902 57649 0.5110 +10902 57696 0.4060 +10902 57798 0.4110 +10902 58472 0.4250 +10902 64431 0.6980 +10902 64769 0.9980 +10902 79913 0.9010 +10902 80314 0.9570 +10902 81611 0.9500 +10902 83444 0.9080 +10902 84148 0.9410 +10902 84289 0.5040 +10902 85235 0.4530 +10902 89941 0.4590 +10902 90378 0.4560 +10902 92815 0.4530 +10902 93973 0.9050 +10902 94239 0.5810 +10902 125476 0.9000 +10902 139628 0.7920 +10902 151050 0.5570 +10902 219749 0.4020 +10902 221613 0.4530 +10902 221895 0.8450 +10902 255626 0.7110 +10902 283150 0.8370 +10902 283899 0.9000 +10902 284058 0.7370 +10902 317772 0.4530 +10902 339287 0.9150 +10902 340602 0.4840 +10902 345651 0.5690 +10903 25829 0.4230 +10903 26538 0.4470 +10903 54545 0.4780 +10903 54893 0.4480 +10903 80273 0.4360 +10903 136332 0.4950 +10903 221294 0.4220 +10904 11264 0.4090 +10904 23761 0.4380 +10904 26173 0.4130 +10904 26999 0.6840 +10904 27243 0.5160 +10904 51305 0.4910 +10904 51582 0.6300 +10904 51666 0.4750 +10904 54551 0.4900 +10904 57231 0.4080 +10904 64921 0.4460 +10904 83548 0.6380 +10904 150684 0.4600 +10904 266812 0.4490 +10904 390616 0.4040 +10905 11253 0.9440 +10905 11282 0.4350 +10905 22796 0.6180 +10905 23193 0.4230 +10905 25839 0.5800 +10905 27333 0.5700 +10905 51272 0.5000 +10905 55132 0.4120 +10905 55346 0.4190 +10905 55833 0.4200 +10905 56886 0.4410 +10905 57134 0.9060 +10905 57511 0.5360 +10905 63908 0.5000 +10905 83452 0.5080 +10905 83548 0.5300 +10905 91949 0.5680 +10905 121665 0.4440 +10906 10961 0.4300 +10906 23552 0.5440 +10906 23586 0.6510 +10906 29887 0.4020 +10906 51513 0.4560 +10906 51608 0.4550 +10906 54838 0.4580 +10906 54849 0.4440 +10906 55603 0.5740 +10906 55768 0.7780 +10906 57506 0.6260 +10906 79758 0.5120 +10906 80018 0.6250 +10906 80724 0.4300 +10906 83666 0.5010 +10906 89894 0.5130 +10906 116071 0.4730 +10906 118932 0.4100 +10906 119032 0.4790 +10906 140691 0.4130 +10906 145942 0.4600 +10906 148022 0.6350 +10906 200035 0.4610 +10906 259266 0.4820 +10906 283450 0.4330 +10906 338661 0.5420 +10906 402415 0.4020 +10907 10915 0.8030 +10907 10946 0.9900 +10907 10973 0.5020 +10907 10992 0.9900 +10907 11017 0.9230 +10907 11157 0.9970 +10907 11193 0.9800 +10907 11267 0.6030 +10907 22826 0.5230 +10907 22938 0.5940 +10907 23020 0.9990 +10907 23450 0.9900 +10907 23451 0.9920 +10907 23517 0.8260 +10907 23524 0.9150 +10907 23658 0.9930 +10907 23759 0.4410 +10907 24148 0.9990 +10907 25804 0.9940 +10907 25980 0.7970 +10907 26121 0.9990 +10907 27238 0.4080 +10907 27258 0.9930 +10907 27336 0.5220 +10907 27339 0.6280 +10907 51071 0.4200 +10907 51340 0.4160 +10907 51362 0.8250 +10907 51503 0.4490 +10907 51593 0.8120 +10907 51602 0.4420 +10907 51634 0.9430 +10907 51639 0.8330 +10907 51645 0.5400 +10907 51690 0.9960 +10907 51691 0.9940 +10907 51729 0.8930 +10907 51747 0.5100 +10907 53938 0.4240 +10907 54957 0.5890 +10907 55110 0.9160 +10907 55234 0.9800 +10907 55628 0.4090 +10907 55651 0.6270 +10907 55696 0.6070 +10907 55702 0.4670 +10907 55749 0.5330 +10907 56259 0.4420 +10907 56949 0.6340 +10907 57461 0.4390 +10907 57703 0.9110 +10907 57794 0.5660 +10907 57819 0.9930 +10907 59286 0.9720 +10907 79171 0.9190 +10907 79753 0.9420 +10907 79863 0.5500 +10907 80148 0.6730 +10907 83443 0.9910 +10907 84316 0.5030 +10907 84811 0.9400 +10907 84844 0.9910 +10907 84950 0.9870 +10907 121268 0.5990 +10907 126259 0.4980 +10907 133396 0.4740 +10907 147650 0.4980 +10907 151903 0.5400 +10907 153527 0.9940 +10907 164045 0.4940 +10907 196074 0.4280 +10907 284325 0.6130 +10907 440498 0.4820 +10908 10939 0.4740 +10908 11128 0.6540 +10908 11145 0.9230 +10908 11154 0.5060 +10908 11160 0.4800 +10908 11313 0.9200 +10908 23111 0.8820 +10908 23204 0.4190 +10908 23259 0.6850 +10908 23312 0.4600 +10908 23400 0.5410 +10908 23431 0.4760 +10908 23503 0.6280 +10908 23659 0.9450 +10908 26090 0.5400 +10908 26279 0.7170 +10908 26580 0.5650 +10908 30814 0.7160 +10908 50487 0.6680 +10908 50640 0.7470 +10908 51062 0.4620 +10908 51099 0.4580 +10908 51308 0.4790 +10908 51324 0.8610 +10908 51368 0.4070 +10908 54476 0.5880 +10908 54726 0.5460 +10908 54947 0.6730 +10908 55703 0.6130 +10908 56261 0.9260 +10908 57104 0.5820 +10908 57165 0.8660 +10908 57192 0.7810 +10908 57406 0.5270 +10908 57552 0.4670 +10908 57617 0.4370 +10908 57679 0.4590 +10908 57704 0.6460 +10908 59271 0.4750 +10908 63874 0.4490 +10908 64600 0.7060 +10908 64837 0.4100 +10908 65055 0.5790 +10908 79073 0.4720 +10908 79152 0.6110 +10908 79888 0.7130 +10908 80055 0.4110 +10908 80208 0.8560 +10908 80339 0.4880 +10908 80764 0.4280 +10908 80821 0.6510 +10908 81544 0.4680 +10908 81579 0.6680 +10908 81926 0.4050 +10908 83451 0.4010 +10908 84647 0.6630 +10908 90678 0.4540 +10908 91574 0.4880 +10908 113612 0.5360 +10908 116985 0.5070 +10908 118813 0.5010 +10908 123606 0.5770 +10908 123745 0.7720 +10908 129642 0.9200 +10908 137492 0.5140 +10908 150379 0.4730 +10908 151056 0.9510 +10908 152815 0.4150 +10908 154141 0.9070 +10908 158584 0.5170 +10908 254531 0.9110 +10908 255189 0.7730 +10908 283748 0.7820 +10908 285848 0.5790 +10908 375775 0.9230 +10908 391013 0.6500 +10908 100137049 0.7320 +10910 10944 0.5040 +10910 10963 0.4870 +10910 11140 0.4780 +10910 11243 0.5840 +10910 11319 0.4820 +10910 23035 0.5750 +10910 23239 0.8830 +10910 23276 0.4250 +10910 23770 0.4300 +10910 25822 0.4410 +10910 25936 0.5170 +10910 26548 0.6980 +10910 26973 0.7290 +10910 27101 0.6340 +10910 51138 0.4900 +10910 53938 0.4270 +10910 55037 0.5270 +10910 55466 0.5770 +10910 55655 0.5310 +10910 55735 0.4400 +10910 55818 0.4420 +10910 57599 0.4080 +10910 64127 0.6120 +10910 64215 0.4140 +10910 79003 0.5170 +10910 79053 0.4130 +10910 79598 0.5250 +10910 79657 0.4040 +10910 79968 0.4200 +10910 79980 0.5190 +10910 84859 0.4160 +10910 114548 0.9580 +10910 115353 0.4470 +10910 144983 0.4360 +10910 147945 0.5580 +10910 160428 0.4480 +10910 165721 0.4920 +10910 100885848 0.4090 +10910 114483834 0.4950 +10911 23236 0.5080 +10911 23620 0.4990 +10911 50651 0.4150 +10911 51738 0.5530 +10911 55612 0.4050 +10911 56923 0.5310 +10911 57105 0.5000 +10911 60675 0.4720 +10911 84432 0.5140 +10911 84539 0.6790 +10911 84634 0.5390 +10911 114131 0.5270 +10911 115557 0.5170 +10911 128674 0.4990 +10911 129521 0.5850 +10911 257313 0.8950 +10911 387129 0.5070 +10911 594857 0.6070 +10912 11156 0.4030 +10912 26053 0.4010 +10912 26292 0.4040 +10912 27244 0.7460 +10912 50486 0.4400 +10912 54810 0.4070 +10912 64067 0.4080 +10912 78987 0.4100 +10912 81609 0.4560 +10912 85417 0.9160 +10912 90480 0.9710 +10912 112939 0.4240 +10912 134265 0.7100 +10912 146722 0.6240 +10913 23118 0.4570 +10913 25928 0.5070 +10913 27121 0.6290 +10913 27242 0.5750 +10913 51151 0.8360 +10913 51176 0.6890 +10913 54798 0.4320 +10913 54959 0.4640 +10913 55503 0.4590 +10913 60401 0.4420 +10913 80326 0.7120 +10913 124637 0.4210 +10913 128178 0.9990 +10913 283652 0.9020 +10913 344558 0.4530 +10914 10921 0.5010 +10914 10978 0.7080 +10914 11044 0.8270 +10914 11051 0.8980 +10914 11052 0.9480 +10914 11065 0.4140 +10914 11261 0.6080 +10914 11338 0.9740 +10914 22803 0.7620 +10914 22828 0.4660 +10914 22849 0.5010 +10914 22894 0.6640 +10914 22916 0.9210 +10914 23016 0.4660 +10914 23064 0.4660 +10914 23144 0.5740 +10914 23211 0.5670 +10914 23244 0.4260 +10914 23283 0.9210 +10914 23318 0.8760 +10914 23369 0.5510 +10914 23405 0.6410 +10914 23411 0.4340 +10914 23517 0.9950 +10914 25983 0.7010 +10914 26523 0.6350 +10914 26986 0.8100 +10914 27161 0.4760 +10914 27257 0.4890 +10914 27316 0.4830 +10914 29101 0.7910 +10914 29102 0.5960 +10914 29883 0.4200 +10914 29894 0.9980 +10914 51010 0.4410 +10914 51013 0.4090 +10914 51095 0.4260 +10914 51362 0.8440 +10914 51585 0.9490 +10914 51692 0.9890 +10914 53981 0.9870 +10914 54464 0.6350 +10914 54512 0.4550 +10914 54815 0.4300 +10914 54855 0.4350 +10914 54973 0.6050 +10914 55149 0.9370 +10914 55339 0.9830 +10914 55361 0.5490 +10914 55596 0.4320 +10914 55756 0.5220 +10914 56903 0.9020 +10914 57187 0.4270 +10914 57710 0.5770 +10914 64282 0.7870 +10914 64421 0.4770 +10914 64506 0.8720 +10914 64848 0.5120 +10914 64852 0.9520 +10914 64858 0.4720 +10914 64895 0.9090 +10914 65110 0.4570 +10914 79084 0.6150 +10914 79577 0.4670 +10914 79670 0.6150 +10914 79869 0.8060 +10914 79882 0.5490 +10914 80315 0.5180 +10914 80335 0.8580 +10914 80336 0.4310 +10914 81608 0.9860 +10914 81892 0.5400 +10914 84186 0.9950 +10914 84524 0.5080 +10914 85302 0.4470 +10914 87178 0.5940 +10914 91746 0.5200 +10914 115752 0.4440 +10914 118460 0.4340 +10914 129563 0.4890 +10914 132864 0.5270 +10914 136157 0.4630 +10914 143506 0.4630 +10914 143689 0.4070 +10914 154197 0.6080 +10914 167153 0.8720 +10914 167227 0.5000 +10914 196120 0.4630 +10914 196441 0.8640 +10914 376940 0.5130 +10914 390031 0.4630 +10914 390033 0.4630 +10914 441584 0.4630 +10914 642843 0.6680 +10914 643988 0.4630 +10914 100529063 0.4800 +10915 10921 0.4300 +10915 10946 0.9880 +10915 10973 0.5780 +10915 10992 0.9300 +10915 11052 0.4850 +10915 11157 0.8040 +10915 11193 0.8450 +10915 11325 0.4440 +10915 11338 0.7670 +10915 22826 0.8200 +10915 22916 0.8400 +10915 22938 0.9870 +10915 23020 0.9760 +10915 23082 0.6030 +10915 23091 0.4160 +10915 23210 0.4180 +10915 23350 0.7410 +10915 23360 0.6070 +10915 23450 0.9770 +10915 23451 0.9910 +10915 23476 0.7030 +10915 23510 0.5140 +10915 23517 0.8310 +10915 23524 0.8330 +10915 23658 0.8290 +10915 23759 0.4460 +10915 24148 0.8240 +10915 25804 0.8670 +10915 27238 0.4760 +10915 27258 0.8110 +10915 27336 0.9550 +10915 27339 0.9090 +10915 29072 0.4160 +10915 51340 0.9260 +10915 51362 0.8660 +10915 51503 0.9810 +10915 51585 0.4060 +10915 51593 0.8390 +10915 51631 0.6340 +10915 51634 0.8570 +10915 51639 0.9700 +10915 51645 0.4140 +10915 51690 0.8070 +10915 51691 0.8080 +10915 51729 0.9710 +10915 51747 0.7920 +10915 53938 0.4740 +10915 54439 0.5380 +10915 55127 0.4160 +10915 55234 0.8080 +10915 55660 0.9460 +10915 55671 0.4020 +10915 55677 0.5090 +10915 55692 0.6690 +10915 55696 0.9850 +10915 55749 0.9200 +10915 55871 0.6620 +10915 56259 0.5250 +10915 56949 0.5600 +10915 57461 0.4790 +10915 57680 0.4840 +10915 57703 0.4640 +10915 57794 0.8180 +10915 57819 0.8330 +10915 58517 0.9530 +10915 59286 0.9580 +10915 65095 0.4510 +10915 79631 0.4100 +10915 79753 0.8120 +10915 83443 0.8050 +10915 83938 0.5670 +10915 84316 0.4160 +10915 84811 0.8400 +10915 84844 0.8230 +10915 84950 0.9950 +10915 84967 0.7470 +10915 84991 0.4870 +10915 85476 0.4260 +10915 114823 0.4130 +10915 126259 0.4160 +10915 140890 0.5780 +10915 147650 0.4160 +10915 150472 0.7480 +10915 151903 0.9000 +10915 153527 0.9930 +10915 164045 0.4750 +10915 220074 0.5670 +10915 552889 0.4150 +10915 100996928 0.6250 +10916 23137 0.5760 +10916 23481 0.4600 +10916 23495 0.4220 +10916 54780 0.6110 +10916 55188 0.6280 +10916 55705 0.4130 +10916 56673 0.4370 +10916 59348 0.4930 +10916 79665 0.4660 +10916 79677 0.4960 +10916 81887 0.5080 +10916 83932 0.5260 +10916 120892 0.5100 +10916 139599 0.4660 +10916 158511 0.7480 +10916 197370 0.5610 +10916 203068 0.5830 +10916 266743 0.6500 +10916 266812 0.4950 +10916 286053 0.4930 +10916 440957 0.4770 +10916 493861 0.5760 +10917 11119 0.4140 +10917 11120 0.4130 +10917 64921 0.5990 +10917 79908 0.4670 +10917 90864 0.4180 +10917 132949 0.4800 +10917 143662 0.5240 +10919 10951 0.9070 +10919 11065 0.5260 +10919 11075 0.4350 +10919 11083 0.4080 +10919 11091 0.7570 +10919 11107 0.6360 +10919 11143 0.4110 +10919 11335 0.9990 +10919 11345 0.4410 +10919 22933 0.4410 +10919 22992 0.5730 +10919 23028 0.9950 +10919 23030 0.5800 +10919 23067 0.5510 +10919 23081 0.7170 +10919 23126 0.5460 +10919 23133 0.5510 +10919 23135 0.7110 +10919 23186 0.9860 +10919 23269 0.5110 +10919 23405 0.5100 +10919 23411 0.5490 +10919 23429 0.5050 +10919 23435 0.4400 +10919 23468 0.9490 +10919 23476 0.7770 +10919 23512 0.8160 +10919 25906 0.4990 +10919 25942 0.8030 +10919 26013 0.5890 +10919 27161 0.6900 +10919 27338 0.5520 +10919 29072 0.4150 +10919 29128 0.9970 +10919 29882 0.5510 +10919 29945 0.5130 +10919 29947 0.7680 +10919 30827 0.7080 +10919 51111 0.6570 +10919 51317 0.5700 +10919 51343 0.5360 +10919 51412 0.4490 +10919 51433 0.5640 +10919 51434 0.5300 +10919 51529 0.4990 +10919 51548 0.4730 +10919 51564 0.4510 +10919 51780 0.5560 +10919 53615 0.7400 +10919 54145 0.6310 +10919 54496 0.4560 +10919 54531 0.4970 +10919 54737 0.6960 +10919 54790 0.4010 +10919 54815 0.5830 +10919 54904 0.7000 +10919 55089 0.4380 +10919 55170 0.6700 +10919 55174 0.4490 +10919 55693 0.4720 +10919 55729 0.4910 +10919 55766 0.5640 +10919 55818 0.6340 +10919 55869 0.7680 +10919 55888 0.4210 +10919 55904 0.5310 +10919 56254 0.5210 +10919 56341 0.4220 +10919 56916 0.6790 +10919 56949 0.4480 +10919 56950 0.6680 +10919 56979 0.6820 +10919 57459 0.5340 +10919 57504 0.6800 +10919 57708 0.7160 +10919 58499 0.6700 +10919 59335 0.6240 +10919 63978 0.4390 +10919 64682 0.5120 +10919 64754 0.5880 +10919 79101 0.4180 +10919 79365 0.4180 +10919 79577 0.4130 +10919 79723 0.5860 +10919 79813 0.9990 +10919 79823 0.8610 +10919 79885 0.5150 +10919 79918 0.4620 +10919 79923 0.4770 +10919 80312 0.5340 +10919 80335 0.4110 +10919 80853 0.5220 +10919 80854 0.8260 +10919 83746 0.6890 +10919 84108 0.7600 +10919 84146 0.9510 +10919 84148 0.4860 +10919 84193 0.4480 +10919 84444 0.7250 +10919 84458 0.4060 +10919 84661 0.4970 +10919 84678 0.5330 +10919 84787 0.7250 +10919 85236 0.6360 +10919 94239 0.5810 +10919 114799 0.4180 +10919 115426 0.6530 +10919 119504 0.5090 +10919 123169 0.4990 +10919 126961 0.9710 +10919 128312 0.7570 +10919 140685 0.4560 +10919 140836 0.5250 +10919 143689 0.6310 +10919 150572 0.4060 +10919 157570 0.4050 +10919 200424 0.4500 +10919 201516 0.4210 +10919 221037 0.4120 +10919 221656 0.8550 +10919 246184 0.5020 +10919 255626 0.7420 +10919 283248 0.4800 +10919 333932 0.9230 +10919 440093 0.9950 +10919 440686 0.9950 +10919 474382 0.5740 +10919 653604 0.9980 +10919 100532731 0.4120 +10920 10980 0.9990 +10920 10987 0.9990 +10920 11037 0.4990 +10920 11091 0.4370 +10920 23038 0.6420 +10920 23142 0.5030 +10920 23412 0.4240 +10920 23498 0.5620 +10920 25879 0.4690 +10920 26094 0.7590 +10920 27040 0.7200 +10920 27335 0.5590 +10920 27348 0.5360 +10920 28952 0.4110 +10920 28991 0.4160 +10920 29099 0.4280 +10920 29775 0.4450 +10920 29844 0.4290 +10920 50717 0.4430 +10920 50813 0.9990 +10920 51122 0.5010 +10920 51138 0.9990 +10920 51185 0.8240 +10920 51397 0.4710 +10920 51514 0.5460 +10920 53339 0.5420 +10920 54165 0.6960 +10920 54617 0.4130 +10920 54939 0.4160 +10920 54951 0.4410 +10920 55070 0.5150 +10920 55208 0.5020 +10920 55643 0.7610 +10920 55827 0.4610 +10920 55832 0.4680 +10920 57559 0.4060 +10920 64326 0.6940 +10920 64708 0.9990 +10920 79016 0.6040 +10920 79269 0.4080 +10920 79913 0.4130 +10920 80067 0.4260 +10920 80344 0.7850 +10920 83444 0.4160 +10920 84259 0.5260 +10920 84954 0.4700 +10920 85439 0.5340 +10920 93973 0.4110 +10920 112817 0.4330 +10920 115098 0.6690 +10920 115290 0.4400 +10920 122769 0.7810 +10920 123228 0.5080 +10920 125476 0.4050 +10920 149951 0.4210 +10920 150678 0.9870 +10920 150684 0.4410 +10920 170622 0.4520 +10920 286187 0.6610 +10920 375444 0.6890 +10920 387357 0.7200 +10920 404672 0.5080 +10921 10946 0.4480 +10921 10949 0.4510 +10921 10963 0.4560 +10921 10978 0.6000 +10921 11017 0.5760 +10921 11051 0.7610 +10921 11052 0.6580 +10921 11097 0.5070 +10921 11157 0.4560 +10921 11338 0.8680 +10921 22794 0.9290 +10921 22827 0.4800 +10921 22913 0.4860 +10921 22916 0.6700 +10921 22985 0.9990 +10921 23029 0.4190 +10921 23049 0.5990 +10921 23131 0.6810 +10921 23165 0.5510 +10921 23225 0.5460 +10921 23279 0.5360 +10921 23283 0.6900 +10921 23293 0.6880 +10921 23381 0.5550 +10921 23435 0.4500 +10921 23510 0.8610 +10921 23511 0.5340 +10921 23524 0.7110 +10921 23636 0.5420 +10921 23658 0.4360 +10921 24144 0.5320 +10921 24148 0.4340 +10921 25804 0.5320 +10921 25942 0.4350 +10921 25957 0.4460 +10921 25980 0.4510 +10921 26019 0.9990 +10921 26097 0.7220 +10921 26121 0.5880 +10921 26986 0.4290 +10921 27258 0.5590 +10921 27316 0.5770 +10921 27339 0.5160 +10921 29896 0.4090 +10921 51202 0.4040 +10921 51213 0.6300 +10921 51319 0.4420 +10921 51362 0.5790 +10921 51428 0.6370 +10921 51585 0.6550 +10921 51593 0.4280 +10921 51631 0.6350 +10921 51690 0.4240 +10921 51691 0.5150 +10921 51747 0.4280 +10921 51755 0.5600 +10921 53371 0.5990 +10921 53981 0.4680 +10921 55110 0.9830 +10921 55181 0.4820 +10921 55234 0.4110 +10921 55339 0.4290 +10921 55421 0.4690 +10921 55629 0.6100 +10921 55660 0.8540 +10921 55692 0.4580 +10921 55706 0.5270 +10921 55746 0.5470 +10921 55802 0.5900 +10921 56006 0.4790 +10921 56903 0.4880 +10921 57018 0.5450 +10921 57122 0.5250 +10921 57187 0.6520 +10921 57703 0.5480 +10921 57819 0.5530 +10921 58517 0.5410 +10921 64221 0.5330 +10921 64895 0.4970 +10921 65109 0.9990 +10921 65110 0.9990 +10921 79023 0.6170 +10921 79171 0.4870 +10921 79228 0.5410 +10921 79576 0.5710 +10921 79753 0.6140 +10921 79869 0.6470 +10921 79882 0.4290 +10921 79902 0.5450 +10921 80145 0.5210 +10921 81608 0.6680 +10921 81929 0.5920 +10921 84248 0.6070 +10921 84271 0.6510 +10921 84321 0.5750 +10921 84324 0.6900 +10921 84530 0.6520 +10921 84950 0.7130 +10921 124245 0.6300 +10921 129401 0.5790 +10921 140890 0.6040 +10921 143884 0.5400 +10921 199746 0.5650 +10921 222183 0.4780 +10921 222194 0.4540 +10921 348995 0.6230 +10921 728642 0.8600 +10921 100101267 0.5210 +10922 22868 0.9450 +10922 26024 0.4880 +10922 26284 0.4270 +10922 26995 0.4200 +10922 51001 0.5000 +10922 51335 0.4280 +10922 54461 0.5090 +10922 54464 0.4910 +10922 54963 0.5400 +10922 55149 0.4110 +10922 55794 0.5500 +10922 57410 0.4870 +10922 60493 0.6470 +10922 60528 0.4670 +10922 64506 0.4860 +10922 79675 0.7490 +10922 81858 0.6470 +10922 83590 0.4550 +10922 84065 0.4720 +10922 84881 0.4850 +10922 285367 0.5150 +10923 10944 0.7780 +10923 10978 0.4740 +10923 11168 0.5640 +10923 11261 0.4580 +10923 22844 0.4180 +10923 23345 0.4430 +10923 23468 0.6070 +10923 23658 0.4110 +10923 27069 0.4190 +10923 29101 0.4770 +10923 51329 0.4560 +10923 51366 0.5160 +10923 51371 0.5560 +10923 51372 0.6540 +10923 51585 0.4060 +10923 54464 0.4840 +10923 54797 0.5690 +10923 55092 0.4050 +10923 57082 0.4430 +10923 80013 0.4050 +10923 80119 0.4180 +10923 84246 0.6210 +10923 84324 0.6550 +10923 84524 0.5090 +10923 84896 0.5340 +10923 115207 0.4180 +10923 200895 0.4050 +10923 400569 0.5840 +10923 112268293 0.5630 +10924 25774 0.4450 +10924 51362 0.4370 +10924 55627 0.4060 +10924 58472 0.4100 +10924 84280 0.4640 +10924 221806 0.4920 +10924 283237 0.5290 +10926 11073 0.8990 +10926 11168 0.6360 +10926 11169 0.7540 +10926 11200 0.9120 +10926 23594 0.9980 +10926 23595 0.8660 +10926 23626 0.5560 +10926 23649 0.6230 +10926 25836 0.4070 +10926 25842 0.4180 +10926 26271 0.5040 +10926 27085 0.5840 +10926 29935 0.5040 +10926 51053 0.4340 +10926 51339 0.6940 +10926 54107 0.6140 +10926 54962 0.6330 +10926 55055 0.4340 +10926 55388 0.9480 +10926 55536 0.6480 +10926 55723 0.5440 +10926 56655 0.5470 +10926 56852 0.6510 +10926 63922 0.4450 +10926 63967 0.8350 +10926 64785 0.7020 +10926 64946 0.4520 +10926 79892 0.7320 +10926 79915 0.4380 +10926 80174 0.6720 +10926 80198 0.4650 +10926 81620 0.9560 +10926 81669 0.4340 +10926 81930 0.4490 +10926 83540 0.4550 +10926 84126 0.6500 +10926 84296 0.8010 +10926 84515 0.7870 +10926 84717 0.4040 +10926 90381 0.9820 +10926 113130 0.4080 +10926 116211 0.4270 +10926 126520 0.5150 +10926 151246 0.4310 +10926 151648 0.4070 +10926 154661 0.5660 +10926 157777 0.4430 +10926 254394 0.6540 +10927 11091 0.4860 +10927 11143 0.4290 +10927 51231 0.4030 +10927 58529 0.4640 +10927 64506 0.4970 +10927 79005 0.4200 +10927 79142 0.4090 +10927 79693 0.8180 +10927 79968 0.4090 +10927 83860 0.4290 +10927 84619 0.4700 +10927 112869 0.4900 +10927 126961 0.9000 +10927 144097 0.9910 +10927 333932 0.9000 +10927 440093 0.9600 +10927 440686 0.9600 +10927 474343 0.8180 +10927 653604 0.9710 +10928 22800 0.9500 +10928 22808 0.9160 +10928 22848 0.8440 +10928 22905 0.7200 +10928 26100 0.4570 +10928 27306 0.4450 +10928 29924 0.8400 +10928 55040 0.7250 +10928 55333 0.4400 +10928 55770 0.6920 +10928 58487 0.4240 +10928 85021 0.9790 +10928 149371 0.7830 +10928 196463 0.5420 +10928 284427 0.4370 +10929 10949 0.6860 +10929 22827 0.4610 +10929 22913 0.4900 +10929 23283 0.5450 +10929 23543 0.4350 +10929 24144 0.5920 +10929 26528 0.4500 +10929 27316 0.5790 +10929 29896 0.8180 +10929 51631 0.7530 +10929 54715 0.4100 +10929 55544 0.5220 +10929 55692 0.5370 +10929 56000 0.6680 +10929 66037 0.4380 +10929 79753 0.4320 +10929 124245 0.5940 +10929 127262 0.5400 +10929 135295 0.5910 +10929 140890 0.7490 +10929 143884 0.5040 +10929 144983 0.4320 +10929 146713 0.4690 +10929 220988 0.6180 +10929 221662 0.5860 +10929 285386 0.5420 +10929 390748 0.5520 +10929 642659 0.5720 +10929 728343 0.7210 +10930 23676 0.4550 +10930 27350 0.5890 +10930 29895 0.6840 +10930 29974 0.7480 +10930 51778 0.4530 +10930 58529 0.4130 +10930 134637 0.4860 +10930 146862 0.6200 +10930 164668 0.6320 +10930 200315 0.6010 +10930 202333 0.4290 +10930 203859 0.4020 +10930 403314 0.9590 +10930 442721 0.4340 +10933 10943 0.9390 +10933 10944 0.4270 +10933 10951 0.4230 +10933 11091 0.8220 +10933 11143 0.6930 +10933 11168 0.5450 +10933 11198 0.5390 +10933 11335 0.4880 +10933 22828 0.4860 +10933 22938 0.4500 +10933 23067 0.4310 +10933 23081 0.4400 +10933 23309 0.9890 +10933 23468 0.5740 +10933 23522 0.7980 +10933 25855 0.7930 +10933 25942 0.9950 +10933 26122 0.9910 +10933 29072 0.8210 +10933 51004 0.4480 +10933 51105 0.6310 +10933 51147 0.4350 +10933 51230 0.9060 +10933 51317 0.4470 +10933 51412 0.8130 +10933 51742 0.7950 +10933 54556 0.9990 +10933 54788 0.4660 +10933 54799 0.9920 +10933 54847 0.5000 +10933 54902 0.4840 +10933 54904 0.4530 +10933 54934 0.7430 +10933 55167 0.9300 +10933 55257 0.9990 +10933 55677 0.4740 +10933 55683 0.7590 +10933 55689 0.7070 +10933 55869 0.9360 +10933 55870 0.9860 +10933 55929 0.9980 +10933 56254 0.4830 +10933 56946 0.9410 +10933 57128 0.4750 +10933 57634 0.9970 +10933 57649 0.9990 +10933 57695 0.4440 +10933 57798 0.9130 +10933 58155 0.7250 +10933 58516 0.9490 +10933 64324 0.4840 +10933 64426 0.9500 +10933 64769 0.9990 +10933 79595 0.5990 +10933 79685 0.6410 +10933 79728 0.9980 +10933 80312 0.6510 +10933 80314 0.9970 +10933 81611 0.4810 +10933 84072 0.4450 +10933 84148 0.9670 +10933 84289 0.6230 +10933 84312 0.8040 +10933 84444 0.5730 +10933 84942 0.6630 +10933 85235 0.4290 +10933 92815 0.4290 +10933 93621 0.9870 +10933 94239 0.8130 +10933 112398 0.4760 +10933 112869 0.4750 +10933 114932 0.8990 +10933 139628 0.7840 +10933 150280 0.4530 +10933 151050 0.5400 +10933 221613 0.4290 +10933 221656 0.4440 +10933 255626 0.7050 +10933 283150 0.8360 +10933 284058 0.7220 +10933 317772 0.4440 +10933 339287 0.9340 +10933 345651 0.5890 +10933 440093 0.8330 +10933 440686 0.8330 +10933 653604 0.8380 +10933 728294 0.4930 +10935 11059 0.4250 +10935 11112 0.4370 +10935 11183 0.6000 +10935 11315 0.7460 +10935 11331 0.4930 +10935 23071 0.5940 +10935 23208 0.4750 +10935 23410 0.4600 +10935 23411 0.5300 +10935 23530 0.4950 +10935 25824 0.9720 +10935 25828 0.9520 +10935 29944 0.4490 +10935 30968 0.5030 +10935 51022 0.7030 +10935 51218 0.4680 +10935 51314 0.5740 +10935 54205 0.8040 +10935 54539 0.4110 +10935 54948 0.5200 +10935 56255 0.5100 +10935 65018 0.7710 +10935 80273 0.4620 +10935 81567 0.4330 +10935 84203 0.4810 +10935 84968 0.5100 +10935 114112 0.4780 +10935 114907 0.4230 +10935 120892 0.7250 +10935 134266 0.4360 +10935 137735 0.5700 +10935 137902 0.4190 +10935 140809 0.7800 +10935 150572 0.4720 +10935 255220 0.4930 +10935 257202 0.5790 +10935 347736 0.4260 +10935 441531 0.5710 +10935 493869 0.6260 +10936 11245 0.5640 +10936 23198 0.4870 +10936 27248 0.4170 +10936 54112 0.6630 +10936 134391 0.5280 +10936 387804 0.5290 +10936 494143 0.5740 +10938 11021 0.6810 +10938 11252 0.9070 +10938 11311 0.8670 +10938 22841 0.9860 +10938 22897 0.4640 +10938 23092 0.5950 +10938 23301 0.8090 +10938 23307 0.5010 +10938 23527 0.5010 +10938 26056 0.9270 +10938 26509 0.4650 +10938 29924 0.4760 +10938 29993 0.7360 +10938 30844 0.7950 +10938 30845 0.8410 +10938 51479 0.8620 +10938 51684 0.4480 +10938 51699 0.4330 +10938 55040 0.4630 +10938 55737 0.6610 +10938 56993 0.4210 +10938 57158 0.4450 +10938 57403 0.4080 +10938 64145 0.9980 +10938 64599 0.4350 +10938 64780 0.5640 +10938 79594 0.4060 +10938 80223 0.9250 +10938 81609 0.4420 +10938 85377 0.9970 +10938 85439 0.5190 +10938 90342 0.5400 +10938 117177 0.5480 +10938 140856 0.5220 +10938 284325 0.5340 +10939 10989 0.4970 +10939 11128 0.4500 +10939 11222 0.8140 +10939 11224 0.4500 +10939 11331 0.8920 +10939 22984 0.5790 +10939 23203 0.7960 +10939 23204 0.5470 +10939 23259 0.4340 +10939 23479 0.6760 +10939 23503 0.4040 +10939 23521 0.5550 +10939 24140 0.4810 +10939 25813 0.5710 +10939 25814 0.6230 +10939 25894 0.4790 +10939 26519 0.4210 +10939 27089 0.4670 +10939 27429 0.5240 +10939 28958 0.4280 +10939 28973 0.4250 +10939 28998 0.8370 +10939 29093 0.8140 +10939 29796 0.4230 +10939 29927 0.4860 +10939 29960 0.5090 +10939 30968 0.6780 +10939 50484 0.4160 +10939 51001 0.4270 +10939 51021 0.8450 +10939 51023 0.5390 +10939 51024 0.4010 +10939 51025 0.4180 +10939 51069 0.6610 +10939 51073 0.7870 +10939 51079 0.9950 +10939 51081 0.6040 +10939 51102 0.4430 +10939 51116 0.5760 +10939 51144 0.4770 +10939 51149 0.4670 +10939 51154 0.4750 +10939 51204 0.4690 +10939 51264 0.8260 +10939 51300 0.9940 +10939 51324 0.4200 +10939 51741 0.4370 +10939 54059 0.4130 +10939 54332 0.4310 +10939 54499 0.4830 +10939 54802 0.4960 +10939 54948 0.8090 +10939 55013 0.6500 +10939 55052 0.5820 +10939 55129 0.4050 +10939 55149 0.5530 +10939 55157 0.5270 +10939 55168 0.5680 +10939 55173 0.5150 +10939 55210 0.5590 +10939 55272 0.5400 +10939 55316 0.5240 +10939 55486 0.7070 +10939 55526 0.4280 +10939 55669 0.5090 +10939 55703 0.4540 +10939 56652 0.4700 +10939 56947 0.4170 +10939 56952 0.6270 +10939 56993 0.4520 +10939 57128 0.7390 +10939 57704 0.5810 +10939 60488 0.4200 +10939 60558 0.5820 +10939 63875 0.8180 +10939 63931 0.8280 +10939 64374 0.5600 +10939 64960 0.7920 +10939 64963 0.8260 +10939 64965 0.8080 +10939 64969 0.6270 +10939 64979 0.8040 +10939 64981 0.4270 +10939 64983 0.4490 +10939 65003 0.6140 +10939 65005 0.6600 +10939 65008 0.4940 +10939 65018 0.4920 +10939 65080 0.5960 +10939 78986 0.4380 +10939 79568 0.7740 +10939 79590 0.5990 +10939 80207 0.6740 +10939 80273 0.4150 +10939 81570 0.5250 +10939 83752 0.6820 +10939 83943 0.4390 +10939 84233 0.5260 +10939 84273 0.4510 +10939 84277 0.4910 +10939 84311 0.4330 +10939 84705 0.4100 +10939 84816 0.4450 +10939 85476 0.4810 +10939 90550 0.7150 +10939 91419 0.4700 +10939 91574 0.6380 +10939 91689 0.7780 +10939 92399 0.6520 +10939 92609 0.4190 +10939 94033 0.5500 +10939 115209 0.8170 +10939 117246 0.5050 +10939 123263 0.4010 +10939 125988 0.4300 +10939 126328 0.6530 +10939 126402 0.5350 +10939 131118 0.5390 +10939 134266 0.4250 +10939 139322 0.4790 +10939 146057 0.5740 +10939 146227 0.4090 +10939 161003 0.4900 +10939 219927 0.6180 +10939 221154 0.6900 +10939 257202 0.4570 +10939 285193 0.4200 +10939 286097 0.5460 +10939 339453 0.5280 +10939 343641 0.4310 +10939 493869 0.4570 +10939 641776 0.4030 +10939 643909 0.4030 +10939 728524 0.4030 +10939 100526842 0.5070 +10939 100996746 0.4030 +10939 105180390 0.4030 +10939 105180391 0.4030 +10940 10969 0.5650 +10940 10978 0.9030 +10940 11102 0.9990 +10940 11157 0.5480 +10940 22984 0.4130 +10940 23029 0.5190 +10940 23405 0.9480 +10940 23560 0.6590 +10940 25871 0.6140 +10940 25879 0.5100 +10940 26523 0.7200 +10940 27161 0.9030 +10940 27340 0.4800 +10940 29102 0.7270 +10940 51367 0.9990 +10940 51574 0.6460 +10940 51602 0.9010 +10940 54433 0.7480 +10940 54487 0.7690 +10940 54913 0.9980 +10940 54931 0.6080 +10940 55505 0.9030 +10940 55651 0.7280 +10940 56257 0.6350 +10940 58500 0.4060 +10940 64745 0.6770 +10940 65095 0.8770 +10940 65263 0.4850 +10940 65265 0.5060 +10940 79042 0.4180 +10940 79727 0.5300 +10940 79897 0.9990 +10940 79954 0.4320 +10940 80746 0.5690 +10940 83608 0.4540 +10940 83759 0.4320 +10940 84365 0.4720 +10940 84933 0.4730 +10940 84948 0.4550 +10940 84955 0.4350 +10940 90441 0.5370 +10940 92345 0.9200 +10940 96764 0.4070 +10940 116238 0.4930 +10940 126789 0.4560 +10940 138716 0.9510 +10940 192669 0.7210 +10940 192670 0.7200 +10940 283989 0.5400 +10940 345630 0.5430 +10940 388795 0.4630 +10940 100533106 0.4790 +10940 109703458 0.4180 +10941 127385 0.4090 +10941 135152 0.5260 +10941 440184 0.5070 +10942 51686 0.5780 +10942 63932 0.4750 +10942 84221 0.4130 +10942 124222 0.4040 +10942 136242 0.4210 +10942 146849 0.4080 +10942 442191 0.6140 +10943 11091 0.8160 +10943 11116 0.4730 +10943 11143 0.4730 +10943 23309 0.4760 +10943 23522 0.5410 +10943 25842 0.5070 +10943 25942 0.4800 +10943 26122 0.8510 +10943 29072 0.5730 +10943 29127 0.4090 +10943 51105 0.5880 +10943 51230 0.8590 +10943 51412 0.6830 +10943 51667 0.4520 +10943 54556 0.9400 +10943 54799 0.9070 +10943 54934 0.8740 +10943 55167 0.9990 +10943 55183 0.4190 +10943 55257 0.9210 +10943 55683 0.8410 +10943 55689 0.6480 +10943 55869 0.4760 +10943 55904 0.4650 +10943 55929 0.9500 +10943 57157 0.4800 +10943 57332 0.5430 +10943 57634 0.9240 +10943 57649 0.7180 +10943 64769 0.9460 +10943 80314 0.9500 +10943 84148 0.9970 +10943 84456 0.4120 +10943 84656 0.4080 +10943 84733 0.4490 +10943 84942 0.4500 +10943 91272 0.6750 +10943 94239 0.4100 +10943 121504 0.9160 +10943 135656 0.4750 +10943 151050 0.5520 +10943 284058 0.8420 +10943 284257 0.6230 +10943 286204 0.4860 +10943 339287 0.9990 +10943 345651 0.5820 +10943 388677 0.4780 +10943 440093 0.4830 +10943 440686 0.4830 +10943 554313 0.9160 +10943 653604 0.4830 +10943 100996717 0.4750 +10943 100996763 0.4750 +10943 101929796 0.4750 +10944 23479 0.4110 +10944 51234 0.5240 +10944 51806 0.5230 +10944 57092 0.4190 +10944 91860 0.5230 +10944 163688 0.5230 +10945 10959 0.6310 +10945 10972 0.7470 +10945 11014 0.9150 +10945 11015 0.9060 +10945 11079 0.7180 +10945 11231 0.6560 +10945 11253 0.4640 +10945 11316 0.7140 +10945 22818 0.7110 +10945 22820 0.6320 +10945 23193 0.5480 +10945 23423 0.6060 +10945 23753 0.8770 +10945 26286 0.6320 +10945 26958 0.5690 +10945 27246 0.4530 +10945 29927 0.6240 +10945 29954 0.6280 +10945 51014 0.5670 +10945 51028 0.4160 +10945 51226 0.5970 +10945 51272 0.5120 +10945 51290 0.4650 +10945 51377 0.4220 +10945 51594 0.5090 +10945 51608 0.4230 +10945 51614 0.4400 +10945 51806 0.4110 +10945 53407 0.7070 +10945 54732 0.5900 +10945 55329 0.4010 +10945 55738 0.8300 +10945 55811 0.4310 +10945 55850 0.6000 +10945 56886 0.4770 +10945 60561 0.5220 +10945 63908 0.4990 +10945 64083 0.8130 +10945 81876 0.6170 +10945 84364 0.6110 +10945 91860 0.4130 +10945 163688 0.4130 +10946 10969 0.5460 +10946 10973 0.5840 +10946 10989 0.4630 +10946 10992 0.9990 +10946 11011 0.4490 +10946 11017 0.8310 +10946 11066 0.4640 +10946 11157 0.9900 +10946 11193 0.9830 +10946 11198 0.6650 +10946 11325 0.7970 +10946 11338 0.8130 +10946 22794 0.4320 +10946 22803 0.4940 +10946 22826 0.6470 +10946 22827 0.7630 +10946 22907 0.4390 +10946 22916 0.9920 +10946 22938 0.9710 +10946 22944 0.9080 +10946 23020 0.9990 +10946 23082 0.5400 +10946 23091 0.5190 +10946 23350 0.8650 +10946 23398 0.5800 +10946 23435 0.5230 +10946 23450 0.9990 +10946 23451 0.9990 +10946 23517 0.4480 +10946 23524 0.9940 +10946 23548 0.5620 +10946 23560 0.4170 +10946 23658 0.9920 +10946 23759 0.8520 +10946 24144 0.5220 +10946 24148 0.9990 +10946 25766 0.6000 +10946 25804 0.9980 +10946 25879 0.5030 +10946 25904 0.5110 +10946 25949 0.4960 +10946 26121 0.9980 +10946 27238 0.4110 +10946 27258 0.9960 +10946 27316 0.4620 +10946 27336 0.9570 +10946 27339 0.9970 +10946 29079 0.4350 +10946 29889 0.7990 +10946 29896 0.4640 +10946 51077 0.4730 +10946 51118 0.4130 +10946 51340 0.9650 +10946 51362 0.9920 +10946 51428 0.4720 +10946 51503 0.9260 +10946 51574 0.4630 +10946 51593 0.4370 +10946 51602 0.4280 +10946 51631 0.4630 +10946 51634 0.9940 +10946 51639 0.9960 +10946 51645 0.9010 +10946 51690 0.9930 +10946 51691 0.9970 +10946 51729 0.8590 +10946 51747 0.6770 +10946 54883 0.7570 +10946 54952 0.7770 +10946 54957 0.4820 +10946 55015 0.6200 +10946 55094 0.4430 +10946 55100 0.4620 +10946 55110 0.9250 +10946 55234 0.9840 +10946 55285 0.7880 +10946 55599 0.7860 +10946 55660 0.6890 +10946 55692 0.5600 +10946 55696 0.9600 +10946 55702 0.6530 +10946 55954 0.5820 +10946 56259 0.9140 +10946 56949 0.9900 +10946 57187 0.4860 +10946 57461 0.4080 +10946 57696 0.4030 +10946 57703 0.9950 +10946 57721 0.4740 +10946 57805 0.4030 +10946 57819 0.9950 +10946 58517 0.7780 +10946 59286 0.8320 +10946 60625 0.6040 +10946 64419 0.4130 +10946 64848 0.4140 +10946 64969 0.4080 +10946 65109 0.5290 +10946 79009 0.4920 +10946 79171 0.8230 +10946 79446 0.8520 +10946 79753 0.9960 +10946 79882 0.5050 +10946 79902 0.4050 +10946 80153 0.5520 +10946 80742 0.8630 +10946 83443 0.9990 +10946 83938 0.7810 +10946 84081 0.4210 +10946 84172 0.4500 +10946 84316 0.6360 +10946 84811 0.9960 +10946 84844 0.9990 +10946 84950 0.9960 +10946 84967 0.8620 +10946 84991 0.9650 +10946 85313 0.5230 +10946 85476 0.4040 +10946 90324 0.7650 +10946 91603 0.4770 +10946 122769 0.4200 +10946 124245 0.4630 +10946 126259 0.6360 +10946 140890 0.6180 +10946 147650 0.6360 +10946 153527 0.9950 +10946 154007 0.5370 +10946 164045 0.5730 +10946 164781 0.4890 +10946 199746 0.4510 +10946 220074 0.7810 +10946 222183 0.6170 +10946 246243 0.4280 +10946 256536 0.8450 +10946 284325 0.6380 +10946 347744 0.7550 +10946 348793 0.4940 +10946 392517 0.8580 +10946 100534599 0.8710 +10946 100996928 0.4540 +10946 114483834 0.4600 +10947 11154 0.7910 +10947 11276 0.7330 +10947 23339 0.4520 +10947 23431 0.8480 +10947 26985 0.9780 +10947 55317 0.7380 +10947 55745 0.7700 +10947 57541 0.4600 +10947 57704 0.4760 +10947 58513 0.4120 +10947 84251 0.7370 +10947 91056 0.7200 +10947 113444 0.4040 +10947 122616 0.5400 +10947 130340 0.5810 +10947 348110 0.4610 +10947 100526783 0.6400 +10948 11070 0.4580 +10948 22937 0.4220 +10948 23161 0.4720 +10948 28952 0.5560 +10948 30827 0.4470 +10948 53630 0.5680 +10948 55177 0.5600 +10948 55876 0.4410 +10948 56180 0.4700 +10948 56910 0.6280 +10948 57130 0.4240 +10948 57476 0.5780 +10948 57617 0.4370 +10948 57655 0.5160 +10948 58488 0.9380 +10948 63906 0.4570 +10948 64598 0.4900 +10948 79443 0.5400 +10948 80765 0.5430 +10948 83875 0.6440 +10948 83930 0.9420 +10948 84152 0.5280 +10948 84219 0.5340 +10948 84299 0.8030 +10948 84315 0.4290 +10948 84619 0.6370 +10948 84895 0.5970 +10948 90324 0.4360 +10948 90627 0.4510 +10948 93210 0.9420 +10948 94103 0.6300 +10948 114790 0.4300 +10948 114876 0.5480 +10948 114879 0.7410 +10948 118813 0.8950 +10948 118987 0.5850 +10948 133482 0.4650 +10948 134429 0.7220 +10948 134526 0.4460 +10948 147179 0.4560 +10948 147323 0.5670 +10948 158747 0.9800 +10949 10992 0.4220 +10949 11051 0.5440 +10949 11052 0.5420 +10949 11100 0.6550 +10949 11335 0.4030 +10949 11338 0.8740 +10949 22913 0.5100 +10949 23016 0.4130 +10949 23020 0.4310 +10949 23160 0.4680 +10949 23283 0.5210 +10949 23350 0.4460 +10949 23435 0.8190 +10949 23451 0.6260 +10949 23543 0.4650 +10949 25929 0.5140 +10949 26097 0.5090 +10949 27258 0.4520 +10949 27316 0.9330 +10949 27339 0.6420 +10949 29894 0.5020 +10949 29896 0.4220 +10949 51593 0.4620 +10949 51631 0.4090 +10949 51634 0.4310 +10949 51691 0.4080 +10949 54715 0.4280 +10949 55421 0.5300 +10949 55696 0.4330 +10949 56257 0.4430 +10949 56259 0.5450 +10949 57187 0.4920 +10949 57819 0.5090 +10949 58155 0.5330 +10949 58517 0.6400 +10949 79968 0.5100 +10949 83443 0.4600 +10949 85437 0.5380 +10949 159163 0.4900 +10949 202559 0.6760 +10949 220988 0.5070 +10949 221092 0.7330 +10949 284695 0.4670 +10949 378948 0.4950 +10949 378949 0.4960 +10949 378950 0.4970 +10949 378951 0.4900 +10950 25904 0.6450 +10950 26234 0.4080 +10950 29883 0.9270 +10950 54149 0.4080 +10950 55300 0.4220 +10950 55571 0.7840 +10950 56157 0.7670 +10950 115795 0.5860 +10950 140578 0.4710 +10950 158787 0.7200 +10950 246175 0.7190 +10950 339345 0.7470 +10950 390748 0.5630 +10951 11073 0.4300 +10951 11091 0.4440 +10951 11168 0.5500 +10951 11243 0.4810 +10951 11335 0.9110 +10951 22850 0.8120 +10951 22984 0.5590 +10951 22985 0.5020 +10951 22992 0.4270 +10951 23028 0.5130 +10951 23030 0.5930 +10951 23126 0.8820 +10951 23133 0.4490 +10951 23383 0.4760 +10951 23394 0.8480 +10951 23405 0.4130 +10951 23429 0.7240 +10951 23468 0.9370 +10951 23476 0.4650 +10951 23512 0.7610 +10951 25836 0.4980 +10951 25936 0.6690 +10951 27245 0.6250 +10951 29128 0.5230 +10951 51111 0.7480 +10951 51127 0.4350 +10951 51592 0.6030 +10951 54802 0.5160 +10951 54816 0.7160 +10951 55609 0.5680 +10951 55729 0.6480 +10951 55791 0.6130 +10951 56946 0.9660 +10951 57621 0.4030 +10951 78994 0.7570 +10951 79003 0.4710 +10951 79718 0.4210 +10951 79723 0.9150 +10951 79813 0.6980 +10951 79923 0.5380 +10951 79968 0.6450 +10951 79980 0.7260 +10951 80063 0.4530 +10951 80854 0.4030 +10951 83746 0.7200 +10951 84108 0.8130 +10951 84146 0.6310 +10951 84678 0.4590 +10951 84717 0.4840 +10951 84759 0.7500 +10951 84787 0.8680 +10951 84823 0.5120 +10951 84911 0.6190 +10951 85235 0.5300 +10951 85236 0.5670 +10951 92815 0.5300 +10951 93166 0.5580 +10951 94239 0.4920 +10951 126961 0.9490 +10951 128312 0.5790 +10951 151648 0.9750 +10951 221613 0.5360 +10951 255626 0.5840 +10951 283489 0.7890 +10951 284361 0.5000 +10951 317772 0.5340 +10951 333932 0.9430 +10951 387893 0.5400 +10951 440093 0.9980 +10951 440686 0.9980 +10951 440689 0.5700 +10951 653604 0.9990 +10951 100532731 0.9910 +10952 10970 0.4710 +10952 10972 0.7130 +10952 11222 0.4560 +10952 11224 0.9790 +10952 11231 0.9970 +10952 11316 0.4710 +10952 22820 0.7240 +10952 23065 0.4480 +10952 23193 0.6680 +10952 23197 0.4940 +10952 23204 0.7230 +10952 23471 0.6480 +10952 23478 0.6330 +10952 23480 0.9990 +10952 23521 0.9260 +10952 23640 0.5820 +10952 25873 0.9360 +10952 26135 0.5130 +10952 26958 0.6860 +10952 27230 0.7460 +10952 27347 0.8140 +10952 28972 0.7930 +10952 28998 0.5110 +10952 29093 0.6530 +10952 29110 0.4040 +10952 29927 0.9990 +10952 51009 0.7180 +10952 51060 0.4880 +10952 51065 0.5570 +10952 51069 0.4810 +10952 51073 0.6700 +10952 51121 0.9630 +10952 51319 0.4300 +10952 51398 0.5630 +10952 51465 0.4170 +10952 51608 0.7950 +10952 51726 0.5470 +10952 53918 0.8030 +10952 54499 0.8670 +10952 54732 0.4700 +10952 54867 0.8720 +10952 54948 0.5390 +10952 55176 0.9970 +10952 55218 0.8500 +10952 55437 0.6010 +10952 55651 0.4550 +10952 55770 0.5370 +10952 55969 0.5010 +10952 56926 0.8300 +10952 57003 0.8500 +10952 57142 0.4930 +10952 57506 0.4350 +10952 58477 0.7770 +10952 58505 0.8950 +10952 60412 0.4300 +10952 60559 0.7330 +10952 64374 0.6510 +10952 65008 0.4200 +10952 79053 0.7020 +10952 79139 0.5810 +10952 79590 0.6620 +10952 81502 0.4340 +10952 84061 0.8080 +10952 84447 0.4430 +10952 90701 0.7320 +10952 91319 0.7720 +10952 92335 0.6010 +10952 92840 0.4610 +10952 116832 0.8000 +10952 118424 0.5630 +10952 124454 0.5360 +10952 125972 0.4830 +10952 140801 0.5890 +10952 200916 0.5280 +10952 201595 0.8580 +10952 205428 0.4100 +10952 254268 0.4530 +10952 285855 0.5200 +10952 340061 0.6430 +10952 340146 0.4130 +10952 387129 0.4740 +10952 100128731 0.8350 +10952 100505478 0.4730 +10952 100526842 0.9540 +10952 100527943 0.4880 +10952 100529097 0.5090 +10952 100529239 0.8680 +10953 11140 0.6480 +10953 26519 0.4180 +10953 26973 0.5340 +10953 29928 0.4480 +10953 54894 0.6050 +10953 55122 0.4370 +10953 55664 0.4150 +10953 55929 0.4220 +10953 56993 0.4570 +10953 84134 0.4220 +10953 123169 0.5060 +10953 401505 0.4970 +10953 100188893 0.4730 +10953 100287932 0.4230 +10954 10961 0.5300 +10954 22926 0.7030 +10954 26984 0.5460 +10954 29937 0.4970 +10954 30001 0.4560 +10954 51060 0.5800 +10954 51075 0.4370 +10954 51099 0.4370 +10954 51303 0.4060 +10954 51726 0.5390 +10954 51805 0.4460 +10954 55748 0.4440 +10954 56255 0.4630 +10954 56605 0.5350 +10954 81567 0.5140 +10954 121506 0.6140 +10954 125972 0.4450 +10954 155465 0.4150 +10955 23431 0.5090 +10955 23623 0.5190 +10955 25939 0.5810 +10955 26133 0.4260 +10955 51257 0.5380 +10955 55008 0.4210 +10955 55690 0.4520 +10955 60489 0.5110 +10955 79065 0.4890 +10955 84464 0.4770 +10955 85363 0.5600 +10955 91607 0.4220 +10955 115362 0.4560 +10955 220972 0.4850 +10955 389207 0.8920 +10956 10960 0.5260 +10956 11124 0.5470 +10956 11160 0.7970 +10956 11231 0.4160 +10956 11236 0.9050 +10956 11253 0.9120 +10956 22926 0.6940 +10956 23032 0.9000 +10956 23193 0.4430 +10956 23197 0.9880 +10956 23225 0.4200 +10956 23231 0.6700 +10956 23385 0.5340 +10956 23480 0.4020 +10956 26993 0.4120 +10956 27248 0.9360 +10956 29927 0.6180 +10956 50846 0.5110 +10956 51009 0.9990 +10956 51061 0.4330 +10956 51147 0.4440 +10956 51148 0.5950 +10956 51272 0.4530 +10956 51439 0.9880 +10956 51465 0.9650 +10956 51669 0.6320 +10956 51726 0.7960 +10956 54431 0.8820 +10956 54504 0.5000 +10956 54583 0.9590 +10956 55329 0.4200 +10956 55666 0.8520 +10956 55741 0.7780 +10956 55743 0.5030 +10956 55757 0.8760 +10956 55768 0.5040 +10956 55805 0.5290 +10956 55829 0.5680 +10956 56886 0.7550 +10956 57134 0.4300 +10956 57414 0.5520 +10956 57544 0.5240 +10956 59341 0.7900 +10956 59342 0.4020 +10956 64374 0.5200 +10956 64422 0.7400 +10956 65260 0.5290 +10956 79029 0.5820 +10956 79087 0.4380 +10956 79098 0.5430 +10956 79139 0.9850 +10956 79709 0.4810 +10956 80020 0.9260 +10956 80124 0.4950 +10956 80267 0.9210 +10956 80343 0.7250 +10956 81501 0.7680 +10956 81502 0.4080 +10956 81562 0.4470 +10956 81790 0.4100 +10956 83752 0.4830 +10956 84447 0.9990 +10956 84720 0.4040 +10956 91319 0.9820 +10956 91419 0.4740 +10956 91445 0.6200 +10956 112398 0.4320 +10956 112399 0.8080 +10956 112483 0.4570 +10956 118424 0.4540 +10956 125972 0.4100 +10956 153830 0.5490 +10956 166378 0.5820 +10956 197131 0.5230 +10956 201595 0.4540 +10956 337867 0.4100 +10956 348801 0.4990 +10956 376132 0.4150 +10957 11272 0.4990 +10957 54800 0.4450 +10957 55636 0.5070 +10957 55802 0.8670 +10957 85363 0.4260 +10957 135293 0.6330 +10957 196513 0.5980 +10959 10960 0.8650 +10959 10972 0.9990 +10959 11014 0.6610 +10959 11015 0.5310 +10959 11018 0.7840 +10959 11041 0.4220 +10959 11079 0.5850 +10959 11196 0.5780 +10959 11231 0.4380 +10959 11253 0.4450 +10959 11316 0.5650 +10959 22818 0.6450 +10959 22820 0.6290 +10959 22872 0.6930 +10959 22931 0.4760 +10959 23065 0.4780 +10959 23071 0.4010 +10959 23256 0.6930 +10959 23385 0.5700 +10959 23423 0.9660 +10959 23471 0.5340 +10959 26003 0.7700 +10959 26286 0.6160 +10959 26958 0.6010 +10959 26984 0.6230 +10959 27095 0.5380 +10959 27230 0.6120 +10959 29097 0.4470 +10959 29927 0.4450 +10959 50999 0.9540 +10959 51014 0.9690 +10959 51026 0.5170 +10959 51128 0.7550 +10959 51226 0.5810 +10959 51272 0.5700 +10959 51594 0.5090 +10959 53407 0.5010 +10959 54732 0.9960 +10959 55014 0.5070 +10959 55738 0.5150 +10959 55850 0.5070 +10959 56681 0.4810 +10959 56882 0.4270 +10959 56886 0.4250 +10959 57696 0.5470 +10959 58477 0.5540 +10959 60561 0.5060 +10959 63908 0.5210 +10959 64083 0.4560 +10959 64377 0.4610 +10959 64689 0.7430 +10959 65992 0.4280 +10959 79748 0.6500 +10959 79879 0.4680 +10959 81555 0.5040 +10959 81562 0.6750 +10959 81876 0.7080 +10959 84061 0.4590 +10959 84364 0.6200 +10959 84926 0.4030 +10959 85320 0.4110 +10959 89866 0.5490 +10959 90411 0.5170 +10959 94160 0.4220 +10959 113201 0.4900 +10959 146456 0.5330 +10959 148022 0.5490 +10959 149111 0.5880 +10959 222068 0.9830 +10959 254263 0.5880 +10959 353376 0.5490 +10959 401024 0.4160 +10959 100302736 0.5490 +10960 10972 0.8390 +10960 11079 0.6530 +10960 11196 0.5850 +10960 11253 0.4160 +10960 22872 0.5620 +10960 23052 0.4270 +10960 23071 0.4320 +10960 23197 0.4390 +10960 23256 0.5990 +10960 26984 0.6780 +10960 27248 0.4920 +10960 51009 0.4760 +10960 51128 0.6040 +10960 51465 0.4080 +10960 51614 0.5590 +10960 54732 0.5700 +10960 55014 0.5040 +10960 55829 0.4380 +10960 56886 0.4420 +10960 57222 0.5490 +10960 63908 0.4990 +10960 64689 0.5570 +10960 64946 0.4250 +10960 79748 0.5390 +10960 80758 0.4660 +10960 81502 0.4170 +10960 81562 0.6570 +10960 83463 0.4160 +10960 89866 0.5050 +10960 90411 0.8790 +10960 118424 0.4340 +10960 149111 0.5380 +10960 254263 0.5380 +10961 22926 0.4250 +10961 23071 0.6460 +10961 27333 0.4480 +10961 29785 0.8880 +10961 30001 0.9560 +10961 51060 0.4890 +10961 51071 0.6280 +10961 51075 0.5150 +10961 51726 0.7090 +10961 54431 0.6490 +10961 54495 0.5780 +10961 56255 0.4040 +10961 56605 0.9220 +10961 64714 0.5260 +10961 79171 0.4160 +10961 80018 0.6960 +10961 80267 0.5220 +10961 80724 0.4180 +10961 81542 0.4130 +10961 81567 0.6210 +10961 89894 0.4290 +10961 121506 0.6050 +10961 125972 0.4010 +10961 126133 0.7050 +10961 155465 0.4610 +10961 202052 0.4620 +10961 204474 0.4240 +10962 23157 0.5100 +10962 51176 0.5470 +10963 11080 0.7220 +10963 11140 0.9950 +10963 11169 0.5940 +10963 11171 0.4380 +10963 11198 0.4050 +10963 22824 0.8030 +10963 22948 0.9780 +10963 23234 0.9110 +10963 23435 0.5740 +10963 23640 0.8080 +10963 23753 0.7330 +10963 23770 0.4630 +10963 25789 0.6320 +10963 25822 0.6070 +10963 26353 0.8180 +10963 27101 0.4180 +10963 27289 0.7700 +10963 27339 0.4260 +10963 29978 0.8170 +10963 29979 0.8200 +10963 50613 0.5410 +10963 51182 0.4580 +10963 51398 0.5430 +10963 51726 0.8260 +10963 54788 0.4180 +10963 54962 0.4530 +10963 55011 0.6070 +10963 55172 0.5510 +10963 55466 0.7960 +10963 55664 0.9280 +10963 55898 0.4120 +10963 56893 0.6460 +10963 56984 0.9010 +10963 57003 0.5700 +10963 64374 0.6230 +10963 79657 0.7090 +10963 79982 0.4950 +10963 80146 0.5390 +10963 80273 0.5230 +10963 80854 0.4610 +10963 81570 0.8240 +10963 81572 0.5640 +10963 83443 0.5010 +10963 84296 0.4360 +10963 84301 0.4710 +10963 85479 0.5250 +10963 96459 0.5860 +10963 120379 0.6340 +10963 120892 0.4730 +10963 123169 0.4880 +10963 143630 0.5620 +10963 143689 0.4790 +10963 150160 0.7760 +10963 150275 0.8390 +10963 199223 0.6490 +10963 283237 0.4020 +10963 347734 0.4960 +10963 374407 0.5450 +10963 414301 0.4470 +10963 441282 0.4650 +10963 114483834 0.6220 +10964 11222 0.7840 +10964 11274 0.9030 +10964 23405 0.4430 +10964 23521 0.4290 +10964 23586 0.8660 +10964 23732 0.4660 +10964 24138 0.8480 +10964 26010 0.5540 +10964 26275 0.6220 +10964 26589 0.7900 +10964 28998 0.6710 +10964 29093 0.7000 +10964 29102 0.4430 +10964 51021 0.6460 +10964 51023 0.4700 +10964 51056 0.6290 +10964 51069 0.5370 +10964 51073 0.7780 +10964 51081 0.4170 +10964 51116 0.5220 +10964 51149 0.4240 +10964 51191 0.9120 +10964 51263 0.5590 +10964 51264 0.7890 +10964 54625 0.7090 +10964 54739 0.9810 +10964 54809 0.7160 +10964 54948 0.6690 +10964 55008 0.8830 +10964 55168 0.4700 +10964 55173 0.6660 +10964 55272 0.4160 +10964 55316 0.4020 +10964 55337 0.4720 +10964 55601 0.8990 +10964 57129 0.6940 +10964 60488 0.6410 +10964 63875 0.6860 +10964 63931 0.6490 +10964 64108 0.7590 +10964 64135 0.9040 +10964 64432 0.5610 +10964 64761 0.6450 +10964 64960 0.6580 +10964 64963 0.6540 +10964 64965 0.6440 +10964 64968 0.6540 +10964 64969 0.6450 +10964 64975 0.6620 +10964 64976 0.6770 +10964 64978 0.4920 +10964 64979 0.6610 +10964 64981 0.6600 +10964 64983 0.6810 +10964 65003 0.4750 +10964 65080 0.6760 +10964 79132 0.6690 +10964 83666 0.9310 +10964 84545 0.6750 +10964 85441 0.7430 +10964 90313 0.4030 +10964 91543 0.9990 +10964 94240 0.9210 +10964 115361 0.6060 +10964 115362 0.5580 +10964 116541 0.4030 +10964 122509 0.5160 +10964 124995 0.4630 +10964 126402 0.4160 +10964 129607 0.8550 +10964 151636 0.7180 +10964 157310 0.4920 +10964 219285 0.8660 +10964 345051 0.4480 +10964 375061 0.5830 +10964 439996 0.4840 +10964 100526842 0.4700 +10965 11332 0.9460 +10965 23597 0.7680 +10965 26027 0.5030 +10965 55856 0.6350 +10965 117145 0.9170 +10965 122970 0.9140 +10965 134526 0.4420 +10965 219743 0.5520 +10965 284486 0.9220 +10965 376497 0.4410 +10965 399671 0.5530 +10965 641371 0.9760 +10966 11180 0.4040 +10966 51474 0.4260 +10966 56270 0.5630 +10966 57674 0.5840 +10966 57799 0.8450 +10966 64779 0.4300 +10966 80067 0.5950 +10966 81689 0.6210 +10966 117177 0.4100 +10966 158931 0.4070 +10966 196383 0.5020 +10966 282808 0.8370 +10966 285282 0.4350 +10966 340543 0.4030 +10969 11056 0.8780 +10969 11103 0.9350 +10969 11137 0.9810 +10969 11222 0.6830 +10969 11224 0.9000 +10969 11269 0.4790 +10969 11321 0.5060 +10969 22984 0.9220 +10969 23029 0.9290 +10969 23054 0.4460 +10969 23076 0.9920 +10969 23160 0.9230 +10969 23195 0.8090 +10969 23212 0.9960 +10969 23223 0.6900 +10969 23246 0.9960 +10969 23378 0.9200 +10969 23476 0.4270 +10969 23481 0.9990 +10969 23517 0.7520 +10969 23521 0.8090 +10969 23560 0.9970 +10969 23567 0.4970 +10969 24140 0.8680 +10969 25873 0.9220 +10969 25879 0.7480 +10969 25885 0.6090 +10969 25983 0.8560 +10969 26155 0.9980 +10969 26156 0.9980 +10969 26168 0.4830 +10969 26354 0.9980 +10969 26574 0.9050 +10969 26576 0.5910 +10969 26995 0.6270 +10969 27000 0.4420 +10969 27042 0.4200 +10969 27043 0.4890 +10969 27292 0.7290 +10969 27341 0.8840 +10969 28987 0.9330 +10969 28998 0.6310 +10969 29088 0.5050 +10969 29093 0.6180 +10969 29777 0.5500 +10969 29889 0.9720 +10969 29960 0.7830 +10969 29997 0.9700 +10969 30836 0.8460 +10969 51013 0.6910 +10969 51018 0.9770 +10969 51042 0.6960 +10969 51068 0.8380 +10969 51073 0.5900 +10969 51077 0.5290 +10969 51082 0.7030 +10969 51096 0.7800 +10969 51106 0.4160 +10969 51118 0.9530 +10969 51121 0.8590 +10969 51154 0.9980 +10969 51187 0.9930 +10969 51202 0.8830 +10969 51236 0.5910 +10969 51319 0.6620 +10969 51367 0.4250 +10969 51373 0.4030 +10969 51388 0.9990 +10969 51490 0.5320 +10969 51491 0.6910 +10969 51574 0.4180 +10969 51575 0.8560 +10969 51602 0.9680 +10969 51605 0.4220 +10969 54433 0.5800 +10969 54475 0.5370 +10969 54517 0.5980 +10969 54552 0.9630 +10969 54555 0.5290 +10969 54606 0.9710 +10969 54663 0.9980 +10969 54680 0.4300 +10969 54865 0.6790 +10969 54881 0.6330 +10969 54888 0.7170 +10969 54896 0.4210 +10969 54984 0.7020 +10969 55003 0.9150 +10969 55127 0.4570 +10969 55131 0.9720 +10969 55153 0.8870 +10969 55226 0.8770 +10969 55272 0.8110 +10969 55294 0.4300 +10969 55299 0.9990 +10969 55319 0.7100 +10969 55341 0.9100 +10969 55621 0.4370 +10969 55646 0.7820 +10969 55651 0.9550 +10969 55695 0.6690 +10969 55703 0.4160 +10969 55720 0.7590 +10969 55759 0.9980 +10969 55760 0.6010 +10969 55781 0.5890 +10969 55794 0.7090 +10969 55813 0.8120 +10969 55854 0.4160 +10969 56341 0.4010 +10969 56342 0.9370 +10969 56647 0.8480 +10969 56829 0.4740 +10969 56902 0.6630 +10969 56986 0.4560 +10969 57050 0.9040 +10969 57062 0.9090 +10969 57109 0.6690 +10969 57418 0.7710 +10969 57696 0.9480 +10969 63899 0.6600 +10969 64216 0.6140 +10969 64318 0.9920 +10969 64425 0.8480 +10969 64794 0.5950 +10969 64960 0.4680 +10969 65008 0.4290 +10969 65083 0.8100 +10969 65095 0.8040 +10969 79009 0.6610 +10969 79039 0.8200 +10969 79050 0.8010 +10969 79159 0.9330 +10969 79571 0.4050 +10969 79590 0.7680 +10969 79707 0.5790 +10969 79727 0.5890 +10969 79730 0.6600 +10969 79954 0.8490 +10969 80135 0.9970 +10969 81887 0.6810 +10969 83479 0.4940 +10969 83732 0.4350 +10969 83743 0.8860 +10969 84128 0.6180 +10969 84135 0.5280 +10969 84154 0.9990 +10969 84172 0.4990 +10969 84273 0.6800 +10969 84294 0.8250 +10969 84310 0.6180 +10969 84319 0.5340 +10969 84365 0.9990 +10969 84549 0.9990 +10969 84916 0.6900 +10969 84946 0.9200 +10969 88745 0.6830 +10969 90121 0.7400 +10969 90441 0.8410 +10969 91646 0.4790 +10969 91893 0.4110 +10969 92170 0.6420 +10969 92856 0.9170 +10969 116832 0.5100 +10969 116966 0.7920 +10969 117246 0.9990 +10969 142940 0.7070 +10969 146212 0.9020 +10969 151112 0.4560 +10969 153443 0.4030 +10969 155368 0.5810 +10969 165545 0.5970 +10969 200916 0.7770 +10969 221078 0.9720 +10969 221830 0.8360 +10969 254268 0.7300 +10969 285855 0.9130 +10969 317762 0.4480 +10969 317781 0.4990 +10969 344758 0.4790 +10969 345630 0.7210 +10969 387129 0.8700 +10969 387338 0.6630 +10969 400506 0.4950 +10969 645051 0.4120 +10969 645073 0.4120 +10969 692312 0.8200 +10969 729396 0.4120 +10969 729422 0.4120 +10969 729428 0.4120 +10969 729431 0.4120 +10969 729442 0.4120 +10969 729447 0.4120 +10969 100008586 0.4120 +10969 100132399 0.4120 +10969 100505478 0.8180 +10969 100526842 0.7620 +10969 102724473 0.4120 +10970 11135 0.4220 +10970 11231 0.4080 +10970 11325 0.5280 +10970 22916 0.5910 +10970 22943 0.9840 +10970 23405 0.4820 +10970 25921 0.4990 +10970 25923 0.6460 +10970 27121 0.4630 +10970 27123 0.4710 +10970 29927 0.4270 +10970 51062 0.6390 +10970 51201 0.9270 +10970 51308 0.4090 +10970 51495 0.4630 +10970 54463 0.5080 +10970 54757 0.4430 +10970 54867 0.5980 +10970 55829 0.4280 +10970 56255 0.4620 +10970 56975 0.6430 +10970 57142 0.5700 +10970 57468 0.4580 +10970 64225 0.6210 +10970 65055 0.5460 +10970 80177 0.4310 +10970 80856 0.4380 +10970 81542 0.4120 +10970 83932 0.5100 +10970 84236 0.4640 +10970 84418 0.4400 +10970 91607 0.4200 +10970 93380 0.4520 +10970 158747 0.4660 +10970 653509 0.5330 +10970 729238 0.5340 +10971 11034 0.5120 +10971 11060 0.5660 +10971 11181 0.4200 +10971 11315 0.5140 +10971 22864 0.4050 +10971 23077 0.4380 +10971 23094 0.4730 +10971 23095 0.5740 +10971 23136 0.4250 +10971 23164 0.4720 +10971 23189 0.5490 +10971 23216 0.5890 +10971 23235 0.5710 +10971 23271 0.4380 +10971 23313 0.6240 +10971 23327 0.5690 +10971 23363 0.5590 +10971 23373 0.5550 +10971 23435 0.7220 +10971 23518 0.4190 +10971 23523 0.5510 +10971 23621 0.5180 +10971 23677 0.4470 +10971 25937 0.9500 +10971 25962 0.4250 +10971 26064 0.4220 +10971 27185 0.4080 +10971 29119 0.9000 +10971 29911 0.4960 +10971 51107 0.4840 +10971 51307 0.4020 +10971 51552 0.5890 +10971 51564 0.7420 +10971 51741 0.4010 +10971 53635 0.4370 +10971 54434 0.6170 +10971 54541 0.5370 +10971 54790 0.5100 +10971 55095 0.6160 +10971 55103 0.6170 +10971 56254 0.4590 +10971 56288 0.4680 +10971 57521 0.6330 +10971 57584 0.4540 +10971 64083 0.4930 +10971 64837 0.5240 +10971 79882 0.5740 +10971 83729 0.5420 +10971 83879 0.6820 +10971 84254 0.4220 +10971 84335 0.6100 +10971 84790 0.6890 +10971 89953 0.5180 +10971 92335 0.5300 +10971 120892 0.9190 +10971 121278 0.4570 +10971 139818 0.4110 +10971 144100 0.4990 +10971 200186 0.6880 +10971 203068 0.4510 +10971 223082 0.5100 +10971 284403 0.6120 +10971 287015 0.5410 +10971 100132074 0.4890 +10972 11014 0.7070 +10972 11015 0.6100 +10972 11018 0.9260 +10972 11076 0.4990 +10972 11079 0.5820 +10972 11196 0.5710 +10972 11316 0.7630 +10972 22818 0.8510 +10972 22820 0.9140 +10972 22872 0.7470 +10972 22878 0.4530 +10972 22931 0.4240 +10972 23256 0.7370 +10972 23376 0.4610 +10972 23385 0.9970 +10972 23423 0.9800 +10972 23471 0.4530 +10972 23478 0.4100 +10972 23592 0.4040 +10972 25770 0.4770 +10972 26003 0.6450 +10972 26286 0.5620 +10972 26958 0.8300 +10972 26984 0.7030 +10972 28972 0.5630 +10972 29097 0.5120 +10972 29927 0.5750 +10972 29979 0.5180 +10972 50999 0.9690 +10972 51014 0.9610 +10972 51107 0.9960 +10972 51128 0.7090 +10972 51226 0.5230 +10972 51272 0.5400 +10972 51290 0.4160 +10972 51552 0.4580 +10972 51594 0.5210 +10972 51614 0.4890 +10972 53407 0.5210 +10972 54103 0.6410 +10972 54499 0.7170 +10972 54732 0.9990 +10972 54872 0.9670 +10972 54933 0.4010 +10972 55014 0.5570 +10972 55176 0.4690 +10972 55738 0.5140 +10972 55850 0.5310 +10972 55851 0.9920 +10972 56681 0.4260 +10972 60561 0.5410 +10972 63908 0.4990 +10972 64083 0.4970 +10972 64689 0.6300 +10972 65992 0.4230 +10972 79258 0.4990 +10972 79748 0.5790 +10972 80055 0.8900 +10972 80279 0.4320 +10972 81562 0.6500 +10972 81876 0.7090 +10972 83464 0.8480 +10972 83548 0.4180 +10972 84061 0.7080 +10972 84364 0.5880 +10972 89866 0.5380 +10972 90411 0.5520 +10972 91754 0.4420 +10972 146456 0.5340 +10972 148022 0.4920 +10972 149111 0.6330 +10972 222068 0.9930 +10972 254263 0.6330 +10972 353376 0.4920 +10972 100302736 0.4920 +10973 10985 0.6300 +10973 10992 0.5920 +10973 11157 0.5140 +10973 22862 0.4010 +10973 22938 0.8430 +10973 23028 0.5500 +10973 23082 0.5300 +10973 23165 0.4190 +10973 23186 0.5600 +10973 23450 0.6270 +10973 23451 0.6060 +10973 23524 0.5550 +10973 23658 0.5390 +10973 23774 0.4500 +10973 24144 0.4860 +10973 24148 0.8440 +10973 25782 0.4010 +10973 25804 0.5710 +10973 25949 0.6680 +10973 26046 0.5460 +10973 26058 0.6010 +10973 26121 0.6680 +10973 27030 0.7080 +10973 27154 0.4250 +10973 27258 0.4450 +10973 27339 0.8040 +10973 29062 0.4250 +10973 51008 0.9990 +10973 51317 0.5770 +10973 51340 0.8260 +10973 51362 0.6690 +10973 51503 0.6500 +10973 51634 0.5330 +10973 51690 0.5590 +10973 51691 0.5340 +10973 53918 0.5470 +10973 54505 0.6840 +10973 54520 0.4410 +10973 54555 0.4380 +10973 54883 0.5970 +10973 54957 0.4940 +10973 55139 0.4200 +10973 55153 0.4570 +10973 55215 0.5520 +10973 55285 0.4730 +10973 55599 0.4380 +10973 55696 0.5240 +10973 55702 0.5710 +10973 55854 0.4150 +10973 56919 0.4070 +10973 56949 0.8310 +10973 57461 0.6000 +10973 57703 0.8150 +10973 57819 0.5190 +10973 64421 0.6130 +10973 64838 0.4140 +10973 64848 0.4790 +10973 79446 0.6440 +10973 79577 0.4780 +10973 79631 0.5640 +10973 79665 0.4540 +10973 79728 0.5880 +10973 79753 0.5640 +10973 79840 0.5550 +10973 81844 0.4850 +10973 83443 0.5630 +10973 84164 0.9990 +10973 84316 0.4190 +10973 84811 0.5860 +10973 84844 0.5390 +10973 84967 0.5050 +10973 85476 0.5420 +10973 90850 0.8780 +10973 91419 0.5680 +10973 94097 0.4110 +10973 121642 0.5820 +10973 125150 0.5400 +10973 126074 0.5400 +10973 126259 0.4190 +10973 135114 0.4600 +10973 147650 0.4190 +10973 153527 0.6040 +10973 154007 0.5630 +10973 164781 0.4830 +10973 170506 0.4470 +10973 200162 0.5000 +10973 221120 0.9780 +10973 222183 0.5430 +10973 256536 0.4750 +10973 284325 0.4370 +10973 286257 0.5420 +10973 348793 0.4830 +10973 100534599 0.5980 +10973 105375355 0.5400 +10974 56133 0.4270 +10974 254863 0.4350 +10975 23203 0.7680 +10975 23645 0.6540 +10975 25828 0.5160 +10975 25915 0.4460 +10975 26517 0.4930 +10975 26521 0.5560 +10975 27089 0.9990 +10975 27350 0.5760 +10975 28958 0.4580 +10975 29085 0.6460 +10975 29796 0.9990 +10975 51079 0.9950 +10975 51295 0.4010 +10975 51529 0.4580 +10975 54205 0.7550 +10975 54460 0.5060 +10975 54539 0.9810 +10975 54543 0.5040 +10975 54902 0.4290 +10975 54998 0.4020 +10975 55245 0.4340 +10975 55967 0.9940 +10975 56901 0.8990 +10975 57379 0.5760 +10975 59286 0.5150 +10975 60489 0.5760 +10975 79002 0.8050 +10975 79728 0.4930 +10975 81341 0.7770 +10975 84300 0.6040 +10975 84419 0.5400 +10975 84701 0.9350 +10975 84833 0.8700 +10975 84886 0.8430 +10975 84939 0.5080 +10975 84987 0.6450 +10975 90624 0.4510 +10975 91300 0.6560 +10975 91689 0.5500 +10975 93974 0.9230 +10975 125965 0.9270 +10975 125988 0.5970 +10975 126328 0.9900 +10975 128308 0.4020 +10975 139221 0.5070 +10975 140564 0.5760 +10975 140823 0.7170 +10975 150678 0.4410 +10975 164668 0.5760 +10975 170712 0.8540 +10975 192286 0.4380 +10975 200315 0.5760 +10975 200316 0.5760 +10975 267020 0.6870 +10975 283459 0.8210 +10975 341947 0.6260 +10975 374291 0.9960 +10975 388753 0.8160 +10975 440567 0.9940 +10975 728317 0.5070 +10975 100532726 0.8760 +10978 11051 0.7920 +10978 11052 0.9360 +10978 11102 0.9010 +10978 11338 0.5410 +10978 22794 0.5000 +10978 22803 0.4430 +10978 22828 0.4410 +10978 22916 0.5700 +10978 23048 0.4260 +10978 23144 0.7080 +10978 23157 0.4260 +10978 23211 0.5620 +10978 23283 0.9180 +10978 23365 0.4240 +10978 23405 0.9030 +10978 26097 0.5040 +10978 26523 0.7270 +10978 27161 0.9170 +10978 29101 0.5730 +10978 29102 0.7310 +10978 29894 0.9250 +10978 51213 0.4990 +10978 51362 0.5040 +10978 51367 0.9000 +10978 51493 0.5580 +10978 51585 0.9990 +10978 51692 0.8500 +10978 53981 0.8300 +10978 54487 0.7270 +10978 54913 0.9000 +10978 54931 0.5550 +10978 55110 0.5040 +10978 55339 0.7030 +10978 55756 0.4390 +10978 56903 0.4500 +10978 57082 0.5630 +10978 57187 0.5820 +10978 60509 0.4770 +10978 64848 0.7680 +10978 64895 0.4560 +10978 65109 0.4990 +10978 79042 0.9690 +10978 79228 0.5510 +10978 79869 0.7690 +10978 79897 0.9000 +10978 80000 0.5380 +10978 80145 0.5610 +10978 80746 0.9900 +10978 81608 0.9230 +10978 81887 0.4140 +10978 84248 0.5040 +10978 84271 0.5890 +10978 84321 0.6140 +10978 84324 0.7470 +10978 84524 0.5620 +10978 84871 0.4790 +10978 91746 0.7560 +10978 114034 0.4260 +10978 116461 0.9790 +10978 136157 0.4920 +10978 138716 0.5550 +10978 143506 0.4920 +10978 192669 0.7360 +10978 192670 0.7350 +10978 196120 0.4920 +10978 199746 0.4990 +10978 283989 0.9740 +10978 376940 0.5620 +10978 390031 0.4920 +10978 390033 0.4920 +10978 441584 0.4920 +10978 642843 0.7400 +10979 23075 0.4300 +10979 23301 0.4800 +10979 23607 0.6640 +10979 23646 0.4330 +10979 25894 0.4600 +10979 25959 0.6210 +10979 26030 0.5000 +10979 26499 0.7420 +10979 26585 0.4320 +10979 29780 0.6240 +10979 51314 0.7200 +10979 51338 0.4790 +10979 54209 0.4780 +10979 54749 0.5120 +10979 54751 0.9990 +10979 55063 0.7640 +10979 55612 0.7430 +10979 55679 0.4490 +10979 55742 0.8930 +10979 57091 0.7710 +10979 57154 0.5930 +10979 64098 0.5600 +10979 64231 0.6300 +10979 79746 0.4020 +10979 79890 0.6760 +10979 83660 0.7180 +10979 83661 0.4350 +10979 83706 0.7980 +10979 96626 0.4770 +10979 123041 0.6910 +10979 124152 0.4560 +10979 245802 0.5130 +10979 285641 0.5360 +10979 399665 0.4770 +10979 643680 0.5420 +10980 10987 0.9990 +10980 11037 0.4990 +10980 11047 0.5840 +10980 11091 0.4470 +10980 23038 0.6020 +10980 23142 0.4650 +10980 23172 0.4650 +10980 23276 0.5080 +10980 23412 0.4460 +10980 25793 0.5980 +10980 25879 0.4850 +10980 26094 0.8560 +10980 26234 0.4350 +10980 27040 0.7200 +10980 27335 0.5740 +10980 27348 0.5360 +10980 28952 0.4200 +10980 28991 0.4250 +10980 29099 0.4760 +10980 29844 0.4090 +10980 50717 0.5120 +10980 50813 0.9990 +10980 51081 0.6410 +10980 51122 0.4290 +10980 51138 0.9990 +10980 51185 0.8140 +10980 51386 0.5370 +10980 51397 0.4800 +10980 51514 0.7360 +10980 53339 0.7450 +10980 54165 0.6220 +10980 54537 0.4390 +10980 54617 0.4350 +10980 54876 0.4980 +10980 54939 0.4860 +10980 54951 0.4400 +10980 55012 0.4140 +10980 55070 0.7360 +10980 55208 0.4650 +10980 55317 0.4250 +10980 55611 0.6560 +10980 55643 0.8350 +10980 55651 0.4170 +10980 55827 0.4850 +10980 55832 0.4680 +10980 55968 0.6620 +10980 56061 0.5000 +10980 57559 0.6710 +10980 64326 0.8190 +10980 64708 0.9990 +10980 64960 0.4030 +10980 64963 0.4280 +10980 79016 0.7560 +10980 79184 0.4300 +10980 79269 0.5300 +10980 79913 0.4360 +10980 80067 0.4890 +10980 80344 0.9210 +10980 83444 0.4230 +10980 83473 0.5660 +10980 84196 0.4230 +10980 84259 0.4750 +10980 84844 0.4490 +10980 84861 0.5470 +10980 84954 0.6910 +10980 85377 0.4510 +10980 85439 0.4990 +10980 89796 0.4900 +10980 93973 0.4370 +10980 112817 0.4640 +10980 114803 0.4350 +10980 115290 0.7860 +10980 116138 0.4350 +10980 122769 0.8290 +10980 134510 0.4430 +10980 139562 0.4330 +10980 142684 0.4640 +10980 144699 0.4920 +10980 149951 0.4360 +10980 150678 0.9850 +10980 150684 0.4860 +10980 170622 0.4990 +10980 283899 0.4390 +10980 286187 0.7560 +10980 317719 0.5910 +10980 387357 0.7200 +10980 404672 0.5040 +10980 728689 0.4330 +10980 100652824 0.4120 +10981 11031 0.4090 +10981 11216 0.5180 +10981 11331 0.6580 +10981 22930 0.4720 +10981 22999 0.4240 +10981 23011 0.5130 +10981 23241 0.5510 +10981 23682 0.7810 +10981 51622 0.4930 +10981 51699 0.4110 +10981 54536 0.6530 +10981 54567 0.4290 +10981 55737 0.5310 +10981 57589 0.5630 +10981 58533 0.5730 +10981 63971 0.5350 +10981 79735 0.4160 +10981 81846 0.4630 +10981 84079 0.9940 +10981 84343 0.4930 +10981 89781 0.7660 +10981 117177 0.6050 +10981 118813 0.6440 +10981 120892 0.6890 +10981 129049 0.4070 +10981 140775 0.6270 +10981 196383 0.4320 +10981 221960 0.4920 +10981 285282 0.4050 +10981 326624 0.4860 +10981 445815 0.4980 +10982 11064 0.4620 +10982 22919 0.8510 +10982 22924 0.8810 +10982 23122 0.4500 +10982 23271 0.5790 +10982 23332 0.4500 +10982 23741 0.5460 +10982 26986 0.4930 +10982 29890 0.9030 +10982 30011 0.4300 +10982 51807 0.4020 +10982 54795 0.4760 +10982 55118 0.7820 +10982 55521 0.5440 +10982 57576 0.6080 +10982 57606 0.4150 +10982 64783 0.7660 +10982 79184 0.4430 +10982 81930 0.4790 +10982 84617 0.4070 +10982 90990 0.4140 +10982 137902 0.4500 +10982 145508 0.4620 +10982 171023 0.4170 +10982 203068 0.5100 +10982 246176 0.4020 +10982 347733 0.4370 +10983 26999 0.4390 +10983 27348 0.4230 +10983 51582 0.5830 +10983 65061 0.4400 +10983 79661 0.4550 +10983 81669 0.4490 +10983 92292 0.4030 +10983 219970 0.4030 +10983 353513 0.4180 +10983 494551 0.4120 +10983 644672 0.4400 +10983 728642 0.4420 +10983 100287520 0.4030 +10985 10989 0.5650 +10985 11128 0.4140 +10985 11222 0.6220 +10985 11224 0.4630 +10985 11260 0.4970 +10985 22984 0.6930 +10985 23020 0.6200 +10985 23065 0.4050 +10985 23076 0.5030 +10985 23165 0.6490 +10985 23197 0.6730 +10985 23204 0.7550 +10985 23223 0.4080 +10985 23309 0.4960 +10985 23352 0.4930 +10985 23381 0.7820 +10985 23395 0.4040 +10985 23438 0.7600 +10985 23511 0.6280 +10985 23521 0.8110 +10985 23560 0.4180 +10985 23640 0.5060 +10985 23644 0.5270 +10985 25873 0.8650 +10985 25885 0.5840 +10985 25921 0.4540 +10985 26155 0.4300 +10985 27102 0.5810 +10985 28998 0.5990 +10985 29093 0.5750 +10985 29889 0.4200 +10985 51065 0.8150 +10985 51069 0.5630 +10985 51073 0.5440 +10985 51081 0.6420 +10985 51116 0.5560 +10985 51121 0.7890 +10985 51144 0.4100 +10985 51149 0.8110 +10985 51154 0.5860 +10985 51319 0.7800 +10985 51366 0.4070 +10985 51389 0.7670 +10985 51479 0.4250 +10985 54948 0.5150 +10985 55127 0.6090 +10985 55173 0.7700 +10985 55226 0.6900 +10985 55239 0.5140 +10985 55272 0.6910 +10985 55324 0.9920 +10985 55364 0.6680 +10985 55651 0.5150 +10985 55703 0.4380 +10985 55754 0.5120 +10985 55854 0.4880 +10985 56648 0.5160 +10985 56893 0.4200 +10985 57448 0.4780 +10985 57510 0.6490 +10985 57805 0.4330 +10985 58516 0.4160 +10985 64087 0.4840 +10985 64374 0.5080 +10985 64434 0.5000 +10985 64960 0.6580 +10985 64963 0.5890 +10985 64969 0.8050 +10985 65083 0.7510 +10985 65123 0.5070 +10985 79039 0.4020 +10985 79571 0.4650 +10985 79590 0.6010 +10985 79631 0.5960 +10985 80205 0.4330 +10985 83743 0.4580 +10985 84172 0.5000 +10985 84337 0.4690 +10985 84916 0.4710 +10985 85476 0.5850 +10985 90353 0.4580 +10985 90850 0.7200 +10985 92856 0.4850 +10985 114987 0.8120 +10985 116832 0.4980 +10985 124454 0.4060 +10985 126402 0.6170 +10985 140032 0.6440 +10985 140801 0.8000 +10985 143244 0.5160 +10985 161291 0.4990 +10985 200916 0.7750 +10985 201595 0.4770 +10985 201965 0.4740 +10985 254268 0.7460 +10985 255308 0.4350 +10985 285855 0.8050 +10985 337867 0.6240 +10985 340273 0.5280 +10985 347487 0.7830 +10985 387129 0.6130 +10985 401152 0.4220 +10985 440275 0.9940 +10985 641776 0.4580 +10985 643909 0.4580 +10985 645051 0.4320 +10985 645073 0.4320 +10985 728524 0.4580 +10985 729396 0.4320 +10985 729422 0.4320 +10985 729428 0.4320 +10985 729431 0.4320 +10985 729442 0.4320 +10985 729447 0.4320 +10985 100008586 0.4320 +10985 100132399 0.4320 +10985 100287482 0.5390 +10985 100505478 0.5760 +10985 100526842 0.7780 +10985 100529097 0.6030 +10985 100529239 0.8040 +10985 100996746 0.4580 +10985 102724473 0.4320 +10985 105180390 0.4580 +10985 105180391 0.4580 +10985 114483834 0.6330 +10987 10988 0.6850 +10987 11020 0.4780 +10987 11037 0.4990 +10987 11047 0.8110 +10987 11065 0.4440 +10987 11091 0.4820 +10987 11171 0.4050 +10987 11236 0.7090 +10987 11315 0.4400 +10987 22919 0.5620 +10987 22938 0.4260 +10987 23020 0.8270 +10987 23032 0.4750 +10987 23038 0.5750 +10987 23066 0.5280 +10987 23142 0.5790 +10987 23172 0.5560 +10987 23326 0.7060 +10987 23358 0.4990 +10987 23412 0.5090 +10987 23567 0.5170 +10987 23633 0.4110 +10987 24148 0.4420 +10987 25793 0.5760 +10987 25820 0.4460 +10987 25879 0.5480 +10987 25980 0.6560 +10987 26094 0.7640 +10987 26121 0.5170 +10987 26160 0.4490 +10987 26234 0.6380 +10987 26263 0.4860 +10987 27040 0.7200 +10987 27304 0.4680 +10987 27335 0.9240 +10987 27348 0.5340 +10987 28952 0.4160 +10987 28957 0.4040 +10987 28991 0.4880 +10987 28998 0.5160 +10987 29099 0.4260 +10987 29126 0.6720 +10987 29761 0.4670 +10987 29789 0.4430 +10987 29844 0.4100 +10987 29959 0.4310 +10987 29979 0.4280 +10987 30968 0.5900 +10987 50717 0.4360 +10987 50813 0.9990 +10987 51001 0.4680 +10987 51081 0.5580 +10987 51122 0.4430 +10987 51138 0.9990 +10987 51185 0.8790 +10987 51377 0.8230 +10987 51386 0.8740 +10987 51397 0.4900 +10987 51514 0.8580 +10987 51633 0.5570 +10987 51728 0.4430 +10987 53339 0.7810 +10987 54165 0.7590 +10987 54617 0.4280 +10987 54764 0.4230 +10987 54800 0.4090 +10987 54876 0.4050 +10987 54918 0.4350 +10987 54939 0.4960 +10987 54951 0.4810 +10987 54956 0.4440 +10987 55031 0.4330 +10987 55070 0.7310 +10987 55208 0.6400 +10987 55236 0.4760 +10987 55611 0.6470 +10987 55643 0.8370 +10987 55793 0.6680 +10987 55827 0.4460 +10987 55832 0.8710 +10987 55958 0.4440 +10987 56061 0.4310 +10987 56943 0.4410 +10987 56957 0.4530 +10987 57542 0.5230 +10987 57559 0.8870 +10987 57599 0.5880 +10987 57646 0.5080 +10987 57663 0.4130 +10987 57695 0.4880 +10987 59348 0.4530 +10987 64326 0.5930 +10987 64708 0.9990 +10987 64960 0.4360 +10987 65266 0.4130 +10987 78990 0.4420 +10987 79016 0.5810 +10987 79184 0.5830 +10987 79269 0.4300 +10987 79868 0.4390 +10987 79876 0.4260 +10987 79913 0.4300 +10987 80013 0.4230 +10987 80067 0.4020 +10987 80124 0.5390 +10987 80204 0.5160 +10987 80311 0.4070 +10987 80344 0.8330 +10987 81502 0.6450 +10987 81620 0.4990 +10987 83444 0.4230 +10987 83473 0.5630 +10987 83939 0.4050 +10987 84142 0.4400 +10987 84196 0.4440 +10987 84259 0.6080 +10987 84433 0.6060 +10987 84861 0.6590 +10987 84954 0.6620 +10987 85377 0.5030 +10987 85439 0.4990 +10987 90293 0.4660 +10987 90410 0.4790 +10987 92552 0.4960 +10987 92565 0.6480 +10987 93973 0.4600 +10987 96459 0.5130 +10987 112939 0.4340 +10987 114803 0.5340 +10987 115290 0.8270 +10987 122769 0.5080 +10987 123228 0.6010 +10987 123879 0.4170 +10987 125476 0.4050 +10987 126119 0.7930 +10987 133482 0.4790 +10987 134510 0.4760 +10987 139562 0.4880 +10987 140459 0.4880 +10987 140739 0.6140 +10987 144699 0.4680 +10987 149428 0.4100 +10987 149951 0.4260 +10987 150365 0.4990 +10987 150678 0.9830 +10987 150684 0.5200 +10987 170622 0.4370 +10987 219333 0.4120 +10987 221302 0.7440 +10987 283899 0.4330 +10987 284111 0.6590 +10987 317719 0.6090 +10987 373509 0.4060 +10987 377630 0.4550 +10987 387103 0.5620 +10987 387357 0.7200 +10987 404672 0.6390 +10987 728689 0.7280 +10987 100652824 0.4120 +10988 11056 0.4180 +10988 11073 0.4410 +10988 11128 0.4430 +10988 11137 0.4380 +10988 11222 0.7420 +10988 11224 0.8950 +10988 23173 0.9910 +10988 23204 0.5230 +10988 23246 0.6490 +10988 23435 0.5260 +10988 23481 0.7550 +10988 23521 0.7170 +10988 23549 0.4300 +10988 23560 0.8350 +10988 23640 0.6590 +10988 25873 0.5610 +10988 25885 0.4430 +10988 26135 0.5680 +10988 26156 0.5150 +10988 26289 0.4430 +10988 26354 0.5210 +10988 26574 0.4060 +10988 28998 0.6760 +10988 29088 0.4360 +10988 29093 0.7220 +10988 29889 0.5630 +10988 29927 0.6660 +10988 29997 0.5660 +10988 50808 0.4620 +10988 51042 0.5930 +10988 51065 0.4660 +10988 51068 0.6640 +10988 51069 0.7290 +10988 51073 0.6830 +10988 51081 0.6670 +10988 51116 0.5660 +10988 51121 0.7810 +10988 51149 0.4790 +10988 51154 0.7510 +10988 51185 0.6240 +10988 51187 0.7000 +10988 51319 0.4790 +10988 51377 0.8660 +10988 51388 0.4340 +10988 51499 0.6100 +10988 51602 0.6930 +10988 51727 0.4540 +10988 54475 0.4650 +10988 54663 0.5080 +10988 54881 0.4260 +10988 54948 0.6050 +10988 55122 0.4490 +10988 55127 0.4170 +10988 55153 0.6030 +10988 55173 0.6220 +10988 55176 0.6470 +10988 55272 0.7290 +10988 55299 0.5200 +10988 55316 0.6420 +10988 55341 0.4880 +10988 55591 0.5480 +10988 55651 0.4800 +10988 55660 0.4130 +10988 55703 0.5030 +10988 55759 0.5550 +10988 55854 0.6910 +10988 56648 0.5480 +10988 63875 0.6290 +10988 63931 0.6480 +10988 64146 0.6490 +10988 64374 0.5990 +10988 64960 0.5020 +10988 64963 0.6490 +10988 64968 0.7250 +10988 64969 0.7210 +10988 64979 0.7360 +10988 64983 0.4320 +10988 65003 0.4400 +10988 65008 0.5340 +10988 65121 0.4090 +10988 65122 0.4090 +10988 79590 0.7330 +10988 79631 0.6020 +10988 79680 0.4890 +10988 79727 0.4820 +10988 80155 0.4640 +10988 80218 0.4090 +10988 83667 0.4130 +10988 84154 0.6850 +10988 84172 0.4590 +10988 84219 0.4430 +10988 84365 0.5960 +10988 85476 0.6320 +10988 90441 0.4510 +10988 116832 0.4220 +10988 122481 0.4430 +10988 123099 0.8970 +10988 124454 0.4280 +10988 126402 0.6550 +10988 134218 0.4400 +10988 140801 0.5940 +10988 143244 0.5480 +10988 158067 0.4430 +10988 200916 0.4800 +10988 201931 0.4100 +10988 219927 0.6940 +10988 221264 0.4430 +10988 254042 0.4680 +10988 285855 0.7310 +10988 343068 0.4090 +10988 343070 0.4090 +10988 347487 0.5600 +10988 387129 0.7240 +10988 390999 0.4090 +10988 391002 0.4090 +10988 400735 0.4090 +10988 400736 0.4090 +10988 440503 0.4100 +10988 440560 0.4090 +10988 440561 0.4090 +10988 441873 0.4090 +10988 641776 0.5100 +10988 643909 0.5100 +10988 645359 0.4090 +10988 653619 0.4090 +10988 728524 0.5100 +10988 729528 0.4090 +10988 100287482 0.5600 +10988 100505478 0.7240 +10988 100526842 0.7130 +10988 100996746 0.5100 +10988 101929983 0.4090 +10988 105180390 0.5100 +10988 105180391 0.5100 +10989 11331 0.7510 +10989 22827 0.8780 +10989 22906 0.4460 +10989 22987 0.4530 +10989 23173 0.4010 +10989 23392 0.4080 +10989 23533 0.8530 +10989 23788 0.4940 +10989 24144 0.4010 +10989 25813 0.9990 +10989 25994 0.5000 +10989 26227 0.4160 +10989 26515 0.4010 +10989 26519 0.4270 +10989 26520 0.5200 +10989 27089 0.4360 +10989 27185 0.7960 +10989 27429 0.4580 +10989 28976 0.4990 +10989 29090 0.4090 +10989 29889 0.4780 +10989 29928 0.4720 +10989 30968 0.4560 +10989 51024 0.6060 +10989 51144 0.4250 +10989 51434 0.5330 +10989 51744 0.6190 +10989 54205 0.5910 +10989 54543 0.8140 +10989 54776 0.8470 +10989 54927 0.9990 +10989 54940 0.5410 +10989 55075 0.5830 +10989 55143 0.4450 +10989 55288 0.4270 +10989 55486 0.5440 +10989 55669 0.8730 +10989 55735 0.9840 +10989 55753 0.4700 +10989 55967 0.6960 +10989 56910 0.4590 +10989 56947 0.4560 +10989 56993 0.9450 +10989 64216 0.5800 +10989 65018 0.7340 +10989 79135 0.9990 +10989 79180 0.4990 +10989 84134 0.7420 +10989 84269 0.6950 +10989 84303 0.9990 +10989 89941 0.4170 +10989 90580 0.4070 +10989 91137 0.5260 +10989 92609 0.6700 +10989 114548 0.4240 +10989 114971 0.4230 +10989 115209 0.5250 +10989 125988 0.9940 +10989 131118 0.4470 +10989 131474 0.6520 +10989 139322 0.9990 +10989 140823 0.4890 +10989 285521 0.8060 +10989 345778 0.8250 +10989 387990 0.6440 +10989 400916 0.9790 +10989 401505 0.7940 +10989 404672 0.6610 +10989 440574 0.9990 +10989 100188893 0.5920 +10989 100287932 0.5390 +10990 55355 0.4320 +10990 84868 0.4220 +10990 91937 0.4060 +10991 11254 0.4010 +10991 11280 0.8550 +10991 23284 0.5530 +10991 23428 0.5080 +10991 27165 0.4130 +10991 58492 0.5460 +10991 79140 0.4860 +10991 79751 0.4160 +10991 92140 0.4340 +10991 92745 0.9060 +10991 120103 0.4010 +10991 124935 0.4050 +10991 140679 0.7600 +10991 153129 0.4750 +10991 206358 0.4210 +10991 340024 0.4820 +10992 11017 0.8040 +10992 11066 0.9450 +10992 11100 0.4370 +10992 11157 0.9890 +10992 11193 0.9850 +10992 11198 0.5280 +10992 11316 0.4850 +10992 11325 0.9790 +10992 11338 0.9980 +10992 22794 0.5140 +10992 22820 0.5290 +10992 22826 0.6500 +10992 22827 0.7750 +10992 22907 0.5230 +10992 22916 0.9880 +10992 22938 0.9580 +10992 22944 0.8080 +10992 22948 0.5820 +10992 22985 0.4150 +10992 23020 0.9990 +10992 23082 0.4340 +10992 23091 0.5080 +10992 23350 0.8560 +10992 23398 0.5090 +10992 23435 0.4300 +10992 23450 0.9990 +10992 23451 0.9990 +10992 23524 0.9940 +10992 23548 0.6130 +10992 23658 0.9890 +10992 23759 0.8320 +10992 24148 0.9990 +10992 24149 0.4020 +10992 25766 0.8710 +10992 25804 0.9910 +10992 25902 0.4270 +10992 25949 0.7780 +10992 26058 0.4470 +10992 26121 0.9920 +10992 27238 0.8430 +10992 27258 0.9950 +10992 27288 0.6340 +10992 27316 0.5250 +10992 27336 0.9770 +10992 27339 0.9930 +10992 51118 0.4270 +10992 51202 0.4390 +10992 51322 0.6600 +10992 51340 0.9860 +10992 51362 0.9680 +10992 51428 0.4840 +10992 51503 0.9300 +10992 51574 0.6180 +10992 51585 0.5190 +10992 51631 0.5890 +10992 51634 0.9990 +10992 51639 0.9990 +10992 51645 0.8650 +10992 51690 0.9910 +10992 51691 0.9890 +10992 51729 0.8680 +10992 51747 0.7890 +10992 54033 0.5650 +10992 54496 0.5780 +10992 54819 0.4870 +10992 54883 0.7420 +10992 54952 0.4500 +10992 54957 0.4260 +10992 55015 0.6250 +10992 55094 0.4050 +10992 55100 0.4110 +10992 55110 0.9090 +10992 55226 0.4420 +10992 55234 0.9790 +10992 55285 0.8320 +10992 55599 0.9810 +10992 55660 0.7530 +10992 55671 0.5480 +10992 55692 0.6350 +10992 55696 0.9310 +10992 55702 0.6190 +10992 55954 0.8820 +10992 56252 0.4600 +10992 56259 0.8440 +10992 56341 0.4100 +10992 56949 0.9990 +10992 57062 0.5430 +10992 57187 0.5850 +10992 57703 0.9950 +10992 57794 0.5640 +10992 57819 0.9940 +10992 58517 0.7690 +10992 59286 0.8030 +10992 60625 0.5780 +10992 65109 0.5240 +10992 79005 0.9020 +10992 79171 0.8660 +10992 79446 0.5650 +10992 79631 0.4760 +10992 79637 0.9230 +10992 79696 0.6100 +10992 79753 0.9950 +10992 80349 0.4390 +10992 83443 0.9990 +10992 83938 0.7840 +10992 84060 0.8000 +10992 84081 0.5410 +10992 84316 0.6560 +10992 84524 0.4260 +10992 84811 0.9980 +10992 84844 0.9990 +10992 84950 0.9850 +10992 84967 0.8550 +10992 84991 0.9150 +10992 85313 0.4810 +10992 85437 0.9280 +10992 85476 0.4820 +10992 90324 0.4380 +10992 90826 0.7230 +10992 91603 0.9940 +10992 114034 0.5040 +10992 118924 0.7390 +10992 120892 0.5100 +10992 124245 0.4180 +10992 126259 0.6560 +10992 133482 0.4340 +10992 139804 0.6340 +10992 147650 0.6560 +10992 149041 0.5140 +10992 151613 0.4870 +10992 151987 0.6720 +10992 153527 0.9910 +10992 154007 0.8840 +10992 164045 0.5890 +10992 164781 0.4430 +10992 220074 0.7840 +10992 220988 0.4650 +10992 222183 0.5980 +10992 284325 0.6330 +10992 347744 0.4460 +10992 348793 0.4480 +10992 389203 0.4540 +10992 392517 0.8400 +10992 440093 0.4910 +10992 440686 0.4910 +10992 653604 0.5040 +10992 728689 0.4130 +10992 100534599 0.8890 +10992 100996928 0.6230 +10993 10994 0.6860 +10993 23382 0.8650 +10993 23464 0.4340 +10993 23510 0.5050 +10993 23743 0.8430 +10993 26061 0.6890 +10993 26227 0.5100 +10993 29968 0.5020 +10993 55258 0.6870 +10993 55304 0.8460 +10993 56267 0.8410 +10993 57127 0.4120 +10993 57591 0.6690 +10993 63826 0.9410 +10993 64902 0.8700 +10993 79603 0.4480 +10993 79896 0.6870 +10993 80347 0.4340 +10993 84532 0.4510 +10993 84706 0.4610 +10993 92483 0.8200 +10993 113675 0.9060 +10993 137872 0.5360 +10993 160287 0.8200 +10994 11285 0.4390 +10994 23600 0.7360 +10994 26173 0.4470 +10994 26958 0.5460 +10994 27089 0.4290 +10994 29925 0.5130 +10994 29926 0.5130 +10994 29968 0.4670 +10994 51179 0.7610 +10994 54363 0.7400 +10994 54511 0.5140 +10994 55258 0.5060 +10994 56965 0.5500 +10994 57591 0.8630 +10994 57704 0.4750 +10994 63826 0.6360 +10994 64852 0.4350 +10994 79668 0.5490 +10994 79783 0.7340 +10994 79852 0.5670 +10994 79896 0.5060 +10994 80724 0.6690 +10994 84076 0.4290 +10994 84129 0.6410 +10994 84263 0.5760 +10994 85360 0.5500 +10994 113675 0.7040 +10994 114112 0.5370 +10994 114823 0.4810 +10994 126133 0.4030 +10994 126402 0.4050 +10994 132949 0.4040 +10994 137872 0.7060 +10994 140856 0.4680 +10994 284532 0.4180 +10994 374659 0.8460 +10994 109703458 0.4650 +10998 11283 0.4310 +10998 23600 0.9470 +10998 27241 0.4270 +10998 28234 0.4380 +10998 51085 0.4460 +10998 51302 0.4490 +10998 51703 0.4650 +10998 55212 0.4360 +10998 64240 0.4270 +10998 80270 0.5470 +10998 80347 0.5040 +10998 84649 0.4830 +10998 116519 0.4980 +10998 123264 0.4300 +10998 132949 0.6990 +10998 200931 0.4300 +10998 201514 0.5740 +10999 23305 0.4490 +10999 26154 0.5010 +10999 27241 0.4270 +10999 29881 0.5650 +10999 51099 0.4420 +10999 51490 0.4650 +10999 51703 0.5530 +10999 54407 0.4630 +10999 54662 0.4590 +10999 55089 0.4300 +10999 55212 0.4360 +10999 57104 0.4750 +10999 59344 0.5200 +10999 64240 0.4460 +10999 64241 0.4180 +10999 64834 0.4480 +10999 80168 0.4380 +10999 80347 0.7010 +10999 84649 0.5910 +10999 121214 0.4540 +10999 126410 0.5880 +10999 132949 0.8430 +10999 204219 0.4880 +10999 285848 0.6630 +10999 348938 0.7340 +10999 376497 0.9410 +10999 643418 0.5170 +11000 27241 0.4270 +11000 51205 0.4350 +11000 51703 0.4400 +11000 55212 0.4360 +11000 80347 0.4060 +11000 81031 0.4720 +11000 132949 0.7400 +11000 159371 0.4450 +11001 11343 0.4250 +11001 23205 0.8810 +11001 23305 0.5020 +11001 23600 0.4110 +11001 27241 0.4270 +11001 51085 0.4250 +11001 51703 0.6080 +11001 54898 0.4070 +11001 55212 0.4360 +11001 55937 0.4170 +11001 57104 0.4230 +11001 60481 0.4200 +11001 63924 0.5090 +11001 79071 0.4720 +11001 79888 0.6860 +11001 79895 0.5660 +11001 80339 0.6180 +11001 80347 0.7380 +11001 81616 0.4410 +11001 84649 0.5400 +11001 129642 0.4700 +11001 132949 0.7070 +11001 219743 0.5440 +11004 11065 0.9540 +11004 11113 0.4580 +11004 11127 0.6240 +11004 11129 0.7080 +11004 11130 0.8270 +11004 11169 0.4470 +11004 11258 0.5000 +11004 11339 0.8660 +11004 22919 0.9650 +11004 22920 0.6820 +11004 22924 0.7620 +11004 22974 0.9990 +11004 23046 0.6210 +11004 23095 0.6410 +11004 23122 0.4960 +11004 23244 0.5810 +11004 23303 0.6080 +11004 23310 0.5000 +11004 23332 0.6240 +11004 23397 0.8800 +11004 23594 0.4300 +11004 23649 0.4290 +11004 24137 0.9470 +11004 25886 0.4620 +11004 26153 0.6160 +11004 26271 0.5850 +11004 26286 0.5000 +11004 26586 0.7930 +11004 27436 0.5570 +11004 29028 0.6320 +11004 29089 0.5830 +11004 29127 0.8450 +11004 29128 0.6500 +11004 51053 0.4330 +11004 51164 0.5010 +11004 51203 0.9430 +11004 51512 0.7540 +11004 51514 0.5710 +11004 51594 0.5000 +11004 51659 0.5390 +11004 53407 0.5220 +11004 54069 0.5510 +11004 54443 0.8210 +11004 54478 0.6760 +11004 54801 0.4520 +11004 54820 0.6200 +11004 54821 0.6010 +11004 54892 0.5970 +11004 54908 0.4410 +11004 55010 0.5760 +11004 55055 0.6140 +11004 55083 0.6030 +11004 55143 0.9770 +11004 55165 0.9480 +11004 55215 0.5130 +11004 55247 0.5580 +11004 55320 0.4960 +11004 55355 0.9380 +11004 55388 0.6110 +11004 55582 0.6280 +11004 55605 0.6630 +11004 55614 0.5710 +11004 55632 0.4200 +11004 55635 0.8300 +11004 55683 0.4460 +11004 55723 0.7100 +11004 55738 0.5030 +11004 55789 0.6540 +11004 55839 0.7270 +11004 55850 0.5010 +11004 55860 0.5250 +11004 55920 0.6820 +11004 56992 0.9450 +11004 57082 0.7170 +11004 57405 0.7770 +11004 57509 0.7350 +11004 57576 0.6750 +11004 60561 0.5100 +11004 63967 0.6720 +11004 63971 0.5810 +11004 64105 0.4900 +11004 64151 0.9330 +11004 64837 0.5700 +11004 64946 0.7700 +11004 79000 0.4910 +11004 79019 0.6350 +11004 79075 0.4940 +11004 79172 0.5270 +11004 79682 0.6060 +11004 79733 0.7720 +11004 79801 0.6440 +11004 79823 0.4620 +11004 79866 0.5170 +11004 79980 0.6020 +11004 80152 0.4360 +11004 81565 0.7300 +11004 81610 0.6680 +11004 81620 0.6590 +11004 81624 0.5150 +11004 81930 0.9540 +11004 83461 0.9300 +11004 83540 0.9350 +11004 83879 0.5330 +11004 83903 0.8860 +11004 84057 0.5060 +11004 84364 0.5040 +11004 84516 0.5010 +11004 84643 0.8550 +11004 84722 0.5750 +11004 84823 0.4490 +11004 84930 0.5230 +11004 89839 0.4310 +11004 90381 0.6000 +11004 90417 0.6440 +11004 90990 0.6340 +11004 93661 0.5130 +11004 113130 0.8930 +11004 117286 0.6700 +11004 121441 0.4040 +11004 124602 0.7010 +11004 128239 0.6950 +11004 144455 0.4520 +11004 146909 0.9830 +11004 147700 0.4490 +11004 147841 0.6600 +11004 150468 0.7950 +11004 151246 0.9390 +11004 151648 0.9280 +11004 157313 0.8850 +11004 157570 0.5660 +11004 166979 0.5990 +11004 220134 0.8380 +11004 221150 0.8670 +11004 221458 0.6720 +11004 259266 0.9360 +11004 283431 0.4180 +11004 285643 0.7250 +11004 347733 0.9240 +11004 348235 0.4150 +11004 374654 0.6540 +11004 378708 0.7530 +11004 387103 0.6790 +11004 440093 0.4130 +11004 440686 0.4140 +11004 554282 0.4530 +11004 653604 0.4200 +11004 653820 0.4910 +11004 728833 0.4370 +11004 729533 0.4540 +11005 11012 0.4520 +11005 11202 0.4670 +11005 23581 0.4470 +11005 25818 0.9920 +11005 26085 0.5970 +11005 26154 0.4740 +11005 27290 0.4670 +11005 43847 0.8000 +11005 43849 0.4880 +11005 49860 0.6750 +11005 51131 0.7540 +11005 57628 0.5230 +11005 59344 0.4750 +11005 63036 0.5480 +11005 80332 0.6200 +11005 81704 0.4350 +11005 84283 0.4630 +11005 84651 0.6400 +11005 85480 0.5960 +11005 90865 0.4040 +11005 126410 0.4810 +11005 144568 0.4600 +11005 153218 0.4460 +11005 153745 0.4220 +11005 196374 0.4690 +11005 285848 0.4670 +11005 348938 0.4970 +11005 388533 0.4420 +11005 388698 0.8920 +11005 404203 0.6450 +11005 440854 0.5010 +11005 643394 0.6260 +11006 11027 0.6550 +11006 23547 0.5540 +11006 29126 0.5070 +11006 30835 0.4370 +11006 50943 0.4780 +11006 51284 0.4300 +11006 54209 0.6050 +11006 54210 0.5080 +11006 54994 0.4080 +11006 64092 0.5050 +11006 64218 0.5000 +11006 64581 0.4430 +11006 80007 0.5300 +11006 80380 0.4750 +11006 80381 0.4870 +11006 84868 0.4770 +11006 146722 0.4850 +11006 170482 0.4010 +11007 11339 0.4270 +11007 23368 0.6080 +11007 54345 0.5170 +11007 54765 0.4470 +11007 55049 0.4140 +11007 57584 0.4190 +11007 57636 0.4710 +11007 140467 0.6700 +11007 284346 0.4380 +11009 27189 0.4260 +11009 29949 0.9700 +11009 50604 0.9320 +11009 50615 0.7440 +11009 50616 0.8550 +11009 53832 0.9990 +11009 53833 0.9990 +11009 55801 0.8270 +11009 56300 0.4380 +11009 58985 0.9990 +11009 90865 0.4040 +11009 112744 0.4260 +11009 116379 0.8580 +11009 149233 0.7410 +11009 163702 0.8340 +11009 282616 0.5180 +11009 282617 0.4490 +11009 282618 0.5820 +11009 386653 0.4060 +11010 23390 0.4040 +11010 54918 0.4310 +11010 59344 0.4640 +11010 79738 0.4470 +11010 80205 0.4090 +11010 83639 0.4440 +11010 85441 0.4840 +11010 140738 0.4050 +11010 144453 0.4110 +11010 152007 0.7620 +11010 376132 0.4250 +11011 22828 0.4900 +11011 23039 0.6210 +11011 23300 0.4020 +11011 23468 0.4200 +11011 23523 0.8210 +11011 23660 0.5260 +11011 25820 0.5120 +11011 25842 0.9970 +11011 25904 0.4740 +11011 26000 0.4180 +11011 26468 0.4200 +11011 29115 0.4160 +11011 29855 0.5740 +11011 51077 0.5270 +11011 51406 0.4050 +11011 51720 0.4280 +11011 54815 0.4140 +11011 55153 0.4070 +11011 55171 0.4800 +11011 55723 0.9810 +11011 55798 0.4580 +11011 57680 0.5190 +11011 57719 0.4200 +11011 57794 0.4160 +11011 64419 0.4400 +11011 79089 0.5420 +11011 79591 0.4550 +11011 79882 0.4380 +11011 79932 0.4210 +11011 80153 0.4420 +11011 80204 0.5330 +11011 81577 0.4480 +11011 83607 0.4640 +11011 84836 0.4580 +11011 84950 0.4880 +11011 85406 0.5310 +11011 91949 0.4370 +11011 92703 0.4670 +11011 122830 0.4850 +11011 124245 0.4340 +11011 140735 0.6510 +11011 146779 0.4500 +11011 151987 0.4420 +11011 339175 0.4710 +11011 440093 0.5510 +11011 440686 0.5510 +11011 493861 0.4200 +11011 653604 0.5610 +11012 11202 0.5750 +11012 43849 0.4420 +11012 57189 0.4220 +11012 85480 0.8650 +11012 90864 0.4250 +11012 90865 0.4410 +11012 124975 0.4570 +11012 284366 0.4390 +11012 386653 0.4490 +11012 440387 0.4540 +11014 11015 0.9220 +11014 11079 0.4210 +11014 11316 0.6340 +11014 22818 0.7090 +11014 22820 0.6930 +11014 23423 0.6120 +11014 26286 0.6350 +11014 26958 0.6040 +11014 29927 0.4410 +11014 51014 0.6870 +11014 51226 0.6100 +11014 51272 0.5720 +11014 51474 0.5200 +11014 51594 0.5720 +11014 53407 0.5420 +11014 54664 0.5230 +11014 54732 0.5960 +11014 55069 0.4570 +11014 55738 0.5310 +11014 55850 0.5040 +11014 55930 0.4190 +11014 57120 0.5920 +11014 58477 0.4070 +11014 60559 0.5150 +11014 60561 0.5130 +11014 63908 0.4990 +11014 64083 0.7450 +11014 81876 0.5930 +11014 84364 0.5510 +11014 121227 0.7380 +11014 387119 0.4240 +11014 388662 0.4160 +11014 392862 0.5830 +11015 11316 0.6140 +11015 22818 0.6750 +11015 22820 0.6480 +11015 23240 0.4350 +11015 23423 0.5810 +11015 26286 0.6360 +11015 26958 0.5620 +11015 51014 0.5700 +11015 51226 0.6820 +11015 51272 0.5100 +11015 51594 0.5190 +11015 53407 0.5050 +11015 54732 0.4850 +11015 55738 0.5270 +11015 55850 0.5040 +11015 58477 0.4010 +11015 60561 0.5040 +11015 63908 0.4990 +11015 79053 0.4990 +11015 81876 0.6340 +11015 84364 0.5580 +11015 90993 0.4350 +11015 148534 0.4670 +11015 161145 0.4430 +11016 22809 0.7510 +11016 23704 0.4760 +11016 23770 0.4500 +11016 25820 0.5570 +11016 50944 0.4450 +11016 55509 0.6600 +11016 55636 0.4080 +11016 55729 0.8230 +11016 57680 0.4490 +11016 60468 0.4250 +11016 64405 0.4660 +11016 80063 0.4610 +11016 122953 0.6530 +11017 11157 0.9260 +11017 11193 0.6510 +11017 22826 0.6570 +11017 22985 0.5780 +11017 23020 0.9190 +11017 23450 0.8120 +11017 23451 0.8150 +11017 23658 0.9360 +11017 24144 0.4250 +11017 24148 0.9160 +11017 25804 0.9260 +11017 25949 0.4330 +11017 26121 0.9230 +11017 27258 0.9300 +11017 27336 0.6150 +11017 51389 0.4840 +11017 51503 0.5920 +11017 51538 0.4540 +11017 51634 0.4870 +11017 51690 0.9490 +11017 51691 0.9240 +11017 51729 0.4610 +11017 51747 0.5150 +11017 54957 0.5530 +11017 55082 0.4690 +11017 55094 0.4910 +11017 55749 0.5070 +11017 57794 0.5130 +11017 57819 0.9210 +11017 59286 0.4950 +11017 79171 0.9640 +11017 79753 0.4520 +11017 83443 0.8370 +11017 84324 0.4460 +11017 84811 0.4440 +11017 84844 0.8330 +11017 84950 0.4780 +11017 153527 0.6190 +11017 399949 0.4110 +11018 11336 0.4260 +11018 23052 0.5490 +11018 26003 0.5210 +11018 29097 0.4210 +11018 51161 0.4970 +11018 51439 0.4900 +11018 54732 0.8760 +11018 55161 0.5540 +11018 55763 0.4230 +11018 57706 0.4490 +11018 78992 0.4120 +11018 79102 0.6150 +11018 79188 0.4280 +11018 222068 0.6340 +11018 389400 0.4610 +11018 400668 0.4550 +11019 23240 0.4580 +11019 23244 0.4460 +11019 23479 0.7730 +11019 23521 0.6670 +11019 27010 0.4790 +11019 27158 0.4580 +11019 27236 0.4180 +11019 27247 0.8900 +11019 51027 0.7290 +11019 51088 0.4800 +11019 51102 0.6720 +11019 51218 0.7430 +11019 51601 0.9980 +11019 51654 0.4610 +11019 54502 0.4340 +11019 54802 0.4150 +11019 54901 0.4420 +11019 54951 0.4420 +11019 54995 0.5000 +11019 55253 0.4720 +11019 55316 0.4080 +11019 55728 0.4470 +11019 57019 0.5920 +11019 57128 0.7170 +11019 57484 0.4260 +11019 60386 0.4370 +11019 64210 0.5560 +11019 64428 0.4180 +11019 79887 0.4020 +11019 79944 0.4290 +11019 80008 0.5150 +11019 80224 0.7380 +11019 80704 0.4380 +11019 81689 0.8230 +11019 90624 0.4940 +11019 112812 0.6800 +11019 122961 0.8480 +11019 129138 0.9420 +11019 132299 0.4220 +11019 142910 0.4070 +11019 150274 0.6030 +11019 171024 0.4070 +11019 200205 0.8510 +11019 201798 0.4680 +11019 201895 0.5740 +11019 387787 0.9950 +11019 388962 0.8540 +11019 552900 0.5690 +11019 644096 0.5070 +11019 654483 0.5660 +11020 11127 0.5770 +11020 11158 0.4450 +11020 11159 0.4410 +11020 22897 0.4080 +11020 22920 0.4910 +11020 22954 0.4510 +11020 23059 0.9920 +11020 23247 0.4570 +11020 23432 0.5690 +11020 23527 0.4090 +11020 26060 0.4200 +11020 26146 0.9980 +11020 26160 0.9950 +11020 27241 0.6850 +11020 28981 0.9990 +11020 50807 0.4470 +11020 51057 0.6250 +11020 51098 0.9990 +11020 51668 0.9990 +11020 54585 0.7520 +11020 54903 0.6230 +11020 55081 0.9980 +11020 55198 0.4440 +11020 55212 0.7020 +11020 55616 0.4030 +11020 55764 0.9630 +11020 55964 0.4680 +11020 56912 0.9990 +11020 57539 0.9560 +11020 57560 0.9940 +11020 57576 0.5340 +11020 57728 0.9610 +11020 64792 0.9990 +11020 79363 0.5610 +11020 79659 0.5350 +11020 79738 0.6430 +11020 79809 0.9660 +11020 79925 0.5580 +11020 79989 0.9940 +11020 80173 0.9990 +11020 80184 0.5720 +11020 84229 0.4200 +11020 90410 0.9900 +11020 91147 0.4520 +11020 92104 0.9550 +11020 92482 0.6970 +11020 112752 0.9710 +11020 116983 0.4050 +11020 127733 0.4630 +11020 129880 0.7090 +11020 150737 0.9990 +11020 157657 0.5320 +11020 166379 0.6640 +11020 199223 0.5850 +11020 200728 0.4470 +11020 200894 0.8430 +11020 254173 0.4850 +11020 345643 0.4110 +11020 392509 0.4720 +11021 22893 0.5180 +11021 23080 0.4170 +11021 23086 0.4180 +11021 23102 0.5750 +11021 23216 0.5250 +11021 23301 0.4520 +11021 23527 0.9950 +11021 26000 0.9410 +11021 26060 0.5540 +11021 27147 0.4900 +11021 27335 0.5450 +11021 50807 0.4770 +11021 51129 0.5490 +11021 51534 0.5370 +11021 51668 0.5550 +11021 54662 0.7080 +11021 55048 0.4280 +11021 55054 0.4400 +11021 55198 0.4240 +11021 55512 0.4470 +11021 55616 0.4060 +11021 55737 0.5920 +11021 56970 0.4530 +11021 57460 0.6010 +11021 57465 0.7810 +11021 57553 0.4420 +11021 57706 0.9990 +11021 64780 0.8020 +11021 79778 0.5490 +11021 79958 0.9780 +11021 79961 0.4970 +11021 83547 0.4140 +11021 83874 0.9920 +11021 85377 0.8400 +11021 92421 0.4570 +11021 92714 0.4300 +11021 116983 0.6690 +11021 117177 0.4450 +11021 128637 0.4270 +11021 163259 0.4840 +11021 163486 0.9990 +11021 196383 0.6130 +11021 201163 0.5290 +11021 254102 0.4260 +11021 353116 0.6160 +11021 374403 0.7790 +11021 440163 0.4340 +11022 27044 0.6810 +11022 29128 0.4390 +11022 54456 0.8270 +11022 54514 0.7210 +11022 55124 0.9040 +11022 56154 0.5280 +11022 56164 0.6360 +11022 56165 0.7060 +11022 57707 0.4560 +11022 84944 0.9150 +11022 91646 0.8190 +11022 113802 0.8010 +11022 121355 0.5940 +11022 122402 0.8830 +11022 126668 0.5070 +11022 136991 0.8140 +11022 143689 0.9800 +11022 154197 0.7360 +11022 161829 0.5770 +11022 163589 0.4290 +11022 169792 0.4040 +11022 201164 0.7980 +11022 221400 0.8800 +11022 440822 0.6040 +11022 100129278 0.4970 +11023 50945 0.4160 +11023 55252 0.8250 +11023 57698 0.5070 +11023 58499 0.9020 +11023 65979 0.4020 +11023 84159 0.4070 +11023 220202 0.4540 +11023 399823 0.4710 +11024 11314 0.4210 +11024 27036 0.5790 +11024 27180 0.4970 +11024 51311 0.6920 +11024 55355 0.4340 +11024 64407 0.4060 +11024 84689 0.4290 +11024 124599 0.5680 +11024 146722 0.5860 +11024 160364 0.4410 +11025 11314 0.4050 +11025 27036 0.4390 +11025 27180 0.5270 +11025 29760 0.5250 +11025 29992 0.4800 +11025 50856 0.4520 +11025 51311 0.4580 +11025 55355 0.4330 +11025 64386 0.4120 +11025 79168 0.7630 +11025 84868 0.4500 +11025 140885 0.4120 +11025 146722 0.5670 +11025 151827 0.5080 +11025 653361 0.4750 +11027 11151 0.4800 +11027 27036 0.4740 +11027 50856 0.4310 +11027 51311 0.4330 +11027 55355 0.4310 +11027 84106 0.4220 +11027 91662 0.4020 +11027 146722 0.4660 +11027 353514 0.4060 +11030 23007 0.4020 +11030 23152 0.4280 +11030 23543 0.9570 +11030 23598 0.5570 +11030 25894 0.4910 +11030 29978 0.4920 +11030 51179 0.4370 +11030 51316 0.4500 +11030 54715 0.7800 +11030 54845 0.7590 +11030 56893 0.5470 +11030 56970 0.4640 +11030 57084 0.4090 +11030 63893 0.4110 +11030 63948 0.4830 +11030 84528 0.4200 +11030 84991 0.4670 +11030 91869 0.4560 +11030 94233 0.6310 +11030 145226 0.5040 +11030 146664 0.5280 +11030 166863 0.4020 +11030 220202 0.4450 +11030 221662 0.4250 +11030 338917 0.4790 +11030 342371 0.5120 +11030 348093 0.8130 +11030 388820 0.4760 +11031 22907 0.4680 +11031 23001 0.4110 +11031 23101 0.4520 +11031 23102 0.7530 +11031 23355 0.5000 +11031 26130 0.8100 +11031 29995 0.4170 +11031 51479 0.4170 +11031 54536 0.6820 +11031 54567 0.4240 +11031 55823 0.4080 +11031 57403 0.9820 +11031 57617 0.4760 +11031 64145 0.5810 +11031 64601 0.4800 +11031 79890 0.8290 +11031 81796 0.4050 +11031 89122 0.4390 +11031 118813 0.6380 +11031 126432 0.4460 +11031 140775 0.4800 +11031 259173 0.4080 +11033 22821 0.4120 +11033 23303 0.9930 +11033 26499 0.7270 +11033 55738 0.4690 +11033 57662 0.4900 +11033 63971 0.6660 +11034 11151 0.4090 +11034 11344 0.4750 +11034 23022 0.4740 +11034 25828 0.4790 +11034 25966 0.4240 +11034 29114 0.4750 +11034 54434 0.5810 +11034 55860 0.4100 +11034 57026 0.4190 +11034 57175 0.5130 +11034 57180 0.4920 +11034 85464 0.4120 +11034 85477 0.5210 +11034 139741 0.4570 +11034 345456 0.7240 +11034 375189 0.7730 +11034 653857 0.4900 +11034 728378 0.4610 +11035 11140 0.8290 +11035 22861 0.4040 +11035 22933 0.4870 +11035 23098 0.5770 +11035 23118 0.5080 +11035 23586 0.6080 +11035 23643 0.6370 +11035 29108 0.4930 +11035 50507 0.5310 +11035 51284 0.7620 +11035 51314 0.4170 +11035 51806 0.4840 +11035 54106 0.5810 +11035 54205 0.5220 +11035 55072 0.4910 +11035 57162 0.9070 +11035 57506 0.4250 +11035 57523 0.4130 +11035 58484 0.5050 +11035 64127 0.4370 +11035 64859 0.5010 +11035 79792 0.8340 +11035 81030 0.9960 +11035 81858 0.4840 +11035 91860 0.4870 +11035 114548 0.7720 +11035 114609 0.4740 +11035 115004 0.4090 +11035 139341 0.4320 +11035 148022 0.9830 +11035 163688 0.4830 +11035 192111 0.7530 +11035 197259 0.9990 +11035 257397 0.4100 +11035 284110 0.5460 +11035 353376 0.5910 +11036 11037 0.9920 +11036 51003 0.5800 +11036 55617 0.5380 +11036 57706 0.4060 +11036 84246 0.6020 +11036 116729 0.4440 +11036 129285 0.4020 +11036 246721 0.4180 +11036 285051 0.4720 +11036 286749 0.4010 +11036 387332 0.8230 +11036 399949 0.5580 +11036 548644 0.4180 +11036 728340 0.5620 +11037 23208 0.5090 +11037 26119 0.4990 +11037 27348 0.4990 +11037 29978 0.4990 +11037 50813 0.4990 +11037 51138 0.4990 +11037 64708 0.4990 +11037 85439 0.5060 +11037 90019 0.4990 +11037 124411 0.4050 +11037 127833 0.5500 +11037 129285 0.6100 +11037 143425 0.4990 +11037 150082 0.4310 +11037 285051 0.4470 +11037 286749 0.4230 +11037 647166 0.5930 +11040 23759 0.4710 +11040 50943 0.5740 +11040 51086 0.4970 +11040 51340 0.6350 +11040 54934 0.6160 +11040 91603 0.6460 +11040 415116 0.4630 +11041 22845 0.6420 +11041 29925 0.5790 +11041 29954 0.7550 +11041 54344 0.6000 +11041 55624 0.7290 +11041 56983 0.4300 +11041 79147 0.8020 +11041 84197 0.8650 +11041 84892 0.8520 +11041 120071 0.9570 +11041 133584 0.5430 +11041 146664 0.4140 +11041 148789 0.8410 +11041 375790 0.6150 +11041 729920 0.7460 +11043 50852 0.6610 +11043 51035 0.4080 +11043 51619 0.6810 +11043 51760 0.6590 +11043 55040 0.5360 +11043 55217 0.4930 +11043 79710 0.4870 +11043 84708 0.5670 +11043 85363 0.5820 +11043 89870 0.4040 +11043 143241 0.4370 +11043 221823 0.7780 +11043 343035 0.4420 +11044 11201 0.6860 +11044 11340 0.5500 +11044 22828 0.6020 +11044 22894 0.6510 +11044 22906 0.5020 +11044 23016 0.4930 +11044 23064 0.4200 +11044 23164 0.5070 +11044 23174 0.7700 +11044 23517 0.9990 +11044 27044 0.5010 +11044 27343 0.9590 +11044 27434 0.9480 +11044 28959 0.4020 +11044 51010 0.5520 +11044 51013 0.5140 +11044 51455 0.7540 +11044 54464 0.4620 +11044 54512 0.5340 +11044 54845 0.4990 +11044 54877 0.4810 +11044 54888 0.5980 +11044 55109 0.5130 +11044 55149 0.5700 +11044 55596 0.8200 +11044 55603 0.4410 +11044 55750 0.5070 +11044 56829 0.5090 +11044 56852 0.7180 +11044 56903 0.8280 +11044 56915 0.5170 +11044 57085 0.4990 +11044 57169 0.4810 +11044 57379 0.4100 +11044 57466 0.5570 +11044 57505 0.7180 +11044 57670 0.5000 +11044 64282 0.7290 +11044 64795 0.4720 +11044 64852 0.5520 +11044 64895 0.8260 +11044 80349 0.4170 +11044 80853 0.5080 +11044 83990 0.6280 +11044 84126 0.5320 +11044 84186 0.9990 +11044 84240 0.4250 +11044 85364 0.4020 +11044 113510 0.4190 +11044 114799 0.4950 +11044 115752 0.5410 +11044 118460 0.5410 +11044 129563 0.4870 +11044 157570 0.4770 +11044 167153 0.4250 +11044 196441 0.4800 +11044 201973 0.6400 +11044 353267 0.4990 +11044 353497 0.4290 +11044 389874 0.4020 +11044 644994 0.4670 +11044 649238 0.4020 +11044 105373377 0.4020 +11046 11285 0.4410 +11046 22859 0.6890 +11046 23443 0.9590 +11046 25830 0.6850 +11046 51000 0.8190 +11046 51006 0.5980 +11046 51117 0.5710 +11046 55032 0.5870 +11046 55343 0.5570 +11046 66005 0.4730 +11046 79939 0.5130 +11046 80146 0.4040 +11046 80255 0.4200 +11046 84912 0.9200 +11046 113829 0.5320 +11046 160518 0.5200 +11046 222553 0.5210 +11046 347734 0.8330 +11047 11104 0.4410 +11047 11224 0.4300 +11047 23020 0.4830 +11047 23198 0.8830 +11047 23392 0.9070 +11047 23521 0.4360 +11047 23729 0.4410 +11047 23770 0.4290 +11047 25855 0.4870 +11047 25873 0.4330 +11047 26266 0.5050 +11047 26499 0.6640 +11047 26517 0.4110 +11047 29028 0.4410 +11047 29978 0.9820 +11047 29979 0.9240 +11047 50613 0.5910 +11047 51035 0.4440 +11047 51255 0.4060 +11047 51371 0.6630 +11047 51377 0.9990 +11047 51667 0.4830 +11047 54454 0.4410 +11047 54617 0.5600 +11047 55277 0.4360 +11047 55658 0.4890 +11047 55666 0.4710 +11047 55968 0.4440 +11047 55969 0.4680 +11047 56061 0.7100 +11047 56893 0.6370 +11047 57559 0.6620 +11047 57695 0.5230 +11047 59286 0.4070 +11047 79036 0.8460 +11047 79171 0.4940 +11047 79184 0.7670 +11047 80212 0.8350 +11047 80227 0.9530 +11047 83473 0.7100 +11047 84056 0.4360 +11047 84262 0.4850 +11047 84301 0.5010 +11047 84954 0.7510 +11047 84993 0.4620 +11047 90557 0.6080 +11047 91409 0.8350 +11047 92552 0.4290 +11047 93550 0.4100 +11047 114803 0.7470 +11047 115098 0.4880 +11047 120892 0.5480 +11047 122706 0.8690 +11047 126119 0.4210 +11047 134510 0.8750 +11047 143471 0.8690 +11047 143630 0.5550 +11047 164153 0.5000 +11047 203562 0.4730 +11047 221302 0.6320 +11047 256356 0.4360 +11047 283899 0.4260 +11047 286187 0.5270 +11047 389362 0.4410 +11047 414301 0.8150 +11047 100652824 0.7770 +11051 11052 0.9990 +11051 11060 0.5480 +11051 11162 0.4100 +11051 11163 0.4190 +11051 11164 0.5730 +11051 11165 0.4220 +11051 11222 0.4230 +11051 11338 0.8980 +11051 22794 0.5370 +11051 22803 0.4510 +11051 22828 0.6030 +11051 22916 0.8310 +11051 23016 0.4680 +11051 23091 0.4810 +11051 23144 0.7630 +11051 23210 0.6350 +11051 23211 0.6970 +11051 23244 0.4180 +11051 23283 0.8630 +11051 23404 0.5310 +11051 23435 0.6870 +11051 23450 0.4210 +11051 23534 0.5890 +11051 25904 0.4510 +11051 25962 0.9710 +11051 26097 0.7020 +11051 26155 0.4580 +11051 26523 0.4820 +11051 26986 0.4140 +11051 27161 0.5510 +11051 27258 0.4100 +11051 27316 0.6150 +11051 27339 0.4370 +11051 29101 0.6800 +11051 29894 0.9870 +11051 51213 0.4990 +11051 51362 0.6020 +11051 51585 0.9470 +11051 51593 0.5770 +11051 51639 0.6710 +11051 51692 0.9840 +11051 53981 0.9850 +11051 54512 0.4030 +11051 55006 0.4740 +11051 55110 0.8400 +11051 55214 0.4810 +11051 55269 0.6720 +11051 55339 0.8850 +11051 55660 0.4150 +11051 55746 0.4870 +11051 55759 0.5330 +11051 56259 0.5380 +11051 56339 0.5680 +11051 56903 0.6130 +11051 57187 0.6220 +11051 57721 0.5470 +11051 58155 0.4420 +11051 64175 0.4970 +11051 64783 0.5270 +11051 64848 0.9040 +11051 64895 0.6310 +11051 65109 0.5370 +11051 79066 0.4170 +11051 79228 0.6180 +11051 79727 0.4350 +11051 79869 0.9990 +11051 79872 0.4350 +11051 79873 0.4700 +11051 80145 0.5520 +11051 81608 0.9830 +11051 83594 0.4980 +11051 84248 0.5440 +11051 84271 0.6700 +11051 84304 0.5720 +11051 84321 0.5450 +11051 84324 0.6230 +11051 84524 0.6480 +11051 84844 0.4870 +11051 84950 0.4030 +11051 91408 0.4020 +11051 91746 0.9450 +11051 115708 0.4340 +11051 136157 0.5620 +11051 143506 0.5620 +11051 192670 0.4620 +11051 196120 0.5620 +11051 199746 0.5190 +11051 200035 0.5410 +11051 219670 0.7120 +11051 256281 0.4950 +11051 286257 0.4350 +11051 376940 0.7440 +11051 390031 0.5620 +11051 390033 0.5620 +11051 390916 0.4370 +11051 441584 0.5620 +11051 642843 0.8340 +11052 11059 0.7220 +11052 11060 0.6740 +11052 11064 0.5120 +11052 11100 0.4140 +11052 11116 0.4850 +11052 11160 0.4090 +11052 11168 0.6700 +11052 11198 0.4170 +11052 11325 0.5380 +11052 11338 0.9950 +11052 22794 0.5740 +11052 22803 0.4920 +11052 22827 0.5830 +11052 22828 0.6710 +11052 22916 0.7590 +11052 22938 0.4050 +11052 23020 0.4080 +11052 23091 0.4310 +11052 23144 0.4990 +11052 23210 0.6210 +11052 23244 0.4770 +11052 23248 0.4220 +11052 23279 0.5310 +11052 23283 0.8630 +11052 23299 0.4200 +11052 23435 0.8200 +11052 23451 0.4900 +11052 23524 0.4450 +11052 23534 0.8700 +11052 23636 0.4280 +11052 25777 0.5030 +11052 25939 0.4520 +11052 25962 0.9690 +11052 26097 0.7970 +11052 26127 0.5110 +11052 26281 0.4010 +11052 26523 0.4390 +11052 26986 0.6580 +11052 27316 0.6870 +11052 27332 0.4390 +11052 27339 0.6250 +11052 27429 0.4330 +11052 29101 0.7760 +11052 29117 0.4070 +11052 29894 0.9870 +11052 51213 0.5080 +11052 51362 0.6060 +11052 51441 0.5510 +11052 51585 0.9620 +11052 51593 0.7320 +11052 51631 0.5190 +11052 51663 0.4030 +11052 51692 0.9880 +11052 51741 0.4200 +11052 51747 0.4170 +11052 53981 0.9820 +11052 54915 0.4120 +11052 55110 0.6710 +11052 55269 0.7480 +11052 55339 0.8930 +11052 55421 0.6570 +11052 55660 0.6860 +11052 55677 0.5930 +11052 55749 0.4400 +11052 56259 0.7000 +11052 56339 0.5090 +11052 56903 0.8560 +11052 56949 0.4100 +11052 57122 0.5120 +11052 57187 0.6920 +11052 57472 0.4180 +11052 57703 0.4800 +11052 57721 0.5720 +11052 58517 0.4900 +11052 64783 0.5770 +11052 64848 0.5340 +11052 64895 0.8790 +11052 65109 0.5220 +11052 79066 0.4710 +11052 79228 0.6660 +11052 79577 0.4270 +11052 79869 0.9960 +11052 79902 0.4120 +11052 80145 0.7710 +11052 80335 0.4590 +11052 80746 0.8070 +11052 81608 0.8730 +11052 83737 0.6360 +11052 84248 0.5520 +11052 84271 0.5810 +11052 84321 0.6170 +11052 84324 0.6900 +11052 84844 0.5560 +11052 84991 0.4640 +11052 85363 0.6740 +11052 91746 0.9420 +11052 115004 0.4180 +11052 134353 0.5570 +11052 136157 0.5860 +11052 143506 0.5860 +11052 153443 0.4260 +11052 192670 0.4420 +11052 196120 0.5860 +11052 199746 0.5600 +11052 220988 0.4280 +11052 253943 0.4760 +11052 284695 0.4380 +11052 390031 0.5860 +11052 390033 0.5860 +11052 399687 0.4810 +11052 441584 0.5860 +11052 642843 0.5820 +11052 729857 0.7660 +11052 100526737 0.5140 +11054 54776 0.4910 +11054 85441 0.5000 +11055 11057 0.6890 +11055 22806 0.6420 +11055 22917 0.4750 +11055 26256 0.4050 +11055 51542 0.4740 +11055 53340 0.8630 +11055 54760 0.4070 +11055 54763 0.5510 +11055 57120 0.5320 +11055 57704 0.4470 +11055 57829 0.4340 +11055 63979 0.4540 +11055 64100 0.4210 +11055 81833 0.8350 +11055 83639 0.4140 +11055 83893 0.7920 +11055 84519 0.6490 +11055 84660 0.4480 +11055 89765 0.4570 +11055 89869 0.4050 +11055 113746 0.4570 +11055 122664 0.5310 +11055 124626 0.6320 +11055 124912 0.5600 +11055 136263 0.4630 +11055 140732 0.4100 +11055 147746 0.4150 +11055 150483 0.4240 +11055 151254 0.4880 +11055 246777 0.6810 +11055 283417 0.8350 +11055 284359 0.4930 +11055 317719 0.4050 +11055 375567 0.4950 +11055 402573 0.6470 +11055 100130988 0.5330 +11055 100505591 0.4160 +11056 11072 0.4980 +11056 11103 0.9920 +11056 11137 0.6600 +11056 11269 0.4330 +11056 11276 0.7610 +11056 11340 0.4710 +11056 22803 0.5520 +11056 22984 0.9950 +11056 23016 0.4250 +11056 23029 0.9070 +11056 23053 0.4740 +11056 23054 0.4490 +11056 23076 0.7760 +11056 23160 0.8820 +11056 23173 0.4080 +11056 23212 0.7290 +11056 23223 0.6800 +11056 23246 0.9180 +11056 23363 0.4040 +11056 23378 0.8690 +11056 23404 0.4980 +11056 23481 0.9200 +11056 23517 0.8910 +11056 23560 0.7300 +11056 24140 0.6250 +11056 25879 0.9460 +11056 25926 0.8290 +11056 25973 0.4240 +11056 25983 0.8830 +11056 26155 0.7840 +11056 26156 0.8450 +11056 26168 0.6020 +11056 26354 0.6160 +11056 26574 0.9720 +11056 26995 0.4540 +11056 27042 0.9170 +11056 27043 0.5880 +11056 27292 0.6380 +11056 27340 0.9540 +11056 27341 0.9170 +11056 28987 0.6500 +11056 29068 0.4560 +11056 29102 0.4080 +11056 29777 0.8500 +11056 29889 0.8580 +11056 29960 0.5990 +11056 29997 0.6050 +11056 30836 0.4390 +11056 51010 0.4520 +11056 51013 0.5650 +11056 51018 0.4660 +11056 51065 0.4150 +11056 51068 0.7600 +11056 51077 0.9300 +11056 51096 0.7980 +11056 51118 0.9360 +11056 51154 0.4370 +11056 51187 0.6410 +11056 51202 0.9540 +11056 51388 0.6830 +11056 51575 0.8410 +11056 51602 0.8620 +11056 51605 0.7570 +11056 51616 0.4220 +11056 54433 0.4040 +11056 54512 0.5140 +11056 54517 0.4180 +11056 54552 0.5940 +11056 54555 0.9480 +11056 54606 0.9050 +11056 54663 0.8670 +11056 54865 0.4770 +11056 54881 0.6960 +11056 54888 0.5510 +11056 54984 0.5470 +11056 55003 0.4880 +11056 55006 0.4570 +11056 55127 0.8860 +11056 55131 0.8240 +11056 55153 0.6830 +11056 55164 0.4100 +11056 55226 0.9100 +11056 55272 0.6010 +11056 55299 0.8240 +11056 55341 0.7660 +11056 55505 0.4920 +11056 55591 0.4180 +11056 55622 0.4160 +11056 55646 0.4230 +11056 55651 0.6120 +11056 55720 0.7810 +11056 55759 0.9330 +11056 55760 0.5900 +11056 55781 0.6340 +11056 55794 0.7080 +11056 55813 0.8500 +11056 56342 0.6200 +11056 56647 0.5290 +11056 56902 0.5970 +11056 56915 0.5110 +11056 56919 0.4200 +11056 57050 0.9970 +11056 57062 0.9190 +11056 57109 0.7270 +11056 57418 0.8440 +11056 57647 0.9230 +11056 57696 0.7950 +11056 60487 0.4130 +11056 60625 0.4370 +11056 63931 0.4710 +11056 64216 0.4100 +11056 64318 0.7500 +11056 64425 0.4590 +11056 64434 0.4680 +11056 64794 0.8890 +11056 65083 0.9920 +11056 65095 0.7420 +11056 79009 0.5050 +11056 79039 0.8730 +11056 79050 0.9390 +11056 79154 0.5060 +11056 79159 0.6190 +11056 79571 0.4410 +11056 79665 0.4470 +11056 79707 0.5830 +11056 79893 0.5640 +11056 79922 0.6820 +11056 79954 0.8880 +11056 79968 0.5110 +11056 80135 0.6710 +11056 80179 0.5090 +11056 81627 0.4280 +11056 81887 0.5840 +11056 83479 0.4460 +11056 83732 0.6580 +11056 83743 0.5990 +11056 84128 0.8060 +11056 84135 0.8240 +11056 84154 0.8620 +11056 84172 0.4170 +11056 84294 0.9260 +11056 84310 0.4190 +11056 84319 0.5860 +11056 84365 0.7590 +11056 84549 0.8370 +11056 84916 0.8900 +11056 84946 0.7370 +11056 88745 0.8670 +11056 90353 0.5660 +11056 92856 0.8050 +11056 115708 0.5980 +11056 116966 0.5310 +11056 117246 0.9410 +11056 118460 0.4730 +11056 142940 0.5150 +11056 146212 0.6100 +11056 153443 0.4280 +11056 161424 0.7470 +11056 165545 0.5320 +11056 221078 0.6170 +11056 221830 0.5650 +11056 284098 0.6600 +11056 284099 0.5940 +11056 285855 0.5330 +11056 317781 0.4970 +11056 387129 0.5300 +11056 388512 0.4490 +11056 692312 0.5970 +11056 100505478 0.4070 +11057 11343 0.4690 +11057 25864 0.4920 +11057 26090 0.4940 +11057 53340 0.8290 +11057 54414 0.5280 +11057 55347 0.5220 +11057 57406 0.5060 +11057 63874 0.5680 +11057 64921 0.4620 +11057 79575 0.5110 +11057 80167 0.4770 +11057 83451 0.5060 +11057 84836 0.4620 +11057 84945 0.4640 +11057 117144 0.5880 +11057 117155 0.4160 +11057 140701 0.5480 +11057 145447 0.4610 +11057 221223 0.4080 +11059 11060 0.7230 +11059 11099 0.4720 +11059 23111 0.9530 +11059 23198 0.4200 +11059 23201 0.4500 +11059 23411 0.4210 +11059 23558 0.8240 +11059 23678 0.5490 +11059 25898 0.5160 +11059 26524 0.4600 +11059 26994 0.8670 +11059 27106 0.6790 +11059 29761 0.5430 +11059 51421 0.4830 +11059 51669 0.5400 +11059 54778 0.4710 +11059 55026 0.5880 +11059 55092 0.4200 +11059 55167 0.4260 +11059 55294 0.4490 +11059 55527 0.4190 +11059 56929 0.4350 +11059 57561 0.8840 +11059 57646 0.5000 +11059 59269 0.9820 +11059 63891 0.4730 +11059 64750 0.4450 +11059 80762 0.8150 +11059 83737 0.9370 +11059 84708 0.4010 +11059 91947 0.6230 +11059 92714 0.8180 +11059 122706 0.4040 +11059 133522 0.4990 +11059 136319 0.4080 +11059 136991 0.4410 +11059 143471 0.4180 +11059 171222 0.9240 +11059 348013 0.4570 +11059 645432 0.4590 +11060 11083 0.4150 +11060 11091 0.5740 +11060 11100 0.7480 +11060 11135 0.4030 +11060 11321 0.6320 +11060 22994 0.6300 +11060 23048 0.4130 +11060 23070 0.5300 +11060 23111 0.7660 +11060 23113 0.4290 +11060 23133 0.6580 +11060 23163 0.5730 +11060 23172 0.6230 +11060 23201 0.7950 +11060 23358 0.6060 +11060 23383 0.4360 +11060 23433 0.5950 +11060 23513 0.4090 +11060 23558 0.9170 +11060 26135 0.5320 +11060 26524 0.4040 +11060 26986 0.5470 +11060 26994 0.6760 +11060 27022 0.4240 +11060 27106 0.4760 +11060 27338 0.6480 +11060 28514 0.5620 +11060 28964 0.4480 +11060 29086 0.4360 +11060 29102 0.4040 +11060 29761 0.4540 +11060 51184 0.6080 +11060 51421 0.4200 +11060 51534 0.4150 +11060 54455 0.4690 +11060 54487 0.4140 +11060 54567 0.5620 +11060 54874 0.4270 +11060 55004 0.4050 +11060 55236 0.4740 +11060 55249 0.4370 +11060 55654 0.5610 +11060 55789 0.4150 +11060 55833 0.4370 +11060 56957 0.5290 +11060 56995 0.4740 +11060 57381 0.5760 +11060 57492 0.4520 +11060 57561 0.9460 +11060 57646 0.4250 +11060 58480 0.5680 +11060 58513 0.6730 +11060 63978 0.5620 +11060 79184 0.6700 +11060 79657 0.5480 +11060 79869 0.5310 +11060 79871 0.6220 +11060 79903 0.4720 +11060 80762 0.9780 +11060 80854 0.5480 +11060 81488 0.6570 +11060 81624 0.4260 +11060 81839 0.4030 +11060 81857 0.6380 +11060 91010 0.4570 +11060 91526 0.4120 +11060 91947 0.6500 +11060 92714 0.9720 +11060 118424 0.4260 +11060 128239 0.4080 +11060 137902 0.4160 +11060 143098 0.4210 +11060 144402 0.4110 +11060 147179 0.4300 +11060 149041 0.6550 +11060 154796 0.7240 +11060 154810 0.6890 +11060 200894 0.4260 +11060 284194 0.4590 +11060 645432 0.6160 +11061 11341 0.4130 +11061 27183 0.5550 +11061 28996 0.4240 +11061 51510 0.5900 +11061 80781 0.6090 +11061 101929796 0.4610 +11062 11180 0.4490 +11062 23263 0.5520 +11062 23593 0.5060 +11062 26354 0.4740 +11062 26959 0.4190 +11062 29081 0.5210 +11062 51605 0.4800 +11062 54517 0.4650 +11062 54802 0.4260 +11062 54888 0.4260 +11062 54920 0.4670 +11062 55006 0.5010 +11062 55621 0.5260 +11062 56931 0.4310 +11062 56986 0.5430 +11062 57570 0.5450 +11062 60487 0.6330 +11062 80324 0.5090 +11062 81890 0.4360 +11062 83480 0.5350 +11062 93587 0.6320 +11062 115708 0.6040 +11062 115939 0.5140 +11062 285605 0.5180 +11063 11165 0.4640 +11063 23626 0.4430 +11063 25805 0.4120 +11063 50511 0.4500 +11063 54345 0.4990 +11063 54974 0.4540 +11063 63946 0.5040 +11063 80705 0.4670 +11063 84692 0.4880 +11063 140732 0.4530 +11063 161142 0.5290 +11063 163589 0.4080 +11063 387723 0.4430 +11064 11116 0.8660 +11064 11160 0.4530 +11064 11190 0.8370 +11064 22897 0.6470 +11064 22919 0.4670 +11064 22981 0.6320 +11064 22994 0.6200 +11064 22995 0.4570 +11064 23354 0.5750 +11064 25777 0.4070 +11064 26005 0.4440 +11064 26127 0.6480 +11064 26281 0.4360 +11064 29911 0.5510 +11064 30011 0.4270 +11064 51134 0.5510 +11064 51175 0.8370 +11064 51199 0.9920 +11064 51231 0.4070 +11064 54536 0.5760 +11064 54801 0.6440 +11064 54820 0.4220 +11064 54875 0.4560 +11064 54930 0.5340 +11064 55125 0.4860 +11064 55142 0.5260 +11064 55165 0.4210 +11064 55559 0.5260 +11064 55755 0.5750 +11064 55835 0.4170 +11064 57545 0.5870 +11064 79441 0.5390 +11064 79866 0.6270 +11064 80323 0.9020 +11064 84902 0.6450 +11064 85302 0.4810 +11064 90060 0.9240 +11064 93323 0.5370 +11064 115106 0.5890 +11064 116840 0.4800 +11064 117177 0.7870 +11064 132320 0.5630 +11064 134359 0.4580 +11064 145508 0.9600 +11064 153241 0.5040 +11064 399687 0.5340 +11064 728642 0.5500 +11064 729440 0.7200 +11065 11130 0.8780 +11065 11169 0.4060 +11065 11339 0.6580 +11065 22916 0.4360 +11065 22974 0.9650 +11065 23170 0.4910 +11065 23397 0.7240 +11065 23492 0.7280 +11065 23650 0.5500 +11065 24137 0.9050 +11065 25847 0.9870 +11065 25886 0.4490 +11065 25906 0.9920 +11065 26043 0.5420 +11065 26271 0.7210 +11065 26586 0.6740 +11065 27152 0.4840 +11065 27316 0.5480 +11065 27338 0.9850 +11065 29028 0.5460 +11065 29089 0.7940 +11065 29127 0.7320 +11065 29128 0.6810 +11065 29882 0.9980 +11065 29945 0.9930 +11065 29979 0.6010 +11065 51053 0.6890 +11065 51203 0.9640 +11065 51239 0.5620 +11065 51343 0.9910 +11065 51433 0.9900 +11065 51434 0.9830 +11065 51512 0.7100 +11065 51514 0.5670 +11065 51529 0.9990 +11065 51659 0.5820 +11065 54443 0.7730 +11065 54478 0.6500 +11065 54821 0.5160 +11065 54880 0.9040 +11065 54892 0.4710 +11065 54926 0.5200 +11065 55010 0.4140 +11065 55055 0.5050 +11065 55072 0.4530 +11065 55143 0.9660 +11065 55165 0.9380 +11065 55215 0.5760 +11065 55236 0.7490 +11065 55284 0.4540 +11065 55355 0.9240 +11065 55388 0.6220 +11065 55521 0.4660 +11065 55585 0.4070 +11065 55635 0.6860 +11065 55723 0.7290 +11065 55739 0.6120 +11065 55789 0.5370 +11065 55839 0.6340 +11065 56254 0.4430 +11065 56852 0.5190 +11065 56893 0.5750 +11065 56992 0.8440 +11065 57082 0.4800 +11065 57332 0.9040 +11065 57405 0.7770 +11065 64151 0.8600 +11065 64682 0.9860 +11065 64750 0.5440 +11065 79019 0.6950 +11065 79075 0.4590 +11065 79184 0.9160 +11065 79682 0.5430 +11065 79733 0.6640 +11065 79801 0.6220 +11065 79813 0.5300 +11065 79876 0.6320 +11065 79935 0.4400 +11065 80012 0.9050 +11065 81610 0.6360 +11065 81620 0.7570 +11065 81624 0.4130 +11065 81669 0.7370 +11065 81930 0.5140 +11065 83461 0.9620 +11065 83540 0.8870 +11065 83737 0.4590 +11065 83879 0.5940 +11065 83903 0.4230 +11065 84057 0.5640 +11065 84101 0.4410 +11065 84108 0.9040 +11065 84231 0.4110 +11065 84333 0.5540 +11065 84722 0.4310 +11065 84733 0.9210 +11065 84759 0.5540 +11065 84936 0.4300 +11065 85417 0.4370 +11065 85451 0.4850 +11065 90025 0.9540 +11065 90381 0.4610 +11065 90417 0.4500 +11065 90933 0.4690 +11065 92912 0.5790 +11065 113115 0.4210 +11065 113130 0.8350 +11065 116028 0.4020 +11065 116092 0.4620 +11065 119504 0.9870 +11065 128239 0.5610 +11065 140459 0.5610 +11065 144455 0.5290 +11065 146909 0.8430 +11065 147841 0.6400 +11065 150468 0.5750 +11065 151648 0.5750 +11065 157313 0.6810 +11065 166979 0.9080 +11065 220134 0.6130 +11065 221150 0.7190 +11065 246184 0.9870 +11065 259266 0.9430 +11065 283237 0.5750 +11065 286151 0.4650 +11065 387103 0.6880 +11065 387522 0.5770 +11066 11280 0.4070 +11066 11338 0.6740 +11066 22916 0.8480 +11066 23020 0.5030 +11066 23450 0.8670 +11066 23451 0.9090 +11066 23534 0.4220 +11066 23658 0.4470 +11066 25766 0.8470 +11066 25804 0.4260 +11066 26995 0.5370 +11066 27288 0.6110 +11066 27339 0.4860 +11066 29894 0.4440 +11066 51095 0.4880 +11066 51322 0.5960 +11066 51550 0.4830 +11066 51631 0.6860 +11066 51639 0.7650 +11066 51690 0.5880 +11066 51747 0.6310 +11066 54952 0.6810 +11066 55015 0.8400 +11066 55285 0.6660 +11066 55599 0.9840 +11066 55692 0.6900 +11066 55954 0.9820 +11066 57661 0.4690 +11066 57696 0.4060 +11066 58509 0.4910 +11066 58517 0.9000 +11066 60528 0.4540 +11066 64897 0.5330 +11066 79637 0.4170 +11066 79696 0.5940 +11066 80335 0.4660 +11066 81608 0.5150 +11066 83443 0.8550 +11066 83938 0.6460 +11066 84316 0.4550 +11066 84844 0.9500 +11066 84967 0.7870 +11066 85437 0.9580 +11066 115708 0.4740 +11066 126259 0.4460 +11066 139804 0.6110 +11066 147650 0.4460 +11066 154007 0.9920 +11066 220074 0.6460 +11066 347744 0.6250 +11066 392517 0.8120 +11066 100529063 0.4050 +11066 100996928 0.6840 +11066 101669762 0.5510 +11067 49860 0.9520 +11067 126638 0.9360 +11067 203238 0.4590 +11068 11186 0.4070 +11068 23173 0.4150 +11068 51364 0.4950 +11068 220002 0.5810 +11068 341350 0.5770 +11068 391059 0.6420 +11069 11214 0.4230 +11069 22800 0.9270 +11069 22871 0.5230 +11069 22999 0.8480 +11069 23025 0.4160 +11069 23108 0.5940 +11069 23173 0.4290 +11069 26499 0.4030 +11069 27115 0.4750 +11069 27445 0.9890 +11069 51655 0.6960 +11069 51806 0.5460 +11069 54769 0.4390 +11069 55811 0.5090 +11069 57393 0.4560 +11069 57555 0.4900 +11069 57826 0.5080 +11069 83593 0.9210 +11069 89927 0.4770 +11069 91860 0.5410 +11069 113026 0.4630 +11069 148252 0.4160 +11069 163688 0.5410 +11069 196883 0.9560 +11069 221833 0.4360 +11070 11258 0.5090 +11070 11285 0.4780 +11070 25789 0.4550 +11070 25807 0.4510 +11070 29100 0.4820 +11070 29927 0.4030 +11070 51143 0.5040 +11070 51164 0.5110 +11070 51272 0.6190 +11070 55486 0.4030 +11070 55860 0.4990 +11070 57410 0.4530 +11070 57414 0.4360 +11070 63905 0.4050 +11070 63908 0.4990 +11070 64320 0.4610 +11070 79594 0.8490 +11070 84336 0.5250 +11070 84516 0.5040 +11070 84975 0.5060 +11070 93661 0.5320 +11070 140735 0.4990 +11070 337867 0.5140 +11072 11274 0.4030 +11072 11276 0.5680 +11072 79893 0.4550 +11072 79922 0.5220 +11072 81285 0.5960 +11072 90268 0.4870 +11072 115727 0.4870 +11072 129881 0.4560 +11072 147409 0.5390 +11072 221301 0.4200 +11072 284098 0.4800 +11072 284099 0.5980 +11073 11169 0.8160 +11073 11200 0.8270 +11073 22976 0.7850 +11073 23063 0.5060 +11073 23064 0.4270 +11073 23076 0.4380 +11073 23133 0.9510 +11073 23137 0.4810 +11073 23379 0.4320 +11073 23411 0.4550 +11073 23595 0.5220 +11073 23626 0.4520 +11073 23637 0.4030 +11073 25788 0.4610 +11073 26503 0.5260 +11073 27085 0.8660 +11073 27301 0.6050 +11073 29086 0.5180 +11073 50485 0.4760 +11073 51366 0.7220 +11073 51455 0.4510 +11073 51659 0.5460 +11073 51720 0.5130 +11073 54069 0.4130 +11073 54107 0.5800 +11073 54465 0.8340 +11073 54821 0.4420 +11073 54962 0.7650 +11073 55125 0.4240 +11073 55159 0.4830 +11073 55215 0.7520 +11073 55388 0.9790 +11073 55536 0.7990 +11073 55746 0.4560 +11073 56655 0.4070 +11073 56852 0.5280 +11073 56916 0.7770 +11073 57418 0.4280 +11073 57650 0.4790 +11073 57697 0.7080 +11073 63922 0.4330 +11073 63967 0.9950 +11073 64785 0.8400 +11073 79648 0.7760 +11073 79677 0.4200 +11073 79680 0.4180 +11073 79728 0.5040 +11073 79892 0.4750 +11073 79915 0.6720 +11073 79991 0.6120 +11073 80010 0.8590 +11073 80174 0.4910 +11073 80198 0.7350 +11073 80852 0.5190 +11073 81620 0.7920 +11073 83695 0.9820 +11073 83990 0.9990 +11073 84126 0.9990 +11073 84193 0.4020 +11073 84296 0.8640 +11073 84464 0.9750 +11073 84515 0.4440 +11073 90381 0.9990 +11073 91442 0.4880 +11073 116028 0.7780 +11073 135458 0.7190 +11073 144715 0.9510 +11073 146956 0.6060 +11073 165918 0.6680 +11073 253714 0.4130 +11073 254394 0.4220 +11073 286204 0.5040 +11073 348654 0.5550 +11073 440686 0.4010 +11073 548593 0.7640 +11073 647309 0.7490 +11073 653604 0.4020 +11074 23586 0.4120 +11074 23650 0.5390 +11074 25827 0.5780 +11074 50613 0.4180 +11074 50852 0.8170 +11074 51438 0.5030 +11074 51592 0.4340 +11074 54205 0.4730 +11074 54765 0.4620 +11074 54941 0.4870 +11074 55031 0.4700 +11074 55217 0.7550 +11074 56254 0.6800 +11074 56919 0.4680 +11074 57506 0.9070 +11074 64844 0.6510 +11074 79845 0.4510 +11074 80352 0.5230 +11074 80741 0.4010 +11074 81844 0.5230 +11074 85364 0.4400 +11074 114548 0.7630 +11074 138065 0.5150 +11074 139599 0.4490 +11074 152006 0.4340 +11074 284654 0.4150 +11075 22911 0.4930 +11075 23057 0.6110 +11075 23095 0.5270 +11075 23098 0.4470 +11075 23186 0.4570 +11075 23412 0.4820 +11075 23435 0.5220 +11075 23557 0.4320 +11075 27289 0.6030 +11075 28952 0.4400 +11075 28991 0.4480 +11075 29099 0.6030 +11075 29114 0.4790 +11075 50861 0.4730 +11075 51122 0.5750 +11075 51299 0.5140 +11075 51397 0.5960 +11075 51412 0.6240 +11075 54520 0.5960 +11075 54939 0.6090 +11075 54951 0.5320 +11075 55274 0.4240 +11075 56159 0.4820 +11075 57020 0.6060 +11075 57084 0.4940 +11075 58190 0.4260 +11075 63974 0.5240 +11075 78987 0.5000 +11075 140679 0.5810 +11075 149951 0.6130 +11075 150684 0.4850 +11075 170622 0.6050 +11075 347730 0.4710 +11075 404636 0.6410 +11076 29765 0.4400 +11076 51164 0.8060 +11076 54103 0.4890 +11076 55722 0.4800 +11076 55860 0.8580 +11076 57180 0.8440 +11076 57553 0.4510 +11076 60484 0.4200 +11076 79844 0.4480 +11076 84516 0.4030 +11076 92369 0.4120 +11076 94234 0.6490 +11076 120892 0.4280 +11076 285362 0.4800 +11076 653857 0.8470 +11077 11342 0.4790 +11077 23076 0.4810 +11077 23626 0.4380 +11077 29893 0.4620 +11077 50511 0.4450 +11077 55664 0.4020 +11077 56154 0.4930 +11077 79173 0.7930 +11077 79728 0.5790 +11077 81616 0.4030 +11077 84072 0.4310 +11077 84515 0.4240 +11077 84690 0.7910 +11077 89766 0.4880 +11077 92703 0.5600 +11077 93323 0.4400 +11077 93426 0.4490 +11077 115353 0.5280 +11077 126074 0.5330 +11077 133482 0.5350 +11077 150365 0.4280 +11077 151195 0.4220 +11077 164045 0.4930 +11077 164684 0.4110 +11077 254394 0.4050 +11077 254528 0.6910 +11077 256006 0.4510 +11077 256126 0.5990 +11077 283554 0.4890 +11077 285498 0.4100 +11077 317761 0.4750 +11077 644186 0.4050 +11077 110599564 0.4660 +11078 11252 0.6770 +11078 11344 0.6660 +11078 23136 0.5210 +11078 23562 0.4180 +11078 25794 0.7110 +11078 25861 0.7700 +11078 26064 0.6020 +11078 26499 0.5890 +11078 29763 0.5940 +11078 29993 0.6160 +11078 51168 0.8290 +11078 53405 0.6310 +11078 53904 0.7590 +11078 54499 0.4190 +11078 55075 0.4440 +11078 56649 0.5060 +11078 64072 0.6090 +11078 64699 0.5830 +11078 64787 0.6370 +11078 65217 0.5170 +11078 79955 0.5310 +11078 81565 0.5640 +11078 83715 0.8090 +11078 84059 0.5090 +11078 117531 0.6100 +11078 117532 0.4610 +11078 125336 0.6080 +11078 126326 0.5070 +11078 129446 0.8680 +11078 140469 0.6370 +11078 146183 0.5820 +11078 152137 0.4500 +11078 153562 0.4260 +11078 161497 0.5820 +11078 163131 0.4580 +11078 222662 0.5630 +11078 253827 0.4080 +11078 259236 0.5950 +11078 286262 0.8280 +11078 286676 0.5340 +11078 339768 0.6690 +11078 375611 0.4460 +11078 388551 0.4400 +11078 389207 0.7500 +11078 494513 0.9040 +11078 643226 0.6940 +11079 11231 0.6000 +11079 11253 0.6050 +11079 11316 0.6360 +11079 22818 0.4770 +11079 23071 0.6820 +11079 23385 0.5750 +11079 23673 0.5090 +11079 26003 0.4780 +11079 27095 0.4260 +11079 49856 0.4020 +11079 51107 0.4950 +11079 51290 0.5770 +11079 51614 0.6440 +11079 54732 0.5520 +11079 54828 0.4380 +11079 55161 0.4880 +11079 55329 0.6310 +11079 55741 0.4010 +11079 55851 0.8030 +11079 56851 0.4140 +11079 57222 0.4010 +11079 57348 0.6160 +11079 64083 0.6440 +11079 79139 0.4860 +11079 81555 0.4120 +11079 81562 0.4590 +11079 84447 0.5450 +11079 127262 0.4090 +11079 151295 0.4770 +11079 317781 0.4110 +11079 653519 0.4360 +11080 11145 0.4200 +11080 11168 0.4290 +11080 11222 0.4580 +11080 22824 0.8030 +11080 22826 0.4230 +11080 23032 0.4670 +11080 23170 0.6710 +11080 23234 0.6210 +11080 23336 0.5130 +11080 23633 0.4150 +11080 23640 0.4830 +11080 25771 0.4990 +11080 25789 0.5220 +11080 25822 0.8760 +11080 26353 0.4640 +11080 26589 0.4410 +11080 27000 0.8650 +11080 27129 0.4200 +11080 28998 0.4390 +11080 29103 0.4300 +11080 51182 0.8970 +11080 51277 0.4490 +11080 51314 0.4680 +11080 54979 0.4200 +11080 55466 0.7300 +11080 56339 0.4110 +11080 56521 0.8430 +11080 57110 0.4200 +11080 57129 0.4200 +11080 63875 0.4650 +11080 64215 0.4500 +11080 64374 0.7300 +11080 80273 0.8300 +11080 81570 0.6000 +11080 84545 0.4090 +11080 116835 0.5840 +11080 118461 0.4200 +11080 120526 0.4340 +11080 126205 0.5840 +11080 131118 0.8220 +11080 134266 0.5160 +11080 150353 0.4290 +11080 256764 0.4820 +11080 259217 0.5020 +11080 285237 0.6330 +11080 317662 0.5550 +11080 339416 0.4210 +11080 388633 0.4200 +11081 22859 0.5140 +11081 23078 0.4050 +11081 23266 0.5140 +11081 23284 0.5180 +11081 23507 0.5150 +11081 23563 0.5130 +11081 25987 0.5130 +11081 27233 0.5990 +11081 27284 0.5950 +11081 55144 0.4860 +11081 55222 0.4320 +11081 55379 0.4350 +11081 60506 0.4920 +11081 64102 0.5280 +11081 79442 0.5160 +11081 80131 0.5240 +11081 83594 0.6410 +11081 83959 0.4830 +11081 84230 0.4670 +11081 90070 0.4460 +11081 93010 0.7430 +11081 116064 0.4960 +11081 122769 0.6790 +11081 123355 0.4790 +11081 163126 0.4220 +11081 220416 0.4050 +11081 376132 0.5250 +11081 390205 0.5250 +11081 442038 0.6020 +11081 474354 0.5080 +11082 23594 0.4070 +11082 51560 0.4330 +11082 51705 0.5270 +11082 54567 0.5590 +11082 246778 0.4030 +11082 345222 0.4270 +11082 100506658 0.4280 +11083 22828 0.4360 +11083 22872 0.4550 +11083 23013 0.4180 +11083 23020 0.4630 +11083 23067 0.7070 +11083 23070 0.4800 +11083 23133 0.6030 +11083 23211 0.4260 +11083 23224 0.5220 +11083 23345 0.5460 +11083 23353 0.5630 +11083 23381 0.4620 +11083 23524 0.4680 +11083 24148 0.4040 +11083 25777 0.5290 +11083 25913 0.5220 +11083 26277 0.5010 +11083 27127 0.5220 +11083 29072 0.4600 +11083 50511 0.5080 +11083 51412 0.5260 +11083 51742 0.4670 +11083 54145 0.5360 +11083 54386 0.6110 +11083 54556 0.6150 +11083 55294 0.4940 +11083 55506 0.4070 +11083 55727 0.5810 +11083 55766 0.6470 +11083 55770 0.4630 +11083 55959 0.4040 +11083 56158 0.4990 +11083 56254 0.4380 +11083 57148 0.6250 +11083 57541 0.4390 +11083 57634 0.4590 +11083 57680 0.6870 +11083 57727 0.4700 +11083 57805 0.4280 +11083 64324 0.4160 +11083 64783 0.4700 +11083 79813 0.4220 +11083 80335 0.7290 +11083 80853 0.4790 +11083 83860 0.5220 +11083 84545 0.4100 +11083 84661 0.8670 +11083 85236 0.5360 +11083 90780 0.4100 +11083 93426 0.4990 +11083 94239 0.6030 +11083 114803 0.5820 +11083 126961 0.9330 +11083 128312 0.5360 +11083 253143 0.4850 +11083 255626 0.5360 +11083 256126 0.4990 +11083 333932 0.9320 +11083 339287 0.4130 +11083 440093 0.9630 +11083 440686 0.9630 +11083 474382 0.6130 +11083 644186 0.4990 +11083 653604 0.9630 +11085 22917 0.5130 +11085 29122 0.4440 +11085 54586 0.4030 +11085 54901 0.5430 +11085 56899 0.4370 +11085 56999 0.5180 +11085 57118 0.4470 +11085 57829 0.5180 +11085 81623 0.5160 +11085 83998 0.4030 +11085 91977 0.4600 +11085 119391 0.4180 +11085 122258 0.4040 +11085 169026 0.4550 +11085 220107 0.4420 +11085 221895 0.5070 +11085 390084 0.4160 +11085 653820 0.4240 +11085 100132406 0.4110 +11086 51059 0.6640 +11086 84692 0.5510 +11086 151011 0.4130 +11086 285641 0.6300 +11086 401387 0.4410 +11086 653220 0.5570 +11091 11168 0.6760 +11091 11335 0.8450 +11091 22976 0.9990 +11091 22992 0.4380 +11091 23028 0.7360 +11091 23030 0.5120 +11091 23038 0.5100 +11091 23054 0.9980 +11091 23067 0.9990 +11091 23081 0.5510 +11091 23112 0.4160 +11091 23133 0.6950 +11091 23135 0.9540 +11091 23142 0.4990 +11091 23186 0.6130 +11091 23203 0.4130 +11091 23269 0.9790 +11091 23309 0.6310 +11091 23326 0.7550 +11091 23394 0.4110 +11091 23412 0.5130 +11091 23429 0.9610 +11091 23450 0.5910 +11091 23476 0.8600 +11091 23481 0.4260 +11091 23512 0.7830 +11091 25879 0.5200 +11091 25920 0.4180 +11091 25942 0.7300 +11091 26009 0.9740 +11091 26094 0.5090 +11091 26121 0.9220 +11091 26122 0.7240 +11091 26168 0.9560 +11091 26523 0.4880 +11091 27043 0.9210 +11091 27097 0.8210 +11091 27156 0.4400 +11091 27327 0.7540 +11091 28952 0.5170 +11091 28991 0.5090 +11091 29072 0.9900 +11091 29099 0.5080 +11091 29882 0.4840 +11091 29915 0.9590 +11091 30827 0.9990 +11091 50717 0.5120 +11091 50813 0.4280 +11091 51105 0.6900 +11091 51122 0.5130 +11091 51138 0.4190 +11091 51230 0.9930 +11091 51397 0.5130 +11091 51412 0.6080 +11091 51514 0.6800 +11091 51562 0.9890 +11091 51616 0.7340 +11091 53615 0.5560 +11091 54107 0.8650 +11091 54145 0.6080 +11091 54165 0.5180 +11091 54475 0.4340 +11091 54554 0.9340 +11091 54556 0.8700 +11091 54617 0.5050 +11091 54799 0.8080 +11091 54815 0.4050 +11091 54876 0.5420 +11091 54881 0.9220 +11091 54904 0.5500 +11091 54934 0.9990 +11091 54939 0.5530 +11091 54951 0.5330 +11091 55167 0.7830 +11091 55170 0.8490 +11091 55208 0.5090 +11091 55257 0.7590 +11091 55269 0.4290 +11091 55578 0.7670 +11091 55617 0.5000 +11091 55636 0.6700 +11091 55683 0.9870 +11091 55689 0.9910 +11091 55759 0.4030 +11091 55766 0.5800 +11091 55827 0.5250 +11091 55832 0.5280 +11091 55870 0.6320 +11091 55898 0.4850 +11091 55904 0.6280 +11091 55929 0.7930 +11091 56254 0.6900 +11091 56655 0.8460 +11091 56943 0.7620 +11091 56950 0.4040 +11091 56970 0.7440 +11091 56979 0.5270 +11091 57132 0.4100 +11091 57325 0.9770 +11091 57332 0.7880 +11091 57591 0.7350 +11091 57634 0.8030 +11091 57680 0.9920 +11091 57822 0.4520 +11091 58508 0.9990 +11091 63925 0.4260 +11091 64319 0.5260 +11091 64326 0.6600 +11091 64708 0.4130 +11091 64754 0.6270 +11091 64769 0.7540 +11091 65110 0.5420 +11091 79016 0.6480 +11091 79084 0.7350 +11091 79269 0.5440 +11091 79364 0.7950 +11091 79447 0.9960 +11091 79595 0.5580 +11091 79723 0.4190 +11091 79813 0.5300 +11091 79923 0.4120 +11091 80067 0.5490 +11091 80314 0.7260 +11091 80335 0.9990 +11091 80344 0.5040 +11091 80349 0.4570 +11091 80854 0.7350 +11091 81554 0.4520 +11091 81887 0.9400 +11091 83443 0.5830 +11091 83667 0.6010 +11091 83743 0.7020 +11091 83746 0.9870 +11091 83758 0.5230 +11091 83860 0.6100 +11091 84108 0.9700 +11091 84148 0.9940 +11091 84159 0.4120 +11091 84193 0.5270 +11091 84259 0.5180 +11091 84292 0.4720 +11091 84332 0.6000 +11091 84444 0.6690 +11091 84661 0.9990 +11091 84678 0.6690 +11091 84955 0.6250 +11091 84962 0.5070 +11091 85236 0.9170 +11091 89801 0.4550 +11091 90780 0.4550 +11091 91272 0.8870 +11091 93624 0.7790 +11091 94239 0.5960 +11091 112869 0.9820 +11091 116225 0.4330 +11091 117143 0.7600 +11091 121504 0.8310 +11091 124245 0.4060 +11091 124944 0.9350 +11091 125476 0.9250 +11091 126961 0.9220 +11091 128312 0.6100 +11091 133482 0.5920 +11091 139231 0.7710 +11091 143241 0.5770 +11091 149951 0.5130 +11091 150684 0.5070 +11091 151050 0.6280 +11091 157922 0.4100 +11091 158067 0.4080 +11091 161882 0.5530 +11091 170622 0.5100 +11091 192669 0.4760 +11091 192670 0.4610 +11091 200186 0.4440 +11091 201161 0.5540 +11091 221656 0.6330 +11091 255626 0.6110 +11091 259282 0.8850 +11091 284058 0.9990 +11091 333932 0.9220 +11091 339287 0.8190 +11091 345651 0.5680 +11091 348793 0.4550 +11091 387893 0.4870 +11091 440093 0.9990 +11091 440686 0.9990 +11091 474382 0.5800 +11091 554313 0.8310 +11091 653604 0.9990 +11091 100529209 0.5400 +11092 25790 0.8170 +11092 26150 0.8100 +11092 26206 0.8040 +11092 27285 0.8130 +11092 29105 0.8000 +11092 29789 0.4070 +11092 29922 0.8030 +11092 55329 0.8000 +11092 64518 0.8140 +11092 64776 0.8100 +11092 80258 0.8190 +11092 83659 0.8150 +11092 84864 0.4380 +11092 93190 0.8080 +11092 113177 0.4400 +11092 114327 0.8230 +11092 118430 0.4300 +11092 122258 0.6040 +11092 127003 0.8180 +11092 129881 0.8910 +11092 134121 0.8350 +11092 135138 0.8090 +11092 138162 0.8220 +11092 138255 0.8000 +11092 145788 0.8050 +11092 146845 0.8060 +11092 147463 0.5410 +11092 149483 0.4470 +11092 150483 0.8120 +11092 151651 0.8080 +11092 158067 0.5920 +11092 161502 0.8140 +11092 171169 0.4010 +11092 200232 0.5610 +11092 203562 0.4490 +11092 219670 0.8120 +11092 220108 0.4810 +11092 220136 0.8130 +11092 256710 0.4320 +11092 257177 0.8180 +11092 339778 0.8030 +11092 388701 0.8000 +11092 389799 0.9010 +11092 440585 0.8270 +11092 647174 0.5580 +11092 730112 0.8010 +11093 23275 0.6380 +11093 25974 0.6120 +11093 51206 0.4160 +11093 55720 0.4340 +11093 59272 0.4080 +11093 81494 0.6610 +11093 84033 0.4050 +11093 114757 0.4310 +11093 124872 0.4640 +11093 145173 0.6320 +11093 388125 0.6110 +11094 57146 0.6030 +11094 57827 0.4040 +11094 79169 0.4160 +11094 114932 0.4260 +11094 148753 0.4070 +11094 162427 0.4220 +11094 203228 0.4140 +11094 642968 0.4930 +11095 23275 0.4930 +11095 63827 0.6230 +11095 80781 0.7890 +11095 145173 0.4130 +11095 404037 0.5240 +11096 23275 0.4870 +11096 55720 0.4610 +11096 56243 0.4040 +11096 63827 0.9130 +11096 64399 0.6100 +11096 145173 0.5070 +11096 340419 0.4280 +11097 11218 0.4200 +11097 11260 0.5150 +11097 11269 0.8660 +11097 11338 0.4240 +11097 22794 0.5560 +11097 22824 0.4280 +11097 22916 0.5880 +11097 23165 0.8990 +11097 23225 0.8860 +11097 23279 0.7840 +11097 23511 0.8850 +11097 23609 0.5430 +11097 23636 0.7360 +11097 25909 0.4150 +11097 25929 0.4570 +11097 26019 0.4510 +11097 26097 0.4430 +11097 27161 0.4070 +11097 29107 0.7910 +11097 29894 0.4220 +11097 30000 0.4080 +11097 50628 0.4180 +11097 51182 0.4440 +11097 51362 0.4750 +11097 51501 0.4270 +11097 51692 0.4140 +11097 51808 0.4600 +11097 53371 0.7880 +11097 53981 0.4220 +11097 54148 0.4500 +11097 55110 0.7140 +11097 55143 0.4420 +11097 55339 0.4430 +11097 55706 0.8360 +11097 55746 0.7530 +11097 55975 0.6460 +11097 56000 0.9110 +11097 56006 0.4690 +11097 57122 0.8450 +11097 57187 0.4980 +11097 64768 0.4460 +11097 65109 0.5240 +11097 79023 0.7700 +11097 79228 0.4490 +11097 79760 0.4160 +11097 79833 0.4210 +11097 79902 0.8830 +11097 80145 0.4190 +11097 81608 0.4180 +11097 81929 0.9330 +11097 84248 0.5010 +11097 84271 0.5090 +11097 84321 0.4430 +11097 84324 0.4270 +11097 116835 0.4240 +11097 129401 0.9350 +11097 138199 0.4310 +11097 140609 0.4270 +11097 259217 0.4240 +11097 348995 0.9120 +11097 728343 0.9240 +11097 729857 0.6670 +11097 100101267 0.5470 +11098 23022 0.4570 +11098 51156 0.4270 +11098 54587 0.4620 +11098 54757 0.7200 +11098 56975 0.5030 +11098 57489 0.5310 +11098 145264 0.4090 +11098 220382 0.4340 +11098 256394 0.4440 +11098 327657 0.4270 +11099 11224 0.4180 +11099 23286 0.7860 +11099 25813 0.4180 +11099 25930 0.4920 +11099 27306 0.5140 +11099 29968 0.4140 +11099 54455 0.4020 +11099 84376 0.5160 +11099 84612 0.8130 +11099 114822 0.6290 +11099 150290 0.4490 +11099 161436 0.5470 +11100 22803 0.4170 +11100 22916 0.6050 +11100 22985 0.4020 +11100 22992 0.4550 +11100 23064 0.4300 +11100 23435 0.4580 +11100 23636 0.7330 +11100 25940 0.4610 +11100 26528 0.5510 +11100 27316 0.7160 +11100 29107 0.8960 +11100 29117 0.5080 +11100 29894 0.4400 +11100 30000 0.5400 +11100 51645 0.4970 +11100 51720 0.6050 +11100 51741 0.5210 +11100 55696 0.6760 +11100 55916 0.6500 +11100 56000 0.6480 +11100 56001 0.5890 +11100 56257 0.4390 +11100 79728 0.4100 +11100 84126 0.5020 +11100 90324 0.4980 +11100 124245 0.4510 +11100 171017 0.4410 +11100 220988 0.6470 +11100 728343 0.5890 +11101 23028 0.4170 +11101 23304 0.8130 +11101 23352 0.6860 +11101 24142 0.5850 +11101 51366 0.5620 +11101 54780 0.4280 +11101 55093 0.7280 +11101 57038 0.4210 +11101 57512 0.4060 +11101 64478 0.4030 +11101 112936 0.6140 +11101 123803 0.7160 +11101 197131 0.7800 +11101 339669 0.4260 +11101 400566 0.5080 +11102 23405 0.9010 +11102 25871 0.6860 +11102 26523 0.7240 +11102 27161 0.9010 +11102 27297 0.4390 +11102 28987 0.8010 +11102 29102 0.7220 +11102 51065 0.5090 +11102 51367 0.9990 +11102 54487 0.7200 +11102 54522 0.5160 +11102 54913 0.9960 +11102 54931 0.5540 +11102 64897 0.4890 +11102 65095 0.8470 +11102 79897 0.9990 +11102 80207 0.7760 +11102 80746 0.5520 +11102 83608 0.6780 +11102 85379 0.5160 +11102 134548 0.5300 +11102 138716 0.8140 +11102 140032 0.4990 +11102 192669 0.7720 +11102 192670 0.7200 +11102 201799 0.4470 +11102 283989 0.5400 +11102 285521 0.5300 +11102 100505876 0.4430 +11103 11137 0.8580 +11103 11224 0.4600 +11103 11340 0.8330 +11103 22803 0.4770 +11103 22894 0.7680 +11103 22907 0.4490 +11103 22984 0.9990 +11103 23016 0.7580 +11103 23029 0.7740 +11103 23054 0.8670 +11103 23076 0.8860 +11103 23131 0.6240 +11103 23160 0.9980 +11103 23204 0.7530 +11103 23212 0.9610 +11103 23223 0.9920 +11103 23246 0.8180 +11103 23350 0.4290 +11103 23367 0.4130 +11103 23378 0.8770 +11103 23404 0.7800 +11103 23481 0.8940 +11103 23517 0.9010 +11103 23560 0.7710 +11103 25879 0.9990 +11103 25885 0.4050 +11103 25926 0.9650 +11103 25983 0.9990 +11103 26155 0.8570 +11103 26156 0.9950 +11103 26168 0.5700 +11103 26354 0.8520 +11103 26574 0.9980 +11103 26576 0.4460 +11103 26995 0.6820 +11103 27000 0.7170 +11103 27042 0.9050 +11103 27043 0.5490 +11103 27292 0.8560 +11103 27297 0.5120 +11103 27324 0.6180 +11103 27340 0.9990 +11103 27341 0.9990 +11103 28987 0.9220 +11103 29777 0.9880 +11103 29889 0.7620 +11103 29997 0.8450 +11103 30834 0.5430 +11103 30836 0.9960 +11103 51010 0.8030 +11103 51013 0.8710 +11103 51018 0.9270 +11103 51042 0.6190 +11103 51065 0.8790 +11103 51068 0.8380 +11103 51073 0.6920 +11103 51077 0.9990 +11103 51081 0.8650 +11103 51082 0.7520 +11103 51096 0.9990 +11103 51106 0.5840 +11103 51116 0.4650 +11103 51118 0.9990 +11103 51149 0.8440 +11103 51154 0.9710 +11103 51187 0.8830 +11103 51202 0.9590 +11103 51236 0.5620 +11103 51319 0.6100 +11103 51362 0.4370 +11103 51388 0.9380 +11103 51406 0.8100 +11103 51490 0.6060 +11103 51538 0.5730 +11103 51574 0.7000 +11103 51575 0.9570 +11103 51602 0.9990 +11103 51605 0.6840 +11103 54512 0.7910 +11103 54517 0.5320 +11103 54552 0.7070 +11103 54555 0.9170 +11103 54606 0.9120 +11103 54663 0.8530 +11103 54680 0.4480 +11103 54700 0.4170 +11103 54853 0.5940 +11103 54865 0.6420 +11103 54881 0.7700 +11103 54920 0.4140 +11103 54984 0.5900 +11103 55003 0.7530 +11103 55105 0.8470 +11103 55109 0.5440 +11103 55127 0.9980 +11103 55131 0.9500 +11103 55153 0.7570 +11103 55173 0.4270 +11103 55226 0.9970 +11103 55272 0.9990 +11103 55299 0.9410 +11103 55319 0.7780 +11103 55341 0.7480 +11103 55505 0.6610 +11103 55601 0.4010 +11103 55621 0.4330 +11103 55646 0.7660 +11103 55651 0.8650 +11103 55668 0.8490 +11103 55718 0.5110 +11103 55720 0.7540 +11103 55759 0.8700 +11103 55760 0.5670 +11103 55781 0.9960 +11103 55794 0.5850 +11103 55813 0.9990 +11103 55854 0.4890 +11103 56342 0.7370 +11103 56647 0.6260 +11103 56829 0.4240 +11103 56902 0.9850 +11103 56915 0.7980 +11103 56919 0.6190 +11103 57050 0.9990 +11103 57062 0.8080 +11103 57109 0.5800 +11103 57418 0.8320 +11103 57647 0.9430 +11103 57696 0.7310 +11103 57706 0.6420 +11103 58496 0.5880 +11103 60625 0.6190 +11103 64216 0.7270 +11103 64318 0.7860 +11103 64425 0.6560 +11103 64434 0.9850 +11103 64794 0.4670 +11103 64848 0.4710 +11103 64960 0.7900 +11103 64963 0.7870 +11103 65083 0.9980 +11103 65095 0.9960 +11103 79009 0.5650 +11103 79039 0.4890 +11103 79050 0.9990 +11103 79159 0.8910 +11103 79571 0.8670 +11103 79665 0.5760 +11103 79707 0.5730 +11103 79918 0.4110 +11103 79954 0.9990 +11103 80135 0.9020 +11103 80155 0.4410 +11103 80324 0.4230 +11103 81627 0.4220 +11103 81887 0.7280 +11103 83448 0.4360 +11103 83480 0.4290 +11103 83732 0.6560 +11103 83743 0.8710 +11103 84101 0.6230 +11103 84128 0.9980 +11103 84135 0.9980 +11103 84154 0.9710 +11103 84294 0.9980 +11103 84310 0.4250 +11103 84319 0.6330 +11103 84365 0.9790 +11103 84467 0.6010 +11103 84549 0.9320 +11103 84909 0.5770 +11103 84916 0.9990 +11103 84946 0.9940 +11103 85437 0.6340 +11103 85441 0.4270 +11103 88745 0.9920 +11103 90121 0.7570 +11103 90957 0.4600 +11103 91752 0.5060 +11103 92856 0.9980 +11103 112970 0.5220 +11103 115708 0.4330 +11103 115752 0.4780 +11103 116966 0.6720 +11103 117246 0.7730 +11103 118460 0.7230 +11103 120534 0.4630 +11103 126402 0.8100 +11103 126789 0.4150 +11103 128061 0.8140 +11103 129563 0.4430 +11103 140032 0.8020 +11103 142940 0.7680 +11103 146212 0.7690 +11103 153443 0.6840 +11103 155368 0.6640 +11103 161424 0.4620 +11103 165545 0.5670 +11103 170506 0.5070 +11103 219578 0.5060 +11103 221078 0.6560 +11103 221830 0.8300 +11103 252969 0.5200 +11103 253559 0.4470 +11103 257415 0.4470 +11103 283106 0.5940 +11103 285855 0.7430 +11103 345630 0.9520 +11103 347487 0.6510 +11103 387129 0.5030 +11103 401993 0.4180 +11103 641776 0.4740 +11103 643909 0.4740 +11103 692312 0.7310 +11103 728524 0.4740 +11103 100287482 0.4570 +11103 100505478 0.4930 +11103 100996746 0.4740 +11103 102157402 0.6630 +11103 105180390 0.4740 +11103 105180391 0.4740 +11104 22974 0.4760 +11104 23247 0.5630 +11104 23560 0.4040 +11104 25923 0.4290 +11104 26047 0.4320 +11104 27185 0.4550 +11104 51062 0.4290 +11104 51366 0.4160 +11104 54165 0.4040 +11104 54820 0.5970 +11104 55145 0.4980 +11104 56061 0.4050 +11104 56261 0.4110 +11104 56980 0.4770 +11104 56992 0.4560 +11104 57117 0.4750 +11104 57542 0.6150 +11104 57621 0.4160 +11104 64225 0.4410 +11104 79009 0.4980 +11104 79768 0.9790 +11104 79944 0.4660 +11104 81565 0.8090 +11104 81706 0.4700 +11104 81930 0.5630 +11104 83473 0.4660 +11104 84056 0.6830 +11104 84445 0.8300 +11104 84617 0.4080 +11104 85464 0.4250 +11104 89872 0.4500 +11104 93986 0.4410 +11104 114798 0.5810 +11104 114803 0.4480 +11104 134510 0.5340 +11104 150350 0.5270 +11104 203068 0.4170 +11104 219285 0.4930 +11104 259266 0.7720 +11104 339745 0.4310 +11104 100509620 0.4500 +11104 100652824 0.4110 +11107 11285 0.5390 +11107 54093 0.4600 +11107 55033 0.5740 +11107 55209 0.4070 +11107 56978 0.6220 +11107 56981 0.5380 +11107 57659 0.4580 +11107 57680 0.4140 +11107 91252 0.5060 +11107 113189 0.5220 +11107 114826 0.4060 +11107 126792 0.4750 +11107 284611 0.4660 +11108 23067 0.4880 +11108 27097 0.4690 +11108 51493 0.5110 +11108 54093 0.5550 +11108 54904 0.4160 +11108 55209 0.4520 +11108 55703 0.4740 +11108 55870 0.4840 +11108 56950 0.4540 +11108 57727 0.5210 +11108 63894 0.4580 +11108 64412 0.4660 +11108 64754 0.4250 +11108 79723 0.4420 +11108 79813 0.4270 +11108 80854 0.4460 +11108 83852 0.4350 +11108 84193 0.4970 +11108 90488 0.4300 +11108 114826 0.5090 +11108 150572 0.4260 +11108 255394 0.4320 +11108 387893 0.4370 +11112 26275 0.9980 +11112 27034 0.5700 +11112 27071 0.5350 +11112 51031 0.4240 +11112 51079 0.4710 +11112 51102 0.4660 +11112 51144 0.4440 +11112 54059 0.4110 +11112 54212 0.4850 +11112 54995 0.4630 +11112 55066 0.4080 +11112 55268 0.4150 +11112 55699 0.4460 +11112 55862 0.8810 +11112 55902 0.8330 +11112 56922 0.5850 +11112 64087 0.5190 +11112 64745 0.4050 +11112 64902 0.9410 +11112 79007 0.4070 +11112 79072 0.5030 +11112 79611 0.8190 +11112 79728 0.5080 +11112 83693 0.4620 +11112 84532 0.8290 +11112 84693 0.4540 +11112 125228 0.5730 +11112 126789 0.4010 +11112 147015 0.4510 +11112 196074 0.4170 +11112 221895 0.5800 +11112 246243 0.4730 +11112 253017 0.4180 +11112 254863 0.4200 +11112 285527 0.4200 +11112 374291 0.4290 +11113 22974 0.4700 +11113 23002 0.4100 +11113 23075 0.4070 +11113 23197 0.5630 +11113 23256 0.4030 +11113 23286 0.4030 +11113 23332 0.4560 +11113 24137 0.8090 +11113 25894 0.4130 +11113 25926 0.4770 +11113 25962 0.5140 +11113 26499 0.4220 +11113 27185 0.4740 +11113 27341 0.4220 +11113 29127 0.6390 +11113 29941 0.4200 +11113 54443 0.8980 +11113 55143 0.5180 +11113 55165 0.4240 +11113 55215 0.4440 +11113 55755 0.4560 +11113 55789 0.4920 +11113 65124 0.4020 +11113 79023 0.4400 +11113 79784 0.6900 +11113 81609 0.4020 +11113 81624 0.5020 +11113 81839 0.4090 +11113 83540 0.5520 +11113 84823 0.4490 +11113 84926 0.5270 +11113 85415 0.4520 +11113 91010 0.4020 +11113 103910 0.6900 +11113 114822 0.4830 +11113 128239 0.5020 +11113 160777 0.4060 +11113 200845 0.5930 +11113 259266 0.8870 +11113 284119 0.4030 +11113 728642 0.5440 +11116 11158 0.7730 +11116 11159 0.4690 +11116 22919 0.6120 +11116 23354 0.5040 +11116 26127 0.8630 +11116 26281 0.4070 +11116 54801 0.5970 +11116 54875 0.4030 +11116 54930 0.5010 +11116 55012 0.8590 +11116 55142 0.5110 +11116 55559 0.4990 +11116 55690 0.7800 +11116 56897 0.6900 +11116 57536 0.4570 +11116 64770 0.5330 +11116 79441 0.5080 +11116 79848 0.4410 +11116 79866 0.5220 +11116 80184 0.5060 +11116 84131 0.6920 +11116 84934 0.4250 +11116 84984 0.9520 +11116 93323 0.6190 +11116 115106 0.5190 +11116 117177 0.5070 +11116 123811 0.5170 +11116 200894 0.5050 +11116 399687 0.8470 +11116 728642 0.5130 +11117 22801 0.5660 +11117 22915 0.5420 +11117 30008 0.4960 +11117 63923 0.5500 +11117 66036 0.8210 +11117 90410 0.4750 +11117 219348 0.7560 +11117 284217 0.5490 +11118 11119 0.9930 +11118 11120 0.4750 +11118 22914 0.4330 +11118 50852 0.4080 +11118 84166 0.5190 +11118 132949 0.4690 +11118 143662 0.5140 +11118 442862 0.4350 +11118 100507436 0.4700 +11119 11120 0.5360 +11119 22914 0.5450 +11119 23633 0.6110 +11119 29126 0.4130 +11119 50852 0.4050 +11119 57154 0.4470 +11119 79908 0.4240 +11119 84166 0.4990 +11119 84639 0.7600 +11119 114625 0.4120 +11119 132949 0.4600 +11119 143662 0.5030 +11119 153579 0.4280 +11119 402569 0.7830 +11119 442862 0.4770 +11119 100507436 0.4770 +11120 22914 0.4320 +11120 23236 0.4300 +11120 30835 0.9780 +11120 55846 0.4350 +11120 56776 0.4220 +11120 79908 0.4230 +11120 90864 0.4150 +11120 132949 0.4730 +11120 143662 0.5260 +11120 153579 0.4430 +11122 30819 0.4050 +11122 53353 0.4950 +11122 54825 0.4140 +11122 55218 0.4220 +11122 56934 0.5230 +11122 64403 0.4130 +11122 64478 0.5570 +11122 80309 0.4030 +11122 84435 0.5000 +11122 84735 0.4130 +11122 85442 0.5040 +11122 114788 0.5220 +11123 23005 0.4400 +11123 23235 0.4950 +11123 23363 0.4320 +11123 23523 0.4320 +11123 26528 0.5420 +11123 26960 0.4090 +11123 54856 0.4590 +11123 64754 0.5280 +11123 79624 0.4220 +11123 83941 0.4130 +11123 119391 0.4140 +11123 123099 0.4260 +11124 22888 0.4990 +11124 23190 0.6010 +11124 23197 0.7930 +11124 23291 0.6860 +11124 23304 0.5010 +11124 23352 0.5120 +11124 26043 0.9990 +11124 27248 0.5490 +11124 30836 0.8370 +11124 51035 0.9990 +11124 51077 0.8480 +11124 54855 0.4510 +11124 54941 0.7450 +11124 55432 0.4180 +11124 55666 0.9990 +11124 55768 0.5060 +11124 55968 0.9970 +11124 63950 0.4450 +11124 79058 0.9960 +11124 79139 0.4540 +11124 79671 0.4610 +11124 79917 0.4200 +11124 80124 0.5990 +11124 80232 0.5380 +11124 80233 0.5800 +11124 80700 0.9970 +11124 81620 0.5490 +11124 83892 0.9940 +11124 84078 0.5680 +11124 84861 0.4980 +11124 91544 0.4350 +11124 91662 0.7630 +11124 92552 0.5170 +11124 114548 0.6270 +11124 114781 0.9940 +11124 122769 0.5350 +11124 127733 0.5690 +11124 133482 0.4910 +11124 137886 0.9970 +11124 163859 0.4490 +11124 165324 0.5770 +11124 197131 0.5200 +11124 199713 0.6220 +11124 253943 0.4430 +11124 253980 0.9940 +11124 258010 0.4020 +11124 337867 0.5770 +11124 338322 0.5160 +11126 11148 0.4470 +11126 22914 0.6150 +11126 27087 0.5530 +11126 29126 0.6140 +11126 29851 0.5540 +11126 30009 0.6720 +11126 30816 0.4260 +11126 50943 0.4800 +11126 51348 0.8610 +11126 51744 0.8250 +11126 56253 0.4100 +11126 57823 0.5550 +11126 59067 0.4390 +11126 64115 0.4520 +11126 79679 0.4460 +11126 80380 0.5660 +11126 80381 0.4800 +11126 83888 0.4510 +11126 84868 0.7890 +11126 114836 0.4430 +11126 117157 0.5240 +11126 126259 0.4750 +11126 131450 0.4440 +11126 151888 0.9530 +11126 201633 0.7710 +11126 259197 0.5690 +11126 284194 0.4470 +11126 654346 0.4470 +11127 11258 0.5210 +11127 22858 0.4510 +11127 22897 0.5190 +11127 22920 0.9990 +11127 22999 0.5650 +11127 23046 0.5970 +11127 23059 0.5170 +11127 23095 0.6290 +11127 23265 0.4990 +11127 23303 0.6000 +11127 23322 0.6230 +11127 23418 0.4530 +11127 23435 0.4180 +11127 23645 0.4760 +11127 24137 0.5050 +11127 25861 0.4360 +11127 25897 0.4100 +11127 26056 0.7700 +11127 26128 0.5620 +11127 26146 0.5080 +11127 26153 0.6560 +11127 26160 0.8990 +11127 26286 0.5080 +11127 26608 0.4710 +11127 27031 0.4400 +11127 27130 0.6230 +11127 27152 0.4250 +11127 27185 0.5480 +11127 28981 0.6300 +11127 29127 0.4980 +11127 51098 0.7380 +11127 51164 0.5900 +11127 51199 0.4200 +11127 51361 0.5860 +11127 51594 0.5190 +11127 51626 0.5070 +11127 51668 0.4520 +11127 51684 0.8750 +11127 51715 0.6110 +11127 53407 0.5120 +11127 54806 0.5870 +11127 54820 0.6470 +11127 55081 0.7060 +11127 55083 0.5790 +11127 55212 0.5710 +11127 55582 0.5910 +11127 55605 0.6560 +11127 55614 0.5770 +11127 55738 0.5070 +11127 55764 0.6640 +11127 55850 0.5110 +11127 55860 0.5260 +11127 56288 0.5980 +11127 56912 0.6330 +11127 56955 0.4880 +11127 56992 0.7470 +11127 57096 0.5860 +11127 57216 0.4250 +11127 57539 0.5760 +11127 57560 0.6880 +11127 57576 0.6030 +11127 57728 0.6260 +11127 60561 0.5070 +11127 63971 0.5960 +11127 64145 0.4140 +11127 64792 0.4610 +11127 64837 0.8360 +11127 79659 0.7000 +11127 79809 0.8310 +11127 79960 0.4720 +11127 79989 0.4220 +11127 80011 0.4080 +11127 80173 0.6550 +11127 80184 0.7930 +11127 80351 0.4720 +11127 81565 0.6260 +11127 81572 0.4750 +11127 81930 0.6120 +11127 84364 0.5040 +11127 84516 0.5770 +11127 84643 0.5890 +11127 85376 0.4400 +11127 89891 0.4430 +11127 89953 0.6020 +11127 90410 0.7750 +11127 90990 0.6560 +11127 91147 0.6120 +11127 91754 0.4170 +11127 93661 0.4990 +11127 112752 0.4680 +11127 113746 0.5200 +11127 118813 0.4820 +11127 124602 0.6030 +11127 129880 0.4390 +11127 146909 0.5850 +11127 147700 0.6480 +11127 150737 0.5750 +11127 166655 0.6200 +11127 192668 0.5200 +11127 200894 0.7790 +11127 221458 0.5570 +11127 261734 0.4910 +11127 284086 0.5060 +11127 284382 0.4470 +11127 285643 0.4870 +11127 286204 0.4320 +11127 374654 0.8360 +11127 100532724 0.4070 +11128 11180 0.4020 +11128 11196 0.4360 +11128 11201 0.7880 +11128 11222 0.7970 +11128 11224 0.9290 +11128 11321 0.6330 +11128 22907 0.4020 +11128 22984 0.9660 +11128 23135 0.5140 +11128 23173 0.4620 +11128 23204 0.6730 +11128 23212 0.4140 +11128 23223 0.7020 +11128 23246 0.7130 +11128 23312 0.4370 +11128 23395 0.5570 +11128 23404 0.5340 +11128 23481 0.7240 +11128 23517 0.5640 +11128 23521 0.4860 +11128 23560 0.7730 +11128 23640 0.7430 +11128 25774 0.5170 +11128 25885 0.9840 +11128 25973 0.4800 +11128 26155 0.6460 +11128 26289 0.4360 +11128 26354 0.4750 +11128 26953 0.4040 +11128 26995 0.5650 +11128 27079 0.4710 +11128 27297 0.9990 +11128 27340 0.6820 +11128 28998 0.4870 +11128 29088 0.5450 +11128 29093 0.9110 +11128 29789 0.4110 +11128 29889 0.4870 +11128 29927 0.7970 +11128 29928 0.4910 +11128 30834 0.7300 +11128 50808 0.4400 +11128 51021 0.7340 +11128 51069 0.8570 +11128 51073 0.7890 +11128 51081 0.8390 +11128 51082 0.9990 +11128 51096 0.5540 +11128 51116 0.6350 +11128 51121 0.8290 +11128 51149 0.5180 +11128 51154 0.8520 +11128 51184 0.7860 +11128 51264 0.6610 +11128 51388 0.4690 +11128 51434 0.4510 +11128 51520 0.4460 +11128 51575 0.4380 +11128 51602 0.5020 +11128 51727 0.4740 +11128 51728 0.9990 +11128 54433 0.4230 +11128 54475 0.4750 +11128 54476 0.5820 +11128 54552 0.5140 +11128 54700 0.7390 +11128 54726 0.5230 +11128 54948 0.7640 +11128 54995 0.4580 +11128 55011 0.8280 +11128 55052 0.6160 +11128 55127 0.7750 +11128 55131 0.5600 +11128 55140 0.4300 +11128 55143 0.4780 +11128 55153 0.6280 +11128 55157 0.5160 +11128 55173 0.7810 +11128 55176 0.7850 +11128 55226 0.7760 +11128 55239 0.6230 +11128 55272 0.8840 +11128 55290 0.9230 +11128 55308 0.4770 +11128 55316 0.7220 +11128 55341 0.4150 +11128 55591 0.4770 +11128 55599 0.4340 +11128 55622 0.6010 +11128 55636 0.4170 +11128 55699 0.4890 +11128 55703 0.9990 +11128 55718 0.9990 +11128 55720 0.7330 +11128 55759 0.4080 +11128 55760 0.4320 +11128 55813 0.4420 +11128 55814 0.9940 +11128 56474 0.5470 +11128 56902 0.4980 +11128 56919 0.4280 +11128 56965 0.4580 +11128 57038 0.5270 +11128 57050 0.4010 +11128 57136 0.5740 +11128 57165 0.4350 +11128 57176 0.4900 +11128 57470 0.5500 +11128 57505 0.5560 +11128 57510 0.4820 +11128 57696 0.4890 +11128 60528 0.4730 +11128 60558 0.9370 +11128 63875 0.9490 +11128 63931 0.7220 +11128 64145 0.5420 +11128 64318 0.5680 +11128 64374 0.7390 +11128 64425 0.9420 +11128 64434 0.4070 +11128 64960 0.5310 +11128 64963 0.8080 +11128 64965 0.6640 +11128 64968 0.6790 +11128 64969 0.8930 +11128 64979 0.5380 +11128 64983 0.5930 +11128 65003 0.7220 +11128 65005 0.7280 +11128 65008 0.7490 +11128 65083 0.7820 +11128 65121 0.5380 +11128 65122 0.5380 +11128 79590 0.8530 +11128 79631 0.7320 +11128 79657 0.8820 +11128 79668 0.4530 +11128 79754 0.4170 +11128 79871 0.4080 +11128 79954 0.5630 +11128 80153 0.4260 +11128 80324 0.4560 +11128 81570 0.4240 +11128 81572 0.4640 +11128 81627 0.6530 +11128 83480 0.4790 +11128 83743 0.5630 +11128 83746 0.4660 +11128 83932 0.4600 +11128 84128 0.4340 +11128 84154 0.6190 +11128 84172 0.9710 +11128 84232 0.9910 +11128 84265 0.9980 +11128 84516 0.6300 +11128 84893 0.4440 +11128 84916 0.6320 +11128 85476 0.7540 +11128 87178 0.6720 +11128 90353 0.4080 +11128 90957 0.4670 +11128 91875 0.5610 +11128 92399 0.4470 +11128 112495 0.5720 +11128 116143 0.5240 +11128 122481 0.4360 +11128 124454 0.6270 +11128 126402 0.7950 +11128 126789 0.4490 +11128 127428 0.5550 +11128 140801 0.7370 +11128 142940 0.5380 +11128 158067 0.4360 +11128 165545 0.4270 +11128 170082 0.5080 +11128 171568 0.9990 +11128 219927 0.6120 +11128 221264 0.4980 +11128 221830 0.9220 +11128 285368 0.4570 +11128 285855 0.7740 +11128 343068 0.5380 +11128 343070 0.5380 +11128 345630 0.4640 +11128 347487 0.6280 +11128 387129 0.7580 +11128 387332 0.5270 +11128 387338 0.4610 +11128 390999 0.5380 +11128 391002 0.5380 +11128 399949 0.4310 +11128 400735 0.5380 +11128 400736 0.5380 +11128 440560 0.5380 +11128 440561 0.5380 +11128 441873 0.5380 +11128 641776 0.6700 +11128 643909 0.6700 +11128 645359 0.5380 +11128 653619 0.5380 +11128 653689 0.5170 +11128 728524 0.6700 +11128 729528 0.5380 +11128 100287482 0.6280 +11128 100505478 0.7580 +11128 100526842 0.8490 +11128 100996746 0.6700 +11128 101929983 0.5380 +11128 105180390 0.6700 +11128 105180391 0.6700 +11129 22919 0.5410 +11129 22924 0.5930 +11129 23085 0.8640 +11129 23122 0.9590 +11129 23189 0.5800 +11129 23332 0.9580 +11129 23499 0.5820 +11129 26093 0.4830 +11129 29105 0.6850 +11129 51258 0.4190 +11129 51631 0.4520 +11129 54540 0.5110 +11129 54675 0.5290 +11129 54776 0.4340 +11129 57018 0.4370 +11129 57396 0.4500 +11129 57455 0.5600 +11129 57606 0.5040 +11129 58506 0.4030 +11129 79753 0.4020 +11129 81669 0.4490 +11129 81857 0.4570 +11129 81930 0.4050 +11129 83660 0.4970 +11129 84643 0.4470 +11129 90102 0.9890 +11129 117286 0.4810 +11130 11169 0.4790 +11130 11243 0.9940 +11130 11335 0.4770 +11130 11339 0.8140 +11130 22974 0.9130 +11130 23397 0.7050 +11130 23468 0.7610 +11130 24137 0.8480 +11130 25936 0.9970 +11130 26271 0.4620 +11130 27436 0.5190 +11130 29028 0.4440 +11130 29089 0.7300 +11130 29127 0.9250 +11130 29128 0.7020 +11130 51053 0.5000 +11130 51127 0.5070 +11130 51203 0.9020 +11130 51512 0.4240 +11130 51514 0.8190 +11130 51538 0.4310 +11130 51659 0.6590 +11130 54069 0.4680 +11130 54443 0.4900 +11130 54478 0.4530 +11130 54892 0.7020 +11130 54908 0.4990 +11130 55010 0.4710 +11130 55055 0.9390 +11130 55143 0.7800 +11130 55165 0.8670 +11130 55215 0.5990 +11130 55355 0.7730 +11130 55388 0.6190 +11130 55635 0.5210 +11130 55723 0.4870 +11130 55789 0.5270 +11130 55839 0.6660 +11130 56992 0.7930 +11130 57082 0.9990 +11130 57128 0.4340 +11130 57405 0.9840 +11130 64105 0.6460 +11130 64151 0.8520 +11130 64946 0.6130 +11130 79003 0.9890 +11130 79019 0.8140 +11130 79172 0.5500 +11130 79682 0.8290 +11130 79733 0.7660 +11130 79801 0.6740 +11130 79980 0.9980 +11130 80152 0.5610 +11130 81610 0.6510 +11130 81620 0.5040 +11130 81930 0.5450 +11130 83461 0.5480 +11130 83540 0.9910 +11130 83879 0.5190 +11130 84057 0.5320 +11130 85363 0.7820 +11130 90417 0.4090 +11130 113130 0.9080 +11130 144455 0.4030 +11130 146057 0.7800 +11130 146909 0.4130 +11130 147841 0.9850 +11130 148223 0.4180 +11130 150468 0.4150 +11130 151246 0.4770 +11130 151648 0.4200 +11130 157313 0.6150 +11130 157570 0.4130 +11130 220134 0.6210 +11130 221150 0.7260 +11130 259266 0.8180 +11130 348235 0.4190 +11130 378708 0.4120 +11130 387103 0.6880 +11130 401541 0.4280 +11130 100527963 0.8870 +11131 50613 0.4190 +11131 84290 0.6580 +11131 84691 0.4790 +11131 130560 0.5320 +11131 136332 0.4490 +11131 171169 0.5270 +11131 221409 0.6100 +11132 54901 0.6100 +11132 55311 0.4860 +11132 56729 0.5200 +11132 57140 0.8930 +11132 58509 0.4390 +11132 79068 0.5370 +11132 79874 0.4390 +11132 84290 0.6590 +11132 84467 0.7080 +11132 84666 0.4950 +11132 136332 0.4490 +11132 169026 0.5770 +11132 388569 0.4700 +11132 728294 0.4230 +11132 100289678 0.4920 +11133 23334 0.9990 +11133 23589 0.5380 +11133 27244 0.6110 +11133 28956 0.6110 +11133 51256 0.6330 +11133 51382 0.4990 +11133 51512 0.4490 +11133 51530 0.4630 +11133 51606 0.4990 +11133 54468 0.9980 +11133 55004 0.6800 +11133 55250 0.4240 +11133 55846 0.9990 +11133 56776 0.4920 +11133 57521 0.5770 +11133 57600 0.4150 +11133 58528 0.6960 +11133 64121 0.7250 +11133 64223 0.6280 +11133 79726 0.9980 +11133 81929 0.9980 +11133 83667 0.6870 +11133 84219 0.9990 +11133 90423 0.5090 +11133 96459 0.4150 +11133 127124 0.4990 +11133 144577 0.9990 +11133 153129 0.5050 +11133 154743 0.9320 +11133 155066 0.5000 +11133 201163 0.4570 +11133 220441 0.4020 +11133 245972 0.5030 +11133 245973 0.4990 +11133 255104 0.5520 +11133 389541 0.7110 +11133 652968 0.7270 +11133 729438 0.7110 +11135 23191 0.4130 +11135 23433 0.9110 +11135 23513 0.4190 +11135 23580 0.6160 +11135 26030 0.4030 +11135 28964 0.4050 +11135 55004 0.4200 +11135 55240 0.4240 +11135 55914 0.4160 +11135 55971 0.4110 +11135 57381 0.6040 +11135 57419 0.4010 +11135 81624 0.4010 +11135 81839 0.4090 +11135 128239 0.4040 +11136 11254 0.6790 +11136 23428 0.5540 +11136 23657 0.5330 +11136 54407 0.5070 +11136 54716 0.5540 +11136 56301 0.5550 +11136 57393 0.4350 +11136 57619 0.5120 +11136 57709 0.4310 +11136 64902 0.5010 +11136 81539 0.4700 +11136 84889 0.4380 +11136 112817 0.4960 +11136 117247 0.5120 +11136 119467 0.4200 +11136 124935 0.5100 +11136 130749 0.4680 +11136 157724 0.5500 +11136 206358 0.5580 +11136 340024 0.7720 +11136 348932 0.4120 +11137 11180 0.4100 +11137 11224 0.4240 +11137 11267 0.4260 +11137 11321 0.4900 +11137 11345 0.5090 +11137 22803 0.4810 +11137 22984 0.9390 +11137 23029 0.8660 +11137 23076 0.7480 +11137 23093 0.4420 +11137 23160 0.8640 +11137 23195 0.4660 +11137 23212 0.8460 +11137 23223 0.8690 +11137 23246 0.8910 +11137 23378 0.7380 +11137 23481 0.9180 +11137 23517 0.7480 +11137 23560 0.9620 +11137 23710 0.5070 +11137 23753 0.4940 +11137 24140 0.4700 +11137 25879 0.8690 +11137 25885 0.8220 +11137 25983 0.8400 +11137 26135 0.4690 +11137 26155 0.9180 +11137 26156 0.9090 +11137 26354 0.8570 +11137 26509 0.4110 +11137 26574 0.6190 +11137 27042 0.5010 +11137 27292 0.7150 +11137 27340 0.6540 +11137 28987 0.8390 +11137 28989 0.4050 +11137 29124 0.4300 +11137 29889 0.9300 +11137 29997 0.6890 +11137 51018 0.7050 +11137 51068 0.7820 +11137 51082 0.4040 +11137 51084 0.4250 +11137 51096 0.8960 +11137 51118 0.5990 +11137 51154 0.9020 +11137 51187 0.9160 +11137 51202 0.6980 +11137 51236 0.6940 +11137 51388 0.8060 +11137 51574 0.6050 +11137 51575 0.6460 +11137 51602 0.7520 +11137 51605 0.4010 +11137 51761 0.4120 +11137 54433 0.6090 +11137 54463 0.5210 +11137 54475 0.8680 +11137 54517 0.4180 +11137 54552 0.8420 +11137 54555 0.4510 +11137 54606 0.7540 +11137 54663 0.7600 +11137 54888 0.4570 +11137 55003 0.8000 +11137 55127 0.5720 +11137 55131 0.8800 +11137 55153 0.9340 +11137 55170 0.4320 +11137 55226 0.8330 +11137 55253 0.7190 +11137 55272 0.7300 +11137 55299 0.9250 +11137 55319 0.4480 +11137 55341 0.8200 +11137 55622 0.6090 +11137 55646 0.5180 +11137 55651 0.7420 +11137 55703 0.4200 +11137 55720 0.8920 +11137 55759 0.8850 +11137 55760 0.6130 +11137 55781 0.5040 +11137 55813 0.7390 +11137 55854 0.5360 +11137 56341 0.4290 +11137 56342 0.4520 +11137 56474 0.4050 +11137 56647 0.4500 +11137 56902 0.4180 +11137 56937 0.4190 +11137 56957 0.4030 +11137 57050 0.8320 +11137 57062 0.8360 +11137 57109 0.5500 +11137 57418 0.7650 +11137 57696 0.5360 +11137 60487 0.5610 +11137 64118 0.5390 +11137 64216 0.4360 +11137 64318 0.6590 +11137 64425 0.8360 +11137 64794 0.5570 +11137 65083 0.4250 +11137 79009 0.5240 +11137 79039 0.6340 +11137 79050 0.7160 +11137 79080 0.4040 +11137 79084 0.4090 +11137 79159 0.4870 +11137 79711 0.6370 +11137 79954 0.7190 +11137 80135 0.7850 +11137 80344 0.4460 +11137 81627 0.4100 +11137 83695 0.4690 +11137 83743 0.9430 +11137 84128 0.8900 +11137 84135 0.7640 +11137 84154 0.9640 +11137 84172 0.7290 +11137 84294 0.4340 +11137 84365 0.9050 +11137 84549 0.8390 +11137 84916 0.8960 +11137 84946 0.8510 +11137 90121 0.6980 +11137 90441 0.5310 +11137 91875 0.4530 +11137 92856 0.6830 +11137 114799 0.4030 +11137 117246 0.8420 +11137 142940 0.4270 +11137 157570 0.4380 +11137 161424 0.6130 +11137 165545 0.6050 +11137 221078 0.7350 +11137 221830 0.7320 +11137 285855 0.4030 +11137 345630 0.5270 +11138 25771 0.4630 +11138 54662 0.5060 +11138 55296 0.4020 +11138 55633 0.5160 +11138 64786 0.4160 +11138 79735 0.4920 +11138 125058 0.4750 +11138 125704 0.4070 +11138 128637 0.4650 +11138 161514 0.5340 +11138 284996 0.4130 +11140 11180 0.6860 +11140 11315 0.4010 +11140 22858 0.5110 +11140 22948 0.9280 +11140 23012 0.4330 +11140 23118 0.5340 +11140 23221 0.5730 +11140 23234 0.9100 +11140 23264 0.4040 +11140 23435 0.4460 +11140 23640 0.5060 +11140 23753 0.7460 +11140 23770 0.4090 +11140 24140 0.6190 +11140 26100 0.4100 +11140 26353 0.7720 +11140 26973 0.5250 +11140 27102 0.6280 +11140 51398 0.5810 +11140 51447 0.4700 +11140 51726 0.7560 +11140 55011 0.7160 +11140 55172 0.5510 +11140 55898 0.4550 +11140 55914 0.5290 +11140 56984 0.9000 +11140 57003 0.5870 +11140 57521 0.4370 +11140 57600 0.4380 +11140 64223 0.4100 +11140 65018 0.9790 +11140 65061 0.5180 +11140 65975 0.4510 +11140 79084 0.4570 +11140 79657 0.7720 +11140 80267 0.4700 +11140 81572 0.5860 +11140 81669 0.6110 +11140 83983 0.4080 +11140 85481 0.6060 +11140 120379 0.6140 +11140 120892 0.9250 +11140 145957 0.5150 +11140 146862 0.4040 +11140 149420 0.5420 +11140 150160 0.5400 +11140 197259 0.6870 +11140 253260 0.4140 +11140 257397 0.4730 +11140 283237 0.4800 +11140 728378 0.4270 +11140 728642 0.6360 +11140 100885850 0.4940 +11141 22829 0.4030 +11141 22854 0.5700 +11141 22865 0.7530 +11141 22871 0.5120 +11141 23263 0.5420 +11141 23413 0.9840 +11141 26045 0.4010 +11141 26047 0.4140 +11141 26050 0.4110 +11141 26525 0.5100 +11141 27178 0.5270 +11141 50944 0.4220 +11141 54413 0.5680 +11141 57497 0.4520 +11141 57502 0.6230 +11141 57555 0.6020 +11141 57622 0.4370 +11141 64283 0.4570 +11141 78999 0.7670 +11141 79414 0.4730 +11141 80059 0.4600 +11141 80311 0.5370 +11141 84631 0.7270 +11141 84639 0.9570 +11141 84966 0.4030 +11141 90167 0.4280 +11141 94030 0.7150 +11141 114798 0.6850 +11141 139231 0.4230 +11141 139411 0.6120 +11141 139422 0.5150 +11141 145581 0.6330 +11141 159091 0.5010 +11141 170062 0.4700 +11141 170302 0.5990 +11141 340562 0.4230 +11142 165215 0.4280 +11143 11339 0.4160 +11143 22933 0.4580 +11143 23067 0.4140 +11143 23097 0.4130 +11143 23300 0.4150 +11143 23338 0.9730 +11143 23411 0.5280 +11143 23476 0.8100 +11143 23522 0.9550 +11143 23774 0.9990 +11143 26122 0.6370 +11143 27154 0.9980 +11143 27443 0.4520 +11143 29072 0.4180 +11143 29117 0.4500 +11143 51053 0.4220 +11143 51147 0.9990 +11143 51412 0.5130 +11143 51742 0.4200 +11143 51773 0.5100 +11143 54069 0.5240 +11143 54454 0.4080 +11143 54556 0.8600 +11143 54583 0.5170 +11143 54891 0.4440 +11143 55140 0.6090 +11143 55193 0.4760 +11143 55257 0.6230 +11143 55320 0.7230 +11143 55355 0.5360 +11143 55689 0.4680 +11143 55869 0.5150 +11143 55929 0.6640 +11143 57621 0.4010 +11143 60488 0.4660 +11143 64710 0.4250 +11143 64769 0.9990 +11143 79142 0.5120 +11143 79885 0.5240 +11143 79960 0.9980 +11143 80314 0.7510 +11143 81620 0.9700 +11143 83743 0.4350 +11143 83860 0.4740 +11143 83933 0.4770 +11143 84289 0.9990 +11143 84444 0.4880 +11143 92292 0.5940 +11143 94239 0.4340 +11143 114799 0.4330 +11143 157570 0.4310 +11143 339287 0.5590 +11143 387893 0.4900 +11143 440093 0.6420 +11143 440686 0.6420 +11143 653604 0.6480 +11143 728294 0.4540 +11144 11200 0.4140 +11144 23626 0.9250 +11144 25788 0.7240 +11144 25862 0.4280 +11144 27030 0.6940 +11144 27127 0.4960 +11144 27434 0.4980 +11144 29100 0.4120 +11144 29893 0.7860 +11144 50511 0.6470 +11144 51478 0.4330 +11144 54145 0.5050 +11144 55900 0.4170 +11144 56154 0.6550 +11144 56159 0.5920 +11144 56852 0.4180 +11144 56979 0.5230 +11144 57697 0.7700 +11144 63979 0.4280 +11144 79734 0.6910 +11144 80198 0.5330 +11144 84057 0.7350 +11144 84072 0.6880 +11144 84515 0.4870 +11144 84690 0.4640 +11144 84893 0.6130 +11144 85236 0.5050 +11144 93426 0.4900 +11144 128312 0.5160 +11144 144715 0.4850 +11144 147872 0.5870 +11144 150280 0.6370 +11144 157777 0.4330 +11144 158401 0.4840 +11144 164045 0.4270 +11144 254394 0.4510 +11144 254528 0.6820 +11144 255626 0.5050 +11144 256126 0.4310 +11144 342977 0.4330 +11144 346673 0.4960 +11144 402381 0.4040 +11144 642636 0.4540 +11145 11283 0.6640 +11145 11313 0.9210 +11145 23234 0.4200 +11145 23341 0.4200 +11145 23479 0.5330 +11145 23646 0.9030 +11145 23659 0.8710 +11145 23761 0.9030 +11145 25822 0.4200 +11145 25833 0.4200 +11145 26279 0.8160 +11145 29979 0.4630 +11145 30814 0.7820 +11145 50487 0.8300 +11145 51314 0.4310 +11145 51726 0.4200 +11145 54431 0.5660 +11145 54788 0.4200 +11145 54939 0.4290 +11145 54947 0.9170 +11145 55349 0.8190 +11145 55466 0.4480 +11145 55735 0.4200 +11145 56990 0.4200 +11145 56994 0.9190 +11145 64600 0.7330 +11145 79153 0.6860 +11145 79887 0.4510 +11145 79888 0.9190 +11145 79962 0.4220 +11145 79982 0.4210 +11145 80273 0.5880 +11145 80331 0.4200 +11145 81490 0.9000 +11145 81570 0.6790 +11145 81579 0.7800 +11145 84193 0.5700 +11145 84260 0.4410 +11145 84647 0.7300 +11145 85465 0.9020 +11145 85479 0.4200 +11145 96459 0.4200 +11145 113444 0.4330 +11145 113612 0.6650 +11145 120526 0.4330 +11145 122618 0.9070 +11145 123745 0.7550 +11145 129642 0.9090 +11145 133121 0.6630 +11145 134266 0.5880 +11145 136332 0.4400 +11145 140432 0.4200 +11145 150353 0.4200 +11145 151056 0.9220 +11145 154141 0.9080 +11145 165721 0.4200 +11145 171425 0.4210 +11145 202052 0.4200 +11145 254531 0.9160 +11145 255043 0.6550 +11145 255189 0.7170 +11145 283748 0.7590 +11145 284161 0.6670 +11145 284541 0.6640 +11145 285126 0.4200 +11145 285282 0.4210 +11145 347735 0.4070 +11145 374407 0.4200 +11145 375775 0.9170 +11145 387521 0.6610 +11145 387522 0.6760 +11145 391013 0.7330 +11145 548645 0.4200 +11145 552891 0.4200 +11145 100137049 0.7420 +11146 11275 0.7250 +11146 23008 0.7650 +11146 23038 0.5710 +11146 23053 0.7200 +11146 23113 0.7200 +11146 23291 0.6750 +11146 23510 0.5500 +11146 23532 0.7240 +11146 23588 0.7690 +11146 25853 0.7260 +11146 25879 0.7290 +11146 26094 0.7670 +11146 26133 0.7200 +11146 26249 0.7250 +11146 26259 0.9790 +11146 27252 0.7250 +11146 50717 0.7490 +11146 51004 0.5480 +11146 51067 0.4380 +11146 51117 0.5100 +11146 51122 0.4800 +11146 51185 0.8010 +11146 51514 0.7690 +11146 51666 0.7200 +11146 51805 0.5260 +11146 54442 0.5480 +11146 54461 0.7340 +11146 54800 0.7200 +11146 54876 0.7470 +11146 55070 0.8320 +11146 55294 0.4010 +11146 55527 0.7260 +11146 55626 0.7240 +11146 55827 0.7420 +11146 55958 0.7380 +11146 55975 0.7320 +11146 56929 0.8020 +11146 57542 0.7630 +11146 57563 0.7200 +11146 57643 0.5410 +11146 57688 0.6930 +11146 58484 0.9220 +11146 59349 0.7270 +11146 60487 0.4750 +11146 64326 0.7200 +11146 64410 0.7270 +11146 65249 0.5400 +11146 79016 0.7430 +11146 79269 0.7370 +11146 79699 0.7300 +11146 79734 0.7200 +11146 79934 0.4990 +11146 80067 0.7560 +11146 80344 0.7290 +11146 83892 0.7590 +11146 84078 0.7220 +11146 84274 0.5060 +11146 84541 0.7220 +11146 84861 0.7200 +11146 89890 0.7300 +11146 90293 0.7210 +11146 90379 0.7310 +11146 114548 0.9140 +11146 116138 0.7550 +11146 131377 0.7200 +11146 138009 0.5400 +11146 139170 0.5400 +11146 139425 0.5530 +11146 150684 0.7240 +11146 253980 0.7200 +11146 285429 0.5400 +11146 339745 0.7200 +11146 340578 0.5400 +11146 347442 0.5530 +11146 440561 0.7270 +11146 440590 0.5530 +11146 553115 0.7220 +11146 653619 0.7270 +11148 29126 0.5810 +11148 29851 0.4800 +11148 51744 0.4450 +11148 56244 0.5070 +11148 64115 0.6000 +11148 80380 0.6040 +11148 84868 0.5060 +11148 115653 0.8370 +11148 126259 0.9230 +11148 131450 0.4030 +11148 151888 0.5350 +11148 201633 0.4770 +11148 259197 0.6070 +11148 374383 0.6220 +11148 388364 0.4100 +11149 54867 0.4190 +11149 55171 0.4760 +11149 57719 0.4230 +11149 63891 0.6240 +11149 64208 0.4660 +11149 65009 0.5850 +11149 81577 0.4480 +11149 91862 0.4130 +11149 92359 0.4110 +11149 115557 0.7890 +11149 120224 0.4050 +11151 23406 0.5130 +11151 23475 0.4830 +11151 23603 0.5940 +11151 25886 0.6900 +11151 26160 0.6160 +11151 26470 0.5160 +11151 27128 0.4410 +11151 54440 0.5700 +11151 55081 0.6250 +11151 55312 0.4300 +11151 57175 0.8130 +11151 57560 0.7370 +11151 64083 0.5480 +11151 64098 0.4060 +11151 64421 0.5100 +11151 64581 0.4940 +11151 64926 0.4750 +11151 80232 0.5000 +11151 80817 0.4430 +11151 81704 0.5690 +11151 83706 0.6590 +11151 83719 0.5050 +11151 84061 0.5550 +11151 84940 0.6190 +11151 85477 0.4050 +11151 89846 0.7940 +11151 90410 0.6650 +11151 92747 0.4160 +11151 93643 0.4040 +11151 114836 0.4880 +11151 147138 0.6620 +11151 200895 0.4500 +11151 201294 0.4310 +11151 203068 0.4680 +11151 253980 0.5050 +11151 253982 0.5310 +11151 257106 0.6550 +11151 282809 0.6360 +11151 283897 0.4920 +11151 374403 0.4640 +11151 653361 0.4790 +11151 728378 0.5020 +11152 11230 0.4140 +11152 11337 0.7400 +11152 11345 0.5830 +11152 22863 0.6180 +11152 23096 0.5570 +11152 23130 0.9980 +11152 23192 0.4770 +11152 23230 0.4710 +11152 23400 0.6000 +11152 23710 0.6010 +11152 25851 0.4050 +11152 26100 0.4760 +11152 26468 0.6230 +11152 29101 0.4360 +11152 29982 0.4720 +11152 30849 0.6130 +11152 53349 0.6410 +11152 54606 0.5360 +11152 54676 0.4770 +11152 54828 0.4090 +11152 55054 0.6290 +11152 55062 0.6830 +11152 55102 0.9970 +11152 55593 0.4070 +11152 56850 0.4170 +11152 56957 0.8490 +11152 57231 0.5560 +11152 57724 0.8080 +11152 60673 0.6220 +11152 64422 0.6370 +11152 64743 0.5280 +11152 65018 0.4320 +11152 79065 0.6500 +11152 79152 0.6350 +11152 79885 0.6140 +11152 80025 0.7170 +11152 80067 0.7140 +11152 80208 0.4620 +11152 80347 0.7160 +11152 81631 0.4750 +11152 81671 0.5190 +11152 83734 0.5660 +11152 84557 0.4320 +11152 84938 0.4140 +11152 84971 0.4670 +11152 89849 0.4790 +11152 116442 0.4290 +11152 285973 0.5000 +11152 440738 0.4870 +11153 25766 0.8330 +11153 29072 0.4360 +11153 55660 0.6590 +11153 81631 0.4170 +11153 83638 0.4010 +11153 84557 0.8330 +11153 283459 0.4260 +11153 643246 0.4060 +11154 11160 0.5200 +11154 11276 0.7360 +11154 23111 0.4360 +11154 23189 0.4420 +11154 23204 0.4400 +11154 23259 0.5930 +11154 23431 0.9990 +11154 23503 0.5560 +11154 23623 0.4500 +11154 26580 0.4300 +11154 26873 0.4270 +11154 26985 0.6810 +11154 27314 0.4300 +11154 30851 0.4270 +11154 51308 0.5080 +11154 51324 0.6030 +11154 55317 0.9370 +11154 55745 0.9520 +11154 55929 0.4510 +11154 57165 0.4750 +11154 57180 0.4290 +11154 57685 0.4600 +11154 57704 0.6770 +11154 63941 0.4580 +11154 65055 0.5220 +11154 79065 0.5630 +11154 79152 0.5440 +11154 79723 0.6180 +11154 80055 0.4530 +11154 80207 0.4500 +11154 80208 0.5560 +11154 80821 0.6120 +11154 83852 0.4140 +11154 84251 0.7410 +11154 84447 0.4040 +11154 91056 0.9220 +11154 91574 0.5230 +11154 113612 0.5320 +11154 118813 0.4370 +11154 122616 0.5400 +11154 123606 0.5710 +11154 130340 0.5880 +11154 137492 0.6200 +11154 146705 0.8960 +11154 162387 0.5020 +11154 163087 0.5010 +11154 200205 0.4440 +11154 221421 0.4410 +11154 337867 0.4420 +11154 340075 0.4490 +11154 342132 0.4240 +11154 100131755 0.4830 +11155 23301 0.5510 +11155 23384 0.5510 +11155 23607 0.5400 +11155 26287 0.7210 +11155 27063 0.5520 +11155 27295 0.7140 +11155 29119 0.4500 +11155 29964 0.5520 +11155 51422 0.5110 +11155 51778 0.9250 +11155 53904 0.5580 +11155 55604 0.5400 +11155 55796 0.5100 +11155 56940 0.5400 +11155 57057 0.4130 +11155 57158 0.6130 +11155 57190 0.6710 +11155 58529 0.9140 +11155 64236 0.6090 +11155 79188 0.4740 +11155 79933 0.4540 +11155 83700 0.5400 +11155 83715 0.5670 +11155 84033 0.4350 +11155 84665 0.6480 +11155 84700 0.4410 +11155 85366 0.5030 +11155 91624 0.7070 +11155 91977 0.8760 +11155 92521 0.5510 +11155 125972 0.5160 +11155 147912 0.5320 +11155 163688 0.4070 +11155 219537 0.5920 +11155 254102 0.5540 +11155 282996 0.8180 +11155 342527 0.5620 +11156 26504 0.5600 +11156 26505 0.9450 +11156 51343 0.4240 +11156 58494 0.4030 +11156 91977 0.4490 +11156 387763 0.4350 +11156 415116 0.4010 +11157 11193 0.9930 +11157 22826 0.5310 +11157 22916 0.8810 +11157 22938 0.8260 +11157 22985 0.4410 +11157 23020 0.9990 +11157 23350 0.4140 +11157 23450 0.9920 +11157 23451 0.9900 +11157 23524 0.9080 +11157 23644 0.4790 +11157 23658 0.9990 +11157 24148 0.9970 +11157 25804 0.9990 +11157 26065 0.4920 +11157 26121 0.9990 +11157 26519 0.4010 +11157 26520 0.4430 +11157 27089 0.4320 +11157 27177 0.5670 +11157 27257 0.9990 +11157 27258 0.9990 +11157 27336 0.5060 +11157 29777 0.4430 +11157 51013 0.4710 +11157 51023 0.4210 +11157 51263 0.4060 +11157 51340 0.9590 +11157 51362 0.4290 +11157 51367 0.5880 +11157 51501 0.4300 +11157 51503 0.8170 +11157 51514 0.4030 +11157 51602 0.8160 +11157 51634 0.9580 +11157 51639 0.8510 +11157 51650 0.5500 +11157 51690 0.9990 +11157 51691 0.9990 +11157 51729 0.8790 +11157 51747 0.5950 +11157 54433 0.5610 +11157 54464 0.9840 +11157 54913 0.5420 +11157 54957 0.8640 +11157 55110 0.9340 +11157 55234 0.9800 +11157 55352 0.4280 +11157 55374 0.4760 +11157 55505 0.5930 +11157 55651 0.8720 +11157 55696 0.8050 +11157 55749 0.5290 +11157 55802 0.5450 +11157 56257 0.7280 +11157 56892 0.4780 +11157 57703 0.9080 +11157 57794 0.5170 +11157 57819 0.9990 +11157 59286 0.9130 +11157 64852 0.7270 +11157 79171 0.9190 +11157 79571 0.4300 +11157 79753 0.9900 +11157 80153 0.6420 +11157 83443 0.9910 +11157 83732 0.4140 +11157 83938 0.8090 +11157 84316 0.8580 +11157 84811 0.9500 +11157 84844 0.9940 +11157 84950 0.9810 +11157 84967 0.9050 +11157 88745 0.4930 +11157 90353 0.4940 +11157 92345 0.5530 +11157 118472 0.5940 +11157 119392 0.4450 +11157 124801 0.6820 +11157 126259 0.5950 +11157 134353 0.5850 +11157 138716 0.5550 +11157 147650 0.5950 +11157 149986 0.4050 +11157 153527 0.9960 +11157 164045 0.5070 +11157 164781 0.6030 +11157 167227 0.6950 +11157 196513 0.5700 +11157 197135 0.8420 +11157 219927 0.4230 +11157 219988 0.9930 +11157 220074 0.8080 +11157 284325 0.9160 +11157 345630 0.5480 +11157 348793 0.6060 +11158 11159 0.4540 +11158 22941 0.5270 +11158 23059 0.4640 +11158 23151 0.4250 +11158 23542 0.4490 +11158 25830 0.5120 +11158 50618 0.5360 +11158 51668 0.4280 +11158 51715 0.4070 +11158 55012 0.6100 +11158 55198 0.9010 +11158 55259 0.4690 +11158 55823 0.4830 +11158 64792 0.5950 +11158 79087 0.7830 +11158 79091 0.4130 +11158 79363 0.4270 +11158 79989 0.4920 +11158 80173 0.4720 +11158 84984 0.9280 +11158 85358 0.9510 +11158 91734 0.5410 +11158 92104 0.4120 +11158 149473 0.4840 +11158 158158 0.6280 +11158 200894 0.5140 +11158 415116 0.6200 +11159 22941 0.5270 +11159 23059 0.4150 +11159 25771 0.4740 +11159 25830 0.4470 +11159 25963 0.4150 +11159 50618 0.5360 +11159 51715 0.4130 +11159 54913 0.4200 +11159 55198 0.9000 +11159 55259 0.4700 +11159 55823 0.4810 +11159 64792 0.5780 +11159 79087 0.7560 +11159 79363 0.4040 +11159 79989 0.4290 +11159 80173 0.4160 +11159 84984 0.9480 +11159 85358 0.9450 +11159 91057 0.7080 +11159 92104 0.4020 +11159 146705 0.4200 +11159 149473 0.4690 +11159 160777 0.4340 +11159 200894 0.5020 +11159 284353 0.4290 +11159 415116 0.6080 +11160 11212 0.7730 +11160 11236 0.5020 +11160 11331 0.4810 +11160 22937 0.6210 +11160 23065 0.5130 +11160 23111 0.4760 +11160 23197 0.8900 +11160 23259 0.6910 +11160 23385 0.6950 +11160 23431 0.5510 +11160 23503 0.5070 +11160 26281 0.4130 +11160 26580 0.4950 +11160 27248 0.7890 +11160 27257 0.4560 +11160 27304 0.4160 +11160 29978 0.4780 +11160 51009 0.5480 +11160 51062 0.4240 +11160 51308 0.5450 +11160 51324 0.5800 +11160 51439 0.6020 +11160 51608 0.5130 +11160 51807 0.6330 +11160 54883 0.5250 +11160 54904 0.4110 +11160 55210 0.5310 +11160 55830 0.4200 +11160 57003 0.6160 +11160 57165 0.4210 +11160 57679 0.4060 +11160 57704 0.4670 +11160 63932 0.5230 +11160 64210 0.4010 +11160 65055 0.5320 +11160 79089 0.7730 +11160 79139 0.7120 +11160 79152 0.4750 +11160 79608 0.4990 +11160 80139 0.6390 +11160 80208 0.5220 +11160 80223 0.5390 +11160 80267 0.6220 +11160 80821 0.5070 +11160 81790 0.9410 +11160 83460 0.4120 +11160 83590 0.9190 +11160 83877 0.5280 +11160 84447 0.8570 +11160 84513 0.5820 +11160 91304 0.6140 +11160 91319 0.6100 +11160 91445 0.8930 +11160 91574 0.4900 +11160 113612 0.4880 +11160 118813 0.4710 +11160 123606 0.4860 +11160 137492 0.4850 +11160 161247 0.4600 +11160 200205 0.4010 +11160 337867 0.8090 +11160 387263 0.4460 +11160 399687 0.4050 +11160 400668 0.4430 +11160 440138 0.5300 +11161 26166 0.6150 +11161 27430 0.6840 +11161 29085 0.4370 +11161 50814 0.9120 +11161 51109 0.4140 +11161 51124 0.6260 +11161 51167 0.4380 +11161 51302 0.6510 +11161 51478 0.9880 +11161 56851 0.5180 +11161 56926 0.4160 +11161 57412 0.6150 +11161 80146 0.4710 +11161 80270 0.7220 +11161 80777 0.5420 +11161 93517 0.7220 +11161 137682 0.8200 +11161 200185 0.7040 +11161 286151 0.6150 +11161 286451 0.5200 +11161 340390 0.8200 +11161 347475 0.6510 +11162 11163 0.4520 +11162 11164 0.5270 +11162 11165 0.4940 +11162 24144 0.4020 +11162 25961 0.4240 +11162 27283 0.4370 +11162 55270 0.4950 +11162 56935 0.4030 +11162 79873 0.5510 +11162 83594 0.5470 +11162 84304 0.5910 +11162 134510 0.4560 +11162 166378 0.5870 +11162 200035 0.5720 +11162 256281 0.5110 +11162 283927 0.4720 +11162 388962 0.6740 +11162 399473 0.4440 +11163 11164 0.5770 +11163 11165 0.5250 +11163 25961 0.4510 +11163 53343 0.4790 +11163 54477 0.5030 +11163 54737 0.5010 +11163 55190 0.5120 +11163 55270 0.5870 +11163 55802 0.4890 +11163 55860 0.4910 +11163 79873 0.5180 +11163 83594 0.5480 +11163 84304 0.5790 +11163 170685 0.6620 +11163 196513 0.4800 +11163 200035 0.5800 +11163 256281 0.5700 +11163 283927 0.5000 +11164 11165 0.6040 +11164 25961 0.5480 +11164 26354 0.4850 +11164 29920 0.8360 +11164 51065 0.4440 +11164 51300 0.5050 +11164 51388 0.4360 +11164 53343 0.9790 +11164 54464 0.4220 +11164 54936 0.5900 +11164 55190 0.4060 +11164 55269 0.4210 +11164 55270 0.8360 +11164 55276 0.9120 +11164 55802 0.4860 +11164 56943 0.5290 +11164 56985 0.9020 +11164 79873 0.8110 +11164 83594 0.7530 +11164 84304 0.7240 +11164 87178 0.4280 +11164 128240 0.4140 +11164 131870 0.5810 +11164 167227 0.4230 +11164 196513 0.4820 +11164 200035 0.7100 +11164 221150 0.4920 +11164 221823 0.9070 +11164 254427 0.4260 +11164 254552 0.5610 +11164 256281 0.7740 +11164 283927 0.5580 +11164 390916 0.5230 +11165 23017 0.5200 +11165 23197 0.4820 +11165 23211 0.4240 +11165 23788 0.4940 +11165 25961 0.4460 +11165 25970 0.4460 +11165 26065 0.4260 +11165 51086 0.5760 +11165 51277 0.5880 +11165 51704 0.5280 +11165 53343 0.4140 +11165 54464 0.4810 +11165 54726 0.4640 +11165 54814 0.5940 +11165 54958 0.6250 +11165 54978 0.5360 +11165 55120 0.4160 +11165 55190 0.5200 +11165 55270 0.6800 +11165 55802 0.4830 +11165 56893 0.4070 +11165 57507 0.5830 +11165 58155 0.4770 +11165 64116 0.4620 +11165 64284 0.6850 +11165 64771 0.5510 +11165 79047 0.5590 +11165 79068 0.4640 +11165 79754 0.5750 +11165 79873 0.5260 +11165 80153 0.4610 +11165 83594 0.6970 +11165 84304 0.5910 +11165 89866 0.5770 +11165 91057 0.4160 +11165 127018 0.4180 +11165 129787 0.5070 +11165 131870 0.6700 +11165 132789 0.5900 +11165 134359 0.5800 +11165 149986 0.4160 +11165 158038 0.5070 +11165 167227 0.5260 +11165 170685 0.5850 +11165 196513 0.4830 +11165 200035 0.6560 +11165 219402 0.5910 +11165 219988 0.4050 +11165 221491 0.4340 +11165 253559 0.5400 +11165 256281 0.5550 +11165 257194 0.4300 +11165 283927 0.4640 +11165 390598 0.4180 +11165 390916 0.5480 +11165 100526835 0.5850 +11166 79923 0.6230 +11166 388585 0.4120 +11167 23181 0.8850 +11167 51284 0.4800 +11167 51311 0.6020 +11167 54106 0.4800 +11167 54757 0.4340 +11167 56975 0.5610 +11167 116064 0.5970 +11167 252995 0.4750 +11167 375790 0.4940 +11168 11198 0.4480 +11168 23028 0.5770 +11168 23067 0.4800 +11168 23081 0.4620 +11168 23126 0.9660 +11168 23476 0.8510 +11168 23534 0.7760 +11168 23636 0.4950 +11168 23645 0.4020 +11168 25822 0.4240 +11168 26040 0.6500 +11168 26986 0.6520 +11168 29072 0.5550 +11168 29915 0.4860 +11168 51755 0.5090 +11168 54558 0.4300 +11168 54904 0.7160 +11168 55536 0.9000 +11168 55617 0.4530 +11168 55677 0.5740 +11168 55870 0.4270 +11168 56259 0.4440 +11168 60489 0.4480 +11168 60680 0.4120 +11168 64324 0.7480 +11168 79142 0.6820 +11168 80335 0.4190 +11168 84444 0.6750 +11168 84661 0.6860 +11168 84708 0.4480 +11168 85236 0.8330 +11168 85363 0.4470 +11168 96459 0.4120 +11168 121504 0.8080 +11168 124245 0.4720 +11168 126961 0.9080 +11168 135295 0.4090 +11168 140836 0.6960 +11168 333932 0.9060 +11168 374407 0.4240 +11168 440093 0.6730 +11168 440686 0.6700 +11168 554313 0.8080 +11168 653604 0.9650 +11168 729857 0.6120 +11169 11198 0.7840 +11169 11200 0.6240 +11169 22974 0.4180 +11169 22976 0.4210 +11169 23047 0.5170 +11169 23063 0.5290 +11169 23137 0.5250 +11169 23165 0.4520 +11169 23244 0.7290 +11169 23264 0.5800 +11169 23331 0.5800 +11169 23367 0.4020 +11169 23383 0.4110 +11169 23397 0.6160 +11169 23476 0.4220 +11169 23594 0.5180 +11169 23649 0.7640 +11169 24137 0.4760 +11169 25788 0.6480 +11169 25836 0.6560 +11169 26271 0.4030 +11169 29028 0.4450 +11169 29066 0.5830 +11169 29089 0.4050 +11169 29127 0.4440 +11169 29980 0.5330 +11169 50484 0.4050 +11169 51203 0.4010 +11169 51514 0.9470 +11169 51659 0.9970 +11169 51750 0.5430 +11169 54107 0.4620 +11169 54443 0.4510 +11169 54801 0.4610 +11169 54821 0.5750 +11169 54892 0.6260 +11169 54921 0.8870 +11169 54962 0.9990 +11169 54970 0.5800 +11169 55010 0.5660 +11169 55055 0.5350 +11169 55063 0.4460 +11169 55143 0.4350 +11169 55157 0.4050 +11169 55215 0.5190 +11169 55247 0.4460 +11169 55355 0.6640 +11169 55388 0.9980 +11169 55635 0.4400 +11169 55706 0.4220 +11169 55723 0.4840 +11169 55789 0.4100 +11169 55839 0.4050 +11169 56655 0.4180 +11169 56852 0.6280 +11169 56992 0.6290 +11169 57082 0.4710 +11169 57405 0.4520 +11169 57650 0.4130 +11169 57697 0.5540 +11169 63895 0.7630 +11169 63922 0.9670 +11169 63967 0.9980 +11169 64151 0.6150 +11169 64785 0.9980 +11169 79075 0.8800 +11169 79682 0.4310 +11169 79723 0.4050 +11169 79733 0.4410 +11169 79892 0.4800 +11169 79915 0.9550 +11169 79991 0.4490 +11169 80010 0.5230 +11169 80119 0.6710 +11169 80169 0.5630 +11169 80174 0.4220 +11169 80198 0.4340 +11169 81620 0.8740 +11169 81624 0.8210 +11169 81930 0.6290 +11169 83540 0.5560 +11169 83990 0.7170 +11169 84057 0.4870 +11169 84250 0.5030 +11169 84296 0.9990 +11169 84315 0.7170 +11169 84515 0.8770 +11169 84893 0.5730 +11169 84950 0.6050 +11169 90381 0.7620 +11169 113130 0.5030 +11169 114799 0.7340 +11169 116028 0.4010 +11169 116211 0.8180 +11169 116447 0.6340 +11169 122769 0.9350 +11169 150468 0.4550 +11169 152098 0.4460 +11169 157313 0.4480 +11169 157570 0.7480 +11169 157777 0.8180 +11169 165055 0.4200 +11169 201299 0.4340 +11169 201973 0.4390 +11169 221150 0.5150 +11169 253714 0.5310 +11169 254394 0.9600 +11169 259266 0.5480 +11169 348654 0.4340 +11169 387103 0.4640 +11169 440093 0.4100 +11169 440686 0.4070 +11169 474343 0.4200 +11169 642636 0.5140 +11169 653604 0.4070 +11170 54851 0.4200 +11170 57512 0.4250 +11170 63943 0.6100 +11170 63974 0.4060 +11170 84525 0.6440 +11171 11218 0.9970 +11171 23196 0.4280 +11171 23248 0.4680 +11171 25929 0.9950 +11171 26097 0.6200 +11171 26099 0.7170 +11171 29110 0.6920 +11171 50628 0.9900 +11171 51071 0.7750 +11171 51202 0.4220 +11171 51808 0.4400 +11171 54960 0.9960 +11171 55236 0.4750 +11171 55323 0.8220 +11171 64081 0.9840 +11171 79760 0.9990 +11171 79833 0.9990 +11171 84967 0.5070 +11171 266743 0.4560 +11171 440026 0.4290 +11172 27344 0.4200 +11172 51186 0.7680 +11172 51289 0.6670 +11172 54994 0.5740 +11172 55530 0.4330 +11172 55848 0.4380 +11172 59350 0.6240 +11172 64795 0.6270 +11172 117579 0.7770 +11172 122042 0.5820 +11172 133491 0.4520 +11172 146779 0.5330 +11172 148870 0.4130 +11172 339403 0.6390 +11172 347148 0.4220 +11172 399814 0.4740 +11173 22895 0.4060 +11173 23275 0.4560 +11173 51530 0.5070 +11173 54891 0.4020 +11173 55266 0.4280 +11173 57608 0.5170 +11173 81792 0.6230 +11173 84439 0.5390 +11173 123688 0.4330 +11173 126147 0.4570 +11173 145173 0.5740 +11173 221692 0.7020 +11174 23275 0.5370 +11174 23398 0.4800 +11174 83468 0.4140 +11174 84467 0.4430 +11174 145173 0.4440 +11174 286256 0.4320 +11174 337985 0.4740 +11176 11177 0.4440 +11176 11201 0.5170 +11176 11335 0.6550 +11176 22893 0.7450 +11176 22933 0.7440 +11176 22985 0.4200 +11176 22992 0.4810 +11176 23309 0.5420 +11176 23378 0.7920 +11176 23411 0.8280 +11176 23476 0.4270 +11176 23512 0.4900 +11176 25942 0.6040 +11176 26013 0.5830 +11176 26058 0.4100 +11176 27443 0.5810 +11176 29028 0.4990 +11176 29115 0.5880 +11176 30851 0.5860 +11176 51388 0.5100 +11176 51547 0.5380 +11176 51742 0.5970 +11176 51755 0.4250 +11176 51773 0.6190 +11176 54107 0.7660 +11176 54108 0.6390 +11176 54145 0.5460 +11176 54454 0.4030 +11176 54821 0.4100 +11176 55209 0.5490 +11176 55766 0.5350 +11176 57332 0.4730 +11176 57634 0.6320 +11176 57649 0.4160 +11176 57673 0.4780 +11176 57680 0.4940 +11176 57696 0.4800 +11176 64426 0.6460 +11176 79595 0.5210 +11176 79685 0.5040 +11176 79833 0.4550 +11176 80205 0.4060 +11176 83852 0.4820 +11176 84148 0.4550 +11176 84181 0.4320 +11176 84271 0.5470 +11176 85236 0.5500 +11176 94239 0.5720 +11176 128312 0.5460 +11176 255626 0.5590 +11176 474382 0.5390 +11176 653604 0.6860 +11177 22992 0.4680 +11177 23476 0.4100 +11177 27443 0.9410 +11177 29117 0.4110 +11177 29994 0.4750 +11177 51773 0.9070 +11177 54107 0.9990 +11177 54108 0.9980 +11177 55636 0.5070 +11177 56655 0.7050 +11177 56916 0.5250 +11177 57520 0.4060 +11177 57551 0.4660 +11177 57634 0.4420 +11177 57680 0.5670 +11177 57708 0.4100 +11177 64151 0.4780 +11177 80205 0.5310 +11177 84181 0.6590 +11177 124773 0.4020 +11177 124944 0.9210 +11177 440093 0.5910 +11177 440686 0.5920 +11177 653604 0.5940 +11177 100529209 0.5750 +11178 22809 0.5800 +11178 23762 0.4040 +11178 25830 0.4310 +11178 26037 0.7870 +11178 51741 0.4310 +11178 51761 0.4370 +11178 57402 0.6500 +11178 57568 0.5890 +11178 84445 0.8380 +11178 85358 0.5970 +11178 113278 0.4350 +11179 23595 0.4100 +11179 25880 0.5260 +11179 26001 0.4180 +11179 29089 0.4470 +11179 55954 0.4490 +11179 56943 0.4320 +11179 63891 0.4200 +11179 63894 0.4160 +11179 65117 0.4910 +11179 83943 0.4550 +11179 84306 0.5160 +11179 153527 0.4430 +11179 415117 0.4690 +11180 22907 0.4230 +11180 23160 0.4410 +11180 23223 0.5220 +11180 23265 0.6400 +11180 23365 0.4710 +11180 23560 0.4330 +11180 24140 0.9950 +11180 25842 0.6750 +11180 25879 0.4090 +11180 25885 0.4510 +11180 25934 0.4020 +11180 26155 0.4600 +11180 26156 0.4060 +11180 26574 0.4300 +11180 26608 0.5070 +11180 27127 0.6150 +11180 27289 0.5690 +11180 27352 0.4060 +11180 29960 0.7780 +11180 51096 0.5850 +11180 51167 0.5150 +11180 51320 0.5100 +11180 51605 0.4580 +11180 51666 0.4370 +11180 54475 0.4490 +11180 54499 0.4290 +11180 54809 0.6920 +11180 54888 0.4880 +11180 55006 0.4120 +11180 55140 0.4220 +11180 55152 0.8120 +11180 55226 0.4490 +11180 55335 0.4020 +11180 55425 0.5410 +11180 55621 0.4290 +11180 55632 0.6260 +11180 55723 0.6730 +11180 57799 0.4200 +11180 58480 0.5610 +11180 60487 0.5880 +11180 63892 0.6490 +11180 64118 0.4720 +11180 64779 0.6850 +11180 64925 0.4260 +11180 65083 0.5880 +11180 80119 0.5660 +11180 81627 0.4060 +11180 84135 0.8470 +11180 84172 0.5390 +11180 84193 0.4110 +11180 84618 0.5160 +11180 92715 0.5340 +11180 93034 0.5160 +11180 93436 0.5340 +11180 113444 0.6860 +11180 115708 0.4280 +11180 117246 0.7510 +11180 142684 0.4030 +11180 152992 0.5530 +11180 161424 0.4150 +11180 171177 0.5720 +11180 221078 0.4130 +11180 266743 0.6830 +11180 282808 0.4030 +11180 284273 0.4800 +11180 100526794 0.5160 +11181 23187 0.5820 +11181 28960 0.4120 +11181 29988 0.4670 +11181 51056 0.5020 +11181 55226 0.6930 +11181 55276 0.4040 +11181 80162 0.6420 +11181 80201 0.5920 +11181 80764 0.4060 +11181 81570 0.5040 +11181 83756 0.4100 +11181 84076 0.4680 +11181 93432 0.7420 +11181 130589 0.8170 +11181 152815 0.4060 +11181 286451 0.6980 +11182 26275 0.4060 +11182 26589 0.4100 +11182 27294 0.4660 +11182 29088 0.4160 +11182 51021 0.4190 +11182 51073 0.4050 +11182 51081 0.4070 +11182 51264 0.4030 +11182 51296 0.4080 +11182 54438 0.4210 +11182 55251 0.4440 +11182 55974 0.4520 +11182 56606 0.4010 +11182 56996 0.4070 +11182 59336 0.4090 +11182 63875 0.4040 +11182 63931 0.4030 +11182 64960 0.4060 +11182 64979 0.4170 +11182 66035 0.5250 +11182 81577 0.4360 +11182 84545 0.4110 +11182 144195 0.4520 +11182 154091 0.4170 +11182 155184 0.4720 +11182 387775 0.4450 +11183 23376 0.4150 +11183 79101 0.4260 +11183 84285 0.4200 +11183 128611 0.4100 +11183 146822 0.6200 +11183 282809 0.4860 +11184 23542 0.9040 +11184 26259 0.5420 +11184 26960 0.5050 +11184 27040 0.5240 +11184 27071 0.5460 +11184 28988 0.9570 +11184 29760 0.5460 +11184 53347 0.6550 +11184 55233 0.4090 +11184 60485 0.4720 +11184 64926 0.4040 +11184 79037 0.4240 +11184 80342 0.4800 +11184 84433 0.5780 +11184 374403 0.5400 +11185 84182 0.5770 +11185 169355 0.9420 +11186 11197 0.5730 +11186 11228 0.5040 +11186 22800 0.9100 +11186 22808 0.9090 +11186 23012 0.4160 +11186 23028 0.4800 +11186 23173 0.4710 +11186 23368 0.5170 +11186 23604 0.5100 +11186 23671 0.5120 +11186 23705 0.4330 +11186 25828 0.4730 +11186 26524 0.6860 +11186 27232 0.4760 +11186 51364 0.5590 +11186 55193 0.4600 +11186 55201 0.9890 +11186 55743 0.6050 +11186 56100 0.4470 +11186 57045 0.5920 +11186 57551 0.4490 +11186 57575 0.4160 +11186 60485 0.9670 +11186 64112 0.9120 +11186 81609 0.6030 +11186 83593 0.9960 +11186 85450 0.4560 +11186 92304 0.5700 +11186 92597 0.5230 +11186 140628 0.5060 +11186 166824 0.4390 +11186 170685 0.4850 +11186 644943 0.6600 +11186 100532731 0.4790 +11187 22849 0.5400 +11187 23624 0.4010 +11187 25793 0.4130 +11187 26065 0.5510 +11187 26986 0.8040 +11187 27067 0.5460 +11187 29119 0.6440 +11187 54845 0.4230 +11187 56339 0.4240 +11187 57111 0.4370 +11187 57402 0.4920 +11187 59307 0.4130 +11187 64065 0.7970 +11187 64506 0.5400 +11187 64787 0.4110 +11187 80004 0.4940 +11187 80162 0.5200 +11187 80315 0.5400 +11187 83481 0.4840 +11187 84518 0.4390 +11187 115399 0.4520 +11187 126638 0.5170 +11187 132864 0.7200 +11187 144568 0.5350 +11187 147409 0.7380 +11187 151246 0.4210 +11187 338440 0.6230 +11188 23011 0.5270 +11188 23523 0.6430 +11188 25894 0.4050 +11188 26030 0.4080 +11188 27348 0.4980 +11188 29855 0.5680 +11188 51460 0.4190 +11188 51552 0.4520 +11188 55636 0.5020 +11188 55811 0.5310 +11188 58492 0.6000 +11188 59272 0.4160 +11188 81858 0.6650 +11188 83660 0.4700 +11188 123264 0.4750 +11188 154043 0.5860 +11188 200931 0.4330 +11188 257144 0.6680 +11188 283571 0.4110 +11189 51412 0.4910 +11189 54715 0.5060 +11189 55796 0.5890 +11189 60680 0.5140 +11189 83482 0.4870 +11189 84530 0.4510 +11189 146713 0.4210 +11190 22897 0.5300 +11190 22981 0.5600 +11190 22994 0.4210 +11190 22995 0.6000 +11190 23235 0.4270 +11190 23354 0.6950 +11190 25861 0.5890 +11190 26090 0.4020 +11190 27332 0.5450 +11190 51199 0.9390 +11190 51614 0.4310 +11190 54585 0.6920 +11190 54801 0.5130 +11190 54875 0.8820 +11190 54930 0.5010 +11190 55125 0.5400 +11190 55142 0.6030 +11190 55245 0.4780 +11190 55559 0.5040 +11190 55755 0.6060 +11190 55835 0.4240 +11190 56850 0.4230 +11190 64072 0.4620 +11190 65217 0.4800 +11190 79441 0.5180 +11190 79598 0.4240 +11190 79858 0.6470 +11190 79866 0.5350 +11190 79955 0.6260 +11190 80152 0.4040 +11190 80184 0.6130 +11190 80196 0.4550 +11190 80351 0.4070 +11190 83746 0.4410 +11190 83938 0.4070 +11190 84059 0.4950 +11190 84131 0.7260 +11190 85378 0.4060 +11190 85459 0.4260 +11190 91754 0.4040 +11190 93323 0.5090 +11190 115106 0.5730 +11190 116840 0.4280 +11190 117177 0.5120 +11190 124590 0.5960 +11190 130560 0.4780 +11190 153241 0.4120 +11190 163786 0.6090 +11190 201255 0.8340 +11190 283149 0.4590 +11190 388595 0.4760 +11190 388939 0.6070 +11190 728642 0.5480 +11190 101060200 0.4110 +11193 22938 0.6280 +11193 23002 0.5460 +11193 23020 0.9980 +11193 23078 0.5100 +11193 23360 0.6930 +11193 23450 0.9850 +11193 23451 0.9880 +11193 23500 0.6010 +11193 23517 0.8220 +11193 23524 0.9000 +11193 23658 0.9800 +11193 23759 0.4560 +11193 24148 0.9870 +11193 25766 0.4220 +11193 25804 0.9890 +11193 26121 0.9970 +11193 27238 0.4920 +11193 27258 0.9800 +11193 27339 0.5280 +11193 29109 0.5150 +11193 51319 0.4170 +11193 51340 0.4920 +11193 51362 0.8560 +11193 51503 0.5400 +11193 51569 0.4770 +11193 51593 0.8000 +11193 51634 0.9310 +11193 51639 0.8030 +11193 51645 0.5240 +11193 51690 0.9870 +11193 51691 0.9820 +11193 51729 0.9350 +11193 51759 0.4130 +11193 53938 0.4310 +11193 55082 0.4420 +11193 55110 0.9060 +11193 55234 0.9910 +11193 55660 0.6200 +11193 55696 0.6170 +11193 56259 0.4110 +11193 56949 0.4730 +11193 57461 0.5220 +11193 57703 0.9260 +11193 57819 0.9790 +11193 58517 0.4740 +11193 59286 0.9680 +11193 79171 0.6990 +11193 79753 0.9070 +11193 81624 0.5440 +11193 83443 0.9790 +11193 84081 0.4190 +11193 84811 0.9130 +11193 84844 0.9790 +11193 84950 0.9940 +11193 85462 0.4680 +11193 91010 0.6050 +11193 91603 0.4880 +11193 114793 0.5810 +11193 151903 0.4050 +11193 153527 0.9960 +11193 342184 0.8310 +11193 392862 0.5470 +11194 23456 0.5960 +11194 26164 0.4550 +11194 27037 0.4740 +11194 28982 0.4570 +11194 30061 0.4090 +11194 51312 0.7740 +11194 55324 0.5450 +11194 55738 0.4700 +11194 57505 0.4440 +11194 64240 0.8000 +11194 64241 0.7900 +11194 79714 0.9950 +11194 81894 0.8280 +11194 84315 0.4780 +11194 90550 0.4350 +11194 114483834 0.5800 +11196 11227 0.4340 +11196 22818 0.4550 +11196 22820 0.4120 +11196 22872 0.9590 +11196 22894 0.4850 +11196 22930 0.5340 +11196 22954 0.4610 +11196 23197 0.4470 +11196 23256 0.7920 +11196 23259 0.5120 +11196 23380 0.4520 +11196 23534 0.4610 +11196 25917 0.5380 +11196 26009 0.4820 +11196 26190 0.4360 +11196 26984 0.6610 +11196 29101 0.4710 +11196 51128 0.6970 +11196 51741 0.7330 +11196 55014 0.6190 +11196 55170 0.4410 +11196 55239 0.4020 +11196 55322 0.4560 +11196 55676 0.6330 +11196 55770 0.5140 +11196 55844 0.4400 +11196 57148 0.4460 +11196 59349 0.5050 +11196 60560 0.4590 +11196 79577 0.4470 +11196 79748 0.4990 +11196 79759 0.5280 +11196 81562 0.5420 +11196 84461 0.4100 +11196 89866 0.4990 +11196 90411 0.6210 +11196 133619 0.5720 +11196 134353 0.4330 +11196 149111 0.5050 +11196 221294 0.4690 +11196 254263 0.5050 +11196 284297 0.4200 +11196 375056 0.5490 +11196 404734 0.5050 +11197 11211 0.5260 +11197 22943 0.8820 +11197 23592 0.8820 +11197 25928 0.4510 +11197 27121 0.7900 +11197 27122 0.7430 +11197 27123 0.8020 +11197 50964 0.7550 +11197 51176 0.6050 +11197 51384 0.9480 +11197 54361 0.9710 +11197 59352 0.4310 +11197 60529 0.4150 +11197 80326 0.9450 +11197 80725 0.4620 +11197 81029 0.9420 +11197 83999 0.6060 +11197 85407 0.4610 +11197 89780 0.9890 +11197 90993 0.4240 +11197 129293 0.4070 +11197 147111 0.5450 +11197 147495 0.5250 +11197 168002 0.4330 +11198 11201 0.4350 +11198 22916 0.8330 +11198 22936 0.5660 +11198 23064 0.4260 +11198 23067 0.4310 +11198 23135 0.4720 +11198 23163 0.5510 +11198 23168 0.9970 +11198 23299 0.5190 +11198 23350 0.6470 +11198 23379 0.5470 +11198 23476 0.7230 +11198 23560 0.4030 +11198 25763 0.4550 +11198 25842 0.6580 +11198 25920 0.5600 +11198 26043 0.5470 +11198 26088 0.5500 +11198 26227 0.4440 +11198 26610 0.5650 +11198 26747 0.5710 +11198 26986 0.4480 +11198 27125 0.6260 +11198 28992 0.4670 +11198 29028 0.6800 +11198 29072 0.7540 +11198 29101 0.4460 +11198 29113 0.8980 +11198 29889 0.6740 +11198 29935 0.6510 +11198 30834 0.5080 +11198 50809 0.4180 +11198 51092 0.5220 +11198 51224 0.5930 +11198 51366 0.6570 +11198 51497 0.5720 +11198 51550 0.8770 +11198 51592 0.6330 +11198 51728 0.5040 +11198 51755 0.7330 +11198 51773 0.5860 +11198 54145 0.4810 +11198 54454 0.6450 +11198 54623 0.9940 +11198 54847 0.5220 +11198 54962 0.4990 +11198 55023 0.5920 +11198 55125 0.5490 +11198 55133 0.7880 +11198 55209 0.4330 +11198 55215 0.5480 +11198 55250 0.6090 +11198 55341 0.4280 +11198 55388 0.6680 +11198 55506 0.6050 +11198 55636 0.6310 +11198 55660 0.5890 +11198 55677 0.9480 +11198 55703 0.7030 +11198 55723 0.6110 +11198 55766 0.4870 +11198 55815 0.4950 +11198 55840 0.5400 +11198 56254 0.8460 +11198 56478 0.4990 +11198 56916 0.6410 +11198 57121 0.5220 +11198 57187 0.5030 +11198 57492 0.4090 +11198 57634 0.4020 +11198 57680 0.8140 +11198 58496 0.5690 +11198 59338 0.4290 +11198 59339 0.4370 +11198 64083 0.4410 +11198 64425 0.4110 +11198 79577 0.9950 +11198 79664 0.5710 +11198 79829 0.4050 +11198 79968 0.4510 +11198 80205 0.5420 +11198 80237 0.5680 +11198 80349 0.7290 +11198 80820 0.7820 +11198 81611 0.6480 +11198 81620 0.4800 +11198 81847 0.7850 +11198 83740 0.4550 +11198 84128 0.4720 +11198 84172 0.7480 +11198 84181 0.5340 +11198 84248 0.4710 +11198 84296 0.6430 +11198 84337 0.9170 +11198 84524 0.5560 +11198 85235 0.4550 +11198 85236 0.4770 +11198 85403 0.5400 +11198 85456 0.8930 +11198 91754 0.6180 +11198 92421 0.4200 +11198 92815 0.5980 +11198 94239 0.6670 +11198 113878 0.4240 +11198 116447 0.4860 +11198 121504 0.9480 +11198 123169 0.9970 +11198 124245 0.5120 +11198 124773 0.5210 +11198 126961 0.5390 +11198 127428 0.5220 +11198 128312 0.5340 +11198 132430 0.4020 +11198 140609 0.4890 +11198 140886 0.4050 +11198 144321 0.4320 +11198 149483 0.5220 +11198 158983 0.5470 +11198 164832 0.5210 +11198 170082 0.5860 +11198 200558 0.8160 +11198 220988 0.4810 +11198 221120 0.4830 +11198 221613 0.4550 +11198 246721 0.6210 +11198 253714 0.6890 +11198 255626 0.7830 +11198 283106 0.4900 +11198 286436 0.4810 +11198 317772 0.5100 +11198 333932 0.4800 +11198 340096 0.4800 +11198 340602 0.5220 +11198 375748 0.4440 +11198 387893 0.4510 +11198 391769 0.6930 +11198 404672 0.6420 +11198 440093 0.8690 +11198 440686 0.8690 +11198 440689 0.5020 +11198 448834 0.5220 +11198 474343 0.4570 +11198 474381 0.5280 +11198 474382 0.5030 +11198 548644 0.6240 +11198 554313 0.9480 +11198 653604 0.8720 +11198 723790 0.4550 +11198 100134938 0.4950 +11198 100272147 0.4550 +11198 100507650 0.4460 +11198 107983993 0.4950 +11198 114483833 0.4830 +11198 115482686 0.4550 +11198 122455342 0.5220 +11199 64770 0.5440 +11199 80153 0.8190 +11199 83998 0.4070 +11199 340547 0.5430 +11199 348654 0.4140 +11200 22933 0.4350 +11200 22976 0.4700 +11200 23049 0.4980 +11200 23137 0.7400 +11200 23300 0.8460 +11200 23331 0.4840 +11200 23353 0.4780 +11200 23411 0.7840 +11200 23476 0.4120 +11200 23626 0.6700 +11200 25788 0.5940 +11200 25842 0.9100 +11200 25898 0.5080 +11200 26277 0.4220 +11200 26574 0.4030 +11200 27030 0.4810 +11200 27113 0.5580 +11200 27324 0.4820 +11200 29086 0.6310 +11200 50484 0.6220 +11200 50485 0.4200 +11200 51109 0.6160 +11200 51366 0.6900 +11200 51368 0.4200 +11200 51455 0.5020 +11200 51514 0.4800 +11200 51547 0.4510 +11200 51548 0.5490 +11200 51588 0.6290 +11200 51659 0.7570 +11200 51720 0.7210 +11200 51750 0.4590 +11200 54145 0.6440 +11200 54205 0.4370 +11200 54465 0.4060 +11200 54962 0.7440 +11200 55063 0.5200 +11200 55120 0.5620 +11200 55215 0.5970 +11200 55255 0.4090 +11200 55388 0.6880 +11200 55536 0.4990 +11200 55671 0.4300 +11200 55723 0.9100 +11200 56254 0.5190 +11200 56852 0.6620 +11200 57082 0.4730 +11200 57223 0.6530 +11200 57379 0.4300 +11200 57634 0.4730 +11200 57646 0.8520 +11200 57697 0.8140 +11200 57805 0.5520 +11200 60561 0.4660 +11200 63895 0.8460 +11200 63922 0.5690 +11200 63967 0.7560 +11200 64151 0.4580 +11200 64421 0.5930 +11200 65061 0.4330 +11200 79184 0.6310 +11200 79648 0.4040 +11200 79677 0.7660 +11200 79728 0.9210 +11200 79840 0.5050 +11200 79915 0.6790 +11200 79935 0.4070 +11200 79991 0.6530 +11200 80010 0.5050 +11200 80119 0.6040 +11200 80174 0.7110 +11200 80198 0.9060 +11200 80895 0.7210 +11200 81620 0.6940 +11200 81669 0.5740 +11200 83987 0.4200 +11200 83990 0.6750 +11200 84126 0.8240 +11200 84142 0.7900 +11200 84260 0.5730 +11200 84296 0.4450 +11200 84444 0.4290 +11200 84464 0.5210 +11200 84893 0.4120 +11200 84930 0.6430 +11200 85236 0.6420 +11200 85417 0.4890 +11200 90381 0.7530 +11200 91442 0.4260 +11200 91875 0.7960 +11200 94239 0.4210 +11200 115761 0.4030 +11200 126520 0.5230 +11200 128312 0.6440 +11200 137902 0.5020 +11200 139420 0.4130 +11200 144715 0.5100 +11200 146956 0.4940 +11200 150275 0.4120 +11200 152098 0.5200 +11200 165918 0.7510 +11200 222546 0.5080 +11200 254394 0.6120 +11200 255626 0.6430 +11200 286053 0.4630 +11200 348654 0.6050 +11200 440093 0.6590 +11200 440686 0.6590 +11200 494551 0.8380 +11200 548593 0.4530 +11200 653604 0.6580 +11200 728642 0.5480 +11200 731220 0.5080 +11200 100533467 0.5510 +11200 102723407 0.4460 +11201 22933 0.4860 +11201 23137 0.4530 +11201 23246 0.4730 +11201 23409 0.5020 +11201 23411 0.4290 +11201 23705 0.4390 +11201 25885 0.8090 +11201 26578 0.5330 +11201 27343 0.7690 +11201 27434 0.8790 +11201 30834 0.8100 +11201 51082 0.8220 +11201 51184 0.4090 +11201 51426 0.7690 +11201 51455 0.9870 +11201 51547 0.9550 +11201 51548 0.5020 +11201 51602 0.5310 +11201 51728 0.8310 +11201 54606 0.4990 +11201 54623 0.4790 +11201 54700 0.9970 +11201 55135 0.4250 +11201 55341 0.4030 +11201 55775 0.4660 +11201 55814 0.8250 +11201 56852 0.5230 +11201 56916 0.4520 +11201 57092 0.5040 +11201 57697 0.4420 +11201 64425 0.8170 +11201 79101 0.4920 +11201 79840 0.4040 +11201 79892 0.4970 +11201 81611 0.4150 +11201 84126 0.4080 +11201 84172 0.9320 +11201 84232 0.8450 +11201 113510 0.4650 +11201 114799 0.4470 +11201 117579 0.4390 +11201 124739 0.5560 +11201 132949 0.4390 +11201 201973 0.4480 +11201 221830 0.6580 +11201 284119 0.7030 +11201 353497 0.5320 +11201 387521 0.4040 +11201 387522 0.4040 +11201 440093 0.5050 +11201 440686 0.5050 +11201 653604 0.5050 +11202 25818 0.9470 +11202 26085 0.4020 +11202 29988 0.4290 +11202 51206 0.4060 +11202 54806 0.4100 +11202 83657 0.4100 +11202 93099 0.4240 +11202 93650 0.4380 +11202 116442 0.4240 +11202 120787 0.4050 +11202 147409 0.4850 +11202 339403 0.4620 +11202 390199 0.4250 +11202 392392 0.4240 +11202 404203 0.4380 +11202 440387 0.4580 +11202 643394 0.9270 +11211 22943 0.4790 +11211 23401 0.5480 +11211 25805 0.9180 +11211 25817 0.5200 +11211 27121 0.4190 +11211 27122 0.4830 +11211 27123 0.4110 +11211 29923 0.7790 +11211 51176 0.4750 +11211 51384 0.8470 +11211 54361 0.8590 +11211 54894 0.9250 +11211 55027 0.4510 +11211 56129 0.4040 +11211 57216 0.4250 +11211 64748 0.4220 +11211 79068 0.4020 +11211 80326 0.8830 +11211 81029 0.8250 +11211 81839 0.4360 +11211 83999 0.4360 +11211 84133 0.9220 +11211 84283 0.4110 +11211 85407 0.5180 +11211 89780 0.9040 +11212 11224 0.5940 +11212 23259 0.6210 +11212 25960 0.6150 +11212 26227 0.4150 +11212 27257 0.5990 +11212 51117 0.5780 +11212 51121 0.4040 +11212 51166 0.6990 +11212 51250 0.4850 +11212 51268 0.6040 +11212 51477 0.5170 +11212 54904 0.4800 +11212 55163 0.8170 +11212 55246 0.4330 +11212 57026 0.4740 +11212 63898 0.4090 +11212 64979 0.5760 +11212 65263 0.4440 +11212 79716 0.4090 +11212 80139 0.6050 +11212 80223 0.6300 +11212 83877 0.5030 +11212 83937 0.4540 +11212 84513 0.5340 +11212 130355 0.5550 +11212 137362 0.4930 +11212 137994 0.4700 +11212 144811 0.8290 +11212 196074 0.4040 +11212 730249 0.5800 +11213 23098 0.4350 +11213 23118 0.4470 +11213 23643 0.5340 +11213 26253 0.4260 +11213 29110 0.5110 +11213 51135 0.9730 +11213 51284 0.6760 +11213 51311 0.7400 +11213 54106 0.6880 +11213 54210 0.4160 +11213 54472 0.8220 +11213 59307 0.8530 +11213 64127 0.6520 +11213 79931 0.4130 +11213 94103 0.5220 +11213 114548 0.4810 +11213 114609 0.5890 +11213 148022 0.4130 +11213 353376 0.6410 +11213 387129 0.5610 +11213 100302736 0.6100 +11214 11215 0.6530 +11214 11216 0.6620 +11214 23001 0.4020 +11214 23365 0.5850 +11214 23370 0.6440 +11214 23683 0.7770 +11214 25865 0.7750 +11214 26499 0.5880 +11214 29903 0.5360 +11214 54928 0.4060 +11214 55069 0.4060 +11214 57674 0.4560 +11214 79718 0.4900 +11214 84281 0.4110 +11214 84627 0.4440 +11214 84708 0.6460 +11214 89970 0.4080 +11214 158471 0.4610 +11214 246175 0.4130 +11214 445815 0.5200 +11215 11216 0.6600 +11215 26960 0.4980 +11215 50805 0.7290 +11215 54467 0.6550 +11215 54763 0.4120 +11215 54813 0.4380 +11215 79191 0.7310 +11215 79192 0.6640 +11215 80267 0.4030 +11215 80309 0.4100 +11215 84281 0.5600 +11215 128239 0.5450 +11215 144809 0.4240 +11215 152273 0.4760 +11215 153572 0.6970 +11215 389136 0.5550 +11215 445815 0.5010 +11216 23355 0.5210 +11216 23431 0.4580 +11216 23683 0.4490 +11216 26575 0.6710 +11216 26960 0.4890 +11216 26993 0.4210 +11216 51441 0.5520 +11216 53916 0.4280 +11216 54475 0.6780 +11216 54521 0.4170 +11216 54916 0.4720 +11216 55610 0.4180 +11216 57148 0.4170 +11216 64407 0.6600 +11216 80309 0.5940 +11216 81545 0.5150 +11216 84281 0.6170 +11216 85397 0.6580 +11216 431704 0.6730 +11216 445815 0.5970 +11218 11222 0.4250 +11218 11325 0.6080 +11218 22916 0.7370 +11218 23112 0.6380 +11218 23135 0.4820 +11218 23165 0.5050 +11218 23219 0.4410 +11218 23225 0.4300 +11218 23246 0.4220 +11218 23279 0.5070 +11218 23283 0.4290 +11218 23405 0.8610 +11218 23481 0.4350 +11218 23511 0.4200 +11218 23560 0.6140 +11218 23636 0.4700 +11218 25929 0.9990 +11218 26058 0.4070 +11218 26065 0.4770 +11218 26523 0.9310 +11218 26747 0.5500 +11218 26986 0.4220 +11218 27161 0.9990 +11218 27257 0.6030 +11218 27316 0.4260 +11218 27327 0.5890 +11218 29102 0.5820 +11218 50628 0.9990 +11218 51147 0.4980 +11218 51340 0.4670 +11218 51602 0.5410 +11218 51808 0.8990 +11218 53371 0.5130 +11218 54433 0.5890 +11218 54439 0.4290 +11218 54464 0.4520 +11218 54487 0.5390 +11218 54555 0.5340 +11218 54960 0.9960 +11218 55135 0.4440 +11218 55181 0.5010 +11218 55299 0.4120 +11218 55706 0.4500 +11218 55746 0.5600 +11218 56893 0.4510 +11218 57122 0.4990 +11218 57136 0.4900 +11218 57510 0.5990 +11218 57721 0.4370 +11218 57819 0.4980 +11218 64318 0.5830 +11218 79023 0.4570 +11218 79084 0.5780 +11218 79598 0.4290 +11218 79753 0.5220 +11218 79760 0.9990 +11218 79833 0.9990 +11218 79872 0.5140 +11218 79902 0.4760 +11218 80153 0.5110 +11218 81929 0.4960 +11218 83932 0.6560 +11218 84135 0.4190 +11218 84289 0.4920 +11218 84549 0.4290 +11218 84967 0.6790 +11218 87178 0.5000 +11218 96764 0.7190 +11218 113802 0.4020 +11218 114034 0.5590 +11218 129401 0.4600 +11218 134353 0.8160 +11218 149986 0.4560 +11218 151987 0.8070 +11218 153443 0.4690 +11218 192669 0.6760 +11218 192670 0.6300 +11218 197135 0.4360 +11218 219988 0.4510 +11218 284131 0.4240 +11218 348995 0.4910 +11218 100101267 0.4680 +11219 51806 0.4600 +11219 55175 0.4200 +11219 55559 0.5120 +11219 57136 0.4020 +11219 87178 0.4020 +11219 255967 0.5740 +11219 338324 0.4150 +11219 653145 0.4440 +11221 23158 0.4110 +11221 51528 0.8700 +11221 54935 0.4400 +11221 80824 0.4150 +11221 84959 0.4200 +11221 139716 0.4540 +11221 266743 0.4520 +11222 11224 0.9750 +11222 11232 0.4300 +11222 11269 0.4440 +11222 11325 0.4120 +11222 11331 0.4050 +11222 22921 0.4240 +11222 22927 0.6250 +11222 22984 0.9640 +11222 23032 0.4300 +11222 23076 0.5720 +11222 23107 0.9350 +11222 23135 0.4540 +11222 23148 0.4350 +11222 23173 0.7480 +11222 23193 0.5340 +11222 23204 0.7550 +11222 23212 0.5150 +11222 23234 0.4690 +11222 23246 0.6700 +11222 23252 0.6790 +11222 23341 0.4380 +11222 23405 0.6080 +11222 23423 0.5620 +11222 23481 0.8120 +11222 23521 0.8550 +11222 23560 0.8480 +11222 23640 0.7740 +11222 23732 0.8790 +11222 24140 0.4780 +11222 25822 0.4380 +11222 25851 0.4240 +11222 25873 0.9040 +11222 25885 0.7950 +11222 25959 0.4100 +11222 26013 0.8130 +11222 26024 0.4290 +11222 26135 0.7040 +11222 26155 0.7230 +11222 26156 0.5960 +11222 26164 0.9030 +11222 26251 0.4760 +11222 26271 0.5240 +11222 26275 0.9430 +11222 26289 0.4720 +11222 26354 0.5640 +11222 26589 0.9970 +11222 26995 0.5650 +11222 27012 0.4760 +11222 27079 0.6190 +11222 27430 0.4410 +11222 28957 0.8750 +11222 28960 0.4530 +11222 28973 0.8730 +11222 28977 0.9520 +11222 28991 0.4450 +11222 28998 0.9990 +11222 29074 0.9700 +11222 29083 0.9240 +11222 29088 0.9970 +11222 29093 0.9980 +11222 29102 0.6090 +11222 29789 0.4920 +11222 29889 0.6300 +11222 29922 0.4720 +11222 29927 0.8830 +11222 29960 0.8950 +11222 29979 0.4060 +11222 29997 0.5940 +11222 50808 0.4820 +11222 50814 0.4380 +11222 51001 0.4410 +11222 51008 0.7620 +11222 51014 0.5830 +11222 51021 0.9990 +11222 51023 0.9700 +11222 51042 0.5440 +11222 51065 0.7550 +11222 51068 0.7060 +11222 51069 0.9970 +11222 51073 0.9990 +11222 51081 0.9960 +11222 51116 0.9880 +11222 51119 0.5880 +11222 51121 0.8520 +11222 51149 0.8260 +11222 51154 0.8930 +11222 51187 0.8660 +11222 51202 0.4620 +11222 51224 0.4120 +11222 51250 0.8260 +11222 51253 0.9730 +11222 51258 0.9050 +11222 51263 0.9810 +11222 51264 0.9990 +11222 51314 0.4700 +11222 51318 0.9270 +11222 51319 0.7020 +11222 51373 0.8890 +11222 51388 0.6930 +11222 51398 0.4080 +11222 51574 0.4190 +11222 51602 0.4440 +11222 51642 0.8720 +11222 51649 0.8830 +11222 51650 0.8790 +11222 51727 0.5040 +11222 51734 0.4070 +11222 54059 0.5720 +11222 54148 0.9910 +11222 54431 0.4160 +11222 54460 0.8350 +11222 54464 0.4140 +11222 54465 0.4390 +11222 54475 0.4230 +11222 54514 0.4070 +11222 54516 0.6570 +11222 54517 0.8030 +11222 54534 0.9600 +11222 54552 0.4970 +11222 54555 0.4120 +11222 54606 0.4320 +11222 54663 0.7960 +11222 54788 0.4420 +11222 54948 0.9970 +11222 54965 0.4590 +11222 54998 0.8360 +11222 55037 0.8710 +11222 55052 0.9990 +11222 55143 0.4910 +11222 55153 0.4540 +11222 55168 0.9720 +11222 55173 0.9970 +11222 55176 0.8700 +11222 55178 0.9770 +11222 55210 0.4320 +11222 55272 0.9000 +11222 55299 0.8100 +11222 55316 0.8370 +11222 55324 0.5780 +11222 55341 0.5140 +11222 55510 0.4070 +11222 55591 0.7050 +11222 55651 0.7180 +11222 55699 0.4140 +11222 55703 0.7780 +11222 55759 0.7770 +11222 55781 0.6700 +11222 55794 0.9050 +11222 55854 0.4120 +11222 56342 0.4520 +11222 56479 0.4760 +11222 56648 0.8190 +11222 56945 0.9200 +11222 56965 0.6750 +11222 57062 0.4120 +11222 57129 0.9980 +11222 57136 0.6740 +11222 57478 0.4140 +11222 57696 0.5010 +11222 58505 0.5740 +11222 60488 0.9950 +11222 60558 0.7690 +11222 60678 0.5140 +11222 63875 0.9990 +11222 63931 0.9970 +11222 64146 0.7700 +11222 64318 0.6100 +11222 64374 0.7750 +11222 64432 0.9890 +11222 64794 0.4120 +11222 64928 0.9050 +11222 64949 0.8850 +11222 64951 0.8470 +11222 64960 0.9970 +11222 64963 0.9970 +11222 64965 0.9990 +11222 64968 0.9980 +11222 64969 0.9980 +11222 64975 0.9970 +11222 64976 0.9920 +11222 64978 0.9870 +11222 64979 0.9980 +11222 64981 0.9930 +11222 64983 0.9980 +11222 65003 0.9970 +11222 65005 0.9990 +11222 65008 0.9930 +11222 65080 0.9930 +11222 65121 0.6520 +11222 65122 0.6520 +11222 65993 0.8960 +11222 78988 0.8460 +11222 79009 0.4550 +11222 79039 0.4120 +11222 79165 0.4590 +11222 79590 0.9970 +11222 79631 0.8070 +11222 79668 0.6750 +11222 79728 0.8460 +11222 79848 0.4640 +11222 79922 0.6370 +11222 79962 0.4380 +11222 79982 0.4530 +11222 80135 0.6890 +11222 80146 0.4380 +11222 80221 0.9380 +11222 80222 0.4580 +11222 80270 0.4290 +11222 83448 0.7930 +11222 83479 0.4440 +11222 83743 0.4980 +11222 83858 0.4320 +11222 84060 0.4240 +11222 84154 0.6820 +11222 84172 0.7830 +11222 84273 0.5970 +11222 84311 0.8770 +11222 84319 0.4060 +11222 84340 0.9100 +11222 84365 0.7180 +11222 84545 0.9910 +11222 84549 0.6310 +11222 84669 0.4150 +11222 84705 0.9020 +11222 84881 0.7620 +11222 85476 0.9690 +11222 85865 0.9030 +11222 87178 0.7110 +11222 90313 0.5680 +11222 90480 0.9610 +11222 90624 0.7900 +11222 91574 0.8980 +11222 91646 0.4440 +11222 92170 0.9860 +11222 92196 0.5180 +11222 92399 0.9830 +11222 93107 0.4760 +11222 93517 0.4360 +11222 93974 0.4190 +11222 94239 0.5140 +11222 96459 0.4380 +11222 113000 0.6160 +11222 114781 0.8280 +11222 114908 0.4830 +11222 114987 0.8290 +11222 115416 0.9920 +11222 116540 0.9000 +11222 116541 0.9150 +11222 116832 0.6410 +11222 117246 0.4500 +11222 118487 0.8670 +11222 122481 0.4720 +11222 122622 0.6390 +11222 122704 0.9470 +11222 123283 0.4470 +11222 124454 0.6410 +11222 124739 0.4140 +11222 124995 0.9930 +11222 126402 0.9290 +11222 128308 0.9210 +11222 130589 0.4330 +11222 130916 0.8290 +11222 133015 0.4370 +11222 133396 0.4070 +11222 135138 0.4290 +11222 140032 0.8340 +11222 140432 0.4380 +11222 140801 0.7740 +11222 143244 0.8170 +11222 143689 0.4220 +11222 146212 0.4160 +11222 148022 0.5530 +11222 149478 0.4610 +11222 150274 0.4120 +11222 150353 0.4380 +11222 157310 0.6790 +11222 158067 0.4720 +11222 165721 0.4380 +11222 168400 0.4070 +11222 169522 0.4760 +11222 170850 0.4770 +11222 171425 0.4380 +11222 196074 0.5310 +11222 200172 0.4070 +11222 200916 0.7950 +11222 200933 0.4920 +11222 201595 0.5280 +11222 202052 0.4380 +11222 219402 0.5320 +11222 219927 0.9990 +11222 221264 0.4720 +11222 221823 0.4450 +11222 253827 0.4070 +11222 254268 0.4760 +11222 254272 0.4140 +11222 255308 0.5080 +11222 283518 0.4760 +11222 284106 0.4290 +11222 284418 0.4590 +11222 285126 0.4380 +11222 285190 0.4590 +11222 285282 0.4530 +11222 285367 0.6690 +11222 285755 0.4590 +11222 285855 0.8360 +11222 317781 0.4490 +11222 342538 0.4360 +11222 343068 0.6520 +11222 343070 0.6520 +11222 344758 0.4440 +11222 345051 0.8790 +11222 345630 0.6070 +11222 347487 0.7690 +11222 353149 0.4140 +11222 353376 0.5530 +11222 373509 0.4140 +11222 374407 0.4380 +11222 374659 0.7690 +11222 375337 0.4240 +11222 387129 0.8060 +11222 387338 0.8680 +11222 390999 0.6520 +11222 391002 0.6520 +11222 400735 0.6520 +11222 400736 0.6520 +11222 440145 0.4630 +11222 440560 0.6520 +11222 440561 0.6520 +11222 441873 0.6520 +11222 641776 0.7330 +11222 643909 0.7330 +11222 644591 0.4590 +11222 645051 0.6020 +11222 645073 0.6240 +11222 645142 0.4590 +11222 645359 0.6520 +11222 653505 0.4590 +11222 653598 0.4590 +11222 653619 0.6520 +11222 654364 0.5060 +11222 727851 0.4590 +11222 728524 0.7330 +11222 728945 0.4590 +11222 729396 0.6020 +11222 729422 0.6020 +11222 729428 0.6020 +11222 729431 0.6020 +11222 729442 0.6020 +11222 729447 0.6020 +11222 729528 0.6520 +11222 729857 0.4590 +11222 730262 0.4590 +11222 100008586 0.6020 +11222 100128731 0.4090 +11222 100130890 0.7820 +11222 100131187 0.7810 +11222 100132399 0.6020 +11222 100287482 0.7690 +11222 100302736 0.5530 +11222 100505478 0.8050 +11222 100526842 0.8350 +11222 100529097 0.6970 +11222 100529239 0.7500 +11222 100532731 0.5100 +11222 100996746 0.7330 +11222 101929983 0.6520 +11222 102724473 0.6020 +11222 105180390 0.7330 +11222 105180391 0.7330 +11222 105371242 0.4590 +11222 114483834 0.5980 +11222 127898561 0.8170 +11224 11325 0.5500 +11224 22894 0.4750 +11224 22927 0.8510 +11224 22984 0.9800 +11224 23076 0.8670 +11224 23135 0.5180 +11224 23148 0.6910 +11224 23173 0.8730 +11224 23195 0.4610 +11224 23204 0.9290 +11224 23212 0.6010 +11224 23246 0.9430 +11224 23252 0.8690 +11224 23404 0.5620 +11224 23478 0.4910 +11224 23480 0.9730 +11224 23481 0.9280 +11224 23517 0.7050 +11224 23521 0.9990 +11224 23560 0.9870 +11224 23640 0.9150 +11224 23708 0.4990 +11224 24140 0.6220 +11224 24144 0.8170 +11224 25873 0.9990 +11224 25885 0.9280 +11224 26046 0.8170 +11224 26135 0.9850 +11224 26155 0.8740 +11224 26156 0.9160 +11224 26164 0.4070 +11224 26168 0.5230 +11224 26251 0.5770 +11224 26271 0.6330 +11224 26289 0.6380 +11224 26354 0.8260 +11224 26986 0.6650 +11224 26995 0.4760 +11224 27000 0.4500 +11224 27012 0.5770 +11224 27043 0.5830 +11224 27068 0.4510 +11224 27089 0.5470 +11224 27335 0.4530 +11224 27430 0.5680 +11224 28972 0.4660 +11224 28987 0.4780 +11224 28991 0.5760 +11224 28998 0.9780 +11224 29088 0.7530 +11224 29093 0.9730 +11224 29889 0.9820 +11224 29927 0.9970 +11224 29960 0.5250 +11224 29968 0.5590 +11224 29978 0.5480 +11224 29979 0.5590 +11224 29997 0.9230 +11224 50487 0.4180 +11224 50613 0.5440 +11224 50808 0.6430 +11224 50814 0.5640 +11224 51001 0.4640 +11224 51018 0.4870 +11224 51021 0.9980 +11224 51023 0.4660 +11224 51042 0.8920 +11224 51065 0.9800 +11224 51068 0.9690 +11224 51069 0.9750 +11224 51073 0.9760 +11224 51081 0.9780 +11224 51116 0.9080 +11224 51119 0.5790 +11224 51121 0.9980 +11224 51142 0.4270 +11224 51149 0.9790 +11224 51154 0.9870 +11224 51187 0.9960 +11224 51224 0.5220 +11224 51264 0.9930 +11224 51319 0.9580 +11224 51388 0.9290 +11224 51398 0.5560 +11224 51574 0.5060 +11224 51690 0.4510 +11224 51720 0.4270 +11224 51727 0.6450 +11224 53918 0.8680 +11224 54148 0.4030 +11224 54463 0.4680 +11224 54464 0.4900 +11224 54475 0.5570 +11224 54499 0.8200 +11224 54516 0.6190 +11224 54543 0.7220 +11224 54552 0.8090 +11224 54555 0.4130 +11224 54606 0.4360 +11224 54663 0.9170 +11224 54870 0.4250 +11224 54881 0.7110 +11224 54888 0.4670 +11224 54948 0.9220 +11224 55052 0.9980 +11224 55139 0.4440 +11224 55143 0.5200 +11224 55153 0.5650 +11224 55168 0.4960 +11224 55173 0.9880 +11224 55176 0.9780 +11224 55272 0.9830 +11224 55299 0.8730 +11224 55308 0.4530 +11224 55316 0.9810 +11224 55319 0.8160 +11224 55324 0.7970 +11224 55341 0.9490 +11224 55591 0.8710 +11224 55607 0.5110 +11224 55629 0.5130 +11224 55646 0.8140 +11224 55651 0.8650 +11224 55695 0.4630 +11224 55699 0.4350 +11224 55703 0.8960 +11224 55759 0.9570 +11224 55802 0.5300 +11224 55854 0.6780 +11224 55893 0.4230 +11224 55969 0.4340 +11224 56342 0.4820 +11224 56479 0.5770 +11224 56648 0.9620 +11224 56731 0.4340 +11224 56893 0.5640 +11224 56926 0.8220 +11224 56965 0.8530 +11224 57003 0.8160 +11224 57136 0.6070 +11224 57418 0.7190 +11224 57471 0.4350 +11224 57696 0.5310 +11224 58477 0.8260 +11224 58505 0.5290 +11224 60558 0.8760 +11224 60559 0.4030 +11224 60678 0.9460 +11224 63875 0.9990 +11224 63899 0.4900 +11224 63931 0.9750 +11224 64098 0.4040 +11224 64146 0.9450 +11224 64221 0.5000 +11224 64318 0.8780 +11224 64374 0.9090 +11224 64960 0.9690 +11224 64963 0.9730 +11224 64965 0.9990 +11224 64968 0.9990 +11224 64969 0.9840 +11224 64979 0.9990 +11224 64983 0.9980 +11224 65003 0.9320 +11224 65005 0.9980 +11224 65008 0.9740 +11224 65121 0.7150 +11224 65122 0.7150 +11224 79009 0.4090 +11224 79036 0.5110 +11224 79039 0.4050 +11224 79048 0.8070 +11224 79137 0.4410 +11224 79159 0.5080 +11224 79590 0.9780 +11224 79631 0.9420 +11224 79668 0.8520 +11224 79707 0.5040 +11224 79727 0.4080 +11224 79730 0.4530 +11224 79829 0.4330 +11224 79903 0.4480 +11224 80018 0.4210 +11224 80135 0.9060 +11224 80146 0.5570 +11224 80155 0.5770 +11224 80218 0.6220 +11224 80263 0.4500 +11224 80270 0.5560 +11224 80349 0.4420 +11224 81887 0.5300 +11224 84154 0.8150 +11224 84172 0.8950 +11224 84273 0.5810 +11224 84298 0.8010 +11224 84340 0.5100 +11224 84365 0.9410 +11224 84549 0.8760 +11224 84779 0.5290 +11224 84851 0.5070 +11224 84993 0.5820 +11224 85476 0.9420 +11224 85865 0.4110 +11224 87178 0.6620 +11224 90121 0.4370 +11224 90441 0.8920 +11224 90459 0.4130 +11224 90701 0.4080 +11224 91408 0.6430 +11224 91574 0.6220 +11224 91875 0.8460 +11224 92170 0.6680 +11224 92196 0.7950 +11224 92399 0.9790 +11224 93107 0.5770 +11224 93517 0.5690 +11224 93550 0.6040 +11224 114987 0.9470 +11224 115098 0.9000 +11224 115416 0.9390 +11224 116832 0.9790 +11224 117246 0.8990 +11224 122481 0.6380 +11224 122622 0.6380 +11224 124454 0.7910 +11224 126402 0.9710 +11224 137872 0.5840 +11224 140032 0.9640 +11224 140801 0.9960 +11224 142940 0.4640 +11224 143244 0.9630 +11224 143630 0.5440 +11224 146212 0.7810 +11224 147011 0.4180 +11224 154288 0.4180 +11224 158067 0.6380 +11224 162427 0.4360 +11224 164153 0.6040 +11224 169522 0.5770 +11224 170850 0.5770 +11224 200916 0.9500 +11224 201595 0.4290 +11224 203068 0.8260 +11224 219927 0.9970 +11224 221078 0.7980 +11224 221264 0.6380 +11224 221710 0.4920 +11224 254268 0.9750 +11224 255308 0.4990 +11224 283518 0.5770 +11224 285855 0.9860 +11224 342538 0.9350 +11224 343068 0.7150 +11224 343070 0.7150 +11224 347487 0.9590 +11224 374659 0.9430 +11224 387129 0.9480 +11224 387338 0.4640 +11224 390999 0.7150 +11224 391002 0.7150 +11224 400735 0.7150 +11224 400736 0.7150 +11224 440560 0.7150 +11224 440561 0.7150 +11224 441873 0.7150 +11224 619279 0.4180 +11224 641776 0.8350 +11224 642987 0.4180 +11224 643909 0.8350 +11224 645051 0.7850 +11224 645073 0.7890 +11224 645359 0.7150 +11224 653619 0.7150 +11224 692312 0.4950 +11224 728524 0.8350 +11224 729396 0.7850 +11224 729422 0.7850 +11224 729428 0.7850 +11224 729431 0.7850 +11224 729442 0.7850 +11224 729447 0.7850 +11224 729528 0.7150 +11224 100008586 0.7890 +11224 100128731 0.5540 +11224 100132399 0.7850 +11224 100287482 0.9020 +11224 100505478 0.9430 +11224 100526842 0.9960 +11224 100527943 0.4290 +11224 100529097 0.9600 +11224 100529239 0.9940 +11224 100996746 0.8350 +11224 101929983 0.7150 +11224 102724473 0.7850 +11224 105180390 0.8350 +11224 105180391 0.8350 +11224 114483834 0.8060 +11226 29071 0.8190 +11226 55808 0.9500 +11226 55967 0.4600 +11226 56667 0.5060 +11226 56913 0.9040 +11226 79087 0.4180 +11226 94025 0.4900 +11226 118430 0.4240 +11226 137682 0.4030 +11226 140453 0.4410 +11226 143662 0.4550 +11226 192134 0.9400 +11226 200958 0.5140 +11226 727897 0.5100 +11226 728819 0.6910 +11227 29071 0.7540 +11227 55219 0.4130 +11227 55808 0.9420 +11227 56667 0.4080 +11227 56913 0.8130 +11227 57471 0.4610 +11227 79663 0.4530 +11227 94025 0.4140 +11227 118430 0.4150 +11227 140453 0.4150 +11227 143662 0.4200 +11227 192134 0.9280 +11227 200958 0.4450 +11227 727897 0.4180 +11227 728819 0.7290 +11228 11247 0.4220 +11228 23368 0.9240 +11228 23558 0.4660 +11228 51193 0.4870 +11228 56288 0.8870 +11228 83593 0.4630 +11228 83937 0.4010 +11228 84612 0.4850 +11228 122786 0.9210 +11228 154796 0.5170 +11228 160492 0.4750 +11228 164633 0.4370 +11228 166824 0.6140 +11228 283349 0.4620 +11228 644943 0.6910 +11230 28952 0.6910 +11230 54629 0.4050 +11231 11345 0.4780 +11231 22796 0.4210 +11231 22926 0.5620 +11231 23020 0.7330 +11231 23065 0.6700 +11231 23071 0.4540 +11231 23190 0.4670 +11231 23193 0.6930 +11231 23256 0.6270 +11231 23376 0.5420 +11231 23471 0.6910 +11231 23478 0.4670 +11231 23480 0.9970 +11231 23640 0.5060 +11231 23710 0.4700 +11231 26168 0.4220 +11231 26608 0.4050 +11231 27000 0.5990 +11231 27230 0.4140 +11231 27248 0.4990 +11231 27315 0.4260 +11231 27347 0.8280 +11231 28962 0.4430 +11231 28972 0.5620 +11231 29880 0.5410 +11231 29927 0.9990 +11231 30001 0.5020 +11231 51009 0.5110 +11231 51182 0.4160 +11231 51234 0.5380 +11231 51250 0.4050 +11231 51290 0.4060 +11231 51465 0.5380 +11231 51477 0.4330 +11231 51614 0.4330 +11231 51726 0.4980 +11231 51759 0.4020 +11231 51806 0.5020 +11231 53407 0.5030 +11231 54431 0.6320 +11231 54814 0.4010 +11231 54867 0.7230 +11231 54901 0.4300 +11231 55176 0.9470 +11231 55218 0.6560 +11231 55278 0.4150 +11231 55312 0.4250 +11231 55329 0.4780 +11231 55379 0.4160 +11231 55437 0.8240 +11231 55666 0.4390 +11231 55831 0.4090 +11231 56605 0.5610 +11231 56926 0.5130 +11231 57003 0.5120 +11231 57142 0.5420 +11231 57511 0.4040 +11231 58477 0.7100 +11231 60559 0.6590 +11231 60561 0.4140 +11231 64083 0.5180 +11231 64145 0.4030 +11231 64215 0.7240 +11231 64359 0.6540 +11231 64374 0.7910 +11231 79053 0.6930 +11231 79139 0.6530 +11231 79876 0.5730 +11231 80308 0.4120 +11231 80324 0.4990 +11231 80856 0.4410 +11231 81502 0.5070 +11231 83548 0.4200 +11231 84061 0.4610 +11231 84305 0.4020 +11231 84447 0.5150 +11231 91319 0.4600 +11231 91860 0.5020 +11231 92335 0.8240 +11231 93380 0.5960 +11231 125972 0.4020 +11231 131118 0.5550 +11231 133022 0.4860 +11231 158747 0.4220 +11231 163688 0.5020 +11231 201595 0.6890 +11231 339416 0.6580 +11231 692094 0.4220 +11232 23395 0.5940 +11232 23438 0.4730 +11232 23649 0.9130 +11232 26235 0.5180 +11232 27068 0.4690 +11232 27297 0.9040 +11232 50484 0.9320 +11232 51001 0.5640 +11232 51067 0.5890 +11232 51106 0.6050 +11232 51204 0.4090 +11232 51520 0.6290 +11232 54107 0.9250 +11232 54108 0.9000 +11232 54938 0.4900 +11232 55037 0.4030 +11232 55699 0.4110 +11232 55794 0.4500 +11232 56652 0.9180 +11232 56655 0.9220 +11232 57038 0.5340 +11232 57176 0.5380 +11232 57505 0.5310 +11232 57804 0.5400 +11232 64216 0.6250 +11232 64969 0.4130 +11232 79587 0.4480 +11232 79731 0.4910 +11232 80298 0.4080 +11232 84464 0.4370 +11232 90381 0.5850 +11232 91574 0.4080 +11232 92667 0.7960 +11232 92935 0.4030 +11232 116447 0.5070 +11232 201973 0.5030 +11232 246243 0.6850 +11232 374395 0.5250 +11234 23557 0.8750 +11234 23682 0.4600 +11234 26258 0.9860 +11234 26297 0.4250 +11234 51151 0.5440 +11234 55330 0.8070 +11234 55653 0.5400 +11234 63915 0.8840 +11234 79803 0.9990 +11234 83938 0.5910 +11234 84062 0.9840 +11234 84343 0.9990 +11234 89781 0.9920 +11234 90167 0.6260 +11234 94137 0.4760 +11234 132884 0.4620 +11234 146167 0.4300 +11234 282991 0.8740 +11234 283652 0.5070 +11234 388552 0.9850 +11234 100533467 0.4240 +11235 23369 0.4210 +11235 25843 0.9990 +11235 26127 0.9960 +11235 27145 0.4770 +11235 29127 0.4370 +11235 29888 0.9990 +11235 29966 0.9990 +11235 50488 0.5310 +11235 51136 0.4750 +11235 51510 0.4760 +11235 51719 0.5900 +11235 51765 0.9990 +11235 54165 0.4060 +11235 54951 0.4330 +11235 55286 0.8610 +11235 55917 0.9980 +11235 57154 0.6090 +11235 57464 0.9720 +11235 57493 0.7730 +11235 79567 0.7630 +11235 80143 0.9980 +11235 80342 0.9950 +11235 83605 0.9990 +11235 83992 0.9950 +11235 85369 0.9990 +11235 140706 0.7130 +11235 151790 0.4010 +11235 254427 0.5510 +11235 286827 0.4410 +11235 317649 0.4150 +11236 22937 0.7410 +11236 23197 0.7170 +11236 26018 0.4990 +11236 27248 0.8210 +11236 29914 0.4100 +11236 29927 0.4910 +11236 51009 0.8040 +11236 51141 0.8390 +11236 51465 0.5200 +11236 55039 0.5190 +11236 55666 0.5730 +11236 55829 0.7380 +11236 55845 0.4240 +11236 57574 0.5280 +11236 79139 0.9310 +11236 79663 0.4900 +11236 79981 0.4310 +11236 81502 0.9970 +11236 81790 0.6240 +11236 83590 0.5670 +11236 83940 0.4620 +11236 84447 0.7950 +11236 84925 0.5840 +11236 90196 0.4540 +11236 91319 0.6800 +11236 91445 0.4760 +11236 92305 0.7230 +11236 118424 0.6390 +11236 133482 0.4140 +11236 148066 0.5030 +11236 197131 0.4420 +11236 201163 0.5210 +11236 337867 0.4030 +11237 22888 0.4790 +11237 51389 0.4990 +11237 54793 0.4620 +11237 60625 0.4040 +11237 64601 0.4180 +11237 64748 0.4450 +11237 64773 0.4990 +11237 79983 0.4170 +11237 80025 0.5920 +11237 119467 0.4740 +11237 375341 0.4290 +11238 23212 0.4730 +11238 23560 0.4060 +11238 54475 0.4110 +11238 83743 0.4510 +11238 84154 0.5610 +11238 94056 0.4360 +11238 126626 0.4150 +11238 140462 0.4440 +11238 158747 0.5490 +11240 23275 0.7770 +11240 57571 0.4370 +11240 79841 0.4310 +11240 155038 0.4410 +11240 388698 0.5160 +11240 440093 0.6830 +11240 440686 0.6910 +11240 653604 0.8070 +11243 11335 0.7230 +11243 23468 0.8910 +11243 25936 0.9990 +11243 27436 0.5070 +11243 50813 0.5980 +11243 55680 0.4200 +11243 55839 0.4690 +11243 56155 0.4340 +11243 57082 0.9800 +11243 57405 0.8960 +11243 57562 0.5130 +11243 64218 0.4050 +11243 79003 0.9990 +11243 79980 0.9990 +11243 80152 0.6610 +11243 83449 0.6260 +11243 83540 0.9540 +11243 84942 0.4330 +11243 91107 0.4820 +11243 147841 0.9720 +11243 196743 0.5000 +11243 197370 0.4340 +11243 201292 0.4120 +11243 100527963 0.4500 +11244 22882 0.5060 +11244 23051 0.4650 +11244 26515 0.4350 +11244 26519 0.4270 +11244 26520 0.4350 +11244 29028 0.4390 +11244 56956 0.6320 +11244 80231 0.4390 +11244 93594 0.6890 +11245 11250 0.6180 +11245 23432 0.4690 +11245 51704 0.4600 +11245 53831 0.5180 +11245 54329 0.4780 +11245 55890 0.4210 +11245 84435 0.4190 +11245 134391 0.4790 +11245 161835 0.6100 +11245 285601 0.6970 +11245 344758 0.4910 +11245 387509 0.5700 +11245 387804 0.5550 +11247 54865 0.4830 +11247 58516 0.4430 +11247 80023 0.4800 +11247 80352 0.4370 +11247 93107 0.4060 +11247 164633 0.4630 +11247 339456 0.4940 +11247 594855 0.5650 +11248 55203 0.4270 +11248 110806279 0.4350 +11249 51059 0.4210 +11249 57586 0.4520 +11249 57795 0.5080 +11249 79633 0.4300 +11249 124641 0.5430 +11249 144110 0.5140 +11249 339745 0.4730 +11249 347730 0.4080 +11249 402135 0.4180 +11249 100505591 0.4070 +11250 53831 0.5050 +11250 53836 0.5120 +11250 83873 0.4710 +11250 118442 0.4950 +11250 285601 0.5950 +11250 342346 0.4080 +11251 27166 0.6920 +11251 27181 0.6860 +11251 27306 0.5710 +11251 29851 0.4350 +11251 30009 0.5450 +11251 50616 0.5600 +11251 50832 0.4350 +11251 50943 0.5560 +11251 51131 0.5240 +11251 55540 0.5770 +11251 59340 0.4160 +11251 63940 0.4240 +11251 80332 0.5580 +11251 85480 0.7070 +11251 90865 0.6660 +11251 117156 0.4950 +11251 170482 0.5120 +11251 260429 0.6690 +11251 374383 0.8970 +11252 22837 0.8550 +11252 22905 0.4820 +11252 23048 0.7590 +11252 23149 0.7020 +11252 23164 0.6080 +11252 23242 0.8930 +11252 23380 0.4140 +11252 23433 0.4450 +11252 26064 0.6240 +11252 27293 0.4040 +11252 29763 0.9470 +11252 29993 0.9380 +11252 30844 0.5120 +11252 30845 0.8460 +11252 30846 0.8620 +11252 50807 0.6750 +11252 51429 0.5950 +11252 54874 0.4780 +11252 54974 0.4620 +11252 55122 0.5010 +11252 55270 0.4350 +11252 55660 0.4310 +11252 57573 0.4160 +11252 59341 0.4180 +11252 80331 0.4400 +11252 85377 0.8640 +11252 89848 0.4680 +11252 112464 0.5500 +11252 115548 0.7380 +11252 133482 0.4780 +11252 144717 0.5930 +11252 147179 0.5910 +11252 284119 0.7760 +11252 347273 0.4230 +11253 11282 0.4090 +11253 11285 0.5100 +11253 23193 0.9550 +11253 23324 0.5690 +11253 23399 0.4080 +11253 23582 0.4450 +11253 27248 0.8760 +11253 29925 0.4810 +11253 29926 0.5150 +11253 29927 0.5490 +11253 29929 0.5770 +11253 51009 0.4410 +11253 51061 0.5200 +11253 51465 0.4470 +11253 54431 0.7220 +11253 54872 0.5340 +11253 55329 0.6050 +11253 55343 0.4460 +11253 55624 0.4240 +11253 55738 0.5350 +11253 55757 0.6070 +11253 56052 0.5780 +11253 56886 0.7310 +11253 57134 0.9410 +11253 64689 0.5330 +11253 64772 0.4240 +11253 79087 0.7600 +11253 79139 0.4420 +11253 79694 0.9350 +11253 80198 0.4410 +11253 81562 0.4560 +11253 84447 0.4080 +11253 84720 0.5600 +11253 85365 0.6440 +11253 91373 0.4900 +11253 124565 0.4620 +11253 201595 0.5500 +11253 440138 0.4850 +11254 23428 0.5880 +11254 23657 0.4730 +11254 25970 0.5480 +11254 54407 0.6030 +11254 55089 0.4620 +11254 79068 0.5850 +11254 81539 0.5130 +11254 92745 0.5110 +11254 115019 0.6720 +11254 117247 0.4940 +11254 120103 0.4140 +11254 124935 0.4720 +11254 145389 0.4180 +11254 153129 0.4100 +11254 153201 0.4170 +11254 206358 0.5340 +11254 338557 0.6510 +11255 23539 0.5970 +11255 25932 0.7700 +11255 27346 0.4950 +11255 59340 0.5370 +11255 80012 0.4240 +11255 83482 0.4260 +11255 140679 0.4240 +11258 22796 0.5110 +11258 22920 0.5090 +11258 22930 0.5080 +11258 22931 0.5110 +11258 23299 0.6500 +11258 23332 0.4300 +11258 23354 0.5040 +11258 24137 0.5400 +11258 25782 0.5110 +11258 25839 0.5090 +11258 26153 0.4990 +11258 26286 0.5170 +11258 29127 0.5070 +11258 30968 0.4490 +11258 51143 0.7720 +11258 51164 0.9960 +11258 51272 0.4990 +11258 51560 0.4990 +11258 54801 0.5030 +11258 54930 0.6310 +11258 55142 0.4990 +11258 55559 0.5040 +11258 55738 0.5040 +11258 55860 0.9960 +11258 56992 0.5570 +11258 57180 0.4460 +11258 57511 0.5060 +11258 60626 0.4360 +11258 64689 0.4990 +11258 64837 0.5230 +11258 79441 0.5010 +11258 79848 0.6600 +11258 79866 0.4990 +11258 80310 0.5910 +11258 81569 0.6070 +11258 81930 0.5000 +11258 83548 0.5080 +11258 83658 0.8640 +11258 84299 0.4220 +11258 84364 0.5060 +11258 84516 0.9970 +11258 84643 0.4990 +11258 89953 0.5210 +11258 91582 0.6190 +11258 91689 0.5990 +11258 91949 0.5070 +11258 92400 0.4430 +11258 92558 0.8310 +11258 93323 0.5010 +11258 93661 0.5450 +11258 115106 0.5210 +11258 117177 0.4990 +11258 138715 0.5580 +11258 138716 0.6970 +11258 140735 0.6210 +11258 140850 0.6250 +11258 147700 0.5070 +11258 203259 0.5900 +11258 284382 0.6070 +11258 285643 0.4990 +11258 375704 0.4690 +11258 653857 0.4630 +11258 728642 0.4990 +11259 22878 0.5510 +11259 23539 0.6680 +11259 26276 0.4810 +11259 27095 0.4450 +11259 30816 0.5500 +11259 51283 0.4120 +11259 51399 0.5390 +11259 55007 0.4600 +11259 55773 0.6080 +11259 56999 0.5770 +11259 57128 0.5420 +11259 58485 0.5550 +11259 65082 0.4810 +11259 79090 0.4030 +11259 83872 0.4280 +11259 84319 0.4340 +11259 91300 0.5040 +11259 112812 0.4250 +11259 122553 0.4030 +11259 126003 0.5090 +11259 145173 0.5810 +11259 167691 0.4560 +11259 100128327 0.4450 +11259 102723655 0.4720 +11260 22820 0.4740 +11260 23029 0.4080 +11260 23039 0.7510 +11260 23165 0.7560 +11260 23214 0.6870 +11260 23225 0.5060 +11260 23279 0.7700 +11260 23511 0.6170 +11260 23517 0.4420 +11260 23534 0.7180 +11260 23636 0.6490 +11260 24140 0.4260 +11260 25885 0.4330 +11260 25929 0.4240 +11260 26953 0.6550 +11260 29107 0.5060 +11260 29110 0.5270 +11260 30000 0.6930 +11260 51068 0.6160 +11260 51095 0.5370 +11260 51194 0.5950 +11260 51808 0.5780 +11260 53371 0.5790 +11260 54888 0.4150 +11260 55226 0.4530 +11260 55627 0.4490 +11260 55705 0.7350 +11260 55706 0.5330 +11260 55717 0.7190 +11260 55720 0.4340 +11260 55746 0.7230 +11260 56000 0.4670 +11260 57122 0.7240 +11260 57147 0.4470 +11260 57410 0.5100 +11260 57510 0.8320 +11260 60528 0.5120 +11260 64328 0.9760 +11260 64901 0.5780 +11260 79023 0.6710 +11260 79042 0.4680 +11260 79711 0.7640 +11260 79829 0.7910 +11260 79902 0.5620 +11260 80324 0.4190 +11260 80746 0.4760 +11260 81929 0.6110 +11260 83707 0.4280 +11260 84172 0.5600 +11260 84232 0.5350 +11260 90381 0.5420 +11260 92935 0.5830 +11260 117246 0.4170 +11260 129401 0.5260 +11260 192670 0.4050 +11260 283349 0.4820 +11260 283383 0.8570 +11260 283989 0.4250 +11260 348995 0.6500 +11260 100101267 0.4940 +11261 11278 0.6860 +11261 11315 0.4090 +11261 23603 0.4870 +11261 25839 0.4210 +11261 26523 0.4100 +11261 51806 0.5140 +11261 54861 0.4460 +11261 55576 0.4990 +11261 56903 0.7220 +11261 64342 0.7640 +11261 64895 0.6560 +11261 83988 0.5290 +11261 91860 0.5160 +11261 137964 0.4080 +11261 163486 0.5470 +11261 163688 0.5140 +11261 285195 0.4410 +11261 389015 0.4910 +11261 642489 0.4440 +11262 22806 0.4030 +11262 22894 0.5400 +11262 23225 0.4540 +11262 23468 0.5390 +11262 23774 0.5350 +11262 26135 0.4710 +11262 54440 0.4150 +11262 54855 0.5920 +11262 55289 0.4180 +11262 55870 0.4210 +11262 60489 0.4080 +11262 93349 0.9030 +11262 94103 0.4180 +11262 642623 0.4920 +11264 26205 0.4490 +11264 51024 0.5690 +11264 51503 0.4040 +11264 54332 0.5830 +11264 55670 0.6390 +11264 56163 0.4380 +11264 56259 0.4140 +11264 65084 0.6920 +11264 84896 0.6280 +11264 84905 0.5300 +11264 91452 0.6740 +11264 92960 0.5250 +11264 117155 0.4630 +11264 122970 0.4420 +11264 128864 0.4720 +11264 167555 0.5120 +11264 284697 0.5030 +11264 390916 0.5040 +11266 22926 0.5180 +11266 23560 0.4550 +11266 23645 0.5800 +11266 26986 0.6340 +11266 27434 0.4640 +11266 28227 0.4670 +11266 29889 0.5260 +11266 51068 0.6550 +11266 51144 0.7060 +11266 51154 0.7790 +11266 51187 0.6560 +11266 51441 0.4240 +11266 51506 0.4490 +11266 54514 0.4770 +11266 55341 0.6220 +11266 65005 0.4180 +11266 79094 0.4610 +11266 84154 0.4020 +11266 133396 0.5300 +11266 266743 0.4220 +11266 389421 0.5110 +11266 440093 0.5060 +11266 440686 0.5040 +11266 653604 0.5110 +11267 11311 0.5430 +11267 22948 0.4590 +11267 25930 0.4380 +11267 25978 0.9330 +11267 27183 0.7870 +11267 27243 0.9800 +11267 51028 0.9990 +11267 51160 0.9920 +11267 51271 0.9480 +11267 51510 0.6240 +11267 51534 0.6500 +11267 51652 0.9790 +11267 55048 0.9680 +11267 55293 0.7370 +11267 57109 0.4720 +11267 57132 0.9520 +11267 57210 0.5090 +11267 57463 0.4120 +11267 57721 0.4890 +11267 64149 0.7530 +11267 65264 0.6540 +11267 65977 0.6010 +11267 79643 0.9990 +11267 79720 0.9460 +11267 81688 0.4770 +11267 83660 0.4770 +11267 84313 0.9990 +11267 84936 0.4260 +11267 84993 0.4720 +11267 89853 0.9540 +11267 91782 0.9420 +11267 92421 0.9090 +11267 93343 0.9490 +11267 128866 0.9670 +11267 137492 0.9530 +11267 148362 0.4650 +11267 155382 0.9430 +11267 285148 0.4220 +11267 390595 0.5400 +11267 100526767 0.8080 +11269 23246 0.5870 +11269 23306 0.5450 +11269 23481 0.5550 +11269 23560 0.5370 +11269 23636 0.4140 +11269 26155 0.5040 +11269 26156 0.4130 +11269 26354 0.4230 +11269 26574 0.4010 +11269 29889 0.4740 +11269 51154 0.4570 +11269 51187 0.4920 +11269 51388 0.4980 +11269 51602 0.5550 +11269 53371 0.4500 +11269 54433 0.4370 +11269 54552 0.4230 +11269 54555 0.4080 +11269 54606 0.4470 +11269 54663 0.5040 +11269 55131 0.4010 +11269 55299 0.4640 +11269 55308 0.5120 +11269 55759 0.5480 +11269 57062 0.5200 +11269 57136 0.4860 +11269 57409 0.6500 +11269 64318 0.4670 +11269 64794 0.5000 +11269 79039 0.4420 +11269 84154 0.4400 +11269 84365 0.4170 +11269 84549 0.4100 +11269 87178 0.4860 +11269 117246 0.5000 +11269 124402 0.5870 +11269 285855 0.4140 +11269 387129 0.4070 +11270 23224 0.4160 +11270 23353 0.5690 +11270 23592 0.5760 +11270 25777 0.6840 +11270 84823 0.5710 +11270 221545 0.5290 +11270 256979 0.4520 +11270 286827 0.5930 +11272 23627 0.6080 +11272 58503 0.5950 +11272 84569 0.5260 +11272 90070 0.6700 +11272 124220 0.4770 +11272 352999 0.5000 +11273 22916 0.4550 +11273 23019 0.4740 +11273 23367 0.4780 +11273 23435 0.5720 +11273 23644 0.4770 +11273 25940 0.8460 +11273 25970 0.7320 +11273 26058 0.4130 +11273 26065 0.4770 +11273 26135 0.4160 +11273 26471 0.5750 +11273 26986 0.9170 +11273 50488 0.4130 +11273 51574 0.4620 +11273 54542 0.5710 +11273 54715 0.4420 +11273 54952 0.5820 +11273 55114 0.6260 +11273 55364 0.5230 +11273 55802 0.7230 +11273 55911 0.4760 +11273 57101 0.5290 +11273 57532 0.9060 +11273 57590 0.4290 +11273 79869 0.6210 +11273 79874 0.6690 +11273 80153 0.5730 +11273 80336 0.5850 +11273 83985 0.5230 +11273 84316 0.5100 +11273 84331 0.6170 +11273 84901 0.6130 +11273 92552 0.9030 +11273 112869 0.4430 +11273 124801 0.9860 +11273 126259 0.5100 +11273 132430 0.5160 +11273 140886 0.4090 +11273 147650 0.5320 +11273 149041 0.4360 +11273 149986 0.4800 +11273 196513 0.7060 +11273 219988 0.4620 +11273 253980 0.4150 +11273 259173 0.6500 +11273 340529 0.4090 +11273 347744 0.5820 +11273 645974 0.4090 +11273 100101267 0.5370 +11274 23070 0.4050 +11274 23424 0.4350 +11274 23586 0.9400 +11274 24138 0.8660 +11274 25820 0.4140 +11274 25939 0.5850 +11274 26010 0.5100 +11274 28978 0.4560 +11274 29110 0.4090 +11274 51056 0.4390 +11274 51191 0.9560 +11274 51807 0.4450 +11274 54625 0.5380 +11274 54739 0.7770 +11274 54809 0.5600 +11274 54877 0.4050 +11274 55008 0.9020 +11274 55601 0.7900 +11274 56829 0.4740 +11274 56957 0.4050 +11274 57169 0.6470 +11274 57506 0.6360 +11274 57663 0.4640 +11274 57674 0.5040 +11274 64108 0.9170 +11274 64135 0.8570 +11274 64761 0.5850 +11274 79132 0.9140 +11274 81030 0.4780 +11274 83666 0.6980 +11274 85363 0.4020 +11274 85441 0.5700 +11274 91543 0.9540 +11274 94240 0.7880 +11274 114803 0.4230 +11274 115004 0.4080 +11274 115361 0.4800 +11274 115362 0.4190 +11274 116071 0.4150 +11274 126119 0.4150 +11274 129607 0.8830 +11274 151636 0.4270 +11274 163702 0.4470 +11274 165631 0.4180 +11274 219285 0.6850 +11274 221302 0.5800 +11274 282616 0.4340 +11274 282617 0.5130 +11274 282618 0.4760 +11274 340061 0.5070 +11274 439996 0.4850 +11275 23001 0.4630 +11275 23053 0.7220 +11275 23077 0.4040 +11275 23142 0.6230 +11275 23412 0.4990 +11275 23510 0.6120 +11275 26224 0.5630 +11275 26249 0.9450 +11275 27252 0.7440 +11275 28952 0.4990 +11275 28991 0.4990 +11275 29099 0.4990 +11275 51060 0.5910 +11275 51088 0.4970 +11275 51122 0.5040 +11275 51164 0.5260 +11275 51397 0.5040 +11275 51667 0.4450 +11275 53339 0.4480 +11275 54165 0.5080 +11275 54442 0.5620 +11275 54800 0.7360 +11275 54939 0.4990 +11275 54951 0.5820 +11275 55175 0.4880 +11275 55208 0.5210 +11275 55313 0.4600 +11275 55319 0.7400 +11275 55832 0.5820 +11275 55958 0.8010 +11275 55975 0.7540 +11275 56995 0.4390 +11275 57092 0.4450 +11275 57520 0.4150 +11275 57542 0.7680 +11275 57563 0.7760 +11275 57646 0.6220 +11275 59349 0.9290 +11275 64410 0.7470 +11275 64839 0.5050 +11275 65125 0.7610 +11275 65266 0.8830 +11275 65267 0.7600 +11275 65268 0.4040 +11275 79734 0.7650 +11275 80311 0.4200 +11275 83549 0.7650 +11275 83892 0.7260 +11275 84078 0.7420 +11275 84259 0.5390 +11275 84516 0.5900 +11275 84541 0.7900 +11275 84861 0.7660 +11275 89890 0.7360 +11275 90135 0.4140 +11275 90293 0.7970 +11275 124808 0.5630 +11275 131377 0.7790 +11275 139596 0.4660 +11275 140838 0.5580 +11275 149951 0.4990 +11275 150684 0.4990 +11275 154881 0.4630 +11275 163071 0.4310 +11275 170622 0.5010 +11275 200845 0.4050 +11275 253980 0.7220 +11275 339451 0.5160 +11275 339745 0.7960 +11275 341359 0.4200 +11275 390594 0.4230 +11275 553115 0.7410 +11276 22848 0.4030 +11276 22905 0.7050 +11276 23062 0.7120 +11276 23163 0.7080 +11276 23431 0.7630 +11276 25977 0.5630 +11276 26088 0.8400 +11276 26574 0.4330 +11276 26985 0.5640 +11276 29924 0.7030 +11276 50618 0.6480 +11276 54497 0.4990 +11276 55040 0.6920 +11276 55317 0.7410 +11276 55707 0.7340 +11276 55745 0.7460 +11276 55823 0.4180 +11276 56479 0.7270 +11276 57213 0.4190 +11276 57231 0.4220 +11276 57630 0.4190 +11276 58513 0.6500 +11276 64083 0.4750 +11276 64149 0.4100 +11276 79154 0.5110 +11276 79893 0.6320 +11276 79922 0.6340 +11276 80115 0.7200 +11276 80179 0.5550 +11276 83988 0.7310 +11276 84251 0.7560 +11276 91056 0.7500 +11276 122616 0.5400 +11276 130340 0.8260 +11276 132320 0.4220 +11276 132321 0.4950 +11276 150350 0.6410 +11276 171017 0.4210 +11276 284098 0.6300 +11276 284099 0.6900 +11276 751071 0.4170 +11277 23586 0.4870 +11277 25939 0.9210 +11277 29110 0.6980 +11277 51142 0.4670 +11277 51428 0.5110 +11277 57136 0.4030 +11277 57506 0.4180 +11277 64135 0.4960 +11277 79132 0.4050 +11277 79621 0.8730 +11277 84153 0.8860 +11277 87178 0.4220 +11277 115004 0.7180 +11277 255967 0.5740 +11277 340061 0.7110 +11278 11279 0.4190 +11278 57456 0.6170 +11278 64092 0.4510 +11278 79618 0.4390 +11278 139422 0.4730 +11278 169355 0.5270 +11279 79755 0.4230 +11279 133482 0.4310 +11280 23114 0.5810 +11280 23171 0.4260 +11280 25915 0.5220 +11280 27238 0.9250 +11280 50801 0.4230 +11280 51332 0.5010 +11280 54407 0.7650 +11280 54795 0.6070 +11280 55089 0.8250 +11280 55800 0.7390 +11280 57539 0.4200 +11280 57578 0.4330 +11280 57599 0.4010 +11280 57731 0.5650 +11280 59335 0.5050 +11280 59341 0.4050 +11280 63895 0.4640 +11280 79054 0.5970 +11280 81539 0.7650 +11280 89796 0.7210 +11280 92745 0.7660 +11280 116512 0.4470 +11280 388112 0.6020 +11281 23242 0.4020 +11281 84033 0.7770 +11281 139285 0.7400 +11281 153572 0.4330 +11281 342979 0.4460 +11282 11320 0.9050 +11282 22949 0.4030 +11282 23443 0.4510 +11282 55624 0.7550 +11282 56913 0.4900 +11282 57134 0.4860 +11282 58493 0.4590 +11282 146664 0.9920 +11282 152586 0.9100 +11283 26279 0.6590 +11283 27158 0.9040 +11283 29785 0.4180 +11283 30814 0.6500 +11283 50487 0.6950 +11283 51167 0.4140 +11283 54905 0.6090 +11283 64600 0.6500 +11283 64816 0.4880 +11283 66002 0.4790 +11283 80777 0.4280 +11283 81579 0.6950 +11283 84647 0.6780 +11283 113612 0.9450 +11283 123745 0.7100 +11283 132949 0.5170 +11283 151056 0.6520 +11283 162998 0.4420 +11283 255189 0.6850 +11283 283748 0.7550 +11283 284541 0.9160 +11283 340665 0.4040 +11283 391013 0.7510 +11283 441234 0.6820 +11283 643904 0.4280 +11283 100137049 0.7080 +11284 22849 0.4910 +11284 23064 0.4960 +11284 23229 0.7140 +11284 23236 0.6680 +11284 23476 0.5170 +11284 23583 0.5290 +11284 27301 0.6670 +11284 27343 0.6730 +11284 27434 0.6360 +11284 51028 0.4020 +11284 51455 0.5250 +11284 51493 0.4680 +11284 51567 0.6280 +11284 54840 0.7590 +11284 55163 0.4780 +11284 55247 0.5910 +11284 55775 0.9290 +11284 57526 0.7960 +11284 57575 0.7540 +11284 64421 0.4440 +11284 79661 0.9020 +11284 79707 0.5790 +11284 79751 0.7980 +11284 79840 0.7360 +11284 81127 0.5450 +11284 84076 0.5240 +11284 92552 0.5990 +11284 116447 0.4300 +11284 124808 0.6220 +11284 170302 0.7510 +11284 197258 0.7390 +11284 200558 0.8680 +11284 252969 0.8830 +11284 256006 0.5370 +11284 286257 0.8410 +11284 729440 0.4780 +11284 100533467 0.4280 +11285 11316 0.4140 +11285 22856 0.6620 +11285 23169 0.5060 +11285 26035 0.5880 +11285 26229 0.8820 +11285 26262 0.4920 +11285 27087 0.4490 +11285 29940 0.4740 +11285 51363 0.4470 +11285 53947 0.4220 +11285 54480 0.6560 +11285 54732 0.5320 +11285 55033 0.6250 +11285 55343 0.4800 +11285 55454 0.6560 +11285 55501 0.4510 +11285 55790 0.6650 +11285 56548 0.4620 +11285 63827 0.4840 +11285 64131 0.9780 +11285 64132 0.9790 +11285 64579 0.4110 +11285 79087 0.6360 +11285 79586 0.6060 +11285 80146 0.5690 +11285 80256 0.4300 +11285 80758 0.4550 +11285 83548 0.4030 +11285 84627 0.5840 +11285 84936 0.4590 +11285 91252 0.7070 +11285 92344 0.4020 +11285 92370 0.4960 +11285 113189 0.7280 +11285 124583 0.4380 +11285 124872 0.4470 +11285 126792 0.9880 +11285 135152 0.4130 +11285 143458 0.4230 +11285 166012 0.4600 +11285 221914 0.5650 +11285 337876 0.4540 +11285 347734 0.7470 +11285 375790 0.5050 +11309 23166 0.4170 +11309 28232 0.4990 +11309 51081 0.5750 +11309 53919 0.5020 +11309 54209 0.4520 +11309 54575 0.4990 +11309 54576 0.5010 +11309 54577 0.4990 +11309 54578 0.5340 +11309 54657 0.5250 +11309 54658 0.5270 +11309 54659 0.4180 +11309 55244 0.7460 +11309 55867 0.6770 +11309 114571 0.7110 +11309 123264 0.5300 +11309 146802 0.5810 +11309 200931 0.5570 +11309 345274 0.4260 +11311 11336 0.4590 +11311 22796 0.6740 +11311 23256 0.7810 +11311 23265 0.4020 +11311 23339 0.9580 +11311 23355 0.8100 +11311 23673 0.7590 +11311 25821 0.9000 +11311 25839 0.8230 +11311 26056 0.6530 +11311 26276 0.9020 +11311 27072 0.9350 +11311 27243 0.5030 +11311 28956 0.4690 +11311 30845 0.5350 +11311 30846 0.5640 +11311 30849 0.4680 +11311 51028 0.4360 +11311 51160 0.5620 +11311 51177 0.7080 +11311 51542 0.6210 +11311 51614 0.9000 +11311 51622 0.5560 +11311 51699 0.5390 +11311 53407 0.5810 +11311 55014 0.4540 +11311 55275 0.6690 +11311 55737 0.5400 +11311 55823 0.9300 +11311 57410 0.4270 +11311 57511 0.7610 +11311 57617 0.9700 +11311 60412 0.4770 +11311 63894 0.8500 +11311 64145 0.9990 +11311 64601 0.9750 +11311 65082 0.9480 +11311 79650 0.4320 +11311 79719 0.4240 +11311 83548 0.7300 +11311 84313 0.5600 +11311 84315 0.4260 +11311 84522 0.5930 +11311 91949 0.7550 +11311 93661 0.4740 +11311 126003 0.4640 +11311 143187 0.9460 +11311 157680 0.5270 +11311 203062 0.4840 +11311 203245 0.4180 +11311 221960 0.5530 +11313 11343 0.4280 +11313 23390 0.4890 +11313 23659 0.4030 +11313 25921 0.4980 +11313 26090 0.5050 +11313 29800 0.4380 +11313 29801 0.4140 +11313 51104 0.5000 +11313 51114 0.4410 +11313 51148 0.4570 +11313 51201 0.4720 +11313 51304 0.5230 +11313 51400 0.4950 +11313 54503 0.4710 +11313 54680 0.5080 +11313 55146 0.4100 +11313 55347 0.5440 +11313 55625 0.6120 +11313 55707 0.4130 +11313 56261 0.9430 +11313 57095 0.5200 +11313 57406 0.5100 +11313 57552 0.4310 +11313 58489 0.4740 +11313 60506 0.4420 +11313 64077 0.4140 +11313 64429 0.5590 +11313 81926 0.6180 +11313 83451 0.5560 +11313 84243 0.4570 +11313 84287 0.5320 +11313 84945 0.5890 +11313 151056 0.9260 +11313 151246 0.4430 +11313 158866 0.4470 +11313 171586 0.4880 +11313 254359 0.5300 +11313 285148 0.4050 +11313 375775 0.9020 +11314 22914 0.4400 +11314 23166 0.5170 +11314 26151 0.6180 +11314 27036 0.6990 +11314 27180 0.4760 +11314 27181 0.5350 +11314 27294 0.4730 +11314 29992 0.4440 +11314 50856 0.4930 +11314 51311 0.4110 +11314 51348 0.4550 +11314 51744 0.5220 +11314 54209 0.5690 +11314 54210 0.6570 +11314 54440 0.4810 +11314 57521 0.4300 +11314 64098 0.4470 +11314 64581 0.4630 +11314 79092 0.5330 +11314 79865 0.4530 +11314 80381 0.4790 +11314 84808 0.4060 +11314 84868 0.5320 +11314 91937 0.5710 +11314 94015 0.4370 +11314 114799 0.4280 +11314 115350 0.4660 +11314 115352 0.4160 +11314 115653 0.4640 +11314 124599 0.8210 +11314 131450 0.5800 +11314 146722 0.7620 +11314 146894 0.5760 +11314 157570 0.4260 +11314 259197 0.4470 +11314 284021 0.4530 +11314 285852 0.4840 +11314 340205 0.5180 +11314 342510 0.6460 +11314 100131439 0.6290 +11315 11331 0.4250 +11315 22948 0.4760 +11315 23038 0.4380 +11315 23208 0.5680 +11315 23317 0.5780 +11315 23400 0.9570 +11315 23435 0.5590 +11315 23478 0.4100 +11315 23521 0.4960 +11315 23590 0.4320 +11315 23623 0.4310 +11315 25793 0.8640 +11315 25824 0.7720 +11315 25828 0.4710 +11315 25978 0.5640 +11315 26058 0.7270 +11315 26330 0.5170 +11315 27235 0.8600 +11315 27243 0.4890 +11315 27338 0.4310 +11315 27429 0.7220 +11315 28998 0.4050 +11315 29058 0.5570 +11315 29937 0.5380 +11315 29966 0.7100 +11315 29978 0.4050 +11315 51024 0.5530 +11315 51031 0.5660 +11315 51079 0.4040 +11315 51142 0.7360 +11315 51143 0.5040 +11315 51160 0.4910 +11315 51179 0.7990 +11315 51264 0.5040 +11315 51271 0.4040 +11315 51567 0.4600 +11315 51652 0.4040 +11315 51725 0.4300 +11315 51726 0.6620 +11315 51734 0.4210 +11315 54205 0.5530 +11315 54363 0.7990 +11315 54431 0.4520 +11315 54543 0.4380 +11315 54832 0.5820 +11315 55173 0.5880 +11315 55187 0.4110 +11315 55288 0.6250 +11315 55486 0.5110 +11315 55611 0.4380 +11315 55669 0.5230 +11315 55737 0.8430 +11315 56244 0.4140 +11315 56954 0.6020 +11315 56957 0.8880 +11315 57107 0.4620 +11315 57120 0.5130 +11315 57469 0.4300 +11315 64800 0.9340 +11315 64983 0.4520 +11315 65018 0.9990 +11315 79643 0.4050 +11315 79714 0.4280 +11315 80025 0.4330 +11315 80208 0.4140 +11315 80325 0.4050 +11315 81570 0.4380 +11315 84693 0.4580 +11315 91782 0.4090 +11315 93343 0.4130 +11315 93974 0.4530 +11315 116442 0.5070 +11315 120892 0.9880 +11315 126393 0.4800 +11315 128866 0.5840 +11315 135138 0.4370 +11315 137492 0.4210 +11315 140735 0.5440 +11315 140809 0.4250 +11315 143244 0.4470 +11315 144811 0.4140 +11315 155061 0.4470 +11315 203228 0.4470 +11315 257202 0.5300 +11315 347862 0.5610 +11315 374291 0.4610 +11315 401505 0.4100 +11315 493869 0.5450 +11315 653361 0.8350 +11315 100130890 0.6910 +11315 100131187 0.6940 +11316 22818 0.9990 +11316 22820 0.9960 +11316 22872 0.4790 +11316 23423 0.7520 +11316 23560 0.4220 +11316 25898 0.4240 +11316 26286 0.6550 +11316 26958 0.9880 +11316 27243 0.4350 +11316 51014 0.7350 +11316 51073 0.4250 +11316 51226 0.9810 +11316 51272 0.6340 +11316 51290 0.5700 +11316 51594 0.6370 +11316 51614 0.5910 +11316 53407 0.6280 +11316 54732 0.6620 +11316 55352 0.4280 +11316 55738 0.7360 +11316 55850 0.5610 +11316 56005 0.6440 +11316 57410 0.9060 +11316 60561 0.6140 +11316 63908 0.5270 +11316 64083 0.6200 +11316 65263 0.4800 +11316 66005 0.5180 +11316 79170 0.7530 +11316 81876 0.6360 +11316 83443 0.5390 +11316 84364 0.7480 +11316 114960 0.6800 +11316 137682 0.5130 +11316 203068 0.4440 +11316 205428 0.7200 +11316 338917 0.4120 +11316 340390 0.5130 +11316 374291 0.5640 +11317 22938 0.9230 +11317 23462 0.4090 +11317 25942 0.9230 +11317 28514 0.5120 +11317 54567 0.7360 +11317 55534 0.9460 +11317 79685 0.9060 +11317 84441 0.9590 +11317 113878 0.4150 +11317 168620 0.5110 +11317 256297 0.9940 +11317 342371 0.9000 +11317 387332 0.9050 +11318 55576 0.4120 +11318 57007 0.4080 +11318 200558 0.4690 +11318 403313 0.5130 +11319 23020 0.8840 +11319 23154 0.5980 +11319 25980 0.9550 +11319 51759 0.5880 +11319 54680 0.4050 +11319 55011 0.7820 +11319 55622 0.6270 +11319 55837 0.8170 +11319 55915 0.5990 +11319 57456 0.6360 +11319 79657 0.6350 +11319 83444 0.4480 +11319 347404 0.4180 +11320 51019 0.4190 +11320 51318 0.4370 +11320 55624 0.7200 +11320 56913 0.4610 +11320 56975 0.5080 +11320 57134 0.4400 +11320 64963 0.4400 +11320 113251 0.4180 +11320 146664 0.9900 +11320 152586 0.9090 +11320 170384 0.4180 +11321 22827 0.4860 +11321 23248 0.5960 +11321 23274 0.8340 +11321 25855 0.4420 +11321 25885 0.6800 +11321 25980 0.4470 +11321 26015 0.9870 +11321 27297 0.4270 +11321 29959 0.4360 +11321 51082 0.6990 +11321 51106 0.4080 +11321 51184 0.9870 +11321 51236 0.4030 +11321 51493 0.6280 +11321 51530 0.4880 +11321 51728 0.4910 +11321 54107 0.4210 +11321 54529 0.4470 +11321 54707 0.9820 +11321 55011 0.8580 +11321 55140 0.4870 +11321 55197 0.7740 +11321 55703 0.8140 +11321 55718 0.6640 +11321 55735 0.4390 +11321 55795 0.4630 +11321 57466 0.4070 +11321 58490 0.8550 +11321 60491 0.6710 +11321 64838 0.4260 +11321 65123 0.7770 +11321 79635 0.5820 +11321 79657 0.9350 +11321 79871 0.9950 +11321 81488 0.8680 +11321 84138 0.6790 +11321 84172 0.6620 +11321 84365 0.4080 +11321 84450 0.5810 +11321 171568 0.4180 +11321 390077 0.5440 +11322 23586 0.5180 +11322 51170 0.4740 +11322 51337 0.5280 +11322 54923 0.4750 +11322 84174 0.4500 +11322 84868 0.7930 +11322 85414 0.4330 +11322 120103 0.4480 +11322 147138 0.7400 +11322 151651 0.4220 +11322 200958 0.4290 +11322 388015 0.4650 +11325 11338 0.4010 +11325 22794 0.5310 +11325 22826 0.4350 +11325 22827 0.5390 +11325 22887 0.4570 +11325 23020 0.4500 +11325 23076 0.4550 +11325 23131 0.4090 +11325 23246 0.4250 +11325 23350 0.8800 +11325 23368 0.4330 +11325 23398 0.4830 +11325 23450 0.9950 +11325 23451 0.9990 +11325 23481 0.4120 +11325 23560 0.4700 +11325 24148 0.7460 +11325 24149 0.4170 +11325 25921 0.4450 +11325 25949 0.4320 +11325 26121 0.5450 +11325 27161 0.6710 +11325 27327 0.4840 +11325 27339 0.6940 +11325 29889 0.4050 +11325 51362 0.4990 +11325 51602 0.4640 +11325 51639 0.9400 +11325 51747 0.6680 +11325 54606 0.4070 +11325 54707 0.4910 +11325 54883 0.4490 +11325 55094 0.4430 +11325 55100 0.4400 +11325 55110 0.5300 +11325 55339 0.4780 +11325 55599 0.5580 +11325 55702 0.4530 +11325 55954 0.7410 +11325 57062 0.4210 +11325 57136 0.4860 +11325 57647 0.4110 +11325 58517 0.4530 +11325 60625 0.6760 +11325 64318 0.4270 +11325 65109 0.4740 +11325 79665 0.4290 +11325 80177 0.4250 +11325 81608 0.5430 +11325 83443 0.9940 +11325 84081 0.5320 +11325 84844 0.9920 +11325 84991 0.7140 +11325 85313 0.6080 +11325 85437 0.5640 +11325 87178 0.5260 +11325 90957 0.4490 +11325 100506144 0.4660 +11326 22918 0.4190 +11326 23166 0.5290 +11326 23601 0.4510 +11326 51338 0.9580 +11326 54209 0.6100 +11326 55576 0.4460 +11326 56833 0.4060 +11326 57413 0.7640 +11326 58475 0.4170 +11326 64231 0.6840 +11326 84868 0.4910 +11326 91937 0.5990 +11326 165530 0.7020 +11326 493829 0.4030 +11328 22948 0.5350 +11328 25959 0.4380 +11328 26048 0.4900 +11328 26224 0.4070 +11328 26234 0.4190 +11328 26330 0.4410 +11328 26985 0.4140 +11328 54461 0.4550 +11328 55171 0.4040 +11328 57333 0.4390 +11328 63971 0.4160 +11328 79707 0.4010 +11328 81792 0.5640 +11328 83752 0.4610 +11328 84961 0.4090 +11328 131096 0.4150 +11328 150353 0.4030 +11328 283899 0.4490 +11328 284273 0.4450 +11329 22894 0.5280 +11329 23012 0.7760 +11329 23049 0.4640 +11329 23221 0.6230 +11329 25843 0.6730 +11329 26353 0.4130 +11329 51719 0.4130 +11329 51765 0.5240 +11329 54935 0.5160 +11329 55233 0.9740 +11329 60485 0.5410 +11329 64780 0.7440 +11329 79817 0.4510 +11329 79973 0.4100 +11329 81532 0.9710 +11329 85441 0.4180 +11329 90678 0.4350 +11329 92597 0.9190 +11329 115752 0.5240 +11329 117177 0.5460 +11329 121536 0.4730 +11329 126308 0.6380 +11329 129563 0.5280 +11329 148932 0.5100 +11329 171024 0.4520 +11329 221662 0.6890 +11329 222658 0.4570 +11329 285527 0.8740 +11330 23436 0.7450 +11330 51200 0.5860 +11330 93979 0.4650 +11330 284004 0.4750 +11330 285362 0.5550 +11330 342898 0.5630 +11330 440387 0.6180 +11331 11337 0.6830 +11331 11345 0.4800 +11331 23203 0.6300 +11331 23435 0.5910 +11331 23476 0.5100 +11331 23710 0.4580 +11331 23770 0.6790 +11331 23786 0.7050 +11331 26517 0.6810 +11331 26519 0.5050 +11331 26521 0.6530 +11331 27089 0.4300 +11331 27429 0.4890 +11331 28973 0.4100 +11331 29078 0.4200 +11331 29090 0.4600 +11331 29928 0.5130 +11331 30968 0.8660 +11331 51024 0.6480 +11331 51069 0.6040 +11331 51073 0.4600 +11331 51079 0.5790 +11331 51116 0.4310 +11331 51117 0.4070 +11331 51300 0.6150 +11331 54205 0.7880 +11331 54529 0.4070 +11331 54596 0.4140 +11331 54708 0.4330 +11331 54902 0.6700 +11331 54927 0.4100 +11331 55013 0.6210 +11331 55143 0.4400 +11331 55210 0.7890 +11331 55288 0.5490 +11331 55486 0.8730 +11331 55626 0.4520 +11331 55669 0.9070 +11331 55735 0.5070 +11331 56848 0.7100 +11331 56993 0.6210 +11331 57221 0.9620 +11331 57407 0.6720 +11331 65003 0.4170 +11331 65018 0.7290 +11331 65260 0.4350 +11331 79017 0.4740 +11331 79568 0.7430 +11331 79594 0.5080 +11331 79608 0.4390 +11331 80139 0.4140 +11331 81570 0.5710 +11331 81631 0.7180 +11331 83858 0.7220 +11331 84134 0.4190 +11331 84303 0.5050 +11331 84557 0.4950 +11331 84749 0.5350 +11331 84896 0.5910 +11331 84908 0.4520 +11331 89941 0.4790 +11331 90550 0.7320 +11331 91419 0.4870 +11331 91689 0.5400 +11331 91942 0.4480 +11331 92609 0.7600 +11331 94081 0.4120 +11331 114971 0.4310 +11331 115209 0.6080 +11331 131076 0.5750 +11331 131118 0.8810 +11331 131474 0.5570 +11331 139322 0.5070 +11331 139341 0.8190 +11331 143187 0.4180 +11331 192111 0.8150 +11331 192286 0.4170 +11331 221154 0.7970 +11331 286097 0.4990 +11331 374291 0.4830 +11331 548596 0.4110 +11331 728568 0.4870 +11331 100287932 0.6000 +11332 23205 0.4390 +11332 23597 0.5600 +11332 26027 0.5850 +11332 51084 0.5130 +11332 51144 0.5110 +11332 51373 0.5110 +11332 55856 0.7890 +11332 81617 0.4450 +11332 84617 0.4820 +11332 84957 0.4330 +11332 117145 0.9150 +11332 121601 0.5100 +11332 122970 0.9450 +11332 132949 0.4160 +11332 134526 0.6230 +11332 161882 0.4440 +11332 246213 0.4970 +11332 284486 0.9230 +11332 317749 0.5150 +11332 317781 0.4330 +11332 387509 0.4180 +11332 441531 0.4700 +11332 641371 0.9770 +11332 641372 0.5030 +11332 643641 0.4780 +11333 26024 0.4400 +11333 55005 0.4380 +11333 146050 0.4200 +11333 374877 0.4310 +11333 731220 0.4630 +11333 100127983 0.4670 +11334 51684 0.8220 +11334 55096 0.6240 +11334 55582 0.5490 +11334 84309 0.4070 +11334 374654 0.5490 +11335 22850 0.7970 +11335 22893 0.7290 +11335 22933 0.6370 +11335 23028 0.9740 +11335 23126 0.8780 +11335 23133 0.5020 +11335 23135 0.4470 +11335 23186 0.8910 +11335 23269 0.8550 +11335 23347 0.6700 +11335 23378 0.5680 +11335 23394 0.8560 +11335 23405 0.4370 +11335 23411 0.7790 +11335 23429 0.8710 +11335 23466 0.4080 +11335 23468 0.9750 +11335 23476 0.7630 +11335 23492 0.5570 +11335 23512 0.6750 +11335 23613 0.4730 +11335 25836 0.8000 +11335 25842 0.4630 +11335 25936 0.8800 +11335 26013 0.9790 +11335 26038 0.6170 +11335 26277 0.9210 +11335 26523 0.4420 +11335 27161 0.4110 +11335 29072 0.4070 +11335 29128 0.6700 +11335 51111 0.6720 +11335 51127 0.4480 +11335 51547 0.4850 +11335 51592 0.6660 +11335 51755 0.4790 +11335 53615 0.5790 +11335 54145 0.5370 +11335 54443 0.4180 +11335 54815 0.6240 +11335 54816 0.7110 +11335 54880 0.5880 +11335 55609 0.5440 +11335 55651 0.4280 +11335 55729 0.5390 +11335 55766 0.5490 +11335 55791 0.8070 +11335 56916 0.4430 +11335 57082 0.4820 +11335 57332 0.5700 +11335 57337 0.4700 +11335 57459 0.5820 +11335 57504 0.5410 +11335 57520 0.5590 +11335 58499 0.6140 +11335 78994 0.5990 +11335 79003 0.7020 +11335 79618 0.4140 +11335 79723 0.8270 +11335 79813 0.8620 +11335 79968 0.7570 +11335 79980 0.8950 +11335 80169 0.4470 +11335 83746 0.9930 +11335 84108 0.9960 +11335 84146 0.5450 +11335 84678 0.6740 +11335 84759 0.5550 +11335 84787 0.8840 +11335 85236 0.5380 +11335 90416 0.7010 +11335 94239 0.6360 +11335 120892 0.5100 +11335 124359 0.4450 +11335 126961 0.9370 +11335 128312 0.5430 +11335 143689 0.5470 +11335 147179 0.4040 +11335 151648 0.5530 +11335 151871 0.4060 +11335 168455 0.4200 +11335 192286 0.4240 +11335 221150 0.4240 +11335 255626 0.5610 +11335 283489 0.7750 +11335 333932 0.9330 +11335 346171 0.5150 +11335 440093 0.9990 +11335 440686 0.9990 +11335 474382 0.6960 +11335 646817 0.4020 +11335 653604 0.9990 +11335 100288687 0.4630 +11335 100527963 0.6560 +11335 100532731 0.4380 +11336 22796 0.4640 +11336 23233 0.9890 +11336 23256 0.4800 +11336 23265 0.9990 +11336 23386 0.4470 +11336 23433 0.9460 +11336 25839 0.7790 +11336 25924 0.9330 +11336 25978 0.4320 +11336 27095 0.4100 +11336 27339 0.5720 +11336 29091 0.5760 +11336 50807 0.5350 +11336 51542 0.5080 +11336 51552 0.6510 +11336 54536 0.9990 +11336 54788 0.8220 +11336 55275 0.7730 +11336 55763 0.9990 +11336 55770 0.9990 +11336 55857 0.4350 +11336 56731 0.4470 +11336 57511 0.6900 +11336 60412 0.9990 +11336 64753 0.4020 +11336 79036 0.5370 +11336 79058 0.5180 +11336 80331 0.5390 +11336 83548 0.4910 +11336 84062 0.5140 +11336 91828 0.6070 +11336 91949 0.6670 +11336 117177 0.7170 +11336 126208 0.6080 +11336 132320 0.4260 +11336 149371 0.9990 +11336 283849 0.6780 +11336 644145 0.7940 +11337 11345 0.9640 +11337 22863 0.9930 +11337 22906 0.4720 +11337 22954 0.4290 +11337 22994 0.5890 +11337 23001 0.9870 +11337 23130 0.8920 +11337 23192 0.9990 +11337 23339 0.4120 +11337 23376 0.5180 +11337 23524 0.4390 +11337 23549 0.4130 +11337 23710 0.9830 +11337 23770 0.9200 +11337 23786 0.9920 +11337 25829 0.5390 +11337 25851 0.4050 +11337 25923 0.8840 +11337 25978 0.5050 +11337 25989 0.5750 +11337 26100 0.8930 +11337 27243 0.5970 +11337 27304 0.4200 +11337 29110 0.4500 +11337 29979 0.5000 +11337 29982 0.4160 +11337 30849 0.8670 +11337 51024 0.5240 +11337 51202 0.5880 +11337 51304 0.5900 +11337 51368 0.8320 +11337 51569 0.4470 +11337 51652 0.4700 +11337 53349 0.7450 +11337 53917 0.6780 +11337 54205 0.4630 +11337 54463 0.9980 +11337 55014 0.9670 +11337 55054 0.9790 +11337 55062 0.8190 +11337 55102 0.7330 +11337 55201 0.7750 +11337 55236 0.4780 +11337 55357 0.4350 +11337 55361 0.6430 +11337 55486 0.4510 +11337 55626 0.8200 +11337 55669 0.4840 +11337 55751 0.4440 +11337 55879 0.6600 +11337 56270 0.4690 +11337 57448 0.4500 +11337 57521 0.4560 +11337 57600 0.5060 +11337 57617 0.4010 +11337 57658 0.7260 +11337 57724 0.5470 +11337 58476 0.9590 +11337 58513 0.4530 +11337 60673 0.8370 +11337 64083 0.4080 +11337 64422 0.9990 +11337 64786 0.9660 +11337 65018 0.6860 +11337 79065 0.6800 +11337 79137 0.8420 +11337 79443 0.5780 +11337 79594 0.7310 +11337 79643 0.4330 +11337 79735 0.9580 +11337 79876 0.6410 +11337 81631 0.7890 +11337 81671 0.5070 +11337 83734 0.9030 +11337 84078 0.5310 +11337 84557 0.8650 +11337 84938 0.9930 +11337 84971 0.9910 +11337 89849 0.6240 +11337 89890 0.8410 +11337 91754 0.4770 +11337 91782 0.4130 +11337 92421 0.4700 +11337 92552 0.6840 +11337 94241 0.6130 +11337 96459 0.7380 +11337 112574 0.6870 +11337 115201 0.9960 +11337 124997 0.4720 +11337 128866 0.5150 +11337 139341 0.9990 +11337 140901 0.4380 +11337 142678 0.5120 +11337 149420 0.4380 +11337 162427 0.8580 +11337 192111 0.4050 +11337 201163 0.6970 +11337 202915 0.5370 +11337 221302 0.4390 +11337 225689 0.7360 +11337 285973 0.6230 +11337 345611 0.4890 +11337 389493 0.4200 +11337 440738 0.6020 +11337 441925 0.9510 +11338 22794 0.6760 +11338 22826 0.5460 +11338 22827 0.8870 +11338 22913 0.5600 +11338 22916 0.8810 +11338 22938 0.8300 +11338 22985 0.7170 +11338 23016 0.4160 +11338 23020 0.7580 +11338 23054 0.4160 +11338 23131 0.4400 +11338 23165 0.4200 +11338 23210 0.9790 +11338 23212 0.4310 +11338 23225 0.4160 +11338 23244 0.4180 +11338 23279 0.4330 +11338 23350 0.7630 +11338 23398 0.5800 +11338 23435 0.9080 +11338 23450 0.9980 +11338 23451 0.9990 +11338 23476 0.4910 +11338 23511 0.4320 +11338 23524 0.6150 +11338 23543 0.7640 +11338 23636 0.6990 +11338 23759 0.4540 +11338 24144 0.6480 +11338 24148 0.7440 +11338 25766 0.9860 +11338 25949 0.6800 +11338 25957 0.8500 +11338 25962 0.4540 +11338 26017 0.4990 +11338 26058 0.4530 +11338 26097 0.5860 +11338 26135 0.4510 +11338 26528 0.5790 +11338 26576 0.6280 +11338 26986 0.6250 +11338 27044 0.4860 +11338 27238 0.5110 +11338 27258 0.5150 +11338 27316 0.8600 +11338 27336 0.6570 +11338 27339 0.9690 +11338 29088 0.5060 +11338 29115 0.5340 +11338 29894 0.8320 +11338 29896 0.6960 +11338 51322 0.5550 +11338 51340 0.8600 +11338 51362 0.8930 +11338 51428 0.7170 +11338 51503 0.6300 +11338 51585 0.7970 +11338 51593 0.7580 +11338 51602 0.5150 +11338 51631 0.9440 +11338 51634 0.5480 +11338 51639 0.9980 +11338 51645 0.5920 +11338 51690 0.5990 +11338 51692 0.4530 +11338 51747 0.8200 +11338 51759 0.5170 +11338 53371 0.4430 +11338 53938 0.5040 +11338 54487 0.5600 +11338 54715 0.4740 +11338 54819 0.4180 +11338 54845 0.4340 +11338 54952 0.8090 +11338 55015 0.8010 +11338 55082 0.6880 +11338 55110 0.7430 +11338 55145 0.5140 +11338 55269 0.4610 +11338 55342 0.5550 +11338 55660 0.8780 +11338 55692 0.8890 +11338 55696 0.7790 +11338 55702 0.4720 +11338 55706 0.4270 +11338 55746 0.6800 +11338 55749 0.7110 +11338 55954 0.5260 +11338 56259 0.8600 +11338 56339 0.4010 +11338 56903 0.8680 +11338 56949 0.7870 +11338 56970 0.4700 +11338 57122 0.4320 +11338 57187 0.6390 +11338 57461 0.6390 +11338 57703 0.6070 +11338 57794 0.9970 +11338 58155 0.4730 +11338 58506 0.5460 +11338 58509 0.5960 +11338 58517 0.9830 +11338 63035 0.4270 +11338 63932 0.5190 +11338 64895 0.9200 +11338 65109 0.5610 +11338 78990 0.4160 +11338 79023 0.4880 +11338 79165 0.5060 +11338 79180 0.4820 +11338 79228 0.4550 +11338 79576 0.5010 +11338 79696 0.5480 +11338 79706 0.5290 +11338 79869 0.9800 +11338 79882 0.4130 +11338 79902 0.4400 +11338 80004 0.4010 +11338 80742 0.7680 +11338 81608 0.4060 +11338 81892 0.4200 +11338 81929 0.4260 +11338 83443 0.9970 +11338 83641 0.4110 +11338 83743 0.4570 +11338 83938 0.6490 +11338 84271 0.6460 +11338 84324 0.7070 +11338 84530 0.4740 +11338 84811 0.6810 +11338 84844 0.9980 +11338 84950 0.4610 +11338 84991 0.8430 +11338 90379 0.4210 +11338 90850 0.7890 +11338 91603 0.5590 +11338 92906 0.5490 +11338 96764 0.6160 +11338 112939 0.6490 +11338 124245 0.6480 +11338 129401 0.4420 +11338 135295 0.5980 +11338 143884 0.5020 +11338 145501 0.4140 +11338 151903 0.5040 +11338 163859 0.5590 +11338 171023 0.4190 +11338 199746 0.9940 +11338 220074 0.6490 +11338 220988 0.6270 +11338 257218 0.4650 +11338 283899 0.4460 +11338 284695 0.4570 +11338 347744 0.7950 +11338 348995 0.4760 +11338 392517 0.6370 +11338 440093 0.5510 +11338 440686 0.5520 +11338 653604 0.5590 +11338 100101267 0.4370 +11338 100996928 0.7040 +11339 11340 0.8250 +11339 22974 0.7280 +11339 23016 0.5040 +11339 23024 0.4680 +11339 23397 0.4380 +11339 23421 0.7030 +11339 23532 0.8110 +11339 24137 0.6850 +11339 26271 0.4490 +11339 29028 0.4400 +11339 29089 0.8210 +11339 29127 0.8260 +11339 51010 0.5450 +11339 51013 0.4950 +11339 51053 0.4950 +11339 51147 0.4320 +11339 51203 0.8720 +11339 51514 0.6530 +11339 51659 0.6000 +11339 51773 0.5940 +11339 54069 0.9990 +11339 54443 0.4180 +11339 54478 0.4410 +11339 54512 0.4430 +11339 54821 0.5480 +11339 54892 0.6110 +11339 55010 0.5590 +11339 55055 0.5970 +11339 55143 0.8560 +11339 55165 0.8400 +11339 55166 0.6910 +11339 55215 0.4830 +11339 55247 0.4060 +11339 55320 0.9990 +11339 55355 0.9570 +11339 55388 0.7170 +11339 55635 0.7370 +11339 55723 0.4370 +11339 55789 0.7740 +11339 55839 0.8190 +11339 56915 0.5160 +11339 56992 0.8010 +11339 57082 0.7580 +11339 57405 0.7910 +11339 57448 0.4310 +11339 64105 0.7340 +11339 64151 0.7830 +11339 64682 0.4370 +11339 64946 0.8110 +11339 79000 0.4440 +11339 79019 0.8570 +11339 79075 0.4190 +11339 79172 0.6660 +11339 79682 0.8150 +11339 79733 0.5880 +11339 79801 0.4730 +11339 80152 0.6870 +11339 81557 0.4760 +11339 81569 0.4650 +11339 81610 0.5460 +11339 81620 0.4430 +11339 81930 0.5280 +11339 83461 0.6710 +11339 83540 0.8640 +11339 84057 0.7950 +11339 84289 0.4270 +11339 84823 0.4800 +11339 90381 0.4410 +11339 90417 0.4580 +11339 91687 0.6730 +11339 113115 0.5070 +11339 113130 0.6980 +11339 116028 0.4460 +11339 118460 0.4930 +11339 145483 0.5910 +11339 147841 0.4500 +11339 150468 0.4400 +11339 151246 0.4500 +11339 157313 0.5550 +11339 157570 0.4390 +11339 170626 0.5100 +11339 201254 0.5890 +11339 201725 0.4970 +11339 220042 0.4030 +11339 220134 0.5940 +11339 221150 0.7720 +11339 259266 0.7500 +11339 378708 0.7100 +11339 387103 0.8050 +11339 401541 0.6820 +11339 441531 0.4220 +11339 728239 0.5380 +11340 22803 0.5920 +11340 22894 0.9990 +11340 22907 0.4760 +11340 22984 0.8170 +11340 23016 0.9990 +11340 23049 0.5580 +11340 23054 0.4920 +11340 23160 0.8270 +11340 23404 0.9990 +11340 23517 0.9960 +11340 23532 0.7270 +11340 25879 0.8310 +11340 25926 0.5000 +11340 26019 0.4650 +11340 26156 0.5600 +11340 26574 0.5720 +11340 26986 0.5440 +11340 27042 0.4930 +11340 27257 0.5100 +11340 27258 0.4110 +11340 27292 0.6660 +11340 27340 0.7170 +11340 27341 0.7520 +11340 29880 0.4330 +11340 29907 0.4330 +11340 29997 0.5400 +11340 30836 0.6280 +11340 51010 0.9990 +11340 51013 0.9990 +11340 51065 0.4480 +11340 51077 0.8130 +11340 51096 0.7990 +11340 51106 0.4320 +11340 51118 0.7750 +11340 51149 0.4420 +11340 51187 0.4930 +11340 51202 0.5060 +11340 51317 0.5020 +11340 51388 0.9510 +11340 51574 0.4570 +11340 51602 0.8410 +11340 51667 0.4440 +11340 51690 0.5130 +11340 54464 0.8080 +11340 54512 0.9990 +11340 54555 0.4590 +11340 54935 0.6380 +11340 54969 0.4240 +11340 55011 0.6090 +11340 55127 0.8240 +11340 55226 0.6680 +11340 55272 0.7480 +11340 55299 0.4610 +11340 55325 0.4080 +11340 55596 0.9110 +11340 55601 0.4010 +11340 55646 0.4680 +11340 55651 0.4590 +11340 55802 0.5160 +11340 55813 0.7890 +11340 56902 0.5830 +11340 56915 0.9990 +11340 57050 0.8330 +11340 57647 0.5330 +11340 64216 0.5510 +11340 64282 0.5060 +11340 65083 0.7720 +11340 79050 0.8130 +11340 79571 0.4990 +11340 79954 0.5670 +11340 80349 0.7670 +11340 83879 0.4210 +11340 84128 0.7700 +11340 84135 0.7200 +11340 84154 0.4140 +11340 84186 0.6970 +11340 84294 0.5030 +11340 84319 0.4980 +11340 84365 0.4200 +11340 84817 0.4810 +11340 84916 0.7910 +11340 85441 0.7410 +11340 87178 0.9560 +11340 88745 0.5390 +11340 89872 0.5720 +11340 92856 0.7890 +11340 115752 0.9990 +11340 118460 0.9990 +11340 129563 0.9490 +11340 140894 0.4930 +11340 167227 0.6220 +11340 196441 0.9400 +11340 283989 0.4020 +11340 345630 0.4750 +11340 100509620 0.5720 +11341 57471 0.5000 +11342 23557 0.5900 +11342 23753 0.4310 +11342 26001 0.5030 +11342 79989 0.4010 +11342 92703 0.5910 +11342 138065 0.4020 +11342 100507055 0.4110 +11343 22999 0.5560 +11343 23171 0.4620 +11343 23205 0.8170 +11343 23305 0.8460 +11343 23761 0.4490 +11343 26090 0.8390 +11343 27163 0.7800 +11343 29957 0.6060 +11343 50486 0.5000 +11343 51079 0.9450 +11343 51099 0.7710 +11343 51393 0.4340 +11343 51400 0.4290 +11343 51573 0.6990 +11343 51703 0.8670 +11343 54926 0.4790 +11343 54947 0.4360 +11343 55326 0.4200 +11343 55349 0.4120 +11343 55750 0.9220 +11343 55967 0.9580 +11343 56894 0.4250 +11343 56895 0.4080 +11343 56912 0.4120 +11343 57016 0.9110 +11343 57104 0.9790 +11343 57406 0.9040 +11343 57407 0.5560 +11343 57552 0.9620 +11343 63874 0.7470 +11343 79085 0.5890 +11343 79153 0.4710 +11343 79728 0.8280 +11343 79888 0.4430 +11343 80168 0.9250 +11343 80195 0.5560 +11343 80339 0.9380 +11343 81616 0.8110 +11343 83451 0.5130 +11343 84649 0.5500 +11343 84696 0.4030 +11343 84803 0.5250 +11343 84939 0.6270 +11343 91942 0.5200 +11343 114789 0.5880 +11343 116236 0.4010 +11343 116255 0.9320 +11343 119548 0.9050 +11343 132949 0.4300 +11343 137872 0.7990 +11343 137964 0.4810 +11343 139221 0.6270 +11343 139760 0.5970 +11343 158584 0.6700 +11343 171586 0.4790 +11343 221955 0.8290 +11343 222236 0.9200 +11343 284161 0.4800 +11343 284427 0.5870 +11343 284680 0.5560 +11343 346606 0.9200 +11343 374291 0.9140 +11343 376497 0.4540 +11343 440503 0.5560 +11343 641372 0.4350 +11343 728317 0.6270 +11343 729359 0.5070 +11344 23136 0.5000 +11344 25794 0.6390 +11344 25861 0.9170 +11344 28988 0.5230 +11344 29765 0.7360 +11344 29766 0.7930 +11344 51168 0.9410 +11344 53405 0.5840 +11344 53904 0.8930 +11344 54106 0.5000 +11344 55604 0.5140 +11344 55813 0.6190 +11344 58509 0.5310 +11344 64072 0.5350 +11344 64787 0.9510 +11344 80335 0.9080 +11344 83660 0.4150 +11344 83715 0.9260 +11344 85477 0.7340 +11344 115650 0.5650 +11344 129446 0.6140 +11344 136319 0.4430 +11344 140469 0.8840 +11344 286262 0.6790 +11344 339768 0.8880 +11344 345456 0.6980 +11344 345651 0.7210 +11344 375189 0.7590 +11344 389207 0.5870 +11344 494513 0.5090 +11344 643226 0.6250 +11344 100529144 0.4800 +11345 22848 0.6130 +11345 22863 0.9940 +11345 22878 0.5040 +11345 22954 0.4050 +11345 23001 0.8360 +11345 23041 0.4620 +11345 23061 0.6530 +11345 23130 0.7080 +11345 23192 0.9990 +11345 23339 0.4660 +11345 23367 0.4320 +11345 23394 0.4020 +11345 23411 0.9740 +11345 23545 0.4300 +11345 23549 0.4410 +11345 23637 0.5110 +11345 23710 0.9520 +11345 23770 0.5940 +11345 23786 0.9720 +11345 25829 0.5370 +11345 25851 0.6720 +11345 25923 0.8690 +11345 25978 0.5420 +11345 25989 0.6030 +11345 26086 0.4570 +11345 26100 0.9400 +11345 26747 0.5870 +11345 27243 0.6520 +11345 27304 0.5530 +11345 29110 0.4820 +11345 29978 0.6920 +11345 29979 0.7170 +11345 29982 0.4060 +11345 30849 0.9120 +11345 50617 0.4580 +11345 50944 0.4230 +11345 51024 0.5740 +11345 51100 0.4760 +11345 51271 0.4590 +11345 51368 0.7170 +11345 51569 0.7810 +11345 51622 0.6700 +11345 51652 0.5440 +11345 51806 0.4830 +11345 53349 0.6920 +11345 53917 0.4400 +11345 54205 0.5530 +11345 54386 0.4910 +11345 54463 0.9320 +11345 54472 0.6210 +11345 55014 0.7170 +11345 55054 0.9900 +11345 55062 0.8700 +11345 55102 0.6000 +11345 55201 0.8560 +11345 55236 0.5340 +11345 55255 0.4120 +11345 55332 0.4700 +11345 55357 0.4110 +11345 55486 0.4340 +11345 55626 0.6700 +11345 55669 0.5040 +11345 55751 0.4100 +11345 55879 0.6500 +11345 55968 0.5750 +11345 56270 0.4770 +11345 56947 0.4560 +11345 57521 0.5050 +11345 57658 0.7900 +11345 57724 0.5710 +11345 58476 0.9740 +11345 58513 0.4560 +11345 59286 0.4080 +11345 60673 0.8220 +11345 64083 0.5970 +11345 64422 0.9990 +11345 64689 0.5390 +11345 64786 0.9830 +11345 65018 0.7080 +11345 79065 0.8140 +11345 79137 0.4760 +11345 79443 0.8190 +11345 79643 0.4660 +11345 79735 0.9720 +11345 79876 0.9940 +11345 81605 0.7190 +11345 81631 0.8710 +11345 81671 0.6230 +11345 83734 0.9370 +11345 84078 0.5020 +11345 84557 0.8290 +11345 84630 0.5140 +11345 84938 0.9900 +11345 84971 0.9930 +11345 89849 0.5780 +11345 89890 0.5850 +11345 91754 0.7130 +11345 91782 0.4270 +11345 91860 0.4690 +11345 92421 0.4700 +11345 94241 0.8250 +11345 115201 0.9950 +11345 128866 0.5120 +11345 133482 0.5930 +11345 136991 0.4940 +11345 139341 0.9860 +11345 140901 0.4380 +11345 142678 0.5190 +11345 149420 0.4380 +11345 163688 0.4690 +11345 192111 0.4270 +11345 200576 0.4150 +11345 202915 0.5370 +11345 221960 0.6630 +11345 285973 0.5900 +11345 345611 0.7040 +11345 440738 0.5990 +11345 441925 0.9530 +11345 474344 0.7500 +11345 643246 0.4380 +11346 22925 0.4550 +11346 22941 0.4320 +11346 23040 0.4060 +11346 23109 0.7340 +11346 23176 0.4140 +11346 23189 0.5390 +11346 23213 0.6650 +11346 23607 0.9620 +11346 25791 0.4450 +11346 25844 0.6500 +11346 25959 0.5560 +11346 27293 0.5070 +11346 51196 0.5190 +11346 54443 0.5880 +11346 55243 0.5330 +11346 55964 0.4020 +11346 56956 0.4680 +11346 64423 0.5810 +11346 83478 0.4430 +11346 84251 0.4420 +11346 84687 0.4880 +11346 91977 0.4220 +11346 163782 0.5100 +11346 345456 0.4470 +11346 375189 0.4560 +22794 22864 0.4340 +22794 22913 0.4660 +22794 22916 0.7290 +22794 22938 0.8050 +22794 22985 0.7470 +22794 23020 0.9830 +22794 23049 0.6490 +22794 23165 0.5090 +22794 23225 0.5010 +22794 23279 0.5210 +22794 23293 0.6650 +22794 23381 0.6730 +22794 23398 0.8010 +22794 23450 0.4940 +22794 23451 0.4360 +22794 23511 0.5130 +22794 23524 0.8520 +22794 23636 0.5130 +22794 23644 0.4010 +22794 24144 0.6200 +22794 25949 0.8020 +22794 26017 0.8050 +22794 26019 0.9940 +22794 26093 0.9270 +22794 26097 0.6740 +22794 26986 0.4740 +22794 27067 0.4690 +22794 27238 0.4250 +22794 27339 0.9110 +22794 29896 0.7000 +22794 51187 0.4050 +22794 51213 0.4990 +22794 51340 0.8380 +22794 51362 0.8960 +22794 51503 0.8300 +22794 51585 0.5430 +22794 51631 0.5430 +22794 51645 0.8000 +22794 53371 0.4990 +22794 54883 0.9810 +22794 55110 0.9990 +22794 55181 0.6440 +22794 55629 0.6610 +22794 55696 0.9080 +22794 55702 0.9790 +22794 55706 0.5040 +22794 55746 0.5660 +22794 55802 0.6770 +22794 56006 0.6620 +22794 56949 0.8010 +22794 57122 0.5090 +22794 57187 0.5640 +22794 57461 0.9790 +22794 57703 0.9920 +22794 58509 0.8010 +22794 64221 0.5200 +22794 65109 0.9990 +22794 65110 0.9990 +22794 79023 0.4990 +22794 79228 0.4990 +22794 79576 0.8010 +22794 79706 0.8240 +22794 79753 0.7180 +22794 79869 0.5980 +22794 79902 0.5420 +22794 80011 0.8060 +22794 80145 0.5350 +22794 81847 0.5590 +22794 81929 0.5040 +22794 83443 0.4490 +22794 84167 0.4610 +22794 84248 0.5680 +22794 84271 0.6830 +22794 84305 0.9510 +22794 84321 0.5160 +22794 84324 0.5280 +22794 84811 0.4160 +22794 113201 0.4960 +22794 124801 0.5660 +22794 129401 0.4990 +22794 143884 0.5980 +22794 199746 0.5410 +22794 317649 0.4730 +22794 339287 0.6070 +22794 348995 0.5040 +22794 100101267 0.5470 +22794 100534599 0.9000 +22795 29992 0.4950 +22795 51019 0.4190 +22795 80781 0.6860 +22795 284217 0.8790 +22795 375790 0.8770 +22796 23256 0.4710 +22796 23265 0.7160 +22796 23584 0.6290 +22796 23786 0.4380 +22796 25839 0.9990 +22796 27314 0.6530 +22796 27333 0.7010 +22796 29104 0.4530 +22796 29126 0.4540 +22796 29844 0.4200 +22796 51143 0.5070 +22796 51164 0.5090 +22796 51272 0.7190 +22796 51335 0.4280 +22796 51542 0.8170 +22796 51560 0.5140 +22796 54536 0.5760 +22796 54734 0.5170 +22796 54840 0.4380 +22796 54951 0.4600 +22796 55275 0.8280 +22796 55610 0.4500 +22796 55858 0.4880 +22796 55860 0.5040 +22796 57134 0.6110 +22796 57511 0.9990 +22796 57589 0.7930 +22796 57645 0.4340 +22796 60561 0.4250 +22796 63908 0.5110 +22796 64083 0.4080 +22796 64689 0.4350 +22796 64745 0.4440 +22796 79086 0.5880 +22796 79571 0.5710 +22796 83452 0.5730 +22796 83548 0.9990 +22796 84516 0.5260 +22796 85365 0.5140 +22796 90196 0.5170 +22796 91949 0.9990 +22796 93661 0.5180 +22796 124997 0.4280 +22796 126208 0.5110 +22796 140735 0.5830 +22796 143187 0.7760 +22796 149371 0.4920 +22796 150483 0.4100 +22796 200312 0.5630 +22796 339122 0.5040 +22796 347517 0.5140 +22796 347734 0.4310 +22796 653519 0.5410 +22796 100996939 0.4100 +22797 51338 0.4270 +22797 79058 0.5250 +22798 22801 0.7470 +22798 22854 0.5540 +22798 22987 0.6750 +22798 55825 0.4270 +22798 59277 0.5400 +22798 84628 0.5500 +22798 84872 0.5170 +22798 284217 0.6130 +22798 643866 0.4390 +22798 728215 0.4360 +22798 728276 0.4270 +22800 22808 0.4160 +22800 22821 0.6910 +22800 23002 0.4560 +22800 23179 0.9370 +22800 23365 0.9120 +22800 25780 0.7710 +22800 27289 0.6070 +22800 50618 0.5410 +22800 51196 0.9190 +22800 51764 0.6500 +22800 54331 0.6580 +22800 54922 0.7400 +22800 55970 0.7510 +22800 57139 0.6170 +22800 59345 0.7050 +22800 60412 0.5210 +22800 64926 0.6960 +22800 65975 0.4440 +22800 79608 0.4280 +22800 83593 0.9220 +22800 94235 0.6500 +22800 115727 0.7460 +22800 120227 0.4340 +22800 139067 0.4160 +22800 100271927 0.6700 +22801 29780 0.6720 +22801 54982 0.4480 +22801 55742 0.7100 +22801 63923 0.6920 +22801 64098 0.6780 +22801 83660 0.7230 +22801 115908 0.4310 +22801 127435 0.5630 +22801 131873 0.7180 +22801 284217 0.8260 +22801 284323 0.4530 +22802 23507 0.5430 +22802 27304 0.4260 +22802 49860 0.4180 +22802 50636 0.4800 +22802 54831 0.6030 +22802 54860 0.7060 +22802 54883 0.5280 +22802 54955 0.5270 +22802 55107 0.9460 +22802 55129 0.6040 +22802 55144 0.4800 +22802 56262 0.5110 +22802 57101 0.9840 +22802 63982 0.4870 +22802 80131 0.5090 +22802 84230 0.5090 +22802 115019 0.4460 +22802 133688 0.4030 +22802 144453 0.4200 +22802 167127 0.4030 +22802 167410 0.5960 +22802 196527 0.6550 +22802 203859 0.5260 +22802 338440 0.4790 +22802 388364 0.4940 +22802 645191 0.4250 +22802 653808 0.5880 +22803 22828 0.6870 +22803 22894 0.7150 +22803 22913 0.4170 +22803 22916 0.6250 +22803 22948 0.6440 +22803 22984 0.6990 +22803 23016 0.4090 +22803 23019 0.4360 +22803 23029 0.4200 +22803 23039 0.4980 +22803 23049 0.5150 +22803 23064 0.8740 +22803 23076 0.5170 +22803 23112 0.4750 +22803 23160 0.6080 +22803 23211 0.4360 +22803 23246 0.6160 +22803 23248 0.7310 +22803 23283 0.4150 +22803 23293 0.4830 +22803 23318 0.4790 +22803 23404 0.4880 +22803 23405 0.7760 +22803 23435 0.6450 +22803 23476 0.5790 +22803 23481 0.4220 +22803 23517 0.7530 +22803 23560 0.4460 +22803 23644 0.5370 +22803 25804 0.4700 +22803 25879 0.4870 +22803 25926 0.5830 +22803 26019 0.7840 +22803 26190 0.4110 +22803 26224 0.4170 +22803 26234 0.4110 +22803 26272 0.4020 +22803 26330 0.4300 +22803 26523 0.5120 +22803 26985 0.4330 +22803 26986 0.4240 +22803 27042 0.4580 +22803 27161 0.5400 +22803 27185 0.4890 +22803 27257 0.5770 +22803 27316 0.4150 +22803 27340 0.6190 +22803 27341 0.5830 +22803 28960 0.5840 +22803 28987 0.5120 +22803 29101 0.4890 +22803 29102 0.6620 +22803 29889 0.5140 +22803 29894 0.4700 +22803 51010 0.5520 +22803 51013 0.4130 +22803 51077 0.5770 +22803 51096 0.6060 +22803 51118 0.4100 +22803 51202 0.6410 +22803 51340 0.6310 +22803 51441 0.4050 +22803 51574 0.6910 +22803 51585 0.7220 +22803 51593 0.5290 +22803 51602 0.6500 +22803 51690 0.4810 +22803 51691 0.4590 +22803 51692 0.7890 +22803 51808 0.6630 +22803 53981 0.5380 +22803 54148 0.4370 +22803 54461 0.4230 +22803 54464 0.9850 +22803 54487 0.4270 +22803 54512 0.6100 +22803 54555 0.5190 +22803 54606 0.6470 +22803 54663 0.4410 +22803 54815 0.4050 +22803 54888 0.4050 +22803 54973 0.6570 +22803 55127 0.6560 +22803 55135 0.4230 +22803 55153 0.4400 +22803 55173 0.4190 +22803 55197 0.8830 +22803 55269 0.4300 +22803 55272 0.6940 +22803 55299 0.4050 +22803 55339 0.6870 +22803 55342 0.4670 +22803 55421 0.5180 +22803 55602 0.9330 +22803 55660 0.7210 +22803 55677 0.4420 +22803 55749 0.4580 +22803 55756 0.4620 +22803 55759 0.5790 +22803 55802 0.7150 +22803 55813 0.4700 +22803 55857 0.4200 +22803 55922 0.8050 +22803 56006 0.5520 +22803 56257 0.4650 +22803 56903 0.6020 +22803 56915 0.5940 +22803 56949 0.4220 +22803 57050 0.5090 +22803 57062 0.4950 +22803 57187 0.4690 +22803 57466 0.5780 +22803 57510 0.4250 +22803 57647 0.5700 +22803 57819 0.4150 +22803 58490 0.8810 +22803 60528 0.4980 +22803 64282 0.5370 +22803 64852 0.6730 +22803 64895 0.6000 +22803 65083 0.4960 +22803 79050 0.5540 +22803 79132 0.5450 +22803 79159 0.5020 +22803 79670 0.4350 +22803 79707 0.6830 +22803 79727 0.6050 +22803 79869 0.4310 +22803 80153 0.4300 +22803 80335 0.4200 +22803 81887 0.4450 +22803 83743 0.4060 +22803 84128 0.6220 +22803 84135 0.6100 +22803 84365 0.5550 +22803 84916 0.6770 +22803 85302 0.8440 +22803 88745 0.4440 +22803 90459 0.5980 +22803 91368 0.8680 +22803 92856 0.4420 +22803 93643 0.7360 +22803 112479 0.9460 +22803 115752 0.6270 +22803 117246 0.4090 +22803 118460 0.5090 +22803 124245 0.4630 +22803 129563 0.6250 +22803 167153 0.6280 +22803 167227 0.9010 +22803 196513 0.4240 +22803 219988 0.5090 +22803 246243 0.5830 +22803 285331 0.7050 +22803 644524 0.4450 +22806 23028 0.4040 +22806 23309 0.4530 +22806 25942 0.4600 +22806 29760 0.4240 +22806 30009 0.5140 +22806 30012 0.4560 +22806 50943 0.7440 +22806 51176 0.7860 +22806 51185 0.9990 +22806 51564 0.4180 +22806 55026 0.4640 +22806 55876 0.8590 +22806 57823 0.5140 +22806 64375 0.8560 +22806 64376 0.8380 +22806 84159 0.4890 +22806 84295 0.6100 +22806 84299 0.4040 +22806 84914 0.5870 +22806 89857 0.4530 +22806 90379 0.4340 +22806 93210 0.5610 +22806 94103 0.8190 +22806 114836 0.4100 +22806 115352 0.4050 +22806 115650 0.5300 +22806 124626 0.9380 +22806 201633 0.4290 +22806 284110 0.5050 +22806 286530 0.5110 +22806 341032 0.4170 +22806 100505591 0.4930 +22806 102723407 0.5880 +22807 23309 0.4080 +22807 29841 0.4050 +22807 29851 0.5020 +22807 30009 0.5240 +22807 50943 0.6720 +22807 51176 0.4730 +22807 55809 0.4180 +22807 57698 0.4200 +22807 64376 0.6970 +22807 124540 0.5720 +22807 201633 0.5450 +22807 220929 0.4250 +22807 387640 0.4830 +22808 22821 0.7180 +22808 23179 0.9350 +22808 23365 0.9260 +22808 23513 0.4120 +22808 23654 0.4120 +22808 25780 0.7650 +22808 27289 0.5070 +22808 50618 0.5400 +22808 51196 0.9180 +22808 51735 0.8950 +22808 51764 0.6500 +22808 54331 0.6760 +22808 55759 0.4320 +22808 55970 0.6950 +22808 57139 0.4340 +22808 58480 0.4040 +22808 59345 0.6950 +22808 64897 0.4160 +22808 64926 0.6920 +22808 64968 0.4520 +22808 81839 0.4060 +22808 83593 0.9660 +22808 84722 0.4080 +22808 85444 0.4580 +22808 94235 0.6890 +22808 115727 0.7100 +22808 221692 0.4820 +22808 375056 0.5280 +22808 390928 0.4210 +22808 401387 0.5630 +22808 100271927 0.6700 +22809 22926 0.9320 +22809 23636 0.4370 +22809 23657 0.5460 +22809 26146 0.7680 +22809 26291 0.4180 +22809 27102 0.7380 +22809 27185 0.7780 +22809 51175 0.4040 +22809 54820 0.5430 +22809 55157 0.4070 +22809 57106 0.5060 +22809 57731 0.5480 +22809 57761 0.7800 +22809 64764 0.8060 +22809 65018 0.4110 +22809 79094 0.5500 +22809 81565 0.5550 +22809 116071 0.5630 +22809 440275 0.6200 +22818 22820 0.9980 +22818 23256 0.5310 +22818 23423 0.7490 +22818 23431 0.6020 +22818 23451 0.5030 +22818 26286 0.7410 +22818 26958 0.9970 +22818 51014 0.9090 +22818 51226 0.9360 +22818 51272 0.7020 +22818 51433 0.4080 +22818 51594 0.5450 +22818 51614 0.4010 +22818 53407 0.5400 +22818 54732 0.5660 +22818 55352 0.6240 +22818 55738 0.5240 +22818 55770 0.4260 +22818 55850 0.5110 +22818 57147 0.4330 +22818 57410 0.9250 +22818 60561 0.5510 +22818 63908 0.4990 +22818 64083 0.4930 +22818 81876 0.6470 +22818 84313 0.4020 +22818 84364 0.8400 +22818 84955 0.5330 +22818 90338 0.4790 +22818 114960 0.5600 +22818 205428 0.9000 +22820 22872 0.5560 +22820 23256 0.4360 +22820 23423 0.7270 +22820 26286 0.8000 +22820 26958 0.9770 +22820 27044 0.6640 +22820 29927 0.5280 +22820 51014 0.7300 +22820 51226 0.9910 +22820 51272 0.6110 +22820 51290 0.4350 +22820 51594 0.5510 +22820 51635 0.4460 +22820 53407 0.5560 +22820 54732 0.6670 +22820 55738 0.6380 +22820 55850 0.5040 +22820 57147 0.5550 +22820 57410 0.8930 +22820 57655 0.5140 +22820 60561 0.5870 +22820 63908 0.5400 +22820 64083 0.4200 +22820 64225 0.6320 +22820 79170 0.5600 +22820 79711 0.4200 +22820 81876 0.6700 +22820 84364 0.8280 +22820 84955 0.6880 +22820 205428 0.7200 +22821 25816 0.4170 +22821 26130 0.4820 +22821 26499 0.6220 +22821 27071 0.4100 +22821 64926 0.6150 +22821 153090 0.5740 +22821 161742 0.4430 +22821 200734 0.4090 +22821 399473 0.4100 +22822 23401 0.5780 +22822 26499 0.6670 +22822 54472 0.4240 +22822 81848 0.5590 +22822 149461 0.4150 +22822 161742 0.4180 +22822 200734 0.4130 +22823 23429 0.4390 +22823 23466 0.5430 +22823 23483 0.4490 +22823 23492 0.6300 +22823 23512 0.9990 +22823 26122 0.5210 +22823 26147 0.9750 +22823 29947 0.4550 +22823 54145 0.5110 +22823 54799 0.4380 +22823 55252 0.5110 +22823 55766 0.4990 +22823 57332 0.6210 +22823 64710 0.4240 +22823 79697 0.5520 +22823 79923 0.5540 +22823 80012 0.4130 +22823 84105 0.4080 +22823 84108 0.6460 +22823 84333 0.5050 +22823 84458 0.9490 +22823 84678 0.5240 +22823 84733 0.6100 +22823 84759 0.6510 +22823 85236 0.5110 +22823 94239 0.5910 +22823 121536 0.9690 +22823 128312 0.5110 +22823 132625 0.4580 +22823 171023 0.4400 +22823 255626 0.5110 +22823 340602 0.4340 +22823 387640 0.7640 +22823 440093 0.6460 +22823 440686 0.6530 +22823 474382 0.4990 +22823 653604 0.8190 +22823 100170841 0.9940 +22824 22948 0.5170 +22824 23165 0.4470 +22824 23225 0.4220 +22824 23234 0.6670 +22824 23279 0.4400 +22824 23341 0.4250 +22824 23479 0.5300 +22824 23511 0.5180 +22824 23636 0.4210 +22824 23640 0.9470 +22824 25822 0.6440 +22824 26121 0.4630 +22824 27000 0.7680 +22824 27152 0.4190 +22824 51182 0.6720 +22824 51314 0.4110 +22824 51501 0.5730 +22824 51726 0.5950 +22824 53371 0.4850 +22824 54431 0.7090 +22824 54443 0.4790 +22824 54788 0.5050 +22824 55466 0.8010 +22824 55706 0.4320 +22824 55735 0.4470 +22824 55746 0.4320 +22824 56990 0.4280 +22824 57122 0.4400 +22824 64374 0.4910 +22824 64420 0.4770 +22824 79023 0.4710 +22824 79738 0.4160 +22824 79902 0.4080 +22824 79962 0.5740 +22824 79968 0.5550 +22824 79982 0.5540 +22824 80267 0.5630 +22824 80273 0.7110 +22824 80331 0.5480 +22824 81570 0.7180 +22824 81929 0.4260 +22824 83447 0.4390 +22824 84140 0.4010 +22824 85438 0.4380 +22824 85479 0.6790 +22824 94086 0.4210 +22824 96459 0.5480 +22824 113444 0.4550 +22824 116835 0.7790 +22824 120526 0.5140 +22824 129401 0.4160 +22824 134266 0.7230 +22824 140432 0.4200 +22824 150160 0.4830 +22824 150353 0.5750 +22824 151194 0.4590 +22824 165721 0.6130 +22824 171425 0.4200 +22824 202052 0.6950 +22824 256471 0.4220 +22824 259217 0.8240 +22824 285126 0.4950 +22824 285282 0.4250 +22824 348995 0.4670 +22824 374407 0.6970 +22824 548645 0.5050 +22824 552891 0.4200 +22824 100101267 0.4450 +22826 22948 0.4210 +22826 23020 0.5830 +22826 23203 0.6170 +22826 23234 0.5970 +22826 23341 0.4200 +22826 23350 0.5020 +22826 23435 0.4530 +22826 23450 0.4810 +22826 23451 0.5500 +22826 23517 0.5500 +22826 23524 0.8480 +22826 23658 0.5330 +22826 24148 0.5270 +22826 25804 0.5520 +22826 26121 0.5040 +22826 27000 0.4070 +22826 27258 0.6080 +22826 27336 0.8360 +22826 29103 0.4340 +22826 51182 0.4330 +22826 51277 0.5110 +22826 51362 0.8090 +22826 51386 0.4480 +22826 51503 0.4350 +22826 51593 0.8740 +22826 51639 0.5740 +22826 51690 0.5360 +22826 51691 0.5660 +22826 51747 0.5630 +22826 54431 0.5290 +22826 54870 0.4250 +22826 55234 0.6670 +22826 55466 0.4620 +22826 55660 0.8750 +22826 55671 0.4930 +22826 55735 0.5190 +22826 55749 0.8170 +22826 56259 0.4300 +22826 57794 0.8140 +22826 57819 0.5310 +22826 58517 0.8350 +22826 64215 0.4370 +22826 79171 0.5220 +22826 79962 0.4940 +22826 83443 0.4660 +22826 94086 0.6760 +22826 120526 0.4660 +22826 131118 0.4330 +22826 134218 0.5030 +22826 151987 0.5070 +22826 202052 0.6670 +22826 283237 0.4270 +22826 548645 0.5850 +22827 22889 0.4990 +22827 23210 0.5780 +22827 23246 0.5640 +22827 23350 0.8860 +22827 23450 0.9710 +22827 23451 0.9620 +22827 23513 0.4860 +22827 23524 0.6510 +22827 25980 0.4030 +22827 27316 0.4420 +22827 27339 0.4360 +22827 29115 0.8690 +22827 29894 0.5110 +22827 29896 0.4530 +22827 51593 0.4970 +22827 51631 0.4570 +22827 51639 0.7510 +22827 51747 0.6640 +22827 55082 0.7180 +22827 55294 0.5020 +22827 55660 0.6690 +22827 55704 0.4100 +22827 56259 0.4690 +22827 57461 0.4090 +22827 57794 0.4480 +22827 58155 0.6310 +22827 58517 0.6790 +22827 65265 0.4060 +22827 79171 0.6590 +22827 80145 0.5010 +22827 83443 0.6830 +22827 83990 0.4950 +22827 84844 0.8580 +22827 84991 0.8740 +22827 118426 0.5590 +22827 133482 0.4680 +22827 140890 0.7390 +22827 199746 0.4010 +22827 221092 0.5530 +22827 286257 0.5500 +22827 340371 0.5610 +22827 100996928 0.4160 +22828 22878 0.4710 +22828 22894 0.4240 +22828 22916 0.6220 +22828 22930 0.4590 +22828 23064 0.9480 +22828 23126 0.5320 +22828 23144 0.4140 +22828 23168 0.4540 +22828 23248 0.7570 +22828 23283 0.6270 +22828 23369 0.4010 +22828 23394 0.4970 +22828 23469 0.6400 +22828 23510 0.4020 +22828 23517 0.5150 +22828 23592 0.7710 +22828 25831 0.5210 +22828 26034 0.6020 +22828 26043 0.5470 +22828 26122 0.4640 +22828 26230 0.7010 +22828 27107 0.4590 +22828 29072 0.4150 +22828 29101 0.7840 +22828 29115 0.4320 +22828 29894 0.6890 +22828 49861 0.6100 +22828 51106 0.6470 +22828 51340 0.4400 +22828 51366 0.4180 +22828 51455 0.4510 +22828 51574 0.4050 +22828 51585 0.9640 +22828 51593 0.4040 +22828 51692 0.7780 +22828 51729 0.4240 +22828 51780 0.5080 +22828 51808 0.4010 +22828 53981 0.7450 +22828 54439 0.5130 +22828 54617 0.5360 +22828 54778 0.5630 +22828 54815 0.4590 +22828 54870 0.4550 +22828 54973 0.4090 +22828 55102 0.4390 +22828 55153 0.4220 +22828 55197 0.6250 +22828 55339 0.7690 +22828 55671 0.5100 +22828 55703 0.4900 +22828 56254 0.5020 +22828 56995 0.4680 +22828 57148 0.6490 +22828 57466 0.5290 +22828 57680 0.6750 +22828 57794 0.4300 +22828 58490 0.6890 +22828 58506 0.5770 +22828 64282 0.5690 +22828 64426 0.4310 +22828 79577 0.5680 +22828 79811 0.4360 +22828 79869 0.7320 +22828 79871 0.4400 +22828 80013 0.4470 +22828 80335 0.4710 +22828 81545 0.4600 +22828 81608 0.6530 +22828 81857 0.4040 +22828 84186 0.6260 +22828 84947 0.4540 +22828 124245 0.4800 +22828 136157 0.5770 +22828 143506 0.5770 +22828 151987 0.4260 +22828 154043 0.6650 +22828 196120 0.5770 +22828 342371 0.4640 +22828 390031 0.5770 +22828 390033 0.5770 +22828 392517 0.5060 +22828 404672 0.4540 +22828 441584 0.5770 +22828 642843 0.5810 +22828 729515 0.5160 +22829 22839 0.5580 +22829 22871 0.5230 +22829 22941 0.8500 +22829 23136 0.5190 +22829 23705 0.7170 +22829 26045 0.4740 +22829 26047 0.4140 +22829 27328 0.4550 +22829 28988 0.5040 +22829 50944 0.7600 +22829 54413 0.6970 +22829 55243 0.5170 +22829 57502 0.5190 +22829 57555 0.5250 +22829 57669 0.4990 +22829 58512 0.6600 +22829 64359 0.6490 +22829 83259 0.6720 +22829 84063 0.4790 +22829 84631 0.4570 +22829 85358 0.8990 +22829 90665 0.9000 +22829 140032 0.8610 +22829 266727 0.5050 +22829 375323 0.4720 +22832 22897 0.5530 +22832 22994 0.5610 +22832 23271 0.4530 +22832 23322 0.4890 +22832 23354 0.5330 +22832 25914 0.4090 +22832 26005 0.5380 +22832 27077 0.4360 +22832 51134 0.4500 +22832 51167 0.4090 +22832 51199 0.4540 +22832 54801 0.6280 +22832 54903 0.4280 +22832 54930 0.6380 +22832 55125 0.4380 +22832 55142 0.5250 +22832 55559 0.5250 +22832 65062 0.4220 +22832 79441 0.5470 +22832 79598 0.5970 +22832 79600 0.5920 +22832 79867 0.4510 +22832 80173 0.5360 +22832 80184 0.8850 +22832 84318 0.4730 +22832 84902 0.5370 +22832 84984 0.5120 +22832 85302 0.4450 +22832 85459 0.5600 +22832 91147 0.5280 +22832 93323 0.5250 +22832 112609 0.4050 +22832 115106 0.6460 +22832 116840 0.4030 +22832 117177 0.5710 +22832 132320 0.4160 +22832 134359 0.4170 +22832 134701 0.4130 +22832 145508 0.5910 +22832 152185 0.4850 +22832 153241 0.6910 +22832 158297 0.4960 +22832 163786 0.5400 +22832 200728 0.4840 +22832 200894 0.4600 +22832 261734 0.4670 +22832 282809 0.5230 +22832 283232 0.4560 +22832 386617 0.5740 +22834 54986 0.4470 +22834 81127 0.4130 +22834 83606 0.6060 +22834 113026 0.5810 +22834 144100 0.4680 +22834 219621 0.6900 +22835 57677 0.4670 +22835 79673 0.5450 +22835 84924 0.7890 +22835 148268 0.4420 +22835 256051 0.4560 +22835 400720 0.4570 +22835 643909 0.5930 +22835 728524 0.5910 +22835 100289635 0.4950 +22835 100996746 0.5190 +22836 23072 0.4490 +22836 23221 0.5740 +22836 23603 0.4570 +22836 27147 0.5100 +22836 27289 0.4770 +22836 29984 0.5060 +22836 50618 0.5360 +22836 51209 0.8170 +22836 51542 0.5550 +22836 54509 0.4750 +22836 54583 0.6300 +22836 55275 0.5620 +22836 56171 0.4180 +22836 56922 0.5100 +22836 58480 0.4690 +22836 79961 0.4150 +22836 83594 0.4170 +22836 83890 0.4570 +22836 85463 0.4060 +22836 85477 0.4250 +22836 91544 0.4550 +22836 128308 0.4290 +22836 143187 0.7560 +22836 146198 0.4930 +22836 163259 0.4350 +22836 169792 0.5040 +22836 171177 0.5180 +22836 252884 0.5490 +22836 317671 0.4520 +22836 340351 0.4590 +22837 23086 0.4620 +22837 23242 0.4200 +22837 29763 0.8580 +22837 29993 0.8470 +22837 54622 0.4680 +22837 54887 0.4760 +22837 79660 0.4180 +22837 85461 0.4010 +22837 90102 0.4080 +22837 115701 0.4260 +22837 127018 0.6140 +22837 144348 0.4250 +22837 147699 0.5300 +22837 151258 0.4400 +22837 197335 0.4260 +22837 441250 0.4510 +22838 63893 0.4190 +22838 340578 0.4150 +22839 22871 0.5920 +22839 22883 0.4270 +22839 22941 0.8400 +22839 23545 0.4500 +22839 28988 0.5160 +22839 50614 0.4130 +22839 50944 0.7660 +22839 51071 0.4210 +22839 54413 0.5880 +22839 55567 0.5050 +22839 57502 0.5420 +22839 57555 0.6170 +22839 58512 0.7120 +22839 64409 0.4710 +22839 85358 0.9090 +22839 85417 0.4250 +22839 126133 0.5540 +22839 128434 0.4050 +22839 143098 0.4400 +22839 201625 0.5450 +22839 353116 0.4210 +22839 388743 0.4040 +22839 641700 0.4080 +22841 22905 0.4650 +22841 23233 0.4540 +22841 23265 0.6090 +22841 23301 0.5530 +22841 23677 0.4790 +22841 25943 0.4310 +22841 26056 0.9530 +22841 26509 0.4010 +22841 29881 0.4500 +22841 29993 0.4830 +22841 30844 0.5050 +22841 30845 0.8790 +22841 50489 0.4650 +22841 50807 0.4300 +22841 51552 0.4480 +22841 55040 0.4670 +22841 55751 0.4630 +22841 55870 0.4940 +22841 55930 0.4040 +22841 57111 0.9970 +22841 63877 0.4910 +22841 64145 0.7990 +22841 80223 0.9420 +22841 84440 0.9620 +22841 85021 0.8210 +22841 85377 0.4790 +22841 85439 0.4660 +22841 160335 0.4110 +22843 51003 0.4150 +22843 56155 0.4570 +22843 79133 0.4310 +22843 116985 0.5560 +22843 123263 0.4200 +22843 440073 0.4360 +22844 26010 0.4600 +22844 26050 0.4700 +22844 26086 0.7160 +22844 26267 0.6730 +22844 29899 0.8230 +22844 55092 0.5020 +22844 55784 0.5600 +22844 55891 0.4130 +22844 57699 0.4980 +22844 60626 0.5000 +22844 79269 0.4670 +22844 79633 0.4110 +22844 79981 0.4040 +22844 80308 0.4880 +22844 83988 0.4450 +22844 84915 0.4420 +22844 92014 0.5700 +22844 93953 0.5090 +22844 114134 0.4480 +22844 115207 0.4490 +22844 387748 0.4800 +22845 23171 0.4750 +22845 27235 0.8020 +22845 29880 0.9520 +22845 29925 0.7860 +22845 29926 0.5180 +22845 29929 0.6460 +22845 29954 0.7960 +22845 54344 0.9820 +22845 54662 0.4540 +22845 54675 0.8470 +22845 55343 0.4640 +22845 55624 0.7280 +22845 56052 0.7670 +22845 57171 0.9740 +22845 57526 0.4560 +22845 79053 0.4080 +22845 79087 0.5630 +22845 79147 0.7180 +22845 79644 0.9810 +22845 79868 0.4890 +22845 79947 0.7770 +22845 81562 0.7830 +22845 84197 0.7260 +22845 84317 0.4290 +22845 84892 0.7930 +22845 84975 0.4220 +22845 85365 0.6630 +22845 93183 0.4950 +22845 116150 0.6740 +22845 116931 0.4080 +22845 120071 0.4080 +22845 148789 0.7520 +22845 284098 0.4840 +22845 440138 0.7080 +22845 644974 0.4820 +22845 729920 0.5510 +22846 23357 0.8500 +22846 23452 0.4030 +22846 29954 0.6660 +22846 51378 0.4320 +22846 79188 0.4970 +22846 81027 0.4080 +22846 84617 0.4210 +22846 84790 0.4470 +22846 112714 0.4400 +22846 113457 0.4310 +22846 150465 0.6550 +22846 374969 0.9990 +22847 26054 0.4230 +22847 26468 0.4370 +22847 51608 0.4490 +22847 55735 0.4730 +22847 80789 0.4750 +22847 85453 0.4100 +22847 94086 0.4300 +22847 116988 0.4580 +22847 136259 0.4040 +22847 140831 0.4650 +22847 220441 0.4750 +22847 255426 0.4140 +22847 344838 0.5460 +22847 375323 0.4920 +22848 22905 0.7430 +22848 23149 0.7350 +22848 23327 0.4120 +22848 23710 0.5850 +22848 25977 0.7010 +22848 26119 0.5710 +22848 27247 0.5370 +22848 28988 0.5380 +22848 29924 0.6970 +22848 29978 0.5530 +22848 50618 0.6970 +22848 55040 0.4560 +22848 55707 0.8360 +22848 58513 0.6090 +22848 59272 0.7620 +22848 81631 0.4150 +22848 84251 0.8640 +22848 85021 0.9710 +22848 115548 0.7040 +22849 23019 0.9100 +22849 23369 0.6240 +22849 23543 0.5500 +22849 25904 0.9070 +22849 25983 0.6340 +22849 26065 0.6070 +22849 27067 0.5770 +22849 29883 0.9430 +22849 53981 0.5390 +22849 55571 0.9070 +22849 56903 0.5050 +22849 57472 0.9170 +22849 64506 0.6820 +22849 64895 0.5140 +22849 80315 0.7220 +22849 81127 0.9300 +22849 85456 0.9040 +22849 132864 0.6550 +22849 167153 0.6050 +22849 246175 0.9210 +22850 23036 0.4480 +22850 23394 0.4800 +22850 23468 0.4910 +22850 25909 0.4570 +22850 26251 0.4300 +22850 55324 0.4580 +22850 55609 0.4700 +22850 55628 0.5580 +22850 80148 0.4950 +22850 83446 0.4440 +22850 84146 0.4110 +22850 84552 0.4600 +22850 88745 0.5200 +22850 205717 0.4610 +22850 257397 0.4660 +22852 22897 0.6100 +22852 23218 0.5070 +22852 27289 0.5980 +22852 51134 0.5110 +22852 51428 0.6960 +22852 54809 0.4800 +22852 80184 0.4600 +22852 81027 0.4630 +22852 84902 0.4590 +22852 84930 0.4250 +22852 85302 0.6480 +22852 91452 0.4920 +22852 114294 0.5490 +22852 132320 0.5300 +22852 146057 0.5250 +22852 151742 0.5280 +22852 171023 0.4680 +22852 203068 0.4200 +22852 219285 0.4690 +22853 23301 0.6910 +22853 23512 0.4340 +22853 23600 0.4830 +22853 27232 0.4360 +22853 29803 0.4340 +22853 55190 0.4790 +22853 60526 0.4160 +22853 60528 0.4440 +22853 64837 0.5060 +22853 85414 0.4770 +22853 146691 0.5440 +22853 201627 0.4610 +22853 221895 0.6380 +22854 22865 0.5660 +22854 22871 0.4540 +22854 23129 0.4330 +22854 23767 0.4490 +22854 23768 0.4920 +22854 23769 0.4290 +22854 26045 0.4650 +22854 26050 0.5640 +22854 26103 0.5360 +22854 55367 0.4560 +22854 57497 0.4960 +22854 57554 0.5210 +22854 57555 0.4530 +22854 57622 0.5080 +22854 57689 0.9990 +22854 57722 0.5070 +22854 59277 0.6770 +22854 64101 0.9240 +22854 78999 0.6510 +22854 79414 0.5180 +22854 80031 0.4150 +22854 80059 0.5150 +22854 81832 0.5360 +22854 83473 0.4540 +22854 84189 0.5020 +22854 84465 0.4220 +22854 84628 0.5510 +22854 84631 0.5440 +22854 84894 0.4170 +22854 90249 0.5190 +22854 94030 0.8540 +22854 114798 0.5330 +22854 114990 0.4580 +22854 129804 0.4230 +22854 136332 0.4690 +22854 137970 0.5160 +22854 140679 0.4180 +22854 145581 0.4860 +22854 219699 0.4640 +22854 284217 0.6260 +22854 345193 0.5380 +22854 347730 0.5840 +22854 347731 0.4390 +22854 440699 0.4430 +22856 23169 0.4320 +22856 26229 0.6000 +22856 29940 0.5370 +22856 50515 0.6670 +22856 51363 0.5620 +22856 54480 0.8020 +22856 54928 0.4050 +22856 55069 0.4820 +22856 55454 0.9430 +22856 55501 0.6060 +22856 55790 0.9320 +22856 56548 0.5640 +22856 63827 0.5630 +22856 64131 0.6400 +22856 64132 0.5650 +22856 64711 0.4450 +22856 79586 0.9900 +22856 79705 0.4320 +22856 92126 0.4440 +22856 113189 0.5630 +22856 126792 0.5490 +22856 166012 0.6030 +22856 337876 0.9790 +22858 23247 0.5340 +22858 23595 0.7920 +22858 26160 0.5280 +22858 51626 0.5300 +22858 53947 0.4200 +22858 55112 0.4140 +22858 57521 0.4410 +22858 57539 0.4240 +22858 57560 0.4280 +22858 57728 0.4490 +22858 63939 0.4200 +22858 79809 0.4120 +22858 81620 0.7870 +22858 81669 0.8650 +22858 84515 0.4490 +22858 89891 0.4460 +22858 91687 0.5140 +22858 114327 0.5470 +22858 116211 0.4490 +22858 133482 0.4180 +22858 157777 0.4490 +22858 196446 0.4170 +22858 221357 0.5110 +22858 254394 0.5960 +22858 255758 0.4460 +22859 22865 0.6260 +22859 22941 0.5680 +22859 23143 0.5230 +22859 23169 0.6770 +22859 23507 0.5200 +22859 23513 0.5860 +22859 23639 0.5140 +22859 23767 0.8640 +22859 23768 0.7780 +22859 23769 0.8390 +22859 25878 0.5140 +22859 25960 0.7040 +22859 25987 0.5140 +22859 26011 0.9940 +22859 26018 0.5150 +22859 26045 0.6490 +22859 26050 0.5810 +22859 26099 0.9690 +22859 26103 0.5320 +22859 26254 0.5140 +22859 27091 0.5140 +22859 27255 0.5300 +22859 51225 0.6630 +22859 51284 0.5310 +22859 51311 0.5310 +22859 51764 0.4880 +22859 54106 0.5210 +22859 54331 0.4690 +22859 54674 0.5530 +22859 54829 0.5140 +22859 54839 0.5140 +22859 55144 0.5140 +22859 55222 0.5140 +22859 55227 0.6140 +22859 55366 0.6010 +22859 55367 0.5770 +22859 55379 0.5140 +22859 55631 0.5140 +22859 55714 0.9810 +22859 55914 0.5520 +22859 55970 0.4690 +22859 56262 0.5160 +22859 57408 0.5140 +22859 57451 0.9990 +22859 57463 0.5210 +22859 57497 0.5640 +22859 57554 0.5940 +22859 57611 0.5150 +22859 57622 0.5220 +22859 57631 0.5230 +22859 57633 0.5780 +22859 57689 0.5180 +22859 59283 0.5140 +22859 59284 0.5230 +22859 59345 0.9670 +22859 59350 0.5510 +22859 60506 0.5510 +22859 64101 0.5180 +22859 64359 0.4720 +22859 64922 0.5140 +22859 65078 0.5360 +22859 65999 0.5140 +22859 78999 0.5220 +22859 79414 0.5690 +22859 79442 0.5140 +22859 79705 0.5140 +22859 79870 0.4780 +22859 79883 0.5690 +22859 80059 0.6090 +22859 80131 0.5140 +22859 80823 0.4950 +22859 81543 0.5510 +22859 81793 0.5210 +22859 83450 0.5140 +22859 83544 0.5140 +22859 83938 0.5950 +22859 84125 0.5140 +22859 84189 0.5250 +22859 84230 0.5140 +22859 84435 0.6590 +22859 84631 0.5250 +22859 84859 0.5230 +22859 84894 0.5230 +22859 85444 0.5140 +22859 90249 0.9770 +22859 90506 0.5140 +22859 90678 0.5180 +22859 94030 0.5600 +22859 94235 0.4730 +22859 114548 0.5140 +22859 114798 0.5570 +22859 114990 0.5180 +22859 115399 0.5180 +22859 116064 0.5140 +22859 116135 0.5510 +22859 116844 0.5140 +22859 121227 0.5140 +22859 122042 0.5510 +22859 122769 0.5140 +22859 122786 0.9670 +22859 123355 0.5140 +22859 126206 0.5140 +22859 126364 0.5140 +22859 126755 0.5140 +22859 127255 0.5140 +22859 127435 0.5140 +22859 131578 0.5140 +22859 133482 0.4390 +22859 136332 0.5490 +22859 137970 0.9730 +22859 139065 0.5210 +22859 143570 0.5140 +22859 145581 0.5140 +22859 146760 0.5630 +22859 149466 0.5140 +22859 150356 0.5200 +22859 158038 0.5140 +22859 164312 0.5140 +22859 166647 0.7260 +22859 202500 0.5140 +22859 204801 0.5140 +22859 219527 0.5140 +22859 220074 0.5870 +22859 220416 0.5140 +22859 222229 0.5180 +22859 222643 0.9700 +22859 254050 0.5140 +22859 255252 0.5140 +22859 284004 0.7520 +22859 285313 0.5140 +22859 337977 0.5140 +22859 337978 0.5140 +22859 338323 0.5140 +22859 339291 0.5140 +22859 339398 0.5240 +22859 339977 0.5140 +22859 340146 0.7270 +22859 340745 0.5140 +22859 341883 0.5140 +22859 344657 0.5140 +22859 345193 0.5360 +22859 346562 0.7520 +22859 347730 0.6020 +22859 347731 0.6620 +22859 347902 0.5140 +22859 349667 0.5550 +22859 374819 0.5140 +22859 375387 0.5150 +22859 376132 0.5140 +22859 386724 0.5140 +22859 389816 0.5140 +22859 390205 0.5140 +22859 401387 0.5260 +22859 440699 0.5140 +22859 441381 0.5140 +22859 474170 0.5140 +22859 474354 0.5140 +22859 645191 0.5140 +22859 646019 0.4730 +22859 647264 0.5140 +22859 654429 0.6140 +22859 100130733 0.5510 +22859 100505591 0.5510 +22859 100506049 0.5140 +22859 100507050 0.5190 +22859 100528062 0.4950 +22859 105372280 0.4690 +22859 105378803 0.5140 +22859 112267897 0.5140 +22861 22900 0.9560 +22861 23586 0.8490 +22861 24145 0.7170 +22861 26191 0.4520 +22861 27022 0.5910 +22861 27178 0.5020 +22861 29108 0.9990 +22861 51284 0.4630 +22861 51311 0.4310 +22861 51752 0.4640 +22861 54106 0.4640 +22861 54878 0.5610 +22861 55367 0.4520 +22861 55655 0.9840 +22861 55876 0.5360 +22861 56169 0.5810 +22861 56919 0.9190 +22861 57506 0.4380 +22861 58484 0.9990 +22861 59082 0.5970 +22861 64127 0.9960 +22861 64135 0.4810 +22861 79092 0.4030 +22861 79132 0.4690 +22861 79792 0.9380 +22861 80013 0.6650 +22861 84166 0.8030 +22861 84674 0.5950 +22861 90865 0.4220 +22861 91039 0.9510 +22861 91662 0.9850 +22861 114548 0.9980 +22861 114609 0.4230 +22861 115361 0.4200 +22861 115362 0.4350 +22861 122769 0.8190 +22861 136991 0.4140 +22861 140609 0.6120 +22861 147945 0.7920 +22861 171389 0.9980 +22861 199713 0.9860 +22861 260434 0.9350 +22861 284110 0.6210 +22861 338321 0.9600 +22861 338322 0.5490 +22861 494513 0.6940 +22862 23362 0.4180 +22862 51131 0.5160 +22862 54855 0.4590 +22862 55603 0.4370 +22862 57105 0.5240 +22862 64778 0.4920 +22862 64838 0.5050 +22862 81602 0.7020 +22862 81617 0.6440 +22862 83852 0.5520 +22862 129804 0.4490 +22862 374354 0.4300 +22862 643853 0.4160 +22863 23001 0.4930 +22863 23130 0.7360 +22863 23192 0.7910 +22863 23241 0.6380 +22863 23339 0.5250 +22863 23411 0.4340 +22863 23533 0.5630 +22863 23557 0.9260 +22863 23604 0.6200 +22863 23645 0.4880 +22863 23710 0.9930 +22863 25851 0.4310 +22863 25989 0.4250 +22863 26100 0.9350 +22863 27131 0.4440 +22863 29982 0.9990 +22863 30837 0.5400 +22863 30849 0.9990 +22863 51024 0.6030 +22863 51100 0.9470 +22863 51339 0.6020 +22863 51422 0.5360 +22863 51652 0.5160 +22863 53349 0.8520 +22863 53632 0.5070 +22863 54069 0.4870 +22863 54915 0.4710 +22863 55014 0.9990 +22863 55054 0.9530 +22863 55062 0.8890 +22863 55102 0.7330 +22863 55201 0.6580 +22863 55332 0.4180 +22863 55626 0.9980 +22863 55697 0.5880 +22863 55770 0.6170 +22863 56270 0.5580 +22863 57521 0.5370 +22863 57602 0.4760 +22863 57617 0.5180 +22863 57724 0.7230 +22863 60673 0.9940 +22863 64422 0.8640 +22863 64601 0.5800 +22863 65018 0.5510 +22863 65082 0.5430 +22863 79065 0.8870 +22863 79443 0.4520 +22863 81631 0.8980 +22863 81671 0.7010 +22863 83734 0.8410 +22863 84174 0.5400 +22863 84557 0.8520 +22863 84938 0.7090 +22863 84971 0.7110 +22863 85363 0.4990 +22863 89849 0.5620 +22863 112574 0.4710 +22863 115201 0.7050 +22863 122809 0.5680 +22863 123720 0.4350 +22863 124997 0.4420 +22863 139341 0.4610 +22863 140735 0.5110 +22863 146850 0.5400 +22863 149371 0.6180 +22863 152559 0.7250 +22863 257397 0.4600 +22863 285973 0.7260 +22863 286826 0.4100 +22863 345611 0.5820 +22863 440738 0.7770 +22863 441925 0.9990 +22863 643246 0.6370 +22863 644139 0.6050 +22863 100526767 0.5160 +22863 110117498 0.5400 +22864 23369 0.4180 +22864 55604 0.4050 +22864 55867 0.4510 +22864 79567 0.4900 +22864 144535 0.4120 +22864 222696 0.4410 +22864 100101467 0.5670 +22865 22871 0.6020 +22865 23114 0.4430 +22865 23266 0.5670 +22865 23284 0.5870 +22865 54413 0.5240 +22865 57502 0.4770 +22865 57555 0.8130 +22865 58512 0.4110 +22865 91653 0.4600 +22865 122769 0.4910 +22865 137970 0.5580 +22865 140679 0.4380 +22865 266727 0.4550 +22865 347730 0.4100 +22865 388135 0.4630 +22866 23096 0.4150 +22866 54756 0.5920 +22866 57477 0.4210 +22866 57554 0.7000 +22866 64420 0.4590 +22866 64750 0.6880 +22866 79817 0.5870 +22866 80728 0.7160 +22866 85358 0.4090 +22866 139081 0.6820 +22868 22907 0.7110 +22868 22930 0.4370 +22868 23107 0.4810 +22868 23169 0.4380 +22868 23196 0.4410 +22868 23421 0.5200 +22868 23548 0.4120 +22868 25926 0.4580 +22868 26024 0.9230 +22868 26145 0.4530 +22868 26164 0.5110 +22868 26284 0.5850 +22868 26995 0.9200 +22868 27316 0.7310 +22868 28973 0.4450 +22868 28998 0.4630 +22868 29104 0.4290 +22868 29960 0.4690 +22868 51001 0.9390 +22868 51067 0.6540 +22868 51073 0.7550 +22868 51074 0.4320 +22868 51095 0.4030 +22868 51204 0.7690 +22868 51335 0.9680 +22868 54148 0.4080 +22868 54534 0.4270 +22868 54931 0.5770 +22868 55006 0.5070 +22868 55037 0.5770 +22868 55149 0.5590 +22868 55168 0.4070 +22868 55178 0.6920 +22868 55794 0.9110 +22868 56901 0.4090 +22868 56945 0.6810 +22868 57038 0.4760 +22868 57570 0.4740 +22868 60488 0.4410 +22868 60493 0.7530 +22868 60528 0.5100 +22868 64216 0.5610 +22868 64745 0.4620 +22868 64965 0.4620 +22868 65080 0.4070 +22868 79072 0.7260 +22868 79675 0.6040 +22868 79736 0.5140 +22868 79810 0.4440 +22868 79922 0.4750 +22868 80324 0.4150 +22868 81554 0.7910 +22868 84769 0.5700 +22868 84881 0.9290 +22868 85476 0.4240 +22868 85865 0.5810 +22868 87178 0.5270 +22868 92170 0.5010 +22868 115416 0.5310 +22868 130749 0.5340 +22868 130916 0.4980 +22868 150274 0.4110 +22868 285367 0.8380 +22868 387338 0.4900 +22868 391475 0.6070 +22868 100996939 0.4200 +22869 23505 0.4330 +22869 54754 0.4720 +22869 56980 0.5300 +22869 57541 0.4430 +22869 80067 0.4790 +22869 84148 0.4600 +22869 158431 0.4590 +22869 195827 0.4240 +22869 222698 0.4040 +22869 347344 0.4560 +22869 375748 0.4830 +22869 389677 0.4720 +22869 441457 0.5000 +22870 23243 0.9820 +22870 23451 0.9260 +22870 27304 0.4500 +22870 50488 0.4300 +22870 51343 0.4210 +22870 51379 0.4330 +22870 54776 0.4530 +22870 54859 0.5810 +22870 55140 0.4530 +22870 55291 0.9170 +22870 55671 0.4080 +22870 57106 0.4690 +22870 57617 0.4040 +22870 57718 0.5230 +22870 64421 0.4290 +22870 79763 0.4730 +22870 81605 0.4470 +22870 83931 0.4170 +22870 84859 0.4320 +22870 84922 0.4860 +22870 90353 0.4960 +22870 91526 0.9640 +22870 112970 0.6390 +22870 151987 0.5230 +22870 163033 0.5210 +22870 283373 0.9320 +22870 285381 0.6820 +22871 22941 0.9140 +22871 22999 0.4130 +22871 23136 0.5720 +22871 23229 0.5370 +22871 23245 0.7320 +22871 23284 0.5940 +22871 23426 0.4220 +22871 23705 0.8190 +22871 23767 0.5160 +22871 25945 0.4990 +22871 26045 0.8150 +22871 26047 0.7650 +22871 26050 0.4570 +22871 28988 0.5040 +22871 30010 0.5250 +22871 30816 0.4430 +22871 50834 0.5610 +22871 50863 0.4080 +22871 50944 0.9260 +22871 51725 0.6970 +22871 54413 0.7990 +22871 54715 0.4360 +22871 55243 0.5560 +22871 57030 0.6200 +22871 57502 0.5480 +22871 57555 0.7040 +22871 57622 0.6080 +22871 57669 0.4990 +22871 57689 0.6440 +22871 58512 0.7370 +22871 59283 0.5140 +22871 64326 0.6600 +22871 64359 0.9490 +22871 79816 0.4910 +22871 80059 0.5140 +22871 84063 0.5320 +22871 84631 0.5990 +22871 85358 0.9780 +22871 94030 0.6210 +22871 114798 0.6550 +22871 139411 0.5470 +22871 140679 0.5620 +22871 147381 0.4980 +22871 152330 0.8530 +22871 257194 0.4070 +22871 266727 0.6760 +22871 347730 0.7020 +22871 347731 0.4710 +22871 375323 0.5870 +22871 405754 0.5170 +22872 23256 0.7720 +22872 25820 0.4110 +22872 25956 0.9450 +22872 26003 0.4460 +22872 26984 0.7070 +22872 27095 0.6600 +22872 27436 0.6990 +22872 29927 0.5280 +22872 51014 0.9040 +22872 51112 0.4680 +22872 51128 0.9950 +22872 53335 0.5130 +22872 53407 0.4690 +22872 55014 0.6040 +22872 55176 0.4770 +22872 55727 0.5450 +22872 56681 0.9970 +22872 57048 0.4060 +22872 57410 0.6420 +22872 57448 0.5390 +22872 59349 0.9830 +22872 64083 0.8220 +22872 64689 0.4180 +22872 79748 0.5750 +22872 80304 0.6600 +22872 81555 0.4430 +22872 81562 0.5100 +22872 81876 0.4100 +22872 89866 0.9490 +22872 90411 0.6550 +22872 149111 0.5370 +22872 254263 0.5370 +22872 375056 0.6540 +22872 553115 0.9800 +22873 22897 0.6530 +22873 25981 0.4600 +22873 26528 0.4450 +22873 51134 0.4790 +22873 51199 0.5050 +22873 55733 0.4630 +22873 55757 0.4170 +22873 55779 0.5210 +22873 66037 0.4640 +22873 79846 0.5710 +22873 79925 0.4820 +22873 80184 0.4590 +22873 80217 0.5240 +22873 83894 0.5870 +22873 84071 0.4900 +22873 84074 0.5190 +22873 84902 0.4700 +22873 85302 0.5140 +22873 89876 0.5180 +22873 118491 0.5510 +22873 122481 0.4160 +22873 132320 0.4480 +22873 137392 0.5880 +22873 144406 0.5340 +22873 146754 0.4870 +22873 159686 0.4450 +22873 199223 0.5630 +22873 339145 0.4360 +22873 339745 0.4630 +22873 401024 0.5440 +22874 26499 0.6510 +22874 51186 0.6020 +22874 55224 0.4880 +22874 57664 0.5420 +22874 116225 0.4200 +22874 127845 0.7330 +22874 343263 0.4200 +22874 391211 0.4480 +22875 51314 0.4460 +22875 65220 0.4130 +22875 79153 0.4070 +22875 284161 0.4270 +22875 102157402 0.4500 +22876 23236 0.9030 +22876 23396 0.9030 +22876 51196 0.9010 +22876 51393 0.5690 +22876 55300 0.9080 +22876 55361 0.9200 +22876 55613 0.9040 +22876 56623 0.9060 +22876 64419 0.9070 +22876 84812 0.9030 +22876 89869 0.9010 +22876 113026 0.9030 +22876 138429 0.9000 +22876 200576 0.9150 +22876 221472 0.4610 +22876 266812 0.4190 +22877 25942 0.6050 +22877 51085 0.9920 +22877 83463 0.5200 +22877 91947 0.6590 +22877 133522 0.9090 +22878 23041 0.4810 +22878 23505 0.6140 +22878 23710 0.4980 +22878 25782 0.4020 +22878 27095 0.9990 +22878 27243 0.4480 +22878 29761 0.5470 +22878 51112 0.9990 +22878 51399 0.9990 +22878 51444 0.4450 +22878 51542 0.5860 +22878 51693 0.9970 +22878 53407 0.6370 +22878 54778 0.4310 +22878 54878 0.4190 +22878 55102 0.4780 +22878 55262 0.7930 +22878 55610 0.4860 +22878 55684 0.5580 +22878 55823 0.4080 +22878 57148 0.5500 +22878 57511 0.5450 +22878 57533 0.9490 +22878 57589 0.5260 +22878 58485 0.9990 +22878 60684 0.9990 +22878 64328 0.4370 +22878 78990 0.4650 +22878 79065 0.4880 +22878 79090 0.9980 +22878 80006 0.9960 +22878 80124 0.6360 +22878 81545 0.4470 +22878 81876 0.9410 +22878 83452 0.6840 +22878 83548 0.6360 +22878 84952 0.5520 +22878 122553 0.9980 +22878 126003 0.9990 +22878 134147 0.5990 +22878 149371 0.4660 +22878 167691 0.8460 +22878 339122 0.7880 +22878 401409 0.5820 +22878 100128327 0.9960 +22879 23339 0.6170 +22879 23383 0.7550 +22879 25849 0.4480 +22879 26060 0.5680 +22879 26100 0.4340 +22879 26130 0.6570 +22879 27072 0.8760 +22879 29919 0.9390 +22879 30061 0.4950 +22879 51209 0.5550 +22879 51622 0.9970 +22879 55014 0.4370 +22879 55823 0.7830 +22879 57465 0.4340 +22879 57617 0.5630 +22879 57679 0.5010 +22879 64601 0.5250 +22879 64786 0.5530 +22879 65082 0.5030 +22879 79443 0.5320 +22879 84315 0.9320 +22879 112937 0.5170 +22879 221960 0.9850 +22879 338382 0.6460 +22879 408187 0.4310 +22879 100130958 0.5430 +22880 23272 0.7180 +22880 23347 0.4180 +22880 25942 0.4660 +22880 27136 0.8020 +22880 51535 0.5290 +22880 51742 0.5110 +22880 54332 0.4120 +22880 54737 0.7070 +22880 55226 0.7820 +22880 78992 0.6960 +22880 79066 0.4410 +22880 79628 0.4060 +22880 124245 0.6260 +22880 221937 0.4860 +22881 23002 0.4540 +22881 29964 0.8550 +22881 57216 0.7810 +22881 81839 0.7730 +22881 144165 0.8450 +22881 166336 0.8540 +22882 23051 0.6190 +22882 23355 0.5010 +22882 26018 0.4190 +22882 26137 0.8540 +22882 51312 0.7630 +22882 53335 0.4890 +22882 55823 0.4070 +22882 55969 0.4230 +22882 57617 0.4760 +22882 60625 0.4140 +22882 64145 0.5010 +22882 64601 0.4800 +22882 79139 0.4510 +22882 84985 0.4030 +22882 93594 0.8280 +22882 124491 0.4820 +22882 347344 0.4410 +22883 27032 0.4280 +22883 60682 0.5100 +22883 64837 0.9780 +22883 79037 0.4160 +22883 84328 0.5160 +22883 84455 0.4870 +22883 85477 0.4900 +22883 89953 0.9230 +22883 147700 0.8150 +22884 22911 0.6150 +22884 22982 0.6080 +22884 23070 0.5160 +22884 23219 0.4450 +22884 23240 0.4200 +22884 23241 0.8920 +22884 23510 0.4060 +22884 25839 0.4280 +22884 25852 0.6440 +22884 25853 0.4610 +22884 27097 0.4150 +22884 51616 0.5330 +22884 55298 0.4060 +22884 55690 0.9340 +22884 57599 0.5490 +22884 57609 0.4420 +22884 64795 0.4440 +22884 65061 0.4100 +22884 79819 0.4600 +22884 80335 0.5430 +22884 84859 0.4010 +22884 84893 0.4220 +22884 85025 0.5580 +22884 90506 0.4610 +22884 93624 0.4850 +22884 112869 0.5410 +22884 116842 0.4350 +22884 117143 0.5040 +22884 126820 0.5520 +22884 151790 0.4250 +22884 158399 0.4420 +22884 201255 0.4620 +22884 203111 0.5510 +22884 221692 0.4950 +22884 256764 0.4280 +22884 285440 0.4150 +22884 342527 0.4520 +22885 63898 0.4620 +22885 64779 0.4650 +22885 91624 0.4340 +22885 134265 0.5460 +22885 134266 0.4290 +22885 137735 0.9570 +22887 23405 0.4250 +22887 55553 0.6550 +22887 57148 0.4520 +22887 388585 0.5210 +22888 23197 0.5010 +22888 23608 0.4450 +22888 23759 0.4350 +22888 26017 0.4470 +22888 26268 0.4310 +22888 27338 0.4840 +22888 29098 0.4330 +22888 29907 0.7860 +22888 51142 0.4160 +22888 51438 0.4250 +22888 51619 0.4880 +22888 54793 0.4720 +22888 55139 0.4020 +22888 55164 0.4590 +22888 55258 0.4300 +22888 55317 0.4210 +22888 55432 0.8350 +22888 55666 0.6530 +22888 55968 0.5940 +22888 58500 0.4430 +22888 60493 0.4380 +22888 63893 0.4300 +22888 65264 0.5620 +22888 65992 0.4250 +22888 79029 0.5610 +22888 80233 0.6530 +22888 83752 0.4490 +22888 84173 0.5320 +22888 90204 0.4030 +22888 91544 0.5900 +22888 92400 0.4540 +22888 114826 0.4050 +22888 119467 0.4810 +22888 137886 0.4970 +22888 140461 0.4050 +22888 146862 0.4150 +22888 148581 0.5950 +22888 150572 0.5040 +22888 154043 0.4620 +22888 162517 0.5080 +22888 165324 0.5020 +22888 166378 0.5660 +22888 167465 0.4570 +22888 195827 0.4320 +22888 195828 0.5280 +22888 197131 0.4840 +22888 200312 0.5310 +22888 285513 0.4580 +22888 342945 0.4590 +22888 387694 0.5340 +22889 23137 0.4290 +22889 27339 0.6830 +22889 51503 0.4400 +22889 51747 0.6230 +22889 55692 0.4980 +22889 56910 0.5020 +22889 57002 0.4740 +22889 57035 0.4030 +22889 57711 0.4740 +22889 90288 0.4610 +22890 51495 0.4280 +22890 55064 0.4080 +22890 56852 0.4570 +22890 57480 0.4320 +22890 57621 0.4060 +22890 79002 0.4500 +22890 79865 0.4450 +22890 146849 0.4860 +22890 155061 0.4180 +22890 286006 0.4920 +22893 22933 0.9040 +22893 23042 0.4400 +22893 23163 0.4780 +22893 23378 0.9000 +22893 23411 0.9060 +22893 23510 0.4180 +22893 23512 0.4790 +22893 25930 0.4300 +22893 26013 0.5890 +22893 26234 0.4110 +22893 26504 0.4590 +22893 27079 0.4170 +22893 27154 0.4700 +22893 27339 0.4630 +22893 51105 0.4180 +22893 55633 0.5400 +22893 56970 0.7720 +22893 57129 0.4340 +22893 57473 0.4570 +22893 57708 0.5350 +22893 79724 0.4210 +22893 80204 0.4280 +22893 116115 0.4050 +22893 122830 0.4480 +22893 128312 0.4330 +22893 148479 0.4950 +22893 149986 0.4410 +22893 166968 0.7960 +22893 221908 0.5070 +22893 255626 0.6790 +22893 342371 0.4680 +22893 374655 0.4400 +22893 440093 0.4100 +22893 440686 0.4090 +22893 653604 0.4090 +22894 22916 0.4670 +22894 22984 0.6830 +22894 23012 0.5580 +22894 23016 0.9990 +22894 23019 0.4090 +22894 23049 0.5390 +22894 23064 0.5860 +22894 23076 0.4250 +22894 23160 0.5690 +22894 23223 0.6060 +22894 23293 0.5910 +22894 23318 0.5580 +22894 23381 0.4050 +22894 23404 0.9990 +22894 23405 0.4440 +22894 23517 0.9940 +22894 23521 0.4610 +22894 23589 0.4680 +22894 25873 0.4050 +22894 25879 0.4180 +22894 26009 0.4800 +22894 26019 0.4030 +22894 26156 0.4190 +22894 26168 0.5030 +22894 26986 0.4460 +22894 27043 0.4470 +22894 27161 0.5710 +22894 27257 0.4980 +22894 27292 0.5270 +22894 27340 0.6080 +22894 29102 0.4360 +22894 29889 0.4720 +22894 29997 0.4550 +22894 30836 0.4430 +22894 51010 0.9990 +22894 51013 0.9990 +22894 51068 0.4510 +22894 51077 0.5670 +22894 51095 0.6100 +22894 51096 0.6630 +22894 51121 0.5100 +22894 51366 0.4580 +22894 51585 0.4720 +22894 51602 0.5190 +22894 51605 0.4750 +22894 51741 0.4260 +22894 51808 0.4580 +22894 53981 0.4150 +22894 54059 0.4070 +22894 54464 0.8930 +22894 54512 0.9990 +22894 54855 0.7910 +22894 54881 0.5680 +22894 54973 0.4130 +22894 55127 0.5120 +22894 55178 0.4680 +22894 55226 0.5440 +22894 55596 0.7010 +22894 55720 0.4330 +22894 55802 0.6560 +22894 55813 0.5400 +22894 55832 0.4510 +22894 56903 0.6170 +22894 56915 0.9990 +22894 57050 0.5400 +22894 57136 0.5660 +22894 57379 0.4330 +22894 57418 0.4780 +22894 60558 0.6610 +22894 64216 0.4130 +22894 64282 0.5980 +22894 64852 0.5720 +22894 64895 0.6940 +22894 65083 0.5220 +22894 65110 0.4110 +22894 79050 0.5410 +22894 79664 0.4050 +22894 79670 0.5800 +22894 79707 0.6740 +22894 79866 0.4750 +22894 79922 0.4640 +22894 79954 0.5680 +22894 80349 0.7850 +22894 81691 0.5210 +22894 81875 0.5320 +22894 81887 0.5250 +22894 84128 0.4460 +22894 84135 0.4650 +22894 84172 0.4220 +22894 84186 0.7760 +22894 84916 0.5200 +22894 85476 0.4180 +22894 87178 0.9850 +22894 90459 0.5210 +22894 90806 0.4280 +22894 92399 0.4100 +22894 93643 0.5780 +22894 115752 0.9470 +22894 116832 0.5020 +22894 118460 0.9990 +22894 120892 0.5570 +22894 129563 0.6390 +22894 140801 0.4510 +22894 167227 0.8300 +22894 196441 0.9570 +22894 201626 0.4780 +22894 440145 0.4340 +22894 102723407 0.4720 +22895 22999 0.4590 +22895 23011 0.4160 +22895 23025 0.5380 +22895 23086 0.5300 +22895 23504 0.4330 +22895 23560 0.4810 +22895 51762 0.5830 +22895 54843 0.5530 +22895 79083 0.8120 +22895 84962 0.5670 +22895 85360 0.4330 +22895 115827 0.8110 +22895 126374 0.7280 +22895 134957 0.4950 +22895 221692 0.4100 +22897 22920 0.4770 +22897 22981 0.4830 +22897 22994 0.5720 +22897 22995 0.6060 +22897 23090 0.5160 +22897 23122 0.4090 +22897 23322 0.6140 +22897 23354 0.6500 +22897 23637 0.4460 +22897 25914 0.4530 +22897 26005 0.7860 +22897 26123 0.4020 +22897 26146 0.4520 +22897 26160 0.4160 +22897 27031 0.6800 +22897 27077 0.4430 +22897 27130 0.6600 +22897 27175 0.4290 +22897 27241 0.5700 +22897 28981 0.4470 +22897 29911 0.4290 +22897 51098 0.4940 +22897 51134 0.9970 +22897 51175 0.5460 +22897 51199 0.9010 +22897 51259 0.4470 +22897 54801 0.6280 +22897 54806 0.5180 +22897 54875 0.5930 +22897 54903 0.5900 +22897 54930 0.5110 +22897 55125 0.5910 +22897 55142 0.5620 +22897 55212 0.6370 +22897 55559 0.5080 +22897 55755 0.5540 +22897 55835 0.5910 +22897 56623 0.6240 +22897 57545 0.5070 +22897 57560 0.4580 +22897 57728 0.4620 +22897 79363 0.4230 +22897 79441 0.5940 +22897 79583 0.4450 +22897 79598 0.7550 +22897 79600 0.5360 +22897 79809 0.4560 +22897 79866 0.5110 +22897 79867 0.4650 +22897 79959 0.5620 +22897 80110 0.4740 +22897 80173 0.4700 +22897 80184 0.8020 +22897 80212 0.4920 +22897 80323 0.4470 +22897 80776 0.4670 +22897 80817 0.4890 +22897 84126 0.4720 +22897 84131 0.4020 +22897 84260 0.5210 +22897 84461 0.5260 +22897 84902 0.9790 +22897 84984 0.5310 +22897 85302 0.9900 +22897 85459 0.5010 +22897 90060 0.6290 +22897 90410 0.6530 +22897 91147 0.6090 +22897 91754 0.5490 +22897 93323 0.5270 +22897 112752 0.5700 +22897 115106 0.5290 +22897 116840 0.7530 +22897 117177 0.8940 +22897 119467 0.4090 +22897 121441 0.4220 +22897 128344 0.4120 +22897 129880 0.4740 +22897 132320 0.9970 +22897 134359 0.6260 +22897 137392 0.4470 +22897 145508 0.7360 +22897 146057 0.9930 +22897 146330 0.4450 +22897 151195 0.4210 +22897 152206 0.4180 +22897 153241 0.7640 +22897 159989 0.4520 +22897 163786 0.7350 +22897 200879 0.4300 +22897 200894 0.8270 +22897 201255 0.6240 +22897 203286 0.4860 +22897 222235 0.4340 +22897 261734 0.7480 +22897 282809 0.5250 +22897 284086 0.5960 +22897 339145 0.4970 +22897 347240 0.5750 +22897 728642 0.5170 +22898 23258 0.4220 +22898 54108 0.4510 +22898 56926 0.7040 +22898 57210 0.5850 +22898 79089 0.4210 +22898 79958 0.4520 +22898 114827 0.4080 +22898 160518 0.4430 +22898 219793 0.6730 +22899 25843 0.4200 +22899 26499 0.4870 +22899 51380 0.5280 +22899 55165 0.4700 +22899 55200 0.4550 +22899 56920 0.6030 +22899 89846 0.4240 +22899 121551 0.4400 +22899 152273 0.6290 +22899 339896 0.4940 +22899 100271715 0.5270 +22900 23118 0.4370 +22900 26009 0.5730 +22900 29108 0.9960 +22900 51360 0.4040 +22900 51562 0.4830 +22900 54205 0.5400 +22900 54878 0.6230 +22900 55125 0.4370 +22900 55367 0.4220 +22900 55655 0.8850 +22900 55689 0.4250 +22900 55954 0.4320 +22900 56919 0.9000 +22900 57325 0.6060 +22900 58484 0.9470 +22900 59082 0.6920 +22900 64127 0.6550 +22900 64431 0.4560 +22900 79792 0.9020 +22900 80013 0.7130 +22900 84674 0.8050 +22900 91039 0.9720 +22900 91662 0.5670 +22900 114548 0.9980 +22900 152138 0.4790 +22900 171389 0.9440 +22900 199713 0.5030 +22900 260434 0.6260 +22900 338321 0.9350 +22900 338322 0.4570 +22901 23213 0.5860 +22901 23400 0.5310 +22901 23504 0.4740 +22901 25870 0.6300 +22901 51003 0.5540 +22901 51321 0.4050 +22901 54982 0.5920 +22901 55203 0.4790 +22901 55959 0.6170 +22901 79642 0.6080 +22901 84131 0.5340 +22901 84246 0.5400 +22901 90861 0.4620 +22901 119764 0.4800 +22901 119765 0.4770 +22901 138050 0.5100 +22901 153642 0.8230 +22901 256471 0.4420 +22901 285362 0.8190 +22901 340075 0.6230 +22901 347527 0.4770 +22901 378884 0.4460 +22901 389766 0.5080 +22901 121725057 0.4080 +22902 23623 0.4270 +22902 51101 0.5280 +22902 55680 0.6840 +22902 57604 0.6140 +22902 57698 0.9660 +22902 80230 0.5230 +22903 23321 0.5450 +22903 26205 0.4620 +22903 55614 0.4430 +22903 55617 0.4850 +22903 80018 0.4210 +22903 90135 0.4490 +22904 23526 0.4970 +22904 26235 0.4320 +22904 29071 0.4480 +22904 55009 0.5140 +22904 55206 0.4110 +22904 79690 0.5040 +22904 81671 0.5500 +22904 90007 0.4920 +22904 91304 0.4300 +22904 255057 0.4090 +22905 23048 0.4510 +22905 23149 0.9350 +22905 23301 0.4010 +22905 23431 0.4380 +22905 23593 0.4570 +22905 23677 0.4470 +22905 25977 0.8150 +22905 26119 0.6280 +22905 26499 0.5070 +22905 26509 0.4310 +22905 27077 0.4630 +22905 27443 0.4440 +22905 29924 0.6040 +22905 29978 0.7040 +22905 29979 0.7560 +22905 30011 0.6510 +22905 50618 0.9790 +22905 51429 0.6950 +22905 54492 0.4470 +22905 55040 0.9530 +22905 55707 0.6730 +22905 56479 0.5400 +22905 58513 0.9730 +22905 64145 0.5290 +22905 80115 0.5530 +22905 83715 0.5370 +22905 83988 0.5470 +22905 84174 0.5860 +22905 84251 0.7150 +22905 84557 0.4610 +22905 85021 0.7000 +22905 85439 0.6660 +22905 115548 0.8890 +22905 122616 0.5400 +22905 130162 0.4980 +22905 130340 0.5700 +22905 143187 0.4340 +22905 150350 0.5670 +22905 200576 0.5270 +22905 221302 0.5150 +22905 255324 0.4990 +22906 23095 0.4140 +22906 23164 0.5100 +22906 23299 0.4720 +22906 23435 0.4550 +22906 26128 0.5190 +22906 26146 0.4020 +22906 27044 0.5090 +22906 27185 0.8790 +22906 51024 0.4980 +22906 51143 0.5490 +22906 51154 0.4100 +22906 54820 0.9220 +22906 54845 0.4990 +22906 54927 0.6590 +22906 54986 0.5700 +22906 55109 0.5760 +22906 55288 0.9990 +22906 55638 0.6600 +22906 55669 0.7190 +22906 55750 0.4990 +22906 55860 0.5170 +22906 56829 0.4990 +22906 56947 0.4800 +22906 57085 0.4990 +22906 57670 0.5340 +22906 64837 0.5430 +22906 65018 0.8480 +22906 66008 0.9660 +22906 80179 0.7940 +22906 80853 0.5040 +22906 84270 0.4350 +22906 84376 0.4540 +22906 84709 0.5500 +22906 89941 0.9990 +22906 89953 0.5570 +22906 92558 0.4460 +22906 139322 0.5110 +22906 147700 0.4680 +22907 22916 0.6820 +22907 22984 0.5200 +22907 23020 0.5640 +22907 23029 0.5450 +22907 23107 0.4330 +22907 23203 0.6170 +22907 23212 0.5400 +22907 23223 0.5720 +22907 23295 0.4140 +22907 23378 0.4980 +22907 23395 0.4960 +22907 23405 0.4540 +22907 23450 0.5850 +22907 23517 0.4250 +22907 24144 0.4500 +22907 25885 0.4380 +22907 25930 0.4310 +22907 25998 0.4360 +22907 26024 0.4460 +22907 26155 0.6480 +22907 26164 0.4470 +22907 26284 0.5390 +22907 26523 0.6030 +22907 27161 0.6320 +22907 27339 0.5490 +22907 27341 0.4670 +22907 29117 0.4250 +22907 29777 0.4080 +22907 29889 0.4020 +22907 29960 0.4220 +22907 29997 0.4510 +22907 50618 0.5290 +22907 51001 0.4770 +22907 51081 0.4030 +22907 51096 0.5190 +22907 51202 0.4660 +22907 51574 0.5990 +22907 54542 0.5270 +22907 54606 0.6600 +22907 54931 0.6390 +22907 55037 0.7530 +22907 55131 0.4230 +22907 55178 0.5660 +22907 55226 0.4080 +22907 55308 0.5850 +22907 55794 0.8160 +22907 55813 0.5660 +22907 56829 0.6540 +22907 56915 0.5190 +22907 56945 0.4250 +22907 56949 0.4220 +22907 57050 0.4230 +22907 57062 0.5550 +22907 57647 0.4310 +22907 57696 0.4360 +22907 60528 0.5270 +22907 65083 0.4880 +22907 79009 0.4010 +22907 79039 0.5980 +22907 79050 0.4310 +22907 79072 0.7690 +22907 79132 0.5590 +22907 79736 0.4800 +22907 79922 0.5600 +22907 81892 0.4840 +22907 83479 0.5800 +22907 83743 0.5010 +22907 84273 0.5540 +22907 84881 0.5110 +22907 84916 0.4350 +22907 84964 0.4100 +22907 85476 0.5200 +22907 85865 0.4060 +22907 92170 0.4470 +22907 92399 0.6330 +22907 92667 0.4050 +22907 92856 0.4010 +22907 115416 0.5010 +22907 124245 0.4060 +22907 130916 0.4220 +22907 149041 0.5230 +22907 387338 0.4360 +22909 26585 0.4910 +22909 27030 0.4780 +22909 29089 0.6290 +22909 51426 0.4570 +22909 51455 0.5060 +22909 51621 0.5250 +22909 54893 0.9490 +22909 55120 0.7980 +22909 55215 0.9950 +22909 55218 0.4090 +22909 56852 0.7500 +22909 57560 0.6580 +22909 57599 0.5680 +22909 57697 0.8240 +22909 64858 0.7510 +22909 79659 0.5560 +22909 80198 0.8120 +22909 80233 0.6330 +22909 83990 0.5850 +22909 84464 0.8650 +22909 89839 0.5830 +22909 91442 0.7680 +22909 113510 0.4480 +22909 146956 0.7570 +22909 161725 0.6200 +22909 197342 0.5870 +22909 199221 0.4750 +22909 199990 0.6100 +22909 201254 0.5920 +22909 342184 0.5480 +22909 353497 0.7480 +22909 378708 0.6050 +22909 548593 0.8500 +22911 23155 0.4750 +22911 23271 0.7670 +22911 56900 0.5270 +22911 57472 0.4400 +22911 57662 0.8610 +22911 64795 0.4660 +22911 79819 0.4980 +22911 93627 0.4020 +22911 126820 0.4980 +22911 132228 0.4840 +22911 157922 0.5050 +22911 163479 0.4340 +22911 254170 0.5210 +22911 284611 0.4320 +22911 284615 0.4100 +22911 286006 0.4700 +22911 440712 0.4220 +22913 22938 0.4750 +22913 23363 0.5210 +22913 23435 0.4960 +22913 23451 0.4130 +22913 23543 0.4800 +22913 23774 0.4280 +22913 26156 0.4120 +22913 26986 0.7550 +22913 27154 0.4230 +22913 27316 0.6120 +22913 27339 0.4420 +22913 29896 0.4470 +22913 51151 0.4940 +22913 51340 0.4360 +22913 51362 0.4340 +22913 54606 0.5140 +22913 54796 0.4470 +22913 54849 0.5570 +22913 55342 0.6410 +22913 55500 0.4220 +22913 56259 0.4130 +22913 56949 0.5890 +22913 57473 0.4340 +22913 79753 0.4540 +22913 81037 0.4310 +22913 84619 0.4370 +22913 84844 0.4160 +22913 91746 0.5670 +22913 121441 0.4300 +22913 124245 0.5410 +22913 138046 0.7560 +22913 200316 0.4310 +22913 220359 0.4080 +22913 221092 0.6680 +22913 283652 0.4330 +22913 343069 0.6220 +22913 373863 0.6290 +22913 440563 0.5490 +22914 23654 0.4990 +22914 23705 0.4360 +22914 25824 0.4850 +22914 27036 0.5090 +22914 27040 0.6030 +22914 27087 0.7130 +22914 29126 0.6710 +22914 29851 0.5560 +22914 30009 0.7480 +22914 50616 0.4740 +22914 50943 0.6110 +22914 51266 0.4950 +22914 51284 0.5360 +22914 51348 0.7000 +22914 51744 0.7540 +22914 54106 0.4380 +22914 54209 0.4720 +22914 55014 0.4330 +22914 55303 0.4460 +22914 56253 0.5140 +22914 57823 0.7610 +22914 64919 0.5550 +22914 79465 0.9990 +22914 80328 0.9990 +22914 80329 0.9990 +22914 80380 0.4950 +22914 80381 0.5830 +22914 83416 0.5130 +22914 84061 0.4350 +22914 84662 0.5820 +22914 84868 0.6780 +22914 94241 0.5010 +22914 114836 0.8380 +22914 117157 0.4500 +22914 135250 0.9990 +22914 151888 0.4930 +22914 154064 0.9990 +22914 169355 0.5130 +22914 201633 0.7110 +22914 246778 0.4530 +22914 255520 0.4910 +22914 257101 0.5440 +22914 259197 0.9720 +22914 284194 0.4400 +22914 353091 0.9990 +22914 374383 0.7120 +22914 474344 0.4110 +22914 654346 0.4400 +22914 100507436 0.9990 +22914 100526664 0.4630 +22915 56265 0.4630 +22915 57523 0.4990 +22915 58504 0.4030 +22915 63923 0.5450 +22915 84659 0.4200 +22915 139285 0.4030 +22915 284217 0.5450 +22915 284422 0.5090 +22915 392617 0.4110 +22915 401145 0.4020 +22915 448834 0.4420 +22916 22938 0.8590 +22916 22985 0.6720 +22916 23020 0.9590 +22916 23049 0.9970 +22916 23064 0.6250 +22916 23082 0.6830 +22916 23091 0.5870 +22916 23165 0.6290 +22916 23168 0.5670 +22916 23191 0.7350 +22916 23225 0.5040 +22916 23279 0.6540 +22916 23283 0.6490 +22916 23293 0.7840 +22916 23350 0.6080 +22916 23381 0.7730 +22916 23435 0.4150 +22916 23450 0.9880 +22916 23451 0.9620 +22916 23511 0.5130 +22916 23517 0.9210 +22916 23543 0.5620 +22916 23581 0.6030 +22916 23633 0.8010 +22916 23636 0.5770 +22916 23658 0.8890 +22916 24144 0.6260 +22916 24148 0.7450 +22916 24149 0.4540 +22916 25766 0.7770 +22916 25804 0.8920 +22916 25888 0.5070 +22916 25920 0.8650 +22916 25929 0.6890 +22916 26019 0.8680 +22916 26043 0.5250 +22916 26097 0.6840 +22916 26523 0.6220 +22916 26986 0.9440 +22916 27125 0.5410 +22916 27161 0.9220 +22916 27258 0.8740 +22916 27286 0.5340 +22916 27316 0.8370 +22916 27339 0.7910 +22916 28960 0.4210 +22916 29101 0.5010 +22916 29102 0.5710 +22916 29107 0.4130 +22916 29894 0.6060 +22916 29896 0.4630 +22916 50628 0.5650 +22916 51010 0.4010 +22916 51031 0.4570 +22916 51095 0.4070 +22916 51122 0.6300 +22916 51213 0.4990 +22916 51224 0.4990 +22916 51317 0.4030 +22916 51322 0.5910 +22916 51340 0.4830 +22916 51362 0.9350 +22916 51441 0.4900 +22916 51493 0.4810 +22916 51497 0.6810 +22916 51503 0.8740 +22916 51534 0.4660 +22916 51538 0.7180 +22916 51574 0.6860 +22916 51585 0.7090 +22916 51593 0.9990 +22916 51602 0.4920 +22916 51631 0.6620 +22916 51639 0.8250 +22916 51690 0.8500 +22916 51691 0.8700 +22916 51692 0.7030 +22916 51729 0.8410 +22916 51747 0.5290 +22916 51808 0.9940 +22916 53371 0.5940 +22916 53981 0.6440 +22916 54439 0.6310 +22916 54464 0.5040 +22916 54623 0.5480 +22916 54845 0.5000 +22916 54952 0.5930 +22916 54960 0.5040 +22916 55015 0.8120 +22916 55082 0.7020 +22916 55110 0.8180 +22916 55226 0.6990 +22916 55234 0.6700 +22916 55285 0.5100 +22916 55339 0.6300 +22916 55421 0.9860 +22916 55521 0.4300 +22916 55596 0.9040 +22916 55599 0.5640 +22916 55629 0.6540 +22916 55651 0.4760 +22916 55660 0.8240 +22916 55677 0.6320 +22916 55692 0.8540 +22916 55696 0.8980 +22916 55706 0.5200 +22916 55746 0.6620 +22916 55749 0.6400 +22916 55795 0.5550 +22916 55802 0.6460 +22916 55840 0.5030 +22916 55954 0.5840 +22916 56000 0.5590 +22916 56001 0.5590 +22916 56254 0.4390 +22916 56339 0.4910 +22916 57122 0.6370 +22916 57187 0.9640 +22916 57466 0.7840 +22916 57521 0.5150 +22916 57703 0.4400 +22916 57721 0.4890 +22916 57819 0.8600 +22916 58517 0.9750 +22916 59286 0.8170 +22916 64221 0.5380 +22916 65083 0.5970 +22916 65109 0.8100 +22916 65110 0.8600 +22916 79023 0.5940 +22916 79026 0.6200 +22916 79228 0.6580 +22916 79446 0.5220 +22916 79577 0.5740 +22916 79618 0.4420 +22916 79696 0.4390 +22916 79707 0.6450 +22916 79753 0.8660 +22916 79760 0.5090 +22916 79833 0.5740 +22916 79869 0.6680 +22916 79882 0.8780 +22916 79902 0.5620 +22916 80004 0.4990 +22916 80145 0.6630 +22916 80235 0.4790 +22916 80336 0.4390 +22916 80349 0.6600 +22916 81608 0.8250 +22916 81929 0.6960 +22916 83443 0.8190 +22916 83640 0.9100 +22916 84186 0.4990 +22916 84196 0.4920 +22916 84248 0.6340 +22916 84271 0.8200 +22916 84316 0.4030 +22916 84321 0.7350 +22916 84324 0.6820 +22916 84844 0.8230 +22916 84950 0.8750 +22916 84967 0.8200 +22916 85235 0.6040 +22916 85403 0.5090 +22916 89777 0.5910 +22916 90933 0.4200 +22916 91408 0.4950 +22916 96764 0.5930 +22916 123169 0.6050 +22916 124245 0.8940 +22916 126259 0.4030 +22916 129401 0.5310 +22916 131540 0.4770 +22916 132430 0.4420 +22916 133522 0.8780 +22916 134353 0.5470 +22916 143884 0.4990 +22916 147650 0.4030 +22916 152217 0.5840 +22916 153527 0.8060 +22916 165918 0.4420 +22916 167227 0.5340 +22916 196441 0.6100 +22916 199746 0.5310 +22916 200931 0.4070 +22916 200933 0.5550 +22916 205564 0.5670 +22916 220988 0.7410 +22916 221092 0.6390 +22916 253314 0.8480 +22916 255758 0.4250 +22916 317649 0.8510 +22916 347744 0.5740 +22916 348793 0.6920 +22916 348995 0.5180 +22916 353267 0.7380 +22916 392517 0.9020 +22916 402569 0.4890 +22916 404672 0.5300 +22916 728343 0.5590 +22916 100101267 0.5290 +22916 100996928 0.6580 +22916 101669762 0.4370 +22917 22932 0.4800 +22917 50511 0.4170 +22917 51087 0.4690 +22917 54514 0.4090 +22917 54937 0.4750 +22917 56776 0.4620 +22917 57829 0.9790 +22917 79816 0.4290 +22917 117144 0.4030 +22917 126206 0.6800 +22917 132243 0.5140 +22917 135935 0.6930 +22917 197135 0.4020 +22917 246777 0.5590 +22917 255649 0.5710 +22917 284359 0.6520 +22917 326340 0.5420 +22917 344018 0.7590 +22917 346673 0.4210 +22917 347688 0.4620 +22917 359787 0.4200 +22917 402381 0.5600 +22917 431705 0.6650 +22917 431707 0.5100 +22917 494551 0.4440 +22917 100129669 0.4300 +22917 100526761 0.4730 +22918 23166 0.5260 +22918 26191 0.4510 +22918 27143 0.4420 +22918 51094 0.5110 +22918 53342 0.5420 +22918 54538 0.5800 +22918 54918 0.4020 +22918 55303 0.4360 +22918 79812 0.6900 +22918 114898 0.5920 +22918 116159 0.4150 +22918 140885 0.6010 +22918 155038 0.4380 +22918 160364 0.6500 +22918 199675 0.5330 +22918 653509 0.4960 +22918 100133941 0.4230 +22919 22920 0.5000 +22919 22924 0.9920 +22919 23019 0.4290 +22919 23122 0.9480 +22919 23244 0.4750 +22919 23271 0.5310 +22919 23332 0.8450 +22919 23354 0.5210 +22919 23499 0.9020 +22919 23607 0.4050 +22919 24137 0.5120 +22919 25876 0.8200 +22919 26471 0.4500 +22919 27436 0.6110 +22919 30011 0.4400 +22919 51175 0.4530 +22919 51512 0.8400 +22919 51807 0.4320 +22919 54801 0.5770 +22919 54820 0.5090 +22919 54930 0.4990 +22919 55142 0.5040 +22919 55201 0.4800 +22919 55559 0.5100 +22919 55638 0.6110 +22919 55700 0.4790 +22919 55755 0.7030 +22919 55920 0.6700 +22919 56243 0.4590 +22919 57446 0.4310 +22919 57509 0.4910 +22919 57576 0.8100 +22919 57606 0.6180 +22919 64844 0.4400 +22919 79441 0.5100 +22919 79866 0.5290 +22919 81027 0.4540 +22919 81930 0.5740 +22919 83903 0.4740 +22919 84260 0.5270 +22919 84617 0.4630 +22919 84630 0.4240 +22919 84722 0.6500 +22919 84790 0.5480 +22919 89796 0.6420 +22919 90417 0.6950 +22919 90990 0.4550 +22919 93323 0.5850 +22919 93594 0.4710 +22919 112714 0.4220 +22919 115106 0.5850 +22919 117177 0.5730 +22919 122060 0.5230 +22919 145508 0.4480 +22919 146909 0.8820 +22919 149951 0.5470 +22919 203068 0.7970 +22919 221150 0.5340 +22919 246176 0.5670 +22919 285643 0.4990 +22919 347688 0.4240 +22919 347733 0.4150 +22919 401145 0.4920 +22919 653857 0.4110 +22919 728642 0.5340 +22919 729597 0.4800 +22920 23025 0.7030 +22920 23046 0.6700 +22920 23059 0.4160 +22920 23095 0.6840 +22920 23122 0.4300 +22920 23303 0.6300 +22920 23435 0.5110 +22920 24137 0.6030 +22920 25897 0.5070 +22920 26056 0.4880 +22920 26153 0.7790 +22920 26160 0.4770 +22920 26286 0.5040 +22920 27035 0.4390 +22920 27185 0.4920 +22920 27241 0.4870 +22920 28981 0.4840 +22920 29127 0.5370 +22920 29922 0.4640 +22920 50649 0.7030 +22920 51098 0.6890 +22920 51164 0.5040 +22920 51594 0.5210 +22920 51617 0.4300 +22920 51626 0.5160 +22920 53407 0.5040 +22920 54820 0.5630 +22920 55081 0.6510 +22920 55083 0.7670 +22920 55179 0.5950 +22920 55212 0.4220 +22920 55252 0.4350 +22920 55277 0.5720 +22920 55582 0.7120 +22920 55605 0.7230 +22920 55614 0.6880 +22920 55738 0.4990 +22920 55764 0.4080 +22920 55850 0.5000 +22920 55860 0.5600 +22920 56912 0.5120 +22920 56992 0.8700 +22920 57560 0.4720 +22920 57576 0.8550 +22920 57728 0.5300 +22920 60561 0.5040 +22920 63971 0.6940 +22920 64837 0.7870 +22920 79639 0.4510 +22920 79659 0.4900 +22920 79809 0.4670 +22920 80173 0.4360 +22920 81565 0.5710 +22920 81930 0.6430 +22920 84364 0.4990 +22920 84516 0.5010 +22920 84643 0.6280 +22920 89953 0.4690 +22920 90410 0.5440 +22920 90990 0.6910 +22920 93661 0.4990 +22920 124602 0.6320 +22920 146909 0.6200 +22920 147700 0.5750 +22920 149281 0.5450 +22920 150737 0.4790 +22920 221458 0.7590 +22920 261734 0.4350 +22920 285643 0.5630 +22920 374654 0.6870 +22921 22928 0.4550 +22921 28998 0.4200 +22921 51021 0.4100 +22921 51073 0.4350 +22921 51264 0.4020 +22921 51422 0.4310 +22921 51714 0.5410 +22921 51734 0.5420 +22921 54805 0.5660 +22921 55052 0.5480 +22921 57190 0.4090 +22921 58515 0.4380 +22921 63875 0.4100 +22921 64780 0.4600 +22921 64960 0.4020 +22921 64965 0.4040 +22921 64979 0.4390 +22921 65003 0.4280 +22921 80273 0.4730 +22921 81570 0.4730 +22921 83642 0.5540 +22921 84545 0.4040 +22921 93643 0.6220 +22921 114112 0.4480 +22921 126364 0.4400 +22921 140606 0.4510 +22921 257202 0.4410 +22921 267012 0.4700 +22921 280636 0.4150 +22921 493869 0.4610 +22924 23046 0.5440 +22924 23122 0.6940 +22924 23271 0.5970 +22924 23332 0.6880 +22924 23394 0.5480 +22924 23499 0.5560 +22924 25876 0.8810 +22924 25999 0.4210 +22924 50649 0.4240 +22924 51175 0.4070 +22924 51807 0.5030 +22924 55605 0.4500 +22924 55700 0.4340 +22924 55755 0.4030 +22924 57509 0.4640 +22924 57576 0.7330 +22924 57606 0.4920 +22924 57620 0.6140 +22924 57662 0.5210 +22924 57731 0.4510 +22924 79649 0.4950 +22924 79745 0.4070 +22924 79823 0.4650 +22924 79861 0.4310 +22924 80128 0.5180 +22924 80725 0.9160 +22924 81027 0.4080 +22924 81565 0.4290 +22924 81930 0.6250 +22924 83540 0.4070 +22924 84617 0.6590 +22924 84630 0.5240 +22924 84722 0.4980 +22924 84790 0.4260 +22924 90417 0.4230 +22924 90990 0.5190 +22924 112714 0.4330 +22924 113457 0.4640 +22924 121441 0.4810 +22924 124602 0.5770 +22924 129285 0.4720 +22924 133482 0.4380 +22924 146057 0.5840 +22924 146909 0.6360 +22924 157922 0.4540 +22924 203068 0.6850 +22924 219287 0.5560 +22924 246176 0.5290 +22924 347733 0.9480 +22924 374654 0.4740 +22925 26279 0.9110 +22925 30814 0.6030 +22925 221981 0.9120 +22926 22937 0.7450 +22926 23071 0.4220 +22926 23197 0.5290 +22926 23235 0.4190 +22926 23411 0.4670 +22926 23645 0.7790 +22926 26092 0.4610 +22926 27102 0.5380 +22926 27201 0.7350 +22926 27248 0.6100 +22926 29927 0.5150 +22926 30001 0.7310 +22926 51009 0.6540 +22926 51060 0.7330 +22926 51360 0.9780 +22926 51465 0.5410 +22926 51493 0.4400 +22926 51726 0.5210 +22926 54205 0.6140 +22926 54431 0.6440 +22926 54714 0.5710 +22926 55062 0.4220 +22926 55741 0.5300 +22926 56605 0.5880 +22926 56681 0.4230 +22926 56886 0.4750 +22926 57521 0.4850 +22926 57761 0.5370 +22926 58515 0.4430 +22926 64083 0.5960 +22926 64374 0.4080 +22926 64422 0.4210 +22926 64764 0.4230 +22926 64784 0.4220 +22926 65018 0.4090 +22926 79139 0.5110 +22926 79174 0.4380 +22926 80267 0.4830 +22926 81631 0.5560 +22926 83939 0.6520 +22926 84447 0.7840 +22926 84699 0.7540 +22926 84919 0.4300 +22926 90993 0.7470 +22926 91319 0.5280 +22926 94103 0.4360 +22926 137902 0.5790 +22926 168620 0.4760 +22926 197131 0.4710 +22926 200186 0.8220 +22926 440275 0.6790 +22926 102723407 0.4550 +22927 23052 0.4190 +22927 23204 0.5470 +22927 23521 0.7680 +22927 23640 0.5210 +22927 23645 0.5670 +22927 25873 0.8510 +22927 25976 0.5300 +22927 27154 0.4050 +22927 28998 0.6060 +22927 29093 0.6030 +22927 29889 0.4710 +22927 50651 0.4900 +22927 51065 0.7510 +22927 51069 0.5860 +22927 51073 0.7070 +22927 51081 0.7200 +22927 51116 0.5440 +22927 51121 0.7080 +22927 51149 0.7590 +22927 51154 0.7020 +22927 51319 0.6020 +22927 51588 0.4460 +22927 54948 0.5220 +22927 55173 0.7650 +22927 55272 0.6940 +22927 55316 0.6620 +22927 55651 0.6230 +22927 56648 0.5700 +22927 56674 0.4720 +22927 56833 0.4060 +22927 57062 0.4380 +22927 63931 0.5760 +22927 64374 0.5210 +22927 64960 0.6970 +22927 64963 0.6350 +22927 64969 0.8010 +22927 65003 0.4840 +22927 65008 0.5120 +22927 79050 0.4590 +22927 79590 0.6000 +22927 79631 0.5390 +22927 79695 0.4180 +22927 80737 0.4580 +22927 80854 0.4020 +22927 81543 0.4410 +22927 83543 0.4070 +22927 84274 0.4270 +22927 84779 0.4260 +22927 85364 0.4110 +22927 85476 0.5390 +22927 85865 0.4110 +22927 89822 0.4360 +22927 92002 0.4760 +22927 92196 0.7950 +22927 114987 0.8390 +22927 116832 0.6920 +22927 124454 0.5090 +22927 126402 0.6080 +22927 131096 0.4090 +22927 140032 0.6400 +22927 140801 0.7680 +22927 143244 0.5500 +22927 165257 0.4470 +22927 195828 0.5110 +22927 200916 0.7090 +22927 254268 0.6970 +22927 256356 0.4650 +22927 285855 0.6420 +22927 286148 0.4930 +22927 347487 0.7260 +22927 387129 0.5810 +22927 641776 0.4630 +22927 643909 0.4630 +22927 645051 0.5280 +22927 645073 0.5280 +22927 728524 0.4630 +22927 729396 0.5280 +22927 729422 0.5280 +22927 729428 0.5890 +22927 729431 0.5280 +22927 729442 0.5280 +22927 729447 0.5280 +22927 100008586 0.5280 +22927 100132399 0.5280 +22927 100287482 0.5440 +22927 100505478 0.5610 +22927 100526842 0.7100 +22927 100529097 0.5680 +22927 100529239 0.7690 +22927 100996746 0.4630 +22927 102724473 0.5280 +22927 105180390 0.4630 +22927 105180391 0.4630 +22928 22929 0.9240 +22928 23588 0.4930 +22928 51091 0.9930 +22928 51540 0.9830 +22928 51714 0.8770 +22928 51734 0.8120 +22928 54938 0.6740 +22928 54952 0.8580 +22928 55034 0.6720 +22928 55829 0.8150 +22928 57190 0.8030 +22928 58515 0.8440 +22928 60678 0.8570 +22928 79048 0.7890 +22928 83642 0.8610 +22928 84171 0.4200 +22928 85465 0.8080 +22928 114112 0.9790 +22928 116138 0.5030 +22928 118672 0.9150 +22928 140606 0.7920 +22928 257202 0.5470 +22928 280636 0.8210 +22928 284131 0.5400 +22928 348303 0.7890 +22928 493869 0.4090 +22929 51091 0.9930 +22929 51540 0.9750 +22929 51714 0.6870 +22929 51734 0.5010 +22929 54938 0.6990 +22929 54952 0.6920 +22929 55034 0.6770 +22929 55308 0.4310 +22929 55759 0.4760 +22929 55829 0.5470 +22929 57190 0.5540 +22929 57380 0.4120 +22929 58515 0.6030 +22929 60678 0.9370 +22929 79048 0.6930 +22929 83642 0.5990 +22929 85465 0.5300 +22929 114112 0.9420 +22929 118672 0.8080 +22929 140606 0.5500 +22929 280636 0.4710 +22929 348303 0.5710 +22930 22931 0.9360 +22930 23041 0.4350 +22930 23169 0.4450 +22930 23190 0.4250 +22930 23299 0.5130 +22930 23312 0.9130 +22930 23317 0.4510 +22930 23335 0.6460 +22930 23348 0.5230 +22930 23518 0.4780 +22930 23637 0.6280 +22930 25782 0.9990 +22930 25819 0.6010 +22930 25831 0.4390 +22930 26057 0.6630 +22930 26058 0.5460 +22930 26128 0.4430 +22930 30813 0.5750 +22930 51143 0.5260 +22930 51164 0.6520 +22930 51560 0.5830 +22930 51594 0.4830 +22930 54521 0.5450 +22930 54734 0.5540 +22930 54878 0.5320 +22930 55031 0.6360 +22930 55860 0.5210 +22930 57148 0.4370 +22930 57403 0.5960 +22930 57724 0.5310 +22930 60592 0.5640 +22930 64778 0.4370 +22930 79577 0.4370 +22930 84516 0.5830 +22930 84627 0.5490 +22930 93661 0.4990 +22930 116442 0.4710 +22930 128637 0.7890 +22930 140735 0.5090 +22930 145389 0.6050 +22930 285282 0.5020 +22930 345651 0.4250 +22930 375056 0.4610 +22931 23080 0.4050 +22931 23230 0.4870 +22931 23299 0.5730 +22931 25782 0.9330 +22931 25923 0.5140 +22931 26580 0.7030 +22931 27314 0.5340 +22931 51099 0.5360 +22931 51128 0.4060 +22931 51143 0.5350 +22931 51164 0.5640 +22931 51560 0.5930 +22931 53349 0.6110 +22931 53407 0.7880 +22931 55296 0.4640 +22931 55860 0.5930 +22931 57104 0.4700 +22931 57231 0.5800 +22931 60561 0.9350 +22931 84516 0.5090 +22931 84649 0.4510 +22931 84932 0.5040 +22931 93661 0.5320 +22931 128486 0.4130 +22931 128637 0.7920 +22931 137964 0.4780 +22931 140735 0.5040 +22931 255520 0.4120 +22931 401409 0.5660 +22931 440503 0.4580 +22931 729359 0.6200 +22932 57829 0.4420 +22932 122742 0.5070 +22932 146562 0.4310 +22932 326340 0.4150 +22932 441581 0.4740 +22933 23028 0.4530 +22933 23057 0.9420 +22933 23137 0.5650 +22933 23141 0.8000 +22933 23186 0.7130 +22933 23378 0.9110 +22933 23408 0.6780 +22933 23409 0.8000 +22933 23410 0.6390 +22933 23411 0.9560 +22933 23512 0.4390 +22933 23530 0.9100 +22933 25782 0.4610 +22933 25828 0.5710 +22933 25842 0.7030 +22933 26013 0.5770 +22933 26227 0.4440 +22933 29072 0.4540 +22933 51185 0.7110 +22933 51433 0.4310 +22933 51547 0.5730 +22933 51548 0.5750 +22933 51564 0.6430 +22933 51601 0.4940 +22933 54205 0.4200 +22933 54583 0.4490 +22933 55140 0.5190 +22933 55191 0.9340 +22933 55388 0.5900 +22933 55750 0.4350 +22933 55869 0.8860 +22933 55902 0.4420 +22933 57678 0.4550 +22933 60487 0.5510 +22933 64802 0.9500 +22933 65018 0.5940 +22933 79594 0.4840 +22933 79885 0.7520 +22933 79969 0.8060 +22933 80854 0.5800 +22933 83594 0.9400 +22933 83933 0.6830 +22933 84126 0.4360 +22933 84148 0.4900 +22933 84444 0.5450 +22933 84447 0.5350 +22933 84532 0.5250 +22933 91582 0.5070 +22933 92140 0.4180 +22933 92292 0.4750 +22933 93100 0.4710 +22933 116447 0.5020 +22933 122481 0.6020 +22933 133686 0.9000 +22933 200186 0.4660 +22933 349565 0.4340 +22933 387893 0.5460 +22933 440093 0.8620 +22933 440686 0.8630 +22933 653604 0.8620 +22934 25796 0.7730 +22934 25853 0.4080 +22934 25973 0.4470 +22934 26330 0.4300 +22934 27068 0.4430 +22934 27102 0.4540 +22934 27231 0.5240 +22934 29968 0.4580 +22934 51071 0.6870 +22934 51218 0.4280 +22934 51388 0.4150 +22934 51759 0.4340 +22934 54963 0.5400 +22934 54981 0.5370 +22934 54995 0.4650 +22934 55258 0.4210 +22934 55276 0.9520 +22934 55753 0.4020 +22934 57103 0.4400 +22934 57589 0.4060 +22934 64077 0.4580 +22934 64080 0.9750 +22934 81570 0.5130 +22934 83549 0.5680 +22934 84076 0.9930 +22934 84172 0.4590 +22934 84705 0.5170 +22934 84955 0.6260 +22934 122622 0.4300 +22934 129831 0.8730 +22934 130589 0.5860 +22934 154141 0.4240 +22934 200523 0.4100 +22934 221823 0.9600 +22934 283209 0.4050 +22934 387712 0.4520 +22934 388677 0.6060 +22934 414328 0.5680 +22934 441024 0.4520 +22934 441531 0.4500 +22934 729020 0.9960 +22936 23097 0.4920 +22936 23168 0.9070 +22936 23379 0.9460 +22936 23476 0.4880 +22936 25920 0.9240 +22936 26610 0.9000 +22936 26747 0.7210 +22936 27125 0.9990 +22936 29101 0.4690 +22936 51224 0.4100 +22936 51497 0.9030 +22936 51574 0.7430 +22936 51585 0.5070 +22936 51755 0.6230 +22936 54623 0.9000 +22936 55250 0.7220 +22936 55840 0.9770 +22936 56257 0.6080 +22936 79577 0.9210 +22936 79664 0.9440 +22936 80237 0.9580 +22936 80349 0.9030 +22936 81669 0.4450 +22936 84337 0.5420 +22936 84524 0.9130 +22936 85403 0.9990 +22936 92906 0.4570 +22936 123169 0.9230 +22936 124790 0.5230 +22936 353322 0.4030 +22937 23070 0.4370 +22937 23381 0.5550 +22937 23644 0.5600 +22937 29116 0.4350 +22937 51085 0.4090 +22937 51128 0.5370 +22937 51141 0.9990 +22937 51360 0.9180 +22937 57521 0.4160 +22937 64240 0.4730 +22937 64241 0.4050 +22937 80347 0.4350 +22937 114548 0.5530 +22937 152559 0.6170 +22937 153830 0.4420 +22937 255738 0.4420 +22938 22944 0.8300 +22938 22985 0.4750 +22938 23020 0.9980 +22938 23082 0.8150 +22938 23091 0.4420 +22938 23112 0.5040 +22938 23129 0.5050 +22938 23327 0.5050 +22938 23398 0.8590 +22938 23435 0.4380 +22938 23439 0.9140 +22938 23450 0.9900 +22938 23451 0.9960 +22938 23462 0.6040 +22938 23476 0.5790 +22938 23493 0.5810 +22938 23517 0.7120 +22938 23524 0.9960 +22938 23592 0.4600 +22938 23595 0.4610 +22938 23658 0.8620 +22938 23759 0.9530 +22938 24144 0.9450 +22938 24148 0.7220 +22938 25804 0.9140 +22938 25937 0.5030 +22938 25942 0.4710 +22938 25949 0.9990 +22938 26017 0.8060 +22938 26121 0.4430 +22938 26508 0.5760 +22938 26523 0.5220 +22938 26986 0.4390 +22938 27044 0.4140 +22938 27161 0.5240 +22938 27238 0.8200 +22938 27258 0.9040 +22938 27304 0.4330 +22938 27316 0.4650 +22938 27327 0.5240 +22938 27339 0.9990 +22938 29079 0.5180 +22938 29115 0.5020 +22938 29117 0.4020 +22938 51176 0.6980 +22938 51340 0.9990 +22938 51362 0.9990 +22938 51428 0.4090 +22938 51441 0.5030 +22938 51503 0.9990 +22938 51564 0.5100 +22938 51574 0.6300 +22938 51586 0.4870 +22938 51634 0.9830 +22938 51639 0.8970 +22938 51645 0.9990 +22938 51690 0.8500 +22938 51691 0.8400 +22938 51729 0.8830 +22938 53938 0.5530 +22938 54778 0.5220 +22938 54883 0.9590 +22938 54934 0.4460 +22938 55015 0.4290 +22938 55094 0.5230 +22938 55100 0.8900 +22938 55110 0.8540 +22938 55192 0.5210 +22938 55234 0.5460 +22938 55280 0.5400 +22938 55285 0.5820 +22938 55294 0.7220 +22938 55534 0.6920 +22938 55599 0.5780 +22938 55633 0.5130 +22938 55660 0.5240 +22938 55696 0.9990 +22938 55702 0.9960 +22938 55760 0.6150 +22938 55837 0.4170 +22938 55869 0.5190 +22938 56259 0.9590 +22938 56919 0.5870 +22938 56949 0.9990 +22938 57187 0.4750 +22938 57456 0.5970 +22938 57461 0.9930 +22938 57647 0.4430 +22938 57703 0.9990 +22938 57805 0.5850 +22938 57819 0.8800 +22938 58509 0.8850 +22938 58517 0.5050 +22938 59286 0.8880 +22938 60625 0.7570 +22938 63932 0.6650 +22938 64750 0.5070 +22938 64848 0.4410 +22938 79005 0.8090 +22938 79009 0.4200 +22938 79446 0.8920 +22938 79576 0.8130 +22938 79577 0.4040 +22938 79631 0.7020 +22938 79637 0.9220 +22938 79650 0.8800 +22938 79665 0.4550 +22938 79706 0.8050 +22938 79718 0.5760 +22938 79753 0.9980 +22938 79811 0.4130 +22938 79869 0.4730 +22938 79885 0.5440 +22938 80011 0.8050 +22938 80135 0.4070 +22938 80331 0.8050 +22938 80336 0.4420 +22938 81608 0.4670 +22938 81892 0.8570 +22938 83443 0.9460 +22938 83933 0.5180 +22938 83938 0.8040 +22938 84060 0.8060 +22938 84164 0.4200 +22938 84292 0.6860 +22938 84316 0.6050 +22938 84441 0.6940 +22938 84708 0.4120 +22938 84811 0.9890 +22938 84844 0.9470 +22938 84950 0.9480 +22938 84967 0.7980 +22938 84991 0.4020 +22938 85313 0.5300 +22938 85476 0.6980 +22938 85479 0.8050 +22938 91603 0.9780 +22938 124245 0.6240 +22938 126259 0.6050 +22938 129831 0.5020 +22938 132430 0.4420 +22938 142678 0.4150 +22938 143884 0.9580 +22938 144983 0.4010 +22938 147650 0.6050 +22938 151613 0.4990 +22938 151903 0.4740 +22938 153527 0.8980 +22938 154007 0.6570 +22938 157697 0.4180 +22938 163859 0.8140 +22938 164045 0.8280 +22938 165545 0.6150 +22938 192669 0.5310 +22938 192670 0.5320 +22938 199746 0.5950 +22938 220074 0.8040 +22938 221079 0.4450 +22938 222183 0.7500 +22938 256536 0.8460 +22938 340529 0.4400 +22938 343069 0.4360 +22938 343930 0.4990 +22938 388585 0.5830 +22938 100534599 0.9430 +22941 22999 0.5730 +22941 23040 0.4300 +22941 23191 0.4690 +22941 23245 0.5140 +22941 23284 0.5340 +22941 23426 0.5930 +22941 23504 0.5200 +22941 25791 0.4160 +22941 26047 0.8260 +22941 26053 0.6830 +22941 28988 0.5900 +22941 50614 0.4050 +22941 50834 0.4180 +22941 50944 0.9680 +22941 51701 0.5320 +22941 51725 0.4730 +22941 54413 0.9580 +22941 55072 0.4700 +22941 55198 0.4220 +22941 57030 0.4660 +22941 57120 0.4850 +22941 57502 0.9640 +22941 57554 0.6470 +22941 57555 0.8680 +22941 57680 0.5070 +22941 58512 0.9170 +22941 59272 0.5170 +22941 64326 0.4590 +22941 79849 0.5950 +22941 81858 0.8980 +22941 84445 0.5420 +22941 85358 0.9800 +22941 116443 0.5750 +22941 139411 0.8480 +22941 146330 0.4020 +22941 152330 0.6310 +22941 168400 0.6000 +22941 220064 0.4580 +22941 220074 0.6510 +22941 285195 0.6860 +22943 23184 0.6340 +22943 23302 0.4130 +22943 23462 0.5340 +22943 26281 0.5080 +22943 27006 0.4900 +22943 27120 0.7610 +22943 27121 0.9270 +22943 27122 0.9490 +22943 27123 0.9380 +22943 27248 0.5810 +22943 29126 0.5760 +22943 50964 0.9570 +22943 51176 0.7980 +22943 51384 0.8790 +22943 54205 0.4550 +22943 54361 0.9050 +22943 54502 0.5310 +22943 54894 0.5140 +22943 55366 0.5030 +22943 55504 0.4560 +22943 56955 0.4460 +22943 64321 0.4590 +22943 64840 0.4840 +22943 79412 0.9990 +22943 79923 0.5020 +22943 79971 0.4080 +22943 80326 0.8450 +22943 80351 0.4330 +22943 81029 0.8590 +22943 83999 0.9990 +22943 84133 0.7180 +22943 84168 0.4310 +22943 84870 0.5120 +22943 85407 0.6930 +22943 89780 0.9670 +22943 92667 0.6050 +22943 121340 0.6260 +22943 129831 0.5050 +22943 137902 0.4250 +22943 147111 0.4340 +22943 147495 0.4060 +22943 284654 0.6170 +22943 340419 0.5040 +22943 378708 0.4130 +22943 388585 0.4800 +22943 441478 0.4910 +22943 653269 0.4210 +22943 100526739 0.4130 +22944 23020 0.8660 +22944 23450 0.9100 +22944 23451 0.9040 +22944 23759 0.8140 +22944 25895 0.5200 +22944 51244 0.4150 +22944 51340 0.8370 +22944 51362 0.8350 +22944 51503 0.8200 +22944 51634 0.9190 +22944 51639 0.8060 +22944 55696 0.8020 +22944 56259 0.8080 +22944 56949 0.8430 +22944 59286 0.8050 +22944 79091 0.9860 +22944 79609 0.6780 +22944 79753 0.8240 +22944 79823 0.5810 +22944 83443 0.8030 +22944 84811 0.8790 +22944 84844 0.8070 +22944 84950 0.8680 +22944 92342 0.6730 +22944 124512 0.6260 +22944 151194 0.6930 +22944 153527 0.8620 +22944 196483 0.6090 +22944 196541 0.5700 +22944 254013 0.6680 +22944 399818 0.4570 +22948 23030 0.4710 +22948 23234 0.9420 +22948 23243 0.4150 +22948 23395 0.4610 +22948 23404 0.4660 +22948 23476 0.5140 +22948 23521 0.5030 +22948 23753 0.7200 +22948 25789 0.4030 +22948 25843 0.9940 +22948 25853 0.9270 +22948 25902 0.4980 +22948 25914 0.4780 +22948 25956 0.6500 +22948 26190 0.5070 +22948 26224 0.5280 +22948 26234 0.5000 +22948 26270 0.5340 +22948 26272 0.5030 +22948 26330 0.6050 +22948 26353 0.7760 +22948 26985 0.5090 +22948 27101 0.4470 +22948 27241 0.4060 +22948 29789 0.4690 +22948 29888 0.9940 +22948 29966 0.9940 +22948 50834 0.4340 +22948 51182 0.5690 +22948 51298 0.9650 +22948 51386 0.6980 +22948 51398 0.5400 +22948 51520 0.4590 +22948 51585 0.4060 +22948 51726 0.8570 +22948 51764 0.5010 +22948 51807 0.5950 +22948 54331 0.5120 +22948 54461 0.4990 +22948 54475 0.4050 +22948 55135 0.7190 +22948 55172 0.5510 +22948 55212 0.4180 +22948 55220 0.6230 +22948 55291 0.4020 +22948 55294 0.5030 +22948 55466 0.4800 +22948 55780 0.9710 +22948 55844 0.6320 +22948 55970 0.5270 +22948 56984 0.9030 +22948 57003 0.7000 +22948 57591 0.4700 +22948 59345 0.5890 +22948 63971 0.4990 +22948 64446 0.4710 +22948 79031 0.9780 +22948 79084 0.5460 +22948 79577 0.4060 +22948 79657 0.6670 +22948 79738 0.9830 +22948 79861 0.7600 +22948 79968 0.5850 +22948 80086 0.5730 +22948 80273 0.6020 +22948 80342 0.9940 +22948 81027 0.6100 +22948 81570 0.5320 +22948 81572 0.5500 +22948 83743 0.4970 +22948 83752 0.7110 +22948 83992 0.9940 +22948 84140 0.9720 +22948 84261 0.7000 +22948 84321 0.4740 +22948 84617 0.6380 +22948 84790 0.6810 +22948 85377 0.4230 +22948 94235 0.5010 +22948 112714 0.5850 +22948 113457 0.5840 +22948 116835 0.4780 +22948 118813 0.4490 +22948 120379 0.5450 +22948 120892 0.5350 +22948 123103 0.4890 +22948 129880 0.4260 +22948 131474 0.4470 +22948 134145 0.6990 +22948 134266 0.5650 +22948 134492 0.4560 +22948 135138 0.4020 +22948 150160 0.9940 +22948 164395 0.4310 +22948 166379 0.8770 +22948 192670 0.5250 +22948 203068 0.8660 +22948 259217 0.4300 +22948 285126 0.4430 +22948 345630 0.5520 +22948 347733 0.6410 +22948 349136 0.5960 +22948 441531 0.4280 +22949 57016 0.5030 +22949 80341 0.4130 +22949 84129 0.4010 +22949 254042 0.4680 +22953 24145 0.7050 +22953 53829 0.7020 +22953 58492 0.7120 +22953 59341 0.4730 +22953 63910 0.4480 +22953 64805 0.6790 +22953 79054 0.5100 +22953 80834 0.4260 +22953 83756 0.4540 +22953 84818 0.4260 +22953 116337 0.4540 +22953 119395 0.4170 +22953 255022 0.6090 +22953 377841 0.5840 +22953 692312 0.7380 +22954 23087 0.5890 +22954 23245 0.4680 +22954 23586 0.5480 +22954 23650 0.5790 +22954 23710 0.4220 +22954 26258 0.5180 +22954 26523 0.8880 +22954 27241 0.7670 +22954 29110 0.4740 +22954 29954 0.6350 +22954 29978 0.4790 +22954 50852 0.7650 +22954 51057 0.8020 +22954 51127 0.5710 +22954 51428 0.4860 +22954 51588 0.6170 +22954 54585 0.4820 +22954 54765 0.4910 +22954 54903 0.7850 +22954 55212 0.7630 +22954 55223 0.5390 +22954 55367 0.4680 +22954 55624 0.6050 +22954 55626 0.4780 +22954 55763 0.4100 +22954 57447 0.4410 +22954 64400 0.4840 +22954 79102 0.6230 +22954 79140 0.7260 +22954 79147 0.8630 +22954 79594 0.4600 +22954 79738 0.8150 +22954 80184 0.6950 +22954 81603 0.6220 +22954 81631 0.4510 +22954 81844 0.8630 +22954 84062 0.8420 +22954 84662 0.4980 +22954 84676 0.4750 +22954 84851 0.4460 +22954 85363 0.4680 +22954 90268 0.4910 +22954 90933 0.5570 +22954 91147 0.6020 +22954 91445 0.4080 +22954 92482 0.5070 +22954 114088 0.6430 +22954 114907 0.4850 +22954 115004 0.4490 +22954 129880 0.7490 +22954 131405 0.4310 +22954 135892 0.4270 +22954 140691 0.4730 +22954 157657 0.4350 +22954 166379 0.8230 +22954 201292 0.5040 +22954 203859 0.7380 +22954 340061 0.8840 +22954 442862 0.4470 +22954 493829 0.5450 +22955 23028 0.5760 +22955 23112 0.5000 +22955 23135 0.5290 +22955 23186 0.6140 +22955 23429 0.7090 +22955 23466 0.8840 +22955 23492 0.5620 +22955 23512 0.7100 +22955 26013 0.4530 +22955 26053 0.6730 +22955 26147 0.4160 +22955 26523 0.5170 +22955 27327 0.5180 +22955 51564 0.5240 +22955 53615 0.5070 +22955 54145 0.5060 +22955 54799 0.5700 +22955 54808 0.4190 +22955 54815 0.5240 +22955 54880 0.4340 +22955 55766 0.5010 +22955 57167 0.5150 +22955 57332 0.9590 +22955 57459 0.5130 +22955 57504 0.5220 +22955 63035 0.4180 +22955 64319 0.4830 +22955 80012 0.9540 +22955 83746 0.5740 +22955 84108 0.4940 +22955 84217 0.4030 +22955 84232 0.5020 +22955 84333 0.7930 +22955 84733 0.9650 +22955 84759 0.6550 +22955 85236 0.5060 +22955 94239 0.5130 +22955 128312 0.5050 +22955 192669 0.5170 +22955 192670 0.5160 +22955 255626 0.5050 +22955 474382 0.5010 +22955 653604 0.6350 +22955 100532731 0.9340 +22974 23397 0.8540 +22974 24137 0.9650 +22974 25886 0.4080 +22974 25926 0.4210 +22974 26271 0.4750 +22974 26586 0.5400 +22974 27338 0.4690 +22974 29028 0.7550 +22974 29089 0.7990 +22974 29127 0.8640 +22974 29128 0.6990 +22974 50484 0.4750 +22974 51203 0.9640 +22974 51343 0.5310 +22974 51512 0.6870 +22974 51514 0.6760 +22974 51659 0.5240 +22974 54069 0.4100 +22974 54443 0.9230 +22974 54478 0.5990 +22974 54801 0.4610 +22974 54820 0.4630 +22974 54821 0.6540 +22974 54892 0.8070 +22974 54994 0.6060 +22974 55010 0.5050 +22974 55055 0.4300 +22974 55125 0.4190 +22974 55143 0.9190 +22974 55165 0.9440 +22974 55215 0.7240 +22974 55247 0.4650 +22974 55355 0.8920 +22974 55388 0.7950 +22974 55635 0.9030 +22974 55683 0.4370 +22974 55723 0.5960 +22974 55732 0.5180 +22974 55789 0.6590 +22974 55839 0.7660 +22974 56992 0.9480 +22974 57082 0.5510 +22974 57405 0.8370 +22974 57650 0.4120 +22974 59348 0.4070 +22974 64105 0.5280 +22974 64151 0.9490 +22974 79019 0.6370 +22974 79075 0.4010 +22974 79682 0.6100 +22974 79733 0.5820 +22974 79801 0.7010 +22974 79866 0.7300 +22974 79915 0.4330 +22974 79980 0.4560 +22974 81565 0.5670 +22974 81610 0.8640 +22974 81620 0.7150 +22974 81624 0.4740 +22974 81930 0.7110 +22974 83461 0.8810 +22974 83540 0.9470 +22974 83879 0.5030 +22974 83903 0.4690 +22974 84057 0.5150 +22974 84823 0.5240 +22974 84930 0.5010 +22974 84962 0.4990 +22974 90381 0.5020 +22974 90417 0.4130 +22974 90850 0.5320 +22974 113130 0.8830 +22974 116028 0.4080 +22974 121441 0.4630 +22974 128239 0.4500 +22974 133482 0.4610 +22974 144455 0.4210 +22974 146909 0.6830 +22974 150468 0.7560 +22974 151246 0.5310 +22974 151648 0.6110 +22974 157313 0.8100 +22974 220134 0.6110 +22974 220965 0.5060 +22974 221150 0.7910 +22974 259266 0.9490 +22974 285643 0.4100 +22974 347733 0.9110 +22974 402569 0.4450 +22976 23054 0.9990 +22976 23067 0.6870 +22976 23135 0.6920 +22976 23137 0.6660 +22976 23512 0.6500 +22976 24149 0.5110 +22976 25788 0.4330 +22976 26471 0.4050 +22976 27127 0.5020 +22976 29086 0.5850 +22976 29107 0.4100 +22976 30827 0.6510 +22976 50485 0.5840 +22976 51588 0.6080 +22976 51720 0.6770 +22976 54145 0.5220 +22976 54537 0.5840 +22976 54617 0.4810 +22976 54962 0.4920 +22976 55086 0.5210 +22976 55183 0.9380 +22976 55745 0.4940 +22976 55766 0.6040 +22976 56254 0.4050 +22976 56852 0.6720 +22976 56916 0.4390 +22976 57697 0.7130 +22976 58508 0.9990 +22976 64421 0.5800 +22976 79184 0.6050 +22976 79447 0.9990 +22976 79677 0.8920 +22976 79728 0.4490 +22976 80198 0.7870 +22976 80335 0.6470 +22976 84083 0.5960 +22976 84142 0.5720 +22976 84250 0.7940 +22976 84311 0.6980 +22976 84464 0.4110 +22976 84661 0.9960 +22976 84893 0.7550 +22976 84962 0.5040 +22976 85236 0.5250 +22976 85365 0.4600 +22976 89884 0.4270 +22976 94239 0.5840 +22976 128312 0.5260 +22976 143241 0.4040 +22976 149840 0.5700 +22976 157697 0.6040 +22976 165918 0.8080 +22976 254225 0.4110 +22976 255626 0.5190 +22976 259282 0.7060 +22976 286053 0.4960 +22976 348654 0.4950 +22976 440093 0.7060 +22976 440686 0.7060 +22976 474382 0.6040 +22976 548593 0.5150 +22976 653604 0.8480 +22976 102723407 0.6360 +22976 112441434 0.4740 +22977 29099 0.5040 +22977 54995 0.4370 +22977 55349 0.4700 +22977 55746 0.5970 +22977 56912 0.4480 +22977 57016 0.6900 +22977 57122 0.5570 +22977 57727 0.4670 +22977 65992 0.4460 +22977 79025 0.4650 +22977 79902 0.4880 +22977 81929 0.4900 +22977 83592 0.6190 +22977 112817 0.6500 +22977 128876 0.5170 +22977 221357 0.4850 +22977 340811 0.5780 +22977 441282 0.6200 +22977 100101267 0.4670 +22978 23057 0.9030 +22978 23259 0.4010 +22978 23294 0.5440 +22978 23345 0.4570 +22978 23475 0.9120 +22978 23640 0.4950 +22978 26011 0.4490 +22978 26289 0.6520 +22978 27115 0.6610 +22978 30833 0.9630 +22978 50808 0.9000 +22978 50940 0.6770 +22978 51251 0.9610 +22978 51530 0.4330 +22978 51727 0.4210 +22978 51816 0.9150 +22978 54805 0.7900 +22978 54838 0.5470 +22978 55270 0.4190 +22978 56953 0.9580 +22978 57412 0.6180 +22978 57704 0.4110 +22978 58484 0.4930 +22978 64078 0.5050 +22978 64241 0.4260 +22978 64478 0.5680 +22978 64802 0.9070 +22978 79068 0.4850 +22978 79077 0.9090 +22978 79817 0.4680 +22978 79873 0.4100 +22978 80208 0.4100 +22978 80310 0.4120 +22978 80323 0.4460 +22978 83594 0.9200 +22978 84618 0.9670 +22978 93034 0.9500 +22978 93100 0.9010 +22978 94026 0.6170 +22978 115024 0.9410 +22978 119032 0.5850 +22978 122481 0.6500 +22978 122622 0.9160 +22978 124583 0.6920 +22978 129607 0.9050 +22978 131870 0.9080 +22978 139596 0.9000 +22978 151531 0.9170 +22978 158067 0.6500 +22978 221264 0.6500 +22978 221692 0.4160 +22978 221823 0.6000 +22978 375056 0.4420 +22978 377841 0.6820 +22978 100526794 0.9470 +22978 102157402 0.6520 +22979 54762 0.4210 +22979 57217 0.8670 +22979 83473 0.4440 +22979 84668 0.7020 +22979 116966 0.4150 +22979 129303 0.6350 +22979 145567 0.9310 +22979 285172 0.5880 +22979 374882 0.4120 +22979 389643 0.4190 +22979 440712 0.4300 +22980 26046 0.9540 +22980 26523 0.5010 +22980 54849 0.6580 +22980 54971 0.4690 +22980 55139 0.7960 +22980 55666 0.6000 +22980 57471 0.4940 +22980 63891 0.4120 +22980 64779 0.4240 +22980 79007 0.4600 +22980 79029 0.4490 +22980 79705 0.4290 +22980 80233 0.4310 +22980 84501 0.6570 +22980 84572 0.4200 +22980 90850 0.5350 +22980 92822 0.5510 +22980 114928 0.9940 +22980 120892 0.6300 +22980 166378 0.4460 +22981 22994 0.5260 +22981 23085 0.4070 +22981 23299 0.6800 +22981 23354 0.5350 +22981 25861 0.6320 +22981 27229 0.7060 +22981 29911 0.4030 +22981 51143 0.6150 +22981 51164 0.4520 +22981 51175 0.5260 +22981 51199 0.5120 +22981 51361 0.6670 +22981 54801 0.6230 +22981 54875 0.5660 +22981 54930 0.5050 +22981 55125 0.6360 +22981 55142 0.5250 +22981 55184 0.4920 +22981 55559 0.5960 +22981 55857 0.5120 +22981 57545 0.5620 +22981 57553 0.8200 +22981 65993 0.4560 +22981 79158 0.4570 +22981 79441 0.5070 +22981 79576 0.4370 +22981 79649 0.4280 +22981 79866 0.5050 +22981 80323 0.4690 +22981 83658 0.4240 +22981 84059 0.5610 +22981 84376 0.7010 +22981 84465 0.4260 +22981 84516 0.4030 +22981 92558 0.7610 +22981 93323 0.5480 +22981 115106 0.5380 +22981 116840 0.5670 +22981 117177 0.5410 +22981 121441 0.4820 +22981 133482 0.4610 +22981 146439 0.4480 +22981 163786 0.4020 +22981 167691 0.9300 +22981 196541 0.4910 +22981 219417 0.5310 +22981 285331 0.4870 +22981 728642 0.5210 +22982 23165 0.5570 +22982 23185 0.5520 +22982 23521 0.4120 +22982 25853 0.4440 +22982 26589 0.4680 +22982 51069 0.4640 +22982 51084 0.5310 +22982 51313 0.4420 +22982 53371 0.5270 +22982 54059 0.4260 +22982 54431 0.4770 +22982 54988 0.4540 +22982 55632 0.4250 +22982 55833 0.4760 +22982 55902 0.4430 +22982 55929 0.5890 +22982 56899 0.4670 +22982 57129 0.4680 +22982 63875 0.4680 +22982 64682 0.4040 +22982 65975 0.4260 +22982 65985 0.4440 +22982 79611 0.4550 +22982 79728 0.6530 +22982 79783 0.4120 +22982 84263 0.8040 +22982 84532 0.4440 +22982 84545 0.4680 +22982 84893 0.4090 +22982 84958 0.4050 +22982 91734 0.4640 +22982 93517 0.5170 +22982 116285 0.4430 +22982 123876 0.4430 +22982 132949 0.7250 +22982 157567 0.4170 +22982 158724 0.4460 +22982 219927 0.4680 +22982 220107 0.4430 +22982 285440 0.5410 +22982 341392 0.4430 +22982 348158 0.4430 +22982 389434 0.4660 +22983 59272 0.5100 +22983 284339 0.6190 +22984 23016 0.7610 +22984 23029 0.7090 +22984 23054 0.7590 +22984 23076 0.8720 +22984 23082 0.4210 +22984 23135 0.5220 +22984 23160 0.9920 +22984 23195 0.6720 +22984 23204 0.9120 +22984 23212 0.7860 +22984 23223 0.9840 +22984 23246 0.9700 +22984 23277 0.4320 +22984 23345 0.4020 +22984 23378 0.8030 +22984 23395 0.5460 +22984 23404 0.7700 +22984 23405 0.4360 +22984 23468 0.5010 +22984 23481 0.9690 +22984 23517 0.9800 +22984 23521 0.9410 +22984 23560 0.9280 +22984 23640 0.8730 +22984 24140 0.5880 +22984 25879 0.9940 +22984 25885 0.9850 +22984 25926 0.8700 +22984 25983 0.9880 +22984 26155 0.9900 +22984 26156 0.9780 +22984 26168 0.5870 +22984 26330 0.6290 +22984 26354 0.7780 +22984 26574 0.9890 +22984 26995 0.7370 +22984 27000 0.6700 +22984 27037 0.4360 +22984 27042 0.9730 +22984 27043 0.6100 +22984 27068 0.4570 +22984 27292 0.7840 +22984 27340 0.9990 +22984 27341 0.9970 +22984 27349 0.5700 +22984 28987 0.8710 +22984 28998 0.9350 +22984 29088 0.6770 +22984 29093 0.9460 +22984 29102 0.5360 +22984 29777 0.7270 +22984 29880 0.5310 +22984 29889 0.8510 +22984 29922 0.5520 +22984 29927 0.8590 +22984 29929 0.4880 +22984 29960 0.4420 +22984 29968 0.6210 +22984 29997 0.7450 +22984 30836 0.9600 +22984 50628 0.4270 +22984 51001 0.4100 +22984 51010 0.7310 +22984 51013 0.7570 +22984 51018 0.6870 +22984 51021 0.9900 +22984 51023 0.4320 +22984 51026 0.4860 +22984 51065 0.6390 +22984 51068 0.7430 +22984 51069 0.9490 +22984 51073 0.9740 +22984 51077 0.9950 +22984 51081 0.9680 +22984 51095 0.4250 +22984 51096 0.9930 +22984 51106 0.5850 +22984 51116 0.9100 +22984 51118 0.9930 +22984 51121 0.9660 +22984 51149 0.9050 +22984 51154 0.9880 +22984 51179 0.8280 +22984 51187 0.8260 +22984 51202 0.9580 +22984 51204 0.4430 +22984 51236 0.4400 +22984 51264 0.9880 +22984 51314 0.5780 +22984 51319 0.6430 +22984 51388 0.8180 +22984 51435 0.4460 +22984 51520 0.4230 +22984 51538 0.4140 +22984 51574 0.5240 +22984 51575 0.9460 +22984 51602 0.9980 +22984 54363 0.8280 +22984 54433 0.4940 +22984 54475 0.7050 +22984 54505 0.4630 +22984 54512 0.7710 +22984 54517 0.5940 +22984 54552 0.7790 +22984 54555 0.9440 +22984 54606 0.8530 +22984 54663 0.8930 +22984 54881 0.7160 +22984 54888 0.5210 +22984 54948 0.8720 +22984 54984 0.4170 +22984 55003 0.8830 +22984 55027 0.4110 +22984 55052 0.9690 +22984 55127 0.9990 +22984 55131 0.9760 +22984 55140 0.4030 +22984 55143 0.4980 +22984 55153 0.9090 +22984 55157 0.5500 +22984 55168 0.4470 +22984 55173 0.9800 +22984 55176 0.8550 +22984 55178 0.4450 +22984 55226 0.9990 +22984 55244 0.6010 +22984 55255 0.4010 +22984 55272 0.9960 +22984 55299 0.9710 +22984 55316 0.8950 +22984 55324 0.4400 +22984 55341 0.8540 +22984 55601 0.5040 +22984 55621 0.4290 +22984 55622 0.6320 +22984 55646 0.4290 +22984 55651 0.7650 +22984 55699 0.4930 +22984 55703 0.9370 +22984 55720 0.9680 +22984 55759 0.9100 +22984 55760 0.7220 +22984 55781 0.6920 +22984 55794 0.5460 +22984 55813 0.9940 +22984 56052 0.5060 +22984 56342 0.7090 +22984 56474 0.4800 +22984 56648 0.5410 +22984 56902 0.8630 +22984 56915 0.7460 +22984 56919 0.4730 +22984 56965 0.4320 +22984 57050 0.9950 +22984 57062 0.8830 +22984 57109 0.5480 +22984 57136 0.7340 +22984 57176 0.7160 +22984 57180 0.4070 +22984 57418 0.8120 +22984 57469 0.6200 +22984 57470 0.4590 +22984 57647 0.9600 +22984 57696 0.7950 +22984 60625 0.4860 +22984 63875 0.9940 +22984 63899 0.4490 +22984 63931 0.8950 +22984 64216 0.7000 +22984 64318 0.9370 +22984 64374 0.8730 +22984 64425 0.7510 +22984 64434 0.7050 +22984 64782 0.4120 +22984 64794 0.8500 +22984 64848 0.4670 +22984 64960 0.8920 +22984 64963 0.9670 +22984 64965 0.9880 +22984 64968 0.9730 +22984 64969 0.9770 +22984 64979 0.9710 +22984 64983 0.9100 +22984 65003 0.8210 +22984 65005 0.9800 +22984 65008 0.9260 +22984 65080 0.4040 +22984 65083 0.9990 +22984 65095 0.7970 +22984 65121 0.6740 +22984 65122 0.6740 +22984 65993 0.5600 +22984 79033 0.4280 +22984 79039 0.7920 +22984 79050 0.9980 +22984 79159 0.6670 +22984 79571 0.7600 +22984 79590 0.9630 +22984 79631 0.7980 +22984 79665 0.4500 +22984 79668 0.4320 +22984 79707 0.8190 +22984 79711 0.6310 +22984 79922 0.4740 +22984 79954 0.9970 +22984 80135 0.4100 +22984 80298 0.4010 +22984 80324 0.4690 +22984 81570 0.5510 +22984 81627 0.4870 +22984 81875 0.4500 +22984 81887 0.6840 +22984 83448 0.4050 +22984 83732 0.4130 +22984 83743 0.9290 +22984 84128 0.9980 +22984 84135 0.9870 +22984 84154 0.9760 +22984 84172 0.9770 +22984 84245 0.4230 +22984 84273 0.4160 +22984 84294 0.8420 +22984 84365 0.6870 +22984 84549 0.5440 +22984 84916 0.9990 +22984 84946 0.6300 +22984 85441 0.5630 +22984 85476 0.8150 +22984 87178 0.7450 +22984 88745 0.8640 +22984 90121 0.4930 +22984 90381 0.5020 +22984 90957 0.4710 +22984 91875 0.4800 +22984 91893 0.5450 +22984 92399 0.6540 +22984 92856 0.9910 +22984 115752 0.5810 +22984 116832 0.4190 +22984 116966 0.7230 +22984 117246 0.9750 +22984 118460 0.6570 +22984 122402 0.4520 +22984 122622 0.4690 +22984 124454 0.5360 +22984 126402 0.9670 +22984 127845 0.4850 +22984 128853 0.4520 +22984 129563 0.5950 +22984 135295 0.4160 +22984 137682 0.6000 +22984 139596 0.8430 +22984 140032 0.6390 +22984 140801 0.8710 +22984 142940 0.7790 +22984 143244 0.5350 +22984 146212 0.7610 +22984 146802 0.6010 +22984 153443 0.6670 +22984 161424 0.7880 +22984 165545 0.7190 +22984 170506 0.4600 +22984 219927 0.9870 +22984 221078 0.8130 +22984 221830 0.5430 +22984 254042 0.4180 +22984 285521 0.4400 +22984 285855 0.8830 +22984 317781 0.6630 +22984 340390 0.6000 +22984 343068 0.6740 +22984 343069 0.4010 +22984 343070 0.6740 +22984 345630 0.9610 +22984 347487 0.9060 +22984 348180 0.4160 +22984 387129 0.8800 +22984 387332 0.6630 +22984 387338 0.4780 +22984 387712 0.5370 +22984 390999 0.6740 +22984 391002 0.6740 +22984 399949 0.6630 +22984 400735 0.6740 +22984 400736 0.6740 +22984 440560 0.6740 +22984 440561 0.6740 +22984 441873 0.6740 +22984 641776 0.8270 +22984 643909 0.8270 +22984 645359 0.6740 +22984 653619 0.6740 +22984 654364 0.5610 +22984 692312 0.5750 +22984 728524 0.8270 +22984 729528 0.6740 +22984 100287482 0.9060 +22984 100505478 0.8800 +22984 100526842 0.9450 +22984 100996746 0.8270 +22984 101929983 0.6740 +22984 105180390 0.8270 +22984 105180391 0.8270 +22984 114483834 0.5090 +22985 23020 0.6540 +22985 23398 0.4190 +22985 23451 0.5070 +22985 23476 0.6170 +22985 23524 0.9420 +22985 23658 0.4600 +22985 24144 0.5800 +22985 25804 0.6560 +22985 26097 0.4710 +22985 26121 0.4520 +22985 27250 0.4030 +22985 27258 0.4780 +22985 29123 0.4400 +22985 29896 0.4270 +22985 51428 0.6850 +22985 51588 0.4050 +22985 51593 0.4250 +22985 51631 0.6700 +22985 51645 0.4440 +22985 51690 0.4260 +22985 51691 0.4420 +22985 54856 0.5250 +22985 55110 0.8830 +22985 55421 0.7170 +22985 55660 0.8850 +22985 55692 0.5740 +22985 55749 0.4320 +22985 57703 0.5390 +22985 57819 0.6390 +22985 58517 0.6580 +22985 65109 0.7860 +22985 65980 0.4770 +22985 79171 0.5830 +22985 79647 0.4180 +22985 79753 0.6090 +22985 84324 0.4100 +22985 92906 0.4180 +22985 114803 0.4240 +22985 114991 0.4870 +22985 120892 0.5240 +22985 124245 0.6900 +22985 143884 0.5790 +22985 155435 0.4230 +22985 220988 0.5790 +22985 222183 0.4590 +22985 256646 0.5080 +22985 100996939 0.4260 +22986 23062 0.4820 +22986 26088 0.4850 +22986 51699 0.4220 +22986 55737 0.6230 +22986 57453 0.4190 +22986 57554 0.4090 +22986 79740 0.4040 +22986 83746 0.4100 +22986 84545 0.8060 +22986 84722 0.6690 +22986 85397 0.4120 +22986 112936 0.4680 +22986 118427 0.4070 +22986 143471 0.4100 +22986 154215 0.4690 +22986 221074 0.5380 +22986 257194 0.4710 +22986 375567 0.4530 +22986 729665 0.5120 +22987 23195 0.4070 +22987 54346 0.4400 +22987 55530 0.5200 +22987 57084 0.4070 +22987 57172 0.4340 +22987 79157 0.4450 +22987 83985 0.4280 +22987 84804 0.4890 +22987 84975 0.4330 +22987 115827 0.4920 +22987 127833 0.6360 +22987 140679 0.5260 +22987 284217 0.6840 +22987 387775 0.4170 +22989 25861 0.6940 +22989 29895 0.7620 +22989 58498 0.4460 +22989 64780 0.5080 +22989 79784 0.6280 +22989 84700 0.5650 +22989 93408 0.5400 +22989 103910 0.7950 +22989 124989 0.4290 +22989 140465 0.6920 +22989 146862 0.5580 +22989 399687 0.5740 +22989 100507055 0.4610 +22990 26037 0.4280 +22990 54813 0.4050 +22990 55821 0.4170 +22990 56164 0.4420 +22990 85481 0.4210 +22990 161198 0.4280 +22990 390980 0.4160 +22992 23020 0.4190 +22992 23028 0.6760 +22992 23030 0.6590 +22992 23067 0.5450 +22992 23081 0.6560 +22992 23133 0.4120 +22992 23135 0.7260 +22992 23210 0.4400 +22992 23264 0.4010 +22992 23360 0.4020 +22992 23394 0.5400 +22992 23405 0.4350 +22992 23468 0.5140 +22992 23476 0.5960 +22992 23512 0.4160 +22992 29072 0.7640 +22992 29978 0.4860 +22992 29979 0.4900 +22992 50613 0.4800 +22992 51111 0.4020 +22992 51755 0.4090 +22992 51780 0.6680 +22992 54464 0.4140 +22992 54882 0.4740 +22992 54904 0.4540 +22992 55209 0.5110 +22992 55421 0.4680 +22992 55693 0.5690 +22992 55818 0.6110 +22992 55870 0.5510 +22992 56893 0.4840 +22992 56950 0.4660 +22992 57634 0.4720 +22992 57680 0.4650 +22992 58508 0.5230 +22992 64324 0.6530 +22992 79697 0.5560 +22992 79723 0.4360 +22992 79813 0.5360 +22992 79831 0.5370 +22992 80312 0.4420 +22992 80854 0.4860 +22992 84181 0.5010 +22992 84444 0.5160 +22992 84661 0.5280 +22992 84759 0.6390 +22992 84993 0.4870 +22992 93550 0.5330 +22992 114336 0.4050 +22992 115426 0.4630 +22992 126961 0.5200 +22992 143630 0.4800 +22992 164153 0.5250 +22992 221037 0.5470 +22992 221656 0.5480 +22992 387893 0.4730 +22992 390245 0.6450 +22992 440093 0.6690 +22992 440686 0.6680 +22992 653604 0.7940 +22993 60625 0.4550 +22993 80023 0.4790 +22993 81576 0.4050 +22993 81789 0.4130 +22993 133686 0.4600 +22994 22995 0.7460 +22994 23354 0.5620 +22994 23609 0.5020 +22994 26173 0.4730 +22994 30011 0.4190 +22994 51098 0.4180 +22994 51199 0.5810 +22994 51686 0.5020 +22994 51750 0.4540 +22994 54801 0.5780 +22994 54855 0.4280 +22994 54875 0.5670 +22994 54930 0.6100 +22994 55051 0.4610 +22994 55125 0.6410 +22994 55142 0.5660 +22994 55201 0.4880 +22994 55559 0.5100 +22994 55722 0.6960 +22994 55755 0.4810 +22994 55835 0.5540 +22994 57534 0.4380 +22994 57595 0.4190 +22994 63922 0.6750 +22994 64770 0.6930 +22994 64793 0.5820 +22994 79441 0.5100 +22994 79598 0.4280 +22994 79866 0.5200 +22994 80184 0.8740 +22994 80233 0.4660 +22994 80321 0.5300 +22994 83942 0.4580 +22994 84445 0.5160 +22994 85302 0.4310 +22994 90850 0.4680 +22994 93323 0.5640 +22994 115106 0.5000 +22994 116840 0.7420 +22994 117177 0.5990 +22994 117178 0.6740 +22994 145508 0.6080 +22994 146849 0.5600 +22994 151903 0.4170 +22994 152206 0.6620 +22994 153241 0.6120 +22994 153733 0.4220 +22994 163786 0.5360 +22994 170370 0.4260 +22994 197335 0.4490 +22994 201134 0.4320 +22994 201255 0.6440 +22994 285331 0.4350 +22994 343099 0.4250 +22994 644150 0.4080 +22994 728642 0.5530 +22994 729440 0.4020 +22995 23141 0.5230 +22995 23354 0.5130 +22995 23594 0.4200 +22995 25914 0.5070 +22995 26579 0.4710 +22995 51134 0.4160 +22995 51199 0.5410 +22995 54801 0.6730 +22995 54875 0.8190 +22995 54930 0.5050 +22995 55125 0.9580 +22995 55142 0.6250 +22995 55262 0.4180 +22995 55559 0.5010 +22995 55731 0.4740 +22995 55755 0.9880 +22995 55835 0.9950 +22995 57082 0.6750 +22995 63925 0.6260 +22995 64770 0.5610 +22995 64793 0.6720 +22995 79441 0.5450 +22995 79598 0.4780 +22995 79648 0.8540 +22995 79866 0.5560 +22995 79915 0.5070 +22995 79959 0.4720 +22995 80817 0.4090 +22995 84126 0.4930 +22995 84879 0.4160 +22995 84902 0.4080 +22995 85378 0.4590 +22995 85459 0.8950 +22995 93323 0.5910 +22995 115106 0.5560 +22995 116840 0.6110 +22995 117177 0.5430 +22995 121441 0.6520 +22995 134359 0.6330 +22995 145508 0.5530 +22995 151648 0.4390 +22995 152185 0.5850 +22995 153241 0.6420 +22995 159989 0.6010 +22995 163786 0.9750 +22995 222235 0.7790 +22995 255762 0.4820 +22995 259266 0.9170 +22995 282809 0.4510 +22995 284403 0.8030 +22995 285753 0.5040 +22995 728642 0.5000 +22996 23070 0.4770 +22996 64359 0.4130 +22996 64805 0.5160 +22996 79815 0.4440 +22996 80212 0.4990 +22996 114883 0.4230 +22997 57555 0.7440 +22997 84966 0.5340 +22997 140679 0.4030 +22997 375323 0.4860 +22997 392617 0.5490 +22998 29087 0.4330 +22998 51249 0.4100 +22998 51633 0.4910 +22998 51751 0.4410 +22998 79983 0.5070 +22998 90161 0.4100 +22998 121227 0.4140 +22998 201798 0.4900 +22998 353274 0.4400 +22998 400793 0.4300 +22999 23025 0.9800 +22999 23085 0.9570 +22999 23236 0.4650 +22999 23504 0.9630 +22999 23746 0.7190 +22999 26059 0.9580 +22999 28964 0.5330 +22999 51560 0.4940 +22999 51762 0.4840 +22999 55327 0.5610 +22999 56479 0.4270 +22999 57030 0.7700 +22999 57096 0.6210 +22999 57502 0.4360 +22999 57524 0.4010 +22999 58512 0.4600 +22999 64130 0.5800 +22999 64218 0.6500 +22999 80331 0.6360 +22999 83394 0.7900 +22999 83851 0.4160 +22999 84839 0.6740 +22999 85376 0.5540 +22999 92211 0.6260 +22999 94122 0.4060 +22999 112755 0.4840 +22999 115827 0.7160 +22999 116443 0.4940 +22999 117177 0.4920 +22999 134957 0.4570 +22999 140679 0.7320 +22999 140803 0.4080 +22999 150221 0.4770 +22999 157657 0.4270 +22999 169522 0.4150 +22999 343472 0.4310 +22999 440279 0.6650 +22999 440804 0.4980 +23001 23036 0.4930 +23001 23112 0.4310 +23001 23135 0.4130 +23001 23211 0.4450 +23001 23218 0.5230 +23001 23389 0.5770 +23001 23394 0.4940 +23001 23710 0.8400 +23001 26100 0.4320 +23001 26190 0.4210 +23001 27043 0.4460 +23001 27159 0.5060 +23001 29123 0.4120 +23001 30849 0.5030 +23001 51111 0.4870 +23001 54891 0.4030 +23001 55054 0.9100 +23001 55062 0.4350 +23001 55262 0.4290 +23001 55296 0.4230 +23001 55626 0.4910 +23001 55870 0.4600 +23001 57148 0.4830 +23001 57680 0.5460 +23001 57724 0.4840 +23001 64127 0.4250 +23001 64422 0.4230 +23001 79718 0.4330 +23001 80816 0.4490 +23001 81631 0.8370 +23001 83992 0.4010 +23001 84162 0.4310 +23001 84557 0.6440 +23001 115825 0.4250 +23001 440738 0.9390 +23001 728378 0.4270 +23002 23048 0.6560 +23002 23360 0.5490 +23002 23380 0.4940 +23002 23433 0.4700 +23002 23500 0.9090 +23002 27152 0.6610 +23002 29941 0.4800 +23002 29964 0.6020 +23002 29984 0.7240 +23002 51701 0.4270 +23002 54361 0.6710 +23002 54443 0.5630 +23002 54874 0.5570 +23002 55660 0.5230 +23002 55789 0.4120 +23002 55914 0.4790 +23002 56907 0.4160 +23002 57216 0.6260 +23002 57381 0.4870 +23002 58155 0.6940 +23002 58480 0.4550 +23002 65124 0.4380 +23002 81029 0.6930 +23002 81624 0.5840 +23002 81839 0.7910 +23002 84530 0.9020 +23002 84886 0.5810 +23002 85409 0.5320 +23002 89780 0.4050 +23002 91010 0.5850 +23002 128239 0.5510 +23002 128272 0.8750 +23002 128344 0.4310 +23002 144165 0.7460 +23002 166336 0.6100 +23002 171177 0.4400 +23002 261734 0.4490 +23002 284119 0.4100 +23002 342184 0.4740 +23002 345456 0.6890 +23002 375189 0.8290 +23002 387712 0.4320 +23005 23293 0.4540 +23005 79870 0.4460 +23005 203286 0.4880 +23007 23396 0.7340 +23007 26499 0.5690 +23007 27124 0.6820 +23007 51015 0.4550 +23007 51196 0.5790 +23007 51763 0.6730 +23007 56623 0.6600 +23007 56899 0.4440 +23007 79837 0.7340 +23007 80271 0.6580 +23007 113026 0.5640 +23007 138429 0.7300 +23007 167410 0.4250 +23007 253430 0.9120 +23007 255426 0.4190 +23007 261726 0.5290 +23007 100505993 0.4470 +23008 23053 0.5430 +23008 23386 0.4380 +23008 23532 0.9030 +23008 23588 0.9240 +23008 26958 0.4160 +23008 51530 0.4550 +23008 51666 0.9040 +23008 55527 0.9260 +23008 56929 0.9310 +23008 57643 0.7110 +23008 57688 0.5430 +23008 63932 0.4690 +23008 65249 0.5400 +23008 79269 0.5190 +23008 79699 0.9270 +23008 80256 0.4090 +23008 83594 0.4750 +23008 84928 0.4140 +23008 114960 0.4950 +23008 116138 0.9270 +23008 123207 0.4390 +23008 127707 0.4860 +23008 150684 0.9000 +23008 203447 0.4950 +23008 400224 0.5740 +23008 440561 0.9020 +23008 440590 0.6340 +23008 653619 0.9020 +23011 23310 0.5380 +23011 23499 0.4780 +23011 23673 0.5210 +23011 26060 0.6350 +23011 26130 0.4850 +23011 51434 0.4120 +23011 51479 0.4340 +23011 51552 0.4290 +23011 51699 0.4410 +23011 55266 0.4420 +23011 55339 0.4070 +23011 55754 0.4520 +23011 57589 0.5770 +23011 64145 0.5650 +23011 64786 0.5750 +23011 79958 0.4320 +23011 81846 0.8160 +23011 84079 0.8990 +23011 89781 0.4580 +23011 89941 0.4210 +23011 126432 0.4770 +23011 135114 0.4180 +23011 163486 0.5250 +23012 23049 0.4480 +23012 25843 0.5030 +23012 51719 0.4300 +23012 51765 0.5170 +23012 54935 0.5130 +23012 55233 0.9990 +23012 55297 0.5290 +23012 57446 0.9220 +23012 57447 0.9290 +23012 57496 0.5250 +23012 57522 0.4040 +23012 57590 0.4790 +23012 60485 0.4840 +23012 64780 0.5550 +23012 81532 0.9740 +23012 81617 0.4200 +23012 85441 0.4020 +23012 90678 0.4390 +23012 92597 0.9410 +23012 115752 0.5280 +23012 117177 0.5960 +23012 121536 0.4890 +23012 126308 0.5090 +23012 129563 0.5280 +23012 148932 0.4090 +23012 283638 0.4160 +23012 285527 0.7720 +23012 768206 0.4300 +23013 23091 0.4730 +23013 23131 0.4470 +23013 23347 0.4170 +23013 23389 0.4200 +23013 23469 0.4390 +23013 25792 0.6700 +23013 25962 0.4320 +23013 29072 0.4910 +23013 51132 0.4210 +23013 55534 0.6150 +23013 55552 0.4380 +23013 56254 0.4600 +23013 57187 0.4080 +23013 58508 0.5960 +23013 79718 0.5740 +23013 84333 0.4260 +23013 84441 0.6140 +23013 90853 0.5410 +23013 124245 0.4500 +23013 139285 0.4300 +23013 140467 0.4110 +23014 23741 0.7860 +23014 25871 0.4330 +23014 26259 0.4570 +23014 26263 0.4230 +23014 26270 0.4080 +23014 26610 0.4220 +23014 54434 0.4080 +23014 55070 0.5040 +23014 55832 0.6440 +23014 55954 0.4500 +23014 56977 0.4420 +23014 57478 0.5060 +23014 79568 0.5230 +23014 84749 0.4630 +23014 84955 0.6740 +23014 93953 0.4290 +23014 114907 0.4650 +23014 123879 0.4990 +23014 136853 0.5340 +23014 150726 0.4610 +23014 201456 0.4010 +23015 50618 0.4090 +23015 57730 0.4230 +23015 85289 0.4450 +23015 440270 0.5430 +23016 23054 0.4950 +23016 23160 0.7820 +23016 23404 0.9990 +23016 23435 0.4950 +23016 23517 0.9980 +23016 25879 0.8060 +23016 25926 0.5250 +23016 26058 0.4350 +23016 26097 0.4070 +23016 26156 0.5640 +23016 26574 0.5240 +23016 27042 0.4510 +23016 27258 0.5860 +23016 27292 0.6100 +23016 27316 0.4490 +23016 27339 0.5020 +23016 27340 0.7440 +23016 27341 0.7380 +23016 30836 0.6130 +23016 51010 0.9990 +23016 51013 0.9990 +23016 51077 0.7250 +23016 51081 0.4280 +23016 51096 0.8200 +23016 51106 0.5100 +23016 51118 0.7620 +23016 51119 0.5080 +23016 51149 0.4290 +23016 51202 0.5290 +23016 51319 0.4010 +23016 51388 0.6500 +23016 51593 0.4620 +23016 51602 0.7810 +23016 51611 0.4020 +23016 51691 0.4620 +23016 54464 0.7540 +23016 54512 0.9990 +23016 54555 0.5670 +23016 55127 0.7990 +23016 55226 0.6090 +23016 55272 0.8180 +23016 55299 0.4040 +23016 55596 0.9060 +23016 55601 0.4040 +23016 55646 0.4060 +23016 55651 0.4820 +23016 55759 0.5690 +23016 55802 0.5170 +23016 55813 0.7500 +23016 56259 0.4180 +23016 56829 0.8650 +23016 56902 0.5740 +23016 56903 0.4640 +23016 56915 0.9990 +23016 57050 0.7510 +23016 57647 0.5110 +23016 64216 0.6000 +23016 64282 0.4480 +23016 64895 0.4690 +23016 64960 0.5120 +23016 64963 0.4660 +23016 65083 0.7020 +23016 79023 0.4400 +23016 79050 0.8790 +23016 79571 0.4990 +23016 79954 0.5630 +23016 80135 0.5150 +23016 80349 0.7810 +23016 80755 0.4680 +23016 81887 0.5290 +23016 83743 0.4140 +23016 84128 0.7660 +23016 84135 0.7410 +23016 84154 0.5570 +23016 84186 0.6030 +23016 84916 0.7580 +23016 84955 0.6290 +23016 85441 0.8330 +23016 87178 0.9610 +23016 88745 0.5470 +23016 92856 0.7950 +23016 115752 0.9990 +23016 118460 0.9990 +23016 129563 0.9410 +23016 133482 0.4260 +23016 153443 0.4180 +23016 167227 0.7700 +23016 196441 0.9690 +23016 345630 0.4990 +23017 23788 0.6960 +23017 25970 0.6970 +23017 27069 0.5970 +23017 51086 0.6160 +23017 51277 0.4730 +23017 51704 0.5330 +23017 53353 0.4030 +23017 54814 0.5070 +23017 54958 0.5870 +23017 55179 0.4910 +23017 57469 0.4680 +23017 57507 0.5060 +23017 64116 0.4230 +23017 79047 0.7200 +23017 79068 0.5930 +23017 89866 0.7730 +23017 129787 0.7190 +23017 132789 0.7770 +23017 134359 0.4850 +23017 138046 0.4290 +23017 144233 0.7640 +23017 149095 0.4180 +23017 158038 0.4940 +23017 219402 0.5190 +23017 253559 0.5740 +23017 257194 0.6900 +23017 390598 0.4320 +23017 100526835 0.5950 +23019 23020 0.7480 +23019 23049 0.4810 +23019 23112 0.6040 +23019 23168 0.4310 +23019 23244 0.4900 +23019 23293 0.5440 +23019 23369 0.8070 +23019 23381 0.4580 +23019 23405 0.4140 +23019 23644 0.7900 +23019 25819 0.8010 +23019 25904 0.9990 +23019 25929 0.4260 +23019 25962 0.4190 +23019 26019 0.4510 +23019 26057 0.5070 +23019 26058 0.7360 +23019 26065 0.7940 +23019 26523 0.4650 +23019 26986 0.8930 +23019 27161 0.8920 +23019 27257 0.7720 +23019 27327 0.9970 +23019 29883 0.9990 +23019 50488 0.4920 +23019 51320 0.4140 +23019 51400 0.5120 +23019 51441 0.9860 +23019 51593 0.4180 +23019 51663 0.4010 +23019 54464 0.8720 +23019 54542 0.7770 +23019 54820 0.4540 +23019 54867 0.4380 +23019 54870 0.6370 +23019 54915 0.5690 +23019 55066 0.4230 +23019 55291 0.4820 +23019 55571 0.9990 +23019 55636 0.4130 +23019 55802 0.7180 +23019 56157 0.6720 +23019 56478 0.9410 +23019 57472 0.9990 +23019 57532 0.4430 +23019 57819 0.5090 +23019 57862 0.4900 +23019 60313 0.7310 +23019 64506 0.5570 +23019 64599 0.6160 +23019 64682 0.6210 +23019 64795 0.4530 +23019 65056 0.4370 +23019 79596 0.6470 +23019 80153 0.7410 +23019 80313 0.8380 +23019 84296 0.4170 +23019 84991 0.4200 +23019 85456 0.9850 +23019 115795 0.4710 +23019 133482 0.4180 +23019 149041 0.9350 +23019 149986 0.4150 +23019 152138 0.4450 +23019 154197 0.4440 +23019 158787 0.6840 +23019 167227 0.7590 +23019 196513 0.4180 +23019 201626 0.7540 +23019 219988 0.9980 +23019 246175 0.9990 +23019 253943 0.6200 +23019 339345 0.9710 +23019 340719 0.9940 +23019 342977 0.4900 +23019 373863 0.6120 +23019 390748 0.4770 +23020 23082 0.8040 +23020 23091 0.5960 +23020 23350 0.4540 +23020 23352 0.6000 +23020 23398 0.8840 +23020 23435 0.7480 +23020 23450 0.9990 +23020 23451 0.9990 +23020 23476 0.5500 +23020 23517 0.5910 +23020 23524 0.9980 +23020 23620 0.5060 +23020 23658 0.9990 +23020 23759 0.8550 +23020 24144 0.7930 +23020 24148 0.9990 +23020 25794 0.7100 +23020 25804 0.9990 +23020 25949 0.9950 +23020 25962 0.6190 +23020 25980 0.9960 +23020 26017 0.8050 +23020 26121 0.9990 +23020 26986 0.4190 +23020 27238 0.8530 +23020 27258 0.9980 +23020 27316 0.6120 +23020 27336 0.7130 +23020 27339 0.9990 +23020 29110 0.7990 +23020 29896 0.4330 +23020 50939 0.6860 +23020 51340 0.9970 +23020 51362 0.9960 +23020 51428 0.6180 +23020 51503 0.9940 +23020 51538 0.4150 +23020 51634 0.9990 +23020 51639 0.8740 +23020 51645 0.9590 +23020 51690 0.9990 +23020 51691 0.9990 +23020 51729 0.8400 +23020 51747 0.6050 +23020 51759 0.9710 +23020 54505 0.4460 +23020 54883 0.9990 +23020 54910 0.4830 +23020 54952 0.7640 +23020 54957 0.9390 +23020 55011 0.5130 +23020 55100 0.8030 +23020 55110 0.9850 +23020 55192 0.5960 +23020 55234 0.9950 +23020 55285 0.7560 +23020 55599 0.7890 +23020 55622 0.7080 +23020 55660 0.6550 +23020 55696 0.9980 +23020 55702 0.9990 +23020 55705 0.4290 +23020 55749 0.6040 +23020 55760 0.5150 +23020 55812 0.5620 +23020 55813 0.4090 +23020 55837 0.8670 +23020 55975 0.7370 +23020 56257 0.4530 +23020 56259 0.8650 +23020 56910 0.5460 +23020 56919 0.5860 +23020 56949 0.9970 +23020 57187 0.6930 +23020 57456 0.6290 +23020 57461 0.9970 +23020 57647 0.5180 +23020 57703 0.9990 +23020 57794 0.5130 +23020 57819 0.9990 +23020 58509 0.8280 +23020 58517 0.4190 +23020 59286 0.8390 +23020 60625 0.6360 +23020 64218 0.6410 +23020 79005 0.8000 +23020 79039 0.4110 +23020 79171 0.9340 +23020 79446 0.8890 +23020 79576 0.8120 +23020 79631 0.5180 +23020 79637 0.9220 +23020 79647 0.4680 +23020 79665 0.4960 +23020 79706 0.8340 +23020 79753 0.9990 +23020 79947 0.4250 +23020 80347 0.4170 +23020 83443 0.9990 +23020 83938 0.8130 +23020 84060 0.8000 +23020 84140 0.4390 +23020 84164 0.4990 +23020 84316 0.5940 +23020 84811 0.9990 +23020 84844 0.9990 +23020 84950 0.9910 +23020 84955 0.6290 +23020 84967 0.8470 +23020 84991 0.4640 +23020 85476 0.6420 +23020 114609 0.4910 +23020 126259 0.5940 +23020 127933 0.4770 +23020 129831 0.4150 +23020 130557 0.7480 +23020 145226 0.6880 +23020 147650 0.5940 +23020 149041 0.5140 +23020 153527 0.9990 +23020 154007 0.8350 +23020 163859 0.8650 +23020 164781 0.8220 +23020 165545 0.5370 +23020 170506 0.5890 +23020 220074 0.8130 +23020 220988 0.7030 +23020 222183 0.8790 +23020 256536 0.8420 +23020 284325 0.8500 +23020 346007 0.7290 +23020 347744 0.7620 +23020 348793 0.8220 +23020 375298 0.7100 +23020 388939 0.7020 +23020 768206 0.6940 +23020 100534599 0.9970 +23022 23328 0.5030 +23022 27143 0.5070 +23022 27295 0.4090 +23022 51474 0.5650 +23022 51517 0.8120 +23022 79728 0.6140 +23022 80273 0.5700 +23022 84665 0.6450 +23022 84955 0.6190 +23022 115825 0.5210 +23022 136541 0.6490 +23022 259296 0.9150 +23022 342184 0.4640 +23022 345456 0.5770 +23022 375189 0.5710 +23022 441933 0.9300 +23023 23129 0.8450 +23023 23603 0.6390 +23023 28999 0.8470 +23023 50512 0.8900 +23023 342865 0.4470 +23023 348807 0.8790 +23024 54910 0.4770 +23024 55164 0.4950 +23024 56970 0.4090 +23024 57057 0.4240 +23024 57498 0.5570 +23024 83860 0.5120 +23024 84210 0.6010 +23024 84708 0.5660 +23024 220965 0.4510 +23024 222484 0.5580 +23025 23064 0.4460 +23025 23077 0.6430 +23025 23085 0.7730 +23025 23098 0.4210 +23025 23256 0.5710 +23025 23435 0.5450 +23025 23504 0.6890 +23025 25978 0.4130 +23025 26059 0.7790 +23025 27445 0.6700 +23025 29978 0.4600 +23025 51806 0.9110 +23025 55140 0.4450 +23025 55277 0.5710 +23025 57030 0.4980 +23025 57406 0.4090 +23025 57524 0.4340 +23025 57586 0.4160 +23025 57679 0.4820 +23025 80208 0.4330 +23025 83851 0.4340 +23025 91860 0.9050 +23025 112755 0.7440 +23025 115827 0.5090 +23025 127833 0.6280 +23025 134957 0.5540 +23025 140730 0.4440 +23025 163688 0.9050 +23025 200933 0.8580 +23025 203228 0.6090 +23025 341359 0.5280 +23025 400916 0.4650 +23025 440279 0.9090 +23025 440730 0.4760 +23026 30008 0.4320 +23026 54443 0.4320 +23026 57624 0.4300 +23026 84623 0.4290 +23026 222950 0.5280 +23026 257019 0.4780 +23026 440730 0.5000 +23026 441873 0.6090 +23028 23030 0.7250 +23028 23067 0.5290 +23028 23081 0.9240 +23028 23133 0.7130 +23028 23135 0.7310 +23028 23186 0.9990 +23028 23195 0.4060 +23028 23199 0.9170 +23028 23210 0.4930 +23028 23309 0.6240 +23028 23326 0.7300 +23028 23394 0.5360 +23028 23411 0.9150 +23028 23466 0.5430 +23028 23468 0.4940 +23028 23476 0.8080 +23028 23512 0.8760 +23028 23613 0.6430 +23028 25855 0.5740 +23028 25942 0.9480 +23028 26013 0.4140 +23028 26147 0.5030 +23028 26276 0.4520 +23028 27030 0.5410 +23028 27043 0.7020 +23028 29072 0.5760 +23028 29128 0.6080 +23028 29947 0.5260 +23028 51008 0.5500 +23028 51111 0.4580 +23028 51317 0.9990 +23028 51460 0.7620 +23028 51548 0.4290 +23028 51564 0.6670 +23028 51742 0.5690 +23028 51780 0.5980 +23028 53335 0.8670 +23028 53615 0.8680 +23028 54145 0.6460 +23028 54790 0.4900 +23028 54815 0.8270 +23028 54962 0.4040 +23028 55167 0.4140 +23028 55170 0.4170 +23028 55215 0.5550 +23028 55278 0.4580 +23028 55294 0.4560 +23028 55553 0.5000 +23028 55693 0.6430 +23028 55709 0.5330 +23028 55758 0.9960 +23028 55766 0.5920 +23028 55818 0.9000 +23028 55869 0.6470 +23028 55870 0.4380 +23028 55904 0.4100 +23028 55929 0.4870 +23028 56916 0.4100 +23028 56950 0.7090 +23028 57167 0.7670 +23028 57332 0.6120 +23028 57459 0.8090 +23028 57504 0.9250 +23028 57510 0.5630 +23028 57634 0.4090 +23028 57646 0.7080 +23028 58508 0.5280 +23028 63976 0.9260 +23028 64324 0.4460 +23028 64421 0.9030 +23028 64426 0.5890 +23028 64754 0.5730 +23028 65082 0.7610 +23028 65980 0.4800 +23028 79149 0.4720 +23028 79685 0.4990 +23028 79718 0.4330 +23028 79723 0.6730 +23028 79728 0.6300 +23028 79755 0.6720 +23028 79813 0.7740 +23028 79823 0.5140 +23028 79830 0.5610 +23028 79831 0.5170 +23028 79840 0.9000 +23028 79885 0.5500 +23028 79923 0.8890 +23028 80012 0.5070 +23028 80312 0.7500 +23028 80853 0.6370 +23028 80854 0.8070 +23028 83852 0.4320 +23028 83933 0.4300 +23028 84164 0.5440 +23028 84232 0.4990 +23028 84444 0.6880 +23028 84456 0.6000 +23028 84458 0.7060 +23028 84656 0.8970 +23028 84678 0.6620 +23028 84733 0.5940 +23028 84787 0.4590 +23028 84934 0.4280 +23028 85235 0.5100 +23028 85236 0.6470 +23028 91419 0.9050 +23028 92815 0.5100 +23028 94239 0.5650 +23028 121504 0.5410 +23028 125150 0.9000 +23028 126074 0.9000 +23028 126961 0.7090 +23028 128312 0.6430 +23028 137682 0.4980 +23028 143689 0.4920 +23028 157570 0.4180 +23028 158584 0.4300 +23028 165918 0.6150 +23028 171023 0.6650 +23028 200424 0.4090 +23028 221037 0.4860 +23028 221613 0.5190 +23028 221656 0.8120 +23028 255626 0.6500 +23028 283248 0.9760 +23028 285527 0.4740 +23028 286257 0.9000 +23028 317772 0.5170 +23028 340390 0.4970 +23028 387893 0.5300 +23028 390245 0.5590 +23028 402569 0.4890 +23028 440093 0.9170 +23028 440686 0.9160 +23028 440689 0.5750 +23028 474382 0.6010 +23028 554313 0.5430 +23028 653604 0.9640 +23028 728378 0.6410 +23028 100507027 0.4650 +23028 100526737 0.4450 +23028 100532731 0.4500 +23028 105375355 0.5400 +23029 23076 0.6200 +23029 23160 0.5660 +23029 23212 0.8020 +23029 23246 0.8880 +23029 23247 0.4010 +23029 23363 0.4280 +23029 23378 0.7810 +23029 23481 0.8740 +23029 23517 0.4570 +23029 23521 0.5250 +23029 23560 0.8960 +23029 25879 0.4410 +23029 25949 0.4290 +23029 25983 0.6390 +23029 26155 0.9000 +23029 26156 0.8020 +23029 26354 0.6610 +23029 26574 0.8930 +23029 27042 0.5500 +23029 27292 0.5480 +23029 27339 0.4030 +23029 27341 0.4390 +23029 28987 0.5800 +23029 29889 0.8960 +23029 29997 0.6840 +23029 30836 0.5770 +23029 51068 0.4450 +23029 51118 0.5880 +23029 51121 0.4480 +23029 51154 0.7050 +23029 51187 0.7560 +23029 51202 0.7120 +23029 51388 0.7390 +23029 51503 0.4630 +23029 51575 0.8740 +23029 51602 0.8280 +23029 51605 0.7920 +23029 51742 0.4180 +23029 54552 0.6160 +23029 54555 0.4520 +23029 54606 0.9470 +23029 54663 0.9240 +23029 54853 0.4280 +23029 54883 0.5150 +23029 54888 0.4030 +23029 54984 0.7020 +23029 55003 0.6250 +23029 55127 0.4730 +23029 55131 0.9750 +23029 55153 0.7800 +23029 55226 0.7120 +23029 55272 0.4390 +23029 55299 0.9560 +23029 55341 0.5810 +23029 55646 0.5420 +23029 55651 0.4030 +23029 55720 0.4470 +23029 55759 0.8840 +23029 55781 0.5090 +23029 55813 0.7440 +23029 56342 0.7230 +23029 56829 0.4510 +23029 57050 0.8400 +23029 57062 0.9210 +23029 57109 0.8050 +23029 57418 0.6210 +23029 57562 0.4430 +23029 57696 0.6690 +23029 64318 0.7670 +23029 64425 0.4770 +23029 64794 0.8910 +23029 65083 0.4600 +23029 65095 0.4320 +23029 79009 0.5830 +23029 79039 0.9200 +23029 79066 0.4180 +23029 79101 0.5230 +23029 79159 0.6470 +23029 79682 0.4260 +23029 79707 0.6300 +23029 79724 0.4180 +23029 79727 0.5870 +23029 79954 0.7480 +23029 80135 0.6900 +23029 83480 0.4040 +23029 83732 0.4760 +23029 83743 0.6160 +23029 84128 0.4270 +23029 84154 0.9680 +23029 84240 0.4940 +23029 84294 0.8630 +23029 84298 0.4130 +23029 84310 0.4360 +23029 84365 0.9150 +23029 84549 0.9160 +23029 84916 0.4700 +23029 84946 0.6570 +23029 85437 0.6070 +23029 90113 0.4560 +23029 90121 0.5660 +23029 90353 0.6980 +23029 92856 0.8600 +23029 115708 0.5690 +23029 117246 0.9760 +23029 128061 0.5050 +23029 129531 0.4240 +23029 144108 0.4490 +23029 154007 0.4310 +23029 161424 0.7900 +23029 165545 0.4610 +23029 197407 0.4910 +23029 221078 0.7080 +23029 221830 0.6110 +23029 285855 0.4780 +23029 317649 0.4020 +23029 317781 0.7330 +23029 339230 0.5070 +23029 400506 0.4700 +23029 440689 0.4050 +23029 643836 0.6070 +23029 692312 0.6740 +23030 23040 0.4010 +23030 23133 0.5820 +23030 23135 0.7580 +23030 23210 0.4530 +23030 23450 0.5590 +23030 23468 0.6060 +23030 23774 0.4250 +23030 26263 0.6660 +23030 29072 0.5010 +23030 29128 0.4260 +23030 51588 0.6570 +23030 51780 0.7340 +23030 54145 0.7280 +23030 55749 0.4180 +23030 55766 0.4990 +23030 55818 0.8370 +23030 55870 0.4130 +23030 56950 0.4500 +23030 58508 0.5170 +23030 64324 0.4300 +23030 64754 0.4010 +23030 79697 0.5170 +23030 79723 0.5430 +23030 79813 0.5020 +23030 79831 0.5390 +23030 80853 0.6340 +23030 84330 0.5760 +23030 84444 0.4680 +23030 84678 0.7790 +23030 84733 0.4560 +23030 84787 0.5740 +23030 85236 0.7280 +23030 94239 0.5370 +23030 115426 0.4060 +23030 128312 0.7300 +23030 158983 0.4820 +23030 165918 0.6290 +23030 221037 0.9520 +23030 221656 0.5490 +23030 255626 0.7320 +23030 286436 0.4780 +23030 440093 0.5570 +23030 440686 0.5570 +23030 440689 0.4820 +23030 474382 0.4990 +23030 653604 0.7680 +23030 114483833 0.4780 +23031 79981 0.4750 +23031 80325 0.4370 +23031 260425 0.7630 +23032 23262 0.5120 +23032 26118 0.7100 +23032 26234 0.4200 +23032 26258 0.4450 +23032 51009 0.5880 +23032 51439 0.9030 +23032 51633 0.4160 +23032 54764 0.4300 +23032 55611 0.4390 +23032 55770 0.4500 +23032 57414 0.5510 +23032 57559 0.4350 +23032 57646 0.5910 +23032 57663 0.4370 +23032 57695 0.4150 +23032 60685 0.4740 +23032 64170 0.4290 +23032 64422 0.7200 +23032 64965 0.4160 +23032 64969 0.4110 +23032 65003 0.4110 +23032 79139 0.5600 +23032 79960 0.4390 +23032 80124 0.4190 +23032 80204 0.4170 +23032 83844 0.4100 +23032 84447 0.9010 +23032 84461 0.6520 +23032 84749 0.4420 +23032 91319 0.5450 +23032 114803 0.4960 +23032 115825 0.4110 +23032 148304 0.4180 +23032 159195 0.5060 +23032 161725 0.4580 +23032 219927 0.4160 +23032 221302 0.6220 +23032 338917 0.4120 +23033 23041 0.9810 +23033 23325 0.4550 +23033 54987 0.4090 +23033 55316 0.4020 +23033 56995 0.4090 +23033 79180 0.4290 +23033 80148 0.4470 +23033 374868 0.5780 +23033 101060684 0.4080 +23034 23098 0.6630 +23034 55095 0.7940 +23034 55802 0.4070 +23034 83446 0.5690 +23034 89887 0.4490 +23034 92092 0.4400 +23034 151887 0.4630 +23034 166336 0.4610 +23034 340719 0.4160 +23035 23239 0.9870 +23035 23639 0.5230 +23035 25962 0.4900 +23035 26499 0.6910 +23035 51608 0.4460 +23035 54499 0.4610 +23035 54704 0.5470 +23035 54776 0.4140 +23035 55215 0.5850 +23035 56339 0.4710 +23035 57546 0.4090 +23035 57599 0.9000 +23035 57721 0.4630 +23035 60626 0.4140 +23035 64854 0.9420 +23035 80895 0.4270 +23035 81609 0.6870 +23035 85004 0.5490 +23035 91833 0.9040 +23035 140894 0.4240 +23035 200576 0.4430 +23035 219333 0.9180 +23036 23112 0.4730 +23036 23126 0.4970 +23036 23253 0.5470 +23036 23389 0.5550 +23036 23394 0.5400 +23036 23469 0.4130 +23036 25836 0.4580 +23036 25962 0.4060 +23036 26137 0.4140 +23036 27332 0.4820 +23036 51742 0.4980 +23036 51773 0.4340 +23036 54014 0.4100 +23036 55870 0.5530 +23036 55904 0.5250 +23036 55975 0.4430 +23036 57148 0.5080 +23036 57680 0.5190 +23036 58499 0.4490 +23036 80816 0.6820 +23036 84146 0.8020 +23036 84527 0.4070 +23036 85443 0.4480 +23036 114781 0.4190 +23036 151126 0.4440 +23036 152485 0.4170 +23036 206412 0.5340 +23036 340385 0.4610 +23037 23276 0.4300 +23037 26154 0.4730 +23037 55914 0.5420 +23037 153090 0.4100 +23038 23142 0.5170 +23038 23412 0.4990 +23038 25853 0.6970 +23038 25879 0.5400 +23038 26094 0.7160 +23038 26133 0.5520 +23038 28952 0.5090 +23038 28991 0.4990 +23038 29099 0.4990 +23038 29911 0.4370 +23038 50717 0.6120 +23038 50813 0.4380 +23038 51122 0.4990 +23038 51138 0.6110 +23038 51185 0.6230 +23038 51397 0.4990 +23038 51514 0.5400 +23038 54165 0.5260 +23038 54461 0.5940 +23038 54876 0.5400 +23038 54939 0.4990 +23038 54951 0.5180 +23038 55070 0.5500 +23038 55208 0.5300 +23038 55626 0.5720 +23038 55827 0.6150 +23038 55832 0.5310 +23038 64326 0.5420 +23038 64708 0.4330 +23038 79016 0.7180 +23038 79269 0.6970 +23038 79751 0.4430 +23038 79882 0.4240 +23038 79933 0.5010 +23038 80067 0.5490 +23038 80344 0.6750 +23038 84259 0.5170 +23038 90379 0.5780 +23038 138009 0.5800 +23038 139170 0.5750 +23038 139425 0.5590 +23038 149951 0.4990 +23038 150684 0.4990 +23038 170622 0.4990 +23038 284058 0.4240 +23038 285429 0.5800 +23038 340578 0.5750 +23038 347442 0.5590 +23039 23214 0.8280 +23039 23225 0.4520 +23039 23534 0.4830 +23039 26953 0.5150 +23039 28952 0.4910 +23039 30000 0.6310 +23039 51076 0.5660 +23039 51100 0.6360 +23039 51194 0.5770 +23039 55705 0.4830 +23039 57510 0.6300 +23039 64328 0.6430 +23039 64901 0.4450 +23039 79711 0.6290 +23039 79720 0.6100 +23040 23245 0.4090 +23040 25791 0.4100 +23040 27185 0.4920 +23040 28514 0.5980 +23040 50674 0.6140 +23040 51160 0.4070 +23040 51230 0.6620 +23040 51412 0.4840 +23040 54221 0.6400 +23040 55072 0.6110 +23040 55530 0.5320 +23040 57030 0.4450 +23040 63973 0.7150 +23040 63974 0.5230 +23040 64919 0.4720 +23040 81858 0.4510 +23040 84152 0.4240 +23040 84894 0.5540 +23040 129807 0.4050 +23040 146330 0.4610 +23040 146713 0.4970 +23040 346171 0.4320 +23041 25771 0.5070 +23041 26088 0.4170 +23041 27336 0.4090 +23041 51362 0.5110 +23041 51699 0.5080 +23041 54497 0.4840 +23041 55003 0.4410 +23041 55102 0.7290 +23041 55187 0.4010 +23041 55737 0.4430 +23041 57511 0.4240 +23041 57589 0.6490 +23041 57617 0.4630 +23041 57724 0.4490 +23041 80208 0.4950 +23041 81545 0.7480 +23041 84162 0.5810 +23041 112936 0.7460 +23041 157680 0.4190 +23041 197131 0.5000 +23041 374868 0.6100 +23041 375056 0.7660 +23041 388389 0.4540 +23042 23420 0.8890 +23042 23589 0.4240 +23042 51283 0.9160 +23042 54700 0.7140 +23042 54726 0.4240 +23042 54820 0.4480 +23042 55920 0.4230 +23042 63932 0.5080 +23042 79447 0.4490 +23042 80150 0.4370 +23042 90231 0.5050 +23042 91661 0.5160 +23042 123803 0.7240 +23042 123811 0.4830 +23042 221908 0.5010 +23042 253769 0.4790 +23042 255027 0.6720 +23042 284254 0.4460 +23042 642799 0.4790 +23042 100288332 0.4790 +23043 23499 0.4580 +23043 25843 0.5040 +23043 26127 0.4410 +23043 27185 0.9020 +23043 29888 0.9150 +23043 29966 0.5470 +23043 50488 0.7740 +23043 55917 0.5440 +23043 57673 0.4180 +23043 58533 0.4010 +23043 80143 0.4390 +23043 81565 0.5210 +23043 85369 0.4860 +23043 85461 0.5040 +23043 219902 0.4220 +23043 284119 0.4010 +23043 391189 0.4180 +23046 23095 0.6440 +23046 23303 0.6360 +23046 24137 0.5330 +23046 26153 0.6070 +23046 26286 0.5000 +23046 27148 0.6910 +23046 29127 0.4520 +23046 51594 0.4990 +23046 51684 0.4170 +23046 51752 0.4770 +23046 53407 0.4990 +23046 54820 0.5730 +23046 55083 0.6160 +23046 55254 0.4410 +23046 55582 0.6130 +23046 55605 0.6550 +23046 55614 0.6380 +23046 55738 0.5000 +23046 55765 0.4200 +23046 55850 0.4990 +23046 56992 0.6040 +23046 57576 0.6230 +23046 60561 0.5100 +23046 63971 0.6260 +23046 64837 0.6310 +23046 81565 0.5820 +23046 81930 0.5880 +23046 84364 0.4990 +23046 84643 0.6210 +23046 89953 0.4810 +23046 90990 0.6980 +23046 118429 0.4010 +23046 124602 0.5780 +23046 146909 0.5630 +23046 147700 0.5090 +23046 221458 0.5810 +23046 285643 0.5410 +23046 374654 0.6050 +23047 23063 0.9990 +23047 23137 0.6960 +23047 23244 0.9710 +23047 23269 0.4020 +23047 23347 0.4110 +23047 23383 0.9220 +23047 23476 0.4060 +23047 23514 0.6060 +23047 25836 0.9890 +23047 25942 0.4120 +23047 26036 0.5550 +23047 27127 0.8930 +23047 51018 0.4720 +23047 51759 0.4590 +23047 54069 0.4090 +23047 54882 0.4250 +23047 54962 0.4130 +23047 55153 0.4530 +23047 55869 0.5910 +23047 56897 0.4110 +23047 63922 0.4120 +23047 79677 0.6250 +23047 79728 0.7720 +23047 79915 0.4890 +23047 83903 0.7430 +23047 84450 0.4770 +23047 90627 0.4760 +23047 113130 0.9900 +23047 114799 0.8910 +23047 124404 0.4080 +23047 126074 0.6530 +23047 151648 0.6070 +23047 157570 0.8820 +23047 196528 0.5610 +23047 642636 0.8970 +23047 653604 0.4150 +23048 23149 0.8560 +23048 23157 0.5380 +23048 23360 0.5150 +23048 23365 0.4430 +23048 23380 0.5380 +23048 23433 0.6990 +23048 23500 0.5810 +23048 23513 0.4040 +23048 23580 0.4160 +23048 26030 0.4230 +23048 26052 0.4390 +23048 28964 0.4050 +23048 29109 0.5190 +23048 29993 0.5550 +23048 50618 0.4890 +23048 51429 0.5370 +23048 51517 0.5900 +23048 51759 0.5120 +23048 54438 0.4360 +23048 54874 0.9450 +23048 55004 0.4080 +23048 55040 0.4170 +23048 55114 0.5330 +23048 55789 0.4090 +23048 57082 0.4560 +23048 57381 0.6220 +23048 57522 0.4820 +23048 65059 0.6680 +23048 79856 0.4240 +23048 80351 0.6080 +23048 80746 0.7850 +23048 81624 0.6110 +23048 84324 0.4710 +23048 85456 0.7530 +23048 85462 0.5590 +23048 89848 0.6720 +23048 91010 0.6400 +23048 114793 0.4650 +23048 115548 0.8460 +23048 115677 0.4210 +23048 115703 0.4270 +23048 128239 0.4120 +23048 133482 0.4100 +23048 147179 0.7050 +23048 342184 0.5900 +23048 345456 0.5150 +23048 375189 0.5440 +23048 392862 0.6290 +23049 23064 0.5260 +23049 23204 0.5410 +23049 23215 0.6340 +23049 23269 0.5580 +23049 23271 0.4510 +23049 23293 0.9660 +23049 23303 0.4210 +23049 23369 0.4650 +23049 23381 0.9810 +23049 23678 0.4170 +23049 23708 0.9960 +23049 25836 0.4860 +23049 26019 0.9990 +23049 26065 0.4090 +23049 26986 0.9980 +23049 29066 0.4310 +23049 29072 0.6430 +23049 51366 0.4580 +23049 51441 0.4270 +23049 51594 0.4360 +23049 54464 0.7510 +23049 54542 0.5850 +23049 54882 0.4610 +23049 55011 0.5580 +23049 55023 0.6400 +23049 55110 0.6860 +23049 55181 0.9990 +23049 55193 0.4330 +23049 55252 0.4430 +23049 55345 0.4010 +23049 55615 0.6250 +23049 55629 0.7980 +23049 55802 0.7290 +23049 55870 0.4650 +23049 56006 0.9990 +23049 57448 0.6440 +23049 57521 0.9560 +23049 57697 0.4690 +23049 58528 0.4430 +23049 64121 0.4930 +23049 64131 0.5890 +23049 64223 0.9550 +23049 64324 0.4020 +23049 65109 0.9530 +23049 65110 0.9990 +23049 79039 0.4090 +23049 79109 0.9450 +23049 79657 0.6220 +23049 79899 0.5400 +23049 80185 0.5750 +23049 83667 0.4500 +23049 84126 0.4080 +23049 85441 0.4090 +23049 91442 0.5290 +23049 114803 0.5900 +23049 115752 0.4800 +23049 129563 0.5520 +23049 140453 0.4080 +23049 167227 0.4690 +23049 196441 0.4400 +23049 253260 0.9600 +23049 253943 0.4180 +23049 388697 0.4090 +23049 408050 0.7620 +23051 26515 0.4310 +23051 26519 0.4270 +23051 26520 0.4310 +23051 51663 0.4020 +23051 51701 0.6330 +23051 55969 0.4600 +23051 60625 0.4520 +23051 64900 0.4230 +23051 84985 0.4250 +23051 92241 0.4080 +23051 93594 0.5990 +23051 114781 0.4100 +23051 100527943 0.4150 +23052 25966 0.4920 +23052 27154 0.4110 +23052 51439 0.4950 +23052 55161 0.7220 +23052 79102 0.7920 +23052 79188 0.7440 +23052 83941 0.4750 +23052 84659 0.4230 +23052 151742 0.4010 +23053 23140 0.5820 +23053 23198 0.4200 +23053 23510 0.5590 +23053 23532 0.5400 +23053 23588 0.5800 +23053 26249 0.9000 +23053 27161 0.5340 +23053 27252 0.9000 +23053 29068 0.5280 +23053 51092 0.4950 +23053 51616 0.4750 +23053 51666 0.5460 +23053 54442 0.5430 +23053 54800 0.7250 +23053 55527 0.5840 +23053 55958 0.9040 +23053 55975 0.9010 +23053 56929 0.5870 +23053 57542 0.9000 +23053 57563 0.9000 +23053 57643 0.6220 +23053 57688 0.6170 +23053 59349 0.9000 +23053 63931 0.5350 +23053 64221 0.6100 +23053 64410 0.9000 +23053 65249 0.6280 +23053 79699 0.5790 +23053 79734 0.9000 +23053 79886 0.5120 +23053 83892 0.7250 +23053 84078 0.9000 +23053 84541 0.9000 +23053 84861 0.9040 +23053 89890 0.9000 +23053 90293 0.9040 +23053 91252 0.4520 +23053 116138 0.5910 +23053 129563 0.4100 +23053 131377 0.7200 +23053 150684 0.5400 +23053 151112 0.4090 +23053 223082 0.4070 +23053 253980 0.9030 +23053 339745 0.9000 +23053 388512 0.4820 +23053 440561 0.5400 +23053 440590 0.5790 +23053 553115 0.7290 +23053 653619 0.5400 +23054 23067 0.6750 +23054 23135 0.5760 +23054 23160 0.8370 +23054 23179 0.4150 +23054 23204 0.5030 +23054 23212 0.6060 +23054 23223 0.4530 +23054 23246 0.5180 +23054 23309 0.5560 +23054 23404 0.4960 +23054 23405 0.5190 +23054 23481 0.4540 +23054 23512 0.5710 +23054 23517 0.5070 +23054 23560 0.6860 +23054 25879 0.7090 +23054 25942 0.6000 +23054 25983 0.7940 +23054 26156 0.7940 +23054 26230 0.4050 +23054 26574 0.9260 +23054 27042 0.4460 +23054 27063 0.4150 +23054 27292 0.7720 +23054 27340 0.7390 +23054 27341 0.7320 +23054 28987 0.8880 +23054 29841 0.4020 +23054 29889 0.5940 +23054 30827 0.6380 +23054 30836 0.7750 +23054 51010 0.4670 +23054 51013 0.5250 +23054 51042 0.4650 +23054 51065 0.5140 +23054 51068 0.4900 +23054 51073 0.4450 +23054 51077 0.7730 +23054 51081 0.5250 +23054 51096 0.8490 +23054 51106 0.4490 +23054 51118 0.7690 +23054 51129 0.4140 +23054 51149 0.4740 +23054 51154 0.5550 +23054 51187 0.7380 +23054 51202 0.6110 +23054 51388 0.5930 +23054 51602 0.8620 +23054 54145 0.5030 +23054 54512 0.4630 +23054 54555 0.4300 +23054 54600 0.4300 +23054 54663 0.4160 +23054 55006 0.4010 +23054 55127 0.8650 +23054 55173 0.4220 +23054 55209 0.4340 +23054 55226 0.8300 +23054 55272 0.8320 +23054 55299 0.5350 +23054 55651 0.5280 +23054 55720 0.8870 +23054 55759 0.6300 +23054 55760 0.4420 +23054 55766 0.4990 +23054 55781 0.8870 +23054 55794 0.4750 +23054 55813 0.7950 +23054 56915 0.8100 +23054 57050 0.7320 +23054 57418 0.4990 +23054 57761 0.4080 +23054 58508 0.9990 +23054 63897 0.5620 +23054 63925 0.6800 +23054 64216 0.5660 +23054 64794 0.5350 +23054 64960 0.4570 +23054 64963 0.5100 +23054 65083 0.8510 +23054 79050 0.8610 +23054 79447 0.9870 +23054 79718 0.6130 +23054 79954 0.7890 +23054 80135 0.5680 +23054 80205 0.5620 +23054 80335 0.6230 +23054 83732 0.4700 +23054 84128 0.8600 +23054 84135 0.7720 +23054 84154 0.6870 +23054 84294 0.4260 +23054 84365 0.7220 +23054 84661 0.9850 +23054 84916 0.8460 +23054 84946 0.8850 +23054 84962 0.5140 +23054 85236 0.5030 +23054 85441 0.6670 +23054 92856 0.8600 +23054 94239 0.5310 +23054 96764 0.9860 +23054 114987 0.4400 +23054 115708 0.5460 +23054 116519 0.4090 +23054 117246 0.5330 +23054 118460 0.4670 +23054 126402 0.5120 +23054 128312 0.5030 +23054 133482 0.4120 +23054 140032 0.4870 +23054 153443 0.4490 +23054 155368 0.4140 +23054 161424 0.4170 +23054 165545 0.4380 +23054 255626 0.5030 +23054 260434 0.4510 +23054 286451 0.4980 +23054 345630 0.6480 +23054 440093 0.6690 +23054 440686 0.6680 +23054 474382 0.4990 +23054 653604 0.8270 +23057 23077 0.7930 +23057 23098 0.8530 +23057 23408 0.9410 +23057 23409 0.9450 +23057 23410 0.9830 +23057 23411 0.9540 +23057 23475 0.9890 +23057 23498 0.4510 +23057 23530 0.9240 +23057 27231 0.9510 +23057 30833 0.9140 +23057 51015 0.5640 +23057 51547 0.9410 +23057 51548 0.9460 +23057 51733 0.4050 +23057 54956 0.4060 +23057 54981 0.9740 +23057 55191 0.9850 +23057 56953 0.9020 +23057 56954 0.4190 +23057 64802 0.9180 +23057 65220 0.6530 +23057 79763 0.5640 +23057 83594 0.9210 +23057 84618 0.9030 +23057 93034 0.9000 +23057 93100 0.9870 +23057 115416 0.6950 +23057 130013 0.4790 +23057 133686 0.9320 +23057 200933 0.6900 +23057 642475 0.6920 +23057 100526794 0.9000 +23059 26043 0.4200 +23059 26146 0.9990 +23059 26160 0.9980 +23059 26608 0.4160 +23059 27077 0.4190 +23059 27241 0.4800 +23059 28981 0.9910 +23059 51098 0.9990 +23059 51134 0.4010 +23059 51389 0.4240 +23059 51550 0.6620 +23059 51668 0.9860 +23059 54873 0.4340 +23059 55081 0.9990 +23059 55212 0.7220 +23059 55349 0.5000 +23059 55764 0.8470 +23059 55812 0.4690 +23059 56171 0.4470 +23059 56912 0.9950 +23059 57010 0.4160 +23059 57539 0.8890 +23059 57545 0.4440 +23059 57560 0.9990 +23059 57576 0.4180 +23059 57642 0.4270 +23059 57728 0.8530 +23059 64792 0.9910 +23059 64802 0.4160 +23059 79608 0.4390 +23059 79642 0.4420 +23059 79809 0.7850 +23059 79903 0.4290 +23059 79989 0.9920 +23059 80173 0.9710 +23059 80184 0.4590 +23059 80724 0.4220 +23059 84549 0.4490 +23059 84766 0.5060 +23059 84902 0.4570 +23059 89891 0.4620 +23059 90410 0.9950 +23059 92104 0.9750 +23059 93664 0.4030 +23059 112752 0.8240 +23059 114327 0.4390 +23059 123811 0.4140 +23059 124637 0.4720 +23059 126299 0.4020 +23059 127733 0.7240 +23059 129880 0.4500 +23059 130502 0.4120 +23059 150737 0.9910 +23059 164118 0.4170 +23059 167691 0.5490 +23059 199223 0.6000 +23059 200162 0.4620 +23059 200894 0.4110 +23059 401124 0.5640 +23059 401265 0.4180 +23060 23067 0.4160 +23060 23264 0.4810 +23060 23481 0.4220 +23060 23523 0.4090 +23060 27161 0.4550 +23060 51247 0.4180 +23060 51366 0.4940 +23060 55023 0.4770 +23060 55294 0.5100 +23060 55683 0.4080 +23060 55796 0.5990 +23060 55833 0.4350 +23060 56252 0.5800 +23060 57534 0.4240 +23060 57634 0.6550 +23060 79923 0.4030 +23060 83737 0.4680 +23060 146050 0.5300 +23060 253943 0.5300 +23060 257218 0.7340 +23060 283373 0.6300 +23061 23158 0.6280 +23061 25771 0.4640 +23061 54662 0.4710 +23061 55296 0.4470 +23061 55633 0.5010 +23061 55773 0.4230 +23061 55819 0.5320 +23061 64420 0.4640 +23061 64786 0.5230 +23061 79735 0.4320 +23061 81631 0.5490 +23061 83746 0.4420 +23061 90809 0.4390 +23061 128637 0.5930 +23061 129049 0.4220 +23061 161514 0.5230 +23062 23163 0.9850 +23062 23166 0.5480 +23062 23386 0.4050 +23062 23621 0.8660 +23062 25825 0.5020 +23062 26020 0.4940 +23062 26088 0.9870 +23062 29924 0.4210 +23062 29967 0.4500 +23062 54472 0.4010 +23062 55297 0.4890 +23062 55690 0.4220 +23062 57537 0.4930 +23062 57599 0.4180 +23062 64689 0.4540 +23062 84254 0.4590 +23062 114815 0.4900 +23062 124454 0.4630 +23062 133482 0.5310 +23062 163882 0.8300 +23062 729873 0.4990 +23063 23137 0.6860 +23063 23244 0.9990 +23063 23310 0.4560 +23063 23383 0.9820 +23063 23476 0.5900 +23063 23626 0.4400 +23063 25836 0.9980 +23063 27127 0.6430 +23063 54617 0.4510 +23063 54921 0.8490 +23063 55206 0.5870 +23063 55671 0.7860 +23063 55869 0.6850 +23063 55914 0.4700 +23063 56674 0.4270 +23063 57532 0.4730 +23063 57695 0.6350 +23063 63922 0.9150 +23063 79050 0.4360 +23063 79075 0.8320 +23063 79577 0.4960 +23063 79677 0.5980 +23063 79892 0.4840 +23063 80737 0.4090 +23063 80854 0.4110 +23063 83903 0.6140 +23063 84072 0.4110 +23063 92002 0.4280 +23063 113130 0.9980 +23063 114799 0.9820 +23063 140690 0.5110 +23063 151246 0.5790 +23063 151648 0.8170 +23063 151987 0.6150 +23063 157570 0.9730 +23063 220134 0.4070 +23063 256356 0.4300 +23063 286053 0.4440 +23063 286148 0.4420 +23063 642636 0.6940 +23063 728637 0.4110 +23064 23304 0.4890 +23064 23405 0.5620 +23064 23435 0.8620 +23064 23469 0.7220 +23064 23517 0.7370 +23064 23527 0.5440 +23064 25836 0.6880 +23064 25942 0.4460 +23064 25978 0.6290 +23064 26580 0.4550 +23064 26986 0.5850 +23064 29072 0.5840 +23064 29101 0.6330 +23064 29102 0.6750 +23064 29110 0.4490 +23064 29978 0.6850 +23064 51010 0.4340 +23064 51585 0.7840 +23064 51692 0.6250 +23064 54464 0.6540 +23064 54606 0.4130 +23064 54840 0.9450 +23064 54973 0.4280 +23064 55129 0.4500 +23064 55140 0.4420 +23064 55775 0.5600 +23064 55914 0.5010 +23064 56903 0.4170 +23064 57187 0.5390 +23064 57466 0.9260 +23064 57521 0.4570 +23064 57679 0.9090 +23064 57697 0.5750 +23064 64374 0.5800 +23064 64770 0.4280 +23064 64895 0.4270 +23064 65260 0.5820 +23064 79577 0.5010 +23064 79871 0.4610 +23064 80119 0.5490 +23064 80208 0.7830 +23064 80335 0.6360 +23064 80746 0.6800 +23064 84186 0.6980 +23064 84498 0.4530 +23064 126003 0.5080 +23064 203228 0.7440 +23064 246243 0.7880 +23064 253143 0.4720 +23064 253260 0.4740 +23064 353267 0.8420 +23064 387357 0.4300 +23064 392517 0.5050 +23064 400916 0.5870 +23065 23197 0.5150 +23065 23256 0.4260 +23065 23341 0.4730 +23065 23352 0.6700 +23065 27293 0.4270 +23065 28972 0.5790 +23065 28976 0.4870 +23065 29927 0.5700 +23065 51009 0.7930 +23065 51016 0.9980 +23065 51154 0.5080 +23065 51164 0.9390 +23065 51234 0.9990 +23065 54431 0.4370 +23065 54732 0.6430 +23065 54788 0.6050 +23065 55831 0.9990 +23065 56851 0.9990 +23065 56886 0.4700 +23065 57510 0.4480 +23065 57685 0.4450 +23065 60681 0.5020 +23065 64083 0.4120 +23065 79139 0.7020 +23065 79982 0.5990 +23065 80055 0.4170 +23065 80267 0.6670 +23065 80777 0.5040 +23065 81502 0.4770 +23065 83460 0.9990 +23065 91304 0.5250 +23065 93380 0.9990 +23065 94005 0.4460 +23065 128989 0.4610 +23065 132001 0.4260 +23065 201595 0.5930 +23065 202052 0.5850 +23065 284361 0.9990 +23065 337867 0.8720 +23065 401505 0.6370 +23065 404550 0.4430 +23066 23316 0.4610 +23066 79933 0.5820 +23066 80155 0.4800 +23066 84909 0.4470 +23066 116064 0.4070 +23066 143384 0.5630 +23067 23112 0.4400 +23067 23133 0.5830 +23067 23135 0.6460 +23067 23163 0.6280 +23067 23168 0.4630 +23067 23309 0.5620 +23067 23411 0.5460 +23067 23512 0.5260 +23067 25886 0.5130 +23067 25930 0.4520 +23067 25942 0.6320 +23067 26118 0.5130 +23067 26523 0.4590 +23067 27154 0.4860 +23067 27327 0.4250 +23067 29072 0.7160 +23067 29123 0.4680 +23067 29915 0.7500 +23067 30827 0.9990 +23067 51111 0.5490 +23067 51230 0.5600 +23067 51317 0.4030 +23067 54093 0.4680 +23067 54145 0.5270 +23067 54554 0.7660 +23067 54904 0.5610 +23067 54934 0.4230 +23067 55170 0.6560 +23067 55884 0.5130 +23067 55904 0.8300 +23067 56254 0.5770 +23067 56950 0.5690 +23067 56979 0.6670 +23067 57634 0.4920 +23067 57649 0.4970 +23067 57680 0.4080 +23067 58508 0.9760 +23067 63977 0.4320 +23067 64754 0.7470 +23067 64783 0.6000 +23067 79823 0.7920 +23067 79918 0.4130 +23067 80335 0.9990 +23067 80853 0.4150 +23067 80854 0.7360 +23067 83860 0.4050 +23067 84148 0.5690 +23067 84193 0.6600 +23067 84332 0.5720 +23067 84444 0.7040 +23067 84661 0.9990 +23067 84678 0.5590 +23067 84787 0.4860 +23067 85236 0.5270 +23067 91272 0.8620 +23067 93550 0.4840 +23067 113177 0.4800 +23067 114785 0.4300 +23067 114826 0.4590 +23067 123169 0.4120 +23067 126961 0.5410 +23067 128312 0.5270 +23067 143241 0.5720 +23067 146845 0.5130 +23067 150572 0.5320 +23067 158983 0.5270 +23067 161882 0.5520 +23067 164153 0.4530 +23067 192669 0.4540 +23067 192670 0.4590 +23067 221656 0.4640 +23067 255626 0.5240 +23067 259282 0.7610 +23067 282809 0.5130 +23067 284058 0.4730 +23067 286436 0.5270 +23067 401551 0.5130 +23067 440093 0.8490 +23067 440686 0.8490 +23067 440689 0.5270 +23067 653604 0.9210 +23067 114483833 0.5270 +23070 23113 0.4540 +23070 23133 0.7690 +23070 23163 0.6590 +23070 23315 0.4440 +23070 23339 0.4530 +23070 23397 0.4670 +23070 23524 0.4100 +23070 23586 0.4640 +23070 23594 0.4570 +23070 23644 0.6590 +23070 24138 0.4240 +23070 24140 0.4610 +23070 24144 0.4100 +23070 26276 0.5390 +23070 29960 0.4500 +23070 53349 0.4350 +23070 54455 0.4460 +23070 54872 0.4570 +23070 55626 0.7790 +23070 55633 0.6740 +23070 55783 0.4310 +23070 57610 0.4850 +23070 57674 0.4450 +23070 57805 0.5080 +23070 64601 0.4760 +23070 79364 0.4370 +23070 79654 0.5270 +23070 80198 0.4590 +23070 80212 0.4430 +23070 83640 0.5090 +23070 84193 0.4230 +23070 84317 0.5310 +23070 90678 0.4570 +23070 92105 0.4450 +23070 92400 0.4310 +23070 117246 0.4030 +23070 152992 0.5070 +23070 342371 0.4460 +23070 439996 0.4130 +23071 23241 0.4340 +23071 25870 0.5060 +23071 25946 0.8720 +23071 26003 0.4590 +23071 27333 0.4970 +23071 30001 0.9970 +23071 51009 0.4310 +23071 51060 0.5380 +23071 51075 0.4590 +23071 51477 0.4480 +23071 51661 0.4230 +23071 51726 0.8550 +23071 51752 0.4500 +23071 54205 0.5090 +23071 54431 0.4700 +23071 55741 0.4010 +23071 56255 0.5040 +23071 56605 0.9770 +23071 56886 0.4340 +23071 80267 0.5870 +23071 81533 0.4080 +23071 81542 0.4020 +23071 84277 0.4150 +23071 92312 0.4240 +23071 121506 0.5770 +23071 161882 0.4830 +23071 285362 0.8730 +23071 338761 0.5120 +23072 27338 0.6060 +23072 54894 0.6930 +23072 56171 0.4080 +23072 56922 0.4090 +23072 57561 0.4450 +23072 64478 0.4310 +23072 79139 0.4240 +23072 79739 0.4500 +23072 80762 0.8610 +23072 85463 0.4430 +23072 91947 0.4260 +23072 92714 0.4720 +23072 122706 0.4040 +23072 143471 0.4180 +23072 169792 0.4310 +23072 340351 0.4310 +23074 54832 0.4340 +23074 54967 0.4290 +23074 55279 0.4220 +23074 55628 0.4350 +23074 55668 0.6420 +23074 79930 0.4200 +23074 80164 0.5060 +23074 120863 0.4290 +23074 374899 0.4310 +23075 23191 0.5440 +23075 25894 0.4860 +23075 26999 0.4150 +23075 28964 0.4370 +23075 50508 0.4200 +23075 51347 0.4050 +23075 54976 0.5480 +23075 55845 0.7280 +23075 55914 0.4150 +23075 55971 0.4050 +23075 57608 0.4600 +23075 64422 0.4120 +23075 81624 0.4220 +23075 128239 0.4510 +23075 653361 0.4260 +23076 23160 0.8190 +23076 23165 0.5240 +23076 23195 0.8000 +23076 23212 0.9730 +23076 23223 0.8070 +23076 23234 0.6980 +23076 23246 0.9870 +23076 23279 0.4420 +23076 23378 0.7670 +23076 23468 0.4770 +23076 23476 0.6330 +23076 23481 0.9840 +23076 23517 0.4390 +23076 23521 0.6900 +23076 23560 0.9730 +23076 24140 0.5230 +23076 24148 0.4240 +23076 25873 0.8440 +23076 25879 0.6990 +23076 25885 0.6890 +23076 25926 0.6000 +23076 25929 0.6490 +23076 25942 0.4350 +23076 25983 0.8420 +23076 26155 0.9680 +23076 26156 0.9870 +23076 26168 0.6230 +23076 26354 0.8640 +23076 26574 0.4480 +23076 27000 0.4190 +23076 27292 0.7110 +23076 27340 0.7310 +23076 27341 0.5350 +23076 28987 0.8030 +23076 28998 0.4730 +23076 29093 0.5150 +23076 29777 0.5630 +23076 29889 0.7850 +23076 29960 0.5680 +23076 29997 0.8420 +23076 30836 0.6570 +23076 49854 0.6010 +23076 50628 0.4020 +23076 51010 0.4400 +23076 51018 0.9620 +23076 51042 0.5560 +23076 51068 0.4650 +23076 51073 0.5430 +23076 51082 0.6990 +23076 51096 0.7510 +23076 51118 0.7630 +23076 51121 0.6340 +23076 51154 0.9790 +23076 51187 0.9530 +23076 51202 0.8550 +23076 51236 0.5410 +23076 51319 0.4700 +23076 51388 0.9560 +23076 51406 0.4590 +23076 51491 0.4380 +23076 51504 0.4860 +23076 51574 0.5670 +23076 51575 0.7790 +23076 51602 0.6820 +23076 51605 0.4070 +23076 51728 0.4950 +23076 51742 0.4770 +23076 51747 0.5600 +23076 54433 0.4800 +23076 54475 0.7990 +23076 54517 0.4650 +23076 54552 0.7980 +23076 54555 0.4720 +23076 54606 0.8290 +23076 54663 0.9860 +23076 54865 0.5370 +23076 54881 0.5870 +23076 54888 0.6370 +23076 54984 0.5850 +23076 55003 0.7190 +23076 55127 0.6810 +23076 55131 0.8080 +23076 55140 0.4300 +23076 55143 0.4050 +23076 55153 0.7830 +23076 55226 0.7680 +23076 55272 0.7180 +23076 55299 0.9860 +23076 55319 0.6050 +23076 55341 0.7280 +23076 55646 0.9160 +23076 55651 0.9000 +23076 55695 0.7110 +23076 55702 0.4210 +23076 55703 0.5000 +23076 55718 0.4090 +23076 55720 0.7840 +23076 55759 0.9790 +23076 55760 0.5060 +23076 55781 0.6860 +23076 55794 0.5430 +23076 55813 0.7580 +23076 56342 0.9280 +23076 57050 0.7010 +23076 57062 0.6680 +23076 57109 0.4740 +23076 57187 0.4020 +23076 57418 0.5210 +23076 57466 0.4020 +23076 57647 0.4090 +23076 57696 0.5640 +23076 57727 0.4090 +23076 60487 0.4750 +23076 63899 0.4760 +23076 64118 0.5170 +23076 64216 0.5850 +23076 64318 0.9130 +23076 64425 0.6380 +23076 64434 0.6520 +23076 64794 0.6720 +23076 65083 0.6020 +23076 65095 0.5830 +23076 78994 0.4580 +23076 79009 0.5630 +23076 79039 0.8450 +23076 79050 0.8690 +23076 79159 0.6160 +23076 79590 0.5160 +23076 79707 0.4100 +23076 79730 0.5140 +23076 79902 0.4640 +23076 79954 0.8250 +23076 80135 0.9840 +23076 81627 0.4400 +23076 81875 0.4020 +23076 81887 0.7850 +23076 83480 0.6440 +23076 83732 0.6320 +23076 83743 0.8810 +23076 84128 0.7300 +23076 84135 0.7340 +23076 84154 0.9410 +23076 84172 0.7190 +23076 84273 0.4710 +23076 84294 0.6620 +23076 84319 0.6100 +23076 84365 0.9790 +23076 84549 0.9850 +23076 84916 0.7340 +23076 84946 0.7720 +23076 88745 0.5080 +23076 90121 0.6500 +23076 90441 0.6900 +23076 92170 0.4490 +23076 92856 0.8330 +23076 116966 0.5460 +23076 117246 0.9450 +23076 146212 0.7550 +23076 155368 0.4370 +23076 161424 0.6060 +23076 165545 0.4220 +23076 221078 0.8640 +23076 221830 0.6960 +23076 254268 0.5240 +23076 285855 0.9010 +23076 339230 0.4570 +23076 345630 0.4270 +23076 387129 0.6790 +23076 387338 0.4860 +23076 692312 0.7390 +23076 100287238 0.4050 +23076 100505478 0.6560 +23076 100526842 0.5700 +23077 26224 0.6350 +23077 26292 0.4150 +23077 51320 0.6380 +23077 55294 0.7930 +23077 56995 0.4160 +23077 57092 0.4130 +23077 57448 0.6440 +23077 57705 0.4620 +23077 63893 0.4830 +23077 79596 0.4650 +23077 80176 0.5180 +23077 84162 0.4210 +23077 84708 0.6210 +23077 84727 0.5370 +23077 90850 0.4330 +23077 90864 0.4910 +23077 92369 0.5300 +23077 143686 0.4850 +23077 200933 0.9990 +23077 440073 0.4090 +23078 26353 0.4370 +23078 55153 0.4770 +23078 79612 0.5390 +23078 80209 0.4300 +23078 83416 0.4070 +23078 83594 0.6790 +23078 84816 0.5310 +23078 84830 0.4140 +23078 84869 0.5150 +23078 127003 0.5010 +23078 137392 0.6000 +23078 150274 0.4160 +23078 152110 0.4480 +23078 160851 0.4170 +23078 221481 0.4140 +23078 284131 0.4170 +23078 400793 0.4120 +23080 23258 0.5640 +23080 27314 0.4410 +23080 57189 0.9380 +23080 57589 0.5140 +23080 83452 0.4360 +23080 146542 0.4380 +23080 151647 0.4200 +23080 201627 0.9200 +23080 404636 0.9400 +23081 23133 0.6330 +23081 23135 0.6780 +23081 23210 0.4400 +23081 23468 0.4050 +23081 23476 0.4110 +23081 29072 0.4800 +23081 29947 0.4370 +23081 51317 0.4840 +23081 51548 0.4360 +23081 51780 0.6410 +23081 54145 0.5480 +23081 54556 0.4240 +23081 55170 0.5600 +23081 55693 0.4420 +23081 55766 0.5310 +23081 55818 0.8690 +23081 55870 0.4170 +23081 56950 0.4480 +23081 64324 0.4230 +23081 79697 0.4810 +23081 79723 0.5040 +23081 79813 0.4450 +23081 79831 0.5630 +23081 79923 0.6110 +23081 80853 0.6430 +23081 80854 0.4470 +23081 83852 0.4090 +23081 84444 0.6230 +23081 84678 0.6540 +23081 85236 0.5460 +23081 94239 0.5370 +23081 128312 0.5470 +23081 140680 0.5230 +23081 221037 0.8940 +23081 221656 0.7120 +23081 255626 0.5520 +23081 346171 0.4980 +23081 440093 0.6120 +23081 440686 0.6120 +23081 474382 0.4990 +23081 653604 0.7980 +23082 23411 0.5010 +23082 23450 0.5250 +23082 23451 0.4140 +23082 23524 0.4700 +23082 24144 0.5360 +23082 25949 0.6330 +23082 27339 0.8340 +23082 51106 0.7220 +23082 51340 0.8440 +23082 51362 0.6550 +23082 51503 0.6710 +23082 51548 0.4060 +23082 51634 0.5110 +23082 54881 0.4170 +23082 54883 0.4560 +23082 55033 0.4610 +23082 55285 0.4290 +23082 55599 0.4290 +23082 55702 0.5550 +23082 55929 0.4140 +23082 56919 0.4030 +23082 56934 0.4930 +23082 56949 0.8310 +23082 57461 0.5570 +23082 57647 0.5010 +23082 57703 0.5380 +23082 64216 0.7600 +23082 64428 0.5200 +23082 64753 0.4460 +23082 65083 0.4310 +23082 79446 0.6550 +23082 79631 0.4990 +23082 79728 0.4190 +23082 79753 0.5250 +23082 83443 0.4260 +23082 83743 0.4100 +23082 83938 0.5340 +23082 84316 0.4690 +23082 84811 0.5000 +23082 84844 0.4200 +23082 84967 0.5110 +23082 85476 0.5830 +23082 126259 0.4690 +23082 147650 0.4690 +23082 154007 0.4360 +23082 164045 0.5200 +23082 220074 0.5340 +23082 222183 0.4320 +23082 256536 0.5920 +23082 375248 0.4390 +23082 100534599 0.5540 +23085 23118 0.5710 +23085 23155 0.5270 +23085 23162 0.4840 +23085 23189 0.8160 +23085 23339 0.4830 +23085 23384 0.4990 +23085 23504 0.6710 +23085 26059 0.7000 +23085 27445 0.6400 +23085 28964 0.6010 +23085 29108 0.7210 +23085 30968 0.4440 +23085 50618 0.7140 +23085 51560 0.4080 +23085 51588 0.4350 +23085 51592 0.4860 +23085 53335 0.5680 +23085 54438 0.4220 +23085 55680 0.5450 +23085 56288 0.4630 +23085 57553 0.7800 +23085 65125 0.4110 +23085 83660 0.5290 +23085 84433 0.4100 +23085 84687 0.5440 +23085 84708 0.4700 +23085 90102 0.9850 +23085 127281 0.5330 +23085 135644 0.9000 +23085 140730 0.5100 +23085 144699 0.4120 +23085 201134 0.6170 +23085 257397 0.5360 +23085 260434 0.7210 +23085 440193 0.4120 +23085 440279 0.4380 +23085 654429 0.4210 +23086 25924 0.4610 +23086 54800 0.5590 +23086 54843 0.4340 +23086 55612 0.4720 +23086 57710 0.4140 +23086 79083 0.8500 +23086 83449 0.4090 +23086 94121 0.6670 +23086 94122 0.4620 +23086 115701 0.5210 +23086 128611 0.5050 +23086 143888 0.4870 +23086 157313 0.4790 +23086 201294 0.4150 +23086 100131897 0.4200 +23087 50852 0.4470 +23087 54765 0.4490 +23087 83892 0.4050 +23087 84675 0.5330 +23087 148870 0.5810 +23089 23619 0.5480 +23089 23641 0.7500 +23089 25814 0.4410 +23089 26071 0.8100 +23089 26240 0.4170 +23089 26958 0.4870 +23089 51666 0.5180 +23089 54551 0.5190 +23089 54715 0.4450 +23089 55089 0.4520 +23089 55422 0.4400 +23089 55607 0.5980 +23089 57683 0.5230 +23089 57697 0.5360 +23089 64921 0.4050 +23089 79923 0.4670 +23089 80184 0.7750 +23089 80896 0.4870 +23089 84530 0.4800 +23089 114787 0.5200 +23089 266812 0.6780 +23089 340595 0.4190 +23089 346171 0.4850 +23089 353274 0.4100 +23089 441518 0.8270 +23089 100101490 0.5810 +23090 23322 0.4170 +23090 25925 0.6590 +23090 26123 0.4250 +23090 51222 0.8230 +23090 51259 0.4390 +23090 54898 0.5120 +23090 55237 0.4250 +23090 57545 0.4050 +23090 57593 0.6050 +23090 64641 0.8910 +23090 65062 0.4840 +23090 79583 0.4300 +23090 79839 0.4060 +23090 79867 0.4040 +23090 80184 0.7240 +23090 85509 0.8350 +23090 91147 0.4090 +23090 95681 0.4180 +23090 114815 0.4110 +23090 125997 0.4930 +23090 219654 0.4440 +23090 253738 0.7080 +23090 284086 0.5330 +23091 23097 0.9940 +23091 23168 0.4040 +23091 23211 0.5750 +23091 23450 0.5640 +23091 23451 0.5820 +23091 23524 0.4170 +23091 25962 0.9990 +23091 27316 0.8060 +23091 27339 0.7780 +23091 29063 0.9460 +23091 29072 0.5570 +23091 29079 0.9950 +23091 29081 0.9240 +23091 29890 0.9990 +23091 29896 0.5900 +23091 29974 0.5540 +23091 51340 0.4290 +23091 51441 0.8580 +23091 51503 0.5510 +23091 51504 0.5020 +23091 51585 0.5160 +23091 51586 0.9940 +23091 51603 0.6170 +23091 51634 0.4260 +23091 51729 0.4530 +23091 51773 0.4070 +23091 54505 0.4280 +23091 54888 0.4090 +23091 54890 0.8940 +23091 54915 0.8920 +23091 55083 0.5350 +23091 55090 0.9940 +23091 55421 0.4920 +23091 55588 0.9940 +23091 55677 0.4030 +23091 55870 0.5740 +23091 56339 0.9990 +23091 56949 0.4510 +23091 57628 0.4970 +23091 57703 0.6120 +23091 57721 0.9990 +23091 58517 0.5190 +23091 63935 0.5230 +23091 64783 0.9990 +23091 64848 0.9320 +23091 64863 0.5190 +23091 79066 0.9970 +23091 79068 0.8390 +23091 79228 0.4120 +23091 79665 0.4310 +23091 79872 0.9990 +23091 80145 0.4070 +23091 80306 0.9940 +23091 81857 0.9940 +23091 84271 0.4930 +23091 84321 0.4430 +23091 84811 0.5780 +23091 84844 0.4260 +23091 90390 0.9950 +23091 90957 0.4340 +23091 91746 0.9480 +23091 112950 0.9940 +23091 124245 0.5660 +23091 158506 0.6450 +23091 221120 0.6150 +23091 253943 0.8350 +23091 259282 0.4150 +23091 392517 0.5550 +23092 23433 0.4130 +23092 25966 0.7240 +23092 26031 0.4280 +23092 26047 0.4620 +23092 29941 0.9370 +23092 29984 0.4920 +23092 30850 0.4200 +23092 51208 0.7080 +23092 55785 0.4120 +23092 57154 0.4400 +23092 57381 0.4030 +23092 57628 0.4740 +23092 79658 0.8200 +23092 84107 0.5840 +23092 90342 0.4030 +23092 92737 0.7380 +23092 129138 0.4040 +23092 163259 0.4640 +23092 219477 0.4350 +23092 402665 0.5420 +23093 23170 0.4840 +23093 23287 0.5590 +23093 23746 0.4060 +23093 25809 0.4820 +23093 28981 0.5130 +23093 51084 0.4260 +23093 51761 0.4370 +23093 55064 0.5070 +23093 55802 0.4540 +23093 56957 0.4180 +23093 57096 0.5070 +23093 60509 0.5670 +23093 64770 0.7310 +23093 79739 0.5030 +23093 79969 0.5670 +23093 80344 0.4330 +23093 83394 0.4420 +23093 83695 0.4620 +23093 84131 0.5250 +23093 84223 0.5450 +23093 84839 0.5070 +23093 84871 0.5420 +23093 92211 0.4800 +23093 93589 0.4420 +23093 93594 0.4310 +23093 94137 0.4120 +23093 95681 0.4500 +23093 112752 0.4890 +23093 115950 0.4250 +23093 123811 0.4640 +23093 128338 0.4770 +23093 150465 0.4460 +23093 157657 0.5880 +23093 158135 0.5330 +23093 164395 0.5320 +23093 165055 0.5760 +23093 167227 0.4910 +23093 169522 0.4760 +23093 196513 0.4500 +23093 282809 0.5430 +23093 284076 0.4770 +23093 374969 0.4270 +23093 729440 0.5390 +23094 23268 0.4120 +23094 26037 0.6480 +23094 27120 0.4280 +23094 55068 0.4070 +23094 57568 0.5420 +23094 83889 0.4780 +23094 84445 0.6370 +23094 84547 0.4660 +23094 118461 0.5240 +23094 643418 0.4070 +23095 23303 0.7300 +23095 24137 0.5190 +23095 26128 0.8860 +23095 26153 0.5870 +23095 26286 0.5070 +23095 26353 0.4610 +23095 29127 0.4290 +23095 51361 0.4290 +23095 51594 0.5040 +23095 53407 0.5060 +23095 54332 0.5240 +23095 54583 0.6790 +23095 54820 0.5900 +23095 54949 0.5820 +23095 55083 0.5910 +23095 55582 0.5810 +23095 55605 0.6580 +23095 55614 0.6060 +23095 55654 0.8710 +23095 55738 0.5190 +23095 55850 0.5070 +23095 55885 0.5640 +23095 56992 0.6490 +23095 57030 0.4060 +23095 57576 0.6200 +23095 60561 0.5160 +23095 63971 0.6370 +23095 64837 0.7520 +23095 66008 0.5390 +23095 79628 0.4180 +23095 81565 0.5860 +23095 81688 0.4130 +23095 81846 0.4340 +23095 81930 0.6420 +23095 84364 0.5050 +23095 84376 0.5950 +23095 84643 0.5790 +23095 89953 0.5840 +23095 90990 0.6280 +23095 112398 0.5520 +23095 112399 0.5990 +23095 121512 0.4570 +23095 121601 0.4110 +23095 124602 0.5730 +23095 127829 0.4140 +23095 146909 0.5800 +23095 147700 0.6290 +23095 221458 0.5790 +23095 285643 0.4740 +23095 374654 0.5910 +23095 100271715 0.4380 +23095 100532724 0.4090 +23096 23229 0.4920 +23096 26996 0.4070 +23096 27330 0.4270 +23096 51363 0.4900 +23096 51806 0.4800 +23096 57477 0.4720 +23096 57526 0.5440 +23096 57575 0.4020 +23096 57582 0.4510 +23096 64061 0.4530 +23096 79868 0.5020 +23096 80127 0.4580 +23096 84679 0.4020 +23096 85358 0.4130 +23096 91860 0.4800 +23096 163688 0.4800 +23096 389857 0.4160 +23097 23389 0.9970 +23097 23405 0.5930 +23097 26523 0.4260 +23097 26580 0.4410 +23097 27085 0.5230 +23097 29079 0.9740 +23097 29102 0.5570 +23097 50640 0.4800 +23097 51003 0.9910 +23097 51129 0.5030 +23097 51535 0.4800 +23097 51586 0.9810 +23097 54433 0.4240 +23097 54797 0.9830 +23097 55090 0.9810 +23097 55588 0.9780 +23097 57018 0.9790 +23097 65055 0.4230 +23097 79084 0.6730 +23097 80306 0.9990 +23097 81669 0.6560 +23097 81857 0.9270 +23097 84246 0.9810 +23097 84498 0.5650 +23097 85441 0.5070 +23097 90390 0.9810 +23097 112950 0.9820 +23097 116931 0.9960 +23097 133522 0.5400 +23097 256643 0.5400 +23097 400569 0.9720 +23098 23162 0.4040 +23098 23643 0.6960 +23098 27069 0.6520 +23098 51135 0.5320 +23098 51284 0.6670 +23098 51311 0.5160 +23098 54106 0.6550 +23098 54472 0.4710 +23098 54981 0.4980 +23098 57162 0.4790 +23098 59307 0.4360 +23098 64802 0.8020 +23098 65018 0.7370 +23098 79671 0.6760 +23098 81793 0.4790 +23098 84937 0.5400 +23098 114609 0.9230 +23098 118812 0.4760 +23098 138199 0.4200 +23098 148022 0.9670 +23098 349565 0.7200 +23098 353376 0.8820 +23098 401827 0.4170 +23099 51224 0.4220 +23099 55814 0.4030 +23099 89853 0.4680 +23101 23195 0.4980 +23101 23200 0.4390 +23101 55689 0.4210 +23101 79683 0.4550 +23101 84002 0.5270 +23101 89857 0.5150 +23101 151742 0.4470 +23101 254827 0.4550 +23102 23710 0.4950 +23102 54662 0.5410 +23102 55051 0.4120 +23102 55296 0.5300 +23102 55773 0.4050 +23102 57403 0.5910 +23102 93594 0.4020 +23102 161514 0.5220 +23102 254272 0.4180 +23105 23352 0.5160 +23105 23500 0.4150 +23105 25884 0.4140 +23105 27302 0.4260 +23105 56888 0.5570 +23105 57828 0.4090 +23105 117166 0.4220 +23107 25813 0.4200 +23107 26024 0.6350 +23107 26284 0.9860 +23107 26589 0.8830 +23107 27349 0.8710 +23107 28957 0.9960 +23107 28973 0.9990 +23107 28977 0.9880 +23107 28998 0.9050 +23107 29074 0.8640 +23107 29088 0.8690 +23107 29093 0.8710 +23107 51021 0.9980 +23107 51023 0.9960 +23107 51069 0.8760 +23107 51073 0.8950 +23107 51081 0.9970 +23107 51106 0.8720 +23107 51116 0.9980 +23107 51149 0.4890 +23107 51253 0.9030 +23107 51258 0.8430 +23107 51263 0.9070 +23107 51264 0.8320 +23107 51318 0.8840 +23107 51373 0.9950 +23107 51434 0.5300 +23107 51574 0.5170 +23107 51642 0.8970 +23107 51649 0.9960 +23107 51650 0.9960 +23107 54148 0.8980 +23107 54460 0.9970 +23107 54516 0.5770 +23107 54534 0.8780 +23107 54931 0.4410 +23107 54948 0.8770 +23107 54998 0.9890 +23107 55037 0.9960 +23107 55052 0.8810 +23107 55168 0.9870 +23107 55173 0.9980 +23107 55342 0.4370 +23107 56945 0.9990 +23107 57129 0.8640 +23107 57584 0.4180 +23107 58490 0.4500 +23107 60488 0.9910 +23107 63875 0.8530 +23107 63931 0.9980 +23107 64432 0.9970 +23107 64745 0.9020 +23107 64839 0.4070 +23107 64928 0.9020 +23107 64949 0.9950 +23107 64951 0.9930 +23107 64960 0.9990 +23107 64963 0.9960 +23107 64965 0.9950 +23107 64968 0.9950 +23107 64969 0.9990 +23107 64975 0.8460 +23107 64976 0.9090 +23107 64978 0.9510 +23107 64979 0.8400 +23107 64981 0.8390 +23107 64983 0.8470 +23107 65003 0.9310 +23107 65005 0.8820 +23107 65008 0.8610 +23107 65080 0.9510 +23107 65993 0.9980 +23107 78988 0.8360 +23107 79590 0.9300 +23107 79810 0.6800 +23107 79863 0.8440 +23107 80222 0.4180 +23107 84273 0.9870 +23107 84311 0.9270 +23107 84545 0.8710 +23107 84881 0.4490 +23107 85476 0.8840 +23107 90480 0.8800 +23107 91574 0.4580 +23107 92259 0.8850 +23107 92399 0.8830 +23107 115416 0.4770 +23107 116540 0.8130 +23107 116541 0.8560 +23107 118487 0.9850 +23107 122704 0.8390 +23107 124995 0.9320 +23107 128308 0.8760 +23107 157310 0.4600 +23107 158234 0.7950 +23107 195827 0.4570 +23107 195828 0.4800 +23107 196074 0.8660 +23107 219402 0.9080 +23107 219927 0.8940 +23107 100287404 0.4700 +23108 54769 0.4420 +23109 23286 0.9980 +23109 23607 0.7120 +23109 50944 0.4230 +23109 51440 0.4330 +23109 55243 0.5510 +23109 55841 0.5250 +23109 57379 0.4180 +23109 57699 0.4110 +23109 79917 0.5300 +23109 80014 0.5110 +23109 84623 0.4700 +23109 260425 0.6730 +23109 613212 0.6480 +23109 728586 0.6480 +23111 23259 0.5610 +23111 23431 0.4160 +23111 23503 0.6290 +23111 25923 0.8530 +23111 25927 0.4930 +23111 26580 0.7160 +23111 27243 0.4570 +23111 29907 0.5070 +23111 51062 0.8420 +23111 51308 0.5120 +23111 51324 0.8760 +23111 51426 0.4450 +23111 51513 0.4160 +23111 51741 0.5100 +23111 54863 0.4360 +23111 54875 0.4400 +23111 56957 0.5440 +23111 57132 0.6750 +23111 57154 0.6630 +23111 57165 0.7600 +23111 64225 0.8610 +23111 64750 0.4050 +23111 65055 0.6390 +23111 80208 0.8520 +23111 80263 0.8800 +23111 80821 0.4600 +23111 81614 0.5170 +23111 83737 0.8760 +23111 90268 0.4910 +23111 91574 0.4250 +23111 115653 0.8060 +23111 118813 0.4520 +23111 123606 0.8950 +23111 129531 0.4320 +23111 137492 0.4190 +23111 728591 0.4120 +23112 23135 0.5350 +23112 23309 0.4360 +23112 23389 0.4590 +23112 23394 0.4470 +23112 23405 0.9130 +23112 23466 0.5220 +23112 23512 0.5220 +23112 25942 0.4580 +23112 26058 0.7490 +23112 26065 0.4660 +23112 26523 0.9940 +23112 26986 0.7240 +23112 27161 0.9980 +23112 27287 0.5240 +23112 27327 0.8530 +23112 29102 0.5660 +23112 29883 0.7530 +23112 50628 0.6410 +23112 51199 0.4050 +23112 51272 0.6630 +23112 51701 0.5000 +23112 53981 0.4040 +23112 54145 0.5150 +23112 54464 0.4680 +23112 54542 0.4260 +23112 55170 0.4070 +23112 55534 0.5060 +23112 55766 0.5040 +23112 55904 0.6020 +23112 56478 0.4080 +23112 57332 0.5050 +23112 57472 0.5980 +23112 57680 0.4520 +23112 58508 0.5190 +23112 64599 0.6690 +23112 64852 0.4610 +23112 80012 0.7320 +23112 80816 0.4360 +23112 84441 0.5160 +23112 84733 0.5230 +23112 85236 0.5170 +23112 94239 0.5430 +23112 128312 0.5260 +23112 161882 0.4340 +23112 192669 0.9680 +23112 192670 0.9350 +23112 196513 0.4140 +23112 246175 0.5650 +23112 255626 0.5150 +23112 255967 0.4640 +23112 266743 0.4100 +23112 474382 0.5040 +23112 653604 0.5750 +23113 23363 0.8010 +23113 26259 0.7480 +23113 27301 0.4810 +23113 29882 0.5650 +23113 51434 0.7010 +23113 51529 0.5360 +23113 54676 0.4240 +23113 55521 0.4030 +23113 55832 0.4250 +23113 63901 0.4640 +23113 81631 0.4020 +23113 83987 0.8030 +23113 84678 0.4340 +23113 85378 0.4950 +23113 114823 0.4400 +23113 140739 0.5190 +23113 643641 0.4430 +23114 25818 0.4020 +23114 26047 0.7220 +23114 27111 0.4630 +23114 27255 0.4690 +23114 51332 0.5660 +23114 53616 0.4920 +23114 53942 0.4490 +23114 55800 0.6890 +23114 57555 0.4090 +23114 57731 0.9560 +23114 57863 0.4060 +23114 60484 0.6180 +23114 63827 0.6550 +23114 80128 0.4880 +23114 85445 0.5930 +23114 89778 0.4010 +23114 122786 0.4800 +23114 129684 0.4220 +23114 152330 0.4920 +23114 199731 0.4750 +23114 220296 0.4210 +23114 257194 0.4220 +23114 342035 0.9980 +23114 402665 0.4540 +23116 26063 0.4490 +23116 51125 0.5140 +23116 54813 0.5340 +23116 54916 0.6190 +23116 55015 0.5870 +23116 57568 0.4800 +23116 79006 0.4270 +23116 79188 0.4230 +23116 80210 0.6620 +23116 88745 0.5260 +23116 89953 0.4350 +23116 91461 0.4540 +23116 95681 0.4980 +23116 122525 0.4690 +23116 122553 0.4700 +23116 146325 0.6110 +23116 166348 0.5570 +23116 170850 0.4730 +23116 200942 0.4910 +23116 282809 0.4010 +23116 339834 0.4760 +23116 375567 0.4620 +23116 100130988 0.5010 +23117 27288 0.4730 +23117 387990 0.4290 +23118 23387 0.4880 +23118 23586 0.4490 +23118 23643 0.6660 +23118 23650 0.4690 +23118 27005 0.4530 +23118 27161 0.4500 +23118 29110 0.7100 +23118 51135 0.9830 +23118 51230 0.7880 +23118 51284 0.5590 +23118 51295 0.5080 +23118 51311 0.4960 +23118 51322 0.4330 +23118 51701 0.4650 +23118 54106 0.4340 +23118 54472 0.6710 +23118 54726 0.4600 +23118 54764 0.4650 +23118 55072 0.8080 +23118 55666 0.7010 +23118 56957 0.6400 +23118 57161 0.5160 +23118 57162 0.5780 +23118 57506 0.9340 +23118 57559 0.4100 +23118 58509 0.4270 +23118 64127 0.7750 +23118 79718 0.6190 +23118 80153 0.4050 +23118 80216 0.5090 +23118 81603 0.4130 +23118 81858 0.7760 +23118 84433 0.6740 +23118 84955 0.6190 +23118 85363 0.5890 +23118 89891 0.6160 +23118 90268 0.4050 +23118 90665 0.4010 +23118 92610 0.5010 +23118 114609 0.6040 +23118 128178 0.6680 +23118 148022 0.6870 +23118 197259 0.4250 +23118 220213 0.5020 +23118 221302 0.4610 +23118 246330 0.5070 +23118 257397 0.9990 +23118 353376 0.6460 +23118 387082 0.4620 +23118 442247 0.4420 +23119 23774 0.4420 +23119 27154 0.4320 +23119 55163 0.4340 +23119 64398 0.4290 +23119 64838 0.4620 +23119 84955 0.6190 +23119 653121 0.5910 +23119 729440 0.5410 +23120 23200 0.6250 +23120 23250 0.9210 +23120 51761 0.6220 +23120 54832 0.4070 +23120 55754 0.9890 +23120 57194 0.9420 +23120 57198 0.5870 +23120 57205 0.9390 +23120 79895 0.5830 +23120 148229 0.6030 +23120 161291 0.8610 +23120 286410 0.6250 +23122 23271 0.4030 +23122 23332 0.5320 +23122 23499 0.6330 +23122 26986 0.4810 +23122 27436 0.5090 +23122 51143 0.4150 +23122 51199 0.6040 +23122 51807 0.4440 +23122 55521 0.5040 +23122 55835 0.5440 +23122 57521 0.4070 +23122 57606 0.5400 +23122 79745 0.4400 +23122 84643 0.4780 +23122 90102 0.8820 +23122 131583 0.4220 +23122 149041 0.5270 +23122 151648 0.4230 +23122 152789 0.5410 +23122 200407 0.4170 +23122 253260 0.4100 +23122 399687 0.4210 +23125 23261 0.4870 +23125 51564 0.4250 +23125 51806 0.6280 +23125 55076 0.4320 +23125 80011 0.8260 +23125 89887 0.4720 +23125 91860 0.6270 +23125 92017 0.4340 +23125 118429 0.4470 +23125 163688 0.6270 +23126 23269 0.4140 +23126 23394 0.7160 +23126 23468 0.8790 +23126 23510 0.5240 +23126 26137 0.4520 +23126 54870 0.4460 +23126 54971 0.4320 +23126 55536 0.4930 +23126 55900 0.4230 +23126 57466 0.4510 +23126 57680 0.6400 +23126 79364 0.4830 +23126 79813 0.4520 +23126 84717 0.7340 +23126 84901 0.4070 +23126 114790 0.4020 +23126 124245 0.4310 +23126 283489 0.9070 +23126 347344 0.5950 +23126 641339 0.4180 +23127 50509 0.5840 +23127 57642 0.5790 +23127 78989 0.6620 +23127 79709 0.9610 +23127 80781 0.6230 +23127 81578 0.7500 +23127 84570 0.6290 +23127 84934 0.4290 +23127 85301 0.5830 +23127 91522 0.5400 +23127 114897 0.4140 +23127 114899 0.5990 +23127 131873 0.5400 +23127 136227 0.5960 +23127 169044 0.5550 +23127 255631 0.6280 +23127 338872 0.6000 +23127 340267 0.5840 +23129 23654 0.7480 +23129 25945 0.4100 +23129 27289 0.4560 +23129 28999 0.7750 +23129 50512 0.8310 +23129 54437 0.4810 +23129 54538 0.4940 +23129 54567 0.4910 +23129 54810 0.4730 +23129 54910 0.7480 +23129 55534 0.5040 +23129 55558 0.6160 +23129 56920 0.6670 +23129 57381 0.4700 +23129 57556 0.8150 +23129 57715 0.5530 +23129 64218 0.9960 +23129 80031 0.5840 +23129 84441 0.4990 +23129 91584 0.7520 +23129 126326 0.4960 +23129 219699 0.4810 +23129 223117 0.8030 +23129 256536 0.4560 +23129 348807 0.8310 +23130 23180 0.5660 +23130 23192 0.6660 +23130 23230 0.6200 +23130 23710 0.8470 +23130 25989 0.7390 +23130 26100 0.9950 +23130 30849 0.6850 +23130 53349 0.5510 +23130 54832 0.4570 +23130 55014 0.5230 +23130 55054 0.7080 +23130 55062 0.9980 +23130 55102 0.9590 +23130 55626 0.5710 +23130 56270 0.8910 +23130 57724 0.5870 +23130 60673 0.7200 +23130 63925 0.4780 +23130 64422 0.7220 +23130 79065 0.9380 +23130 80262 0.4350 +23130 81631 0.5950 +23130 81671 0.6440 +23130 83734 0.7150 +23130 84557 0.4930 +23130 84938 0.6170 +23130 84971 0.6500 +23130 89849 0.6240 +23130 115201 0.6900 +23130 140901 0.6160 +23130 149420 0.5940 +23130 285973 0.7650 +23130 440026 0.5560 +23130 440738 0.5810 +23131 23383 0.4020 +23131 23469 0.4500 +23131 26156 0.4620 +23131 27042 0.5220 +23131 51631 0.4780 +23131 54865 0.4600 +23131 54984 0.4510 +23131 55272 0.5140 +23131 55692 0.4190 +23131 55813 0.5400 +23131 55870 0.4630 +23131 57050 0.5220 +23131 64434 0.5170 +23131 65083 0.5340 +23131 79016 0.4890 +23131 88745 0.5170 +23132 29883 0.6580 +23132 57697 0.4670 +23132 91750 0.4960 +23132 128710 0.4650 +23132 150864 0.5460 +23133 23135 0.6550 +23133 23163 0.7890 +23133 23210 0.4120 +23133 23310 0.8970 +23133 23411 0.4090 +23133 23468 0.6390 +23133 23476 0.5100 +23133 23512 0.5790 +23133 25942 0.4180 +23133 27154 0.4730 +23133 29072 0.5450 +23133 29781 0.5290 +23133 51111 0.5420 +23133 51317 0.4370 +23133 51341 0.4370 +23133 51780 0.7590 +23133 54145 0.5330 +23133 54556 0.5460 +23133 54892 0.9060 +23133 54954 0.8770 +23133 55626 0.5500 +23133 55633 0.6070 +23133 55634 0.4230 +23133 55693 0.5650 +23133 55766 0.5020 +23133 55818 0.7550 +23133 55869 0.4060 +23133 57649 0.5360 +23133 57680 0.4550 +23133 64324 0.4990 +23133 65267 0.7660 +23133 79142 0.5230 +23133 79697 0.4330 +23133 79723 0.5690 +23133 79813 0.4800 +23133 79831 0.5340 +23133 80853 0.4930 +23133 80854 0.4190 +23133 83860 0.6270 +23133 84159 0.5130 +23133 84295 0.8700 +23133 84444 0.4350 +23133 84787 0.4940 +23133 85236 0.5310 +23133 94239 0.5300 +23133 126961 0.9190 +23133 128312 0.5280 +23133 129450 0.4230 +23133 152518 0.4510 +23133 221037 0.5840 +23133 221656 0.5650 +23133 254065 0.4750 +23133 255626 0.5260 +23133 285527 0.5530 +23133 333932 0.9190 +23133 342371 0.6230 +23133 347344 0.6150 +23133 387893 0.7090 +23133 390245 0.6260 +23133 440093 0.9710 +23133 440686 0.9710 +23133 474382 0.5020 +23133 641339 0.5350 +23133 653604 0.9850 +23135 23204 0.4120 +23135 23210 0.5340 +23135 23389 0.4520 +23135 23394 0.4530 +23135 23411 0.7740 +23135 23466 0.5840 +23135 23476 0.5610 +23135 23512 0.8990 +23135 23640 0.5140 +23135 23645 0.5510 +23135 25836 0.4490 +23135 25885 0.5190 +23135 25942 0.4040 +23135 26289 0.5570 +23135 26523 0.5660 +23135 27327 0.5200 +23135 27349 0.4520 +23135 29072 0.6420 +23135 29093 0.4870 +23135 29123 0.4390 +23135 29927 0.5090 +23135 29979 0.5130 +23135 30009 0.9250 +23135 50808 0.5580 +23135 51069 0.5320 +23135 51073 0.4890 +23135 51081 0.5150 +23135 51111 0.4630 +23135 51116 0.4610 +23135 51154 0.6090 +23135 51230 0.5840 +23135 51314 0.4300 +23135 51441 0.4900 +23135 51548 0.4150 +23135 51564 0.4550 +23135 51727 0.5770 +23135 51780 0.5540 +23135 54145 0.6730 +23135 54496 0.4410 +23135 54606 0.6180 +23135 54790 0.4730 +23135 54904 0.4880 +23135 54948 0.5170 +23135 55028 0.4650 +23135 55133 0.4270 +23135 55173 0.4330 +23135 55176 0.5100 +23135 55272 0.5580 +23135 55316 0.4580 +23135 55506 0.4350 +23135 55677 0.4250 +23135 55693 0.6530 +23135 55703 0.5770 +23135 55766 0.6870 +23135 55818 0.7610 +23135 55869 0.4260 +23135 55870 0.6410 +23135 55904 0.6320 +23135 56339 0.4710 +23135 56950 0.5620 +23135 57332 0.6210 +23135 57448 0.5890 +23135 57721 0.4880 +23135 57822 0.5290 +23135 58508 0.8720 +23135 59339 0.4080 +23135 63875 0.4560 +23135 63931 0.4700 +23135 64324 0.5620 +23135 64374 0.5180 +23135 64754 0.6150 +23135 64963 0.5490 +23135 64969 0.5250 +23135 64979 0.4640 +23135 65003 0.4190 +23135 65008 0.4960 +23135 79084 0.4530 +23135 79142 0.4560 +23135 79447 0.5640 +23135 79631 0.5170 +23135 79697 0.4490 +23135 79723 0.5870 +23135 79813 0.6370 +23135 79823 0.4230 +23135 79831 0.5370 +23135 79885 0.4820 +23135 80012 0.5210 +23135 80308 0.5100 +23135 80312 0.4560 +23135 80820 0.4260 +23135 80853 0.8630 +23135 80854 0.6570 +23135 81341 0.4280 +23135 81570 0.4360 +23135 83473 0.4240 +23135 83852 0.5630 +23135 83933 0.4020 +23135 84076 0.4140 +23135 84172 0.5740 +23135 84332 0.4240 +23135 84444 0.5910 +23135 84532 0.4710 +23135 84661 0.7030 +23135 84678 0.7000 +23135 84733 0.7670 +23135 84833 0.6290 +23135 85236 0.6730 +23135 85476 0.5150 +23135 91300 0.4430 +23135 92162 0.5840 +23135 92399 0.4460 +23135 94239 0.5900 +23135 114826 0.4440 +23135 121536 0.5810 +23135 122481 0.5520 +23135 123169 0.5470 +23135 126402 0.5080 +23135 126961 0.8190 +23135 128312 0.6780 +23135 140801 0.5130 +23135 143241 0.4240 +23135 148479 0.4430 +23135 150572 0.4620 +23135 158067 0.5520 +23135 192669 0.5360 +23135 192670 0.5350 +23135 197335 0.4610 +23135 200424 0.4280 +23135 221037 0.5550 +23135 221120 0.6420 +23135 221264 0.5780 +23135 221613 0.4110 +23135 221656 0.5910 +23135 255626 0.6830 +23135 261726 0.4560 +23135 267020 0.5870 +23135 333932 0.8140 +23135 340096 0.6420 +23135 340602 0.4010 +23135 347487 0.4540 +23135 387893 0.5980 +23135 390245 0.5990 +23135 391769 0.6350 +23135 440093 0.9280 +23135 440686 0.9650 +23135 474382 0.6870 +23135 641776 0.4100 +23135 643909 0.4100 +23135 653604 0.9810 +23135 728524 0.4100 +23135 100287482 0.4540 +23135 100526842 0.4820 +23135 100532731 0.4630 +23135 100996746 0.4100 +23135 105180390 0.4100 +23135 105180391 0.4100 +23136 23543 0.4830 +23136 23564 0.6210 +23136 23705 0.9900 +23136 25794 0.4990 +23136 25861 0.5210 +23136 26047 0.6340 +23136 51168 0.5190 +23136 51678 0.4160 +23136 53405 0.4990 +23136 53904 0.4990 +23136 54413 0.5260 +23136 54715 0.4280 +23136 56950 0.4330 +23136 57502 0.5320 +23136 57555 0.5240 +23136 57669 0.5710 +23136 64787 0.5000 +23136 80183 0.6450 +23136 83700 0.5210 +23136 83715 0.4990 +23136 129446 0.5040 +23136 140469 0.4990 +23136 147948 0.4740 +23136 151647 0.5890 +23136 259217 0.6420 +23136 286262 0.4990 +23136 339768 0.4990 +23136 389207 0.4990 +23136 494513 0.4990 +23136 643226 0.4990 +23137 23244 0.8200 +23137 23272 0.4640 +23137 23310 0.6200 +23137 23383 0.6060 +23137 23397 0.8320 +23137 23411 0.4170 +23137 23476 0.4170 +23137 23586 0.6320 +23137 23626 0.6990 +23137 23649 0.4960 +23137 25788 0.4190 +23137 25836 0.8890 +23137 25842 0.4450 +23137 26054 0.4520 +23137 26168 0.4860 +23137 27127 0.5570 +23137 27332 0.5240 +23137 29781 0.5000 +23137 29843 0.4060 +23137 51438 0.5400 +23137 51535 0.4420 +23137 51567 0.4150 +23137 51588 0.4060 +23137 51742 0.4520 +23137 51773 0.4900 +23137 54551 0.5780 +23137 54780 0.9990 +23137 54816 0.4020 +23137 54892 0.6360 +23137 54921 0.5020 +23137 54962 0.4040 +23137 55167 0.4800 +23137 55719 0.9670 +23137 55723 0.4660 +23137 56160 0.9990 +23137 56852 0.9290 +23137 57187 0.4670 +23137 57692 0.4940 +23137 57697 0.8930 +23137 63922 0.5870 +23137 64110 0.6790 +23137 64135 0.6100 +23137 64151 0.7730 +23137 64219 0.7600 +23137 79132 0.5910 +23137 79677 0.9990 +23137 79915 0.5210 +23137 79991 0.7180 +23137 80010 0.7420 +23137 80119 0.5880 +23137 80198 0.7470 +23137 81557 0.4200 +23137 83990 0.4120 +23137 84250 0.9590 +23137 84311 0.6440 +23137 84464 0.4460 +23137 84893 0.4820 +23137 84901 0.8330 +23137 113130 0.4870 +23137 114799 0.7790 +23137 114803 0.6490 +23137 138639 0.4380 +23137 139081 0.5740 +23137 139599 0.5450 +23137 139604 0.5050 +23137 146434 0.8390 +23137 146862 0.6150 +23137 146956 0.4830 +23137 157570 0.6990 +23137 163126 0.7070 +23137 165918 0.4290 +23137 197370 0.9990 +23137 266740 0.4940 +23137 286053 0.9990 +23137 286514 0.4770 +23137 347541 0.4940 +23137 348654 0.4470 +23137 387082 0.9580 +23137 493861 0.9990 +23137 548593 0.6020 +23137 642636 0.7000 +23137 653604 0.4060 +23138 54994 0.6690 +23138 55815 0.4630 +23138 57568 0.5570 +23138 57610 0.4990 +23138 79927 0.4060 +23138 80232 0.5420 +23138 84926 0.4620 +23139 51249 0.4610 +23139 54825 0.5010 +23139 57120 0.4770 +23139 59269 0.4230 +23139 59272 0.5200 +23139 60313 0.5910 +23139 79605 0.4230 +23139 81609 0.5320 +23139 83931 0.4070 +23139 135293 0.4250 +23139 260425 0.4050 +23139 340533 0.4730 +23140 23174 0.5300 +23140 23274 0.5350 +23140 23503 0.4220 +23140 29090 0.4540 +23140 51003 0.4530 +23140 55092 0.4190 +23140 55102 0.4480 +23140 55187 0.4850 +23140 57724 0.4930 +23140 79768 0.5310 +23140 80323 0.4440 +23140 83607 0.4080 +23140 84058 0.4270 +23140 117246 0.5600 +23140 126248 0.4080 +23140 131076 0.5310 +23140 148137 0.4040 +23140 196294 0.4830 +23140 200014 0.4640 +23140 203859 0.4240 +23140 254439 0.5220 +23140 285368 0.4660 +23140 643904 0.4770 +23141 23310 0.4210 +23141 23592 0.8160 +23141 26031 0.4140 +23141 55083 0.5580 +23141 55262 0.5230 +23141 55755 0.4830 +23141 55835 0.6310 +23141 57082 0.4880 +23141 57474 0.4050 +23141 63925 0.7060 +23141 79023 0.4810 +23141 79648 0.5770 +23141 80213 0.4780 +23141 84879 0.5070 +23141 93273 0.4110 +23141 117583 0.4160 +23141 126549 0.7110 +23141 140836 0.6260 +23141 163786 0.5910 +23141 221496 0.8390 +23141 246329 0.4690 +23141 259266 0.5020 +23141 284403 0.6200 +23141 440026 0.4060 +23142 23412 0.5070 +23142 25879 0.5240 +23142 26043 0.5420 +23142 26094 0.4990 +23142 26224 0.4550 +23142 26249 0.5660 +23142 27252 0.5870 +23142 28952 0.4990 +23142 28991 0.4990 +23142 29099 0.4990 +23142 50717 0.5490 +23142 50813 0.4340 +23142 51088 0.5120 +23142 51122 0.6280 +23142 51138 0.4330 +23142 51397 0.5230 +23142 51514 0.5000 +23142 53339 0.5190 +23142 54165 0.7040 +23142 54876 0.5130 +23142 54939 0.5050 +23142 54940 0.5640 +23142 54951 0.6150 +23142 55153 0.4910 +23142 55175 0.5070 +23142 55208 0.5230 +23142 55527 0.5000 +23142 55827 0.5230 +23142 55832 0.7660 +23142 55958 0.5370 +23142 56929 0.5900 +23142 57542 0.5300 +23142 64326 0.5180 +23142 64344 0.4990 +23142 64410 0.5190 +23142 64708 0.4220 +23142 79016 0.4990 +23142 79269 0.5230 +23142 80067 0.5320 +23142 80157 0.6090 +23142 80344 0.4990 +23142 83478 0.4170 +23142 84078 0.5080 +23142 84259 0.4230 +23142 84541 0.5970 +23142 84861 0.5070 +23142 89890 0.5120 +23142 90135 0.5040 +23142 90293 0.5350 +23142 122769 0.5060 +23142 123879 0.5860 +23142 132299 0.5070 +23142 132671 0.4690 +23142 140739 0.7430 +23142 143384 0.4140 +23142 149951 0.4990 +23142 150684 0.4990 +23142 152518 0.4190 +23142 154881 0.4990 +23142 170622 0.5060 +23142 200845 0.5090 +23142 222235 0.4970 +23142 285527 0.4450 +23142 339977 0.4760 +23142 390594 0.5070 +23143 23266 0.5230 +23143 23284 0.5230 +23143 24149 0.4230 +23143 26020 0.4270 +23143 28978 0.4690 +23143 51314 0.7460 +23143 54829 0.5410 +23143 57546 0.5070 +23143 57572 0.7690 +23143 57631 0.4340 +23143 80213 0.6480 +23143 81704 0.9350 +23143 84859 0.8000 +23143 85440 0.8350 +23143 93550 0.6450 +23143 148252 0.5640 +23143 164153 0.4940 +23144 23283 0.6700 +23144 25962 0.7230 +23144 29101 0.5920 +23144 29890 0.5800 +23144 29894 0.8420 +23144 50626 0.6030 +23144 51585 0.7320 +23144 51692 0.7000 +23144 53981 0.7390 +23144 54439 0.4880 +23144 54512 0.4690 +23144 54973 0.4280 +23144 55037 0.4830 +23144 55339 0.5870 +23144 56903 0.5420 +23144 64062 0.5960 +23144 64783 0.6950 +23144 64895 0.5390 +23144 79869 0.4410 +23144 80335 0.6530 +23144 81608 0.7900 +23144 84524 0.4620 +23144 84948 0.4910 +23144 136157 0.5780 +23144 143506 0.5780 +23144 196120 0.5780 +23144 196441 0.5320 +23144 339230 0.4470 +23144 343702 0.5010 +23144 343990 0.4030 +23144 390031 0.5780 +23144 390033 0.5780 +23144 441584 0.5780 +23144 642843 0.4090 +23148 23204 0.4240 +23148 23521 0.6040 +23148 25873 0.4460 +23148 26054 0.4400 +23148 28998 0.4360 +23148 29093 0.5000 +23148 51073 0.4160 +23148 51081 0.5000 +23148 51121 0.6060 +23148 51154 0.4230 +23148 56648 0.4300 +23148 79590 0.4430 +23148 91408 0.8790 +23148 114987 0.4900 +23148 116832 0.4150 +23148 126402 0.5000 +23148 140032 0.5210 +23148 140801 0.6640 +23148 143244 0.4300 +23148 165904 0.5460 +23148 285855 0.6100 +23148 347487 0.6000 +23148 387129 0.4800 +23148 100505478 0.4770 +23148 100526842 0.7050 +23148 100529097 0.4630 +23149 25977 0.8910 +23149 26119 0.6040 +23149 29763 0.6830 +23149 29924 0.8060 +23149 29978 0.5510 +23149 29993 0.7040 +23149 50618 0.9980 +23149 51429 0.7950 +23149 54874 0.7270 +23149 55040 0.8230 +23149 55707 0.8050 +23149 56915 0.4480 +23149 57522 0.4450 +23149 58513 0.9590 +23149 84174 0.5750 +23149 84251 0.6070 +23149 84759 0.5140 +23149 85021 0.5370 +23149 85439 0.6030 +23149 89848 0.6220 +23149 112574 0.6600 +23149 115548 0.8570 +23149 115677 0.4080 +23150 27128 0.6640 +23150 27129 0.5440 +23150 51203 0.4170 +23150 54477 0.4610 +23150 54916 0.4060 +23150 83657 0.4330 +23150 84899 0.5190 +23150 131034 0.4050 +23150 285203 0.4780 +23151 25771 0.4270 +23151 26330 0.4200 +23151 54823 0.4710 +23151 54870 0.4520 +23151 55819 0.4080 +23151 55922 0.4010 +23151 79797 0.4160 +23152 25894 0.5430 +23152 29978 0.4930 +23152 56893 0.5640 +23152 64748 0.4030 +23152 64857 0.4380 +23152 84991 0.8470 +23152 170261 0.4150 +23152 342371 0.8630 +23152 100288687 0.5400 +23154 25980 0.8510 +23154 51759 0.6180 +23154 55175 0.4200 +23154 55622 0.7170 +23154 55837 0.7150 +23154 57580 0.5060 +23154 64210 0.4060 +23154 79012 0.4760 +23154 84107 0.5090 +23154 84138 0.5000 +23154 85397 0.5050 +23154 92737 0.5430 +23154 160622 0.7730 +23154 402665 0.5290 +23155 23339 0.5530 +23155 29087 0.5800 +23155 29899 0.4590 +23155 29927 0.4050 +23155 30968 0.4940 +23155 63826 0.4270 +23155 80023 0.4610 +23155 80305 0.4440 +23155 113675 0.4290 +23155 127003 0.5050 +23155 148545 0.4020 +23155 201305 0.5990 +23155 201514 0.4540 +23155 254268 0.4780 +23155 284106 0.4210 +23155 285521 0.4170 +23155 101928527 0.5450 +23157 23176 0.9600 +23157 23365 0.4620 +23157 23580 0.8960 +23157 30011 0.6470 +23157 30837 0.8410 +23157 54443 0.8160 +23157 55752 0.9960 +23157 55964 0.9770 +23157 56155 0.4330 +23157 57082 0.4980 +23157 84324 0.4800 +23157 90120 0.5570 +23157 116983 0.6120 +23157 122809 0.7810 +23157 124404 0.9890 +23157 148170 0.8930 +23157 151011 0.9570 +23157 159091 0.5260 +23157 203427 0.5230 +23157 346288 0.9240 +23158 23416 0.4610 +23158 57484 0.4470 +23158 79735 0.4290 +23158 84959 0.4670 +23158 127829 0.4030 +23158 129049 0.4240 +23158 161514 0.4450 +23158 255520 0.5680 +23160 23204 0.6410 +23160 23212 0.8820 +23160 23223 0.9730 +23160 23246 0.8480 +23160 23378 0.6280 +23160 23404 0.9030 +23160 23481 0.8850 +23160 23517 0.8630 +23160 23560 0.9470 +23160 25871 0.4480 +23160 25879 0.9990 +23160 25885 0.7360 +23160 25926 0.9950 +23160 25983 0.9980 +23160 26155 0.9330 +23160 26156 0.9890 +23160 26168 0.5550 +23160 26354 0.9250 +23160 26574 0.9980 +23160 27037 0.5540 +23160 27042 0.8930 +23160 27043 0.5670 +23160 27292 0.9820 +23160 27316 0.4270 +23160 27340 0.9980 +23160 27341 0.9980 +23160 28987 0.7850 +23160 29777 0.4410 +23160 29889 0.8530 +23160 29997 0.6340 +23160 30836 0.9970 +23160 51010 0.8600 +23160 51013 0.9190 +23160 51018 0.7170 +23160 51042 0.6000 +23160 51065 0.8620 +23160 51068 0.7070 +23160 51073 0.5330 +23160 51077 0.9950 +23160 51081 0.7580 +23160 51082 0.5900 +23160 51096 0.9990 +23160 51106 0.5630 +23160 51118 0.9970 +23160 51149 0.8280 +23160 51154 0.8420 +23160 51187 0.8400 +23160 51202 0.8470 +23160 51236 0.8350 +23160 51319 0.5220 +23160 51388 0.9200 +23160 51406 0.9440 +23160 51538 0.4050 +23160 51575 0.8800 +23160 51602 0.9990 +23160 51605 0.5490 +23160 54433 0.7110 +23160 54463 0.5230 +23160 54475 0.8370 +23160 54512 0.7750 +23160 54517 0.6350 +23160 54552 0.8360 +23160 54555 0.9160 +23160 54606 0.8840 +23160 54663 0.8510 +23160 54700 0.5200 +23160 54853 0.4900 +23160 54881 0.8190 +23160 54888 0.6490 +23160 54984 0.4570 +23160 55003 0.7040 +23160 55006 0.5340 +23160 55027 0.4370 +23160 55127 0.9990 +23160 55131 0.8540 +23160 55140 0.7090 +23160 55153 0.9540 +23160 55226 0.9980 +23160 55272 0.9970 +23160 55299 0.8870 +23160 55319 0.5350 +23160 55341 0.8620 +23160 55622 0.6340 +23160 55646 0.7180 +23160 55651 0.7580 +23160 55703 0.6810 +23160 55718 0.4170 +23160 55720 0.9110 +23160 55759 0.9670 +23160 55760 0.5720 +23160 55781 0.7980 +23160 55794 0.4300 +23160 55813 0.9990 +23160 55854 0.4010 +23160 56342 0.6660 +23160 56474 0.4070 +23160 56902 0.9740 +23160 56915 0.8970 +23160 56919 0.7080 +23160 57050 0.9980 +23160 57062 0.5880 +23160 57109 0.4250 +23160 57418 0.8080 +23160 57647 0.9410 +23160 57696 0.5750 +23160 60487 0.6810 +23160 60625 0.6480 +23160 64118 0.6230 +23160 64216 0.7460 +23160 64318 0.8820 +23160 64425 0.7490 +23160 64434 0.5880 +23160 64794 0.7200 +23160 64960 0.7710 +23160 64963 0.6220 +23160 65083 0.9990 +23160 65095 0.6060 +23160 79009 0.4770 +23160 79039 0.8440 +23160 79050 0.9990 +23160 79159 0.6700 +23160 79571 0.8380 +23160 79665 0.4070 +23160 79707 0.5610 +23160 79954 0.9970 +23160 79979 0.5510 +23160 80135 0.8260 +23160 81887 0.5800 +23160 83732 0.6100 +23160 83743 0.8580 +23160 84128 0.9990 +23160 84135 0.9990 +23160 84154 0.9270 +23160 84172 0.8310 +23160 84294 0.9880 +23160 84365 0.9490 +23160 84549 0.8720 +23160 84916 0.9990 +23160 84946 0.9300 +23160 88745 0.6890 +23160 90121 0.6920 +23160 90353 0.4730 +23160 90381 0.5410 +23160 90441 0.5960 +23160 91582 0.8050 +23160 92345 0.4570 +23160 92856 0.9980 +23160 112840 0.5810 +23160 115708 0.6980 +23160 115752 0.4350 +23160 116966 0.5670 +23160 117246 0.8960 +23160 118460 0.6830 +23160 126402 0.7550 +23160 128061 0.8110 +23160 129563 0.4390 +23160 140032 0.7590 +23160 142940 0.4200 +23160 146212 0.7310 +23160 153443 0.6010 +23160 161424 0.6060 +23160 165545 0.4980 +23160 221078 0.7130 +23160 221830 0.8430 +23160 345630 0.9030 +23160 641776 0.4440 +23160 643909 0.4440 +23160 692312 0.5900 +23160 728524 0.4440 +23160 100996746 0.4440 +23160 105180390 0.4440 +23160 105180391 0.4440 +23161 26575 0.5180 +23161 27075 0.4810 +23161 27131 0.4650 +23161 28969 0.5700 +23161 29886 0.4220 +23161 29907 0.4930 +23161 29916 0.4180 +23161 29934 0.4150 +23161 55032 0.4450 +23161 56890 0.6200 +23161 57037 0.5630 +23161 57231 0.8130 +23161 58533 0.4750 +23161 64089 0.4590 +23161 64407 0.4730 +23161 79886 0.4510 +23161 81609 0.5930 +23161 85397 0.5000 +23161 90203 0.4380 +23161 126321 0.4770 +23161 157567 0.4160 +23161 222894 0.4100 +23161 253012 0.4020 +23161 283652 0.4080 +23161 431704 0.5430 +23162 23426 0.7830 +23162 23542 0.9560 +23162 23557 0.4230 +23162 26119 0.6200 +23162 51164 0.5970 +23162 51361 0.4430 +23162 51562 0.4460 +23162 54472 0.4630 +23162 55860 0.4600 +23162 57162 0.4740 +23162 57192 0.4250 +23162 64837 0.9720 +23162 65993 0.4820 +23162 80144 0.4400 +23162 89953 0.9460 +23162 90809 0.5480 +23162 117286 0.5230 +23162 119559 0.4090 +23162 120892 0.4910 +23162 147700 0.9440 +23162 196383 0.4510 +23162 221079 0.4490 +23162 255631 0.4200 +23162 255798 0.7850 +23162 341640 0.4260 +23162 344558 0.4290 +23162 353116 0.4550 +23162 353376 0.4070 +23162 100302736 0.4300 +23163 23166 0.4040 +23163 23621 0.9330 +23163 23644 0.5380 +23163 25825 0.5400 +23163 25930 0.5630 +23163 26020 0.4480 +23163 26088 0.9830 +23163 26276 0.4440 +23163 29934 0.4420 +23163 53916 0.5080 +23163 55633 0.5550 +23163 55690 0.6060 +23163 55738 0.5120 +23163 57142 0.5140 +23163 57610 0.5030 +23163 57617 0.4460 +23163 64083 0.7670 +23163 64689 0.5190 +23163 64744 0.4090 +23163 79595 0.4650 +23163 79654 0.5360 +23163 79869 0.4480 +23163 79902 0.5280 +23163 80724 0.4300 +23163 83737 0.4340 +23163 89796 0.4510 +23163 90324 0.4510 +23163 114790 0.4600 +23163 133482 0.4470 +23163 146705 0.5070 +23163 163882 0.4140 +23163 171017 0.4790 +23163 256380 0.4190 +23163 283450 0.4390 +23163 729873 0.6920 +23164 23322 0.4730 +23164 26499 0.4690 +23164 27044 0.5040 +23164 29964 0.4100 +23164 29968 0.4260 +23164 29993 0.4220 +23164 51154 0.4370 +23164 54443 0.4680 +23164 54776 0.7420 +23164 54845 0.5820 +23164 54891 0.4500 +23164 55109 0.4990 +23164 55750 0.5000 +23164 56829 0.5000 +23164 56953 0.4740 +23164 57085 0.4990 +23164 57670 0.5430 +23164 64318 0.4640 +23164 64900 0.4320 +23164 80853 0.4990 +23165 23181 0.5570 +23165 23225 0.9910 +23165 23279 0.9970 +23165 23310 0.5340 +23165 23363 0.5100 +23165 23511 0.9990 +23165 23534 0.6220 +23165 23592 0.4220 +23165 23636 0.9980 +23165 25885 0.4250 +23165 25909 0.9830 +23165 25929 0.4990 +23165 26097 0.4160 +23165 26227 0.4040 +23165 27161 0.4260 +23165 27341 0.4210 +23165 29107 0.5660 +23165 29894 0.5160 +23165 50628 0.5050 +23165 51182 0.4850 +23165 51362 0.4090 +23165 51501 0.5150 +23165 51692 0.5530 +23165 51808 0.4280 +23165 53371 0.9990 +23165 53981 0.4600 +23165 54596 0.6750 +23165 54830 0.8860 +23165 54892 0.4640 +23165 54960 0.5010 +23165 55110 0.5410 +23165 55127 0.5080 +23165 55143 0.5100 +23165 55226 0.5110 +23165 55301 0.6350 +23165 55339 0.4200 +23165 55627 0.5260 +23165 55705 0.4050 +23165 55706 0.9930 +23165 55746 0.9970 +23165 57122 0.9990 +23165 57187 0.5570 +23165 57510 0.7550 +23165 57609 0.6020 +23165 57727 0.8390 +23165 64682 0.5700 +23165 65109 0.5140 +23165 79023 0.9830 +23165 79228 0.4130 +23165 79711 0.6120 +23165 79760 0.4160 +23165 79833 0.4190 +23165 79890 0.5720 +23165 79902 0.9980 +23165 80145 0.4520 +23165 80221 0.5600 +23165 81608 0.4160 +23165 81929 0.9990 +23165 84128 0.4380 +23165 84248 0.4130 +23165 84271 0.5180 +23165 84321 0.4470 +23165 84324 0.4150 +23165 84823 0.6740 +23165 84928 0.7490 +23165 91181 0.4980 +23165 91408 0.7950 +23165 91754 0.4440 +23165 116835 0.4180 +23165 129401 0.9990 +23165 137362 0.4350 +23165 140609 0.4390 +23165 150094 0.4520 +23165 157869 0.6350 +23165 197322 0.6380 +23165 259217 0.4180 +23165 348995 0.9950 +23165 376497 0.6400 +23165 389170 0.4500 +23165 647087 0.4280 +23165 728343 0.5820 +23165 729857 0.6630 +23165 100101267 0.9350 +23166 26088 0.4110 +23166 29109 0.4110 +23166 30835 0.4410 +23166 51454 0.4300 +23166 54209 0.4600 +23166 64231 0.5140 +23166 64805 0.4140 +23166 66005 0.8400 +23166 84868 0.5370 +23166 91937 0.6140 +23166 124599 0.4830 +23166 146722 0.4230 +23166 203062 0.4680 +23166 339390 0.4190 +23167 50807 0.4030 +23167 54878 0.4510 +23167 55715 0.4440 +23167 57217 0.9000 +23167 84668 0.7050 +23167 114882 0.4330 +23167 129303 0.5430 +23167 130574 0.4030 +23167 145567 0.7880 +23167 148281 0.4890 +23167 197335 0.4460 +23167 220164 0.4690 +23167 285172 0.6680 +23167 386672 0.4160 +23167 390260 0.5070 +23168 23211 0.4040 +23168 23379 0.9010 +23168 23394 0.4340 +23168 23476 0.7250 +23168 23545 0.4050 +23168 23595 0.4060 +23168 25920 0.9430 +23168 25942 0.4480 +23168 26043 0.4400 +23168 26100 0.5260 +23168 26610 0.9130 +23168 26747 0.7400 +23168 27125 0.9380 +23168 29072 0.7090 +23168 29079 0.4420 +23168 29113 0.8380 +23168 29115 0.4660 +23168 29117 0.6070 +23168 51092 0.4140 +23168 51224 0.5600 +23168 51322 0.5840 +23168 51497 0.9030 +23168 51507 0.7680 +23168 51550 0.8390 +23168 51755 0.7620 +23168 51780 0.4280 +23168 51808 0.4240 +23168 53981 0.4470 +23168 54145 0.5990 +23168 54439 0.4090 +23168 54623 0.9990 +23168 54847 0.4140 +23168 54870 0.4630 +23168 54902 0.4140 +23168 55133 0.6010 +23168 55172 0.4210 +23168 55209 0.4400 +23168 55250 0.7940 +23168 55253 0.4970 +23168 55677 0.9010 +23168 55703 0.5020 +23168 55840 0.9040 +23168 56254 0.9530 +23168 56949 0.4120 +23168 57121 0.4140 +23168 57680 0.5020 +23168 57794 0.5080 +23168 64426 0.4640 +23168 79577 0.9990 +23168 79664 0.9030 +23168 79871 0.7520 +23168 79954 0.4290 +23168 79961 0.4530 +23168 80237 0.9070 +23168 80335 0.4720 +23168 80349 0.9990 +23168 80820 0.5760 +23168 81556 0.4040 +23168 81857 0.4740 +23168 83444 0.4120 +23168 84172 0.4920 +23168 84337 0.8660 +23168 84444 0.4870 +23168 84524 0.9030 +23168 85236 0.7850 +23168 85365 0.4560 +23168 85403 0.9040 +23168 85456 0.8830 +23168 114034 0.4280 +23168 121504 0.8520 +23168 123169 0.9990 +23168 124245 0.6670 +23168 125476 0.4160 +23168 126961 0.8640 +23168 127428 0.4220 +23168 128312 0.5980 +23168 149483 0.4140 +23168 152185 0.4340 +23168 158983 0.5990 +23168 170082 0.4170 +23168 246721 0.4360 +23168 255626 0.7860 +23168 286436 0.5990 +23168 333932 0.8640 +23168 340602 0.4140 +23168 440093 0.5960 +23168 440686 0.5970 +23168 440689 0.6010 +23168 448834 0.4140 +23168 548644 0.4410 +23168 554313 0.8520 +23168 653604 0.9170 +23168 114483833 0.6000 +23168 122455342 0.4140 +23169 23258 0.4220 +23169 23443 0.9370 +23169 25830 0.6730 +23169 29929 0.4810 +23169 51000 0.8630 +23169 51006 0.6620 +23169 51117 0.8820 +23169 51463 0.4760 +23169 54733 0.4290 +23169 55032 0.5750 +23169 55343 0.5790 +23169 55508 0.4820 +23169 55790 0.4040 +23169 55858 0.4500 +23169 79087 0.4690 +23169 79939 0.6940 +23169 80146 0.4360 +23169 84068 0.4730 +23169 84265 0.4740 +23169 84912 0.8970 +23169 85365 0.4470 +23169 113829 0.5200 +23169 114803 0.4470 +23169 148641 0.5270 +23169 159371 0.4800 +23169 160518 0.6250 +23169 222553 0.5480 +23169 257629 0.4410 +23169 347734 0.8790 +23169 400757 0.4760 +23169 653519 0.4490 +23170 25809 0.6090 +23170 26043 0.4450 +23170 51260 0.8320 +23170 58477 0.4360 +23170 79739 0.4220 +23170 79891 0.4630 +23170 140809 0.4390 +23170 150465 0.5870 +23170 158135 0.6640 +23170 164395 0.6770 +23170 221143 0.7860 +23170 254173 0.5460 +23170 256281 0.4530 +23170 283237 0.4270 +23170 100316904 0.4520 +23171 23175 0.8190 +23171 23479 0.5070 +23171 23493 0.4180 +23171 23630 0.6920 +23171 23704 0.7230 +23171 26007 0.8480 +23171 27295 0.4130 +23171 29098 0.7740 +23171 51015 0.4290 +23171 51422 0.4620 +23171 54795 0.5840 +23171 54947 0.4040 +23171 54995 0.4520 +23171 55326 0.8640 +23171 55800 0.9010 +23171 55856 0.4030 +23171 56894 0.8660 +23171 56895 0.8640 +23171 56985 0.9020 +23171 57678 0.9570 +23171 64900 0.8100 +23171 65220 0.8050 +23171 79188 0.4010 +23171 79192 0.6060 +23171 79763 0.4270 +23171 79888 0.4130 +23171 79944 0.4830 +23171 80110 0.4540 +23171 83473 0.4230 +23171 84513 0.8210 +23171 84803 0.9430 +23171 92399 0.4170 +23171 119467 0.4090 +23171 129642 0.8250 +23171 132949 0.4110 +23171 137964 0.9320 +23171 139189 0.6340 +23171 140462 0.4400 +23171 150763 0.9590 +23171 151195 0.4170 +23171 154141 0.8330 +23171 160851 0.6050 +23171 196051 0.8210 +23171 253558 0.8710 +23171 256356 0.4010 +23171 283987 0.5200 +23171 286451 0.4060 +23171 374659 0.4090 +23171 376132 0.4300 +23172 26164 0.4240 +23172 29086 0.9990 +23172 50485 0.5050 +23172 50619 0.6220 +23172 51720 0.8910 +23172 55031 0.4430 +23172 55086 0.4350 +23172 55218 0.4350 +23172 56897 0.4290 +23172 57559 0.4650 +23172 57599 0.4850 +23172 64844 0.4060 +23172 79184 0.9990 +23172 84083 0.5500 +23172 84142 0.5000 +23172 84954 0.4120 +23172 114548 0.7120 +23172 124637 0.4280 +23172 138241 0.4390 +23172 168451 0.7250 +23172 221302 0.5150 +23172 259282 0.6740 +23172 373509 0.5720 +23172 548645 0.4850 +23173 23204 0.5330 +23173 23212 0.4100 +23173 23246 0.6490 +23173 23481 0.7640 +23173 23521 0.7140 +23173 23549 0.5750 +23173 23560 0.7380 +23173 23585 0.4260 +23173 23640 0.5970 +23173 24140 0.4350 +23173 25873 0.4760 +23173 25885 0.4530 +23173 26156 0.5080 +23173 26289 0.4520 +23173 26574 0.4110 +23173 28998 0.6660 +23173 29088 0.4250 +23173 29093 0.7190 +23173 29889 0.4880 +23173 29927 0.6540 +23173 29960 0.4010 +23173 29997 0.5490 +23173 50808 0.6300 +23173 51042 0.5330 +23173 51060 0.4410 +23173 51067 0.4040 +23173 51068 0.6460 +23173 51069 0.7290 +23173 51073 0.6820 +23173 51081 0.6840 +23173 51116 0.5740 +23173 51121 0.7350 +23173 51126 0.4690 +23173 51149 0.4790 +23173 51154 0.7610 +23173 51187 0.6640 +23173 51249 0.5890 +23173 51319 0.5000 +23173 51362 0.4110 +23173 51520 0.4070 +23173 51602 0.6180 +23173 51727 0.4850 +23173 51752 0.4860 +23173 54475 0.4810 +23173 54663 0.5080 +23173 54764 0.5910 +23173 54840 0.4050 +23173 54881 0.5020 +23173 54948 0.6170 +23173 54989 0.4910 +23173 55127 0.4720 +23173 55153 0.6070 +23173 55173 0.6280 +23173 55176 0.6470 +23173 55201 0.5140 +23173 55226 0.4440 +23173 55272 0.7470 +23173 55299 0.5230 +23173 55316 0.6550 +23173 55341 0.4270 +23173 55591 0.4110 +23173 55644 0.4260 +23173 55651 0.4820 +23173 55703 0.5030 +23173 55720 0.4420 +23173 55759 0.5550 +23173 55871 0.7380 +23173 56648 0.5480 +23173 57486 0.4040 +23173 60528 0.4080 +23173 63875 0.6280 +23173 63931 0.6470 +23173 64146 0.7490 +23173 64374 0.5970 +23173 64748 0.4260 +23173 64960 0.5030 +23173 64963 0.6490 +23173 64968 0.7250 +23173 64969 0.7250 +23173 64979 0.7340 +23173 64983 0.4200 +23173 65003 0.4400 +23173 65008 0.4920 +23173 65121 0.4090 +23173 65122 0.4090 +23173 79590 0.7350 +23173 79631 0.6410 +23173 80218 0.4040 +23173 84128 0.6000 +23173 84154 0.6190 +23173 84172 0.5290 +23173 84273 0.5200 +23173 84365 0.5830 +23173 85476 0.6270 +23173 91408 0.4180 +23173 92399 0.4300 +23173 116832 0.4220 +23173 117246 0.4220 +23173 122481 0.4790 +23173 124454 0.4430 +23173 126402 0.6700 +23173 140801 0.5940 +23173 142940 0.4130 +23173 143244 0.5480 +23173 150472 0.8430 +23173 158067 0.4790 +23173 200916 0.4600 +23173 219927 0.6920 +23173 221264 0.5870 +23173 285555 0.5310 +23173 285855 0.7260 +23173 339855 0.4290 +23173 343068 0.4090 +23173 343070 0.4090 +23173 347487 0.5600 +23173 387129 0.7240 +23173 390999 0.4090 +23173 391002 0.4090 +23173 400735 0.4090 +23173 400736 0.4090 +23173 440560 0.4090 +23173 440561 0.4090 +23173 441873 0.4090 +23173 641776 0.5200 +23173 643909 0.5200 +23173 645359 0.4090 +23173 653619 0.4090 +23173 728524 0.5200 +23173 729528 0.4090 +23173 100287482 0.5600 +23173 100505478 0.7240 +23173 100526842 0.7520 +23173 100996746 0.5200 +23173 101929983 0.4090 +23173 105180390 0.5200 +23173 105180391 0.5200 +23174 23276 0.4530 +23174 23517 0.5740 +23174 23560 0.4230 +23174 24149 0.4150 +23174 27154 0.4690 +23174 29123 0.4710 +23174 54758 0.4680 +23174 55759 0.4860 +23174 64282 0.8260 +23174 64795 0.4080 +23174 89874 0.4170 +23174 116987 0.4800 +23174 123879 0.4260 +23174 130026 0.5060 +23174 140706 0.4010 +23174 390212 0.4240 +23174 100506581 0.4480 +23174 100527963 0.4470 +23175 23259 0.4020 +23175 23291 0.4560 +23175 23399 0.8990 +23175 23411 0.6280 +23175 23646 0.6630 +23175 26580 0.7220 +23175 28965 0.5770 +23175 50618 0.4380 +23175 51085 0.4750 +23175 51099 0.4800 +23175 51141 0.4320 +23175 53345 0.4070 +23175 55326 0.7600 +23175 55902 0.5610 +23175 56894 0.8040 +23175 56895 0.8090 +23175 56994 0.9380 +23175 57104 0.8420 +23175 57521 0.4720 +23175 57678 0.6580 +23175 58488 0.4660 +23175 60481 0.4800 +23175 63924 0.4280 +23175 64900 0.9800 +23175 79071 0.5090 +23175 80168 0.7750 +23175 80339 0.8380 +23175 80821 0.4160 +23175 84513 0.9440 +23175 84649 0.8880 +23175 84803 0.6450 +23175 85465 0.9220 +23175 116255 0.8340 +23175 119548 0.6690 +23175 122618 0.6640 +23175 126129 0.4510 +23175 128486 0.4320 +23175 129642 0.7730 +23175 133522 0.4340 +23175 137964 0.6560 +23175 150763 0.4350 +23175 154141 0.6540 +23175 158833 0.4760 +23175 196051 0.9470 +23175 253260 0.4030 +23175 253558 0.7360 +23175 255919 0.7020 +23175 346606 0.7340 +23176 23580 0.8950 +23176 30837 0.5710 +23176 54443 0.6700 +23176 54504 0.5510 +23176 55055 0.5420 +23176 55752 0.9530 +23176 55964 0.9530 +23176 56155 0.4330 +23176 57209 0.4280 +23176 59269 0.4170 +23176 80755 0.4700 +23176 84221 0.4570 +23176 90120 0.5570 +23176 116983 0.6270 +23176 122809 0.5870 +23176 124404 0.9350 +23176 148223 0.4020 +23176 148811 0.4090 +23176 151011 0.9630 +23176 200634 0.4550 +23176 346288 0.8850 +23176 100885850 0.4670 +23177 23291 0.4020 +23177 29094 0.4180 +23177 54808 0.4260 +23177 54875 0.4350 +23177 55755 0.4710 +23177 201255 0.4190 +23177 254050 0.4470 +23177 266655 0.4370 +23178 26523 0.5300 +23178 27161 0.6190 +23178 54470 0.4110 +23178 56996 0.4880 +23178 80223 0.4600 +23178 130916 0.4120 +23178 197335 0.4140 +23178 202333 0.4370 +23178 388701 0.4570 +23178 414157 0.4500 +23179 57139 0.4550 +23179 80205 0.4040 +23179 85441 0.4220 +23180 92106 0.4510 +23181 23383 0.4610 +23181 23521 0.4120 +23181 26589 0.4680 +23181 51069 0.4640 +23181 51084 0.5230 +23181 51473 0.4410 +23181 53371 0.5270 +23181 54059 0.6690 +23181 54431 0.4810 +23181 54988 0.4430 +23181 55268 0.4730 +23181 55421 0.4430 +23181 55862 0.4410 +23181 55902 0.4430 +23181 55929 0.6500 +23181 57129 0.4680 +23181 57649 0.5070 +23181 63875 0.4680 +23181 64072 0.4570 +23181 65985 0.4850 +23181 79611 0.4430 +23181 79651 0.5920 +23181 79728 0.6520 +23181 79888 0.5330 +23181 79932 0.6290 +23181 80196 0.4150 +23181 80724 0.4420 +23181 84263 0.8040 +23181 84532 0.4430 +23181 84545 0.4720 +23181 84851 0.4890 +23181 116285 0.4430 +23181 123876 0.4500 +23181 132949 0.7280 +23181 161582 0.4950 +23181 219927 0.4680 +23181 256356 0.4150 +23181 285440 0.4200 +23181 341392 0.4430 +23181 348158 0.4430 +23181 388591 0.4260 +23181 389434 0.4660 +23181 440712 0.4060 +23184 26168 0.6510 +23184 29843 0.7440 +23184 50964 0.5010 +23184 51360 0.4110 +23184 55151 0.5310 +23184 55603 0.4790 +23184 59274 0.6310 +23184 60681 0.4710 +23184 64175 0.4340 +23184 79879 0.4980 +23184 84448 0.4220 +23184 387733 0.4180 +23185 23367 0.5760 +23185 23609 0.4060 +23185 25873 0.9020 +23185 26135 0.5190 +23185 26986 0.9840 +23185 51574 0.7970 +23185 54542 0.4590 +23185 54882 0.4640 +23185 55132 0.6160 +23185 55323 0.7410 +23185 57532 0.7640 +23185 64784 0.4600 +23185 85364 0.4370 +23185 91734 0.4150 +23185 113251 0.5800 +23185 170506 0.4690 +23185 400961 0.4220 +23186 23199 0.9060 +23186 23309 0.7920 +23186 23381 0.6010 +23186 23411 0.7760 +23186 23466 0.5160 +23186 23476 0.4990 +23186 23492 0.5640 +23186 23512 0.8920 +23186 23613 0.4050 +23186 25855 0.5900 +23186 25942 0.9990 +23186 27030 0.5460 +23186 51008 0.5430 +23186 51274 0.6610 +23186 51317 0.9990 +23186 51460 0.8690 +23186 51564 0.6610 +23186 51742 0.5800 +23186 53615 0.6090 +23186 54556 0.4230 +23186 54815 0.6970 +23186 55023 0.4360 +23186 55215 0.5410 +23186 55553 0.4510 +23186 55715 0.4680 +23186 55758 0.7960 +23186 55814 0.5420 +23186 55827 0.4160 +23186 55869 0.7490 +23186 57167 0.5450 +23186 57332 0.5930 +23186 57459 0.7340 +23186 57504 0.6730 +23186 58190 0.5040 +23186 63976 0.4900 +23186 64421 0.9000 +23186 64426 0.6880 +23186 79149 0.4420 +23186 79685 0.5830 +23186 79728 0.5400 +23186 79755 0.6630 +23186 79813 0.8000 +23186 79830 0.6080 +23186 79840 0.9000 +23186 79885 0.5310 +23186 79991 0.9940 +23186 80012 0.5040 +23186 80306 0.9940 +23186 80854 0.4060 +23186 83933 0.4840 +23186 84164 0.5420 +23186 84232 0.4990 +23186 84458 0.5600 +23186 84733 0.6850 +23186 85235 0.4600 +23186 85236 0.4980 +23186 91419 0.9000 +23186 92815 0.4600 +23186 112885 0.6260 +23186 112939 0.5000 +23186 125150 0.9000 +23186 126074 0.9000 +23186 128312 0.4910 +23186 157570 0.5470 +23186 161882 0.4270 +23186 221613 0.4600 +23186 221656 0.9400 +23186 255626 0.4920 +23186 286257 0.9010 +23186 317772 0.4740 +23186 440093 0.8730 +23186 440686 0.8730 +23186 440689 0.4990 +23186 653604 0.9210 +23186 100532731 0.5250 +23186 105375355 0.5400 +23187 51750 0.7670 +23187 84866 0.4550 +23187 148741 0.5080 +23187 389073 0.4330 +23189 23329 0.4070 +23189 23431 0.4290 +23189 25959 0.4910 +23189 27252 0.4140 +23189 50636 0.4640 +23189 51091 0.7700 +23189 51523 0.7840 +23189 54518 0.5950 +23189 55605 0.9950 +23189 55871 0.4150 +23189 57414 0.4910 +23189 57522 0.4060 +23189 58524 0.5140 +23189 64423 0.4350 +23189 79956 0.4110 +23189 81704 0.9350 +23189 83478 0.4110 +23189 83660 0.9770 +23189 90102 0.8940 +23189 115426 0.4550 +23189 148362 0.4180 +23189 163782 0.4920 +23190 23197 0.8540 +23190 23230 0.5360 +23190 23518 0.5250 +23190 26043 0.6260 +23190 29978 0.4510 +23190 29979 0.8280 +23190 51009 0.6040 +23190 51035 0.9530 +23190 51433 0.4700 +23190 53335 0.7250 +23190 54832 0.5580 +23190 54878 0.4430 +23190 55379 0.6210 +23190 55666 0.5020 +23190 55768 0.4480 +23190 55968 0.9560 +23190 79058 0.5020 +23190 79139 0.5440 +23190 80124 0.4160 +23190 80194 0.6010 +23190 80700 0.9990 +23190 84447 0.5100 +23190 91544 0.5250 +23190 118424 0.4290 +23190 127733 0.5770 +23190 133482 0.4470 +23190 137886 0.4780 +23190 165324 0.9520 +23190 258010 0.9320 +23191 23236 0.4030 +23191 23380 0.4560 +23191 23580 0.4310 +23191 23624 0.6950 +23191 25894 0.4160 +23191 25983 0.5190 +23191 26030 0.4250 +23191 26050 0.4010 +23191 26747 0.8990 +23191 26999 0.9750 +23191 27161 0.7700 +23191 27185 0.6110 +23191 28964 0.5730 +23191 29119 0.5120 +23191 51225 0.9910 +23191 51347 0.4090 +23191 51517 0.5860 +23191 51741 0.5100 +23191 54413 0.4730 +23191 54551 0.5070 +23191 54869 0.4670 +23191 54874 0.5710 +23191 55004 0.4050 +23191 55421 0.7200 +23191 55777 0.4330 +23191 55789 0.4190 +23191 55845 0.9990 +23191 55914 0.4390 +23191 55971 0.4110 +23191 56001 0.4120 +23191 57194 0.5470 +23191 57532 0.8340 +23191 57575 0.9390 +23191 57624 0.4230 +23191 57648 0.4550 +23191 58497 0.4470 +23191 63916 0.6260 +23191 80018 0.4750 +23191 81614 0.9930 +23191 81624 0.4970 +23191 81839 0.4190 +23191 81873 0.7080 +23191 83640 0.7200 +23191 84062 0.5030 +23191 85358 0.7090 +23191 94134 0.5440 +23191 114336 0.6080 +23191 114791 0.9890 +23191 118472 0.6840 +23191 120114 0.4310 +23191 120892 0.5310 +23191 123606 0.9790 +23191 143098 0.4150 +23191 147179 0.5160 +23191 155185 0.6030 +23191 221692 0.4550 +23191 222950 0.4060 +23191 253314 0.9180 +23191 317649 0.7520 +23191 340527 0.7200 +23191 353267 0.5400 +23191 390714 0.4990 +23191 392517 0.5400 +23191 644150 0.5100 +23191 728343 0.4120 +23192 23710 0.9990 +23192 24148 0.5350 +23192 25851 0.4540 +23192 25989 0.7220 +23192 26100 0.7700 +23192 27338 0.4040 +23192 30849 0.7200 +23192 51434 0.6490 +23192 51765 0.4210 +23192 53349 0.5040 +23192 53917 0.4320 +23192 55014 0.5760 +23192 55054 0.8500 +23192 55062 0.7600 +23192 55102 0.6260 +23192 55201 0.7340 +23192 55332 0.4650 +23192 55626 0.7040 +23192 55968 0.4620 +23192 56270 0.4240 +23192 57521 0.5090 +23192 57724 0.4820 +23192 57794 0.6250 +23192 60673 0.8290 +23192 64422 0.9790 +23192 65018 0.4420 +23192 79065 0.7760 +23192 81631 0.9990 +23192 81671 0.5010 +23192 83734 0.8980 +23192 84141 0.4740 +23192 84557 0.9930 +23192 84938 0.4990 +23192 84971 0.5060 +23192 89849 0.5940 +23192 92565 0.5660 +23192 115201 0.4110 +23192 128866 0.4080 +23192 140901 0.5780 +23192 149420 0.5690 +23192 285973 0.6690 +23192 338382 0.4320 +23192 345611 0.6440 +23192 388646 0.7320 +23192 440738 0.9900 +23192 441925 0.5310 +23192 643246 0.7110 +23193 26275 0.5340 +23193 26279 0.6190 +23193 26589 0.5170 +23193 27044 0.7190 +23193 28998 0.5450 +23193 29093 0.5110 +23193 29880 0.4410 +23193 29927 0.5510 +23193 29929 0.5490 +23193 51021 0.5150 +23193 51069 0.4440 +23193 51073 0.5540 +23193 51116 0.4790 +23193 51263 0.4360 +23193 51264 0.5130 +23193 51726 0.8500 +23193 54431 0.5510 +23193 54872 0.5790 +23193 54948 0.5300 +23193 55168 0.4170 +23193 55173 0.5150 +23193 55741 0.5310 +23193 55757 0.7120 +23193 56052 0.4260 +23193 56886 0.8000 +23193 57003 0.4160 +23193 57129 0.5110 +23193 60488 0.5150 +23193 63875 0.5110 +23193 63931 0.5140 +23193 64432 0.5200 +23193 64960 0.5190 +23193 64963 0.5140 +23193 64965 0.5110 +23193 64968 0.5140 +23193 64969 0.5200 +23193 64975 0.5110 +23193 64976 0.5130 +23193 64978 0.4310 +23193 64979 0.5070 +23193 64981 0.5110 +23193 64983 0.5110 +23193 65003 0.5410 +23193 65080 0.5220 +23193 79053 0.8170 +23193 79087 0.4410 +23193 80020 0.4780 +23193 80055 0.4010 +23193 80222 0.4350 +23193 80267 0.6960 +23193 84061 0.5700 +23193 84545 0.5130 +23193 84572 0.8910 +23193 85014 0.4490 +23193 90313 0.4560 +23193 90624 0.4020 +23193 116541 0.4300 +23193 124995 0.5290 +23193 131566 0.4570 +23193 157310 0.4430 +23193 199221 0.5300 +23193 201595 0.5200 +23193 284695 0.4750 +23193 374354 0.5130 +23194 23198 0.4170 +23194 26232 0.4990 +23194 26260 0.4900 +23194 26270 0.4190 +23194 55294 0.5130 +23194 55336 0.4350 +23194 55832 0.5550 +23194 60437 0.4630 +23194 79633 0.6050 +23194 80028 0.7720 +23194 80204 0.4020 +23194 113263 0.4510 +23194 122706 0.4010 +23194 123879 0.4990 +23194 143471 0.4660 +23194 157574 0.5230 +23194 200933 0.4820 +23194 254170 0.4460 +23194 283807 0.4600 +23194 441061 0.4790 +23194 554251 0.4040 +23195 23212 0.7340 +23195 23223 0.4990 +23195 23246 0.8410 +23195 23363 0.4300 +23195 23476 0.5630 +23195 23481 0.8040 +23195 23511 0.5190 +23195 23517 0.6000 +23195 23560 0.8860 +23195 24140 0.5040 +23195 25885 0.4860 +23195 26155 0.6820 +23195 26156 0.4030 +23195 26354 0.6880 +23195 26580 0.4140 +23195 27043 0.7120 +23195 27340 0.8020 +23195 29889 0.9620 +23195 29997 0.6200 +23195 51018 0.7230 +23195 51042 0.8240 +23195 51068 0.7640 +23195 51154 0.9200 +23195 51187 0.8370 +23195 51388 0.7610 +23195 54475 0.9820 +23195 54552 0.6710 +23195 54663 0.8950 +23195 54881 0.9190 +23195 54920 0.4370 +23195 55003 0.4410 +23195 55027 0.5080 +23195 55127 0.5790 +23195 55153 0.8660 +23195 55226 0.4420 +23195 55341 0.7380 +23195 55352 0.4060 +23195 55651 0.4220 +23195 55759 0.9940 +23195 56342 0.6740 +23195 57418 0.9330 +23195 57510 0.4690 +23195 65083 0.5360 +23195 79707 0.8000 +23195 79929 0.4420 +23195 79968 0.5330 +23195 80135 0.6080 +23195 81887 0.6530 +23195 83732 0.5510 +23195 84154 0.8070 +23195 84365 0.6930 +23195 84549 0.6280 +23195 84916 0.4960 +23195 90441 0.6200 +23195 94104 0.4630 +23195 117246 0.8170 +23195 118881 0.4280 +23195 120892 0.5300 +23195 124454 0.4460 +23195 135293 0.5110 +23195 147798 0.4140 +23195 348995 0.4110 +23195 619279 0.4480 +23195 100526737 0.4230 +23196 23318 0.4700 +23196 23367 0.4100 +23196 23369 0.4520 +23196 23708 0.4180 +23196 26986 0.4080 +23196 27316 0.4710 +23196 53371 0.4990 +23196 54542 0.6070 +23196 54954 0.4230 +23196 55023 0.4330 +23196 56341 0.4910 +23196 56829 0.4480 +23196 57488 0.4480 +23196 57523 0.4120 +23196 84217 0.4180 +23196 85364 0.5090 +23196 129831 0.4230 +23196 149041 0.4390 +23196 157922 0.4940 +23197 23304 0.5100 +23197 23344 0.6260 +23197 23352 0.5090 +23197 23760 0.4690 +23197 25840 0.5230 +23197 26043 0.9990 +23197 26270 0.4760 +23197 27248 0.8720 +23197 29927 0.5000 +23197 29978 0.6630 +23197 29979 0.4420 +23197 51009 0.9960 +23197 51035 0.9990 +23197 51099 0.4840 +23197 51141 0.4520 +23197 51170 0.4120 +23197 51272 0.4940 +23197 51366 0.5290 +23197 51439 0.4470 +23197 51465 0.9480 +23197 51491 0.4070 +23197 51608 0.5770 +23197 54431 0.6430 +23197 54726 0.6120 +23197 54732 0.6310 +23197 54941 0.7310 +23197 54978 0.6770 +23197 55013 0.4630 +23197 55139 0.4200 +23197 55432 0.6870 +23197 55658 0.6210 +23197 55666 0.9990 +23197 55669 0.5810 +23197 55829 0.9070 +23197 55832 0.6260 +23197 55968 0.5510 +23197 56893 0.6240 +23197 57104 0.8660 +23197 57146 0.4330 +23197 57574 0.4090 +23197 58477 0.4750 +23197 63933 0.4560 +23197 79058 0.5480 +23197 79102 0.4870 +23197 79139 0.9300 +23197 79188 0.6910 +23197 80124 0.8650 +23197 80232 0.5440 +23197 80233 0.5760 +23197 80325 0.4380 +23197 80700 0.8160 +23197 80758 0.4070 +23197 81502 0.4370 +23197 81844 0.8130 +23197 83590 0.4270 +23197 84129 0.4190 +23197 84447 0.9620 +23197 84896 0.6670 +23197 91010 0.4070 +23197 91319 0.7190 +23197 91373 0.4140 +23197 91445 0.4240 +23197 91544 0.5020 +23197 93380 0.4260 +23197 118424 0.4440 +23197 127733 0.5320 +23197 128239 0.4100 +23197 130617 0.4850 +23197 137886 0.5590 +23197 137964 0.4950 +23197 153830 0.5380 +23197 157567 0.4340 +23197 165324 0.5600 +23197 192286 0.5200 +23197 196410 0.4180 +23197 197131 0.7390 +23197 219743 0.4270 +23197 337867 0.9990 +23198 23392 0.8250 +23198 25852 0.4010 +23198 26043 0.5650 +23198 26271 0.4050 +23198 27244 0.5070 +23198 27248 0.4620 +23198 29979 0.4870 +23198 51343 0.4180 +23198 51371 0.7550 +23198 51377 0.8870 +23198 51667 0.5320 +23198 51686 0.4720 +23198 54583 0.4050 +23198 54726 0.5770 +23198 55666 0.5830 +23198 56984 0.5700 +23198 59269 0.4170 +23198 59349 0.4070 +23198 64326 0.5080 +23198 64750 0.4270 +23198 80204 0.4460 +23198 80227 0.5350 +23198 80351 0.4600 +23198 83737 0.4270 +23198 84262 0.4510 +23198 84301 0.4100 +23198 119559 0.4320 +23198 122706 0.7810 +23198 123228 0.5260 +23198 126374 0.4050 +23198 134510 0.4750 +23198 143471 0.9630 +23198 161742 0.4010 +23198 200734 0.4030 +23198 317719 0.4010 +23198 389362 0.5470 +23198 414301 0.4160 +23198 494143 0.4810 +23198 100652824 0.8170 +23199 29072 0.4630 +23199 51317 0.6560 +23199 51460 0.4560 +23199 55023 0.4710 +23199 55715 0.4590 +23199 55758 0.8710 +23199 57658 0.4300 +23199 58508 0.4260 +23200 23250 0.7030 +23200 51761 0.6320 +23200 54165 0.5130 +23200 54205 0.4410 +23200 55754 0.9680 +23200 57130 0.4220 +23200 57194 0.6000 +23200 57198 0.6050 +23200 57205 0.6100 +23200 79895 0.6080 +23200 84002 0.4690 +23200 131118 0.5790 +23200 148229 0.6200 +23200 161291 0.8820 +23200 253769 0.4110 +23200 285381 0.4350 +23200 286410 0.6040 +23200 343930 0.4430 +23201 23558 0.4260 +23201 54715 0.4350 +23201 78990 0.4200 +23201 81488 0.4190 +23201 84959 0.5280 +23201 729442 0.4030 +23203 23558 0.6500 +23203 23645 0.5740 +23203 25813 0.7160 +23203 25970 0.4060 +23203 25980 0.4890 +23203 26155 0.7820 +23203 26515 0.4360 +23203 26589 0.4060 +23203 27089 0.9170 +23203 27235 0.4610 +23203 27350 0.5790 +23203 29090 0.7330 +23203 29796 0.9120 +23203 29928 0.4600 +23203 29957 0.4340 +23203 30968 0.4380 +23203 51025 0.7240 +23203 51073 0.4370 +23203 51079 0.5690 +23203 51116 0.6160 +23203 51314 0.4760 +23203 51497 0.4300 +23203 54205 0.4600 +23203 54431 0.5340 +23203 55178 0.5740 +23203 55245 0.5120 +23203 55486 0.5430 +23203 55572 0.6310 +23203 55684 0.4490 +23203 55967 0.9050 +23203 56993 0.5310 +23203 57017 0.4220 +23203 57379 0.5780 +23203 57407 0.6010 +23203 57552 0.4860 +23203 57582 0.4100 +23203 58509 0.4070 +23203 60489 0.5790 +23203 63929 0.6610 +23203 64111 0.4330 +23203 64170 0.4570 +23203 64960 0.4460 +23203 64978 0.4080 +23203 65985 0.5670 +23203 78986 0.4640 +23203 79002 0.6370 +23203 79568 0.5220 +23203 79598 0.4420 +23203 79728 0.7090 +23203 80195 0.5830 +23203 80221 0.5090 +23203 80273 0.5810 +23203 81341 0.5730 +23203 83752 0.4850 +23203 83943 0.5830 +23203 84701 0.6140 +23203 84886 0.7610 +23203 84939 0.6000 +23203 87178 0.7130 +23203 91300 0.5730 +23203 91419 0.4310 +23203 91689 0.5130 +23203 92609 0.7100 +23203 112812 0.4570 +23203 114789 0.4200 +23203 115209 0.4120 +23203 125965 0.6320 +23203 126767 0.4850 +23203 131118 0.6960 +23203 131474 0.4070 +23203 134266 0.5480 +23203 139221 0.5940 +23203 140564 0.5780 +23203 150274 0.4080 +23203 150365 0.5990 +23203 157922 0.4210 +23203 158067 0.4380 +23203 164668 0.5780 +23203 164684 0.6430 +23203 196074 0.5610 +23203 196294 0.4880 +23203 197257 0.4170 +23203 200315 0.5780 +23203 200316 0.5790 +23203 254042 0.4140 +23203 254552 0.8160 +23203 283459 0.7010 +23203 285193 0.4480 +23203 337959 0.4200 +23203 343066 0.4850 +23203 344752 0.4850 +23203 374291 0.6480 +23203 388753 0.6350 +23203 440567 0.6520 +23203 493856 0.4130 +23203 728317 0.5940 +23203 100287932 0.6660 +23203 100532726 0.4250 +23204 23252 0.5190 +23204 23259 0.4430 +23204 23344 0.4490 +23204 23431 0.4050 +23204 23480 0.5920 +23204 23503 0.4250 +23204 23517 0.4250 +23204 23521 0.9130 +23204 23640 0.5980 +23204 25782 0.5430 +23204 25873 0.9390 +23204 25879 0.6490 +23204 25885 0.6700 +23204 25923 0.8400 +23204 25983 0.6500 +23204 26092 0.4750 +23204 26135 0.6790 +23204 26156 0.5400 +23204 26271 0.4790 +23204 26275 0.5030 +23204 26574 0.7680 +23204 26580 0.5010 +23204 26589 0.5200 +23204 27292 0.4690 +23204 27335 0.5030 +23204 27340 0.6370 +23204 27341 0.6310 +23204 28998 0.7390 +23204 29088 0.5070 +23204 29093 0.7370 +23204 29102 0.4050 +23204 29119 0.4260 +23204 29907 0.4230 +23204 29927 0.8680 +23204 29978 0.4020 +23204 29979 0.4170 +23204 30836 0.6520 +23204 50808 0.4490 +23204 51009 0.4270 +23204 51021 0.8290 +23204 51023 0.4970 +23204 51062 0.7520 +23204 51065 0.9030 +23204 51069 0.6900 +23204 51073 0.7310 +23204 51077 0.7530 +23204 51081 0.6790 +23204 51096 0.6450 +23204 51116 0.6820 +23204 51118 0.6210 +23204 51119 0.4170 +23204 51121 0.8620 +23204 51124 0.4700 +23204 51149 0.6780 +23204 51154 0.7640 +23204 51187 0.4090 +23204 51264 0.8250 +23204 51308 0.6140 +23204 51319 0.6380 +23204 51324 0.4970 +23204 51435 0.4590 +23204 51602 0.7980 +23204 51727 0.4370 +23204 51763 0.6720 +23204 54463 0.5090 +23204 54464 0.4090 +23204 54948 0.7420 +23204 55052 0.8260 +23204 55127 0.7670 +23204 55168 0.4980 +23204 55173 0.7400 +23204 55176 0.8480 +23204 55226 0.6480 +23204 55272 0.8260 +23204 55316 0.7030 +23204 55591 0.5230 +23204 55651 0.5640 +23204 55703 0.6060 +23204 55720 0.4180 +23204 55781 0.5890 +23204 55813 0.6580 +23204 55854 0.4660 +23204 56648 0.6720 +23204 56902 0.4730 +23204 56965 0.5400 +23204 57050 0.6540 +23204 57085 0.4300 +23204 57129 0.4970 +23204 57142 0.8180 +23204 57488 0.4260 +23204 57704 0.4030 +23204 60488 0.5420 +23204 60558 0.5230 +23204 60678 0.4360 +23204 63875 0.8420 +23204 63931 0.7450 +23204 64146 0.4900 +23204 64225 0.8040 +23204 64374 0.5990 +23204 64960 0.7310 +23204 64963 0.7430 +23204 64965 0.8390 +23204 64968 0.8290 +23204 64969 0.7690 +23204 64975 0.5270 +23204 64976 0.4350 +23204 64979 0.8380 +23204 64981 0.5170 +23204 64983 0.8290 +23204 65003 0.6990 +23204 65005 0.8370 +23204 65008 0.6810 +23204 65055 0.6110 +23204 65080 0.5030 +23204 65083 0.7760 +23204 65121 0.4930 +23204 65122 0.4930 +23204 79050 0.7550 +23204 79152 0.4170 +23204 79571 0.4700 +23204 79590 0.6900 +23204 79631 0.6160 +23204 79668 0.5400 +23204 79954 0.6380 +23204 80055 0.4990 +23204 80221 0.4150 +23204 80346 0.4150 +23204 80821 0.4220 +23204 84100 0.6220 +23204 84128 0.6210 +23204 84135 0.6300 +23204 84172 0.6010 +23204 84545 0.5580 +23204 84851 0.4370 +23204 84916 0.6400 +23204 84946 0.6390 +23204 85476 0.6200 +23204 91408 0.4220 +23204 91574 0.6080 +23204 92196 0.5180 +23204 92399 0.6960 +23204 92840 0.4490 +23204 92856 0.6210 +23204 114987 0.6470 +23204 116068 0.4240 +23204 116832 0.8390 +23204 118813 0.4830 +23204 124454 0.5740 +23204 126402 0.6750 +23204 137492 0.4140 +23204 140032 0.8130 +23204 140801 0.8210 +23204 143244 0.6720 +23204 200916 0.8140 +23204 219927 0.8310 +23204 254268 0.6420 +23204 255308 0.4580 +23204 285855 0.8440 +23204 340075 0.4260 +23204 342538 0.4240 +23204 343068 0.4930 +23204 343070 0.4930 +23204 345630 0.5780 +23204 347487 0.6640 +23204 374659 0.4980 +23204 387129 0.6590 +23204 390999 0.4930 +23204 391002 0.4930 +23204 400735 0.4930 +23204 400736 0.4930 +23204 440560 0.4930 +23204 440561 0.4930 +23204 441873 0.4930 +23204 645051 0.5220 +23204 645073 0.5220 +23204 645359 0.4930 +23204 653619 0.4930 +23204 728689 0.5170 +23204 729396 0.5220 +23204 729422 0.5220 +23204 729428 0.5220 +23204 729431 0.5220 +23204 729442 0.5220 +23204 729447 0.5220 +23204 729528 0.4930 +23204 100008586 0.5220 +23204 100132399 0.5220 +23204 100287482 0.5950 +23204 100505478 0.6150 +23204 100526842 0.8480 +23204 100529097 0.7970 +23204 100529239 0.7880 +23204 101929983 0.4930 +23204 102724473 0.5220 +23205 23305 0.7580 +23205 28965 0.4240 +23205 28976 0.4190 +23205 51703 0.7400 +23205 57104 0.6600 +23205 79966 0.4370 +23205 80339 0.6350 +23205 80347 0.6720 +23205 80724 0.5260 +23205 81551 0.4860 +23205 81616 0.6250 +23205 84129 0.4520 +23205 84263 0.5110 +23205 119548 0.6100 +23205 126129 0.7260 +23205 132949 0.6290 +23205 376497 0.4920 +23205 109703458 0.4770 +23207 23339 0.4530 +23207 23396 0.5320 +23207 25989 0.4090 +23207 26499 0.6160 +23207 51209 0.9040 +23207 54776 0.5540 +23207 57617 0.4220 +23207 64837 0.7810 +23207 79443 0.4910 +23207 83547 0.5230 +23207 89953 0.7770 +23207 127829 0.6980 +23207 132949 0.7500 +23207 140901 0.4070 +23207 147700 0.7490 +23207 221079 0.9540 +23207 284723 0.4340 +23207 388595 0.4100 +23208 23254 0.4190 +23208 23400 0.6590 +23208 26119 0.5050 +23208 27347 0.5840 +23208 29058 0.4100 +23208 29978 0.5500 +23208 55450 0.4240 +23208 56922 0.6290 +23208 65018 0.5710 +23208 81618 0.4120 +23208 84286 0.4870 +23208 84660 0.7200 +23208 85439 0.6210 +23208 90019 0.5900 +23208 112755 0.6900 +23208 114805 0.4200 +23208 115827 0.4480 +23208 120892 0.6640 +23208 127833 0.7290 +23208 130013 0.6620 +23208 135138 0.4500 +23208 143425 0.5900 +23208 152330 0.4040 +23208 196500 0.4920 +23208 254170 0.4070 +23209 26586 0.4070 +23209 65258 0.4280 +23209 140465 0.8300 +23209 220296 0.4910 +23210 23476 0.9990 +23210 23569 0.4080 +23210 29998 0.5700 +23210 51319 0.5940 +23210 51454 0.5520 +23210 51538 0.5130 +23210 51631 0.7710 +23210 51747 0.4900 +23210 51780 0.4650 +23210 54904 0.7420 +23210 55082 0.4700 +23210 55147 0.4640 +23210 55660 0.6350 +23210 55692 0.6710 +23210 55693 0.4370 +23210 55818 0.5710 +23210 57396 0.5240 +23210 57661 0.5380 +23210 58517 0.4390 +23210 63916 0.4390 +23210 65117 0.5110 +23210 65980 0.4080 +23210 79663 0.5040 +23210 79697 0.5640 +23210 79767 0.4490 +23210 79831 0.6890 +23210 79886 0.4430 +23210 79915 0.4200 +23210 80218 0.5940 +23210 80853 0.4150 +23210 81669 0.4510 +23210 84081 0.4700 +23210 84864 0.5800 +23210 84950 0.6410 +23210 85313 0.4850 +23210 91937 0.7080 +23210 124512 0.5060 +23210 129450 0.6420 +23210 140890 0.5100 +23210 157313 0.4410 +23210 390245 0.4940 +23210 440093 0.5690 +23210 440686 0.5680 +23210 653604 0.8880 +23211 23283 0.5180 +23211 23389 0.4690 +23211 23394 0.5830 +23211 25962 0.6550 +23211 29066 0.4100 +23211 29081 0.5950 +23211 29101 0.4850 +23211 29123 0.4490 +23211 29894 0.6910 +23211 51086 0.4180 +23211 51585 0.6050 +23211 51692 0.6370 +23211 53981 0.6210 +23211 54439 0.4400 +23211 54814 0.4820 +23211 54958 0.5790 +23211 54973 0.5330 +23211 55421 0.5540 +23211 55756 0.4190 +23211 56339 0.5190 +23211 56903 0.5040 +23211 56931 0.4140 +23211 57002 0.5040 +23211 57343 0.4280 +23211 57680 0.4550 +23211 57721 0.5400 +23211 64783 0.5110 +23211 64895 0.5070 +23211 80335 0.9510 +23211 81608 0.6670 +23211 114034 0.4010 +23211 124152 0.4230 +23211 124245 0.4840 +23211 145258 0.7820 +23211 221421 0.4200 +23211 100526835 0.4320 +23212 23223 0.7210 +23212 23246 0.9620 +23212 23268 0.4220 +23212 23378 0.7310 +23212 23476 0.5180 +23212 23481 0.9810 +23212 23517 0.7720 +23212 23521 0.5790 +23212 23551 0.4060 +23212 23560 0.9900 +23212 23632 0.4750 +23212 24148 0.4380 +23212 25873 0.5960 +23212 25879 0.7900 +23212 25885 0.6350 +23212 25983 0.8660 +23212 26155 0.9770 +23212 26156 0.9920 +23212 26354 0.9500 +23212 26574 0.4580 +23212 26995 0.4270 +23212 27037 0.4110 +23212 27292 0.9280 +23212 27339 0.4160 +23212 27340 0.4410 +23212 27341 0.8110 +23212 28987 0.8580 +23212 28998 0.5830 +23212 29777 0.6910 +23212 29889 0.9900 +23212 29901 0.4010 +23212 29997 0.9320 +23212 30834 0.4040 +23212 30836 0.8400 +23212 51010 0.4260 +23212 51013 0.4370 +23212 51018 0.9550 +23212 51042 0.9210 +23212 51068 0.8440 +23212 51073 0.4680 +23212 51077 0.4370 +23212 51082 0.8310 +23212 51096 0.7590 +23212 51106 0.5630 +23212 51115 0.4830 +23212 51118 0.8520 +23212 51121 0.4370 +23212 51154 0.9920 +23212 51187 0.9760 +23212 51202 0.8810 +23212 51236 0.7310 +23212 51319 0.4370 +23212 51388 0.9870 +23212 51490 0.5830 +23212 51491 0.4160 +23212 51504 0.4150 +23212 51575 0.8420 +23212 51602 0.8880 +23212 51605 0.4200 +23212 51728 0.4130 +23212 54433 0.7040 +23212 54475 0.9280 +23212 54517 0.4160 +23212 54552 0.9150 +23212 54555 0.6640 +23212 54557 0.4070 +23212 54606 0.9140 +23212 54663 0.9080 +23212 54853 0.4170 +23212 54865 0.6560 +23212 54881 0.4630 +23212 54888 0.4610 +23212 54984 0.7030 +23212 55003 0.8520 +23212 55027 0.6490 +23212 55127 0.5750 +23212 55131 0.9150 +23212 55140 0.5290 +23212 55153 0.7670 +23212 55170 0.4410 +23212 55226 0.7420 +23212 55272 0.8540 +23212 55299 0.9770 +23212 55319 0.8240 +23212 55341 0.7540 +23212 55505 0.6080 +23212 55646 0.9190 +23212 55651 0.9160 +23212 55703 0.5560 +23212 55718 0.4330 +23212 55720 0.9340 +23212 55759 0.9740 +23212 55760 0.5490 +23212 55781 0.6200 +23212 55794 0.7360 +23212 55813 0.7600 +23212 56341 0.4500 +23212 56342 0.9310 +23212 56647 0.6840 +23212 56902 0.6970 +23212 56934 0.4730 +23212 56937 0.4220 +23212 57050 0.8790 +23212 57062 0.5830 +23212 57109 0.5080 +23212 57418 0.6730 +23212 57647 0.4010 +23212 57696 0.7240 +23212 60487 0.5940 +23212 64118 0.6890 +23212 64216 0.8500 +23212 64318 0.9010 +23212 64359 0.5990 +23212 64425 0.6250 +23212 64434 0.4280 +23212 64794 0.6370 +23212 65003 0.4080 +23212 65083 0.6080 +23212 65095 0.6100 +23212 65265 0.4580 +23212 79009 0.4620 +23212 79039 0.6150 +23212 79050 0.8390 +23212 79080 0.4900 +23212 79159 0.6900 +23212 79571 0.6090 +23212 79590 0.4380 +23212 79631 0.4300 +23212 79954 0.7630 +23212 80135 0.9580 +23212 80324 0.6130 +23212 81627 0.4230 +23212 81887 0.6760 +23212 83732 0.4740 +23212 83743 0.9260 +23212 84128 0.6490 +23212 84135 0.6420 +23212 84154 0.9990 +23212 84172 0.6030 +23212 84273 0.5120 +23212 84294 0.8990 +23212 84319 0.6100 +23212 84321 0.4250 +23212 84365 0.9990 +23212 84549 0.9570 +23212 84916 0.7390 +23212 84946 0.7970 +23212 88745 0.5940 +23212 90121 0.8510 +23212 90441 0.7580 +23212 90826 0.4120 +23212 90957 0.4400 +23212 92140 0.6560 +23212 92170 0.5020 +23212 92856 0.8850 +23212 115708 0.5240 +23212 116832 0.5610 +23212 116966 0.6630 +23212 117246 0.9760 +23212 126789 0.4210 +23212 137872 0.4890 +23212 142940 0.4700 +23212 146212 0.5130 +23212 153443 0.5780 +23212 155368 0.5940 +23212 161424 0.7030 +23212 165545 0.5000 +23212 221078 0.7400 +23212 221830 0.8720 +23212 285855 0.8120 +23212 317781 0.4540 +23212 339230 0.4750 +23212 345630 0.6130 +23212 377677 0.4730 +23212 387129 0.8210 +23212 692312 0.7480 +23212 100505478 0.7780 +23213 25844 0.6490 +23213 25878 0.4960 +23213 26035 0.6140 +23213 51003 0.4530 +23213 51176 0.4550 +23213 56956 0.5010 +23213 64579 0.4080 +23213 79642 0.4100 +23213 81792 0.5630 +23213 81796 0.9250 +23213 84246 0.4360 +23213 84624 0.4440 +23213 90161 0.5700 +23213 115908 0.6070 +23213 266722 0.4790 +23213 285362 0.4380 +23213 340075 0.4340 +23213 347527 0.5630 +23214 23225 0.4870 +23214 23339 0.6480 +23214 23534 0.5540 +23214 23636 0.6290 +23214 26953 0.5210 +23214 30000 0.5780 +23214 51194 0.5720 +23214 54165 0.6020 +23214 54919 0.7030 +23214 55705 0.8360 +23214 55745 0.4270 +23214 57510 0.6880 +23214 57679 0.4780 +23214 64328 0.8230 +23214 64901 0.5400 +23214 79711 0.6330 +23214 80700 0.6220 +23214 84946 0.4200 +23214 160418 0.6230 +23214 221421 0.4220 +23214 339344 0.4320 +23214 345456 0.9530 +23214 375189 0.9550 +23214 728378 0.4480 +23215 23248 0.5700 +23215 25836 0.6740 +23215 26057 0.5990 +23215 26058 0.4110 +23215 26135 0.6590 +23215 26986 0.4320 +23215 29066 0.4120 +23215 29072 0.5530 +23215 51441 0.4080 +23215 51603 0.4500 +23215 51663 0.4650 +23215 54726 0.4320 +23215 54882 0.4530 +23215 54915 0.4820 +23215 55023 0.4740 +23215 55209 0.4240 +23215 55276 0.4200 +23215 55833 0.4740 +23215 57187 0.4600 +23215 57448 0.5920 +23215 58517 0.9990 +23215 149041 0.4070 +23215 403313 0.5060 +23215 404734 0.5910 +23215 646498 0.5070 +23215 100132963 0.4670 +23216 25771 0.4420 +23216 51256 0.4510 +23216 51422 0.9270 +23216 51552 0.9330 +23216 53632 0.9370 +23216 54662 0.5100 +23216 55296 0.4250 +23216 55633 0.4340 +23216 55672 0.5010 +23216 55773 0.4580 +23216 55885 0.4110 +23216 114794 0.4240 +23216 125058 0.4870 +23216 128637 0.4820 +23216 161514 0.5650 +23216 339559 0.6200 +23217 51663 0.4050 +23217 169841 0.4010 +23218 26276 0.6440 +23218 55092 0.4480 +23218 55697 0.4830 +23218 57404 0.4450 +23218 63894 0.7070 +23218 84343 0.4080 +23218 84930 0.4250 +23218 85440 0.4540 +23218 151903 0.5270 +23218 201294 0.5900 +23218 203068 0.4420 +23219 26133 0.5030 +23219 26261 0.4450 +23219 26268 0.4780 +23219 26272 0.4880 +23219 54455 0.4540 +23219 54813 0.6790 +23219 55030 0.5970 +23219 55157 0.4830 +23219 55364 0.5030 +23219 55571 0.4210 +23219 55831 0.4540 +23219 55892 0.4970 +23219 57458 0.4500 +23219 64795 0.4150 +23219 79004 0.4320 +23219 80204 0.4830 +23219 80232 0.5090 +23219 80864 0.4100 +23219 81573 0.4560 +23219 83932 0.5090 +23219 84450 0.4340 +23219 84945 0.4500 +23219 115992 0.5840 +23219 139231 0.5350 +23219 144699 0.4890 +23219 200933 0.5140 +23219 286343 0.4220 +23220 23385 0.4400 +23220 29110 0.8540 +23220 51107 0.4770 +23220 55851 0.4920 +23220 79589 0.4210 +23220 81030 0.5180 +23220 83464 0.4610 +23220 83737 0.5890 +23220 84640 0.6920 +23220 92737 0.5520 +23220 113878 0.5650 +23220 147945 0.9970 +23220 151636 0.4510 +23220 340061 0.5820 +23221 27316 0.5900 +23221 29766 0.5640 +23221 50618 0.5570 +23221 55023 0.5900 +23221 55958 0.9170 +23221 89941 0.4310 +23221 90135 0.4460 +23221 90293 0.9050 +23221 115704 0.4630 +23221 124540 0.7050 +23223 23246 0.9010 +23223 23363 0.5700 +23223 23378 0.7120 +23223 23481 0.9350 +23223 23517 0.8850 +23223 23560 0.9810 +23223 24140 0.4300 +23223 25879 0.7620 +23223 25885 0.9380 +23223 25983 0.8070 +23223 26155 0.9820 +23223 26156 0.9700 +23223 26354 0.8820 +23223 26574 0.7070 +23223 26953 0.5020 +23223 26995 0.5280 +23223 27037 0.5420 +23223 27042 0.4560 +23223 27292 0.9390 +23223 27340 0.9640 +23223 27341 0.6870 +23223 28987 0.9750 +23223 29889 0.9170 +23223 29997 0.7810 +23223 51013 0.4930 +23223 51018 0.7450 +23223 51021 0.4780 +23223 51042 0.4680 +23223 51068 0.8920 +23223 51077 0.4830 +23223 51082 0.7210 +23223 51096 0.8990 +23223 51118 0.5360 +23223 51154 0.9040 +23223 51187 0.8280 +23223 51202 0.5160 +23223 51236 0.5100 +23223 51388 0.7320 +23223 51490 0.4230 +23223 51504 0.8550 +23223 51575 0.8920 +23223 51602 0.9920 +23223 54433 0.7860 +23223 54475 0.8790 +23223 54517 0.5760 +23223 54552 0.8700 +23223 54555 0.6130 +23223 54606 0.7420 +23223 54663 0.7100 +23223 54865 0.5160 +23223 54881 0.4680 +23223 54888 0.6620 +23223 54957 0.5100 +23223 55003 0.4990 +23223 55027 0.5190 +23223 55127 0.9510 +23223 55131 0.9770 +23223 55132 0.4540 +23223 55153 0.9370 +23223 55170 0.5290 +23223 55226 0.9840 +23223 55299 0.8710 +23223 55319 0.5600 +23223 55341 0.8880 +23223 55621 0.4350 +23223 55622 0.6970 +23223 55646 0.5660 +23223 55651 0.7350 +23223 55695 0.4100 +23223 55703 0.8420 +23223 55720 0.9990 +23223 55759 0.6520 +23223 55760 0.7130 +23223 55781 0.9920 +23223 55794 0.4440 +23223 55813 0.7420 +23223 56341 0.5210 +23223 56342 0.5700 +23223 56474 0.4460 +23223 56902 0.9730 +23223 56919 0.5850 +23223 56931 0.4220 +23223 56937 0.5210 +23223 57050 0.7940 +23223 57062 0.7250 +23223 57109 0.4120 +23223 57418 0.7250 +23223 57647 0.5200 +23223 57696 0.4790 +23223 60487 0.5580 +23223 60528 0.6240 +23223 60625 0.4030 +23223 63899 0.4200 +23223 64118 0.4310 +23223 64216 0.4590 +23223 64318 0.9350 +23223 64425 0.8530 +23223 64434 0.6830 +23223 64794 0.6720 +23223 65083 0.8630 +23223 65095 0.6140 +23223 79039 0.8620 +23223 79050 0.9970 +23223 79571 0.4600 +23223 79711 0.7820 +23223 79742 0.4750 +23223 79954 0.9230 +23223 79968 0.5400 +23223 79979 0.5350 +23223 81627 0.4540 +23223 83732 0.7070 +23223 83743 0.9190 +23223 84128 0.8710 +23223 84135 0.7240 +23223 84154 0.9040 +23223 84172 0.9330 +23223 84273 0.4380 +23223 84294 0.4930 +23223 84319 0.4450 +23223 84365 0.9510 +23223 84549 0.5660 +23223 84916 0.8910 +23223 84946 0.9830 +23223 85395 0.9770 +23223 90121 0.7150 +23223 90441 0.4120 +23223 90826 0.4100 +23223 90957 0.4670 +23223 91875 0.4060 +23223 92170 0.4080 +23223 92856 0.7480 +23223 115708 0.5960 +23223 115752 0.4170 +23223 116966 0.7440 +23223 117246 0.7900 +23223 124245 0.4020 +23223 142940 0.5620 +23223 146212 0.6640 +23223 153443 0.5100 +23223 161424 0.7360 +23223 165545 0.7280 +23223 221078 0.8230 +23223 221830 0.7720 +23223 345630 0.5790 +23223 387338 0.4620 +23223 692312 0.5310 +23223 114483834 0.4510 +23224 23345 0.9660 +23224 23353 0.9990 +23224 23592 0.6070 +23224 25777 0.9990 +23224 27127 0.5510 +23224 29109 0.9940 +23224 50511 0.5120 +23224 54903 0.6460 +23224 54906 0.4050 +23224 55746 0.4530 +23224 56158 0.4990 +23224 57674 0.4850 +23224 64837 0.5260 +23224 79188 0.5910 +23224 79789 0.6740 +23224 79933 0.5820 +23224 84033 0.4320 +23224 84823 0.5590 +23224 84909 0.5130 +23224 89953 0.5070 +23224 91147 0.9330 +23224 93426 0.4990 +23224 140732 0.7760 +23224 140836 0.4230 +23224 144406 0.4010 +23224 147700 0.5110 +23224 147872 0.8340 +23224 161176 0.9450 +23224 163183 0.7780 +23224 199953 0.4550 +23224 256126 0.4990 +23224 256979 0.8350 +23224 387332 0.4490 +23224 644186 0.4990 +23224 729920 0.4440 +23225 23279 0.9830 +23225 23353 0.4260 +23225 23511 0.9920 +23225 23592 0.5290 +23225 23636 0.9840 +23225 25909 0.9430 +23225 25929 0.4090 +23225 26097 0.4440 +23225 27161 0.4820 +23225 29107 0.5430 +23225 29894 0.4620 +23225 50628 0.4150 +23225 51091 0.6960 +23225 51182 0.4460 +23225 51213 0.4160 +23225 51362 0.4050 +23225 51501 0.4690 +23225 51692 0.4180 +23225 53371 0.9670 +23225 53981 0.4330 +23225 55110 0.5040 +23225 55143 0.4330 +23225 55161 0.6410 +23225 55339 0.4400 +23225 55706 0.9890 +23225 55746 0.9790 +23225 57122 0.9880 +23225 57187 0.4540 +23225 59349 0.4470 +23225 64708 0.4180 +23225 65109 0.5070 +23225 79023 0.9750 +23225 79080 0.4450 +23225 79228 0.4770 +23225 79711 0.4300 +23225 79760 0.4030 +23225 79833 0.4050 +23225 79902 0.9880 +23225 80145 0.4050 +23225 81608 0.4050 +23225 81929 0.9930 +23225 83544 0.6660 +23225 84248 0.4160 +23225 84271 0.5000 +23225 84321 0.5120 +23225 84324 0.4050 +23225 91181 0.9260 +23225 91754 0.4210 +23225 116835 0.4070 +23225 129401 0.9910 +23225 259217 0.4070 +23225 348995 0.9840 +23225 400668 0.4630 +23225 728343 0.5050 +23225 729857 0.6770 +23225 100101267 0.8210 +23228 90355 0.4050 +23228 163486 0.4030 +23229 23236 0.6660 +23229 23433 0.7190 +23229 26499 0.4440 +23229 27020 0.6520 +23229 51466 0.4290 +23229 54413 0.5260 +23229 55879 0.5730 +23229 56850 0.4720 +23229 57154 0.4750 +23229 57381 0.4040 +23229 57502 0.7280 +23229 57526 0.7950 +23229 57555 0.9500 +23229 57575 0.7410 +23229 57582 0.4670 +23229 60401 0.4120 +23229 79751 0.7740 +23229 79868 0.4450 +23229 84679 0.4310 +23229 84904 0.5000 +23229 112476 0.4050 +23229 128272 0.4920 +23229 139285 0.4920 +23229 139886 0.5110 +23229 140679 0.5230 +23229 170302 0.6950 +23229 219287 0.4280 +23229 375323 0.4910 +23229 375612 0.4450 +23229 388135 0.5780 +23229 440073 0.5930 +23230 23339 0.4750 +23230 23400 0.5190 +23230 25989 0.5090 +23230 26100 0.4230 +23230 55062 0.4970 +23230 55102 0.5270 +23230 55177 0.4290 +23230 55187 0.5560 +23230 55737 0.6440 +23230 56676 0.4110 +23230 57231 0.4030 +23230 57338 0.8270 +23230 57655 0.4440 +23230 60561 0.4870 +23230 63891 0.4430 +23230 79094 0.4600 +23230 80025 0.5230 +23230 80067 0.4890 +23230 80347 0.4480 +23230 84162 0.4110 +23230 84649 0.4550 +23230 84895 0.4180 +23230 114879 0.4650 +23230 118987 0.6500 +23230 132949 0.4250 +23230 157680 0.6670 +23230 200576 0.5370 +23230 402415 0.5080 +23230 494143 0.5040 +23231 27248 0.6860 +23231 51009 0.6880 +23231 51290 0.7880 +23231 54020 0.4480 +23231 54828 0.4300 +23231 55061 0.4560 +23231 55628 0.4620 +23231 57213 0.4110 +23231 79029 0.5160 +23231 79139 0.8580 +23231 84447 0.7130 +23231 84626 0.4420 +23231 91319 0.7240 +23231 114827 0.4900 +23231 152206 0.5080 +23231 166378 0.5160 +23231 283284 0.4070 +23231 284827 0.4180 +23231 388650 0.4400 +23232 23484 0.6150 +23232 26269 0.4230 +23232 51196 0.4600 +23232 51256 0.4410 +23232 54662 0.4580 +23232 54663 0.5840 +23232 55296 0.5480 +23232 55773 0.5130 +23232 64318 0.4160 +23232 79735 0.4060 +23232 79949 0.6710 +23232 151963 0.4430 +23232 161514 0.5260 +23232 203260 0.5130 +23232 285382 0.4510 +23232 339965 0.4180 +23233 23265 0.9940 +23233 23632 0.4220 +23233 25924 0.4790 +23233 26007 0.4060 +23233 29091 0.6760 +23233 51151 0.4230 +23233 54536 0.8270 +23233 55763 0.9910 +23233 55770 0.9870 +23233 55930 0.4430 +23233 56603 0.6510 +23233 60412 0.9930 +23233 64759 0.4700 +23233 84062 0.4200 +23233 91828 0.7900 +23233 116841 0.4030 +23233 117177 0.5480 +23233 149371 0.9950 +23233 254122 0.4480 +23233 283849 0.8610 +23233 283899 0.4270 +23233 284273 0.4390 +23233 644145 0.8660 +23233 728361 0.4050 +23234 23317 0.4310 +23234 23476 0.5230 +23234 23753 0.7450 +23234 25789 0.4200 +23234 26353 0.7350 +23234 26589 0.4670 +23234 27000 0.5710 +23234 28998 0.5350 +23234 29093 0.4210 +23234 29103 0.5040 +23234 51021 0.4610 +23234 51182 0.7060 +23234 51277 0.6460 +23234 51314 0.4680 +23234 51398 0.5400 +23234 51574 0.5530 +23234 51726 0.7650 +23234 54948 0.4140 +23234 54979 0.4200 +23234 55172 0.5510 +23234 55723 0.4190 +23234 56984 0.9060 +23234 57003 0.5460 +23234 57110 0.4200 +23234 57129 0.4260 +23234 57407 0.4300 +23234 63875 0.4890 +23234 64215 0.4410 +23234 65003 0.4160 +23234 65080 0.4460 +23234 79657 0.5900 +23234 79711 0.5640 +23234 79962 0.5510 +23234 80273 0.4570 +23234 81570 0.5200 +23234 81572 0.5510 +23234 83540 0.4410 +23234 84545 0.4140 +23234 84665 0.4010 +23234 84955 0.6290 +23234 85406 0.4690 +23234 85453 0.4250 +23234 90853 0.4580 +23234 116835 0.5980 +23234 118461 0.4200 +23234 120379 0.5510 +23234 120526 0.4780 +23234 121504 0.9000 +23234 131118 0.4160 +23234 134266 0.4590 +23234 150160 0.5880 +23234 259217 0.5500 +23234 285126 0.4730 +23234 317662 0.9670 +23234 339416 0.4200 +23234 342357 0.4690 +23234 388633 0.4200 +23234 548645 0.6390 +23234 554313 0.9000 +23235 23373 0.7150 +23235 23387 0.5040 +23235 55294 0.5260 +23235 64784 0.8670 +23235 150094 0.6700 +23235 200186 0.9920 +23235 260425 0.4670 +23236 23396 0.7540 +23236 23566 0.5820 +23236 23620 0.5380 +23236 26086 0.5000 +23236 26287 0.4540 +23236 27063 0.4210 +23236 27124 0.6560 +23236 27334 0.4990 +23236 29904 0.6530 +23236 29933 0.4990 +23236 51196 0.7050 +23236 51738 0.5050 +23236 51763 0.6540 +23236 51764 0.9060 +23236 51806 0.8080 +23236 53358 0.4410 +23236 54331 0.8780 +23236 54822 0.7920 +23236 54928 0.6560 +23236 55108 0.4150 +23236 55300 0.6980 +23236 55361 0.7020 +23236 55613 0.6940 +23236 55970 0.6730 +23236 56255 0.4310 +23236 56413 0.5020 +23236 56623 0.6910 +23236 56923 0.5230 +23236 57105 0.5500 +23236 57121 0.5720 +23236 57465 0.4700 +23236 57507 0.4020 +23236 57526 0.7110 +23236 57555 0.4220 +23236 57575 0.6750 +23236 57582 0.4990 +23236 59345 0.8030 +23236 60675 0.4990 +23236 64106 0.5160 +23236 64419 0.6620 +23236 79751 0.7520 +23236 79837 0.7330 +23236 80271 0.7280 +23236 84109 0.5140 +23236 84432 0.4990 +23236 84539 0.5120 +23236 84634 0.6430 +23236 84812 0.7210 +23236 89869 0.7080 +23236 91860 0.7520 +23236 94233 0.5780 +23236 94235 0.6730 +23236 113026 0.7160 +23236 128674 0.5020 +23236 129521 0.5130 +23236 138429 0.6820 +23236 139189 0.6820 +23236 160851 0.6920 +23236 163688 0.7520 +23236 170302 0.6680 +23236 200576 0.9180 +23236 222545 0.9000 +23236 253430 0.9190 +23236 257313 0.5070 +23236 338557 0.5260 +23236 343472 0.4240 +23236 346562 0.9140 +23236 347148 0.5880 +23236 387129 0.6920 +23236 594857 0.4990 +23237 26052 0.5160 +23237 54476 0.6430 +23237 57697 0.5320 +23237 266743 0.6350 +23239 23513 0.9130 +23239 26499 0.7880 +23239 51256 0.7620 +23239 54704 0.7700 +23239 54877 0.4330 +23239 57521 0.4040 +23239 57599 0.9230 +23239 57614 0.4440 +23239 64854 0.9340 +23239 81559 0.6220 +23239 81609 0.7880 +23239 91833 0.8770 +23239 132160 0.4290 +23239 140894 0.4240 +23239 219333 0.9390 +23239 253260 0.4350 +23240 27236 0.4910 +23240 51705 0.4060 +23240 54951 0.5250 +23240 57106 0.4210 +23240 57484 0.5170 +23240 79908 0.4100 +23240 80021 0.4670 +23240 81563 0.4770 +23240 84057 0.4130 +23240 84520 0.4460 +23240 132299 0.5030 +23240 161145 0.6650 +23240 171024 0.4510 +23240 201798 0.5720 +23240 201895 0.5400 +23241 30001 0.4100 +23241 51024 0.5860 +23241 51806 0.4570 +23241 54205 0.5360 +23241 55014 0.4600 +23241 55177 0.8220 +23241 55669 0.5200 +23241 55690 0.4620 +23241 64083 0.4570 +23241 64423 0.4230 +23241 81542 0.4120 +23241 90506 0.7420 +23241 90550 0.4530 +23241 91860 0.4570 +23241 114879 0.4660 +23241 116842 0.4720 +23241 118987 0.5890 +23241 139341 0.5250 +23241 163688 0.4570 +23241 647310 0.4740 +23242 23274 0.4160 +23242 25802 0.5560 +23242 26958 0.5030 +23242 28988 0.4780 +23242 29763 0.8970 +23242 29766 0.6590 +23242 29993 0.8910 +23242 56203 0.5900 +23242 56907 0.4130 +23242 56952 0.4360 +23242 57216 0.7840 +23242 57571 0.4670 +23242 63979 0.5330 +23242 84501 0.4730 +23242 91156 0.5500 +23242 92558 0.4060 +23242 123720 0.4180 +23242 133746 0.6200 +23242 222171 0.4140 +23242 342979 0.4750 +23242 345456 0.4680 +23242 375189 0.4850 +23242 442721 0.6100 +23243 23774 0.4340 +23243 26277 0.4310 +23243 29110 0.4650 +23243 51592 0.4490 +23243 51750 0.4270 +23243 54386 0.4380 +23243 54433 0.4120 +23243 55291 0.9830 +23243 55505 0.4250 +23243 55651 0.4370 +23243 55707 0.6100 +23243 64421 0.4640 +23243 84859 0.4330 +23243 91526 0.8930 +23243 221937 0.4210 +23243 223082 0.5510 +23243 283373 0.7410 +23243 283638 0.4080 +23244 23269 0.4250 +23244 23347 0.6510 +23244 23369 0.4710 +23244 23383 0.9880 +23244 23435 0.4260 +23244 23451 0.5010 +23244 23512 0.5070 +23244 23595 0.4560 +23244 23626 0.5480 +23244 25836 0.9980 +23244 25909 0.4520 +23244 26036 0.6150 +23244 26054 0.5620 +23244 26135 0.5390 +23244 27127 0.8560 +23244 29766 0.4720 +23244 51018 0.4200 +23244 51088 0.4250 +23244 51593 0.4310 +23244 51759 0.4540 +23244 54464 0.5460 +23244 54822 0.5080 +23244 54882 0.4640 +23244 54921 0.8360 +23244 54962 0.5440 +23244 55023 0.4140 +23244 55153 0.4060 +23244 55183 0.5730 +23244 55206 0.6360 +23244 55728 0.5490 +23244 55814 0.5410 +23244 55869 0.6770 +23244 55920 0.5520 +23244 56259 0.4890 +23244 56897 0.4180 +23244 57448 0.4710 +23244 63922 0.9430 +23244 64151 0.7060 +23244 79075 0.8270 +23244 79577 0.4250 +23244 79677 0.7490 +23244 79915 0.7010 +23244 80008 0.4310 +23244 83903 0.9370 +23244 84072 0.4290 +23244 84991 0.4390 +23244 113130 0.9990 +23244 114799 0.9940 +23244 149076 0.4090 +23244 149708 0.4880 +23244 151246 0.4180 +23244 151648 0.7940 +23244 157570 0.9860 +23244 164045 0.6850 +23244 197131 0.5020 +23244 201895 0.4570 +23244 286053 0.4650 +23244 440093 0.6160 +23244 440686 0.6160 +23244 642636 0.9020 +23244 653604 0.6270 +23245 26047 0.5530 +23245 26053 0.4860 +23245 26258 0.8020 +23245 27145 0.4760 +23245 27152 0.6630 +23245 50834 0.6350 +23245 51057 0.8190 +23245 51725 0.7690 +23245 54413 0.6810 +23245 54885 0.4420 +23245 55076 0.4020 +23245 55830 0.5120 +23245 57188 0.9980 +23245 57502 0.7260 +23245 57536 0.9990 +23245 57542 0.4180 +23245 64326 0.7370 +23245 79054 0.5900 +23245 79068 0.4030 +23245 79816 0.5490 +23245 79871 0.8100 +23245 85358 0.5750 +23245 121053 0.5590 +23245 126868 0.4300 +23245 139411 0.6500 +23245 145282 0.9990 +23245 152330 0.7660 +23245 221692 0.5030 +23245 375190 0.7640 +23245 375449 0.4160 +23245 389073 0.4340 +23245 389177 0.4850 +23246 23363 0.6270 +23246 23378 0.5910 +23246 23476 0.6460 +23246 23481 0.9990 +23246 23517 0.8730 +23246 23521 0.8760 +23246 23560 0.9960 +23246 23640 0.5790 +23246 24140 0.8690 +23246 25873 0.9740 +23246 25879 0.8540 +23246 25885 0.9330 +23246 25926 0.5970 +23246 25983 0.6300 +23246 26155 0.9980 +23246 26156 0.9980 +23246 26168 0.7320 +23246 26233 0.4360 +23246 26354 0.9950 +23246 26574 0.7530 +23246 26986 0.4470 +23246 26995 0.7640 +23246 27037 0.8350 +23246 27042 0.7960 +23246 27043 0.7550 +23246 27292 0.7010 +23246 27340 0.9140 +23246 27341 0.7280 +23246 28987 0.7330 +23246 28998 0.6070 +23246 29093 0.6040 +23246 29889 0.9660 +23246 29894 0.4700 +23246 29960 0.8650 +23246 29997 0.7280 +23246 51018 0.9330 +23246 51042 0.6880 +23246 51068 0.8880 +23246 51073 0.5960 +23246 51077 0.5940 +23246 51096 0.9810 +23246 51118 0.6780 +23246 51121 0.9060 +23246 51138 0.4080 +23246 51154 0.9970 +23246 51187 0.9890 +23246 51202 0.9730 +23246 51236 0.4360 +23246 51319 0.6270 +23246 51388 0.9950 +23246 51575 0.4220 +23246 51602 0.9910 +23246 51605 0.6760 +23246 54433 0.7170 +23246 54475 0.9060 +23246 54512 0.4350 +23246 54514 0.4330 +23246 54552 0.9810 +23246 54555 0.9070 +23246 54606 0.9630 +23246 54663 0.9990 +23246 54700 0.4420 +23246 54853 0.7550 +23246 54881 0.7140 +23246 54888 0.7310 +23246 54948 0.4990 +23246 54984 0.4150 +23246 55003 0.7220 +23246 55006 0.6900 +23246 55127 0.9710 +23246 55131 0.9180 +23246 55153 0.7790 +23246 55226 0.9220 +23246 55272 0.9430 +23246 55299 0.9960 +23246 55341 0.8620 +23246 55510 0.4500 +23246 55591 0.6480 +23246 55621 0.6500 +23246 55622 0.6060 +23246 55646 0.6350 +23246 55651 0.8780 +23246 55695 0.7370 +23246 55703 0.7060 +23246 55720 0.9160 +23246 55759 0.9990 +23246 55760 0.6970 +23246 55794 0.8560 +23246 55813 0.9190 +23246 56342 0.9410 +23246 56474 0.4010 +23246 56902 0.5480 +23246 56915 0.4040 +23246 56931 0.7170 +23246 57050 0.8640 +23246 57062 0.9340 +23246 57109 0.5370 +23246 57418 0.9670 +23246 57647 0.7210 +23246 57696 0.9840 +23246 63899 0.6940 +23246 64118 0.4130 +23246 64216 0.6100 +23246 64318 0.9960 +23246 64374 0.4290 +23246 64425 0.8800 +23246 64434 0.4070 +23246 64794 0.8910 +23246 65083 0.9290 +23246 65095 0.7460 +23246 79009 0.6620 +23246 79039 0.9660 +23246 79050 0.9200 +23246 79159 0.9290 +23246 79571 0.5240 +23246 79590 0.6700 +23246 79707 0.7350 +23246 79711 0.6900 +23246 79730 0.6940 +23246 79954 0.8520 +23246 79979 0.8250 +23246 80135 0.9920 +23246 80324 0.6770 +23246 81627 0.5620 +23246 81875 0.4260 +23246 81887 0.6770 +23246 83475 0.6620 +23246 83479 0.5890 +23246 83743 0.9980 +23246 84128 0.9140 +23246 84135 0.7970 +23246 84154 0.9910 +23246 84172 0.9100 +23246 84273 0.7330 +23246 84294 0.4940 +23246 84365 0.9900 +23246 84549 0.9890 +23246 84916 0.8980 +23246 84933 0.4210 +23246 84946 0.6930 +23246 85395 0.4660 +23246 88745 0.6460 +23246 90353 0.5640 +23246 90441 0.7030 +23246 91646 0.5890 +23246 92170 0.7540 +23246 92856 0.9750 +23246 93974 0.4170 +23246 115708 0.8510 +23246 116832 0.7600 +23246 116966 0.7490 +23246 117246 0.9980 +23246 126789 0.4830 +23246 133396 0.4170 +23246 140801 0.7450 +23246 142940 0.8150 +23246 146212 0.9780 +23246 153443 0.6880 +23246 161424 0.9290 +23246 165545 0.6990 +23246 168400 0.4500 +23246 200172 0.4330 +23246 200916 0.8860 +23246 221078 0.9760 +23246 221830 0.5650 +23246 254268 0.7470 +23246 285855 0.9720 +23246 317781 0.6640 +23246 344758 0.5870 +23246 345630 0.8190 +23246 387129 0.9290 +23246 387338 0.6970 +23246 645051 0.4390 +23246 645073 0.4390 +23246 692312 0.8520 +23246 727957 0.4070 +23246 729396 0.4390 +23246 729422 0.4390 +23246 729428 0.4390 +23246 729431 0.4390 +23246 729442 0.4390 +23246 729447 0.4390 +23246 100008586 0.4390 +23246 100132399 0.4390 +23246 100505478 0.8800 +23246 100526842 0.7790 +23246 100533106 0.4160 +23246 102724473 0.4390 +23247 25963 0.4190 +23247 26146 0.4580 +23247 26160 0.5380 +23247 28981 0.5530 +23247 51009 0.4510 +23247 51098 0.4180 +23247 54806 0.4590 +23247 56912 0.4200 +23247 57519 0.4010 +23247 57545 0.4800 +23247 64792 0.6010 +23247 79598 0.4400 +23247 79768 0.4190 +23247 79848 0.5480 +23247 79989 0.5310 +23247 80184 0.5570 +23247 80210 0.5440 +23247 83473 0.4830 +23247 84056 0.5810 +23247 84131 0.5320 +23247 91147 0.4950 +23247 95681 0.4520 +23247 146705 0.4130 +23247 200894 0.4690 +23247 220416 0.4760 +23247 282809 0.4360 +23247 338657 0.4320 +23247 374654 0.5610 +23248 23272 0.4070 +23248 23469 0.5410 +23248 24149 0.4120 +23248 29101 0.5550 +23248 51111 0.4580 +23248 51585 0.7540 +23248 54734 0.4010 +23248 55197 0.7490 +23248 55339 0.4150 +23248 55703 0.4820 +23248 55729 0.5170 +23248 57466 0.6540 +23248 57634 0.4620 +23248 57680 0.4440 +23248 58490 0.9390 +23248 58499 0.4530 +23248 79657 0.5470 +23248 79871 0.9700 +23248 80222 0.5000 +23248 81488 0.6360 +23248 84172 0.4510 +23248 123169 0.7090 +23248 165215 0.4420 +23248 388611 0.4290 +23250 23439 0.4430 +23250 25778 0.5060 +23250 25959 0.4140 +23250 29058 0.6080 +23250 29119 0.6080 +23250 51761 0.6370 +23250 54472 0.4280 +23250 55113 0.6740 +23250 55754 0.9970 +23250 56654 0.6220 +23250 57194 0.9140 +23250 57198 0.6140 +23250 57205 0.9190 +23250 57563 0.5130 +23250 65110 0.4270 +23250 79895 0.5980 +23250 79991 0.5050 +23250 91039 0.5740 +23250 114827 0.5070 +23250 148229 0.6120 +23250 161291 0.8820 +23250 162540 0.5440 +23250 196527 0.4910 +23250 200728 0.4150 +23250 286410 0.6460 +23250 389668 0.4430 +23250 727897 0.4520 +23250 729238 0.4050 +23251 64434 0.4310 +23251 284827 0.5150 +23251 440026 0.4390 +23252 23417 0.4250 +23252 23478 0.4340 +23252 23521 0.7200 +23252 23640 0.5870 +23252 26271 0.4130 +23252 26284 0.5700 +23252 27352 0.4030 +23252 28998 0.7200 +23252 29093 0.6640 +23252 29789 0.5580 +23252 30814 0.5220 +23252 51021 0.8720 +23252 51067 0.4390 +23252 51069 0.6620 +23252 51073 0.6630 +23252 51076 0.4010 +23252 51081 0.6890 +23252 51116 0.6200 +23252 51121 0.6100 +23252 51149 0.7030 +23252 51264 0.8660 +23252 54491 0.4690 +23252 54516 0.4130 +23252 54546 0.6200 +23252 54726 0.7350 +23252 54764 0.7150 +23252 54948 0.6050 +23252 55052 0.9020 +23252 55157 0.4940 +23252 55173 0.7790 +23252 55272 0.8300 +23252 55316 0.6700 +23252 55325 0.4350 +23252 55432 0.6730 +23252 55611 0.7460 +23252 55846 0.5300 +23252 56474 0.6330 +23252 56957 0.7080 +23252 57038 0.5530 +23252 57559 0.4060 +23252 63875 0.8760 +23252 63931 0.6550 +23252 64374 0.5870 +23252 64960 0.6970 +23252 64963 0.6770 +23252 64965 0.8960 +23252 64968 0.9030 +23252 64969 0.8230 +23252 64979 0.8530 +23252 64983 0.9030 +23252 65003 0.6070 +23252 65005 0.8440 +23252 65008 0.7170 +23252 78990 0.6320 +23252 79590 0.6100 +23252 79691 0.4040 +23252 83943 0.4340 +23252 84196 0.4140 +23252 84340 0.4030 +23252 84749 0.4830 +23252 84893 0.4020 +23252 90268 0.7220 +23252 90701 0.4340 +23252 90850 0.6140 +23252 91574 0.4180 +23252 91875 0.6400 +23252 92399 0.4590 +23252 114803 0.4430 +23252 123036 0.4190 +23252 126402 0.6890 +23252 140801 0.5870 +23252 161725 0.6520 +23252 196294 0.4340 +23252 219927 0.8680 +23252 221302 0.6330 +23252 285855 0.5720 +23252 347487 0.6200 +23252 387129 0.5720 +23252 641776 0.5190 +23252 643909 0.5190 +23252 728524 0.5190 +23252 100287482 0.6200 +23252 100505478 0.5720 +23252 100526842 0.6640 +23252 100996746 0.5190 +23252 105180390 0.5190 +23252 105180391 0.5190 +23253 51742 0.4340 +23253 55662 0.4030 +23253 55904 0.5370 +23253 57606 0.4260 +23253 58517 0.4390 +23253 79822 0.4260 +23253 339291 0.5830 +23254 28964 0.4030 +23254 79683 0.4290 +23254 79927 0.4700 +23254 126017 0.4770 +23254 100310846 0.4260 +23255 60678 0.4690 +23255 79807 0.4740 +23255 80128 0.4250 +23256 23265 0.4190 +23256 25839 0.9660 +23256 26003 0.5310 +23256 26958 0.4270 +23256 26984 0.9160 +23256 27095 0.7450 +23256 27314 0.4880 +23256 51026 0.4120 +23256 51272 0.8660 +23256 51399 0.6800 +23256 51542 0.4950 +23256 51594 0.6960 +23256 51646 0.4050 +23256 51693 0.5320 +23256 51805 0.6390 +23256 53407 0.9980 +23256 54497 0.4460 +23256 54536 0.5000 +23256 55014 0.7240 +23256 55275 0.5940 +23256 55610 0.4530 +23256 55632 0.8460 +23256 55770 0.4810 +23256 55850 0.9250 +23256 57511 0.6220 +23256 58485 0.6880 +23256 59349 0.4030 +23256 60561 0.9200 +23256 63908 0.9240 +23256 64083 0.4650 +23256 64689 0.7260 +23256 64777 0.5340 +23256 64795 0.4680 +23256 65005 0.4700 +23256 79086 0.4690 +23256 79090 0.6750 +23256 79748 0.4990 +23256 81562 0.5310 +23256 81624 0.4180 +23256 81876 0.7910 +23256 83548 0.7610 +23256 84364 0.4040 +23256 90411 0.5900 +23256 91949 0.5800 +23256 112487 0.4430 +23256 122553 0.5930 +23256 126003 0.6610 +23256 126208 0.4830 +23256 128239 0.4010 +23256 143187 0.6090 +23256 148223 0.5230 +23256 149111 0.5300 +23256 150786 0.6270 +23256 152579 0.8760 +23256 153339 0.5310 +23256 157769 0.4340 +23256 203228 0.4180 +23256 221303 0.4370 +23256 254263 0.5770 +23256 375056 0.8540 +23256 548593 0.5820 +23258 51560 0.6200 +23258 54734 0.4180 +23258 55667 0.4740 +23258 57589 0.4110 +23258 57706 0.4110 +23258 64145 0.4190 +23258 83548 0.4350 +23258 84084 0.4510 +23258 116442 0.4730 +23258 347517 0.4120 +23259 23431 0.5260 +23259 23503 0.6210 +23259 25782 0.4510 +23259 25833 0.5070 +23259 26580 0.5310 +23259 27257 0.6260 +23259 51062 0.4840 +23259 51308 0.4980 +23259 51324 0.6300 +23259 54904 0.5760 +23259 57165 0.5190 +23259 57704 0.6400 +23259 65055 0.5880 +23259 79152 0.6160 +23259 79796 0.5110 +23259 80055 0.4850 +23259 80139 0.4310 +23259 80208 0.6400 +23259 80223 0.5380 +23259 80821 0.9410 +23259 83877 0.6010 +23259 84236 0.4170 +23259 84513 0.6530 +23259 85465 0.4350 +23259 91574 0.5130 +23259 113612 0.6290 +23259 118813 0.4290 +23259 123606 0.5520 +23259 137492 0.5480 +23259 137994 0.5560 +23259 200879 0.5820 +23259 340075 0.4160 +23259 388969 0.4560 +23261 25937 0.8640 +23261 26038 0.4050 +23261 26190 0.4050 +23261 51806 0.5960 +23261 54897 0.4980 +23261 55515 0.4570 +23261 84811 0.4590 +23261 91860 0.5950 +23261 163688 0.5950 +23261 254102 0.4820 +23261 254427 0.4350 +23262 51249 0.4270 +23262 51447 0.9890 +23262 54826 0.4050 +23262 64768 0.9490 +23262 79664 0.4590 +23262 79932 0.4430 +23262 83594 0.5050 +23262 90355 0.5090 +23262 112479 0.4200 +23262 112939 0.4170 +23262 117283 0.9920 +23262 138716 0.4890 +23262 253143 0.5510 +23262 257218 0.4380 +23262 340481 0.4270 +23262 387921 0.5810 +23263 23365 0.4410 +23263 23507 0.4540 +23263 27018 0.5050 +23263 27145 0.4440 +23263 55830 0.5100 +23263 282974 0.5030 +23264 23512 0.4460 +23264 54799 0.5800 +23264 54880 0.4090 +23264 54962 0.4410 +23264 55421 0.5220 +23264 55534 0.5960 +23264 57529 0.4180 +23264 57634 0.5180 +23264 63035 0.5190 +23264 64769 0.6680 +23264 81570 0.4340 +23264 84296 0.4250 +23264 84759 0.5930 +23264 85417 0.7430 +23264 123169 0.4820 +23264 221895 0.6230 +23264 283008 0.4890 +23264 340602 0.6490 +23264 441457 0.5560 +23264 728118 0.6980 +23264 729262 0.6240 +23264 100288687 0.4790 +23265 23339 0.6130 +23265 23396 0.5420 +23265 23433 0.9990 +23265 23557 0.6100 +23265 23636 0.6990 +23265 25839 0.6250 +23265 25924 0.4170 +23265 26056 0.5780 +23265 27095 0.4120 +23265 27339 0.6590 +23265 29091 0.6400 +23265 29110 0.5660 +23265 50618 0.4170 +23265 50807 0.6520 +23265 51542 0.5880 +23265 51552 0.6410 +23265 54536 0.9990 +23265 54845 0.4030 +23265 55108 0.4510 +23265 55114 0.4590 +23265 55275 0.6510 +23265 55704 0.6340 +23265 55763 0.9990 +23265 55770 0.9990 +23265 56731 0.4650 +23265 57111 0.6880 +23265 57511 0.8170 +23265 58485 0.4690 +23265 60385 0.4480 +23265 60412 0.9990 +23265 64601 0.4530 +23265 79058 0.5640 +23265 80004 0.4120 +23265 80223 0.5840 +23265 83548 0.7930 +23265 84062 0.5140 +23265 84440 0.7740 +23265 90410 0.4880 +23265 91828 0.8490 +23265 91949 0.4740 +23265 116841 0.4650 +23265 117177 0.7150 +23265 126208 0.5150 +23265 149371 0.9990 +23265 283849 0.9080 +23265 353174 0.7920 +23265 644145 0.9380 +23266 23507 0.5490 +23266 23513 0.5520 +23266 23639 0.5140 +23266 23767 0.8720 +23266 23768 0.7570 +23266 23769 0.8030 +23266 25878 0.5300 +23266 25960 0.6310 +23266 25987 0.5360 +23266 26011 0.9930 +23266 26018 0.5150 +23266 26045 0.5960 +23266 26050 0.5380 +23266 26099 0.9690 +23266 26103 0.5320 +23266 26254 0.5140 +23266 27091 0.5140 +23266 27255 0.5520 +23266 50944 0.6430 +23266 51225 0.5810 +23266 51284 0.5310 +23266 51311 0.5310 +23266 51704 0.4230 +23266 51764 0.4870 +23266 54106 0.5210 +23266 54331 0.4690 +23266 54674 0.5320 +23266 54829 0.5150 +23266 54832 0.4160 +23266 54839 0.5210 +23266 54873 0.4420 +23266 55144 0.5140 +23266 55222 0.5140 +23266 55227 0.5530 +23266 55366 0.6030 +23266 55367 0.5670 +23266 55379 0.5140 +23266 55624 0.7730 +23266 55631 0.5140 +23266 55714 0.9830 +23266 55914 0.6690 +23266 55970 0.4810 +23266 56262 0.5140 +23266 57408 0.5600 +23266 57451 0.9980 +23266 57463 0.5140 +23266 57497 0.5140 +23266 57554 0.6090 +23266 57611 0.5140 +23266 57622 0.5140 +23266 57631 0.5490 +23266 57633 0.5340 +23266 57689 0.5210 +23266 59283 0.5140 +23266 59284 0.5190 +23266 59345 0.9680 +23266 59350 0.5990 +23266 60506 0.5510 +23266 64101 0.5600 +23266 64359 0.4770 +23266 64922 0.5140 +23266 65078 0.5140 +23266 65999 0.5140 +23266 78999 0.5180 +23266 79414 0.5140 +23266 79442 0.5140 +23266 79705 0.5140 +23266 79870 0.4750 +23266 79883 0.5140 +23266 79962 0.4180 +23266 80059 0.6310 +23266 80131 0.5140 +23266 80823 0.4270 +23266 81543 0.5810 +23266 81793 0.5210 +23266 83450 0.5140 +23266 83544 0.5140 +23266 83938 0.6950 +23266 84125 0.5140 +23266 84189 0.5140 +23266 84230 0.5140 +23266 84435 0.6390 +23266 84631 0.5260 +23266 84859 0.5230 +23266 84894 0.5140 +23266 84966 0.4060 +23266 85358 0.4970 +23266 85444 0.5140 +23266 90249 0.9720 +23266 90506 0.5140 +23266 90678 0.5140 +23266 94030 0.5560 +23266 94235 0.4730 +23266 114548 0.5140 +23266 114798 0.5260 +23266 114990 0.5250 +23266 115399 0.5140 +23266 116064 0.5140 +23266 116135 0.5510 +23266 116844 0.5220 +23266 121227 0.5230 +23266 122042 0.5510 +23266 122769 0.5140 +23266 122786 0.9680 +23266 123355 0.5140 +23266 126206 0.5140 +23266 126364 0.5140 +23266 126755 0.5140 +23266 127255 0.5170 +23266 127435 0.5140 +23266 131578 0.5140 +23266 136332 0.5490 +23266 137970 0.9740 +23266 139065 0.5210 +23266 143570 0.5140 +23266 145581 0.5270 +23266 146760 0.5140 +23266 149466 0.5140 +23266 150356 0.5180 +23266 157807 0.4260 +23266 158038 0.5140 +23266 164312 0.5150 +23266 166647 0.6510 +23266 202500 0.5140 +23266 204801 0.5140 +23266 219527 0.5150 +23266 220074 0.5870 +23266 220416 0.5140 +23266 222229 0.5140 +23266 222643 0.9700 +23266 254050 0.5140 +23266 255252 0.5140 +23266 284004 0.7520 +23266 285313 0.5200 +23266 337977 0.5140 +23266 337978 0.5140 +23266 338323 0.5140 +23266 339291 0.5140 +23266 339398 0.5240 +23266 339977 0.5140 +23266 340745 0.5140 +23266 341883 0.5140 +23266 344657 0.5140 +23266 345193 0.5360 +23266 346562 0.7520 +23266 347730 0.5840 +23266 347731 0.6000 +23266 347902 0.5140 +23266 349667 0.5140 +23266 374819 0.5140 +23266 375387 0.5140 +23266 376132 0.5140 +23266 386724 0.5140 +23266 387509 0.4040 +23266 389816 0.5140 +23266 390205 0.5140 +23266 401387 0.5260 +23266 440699 0.5140 +23266 441381 0.5140 +23266 474170 0.5140 +23266 474354 0.5140 +23266 645191 0.5140 +23266 646019 0.4730 +23266 647264 0.5140 +23266 654429 0.6020 +23266 100130733 0.5510 +23266 100505591 0.5650 +23266 100506049 0.5140 +23266 100507050 0.5870 +23266 100528062 0.4240 +23266 105372280 0.4690 +23266 105378803 0.5140 +23266 112267897 0.5140 +23268 23271 0.4170 +23268 23526 0.4350 +23268 26052 0.5290 +23268 49855 0.4150 +23268 55700 0.4680 +23268 55740 0.5910 +23268 55909 0.8910 +23268 64689 0.4140 +23268 79724 0.4830 +23268 83889 0.4040 +23268 89848 0.4950 +23268 92154 0.4250 +23268 116835 0.5180 +23268 145741 0.4850 +23268 147179 0.6750 +23268 153562 0.5020 +23268 196446 0.4100 +23268 259217 0.5180 +23268 283953 0.4130 +23269 23429 0.8810 +23269 23586 0.4770 +23269 23613 0.5200 +23269 25836 0.5530 +23269 26013 0.4750 +23269 26121 0.9000 +23269 26168 0.9050 +23269 27043 0.9040 +23269 29063 0.6800 +23269 29072 0.4370 +23269 29110 0.5490 +23269 29915 0.5490 +23269 51171 0.4320 +23269 51184 0.6780 +23269 51230 0.9080 +23269 54531 0.6870 +23269 54881 0.9030 +23269 54882 0.6020 +23269 55183 0.4060 +23269 55814 0.5630 +23269 57448 0.5590 +23269 57506 0.7060 +23269 57680 0.9090 +23269 63035 0.4010 +23269 64135 0.5100 +23269 64319 0.5400 +23269 64978 0.5930 +23269 65083 0.6800 +23269 79132 0.5320 +23269 79813 0.5120 +23269 81887 0.9000 +23269 83463 0.4060 +23269 83548 0.6800 +23269 83746 0.9660 +23269 84108 0.9480 +23269 84148 0.9020 +23269 84661 0.5400 +23269 84678 0.4800 +23269 124944 0.9000 +23269 125476 0.9000 +23269 164684 0.7180 +23269 284058 0.9100 +23269 100529209 0.5400 +23270 54821 0.4150 +23270 80279 0.4560 +23270 94239 0.4180 +23270 220388 0.4060 +23270 221294 0.5180 +23270 266812 0.7120 +23270 552889 0.4160 +23271 23303 0.4020 +23271 23332 0.5470 +23271 23499 0.4810 +23271 26586 0.4940 +23271 51072 0.5330 +23271 51199 0.5440 +23271 55201 0.5160 +23271 55700 0.5670 +23271 57509 0.4160 +23271 57606 0.4480 +23271 57662 0.4940 +23271 59272 0.5600 +23271 79649 0.4220 +23271 79969 0.4050 +23271 80128 0.6220 +23271 83479 0.4640 +23271 140710 0.4630 +23271 150468 0.4980 +23271 157922 0.5390 +23271 283638 0.4740 +23271 284403 0.4080 +23271 284697 0.5040 +23271 347240 0.4940 +23271 646424 0.4550 +23272 25942 0.4220 +23272 27332 0.6730 +23272 51535 0.9990 +23272 54737 0.9980 +23272 55596 0.4300 +23272 55729 0.4860 +23272 79723 0.4570 +23272 90853 0.4330 +23272 91746 0.5800 +23272 197370 0.4040 +23272 100287404 0.4730 +23274 23339 0.5370 +23274 26191 0.6210 +23274 28955 0.8080 +23274 49856 0.4780 +23274 51106 0.7490 +23274 53347 0.5440 +23274 54521 0.4410 +23274 55254 0.5270 +23274 55626 0.5490 +23274 55683 0.4820 +23274 56946 0.4690 +23274 57609 0.4460 +23274 60468 0.6610 +23274 64135 0.6360 +23274 80018 0.6620 +23274 89870 0.4240 +23274 92017 0.4010 +23274 94103 0.4390 +23274 114904 0.6270 +23274 116028 0.4100 +23274 117289 0.6190 +23274 163486 0.5260 +23274 345611 0.4600 +23274 723961 0.4870 +23275 23509 0.9860 +23275 25994 0.4070 +23275 29058 0.4070 +23275 29104 0.5260 +23275 29954 0.4900 +23275 29980 0.5250 +23275 51006 0.4010 +23275 51102 0.5200 +23275 54039 0.5640 +23275 54059 0.7740 +23275 54507 0.4490 +23275 55343 0.6300 +23275 55720 0.5000 +23275 56913 0.5670 +23275 56983 0.5440 +23275 56999 0.6180 +23275 57188 0.4460 +23275 57710 0.4350 +23275 59271 0.5870 +23275 79875 0.4240 +23275 80070 0.6100 +23275 80731 0.4010 +23275 80781 0.6840 +23275 81792 0.4230 +23275 81794 0.5410 +23275 84869 0.4320 +23275 92949 0.7170 +23275 115939 0.6990 +23275 140766 0.4200 +23275 145173 0.9580 +23275 157869 0.4200 +23275 170384 0.6760 +23275 170689 0.4380 +23275 170690 0.4060 +23275 170691 0.6300 +23275 170692 0.4470 +23275 171019 0.4450 +23275 197258 0.4350 +23275 221981 0.4010 +23275 254863 0.4240 +23275 285203 0.4210 +23275 339366 0.4580 +23275 440574 0.4970 +23276 23386 0.5480 +23276 23510 0.6150 +23276 25979 0.4780 +23276 29072 0.4140 +23276 51479 0.4580 +23276 54455 0.4690 +23276 55336 0.4330 +23276 55727 0.4960 +23276 89874 0.4720 +23276 120863 0.4430 +23276 143187 0.4350 +23276 151903 0.5170 +23276 153090 0.4570 +23276 339768 0.5410 +23276 390212 0.4270 +23276 728586 0.4280 +23277 23322 0.4430 +23277 25790 0.4650 +23277 25921 0.4270 +23277 51004 0.4990 +23277 51805 0.4800 +23277 54439 0.4210 +23277 55210 0.4050 +23277 65018 0.4840 +23277 81889 0.7160 +23277 84229 0.4650 +23277 84334 0.5690 +23277 85476 0.4180 +23277 90417 0.5250 +23277 138009 0.6050 +23277 150274 0.4050 +23277 160760 0.4360 +23277 197335 0.4280 +23277 399909 0.4160 +23279 23360 0.6050 +23279 23511 0.9900 +23279 23534 0.6010 +23279 23592 0.5140 +23279 23636 0.9820 +23279 25909 0.9990 +23279 25929 0.4680 +23279 26097 0.5360 +23279 26953 0.4830 +23279 27031 0.4670 +23279 27130 0.4170 +23279 27161 0.4160 +23279 27436 0.5320 +23279 29015 0.4270 +23279 29107 0.6000 +23279 29894 0.4520 +23279 50628 0.4360 +23279 51182 0.4400 +23279 51362 0.4540 +23279 51496 0.4550 +23279 51501 0.4590 +23279 51692 0.5220 +23279 51808 0.4460 +23279 53371 0.9810 +23279 53981 0.5090 +23279 54830 0.5490 +23279 54881 0.4310 +23279 55110 0.6050 +23279 55143 0.5660 +23279 55167 0.4510 +23279 55339 0.4950 +23279 55706 0.9610 +23279 55746 0.9990 +23279 55795 0.4750 +23279 57122 0.9990 +23279 57187 0.5200 +23279 57510 0.5410 +23279 57727 0.5720 +23279 64682 0.4210 +23279 65109 0.5170 +23279 79023 0.9990 +23279 79228 0.5080 +23279 79711 0.4070 +23279 79760 0.4160 +23279 79833 0.4210 +23279 79841 0.4720 +23279 79902 0.9990 +23279 80145 0.5270 +23279 81608 0.4590 +23279 81929 0.9990 +23279 84128 0.6460 +23279 84248 0.4410 +23279 84271 0.5290 +23279 84321 0.6350 +23279 84324 0.6020 +23279 91181 0.4910 +23279 91252 0.4530 +23279 91754 0.4250 +23279 120892 0.5520 +23279 129401 0.9840 +23279 133482 0.4360 +23279 140609 0.4010 +23279 348995 0.9990 +23279 728343 0.5160 +23279 729857 0.7780 +23279 100101267 0.8000 +23283 23395 0.4630 +23283 23451 0.4320 +23283 23534 0.5660 +23283 25802 0.7600 +23283 25973 0.5140 +23283 26528 0.6310 +23283 29101 0.8310 +23283 29894 0.9640 +23283 51585 0.9540 +23283 51692 0.9780 +23283 53981 0.9670 +23283 54973 0.4980 +23283 55015 0.4270 +23283 55339 0.9560 +23283 55954 0.4200 +23283 56903 0.7160 +23283 57710 0.4990 +23283 58155 0.4870 +23283 58517 0.4100 +23283 64506 0.6160 +23283 64895 0.7310 +23283 79084 0.5500 +23283 79869 0.8170 +23283 80335 0.8810 +23283 81608 0.9850 +23283 84135 0.4250 +23283 84524 0.5840 +23283 84967 0.4960 +23283 124540 0.6330 +23283 134353 0.4120 +23283 136157 0.7740 +23283 139804 0.4460 +23283 143506 0.7740 +23283 144983 0.5240 +23283 159163 0.4640 +23283 196120 0.7740 +23283 221895 0.4950 +23283 376940 0.5090 +23283 378948 0.4590 +23283 378949 0.4610 +23283 378950 0.4610 +23283 378951 0.4640 +23283 390031 0.7740 +23283 390033 0.7740 +23283 441584 0.7740 +23283 642843 0.8720 +23283 643988 0.5300 +23283 100529063 0.6170 +23284 23507 0.5370 +23284 23513 0.5440 +23284 23639 0.5140 +23284 23767 0.9990 +23284 23768 0.9050 +23284 23769 0.7930 +23284 25878 0.5140 +23284 25960 0.6300 +23284 25987 0.5140 +23284 26011 0.9870 +23284 26018 0.5140 +23284 26045 0.6780 +23284 26050 0.6020 +23284 26099 0.9690 +23284 26103 0.5320 +23284 26254 0.5140 +23284 27091 0.5140 +23284 51284 0.5310 +23284 51311 0.5310 +23284 51764 0.5260 +23284 53353 0.5150 +23284 54106 0.5210 +23284 54331 0.5080 +23284 54413 0.4270 +23284 54674 0.5460 +23284 54829 0.5380 +23284 54839 0.5210 +23284 55144 0.5140 +23284 55222 0.5140 +23284 55227 0.5450 +23284 55366 0.5830 +23284 55367 0.5300 +23284 55379 0.5140 +23284 55631 0.5140 +23284 55714 0.9860 +23284 55914 0.5350 +23284 55970 0.4690 +23284 56262 0.5140 +23284 57408 0.5140 +23284 57451 0.9990 +23284 57463 0.5140 +23284 57497 0.5140 +23284 57502 0.4550 +23284 57554 0.5690 +23284 57555 0.4200 +23284 57611 0.5140 +23284 57622 0.5250 +23284 57631 0.5340 +23284 57633 0.5280 +23284 57689 0.6120 +23284 59283 0.5140 +23284 59284 0.5520 +23284 59345 0.9670 +23284 59350 0.5530 +23284 60506 0.5510 +23284 64101 0.5220 +23284 64922 0.5150 +23284 65078 0.5470 +23284 65999 0.5140 +23284 78999 0.5290 +23284 79414 0.5270 +23284 79442 0.5140 +23284 79705 0.5140 +23284 79870 0.4780 +23284 79883 0.5140 +23284 80059 0.6460 +23284 80131 0.5140 +23284 81543 0.5510 +23284 81793 0.5210 +23284 83450 0.5140 +23284 83544 0.5140 +23284 83938 0.5870 +23284 84125 0.5150 +23284 84189 0.5250 +23284 84230 0.5140 +23284 84435 0.6300 +23284 84631 0.5410 +23284 84859 0.5230 +23284 84894 0.5210 +23284 85444 0.5140 +23284 90249 0.9730 +23284 90506 0.5140 +23284 90678 0.5140 +23284 94030 0.5400 +23284 94235 0.5010 +23284 114548 0.5140 +23284 114798 0.5410 +23284 114990 0.5180 +23284 115399 0.5140 +23284 116064 0.5140 +23284 116135 0.5660 +23284 116844 0.5140 +23284 121227 0.5210 +23284 122042 0.5510 +23284 122769 0.5140 +23284 122786 0.9670 +23284 123355 0.5140 +23284 126206 0.5140 +23284 126364 0.5140 +23284 126755 0.5140 +23284 127255 0.5140 +23284 127435 0.5150 +23284 131578 0.5140 +23284 136332 0.5490 +23284 137970 0.9870 +23284 139065 0.5270 +23284 143570 0.5140 +23284 145581 0.5310 +23284 146760 0.5390 +23284 149466 0.5140 +23284 150356 0.5180 +23284 158038 0.5430 +23284 164312 0.5140 +23284 166647 0.6250 +23284 202500 0.5140 +23284 204801 0.5140 +23284 219527 0.5170 +23284 219699 0.4160 +23284 220074 0.5870 +23284 220416 0.5140 +23284 222229 0.5140 +23284 222643 0.9690 +23284 254050 0.5140 +23284 255239 0.4280 +23284 255252 0.5140 +23284 284004 0.7520 +23284 285313 0.5260 +23284 337977 0.5140 +23284 337978 0.5140 +23284 338323 0.5140 +23284 339291 0.5140 +23284 339398 0.5240 +23284 339977 0.5140 +23284 340745 0.5140 +23284 341883 0.5140 +23284 344657 0.5140 +23284 345193 0.5730 +23284 346562 0.7520 +23284 347730 0.5960 +23284 347731 0.5930 +23284 347902 0.5140 +23284 349667 0.5390 +23284 374819 0.5140 +23284 375387 0.5140 +23284 376132 0.5140 +23284 386724 0.5140 +23284 389816 0.5140 +23284 390205 0.5140 +23284 401387 0.5260 +23284 440699 0.5140 +23284 441381 0.5140 +23284 474170 0.5140 +23284 474354 0.5140 +23284 645191 0.5140 +23284 646019 0.4730 +23284 647264 0.5140 +23284 654429 0.5930 +23284 100130733 0.5510 +23284 100505591 0.5510 +23284 100506049 0.5140 +23284 100507050 0.5170 +23284 105372280 0.4690 +23284 105378803 0.5140 +23284 112267897 0.5140 +23286 23304 0.5070 +23286 23513 0.4370 +23286 25937 0.4520 +23286 26524 0.9700 +23286 51421 0.4590 +23286 55233 0.5450 +23286 55534 0.5210 +23286 60485 0.8540 +23286 64084 0.4450 +23286 64398 0.6720 +23286 79981 0.8730 +23286 84441 0.5210 +23286 84552 0.4350 +23286 84612 0.7170 +23286 92105 0.7850 +23286 92597 0.4310 +23286 92714 0.4180 +23286 94030 0.4240 +23286 122786 0.9630 +23286 154796 0.8870 +23286 154810 0.7910 +23286 197131 0.5070 +23286 317762 0.4540 +23286 440093 0.4870 +23286 440686 0.4870 +23286 613212 0.7640 +23286 653604 0.4870 +23286 728586 0.7670 +23287 25809 0.6120 +23287 60560 0.4450 +23287 64426 0.4190 +23287 79739 0.4420 +23287 119587 0.6680 +23287 150465 0.6500 +23287 158135 0.4340 +23287 254173 0.4620 +23287 374969 0.4810 +23288 23510 0.4470 +23288 55260 0.4790 +23288 57597 0.4720 +23288 64327 0.4370 +23288 64927 0.7000 +23288 84455 0.9940 +23288 89796 0.4500 +23288 114987 0.4070 +23288 116379 0.4120 +23288 117584 0.5220 +23288 132884 0.8840 +23288 137392 0.5910 +23288 145282 0.4310 +23288 153657 0.7610 +23288 168507 0.4060 +23288 285600 0.6100 +23288 402635 0.4270 +23288 100287898 0.5940 +23291 23528 0.4250 +23291 25777 0.7290 +23291 25820 0.6730 +23291 25937 0.9280 +23291 26224 0.4460 +23291 26232 0.9190 +23291 26259 0.4140 +23291 26271 0.9650 +23291 26272 0.9320 +23291 26273 0.4160 +23291 27250 0.7800 +23291 29904 0.7870 +23291 50813 0.5400 +23291 51271 0.4020 +23291 51619 0.8240 +23291 54101 0.4990 +23291 54461 0.4640 +23291 54764 0.4320 +23291 54926 0.4820 +23291 55031 0.8460 +23291 55294 0.9180 +23291 55832 0.6560 +23291 55893 0.4610 +23291 57695 0.7280 +23291 57697 0.4540 +23291 63967 0.7800 +23291 64798 0.6750 +23291 79155 0.5350 +23291 79365 0.4290 +23291 79866 0.5800 +23291 83593 0.8030 +23291 84919 0.4870 +23291 92181 0.4960 +23291 114088 0.6530 +23291 123879 0.4990 +23291 139067 0.4360 +23291 139285 0.7880 +23291 143384 0.5220 +23291 283742 0.4070 +23291 285231 0.4480 +23291 286151 0.9000 +23291 619279 0.4310 +23291 102800317 0.4760 +23293 23294 0.5200 +23293 23381 0.9960 +23293 23644 0.4740 +23293 23708 0.4140 +23293 26019 0.9530 +23293 26986 0.9320 +23293 26995 0.4170 +23293 27067 0.4400 +23293 51594 0.5660 +23293 54433 0.5820 +23293 54464 0.8780 +23293 54552 0.5700 +23293 54828 0.4290 +23293 55110 0.6470 +23293 55135 0.8050 +23293 55181 0.9370 +23293 55226 0.5930 +23293 55345 0.4880 +23293 55505 0.8280 +23293 55629 0.8530 +23293 55651 0.8170 +23293 55802 0.8270 +23293 55869 0.5250 +23293 56006 0.9440 +23293 65109 0.9030 +23293 65110 0.9850 +23293 80149 0.4740 +23293 80169 0.5250 +23293 80774 0.4090 +23293 84305 0.4010 +23293 84439 0.4370 +23293 93643 0.7070 +23293 115752 0.4720 +23293 129563 0.6290 +23293 134353 0.5430 +23293 167227 0.6790 +23293 283129 0.4120 +23293 283847 0.4540 +23293 388969 0.4690 +23294 23382 0.4550 +23294 23510 0.5170 +23294 28999 0.4060 +23294 50619 0.4710 +23294 51050 0.4670 +23294 54828 0.4420 +23294 54887 0.5080 +23294 55222 0.5190 +23294 57184 0.4690 +23294 123096 0.4830 +23294 126432 0.4860 +23294 153090 0.7710 +23294 157567 0.4910 +23294 221692 0.4520 +23294 222663 0.5800 +23294 283212 0.5160 +23294 389558 0.5140 +23294 401548 0.4850 +23295 27252 0.4800 +23295 51451 0.4770 +23295 51728 0.4870 +23295 55669 0.5300 +23295 55718 0.4260 +23295 56246 0.4220 +23295 79754 0.4890 +23295 83737 0.5000 +23295 92552 0.5720 +23295 124402 0.4240 +23295 140460 0.5110 +23295 157567 0.7840 +23295 730094 0.5110 +23299 23353 0.4450 +23299 23594 0.4260 +23299 25782 0.5790 +23299 29911 0.4830 +23299 51143 0.9990 +23299 51164 0.6840 +23299 51199 0.6880 +23299 51361 0.7180 +23299 51560 0.7320 +23299 54820 0.6830 +23299 54908 0.5380 +23299 55746 0.6770 +23299 55860 0.7290 +23299 57180 0.4040 +23299 64768 0.4390 +23299 65055 0.4180 +23299 81554 0.5080 +23299 81565 0.6790 +23299 84084 0.4140 +23299 84376 0.8840 +23299 84516 0.6450 +23299 91754 0.9240 +23299 92558 0.8300 +23299 93661 0.4990 +23299 140609 0.7750 +23299 140735 0.6190 +23299 146439 0.6220 +23299 161176 0.5090 +23299 161753 0.4870 +23299 161829 0.7330 +23299 285331 0.4990 +23299 374654 0.4240 +23299 552889 0.4250 +23299 653857 0.4180 +23299 729857 0.8950 +23300 23379 0.4460 +23300 51149 0.4350 +23300 51366 0.7900 +23300 54915 0.5380 +23300 56852 0.4380 +23300 56897 0.6780 +23300 84890 0.4610 +23300 92291 0.4720 +23300 140735 0.6210 +23301 23384 0.6070 +23301 23600 0.4260 +23301 23607 0.5520 +23301 26509 0.4690 +23301 27232 0.4280 +23301 27295 0.6120 +23301 29964 0.5510 +23301 29993 0.6470 +23301 30844 0.6460 +23301 30845 0.9810 +23301 30846 0.9960 +23301 49855 0.4320 +23301 51057 0.4490 +23301 53904 0.5510 +23301 55081 0.4700 +23301 55190 0.8200 +23301 55604 0.5420 +23301 55805 0.4140 +23301 56940 0.5400 +23301 60528 0.4280 +23301 64145 0.7260 +23301 64236 0.6120 +23301 83700 0.5670 +23301 83715 0.5570 +23301 84700 0.4550 +23301 85414 0.4590 +23301 85439 0.4710 +23301 92521 0.5790 +23301 116985 0.4620 +23301 219537 0.5540 +23301 221895 0.5930 +23301 254102 0.6200 +23301 342527 0.5540 +23301 353116 0.5040 +23301 399665 0.4500 +23302 55220 0.4750 +23302 57697 0.8790 +23302 79694 0.4410 +23302 79838 0.4220 +23302 79953 0.4550 +23302 83592 0.4140 +23302 84966 0.4260 +23302 91461 0.4020 +23302 124925 0.4150 +23302 285533 0.4790 +23303 24137 0.4820 +23303 26153 0.6100 +23303 26286 0.5090 +23303 29127 0.4200 +23303 51594 0.5130 +23303 53407 0.5470 +23303 54820 0.6350 +23303 55083 0.6040 +23303 55582 0.6160 +23303 55605 0.6320 +23303 55614 0.6930 +23303 55738 0.5040 +23303 55803 0.5320 +23303 55850 0.5000 +23303 56992 0.6190 +23303 57576 0.6340 +23303 60561 0.5040 +23303 63971 0.5650 +23303 64837 0.6370 +23303 81565 0.6540 +23303 81930 0.6370 +23303 83742 0.4080 +23303 84364 0.5040 +23303 84643 0.5800 +23303 89953 0.5100 +23303 90990 0.6390 +23303 124602 0.6120 +23303 146909 0.6120 +23303 147700 0.5400 +23303 221458 0.5740 +23303 285643 0.4730 +23303 374654 0.6160 +23304 23352 0.8820 +23304 23358 0.4830 +23304 23369 0.4300 +23304 25831 0.5090 +23304 26043 0.5710 +23304 26046 0.5740 +23304 29979 0.4050 +23304 51035 0.5250 +23304 51257 0.4540 +23304 51322 0.4320 +23304 51366 0.7250 +23304 54878 0.5350 +23304 55093 0.7900 +23304 55148 0.6480 +23304 55236 0.4540 +23304 56254 0.4760 +23304 56852 0.4620 +23304 57448 0.4360 +23304 57546 0.4340 +23304 63893 0.6220 +23304 64844 0.4180 +23304 65264 0.6130 +23304 79670 0.4940 +23304 80124 0.5380 +23304 80204 0.5330 +23304 84245 0.4030 +23304 84444 0.4700 +23304 84498 0.4510 +23304 84961 0.5640 +23304 114803 0.4940 +23304 123803 0.7310 +23304 148581 0.5870 +23304 149041 0.4250 +23304 197131 0.8350 +23304 223082 0.4270 +23304 339669 0.4220 +23304 400629 0.4080 +23305 23410 0.5630 +23305 27034 0.4120 +23305 27349 0.4050 +23305 28976 0.4200 +23305 51179 0.4250 +23305 51703 0.6380 +23305 51735 0.4340 +23305 54363 0.4100 +23305 54995 0.4560 +23305 55326 0.4080 +23305 55554 0.4760 +23305 55902 0.5330 +23305 56894 0.4140 +23305 56990 0.6030 +23305 57104 0.7170 +23305 79888 0.4540 +23305 79966 0.4420 +23305 80339 0.7160 +23305 80347 0.6470 +23305 80724 0.4640 +23305 81616 0.7160 +23305 84129 0.4540 +23305 84263 0.5090 +23305 84532 0.6560 +23305 84649 0.4680 +23305 84803 0.4040 +23305 119548 0.6410 +23305 126129 0.7630 +23305 129642 0.5730 +23305 132949 0.7800 +23305 133482 0.4040 +23305 137964 0.4210 +23305 140856 0.4130 +23305 254531 0.4470 +23305 376497 0.5600 +23305 109703458 0.4770 +23306 26150 0.4630 +23306 55789 0.5660 +23306 57569 0.4560 +23306 63979 0.5310 +23306 64793 0.5350 +23306 79807 0.5030 +23306 80025 0.5020 +23306 80346 0.5040 +23306 84220 0.4080 +23306 84318 0.6180 +23306 91057 0.4870 +23306 124402 0.6460 +23306 195828 0.4710 +23306 283991 0.4570 +23306 284992 0.5540 +23306 440956 0.4270 +23306 729857 0.7660 +23307 23317 0.4930 +23307 23325 0.8100 +23307 23384 0.4860 +23307 28952 0.5100 +23307 51019 0.5210 +23307 51661 0.5130 +23307 51699 0.7990 +23307 54520 0.5710 +23307 54850 0.5100 +23307 55075 0.4850 +23307 55737 0.7930 +23307 55773 0.5430 +23307 57182 0.4860 +23307 57498 0.4750 +23307 63943 0.4570 +23307 65055 0.4240 +23307 79738 0.4230 +23307 81609 0.4390 +23307 83594 0.4870 +23307 112936 0.4730 +23307 140290 0.4860 +23307 253725 0.8860 +23307 387680 0.6730 +23307 100287171 0.6830 +23308 23495 0.6710 +23308 29126 0.8060 +23308 29851 0.9990 +23308 29947 0.4780 +23308 30009 0.5010 +23308 30817 0.4370 +23308 50615 0.5950 +23308 50943 0.6150 +23308 51284 0.4040 +23308 54106 0.4230 +23308 59067 0.4160 +23308 64115 0.5180 +23308 79679 0.8390 +23308 80380 0.7420 +23308 80381 0.8220 +23308 83878 0.4590 +23308 84868 0.6860 +23308 85480 0.5970 +23308 115650 0.5210 +23308 126259 0.5930 +23308 149041 0.5540 +23308 151888 0.6860 +23308 169355 0.4770 +23308 201633 0.4460 +23308 374383 0.5510 +23309 23411 0.5010 +23309 23512 0.4980 +23309 23613 0.4030 +23309 25855 0.9520 +23309 25942 0.9930 +23309 26523 0.4440 +23309 27327 0.4160 +23309 29115 0.5630 +23309 51230 0.5770 +23309 51317 0.4940 +23309 51564 0.4630 +23309 51742 0.9930 +23309 53615 0.4080 +23309 54145 0.5260 +23309 54556 0.5520 +23309 54815 0.4840 +23309 55170 0.5390 +23309 55182 0.6360 +23309 55257 0.6090 +23309 55766 0.5360 +23309 55869 0.6370 +23309 55904 0.6400 +23309 55957 0.4470 +23309 56946 0.9060 +23309 56987 0.5380 +23309 57459 0.4640 +23309 57649 0.9960 +23309 57659 0.4160 +23309 57798 0.8830 +23309 58508 0.5570 +23309 58516 0.9380 +23309 64426 0.9990 +23309 79142 0.8150 +23309 79595 0.9250 +23309 79685 0.8050 +23309 79718 0.5820 +23309 79885 0.4490 +23309 80205 0.5730 +23309 80232 0.5250 +23309 80312 0.6400 +23309 83855 0.4920 +23309 83933 0.4580 +23309 84289 0.4380 +23309 84312 0.9470 +23309 84617 0.4340 +23309 84629 0.8300 +23309 84661 0.5920 +23309 84942 0.4930 +23309 85236 0.5260 +23309 85441 0.5380 +23309 90316 0.5690 +23309 94239 0.5340 +23309 96764 0.5160 +23309 128312 0.5260 +23309 132660 0.4160 +23309 161882 0.5480 +23309 192669 0.4390 +23309 192670 0.4440 +23309 221937 0.8260 +23309 255626 0.5260 +23309 257236 0.4040 +23309 284434 0.4430 +23309 286826 0.5260 +23309 388284 0.4050 +23309 474382 0.5360 +23309 653604 0.6820 +23309 728294 0.4360 +23309 100316904 0.5030 +23309 100532731 0.4240 +23310 23397 0.9940 +23310 24137 0.5780 +23310 25836 0.4200 +23310 29028 0.4590 +23310 29087 0.4410 +23310 29781 0.9990 +23310 51071 0.4190 +23310 54069 0.4380 +23310 54145 0.5590 +23310 54892 0.9990 +23310 55215 0.4710 +23310 55262 0.5060 +23310 55766 0.5010 +23310 55839 0.4990 +23310 56852 0.7840 +23310 57082 0.4260 +23310 63925 0.4410 +23310 64151 0.9860 +23310 64210 0.4060 +23310 79023 0.4290 +23310 79608 0.4500 +23310 79648 0.8590 +23310 79677 0.5280 +23310 79768 0.4870 +23310 83540 0.4230 +23310 85236 0.5640 +23310 94239 0.5610 +23310 112936 0.4140 +23310 128312 0.5590 +23310 255626 0.5540 +23310 256691 0.4090 +23310 259266 0.5500 +23310 401466 0.4160 +23310 401934 0.4040 +23310 474382 0.5010 +23310 653247 0.4470 +23310 653604 0.6670 +23312 23335 0.9920 +23312 25782 0.9000 +23312 50617 0.4710 +23312 51606 0.6980 +23312 54476 0.4420 +23312 54726 0.5160 +23312 79641 0.9580 +23312 90423 0.4800 +23312 339302 0.4560 +23313 55286 0.4470 +23313 56673 0.5070 +23313 80817 0.4300 +23313 115749 0.4450 +23313 285527 0.6270 +23313 348235 0.4470 +23313 553115 0.4350 +23314 23316 0.6970 +23314 23394 0.4610 +23314 25942 0.4320 +23314 26137 0.5220 +23314 26468 0.6390 +23314 27319 0.4520 +23314 28514 0.4310 +23314 51531 0.4360 +23314 53407 0.4280 +23314 54474 0.6100 +23314 55079 0.7500 +23314 55351 0.4690 +23314 55363 0.4280 +23314 55800 0.4450 +23314 57030 0.5320 +23314 59286 0.4640 +23314 60529 0.6110 +23314 63973 0.5040 +23314 63974 0.7220 +23314 64919 0.8480 +23314 79923 0.5310 +23314 81853 0.4910 +23314 84525 0.4150 +23314 84830 0.4720 +23314 91107 0.5910 +23314 93986 0.5940 +23314 121340 0.4950 +23314 132884 0.4460 +23314 146713 0.5240 +23314 221833 0.4050 +23314 266727 0.4030 +23314 266743 0.4360 +23314 347853 0.6600 +23314 392255 0.4410 +23314 400566 0.5990 +23314 431707 0.6860 +23315 65010 0.6150 +23315 80195 0.4900 +23315 83697 0.4070 +23315 118813 0.4500 +23315 133308 0.8000 +23315 150159 0.5960 +23315 205428 0.4960 +23315 266743 0.4260 +23315 285335 0.5290 +23316 23595 0.5510 +23316 24141 0.4440 +23316 26468 0.5370 +23316 51232 0.4090 +23316 54084 0.6500 +23316 54838 0.4030 +23316 55079 0.7010 +23316 56925 0.4860 +23316 57030 0.4650 +23316 63973 0.4370 +23316 63974 0.4270 +23316 64919 0.6160 +23316 79776 0.4160 +23316 80018 0.5450 +23316 80212 0.4770 +23316 80724 0.5820 +23316 84628 0.4320 +23316 93986 0.5030 +23316 119032 0.4160 +23316 127833 0.4160 +23316 137970 0.4940 +23316 144717 0.8330 +23316 148281 0.4310 +23316 154664 0.5470 +23316 167410 0.4440 +23316 254263 0.4480 +23316 283450 0.4030 +23317 23325 0.5880 +23317 23400 0.7340 +23317 23768 0.4240 +23317 25793 0.6630 +23317 26020 0.4320 +23317 26058 0.6180 +23317 26278 0.4520 +23317 26610 0.4040 +23317 27429 0.6130 +23317 29058 0.7310 +23317 51019 0.4320 +23317 51142 0.6900 +23317 51385 0.4100 +23317 51699 0.6920 +23317 54431 0.5020 +23317 54832 0.7180 +23317 54877 0.4290 +23317 55192 0.4250 +23317 55735 0.4050 +23317 55737 0.9370 +23317 56521 0.5410 +23317 57182 0.4690 +23317 65018 0.6540 +23317 79608 0.6510 +23317 79962 0.4480 +23317 80208 0.5740 +23317 80331 0.5390 +23317 81609 0.6870 +23317 93953 0.4040 +23317 112936 0.5300 +23317 116442 0.6110 +23317 120526 0.4570 +23317 120892 0.6250 +23317 131118 0.5480 +23317 387680 0.4550 +23317 391356 0.5780 +23317 548645 0.4010 +23318 23405 0.7290 +23318 26065 0.4920 +23318 26523 0.4600 +23318 26986 0.6090 +23318 27161 0.6620 +23318 27257 0.5220 +23318 29102 0.6780 +23318 29883 0.4040 +23318 54464 0.6270 +23318 54487 0.5150 +23318 56478 0.4210 +23318 56903 0.8680 +23318 57510 0.4510 +23318 64282 0.7590 +23318 64852 0.6230 +23318 64895 0.8970 +23318 79727 0.9960 +23318 80114 0.4250 +23318 90459 0.5310 +23318 115752 0.5940 +23318 116254 0.4280 +23318 129563 0.8960 +23318 144233 0.4150 +23318 154197 0.4670 +23318 389421 0.9490 +23321 26747 0.4430 +23321 50852 0.5820 +23321 51619 0.4730 +23321 54332 0.4200 +23321 54765 0.5720 +23321 79628 0.4210 +23321 80131 0.6500 +23321 84057 0.6660 +23321 90678 0.4490 +23321 140885 0.6740 +23321 152015 0.4020 +23321 203062 0.4390 +23321 340811 0.4220 +23322 23746 0.5460 +23322 25861 0.5740 +23322 26005 0.5560 +23322 26064 0.4860 +23322 26123 0.6950 +23322 26146 0.4010 +23322 26160 0.6340 +23322 27031 0.9410 +23322 27077 0.8700 +23322 27130 0.7500 +23322 27241 0.5360 +23322 51098 0.4520 +23322 51134 0.4470 +23322 51259 0.9590 +23322 51524 0.6210 +23322 51684 0.5340 +23322 54806 0.9410 +23322 54875 0.4510 +23322 54903 0.8930 +23322 55081 0.4470 +23322 55212 0.6080 +23322 55755 0.6280 +23322 55764 0.5050 +23322 55812 0.6150 +23322 56033 0.4240 +23322 56623 0.4130 +23322 56751 0.5490 +23322 57096 0.5310 +23322 57539 0.4410 +23322 57545 0.9730 +23322 57560 0.4790 +23322 57728 0.7010 +23322 63929 0.4040 +23322 64072 0.4260 +23322 64400 0.4060 +23322 65062 0.8760 +23322 65217 0.4560 +23322 65250 0.6810 +23322 79068 0.8100 +23322 79140 0.4250 +23322 79190 0.6970 +23322 79191 0.6810 +23322 79192 0.5630 +23322 79583 0.8910 +23322 79598 0.6910 +23322 79600 0.8060 +23322 79659 0.5090 +23322 79738 0.6970 +23322 79809 0.7010 +23322 79848 0.6640 +23322 79858 0.4160 +23322 79867 0.8360 +23322 79902 0.4580 +23322 80173 0.6250 +23322 80184 0.9810 +23322 80318 0.4450 +23322 80776 0.8270 +23322 81554 0.4440 +23322 84059 0.4730 +23322 84314 0.6470 +23322 84662 0.4550 +23322 90410 0.5750 +23322 91147 0.9750 +23322 91754 0.6100 +23322 95681 0.6710 +23322 112752 0.4060 +23322 117177 0.6470 +23322 117531 0.4140 +23322 129880 0.5300 +23322 132884 0.4660 +23322 164045 0.6420 +23322 166379 0.7220 +23322 167691 0.6310 +23322 200728 0.7300 +23322 200894 0.9030 +23322 203286 0.4820 +23322 219854 0.5730 +23322 261734 0.9990 +23322 283232 0.4860 +23322 284086 0.6460 +23322 343035 0.4360 +23322 344752 0.4330 +23322 374654 0.5880 +23322 387707 0.4960 +23322 392509 0.4200 +23324 27163 0.6510 +23324 29118 0.4490 +23324 29952 0.4060 +23324 54414 0.6360 +23324 55343 0.4130 +23324 55556 0.4670 +23324 55568 0.4260 +23324 55654 0.4610 +23324 55856 0.4320 +23324 79786 0.4430 +23324 79932 0.4350 +23324 84918 0.4470 +23324 91663 0.4440 +23324 124626 0.4580 +23324 200014 0.4500 +23325 23607 0.4150 +23325 27131 0.4910 +23325 28952 0.4620 +23325 51019 0.9990 +23325 51699 0.7330 +23325 54520 0.7250 +23325 55737 0.8020 +23325 55845 0.4990 +23325 57020 0.5230 +23325 58533 0.4950 +23325 81609 0.7100 +23325 112936 0.5710 +23325 197131 0.5420 +23325 253725 0.9990 +23325 255374 0.4470 +23325 387680 0.9880 +23325 100287171 0.9990 +23326 23411 0.9330 +23326 23450 0.6610 +23326 23476 0.5930 +23326 26009 0.7800 +23326 27097 0.9890 +23326 27443 0.4500 +23326 29126 0.6940 +23326 29761 0.5470 +23326 51377 0.4420 +23326 51562 0.7320 +23326 51616 0.9930 +23326 51633 0.4400 +23326 54107 0.7220 +23326 54145 0.7570 +23326 54629 0.4350 +23326 55578 0.9870 +23326 55611 0.5070 +23326 55689 0.7800 +23326 55793 0.4620 +23326 56254 0.6740 +23326 56655 0.7200 +23326 56943 0.9990 +23326 56957 0.4270 +23326 56970 0.9990 +23326 57325 0.7820 +23326 57599 0.4090 +23326 57646 0.6340 +23326 60496 0.7430 +23326 79595 0.8000 +23326 79608 0.4180 +23326 83443 0.6960 +23326 84182 0.4580 +23326 85235 0.5500 +23326 85236 0.8700 +23326 92815 0.5500 +23326 93624 0.9760 +23326 112869 0.9980 +23326 114803 0.6080 +23326 117143 0.9840 +23326 126119 0.4330 +23326 127002 0.8880 +23326 128312 0.8730 +23326 158983 0.7570 +23326 161725 0.4810 +23326 220213 0.4310 +23326 221302 0.7390 +23326 221613 0.5500 +23326 222255 0.8890 +23326 255626 0.8710 +23326 286436 0.7570 +23326 317772 0.5500 +23326 374395 0.4760 +23326 389856 0.4320 +23326 440093 0.4050 +23326 440686 0.4050 +23326 440689 0.8730 +23326 552889 0.6410 +23326 653604 0.6280 +23326 100532731 0.4210 +23326 114483833 0.7570 +23327 23439 0.5040 +23327 23558 0.8720 +23327 23678 0.8090 +23327 25937 0.5740 +23327 25978 0.5200 +23327 26994 0.6800 +23327 27106 0.4040 +23327 27183 0.6560 +23327 27243 0.5770 +23327 27338 0.7890 +23327 27347 0.4200 +23327 29116 0.4800 +23327 29761 0.4440 +23327 29978 0.4120 +23327 29979 0.4380 +23327 51088 0.4890 +23327 51160 0.6630 +23327 51271 0.5570 +23327 51377 0.6330 +23327 51434 0.4680 +23327 51510 0.5740 +23327 51534 0.5900 +23327 51652 0.5900 +23327 51806 0.5620 +23327 54778 0.4150 +23327 55048 0.5510 +23327 55182 0.4090 +23327 55236 0.4970 +23327 55521 0.4760 +23327 55611 0.4120 +23327 55656 0.4340 +23327 55658 0.5210 +23327 55666 0.4290 +23327 55780 0.4390 +23327 55867 0.5600 +23327 57154 0.4850 +23327 57561 0.8550 +23327 57630 0.4770 +23327 57646 0.4080 +23327 64750 0.6690 +23327 65018 0.7020 +23327 65125 0.8700 +23327 65266 0.7910 +23327 65267 0.6850 +23327 65268 0.5400 +23327 79056 0.5070 +23327 79057 0.6250 +23327 79643 0.6300 +23327 79720 0.5840 +23327 79754 0.4640 +23327 80267 0.4940 +23327 80762 0.9150 +23327 84876 0.4040 +23327 89853 0.5840 +23327 91782 0.5200 +23327 91860 0.5650 +23327 91947 0.6010 +23327 92421 0.5670 +23327 92714 0.6450 +23327 93343 0.5870 +23327 114907 0.4310 +23327 118424 0.4440 +23327 121665 0.4450 +23327 128866 0.5640 +23327 130271 0.4920 +23327 137492 0.5600 +23327 154796 0.9920 +23327 154810 0.6790 +23327 155382 0.4990 +23327 162461 0.4220 +23327 163688 0.5620 +23327 165918 0.4840 +23327 197131 0.4980 +23327 221302 0.5150 +23327 645432 0.5790 +23327 729857 0.4210 +23327 100506658 0.4760 +23328 29115 0.5060 +23328 51166 0.4040 +23328 51495 0.4120 +23328 51562 0.4330 +23328 54516 0.4220 +23328 54674 0.4350 +23328 79723 0.5050 +23328 389432 0.9410 +23329 23592 0.4980 +23329 25771 0.4320 +23329 51256 0.4580 +23329 54536 0.5070 +23329 54662 0.5440 +23329 54843 0.4190 +23329 55296 0.4990 +23329 55633 0.5150 +23329 55773 0.4420 +23329 56675 0.5590 +23329 94134 0.4250 +23329 117177 0.4180 +23329 128637 0.4150 +23329 132299 0.4700 +23329 161514 0.4780 +23329 221687 0.4900 +23329 254272 0.4060 +23329 283349 0.4780 +23331 23760 0.4630 +23331 54962 0.4410 +23331 65989 0.6010 +23331 81570 0.4300 +23331 84296 0.4200 +23331 123169 0.4750 +23331 140733 0.4530 +23331 285148 0.5190 +23332 23354 0.6680 +23332 23499 0.6180 +23332 24137 0.4120 +23332 27436 0.5120 +23332 30011 0.4290 +23332 50807 0.4360 +23332 51143 0.4230 +23332 51164 0.4330 +23332 51199 0.5910 +23332 54801 0.6740 +23332 54848 0.4460 +23332 54930 0.5080 +23332 55142 0.4990 +23332 55521 0.5720 +23332 55559 0.4990 +23332 55605 0.4300 +23332 55638 0.5520 +23332 55700 0.4160 +23332 55835 0.7190 +23332 57606 0.5620 +23332 57821 0.4220 +23332 79441 0.5490 +23332 79866 0.5430 +23332 81930 0.5580 +23332 84643 0.9030 +23332 90102 0.7020 +23332 90417 0.6300 +23332 93323 0.6610 +23332 115106 0.5890 +23332 117177 0.5040 +23332 152789 0.5140 +23332 348235 0.4610 +23332 728642 0.5400 +23333 55259 0.4610 +23333 55720 0.4630 +23333 63905 0.4900 +23333 90121 0.4600 +23333 90141 0.5900 +23333 90249 0.4750 +23333 92949 0.4260 +23333 115939 0.5400 +23333 118670 0.4310 +23333 146822 0.4400 +23333 387129 0.5270 +23334 27244 0.6110 +23334 28956 0.6190 +23334 51256 0.5110 +23334 51382 0.4990 +23334 51606 0.4990 +23334 54468 0.8470 +23334 55004 0.6770 +23334 55846 0.9990 +23334 57521 0.5690 +23334 58528 0.6970 +23334 64121 0.7110 +23334 64223 0.5560 +23334 79726 0.9980 +23334 81929 0.8400 +23334 83667 0.9060 +23334 84219 0.9980 +23334 90423 0.4990 +23334 114898 0.5950 +23334 127124 0.4990 +23334 144577 0.9990 +23334 153129 0.4780 +23334 154743 0.9680 +23334 155066 0.4990 +23334 201163 0.4380 +23334 245972 0.5150 +23334 245973 0.4990 +23334 389541 0.7050 +23334 652968 0.7420 +23334 729438 0.6960 +23335 23626 0.4090 +23335 25782 0.8510 +23335 26297 0.4670 +23335 51606 0.7720 +23335 54039 0.4060 +23335 55102 0.4390 +23335 55275 0.4350 +23335 57614 0.4310 +23335 63934 0.4290 +23335 79641 0.8930 +23335 80331 0.6440 +23335 84317 0.7510 +23335 93643 0.4510 +23335 114987 0.4380 +23335 147007 0.4960 +23335 153339 0.4030 +23335 221303 0.4510 +23335 259230 0.4890 +23335 285381 0.4160 +23336 54518 0.5780 +23336 54967 0.5740 +23336 57463 0.4470 +23336 58529 0.5660 +23336 81493 0.8810 +23336 83660 0.9070 +23336 84033 0.4680 +23336 85477 0.4810 +23336 89884 0.7710 +23336 118461 0.4320 +23336 145814 0.4340 +23336 202333 0.5730 +23336 445815 0.4200 +23338 23522 0.4180 +23338 27154 0.5460 +23338 30849 0.4500 +23338 51147 0.9750 +23338 54520 0.4260 +23338 54556 0.7560 +23338 55195 0.4790 +23338 57062 0.4010 +23338 57646 0.4570 +23338 64769 0.9640 +23338 79490 0.4540 +23338 79960 0.6130 +23338 80755 0.5610 +23338 84289 0.9570 +23338 283643 0.4220 +23338 389333 0.4800 +23339 23355 0.9850 +23339 23383 0.4640 +23339 23431 0.5060 +23339 23673 0.8540 +23339 23710 0.4650 +23339 23761 0.4920 +23339 26276 0.9940 +23339 26985 0.5290 +23339 27072 0.9990 +23339 27183 0.5030 +23339 27243 0.4820 +23339 28956 0.4630 +23339 30849 0.4910 +23339 30968 0.4580 +23339 51209 0.6400 +23339 51479 0.5110 +23339 51542 0.4890 +23339 51560 0.7650 +23339 51622 0.9570 +23339 51699 0.4790 +23339 51806 0.4060 +23339 53917 0.4070 +23339 54455 0.4570 +23339 54468 0.6310 +23339 54785 0.5420 +23339 54832 0.4180 +23339 55014 0.9990 +23339 55040 0.4840 +23339 55275 0.4790 +23339 55294 0.4290 +23339 55610 0.4130 +23339 55737 0.6110 +23339 55823 0.9990 +23339 56850 0.6720 +23339 57403 0.4430 +23339 57617 0.9990 +23339 57724 0.5240 +23339 58485 0.4030 +23339 58528 0.5500 +23339 60412 0.6530 +23339 60684 0.4760 +23339 63894 0.7550 +23339 64121 0.7030 +23339 64145 0.6160 +23339 64284 0.5390 +23339 64601 0.9990 +23339 64786 0.4610 +23339 65082 0.9990 +23339 79726 0.5170 +23339 80700 0.6170 +23339 81545 0.4720 +23339 83547 0.5370 +23339 83548 0.4480 +23339 83871 0.4880 +23339 84084 0.7610 +23339 84219 0.5050 +23339 84315 0.7600 +23339 84932 0.4600 +23339 124997 0.4100 +23339 127829 0.5290 +23339 143187 0.9720 +23339 200576 0.5090 +23339 201163 0.4020 +23339 203062 0.4290 +23339 203245 0.4360 +23339 221079 0.5490 +23339 221960 0.9570 +23339 338382 0.6770 +23339 347517 0.7610 +23339 389541 0.4040 +23341 23521 0.5140 +23341 23770 0.4540 +23341 25789 0.4200 +23341 26589 0.4410 +23341 26608 0.4230 +23341 28998 0.4370 +23341 51032 0.5320 +23341 51182 0.4200 +23341 51202 0.4050 +23341 51277 0.5060 +23341 51314 0.4680 +23341 54901 0.4080 +23341 54979 0.4200 +23341 55696 0.5050 +23341 55727 0.4680 +23341 57110 0.4200 +23341 57129 0.4070 +23341 57470 0.4010 +23341 63875 0.4600 +23341 79814 0.4440 +23341 79908 0.4220 +23341 80273 0.6080 +23341 81570 0.4890 +23341 84545 0.4060 +23341 116835 0.5500 +23341 118461 0.4200 +23341 134266 0.4520 +23341 153222 0.4580 +23341 259217 0.4480 +23341 339416 0.4200 +23341 388633 0.4200 +23341 440138 0.4200 +23344 23592 0.4050 +23344 25923 0.5770 +23344 26031 0.4460 +23344 26049 0.4210 +23344 26092 0.4270 +23344 29843 0.4180 +23344 29984 0.5430 +23344 51009 0.7790 +23344 51062 0.5370 +23344 51109 0.6420 +23344 51635 0.4630 +23344 51669 0.6100 +23344 54509 0.5560 +23344 55240 0.4160 +23344 55333 0.4480 +23344 55770 0.4050 +23344 56924 0.4010 +23344 57488 0.9700 +23344 57605 0.5230 +23344 57620 0.6020 +23344 57655 0.5090 +23344 57719 0.4160 +23344 64225 0.4860 +23344 65124 0.4210 +23344 79139 0.6690 +23344 79180 0.4240 +23344 80115 0.4150 +23344 80728 0.4070 +23344 81566 0.4330 +23344 81839 0.4130 +23344 83850 0.9140 +23344 84872 0.4860 +23344 84876 0.6960 +23344 90522 0.6620 +23344 90956 0.4760 +23344 114879 0.5720 +23344 114882 0.6020 +23344 118932 0.4620 +23344 153733 0.7740 +23344 196996 0.5740 +23344 375346 0.6160 +23344 441631 0.4330 +23345 23353 0.9990 +23345 23363 0.4070 +23345 23463 0.5840 +23345 23592 0.7100 +23345 25777 0.9990 +23345 26011 0.5190 +23345 27127 0.5810 +23345 27161 0.5670 +23345 27185 0.6440 +23345 27445 0.5980 +23345 29109 0.9750 +23345 29119 0.4470 +23345 50511 0.5240 +23345 53353 0.6440 +23345 54462 0.5040 +23345 54464 0.4900 +23345 54867 0.4240 +23345 55081 0.4920 +23345 55129 0.4240 +23345 55750 0.4290 +23345 55802 0.4250 +23345 56158 0.4990 +23345 57122 0.4280 +23345 57474 0.4640 +23345 58508 0.5250 +23345 64478 0.4630 +23345 64837 0.5170 +23345 79026 0.4140 +23345 79188 0.5220 +23345 79624 0.4040 +23345 79633 0.6170 +23345 79776 0.5780 +23345 79789 0.6640 +23345 80129 0.4590 +23345 81565 0.5840 +23345 83872 0.5520 +23345 84033 0.6210 +23345 84524 0.4820 +23345 84823 0.5040 +23345 89953 0.4700 +23345 91147 0.4720 +23345 93426 0.5140 +23345 94025 0.6980 +23345 94033 0.4970 +23345 113146 0.4090 +23345 114788 0.6740 +23345 120114 0.4740 +23345 129446 0.4320 +23345 140732 0.8570 +23345 140836 0.5360 +23345 147700 0.5140 +23345 147872 0.8420 +23345 161176 0.9360 +23345 163183 0.9120 +23345 199953 0.4500 +23345 256126 0.4990 +23345 256979 0.9150 +23345 267012 0.4150 +23345 283129 0.4220 +23345 283847 0.4220 +23345 375790 0.4300 +23345 644186 0.4990 +23347 23512 0.4140 +23347 25836 0.4300 +23347 25909 0.5610 +23347 27136 0.4820 +23347 51132 0.4320 +23347 54551 0.4280 +23347 55023 0.5700 +23347 55506 0.4790 +23347 55791 0.9660 +23347 64863 0.6200 +23347 84034 0.8310 +23347 84955 0.6220 +23347 93343 0.6280 +23347 125997 0.5770 +23347 129868 0.5840 +23347 140686 0.4100 +23347 201516 0.5880 +23347 342900 0.4470 +23347 448831 0.4340 +23347 642597 0.4160 +23347 100129128 0.4440 +23347 100288687 0.8720 +23348 23433 0.4860 +23348 26499 0.5490 +23348 27237 0.4800 +23348 30813 0.6450 +23348 54509 0.4160 +23348 55619 0.6230 +23348 57381 0.6500 +23348 57647 0.8970 +23348 80005 0.5320 +23348 84627 0.5140 +23348 84708 0.4460 +23348 139818 0.6290 +23348 140432 0.4550 +23349 27146 0.4430 +23349 51449 0.4690 +23349 121549 0.4610 +23349 644139 0.4020 +23349 728577 0.4340 +23350 23435 0.5020 +23350 23450 0.8370 +23350 23451 0.9080 +23350 24148 0.5290 +23350 25836 0.4730 +23350 25957 0.5610 +23350 27332 0.7250 +23350 29896 0.8370 +23350 51366 0.4510 +23350 51574 0.4660 +23350 51602 0.5030 +23350 51639 0.6860 +23350 51663 0.4380 +23350 51691 0.4150 +23350 51747 0.7340 +23350 55015 0.4120 +23350 55094 0.4840 +23350 55119 0.4670 +23350 55206 0.5200 +23350 55421 0.5010 +23350 55660 0.9270 +23350 55749 0.7420 +23350 56259 0.6450 +23350 56949 0.4760 +23350 57187 0.8640 +23350 57721 0.4580 +23350 57794 0.6580 +23350 58517 0.6430 +23350 64062 0.4270 +23350 64848 0.4070 +23350 65110 0.4440 +23350 65117 0.4500 +23350 79002 0.4030 +23350 79811 0.5440 +23350 80155 0.4970 +23350 83443 0.5290 +23350 84844 0.8510 +23350 84950 0.4400 +23350 84991 0.9950 +23350 90324 0.5780 +23350 91746 0.5050 +23350 140890 0.4180 +23350 158431 0.4120 +23350 220988 0.4390 +23350 256536 0.5220 +23351 54464 0.4100 +23351 56829 0.9090 +23351 56948 0.4410 +23351 64718 0.4730 +23351 166647 0.4490 +23352 23358 0.4880 +23352 23476 0.5710 +23352 25831 0.5410 +23352 26043 0.5390 +23352 26046 0.4120 +23352 27159 0.4830 +23352 27161 0.4030 +23352 51035 0.5360 +23352 51255 0.7180 +23352 51270 0.4220 +23352 51366 0.7320 +23352 51806 0.8980 +23352 55093 0.4180 +23352 55148 0.5840 +23352 56888 0.9840 +23352 57448 0.4900 +23352 58508 0.4320 +23352 91860 0.8960 +23352 128822 0.6220 +23352 138716 0.4900 +23352 163688 0.8960 +23352 197131 0.8850 +23352 221302 0.4030 +23352 221937 0.4870 +23353 23463 0.6820 +23353 23476 0.4420 +23353 23592 0.6780 +23353 23626 0.6040 +23353 23636 0.5110 +23353 25777 0.9960 +23353 26092 0.5000 +23353 27127 0.7210 +23353 29109 0.4270 +23353 50511 0.7460 +23353 54363 0.4250 +23353 54386 0.6570 +23353 55226 0.7880 +23353 55666 0.4420 +23353 55746 0.5030 +23353 56158 0.5570 +23353 79188 0.4170 +23353 79789 0.6150 +23353 84072 0.4640 +23353 84823 0.8520 +23353 93426 0.5110 +23353 114026 0.4080 +23353 124404 0.4310 +23353 124817 0.6260 +23353 140732 0.7180 +23353 140836 0.6190 +23353 145645 0.8250 +23353 147872 0.9990 +23353 150280 0.5520 +23353 161176 0.9840 +23353 163183 0.9890 +23353 163590 0.5250 +23353 199953 0.9540 +23353 221496 0.5600 +23353 245711 0.9580 +23353 256126 0.5690 +23353 256979 0.6590 +23353 283129 0.8150 +23353 283847 0.9690 +23353 285498 0.4620 +23353 642636 0.4260 +23353 644186 0.5660 +23353 729857 0.4470 +23354 29070 0.4620 +23354 53916 0.4400 +23354 54801 0.9990 +23354 54820 0.5070 +23354 54930 0.9990 +23354 55125 0.6270 +23354 55142 0.9990 +23354 55559 0.9990 +23354 55722 0.5450 +23354 55755 0.5340 +23354 55835 0.5530 +23354 57655 0.4120 +23354 63922 0.4400 +23354 64105 0.4190 +23354 79171 0.4130 +23354 79441 0.9990 +23354 79866 0.5540 +23354 79894 0.6190 +23354 79959 0.5090 +23354 80184 0.5010 +23354 80321 0.6460 +23354 81930 0.4460 +23354 83540 0.4140 +23354 84131 0.5130 +23354 93323 0.9990 +23354 95681 0.5130 +23354 115106 0.9990 +23354 116840 0.4400 +23354 116841 0.4360 +23354 117177 0.4990 +23354 121441 0.8690 +23354 134359 0.4540 +23354 152185 0.6270 +23354 203068 0.5360 +23354 256364 0.4090 +23354 347240 0.5230 +23354 728642 0.5740 +23355 26276 0.9700 +23355 27072 0.8980 +23355 27243 0.8900 +23355 51028 0.6870 +23355 51160 0.4860 +23355 51479 0.5860 +23355 51542 0.4490 +23355 51622 0.7210 +23355 51699 0.4700 +23355 53917 0.5060 +23355 55014 0.4710 +23355 55647 0.4970 +23355 55697 0.5230 +23355 55737 0.5370 +23355 55823 0.9990 +23355 56850 0.4140 +23355 57403 0.5900 +23355 57617 0.9990 +23355 60412 0.4730 +23355 60684 0.5130 +23355 63894 0.6470 +23355 64145 0.5560 +23355 64284 0.4970 +23355 64601 0.9990 +23355 65082 0.9910 +23355 79719 0.4280 +23355 81545 0.5110 +23355 83548 0.4140 +23355 84313 0.5650 +23355 84315 0.5950 +23355 200576 0.4180 +23355 221960 0.7200 +23357 25929 0.4820 +23357 29883 0.4250 +23357 29954 0.7540 +23357 55308 0.5210 +23357 56478 0.4890 +23357 57146 0.4410 +23357 79188 0.5520 +23357 84231 0.4300 +23357 84330 0.4200 +23357 114034 0.4140 +23357 149603 0.4950 +23357 154197 0.4640 +23357 221078 0.4590 +23358 51185 0.4120 +23358 51377 0.4270 +23358 54726 0.4690 +23358 54764 0.4880 +23358 55031 0.4780 +23358 55277 0.4120 +23358 55593 0.4860 +23358 55611 0.4970 +23358 57381 0.4380 +23358 57448 0.4260 +23358 59269 0.8000 +23358 80124 0.4190 +23358 84132 0.5400 +23358 84196 0.4280 +23358 114803 0.4820 +23358 155435 0.5270 +23358 200008 0.8900 +23358 200576 0.4550 +23358 220213 0.4080 +23358 221302 0.5960 +23358 255738 0.4070 +23359 25789 0.4360 +23359 145773 0.4510 +23359 165215 0.4490 +23359 256957 0.4270 +23359 284339 0.4600 +23359 285498 0.4060 +23359 342850 0.4190 +23359 375057 0.4540 +23359 388021 0.4780 +23359 392843 0.6050 +23359 641649 0.4050 +23359 643965 0.4880 +23360 23451 0.4590 +23360 23500 0.5940 +23360 23788 0.4610 +23360 25957 0.6380 +23360 29109 0.5240 +23360 55082 0.4190 +23360 55660 0.6070 +23360 58517 0.4710 +23360 79841 0.5270 +23360 81624 0.5550 +23360 85462 0.4540 +23360 91010 0.6160 +23360 114793 0.5890 +23360 114823 0.6200 +23360 120071 0.4840 +23360 124245 0.5550 +23360 140890 0.5560 +23360 151613 0.4190 +23360 342184 0.5950 +23360 345456 0.5300 +23360 375189 0.5330 +23360 392862 0.6350 +23361 23774 0.4940 +23361 26227 0.4120 +23361 27154 0.4360 +23361 27332 0.5040 +23361 51185 0.6640 +23361 51230 0.6510 +23361 54542 0.4130 +23361 54665 0.5420 +23361 55432 0.7880 +23361 55666 0.5850 +23361 55929 0.4550 +23361 56943 0.5470 +23361 56970 0.5160 +23361 57805 0.4180 +23361 84101 0.7840 +23361 114548 0.4590 +23361 133482 0.4180 +23361 161725 0.7400 +23361 161882 0.4450 +23361 221302 0.8560 +23361 440093 0.4170 +23361 440686 0.4170 +23361 653604 0.4160 +23362 54872 0.4760 +23362 63898 0.4030 +23362 84750 0.4020 +23362 153396 0.5290 +23363 23481 0.6890 +23363 23499 0.5300 +23363 23517 0.5410 +23363 23560 0.5190 +23363 25885 0.4130 +23363 26156 0.4120 +23363 26259 0.9090 +23363 26270 0.4100 +23363 26354 0.4390 +23363 26574 0.4040 +23363 29889 0.5060 +23363 29926 0.4330 +23363 29997 0.4510 +23363 51154 0.4490 +23363 51602 0.5580 +23363 51637 0.5100 +23363 51663 0.5160 +23363 54475 0.5060 +23363 54606 0.4790 +23363 54881 0.5020 +23363 55127 0.4220 +23363 55149 0.4660 +23363 55153 0.4680 +23363 55234 0.5690 +23363 55379 0.5120 +23363 55759 0.4200 +23363 55832 0.4570 +23363 57418 0.5540 +23363 57538 0.4240 +23363 57696 0.4210 +23363 57719 0.4020 +23363 57763 0.4880 +23363 79009 0.5810 +23363 79026 0.6110 +23363 79039 0.5800 +23363 79050 0.4720 +23363 79080 0.5130 +23363 79586 0.4260 +23363 83894 0.4250 +23363 83987 0.9990 +23363 84154 0.6320 +23363 84365 0.6020 +23363 90102 0.4190 +23363 91807 0.5600 +23363 113878 0.4360 +23363 117246 0.5980 +23363 118460 0.5100 +23363 118461 0.5430 +23363 202333 0.4190 +23365 23654 0.9940 +23365 26499 0.4700 +23365 26575 0.5980 +23365 27127 0.4050 +23365 27289 0.7460 +23365 30835 0.9400 +23365 51764 0.4990 +23365 54331 0.5060 +23365 54499 0.5000 +23365 55970 0.5370 +23365 56924 0.4080 +23365 57082 0.4370 +23365 59345 0.5230 +23365 64283 0.9360 +23365 64407 0.5830 +23365 64778 0.4030 +23365 64779 0.5230 +23365 84135 0.4190 +23365 84324 0.4300 +23365 84687 0.4850 +23365 84960 0.4200 +23365 85397 0.5960 +23365 94235 0.4990 +23365 115557 0.6400 +23365 115708 0.4160 +23365 219699 0.4790 +23365 219902 0.5160 +23365 260425 0.5490 +23365 342909 0.4650 +23365 431704 0.6090 +23366 54462 0.4130 +23366 56108 0.4070 +23366 130162 0.4840 +23366 399474 0.4170 +23366 642475 0.4450 +23367 23476 0.4430 +23367 23608 0.4570 +23367 25983 0.4570 +23367 26057 0.4410 +23367 26058 0.4110 +23367 26135 0.7230 +23367 26986 0.9220 +23367 27161 0.5840 +23367 29889 0.4100 +23367 29896 0.4390 +23367 51386 0.4120 +23367 51574 0.5260 +23367 51661 0.5220 +23367 54542 0.5140 +23367 54606 0.5650 +23367 54971 0.4510 +23367 55132 0.7530 +23367 55337 0.4790 +23367 55342 0.4050 +23367 55760 0.4210 +23367 55802 0.4320 +23367 56257 0.4770 +23367 56829 0.4610 +23367 57521 0.7240 +23367 65083 0.4260 +23367 80153 0.5030 +23367 84250 0.4430 +23367 84365 0.4260 +23367 85437 0.6070 +23367 142940 0.4570 +23367 149041 0.6280 +23367 165545 0.4160 +23367 220988 0.5120 +23367 339983 0.4890 +23367 440093 0.5010 +23367 440686 0.5010 +23367 653604 0.5050 +23367 100532731 0.4670 +23368 26051 0.4580 +23368 26524 0.6870 +23368 27113 0.5990 +23368 55662 0.9010 +23368 64423 0.4100 +23368 79038 0.5650 +23368 79660 0.4540 +23368 133746 0.4710 +23368 154796 0.4600 +23368 317762 0.5910 +23369 23405 0.6860 +23369 23435 0.5310 +23369 23543 0.8140 +23369 25836 0.5030 +23369 26057 0.5340 +23369 26065 0.6490 +23369 26523 0.7120 +23369 26528 0.4650 +23369 26986 0.6110 +23369 27067 0.4950 +23369 27161 0.8570 +23369 27316 0.4200 +23369 27327 0.4210 +23369 29102 0.4670 +23369 29883 0.6420 +23369 29896 0.5760 +23369 49856 0.5010 +23369 51322 0.6050 +23369 51441 0.4040 +23369 51499 0.4100 +23369 51585 0.4850 +23369 54464 0.5820 +23369 54514 0.4080 +23369 54542 0.4170 +23369 54715 0.4380 +23369 54726 0.6590 +23369 54799 0.4700 +23369 54915 0.5230 +23369 55095 0.4250 +23369 55193 0.4080 +23369 55291 0.5620 +23369 55342 0.6570 +23369 56478 0.8480 +23369 56903 0.4180 +23369 56993 0.4280 +23369 57050 0.4670 +23369 57223 0.5410 +23369 57472 0.5950 +23369 57532 0.6170 +23369 57696 0.4350 +23369 60680 0.6300 +23369 64506 0.8000 +23369 64895 0.4700 +23369 66037 0.9100 +23369 79727 0.4070 +23369 80315 0.5660 +23369 80336 0.5170 +23369 83641 0.4970 +23369 83659 0.5010 +23369 84262 0.4630 +23369 84274 0.4700 +23369 85302 0.5030 +23369 90627 0.5120 +23369 123879 0.7970 +23369 124801 0.4340 +23369 128178 0.5600 +23369 132864 0.4160 +23369 146713 0.5760 +23369 167153 0.5260 +23369 167227 0.5030 +23369 192669 0.5740 +23369 196528 0.4020 +23369 246175 0.5270 +23369 253943 0.4390 +23369 255967 0.4180 +23369 339345 0.7450 +23369 340719 0.9970 +23369 342371 0.9040 +23369 342977 0.8160 +23370 50848 0.8500 +23370 50855 0.5150 +23370 54566 0.9580 +23370 55114 0.4310 +23370 56288 0.6760 +23370 57154 0.4990 +23370 57530 0.9910 +23370 80851 0.4480 +23370 84458 0.4110 +23370 84952 0.8720 +23370 110806298 0.4140 +23371 27185 0.4790 +23371 80311 0.4250 +23371 83660 0.6520 +23371 83932 0.6020 +23371 90627 0.6000 +23371 197021 0.4240 +23371 100129361 0.4530 +23373 54544 0.4730 +23373 55534 0.7470 +23373 56033 0.4790 +23373 64784 0.9490 +23373 81559 0.4140 +23373 84441 0.7840 +23373 150094 0.5740 +23373 161742 0.6710 +23373 200186 0.9220 +23373 200734 0.4240 +23376 26235 0.4040 +23376 27304 0.4420 +23376 51506 0.9600 +23376 51569 0.9750 +23376 54953 0.4060 +23376 55236 0.4100 +23376 55293 0.5150 +23376 55325 0.8790 +23376 65992 0.9960 +23376 79101 0.4300 +23376 79876 0.9440 +23376 80279 0.9990 +23376 90850 0.4110 +23376 115004 0.4400 +23376 200916 0.4560 +23376 253714 0.4360 +23376 282809 0.4210 +23376 402682 0.8160 +23378 23404 0.4320 +23378 23411 0.9960 +23378 23481 0.6660 +23378 23517 0.7500 +23378 23560 0.9290 +23378 23633 0.5350 +23378 24140 0.6070 +23378 25879 0.6150 +23378 25983 0.7130 +23378 26013 0.5430 +23378 26155 0.9060 +23378 26156 0.7810 +23378 26354 0.4770 +23378 26574 0.6170 +23378 26995 0.4240 +23378 27042 0.5490 +23378 27292 0.7700 +23378 27341 0.6260 +23378 28987 0.8530 +23378 29777 0.4780 +23378 29889 0.7760 +23378 29960 0.4510 +23378 29997 0.8290 +23378 30836 0.6300 +23378 51013 0.6450 +23378 51018 0.8200 +23378 51077 0.5210 +23378 51082 0.6850 +23378 51096 0.4470 +23378 51106 0.4250 +23378 51118 0.8510 +23378 51121 0.4200 +23378 51154 0.8150 +23378 51187 0.7210 +23378 51202 0.6320 +23378 51236 0.5540 +23378 51388 0.5610 +23378 51490 0.6970 +23378 51504 0.6030 +23378 51538 0.5700 +23378 51575 0.7030 +23378 51605 0.7310 +23378 54145 0.4990 +23378 54463 0.4230 +23378 54512 0.4730 +23378 54517 0.6310 +23378 54552 0.4800 +23378 54555 0.5860 +23378 54606 0.8120 +23378 54663 0.4260 +23378 54680 0.4400 +23378 54865 0.6320 +23378 54888 0.6070 +23378 54931 0.6090 +23378 54984 0.5640 +23378 55006 0.6850 +23378 55131 0.9290 +23378 55153 0.7690 +23378 55226 0.7220 +23378 55272 0.6590 +23378 55299 0.9200 +23378 55319 0.6110 +23378 55341 0.5630 +23378 55374 0.5080 +23378 55621 0.5090 +23378 55646 0.6200 +23378 55651 0.4620 +23378 55695 0.6270 +23378 55720 0.6400 +23378 55766 0.5170 +23378 55781 0.4360 +23378 55794 0.4420 +23378 55813 0.7350 +23378 56342 0.6580 +23378 56902 0.4220 +23378 56915 0.4800 +23378 57050 0.7660 +23378 57062 0.7860 +23378 57109 0.7080 +23378 57136 0.4080 +23378 57696 0.5640 +23378 63899 0.6110 +23378 64118 0.5320 +23378 64216 0.6090 +23378 64318 0.8610 +23378 64425 0.7340 +23378 64434 0.6890 +23378 64794 0.6380 +23378 64802 0.5600 +23378 64848 0.4060 +23378 65083 0.4440 +23378 65095 0.4050 +23378 65265 0.4190 +23378 79009 0.5270 +23378 79039 0.7010 +23378 79050 0.6660 +23378 79101 0.4600 +23378 79159 0.7950 +23378 79682 0.4140 +23378 79693 0.4370 +23378 79730 0.5310 +23378 79759 0.5160 +23378 79954 0.8030 +23378 80135 0.8930 +23378 81627 0.4190 +23378 83448 0.4260 +23378 83480 0.6020 +23378 83743 0.8260 +23378 84128 0.5350 +23378 84154 0.9380 +23378 84294 0.8320 +23378 84310 0.4210 +23378 84319 0.5030 +23378 84365 0.9170 +23378 84450 0.4670 +23378 84549 0.8280 +23378 84656 0.4710 +23378 84916 0.5330 +23378 84946 0.8100 +23378 85236 0.4990 +23378 88745 0.5360 +23378 90441 0.5130 +23378 91893 0.6480 +23378 92856 0.8170 +23378 94239 0.5160 +23378 115708 0.6500 +23378 115939 0.4480 +23378 116966 0.5920 +23378 117246 0.9100 +23378 126306 0.4410 +23378 128312 0.4990 +23378 144108 0.6140 +23378 153443 0.4650 +23378 155368 0.5820 +23378 161424 0.6060 +23378 168850 0.4240 +23378 197407 0.4700 +23378 221078 0.8050 +23378 221120 0.4880 +23378 221830 0.5630 +23378 255626 0.4990 +23378 285855 0.4800 +23378 317781 0.7690 +23378 339230 0.5460 +23378 387129 0.4530 +23378 387338 0.6730 +23378 400506 0.4550 +23378 402569 0.5280 +23378 440093 0.4810 +23378 440686 0.4810 +23378 474382 0.5170 +23378 643836 0.6080 +23378 653604 0.7330 +23378 692312 0.4300 +23378 100505478 0.4320 +23379 23567 0.6670 +23379 24149 0.4230 +23379 25920 0.9150 +23379 26610 0.9000 +23379 26747 0.7310 +23379 27125 0.9230 +23379 51224 0.4630 +23379 51497 0.9010 +23379 51585 0.4770 +23379 51594 0.5190 +23379 51755 0.5990 +23379 54623 0.9000 +23379 55250 0.7240 +23379 55840 0.9160 +23379 79577 0.9060 +23379 79664 0.9980 +23379 80237 0.9860 +23379 80349 0.9000 +23379 84337 0.5400 +23379 84524 0.9870 +23379 85403 0.9820 +23379 113451 0.5490 +23379 123169 0.9010 +23379 143884 0.4020 +23379 255308 0.4650 +23379 110599583 0.5050 +23380 23433 0.5930 +23380 23500 0.5180 +23380 26053 0.4430 +23380 27185 0.6650 +23380 29109 0.4540 +23380 50618 0.4520 +23380 51399 0.5000 +23380 51517 0.4220 +23380 54490 0.4360 +23380 54509 0.5470 +23380 54768 0.8830 +23380 54874 0.4110 +23380 55672 0.8570 +23380 56252 0.5820 +23380 57522 0.9320 +23380 57670 0.5860 +23380 58480 0.6420 +23380 64005 0.4020 +23380 64067 0.4650 +23380 80746 0.4760 +23380 81624 0.4490 +23380 85462 0.4670 +23380 90668 0.5370 +23380 91010 0.4810 +23380 91050 0.5400 +23380 93986 0.5230 +23380 114793 0.5180 +23380 115548 0.4910 +23380 151393 0.4850 +23380 205860 0.4760 +23380 222484 0.5480 +23380 259266 0.4830 +23380 342184 0.5760 +23380 345456 0.4730 +23380 375189 0.4730 +23380 388677 0.4940 +23380 392862 0.5410 +23380 653464 0.4280 +23380 653820 0.4080 +23380 729533 0.4300 +23380 100996763 0.4800 +23381 23644 0.9220 +23381 26019 0.9790 +23381 26065 0.5020 +23381 26986 0.9450 +23381 26995 0.4420 +23381 27257 0.5420 +23381 27327 0.4130 +23381 29883 0.5480 +23381 29889 0.4640 +23381 51594 0.5350 +23381 54433 0.5750 +23381 54464 0.8300 +23381 54552 0.5530 +23381 54823 0.5430 +23381 55110 0.6480 +23381 55135 0.5950 +23381 55181 0.9520 +23381 55226 0.6510 +23381 55345 0.4840 +23381 55505 0.5940 +23381 55627 0.5730 +23381 55629 0.9740 +23381 55651 0.6340 +23381 55738 0.4760 +23381 55802 0.8970 +23381 55869 0.8720 +23381 56006 0.9300 +23381 56478 0.5380 +23381 57661 0.5680 +23381 57720 0.4570 +23381 57805 0.6230 +23381 65083 0.4810 +23381 65109 0.9990 +23381 65110 0.9990 +23381 79039 0.4590 +23381 80153 0.6810 +23381 84283 0.5310 +23381 93643 0.6500 +23381 115752 0.4290 +23381 129563 0.4830 +23381 134353 0.5430 +23381 167227 0.6790 +23381 219988 0.4330 +23381 317781 0.4520 +23382 23743 0.9730 +23382 27232 0.5250 +23382 29958 0.4490 +23382 51805 0.4990 +23382 56267 0.9120 +23382 57136 0.4120 +23382 79631 0.4100 +23382 84076 0.4290 +23382 84172 0.4030 +23382 85369 0.4190 +23382 87178 0.4120 +23382 113675 0.8390 +23382 126119 0.4670 +23382 220965 0.5500 +23382 348995 0.4170 +23383 23468 0.5350 +23383 23476 0.6300 +23383 23644 0.4370 +23383 25836 0.9990 +23383 27127 0.5070 +23383 29123 0.4110 +23383 50626 0.4380 +23383 51126 0.4450 +23383 54455 0.5330 +23383 54815 0.5720 +23383 55869 0.4030 +23383 57585 0.4020 +23383 57649 0.4580 +23383 57794 0.6740 +23383 63922 0.5710 +23383 79677 0.5020 +23383 80218 0.4120 +23383 85369 0.4970 +23383 92822 0.4370 +23383 113130 0.9170 +23383 114799 0.8690 +23383 140690 0.4050 +23383 148932 0.4150 +23383 150353 0.7160 +23383 151648 0.6030 +23383 157570 0.8240 +23383 200014 0.4380 +23383 390874 0.4280 +23383 642636 0.4920 +23384 23607 0.5430 +23384 27295 0.5490 +23384 27436 0.5460 +23384 29964 0.5400 +23384 53904 0.5720 +23384 54443 0.5060 +23384 55604 0.5400 +23384 55676 0.4460 +23384 55755 0.5340 +23384 55930 0.4350 +23384 56243 0.4240 +23384 56254 0.5450 +23384 56940 0.6070 +23384 57634 0.4470 +23384 57680 0.7820 +23384 64236 0.5490 +23384 80230 0.4340 +23384 83700 0.5400 +23384 83715 0.5400 +23384 83987 0.4430 +23384 92521 0.5560 +23384 144100 0.4080 +23384 150248 0.4030 +23384 219537 0.5530 +23384 253143 0.4360 +23384 254102 0.5920 +23384 342527 0.5400 +23384 388886 0.4340 +23385 23462 0.4460 +23385 23509 0.4360 +23385 23621 0.8780 +23385 25825 0.6340 +23385 28514 0.5190 +23385 29979 0.4980 +23385 30818 0.5390 +23385 51107 0.9990 +23385 54103 0.8280 +23385 54567 0.4940 +23385 54933 0.8860 +23385 55534 0.5540 +23385 55770 0.4490 +23385 55851 0.9990 +23385 56926 0.6910 +23385 64837 0.4720 +23385 79258 0.7660 +23385 81502 0.6920 +23385 81609 0.4330 +23385 83464 0.9990 +23385 84441 0.5570 +23385 89953 0.4740 +23385 92737 0.6340 +23385 113878 0.5280 +23385 114990 0.6050 +23385 147700 0.4660 +23385 203413 0.4180 +23385 283820 0.5840 +23385 388585 0.5200 +23386 23660 0.4400 +23386 26261 0.5160 +23386 51143 0.7870 +23386 51164 0.4010 +23386 51172 0.4020 +23386 51230 0.4780 +23386 51604 0.4570 +23386 51626 0.8070 +23386 54606 0.4100 +23386 54813 0.6130 +23386 55112 0.8150 +23386 55295 0.4730 +23386 55709 0.5990 +23386 56061 0.5270 +23386 57062 0.4260 +23386 57565 0.6090 +23386 79034 0.4970 +23386 79659 0.7910 +23386 81565 0.4120 +23386 83657 0.7710 +23386 83658 0.8110 +23386 84861 0.4740 +23386 84955 0.5210 +23386 89891 0.8140 +23386 114786 0.4240 +23386 114818 0.4080 +23386 134492 0.7300 +23386 137695 0.4530 +23386 140735 0.7200 +23386 200132 0.5590 +23386 255758 0.8060 +23386 340359 0.5850 +23386 343521 0.5590 +23386 553115 0.4320 +23387 55297 0.4080 +23387 55734 0.4260 +23387 64784 0.6260 +23387 84811 0.5300 +23387 116519 0.4900 +23387 127343 0.4390 +23387 150094 0.6210 +23387 200186 0.6950 +23387 259232 0.5330 +23387 260425 0.5230 +23389 23394 0.5680 +23389 23469 0.5330 +23389 23476 0.4700 +23389 25836 0.5280 +23389 27125 0.4120 +23389 29079 0.9790 +23389 29123 0.5700 +23389 51003 0.9570 +23389 51111 0.6270 +23389 51129 0.5070 +23389 51366 0.4290 +23389 51586 0.9590 +23389 51755 0.5080 +23389 54797 0.9750 +23389 54891 0.5150 +23389 55090 0.9700 +23389 55209 0.5320 +23389 55294 0.7730 +23389 55588 0.9780 +23389 55870 0.6850 +23389 55997 0.8470 +23389 57148 0.5190 +23389 57466 0.5160 +23389 57492 0.5720 +23389 57680 0.5540 +23389 58508 0.4280 +23389 79718 0.4090 +23389 80232 0.5540 +23389 80306 0.9700 +23389 80816 0.4270 +23389 81857 0.8170 +23389 83992 0.4470 +23389 84246 0.9880 +23389 84498 0.4990 +23389 84955 0.6190 +23389 85441 0.4990 +23389 90390 0.9250 +23389 112950 0.8910 +23389 115992 0.4060 +23389 116931 0.9980 +23389 133522 0.5430 +23389 157680 0.4310 +23389 204851 0.4310 +23389 254048 0.4640 +23389 256643 0.5430 +23389 341359 0.4170 +23389 400569 0.9420 +23390 23498 0.4220 +23390 25766 0.5190 +23390 25921 0.4140 +23390 25999 0.5050 +23390 29801 0.5100 +23390 29993 0.5210 +23390 51059 0.6270 +23390 51104 0.4070 +23390 51201 0.4570 +23390 51304 0.5930 +23390 51466 0.4020 +23390 54946 0.4150 +23390 55081 0.5480 +23390 55146 0.4530 +23390 55625 0.4550 +23390 55660 0.4670 +23390 57088 0.4450 +23390 57498 0.4150 +23390 57606 0.4100 +23390 57658 0.5810 +23390 64429 0.4950 +23390 79738 0.4180 +23390 80331 0.8020 +23390 81926 0.4030 +23390 89795 0.4130 +23390 127933 0.4140 +23390 129685 0.4420 +23390 144453 0.4140 +23390 158866 0.4540 +23390 161742 0.4470 +23390 196441 0.4240 +23390 200734 0.4750 +23390 253832 0.4450 +23390 254359 0.4260 +23390 254428 0.4120 +23390 283576 0.6680 +23390 340481 0.4160 +23390 376132 0.4250 +23390 399473 0.4830 +23392 25962 0.5100 +23392 26057 0.4460 +23392 29979 0.4120 +23392 51371 0.7510 +23392 51377 0.7950 +23392 56061 0.5320 +23392 57498 0.4370 +23392 79184 0.5880 +23392 80227 0.6280 +23392 80267 0.5210 +23392 83473 0.4820 +23392 84262 0.4450 +23392 84954 0.5780 +23392 93664 0.5270 +23392 114803 0.6080 +23392 122706 0.4910 +23392 134510 0.7050 +23392 143471 0.6230 +23392 157638 0.4050 +23392 389362 0.4860 +23392 100652824 0.4220 +23394 23468 0.8190 +23394 23476 0.5710 +23394 25942 0.4460 +23394 26040 0.4120 +23394 29072 0.4910 +23394 29123 0.4220 +23394 51111 0.7130 +23394 51780 0.4390 +23394 54014 0.4700 +23394 54778 0.4480 +23394 54815 0.4550 +23394 55201 0.4300 +23394 55209 0.4210 +23394 55870 0.6310 +23394 56254 0.4240 +23394 57459 0.4800 +23394 57492 0.5950 +23394 57680 0.8350 +23394 64328 0.4020 +23394 81631 0.5490 +23394 84146 0.4740 +23394 85358 0.4470 +23394 146434 0.6080 +23394 283489 0.5340 +23394 388272 0.4120 +23395 23410 0.4870 +23395 23438 0.8430 +23395 23521 0.4210 +23395 23677 0.4150 +23395 23729 0.6480 +23395 25885 0.4840 +23395 25973 0.9720 +23395 26164 0.5060 +23395 26284 0.7420 +23395 26330 0.4690 +23395 27068 0.4630 +23395 28998 0.4490 +23395 29093 0.4520 +23395 29789 0.5480 +23395 29844 0.4160 +23395 50628 0.4780 +23395 51067 0.9220 +23395 51073 0.4810 +23395 51081 0.4240 +23395 51095 0.5830 +23395 51106 0.5600 +23395 51256 0.4510 +23395 51264 0.4470 +23395 51291 0.4100 +23395 51520 0.9440 +23395 51557 0.4340 +23395 54468 0.4930 +23395 54475 0.4510 +23395 54802 0.5120 +23395 54938 0.9210 +23395 55005 0.4420 +23395 55127 0.4390 +23395 55157 0.8760 +23395 55173 0.4070 +23395 55272 0.4940 +23395 55486 0.5160 +23395 55644 0.4090 +23395 55687 0.4920 +23395 55699 0.9820 +23395 55703 0.5710 +23395 55846 0.4300 +23395 56474 0.4440 +23395 56652 0.5760 +23395 56945 0.5170 +23395 57038 0.9900 +23395 57176 0.8400 +23395 57470 0.7980 +23395 57505 0.9240 +23395 57521 0.6300 +23395 58528 0.9210 +23395 60528 0.4180 +23395 60558 0.5560 +23395 60678 0.4100 +23395 64121 0.7940 +23395 64172 0.4570 +23395 64223 0.4150 +23395 64960 0.4200 +23395 64963 0.4780 +23395 64965 0.4260 +23395 64969 0.4710 +23395 64983 0.5250 +23395 65008 0.4570 +23395 79587 0.9280 +23395 79631 0.5410 +23395 79731 0.8900 +23395 79922 0.4030 +23395 80222 0.9820 +23395 80324 0.5200 +23395 81570 0.4850 +23395 81929 0.4960 +23395 83667 0.5120 +23395 84172 0.6470 +23395 84219 0.4160 +23395 84340 0.4610 +23395 84464 0.5400 +23395 84705 0.5040 +23395 84823 0.4270 +23395 85476 0.7020 +23395 87178 0.4520 +23395 91875 0.4290 +23395 91893 0.4960 +23395 92399 0.5000 +23395 92935 0.9950 +23395 93974 0.4310 +23395 96459 0.4600 +23395 116832 0.5190 +23395 123263 0.6080 +23395 123283 0.9800 +23395 124454 0.9640 +23395 138428 0.4170 +23395 144577 0.4090 +23395 153129 0.7280 +23395 154743 0.4300 +23395 201163 0.6600 +23395 254394 0.4260 +23395 374395 0.4690 +23395 440275 0.7420 +23395 652968 0.5200 +23395 100526842 0.4400 +23395 101927367 0.5730 +23396 23480 0.6080 +23396 25930 0.4160 +23396 27131 0.6190 +23396 29899 0.5120 +23396 51196 0.7510 +23396 51363 0.8300 +23396 54776 0.5150 +23396 55300 0.9520 +23396 55361 0.9610 +23396 55529 0.9140 +23396 55558 0.5310 +23396 56623 0.9390 +23396 58506 0.5370 +23396 79837 0.9170 +23396 83660 0.9690 +23396 84812 0.7430 +23396 85477 0.9190 +23396 89869 0.7400 +23396 90809 0.9140 +23396 91584 0.5200 +23396 113026 0.7370 +23396 138429 0.9300 +23397 23476 0.4090 +23397 23594 0.5880 +23397 23649 0.5810 +23397 24137 0.9450 +23397 25836 0.4280 +23397 25886 0.5330 +23397 26586 0.4110 +23397 27127 0.7190 +23397 29089 0.4540 +23397 29127 0.6600 +23397 29128 0.5030 +23397 29781 0.9160 +23397 51203 0.7420 +23397 51512 0.4120 +23397 51514 0.5150 +23397 51659 0.6750 +23397 54069 0.5470 +23397 54443 0.7070 +23397 54478 0.6290 +23397 54821 0.7090 +23397 54892 0.9790 +23397 54908 0.4290 +23397 55010 0.6450 +23397 55055 0.6870 +23397 55063 0.4290 +23397 55143 0.9080 +23397 55165 0.6470 +23397 55215 0.5970 +23397 55247 0.4830 +23397 55262 0.5380 +23397 55320 0.4860 +23397 55355 0.6920 +23397 55388 0.6480 +23397 55635 0.5970 +23397 55723 0.5680 +23397 55732 0.5780 +23397 55789 0.7040 +23397 55839 0.5990 +23397 55920 0.4390 +23397 56992 0.8920 +23397 57082 0.5380 +23397 57405 0.5320 +23397 57650 0.5320 +23397 63922 0.5060 +23397 63925 0.4130 +23397 63946 0.4780 +23397 64105 0.5190 +23397 64151 0.9990 +23397 64946 0.4180 +23397 79019 0.4350 +23397 79023 0.4890 +23397 79075 0.4280 +23397 79677 0.7690 +23397 79682 0.5040 +23397 79733 0.4600 +23397 79801 0.6600 +23397 79968 0.5820 +23397 81610 0.6660 +23397 81620 0.4060 +23397 81930 0.6330 +23397 83461 0.7420 +23397 83540 0.7580 +23397 83903 0.4800 +23397 84057 0.4150 +23397 84296 0.6130 +23397 84823 0.4890 +23397 84946 0.4650 +23397 90381 0.5730 +23397 90417 0.4440 +23397 113130 0.8120 +23397 144455 0.4270 +23397 146909 0.7030 +23397 147841 0.6470 +23397 150468 0.5200 +23397 151246 0.5420 +23397 151648 0.5800 +23397 152098 0.4290 +23397 157313 0.7700 +23397 163786 0.4050 +23397 166979 0.5900 +23397 220134 0.5350 +23397 221150 0.8140 +23397 254394 0.4020 +23397 259266 0.8620 +23398 23450 0.5160 +23398 23451 0.5130 +23398 23517 0.5100 +23398 23524 0.8270 +23398 23595 0.5370 +23398 24144 0.6440 +23398 25949 0.9700 +23398 25957 0.4610 +23398 27238 0.4250 +23398 27339 0.8400 +23398 29945 0.6330 +23398 51340 0.9110 +23398 51362 0.9760 +23398 51428 0.6690 +23398 51503 0.8370 +23398 51574 0.4490 +23398 51634 0.4520 +23398 51639 0.4790 +23398 51645 0.9680 +23398 54482 0.4030 +23398 54883 0.8450 +23398 55035 0.4190 +23398 55100 0.8660 +23398 55110 0.8330 +23398 55578 0.4510 +23398 55696 0.8820 +23398 55702 0.8390 +23398 55781 0.4060 +23398 56949 0.8750 +23398 57461 0.8030 +23398 57703 0.8910 +23398 64105 0.5850 +23398 65109 0.8560 +23398 79753 0.4240 +23398 80006 0.4110 +23398 83443 0.4580 +23398 84811 0.4420 +23398 85313 0.5850 +23398 143884 0.5840 +23398 199746 0.5530 +23398 285672 0.4790 +23398 100534599 0.8050 +23399 57591 0.4100 +23399 59271 0.4030 +23399 64900 0.8860 +23399 84340 0.4460 +23399 113402 0.4970 +23399 114569 0.4080 +23399 255919 0.9940 +23400 23435 0.4620 +23400 23503 0.4590 +23400 23516 0.5290 +23400 23710 0.4110 +23400 25793 0.8850 +23400 26058 0.7240 +23400 27429 0.6870 +23400 29058 0.5820 +23400 51142 0.6920 +23400 51398 0.5730 +23400 54832 0.7830 +23400 54982 0.6840 +23400 55002 0.4050 +23400 55201 0.4720 +23400 55283 0.4050 +23400 55532 0.5380 +23400 55737 0.8560 +23400 55754 0.4030 +23400 57130 0.4450 +23400 57704 0.4500 +23400 59341 0.4440 +23400 63974 0.4240 +23400 64116 0.4780 +23400 65018 0.9240 +23400 79152 0.6390 +23400 79608 0.5300 +23400 80025 0.6940 +23400 80067 0.6670 +23400 80208 0.6520 +23400 80331 0.6100 +23400 80347 0.5560 +23400 84286 0.5930 +23400 91683 0.4350 +23400 114757 0.5110 +23400 116442 0.6180 +23400 120892 0.8480 +23400 154881 0.6710 +23400 203228 0.4180 +23400 256471 0.5930 +23400 391356 0.4880 +23400 400668 0.4380 +23401 51744 0.4220 +23401 64748 0.4840 +23401 128218 0.4760 +23401 139285 0.4130 +23401 149461 0.4120 +23401 378884 0.4300 +23403 54455 0.4220 +23403 57501 0.4180 +23403 64776 0.4450 +23403 80145 0.4220 +23403 114818 0.4830 +23403 140459 0.4940 +23403 221830 0.4370 +23404 23435 0.4200 +23404 23481 0.4530 +23404 23517 0.9990 +23404 25796 0.8560 +23404 25879 0.8810 +23404 25926 0.5970 +23404 25983 0.4080 +23404 26155 0.4400 +23404 26156 0.5750 +23404 26574 0.6070 +23404 27042 0.4560 +23404 27292 0.6270 +23404 27316 0.4070 +23404 27340 0.7250 +23404 27341 0.8290 +23404 29889 0.4030 +23404 29894 0.5190 +23404 29954 0.4200 +23404 30836 0.5980 +23404 51010 0.9990 +23404 51013 0.9990 +23404 51065 0.4690 +23404 51077 0.7950 +23404 51081 0.4650 +23404 51096 0.8080 +23404 51118 0.7970 +23404 51149 0.5010 +23404 51154 0.6060 +23404 51202 0.4870 +23404 51319 0.4050 +23404 51388 0.5210 +23404 51602 0.7750 +23404 54464 0.6300 +23404 54512 0.9990 +23404 54552 0.4550 +23404 54555 0.5460 +23404 54881 0.4090 +23404 54955 0.5780 +23404 55003 0.4100 +23404 55127 0.7860 +23404 55226 0.7170 +23404 55272 0.7870 +23404 55299 0.5940 +23404 55308 0.4930 +23404 55596 0.8310 +23404 55601 0.4550 +23404 55759 0.4940 +23404 55802 0.5870 +23404 55813 0.7800 +23404 56259 0.4380 +23404 56850 0.6560 +23404 56902 0.5370 +23404 56915 0.9990 +23404 57050 0.7850 +23404 57379 0.5460 +23404 57647 0.5930 +23404 64098 0.4140 +23404 64216 0.5290 +23404 64282 0.4150 +23404 64960 0.4310 +23404 65083 0.7770 +23404 79050 0.8270 +23404 79571 0.4990 +23404 79954 0.5990 +23404 80263 0.4080 +23404 80349 0.7310 +23404 81887 0.5420 +23404 84128 0.8610 +23404 84135 0.8450 +23404 84154 0.4910 +23404 84172 0.4160 +23404 84186 0.5170 +23404 84916 0.8120 +23404 85441 0.8090 +23404 87178 0.9590 +23404 88745 0.5050 +23404 90353 0.4270 +23404 92399 0.5010 +23404 92856 0.8090 +23404 115752 0.9990 +23404 118460 0.9990 +23404 122809 0.4330 +23404 129563 0.9360 +23404 167227 0.6840 +23404 196441 0.9520 +23404 345630 0.4910 +23405 23411 0.6480 +23405 23423 0.4160 +23405 23435 0.9790 +23405 23468 0.4400 +23405 23512 0.5830 +23405 23521 0.6710 +23405 23560 0.5820 +23405 23586 0.6330 +23405 23640 0.4790 +23405 23644 0.4700 +23405 25898 0.4110 +23405 26284 0.6020 +23405 26523 0.9990 +23405 26589 0.8260 +23405 26986 0.5750 +23405 27044 0.7610 +23405 27067 0.7920 +23405 27161 0.9990 +23405 27250 0.6010 +23405 27254 0.6420 +23405 27257 0.5500 +23405 27316 0.4740 +23405 27327 0.9980 +23405 28998 0.6190 +23405 29072 0.4520 +23405 29093 0.5760 +23405 29102 0.9920 +23405 50628 0.8490 +23405 51014 0.4050 +23405 51021 0.8200 +23405 51023 0.5030 +23405 51069 0.5390 +23405 51073 0.5400 +23405 51081 0.5750 +23405 51087 0.5100 +23405 51095 0.4330 +23405 51116 0.5240 +23405 51119 0.5220 +23405 51149 0.6080 +23405 51163 0.6020 +23405 51263 0.5360 +23405 51264 0.8320 +23405 51366 0.5370 +23405 51367 0.9070 +23405 51441 0.4740 +23405 51574 0.4470 +23405 51593 0.8480 +23405 51780 0.4100 +23405 54464 0.8310 +23405 54487 0.9930 +23405 54514 0.5610 +23405 54606 0.4890 +23405 54847 0.7330 +23405 54888 0.4140 +23405 54913 0.9090 +23405 54931 0.5930 +23405 54948 0.4770 +23405 55052 0.5750 +23405 55124 0.8460 +23405 55168 0.5060 +23405 55173 0.6200 +23405 55193 0.4530 +23405 55272 0.6000 +23405 55316 0.4890 +23405 55802 0.8020 +23405 56052 0.5600 +23405 56339 0.5940 +23405 56903 0.6060 +23405 57129 0.7740 +23405 57510 0.9950 +23405 57532 0.4900 +23405 57589 0.4040 +23405 60488 0.7750 +23405 60528 0.5660 +23405 63875 0.8300 +23405 63931 0.4940 +23405 64135 0.6210 +23405 64282 0.4520 +23405 64318 0.5500 +23405 64374 0.5100 +23405 64432 0.6480 +23405 64506 0.5650 +23405 64848 0.5140 +23405 64852 0.5830 +23405 64895 0.6140 +23405 64960 0.6110 +23405 64963 0.5750 +23405 64965 0.8570 +23405 64968 0.8430 +23405 64969 0.6010 +23405 64975 0.7730 +23405 64976 0.7890 +23405 64978 0.5420 +23405 64979 0.7780 +23405 64981 0.7890 +23405 64983 0.8150 +23405 65003 0.5260 +23405 79033 0.5040 +23405 79039 0.4960 +23405 79132 0.7710 +23405 79670 0.6670 +23405 79723 0.4830 +23405 79727 0.7530 +23405 79728 0.4520 +23405 79885 0.6020 +23405 79897 0.9000 +23405 79923 0.4370 +23405 80336 0.4230 +23405 80746 0.5540 +23405 83641 0.5380 +23405 84545 0.8010 +23405 84678 0.4400 +23405 84944 0.4750 +23405 87178 0.4840 +23405 89782 0.5370 +23405 90313 0.5230 +23405 90459 0.9670 +23405 90624 0.4440 +23405 90957 0.6460 +23405 92399 0.5470 +23405 112479 0.4330 +23405 113802 0.7870 +23405 114781 0.4500 +23405 116541 0.5300 +23405 121355 0.5530 +23405 122402 0.4400 +23405 124359 0.5880 +23405 124995 0.5680 +23405 126402 0.5670 +23405 129563 0.6360 +23405 131405 0.6420 +23405 132430 0.4170 +23405 137902 0.4680 +23405 138716 0.6240 +23405 140801 0.4720 +23405 140886 0.4070 +23405 143689 0.9560 +23405 144233 0.5580 +23405 144699 0.5080 +23405 148022 0.4150 +23405 149478 0.4380 +23405 154197 0.4460 +23405 157310 0.5390 +23405 166929 0.5250 +23405 167153 0.6020 +23405 167227 0.9430 +23405 170506 0.4330 +23405 192669 0.9910 +23405 192670 0.9900 +23405 201164 0.4830 +23405 202658 0.4090 +23405 219927 0.4240 +23405 246243 0.4870 +23405 253175 0.5880 +23405 253943 0.4520 +23405 283989 0.5870 +23405 284021 0.4180 +23405 284131 0.4830 +23405 326340 0.4200 +23405 340529 0.4160 +23405 347487 0.5200 +23405 387332 0.5140 +23405 389421 0.7780 +23405 440093 0.5660 +23405 440686 0.5660 +23405 440822 0.8370 +23405 653604 0.5700 +23405 100287482 0.5200 +23405 100526842 0.5750 +23406 50865 0.4220 +23406 51291 0.4200 +23406 57707 0.5640 +23406 203068 0.4010 +23406 728378 0.4960 +23408 23409 0.7460 +23408 23410 0.8140 +23408 23411 0.4620 +23408 23417 0.5690 +23408 23476 0.4440 +23408 23530 0.9210 +23408 51503 0.4820 +23408 51547 0.6630 +23408 51548 0.6850 +23408 51564 0.5710 +23408 51601 0.5550 +23408 54205 0.9680 +23408 55191 0.9410 +23408 55735 0.4150 +23408 55869 0.6050 +23408 55902 0.4270 +23408 63971 0.5870 +23408 64802 0.9480 +23408 65018 0.4770 +23408 79885 0.6710 +23408 83594 0.9160 +23408 83933 0.6140 +23408 84148 0.4130 +23408 84532 0.6150 +23408 93100 0.4660 +23408 126961 0.9140 +23408 133686 0.9080 +23408 333932 0.9140 +23408 349565 0.4950 +23408 440093 0.9480 +23408 440686 0.9480 +23408 653604 0.9480 +23409 23410 0.8910 +23409 23411 0.6240 +23409 23417 0.6060 +23409 23530 0.9170 +23409 51547 0.6380 +23409 51548 0.7640 +23409 51564 0.5650 +23409 51601 0.5540 +23409 54205 0.4040 +23409 55191 0.9340 +23409 55869 0.6000 +23409 55902 0.4180 +23409 64802 0.9490 +23409 79885 0.7430 +23409 83594 0.9120 +23409 83933 0.6200 +23409 84532 0.6080 +23409 93100 0.4680 +23409 133686 0.9000 +23409 349565 0.4760 +23409 440093 0.4750 +23409 440686 0.4750 +23409 653604 0.4750 +23410 23411 0.4600 +23410 23417 0.5200 +23410 23475 0.4260 +23410 23530 0.9260 +23410 25828 0.4070 +23410 50507 0.4680 +23410 51024 0.5280 +23410 51547 0.5430 +23410 51548 0.7020 +23410 51564 0.5480 +23410 51601 0.5300 +23410 51703 0.5610 +23410 54106 0.4750 +23410 54205 0.6370 +23410 54704 0.4580 +23410 54981 0.4450 +23410 55191 0.9420 +23410 55669 0.5510 +23410 55869 0.6210 +23410 55902 0.7030 +23410 56947 0.4580 +23410 60487 0.4980 +23410 64802 0.9560 +23410 65018 0.6610 +23410 79885 0.6860 +23410 81631 0.4400 +23410 83594 0.9140 +23410 83857 0.6560 +23410 83933 0.6010 +23410 84148 0.5490 +23410 84532 0.9940 +23410 91582 0.5610 +23410 93100 0.4680 +23410 113746 0.4510 +23410 114548 0.4240 +23410 124995 0.4870 +23410 126961 0.9140 +23410 129868 0.4240 +23410 133522 0.4720 +23410 133686 0.9140 +23410 137902 0.4470 +23410 139341 0.4170 +23410 149986 0.4240 +23410 257202 0.5370 +23410 333932 0.9140 +23410 349565 0.5460 +23410 374291 0.4090 +23410 440093 0.9500 +23410 440686 0.9500 +23410 493869 0.5380 +23410 653604 0.9500 +23410 100132074 0.5830 +23411 23417 0.4110 +23411 23468 0.6560 +23411 23475 0.4350 +23411 23476 0.8330 +23411 23493 0.4560 +23411 23512 0.9400 +23411 23522 0.5050 +23411 23530 0.9170 +23411 23567 0.5510 +23411 23621 0.5530 +23411 23710 0.9890 +23411 25828 0.4250 +23411 25842 0.7190 +23411 25898 0.5060 +23411 25942 0.8000 +23411 26013 0.5970 +23411 26122 0.4140 +23411 26224 0.4240 +23411 26291 0.6310 +23411 26523 0.4880 +23411 27035 0.4580 +23411 27113 0.5270 +23411 27161 0.5570 +23411 27250 0.4370 +23411 28996 0.5500 +23411 28999 0.5350 +23411 29072 0.6080 +23411 29102 0.5090 +23411 29843 0.4190 +23411 29915 0.4080 +23411 50507 0.6670 +23411 50943 0.7260 +23411 50964 0.5080 +23411 51024 0.5170 +23411 51085 0.5300 +23411 51094 0.7000 +23411 51503 0.4250 +23411 51547 0.8600 +23411 51548 0.7820 +23411 51564 0.8020 +23411 51569 0.4050 +23411 51601 0.5130 +23411 51738 0.4700 +23411 51806 0.4280 +23411 53335 0.6160 +23411 53905 0.4340 +23411 54145 0.6550 +23411 54205 0.7180 +23411 54487 0.4050 +23411 54700 0.4090 +23411 54737 0.4650 +23411 54962 0.4200 +23411 54981 0.4690 +23411 55140 0.4290 +23411 55191 0.9460 +23411 55388 0.7930 +23411 55509 0.4120 +23411 55623 0.4180 +23411 55669 0.6760 +23411 55671 0.4070 +23411 55723 0.4890 +23411 55743 0.6170 +23411 55766 0.5430 +23411 55818 0.4350 +23411 55869 0.8880 +23411 55902 0.4900 +23411 55904 0.5540 +23411 56672 0.5850 +23411 56938 0.4390 +23411 56947 0.4320 +23411 57104 0.5230 +23411 57154 0.4620 +23411 57521 0.6550 +23411 57761 0.4510 +23411 57805 0.9990 +23411 57818 0.4750 +23411 59272 0.4380 +23411 60487 0.7010 +23411 63976 0.6710 +23411 64422 0.4630 +23411 64750 0.4490 +23411 64802 0.9850 +23411 65018 0.7000 +23411 65220 0.4130 +23411 79101 0.4380 +23411 79365 0.4730 +23411 79602 0.6360 +23411 79612 0.4220 +23411 79723 0.5120 +23411 79823 0.5050 +23411 79885 0.8550 +23411 79923 0.4180 +23411 79968 0.6320 +23411 80854 0.8650 +23411 81631 0.7680 +23411 83594 0.9110 +23411 83933 0.7080 +23411 84148 0.8220 +23411 84260 0.4890 +23411 84444 0.9090 +23411 84532 0.7070 +23411 84557 0.6150 +23411 84665 0.4070 +23411 85236 0.6540 +23411 90665 0.4210 +23411 91582 0.9690 +23411 91860 0.4210 +23411 92292 0.4330 +23411 92579 0.4830 +23411 93100 0.5100 +23411 94239 0.6280 +23411 114548 0.5320 +23411 114907 0.5960 +23411 116447 0.5840 +23411 117143 0.4740 +23411 121504 0.4040 +23411 121536 0.4770 +23411 128312 0.6550 +23411 133522 0.5920 +23411 133686 0.9060 +23411 137902 0.6390 +23411 163688 0.4160 +23411 200186 0.7900 +23411 252995 0.4810 +23411 253260 0.7320 +23411 255626 0.6550 +23411 257202 0.6110 +23411 338872 0.4680 +23411 349565 0.5900 +23411 375298 0.4070 +23411 440093 0.8360 +23411 440275 0.4160 +23411 440503 0.5650 +23411 440686 0.8360 +23411 474382 0.5500 +23411 493869 0.6390 +23411 653604 0.9140 +23411 100132074 0.6220 +23411 100506658 0.4050 +23411 100532731 0.5280 +23412 25879 0.5110 +23412 26043 0.5060 +23412 26094 0.5290 +23412 26118 0.5000 +23412 26249 0.4990 +23412 27252 0.5040 +23412 28952 0.9800 +23412 28991 0.9490 +23412 29099 0.9710 +23412 50717 0.5110 +23412 50813 0.4910 +23412 51088 0.5000 +23412 51100 0.6350 +23412 51122 0.9890 +23412 51138 0.4530 +23412 51397 0.9710 +23412 51514 0.4990 +23412 51665 0.4990 +23412 51666 0.4990 +23412 51676 0.4990 +23412 51699 0.8680 +23412 53339 0.5090 +23412 54165 0.5110 +23412 54520 0.9290 +23412 54876 0.4990 +23412 54939 0.9780 +23412 54951 0.9550 +23412 55175 0.4990 +23412 55208 0.4990 +23412 55527 0.5050 +23412 55737 0.5350 +23412 55827 0.5000 +23412 55832 0.5080 +23412 55884 0.5000 +23412 55958 0.5210 +23412 56929 0.5590 +23412 56995 0.4990 +23412 57020 0.9090 +23412 57542 0.5040 +23412 64326 0.5100 +23412 64344 0.4990 +23412 64410 0.4990 +23412 64708 0.4120 +23412 79016 0.5160 +23412 79269 0.5030 +23412 79754 0.5010 +23412 80067 0.4990 +23412 80176 0.4990 +23412 80344 0.5030 +23412 84078 0.4990 +23412 84259 0.5070 +23412 84541 0.4990 +23412 84727 0.5030 +23412 84861 0.5010 +23412 89890 0.5140 +23412 90135 0.5070 +23412 90293 0.4990 +23412 90864 0.5170 +23412 92369 0.4990 +23412 92591 0.4990 +23412 93233 0.4160 +23412 115948 0.6660 +23412 122416 0.4990 +23412 122769 0.4990 +23412 123879 0.4990 +23412 124997 0.4320 +23412 127247 0.4990 +23412 136371 0.4990 +23412 140456 0.4990 +23412 140458 0.4990 +23412 140459 0.4990 +23412 140460 0.4990 +23412 140461 0.5070 +23412 140462 0.4990 +23412 140739 0.5060 +23412 140825 0.4990 +23412 142685 0.4990 +23412 142686 0.4990 +23412 142689 0.4990 +23412 149951 0.9540 +23412 150684 0.9660 +23412 154043 0.4710 +23412 154881 0.4990 +23412 170622 0.9750 +23412 200845 0.5010 +23412 390594 0.4990 +23412 401036 0.4990 +23412 404636 0.8910 +23412 441933 0.4950 +23412 493829 0.4780 +23412 100532731 0.5360 +23413 26280 0.5160 +23413 51475 0.4770 +23413 51806 0.5570 +23413 54847 0.4190 +23413 58530 0.4800 +23413 60558 0.6570 +23413 60626 0.6640 +23413 83698 0.7500 +23413 84451 0.4910 +23413 84902 0.6280 +23413 91860 0.5480 +23413 131890 0.4710 +23413 145567 0.4780 +23413 163688 0.5490 +23413 164633 0.5240 +23413 197335 0.4320 +23413 348180 0.7960 +23414 23493 0.5500 +23414 23512 0.4750 +23414 29106 0.4670 +23414 50846 0.4350 +23414 51441 0.4300 +23414 54148 0.4690 +23414 55278 0.4030 +23414 57057 0.7000 +23414 57381 0.4100 +23414 57592 0.5180 +23414 78987 0.4160 +23414 84733 0.4530 +23414 93649 0.4830 +23414 140628 0.8150 +23414 150572 0.4600 +23414 256536 0.4080 +23415 23416 0.4840 +23415 27012 0.4570 +23415 55450 0.4040 +23415 79132 0.6970 +23415 84514 0.5720 +23415 131096 0.4390 +23415 140767 0.4400 +23415 170850 0.4060 +23415 257160 0.4040 +23416 26251 0.4370 +23416 27012 0.5230 +23416 50801 0.5350 +23416 54862 0.6200 +23416 56479 0.4460 +23416 56987 0.4120 +23416 57030 0.4750 +23416 84894 0.4750 +23416 114798 0.4280 +23416 131096 0.4800 +23416 160762 0.4480 +23416 253980 0.4260 +23417 26266 0.4970 +23417 27349 0.8570 +23417 28976 0.4940 +23417 51422 0.9180 +23417 53632 0.9080 +23417 55902 0.8630 +23417 56139 0.6240 +23417 57678 0.4150 +23417 64849 0.4970 +23417 79443 0.4470 +23417 80221 0.4210 +23417 84532 0.8660 +23417 92162 0.4330 +23417 124402 0.6340 +23417 126129 0.5380 +23417 130013 0.8190 +23417 132949 0.4710 +23417 134526 0.8010 +23417 197322 0.9610 +23417 219743 0.5550 +23417 284111 0.4970 +23417 376497 0.4550 +23418 23513 0.5280 +23418 56288 0.6290 +23418 57534 0.4510 +23418 57669 0.6330 +23418 64398 0.9990 +23418 92359 0.7550 +23418 122786 0.5800 +23418 286204 0.9180 +23418 343450 0.4240 +23420 27012 0.4310 +23420 51077 0.6960 +23420 51283 0.8050 +23420 55248 0.5280 +23420 55729 0.4420 +23420 56926 0.9660 +23420 63923 0.4660 +23420 139728 0.5050 +23420 285335 0.4790 +23420 408050 0.6370 +23421 23647 0.5910 +23421 27034 0.5120 +23421 27128 0.5040 +23421 27319 0.6630 +23421 27436 0.5030 +23421 54069 0.7890 +23421 55055 0.4950 +23421 55166 0.9990 +23421 55320 0.6580 +23421 55355 0.6470 +23421 55839 0.9970 +23421 57082 0.7710 +23421 57410 0.4180 +23421 64105 0.9980 +23421 64946 0.9970 +23421 79019 0.9940 +23421 79023 0.4030 +23421 79172 0.9990 +23421 79682 0.9990 +23421 79980 0.4780 +23421 80152 0.9970 +23421 83540 0.4220 +23421 84455 0.4810 +23421 91137 0.4110 +23421 91687 0.9980 +23421 118461 0.4630 +23421 121504 0.8000 +23421 147841 0.4290 +23421 201254 0.9880 +23421 359948 0.5850 +23421 378708 0.9950 +23421 387103 0.9930 +23421 401541 0.9990 +23421 554313 0.8000 +23423 26003 0.4870 +23423 26275 0.5480 +23423 26286 0.5400 +23423 26589 0.6180 +23423 26958 0.7270 +23423 28998 0.5410 +23423 29088 0.5820 +23423 29093 0.5710 +23423 29097 0.5060 +23423 51014 0.7320 +23423 51021 0.5890 +23423 51023 0.4850 +23423 51069 0.5470 +23423 51073 0.5530 +23423 51081 0.5790 +23423 51116 0.5020 +23423 51149 0.4350 +23423 51226 0.7460 +23423 51263 0.4530 +23423 51264 0.5540 +23423 51272 0.5070 +23423 51594 0.5070 +23423 53407 0.5290 +23423 54732 0.8960 +23423 54948 0.5820 +23423 55168 0.4940 +23423 55173 0.5420 +23423 55272 0.4860 +23423 55738 0.5520 +23423 55850 0.5530 +23423 57129 0.5370 +23423 57410 0.7230 +23423 60488 0.5970 +23423 60561 0.5140 +23423 63875 0.5880 +23423 63908 0.5270 +23423 63931 0.5450 +23423 64342 0.4660 +23423 64374 0.4030 +23423 64689 0.5630 +23423 64960 0.5690 +23423 64963 0.5930 +23423 64965 0.5340 +23423 64968 0.5190 +23423 64969 0.5950 +23423 64975 0.5400 +23423 64976 0.5340 +23423 64979 0.5320 +23423 64981 0.5360 +23423 64983 0.5420 +23423 65080 0.5600 +23423 80279 0.7230 +23423 81876 0.5460 +23423 84364 0.5250 +23423 84545 0.5250 +23423 114781 0.4030 +23423 126402 0.4360 +23423 146456 0.4860 +23423 205428 0.7200 +23423 222068 0.9000 +23424 23586 0.6150 +23424 24138 0.4120 +23424 29118 0.6720 +23424 51191 0.4670 +23424 51213 0.4330 +23424 54456 0.5000 +23424 54478 0.7210 +23424 54809 0.4620 +23424 54873 0.4060 +23424 55124 0.8370 +23424 55601 0.4510 +23424 56164 0.5140 +23424 56165 0.5930 +23424 57642 0.4120 +23424 58511 0.4180 +23424 59269 0.4470 +23424 64108 0.4160 +23424 64135 0.5970 +23424 64761 0.4900 +23424 65981 0.5800 +23424 79132 0.4940 +23424 79443 0.5450 +23424 79608 0.4070 +23424 79642 0.4170 +23424 80216 0.6000 +23424 80724 0.4040 +23424 83666 0.5100 +23424 84944 0.4350 +23424 85441 0.4860 +23424 91543 0.4850 +23424 91646 0.5430 +23424 91768 0.8980 +23424 122402 0.8090 +23424 136991 0.4470 +23424 143689 0.7100 +23424 154197 0.4050 +23424 163589 0.4820 +23424 201164 0.5510 +23424 219285 0.4630 +23424 221400 0.6080 +23424 340719 0.7190 +23424 342977 0.5640 +23424 373863 0.7860 +23424 440822 0.6380 +23424 100129278 0.4530 +23426 23705 0.5710 +23426 25921 0.4860 +23426 27065 0.7840 +23426 27185 0.5130 +23426 28964 0.5420 +23426 50944 0.5480 +23426 51052 0.4690 +23426 51176 0.4430 +23426 55103 0.7170 +23426 55638 0.4080 +23426 55914 0.4370 +23426 56850 0.9900 +23426 57555 0.4020 +23426 57576 0.4150 +23426 64084 0.6770 +23426 79571 0.9130 +23426 80144 0.8710 +23426 80852 0.5560 +23426 84066 0.7290 +23426 84220 0.8430 +23426 84896 0.4760 +23426 166752 0.5880 +23426 285190 0.7060 +23426 341640 0.8730 +23426 349565 0.6600 +23426 353299 0.4780 +23426 440730 0.4400 +23426 653489 0.6700 +23426 727851 0.8550 +23426 729540 0.7270 +23426 729857 0.5810 +23428 23657 0.5420 +23428 53919 0.7310 +23428 54407 0.6790 +23428 55089 0.6150 +23428 55117 0.4620 +23428 55238 0.5340 +23428 56301 0.5180 +23428 57709 0.4410 +23428 81539 0.6410 +23428 84889 0.4490 +23428 92745 0.5080 +23428 117247 0.6970 +23428 120103 0.4730 +23428 124565 0.4050 +23428 124935 0.8190 +23428 145389 0.4730 +23428 146167 0.4080 +23428 153201 0.4710 +23428 206358 0.4850 +23428 340024 0.6340 +23429 23466 0.8550 +23429 23492 0.8060 +23429 23512 0.6210 +23429 24140 0.4200 +23429 26053 0.9610 +23429 26147 0.4240 +23429 51133 0.5960 +23429 51460 0.6140 +23429 54432 0.4570 +23429 54880 0.9600 +23429 55081 0.4480 +23429 55164 0.5800 +23429 55729 0.4550 +23429 57332 0.9110 +23429 57666 0.8880 +23429 63035 0.9200 +23429 64319 0.9210 +23429 79710 0.6770 +23429 80012 0.8100 +23429 83746 0.9780 +23429 84108 0.9960 +23429 84333 0.9960 +23429 84678 0.9990 +23429 84733 0.9810 +23429 84759 0.9990 +23429 85444 0.4520 +23429 92565 0.5430 +23429 117246 0.5800 +23429 121536 0.5240 +23429 132625 0.7180 +23429 440093 0.5710 +23429 440686 0.4200 +23429 653604 0.4200 +23429 100170841 0.4470 +23429 100532731 0.9750 +23430 51200 0.4960 +23430 64499 0.9310 +23431 23503 0.5870 +23431 23557 0.5260 +23431 23623 0.5210 +23431 25938 0.4560 +23431 25977 0.5500 +23431 26258 0.5240 +23431 26580 0.4050 +23431 26984 0.4520 +23431 26985 0.8000 +23431 27131 0.5280 +23431 27185 0.4280 +23431 27236 0.4260 +23431 51172 0.6990 +23431 51308 0.4480 +23431 51324 0.6030 +23431 51361 0.4070 +23431 51429 0.5680 +23431 54464 0.5250 +23431 54497 0.4100 +23431 54885 0.4990 +23431 55040 0.4360 +23431 55096 0.4190 +23431 55317 0.9400 +23431 55330 0.4990 +23431 55745 0.9620 +23431 55823 0.4220 +23431 57165 0.4470 +23431 57515 0.5580 +23431 57562 0.4620 +23431 57617 0.4400 +23431 57704 0.4850 +23431 64951 0.4520 +23431 65055 0.4510 +23431 79065 0.6080 +23431 79152 0.4860 +23431 79158 0.6270 +23431 79723 0.7350 +23431 80055 0.4380 +23431 80208 0.5840 +23431 80821 0.5240 +23431 81567 0.5500 +23431 84062 0.5040 +23431 84067 0.5520 +23431 84251 0.7520 +23431 84572 0.6250 +23431 84720 0.4330 +23431 84888 0.5450 +23431 85015 0.4220 +23431 91056 0.9220 +23431 91574 0.5050 +23431 91801 0.4360 +23431 92255 0.5470 +23431 113612 0.4740 +23431 118813 0.4380 +23431 122616 0.5400 +23431 123606 0.5480 +23431 130340 0.7970 +23431 137492 0.5720 +23431 146705 0.9120 +23431 150275 0.4480 +23431 170680 0.4500 +23431 221421 0.4530 +23431 221955 0.4070 +23431 254225 0.4360 +23431 259232 0.4040 +23431 286451 0.6060 +23431 340075 0.4350 +23431 388552 0.4990 +23431 729830 0.5570 +23431 100526783 0.5970 +23432 50937 0.4500 +23432 51668 0.4700 +23432 51684 0.6870 +23432 54112 0.5250 +23432 55764 0.7100 +23432 56623 0.4870 +23432 57539 0.6070 +23432 57728 0.6500 +23432 79809 0.7330 +23432 84435 0.5090 +23432 89884 0.4140 +23432 91653 0.4570 +23432 129880 0.4210 +23432 131601 0.4670 +23432 132884 0.5950 +23432 200894 0.7330 +23432 374654 0.5530 +23432 387509 0.5330 +23433 23513 0.6260 +23433 23580 0.9770 +23433 26030 0.6270 +23433 28964 0.6070 +23433 50618 0.6080 +23433 50855 0.5000 +23433 51582 0.5950 +23433 54438 0.5520 +23433 54509 0.4440 +23433 54536 0.7010 +23433 55004 0.5670 +23433 55114 0.5020 +23433 55240 0.5530 +23433 55561 0.6160 +23433 55619 0.5590 +23433 55704 0.5360 +23433 55763 0.7710 +23433 55770 0.7030 +23433 55789 0.5530 +23433 56731 0.4350 +23433 56924 0.4760 +23433 57120 0.9970 +23433 57144 0.4150 +23433 57555 0.5160 +23433 57580 0.7130 +23433 57584 0.4970 +23433 59345 0.5030 +23433 60412 0.9520 +23433 64083 0.5220 +23433 65018 0.4340 +23433 80005 0.4650 +23433 80243 0.4150 +23433 81624 0.7060 +23433 81704 0.8080 +23433 81839 0.6040 +23433 84033 0.5570 +23433 84612 0.7570 +23433 85360 0.5290 +23433 85440 0.5460 +23433 90423 0.4910 +23433 115703 0.6490 +23433 128239 0.6640 +23433 133482 0.4540 +23433 139818 0.7240 +23433 143098 0.5980 +23433 144402 0.5540 +23433 148170 0.8430 +23433 149371 0.6800 +23433 200894 0.6190 +23433 388946 0.5600 +23435 23450 0.5240 +23435 23451 0.5870 +23435 23510 0.7800 +23435 23543 0.4660 +23435 23621 0.4880 +23435 23636 0.4100 +23435 23645 0.6510 +23435 24148 0.4380 +23435 25793 0.4870 +23435 25804 0.4620 +23435 25978 0.8520 +23435 26097 0.7210 +23435 26135 0.4970 +23435 26227 0.5480 +23435 26353 0.6700 +23435 26528 0.4540 +23435 26986 0.9040 +23435 27161 0.4920 +23435 27258 0.5090 +23435 27316 0.9140 +23435 27339 0.6960 +23435 27429 0.5090 +23435 29102 0.9920 +23435 29110 0.7300 +23435 29894 0.4370 +23435 29896 0.4900 +23435 29978 0.9680 +23435 29979 0.8360 +23435 50613 0.7310 +23435 51079 0.6520 +23435 51142 0.5840 +23435 51163 0.5640 +23435 51441 0.4750 +23435 51493 0.5900 +23435 51593 0.6950 +23435 51602 0.4280 +23435 51629 0.5610 +23435 51631 0.4290 +23435 51637 0.4890 +23435 51639 0.4550 +23435 51691 0.4380 +23435 51741 0.5200 +23435 51747 0.4780 +23435 54205 0.4070 +23435 54209 0.5800 +23435 54464 0.6560 +23435 54487 0.5220 +23435 54514 0.4530 +23435 54664 0.9350 +23435 54715 0.6170 +23435 55177 0.5530 +23435 55234 0.4390 +23435 55255 0.4860 +23435 55269 0.7400 +23435 55288 0.4420 +23435 55339 0.4570 +23435 55660 0.4630 +23435 55696 0.4220 +23435 55737 0.4760 +23435 55749 0.4550 +23435 55775 0.6700 +23435 55796 0.4170 +23435 55967 0.6570 +23435 56259 0.7550 +23435 56339 0.5630 +23435 56893 0.7270 +23435 56901 0.6500 +23435 57122 0.4300 +23435 57187 0.5790 +23435 57446 0.4790 +23435 57679 0.8280 +23435 58155 0.4760 +23435 58517 0.5290 +23435 64283 0.5250 +23435 64397 0.5510 +23435 64764 0.6480 +23435 65018 0.6090 +23435 65109 0.5590 +23435 66008 0.4300 +23435 80173 0.6440 +23435 80208 0.6020 +23435 80331 0.4180 +23435 83443 0.6580 +23435 83641 0.4130 +23435 84271 0.4910 +23435 84324 0.4580 +23435 84450 0.4140 +23435 84630 0.4600 +23435 84844 0.5290 +23435 84950 0.5300 +23435 84991 0.4820 +23435 92552 0.5750 +23435 120892 0.7940 +23435 124801 0.4450 +23435 126328 0.6500 +23435 129831 0.7940 +23435 137902 0.4320 +23435 140775 0.4600 +23435 145258 0.8400 +23435 146713 0.6410 +23435 203068 0.5120 +23435 203228 0.9430 +23435 220988 0.9190 +23435 284695 0.4600 +23435 343035 0.4790 +23435 374291 0.6570 +23435 375287 0.4460 +23435 400916 0.7150 +23435 402569 0.4470 +23436 26254 0.5330 +23436 50624 0.4280 +23436 51032 0.7700 +23436 51200 0.6310 +23436 57094 0.4780 +23436 63036 0.8070 +23436 93979 0.5250 +23436 140683 0.6870 +23436 256297 0.4270 +23436 342898 0.6690 +23436 346702 0.5120 +23436 440387 0.6940 +23438 23515 0.4890 +23438 25973 0.8320 +23438 25980 0.4230 +23438 26151 0.4550 +23438 26284 0.5650 +23438 27102 0.4490 +23438 27238 0.4040 +23438 51067 0.8620 +23438 51095 0.4540 +23438 51428 0.4530 +23438 51520 0.8240 +23438 54148 0.4050 +23438 54802 0.4460 +23438 54920 0.4460 +23438 54938 0.8610 +23438 54963 0.4410 +23438 54965 0.4030 +23438 54974 0.7840 +23438 55157 0.8570 +23438 55278 0.4370 +23438 55324 0.6600 +23438 55687 0.4010 +23438 55696 0.4920 +23438 55699 0.8540 +23438 57038 0.8180 +23438 57176 0.8280 +23438 57505 0.8710 +23438 63894 0.5300 +23438 64601 0.6990 +23438 79587 0.8100 +23438 79631 0.4240 +23438 79731 0.8580 +23438 80222 0.8660 +23438 84464 0.4230 +23438 85476 0.5100 +23438 92105 0.5340 +23438 92399 0.5310 +23438 92935 0.8190 +23438 93659 0.7610 +23438 123263 0.4350 +23438 123283 0.8630 +23438 124454 0.8030 +23438 440275 0.4890 +23439 25937 0.4990 +23439 53826 0.4270 +23439 53828 0.4790 +23439 54778 0.5050 +23439 58986 0.6150 +23439 64241 0.4050 +23439 64750 0.5020 +23439 79442 0.4060 +23439 79572 0.4640 +23439 79837 0.4120 +23439 79933 0.4330 +23439 129446 0.4410 +23439 153201 0.4100 +23439 219469 0.4180 +23439 339291 0.6220 +23439 100533181 0.4030 +23440 27023 0.5150 +23440 55079 0.4810 +23440 145282 0.4240 +23440 158835 0.4160 +23443 51552 0.4480 +23443 55343 0.4070 +23443 64645 0.6850 +23443 66005 0.4940 +23443 79939 0.4840 +23443 84641 0.6140 +23443 84912 0.9190 +23443 113829 0.4540 +23443 164045 0.6980 +23443 192134 0.4880 +23443 340146 0.9570 +23446 23507 0.5490 +23446 51361 0.4120 +23446 60482 0.6930 +23446 64786 0.4230 +23446 84376 0.4430 +23446 199731 0.4740 +23446 254428 0.4770 +23450 23451 0.9990 +23450 23524 0.9940 +23450 23548 0.4160 +23450 23658 0.9930 +23450 23759 0.8350 +23450 24148 0.9990 +23450 25766 0.8490 +23450 25804 0.9940 +23450 25839 0.5310 +23450 25949 0.7720 +23450 26009 0.6490 +23450 26121 0.9970 +23450 26156 0.4600 +23450 26253 0.9470 +23450 27097 0.9490 +23450 27238 0.9120 +23450 27258 0.9920 +23450 27288 0.6570 +23450 27316 0.6430 +23450 27336 0.9560 +23450 27339 0.9980 +23450 29896 0.4330 +23450 51202 0.5690 +23450 51322 0.6140 +23450 51340 0.9940 +23450 51362 0.9810 +23450 51503 0.9040 +23450 51562 0.5620 +23450 51574 0.6050 +23450 51593 0.4940 +23450 51602 0.4740 +23450 51616 0.8160 +23450 51631 0.8230 +23450 51634 0.9990 +23450 51639 0.9990 +23450 51645 0.9300 +23450 51690 0.9910 +23450 51691 0.9910 +23450 51729 0.8050 +23450 51747 0.8190 +23450 53938 0.4160 +23450 54107 0.5500 +23450 54857 0.4080 +23450 54883 0.5680 +23450 54908 0.4710 +23450 54952 0.7620 +23450 54957 0.4860 +23450 55015 0.6400 +23450 55094 0.4550 +23450 55100 0.4050 +23450 55110 0.9210 +23450 55131 0.4820 +23450 55226 0.4500 +23450 55234 0.9940 +23450 55285 0.7830 +23450 55578 0.9850 +23450 55599 0.9640 +23450 55660 0.4770 +23450 55689 0.6380 +23450 55692 0.9390 +23450 55696 0.9300 +23450 55697 0.4280 +23450 55702 0.5530 +23450 55705 0.7900 +23450 55794 0.4350 +23450 55813 0.5270 +23450 55832 0.4660 +23450 55954 0.8720 +23450 56259 0.8500 +23450 56655 0.5430 +23450 56943 0.7190 +23450 56949 0.9770 +23450 56970 0.6370 +23450 57187 0.6680 +23450 57325 0.6000 +23450 57461 0.5880 +23450 57703 0.9940 +23450 57721 0.4130 +23450 57819 0.9930 +23450 58517 0.9790 +23450 59286 0.8300 +23450 60625 0.5770 +23450 65109 0.4440 +23450 79005 0.9200 +23450 79039 0.5420 +23450 79171 0.8130 +23450 79446 0.6640 +23450 79631 0.5460 +23450 79637 0.9220 +23450 79696 0.6060 +23450 79753 0.9970 +23450 79882 0.5320 +23450 83443 0.9990 +23450 83860 0.6500 +23450 83938 0.8190 +23450 84060 0.8120 +23450 84081 0.4050 +23450 84316 0.6530 +23450 84811 0.9950 +23450 84844 0.9990 +23450 84950 0.9860 +23450 84967 0.5480 +23450 84991 0.7610 +23450 85313 0.5680 +23450 85437 0.7660 +23450 85476 0.5860 +23450 90324 0.8060 +23450 91603 0.4580 +23450 92154 0.4040 +23450 93624 0.7850 +23450 112869 0.9470 +23450 114034 0.6150 +23450 117143 0.9240 +23450 120892 0.5350 +23450 123920 0.4960 +23450 124245 0.4930 +23450 126259 0.6530 +23450 127002 0.4250 +23450 139804 0.6430 +23450 147650 0.6530 +23450 151354 0.4530 +23450 151987 0.5530 +23450 153527 0.9930 +23450 154007 0.8770 +23450 161424 0.4170 +23450 164045 0.6170 +23450 164781 0.5150 +23450 170506 0.4210 +23450 197258 0.4700 +23450 199746 0.4090 +23450 220074 0.8190 +23450 220988 0.6710 +23450 222183 0.6300 +23450 256536 0.8400 +23450 284325 0.5690 +23450 347744 0.7600 +23450 348793 0.5360 +23450 392517 0.8390 +23450 100534599 0.8470 +23450 100996928 0.7700 +23451 23476 0.5710 +23451 23524 0.9960 +23451 23548 0.4290 +23451 23658 0.9930 +23451 23759 0.8440 +23451 24144 0.5160 +23451 24148 0.9990 +23451 24149 0.4170 +23451 25766 0.8090 +23451 25804 0.9960 +23451 25836 0.4980 +23451 25885 0.5600 +23451 25949 0.7790 +23451 25957 0.7470 +23451 25962 0.4670 +23451 26040 0.4590 +23451 26121 0.9970 +23451 27238 0.8260 +23451 27258 0.9920 +23451 27288 0.6460 +23451 27316 0.6670 +23451 27332 0.5350 +23451 27336 0.9980 +23451 27339 0.9960 +23451 29896 0.4590 +23451 30834 0.5110 +23451 51082 0.5040 +23451 51322 0.5040 +23451 51340 0.9950 +23451 51362 0.9810 +23451 51428 0.4150 +23451 51503 0.9520 +23451 51574 0.7650 +23451 51585 0.4320 +23451 51593 0.5610 +23451 51631 0.8720 +23451 51634 0.9990 +23451 51639 0.9990 +23451 51645 0.8610 +23451 51690 0.9910 +23451 51691 0.9910 +23451 51729 0.8350 +23451 51747 0.8580 +23451 54790 0.4070 +23451 54845 0.4770 +23451 54883 0.8240 +23451 54952 0.7800 +23451 54957 0.4850 +23451 55015 0.9400 +23451 55094 0.4500 +23451 55100 0.4210 +23451 55110 0.9110 +23451 55119 0.4350 +23451 55147 0.6490 +23451 55234 0.9890 +23451 55285 0.8040 +23451 55291 0.8890 +23451 55294 0.4060 +23451 55379 0.4560 +23451 55599 0.9760 +23451 55660 0.8630 +23451 55692 0.8790 +23451 55696 0.9490 +23451 55702 0.7130 +23451 55749 0.4310 +23451 55954 0.9530 +23451 56259 0.8910 +23451 56949 0.9650 +23451 57187 0.5790 +23451 57696 0.4160 +23451 57703 0.9980 +23451 57794 0.7430 +23451 57819 0.9950 +23451 58517 0.9270 +23451 59286 0.8210 +23451 60625 0.6180 +23451 64425 0.6840 +23451 64848 0.4960 +23451 65109 0.5200 +23451 79005 0.9170 +23451 79101 0.5350 +23451 79171 0.8200 +23451 79446 0.6820 +23451 79631 0.5340 +23451 79637 0.9220 +23451 79753 0.9990 +23451 80004 0.5170 +23451 80742 0.5050 +23451 83443 0.9990 +23451 83938 0.8150 +23451 84060 0.8080 +23451 84081 0.5000 +23451 84172 0.5860 +23451 84316 0.5650 +23451 84811 0.9980 +23451 84844 0.9990 +23451 84950 0.9880 +23451 84967 0.6050 +23451 84991 0.9970 +23451 85313 0.5410 +23451 85437 0.9240 +23451 85476 0.5480 +23451 90324 0.8430 +23451 90957 0.4260 +23451 94104 0.4190 +23451 94239 0.4690 +23451 120892 0.5180 +23451 124245 0.5000 +23451 126259 0.5650 +23451 127933 0.5650 +23451 139804 0.6460 +23451 140890 0.5350 +23451 147650 0.5650 +23451 151613 0.4490 +23451 151987 0.5140 +23451 153527 0.9900 +23451 154007 0.8890 +23451 164045 0.6020 +23451 164781 0.4370 +23451 170506 0.4030 +23451 171023 0.4730 +23451 196441 0.6320 +23451 199746 0.4690 +23451 220074 0.8150 +23451 220988 0.5870 +23451 221830 0.5130 +23451 222183 0.6110 +23451 256536 0.8580 +23451 284325 0.5890 +23451 284695 0.5730 +23451 347744 0.7800 +23451 348793 0.4370 +23451 392517 0.5910 +23451 474382 0.4230 +23451 653604 0.5570 +23451 729991 0.4060 +23451 100534599 0.8350 +23451 100996928 0.7040 +23451 101669762 0.6450 +23456 26234 0.4190 +23456 28982 0.6780 +23456 30061 0.5120 +23456 51312 0.9990 +23456 51522 0.7290 +23456 54977 0.5150 +23456 55240 0.5630 +23456 55324 0.4660 +23456 55640 0.5620 +23456 56061 0.4060 +23456 81894 0.9820 +23457 55191 0.4430 +23457 55324 0.6170 +23457 64240 0.4760 +23457 79676 0.6370 +23457 84166 0.4150 +23457 342132 0.4370 +23457 114483834 0.5390 +23460 26154 0.4750 +23460 28965 0.4020 +23460 55324 0.4670 +23461 26154 0.4240 +23461 54859 0.8100 +23461 55324 0.5550 +23461 58485 0.4150 +23462 23493 0.9890 +23462 23509 0.5710 +23462 25937 0.4870 +23462 26508 0.9470 +23462 28514 0.8640 +23462 51176 0.4040 +23462 51185 0.4410 +23462 51341 0.6010 +23462 51586 0.4910 +23462 51593 0.4790 +23462 54345 0.4860 +23462 54567 0.8030 +23462 55504 0.4720 +23462 55534 0.7970 +23462 64321 0.4070 +23462 79192 0.4480 +23462 79923 0.4330 +23462 84441 0.8020 +23462 85407 0.5450 +23462 200933 0.4330 +23462 220388 0.5170 +23462 390992 0.5570 +23462 441478 0.8350 +23463 25777 0.6580 +23463 51031 0.6210 +23463 51114 0.5060 +23463 51125 0.4720 +23463 51451 0.4600 +23463 51805 0.4640 +23463 55171 0.4680 +23463 55226 0.5360 +23463 55312 0.4170 +23463 57719 0.4130 +23463 81577 0.4480 +23463 84823 0.4660 +23463 387509 0.4430 +23463 100529261 0.5500 +23464 25915 0.4870 +23464 27238 0.4790 +23464 29958 0.4650 +23464 29968 0.4950 +23464 51102 0.4660 +23464 51268 0.4090 +23464 51295 0.7110 +23464 55644 0.4220 +23464 56922 0.4550 +23464 56926 0.5130 +23464 57205 0.4440 +23464 57591 0.4420 +23464 64087 0.4290 +23464 113675 0.5780 +23464 137872 0.4260 +23464 441024 0.4340 +23464 100130705 0.5920 +23466 23467 0.8950 +23466 23492 0.9690 +23466 23512 0.9400 +23466 26053 0.5410 +23466 26147 0.5830 +23466 26523 0.5040 +23466 26986 0.4330 +23466 27327 0.4990 +23466 27350 0.4090 +23466 51564 0.5650 +23466 53615 0.5230 +23466 54145 0.5070 +23466 54328 0.4200 +23466 54815 0.5300 +23466 55252 0.5930 +23466 55766 0.5110 +23466 56970 0.4640 +23466 57167 0.5130 +23466 57332 0.9940 +23466 57459 0.5000 +23466 57504 0.4990 +23466 80012 0.9930 +23466 80816 0.5650 +23466 81037 0.4330 +23466 84108 0.9750 +23466 84232 0.5000 +23466 84333 0.9790 +23466 84678 0.6310 +23466 84733 0.9770 +23466 84759 0.9890 +23466 85236 0.5070 +23466 94239 0.5440 +23466 121536 0.9290 +23466 124359 0.4250 +23466 126961 0.9340 +23466 128312 0.5070 +23466 132625 0.5720 +23466 164668 0.5030 +23466 171023 0.9080 +23466 192669 0.4990 +23466 192670 0.4990 +23466 200315 0.5950 +23466 200316 0.4140 +23466 255626 0.5070 +23466 333932 0.9090 +23466 404281 0.5460 +23466 440093 0.9580 +23466 440686 0.9590 +23466 474382 0.5110 +23466 653604 0.9820 +23466 100170841 0.4980 +23466 100532731 0.8250 +23467 23567 0.4340 +23467 27344 0.4600 +23467 54414 0.4310 +23467 80777 0.4560 +23467 85315 0.4450 +23467 164091 0.4180 +23468 23476 0.7510 +23468 23512 0.7490 +23468 23595 0.6260 +23468 25836 0.7340 +23468 25842 0.6410 +23468 25936 0.9590 +23468 26013 0.4350 +23468 26277 0.5180 +23468 26523 0.4610 +23468 27161 0.4260 +23468 27245 0.6030 +23468 29128 0.5790 +23468 51111 0.7370 +23468 51127 0.4770 +23468 51547 0.5230 +23468 51592 0.4300 +23468 54537 0.4030 +23468 54816 0.6880 +23468 54904 0.7750 +23468 55143 0.8090 +23468 55320 0.4820 +23468 55632 0.4370 +23468 55729 0.4310 +23468 55791 0.7390 +23468 55888 0.6130 +23468 57082 0.4970 +23468 57337 0.8550 +23468 58499 0.6210 +23468 64710 0.4790 +23468 64919 0.6970 +23468 78994 0.9070 +23468 79003 0.8440 +23468 79723 0.8980 +23468 79813 0.7750 +23468 79968 0.5500 +23468 79980 0.9790 +23468 80816 0.4730 +23468 83903 0.4940 +23468 84108 0.5390 +23468 84146 0.5390 +23468 84787 0.8750 +23468 84823 0.4440 +23468 92595 0.4760 +23468 115509 0.4050 +23468 126961 0.9550 +23468 128312 0.4410 +23468 140690 0.5380 +23468 148266 0.4600 +23468 151648 0.8690 +23468 171023 0.5090 +23468 283431 0.4730 +23468 283489 0.7270 +23468 284361 0.4310 +23468 285268 0.6360 +23468 286205 0.4310 +23468 333932 0.9330 +23468 346171 0.4560 +23468 391769 0.4090 +23468 440093 0.9990 +23468 440686 0.9990 +23468 653604 0.9990 +23468 100527963 0.7710 +23469 23476 0.4480 +23469 25836 0.9760 +23469 25962 0.5030 +23469 26009 0.4390 +23469 26054 0.6020 +23469 26058 0.5620 +23469 27332 0.5380 +23469 29072 0.7660 +23469 51322 0.5410 +23469 51366 0.5490 +23469 51557 0.4480 +23469 51585 0.6020 +23469 51614 0.4010 +23469 51773 0.5610 +23469 54882 0.5960 +23469 55023 0.4660 +23469 55031 0.4920 +23469 55197 0.4710 +23469 55209 0.4680 +23469 55870 0.6480 +23469 55904 0.5570 +23469 55914 0.4600 +23469 57148 0.4230 +23469 57187 0.5050 +23469 57680 0.4730 +23469 79811 0.5260 +23469 80205 0.4900 +23469 84162 0.5100 +23469 84181 0.4390 +23469 90485 0.4160 +23469 94134 0.4880 +23469 148479 0.4020 +23469 158724 0.4470 +23469 246721 0.4170 +23469 253959 0.4530 +23469 254048 0.5700 +23469 259282 0.4110 +23469 347735 0.4200 +23469 548644 0.4170 +23471 23478 0.5150 +23471 23480 0.5770 +23471 28972 0.4380 +23471 29927 0.7580 +23471 54499 0.5390 +23471 55176 0.6180 +23471 57003 0.5430 +23471 58477 0.6850 +23471 60559 0.5900 +23471 79001 0.4200 +23471 79139 0.6580 +23471 79853 0.4040 +23471 81502 0.5900 +23471 90701 0.4820 +23471 114908 0.4690 +23471 133022 0.9020 +23473 57132 0.4960 +23473 84290 0.8200 +23473 92106 0.8960 +23473 136332 0.5360 +23473 158787 0.4480 +23473 165904 0.8410 +23474 23479 0.4270 +23474 26354 0.4160 +23474 27034 0.4700 +23474 28976 0.4910 +23474 51031 0.5170 +23474 51065 0.4130 +23474 51179 0.4030 +23474 54059 0.4430 +23474 54363 0.4030 +23474 55269 0.4370 +23474 58472 0.9930 +23474 79587 0.4840 +23474 80324 0.4290 +23474 84656 0.4180 +23474 84693 0.5680 +23474 84842 0.4180 +23474 284346 0.4630 +23474 374291 0.6400 +23474 653583 0.6550 +23474 100130890 0.4360 +23474 100131187 0.6480 +23475 23498 0.8880 +23475 26470 0.5710 +23475 27231 0.9520 +23475 30833 0.9050 +23475 51015 0.4520 +23475 51166 0.7060 +23475 51540 0.4700 +23475 51733 0.5350 +23475 54511 0.4170 +23475 54981 0.9710 +23475 55163 0.4140 +23475 55191 0.9420 +23475 55225 0.4200 +23475 55270 0.8840 +23475 56267 0.6310 +23475 56953 0.9110 +23475 56954 0.4980 +23475 64431 0.5400 +23475 64802 0.9910 +23475 65220 0.5860 +23475 79153 0.4100 +23475 79447 0.4720 +23475 79763 0.4600 +23475 83594 0.9130 +23475 83719 0.4890 +23475 84618 0.9010 +23475 93034 0.9010 +23475 93100 0.9860 +23475 112476 0.4190 +23475 115416 0.8480 +23475 124446 0.5480 +23475 125061 0.7130 +23475 130013 0.8460 +23475 146378 0.4770 +23475 169355 0.7090 +23475 200895 0.4120 +23475 219988 0.4170 +23475 253980 0.7040 +23475 253982 0.5350 +23475 283897 0.7140 +23475 283899 0.4270 +23475 349565 0.9080 +23475 552900 0.4490 +23475 642475 0.4770 +23475 654483 0.4380 +23475 100526794 0.9010 +23476 23481 0.6560 +23476 23512 0.6990 +23476 23521 0.5330 +23476 23522 0.4460 +23476 23560 0.7810 +23476 23613 0.6120 +23476 23774 0.4070 +23476 24137 0.5290 +23476 24148 0.5450 +23476 25777 0.5100 +23476 25836 0.9500 +23476 25885 0.4300 +23476 25920 0.6230 +23476 25942 0.5240 +23476 25962 0.5970 +23476 26086 0.4780 +23476 26097 0.5170 +23476 26121 0.5200 +23476 26154 0.4390 +23476 26227 0.4450 +23476 26354 0.5170 +23476 27125 0.5970 +23476 27154 0.5850 +23476 27336 0.8510 +23476 29028 0.6920 +23476 29072 0.5930 +23476 29079 0.5400 +23476 29101 0.4070 +23476 29123 0.5620 +23476 29126 0.4470 +23476 29128 0.6050 +23476 29855 0.4270 +23476 29896 0.5380 +23476 29998 0.9270 +23476 50485 0.4250 +23476 50809 0.6420 +23476 51111 0.6670 +23476 51185 0.9780 +23476 51202 0.5370 +23476 51366 0.4640 +23476 51497 0.5380 +23476 51535 0.5220 +23476 51547 0.7540 +23476 51548 0.4950 +23476 51574 0.8820 +23476 51586 0.5940 +23476 51592 0.4330 +23476 51602 0.5400 +23476 51663 0.5520 +23476 51755 0.6180 +23476 51773 0.6580 +23476 51780 0.4660 +23476 53615 0.5340 +23476 54457 0.5710 +23476 54556 0.4230 +23476 54583 0.4070 +23476 54617 0.5890 +23476 54623 0.5470 +23476 54790 0.4100 +23476 54815 0.6500 +23476 54865 0.4630 +23476 54876 0.5590 +23476 54881 0.5430 +23476 54888 0.5590 +23476 54904 0.9990 +23476 55119 0.4270 +23476 55138 0.4910 +23476 55170 0.4100 +23476 55193 0.6330 +23476 55205 0.7930 +23476 55206 0.4010 +23476 55209 0.5280 +23476 55226 0.6200 +23476 55299 0.5210 +23476 55379 0.5190 +23476 55505 0.5610 +23476 55573 0.4150 +23476 55588 0.5100 +23476 55646 0.4110 +23476 55660 0.6470 +23476 55677 0.4560 +23476 55720 0.5210 +23476 55726 0.5180 +23476 55814 0.4020 +23476 55818 0.4540 +23476 55869 0.4440 +23476 55870 0.5570 +23476 55905 0.5240 +23476 55922 0.5380 +23476 55929 0.8620 +23476 55971 0.5100 +23476 56254 0.6420 +23476 56257 0.8170 +23476 56339 0.4420 +23476 56916 0.4060 +23476 56950 0.4670 +23476 57178 0.4100 +23476 57332 0.4760 +23476 57418 0.5290 +23476 57459 0.7190 +23476 57492 0.5190 +23476 57504 0.5740 +23476 57591 0.5050 +23476 57592 0.6080 +23476 57599 0.4530 +23476 57634 0.7580 +23476 57646 0.4340 +23476 57680 0.9570 +23476 57805 0.5870 +23476 58508 0.4650 +23476 58517 0.7700 +23476 60496 0.5410 +23476 64324 0.4170 +23476 64754 0.5940 +23476 64783 0.5870 +23476 65125 0.4090 +23476 65980 0.9170 +23476 79026 0.4010 +23476 79577 0.5930 +23476 79813 0.4820 +23476 79837 0.4650 +23476 79869 0.5630 +23476 79915 0.9410 +23476 80205 0.5810 +23476 80335 0.4730 +23476 80816 0.7730 +23476 80829 0.4100 +23476 81608 0.5250 +23476 81857 0.5540 +23476 83444 0.5420 +23476 83860 0.4550 +23476 84148 0.6820 +23476 84260 0.4340 +23476 84295 0.4170 +23476 84324 0.5180 +23476 84365 0.5450 +23476 84444 0.8730 +23476 84661 0.4070 +23476 84678 0.4710 +23476 84717 0.5690 +23476 84823 0.5550 +23476 85236 0.6390 +23476 85313 0.5170 +23476 90379 0.5630 +23476 90381 0.6070 +23476 90390 0.6040 +23476 91746 0.5850 +23476 91833 0.4430 +23476 92609 0.5850 +23476 94239 0.5770 +23476 117246 0.5250 +23476 123169 0.5150 +23476 124245 0.7840 +23476 124790 0.7070 +23476 124944 0.5480 +23476 126961 0.6510 +23476 128312 0.4800 +23476 133482 0.5990 +23476 134510 0.4150 +23476 138474 0.4010 +23476 170394 0.7620 +23476 171023 0.6540 +23476 197259 0.4920 +23476 203068 0.5350 +23476 221656 0.7000 +23476 221937 0.5910 +23476 256646 0.9810 +23476 283337 0.4470 +23476 377630 0.4960 +23476 400506 0.4250 +23476 400569 0.5400 +23476 440093 0.9900 +23476 440686 0.9900 +23476 653604 0.9930 +23476 100423062 0.4230 +23478 23480 0.7310 +23478 23521 0.4800 +23478 25873 0.4910 +23478 26471 0.4560 +23478 28972 0.9950 +23478 29927 0.7430 +23478 51065 0.5780 +23478 51121 0.5160 +23478 51218 0.4300 +23478 54499 0.5050 +23478 55176 0.5270 +23478 60558 0.4380 +23478 60559 0.9950 +23478 90701 0.9460 +23478 116832 0.4930 +23478 140801 0.4140 +23478 200916 0.4920 +23479 25789 0.5230 +23479 25821 0.4260 +23479 26234 0.4270 +23479 26502 0.4430 +23479 27158 0.4480 +23479 27247 0.9670 +23479 27304 0.5610 +23479 51022 0.5740 +23479 51027 0.8510 +23479 51182 0.5400 +23479 51218 0.9110 +23479 51312 0.6680 +23479 51512 0.4610 +23479 51540 0.9970 +23479 51647 0.4980 +23479 51684 0.4240 +23479 51805 0.4730 +23479 54059 0.4330 +23479 54205 0.5600 +23479 54511 0.5260 +23479 54979 0.5230 +23479 55034 0.9990 +23479 55140 0.4630 +23479 55210 0.5980 +23479 55687 0.5560 +23479 55847 0.5700 +23479 55920 0.4050 +23479 56888 0.5050 +23479 57019 0.6830 +23479 57110 0.5230 +23479 57128 0.9990 +23479 64111 0.4140 +23479 64210 0.5670 +23479 64428 0.7330 +23479 79145 0.4600 +23479 79728 0.4070 +23479 80224 0.7220 +23479 80273 0.6060 +23479 80324 0.4220 +23479 81570 0.4430 +23479 81611 0.7340 +23479 81689 0.9760 +23479 81894 0.6460 +23479 84191 0.4060 +23479 90353 0.4840 +23479 90624 0.6660 +23479 91694 0.4410 +23479 92399 0.4060 +23479 94033 0.5260 +23479 112812 0.9760 +23479 116835 0.5240 +23479 118461 0.5230 +23479 122961 0.9790 +23479 131118 0.5490 +23479 132949 0.4290 +23479 150274 0.9780 +23479 200205 0.8110 +23479 201164 0.5420 +23479 246243 0.4630 +23479 257202 0.4990 +23479 259217 0.5230 +23479 339416 0.5230 +23479 388633 0.5230 +23479 388962 0.8790 +23479 493856 0.4430 +23479 493869 0.5110 +23479 552900 0.7620 +23479 644096 0.7730 +23479 654483 0.7640 +23479 100130890 0.7110 +23479 100131187 0.7150 +23480 23521 0.8820 +23480 23658 0.4920 +23480 25873 0.9090 +23480 26151 0.4220 +23480 26519 0.4400 +23480 26520 0.4030 +23480 27230 0.6070 +23480 27248 0.4520 +23480 27347 0.9010 +23480 28972 0.8110 +23480 28998 0.5010 +23480 29093 0.6660 +23480 29927 0.9990 +23480 29950 0.4790 +23480 51069 0.4110 +23480 51073 0.5980 +23480 51121 0.9600 +23480 51142 0.4970 +23480 51373 0.4780 +23480 51398 0.5270 +23480 51608 0.5040 +23480 54344 0.4720 +23480 54499 0.8440 +23480 54521 0.4690 +23480 54543 0.5620 +23480 54867 0.6880 +23480 55173 0.4770 +23480 55176 0.9930 +23480 55218 0.6880 +23480 55437 0.8210 +23480 55915 0.6390 +23480 55969 0.4870 +23480 55972 0.4330 +23480 56926 0.8220 +23480 57003 0.8450 +23480 57017 0.4460 +23480 58477 0.7360 +23480 58505 0.9410 +23480 60559 0.6450 +23480 63979 0.4460 +23480 64374 0.4250 +23480 64951 0.5320 +23480 65008 0.5200 +23480 79020 0.4900 +23480 79139 0.4250 +23480 79590 0.6680 +23480 79837 0.6450 +23480 81552 0.6130 +23480 83443 0.4640 +23480 90701 0.7600 +23480 92335 0.8280 +23480 116832 0.8390 +23480 118424 0.5060 +23480 124454 0.5510 +23480 138429 0.6080 +23480 140801 0.8800 +23480 200185 0.4130 +23480 200916 0.5380 +23480 222008 0.5000 +23480 284611 0.6080 +23480 285855 0.4040 +23480 346288 0.5300 +23480 349075 0.4310 +23480 387755 0.6080 +23480 399665 0.6080 +23480 100128731 0.8360 +23480 100526842 0.9520 +23480 100527943 0.4700 +23480 100529097 0.4360 +23480 100529239 0.8250 +23481 23517 0.8910 +23481 23521 0.8870 +23481 23560 0.9990 +23481 23640 0.4370 +23481 24140 0.8710 +23481 25873 0.9340 +23481 25879 0.8460 +23481 25885 0.9100 +23481 25926 0.6860 +23481 25983 0.7150 +23481 26155 0.9990 +23481 26156 0.9960 +23481 26168 0.6020 +23481 26354 0.9970 +23481 26574 0.8270 +23481 26995 0.7480 +23481 27037 0.4480 +23481 27042 0.8400 +23481 27043 0.6910 +23481 27292 0.7000 +23481 27340 0.8270 +23481 27341 0.7260 +23481 28987 0.9190 +23481 28998 0.6190 +23481 29093 0.6340 +23481 29889 0.9950 +23481 29960 0.8570 +23481 29997 0.9880 +23481 30836 0.4250 +23481 51018 0.8970 +23481 51042 0.9590 +23481 51068 0.9070 +23481 51069 0.6330 +23481 51073 0.6100 +23481 51077 0.7520 +23481 51082 0.4590 +23481 51096 0.8220 +23481 51118 0.8160 +23481 51121 0.8940 +23481 51154 0.9990 +23481 51187 0.9950 +23481 51202 0.9320 +23481 51236 0.6220 +23481 51319 0.5640 +23481 51388 0.9950 +23481 51574 0.4480 +23481 51575 0.7090 +23481 51602 0.9650 +23481 51605 0.6350 +23481 54433 0.5800 +23481 54463 0.4050 +23481 54475 0.9240 +23481 54514 0.5280 +23481 54552 0.9870 +23481 54555 0.9150 +23481 54606 0.9700 +23481 54663 0.9970 +23481 54853 0.7610 +23481 54865 0.5780 +23481 54881 0.7820 +23481 54888 0.7980 +23481 54984 0.6890 +23481 55003 0.6640 +23481 55006 0.6010 +23481 55127 0.8770 +23481 55131 0.9550 +23481 55153 0.9760 +23481 55210 0.5190 +23481 55226 0.8970 +23481 55272 0.9460 +23481 55299 0.9930 +23481 55341 0.9030 +23481 55510 0.4240 +23481 55591 0.7530 +23481 55601 0.4550 +23481 55621 0.6230 +23481 55622 0.4650 +23481 55646 0.5570 +23481 55651 0.7660 +23481 55695 0.6540 +23481 55703 0.4760 +23481 55720 0.9010 +23481 55759 0.9990 +23481 55760 0.4110 +23481 55781 0.5290 +23481 55794 0.7780 +23481 55796 0.4220 +23481 55813 0.8250 +23481 56342 0.9550 +23481 56647 0.4260 +23481 56902 0.6190 +23481 56931 0.4040 +23481 57050 0.9240 +23481 57062 0.9250 +23481 57418 0.9390 +23481 57647 0.7140 +23481 57696 0.9360 +23481 60528 0.4680 +23481 63899 0.6740 +23481 64118 0.4190 +23481 64216 0.5610 +23481 64318 0.9920 +23481 64425 0.7090 +23481 64794 0.8380 +23481 64969 0.4160 +23481 65008 0.4970 +23481 65083 0.8600 +23481 65095 0.8200 +23481 79009 0.7180 +23481 79039 0.9590 +23481 79050 0.8270 +23481 79159 0.8060 +23481 79571 0.4600 +23481 79590 0.6570 +23481 79707 0.6150 +23481 79711 0.6200 +23481 79730 0.6020 +23481 79954 0.8400 +23481 80135 0.9930 +23481 81627 0.4460 +23481 81887 0.7340 +23481 83475 0.7090 +23481 83479 0.5540 +23481 83743 0.8980 +23481 84128 0.8310 +23481 84135 0.6480 +23481 84154 0.9950 +23481 84172 0.7980 +23481 84273 0.7400 +23481 84294 0.6520 +23481 84365 0.9960 +23481 84549 0.9940 +23481 84916 0.9260 +23481 84946 0.9470 +23481 85395 0.4100 +23481 88745 0.7870 +23481 90121 0.5660 +23481 90441 0.7390 +23481 91646 0.5540 +23481 92170 0.7260 +23481 92345 0.4210 +23481 92856 0.9680 +23481 93974 0.5280 +23481 115708 0.7210 +23481 116832 0.8990 +23481 116966 0.7310 +23481 117246 0.9980 +23481 124245 0.4110 +23481 124454 0.5580 +23481 133396 0.5280 +23481 140801 0.7620 +23481 142940 0.7900 +23481 146212 0.9580 +23481 153443 0.6820 +23481 161424 0.9200 +23481 165545 0.4060 +23481 200172 0.4130 +23481 200916 0.8880 +23481 221078 0.9470 +23481 221830 0.5970 +23481 254268 0.7200 +23481 283373 0.4110 +23481 285855 0.9750 +23481 317781 0.6050 +23481 344758 0.5540 +23481 345630 0.5890 +23481 387129 0.8910 +23481 387338 0.6800 +23481 645051 0.4120 +23481 645073 0.4120 +23481 692312 0.8640 +23481 728689 0.5960 +23481 729396 0.4120 +23481 729422 0.4120 +23481 729428 0.4120 +23481 729431 0.4120 +23481 729442 0.4120 +23481 729447 0.4120 +23481 100008586 0.4120 +23481 100132399 0.4120 +23481 100505478 0.8150 +23481 100526842 0.7900 +23481 102724473 0.4120 +23483 26061 0.4130 +23483 27294 0.6600 +23483 27430 0.5720 +23483 29880 0.4870 +23483 29925 0.8450 +23483 29926 0.8180 +23483 50814 0.5670 +23483 51805 0.8450 +23483 54187 0.5670 +23483 54438 0.7240 +23483 54858 0.4470 +23483 54928 0.4410 +23483 54995 0.4180 +23483 55270 0.4110 +23483 55276 0.5440 +23483 56052 0.5020 +23483 60491 0.5790 +23483 64968 0.4380 +23483 64979 0.4060 +23483 80146 0.6480 +23483 80270 0.5630 +23483 81577 0.7390 +23483 84068 0.4530 +23483 84263 0.4890 +23483 85365 0.5400 +23483 90353 0.4210 +23483 93517 0.5640 +23483 160897 0.7520 +23483 283209 0.5350 +23483 284098 0.5000 +23483 440138 0.6490 +23483 644974 0.4980 +23484 23585 0.9200 +23484 28986 0.4030 +23484 54663 0.5040 +23484 55631 0.4510 +23484 64852 0.4070 +23484 79035 0.4260 +23484 79729 0.4510 +23484 79949 0.5390 +23484 80311 0.4210 +23484 84524 0.4670 +23484 89970 0.4600 +23484 113444 0.4400 +23484 115209 0.4260 +23484 116211 0.4670 +23484 122830 0.4500 +23484 149345 0.4470 +23484 197021 0.4120 +23484 203245 0.4130 +23484 203260 0.4180 +23491 79048 0.5260 +23491 84661 0.4160 +23491 115650 0.7430 +23491 117156 0.4210 +23492 23512 0.9950 +23492 25847 0.7200 +23492 25906 0.7200 +23492 26147 0.6410 +23492 27338 0.7280 +23492 29882 0.7320 +23492 29945 0.7200 +23492 29947 0.4490 +23492 51239 0.5510 +23492 51343 0.5600 +23492 51433 0.7210 +23492 51434 0.7200 +23492 51529 0.7200 +23492 54880 0.8330 +23492 55252 0.6440 +23492 57332 0.9950 +23492 64682 0.7200 +23492 79184 0.7440 +23492 79723 0.4430 +23492 79813 0.5180 +23492 80012 0.9930 +23492 80816 0.5650 +23492 83746 0.4270 +23492 84108 0.9890 +23492 84333 0.9700 +23492 84456 0.4070 +23492 84678 0.8410 +23492 84733 0.9850 +23492 84759 0.9930 +23492 119504 0.7360 +23492 121536 0.9380 +23492 124359 0.5540 +23492 126961 0.9280 +23492 132625 0.5950 +23492 140459 0.5430 +23492 164668 0.4220 +23492 166979 0.5460 +23492 171023 0.9140 +23492 246184 0.7200 +23492 333932 0.9100 +23492 404281 0.5650 +23492 440093 0.9670 +23492 440686 0.9680 +23492 653604 0.9740 +23492 100170841 0.5580 +23492 100532731 0.9940 +23493 26508 0.9180 +23493 27063 0.4450 +23493 27302 0.4230 +23493 28514 0.6960 +23493 29098 0.4460 +23493 50805 0.5570 +23493 51719 0.5500 +23493 54345 0.4420 +23493 54567 0.7580 +23493 54861 0.6670 +23493 55294 0.4890 +23493 55534 0.7630 +23493 55666 0.4160 +23493 55679 0.5830 +23493 55829 0.4220 +23493 57057 0.5260 +23493 84441 0.7680 +23493 92335 0.4290 +23493 285598 0.4370 +23493 441478 0.5530 +23495 27033 0.4880 +23495 29851 0.8320 +23495 50615 0.5110 +23495 51135 0.5060 +23495 51237 0.5030 +23495 51284 0.6360 +23495 51700 0.4180 +23495 54106 0.7220 +23495 55507 0.4690 +23495 57379 0.6110 +23495 57823 0.4250 +23495 83416 0.5050 +23495 84824 0.5130 +23495 115650 0.9890 +23495 151888 0.4020 +23495 163033 0.4050 +23495 220107 0.5100 +23495 407977 0.7000 +23495 102723407 0.4470 +23498 25766 0.4240 +23498 29763 0.4220 +23498 29993 0.4220 +23498 51004 0.4150 +23498 51166 0.7760 +23498 51179 0.4730 +23498 51268 0.4070 +23498 54981 0.4320 +23498 55191 0.5920 +23498 55660 0.4250 +23498 56267 0.6400 +23498 64802 0.5610 +23498 65220 0.4170 +23498 93100 0.6590 +23498 115098 0.6690 +23498 125061 0.8000 +23498 130013 0.9920 +23498 145226 0.4360 +23498 169355 0.7680 +23498 349565 0.4290 +23498 375444 0.6330 +23498 642475 0.4190 +23499 27185 0.7040 +23499 29123 0.4390 +23499 57662 0.9010 +23499 64083 0.4330 +23499 64759 0.4080 +23499 79613 0.7560 +23499 80351 0.4490 +23499 83481 0.5060 +23499 83607 0.4820 +23499 83872 0.4480 +23499 84079 0.5300 +23499 90102 0.4040 +23499 94025 0.4290 +23499 123720 0.4630 +23499 161176 0.8820 +23500 55660 0.5550 +23500 57216 0.4450 +23500 57497 0.4270 +23500 81839 0.6310 +23500 144165 0.4770 +23500 166336 0.4860 +23500 200576 0.5150 +23500 284217 0.4190 +23500 342184 0.4780 +23500 345456 0.5560 +23500 375189 0.7550 +23503 25782 0.4080 +23503 25793 0.4980 +23503 26580 0.5060 +23503 51062 0.7050 +23503 51149 0.4700 +23503 51308 0.5660 +23503 51324 0.7040 +23503 51720 0.4150 +23503 54832 0.4180 +23503 54902 0.8650 +23503 55317 0.9480 +23503 55745 0.4530 +23503 57165 0.5130 +23503 57475 0.4080 +23503 57679 0.4300 +23503 57704 0.6070 +23503 57724 0.5820 +23503 63971 0.4630 +23503 65055 0.6490 +23503 79152 0.5490 +23503 80055 0.4280 +23503 80208 0.9900 +23503 80821 0.5580 +23503 91056 0.9090 +23503 91574 0.5060 +23503 113612 0.5440 +23503 118813 0.5430 +23503 123606 0.6170 +23503 137492 0.5380 +23503 167838 0.4470 +23503 200014 0.4620 +23503 653567 0.4580 +23504 23542 0.5050 +23504 25924 0.5460 +23504 29091 0.4080 +23504 57172 0.4570 +23504 94032 0.4700 +23504 115827 0.8440 +23504 140730 0.4240 +23504 440279 0.5120 +23505 57148 0.7020 +23505 79683 0.4860 +23505 122830 0.4290 +23505 157697 0.4880 +23505 246175 0.5130 +23505 283652 0.4120 +23505 375056 0.4760 +23505 386724 0.5350 +23505 441381 0.4050 +23506 25960 0.4410 +23506 29117 0.6380 +23506 29998 0.9740 +23506 51188 0.5910 +23506 51412 0.8000 +23506 53335 0.9160 +23506 55173 0.4550 +23506 55193 0.8950 +23506 55274 0.8170 +23506 57492 0.9510 +23506 64919 0.9080 +23506 65980 0.9990 +23506 84435 0.4860 +23506 196528 0.8960 +23506 284695 0.4090 +23507 24145 0.4280 +23507 26045 0.4830 +23507 51361 0.4760 +23507 54829 0.4690 +23507 54831 0.4420 +23507 55107 0.4560 +23507 55144 0.8110 +23507 55379 0.4050 +23507 56262 0.9790 +23507 56267 0.4220 +23507 57348 0.5590 +23507 64786 0.4460 +23507 79414 0.4710 +23507 79883 0.4870 +23507 80131 0.6340 +23507 80727 0.5030 +23507 84230 0.7490 +23507 84376 0.4820 +23507 94015 0.5700 +23507 144453 0.4500 +23507 196527 0.4370 +23507 220296 0.4470 +23507 254428 0.4710 +23507 282974 0.4880 +23507 375387 0.4620 +23507 375616 0.4010 +23507 389816 0.4400 +23507 654429 0.4030 +23508 54762 0.4730 +23508 115399 0.4270 +23508 116966 0.5180 +23508 138802 0.4720 +23508 158158 0.4400 +23508 161829 0.4140 +23508 170062 0.4270 +23508 199800 0.4780 +23508 374882 0.4390 +23508 389257 0.4320 +23508 401827 0.4310 +23508 647024 0.5810 +23508 653567 0.4360 +23508 727857 0.4050 +23508 728229 0.4450 +23508 100131897 0.4910 +23509 26270 0.5890 +23509 26608 0.7660 +23509 28514 0.6220 +23509 29071 0.4180 +23509 29954 0.4840 +23509 51593 0.5300 +23509 54567 0.6670 +23509 55343 0.4920 +23509 55534 0.4610 +23509 55851 0.5170 +23509 56913 0.4790 +23509 56983 0.8860 +23509 65083 0.4360 +23509 79070 0.6940 +23509 84441 0.4860 +23509 91039 0.4980 +23509 124454 0.4610 +23509 140893 0.5010 +23509 143888 0.6800 +23509 145173 0.5330 +23509 145873 0.4120 +23509 152002 0.6710 +23509 170384 0.6180 +23509 197258 0.4570 +23509 283464 0.5740 +23509 285203 0.7530 +23509 388585 0.4910 +23509 441478 0.5140 +23509 727936 0.4560 +23510 25829 0.4600 +23510 26249 0.5980 +23510 27252 0.6730 +23510 28955 0.4420 +23510 29803 0.5010 +23510 30833 0.4370 +23510 51314 0.5840 +23510 51426 0.6250 +23510 51479 0.5260 +23510 51588 0.5950 +23510 54442 0.8020 +23510 54498 0.4410 +23510 54534 0.8400 +23510 54662 0.4540 +23510 54800 0.5860 +23510 55026 0.4240 +23510 55076 0.4530 +23510 55727 0.4570 +23510 55751 0.4300 +23510 55958 0.6520 +23510 55975 0.5750 +23510 56852 0.4550 +23510 56970 0.8010 +23510 57178 0.4940 +23510 57528 0.4430 +23510 57542 0.5890 +23510 57563 0.6080 +23510 59349 0.6090 +23510 64410 0.5960 +23510 65987 0.4040 +23510 79047 0.7950 +23510 79637 0.5980 +23510 79685 0.4520 +23510 79734 0.9470 +23510 80311 0.4040 +23510 81566 0.4390 +23510 83637 0.5250 +23510 83892 0.6740 +23510 83959 0.4330 +23510 84078 0.6010 +23510 84134 0.4710 +23510 84203 0.4770 +23510 84231 0.4100 +23510 84280 0.5090 +23510 84541 0.5940 +23510 84861 0.6240 +23510 84893 0.4270 +23510 89890 0.6140 +23510 90293 0.6190 +23510 92714 0.5990 +23510 92906 0.5860 +23510 113675 0.5050 +23510 115207 0.4200 +23510 130535 0.5830 +23510 131377 0.5960 +23510 146212 0.7010 +23510 147040 0.7010 +23510 151531 0.5140 +23510 154141 0.4420 +23510 154881 0.4920 +23510 155061 0.4030 +23510 196743 0.4450 +23510 200845 0.4890 +23510 202915 0.4260 +23510 222658 0.5000 +23510 253980 0.6920 +23510 255220 0.4770 +23510 256536 0.5140 +23510 283219 0.5110 +23510 284252 0.8100 +23510 286053 0.6780 +23510 339745 0.9070 +23510 347736 0.4070 +23510 386617 0.4580 +23510 386618 0.4020 +23510 387082 0.6830 +23510 387522 0.4590 +23510 553115 0.6380 +23510 100529063 0.5140 +23511 23636 0.9830 +23511 25909 0.9740 +23511 25929 0.4240 +23511 26015 0.4670 +23511 26097 0.4800 +23511 26953 0.4500 +23511 27161 0.4200 +23511 29107 0.5500 +23511 29894 0.4690 +23511 50628 0.4520 +23511 51182 0.4320 +23511 51362 0.4080 +23511 51501 0.4890 +23511 51692 0.4790 +23511 51808 0.4650 +23511 53371 0.9810 +23511 53981 0.4440 +23511 55110 0.5080 +23511 55143 0.4490 +23511 55159 0.4450 +23511 55236 0.4940 +23511 55339 0.4400 +23511 55627 0.4790 +23511 55706 0.9860 +23511 55746 0.9760 +23511 57122 0.9860 +23511 57187 0.4560 +23511 57510 0.8170 +23511 63917 0.4980 +23511 65083 0.4940 +23511 65109 0.5060 +23511 79023 0.9830 +23511 79228 0.4890 +23511 79760 0.4100 +23511 79833 0.4100 +23511 79902 0.9920 +23511 80145 0.4050 +23511 81608 0.4110 +23511 81929 0.9910 +23511 83659 0.4130 +23511 84196 0.7240 +23511 84248 0.4100 +23511 84271 0.5710 +23511 84321 0.5910 +23511 84324 0.4160 +23511 91754 0.5000 +23511 91942 0.4140 +23511 129401 0.9990 +23511 140609 0.4540 +23511 341567 0.4180 +23511 348995 0.9890 +23511 728343 0.5130 +23511 729857 0.5890 +23511 100101267 0.7160 +23512 25942 0.6500 +23512 26009 0.4310 +23512 26013 0.5330 +23512 26040 0.5530 +23512 26122 0.5320 +23512 26147 0.9980 +23512 26523 0.5850 +23512 26524 0.4580 +23512 27327 0.5020 +23512 29072 0.6380 +23512 29128 0.7040 +23512 29947 0.6020 +23512 51366 0.4730 +23512 51379 0.4350 +23512 51564 0.6040 +23512 53335 0.5590 +23512 53615 0.6220 +23512 54145 0.5700 +23512 54790 0.6610 +23512 54799 0.6430 +23512 54815 0.6560 +23512 54897 0.4990 +23512 54904 0.4750 +23512 55183 0.4080 +23512 55211 0.4010 +23512 55252 0.7560 +23512 55506 0.4650 +23512 55632 0.4410 +23512 55766 0.5510 +23512 55803 0.6740 +23512 55813 0.4780 +23512 55870 0.5770 +23512 56950 0.4850 +23512 57167 0.6620 +23512 57332 0.9740 +23512 57459 0.6120 +23512 57504 0.6290 +23512 58508 0.6760 +23512 63978 0.5370 +23512 64219 0.4050 +23512 64324 0.5880 +23512 64754 0.5320 +23512 64769 0.4770 +23512 79084 0.8170 +23512 79447 0.5060 +23512 79718 0.5260 +23512 79723 0.6030 +23512 79813 0.5980 +23512 79823 0.5820 +23512 79915 0.4480 +23512 79923 0.7000 +23512 80012 0.9180 +23512 80312 0.6450 +23512 80314 0.5910 +23512 80816 0.6200 +23512 80854 0.7340 +23512 83746 0.6250 +23512 83852 0.4810 +23512 84108 0.9510 +23512 84206 0.5800 +23512 84232 0.4990 +23512 84271 0.4080 +23512 84282 0.6270 +23512 84295 0.6770 +23512 84333 0.9370 +23512 84444 0.6870 +23512 84458 0.8520 +23512 84678 0.6310 +23512 84733 0.9820 +23512 84759 0.9700 +23512 84942 0.8390 +23512 84962 0.5190 +23512 85235 0.5520 +23512 85236 0.9090 +23512 85414 0.4960 +23512 85462 0.6710 +23512 85464 0.4540 +23512 92815 0.5510 +23512 94239 0.5970 +23512 114659 0.4900 +23512 121504 0.8060 +23512 121536 0.9990 +23512 126961 0.8740 +23512 128312 0.5740 +23512 132625 0.7270 +23512 133482 0.4990 +23512 140690 0.6320 +23512 150572 0.4190 +23512 153090 0.6450 +23512 171023 0.9950 +23512 192669 0.5480 +23512 192670 0.5310 +23512 196528 0.5870 +23512 221613 0.5490 +23512 221895 0.9350 +23512 255626 0.5810 +23512 317772 0.5550 +23512 333932 0.8350 +23512 340602 0.7570 +23512 387640 0.6980 +23512 387893 0.6970 +23512 404281 0.6750 +23512 440093 0.8990 +23512 440686 0.8990 +23512 440689 0.5720 +23512 474382 0.5720 +23512 554313 0.8060 +23512 653604 0.9900 +23512 728118 0.4830 +23512 100170841 0.9450 +23512 100532731 0.9700 +23513 23639 0.4200 +23513 23705 0.5630 +23513 25791 0.4110 +23513 25921 0.4120 +23513 25937 0.5220 +23513 26084 0.5900 +23513 27237 0.7730 +23513 28964 0.9830 +23513 29964 0.5370 +23513 50855 0.6080 +23513 51421 0.4980 +23513 51655 0.5320 +23513 54845 0.4790 +23513 54874 0.4180 +23513 55004 0.4230 +23513 55103 0.4130 +23513 55233 0.4190 +23513 55240 0.4200 +23513 55327 0.5320 +23513 55558 0.5040 +23513 55567 0.4090 +23513 55789 0.4130 +23513 56253 0.7070 +23513 56288 0.4490 +23513 57216 0.9960 +23513 57381 0.6080 +23513 57584 0.4480 +23513 57599 0.4340 +23513 57799 0.4320 +23513 59272 0.5220 +23513 60485 0.4500 +23513 64236 0.5350 +23513 64398 0.8120 +23513 79918 0.5170 +23513 81609 0.4010 +23513 81624 0.4110 +23513 81839 0.9550 +23513 84612 0.4990 +23513 85461 0.4500 +23513 91010 0.4650 +23513 92359 0.6560 +23513 96459 0.4160 +23513 114822 0.4380 +23513 114897 0.4370 +23513 128239 0.4440 +23513 143098 0.6050 +23513 144165 0.5860 +23513 144402 0.4170 +23513 147179 0.4040 +23513 154796 0.5320 +23513 154810 0.4940 +23513 166336 0.5250 +23513 200894 0.4380 +23513 260425 0.5700 +23513 286204 0.5360 +23513 348174 0.4290 +23513 389813 0.4510 +23513 100506658 0.4550 +23514 51149 0.5050 +23514 54497 0.4390 +23514 55051 0.4720 +23514 55422 0.4300 +23514 57578 0.4550 +23514 57697 0.4200 +23514 60412 0.4410 +23514 63979 0.8700 +23514 79728 0.5550 +23514 80010 0.6800 +23514 83990 0.5610 +23514 84197 0.4480 +23514 84376 0.4360 +23514 93426 0.4250 +23514 116028 0.6630 +23514 125150 0.6370 +23514 126074 0.8990 +23514 138050 0.4460 +23514 152006 0.4180 +23514 166655 0.4060 +23514 168417 0.4540 +23514 340252 0.4160 +23514 375748 0.4390 +23514 390081 0.5440 +23514 728927 0.4290 +23515 51592 0.9260 +23515 55699 0.4500 +23515 57505 0.4490 +23515 57659 0.4020 +23515 64135 0.8800 +23515 79710 0.4120 +23515 80124 0.6260 +23515 80222 0.4470 +23515 84618 0.6740 +23515 112939 0.4670 +23515 123283 0.4770 +23515 126961 0.9050 +23515 138151 0.4080 +23515 140735 0.4320 +23515 152185 0.4400 +23515 256364 0.4610 +23515 333932 0.9050 +23515 440093 0.9210 +23515 440686 0.9180 +23515 653604 0.9200 +23516 26872 0.5400 +23516 27032 0.4410 +23516 27173 0.8190 +23516 29985 0.6150 +23516 29986 0.6580 +23516 30061 0.7880 +23516 51312 0.4740 +23516 51726 0.4530 +23516 55240 0.6210 +23516 55334 0.7790 +23516 55532 0.8160 +23516 55652 0.4360 +23516 55676 0.7270 +23516 57817 0.7590 +23516 64116 0.9110 +23516 64924 0.7500 +23516 79901 0.6240 +23516 81894 0.4350 +23516 91252 0.4540 +23516 148738 0.5170 +23516 148867 0.7750 +23516 164045 0.5790 +23516 169026 0.5980 +23516 201266 0.7530 +23516 261729 0.5110 +23516 388649 0.6900 +23517 23521 0.6590 +23517 23524 0.8180 +23517 23560 0.9500 +23517 23759 0.8380 +23517 24144 0.6880 +23517 24148 0.8500 +23517 25804 0.4520 +23517 25873 0.6580 +23517 25879 0.9110 +23517 25885 0.9180 +23517 25926 0.5170 +23517 25983 0.5730 +23517 26019 0.5820 +23517 26097 0.4510 +23517 26155 0.8390 +23517 26156 0.8090 +23517 26168 0.5610 +23517 26354 0.7900 +23517 26574 0.7530 +23517 26986 0.5530 +23517 27042 0.7230 +23517 27043 0.4540 +23517 27238 0.8390 +23517 27257 0.4200 +23517 27292 0.8150 +23517 27336 0.5940 +23517 27340 0.9000 +23517 27341 0.7770 +23517 28959 0.4860 +23517 28987 0.8290 +23517 29102 0.5240 +23517 29789 0.5130 +23517 29883 0.4400 +23517 29889 0.9230 +23517 29997 0.9990 +23517 30836 0.7000 +23517 51010 0.9980 +23517 51013 0.9960 +23517 51018 0.4940 +23517 51042 0.6690 +23517 51065 0.4310 +23517 51068 0.7760 +23517 51077 0.8460 +23517 51096 0.9950 +23517 51118 0.8220 +23517 51121 0.5910 +23517 51149 0.4290 +23517 51154 0.9080 +23517 51163 0.5100 +23517 51187 0.9050 +23517 51202 0.7920 +23517 51362 0.8630 +23517 51388 0.7680 +23517 51441 0.4140 +23517 51538 0.4440 +23517 51575 0.5540 +23517 51585 0.4680 +23517 51593 0.9510 +23517 51602 0.9350 +23517 51605 0.6900 +23517 51645 0.8260 +23517 51690 0.4180 +23517 51692 0.4540 +23517 51729 0.8290 +23517 51747 0.5600 +23517 51759 0.6440 +23517 51808 0.4850 +23517 53938 0.8200 +23517 53981 0.5280 +23517 54033 0.6110 +23517 54439 0.5930 +23517 54464 0.8690 +23517 54475 0.7530 +23517 54505 0.6150 +23517 54512 0.9980 +23517 54517 0.6410 +23517 54552 0.7740 +23517 54555 0.8140 +23517 54606 0.7160 +23517 54663 0.7820 +23517 54877 0.4860 +23517 54881 0.5860 +23517 54888 0.4550 +23517 54915 0.4130 +23517 55003 0.7380 +23517 55051 0.9770 +23517 55127 0.9330 +23517 55131 0.6180 +23517 55153 0.6750 +23517 55173 0.4380 +23517 55226 0.9460 +23517 55234 0.8080 +23517 55272 0.7930 +23517 55299 0.7870 +23517 55341 0.7600 +23517 55505 0.4660 +23517 55596 0.9990 +23517 55621 0.4440 +23517 55622 0.6450 +23517 55651 0.5840 +23517 55660 0.8600 +23517 55703 0.5610 +23517 55720 0.6940 +23517 55746 0.5280 +23517 55749 0.5760 +23517 55759 0.7090 +23517 55760 0.6950 +23517 55781 0.6460 +23517 55794 0.4110 +23517 55813 0.8920 +23517 55844 0.6530 +23517 56257 0.4080 +23517 56342 0.4840 +23517 56647 0.4350 +23517 56852 0.5260 +23517 56902 0.6500 +23517 56903 0.9950 +23517 56915 0.9990 +23517 56916 0.4260 +23517 56919 0.5270 +23517 57050 0.9460 +23517 57062 0.6270 +23517 57187 0.4620 +23517 57418 0.7040 +23517 57585 0.4240 +23517 57647 0.7830 +23517 57696 0.5570 +23517 57703 0.8500 +23517 57794 0.5510 +23517 58517 0.8760 +23517 59286 0.8030 +23517 60487 0.4390 +23517 60625 0.4730 +23517 64062 0.6420 +23517 64118 0.4450 +23517 64216 0.6780 +23517 64282 0.9980 +23517 64318 0.8620 +23517 64425 0.6280 +23517 64434 0.5920 +23517 64794 0.6860 +23517 64895 0.9940 +23517 64963 0.4160 +23517 64969 0.5080 +23517 65083 0.9170 +23517 65095 0.5310 +23517 79009 0.5040 +23517 79039 0.8110 +23517 79050 0.9280 +23517 79165 0.5410 +23517 79571 0.5130 +23517 79576 0.5170 +23517 79665 0.4580 +23517 79707 0.5140 +23517 79711 0.4600 +23517 79954 0.8460 +23517 80135 0.4790 +23517 80349 0.7680 +23517 81627 0.4390 +23517 81887 0.5830 +23517 83448 0.5740 +23517 83743 0.8920 +23517 84128 0.9550 +23517 84135 0.8540 +23517 84154 0.9770 +23517 84172 0.9120 +23517 84186 0.9990 +23517 84240 0.5910 +23517 84294 0.4720 +23517 84365 0.6040 +23517 84549 0.5260 +23517 84916 0.9640 +23517 84946 0.7540 +23517 84950 0.8180 +23517 85364 0.5080 +23517 85441 0.6020 +23517 87178 0.4700 +23517 88745 0.5050 +23517 90381 0.4080 +23517 90861 0.4440 +23517 92856 0.8150 +23517 114987 0.4460 +23517 115708 0.5700 +23517 115752 0.9330 +23517 116832 0.6600 +23517 116966 0.5640 +23517 117246 0.6620 +23517 118460 0.9950 +23517 124245 0.6410 +23517 129563 0.8420 +23517 140801 0.4590 +23517 143884 0.5950 +23517 146212 0.6170 +23517 151903 0.8190 +23517 153527 0.8180 +23517 161424 0.6870 +23517 165545 0.6890 +23517 167227 0.5780 +23517 170506 0.5150 +23517 192670 0.5450 +23517 196441 0.9950 +23517 200916 0.5870 +23517 221078 0.6610 +23517 221830 0.4340 +23517 254394 0.5110 +23517 255488 0.4140 +23517 285855 0.5060 +23517 317781 0.4710 +23517 345630 0.6310 +23517 387129 0.4770 +23517 389874 0.4860 +23517 649238 0.4860 +23517 692312 0.4200 +23517 728689 0.4060 +23517 100529239 0.4270 +23517 105373377 0.4860 +23518 54464 0.4080 +23518 54853 0.4010 +23518 81844 0.4620 +23518 84083 0.5280 +23518 728741 0.4470 +23519 29843 0.6300 +23519 54583 0.4180 +23519 81797 0.4060 +23519 121273 0.4800 +23521 23560 0.9660 +23521 23640 0.7780 +23521 23708 0.5930 +23521 23732 0.5710 +23521 24140 0.4300 +23521 25873 0.9990 +23521 25885 0.5000 +23521 25973 0.8160 +23521 26046 0.8190 +23521 26135 0.9760 +23521 26155 0.7950 +23521 26156 0.8490 +23521 26168 0.5070 +23521 26251 0.4570 +23521 26271 0.5300 +23521 26330 0.5300 +23521 26354 0.6340 +23521 26589 0.8250 +23521 26986 0.8260 +23521 26995 0.4700 +23521 27000 0.4210 +23521 27012 0.4570 +23521 27043 0.5670 +23521 27068 0.6140 +23521 27079 0.4870 +23521 27335 0.6770 +23521 27430 0.4530 +23521 28972 0.4420 +23521 28991 0.4820 +23521 29083 0.6380 +23521 29088 0.6500 +23521 29093 0.8410 +23521 29102 0.6370 +23521 29789 0.5480 +23521 29889 0.9050 +23521 29922 0.4540 +23521 29927 0.9760 +23521 29960 0.4120 +23521 29978 0.4520 +23521 29979 0.4710 +23521 29997 0.8920 +23521 50487 0.4970 +23521 50613 0.4480 +23521 50814 0.4400 +23521 51008 0.4670 +23521 51018 0.4370 +23521 51021 0.9720 +23521 51023 0.6360 +23521 51042 0.9000 +23521 51065 0.9710 +23521 51067 0.4300 +23521 51068 0.9060 +23521 51069 0.8510 +23521 51070 0.4960 +23521 51073 0.8420 +23521 51081 0.8800 +23521 51116 0.7890 +23521 51119 0.5030 +23521 51121 0.9960 +23521 51149 0.9370 +23521 51154 0.9330 +23521 51187 0.9800 +23521 51224 0.4540 +23521 51263 0.6570 +23521 51264 0.9740 +23521 51314 0.4670 +23521 51319 0.9250 +23521 51386 0.8880 +23521 51388 0.7470 +23521 51398 0.5440 +23521 51520 0.4450 +23521 51574 0.4320 +23521 51649 0.4020 +23521 51720 0.5070 +23521 53918 0.8550 +23521 54059 0.5830 +23521 54148 0.4070 +23521 54464 0.5250 +23521 54499 0.8300 +23521 54516 0.5300 +23521 54517 0.5180 +23521 54552 0.6320 +23521 54596 0.5490 +23521 54606 0.4600 +23521 54663 0.7970 +23521 54881 0.6510 +23521 54948 0.7990 +23521 55052 0.9730 +23521 55153 0.4140 +23521 55157 0.4630 +23521 55168 0.6630 +23521 55173 0.8910 +23521 55176 0.8550 +23521 55178 0.5090 +23521 55272 0.8950 +23521 55299 0.7760 +23521 55316 0.9190 +23521 55319 0.8000 +23521 55324 0.5410 +23521 55341 0.9040 +23521 55591 0.6560 +23521 55607 0.4100 +23521 55629 0.5110 +23521 55646 0.8350 +23521 55651 0.7660 +23521 55703 0.7500 +23521 55759 0.8870 +23521 55802 0.5170 +23521 55854 0.5630 +23521 55893 0.5110 +23521 55969 0.4320 +23521 56474 0.4750 +23521 56479 0.4750 +23521 56648 0.8330 +23521 56731 0.5080 +23521 56893 0.4670 +23521 56926 0.8240 +23521 56965 0.5950 +23521 57003 0.8330 +23521 57038 0.6010 +23521 57062 0.4290 +23521 57129 0.8320 +23521 57418 0.7230 +23521 57470 0.5020 +23521 57471 0.4860 +23521 57609 0.4140 +23521 57696 0.5370 +23521 58477 0.8290 +23521 58505 0.5280 +23521 60488 0.8190 +23521 60558 0.7200 +23521 60559 0.4150 +23521 60678 0.9320 +23521 63875 0.9740 +23521 63931 0.8470 +23521 64146 0.7800 +23521 64221 0.5010 +23521 64318 0.7940 +23521 64374 0.7750 +23521 64432 0.6650 +23521 64794 0.4110 +23521 64960 0.8370 +23521 64963 0.8370 +23521 64965 0.9730 +23521 64968 0.9700 +23521 64969 0.8980 +23521 64975 0.8430 +23521 64976 0.8430 +23521 64978 0.5300 +23521 64979 0.9710 +23521 64981 0.8400 +23521 64983 0.9720 +23521 65003 0.8190 +23521 65005 0.9720 +23521 65008 0.8520 +23521 65080 0.6560 +23521 65121 0.5900 +23521 65122 0.5800 +23521 65993 0.5090 +23521 79009 0.4460 +23521 79036 0.4330 +23521 79039 0.4290 +23521 79048 0.8090 +23521 79084 0.4840 +23521 79159 0.4920 +23521 79590 0.8580 +23521 79631 0.8110 +23521 79668 0.5930 +23521 79707 0.6620 +23521 79728 0.6870 +23521 79922 0.5120 +23521 80135 0.8140 +23521 80146 0.4380 +23521 80218 0.4420 +23521 80270 0.4380 +23521 81875 0.4500 +23521 81887 0.5070 +23521 83448 0.5150 +23521 83743 0.4050 +23521 84154 0.6290 +23521 84172 0.7540 +23521 84273 0.4950 +23521 84298 0.8070 +23521 84340 0.4790 +23521 84364 0.4020 +23521 84365 0.7710 +23521 84545 0.8280 +23521 84549 0.7580 +23521 84705 0.6700 +23521 84851 0.5180 +23521 84881 0.5080 +23521 84993 0.4810 +23521 85476 0.8090 +23521 85865 0.4540 +23521 90313 0.5320 +23521 90441 0.8660 +23521 90459 0.4030 +23521 90624 0.4430 +23521 90701 0.4300 +23521 91574 0.5400 +23521 91875 0.8900 +23521 92170 0.4480 +23521 92196 0.6180 +23521 92399 0.9380 +23521 93107 0.4570 +23521 93517 0.4380 +23521 93550 0.5390 +23521 93621 0.4270 +23521 113000 0.4860 +23521 114781 0.4290 +23521 114987 0.8830 +23521 115098 0.8690 +23521 115416 0.8040 +23521 116541 0.5710 +23521 116832 0.9750 +23521 117246 0.7980 +23521 124454 0.7350 +23521 124995 0.5840 +23521 126402 0.8660 +23521 140032 0.9270 +23521 140801 0.9960 +23521 142679 0.4140 +23521 142940 0.4720 +23521 143244 0.8310 +23521 143630 0.4480 +23521 146212 0.5630 +23521 147011 0.4970 +23521 149478 0.5980 +23521 150353 0.4080 +23521 154288 0.4970 +23521 157310 0.5120 +23521 164153 0.5390 +23521 169522 0.4570 +23521 170850 0.4570 +23521 200916 0.9640 +23521 201595 0.6200 +23521 203068 0.8560 +23521 219927 0.9760 +23521 221078 0.5530 +23521 254268 0.8610 +23521 283518 0.4570 +23521 285367 0.4870 +23521 285855 0.9620 +23521 317781 0.4370 +23521 342538 0.9170 +23521 343068 0.5800 +23521 343070 0.5800 +23521 345051 0.5710 +23521 345630 0.7870 +23521 347487 0.9340 +23521 374659 0.8190 +23521 387129 0.8710 +23521 387712 0.4670 +23521 390999 0.6290 +23521 391002 0.5800 +23521 400735 0.5800 +23521 400736 0.5800 +23521 440560 0.5800 +23521 440561 0.5800 +23521 441873 0.5800 +23521 548645 0.5120 +23521 619279 0.4970 +23521 641776 0.6880 +23521 642489 0.4130 +23521 642987 0.4970 +23521 643909 0.6880 +23521 645051 0.6560 +23521 645073 0.6560 +23521 645359 0.5800 +23521 653619 0.5800 +23521 654364 0.4870 +23521 728378 0.7320 +23521 728524 0.6880 +23521 729396 0.6560 +23521 729422 0.6560 +23521 729428 0.6560 +23521 729431 0.6560 +23521 729442 0.6560 +23521 729447 0.6560 +23521 729528 0.5800 +23521 100008586 0.6560 +23521 100128731 0.5290 +23521 100130890 0.4910 +23521 100131187 0.4920 +23521 100132399 0.6560 +23521 100287482 0.7740 +23521 100505478 0.8050 +23521 100526842 0.9910 +23521 100527943 0.4290 +23521 100529097 0.9180 +23521 100529239 0.9870 +23521 100996746 0.6880 +23521 101929983 0.5800 +23521 102724473 0.6560 +23521 105180390 0.6880 +23521 105180391 0.6880 +23521 114483834 0.5500 +23522 23774 0.9930 +23522 26122 0.5910 +23522 27154 0.9860 +23522 27443 0.4520 +23522 29072 0.5300 +23522 51147 0.9290 +23522 51207 0.4710 +23522 51412 0.5300 +23522 51742 0.5080 +23522 54556 0.6450 +23522 55140 0.5630 +23522 55167 0.4590 +23522 55193 0.4630 +23522 55257 0.6960 +23522 55294 0.4490 +23522 55689 0.4620 +23522 55869 0.4820 +23522 55870 0.5150 +23522 55904 0.4140 +23522 55929 0.6540 +23522 57634 0.4060 +23522 64324 0.4820 +23522 64769 0.9980 +23522 79885 0.4730 +23522 79960 0.5010 +23522 80314 0.6840 +23522 83933 0.4350 +23522 84289 0.9990 +23522 84444 0.4370 +23522 92292 0.5800 +23522 93621 0.5230 +23522 94239 0.4280 +23522 114799 0.4410 +23522 126961 0.9220 +23522 157570 0.4170 +23522 196528 0.4660 +23522 284058 0.5760 +23522 333932 0.9220 +23522 339287 0.5520 +23522 440093 0.9760 +23522 440686 0.9760 +23522 653604 0.9850 +23522 728294 0.4540 +23523 25842 0.9980 +23523 29855 0.9990 +23523 51564 0.4560 +23523 51806 0.8680 +23523 55666 0.4120 +23523 55723 0.8500 +23523 55732 0.4120 +23523 57621 0.5600 +23523 57634 0.6170 +23523 85403 0.4240 +23523 91860 0.8420 +23523 163688 0.8420 +23523 254048 0.8720 +23523 100271849 0.9960 +23524 23658 0.9110 +23524 23759 0.9630 +23524 24144 0.6280 +23524 24148 0.9860 +23524 25766 0.6050 +23524 25804 0.9340 +23524 25949 0.9970 +23524 25957 0.7060 +23524 25980 0.4120 +23524 26017 0.8000 +23524 26121 0.9190 +23524 26130 0.4440 +23524 26227 0.4390 +23524 26986 0.4420 +23524 27238 0.8050 +23524 27258 0.9110 +23524 27316 0.4680 +23524 27336 0.8890 +23524 27339 0.9970 +23524 29123 0.4470 +23524 29896 0.7180 +23524 50488 0.4020 +23524 51340 0.9960 +23524 51362 0.9980 +23524 51428 0.6990 +23524 51503 0.9970 +23524 51538 0.5190 +23524 51593 0.9070 +23524 51634 0.9970 +23524 51639 0.8410 +23524 51645 0.9830 +23524 51690 0.9120 +23524 51691 0.9100 +23524 51729 0.8360 +23524 51747 0.8740 +23524 53938 0.8230 +23524 54883 0.9710 +23524 55026 0.4430 +23524 55100 0.8050 +23524 55110 0.9870 +23524 55234 0.9010 +23524 55660 0.9180 +23524 55692 0.4400 +23524 55696 0.9950 +23524 55702 0.9570 +23524 55749 0.8230 +23524 56919 0.4960 +23524 56949 0.9940 +23524 57142 0.4240 +23524 57187 0.4210 +23524 57461 0.9310 +23524 57522 0.4490 +23524 57634 0.4030 +23524 57703 0.9990 +23524 57794 0.8570 +23524 57819 0.9400 +23524 58509 0.8170 +23524 58517 0.9930 +23524 59286 0.8020 +23524 60625 0.4880 +23524 65109 0.8200 +23524 79005 0.8000 +23524 79446 0.6350 +23524 79576 0.8800 +23524 79631 0.5070 +23524 79637 0.9230 +23524 79706 0.8320 +23524 79753 0.9970 +23524 80011 0.8050 +23524 83443 0.9900 +23524 83938 0.5240 +23524 84060 0.8060 +23524 84316 0.4470 +23524 84530 0.6320 +23524 84811 0.9950 +23524 84844 0.9920 +23524 84911 0.4480 +23524 84930 0.4140 +23524 84950 0.9350 +23524 84967 0.4650 +23524 85476 0.5340 +23524 92906 0.4060 +23524 124245 0.7500 +23524 126259 0.4470 +23524 143884 0.5880 +23524 147650 0.4480 +23524 151613 0.6050 +23524 151903 0.8150 +23524 153527 0.9210 +23524 163859 0.8220 +23524 164045 0.5560 +23524 203523 0.4270 +23524 220074 0.5240 +23524 220988 0.4940 +23524 222194 0.4260 +23524 100534599 0.9320 +23526 51291 0.4590 +23526 53347 0.4070 +23526 55009 0.4990 +23526 64005 0.7440 +23526 64398 0.4200 +23526 89848 0.4140 +23526 91300 0.5050 +23526 91304 0.4060 +23526 389337 0.4620 +23526 401466 0.4090 +23527 26000 0.5090 +23527 26499 0.5660 +23527 50807 0.5750 +23527 51655 0.4420 +23527 51735 0.4020 +23527 54971 0.4070 +23527 57706 0.4770 +23527 64780 0.4710 +23527 83874 0.5770 +23527 84859 0.4060 +23527 85377 0.5060 +23527 116983 0.6150 +23527 163486 0.4270 +23527 197131 0.5070 +23527 414918 0.4610 +23528 26013 0.4590 +23528 55023 0.4870 +23528 79923 0.8200 +23528 91603 0.4890 +23529 55049 0.5820 +23529 386653 0.4320 +23530 26999 0.5270 +23530 51022 0.4940 +23530 51547 0.9080 +23530 51548 0.9060 +23530 55061 0.4220 +23530 55191 0.9100 +23530 57590 0.4430 +23530 64802 0.9300 +23530 65220 0.5150 +23530 83594 0.9040 +23530 133686 0.9490 +23531 29923 0.4170 +23531 54852 0.4740 +23531 85315 0.4790 +23531 120406 0.5090 +23531 124222 0.4810 +23531 152559 0.7630 +23531 164091 0.4440 +23531 344838 0.4010 +23532 23588 0.9210 +23532 23645 0.4310 +23532 30014 0.4580 +23532 30848 0.5810 +23532 51438 0.5430 +23532 51666 0.9030 +23532 53940 0.4140 +23532 54811 0.4210 +23532 54850 0.6210 +23532 55510 0.4230 +23532 55527 0.9010 +23532 55644 0.5110 +23532 55904 0.4710 +23532 56915 0.4340 +23532 56929 0.9140 +23532 57643 0.5410 +23532 57688 0.5400 +23532 64663 0.4050 +23532 64839 0.4620 +23532 65249 0.5400 +23532 79699 0.9150 +23532 81557 0.5810 +23532 89885 0.4570 +23532 116138 0.9220 +23532 118460 0.4200 +23532 129025 0.6690 +23532 139135 0.4810 +23532 140883 0.6560 +23532 150223 0.4850 +23532 150684 0.9000 +23532 158511 0.5260 +23532 266740 0.5250 +23532 340273 0.5100 +23532 389903 0.4480 +23532 440561 0.9060 +23532 440590 0.6180 +23532 541466 0.4810 +23532 645073 0.4010 +23532 653220 0.4570 +23532 653619 0.9070 +23532 727837 0.6170 +23532 728239 0.6120 +23532 728712 0.4690 +23532 100008586 0.4070 +23532 102723547 0.5050 +23533 23566 0.6500 +23533 26499 0.4880 +23533 27071 0.4410 +23533 30837 0.5550 +23533 30849 0.7340 +23533 51206 0.5140 +23533 51764 0.6520 +23533 54331 0.9310 +23533 54776 0.7770 +23533 55697 0.5440 +23533 55970 0.6500 +23533 57121 0.6730 +23533 59345 0.6500 +23533 84174 0.5510 +23533 94235 0.6820 +23533 115098 0.4480 +23533 118788 0.4990 +23533 122809 0.5610 +23533 146850 0.9530 +23533 375444 0.4790 +23533 441925 0.5400 +23533 110117498 0.5400 +23534 23633 0.4590 +23534 23636 0.6780 +23534 24149 0.6370 +23534 26190 0.4660 +23534 26354 0.4020 +23534 26953 0.5900 +23534 29925 0.4720 +23534 29954 0.4410 +23534 30000 0.6920 +23534 51194 0.7700 +23534 51691 0.4170 +23534 53840 0.5890 +23534 54471 0.4410 +23534 54552 0.4430 +23534 54856 0.4290 +23534 55275 0.7780 +23534 55657 0.4100 +23534 55692 0.4180 +23534 55705 0.7220 +23534 55746 0.5440 +23534 57122 0.4710 +23534 57510 0.6180 +23534 57727 0.4200 +23534 60489 0.5620 +23534 64328 0.5000 +23534 64422 0.4520 +23534 79643 0.4460 +23534 79711 0.6790 +23534 79869 0.4420 +23534 79902 0.5670 +23534 80306 0.6330 +23534 83648 0.4800 +23534 85363 0.7670 +23534 150684 0.4030 +23534 163486 0.4030 +23534 203859 0.4030 +23534 402569 0.4140 +23534 445372 0.5800 +23534 729857 0.7670 +23536 25797 0.4120 +23536 54386 0.5460 +23536 54814 0.4850 +23536 54888 0.4250 +23536 57570 0.5980 +23536 64768 0.5270 +23536 79979 0.4770 +23536 80755 0.6520 +23536 113179 0.9530 +23536 134637 0.9310 +23536 142940 0.4480 +23536 219348 0.4170 +23536 503835 0.4810 +23536 100033411 0.5720 +23536 100885850 0.6500 +23538 51764 0.6810 +23538 84886 0.5710 +23539 25794 0.4310 +23539 25932 0.6290 +23539 26503 0.7750 +23539 28985 0.5260 +23539 50651 0.4900 +23539 55966 0.4260 +23539 56999 0.5190 +23539 57835 0.4390 +23539 79872 0.4240 +23539 80012 0.4270 +23539 83872 0.4140 +23539 133418 0.8460 +23539 145173 0.6700 +23539 159963 0.4880 +23539 160728 0.4480 +23539 221074 0.4420 +23539 387715 0.6480 +23541 266629 0.4920 +23542 25830 0.5110 +23542 29780 0.5960 +23542 55586 0.7780 +23542 57016 0.6690 +23542 64837 0.9130 +23542 79924 0.6900 +23542 80824 0.4390 +23542 84687 0.4910 +23542 85358 0.4580 +23542 85376 0.4760 +23542 89953 0.9110 +23542 147700 0.8730 +23542 150221 0.4760 +23542 256472 0.5070 +23542 284339 0.4770 +23542 440804 0.4760 +23543 29117 0.4320 +23543 54502 0.4640 +23543 54845 0.8140 +23543 54915 0.5050 +23543 55147 0.5840 +23543 55544 0.7660 +23543 55696 0.7650 +23543 55740 0.5540 +23543 55796 0.4870 +23543 56853 0.4750 +23543 57060 0.4780 +23543 57396 0.4610 +23543 58155 0.6450 +23543 58473 0.4200 +23543 63948 0.4410 +23543 63971 0.4860 +23543 64506 0.6200 +23543 64753 0.4500 +23543 64778 0.4200 +23543 66037 0.5980 +23543 79171 0.5940 +23543 79750 0.4460 +23543 79923 0.4800 +23543 80004 0.8330 +23543 80315 0.5470 +23543 80790 0.4750 +23543 83641 0.4790 +23543 84528 0.4690 +23543 84530 0.4570 +23543 84908 0.4470 +23543 124540 0.5210 +23543 132864 0.5520 +23543 146713 0.4140 +23543 167153 0.5180 +23543 202559 0.4330 +23543 220988 0.4050 +23543 221662 0.6770 +23543 348093 0.7990 +23544 23549 0.4140 +23544 23621 0.4450 +23544 25825 0.6030 +23544 29781 0.4200 +23544 57168 0.4050 +23544 57554 0.4400 +23544 57649 0.4180 +23544 57685 0.4290 +23544 64478 0.4150 +23544 84629 0.4740 +23544 84684 0.4220 +23544 84700 0.9310 +23544 114880 0.4460 +23544 128434 0.4660 +23544 128989 0.4560 +23544 148823 0.5310 +23544 160335 0.4090 +23544 345757 0.4740 +23544 374378 0.4340 +23544 399687 0.5910 +23544 402055 0.4690 +23544 643904 0.5740 +23545 23710 0.4310 +23545 27068 0.7660 +23545 27109 0.4040 +23545 30008 0.9060 +23545 50617 0.9630 +23545 51160 0.4950 +23545 51382 0.9950 +23545 51606 0.9920 +23545 51651 0.6150 +23545 54453 0.6140 +23545 55425 0.4610 +23545 55653 0.4130 +23545 55697 0.4040 +23545 55858 0.4810 +23545 56052 0.4150 +23545 57696 0.4850 +23545 57707 0.5140 +23545 64077 0.7650 +23545 64756 0.4150 +23545 79643 0.5210 +23545 79644 0.4460 +23545 79877 0.4190 +23545 80347 0.4280 +23545 84289 0.4390 +23545 84317 0.9400 +23545 84650 0.4510 +23545 85365 0.9280 +23545 90231 0.5280 +23545 90423 0.9870 +23545 91949 0.4270 +23545 92344 0.7420 +23545 127124 0.9340 +23545 129563 0.4460 +23545 129685 0.4560 +23545 147007 0.9600 +23545 155066 0.8550 +23545 163882 0.8310 +23545 200576 0.5090 +23545 203547 0.8810 +23545 221264 0.5440 +23545 245972 0.9980 +23545 245973 0.9470 +23545 286410 0.4130 +23545 347735 0.4290 +23545 440400 0.8960 +23545 102157402 0.5850 +23546 51337 0.4540 +23546 54752 0.6070 +23546 55260 0.4600 +23546 58473 0.6460 +23546 64779 0.4090 +23546 83463 0.4450 +23546 122046 0.6430 +23546 148213 0.4710 +23546 171169 0.4410 +23546 254427 0.4600 +23546 388335 0.4490 +23546 392309 0.4680 +23547 50856 0.5350 +23547 51237 0.4500 +23547 51284 0.5810 +23547 51311 0.4010 +23547 54106 0.5330 +23547 55355 0.4430 +23547 79168 0.4150 +23547 84868 0.4610 +23547 170482 0.8370 +23547 283420 0.5090 +23548 28977 0.4670 +23548 51134 0.4170 +23548 51639 0.6240 +23548 54623 0.5280 +23548 54955 0.4040 +23548 55103 0.4150 +23548 57691 0.4400 +23548 63920 0.4580 +23548 79577 0.5030 +23548 80011 0.5640 +23548 80349 0.7310 +23548 81570 0.4410 +23548 83443 0.6060 +23548 84674 0.4550 +23548 84844 0.7250 +23548 90324 0.7280 +23548 123169 0.4800 +23548 151194 0.4850 +23548 151195 0.4050 +23548 162966 0.4040 +23549 23710 0.4240 +23549 29781 0.4320 +23549 29922 0.4450 +23549 51056 0.7270 +23549 54749 0.4070 +23549 54858 0.6080 +23549 54920 0.5010 +23549 56943 0.4370 +23549 57144 0.5000 +23549 63929 0.5680 +23549 64682 0.4030 +23549 79065 0.4540 +23549 79716 0.5140 +23549 79782 0.4240 +23549 81631 0.4300 +23549 83939 0.4220 +23549 84557 0.4070 +23549 84629 0.4770 +23549 114880 0.4350 +23549 116541 0.4760 +23549 151827 0.4630 +23549 283871 0.4190 +23549 285973 0.4430 +23549 374378 0.4150 +23549 440738 0.4060 +23549 643246 0.4060 +23550 26119 0.5730 +23550 26985 0.4540 +23550 79841 0.4150 +23550 80117 0.8130 +23550 283489 0.4120 +23551 25960 0.4800 +23551 50618 0.5400 +23551 54557 0.4260 +23551 56603 0.4900 +23551 57124 0.8890 +23551 57125 0.7770 +23551 63982 0.4600 +23551 80020 0.4530 +23551 80781 0.4430 +23551 84152 0.6650 +23551 91543 0.4090 +23551 257629 0.4040 +23551 644139 0.4220 +23552 23770 0.6280 +23552 51750 0.4850 +23552 51755 0.4260 +23552 57018 0.4190 +23552 57577 0.4120 +23552 65061 0.4050 +23552 79728 0.4300 +23552 81669 0.5460 +23552 83990 0.4830 +23552 139285 0.4100 +23552 728340 0.5200 +23553 50618 0.5360 +23554 23555 0.6240 +23554 25960 0.6800 +23554 26262 0.4920 +23554 55213 0.4720 +23554 55366 0.5030 +23554 79797 0.8400 +23554 89780 0.5280 +23554 161882 0.5900 +23554 220441 0.5590 +23555 27075 0.5130 +23555 51206 0.4590 +23555 57153 0.6640 +23555 81619 0.7240 +23555 93185 0.5700 +23555 340348 0.5490 +23556 23592 0.9580 +23556 26235 0.4510 +23556 27315 0.7180 +23556 30816 0.4560 +23556 51227 0.6380 +23556 51604 0.7330 +23556 54872 0.5950 +23556 55650 0.9760 +23556 65220 0.4040 +23556 79770 0.5430 +23556 80055 0.6410 +23556 80235 0.6980 +23556 84720 0.5880 +23556 84992 0.6460 +23556 93183 0.7500 +23556 93210 0.4420 +23556 121512 0.6050 +23556 128869 0.4540 +23556 284098 0.7740 +23557 25927 0.6060 +23557 25977 0.4990 +23557 26258 0.9990 +23557 26575 0.4230 +23557 27131 0.5980 +23557 28956 0.6300 +23557 51019 0.5620 +23557 51138 0.5080 +23557 51361 0.4900 +23557 51429 0.5000 +23557 54622 0.4340 +23557 54785 0.9990 +23557 54822 0.5660 +23557 54885 0.5110 +23557 55004 0.6450 +23557 55297 0.4020 +23557 55330 0.9770 +23557 55638 0.4210 +23557 55653 0.8790 +23557 57393 0.4560 +23557 57568 0.6140 +23557 60385 0.4200 +23557 60626 0.4100 +23557 63894 0.4050 +23557 63915 0.9960 +23557 64407 0.4180 +23557 79036 0.9980 +23557 79443 0.4080 +23557 79803 0.9000 +23557 81567 0.5060 +23557 84062 0.9990 +23557 84066 0.6240 +23557 84343 0.8780 +23557 84376 0.4580 +23557 85397 0.4310 +23557 89781 0.7880 +23557 112755 0.4580 +23557 115948 0.6360 +23557 118426 0.9980 +23557 119032 0.9990 +23557 120892 0.4450 +23557 127829 0.5440 +23557 130340 0.4990 +23557 140691 0.4990 +23557 143425 0.4240 +23557 157769 0.5320 +23557 163590 0.4810 +23557 192666 0.5910 +23557 221079 0.5450 +23557 282991 0.9990 +23557 286451 0.5030 +23557 339344 0.4740 +23557 345611 0.7340 +23557 388552 0.9990 +23557 389541 0.6840 +23557 431704 0.4480 +23557 729991 0.9970 +23558 23559 0.9530 +23558 23645 0.4380 +23558 25937 0.8090 +23558 27089 0.9230 +23558 27350 0.4300 +23558 29796 0.8680 +23558 51741 0.8720 +23558 54205 0.4740 +23558 55841 0.4560 +23558 57379 0.4260 +23558 60485 0.4070 +23558 60489 0.4270 +23558 64111 0.4730 +23558 64978 0.6100 +23558 79002 0.6070 +23558 81341 0.4110 +23558 83737 0.8200 +23558 84701 0.6110 +23558 84886 0.6020 +23558 85302 0.5200 +23558 89869 0.5730 +23558 91107 0.6510 +23558 91300 0.5400 +23558 125965 0.6040 +23558 140564 0.4270 +23558 154796 0.5940 +23558 164668 0.4260 +23558 200315 0.4260 +23558 200316 0.4270 +23558 201292 0.5350 +23558 201294 0.4490 +23558 283459 0.5110 +23558 388753 0.5720 +23559 30819 0.4220 +23559 51741 0.7820 +23559 57179 0.5380 +23559 64210 0.5970 +23559 79676 0.5730 +23559 79913 0.9270 +23559 81552 0.5670 +23559 83707 0.4200 +23559 83737 0.4470 +23559 84447 0.4670 +23559 85352 0.4520 +23559 93973 0.4700 +23559 116159 0.4330 +23559 125476 0.6350 +23559 131920 0.4440 +23559 219854 0.5710 +23560 23632 0.4080 +23560 23708 0.7720 +23560 24140 0.9070 +23560 25873 0.9730 +23560 25879 0.9110 +23560 25885 0.9350 +23560 25983 0.8490 +23560 26155 0.9970 +23560 26156 0.9960 +23560 26258 0.4040 +23560 26354 0.9920 +23560 26574 0.8490 +23560 26953 0.4540 +23560 26995 0.5670 +23560 27000 0.6580 +23560 27037 0.5580 +23560 27042 0.5650 +23560 27292 0.8610 +23560 27340 0.8240 +23560 28987 0.8940 +23560 28998 0.6790 +23560 29093 0.6560 +23560 29889 0.9990 +23560 29941 0.4970 +23560 29960 0.8630 +23560 29997 0.9960 +23560 30834 0.5420 +23560 30836 0.7530 +23560 51012 0.4510 +23560 51018 0.9640 +23560 51042 0.9950 +23560 51068 0.9980 +23560 51069 0.6560 +23560 51073 0.6120 +23560 51077 0.4600 +23560 51081 0.4110 +23560 51082 0.6320 +23560 51096 0.8680 +23560 51106 0.5640 +23560 51118 0.8130 +23560 51119 0.5010 +23560 51121 0.8430 +23560 51147 0.4610 +23560 51154 0.9990 +23560 51187 0.9990 +23560 51202 0.8210 +23560 51236 0.4350 +23560 51319 0.5220 +23560 51388 0.9960 +23560 51490 0.4350 +23560 51574 0.4370 +23560 51575 0.9420 +23560 51602 0.9660 +23560 51605 0.7690 +23560 54433 0.6740 +23560 54463 0.6770 +23560 54475 0.9830 +23560 54509 0.4270 +23560 54514 0.5860 +23560 54517 0.7990 +23560 54552 0.9910 +23560 54555 0.6800 +23560 54606 0.9780 +23560 54663 0.9940 +23560 54700 0.4090 +23560 54853 0.4470 +23560 54865 0.5980 +23560 54881 0.9270 +23560 54888 0.8340 +23560 55003 0.8850 +23560 55006 0.5930 +23560 55027 0.5090 +23560 55127 0.9330 +23560 55131 0.9750 +23560 55140 0.4320 +23560 55153 0.9970 +23560 55170 0.5370 +23560 55226 0.8880 +23560 55272 0.5780 +23560 55299 0.9980 +23560 55319 0.9510 +23560 55341 0.9690 +23560 55505 0.4850 +23560 55510 0.4570 +23560 55591 0.7340 +23560 55601 0.4740 +23560 55621 0.4150 +23560 55622 0.6330 +23560 55646 0.6130 +23560 55651 0.7630 +23560 55695 0.6560 +23560 55703 0.7150 +23560 55718 0.5880 +23560 55720 0.9230 +23560 55759 0.9970 +23560 55760 0.6850 +23560 55781 0.7740 +23560 55794 0.6350 +23560 55813 0.8760 +23560 55854 0.6180 +23560 56341 0.5350 +23560 56342 0.8490 +23560 56474 0.5780 +23560 56647 0.4210 +23560 56829 0.4640 +23560 56902 0.7720 +23560 56931 0.4130 +23560 56934 0.4060 +23560 56937 0.5300 +23560 57050 0.9140 +23560 57062 0.8770 +23560 57109 0.4990 +23560 57418 0.9470 +23560 57510 0.5770 +23560 57696 0.9720 +23560 60487 0.6330 +23560 63899 0.6770 +23560 64118 0.5880 +23560 64216 0.7460 +23560 64318 0.9940 +23560 64425 0.7570 +23560 64434 0.4330 +23560 64794 0.8820 +23560 65003 0.4090 +23560 65083 0.7810 +23560 79009 0.6520 +23560 79029 0.5380 +23560 79039 0.8040 +23560 79050 0.8340 +23560 79083 0.5620 +23560 79137 0.5380 +23560 79159 0.9450 +23560 79571 0.6900 +23560 79590 0.7010 +23560 79631 0.5460 +23560 79658 0.4930 +23560 79705 0.6890 +23560 79707 0.4280 +23560 79711 0.6830 +23560 79730 0.6390 +23560 79753 0.7030 +23560 79954 0.8770 +23560 79979 0.5520 +23560 80135 0.9840 +23560 80324 0.4030 +23560 81627 0.4100 +23560 83448 0.5240 +23560 83473 0.4020 +23560 83475 0.5640 +23560 83479 0.5380 +23560 83480 0.4780 +23560 83732 0.6960 +23560 83743 0.8970 +23560 84128 0.9310 +23560 84135 0.8320 +23560 84154 0.9990 +23560 84172 0.9300 +23560 84273 0.8340 +23560 84294 0.7370 +23560 84298 0.8450 +23560 84365 0.9980 +23560 84450 0.4780 +23560 84549 0.9970 +23560 84705 0.7860 +23560 84916 0.8890 +23560 84946 0.9810 +23560 85476 0.4500 +23560 85865 0.4220 +23560 87178 0.4140 +23560 90121 0.6410 +23560 90441 0.7300 +23560 90826 0.4110 +23560 91646 0.5360 +23560 91875 0.4750 +23560 92170 0.9480 +23560 92856 0.8550 +23560 93974 0.6240 +23560 115708 0.6900 +23560 116832 0.8400 +23560 116966 0.8430 +23560 117246 0.9950 +23560 120892 0.4250 +23560 124454 0.7000 +23560 133396 0.5860 +23560 134218 0.4970 +23560 142940 0.6240 +23560 146212 0.9380 +23560 153443 0.6390 +23560 161424 0.4580 +23560 162427 0.5350 +23560 165545 0.6840 +23560 166378 0.5480 +23560 168400 0.4570 +23560 200172 0.4570 +23560 200916 0.8130 +23560 221078 0.9780 +23560 221830 0.6970 +23560 254268 0.6220 +23560 284346 0.4370 +23560 285855 0.9440 +23560 317781 0.7210 +23560 344758 0.5360 +23560 345630 0.6920 +23560 348995 0.4080 +23560 377677 0.4060 +23560 387129 0.8940 +23560 387338 0.7020 +23560 503542 0.7150 +23560 645051 0.4120 +23560 645073 0.4120 +23560 653361 0.7590 +23560 692312 0.7800 +23560 728689 0.6820 +23560 729396 0.4120 +23560 729422 0.4120 +23560 729428 0.4640 +23560 729431 0.4120 +23560 729442 0.4120 +23560 729447 0.4120 +23560 100008586 0.4120 +23560 100132399 0.4120 +23560 100505478 0.8650 +23560 100526842 0.7960 +23560 102724473 0.4120 +23560 104909134 0.4730 +23560 114483834 0.4360 +23562 24146 0.6950 +23562 26285 0.6800 +23562 27134 0.7840 +23562 49861 0.6680 +23562 51168 0.4800 +23562 51208 0.6870 +23562 53842 0.6810 +23562 53904 0.4040 +23562 56288 0.6780 +23562 56302 0.4990 +23562 56649 0.4460 +23562 64072 0.4150 +23562 64093 0.4780 +23562 64699 0.5950 +23562 65217 0.4170 +23562 90952 0.6780 +23562 117531 0.4990 +23562 124590 0.4090 +23562 126326 0.4670 +23562 137075 0.7030 +23562 146183 0.4460 +23562 149461 0.7050 +23562 153562 0.5840 +23562 161497 0.4990 +23562 259236 0.5060 +23562 286262 0.4450 +23562 286676 0.5790 +23562 340990 0.5050 +23562 389207 0.4360 +23562 644672 0.6760 +23562 100132463 0.6930 +23562 100288814 0.6600 +23562 100506658 0.8510 +23563 27233 0.7330 +23563 27284 0.7590 +23563 64090 0.7280 +23563 79369 0.4150 +23563 79583 0.4680 +23563 89792 0.4320 +23563 93010 0.5310 +23563 442038 0.7400 +23564 23576 0.6600 +23564 51247 0.4240 +23564 56341 0.4270 +23564 64902 0.7950 +23564 80739 0.6060 +23564 80740 0.5080 +23564 84364 0.4640 +23566 25833 0.7220 +23566 26575 0.5550 +23566 27334 0.5810 +23566 29899 0.4100 +23566 51365 0.7550 +23566 51764 0.5410 +23566 53637 0.4440 +23566 53836 0.6820 +23566 54331 0.5520 +23566 55970 0.5450 +23566 56923 0.5020 +23566 57105 0.4950 +23566 57121 0.9870 +23566 59345 0.7220 +23566 64407 0.4990 +23566 79153 0.6640 +23566 94235 0.5410 +23566 115557 0.4990 +23566 116512 0.4120 +23566 146850 0.6500 +23566 200879 0.8850 +23566 284161 0.6710 +23566 431704 0.5080 +23567 23660 0.4280 +23567 25904 0.4660 +23567 27067 0.5940 +23567 27332 0.4860 +23567 50848 0.4160 +23567 54861 0.4510 +23567 55342 0.4960 +23567 55922 0.4240 +23567 64327 0.4330 +23567 79664 0.9480 +23567 79724 0.4540 +23567 81857 0.4090 +23567 83607 0.4240 +23567 90592 0.4040 +23567 92105 0.4570 +23567 115098 0.5010 +23568 26512 0.5510 +23568 29105 0.8460 +23568 55108 0.4590 +23568 55779 0.4040 +23568 56993 0.4750 +23568 57728 0.4260 +23568 63906 0.4350 +23568 79187 0.4590 +23568 79645 0.4390 +23568 79925 0.4380 +23568 80217 0.4090 +23568 83894 0.4350 +23568 84071 0.4180 +23568 84074 0.4470 +23568 85403 0.4510 +23568 89970 0.5620 +23568 94137 0.4730 +23568 131965 0.4340 +23568 143684 0.5360 +23568 157657 0.5390 +23568 199223 0.4140 +23568 223082 0.4130 +23568 374407 0.4050 +23569 26191 0.8670 +23569 29948 0.4200 +23569 51147 0.7200 +23569 51744 0.4900 +23569 79258 0.4040 +23569 79792 0.4800 +23569 79837 0.6580 +23569 79841 0.4790 +23569 84569 0.4650 +23569 115352 0.4900 +23569 167826 0.5680 +23569 345611 0.4140 +23569 388698 0.5090 +23569 440093 0.9050 +23569 440686 0.9050 +23569 653604 0.9560 +23576 51465 0.4530 +23576 54496 0.4250 +23576 64902 0.8520 +23576 143282 0.4440 +23580 26030 0.4160 +23580 28964 0.4300 +23580 51057 0.4220 +23580 55004 0.4290 +23580 55752 0.8850 +23580 55914 0.4060 +23580 55964 0.8870 +23580 55971 0.6290 +23580 56882 0.4730 +23580 56990 0.4490 +23580 80790 0.4380 +23580 81839 0.4050 +23580 84816 0.4200 +23580 92922 0.4980 +23580 123720 0.4100 +23580 151011 0.8710 +23580 254427 0.5000 +23580 346288 0.8230 +23581 25818 0.7050 +23581 26154 0.5450 +23581 26239 0.4770 +23581 29108 0.5090 +23581 54205 0.4220 +23581 55367 0.4230 +23581 59344 0.5870 +23581 63036 0.4160 +23581 65122 0.5250 +23581 84648 0.5730 +23581 85480 0.4420 +23581 89777 0.7310 +23581 121214 0.6220 +23581 126410 0.5050 +23581 126638 0.6070 +23581 149018 0.4380 +23581 151516 0.5500 +23581 204219 0.5440 +23581 254910 0.4660 +23581 257000 0.5550 +23581 284110 0.5610 +23581 285848 0.5780 +23581 337960 0.5410 +23581 348938 0.4790 +23581 353131 0.4840 +23581 353132 0.5320 +23581 353133 0.5000 +23581 353134 0.4500 +23581 353135 0.4700 +23581 353137 0.4970 +23581 353139 0.4610 +23581 353140 0.4640 +23581 353141 0.4780 +23581 353142 0.4970 +23581 353144 0.4310 +23581 353145 0.5250 +23581 374897 0.4900 +23581 388533 0.4160 +23581 388697 0.5090 +23581 388698 0.9280 +23581 448834 0.5480 +23581 448835 0.5110 +23581 100129271 0.5150 +23582 25949 0.9700 +23582 29844 0.8440 +23582 51231 0.4490 +23582 51548 0.4730 +23582 55272 0.4580 +23582 55510 0.4120 +23582 55713 0.6180 +23582 57645 0.4260 +23582 84331 0.6220 +23582 116448 0.6650 +23582 128308 0.4540 +23582 132949 0.5050 +23582 133482 0.4010 +23582 146227 0.4150 +23582 199692 0.5850 +23582 283899 0.6300 +23583 27301 0.6210 +23583 27343 0.8040 +23583 29128 0.4070 +23583 51020 0.6760 +23583 51031 0.4700 +23583 54784 0.4470 +23583 54790 0.5060 +23583 54963 0.4170 +23583 55247 0.6200 +23583 57379 0.7120 +23583 57659 0.4800 +23583 60489 0.4300 +23583 64080 0.4080 +23583 79661 0.7920 +23583 80198 0.5040 +23583 80312 0.5430 +23583 83549 0.4740 +23583 84153 0.4040 +23583 84619 0.4700 +23583 84693 0.4760 +23583 90353 0.4100 +23583 113179 0.8460 +23583 115426 0.4900 +23583 121642 0.4650 +23583 129607 0.5240 +23583 139596 0.7720 +23583 146956 0.4210 +23583 148479 0.4370 +23583 151531 0.5060 +23583 162417 0.6740 +23583 200424 0.5280 +23583 221120 0.4550 +23583 252969 0.7090 +23583 253461 0.4340 +23583 389434 0.4400 +23583 102723407 0.4370 +23584 25839 0.6200 +23584 54827 0.4350 +23584 55222 0.4160 +23584 57511 0.5380 +23584 57549 0.4540 +23584 83548 0.7670 +23584 84934 0.4240 +23584 91949 0.6230 +23584 131177 0.4360 +23584 153579 0.4230 +23584 345643 0.4140 +23585 25949 0.5280 +23585 29946 0.5800 +23585 54741 0.9320 +23585 55149 0.4330 +23585 55219 0.6010 +23585 57035 0.6800 +23585 64081 0.4240 +23585 122945 0.4470 +23585 266655 0.4730 +23585 347051 0.4030 +23585 643382 0.5450 +23586 23643 0.4580 +23586 24138 0.9500 +23586 25820 0.4870 +23586 25939 0.6880 +23586 26007 0.6300 +23586 26253 0.4330 +23586 26986 0.5270 +23586 27005 0.7990 +23586 27161 0.4140 +23586 29102 0.4760 +23586 29108 0.7870 +23586 29110 0.9940 +23586 29126 0.5400 +23586 29761 0.9370 +23586 29927 0.4490 +23586 30816 0.4910 +23586 30835 0.6780 +23586 50852 0.6120 +23586 51135 0.5410 +23586 51191 0.9600 +23586 51266 0.4500 +23586 51284 0.9200 +23586 51295 0.5570 +23586 51297 0.4520 +23586 51311 0.7910 +23586 51320 0.6100 +23586 51428 0.6630 +23586 51643 0.8450 +23586 54106 0.9020 +23586 54464 0.4500 +23586 54476 0.4610 +23586 54505 0.5760 +23586 54606 0.7040 +23586 54625 0.7490 +23586 54708 0.4750 +23586 54739 0.8460 +23586 54809 0.8820 +23586 54941 0.9910 +23586 55008 0.8680 +23586 55072 0.6130 +23586 55337 0.5290 +23586 55593 0.6440 +23586 55601 0.9920 +23586 55770 0.4700 +23586 55905 0.4140 +23586 56829 0.9710 +23586 56832 0.5370 +23586 56897 0.4810 +23586 56919 0.5260 +23586 57062 0.4540 +23586 57120 0.4440 +23586 57169 0.4540 +23586 57506 0.9990 +23586 57674 0.4370 +23586 57696 0.4040 +23586 57697 0.6110 +23586 58484 0.8410 +23586 59272 0.5810 +23586 60489 0.4760 +23586 63891 0.4110 +23586 64108 0.8200 +23586 64127 0.8910 +23586 64135 0.9600 +23586 64170 0.8450 +23586 64581 0.5460 +23586 64761 0.7580 +23586 79132 0.9970 +23586 79671 0.9470 +23586 79677 0.5250 +23586 79792 0.5100 +23586 79845 0.5690 +23586 80013 0.5550 +23586 80143 0.8440 +23586 80196 0.4010 +23586 80198 0.5650 +23586 81030 0.6980 +23586 81622 0.4940 +23586 81631 0.4510 +23586 81793 0.4920 +23586 81844 0.5480 +23586 83666 0.8300 +23586 83737 0.6210 +23586 84166 0.9950 +23586 84282 0.9980 +23586 84893 0.5560 +23586 85363 0.8210 +23586 85364 0.7100 +23586 85441 0.6010 +23586 87178 0.4130 +23586 89122 0.8540 +23586 90850 0.4110 +23586 91543 0.9530 +23586 91662 0.6950 +23586 92312 0.6100 +23586 93978 0.4090 +23586 94240 0.6140 +23586 114548 0.8170 +23586 114609 0.5710 +23586 115004 0.8990 +23586 115361 0.5550 +23586 115362 0.5530 +23586 116071 0.4240 +23586 117854 0.5870 +23586 126206 0.4500 +23586 126364 0.8070 +23586 129607 0.7120 +23586 135644 0.8580 +23586 136991 0.4030 +23586 147945 0.4330 +23586 148022 0.8680 +23586 151636 0.6950 +23586 163702 0.5880 +23586 165631 0.4380 +23586 170506 0.6970 +23586 171389 0.6980 +23586 197259 0.4350 +23586 197358 0.4850 +23586 199713 0.4520 +23586 201292 0.5900 +23586 219285 0.8200 +23586 221302 0.5210 +23586 254528 0.4120 +23586 260434 0.4910 +23586 282616 0.6260 +23586 282617 0.6000 +23586 282618 0.7230 +23586 338323 0.5090 +23586 338376 0.5360 +23586 340061 0.9320 +23586 345611 0.7760 +23586 377630 0.5890 +23586 392188 0.4990 +23586 400668 0.4740 +23586 401447 0.4990 +23586 405754 0.4150 +23586 439996 0.4950 +23586 442862 0.4200 +23586 445372 0.4040 +23586 645402 0.4990 +23586 645836 0.4990 +23586 728373 0.6100 +23586 728386 0.4990 +23586 100287144 0.4990 +23586 100287178 0.4990 +23586 100287205 0.4990 +23586 100287238 0.4990 +23586 100287327 0.4990 +23586 100287364 0.4990 +23586 100287404 0.4990 +23586 100287441 0.4990 +23586 100287478 0.4990 +23586 100287513 0.4990 +23587 23761 0.4270 +23587 26610 0.9990 +23587 27069 0.5960 +23587 27304 0.6310 +23587 51087 0.4070 +23587 51122 0.4810 +23587 51268 0.8420 +23587 51611 0.6000 +23587 51647 0.5300 +23587 54859 0.9990 +23587 55140 0.9990 +23587 55250 0.9980 +23587 55813 0.5110 +23587 80311 0.5910 +23587 81605 0.5620 +23587 84268 0.4120 +23587 84461 0.4520 +23587 89978 0.4940 +23587 90353 0.7390 +23587 92715 0.4920 +23587 112970 0.7520 +23587 285381 0.6470 +23587 348180 0.5200 +23587 440400 0.4720 +23587 653604 0.4870 +23588 25820 0.4320 +23588 26043 0.5910 +23588 27252 0.4990 +23588 51666 0.9040 +23588 53635 0.7090 +23588 55175 0.4080 +23588 55527 0.9270 +23588 55603 0.4150 +23588 55829 0.8620 +23588 56929 0.9430 +23588 57643 0.5700 +23588 57688 0.5600 +23588 58515 0.7870 +23588 63932 0.4390 +23588 65249 0.5420 +23588 79699 0.9370 +23588 89857 0.4330 +23588 113115 0.4390 +23588 116138 0.9320 +23588 123207 0.4500 +23588 131377 0.5320 +23588 150684 0.9000 +23588 348303 0.4990 +23588 390594 0.4890 +23588 440561 0.9400 +23588 440590 0.6550 +23588 653619 0.9310 +23589 29035 0.4460 +23589 29965 0.4140 +23589 50813 0.4090 +23589 50855 0.4310 +23589 51021 0.4140 +23589 54512 0.4360 +23589 55095 0.4040 +23589 55163 0.4100 +23589 55238 0.4620 +23589 55846 0.6390 +23589 56915 0.4340 +23589 64979 0.4150 +23589 81442 0.4020 +23589 85440 0.4020 +23589 87178 0.4640 +23589 115752 0.4680 +23589 118460 0.4340 +23589 128372 0.4230 +23589 129563 0.4710 +23589 201305 0.4900 +23589 286410 0.4130 +23589 101929989 0.5190 +23590 23623 0.4740 +23590 27235 0.9980 +23590 28976 0.8160 +23590 29914 0.6370 +23590 51004 0.9040 +23590 51117 0.9160 +23590 51179 0.4680 +23590 51725 0.4690 +23590 51805 0.8900 +23590 54363 0.4680 +23590 54840 0.8370 +23590 57017 0.9850 +23590 57107 0.9810 +23590 57143 0.4330 +23590 79934 0.9360 +23590 79947 0.9650 +23590 80219 0.6260 +23590 81607 0.4610 +23590 84274 0.9130 +23590 90956 0.5100 +23590 91734 0.6020 +23590 93058 0.6360 +23590 112812 0.5640 +23590 116150 0.9470 +23590 137682 0.6160 +23590 203054 0.4200 +23590 340390 0.5610 +23590 613227 0.4160 +23590 100529261 0.5170 +23592 25777 0.6320 +23592 25909 0.5480 +23592 26092 0.4030 +23592 26122 0.5060 +23592 26993 0.4670 +23592 27289 0.5650 +23592 27339 0.4510 +23592 29984 0.5650 +23592 51479 0.4570 +23592 51592 0.4750 +23592 51643 0.4530 +23592 54468 0.5330 +23592 54764 0.5050 +23592 54872 0.5290 +23592 55656 0.4730 +23592 55746 0.4100 +23592 57122 0.5250 +23592 57541 0.4480 +23592 57786 0.4410 +23592 64328 0.4370 +23592 84034 0.4210 +23592 84640 0.4030 +23592 84720 0.4120 +23592 84814 0.4840 +23592 84823 0.8260 +23592 91746 0.4100 +23592 91782 0.5170 +23592 93183 0.4200 +23592 93273 0.4350 +23592 126549 0.6010 +23592 129401 0.6010 +23592 137209 0.4360 +23592 140836 0.9680 +23592 158747 0.4400 +23592 163183 0.4870 +23592 163747 0.5290 +23592 199953 0.5800 +23592 200407 0.4250 +23592 221496 0.5580 +23592 253827 0.6480 +23592 253832 0.4450 +23592 256979 0.4450 +23592 283349 0.4050 +23592 285672 0.4230 +23592 646262 0.4370 +23593 27010 0.6240 +23593 27443 0.9140 +23593 29124 0.6010 +23593 51668 0.4780 +23593 55040 0.4670 +23593 55201 0.8630 +23594 23595 0.9990 +23594 23633 0.5350 +23594 23649 0.7940 +23594 29127 0.4400 +23594 29803 0.7200 +23594 29935 0.5800 +23594 29980 0.5240 +23594 51053 0.8940 +23594 51203 0.5090 +23594 51512 0.4140 +23594 51514 0.4110 +23594 51659 0.5050 +23594 54107 0.5830 +23594 54962 0.6000 +23594 55143 0.5140 +23594 55165 0.4960 +23594 55388 0.9070 +23594 55723 0.5320 +23594 56655 0.6050 +23594 56942 0.4740 +23594 56943 0.5880 +23594 57405 0.4320 +23594 63967 0.6360 +23594 64785 0.5950 +23594 79019 0.5060 +23594 79075 0.4370 +23594 79621 0.4180 +23594 79733 0.4550 +23594 79801 0.5880 +23594 79892 0.4460 +23594 81620 0.9970 +23594 83461 0.4650 +23594 83540 0.4930 +23594 83743 0.5340 +23594 84126 0.6340 +23594 84296 0.6280 +23594 84515 0.7930 +23594 84823 0.4890 +23594 89884 0.7140 +23594 90381 0.5690 +23594 146956 0.5450 +23594 157570 0.4080 +23594 220134 0.4630 +23594 222229 0.9640 +23594 254394 0.5010 +23594 259266 0.5140 +23594 348654 0.5090 +23595 23633 0.5260 +23595 23649 0.7240 +23595 26073 0.4480 +23595 29803 0.7270 +23595 29916 0.4690 +23595 29935 0.5060 +23595 51053 0.7630 +23595 51141 0.5800 +23595 51659 0.6170 +23595 51692 0.4430 +23595 54107 0.5850 +23595 54145 0.5180 +23595 54148 0.4520 +23595 55388 0.9380 +23595 55766 0.5180 +23595 56655 0.5690 +23595 56943 0.5150 +23595 57038 0.4640 +23595 57418 0.6330 +23595 60491 0.4790 +23595 63967 0.5720 +23595 64318 0.9610 +23595 64785 0.7920 +23595 79577 0.4190 +23595 79596 0.6970 +23595 79892 0.6140 +23595 79991 0.4690 +23595 81620 0.9980 +23595 84126 0.5040 +23595 84250 0.4260 +23595 84296 0.7850 +23595 84515 0.8190 +23595 84942 0.4730 +23595 85236 0.5180 +23595 85417 0.4110 +23595 94239 0.5640 +23595 96764 0.4620 +23595 116211 0.4720 +23595 123169 0.4900 +23595 124245 0.4120 +23595 128312 0.5180 +23595 157777 0.6090 +23595 222229 0.9950 +23595 254394 0.9150 +23595 255626 0.5180 +23595 390874 0.5380 +23595 440093 0.5810 +23595 440686 0.5920 +23595 474382 0.5180 +23595 653604 0.7930 +23596 26031 0.4370 +23596 51764 0.5410 +23596 54331 0.5410 +23596 55970 0.5440 +23596 59345 0.5460 +23596 84141 0.4070 +23596 92737 0.4120 +23596 94235 0.5410 +23596 128025 0.5820 +23596 221391 0.6700 +23596 440738 0.7570 +23597 26027 0.5040 +23597 26275 0.4750 +23597 28976 0.4650 +23597 51084 0.6180 +23597 55856 0.6780 +23597 79135 0.5530 +23597 80311 0.5000 +23597 94056 0.4270 +23597 117145 0.5540 +23597 122970 0.5880 +23597 132949 0.4100 +23597 134526 0.5630 +23597 284486 0.5570 +23597 641371 0.4860 +23597 641372 0.6230 +23598 51642 0.4550 +23598 60468 0.5510 +23598 84759 0.4290 +23598 100288687 0.4120 +23600 26061 0.7920 +23600 26063 0.4720 +23600 27034 0.4300 +23600 27232 0.5280 +23600 51084 0.4050 +23600 51151 0.5550 +23600 51280 0.5110 +23600 54474 0.6910 +23600 54995 0.4180 +23600 55289 0.4890 +23600 55312 0.8030 +23600 55825 0.5830 +23600 55862 0.4200 +23600 60528 0.5500 +23600 80221 0.4570 +23600 80270 0.8790 +23600 81285 0.9060 +23600 84263 0.8940 +23600 85414 0.7130 +23600 115817 0.4080 +23600 140856 0.5440 +23600 143503 0.8480 +23600 197322 0.4540 +23600 219743 0.5950 +23600 221895 0.4240 +23600 284422 0.4090 +23600 389434 0.8250 +23600 400566 0.6650 +23600 109703458 0.4670 +23600 122405565 0.4090 +23601 26253 0.4190 +23601 27180 0.4380 +23601 29121 0.4890 +23601 50856 0.5640 +23601 51266 0.6750 +23601 51311 0.5150 +23601 51651 0.4200 +23601 53831 0.6090 +23601 54209 0.5380 +23601 54210 0.7770 +23601 58484 0.4680 +23601 80381 0.4830 +23601 84303 0.4890 +23601 84418 0.4270 +23601 93978 0.5050 +23601 124599 0.4710 +23601 158747 0.4220 +23601 160364 0.5510 +23601 199675 0.4340 +23601 202309 0.4300 +23601 283420 0.5490 +23601 345778 0.4200 +23601 100526664 0.5500 +23603 28988 0.5110 +23603 51474 0.5070 +23603 54443 0.5020 +23603 55312 0.4350 +23603 55920 0.6820 +23603 57175 0.9170 +23603 83988 0.4210 +23603 84940 0.6360 +23603 85462 0.4020 +23603 85477 0.4560 +23603 93621 0.4040 +23603 136306 0.4210 +23603 200895 0.4510 +23603 252884 0.4400 +23604 51806 0.9080 +23604 55626 0.4250 +23604 57534 0.5260 +23604 58484 0.4540 +23604 79156 0.4360 +23604 81671 0.5370 +23604 91860 0.8360 +23604 157753 0.4950 +23604 163688 0.8340 +23604 219699 0.7870 +23604 415116 0.4410 +23604 440738 0.5060 +23604 441925 0.9100 +23607 23616 0.4160 +23607 23621 0.4080 +23607 23624 0.4150 +23607 23646 0.6120 +23607 26228 0.8360 +23607 27235 0.4800 +23607 27295 0.5680 +23607 29127 0.5540 +23607 29760 0.4640 +23607 29765 0.5330 +23607 29964 0.5400 +23607 30011 0.8680 +23607 50807 0.7690 +23607 50837 0.4220 +23607 51004 0.4700 +23607 51177 0.4740 +23607 51196 0.9130 +23607 51225 0.4190 +23607 51314 0.6690 +23607 51338 0.6960 +23607 51495 0.4170 +23607 53904 0.9060 +23607 54209 0.5910 +23607 54443 0.8540 +23607 55063 0.7240 +23607 55114 0.5060 +23607 55243 0.9950 +23607 55604 0.7730 +23607 55622 0.4800 +23607 56940 0.7200 +23607 57091 0.7400 +23607 57107 0.4050 +23607 57554 0.5090 +23607 59342 0.4970 +23607 64231 0.7720 +23607 64236 0.5400 +23607 64423 0.9260 +23607 79822 0.4140 +23607 79890 0.9730 +23607 79934 0.4480 +23607 83478 0.5000 +23607 83548 0.4480 +23607 83661 0.6620 +23607 83700 0.7230 +23607 83715 0.7290 +23607 84623 0.9060 +23607 84952 0.5200 +23607 90627 0.4340 +23607 92521 0.5430 +23607 93343 0.8280 +23607 93663 0.4900 +23607 123041 0.7010 +23607 219537 0.5400 +23607 221393 0.4110 +23607 245802 0.7180 +23607 254102 0.5510 +23607 342527 0.5400 +23607 343578 0.4070 +23607 643680 0.7600 +23608 23609 0.5090 +23608 25793 0.4060 +23608 25853 0.4850 +23608 26986 0.8210 +23608 27102 0.4290 +23608 29896 0.6230 +23608 51094 0.4780 +23608 51218 0.4020 +23608 51631 0.6080 +23608 55437 0.4440 +23608 55692 0.4530 +23608 55819 0.6750 +23608 57670 0.5430 +23608 79753 0.4220 +23608 84264 0.4210 +23608 84932 0.4760 +23608 90850 0.4620 +23608 136991 0.4090 +23608 400961 0.4070 +23609 26986 0.4310 +23609 54726 0.4720 +23609 55140 0.6560 +23609 57662 0.4480 +23609 64236 0.5650 +23609 64761 0.6630 +23609 79882 0.6010 +23609 80746 0.5430 +23609 84264 0.5080 +23609 85364 0.4240 +23609 90850 0.4650 +23609 92400 0.6530 +23609 93973 0.5600 +23609 553115 0.4470 +23612 26499 0.6030 +23612 27113 0.4490 +23612 51278 0.4010 +23612 60401 0.4560 +23612 64393 0.5640 +23612 64782 0.6960 +23612 220042 0.4040 +23612 256949 0.5380 +23613 26173 0.9940 +23613 26512 0.9940 +23613 51018 0.4280 +23613 53335 0.4920 +23613 53615 0.7980 +23613 54552 0.4080 +23613 54815 0.9150 +23613 55205 0.8080 +23613 55506 0.4700 +23613 56704 0.4200 +23613 57062 0.4660 +23613 57167 0.4780 +23613 57459 0.6340 +23613 57473 0.6070 +23613 57504 0.6960 +23613 57592 0.9690 +23613 64061 0.7830 +23613 65123 0.9940 +23613 80789 0.9940 +23613 85461 0.4210 +23613 91603 0.4210 +23613 93349 0.4320 +23613 197259 0.4330 +23613 283248 0.4980 +23613 440093 0.6010 +23613 440686 0.5990 +23613 653604 0.6050 +23616 30011 0.7920 +23616 30062 0.4030 +23616 55114 0.8400 +23616 57026 0.5770 +23616 81928 0.4320 +23617 50632 0.5650 +23617 51422 0.4250 +23617 53632 0.4250 +23617 60385 0.9870 +23617 80853 0.4060 +23617 85359 0.4440 +23617 85376 0.4050 +23617 93661 0.4250 +23617 128977 0.4070 +23617 130106 0.4360 +23617 136242 0.4130 +23617 146849 0.4610 +23617 284359 0.4270 +23617 317719 0.4760 +23619 26958 0.4280 +23619 55607 0.4090 +23619 57663 0.6750 +23619 114026 0.5750 +23619 259232 0.4110 +23619 266812 0.5360 +23620 24144 0.9580 +23620 51738 0.5980 +23620 54883 0.5070 +23620 55702 0.4120 +23620 56923 0.4560 +23620 60484 0.4080 +23620 60675 0.4990 +23620 84432 0.5040 +23620 84634 0.4020 +23620 93377 0.5940 +23620 115557 0.5350 +23620 128674 0.4230 +23620 129521 0.5320 +23620 155368 0.4580 +23620 221938 0.4160 +23620 257313 0.5010 +23620 283999 0.4820 +23620 387129 0.4560 +23620 404552 0.4070 +23620 594857 0.5520 +23621 25797 0.6250 +23621 25825 0.9090 +23621 26088 0.9790 +23621 26232 0.4540 +23621 27242 0.6080 +23621 51107 0.7930 +23621 54103 0.4470 +23621 54205 0.4190 +23621 54209 0.5730 +23621 54431 0.4390 +23621 54587 0.5970 +23621 54933 0.5790 +23621 55737 0.6060 +23621 55851 0.8750 +23621 57142 0.9940 +23621 58533 0.7230 +23621 60496 0.6730 +23621 64837 0.4930 +23621 65018 0.4140 +23621 79258 0.8610 +23621 81542 0.6040 +23621 81618 0.7580 +23621 83464 0.5930 +23621 84570 0.5950 +23621 89796 0.6660 +23621 89953 0.5200 +23621 114815 0.4550 +23621 124925 0.4690 +23621 137902 0.4810 +23621 146713 0.4270 +23621 147700 0.4870 +23621 203413 0.4230 +23621 255738 0.4870 +23621 257364 0.5160 +23621 347731 0.6650 +23621 404552 0.4200 +23623 27235 0.6080 +23623 29914 0.5700 +23623 51179 0.4680 +23623 54363 0.4680 +23623 57107 0.4710 +23623 57515 0.5940 +23623 79006 0.4260 +23623 79065 0.5470 +23623 79412 0.4240 +23623 79777 0.4240 +23623 79947 0.5530 +23623 80230 0.4730 +23623 84304 0.4920 +23623 91734 0.6460 +23623 116150 0.4700 +23623 137682 0.5610 +23623 146705 0.4210 +23623 340390 0.5620 +23624 26999 0.5800 +23624 27237 0.4040 +23624 30011 0.8590 +23624 55845 0.6170 +23624 56904 0.8010 +23624 57111 0.4090 +23624 83737 0.4320 +23624 148581 0.5430 +23625 25847 0.4310 +23625 25906 0.4050 +23625 26188 0.4310 +23625 29882 0.8470 +23625 29945 0.8500 +23625 51371 0.6060 +23625 51382 0.4290 +23625 51433 0.8500 +23625 51434 0.5620 +23625 51668 0.6610 +23625 51768 0.5490 +23625 55119 0.5190 +23625 56984 0.4540 +23625 57505 0.5770 +23625 58512 0.4800 +23625 60592 0.5060 +23625 64682 0.8480 +23625 79839 0.4360 +23625 80148 0.5950 +23625 83786 0.5460 +23625 84153 0.4570 +23625 119504 0.4010 +23625 220359 0.5540 +23625 246184 0.4100 +23625 254102 0.4990 +23625 283130 0.6140 +23625 284485 0.5610 +23625 399909 0.4480 +23626 25788 0.5850 +23626 25929 0.4090 +23626 27030 0.7090 +23626 27127 0.7680 +23626 27136 0.7360 +23626 27173 0.8400 +23626 29893 0.5990 +23626 30827 0.5730 +23626 50511 0.8440 +23626 51361 0.4320 +23626 51455 0.5720 +23626 51567 0.5560 +23626 51750 0.4500 +23626 54145 0.5830 +23626 54514 0.5360 +23626 55063 0.4320 +23626 55124 0.4430 +23626 55766 0.5130 +23626 55775 0.5280 +23626 56154 0.5550 +23626 56158 0.6000 +23626 56159 0.7230 +23626 56979 0.9350 +23626 57082 0.6080 +23626 57167 0.4180 +23626 57697 0.7250 +23626 63979 0.4510 +23626 79269 0.4090 +23626 79677 0.6790 +23626 80010 0.6920 +23626 80119 0.5010 +23626 80198 0.8730 +23626 80349 0.9680 +23626 83844 0.4030 +23626 84057 0.8230 +23626 84072 0.9010 +23626 84464 0.5190 +23626 84515 0.4570 +23626 84690 0.6040 +23626 84893 0.4870 +23626 84944 0.5070 +23626 85236 0.5800 +23626 85417 0.4130 +23626 93426 0.7430 +23626 93953 0.4390 +23626 94239 0.7090 +23626 119392 0.5080 +23626 124817 0.7620 +23626 128312 0.5820 +23626 143689 0.4540 +23626 145645 0.4590 +23626 146956 0.5870 +23626 147872 0.4070 +23626 150280 0.8220 +23626 150365 0.8800 +23626 151525 0.4090 +23626 152098 0.4740 +23626 157777 0.4530 +23626 158401 0.5500 +23626 164045 0.8180 +23626 196446 0.4970 +23626 254394 0.4270 +23626 254528 0.7060 +23626 255626 0.5950 +23626 256006 0.5670 +23626 256126 0.7420 +23626 256764 0.4090 +23626 283129 0.4510 +23626 283677 0.8710 +23626 283847 0.5220 +23626 284071 0.4230 +23626 285498 0.8280 +23626 317761 0.4740 +23626 339345 0.5480 +23626 339834 0.8020 +23626 342977 0.4090 +23626 346673 0.7600 +23626 348654 0.5620 +23626 387893 0.5030 +23626 388649 0.6090 +23626 440093 0.6540 +23626 440686 0.5630 +23626 474382 0.5220 +23626 494188 0.4650 +23626 548593 0.6540 +23626 642636 0.8200 +23626 644186 0.5290 +23626 653604 0.7710 +23626 729475 0.4330 +23626 100507650 0.5580 +23626 101928601 0.7620 +23627 55248 0.4590 +23627 57761 0.7690 +23627 83639 0.4210 +23627 92170 0.4280 +23627 225689 0.4140 +23627 503542 0.8810 +23630 23704 0.7940 +23630 29098 0.7200 +23630 54795 0.6040 +23630 55800 0.7330 +23630 55916 0.7970 +23630 56479 0.4510 +23630 63904 0.4710 +23630 93107 0.4710 +23630 376132 0.4750 +23632 54475 0.4170 +23632 83743 0.4510 +23632 84154 0.5680 +23633 26168 0.4220 +23633 26953 0.4980 +23633 29843 0.5090 +23633 30000 0.5500 +23633 51194 0.4280 +23633 51574 0.5930 +23633 51602 0.5500 +23633 54512 0.4690 +23633 54952 0.4240 +23633 55122 0.4210 +23633 55686 0.4500 +23633 55705 0.5070 +23633 55709 0.6290 +23633 56257 0.4250 +23633 57154 0.5270 +23633 57510 0.6890 +23633 57679 0.5240 +23633 57680 0.6490 +23633 59343 0.5450 +23633 79711 0.4900 +23633 81611 0.6320 +23633 83640 0.4740 +23633 83931 0.4280 +23633 84220 0.4530 +23633 84639 0.7680 +23633 136332 0.4590 +23633 200162 0.4310 +23633 205564 0.4520 +23633 283383 0.4850 +23633 347744 0.4080 +23633 392517 0.4890 +23633 402569 0.6230 +23633 653489 0.4620 +23633 729540 0.4530 +23635 26468 0.7490 +23635 26994 0.4090 +23635 51132 0.4240 +23635 54973 0.5490 +23635 55885 0.5110 +23635 58493 0.8900 +23635 64843 0.8490 +23635 64859 0.4980 +23635 65123 0.8700 +23635 80070 0.4650 +23635 89884 0.8080 +23635 91734 0.8330 +23635 170463 0.8470 +23635 348174 0.4200 +23636 25909 0.9890 +23636 25929 0.4680 +23636 26097 0.4620 +23636 26227 0.4490 +23636 26471 0.5480 +23636 26953 0.4420 +23636 27161 0.4160 +23636 29107 0.9400 +23636 29894 0.4410 +23636 30000 0.8110 +23636 50628 0.4350 +23636 51182 0.4420 +23636 51213 0.4530 +23636 51362 0.4240 +23636 51501 0.6270 +23636 51692 0.4710 +23636 51808 0.4820 +23636 53371 0.9990 +23636 53981 0.4600 +23636 54474 0.5730 +23636 54596 0.4460 +23636 54830 0.5640 +23636 54960 0.5390 +23636 55110 0.5780 +23636 55143 0.4960 +23636 55145 0.6550 +23636 55301 0.4440 +23636 55308 0.7150 +23636 55339 0.4110 +23636 55342 0.4420 +23636 55706 0.9870 +23636 55746 0.9950 +23636 55916 0.8740 +23636 56000 0.8240 +23636 56001 0.7800 +23636 57122 0.9970 +23636 57187 0.5650 +23636 57727 0.5780 +23636 65109 0.5230 +23636 79023 0.9800 +23636 79228 0.5510 +23636 79711 0.6760 +23636 79753 0.4100 +23636 79760 0.4570 +23636 79833 0.4130 +23636 79902 0.9950 +23636 80145 0.5310 +23636 80184 0.4970 +23636 81608 0.4490 +23636 81929 0.9840 +23636 84248 0.4900 +23636 84271 0.5370 +23636 84321 0.5080 +23636 84324 0.5100 +23636 84823 0.5480 +23636 91754 0.4570 +23636 114882 0.6060 +23636 116835 0.4050 +23636 129401 0.9950 +23636 137362 0.4020 +23636 140609 0.4050 +23636 157869 0.4440 +23636 197322 0.4650 +23636 203228 0.5740 +23636 259217 0.4050 +23636 259307 0.8680 +23636 348995 0.9840 +23636 376497 0.4470 +23636 400668 0.4680 +23636 642799 0.4380 +23636 653489 0.4560 +23636 728343 0.9150 +23636 728888 0.4380 +23636 729857 0.9470 +23636 100101267 0.8330 +23636 100288332 0.4390 +23637 23710 0.6590 +23637 25962 0.5120 +23637 27241 0.4110 +23637 50636 0.4120 +23637 51552 0.4270 +23637 51560 0.7210 +23637 54542 0.4980 +23637 54662 0.4180 +23637 55055 0.4050 +23637 55450 0.4010 +23637 56478 0.4470 +23637 57403 0.5170 +23637 64786 0.4100 +23637 79759 0.4610 +23637 80323 0.4220 +23637 80852 0.4970 +23637 128239 0.5050 +23637 128637 0.5760 +23637 399979 0.4100 +23639 25981 0.5970 +23639 27019 0.8520 +23639 27148 0.4430 +23639 51314 0.7750 +23639 51364 0.9380 +23639 54768 0.6590 +23639 54919 0.8440 +23639 54970 0.5120 +23639 55011 0.5400 +23639 55036 0.8210 +23639 55130 0.7940 +23639 55172 0.7720 +23639 55815 0.4220 +23639 56171 0.5990 +23639 56683 0.8030 +23639 64446 0.8030 +23639 79659 0.4170 +23639 79819 0.4010 +23639 79864 0.4790 +23639 79925 0.4940 +23639 83538 0.5970 +23639 85016 0.6450 +23639 85452 0.4050 +23639 85478 0.7820 +23639 89765 0.7270 +23639 92749 0.6900 +23639 93233 0.7430 +23639 115399 0.4280 +23639 115948 0.7180 +23639 116143 0.6570 +23639 120379 0.4510 +23639 123872 0.5640 +23639 137835 0.5610 +23639 139212 0.8510 +23639 146754 0.4170 +23639 146845 0.4840 +23639 149465 0.5050 +23639 154865 0.4560 +23639 161582 0.8250 +23639 164781 0.5410 +23639 200132 0.4070 +23639 200162 0.4230 +23639 200373 0.4310 +23639 201625 0.4700 +23639 221421 0.7420 +23639 339829 0.8270 +23639 345643 0.5060 +23639 345895 0.7800 +23639 352909 0.8560 +23639 374407 0.4310 +23639 388389 0.8370 +23640 23732 0.5000 +23640 25852 0.4370 +23640 25873 0.7520 +23640 25885 0.7410 +23640 26098 0.7750 +23640 26135 0.5380 +23640 26227 0.4480 +23640 26271 0.4250 +23640 26289 0.4340 +23640 26353 0.4190 +23640 26589 0.6980 +23640 27236 0.4250 +23640 27349 0.4990 +23640 28991 0.4050 +23640 28998 0.7740 +23640 29088 0.5550 +23640 29093 0.7750 +23640 29102 0.4770 +23640 29927 0.8300 +23640 29978 0.4190 +23640 29979 0.4110 +23640 29997 0.4650 +23640 50808 0.4340 +23640 51021 0.9020 +23640 51023 0.5610 +23640 51065 0.6250 +23640 51068 0.6820 +23640 51069 0.7920 +23640 51073 0.8390 +23640 51081 0.7780 +23640 51116 0.7200 +23640 51119 0.4950 +23640 51121 0.7770 +23640 51149 0.7680 +23640 51154 0.8350 +23640 51182 0.4820 +23640 51187 0.5730 +23640 51263 0.5250 +23640 51264 0.8990 +23640 51314 0.4080 +23640 51319 0.5940 +23640 51465 0.4530 +23640 51727 0.4340 +23640 54431 0.4170 +23640 54516 0.4250 +23640 54788 0.4970 +23640 54998 0.4210 +23640 55052 0.8810 +23640 55127 0.4320 +23640 55143 0.4380 +23640 55168 0.5760 +23640 55173 0.8280 +23640 55176 0.8150 +23640 55272 0.8400 +23640 55316 0.7800 +23640 55324 0.5030 +23640 55466 0.4540 +23640 55591 0.5930 +23640 55621 0.5360 +23640 55651 0.6130 +23640 55703 0.7150 +23640 55813 0.4180 +23640 55929 0.4100 +23640 56648 0.6570 +23640 56941 0.4260 +23640 56965 0.4780 +23640 57129 0.6340 +23640 57136 0.4560 +23640 60488 0.6710 +23640 60558 0.5880 +23640 60678 0.4660 +23640 63875 0.9100 +23640 63931 0.7740 +23640 64146 0.6430 +23640 64432 0.5310 +23640 64771 0.4510 +23640 64960 0.7710 +23640 64963 0.7780 +23640 64965 0.9100 +23640 64968 0.9020 +23640 64969 0.8280 +23640 64975 0.6900 +23640 64976 0.7390 +23640 64978 0.5750 +23640 64979 0.9070 +23640 64981 0.6610 +23640 64983 0.8740 +23640 65003 0.6930 +23640 65005 0.9080 +23640 65008 0.7740 +23640 65080 0.4770 +23640 65121 0.5440 +23640 65122 0.5440 +23640 65993 0.5300 +23640 79139 0.4670 +23640 79590 0.7880 +23640 79631 0.6970 +23640 79668 0.4780 +23640 80267 0.4730 +23640 80273 0.7770 +23640 81532 0.4270 +23640 81570 0.6380 +23640 83475 0.6030 +23640 84172 0.7170 +23640 84446 0.7640 +23640 84545 0.6830 +23640 84787 0.5810 +23640 85013 0.4100 +23640 85476 0.6950 +23640 87178 0.4570 +23640 90313 0.4820 +23640 91574 0.4250 +23640 92196 0.4710 +23640 92399 0.8060 +23640 114987 0.6550 +23640 115098 0.5260 +23640 115416 0.5900 +23640 115708 0.4040 +23640 116461 0.4030 +23640 116541 0.4860 +23640 116832 0.5270 +23640 120526 0.4260 +23640 120892 0.7160 +23640 122481 0.4340 +23640 124454 0.5350 +23640 124995 0.5670 +23640 126402 0.7740 +23640 140032 0.6740 +23640 143244 0.6570 +23640 151194 0.7280 +23640 157310 0.4880 +23640 158067 0.4340 +23640 165721 0.4120 +23640 200916 0.5980 +23640 201595 0.4810 +23640 219927 0.9060 +23640 221264 0.4340 +23640 259217 0.4570 +23640 285855 0.6930 +23640 339416 0.6600 +23640 343068 0.5440 +23640 343070 0.5440 +23640 345051 0.5000 +23640 347487 0.6760 +23640 374659 0.6190 +23640 378884 0.4850 +23640 387129 0.6920 +23640 390999 0.5440 +23640 391002 0.5440 +23640 400735 0.5440 +23640 400736 0.5440 +23640 440560 0.5440 +23640 440561 0.5440 +23640 441873 0.5440 +23640 641776 0.5970 +23640 643909 0.5970 +23640 645051 0.5110 +23640 645073 0.5110 +23640 645359 0.5440 +23640 653619 0.5440 +23640 728524 0.5970 +23640 729396 0.5110 +23640 729422 0.5110 +23640 729428 0.5110 +23640 729431 0.5110 +23640 729442 0.5110 +23640 729447 0.5110 +23640 729528 0.5440 +23640 100008586 0.5110 +23640 100132399 0.5110 +23640 100287482 0.6760 +23640 100505478 0.6920 +23640 100526842 0.7780 +23640 100529097 0.6640 +23640 100529239 0.7190 +23640 100996746 0.5970 +23640 101929983 0.5440 +23640 102724473 0.5110 +23640 105180390 0.5970 +23640 105180391 0.5970 +23640 114483834 0.5030 +23641 26240 0.4400 +23641 54552 0.5150 +23641 57529 0.6960 +23641 57697 0.5320 +23641 64648 0.4200 +23641 84708 0.5650 +23641 340595 0.6530 +23643 26052 0.4200 +23643 26190 0.4790 +23643 27069 0.9100 +23643 29108 0.4690 +23643 29110 0.7030 +23643 50508 0.4210 +23643 51135 0.6130 +23643 51284 0.6930 +23643 51311 0.6900 +23643 54106 0.8080 +23643 54472 0.4730 +23643 54681 0.4530 +23643 57162 0.4950 +23643 58484 0.4040 +23643 59307 0.6120 +23643 64127 0.5520 +23643 64135 0.4090 +23643 64581 0.4910 +23643 81793 0.7790 +23643 90865 0.5140 +23643 112398 0.5140 +23643 114548 0.4990 +23643 114609 0.9810 +23643 114899 0.4680 +23643 148022 0.8360 +23643 245812 0.8280 +23643 257397 0.6130 +23643 338872 0.4990 +23643 345456 0.4930 +23643 353376 0.8730 +23643 375189 0.4950 +23643 387129 0.4240 +23643 100302736 0.6790 +23644 23658 0.6760 +23644 25804 0.8610 +23644 25921 0.4530 +23644 26065 0.9750 +23644 26173 0.4960 +23644 26523 0.4620 +23644 26986 0.6650 +23644 27161 0.8620 +23644 27257 0.9450 +23644 27258 0.6450 +23644 27327 0.7760 +23644 28960 0.5290 +23644 30827 0.4870 +23644 51428 0.4780 +23644 51481 0.6760 +23644 51690 0.7220 +23644 54464 0.9950 +23644 54535 0.5210 +23644 54542 0.5910 +23644 55627 0.5310 +23644 55629 0.6630 +23644 55683 0.4870 +23644 55738 0.7670 +23644 55802 0.9990 +23644 55813 0.4230 +23644 56478 0.7220 +23644 57410 0.5050 +23644 57532 0.5110 +23644 57805 0.8510 +23644 57819 0.7190 +23644 58524 0.4030 +23644 64506 0.6320 +23644 64852 0.4870 +23644 65083 0.5150 +23644 79869 0.5530 +23644 79968 0.5100 +23644 80153 0.9990 +23644 80198 0.4570 +23644 80347 0.4150 +23644 83592 0.4370 +23644 84206 0.4820 +23644 112869 0.5130 +23644 123904 0.5810 +23644 149041 0.6100 +23644 149345 0.4430 +23644 149986 0.4840 +23644 167227 0.9990 +23644 171017 0.4690 +23644 192669 0.4600 +23644 196513 0.9920 +23644 219988 0.9990 +23644 221749 0.4100 +23644 221908 0.4850 +23644 399909 0.4590 +23644 401152 0.4570 +23644 550643 0.6830 +23645 23764 0.4180 +23645 27089 0.8610 +23645 27102 0.6860 +23645 29796 0.8630 +23645 30001 0.7260 +23645 30849 0.4290 +23645 50507 0.5430 +23645 51079 0.5240 +23645 51444 0.4280 +23645 51720 0.4120 +23645 54205 0.7850 +23645 54948 0.4310 +23645 55143 0.4210 +23645 55967 0.5400 +23645 57128 0.8200 +23645 57407 0.5340 +23645 57761 0.5430 +23645 57827 0.4190 +23645 64111 0.7040 +23645 64651 0.6840 +23645 79002 0.5210 +23645 79004 0.4240 +23645 79094 0.6370 +23645 79660 0.5420 +23645 79728 0.5710 +23645 79729 0.4450 +23645 80184 0.4060 +23645 80195 0.5340 +23645 84687 0.8110 +23645 84701 0.5560 +23645 84886 0.5290 +23645 84919 0.8900 +23645 84939 0.7630 +23645 89801 0.5420 +23645 90506 0.5400 +23645 90673 0.5420 +23645 112812 0.4300 +23645 117289 0.4230 +23645 125965 0.5210 +23645 139221 0.6610 +23645 140885 0.4370 +23645 164684 0.4110 +23645 168400 0.6910 +23645 170712 0.4060 +23645 254050 0.5400 +23645 283459 0.5420 +23645 286187 0.5520 +23645 374291 0.6630 +23645 388753 0.5170 +23645 390999 0.4160 +23645 391002 0.4340 +23645 440275 0.5070 +23645 440567 0.6380 +23645 648791 0.5420 +23645 728317 0.6610 +23646 23761 0.9110 +23646 26279 0.6770 +23646 30814 0.7030 +23646 50487 0.7240 +23646 51314 0.5100 +23646 51338 0.4200 +23646 54209 0.6950 +23646 54947 0.9030 +23646 55063 0.5310 +23646 55326 0.6510 +23646 55349 0.8090 +23646 56894 0.6630 +23646 56895 0.6670 +23646 56994 0.9240 +23646 57037 0.4730 +23646 57091 0.5290 +23646 64231 0.4710 +23646 64600 0.6500 +23646 64900 0.6590 +23646 79888 0.9110 +23646 79890 0.5290 +23646 81490 0.9060 +23646 81579 0.7060 +23646 83440 0.4380 +23646 84513 0.9010 +23646 84647 0.7060 +23646 85465 0.9080 +23646 122618 0.9110 +23646 123041 0.4470 +23646 123745 0.7040 +23646 129642 0.9160 +23646 139189 0.7010 +23646 147746 0.4780 +23646 151056 0.6660 +23646 154141 0.9150 +23646 160851 0.6790 +23646 196051 0.9000 +23646 201164 0.7010 +23646 245802 0.4670 +23646 253558 0.6520 +23646 254531 0.9000 +23646 255189 0.6570 +23646 283748 0.6560 +23646 387521 0.9000 +23646 387522 0.9000 +23646 391013 0.6500 +23646 100137049 0.6750 +23647 25813 0.4050 +23647 26999 0.4780 +23647 27076 0.4270 +23647 27236 0.7850 +23647 51763 0.4420 +23647 56623 0.4540 +23647 56940 0.5360 +23647 56993 0.4320 +23649 25842 0.4990 +23649 25913 0.5130 +23649 26277 0.5680 +23649 27127 0.4530 +23649 27297 0.9100 +23649 29781 0.4730 +23649 29883 0.4140 +23649 29935 0.9300 +23649 29980 0.9460 +23649 50485 0.4390 +23649 51514 0.4120 +23649 51567 0.4130 +23649 51659 0.8090 +23649 54107 0.9700 +23649 54108 0.9200 +23649 54386 0.5640 +23649 54892 0.5880 +23649 54921 0.6090 +23649 54962 0.4070 +23649 55215 0.4770 +23649 55388 0.8330 +23649 55723 0.5300 +23649 56655 0.9650 +23649 56992 0.5130 +23649 57405 0.4700 +23649 57804 0.5600 +23649 63895 0.4380 +23649 63922 0.8440 +23649 64151 0.5000 +23649 64785 0.6220 +23649 79075 0.7560 +23649 79085 0.4100 +23649 79892 0.6510 +23649 79915 0.6090 +23649 79980 0.4660 +23649 79991 0.9690 +23649 80119 0.6870 +23649 80169 0.9290 +23649 81620 0.7430 +23649 84083 0.4180 +23649 84296 0.7400 +23649 84515 0.7760 +23649 91869 0.4630 +23649 92797 0.6600 +23649 201973 0.4400 +23649 254394 0.5940 +23649 642636 0.5440 +23649 100134934 0.9570 +23650 50852 0.8750 +23650 51127 0.4520 +23650 54765 0.5080 +23650 55217 0.4180 +23650 64800 0.4430 +23650 79102 0.5020 +23650 81559 0.5360 +23650 81844 0.5670 +23650 84851 0.4100 +23650 89122 0.4110 +23650 89870 0.4510 +23650 135644 0.5240 +23650 203328 0.4140 +23650 286827 0.5210 +23654 27289 0.9770 +23654 29984 0.9590 +23654 54437 0.6200 +23654 54910 0.9960 +23654 55558 0.6000 +23654 57556 0.4370 +23654 57715 0.9780 +23654 60491 0.5920 +23654 64218 0.9780 +23654 83892 0.4160 +23654 83933 0.4110 +23654 91584 0.5910 +23654 113246 0.6100 +23654 120425 0.8140 +23654 375790 0.5120 +23657 27165 0.6230 +23657 29968 0.4490 +23657 30061 0.5190 +23657 30835 0.4570 +23657 54407 0.5100 +23657 55240 0.4330 +23657 55611 0.8850 +23657 55652 0.4440 +23657 55847 0.4500 +23657 56301 0.5390 +23657 64764 0.5100 +23657 79094 0.5910 +23657 79587 0.4250 +23657 80221 0.4010 +23657 81539 0.4350 +23657 84883 0.6800 +23657 92745 0.4060 +23657 132949 0.4320 +23657 140809 0.4780 +23657 257202 0.4450 +23657 440275 0.4460 +23657 493869 0.4620 +23658 24148 0.9990 +23658 25804 0.9990 +23658 25948 0.4440 +23658 26065 0.4600 +23658 26121 0.9960 +23658 27257 0.9990 +23658 27258 0.9990 +23658 27336 0.5380 +23658 50804 0.4250 +23658 51002 0.5160 +23658 51013 0.4680 +23658 51340 0.9560 +23658 51501 0.4200 +23658 51503 0.8310 +23658 51634 0.9600 +23658 51639 0.8890 +23658 51690 0.9990 +23658 51691 0.9990 +23658 51729 0.8790 +23658 51747 0.5160 +23658 54464 0.9740 +23658 54957 0.7910 +23658 55110 0.9490 +23658 55234 0.9810 +23658 55285 0.4140 +23658 55374 0.6370 +23658 55599 0.4140 +23658 55651 0.4250 +23658 55696 0.8370 +23658 55749 0.5220 +23658 55802 0.6070 +23658 56257 0.7310 +23658 56892 0.4230 +23658 57409 0.4820 +23658 57703 0.9250 +23658 57794 0.5200 +23658 57819 0.9990 +23658 59286 0.9160 +23658 64852 0.7020 +23658 79171 0.9450 +23658 79753 0.9910 +23658 80153 0.7410 +23658 83443 0.9930 +23658 84316 0.9130 +23658 84619 0.5850 +23658 84811 0.9530 +23658 84844 0.9940 +23658 84950 0.9920 +23658 84967 0.7930 +23658 116028 0.6330 +23658 118472 0.6270 +23658 124801 0.6720 +23658 126259 0.6430 +23658 134353 0.5410 +23658 147650 0.6430 +23658 149986 0.4070 +23658 153527 0.9940 +23658 164045 0.5310 +23658 164781 0.6420 +23658 167227 0.7030 +23658 196513 0.5780 +23658 197135 0.8460 +23658 197370 0.4550 +23658 219988 0.9910 +23658 284325 0.9260 +23658 348793 0.6440 +23659 25833 0.4380 +23659 26279 0.8230 +23659 30814 0.7560 +23659 50487 0.8430 +23659 54947 0.7300 +23659 55238 0.4750 +23659 56261 0.9000 +23659 57406 0.4150 +23659 64600 0.7120 +23659 79888 0.7570 +23659 80168 0.4160 +23659 81579 0.7760 +23659 84647 0.7730 +23659 84649 0.4540 +23659 116255 0.4160 +23659 123745 0.7670 +23659 151056 0.9290 +23659 158833 0.4160 +23659 158835 0.4160 +23659 254531 0.7860 +23659 255189 0.7680 +23659 283748 0.7820 +23659 340654 0.4190 +23659 346606 0.4160 +23659 347516 0.4160 +23659 375775 0.9290 +23659 391013 0.7110 +23659 100137049 0.7250 +23660 25904 0.6330 +23660 51077 0.6030 +23660 51406 0.4670 +23660 55750 0.4370 +23660 56658 0.4290 +23660 63906 0.4530 +23660 64969 0.4660 +23660 79009 0.5070 +23660 79089 0.4770 +23660 79882 0.4390 +23660 80153 0.4080 +23660 83607 0.5650 +23660 84321 0.6060 +23660 84950 0.4530 +23660 85406 0.4410 +23660 91949 0.4210 +23660 112849 0.4020 +23660 114826 0.4860 +23660 130535 0.4180 +23660 146050 0.4450 +23660 200014 0.5290 +23660 221786 0.4650 +23660 728741 0.5070 +23670 26045 0.9240 +23670 27163 0.4760 +23670 54414 0.4510 +23670 64359 0.4800 +23670 93035 0.4220 +23670 138240 0.4480 +23670 138241 0.5270 +23671 27164 0.4270 +23671 53346 0.5710 +23671 55816 0.4100 +23671 60529 0.5070 +23671 65009 0.4230 +23671 140738 0.4910 +23671 255324 0.5010 +23671 285600 0.4270 +23673 26022 0.4820 +23673 26258 0.9190 +23673 26276 0.9460 +23673 26984 0.6130 +23673 27065 0.4550 +23673 27072 0.8220 +23673 27236 0.4200 +23673 29091 0.6830 +23673 51272 0.7640 +23673 51552 0.4640 +23673 51594 0.7870 +23673 53407 0.9390 +23673 55014 0.9570 +23673 55610 0.5430 +23673 55737 0.4060 +23673 55754 0.5500 +23673 55823 0.8460 +23673 55847 0.4650 +23673 55850 0.9030 +23673 56850 0.4570 +23673 57617 0.8410 +23673 63894 0.7790 +23673 63908 0.9280 +23673 64145 0.4370 +23673 64601 0.8990 +23673 65082 0.9510 +23673 79735 0.4940 +23673 84079 0.4060 +23673 91860 0.4310 +23673 94233 0.5370 +23673 112755 0.6760 +23673 113878 0.4350 +23673 116841 0.9540 +23673 134957 0.9170 +23673 143187 0.9990 +23673 152579 0.6940 +23673 165055 0.4100 +23673 203062 0.5730 +23673 339302 0.5400 +23673 415117 0.6850 +23673 594855 0.5400 +23676 26548 0.9060 +23676 27295 0.5570 +23676 29895 0.6440 +23676 29899 0.6170 +23676 51168 0.4220 +23676 51778 0.7430 +23676 54084 0.6640 +23676 58529 0.5020 +23676 84651 0.4200 +23676 117531 0.4220 +23676 125336 0.5680 +23676 126326 0.4180 +23676 129446 0.5410 +23676 140458 0.5680 +23676 146183 0.4480 +23676 146862 0.4760 +23676 150572 0.5720 +23676 161497 0.5530 +23676 202333 0.4850 +23676 219557 0.4470 +23676 221662 0.4320 +23676 221823 0.7170 +23676 222662 0.4010 +23676 286262 0.6120 +23676 340990 0.4090 +23676 388551 0.6080 +23676 389125 0.4420 +23676 389207 0.4460 +23676 442721 0.6000 +23677 26509 0.4950 +23677 28956 0.5540 +23677 30010 0.4630 +23677 51520 0.4350 +23677 54468 0.4310 +23677 54810 0.7190 +23677 55004 0.5470 +23677 55040 0.4450 +23677 57795 0.4180 +23677 58528 0.6540 +23677 64121 0.6690 +23677 64145 0.4350 +23677 81572 0.4950 +23677 84131 0.4280 +23677 84219 0.4090 +23677 85439 0.5220 +23677 96459 0.4330 +23677 130560 0.4670 +23677 153129 0.5350 +23677 245972 0.4080 +23677 245973 0.4030 +23677 388595 0.4920 +23677 389541 0.5940 +23678 51465 0.4390 +23678 57521 0.4380 +23678 57761 0.4900 +23678 79109 0.5200 +23678 80124 0.4400 +23678 84335 0.4100 +23678 84447 0.4930 +23678 200576 0.4020 +23678 253260 0.5140 +23682 51151 0.4400 +23682 51622 0.4790 +23682 55255 0.5260 +23682 55737 0.4530 +23682 63971 0.4650 +23682 64151 0.9290 +23682 84079 0.8950 +23682 84343 0.5550 +23682 89781 0.7690 +23682 120892 0.7050 +23682 140775 0.5390 +23682 203228 0.6710 +23682 221960 0.4770 +23683 25865 0.9760 +23683 26287 0.5230 +23683 26499 0.7680 +23683 51564 0.4810 +23683 51806 0.4900 +23683 54434 0.5580 +23683 57498 0.7150 +23683 64764 0.6730 +23683 84699 0.6500 +23683 90993 0.6680 +23683 91860 0.4800 +23683 148327 0.6500 +23683 163688 0.4720 +23683 253260 0.4290 +23704 30819 0.5920 +23704 50944 0.4980 +23704 51806 0.4750 +23704 55800 0.7150 +23704 56479 0.8930 +23704 56995 0.4290 +23704 79192 0.6630 +23704 91860 0.4750 +23704 163688 0.4750 +23704 283298 0.4520 +23705 25861 0.4140 +23705 25945 0.9600 +23705 26045 0.5680 +23705 27111 0.4490 +23705 27328 0.5100 +23705 27434 0.6140 +23705 30835 0.4290 +23705 50616 0.4630 +23705 50848 0.5570 +23705 51455 0.5730 +23705 51678 0.9020 +23705 51705 0.4130 +23705 54205 0.4900 +23705 54413 0.7130 +23705 55743 0.4180 +23705 56253 0.9990 +23705 57379 0.4410 +23705 57502 0.7250 +23705 57555 0.7460 +23705 57863 0.9490 +23705 59283 0.4530 +23705 64101 0.4010 +23705 64399 0.4760 +23705 65258 0.4790 +23705 79955 0.4560 +23705 81035 0.4190 +23705 83700 0.6350 +23705 83742 0.5800 +23705 84868 0.9880 +23705 140885 0.4310 +23705 146894 0.4090 +23705 151647 0.4560 +23705 253559 0.8250 +23705 283420 0.5600 +23705 284194 0.5700 +23705 440603 0.4360 +23705 643418 0.5180 +23705 654346 0.5710 +23708 25873 0.5500 +23708 26019 0.5390 +23708 26986 0.9930 +23708 29104 0.4630 +23708 51065 0.5260 +23708 51121 0.5640 +23708 51504 0.4620 +23708 53918 0.5920 +23708 55239 0.4010 +23708 55345 0.5560 +23708 55629 0.4990 +23708 55802 0.5270 +23708 60678 0.4080 +23708 64221 0.5040 +23708 64743 0.4170 +23708 65109 0.5610 +23708 65110 0.4540 +23708 80336 0.4660 +23708 81570 0.6160 +23708 85364 0.4460 +23708 91746 0.5120 +23708 116832 0.6050 +23708 132430 0.5890 +23708 135295 0.4380 +23708 140032 0.5350 +23708 140801 0.6060 +23708 166379 0.4400 +23708 200916 0.5050 +23708 255308 0.5770 +23708 389677 0.4790 +23708 389857 0.6620 +23708 728689 0.4350 +23710 23770 0.5710 +23710 23786 0.9680 +23710 25829 0.5440 +23710 25851 0.6650 +23710 25923 0.8690 +23710 25978 0.5410 +23710 25989 0.5760 +23710 26086 0.4570 +23710 26100 0.9070 +23710 26747 0.5820 +23710 27243 0.6030 +23710 27304 0.5460 +23710 27338 0.4760 +23710 29110 0.4830 +23710 29978 0.6820 +23710 29979 0.7040 +23710 29982 0.4190 +23710 30849 0.9120 +23710 50617 0.4570 +23710 50944 0.4230 +23710 51024 0.5460 +23710 51100 0.4780 +23710 51271 0.4880 +23710 51368 0.5260 +23710 51569 0.6590 +23710 51622 0.6630 +23710 51652 0.5230 +23710 51806 0.5140 +23710 53349 0.6940 +23710 53917 0.4200 +23710 54205 0.5500 +23710 54463 0.8620 +23710 54472 0.6870 +23710 55014 0.7080 +23710 55054 0.9900 +23710 55062 0.8840 +23710 55102 0.7750 +23710 55201 0.8650 +23710 55236 0.5190 +23710 55255 0.4160 +23710 55332 0.4810 +23710 55357 0.5630 +23710 55486 0.4320 +23710 55626 0.6740 +23710 55669 0.5060 +23710 55751 0.4090 +23710 55879 0.6500 +23710 55968 0.5640 +23710 56270 0.5160 +23710 57521 0.5170 +23710 57658 0.8600 +23710 57724 0.5690 +23710 58476 0.9730 +23710 58513 0.4670 +23710 60673 0.8260 +23710 64083 0.5790 +23710 64422 0.9990 +23710 64689 0.5330 +23710 64786 0.9840 +23710 65018 0.7190 +23710 79036 0.4390 +23710 79065 0.7310 +23710 79137 0.6100 +23710 79443 0.8190 +23710 79643 0.4730 +23710 79735 0.9790 +23710 79876 0.7720 +23710 81605 0.7070 +23710 81631 0.7850 +23710 81671 0.6080 +23710 83452 0.4360 +23710 83734 0.9350 +23710 84078 0.6180 +23710 84557 0.8920 +23710 84676 0.4810 +23710 84938 0.9920 +23710 84971 0.9930 +23710 89849 0.6010 +23710 89890 0.8270 +23710 91754 0.7030 +23710 91782 0.4170 +23710 91860 0.4690 +23710 92421 0.4810 +23710 94241 0.8800 +23710 114907 0.4780 +23710 115201 0.9960 +23710 128866 0.5060 +23710 139341 0.9880 +23710 140901 0.4380 +23710 142678 0.5080 +23710 149420 0.4380 +23710 162427 0.5790 +23710 163688 0.4690 +23710 192111 0.4260 +23710 202915 0.5370 +23710 221960 0.6630 +23710 225689 0.4630 +23710 285973 0.6220 +23710 345611 0.7030 +23710 440738 0.6410 +23710 441925 0.9530 +23729 55277 0.8790 +23729 56061 0.4320 +23729 57505 0.4890 +23729 79944 0.4700 +23729 84668 0.6210 +23729 84690 0.5050 +23729 89872 0.4590 +23729 92799 0.4220 +23729 114803 0.4430 +23729 124454 0.6400 +23729 130560 0.4200 +23729 134510 0.4090 +23729 162514 0.5790 +23729 283254 0.4520 +23729 730249 0.4580 +23729 100509620 0.4590 +23729 100652824 0.4110 +23731 57583 0.4410 +23731 79269 0.4200 +23731 130574 0.4070 +23732 26275 0.6460 +23732 26589 0.8860 +23732 28998 0.8570 +23732 29093 0.8650 +23732 29097 0.4520 +23732 51021 0.7220 +23732 51023 0.5200 +23732 51069 0.6720 +23732 51073 0.8690 +23732 51081 0.4610 +23732 51116 0.5620 +23732 51149 0.5710 +23732 51263 0.4280 +23732 51264 0.8530 +23732 54505 0.4620 +23732 54566 0.5480 +23732 54942 0.8820 +23732 54948 0.8810 +23732 54991 0.4940 +23732 55052 0.7410 +23732 55168 0.5200 +23732 55173 0.4870 +23732 55316 0.4500 +23732 55530 0.6290 +23732 55800 0.5310 +23732 57129 0.8720 +23732 57406 0.5860 +23732 57709 0.7680 +23732 59283 0.6270 +23732 60488 0.7420 +23732 63875 0.8560 +23732 63931 0.6710 +23732 64374 0.5000 +23732 64397 0.4380 +23732 64960 0.8600 +23732 64963 0.5120 +23732 64965 0.6690 +23732 64968 0.7780 +23732 64969 0.8020 +23732 64975 0.8460 +23732 64976 0.5070 +23732 64978 0.4460 +23732 64979 0.7740 +23732 64981 0.8280 +23732 64983 0.6150 +23732 65005 0.6340 +23732 65080 0.5550 +23732 79810 0.4600 +23732 83786 0.4380 +23732 84545 0.8360 +23732 84833 0.4070 +23732 85464 0.4120 +23732 90624 0.4530 +23732 91833 0.4750 +23732 114781 0.4720 +23732 126129 0.7940 +23732 126402 0.4620 +23732 140801 0.5000 +23732 144132 0.4610 +23732 146395 0.5000 +23732 150696 0.4040 +23732 157310 0.4460 +23732 219927 0.6340 +23732 222865 0.5200 +23732 254263 0.5000 +23732 259282 0.4330 +23732 347487 0.4100 +23732 400745 0.4570 +23732 404217 0.4980 +23732 100287482 0.4100 +23732 100526842 0.5790 +23741 55795 0.4380 +23741 64110 0.5070 +23741 79184 0.4500 +23741 163126 0.4370 +23741 493861 0.8550 +23742 54551 0.9550 +23742 57194 0.6090 +23742 81614 0.5710 +23742 114791 0.5750 +23742 123606 0.5700 +23742 158158 0.4400 +23742 257019 0.4490 +23742 390162 0.4350 +23743 25902 0.6590 +23743 26227 0.4510 +23743 27232 0.5740 +23743 27430 0.9500 +23743 29958 0.9320 +23743 51074 0.4880 +23743 51268 0.4360 +23743 54205 0.4070 +23743 55034 0.6970 +23743 55066 0.4900 +23743 55256 0.6140 +23743 55349 0.5120 +23743 56267 0.9400 +23743 58478 0.5240 +23743 64111 0.4070 +23743 84245 0.6360 +23743 113675 0.8420 +23743 259307 0.9040 +23743 441024 0.6270 +23743 730249 0.4330 +23746 25794 0.4810 +23746 26121 0.4790 +23746 50939 0.4930 +23746 51667 0.9750 +23746 54714 0.5990 +23746 55236 0.4810 +23746 55812 0.9300 +23746 55975 0.4290 +23746 57010 0.6030 +23746 57096 0.9430 +23746 64218 0.7740 +23746 64802 0.6200 +23746 80184 0.8290 +23746 83394 0.8080 +23746 84140 0.4320 +23746 84839 0.7510 +23746 92211 0.7440 +23746 93589 0.4320 +23746 94137 0.5330 +23746 124590 0.4340 +23746 130557 0.4250 +23746 131890 0.4720 +23746 145226 0.8900 +23746 157657 0.5120 +23746 167691 0.8540 +23746 169522 0.5650 +23746 343035 0.8710 +23746 346007 0.4460 +23746 375298 0.6540 +23746 388531 0.6270 +23746 388939 0.4960 +23746 401124 0.4750 +23753 26353 0.7200 +23753 27131 0.9940 +23753 29925 0.6280 +23753 29927 0.4520 +23753 51009 0.4560 +23753 51237 0.4530 +23753 51303 0.4730 +23753 51398 0.5600 +23753 51726 0.9900 +23753 54431 0.4990 +23753 55172 0.5470 +23753 55721 0.5340 +23753 56005 0.6370 +23753 56886 0.6380 +23753 56984 0.7200 +23753 57003 0.5550 +23753 58477 0.4360 +23753 79174 0.9370 +23753 79657 0.5630 +23753 81572 0.5410 +23753 90701 0.4450 +23753 91319 0.5060 +23753 120379 0.5400 +23753 125972 0.4680 +23753 150160 0.5400 +23753 164592 0.4020 +23759 24144 0.6250 +23759 24148 0.5460 +23759 25959 0.4410 +23759 27238 0.9620 +23759 27339 0.6570 +23759 30827 0.4130 +23759 51340 0.9100 +23759 51362 0.9770 +23759 51434 0.4810 +23759 51503 0.9330 +23759 51586 0.5620 +23759 51593 0.8210 +23759 51634 0.8290 +23759 51639 0.8060 +23759 51645 0.8220 +23759 51759 0.6030 +23759 53938 0.8240 +23759 54934 0.5060 +23759 55234 0.4760 +23759 55696 0.8600 +23759 56259 0.8230 +23759 56949 0.9080 +23759 57610 0.4550 +23759 57703 0.9640 +23759 59286 0.8790 +23759 60625 0.4410 +23759 79005 0.8410 +23759 79165 0.5000 +23759 79576 0.5040 +23759 79637 0.9430 +23759 79753 0.8440 +23759 83443 0.8300 +23759 84060 0.8610 +23759 84164 0.7300 +23759 84811 0.8360 +23759 84844 0.8310 +23759 84950 0.8900 +23759 91603 0.8780 +23759 143884 0.5750 +23759 151903 0.8410 +23759 153527 0.8800 +23759 199746 0.4180 +23759 345630 0.4730 +23760 26270 0.4170 +23760 51493 0.4780 +23760 54978 0.4560 +23760 56893 0.4100 +23760 58488 0.4070 +23760 83394 0.9290 +23760 83693 0.4740 +23760 91373 0.4580 +23761 26279 0.6500 +23761 27166 0.4860 +23761 27349 0.5520 +23761 30001 0.4390 +23761 30814 0.6850 +23761 50487 0.6520 +23761 51122 0.4630 +23761 51365 0.9250 +23761 51490 0.7170 +23761 51499 0.4590 +23761 54675 0.9220 +23761 54995 0.4500 +23761 55224 0.6670 +23761 55304 0.4280 +23761 55349 0.8430 +23761 55500 0.6270 +23761 55739 0.4080 +23761 56994 0.5740 +23761 64600 0.6520 +23761 81490 0.9850 +23761 81579 0.6930 +23761 83548 0.4110 +23761 84249 0.5920 +23761 84647 0.6680 +23761 85465 0.9610 +23761 114294 0.5180 +23761 122618 0.9060 +23761 123745 0.6710 +23761 129642 0.9460 +23761 132001 0.5420 +23761 151056 0.6930 +23761 154141 0.9250 +23761 201164 0.7320 +23761 222236 0.4060 +23761 254531 0.9170 +23761 255189 0.6710 +23761 283748 0.6710 +23761 374291 0.4890 +23761 391013 0.6500 +23761 100137049 0.6710 +23762 23770 0.4080 +23762 25853 0.5580 +23762 26031 0.4760 +23762 26499 0.7670 +23762 29796 0.8100 +23762 51327 0.5410 +23762 54622 0.4150 +23762 55363 0.4720 +23762 55437 0.4900 +23762 63893 0.5010 +23762 79908 0.4870 +23762 84164 0.4030 +23762 114879 0.5080 +23762 114882 0.5150 +23762 114883 0.6960 +23762 114884 0.5010 +23762 114885 0.5050 +23762 150274 0.8100 +23762 727936 0.4490 +23764 28964 0.4280 +23764 55509 0.4430 +23764 55733 0.7710 +23764 57658 0.4380 +23764 60468 0.9550 +23764 64651 0.4450 +23764 79003 0.5230 +23764 79661 0.5850 +23764 84247 0.4240 +23764 84301 0.4930 +23764 91754 0.4280 +23764 116071 0.5150 +23764 159989 0.4530 +23764 727764 0.4530 +23764 128966690 0.4530 +23765 27189 0.9910 +23765 27190 0.9620 +23765 30009 0.5030 +23765 50615 0.6500 +23765 50616 0.8220 +23765 50943 0.5220 +23765 51135 0.5140 +23765 51561 0.6680 +23765 53342 0.8860 +23765 54756 0.9820 +23765 55540 0.9990 +23765 55801 0.5940 +23765 58985 0.8340 +23765 64115 0.4290 +23765 64127 0.4270 +23765 64170 0.5770 +23765 64332 0.4370 +23765 64581 0.5080 +23765 64806 0.9990 +23765 81704 0.4540 +23765 81848 0.4240 +23765 84818 0.9980 +23765 85480 0.6090 +23765 90865 0.6400 +23765 112744 0.9990 +23765 132014 0.9990 +23765 149233 0.7560 +23765 400935 0.4170 +23767 26012 0.5120 +23767 26281 0.5800 +23767 27006 0.5780 +23767 27289 0.7180 +23767 30846 0.4130 +23767 54756 0.5880 +23767 55636 0.4330 +23767 55714 0.4020 +23767 57451 0.8770 +23767 60675 0.4470 +23767 79895 0.4230 +23767 81848 0.5740 +23767 85458 0.4140 +23767 90249 0.6750 +23767 91614 0.4260 +23767 91653 0.4720 +23767 128674 0.5550 +23767 137970 0.8050 +23767 140733 0.9590 +23767 219699 0.9480 +23767 389549 0.5030 +23767 405754 0.4680 +23768 23769 0.4040 +23768 26281 0.5450 +23768 26610 0.4130 +23768 27006 0.5450 +23768 54434 0.4190 +23768 54538 0.5140 +23768 57451 0.4400 +23768 57522 0.4050 +23768 83992 0.4140 +23768 90249 0.7690 +23768 93953 0.4050 +23768 137970 0.9810 +23768 140733 0.5510 +23768 219699 0.7070 +23768 283571 0.4300 +23768 405754 0.4970 +23769 26281 0.5400 +23769 27006 0.5440 +23769 90249 0.8730 +23769 137970 0.5220 +23769 140733 0.5920 +23769 219699 0.4310 +23769 376132 0.4090 +23769 405754 0.4980 +23769 643988 0.4030 +23770 23786 0.8190 +23770 25822 0.4190 +23770 27090 0.4030 +23770 27101 0.6340 +23770 27430 0.4450 +23770 51024 0.4710 +23770 51257 0.4620 +23770 51364 0.4950 +23770 51368 0.4360 +23770 51447 0.5060 +23770 51495 0.6580 +23770 51548 0.4160 +23770 51651 0.5290 +23770 51684 0.4960 +23770 51715 0.6360 +23770 51806 0.7440 +23770 54541 0.4970 +23770 54583 0.9500 +23770 54708 0.4630 +23770 55062 0.4730 +23770 55288 0.6150 +23770 55294 0.5510 +23770 55466 0.4480 +23770 55486 0.4800 +23770 55615 0.6310 +23770 55626 0.5230 +23770 55735 0.4240 +23770 56947 0.5720 +23770 56993 0.5080 +23770 57017 0.5760 +23770 57037 0.7190 +23770 57104 0.4880 +23770 57506 0.4390 +23770 57521 0.9950 +23770 57558 0.4340 +23770 58528 0.4670 +23770 60681 0.4490 +23770 64121 0.4950 +23770 64223 0.9960 +23770 64798 0.9550 +23770 65018 0.6350 +23770 79109 0.4380 +23770 79594 0.6540 +23770 79671 0.4550 +23770 79735 0.4560 +23770 79809 0.5860 +23770 79873 0.5290 +23770 80331 0.4640 +23770 80700 0.6500 +23770 81631 0.5820 +23770 81858 0.4510 +23770 84335 0.9910 +23770 84444 0.4040 +23770 84557 0.9890 +23770 84749 0.7000 +23770 91300 0.4330 +23770 91860 0.7450 +23770 118813 0.7530 +23770 120103 0.4120 +23770 139341 0.8060 +23770 163688 0.7500 +23770 165721 0.4240 +23770 192111 0.4790 +23770 206358 0.4050 +23770 253260 0.8100 +23770 253980 0.6150 +23770 284312 0.4420 +23770 114108587 0.4930 +23774 25921 0.4050 +23774 26993 0.4830 +23774 27154 0.9870 +23774 27443 0.5670 +23774 29072 0.4630 +23774 29117 0.6440 +23774 29801 0.4350 +23774 51111 0.4360 +23774 51147 0.9660 +23774 51592 0.7450 +23774 53615 0.4090 +23774 53918 0.4930 +23774 54431 0.4310 +23774 54454 0.4200 +23774 54495 0.4620 +23774 54556 0.4110 +23774 54765 0.4080 +23774 54815 0.4620 +23774 55193 0.4650 +23774 55700 0.4370 +23774 55870 0.6640 +23774 57062 0.4400 +23774 57459 0.4370 +23774 57585 0.4530 +23774 57592 0.4660 +23774 64682 0.4320 +23774 64763 0.4450 +23774 64769 0.9970 +23774 64943 0.4210 +23774 65980 0.5890 +23774 79724 0.4370 +23774 79915 0.4670 +23774 83642 0.4320 +23774 84148 0.5570 +23774 84289 0.9910 +23774 91607 0.4200 +23774 92609 0.4250 +23774 140710 0.4200 +23774 197259 0.4340 +23774 221037 0.6610 +23774 440093 0.7660 +23774 440686 0.7660 +23774 653604 0.8560 +23779 55615 0.9320 +23779 79899 0.5810 +23779 553158 0.7590 +23780 54979 0.4670 +23780 93659 0.4470 +23780 94027 0.5240 +23780 115362 0.4990 +23784 26051 0.4410 +23784 54776 0.4090 +23784 54851 0.4720 +23784 55608 0.4740 +23784 57037 0.4310 +23784 84988 0.4230 +23784 92591 0.4840 +23784 116729 0.4050 +23784 118932 0.4890 +23784 136319 0.5190 +23784 136991 0.5890 +23784 140456 0.4900 +23784 140458 0.5150 +23784 142689 0.5080 +23784 149643 0.4320 +23784 150160 0.4610 +23784 157567 0.4950 +23784 267020 0.4340 +23784 338699 0.4020 +23784 391114 0.4320 +23784 440804 0.4190 +23786 26747 0.5010 +23786 29956 0.7060 +23786 51024 0.4500 +23786 54708 0.5650 +23786 55486 0.5280 +23786 55626 0.6710 +23786 55669 0.4350 +23786 65018 0.6680 +23786 79370 0.5950 +23786 79594 0.5400 +23786 81631 0.5990 +23786 84557 0.5970 +23786 84749 0.4280 +23786 139341 0.8930 +23786 192111 0.4950 +23786 253782 0.5460 +23786 440738 0.5900 +23787 29957 0.7120 +23787 51300 0.6710 +23787 54205 0.4580 +23787 55210 0.5010 +23787 55331 0.5440 +23787 56993 0.4520 +23787 79085 0.6760 +23787 79751 0.6010 +23787 81034 0.7720 +23787 81894 0.7730 +23787 83447 0.7200 +23787 83733 0.5790 +23787 83884 0.6410 +23787 84275 0.8340 +23787 91137 0.5360 +23787 92014 0.4010 +23787 114789 0.6730 +23787 115286 0.7250 +23787 116540 0.4180 +23787 147407 0.4580 +23787 253512 0.6660 +23787 401612 0.4560 +23787 404672 0.4130 +23788 25970 0.8700 +23788 29957 0.6510 +23788 51086 0.5180 +23788 51141 0.5690 +23788 51277 0.5650 +23788 51704 0.4180 +23788 54814 0.5490 +23788 54958 0.5750 +23788 55331 0.5010 +23788 55709 0.4440 +23788 55735 0.4360 +23788 55967 0.6020 +23788 56993 0.5280 +23788 57184 0.4200 +23788 57507 0.4780 +23788 79047 0.9190 +23788 79068 0.8020 +23788 79085 0.5990 +23788 79751 0.5440 +23788 81894 0.6920 +23788 83447 0.6460 +23788 83733 0.5390 +23788 83884 0.5650 +23788 84275 0.7960 +23788 89866 0.7660 +23788 91137 0.5480 +23788 114789 0.6560 +23788 114900 0.4880 +23788 114971 0.5240 +23788 115286 0.7050 +23788 127018 0.5240 +23788 129787 0.9060 +23788 132789 0.9140 +23788 133522 0.4430 +23788 134359 0.5070 +23788 144233 0.5810 +23788 158038 0.4350 +23788 219402 0.5160 +23788 221120 0.4180 +23788 253512 0.6040 +23788 254827 0.4040 +23788 257194 0.8950 +23788 338557 0.5010 +23788 100526835 0.5180 +24137 25886 0.4200 +24137 26153 0.5410 +24137 26271 0.6160 +24137 26286 0.5000 +24137 26586 0.5670 +24137 29028 0.5180 +24137 29089 0.6960 +24137 29127 0.9070 +24137 29128 0.6530 +24137 51164 0.5140 +24137 51203 0.9240 +24137 51248 0.8220 +24137 51512 0.6640 +24137 51514 0.7280 +24137 51594 0.5000 +24137 51659 0.4550 +24137 53407 0.5040 +24137 54069 0.4220 +24137 54443 0.7820 +24137 54478 0.6870 +24137 54821 0.7270 +24137 54892 0.7980 +24137 54908 0.4840 +24137 55010 0.6170 +24137 55055 0.5920 +24137 55064 0.4420 +24137 55083 0.5280 +24137 55143 0.9320 +24137 55165 0.9510 +24137 55215 0.5640 +24137 55247 0.7500 +24137 55355 0.9180 +24137 55388 0.7060 +24137 55582 0.5230 +24137 55605 0.5060 +24137 55614 0.4640 +24137 55635 0.7970 +24137 55723 0.6160 +24137 55732 0.5010 +24137 55738 0.5010 +24137 55789 0.5970 +24137 55839 0.6570 +24137 55850 0.5000 +24137 55860 0.5420 +24137 56992 0.9170 +24137 57082 0.5880 +24137 57405 0.7610 +24137 57650 0.5510 +24137 60561 0.5040 +24137 63967 0.6190 +24137 64105 0.4800 +24137 64151 0.9340 +24137 64837 0.5000 +24137 79019 0.7410 +24137 79075 0.4460 +24137 79172 0.4470 +24137 79682 0.5160 +24137 79733 0.5820 +24137 79801 0.7380 +24137 79866 0.4820 +24137 79980 0.4030 +24137 80152 0.4240 +24137 81610 0.8280 +24137 81620 0.4810 +24137 81624 0.5030 +24137 81930 0.8120 +24137 83461 0.9270 +24137 83540 0.9110 +24137 83879 0.6190 +24137 83903 0.5350 +24137 84057 0.4070 +24137 84364 0.5070 +24137 84516 0.5490 +24137 84643 0.5790 +24137 84722 0.4330 +24137 84930 0.4780 +24137 89953 0.4610 +24137 90381 0.6170 +24137 90417 0.4540 +24137 90990 0.5480 +24137 93661 0.4990 +24137 113130 0.8870 +24137 117286 0.5430 +24137 124602 0.5700 +24137 128239 0.6390 +24137 132243 0.4020 +24137 144455 0.4730 +24137 146909 0.9010 +24137 147700 0.5560 +24137 147841 0.4930 +24137 150468 0.8430 +24137 151246 0.5940 +24137 151648 0.6980 +24137 157313 0.9330 +24137 157570 0.4270 +24137 220134 0.7440 +24137 221150 0.8130 +24137 221458 0.4760 +24137 222584 0.5180 +24137 259266 0.9520 +24137 285643 0.8690 +24138 25939 0.6340 +24138 26010 0.5100 +24138 26737 0.4780 +24138 51056 0.4290 +24138 51131 0.4050 +24138 51191 0.7980 +24138 54464 0.5820 +24138 54625 0.4690 +24138 54739 0.6830 +24138 54809 0.6650 +24138 55008 0.7340 +24138 55601 0.8320 +24138 56829 0.5290 +24138 57169 0.6060 +24138 57506 0.6510 +24138 57674 0.4160 +24138 64108 0.7510 +24138 64135 0.8890 +24138 64761 0.7020 +24138 79132 0.6970 +24138 83666 0.6530 +24138 83982 0.4490 +24138 85363 0.4050 +24138 85441 0.4750 +24138 91543 0.9360 +24138 94240 0.7240 +24138 115361 0.4900 +24138 115362 0.4190 +24138 122509 0.5220 +24138 123169 0.4770 +24138 129607 0.7950 +24138 219285 0.6870 +24138 254773 0.4920 +24138 387733 0.5490 +24139 29984 0.4080 +24139 50650 0.4020 +24139 161829 0.5460 +24139 256364 0.4010 +24139 347733 0.7380 +24140 25873 0.6240 +24140 25879 0.4890 +24140 26027 0.5860 +24140 26155 0.8130 +24140 26156 0.6740 +24140 26354 0.4880 +24140 26574 0.6160 +24140 26986 0.6590 +24140 26995 0.4690 +24140 27037 0.4410 +24140 27292 0.5070 +24140 27304 0.6220 +24140 28987 0.4280 +24140 28998 0.4120 +24140 29093 0.4060 +24140 29104 0.4570 +24140 29889 0.7790 +24140 29997 0.7860 +24140 51018 0.5080 +24140 51068 0.5290 +24140 51073 0.4570 +24140 51096 0.4580 +24140 51121 0.4730 +24140 51154 0.7810 +24140 51187 0.9210 +24140 51388 0.8860 +24140 51504 0.7260 +24140 51602 0.8290 +24140 51605 0.8610 +24140 54482 0.4860 +24140 54517 0.7060 +24140 54552 0.6120 +24140 54555 0.4740 +24140 54606 0.5570 +24140 54663 0.9100 +24140 54802 0.8460 +24140 54883 0.6780 +24140 54888 0.8630 +24140 54920 0.4650 +24140 54931 0.4750 +24140 54955 0.6910 +24140 54974 0.4560 +24140 55003 0.4670 +24140 55006 0.7070 +24140 55039 0.6080 +24140 55127 0.4130 +24140 55131 0.4350 +24140 55140 0.5380 +24140 55153 0.4310 +24140 55178 0.6010 +24140 55226 0.5380 +24140 55253 0.6320 +24140 55276 0.6550 +24140 55299 0.7410 +24140 55341 0.6600 +24140 55505 0.4450 +24140 55621 0.7990 +24140 55636 0.4150 +24140 55651 0.6070 +24140 55695 0.5930 +24140 55720 0.4390 +24140 55759 0.8650 +24140 55794 0.4300 +24140 55798 0.4020 +24140 57418 0.4140 +24140 57570 0.7570 +24140 57604 0.4790 +24140 57721 0.4120 +24140 60487 0.7630 +24140 63892 0.9770 +24140 63899 0.6730 +24140 64118 0.4700 +24140 64216 0.4080 +24140 64318 0.8370 +24140 64743 0.5890 +24140 79159 0.5100 +24140 79590 0.4940 +24140 79730 0.5310 +24140 79828 0.4160 +24140 79922 0.5430 +24140 79979 0.4820 +24140 80135 0.7270 +24140 80183 0.6890 +24140 80273 0.4170 +24140 80324 0.6730 +24140 81570 0.4710 +24140 81627 0.6140 +24140 81887 0.4200 +24140 83448 0.4160 +24140 83480 0.7570 +24140 83743 0.4180 +24140 84154 0.7740 +24140 84273 0.4970 +24140 84365 0.8400 +24140 84549 0.7170 +24140 84650 0.4580 +24140 84946 0.4310 +24140 90121 0.4010 +24140 90353 0.5780 +24140 91801 0.5970 +24140 92170 0.4840 +24140 92745 0.8760 +24140 92856 0.5140 +24140 93587 0.7380 +24140 94104 0.4020 +24140 112970 0.5260 +24140 113179 0.7290 +24140 115708 0.8230 +24140 124454 0.4140 +24140 127253 0.6300 +24140 131965 0.4610 +24140 133688 0.5220 +24140 134526 0.5860 +24140 134637 0.4560 +24140 142940 0.5910 +24140 152992 0.6900 +24140 158234 0.4530 +24140 167127 0.5220 +24140 167410 0.5040 +24140 200916 0.5600 +24140 221078 0.6310 +24140 285855 0.6310 +24140 345630 0.4650 +24140 387129 0.5680 +24140 387338 0.6920 +24140 100505478 0.5680 +24141 26468 0.4790 +24141 55079 0.4310 +24141 57030 0.5000 +24141 57699 0.4280 +24141 79625 0.5400 +24141 84886 0.5070 +24141 93377 0.4310 +24141 128710 0.4310 +24141 140578 0.5580 +24141 140679 0.6450 +24141 140689 0.4460 +24141 166752 0.4940 +24141 594855 0.4310 +24142 25764 0.4890 +24142 51126 0.6430 +24142 79829 0.7930 +24142 79903 0.8240 +24142 80155 0.6900 +24142 80218 0.5730 +24142 92292 0.8730 +24142 114799 0.7280 +24142 122830 0.5980 +24142 157570 0.7260 +24144 24148 0.5640 +24144 25878 0.4430 +24144 25949 0.9650 +24144 25980 0.4400 +24144 26017 0.5700 +24144 26121 0.5360 +24144 27238 0.5160 +24144 27258 0.4480 +24144 27316 0.6050 +24144 27339 0.9370 +24144 29115 0.4330 +24144 29914 0.4820 +24144 50804 0.6300 +24144 51119 0.4290 +24144 51163 0.5310 +24144 51319 0.8550 +24144 51340 0.9880 +24144 51361 0.4330 +24144 51362 0.9810 +24144 51428 0.6650 +24144 51503 0.8910 +24144 51574 0.4010 +24144 51593 0.5780 +24144 51645 0.8370 +24144 51759 0.5410 +24144 53938 0.5210 +24144 54148 0.4020 +24144 54505 0.4350 +24144 54883 0.7420 +24144 55051 0.5670 +24144 55094 0.5030 +24144 55105 0.6800 +24144 55110 0.5220 +24144 55140 0.4560 +24144 55192 0.5560 +24144 55280 0.7610 +24144 55285 0.5020 +24144 55599 0.4970 +24144 55668 0.4130 +24144 55696 0.9130 +24144 55702 0.9550 +24144 55760 0.8150 +24144 55813 0.4590 +24144 55929 0.4870 +24144 56919 0.4410 +24144 56949 0.9710 +24144 57018 0.6140 +24144 57325 0.4840 +24144 57461 0.8350 +24144 57647 0.4610 +24144 57703 0.7600 +24144 57794 0.4930 +24144 58509 0.5900 +24144 60625 0.5110 +24144 63932 0.6280 +24144 64848 0.4140 +24144 65109 0.5130 +24144 79165 0.7650 +24144 79446 0.7970 +24144 79576 0.5190 +24144 79631 0.5680 +24144 79665 0.4760 +24144 79706 0.5940 +24144 80325 0.4040 +24144 80331 0.8720 +24144 81576 0.6700 +24144 83443 0.4120 +24144 83938 0.7890 +24144 84316 0.5620 +24144 84811 0.4780 +24144 84946 0.4590 +24144 84950 0.6100 +24144 84967 0.5550 +24144 84991 0.5240 +24144 85313 0.5130 +24144 85476 0.5800 +24144 85479 0.8690 +24144 90957 0.5230 +24144 91782 0.4550 +24144 94104 0.6240 +24144 124245 0.4160 +24144 126259 0.5620 +24144 135295 0.6560 +24144 143884 0.8670 +24144 147650 0.5620 +24144 151903 0.6890 +24144 163859 0.6200 +24144 164045 0.4750 +24144 165545 0.8090 +24144 170506 0.4060 +24144 199746 0.5330 +24144 220074 0.7890 +24144 220988 0.6470 +24144 257236 0.5280 +24144 100534599 0.6880 +24145 29108 0.6620 +24145 53829 0.4420 +24145 55303 0.4140 +24145 56262 0.4730 +24145 56666 0.8680 +24145 57165 0.6090 +24145 57369 0.5910 +24145 57380 0.7720 +24145 58484 0.6890 +24145 59341 0.5140 +24145 63910 0.4790 +24145 64805 0.4890 +24145 79792 0.5790 +24145 80131 0.4670 +24145 114548 0.5330 +24145 116843 0.4330 +24145 119395 0.4280 +24145 124783 0.4180 +24145 196527 0.4900 +24145 199713 0.4040 +24145 255022 0.7270 +24145 349149 0.4280 +24145 377841 0.6920 +24145 401152 0.5380 +24145 692312 0.5670 +24146 26052 0.4210 +24146 26285 0.6900 +24146 27134 0.8020 +24146 49861 0.6900 +24146 50848 0.5120 +24146 51208 0.8220 +24146 53842 0.6940 +24146 54345 0.4530 +24146 55839 0.4090 +24146 56288 0.6980 +24146 57571 0.4320 +24146 90952 0.7260 +24146 91862 0.4290 +24146 92558 0.4070 +24146 115825 0.4850 +24146 127534 0.4090 +24146 137075 0.7350 +24146 149461 0.6860 +24146 153562 0.5830 +24146 644672 0.7100 +24146 100132463 0.6940 +24146 100288814 0.8240 +24146 100506658 0.9250 +24147 26115 0.4210 +24147 27303 0.4190 +24147 29099 0.9200 +24147 29964 0.4510 +24147 51313 0.4110 +24147 54757 0.6200 +24147 54765 0.8620 +24147 54798 0.6220 +24147 56975 0.4450 +24147 57216 0.7610 +24147 79633 0.9280 +24147 120114 0.8220 +24147 123036 0.4220 +24147 144165 0.4060 +24147 166336 0.4240 +24147 729085 0.6830 +24148 25794 0.5070 +24148 25804 0.9990 +24148 25980 0.9550 +24148 26058 0.4250 +24148 26121 0.9990 +24148 27102 0.4560 +24148 27238 0.6180 +24148 27258 0.9970 +24148 27336 0.6520 +24148 27339 0.8720 +24148 29896 0.4350 +24148 50939 0.4780 +24148 51319 0.4250 +24148 51340 0.6430 +24148 51362 0.8410 +24148 51428 0.5070 +24148 51493 0.5650 +24148 51503 0.5140 +24148 51593 0.8760 +24148 51631 0.4630 +24148 51634 0.9590 +24148 51639 0.9910 +24148 51645 0.4220 +24148 51690 0.9980 +24148 51691 0.9990 +24148 51729 0.8110 +24148 51747 0.5490 +24148 51759 0.5910 +24148 53938 0.4340 +24148 54514 0.6340 +24148 54606 0.4660 +24148 54957 0.9600 +24148 55110 0.9170 +24148 55192 0.4500 +24148 55234 0.9900 +24148 55285 0.7280 +24148 55299 0.4160 +24148 55339 0.4720 +24148 55599 0.7430 +24148 55651 0.4700 +24148 55696 0.7000 +24148 55749 0.5560 +24148 55812 0.4680 +24148 55837 0.6780 +24148 56259 0.7270 +24148 56949 0.7890 +24148 57461 0.5310 +24148 57703 0.9430 +24148 57794 0.6540 +24148 57819 0.9980 +24148 59286 0.9670 +24148 65080 0.4080 +24148 79009 0.4110 +24148 79171 0.9530 +24148 79631 0.7050 +24148 79753 0.9650 +24148 79869 0.4360 +24148 79947 0.4490 +24148 83443 0.9930 +24148 83938 0.4910 +24148 84140 0.5100 +24148 84271 0.4350 +24148 84316 0.6230 +24148 84811 0.9560 +24148 84844 0.9910 +24148 84950 0.9940 +24148 84967 0.8450 +24148 84991 0.4090 +24148 85476 0.7160 +24148 91603 0.4500 +24148 93974 0.6370 +24148 120892 0.5100 +24148 126259 0.6230 +24148 130557 0.6100 +24148 133396 0.6340 +24148 145226 0.4620 +24148 147650 0.6230 +24148 151903 0.4400 +24148 153527 0.9960 +24148 157657 0.4300 +24148 164045 0.8400 +24148 164781 0.8460 +24148 167838 0.4380 +24148 220074 0.4910 +24148 284325 0.8090 +24148 346007 0.4340 +24148 348793 0.8470 +24148 375298 0.4330 +24148 388939 0.4470 +24148 440275 0.5400 +24148 653567 0.4480 +24148 768206 0.4470 +24149 25988 0.4420 +24149 26576 0.5090 +24149 29894 0.4060 +24149 51585 0.4070 +24149 55015 0.5880 +24149 56159 0.4280 +24149 56252 0.5860 +24149 58517 0.5830 +24149 64760 0.5860 +24149 80335 0.4810 +24149 81608 0.5400 +24149 84524 0.4100 +24149 89845 0.4860 +24149 644186 0.4340 +24150 389396 0.4040 +24150 729264 0.6560 +24150 729355 0.7760 +24150 102724101 0.7800 +25758 26273 0.8720 +25758 91614 0.8740 +25758 127602 0.4390 +25758 503834 0.4760 +25758 100131378 0.4460 +25759 53358 0.5060 +25759 54700 0.4800 +25759 55974 0.6980 +25759 84466 0.4160 +25759 85443 0.4060 +25759 221472 0.4640 +25759 284451 0.5820 +25759 375033 0.7800 +25763 55778 0.4530 +25763 165215 0.4800 +25763 255626 0.4240 +25763 100528021 0.4450 +25763 107986818 0.5140 +25764 25940 0.4870 +25764 26519 0.4040 +25764 27000 0.4660 +25764 29979 0.4290 +25764 51126 0.6920 +25764 51182 0.4980 +25764 51593 0.5810 +25764 57092 0.5310 +25764 60560 0.4690 +25764 79612 0.9470 +25764 79829 0.5960 +25764 79903 0.7210 +25764 80018 0.6460 +25764 80145 0.4840 +25764 80155 0.9990 +25764 80218 0.9980 +25764 84124 0.4620 +25764 84334 0.4290 +25764 84528 0.4050 +25764 84779 0.7590 +25764 114823 0.4410 +25764 115701 0.5970 +25764 122830 0.5310 +25764 163227 0.4610 +25764 254187 0.7340 +25764 347862 0.4420 +25766 29072 0.6940 +25766 29763 0.4330 +25766 29993 0.4220 +25766 51631 0.9080 +25766 51634 0.5050 +25766 51654 0.7020 +25766 51690 0.5400 +25766 51747 0.7570 +25766 54952 0.6190 +25766 55015 0.9180 +25766 55081 0.4280 +25766 55599 0.4600 +25766 55660 0.9060 +25766 55692 0.8810 +25766 55954 0.5500 +25766 57461 0.4220 +25766 58517 0.9900 +25766 59286 0.4080 +25766 63035 0.5020 +25766 80742 0.5560 +25766 83443 0.4370 +25766 83938 0.4550 +25766 84844 0.6190 +25766 84967 0.4950 +25766 171023 0.4260 +25766 220074 0.4550 +25766 347744 0.6160 +25766 392517 0.7640 +25766 100534599 0.4220 +25766 100996928 0.8740 +25766 101669762 0.5480 +25769 51608 0.5720 +25769 54714 0.4400 +25769 55182 0.4170 +25769 56899 0.4860 +25769 57578 0.4100 +25769 132204 0.4440 +25769 440184 0.4500 +25770 27252 0.4080 +25770 79836 0.4470 +25770 83850 0.4970 +25770 90070 0.4680 +25770 90313 0.4760 +25770 283643 0.5410 +25771 25822 0.4880 +25771 26260 0.4470 +25771 26589 0.4330 +25771 54885 0.5390 +25771 55052 0.4360 +25771 55243 0.4220 +25771 55296 0.5220 +25771 57129 0.4290 +25771 60488 0.4610 +25771 64598 0.4880 +25771 64746 0.8670 +25771 64965 0.4140 +25771 64968 0.5830 +25771 64969 0.4320 +25771 64975 0.4590 +25771 64979 0.4550 +25771 79774 0.5880 +25771 80305 0.5640 +25771 81876 0.5190 +25771 83452 0.4450 +25771 83874 0.4710 +25771 84545 0.4330 +25771 124565 0.5000 +25771 128637 0.6730 +25771 161514 0.5420 +25771 219927 0.4140 +25771 221154 0.5410 +25771 254272 0.4740 +25771 339122 0.5560 +25771 353149 0.4320 +25771 374403 0.4840 +25771 389677 0.4950 +25771 414918 0.4320 +25774 25885 0.5220 +25774 27306 0.5010 +25774 51011 0.4070 +25774 51233 0.4190 +25774 55703 0.4490 +25774 58472 0.4480 +25774 81889 0.4070 +25774 84172 0.4490 +25774 84280 0.5270 +25774 150248 0.5120 +25774 151313 0.4070 +25774 388886 0.5670 +25774 100037417 0.6540 +25777 27127 0.6730 +25777 27348 0.4440 +25777 29109 0.4750 +25777 50511 0.6480 +25777 54867 0.4240 +25777 55231 0.4470 +25777 56158 0.5130 +25777 79041 0.5460 +25777 79188 0.8750 +25777 79789 0.6190 +25777 84072 0.4140 +25777 84814 0.4460 +25777 84823 0.6410 +25777 84909 0.5100 +25777 93426 0.4990 +25777 124404 0.4650 +25777 140732 0.6710 +25777 140836 0.5450 +25777 145645 0.7450 +25777 147872 0.9980 +25777 161176 0.9980 +25777 163183 0.9890 +25777 163590 0.6430 +25777 199953 0.8240 +25777 221496 0.6160 +25777 256126 0.5180 +25777 256979 0.6400 +25777 283129 0.6860 +25777 283847 0.7530 +25777 401647 0.4970 +25777 644186 0.4990 +25777 729857 0.4200 +25778 25862 0.4330 +25778 51700 0.4340 +25778 55707 0.4160 +25778 57532 0.4370 +25778 65055 0.4910 +25778 79684 0.5130 +25778 80208 0.4640 +25778 84553 0.5350 +25778 85302 0.4120 +25778 85379 0.4550 +25778 160335 0.4760 +25778 339145 0.4140 +25778 388730 0.6090 +25778 408187 0.5240 +25780 27091 0.6810 +25780 27092 0.6510 +25780 28956 0.4130 +25780 55024 0.4040 +25780 55255 0.4010 +25780 55799 0.6540 +25780 57589 0.4090 +25780 57705 0.4020 +25780 59283 0.6930 +25780 59284 0.6570 +25780 59285 0.7080 +25780 93589 0.6540 +25780 121260 0.4330 +25782 26057 0.4900 +25782 51143 0.5280 +25782 51164 0.6130 +25782 51308 0.6870 +25782 51366 0.4450 +25782 51560 0.5600 +25782 51663 0.4060 +25782 54521 0.4670 +25782 54878 0.4860 +25782 55860 0.5110 +25782 57534 0.4410 +25782 57724 0.4360 +25782 60592 0.5340 +25782 65055 0.5660 +25782 79056 0.4210 +25782 79075 0.4010 +25782 79794 0.4090 +25782 80208 0.5530 +25782 84196 0.4450 +25782 84516 0.5630 +25782 93661 0.4990 +25782 118813 0.4230 +25782 128637 0.8200 +25782 140735 0.5150 +25782 157753 0.4190 +25782 221035 0.4080 +25782 257415 0.4690 +25782 283373 0.4130 +25788 26150 0.5450 +25788 29028 0.4220 +25788 29089 0.4630 +25788 51455 0.4340 +25788 51750 0.4140 +25788 54107 0.4220 +25788 54821 0.5760 +25788 55010 0.4430 +25788 55055 0.4030 +25788 55215 0.4930 +25788 55388 0.4180 +25788 55697 0.7860 +25788 56852 0.5650 +25788 57082 0.4810 +25788 57697 0.7880 +25788 57699 0.4200 +25788 63967 0.4230 +25788 79075 0.5120 +25788 79677 0.4440 +25788 79728 0.5530 +25788 79915 0.5710 +25788 80010 0.6250 +25788 80119 0.4420 +25788 80198 0.7630 +25788 81930 0.4200 +25788 83990 0.5200 +25788 84057 0.5980 +25788 84464 0.4230 +25788 84893 0.7290 +25788 91647 0.4500 +25788 119392 0.5360 +25788 146956 0.6080 +25788 170082 0.5120 +25788 253714 0.4910 +25788 348654 0.5530 +25788 375444 0.4780 +25788 100533467 0.4120 +25789 25822 0.5360 +25789 27000 0.6500 +25789 29100 0.5020 +25789 51314 0.4300 +25789 51726 0.4200 +25789 54431 0.5660 +25789 54788 0.4350 +25789 54863 0.5220 +25789 55466 0.5540 +25789 55735 0.4200 +25789 56990 0.4200 +25789 64374 0.4550 +25789 79036 0.4650 +25789 79962 0.4210 +25789 79982 0.4350 +25789 80273 0.5880 +25789 80331 0.4200 +25789 81570 0.6950 +25789 84249 0.5900 +25789 84336 0.4860 +25789 85479 0.4200 +25789 96459 0.5220 +25789 113444 0.4330 +25789 120526 0.4330 +25789 130733 0.4550 +25789 134266 0.5880 +25789 136332 0.4400 +25789 140432 0.4200 +25789 150353 0.4200 +25789 165215 0.4070 +25789 165721 0.4290 +25789 171425 0.4200 +25789 202052 0.4500 +25789 284339 0.4370 +25789 285126 0.4250 +25789 285282 0.4200 +25789 286753 0.4580 +25789 339416 0.4790 +25789 374407 0.5220 +25789 388021 0.4590 +25789 548645 0.4200 +25789 552891 0.4200 +25789 643965 0.4450 +25790 26150 0.8660 +25790 26206 0.8300 +25790 26276 0.7930 +25790 27285 0.9050 +25790 29070 0.4800 +25790 29105 0.8660 +25790 29922 0.8390 +25790 54802 0.4030 +25790 55036 0.4260 +25790 55130 0.5870 +25790 55329 0.8300 +25790 56171 0.4970 +25790 57639 0.4530 +25790 64446 0.4520 +25790 64518 0.8600 +25790 64776 0.8090 +25790 64800 0.5390 +25790 79645 0.5690 +25790 79772 0.4990 +25790 80258 0.9090 +25790 83450 0.4560 +25790 83538 0.6870 +25790 83659 0.9020 +25790 83987 0.4950 +25790 84125 0.4070 +25790 84229 0.6120 +25790 85478 0.5160 +25790 92749 0.5920 +25790 93190 0.8310 +25790 93233 0.6770 +25790 114327 0.9120 +25790 115811 0.4030 +25790 115948 0.6440 +25790 118491 0.4710 +25790 127003 0.8600 +25790 129881 0.8540 +25790 133015 0.4430 +25790 134121 0.8290 +25790 134548 0.4800 +25790 135138 0.8950 +25790 136288 0.5130 +25790 138162 0.8500 +25790 138255 0.8280 +25790 145788 0.8190 +25790 146845 0.9420 +25790 150483 0.8420 +25790 151651 0.8970 +25790 160762 0.5900 +25790 161502 0.8990 +25790 164781 0.5620 +25790 196385 0.4880 +25790 197335 0.7820 +25790 219670 0.9490 +25790 219681 0.5790 +25790 220136 0.8800 +25790 254956 0.4970 +25790 257177 0.9020 +25790 317781 0.5990 +25790 338949 0.4570 +25790 339778 0.8160 +25790 345895 0.4250 +25790 388701 0.8250 +25790 389799 0.8000 +25790 391123 0.5370 +25790 440585 0.8210 +25790 730112 0.8080 +25790 100128569 0.5070 +25791 26499 0.5090 +25791 54848 0.4120 +25791 55114 0.4910 +25791 55450 0.4400 +25791 55860 0.4310 +25791 56924 0.4270 +25791 57144 0.4910 +25791 64101 0.4100 +25791 64398 0.4260 +25791 81565 0.4220 +25791 129807 0.4160 +25791 140767 0.4250 +25791 146330 0.4610 +25791 154796 0.5020 +25791 285220 0.9230 +25791 445328 0.5420 +25792 25953 0.4810 +25792 28964 0.4420 +25792 29890 0.4910 +25792 55145 0.7760 +25792 55532 0.4150 +25792 63982 0.7870 +25792 64122 0.4340 +25792 64753 0.4240 +25792 64783 0.6010 +25792 112476 0.6430 +25792 140735 0.4950 +25792 158405 0.4060 +25792 161514 0.4690 +25792 162239 0.5300 +25793 25853 0.4200 +25793 25978 0.4560 +25793 26058 0.8860 +25793 26190 0.5230 +25793 27429 0.7780 +25793 29058 0.6190 +25793 50813 0.4790 +25793 51094 0.4480 +25793 51138 0.5590 +25793 51142 0.7780 +25793 51185 0.6030 +25793 51608 0.5490 +25793 54832 0.6830 +25793 55317 0.4180 +25793 55437 0.4600 +25793 55703 0.4120 +25793 55737 0.8450 +25793 55832 0.7190 +25793 56984 0.7420 +25793 64708 0.4700 +25793 65018 0.9950 +25793 79608 0.5720 +25793 80025 0.5090 +25793 80208 0.6320 +25793 80700 0.4530 +25793 80895 0.4010 +25793 84749 0.4030 +25793 116442 0.5820 +25793 120892 0.8190 +25793 123879 0.5210 +25793 140458 0.4280 +25793 255394 0.4310 +25793 255488 0.4310 +25793 391356 0.5780 +25794 25861 0.6410 +25794 26121 0.8380 +25794 50939 0.7450 +25794 51168 0.5830 +25794 53405 0.8240 +25794 53904 0.6770 +25794 55812 0.6210 +25794 55975 0.7340 +25794 57096 0.4780 +25794 64072 0.4960 +25794 64218 0.7120 +25794 64787 0.6740 +25794 79947 0.5060 +25794 83715 0.7820 +25794 84140 0.5410 +25794 92211 0.4370 +25794 94137 0.4810 +25794 115861 0.4060 +25794 124590 0.4050 +25794 129446 0.8850 +25794 130557 0.7510 +25794 140469 0.6220 +25794 145226 0.7640 +25794 157657 0.5240 +25794 203068 0.4340 +25794 285440 0.4180 +25794 286262 0.8590 +25794 339768 0.7530 +25794 346007 0.7400 +25794 375298 0.7790 +25794 388939 0.7600 +25794 389207 0.8290 +25794 494513 0.4990 +25794 643226 0.8020 +25794 768206 0.7490 +25796 27165 0.4370 +25796 51005 0.8150 +25796 51071 0.4170 +25796 55276 0.4740 +25796 55577 0.5720 +25796 56052 0.5770 +25796 64080 0.4640 +25796 84076 0.6870 +25796 129831 0.7180 +25796 130951 0.5240 +25796 221823 0.4390 +25796 283871 0.4850 +25796 414328 0.9750 +25796 729020 0.6910 +25797 28962 0.4040 +25797 55140 0.4220 +25797 55295 0.4140 +25797 58157 0.4300 +25797 64127 0.4140 +25797 79258 0.5980 +25797 90637 0.4230 +25797 127254 0.4160 +25797 130617 0.4220 +25797 151056 0.5400 +25797 284451 0.4090 +25798 80316 0.6240 +25799 55663 0.5590 +25799 64779 0.5340 +25799 84911 0.4200 +25799 92595 0.5220 +25799 388569 0.5800 +25800 27173 0.8170 +25800 29985 0.6500 +25800 29986 0.6580 +25800 55250 0.4900 +25800 55334 0.8170 +25800 55532 0.6870 +25800 55676 0.7750 +25800 57181 0.7030 +25800 64924 0.8130 +25800 83608 0.4060 +25800 91252 0.5220 +25800 148867 0.7560 +25800 169026 0.6060 +25800 201266 0.7750 +25800 283375 0.4590 +25801 55026 0.4260 +25801 60558 0.5760 +25801 64135 0.6630 +25801 90134 0.8900 +25801 553115 0.4100 +25802 29895 0.5410 +25802 56907 0.4410 +25802 58498 0.5530 +25802 60386 0.4240 +25802 84501 0.4270 +25802 93408 0.5090 +25802 93649 0.6340 +25802 103910 0.5600 +25802 133746 0.4660 +25802 140465 0.5380 +25802 171024 0.6430 +25802 345456 0.4460 +25802 375189 0.4950 +25803 27290 0.5210 +25803 29993 0.4870 +25803 50674 0.4470 +25803 55930 0.4690 +25803 57535 0.4240 +25803 63976 0.6000 +25803 64771 0.5970 +25803 79675 0.4200 +25803 84159 0.4140 +25803 90355 0.7930 +25803 148327 0.4590 +25803 727897 0.6330 +25804 25873 0.4100 +25804 26065 0.6980 +25804 26121 0.9990 +25804 26986 0.4700 +25804 27257 0.9990 +25804 27258 0.9990 +25804 27336 0.5190 +25804 27339 0.5070 +25804 51013 0.5210 +25804 51021 0.4050 +25804 51118 0.4510 +25804 51362 0.4070 +25804 51503 0.8700 +25804 51574 0.4130 +25804 51634 0.9500 +25804 51639 0.8830 +25804 51645 0.4630 +25804 51690 0.9990 +25804 51691 0.9990 +25804 51729 0.9020 +25804 51747 0.5330 +25804 51806 0.4400 +25804 54464 0.9860 +25804 54514 0.5100 +25804 54948 0.4200 +25804 54957 0.8410 +25804 55110 0.9340 +25804 55234 0.9910 +25804 55285 0.4090 +25804 55352 0.4570 +25804 55374 0.5630 +25804 55599 0.4090 +25804 55651 0.5050 +25804 55696 0.8470 +25804 55697 0.4010 +25804 55749 0.5070 +25804 55802 0.9030 +25804 55954 0.4950 +25804 56257 0.6800 +25804 56892 0.4530 +25804 56915 0.5000 +25804 57703 0.9040 +25804 57794 0.5510 +25804 57819 0.9990 +25804 59286 0.8780 +25804 64837 0.5020 +25804 64852 0.5460 +25804 65003 0.4030 +25804 65993 0.5870 +25804 79084 0.6380 +25804 79171 0.9290 +25804 79753 0.9900 +25804 80153 0.9480 +25804 83443 0.9950 +25804 83938 0.6170 +25804 84316 0.9170 +25804 84811 0.9490 +25804 84844 0.9940 +25804 84950 0.9840 +25804 84967 0.8420 +25804 91860 0.4370 +25804 114034 0.6290 +25804 116028 0.6220 +25804 118472 0.4960 +25804 124801 0.6170 +25804 126259 0.7140 +25804 128240 0.5100 +25804 134353 0.5440 +25804 147650 0.7140 +25804 149986 0.5710 +25804 153527 0.9980 +25804 163688 0.4370 +25804 164045 0.5640 +25804 164781 0.5090 +25804 167227 0.9010 +25804 196513 0.7790 +25804 197135 0.9990 +25804 219988 0.9990 +25804 220074 0.5830 +25804 283237 0.5270 +25804 284325 0.8970 +25804 348793 0.5130 +25804 100534599 0.4480 +25805 26585 0.4260 +25805 50964 0.4300 +25805 64388 0.4040 +25805 81839 0.4200 +25805 168667 0.4610 +25806 51652 0.5340 +25806 65979 0.4160 +25806 147912 0.4580 +25807 27241 0.4070 +25807 54933 0.4290 +25807 55007 0.5080 +25807 55116 0.4030 +25807 57414 0.5020 +25807 64285 0.4940 +25807 79651 0.4300 +25807 79659 0.4010 +25807 84236 0.4900 +25807 92840 0.4450 +25807 137994 0.4600 +25807 150763 0.4220 +25807 162494 0.4750 +25807 201164 0.4360 +25807 202052 0.4230 +25807 337867 0.5340 +25809 25816 0.4180 +25809 25941 0.9710 +25809 29882 0.6820 +25809 29945 0.6140 +25809 54839 0.9850 +25809 55296 0.8370 +25809 55802 0.4500 +25809 57587 0.4600 +25809 60509 0.5390 +25809 79096 0.8720 +25809 79969 0.4300 +25809 80153 0.8610 +25809 84276 0.9770 +25809 84283 0.4330 +25809 84542 0.7890 +25809 84871 0.5430 +25809 91978 0.9690 +25809 95681 0.6440 +25809 114822 0.4270 +25809 118487 0.4730 +25809 119504 0.5340 +25809 119587 0.4740 +25809 132612 0.4090 +25809 150465 0.4020 +25809 154865 0.5290 +25809 158135 0.4960 +25809 167227 0.4910 +25809 196513 0.4810 +25809 390075 0.4030 +25813 26164 0.4340 +25813 26515 0.4770 +25813 26517 0.7110 +25813 26519 0.6810 +25813 26520 0.7280 +25813 26521 0.4450 +25813 27173 0.5840 +25813 29090 0.7720 +25813 29780 0.6000 +25813 29927 0.6070 +25813 29928 0.4420 +25813 29985 0.5840 +25813 29986 0.5800 +25813 51021 0.4960 +25813 51025 0.4150 +25813 51067 0.4080 +25813 51081 0.4140 +25813 51116 0.4770 +25813 51300 0.7040 +25813 51360 0.9060 +25813 53345 0.5290 +25813 54205 0.4080 +25813 54543 0.8950 +25813 54859 0.4570 +25813 54927 0.9990 +25813 55176 0.5430 +25813 55272 0.5370 +25813 55669 0.7810 +25813 55703 0.4400 +25813 55735 0.9750 +25813 55795 0.4720 +25813 56945 0.4570 +25813 56947 0.5680 +25813 56993 0.9970 +25813 57128 0.4380 +25813 57136 0.4470 +25813 57505 0.4070 +25813 64960 0.4030 +25813 64963 0.4700 +25813 65005 0.4170 +25813 65018 0.6480 +25813 65260 0.5900 +25813 79135 0.9430 +25813 79631 0.4660 +25813 79863 0.5320 +25813 79947 0.4170 +25813 80339 0.9280 +25813 80777 0.4910 +25813 81555 0.7900 +25813 81570 0.5460 +25813 84134 0.9500 +25813 84172 0.4180 +25813 84269 0.4260 +25813 84274 0.4020 +25813 84303 0.9720 +25813 85476 0.5030 +25813 87178 0.5440 +25813 89941 0.4530 +25813 90580 0.4470 +25813 91137 0.4480 +25813 92399 0.7560 +25813 92609 0.7200 +25813 115209 0.4040 +25813 116150 0.4010 +25813 125988 0.9450 +25813 127018 0.5670 +25813 131118 0.6170 +25813 131474 0.7240 +25813 139322 0.9590 +25813 140823 0.4110 +25813 196074 0.5000 +25813 203286 0.4950 +25813 285521 0.4870 +25813 285525 0.8230 +25813 345275 0.4660 +25813 345778 0.9930 +25813 347487 0.4410 +25813 348487 0.4090 +25813 387990 0.6910 +25813 400916 0.4280 +25813 401505 0.7870 +25813 440574 0.9660 +25813 100188893 0.8160 +25813 100287482 0.4380 +25813 100287932 0.7920 +25814 25830 0.4050 +25814 25894 0.6790 +25814 27077 0.4060 +25814 54840 0.4030 +25814 56652 0.4400 +25814 57338 0.4770 +25814 64374 0.4820 +25814 79867 0.5700 +25814 80184 0.5440 +25814 80776 0.4060 +25814 146057 0.8410 +25814 146227 0.5970 +25814 150383 0.5360 +25814 203228 0.5210 +25814 261734 0.5240 +25814 284325 0.4650 +25814 339453 0.5770 +25814 343641 0.6080 +25814 401474 0.4090 +25816 29079 0.5570 +25816 60626 0.4210 +25817 57633 0.4510 +25817 57786 0.4550 +25817 64748 0.4080 +25817 79690 0.4280 +25817 92293 0.4620 +25817 121256 0.5030 +25817 256536 0.5940 +25817 407738 0.4350 +25817 100533952 0.4270 +25817 110806297 0.4340 +25818 63036 0.8310 +25818 85480 0.6300 +25818 89777 0.4270 +25818 126637 0.4250 +25818 163778 0.4520 +25818 286887 0.4080 +25818 374454 0.4190 +25818 388698 0.7520 +25818 404203 0.9520 +25818 643394 0.9890 +25819 29883 0.7420 +25819 54623 0.6210 +25819 56938 0.4730 +25819 57446 0.4440 +25819 79577 0.6470 +25819 85027 0.4380 +25819 93624 0.4210 +25819 140856 0.4520 +25819 145389 0.6060 +25819 148534 0.4400 +25819 154197 0.5780 +25819 197135 0.4470 +25819 219988 0.4560 +25820 26118 0.4100 +25820 26190 0.5850 +25820 26273 0.4080 +25820 26512 0.6250 +25820 26973 0.4130 +25820 27338 0.6780 +25820 29035 0.6550 +25820 50813 0.4800 +25820 51133 0.4280 +25820 51191 0.6970 +25820 51312 0.6540 +25820 54165 0.6400 +25820 54476 0.4010 +25820 54708 0.4270 +25820 54764 0.4370 +25820 54793 0.4420 +25820 54926 0.4680 +25820 55040 0.4060 +25820 55294 0.6030 +25820 55832 0.4160 +25820 55975 0.4590 +25820 57154 0.4590 +25820 57688 0.4010 +25820 59343 0.6350 +25820 59349 0.4550 +25820 64062 0.4060 +25820 65018 0.4800 +25820 79594 0.6020 +25820 79736 0.4410 +25820 80012 0.4470 +25820 80204 0.4020 +25820 80232 0.4180 +25820 81858 0.4450 +25820 81894 0.5580 +25820 83448 0.5390 +25820 83892 0.4740 +25820 84231 0.4070 +25820 84376 0.4370 +25820 84861 0.4020 +25820 89890 0.4070 +25820 90268 0.4630 +25820 90678 0.5130 +25820 92799 0.4250 +25820 113026 0.4060 +25820 115560 0.5180 +25820 115992 0.4210 +25820 116138 0.4070 +25820 139067 0.6160 +25820 139341 0.4500 +25820 171222 0.9390 +25820 253980 0.6740 +25820 280636 0.4640 +25820 283130 0.4080 +25821 25904 0.6280 +25821 26024 0.4130 +25821 26059 0.4180 +25821 26995 0.4250 +25821 27229 0.4850 +25821 27304 0.4390 +25821 29960 0.4200 +25821 51067 0.5410 +25821 51095 0.5500 +25821 51106 0.5510 +25821 51512 0.6760 +25821 51654 0.5170 +25821 51805 0.4440 +25821 54802 0.7040 +25821 54931 0.4880 +25821 55005 0.4940 +25821 55006 0.4350 +25821 55157 0.4820 +25821 55603 0.6600 +25821 55687 0.9840 +25821 55699 0.4960 +25821 55755 0.5780 +25821 56945 0.4830 +25821 57038 0.5310 +25821 57505 0.6300 +25821 57570 0.5620 +25821 60528 0.6480 +25821 63899 0.6120 +25821 64172 0.4860 +25821 79072 0.7270 +25821 79576 0.4410 +25821 79587 0.6530 +25821 79616 0.4040 +25821 79691 0.5490 +25821 80324 0.7310 +25821 81890 0.4490 +25821 83737 0.4070 +25821 84340 0.4270 +25821 84705 0.9960 +25821 84923 0.7430 +25821 90353 0.4530 +25821 91574 0.6050 +25821 93624 0.5960 +25821 113251 0.4360 +25821 123263 0.7310 +25821 124454 0.5000 +25821 129685 0.5330 +25821 133957 0.7330 +25821 134359 0.4100 +25821 140460 0.5710 +25821 285521 0.5030 +25821 387338 0.4030 +25821 440145 0.5620 +25822 25828 0.4750 +25822 26589 0.4410 +25822 27101 0.4920 +25822 28998 0.4370 +25822 51015 0.4830 +25822 51182 0.6520 +25822 51270 0.4310 +25822 51314 0.4680 +25822 51666 0.6540 +25822 54556 0.4860 +25822 54788 0.6090 +25822 54979 0.4200 +25822 55204 0.4700 +25822 55466 0.5840 +25822 57110 0.4290 +25822 57129 0.4070 +25822 63875 0.4600 +25822 64374 0.6940 +25822 64750 0.4020 +25822 80273 0.6580 +25822 81570 0.5280 +25822 84545 0.4060 +25822 116835 0.5390 +25822 118461 0.4260 +25822 126205 0.5670 +25822 134266 0.4520 +25822 259217 0.4240 +25822 339416 0.4200 +25822 388633 0.4200 +25823 51200 0.5100 +25823 57465 0.4250 +25823 220001 0.4460 +25824 25828 0.9390 +25824 26279 0.4110 +25824 27243 0.5150 +25824 51022 0.6300 +25824 51024 0.4100 +25824 51079 0.4530 +25824 51218 0.4040 +25824 51314 0.6530 +25824 51398 0.6210 +25824 51806 0.4490 +25824 54205 0.4450 +25824 54431 0.4820 +25824 55014 0.7850 +25824 55327 0.6530 +25824 55347 0.4660 +25824 64130 0.6510 +25824 64714 0.4240 +25824 79465 0.6420 +25824 83667 0.6780 +25824 84203 0.6470 +25824 84519 0.4480 +25824 91860 0.4490 +25824 114112 0.6990 +25824 126328 0.4120 +25824 140809 0.6360 +25824 163688 0.4490 +25824 255220 0.6590 +25824 257202 0.5660 +25824 347736 0.6000 +25824 373156 0.4140 +25824 374291 0.4110 +25824 493869 0.6310 +25825 26088 0.5710 +25825 26470 0.5950 +25825 51107 0.5990 +25825 55851 0.5880 +25825 57142 0.9620 +25825 57393 0.6260 +25825 57685 0.4180 +25825 59272 0.4080 +25825 60496 0.4340 +25825 64837 0.4520 +25825 79258 0.4740 +25825 80201 0.4710 +25825 83464 0.5190 +25825 84570 0.5010 +25825 89796 0.6260 +25825 89953 0.4460 +25825 93664 0.4520 +25825 147700 0.4530 +25827 26273 0.8600 +25827 29799 0.6240 +25827 51107 0.4040 +25827 51806 0.5410 +25827 55336 0.4770 +25827 57154 0.4150 +25827 57161 0.4180 +25827 63943 0.4230 +25827 64844 0.6640 +25827 79184 0.4660 +25827 80204 0.4830 +25827 81669 0.4200 +25827 83719 0.5710 +25827 91860 0.5310 +25827 114548 0.5060 +25827 139341 0.4270 +25827 148327 0.5410 +25827 163688 0.5310 +25827 375743 0.9340 +25828 29796 0.6220 +25828 50507 0.4580 +25828 51021 0.4210 +25828 51022 0.7630 +25828 51079 0.5400 +25828 51218 0.4720 +25828 51314 0.5380 +25828 54205 0.6350 +25828 54539 0.5210 +25828 55744 0.4120 +25828 55967 0.4200 +25828 56729 0.4070 +25828 56993 0.5100 +25828 57147 0.5940 +25828 65003 0.8350 +25828 79594 0.5330 +25828 80020 0.5260 +25828 84203 0.5000 +25828 84817 0.5700 +25828 114112 0.6390 +25828 126328 0.5640 +25828 140809 0.5920 +25828 192111 0.4220 +25828 255220 0.5280 +25828 257202 0.6550 +25828 374291 0.5910 +25828 493869 0.6870 +25829 27352 0.4480 +25829 51274 0.4050 +25829 55715 0.6070 +25829 80115 0.4240 +25829 81631 0.4130 +25829 84557 0.4220 +25829 84661 0.4260 +25829 93166 0.5060 +25829 118471 0.4580 +25829 118812 0.4350 +25829 339366 0.5710 +25829 440738 0.4090 +25829 643246 0.4090 +25830 27233 0.5840 +25830 27284 0.5900 +25830 29780 0.4010 +25830 54715 0.4920 +25830 55859 0.4900 +25830 55904 0.4350 +25830 57471 0.5280 +25830 85358 0.4310 +25830 90134 0.4700 +25830 255877 0.6220 +25830 340146 0.7470 +25830 347734 0.9230 +25830 391365 0.6300 +25830 404217 0.5570 +25830 445329 0.6990 +25831 26046 0.4240 +25831 26057 0.6040 +25831 51366 0.4530 +25831 51538 0.4890 +25831 54764 0.7450 +25831 55031 0.4630 +25831 55294 0.5290 +25831 55665 0.4260 +25831 55781 0.4940 +25831 57448 0.6760 +25831 79823 0.4200 +25831 90441 0.5870 +25831 113251 0.4460 +25831 197131 0.4820 +25832 51463 0.4340 +25832 199692 0.4050 +25832 348093 0.4040 +25832 388960 0.4470 +25832 441234 0.4290 +25832 442590 0.4460 +25832 645142 0.4900 +25832 728945 0.4920 +25832 730262 0.4170 +25833 50640 0.4470 +25833 51365 0.9190 +25833 55733 0.5810 +25833 55768 0.4340 +25833 55922 0.7210 +25833 56670 0.4050 +25833 57110 0.4180 +25833 57684 0.4310 +25833 63874 0.4520 +25833 79153 0.5710 +25833 80344 0.9420 +25833 80821 0.6210 +25833 83756 0.4560 +25833 84301 0.4470 +25833 119504 0.4750 +25833 151056 0.5780 +25833 200879 0.9070 +25833 283337 0.4200 +25833 284161 0.5800 +25833 346562 0.5370 +25833 414301 0.4200 +25834 55061 0.4200 +25834 79695 0.4880 +25834 84620 0.4180 +25834 90488 0.4790 +25834 146664 0.9500 +25834 151242 0.4090 +25834 200035 0.4040 +25834 255394 0.4400 +25834 266743 0.4050 +25834 339451 0.4160 +25834 727936 0.5110 +25836 25896 0.7230 +25836 25909 0.4380 +25836 25962 0.4930 +25836 26036 0.5810 +25836 26054 0.4860 +25836 26058 0.6080 +25836 26173 0.7650 +25836 26512 0.8340 +25836 27125 0.4880 +25836 27127 0.9420 +25836 27327 0.4640 +25836 27332 0.7450 +25836 29072 0.7710 +25836 29123 0.7100 +25836 50618 0.7920 +25836 51322 0.5900 +25836 51366 0.5970 +25836 51430 0.4550 +25836 51585 0.5080 +25836 51742 0.7140 +25836 51773 0.7200 +25836 54816 0.4050 +25836 54820 0.4120 +25836 54882 0.6500 +25836 54921 0.5750 +25836 54973 0.7520 +25836 55023 0.6470 +25836 55100 0.8390 +25836 55174 0.7240 +25836 55193 0.5280 +25836 55209 0.5030 +25836 55511 0.5870 +25836 55636 0.6270 +25836 55656 0.7510 +25836 55726 0.6570 +25836 55756 0.7270 +25836 55814 0.4330 +25836 55835 0.4100 +25836 55869 0.8780 +25836 55870 0.7170 +25836 55904 0.5000 +25836 55914 0.5350 +25836 56987 0.4100 +25836 57117 0.7300 +25836 57187 0.5850 +25836 57448 0.4370 +25836 57508 0.7270 +25836 57532 0.4920 +25836 57634 0.4370 +25836 57680 0.5540 +25836 58508 0.6240 +25836 63922 0.6410 +25836 64151 0.4400 +25836 64324 0.4550 +25836 65123 0.7240 +25836 65250 0.8050 +25836 79034 0.7420 +25836 79075 0.4010 +25836 79677 0.7890 +25836 79811 0.5630 +25836 79915 0.4790 +25836 79923 0.5500 +25836 80205 0.4250 +25836 80789 0.7220 +25836 81556 0.5910 +25836 84181 0.4350 +25836 84246 0.6200 +25836 84450 0.5200 +25836 92105 0.7410 +25836 112950 0.8340 +25836 113130 0.9700 +25836 114799 0.8530 +25836 114803 0.7120 +25836 140690 0.7070 +25836 149041 0.4060 +25836 149076 0.4360 +25836 151648 0.7880 +25836 157570 0.8930 +25836 196441 0.4740 +25836 196528 0.5110 +25836 203522 0.5910 +25836 221037 0.5940 +25836 254827 0.7260 +25836 255967 0.7100 +25836 257218 0.4040 +25836 259266 0.4150 +25836 259282 0.5280 +25836 441519 0.5870 +25836 441521 0.5870 +25836 541465 0.5870 +25836 541466 0.5870 +25836 642636 0.9320 +25836 728911 0.5870 +25836 101060211 0.5870 +25836 102723631 0.5870 +25836 102723680 0.5870 +25836 102723737 0.5870 +25837 55054 0.9520 +25837 57449 0.5130 +25837 80208 0.5260 +25837 81631 0.5270 +25837 83452 0.4930 +25837 126823 0.4070 +25837 168620 0.5000 +25837 375743 0.6140 +25839 27314 0.8460 +25839 27333 0.7440 +25839 51143 0.5090 +25839 51164 0.5090 +25839 51272 0.6870 +25839 51542 0.8540 +25839 51560 0.5530 +25839 53407 0.5200 +25839 54536 0.5200 +25839 54734 0.5670 +25839 55275 0.9140 +25839 55697 0.5340 +25839 55763 0.4170 +25839 55783 0.4400 +25839 55858 0.4740 +25839 55860 0.5090 +25839 57134 0.5760 +25839 57511 0.9990 +25839 57589 0.6560 +25839 60412 0.5500 +25839 60561 0.5750 +25839 63908 0.5310 +25839 79571 0.6130 +25839 79574 0.4330 +25839 80011 0.5310 +25839 83452 0.6110 +25839 83548 0.9990 +25839 84364 0.4160 +25839 84516 0.5170 +25839 85365 0.5470 +25839 90196 0.5040 +25839 91949 0.9990 +25839 92154 0.4150 +25839 93661 0.4990 +25839 126208 0.7250 +25839 140735 0.5110 +25839 143187 0.7980 +25839 149371 0.4400 +25839 150483 0.4200 +25839 152579 0.6370 +25839 197258 0.6290 +25839 200312 0.5400 +25839 221184 0.4720 +25839 339122 0.5370 +25839 347517 0.5530 +25839 347734 0.4290 +25840 26262 0.4460 +25840 28989 0.4080 +25840 29914 0.4040 +25840 51170 0.4810 +25840 51504 0.5110 +25840 56681 0.6200 +25840 64745 0.5110 +25840 79828 0.4340 +25840 84190 0.4880 +25840 84233 0.4530 +25840 84326 0.4080 +25840 131965 0.4070 +25840 149281 0.4360 +25840 155368 0.4300 +25840 399818 0.4490 +25840 100505876 0.4140 +25841 55346 0.4060 +25841 56912 0.4400 +25841 91614 0.5360 +25841 115353 0.4120 +25841 150737 0.4170 +25842 25934 0.4610 +25842 26099 0.4210 +25842 27127 0.6330 +25842 29072 0.5010 +25842 29855 0.9990 +25842 50484 0.4610 +25842 50485 0.4210 +25842 51141 0.4770 +25842 51433 0.4890 +25842 51690 0.6020 +25842 54962 0.5250 +25842 55183 0.7150 +25842 55723 0.8710 +25842 55869 0.5150 +25842 56943 0.4570 +25842 57634 0.6140 +25842 64779 0.5970 +25842 79711 0.9660 +25842 79915 0.4480 +25842 80119 0.7260 +25842 80774 0.4200 +25842 84135 0.6970 +25842 84529 0.7040 +25842 84942 0.4510 +25842 85236 0.4300 +25842 92797 0.5360 +25842 94239 0.6730 +25842 113444 0.6230 +25842 121504 0.9410 +25842 126961 0.9640 +25842 140767 0.4030 +25842 146059 0.8970 +25842 221120 0.4150 +25842 253714 0.7120 +25842 254048 0.8310 +25842 254394 0.5390 +25842 257218 0.4200 +25842 266743 0.5760 +25842 333932 0.9390 +25842 340096 0.5130 +25842 391769 0.5450 +25842 440093 0.9940 +25842 440686 0.9500 +25842 554313 0.9410 +25842 653604 0.9970 +25843 26127 0.9970 +25843 26524 0.4710 +25843 27145 0.4790 +25843 29888 0.9990 +25843 29966 0.9990 +25843 50488 0.8140 +25843 51693 0.5290 +25843 51765 0.9990 +25843 54764 0.4710 +25843 55233 0.4380 +25843 55917 0.9980 +25843 57464 0.9990 +25843 57553 0.4410 +25843 60485 0.5920 +25843 63978 0.5960 +25843 80143 0.9980 +25843 80342 0.9960 +25843 81532 0.7860 +25843 83992 0.9970 +25843 85369 0.9990 +25843 114327 0.4810 +25843 126308 0.6880 +25843 145258 0.8400 +25843 148932 0.6630 +25843 100529241 0.8100 +25844 51614 0.4400 +25844 54432 0.8350 +25844 54985 0.5420 +25844 55238 0.4480 +25844 56956 0.4890 +25844 78992 0.8230 +25844 81555 0.7460 +25844 81622 0.4200 +25844 84272 0.9650 +25844 90522 0.4260 +25844 203069 0.4320 +25844 285525 0.6940 +25844 286451 0.7030 +25847 25906 0.9980 +25847 26271 0.9710 +25847 27338 0.9860 +25847 29882 0.9980 +25847 29945 0.9990 +25847 51239 0.5430 +25847 51343 0.9970 +25847 51433 0.9990 +25847 51434 0.9980 +25847 51529 0.9930 +25847 54880 0.9000 +25847 55827 0.4160 +25847 57332 0.9000 +25847 63922 0.4190 +25847 64682 0.9990 +25847 79184 0.9020 +25847 80012 0.9000 +25847 84108 0.9000 +25847 84333 0.5400 +25847 84733 0.9000 +25847 84759 0.5430 +25847 85417 0.6590 +25847 85437 0.4480 +25847 119504 0.9990 +25847 140459 0.5400 +25847 166979 0.5550 +25847 246184 0.9990 +25847 256130 0.4450 +25847 285423 0.4020 +25847 341880 0.4740 +25847 375061 0.4070 +25847 388272 0.6100 +25847 442184 0.5070 +25849 26153 0.4190 +25849 64420 0.4560 +25849 79625 0.4230 +25849 254268 0.5130 +25850 84527 0.4600 +25850 256051 0.5440 +25850 374900 0.4430 +25851 26100 0.9970 +25851 51103 0.4640 +25851 51112 0.4940 +25851 55014 0.4380 +25851 55054 0.7400 +25851 55062 0.9740 +25851 57037 0.4790 +25851 57724 0.6030 +25851 64087 0.5460 +25851 64422 0.7160 +25851 64745 0.4480 +25851 64969 0.4920 +25851 79443 0.4340 +25851 79786 0.4420 +25851 83734 0.4140 +25851 84557 0.4180 +25851 85378 0.5650 +25851 92822 0.4630 +25851 114791 0.4290 +25851 197342 0.4170 +25851 440738 0.4490 +25852 26959 0.6660 +25852 27304 0.4430 +25852 27429 0.8340 +25852 51164 0.4810 +25852 51186 0.5810 +25852 51646 0.9210 +25852 54606 0.4550 +25852 54877 0.4540 +25852 54994 0.9990 +25852 57610 0.9930 +25852 64777 0.9850 +25852 64795 0.9960 +25852 79009 0.7680 +25852 79018 0.9980 +25852 80232 0.9960 +25852 80258 0.4220 +25852 84173 0.4210 +25852 84926 0.8020 +25852 116225 0.8440 +25852 201255 0.4590 +25852 203111 0.4600 +25852 221692 0.4560 +25853 25879 0.9160 +25853 25893 0.4210 +25853 26094 0.9590 +25853 26133 0.9330 +25853 50717 0.9350 +25853 51094 0.6600 +25853 51185 0.9090 +25853 51218 0.5600 +25853 51327 0.4450 +25853 51514 0.9170 +25853 51629 0.6230 +25853 54461 0.9000 +25853 54855 0.4500 +25853 54876 0.9170 +25853 55070 0.9000 +25853 55363 0.4200 +25853 55437 0.8840 +25853 55626 0.9020 +25853 55827 0.9510 +25853 55833 0.4450 +25853 57095 0.4780 +25853 64326 0.9020 +25853 79016 0.9130 +25853 79269 0.9380 +25853 80067 0.9000 +25853 80344 0.9450 +25853 80700 0.5300 +25853 83606 0.4180 +25853 84164 0.4400 +25853 84923 0.4330 +25853 84932 0.4780 +25853 90379 0.9140 +25853 116151 0.4470 +25853 138009 0.6610 +25853 139170 0.5570 +25853 139425 0.5970 +25853 140432 0.5500 +25853 220972 0.5590 +25853 285429 0.6610 +25853 340578 0.5550 +25853 347442 0.5970 +25854 26297 0.4370 +25854 27295 0.4010 +25854 56977 0.4860 +25854 57587 0.4460 +25854 80014 0.4030 +25854 89932 0.4110 +25854 134147 0.4130 +25854 203069 0.4400 +25854 205860 0.4400 +25854 256309 0.4850 +25854 285440 0.5120 +25854 339976 0.5830 +25854 441054 0.4590 +25854 448831 0.5060 +25855 25942 0.9830 +25855 51147 0.4900 +25855 51317 0.5210 +25855 51742 0.9290 +25855 53615 0.5110 +25855 54556 0.6390 +25855 54815 0.5310 +25855 54994 0.4420 +25855 57459 0.4990 +25855 57504 0.6050 +25855 57649 0.8480 +25855 58516 0.9580 +25855 58533 0.6200 +25855 60436 0.5840 +25855 60673 0.5130 +25855 64426 0.8890 +25855 79595 0.7160 +25855 79685 0.9280 +25855 80232 0.4540 +25855 80312 0.5910 +25855 81786 0.6250 +25855 83463 0.5910 +25855 84312 0.6670 +25855 84337 0.4170 +25855 85236 0.4130 +25855 90316 0.5330 +25855 92815 0.4010 +25855 93436 0.4700 +25855 221937 0.4300 +25855 619279 0.6230 +25855 653604 0.5020 +25855 100316904 0.6350 +25858 27092 0.7200 +25858 28231 0.4260 +25858 55799 0.5400 +25858 57685 0.5400 +25858 57828 0.9140 +25858 59283 0.7200 +25858 59284 0.7200 +25858 59285 0.7200 +25858 79820 0.9530 +25858 93589 0.7200 +25858 115825 0.5260 +25858 117144 0.9560 +25858 117155 0.9460 +25858 133482 0.4590 +25858 157855 0.4010 +25858 246329 0.7200 +25858 257044 0.9580 +25858 257062 0.9520 +25858 285588 0.9920 +25858 340393 0.7200 +25858 347732 0.9430 +25858 353189 0.4590 +25858 378807 0.9420 +25858 100130348 0.8560 +25861 26090 0.4470 +25861 26160 0.5940 +25861 29899 0.9460 +25861 51168 0.9990 +25861 53405 0.6180 +25861 53841 0.4500 +25861 53904 0.9390 +25861 54084 0.4860 +25861 55591 0.9070 +25861 57096 0.7300 +25861 57513 0.4210 +25861 57689 0.9030 +25861 64072 0.9460 +25861 64398 0.5820 +25861 64699 0.4860 +25861 64787 0.9470 +25861 65217 0.8970 +25861 79809 0.4910 +25861 79955 0.9460 +25861 80022 0.4590 +25861 80184 0.4950 +25861 81554 0.5540 +25861 83715 0.9580 +25861 84059 0.9990 +25861 85477 0.4290 +25861 117531 0.8170 +25861 117532 0.7200 +25861 124590 0.9920 +25861 125336 0.4740 +25861 126326 0.4770 +25861 129446 0.5930 +25861 130106 0.5070 +25861 133584 0.4090 +25861 140469 0.9020 +25861 146183 0.5150 +25861 161497 0.6550 +25861 167691 0.6170 +25861 222662 0.6390 +25861 246213 0.5100 +25861 253827 0.4250 +25861 259236 0.5720 +25861 284086 0.4310 +25861 286262 0.9580 +25861 286676 0.4160 +25861 339768 0.9080 +25861 342865 0.4350 +25861 375611 0.4240 +25861 388551 0.5000 +25861 388939 0.4120 +25861 389207 0.7360 +25861 494513 0.7150 +25861 643226 0.6460 +25861 645104 0.4200 +25862 27097 0.4070 +25862 27443 0.4500 +25862 29761 0.4580 +25862 51478 0.5570 +25862 51616 0.4110 +25862 54033 0.4100 +25862 54532 0.4640 +25862 54726 0.4650 +25862 54799 0.4620 +25862 55142 0.7670 +25862 55593 0.4270 +25862 55611 0.4550 +25862 55793 0.4050 +25862 56203 0.4610 +25862 56943 0.6030 +25862 57559 0.4030 +25862 57646 0.4740 +25862 57663 0.5450 +25862 60489 0.4150 +25862 78990 0.4340 +25862 79157 0.4910 +25862 80224 0.4930 +25862 83844 0.4890 +25862 84061 0.5010 +25862 84101 0.5100 +25862 84640 0.4880 +25862 84839 0.6600 +25862 85236 0.6550 +25862 90649 0.4580 +25862 93624 0.4760 +25862 112869 0.6090 +25862 114803 0.4300 +25862 124739 0.4080 +25862 126119 0.4330 +25862 126205 0.4160 +25862 128312 0.6550 +25862 128387 0.4040 +25862 136051 0.6400 +25862 157777 0.5090 +25862 159195 0.4630 +25862 160728 0.4360 +25862 219654 0.4070 +25862 220213 0.4760 +25862 221302 0.5520 +25862 255626 0.6600 +25862 340061 0.5590 +25862 401494 0.5690 +25862 440275 0.4590 +25862 440503 0.4060 +25862 440689 0.6530 +25864 26090 0.4120 +25864 53947 0.4590 +25864 55301 0.4420 +25864 55347 0.5090 +25864 57406 0.4030 +25864 63874 0.4030 +25864 79575 0.5410 +25864 79728 0.4950 +25864 80167 0.4750 +25864 81889 0.4580 +25864 81926 0.4220 +25864 83451 0.4540 +25864 84696 0.5080 +25864 84945 0.5720 +25864 90273 0.4100 +25864 116236 0.5300 +25864 132949 0.4170 +25864 140701 0.6200 +25864 145447 0.6150 +25864 171586 0.4290 +25864 339302 0.4360 +25864 388531 0.4120 +25864 389124 0.4630 +25864 647174 0.4300 +25865 26287 0.5110 +25865 26499 0.6690 +25865 27236 0.5080 +25865 51564 0.6660 +25865 51806 0.4490 +25865 54434 0.5160 +25865 55031 0.4260 +25865 57498 0.5950 +25865 64764 0.6500 +25865 79885 0.4710 +25865 84699 0.6500 +25865 90993 0.6500 +25865 91860 0.4390 +25865 117584 0.4750 +25865 148327 0.6500 +25865 163688 0.4310 +25865 253260 0.4180 +25870 29937 0.4170 +25870 51142 0.5250 +25870 51373 0.4240 +25870 51449 0.4100 +25870 51661 0.4700 +25870 55915 0.4060 +25870 57175 0.4290 +25870 79175 0.4620 +25870 79642 0.6530 +25870 80020 0.4550 +25870 91369 0.4890 +25870 143458 0.4210 +25870 153396 0.4420 +25870 153642 0.6460 +25870 285362 0.9710 +25870 339105 0.4300 +25870 340075 0.6940 +25870 342125 0.4490 +25870 346288 0.4450 +25870 347527 0.6510 +25870 349075 0.6700 +25870 389493 0.4410 +25870 439921 0.4630 +25871 29083 0.5850 +25871 51367 0.5940 +25871 54913 0.8330 +25871 54955 0.5400 +25871 54989 0.4380 +25871 56977 0.5200 +25871 57102 0.5080 +25871 57120 0.4490 +25871 57654 0.4700 +25871 79568 0.5740 +25871 83608 0.6600 +25871 121549 0.4770 +25871 138716 0.6960 +25871 143872 0.4890 +25871 284071 0.4250 +25871 646960 0.4880 +25873 26046 0.8120 +25873 26135 0.9850 +25873 26155 0.8770 +25873 26156 0.8760 +25873 26168 0.5260 +25873 26251 0.5260 +25873 26354 0.7620 +25873 26986 0.5850 +25873 27000 0.4670 +25873 27012 0.5260 +25873 27043 0.5570 +25873 27335 0.6570 +25873 27430 0.5500 +25873 28972 0.5340 +25873 28991 0.6000 +25873 28998 0.9520 +25873 29088 0.6900 +25873 29093 0.9420 +25873 29889 0.9130 +25873 29927 0.8790 +25873 29960 0.6140 +25873 29978 0.7120 +25873 29979 0.6160 +25873 29997 0.9120 +25873 50487 0.4120 +25873 50613 0.5990 +25873 50814 0.5400 +25873 51018 0.5200 +25873 51042 0.9040 +25873 51065 0.9870 +25873 51068 0.9430 +25873 51069 0.9280 +25873 51073 0.9530 +25873 51081 0.9460 +25873 51116 0.8870 +25873 51121 0.9980 +25873 51149 0.9800 +25873 51154 0.9560 +25873 51187 0.9920 +25873 51319 0.9710 +25873 51388 0.9060 +25873 51398 0.5640 +25873 51574 0.5520 +25873 51690 0.5200 +25873 51720 0.4220 +25873 53918 0.8620 +25873 54463 0.4720 +25873 54464 0.4620 +25873 54475 0.4380 +25873 54499 0.8170 +25873 54552 0.7660 +25873 54663 0.8490 +25873 54802 0.4100 +25873 54865 0.5210 +25873 54881 0.7210 +25873 54888 0.4430 +25873 54948 0.7530 +25873 55139 0.4460 +25873 55153 0.5150 +25873 55173 0.9780 +25873 55272 0.9670 +25873 55299 0.9490 +25873 55316 0.9780 +25873 55319 0.8010 +25873 55341 0.9030 +25873 55505 0.4050 +25873 55591 0.4690 +25873 55607 0.4260 +25873 55629 0.5040 +25873 55646 0.8070 +25873 55651 0.8610 +25873 55695 0.4640 +25873 55759 0.9340 +25873 55802 0.5310 +25873 55854 0.6170 +25873 55893 0.4260 +25873 55969 0.4330 +25873 56479 0.5260 +25873 56648 0.8260 +25873 56731 0.4240 +25873 56893 0.6130 +25873 56926 0.8200 +25873 57003 0.8160 +25873 57418 0.7170 +25873 57532 0.7290 +25873 57696 0.5520 +25873 58477 0.8440 +25873 58505 0.5190 +25873 60559 0.4330 +25873 60678 0.9050 +25873 63899 0.4580 +25873 63931 0.9430 +25873 64221 0.5090 +25873 64318 0.8640 +25873 64374 0.7570 +25873 64960 0.9530 +25873 64963 0.9480 +25873 64965 0.4320 +25873 64969 0.9560 +25873 64979 0.5570 +25873 64981 0.4610 +25873 65003 0.9170 +25873 65008 0.9460 +25873 65121 0.6830 +25873 65122 0.6830 +25873 65993 0.6010 +25873 79002 0.6880 +25873 79009 0.4030 +25873 79039 0.4570 +25873 79048 0.8040 +25873 79137 0.4430 +25873 79159 0.5010 +25873 79590 0.9490 +25873 79631 0.7640 +25873 79707 0.5040 +25873 79730 0.4220 +25873 80135 0.8670 +25873 80146 0.5370 +25873 80218 0.4970 +25873 80270 0.5370 +25873 80349 0.4760 +25873 81887 0.5070 +25873 83479 0.4170 +25873 84154 0.6320 +25873 84273 0.4440 +25873 84298 0.8010 +25873 84365 0.8980 +25873 84549 0.8480 +25873 84993 0.6310 +25873 85476 0.7640 +25873 90441 0.8960 +25873 90459 0.4080 +25873 90701 0.4990 +25873 91408 0.4770 +25873 91875 0.8030 +25873 92170 0.4160 +25873 92196 0.8080 +25873 93107 0.5260 +25873 93517 0.5370 +25873 93550 0.6670 +25873 93974 0.6100 +25873 114987 0.9480 +25873 115098 0.8830 +25873 116832 0.9830 +25873 117246 0.9440 +25873 124454 0.8370 +25873 126402 0.9420 +25873 137994 0.4350 +25873 140032 0.9380 +25873 140801 0.9960 +25873 140823 0.4420 +25873 143244 0.8260 +25873 143630 0.5990 +25873 146212 0.7850 +25873 147011 0.4120 +25873 154288 0.4120 +25873 162427 0.4370 +25873 164153 0.6490 +25873 169522 0.5260 +25873 170850 0.5260 +25873 200916 0.9760 +25873 201595 0.7940 +25873 203068 0.8130 +25873 221078 0.7640 +25873 254268 0.9530 +25873 283518 0.5260 +25873 285855 0.9820 +25873 342538 0.8860 +25873 343068 0.6830 +25873 343070 0.6830 +25873 347487 0.9730 +25873 387129 0.9330 +25873 387338 0.4910 +25873 390999 0.6830 +25873 391002 0.6830 +25873 400735 0.6830 +25873 400736 0.6830 +25873 440560 0.6830 +25873 440561 0.6830 +25873 441873 0.6830 +25873 619279 0.4120 +25873 641776 0.7740 +25873 642489 0.4510 +25873 642987 0.4120 +25873 643909 0.7740 +25873 645051 0.7850 +25873 645073 0.7850 +25873 645359 0.6830 +25873 653619 0.6830 +25873 728524 0.7740 +25873 729396 0.7850 +25873 729422 0.7850 +25873 729428 0.7850 +25873 729431 0.7850 +25873 729442 0.7850 +25873 729447 0.7850 +25873 729528 0.6830 +25873 100008586 0.7850 +25873 100128731 0.5690 +25873 100132399 0.7850 +25873 100287482 0.8530 +25873 100505478 0.9250 +25873 100526842 0.9950 +25873 100527943 0.4290 +25873 100529097 0.9550 +25873 100529239 0.9950 +25873 100996746 0.7740 +25873 101929983 0.6830 +25873 102724473 0.7850 +25873 105180390 0.7740 +25873 105180391 0.7740 +25874 51660 0.9990 +25874 55967 0.4510 +25874 83548 0.4010 +25874 93058 0.4120 +25874 347411 0.8840 +25874 440574 0.4150 +25875 51035 0.4150 +25875 55716 0.4300 +25875 57492 0.4350 +25875 79726 0.4950 +25875 84759 0.4520 +25875 89781 0.4360 +25875 91445 0.4110 +25875 388611 0.4200 +25876 54498 0.4510 +25876 54768 0.5210 +25876 55815 0.5460 +25876 65997 0.4340 +25876 79582 0.4790 +25876 79925 0.6440 +25876 114327 0.4870 +25876 118491 0.5850 +25876 122046 0.4130 +25876 132851 0.4460 +25876 163081 0.4480 +25876 283629 0.4310 +25876 284013 0.4600 +25876 100130311 0.4060 +25878 25903 0.4840 +25878 84624 0.6340 +25878 115908 0.4190 +25879 25885 0.6010 +25879 25926 0.9680 +25879 25983 0.9980 +25879 26094 0.9220 +25879 26133 0.9000 +25879 26155 0.8440 +25879 26156 0.9850 +25879 26168 0.6580 +25879 26354 0.7510 +25879 26574 0.9980 +25879 27042 0.8970 +25879 27043 0.5390 +25879 27292 0.9650 +25879 27340 0.9980 +25879 27341 0.9910 +25879 28952 0.5060 +25879 28987 0.8570 +25879 28991 0.6520 +25879 28998 0.5610 +25879 29099 0.5130 +25879 29777 0.4060 +25879 29889 0.9090 +25879 29997 0.6170 +25879 30836 0.9920 +25879 50717 0.9040 +25879 50813 0.4050 +25879 51010 0.8250 +25879 51013 0.7890 +25879 51018 0.4680 +25879 51065 0.8770 +25879 51068 0.5710 +25879 51073 0.5420 +25879 51077 0.9970 +25879 51081 0.7230 +25879 51082 0.7490 +25879 51096 0.9980 +25879 51106 0.5260 +25879 51118 0.9980 +25879 51122 0.5280 +25879 51138 0.4760 +25879 51149 0.7870 +25879 51154 0.8390 +25879 51184 0.4160 +25879 51185 0.9000 +25879 51187 0.7050 +25879 51202 0.9340 +25879 51236 0.4640 +25879 51319 0.5060 +25879 51388 0.8380 +25879 51397 0.5170 +25879 51406 0.8120 +25879 51490 0.4240 +25879 51514 0.9080 +25879 51575 0.8530 +25879 51602 0.9980 +25879 51649 0.4990 +25879 54165 0.5200 +25879 54461 0.9350 +25879 54475 0.7510 +25879 54512 0.8500 +25879 54517 0.4370 +25879 54552 0.6070 +25879 54555 0.8780 +25879 54606 0.7630 +25879 54663 0.4680 +25879 54876 0.9000 +25879 54881 0.7510 +25879 54939 0.5550 +25879 54951 0.5550 +25879 55003 0.8280 +25879 55070 0.9000 +25879 55127 0.9970 +25879 55131 0.8960 +25879 55140 0.4090 +25879 55153 0.7650 +25879 55208 0.5070 +25879 55226 0.9930 +25879 55272 0.9950 +25879 55299 0.9160 +25879 55319 0.6220 +25879 55341 0.6380 +25879 55626 0.9010 +25879 55651 0.6540 +25879 55656 0.4020 +25879 55720 0.6900 +25879 55759 0.8980 +25879 55760 0.4940 +25879 55781 0.4940 +25879 55813 0.9980 +25879 55827 0.9140 +25879 55832 0.5510 +25879 56902 0.9520 +25879 56915 0.8080 +25879 57050 0.9980 +25879 57062 0.4210 +25879 57418 0.7750 +25879 57647 0.9710 +25879 60487 0.6950 +25879 64118 0.6730 +25879 64216 0.7570 +25879 64318 0.6620 +25879 64326 0.9010 +25879 64425 0.5620 +25879 64434 0.6970 +25879 64708 0.4160 +25879 64794 0.6330 +25879 64960 0.6490 +25879 64963 0.6520 +25879 64969 0.4120 +25879 65083 0.9950 +25879 79016 0.9160 +25879 79039 0.5660 +25879 79050 0.9990 +25879 79159 0.5880 +25879 79269 0.9080 +25879 79571 0.7090 +25879 79707 0.5730 +25879 79753 0.4590 +25879 79954 0.9970 +25879 80067 0.9050 +25879 80135 0.8160 +25879 80344 0.9270 +25879 81034 0.5680 +25879 81887 0.5670 +25879 83732 0.5250 +25879 83743 0.8970 +25879 83940 0.4320 +25879 84128 0.9980 +25879 84135 0.9970 +25879 84146 0.4020 +25879 84154 0.8740 +25879 84259 0.5760 +25879 84292 0.4560 +25879 84294 0.8900 +25879 84365 0.8180 +25879 84549 0.7480 +25879 84916 0.9990 +25879 84946 0.7680 +25879 84950 0.6000 +25879 84955 0.4810 +25879 87178 0.4420 +25879 88745 0.6370 +25879 90121 0.5050 +25879 90379 0.9080 +25879 90381 0.4280 +25879 91582 0.8110 +25879 92856 0.9980 +25879 116966 0.7150 +25879 117246 0.9070 +25879 118460 0.7530 +25879 126402 0.6310 +25879 128061 0.8710 +25879 138009 0.5450 +25879 139170 0.5400 +25879 139425 0.5400 +25879 140032 0.6180 +25879 148753 0.4800 +25879 149951 0.5080 +25879 150684 0.5070 +25879 153443 0.5210 +25879 157753 0.4310 +25879 161424 0.7130 +25879 165545 0.4940 +25879 170622 0.5080 +25879 221078 0.6320 +25879 221830 0.6120 +25879 285429 0.5450 +25879 317649 0.4460 +25879 340578 0.5400 +25879 345630 0.9280 +25879 347442 0.5400 +25879 641776 0.4530 +25879 643909 0.4530 +25879 728524 0.4530 +25879 100996746 0.4530 +25879 105180390 0.4530 +25879 105180391 0.4530 +25879 114483834 0.4490 +25880 25915 0.7410 +25880 28976 0.8850 +25880 29035 0.5140 +25880 29078 0.7460 +25880 51079 0.5770 +25880 51103 0.9340 +25880 51295 0.9610 +25880 51300 0.8300 +25880 54539 0.5770 +25880 54968 0.6920 +25880 55101 0.7290 +25880 55260 0.4910 +25880 55471 0.7140 +25880 55572 0.6590 +25880 55625 0.4440 +25880 55744 0.7940 +25880 55863 0.9490 +25880 55954 0.4960 +25880 55967 0.5990 +25880 63894 0.4490 +25880 65117 0.4540 +25880 66008 0.4050 +25880 79064 0.4210 +25880 79091 0.4560 +25880 79133 0.6840 +25880 79177 0.4560 +25880 79760 0.4360 +25880 79853 0.4200 +25880 80775 0.4880 +25880 84955 0.4420 +25880 90871 0.4570 +25880 91304 0.5130 +25880 91647 0.4290 +25880 91942 0.6550 +25880 126328 0.5660 +25880 137682 0.7570 +25880 374291 0.5990 +25880 400506 0.4070 +25880 729515 0.4610 +25880 100303755 0.4050 +25884 50964 0.4620 +25884 54994 0.4450 +25884 56884 0.4540 +25884 57045 0.8200 +25884 64388 0.4300 +25884 64795 0.4590 +25884 143570 0.4180 +25884 168667 0.4910 +25884 206338 0.7990 +25884 220001 0.4130 +25885 25926 0.4160 +25885 25973 0.4430 +25885 25983 0.4090 +25885 26155 0.9110 +25885 26156 0.6990 +25885 26289 0.4360 +25885 26354 0.8320 +25885 26574 0.6090 +25885 26953 0.6160 +25885 26995 0.5450 +25885 27000 0.4440 +25885 27037 0.4230 +25885 27292 0.4820 +25885 27297 0.9020 +25885 27340 0.9600 +25885 28987 0.8150 +25885 28998 0.5280 +25885 29088 0.5380 +25885 29093 0.8500 +25885 29113 0.4610 +25885 29789 0.4610 +25885 29889 0.6920 +25885 29927 0.7850 +25885 29997 0.6350 +25885 30000 0.4680 +25885 30834 0.9990 +25885 50808 0.4410 +25885 51018 0.4210 +25885 51021 0.7220 +25885 51068 0.6900 +25885 51069 0.8210 +25885 51073 0.7920 +25885 51081 0.7960 +25885 51082 0.9990 +25885 51096 0.8330 +25885 51116 0.6320 +25885 51121 0.8290 +25885 51149 0.5180 +25885 51154 0.9300 +25885 51184 0.7020 +25885 51187 0.5490 +25885 51202 0.4240 +25885 51264 0.6550 +25885 51388 0.7120 +25885 51520 0.5370 +25885 51547 0.7380 +25885 51575 0.8190 +25885 51602 0.8570 +25885 51654 0.4880 +25885 51727 0.5220 +25885 51728 0.7730 +25885 51808 0.6520 +25885 54145 0.4680 +25885 54433 0.9100 +25885 54475 0.7310 +25885 54514 0.4490 +25885 54517 0.5740 +25885 54552 0.8310 +25885 54606 0.6310 +25885 54617 0.5060 +25885 54700 0.9990 +25885 54888 0.4530 +25885 54948 0.7370 +25885 54995 0.4500 +25885 55003 0.5650 +25885 55011 0.7990 +25885 55027 0.4500 +25885 55052 0.6060 +25885 55127 0.9380 +25885 55131 0.7380 +25885 55143 0.4780 +25885 55153 0.8600 +25885 55170 0.4150 +25885 55173 0.7730 +25885 55176 0.7830 +25885 55226 0.9640 +25885 55272 0.8840 +25885 55290 0.5770 +25885 55299 0.7230 +25885 55316 0.7140 +25885 55341 0.6470 +25885 55591 0.4530 +25885 55621 0.4240 +25885 55622 0.6910 +25885 55646 0.4280 +25885 55651 0.6370 +25885 55699 0.4890 +25885 55703 0.9900 +25885 55718 0.9150 +25885 55720 0.8860 +25885 55759 0.5160 +25885 55760 0.7080 +25885 55766 0.4330 +25885 55813 0.6940 +25885 55814 0.5680 +25885 56341 0.4110 +25885 56342 0.5750 +25885 56474 0.7680 +25885 56919 0.4460 +25885 56931 0.4580 +25885 56937 0.4110 +25885 56965 0.4530 +25885 57038 0.6980 +25885 57050 0.7450 +25885 57062 0.4620 +25885 57136 0.5740 +25885 57176 0.4840 +25885 57470 0.5350 +25885 57505 0.5160 +25885 57510 0.5020 +25885 57634 0.4120 +25885 57647 0.5240 +25885 57696 0.4630 +25885 60528 0.4540 +25885 60625 0.4160 +25885 63875 0.9360 +25885 63892 0.4660 +25885 63931 0.7160 +25885 64118 0.4240 +25885 64216 0.4410 +25885 64318 0.7810 +25885 64374 0.7400 +25885 64425 0.9990 +25885 64434 0.6770 +25885 64794 0.6190 +25885 64960 0.5200 +25885 64963 0.8040 +25885 64965 0.6900 +25885 64968 0.6720 +25885 64969 0.8910 +25885 64979 0.5380 +25885 64983 0.5910 +25885 65003 0.6510 +25885 65005 0.7260 +25885 65008 0.7470 +25885 65080 0.4330 +25885 65083 0.9380 +25885 65121 0.5380 +25885 65122 0.5380 +25885 79039 0.7880 +25885 79050 0.6130 +25885 79101 0.7040 +25885 79590 0.8280 +25885 79631 0.7420 +25885 79657 0.8230 +25885 79668 0.4530 +25885 79711 0.8770 +25885 79954 0.7060 +25885 79968 0.5500 +25885 79979 0.4280 +25885 80324 0.4550 +25885 81570 0.4340 +25885 81572 0.4930 +25885 81627 0.4130 +25885 81691 0.4050 +25885 83448 0.4310 +25885 83480 0.5040 +25885 83743 0.8580 +25885 84128 0.8580 +25885 84135 0.4570 +25885 84154 0.9170 +25885 84172 0.9990 +25885 84232 0.5590 +25885 84265 0.5940 +25885 84893 0.4440 +25885 84916 0.8790 +25885 84946 0.4150 +25885 85236 0.4680 +25885 85476 0.7440 +25885 87178 0.7190 +25885 90353 0.4050 +25885 90826 0.4090 +25885 91875 0.7170 +25885 92399 0.4310 +25885 92856 0.4100 +25885 93974 0.4490 +25885 94239 0.4460 +25885 116143 0.4800 +25885 116966 0.6770 +25885 117246 0.6420 +25885 122481 0.4400 +25885 124454 0.4140 +25885 126402 0.7950 +25885 126789 0.4530 +25885 127428 0.5250 +25885 128312 0.4680 +25885 133396 0.4490 +25885 140801 0.7370 +25885 142940 0.5500 +25885 146212 0.4410 +25885 158067 0.4400 +25885 161424 0.4900 +25885 165545 0.7050 +25885 170082 0.5030 +25885 171568 0.9360 +25885 219927 0.6110 +25885 221078 0.8300 +25885 221264 0.5040 +25885 221830 0.9990 +25885 255308 0.4470 +25885 255626 0.4760 +25885 257218 0.4830 +25885 284119 0.5450 +25885 285855 0.7940 +25885 343068 0.5380 +25885 343070 0.5380 +25885 345630 0.7240 +25885 347487 0.6280 +25885 387129 0.7580 +25885 387338 0.4820 +25885 390999 0.5380 +25885 391002 0.5380 +25885 400735 0.5380 +25885 400736 0.5380 +25885 404672 0.5440 +25885 440560 0.5380 +25885 440561 0.5380 +25885 441873 0.5380 +25885 474382 0.4330 +25885 641776 0.6700 +25885 643909 0.6700 +25885 645359 0.5380 +25885 653604 0.5210 +25885 653619 0.5380 +25885 653689 0.5220 +25885 692312 0.5480 +25885 728524 0.6700 +25885 729528 0.5380 +25885 100287482 0.6280 +25885 100505478 0.7580 +25885 100526842 0.8490 +25885 100996746 0.6700 +25885 101929983 0.5380 +25885 105180390 0.6700 +25885 105180391 0.6700 +25885 114483834 0.6490 +25886 27156 0.4400 +25886 29089 0.4770 +25886 30827 0.5370 +25886 54903 0.4510 +25886 55125 0.4410 +25886 55143 0.5500 +25886 55330 0.4790 +25886 55355 0.4580 +25886 55723 0.4950 +25886 55835 0.5450 +25886 56672 0.4660 +25886 56992 0.4130 +25886 64151 0.4750 +25886 64374 0.5600 +25886 65243 0.4140 +25886 79605 0.4040 +25886 80335 0.5390 +25886 80817 0.5770 +25886 81620 0.4730 +25886 83540 0.4080 +25886 84057 0.4530 +25886 84984 0.4470 +25886 85459 0.5270 +25886 113130 0.7960 +25886 116840 0.4440 +25886 134359 0.5090 +25886 144535 0.4110 +25886 150468 0.6330 +25886 152185 0.4470 +25886 153241 0.5010 +25886 157313 0.4520 +25886 163786 0.5380 +25886 220042 0.4520 +25886 221150 0.5290 +25886 261734 0.4650 +25886 282809 0.8230 +25886 286053 0.4430 +25886 387103 0.7380 +25886 440956 0.4940 +25888 51692 0.4470 +25888 53981 0.4490 +25888 56948 0.4140 +25888 79577 0.4030 +25888 80153 0.6180 +25888 84967 0.9150 +25888 90933 0.4590 +25888 122740 0.4180 +25888 126375 0.4750 +25888 134353 0.9530 +25888 219437 0.4140 +25888 390437 0.4490 +25890 51225 0.9980 +25890 55092 0.4340 +25890 64343 0.4090 +25890 91056 0.4510 +25890 137682 0.4240 +25890 151887 0.4280 +25890 256691 0.4270 +25890 283298 0.4060 +25891 28986 0.4320 +25891 55631 0.4010 +25891 64236 0.4140 +25891 79729 0.4120 +25891 80013 0.4140 +25891 113444 0.4570 +25891 146310 0.4330 +25891 149345 0.4280 +25891 285343 0.4020 +25891 286133 0.5290 +25893 27151 0.5030 +25893 29766 0.4330 +25893 30012 0.4140 +25893 50613 0.5310 +25893 50852 0.4200 +25893 51327 0.5250 +25893 51629 0.4160 +25893 53346 0.5610 +25893 54855 0.5900 +25893 54865 0.6110 +25893 55363 0.4730 +25893 116151 0.4660 +25893 343171 0.7670 +25893 343172 0.6660 +25894 26030 0.5010 +25894 26999 0.4160 +25894 28964 0.4110 +25894 29978 0.4970 +25894 50855 0.4520 +25894 51347 0.4180 +25894 55775 0.4630 +25894 55789 0.4170 +25894 55971 0.4010 +25894 56893 0.5520 +25894 56924 0.4130 +25894 57144 0.4130 +25894 81624 0.4190 +25894 81839 0.4200 +25894 84991 0.4930 +25894 128239 0.4320 +25894 143098 0.4080 +25894 146057 0.5060 +25894 146212 0.5880 +25894 146227 0.7880 +25894 389170 0.4130 +25894 644150 0.4310 +25895 51093 0.4740 +25895 51101 0.5060 +25895 51603 0.5010 +25895 79823 0.4120 +25895 92342 0.6000 +25895 92979 0.4080 +25895 149281 0.4100 +25895 221143 0.6850 +25895 254013 0.6460 +25895 399818 0.6630 +25895 751071 0.5380 +25895 110599564 0.5130 +25896 25920 0.8680 +25896 26173 0.9990 +25896 26512 0.9990 +25896 29101 0.4950 +25896 51497 0.8110 +25896 51514 0.4320 +25896 51585 0.4460 +25896 51692 0.5240 +25896 53981 0.5140 +25896 54973 0.9980 +25896 55174 0.9880 +25896 55511 0.6030 +25896 55656 0.9990 +25896 55726 0.9790 +25896 55756 0.9950 +25896 57117 0.9750 +25896 57508 0.9980 +25896 64838 0.4140 +25896 64859 0.5100 +25896 65123 0.9990 +25896 79034 0.9380 +25896 79035 0.6590 +25896 79871 0.4840 +25896 80789 0.9990 +25896 81556 0.9110 +25896 81932 0.4010 +25896 84947 0.4010 +25896 92105 0.9960 +25896 203522 0.6850 +25896 441519 0.6030 +25896 441521 0.6030 +25896 541465 0.6030 +25896 541466 0.6030 +25896 728911 0.6030 +25896 101060211 0.6030 +25896 102723631 0.6030 +25896 102723680 0.6030 +25896 102723737 0.6030 +25897 27338 0.5620 +25897 54963 0.6950 +25897 55308 0.4250 +25897 80173 0.4880 +25897 204801 0.8020 +25897 401934 0.4110 +25898 28996 0.4090 +25898 51390 0.6780 +25898 55167 0.4880 +25898 55544 0.5070 +25898 55793 0.4310 +25898 57410 0.8910 +25898 57646 0.4610 +25898 63891 0.4460 +25898 64326 0.6390 +25898 83737 0.4440 +25898 84105 0.4080 +25898 84959 0.4710 +25898 92344 0.9740 +25898 131474 0.4060 +25898 136991 0.4730 +25898 140893 0.4490 +25898 221302 0.4030 +25898 255488 0.5990 +25900 51561 0.5350 +25900 79840 0.5670 +25900 79858 0.4140 +25900 84260 0.4590 +25900 92979 0.4500 +25902 26227 0.7430 +25902 27328 0.4070 +25902 29958 0.6880 +25902 29968 0.7740 +25902 51314 0.5540 +25902 51585 0.4090 +25902 55005 0.4970 +25902 55063 0.4500 +25902 57480 0.4850 +25902 57621 0.4550 +25902 64577 0.4340 +25902 64779 0.6930 +25902 79624 0.4100 +25902 80129 0.4480 +25902 81034 0.6820 +25902 84172 0.4260 +25902 84722 0.4830 +25902 92935 0.5340 +25902 113235 0.5270 +25902 123041 0.4210 +25902 123263 0.7840 +25902 158471 0.4220 +25902 160428 0.7580 +25902 200895 0.9680 +25902 375056 0.4460 +25902 399888 0.4450 +25902 441024 0.9880 +25903 26092 0.4300 +25903 64222 0.4490 +25903 89866 0.4270 +25903 115908 0.4280 +25903 163589 0.4240 +25903 388335 0.4380 +25903 400793 0.4620 +25904 26986 0.5240 +25904 27327 0.7180 +25904 28976 0.4070 +25904 29066 0.4060 +25904 29883 0.9990 +25904 50488 0.4300 +25904 51077 0.6300 +25904 51406 0.6110 +25904 51434 0.4530 +25904 54464 0.4660 +25904 54915 0.4080 +25904 54967 0.5580 +25904 55280 0.4260 +25904 55571 0.9990 +25904 55768 0.4140 +25904 56157 0.6910 +25904 56478 0.4370 +25904 57472 0.9990 +25904 60313 0.4360 +25904 63906 0.4500 +25904 64419 0.5550 +25904 79009 0.4450 +25904 79089 0.4740 +25904 79591 0.5550 +25904 79596 0.7780 +25904 79882 0.4640 +25904 80153 0.4600 +25904 83607 0.5520 +25904 84923 0.7790 +25904 84950 0.5980 +25904 85456 0.9900 +25904 91949 0.4220 +25904 92105 0.4860 +25904 93624 0.6490 +25904 112616 0.4350 +25904 115795 0.5910 +25904 124801 0.4470 +25904 126402 0.4020 +25904 133957 0.7190 +25904 149041 0.7330 +25904 158787 0.6820 +25904 167227 0.4060 +25904 200014 0.4010 +25904 246175 0.9980 +25904 339345 0.7550 +25904 340719 0.6090 +25904 390748 0.4700 +25906 26271 0.9520 +25906 27338 0.9880 +25906 29882 0.9980 +25906 29945 0.9990 +25906 51053 0.4110 +25906 51239 0.5450 +25906 51343 0.9760 +25906 51433 0.9990 +25906 51434 0.9940 +25906 51529 0.9910 +25906 51691 0.4140 +25906 54880 0.9000 +25906 55611 0.4260 +25906 57332 0.9000 +25906 57587 0.5190 +25906 64682 0.9940 +25906 79004 0.4310 +25906 79184 0.9030 +25906 79813 0.5090 +25906 80012 0.9000 +25906 81620 0.4190 +25906 84108 0.9000 +25906 84333 0.5400 +25906 84733 0.9000 +25906 84759 0.5520 +25906 119504 0.9990 +25906 140459 0.5490 +25906 157769 0.4720 +25906 166979 0.5810 +25906 246184 0.9990 +25906 389362 0.4600 +25907 25966 0.4690 +25907 26022 0.4220 +25907 28978 0.4080 +25907 55076 0.5880 +25907 55706 0.4080 +25907 80723 0.4540 +25907 84650 0.4580 +25907 92162 0.4190 +25907 115939 0.4570 +25909 27436 0.5110 +25909 53371 0.9610 +25909 54865 0.4100 +25909 55161 0.5690 +25909 55706 0.9450 +25909 55746 0.9990 +25909 57122 0.9990 +25909 57727 0.6100 +25909 78994 0.5200 +25909 79023 0.9990 +25909 79902 0.9950 +25909 80709 0.4300 +25909 81929 0.9980 +25909 84823 0.4830 +25909 129401 0.9910 +25909 133121 0.4410 +25909 140836 0.5900 +25909 143689 0.4460 +25909 147841 0.4420 +25909 154007 0.4540 +25909 157313 0.4150 +25909 348995 0.9980 +25909 729857 0.8000 +25909 100101267 0.6660 +25911 25914 0.4990 +25911 27148 0.6130 +25911 27343 0.4990 +25911 51233 0.4330 +25911 55582 0.4790 +25911 79657 0.4890 +25911 89891 0.4030 +25911 116143 0.7340 +25911 122481 0.5980 +25911 139425 0.4300 +25911 158067 0.4230 +25911 168507 0.4610 +25912 27243 0.6580 +25912 51699 0.5460 +25912 54544 0.6570 +25912 56851 0.8250 +25912 84162 0.5610 +25912 93621 0.5420 +25912 338324 0.5810 +25912 388701 0.5500 +25912 401993 0.4470 +25913 26277 0.9990 +25913 27127 0.5110 +25913 50511 0.4990 +25913 51473 0.6170 +25913 51750 0.7290 +25913 54145 0.4990 +25913 54386 0.9990 +25913 54433 0.7950 +25913 54921 0.5040 +25913 54984 0.6470 +25913 55135 0.7420 +25913 55247 0.5170 +25913 55291 0.4560 +25913 55322 0.4630 +25913 55505 0.8150 +25913 55651 0.7730 +25913 55766 0.4990 +25913 56158 0.4990 +25913 57804 0.4990 +25913 63922 0.4990 +25913 64858 0.9040 +25913 79075 0.5130 +25913 79991 0.8760 +25913 80119 0.5720 +25913 80169 0.9390 +25913 81627 0.4630 +25913 85236 0.4990 +25913 93426 0.4990 +25913 94137 0.5420 +25913 94239 0.5100 +25913 128312 0.4990 +25913 149069 0.6850 +25913 255626 0.4990 +25913 256126 0.4990 +25913 283847 0.4700 +25913 389493 0.8680 +25913 440689 0.8000 +25913 474382 0.4990 +25913 642489 0.4930 +25913 644186 0.4990 +25913 728597 0.6850 +25913 100134934 0.7920 +25914 27130 0.6090 +25914 28514 0.4870 +25914 29980 0.4730 +25914 30837 0.5300 +25914 54495 0.4390 +25914 55125 0.7070 +25914 55780 0.4170 +25914 55835 0.6180 +25914 64793 0.5880 +25914 79598 0.4710 +25914 79839 0.6080 +25914 79867 0.4870 +25914 79959 0.5100 +25914 80067 0.4510 +25914 80817 0.5130 +25914 84902 0.4690 +25914 85459 0.6550 +25914 91133 0.4640 +25914 116840 0.5240 +25914 134359 0.6710 +25914 135138 0.4880 +25914 145508 0.4620 +25914 152185 0.6030 +25914 153241 0.6690 +25914 163786 0.5680 +25914 220164 0.5200 +25914 221908 0.7360 +25914 259266 0.5150 +25914 282809 0.6310 +25914 282991 0.4980 +25914 283643 0.4060 +25914 284403 0.6530 +25914 375686 0.4400 +25915 27109 0.4340 +25915 27238 0.9100 +25915 28976 0.9980 +25915 29078 0.9990 +25915 51079 0.9990 +25915 51103 0.9990 +25915 51295 0.9980 +25915 51300 0.9990 +25915 54539 0.9230 +25915 54623 0.5160 +25915 54675 0.5490 +25915 54968 0.6440 +25915 55101 0.4100 +25915 55152 0.5730 +25915 55471 0.7320 +25915 55572 0.8200 +25915 55744 0.5770 +25915 55863 0.9060 +25915 55967 0.8920 +25915 56901 0.4880 +25915 63891 0.4930 +25915 64981 0.4220 +25915 79068 0.5110 +25915 79133 0.9990 +25915 79728 0.5050 +25915 80020 0.6290 +25915 80224 0.7930 +25915 84939 0.4640 +25915 90353 0.7250 +25915 91942 0.9650 +25915 126328 0.9290 +25915 137682 0.9050 +25915 139221 0.4610 +25915 150274 0.4570 +25915 284184 0.6070 +25915 374291 0.9990 +25915 728317 0.4610 +25915 100131801 0.4810 +25915 100532726 0.5330 +25917 26027 0.4950 +25917 29081 0.6290 +25917 51095 0.4200 +25917 51504 0.8200 +25917 51605 0.5030 +25917 55153 0.4530 +25917 55173 0.4430 +25917 55209 0.7320 +25917 55239 0.4540 +25917 55246 0.4590 +25917 55341 0.6340 +25917 55623 0.4680 +25917 55781 0.5210 +25917 56945 0.5370 +25917 57570 0.4520 +25917 57721 0.4660 +25917 60487 0.5220 +25917 60560 0.6230 +25917 79074 0.4500 +25917 79954 0.5770 +25917 80746 0.5550 +25917 84294 0.4370 +25917 84881 0.4050 +25917 90957 0.4260 +25917 92399 0.4630 +25917 94239 0.4060 +25917 113251 0.4520 +25917 115560 0.4260 +25917 115795 0.4180 +25917 123169 0.5300 +25917 150962 0.4060 +25917 285367 0.4720 +25917 286097 0.6200 +25917 375323 0.5840 +25917 375612 0.4870 +25920 26173 0.9070 +25920 26205 0.5630 +25920 26512 0.9080 +25920 26610 0.9010 +25920 26747 0.7230 +25920 27125 0.9190 +25920 51224 0.5260 +25920 51343 0.5630 +25920 51497 0.9990 +25920 51720 0.4330 +25920 51755 0.6190 +25920 54623 0.9040 +25920 54973 0.9360 +25920 55215 0.5030 +25920 55250 0.7200 +25920 55656 0.8500 +25920 55684 0.4320 +25920 55756 0.9360 +25920 55840 0.9000 +25920 57179 0.4760 +25920 57508 0.8380 +25920 59348 0.5030 +25920 64131 0.6100 +25920 65123 0.4740 +25920 79184 0.4330 +25920 79577 0.9470 +25920 79664 0.9040 +25920 80237 0.9280 +25920 80349 0.9080 +25920 80789 0.8610 +25920 84142 0.4540 +25920 84337 0.5480 +25920 84524 0.9180 +25920 85403 0.9000 +25920 89970 0.4910 +25920 90850 0.4070 +25920 92105 0.8620 +25920 92305 0.4510 +25920 123169 0.9460 +25920 221496 0.4510 +25920 404672 0.4990 +25921 29801 0.4640 +25921 51104 0.4330 +25921 51114 0.4870 +25921 51125 0.9960 +25921 51201 0.5900 +25921 51304 0.7200 +25921 51552 0.4040 +25921 54503 0.4590 +25921 55621 0.4290 +25921 55625 0.5370 +25921 56650 0.8320 +25921 57720 0.5260 +25921 58515 0.4100 +25921 64429 0.4230 +25921 79844 0.5920 +25921 80331 0.4150 +25921 80852 0.5760 +25921 81926 0.5270 +25921 84287 0.5640 +25921 117246 0.4530 +25921 253832 0.6000 +25921 283576 0.5790 +25921 340481 0.4100 +25921 401647 0.9120 +25923 26580 0.5050 +25923 29927 0.4060 +25923 51062 0.4800 +25923 51308 0.6640 +25923 51324 0.4200 +25923 51368 0.7890 +25923 54463 0.8140 +25923 54875 0.6020 +25923 55669 0.4220 +25923 57132 0.7520 +25923 57142 0.8260 +25923 57488 0.4900 +25923 57658 0.5630 +25923 64225 0.6170 +25923 64976 0.4610 +25923 65055 0.9510 +25923 80117 0.4150 +25923 80208 0.4100 +25923 80346 0.7330 +25923 80856 0.5510 +25923 92840 0.4670 +25923 118813 0.6220 +25923 123606 0.5190 +25923 126129 0.4220 +25923 128486 0.4920 +25923 132112 0.4910 +25923 221035 0.5050 +25923 344892 0.4910 +25924 29091 0.4600 +25924 51291 0.4300 +25924 54536 0.5060 +25924 54843 0.6610 +25924 55763 0.4020 +25924 57863 0.4260 +25924 60412 0.9260 +25924 84958 0.9030 +25924 201294 0.5290 +25924 253559 0.4460 +25924 376267 0.4420 +25925 25937 0.5190 +25925 51222 0.8430 +25925 51534 0.5460 +25925 54753 0.4280 +25925 57060 0.6380 +25925 57593 0.4130 +25925 85406 0.4760 +25925 85509 0.8380 +25925 116840 0.4520 +25925 125997 0.6170 +25925 147463 0.4050 +25925 253738 0.4680 +25925 284309 0.4080 +25925 388536 0.4110 +25926 25983 0.8590 +25926 26168 0.5290 +25926 26574 0.8110 +25926 27042 0.8050 +25926 27043 0.5840 +25926 27079 0.4110 +25926 27292 0.8320 +25926 27340 0.9790 +25926 27341 0.9080 +25926 30836 0.8660 +25926 51001 0.4560 +25926 51010 0.5830 +25926 51013 0.5000 +25926 51065 0.4130 +25926 51077 0.9640 +25926 51096 0.9370 +25926 51118 0.9670 +25926 51202 0.8840 +25926 51388 0.6080 +25926 51406 0.9280 +25926 51602 0.9530 +25926 51651 0.4170 +25926 54512 0.5410 +25926 54555 0.8360 +25926 54700 0.5060 +25926 54840 0.4850 +25926 54881 0.5520 +25926 55127 0.9830 +25926 55131 0.4810 +25926 55226 0.8840 +25926 55272 0.9100 +25926 55299 0.5070 +25926 55622 0.4100 +25926 55759 0.7800 +25926 55781 0.4460 +25926 55813 0.9570 +25926 56647 0.4240 +25926 56902 0.8310 +25926 56915 0.6370 +25926 56945 0.4540 +25926 57050 0.9680 +25926 57122 0.4740 +25926 57418 0.5570 +25926 57647 0.9600 +25926 58478 0.5320 +25926 64318 0.5060 +25926 65083 0.9190 +25926 79050 0.9680 +25926 79159 0.4050 +25926 79707 0.5490 +25926 79915 0.4270 +25926 79954 0.8500 +25926 81887 0.5320 +25926 84128 0.9920 +25926 84135 0.9860 +25926 84365 0.7150 +25926 84549 0.4690 +25926 84916 0.9990 +25926 88745 0.5340 +25926 91582 0.8110 +25926 92856 0.9180 +25926 117246 0.5590 +25926 118460 0.4610 +25926 128061 0.8270 +25927 57406 0.4790 +25927 65982 0.4120 +25927 84251 0.4330 +25927 84916 0.4100 +25927 85406 0.4590 +25927 92400 0.4390 +25927 123355 0.4200 +25927 221955 0.5550 +25927 284805 0.6000 +25927 554251 0.4560 +25928 26585 0.4310 +25928 27121 0.6870 +25928 64388 0.5450 +25928 199699 0.4770 +25929 25983 0.4290 +25929 29099 0.4610 +25929 50628 0.9990 +25929 51574 0.4240 +25929 51691 0.4330 +25929 51808 0.8470 +25929 53371 0.4900 +25929 53981 0.4100 +25929 54039 0.4040 +25929 54433 0.6780 +25929 54464 0.6310 +25929 54517 0.5450 +25929 54960 0.9960 +25929 55127 0.4730 +25929 55421 0.5250 +25929 55596 0.4470 +25929 55599 0.4810 +25929 55706 0.5120 +25929 55746 0.5780 +25929 57122 0.4120 +25929 57819 0.4050 +25929 60487 0.4190 +25929 64318 0.4060 +25929 64506 0.4810 +25929 64794 0.4200 +25929 79023 0.4960 +25929 79084 0.7000 +25929 79707 0.4240 +25929 79760 0.9970 +25929 79833 0.9990 +25929 79902 0.4550 +25929 80153 0.4550 +25929 81929 0.4690 +25929 84967 0.6110 +25929 90381 0.4080 +25929 96764 0.7150 +25929 113802 0.4280 +25929 114034 0.4880 +25929 129401 0.5750 +25929 131405 0.4520 +25929 134353 0.4440 +25929 148252 0.4470 +25929 167227 0.4750 +25929 192669 0.4360 +25929 192670 0.4340 +25929 219988 0.5040 +25929 221092 0.4950 +25929 284131 0.4970 +25929 348995 0.4520 +25929 100101267 0.4320 +25930 26095 0.5350 +25930 26469 0.5060 +25930 27154 0.5470 +25930 27178 0.4990 +25930 27183 0.6460 +25930 27243 0.5010 +25930 51028 0.5320 +25930 51160 0.6220 +25930 51271 0.9960 +25930 51510 0.5070 +25930 51534 0.5150 +25930 51652 0.5580 +25930 54863 0.4750 +25930 55048 0.4510 +25930 55165 0.4100 +25930 55738 0.4450 +25930 57132 0.4510 +25930 57559 0.4320 +25930 57666 0.4320 +25930 58506 0.7250 +25930 64319 0.4660 +25930 79643 0.5890 +25930 79654 0.4320 +25930 79719 0.4490 +25930 79720 0.4090 +25930 84313 0.5180 +25930 84867 0.5710 +25930 84936 0.4290 +25930 92421 0.7010 +25930 93343 0.5310 +25930 114822 0.4120 +25930 128866 0.9940 +25930 133482 0.4120 +25930 137492 0.5280 +25930 219988 0.4460 +25930 353274 0.4600 +25930 100101267 0.5150 +25930 100526767 0.5340 +25932 53405 0.8570 +25932 54102 0.8010 +25932 80012 0.6820 +25932 286262 0.8710 +25934 55335 0.5090 +25934 56888 0.5760 +25934 64779 0.5900 +25934 84135 0.4060 +25934 84376 0.4150 +25934 84869 0.4260 +25934 121599 0.9340 +25934 138799 0.4700 +25934 138802 0.4140 +25934 286362 0.5670 +25934 392376 0.5820 +25936 26269 0.5950 +25936 26355 0.5830 +25936 27436 0.5110 +25936 49860 0.4470 +25936 54938 0.4750 +25936 55916 0.6620 +25936 56942 0.8760 +25936 56943 0.5900 +25936 57001 0.4120 +25936 57082 0.9990 +25936 57405 0.9520 +25936 79003 0.9990 +25936 79980 0.9990 +25936 83540 0.9760 +25936 133482 0.4530 +25936 147841 0.9770 +25936 151648 0.6420 +25936 158835 0.7260 +25936 283489 0.4430 +25936 493753 0.4530 +25936 100527963 0.9660 +25937 26524 0.9890 +25937 27063 0.4980 +25937 51122 0.4100 +25937 51421 0.8460 +25937 51442 0.8040 +25937 51586 0.4720 +25937 54778 0.5130 +25937 55233 0.8330 +25937 55749 0.4550 +25937 55844 0.9030 +25937 57551 0.4220 +25937 57561 0.5290 +25937 57591 0.4880 +25937 60436 0.5310 +25937 60485 0.8950 +25937 64750 0.5800 +25937 80114 0.5080 +25937 91754 0.4070 +25937 92597 0.7900 +25937 122786 0.6540 +25937 154796 0.9950 +25937 154810 0.8790 +25937 169792 0.7630 +25937 203286 0.4550 +25937 245806 0.7580 +25937 284086 0.4150 +25937 389136 0.8210 +25937 389161 0.4540 +25938 55293 0.4590 +25938 55676 0.4710 +25938 112487 0.6300 +25938 143884 0.4170 +25938 170370 0.4630 +25938 221458 0.6040 +25938 654502 0.4610 +25939 27350 0.4340 +25939 29110 0.4200 +25939 30835 0.4240 +25939 50852 0.4860 +25939 50856 0.4880 +25939 51191 0.5280 +25939 51257 0.4780 +25939 51284 0.4240 +25939 51311 0.4140 +25939 51447 0.4990 +25939 51816 0.4200 +25939 54739 0.6300 +25939 55008 0.4050 +25939 56829 0.5440 +25939 57506 0.4530 +25939 60489 0.8780 +25939 64135 0.6750 +25939 79132 0.4280 +25939 79621 0.9500 +25939 80830 0.4890 +25939 81669 0.7790 +25939 83666 0.4540 +25939 83932 0.5100 +25939 84153 0.9640 +25939 85363 0.8890 +25939 91543 0.7730 +25939 91607 0.5520 +25939 115004 0.6640 +25939 115362 0.4510 +25939 120892 0.5390 +25939 140564 0.4920 +25939 164668 0.4650 +25939 200315 0.6180 +25939 200316 0.5710 +25939 219285 0.4560 +25939 256987 0.6690 +25939 340061 0.5320 +25939 345611 0.4590 +25939 387733 0.4320 +25940 26135 0.4540 +25940 28987 0.4230 +25940 29127 0.4290 +25940 51493 0.8950 +25940 51593 0.4040 +25940 51637 0.9850 +25940 51647 0.4400 +25940 51655 0.4530 +25940 54849 0.4380 +25940 54984 0.4040 +25940 57532 0.9160 +25940 79074 0.8250 +25940 81565 0.5920 +25940 84331 0.4410 +25940 90957 0.5260 +25940 124801 0.6760 +25940 147965 0.5550 +25940 170506 0.6770 +25940 221092 0.6700 +25940 283373 0.4330 +25940 283742 0.6870 +25940 339487 0.5580 +25941 27013 0.4390 +25941 29086 0.4040 +25941 54482 0.5490 +25941 54839 0.9710 +25941 55322 0.5740 +25941 55776 0.5840 +25941 55916 0.4070 +25941 57536 0.7170 +25941 79096 0.8540 +25941 84276 0.9710 +25941 91369 0.4120 +25941 91978 0.9490 +25942 26009 0.5060 +25942 26523 0.4710 +25942 26959 0.9640 +25942 27327 0.4130 +25942 29072 0.4800 +25942 29115 0.6470 +25942 30827 0.4330 +25942 51004 0.4140 +25942 51085 0.4810 +25942 51132 0.6980 +25942 51147 0.4880 +25942 51230 0.7200 +25942 51274 0.6130 +25942 51341 0.7240 +25942 51564 0.5940 +25942 51567 0.4030 +25942 51621 0.7450 +25942 51742 0.9970 +25942 51780 0.4420 +25942 53335 0.7410 +25942 53615 0.5390 +25942 54145 0.5450 +25942 54531 0.4620 +25942 54556 0.9220 +25942 54790 0.6670 +25942 54815 0.6300 +25942 54856 0.5040 +25942 54971 0.5240 +25942 55170 0.7730 +25942 55249 0.4070 +25942 55294 0.4220 +25942 55596 0.4670 +25942 55636 0.5280 +25942 55766 0.5360 +25942 55869 0.9490 +25942 55904 0.7920 +25942 55957 0.5460 +25942 56254 0.5090 +25942 56946 0.7700 +25942 56950 0.5460 +25942 56987 0.4890 +25942 57459 0.7200 +25942 57504 0.5000 +25942 57532 0.4060 +25942 57649 0.9980 +25942 57659 0.6940 +25942 57680 0.5110 +25942 57708 0.4210 +25942 57798 0.4940 +25942 58508 0.6390 +25942 58516 0.9900 +25942 60436 0.5650 +25942 64324 0.4020 +25942 64426 0.9990 +25942 79142 0.7900 +25942 79595 0.9240 +25942 79685 0.9940 +25942 79718 0.7060 +25942 79723 0.4610 +25942 79800 0.4220 +25942 79813 0.4040 +25942 79885 0.8220 +25942 79923 0.7550 +25942 80205 0.5690 +25942 80232 0.5640 +25942 80312 0.9590 +25942 80319 0.5200 +25942 80320 0.6710 +25942 81669 0.6240 +25942 83463 0.7410 +25942 83855 0.8650 +25942 83933 0.5410 +25942 84148 0.5460 +25942 84289 0.4690 +25942 84312 0.9860 +25942 84619 0.4080 +25942 84629 0.5140 +25942 84661 0.6180 +25942 84678 0.6950 +25942 84733 0.4100 +25942 84823 0.4490 +25942 84942 0.4960 +25942 85236 0.5460 +25942 85441 0.5370 +25942 90316 0.5290 +25942 90665 0.4210 +25942 91746 0.4090 +25942 91748 0.4120 +25942 94239 0.5350 +25942 96764 0.5440 +25942 117154 0.4270 +25942 128312 0.5450 +25942 133482 0.4810 +25942 136259 0.6130 +25942 144811 0.6140 +25942 148479 0.6320 +25942 161882 0.6120 +25942 192669 0.4620 +25942 192670 0.4390 +25942 200424 0.8600 +25942 201161 0.4020 +25942 221937 0.9460 +25942 255626 0.5490 +25942 255877 0.5850 +25942 257236 0.4040 +25942 283248 0.4220 +25942 286826 0.4380 +25942 440093 0.5790 +25942 440686 0.5770 +25942 474382 0.5360 +25942 619279 0.6800 +25942 653604 0.7860 +25942 728294 0.4350 +25942 100316904 0.7310 +25942 105378952 0.4640 +25943 55296 0.6160 +25943 57337 0.4950 +25943 64446 0.4450 +25943 79819 0.4060 +25943 83657 0.4130 +25943 83658 0.4400 +25943 84630 0.4720 +25943 112942 0.4840 +25943 126820 0.4940 +25943 140735 0.4340 +25943 144132 0.4420 +25943 146057 0.5650 +25945 26232 0.6000 +25945 29880 0.5300 +25945 51176 0.4070 +25945 51248 0.4980 +25945 51554 0.6880 +25945 51678 0.7180 +25945 51763 0.4080 +25945 56288 0.9450 +25945 56605 0.6210 +25945 57619 0.7130 +25945 57863 0.9350 +25945 59283 0.4060 +25945 79037 0.6700 +25945 81607 0.9240 +25945 83700 0.6280 +25945 114836 0.4160 +25945 129303 0.4080 +25945 144100 0.5310 +25945 201633 0.9990 +25945 440051 0.4910 +25946 28996 0.4300 +25946 51741 0.4350 +25946 57060 0.5750 +25946 57805 0.4780 +25946 83444 0.4500 +25946 152330 0.4240 +25946 285362 0.5230 +25948 29974 0.4440 +25948 51307 0.4090 +25948 64326 0.4650 +25948 91056 0.4640 +25948 124045 0.4470 +25948 284612 0.5070 +25949 25980 0.5010 +25949 26017 0.9770 +25949 26121 0.4350 +25949 27238 0.4050 +25949 27339 0.9990 +25949 29896 0.5160 +25949 50804 0.6760 +25949 51340 0.9990 +25949 51362 0.9990 +25949 51428 0.8070 +25949 51503 0.9980 +25949 51593 0.8060 +25949 51634 0.9190 +25949 51639 0.6200 +25949 51645 0.9980 +25949 51759 0.8810 +25949 53938 0.8750 +25949 54883 0.9660 +25949 55094 0.7560 +25949 55100 0.8040 +25949 55110 0.8070 +25949 55192 0.6640 +25949 55216 0.4820 +25949 55219 0.4960 +25949 55280 0.8540 +25949 55599 0.4290 +25949 55696 0.9990 +25949 55702 0.9940 +25949 56259 0.7240 +25949 56919 0.6070 +25949 56949 0.9990 +25949 57035 0.5880 +25949 57461 0.9960 +25949 57703 0.9950 +25949 58509 0.9610 +25949 60625 0.8890 +25949 63932 0.8070 +25949 65109 0.8170 +25949 79101 0.4320 +25949 79165 0.8250 +25949 79446 0.8900 +25949 79576 0.9590 +25949 79631 0.6600 +25949 79650 0.7130 +25949 79706 0.9630 +25949 79753 0.7970 +25949 80011 0.8040 +25949 80331 0.4830 +25949 81576 0.7870 +25949 83443 0.8020 +25949 83938 0.6150 +25949 84292 0.7580 +25949 84316 0.5320 +25949 84811 0.8330 +25949 84844 0.6520 +25949 84950 0.5690 +25949 84967 0.4510 +25949 85313 0.5700 +25949 85476 0.6600 +25949 85479 0.4550 +25949 92400 0.4540 +25949 124245 0.4880 +25949 126259 0.5320 +25949 128308 0.4920 +25949 143884 0.9880 +25949 144983 0.4330 +25949 147650 0.5330 +25949 151903 0.9400 +25949 154007 0.6920 +25949 163859 0.9630 +25949 164045 0.6630 +25949 199746 0.5510 +25949 220074 0.6150 +25949 222183 0.8160 +25949 285755 0.5740 +25949 390748 0.4600 +25949 100534599 0.9900 +25950 29843 0.5420 +25950 100527978 0.4620 +25953 28958 0.4700 +25953 29058 0.4400 +25953 51031 0.4600 +25953 51179 0.4070 +25953 51241 0.4320 +25953 54059 0.4370 +25953 54363 0.4070 +25953 55145 0.5980 +25953 55515 0.8900 +25953 55825 0.4240 +25953 63982 0.4750 +25953 80775 0.4520 +25953 84656 0.4400 +25953 84842 0.4240 +25953 112476 0.9630 +25953 153364 0.4200 +25953 340146 0.4420 +25953 388753 0.4230 +25953 100130890 0.4400 +25953 100131187 0.4400 +25953 100131801 0.9020 +25953 100303755 0.9130 +25956 29927 0.4270 +25956 51014 0.5400 +25956 51128 0.9760 +25956 55176 0.4310 +25956 56681 0.9770 +25956 59349 0.6840 +25956 89866 0.6370 +25956 553115 0.6980 +25957 26118 0.4380 +25957 26235 0.5250 +25957 27332 0.4450 +25957 29896 0.4500 +25957 51230 0.4190 +25957 51306 0.4220 +25957 51319 0.4090 +25957 51329 0.4250 +25957 51742 0.5810 +25957 51747 0.9990 +25957 51805 0.4580 +25957 54482 0.4180 +25957 55015 0.8490 +25957 55082 0.7790 +25957 55119 0.4390 +25957 55193 0.5150 +25957 55599 0.4950 +25957 55751 0.4350 +25957 55904 0.4580 +25957 57035 0.4780 +25957 57396 0.5400 +25957 58517 0.7130 +25957 79012 0.4340 +25957 84553 0.5700 +25957 85015 0.6120 +25957 114803 0.6230 +25957 114823 0.4140 +25957 140890 0.7710 +25957 151613 0.7360 +25957 196441 0.7260 +25959 29086 0.4450 +25959 29965 0.4090 +25959 51196 0.4330 +25959 51451 0.4780 +25959 54518 0.5190 +25959 55605 0.9610 +25959 55802 0.5310 +25959 57537 0.4150 +25959 57572 0.4460 +25959 64285 0.4450 +25959 64423 0.4750 +25959 65110 0.4270 +25959 79937 0.4240 +25959 83478 0.5250 +25959 83660 0.6570 +25959 147841 0.6650 +25959 163782 0.5030 +25959 196513 0.5140 +25959 221937 0.4180 +25959 283899 0.4280 +25960 50618 0.6850 +25960 57124 0.6210 +25960 57125 0.6700 +25960 80139 0.4550 +25960 84059 0.4290 +25960 84168 0.4300 +25960 84879 0.4460 +25960 120892 0.7390 +25960 147495 0.4130 +25960 219699 0.4780 +25960 221393 0.4920 +25960 266977 0.6060 +25961 26268 0.4470 +25961 27075 0.4240 +25961 29903 0.5390 +25961 30833 0.5870 +25961 51020 0.7920 +25961 51447 0.4380 +25961 55191 0.8220 +25961 55209 0.4300 +25961 55213 0.4740 +25961 55270 0.5960 +25961 55313 0.4620 +25961 55854 0.4970 +25961 65993 0.4710 +25961 81932 0.4990 +25961 84922 0.4980 +25961 89970 0.5560 +25961 131601 0.4630 +25961 137682 0.4290 +25961 140838 0.5030 +25961 200035 0.4150 +25961 246243 0.8090 +25961 254552 0.5850 +25961 283927 0.6190 +25961 285605 0.5010 +25961 340390 0.4290 +25961 390916 0.5110 +25961 390928 0.4620 +25962 26135 0.5210 +25962 26986 0.4170 +25962 27125 0.4910 +25962 27316 0.7940 +25962 29028 0.4780 +25962 29063 0.8730 +25962 29072 0.4310 +25962 29081 0.8950 +25962 29890 0.9990 +25962 29896 0.5500 +25962 29974 0.5510 +25962 51340 0.4140 +25962 51361 0.5220 +25962 51366 0.5250 +25962 51441 0.8930 +25962 51504 0.4820 +25962 51603 0.7670 +25962 51605 0.4020 +25962 51676 0.4190 +25962 54439 0.4460 +25962 54464 0.4390 +25962 54487 0.4240 +25962 54888 0.5060 +25962 54890 0.8940 +25962 54915 0.8980 +25962 55006 0.4290 +25962 55777 0.4300 +25962 55870 0.4450 +25962 56254 0.5180 +25962 56339 0.9990 +25962 57148 0.5250 +25962 57187 0.6210 +25962 57721 0.9990 +25962 59272 0.4120 +25962 63935 0.4930 +25962 64761 0.4420 +25962 64783 0.9990 +25962 64848 0.9120 +25962 64863 0.9420 +25962 79066 0.9970 +25962 79068 0.8820 +25962 79598 0.5220 +25962 79730 0.4750 +25962 79830 0.4440 +25962 79872 0.9990 +25962 84750 0.4040 +25962 91746 0.9110 +25962 93587 0.5540 +25962 124245 0.4370 +25962 149708 0.4080 +25962 157680 0.4160 +25962 157769 0.4360 +25962 158506 0.7380 +25962 221120 0.5840 +25962 253943 0.9490 +25962 253959 0.4690 +25962 254048 0.4410 +25962 399979 0.4300 +25963 51009 0.4100 +25963 51030 0.4430 +25963 55174 0.4050 +25963 55596 0.4610 +25963 55831 0.4110 +25963 57720 0.4970 +25963 65992 0.4130 +25963 83862 0.4020 +25963 84317 0.4170 +25963 117532 0.4070 +25963 146705 0.5080 +25963 221786 0.4120 +25963 338657 0.4790 +25963 399947 0.4480 +25963 441027 0.4250 +25966 49854 0.6700 +25966 63977 0.4960 +25966 79658 0.8070 +25966 79707 0.4520 +25966 83941 0.5080 +25966 92181 0.4150 +25966 123591 0.4050 +25966 162494 0.4220 +25966 390980 0.5050 +25970 26471 0.4230 +25970 51086 0.5450 +25970 51141 0.4030 +25970 51277 0.5150 +25970 54814 0.5510 +25970 54958 0.5170 +25970 55911 0.5760 +25970 57507 0.4470 +25970 64377 0.4470 +25970 79047 0.9170 +25970 79068 0.8680 +25970 79874 0.5650 +25970 83985 0.4900 +25970 84901 0.4380 +25970 89866 0.7700 +25970 112609 0.4680 +25970 112869 0.5270 +25970 127018 0.4380 +25970 129787 0.9060 +25970 132789 0.9030 +25970 134359 0.5080 +25970 144233 0.5980 +25970 158038 0.4470 +25970 196074 0.4300 +25970 219402 0.5070 +25970 253559 0.4320 +25970 253980 0.4040 +25970 257194 0.8870 +25970 338557 0.6120 +25970 100526835 0.5310 +25972 26229 0.4020 +25972 27333 0.4210 +25972 51005 0.4050 +25972 51009 0.4200 +25972 54495 0.6810 +25972 55858 0.5540 +25972 60491 0.5650 +25972 79139 0.4290 +25972 79608 0.8570 +25972 80146 0.4710 +25972 80213 0.4910 +25972 80235 0.4730 +25972 81614 0.4710 +25972 81876 0.4260 +25972 83941 0.5010 +25972 84272 0.4050 +25972 84447 0.4990 +25972 84720 0.4470 +25972 90407 0.4020 +25972 126123 0.4470 +25972 347734 0.4110 +25972 375743 0.5440 +25972 643853 0.4320 +25972 100526693 0.4560 +25973 26284 0.4360 +25973 27068 0.5410 +25973 28998 0.8400 +25973 29960 0.6110 +25973 51058 0.5270 +25973 51067 0.9320 +25973 51095 0.4880 +25973 51167 0.5470 +25973 51360 0.4410 +25973 51493 0.4880 +25973 51520 0.9740 +25973 51805 0.4230 +25973 54148 0.4250 +25973 54516 0.4780 +25973 54938 0.8570 +25973 54965 0.4240 +25973 55157 0.8720 +25973 55278 0.5450 +25973 55699 0.9900 +25973 55703 0.4250 +25973 55750 0.4730 +25973 56474 0.5470 +25973 56945 0.4120 +25973 57038 0.9530 +25973 57136 0.4120 +25973 57176 0.9070 +25973 57470 0.4940 +25973 57505 0.8860 +25973 57570 0.5040 +25973 64963 0.4150 +25973 79587 0.9090 +25973 79731 0.9090 +25973 79947 0.6270 +25973 80222 0.8890 +25973 84340 0.4610 +25973 84464 0.5810 +25973 84947 0.4770 +25973 85476 0.5650 +25973 87178 0.5050 +25973 90353 0.4710 +25973 91574 0.4730 +25973 91875 0.5430 +25973 91893 0.5280 +25973 92399 0.5620 +25973 92935 0.9320 +25973 93974 0.4550 +25973 94086 0.5330 +25973 112849 0.4490 +25973 116150 0.6240 +25973 116832 0.5650 +25973 121642 0.4140 +25973 123263 0.5550 +25973 123283 0.8740 +25973 124454 0.9370 +25973 140831 0.5810 +25973 158584 0.4240 +25973 374395 0.4910 +25973 440275 0.5310 +25974 27249 0.9910 +25974 51077 0.4300 +25974 51293 0.6040 +25974 55788 0.9720 +25974 56922 0.4170 +25974 57215 0.5240 +25974 64087 0.4320 +25974 81494 0.6340 +25974 84693 0.6500 +25974 126661 0.5470 +25974 166785 0.9470 +25974 326625 0.9480 +25974 352999 0.4380 +25975 54960 0.5130 +25975 56474 0.4340 +25975 79822 0.4230 +25975 80258 0.4230 +25975 84447 0.5590 +25975 124401 0.4460 +25975 151827 0.4050 +25975 162494 0.4280 +25975 170082 0.6470 +25975 197335 0.4970 +25975 100131897 0.4230 +25976 28992 0.4690 +25976 54936 0.4900 +25976 54956 0.7350 +25976 55905 0.5200 +25976 56829 0.4370 +25976 56965 0.5820 +25976 57491 0.5750 +25976 64651 0.4450 +25976 79668 0.5270 +25976 80351 0.5430 +25976 83707 0.4210 +25976 115992 0.4220 +25977 26119 0.5060 +25977 26258 0.5000 +25977 27131 0.4990 +25977 29924 0.6670 +25977 29978 0.5130 +25977 50618 0.7870 +25977 51429 0.7030 +25977 54885 0.4990 +25977 55040 0.6820 +25977 55330 0.4990 +25977 55707 0.9250 +25977 56479 0.5400 +25977 58513 0.7440 +25977 80115 0.5400 +25977 81567 0.4990 +25977 83988 0.5460 +25977 84062 0.4990 +25977 84251 0.7400 +25977 85021 0.5040 +25977 115548 0.8510 +25977 118424 0.8810 +25977 122616 0.5400 +25977 126792 0.5940 +25977 130340 0.5430 +25977 150350 0.5980 +25977 286451 0.5030 +25977 388552 0.4990 +25978 27183 0.9860 +25978 27243 0.9870 +25978 29110 0.7270 +25978 29978 0.7750 +25978 51028 0.9390 +25978 51160 0.9490 +25978 51271 0.9390 +25978 51510 0.9040 +25978 51534 0.7900 +25978 51542 0.4250 +25978 51652 0.9960 +25978 51807 0.5720 +25978 54209 0.4790 +25978 54664 0.8020 +25978 55048 0.9360 +25978 55255 0.4610 +25978 55293 0.6330 +25978 55737 0.4560 +25978 57132 0.9940 +25978 57679 0.7890 +25978 79643 0.9780 +25978 79720 0.9500 +25978 79792 0.4640 +25978 79817 0.4430 +25978 79861 0.5940 +25978 80086 0.4990 +25978 80208 0.5910 +25978 81027 0.5250 +25978 81631 0.6860 +25978 84313 0.9610 +25978 84557 0.4780 +25978 84617 0.5210 +25978 84790 0.5940 +25978 89853 0.9230 +25978 91782 0.9730 +25978 92421 0.9310 +25978 93343 0.9310 +25978 112714 0.5550 +25978 113457 0.5480 +25978 128866 0.9890 +25978 137492 0.9470 +25978 140775 0.4550 +25978 149371 0.4160 +25978 155382 0.9310 +25978 197259 0.9070 +25978 200014 0.5430 +25978 200894 0.4210 +25978 203228 0.8480 +25978 221496 0.5400 +25978 260334 0.5170 +25978 347688 0.5210 +25978 347733 0.5170 +25978 389136 0.5010 +25978 390595 0.5400 +25978 400916 0.6450 +25978 440738 0.4270 +25978 100526767 0.9060 +25979 27349 0.4240 +25979 54363 0.4200 +25979 54995 0.4510 +25979 83693 0.4310 +25979 84188 0.4520 +25979 112812 0.4740 +25979 115817 0.5820 +25979 116238 0.5810 +25979 207063 0.4100 +25979 219743 0.5240 +25979 254528 0.5000 +25979 256302 0.5170 +25979 284273 0.4300 +25979 414149 0.4200 +25980 26121 0.5840 +25980 27102 0.4320 +25980 27339 0.5800 +25980 51340 0.4830 +25980 51759 0.6760 +25980 54753 0.4050 +25980 54957 0.6210 +25980 55011 0.5710 +25980 55622 0.7680 +25980 55651 0.4950 +25980 55696 0.4520 +25980 55837 0.9160 +25980 56949 0.5460 +25980 57456 0.4230 +25980 79631 0.4730 +25980 79657 0.5070 +25980 80153 0.5240 +25980 84065 0.4370 +25980 84138 0.5360 +25980 84305 0.4400 +25980 84514 0.4670 +25980 84950 0.5640 +25980 85476 0.5660 +25980 195827 0.4040 +25980 440275 0.4980 +25980 553115 0.4530 +25981 26074 0.4600 +25981 26256 0.5070 +25981 27019 0.8870 +25981 27130 0.4500 +25981 27285 0.4340 +25981 51314 0.8670 +25981 51364 0.5680 +25981 54558 0.5610 +25981 54763 0.5000 +25981 54768 0.5020 +25981 54919 0.5050 +25981 54970 0.4840 +25981 55036 0.6710 +25981 55130 0.5930 +25981 55259 0.7700 +25981 55567 0.9100 +25981 55779 0.7840 +25981 56154 0.4350 +25981 56159 0.4500 +25981 56171 0.9110 +25981 57728 0.5160 +25981 64446 0.9040 +25981 64518 0.4010 +25981 79819 0.8630 +25981 79846 0.7030 +25981 79925 0.6380 +25981 80217 0.7900 +25981 83450 0.4640 +25981 83544 0.7990 +25981 83658 0.4330 +25981 83893 0.6110 +25981 83894 0.7630 +25981 84071 0.6490 +25981 84074 0.7010 +25981 84229 0.4520 +25981 85452 0.4100 +25981 85478 0.7480 +25981 89765 0.6300 +25981 89876 0.6160 +25981 92749 0.6460 +25981 93233 0.9310 +25981 114327 0.4130 +25981 115948 0.5160 +25981 117144 0.5170 +25981 117155 0.5210 +25981 118491 0.9580 +25981 122481 0.5070 +25981 123872 0.6190 +25981 124404 0.4710 +25981 126820 0.8880 +25981 127602 0.9570 +25981 139212 0.4990 +25981 140732 0.5050 +25981 144132 0.6230 +25981 144406 0.6710 +25981 146754 0.9290 +25981 150483 0.5400 +25981 159686 0.4520 +25981 160762 0.4310 +25981 161582 0.4310 +25981 164395 0.5640 +25981 199223 0.6950 +25981 200162 0.4170 +25981 201625 0.9800 +25981 221421 0.5650 +25981 257236 0.4220 +25981 283417 0.6550 +25981 283629 0.5230 +25981 284680 0.4120 +25981 286464 0.5300 +25981 339829 0.6810 +25981 345895 0.6600 +25981 352909 0.5200 +25981 374407 0.4430 +25981 388389 0.6330 +25981 401024 0.6650 +25983 26065 0.4440 +25983 26155 0.8480 +25983 26156 0.9630 +25983 26354 0.7370 +25983 26574 0.9990 +25983 27042 0.9910 +25983 27292 0.6970 +25983 27340 0.9950 +25983 27341 0.9950 +25983 28987 0.8600 +25983 29777 0.9410 +25983 29889 0.8360 +25983 29997 0.8380 +25983 30834 0.4310 +25983 30836 0.9970 +25983 51010 0.5140 +25983 51013 0.5310 +25983 51018 0.8410 +25983 51042 0.6940 +25983 51068 0.6140 +25983 51073 0.5540 +25983 51077 0.9970 +25983 51081 0.6550 +25983 51082 0.6460 +25983 51096 0.9990 +25983 51106 0.4130 +25983 51118 0.9990 +25983 51149 0.8030 +25983 51154 0.7020 +25983 51187 0.8430 +25983 51202 0.9870 +25983 51236 0.6120 +25983 51319 0.5280 +25983 51382 0.4660 +25983 51388 0.7260 +25983 51406 0.8270 +25983 51490 0.5840 +25983 51538 0.5910 +25983 51575 0.9210 +25983 51602 0.9970 +25983 51605 0.7290 +25983 54475 0.6990 +25983 54505 0.4240 +25983 54552 0.7040 +25983 54555 0.8470 +25983 54606 0.7540 +25983 54663 0.6640 +25983 54680 0.4040 +25983 54853 0.4100 +25983 54865 0.6990 +25983 54881 0.4920 +25983 54931 0.4080 +25983 54984 0.6740 +25983 55003 0.6260 +25983 55027 0.4090 +25983 55127 0.9980 +25983 55131 0.8340 +25983 55140 0.5390 +25983 55153 0.8680 +25983 55226 0.9970 +25983 55272 0.9980 +25983 55299 0.8710 +25983 55319 0.5960 +25983 55341 0.7180 +25983 55622 0.6290 +25983 55646 0.8000 +25983 55651 0.7560 +25983 55718 0.4040 +25983 55720 0.7410 +25983 55759 0.7100 +25983 55760 0.5840 +25983 55781 0.7660 +25983 55794 0.9080 +25983 55813 0.9990 +25983 55854 0.4890 +25983 56342 0.6390 +25983 56478 0.7950 +25983 56647 0.5980 +25983 56902 0.9630 +25983 56903 0.6990 +25983 56919 0.6470 +25983 57050 0.9990 +25983 57062 0.7500 +25983 57109 0.4510 +25983 57418 0.6610 +25983 57521 0.7080 +25983 57647 0.6490 +25983 57696 0.5240 +25983 60487 0.6400 +25983 60625 0.6350 +25983 64118 0.5310 +25983 64216 0.6320 +25983 64223 0.4490 +25983 64318 0.5840 +25983 64425 0.6900 +25983 64434 0.9850 +25983 64506 0.9610 +25983 64745 0.4360 +25983 64794 0.7650 +25983 64895 0.6990 +25983 64960 0.6790 +25983 64963 0.6420 +25983 65083 0.9940 +25983 65095 0.8640 +25983 65258 0.4080 +25983 79009 0.4090 +25983 79039 0.6870 +25983 79050 0.9990 +25983 79159 0.5980 +25983 79571 0.7960 +25983 79665 0.5890 +25983 79954 0.9990 +25983 80135 0.8370 +25983 80315 0.6340 +25983 80336 0.4840 +25983 83480 0.6230 +25983 83732 0.5270 +25983 83743 0.7680 +25983 84128 0.9890 +25983 84135 0.9900 +25983 84154 0.8610 +25983 84172 0.4380 +25983 84186 0.4050 +25983 84294 0.9430 +25983 84319 0.4270 +25983 84365 0.8680 +25983 84450 0.4490 +25983 84549 0.8490 +25983 84916 0.9990 +25983 84946 0.8660 +25983 88745 0.7380 +25983 90121 0.8610 +25983 90381 0.4120 +25983 90441 0.4970 +25983 92345 0.4060 +25983 92856 0.9980 +25983 115708 0.4110 +25983 116966 0.6820 +25983 117246 0.8410 +25983 126402 0.6350 +25983 128061 0.8090 +25983 132864 0.6490 +25983 140032 0.6180 +25983 146212 0.4150 +25983 153443 0.5500 +25983 154197 0.7050 +25983 155368 0.5320 +25983 158234 0.4030 +25983 161424 0.4230 +25983 165545 0.5530 +25983 167153 0.8620 +25983 171568 0.5040 +25983 221078 0.6850 +25983 221830 0.7600 +25983 253260 0.4420 +25983 283106 0.5720 +25983 317781 0.4410 +25983 345630 0.9290 +25983 641776 0.4630 +25983 643909 0.4630 +25983 692312 0.6000 +25983 728524 0.4630 +25983 100996746 0.4630 +25983 105180390 0.4630 +25983 105180391 0.4630 +25984 29945 0.4540 +25984 51434 0.4610 +25984 51529 0.4370 +25984 54474 0.4280 +25984 64682 0.4360 +25984 125115 0.4830 +25984 147183 0.4680 +25984 162605 0.4470 +25984 192666 0.4230 +25984 246184 0.4610 +25984 342574 0.4570 +25984 353288 0.4630 +25984 390792 0.4720 +25987 26254 0.4450 +25987 54749 0.4100 +25987 54993 0.4860 +25987 55331 0.5420 +25987 57461 0.5240 +25987 84897 0.4410 +25987 114515518 0.5260 +25988 51409 0.4240 +25988 55508 0.4400 +25988 57216 0.4450 +25988 80764 0.5270 +25988 84967 0.6360 +25988 90321 0.7270 +25988 94039 0.4560 +25988 127428 0.4610 +25988 129685 0.7800 +25988 134353 0.4580 +25988 138151 0.5120 +25988 144455 0.4430 +25988 145258 0.9540 +25988 147965 0.4330 +25988 163087 0.4830 +25988 255252 0.7780 +25988 340784 0.7820 +25989 26100 0.6560 +25989 30849 0.7720 +25989 51030 0.4040 +25989 51684 0.9770 +25989 55054 0.7180 +25989 55062 0.6440 +25989 55102 0.6740 +25989 55316 0.6160 +25989 55626 0.4660 +25989 56905 0.4110 +25989 57060 0.4300 +25989 57184 0.5690 +25989 57521 0.5310 +25989 60673 0.7330 +25989 64422 0.8050 +25989 79065 0.7240 +25989 79748 0.4570 +25989 81631 0.5550 +25989 84557 0.5270 +25989 84936 0.5890 +25989 84938 0.6860 +25989 84971 0.7070 +25989 89849 0.7000 +25989 113026 0.4110 +25989 115201 0.6880 +25989 144100 0.4790 +25989 201158 0.4040 +25989 219621 0.4160 +25989 284040 0.4040 +25989 285973 0.6890 +25989 374654 0.5790 +25989 440738 0.6040 +25989 441925 0.5960 +25989 643246 0.5220 +25989 780776 0.4040 +25989 100533496 0.4040 +25992 26032 0.4630 +25992 79258 0.4100 +25992 151887 0.4170 +25994 27089 0.4270 +25994 28958 0.5400 +25994 51102 0.4580 +25994 51522 0.4660 +25994 54205 0.4830 +25994 54838 0.5080 +25994 56901 0.5620 +25994 64344 0.5170 +25994 79002 0.4030 +25994 83667 0.4180 +25994 84701 0.6430 +25994 84833 0.5570 +25994 84886 0.5680 +25994 84987 0.5370 +25994 120376 0.4550 +25994 125965 0.4330 +25994 126328 0.4200 +25994 140823 0.5890 +25994 283459 0.5600 +25994 388753 0.5920 +25994 440574 0.4980 +25994 790955 0.4190 +25994 100131801 0.4010 +25994 100303755 0.4670 +25998 26499 0.4790 +25998 27250 0.4750 +25998 51138 0.4130 +25998 55069 0.5070 +25998 55192 0.4420 +25998 55226 0.4220 +25998 55603 0.4300 +25998 79705 0.4490 +25998 79882 0.4250 +25998 80318 0.4140 +25998 83468 0.4290 +25998 84627 0.4520 +25998 122416 0.4590 +25998 134728 0.5340 +25998 138716 0.6770 +25998 286256 0.4400 +25999 29993 0.4500 +25999 54503 0.4720 +25999 55020 0.4320 +25999 64377 0.4620 +25999 79929 0.4130 +25999 84964 0.4030 +25999 199745 0.4070 +25999 201501 0.4450 +25999 245711 0.4450 +25999 283576 0.4690 +25999 340895 0.4690 +26000 27335 0.6460 +26000 51256 0.4090 +26000 54662 0.6260 +26000 55051 0.5790 +26000 55296 0.5170 +26000 55633 0.6170 +26000 56006 0.4680 +26000 57403 0.8260 +26000 57465 0.4220 +26000 57706 0.4110 +26000 79089 0.5340 +26000 81857 0.5360 +26000 85406 0.5110 +26000 93643 0.4360 +26000 114790 0.5030 +26000 128637 0.5290 +26000 161514 0.5130 +26000 200014 0.5300 +26000 201627 0.4690 +26000 100289187 0.4080 +26001 29089 0.4530 +26001 51146 0.4290 +26001 55284 0.4460 +26001 55799 0.4110 +26001 81847 0.4110 +26001 84861 0.4060 +26001 84937 0.4550 +26001 220441 0.5730 +26001 284521 0.4750 +26001 652968 0.5150 +26002 81615 0.4340 +26002 84525 0.4320 +26002 116843 0.4400 +26002 140809 0.4470 +26002 167410 0.4130 +26002 319100 0.7560 +26002 594855 0.5480 +26002 653361 0.4170 +26003 26984 0.6670 +26003 27333 0.4020 +26003 51014 0.8290 +26003 54442 0.4530 +26003 54732 0.5720 +26003 55234 0.8810 +26003 55676 0.5320 +26003 56681 0.4130 +26003 58494 0.8230 +26003 64083 0.6360 +26003 64689 0.7630 +26003 64746 0.5370 +26003 64924 0.4390 +26003 79012 0.4210 +26003 79571 0.5130 +26003 80279 0.4020 +26003 81876 0.7450 +26003 83452 0.4900 +26003 83548 0.4450 +26003 83700 0.8250 +26003 84251 0.4350 +26003 91703 0.4830 +26003 222068 0.7540 +26003 260425 0.4720 +26005 26123 0.6080 +26005 26160 0.5590 +26005 27077 0.5320 +26005 51098 0.4560 +26005 51134 0.7200 +26005 51199 0.5450 +26005 51259 0.5190 +26005 51524 0.5090 +26005 54806 0.4450 +26005 54903 0.4950 +26005 55722 0.4190 +26005 55841 0.5010 +26005 57545 0.5780 +26005 65062 0.4800 +26005 65250 0.6150 +26005 79583 0.5730 +26005 79598 0.4360 +26005 79600 0.4700 +26005 79809 0.4480 +26005 79848 0.4510 +26005 79867 0.4440 +26005 79959 0.4370 +26005 80014 0.4150 +26005 80184 0.4950 +26005 80323 0.5010 +26005 80776 0.4470 +26005 83479 0.4480 +26005 84902 0.7640 +26005 84984 0.4690 +26005 85302 0.6770 +26005 90060 0.5470 +26005 91147 0.5010 +26005 95681 0.4970 +26005 116840 0.4200 +26005 117177 0.5700 +26005 132320 0.7260 +26005 134359 0.4350 +26005 145508 0.5690 +26005 146057 0.5860 +26005 152185 0.5380 +26005 153241 0.7320 +26005 200894 0.6040 +26005 201255 0.4820 +26005 219844 0.5230 +26005 261734 0.5940 +26005 374654 0.4810 +26007 54474 0.4160 +26007 54941 0.5000 +26007 57506 0.6200 +26007 64135 0.9640 +26007 64777 0.4590 +26007 79671 0.5200 +26007 79944 0.6360 +26007 83862 0.4090 +26007 84076 0.4710 +26007 84282 0.5440 +26007 84320 0.4250 +26007 89122 0.5000 +26007 132158 0.9700 +26007 137872 0.4720 +26007 145226 0.5740 +26007 254122 0.4020 +26009 27097 0.8280 +26009 28513 0.4250 +26009 29915 0.4160 +26009 49854 0.4110 +26009 51182 0.4100 +26009 51562 0.9910 +26009 51616 0.7750 +26009 54107 0.8290 +26009 54680 0.5150 +26009 54906 0.4380 +26009 55578 0.8880 +26009 55677 0.6000 +26009 55689 0.9750 +26009 55832 0.4670 +26009 56655 0.7770 +26009 56943 0.7320 +26009 56970 0.7750 +26009 57325 0.9960 +26009 57507 0.4960 +26009 57708 0.4340 +26009 64682 0.4050 +26009 79595 0.4990 +26009 79664 0.4470 +26009 79882 0.4840 +26009 80018 0.4910 +26009 81573 0.4800 +26009 83443 0.6010 +26009 84128 0.4050 +26009 90806 0.4710 +26009 90874 0.4190 +26009 93624 0.9230 +26009 112869 0.9990 +26009 117143 0.7860 +26009 126961 0.9030 +26009 147912 0.6140 +26009 148156 0.4230 +26009 151112 0.4690 +26009 197131 0.7950 +26009 199692 0.4010 +26009 220082 0.5310 +26009 333932 0.9030 +26009 374354 0.5450 +26009 374986 0.4650 +26009 388284 0.4380 +26009 440093 0.9150 +26009 440686 0.9150 +26009 653604 0.9460 +26010 26050 0.4100 +26010 51191 0.4760 +26010 55001 0.4380 +26010 55008 0.4610 +26010 55092 0.4690 +26010 55601 0.5400 +26010 55784 0.4230 +26010 57699 0.4330 +26010 64108 0.6130 +26010 81553 0.4200 +26010 91543 0.5120 +26010 94240 0.5840 +26010 113263 0.4320 +26010 114134 0.4040 +26010 115207 0.4060 +26010 129450 0.4280 +26010 130535 0.5530 +26010 205327 0.4330 +26010 348751 0.4310 +26010 375190 0.4030 +26011 51112 0.5020 +26011 55351 0.4750 +26011 64478 0.5300 +26011 84894 0.4400 +26011 84960 0.4220 +26011 94026 0.4400 +26011 114784 0.4030 +26011 153769 0.4230 +26011 160851 0.4470 +26011 283219 0.4060 +26011 286183 0.5360 +26011 404037 0.4570 +26011 100131755 0.4490 +26012 54756 0.5930 +26012 55636 0.8470 +26012 55717 0.4240 +26012 60675 0.8670 +26012 81848 0.4480 +26012 84634 0.8730 +26012 128674 0.7380 +26012 389549 0.5560 +26013 26240 0.4180 +26013 51111 0.5600 +26013 51230 0.4550 +26013 51433 0.5000 +26013 51460 0.5290 +26013 51720 0.4040 +26013 55607 0.4170 +26013 56950 0.5690 +26013 64682 0.5690 +26013 78990 0.6310 +26013 79813 0.4960 +26013 80854 0.6350 +26013 84108 0.6450 +26013 84456 0.4080 +26013 84787 0.4910 +26013 121504 0.9050 +26013 136306 0.4410 +26013 143689 0.7000 +26013 165918 0.6160 +26013 254225 0.4170 +26013 266812 0.4650 +26013 387893 0.9460 +26013 554313 0.9050 +26013 100101490 0.4740 +26013 100532731 0.6360 +26015 51103 0.4610 +26015 51184 0.6930 +26015 53938 0.4580 +26015 54707 0.9580 +26015 57510 0.4680 +26015 60625 0.4780 +26015 65123 0.8290 +26015 79657 0.9310 +26015 79871 0.9320 +26015 80153 0.4410 +26015 80222 0.4520 +26015 81488 0.8740 +26015 84970 0.4260 +26015 283726 0.4750 +26015 548644 0.5170 +26017 27339 0.8270 +26017 51031 0.4860 +26017 51340 0.8580 +26017 51362 0.9720 +26017 51503 0.8370 +26017 51645 0.9580 +26017 54883 0.6190 +26017 55094 0.5040 +26017 55100 0.5910 +26017 55110 0.8330 +26017 55696 0.8090 +26017 55702 0.7660 +26017 55860 0.4360 +26017 56949 0.8060 +26017 57587 0.4270 +26017 57703 0.9980 +26017 58509 0.9180 +26017 60492 0.6070 +26017 60625 0.4990 +26017 65109 0.8000 +26017 79576 0.8770 +26017 79706 0.9300 +26017 80011 0.8670 +26017 83892 0.4310 +26017 84081 0.5000 +26017 92400 0.5500 +26017 143884 0.4990 +26017 153527 0.5070 +26017 160777 0.5200 +26017 163859 0.9110 +26017 199746 0.4990 +26017 339977 0.4520 +26018 28514 0.5470 +26018 30011 0.5430 +26018 55845 0.4300 +26018 57685 0.4050 +26018 63941 0.4250 +26018 64094 0.5360 +26018 79663 0.5880 +26018 84525 0.7440 +26018 84925 0.5400 +26018 92312 0.5050 +26018 121227 0.7990 +26018 162387 0.4170 +26018 255324 0.5010 +26018 284654 0.4920 +26018 338785 0.5950 +26018 349633 0.5840 +26018 100131755 0.4400 +26018 100532731 0.6970 +26019 26093 0.9030 +26019 26986 0.8580 +26019 27067 0.4270 +26019 27257 0.7200 +26019 29117 0.4300 +26019 29889 0.4370 +26019 51013 0.4610 +26019 51362 0.4590 +26019 51594 0.5070 +26019 53918 0.4640 +26019 54464 0.8770 +26019 54512 0.6000 +26019 55110 0.9460 +26019 55119 0.6310 +26019 55181 0.9830 +26019 55345 0.8300 +26019 55629 0.8270 +26019 55802 0.7540 +26019 56006 0.9790 +26019 57187 0.6600 +26019 57703 0.5490 +26019 64221 0.6750 +26019 65109 0.9990 +26019 65110 0.9990 +26019 79707 0.4520 +26019 79811 0.6500 +26019 80153 0.5830 +26019 80349 0.4480 +26019 81572 0.4070 +26019 84305 0.9510 +26019 90353 0.4160 +26019 92399 0.4950 +26019 93643 0.4210 +26019 118460 0.4660 +26019 129563 0.4860 +26019 167227 0.8890 +26019 196513 0.5300 +26020 26088 0.5390 +26020 27335 0.4300 +26020 29058 0.5990 +26020 84918 0.4340 +26020 93550 0.4550 +26020 148753 0.6680 +26020 221914 0.4550 +26020 375790 0.5830 +26022 51435 0.4390 +26022 55365 0.4960 +26022 55706 0.4170 +26022 64925 0.4060 +26022 83552 0.7240 +26022 92162 0.4120 +26022 200728 0.4050 +26022 220004 0.4140 +26022 441631 0.4980 +26022 646960 0.8100 +26024 26284 0.4400 +26024 26995 0.7950 +26024 27316 0.5000 +26024 28958 0.4940 +26024 28998 0.4540 +26024 51001 0.8040 +26024 51021 0.5300 +26024 51073 0.5770 +26024 51081 0.5310 +26024 51103 0.5310 +26024 51106 0.4750 +26024 51116 0.4210 +26024 51204 0.5100 +26024 51263 0.4100 +26024 51335 0.8600 +26024 54931 0.6730 +26024 54948 0.4240 +26024 55037 0.7250 +26024 55168 0.4570 +26024 55178 0.6900 +26024 55794 0.8370 +26024 56945 0.4490 +26024 57129 0.4930 +26024 57505 0.4610 +26024 60493 0.4500 +26024 60528 0.6160 +26024 63875 0.4660 +26024 64087 0.6350 +26024 64745 0.4440 +26024 64963 0.4770 +26024 64965 0.4740 +26024 64969 0.5680 +26024 65003 0.5620 +26024 65080 0.4450 +26024 79072 0.8550 +26024 79590 0.4130 +26024 79675 0.5050 +26024 79810 0.7610 +26024 79922 0.6530 +26024 81554 0.7330 +26024 81892 0.5160 +26024 84273 0.5050 +26024 84705 0.4100 +26024 84881 0.8510 +26024 85378 0.4470 +26024 85865 0.5160 +26024 87178 0.4580 +26024 92170 0.5220 +26024 92399 0.5670 +26024 114791 0.4320 +26024 115416 0.7000 +26024 126789 0.4150 +26024 130916 0.5560 +26024 219402 0.4950 +26024 283459 0.4440 +26024 285367 0.7630 +26024 387338 0.5370 +26024 440957 0.4020 +26025 56103 0.5770 +26025 56104 0.6430 +26025 56105 0.4930 +26025 56107 0.6930 +26025 56108 0.6780 +26025 56111 0.6980 +26025 154661 0.4470 +26025 223117 0.4790 +26027 27285 0.5270 +26027 27304 0.5880 +26027 51084 0.5170 +26027 54883 0.6860 +26027 54955 0.6440 +26027 55276 0.6460 +26027 55856 0.8270 +26027 56910 0.4320 +26027 57519 0.4890 +26027 57546 0.4150 +26027 58488 0.6130 +26027 80183 0.6420 +26027 80765 0.4790 +26027 83888 0.6100 +26027 117145 0.4040 +26027 122970 0.5260 +26027 128077 0.5580 +26027 132949 0.4510 +26027 133688 0.5330 +26027 134429 0.4470 +26027 134526 0.6840 +26027 146894 0.6120 +26027 147323 0.5010 +26027 167127 0.5330 +26027 167410 0.6420 +26027 284486 0.4960 +26027 641371 0.6800 +26027 641372 0.4360 +26030 26999 0.4930 +26030 28964 0.4050 +26030 50855 0.4140 +26030 51705 0.4180 +26030 54443 0.4710 +26030 55914 0.4240 +26030 55971 0.4050 +26030 56924 0.4130 +26030 57144 0.4030 +26030 124056 0.4020 +26030 143098 0.4160 +26030 144100 0.4080 +26030 145376 0.4410 +26030 147179 0.4040 +26030 402635 0.5120 +26030 653361 0.4130 +26031 26499 0.7260 +26031 54205 0.4090 +26031 54845 0.4010 +26031 55103 0.4560 +26031 55740 0.4250 +26031 56180 0.4370 +26031 57474 0.4540 +26031 64598 0.4250 +26031 80185 0.4310 +26031 83394 0.5640 +26031 84141 0.5030 +26031 91156 0.4080 +26031 92737 0.4110 +26031 114879 0.4130 +26031 114881 0.4860 +26031 114882 0.4310 +26031 114883 0.6300 +26031 114885 0.4060 +26031 494513 0.5130 +26032 80032 0.4040 +26032 80852 0.4370 +26032 83468 0.4520 +26032 83714 0.5360 +26032 165904 0.4750 +26032 284353 0.4140 +26033 114804 0.7670 +26033 157567 0.4350 +26033 100310846 0.4110 +26034 26230 0.5460 +26034 27128 0.7840 +26034 49861 0.5270 +26034 51106 0.4780 +26034 83714 0.4320 +26034 125704 0.4930 +26034 154043 0.7490 +26035 26229 0.6170 +26035 29940 0.4820 +26035 50515 0.4050 +26035 51000 0.5170 +26035 51363 0.4160 +26035 55454 0.5270 +26035 55501 0.5180 +26035 55790 0.4660 +26035 55959 0.5940 +26035 56548 0.5140 +26035 56980 0.4790 +26035 64131 0.5630 +26035 64132 0.5600 +26035 64579 0.6860 +26035 64711 0.6470 +26035 80781 0.4060 +26035 83460 0.4220 +26035 90161 0.6760 +26035 113189 0.4440 +26035 126792 0.4340 +26035 166012 0.4630 +26035 221914 0.6610 +26035 222537 0.6050 +26035 266722 0.6510 +26035 283149 0.4100 +26035 347734 0.4180 +26035 375790 0.6110 +26036 26054 0.4260 +26036 29843 0.4230 +26036 51018 0.4690 +26036 51567 0.7690 +26036 51588 0.4310 +26036 51720 0.4130 +26036 54778 0.4160 +26036 54826 0.4190 +26036 55153 0.6080 +26036 55668 0.7250 +26036 55775 0.4490 +26036 79605 0.4100 +26036 79664 0.4320 +26036 83932 0.4100 +26036 84417 0.4050 +26036 84450 0.5700 +26036 145482 0.4520 +26036 149076 0.5720 +26036 152518 0.4270 +26036 205564 0.4160 +26036 221336 0.7770 +26036 374354 0.4630 +26036 387082 0.6250 +26037 51454 0.4800 +26037 57568 0.6550 +26037 59353 0.4580 +26037 80728 0.4190 +26037 84445 0.8850 +26037 85358 0.8080 +26037 91010 0.4150 +26037 128338 0.4060 +26037 440730 0.5090 +26037 729830 0.5210 +26038 51222 0.8470 +26038 51742 0.4340 +26038 53615 0.8970 +26038 54815 0.9650 +26038 57459 0.9550 +26038 57504 0.8950 +26038 57697 0.4190 +26038 64919 0.6530 +26038 79913 0.4680 +26038 85509 0.7180 +26038 124944 0.4230 +26038 125997 0.5460 +26039 26164 0.4550 +26039 29117 0.6240 +26039 29998 0.5530 +26039 50674 0.5440 +26039 51412 0.9280 +26039 53335 0.5530 +26039 55193 0.5690 +26039 55274 0.7480 +26039 55280 0.4690 +26039 57492 0.7500 +26039 64919 0.5200 +26039 65980 0.6200 +26039 113878 0.7460 +26039 196528 0.5640 +26039 200014 0.4400 +26039 222546 0.8480 +26039 548313 0.8330 +26039 727837 0.7110 +26040 29072 0.6230 +26040 51060 0.4160 +26040 51734 0.5100 +26040 54790 0.7480 +26040 54904 0.6090 +26040 55500 0.6690 +26040 57190 0.5420 +26040 58515 0.5910 +26040 63035 0.6500 +26040 63976 0.7000 +26040 64324 0.6820 +26040 64648 0.5250 +26040 79142 0.5800 +26040 83642 0.6060 +26040 84295 0.7370 +26040 116986 0.5480 +26040 135927 0.5120 +26040 171023 0.8800 +26040 653361 0.4090 +26040 728712 0.5250 +26043 26190 0.5400 +26043 26523 0.4290 +26043 27107 0.4300 +26043 27161 0.4450 +26043 28952 0.5070 +26043 28991 0.5060 +26043 29072 0.4350 +26043 29099 0.5040 +26043 29113 0.5050 +26043 29979 0.4080 +26043 51003 0.5450 +26043 51035 0.9990 +26043 51122 0.5280 +26043 51366 0.7250 +26043 51397 0.5040 +26043 51496 0.4700 +26043 51506 0.4200 +26043 51569 0.4160 +26043 51755 0.5460 +26043 54014 0.7020 +26043 54165 0.7380 +26043 54542 0.5330 +26043 54623 0.4220 +26043 54778 0.6810 +26043 54939 0.5060 +26043 54941 0.7370 +26043 54951 0.5230 +26043 55023 0.5420 +26043 55133 0.4070 +26043 55137 0.6650 +26043 55208 0.5180 +26043 55284 0.4580 +26043 55421 0.5320 +26043 55432 0.4140 +26043 55527 0.5490 +26043 55666 0.9990 +26043 55677 0.5050 +26043 55703 0.4650 +26043 55717 0.6570 +26043 55832 0.5420 +26043 55968 0.9970 +26043 56929 0.5700 +26043 59349 0.6400 +26043 63979 0.6670 +26043 64344 0.5000 +26043 64895 0.4510 +26043 79029 0.7030 +26043 79058 0.9970 +26043 79577 0.5150 +26043 79594 0.6050 +26043 79781 0.6640 +26043 80124 0.9960 +26043 80232 0.5970 +26043 80233 0.8860 +26043 80700 0.7500 +26043 83473 0.8670 +26043 83795 0.4220 +26043 83892 0.9950 +26043 83932 0.5440 +26043 84078 0.5650 +26043 84129 0.9940 +26043 84172 0.4520 +26043 84246 0.4560 +26043 84259 0.5410 +26043 84295 0.4070 +26043 84337 0.4550 +26043 84447 0.4050 +26043 84861 0.5770 +26043 84896 0.6690 +26043 84936 0.4250 +26043 84984 0.5980 +26043 85456 0.4030 +26043 90293 0.5710 +26043 91544 0.6650 +26043 114781 0.9940 +26043 116138 0.6150 +26043 116211 0.4830 +26043 122706 0.7310 +26043 122769 0.6310 +26043 127428 0.5270 +26043 127733 0.6470 +26043 131540 0.5660 +26043 137886 0.6680 +26043 143471 0.7310 +26043 149951 0.5070 +26043 150684 0.5010 +26043 163859 0.4980 +26043 165324 0.7610 +26043 165918 0.5990 +26043 166378 0.7100 +26043 170622 0.5040 +26043 192669 0.4360 +26043 197131 0.7310 +26043 200931 0.4830 +26043 200933 0.6040 +26043 205564 0.5890 +26043 253980 0.9950 +26043 254065 0.7460 +26043 255758 0.4490 +26043 255798 0.6900 +26043 258010 0.4690 +26043 348793 0.7430 +26043 375387 0.4380 +26043 392843 0.6640 +26043 401720 0.6640 +26045 26052 0.4110 +26045 54413 0.7250 +26045 55151 0.5910 +26045 57030 0.4830 +26045 57502 0.7240 +26045 57555 0.6500 +26045 64359 0.8010 +26045 64374 0.4660 +26045 79442 0.4920 +26045 122769 0.5120 +26045 153918 0.5080 +26045 202051 0.4460 +26045 202052 0.4650 +26045 245812 0.4440 +26045 266727 0.4190 +26045 283576 0.4500 +26045 360200 0.4260 +26045 376132 0.4160 +26045 401494 0.4050 +26045 474354 0.4160 +26045 642968 0.5020 +26045 111064649 0.4960 +26046 26994 0.5910 +26046 53918 0.6730 +26046 54464 0.6100 +26046 54542 0.4840 +26046 54629 0.4850 +26046 54676 0.5420 +26046 55139 0.8710 +26046 55183 0.4050 +26046 55206 0.6050 +26046 55279 0.4540 +26046 55658 0.5760 +26046 55666 0.7020 +26046 57471 0.6400 +26046 80018 0.4450 +26046 84164 0.5100 +26046 84498 0.5760 +26046 90850 0.8580 +26046 92399 0.4100 +26046 130355 0.4740 +26046 140801 0.8120 +26046 149041 0.4420 +26046 197131 0.8150 +26047 26053 0.8330 +26047 27185 0.4780 +26047 27255 0.5190 +26047 27286 0.4220 +26047 29119 0.4550 +26047 50944 0.5530 +26047 51133 0.7770 +26047 51172 0.4100 +26047 51473 0.5860 +26047 53616 0.8610 +26047 53942 0.5760 +26047 54413 0.9130 +26047 54715 0.5050 +26047 56144 0.4010 +26047 56896 0.8250 +26047 57178 0.5340 +26047 57502 0.8670 +26047 57526 0.4430 +26047 57555 0.4570 +26047 57575 0.4500 +26047 57628 0.8360 +26047 57680 0.4790 +26047 57731 0.4900 +26047 60496 0.6710 +26047 64005 0.5340 +26047 64359 0.6070 +26047 64579 0.5610 +26047 79158 0.4870 +26047 80790 0.6340 +26047 83943 0.7770 +26047 84107 0.7270 +26047 84181 0.4230 +26047 84631 0.4210 +26047 84708 0.4340 +26047 85358 0.7890 +26047 92737 0.6740 +26047 93664 0.4810 +26047 93986 0.9770 +26047 114798 0.5580 +26047 139411 0.7440 +26047 140733 0.4150 +26047 144402 0.4120 +26047 152330 0.7990 +26047 152518 0.5610 +26047 161582 0.5760 +26047 255239 0.4080 +26047 257194 0.5370 +26047 285195 0.6420 +26047 342035 0.4380 +26047 347730 0.4080 +26047 386684 0.4450 +26047 402665 0.8180 +26048 55171 0.4740 +26048 55295 0.4800 +26048 64784 0.4570 +26048 64802 0.4070 +26048 79707 0.4370 +26048 81577 0.4800 +26048 84307 0.7030 +26048 84961 0.4820 +26048 116115 0.4120 +26048 124401 0.5130 +26048 142679 0.4370 +26048 161436 0.5500 +26049 29843 0.4040 +26049 54509 0.5930 +26049 55971 0.4070 +26049 80728 0.4550 +26049 81037 0.4280 +26049 81624 0.4610 +26049 81839 0.4460 +26049 90693 0.5310 +26049 114987 0.4190 +26049 116966 0.5030 +26049 340745 0.5960 +26049 390928 0.4360 +26049 402635 0.4540 +26049 445582 0.4520 +26050 54413 0.4020 +26050 55092 0.4450 +26050 55630 0.4590 +26050 55784 0.4240 +26050 55789 0.4320 +26050 55914 0.4390 +26050 55971 0.4040 +26050 57699 0.4840 +26050 58512 0.9370 +26050 79633 0.4270 +26050 81624 0.4110 +26050 81839 0.4180 +26050 83988 0.5190 +26050 114134 0.4140 +26050 115207 0.4430 +26050 137970 0.4210 +26050 143098 0.4440 +26051 51389 0.4030 +26051 54793 0.5290 +26051 55677 0.4390 +26051 60625 0.5100 +26051 79660 0.4820 +26051 79850 0.4070 +26051 81610 0.5600 +26051 84706 0.6440 +26051 94274 0.4640 +26051 163050 0.4430 +26051 388468 0.4420 +26051 404785 0.4410 +26051 554226 0.4180 +26051 641455 0.4420 +26051 100287399 0.4100 +26051 100996331 0.4480 +26051 102723502 0.4430 +26051 102724631 0.4430 +26052 26499 0.6220 +26052 50618 0.5280 +26052 50650 0.4010 +26052 50944 0.5500 +26052 51024 0.6540 +26052 51272 0.4030 +26052 51429 0.7480 +26052 55669 0.5170 +26052 65018 0.4400 +26052 65059 0.4190 +26052 92346 0.4390 +26052 92691 0.4010 +26052 130340 0.5250 +26052 130574 0.4340 +26052 144406 0.4050 +26052 728642 0.4270 +26053 54413 0.6510 +26053 55568 0.4700 +26053 56923 0.4350 +26053 57332 0.5750 +26053 57502 0.6440 +26053 57680 0.6350 +26053 63898 0.4060 +26053 63916 0.4050 +26053 64067 0.5420 +26053 64319 0.5930 +26053 64409 0.4860 +26053 64478 0.4250 +26053 80012 0.5260 +26053 83698 0.6460 +26053 84108 0.9010 +26053 84333 0.9940 +26053 84678 0.5130 +26053 84733 0.6130 +26053 84759 0.6120 +26053 85358 0.7290 +26053 93664 0.8710 +26053 93986 0.4270 +26053 139411 0.6010 +26053 152330 0.5270 +26053 285195 0.5260 +26053 100101267 0.4070 +26054 26168 0.6960 +26054 27145 0.5900 +26054 27332 0.6790 +26054 27339 0.8370 +26054 27351 0.6470 +26054 29843 0.6550 +26054 51029 0.5990 +26054 51588 0.6530 +26054 54069 0.4470 +26054 54778 0.4450 +26054 54892 0.4610 +26054 55215 0.4630 +26054 56929 0.4060 +26054 57337 0.4580 +26054 57599 0.5330 +26054 57683 0.7850 +26054 59343 0.5410 +26054 64946 0.4280 +26054 79570 0.4980 +26054 84901 0.5250 +26054 123228 0.6430 +26054 154215 0.9110 +26054 205564 0.6890 +26054 286053 0.5540 +26054 387082 0.7340 +26056 51552 0.5220 +26056 55251 0.4580 +26056 57111 0.9660 +26056 59336 0.4020 +26056 63894 0.6990 +26056 64145 0.5840 +26056 80223 0.9330 +26056 84440 0.9030 +26056 84524 0.4170 +26056 94097 0.5740 +26056 112574 0.5120 +26056 126204 0.4510 +26056 146223 0.4210 +26056 147991 0.4660 +26056 201627 0.4200 +26056 648791 0.4270 +26057 26058 0.6390 +26057 26135 0.4930 +26057 26523 0.4210 +26057 29066 0.4530 +26057 51322 0.4040 +26057 51366 0.5100 +26057 51663 0.5080 +26057 54462 0.4390 +26057 54542 0.6340 +26057 54882 0.8120 +26057 55209 0.5130 +26057 55252 0.5630 +26057 55571 0.4220 +26057 55833 0.5760 +26057 56252 0.4680 +26057 63893 0.4570 +26057 64793 0.4700 +26057 65125 0.5860 +26057 79048 0.4170 +26057 85456 0.4230 +26057 149041 0.4060 +26057 171023 0.4490 +26057 221937 0.4580 +26057 285521 0.5280 +26058 26130 0.4640 +26058 26986 0.5290 +26058 27161 0.4820 +26058 27327 0.6270 +26058 27429 0.7940 +26058 29058 0.5810 +26058 29883 0.4510 +26058 51142 0.5410 +26058 51634 0.4190 +26058 51742 0.4680 +26058 54464 0.4640 +26058 54542 0.4450 +26058 54832 0.5010 +26058 54856 0.7910 +26058 54870 0.6650 +26058 54882 0.5290 +26058 55209 0.6170 +26058 55421 0.4680 +26058 55737 0.6020 +26058 55833 0.4770 +26058 55870 0.5990 +26058 56252 0.4870 +26058 56478 0.5570 +26058 56915 0.4780 +26058 57680 0.4530 +26058 64599 0.8150 +26058 65018 0.7210 +26058 79608 0.4490 +26058 80208 0.4340 +26058 84074 0.5710 +26058 90850 0.9730 +26058 115752 0.7520 +26058 116442 0.4770 +26058 120892 0.8020 +26058 205428 0.5950 +26058 219988 0.4590 +26058 254048 0.4280 +26058 375056 0.4760 +26058 386618 0.4250 +26058 391356 0.5120 +26059 27229 0.5960 +26059 27445 0.6090 +26059 28964 0.4640 +26059 30819 0.4150 +26059 51454 0.4430 +26059 51806 0.8890 +26059 55755 0.5830 +26059 56934 0.4270 +26059 57537 0.4510 +26059 80852 0.5290 +26059 84708 0.5040 +26059 85378 0.4800 +26059 91860 0.8890 +26059 114791 0.4160 +26059 121441 0.4180 +26059 127833 0.4200 +26059 136263 0.4480 +26059 148281 0.4500 +26059 163688 0.8890 +26059 440145 0.7210 +26060 26130 0.6550 +26060 26499 0.6870 +26060 28956 0.4380 +26060 28973 0.4120 +26060 51094 0.9990 +26060 51429 0.5300 +26060 51479 0.5300 +26060 51622 0.7100 +26060 54810 0.6750 +26060 55198 0.9890 +26060 55256 0.6190 +26060 55754 0.4680 +26060 57120 0.4110 +26060 57403 0.5230 +26060 57662 0.5670 +26060 57679 0.5120 +26060 60684 0.4410 +26060 63893 0.5750 +26060 64145 0.7070 +26060 79602 0.9990 +26060 79930 0.4250 +26060 80262 0.4370 +26060 84315 0.6190 +26060 90249 0.5070 +26060 115548 0.4310 +26060 115825 0.4800 +26060 120534 0.4840 +26060 144717 0.4200 +26060 146691 0.6190 +26060 151188 0.4590 +26060 219699 0.5330 +26060 221960 0.6280 +26060 222546 0.4320 +26060 259266 0.4420 +26060 474383 0.4840 +26061 26063 0.4400 +26061 27010 0.4450 +26061 29925 0.6390 +26061 29926 0.5030 +26061 29968 0.4420 +26061 51031 0.4270 +26061 51091 0.4050 +26061 51179 0.8080 +26061 51555 0.9010 +26061 54363 0.7780 +26061 54511 0.5140 +26061 54529 0.4510 +26061 55258 0.5020 +26061 55711 0.4860 +26061 56954 0.4280 +26061 56965 0.5490 +26061 57591 0.8630 +26061 63826 0.6360 +26061 64965 0.4800 +26061 79668 0.5490 +26061 79783 0.7340 +26061 79896 0.5150 +26061 80724 0.6390 +26061 84076 0.5450 +26061 84129 0.6530 +26061 84263 0.6050 +26061 84816 0.4060 +26061 113675 0.6350 +26061 114112 0.5370 +26061 116225 0.6270 +26061 123876 0.4030 +26061 132949 0.5180 +26061 137872 0.7070 +26061 140856 0.4680 +26061 219743 0.5750 +26061 348158 0.4350 +26061 374659 0.8440 +26061 109703458 0.4650 +26063 27349 0.4110 +26063 51084 0.4230 +26063 51102 0.4730 +26063 51144 0.4200 +26063 51703 0.4040 +26063 54677 0.4130 +26063 54995 0.4770 +26063 55194 0.4270 +26063 55277 0.4150 +26063 57568 0.4290 +26063 63910 0.4160 +26063 65082 0.4120 +26063 79006 0.4500 +26063 80221 0.4830 +26063 84129 0.4840 +26063 84955 0.6240 +26063 85302 0.4090 +26063 88745 0.4960 +26063 89953 0.4200 +26063 91404 0.4320 +26063 91461 0.4600 +26063 112812 0.4720 +26063 132949 0.4520 +26063 146325 0.5260 +26063 147837 0.5610 +26063 166348 0.5010 +26063 170850 0.4460 +26063 219743 0.5970 +26063 283927 0.4140 +26063 339834 0.4370 +26063 345275 0.4260 +26063 349565 0.4120 +26063 375567 0.4260 +26064 29763 0.6430 +26064 29993 0.6950 +26064 54443 0.4480 +26064 54956 0.4180 +26064 55299 0.4140 +26064 64744 0.4600 +26064 84859 0.4590 +26064 147015 0.4630 +26064 153657 0.5590 +26064 221458 0.4580 +26064 283638 0.4530 +26065 26523 0.4660 +26065 26986 0.7920 +26065 27067 0.6310 +26065 27161 0.5020 +26065 27257 0.9430 +26065 27258 0.5500 +26065 27327 0.6850 +26065 51087 0.4610 +26065 51428 0.5600 +26065 51574 0.4640 +26065 51690 0.6010 +26065 54464 0.8700 +26065 54514 0.4670 +26065 55125 0.4350 +26065 55181 0.4220 +26065 55802 0.9610 +26065 56341 0.5090 +26065 56478 0.9950 +26065 57472 0.4620 +26065 57532 0.6020 +26065 57696 0.5100 +26065 57819 0.8080 +26065 64506 0.9050 +26065 64794 0.4950 +26065 79009 0.4560 +26065 80153 0.9960 +26065 80315 0.6700 +26065 80336 0.4280 +26065 85364 0.4710 +26065 92312 0.5040 +26065 115004 0.4300 +26065 124801 0.5940 +26065 132430 0.4110 +26065 132864 0.6390 +26065 149986 0.6320 +26065 167227 0.9660 +26065 170506 0.5310 +26065 196513 0.8740 +26065 197135 0.4950 +26065 219988 0.9140 +26065 253314 0.6500 +26065 399664 0.4010 +26071 56180 0.5160 +26071 57697 0.5320 +26071 80095 0.4170 +26071 340526 0.5280 +26073 26273 0.4430 +26073 27035 0.6400 +26073 27292 0.5360 +26073 27343 0.4320 +26073 50506 0.5450 +26073 50507 0.9600 +26073 50508 0.6140 +26073 51069 0.4840 +26073 51106 0.5890 +26073 51142 0.5920 +26073 51455 0.6970 +26073 53905 0.6120 +26073 64216 0.5960 +26073 79400 0.6800 +26073 84274 0.4410 +26073 90527 0.4960 +26073 124056 0.6730 +26073 133482 0.4180 +26073 153443 0.5300 +26073 201973 0.8480 +26073 405753 0.4300 +26073 653361 0.7620 +26074 51126 0.5950 +26074 51340 0.5620 +26074 51806 0.4220 +26074 55779 0.4370 +26074 57186 0.5020 +26074 57419 0.4100 +26074 64412 0.4320 +26074 79781 0.4640 +26074 80217 0.5900 +26074 84229 0.4740 +26074 85478 0.4330 +26074 89876 0.8050 +26074 91860 0.4220 +26074 118491 0.5440 +26074 129881 0.4430 +26074 133957 0.4830 +26074 140880 0.4060 +26074 144406 0.7950 +26074 149483 0.4280 +26074 154313 0.5080 +26074 159686 0.6280 +26074 163688 0.4230 +26074 202500 0.5300 +26074 220136 0.4040 +26074 256979 0.4340 +26074 257236 0.4300 +26074 339829 0.4400 +26074 352999 0.4240 +26074 389799 0.4050 +26074 100130705 0.6220 +26074 100506564 0.6250 +26084 55327 0.5590 +26084 64130 0.4350 +26085 27180 0.7840 +26085 43847 0.5880 +26085 43849 0.5630 +26085 49860 0.5070 +26085 57103 0.4790 +26085 83886 0.4340 +26085 84518 0.4380 +26085 84651 0.5300 +26085 196374 0.5010 +26085 404203 0.9600 +26085 440387 0.4200 +26086 26648 0.4070 +26086 51083 0.4010 +26086 51309 0.4430 +26086 51655 0.7050 +26086 51764 0.4740 +26086 53637 0.4140 +26086 54331 0.5780 +26086 55291 0.5320 +26086 55970 0.4420 +26086 56131 0.4440 +26086 56288 0.4930 +26086 59345 0.5200 +26086 60626 0.5660 +26086 63940 0.5990 +26086 64398 0.4080 +26086 80022 0.4850 +26086 80834 0.4080 +26086 80835 0.4080 +26086 81448 0.4870 +26086 83756 0.4140 +26086 84922 0.4710 +26086 89958 0.4840 +26086 91544 0.4330 +26086 94235 0.4590 +26086 117579 0.4010 +26086 117583 0.7920 +26086 127385 0.4950 +26086 147650 0.4680 +26086 159296 0.4300 +26086 201232 0.5050 +26086 256933 0.4160 +26086 283869 0.4050 +26086 346562 0.5970 +26086 387755 0.7110 +26086 389015 0.4300 +26086 391190 0.4990 +26086 651746 0.4220 +26086 100289462 0.4690 +26088 26146 0.4310 +26088 26994 0.5630 +26088 29924 0.4540 +26088 29967 0.4030 +26088 55297 0.9890 +26088 56850 0.5360 +26088 57537 0.4390 +26088 64083 0.7850 +26088 84254 0.4210 +26088 84289 0.5370 +26088 114815 0.5010 +26088 163882 0.7760 +26088 729873 0.5090 +26090 27092 0.4010 +26090 27163 0.6200 +26090 51099 0.4840 +26090 51365 0.4090 +26090 51573 0.6180 +26090 55347 0.4300 +26090 57406 0.9490 +26090 57552 0.4850 +26090 59283 0.4210 +26090 63874 0.7540 +26090 64072 0.4500 +26090 65217 0.4350 +26090 79797 0.4230 +26090 79955 0.4690 +26090 81926 0.4060 +26090 83451 0.5140 +26090 84059 0.4340 +26090 84131 0.4790 +26090 84636 0.4370 +26090 84696 0.4490 +26090 84836 0.4530 +26090 91039 0.4070 +26090 124590 0.4950 +26090 139760 0.4700 +26090 140701 0.4930 +26090 158584 0.5810 +26090 171586 0.5830 +26090 221955 0.7460 +26090 222236 0.8030 +26091 57674 0.4070 +26091 63893 0.4620 +26091 83597 0.4490 +26091 84665 0.5200 +26091 84992 0.4380 +26091 192669 0.4940 +26092 27348 0.6480 +26092 27433 0.6570 +26092 29843 0.4130 +26092 29984 0.5480 +26092 51018 0.4490 +26092 51122 0.4640 +26092 54509 0.5540 +26092 55183 0.4280 +26092 55240 0.4250 +26092 56934 0.4280 +26092 57085 0.4480 +26092 64222 0.7610 +26092 65124 0.4010 +26092 79577 0.4440 +26092 79956 0.4780 +26092 80209 0.4340 +26092 80728 0.4990 +26092 84823 0.5560 +26092 89866 0.4080 +26092 120892 0.5170 +26092 144402 0.4080 +26092 148753 0.4220 +26092 163589 0.6680 +26092 445582 0.4010 +26093 51042 0.5080 +26093 51329 0.4630 +26093 55110 0.7200 +26093 55152 0.4840 +26093 55421 0.5940 +26093 55660 0.4440 +26093 55884 0.5700 +26093 57455 0.5520 +26093 65109 0.9020 +26093 65110 0.7250 +26093 79170 0.4120 +26093 79753 0.4550 +26093 79882 0.4360 +26093 80145 0.4280 +26093 84305 0.9000 +26093 84324 0.4400 +26093 138046 0.4330 +26093 221908 0.5040 +26093 284613 0.4140 +26094 26133 0.9350 +26094 28952 0.5090 +26094 28991 0.4990 +26094 29099 0.4990 +26094 50717 0.9530 +26094 50813 0.7440 +26094 51122 0.4990 +26094 51138 0.7760 +26094 51185 0.9120 +26094 51397 0.4990 +26094 51514 0.9170 +26094 51750 0.4430 +26094 54165 0.4990 +26094 54461 0.9110 +26094 54876 0.9090 +26094 54939 0.5040 +26094 54951 0.4990 +26094 55070 0.9100 +26094 55208 0.5320 +26094 55626 0.9080 +26094 55745 0.4630 +26094 55827 0.9530 +26094 55832 0.5360 +26094 64326 0.9000 +26094 64708 0.7100 +26094 79016 0.9110 +26094 79269 0.9490 +26094 79991 0.4470 +26094 80067 0.9040 +26094 80169 0.4300 +26094 80344 0.9440 +26094 84259 0.5180 +26094 90379 0.9500 +26094 138009 0.5500 +26094 139170 0.5940 +26094 139425 0.6030 +26094 149951 0.5010 +26094 150684 0.4990 +26094 163223 0.5710 +26094 170622 0.4990 +26094 221785 0.4590 +26094 254050 0.4180 +26094 285429 0.9050 +26094 340578 0.5940 +26094 344657 0.4630 +26094 347442 0.6030 +26095 26469 0.4880 +26095 27178 0.4990 +26095 27433 0.4380 +26095 55716 0.4710 +26095 56940 0.4280 +26095 57519 0.4220 +26095 84124 0.4060 +26095 84867 0.5400 +26095 84978 0.4900 +26095 89839 0.4240 +26095 143162 0.9510 +26095 145773 0.5300 +26095 147199 0.4090 +26095 285966 0.4570 +26095 445328 0.4910 +26095 653486 0.4090 +26095 729533 0.4550 +26097 26168 0.4370 +26097 27316 0.6230 +26097 27339 0.4300 +26097 29107 0.7580 +26097 51213 0.7870 +26097 51585 0.6820 +26097 51593 0.5790 +26097 53371 0.5100 +26097 54512 0.4700 +26097 54881 0.5830 +26097 55110 0.7820 +26097 55339 0.4440 +26097 55421 0.7010 +26097 55706 0.4050 +26097 55746 0.4750 +26097 56259 0.4730 +26097 57122 0.4990 +26097 57187 0.9870 +26097 57721 0.4720 +26097 64783 0.5170 +26097 65109 0.5540 +26097 79023 0.4600 +26097 79084 0.5420 +26097 79228 0.9530 +26097 79869 0.5570 +26097 79882 0.4430 +26097 79902 0.4770 +26097 80145 0.9820 +26097 81887 0.5030 +26097 81929 0.4570 +26097 84248 0.9580 +26097 84271 0.9620 +26097 84321 0.9620 +26097 84324 0.9980 +26097 124245 0.4360 +26097 129401 0.4760 +26097 220988 0.4980 +26097 284654 0.5820 +26097 348995 0.5330 +26097 100101267 0.4190 +26098 26973 0.6240 +26098 27107 0.4520 +26098 55132 0.4440 +26098 63892 0.4220 +26098 64848 0.4280 +26098 79791 0.4390 +26098 80067 0.4500 +26098 84306 0.4290 +26098 150084 0.4730 +26098 197131 0.4280 +26098 221785 0.4370 +26098 387718 0.4760 +26098 388021 0.4520 +26098 653073 0.4470 +26099 27125 0.4380 +26099 27127 0.4060 +26099 29101 0.4230 +26099 54872 0.4330 +26099 54882 0.4440 +26099 54994 0.4080 +26099 55379 0.4410 +26099 57410 0.4180 +26099 60626 0.4560 +26099 64779 0.6780 +26099 84135 0.6220 +26099 90411 0.4180 +26099 113444 0.6300 +26099 134288 0.5400 +26099 146691 0.5060 +26100 29110 0.7750 +26100 29982 0.5490 +26100 30849 0.8920 +26100 51013 0.4220 +26100 51100 0.4200 +26100 51622 0.5290 +26100 53349 0.8740 +26100 54828 0.8770 +26100 54994 0.4070 +26100 55014 0.6640 +26100 55054 0.9990 +26100 55062 0.9760 +26100 55102 0.9930 +26100 55201 0.5130 +26100 55593 0.4870 +26100 55626 0.6130 +26100 55697 0.6470 +26100 56270 0.6160 +26100 56957 0.8650 +26100 57120 0.4170 +26100 57470 0.5340 +26100 57521 0.6550 +26100 57533 0.4240 +26100 57724 0.5830 +26100 60673 0.8490 +26100 64223 0.5000 +26100 64422 0.9090 +26100 65018 0.5270 +26100 79065 0.8310 +26100 80262 0.6000 +26100 80317 0.4020 +26100 81631 0.8310 +26100 81671 0.6310 +26100 83734 0.7660 +26100 84557 0.8260 +26100 84938 0.6380 +26100 84971 0.6570 +26100 89849 0.9750 +26100 92399 0.4610 +26100 112574 0.4570 +26100 115201 0.6860 +26100 121665 0.4410 +26100 140901 0.5460 +26100 149420 0.5190 +26100 200576 0.6170 +26100 221960 0.4220 +26100 285973 0.6780 +26100 440026 0.4030 +26100 440738 0.8470 +26100 441925 0.4850 +26100 643246 0.4810 +26100 644139 0.6070 +26103 29948 0.4160 +26103 54101 0.4200 +26103 55020 0.5240 +26103 55794 0.5200 +26103 57594 0.6080 +26103 89766 0.4060 +26103 92211 0.5980 +26103 116966 0.4340 +26103 117166 0.4340 +26103 124857 0.4520 +26103 126272 0.4700 +26103 152404 0.4150 +26103 169044 0.4780 +26103 169522 0.4010 +26103 286676 0.5070 +26103 340745 0.8610 +26103 344658 0.4890 +26103 345193 0.4890 +26103 387597 0.4360 +26103 100287284 0.6250 +26108 51176 0.9060 +26108 54145 0.5240 +26108 55766 0.5440 +26108 57634 0.4790 +26108 83439 0.5440 +26108 85236 0.5240 +26108 90780 0.6080 +26108 94239 0.5460 +26108 126961 0.9090 +26108 128312 0.5240 +26108 255626 0.5240 +26108 283149 0.9200 +26108 333932 0.9090 +26108 345275 0.4200 +26108 440093 0.9650 +26108 440686 0.9650 +26108 474382 0.5440 +26108 653604 0.9810 +26112 51247 0.4020 +26112 57184 0.4280 +26112 80010 0.6050 +26112 92241 0.4420 +26112 116028 0.7060 +26115 26524 0.4580 +26115 60626 0.4090 +26115 80067 0.4380 +26115 83475 0.4020 +26115 84623 0.4100 +26115 93436 0.4850 +26115 113246 0.4220 +26115 145581 0.4140 +26115 153241 0.5010 +26115 166614 0.5130 +26118 26973 0.4040 +26118 27156 0.4400 +26118 27332 0.4190 +26118 28952 0.4990 +26118 28991 0.4990 +26118 28996 0.7570 +26118 29099 0.4990 +26118 30827 0.5280 +26118 51122 0.5100 +26118 51397 0.4990 +26118 51665 0.4370 +26118 53339 0.4080 +26118 53827 0.4690 +26118 54939 0.5310 +26118 54951 0.5230 +26118 55832 0.5430 +26118 56171 0.4110 +26118 57447 0.4040 +26118 57680 0.4890 +26118 59067 0.5190 +26118 79180 0.4480 +26118 80335 0.4960 +26118 120892 0.4520 +26118 122769 0.5010 +26118 140690 0.6490 +26118 140739 0.5930 +26118 147912 0.4140 +26118 149951 0.4990 +26118 150684 0.4990 +26118 170622 0.4990 +26119 26228 0.5800 +26119 27329 0.5070 +26119 29924 0.6300 +26119 29978 0.4990 +26119 29988 0.5060 +26119 30011 0.5040 +26119 50618 0.5370 +26119 51128 0.4350 +26119 55219 0.4020 +26119 55707 0.5200 +26119 57104 0.4090 +26119 57486 0.4970 +26119 58513 0.5930 +26119 64240 0.6790 +26119 64241 0.6740 +26119 64788 0.5130 +26119 79991 0.7090 +26119 84251 0.5900 +26119 85021 0.5870 +26119 85439 0.5030 +26119 90019 0.4990 +26119 115548 0.5490 +26119 116519 0.4870 +26119 127833 0.5040 +26119 143425 0.4990 +26119 150379 0.6030 +26119 255324 0.4990 +26119 255738 0.8080 +26119 338328 0.4740 +26121 26168 0.9000 +26121 26747 0.7240 +26121 27043 0.9070 +26121 27102 0.4390 +26121 27241 0.4360 +26121 27258 0.9980 +26121 27316 0.5200 +26121 27336 0.6560 +26121 27339 0.5180 +26121 29844 0.8560 +26121 29915 0.5610 +26121 50939 0.7070 +26121 51230 0.9020 +26121 51362 0.4890 +26121 51574 0.4280 +26121 51634 0.9640 +26121 51639 0.8290 +26121 51690 0.9980 +26121 51691 0.9990 +26121 51729 0.4410 +26121 51747 0.5250 +26121 54881 0.9010 +26121 54957 0.9330 +26121 55011 0.4980 +26121 55015 0.4110 +26121 55110 0.9100 +26121 55234 0.9890 +26121 55285 0.4300 +26121 55337 0.4500 +26121 55599 0.4760 +26121 55651 0.5000 +26121 55696 0.5100 +26121 55749 0.5330 +26121 55812 0.5100 +26121 55975 0.7400 +26121 56257 0.8680 +26121 56259 0.8450 +26121 56949 0.8870 +26121 57094 0.4100 +26121 57096 0.5440 +26121 57680 0.9040 +26121 57703 0.9270 +26121 57794 0.5210 +26121 57819 0.9990 +26121 58517 0.6300 +26121 59286 0.8860 +26121 64218 0.6590 +26121 64852 0.8240 +26121 79092 0.4870 +26121 79153 0.6300 +26121 79165 0.4270 +26121 79171 0.9600 +26121 79631 0.5170 +26121 79753 0.9550 +26121 79947 0.4950 +26121 80184 0.5850 +26121 81887 0.9020 +26121 83443 0.9900 +26121 83938 0.4720 +26121 84140 0.6060 +26121 84148 0.9020 +26121 84316 0.5680 +26121 84661 0.5430 +26121 84811 0.9590 +26121 84844 0.9980 +26121 84950 0.9910 +26121 84967 0.7980 +26121 85476 0.5440 +26121 94137 0.5110 +26121 124944 0.9020 +26121 125476 0.9000 +26121 126259 0.5670 +26121 129880 0.4350 +26121 130557 0.7520 +26121 140890 0.4440 +26121 145226 0.7490 +26121 147650 0.5670 +26121 153527 0.9950 +26121 157657 0.4180 +26121 164045 0.6630 +26121 164781 0.8160 +26121 167691 0.4470 +26121 220074 0.4720 +26121 284058 0.9010 +26121 284161 0.4840 +26121 284325 0.8540 +26121 285440 0.4320 +26121 346007 0.8410 +26121 348793 0.8160 +26121 375298 0.7920 +26121 388939 0.7490 +26121 440275 0.5100 +26121 768206 0.7220 +26121 100529209 0.5400 +26122 27249 0.4580 +26122 49860 0.4280 +26122 51105 0.6240 +26122 51230 0.7280 +26122 51412 0.9050 +26122 51742 0.5420 +26122 54556 0.9930 +26122 54617 0.5630 +26122 54778 0.4100 +26122 54799 0.9680 +26122 54934 0.7220 +26122 55167 0.7780 +26122 55257 0.9910 +26122 55683 0.7230 +26122 55689 0.7090 +26122 55777 0.6150 +26122 55929 0.9970 +26122 57634 0.9660 +26122 57786 0.5310 +26122 64769 0.9980 +26122 79712 0.4660 +26122 79879 0.4450 +26122 80314 0.8090 +26122 84148 0.9120 +26122 84289 0.6600 +26122 90378 0.5710 +26122 94239 0.5290 +26122 130576 0.5110 +26122 139628 0.8030 +26122 148418 0.5700 +26122 151050 0.5760 +26122 153241 0.4840 +26122 221895 0.8330 +26122 255626 0.7250 +26122 283150 0.8360 +26122 284058 0.7330 +26122 339287 0.7620 +26122 345651 0.6750 +26122 375748 0.4060 +26122 440854 0.5560 +26122 647024 0.4090 +26122 728294 0.6590 +26123 26160 0.4910 +26123 27031 0.5190 +26123 27077 0.9930 +26123 27130 0.4040 +26123 51134 0.5130 +26123 51259 0.9880 +26123 51524 0.7230 +26123 54806 0.9610 +26123 54903 0.9790 +26123 55112 0.4040 +26123 57545 0.9930 +26123 65062 0.8360 +26123 65250 0.7720 +26123 79583 0.8800 +26123 79598 0.5500 +26123 79600 0.9960 +26123 79809 0.5240 +26123 79848 0.5790 +26123 79867 0.9920 +26123 80184 0.9090 +26123 80776 0.9800 +26123 83479 0.5700 +26123 84314 0.7430 +26123 89891 0.4190 +26123 91147 0.9840 +26123 95681 0.6830 +26123 112752 0.4040 +26123 117177 0.5800 +26123 153241 0.4790 +26123 200728 0.7780 +26123 200894 0.6170 +26123 221322 0.4020 +26123 261734 0.5820 +26123 374654 0.5720 +26127 26281 0.4110 +26127 29888 0.8510 +26127 29966 0.9970 +26127 50488 0.4240 +26127 51290 0.4040 +26127 51765 0.8650 +26127 51768 0.5310 +26127 54764 0.4330 +26127 55297 0.4120 +26127 55726 0.4200 +26127 55917 0.6760 +26127 57464 0.8540 +26127 80143 0.9970 +26127 80342 0.9970 +26127 83992 0.4740 +26127 85021 0.4230 +26127 85369 0.9970 +26127 340527 0.5910 +26127 399687 0.8690 +26128 27185 0.4290 +26128 56992 0.9810 +26128 66008 0.4140 +26128 81930 0.9790 +26128 147015 0.4200 +26128 201798 0.5060 +26130 26190 0.4890 +26130 27161 0.4210 +26130 27183 0.4600 +26130 28966 0.7900 +26130 51271 0.4400 +26130 51366 0.4670 +26130 51479 0.7320 +26130 51622 0.7500 +26130 51699 0.5900 +26130 53981 0.4980 +26130 54453 0.4760 +26130 54885 0.6510 +26130 55737 0.4400 +26130 55802 0.4020 +26130 57679 0.8860 +26130 64145 0.4840 +26130 64284 0.4120 +26130 64926 0.4350 +26130 79577 0.4190 +26130 79856 0.4360 +26130 79890 0.6440 +26130 80124 0.4530 +26130 80232 0.4940 +26130 83942 0.6980 +26130 84315 0.7180 +26130 90874 0.5070 +26130 126432 0.5810 +26130 149371 0.4120 +26130 221154 0.4410 +26130 221960 0.7490 +26130 259173 0.6070 +26130 284680 0.7110 +26133 50717 0.9170 +26133 51185 0.9050 +26133 51230 0.4110 +26133 51514 0.9100 +26133 51614 0.5080 +26133 54461 0.9150 +26133 54876 0.9000 +26133 55070 0.9040 +26133 55626 0.9070 +26133 55741 0.8040 +26133 55827 0.9320 +26133 57446 0.4120 +26133 64326 0.9010 +26133 79016 0.9410 +26133 79269 0.9000 +26133 80067 0.9010 +26133 80344 0.9010 +26133 84174 0.4250 +26133 84271 0.4650 +26133 90379 0.9030 +26133 91782 0.4380 +26133 138009 0.6660 +26133 139170 0.5730 +26133 139425 0.6110 +26133 285429 0.6660 +26133 340578 0.5730 +26133 347442 0.7010 +26135 26523 0.5460 +26135 26986 0.7480 +26135 27044 0.6120 +26135 27161 0.5880 +26135 27292 0.4180 +26135 28998 0.6480 +26135 29093 0.7140 +26135 29889 0.4290 +26135 29978 0.4170 +26135 51065 0.8000 +26135 51069 0.5890 +26135 51073 0.7170 +26135 51081 0.7160 +26135 51116 0.5550 +26135 51121 0.9670 +26135 51149 0.7590 +26135 51154 0.7160 +26135 51319 0.6100 +26135 51441 0.4420 +26135 51574 0.7150 +26135 51588 0.5910 +26135 54542 0.5280 +26135 54606 0.5890 +26135 54726 0.4260 +26135 54948 0.5450 +26135 55132 0.5180 +26135 55173 0.7760 +26135 55272 0.7160 +26135 55316 0.6590 +26135 55651 0.6430 +26135 55720 0.4510 +26135 55833 0.5420 +26135 55920 0.4130 +26135 56254 0.4260 +26135 56257 0.4060 +26135 56648 0.5460 +26135 57062 0.4040 +26135 57510 0.4370 +26135 57532 0.7010 +26135 57696 0.4500 +26135 63931 0.5820 +26135 64319 0.4090 +26135 64374 0.5250 +26135 64432 0.4210 +26135 64960 0.7070 +26135 64963 0.6400 +26135 64969 0.8060 +26135 65003 0.5020 +26135 65008 0.5340 +26135 79084 0.4400 +26135 79171 0.4850 +26135 79590 0.6030 +26135 79631 0.5410 +26135 83743 0.4660 +26135 83939 0.5100 +26135 84365 0.4580 +26135 84993 0.4270 +26135 85315 0.5770 +26135 85364 0.6800 +26135 85476 0.5840 +26135 92196 0.5970 +26135 112495 0.5190 +26135 113251 0.4310 +26135 114987 0.8380 +26135 115098 0.6040 +26135 116832 0.8250 +26135 124454 0.5200 +26135 126402 0.6080 +26135 140032 0.7910 +26135 140801 0.9650 +26135 143244 0.5460 +26135 149041 0.6400 +26135 151871 0.4200 +26135 164091 0.5720 +26135 200916 0.8190 +26135 220988 0.6750 +26135 253943 0.5830 +26135 254268 0.6970 +26135 285855 0.8650 +26135 347487 0.7260 +26135 387129 0.6000 +26135 641776 0.4630 +26135 642623 0.5370 +26135 643909 0.4630 +26135 645051 0.5280 +26135 645073 0.5280 +26135 728524 0.4630 +26135 729396 0.5280 +26135 729422 0.5280 +26135 729428 0.5280 +26135 729431 0.5280 +26135 729442 0.5280 +26135 729447 0.5280 +26135 100008586 0.5280 +26135 100132399 0.5280 +26135 100287482 0.5440 +26135 100505478 0.5610 +26135 100526842 0.9650 +26135 100529097 0.7310 +26135 100529239 0.9630 +26135 100996746 0.4630 +26135 102724473 0.5280 +26135 105180390 0.4630 +26135 105180391 0.4630 +26136 51466 0.4640 +26136 51474 0.4050 +26136 54205 0.5800 +26136 54925 0.4200 +26136 55740 0.9670 +26136 57216 0.4170 +26136 63892 0.6050 +26136 79626 0.6010 +26136 81839 0.4320 +26136 83660 0.5480 +26137 51185 0.4250 +26137 51196 0.4070 +26137 57616 0.4160 +26137 64211 0.4490 +26137 79602 0.4180 +26137 89780 0.4100 +26137 151126 0.4150 +26137 152485 0.4080 +26137 222643 0.4360 +26140 51684 0.4470 +26140 55802 0.4500 +26140 79739 0.5970 +26140 79969 0.4050 +26140 150737 0.4150 +26140 167227 0.4910 +26140 196513 0.4500 +26145 27153 0.5060 +26145 30011 0.4230 +26145 57567 0.4230 +26145 57799 0.4710 +26145 64207 0.9020 +26145 64925 0.4590 +26145 80851 0.4600 +26145 81669 0.4740 +26145 83940 0.4520 +26145 115950 0.4930 +26145 122953 0.4440 +26145 144699 0.4500 +26145 359948 0.9500 +26146 26160 0.9990 +26146 27185 0.9410 +26146 28981 0.9970 +26146 51098 0.9960 +26146 51134 0.6910 +26146 51626 0.6550 +26146 51665 0.7970 +26146 51668 0.9960 +26146 54520 0.4420 +26146 54806 0.6360 +26146 54820 0.6310 +26146 55081 0.9990 +26146 55112 0.4300 +26146 55212 0.5130 +26146 55349 0.5010 +26146 55764 0.8440 +26146 56912 0.9980 +26146 57539 0.8740 +26146 57560 0.9990 +26146 57576 0.4450 +26146 57728 0.8880 +26146 57731 0.5880 +26146 64319 0.4270 +26146 64792 0.9970 +26146 79659 0.4750 +26146 79809 0.8060 +26146 79867 0.4730 +26146 79989 0.9910 +26146 80173 0.9950 +26146 80184 0.6640 +26146 80199 0.4800 +26146 81565 0.6180 +26146 84062 0.6350 +26146 85302 0.8860 +26146 89891 0.4950 +26146 90410 0.9990 +26146 92104 0.9690 +26146 112752 0.8390 +26146 129880 0.5160 +26146 150737 0.9970 +26146 199223 0.5630 +26146 200894 0.5230 +26146 203286 0.4260 +26146 261734 0.5100 +26146 282991 0.4870 +26146 284485 0.5940 +26147 29947 0.4080 +26147 54145 0.5110 +26147 55766 0.4990 +26147 57332 0.6690 +26147 65983 0.4310 +26147 79697 0.9400 +26147 79723 0.4130 +26147 80012 0.4480 +26147 84108 0.6430 +26147 84333 0.5050 +26147 84458 0.8430 +26147 84678 0.7250 +26147 84733 0.6240 +26147 84759 0.7250 +26147 85236 0.5210 +26147 94239 0.5840 +26147 121536 0.9520 +26147 128312 0.5150 +26147 132625 0.4050 +26147 171023 0.4080 +26147 255626 0.5110 +26147 387640 0.7350 +26147 440093 0.6530 +26147 440686 0.6530 +26147 474382 0.4990 +26147 653604 0.8190 +26147 100170841 0.9970 +26149 57680 0.4760 +26149 64924 0.4210 +26149 79932 0.4180 +26149 80726 0.4040 +26149 282775 0.5740 +26149 388963 0.4670 +26149 645811 0.4340 +26149 728310 0.6210 +26149 100505591 0.4250 +26150 26206 0.8270 +26150 27127 0.4020 +26150 27285 0.8990 +26150 28951 0.9220 +26150 29105 0.8270 +26150 29922 0.8220 +26150 54101 0.4110 +26150 55007 0.4730 +26150 55130 0.6110 +26150 55329 0.8710 +26150 55789 0.4460 +26150 57415 0.5280 +26150 57710 0.4540 +26150 57761 0.9370 +26150 63939 0.4750 +26150 64326 0.7240 +26150 64518 0.8820 +26150 64776 0.8020 +26150 64793 0.4440 +26150 64800 0.6820 +26150 79645 0.5430 +26150 79807 0.4410 +26150 80125 0.5090 +26150 80258 0.8710 +26150 80346 0.4780 +26150 83538 0.5360 +26150 83659 0.8540 +26150 83894 0.4390 +26150 83931 0.5930 +26150 84229 0.5750 +26150 84318 0.4760 +26150 91057 0.5090 +26150 93190 0.8230 +26150 93233 0.6220 +26150 112942 0.4600 +26150 114327 0.9050 +26150 115948 0.5420 +26150 127003 0.8400 +26150 129881 0.8260 +26150 134121 0.8240 +26150 135138 0.8460 +26150 138162 0.8460 +26150 138255 0.8320 +26150 145788 0.8220 +26150 146177 0.4060 +26150 146845 0.8360 +26150 150483 0.8470 +26150 151651 0.8440 +26150 160762 0.5350 +26150 161502 0.8370 +26150 162681 0.5220 +26150 195828 0.4790 +26150 219670 0.8210 +26150 219681 0.6260 +26150 220136 0.8300 +26150 257177 0.8270 +26150 284992 0.5190 +26150 339778 0.8060 +26150 388701 0.8210 +26150 389799 0.8020 +26150 440585 0.8830 +26150 730112 0.8010 +26150 100128569 0.5070 +26151 26608 0.5410 +26151 27158 0.4880 +26151 51084 0.7570 +26151 54757 0.6120 +26151 55154 0.4590 +26151 55226 0.4590 +26151 55530 0.4220 +26151 55657 0.4780 +26151 55738 0.4520 +26151 55929 0.4720 +26151 56975 0.6110 +26151 57017 0.6080 +26151 57106 0.5360 +26151 57521 0.7130 +26151 64601 0.4350 +26151 79092 0.8070 +26151 79903 0.4290 +26151 79935 0.4560 +26151 80198 0.7650 +26151 81576 0.4850 +26151 92715 0.4520 +26151 114799 0.7450 +26151 124599 0.6360 +26151 136306 0.6130 +26151 136332 0.5600 +26151 157570 0.7440 +26151 284403 0.4710 +26151 339983 0.4310 +26152 54925 0.4460 +26152 55251 0.4890 +26152 57763 0.4870 +26152 202243 0.4170 +26152 202500 0.4940 +26153 26286 0.4990 +26153 51164 0.5220 +26153 51594 0.5020 +26153 53407 0.5000 +26153 54820 0.5430 +26153 55083 0.5830 +26153 55582 0.6160 +26153 55605 0.6430 +26153 55614 0.6200 +26153 55738 0.5010 +26153 55850 0.4990 +26153 55860 0.4990 +26153 56992 0.6020 +26153 57576 0.6100 +26153 60561 0.4990 +26153 63971 0.5950 +26153 64837 0.5840 +26153 81565 0.5570 +26153 81930 0.6240 +26153 84364 0.4990 +26153 84516 0.5080 +26153 84643 0.5990 +26153 89953 0.4210 +26153 90990 0.6410 +26153 93661 0.4990 +26153 124602 0.6340 +26153 146909 0.6100 +26153 147700 0.4550 +26153 161514 0.5910 +26153 221458 0.5720 +26153 285643 0.4990 +26153 374569 0.4130 +26153 374654 0.6990 +26153 388021 0.5060 +26153 390649 0.4020 +26154 51099 0.4330 +26154 59344 0.8060 +26154 79568 0.4380 +26154 85320 0.4750 +26154 121214 0.6510 +26154 126410 0.9770 +26154 204219 0.7220 +26154 257000 0.5630 +26154 285848 0.7880 +26154 348938 0.9240 +26154 388698 0.6340 +26154 643418 0.8300 +26155 26156 0.9980 +26155 26354 0.9800 +26155 26574 0.8840 +26155 26986 0.5220 +26155 26995 0.6860 +26155 27037 0.5860 +26155 27042 0.6550 +26155 27292 0.7900 +26155 27340 0.9290 +26155 27341 0.8350 +26155 28987 0.8600 +26155 28998 0.5950 +26155 29093 0.6170 +26155 29777 0.4550 +26155 29889 0.9450 +26155 29960 0.8040 +26155 29997 0.8720 +26155 30836 0.7090 +26155 51018 0.9290 +26155 51042 0.6410 +26155 51068 0.6970 +26155 51073 0.7640 +26155 51082 0.6120 +26155 51096 0.9320 +26155 51106 0.4460 +26155 51118 0.6310 +26155 51121 0.8160 +26155 51154 0.9980 +26155 51187 0.9900 +26155 51202 0.8780 +26155 51236 0.6060 +26155 51319 0.5750 +26155 51388 0.9960 +26155 51490 0.5550 +26155 51575 0.9240 +26155 51602 0.9460 +26155 51605 0.5060 +26155 54205 0.5370 +26155 54433 0.6890 +26155 54475 0.9070 +26155 54517 0.5370 +26155 54552 0.9790 +26155 54555 0.7120 +26155 54606 0.9710 +26155 54663 0.9800 +26155 54758 0.4110 +26155 54853 0.4130 +26155 54881 0.4670 +26155 54888 0.9210 +26155 54920 0.4030 +26155 54984 0.5990 +26155 55003 0.7480 +26155 55006 0.5810 +26155 55027 0.4030 +26155 55127 0.9350 +26155 55131 0.9730 +26155 55140 0.4870 +26155 55153 0.9690 +26155 55170 0.5650 +26155 55178 0.4440 +26155 55226 0.9550 +26155 55272 0.8310 +26155 55299 0.9960 +26155 55319 0.6250 +26155 55341 0.9230 +26155 55621 0.6310 +26155 55622 0.5320 +26155 55627 0.4650 +26155 55646 0.8340 +26155 55651 0.9150 +26155 55695 0.7080 +26155 55703 0.8370 +26155 55718 0.4020 +26155 55720 0.9280 +26155 55735 0.4470 +26155 55759 0.9970 +26155 55760 0.7160 +26155 55781 0.7480 +26155 55791 0.4280 +26155 55794 0.7710 +26155 55813 0.9200 +26155 55922 0.5900 +26155 56341 0.5610 +26155 56342 0.9180 +26155 56474 0.5680 +26155 56647 0.4560 +26155 56931 0.4050 +26155 56937 0.5610 +26155 57050 0.8520 +26155 57062 0.9310 +26155 57418 0.8120 +26155 57696 0.9570 +26155 60487 0.6760 +26155 60528 0.4220 +26155 63899 0.7990 +26155 64118 0.6800 +26155 64216 0.6430 +26155 64318 0.9980 +26155 64425 0.8540 +26155 64434 0.8320 +26155 64794 0.9160 +26155 65083 0.9880 +26155 65095 0.9310 +26155 79009 0.5380 +26155 79039 0.9410 +26155 79050 0.9570 +26155 79159 0.7960 +26155 79590 0.6460 +26155 79711 0.7510 +26155 79730 0.6900 +26155 79922 0.4160 +26155 79954 0.9100 +26155 79979 0.5660 +26155 80135 0.9930 +26155 80324 0.4280 +26155 80336 0.5090 +26155 81627 0.5670 +26155 81887 0.6630 +26155 83479 0.5040 +26155 83480 0.6830 +26155 83743 0.9780 +26155 83858 0.4550 +26155 84128 0.9350 +26155 84135 0.6880 +26155 84154 0.9960 +26155 84172 0.8980 +26155 84273 0.7640 +26155 84294 0.6980 +26155 84310 0.4450 +26155 84319 0.4130 +26155 84365 0.9980 +26155 84549 0.9900 +26155 84916 0.9660 +26155 84946 0.8280 +26155 88745 0.6960 +26155 90121 0.8200 +26155 90441 0.6960 +26155 90826 0.5220 +26155 91646 0.5070 +26155 91875 0.4380 +26155 91893 0.4210 +26155 92170 0.7070 +26155 92856 0.9450 +26155 115708 0.6890 +26155 116832 0.5870 +26155 116966 0.8530 +26155 117246 0.9980 +26155 124454 0.5570 +26155 126789 0.4210 +26155 132430 0.5090 +26155 142940 0.6990 +26155 146212 0.9450 +26155 153443 0.7340 +26155 155368 0.4190 +26155 161424 0.9160 +26155 165545 0.7180 +26155 200916 0.7680 +26155 221078 0.9750 +26155 221830 0.8760 +26155 254268 0.7150 +26155 283385 0.4450 +26155 285855 0.9330 +26155 317781 0.5170 +26155 344758 0.5040 +26155 345630 0.8290 +26155 387129 0.8620 +26155 387338 0.8080 +26155 645051 0.4240 +26155 645073 0.4240 +26155 692312 0.7910 +26155 729396 0.4240 +26155 729422 0.4240 +26155 729428 0.4240 +26155 729431 0.4240 +26155 729442 0.4240 +26155 729447 0.4240 +26155 100008586 0.4240 +26155 100132399 0.4240 +26155 100505478 0.7980 +26155 100526842 0.7700 +26155 102724473 0.4240 +26155 114483834 0.5090 +26156 26354 0.9910 +26156 26574 0.9860 +26156 26576 0.4200 +26156 26995 0.6310 +26156 27000 0.5410 +26156 27042 0.4950 +26156 27292 0.7210 +26156 27316 0.4580 +26156 27340 0.9860 +26156 27341 0.9820 +26156 28987 0.7210 +26156 28998 0.5920 +26156 29093 0.5790 +26156 29889 0.9940 +26156 29960 0.6750 +26156 29997 0.9930 +26156 30836 0.9830 +26156 50809 0.4630 +26156 51010 0.5160 +26156 51013 0.6480 +26156 51018 0.7940 +26156 51042 0.9590 +26156 51065 0.4920 +26156 51068 0.7770 +26156 51073 0.8420 +26156 51077 0.9540 +26156 51081 0.6460 +26156 51082 0.6150 +26156 51096 0.9910 +26156 51118 0.9810 +26156 51121 0.8360 +26156 51149 0.7800 +26156 51154 0.9960 +26156 51187 0.9920 +26156 51202 0.8770 +26156 51236 0.6910 +26156 51319 0.6630 +26156 51388 0.9960 +26156 51504 0.4980 +26156 51574 0.6740 +26156 51575 0.8600 +26156 51602 0.9960 +26156 54433 0.8550 +26156 54475 0.9560 +26156 54517 0.4650 +26156 54552 0.9820 +26156 54555 0.6620 +26156 54606 0.8850 +26156 54663 0.9830 +26156 54865 0.4860 +26156 54881 0.4610 +26156 54888 0.7280 +26156 54984 0.6220 +26156 55003 0.8550 +26156 55105 0.4680 +26156 55109 0.4580 +26156 55127 0.9820 +26156 55131 0.9530 +26156 55140 0.6290 +26156 55153 0.8800 +26156 55170 0.4300 +26156 55226 0.9840 +26156 55272 0.9800 +26156 55299 0.9970 +26156 55319 0.5950 +26156 55341 0.8770 +26156 55421 0.5200 +26156 55591 0.5090 +26156 55622 0.4080 +26156 55646 0.7490 +26156 55651 0.8860 +26156 55668 0.4620 +26156 55695 0.6130 +26156 55720 0.8920 +26156 55759 0.9980 +26156 55760 0.6240 +26156 55781 0.5450 +26156 55794 0.6230 +26156 55813 0.9930 +26156 56257 0.5570 +26156 56341 0.4300 +26156 56342 0.8880 +26156 56474 0.4020 +26156 56647 0.5070 +26156 56829 0.4170 +26156 56902 0.9130 +26156 56915 0.6010 +26156 56937 0.4280 +26156 57050 0.9830 +26156 57062 0.8780 +26156 57109 0.4890 +26156 57332 0.4250 +26156 57418 0.6320 +26156 57696 0.9450 +26156 60487 0.4420 +26156 63899 0.6260 +26156 64118 0.4150 +26156 64216 0.4070 +26156 64318 0.9910 +26156 64425 0.7180 +26156 64434 0.8970 +26156 64794 0.6260 +26156 64960 0.6460 +26156 64963 0.6200 +26156 64969 0.4830 +26156 65083 0.9960 +26156 65095 0.8720 +26156 79009 0.5160 +26156 79039 0.8160 +26156 79050 0.9880 +26156 79159 0.8720 +26156 79571 0.7950 +26156 79590 0.6180 +26156 79730 0.6100 +26156 79954 0.9840 +26156 80135 0.9930 +26156 83479 0.4060 +26156 83480 0.5370 +26156 83743 0.9790 +26156 84128 0.9870 +26156 84135 0.9240 +26156 84154 0.9960 +26156 84172 0.7630 +26156 84273 0.6200 +26156 84294 0.8400 +26156 84310 0.4150 +26156 84319 0.5620 +26156 84365 0.9990 +26156 84549 0.9920 +26156 84916 0.9960 +26156 84946 0.8040 +26156 88745 0.6640 +26156 90121 0.6690 +26156 91646 0.4060 +26156 91752 0.4570 +26156 92170 0.5830 +26156 92345 0.7040 +26156 92856 0.9920 +26156 115708 0.7000 +26156 116832 0.7970 +26156 116966 0.6550 +26156 117246 0.9900 +26156 124454 0.4740 +26156 126402 0.6200 +26156 140032 0.6070 +26156 142940 0.7370 +26156 146212 0.9210 +26156 153443 0.7120 +26156 161424 0.9360 +26156 165545 0.6230 +26156 200916 0.7620 +26156 219578 0.4570 +26156 221078 0.9700 +26156 221830 0.8460 +26156 254268 0.5990 +26156 285855 0.8680 +26156 317781 0.4110 +26156 344758 0.4060 +26156 345630 0.9080 +26156 387129 0.7970 +26156 387338 0.6340 +26156 641776 0.4720 +26156 643909 0.4720 +26156 645051 0.4050 +26156 645073 0.4050 +26156 692312 0.8390 +26156 728524 0.4720 +26156 729396 0.4050 +26156 729422 0.4050 +26156 729428 0.4050 +26156 729431 0.4050 +26156 729442 0.4050 +26156 729447 0.4050 +26156 100008586 0.4050 +26156 100132399 0.4050 +26156 100505478 0.7630 +26156 100526842 0.7770 +26156 100996746 0.4720 +26156 102724473 0.4050 +26156 105180390 0.4720 +26156 105180391 0.4720 +26157 27348 0.5390 +26157 51390 0.5890 +26157 55303 0.5180 +26157 155038 0.4560 +26157 168537 0.8150 +26157 170575 0.7250 +26157 285971 0.5270 +26157 337867 0.4580 +26157 388960 0.5730 +26157 474344 0.4610 +26160 27031 0.5500 +26160 27077 0.5830 +26160 27130 0.4980 +26160 27152 0.5850 +26160 27241 0.5940 +26160 28981 0.9980 +26160 29959 0.5680 +26160 51057 0.5150 +26160 51098 0.9970 +26160 51134 0.4890 +26160 51259 0.4740 +26160 51626 0.7310 +26160 51668 0.9890 +26160 51684 0.7790 +26160 51715 0.4130 +26160 54585 0.5040 +26160 54806 0.5050 +26160 54903 0.5430 +26160 55081 0.9990 +26160 55112 0.6830 +26160 55212 0.6970 +26160 55349 0.5640 +26160 55764 0.9450 +26160 56912 0.9980 +26160 57216 0.7260 +26160 57539 0.8870 +26160 57545 0.6100 +26160 57560 0.9990 +26160 57576 0.5880 +26160 57728 0.9350 +26160 64792 0.9920 +26160 64837 0.5390 +26160 64838 0.5440 +26160 65062 0.4240 +26160 79583 0.4200 +26160 79600 0.4210 +26160 79635 0.5020 +26160 79659 0.8780 +26160 79696 0.4920 +26160 79738 0.5700 +26160 79768 0.4250 +26160 79809 0.9140 +26160 79867 0.6370 +26160 79925 0.5200 +26160 79955 0.4660 +26160 79989 0.9890 +26160 80173 0.9930 +26160 80184 0.6460 +26160 80776 0.5140 +26160 84450 0.5300 +26160 89884 0.6750 +26160 89891 0.7030 +26160 89953 0.5640 +26160 90410 0.9960 +26160 91147 0.5940 +26160 92104 0.9730 +26160 92482 0.5450 +26160 95681 0.4170 +26160 112752 0.8570 +26160 129880 0.6450 +26160 130557 0.4640 +26160 132884 0.4990 +26160 147700 0.5350 +26160 150737 0.9890 +26160 153241 0.5470 +26160 157657 0.6520 +26160 166379 0.5440 +26160 199223 0.6240 +26160 200634 0.4380 +26160 200894 0.6420 +26160 203286 0.4740 +26160 255758 0.5800 +26160 261734 0.5060 +26160 284086 0.4160 +26160 374654 0.5520 +26160 100129239 0.4910 +26164 26284 0.7810 +26164 26589 0.8180 +26164 26995 0.5830 +26164 27079 0.4310 +26164 27292 0.4160 +26164 28977 0.8130 +26164 28998 0.8790 +26164 29074 0.8140 +26164 29083 0.7350 +26164 29088 0.8480 +26164 29093 0.8740 +26164 29789 0.4130 +26164 29960 0.9630 +26164 51001 0.5700 +26164 51021 0.5180 +26164 51069 0.8850 +26164 51073 0.8740 +26164 51081 0.5290 +26164 51106 0.4280 +26164 51121 0.4180 +26164 51154 0.4230 +26164 51253 0.8430 +26164 51258 0.8000 +26164 51263 0.8060 +26164 51264 0.9350 +26164 51318 0.8010 +26164 51335 0.5920 +26164 51642 0.8160 +26164 54148 0.8440 +26164 54516 0.5000 +26164 54534 0.8090 +26164 54663 0.4090 +26164 54948 0.8870 +26164 55005 0.4220 +26164 55037 0.4530 +26164 55052 0.9400 +26164 55157 0.5590 +26164 55168 0.8090 +26164 55178 0.7160 +26164 55194 0.4740 +26164 55245 0.5290 +26164 55794 0.7320 +26164 56945 0.4590 +26164 57129 0.8370 +26164 60558 0.6100 +26164 63875 0.9200 +26164 64928 0.8620 +26164 64975 0.8280 +26164 64976 0.8400 +26164 64978 0.8250 +26164 64979 0.8950 +26164 64981 0.8110 +26164 64983 0.9150 +26164 65003 0.9030 +26164 65005 0.9050 +26164 65008 0.5450 +26164 65080 0.8560 +26164 78988 0.8120 +26164 79590 0.8940 +26164 79863 0.5250 +26164 79922 0.7280 +26164 80324 0.4490 +26164 84273 0.8940 +26164 84311 0.8440 +26164 84340 0.4600 +26164 84545 0.8110 +26164 84705 0.5820 +26164 84769 0.4700 +26164 84869 0.4170 +26164 84881 0.7230 +26164 85865 0.5600 +26164 87178 0.5020 +26164 90480 0.8370 +26164 91574 0.4280 +26164 92170 0.9760 +26164 92399 0.5770 +26164 113000 0.4260 +26164 115416 0.9870 +26164 116540 0.8380 +26164 116541 0.8210 +26164 117246 0.4060 +26164 122704 0.8120 +26164 123263 0.4490 +26164 124454 0.4460 +26164 124637 0.4430 +26164 124995 0.8270 +26164 128308 0.8110 +26164 130916 0.9460 +26164 135114 0.4230 +26164 138428 0.4370 +26164 219927 0.9260 +26164 285367 0.6190 +26164 374659 0.5640 +26164 387338 0.9430 +26164 127898561 0.8300 +26165 124783 0.8540 +26165 283847 0.4510 +26165 285641 0.7780 +26165 401387 0.5210 +26166 51302 0.4760 +26166 51478 0.6160 +26166 51504 0.4870 +26166 84752 0.4260 +26166 152573 0.4570 +26166 255308 0.4790 +26166 286151 0.8430 +26166 346562 0.4020 +26166 347475 0.4760 +26166 387509 0.4010 +26167 56121 0.4040 +26167 56125 0.5320 +26167 56129 0.4720 +26167 56130 0.4920 +26167 56132 0.5200 +26167 56133 0.7200 +26167 57717 0.4520 +26167 58494 0.4090 +26167 79544 0.4050 +26167 84814 0.4470 +26167 91807 0.6120 +26167 123099 0.4690 +26168 26354 0.4610 +26168 26953 0.4560 +26168 27042 0.5360 +26168 27043 0.9970 +26168 27340 0.5260 +26168 27341 0.5930 +26168 27351 0.6250 +26168 29843 0.4080 +26168 29889 0.8150 +26168 29915 0.5500 +26168 51029 0.6100 +26168 51077 0.5000 +26168 51096 0.6160 +26168 51118 0.5800 +26168 51121 0.5340 +26168 51202 0.5220 +26168 51230 0.9050 +26168 51588 0.6580 +26168 51602 0.6320 +26168 54555 0.5370 +26168 54881 0.9980 +26168 55127 0.5670 +26168 55143 0.6360 +26168 55272 0.5450 +26168 55746 0.5320 +26168 55759 0.5940 +26168 55813 0.5930 +26168 57050 0.6040 +26168 57337 0.6200 +26168 57418 0.9750 +26168 57647 0.5540 +26168 57680 0.9080 +26168 59343 0.4300 +26168 65083 0.6130 +26168 79050 0.5540 +26168 79707 0.9520 +26168 79711 0.4910 +26168 81875 0.4490 +26168 81887 0.9960 +26168 84128 0.5440 +26168 84135 0.5920 +26168 84148 0.9100 +26168 84661 0.7080 +26168 84823 0.6840 +26168 84901 0.5090 +26168 84916 0.5580 +26168 88745 0.5090 +26168 90459 0.4130 +26168 92856 0.5660 +26168 116832 0.4990 +26168 120892 0.5280 +26168 123228 0.8900 +26168 124944 0.9010 +26168 125476 0.9000 +26168 131474 0.4780 +26168 133482 0.5070 +26168 140801 0.5370 +26168 155061 0.4100 +26168 200916 0.5170 +26168 205564 0.4990 +26168 284058 0.9000 +26168 286053 0.6430 +26168 387082 0.7500 +26168 729857 0.4770 +26168 100529209 0.6130 +26173 26512 0.9990 +26173 29101 0.5220 +26173 29894 0.6970 +26173 51010 0.4260 +26173 51497 0.8140 +26173 51585 0.5500 +26173 51692 0.5570 +26173 51750 0.5170 +26173 53981 0.5810 +26173 54973 0.9990 +26173 55037 0.4310 +26173 55051 0.4020 +26173 55174 0.9990 +26173 55339 0.6380 +26173 55511 0.6100 +26173 55656 0.9990 +26173 55726 0.9990 +26173 55756 0.9990 +26173 57117 0.9990 +26173 57130 0.4770 +26173 57505 0.5160 +26173 57508 0.9990 +26173 57592 0.9940 +26173 58493 0.4460 +26173 63891 0.4210 +26173 64859 0.5560 +26173 65123 0.9990 +26173 79034 0.9980 +26173 79035 0.9970 +26173 79778 0.4230 +26173 80153 0.5350 +26173 80233 0.6270 +26173 80789 0.9990 +26173 81556 0.9990 +26173 81608 0.5760 +26173 84261 0.4870 +26173 92105 0.9990 +26173 114034 0.4510 +26173 146705 0.4440 +26173 203522 0.9970 +26173 283989 0.4110 +26173 338657 0.4010 +26173 399909 0.7930 +26173 441519 0.6100 +26173 441521 0.6100 +26173 541465 0.6100 +26173 541466 0.6100 +26173 728911 0.6100 +26173 101060211 0.6100 +26173 102723631 0.6100 +26173 102723680 0.6100 +26173 102723737 0.6100 +26175 27097 0.5200 +26175 170394 0.6060 +26175 440026 0.4780 +26175 728224 0.4920 +26188 26531 0.5290 +26188 51764 0.6810 +26188 125958 0.5140 +26188 132112 0.4280 +26188 168433 0.4380 +26188 284451 0.4300 +26188 284521 0.5100 +26188 343169 0.6540 +26188 378925 0.4230 +26188 387273 0.4950 +26188 391196 0.5380 +26188 401427 0.4990 +26188 440050 0.4480 +26188 440051 0.5720 +26189 51234 0.4280 +26189 51764 0.6610 +26189 83901 0.4500 +26189 344892 0.4100 +26189 728318 0.4360 +26189 100505724 0.5520 +26190 26224 0.6570 +26190 26234 0.5110 +26190 26259 0.6590 +26190 26268 0.4630 +26190 26270 0.5380 +26190 26272 0.6850 +26190 26330 0.4060 +26190 26985 0.4610 +26190 51077 0.5310 +26190 51362 0.4010 +26190 51455 0.6830 +26190 51552 0.4180 +26190 53981 0.4370 +26190 54461 0.7240 +26190 54878 0.4200 +26190 54928 0.4180 +26190 55003 0.5620 +26190 55135 0.4520 +26190 55294 0.7350 +26190 55832 0.7110 +26190 57148 0.4650 +26190 63971 0.4050 +26190 80829 0.5690 +26190 81545 0.4660 +26190 83752 0.4110 +26190 84261 0.6770 +26190 84516 0.7790 +26190 93594 0.4610 +26190 114088 0.4730 +26190 115290 0.7290 +26190 115825 0.4120 +26190 123879 0.5060 +26190 133121 0.4110 +26190 134492 0.4300 +26190 139067 0.8130 +26190 153527 0.4100 +26190 158135 0.4480 +26190 246175 0.4050 +26190 285231 0.4600 +26191 29851 0.4040 +26191 50943 0.5300 +26191 51284 0.4830 +26191 51311 0.4210 +26191 51573 0.5650 +26191 53347 0.6720 +26191 54106 0.4260 +26191 54665 0.5850 +26191 54899 0.6990 +26191 54901 0.5270 +26191 55024 0.7690 +26191 55532 0.4450 +26191 57379 0.4810 +26191 57623 0.5220 +26191 57661 0.5930 +26191 57705 0.4280 +26191 60468 0.5640 +26191 63874 0.5270 +26191 64127 0.5170 +26191 64135 0.6840 +26191 79092 0.4220 +26191 79722 0.4890 +26191 79837 0.5090 +26191 79841 0.4200 +26191 80018 0.4450 +26191 80332 0.4500 +26191 83648 0.4780 +26191 114904 0.4790 +26191 115352 0.8090 +26191 117289 0.5660 +26191 149233 0.6810 +26191 167826 0.6440 +26191 169026 0.4710 +26191 170685 0.6300 +26191 222236 0.5010 +26191 260425 0.6200 +26191 345611 0.5590 +26191 440603 0.4780 +26205 50861 0.5260 +26205 51343 0.6410 +26205 51750 0.4020 +26205 57585 0.4550 +26205 57621 0.4810 +26205 79025 0.5590 +26205 79034 0.5330 +26205 84619 0.6230 +26205 84905 0.4860 +26205 140685 0.4130 +26205 140690 0.4110 +26205 140701 0.4050 +26205 219743 0.5110 +26205 221496 0.4800 +26206 27033 0.5910 +26206 27156 0.4260 +26206 27285 0.8380 +26206 29105 0.8230 +26206 29922 0.8000 +26206 51754 0.5370 +26206 54471 0.4290 +26206 55130 0.5460 +26206 55329 0.8220 +26206 56952 0.4290 +26206 64518 0.9130 +26206 64776 0.8000 +26206 64800 0.5410 +26206 79582 0.5730 +26206 79645 0.5560 +26206 79657 0.4990 +26206 79925 0.4530 +26206 80258 0.8380 +26206 81576 0.4280 +26206 83538 0.5290 +26206 83659 0.8340 +26206 84681 0.4610 +26206 89876 0.5410 +26206 93190 0.8270 +26206 93233 0.5290 +26206 113746 0.4470 +26206 114327 0.8350 +26206 115948 0.5350 +26206 127003 0.8320 +26206 129881 0.8260 +26206 132851 0.4070 +26206 134121 0.8080 +26206 135138 0.8420 +26206 138162 0.8310 +26206 138255 0.8220 +26206 145788 0.8240 +26206 146845 0.8450 +26206 150483 0.8320 +26206 151651 0.8260 +26206 160762 0.4290 +26206 161502 0.8190 +26206 162517 0.6090 +26206 197335 0.4260 +26206 200162 0.6660 +26206 219670 0.8030 +26206 219681 0.4790 +26206 220136 0.8590 +26206 257177 0.9080 +26206 284325 0.5910 +26206 285555 0.5940 +26206 339778 0.8150 +26206 388701 0.8170 +26206 389799 0.8000 +26206 392307 0.4470 +26206 440585 0.8000 +26206 730112 0.8030 +26206 100128569 0.5070 +26207 57085 0.8380 +26207 81876 0.9130 +26207 83394 0.9150 +26207 399687 0.4470 +26211 26531 0.5200 +26211 50833 0.4400 +26211 51764 0.6850 +26211 79161 0.4060 +26211 79768 0.4450 +26211 83857 0.4460 +26211 125958 0.5320 +26211 284521 0.5090 +26211 391196 0.4990 +26211 401427 0.5120 +26212 51764 0.6780 +26219 26740 0.7870 +26219 51764 0.6780 +26219 57191 0.4790 +26219 84125 0.4480 +26219 158131 0.4040 +26219 158506 0.5060 +26219 282973 0.4180 +26219 340562 0.5440 +26219 440087 0.6580 +26219 642475 0.4820 +26219 642799 0.4090 +26224 26234 0.5690 +26224 26259 0.4740 +26224 26263 0.4910 +26224 26268 0.5630 +26224 26270 0.5080 +26224 26272 0.7180 +26224 26273 0.5390 +26224 26330 0.4300 +26224 26985 0.4110 +26224 51122 0.4430 +26224 54165 0.4180 +26224 54461 0.6470 +26224 55294 0.6530 +26224 55832 0.6970 +26224 56938 0.5130 +26224 57606 0.4670 +26224 79365 0.4140 +26224 83752 0.4160 +26224 84261 0.4920 +26224 115290 0.5370 +26224 123879 0.5040 +26224 140459 0.4470 +26224 157574 0.4360 +26224 222235 0.6630 +26224 102800317 0.5210 +26225 26286 0.5500 +26225 50618 0.5450 +26225 51285 0.4740 +26225 51542 0.6660 +26225 55275 0.5510 +26225 55610 0.4740 +26225 81573 0.4170 +26225 84364 0.4270 +26225 90196 0.4620 +26225 133482 0.4070 +26227 26330 0.5430 +26227 26589 0.4100 +26227 27291 0.4330 +26227 29127 0.4100 +26227 29924 0.6390 +26227 29958 0.6820 +26227 29968 0.9990 +26227 51144 0.5030 +26227 51264 0.4490 +26227 51268 0.4570 +26227 51529 0.6750 +26227 51608 0.4290 +26227 51710 0.4120 +26227 51806 0.5990 +26227 54443 0.4280 +26227 54776 0.4070 +26227 54847 0.4350 +26227 55040 0.6530 +26227 55052 0.4010 +26227 55066 0.5090 +26227 55258 0.4850 +26227 55294 0.4370 +26227 55364 0.6870 +26227 55636 0.5400 +26227 55705 0.5880 +26227 55811 0.5550 +26227 55902 0.6100 +26227 56257 0.4110 +26227 56339 0.4660 +26227 56852 0.4200 +26227 56965 0.4520 +26227 57129 0.4020 +26227 57469 0.4990 +26227 63826 0.4690 +26227 63875 0.4480 +26227 64083 0.4180 +26227 64374 0.4310 +26227 64981 0.4050 +26227 65005 0.4140 +26227 65985 0.4330 +26227 79068 0.4170 +26227 79668 0.4420 +26227 79833 0.4260 +26227 79896 0.4880 +26227 80818 0.4110 +26227 80824 0.4920 +26227 84532 0.5870 +26227 84545 0.4010 +26227 84706 0.7140 +26227 84823 0.4450 +26227 84969 0.6900 +26227 91860 0.5920 +26227 92283 0.6960 +26227 94239 0.4860 +26227 114112 0.4110 +26227 115560 0.4120 +26227 126119 0.4290 +26227 133482 0.5810 +26227 137902 0.4730 +26227 148266 0.4150 +26227 160428 0.5350 +26227 163688 0.5970 +26227 192670 0.4030 +26227 200014 0.4090 +26227 200895 0.4770 +26227 219927 0.4510 +26227 255743 0.4070 +26227 260434 0.5310 +26227 284390 0.4110 +26227 440093 0.5010 +26227 440686 0.5010 +26227 441024 0.4700 +26227 441531 0.9260 +26227 653604 0.5010 +26227 729857 0.5960 +26228 26499 0.4970 +26228 29760 0.4050 +26228 30011 0.8610 +26228 55024 0.5110 +26228 57705 0.4250 +26228 150379 0.4320 +26228 199786 0.5000 +26228 255738 0.5110 +26229 27087 0.5640 +26229 27333 0.6490 +26229 29940 0.4310 +26229 50515 0.4360 +26229 51000 0.5800 +26229 51363 0.4670 +26229 54480 0.6590 +26229 54490 0.4640 +26229 54579 0.4390 +26229 54600 0.4140 +26229 54659 0.4200 +26229 55454 0.9670 +26229 55501 0.4900 +26229 55624 0.4080 +26229 55790 0.9610 +26229 55831 0.4060 +26229 56548 0.4760 +26229 57614 0.4710 +26229 63827 0.4360 +26229 64131 0.7820 +26229 64132 0.7720 +26229 64743 0.4820 +26229 79586 0.6650 +26229 79799 0.4630 +26229 80146 0.6640 +26229 81576 0.6710 +26229 84197 0.4910 +26229 92370 0.7430 +26229 113189 0.5960 +26229 126792 0.9810 +26229 135152 0.5350 +26229 152002 0.4190 +26229 166012 0.5000 +26229 221914 0.5260 +26229 347734 0.8100 +26229 375790 0.4950 +26229 574537 0.4640 +26230 26499 0.5680 +26230 49861 0.6030 +26230 50508 0.4240 +26230 79718 0.4030 +26230 80205 0.4340 +26230 85441 0.4270 +26230 154043 0.5360 +26230 645191 0.4360 +26232 26233 0.4090 +26232 26260 0.4730 +26232 26270 0.9620 +26232 26272 0.9420 +26232 29914 0.8300 +26232 50863 0.5680 +26232 54455 0.4330 +26232 55294 0.9450 +26232 55832 0.5230 +26232 56605 0.6090 +26232 57154 0.6040 +26232 57540 0.8770 +26232 80204 0.5090 +26232 81849 0.4390 +26232 84128 0.4190 +26232 84961 0.4400 +26232 84976 0.4610 +26232 90231 0.4470 +26232 114907 0.4600 +26232 115290 0.5220 +26232 123879 0.4990 +26232 144699 0.4430 +26232 146330 0.4810 +26232 157574 0.5210 +26232 200933 0.4670 +26232 222235 0.4600 +26232 254170 0.4290 +26232 283807 0.4870 +26233 26272 0.4480 +26233 29894 0.5280 +26233 50626 0.4120 +26233 54850 0.4930 +26233 55336 0.5860 +26233 55630 0.4530 +26233 79581 0.6750 +26233 113655 0.4970 +26233 146330 0.5320 +26233 157574 0.5210 +26233 203054 0.6930 +26233 340390 0.4490 +26233 727957 0.4930 +26234 26259 0.4690 +26234 26270 0.5390 +26234 26272 0.5320 +26234 26330 0.4030 +26234 26985 0.4050 +26234 28982 0.5110 +26234 30061 0.4860 +26234 51647 0.8790 +26234 54461 0.6410 +26234 54850 0.5240 +26234 55240 0.5940 +26234 55294 0.6320 +26234 55640 0.4260 +26234 55832 0.5710 +26234 57231 0.4480 +26234 57817 0.4380 +26234 63971 0.4260 +26234 64210 0.8750 +26234 79035 0.4600 +26234 79441 0.4420 +26234 80204 0.6100 +26234 84191 0.5080 +26234 84261 0.6720 +26234 84461 0.5130 +26234 123879 0.5000 +26234 144699 0.7260 +26234 200933 0.5470 +26235 27248 0.6630 +26235 50484 0.5750 +26235 51319 0.4490 +26235 51805 0.4380 +26235 53339 0.4510 +26235 55068 0.4200 +26235 55175 0.4180 +26235 55610 0.4430 +26235 55667 0.4220 +26235 55750 0.4750 +26235 55832 0.5560 +26235 56652 0.5840 +26235 58516 0.4070 +26235 64077 0.4080 +26235 79634 0.4360 +26235 84553 0.5530 +26235 84947 0.4530 +26235 85015 0.4120 +26235 92667 0.6380 +26235 114026 0.4090 +26235 115948 0.4270 +26235 121274 0.4440 +26235 122769 0.4050 +26235 123879 0.4990 +26235 246243 0.5030 +26235 253714 0.4110 +26235 259232 0.4420 +26239 27178 0.4010 +26239 54544 0.6780 +26239 83606 0.5910 +26239 83902 0.6010 +26239 84648 0.9050 +26239 126638 0.7120 +26239 145264 0.5460 +26239 149018 0.5370 +26239 149708 0.4320 +26239 163778 0.5120 +26239 170680 0.4400 +26239 199834 0.9290 +26239 254910 0.8580 +26239 353131 0.9990 +26239 353132 0.9680 +26239 353133 0.9010 +26239 353134 0.9160 +26239 353135 0.8600 +26239 353137 0.9610 +26239 353139 0.9080 +26239 353140 0.9990 +26239 353141 0.9990 +26239 353142 0.8280 +26239 353143 0.6780 +26239 353144 0.5610 +26239 353145 0.8460 +26239 374454 0.4460 +26239 388698 0.7830 +26239 448834 0.5520 +26239 448835 0.9990 +26239 100129271 0.8060 +26239 100996717 0.5910 +26240 27189 0.4690 +26240 54913 0.4350 +26240 57683 0.6070 +26240 79903 0.4320 +26240 84292 0.4300 +26240 91833 0.4950 +26240 112609 0.4120 +26240 138716 0.5060 +26240 145376 0.4350 +26240 146434 0.5100 +26240 221749 0.5180 +26240 266812 0.5340 +26240 100101490 0.5910 +26245 26496 0.4910 +26245 51764 0.6780 +26245 132112 0.4040 +26245 196477 0.4610 +26245 245940 0.4180 +26245 338398 0.5740 +26245 728137 0.4040 +26245 100289087 0.4180 +26246 51764 0.6780 +26246 55069 0.4460 +26246 200403 0.4480 +26248 51764 0.7100 +26248 55731 0.4630 +26248 255762 0.5580 +26248 375307 0.4470 +26249 26263 0.4650 +26249 27252 0.9080 +26249 27347 0.7800 +26249 28952 0.4990 +26249 28991 0.4990 +26249 29099 0.4990 +26249 51088 0.4810 +26249 51122 0.4990 +26249 51397 0.4990 +26249 51667 0.4410 +26249 53339 0.4330 +26249 54165 0.5430 +26249 54442 0.6400 +26249 54800 0.7410 +26249 54939 0.4990 +26249 54951 0.5330 +26249 55175 0.5420 +26249 55208 0.5040 +26249 55832 0.6280 +26249 55958 0.9210 +26249 55975 0.9140 +26249 57542 0.9190 +26249 57563 0.9050 +26249 59349 0.9750 +26249 64410 0.9090 +26249 64839 0.5420 +26249 65125 0.9520 +26249 65266 0.9880 +26249 65267 0.8860 +26249 65268 0.6940 +26249 79734 0.9240 +26249 80311 0.4090 +26249 83892 0.7340 +26249 84078 0.9010 +26249 84259 0.5520 +26249 84503 0.4830 +26249 84541 0.9210 +26249 84861 0.9180 +26249 89890 0.9070 +26249 90135 0.4090 +26249 90293 0.9160 +26249 131377 0.7850 +26249 140838 0.6270 +26249 149951 0.5030 +26249 150684 0.4990 +26249 170622 0.4990 +26249 253980 0.9060 +26249 339451 0.5960 +26249 339745 0.9110 +26249 390594 0.5040 +26249 401265 0.5180 +26249 553115 0.7490 +26249 100507747 0.4160 +26251 28998 0.4570 +26251 29093 0.5030 +26251 51065 0.5040 +26251 51069 0.4620 +26251 51073 0.4320 +26251 51081 0.5030 +26251 51116 0.4230 +26251 51121 0.5160 +26251 51149 0.5010 +26251 51154 0.4210 +26251 55173 0.5090 +26251 55272 0.4950 +26251 55316 0.5010 +26251 55742 0.5170 +26251 56648 0.4260 +26251 56963 0.4390 +26251 63931 0.5010 +26251 64960 0.5010 +26251 64963 0.5010 +26251 64969 0.4640 +26251 65003 0.4790 +26251 65008 0.4690 +26251 79590 0.5160 +26251 80148 0.4640 +26251 90134 0.5060 +26251 93107 0.4420 +26251 114987 0.4460 +26251 126402 0.5190 +26251 140032 0.4890 +26251 143244 0.4260 +26251 149111 0.7480 +26251 170850 0.4970 +26251 200916 0.4750 +26251 285855 0.4500 +26251 347487 0.4220 +26251 387129 0.4520 +26251 389206 0.4090 +26251 100287482 0.4220 +26251 100505478 0.4500 +26251 100526842 0.5030 +26251 100529097 0.4960 +26251 100529239 0.5030 +26253 29121 0.4830 +26253 30835 0.4390 +26253 50856 0.5530 +26253 51266 0.6170 +26253 51267 0.7350 +26253 51284 0.4960 +26253 51311 0.6560 +26253 54106 0.5530 +26253 54210 0.5220 +26253 58484 0.5170 +26253 64127 0.5490 +26253 64170 0.8770 +26253 64581 0.5000 +26253 79230 0.4140 +26253 79595 0.7080 +26253 93978 0.7670 +26253 114548 0.5190 +26253 149628 0.4030 +26253 160364 0.5950 +26253 163351 0.4600 +26253 283420 0.5820 +26253 338339 0.9860 +26253 730249 0.5790 +26254 27122 0.4010 +26254 29880 0.4190 +26254 60506 0.6360 +26254 83546 0.5740 +26254 140683 0.4920 +26254 140902 0.4360 +26254 375790 0.4600 +26256 26330 0.4770 +26256 53340 0.9500 +26256 54558 0.5280 +26256 54763 0.9530 +26256 54859 0.4610 +26256 54870 0.5040 +26256 55779 0.4860 +26256 57489 0.4420 +26256 64518 0.4410 +26256 80217 0.4590 +26256 80705 0.5050 +26256 81833 0.4690 +26256 83853 0.9160 +26256 83890 0.4220 +26256 83893 0.4920 +26256 83953 0.4140 +26256 83983 0.4810 +26256 84074 0.4420 +26256 84075 0.9560 +26256 93034 0.4060 +26256 113746 0.4350 +26256 114822 0.7610 +26256 117144 0.4250 +26256 146852 0.4590 +26256 150483 0.5830 +26256 162333 0.4720 +26256 203068 0.4130 +26256 219670 0.4150 +26256 220082 0.4580 +26256 283629 0.6270 +26256 338949 0.4540 +26256 339829 0.4550 +26256 374768 0.4680 +26256 375307 0.5230 +26256 401024 0.5150 +26257 27023 0.4080 +26257 51562 0.4050 +26257 64754 0.8620 +26258 27131 0.5110 +26258 30818 0.4270 +26258 51012 0.4460 +26258 51019 0.5100 +26258 51057 0.6230 +26258 51151 0.4310 +26258 51429 0.5060 +26258 54885 0.7020 +26258 55076 0.6310 +26258 55330 0.9990 +26258 55653 0.9220 +26258 57536 0.7850 +26258 63915 0.9990 +26258 63971 0.4040 +26258 79036 0.5420 +26258 79068 0.5130 +26258 79710 0.6660 +26258 79803 0.9860 +26258 79871 0.7820 +26258 81567 0.8010 +26258 83938 0.5240 +26258 84061 0.5140 +26258 84062 0.9990 +26258 84343 0.9820 +26258 89781 0.9640 +26258 114803 0.4070 +26258 118426 0.5800 +26258 119032 0.6150 +26258 121053 0.4500 +26258 129138 0.4530 +26258 130340 0.5070 +26258 134147 0.4130 +26258 145282 0.9990 +26258 151473 0.4030 +26258 157769 0.4900 +26258 201294 0.4330 +26258 220134 0.5910 +26258 282991 0.9990 +26258 283652 0.4500 +26258 284346 0.4920 +26258 286451 0.5360 +26258 375035 0.7790 +26258 388135 0.5910 +26258 388552 0.9990 +26259 26268 0.4810 +26259 26271 0.4220 +26259 26272 0.8370 +26259 51133 0.4800 +26259 51725 0.4660 +26259 54461 0.5550 +26259 54850 0.5470 +26259 55070 0.5350 +26259 55294 0.5740 +26259 55832 0.6270 +26259 55954 0.4290 +26259 57473 0.4700 +26259 63901 0.4350 +26259 64689 0.5980 +26259 79923 0.4180 +26259 83894 0.4240 +26259 83987 0.7950 +26259 84261 0.4590 +26259 84900 0.4290 +26259 90102 0.4050 +26259 93621 0.5170 +26259 123879 0.5030 +26259 146059 0.4430 +26259 285231 0.4530 +26259 729873 0.4100 +26260 26268 0.4530 +26260 54432 0.7760 +26260 54461 0.5240 +26260 55163 0.4720 +26260 55294 0.4730 +26260 80204 0.5160 +26260 84236 0.4750 +26260 84961 0.4650 +26260 114907 0.9300 +26260 144699 0.4910 +26260 157695 0.7060 +26260 157697 0.5810 +26260 169270 0.6070 +26260 200933 0.4790 +26260 254170 0.5920 +26260 283807 0.4170 +26260 554251 0.4190 +26261 54850 0.5250 +26261 55170 0.4990 +26261 57513 0.4120 +26261 84444 0.4110 +26261 134492 0.7700 +26262 27075 0.5770 +26262 51236 0.4390 +26262 56894 0.4020 +26262 79803 0.5380 +26262 80789 0.4970 +26262 84317 0.4010 +26262 347734 0.4090 +26263 26272 0.4280 +26263 51263 0.4500 +26263 55030 0.4350 +26263 55759 0.6200 +26263 55832 0.5510 +26263 92912 0.5580 +26263 123879 0.4990 +26263 200933 0.4280 +26263 222235 0.4890 +26266 51371 0.5200 +26266 57835 0.4390 +26266 80227 0.8470 +26266 84262 0.4450 +26266 115584 0.4730 +26266 245911 0.5200 +26266 254428 0.4590 +26266 389362 0.4710 +26267 26268 0.4490 +26267 54496 0.4650 +26267 55170 0.4090 +26267 55294 0.4080 +26267 55832 0.5240 +26267 56341 0.4380 +26267 81607 0.4360 +26267 84978 0.4540 +26267 90826 0.6720 +26267 123879 0.5070 +26267 135892 0.4670 +26267 203259 0.4790 +26267 286362 0.4180 +26267 401505 0.4140 +26268 26272 0.6730 +26268 29903 0.4740 +26268 51447 0.4040 +26268 54438 0.4540 +26268 55213 0.4230 +26268 55832 0.5690 +26268 55854 0.4470 +26268 65993 0.4260 +26268 80204 0.5830 +26268 84678 0.4040 +26268 84893 0.4730 +26268 89970 0.4990 +26268 123879 0.4990 +26268 131601 0.4130 +26268 200933 0.5110 +26269 26355 0.4490 +26269 54622 0.4090 +26269 55916 0.6080 +26269 56889 0.4260 +26269 56904 0.4430 +26269 56941 0.4110 +26269 56943 0.5290 +26269 57001 0.4470 +26269 80817 0.6090 +26269 84314 0.5470 +26269 84437 0.4310 +26269 113510 0.4380 +26269 115201 0.7830 +26269 158835 0.5230 +26269 169200 0.4410 +26270 26272 0.6450 +26270 26330 0.4010 +26270 27348 0.4120 +26270 53343 0.5040 +26270 54455 0.4430 +26270 54461 0.5540 +26270 54726 0.5910 +26270 54978 0.6250 +26270 55070 0.4560 +26270 55294 0.5650 +26270 55768 0.4330 +26270 55832 0.6990 +26270 56605 0.4490 +26270 56893 0.6000 +26270 57154 0.5280 +26270 83666 0.4920 +26270 83732 0.4870 +26270 83752 0.4210 +26270 83987 0.4420 +26270 84261 0.5120 +26270 85441 0.4220 +26270 91373 0.4300 +26270 94240 0.4020 +26270 123879 0.5060 +26270 157574 0.4980 +26270 200879 0.4100 +26271 26272 0.4780 +26271 26586 0.4380 +26271 27338 0.6600 +26271 28998 0.5670 +26271 29028 0.5130 +26271 29093 0.5290 +26271 29104 0.7790 +26271 29127 0.5020 +26271 29789 0.5690 +26271 29882 0.9890 +26271 29945 0.9990 +26271 51021 0.7190 +26271 51053 0.8670 +26271 51067 0.4820 +26271 51069 0.4610 +26271 51073 0.5110 +26271 51081 0.5750 +26271 51116 0.5000 +26271 51121 0.4860 +26271 51149 0.5170 +26271 51154 0.5460 +26271 51203 0.7370 +26271 51264 0.7050 +26271 51343 0.9980 +26271 51409 0.7790 +26271 51433 0.9770 +26271 51434 0.9270 +26271 51512 0.4590 +26271 51514 0.6520 +26271 51529 0.6900 +26271 51659 0.5560 +26271 54443 0.4090 +26271 54821 0.5750 +26271 54908 0.5530 +26271 54948 0.4650 +26271 55010 0.4610 +26271 55030 0.4550 +26271 55052 0.6940 +26271 55055 0.4440 +26271 55143 0.6620 +26271 55165 0.5240 +26271 55173 0.6070 +26271 55215 0.4080 +26271 55247 0.4940 +26271 55272 0.5360 +26271 55294 0.4040 +26271 55316 0.4940 +26271 55355 0.4150 +26271 55388 0.6450 +26271 55635 0.4570 +26271 55723 0.4380 +26271 55789 0.4830 +26271 55839 0.4260 +26271 56992 0.5760 +26271 57038 0.4400 +26271 57136 0.4530 +26271 57405 0.5010 +26271 57695 0.4980 +26271 60558 0.4250 +26271 63875 0.7070 +26271 63931 0.5120 +26271 63967 0.5830 +26271 64105 0.5120 +26271 64151 0.6240 +26271 64374 0.4250 +26271 64682 0.9690 +26271 64946 0.6930 +26271 64960 0.5310 +26271 64963 0.5400 +26271 64965 0.7220 +26271 64968 0.7140 +26271 64969 0.5660 +26271 64979 0.6650 +26271 64983 0.6860 +26271 65005 0.6990 +26271 65008 0.5740 +26271 79075 0.4450 +26271 79590 0.4880 +26271 79682 0.4830 +26271 79733 0.5330 +26271 79791 0.4730 +26271 79801 0.4090 +26271 79866 0.4820 +26271 81620 0.6830 +26271 81669 0.7190 +26271 81930 0.5890 +26271 83461 0.4270 +26271 83540 0.6240 +26271 84057 0.4390 +26271 84340 0.5120 +26271 84893 0.4610 +26271 84930 0.4390 +26271 87178 0.5070 +26271 90417 0.4390 +26271 115106 0.4790 +26271 119504 0.9690 +26271 122706 0.4150 +26271 126402 0.5650 +26271 140801 0.4250 +26271 143471 0.4290 +26271 144455 0.4660 +26271 151246 0.4240 +26271 151648 0.4340 +26271 157313 0.6010 +26271 219927 0.6490 +26271 220134 0.4750 +26271 246184 0.9810 +26271 259266 0.5820 +26271 285855 0.4270 +26271 347487 0.4920 +26271 387129 0.4020 +26271 100287482 0.4920 +26271 100505478 0.4020 +26271 100526842 0.5020 +26272 26277 0.5950 +26272 26985 0.4050 +26272 54461 0.6790 +26272 54850 0.4690 +26272 55135 0.4490 +26272 55294 0.9490 +26272 55336 0.4330 +26272 55832 0.5780 +26272 63971 0.4070 +26272 80204 0.5860 +26272 83941 0.4590 +26272 84128 0.4050 +26272 84261 0.5370 +26272 84893 0.4470 +26272 89978 0.4630 +26272 123879 0.4990 +26272 200933 0.4470 +26272 285636 0.6770 +26273 27292 0.5390 +26273 28996 0.5340 +26273 51106 0.5330 +26273 55745 0.4260 +26273 55892 0.4710 +26273 57154 0.4990 +26273 64216 0.5460 +26273 64844 0.4240 +26273 80006 0.4350 +26273 80204 0.4720 +26273 84897 0.4620 +26273 84955 0.6260 +26273 153443 0.5330 +26273 201973 0.4570 +26273 254228 0.4340 +26273 100131378 0.6040 +26275 26589 0.9610 +26275 27034 0.7150 +26275 27349 0.4360 +26275 28976 0.6310 +26275 28998 0.9460 +26275 29088 0.8910 +26275 29093 0.9410 +26275 29988 0.4060 +26275 51014 0.5530 +26275 51021 0.9540 +26275 51023 0.7770 +26275 51031 0.4110 +26275 51069 0.8970 +26275 51073 0.9430 +26275 51081 0.9500 +26275 51084 0.4670 +26275 51116 0.8770 +26275 51144 0.4100 +26275 51263 0.7920 +26275 51264 0.8970 +26275 51497 0.4560 +26275 54511 0.5530 +26275 54884 0.4220 +26275 54948 0.9410 +26275 55052 0.4080 +26275 55168 0.7770 +26275 55173 0.9540 +26275 55268 0.7440 +26275 55289 0.4680 +26275 55825 0.4110 +26275 55856 0.4700 +26275 55862 0.7670 +26275 55902 0.4180 +26275 56898 0.4080 +26275 56922 0.6350 +26275 57129 0.9420 +26275 57508 0.7140 +26275 57591 0.4410 +26275 57687 0.5630 +26275 60488 0.9630 +26275 63875 0.9400 +26275 63931 0.9450 +26275 64064 0.4710 +26275 64087 0.5140 +26275 64432 0.5400 +26275 64745 0.9140 +26275 64902 0.4400 +26275 64960 0.9640 +26275 64963 0.9530 +26275 64965 0.9690 +26275 64968 0.9440 +26275 64969 0.9700 +26275 64975 0.9420 +26275 64976 0.8990 +26275 64978 0.6380 +26275 64979 0.9510 +26275 64981 0.8930 +26275 64983 0.8920 +26275 65003 0.8370 +26275 65080 0.8940 +26275 65121 0.4160 +26275 65122 0.4160 +26275 65985 0.4200 +26275 79611 0.4300 +26275 80724 0.4740 +26275 81031 0.4100 +26275 84129 0.5280 +26275 84263 0.8010 +26275 84281 0.5340 +26275 84532 0.4120 +26275 84545 0.9420 +26275 84656 0.7460 +26275 84693 0.5780 +26275 84795 0.4270 +26275 84869 0.4670 +26275 84883 0.4040 +26275 84945 0.4350 +26275 90313 0.4290 +26275 90624 0.6380 +26275 114134 0.4060 +26275 114781 0.6220 +26275 116541 0.4370 +26275 124359 0.4840 +26275 124995 0.5110 +26275 126402 0.7780 +26275 132949 0.4360 +26275 137872 0.6460 +26275 140856 0.4120 +26275 148022 0.5480 +26275 150209 0.4020 +26275 150709 0.4150 +26275 154091 0.4080 +26275 157310 0.6470 +26275 171425 0.4710 +26275 197322 0.5890 +26275 254042 0.4430 +26275 284422 0.4980 +26275 339229 0.6050 +26275 343068 0.4160 +26275 343070 0.4160 +26275 345051 0.6460 +26275 353376 0.5480 +26275 390999 0.4160 +26275 391002 0.4160 +26275 400735 0.4160 +26275 400736 0.4160 +26275 440560 0.4160 +26275 440561 0.4160 +26275 441873 0.4160 +26275 641776 0.4990 +26275 643909 0.4990 +26275 645359 0.4160 +26275 653247 0.4060 +26275 653619 0.4160 +26275 728524 0.4990 +26275 729528 0.4160 +26275 100131211 0.5070 +26275 100302736 0.5480 +26275 100996746 0.4990 +26275 101929983 0.4160 +26275 105180390 0.4990 +26275 105180391 0.4990 +26275 109703458 0.4520 +26275 122405565 0.4980 +26276 27072 0.9950 +26276 28952 0.7920 +26276 51209 0.8090 +26276 51542 0.4130 +26276 51560 0.5770 +26276 51622 0.8290 +26276 54455 0.5320 +26276 54925 0.4470 +26276 55014 0.6560 +26276 55088 0.4380 +26276 55176 0.5030 +26276 55275 0.6180 +26276 55298 0.7770 +26276 55610 0.4310 +26276 55633 0.4620 +26276 55684 0.6060 +26276 55737 0.4130 +26276 55823 0.9960 +26276 56850 0.4180 +26276 57143 0.4770 +26276 57505 0.4490 +26276 57617 0.9950 +26276 57794 0.4380 +26276 63894 0.9990 +26276 64284 0.4550 +26276 64601 0.9950 +26276 64779 0.5330 +26276 64852 0.4420 +26276 65082 0.9390 +26276 80270 0.4030 +26276 81876 0.8130 +26276 83452 0.4880 +26276 83871 0.5440 +26276 84084 0.5770 +26276 84315 0.4110 +26276 84936 0.5010 +26276 84952 0.4820 +26276 90678 0.4610 +26276 90809 0.4700 +26276 143187 0.8960 +26276 143872 0.4740 +26276 146059 0.5300 +26276 150684 0.5920 +26276 165055 0.4760 +26276 170622 0.6750 +26276 200014 0.4260 +26276 203062 0.5950 +26276 203245 0.6220 +26276 221785 0.6300 +26276 221960 0.8340 +26276 338382 0.7380 +26276 339122 0.4820 +26276 347517 0.5770 +26276 374659 0.6260 +26276 401409 0.4810 +26277 27127 0.5370 +26277 27283 0.7740 +26277 50511 0.5370 +26277 51119 0.4760 +26277 51127 0.7880 +26277 51655 0.4240 +26277 51750 0.9390 +26277 54145 0.5370 +26277 54386 0.9990 +26277 54433 0.7040 +26277 54921 0.5070 +26277 54984 0.4750 +26277 55135 0.9000 +26277 55247 0.5600 +26277 55291 0.5470 +26277 55505 0.9510 +26277 55651 0.9460 +26277 55766 0.5290 +26277 56158 0.4990 +26277 56905 0.4130 +26277 57804 0.5130 +26277 63922 0.5070 +26277 64858 0.9510 +26277 79075 0.5020 +26277 79650 0.5810 +26277 79991 0.8950 +26277 80119 0.5640 +26277 80169 0.9720 +26277 80351 0.5930 +26277 84464 0.5850 +26277 85236 0.5410 +26277 93426 0.5060 +26277 94239 0.5360 +26277 128312 0.5370 +26277 145645 0.5120 +26277 255626 0.5300 +26277 256126 0.4990 +26277 283129 0.5060 +26277 283847 0.6730 +26277 389493 0.6210 +26277 474382 0.5280 +26277 642489 0.4560 +26277 644186 0.4990 +26277 729238 0.4820 +26277 100134934 0.8180 +26278 29068 0.4050 +26278 54726 0.4100 +26278 56256 0.4500 +26278 57495 0.5390 +26278 65065 0.4310 +26278 80209 0.4410 +26278 131118 0.4720 +26278 133121 0.4590 +26278 360023 0.4030 +26279 30814 0.6410 +26279 50487 0.9830 +26279 50640 0.4420 +26279 54947 0.7450 +26279 55349 0.6000 +26279 56994 0.7000 +26279 64600 0.5630 +26279 79153 0.7070 +26279 79888 0.6700 +26279 81490 0.6500 +26279 81579 0.9470 +26279 84647 0.5330 +26279 85465 0.6500 +26279 113612 0.6560 +26279 122618 0.6630 +26279 123745 0.4060 +26279 133121 0.6940 +26279 151056 0.7740 +26279 254531 0.6970 +26279 255043 0.6510 +26279 283748 0.4140 +26279 284161 0.7170 +26279 284541 0.6730 +26279 375775 0.6650 +26279 387521 0.6520 +26279 387522 0.6670 +26280 26525 0.5750 +26280 27178 0.5710 +26280 27328 0.4340 +26280 29071 0.4160 +26280 51314 0.4360 +26280 59350 0.4080 +26280 84639 0.5890 +26280 84668 0.4080 +26280 90167 0.4100 +26280 93377 0.4420 +26280 117154 0.6970 +26281 27006 0.4920 +26281 27020 0.4170 +26281 27121 0.4640 +26281 29126 0.4050 +26281 30816 0.5170 +26281 30849 0.4990 +26281 51176 0.4510 +26281 51330 0.7160 +26281 51806 0.5990 +26281 53834 0.7690 +26281 54106 0.5740 +26281 54361 0.4280 +26281 63892 0.4400 +26281 79923 0.5190 +26281 80781 0.6850 +26281 85027 0.4290 +26281 85443 0.4250 +26281 89780 0.5500 +26281 91860 0.5940 +26281 137902 0.5040 +26281 152831 0.9050 +26281 163688 0.5950 +26281 221154 0.7670 +26281 284654 0.4370 +26281 285888 0.4700 +26281 286097 0.7830 +26281 399687 0.4020 +26281 405754 0.5070 +26284 26995 0.5310 +26284 27292 0.4910 +26284 27349 0.9490 +26284 28957 0.9590 +26284 28973 0.9800 +26284 28998 0.4330 +26284 29083 0.6680 +26284 29102 0.6020 +26284 29960 0.6750 +26284 51001 0.7390 +26284 51021 0.9910 +26284 51023 0.9680 +26284 51081 0.9960 +26284 51095 0.4780 +26284 51106 0.9730 +26284 51116 0.9890 +26284 51204 0.5410 +26284 51373 0.9800 +26284 51520 0.4130 +26284 51642 0.5390 +26284 51649 0.9760 +26284 51650 0.9590 +26284 54059 0.8900 +26284 54460 0.9780 +26284 54516 0.4390 +26284 54931 0.4330 +26284 54995 0.4780 +26284 54998 0.9610 +26284 55005 0.4960 +26284 55006 0.5320 +26284 55037 0.9870 +26284 55157 0.4580 +26284 55168 0.8530 +26284 55173 0.9860 +26284 55178 0.6000 +26284 55210 0.4120 +26284 55247 0.5230 +26284 55687 0.4550 +26284 55699 0.4140 +26284 55794 0.7730 +26284 56652 0.6680 +26284 56945 0.9920 +26284 60488 0.9760 +26284 60491 0.5470 +26284 60493 0.4400 +26284 60528 0.4330 +26284 60558 0.5820 +26284 63899 0.4870 +26284 63931 0.9790 +26284 64216 0.5910 +26284 64432 0.9800 +26284 64745 0.9280 +26284 64756 0.5720 +26284 64949 0.9870 +26284 64951 0.9670 +26284 64960 0.9840 +26284 64963 0.9190 +26284 64965 0.9870 +26284 64968 0.9850 +26284 64969 0.9810 +26284 65003 0.5760 +26284 65005 0.5810 +26284 65080 0.7210 +26284 65993 0.9850 +26284 79072 0.4950 +26284 79863 0.6380 +26284 79877 0.4130 +26284 79922 0.6170 +26284 79947 0.5090 +26284 80324 0.4170 +26284 80347 0.5340 +26284 81892 0.4840 +26284 84273 0.9760 +26284 84311 0.5530 +26284 84705 0.7840 +26284 84769 0.5090 +26284 84881 0.5880 +26284 85476 0.4700 +26284 85865 0.7680 +26284 87178 0.4830 +26284 90480 0.5840 +26284 91574 0.4010 +26284 92170 0.7580 +26284 92259 0.8330 +26284 92399 0.5930 +26284 115416 0.6380 +26284 116150 0.4990 +26284 118487 0.8450 +26284 123263 0.4650 +26284 126789 0.4390 +26284 129531 0.4710 +26284 130916 0.5490 +26284 153443 0.4670 +26284 158787 0.4430 +26284 196074 0.5530 +26284 203100 0.4310 +26284 219402 0.6790 +26284 285367 0.5940 +26284 387338 0.6970 +26285 27134 0.7750 +26285 49861 0.6990 +26285 51208 0.7030 +26285 53842 0.7110 +26285 56288 0.6740 +26285 56914 0.4180 +26285 57115 0.4300 +26285 90952 0.6600 +26285 114771 0.4220 +26285 137075 0.7150 +26285 149461 0.6750 +26285 154664 0.4270 +26285 166752 0.4580 +26285 222553 0.4840 +26285 375519 0.4620 +26285 644672 0.8170 +26285 100132463 0.7160 +26285 100288814 0.8000 +26285 100506658 0.7660 +26286 26958 0.7940 +26286 29127 0.5000 +26286 51014 0.5460 +26286 51143 0.5070 +26286 51164 0.5040 +26286 51226 0.6760 +26286 54732 0.6270 +26286 55083 0.4990 +26286 55582 0.4990 +26286 55605 0.5010 +26286 55614 0.4990 +26286 55738 0.8890 +26286 55860 0.5340 +26286 56992 0.5010 +26286 64083 0.4300 +26286 64837 0.5170 +26286 81624 0.4150 +26286 81876 0.5340 +26286 81930 0.4990 +26286 84364 0.7650 +26286 84516 0.5040 +26286 84643 0.4990 +26286 89953 0.5150 +26286 90990 0.5050 +26286 92345 0.5020 +26286 93661 0.4990 +26286 114960 0.6010 +26286 124602 0.4990 +26286 140735 0.5030 +26286 146909 0.4990 +26286 147700 0.5060 +26286 221458 0.4990 +26286 285643 0.4990 +26286 343702 0.4530 +26287 27063 0.5280 +26287 27302 0.4030 +26287 29895 0.4020 +26287 51778 0.7080 +26287 58529 0.5570 +26287 84665 0.7480 +26287 92591 0.5020 +26287 112817 0.4980 +26287 127294 0.4990 +26287 131377 0.5040 +26287 142689 0.4030 +26287 157567 0.4810 +26287 165904 0.4220 +26287 200539 0.5780 +26287 442721 0.4360 +26289 27010 0.9130 +26289 27115 0.6900 +26289 29093 0.4470 +26289 29922 0.8370 +26289 29927 0.5620 +26289 30833 0.6890 +26289 50484 0.7420 +26289 50808 0.5190 +26289 50940 0.6640 +26289 51022 0.4240 +26289 51069 0.4800 +26289 51073 0.4800 +26289 51081 0.4250 +26289 51121 0.4100 +26289 51154 0.4780 +26289 51251 0.6500 +26289 51314 0.4150 +26289 54948 0.4340 +26289 55173 0.4810 +26289 55176 0.5620 +26289 55272 0.4880 +26289 55316 0.4210 +26289 55591 0.4430 +26289 55703 0.4280 +26289 56474 0.4070 +26289 56896 0.5240 +26289 56953 0.6890 +26289 63875 0.5180 +26289 63931 0.4210 +26289 64374 0.4340 +26289 64963 0.4700 +26289 64965 0.5260 +26289 64969 0.5470 +26289 64979 0.6140 +26289 65008 0.4440 +26289 79590 0.4100 +26289 79631 0.4460 +26289 80128 0.5290 +26289 83475 0.4430 +26289 84284 0.9050 +26289 84618 0.7120 +26289 84661 0.4430 +26289 85476 0.4460 +26289 91875 0.4070 +26289 93034 0.7060 +26289 115024 0.6500 +26289 122481 0.8490 +26289 126402 0.4250 +26289 129607 0.4670 +26289 136332 0.4810 +26289 139596 0.4200 +26289 140801 0.4340 +26289 158067 0.6490 +26289 221264 0.8070 +26289 222235 0.5600 +26289 374659 0.4440 +26289 374986 0.4110 +26289 377841 0.6800 +26289 387129 0.4140 +26289 402665 0.5400 +26289 654364 0.7520 +26289 100526794 0.7060 +26289 100526842 0.4470 +26289 102157402 0.5280 +26290 29071 0.7510 +26290 55808 0.9280 +26290 56667 0.4010 +26290 56913 0.7750 +26290 118430 0.4150 +26290 140453 0.4080 +26290 143662 0.4200 +26290 192134 0.9080 +26290 727897 0.4360 +26290 728819 0.7120 +26291 51085 0.6290 +26291 51129 0.5060 +26291 51738 0.5290 +26291 55600 0.4540 +26291 56729 0.5720 +26291 57104 0.5810 +26291 57818 0.4860 +26291 63924 0.6440 +26291 63976 0.6310 +26291 79006 0.5070 +26291 80339 0.4490 +26291 83401 0.5070 +26291 83854 0.4790 +26291 84649 0.4140 +26291 84666 0.5420 +26291 84699 0.7550 +26291 92579 0.4790 +26291 116519 0.5870 +26291 126129 0.4030 +26291 137902 0.4060 +26291 145264 0.5450 +26291 145957 0.5820 +26291 151306 0.4510 +26291 152831 0.9990 +26291 197021 0.4210 +26291 219623 0.5060 +26291 252995 0.7750 +26291 255738 0.4070 +26291 284207 0.4460 +26291 440275 0.5060 +26292 54726 0.5440 +26292 54810 0.4350 +26292 55718 0.4010 +26292 78987 0.4410 +26292 79925 0.4280 +26292 85452 0.4580 +26292 89876 0.9410 +26292 90417 0.4420 +26292 90835 0.5500 +26292 118491 0.4150 +26292 132851 0.4320 +26292 136332 0.8360 +26292 197335 0.5520 +26292 200162 0.5040 +26292 387712 0.4650 +26297 51606 0.4470 +26297 55140 0.4430 +26297 55170 0.5870 +26297 55266 0.5000 +26297 55770 0.9120 +26297 56159 0.4130 +26297 56253 0.4100 +26297 84317 0.5630 +26297 85002 0.4510 +26297 92715 0.5270 +26297 113174 0.5430 +26297 133482 0.4290 +26297 196441 0.4860 +26297 256957 0.5710 +26297 285381 0.9990 +26297 340990 0.4900 +26297 387707 0.4260 +26298 51074 0.6670 +26298 448834 0.4710 +26301 53947 0.5110 +26301 57697 0.5320 +26301 285362 0.4050 +26330 27231 0.4490 +26330 51071 0.8570 +26330 51074 0.4460 +26330 51087 0.4080 +26330 51151 0.4850 +26330 51154 0.4120 +26330 51314 0.4940 +26330 51348 0.4120 +26330 51412 0.4270 +26330 51444 0.4640 +26330 51686 0.4810 +26330 54148 0.4260 +26330 54461 0.4130 +26330 54763 0.4940 +26330 54941 0.4950 +26330 54963 0.4430 +26330 54981 0.4150 +26330 55122 0.4440 +26330 55135 0.4130 +26330 55145 0.4330 +26330 55244 0.5740 +26330 55293 0.5690 +26330 55294 0.4060 +26330 55856 0.4370 +26330 55957 0.4230 +26330 56952 0.4460 +26330 56965 0.5220 +26330 57103 0.4850 +26330 64422 0.4870 +26330 79631 0.5230 +26330 79668 0.5220 +26330 79797 0.4550 +26330 83549 0.4540 +26330 83752 0.4830 +26330 83853 0.4520 +26330 83983 0.5170 +26330 84075 0.5330 +26330 84076 0.9420 +26330 84261 0.4270 +26330 84654 0.4510 +26330 84879 0.4440 +26330 85476 0.4330 +26330 92483 0.6520 +26330 117144 0.4010 +26330 126321 0.4590 +26330 126393 0.4340 +26330 129831 0.4310 +26330 130589 0.4410 +26330 130752 0.6310 +26330 132158 0.8120 +26330 135293 0.4500 +26330 137362 0.5290 +26330 137682 0.5840 +26330 137872 0.4200 +26330 140625 0.4510 +26330 146802 0.5630 +26330 160287 0.6230 +26330 200162 0.4080 +26330 246243 0.7610 +26330 254528 0.4430 +26330 255220 0.4190 +26330 283629 0.5690 +26330 340390 0.5840 +26330 387332 0.5540 +26330 387712 0.7430 +26330 388931 0.4440 +26330 399949 0.5010 +26330 441531 0.6440 +26330 493869 0.5390 +26330 548596 0.4640 +26330 728378 0.4200 +26330 729020 0.4670 +26333 51764 0.6780 +26333 619207 0.5060 +26338 51764 0.6870 +26338 84443 0.4430 +26338 219438 0.4150 +26338 219493 0.4190 +26338 386677 0.5060 +26338 390144 0.4840 +26338 400506 0.4160 +26338 728299 0.5900 +26339 26531 0.5270 +26339 51764 0.6780 +26339 125958 0.5310 +26339 284521 0.5150 +26339 391196 0.5080 +26339 401427 0.4990 +26341 51764 0.6810 +26341 79632 0.4320 +26341 115106 0.4520 +26341 166863 0.4410 +26341 374864 0.4480 +26341 378807 0.4010 +26341 387778 0.4720 +26341 644844 0.4790 +26353 26580 0.5410 +26353 27129 0.9120 +26353 51398 0.5400 +26353 51668 0.4630 +26353 51699 0.7240 +26353 51726 0.7800 +26353 54332 0.5810 +26353 55172 0.5400 +26353 55466 0.4240 +26353 55526 0.4220 +26353 56984 0.7200 +26353 57003 0.5400 +26353 57449 0.4270 +26353 64127 0.5880 +26353 65055 0.4120 +26353 79628 0.4790 +26353 79657 0.5530 +26353 81572 0.5400 +26353 81846 0.4200 +26353 83594 0.4530 +26353 94086 0.6830 +26353 120379 0.5400 +26353 121512 0.4140 +26353 126393 0.7930 +26353 150160 0.5620 +26353 157753 0.4340 +26353 171024 0.7310 +26353 203228 0.5320 +26353 253980 0.4340 +26353 259217 0.4140 +26354 26574 0.6870 +26354 26953 0.4170 +26354 26995 0.4240 +26354 27000 0.6180 +26354 27037 0.4280 +26354 27042 0.5240 +26354 27043 0.5470 +26354 27161 0.5160 +26354 27292 0.7070 +26354 27340 0.5110 +26354 27341 0.4380 +26354 28972 0.4430 +26354 28987 0.7480 +26354 28998 0.6040 +26354 29083 0.6010 +26354 29088 0.5540 +26354 29093 0.4750 +26354 29777 0.4230 +26354 29889 0.9970 +26354 29960 0.5660 +26354 29997 0.8950 +26354 30836 0.4220 +26354 51018 0.7490 +26354 51042 0.9150 +26354 51065 0.5010 +26354 51068 0.9140 +26354 51073 0.4590 +26354 51082 0.7100 +26354 51096 0.6810 +26354 51118 0.6710 +26354 51121 0.6240 +26354 51147 0.4260 +26354 51154 0.9810 +26354 51187 0.9700 +26354 51202 0.8120 +26354 51236 0.4380 +26354 51264 0.5340 +26354 51319 0.4330 +26354 51388 0.9750 +26354 51491 0.4810 +26354 51574 0.6130 +26354 51575 0.8090 +26354 51602 0.9460 +26354 51605 0.4290 +26354 54433 0.7570 +26354 54463 0.5530 +26354 54475 0.9580 +26354 54517 0.6510 +26354 54552 0.9220 +26354 54555 0.6270 +26354 54606 0.9190 +26354 54663 0.9270 +26354 54700 0.4830 +26354 54865 0.4750 +26354 54881 0.8510 +26354 54888 0.7670 +26354 54948 0.4830 +26354 54984 0.6780 +26354 55003 0.7740 +26354 55006 0.4060 +26354 55127 0.6770 +26354 55131 0.8600 +26354 55140 0.4260 +26354 55153 0.9760 +26354 55170 0.4410 +26354 55178 0.4620 +26354 55226 0.8700 +26354 55269 0.5420 +26354 55272 0.5310 +26354 55299 0.9800 +26354 55319 0.4320 +26354 55341 0.8070 +26354 55505 0.4100 +26354 55622 0.5330 +26354 55646 0.7450 +26354 55651 0.7860 +26354 55663 0.4260 +26354 55695 0.5140 +26354 55703 0.6400 +26354 55720 0.8950 +26354 55759 0.9880 +26354 55760 0.6750 +26354 55781 0.6800 +26354 55794 0.6720 +26354 55813 0.7430 +26354 55830 0.5940 +26354 55854 0.4160 +26354 56341 0.4660 +26354 56342 0.7330 +26354 56474 0.4310 +26354 56647 0.8000 +26354 56902 0.6460 +26354 56919 0.4340 +26354 56931 0.4700 +26354 56937 0.4280 +26354 57050 0.8790 +26354 57062 0.7570 +26354 57129 0.5990 +26354 57418 0.8880 +26354 57696 0.8790 +26354 60487 0.5800 +26354 63875 0.6790 +26354 63899 0.5770 +26354 64102 0.4100 +26354 64118 0.6450 +26354 64216 0.6790 +26354 64318 0.9590 +26354 64425 0.7250 +26354 64434 0.4040 +26354 64794 0.5300 +26354 64983 0.5490 +26354 65083 0.7530 +26354 65095 0.5740 +26354 79009 0.5170 +26354 79039 0.8880 +26354 79050 0.7240 +26354 79137 0.5110 +26354 79159 0.6820 +26354 79590 0.4730 +26354 79707 0.5080 +26354 79711 0.7070 +26354 79728 0.4590 +26354 79730 0.4960 +26354 79922 0.4530 +26354 79923 0.4960 +26354 79954 0.7130 +26354 79979 0.4230 +26354 80135 0.9720 +26354 81887 0.5780 +26354 83448 0.5880 +26354 83475 0.4490 +26354 83479 0.4280 +26354 83480 0.4140 +26354 83732 0.4280 +26354 83743 0.8680 +26354 84128 0.8150 +26354 84135 0.5140 +26354 84154 0.9810 +26354 84172 0.8190 +26354 84294 0.6400 +26354 84365 0.9960 +26354 84444 0.4160 +26354 84545 0.4970 +26354 84549 0.9760 +26354 84705 0.5640 +26354 84916 0.8370 +26354 84946 0.8680 +26354 90121 0.6270 +26354 90441 0.6090 +26354 90826 0.4120 +26354 91646 0.4230 +26354 92856 0.8140 +26354 115416 0.6550 +26354 115708 0.5830 +26354 116832 0.6310 +26354 116966 0.7030 +26354 117246 0.9720 +26354 120892 0.4010 +26354 142940 0.5950 +26354 146212 0.8900 +26354 155368 0.4090 +26354 161424 0.6330 +26354 162427 0.5090 +26354 165545 0.6500 +26354 200916 0.6340 +26354 219927 0.5820 +26354 221078 0.9280 +26354 221830 0.7790 +26354 254268 0.5150 +26354 285855 0.7850 +26354 317781 0.4300 +26354 344758 0.4230 +26354 345630 0.6870 +26354 387129 0.7720 +26354 387338 0.5800 +26354 692312 0.6260 +26354 100505478 0.5600 +26354 100526842 0.5490 +26354 114483834 0.4100 +26355 55916 0.4960 +26355 56942 0.6240 +26355 56943 0.4430 +26355 65991 0.4210 +26355 84314 0.4560 +26355 131076 0.4660 +26355 134492 0.4870 +26355 157378 0.4430 +26355 158835 0.5140 +26355 165631 0.4350 +26355 401152 0.4500 +26468 51176 0.5590 +26468 53919 0.4050 +26468 54662 0.4110 +26468 55079 0.4180 +26468 55102 0.5330 +26468 55553 0.6110 +26468 56033 0.5810 +26468 57026 0.4110 +26468 57030 0.4370 +26468 63973 0.4580 +26468 64919 0.4480 +26468 84304 0.5990 +26468 84504 0.5180 +26468 93986 0.5660 +26468 120237 0.6410 +26468 140679 0.4980 +26468 149603 0.4140 +26468 167410 0.4330 +26468 170463 0.7980 +26468 170825 0.6420 +26468 219409 0.5980 +26468 221833 0.4980 +26468 340784 0.6820 +26468 431707 0.4840 +26468 100131390 0.4130 +26469 27178 0.4990 +26469 50649 0.4150 +26469 84867 0.4500 +26469 130813 0.5070 +26469 143162 0.6350 +26470 57685 0.4040 +26470 79153 0.5030 +26470 79447 0.5730 +26470 83719 0.6130 +26470 83723 0.5790 +26470 84866 0.4440 +26470 112476 0.6620 +26470 124446 0.5870 +26470 124930 0.4730 +26470 146378 0.5920 +26470 253980 0.7240 +26470 253982 0.8690 +26470 283897 0.6090 +26470 283899 0.6150 +26470 641649 0.4550 +26470 653808 0.4760 +26471 51155 0.4070 +26471 53407 0.4500 +26471 55684 0.4430 +26471 55818 0.8090 +26471 55911 0.4700 +26471 57761 0.5540 +26471 79094 0.4450 +26471 79874 0.5290 +26471 90417 0.4500 +26471 94241 0.7680 +26471 112869 0.4530 +26471 339287 0.6510 +26471 728689 0.4010 +26472 54866 0.8820 +26472 55617 0.4190 +26472 80755 0.4800 +26472 83707 0.4210 +26472 84304 0.6170 +26472 116729 0.4670 +26472 144110 0.4650 +26472 100885850 0.5040 +26476 51764 0.6830 +26476 64410 0.4760 +26476 90204 0.4180 +26476 140625 0.5280 +26493 26595 0.5820 +26493 51020 0.4350 +26493 51764 0.6810 +26493 55195 0.4870 +26493 155054 0.4480 +26493 219858 0.6370 +26493 283160 0.7890 +26493 283162 0.9990 +26493 341880 0.4180 +26493 390271 0.7840 +26494 26497 0.4010 +26494 51764 0.7740 +26494 53940 0.4260 +26494 54816 0.4300 +26494 55057 0.4300 +26494 85449 0.4160 +26496 26689 0.4260 +26496 51764 0.6790 +26496 84619 0.4770 +26496 91137 0.4700 +26496 151887 0.4450 +26496 257169 0.5190 +26496 284382 0.5790 +26496 338322 0.4930 +26496 642987 0.5930 +26497 51764 0.6780 +26497 283159 0.4810 +26499 26575 0.6760 +26499 27071 0.6870 +26499 27128 0.6310 +26499 29760 0.4070 +26499 29780 0.5430 +26499 30011 0.4930 +26499 50618 0.4810 +26499 50650 0.5190 +26499 50807 0.7360 +26499 51094 0.5000 +26499 51100 0.4300 +26499 51177 0.6160 +26499 51228 0.6100 +26499 51332 0.4900 +26499 51377 0.5390 +26499 51806 0.5190 +26499 54212 0.5190 +26499 54221 0.5050 +26499 54477 0.5780 +26499 54518 0.4270 +26499 54704 0.4340 +26499 55040 0.5190 +26499 55041 0.6020 +26499 55200 0.4900 +26499 55612 0.8000 +26499 55615 0.4050 +26499 55635 0.5970 +26499 55671 0.4970 +26499 55701 0.5400 +26499 55715 0.7020 +26499 55742 0.6300 +26499 55789 0.4810 +26499 55803 0.5700 +26499 55816 0.6650 +26499 55843 0.5420 +26499 57223 0.5400 +26499 57449 0.6810 +26499 57480 0.4920 +26499 57521 0.6640 +26499 57569 0.4610 +26499 57580 0.4920 +26499 57584 0.5380 +26499 57636 0.4680 +26499 57647 0.4470 +26499 57664 0.7330 +26499 58473 0.5920 +26499 59339 0.7170 +26499 60312 0.5060 +26499 64005 0.4570 +26499 64223 0.4550 +26499 64283 0.6240 +26499 64407 0.6640 +26499 64411 0.5680 +26499 64419 0.4500 +26499 64781 0.5400 +26499 64798 0.4470 +26499 65059 0.4870 +26499 65977 0.7820 +26499 79109 0.5060 +26499 79602 0.4200 +26499 79658 0.4180 +26499 79674 0.6100 +26499 81846 0.4930 +26499 83478 0.5000 +26499 83660 0.6530 +26499 83706 0.7360 +26499 84069 0.4100 +26499 84335 0.6220 +26499 84725 0.7030 +26499 85397 0.6680 +26499 89869 0.6940 +26499 90102 0.5530 +26499 91404 0.4970 +26499 91860 0.5220 +26499 94134 0.7210 +26499 113026 0.4620 +26499 114876 0.5680 +26499 114879 0.7370 +26499 114880 0.6940 +26499 114881 0.6660 +26499 114882 0.7030 +26499 114883 0.5430 +26499 114884 0.6170 +26499 114885 0.6160 +26499 115557 0.6370 +26499 116984 0.6150 +26499 116985 0.6570 +26499 116986 0.5490 +26499 116987 0.5070 +26499 121512 0.5700 +26499 133482 0.4800 +26499 139716 0.5990 +26499 160851 0.5710 +26499 163688 0.5190 +26499 200576 0.5760 +26499 220164 0.4970 +26499 253260 0.5740 +26499 401190 0.5120 +26499 431704 0.6780 +26499 440073 0.4620 +26502 51176 0.5140 +26502 51647 0.4510 +26502 54583 0.6530 +26502 56127 0.4080 +26502 57019 0.5230 +26502 57128 0.4050 +26502 57571 0.4750 +26502 64210 0.5230 +26502 80224 0.5080 +26502 112812 0.5970 +26502 113201 0.4050 +26503 29903 0.4430 +26503 54978 0.4130 +26503 55238 0.4640 +26503 55839 0.4470 +26503 55907 0.4750 +26503 56942 0.4140 +26503 57192 0.4160 +26503 64785 0.5050 +26503 79157 0.4200 +26503 89970 0.4580 +26503 115825 0.4670 +26503 116843 0.5100 +26503 256471 0.4800 +26504 26505 0.4190 +26504 27154 0.4480 +26504 54059 0.4350 +26504 54622 0.4520 +26504 54757 0.5690 +26504 54822 0.5980 +26504 54946 0.5340 +26504 57096 0.4170 +26504 57185 0.5830 +26504 57380 0.4450 +26504 64386 0.6750 +26504 79641 0.4980 +26504 79815 0.5570 +26504 81614 0.5250 +26504 83394 0.4140 +26504 84061 0.4620 +26504 84102 0.4770 +26504 85450 0.4010 +26504 90342 0.4460 +26504 92211 0.4180 +26504 93380 0.4090 +26504 93589 0.4040 +26504 94233 0.4220 +26504 123041 0.4180 +26504 140803 0.6830 +26504 151313 0.4250 +26504 152519 0.5540 +26504 152816 0.4790 +26504 153364 0.4630 +26504 157657 0.4180 +26504 169522 0.4220 +26504 254428 0.7010 +26504 256764 0.5070 +26504 286077 0.4930 +26504 348938 0.5210 +26504 375298 0.4680 +26505 51239 0.4540 +26505 51252 0.5450 +26505 54059 0.4410 +26505 54622 0.4830 +26505 54822 0.5130 +26505 54946 0.5400 +26505 57185 0.6060 +26505 57380 0.4700 +26505 79815 0.5950 +26505 81614 0.5530 +26505 84102 0.4970 +26505 140803 0.6020 +26505 150771 0.4530 +26505 151313 0.5770 +26505 152519 0.5930 +26505 254428 0.6860 +26505 348938 0.5820 +26505 375248 0.4040 +26507 54059 0.4300 +26507 54622 0.5270 +26507 54822 0.6040 +26507 54946 0.5140 +26507 57185 0.5190 +26507 57380 0.5050 +26507 60495 0.6550 +26507 79815 0.4950 +26507 81614 0.4500 +26507 81894 0.4230 +26507 84061 0.4480 +26507 84102 0.5970 +26507 123606 0.4370 +26507 124930 0.4020 +26507 140803 0.7030 +26507 152519 0.4940 +26507 254428 0.6760 +26507 348938 0.4630 +26507 645414 0.4380 +26508 28514 0.6310 +26508 54567 0.6260 +26508 55534 0.7640 +26508 84441 0.7680 +26508 285598 0.4780 +26508 390992 0.5990 +26508 441478 0.4770 +26509 29780 0.4340 +26509 30845 0.7110 +26509 30846 0.8180 +26509 57453 0.4450 +26509 64711 0.4750 +26509 79026 0.8490 +26509 81848 0.4910 +26509 83695 0.4090 +26509 85439 0.4130 +26509 113146 0.5360 +26509 219931 0.4310 +26509 493829 0.6070 +26511 81608 0.7690 +26511 84708 0.4090 +26511 170825 0.4240 +26512 29101 0.5170 +26512 29894 0.5250 +26512 51497 0.8100 +26512 51585 0.6490 +26512 51759 0.4340 +26512 53981 0.4560 +26512 54897 0.4290 +26512 54973 0.9990 +26512 55174 0.9990 +26512 55339 0.5400 +26512 55425 0.4110 +26512 55511 0.5740 +26512 55656 0.9990 +26512 55726 0.9990 +26512 55756 0.9990 +26512 57117 0.9990 +26512 57508 0.9990 +26512 57592 0.9940 +26512 58493 0.5780 +26512 64859 0.7930 +26512 65123 0.9990 +26512 79034 0.9980 +26512 79035 0.9980 +26512 80012 0.6310 +26512 80789 0.9990 +26512 81556 0.9990 +26512 81608 0.5470 +26512 92105 0.9990 +26512 115825 0.4290 +26512 196528 0.4250 +26512 203245 0.9940 +26512 203522 0.9980 +26512 253260 0.7800 +26512 441519 0.5400 +26512 441521 0.5440 +26512 541465 0.5510 +26512 541466 0.5680 +26512 647174 0.4890 +26512 728911 0.5490 +26512 101060211 0.5400 +26512 102723631 0.5400 +26512 102723680 0.5400 +26512 102723737 0.5470 +26515 26517 0.9200 +26515 26519 0.9990 +26515 26520 0.9970 +26515 26521 0.9430 +26515 26589 0.4900 +26515 26953 0.5490 +26515 29090 0.6450 +26515 29103 0.5100 +26515 29928 0.9970 +26515 51025 0.4850 +26515 51027 0.4310 +26515 51161 0.4400 +26515 51312 0.4500 +26515 54543 0.6920 +26515 55052 0.4200 +26515 55154 0.5870 +26515 55750 0.9980 +26515 55795 0.4450 +26515 56993 0.7900 +26515 58509 0.6220 +26515 60386 0.4050 +26515 64969 0.4440 +26515 65260 0.4510 +26515 79568 0.4060 +26515 79944 0.4030 +26515 80273 0.5070 +26515 83443 0.4510 +26515 83881 0.4310 +26515 84134 0.4160 +26515 84545 0.5780 +26515 90580 0.9990 +26515 92609 0.6690 +26515 124540 0.5460 +26515 131076 0.4080 +26515 131118 0.5480 +26515 131474 0.8610 +26515 140823 0.5130 +26515 158234 0.5550 +26515 401505 0.4390 +26515 493753 0.5410 +26515 493856 0.6420 +26515 100033411 0.4310 +26515 100287932 0.7940 +26515 100288687 0.4310 +26515 105371346 0.4310 +26515 112268164 0.4310 +26517 26519 0.9990 +26517 26520 0.9980 +26517 26521 0.9990 +26517 27089 0.5060 +26517 27429 0.4190 +26517 29090 0.6250 +26517 29113 0.4220 +26517 29928 0.8630 +26517 51025 0.6110 +26517 51079 0.5050 +26517 51142 0.6100 +26517 51287 0.5740 +26517 51690 0.4100 +26517 54543 0.6910 +26517 54902 0.4170 +26517 54927 0.4880 +26517 55052 0.5960 +26517 55486 0.4290 +26517 55505 0.4420 +26517 55651 0.6650 +26517 56942 0.4100 +26517 56993 0.8610 +26517 79145 0.5860 +26517 80273 0.4820 +26517 84134 0.5540 +26517 84269 0.5580 +26517 84316 0.4040 +26517 84823 0.8550 +26517 90580 0.4160 +26517 90639 0.6240 +26517 91419 0.4540 +26517 92609 0.8630 +26517 114789 0.4160 +26517 122961 0.4090 +26517 126328 0.4890 +26517 131076 0.5080 +26517 131118 0.6670 +26517 131474 0.9420 +26517 140823 0.6180 +26517 221154 0.4120 +26517 360200 0.8010 +26517 388753 0.6230 +26517 400916 0.5610 +26517 401505 0.6660 +26517 493753 0.6140 +26517 728489 0.5650 +26517 100188893 0.4380 +26517 100272147 0.5160 +26517 100287932 0.9850 +26519 26520 0.9990 +26519 26521 0.9720 +26519 26589 0.6630 +26519 27089 0.5190 +26519 28989 0.4860 +26519 28998 0.4470 +26519 29015 0.4150 +26519 29074 0.5060 +26519 29088 0.4440 +26519 29090 0.9700 +26519 29103 0.7830 +26519 29796 0.7530 +26519 29928 0.9980 +26519 30968 0.4210 +26519 51021 0.6200 +26519 51023 0.4860 +26519 51025 0.8650 +26519 51042 0.5990 +26519 51069 0.4320 +26519 51081 0.8530 +26519 51096 0.4130 +26519 51161 0.5140 +26519 51264 0.6810 +26519 51287 0.5220 +26519 51693 0.6470 +26519 51728 0.4450 +26519 54205 0.5020 +26519 54543 0.8260 +26519 54948 0.6520 +26519 54998 0.5840 +26519 55052 0.4390 +26519 55168 0.4730 +26519 55505 0.4540 +26519 55651 0.7060 +26519 55750 0.9780 +26519 56993 0.8690 +26519 58509 0.6300 +26519 63875 0.4440 +26519 63929 0.4150 +26519 64432 0.4910 +26519 64928 0.6430 +26519 64963 0.5190 +26519 64975 0.5230 +26519 64976 0.6500 +26519 64979 0.6580 +26519 64981 0.4370 +26519 65260 0.5110 +26519 79751 0.4230 +26519 80273 0.9370 +26519 80324 0.8410 +26519 83460 0.4180 +26519 83881 0.4270 +26519 84134 0.6170 +26519 84545 0.6540 +26519 90313 0.5130 +26519 90580 0.9930 +26519 90639 0.4390 +26519 91419 0.6990 +26519 91647 0.4390 +26519 91942 0.4570 +26519 92609 0.9450 +26519 116541 0.5270 +26519 118487 0.7280 +26519 125988 0.4240 +26519 126328 0.4530 +26519 128308 0.6850 +26519 131118 0.8820 +26519 131474 0.9930 +26519 134266 0.7500 +26519 140823 0.8740 +26519 152100 0.5140 +26519 158234 0.5400 +26519 219927 0.7830 +26519 267020 0.4620 +26519 285521 0.4880 +26519 345778 0.4250 +26519 387990 0.5120 +26519 388753 0.4460 +26519 388962 0.4790 +26519 401505 0.6120 +26519 493753 0.5720 +26519 493856 0.6330 +26519 728489 0.4750 +26519 100033411 0.4270 +26519 100188893 0.5450 +26519 100287932 0.9720 +26519 100288687 0.5680 +26519 105371346 0.4270 +26519 112268164 0.4270 +26520 26521 0.9680 +26520 27429 0.6170 +26520 29090 0.7780 +26520 29103 0.5510 +26520 29928 0.9990 +26520 51025 0.6470 +26520 51027 0.4640 +26520 51161 0.4930 +26520 51258 0.4250 +26520 51318 0.4570 +26520 51499 0.4720 +26520 51637 0.4570 +26520 54539 0.4500 +26520 54543 0.8380 +26520 55052 0.5110 +26520 55173 0.4330 +26520 55750 0.9890 +26520 56993 0.8690 +26520 58509 0.6290 +26520 65260 0.5630 +26520 80273 0.4880 +26520 83443 0.4580 +26520 83881 0.4310 +26520 84134 0.5010 +26520 84545 0.5540 +26520 90580 0.9930 +26520 90639 0.4990 +26520 91419 0.6610 +26520 92609 0.7370 +26520 122961 0.4850 +26520 131076 0.6680 +26520 131118 0.7900 +26520 131474 0.9750 +26520 133686 0.4570 +26520 140823 0.5820 +26520 158234 0.5490 +26520 285521 0.4140 +26520 387990 0.5600 +26520 388753 0.4720 +26520 401505 0.5720 +26520 493753 0.7300 +26520 493856 0.6300 +26520 100033411 0.4310 +26520 100188893 0.5200 +26520 100287932 0.9610 +26520 100288687 0.6290 +26520 105371346 0.4310 +26520 112268164 0.4310 +26521 27089 0.4830 +26521 28998 0.4370 +26521 29090 0.4950 +26521 29796 0.5710 +26521 29928 0.8130 +26521 29952 0.8440 +26521 51021 0.4920 +26521 51023 0.4740 +26521 51025 0.4370 +26521 51079 0.4990 +26521 51081 0.4100 +26521 51142 0.5330 +26521 51204 0.4040 +26521 51258 0.6350 +26521 51287 0.6390 +26521 51529 0.6370 +26521 51642 0.4070 +26521 51650 0.6860 +26521 54460 0.6370 +26521 54534 0.4010 +26521 54539 0.4450 +26521 54543 0.7560 +26521 54927 0.4140 +26521 54949 0.4540 +26521 55052 0.5340 +26521 55154 0.5300 +26521 55216 0.5890 +26521 56942 0.4250 +26521 56993 0.7830 +26521 57129 0.4400 +26521 60386 0.4070 +26521 65260 0.4060 +26521 79085 0.4910 +26521 79145 0.5520 +26521 79751 0.4100 +26521 81892 0.4640 +26521 84134 0.5010 +26521 84269 0.4950 +26521 84300 0.4740 +26521 84337 0.4470 +26521 84817 0.7980 +26521 84833 0.6070 +26521 84987 0.4050 +26521 90580 0.4010 +26521 90639 0.4730 +26521 92259 0.5130 +26521 92609 0.4980 +26521 116540 0.4540 +26521 118487 0.6450 +26521 122704 0.5440 +26521 125150 0.4290 +26521 131076 0.4220 +26521 131118 0.4870 +26521 131474 0.7650 +26521 140823 0.4620 +26521 196294 0.4700 +26521 219927 0.4300 +26521 388753 0.5960 +26521 400916 0.4980 +26521 401505 0.5870 +26521 100272147 0.5290 +26521 100287932 0.8210 +26523 26986 0.8610 +26523 27044 0.6570 +26523 27067 0.6830 +26523 27161 0.9990 +26523 27257 0.6580 +26523 27287 0.5170 +26523 27327 0.9990 +26523 29102 0.9890 +26523 29880 0.4580 +26523 29883 0.4820 +26523 50628 0.7800 +26523 51202 0.4030 +26523 51320 0.6080 +26523 51367 0.7200 +26523 51593 0.6650 +26523 51692 0.4210 +26523 51701 0.5040 +26523 53981 0.4440 +26523 54145 0.5490 +26523 54464 0.8070 +26523 54487 0.9520 +26523 54847 0.6170 +26523 54913 0.7200 +26523 54915 0.4200 +26523 54931 0.5510 +26523 55170 0.4130 +26523 55534 0.5040 +26523 55766 0.4990 +26523 55802 0.8390 +26523 55904 0.4440 +26523 56052 0.5730 +26523 56478 0.5290 +26523 56903 0.6340 +26523 57169 0.4370 +26523 57332 0.5120 +26523 57472 0.4220 +26523 57510 0.9780 +26523 58508 0.4360 +26523 60681 0.5140 +26523 64083 0.6670 +26523 64506 0.4270 +26523 64895 0.6510 +26523 65080 0.5060 +26523 79009 0.4070 +26523 79670 0.4010 +26523 79727 0.6320 +26523 79869 0.4730 +26523 79897 0.7210 +26523 80012 0.5170 +26523 80153 0.6380 +26523 80746 0.5400 +26523 81887 0.5350 +26523 83641 0.5100 +26523 83989 0.4390 +26523 84206 0.8680 +26523 84441 0.4990 +26523 84661 0.4110 +26523 84733 0.4990 +26523 84955 0.6240 +26523 85236 0.5460 +26523 90459 0.4820 +26523 92312 0.6730 +26523 94239 0.5510 +26523 113802 0.6820 +26523 114928 0.5220 +26523 120892 0.8420 +26523 128312 0.5480 +26523 131405 0.4660 +26523 138716 0.5420 +26523 143689 0.4620 +26523 149041 0.4020 +26523 161882 0.4110 +26523 167153 0.4030 +26523 167227 0.9720 +26523 170506 0.4090 +26523 192669 0.9880 +26523 192670 0.9930 +26523 201164 0.4420 +26523 202658 0.4140 +26523 219988 0.6790 +26523 255626 0.5460 +26523 283989 0.5400 +26523 284021 0.5500 +26523 387332 0.6280 +26523 399664 0.7510 +26523 440093 0.4300 +26523 440686 0.4300 +26523 474382 0.4990 +26523 653604 0.7040 +26524 27063 0.4980 +26524 29072 0.5070 +26524 51421 0.9340 +26524 54487 0.7460 +26524 54899 0.4190 +26524 55233 0.9970 +26524 55841 0.5770 +26524 57608 0.7290 +26524 60485 0.9980 +26524 60561 0.4910 +26524 63970 0.4280 +26524 64080 0.4240 +26524 79817 0.4880 +26524 80014 0.6160 +26524 81532 0.4370 +26524 83737 0.4860 +26524 84231 0.4140 +26524 84951 0.4460 +26524 84962 0.9830 +26524 92597 0.9960 +26524 122786 0.6900 +26524 126308 0.5740 +26524 126374 0.9660 +26524 148932 0.4550 +26524 154796 0.9480 +26524 154810 0.7730 +26524 261734 0.7010 +26524 373863 0.4430 +26525 27177 0.9890 +26525 27179 0.7890 +26525 50616 0.5150 +26525 54544 0.4250 +26525 56300 0.8640 +26525 59307 0.7450 +26525 64332 0.4380 +26525 79092 0.7800 +26525 84639 0.6470 +26525 84648 0.5600 +26525 90865 0.6310 +26525 130340 0.7260 +26525 338324 0.4130 +26526 51107 0.5530 +26526 55129 0.4180 +26526 56300 0.4070 +26526 129804 0.6440 +26526 144448 0.4470 +26526 284904 0.4450 +26528 27316 0.5100 +26528 29896 0.5530 +26528 30000 0.5550 +26528 51322 0.4260 +26528 51741 0.5150 +26528 54187 0.4770 +26528 54502 0.4550 +26528 54514 0.5920 +26528 54815 0.5000 +26528 55009 0.4510 +26528 55035 0.4400 +26528 55152 0.4310 +26528 55684 0.4660 +26528 57054 0.5180 +26528 57055 0.5200 +26528 66037 0.4360 +26528 79882 0.8320 +26528 80335 0.4490 +26528 90850 0.4730 +26528 124540 0.9090 +26528 133482 0.4330 +26528 390748 0.4660 +26529 51764 0.6800 +26529 158248 0.4240 +26529 353323 0.4470 +26529 386679 0.4730 +26529 386681 0.4610 +26529 392433 0.5070 +26531 26533 0.5290 +26531 26538 0.6100 +26531 26658 0.5110 +26531 26659 0.5230 +26531 26664 0.5210 +26531 26686 0.4990 +26531 26692 0.5220 +26531 26707 0.5500 +26531 51764 0.7660 +26531 56656 0.5060 +26531 65055 0.4010 +26531 81099 0.5150 +26531 81285 0.5420 +26531 90204 0.4180 +26531 94235 0.4190 +26531 119682 0.4990 +26531 119695 0.5020 +26531 120066 0.5360 +26531 120793 0.5570 +26531 122742 0.5140 +26531 122748 0.4990 +26531 124538 0.5080 +26531 125958 0.5210 +26531 127385 0.5100 +26531 127623 0.4990 +26531 128366 0.5240 +26531 128367 0.5110 +26531 132112 0.5620 +26531 135946 0.5170 +26531 143503 0.5000 +26531 219436 0.4990 +26531 219438 0.4990 +26531 219473 0.4990 +26531 219477 0.4990 +26531 219493 0.5080 +26531 219858 0.4990 +26531 219957 0.5230 +26531 219968 0.4990 +26531 282763 0.5730 +26531 282775 0.5000 +26531 283093 0.5070 +26531 283159 0.5250 +26531 284323 0.4180 +26531 284433 0.4990 +26531 284521 0.5070 +26531 340980 0.5160 +26531 341152 0.5190 +26531 343169 0.4990 +26531 343171 0.5180 +26531 344892 0.5850 +26531 386675 0.5060 +26531 388761 0.4990 +26531 390038 0.4990 +26531 390059 0.4990 +26531 390082 0.4990 +26531 390093 0.5350 +26531 390155 0.4990 +26531 390157 0.4990 +26531 390174 0.5120 +26531 390264 0.5130 +26531 390265 0.4990 +26531 390271 0.5110 +26531 390275 0.4990 +26531 390892 0.5060 +26531 391194 0.5070 +26531 391196 0.5320 +26531 392138 0.5070 +26531 401427 0.5070 +26531 402317 0.5070 +26531 442184 0.5260 +26531 442185 0.5180 +26531 442186 0.5340 +26531 442191 0.5230 +26532 51764 0.6870 +26532 84182 0.4040 +26532 126541 0.4840 +26532 165082 0.4460 +26533 51764 0.7700 +26533 94235 0.4270 +26533 125958 0.5460 +26533 283999 0.5080 +26533 284521 0.4990 +26533 386683 0.5820 +26533 390664 0.4330 +26533 391196 0.5280 +26533 401427 0.4990 +26533 100507650 0.6140 +26534 51764 0.6780 +26534 83930 0.5270 +26534 158056 0.4280 +26534 100507650 0.6130 +26538 51764 0.6930 +26538 57604 0.4740 +26538 125958 0.5230 +26538 284521 0.5140 +26538 317703 0.4050 +26538 391196 0.4990 +26538 401427 0.5160 +26539 51764 0.6810 +26539 55911 0.4200 +26539 79820 0.4630 +26539 79874 0.4080 +26539 80832 0.4150 +26539 124989 0.4320 +26539 728734 0.5080 +26539 100507607 0.4490 +26548 27231 0.4230 +26548 51778 0.6140 +26548 54808 0.4520 +26548 84306 0.6850 +26548 137735 0.4410 +26548 146862 0.5180 +26548 161247 0.4910 +26548 347273 0.4390 +26574 26995 0.4310 +26574 27042 0.7240 +26574 27247 0.6260 +26574 27292 0.6170 +26574 27340 0.9950 +26574 27341 0.9950 +26574 28987 0.6890 +26574 28996 0.4030 +26574 29102 0.4310 +26574 29777 0.8510 +26574 29889 0.8660 +26574 29960 0.6160 +26574 29997 0.7000 +26574 30836 0.9970 +26574 51010 0.5710 +26574 51013 0.5710 +26574 51018 0.4970 +26574 51065 0.8300 +26574 51068 0.4830 +26574 51073 0.6520 +26574 51077 0.9960 +26574 51081 0.7770 +26574 51096 0.9980 +26574 51118 0.9980 +26574 51149 0.8480 +26574 51154 0.7170 +26574 51187 0.7610 +26574 51202 0.8680 +26574 51236 0.5890 +26574 51319 0.5720 +26574 51388 0.5530 +26574 51406 0.8140 +26574 51575 0.9570 +26574 51602 0.9980 +26574 51605 0.6790 +26574 54475 0.4560 +26574 54512 0.6440 +26574 54552 0.6720 +26574 54555 0.7840 +26574 54606 0.9580 +26574 54663 0.8490 +26574 54865 0.4480 +26574 54881 0.5700 +26574 54888 0.4010 +26574 54984 0.4610 +26574 55006 0.6100 +26574 55127 0.9960 +26574 55131 0.7220 +26574 55153 0.7140 +26574 55226 0.9990 +26574 55272 0.9940 +26574 55299 0.8530 +26574 55341 0.4380 +26574 55591 0.4020 +26574 55622 0.4130 +26574 55646 0.5230 +26574 55651 0.6770 +26574 55720 0.8340 +26574 55759 0.8290 +26574 55760 0.5030 +26574 55781 0.6460 +26574 55794 0.7550 +26574 55813 0.9980 +26574 56342 0.6610 +26574 56902 0.9860 +26574 56915 0.7060 +26574 56931 0.4080 +26574 57050 0.9970 +26574 57062 0.8410 +26574 57109 0.6150 +26574 57418 0.7300 +26574 57696 0.7300 +26574 60487 0.4010 +26574 64216 0.5360 +26574 64318 0.5840 +26574 64425 0.6560 +26574 64434 0.6260 +26574 64794 0.8410 +26574 64960 0.7900 +26574 64963 0.7660 +26574 65083 0.9980 +26574 65095 0.7320 +26574 79009 0.4560 +26574 79039 0.8240 +26574 79050 0.9940 +26574 79154 0.4270 +26574 79159 0.4090 +26574 79571 0.9260 +26574 79893 0.5530 +26574 79922 0.5700 +26574 79954 0.9990 +26574 80135 0.6890 +26574 80179 0.4890 +26574 83440 0.5540 +26574 83732 0.5450 +26574 83743 0.7270 +26574 84128 0.9960 +26574 84135 0.9940 +26574 84154 0.7890 +26574 84294 0.8440 +26574 84310 0.4440 +26574 84319 0.4810 +26574 84365 0.7460 +26574 84549 0.7060 +26574 84916 0.9970 +26574 84946 0.8380 +26574 85021 0.6600 +26574 88745 0.6840 +26574 90121 0.4060 +26574 90353 0.6160 +26574 90381 0.5180 +26574 92856 0.9970 +26574 115708 0.7060 +26574 117246 0.9060 +26574 118460 0.4950 +26574 126298 0.5690 +26574 126402 0.7670 +26574 128061 0.8010 +26574 138716 0.4610 +26574 140032 0.7670 +26574 142940 0.4940 +26574 146212 0.5010 +26574 153443 0.4910 +26574 161424 0.8930 +26574 165545 0.5030 +26574 221078 0.6710 +26574 221830 0.5060 +26574 282991 0.4560 +26574 284098 0.5050 +26574 284099 0.4780 +26574 285855 0.5440 +26574 317781 0.4710 +26574 345630 0.8730 +26574 387129 0.5330 +26574 641776 0.4870 +26574 643909 0.4870 +26574 692312 0.6530 +26574 728524 0.4870 +26574 100505478 0.4020 +26574 100996746 0.4870 +26574 105180390 0.4870 +26574 105180391 0.4870 +26575 51573 0.4520 +26575 51764 0.5180 +26575 54331 0.5370 +26575 55970 0.5370 +26575 56923 0.4990 +26575 57121 0.5320 +26575 57231 0.4600 +26575 59345 0.6420 +26575 60626 0.5720 +26575 64407 0.5620 +26575 83891 0.4430 +26575 84539 0.5010 +26575 85397 0.5270 +26575 94235 0.5230 +26575 115557 0.6640 +26575 129521 0.4990 +26575 147015 0.5080 +26575 167681 0.4490 +26575 346562 0.6690 +26575 353299 0.7760 +26575 388531 0.4890 +26575 401190 0.7390 +26575 431704 0.5680 +26576 51018 0.4260 +26576 55299 0.4020 +26576 79080 0.4650 +26576 84298 0.4080 +26576 84844 0.4200 +26576 117246 0.4220 +26576 339230 0.4390 +26576 646643 0.4130 +26576 101669762 0.4230 +26577 50509 0.4920 +26577 55214 0.4080 +26577 85301 0.6110 +26577 146223 0.4240 +26577 169044 0.4150 +26577 255631 0.5750 +26577 401089 0.4100 +26578 27243 0.4570 +26578 54981 0.4140 +26578 57175 0.4610 +26578 84548 0.4250 +26578 93973 0.4150 +26578 140885 0.5380 +26579 51608 0.4350 +26579 55107 0.4050 +26579 56952 0.4180 +26579 219931 0.4900 +26579 220064 0.6750 +26579 102723407 0.5830 +26580 51062 0.6330 +26580 51099 0.4380 +26580 51308 0.5420 +26580 51324 0.5710 +26580 54332 0.6140 +26580 54947 0.6140 +26580 55266 0.8130 +26580 55850 0.6800 +26580 56676 0.4380 +26580 56934 0.7730 +26580 57104 0.5480 +26580 57146 0.8610 +26580 57231 0.4410 +26580 57704 0.4290 +26580 59341 0.4740 +26580 63924 0.6570 +26580 64225 0.4900 +26580 65055 0.7460 +26580 79152 0.5220 +26580 79628 0.5070 +26580 80208 0.6430 +26580 80821 0.5190 +26580 84649 0.6030 +26580 84803 0.5190 +26580 85027 0.7450 +26580 90678 0.4450 +26580 91574 0.4320 +26580 92935 0.4470 +26580 113612 0.4270 +26580 118813 0.4890 +26580 123606 0.6160 +26580 128486 0.7400 +26580 132949 0.5080 +26580 137964 0.7690 +26580 140809 0.4550 +26580 161247 0.5040 +26580 221823 0.4960 +26580 284119 0.8580 +26580 440503 0.4940 +26580 653519 0.4190 +26580 100507203 0.5620 +26585 27030 0.4800 +26585 50964 0.7120 +26585 54893 0.5650 +26585 64388 0.9080 +26585 64399 0.4550 +26585 79695 0.6630 +26585 89780 0.4330 +26585 91851 0.4480 +26585 115908 0.4190 +26585 151449 0.7100 +26585 168667 0.4190 +26585 199699 0.4340 +26585 342184 0.8440 +26585 353500 0.6730 +26585 392255 0.7040 +26586 27332 0.4300 +26586 29028 0.5410 +26586 29127 0.7030 +26586 29128 0.4840 +26586 51203 0.7790 +26586 51659 0.4900 +26586 54443 0.5890 +26586 54478 0.5870 +26586 54962 0.4050 +26586 55055 0.5370 +26586 55143 0.7360 +26586 55165 0.8570 +26586 55355 0.7190 +26586 55388 0.4150 +26586 55632 0.5630 +26586 55635 0.4960 +26586 55789 0.4280 +26586 55839 0.4360 +26586 56652 0.4490 +26586 56992 0.7510 +26586 57650 0.5480 +26586 63967 0.5180 +26586 64151 0.5890 +26586 66008 0.4380 +26586 79075 0.4450 +26586 79444 0.4050 +26586 79705 0.4250 +26586 79733 0.5810 +26586 79801 0.4260 +26586 81930 0.4550 +26586 83461 0.5490 +26586 83540 0.7670 +26586 83879 0.4680 +26586 84722 0.4570 +26586 84823 0.4620 +26586 84930 0.4090 +26586 89839 0.5610 +26586 90417 0.4390 +26586 128239 0.4940 +26586 134285 0.5260 +26586 151246 0.4090 +26586 151648 0.4060 +26586 157313 0.6180 +26586 157570 0.5390 +26586 220042 0.5010 +26586 220134 0.5500 +26586 221150 0.5730 +26586 259266 0.8690 +26586 283431 0.6060 +26589 26953 0.5530 +26589 27303 0.4570 +26589 27430 0.4400 +26589 28957 0.8900 +26589 28973 0.9140 +26589 28977 0.9420 +26589 28998 0.9970 +26589 29074 0.9210 +26589 29088 0.9970 +26589 29093 0.9970 +26589 29102 0.8280 +26589 29960 0.8940 +26589 29988 0.4100 +26589 50814 0.4520 +26589 51008 0.7680 +26589 51014 0.6210 +26589 51021 0.9960 +26589 51023 0.9810 +26589 51069 0.9970 +26589 51073 0.9980 +26589 51081 0.9980 +26589 51103 0.4120 +26589 51116 0.9820 +26589 51121 0.8160 +26589 51149 0.8380 +26589 51154 0.4450 +26589 51250 0.8370 +26589 51253 0.9760 +26589 51258 0.9150 +26589 51263 0.9840 +26589 51264 0.9980 +26589 51277 0.4540 +26589 51318 0.9450 +26589 51373 0.9000 +26589 51642 0.9900 +26589 51649 0.8990 +26589 51650 0.8900 +26589 54059 0.8510 +26589 54148 0.9850 +26589 54431 0.4750 +26589 54460 0.8830 +26589 54516 0.5420 +26589 54534 0.9780 +26589 54596 0.4690 +26589 54788 0.4460 +26589 54948 0.9980 +26589 54998 0.8850 +26589 55037 0.8840 +26589 55052 0.9950 +26589 55157 0.4820 +26589 55168 0.9850 +26589 55173 0.9930 +26589 55268 0.4540 +26589 55272 0.7250 +26589 55301 0.4680 +26589 55316 0.8140 +26589 55633 0.4290 +26589 55862 0.4560 +26589 56257 0.4080 +26589 56945 0.9190 +26589 57129 0.9980 +26589 57609 0.4750 +26589 58472 0.5220 +26589 60488 0.9950 +26589 63875 0.9970 +26589 63931 0.9960 +26589 64374 0.6950 +26589 64432 0.9840 +26589 64928 0.9130 +26589 64949 0.8610 +26589 64951 0.8770 +26589 64960 0.9980 +26589 64963 0.9980 +26589 64965 0.9970 +26589 64968 0.9940 +26589 64969 0.9960 +26589 64975 0.9970 +26589 64976 0.9990 +26589 64978 0.9830 +26589 64979 0.9960 +26589 64981 0.9960 +26589 64983 0.9960 +26589 65003 0.9960 +26589 65005 0.9970 +26589 65008 0.9420 +26589 65080 0.9980 +26589 65121 0.5990 +26589 65122 0.5990 +26589 65993 0.8930 +26589 78988 0.9130 +26589 79165 0.4100 +26589 79590 0.9960 +26589 79848 0.4140 +26589 79962 0.4410 +26589 79982 0.4410 +26589 80146 0.4320 +26589 80221 0.9330 +26589 80270 0.4320 +26589 81031 0.4100 +26589 84172 0.4270 +26589 84311 0.9510 +26589 84340 0.8180 +26589 84545 0.9960 +26589 84883 0.4040 +26589 85476 0.8550 +26589 90313 0.8690 +26589 90381 0.4050 +26589 90480 0.9650 +26589 90624 0.7930 +26589 91574 0.8440 +26589 91647 0.4630 +26589 91942 0.4700 +26589 92170 0.8340 +26589 92399 0.8800 +26589 93517 0.4330 +26589 96459 0.4410 +26589 113444 0.4140 +26589 114134 0.4100 +26589 114781 0.7890 +26589 114908 0.4100 +26589 115416 0.8740 +26589 116540 0.9490 +26589 116541 0.9850 +26589 118487 0.8940 +26589 122704 0.9150 +26589 124359 0.4490 +26589 124995 0.9910 +26589 126402 0.8380 +26589 128308 0.9930 +26589 130916 0.8430 +26589 140432 0.4410 +26589 140801 0.6920 +26589 144363 0.7260 +26589 148022 0.6160 +26589 149478 0.6640 +26589 150353 0.4410 +26589 154091 0.4100 +26589 157310 0.8160 +26589 157869 0.4680 +26589 165721 0.4410 +26589 171425 0.4410 +26589 197322 0.4750 +26589 202052 0.4410 +26589 219402 0.5710 +26589 219927 0.9980 +26589 253175 0.4490 +26589 284418 0.4090 +26589 285126 0.4410 +26589 285190 0.4090 +26589 285282 0.4800 +26589 285755 0.4090 +26589 343068 0.5990 +26589 343070 0.5990 +26589 345051 0.8860 +26589 347487 0.6760 +26589 353376 0.6160 +26589 374407 0.4410 +26589 376497 0.4720 +26589 387338 0.8140 +26589 390999 0.5990 +26589 391002 0.5990 +26589 391003 0.4350 +26589 400735 0.5990 +26589 400736 0.5990 +26589 440560 0.5990 +26589 440561 0.5990 +26589 441873 0.5990 +26589 641776 0.5170 +26589 643909 0.5170 +26589 644591 0.4090 +26589 645142 0.4090 +26589 645359 0.5990 +26589 653247 0.4100 +26589 653505 0.4090 +26589 653598 0.4090 +26589 653619 0.5990 +26589 727851 0.4090 +26589 728524 0.5170 +26589 728945 0.4090 +26589 729528 0.5990 +26589 729857 0.4090 +26589 730262 0.4090 +26589 100130890 0.7750 +26589 100131187 0.7770 +26589 100287482 0.6760 +26589 100302736 0.6160 +26589 100526842 0.8430 +26589 100996746 0.5170 +26589 101929983 0.5990 +26589 105180390 0.5170 +26589 105180391 0.5170 +26589 105371242 0.4090 +26589 127898561 0.8000 +26595 51764 0.6780 +26595 219858 0.6380 +26595 283159 0.4400 +26595 283160 0.5490 +26595 283162 0.4990 +26595 390271 0.9990 +26608 27329 0.4070 +26608 29914 0.5730 +26608 51085 0.9350 +26608 51665 0.5090 +26608 54439 0.5270 +26608 55298 0.4220 +26608 55425 0.5040 +26608 55695 0.7380 +26608 56052 0.5190 +26608 57794 0.5940 +26608 60681 0.7740 +26608 84163 0.6570 +26608 84277 0.5340 +26608 84656 0.4490 +26608 90665 0.6610 +26608 135886 0.5850 +26608 135892 0.7870 +26608 148113 0.4180 +26608 154881 0.4260 +26608 155368 0.4930 +26608 283237 0.4140 +26608 348793 0.4770 +26608 389524 0.6560 +26609 51481 0.6380 +26609 55193 0.5110 +26609 114803 0.5880 +26609 121273 0.4460 +26609 139793 0.5070 +26609 167227 0.5130 +26609 170302 0.6490 +26609 425054 0.7850 +26609 642658 0.4450 +26610 26747 0.7230 +26610 27125 0.9030 +26610 27286 0.4960 +26610 27304 0.7600 +26610 51074 0.4150 +26610 51115 0.4320 +26610 51199 0.5180 +26610 51268 0.8440 +26610 51497 0.9010 +26610 51647 0.4040 +26610 51755 0.5460 +26610 54623 0.9100 +26610 54859 0.9990 +26610 55140 0.9990 +26610 55250 0.9970 +26610 55346 0.4600 +26610 55840 0.9000 +26610 57522 0.4100 +26610 79577 0.9070 +26610 79664 0.9140 +26610 80237 0.9000 +26610 80349 0.9210 +26610 80790 0.4100 +26610 81605 0.7300 +26610 84144 0.4580 +26610 84337 0.5430 +26610 84524 0.9000 +26610 84749 0.4150 +26610 85403 0.9000 +26610 89978 0.4560 +26610 90353 0.7550 +26610 93953 0.4250 +26610 112970 0.8310 +26610 113179 0.4520 +26610 114327 0.4130 +26610 120526 0.9480 +26610 123169 0.9060 +26610 130560 0.5180 +26610 140460 0.4400 +26610 160335 0.4270 +26610 196294 0.9290 +26610 285381 0.7920 +26610 341019 0.9260 +26610 348180 0.4650 +26610 653604 0.5430 +26648 51764 0.7590 +26648 55751 0.4590 +26648 80022 0.4980 +26648 91828 0.5610 +26648 147650 0.4790 +26658 26659 0.5140 +26658 26686 0.5710 +26658 51764 0.6830 +26658 55602 0.4470 +26658 119695 0.5250 +26658 125958 0.5500 +26658 132112 0.5210 +26658 135946 0.5410 +26658 144406 0.4810 +26658 219438 0.5540 +26658 219477 0.5330 +26658 219493 0.5360 +26658 219858 0.5230 +26658 219957 0.5600 +26658 219968 0.5080 +26658 221191 0.4060 +26658 255061 0.4450 +26658 282775 0.5350 +26658 284498 0.4310 +26658 284521 0.4990 +26658 344892 0.5290 +26658 390059 0.4990 +26658 390082 0.5360 +26658 390155 0.5320 +26658 390157 0.5340 +26658 390275 0.5150 +26658 390892 0.5770 +26658 391196 0.5250 +26658 401427 0.5140 +26658 442184 0.5460 +26659 26686 0.5130 +26659 51764 0.7400 +26659 65055 0.4770 +26659 84993 0.4990 +26659 119695 0.4990 +26659 125958 0.5120 +26659 132112 0.5770 +26659 135946 0.5100 +26659 219438 0.5220 +26659 219477 0.5140 +26659 219493 0.5310 +26659 219858 0.5070 +26659 219957 0.5150 +26659 219968 0.5140 +26659 282775 0.5110 +26659 284521 0.5530 +26659 344892 0.5860 +26659 390059 0.5040 +26659 390082 0.5260 +26659 390155 0.5190 +26659 390157 0.5160 +26659 390275 0.5150 +26659 390892 0.5050 +26659 391196 0.5190 +26659 401427 0.5420 +26659 442184 0.5160 +26664 51764 0.7320 +26664 55702 0.5320 +26664 125958 0.5130 +26664 283768 0.4180 +26664 284521 0.5240 +26664 391196 0.5360 +26664 401427 0.5260 +26683 117584 0.4310 +26683 255104 0.4800 +26683 728255 0.4770 +26683 100129515 0.5810 +26683 101928677 0.5780 +26686 51764 0.6780 +26686 65250 0.4120 +26686 119695 0.5210 +26686 125958 0.5330 +26686 132112 0.5190 +26686 135946 0.5320 +26686 219438 0.5510 +26686 219477 0.5220 +26686 219493 0.5430 +26686 219858 0.5220 +26686 219957 0.5400 +26686 219968 0.5080 +26686 282775 0.5310 +26686 283999 0.5900 +26686 284521 0.5100 +26686 344892 0.5020 +26686 386683 0.6590 +26686 389761 0.4110 +26686 389762 0.4520 +26686 390059 0.4990 +26686 390082 0.5210 +26686 390155 0.5460 +26686 390157 0.5320 +26686 390275 0.5110 +26686 390664 0.5070 +26686 390892 0.5320 +26686 391196 0.5120 +26686 401427 0.5180 +26686 442184 0.5380 +26687 51764 0.6800 +26689 51764 0.6780 +26689 55609 0.4450 +26689 79786 0.4360 +26689 136263 0.5440 +26689 389799 0.5070 +26692 51764 0.6500 +26692 79696 0.4470 +26692 125958 0.5360 +26692 171558 0.4450 +26692 282890 0.5280 +26692 284521 0.5100 +26692 391196 0.5400 +26692 401427 0.5110 +26693 51764 0.7210 +26707 51764 0.6540 +26707 57002 0.4180 +26707 125958 0.5320 +26707 282890 0.4020 +26707 284521 0.5010 +26707 391196 0.5130 +26707 401427 0.5110 +26716 51764 0.6610 +26716 161142 0.5100 +26716 346157 0.5740 +26716 401251 0.5460 +26716 401551 0.4270 +26735 26737 0.4740 +26735 51693 0.4180 +26735 51764 0.6800 +26735 92822 0.4760 +26735 129025 0.5060 +26735 132112 0.4090 +26735 146429 0.5060 +26735 374955 0.5710 +26737 51693 0.4300 +26737 51764 0.6780 +26737 92822 0.4730 +26737 129025 0.4950 +26737 146429 0.4830 +26740 51764 0.6780 +26740 54898 0.4070 +26740 79324 0.4340 +26740 81282 0.4200 +26740 119774 0.4190 +26740 255725 0.4100 +26740 284521 0.4080 +26740 390113 0.4180 +26740 441670 0.4290 +26747 26999 0.7480 +26747 27125 0.7350 +26747 51368 0.4440 +26747 51497 0.7250 +26747 51602 0.9790 +26747 51755 0.5430 +26747 54463 0.4020 +26747 54623 0.7270 +26747 54680 0.9820 +26747 55011 0.9410 +26747 55164 0.4160 +26747 55209 0.4030 +26747 55250 0.7490 +26747 55651 0.6200 +26747 55653 0.5430 +26747 55840 0.7200 +26747 56001 0.4450 +26747 57468 0.4490 +26747 57532 0.9390 +26747 79048 0.4030 +26747 79577 0.7250 +26747 79657 0.6090 +26747 79664 0.7300 +26747 80237 0.7210 +26747 80349 0.7220 +26747 80725 0.4160 +26747 81631 0.6350 +26747 84337 0.5460 +26747 84524 0.7520 +26747 85403 0.7230 +26747 85462 0.6740 +26747 121053 0.4390 +26747 123169 0.7490 +26747 643246 0.4420 +26747 728343 0.5490 +26750 29906 0.4500 +26750 51594 0.5280 +26750 53407 0.4230 +26750 55850 0.4300 +26750 56261 0.4110 +26750 60561 0.6120 +26750 83473 0.4400 +26750 84085 0.4330 +26750 84335 0.4060 +26750 90806 0.5140 +26750 125336 0.4200 +26750 128387 0.5600 +26750 130576 0.4670 +26750 131149 0.4900 +26750 149840 0.4290 +26750 201627 0.5730 +26750 222389 0.5090 +26751 54221 0.4840 +26751 54848 0.4950 +26751 64744 0.5980 +26751 79639 0.4170 +26751 79720 0.6650 +26751 114569 0.4690 +26751 129138 0.4230 +26751 161291 0.4690 +26751 285016 0.6050 +26751 285590 0.4980 +26751 642273 0.5610 +26751 100130771 0.4460 +26872 30061 0.5070 +26872 51312 0.4300 +26872 57817 0.5060 +26872 64116 0.4350 +26872 79901 0.6690 +26872 131368 0.4230 +26872 256227 0.6020 +26872 261729 0.9790 +26873 27165 0.8350 +26873 50626 0.5670 +26873 51015 0.7460 +26873 51733 0.4750 +26873 54512 0.4610 +26873 55577 0.4090 +26873 55690 0.4010 +26873 55748 0.6450 +26873 56267 0.4590 +26873 56954 0.4570 +26873 79017 0.9660 +26873 79094 0.9330 +26873 79763 0.7580 +26873 84735 0.5870 +26873 84955 0.6190 +26873 84988 0.4580 +26873 112849 0.4200 +26873 113655 0.4370 +26873 115939 0.5470 +26873 124975 0.9220 +26873 148811 0.5230 +26873 162963 0.4160 +26873 283985 0.5550 +26873 375686 0.4020 +26873 441381 0.4030 +26873 494143 0.9250 +26873 100526760 0.5230 +26952 85438 0.4810 +26952 400673 0.6180 +26952 653247 0.4180 +26953 29843 0.7040 +26953 30000 0.6380 +26953 51194 0.5600 +26953 51566 0.6640 +26953 53371 0.6050 +26953 54552 0.4080 +26953 54606 0.4240 +26953 54830 0.4220 +26953 55127 0.4510 +26953 55157 0.4950 +26953 55226 0.4400 +26953 55705 0.4520 +26953 57510 0.4220 +26953 59343 0.7040 +26953 64328 0.5310 +26953 64901 0.6210 +26953 64969 0.5860 +26953 79023 0.4640 +26953 79711 0.7260 +26953 84172 0.4210 +26953 84271 0.4920 +26953 158358 0.4570 +26953 205564 0.4640 +26953 283383 0.6240 +26953 345630 0.4450 +26958 50636 0.5410 +26958 51014 0.9000 +26958 51200 0.4240 +26958 51226 0.9820 +26958 51272 0.6610 +26958 51594 0.6360 +26958 51666 0.5760 +26958 53407 0.5880 +26958 54108 0.4330 +26958 54732 0.5270 +26958 54926 0.4610 +26958 55607 0.4530 +26958 55738 0.6780 +26958 55850 0.5070 +26958 56474 0.6290 +26958 56681 0.4270 +26958 57136 0.4750 +26958 57147 0.5310 +26958 57410 0.9650 +26958 60561 0.5710 +26958 63908 0.5440 +26958 64083 0.4220 +26958 79170 0.5600 +26958 80320 0.4050 +26958 81876 0.5800 +26958 84364 0.7920 +26958 84928 0.4260 +26958 84955 0.7860 +26958 90411 0.4810 +26958 93986 0.4470 +26958 95681 0.6580 +26958 114960 0.7090 +26958 120892 0.5100 +26958 136259 0.5080 +26958 143879 0.4200 +26958 205428 0.9000 +26958 266812 0.4950 +26958 390616 0.4310 +26959 54994 0.7090 +26959 57610 0.4110 +26959 64795 0.7640 +26959 80218 0.4030 +26959 80232 0.6210 +26959 92346 0.5120 +26959 196528 0.4190 +26960 54998 0.4630 +26960 55103 0.4460 +26960 64130 0.4680 +26960 65065 0.4040 +26960 80086 0.4590 +26960 83992 0.4700 +26960 84708 0.5030 +26960 161145 0.4360 +26960 168975 0.4830 +26960 343035 0.4970 +26960 728591 0.4020 +26973 27101 0.5820 +26973 55161 0.4520 +26973 55664 0.4480 +26973 60681 0.4690 +26973 64318 0.4840 +26973 200035 0.4010 +26973 339451 0.4080 +26973 399694 0.5800 +26974 51513 0.4110 +26974 54470 0.4470 +26974 56342 0.4120 +26974 84948 0.4470 +26974 112950 0.4070 +26974 129025 0.4190 +26974 200958 0.4180 +26974 201627 0.5450 +26974 219482 0.5060 +26974 388701 0.5440 +26974 414157 0.5880 +26984 27236 0.4900 +26984 29090 0.4020 +26984 51003 0.4310 +26984 51026 0.4630 +26984 51128 0.6510 +26984 51272 0.8400 +26984 51531 0.4940 +26984 53407 0.6570 +26984 54554 0.4410 +26984 55014 0.7710 +26984 55048 0.4020 +26984 55284 0.4180 +26984 55850 0.4750 +26984 60561 0.5110 +26984 63908 0.7280 +26984 64083 0.5130 +26984 64689 0.5700 +26984 79748 0.5850 +26984 81562 0.6550 +26984 81876 0.5640 +26984 89866 0.5820 +26984 90411 0.5490 +26984 126003 0.4630 +26984 128989 0.4360 +26984 143187 0.8700 +26984 149111 0.5410 +26984 203062 0.4820 +26984 203245 0.4920 +26984 254263 0.5410 +26984 285282 0.4150 +26984 285521 0.4050 +26985 27156 0.4970 +26985 30818 0.5480 +26985 51207 0.4860 +26985 51361 0.6340 +26985 54461 0.4050 +26985 55317 0.5590 +26985 55684 0.4980 +26985 55745 0.7020 +26985 57568 0.4780 +26985 57599 0.4690 +26985 57704 0.4820 +26985 58513 0.4120 +26985 63971 0.5410 +26985 79036 0.4740 +26985 79841 0.4200 +26985 83752 0.4280 +26985 84062 0.4010 +26985 84251 0.5690 +26985 91056 0.5650 +26985 122616 0.5400 +26985 130340 0.6810 +26985 142891 0.4800 +26985 192669 0.6560 +26985 348110 0.5320 +26985 100526783 0.7050 +26986 27044 0.5610 +26986 27067 0.6340 +26986 27161 0.9190 +26986 27257 0.7400 +26986 27303 0.4350 +26986 27316 0.4890 +26986 27327 0.9970 +26986 29102 0.5970 +26986 29883 0.8390 +26986 29894 0.6060 +26986 29896 0.5980 +26986 50848 0.4470 +26986 51247 0.9990 +26986 51320 0.7480 +26986 51366 0.6780 +26986 51386 0.4780 +26986 51441 0.6610 +26986 51574 0.5290 +26986 51585 0.6790 +26986 51602 0.4710 +26986 51692 0.5170 +26986 51741 0.4080 +26986 54464 0.8410 +26986 54542 0.4730 +26986 54606 0.6010 +26986 54915 0.5030 +26986 55110 0.4730 +26986 55132 0.5280 +26986 55170 0.5360 +26986 55239 0.7570 +26986 55269 0.4280 +26986 55308 0.5160 +26986 55323 0.5040 +26986 55544 0.4060 +26986 55571 0.5280 +26986 55629 0.6730 +26986 55742 0.4090 +26986 55749 0.6190 +26986 55802 0.9160 +26986 56478 0.4900 +26986 56903 0.7980 +26986 57169 0.4390 +26986 57409 0.5590 +26986 57472 0.7880 +26986 64135 0.4990 +26986 64221 0.5470 +26986 64318 0.4730 +26986 64506 0.7450 +26986 64895 0.8290 +26986 65109 0.8240 +26986 65110 0.7410 +26986 66037 0.7810 +26986 79670 0.6220 +26986 79727 0.6270 +26986 79882 0.6220 +26986 80153 0.8620 +26986 80315 0.4940 +26986 81608 0.4750 +26986 84206 0.4360 +26986 84954 0.4060 +26986 85364 0.6190 +26986 85456 0.5620 +26986 92312 0.5200 +26986 92906 0.4930 +26986 113251 0.9920 +26986 124801 0.6380 +26986 129563 0.4240 +26986 140886 0.4410 +26986 140890 0.4290 +26986 143689 0.4300 +26986 149041 0.6340 +26986 149986 0.5100 +26986 167153 0.4750 +26986 167227 0.7160 +26986 170506 0.6100 +26986 192669 0.4550 +26986 192670 0.5140 +26986 196513 0.6130 +26986 197135 0.4590 +26986 201626 0.4180 +26986 219988 0.5980 +26986 220988 0.5350 +26986 221662 0.6300 +26986 246175 0.7930 +26986 253314 0.4400 +26986 253943 0.4940 +26986 255967 0.9600 +26986 284131 0.5170 +26986 317649 0.5940 +26986 400961 0.8820 +26986 440275 0.4220 +26986 728689 0.4690 +26986 768206 0.4420 +26986 100529063 0.5600 +26993 27154 0.4340 +26993 51765 0.4030 +26993 54894 0.9510 +26993 55023 0.4690 +26993 55072 0.4570 +26993 55660 0.8280 +26993 57664 0.4020 +26993 84955 0.6290 +26993 85416 0.4130 +26993 124245 0.4520 +26994 27246 0.4320 +26994 29110 0.4320 +26994 51619 0.7670 +26994 51652 0.5520 +26994 55611 0.4840 +26994 55922 0.4460 +26994 57132 0.5040 +26994 57154 0.7210 +26994 59348 0.6220 +26994 63893 0.4070 +26994 64320 0.4050 +26994 64750 0.9820 +26994 78990 0.4490 +26994 80762 0.4290 +26994 81689 0.4330 +26994 83737 0.9950 +26994 84340 0.4010 +26994 88455 0.4720 +26994 128346 0.4200 +26994 338692 0.4030 +26994 100526767 0.4910 +26995 27037 0.4280 +26995 27079 0.7660 +26995 27316 0.6630 +26995 27339 0.4620 +26995 27341 0.4500 +26995 28987 0.4860 +26995 28998 0.6050 +26995 29104 0.4720 +26995 29789 0.4320 +26995 29889 0.4430 +26995 29960 0.6190 +26995 29997 0.5370 +26995 51001 0.8580 +26995 51021 0.7400 +26995 51067 0.8670 +26995 51069 0.4070 +26995 51073 0.7460 +26995 51081 0.5370 +26995 51095 0.5680 +26995 51106 0.5050 +26995 51116 0.4300 +26995 51149 0.5430 +26995 51154 0.5930 +26995 51187 0.4110 +26995 51319 0.6300 +26995 51335 0.9200 +26995 51388 0.4630 +26995 51490 0.5020 +26995 51575 0.4940 +26995 51602 0.9100 +26995 51605 0.5860 +26995 51654 0.5340 +26995 54148 0.5320 +26995 54433 0.9070 +26995 54464 0.5720 +26995 54517 0.7830 +26995 54534 0.4980 +26995 54552 0.4220 +26995 54663 0.4100 +26995 54802 0.5670 +26995 54888 0.5200 +26995 54920 0.4860 +26995 54931 0.6440 +26995 55006 0.7030 +26995 55052 0.4600 +26995 55127 0.4360 +26995 55131 0.6680 +26995 55157 0.4210 +26995 55164 0.7700 +26995 55168 0.4500 +26995 55178 0.6220 +26995 55226 0.7830 +26995 55299 0.6260 +26995 55312 0.5190 +26995 55341 0.4380 +26995 55505 0.9000 +26995 55621 0.4400 +26995 55623 0.4880 +26995 55651 0.7290 +26995 55687 0.4590 +26995 55695 0.4740 +26995 55703 0.4090 +26995 55759 0.7050 +26995 55794 0.8560 +26995 55798 0.5140 +26995 56342 0.4880 +26995 57136 0.5440 +26995 57570 0.4410 +26995 60487 0.4020 +26995 60528 0.5570 +26995 63875 0.6770 +26995 63899 0.5440 +26995 64216 0.4240 +26995 64745 0.5140 +26995 64960 0.5710 +26995 64963 0.5130 +26995 64965 0.4420 +26995 64968 0.4700 +26995 64983 0.4780 +26995 65005 0.4960 +26995 65008 0.4530 +26995 65095 0.4400 +26995 79675 0.5660 +26995 79691 0.6290 +26995 79730 0.4070 +26995 79922 0.5710 +26995 79954 0.4450 +26995 79979 0.5250 +26995 80324 0.8650 +26995 81554 0.8540 +26995 81890 0.5410 +26995 81892 0.4710 +26995 83448 0.8420 +26995 83480 0.8430 +26995 83743 0.4490 +26995 84154 0.5130 +26995 84172 0.4190 +26995 84273 0.6630 +26995 84294 0.4240 +26995 84310 0.4170 +26995 84319 0.4160 +26995 84365 0.6780 +26995 84705 0.6080 +26995 84881 0.9170 +26995 84967 0.4190 +26995 85865 0.7010 +26995 87178 0.7020 +26995 90353 0.4330 +26995 92170 0.6470 +26995 92345 0.7260 +26995 92399 0.5650 +26995 113000 0.7240 +26995 115416 0.6250 +26995 115708 0.6190 +26995 117246 0.5070 +26995 123263 0.5150 +26995 124454 0.4630 +26995 126789 0.8450 +26995 130916 0.5100 +26995 142940 0.5060 +26995 150962 0.7710 +26995 161424 0.4700 +26995 196074 0.4600 +26995 221078 0.4470 +26995 221830 0.4820 +26995 285367 0.8750 +26995 285855 0.5780 +26995 345630 0.8050 +26995 387338 0.6790 +26995 692312 0.4710 +26995 100996939 0.4730 +26996 27231 0.4220 +26996 54328 0.4410 +26996 55892 0.4400 +26996 57563 0.4540 +26996 80127 0.4480 +26996 115330 0.4170 +26996 120224 0.4660 +26996 143503 0.4090 +26996 149428 0.4340 +26996 150677 0.4680 +26996 150678 0.4110 +26996 344658 0.5290 +26996 350383 0.5350 +26998 79017 0.4310 +26998 338094 0.4220 +26998 431705 0.7010 +26999 30837 0.4220 +26999 51225 0.9450 +26999 51306 0.4060 +26999 51517 0.5770 +26999 51571 0.4030 +26999 51582 0.4810 +26999 51763 0.4220 +26999 55362 0.5690 +26999 55367 0.6470 +26999 55845 0.9990 +26999 56936 0.4060 +26999 57103 0.7670 +26999 57532 0.8350 +26999 63916 0.6960 +26999 79661 0.4040 +26999 81873 0.6800 +26999 83548 0.5960 +26999 85358 0.5520 +26999 85440 0.4390 +26999 94086 0.4200 +26999 114336 0.4030 +26999 114791 0.4510 +26999 118472 0.4710 +26999 122809 0.4240 +26999 132671 0.4700 +26999 147179 0.5040 +26999 222658 0.4570 +26999 222950 0.4030 +26999 253314 0.9270 +26999 256949 0.4180 +26999 340527 0.6290 +26999 390714 0.4990 +26999 644150 0.5280 +27000 29103 0.4120 +27000 29889 0.4190 +27000 30836 0.4230 +27000 51154 0.4080 +27000 51182 0.9980 +27000 51277 0.4640 +27000 51389 0.4490 +27000 51501 0.4300 +27000 51574 0.4230 +27000 51575 0.4160 +27000 51602 0.6820 +27000 51726 0.4470 +27000 54431 0.4640 +27000 54788 0.4640 +27000 55192 0.5450 +27000 55299 0.4880 +27000 55466 0.4050 +27000 55854 0.8440 +27000 64215 0.4390 +27000 79962 0.4810 +27000 79982 0.5190 +27000 80155 0.4900 +27000 80331 0.4050 +27000 81556 0.4590 +27000 81570 0.5650 +27000 83743 0.4780 +27000 84154 0.6020 +27000 84946 0.4640 +27000 85479 0.4680 +27000 112869 0.5060 +27000 116835 0.6620 +27000 120526 0.5910 +27000 131118 0.5180 +27000 134218 0.6400 +27000 165721 0.4470 +27000 202052 0.5260 +27000 257415 0.6240 +27000 259217 0.6230 +27000 285126 0.4370 +27000 345630 0.4030 +27000 374407 0.4390 +27000 548645 0.4880 +27005 29761 0.5190 +27005 51377 0.4050 +27005 51506 0.6040 +27005 54941 0.4250 +27005 55072 0.4860 +27005 55432 0.5250 +27005 55611 0.6000 +27005 57559 0.4100 +27005 57646 0.6660 +27005 57673 0.4870 +27005 78990 0.5360 +27005 79184 0.4800 +27005 79923 0.7870 +27005 81858 0.5040 +27005 84196 0.5860 +27005 85235 0.4990 +27005 90268 0.4840 +27005 90865 0.8000 +27005 92815 0.4990 +27005 114803 0.6500 +27005 123228 0.5090 +27005 221302 0.5550 +27005 221613 0.4990 +27005 257397 0.4630 +27005 317772 0.5100 +27006 27020 0.4170 +27006 29126 0.4070 +27006 30816 0.5220 +27006 30849 0.4990 +27006 51176 0.4210 +27006 51330 0.7160 +27006 51806 0.5970 +27006 53834 0.8540 +27006 54106 0.5740 +27006 79923 0.5240 +27006 80781 0.6870 +27006 83888 0.5690 +27006 85027 0.4290 +27006 85443 0.4230 +27006 89780 0.5310 +27006 91860 0.5940 +27006 121340 0.4020 +27006 137902 0.5150 +27006 143282 0.5640 +27006 152831 0.9040 +27006 163688 0.5960 +27006 284654 0.4320 +27006 285888 0.4480 +27006 405754 0.5140 +27006 101060233 0.4100 +27010 27247 0.4060 +27010 29124 0.5050 +27010 51601 0.6210 +27010 51668 0.4380 +27010 53632 0.4370 +27010 55312 0.4040 +27010 60386 0.7190 +27010 79178 0.9580 +27010 80347 0.4640 +27010 80704 0.7840 +27010 81627 0.4590 +27010 84076 0.9830 +27010 84284 0.9170 +27010 112399 0.5010 +27010 122481 0.9150 +27010 135935 0.6020 +27010 158067 0.9080 +27010 283130 0.4340 +27010 387787 0.5620 +27012 27133 0.4410 +27012 28998 0.4570 +27012 29093 0.5030 +27012 51065 0.5040 +27012 51069 0.4620 +27012 51073 0.4320 +27012 51081 0.5030 +27012 51116 0.4220 +27012 51121 0.5160 +27012 51149 0.5010 +27012 51154 0.4210 +27012 55173 0.5090 +27012 55272 0.4950 +27012 55316 0.5010 +27012 55638 0.4090 +27012 56648 0.4260 +27012 63931 0.5010 +27012 64960 0.5010 +27012 64963 0.5010 +27012 64969 0.4640 +27012 65003 0.4860 +27012 65008 0.4690 +27012 79590 0.5160 +27012 90134 0.4820 +27012 114788 0.4480 +27012 114987 0.4460 +27012 126402 0.5030 +27012 140032 0.4890 +27012 143244 0.4260 +27012 169522 0.4790 +27012 200916 0.4750 +27012 283820 0.4470 +27012 285855 0.4500 +27012 343450 0.4500 +27012 347487 0.4220 +27012 387129 0.4520 +27012 401665 0.5380 +27012 408050 0.4460 +27012 100287482 0.4220 +27012 100505478 0.4500 +27012 100526842 0.5030 +27012 100529097 0.4960 +27012 100529239 0.5030 +27013 30827 0.6300 +27013 56927 0.6360 +27013 79137 0.5160 +27013 79840 0.4690 +27013 81554 0.4620 +27013 84232 0.4510 +27013 112487 0.4050 +27013 151295 0.5810 +27013 201895 0.5450 +27013 100130733 0.4340 +27018 51186 0.8910 +27018 55353 0.5130 +27018 56265 0.5460 +27018 56849 0.8970 +27018 57523 0.5170 +27018 58504 0.4810 +27018 79921 0.6290 +27018 84707 0.4830 +27018 85012 0.5870 +27018 90843 0.6370 +27018 114928 0.4500 +27018 140597 0.4720 +27018 158931 0.9060 +27018 164592 0.4220 +27018 284422 0.5740 +27018 340543 0.4660 +27019 27285 0.5630 +27019 51314 0.9820 +27019 51364 0.8330 +27019 54768 0.7600 +27019 54919 0.7450 +27019 54970 0.4660 +27019 55011 0.4270 +27019 55036 0.8170 +27019 55130 0.7830 +27019 55172 0.9580 +27019 55259 0.6200 +27019 55329 0.4390 +27019 55567 0.8760 +27019 55779 0.4540 +27019 55815 0.6860 +27019 55997 0.4390 +27019 56171 0.9280 +27019 56683 0.6850 +27019 56912 0.4910 +27019 64446 0.9200 +27019 64518 0.6820 +27019 64800 0.7330 +27019 78987 0.4160 +27019 79645 0.4230 +27019 79659 0.5480 +27019 79819 0.6300 +27019 79925 0.7080 +27019 80086 0.4480 +27019 80217 0.5270 +27019 81492 0.5850 +27019 83450 0.4600 +27019 83538 0.7290 +27019 83544 0.7470 +27019 83657 0.6700 +27019 83658 0.6430 +27019 83659 0.6810 +27019 83894 0.4240 +27019 84263 0.4410 +27019 85016 0.4680 +27019 85478 0.9060 +27019 89765 0.7100 +27019 92749 0.8270 +27019 93233 0.9380 +27019 114327 0.4160 +27019 115399 0.5020 +27019 115811 0.4240 +27019 115948 0.7680 +27019 118491 0.7110 +27019 120379 0.6550 +27019 123872 0.9460 +27019 126820 0.8050 +27019 127602 0.6910 +27019 130888 0.6040 +27019 132203 0.5090 +27019 139212 0.7450 +27019 140735 0.5890 +27019 144132 0.7580 +27019 146177 0.4120 +27019 146562 0.4220 +27019 146754 0.8540 +27019 146845 0.4210 +27019 152206 0.4330 +27019 160762 0.5550 +27019 161582 0.7200 +27019 164781 0.5300 +27019 196385 0.8260 +27019 200132 0.4600 +27019 200162 0.7240 +27019 201625 0.8830 +27019 202500 0.4590 +27019 203068 0.4860 +27019 203259 0.5040 +27019 221421 0.9540 +27019 339829 0.8110 +27019 345643 0.5840 +27019 345895 0.9720 +27019 352909 0.8100 +27019 374407 0.4390 +27019 388389 0.8640 +27019 727897 0.4400 +27020 30816 0.6460 +27020 50863 0.4420 +27020 51324 0.6380 +27020 55113 0.6960 +27020 55243 0.4120 +27020 55879 0.4990 +27020 63931 0.4040 +27020 89782 0.4180 +27022 30812 0.5440 +27022 50651 0.6450 +27022 51176 0.4060 +27022 54361 0.4850 +27022 55810 0.4410 +27022 56917 0.4540 +27022 57167 0.6220 +27022 57623 0.5390 +27022 63978 0.7820 +27022 64118 0.6160 +27022 64211 0.4060 +27022 64321 0.4330 +27022 79727 0.6830 +27022 79923 0.8020 +27022 80308 0.4220 +27022 84891 0.4460 +27022 85416 0.5070 +27022 132625 0.5050 +27022 140628 0.4130 +27022 146206 0.6110 +27022 201456 0.4830 +27023 50674 0.4370 +27023 56956 0.4250 +27023 57594 0.4070 +27023 64211 0.5100 +27023 79192 0.4310 +27023 112942 0.4110 +27030 27183 0.6350 +27030 51008 0.5530 +27030 51317 0.5670 +27030 51534 0.8400 +27030 51567 0.4020 +27030 54145 0.4990 +27030 55215 0.6670 +27030 55247 0.4780 +27030 56159 0.5620 +27030 57697 0.6540 +27030 64421 0.6600 +27030 79695 0.6960 +27030 79696 0.4530 +27030 79728 0.7270 +27030 79840 0.6290 +27030 80010 0.4720 +27030 80198 0.7480 +27030 83694 0.4360 +27030 84057 0.5370 +27030 84072 0.6040 +27030 84164 0.5400 +27030 84464 0.4550 +27030 84893 0.6530 +27030 85236 0.5000 +27030 91419 0.5690 +27030 91754 0.4050 +27030 125150 0.5400 +27030 126074 0.5400 +27030 128312 0.4990 +27030 146956 0.5620 +27030 150280 0.5920 +27030 164045 0.7460 +27030 254394 0.4430 +27030 255626 0.4990 +27030 285498 0.5460 +27030 286257 0.5400 +27030 348654 0.6140 +27030 388649 0.4250 +27030 548593 0.5500 +27030 100507650 0.4700 +27030 100533467 0.5270 +27030 105375355 0.5400 +27031 27077 0.7000 +27031 27130 0.9740 +27031 27241 0.4500 +27031 29945 0.4080 +27031 51098 0.4650 +27031 51134 0.4640 +27031 51259 0.7320 +27031 51668 0.4260 +27031 54806 0.7070 +27031 54903 0.6650 +27031 55081 0.4480 +27031 55212 0.4490 +27031 56912 0.4080 +27031 57096 0.4250 +27031 57545 0.7190 +27031 57560 0.4870 +27031 57728 0.6000 +27031 63929 0.4280 +27031 65062 0.5910 +27031 65250 0.4210 +27031 79583 0.6560 +27031 79600 0.5280 +27031 79659 0.4100 +27031 79738 0.4480 +27031 79809 0.5880 +27031 79867 0.6500 +27031 79876 0.4060 +27031 80184 0.9190 +27031 80776 0.6690 +27031 84314 0.5280 +27031 84662 0.4940 +27031 84747 0.9750 +27031 90410 0.4620 +27031 91147 0.8650 +27031 91754 0.9730 +27031 95681 0.4600 +27031 123169 0.4760 +27031 124401 0.7220 +27031 129880 0.4760 +27031 166379 0.4010 +27031 192668 0.6580 +27031 200894 0.6600 +27031 203068 0.4900 +27031 203286 0.9740 +27031 261734 0.9830 +27031 284086 0.9910 +27031 550643 0.4520 +27032 30819 0.4310 +27032 51014 0.4320 +27032 55532 0.4760 +27032 55754 0.4020 +27032 55858 0.7180 +27032 57130 0.4250 +27032 64116 0.4260 +27032 79701 0.4360 +27032 255738 0.6570 +27033 30009 0.6950 +27033 51341 0.4760 +27033 60468 0.5800 +27033 64860 0.4150 +27033 84528 0.7050 +27033 161882 0.4270 +27033 203447 0.4500 +27033 401024 0.4700 +27034 27434 0.4050 +27034 28976 0.4030 +27034 29087 0.4760 +27034 29958 0.6710 +27034 51031 0.4160 +27034 51084 0.6030 +27034 51497 0.4250 +27034 51805 0.4040 +27034 54988 0.4500 +27034 55066 0.5410 +27034 55268 0.5550 +27034 55862 0.5790 +27034 55902 0.4070 +27034 56922 0.6300 +27034 64064 0.4440 +27034 64087 0.6190 +27034 79611 0.4370 +27034 79777 0.4460 +27034 79913 0.4550 +27034 80724 0.6220 +27034 83451 0.4010 +27034 83693 0.4540 +27034 84263 0.7710 +27034 84320 0.5220 +27034 84532 0.5010 +27034 84693 0.5170 +27034 85378 0.6690 +27034 91452 0.5160 +27034 112936 0.4220 +27034 124359 0.4780 +27034 124995 0.6420 +27034 132949 0.5750 +27034 140856 0.4130 +27034 222008 0.5920 +27034 253175 0.4780 +27034 341392 0.4210 +27034 376497 0.4370 +27034 414149 0.4260 +27034 109703458 0.5170 +27035 50506 0.9770 +27035 50507 0.9980 +27035 50508 0.9910 +27035 51806 0.5360 +27035 53905 0.9920 +27035 54205 0.5580 +27035 55312 0.8720 +27035 56262 0.4550 +27035 79400 0.9860 +27035 90527 0.6260 +27035 91801 0.6550 +27035 91860 0.4550 +27035 124056 0.9990 +27035 137902 0.5320 +27035 163688 0.4540 +27035 169966 0.4480 +27035 257202 0.5980 +27035 285590 0.8680 +27035 405753 0.6540 +27035 493869 0.5970 +27035 653361 0.9990 +27036 27087 0.5050 +27036 27180 0.7620 +27036 29126 0.6050 +27036 30815 0.4450 +27036 43847 0.7390 +27036 50489 0.5020 +27036 51311 0.4870 +27036 51338 0.5070 +27036 51348 0.5600 +27036 51744 0.4600 +27036 54210 0.5280 +27036 79168 0.5550 +27036 84868 0.6220 +27036 114836 0.4520 +27036 124599 0.5500 +27036 146722 0.6570 +27036 151888 0.5650 +27036 201633 0.4590 +27036 259197 0.6000 +27036 284266 0.6690 +27036 338596 0.6140 +27037 27292 0.4820 +27037 27429 0.4190 +27037 28987 0.4160 +27037 29801 0.6420 +27037 29889 0.4460 +27037 29960 0.4570 +27037 30827 0.6360 +27037 51096 0.6000 +27037 51504 0.4160 +27037 51575 0.6010 +27037 51586 0.4090 +27037 51605 0.5380 +27037 54475 0.4650 +27037 54496 0.4690 +27037 54517 0.4230 +27037 54552 0.4280 +27037 54555 0.4430 +27037 54584 0.6650 +27037 54606 0.4830 +27037 54888 0.6210 +27037 54920 0.4520 +27037 54929 0.4260 +27037 55006 0.6880 +27037 55039 0.5690 +27037 55153 0.5320 +27037 55178 0.5110 +27037 55226 0.6280 +27037 55291 0.5160 +27037 55299 0.4580 +27037 55621 0.5620 +27037 55695 0.6000 +27037 55703 0.4700 +27037 55720 0.4900 +27037 55794 0.4340 +27037 55813 0.5680 +27037 56342 0.4520 +27037 56931 0.6800 +27037 56948 0.5810 +27037 57570 0.4120 +27037 60487 0.4680 +27037 63899 0.4100 +27037 64118 0.5820 +27037 64216 0.4400 +27037 64318 0.5220 +27037 64425 0.4020 +27037 64852 0.5390 +27037 64976 0.5710 +27037 65083 0.4690 +27037 65095 0.4520 +27037 79039 0.6860 +27037 79050 0.4150 +27037 79087 0.4550 +27037 79676 0.8050 +27037 79691 0.4360 +27037 79730 0.5000 +27037 79922 0.4560 +27037 80198 0.4890 +27037 80324 0.4400 +27037 80745 0.4430 +27037 80764 0.5900 +27037 81627 0.4420 +27037 81890 0.5050 +27037 83448 0.4010 +27037 83743 0.6190 +27037 84128 0.5280 +27037 84154 0.6360 +27037 84172 0.4520 +27037 84340 0.4140 +27037 84916 0.4050 +27037 84936 0.4520 +27037 85359 0.4300 +27037 85378 0.5360 +27037 90353 0.4400 +27037 91526 0.5650 +27037 91978 0.4120 +27037 92856 0.4230 +27037 93587 0.5120 +27037 113000 0.4530 +27037 115708 0.8270 +27037 117246 0.5200 +27037 127253 0.5140 +27037 128977 0.4940 +27037 128989 0.6370 +27037 142940 0.5010 +27037 158234 0.4450 +27037 196074 0.5090 +27037 221078 0.5070 +27037 283989 0.6080 +27037 387338 0.4400 +27037 692312 0.4100 +27039 51306 0.5510 +27039 51393 0.5120 +27039 54795 0.6000 +27039 54822 0.6040 +27039 55503 0.5120 +27039 56302 0.5190 +27039 57192 0.6190 +27039 59341 0.4890 +27039 79054 0.5150 +27039 80036 0.5370 +27039 140803 0.5140 +27039 162514 0.4910 +27039 168507 0.5980 +27039 202051 0.4870 +27039 342372 0.7590 +27039 111064649 0.4760 +27040 27240 0.4450 +27040 29760 0.8440 +27040 50813 0.7200 +27040 50852 0.4230 +27040 51138 0.7200 +27040 51206 0.7250 +27040 53347 0.4460 +27040 54209 0.5260 +27040 54900 0.5010 +27040 64708 0.7200 +27040 116449 0.7960 +27040 150678 0.7200 +27040 387357 0.9090 +27040 390714 0.5070 +27042 27043 0.5400 +27042 27340 0.9050 +27042 27341 0.7910 +27042 28987 0.6190 +27042 29777 0.9890 +27042 29889 0.5760 +27042 29997 0.4250 +27042 51010 0.4590 +27042 51013 0.5310 +27042 51065 0.4050 +27042 51077 0.9230 +27042 51096 0.9290 +27042 51118 0.8540 +27042 51154 0.4460 +27042 51187 0.4090 +27042 51202 0.8980 +27042 51236 0.5480 +27042 51388 0.5740 +27042 51538 0.5790 +27042 51575 0.8260 +27042 51602 0.6830 +27042 54475 0.6420 +27042 54512 0.4580 +27042 54552 0.5160 +27042 54555 0.9610 +27042 54606 0.7880 +27042 54663 0.4430 +27042 54881 0.6290 +27042 54984 0.4030 +27042 55006 0.4690 +27042 55105 0.8510 +27042 55109 0.5040 +27042 55127 0.9090 +27042 55131 0.7570 +27042 55153 0.7150 +27042 55226 0.7260 +27042 55272 0.9410 +27042 55299 0.4250 +27042 55622 0.4290 +27042 55646 0.4560 +27042 55668 0.8400 +27042 55720 0.8780 +27042 55759 0.8220 +27042 55760 0.5350 +27042 55794 0.4040 +27042 55813 0.9270 +27042 56342 0.4840 +27042 56902 0.6630 +27042 56915 0.5110 +27042 56919 0.6530 +27042 57050 0.9980 +27042 57062 0.6280 +27042 57418 0.8000 +27042 57645 0.4100 +27042 57647 0.9150 +27042 57696 0.4140 +27042 60487 0.4030 +27042 60625 0.6410 +27042 64318 0.6100 +27042 64425 0.4400 +27042 64434 0.7470 +27042 64794 0.7170 +27042 65083 0.9960 +27042 79039 0.6890 +27042 79050 0.9140 +27042 79159 0.5280 +27042 79571 0.4500 +27042 79665 0.5860 +27042 79707 0.6080 +27042 79954 0.7900 +27042 80230 0.6160 +27042 81887 0.6390 +27042 83732 0.4150 +27042 83743 0.6020 +27042 84128 0.8890 +27042 84135 0.8210 +27042 84154 0.6930 +27042 84172 0.5500 +27042 84294 0.8580 +27042 84365 0.5860 +27042 84549 0.6020 +27042 84916 0.8860 +27042 84946 0.6120 +27042 88745 0.9920 +27042 91752 0.5040 +27042 91893 0.4060 +27042 92856 0.9870 +27042 115708 0.6050 +27042 116966 0.4040 +27042 117246 0.8940 +27042 118460 0.4560 +27042 122402 0.4340 +27042 148304 0.5180 +27042 148423 0.4180 +27042 161424 0.6400 +27042 165545 0.5340 +27042 219578 0.5040 +27042 221078 0.5840 +27042 221830 0.4130 +27042 285440 0.4080 +27042 345630 0.6800 +27042 100128927 0.4780 +27043 27159 0.4460 +27043 27340 0.5390 +27043 27341 0.5300 +27043 29889 0.5020 +27043 29915 0.5400 +27043 51077 0.5360 +27043 51096 0.5620 +27043 51118 0.5490 +27043 51121 0.5640 +27043 51202 0.5820 +27043 51230 0.9090 +27043 51602 0.5800 +27043 54475 0.4320 +27043 54555 0.5750 +27043 54828 0.4510 +27043 54881 0.9990 +27043 55127 0.6270 +27043 55272 0.5640 +27043 55759 0.6420 +27043 55813 0.5570 +27043 57050 0.5410 +27043 57418 0.9990 +27043 57647 0.5660 +27043 57680 0.9100 +27043 65083 0.5580 +27043 79050 0.6420 +27043 79707 0.9640 +27043 81875 0.4580 +27043 81887 0.9980 +27043 84128 0.5640 +27043 84135 0.5530 +27043 84148 0.9100 +27043 84661 0.5610 +27043 84916 0.5500 +27043 88745 0.5460 +27043 90459 0.4720 +27043 92856 0.5340 +27043 116832 0.5460 +27043 124245 0.4370 +27043 124944 0.9010 +27043 125476 0.9000 +27043 140801 0.5350 +27043 200916 0.5430 +27043 284058 0.9110 +27043 474382 0.4670 +27043 728378 0.4380 +27043 728642 0.5200 +27043 100529209 0.5400 +27044 27161 0.9430 +27044 27327 0.4860 +27044 29100 0.5190 +27044 29102 0.6490 +27044 29896 0.4330 +27044 29927 0.7780 +27044 50636 0.4100 +27044 54487 0.5040 +27044 54845 0.5830 +27044 55109 0.5220 +27044 55124 0.4390 +27044 55131 0.5250 +27044 55152 0.4080 +27044 55379 0.4250 +27044 55750 0.6330 +27044 56647 0.4040 +27044 56829 0.5830 +27044 57085 0.4990 +27044 57510 0.6350 +27044 57670 0.5780 +27044 64101 0.4550 +27044 79148 0.4450 +27044 79571 0.4390 +27044 80853 0.5300 +27044 81567 0.4190 +27044 83743 0.4510 +27044 84955 0.6240 +27044 92140 0.9990 +27044 122402 0.4110 +27044 143689 0.8210 +27044 167227 0.4020 +27044 192669 0.5630 +27044 192670 0.5750 +27044 203068 0.4230 +27044 284131 0.5440 +27063 27295 0.5290 +27063 51421 0.6430 +27063 51422 0.4500 +27063 51676 0.4220 +27063 51778 0.6610 +27063 54567 0.4260 +27063 57158 0.5270 +27063 60485 0.4380 +27063 79718 0.4440 +27063 79933 0.4330 +27063 80205 0.4490 +27063 84665 0.9840 +27063 84675 0.4380 +27063 84676 0.5350 +27063 85366 0.5090 +27063 85441 0.4500 +27063 91624 0.4950 +27063 96764 0.4010 +27063 118932 0.5320 +27063 125972 0.5080 +27063 129446 0.4220 +27063 142689 0.5450 +27063 154796 0.4300 +27063 200539 0.5230 +27063 282996 0.5130 +27065 53407 0.8060 +27065 56850 0.5020 +27065 64946 0.4180 +27065 132884 0.7490 +27065 246100 0.4470 +27067 27161 0.6430 +27067 29102 0.6060 +27067 51637 0.4120 +27067 51663 0.4720 +27067 55342 0.6360 +27067 56829 0.4920 +27067 64506 0.6990 +27067 65080 0.5370 +27067 79132 0.5140 +27067 80315 0.5940 +27067 85437 0.5000 +27067 117178 0.6100 +27067 132864 0.5660 +27068 28998 0.6230 +27068 29925 0.4760 +27068 50617 0.7380 +27068 50808 0.5580 +27068 51021 0.4650 +27068 51067 0.4810 +27068 51073 0.4960 +27068 51102 0.5020 +27068 51116 0.4440 +27068 51128 0.5470 +27068 51154 0.4290 +27068 51314 0.4090 +27068 51382 0.7670 +27068 51520 0.4730 +27068 51606 0.6830 +27068 51727 0.5160 +27068 54059 0.4020 +27068 54938 0.4480 +27068 54948 0.4280 +27068 55173 0.6430 +27068 55270 0.4660 +27068 55699 0.5600 +27068 56648 0.6440 +27068 56681 0.4690 +27068 57505 0.5320 +27068 58497 0.4430 +27068 64077 0.9340 +27068 64965 0.4250 +27068 64968 0.6690 +27068 79631 0.4030 +27068 79693 0.4320 +27068 80221 0.4720 +27068 83594 0.4050 +27068 84076 0.4370 +27068 84532 0.6200 +27068 84942 0.4190 +27068 85476 0.5820 +27068 90423 0.7330 +27068 90624 0.4640 +27068 92399 0.4940 +27068 92935 0.4620 +27068 93974 0.4070 +27068 124454 0.4780 +27068 143244 0.6500 +27068 219927 0.4120 +27068 221264 0.4600 +27068 245972 0.6610 +27068 245973 0.6780 +27068 347487 0.4540 +27068 348110 0.4670 +27068 374291 0.4980 +27068 100287482 0.4390 +27068 101927367 0.4660 +27069 27348 0.5180 +27069 29970 0.8600 +27069 29979 0.4220 +27069 30835 0.5840 +27069 50813 0.8840 +27069 51142 0.6220 +27069 51643 0.5750 +27069 54462 0.4150 +27069 54971 0.4070 +27069 55076 0.7870 +27069 55108 0.6010 +27069 56676 0.4480 +27069 64114 0.6620 +27069 79581 0.4200 +27069 80013 0.8040 +27069 81793 0.4160 +27069 84332 0.4460 +27069 84876 0.4120 +27069 85480 0.4790 +27069 92211 0.6040 +27069 93978 0.5590 +27069 119467 0.4150 +27069 126328 0.6660 +27069 143187 0.4550 +27069 252839 0.7390 +27069 255057 0.4140 +27069 340745 0.4170 +27069 345456 0.4200 +27069 375189 0.4510 +27069 387521 0.5960 +27069 400916 0.4560 +27069 401024 0.4220 +27071 29760 0.4740 +27071 57697 0.5320 +27071 89857 0.4800 +27071 118788 0.7080 +27071 129880 0.4860 +27072 27340 0.5760 +27072 51209 0.8910 +27072 51232 0.7710 +27072 51606 0.4090 +27072 51622 0.9290 +27072 54967 0.8270 +27072 55014 0.9970 +27072 55823 0.9990 +27072 56850 0.8320 +27072 57617 0.9990 +27072 58517 0.4240 +27072 60412 0.4160 +27072 63894 0.5360 +27072 64284 0.4770 +27072 64601 0.9990 +27072 65082 0.9990 +27072 81609 0.4070 +27072 83547 0.4830 +27072 84315 0.8740 +27072 143187 0.9690 +27072 203062 0.5950 +27072 203245 0.5950 +27072 221960 0.9280 +27072 338382 0.8610 +27074 29126 0.4610 +27074 30835 0.5860 +27074 50489 0.7530 +27074 50943 0.4040 +27074 54682 0.4330 +27074 85480 0.5660 +27074 91543 0.4220 +27074 123803 0.5700 +27074 170482 0.4870 +27074 100526664 0.5250 +27075 28969 0.6150 +27075 51105 0.4150 +27075 57037 0.6470 +27075 84330 0.4230 +27075 90139 0.4810 +27075 441168 0.4270 +27075 441631 0.5390 +27076 53836 0.4960 +27076 54443 0.4560 +27076 55568 0.4200 +27076 57126 0.4250 +27076 57152 0.4590 +27076 57157 0.4230 +27076 58530 0.5100 +27076 64756 0.4280 +27076 80740 0.4770 +27076 83639 0.5250 +27076 155465 0.9140 +27076 160065 0.4450 +27076 171169 0.4430 +27076 196463 0.4320 +27076 254428 0.4300 +27076 284346 0.4690 +27076 338328 0.4400 +27076 390940 0.5890 +27076 399967 0.4470 +27076 653583 0.5500 +27076 100169851 0.5070 +27076 101928108 0.5400 +27077 27130 0.4720 +27077 27241 0.4080 +27077 28964 0.4080 +27077 51098 0.4420 +27077 51259 0.9950 +27077 51524 0.6210 +27077 54585 0.4030 +27077 54806 0.9760 +27077 54903 0.9930 +27077 55081 0.4220 +27077 55212 0.4060 +27077 55764 0.4520 +27077 57096 0.6440 +27077 57539 0.4380 +27077 57545 0.9980 +27077 57560 0.4130 +27077 57728 0.5830 +27077 65062 0.8920 +27077 65250 0.6470 +27077 79583 0.9980 +27077 79598 0.6180 +27077 79600 0.9990 +27077 79809 0.4620 +27077 79848 0.5060 +27077 79867 0.9970 +27077 80184 0.9870 +27077 80776 0.9990 +27077 84314 0.9530 +27077 84902 0.4910 +27077 90410 0.4840 +27077 91147 0.9970 +27077 91754 0.4710 +27077 95681 0.6200 +27077 112752 0.4660 +27077 117177 0.6070 +27077 129880 0.4880 +27077 132884 0.4210 +27077 166379 0.5500 +27077 200728 0.9660 +27077 200894 0.7070 +27077 219844 0.5090 +27077 219854 0.6840 +27077 261734 0.9060 +27077 283232 0.7180 +27077 284086 0.5050 +27077 374654 0.4860 +27077 387707 0.4600 +27077 392509 0.4020 +27079 27349 0.4500 +27079 28998 0.6070 +27079 29083 0.6640 +27079 29914 0.6080 +27079 51032 0.4460 +27079 51067 0.4840 +27079 51119 0.4750 +27079 51121 0.4700 +27079 51504 0.4660 +27079 51654 0.4570 +27079 54517 0.8990 +27079 54802 0.4710 +27079 54888 0.4100 +27079 54920 0.4490 +27079 55178 0.7830 +27079 55505 0.4350 +27079 55794 0.5740 +27079 56902 0.4730 +27079 57129 0.6150 +27079 57561 0.4130 +27079 57617 0.4330 +27079 63875 0.7010 +27079 64577 0.5840 +27079 64983 0.4870 +27079 65003 0.6530 +27079 65005 0.4170 +27079 79590 0.5940 +27079 79691 0.4800 +27079 79728 0.5840 +27079 79913 0.4540 +27079 79922 0.5730 +27079 80324 0.8260 +27079 80745 0.4720 +27079 81890 0.4480 +27079 83448 0.8780 +27079 83480 0.8210 +27079 84273 0.4080 +27079 84545 0.6060 +27079 84705 0.7850 +27079 84881 0.4680 +27079 85865 0.4550 +27079 92170 0.6150 +27079 115416 0.7290 +27079 115708 0.4050 +27079 126789 0.7200 +27079 142940 0.8240 +27079 150962 0.7650 +27079 219927 0.6780 +27079 285367 0.7320 +27085 28996 0.4750 +27085 28998 0.4930 +27085 29028 0.4960 +27085 54955 0.5010 +27085 55345 0.6420 +27085 55388 0.4100 +27085 79075 0.4540 +27085 81620 0.4350 +27085 84260 0.5220 +27085 84296 0.5460 +27085 90381 0.9840 +27085 93594 0.4460 +27085 200895 0.4420 +27087 29126 0.5070 +27087 29851 0.7190 +27087 30009 0.5960 +27087 50943 0.5820 +27087 51348 0.5390 +27087 51744 0.5520 +27087 63827 0.5040 +27087 80381 0.4850 +27087 81576 0.6430 +27087 84868 0.5990 +27087 117157 0.4870 +27087 135152 0.9080 +27087 149041 0.6180 +27087 201633 0.5940 +27087 221914 0.4530 +27087 259197 0.7100 +27087 375790 0.4230 +27089 27350 0.7570 +27089 28958 0.4880 +27089 29085 0.5540 +27089 29093 0.6220 +27089 29796 0.9990 +27089 51021 0.4410 +27089 51065 0.4300 +27089 51069 0.4060 +27089 51079 0.9950 +27089 51142 0.4020 +27089 51241 0.4710 +27089 51372 0.5150 +27089 51650 0.4260 +27089 54205 0.9460 +27089 54499 0.5710 +27089 54539 0.9790 +27089 54543 0.6120 +27089 54902 0.5390 +27089 54998 0.5930 +27089 55028 0.5660 +27089 55245 0.6490 +27089 55871 0.4750 +27089 55967 0.9960 +27089 56901 0.6850 +27089 56993 0.4610 +27089 57379 0.7560 +27089 57407 0.5590 +27089 59286 0.5080 +27089 60489 0.7600 +27089 64111 0.8070 +27089 64963 0.4950 +27089 64976 0.4490 +27089 65003 0.4380 +27089 79002 0.9350 +27089 79598 0.4400 +27089 79728 0.7360 +27089 80142 0.5920 +27089 80195 0.5560 +27089 81341 0.9070 +27089 81892 0.7490 +27089 84266 0.4280 +27089 84300 0.5580 +27089 84419 0.6300 +27089 84701 0.9920 +27089 84817 0.4300 +27089 84833 0.8980 +27089 84886 0.9840 +27089 84939 0.7200 +27089 84987 0.6730 +27089 90624 0.5260 +27089 91300 0.8610 +27089 93974 0.6860 +27089 94081 0.4780 +27089 116541 0.4030 +27089 125965 0.9590 +27089 125988 0.5010 +27089 126328 0.9970 +27089 127124 0.4080 +27089 128308 0.6380 +27089 139221 0.7200 +27089 140564 0.7560 +27089 140823 0.7550 +27089 143879 0.4490 +27089 150678 0.4720 +27089 164668 0.7560 +27089 164684 0.9230 +27089 170712 0.9430 +27089 192286 0.4270 +27089 200315 0.7560 +27089 200316 0.7580 +27089 219927 0.4240 +27089 267020 0.8420 +27089 283459 0.9570 +27089 341947 0.6010 +27089 374291 0.9920 +27089 388753 0.9670 +27089 440567 0.9980 +27089 440574 0.4980 +27089 728317 0.7200 +27089 790955 0.4380 +27089 100131801 0.4940 +27089 100532726 0.8200 +27089 105372267 0.4340 +27090 29071 0.4890 +27090 55808 0.4180 +27090 56667 0.4660 +27090 56913 0.5570 +27090 94025 0.5010 +27090 118430 0.4090 +27090 140453 0.4140 +27090 143662 0.4370 +27090 200958 0.4150 +27090 727897 0.4130 +27091 27092 0.8440 +27091 28227 0.6550 +27091 51314 0.4260 +27091 55012 0.6550 +27091 55799 0.4060 +27091 55844 0.6710 +27091 59283 0.8000 +27091 59284 0.7510 +27091 93145 0.7510 +27091 115727 0.6640 +27091 116443 0.7240 +27091 116444 0.7430 +27091 118427 0.4410 +27091 149111 0.7740 +27091 170572 0.5530 +27091 200909 0.5430 +27091 254263 0.8420 +27091 285242 0.5450 +27091 285971 0.4040 +27091 375567 0.5400 +27091 388336 0.5610 +27091 402117 0.5600 +27091 440829 0.5480 +27091 729956 0.5900 +27091 729993 0.7790 +27092 28227 0.6500 +27092 51393 0.4680 +27092 53616 0.5130 +27092 55012 0.6500 +27092 55799 0.6810 +27092 55844 0.6500 +27092 57685 0.5700 +27092 57828 0.7260 +27092 59283 0.9060 +27092 59284 0.9510 +27092 59285 0.9150 +27092 79820 0.7250 +27092 93145 0.7380 +27092 93589 0.9370 +27092 115727 0.6500 +27092 116443 0.7740 +27092 116444 0.7730 +27092 117144 0.7230 +27092 117155 0.7200 +27092 147991 0.4080 +27092 149111 0.7620 +27092 170572 0.5400 +27092 200909 0.5400 +27092 246329 0.7200 +27092 254263 0.8010 +27092 257044 0.7340 +27092 257062 0.7200 +27092 285242 0.5400 +27092 285588 0.7200 +27092 340393 0.7200 +27092 340547 0.4330 +27092 347732 0.7260 +27092 375567 0.5860 +27092 378807 0.7230 +27092 388336 0.5740 +27092 400120 0.4880 +27092 402117 0.5500 +27092 440829 0.5400 +27092 729956 0.5750 +27092 729993 0.7670 +27092 100130348 0.7200 +27094 27345 0.9130 +27094 126755 0.5050 +27094 128408 0.5700 +27094 157855 0.9250 +27094 219527 0.4750 +27094 389816 0.5060 +27094 408187 0.4640 +27094 440699 0.4790 +27095 30816 0.4240 +27095 51112 0.9970 +27095 51128 0.7390 +27095 51399 0.9990 +27095 51693 0.9990 +27095 55014 0.5300 +27095 55262 0.7830 +27095 55684 0.4500 +27095 56681 0.5800 +27095 57111 0.4130 +27095 57533 0.8070 +27095 58485 0.9990 +27095 60684 0.9930 +27095 64083 0.6940 +27095 79090 0.9990 +27095 79370 0.8240 +27095 80006 0.9740 +27095 80765 0.4120 +27095 81551 0.7390 +27095 81876 0.8940 +27095 83452 0.4990 +27095 83548 0.6400 +27095 84952 0.4470 +27095 89866 0.5470 +27095 117177 0.6950 +27095 122553 0.9990 +27095 126003 0.9990 +27095 163782 0.7020 +27095 285180 0.5990 +27095 339122 0.7110 +27095 401409 0.5290 +27095 100128327 0.9030 +27097 27443 0.6240 +27097 51562 0.7910 +27097 51616 0.9990 +27097 54107 0.7720 +27097 54457 0.8390 +27097 55252 0.4430 +27097 55578 0.9990 +27097 55689 0.8870 +27097 56655 0.7770 +27097 56943 0.9860 +27097 56970 0.9960 +27097 57325 0.8460 +27097 57585 0.4520 +27097 64412 0.4890 +27097 79595 0.8180 +27097 79753 0.6230 +27097 80335 0.4380 +27097 83443 0.9600 +27097 83860 0.5110 +27097 84101 0.4020 +27097 84749 0.4130 +27097 93624 0.9950 +27097 112869 0.9970 +27097 117143 0.9990 +27097 127002 0.7330 +27097 129685 0.9370 +27097 132851 0.4290 +27097 138474 0.8470 +27097 158880 0.7320 +27097 170394 0.4970 +27097 197335 0.7460 +27097 222255 0.6260 +27097 387332 0.8050 +27097 389856 0.7240 +27097 391742 0.4020 +27097 391746 0.4020 +27097 391747 0.4020 +27097 646066 0.4020 +27097 646103 0.4020 +27097 653604 0.5010 +27097 100287513 0.4020 +27097 102723526 0.4020 +27097 112488736 0.4020 +27097 112488737 0.4020 +27097 112488738 0.4020 +27097 112488739 0.4020 +27097 112488740 0.4020 +27097 112488745 0.4020 +27097 112488746 0.4020 +27097 112488747 0.4020 +27098 55556 0.6240 +27098 55809 0.4260 +27098 81035 0.5170 +27098 84034 0.4470 +27098 103910 0.4070 +27098 116441 0.4180 +27098 168451 0.4520 +27098 284697 0.4600 +27098 399888 0.4390 +27098 642597 0.6090 +27098 643641 0.4630 +27101 51126 0.5150 +27101 55791 0.4140 +27101 56998 0.7510 +27101 80018 0.4810 +27101 84217 0.4960 +27102 51360 0.4580 +27102 55157 0.8020 +27102 55324 0.4740 +27102 57176 0.4150 +27102 57505 0.4400 +27102 57817 0.4310 +27102 79587 0.4310 +27102 83939 0.6190 +27102 284312 0.4360 +27102 439996 0.9030 +27102 440275 0.4640 +27102 100310846 0.4240 +27106 54477 0.4090 +27106 54509 0.4270 +27106 55319 0.4900 +27106 57520 0.4330 +27106 64750 0.4650 +27106 65997 0.4490 +27106 80183 0.4110 +27106 83737 0.4110 +27106 84144 0.4810 +27106 219654 0.4290 +27106 374977 0.4150 +27107 55279 0.6300 +27107 57664 0.5350 +27107 64783 0.4420 +27107 79872 0.4210 +27107 80018 0.4120 +27107 80124 0.5420 +27107 80135 0.6890 +27107 84079 0.4190 +27107 90268 0.4370 +27107 91775 0.4050 +27107 147339 0.4660 +27107 256472 0.4330 +27107 100125288 0.4090 +27109 50617 0.4190 +27109 51102 0.6660 +27109 51522 0.5520 +27109 55699 0.5290 +27109 64756 0.4050 +27109 64981 0.4170 +27109 79587 0.4240 +27109 84833 0.5890 +27109 84869 0.4380 +27109 126328 0.4010 +27109 135114 0.4690 +27109 155066 0.5520 +27109 254863 0.4260 +27109 267020 0.5760 +27109 440400 0.5400 +27109 440574 0.4460 +27109 493753 0.4270 +27109 100526740 0.6670 +27111 51538 0.6330 +27111 55646 0.6160 +27111 55660 0.6370 +27111 81622 0.7180 +27111 286499 0.5910 +27111 441519 0.5510 +27112 55906 0.5040 +27112 57578 0.6270 +27112 259232 0.6090 +27112 285175 0.4980 +27113 27244 0.4890 +27113 29761 0.4700 +27113 30001 0.5090 +27113 51608 0.4270 +27113 54205 0.6200 +27113 55332 0.4470 +27113 55367 0.4610 +27113 57646 0.5190 +27113 63970 0.4470 +27113 64112 0.4200 +27113 64393 0.4770 +27113 79370 0.4780 +27113 79680 0.6600 +27113 83667 0.4520 +27113 84260 0.4030 +27113 90427 0.6160 +27113 94241 0.4120 +27113 112770 0.4970 +27113 114789 0.4170 +27113 253782 0.4100 +27113 387893 0.4300 +27113 100529063 0.5530 +27115 30833 0.6500 +27115 50808 0.9040 +27115 50940 0.5670 +27115 51251 0.6840 +27115 54806 0.5050 +27115 55811 0.6980 +27115 56953 0.6500 +27115 64577 0.4570 +27115 84618 0.6770 +27115 93034 0.6610 +27115 115024 0.6770 +27115 122481 0.6660 +27115 158067 0.7870 +27115 196883 0.7560 +27115 221264 0.6850 +27115 377841 0.6550 +27115 100526794 0.6610 +27115 102157402 0.6500 +27120 27121 0.6450 +27120 27123 0.5940 +27120 55748 0.5830 +27120 58985 0.4390 +27120 64092 0.4610 +27120 81626 0.4230 +27120 83890 0.4110 +27120 83999 0.4490 +27120 84519 0.4120 +27120 84547 0.4370 +27120 84691 0.4220 +27120 89780 0.5290 +27120 147872 0.9170 +27120 160298 0.4440 +27120 219938 0.4950 +27120 285782 0.7610 +27120 729428 0.4460 +27121 27122 0.4940 +27121 27123 0.9130 +27121 50964 0.6540 +27121 51176 0.5750 +27121 51384 0.7810 +27121 54361 0.8000 +27121 57140 0.4800 +27121 64321 0.4600 +27121 79412 0.8650 +27121 80326 0.7990 +27121 81029 0.7780 +27121 83999 0.9750 +27121 85407 0.4820 +27121 89780 0.9060 +27121 129293 0.4050 +27121 147111 0.4850 +27121 147495 0.4410 +27121 284654 0.4360 +27121 339488 0.4470 +27122 27123 0.9670 +27122 51176 0.5160 +27122 51384 0.4380 +27122 51726 0.4430 +27122 54361 0.4690 +27122 59352 0.4010 +27122 79412 0.7120 +27122 80326 0.4970 +27122 81029 0.4660 +27122 83999 0.7870 +27122 84870 0.4880 +27122 85407 0.4690 +27122 89780 0.7270 +27122 147872 0.5500 +27122 284654 0.4230 +27123 50964 0.8320 +27123 51176 0.5970 +27123 51384 0.8050 +27123 54361 0.8300 +27123 54894 0.4110 +27123 55361 0.4890 +27123 79412 0.8800 +27123 80326 0.8150 +27123 81029 0.8160 +27123 83999 0.9920 +27123 84168 0.5630 +27123 84870 0.4190 +27123 85407 0.4270 +27123 89780 0.9320 +27123 90316 0.4580 +27123 118429 0.6320 +27123 147111 0.4430 +27123 147495 0.4200 +27123 284654 0.4800 +27123 340419 0.4760 +27124 27339 0.5130 +27124 50487 0.4570 +27124 51196 0.7440 +27124 51763 0.9070 +27124 55615 0.7160 +27124 80271 0.9190 +27124 84812 0.6800 +27124 89869 0.6730 +27124 92293 0.5020 +27124 113026 0.6730 +27124 126755 0.4440 +27124 253430 0.9320 +27125 29123 0.5650 +27125 51224 0.5700 +27125 51497 0.9000 +27125 51574 0.8030 +27125 51755 0.7170 +27125 54205 0.4500 +27125 54542 0.6410 +27125 54623 0.9010 +27125 54880 0.5530 +27125 55209 0.5910 +27125 55250 0.7220 +27125 55677 0.8490 +27125 55840 0.9870 +27125 56257 0.7780 +27125 56339 0.4850 +27125 57721 0.4180 +27125 58508 0.5120 +27125 64866 0.4240 +27125 79577 0.9600 +27125 79664 0.9340 +27125 79961 0.4220 +27125 80237 0.9980 +27125 80349 0.9180 +27125 81488 0.4040 +27125 84246 0.4560 +27125 84337 0.5490 +27125 84444 0.7120 +27125 84524 0.9220 +27125 85403 0.9920 +27125 123169 0.9400 +27125 124790 0.5520 +27125 171482 0.4020 +27125 253943 0.4250 +27125 353322 0.4490 +27127 29781 0.4970 +27127 50511 0.8710 +27127 54069 0.4280 +27127 54145 0.5550 +27127 54386 0.5150 +27127 54514 0.4560 +27127 54780 0.5290 +27127 54921 0.4430 +27127 55723 0.6300 +27127 55766 0.5380 +27127 56158 0.7890 +27127 56159 0.5280 +27127 56163 0.4620 +27127 56164 0.4030 +27127 56979 0.4690 +27127 57697 0.6750 +27127 64151 0.7180 +27127 64682 0.4630 +27127 64779 0.5970 +27127 79677 0.6310 +27127 80119 0.4290 +27127 84072 0.7390 +27127 84135 0.6870 +27127 84515 0.4920 +27127 85236 0.5530 +27127 93426 0.8220 +27127 94239 0.5750 +27127 113130 0.7570 +27127 113444 0.6180 +27127 114799 0.6910 +27127 126520 0.5800 +27127 128312 0.5550 +27127 130951 0.4520 +27127 144715 0.4510 +27127 150280 0.6400 +27127 150365 0.5780 +27127 151246 0.9480 +27127 151648 0.4420 +27127 157570 0.8050 +27127 164045 0.4400 +27127 197370 0.5690 +27127 254394 0.5560 +27127 254528 0.5260 +27127 255626 0.5740 +27127 256126 0.8210 +27127 266743 0.5910 +27127 283129 0.4300 +27127 283847 0.6690 +27127 284071 0.5810 +27127 286053 0.5970 +27127 317761 0.4130 +27127 339834 0.4320 +27127 346673 0.5040 +27127 400629 0.4080 +27127 474382 0.5380 +27127 493861 0.5200 +27127 642636 0.9990 +27127 644186 0.7730 +27127 728637 0.4100 +27128 51272 0.4800 +27128 54069 0.4890 +27128 54440 0.4320 +27128 54518 0.4730 +27128 55166 0.4200 +27128 55691 0.7200 +27128 64098 0.4630 +27128 80301 0.4530 +27128 80342 0.4210 +27128 83443 0.4220 +27128 90060 0.6440 +27128 112858 0.4530 +27128 124460 0.5130 +27128 160622 0.6230 +27128 257106 0.5280 +27128 405754 0.4240 +27129 51182 0.4200 +27129 51668 0.4910 +27129 51778 0.6230 +27129 56203 0.4540 +27129 57538 0.4410 +27129 80331 0.4070 +27129 85479 0.5280 +27129 94086 0.7870 +27129 116835 0.4250 +27129 124535 0.4260 +27129 126393 0.6680 +27129 165721 0.4350 +27129 165904 0.4520 +27129 259217 0.4470 +27129 392509 0.4090 +27129 442721 0.4880 +27130 28981 0.4400 +27130 29882 0.7200 +27130 29964 0.6540 +27130 51134 0.4530 +27130 51199 0.4910 +27130 51259 0.4860 +27130 51343 0.6260 +27130 51806 0.7840 +27130 54806 0.8190 +27130 54903 0.5670 +27130 55014 0.4030 +27130 55662 0.7670 +27130 55745 0.4460 +27130 55997 0.6590 +27130 57216 0.6210 +27130 57545 0.5160 +27130 57560 0.4290 +27130 57619 0.4200 +27130 57728 0.4360 +27130 63929 0.4460 +27130 65062 0.4070 +27130 79180 0.5170 +27130 79600 0.5420 +27130 79633 0.4380 +27130 79659 0.4150 +27130 79809 0.6140 +27130 79867 0.4880 +27130 80184 0.7850 +27130 80776 0.6780 +27130 81839 0.5150 +27130 84662 0.5840 +27130 90410 0.4810 +27130 91147 0.6350 +27130 91754 0.9290 +27130 91860 0.7790 +27130 134359 0.5070 +27130 140609 0.4160 +27130 144165 0.6210 +27130 150737 0.4350 +27130 163688 0.7790 +27130 166336 0.6860 +27130 200894 0.5250 +27130 203068 0.4230 +27130 203286 0.8700 +27130 261734 0.9590 +27130 284086 0.9520 +27130 378708 0.4070 +27130 100423062 0.5800 +27130 102723407 0.4530 +27131 28964 0.4220 +27131 29886 0.7550 +27131 29887 0.4760 +27131 29907 0.5410 +27131 29916 0.4590 +27131 29934 0.9010 +27131 51019 0.5030 +27131 51375 0.5390 +27131 51429 0.8100 +27131 51479 0.4070 +27131 51699 0.9980 +27131 51726 0.6130 +27131 54885 0.4990 +27131 55120 0.4830 +27131 55294 0.6400 +27131 55330 0.4990 +27131 55353 0.4480 +27131 55737 0.9990 +27131 55764 0.6130 +27131 55907 0.4150 +27131 55909 0.5860 +27131 57231 0.4210 +27131 58533 0.9980 +27131 64089 0.4380 +27131 64786 0.5380 +27131 81567 0.5360 +27131 81609 0.9430 +27131 83891 0.4660 +27131 84062 0.4990 +27131 84955 0.6310 +27131 90203 0.4050 +27131 112574 0.5710 +27131 112936 0.9270 +27131 130340 0.5080 +27131 160298 0.6360 +27131 169166 0.4460 +27131 254122 0.9800 +27131 257364 0.5850 +27131 286451 0.5040 +27131 340277 0.4590 +27131 347252 0.4200 +27131 388552 0.4990 +27131 399979 0.4110 +27131 401548 0.4030 +27131 100287171 0.5060 +27132 79007 0.4270 +27132 124044 0.4220 +27132 146429 0.4330 +27132 197320 0.5690 +27132 253738 0.5380 +27132 100170229 0.4530 +27133 51806 0.4530 +27133 56479 0.4870 +27133 57582 0.5010 +27133 81033 0.4220 +27133 93107 0.4050 +27133 169522 0.4210 +27133 343450 0.4240 +27134 49861 0.7770 +27134 50848 0.9220 +27134 51208 0.7730 +27134 51599 0.4300 +27134 53842 0.7620 +27134 54845 0.5600 +27134 55114 0.4380 +27134 55646 0.4030 +27134 57369 0.6900 +27134 57530 0.9970 +27134 58494 0.4930 +27134 64398 0.6600 +27134 80004 0.5330 +27134 83700 0.6510 +27134 84708 0.4940 +27134 84952 0.4040 +27134 90952 0.5210 +27134 91862 0.7180 +27134 92359 0.5520 +27134 117531 0.4430 +27134 126695 0.4120 +27134 137075 0.7800 +27134 144100 0.4750 +27134 149461 0.7900 +27134 150084 0.4640 +27134 153562 0.9950 +27134 154796 0.5430 +27134 644672 0.7650 +27134 100132463 0.7620 +27134 100288814 0.6750 +27134 100506658 0.9980 +27136 27173 0.4260 +27136 51270 0.4060 +27136 51649 0.4260 +27136 54456 0.4010 +27136 56154 0.4340 +27136 56165 0.4110 +27136 78992 0.4790 +27136 79441 0.4440 +27136 89978 0.4780 +27136 122402 0.4740 +27136 150365 0.7680 +27136 163589 0.4010 +27136 256309 0.4050 +27141 29881 0.4210 +27141 59349 0.4520 +27141 93343 0.5210 +27141 440503 0.4890 +27143 54106 0.5720 +27143 54538 0.4150 +27143 64377 0.4420 +27143 140766 0.4950 +27145 29888 0.4320 +27145 29966 0.4950 +27145 29984 0.7110 +27145 30816 0.5680 +27145 49861 0.4550 +27145 50515 0.4300 +27145 55754 0.4960 +27145 55830 0.4800 +27145 57464 0.5910 +27145 57542 0.5070 +27145 85369 0.4650 +27145 123720 0.6110 +27145 146862 0.4080 +27145 283310 0.4550 +27145 338440 0.4020 +27146 51056 0.4410 +27146 54876 0.7590 +27146 55231 0.4510 +27146 56955 0.4570 +27146 56964 0.4110 +27146 57495 0.4010 +27146 64151 0.7470 +27146 80306 0.5940 +27146 126868 0.4330 +27146 133015 0.5880 +27146 144108 0.4610 +27146 254251 0.7770 +27147 51209 0.7140 +27148 50846 0.4370 +27148 51684 0.9980 +27148 54919 0.4190 +27148 54986 0.5540 +27148 55036 0.4590 +27148 55582 0.9700 +27148 57614 0.4370 +27148 57707 0.4450 +27148 57728 0.4260 +27148 63897 0.4040 +27148 64399 0.4180 +27148 79925 0.4860 +27148 83538 0.4230 +27148 84976 0.4060 +27148 89765 0.5500 +27148 92105 0.4250 +27148 115948 0.4060 +27148 135138 0.5150 +27148 200373 0.4570 +27148 221421 0.5440 +27148 285180 0.4320 +27148 345895 0.4810 +27148 374654 0.8370 +27148 388389 0.4090 +27148 399671 0.4390 +27151 54507 0.4540 +27151 55721 0.4220 +27151 63906 0.4380 +27151 148137 0.4020 +27151 345062 0.4250 +27152 28981 0.4940 +27152 29882 0.4420 +27152 29945 0.6870 +27152 29964 0.5790 +27152 51057 0.9930 +27152 51098 0.4840 +27152 51433 0.4620 +27152 51529 0.4280 +27152 51626 0.5340 +27152 51684 0.4760 +27152 51715 0.5590 +27152 55112 0.4520 +27152 55132 0.4240 +27152 55255 0.6070 +27152 57216 0.6790 +27152 57536 0.4320 +27152 57539 0.6490 +27152 57560 0.4490 +27152 57728 0.6640 +27152 64151 0.5570 +27152 64682 0.5950 +27152 64792 0.4460 +27152 65061 0.5270 +27152 79363 0.9850 +27152 79659 0.4320 +27152 79809 0.5140 +27152 79871 0.5380 +27152 79935 0.6070 +27152 80184 0.5440 +27152 80199 0.9990 +27152 81620 0.4600 +27152 83447 0.4840 +27152 83461 0.4130 +27152 85417 0.6080 +27152 89891 0.4440 +27152 112752 0.6790 +27152 115704 0.4170 +27152 121053 0.4870 +27152 126520 0.5310 +27152 132884 0.4170 +27152 144165 0.5820 +27152 145282 0.4310 +27152 146057 0.4650 +27152 153241 0.4430 +27152 161582 0.4040 +27152 166336 0.5830 +27152 166752 0.4420 +27152 255758 0.5250 +27152 256471 0.5500 +27152 259266 0.4330 +27152 261734 0.7100 +27152 375190 0.4830 +27153 57455 0.6670 +27153 57541 0.6560 +27153 58506 0.6180 +27153 79183 0.4200 +27153 83444 0.6280 +27153 84922 0.4650 +27153 89887 0.4060 +27153 115950 0.4960 +27153 147658 0.4160 +27153 155061 0.4900 +27153 202865 0.4190 +27153 392843 0.4030 +27153 100507290 0.4750 +27153 100527949 0.4090 +27154 29072 0.5850 +27154 29117 0.6720 +27154 51147 0.9080 +27154 54431 0.4270 +27154 54454 0.4010 +27154 54556 0.6620 +27154 54815 0.4150 +27154 55700 0.5090 +27154 55870 0.5580 +27154 57062 0.4320 +27154 57459 0.4010 +27154 57592 0.4320 +27154 64763 0.4520 +27154 64769 0.9970 +27154 65980 0.5030 +27154 79595 0.5170 +27154 79724 0.4450 +27154 79915 0.5090 +27154 84148 0.5440 +27154 84289 0.9900 +27154 90378 0.4170 +27154 92609 0.4200 +27154 140710 0.4250 +27154 342371 0.5580 +27154 653604 0.5670 +27156 51715 0.8100 +27156 54554 0.4400 +27156 55815 0.6080 +27156 55884 0.4400 +27156 57639 0.5330 +27156 57711 0.5800 +27156 58477 0.5000 +27156 63926 0.6340 +27156 79025 0.4470 +27156 80258 0.4080 +27156 83853 0.5350 +27156 84223 0.5990 +27156 84549 0.5090 +27156 85452 0.5400 +27156 85478 0.6360 +27156 90506 0.4630 +27156 93190 0.4390 +27156 127003 0.5030 +27156 132671 0.5270 +27156 135138 0.5090 +27156 138162 0.4040 +27156 138255 0.6220 +27156 140735 0.4110 +27156 145508 0.4390 +27156 146845 0.7120 +27156 149465 0.5320 +27156 151112 0.5340 +27156 151651 0.4710 +27156 151827 0.5690 +27156 153643 0.6050 +27156 161502 0.5900 +27156 162333 0.4230 +27156 197335 0.5680 +27156 221421 0.4480 +27156 222967 0.5710 +27156 257177 0.4630 +27156 282809 0.4400 +27156 283726 0.4900 +27156 285755 0.5080 +27156 345895 0.4440 +27156 374407 0.4020 +27156 374977 0.4170 +27156 386683 0.4480 +27156 399671 0.5320 +27156 401551 0.6860 +27156 442361 0.5060 +27156 100128569 0.4160 +27158 27247 0.4480 +27158 28960 0.9530 +27158 51167 0.4290 +27158 51647 0.6530 +27158 51750 0.8650 +27158 54205 0.6670 +27158 57019 0.9990 +27158 57128 0.5940 +27158 57834 0.8690 +27158 64210 0.6680 +27158 64428 0.7290 +27158 66002 0.7990 +27158 80020 0.4950 +27158 80224 0.4970 +27158 80308 0.7680 +27158 81689 0.4080 +27158 83990 0.7010 +27158 84191 0.5340 +27158 112812 0.6460 +27158 114790 0.4570 +27158 122961 0.4100 +27158 150274 0.4320 +27158 200205 0.5240 +27158 260293 0.9010 +27158 285440 0.7070 +27158 388962 0.4790 +27158 552900 0.5430 +27158 654483 0.6620 +27158 100131017 0.4310 +27158 100861540 0.7660 +27159 29796 0.4430 +27159 29988 0.4620 +27159 54820 0.4350 +27159 55342 0.4120 +27159 55577 0.9010 +27159 55793 0.4180 +27159 56729 0.4470 +27159 60482 0.4310 +27159 66005 0.6650 +27159 79002 0.5410 +27159 79961 0.4510 +27159 84666 0.5850 +27159 84886 0.4580 +27159 90865 0.6080 +27159 125965 0.5410 +27159 140690 0.4800 +27159 144811 0.4160 +27159 728378 0.4200 +27161 27250 0.8140 +27161 27257 0.4870 +27161 27327 0.9990 +27161 29102 0.9950 +27161 29110 0.4750 +27161 29883 0.7500 +27161 30816 0.5430 +27161 50628 0.9990 +27161 51092 0.4050 +27161 51119 0.5250 +27161 51185 0.6350 +27161 51202 0.4150 +27161 51320 0.5720 +27161 51366 0.4340 +27161 51367 0.9000 +27161 51441 0.6590 +27161 51592 0.4900 +27161 51701 0.5250 +27161 51804 0.4150 +27161 53371 0.4080 +27161 54108 0.5060 +27161 54145 0.5680 +27161 54464 0.8310 +27161 54487 0.9840 +27161 54502 0.4920 +27161 54542 0.7600 +27161 54623 0.4090 +27161 54847 0.6000 +27161 54913 0.9000 +27161 54915 0.4140 +27161 54931 0.5580 +27161 55023 0.4570 +27161 55031 0.5320 +27161 55132 0.4820 +27161 55421 0.9150 +27161 55512 0.4480 +27161 55534 0.5060 +27161 55621 0.5280 +27161 55706 0.4050 +27161 55746 0.4140 +27161 55766 0.4990 +27161 55802 0.8850 +27161 56052 0.5210 +27161 56478 0.6430 +27161 56829 0.7150 +27161 56903 0.4660 +27161 57122 0.4050 +27161 57169 0.5330 +27161 57448 0.5710 +27161 57472 0.5010 +27161 57510 0.9900 +27161 57532 0.6250 +27161 60489 0.4820 +27161 64135 0.5370 +27161 64282 0.4040 +27161 64506 0.6670 +27161 64599 0.4290 +27161 64805 0.4120 +27161 64852 0.4090 +27161 64895 0.4750 +27161 65080 0.5030 +27161 79023 0.4330 +27161 79670 0.4710 +27161 79727 0.6980 +27161 79897 0.9000 +27161 79902 0.4330 +27161 80153 0.6640 +27161 80331 0.4110 +27161 80746 0.5400 +27161 81929 0.4250 +27161 83640 0.9000 +27161 83641 0.7700 +27161 83989 0.4170 +27161 84206 0.5640 +27161 84441 0.4990 +27161 84541 0.5330 +27161 84944 0.4970 +27161 85236 0.5680 +27161 85364 0.4310 +27161 90459 0.5390 +27161 91543 0.4330 +27161 92140 0.8590 +27161 92312 0.8080 +27161 94239 0.5240 +27161 113802 0.7260 +27161 114928 0.5220 +27161 120892 0.8900 +27161 128312 0.5710 +27161 129401 0.4050 +27161 129563 0.5850 +27161 131405 0.9400 +27161 137902 0.4900 +27161 138716 0.5430 +27161 143689 0.6290 +27161 146057 0.4270 +27161 149041 0.7910 +27161 149986 0.4060 +27161 154197 0.4760 +27161 167153 0.4630 +27161 167227 0.9720 +27161 170506 0.4610 +27161 192669 0.9970 +27161 192670 0.9880 +27161 200316 0.4690 +27161 201164 0.4020 +27161 202658 0.4140 +27161 219988 0.7280 +27161 246175 0.5490 +27161 253314 0.7520 +27161 253943 0.4090 +27161 255626 0.5680 +27161 257218 0.4500 +27161 257397 0.4360 +27161 283373 0.4690 +27161 283989 0.5440 +27161 284131 0.4240 +27161 317649 0.7580 +27161 340719 0.4320 +27161 348995 0.4080 +27161 353267 0.5710 +27161 378884 0.4050 +27161 387332 0.6410 +27161 389421 0.6080 +27161 392517 0.5960 +27161 405754 0.5070 +27161 440093 0.4290 +27161 440686 0.4290 +27161 474382 0.4990 +27161 653604 0.7050 +27161 100101267 0.4530 +27163 27294 0.4660 +27163 51573 0.6150 +27163 54414 0.6210 +27163 54948 0.4150 +27163 55697 0.7600 +27163 57406 0.6420 +27163 63874 0.6610 +27163 84557 0.5800 +27163 114757 0.4590 +27163 139760 0.5080 +27163 158584 0.7510 +27163 200576 0.4950 +27163 221955 0.6450 +27163 222236 0.8160 +27163 339221 0.4720 +27164 27235 0.9010 +27164 50508 0.4190 +27164 55237 0.6410 +27164 55966 0.4200 +27164 57167 0.4780 +27164 79923 0.5130 +27165 27202 0.4870 +27165 29968 0.4120 +27165 51213 0.4040 +27165 51557 0.7120 +27165 54407 0.5710 +27165 55748 0.8100 +27165 55847 0.4790 +27165 57103 0.6960 +27165 57571 0.8080 +27165 64902 0.4800 +27165 79073 0.5110 +27165 79366 0.4180 +27165 79814 0.4510 +27165 79944 0.8330 +27165 80017 0.9000 +27165 80705 0.4300 +27165 81539 0.4820 +27165 84706 0.4290 +27165 84735 0.8130 +27165 84883 0.4100 +27165 92745 0.4170 +27165 124454 0.8030 +27165 124975 0.8400 +27165 158584 0.4610 +27165 283377 0.4660 +27165 283985 0.6310 +27165 728137 0.4300 +27165 100289087 0.4310 +27166 51012 0.5830 +27166 51499 0.9990 +27166 54675 0.5190 +27166 55486 0.4040 +27166 56910 0.6650 +27166 83463 0.4010 +27166 91419 0.4120 +27166 92609 0.4080 +27166 114971 0.5000 +27166 115209 0.5250 +27166 132001 0.7050 +27166 153768 0.6800 +27173 30061 0.8310 +27173 50511 0.4110 +27173 55334 0.8150 +27173 55532 0.7280 +27173 55630 0.7690 +27173 55676 0.7670 +27173 56158 0.4510 +27173 56159 0.5420 +27173 57181 0.8140 +27173 57817 0.6220 +27173 64116 0.7540 +27173 64924 0.8100 +27173 79901 0.7900 +27173 80198 0.5430 +27173 84072 0.4420 +27173 91252 0.7980 +27173 93426 0.4120 +27173 146956 0.5040 +27173 148738 0.4100 +27173 148867 0.8010 +27173 150365 0.4440 +27173 158401 0.5230 +27173 164045 0.8490 +27173 169026 0.5860 +27173 200186 0.4840 +27173 201266 0.8160 +27173 221074 0.7630 +27173 256126 0.4220 +27173 283375 0.7720 +27173 283677 0.5090 +27173 285498 0.5770 +27173 345778 0.4790 +27173 388649 0.8210 +27173 101928601 0.4180 +27175 27229 0.9670 +27175 29922 0.7580 +27175 51700 0.4280 +27175 55835 0.6810 +27175 57787 0.5400 +27175 79677 0.4260 +27175 80097 0.8540 +27175 80110 0.5140 +27175 85378 0.9720 +27175 90990 0.4080 +27175 114791 0.9830 +27175 119467 0.4620 +27175 121441 0.7280 +27175 123606 0.4070 +27175 124599 0.4330 +27175 151195 0.4640 +27175 157922 0.4940 +27175 282991 0.5400 +27175 440145 0.7630 +27175 653784 0.8520 +27177 27178 0.4460 +27177 27179 0.7800 +27177 27257 0.6090 +27177 56300 0.6430 +27177 84639 0.8680 +27177 90865 0.5420 +27178 29110 0.5450 +27178 50616 0.4470 +27178 51135 0.5010 +27178 59082 0.4220 +27178 59307 0.9430 +27178 80380 0.4570 +27178 83445 0.6140 +27178 84867 0.4990 +27178 90865 0.7050 +27178 114548 0.4350 +27178 284110 0.4070 +27178 353133 0.4370 +27178 353134 0.5240 +27178 353141 0.5260 +27179 27189 0.4360 +27179 29949 0.4490 +27179 50616 0.4010 +27179 54921 0.4770 +27179 56300 0.5930 +27179 84639 0.6220 +27179 90865 0.6330 +27179 353376 0.4070 +27179 100302736 0.4070 +27180 30835 0.4620 +27180 43847 0.8540 +27180 50856 0.4120 +27180 51311 0.6220 +27180 54210 0.4080 +27180 58484 0.4570 +27180 79168 0.4120 +27180 84868 0.5290 +27180 94025 0.8850 +27180 126364 0.4570 +27180 140885 0.4250 +27180 146722 0.6340 +27180 160364 0.4270 +27180 284266 0.5810 +27180 727897 0.4570 +27181 50489 0.4590 +27181 84868 0.4130 +27181 85480 0.4350 +27181 90865 0.5080 +27181 146722 0.4010 +27181 260429 0.5950 +27181 284266 0.6240 +27183 27243 0.9980 +27183 28996 0.4940 +27183 29907 0.4700 +27183 51028 0.8700 +27183 51160 0.9740 +27183 51271 0.6980 +27183 51510 0.9980 +27183 51534 0.9990 +27183 51652 0.9890 +27183 51807 0.5110 +27183 54862 0.7520 +27183 55048 0.9180 +27183 55165 0.4030 +27183 55293 0.4640 +27183 57132 0.9990 +27183 64149 0.8060 +27183 79643 0.9990 +27183 79720 0.9570 +27183 79861 0.5210 +27183 80086 0.4990 +27183 81027 0.5340 +27183 81605 0.4490 +27183 84313 0.9220 +27183 84617 0.5370 +27183 84790 0.5390 +27183 84936 0.8750 +27183 85415 0.5020 +27183 89853 0.6400 +27183 90417 0.6690 +27183 91782 0.8120 +27183 92421 0.9880 +27183 92714 0.4310 +27183 93343 0.6980 +27183 112714 0.5140 +27183 113457 0.5220 +27183 114822 0.4030 +27183 120892 0.5100 +27183 128866 0.9520 +27183 129531 0.7510 +27183 137492 0.7450 +27183 148362 0.5750 +27183 155382 0.6640 +27183 171568 0.4360 +27183 197259 0.9090 +27183 200014 0.5930 +27183 221496 0.6400 +27183 260334 0.5250 +27183 347688 0.5530 +27183 347733 0.5520 +27183 100526767 0.9620 +27185 29801 0.5950 +27185 53349 0.4080 +27185 54413 0.4140 +27185 54820 0.9990 +27185 55288 0.9040 +27185 55294 0.9310 +27185 55669 0.4890 +27185 55704 0.8630 +27185 55729 0.5210 +27185 55735 0.5170 +27185 55763 0.5810 +27185 56850 0.4940 +27185 57459 0.4200 +27185 57502 0.4160 +27185 57576 0.4140 +27185 57731 0.5760 +27185 60412 0.4110 +27185 63826 0.8610 +27185 64067 0.4930 +27185 64837 0.4720 +27185 80279 0.5240 +27185 80351 0.6810 +27185 81565 0.9990 +27185 84062 0.9530 +27185 84516 0.7190 +27185 85358 0.5470 +27185 85458 0.9610 +27185 89953 0.4420 +27185 90410 0.4720 +27185 91752 0.7850 +27185 93986 0.4080 +27185 124602 0.4470 +27185 147700 0.4670 +27185 220074 0.5070 +27185 267012 0.8210 +27185 285025 0.8970 +27185 319100 0.5340 +27185 374654 0.4300 +27189 27190 0.6090 +27189 29949 0.4540 +27189 50616 0.7570 +27189 51561 0.4500 +27189 53342 0.5630 +27189 54756 0.8140 +27189 55540 0.9930 +27189 56300 0.4530 +27189 58985 0.5870 +27189 64806 0.6860 +27189 84818 0.9510 +27189 90865 0.7280 +27189 132014 0.9990 +27189 149233 0.4310 +27189 282616 0.5550 +27190 29949 0.4570 +27190 50616 0.5960 +27190 53342 0.6420 +27190 53832 0.4990 +27190 53833 0.4990 +27190 54756 0.8520 +27190 55540 0.9990 +27190 55801 0.4380 +27190 64806 0.9910 +27190 84818 0.8430 +27190 90865 0.5500 +27190 112744 0.6060 +27190 132014 0.9330 +27197 27198 0.4060 +27197 27239 0.5600 +27197 54329 0.4460 +27197 56834 0.4410 +27197 56927 0.4100 +27197 80258 0.8880 +27197 83550 0.4200 +27197 83873 0.4390 +27197 90861 0.4470 +27197 115330 0.4450 +27197 118442 0.4910 +27197 285601 0.4910 +27197 350383 0.5270 +27197 390212 0.4890 +27198 51738 0.6840 +27198 53831 0.6330 +27198 338442 0.6730 +27198 338557 0.6020 +27198 344561 0.5070 +27199 29899 0.4380 +27199 56413 0.4060 +27199 56670 0.5910 +27199 57105 0.4890 +27199 64805 0.4770 +27199 338442 0.5210 +27201 64215 0.5590 +27229 29922 0.9750 +27229 51060 0.6270 +27229 51174 0.6400 +27229 51199 0.6220 +27229 51308 0.4310 +27229 54801 0.5670 +27229 55125 0.4390 +27229 55722 0.5110 +27229 55755 0.7900 +27229 55835 0.9280 +27229 57507 0.4330 +27229 57787 0.9000 +27229 79447 0.4350 +27229 80097 0.9960 +27229 80852 0.6090 +27229 85302 0.4610 +27229 85378 0.9990 +27229 114791 0.9990 +27229 115106 0.6400 +27229 121441 0.9880 +27229 133482 0.4120 +27229 134359 0.4840 +27229 143879 0.4070 +27229 146227 0.4550 +27229 167691 0.7070 +27229 259266 0.4240 +27229 282991 0.9060 +27229 388135 0.4120 +27229 440145 0.9990 +27229 653784 0.9700 +27229 100289187 0.4010 +27229 100996939 0.4900 +27230 29927 0.5540 +27230 51608 0.6170 +27230 51726 0.4790 +27230 58477 0.4200 +27230 79879 0.4170 +27230 113201 0.4180 +27230 118424 0.6100 +27231 54981 0.9100 +27231 55191 0.6160 +27231 57469 0.4150 +27231 64802 0.9630 +27231 83439 0.4060 +27231 83594 0.9010 +27231 93100 0.9650 +27231 139596 0.6370 +27231 349565 0.6890 +27231 729020 0.4140 +27232 27430 0.6340 +27232 29803 0.4220 +27232 29958 0.9700 +27232 51268 0.9570 +27232 51564 0.4560 +27232 55349 0.4510 +27232 60528 0.4290 +27232 64902 0.9240 +27232 80243 0.6530 +27232 81034 0.4410 +27232 85414 0.4690 +27232 123263 0.4940 +27232 221895 0.4240 +27232 441024 0.4170 +27233 54490 0.6270 +27233 54575 0.6740 +27233 54576 0.6670 +27233 54577 0.6470 +27233 54578 0.6470 +27233 54579 0.6460 +27233 54600 0.6470 +27233 54657 0.6670 +27233 54658 0.6490 +27233 54659 0.6350 +27233 64090 0.5810 +27233 65217 0.5090 +27233 79799 0.6300 +27233 113189 0.5920 +27233 114799 0.5820 +27233 133688 0.5240 +27233 135152 0.5120 +27233 157570 0.5820 +27233 222537 0.4570 +27233 445329 0.5280 +27233 574537 0.6280 +27235 29090 0.5040 +27235 29880 0.4960 +27235 29914 0.9360 +27235 29928 0.5250 +27235 29968 0.4690 +27235 50485 0.5400 +27235 51004 0.9800 +27235 51025 0.5070 +27235 51117 0.9120 +27235 51142 0.4190 +27235 51179 0.8330 +27235 51196 0.5980 +27235 51725 0.6050 +27235 51761 0.4110 +27235 51805 0.9180 +27235 54363 0.8330 +27235 54802 0.4710 +27235 54840 0.8940 +27235 54884 0.5550 +27235 54886 0.4200 +27235 55676 0.4140 +27235 57017 0.9840 +27235 57107 0.9970 +27235 57143 0.4720 +27235 57171 0.4320 +27235 57216 0.4560 +27235 57407 0.5100 +27235 64423 0.5730 +27235 64748 0.4200 +27235 79934 0.9150 +27235 79947 0.8810 +27235 79948 0.4200 +27235 80195 0.5100 +27235 80219 0.7390 +27235 80273 0.5710 +27235 80308 0.4220 +27235 80347 0.4690 +27235 81537 0.4260 +27235 83478 0.4070 +27235 84274 0.8930 +27235 84317 0.4200 +27235 84513 0.4200 +27235 84795 0.5550 +27235 84842 0.8560 +27235 84893 0.4060 +27235 84942 0.4790 +27235 90956 0.5310 +27235 91734 0.8880 +27235 92609 0.5140 +27235 93058 0.7330 +27235 112812 0.4660 +27235 116150 0.8790 +27235 130367 0.4200 +27235 131118 0.5630 +27235 134266 0.5610 +27235 135138 0.4270 +27235 137682 0.5570 +27235 150274 0.4080 +27235 163404 0.4200 +27235 196051 0.4200 +27235 197257 0.5710 +27235 203054 0.4970 +27235 284131 0.4310 +27235 340390 0.5370 +27235 374659 0.4760 +27235 100287932 0.5470 +27236 54951 0.4730 +27236 57120 0.4220 +27236 57484 0.4630 +27236 115548 0.5230 +27236 126003 0.4340 +27236 130026 0.4010 +27236 132299 0.4520 +27236 171024 0.4180 +27236 201798 0.5910 +27236 201799 0.5420 +27236 201895 0.4950 +27237 30851 0.6840 +27237 49856 0.4650 +27237 54848 0.5640 +27237 55785 0.4520 +27237 57679 0.4730 +27237 63916 0.5310 +27237 63976 0.4820 +27237 126695 0.4430 +27237 127262 0.4700 +27237 139818 0.4990 +27237 140625 0.4260 +27237 140893 0.4470 +27237 445328 0.4170 +27238 51295 0.4360 +27238 51340 0.8320 +27238 51362 0.8030 +27238 51460 0.5630 +27238 51503 0.8070 +27238 51593 0.8720 +27238 51634 0.8400 +27238 51639 0.8070 +27238 51645 0.8190 +27238 51759 0.5210 +27238 53938 0.8220 +27238 54363 0.7980 +27238 54555 0.5310 +27238 54623 0.5360 +27238 54883 0.5430 +27238 54925 0.4600 +27238 55094 0.6250 +27238 55100 0.4110 +27238 55110 0.4930 +27238 55234 0.4330 +27238 55702 0.5500 +27238 55739 0.5340 +27238 57703 0.9680 +27238 58492 0.4450 +27238 59286 0.4190 +27238 60625 0.6280 +27238 64320 0.4680 +27238 65109 0.4350 +27238 79005 0.8040 +27238 79068 0.4830 +27238 79084 0.5120 +27238 79594 0.4420 +27238 79637 0.9360 +27238 79753 0.8340 +27238 80198 0.4810 +27238 83443 0.8600 +27238 84060 0.8060 +27238 84081 0.4670 +27238 84292 0.5730 +27238 84811 0.9830 +27238 84844 0.8070 +27238 84950 0.5620 +27238 85313 0.6380 +27238 116841 0.4380 +27238 137902 0.4180 +27238 151903 0.8060 +27238 153527 0.4430 +27238 203069 0.4410 +27238 283635 0.4280 +27238 344561 0.4470 +27239 29909 0.4360 +27239 51646 0.4550 +27239 54112 0.4620 +27239 56927 0.4110 +27239 64582 0.4460 +27239 81491 0.4140 +27239 83550 0.4310 +27239 83873 0.4790 +27239 84435 0.5420 +27239 84669 0.4190 +27239 115330 0.5390 +27239 118442 0.5840 +27239 124274 0.5180 +27239 124842 0.4420 +27239 150221 0.4750 +27239 153339 0.4790 +27239 221303 0.4910 +27239 255349 0.4530 +27239 283554 0.4060 +27239 285601 0.5800 +27239 344561 0.5260 +27239 350383 0.4110 +27239 387509 0.4220 +27239 390212 0.5260 +27239 728361 0.4210 +27239 100130519 0.5080 +27240 50852 0.7170 +27240 54900 0.4690 +27240 387357 0.4650 +27241 28965 0.4460 +27241 28981 0.5500 +27241 51057 0.8250 +27241 51098 0.4130 +27241 51259 0.5010 +27241 54585 0.9860 +27241 54903 0.8750 +27241 55007 0.4290 +27241 55015 0.4070 +27241 55081 0.4930 +27241 55212 0.9990 +27241 55764 0.5090 +27241 56912 0.5050 +27241 57539 0.5110 +27241 57560 0.6680 +27241 57728 0.6730 +27241 64792 0.4870 +27241 79140 0.7280 +27241 79583 0.4260 +27241 79659 0.5180 +27241 79738 0.9760 +27241 79809 0.4200 +27241 80173 0.6080 +27241 80184 0.8450 +27241 80776 0.4070 +27241 84100 0.8190 +27241 90410 0.5050 +27241 90990 0.4020 +27241 91147 0.7850 +27241 92482 0.9990 +27241 112752 0.4470 +27241 117177 0.9280 +27241 129880 0.9990 +27241 131377 0.4810 +27241 157657 0.5730 +27241 166379 0.9670 +27241 261734 0.5040 +27242 27348 0.6450 +27242 51330 0.4090 +27242 55504 0.6670 +27242 55717 0.5440 +27242 60401 0.4400 +27242 79444 0.5930 +27243 30849 0.4420 +27243 51028 0.9900 +27243 51160 0.9850 +27243 51271 0.9420 +27243 51398 0.4960 +27243 51510 0.9960 +27243 51534 0.9790 +27243 51552 0.4920 +27243 51622 0.4170 +27243 51652 0.9990 +27243 51699 0.6050 +27243 51807 0.5040 +27243 53349 0.4330 +27243 54862 0.6520 +27243 55048 0.9570 +27243 55143 0.4600 +27243 55165 0.4320 +27243 55293 0.7060 +27243 55737 0.5010 +27243 55823 0.4470 +27243 56851 0.7240 +27243 57132 0.9970 +27243 58485 0.4890 +27243 64149 0.6810 +27243 64601 0.4840 +27243 79090 0.4080 +27243 79643 0.9990 +27243 79720 0.9550 +27243 79792 0.5110 +27243 79861 0.5070 +27243 80086 0.5000 +27243 81027 0.5020 +27243 81631 0.4980 +27243 83658 0.4780 +27243 84313 0.9960 +27243 84557 0.4570 +27243 84617 0.5040 +27243 84790 0.5160 +27243 84936 0.4880 +27243 89853 0.9450 +27243 91782 0.9900 +27243 92421 0.9900 +27243 93343 0.9540 +27243 112714 0.4990 +27243 113457 0.5000 +27243 126003 0.4610 +27243 128866 0.9960 +27243 129531 0.9340 +27243 137492 0.9780 +27243 143879 0.4090 +27243 148362 0.4070 +27243 155382 0.9400 +27243 197259 0.9200 +27243 200014 0.6770 +27243 200894 0.4050 +27243 221496 0.6530 +27243 221960 0.4080 +27243 260334 0.5020 +27243 347688 0.5130 +27243 347733 0.5030 +27243 390595 0.5400 +27243 440738 0.4580 +27243 100526767 0.9980 +27244 28956 0.6050 +27244 50484 0.4840 +27244 51382 0.4990 +27244 51422 0.7020 +27244 51499 0.4960 +27244 51606 0.5010 +27244 53632 0.6840 +27244 54468 0.8230 +27244 54541 0.5270 +27244 55004 0.6280 +27244 55332 0.5730 +27244 55367 0.4620 +27244 55846 0.6330 +27244 57103 0.5680 +27244 57521 0.6510 +27244 58528 0.7100 +27244 64121 0.7490 +27244 64223 0.5900 +27244 64393 0.5540 +27244 79726 0.8240 +27244 81631 0.6050 +27244 81929 0.8040 +27244 83667 0.9400 +27244 84219 0.9260 +27244 90423 0.5240 +27244 94241 0.4700 +27244 127124 0.5230 +27244 143686 0.9380 +27244 144577 0.6270 +27244 153129 0.5230 +27244 154743 0.4170 +27244 155066 0.5010 +27244 245972 0.5070 +27244 245973 0.4990 +27244 389541 0.6220 +27244 652968 0.5870 +27244 729438 0.4980 +27245 59342 0.4200 +27245 286205 0.6230 +27245 374286 0.4020 +27246 51035 0.4190 +27246 51193 0.4100 +27246 51619 0.5910 +27246 57506 0.4380 +27246 79444 0.4020 +27246 80700 0.4130 +27246 83547 0.5010 +27247 27429 0.4400 +27247 51019 0.4060 +27247 51022 0.5710 +27247 51027 0.8610 +27247 51103 0.4270 +27247 51218 0.8430 +27247 51295 0.4280 +27247 51312 0.4130 +27247 51389 0.5120 +27247 51540 0.9390 +27247 51601 0.7110 +27247 51647 0.4810 +27247 51654 0.4070 +27247 51759 0.4230 +27247 54511 0.4040 +27247 54901 0.4100 +27247 55034 0.8610 +27247 55847 0.4590 +27247 57002 0.4600 +27247 57019 0.6850 +27247 57128 0.8170 +27247 57540 0.4420 +27247 64210 0.6290 +27247 64428 0.6280 +27247 64968 0.4450 +27247 79133 0.4910 +27247 80224 0.8050 +27247 80273 0.6900 +27247 81689 0.9470 +27247 84191 0.4100 +27247 84693 0.4130 +27247 84709 0.4150 +27247 112812 0.8460 +27247 122961 0.9470 +27247 134266 0.4210 +27247 144363 0.4810 +27247 150274 0.8740 +27247 200205 0.9050 +27247 378884 0.6180 +27247 387787 0.7700 +27247 388962 0.9450 +27247 552900 0.6300 +27247 644096 0.5800 +27247 654483 0.6240 +27248 28972 0.4220 +27248 29927 0.5950 +27248 50846 0.5110 +27248 51009 0.9900 +27248 51061 0.5210 +27248 51439 0.9200 +27248 51465 0.9220 +27248 51661 0.4100 +27248 51669 0.5720 +27248 51726 0.5510 +27248 54431 0.7200 +27248 54504 0.5800 +27248 55329 0.4210 +27248 55666 0.6070 +27248 55741 0.7530 +27248 55743 0.4990 +27248 55757 0.6890 +27248 55768 0.5120 +27248 55805 0.5290 +27248 55829 0.4720 +27248 56886 0.7860 +27248 57134 0.4730 +27248 57511 0.5000 +27248 57544 0.4420 +27248 64374 0.4850 +27248 65260 0.5370 +27248 79029 0.5860 +27248 79087 0.4580 +27248 79139 0.9850 +27248 79412 0.9160 +27248 80020 0.7820 +27248 80267 0.8500 +27248 80343 0.6730 +27248 81562 0.5210 +27248 81567 0.4050 +27248 84447 0.9920 +27248 90196 0.4360 +27248 91319 0.9660 +27248 91445 0.6430 +27248 91949 0.4410 +27248 92922 0.4580 +27248 153830 0.5580 +27248 166378 0.5850 +27248 201595 0.4960 +27248 348801 0.4990 +27248 494143 0.4640 +27249 51293 0.8630 +27249 55788 0.9890 +27249 55843 0.4290 +27249 79712 0.4520 +27249 81693 0.4160 +27249 84688 0.4720 +27249 84693 0.8110 +27249 93621 0.4980 +27249 130576 0.5060 +27249 166785 0.9830 +27249 197322 0.5950 +27249 326625 0.9760 +27250 27335 0.4290 +27250 29102 0.9180 +27250 29904 0.6770 +27250 51514 0.4510 +27250 51773 0.4090 +27250 54487 0.4840 +27250 55092 0.4220 +27250 57117 0.4120 +27250 57510 0.5410 +27250 57634 0.4120 +27250 57703 0.4120 +27250 63967 0.4160 +27250 79705 0.4220 +27250 79954 0.4320 +27250 81671 0.4020 +27250 84260 0.4830 +27250 84271 0.6170 +27250 91607 0.4580 +27250 196528 0.4690 +27250 220988 0.4220 +27250 253260 0.6150 +27252 28952 0.5090 +27252 28991 0.5040 +27252 29099 0.5040 +27252 51088 0.4330 +27252 51122 0.5170 +27252 51397 0.5130 +27252 53339 0.4300 +27252 54165 0.5240 +27252 54442 0.6230 +27252 54476 0.5440 +27252 54680 0.4240 +27252 54800 0.7530 +27252 54939 0.4990 +27252 54951 0.5070 +27252 55175 0.5060 +27252 55208 0.5080 +27252 55626 0.4590 +27252 55832 0.6620 +27252 55958 0.9240 +27252 55975 0.9160 +27252 56929 0.4520 +27252 57542 0.9240 +27252 57563 0.9070 +27252 59349 0.9110 +27252 64410 0.9070 +27252 79585 0.8410 +27252 79734 0.9140 +27252 79754 0.6320 +27252 80204 0.4750 +27252 80311 0.4360 +27252 83892 0.7600 +27252 84078 0.9100 +27252 84259 0.5080 +27252 84271 0.4290 +27252 84541 0.9190 +27252 84861 0.9250 +27252 89890 0.9080 +27252 90135 0.4060 +27252 90293 0.9110 +27252 93973 0.6350 +27252 115992 0.4130 +27252 122773 0.4750 +27252 131377 0.7850 +27252 140460 0.7190 +27252 149951 0.4990 +27252 150684 0.5130 +27252 154881 0.5130 +27252 170622 0.5500 +27252 200845 0.4510 +27252 253980 0.9190 +27252 339745 0.9160 +27252 390594 0.5540 +27252 553115 0.7450 +27252 730159 0.4430 +27252 100529144 0.5460 +27253 51294 0.7330 +27253 56097 0.4370 +27253 56098 0.4360 +27253 56134 0.4450 +27253 64881 0.4920 +27253 83700 0.4280 +27253 91612 0.4050 +27253 122183 0.4180 +27253 347730 0.4320 +27254 50649 0.4130 +27254 51069 0.4010 +27254 53827 0.4970 +27254 55794 0.5190 +27254 57519 0.4300 +27254 64080 0.6780 +27254 64979 0.4030 +27254 89780 0.4200 +27254 254268 0.4340 +27254 339105 0.4200 +27255 53942 0.4900 +27255 57126 0.8430 +27255 57451 0.5190 +27255 57595 0.5690 +27255 85445 0.5710 +27255 92737 0.5850 +27255 129684 0.4150 +27255 134265 0.4200 +27255 375704 0.4790 +27257 27258 0.9990 +27257 27327 0.7380 +27257 28960 0.4630 +27257 28991 0.4320 +27257 29102 0.4970 +27257 29883 0.4020 +27257 51690 0.9990 +27257 51691 0.9850 +27257 51728 0.4800 +27257 54464 0.9990 +27257 54487 0.4780 +27257 54514 0.4050 +27257 54904 0.4920 +27257 54960 0.4230 +27257 55345 0.4860 +27257 55629 0.4740 +27257 55802 0.9070 +27257 56478 0.6820 +27257 56892 0.7980 +27257 56903 0.4740 +27257 57472 0.6030 +27257 57819 0.9990 +27257 64506 0.4180 +27257 64794 0.4790 +27257 64852 0.5000 +27257 64895 0.4710 +27257 65110 0.6030 +27257 79650 0.4180 +27257 79670 0.4890 +27257 79833 0.4750 +27257 80139 0.4300 +27257 80153 0.9950 +27257 80223 0.4920 +27257 80336 0.4350 +27257 80349 0.4120 +27257 83877 0.5220 +27257 84246 0.4650 +27257 84316 0.4930 +27257 84513 0.6280 +27257 84967 0.6860 +27257 90353 0.4120 +27257 90459 0.4920 +27257 118460 0.5310 +27257 124801 0.7030 +27257 129563 0.5510 +27257 132430 0.4260 +27257 134353 0.6470 +27257 137994 0.4360 +27257 146212 0.4130 +27257 149986 0.6470 +27257 167153 0.4730 +27257 167227 0.9910 +27257 196513 0.7740 +27257 197135 0.9990 +27257 219988 0.9990 +27257 253314 0.4410 +27257 284325 0.9070 +27257 317649 0.4360 +27258 27316 0.4230 +27258 27336 0.5210 +27258 27339 0.5720 +27258 28998 0.4280 +27258 29093 0.6240 +27258 51002 0.4720 +27258 51013 0.5190 +27258 51023 0.5480 +27258 51121 0.5600 +27258 51340 0.9210 +27258 51372 0.5510 +27258 51503 0.8920 +27258 51574 0.6530 +27258 51634 0.9470 +27258 51639 0.9340 +27258 51690 0.9990 +27258 51691 0.9990 +27258 51729 0.9050 +27258 51747 0.5300 +27258 54464 0.9910 +27258 54512 0.4570 +27258 54957 0.8120 +27258 55052 0.4840 +27258 55110 0.9530 +27258 55234 0.9850 +27258 55696 0.8090 +27258 55749 0.5130 +27258 55802 0.6100 +27258 56257 0.6820 +27258 56259 0.4770 +27258 56892 0.4700 +27258 56915 0.4870 +27258 56943 0.4630 +27258 57129 0.4330 +27258 57703 0.9250 +27258 57794 0.5080 +27258 57819 0.9990 +27258 59286 0.9270 +27258 64837 0.4820 +27258 64852 0.4670 +27258 65008 0.4140 +27258 79084 0.6710 +27258 79171 0.9060 +27258 79753 0.9880 +27258 80153 0.8020 +27258 81892 0.5400 +27258 83443 0.9940 +27258 83732 0.4240 +27258 83938 0.4910 +27258 84292 0.4920 +27258 84316 0.8750 +27258 84324 0.5800 +27258 84619 0.4430 +27258 84811 0.9480 +27258 84844 0.9940 +27258 84950 0.9810 +27258 84955 0.6290 +27258 84967 0.9350 +27258 124801 0.7890 +27258 126259 0.5890 +27258 134353 0.4700 +27258 147650 0.5890 +27258 149986 0.4880 +27258 153527 0.9970 +27258 164045 0.4370 +27258 164781 0.5940 +27258 167227 0.8000 +27258 196513 0.5880 +27258 197135 0.8020 +27258 219988 0.9820 +27258 220074 0.4910 +27258 348793 0.6010 +27283 55227 0.5920 +27283 64129 0.4210 +27283 79690 0.4840 +27283 79922 0.4560 +27283 130749 0.4900 +27283 148418 0.4240 +27283 219965 0.4350 +27283 222584 0.4050 +27283 441608 0.4320 +27284 27306 0.4070 +27284 54490 0.6400 +27284 54575 0.6810 +27284 54576 0.6920 +27284 54577 0.6730 +27284 54578 0.6790 +27284 54579 0.6410 +27284 54600 0.6590 +27284 54657 0.6800 +27284 54658 0.6740 +27284 54659 0.6390 +27284 64090 0.5800 +27284 65217 0.5130 +27284 65985 0.4090 +27284 79799 0.6530 +27284 113189 0.5930 +27284 114799 0.5820 +27284 135152 0.5750 +27284 157570 0.5810 +27284 222537 0.4560 +27284 391365 0.6010 +27284 442038 0.4260 +27284 574537 0.6400 +27285 29105 0.8220 +27285 29922 0.8710 +27285 51364 0.6110 +27285 51686 0.5240 +27285 54584 0.4120 +27285 54936 0.5580 +27285 55036 0.5680 +27285 55130 0.6630 +27285 55329 0.8450 +27285 56171 0.4900 +27285 57542 0.4310 +27285 64518 0.9000 +27285 64776 0.8100 +27285 64800 0.7230 +27285 64946 0.6070 +27285 79645 0.6190 +27285 79809 0.4340 +27285 80217 0.5290 +27285 80258 0.9130 +27285 81492 0.4240 +27285 83538 0.5950 +27285 83659 0.9120 +27285 84229 0.4880 +27285 84688 0.4310 +27285 84895 0.4210 +27285 89765 0.4660 +27285 92749 0.5670 +27285 93190 0.8290 +27285 93233 0.5910 +27285 113746 0.4160 +27285 114327 0.9000 +27285 115811 0.4870 +27285 115948 0.5260 +27285 117155 0.4920 +27285 127003 0.8460 +27285 129881 0.8470 +27285 134121 0.8290 +27285 135138 0.8760 +27285 138162 0.8490 +27285 138255 0.8300 +27285 144406 0.4060 +27285 145258 0.9540 +27285 145788 0.8260 +27285 146177 0.5110 +27285 146279 0.4810 +27285 146845 0.8510 +27285 147744 0.4130 +27285 150483 0.8980 +27285 151651 0.8380 +27285 158297 0.4050 +27285 160762 0.6070 +27285 161502 0.8190 +27285 202500 0.4170 +27285 219670 0.8070 +27285 219681 0.6700 +27285 220136 0.8880 +27285 221421 0.4030 +27285 222967 0.4060 +27285 257177 0.8470 +27285 339778 0.8170 +27285 347475 0.4160 +27285 347732 0.4230 +27285 388701 0.8170 +27285 389799 0.8120 +27285 440585 0.8750 +27285 644890 0.5090 +27285 727764 0.5020 +27285 730112 0.8180 +27285 100128569 0.5220 +27286 29844 0.5900 +27286 57526 0.4200 +27286 79690 0.4770 +27286 79816 0.6700 +27286 93986 0.5110 +27286 283298 0.4230 +27286 653145 0.8270 +27287 27327 0.4990 +27287 51176 0.7320 +27287 63976 0.4050 +27287 84662 0.5490 +27287 157848 0.4810 +27287 192669 0.5360 +27287 192670 0.5210 +27287 342900 0.4620 +27287 503582 0.5890 +27287 503834 0.4050 +27287 503835 0.4160 +27288 27429 0.5910 +27288 51634 0.4560 +27288 51639 0.5740 +27288 51690 0.5680 +27288 54033 0.4480 +27288 55285 0.6260 +27288 55599 0.6260 +27288 55954 0.6120 +27288 64848 0.4450 +27288 83443 0.6020 +27288 84844 0.6100 +27288 85437 0.6420 +27288 138046 0.4550 +27288 139804 0.5690 +27288 140801 0.4030 +27288 154007 0.6190 +27288 164153 0.4690 +27288 284071 0.4180 +27288 390748 0.5330 +27288 101060301 0.4770 +27289 27316 0.5980 +27289 29984 0.9420 +27289 50618 0.5650 +27289 55288 0.4350 +27289 55317 0.4130 +27289 55558 0.9390 +27289 55704 0.5700 +27289 55763 0.4490 +27289 55789 0.5690 +27289 56667 0.5900 +27289 57216 0.5850 +27289 57449 0.7920 +27289 57498 0.6430 +27289 57556 0.5750 +27289 57579 0.5790 +27289 57679 0.4110 +27289 60412 0.4350 +27289 80149 0.4390 +27289 80184 0.4290 +27289 81624 0.4040 +27289 81839 0.5930 +27289 89941 0.4490 +27289 91544 0.9620 +27289 91584 0.9580 +27289 94240 0.5710 +27289 126567 0.5490 +27289 132204 0.4040 +27289 145741 0.7840 +27289 171177 0.4210 +27289 219699 0.7260 +27289 222584 0.5630 +27289 347730 0.4120 +27289 388125 0.7890 +27289 100820829 0.5270 +27290 55600 0.5540 +27290 83998 0.7540 +27290 153218 0.4930 +27290 404203 0.4830 +27290 408187 0.4420 +27290 643394 0.4460 +27290 653808 0.5590 +27291 54980 0.4380 +27291 127255 0.5120 +27292 27340 0.9280 +27292 27341 0.9340 +27292 28987 0.9430 +27292 29063 0.5480 +27292 29081 0.6180 +27292 29889 0.8390 +27292 29960 0.4880 +27292 29997 0.5880 +27292 30836 0.9470 +27292 51010 0.6700 +27292 51013 0.7510 +27292 51018 0.4680 +27292 51021 0.5610 +27292 51042 0.5640 +27292 51065 0.4280 +27292 51068 0.5310 +27292 51077 0.9700 +27292 51081 0.5650 +27292 51082 0.6290 +27292 51096 0.9680 +27292 51116 0.5030 +27292 51118 0.9580 +27292 51149 0.5310 +27292 51154 0.8780 +27292 51187 0.8730 +27292 51202 0.7610 +27292 51236 0.5270 +27292 51319 0.4310 +27292 51388 0.8840 +27292 51406 0.8330 +27292 51409 0.4070 +27292 51491 0.4270 +27292 51504 0.9290 +27292 51574 0.4250 +27292 51575 0.6520 +27292 51602 0.9460 +27292 51605 0.4480 +27292 54433 0.4730 +27292 54475 0.5510 +27292 54482 0.6480 +27292 54512 0.6800 +27292 54517 0.5690 +27292 54552 0.7010 +27292 54555 0.5460 +27292 54606 0.7590 +27292 54663 0.6690 +27292 54700 0.6600 +27292 54865 0.4530 +27292 54881 0.5130 +27292 54888 0.4790 +27292 54920 0.4820 +27292 54931 0.5530 +27292 54984 0.4780 +27292 55003 0.6170 +27292 55006 0.5260 +27292 55027 0.4750 +27292 55039 0.4620 +27292 55127 0.9650 +27292 55131 0.7270 +27292 55140 0.6960 +27292 55153 0.7530 +27292 55173 0.6240 +27292 55178 0.4820 +27292 55226 0.6410 +27292 55272 0.9720 +27292 55299 0.9410 +27292 55316 0.4770 +27292 55319 0.7050 +27292 55341 0.6010 +27292 55621 0.5280 +27292 55623 0.4430 +27292 55646 0.6370 +27292 55651 0.6420 +27292 55695 0.4450 +27292 55720 0.9990 +27292 55759 0.7080 +27292 55760 0.4450 +27292 55781 0.9840 +27292 55783 0.4150 +27292 55794 0.4690 +27292 55813 0.9710 +27292 56342 0.4370 +27292 56647 0.4110 +27292 56902 0.9720 +27292 56915 0.6170 +27292 57050 0.9700 +27292 57109 0.4720 +27292 57418 0.6340 +27292 57647 0.8840 +27292 57696 0.7970 +27292 60487 0.7250 +27292 63931 0.4830 +27292 64118 0.5880 +27292 64318 0.6770 +27292 64425 0.6300 +27292 64434 0.6220 +27292 64745 0.4460 +27292 64794 0.6410 +27292 64960 0.5290 +27292 64963 0.5360 +27292 64965 0.6100 +27292 64968 0.5860 +27292 64969 0.5880 +27292 65083 0.9850 +27292 65095 0.4050 +27292 79050 0.9890 +27292 79066 0.5650 +27292 79159 0.4920 +27292 79178 0.4030 +27292 79571 0.7750 +27292 79693 0.4420 +27292 79922 0.4250 +27292 79954 0.6330 +27292 79979 0.5090 +27292 80135 0.9150 +27292 80324 0.5940 +27292 81532 0.5320 +27292 81627 0.6230 +27292 83475 0.4780 +27292 83480 0.5060 +27292 83743 0.7530 +27292 84128 0.9610 +27292 84135 0.9550 +27292 84154 0.8560 +27292 84172 0.6020 +27292 84294 0.7140 +27292 84365 0.8950 +27292 84549 0.7630 +27292 84916 0.9520 +27292 84946 0.9890 +27292 84955 0.6390 +27292 85395 0.8620 +27292 85441 0.4140 +27292 90121 0.7050 +27292 90353 0.5270 +27292 90441 0.4100 +27292 91582 0.8050 +27292 92345 0.4080 +27292 92399 0.4230 +27292 92856 0.9880 +27292 93587 0.4340 +27292 112840 0.4190 +27292 112970 0.4120 +27292 115708 0.7390 +27292 115752 0.4930 +27292 116966 0.4020 +27292 117246 0.7970 +27292 118460 0.5390 +27292 124245 0.4080 +27292 126402 0.5430 +27292 129563 0.4950 +27292 140032 0.4180 +27292 155368 0.4710 +27292 158234 0.4150 +27292 165545 0.4360 +27292 196074 0.5880 +27292 221078 0.6190 +27292 221830 0.6980 +27292 285855 0.5800 +27292 345630 0.6520 +27292 347487 0.4790 +27292 387129 0.5650 +27292 643246 0.4330 +27292 692312 0.4220 +27292 100287482 0.4790 +27292 102157402 0.5670 +27293 29956 0.4740 +27293 51318 0.4420 +27293 55113 0.5130 +27293 55627 0.4520 +27293 56624 0.4510 +27293 57685 0.4360 +27293 64781 0.6390 +27293 64963 0.4430 +27293 91304 0.4370 +27293 259230 0.4290 +27293 340485 0.4220 +27294 29988 0.4680 +27294 51171 0.5560 +27294 55586 0.4530 +27294 57016 0.9430 +27294 64080 0.4030 +27294 79074 0.4660 +27294 81031 0.4660 +27294 85407 0.4370 +27294 114134 0.4660 +27294 124976 0.4660 +27294 130589 0.4780 +27294 146722 0.4720 +27294 154091 0.4740 +27294 168400 0.4530 +27294 653247 0.4660 +27295 29119 0.4410 +27295 29895 0.4830 +27295 29964 0.5810 +27295 51422 0.4690 +27295 51778 0.7050 +27295 53904 0.5450 +27295 55604 0.5400 +27295 56940 0.5700 +27295 57158 0.5520 +27295 58529 0.6790 +27295 64236 0.5840 +27295 83700 0.5510 +27295 83715 0.5450 +27295 84033 0.4320 +27295 84665 0.6520 +27295 84700 0.4750 +27295 85366 0.4620 +27295 91624 0.4710 +27295 91977 0.4010 +27295 92521 0.5490 +27295 116285 0.4040 +27295 125972 0.4480 +27295 219537 0.7140 +27295 220108 0.4490 +27295 221662 0.4010 +27295 254102 0.6150 +27295 282996 0.5610 +27295 342527 0.5560 +27295 347273 0.4080 +27296 80011 0.5380 +27296 90196 0.5100 +27296 90313 0.4320 +27296 91694 0.4090 +27296 112858 0.4140 +27296 140870 0.4530 +27296 646174 0.4470 +27297 30834 0.6980 +27297 51077 0.5260 +27297 51082 0.9990 +27297 51163 0.4040 +27297 51187 0.4220 +27297 51550 0.4270 +27297 51728 0.9980 +27297 54107 0.9000 +27297 54108 0.9170 +27297 54707 0.4620 +27297 55280 0.4640 +27297 55290 0.8510 +27297 55703 0.9990 +27297 55718 0.9990 +27297 55798 0.6550 +27297 55814 0.9500 +27297 56647 0.5310 +27297 56655 0.9000 +27297 57804 0.5430 +27297 64425 0.5880 +27297 64838 0.4580 +27297 64897 0.7780 +27297 65082 0.4360 +27297 79707 0.4360 +27297 81627 0.6300 +27297 81875 0.4750 +27297 83746 0.4500 +27297 84154 0.4040 +27297 84172 0.7450 +27297 84232 0.5200 +27297 84265 0.9900 +27297 91893 0.4330 +27297 112495 0.5000 +27297 127428 0.5160 +27297 170082 0.4220 +27297 171568 0.9990 +27297 221830 0.4490 +27297 255738 0.4330 +27297 285521 0.4370 +27297 387332 0.4670 +27299 56833 0.4520 +27299 118472 0.4740 +27300 80227 0.5070 +27300 81565 0.5190 +27301 51567 0.4120 +27301 54840 0.6370 +27301 55247 0.6760 +27301 55775 0.7800 +27301 56729 0.4200 +27301 57379 0.4070 +27301 57697 0.5940 +27301 63967 0.5480 +27301 79661 0.5220 +27301 79902 0.4420 +27301 80198 0.5920 +27301 84126 0.6500 +27301 128025 0.4260 +27301 252969 0.4030 +27301 283677 0.4340 +27301 284439 0.4140 +27302 57057 0.5480 +27302 57167 0.4400 +27302 79572 0.4020 +27302 117166 0.4450 +27302 130399 0.4640 +27302 168667 0.4490 +27302 100861540 0.4270 +27303 28998 0.4200 +27303 51232 0.4150 +27303 51258 0.4360 +27303 51263 0.6080 +27303 51335 0.5960 +27303 51371 0.4160 +27303 51642 0.4160 +27303 55052 0.4200 +27303 55168 0.5920 +27303 65080 0.4490 +27303 84311 0.4180 +27303 121260 0.4720 +27303 128308 0.4530 +27303 151887 0.5940 +27303 219902 0.6780 +27303 440073 0.4310 +27303 653567 0.4620 +27303 728276 0.5440 +27304 51504 0.6780 +27304 51506 0.5150 +27304 51540 0.5690 +27304 51569 0.7340 +27304 54797 0.4220 +27304 54859 0.4300 +27304 54883 0.7210 +27304 54955 0.6640 +27304 55034 0.6260 +27304 55140 0.7770 +27304 55236 0.4290 +27304 55250 0.4140 +27304 55276 0.4180 +27304 55291 0.4260 +27304 55327 0.6860 +27304 55687 0.6270 +27304 57521 0.5490 +27304 64130 0.6830 +27304 64422 0.6470 +27304 79876 0.4550 +27304 80183 0.5400 +27304 80324 0.4540 +27304 81605 0.9990 +27304 81689 0.5430 +27304 81875 0.4520 +27304 83480 0.5550 +27304 84901 0.4650 +27304 90353 0.9500 +27304 91801 0.4700 +27304 112970 0.7280 +27304 122961 0.5770 +27304 128077 0.5860 +27304 133688 0.5510 +27304 134526 0.5270 +27304 140739 0.4530 +27304 167127 0.5510 +27304 167410 0.6780 +27304 221421 0.4430 +27304 285381 0.5480 +27304 348180 0.8470 +27304 387082 0.5470 +27304 440138 0.4590 +27304 440738 0.4080 +27304 100130890 0.4680 +27304 100131187 0.4900 +27306 29785 0.7430 +27306 51022 0.4200 +27306 51060 0.9060 +27306 51081 0.5200 +27306 51185 0.4370 +27306 54575 0.5230 +27306 54576 0.5220 +27306 54577 0.5230 +27306 54578 0.5410 +27306 54600 0.4150 +27306 54657 0.5230 +27306 54658 0.5230 +27306 79094 0.6500 +27306 80142 0.9520 +27306 81926 0.6290 +27306 119391 0.9360 +27306 124975 0.7250 +27306 133482 0.9720 +27306 135152 0.7250 +27306 140809 0.4040 +27306 221357 0.7750 +27306 257202 0.8890 +27306 373156 0.9480 +27306 493869 0.8920 +27306 494143 0.6570 +27306 653689 0.9610 +27309 57102 0.4600 +27309 60592 0.4450 +27309 79029 0.4020 +27309 79954 0.4300 +27309 80135 0.4580 +27309 129285 0.4590 +27309 145258 0.9540 +27309 201965 0.6500 +27309 256281 0.4480 +27309 374887 0.4480 +27309 100289635 0.4310 +27314 30851 0.4080 +27314 51339 0.4190 +27314 54734 0.5480 +27314 55773 0.4330 +27314 57189 0.4570 +27314 57511 0.6830 +27314 57589 0.4540 +27314 57685 0.4350 +27314 60492 0.4770 +27314 63941 0.4460 +27314 79077 0.4220 +27314 79684 0.5220 +27314 83548 0.6910 +27314 91949 0.5990 +27314 162387 0.4710 +27314 220032 0.4540 +27314 337867 0.4160 +27314 338699 0.4890 +27314 347517 0.5480 +27314 401409 0.4880 +27314 401546 0.4800 +27314 404636 0.4620 +27314 474383 0.5480 +27314 653583 0.6170 +27314 100131755 0.4560 +27315 51227 0.5870 +27315 51604 0.7980 +27315 54344 0.4170 +27315 54853 0.4720 +27315 54872 0.6850 +27315 55650 0.8840 +27315 55766 0.4310 +27315 56889 0.4190 +27315 57226 0.4590 +27315 58986 0.4740 +27315 65258 0.6230 +27315 78991 0.4170 +27315 80055 0.7520 +27315 80157 0.5880 +27315 80235 0.4690 +27315 84302 0.4160 +27315 84720 0.8630 +27315 84992 0.7600 +27315 93183 0.7980 +27315 93210 0.8820 +27315 128869 0.5350 +27315 144124 0.5420 +27315 157680 0.4860 +27315 158431 0.4330 +27315 254359 0.4080 +27315 283464 0.4040 +27315 284098 0.8250 +27315 284403 0.4020 +27316 27339 0.9150 +27316 27349 0.4320 +27316 27350 0.6940 +27316 27429 0.8410 +27316 29063 0.5500 +27316 29081 0.4570 +27316 29890 0.7730 +27316 29894 0.4210 +27316 29896 0.6190 +27316 51001 0.4850 +27316 51067 0.5020 +27316 51335 0.4530 +27316 51386 0.4130 +27316 51441 0.8680 +27316 51504 0.4440 +27316 51593 0.4430 +27316 51634 0.5450 +27316 51639 0.4290 +27316 54464 0.4260 +27316 54542 0.5140 +27316 54845 0.4420 +27316 54890 0.8340 +27316 54915 0.8810 +27316 55110 0.5290 +27316 55214 0.4240 +27316 55294 0.4800 +27316 55521 0.4120 +27316 56122 0.6030 +27316 56252 0.7290 +27316 56257 0.4570 +27316 56259 0.4990 +27316 56339 0.8320 +27316 56652 0.4450 +27316 56949 0.6300 +27316 57187 0.5480 +27316 57466 0.4500 +27316 57721 0.8090 +27316 57727 0.5290 +27316 58517 0.5710 +27316 60491 0.4110 +27316 64061 0.4630 +27316 64783 0.7370 +27316 64848 0.8870 +27316 79066 0.7490 +27316 79068 0.7020 +27316 79159 0.4720 +27316 79576 0.4130 +27316 79872 0.5120 +27316 80004 0.4360 +27316 80742 0.6820 +27316 83443 0.5210 +27316 83550 0.5340 +27316 84844 0.4100 +27316 85015 0.5400 +27316 90933 0.4370 +27316 91746 0.9530 +27316 124245 0.5310 +27316 129831 0.6890 +27316 135295 0.4230 +27316 140890 0.4480 +27316 143884 0.5510 +27316 149041 0.5150 +27316 202559 0.8850 +27316 220988 0.8660 +27316 221120 0.4580 +27316 253943 0.8640 +27316 284695 0.4400 +27316 378950 0.4190 +27316 378951 0.6170 +27319 30012 0.4520 +27319 30813 0.5510 +27319 53335 0.5030 +27319 54714 0.4970 +27319 55079 0.5240 +27319 55811 0.4270 +27319 55885 0.4280 +27319 56853 0.4230 +27319 56978 0.8840 +27319 57084 0.5520 +27319 58524 0.4370 +27319 59336 0.5010 +27319 63974 0.4280 +27319 84504 0.4140 +27319 120237 0.4240 +27319 121643 0.5740 +27319 128408 0.5040 +27319 256297 0.4800 +27319 338917 0.6160 +27319 343472 0.6350 +27324 57706 0.7130 +27324 64093 0.4530 +27324 79728 0.5330 +27324 80129 0.5010 +27324 80205 0.5290 +27324 84467 0.5240 +27324 84909 0.6420 +27324 114781 0.7100 +27324 123169 0.4700 +27324 133383 0.4470 +27324 152110 0.7700 +27324 252969 0.4800 +27324 252983 0.4450 +27324 390598 0.6550 +27327 29102 0.7860 +27327 29883 0.8460 +27327 51366 0.5830 +27327 51441 0.4040 +27327 51585 0.5140 +27327 51701 0.4990 +27327 51742 0.4290 +27327 54145 0.4990 +27327 54464 0.9740 +27327 54487 0.7820 +27327 54606 0.4300 +27327 55023 0.4710 +27327 55534 0.5050 +27327 55571 0.6350 +27327 55766 0.4990 +27327 55802 0.9530 +27327 55904 0.5390 +27327 56052 0.5430 +27327 56478 0.7230 +27327 57332 0.4990 +27327 57472 0.7410 +27327 57510 0.9620 +27327 58508 0.6410 +27327 64506 0.4530 +27327 64599 0.6450 +27327 80012 0.5170 +27327 80153 0.8210 +27327 80336 0.6010 +27327 84441 0.5050 +27327 84733 0.4990 +27327 85236 0.4990 +27327 85456 0.5030 +27327 94239 0.4990 +27327 128312 0.4990 +27327 132430 0.6010 +27327 140886 0.5980 +27327 143689 0.9320 +27327 149041 0.4770 +27327 161882 0.4010 +27327 167227 0.9790 +27327 192669 0.9870 +27327 192670 0.9900 +27327 196513 0.4400 +27327 201292 0.4990 +27327 219988 0.7410 +27327 246175 0.7810 +27327 255626 0.4990 +27327 255967 0.6370 +27327 340529 0.6080 +27327 387332 0.4970 +27327 401474 0.5430 +27327 440275 0.4040 +27327 474382 0.4990 +27327 653604 0.5690 +27328 29964 0.4610 +27328 51442 0.4110 +27328 53841 0.5290 +27328 55787 0.4730 +27328 56062 0.4950 +27328 56122 0.4990 +27328 57502 0.4450 +27328 57526 0.5200 +27328 60436 0.5870 +27328 65217 0.5590 +27328 83259 0.5440 +27328 90316 0.8530 +27328 90655 0.8870 +27328 90665 0.7890 +27328 140886 0.7790 +27328 144165 0.4220 +27328 166336 0.4400 +27328 205428 0.5180 +27329 29881 0.5140 +27329 51085 0.5370 +27329 51128 0.4740 +27329 51129 0.9150 +27329 57678 0.5000 +27329 64240 0.4910 +27329 64241 0.4660 +27329 64788 0.6650 +27329 80714 0.4070 +27329 84938 0.4360 +27329 85440 0.6830 +27329 116519 0.8850 +27329 148113 0.5290 +27329 255738 0.7730 +27329 326625 0.4530 +27329 338328 0.8890 +27330 29948 0.6580 +27330 51256 0.9050 +27330 53407 0.4030 +27330 60561 0.5560 +27330 79660 0.6500 +27330 90673 0.6500 +27330 117154 0.4220 +27330 129303 0.4440 +27330 139322 0.5550 +27330 169966 0.4070 +27330 254065 0.4220 +27330 340562 0.4950 +27332 29072 0.4020 +27332 29803 0.4340 +27332 51535 0.5250 +27332 51663 0.5260 +27332 51742 0.5170 +27332 51773 0.5280 +27332 54737 0.6080 +27332 55023 0.5310 +27332 55663 0.4550 +27332 55692 0.4790 +27332 55778 0.4450 +27332 55870 0.5990 +27332 55893 0.4760 +27332 56916 0.4030 +27332 57187 0.5830 +27332 79009 0.4990 +27332 79724 0.4920 +27332 84146 0.5490 +27332 90592 0.5270 +27332 91746 0.5170 +27332 130560 0.4480 +27332 196441 0.5660 +27332 259282 0.4890 +27332 388595 0.4490 +27332 730087 0.4450 +27333 51272 0.6170 +27333 51280 0.5480 +27333 51726 0.4540 +27333 55559 0.4220 +27333 55745 0.4220 +27333 55858 0.5340 +27333 57134 0.5400 +27333 57511 0.6800 +27333 63908 0.5030 +27333 64083 0.7340 +27333 64689 0.4470 +27333 79707 0.4210 +27333 83452 0.5320 +27333 83548 0.7460 +27333 91949 0.6870 +27333 116986 0.4580 +27334 51365 0.4590 +27334 53836 0.4380 +27334 57105 0.4200 +27334 84636 0.4840 +27334 115557 0.4990 +27334 151888 0.4510 +27334 284161 0.4290 +27335 29979 0.4120 +27335 50613 0.4060 +27335 50813 0.4570 +27335 51065 0.7310 +27335 51073 0.5700 +27335 51081 0.6900 +27335 51116 0.6300 +27335 51149 0.7270 +27335 51319 0.6520 +27335 51386 0.9990 +27335 54148 0.4340 +27335 54505 0.5200 +27335 55173 0.7150 +27335 55272 0.6580 +27335 55316 0.6870 +27335 55601 0.5030 +27335 55651 0.6010 +27335 56893 0.4080 +27335 57403 0.6380 +27335 57470 0.4040 +27335 57559 0.4610 +27335 60678 0.6000 +27335 63931 0.6660 +27335 64960 0.7210 +27335 64963 0.6670 +27335 64969 0.7650 +27335 79184 0.4750 +27335 83874 0.6370 +27335 84954 0.5130 +27335 85377 0.8770 +27335 92170 0.5130 +27335 114803 0.4850 +27335 114987 0.6970 +27335 117245 0.4430 +27335 126402 0.6610 +27335 134492 0.4060 +27335 140032 0.7230 +27335 153527 0.4060 +27335 171017 0.5520 +27335 255308 0.6200 +27335 286187 0.5390 +27335 347487 0.5870 +27335 440387 0.4240 +27335 641776 0.4760 +27335 643909 0.4760 +27335 728524 0.4760 +27335 728689 0.9960 +27335 100287482 0.5370 +27335 100529239 0.8830 +27335 100996746 0.4760 +27335 105180390 0.4760 +27335 105180391 0.4760 +27336 51340 0.9710 +27336 51362 0.9190 +27336 51428 0.4500 +27336 51574 0.4860 +27336 51593 0.8340 +27336 51634 0.7030 +27336 51639 0.9670 +27336 51690 0.5080 +27336 51691 0.5040 +27336 51747 0.8080 +27336 55003 0.6150 +27336 55192 0.4290 +27336 55234 0.5890 +27336 55339 0.4070 +27336 55660 0.8780 +27336 55677 0.4490 +27336 55749 0.8180 +27336 55854 0.5300 +27336 57794 0.8290 +27336 57819 0.5310 +27336 58517 0.8400 +27336 79171 0.5170 +27336 79753 0.5800 +27336 80829 0.4700 +27336 81545 0.4540 +27336 83443 0.9370 +27336 84811 0.7220 +27336 84844 0.9660 +27336 84991 0.4750 +27336 123169 0.4130 +27336 203522 0.4310 +27336 221491 0.4220 +27336 403282 0.5070 +27336 101669762 0.4770 +27338 29089 0.5790 +27338 29110 0.4790 +27338 29882 0.9960 +27338 29945 0.9920 +27338 29978 0.5180 +27338 50852 0.5910 +27338 51053 0.4530 +27338 51239 0.5800 +27338 51320 0.5360 +27338 51343 0.9880 +27338 51433 0.9910 +27338 51434 0.9880 +27338 51465 0.7270 +27338 51529 0.9990 +27338 51806 0.5100 +27338 54764 0.4570 +27338 54880 0.9040 +27338 54926 0.5040 +27338 55070 0.5350 +27338 55072 0.4180 +27338 55236 0.9180 +27338 55284 0.4920 +27338 55294 0.6060 +27338 55585 0.4780 +27338 55611 0.8870 +27338 55658 0.4170 +27338 56061 0.4420 +27338 56254 0.5350 +27338 56852 0.8130 +27338 56893 0.5070 +27338 56957 0.5900 +27338 57332 0.9120 +27338 64422 0.4750 +27338 64682 0.9880 +27338 64750 0.4360 +27338 65018 0.5670 +27338 65264 0.5790 +27338 79184 0.9260 +27338 79654 0.4570 +27338 79813 0.5250 +27338 79876 0.6370 +27338 80012 0.9040 +27338 81620 0.6110 +27338 81847 0.5300 +27338 83737 0.4230 +27338 84108 0.9060 +27338 84231 0.4680 +27338 84333 0.5600 +27338 84733 0.9090 +27338 84759 0.5830 +27338 84937 0.5950 +27338 90850 0.5420 +27338 91860 0.5110 +27338 92912 0.6320 +27338 92979 0.4620 +27338 114907 0.5120 +27338 118424 0.5890 +27338 119504 0.9870 +27338 119710 0.4710 +27338 120892 0.4610 +27338 135892 0.4320 +27338 140459 0.5900 +27338 157574 0.5800 +27338 163688 0.5110 +27338 166979 0.6070 +27338 197131 0.6510 +27338 221302 0.5680 +27338 223082 0.5990 +27338 246184 0.9860 +27338 286151 0.4600 +27338 387082 0.4510 +27338 387521 0.4220 +27338 387522 0.6060 +27339 29896 0.4440 +27339 51096 0.4730 +27339 51340 0.9990 +27339 51362 0.9990 +27339 51503 0.9990 +27339 51538 0.5640 +27339 51574 0.5010 +27339 51593 0.4630 +27339 51634 0.9920 +27339 51639 0.9380 +27339 51645 0.9970 +27339 51691 0.5530 +27339 51692 0.4710 +27339 51729 0.8240 +27339 51763 0.5340 +27339 53938 0.4960 +27339 54505 0.4330 +27339 54883 0.9970 +27339 54934 0.4190 +27339 54971 0.8110 +27339 55081 0.4380 +27339 55094 0.7730 +27339 55100 0.8780 +27339 55110 0.9450 +27339 55159 0.5280 +27339 55180 0.6230 +27339 55192 0.4850 +27339 55234 0.5840 +27339 55280 0.6420 +27339 55285 0.7650 +27339 55599 0.7650 +27339 55696 0.9990 +27339 55702 0.9990 +27339 55760 0.7970 +27339 56257 0.5620 +27339 56259 0.9990 +27339 56623 0.5590 +27339 56893 0.4730 +27339 56919 0.7800 +27339 56949 0.9990 +27339 57187 0.8730 +27339 57379 0.4260 +27339 57461 0.9980 +27339 57647 0.6330 +27339 57661 0.4200 +27339 57683 0.6040 +27339 57703 0.9990 +27339 58506 0.4510 +27339 58509 0.8420 +27339 58517 0.5200 +27339 59286 0.5090 +27339 60625 0.9170 +27339 64848 0.4720 +27339 65083 0.4460 +27339 79039 0.4200 +27339 79050 0.4800 +27339 79165 0.4570 +27339 79446 0.8750 +27339 79576 0.8630 +27339 79631 0.6800 +27339 79650 0.9160 +27339 79665 0.5560 +27339 79706 0.8070 +27339 79716 0.4640 +27339 79753 0.9680 +27339 79869 0.4020 +27339 80011 0.8010 +27339 80218 0.4010 +27339 80331 0.8550 +27339 81576 0.9770 +27339 83443 0.9950 +27339 83938 0.7740 +27339 84126 0.4310 +27339 84164 0.4090 +27339 84292 0.5160 +27339 84316 0.6250 +27339 84811 0.9940 +27339 84844 0.9750 +27339 84950 0.6630 +27339 84955 0.6270 +27339 84967 0.8900 +27339 85476 0.6730 +27339 85479 0.8440 +27339 90417 0.7490 +27339 90850 0.5940 +27339 90957 0.4420 +27339 91603 0.9900 +27339 112939 0.5460 +27339 117157 0.5040 +27339 122402 0.4280 +27339 126259 0.6240 +27339 143884 0.9950 +27339 147650 0.6240 +27339 149041 0.4500 +27339 149986 0.4260 +27339 151903 0.9890 +27339 153527 0.6980 +27339 154007 0.8180 +27339 163859 0.9000 +27339 164045 0.8010 +27339 165545 0.7930 +27339 170506 0.4380 +27339 197131 0.4090 +27339 199746 0.5620 +27339 220074 0.7740 +27339 220988 0.5910 +27339 221092 0.4370 +27339 222183 0.8540 +27339 256536 0.8450 +27339 283899 0.4710 +27339 343099 0.5520 +27339 343263 0.4350 +27339 392517 0.4130 +27339 100534599 0.9920 +27340 27341 0.9960 +27340 28987 0.7220 +27340 29777 0.4190 +27340 29889 0.6780 +27340 29997 0.4760 +27340 30836 0.9890 +27340 51010 0.7110 +27340 51013 0.7340 +27340 51018 0.4190 +27340 51065 0.8630 +27340 51073 0.5300 +27340 51077 0.9980 +27340 51081 0.6230 +27340 51096 0.9970 +27340 51106 0.4570 +27340 51118 0.9980 +27340 51149 0.7870 +27340 51202 0.8990 +27340 51319 0.5400 +27340 51388 0.6320 +27340 51406 0.8030 +27340 51504 0.4390 +27340 51575 0.7460 +27340 51602 0.9990 +27340 54512 0.7390 +27340 54517 0.5520 +27340 54552 0.5220 +27340 54555 0.8850 +27340 54606 0.4860 +27340 54622 0.4050 +27340 54663 0.4470 +27340 54700 0.5000 +27340 54881 0.6740 +27340 55003 0.4260 +27340 55127 0.9990 +27340 55128 0.4200 +27340 55131 0.8240 +27340 55153 0.8670 +27340 55226 0.9990 +27340 55272 0.9940 +27340 55299 0.5820 +27340 55341 0.7140 +27340 55622 0.6100 +27340 55651 0.6050 +27340 55703 0.7500 +27340 55720 0.8860 +27340 55759 0.8480 +27340 55760 0.4780 +27340 55781 0.8220 +27340 55813 0.9980 +27340 56261 0.4320 +27340 56902 0.9800 +27340 56915 0.8180 +27340 56919 0.4550 +27340 57050 0.9980 +27340 57062 0.7070 +27340 57418 0.6760 +27340 57617 0.5760 +27340 57647 0.9750 +27340 57696 0.6070 +27340 63892 0.4360 +27340 64216 0.5250 +27340 64318 0.8120 +27340 64425 0.5200 +27340 64434 0.6390 +27340 64794 0.4420 +27340 64960 0.6400 +27340 64963 0.6390 +27340 65083 0.9990 +27340 65095 0.8480 +27340 79039 0.6980 +27340 79050 0.9990 +27340 79159 0.4510 +27340 79571 0.7390 +27340 79707 0.8160 +27340 79954 0.9960 +27340 81887 0.6660 +27340 83732 0.8780 +27340 83743 0.5930 +27340 84128 0.9990 +27340 84135 0.9980 +27340 84154 0.7030 +27340 84172 0.8720 +27340 84294 0.7260 +27340 84365 0.7310 +27340 84549 0.4150 +27340 84916 0.9990 +27340 84946 0.8050 +27340 85441 0.4180 +27340 88745 0.8790 +27340 90381 0.5660 +27340 91582 0.8020 +27340 92856 0.9980 +27340 115752 0.4620 +27340 117246 0.7630 +27340 118460 0.6360 +27340 124454 0.5220 +27340 126402 0.6180 +27340 128061 0.8000 +27340 129563 0.4550 +27340 140032 0.6180 +27340 146212 0.4440 +27340 153443 0.7980 +27340 161424 0.6650 +27340 165545 0.4740 +27340 221078 0.6000 +27340 284323 0.5110 +27340 345630 0.9460 +27340 348995 0.4780 +27340 641776 0.4530 +27340 643909 0.4530 +27340 728524 0.4530 +27340 100996746 0.4530 +27340 105180390 0.4530 +27340 105180391 0.4530 +27341 28987 0.7610 +27341 29777 0.5330 +27341 29997 0.5880 +27341 30836 0.9870 +27341 51010 0.7710 +27341 51013 0.7790 +27341 51018 0.6450 +27341 51065 0.8710 +27341 51068 0.4050 +27341 51073 0.7410 +27341 51077 0.9970 +27341 51081 0.7310 +27341 51082 0.4050 +27341 51096 0.9990 +27341 51106 0.4490 +27341 51118 0.9970 +27341 51149 0.8090 +27341 51154 0.8450 +27341 51202 0.8050 +27341 51319 0.5300 +27341 51388 0.7560 +27341 51406 0.8190 +27341 51490 0.6320 +27341 51575 0.8140 +27341 51602 0.9930 +27341 51639 0.4070 +27341 54512 0.7600 +27341 54555 0.7960 +27341 54606 0.8050 +27341 54663 0.7270 +27341 54700 0.5520 +27341 54881 0.5470 +27341 55127 0.9980 +27341 55131 0.7710 +27341 55153 0.6520 +27341 55226 0.9970 +27341 55272 0.9970 +27341 55299 0.8250 +27341 55341 0.4620 +27341 55646 0.7280 +27341 55651 0.7460 +27341 55759 0.6890 +27341 55781 0.7110 +27341 55813 0.9980 +27341 56342 0.5400 +27341 56902 0.9610 +27341 56915 0.7420 +27341 57050 0.9970 +27341 57109 0.4220 +27341 57418 0.6640 +27341 57461 0.4120 +27341 57647 0.9380 +27341 58496 0.6640 +27341 64118 0.5290 +27341 64216 0.5130 +27341 64425 0.4590 +27341 64960 0.7120 +27341 64963 0.7060 +27341 65083 0.9990 +27341 65095 0.8710 +27341 79050 0.9970 +27341 79159 0.8260 +27341 79571 0.7420 +27341 79707 0.5380 +27341 79954 0.9950 +27341 80135 0.7620 +27341 81887 0.5570 +27341 83743 0.7800 +27341 84128 0.9980 +27341 84135 0.9940 +27341 84154 0.8620 +27341 84271 0.5670 +27341 84294 0.7650 +27341 84310 0.4240 +27341 84365 0.6310 +27341 84549 0.4380 +27341 84916 0.9980 +27341 84946 0.5370 +27341 85395 0.4750 +27341 88745 0.9220 +27341 90121 0.4080 +27341 90381 0.5520 +27341 90506 0.4030 +27341 90624 0.4030 +27341 91582 0.8360 +27341 92856 0.9970 +27341 117246 0.6560 +27341 118460 0.6550 +27341 126402 0.6410 +27341 128061 0.8100 +27341 140032 0.6280 +27341 153443 0.7790 +27341 161424 0.7970 +27341 221830 0.7300 +27341 253190 0.4440 +27341 266812 0.6530 +27341 283106 0.6710 +27341 285855 0.5840 +27341 345630 0.9100 +27341 641776 0.4540 +27341 643909 0.4540 +27341 692312 0.4650 +27341 728524 0.4540 +27341 100996746 0.4540 +27341 105180390 0.4540 +27341 105180391 0.4540 +27343 27434 0.7300 +27343 51070 0.4820 +27343 51426 0.7530 +27343 51455 0.9600 +27343 51567 0.4960 +27343 51684 0.7200 +27343 54840 0.5910 +27343 55215 0.4480 +27343 55247 0.5590 +27343 55775 0.5750 +27343 55924 0.5930 +27343 56852 0.9160 +27343 57379 0.4450 +27343 57505 0.6580 +27343 57697 0.4200 +27343 64421 0.6700 +27343 79661 0.6130 +27343 79840 0.8560 +27343 80119 0.4770 +27343 80198 0.4650 +27343 83932 0.4180 +27343 83990 0.7020 +27343 84083 0.4260 +27343 84126 0.6750 +27343 84267 0.4950 +27343 84464 0.4230 +27343 91442 0.4610 +27343 113510 0.4320 +27343 114799 0.4540 +27343 123722 0.4440 +27343 157570 0.4200 +27343 200558 0.5220 +27343 201973 0.7070 +27343 252969 0.5800 +27343 257218 0.4890 +27343 286257 0.6020 +27343 353497 0.6530 +27343 100533467 0.4520 +27344 29106 0.6830 +27344 29909 0.8610 +27344 54760 0.4390 +27344 140689 0.4070 +27344 347148 0.4820 +27345 29993 0.4590 +27345 56479 0.4290 +27345 57582 0.7780 +27345 126755 0.4910 +27345 157855 0.9840 +27345 219527 0.4720 +27345 389816 0.5910 +27345 440699 0.5340 +27346 50814 0.4120 +27346 51643 0.8300 +27346 55248 0.5660 +27346 80777 0.4250 +27346 89858 0.5190 +27346 92162 0.4320 +27346 401466 0.4380 +27347 29927 0.7160 +27347 51142 0.4190 +27347 51719 0.8710 +27347 55176 0.7150 +27347 56922 0.6470 +27347 57468 0.7500 +27347 57649 0.7800 +27347 65010 0.4790 +27347 65125 0.7930 +27347 65266 0.6970 +27347 65267 0.6490 +27347 65268 0.6720 +27347 81617 0.6430 +27347 84660 0.6980 +27347 84957 0.6900 +27347 91683 0.5930 +27347 130013 0.6520 +27347 285613 0.5350 +27348 50813 0.5090 +27348 51138 0.5500 +27348 51582 0.4110 +27348 51759 0.4200 +27348 55717 0.5960 +27348 64708 0.5110 +27348 79134 0.4520 +27348 80381 0.4260 +27348 85439 0.5320 +27348 163590 0.9050 +27349 28957 0.8840 +27349 28973 0.8780 +27349 51021 0.9670 +27349 51023 0.8390 +27349 51067 0.4200 +27349 51073 0.6630 +27349 51081 0.8920 +27349 51102 0.6960 +27349 51106 0.8220 +27349 51109 0.4220 +27349 51116 0.9190 +27349 51144 0.4250 +27349 51171 0.4380 +27349 51264 0.4790 +27349 51373 0.8630 +27349 51442 0.4270 +27349 51497 0.6740 +27349 51601 0.4430 +27349 51649 0.8820 +27349 51650 0.9230 +27349 54059 0.4520 +27349 54460 0.8840 +27349 54995 0.9990 +27349 54998 0.8190 +27349 55037 0.8620 +27349 55173 0.8910 +27349 55268 0.4060 +27349 55794 0.6620 +27349 55825 0.4280 +27349 55833 0.4030 +27349 55856 0.6010 +27349 55862 0.4180 +27349 56898 0.4290 +27349 56922 0.7290 +27349 56945 0.8880 +27349 57665 0.4210 +27349 60488 0.8550 +27349 60496 0.8800 +27349 63931 0.8640 +27349 64087 0.8770 +27349 64432 0.8540 +27349 64745 0.8800 +27349 64949 0.8860 +27349 64951 0.8410 +27349 64960 0.9200 +27349 64963 0.9260 +27349 64965 0.8610 +27349 64968 0.9460 +27349 64969 0.8670 +27349 64979 0.4330 +27349 64983 0.6220 +27349 65993 0.9060 +27349 79154 0.4120 +27349 79728 0.9580 +27349 79814 0.4390 +27349 79863 0.8160 +27349 83440 0.7720 +27349 84263 0.5650 +27349 84273 0.8770 +27349 84869 0.7610 +27349 115416 0.4830 +27349 115817 0.4060 +27349 124359 0.4060 +27349 132949 0.4980 +27349 142680 0.4260 +27349 145226 0.4440 +27349 147015 0.4120 +27349 197322 0.9380 +27349 219927 0.6490 +27349 253175 0.4060 +27349 317749 0.4070 +27349 109703458 0.4560 +27350 29796 0.7090 +27350 29974 0.6950 +27350 51079 0.5530 +27350 54205 0.4640 +27350 54539 0.5440 +27350 55967 0.5170 +27350 57761 0.6840 +27350 60489 0.6050 +27350 64111 0.4630 +27350 79002 0.5940 +27350 80742 0.6040 +27350 84886 0.7360 +27350 85363 0.4400 +27350 125965 0.5880 +27350 164668 0.7420 +27350 164684 0.4260 +27350 200315 0.7380 +27350 200316 0.5700 +27350 283459 0.6610 +27350 378951 0.6210 +27350 388753 0.5890 +27350 403314 0.9000 +27350 440567 0.6870 +27350 100532726 0.4600 +27351 29843 0.7340 +27351 29965 0.5910 +27351 29978 0.9940 +27351 29979 0.9950 +27351 51251 0.4340 +27351 56893 0.9970 +27351 57337 0.6500 +27351 84276 0.4140 +27351 90580 0.4240 +27351 123228 0.4170 +27351 140685 0.5280 +27351 143471 0.9940 +27351 205564 0.7200 +27351 387082 0.4650 +27352 53918 0.4350 +27352 54662 0.5660 +27352 55325 0.4260 +27352 57591 0.4140 +27352 64145 0.4490 +27352 80129 0.4450 +27352 80224 0.4010 +27352 128637 0.5150 +27352 129049 0.9100 +27352 155061 0.4120 +27352 157855 0.4130 +27429 29058 0.5510 +27429 29090 0.4340 +27429 29928 0.4450 +27429 51024 0.4160 +27429 51073 0.4510 +27429 51079 0.7830 +27429 51102 0.4060 +27429 51142 0.5240 +27429 54205 0.9770 +27429 54832 0.5490 +27429 54902 0.4010 +27429 54994 0.4610 +27429 55072 0.5720 +27429 55486 0.9180 +27429 55669 0.4270 +27429 55737 0.6440 +27429 57407 0.4060 +27429 57448 0.9190 +27429 57610 0.5090 +27429 64795 0.8080 +27429 65018 0.9940 +27429 78989 0.5600 +27429 79444 0.8880 +27429 79594 0.4870 +27429 79608 0.5410 +27429 79680 0.4190 +27429 80208 0.4970 +27429 80232 0.4710 +27429 80764 0.4960 +27429 84695 0.6830 +27429 90550 0.4620 +27429 92609 0.5080 +27429 115209 0.5740 +27429 116225 0.5870 +27429 120892 0.6270 +27429 221154 0.4010 +27429 255027 0.6080 +27430 28964 0.4490 +27430 28998 0.4480 +27430 29093 0.4380 +27430 29880 0.4570 +27430 29904 0.4900 +27430 29925 0.5130 +27430 29926 0.5130 +27430 51021 0.4970 +27430 51065 0.4750 +27430 51069 0.4610 +27430 51073 0.4710 +27430 51081 0.4890 +27430 51149 0.4640 +27430 51264 0.4570 +27430 51302 0.5010 +27430 51478 0.7460 +27430 55173 0.5240 +27430 55272 0.5270 +27430 55288 0.4750 +27430 55316 0.5110 +27430 55349 0.4490 +27430 57129 0.4720 +27430 57412 0.4810 +27430 60488 0.4720 +27430 63875 0.4840 +27430 63931 0.5240 +27430 64802 0.4080 +27430 64960 0.4730 +27430 64963 0.4760 +27430 64965 0.5180 +27430 64968 0.4700 +27430 64969 0.5080 +27430 64975 0.4420 +27430 64976 0.4390 +27430 64979 0.4330 +27430 64981 0.4380 +27430 64983 0.4540 +27430 79594 0.4060 +27430 84545 0.4390 +27430 84749 0.4990 +27430 92196 0.4080 +27430 114987 0.4670 +27430 126402 0.4660 +27430 132949 0.4120 +27430 140032 0.4270 +27430 197258 0.4170 +27430 200916 0.4670 +27430 259307 0.9050 +27430 285855 0.4080 +27430 347475 0.5010 +27430 387129 0.4030 +27430 728294 0.7560 +27430 100505478 0.4030 +27430 100526842 0.4310 +27430 100529239 0.4860 +27433 55716 0.4190 +27433 64342 0.5960 +27433 80194 0.4510 +27433 80346 0.6510 +27433 81790 0.4100 +27433 113091 0.4830 +27433 129521 0.4320 +27433 138428 0.5410 +27433 145773 0.4620 +27433 163590 0.6570 +27433 255061 0.4090 +27433 286075 0.4200 +27433 374786 0.4560 +27433 390212 0.4540 +27434 51426 0.6430 +27434 51455 0.9920 +27434 51567 0.4040 +27434 54840 0.5690 +27434 55247 0.4580 +27434 55775 0.5140 +27434 55778 0.5320 +27434 56852 0.8300 +27434 57379 0.6490 +27434 57505 0.7560 +27434 64421 0.6700 +27434 79661 0.4030 +27434 79840 0.8580 +27434 79874 0.4500 +27434 80174 0.4490 +27434 80198 0.4210 +27434 83990 0.6700 +27434 84083 0.4880 +27434 84126 0.6460 +27434 84905 0.4010 +27434 85378 0.4420 +27434 113510 0.4160 +27434 114799 0.4910 +27434 157570 0.4740 +27434 200558 0.5120 +27434 201973 0.6660 +27434 257218 0.4290 +27434 286257 0.6100 +27434 348654 0.4150 +27434 353497 0.7800 +27434 388566 0.4350 +27434 100289678 0.5430 +27436 29126 0.5280 +27436 51143 0.5030 +27436 53335 0.5400 +27436 54820 0.5280 +27436 54821 0.5820 +27436 54908 0.5250 +27436 55055 0.5160 +27436 55143 0.5230 +27436 55166 0.4990 +27436 55521 0.4220 +27436 55680 0.4520 +27436 55746 0.5020 +27436 55796 0.4150 +27436 55839 0.5120 +27436 55920 0.5140 +27436 57082 0.5400 +27436 57120 0.4840 +27436 57122 0.5230 +27436 57405 0.5180 +27436 57448 0.6750 +27436 57551 0.5190 +27436 64105 0.5190 +27436 64946 0.5250 +27436 79003 0.5040 +27436 79019 0.4990 +27436 79023 0.5410 +27436 79172 0.5410 +27436 79682 0.5130 +27436 79902 0.5190 +27436 79980 0.5340 +27436 80152 0.5080 +27436 80304 0.7420 +27436 80776 0.5040 +27436 81565 0.5310 +27436 81929 0.5120 +27436 81930 0.5360 +27436 83540 0.5470 +27436 84623 0.5280 +27436 84643 0.5540 +27436 85417 0.4310 +27436 88745 0.4340 +27436 89953 0.4250 +27436 91461 0.4620 +27436 91687 0.5370 +27436 91754 0.8110 +27436 124401 0.4750 +27436 133690 0.4800 +27436 140609 0.7120 +27436 140735 0.5970 +27436 144100 0.4640 +27436 146325 0.4330 +27436 147841 0.5140 +27436 151246 0.5030 +27436 151648 0.5130 +27436 170850 0.4740 +27436 203068 0.6600 +27436 220134 0.5060 +27436 255738 0.4180 +27436 282996 0.4250 +27436 283373 0.4590 +27436 347733 0.6210 +27436 348235 0.4990 +27436 348995 0.5040 +27436 378708 0.5050 +27436 401541 0.4990 +27439 27440 0.5490 +27439 64375 0.4410 +27439 267020 0.4490 +27439 339665 0.5600 +27439 375323 0.5900 +27439 375612 0.4130 +27439 440804 0.4470 +27440 27443 0.5390 +27440 29968 0.4190 +27440 51491 0.4140 +27440 51816 0.6810 +27440 57461 0.7530 +27440 63904 0.4180 +27440 79825 0.5710 +27440 126755 0.4910 +27440 127428 0.5650 +27440 150290 0.4560 +27440 152926 0.4730 +27440 339122 0.4750 +27440 100534599 0.7020 +27443 29028 0.5820 +27443 29072 0.4090 +27443 29117 0.5220 +27443 29994 0.5620 +27443 51616 0.6540 +27443 51773 0.8300 +27443 51816 0.4670 +27443 54014 0.4100 +27443 54107 0.7070 +27443 54108 0.6690 +27443 54454 0.5530 +27443 55023 0.6350 +27443 55040 0.4560 +27443 55140 0.4780 +27443 55201 0.8340 +27443 55203 0.4680 +27443 55689 0.6580 +27443 56943 0.8330 +27443 65980 0.5160 +27443 79813 0.4040 +27443 83733 0.6410 +27443 84101 0.4690 +27443 84749 0.4500 +27443 93624 0.6710 +27443 112869 0.8440 +27443 117143 0.5210 +27443 124944 0.9000 +27443 127002 0.5270 +27443 138474 0.4410 +27443 150165 0.4240 +27443 158880 0.4510 +27443 161436 0.4050 +27443 222255 0.5270 +27443 254065 0.5690 +27443 387332 0.4920 +27443 389856 0.4500 +27443 399949 0.4920 +27443 440093 0.4470 +27443 440686 0.4470 +27443 653604 0.4470 +27443 100287513 0.4500 +27443 100529209 0.5400 +27445 28964 0.5220 +27445 53353 0.6930 +27445 56171 0.4060 +27445 57381 0.5340 +27445 57578 0.4010 +27445 64478 0.4950 +27445 78999 0.4630 +27445 79026 0.5470 +27445 79633 0.5420 +27445 79776 0.5370 +27445 80331 0.5320 +27445 83872 0.4800 +27445 84033 0.5570 +27445 84059 0.4610 +27445 93035 0.4380 +27445 93664 0.5260 +27445 94025 0.6850 +27445 114788 0.6700 +27445 120114 0.5310 +27445 129446 0.4990 +27445 140453 0.4580 +27445 145581 0.4800 +27445 154664 0.5270 +27445 246213 0.5000 +27445 345456 0.5200 +27445 375189 0.4890 +28227 29966 0.4090 +28227 50488 0.6960 +28227 51400 0.6530 +28227 51451 0.7410 +28227 55012 0.5800 +28227 55171 0.7960 +28227 55344 0.7290 +28227 55671 0.5470 +28227 55799 0.6500 +28227 55844 0.9190 +28227 57223 0.5470 +28227 57650 0.4050 +28227 59283 0.6550 +28227 59284 0.6550 +28227 59285 0.6520 +28227 81669 0.4470 +28227 83932 0.8270 +28227 84626 0.5130 +28227 85407 0.7440 +28227 93589 0.6500 +28227 139420 0.5470 +28227 151987 0.7760 +28227 207063 0.5580 +28231 53919 0.4910 +28231 55867 0.6110 +28231 79820 0.4190 +28231 114571 0.6040 +28231 117144 0.4320 +28231 117247 0.6110 +28231 123264 0.4070 +28231 257044 0.5160 +28231 257062 0.4060 +28231 285588 0.4690 +28231 378807 0.4170 +28231 387775 0.4650 +28231 100130348 0.4090 +28232 54805 0.4420 +28232 55691 0.4630 +28232 55784 0.4240 +28232 55867 0.5800 +28232 57480 0.4060 +28232 63027 0.4510 +28232 64410 0.4220 +28232 79739 0.4590 +28232 81796 0.4280 +28232 114571 0.5780 +28232 117247 0.4900 +28232 140609 0.4270 +28232 254428 0.4320 +28232 387775 0.4850 +28234 51081 0.5070 +28234 54490 0.4880 +28234 54575 0.6530 +28234 54576 0.6750 +28234 54577 0.6550 +28234 54578 0.6850 +28234 54579 0.4610 +28234 54600 0.6140 +28234 54657 0.6830 +28234 54658 0.8770 +28234 54659 0.5930 +28234 55244 0.7630 +28234 55867 0.6090 +28234 79799 0.4870 +28234 114571 0.6680 +28234 123264 0.5010 +28234 135152 0.4620 +28234 146802 0.7640 +28234 200931 0.6100 +28234 574537 0.4860 +28316 28513 0.6010 +28316 60437 0.5900 +28316 64072 0.6030 +28316 64403 0.5490 +28316 64405 0.6140 +28316 84249 0.4070 +28316 220441 0.4130 +28316 222256 0.5830 +28511 54438 0.7840 +28511 57148 0.6860 +28511 57186 0.7900 +28511 81577 0.7970 +28511 253959 0.8250 +28512 55852 0.4660 +28512 116135 0.4470 +28512 145567 0.4530 +28513 51562 0.4240 +28513 57325 0.5170 +28513 60437 0.5800 +28513 64072 0.5890 +28513 64403 0.5560 +28513 64405 0.5640 +28513 65217 0.4410 +28513 222256 0.5680 +28514 50674 0.4840 +28514 51107 0.4070 +28514 51176 0.7960 +28514 51593 0.7000 +28514 54361 0.4210 +28514 54492 0.5990 +28514 54567 0.9420 +28514 55333 0.4320 +28514 55502 0.6000 +28514 55534 0.7310 +28514 55780 0.4450 +28514 55851 0.4010 +28514 55897 0.5980 +28514 57338 0.5720 +28514 57534 0.7880 +28514 57801 0.5640 +28514 63973 0.5400 +28514 80310 0.4400 +28514 84441 0.7420 +28514 84525 0.4710 +28514 89780 0.5010 +28514 94234 0.4170 +28514 134701 0.4240 +28514 142678 0.5610 +28514 145873 0.7770 +28514 284654 0.4020 +28514 340260 0.4700 +28514 388585 0.8590 +28514 390992 0.4170 +28514 392391 0.4180 +28514 441478 0.6700 +28514 100532731 0.4370 +28951 51422 0.4250 +28951 53632 0.4830 +28951 55070 0.7320 +28951 56243 0.5000 +28951 57154 0.5820 +28951 64326 0.8830 +28951 83931 0.8110 +28951 341277 0.4650 +28952 28991 0.9560 +28952 29062 0.4700 +28952 29099 0.9730 +28952 50717 0.5130 +28952 50813 0.4080 +28952 51019 0.6680 +28952 51088 0.4990 +28952 51100 0.6410 +28952 51122 0.9840 +28952 51138 0.4160 +28952 51397 0.9790 +28952 51514 0.4990 +28952 51637 0.5290 +28952 51665 0.5040 +28952 51666 0.4990 +28952 51676 0.4990 +28952 51699 0.9390 +28952 53339 0.4990 +28952 54165 0.5110 +28952 54520 0.9990 +28952 54876 0.4990 +28952 54939 0.9810 +28952 54951 0.9860 +28952 55088 0.4260 +28952 55175 0.4990 +28952 55208 0.5040 +28952 55269 0.6020 +28952 55527 0.4990 +28952 55610 0.4290 +28952 55737 0.6250 +28952 55827 0.4990 +28952 55832 0.5110 +28952 55884 0.4990 +28952 55958 0.4990 +28952 56929 0.4990 +28952 56995 0.4990 +28952 57020 0.9960 +28952 57542 0.4990 +28952 63894 0.6470 +28952 64326 0.4990 +28952 64344 0.4990 +28952 64410 0.5100 +28952 64601 0.5050 +28952 64708 0.4140 +28952 64852 0.4360 +28952 79016 0.5210 +28952 79269 0.4990 +28952 79594 0.4800 +28952 79754 0.5150 +28952 80067 0.5040 +28952 80176 0.5100 +28952 80344 0.5060 +28952 80789 0.6320 +28952 81609 0.5390 +28952 84078 0.4990 +28952 84219 0.4810 +28952 84259 0.5080 +28952 84541 0.4990 +28952 84727 0.5690 +28952 84861 0.5710 +28952 89890 0.4990 +28952 90135 0.5100 +28952 90293 0.5080 +28952 90864 0.5130 +28952 92369 0.4990 +28952 92591 0.5040 +28952 114790 0.5380 +28952 115948 0.6210 +28952 122416 0.4990 +28952 122769 0.4990 +28952 123879 0.4990 +28952 124997 0.4990 +28952 127247 0.4990 +28952 136371 0.4990 +28952 140456 0.5370 +28952 140458 0.5010 +28952 140459 0.5080 +28952 140460 0.5280 +28952 140461 0.5030 +28952 140462 0.5080 +28952 140739 0.4990 +28952 140825 0.5180 +28952 142685 0.5010 +28952 142686 0.5010 +28952 142689 0.5110 +28952 149951 0.9480 +28952 150684 0.9960 +28952 154043 0.4670 +28952 154881 0.5040 +28952 165055 0.5590 +28952 170622 0.9760 +28952 200845 0.4990 +28952 253725 0.7440 +28952 387680 0.7600 +28952 390594 0.4990 +28952 401036 0.4990 +28952 404636 0.9380 +28952 441933 0.4790 +28952 493829 0.4220 +28952 100287171 0.6110 +28952 100532731 0.4730 +28954 50618 0.5400 +28954 51196 0.4200 +28954 51806 0.6330 +28954 83593 0.4200 +28954 91860 0.6650 +28954 143162 0.4700 +28954 161253 0.5080 +28954 163688 0.6330 +28955 28957 0.5780 +28955 29066 0.5880 +28955 51061 0.4210 +28955 51161 0.4360 +28955 55227 0.4440 +28955 65986 0.4070 +28955 79807 0.4180 +28955 79929 0.4910 +28955 84311 0.4390 +28955 116028 0.6740 +28955 124274 0.4330 +28955 147179 0.4270 +28955 647286 0.5060 +28956 28958 0.5150 +28956 51079 0.5130 +28956 51119 0.4090 +28956 51255 0.4110 +28956 51382 0.7360 +28956 51422 0.4990 +28956 51528 0.4250 +28956 51606 0.6680 +28956 53632 0.4990 +28956 54344 0.4530 +28956 54460 0.4330 +28956 54468 0.7260 +28956 54785 0.7840 +28956 55004 0.9990 +28956 55153 0.6450 +28956 55255 0.7270 +28956 55846 0.6470 +28956 55851 0.5560 +28956 56893 0.4330 +28956 57521 0.9880 +28956 57589 0.9000 +28956 57600 0.9020 +28956 58528 0.9550 +28956 60673 0.5240 +28956 64121 0.9990 +28956 64223 0.9340 +28956 79726 0.7560 +28956 80213 0.4280 +28956 81929 0.6940 +28956 83667 0.6220 +28956 83877 0.4480 +28956 83941 0.4350 +28956 84219 0.7320 +28956 84232 0.4290 +28956 84292 0.8040 +28956 84335 0.6470 +28956 84522 0.4600 +28956 84987 0.4690 +28956 85442 0.7200 +28956 90423 0.6500 +28956 90809 0.4980 +28956 96459 0.6030 +28956 116843 0.4220 +28956 118426 0.6680 +28956 119032 0.6390 +28956 123346 0.4020 +28956 127124 0.4990 +28956 133482 0.4410 +28956 140775 0.7200 +28956 144577 0.6310 +28956 153129 0.9990 +28956 154743 0.5250 +28956 155066 0.5090 +28956 157680 0.4760 +28956 192286 0.5890 +28956 201163 0.9340 +28956 201931 0.5490 +28956 203228 0.7870 +28956 245972 0.5210 +28956 245973 0.6770 +28956 282991 0.5530 +28956 374354 0.4780 +28956 389541 0.9990 +28956 414328 0.4320 +28956 652968 0.6220 +28956 729438 0.6050 +28956 729991 0.4230 +28957 28973 0.9900 +28957 28977 0.9620 +28957 28998 0.9680 +28957 29074 0.8770 +28957 29088 0.9190 +28957 29090 0.5440 +28957 29093 0.9080 +28957 29796 0.4060 +28957 51021 0.9930 +28957 51023 0.9890 +28957 51069 0.8740 +28957 51073 0.8850 +28957 51081 0.9880 +28957 51106 0.8190 +28957 51116 0.9980 +28957 51121 0.4740 +28957 51253 0.8810 +28957 51258 0.8710 +28957 51263 0.8740 +28957 51264 0.8670 +28957 51318 0.9090 +28957 51373 0.9870 +28957 51642 0.8790 +28957 51649 0.9970 +28957 51650 0.9860 +28957 54148 0.8970 +28957 54460 0.9930 +28957 54516 0.5410 +28957 54534 0.8750 +28957 54948 0.8830 +28957 54998 0.9840 +28957 55037 0.9900 +28957 55052 0.8960 +28957 55168 0.9800 +28957 55173 0.9860 +28957 56945 0.9980 +28957 57129 0.8760 +28957 60488 0.9860 +28957 63875 0.9140 +28957 63931 0.9880 +28957 64432 0.9880 +28957 64745 0.8130 +28957 64928 0.8680 +28957 64949 0.9940 +28957 64951 0.9860 +28957 64960 0.9950 +28957 64963 0.9930 +28957 64965 0.9950 +28957 64968 0.9910 +28957 64969 0.9820 +28957 64975 0.8780 +28957 64976 0.8710 +28957 64978 0.8800 +28957 64979 0.8680 +28957 64981 0.8600 +28957 64983 0.9170 +28957 65003 0.8610 +28957 65005 0.8580 +28957 65008 0.8680 +28957 65080 0.8850 +28957 65993 0.9930 +28957 78988 0.8480 +28957 79590 0.8790 +28957 79682 0.4610 +28957 79807 0.6240 +28957 79863 0.8200 +28957 80168 0.4400 +28957 81892 0.4380 +28957 84273 0.8030 +28957 84311 0.8280 +28957 84545 0.8430 +28957 85476 0.8180 +28957 90313 0.4080 +28957 90480 0.8430 +28957 92259 0.8330 +28957 92399 0.8720 +28957 116540 0.8640 +28957 116541 0.8860 +28957 118487 0.9940 +28957 122704 0.8560 +28957 124995 0.8480 +28957 126402 0.4330 +28957 128308 0.8600 +28957 131118 0.4360 +28957 150572 0.4600 +28957 158234 0.8190 +28957 196074 0.8440 +28957 219402 0.9030 +28957 219927 0.8620 +28957 347487 0.4040 +28957 654364 0.4430 +28957 100287482 0.4040 +28958 29090 0.6430 +28958 29796 0.4280 +28958 51079 0.4020 +28958 51103 0.4530 +28958 51204 0.8030 +28958 51241 0.8280 +28958 51287 0.6330 +28958 51295 0.4040 +28958 51300 0.5350 +28958 54968 0.4740 +28958 55210 0.4580 +28958 55744 0.8440 +28958 79064 0.4750 +28958 80775 0.4810 +28958 81892 0.5310 +28958 84300 0.5520 +28958 84701 0.6040 +28958 84987 0.9960 +28958 90639 0.4860 +28958 112724 0.4530 +28958 116228 0.6640 +28958 118490 0.7160 +28958 152100 0.8560 +28958 192286 0.5310 +28958 285521 0.4940 +28958 388753 0.8260 +28958 389203 0.7850 +28958 440574 0.4100 +28958 493753 0.6440 +28958 100131801 0.6020 +28958 100303755 0.5850 +28959 55303 0.4740 +28959 55340 0.4830 +28959 55365 0.9990 +28959 56265 0.4320 +28959 64231 0.4500 +28959 64282 0.4020 +28959 78997 0.4170 +28959 83604 0.4110 +28959 155038 0.5110 +28959 168537 0.4250 +28959 170575 0.4210 +28959 285971 0.4930 +28959 474344 0.5090 +28959 100131390 0.5520 +28960 51343 0.6250 +28960 51728 0.6310 +28960 54464 0.8670 +28960 54512 0.4170 +28960 54840 0.4440 +28960 55802 0.4450 +28960 80153 0.5800 +28960 80746 0.4200 +28960 115024 0.5740 +28960 124801 0.5070 +28960 131870 0.5340 +28960 167227 0.8810 +28960 196513 0.5010 +28962 29887 0.7810 +28962 51010 0.4320 +28962 51226 0.4220 +28962 51569 0.4140 +28962 54814 0.4440 +28962 55093 0.4470 +28962 55315 0.4990 +28962 65082 0.5130 +28962 79444 0.4240 +28962 80305 0.4540 +28962 81890 0.4270 +28962 84230 0.4080 +28962 120071 0.4480 +28962 145567 0.4320 +28962 146456 0.4460 +28962 147710 0.4510 +28962 256380 0.4040 +28962 345222 0.5680 +28964 29763 0.4570 +28964 29780 0.4240 +28964 29941 0.4860 +28964 29993 0.4750 +28964 50488 0.4120 +28964 50807 0.4350 +28964 51347 0.4050 +28964 51517 0.6880 +28964 54538 0.6830 +28964 54946 0.4850 +28964 55004 0.4010 +28964 55616 0.4250 +28964 55742 0.5400 +28964 55785 0.4980 +28964 55845 0.4750 +28964 55914 0.4450 +28964 57381 0.6300 +28964 58480 0.6330 +28964 58533 0.6730 +28964 64098 0.4160 +28964 64320 0.4250 +28964 81609 0.4580 +28964 81624 0.4480 +28964 81839 0.4090 +28964 84254 0.5160 +28964 89846 0.4070 +28964 91010 0.4050 +28964 116984 0.4880 +28964 128239 0.5540 +28964 143098 0.4060 +28964 147179 0.5200 +28964 171177 0.6210 +28964 200894 0.4270 +28964 729238 0.4790 +28965 51015 0.4250 +28965 55212 0.4590 +28965 60481 0.4100 +28965 80347 0.4490 +28965 84649 0.5050 +28965 132949 0.6570 +28965 171019 0.4080 +28966 29887 0.5230 +28966 29907 0.4250 +28966 29916 0.6370 +28966 29934 0.4870 +28966 55614 0.5250 +28966 55690 0.5440 +28966 55846 0.4340 +28966 64089 0.4910 +28966 79856 0.7950 +28966 83891 0.4380 +28966 83942 0.7160 +28966 90203 0.4890 +28966 92017 0.4100 +28966 114991 0.5890 +28966 121506 0.4110 +28966 124460 0.5150 +28966 129530 0.4410 +28966 284680 0.6920 +28968 153201 0.7370 +28968 643382 0.4790 +28969 51194 0.5390 +28969 57037 0.5980 +28969 100506049 0.4190 +28970 55633 0.4900 +28970 56935 0.4920 +28970 79101 0.4230 +28970 79780 0.5060 +28970 79981 0.4410 +28970 84064 0.4060 +28970 85459 0.6220 +28970 132789 0.4690 +28970 341208 0.4360 +28970 387804 0.5850 +28971 51522 0.4190 +28971 51773 0.4600 +28971 80311 0.4380 +28971 92105 0.5890 +28971 113444 0.4190 +28971 124801 0.4470 +28971 195827 0.4040 +28971 197021 0.4230 +28971 203245 0.4310 +28971 652968 0.4260 +28972 29927 0.5940 +28972 51065 0.4810 +28972 51121 0.4820 +28972 51234 0.6900 +28972 51290 0.4980 +28972 51614 0.5170 +28972 54543 0.4170 +28972 55176 0.5010 +28972 55830 0.5670 +28972 55846 0.4410 +28972 58477 0.5080 +28972 58505 0.4070 +28972 60559 0.9980 +28972 79037 0.4600 +28972 79086 0.5170 +28972 80213 0.5310 +28972 81502 0.4740 +28972 83943 0.4390 +28972 90701 0.9980 +28972 93380 0.4500 +28972 116832 0.4450 +28972 128637 0.4250 +28972 140032 0.4010 +28972 140801 0.4620 +28972 163154 0.4030 +28972 196294 0.4540 +28972 200185 0.4390 +28972 200916 0.4220 +28972 221545 0.4350 +28973 28977 0.9910 +28973 28998 0.9150 +28973 29074 0.8870 +28973 29088 0.8600 +28973 29093 0.8780 +28973 29922 0.4310 +28973 51021 0.9980 +28973 51023 0.9960 +28973 51069 0.9030 +28973 51073 0.9140 +28973 51081 0.9980 +28973 51106 0.8650 +28973 51116 0.9980 +28973 51184 0.4530 +28973 51253 0.9520 +28973 51258 0.9020 +28973 51263 0.9110 +28973 51264 0.8490 +28973 51314 0.4290 +28973 51318 0.8890 +28973 51373 0.9960 +28973 51569 0.4530 +28973 51642 0.9330 +28973 51649 0.9830 +28973 51650 0.9980 +28973 54148 0.8680 +28973 54460 0.9960 +28973 54516 0.6540 +28973 54534 0.8900 +28973 54596 0.4550 +28973 54948 0.9270 +28973 54998 0.9830 +28973 55037 0.9930 +28973 55052 0.9010 +28973 55157 0.4160 +28973 55168 0.9990 +28973 55173 0.9980 +28973 55178 0.4090 +28973 55794 0.4290 +28973 56945 0.9990 +28973 57129 0.9260 +28973 60488 0.9950 +28973 60559 0.4510 +28973 63875 0.8910 +28973 63931 0.9960 +28973 64432 0.9920 +28973 64745 0.8880 +28973 64928 0.9090 +28973 64949 0.9960 +28973 64951 0.9820 +28973 64960 0.9960 +28973 64963 0.9970 +28973 64965 0.9960 +28973 64968 0.9970 +28973 64969 0.9970 +28973 64975 0.8960 +28973 64976 0.9230 +28973 64978 0.9130 +28973 64979 0.8710 +28973 64981 0.8710 +28973 64983 0.8560 +28973 65003 0.9520 +28973 65005 0.8690 +28973 65008 0.8960 +28973 65080 0.9360 +28973 65993 0.9960 +28973 78988 0.8780 +28973 79590 0.9340 +28973 79863 0.8590 +28973 80742 0.5720 +28973 84273 0.9230 +28973 84311 0.9540 +28973 84365 0.4610 +28973 84545 0.8890 +28973 84769 0.5620 +28973 85476 0.8460 +28973 90313 0.4840 +28973 90480 0.9220 +28973 91574 0.6340 +28973 92170 0.5100 +28973 92259 0.6990 +28973 92399 0.8710 +28973 115416 0.5270 +28973 116540 0.8750 +28973 116541 0.9310 +28973 118487 0.9680 +28973 122704 0.9100 +28973 124995 0.9190 +28973 126402 0.4240 +28973 128308 0.8850 +28973 134218 0.6170 +28973 158234 0.8070 +28973 196074 0.8570 +28973 219402 0.9400 +28973 219927 0.8990 +28973 654364 0.4740 +28974 51079 0.4090 +28974 51255 0.4790 +28974 51398 0.4470 +28974 51693 0.4320 +28974 54460 0.4350 +28974 55854 0.4450 +28974 79095 0.4720 +28974 79897 0.4010 +28974 81576 0.4300 +28974 90379 0.4450 +28974 115098 0.5810 +28974 126328 0.5280 +28974 150678 0.5380 +28974 192286 0.4270 +28974 646457 0.5840 +28976 29078 0.9350 +28976 29958 0.4190 +28976 50640 0.4810 +28976 50814 0.4260 +28976 51079 0.9970 +28976 51084 0.6760 +28976 51102 0.4950 +28976 51103 0.9990 +28976 51117 0.4820 +28976 51121 0.6330 +28976 51295 0.9990 +28976 51300 0.9990 +28976 51406 0.4460 +28976 51497 0.4460 +28976 51703 0.4580 +28976 54496 0.5050 +28976 54539 0.7720 +28976 54968 0.6050 +28976 55101 0.4610 +28976 55249 0.5660 +28976 55268 0.4740 +28976 55280 0.4490 +28976 55471 0.7460 +28976 55572 0.9080 +28976 55744 0.8640 +28976 55862 0.4880 +28976 55863 0.9990 +28976 55902 0.4610 +28976 55967 0.6860 +28976 56922 0.4390 +28976 57017 0.4560 +28976 57107 0.6830 +28976 57505 0.5220 +28976 60528 0.5290 +28976 64087 0.4900 +28976 64756 0.4510 +28976 65985 0.4240 +28976 79133 0.8670 +28976 79777 0.4310 +28976 80224 0.6990 +28976 80308 0.4870 +28976 80724 0.4300 +28976 81616 0.4580 +28976 84129 0.4110 +28976 84263 0.8050 +28976 84320 0.5280 +28976 84532 0.4270 +28976 84693 0.4550 +28976 91452 0.4810 +28976 91647 0.4370 +28976 91942 0.7830 +28976 116285 0.4090 +28976 123876 0.4130 +28976 124359 0.4780 +28976 126129 0.4410 +28976 126328 0.7170 +28976 132949 0.5640 +28976 137682 0.8140 +28976 137872 0.4250 +28976 140856 0.4250 +28976 150209 0.4820 +28976 150274 0.4190 +28976 153562 0.4290 +28976 197322 0.4180 +28976 253175 0.4780 +28976 253827 0.4340 +28976 340481 0.5940 +28976 341392 0.4270 +28976 348158 0.4810 +28976 374291 0.9980 +28976 414149 0.4660 +28976 493753 0.6270 +28976 109703458 0.4130 +28976 114483834 0.6640 +28977 28998 0.9840 +28977 29074 0.9390 +28977 29088 0.9370 +28977 29093 0.9740 +28977 29960 0.8030 +28977 51001 0.4310 +28977 51021 0.9920 +28977 51023 0.9950 +28977 51069 0.9090 +28977 51073 0.9560 +28977 51081 0.9890 +28977 51116 0.9880 +28977 51234 0.5270 +28977 51250 0.8230 +28977 51253 0.9770 +28977 51258 0.9600 +28977 51263 0.9770 +28977 51264 0.9250 +28977 51318 0.9620 +28977 51373 0.9870 +28977 51642 0.9550 +28977 51649 0.9550 +28977 51650 0.9930 +28977 54148 0.9750 +28977 54460 0.9860 +28977 54516 0.6420 +28977 54534 0.9720 +28977 54948 0.9630 +28977 54998 0.9210 +28977 55037 0.9610 +28977 55052 0.9830 +28977 55168 0.9970 +28977 55173 0.9890 +28977 55178 0.9030 +28977 55794 0.8630 +28977 56945 0.9920 +28977 57129 0.9810 +28977 60488 0.9660 +28977 63875 0.9520 +28977 63931 0.9910 +28977 64432 0.9490 +28977 64928 0.8810 +28977 64949 0.9410 +28977 64951 0.9660 +28977 64960 0.9850 +28977 64963 0.9880 +28977 64965 0.9830 +28977 64968 0.9840 +28977 64969 0.9900 +28977 64975 0.9850 +28977 64976 0.9710 +28977 64978 0.8930 +28977 64979 0.9150 +28977 64981 0.9150 +28977 64983 0.9790 +28977 65003 0.9540 +28977 65005 0.9550 +28977 65008 0.9740 +28977 65080 0.9830 +28977 65993 0.9670 +28977 78988 0.9310 +28977 79590 0.9450 +28977 84074 0.4900 +28977 84311 0.9290 +28977 84340 0.8610 +28977 84545 0.9830 +28977 84833 0.4160 +28977 85476 0.8310 +28977 85865 0.8200 +28977 90480 0.9710 +28977 91574 0.8490 +28977 92170 0.8350 +28977 92259 0.6870 +28977 92399 0.8750 +28977 115416 0.8920 +28977 116540 0.9140 +28977 116541 0.9470 +28977 118487 0.9760 +28977 122704 0.9310 +28977 124995 0.9470 +28977 128308 0.9620 +28977 130916 0.8140 +28977 151194 0.4530 +28977 154791 0.4020 +28977 219402 0.7060 +28977 219927 0.9700 +28977 387338 0.8050 +28977 109703458 0.4090 +28977 127898561 0.8000 +28978 29882 0.4330 +28978 29993 0.4440 +28978 51012 0.4620 +28978 55076 0.6040 +28978 55785 0.5480 +28978 79971 0.4510 +28978 84106 0.4550 +28978 84187 0.5050 +28978 116449 0.4930 +28978 147699 0.5680 +28978 157769 0.4750 +28978 200081 0.4050 +28978 220042 0.4740 +28978 257144 0.5350 +28978 374882 0.6680 +28978 400120 0.4890 +28981 51098 0.9990 +28981 51626 0.5330 +28981 51668 0.9980 +28981 55081 0.9990 +28981 55112 0.4960 +28981 55212 0.5840 +28981 55349 0.5320 +28981 55764 0.8950 +28981 56912 0.9990 +28981 56942 0.4040 +28981 57539 0.8460 +28981 57560 0.9980 +28981 57576 0.5070 +28981 57728 0.8950 +28981 64792 0.9990 +28981 79363 0.4340 +28981 79659 0.6690 +28981 79696 0.4470 +28981 79809 0.9380 +28981 79989 0.9930 +28981 80173 0.9990 +28981 80184 0.6010 +28981 84070 0.4090 +28981 89891 0.4360 +28981 90410 0.9590 +28981 91147 0.4770 +28981 92104 0.9790 +28981 112752 0.8440 +28981 115948 0.7230 +28981 127733 0.4640 +28981 129880 0.6380 +28981 146057 0.5340 +28981 150737 0.9980 +28981 153241 0.4130 +28981 154664 0.4220 +28981 157657 0.4820 +28981 161582 0.4250 +28981 164781 0.5470 +28981 167691 0.4390 +28981 196394 0.4240 +28981 199223 0.7240 +28981 200894 0.9060 +28981 254173 0.4490 +28981 255758 0.4390 +28981 261734 0.4710 +28982 30061 0.5710 +28982 51312 0.5780 +28982 54977 0.4860 +28982 55240 0.6160 +28982 55652 0.7240 +28982 57817 0.5070 +28982 79901 0.5260 +28982 81894 0.4350 +28982 113235 0.7190 +28982 148738 0.4100 +28982 100507436 0.4200 +28983 56649 0.4230 +28983 59272 0.4230 +28983 196374 0.4110 +28984 79587 0.6230 +28984 83660 0.6210 +28985 29789 0.8510 +28985 51119 0.4170 +28985 51260 0.4080 +28985 81502 0.4020 +28985 81620 0.4290 +28985 117247 0.5220 +28985 133418 0.6400 +28986 54780 0.5760 +28986 64112 0.4280 +28986 65078 0.4240 +28986 79039 0.5550 +28986 84524 0.4030 +28986 140738 0.5910 +28986 143903 0.5220 +28986 149345 0.4060 +28986 197370 0.4240 +28986 493861 0.5360 +28987 29777 0.5000 +28987 29889 0.9160 +28987 29997 0.8760 +28987 30834 0.6510 +28987 30836 0.6750 +28987 51018 0.8860 +28987 51042 0.4510 +28987 51065 0.7080 +28987 51068 0.8590 +28987 51077 0.8210 +28987 51081 0.5410 +28987 51082 0.5520 +28987 51096 0.8550 +28987 51106 0.7770 +28987 51116 0.5920 +28987 51118 0.7010 +28987 51149 0.5380 +28987 51154 0.8840 +28987 51187 0.8810 +28987 51202 0.6980 +28987 51236 0.7200 +28987 51388 0.9150 +28987 51490 0.4150 +28987 51504 0.9070 +28987 51538 0.4210 +28987 51575 0.8350 +28987 51602 0.6750 +28987 51605 0.5380 +28987 54475 0.7220 +28987 54517 0.4480 +28987 54552 0.7250 +28987 54555 0.8570 +28987 54606 0.7680 +28987 54663 0.7850 +28987 54700 0.6470 +28987 54881 0.4100 +28987 54888 0.4790 +28987 54913 0.8100 +28987 54957 0.8720 +28987 54984 0.6140 +28987 55003 0.7660 +28987 55027 0.4180 +28987 55105 0.6290 +28987 55127 0.5590 +28987 55131 0.9010 +28987 55140 0.4040 +28987 55153 0.9040 +28987 55226 0.8360 +28987 55272 0.7550 +28987 55299 0.9000 +28987 55319 0.6040 +28987 55341 0.9160 +28987 55621 0.4060 +28987 55646 0.6690 +28987 55651 0.6400 +28987 55695 0.4110 +28987 55703 0.4920 +28987 55718 0.6990 +28987 55720 0.9990 +28987 55759 0.6770 +28987 55760 0.5550 +28987 55781 0.9990 +28987 55794 0.4540 +28987 55813 0.7960 +28987 56342 0.6280 +28987 56902 0.9990 +28987 56915 0.5220 +28987 56919 0.4730 +28987 57050 0.9470 +28987 57062 0.6170 +28987 57109 0.4130 +28987 57470 0.8470 +28987 57604 0.4500 +28987 57647 0.6870 +28987 57696 0.4300 +28987 60487 0.5520 +28987 60492 0.4650 +28987 60625 0.4570 +28987 63899 0.4190 +28987 64118 0.5470 +28987 64216 0.8340 +28987 64318 0.5460 +28987 64425 0.7390 +28987 64434 0.6090 +28987 64794 0.4980 +28987 64960 0.5110 +28987 64963 0.5020 +28987 64969 0.4940 +28987 65083 0.9080 +28987 65095 0.6880 +28987 79039 0.7420 +28987 79050 0.9550 +28987 79159 0.4510 +28987 79365 0.4060 +28987 79571 0.8890 +28987 79665 0.4340 +28987 79897 0.8090 +28987 79918 0.8020 +28987 79954 0.8770 +28987 80135 0.8800 +28987 83480 0.4250 +28987 83732 0.9970 +28987 83743 0.8600 +28987 84128 0.7370 +28987 84135 0.6590 +28987 84154 0.8930 +28987 84172 0.7600 +28987 84240 0.5760 +28987 84273 0.5330 +28987 84285 0.8730 +28987 84294 0.7320 +28987 84306 0.4210 +28987 84319 0.5860 +28987 84365 0.8660 +28987 84447 0.7610 +28987 84549 0.8340 +28987 84916 0.8740 +28987 84946 0.9990 +28987 85395 0.9200 +28987 90121 0.8580 +28987 90441 0.4350 +28987 92856 0.8660 +28987 93643 0.4930 +28987 112970 0.5930 +28987 113246 0.4290 +28987 115939 0.6650 +28987 116966 0.6210 +28987 117246 0.8200 +28987 126402 0.5120 +28987 140032 0.7030 +28987 142940 0.4850 +28987 146212 0.6330 +28987 153443 0.7610 +28987 155368 0.5870 +28987 161424 0.8800 +28987 165545 0.5460 +28987 221078 0.7880 +28987 221830 0.6280 +28987 285855 0.4560 +28987 338699 0.4480 +28987 345630 0.6480 +28987 347487 0.4190 +28987 387129 0.4240 +28987 387338 0.4300 +28987 692312 0.6120 +28987 102157402 0.7260 +28988 50944 0.5920 +28988 54413 0.5180 +28988 55785 0.6180 +28988 55907 0.4200 +28988 57180 0.4490 +28988 57502 0.5180 +28988 57555 0.5040 +28988 58512 0.4990 +28988 63898 0.6440 +28988 81490 0.4840 +28988 81873 0.5870 +28988 83706 0.5140 +28988 84461 0.5400 +28988 85358 0.7770 +28988 91624 0.4120 +28988 129138 0.5270 +28988 147179 0.4640 +28988 254048 0.4420 +28988 375189 0.4870 +28988 653857 0.4620 +28989 29081 0.4250 +28989 51108 0.5670 +28989 51154 0.5770 +28989 51504 0.4540 +28989 51603 0.5920 +28989 54496 0.4620 +28989 55170 0.6000 +28989 55798 0.4310 +28989 60673 0.4710 +28989 64745 0.6240 +28989 64863 0.4620 +28989 65003 0.4100 +28989 79609 0.4690 +28989 80854 0.4240 +28989 84190 0.4780 +28989 84326 0.5440 +28989 92342 0.5250 +28989 92856 0.4130 +28989 114609 0.4650 +28989 131965 0.4450 +28989 151194 0.5690 +28989 155368 0.5840 +28989 196410 0.4570 +28989 283951 0.4070 +28989 399818 0.6200 +28989 401265 0.8830 +28990 51531 0.5370 +28990 55183 0.4280 +28990 64859 0.4220 +28990 80003 0.4740 +28990 113510 0.4430 +28990 114571 0.4090 +28990 205717 0.5430 +28990 282809 0.4690 +28990 348793 0.4280 +28990 643677 0.4300 +28990 729396 0.4090 +28991 28998 0.5610 +28991 29093 0.4550 +28991 29099 0.9500 +28991 29916 0.5150 +28991 50717 0.5130 +28991 50813 0.4250 +28991 51065 0.4800 +28991 51069 0.4600 +28991 51073 0.4130 +28991 51081 0.4410 +28991 51088 0.4990 +28991 51116 0.4400 +28991 51121 0.4910 +28991 51122 0.9800 +28991 51138 0.4160 +28991 51149 0.4760 +28991 51319 0.4770 +28991 51397 0.9790 +28991 51514 0.4990 +28991 51665 0.5120 +28991 51666 0.5030 +28991 51676 0.5030 +28991 51699 0.8470 +28991 53339 0.4990 +28991 54165 0.5130 +28991 54520 0.9290 +28991 54876 0.4990 +28991 54939 0.9690 +28991 54951 0.9620 +28991 55173 0.4960 +28991 55175 0.4990 +28991 55208 0.5030 +28991 55272 0.5130 +28991 55316 0.4800 +28991 55527 0.5090 +28991 55827 0.4990 +28991 55832 0.5180 +28991 55884 0.4990 +28991 55958 0.4990 +28991 56929 0.5070 +28991 56995 0.4990 +28991 57020 0.7000 +28991 57542 0.5040 +28991 63922 0.4900 +28991 63931 0.4420 +28991 64326 0.5070 +28991 64344 0.4990 +28991 64410 0.5030 +28991 64708 0.4160 +28991 64960 0.4320 +28991 64963 0.4940 +28991 64969 0.4990 +28991 65008 0.4360 +28991 65263 0.6140 +28991 65265 0.4730 +28991 79016 0.5210 +28991 79269 0.4990 +28991 79590 0.4380 +28991 79594 0.4800 +28991 79754 0.5030 +28991 80067 0.4990 +28991 80176 0.4990 +28991 80344 0.5040 +28991 80778 0.4140 +28991 81559 0.4570 +28991 84078 0.5040 +28991 84259 0.5090 +28991 84541 0.4990 +28991 84727 0.5290 +28991 84861 0.4990 +28991 84896 0.4660 +28991 84933 0.4970 +28991 84948 0.6870 +28991 89890 0.5040 +28991 90135 0.5040 +28991 90293 0.4990 +28991 90864 0.5010 +28991 92369 0.4990 +28991 92591 0.5030 +28991 114987 0.4760 +28991 116832 0.4500 +28991 122416 0.5030 +28991 122769 0.5260 +28991 123879 0.5070 +28991 126402 0.4220 +28991 126789 0.4110 +28991 127247 0.4990 +28991 128308 0.5300 +28991 136371 0.5030 +28991 140032 0.4260 +28991 140456 0.5030 +28991 140458 0.5030 +28991 140459 0.5530 +28991 140460 0.5070 +28991 140461 0.5030 +28991 140462 0.5030 +28991 140739 0.5150 +28991 140801 0.4830 +28991 140825 0.5040 +28991 142685 0.5030 +28991 142686 0.5030 +28991 142689 0.5030 +28991 149951 0.9380 +28991 150684 0.9740 +28991 154043 0.4800 +28991 154881 0.5040 +28991 170622 0.9540 +28991 200845 0.5010 +28991 200916 0.4680 +28991 254268 0.4650 +28991 285855 0.4200 +28991 340385 0.5400 +28991 347487 0.4870 +28991 387129 0.4160 +28991 390594 0.4990 +28991 401036 0.5030 +28991 404636 0.8740 +28991 441933 0.5780 +28991 100526842 0.4810 +28991 100529097 0.4100 +28991 100529239 0.4650 +28992 53343 0.4830 +28992 54936 0.8390 +28992 54956 0.5290 +28992 54969 0.5240 +28992 55506 0.7280 +28992 56829 0.5050 +28992 56965 0.5460 +28992 57097 0.4790 +28992 64761 0.5210 +28992 79668 0.4090 +28992 80351 0.4220 +28992 83666 0.4280 +28992 83707 0.5750 +28992 84335 0.5550 +28992 84875 0.6720 +28992 92799 0.4220 +28992 116969 0.5740 +28992 131870 0.6910 +28992 165631 0.4810 +28992 200558 0.4500 +28992 221443 0.8500 +28996 29843 0.6490 +28996 50484 0.5070 +28996 51510 0.6500 +28996 51534 0.4790 +28996 51701 0.4370 +28996 51741 0.4640 +28996 54739 0.4340 +28996 54862 0.4220 +28996 55294 0.4160 +28996 57659 0.6590 +28996 57805 0.4240 +28996 59343 0.5250 +28996 60485 0.4520 +28996 63970 0.5220 +28996 83593 0.9220 +28996 92421 0.4220 +28996 94241 0.9410 +28996 129642 0.4240 +28996 171023 0.4280 +28998 29074 0.9690 +28998 29083 0.9120 +28998 29088 0.9990 +28998 29093 0.9990 +28998 29102 0.6410 +28998 29103 0.4030 +28998 29789 0.5390 +28998 29796 0.5310 +28998 29889 0.4780 +28998 29922 0.4750 +28998 29927 0.8630 +28998 29960 0.8780 +28998 29978 0.4530 +28998 29979 0.4610 +28998 29997 0.5600 +28998 50487 0.4850 +28998 50613 0.4480 +28998 50814 0.4530 +28998 51001 0.6700 +28998 51008 0.7740 +28998 51014 0.5540 +28998 51021 0.9990 +28998 51023 0.9870 +28998 51042 0.5030 +28998 51065 0.8750 +28998 51067 0.5190 +28998 51068 0.5350 +28998 51069 0.9980 +28998 51073 0.9990 +28998 51081 0.9970 +28998 51115 0.5920 +28998 51116 0.9900 +28998 51119 0.5010 +28998 51121 0.8810 +28998 51149 0.8340 +28998 51154 0.8840 +28998 51187 0.8660 +28998 51202 0.4020 +28998 51224 0.4120 +28998 51250 0.8540 +28998 51253 0.9770 +28998 51258 0.9380 +28998 51263 0.9920 +28998 51264 0.9990 +28998 51314 0.4670 +28998 51318 0.9750 +28998 51319 0.7280 +28998 51373 0.9250 +28998 51388 0.5870 +28998 51398 0.4420 +28998 51520 0.4510 +28998 51574 0.4600 +28998 51642 0.9690 +28998 51649 0.9570 +28998 51650 0.9410 +28998 51720 0.4880 +28998 51726 0.4740 +28998 51734 0.4230 +28998 51760 0.4130 +28998 54059 0.5800 +28998 54148 0.9850 +28998 54431 0.4600 +28998 54460 0.8820 +28998 54516 0.7310 +28998 54517 0.8180 +28998 54534 0.9740 +28998 54543 0.4320 +28998 54552 0.4570 +28998 54596 0.5530 +28998 54663 0.5750 +28998 54788 0.4420 +28998 54948 0.9980 +28998 54968 0.5120 +28998 54998 0.8280 +28998 55037 0.8710 +28998 55052 0.9990 +28998 55156 0.6070 +28998 55157 0.5270 +28998 55168 0.9930 +28998 55173 0.9980 +28998 55176 0.8550 +28998 55178 0.9810 +28998 55272 0.8920 +28998 55299 0.6300 +28998 55316 0.8360 +28998 55324 0.5400 +28998 55341 0.5370 +28998 55591 0.6610 +28998 55651 0.6890 +28998 55699 0.4820 +28998 55703 0.7510 +28998 55759 0.6660 +28998 55794 0.9140 +28998 55893 0.4850 +28998 55967 0.6430 +28998 56474 0.4750 +28998 56479 0.4570 +28998 56648 0.8340 +28998 56731 0.4850 +28998 56893 0.5020 +28998 56943 0.4010 +28998 56945 0.9330 +28998 56965 0.5930 +28998 56990 0.4360 +28998 57038 0.6150 +28998 57129 0.9990 +28998 57470 0.4730 +28998 57471 0.4810 +28998 57609 0.5650 +28998 58505 0.4550 +28998 60488 0.9950 +28998 60558 0.7830 +28998 63875 0.9990 +28998 63931 0.9980 +28998 64146 0.7970 +28998 64318 0.6090 +28998 64374 0.7770 +28998 64432 0.9860 +28998 64798 0.4100 +28998 64928 0.9370 +28998 64949 0.8770 +28998 64951 0.8850 +28998 64960 0.9980 +28998 64963 0.9980 +28998 64965 0.9990 +28998 64968 0.9980 +28998 64969 0.9980 +28998 64975 0.9990 +28998 64976 0.9970 +28998 64978 0.9870 +28998 64979 0.9990 +28998 64981 0.9970 +28998 64983 0.9990 +28998 65003 0.9990 +28998 65005 0.9990 +28998 65008 0.9940 +28998 65080 0.9990 +28998 65121 0.6490 +28998 65122 0.6490 +28998 65993 0.9410 +28998 78988 0.9190 +28998 79009 0.4030 +28998 79075 0.4050 +28998 79165 0.4600 +28998 79590 0.9990 +28998 79631 0.8060 +28998 79668 0.6900 +28998 79728 0.8540 +28998 79848 0.4790 +28998 79922 0.6100 +28998 79962 0.4370 +28998 79982 0.4480 +28998 80124 0.4520 +28998 80135 0.6450 +28998 80146 0.4390 +28998 80221 0.9370 +28998 80222 0.4160 +28998 80270 0.4380 +28998 81031 0.4010 +28998 81892 0.4910 +28998 83448 0.8120 +28998 83940 0.4770 +28998 84154 0.5510 +28998 84172 0.7570 +28998 84273 0.4430 +28998 84311 0.9700 +28998 84340 0.9280 +28998 84365 0.5810 +28998 84545 0.9980 +28998 84549 0.5500 +28998 84705 0.9190 +28998 84881 0.6360 +28998 84993 0.4570 +28998 85476 0.9670 +28998 85865 0.8980 +28998 90313 0.6030 +28998 90441 0.4580 +28998 90480 0.9700 +28998 90624 0.6730 +28998 91574 0.9080 +28998 91875 0.4750 +28998 92140 0.4500 +28998 92170 0.9800 +28998 92196 0.5180 +28998 92399 0.9880 +28998 93107 0.4570 +28998 93517 0.4380 +28998 93550 0.4480 +28998 93974 0.4450 +28998 96459 0.4370 +28998 113000 0.6020 +28998 114781 0.6610 +28998 114908 0.4730 +28998 114987 0.8300 +28998 115416 0.9910 +28998 116540 0.9500 +28998 116541 0.9660 +28998 116832 0.7800 +28998 117246 0.4180 +28998 118487 0.9580 +28998 122704 0.9620 +28998 123283 0.4180 +28998 124454 0.7180 +28998 124995 0.9950 +28998 126402 0.9270 +28998 128308 0.9700 +28998 130916 0.8320 +28998 131118 0.4490 +28998 133015 0.4290 +28998 135138 0.4290 +28998 140032 0.8050 +28998 140432 0.4370 +28998 140801 0.7730 +28998 142940 0.4890 +28998 143244 0.8270 +28998 143630 0.4480 +28998 147011 0.4850 +28998 148022 0.5370 +28998 149478 0.4150 +28998 150353 0.4370 +28998 154288 0.4850 +28998 157310 0.6260 +28998 164153 0.4480 +28998 165721 0.4370 +28998 169522 0.4570 +28998 170850 0.4570 +28998 171425 0.4370 +28998 200916 0.7770 +28998 201595 0.5490 +28998 202052 0.4370 +28998 219402 0.5790 +28998 219927 0.9990 +28998 253827 0.4190 +28998 254268 0.4570 +28998 283518 0.4570 +28998 284106 0.5860 +28998 284418 0.4600 +28998 285126 0.4370 +28998 285190 0.4600 +28998 285282 0.4460 +28998 285367 0.6720 +28998 285755 0.4600 +28998 285855 0.8090 +28998 342538 0.4360 +28998 343068 0.6490 +28998 343070 0.6490 +28998 345051 0.8570 +28998 345630 0.6170 +28998 347487 0.7740 +28998 353376 0.5370 +28998 374407 0.4370 +28998 374659 0.8220 +28998 387129 0.8050 +28998 387338 0.8740 +28998 387712 0.4670 +28998 390999 0.6490 +28998 391002 0.6490 +28998 400735 0.6490 +28998 400736 0.6490 +28998 440560 0.6490 +28998 440561 0.6490 +28998 441873 0.6490 +28998 619279 0.4850 +28998 641776 0.7310 +28998 642987 0.4850 +28998 643909 0.7310 +28998 644591 0.4600 +28998 645051 0.5930 +28998 645073 0.5930 +28998 645142 0.4600 +28998 645359 0.6490 +28998 653505 0.4610 +28998 653598 0.4600 +28998 653619 0.6490 +28998 654364 0.5480 +28998 727851 0.4600 +28998 728524 0.7310 +28998 728945 0.4600 +28998 729396 0.5930 +28998 729422 0.5930 +28998 729428 0.5930 +28998 729431 0.5930 +28998 729442 0.5930 +28998 729447 0.5930 +28998 729528 0.6490 +28998 729857 0.4600 +28998 730262 0.4600 +28998 100008586 0.5930 +28998 100128731 0.4200 +28998 100130890 0.7750 +28998 100131187 0.7770 +28998 100132399 0.5930 +28998 100287482 0.7740 +28998 100302736 0.5370 +28998 100505478 0.8050 +28998 100526842 0.8350 +28998 100529097 0.8070 +28998 100529239 0.8640 +28998 100996746 0.7310 +28998 101929983 0.6490 +28998 102724473 0.5930 +28998 105180390 0.7310 +28998 105180391 0.7310 +28998 105371242 0.4600 +28998 114483834 0.5370 +28998 127898561 0.8170 +28999 30819 0.4450 +28999 50512 0.8430 +28999 53834 0.4030 +28999 54541 0.5000 +28999 84676 0.4430 +28999 114907 0.4820 +28999 348807 0.8610 +29015 51096 0.4180 +29015 54751 0.4160 +29015 83986 0.4100 +29015 284443 0.4430 +29028 29089 0.4860 +29028 29117 0.5180 +29028 29127 0.6980 +29028 29128 0.5750 +29028 29980 0.4660 +29028 29994 0.5410 +29028 51053 0.5300 +29028 51203 0.7240 +29028 51514 0.5090 +29028 51659 0.4620 +29028 54443 0.5480 +29028 54892 0.5020 +29028 54962 0.4080 +29028 55010 0.4870 +29028 55093 0.6140 +29028 55143 0.6430 +29028 55148 0.4370 +29028 55165 0.7150 +29028 55215 0.5120 +29028 55355 0.5170 +29028 55388 0.5790 +29028 55632 0.4900 +29028 55635 0.5880 +29028 55723 0.4770 +29028 55789 0.5120 +29028 55839 0.4700 +29028 55969 0.4250 +29028 56061 0.4070 +29028 56992 0.6260 +29028 57082 0.4480 +29028 60625 0.4410 +29028 63967 0.5730 +29028 63979 0.4090 +29028 64151 0.6120 +29028 79075 0.6740 +29028 79139 0.5220 +29028 79682 0.4770 +29028 79733 0.5770 +29028 79915 0.4790 +29028 79944 0.4890 +29028 79968 0.7390 +29028 81930 0.4450 +29028 83461 0.4220 +29028 83540 0.6460 +29028 83879 0.6350 +29028 84057 0.4220 +29028 84985 0.4040 +29028 89872 0.4500 +29028 93594 0.5990 +29028 113130 0.4440 +29028 114803 0.5960 +29028 121504 0.9150 +29028 134510 0.4100 +29028 150468 0.4240 +29028 157313 0.5090 +29028 157769 0.4040 +29028 259266 0.5810 +29028 283431 0.5140 +29028 554313 0.9150 +29028 100509620 0.4500 +29028 100652824 0.4110 +29035 54107 0.4870 +29035 56655 0.4540 +29035 79091 0.4800 +29035 79621 0.4570 +29035 79836 0.4150 +29035 84153 0.4710 +29035 112937 0.4140 +29057 55285 0.4790 +29057 79008 0.4040 +29057 83862 0.4280 +29057 84187 0.4630 +29058 51102 0.4530 +29058 51142 0.7070 +29058 51522 0.4070 +29058 54832 0.6930 +29058 55737 0.6510 +29058 65018 0.5290 +29058 79608 0.5830 +29058 79971 0.4540 +29058 84286 0.5630 +29058 84869 0.4240 +29058 116442 0.6220 +29058 120892 0.5920 +29058 153364 0.4910 +29058 286410 0.4230 +29058 340146 0.4430 +29058 391356 0.6190 +29058 440574 0.4330 +29062 29919 0.4480 +29062 51622 0.6070 +29062 54520 0.4860 +29062 57617 0.5700 +29062 57724 0.4090 +29062 79158 0.4570 +29062 84315 0.5080 +29062 124997 0.9720 +29062 126321 0.4360 +29062 200576 0.4280 +29062 221960 0.6040 +29063 29081 0.9690 +29063 29890 0.6200 +29063 29945 0.7060 +29063 51069 0.6800 +29063 51077 0.4670 +29063 51091 0.4760 +29063 51184 0.6830 +29063 51441 0.5770 +29063 51504 0.7710 +29063 54797 0.5370 +29063 54888 0.4090 +29063 54890 0.6370 +29063 54915 0.5930 +29063 54955 0.5310 +29063 55039 0.4490 +29063 55203 0.4310 +29063 55471 0.4360 +29063 55695 0.4450 +29063 55720 0.4970 +29063 55726 0.5950 +29063 56339 0.8210 +29063 57570 0.4330 +29063 57721 0.9170 +29063 63935 0.5770 +29063 64783 0.8250 +29063 64848 0.6110 +29063 64863 0.5070 +29063 64978 0.6800 +29063 65083 0.7080 +29063 79066 0.9540 +29063 79068 0.5900 +29063 79613 0.5310 +29063 79828 0.4190 +29063 79872 0.6370 +29063 79959 0.4700 +29063 83548 0.6840 +29063 84190 0.4200 +29063 84950 0.6890 +29063 90956 0.4050 +29063 91050 0.4580 +29063 91746 0.5920 +29063 91801 0.4020 +29063 124801 0.9520 +29063 129450 0.4670 +29063 131965 0.4500 +29063 132949 0.8340 +29063 143187 0.4170 +29063 221120 0.4960 +29063 253943 0.5820 +29066 29945 0.4160 +29066 51061 0.4500 +29066 54542 0.4030 +29066 54680 0.6020 +29066 54799 0.4270 +29066 54962 0.4420 +29066 55181 0.4020 +29066 56829 0.4510 +29066 64769 0.5200 +29066 64793 0.4390 +29066 79444 0.6050 +29066 79577 0.4780 +29066 81570 0.4540 +29066 84296 0.4360 +29066 92092 0.4050 +29066 93343 0.5470 +29066 123169 0.5130 +29066 149041 0.4090 +29066 254394 0.4090 +29066 340602 0.5330 +29066 728118 0.5150 +29068 51616 0.4640 +29068 56256 0.4290 +29068 63931 0.5390 +29068 64750 0.4470 +29068 65065 0.4720 +29068 91252 0.4260 +29068 150572 0.6120 +29068 388512 0.4170 +29070 51364 0.4040 +29070 54585 0.4920 +29070 56676 0.4300 +29070 57501 0.6100 +29070 57639 0.5690 +29070 60494 0.5560 +29070 79583 0.4080 +29070 80212 0.4870 +29070 83446 0.4720 +29070 83657 0.4730 +29070 84125 0.5020 +29070 84229 0.6470 +29070 89765 0.5490 +29070 90141 0.4410 +29070 91409 0.4490 +29070 91828 0.4010 +29070 92565 0.4900 +29070 114327 0.4670 +29070 118491 0.5670 +29070 120935 0.4780 +29070 133690 0.4570 +29070 136895 0.5720 +29070 137797 0.5310 +29070 146754 0.4480 +29070 146845 0.5130 +29070 146849 0.4700 +29070 152206 0.4070 +29070 154313 0.7070 +29070 158067 0.4440 +29070 164592 0.4860 +29070 199223 0.4760 +29070 200162 0.5430 +29070 202243 0.5420 +29070 255119 0.5070 +29070 257236 0.6020 +29070 283152 0.6310 +29070 339829 0.5330 +29070 341032 0.4180 +29070 441054 0.5480 +29070 654502 0.4340 +29071 50614 0.7460 +29071 51301 0.9450 +29071 51809 0.7110 +29071 55568 0.7720 +29071 55808 0.9730 +29071 55858 0.4420 +29071 56667 0.5060 +29071 56913 0.9780 +29071 57452 0.7130 +29071 63917 0.8060 +29071 64409 0.7050 +29071 79623 0.5030 +29071 79695 0.8370 +29071 83417 0.6710 +29071 94025 0.5980 +29071 117154 0.4030 +29071 117248 0.7400 +29071 140453 0.4830 +29071 143662 0.4350 +29071 192134 0.9690 +29071 200958 0.4780 +29071 374378 0.7250 +29071 394263 0.4710 +29071 442117 0.6960 +29071 727897 0.4540 +29071 728819 0.9010 +29072 29101 0.4120 +29072 29113 0.4540 +29072 30827 0.5260 +29072 51111 0.6930 +29072 51230 0.4080 +29072 51366 0.6370 +29072 51550 0.4500 +29072 51585 0.5530 +29072 51742 0.6320 +29072 51755 0.7200 +29072 51780 0.4940 +29072 54093 0.4560 +29072 54145 0.4310 +29072 54464 0.5170 +29072 54617 0.4350 +29072 54623 0.4900 +29072 54737 0.4640 +29072 54790 0.5730 +29072 54821 0.4570 +29072 54847 0.4280 +29072 54882 0.4100 +29072 54904 0.6080 +29072 54952 0.7490 +29072 55089 0.4140 +29072 55170 0.4100 +29072 55193 0.9060 +29072 55209 0.5990 +29072 55252 0.4280 +29072 55294 0.4720 +29072 55636 0.5010 +29072 55660 0.8230 +29072 55671 0.4270 +29072 55677 0.9520 +29072 55693 0.4030 +29072 55723 0.4710 +29072 55818 0.4460 +29072 55869 0.8000 +29072 55870 0.8150 +29072 55871 0.5010 +29072 55904 0.6600 +29072 56254 0.8800 +29072 56950 0.6730 +29072 56979 0.4880 +29072 57111 0.4710 +29072 57167 0.6910 +29072 57332 0.4180 +29072 57448 0.4660 +29072 57492 0.5290 +29072 57634 0.6610 +29072 57649 0.5980 +29072 57661 0.4190 +29072 57680 0.6810 +29072 58508 0.6310 +29072 64324 0.6410 +29072 64754 0.5670 +29072 79577 0.6280 +29072 79723 0.4060 +29072 79823 0.7870 +29072 79918 0.4950 +29072 79923 0.5250 +29072 80129 0.4750 +29072 80205 0.4240 +29072 80335 0.7760 +29072 80853 0.5460 +29072 80854 0.7130 +29072 84181 0.4860 +29072 84193 0.6440 +29072 84295 0.4290 +29072 84444 0.8210 +29072 84656 0.5040 +29072 84661 0.7030 +29072 84678 0.6580 +29072 84787 0.6520 +29072 85236 0.4480 +29072 90853 0.5750 +29072 92906 0.9300 +29072 94239 0.6240 +29072 113177 0.4780 +29072 114826 0.4310 +29072 121504 0.8770 +29072 123169 0.6680 +29072 124773 0.4540 +29072 126961 0.9550 +29072 128312 0.4310 +29072 146198 0.4030 +29072 148479 0.4010 +29072 150472 0.4970 +29072 150572 0.4640 +29072 158983 0.4330 +29072 171023 0.5640 +29072 196528 0.6080 +29072 220869 0.5490 +29072 221037 0.4990 +29072 221120 0.4600 +29072 221656 0.4730 +29072 255626 0.4340 +29072 286436 0.4310 +29072 317781 0.4570 +29072 333932 0.9470 +29072 340096 0.5530 +29072 340602 0.4400 +29072 347744 0.7490 +29072 391769 0.5510 +29072 440093 0.8400 +29072 440686 0.9830 +29072 440689 0.4340 +29072 445571 0.5490 +29072 474381 0.4080 +29072 474382 0.4270 +29072 554313 0.8730 +29072 644019 0.5490 +29072 653604 0.9950 +29072 114483833 0.4310 +29074 29088 0.9670 +29074 29093 0.9160 +29074 29960 0.8210 +29074 51021 0.8850 +29074 51023 0.8630 +29074 51069 0.9380 +29074 51073 0.9880 +29074 51081 0.9010 +29074 51116 0.8810 +29074 51250 0.8320 +29074 51253 0.9470 +29074 51258 0.9120 +29074 51263 0.9110 +29074 51264 0.9770 +29074 51318 0.9250 +29074 51373 0.8730 +29074 51642 0.9230 +29074 51649 0.8790 +29074 51650 0.8770 +29074 54148 0.9760 +29074 54460 0.8700 +29074 54516 0.5290 +29074 54534 0.9540 +29074 54948 0.9200 +29074 54998 0.8610 +29074 55037 0.8210 +29074 55052 0.9700 +29074 55168 0.9440 +29074 55173 0.9380 +29074 55178 0.8390 +29074 55651 0.4560 +29074 55794 0.8280 +29074 56945 0.8690 +29074 57129 0.9770 +29074 60488 0.9040 +29074 63875 0.9760 +29074 63931 0.8890 +29074 64432 0.9410 +29074 64928 0.9310 +29074 64949 0.8800 +29074 64951 0.8720 +29074 64960 0.8880 +29074 64963 0.8810 +29074 64965 0.8730 +29074 64968 0.8580 +29074 64969 0.8700 +29074 64975 0.9550 +29074 64976 0.9570 +29074 64978 0.9930 +29074 64979 0.8760 +29074 64981 0.9030 +29074 64983 0.9610 +29074 65003 0.9060 +29074 65005 0.9640 +29074 65008 0.9080 +29074 65080 0.9780 +29074 65993 0.8730 +29074 78988 0.9020 +29074 79590 0.9510 +29074 84311 0.9620 +29074 84340 0.8050 +29074 84545 0.9580 +29074 85476 0.8220 +29074 85865 0.8360 +29074 90480 0.9610 +29074 91574 0.8430 +29074 92170 0.8010 +29074 92399 0.8490 +29074 115416 0.8500 +29074 116540 0.9010 +29074 116541 0.9040 +29074 118487 0.8980 +29074 122704 0.9030 +29074 124995 0.9440 +29074 128308 0.9330 +29074 130916 0.8270 +29074 154197 0.5640 +29074 167555 0.4730 +29074 219402 0.5460 +29074 219927 0.9330 +29074 387338 0.8030 +29074 127898561 0.8110 +29078 51079 0.9990 +29078 51103 0.9880 +29078 51295 0.9480 +29078 51300 0.9990 +29078 54534 0.4520 +29078 54539 0.9150 +29078 54968 0.6430 +29078 55101 0.5260 +29078 55471 0.7400 +29078 55572 0.8620 +29078 55744 0.6490 +29078 55863 0.9190 +29078 55967 0.9410 +29078 56901 0.5180 +29078 56945 0.4060 +29078 57129 0.5330 +29078 79133 0.9530 +29078 79728 0.5340 +29078 80224 0.8510 +29078 81491 0.4550 +29078 81892 0.4010 +29078 84233 0.5040 +29078 90353 0.6920 +29078 91942 0.9870 +29078 114792 0.5340 +29078 126328 0.9320 +29078 131474 0.4400 +29078 137682 0.9260 +29078 150274 0.4090 +29078 253714 0.4340 +29078 284184 0.6020 +29078 374291 0.9990 +29078 100532726 0.5080 +29079 29115 0.4330 +29079 30834 0.4520 +29079 51003 0.9990 +29079 51129 0.4990 +29079 51366 0.4200 +29079 51503 0.6430 +29079 51574 0.4540 +29079 51586 0.9980 +29079 51728 0.4280 +29079 54797 0.9990 +29079 55090 0.9990 +29079 55270 0.4190 +29079 55294 0.5200 +29079 55588 0.9990 +29079 55660 0.4150 +29079 57466 0.4530 +29079 58517 0.4160 +29079 64770 0.6110 +29079 79145 0.4650 +29079 79869 0.4030 +29079 79991 0.9940 +29079 80306 0.9990 +29079 81857 0.9960 +29079 83860 0.8030 +29079 84246 0.9990 +29079 84498 0.5130 +29079 84955 0.6240 +29079 85441 0.5000 +29079 90390 0.9990 +29079 90410 0.4220 +29079 112950 0.9990 +29079 116931 0.9150 +29079 121504 0.8000 +29079 124245 0.4390 +29079 126961 0.8000 +29079 129685 0.8030 +29079 133522 0.9070 +29079 140890 0.4740 +29079 256643 0.5470 +29079 333932 0.8000 +29079 400569 0.9990 +29079 404672 0.8360 +29079 554313 0.8000 +29079 653604 0.8080 +29080 51023 0.4530 +29080 51389 0.4260 +29080 55299 0.4960 +29080 57129 0.4250 +29080 57232 0.4180 +29080 79171 0.4410 +29080 80135 0.4970 +29080 84298 0.8390 +29080 84365 0.4150 +29080 128308 0.4410 +29080 131076 0.4160 +29080 162979 0.4070 +29081 29104 0.6230 +29081 29890 0.5950 +29081 51020 0.7920 +29081 51409 0.4290 +29081 51441 0.5220 +29081 51504 0.9990 +29081 54888 0.4050 +29081 54890 0.5880 +29081 54915 0.5230 +29081 54931 0.4650 +29081 55039 0.6440 +29081 55695 0.4740 +29081 55798 0.4600 +29081 56339 0.8240 +29081 57721 0.7210 +29081 60487 0.5130 +29081 63935 0.5650 +29081 64216 0.4120 +29081 64745 0.5810 +29081 64783 0.7840 +29081 64848 0.5500 +29081 64863 0.6150 +29081 65008 0.4080 +29081 79066 0.9510 +29081 79068 0.5120 +29081 79730 0.4130 +29081 79828 0.5760 +29081 79872 0.6720 +29081 84190 0.5600 +29081 91746 0.5610 +29081 91801 0.4660 +29081 93587 0.4140 +29081 113802 0.4390 +29081 131118 0.4840 +29081 131965 0.4980 +29081 134492 0.4290 +29081 149281 0.4490 +29081 152100 0.4570 +29081 152992 0.5340 +29081 155368 0.5130 +29081 158234 0.4420 +29081 196074 0.6580 +29081 221120 0.4610 +29081 253943 0.5210 +29081 339175 0.4380 +29081 399818 0.5390 +29083 29088 0.4520 +29083 29789 0.4860 +29083 29889 0.6000 +29083 51027 0.4890 +29083 51121 0.6300 +29083 54059 0.4900 +29083 54517 0.7970 +29083 54552 0.5970 +29083 54762 0.5580 +29083 55157 0.4320 +29083 55178 0.9220 +29083 55341 0.6100 +29083 55425 0.4750 +29083 55794 0.7310 +29083 57129 0.9080 +29083 60558 0.4390 +29083 63875 0.9220 +29083 65003 0.9060 +29083 65005 0.4250 +29083 65121 0.4150 +29083 65122 0.4150 +29083 79590 0.9190 +29083 79728 0.8010 +29083 79922 0.7600 +29083 80218 0.4950 +29083 83448 0.7920 +29083 84273 0.7690 +29083 84545 0.8980 +29083 84705 0.9470 +29083 84881 0.7600 +29083 85865 0.7540 +29083 92170 0.9700 +29083 113000 0.6410 +29083 115416 0.9550 +29083 130916 0.4300 +29083 152185 0.5090 +29083 219927 0.9370 +29083 283377 0.4830 +29083 285282 0.4200 +29083 285367 0.7390 +29083 343068 0.4150 +29083 343070 0.4150 +29083 390940 0.4440 +29083 390999 0.4150 +29083 391002 0.4150 +29083 400735 0.4150 +29083 400736 0.4150 +29083 440560 0.4150 +29083 440561 0.4150 +29083 441873 0.4150 +29083 645359 0.4150 +29083 653519 0.5520 +29083 653619 0.4150 +29083 729528 0.4150 +29083 100131801 0.4040 +29083 100303755 0.5390 +29083 101929983 0.4150 +29085 29796 0.4120 +29085 51079 0.7730 +29085 51529 0.4480 +29085 53343 0.4780 +29085 54539 0.5690 +29085 54998 0.5070 +29085 63893 0.4200 +29085 64077 0.7030 +29085 64975 0.6540 +29085 64976 0.4690 +29085 64979 0.4410 +29085 84266 0.4260 +29085 84316 0.4480 +29085 85014 0.5780 +29085 90480 0.4330 +29085 125988 0.4510 +29085 126328 0.6660 +29085 140823 0.5380 +29085 158056 0.4250 +29085 192111 0.5220 +29085 374291 0.7210 +29086 50619 0.7840 +29086 51024 0.5160 +29086 51239 0.5540 +29086 51720 0.9990 +29086 55011 0.4780 +29086 55183 0.5870 +29086 55757 0.4690 +29086 64421 0.5750 +29086 65263 0.4830 +29086 65993 0.5020 +29086 79184 0.9990 +29086 79575 0.6400 +29086 79633 0.4180 +29086 79728 0.4930 +29086 79840 0.4260 +29086 79937 0.4170 +29086 80351 0.8620 +29086 80700 0.4440 +29086 83878 0.4460 +29086 83990 0.4060 +29086 84142 0.9990 +29086 84337 0.5180 +29086 84993 0.4150 +29086 85235 0.5050 +29086 92815 0.5160 +29086 114548 0.4990 +29086 126549 0.6330 +29086 129852 0.4830 +29086 133418 0.5080 +29086 138241 0.6110 +29086 165918 0.6120 +29086 170954 0.4110 +29086 221302 0.4460 +29086 221613 0.5050 +29086 317772 0.5080 +29086 375337 0.4120 +29086 548645 0.6100 +29087 51056 0.6740 +29087 51117 0.4350 +29087 54205 0.7460 +29087 55837 0.4720 +29087 64111 0.7450 +29087 79661 0.4140 +29087 79716 0.6730 +29087 79968 0.7660 +29087 83707 0.4820 +29087 84128 0.4570 +29087 84939 0.5960 +29087 91694 0.4470 +29087 112936 0.5530 +29087 115426 0.4810 +29087 139221 0.5950 +29087 199953 0.4040 +29087 257160 0.4560 +29087 374291 0.6400 +29087 401466 0.4250 +29087 728317 0.5950 +29088 29093 0.9490 +29088 29896 0.4160 +29088 29927 0.6070 +29088 29960 0.8730 +29088 29988 0.4110 +29088 51001 0.4600 +29088 51014 0.5880 +29088 51021 0.9950 +29088 51023 0.8900 +29088 51065 0.5800 +29088 51069 0.9960 +29088 51073 0.9990 +29088 51081 0.9950 +29088 51116 0.9870 +29088 51121 0.7280 +29088 51143 0.4080 +29088 51149 0.5730 +29088 51154 0.6260 +29088 51187 0.4830 +29088 51250 0.8260 +29088 51253 0.9630 +29088 51258 0.9830 +29088 51263 0.9410 +29088 51264 0.9980 +29088 51318 0.9920 +29088 51319 0.5040 +29088 51373 0.9150 +29088 51388 0.5310 +29088 51606 0.4300 +29088 51642 0.8620 +29088 51649 0.8680 +29088 51650 0.8580 +29088 54103 0.4680 +29088 54148 0.9840 +29088 54460 0.8580 +29088 54492 0.4870 +29088 54516 0.5930 +29088 54517 0.4770 +29088 54534 0.9860 +29088 54948 0.9790 +29088 54998 0.8550 +29088 55037 0.8410 +29088 55052 0.9690 +29088 55168 0.9630 +29088 55173 0.9580 +29088 55176 0.6040 +29088 55178 0.8760 +29088 55272 0.6460 +29088 55299 0.4620 +29088 55316 0.5870 +29088 55591 0.4110 +29088 55651 0.6300 +29088 55703 0.5720 +29088 55759 0.5030 +29088 55794 0.8450 +29088 56648 0.5100 +29088 56945 0.8670 +29088 57129 0.9980 +29088 60488 0.9400 +29088 63875 0.9960 +29088 63931 0.9930 +29088 64146 0.4400 +29088 64318 0.4180 +29088 64374 0.5480 +29088 64432 0.8930 +29088 64928 0.9190 +29088 64949 0.8590 +29088 64951 0.8520 +29088 64960 0.9950 +29088 64963 0.9320 +29088 64965 0.9950 +29088 64968 0.9430 +29088 64969 0.9960 +29088 64975 0.9610 +29088 64976 0.9410 +29088 64978 0.9880 +29088 64979 0.9950 +29088 64981 0.9890 +29088 64983 0.9630 +29088 65003 0.9780 +29088 65005 0.9910 +29088 65008 0.9620 +29088 65080 0.9440 +29088 65993 0.8860 +29088 78988 0.9550 +29088 79590 0.9440 +29088 79631 0.5690 +29088 79922 0.4510 +29088 80145 0.4540 +29088 80221 0.4090 +29088 81031 0.4110 +29088 84154 0.5290 +29088 84172 0.5740 +29088 84311 0.9760 +29088 84340 0.8570 +29088 84365 0.6230 +29088 84545 0.9920 +29088 84705 0.4470 +29088 84881 0.4710 +29088 84934 0.4810 +29088 85476 0.9150 +29088 85865 0.8460 +29088 90313 0.4740 +29088 90480 0.9840 +29088 91574 0.8700 +29088 92170 0.8670 +29088 92399 0.9260 +29088 114134 0.4110 +29088 114987 0.5470 +29088 115416 0.9090 +29088 116540 0.8680 +29088 116541 0.8940 +29088 116832 0.5240 +29088 118487 0.8730 +29088 122704 0.9030 +29088 124454 0.5260 +29088 124995 0.9700 +29088 126402 0.5810 +29088 128308 0.8770 +29088 130916 0.8110 +29088 140032 0.5430 +29088 140801 0.5460 +29088 143244 0.5100 +29088 148022 0.5790 +29088 154091 0.4110 +29088 200916 0.6060 +29088 219402 0.5330 +29088 219927 0.9700 +29088 285855 0.7320 +29088 347487 0.5390 +29088 353376 0.5780 +29088 374659 0.4430 +29088 387129 0.5600 +29088 387338 0.8300 +29088 641776 0.4930 +29088 643909 0.4930 +29088 645051 0.4480 +29088 645073 0.4480 +29088 653247 0.4110 +29088 654364 0.4370 +29088 728524 0.4930 +29088 729396 0.4480 +29088 729422 0.4480 +29088 729428 0.4480 +29088 729431 0.4480 +29088 729442 0.4480 +29088 729447 0.4480 +29088 100008586 0.4480 +29088 100132399 0.4480 +29088 100287482 0.5390 +29088 100302736 0.5780 +29088 100505478 0.5600 +29088 100526842 0.5800 +29088 100529097 0.5520 +29088 100529239 0.5690 +29088 100996746 0.4930 +29088 102724473 0.4480 +29088 105180390 0.4930 +29088 105180391 0.4930 +29088 127898561 0.8170 +29089 29127 0.5160 +29089 29128 0.7090 +29089 51053 0.6930 +29089 51203 0.6500 +29089 51455 0.4160 +29089 51514 0.8120 +29089 51529 0.6320 +29089 51645 0.4210 +29089 51659 0.5770 +29089 54443 0.6530 +29089 54478 0.4150 +29089 54821 0.4330 +29089 55008 0.4400 +29089 55010 0.4270 +29089 55072 0.4640 +29089 55120 0.9990 +29089 55143 0.6870 +29089 55159 0.6540 +29089 55165 0.7680 +29089 55215 0.9970 +29089 55236 0.7020 +29089 55284 0.6970 +29089 55355 0.4790 +29089 55585 0.4560 +29089 55611 0.4550 +29089 55635 0.4660 +29089 55723 0.4920 +29089 55732 0.4400 +29089 55777 0.4510 +29089 55789 0.7060 +29089 55839 0.5720 +29089 56254 0.4460 +29089 56852 0.6800 +29089 56992 0.5640 +29089 57405 0.5420 +29089 57599 0.6000 +29089 57697 0.9710 +29089 64105 0.4190 +29089 64151 0.5740 +29089 64858 0.6260 +29089 64943 0.4930 +29089 64946 0.4050 +29089 79019 0.4510 +29089 79075 0.5000 +29089 79682 0.5260 +29089 79728 0.6260 +29089 79801 0.4200 +29089 80010 0.4850 +29089 80198 0.6570 +29089 80233 0.9950 +29089 81610 0.6140 +29089 81620 0.4010 +29089 81930 0.4940 +29089 83461 0.5810 +29089 83540 0.9010 +29089 83879 0.5270 +29089 83990 0.7420 +29089 84057 0.6630 +29089 84126 0.6030 +29089 84464 0.8530 +29089 91442 0.9700 +29089 92912 0.4050 +29089 112611 0.4250 +29089 113115 0.4270 +29089 113130 0.8230 +29089 116028 0.6940 +29089 133482 0.4830 +29089 146956 0.7130 +29089 150468 0.5200 +29089 157313 0.4700 +29089 160140 0.4830 +29089 197131 0.5590 +29089 197342 0.5880 +29089 199990 0.8700 +29089 201254 0.9060 +29089 221150 0.5330 +29089 259266 0.8270 +29089 378708 0.8990 +29089 387103 0.6670 +29089 387522 0.4390 +29089 494470 0.4350 +29089 548593 0.6530 +29090 29103 0.8100 +29090 29928 0.8340 +29090 51025 0.9480 +29090 51161 0.4180 +29090 51241 0.4490 +29090 51263 0.4410 +29090 51287 0.4190 +29090 51531 0.4450 +29090 51650 0.4040 +29090 51808 0.4530 +29090 54543 0.7410 +29090 54902 0.4720 +29090 55173 0.6320 +29090 55239 0.6300 +29090 55486 0.4820 +29090 55631 0.4100 +29090 55744 0.7540 +29090 56945 0.7830 +29090 56993 0.9640 +29090 58190 0.4460 +29090 66005 0.4440 +29090 79035 0.4080 +29090 79763 0.4550 +29090 79768 0.5010 +29090 79774 0.4540 +29090 80273 0.7860 +29090 84134 0.4930 +29090 84284 0.4220 +29090 84365 0.4670 +29090 84987 0.4940 +29090 90550 0.4430 +29090 90580 0.5290 +29090 91419 0.4140 +29090 91977 0.4380 +29090 92609 0.9990 +29090 113444 0.4720 +29090 114789 0.4500 +29090 131076 0.5250 +29090 131118 0.9640 +29090 131474 0.7010 +29090 134266 0.7280 +29090 134510 0.4090 +29090 140823 0.9170 +29090 150274 0.5780 +29090 197257 0.5000 +29090 201456 0.4920 +29090 221154 0.4380 +29090 284323 0.4910 +29090 285521 0.5960 +29090 345778 0.4380 +29090 389203 0.4680 +29090 401505 0.6410 +29090 440574 0.4450 +29090 100188893 0.5920 +29090 100287932 0.9930 +29091 51310 0.8500 +29091 54536 0.6760 +29091 55763 0.6710 +29091 55770 0.6650 +29091 56163 0.5040 +29091 56948 0.5120 +29091 57172 0.4250 +29091 57523 0.5180 +29091 60412 0.7240 +29091 63876 0.4100 +29091 91828 0.5760 +29091 94032 0.4040 +29091 132001 0.4230 +29091 134957 0.9430 +29091 149371 0.6810 +29091 253714 0.4210 +29091 283677 0.4260 +29091 283849 0.5760 +29091 337876 0.4030 +29091 643866 0.5250 +29091 644145 0.6430 +29093 29102 0.5890 +29093 29889 0.4590 +29093 29927 0.8810 +29093 29960 0.8800 +29093 29997 0.5250 +29093 50808 0.4520 +29093 50814 0.4420 +29093 51014 0.5720 +29093 51021 0.9980 +29093 51023 0.9800 +29093 51042 0.4120 +29093 51065 0.8130 +29093 51068 0.5300 +29093 51069 0.9960 +29093 51073 0.9990 +29093 51081 0.9900 +29093 51087 0.4050 +29093 51116 0.9880 +29093 51119 0.5660 +29093 51121 0.9010 +29093 51149 0.8270 +29093 51154 0.8930 +29093 51187 0.8430 +29093 51224 0.4060 +29093 51241 0.4960 +29093 51250 0.8440 +29093 51253 0.9480 +29093 51258 0.9200 +29093 51263 0.9910 +29093 51264 0.9990 +29093 51318 0.8770 +29093 51319 0.6820 +29093 51373 0.8760 +29093 51388 0.6600 +29093 51491 0.4030 +29093 51520 0.4490 +29093 51574 0.4210 +29093 51642 0.8790 +29093 51649 0.8720 +29093 51650 0.8940 +29093 51727 0.4520 +29093 54148 0.9920 +29093 54460 0.8600 +29093 54516 0.6040 +29093 54534 0.9690 +29093 54552 0.4550 +29093 54663 0.6560 +29093 54788 0.4150 +29093 54948 0.9980 +29093 54965 0.4780 +29093 54998 0.8440 +29093 55037 0.8250 +29093 55052 0.9990 +29093 55143 0.4850 +29093 55168 0.9760 +29093 55173 0.9970 +29093 55176 0.8800 +29093 55178 0.8470 +29093 55272 0.8930 +29093 55299 0.6630 +29093 55316 0.8520 +29093 55324 0.5350 +29093 55341 0.4520 +29093 55591 0.7150 +29093 55651 0.7340 +29093 55703 0.8040 +29093 55759 0.5930 +29093 55794 0.8430 +29093 56479 0.5030 +29093 56648 0.8110 +29093 56945 0.9220 +29093 56965 0.6840 +29093 57129 0.9990 +29093 57471 0.4380 +29093 58505 0.4290 +29093 59286 0.5000 +29093 60488 0.9950 +29093 60558 0.6700 +29093 63875 0.9990 +29093 63931 0.9980 +29093 64146 0.7990 +29093 64318 0.6280 +29093 64374 0.7770 +29093 64432 0.9710 +29093 64928 0.8980 +29093 64949 0.8470 +29093 64951 0.8630 +29093 64960 0.9980 +29093 64963 0.9980 +29093 64965 0.9990 +29093 64968 0.9990 +29093 64969 0.9970 +29093 64975 0.9970 +29093 64976 0.9900 +29093 64978 0.9580 +29093 64979 0.9990 +29093 64981 0.9950 +29093 64983 0.9990 +29093 65003 0.9970 +29093 65005 0.9980 +29093 65008 0.9750 +29093 65080 0.9960 +29093 65121 0.6550 +29093 65122 0.6550 +29093 65993 0.8660 +29093 78988 0.8620 +29093 79145 0.4500 +29093 79590 0.9930 +29093 79631 0.8070 +29093 79668 0.6840 +29093 79982 0.4100 +29093 80135 0.8090 +29093 80146 0.4310 +29093 80222 0.4790 +29093 80270 0.4310 +29093 81892 0.6050 +29093 84154 0.6140 +29093 84172 0.8010 +29093 84273 0.4240 +29093 84311 0.9560 +29093 84340 0.8950 +29093 84365 0.6940 +29093 84545 0.9960 +29093 84549 0.7580 +29093 85476 0.9620 +29093 85865 0.8720 +29093 90313 0.5480 +29093 90441 0.4050 +29093 90480 0.9640 +29093 90624 0.7030 +29093 91574 0.9050 +29093 92170 0.8810 +29093 92196 0.5180 +29093 92399 0.9760 +29093 93107 0.5030 +29093 93517 0.4310 +29093 114781 0.6980 +29093 114987 0.7600 +29093 115416 0.9740 +29093 116540 0.9180 +29093 116541 0.9250 +29093 116832 0.6720 +29093 117246 0.4040 +29093 118487 0.8760 +29093 122481 0.4470 +29093 122622 0.4400 +29093 122704 0.9140 +29093 123283 0.4740 +29093 124359 0.4260 +29093 124454 0.7540 +29093 124995 0.9930 +29093 126402 0.9270 +29093 128308 0.8900 +29093 130916 0.8180 +29093 131118 0.4670 +29093 137994 0.4400 +29093 140032 0.8270 +29093 140801 0.7750 +29093 143244 0.8110 +29093 148022 0.5680 +29093 149478 0.4700 +29093 157310 0.7810 +29093 158067 0.4470 +29093 169522 0.5030 +29093 170850 0.5030 +29093 200916 0.7300 +29093 201595 0.5320 +29093 202052 0.4080 +29093 219402 0.5640 +29093 219927 0.9990 +29093 221264 0.4470 +29093 253175 0.4260 +29093 254268 0.5380 +29093 283518 0.5030 +29093 285598 0.4080 +29093 285855 0.8140 +29093 286053 0.4030 +29093 339448 0.5990 +29093 342538 0.5000 +29093 343068 0.6550 +29093 343070 0.6550 +29093 345051 0.8650 +29093 347487 0.7700 +29093 353376 0.5680 +29093 374659 0.7760 +29093 387129 0.8110 +29093 387338 0.8760 +29093 387712 0.4030 +29093 390999 0.6550 +29093 391002 0.6550 +29093 400735 0.6550 +29093 400736 0.6550 +29093 401505 0.5050 +29093 440560 0.6550 +29093 440561 0.6550 +29093 440567 0.5400 +29093 441873 0.6550 +29093 493753 0.4120 +29093 641776 0.7310 +29093 643909 0.7310 +29093 645051 0.5960 +29093 645073 0.5960 +29093 645359 0.6550 +29093 653619 0.6550 +29093 728524 0.7310 +29093 729396 0.5960 +29093 729422 0.5960 +29093 729428 0.5960 +29093 729431 0.5960 +29093 729442 0.5960 +29093 729447 0.5960 +29093 729528 0.6550 +29093 100008586 0.5960 +29093 100128731 0.4360 +29093 100132399 0.5960 +29093 100287482 0.7700 +29093 100302736 0.5680 +29093 100505478 0.8050 +29093 100529097 0.7990 +29093 100529239 0.7430 +29093 100996746 0.7310 +29093 101929983 0.6550 +29093 102724473 0.5960 +29093 105180390 0.7310 +29093 105180391 0.7310 +29093 114483834 0.5360 +29093 127898561 0.8170 +29094 64403 0.4610 +29094 84886 0.6040 +29094 220965 0.4470 +29095 29956 0.4230 +29095 51114 0.6120 +29095 51125 0.5620 +29095 51693 0.4500 +29095 55304 0.9440 +29095 58538 0.4160 +29095 79837 0.4270 +29095 83862 0.4960 +29095 84324 0.5300 +29095 94101 0.5860 +29095 94103 0.5720 +29095 127069 0.5710 +29095 127077 0.4800 +29095 138881 0.5710 +29095 153339 0.4560 +29095 165679 0.7350 +29095 171546 0.8250 +29095 219956 0.5710 +29095 340980 0.4790 +29095 347168 0.4760 +29095 390201 0.5210 +29095 401647 0.6860 +29095 402317 0.4450 +29097 29763 0.4050 +29097 51014 0.4270 +29097 54732 0.5850 +29097 55281 0.4370 +29097 59283 0.9210 +29097 59284 0.5550 +29097 64083 0.4760 +29097 64689 0.4340 +29097 79953 0.6240 +29097 79971 0.4660 +29097 81831 0.5150 +29097 81832 0.4570 +29097 84618 0.8360 +29097 93343 0.4680 +29097 146395 0.7220 +29097 149111 0.4280 +29097 221710 0.4640 +29097 388336 0.4180 +29097 644070 0.4980 +29097 729993 0.8130 +29098 54795 0.6210 +29098 55800 0.7700 +29098 83752 0.4020 +29098 137868 0.4200 +29098 283383 0.8100 +29098 376132 0.4800 +29098 387694 0.4280 +29098 401251 0.4220 +29099 50717 0.5090 +29099 50813 0.4350 +29099 51019 0.4110 +29099 51088 0.4990 +29099 51122 0.9740 +29099 51138 0.4600 +29099 51397 0.9760 +29099 51514 0.4990 +29099 51665 0.5270 +29099 51666 0.4990 +29099 51676 0.4990 +29099 51699 0.9260 +29099 53339 0.4990 +29099 54039 0.4330 +29099 54165 0.5210 +29099 54520 0.9640 +29099 54876 0.5040 +29099 54939 0.9760 +29099 54951 0.9550 +29099 55175 0.4990 +29099 55208 0.4990 +29099 55346 0.5200 +29099 55527 0.5040 +29099 55737 0.5200 +29099 55827 0.5040 +29099 55832 0.5180 +29099 55884 0.5040 +29099 55958 0.5200 +29099 56929 0.4990 +29099 56995 0.4990 +29099 57020 0.6920 +29099 57542 0.4990 +29099 60487 0.4920 +29099 64326 0.4990 +29099 64344 0.4990 +29099 64410 0.4990 +29099 64708 0.4360 +29099 64963 0.4470 +29099 65083 0.4040 +29099 79016 0.5130 +29099 79269 0.5040 +29099 79594 0.4280 +29099 79754 0.5010 +29099 80067 0.4990 +29099 80176 0.4990 +29099 80344 0.5010 +29099 84078 0.4990 +29099 84259 0.5040 +29099 84541 0.4990 +29099 84727 0.4990 +29099 84861 0.4990 +29099 89890 0.5040 +29099 90135 0.4990 +29099 90293 0.4990 +29099 90864 0.4990 +29099 92369 0.4990 +29099 92591 0.5170 +29099 93233 0.4490 +29099 118812 0.4540 +29099 122416 0.4990 +29099 122769 0.5040 +29099 123879 0.4990 +29099 127247 0.4990 +29099 136371 0.5170 +29099 140456 0.4990 +29099 140458 0.4990 +29099 140459 0.5130 +29099 140460 0.4990 +29099 140461 0.5290 +29099 140462 0.4990 +29099 140739 0.5260 +29099 140825 0.4990 +29099 142685 0.4990 +29099 142686 0.4990 +29099 142689 0.4990 +29099 148252 0.4950 +29099 149951 0.8660 +29099 150684 0.9770 +29099 154043 0.6020 +29099 154881 0.4990 +29099 162239 0.4550 +29099 170622 0.9990 +29099 200845 0.5040 +29099 390594 0.4990 +29099 401036 0.5170 +29099 404636 0.8530 +29099 441933 0.6100 +29100 29927 0.5270 +29100 51398 0.7740 +29100 51608 0.4930 +29100 54906 0.4370 +29100 55336 0.6160 +29100 57003 0.4440 +29100 57082 0.4120 +29100 57142 0.7220 +29100 57705 0.4520 +29100 59286 0.4740 +29100 79065 0.8400 +29100 79171 0.4920 +29100 83460 0.4340 +29100 84336 0.5230 +29100 92840 0.4200 +29100 126402 0.4490 +29100 219402 0.4070 +29100 219738 0.4230 +29100 285973 0.8400 +29100 338657 0.4180 +29100 653319 0.4350 +29100 100132015 0.4480 +29101 29894 0.9250 +29101 51234 0.4760 +29101 51574 0.4870 +29101 51585 0.9740 +29101 51593 0.4760 +29101 51659 0.6910 +29101 51692 0.9850 +29101 51755 0.4790 +29101 51808 0.5120 +29101 53981 0.9650 +29101 54973 0.7470 +29101 55174 0.5600 +29101 55190 0.4620 +29101 55197 0.6610 +29101 55339 0.9710 +29101 55611 0.7780 +29101 55656 0.5160 +29101 55726 0.5140 +29101 55756 0.7190 +29101 56903 0.6620 +29101 57117 0.5890 +29101 57466 0.4220 +29101 57508 0.4320 +29101 57710 0.4750 +29101 58190 0.4660 +29101 58490 0.6510 +29101 64859 0.4560 +29101 64895 0.6520 +29101 65123 0.5470 +29101 79035 0.4920 +29101 79084 0.4970 +29101 79577 0.4050 +29101 79664 0.4110 +29101 79869 0.6990 +29101 79871 0.8820 +29101 80237 0.4260 +29101 80335 0.9980 +29101 80789 0.5620 +29101 81556 0.5950 +29101 81608 0.9110 +29101 84524 0.6080 +29101 92105 0.5200 +29101 129685 0.4330 +29101 136157 0.5460 +29101 143506 0.5460 +29101 196120 0.5460 +29101 221895 0.5130 +29101 376940 0.4050 +29101 390031 0.5460 +29101 390033 0.5460 +29101 441584 0.5460 +29101 642489 0.5010 +29101 642843 0.7680 +29102 50628 0.5640 +29102 51021 0.8220 +29102 51023 0.5110 +29102 51069 0.5400 +29102 51073 0.5400 +29102 51081 0.5700 +29102 51116 0.5270 +29102 51143 0.6320 +29102 51149 0.6110 +29102 51163 0.6490 +29102 51263 0.5630 +29102 51264 0.8340 +29102 51367 0.7370 +29102 51593 0.8840 +29102 51602 0.4360 +29102 51692 0.4750 +29102 54059 0.5010 +29102 54464 0.7940 +29102 54487 0.9990 +29102 54555 0.5060 +29102 54606 0.5570 +29102 54847 0.4710 +29102 54888 0.4860 +29102 54913 0.7290 +29102 54931 0.6030 +29102 54948 0.5030 +29102 55052 0.5750 +29102 55124 0.4570 +29102 55131 0.4060 +29102 55157 0.4760 +29102 55168 0.5060 +29102 55173 0.6250 +29102 55226 0.4880 +29102 55272 0.6160 +29102 55316 0.5330 +29102 55520 0.4140 +29102 55584 0.4200 +29102 56052 0.4480 +29102 56339 0.4150 +29102 56903 0.5960 +29102 57062 0.4750 +29102 57109 0.4400 +29102 57129 0.7790 +29102 57510 0.9460 +29102 57634 0.4830 +29102 60488 0.7870 +29102 60528 0.5120 +29102 60558 0.4070 +29102 63875 0.8340 +29102 63931 0.5010 +29102 64135 0.4130 +29102 64146 0.4700 +29102 64374 0.4720 +29102 64432 0.6640 +29102 64852 0.5480 +29102 64895 0.6000 +29102 64960 0.6170 +29102 64963 0.5790 +29102 64965 0.8730 +29102 64968 0.8440 +29102 64969 0.6070 +29102 64975 0.7700 +29102 64976 0.7960 +29102 64978 0.5400 +29102 64979 0.7850 +29102 64981 0.7850 +29102 64983 0.8200 +29102 65003 0.5290 +29102 79665 0.4140 +29102 79670 0.5850 +29102 79727 0.7950 +29102 79753 0.9280 +29102 79897 0.7250 +29102 79923 0.9600 +29102 80331 0.4780 +29102 80746 0.5690 +29102 81887 0.4170 +29102 83641 0.4970 +29102 84545 0.8010 +29102 87178 0.6100 +29102 90313 0.5240 +29102 90459 0.6480 +29102 90624 0.4550 +29102 92399 0.5640 +29102 93649 0.4920 +29102 113802 0.6350 +29102 114781 0.4490 +29102 116541 0.5230 +29102 117246 0.5270 +29102 124359 0.5820 +29102 124995 0.5770 +29102 126402 0.5670 +29102 129563 0.5870 +29102 131405 0.4410 +29102 138716 0.5560 +29102 140801 0.4720 +29102 143689 0.8520 +29102 149478 0.4380 +29102 154197 0.4060 +29102 157310 0.5390 +29102 167153 0.5100 +29102 167227 0.4010 +29102 192669 0.9470 +29102 192670 0.9520 +29102 201164 0.4110 +29102 203228 0.4680 +29102 219927 0.4360 +29102 246243 0.5920 +29102 253175 0.5820 +29102 283989 0.5900 +29102 284131 0.5080 +29102 347487 0.5200 +29102 388112 0.9000 +29102 389421 0.8070 +29102 440093 0.4350 +29102 440686 0.4350 +29102 653604 0.4350 +29102 100287482 0.5200 +29102 100526842 0.5750 +29103 29928 0.4920 +29103 51025 0.9850 +29103 54543 0.4400 +29103 54979 0.5220 +29103 56521 0.4750 +29103 56993 0.5590 +29103 57129 0.4180 +29103 64215 0.5150 +29103 80273 0.8560 +29103 84886 0.5150 +29103 92609 0.7950 +29103 131118 0.7940 +29103 134266 0.7620 +29103 140823 0.7580 +29103 144809 0.4810 +29103 192286 0.4110 +29103 548645 0.5010 +29103 100287932 0.8420 +29104 29789 0.4250 +29104 29980 0.5240 +29104 51028 0.5110 +29104 51335 0.4290 +29104 51409 0.8150 +29104 51441 0.4060 +29104 51504 0.9990 +29104 51605 0.4760 +29104 51805 0.4270 +29104 54059 0.4460 +29104 54069 0.5260 +29104 54516 0.8080 +29104 54784 0.6680 +29104 55143 0.4570 +29104 55621 0.4350 +29104 56339 0.5850 +29104 57412 0.6150 +29104 57604 0.4340 +29104 57721 0.5410 +29104 59271 0.5750 +29104 60487 0.8140 +29104 64172 0.5270 +29104 64745 0.4240 +29104 64863 0.7490 +29104 79693 0.6180 +29104 80745 0.4370 +29104 83985 0.4100 +29104 84881 0.4520 +29104 90353 0.4690 +29104 91574 0.7990 +29104 91801 0.7280 +29104 92399 0.4380 +29104 115708 0.5160 +29104 121504 0.9000 +29104 121642 0.4120 +29104 130132 0.4880 +29104 151188 0.4810 +29104 196463 0.4380 +29104 221143 0.5600 +29104 285367 0.4600 +29104 399818 0.4230 +29104 554313 0.9000 +29104 100996939 0.4190 +29105 29922 0.8430 +29105 51011 0.4720 +29105 55130 0.5070 +29105 55329 0.8210 +29105 56683 0.4330 +29105 64518 0.8170 +29105 64776 0.8000 +29105 64800 0.5220 +29105 66005 0.4120 +29105 79645 0.5170 +29105 80258 0.8970 +29105 83538 0.5180 +29105 83659 0.8330 +29105 90141 0.4590 +29105 93190 0.8230 +29105 93233 0.5070 +29105 95681 0.4080 +29105 114327 0.9080 +29105 115948 0.5140 +29105 118491 0.4240 +29105 120892 0.4730 +29105 127003 0.8230 +29105 129881 0.8200 +29105 133015 0.5450 +29105 134121 0.8000 +29105 135138 0.9150 +29105 138162 0.8210 +29105 138255 0.8230 +29105 145788 0.8210 +29105 146845 0.8330 +29105 150483 0.8210 +29105 151651 0.8990 +29105 160762 0.4400 +29105 161502 0.8490 +29105 200728 0.4220 +29105 219670 0.8930 +29105 219681 0.4370 +29105 220136 0.8230 +29105 221322 0.8830 +29105 257177 0.8230 +29105 317662 0.8260 +29105 339778 0.8020 +29105 388701 0.8230 +29105 389799 0.8000 +29105 440585 0.8000 +29105 730112 0.8000 +29105 100128569 0.5070 +29106 51617 0.4740 +29106 56975 0.6300 +29106 126298 0.4640 +29107 30000 0.6870 +29107 51213 0.6000 +29107 51808 0.4720 +29107 53371 0.7050 +29107 54830 0.5650 +29107 55706 0.5190 +29107 55746 0.6280 +29107 55795 0.4650 +29107 55916 0.9050 +29107 56000 0.9990 +29107 56001 0.9960 +29107 56943 0.5040 +29107 57122 0.6650 +29107 57187 0.5640 +29107 64412 0.5190 +29107 79023 0.6190 +29107 79228 0.5190 +29107 79902 0.5940 +29107 80145 0.6310 +29107 81929 0.5560 +29107 84248 0.7900 +29107 84296 0.5290 +29107 84321 0.6430 +29107 84324 0.5160 +29107 84844 0.4170 +29107 121355 0.4550 +29107 128817 0.4520 +29107 128821 0.4600 +29107 129401 0.6710 +29107 140880 0.4050 +29107 143689 0.4360 +29107 201164 0.4480 +29107 266743 0.7240 +29107 348995 0.6490 +29107 728343 0.9990 +29107 729857 0.6110 +29107 100101267 0.5240 +29108 29110 0.4230 +29108 51284 0.4330 +29108 54106 0.5810 +29108 54518 0.4090 +29108 55655 0.9120 +29108 55876 0.4870 +29108 56169 0.5130 +29108 56919 0.9200 +29108 57506 0.7320 +29108 58484 0.9990 +29108 59082 0.7300 +29108 64127 0.6880 +29108 64135 0.4450 +29108 64170 0.7740 +29108 64581 0.4330 +29108 79132 0.4210 +29108 79671 0.4950 +29108 79792 0.9390 +29108 80829 0.5280 +29108 81030 0.5700 +29108 81543 0.7280 +29108 84071 0.5310 +29108 84166 0.5830 +29108 91662 0.9910 +29108 114548 0.9990 +29108 114609 0.4230 +29108 115004 0.4180 +29108 122769 0.4870 +29108 135644 0.7200 +29108 140467 0.4910 +29108 140609 0.7990 +29108 147945 0.9730 +29108 149628 0.5460 +29108 152138 0.9560 +29108 171389 0.9940 +29108 197259 0.4220 +29108 197358 0.6370 +29108 199713 0.9040 +29108 204801 0.5200 +29108 260434 0.9840 +29108 284110 0.5730 +29108 338321 0.9360 +29108 338322 0.7840 +29108 338323 0.4500 +29108 494513 0.4500 +29109 51377 0.4210 +29109 55660 0.4270 +29109 56776 0.4470 +29109 56907 0.5730 +29109 91010 0.5250 +29109 163183 0.4120 +29109 199953 0.6440 +29109 342184 0.4690 +29109 345456 0.5560 +29109 375189 0.6160 +29110 29126 0.4370 +29110 29851 0.6380 +29110 29927 0.4210 +29110 29978 0.7970 +29110 50852 0.4730 +29110 51284 0.7300 +29110 51311 0.6600 +29110 51428 0.9360 +29110 51510 0.4390 +29110 51762 0.7880 +29110 54106 0.8570 +29110 54472 0.5930 +29110 54862 0.4090 +29110 54941 0.4780 +29110 55054 0.4420 +29110 55072 0.9970 +29110 55255 0.4980 +29110 55486 0.4020 +29110 55593 0.8620 +29110 55601 0.4060 +29110 55770 0.9960 +29110 55787 0.6100 +29110 55922 0.4440 +29110 56832 0.4090 +29110 57162 0.8210 +29110 57506 0.9990 +29110 57521 0.6280 +29110 57534 0.4100 +29110 57679 0.5180 +29110 58528 0.5420 +29110 59307 0.5950 +29110 64127 0.5550 +29110 64135 0.9820 +29110 64343 0.9990 +29110 64422 0.4160 +29110 65018 0.5660 +29110 79065 0.7040 +29110 79102 0.4060 +29110 79132 0.8400 +29110 79155 0.5220 +29110 79589 0.7040 +29110 79671 0.7350 +29110 79792 0.4290 +29110 80143 0.9660 +29110 80149 0.4730 +29110 80208 0.4480 +29110 80342 0.6710 +29110 80712 0.4570 +29110 81030 0.9860 +29110 81559 0.6080 +29110 81622 0.7150 +29110 81631 0.6360 +29110 81793 0.4070 +29110 81844 0.6120 +29110 81858 0.6270 +29110 84282 0.7720 +29110 84640 0.5990 +29110 89122 0.6490 +29110 91543 0.7340 +29110 114088 0.6030 +29110 114548 0.5370 +29110 114609 0.7690 +29110 115004 0.9220 +29110 139341 0.4280 +29110 140775 0.9590 +29110 142678 0.6910 +29110 147945 0.9040 +29110 148022 0.9820 +29110 149371 0.5830 +29110 163702 0.4290 +29110 170506 0.5540 +29110 197358 0.6570 +29110 200081 0.7070 +29110 203228 0.8810 +29110 221302 0.5680 +29110 257397 0.7330 +29110 282618 0.5250 +29110 338323 0.6750 +29110 340061 0.9990 +29110 353376 0.8420 +29110 400916 0.6080 +29110 415117 0.4160 +29110 440738 0.4010 +29113 30834 0.4910 +29113 51092 0.5050 +29113 51187 0.4880 +29113 51550 0.4370 +29113 51728 0.4760 +29113 51755 0.6120 +29113 54535 0.4880 +29113 54623 0.6020 +29113 54847 0.5050 +29113 55133 0.6200 +29113 55677 0.8540 +29113 55703 0.6740 +29113 57121 0.5070 +29113 64425 0.4080 +29113 79577 0.6720 +29113 80820 0.6200 +29113 84172 0.6740 +29113 84337 0.8340 +29113 85456 0.7220 +29113 123169 0.6610 +29113 127428 0.4890 +29113 149483 0.5060 +29113 151987 0.5210 +29113 170082 0.4890 +29113 170679 0.4550 +29113 170680 0.5450 +29113 246721 0.5050 +29113 340602 0.5050 +29113 394263 0.4190 +29113 448834 0.5050 +29113 548644 0.5050 +29113 100134938 0.5050 +29113 100507679 0.4210 +29113 107983993 0.5050 +29113 122455342 0.5050 +29114 50861 0.4090 +29114 51440 0.4660 +29114 51643 0.4420 +29114 51806 0.5080 +29114 81551 0.4120 +29114 85477 0.5780 +29114 91860 0.5080 +29114 93649 0.4900 +29114 133015 0.4430 +29114 135138 0.4540 +29114 151651 0.4580 +29114 163688 0.5080 +29114 197335 0.7790 +29114 203068 0.4220 +29114 219670 0.4100 +29114 654364 0.4720 +29115 51742 0.8130 +29115 54145 0.4990 +29115 54439 0.4150 +29115 55153 0.4240 +29115 55677 0.5170 +29115 55766 0.5070 +29115 55968 0.4260 +29115 56259 0.4130 +29115 57018 0.6480 +29115 57466 0.4020 +29115 57794 0.4620 +29115 64426 0.8940 +29115 79084 0.5050 +29115 79595 0.8420 +29115 79685 0.8350 +29115 81669 0.4560 +29115 81857 0.4120 +29115 84292 0.5010 +29115 84991 0.6970 +29115 85236 0.4990 +29115 94239 0.5070 +29115 117246 0.4130 +29115 118924 0.4920 +29115 124245 0.5510 +29115 128312 0.4990 +29115 255626 0.4990 +29115 474382 0.5060 +29115 653604 0.5320 +29115 728642 0.6290 +29116 29895 0.7620 +29116 51201 0.4620 +29116 51619 0.4430 +29116 54623 0.5960 +29116 57630 0.4560 +29116 64240 0.6590 +29116 64241 0.6180 +29116 79444 0.4330 +29116 79754 0.4330 +29116 103910 0.7690 +29116 220972 0.4430 +29116 255738 0.6590 +29116 401236 0.4720 +29116 768239 0.6820 +29116 100652824 0.5130 +29117 29998 0.7600 +29117 51412 0.9600 +29117 51622 0.4450 +29117 51754 0.6260 +29117 51773 0.4890 +29117 53335 0.6550 +29117 53615 0.4310 +29117 54454 0.5130 +29117 54815 0.4590 +29117 54888 0.5460 +29117 55027 0.4350 +29117 55193 0.9990 +29117 55274 0.9990 +29117 55636 0.5960 +29117 55749 0.4460 +29117 55870 0.5310 +29117 57459 0.4050 +29117 57492 0.9520 +29117 63906 0.4180 +29117 64753 0.5360 +29117 64769 0.5500 +29117 64919 0.5950 +29117 65980 0.7220 +29117 79084 0.5140 +29117 79155 0.4280 +29117 81611 0.4900 +29117 81894 0.5180 +29117 84289 0.5600 +29117 85407 0.4520 +29117 89970 0.4060 +29117 114803 0.4160 +29117 121504 0.8110 +29117 196528 0.9990 +29117 220988 0.4580 +29117 255877 0.5010 +29117 440093 0.5920 +29117 440686 0.5910 +29117 554313 0.8110 +29117 653604 0.5910 +29117 728378 0.5080 +29117 728621 0.4230 +29118 54514 0.4290 +29118 55124 0.5470 +29118 55308 0.7820 +29118 55835 0.4950 +29118 55856 0.4170 +29118 56163 0.4330 +29118 56165 0.4980 +29118 57409 0.4630 +29118 63876 0.9080 +29118 79665 0.4060 +29118 83983 0.4920 +29118 84918 0.4310 +29118 84944 0.4430 +29118 91663 0.4310 +29118 163589 0.4030 +29118 219844 0.9430 +29118 221400 0.7190 +29118 317781 0.4140 +29118 340719 0.4690 +29118 402381 0.4230 +29119 51176 0.6230 +29119 54715 0.5020 +29119 55351 0.5710 +29119 55652 0.4040 +29119 55750 0.4330 +29119 56942 0.4550 +29119 56998 0.5430 +29119 57159 0.4560 +29119 57687 0.4030 +29119 59274 0.4860 +29119 64403 0.6600 +29119 65217 0.4490 +29119 79188 0.6580 +29119 80059 0.4370 +29119 83660 0.7280 +29119 84665 0.4290 +29119 169792 0.4100 +29119 219736 0.4180 +29119 255022 0.7550 +29119 255239 0.4150 +29119 282996 0.4150 +29119 347730 0.5300 +29119 347731 0.9100 +29121 50616 0.5100 +29121 50856 0.5720 +29121 51266 0.5850 +29121 51267 0.4190 +29121 51348 0.4970 +29121 64581 0.4800 +29121 84868 0.5930 +29121 113146 0.4190 +29121 114836 0.4100 +29121 140885 0.4600 +29121 149233 0.5060 +29121 151888 0.5400 +29121 201633 0.6520 +29121 259307 0.4010 +29122 51438 0.6470 +29122 51604 0.6030 +29122 53340 0.6620 +29122 55511 0.7710 +29122 56899 0.4310 +29122 84519 0.5800 +29122 90737 0.8410 +29122 91977 0.4360 +29122 94005 0.6140 +29122 285782 0.4180 +29123 51366 0.4760 +29123 55209 0.6690 +29123 55553 0.4130 +29123 55869 0.4830 +29123 57492 0.5440 +29123 57628 0.4220 +29123 57634 0.4530 +29123 57680 0.4580 +29123 58508 0.4330 +29123 64599 0.4200 +29123 79813 0.5270 +29123 80816 0.4470 +29123 89910 0.4310 +29123 197320 0.6440 +29124 51083 0.6840 +29124 60676 0.4060 +29124 80832 0.4310 +29124 85329 0.6650 +29124 85481 0.4030 +29124 85569 0.4610 +29124 163126 0.4190 +29124 653145 0.5430 +29125 55289 0.4470 +29125 284521 0.5830 +29125 388559 0.5430 +29126 29851 0.9950 +29126 29933 0.4790 +29126 30009 0.6350 +29126 30816 0.6790 +29126 30835 0.4760 +29126 50616 0.4870 +29126 50943 0.9120 +29126 51266 0.4810 +29126 51284 0.7520 +29126 51311 0.5000 +29126 51744 0.5490 +29126 54106 0.5910 +29126 54474 0.4490 +29126 54908 0.8180 +29126 54918 0.8720 +29126 55193 0.5150 +29126 55509 0.5570 +29126 56172 0.5190 +29126 57509 0.9090 +29126 57823 0.5260 +29126 58191 0.4300 +29126 64115 0.6690 +29126 64135 0.4870 +29126 64218 0.4630 +29126 65258 0.5070 +29126 80321 0.5810 +29126 80328 0.4420 +29126 80329 0.4560 +29126 80380 0.9960 +29126 80736 0.5510 +29126 81793 0.5050 +29126 83548 0.6270 +29126 84166 0.5330 +29126 84824 0.4810 +29126 84868 0.9980 +29126 89790 0.6450 +29126 90865 0.4750 +29126 91949 0.5570 +29126 94025 0.4470 +29126 115004 0.6330 +29126 115361 0.4400 +29126 115362 0.5210 +29126 116071 0.5150 +29126 126259 0.5070 +29126 131450 0.7880 +29126 137902 0.5220 +29126 140885 0.8290 +29126 146223 0.7480 +29126 151888 0.9430 +29126 168400 0.7190 +29126 169355 0.7760 +29126 201633 0.9730 +29126 259197 0.5220 +29126 284194 0.8750 +29126 284266 0.5750 +29126 285704 0.6500 +29126 374383 0.7770 +29126 399474 0.4470 +29126 400566 0.4160 +29126 405754 0.6800 +29126 654346 0.8750 +29126 100049587 0.4520 +29126 100133941 0.5070 +29126 100423062 0.4690 +29126 100526664 0.4520 +29126 102723407 0.5290 +29127 29128 0.6640 +29127 29980 0.4760 +29127 29984 0.5070 +29127 30011 0.5790 +29127 51053 0.4330 +29127 51164 0.4990 +29127 51203 0.8690 +29127 51343 0.5170 +29127 51429 0.4060 +29127 51512 0.4440 +29127 51514 0.4860 +29127 51594 0.5000 +29127 51659 0.4080 +29127 53407 0.5660 +29127 54069 0.6190 +29127 54443 0.9970 +29127 54478 0.6040 +29127 54821 0.5520 +29127 54892 0.7610 +29127 55010 0.5010 +29127 55055 0.6020 +29127 55143 0.9340 +29127 55165 0.9580 +29127 55215 0.7220 +29127 55320 0.8490 +29127 55355 0.7290 +29127 55388 0.5530 +29127 55582 0.4410 +29127 55605 0.6050 +29127 55614 0.4030 +29127 55635 0.7570 +29127 55723 0.4720 +29127 55732 0.5670 +29127 55738 0.5040 +29127 55789 0.4800 +29127 55839 0.5050 +29127 55850 0.5000 +29127 55860 0.5090 +29127 55920 0.5280 +29127 56992 0.8100 +29127 57082 0.6580 +29127 57405 0.6070 +29127 57530 0.9190 +29127 57553 0.4430 +29127 57568 0.5160 +29127 60561 0.5260 +29127 63967 0.5570 +29127 64105 0.4700 +29127 64151 0.8640 +29127 64837 0.4110 +29127 64946 0.5270 +29127 79019 0.4980 +29127 79075 0.4060 +29127 79682 0.7190 +29127 79733 0.4980 +29127 79801 0.9650 +29127 79866 0.7350 +29127 79980 0.4270 +29127 81610 0.5510 +29127 81620 0.5800 +29127 81624 0.5880 +29127 81930 0.7870 +29127 83461 0.5620 +29127 83540 0.7830 +29127 84057 0.5730 +29127 84364 0.5040 +29127 84515 0.4050 +29127 84516 0.5020 +29127 84643 0.5170 +29127 84722 0.4280 +29127 84930 0.4880 +29127 84952 0.8400 +29127 89953 0.4110 +29127 90417 0.6100 +29127 90990 0.5560 +29127 92421 0.5070 +29127 93661 0.4990 +29127 113130 0.8430 +29127 116369 0.9500 +29127 124602 0.4420 +29127 126520 0.4050 +29127 128239 0.4140 +29127 133482 0.4670 +29127 144455 0.4360 +29127 146909 0.7490 +29127 147700 0.4080 +29127 147841 0.4250 +29127 150468 0.4300 +29127 151246 0.5140 +29127 151648 0.5580 +29127 157313 0.5400 +29127 220134 0.4770 +29127 221150 0.5200 +29127 221458 0.4100 +29127 259266 0.7950 +29127 285643 0.6790 +29127 345930 0.6040 +29127 387103 0.4590 +29128 29947 0.7840 +29128 51203 0.6390 +29128 51514 0.7860 +29128 51659 0.5960 +29128 54145 0.5740 +29128 54443 0.5410 +29128 54478 0.4550 +29128 54790 0.6030 +29128 54821 0.4290 +29128 54887 0.6160 +29128 54892 0.5040 +29128 55055 0.4390 +29128 55062 0.4610 +29128 55143 0.7430 +29128 55165 0.7600 +29128 55215 0.5490 +29128 55355 0.5830 +29128 55388 0.5880 +29128 55723 0.5490 +29128 55766 0.5020 +29128 55789 0.5580 +29128 55929 0.7230 +29128 56302 0.4450 +29128 56992 0.5510 +29128 57379 0.4500 +29128 57405 0.4600 +29128 57659 0.5770 +29128 57661 0.4640 +29128 63967 0.4810 +29128 63978 0.5060 +29128 64151 0.6830 +29128 64946 0.4010 +29128 79000 0.5430 +29128 79019 0.4630 +29128 79075 0.4570 +29128 79723 0.4560 +29128 79733 0.6920 +29128 79801 0.4800 +29128 79892 0.5130 +29128 79968 0.5250 +29128 80198 0.4250 +29128 80312 0.6790 +29128 80854 0.6930 +29128 81545 0.4810 +29128 81610 0.5320 +29128 81620 0.5480 +29128 83461 0.5750 +29128 83540 0.7410 +29128 83860 0.4100 +29128 83879 0.6290 +29128 84057 0.4270 +29128 84823 0.4550 +29128 85236 0.5750 +29128 94239 0.5170 +29128 113130 0.7620 +29128 115426 0.5590 +29128 126961 0.9800 +29128 128312 0.5820 +29128 144455 0.4740 +29128 146909 0.4990 +29128 146956 0.5170 +29128 150468 0.4350 +29128 157313 0.5080 +29128 195828 0.5310 +29128 200424 0.6350 +29128 221150 0.4810 +29128 221302 0.5020 +29128 253461 0.5770 +29128 255626 0.5760 +29128 259266 0.5690 +29128 333932 0.9060 +29128 346171 0.5150 +29128 359787 0.7280 +29128 440093 0.9880 +29128 440686 0.9870 +29128 474382 0.5020 +29128 653604 0.9960 +29760 30011 0.9940 +29760 51284 0.4040 +29760 55024 0.4340 +29760 56262 0.6540 +29760 57600 0.4260 +29760 64170 0.4630 +29760 79930 0.5900 +29760 84433 0.7090 +29760 85478 0.5490 +29760 115650 0.4450 +29760 118788 0.7020 +29760 388325 0.7150 +29760 390714 0.4140 +29760 100423062 0.5020 +29760 102723407 0.5180 +29761 29843 0.4230 +29761 51105 0.4170 +29761 51377 0.4770 +29761 51633 0.5000 +29761 54532 0.4360 +29761 54677 0.4770 +29761 54726 0.5410 +29761 54764 0.4440 +29761 55031 0.4360 +29761 55432 0.6830 +29761 55593 0.5510 +29761 55611 0.5590 +29761 55958 0.5530 +29761 56957 0.4410 +29761 57154 0.5170 +29761 57506 0.4890 +29761 57602 0.5770 +29761 57646 0.6200 +29761 57663 0.4920 +29761 64750 0.6730 +29761 78990 0.4970 +29761 80124 0.6090 +29761 80351 0.8400 +29761 83737 0.4810 +29761 83844 0.4630 +29761 83892 0.7820 +29761 84101 0.5650 +29761 84132 0.4040 +29761 84669 0.5250 +29761 84749 0.5300 +29761 85015 0.4280 +29761 90268 0.4760 +29761 90293 0.4100 +29761 92552 0.4760 +29761 114781 0.5520 +29761 114803 0.5760 +29761 126119 0.4700 +29761 139562 0.4250 +29761 219333 0.5230 +29761 220213 0.4710 +29761 221302 0.6810 +29761 253980 0.8140 +29761 373509 0.5980 +29761 377630 0.5140 +29761 387082 0.4740 +29761 389856 0.4770 +29761 728373 0.5180 +29761 100288323 0.4300 +29763 29993 0.9450 +29763 50807 0.4160 +29763 54443 0.5160 +29763 54874 0.4450 +29763 55660 0.4030 +29763 59341 0.8080 +29763 80004 0.4210 +29763 80854 0.4420 +29763 84364 0.4370 +29763 85377 0.5610 +29763 89848 0.5290 +29763 115548 0.7030 +29763 128866 0.4040 +29763 284119 0.4030 +29763 389337 0.4170 +29765 29766 0.5230 +29765 29767 0.5220 +29765 29895 0.4810 +29765 51164 0.5580 +29765 55604 0.9720 +29765 55860 0.4470 +29765 58529 0.6180 +29765 84516 0.5830 +29765 84665 0.8350 +29765 85366 0.4970 +29765 85477 0.7660 +29765 90668 0.5900 +29765 93661 0.9630 +29765 128240 0.4100 +29765 129446 0.5760 +29765 131377 0.5020 +29765 136319 0.7210 +29765 146206 0.8990 +29765 146862 0.4340 +29765 200539 0.5900 +29765 246329 0.4380 +29765 345456 0.6810 +29765 347273 0.4590 +29765 375189 0.7100 +29765 442721 0.4510 +29765 653857 0.4110 +29766 29767 0.5170 +29766 53981 0.4570 +29766 54434 0.6860 +29766 54443 0.5090 +29766 54822 0.6300 +29766 55930 0.5770 +29766 56907 0.5360 +29766 84033 0.6020 +29766 84501 0.4630 +29766 84665 0.7270 +29766 84952 0.9060 +29766 85477 0.7740 +29766 137735 0.5130 +29766 146206 0.8460 +29766 345456 0.6480 +29766 375189 0.6810 +29767 50484 0.4990 +29767 54434 0.6070 +29767 57520 0.4200 +29767 84665 0.7900 +29767 84952 0.7600 +29767 85477 0.8190 +29767 92400 0.7860 +29767 146206 0.8810 +29767 345456 0.6470 +29767 375189 0.6790 +29767 100506564 0.4640 +29775 54438 0.4540 +29775 64127 0.4960 +29775 64170 0.5340 +29775 64283 0.4360 +29775 79092 0.9570 +29775 79188 0.7390 +29775 84433 0.9490 +29775 84674 0.5410 +29775 143384 0.4690 +29775 160335 0.4100 +29777 29889 0.4120 +29777 29960 0.6340 +29777 51096 0.9780 +29777 51118 0.5470 +29777 51187 0.4400 +29777 51202 0.8210 +29777 51538 0.4440 +29777 51575 0.9950 +29777 51602 0.6640 +29777 54555 0.9980 +29777 54606 0.4810 +29777 54865 0.5000 +29777 54984 0.6030 +29777 55127 0.5870 +29777 55131 0.5290 +29777 55226 0.4710 +29777 55272 0.4830 +29777 55299 0.7870 +29777 55646 0.4580 +29777 55651 0.5330 +29777 55760 0.9050 +29777 55794 0.4990 +29777 55813 0.9800 +29777 56902 0.4450 +29777 57050 0.5370 +29777 57062 0.4670 +29777 57109 0.7420 +29777 57647 0.4840 +29777 57696 0.4670 +29777 64434 0.9710 +29777 64794 0.4460 +29777 65083 0.4410 +29777 65095 0.6760 +29777 79039 0.5480 +29777 79050 0.4330 +29777 79954 0.6800 +29777 80135 0.5220 +29777 84128 0.4100 +29777 84135 0.5500 +29777 84154 0.6250 +29777 84294 0.8030 +29777 84365 0.6440 +29777 84549 0.6070 +29777 84916 0.5010 +29777 84946 0.5320 +29777 88745 0.9950 +29777 90121 0.4390 +29777 90957 0.4210 +29777 92856 0.4260 +29777 94026 0.4180 +29777 117246 0.7280 +29777 140545 0.4680 +29777 146212 0.7800 +29777 146310 0.4560 +29777 153443 0.4320 +29777 165545 0.8200 +29777 221830 0.4270 +29777 266812 0.4310 +29777 283106 0.5720 +29780 54751 0.4180 +29780 55246 0.6330 +29780 55586 0.7200 +29780 55612 0.4730 +29780 55679 0.8640 +29780 55742 0.9870 +29780 57016 0.6680 +29780 64098 0.9140 +29780 79026 0.6770 +29780 79924 0.6720 +29780 80339 0.5130 +29780 80895 0.4780 +29780 83660 0.9110 +29780 83706 0.6490 +29780 96626 0.7730 +29780 253260 0.4110 +29780 493829 0.6090 +29781 54145 0.5400 +29781 54892 0.9990 +29781 55766 0.5020 +29781 63922 0.4240 +29781 64151 0.8910 +29781 79648 0.6330 +29781 79677 0.4720 +29781 80347 0.5280 +29781 84629 0.4550 +29781 84693 0.4200 +29781 85236 0.5380 +29781 91289 0.6980 +29781 94239 0.5290 +29781 114880 0.4450 +29781 116541 0.4640 +29781 128312 0.5400 +29781 255626 0.5390 +29781 374378 0.4230 +29781 440836 0.4290 +29781 474382 0.5020 +29781 653604 0.5850 +29785 51302 0.5560 +29785 54490 0.6860 +29785 54575 0.7510 +29785 54576 0.7200 +29785 54577 0.7220 +29785 54578 0.7590 +29785 54579 0.6970 +29785 54600 0.7320 +29785 54657 0.7360 +29785 54658 0.7220 +29785 54659 0.7000 +29785 56603 0.9410 +29785 57834 0.4530 +29785 64816 0.4920 +29785 66002 0.4520 +29785 79799 0.7130 +29785 119391 0.7050 +29785 132949 0.5100 +29785 199974 0.4700 +29785 221357 0.6860 +29785 254786 0.4280 +29785 260293 0.5020 +29785 284541 0.9430 +29785 285440 0.4080 +29785 340665 0.9290 +29785 390321 0.4920 +29785 574537 0.6930 +29785 653689 0.7150 +29785 100861540 0.9260 +29789 29927 0.4010 +29789 51081 0.6420 +29789 51094 0.4110 +29789 51116 0.4080 +29789 51121 0.4770 +29789 51149 0.4660 +29789 51204 0.5840 +29789 51264 0.5680 +29789 51386 0.4570 +29789 51409 0.4090 +29789 51493 0.4270 +29789 51520 0.5540 +29789 51691 0.4210 +29789 54516 0.6550 +29789 54552 0.4130 +29789 55157 0.4730 +29789 55206 0.4140 +29789 55272 0.4650 +29789 55324 0.4110 +29789 55644 0.4510 +29789 55699 0.4040 +29789 56474 0.5320 +29789 57038 0.7330 +29789 57176 0.4340 +29789 57470 0.6580 +29789 60558 0.7010 +29789 64172 0.4490 +29789 64960 0.4960 +29789 64963 0.4560 +29789 64965 0.5580 +29789 64969 0.5010 +29789 65005 0.6180 +29789 65008 0.4130 +29789 79631 0.4330 +29789 80222 0.5550 +29789 84705 0.5170 +29789 84893 0.4770 +29789 85476 0.4850 +29789 85865 0.5170 +29789 91574 0.5490 +29789 91875 0.5320 +29789 91893 0.5010 +29789 92935 0.4780 +29789 114823 0.4380 +29789 115416 0.5300 +29789 116832 0.4920 +29789 123263 0.4890 +29789 123283 0.5670 +29789 124454 0.4980 +29789 126402 0.6060 +29789 138428 0.9050 +29789 142940 0.4360 +29789 143244 0.6030 +29789 196074 0.4480 +29789 219927 0.6280 +29789 285521 0.4800 +29789 440275 0.4110 +29789 552889 0.4520 +29789 100101490 0.8830 +29789 100526842 0.4890 +29796 29928 0.5840 +29796 29957 0.4100 +29796 50511 0.4850 +29796 51069 0.5470 +29796 51079 0.9950 +29796 51263 0.4610 +29796 51264 0.4050 +29796 51300 0.9950 +29796 51529 0.6340 +29796 51650 0.5120 +29796 54205 0.9650 +29796 54460 0.7890 +29796 54539 0.9740 +29796 54543 0.7630 +29796 54902 0.4790 +29796 54998 0.4020 +29796 55028 0.6080 +29796 55052 0.4750 +29796 55245 0.6200 +29796 55728 0.4410 +29796 55871 0.4680 +29796 55967 0.9990 +29796 56901 0.8830 +29796 56993 0.4420 +29796 57379 0.7080 +29796 57407 0.6970 +29796 58509 0.4190 +29796 59286 0.4510 +29796 60489 0.7130 +29796 64111 0.8360 +29796 64975 0.4020 +29796 64981 0.4040 +29796 79002 0.9550 +29796 79085 0.4480 +29796 79728 0.8390 +29796 80142 0.5630 +29796 80195 0.7010 +29796 81341 0.9220 +29796 84300 0.5750 +29796 84418 0.5730 +29796 84419 0.6330 +29796 84701 0.9780 +29796 84833 0.8660 +29796 84886 0.9740 +29796 84939 0.7570 +29796 84987 0.7210 +29796 90313 0.4500 +29796 90624 0.4780 +29796 90634 0.4410 +29796 91300 0.8630 +29796 91647 0.4240 +29796 93974 0.4450 +29796 112812 0.4990 +29796 114789 0.4050 +29796 116541 0.4940 +29796 118487 0.4890 +29796 119391 0.4580 +29796 125965 0.9700 +29796 125988 0.5630 +29796 126328 0.9990 +29796 127003 0.6460 +29796 128308 0.4270 +29796 139221 0.7570 +29796 140564 0.7080 +29796 140823 0.7590 +29796 150274 0.9570 +29796 150678 0.6470 +29796 150681 0.4020 +29796 164668 0.7080 +29796 164684 0.8680 +29796 170712 0.9070 +29796 192286 0.4720 +29796 200315 0.7080 +29796 200316 0.7110 +29796 219927 0.4130 +29796 267020 0.8630 +29796 283459 0.9460 +29796 341947 0.5400 +29796 374291 0.9870 +29796 388753 0.9630 +29796 440567 0.9980 +29796 493753 0.4160 +29796 493856 0.4200 +29796 497661 0.4820 +29796 728317 0.7570 +29796 790955 0.4010 +29796 100131801 0.6080 +29796 100532726 0.7770 +29796 105372267 0.4650 +29799 29888 0.5450 +29799 29966 0.5890 +29799 55917 0.5740 +29799 80232 0.6300 +29799 84131 0.4070 +29799 84961 0.5110 +29799 163050 0.4360 +29799 165257 0.4210 +29799 338761 0.5050 +29800 51304 0.4030 +29800 54503 0.6340 +29800 79102 0.4920 +29800 79671 0.4250 +29800 81844 0.4820 +29800 197358 0.4980 +29800 254359 0.4670 +29800 283576 0.6210 +29801 51114 0.4750 +29801 51125 0.7000 +29801 51201 0.5800 +29801 51304 0.6710 +29801 54487 0.5320 +29801 54503 0.6500 +29801 54584 0.6390 +29801 55625 0.5050 +29801 56650 0.4970 +29801 58510 0.5060 +29801 64976 0.7240 +29801 65078 0.7580 +29801 79844 0.5850 +29801 80852 0.5760 +29801 81926 0.4580 +29801 83642 0.4110 +29801 84062 0.6070 +29801 84287 0.4270 +29801 85359 0.5980 +29801 91752 0.5840 +29801 128989 0.6980 +29801 154664 0.4360 +29801 158866 0.4170 +29801 253832 0.5550 +29801 267012 0.6450 +29801 283576 0.6110 +29801 319100 0.6450 +29802 51237 0.5380 +29802 53335 0.4020 +29802 55024 0.5940 +29802 83416 0.4490 +29802 84824 0.8860 +29802 115350 0.4330 +29802 115650 0.5840 +29802 199786 0.6150 +29802 390714 0.6570 +29802 400916 0.4260 +29802 100423062 0.4530 +29802 102723407 0.4690 +29803 30827 0.4360 +29803 51134 0.4580 +29803 51314 0.6640 +29803 55689 0.4180 +29803 60528 0.4470 +29803 65999 0.4170 +29803 79894 0.6190 +29803 93624 0.4740 +29803 112869 0.4690 +29803 222229 0.7460 +29803 474383 0.4810 +29803 100287399 0.6360 +29841 54845 0.5390 +29841 57822 0.5300 +29841 58495 0.5020 +29841 79718 0.4100 +29841 79755 0.5320 +29841 79977 0.5650 +29841 80004 0.4630 +29841 80205 0.4150 +29841 84662 0.4490 +29841 85441 0.4040 +29841 96764 0.4060 +29841 219654 0.4040 +29842 29947 0.4560 +29842 54790 0.6560 +29842 57167 0.5970 +29842 63978 0.6600 +29842 64321 0.5140 +29842 79923 0.6680 +29842 128209 0.6560 +29842 132625 0.6380 +29842 151871 0.4580 +29842 201456 0.4860 +29842 340168 0.5320 +29842 359787 0.6170 +29843 29889 0.5390 +29843 50945 0.4360 +29843 51029 0.6660 +29843 51588 0.8470 +29843 54509 0.5540 +29843 54778 0.4100 +29843 55746 0.6070 +29843 56852 0.6970 +29843 57122 0.5940 +29843 57337 0.6570 +29843 57646 0.4870 +29843 65124 0.4020 +29843 79711 0.4360 +29843 80728 0.4020 +29843 81624 0.4130 +29843 81839 0.4050 +29843 84901 0.4210 +29843 91582 0.5590 +29843 123228 0.6870 +29843 165918 0.4720 +29843 204851 0.4520 +29843 205564 0.6120 +29843 286053 0.5420 +29843 348995 0.6040 +29843 387082 0.8650 +29843 402569 0.4970 +29843 445582 0.4060 +29843 653437 0.4730 +29844 50813 0.4090 +29844 51138 0.4010 +29844 51377 0.9860 +29844 54556 0.9040 +29844 54617 0.9790 +29844 54891 0.9570 +29844 55192 0.6060 +29844 55929 0.6600 +29844 57634 0.9120 +29844 64431 0.5620 +29844 64708 0.4090 +29844 79042 0.4070 +29844 79165 0.5750 +29844 79816 0.5560 +29844 79913 0.9810 +29844 80709 0.4590 +29844 81611 0.9020 +29844 83444 0.9710 +29844 83548 0.4420 +29844 83707 0.4110 +29844 93973 0.9850 +29844 112724 0.4330 +29844 125476 0.9760 +29844 149478 0.5270 +29844 283899 0.9960 +29844 284415 0.4880 +29844 441864 0.4170 +29844 653145 0.5490 +29851 29909 0.4960 +29851 30009 0.7750 +29851 50615 0.8320 +29851 50616 0.5850 +29851 50852 0.8660 +29851 50943 0.8810 +29851 51176 0.4550 +29851 51284 0.4730 +29851 51744 0.5790 +29851 53347 0.5510 +29851 54106 0.4480 +29851 54542 0.5070 +29851 55423 0.4190 +29851 55540 0.4740 +29851 56253 0.4350 +29851 57379 0.4490 +29851 57509 0.4450 +29851 57532 0.4380 +29851 57823 0.4660 +29851 59067 0.8110 +29851 64115 0.5230 +29851 79679 0.8310 +29851 79865 0.4470 +29851 80380 0.9720 +29851 80381 0.8890 +29851 84433 0.4320 +29851 84868 0.7610 +29851 85480 0.6390 +29851 89857 0.4500 +29851 90865 0.5480 +29851 112744 0.4690 +29851 114836 0.5750 +29851 115650 0.7090 +29851 126259 0.5910 +29851 131450 0.4050 +29851 149041 0.8940 +29851 149233 0.4570 +29851 151888 0.8470 +29851 169355 0.6340 +29851 201633 0.8660 +29851 259197 0.4140 +29851 284194 0.4470 +29851 654346 0.4500 +29851 100133941 0.4670 +29855 51290 0.8460 +29855 54815 0.4360 +29855 55625 0.4720 +29855 55723 0.8710 +29855 57187 0.5550 +29855 57567 0.5330 +29855 57634 0.5620 +29855 84321 0.4240 +29855 126961 0.5360 +29855 340096 0.4120 +29855 391769 0.4390 +29880 29925 0.5250 +29880 29926 0.4250 +29880 29929 0.9990 +29880 50814 0.4960 +29880 51009 0.4020 +29880 51631 0.4240 +29880 53347 0.4200 +29880 54187 0.4010 +29880 54344 0.9550 +29880 54793 0.4340 +29880 55692 0.4820 +29880 55757 0.4450 +29880 55971 0.8140 +29880 56052 0.8400 +29880 56886 0.4210 +29880 57171 0.9600 +29880 58477 0.4140 +29880 58505 0.4620 +29880 60506 0.4240 +29880 79053 0.8260 +29880 79087 0.9870 +29880 79139 0.5340 +29880 79644 0.5220 +29880 79796 0.9690 +29880 79868 0.6520 +29880 79947 0.5410 +29880 80115 0.4930 +29880 80146 0.4530 +29880 80270 0.4530 +29880 84061 0.5320 +29880 84920 0.5380 +29880 84959 0.4200 +29880 85365 0.6140 +29880 93517 0.4530 +29880 116150 0.4380 +29880 123263 0.8830 +29880 144245 0.9600 +29880 199857 0.7350 +29880 201595 0.5820 +29880 284098 0.4070 +29880 440138 0.7970 +29880 644974 0.5120 +29880 100128731 0.4930 +29881 51128 0.4030 +29881 51141 0.4890 +29881 53630 0.4590 +29881 64240 0.9060 +29881 64241 0.8940 +29881 116519 0.5050 +29881 123264 0.4740 +29881 153443 0.5410 +29881 200931 0.4090 +29881 255738 0.7230 +29881 100506658 0.4950 +29882 29920 0.4480 +29882 29945 0.9990 +29882 51239 0.5680 +29882 51343 0.9990 +29882 51433 0.9990 +29882 51434 0.9990 +29882 51529 0.9990 +29882 51668 0.8860 +29882 54461 0.5380 +29882 54880 0.9080 +29882 56949 0.8120 +29882 57332 0.9060 +29882 57505 0.7350 +29882 64682 0.9990 +29882 64837 0.4860 +29882 79184 0.9020 +29882 79657 0.4650 +29882 79813 0.5790 +29882 79917 0.6900 +29882 80012 0.9000 +29882 81620 0.4170 +29882 83444 0.4150 +29882 83933 0.4720 +29882 84108 0.9040 +29882 84333 0.5600 +29882 84733 0.9000 +29882 84759 0.5640 +29882 85417 0.7320 +29882 89953 0.4270 +29882 119504 0.9980 +29882 140459 0.6110 +29882 166979 0.7320 +29882 220042 0.4300 +29882 246184 0.9990 +29882 286151 0.5150 +29882 286262 0.6960 +29882 375061 0.8400 +29882 388272 0.6790 +29883 50488 0.4700 +29883 51320 0.5300 +29883 51441 0.6870 +29883 54464 0.5750 +29883 54542 0.7290 +29883 54766 0.9160 +29883 54915 0.6020 +29883 55219 0.4120 +29883 55571 0.9970 +29883 55728 0.4010 +29883 55802 0.6510 +29883 56157 0.7920 +29883 56478 0.4490 +29883 57472 0.9990 +29883 60313 0.6070 +29883 64422 0.4150 +29883 64506 0.4690 +29883 79596 0.6390 +29883 80153 0.4790 +29883 80313 0.6480 +29883 85456 0.9940 +29883 90806 0.5600 +29883 114034 0.5200 +29883 115795 0.5350 +29883 149041 0.8580 +29883 154197 0.4290 +29883 158787 0.7740 +29883 167227 0.9970 +29883 192669 0.4600 +29883 197135 0.7920 +29883 201626 0.6720 +29883 219988 0.9980 +29883 246175 0.9990 +29883 253943 0.5320 +29883 339345 0.8620 +29883 340719 0.7150 +29883 390748 0.6890 +29886 29907 0.5460 +29886 29916 0.4870 +29886 29934 0.6350 +29886 51375 0.5190 +29886 51429 0.5080 +29886 51699 0.7680 +29886 55294 0.5140 +29886 55614 0.4240 +29886 55737 0.8350 +29886 57506 0.6310 +29886 58533 0.7340 +29886 64089 0.4190 +29886 81609 0.5460 +29886 92017 0.4330 +29886 94107 0.5040 +29886 112574 0.5140 +29886 112936 0.6010 +29886 147906 0.4220 +29886 169166 0.4660 +29886 254122 0.7450 +29886 257364 0.5430 +29886 399979 0.4310 +29887 29907 0.4330 +29887 51699 0.4260 +29887 55315 0.4450 +29887 55737 0.6530 +29887 64089 0.4500 +29887 64342 0.4630 +29887 79856 0.4800 +29887 112936 0.5370 +29887 124460 0.4820 +29888 29966 0.9990 +29888 50488 0.8160 +29888 51765 0.9330 +29888 51806 0.8400 +29888 54764 0.6660 +29888 55012 0.5110 +29888 55311 0.4430 +29888 55844 0.4760 +29888 55917 0.9980 +29888 57464 0.9430 +29888 63978 0.5760 +29888 80143 0.9970 +29888 80342 0.9950 +29888 83992 0.9960 +29888 84260 0.4290 +29888 85369 0.9990 +29888 91860 0.8360 +29888 140735 0.9940 +29888 163688 0.8360 +29888 342096 0.4330 +29889 29945 0.4960 +29889 29960 0.4970 +29889 29997 0.9960 +29889 30836 0.6640 +29889 51002 0.4010 +29889 51018 0.8830 +29889 51042 0.9970 +29889 51068 0.9900 +29889 51073 0.4420 +29889 51077 0.4380 +29889 51082 0.6210 +29889 51096 0.8850 +29889 51118 0.6350 +29889 51119 0.4700 +29889 51121 0.6140 +29889 51154 0.9950 +29889 51187 0.9990 +29889 51202 0.8800 +29889 51372 0.4380 +29889 51388 0.9440 +29889 51575 0.8730 +29889 51602 0.8140 +29889 51605 0.7530 +29889 54433 0.4130 +29889 54463 0.7240 +29889 54475 0.9870 +29889 54517 0.6300 +29889 54552 0.9970 +29889 54555 0.7310 +29889 54606 0.9360 +29889 54663 0.9760 +29889 54700 0.4300 +29889 54865 0.6820 +29889 54881 0.9690 +29889 54888 0.5220 +29889 54920 0.5840 +29889 54984 0.6700 +29889 55003 0.8950 +29889 55006 0.5960 +29889 55027 0.5660 +29889 55035 0.4040 +29889 55127 0.8470 +29889 55131 0.9500 +29889 55140 0.5720 +29889 55153 0.9920 +29889 55164 0.4270 +29889 55178 0.4970 +29889 55226 0.8240 +29889 55239 0.5660 +29889 55272 0.6850 +29889 55299 0.9430 +29889 55319 0.9320 +29889 55341 0.8760 +29889 55505 0.5030 +29889 55591 0.4070 +29889 55622 0.6180 +29889 55646 0.7460 +29889 55651 0.6110 +29889 55695 0.5030 +29889 55703 0.5130 +29889 55718 0.4210 +29889 55720 0.9680 +29889 55759 0.9690 +29889 55760 0.5800 +29889 55781 0.8130 +29889 55794 0.6870 +29889 55813 0.9310 +29889 55854 0.4240 +29889 56342 0.8980 +29889 56829 0.4540 +29889 56902 0.7160 +29889 56919 0.4060 +29889 56931 0.4030 +29889 56945 0.5010 +29889 57050 0.8490 +29889 57062 0.7770 +29889 57109 0.7020 +29889 57129 0.5740 +29889 57418 0.9920 +29889 57647 0.4240 +29889 57696 0.8370 +29889 60487 0.6200 +29889 60625 0.4340 +29889 63875 0.5560 +29889 63899 0.4300 +29889 64118 0.6090 +29889 64216 0.7030 +29889 64318 0.9340 +29889 64425 0.6460 +29889 64434 0.4300 +29889 64794 0.7780 +29889 64983 0.4240 +29889 65083 0.7920 +29889 65095 0.6430 +29889 79009 0.6140 +29889 79039 0.7690 +29889 79050 0.7610 +29889 79137 0.5950 +29889 79159 0.7990 +29889 79571 0.5910 +29889 79590 0.4520 +29889 79631 0.4790 +29889 79693 0.4210 +29889 79707 0.5210 +29889 79728 0.4500 +29889 79730 0.4620 +29889 79922 0.4520 +29889 79954 0.7900 +29889 79979 0.4460 +29889 80135 0.8320 +29889 80324 0.4130 +29889 80745 0.4110 +29889 81875 0.4270 +29889 83448 0.5670 +29889 83479 0.4790 +29889 83732 0.6080 +29889 83743 0.7930 +29889 84128 0.9240 +29889 84135 0.7530 +29889 84154 0.9990 +29889 84172 0.7220 +29889 84294 0.6890 +29889 84298 0.8600 +29889 84319 0.4200 +29889 84365 0.9920 +29889 84545 0.5030 +29889 84549 0.9450 +29889 84705 0.5620 +29889 84881 0.4010 +29889 84916 0.8750 +29889 84946 0.9520 +29889 84950 0.4850 +29889 87178 0.5920 +29889 88745 0.4330 +29889 90121 0.7560 +29889 90353 0.4050 +29889 90441 0.7930 +29889 91646 0.4760 +29889 92170 0.4970 +29889 92399 0.4110 +29889 92856 0.8950 +29889 115416 0.6500 +29889 115708 0.6810 +29889 116832 0.6040 +29889 116966 0.7270 +29889 117246 0.9750 +29889 123169 0.4240 +29889 134218 0.4410 +29889 142940 0.5150 +29889 146212 0.7490 +29889 155368 0.6020 +29889 161424 0.4260 +29889 162427 0.5950 +29889 165545 0.5760 +29889 170506 0.4040 +29889 200916 0.4800 +29889 205564 0.8620 +29889 219927 0.5710 +29889 221078 0.8130 +29889 221830 0.5770 +29889 285855 0.8700 +29889 317781 0.5800 +29889 344758 0.4740 +29889 387129 0.8410 +29889 387338 0.4880 +29889 692312 0.7060 +29889 100505478 0.5600 +29889 100526842 0.5720 +29889 114483834 0.4950 +29890 29896 0.4930 +29890 29974 0.5840 +29890 51441 0.8120 +29890 54890 0.8280 +29890 54915 0.8430 +29890 56339 0.9990 +29890 57187 0.4140 +29890 57591 0.5250 +29890 57721 0.9990 +29890 64783 0.9990 +29890 64848 0.8380 +29890 64863 0.5200 +29890 79066 0.9660 +29890 79068 0.7880 +29890 79872 0.9980 +29890 80335 0.4640 +29890 91746 0.8410 +29890 124245 0.4360 +29890 221120 0.4790 +29890 253943 0.8280 +29893 51805 0.4400 +29893 54823 0.4560 +29893 56159 0.4080 +29893 56478 0.4620 +29893 57082 0.4250 +29893 57697 0.4640 +29893 84057 0.9990 +29893 84072 0.4730 +29893 84515 0.5980 +29893 85236 0.4050 +29893 93426 0.5990 +29893 128312 0.4010 +29893 150280 0.4220 +29893 164045 0.5640 +29893 254394 0.6500 +29893 254528 0.4320 +29893 402381 0.4120 +29894 30827 0.5410 +29894 50626 0.7160 +29894 51343 0.4090 +29894 51585 0.9960 +29894 51586 0.4120 +29894 51593 0.5040 +29894 51659 0.6590 +29894 51692 0.9990 +29894 51741 0.4200 +29894 53371 0.4260 +29894 53981 0.9990 +29894 54443 0.6510 +29894 54973 0.8080 +29894 55090 0.4010 +29894 55339 0.9990 +29894 55627 0.4260 +29894 55660 0.4750 +29894 55706 0.4070 +29894 55746 0.5390 +29894 55756 0.7580 +29894 55764 0.4190 +29894 56903 0.9590 +29894 57122 0.4860 +29894 57130 0.4690 +29894 57187 0.4160 +29894 57418 0.4150 +29894 57710 0.5740 +29894 64421 0.6500 +29894 64848 0.8740 +29894 64852 0.6440 +29894 64858 0.6500 +29894 64895 0.9610 +29894 65123 0.6640 +29894 79023 0.4700 +29894 79042 0.8050 +29894 79084 0.6080 +29894 79577 0.4970 +29894 79581 0.4360 +29894 79869 0.9910 +29894 79872 0.4730 +29894 79902 0.4190 +29894 80335 0.9910 +29894 80728 0.6640 +29894 80746 0.8010 +29894 81608 0.9990 +29894 81929 0.4190 +29894 84524 0.6880 +29894 84955 0.6220 +29894 84967 0.5280 +29894 84988 0.5580 +29894 85378 0.4500 +29894 91746 0.8740 +29894 113655 0.5350 +29894 116461 0.8000 +29894 124245 0.5520 +29894 129401 0.4350 +29894 134353 0.7290 +29894 136157 0.8070 +29894 143506 0.8070 +29894 196120 0.8070 +29894 203054 0.6280 +29894 220988 0.5240 +29894 225689 0.4910 +29894 256364 0.5550 +29894 283989 0.8530 +29894 286077 0.5160 +29894 348995 0.5430 +29894 376940 0.6730 +29894 390031 0.8070 +29894 390033 0.8070 +29894 441584 0.8070 +29894 642843 0.9480 +29894 643988 0.5980 +29894 727957 0.7770 +29894 100101267 0.4260 +29895 51778 0.5550 +29895 54776 0.7940 +29895 55586 0.4350 +29895 58498 0.5420 +29895 58529 0.8690 +29895 79041 0.5040 +29895 79784 0.7730 +29895 79933 0.4090 +29895 84033 0.4900 +29895 84700 0.7610 +29895 85366 0.8230 +29895 91807 0.7510 +29895 91977 0.4740 +29895 93408 0.6270 +29895 103910 0.5590 +29895 129446 0.6260 +29895 131377 0.4200 +29895 140465 0.8790 +29895 146862 0.4870 +29895 148741 0.4860 +29895 150572 0.5100 +29895 165904 0.4080 +29895 200539 0.5710 +29895 340156 0.7460 +29895 399687 0.7080 +29895 442721 0.6390 +29895 493829 0.4130 +29895 768239 0.5440 +29896 51023 0.5280 +29896 51073 0.4500 +29896 51081 0.5480 +29896 51116 0.6190 +29896 51264 0.4530 +29896 51574 0.5450 +29896 51593 0.4970 +29896 51631 0.7890 +29896 51649 0.5440 +29896 51650 0.5740 +29896 51747 0.5080 +29896 51808 0.5250 +29896 54845 0.4220 +29896 55015 0.5170 +29896 55037 0.4030 +29896 55110 0.5170 +29896 55173 0.6550 +29896 55339 0.4820 +29896 55421 0.6220 +29896 55544 0.5390 +29896 55660 0.5640 +29896 55692 0.4840 +29896 55696 0.5830 +29896 56257 0.6070 +29896 56945 0.5750 +29896 57396 0.4120 +29896 57721 0.5000 +29896 58155 0.4420 +29896 58517 0.6310 +29896 60488 0.4340 +29896 63931 0.5650 +29896 64432 0.5510 +29896 64783 0.5590 +29896 64949 0.4490 +29896 64960 0.7270 +29896 64963 0.6220 +29896 64965 0.5950 +29896 64968 0.6320 +29896 64969 0.7190 +29896 64978 0.4220 +29896 65080 0.4240 +29896 65117 0.6170 +29896 79753 0.6660 +29896 84874 0.4330 +29896 85437 0.5850 +29896 91746 0.7640 +29896 124245 0.6280 +29896 124540 0.5170 +29896 129831 0.4090 +29896 132430 0.5950 +29896 135295 0.7490 +29896 140886 0.4560 +29896 140890 0.4400 +29896 144983 0.5740 +29896 200316 0.4720 +29896 219927 0.4280 +29896 220988 0.4250 +29896 221662 0.5640 +29896 286676 0.5710 +29896 387597 0.5810 +29896 390748 0.6360 +29896 100996928 0.4560 +29899 29957 0.7680 +29899 50865 0.4120 +29899 51083 0.4110 +29899 51168 0.7270 +29899 51764 0.4080 +29899 53904 0.4550 +29899 54084 0.6080 +29899 54331 0.4080 +29899 55188 0.4450 +29899 55970 0.4280 +29899 56288 0.8160 +29899 57121 0.4530 +29899 59345 0.4730 +29899 60626 0.6050 +29899 63940 0.5210 +29899 64122 0.4090 +29899 64787 0.4990 +29899 80834 0.4070 +29899 80835 0.4070 +29899 83715 0.4680 +29899 83756 0.4070 +29899 84662 0.6200 +29899 94235 0.4080 +29899 117531 0.4810 +29899 117583 0.9090 +29899 125336 0.4310 +29899 126326 0.4490 +29899 146183 0.4740 +29899 154743 0.4010 +29899 161497 0.4250 +29899 161514 0.4480 +29899 165829 0.4860 +29899 222662 0.4450 +29899 259236 0.5050 +29899 259266 0.4420 +29899 284611 0.5640 +29899 286262 0.5790 +29899 346562 0.7280 +29899 387755 0.9940 +29899 388551 0.5060 +29899 389207 0.4300 +29901 29907 0.5150 +29901 51699 0.4780 +29901 54958 0.5680 +29901 55737 0.4990 +29901 55795 0.8800 +29901 56000 0.5550 +29901 56001 0.5550 +29901 56943 0.8920 +29901 84271 0.4100 +29901 85395 0.4580 +29901 116225 0.5530 +29901 154467 0.4430 +29901 260429 0.5710 +29901 348235 0.4180 +29901 728343 0.5550 +29901 729920 0.5770 +29902 29903 0.4510 +29902 51184 0.6520 +29902 51434 0.5150 +29902 57523 0.4460 +29902 91057 0.5180 +29902 128876 0.4230 +29902 144809 0.4180 +29902 160760 0.4660 +29902 160762 0.4250 +29902 643641 0.4270 +29903 29907 0.5350 +29903 51447 0.4750 +29903 54386 0.4450 +29903 55209 0.4550 +29903 55213 0.5060 +29903 55854 0.5390 +29903 57106 0.4800 +29903 57156 0.4950 +29903 57458 0.4500 +29903 57484 0.4840 +29903 65993 0.5200 +29903 79575 0.4290 +29903 80071 0.4530 +29903 83987 0.4640 +29903 84922 0.5540 +29903 89970 0.5940 +29903 91057 0.6050 +29903 131601 0.4910 +29903 154467 0.4480 +29903 374864 0.4220 +29903 645811 0.6220 +29903 728586 0.5070 +29904 51422 0.9150 +29904 51806 0.9060 +29904 53632 0.9080 +29904 57521 0.4950 +29904 64798 0.4080 +29904 80216 0.4320 +29904 84271 0.6730 +29904 91860 0.8780 +29904 116835 0.5720 +29904 146177 0.4310 +29904 163688 0.8780 +29904 440275 0.4800 +29906 30815 0.6250 +29906 55790 0.4910 +29906 55907 0.4720 +29906 57190 0.4590 +29906 80021 0.4830 +29906 80896 0.4450 +29906 81849 0.5280 +29906 83473 0.5540 +29906 84064 0.4310 +29906 90806 0.4870 +29906 125336 0.5710 +29906 128387 0.5490 +29906 130576 0.4440 +29906 131149 0.4900 +29906 140838 0.5280 +29906 149840 0.4190 +29906 171483 0.4250 +29906 222389 0.5070 +29906 256435 0.4750 +29907 29916 0.5320 +29907 29934 0.6070 +29907 51271 0.4780 +29907 51375 0.4850 +29907 51429 0.5510 +29907 51537 0.4190 +29907 51699 0.4280 +29907 53407 0.4060 +29907 54663 0.4520 +29907 55273 0.4380 +29907 55614 0.4480 +29907 55850 0.4640 +29907 56034 0.6370 +29907 57142 0.6390 +29907 57156 0.4630 +29907 57231 0.4180 +29907 57484 0.4870 +29907 58533 0.5950 +29907 60343 0.7790 +29907 60561 0.5810 +29907 64089 0.5600 +29907 81608 0.6660 +29907 81609 0.5740 +29907 83891 0.5320 +29907 84173 0.4370 +29907 84256 0.4450 +29907 90203 0.4160 +29907 92017 0.5560 +29907 92840 0.6190 +29907 112574 0.5220 +29907 118491 0.5440 +29907 124460 0.4190 +29907 128866 0.4820 +29907 254122 0.5030 +29907 257364 0.6100 +29907 399979 0.4720 +29909 50852 0.6240 +29909 55843 0.4300 +29909 56253 0.4270 +29909 56927 0.4940 +29909 57512 0.5010 +29909 120787 0.4200 +29909 128611 0.4180 +29909 145773 0.4630 +29909 168537 0.4460 +29909 196335 0.4550 +29909 201633 0.4440 +29909 350383 0.4620 +29909 390083 0.4370 +29909 390212 0.5780 +29911 51143 0.6460 +29911 51199 0.5360 +29911 51361 0.9460 +29911 54820 0.5160 +29911 57700 0.6200 +29911 64400 0.9950 +29911 64760 0.6730 +29911 79882 0.8860 +29911 84067 0.9810 +29911 84376 0.9450 +29911 85376 0.6860 +29911 92558 0.4620 +29911 117177 0.5210 +29911 135138 0.4280 +29911 136332 0.4620 +29911 146439 0.5850 +29911 283385 0.4990 +29911 284058 0.4570 +29911 729830 0.5880 +29914 51067 0.5110 +29914 51141 0.4500 +29914 51163 0.4750 +29914 51179 0.8100 +29914 51725 0.5610 +29914 51805 0.5500 +29914 54363 0.8070 +29914 54496 0.4400 +29914 54707 0.4850 +29914 55178 0.5000 +29914 55856 0.8940 +29914 56052 0.4650 +29914 57107 0.6660 +29914 57540 0.9510 +29914 79001 0.4830 +29914 79947 0.8440 +29914 83959 0.4820 +29914 84273 0.4320 +29914 84274 0.8540 +29914 84336 0.4300 +29914 84881 0.4550 +29914 84976 0.5980 +29914 90407 0.4550 +29914 91734 0.8100 +29914 116150 0.8420 +29914 148345 0.4010 +29914 153830 0.5330 +29915 30827 0.8400 +29915 51230 0.6980 +29915 54554 0.7110 +29915 54790 0.4470 +29915 54881 0.5580 +29915 55683 0.4180 +29915 55884 0.4020 +29915 57325 0.5130 +29915 57680 0.5690 +29915 58487 0.9710 +29915 58508 0.4890 +29915 80312 0.4690 +29915 80335 0.6980 +29915 81887 0.5400 +29915 83591 0.7260 +29915 84148 0.6900 +29915 84332 0.5400 +29915 84661 0.6690 +29915 91272 0.5400 +29915 124944 0.5400 +29915 125476 0.5400 +29915 143241 0.5400 +29915 148327 0.8320 +29915 259282 0.8510 +29915 284058 0.6830 +29915 100529209 0.5400 +29916 51226 0.4650 +29916 51699 0.5570 +29916 55614 0.4470 +29916 55737 0.7160 +29916 57231 0.5230 +29916 58533 0.4840 +29916 64089 0.5230 +29916 79699 0.4190 +29916 79856 0.6140 +29916 79971 0.4240 +29916 80279 0.5200 +29916 81609 0.5090 +29916 83891 0.4590 +29916 90203 0.5320 +29916 92017 0.4050 +29916 112936 0.5840 +29916 124460 0.4480 +29916 203062 0.4750 +29916 254122 0.5240 +29916 257364 0.4810 +29916 284076 0.4750 +29916 399979 0.4380 +29919 51622 0.9900 +29919 80320 0.5410 +29919 84315 0.9340 +29919 221960 0.9990 +29919 285636 0.4150 +29919 728741 0.4300 +29920 29968 0.4640 +29920 50484 0.6630 +29920 51056 0.9000 +29920 58510 0.9170 +29920 65263 0.9800 +29920 79072 0.4320 +29920 112849 0.6600 +29920 113146 0.4690 +29920 119504 0.4260 +29920 150274 0.4110 +29920 220134 0.6830 +29920 221150 0.6300 +29922 50484 0.7600 +29922 50808 0.9340 +29922 51021 0.5820 +29922 51060 0.7540 +29922 51073 0.4500 +29922 51081 0.5130 +29922 51116 0.4930 +29922 51121 0.4070 +29922 51149 0.5210 +29922 51264 0.5030 +29922 51318 0.4170 +29922 51727 0.4220 +29922 55052 0.4380 +29922 55173 0.5610 +29922 55297 0.4470 +29922 55316 0.4520 +29922 55329 0.8170 +29922 55722 0.5310 +29922 55755 0.7160 +29922 55811 0.6940 +29922 56474 0.9360 +29922 56648 0.4140 +29922 56945 0.5000 +29922 57664 0.5460 +29922 57821 0.4750 +29922 63931 0.4790 +29922 64518 0.8570 +29922 64776 0.8060 +29922 64960 0.5240 +29922 64963 0.4830 +29922 64965 0.5010 +29922 64968 0.5340 +29922 64969 0.4440 +29922 64983 0.4840 +29922 79077 0.9070 +29922 79590 0.4460 +29922 79639 0.4900 +29922 79848 0.4570 +29922 80097 0.9630 +29922 80258 0.8750 +29922 83659 0.8130 +29922 84260 0.6050 +29922 84284 0.9480 +29922 84318 0.4590 +29922 84955 0.6310 +29922 85378 0.9240 +29922 91875 0.4030 +29922 93190 0.8000 +29922 114327 0.8490 +29922 114791 0.9870 +29922 121441 0.9640 +29922 122481 0.8040 +29922 124583 0.7290 +29922 126402 0.5090 +29922 127003 0.8020 +29922 129607 0.9390 +29922 129881 0.8230 +29922 131870 0.9010 +29922 134121 0.8280 +29922 135138 0.8580 +29922 138162 0.8410 +29922 138255 0.8000 +29922 143244 0.4090 +29922 145788 0.8000 +29922 146845 0.8220 +29922 150483 0.8050 +29922 151651 0.8450 +29922 154865 0.4190 +29922 158067 0.8170 +29922 161502 0.8160 +29922 196883 0.6780 +29922 219670 0.8790 +29922 219927 0.5480 +29922 220136 0.8280 +29922 221264 0.9520 +29922 246243 0.4820 +29922 257177 0.8070 +29922 339778 0.8050 +29922 347487 0.5070 +29922 374659 0.9460 +29922 377841 0.7100 +29922 388588 0.4630 +29922 388701 0.8810 +29922 389799 0.8020 +29922 440145 0.9880 +29922 440585 0.8050 +29922 653784 0.9410 +29922 654364 0.9190 +29922 730112 0.8000 +29922 100287482 0.4930 +29922 102157402 0.7080 +29923 50486 0.5250 +29923 51099 0.5070 +29923 51129 0.5120 +29923 57104 0.6830 +29923 63924 0.6200 +29923 112399 0.4820 +29924 29978 0.7220 +29924 29979 0.5980 +29924 30011 0.5830 +29924 30846 0.4900 +29924 50618 0.7900 +29924 53615 0.4120 +29924 54492 0.4210 +29924 55040 0.8290 +29924 55707 0.6390 +29924 56479 0.5400 +29924 58513 0.9810 +29924 79763 0.4090 +29924 80115 0.5520 +29924 83988 0.5660 +29924 84251 0.6860 +29924 84557 0.4870 +29924 85021 0.6780 +29924 85439 0.4650 +29924 92714 0.4370 +29924 115548 0.7130 +29924 122616 0.5430 +29924 130162 0.4980 +29924 130340 0.5700 +29924 143187 0.4180 +29924 150350 0.5750 +29924 255324 0.4990 +29925 29926 0.9990 +29925 29927 0.5450 +29925 29954 0.8540 +29925 50814 0.5430 +29925 51005 0.4530 +29925 51510 0.4230 +29925 54187 0.6970 +29925 54344 0.7720 +29925 55176 0.4950 +29925 55276 0.6170 +29925 55300 0.4240 +29925 55343 0.4220 +29925 55624 0.7850 +29925 55780 0.4050 +29925 56052 0.7200 +29925 58497 0.6010 +29925 60678 0.4060 +29925 60684 0.5740 +29925 64083 0.6930 +29925 79053 0.4660 +29925 79147 0.8240 +29925 79174 0.7550 +29925 79644 0.4870 +29925 79947 0.4660 +29925 80146 0.6900 +29925 80270 0.5160 +29925 80335 0.5040 +29925 81567 0.6480 +29925 84197 0.7880 +29925 84892 0.8180 +29925 85365 0.6520 +29925 93517 0.5120 +29925 124093 0.4110 +29925 148789 0.7980 +29925 197258 0.4910 +29925 199857 0.7040 +29925 201595 0.4040 +29925 203859 0.5060 +29925 255308 0.4020 +29925 283209 0.6470 +29925 284098 0.5110 +29925 285489 0.6020 +29925 339416 0.4620 +29925 347733 0.4640 +29925 375790 0.4850 +29925 386724 0.5940 +29925 440138 0.5060 +29925 644974 0.5650 +29925 729920 0.6160 +29926 50814 0.5210 +29926 51005 0.5610 +29926 53838 0.4690 +29926 54187 0.6580 +29926 54344 0.8710 +29926 54867 0.4650 +29926 55220 0.4700 +29926 55276 0.5870 +29926 55343 0.4970 +29926 55624 0.4250 +29926 56052 0.9250 +29926 60678 0.4280 +29926 64083 0.8060 +29926 79053 0.4320 +29926 79586 0.5520 +29926 80146 0.5170 +29926 80270 0.5210 +29926 85365 0.5280 +29926 93517 0.5120 +29926 197258 0.5970 +29926 201595 0.4900 +29926 255308 0.4020 +29926 283209 0.5810 +29926 284098 0.5160 +29926 440138 0.5710 +29926 644974 0.4620 +29927 30001 0.4950 +29927 50808 0.5730 +29927 51009 0.6900 +29927 51021 0.9160 +29927 51069 0.8720 +29927 51073 0.8810 +29927 51081 0.8620 +29927 51116 0.7880 +29927 51121 0.9760 +29927 51149 0.6790 +29927 51154 0.8640 +29927 51234 0.5370 +29927 51264 0.8160 +29927 51290 0.4360 +29927 51319 0.4150 +29927 51398 0.4610 +29927 51465 0.5810 +29927 51608 0.5280 +29927 51614 0.5310 +29927 51726 0.8050 +29927 51727 0.5650 +29927 51806 0.5660 +29927 54431 0.5670 +29927 54499 0.9380 +29927 54732 0.4650 +29927 54867 0.7780 +29927 54948 0.8170 +29927 55052 0.7110 +29927 55143 0.4660 +29927 55157 0.4070 +29927 55173 0.8730 +29927 55176 0.9010 +29927 55218 0.5980 +29927 55272 0.8870 +29927 55316 0.8580 +29927 55379 0.4690 +29927 55437 0.5030 +29927 55526 0.4470 +29927 55559 0.4510 +29927 55591 0.6500 +29927 55651 0.4410 +29927 55666 0.6980 +29927 55703 0.7270 +29927 55741 0.4370 +29927 55770 0.5610 +29927 55831 0.5640 +29927 56605 0.4160 +29927 56886 0.5220 +29927 56926 0.9020 +29927 57003 0.9470 +29927 57130 0.4320 +29927 57136 0.6200 +29927 57506 0.4860 +29927 58477 0.9300 +29927 58505 0.9340 +29927 60559 0.6010 +29927 63875 0.9400 +29927 63931 0.8570 +29927 64083 0.4160 +29927 64374 0.9060 +29927 64714 0.5020 +29927 64960 0.6820 +29927 64963 0.8540 +29927 64965 0.8570 +29927 64968 0.9270 +29927 64969 0.8870 +29927 64979 0.9250 +29927 64983 0.7670 +29927 65003 0.7990 +29927 65005 0.9060 +29927 65008 0.8720 +29927 65121 0.6040 +29927 65122 0.6040 +29927 79139 0.9090 +29927 79590 0.8880 +29927 79631 0.6920 +29927 80305 0.4860 +29927 80777 0.4870 +29927 81502 0.6550 +29927 83460 0.5540 +29927 84061 0.7920 +29927 84172 0.7280 +29927 84447 0.9000 +29927 84522 0.6340 +29927 85476 0.7030 +29927 87178 0.6190 +29927 90701 0.7550 +29927 91319 0.6390 +29927 91860 0.5590 +29927 92335 0.5040 +29927 92399 0.5280 +29927 93380 0.4200 +29927 116832 0.6190 +29927 122481 0.5620 +29927 124454 0.5500 +29927 126402 0.8530 +29927 140801 0.9610 +29927 158067 0.5620 +29927 163688 0.5590 +29927 200185 0.4500 +29927 201595 0.9350 +29927 219927 0.7890 +29927 221264 0.5620 +29927 285521 0.8520 +29927 285855 0.8360 +29927 340061 0.6230 +29927 343068 0.6040 +29927 343070 0.6040 +29927 347487 0.7830 +29927 347733 0.4190 +29927 387129 0.8320 +29927 390999 0.6040 +29927 391002 0.6040 +29927 400735 0.6040 +29927 400736 0.6040 +29927 440026 0.4020 +29927 440560 0.6040 +29927 440561 0.6040 +29927 441873 0.6040 +29927 641776 0.6840 +29927 643909 0.6840 +29927 645359 0.6040 +29927 653619 0.6040 +29927 728524 0.6840 +29927 729528 0.6040 +29927 100128731 0.8870 +29927 100287482 0.7830 +29927 100505478 0.8320 +29927 100526842 0.9750 +29927 100529239 0.8180 +29927 100996746 0.6840 +29927 101929983 0.6040 +29927 105180390 0.6840 +29927 105180391 0.6840 +29928 29957 0.5250 +29928 51025 0.8010 +29928 51029 0.4070 +29928 51079 0.7830 +29928 51142 0.5310 +29928 51234 0.4320 +29928 51287 0.5960 +29928 54543 0.7130 +29928 54902 0.4710 +29928 54927 0.7740 +29928 54977 0.4040 +29928 55154 0.5080 +29928 55486 0.4290 +29928 55750 0.9950 +29928 55967 0.5120 +29928 56942 0.5230 +29928 56993 0.7560 +29928 65260 0.4620 +29928 79085 0.5090 +29928 79145 0.5460 +29928 80273 0.7400 +29928 84134 0.4600 +29928 84269 0.6640 +29928 84303 0.4620 +29928 90580 0.9980 +29928 90639 0.6910 +29928 92609 0.9080 +29928 94097 0.4210 +29928 112812 0.4930 +29928 114789 0.6450 +29928 119559 0.5140 +29928 125988 0.4280 +29928 131118 0.8000 +29928 131474 0.7010 +29928 134266 0.7010 +29928 140823 0.5020 +29928 150274 0.5100 +29928 158234 0.5580 +29928 197257 0.5120 +29928 221154 0.4440 +29928 284427 0.4650 +29928 286753 0.7710 +29928 374291 0.4570 +29928 388753 0.6220 +29928 400916 0.6160 +29928 401505 0.6620 +29928 440574 0.4360 +29928 727857 0.7700 +29928 100188893 0.5730 +29928 100272147 0.5320 +29928 100287932 0.9610 +29928 100288687 0.6730 +29929 29954 0.5450 +29929 51227 0.4060 +29929 54344 0.5950 +29929 54872 0.4900 +29929 55343 0.5720 +29929 55650 0.5490 +29929 55757 0.5950 +29929 55858 0.4070 +29929 56052 0.9680 +29929 56886 0.7130 +29929 57171 0.6230 +29929 79053 0.9990 +29929 79087 0.9090 +29929 79644 0.7250 +29929 79796 0.4740 +29929 79868 0.7460 +29929 79947 0.5480 +29929 80235 0.5350 +29929 84061 0.5390 +29929 84455 0.4350 +29929 84720 0.4400 +29929 84920 0.7030 +29929 85365 0.8380 +29929 93183 0.6550 +29929 114803 0.4030 +29929 144245 0.5570 +29929 199857 0.7450 +29929 201595 0.6830 +29929 440138 0.8000 +29929 553115 0.6020 +29929 100128731 0.4330 +29930 56656 0.4830 +29930 79544 0.4500 +29930 255349 0.4440 +29930 390431 0.4100 +29933 53831 0.4210 +29933 57105 0.4260 +29933 81851 0.4390 +29933 91937 0.5320 +29933 115557 0.4990 +29933 134391 0.4640 +29933 139760 0.4380 +29933 151306 0.4370 +29933 350383 0.4510 +29934 51429 0.4970 +29934 51699 0.8230 +29934 55614 0.4850 +29934 55679 0.4180 +29934 55737 0.9330 +29934 57231 0.4190 +29934 58533 0.9100 +29934 64089 0.4490 +29934 79856 0.6030 +29934 81609 0.7910 +29934 83891 0.4460 +29934 90203 0.4580 +29934 112936 0.8820 +29934 113419 0.4120 +29934 130540 0.4720 +29934 132789 0.4340 +29934 169166 0.4560 +29934 254122 0.5600 +29934 257364 0.6750 +29935 29980 0.9070 +29935 50484 0.4720 +29935 54107 0.5330 +29935 55388 0.5490 +29935 56655 0.5230 +29935 56941 0.5040 +29935 57804 0.5400 +29935 64210 0.4470 +29935 80010 0.7480 +29935 84515 0.5880 +29935 116028 0.7040 +29935 197342 0.4020 +29935 254528 0.7050 +29935 728340 0.4680 +29937 54852 0.5420 +29937 54938 0.4780 +29937 56983 0.4060 +29937 57481 0.4760 +29937 65018 0.4500 +29937 79957 0.5430 +29937 80020 0.4630 +29937 80777 0.9640 +29937 85315 0.4870 +29937 90441 0.4440 +29937 112464 0.5490 +29937 121506 0.4090 +29937 123811 0.5040 +29937 140606 0.6490 +29937 164091 0.4390 +29937 344838 0.5140 +29940 50515 0.5160 +29940 51363 0.6100 +29940 54480 0.4720 +29940 55454 0.5130 +29940 55501 0.5710 +29940 55790 0.4030 +29940 56548 0.4570 +29940 63827 0.4600 +29940 64131 0.4030 +29940 79586 0.5040 +29940 113189 0.7310 +29940 126792 0.6210 +29940 166012 0.5070 +29941 54443 0.4290 +29941 55785 0.4340 +29941 55789 0.4230 +29941 55914 0.4030 +29941 64787 0.4210 +29941 65124 0.4160 +29941 79658 0.9570 +29941 81624 0.4550 +29941 81839 0.4260 +29941 83987 0.4840 +29941 84958 0.4120 +29941 91010 0.4090 +29941 94274 0.5690 +29941 128239 0.4950 +29941 160777 0.4190 +29941 284119 0.4620 +29941 390243 0.4070 +29942 51249 0.4640 +29942 54482 0.4290 +29942 57604 0.4390 +29942 79003 0.4200 +29942 91694 0.4120 +29942 337985 0.6970 +29943 51702 0.4360 +29943 55620 0.5550 +29943 388698 0.5890 +29943 653604 0.5610 +29944 57697 0.5450 +29944 79088 0.4240 +29944 90987 0.4430 +29944 133482 0.5060 +29944 137902 0.5830 +29944 146713 0.4150 +29944 284307 0.4310 +29945 51053 0.4040 +29945 51091 0.4130 +29945 51239 0.5820 +29945 51343 0.9990 +29945 51433 0.9990 +29945 51434 0.9990 +29945 51465 0.4270 +29945 51529 0.9990 +29945 51592 0.9940 +29945 51668 0.8880 +29945 54880 0.9090 +29945 55023 0.4100 +29945 55203 0.4370 +29945 55339 0.4630 +29945 55341 0.4700 +29945 55781 0.4640 +29945 55789 0.4170 +29945 57332 0.9000 +29945 57505 0.8480 +29945 57587 0.6460 +29945 64682 0.9990 +29945 79073 0.8400 +29945 79184 0.9100 +29945 79573 0.4100 +29945 79657 0.4230 +29945 79813 0.5170 +29945 79917 0.6460 +29945 80012 0.9010 +29945 80206 0.4720 +29945 81620 0.4240 +29945 81930 0.6800 +29945 84108 0.9000 +29945 84128 0.5800 +29945 84333 0.5420 +29945 84733 0.9000 +29945 84759 0.5490 +29945 85417 0.7640 +29945 85461 0.5050 +29945 91050 0.4750 +29945 119504 0.9980 +29945 140459 0.5810 +29945 159013 0.5230 +29945 166979 0.8450 +29945 246184 0.9990 +29945 375061 0.8400 +29945 388272 0.6820 +29945 401541 0.4320 +29946 29950 0.5080 +29946 55038 0.5110 +29946 55168 0.4780 +29946 55328 0.4410 +29946 56256 0.6420 +29946 59286 0.5920 +29946 79991 0.7830 +29946 80208 0.4510 +29946 83878 0.5390 +29946 85413 0.4430 +29946 261734 0.4170 +29946 727800 0.4200 +29947 51187 0.7060 +29947 51317 0.6440 +29947 51548 0.4210 +29947 54145 0.5660 +29947 54456 0.4400 +29947 54556 0.4840 +29947 54790 0.8800 +29947 55124 0.5460 +29947 55170 0.4700 +29947 55211 0.4170 +29947 55766 0.5280 +29947 57683 0.4190 +29947 63978 0.5540 +29947 79813 0.5560 +29947 79923 0.5360 +29947 80312 0.6820 +29947 84108 0.4120 +29947 84444 0.5070 +29947 84733 0.4490 +29947 84944 0.4060 +29947 85236 0.5640 +29947 90853 0.7380 +29947 94239 0.5230 +29947 121536 0.4770 +29947 122402 0.6600 +29947 126961 0.8740 +29947 128209 0.4530 +29947 128312 0.5640 +29947 132625 0.6260 +29947 143689 0.7310 +29947 171023 0.4420 +29947 200424 0.6570 +29947 221656 0.6700 +29947 255626 0.5840 +29947 333932 0.8170 +29947 339345 0.5080 +29947 340168 0.4940 +29947 346171 0.6460 +29947 359787 0.6220 +29947 440093 0.9980 +29947 440686 0.9980 +29947 474382 0.5280 +29947 653604 0.9990 +29947 100170841 0.4050 +29948 140809 0.5930 +29948 100287284 0.4040 +29949 50604 0.9190 +29949 50615 0.7270 +29949 50616 0.8300 +29949 53832 0.9980 +29949 53833 0.9980 +29949 55801 0.8970 +29949 56300 0.5700 +29949 58985 0.9520 +29949 60468 0.4100 +29949 64096 0.4560 +29949 80018 0.4240 +29949 85480 0.4660 +29949 90865 0.4210 +29949 112744 0.5330 +29949 114904 0.4240 +29949 116379 0.8630 +29949 146433 0.4340 +29949 149233 0.7630 +29949 163702 0.8520 +29949 200081 0.5090 +29949 282616 0.6450 +29949 282617 0.5110 +29949 282618 0.6620 +29949 386653 0.4790 +29950 51278 0.4300 +29950 51654 0.4190 +29950 55038 0.8900 +29950 56256 0.7000 +29950 57542 0.4460 +29950 57658 0.4130 +29950 64651 0.5940 +29950 79991 0.7610 +29950 84317 0.4270 +29950 90007 0.4780 +29951 57484 0.4180 +29951 59353 0.4320 +29951 83860 0.5120 +29951 84708 0.5620 +29951 124976 0.4060 +29951 164832 0.4870 +29951 222484 0.5650 +29951 340542 0.4730 +29951 387856 0.4260 +29951 403277 0.4330 +29951 404217 0.4350 +29952 51056 0.4290 +29952 54414 0.4410 +29952 54878 0.8780 +29952 54949 0.4280 +29952 55684 0.5060 +29952 57628 0.5550 +29952 91039 0.8810 +29953 54858 0.6860 +29954 51744 0.4090 +29954 54344 0.8130 +29954 55624 0.9980 +29954 56886 0.4150 +29954 57190 0.4780 +29954 58157 0.4850 +29954 60684 0.5270 +29954 63905 0.4380 +29954 79087 0.4310 +29954 79147 0.9870 +29954 79644 0.4010 +29954 83857 0.4180 +29954 84197 0.8470 +29954 84892 0.9860 +29954 84899 0.4450 +29954 113178 0.4590 +29954 120071 0.7410 +29954 133584 0.6480 +29954 145173 0.4340 +29954 146664 0.5720 +29954 148789 0.8510 +29954 160418 0.4540 +29954 162461 0.4140 +29954 203859 0.7440 +29954 285203 0.5150 +29954 375790 0.7450 +29954 729920 0.7580 +29956 54898 0.4470 +29956 55304 0.7560 +29956 55331 0.9610 +29956 55512 0.9510 +29956 55627 0.9520 +29956 56624 0.9610 +29956 56848 0.9620 +29956 57704 0.9370 +29956 60481 0.6150 +29956 64781 0.9670 +29956 64834 0.8420 +29956 79071 0.5230 +29956 79152 0.4370 +29956 79603 0.9400 +29956 79993 0.5740 +29956 81537 0.9490 +29956 83401 0.5060 +29956 83723 0.7290 +29956 84197 0.5550 +29956 84904 0.4790 +29956 91012 0.9400 +29956 123099 0.9640 +29956 124976 0.4170 +29956 125981 0.9580 +29956 129642 0.4150 +29956 130367 0.9400 +29956 166929 0.9600 +29956 171546 0.4410 +29956 204219 0.9060 +29956 253782 0.9460 +29956 259230 0.9640 +29956 339221 0.9330 +29956 340485 0.9640 +29957 51079 0.7730 +29957 51103 0.5200 +29957 54979 0.4810 +29957 55750 0.4180 +29957 55967 0.7510 +29957 57407 0.4320 +29957 58509 0.4330 +29957 79728 0.5120 +29957 80195 0.4200 +29957 84939 0.5780 +29957 91860 0.5730 +29957 112812 0.4060 +29957 139221 0.5780 +29957 154091 0.4100 +29957 374291 0.7530 +29957 401612 0.4030 +29957 493856 0.4400 +29957 728317 0.5780 +29958 29968 0.5410 +29958 51015 0.4670 +29958 51179 0.4350 +29958 51268 0.9680 +29958 55349 0.6180 +29958 55526 0.4350 +29958 55753 0.4450 +29958 56954 0.4060 +29958 63929 0.4090 +29958 64902 0.5520 +29958 79072 0.4090 +29958 79763 0.4670 +29958 81034 0.5060 +29958 85378 0.4190 +29958 114112 0.4370 +29958 123263 0.5290 +29958 123876 0.4400 +29958 160428 0.5810 +29958 200205 0.6780 +29958 200895 0.6280 +29958 441024 0.8250 +29958 730249 0.6340 +29959 55968 0.4550 +29959 64838 0.5120 +29959 79635 0.6170 +29959 81618 0.4070 +29959 81628 0.9200 +29959 84450 0.5820 +29959 130557 0.4910 +29959 150864 0.4310 +29959 199870 0.4420 +29959 200634 0.6260 +29959 340371 0.7090 +29959 389941 0.4480 +29960 29997 0.7140 +29960 51001 0.5440 +29960 51032 0.4200 +29960 51069 0.8390 +29960 51073 0.8900 +29960 51081 0.4440 +29960 51095 0.4300 +29960 51106 0.6780 +29960 51121 0.5220 +29960 51154 0.5660 +29960 51187 0.8560 +29960 51204 0.4090 +29960 51253 0.8130 +29960 51258 0.8100 +29960 51263 0.8200 +29960 51264 0.8550 +29960 51318 0.8200 +29960 51388 0.7530 +29960 51530 0.5130 +29960 51602 0.7460 +29960 51605 0.7600 +29960 51642 0.8200 +29960 51647 0.5550 +29960 51654 0.4270 +29960 54148 0.8160 +29960 54534 0.8130 +29960 54552 0.4790 +29960 54663 0.7860 +29960 54802 0.7970 +29960 54888 0.6090 +29960 54920 0.4540 +29960 54931 0.6110 +29960 54948 0.8420 +29960 54989 0.4130 +29960 55006 0.7980 +29960 55052 0.8080 +29960 55127 0.4220 +29960 55131 0.4400 +29960 55140 0.4570 +29960 55146 0.4020 +29960 55153 0.4210 +29960 55168 0.8630 +29960 55178 0.8570 +29960 55226 0.4390 +29960 55299 0.7360 +29960 55341 0.5300 +29960 55621 0.4640 +29960 55687 0.4390 +29960 55695 0.5360 +29960 55720 0.4290 +29960 55759 0.7580 +29960 55783 0.4440 +29960 55794 0.6650 +29960 56342 0.4040 +29960 56945 0.4050 +29960 57050 0.4350 +29960 57129 0.8220 +29960 57570 0.5750 +29960 60487 0.4760 +29960 60528 0.5140 +29960 63875 0.8200 +29960 63892 0.6650 +29960 63899 0.6300 +29960 64216 0.5750 +29960 64318 0.8400 +29960 64928 0.8190 +29960 64975 0.8010 +29960 64976 0.8280 +29960 64978 0.8320 +29960 64979 0.8820 +29960 64981 0.8090 +29960 64983 0.8250 +29960 65003 0.8480 +29960 65005 0.8200 +29960 65080 0.8840 +29960 78988 0.8010 +29960 79034 0.5140 +29960 79159 0.5410 +29960 79590 0.9040 +29960 79730 0.4600 +29960 79736 0.4110 +29960 79863 0.5270 +29960 79922 0.9240 +29960 79979 0.6570 +29960 80135 0.7270 +29960 80324 0.6160 +29960 81570 0.4770 +29960 81627 0.4720 +29960 83480 0.4760 +29960 84128 0.4170 +29960 84135 0.6060 +29960 84154 0.5700 +29960 84273 0.6920 +29960 84311 0.8050 +29960 84365 0.8610 +29960 84545 0.8110 +29960 84549 0.7100 +29960 84618 0.4290 +29960 84705 0.4780 +29960 84769 0.4160 +29960 84881 0.7230 +29960 84946 0.4120 +29960 85865 0.7500 +29960 87178 0.4020 +29960 90353 0.4590 +29960 90480 0.8010 +29960 91574 0.4430 +29960 91664 0.4040 +29960 92170 0.9730 +29960 93034 0.4290 +29960 113444 0.6060 +29960 115416 0.9480 +29960 115708 0.6320 +29960 115992 0.4280 +29960 116540 0.8470 +29960 116541 0.8150 +29960 117246 0.4090 +29960 122704 0.8080 +29960 124454 0.4910 +29960 124995 0.8260 +29960 128308 0.8050 +29960 130916 0.9400 +29960 142940 0.5320 +29960 196074 0.6400 +29960 198437 0.4340 +29960 200916 0.5060 +29960 219927 0.8180 +29960 221078 0.5510 +29960 285367 0.5140 +29960 285855 0.5970 +29960 387129 0.5680 +29960 387338 0.9650 +29960 100505478 0.5680 +29960 100526794 0.4290 +29960 127898561 0.8000 +29964 29984 0.4130 +29964 51057 0.4240 +29964 51154 0.4230 +29964 53904 0.5570 +29964 55604 0.5400 +29964 56940 0.5470 +29964 57216 0.9960 +29964 57584 0.6460 +29964 64236 0.5810 +29964 64318 0.4370 +29964 64900 0.4100 +29964 79633 0.4330 +29964 81839 0.9870 +29964 83700 0.5700 +29964 83715 0.5710 +29964 92521 0.5400 +29964 219537 0.5400 +29964 254102 0.5510 +29964 342527 0.5400 +29965 51202 0.4100 +29965 51537 0.4050 +29965 57697 0.5320 +29965 83737 0.4860 +29966 50488 0.7660 +29966 51765 0.9980 +29966 54764 0.6720 +29966 55012 0.4720 +29966 55844 0.4520 +29966 55917 0.9990 +29966 57464 0.9990 +29966 63978 0.5990 +29966 80143 0.9990 +29966 80206 0.5560 +29966 80342 0.9960 +29966 83605 0.4060 +29966 83992 0.9980 +29966 84260 0.4140 +29966 84978 0.4100 +29966 85369 0.9990 +29966 342096 0.4180 +29967 55133 0.4110 +29967 84918 0.4900 +29967 221914 0.4130 +29967 375790 0.5750 +29967 388677 0.6090 +29967 100996717 0.7220 +29967 101060226 0.5460 +29968 51557 0.4030 +29968 53347 0.5500 +29968 54995 0.4530 +29968 55034 0.4040 +29968 55163 0.5690 +29968 55258 0.5120 +29968 55748 0.5970 +29968 57026 0.4330 +29968 57698 0.4470 +29968 57761 0.4760 +29968 60558 0.7550 +29968 63826 0.4830 +29968 65263 0.4190 +29968 79094 0.5540 +29968 79896 0.5230 +29968 81932 0.7570 +29968 84131 0.7520 +29968 84188 0.4260 +29968 84705 0.4320 +29968 84706 0.7240 +29968 84735 0.6030 +29968 84959 0.5500 +29968 93100 0.4720 +29968 113675 0.4110 +29968 120103 0.4350 +29968 122622 0.4600 +29968 123263 0.4370 +29968 137362 0.4050 +29968 140838 0.7440 +29968 148811 0.6030 +29968 158158 0.4370 +29968 160428 0.5420 +29968 162417 0.4260 +29968 283871 0.4210 +29968 285148 0.4450 +29968 441024 0.5210 +29968 441531 0.4320 +29968 642475 0.4720 +29968 100526760 0.5960 +29970 54899 0.4120 +29970 57551 0.7500 +29970 60592 0.6270 +29970 644994 0.5060 +29970 654502 0.9850 +29974 51460 0.4460 +29974 55285 0.4720 +29974 55867 0.4980 +29974 56339 0.5590 +29974 56606 0.5110 +29974 56984 0.5960 +29974 57721 0.5550 +29974 60489 0.8230 +29974 64783 0.5680 +29974 79369 0.5680 +29974 79789 0.4090 +29974 79872 0.5400 +29974 80128 0.5160 +29974 84262 0.4680 +29974 92912 0.5190 +29974 116085 0.4350 +29974 134285 0.5670 +29974 164668 0.7130 +29974 200315 0.7130 +29974 200316 0.8430 +29974 220963 0.4830 +29974 403314 0.7700 +29978 29979 0.4920 +29978 29988 0.5280 +29978 30011 0.5420 +29978 50618 0.5910 +29978 51035 0.4080 +29978 51065 0.4910 +29978 51069 0.4600 +29978 51081 0.4480 +29978 51121 0.4240 +29978 51154 0.4250 +29978 51377 0.5310 +29978 51608 0.4060 +29978 51651 0.5390 +29978 51667 0.4080 +29978 54664 0.5010 +29978 54948 0.4020 +29978 55173 0.4490 +29978 55255 0.4110 +29978 55272 0.4430 +29978 55316 0.4790 +29978 55432 0.4600 +29978 55611 0.5070 +29978 55666 0.6800 +29978 55707 0.5610 +29978 55768 0.6050 +29978 55830 0.4840 +29978 55831 0.6500 +29978 56675 0.4040 +29978 56851 0.6680 +29978 56893 0.5720 +29978 57448 0.4080 +29978 57679 0.7330 +29978 58513 0.6450 +29978 63931 0.4620 +29978 64374 0.4010 +29978 64963 0.5110 +29978 64969 0.4250 +29978 65008 0.4090 +29978 65018 0.5560 +29978 65991 0.4020 +29978 79590 0.4250 +29978 80208 0.6730 +29978 83473 0.4810 +29978 83714 0.4040 +29978 83737 0.4250 +29978 84231 0.5610 +29978 84251 0.5510 +29978 84301 0.6750 +29978 84678 0.4800 +29978 84936 0.5250 +29978 84991 0.5010 +29978 84993 0.8870 +29978 85021 0.5550 +29978 85439 0.5380 +29978 90019 0.5050 +29978 92552 0.6880 +29978 93380 0.7230 +29978 114987 0.4460 +29978 115548 0.6040 +29978 126402 0.4410 +29978 127833 0.5050 +29978 134510 0.5410 +29978 140032 0.4780 +29978 140775 0.4040 +29978 142678 0.4160 +29978 143425 0.5110 +29978 144983 0.4660 +29978 197131 0.5070 +29978 200916 0.4090 +29978 203228 0.8710 +29978 220988 0.6190 +29978 221302 0.5670 +29978 255324 0.4990 +29978 342371 0.4040 +29978 347487 0.4110 +29978 400916 0.7060 +29978 414301 0.7700 +29978 441518 0.4610 +29978 729447 0.4360 +29978 100529097 0.4480 +29978 100529239 0.4200 +29979 51035 0.4860 +29979 51065 0.4930 +29979 51069 0.4630 +29979 51073 0.4010 +29979 51081 0.4500 +29979 51107 0.4570 +29979 51121 0.4680 +29979 51154 0.4290 +29979 51251 0.4040 +29979 51271 0.4980 +29979 51304 0.4340 +29979 51377 0.6960 +29979 51386 0.4060 +29979 51651 0.5530 +29979 51667 0.4690 +29979 54948 0.4940 +29979 55040 0.5370 +29979 55173 0.4610 +29979 55272 0.4490 +29979 55316 0.4590 +29979 55333 0.4240 +29979 55432 0.4500 +29979 55611 0.5710 +29979 55666 0.6650 +29979 55768 0.5920 +29979 56675 0.4060 +29979 56893 0.7850 +29979 57448 0.4230 +29979 57488 0.5120 +29979 58513 0.7010 +29979 60626 0.4770 +29979 63931 0.4860 +29979 64374 0.4490 +29979 64963 0.5110 +29979 64969 0.4280 +29979 65008 0.4170 +29979 65018 0.4760 +29979 79139 0.4070 +29979 79258 0.4150 +29979 79590 0.4250 +29979 80173 0.7290 +29979 80227 0.4020 +29979 80318 0.4830 +29979 83473 0.4770 +29979 83714 0.4040 +29979 84231 0.5610 +29979 84301 0.6630 +29979 84557 0.7660 +29979 84678 0.4840 +29979 84993 0.8840 +29979 92552 0.9210 +29979 114987 0.4460 +29979 119391 0.4370 +29979 126402 0.4410 +29979 134510 0.4970 +29979 140032 0.4780 +29979 197131 0.5410 +29979 200916 0.4130 +29979 201134 0.4300 +29979 203228 0.4360 +29979 221302 0.6320 +29979 347487 0.4110 +29979 374768 0.5730 +29979 414301 0.7950 +29979 645073 0.4280 +29979 729428 0.4340 +29979 100529097 0.4480 +29979 100529239 0.4200 +29979 102724473 0.4630 +29980 51053 0.5930 +29980 51514 0.5210 +29980 51750 0.4150 +29980 54069 0.4020 +29980 54514 0.4100 +29980 54892 0.4440 +29980 54962 0.5910 +29980 55071 0.4900 +29980 55388 0.5500 +29980 55835 0.5190 +29980 57415 0.4600 +29980 57473 0.4430 +29980 57697 0.5680 +29980 57804 0.5400 +29980 59271 0.5810 +29980 64785 0.4720 +29980 64968 0.5730 +29980 79075 0.5660 +29980 79915 0.4030 +29980 81620 0.5380 +29980 83540 0.4470 +29980 84296 0.4830 +29980 90381 0.5330 +29980 162681 0.4340 +29980 201973 0.4420 +29980 254394 0.4050 +29980 259266 0.4320 +29980 284992 0.5190 +29982 30849 0.9990 +29982 51100 0.5540 +29982 53349 0.5420 +29982 55014 0.4180 +29982 55054 0.4610 +29982 55062 0.4390 +29982 55352 0.4450 +29982 55626 0.9230 +29982 56270 0.4330 +29982 57521 0.4620 +29982 60592 0.4480 +29982 60673 0.9620 +29982 64422 0.5780 +29982 65082 0.5570 +29982 83734 0.4150 +29982 84315 0.4360 +29982 221035 0.4580 +29982 286826 0.4180 +29982 387104 0.5660 +29982 441925 0.9340 +29984 50618 0.5680 +29984 51479 0.8440 +29984 55006 0.4180 +29984 55114 0.4300 +29984 55240 0.5620 +29984 55558 0.9130 +29984 55789 0.4580 +29984 55917 0.4260 +29984 56924 0.8000 +29984 57144 0.6320 +29984 57584 0.5000 +29984 65124 0.4150 +29984 79180 0.5640 +29984 80728 0.6150 +29984 81624 0.7770 +29984 81839 0.5810 +29984 84681 0.5540 +29984 84886 0.5430 +29984 91010 0.4450 +29984 91584 0.9220 +29984 94134 0.5520 +29984 114793 0.4400 +29984 114822 0.4760 +29984 123720 0.8300 +29984 144165 0.4130 +29984 144402 0.5430 +29984 158747 0.5960 +29984 166336 0.4130 +29984 101059918 0.5630 +29985 55334 0.7330 +29985 55532 0.4700 +29985 55630 0.7500 +29985 55676 0.5670 +29985 57181 0.6580 +29985 64116 0.6490 +29985 64924 0.5450 +29985 91252 0.6840 +29985 148867 0.5420 +29985 169026 0.4120 +29985 201266 0.7790 +29985 221074 0.6840 +29985 283375 0.6900 +29985 345778 0.4790 +29986 51000 0.4580 +29986 51006 0.5000 +29986 55334 0.7310 +29986 55343 0.4410 +29986 55532 0.5110 +29986 55630 0.7350 +29986 55676 0.6630 +29986 57181 0.6550 +29986 57412 0.4300 +29986 64116 0.6470 +29986 64924 0.5300 +29986 80740 0.5550 +29986 91252 0.6860 +29986 116173 0.4020 +29986 148867 0.5920 +29986 152519 0.4600 +29986 169026 0.4370 +29986 201266 0.7510 +29986 221074 0.7270 +29986 283375 0.6870 +29986 345778 0.4790 +29988 51021 0.4210 +29988 51073 0.4060 +29988 51081 0.4210 +29988 51264 0.4040 +29988 54438 0.4200 +29988 54629 0.4210 +29988 56606 0.4100 +29988 63875 0.4030 +29988 63931 0.4030 +29988 64960 0.4110 +29988 64969 0.4010 +29988 64979 0.4220 +29988 66035 0.5260 +29988 81031 0.4330 +29988 81577 0.4450 +29988 84545 0.4690 +29988 115584 0.4300 +29988 155184 0.4300 +29988 200010 0.4640 +29988 387775 0.5320 +29989 29991 0.7310 +29989 138307 0.5310 +29989 149954 0.4200 +29989 158062 0.4450 +29989 286256 0.4830 +29989 389812 0.5600 +29989 392399 0.4270 +29989 401562 0.4290 +29989 646603 0.4780 +29990 29992 0.9780 +29990 55063 0.6080 +29990 64231 0.4030 +29990 80724 0.4030 +29990 89122 0.4220 +29990 145173 0.4180 +29990 222950 0.5090 +29990 387715 0.4460 +29990 402573 0.4740 +29991 55223 0.4380 +29991 57582 0.4220 +29991 79770 0.4200 +29991 81628 0.4340 +29991 92579 0.4150 +29991 138307 0.6850 +29991 140683 0.4240 +29991 149076 0.4800 +29991 149954 0.4130 +29991 153090 0.4190 +29991 158062 0.5760 +29991 158135 0.5080 +29991 200879 0.4940 +29991 286256 0.6120 +29991 360203 0.5740 +29991 389812 0.5830 +29991 392399 0.6210 +29991 402381 0.4260 +29991 414332 0.4820 +29991 100287482 0.4460 +29992 50856 0.5550 +29992 51311 0.4890 +29992 53828 0.4670 +29992 54209 0.4690 +29992 55063 0.5770 +29992 56654 0.8260 +29992 56901 0.4440 +29992 64231 0.5640 +29992 79168 0.4740 +29992 79890 0.4320 +29992 79932 0.4330 +29992 80059 0.6120 +29992 81035 0.8290 +29992 84651 0.4590 +29992 132671 0.4160 +29992 146862 0.4140 +29992 196500 0.8520 +29992 222950 0.4840 +29992 283358 0.6000 +29992 338707 0.5950 +29992 339390 0.7150 +29992 353345 0.4140 +29992 402573 0.4520 +29992 408187 0.5410 +29992 643394 0.5060 +29993 30011 0.4460 +29993 30844 0.5590 +29993 30845 0.6770 +29993 50807 0.4460 +29993 50944 0.4880 +29993 54874 0.4230 +29993 55084 0.8090 +29993 55114 0.5220 +29993 55660 0.4620 +29993 64145 0.4990 +29993 83737 0.4240 +29993 83887 0.4320 +29993 89848 0.4910 +29993 90113 0.4070 +29993 114798 0.4350 +29993 115548 0.6430 +29993 116443 0.4010 +29993 147699 0.4510 +29993 170712 0.4180 +29993 344558 0.4470 +29993 387509 0.4220 +29994 50810 0.4400 +29994 54107 0.7490 +29994 54108 0.5460 +29994 54454 0.4940 +29994 55870 0.4780 +29994 80205 0.5080 +29994 83852 0.4960 +29994 85461 0.4080 +29994 151525 0.8050 +29994 221037 0.4750 +29995 54460 0.4410 +29995 89780 0.4070 +29995 342865 0.4460 +29997 29998 0.7780 +29997 30836 0.7050 +29997 50636 0.4070 +29997 51013 0.5440 +29997 51018 0.9300 +29997 51042 0.8070 +29997 51068 0.7700 +29997 51069 0.5400 +29997 51073 0.4830 +29997 51077 0.4540 +29997 51082 0.5400 +29997 51096 0.8220 +29997 51106 0.4870 +29997 51118 0.7200 +29997 51119 0.4350 +29997 51121 0.8340 +29997 51154 0.8680 +29997 51187 0.9780 +29997 51202 0.6160 +29997 51386 0.4730 +29997 51388 0.9140 +29997 51490 0.6080 +29997 51575 0.8720 +29997 51602 0.8070 +29997 51605 0.5500 +29997 54475 0.9850 +29997 54512 0.4120 +29997 54552 0.8690 +29997 54606 0.6640 +29997 54663 0.7470 +29997 54865 0.4080 +29997 54888 0.4100 +29997 54948 0.4690 +29997 54984 0.6580 +29997 55003 0.6410 +29997 55011 0.6460 +29997 55051 0.5310 +29997 55131 0.9240 +29997 55153 0.9950 +29997 55226 0.6450 +29997 55272 0.4750 +29997 55299 0.8270 +29997 55319 0.6670 +29997 55341 0.7860 +29997 55591 0.5460 +29997 55596 0.5040 +29997 55601 0.5680 +29997 55646 0.7420 +29997 55651 0.6320 +29997 55703 0.4460 +29997 55720 0.6840 +29997 55759 0.6850 +29997 55781 0.5180 +29997 55794 0.4440 +29997 55813 0.6370 +29997 56342 0.6910 +29997 56647 0.4240 +29997 56829 0.4790 +29997 57050 0.9400 +29997 57062 0.7350 +29997 57379 0.4800 +29997 57414 0.4290 +29997 57418 0.6210 +29997 57696 0.5300 +29997 64061 0.4770 +29997 64216 0.4920 +29997 64318 0.7420 +29997 64374 0.4690 +29997 64425 0.4890 +29997 64434 0.4090 +29997 64794 0.5090 +29997 65003 0.4660 +29997 65008 0.5170 +29997 65083 0.4620 +29997 65095 0.7440 +29997 79039 0.8960 +29997 79050 0.5740 +29997 79159 0.6810 +29997 79590 0.6440 +29997 79759 0.4010 +29997 79954 0.8340 +29997 80135 0.8510 +29997 83732 0.4750 +29997 83743 0.7130 +29997 84135 0.5160 +29997 84154 0.9940 +29997 84172 0.5840 +29997 84186 0.5930 +29997 84240 0.4540 +29997 84273 0.5920 +29997 84294 0.7190 +29997 84310 0.5660 +29997 84319 0.8330 +29997 84365 0.9890 +29997 84549 0.8640 +29997 84916 0.7150 +29997 84946 0.8490 +29997 85364 0.4290 +29997 88745 0.6440 +29997 90121 0.5250 +29997 92170 0.5640 +29997 92856 0.8190 +29997 116832 0.8600 +29997 116966 0.4410 +29997 117246 0.9970 +29997 124245 0.4010 +29997 124454 0.4760 +29997 140801 0.8690 +29997 142940 0.7320 +29997 145501 0.4360 +29997 146212 0.4180 +29997 148362 0.4440 +29997 153443 0.5650 +29997 155368 0.4020 +29997 196441 0.4130 +29997 200916 0.7700 +29997 221078 0.7060 +29997 221830 0.4090 +29997 254268 0.7780 +29997 260425 0.4560 +29997 285855 0.8910 +29997 387129 0.7250 +29997 645051 0.5070 +29997 645073 0.5070 +29997 692312 0.7180 +29997 729396 0.5070 +29997 729422 0.5070 +29997 729428 0.5070 +29997 729431 0.5070 +29997 729442 0.5070 +29997 729447 0.5070 +29997 100008586 0.5070 +29997 100132399 0.5070 +29997 100505478 0.6970 +29997 100526842 0.7620 +29997 100529097 0.5080 +29997 102723407 0.4330 +29997 102724473 0.5070 +29998 51188 0.4590 +29998 51412 0.8330 +29998 53335 0.9180 +29998 54904 0.5490 +29998 55193 0.9280 +29998 55274 0.8710 +29998 57492 0.9780 +29998 64919 0.9100 +29998 65980 0.9990 +29998 79915 0.6030 +29998 196528 0.9530 +29998 729956 0.4030 +29999 50613 0.4050 +29999 54752 0.5420 +29999 79571 0.5400 +29999 84691 0.5240 +29999 130560 0.4370 +29999 132141 0.5430 +29999 135886 0.5310 +29999 149699 0.4790 +29999 150350 0.4260 +29999 220047 0.4250 +29999 221409 0.4330 +29999 246777 0.4070 +29999 317719 0.4800 +29999 338661 0.6750 +29999 100289187 0.4600 +29999 101927581 0.4420 +30000 51194 0.6870 +30000 51398 0.5240 +30000 51501 0.4290 +30000 53371 0.4950 +30000 54487 0.4360 +30000 55319 0.5260 +30000 55705 0.8790 +30000 55916 0.7110 +30000 56000 0.5720 +30000 56001 0.6390 +30000 57510 0.5660 +30000 57727 0.4230 +30000 64328 0.5920 +30000 64901 0.5450 +30000 79711 0.6980 +30000 79882 0.7920 +30000 79968 0.5140 +30000 81626 0.4160 +30000 124540 0.5410 +30000 283383 0.5630 +30000 286753 0.4370 +30000 402569 0.4920 +30000 728343 0.6380 +30000 100101267 0.4170 +30001 51060 0.5690 +30001 51122 0.4130 +30001 51290 0.4190 +30001 51360 0.4140 +30001 51614 0.4100 +30001 51726 0.4930 +30001 54205 0.4410 +30001 54431 0.7030 +30001 56605 0.9610 +30001 56886 0.4140 +30001 56975 0.4160 +30001 57544 0.4140 +30001 57761 0.4560 +30001 64714 0.8470 +30001 64802 0.4260 +30001 79139 0.4180 +30001 81542 0.5180 +30001 81567 0.9760 +30001 91582 0.4320 +30001 121506 0.4610 +30001 169714 0.5230 +30001 204474 0.4160 +30001 339416 0.4730 +30001 493869 0.8460 +30008 51226 0.5680 +30008 51450 0.4670 +30008 54453 0.4040 +30008 54557 0.4180 +30008 54587 0.5050 +30008 60681 0.6330 +30008 80781 0.4900 +30008 81031 0.6730 +30008 84695 0.4170 +30008 84913 0.4140 +30008 85365 0.7290 +30008 92344 0.6380 +30008 389136 0.4160 +30009 50615 0.6620 +30009 50616 0.7740 +30009 50943 0.9340 +30009 51043 0.5890 +30009 51176 0.5140 +30009 51284 0.5130 +30009 51348 0.5070 +30009 51497 0.4180 +30009 51554 0.4020 +30009 51561 0.6840 +30009 51744 0.6150 +30009 53637 0.4560 +30009 54106 0.5340 +30009 55509 0.4280 +30009 55540 0.4870 +30009 55801 0.4110 +30009 56253 0.4520 +30009 57379 0.4220 +30009 57823 0.4850 +30009 59067 0.5010 +30009 60468 0.4740 +30009 64127 0.4500 +30009 64919 0.4420 +30009 80380 0.4790 +30009 80381 0.6860 +30009 80854 0.8410 +30009 83416 0.5200 +30009 83417 0.4220 +30009 84868 0.7010 +30009 84969 0.4380 +30009 85480 0.5700 +30009 90865 0.6080 +30009 112744 0.8430 +30009 114836 0.5320 +30009 115352 0.4270 +30009 140690 0.4540 +30009 149233 0.8180 +30009 151888 0.5850 +30009 169355 0.4020 +30009 201633 0.7350 +30009 246778 0.7320 +30009 253260 0.4970 +30009 257101 0.6780 +30009 259197 0.6150 +30009 100133941 0.4700 +30009 100532731 0.4290 +30010 54413 0.4180 +30010 54471 0.4220 +30010 57502 0.4070 +30010 57555 0.4140 +30010 57795 0.6590 +30010 59284 0.4200 +30010 79573 0.4700 +30010 81832 0.4200 +30010 132204 0.5290 +30010 140679 0.4020 +30010 140689 0.5650 +30010 339479 0.5520 +30010 342865 0.4100 +30010 346389 0.4130 +30010 347730 0.5760 +30010 347731 0.5560 +30010 407738 0.4280 +30010 654502 0.4480 +30011 50618 0.6500 +30011 50807 0.9170 +30011 51100 0.6900 +30011 51429 0.6340 +30011 51495 0.4070 +30011 54443 0.6910 +30011 55114 0.8280 +30011 55367 0.4180 +30011 55604 0.5700 +30011 55752 0.4080 +30011 56904 0.8550 +30011 57522 0.4080 +30011 58513 0.6710 +30011 64411 0.8760 +30011 65059 0.4250 +30011 79720 0.5000 +30011 79822 0.4220 +30011 83548 0.4350 +30011 83892 0.4340 +30011 85360 0.4570 +30011 85377 0.5480 +30011 90627 0.4760 +30011 92241 0.4010 +30011 92799 0.7410 +30011 93343 0.7140 +30011 114757 0.5770 +30011 116985 0.9430 +30011 118788 0.5410 +30011 128866 0.4690 +30011 129138 0.4180 +30011 133482 0.4910 +30011 136991 0.5170 +30011 145508 0.4610 +30011 219790 0.4090 +30011 222235 0.4200 +30011 255324 0.4990 +30011 286451 0.4100 +30011 343578 0.4050 +30011 359948 0.4540 +30011 389856 0.4380 +30011 390714 0.4060 +30012 53346 0.4490 +30012 55251 0.4200 +30012 55294 0.4520 +30012 57084 0.4510 +30012 59336 0.5270 +30012 64211 0.4380 +30012 64843 0.4580 +30012 64901 0.7980 +30012 64919 0.8140 +30012 84159 0.4180 +30012 84295 0.8960 +30012 147991 0.4230 +30012 167826 0.4240 +30012 170302 0.5040 +30012 256297 0.5440 +30012 286530 0.5530 +30012 375790 0.5860 +30012 648791 0.4090 +30014 30848 0.4840 +30014 51438 0.4400 +30014 54763 0.4160 +30014 64663 0.9990 +30014 64693 0.4750 +30014 139135 0.4150 +30014 158511 0.4590 +30014 158809 0.4510 +30014 203569 0.4470 +30014 389860 0.4160 +30014 389903 0.5070 +30014 441525 0.8460 +30014 541466 0.6100 +30014 548313 0.4040 +30014 645073 0.4520 +30014 653220 0.5300 +30014 728075 0.5070 +30014 728695 0.9990 +30014 728712 0.9990 +30014 729428 0.5300 +30014 729447 0.5090 +30014 102723547 0.4790 +30061 51312 0.6160 +30061 51622 0.4970 +30061 55240 0.6900 +30061 55640 0.5180 +30061 55652 0.5070 +30061 55847 0.4660 +30061 57817 0.9990 +30061 64116 0.5290 +30061 79157 0.4150 +30061 79901 0.9460 +30061 81894 0.5630 +30061 84315 0.5750 +30061 84883 0.4420 +30061 94033 0.5010 +30061 113235 0.5780 +30061 148738 0.9040 +30061 150696 0.4340 +30061 151176 0.4310 +30061 164656 0.6080 +30061 221960 0.4970 +30061 261729 0.4380 +30062 84922 0.5460 +30062 133482 0.4270 +30811 49854 0.4420 +30811 54069 0.4830 +30811 57466 0.4800 +30811 58485 0.5910 +30811 59271 0.4130 +30812 50846 0.4420 +30812 54361 0.5270 +30812 56956 0.4110 +30812 79192 0.4900 +30812 80110 0.4070 +30812 116448 0.7190 +30812 221833 0.4460 +30812 284654 0.5320 +30813 56344 0.4300 +30813 56978 0.5230 +30813 58158 0.4680 +30813 60506 0.4490 +30813 64778 0.4840 +30813 64843 0.4500 +30813 79192 0.4840 +30813 83959 0.5510 +30813 84627 0.6300 +30813 84708 0.4370 +30813 115861 0.8570 +30813 121643 0.6850 +30813 128408 0.6750 +30813 219333 0.4400 +30813 220202 0.7760 +30813 256297 0.6400 +30813 401498 0.5150 +30813 100033411 0.4320 +30813 101060233 0.4540 +30814 50487 0.8430 +30814 54546 0.6180 +30814 54947 0.6890 +30814 55349 0.6000 +30814 55671 0.5670 +30814 56994 0.7130 +30814 57223 0.6070 +30814 64600 0.5890 +30814 79153 0.6650 +30814 79888 0.7080 +30814 81490 0.6580 +30814 81579 0.8040 +30814 84647 0.6060 +30814 85465 0.6500 +30814 113612 0.6940 +30814 122618 0.6500 +30814 133121 0.6500 +30814 151056 0.7700 +30814 151987 0.6070 +30814 254531 0.6690 +30814 255043 0.6500 +30814 255189 0.4340 +30814 283748 0.4320 +30814 284161 0.6650 +30814 284541 0.6900 +30814 375775 0.7090 +30814 387521 0.6520 +30814 387522 0.6670 +30815 55808 0.6130 +30815 56913 0.5190 +30815 58480 0.4610 +30815 64921 0.4230 +30815 83642 0.6020 +30815 84002 0.5180 +30815 124872 0.4200 +30815 144535 0.5940 +30815 171177 0.5940 +30815 338596 0.6400 +30816 30835 0.9750 +30816 51284 0.5840 +30816 51503 0.4460 +30816 54106 0.4540 +30816 54210 0.4410 +30816 54908 0.4520 +30816 55248 0.4180 +30816 57697 0.5320 +30816 59272 0.9940 +30816 64083 0.4560 +30816 64135 0.4260 +30816 64398 0.6260 +30816 79966 0.7770 +30816 80321 0.4990 +30816 80380 0.5860 +30816 81607 0.5110 +30816 84000 0.5550 +30816 84224 0.4450 +30816 84879 0.9490 +30816 84896 0.7380 +30816 85363 0.4220 +30816 89782 0.5830 +30816 90273 0.4450 +30816 93589 0.4370 +30816 115004 0.5270 +30816 133418 0.6740 +30816 136991 0.4010 +30816 137902 0.5430 +30816 147664 0.4030 +30816 151888 0.4410 +30816 158724 0.4400 +30816 200081 0.4370 +30816 201161 0.4200 +30816 201633 0.4590 +30816 203100 0.4260 +30816 284565 0.4090 +30816 375611 0.4800 +30816 405754 0.6100 +30816 653509 0.5200 +30816 727897 0.4150 +30816 729238 0.5420 +30817 51206 0.4420 +30818 30819 0.4590 +30818 30820 0.4610 +30818 51012 0.4230 +30818 51107 0.5530 +30818 51361 0.6280 +30818 55851 0.5300 +30818 55957 0.4960 +30818 57126 0.6910 +30818 57506 0.4220 +30818 57628 0.7330 +30818 60558 0.5440 +30818 80333 0.4460 +30818 85397 0.4120 +30818 91750 0.5070 +30818 127833 0.4420 +30818 127933 0.6950 +30818 132660 0.5410 +30818 151473 0.4130 +30818 170850 0.4130 +30818 197335 0.4350 +30818 284346 0.4930 +30818 286826 0.5060 +30819 30820 0.9420 +30819 51308 0.6390 +30819 55800 0.4220 +30819 56934 0.4330 +30819 56978 0.4120 +30819 57628 0.6320 +30819 58498 0.4810 +30819 60558 0.4230 +30819 80333 0.9060 +30819 84152 0.4340 +30819 88455 0.5980 +30819 127933 0.7680 +30819 147040 0.4450 +30819 197335 0.4300 +30819 266727 0.5350 +30819 400258 0.4280 +30820 55177 0.8230 +30820 57628 0.6870 +30820 60558 0.5540 +30820 80333 0.9390 +30820 127933 0.7610 +30820 131890 0.4220 +30820 133874 0.4270 +30820 197335 0.4300 +30827 51230 0.4120 +30827 51412 0.5260 +30827 51428 0.6710 +30827 51742 0.4220 +30827 54554 0.7750 +30827 55011 0.6900 +30827 55683 0.4050 +30827 55689 0.4020 +30827 55870 0.4310 +30827 55884 0.5280 +30827 55929 0.4190 +30827 56950 0.4040 +30827 56979 0.9760 +30827 57130 0.4620 +30827 57794 0.5480 +30827 57805 0.5090 +30827 58508 0.7000 +30827 60681 0.4130 +30827 64324 0.4120 +30827 64754 0.4470 +30827 64852 0.5300 +30827 79142 0.4020 +30827 79723 0.4370 +30827 79813 0.5760 +30827 80198 0.5360 +30827 80312 0.4310 +30827 80319 0.4060 +30827 80321 0.5620 +30827 80335 0.9990 +30827 80854 0.4620 +30827 83746 0.5740 +30827 83852 0.4670 +30827 84148 0.4760 +30827 84292 0.5460 +30827 84332 0.5580 +30827 84661 0.9990 +30827 89941 0.4810 +30827 91272 0.9080 +30827 114803 0.5570 +30827 126961 0.5190 +30827 128240 0.4600 +30827 143241 0.5580 +30827 146845 0.5270 +30827 150572 0.4080 +30827 200424 0.4050 +30827 259282 0.9280 +30827 282809 0.5270 +30827 283677 0.5060 +30827 339834 0.9040 +30827 401551 0.5270 +30827 440093 0.7700 +30827 440686 0.7700 +30827 653604 0.7690 +30832 89884 0.4430 +30832 158800 0.4720 +30832 374899 0.4440 +30832 388559 0.6290 +30833 50808 0.9100 +30833 50940 0.6520 +30833 51251 0.9950 +30833 51501 0.4090 +30833 51727 0.4960 +30833 51816 0.9340 +30833 56953 0.9050 +30833 64802 0.9070 +30833 79077 0.9250 +30833 80237 0.4110 +30833 83594 0.9560 +30833 84618 0.9670 +30833 93034 0.9580 +30833 93100 0.9040 +30833 115024 0.9460 +30833 122481 0.6840 +30833 122622 0.9100 +30833 124583 0.7210 +30833 129607 0.9160 +30833 131870 0.9150 +30833 139596 0.9120 +30833 151531 0.9350 +30833 158067 0.6840 +30833 221264 0.7230 +30833 221823 0.6860 +30833 377841 0.7100 +30833 100526794 0.9480 +30833 102157402 0.6500 +30834 30836 0.4650 +30834 51003 0.5310 +30834 51042 0.5910 +30834 51082 0.9990 +30834 51118 0.4210 +30834 51154 0.6950 +30834 51187 0.5020 +30834 51388 0.6900 +30834 51575 0.5020 +30834 51728 0.8280 +30834 54145 0.4600 +30834 54512 0.4460 +30834 54700 0.9940 +30834 54797 0.4010 +30834 54974 0.4070 +30834 55127 0.4230 +30834 55168 0.4950 +30834 55272 0.6170 +30834 55299 0.4020 +30834 55651 0.4300 +30834 55677 0.4520 +30834 55703 0.7140 +30834 55718 0.7610 +30834 55766 0.4920 +30834 55813 0.4340 +30834 56931 0.4170 +30834 57050 0.5010 +30834 57152 0.4040 +30834 64425 0.9990 +30834 79101 0.5760 +30834 79577 0.4230 +30834 79871 0.4310 +30834 80352 0.7070 +30834 84135 0.6070 +30834 84154 0.4680 +30834 84172 0.9990 +30834 84232 0.4210 +30834 84246 0.4740 +30834 85236 0.4680 +30834 90121 0.5220 +30834 90187 0.6460 +30834 92856 0.5340 +30834 94239 0.4840 +30834 118460 0.4200 +30834 123169 0.4650 +30834 128312 0.4600 +30834 170679 0.4530 +30834 171568 0.7180 +30834 221830 0.9990 +30834 246721 0.4420 +30834 255626 0.4600 +30834 284119 0.5260 +30834 404672 0.5390 +30834 414062 0.4910 +30834 474382 0.4920 +30834 548644 0.4420 +30834 653604 0.5010 +30834 100134938 0.4420 +30834 107983993 0.4420 +30835 50943 0.5010 +30835 51266 0.4360 +30835 51284 0.6380 +30835 51311 0.6340 +30835 54106 0.6010 +30835 55076 0.4570 +30835 57506 0.5010 +30835 59272 0.7790 +30835 63939 0.6350 +30835 64127 0.4340 +30835 64135 0.6370 +30835 64170 0.5180 +30835 80381 0.6800 +30835 81501 0.4760 +30835 84868 0.4360 +30835 91937 0.6220 +30835 93978 0.4800 +30835 140885 0.4670 +30835 339390 0.5720 +30835 653499 0.4380 +30835 100526664 0.8660 +30836 51010 0.6400 +30836 51013 0.7460 +30836 51018 0.8520 +30836 51065 0.7850 +30836 51068 0.4910 +30836 51073 0.5390 +30836 51077 0.9990 +30836 51081 0.6620 +30836 51082 0.4050 +30836 51096 0.9930 +30836 51106 0.4960 +30836 51118 0.9980 +30836 51149 0.7920 +30836 51154 0.5850 +30836 51187 0.8490 +30836 51202 0.4030 +30836 51319 0.5010 +30836 51388 0.7260 +30836 51406 0.8070 +30836 51575 0.7360 +30836 51602 0.9960 +30836 54512 0.6030 +30836 54552 0.4100 +30836 54555 0.5340 +30836 54606 0.6180 +30836 54663 0.4210 +30836 54700 0.6560 +30836 54865 0.4310 +30836 54984 0.5590 +30836 55003 0.7120 +30836 55127 0.9910 +30836 55131 0.6120 +30836 55140 0.5520 +30836 55153 0.6170 +30836 55226 0.9880 +30836 55272 0.9910 +30836 55299 0.8540 +30836 55319 0.4580 +30836 55341 0.4460 +30836 55646 0.6170 +30836 55651 0.6710 +30836 55720 0.4430 +30836 55760 0.4580 +30836 55781 0.5750 +30836 55813 0.9970 +30836 56342 0.4180 +30836 56647 0.5410 +30836 56902 0.9630 +30836 56915 0.6340 +30836 57050 0.9980 +30836 57109 0.7310 +30836 57418 0.4180 +30836 57647 0.8750 +30836 57696 0.4350 +30836 64216 0.5760 +30836 64425 0.4890 +30836 64434 0.4070 +30836 64782 0.4420 +30836 64960 0.6590 +30836 64963 0.6300 +30836 65083 0.9900 +30836 65095 0.6600 +30836 79039 0.4520 +30836 79050 0.9930 +30836 79571 0.7780 +30836 79954 0.9930 +30836 80135 0.7810 +30836 81875 0.4410 +30836 84128 0.9900 +30836 84135 0.9920 +30836 84154 0.8770 +30836 84294 0.8150 +30836 84310 0.6520 +30836 84365 0.9100 +30836 84549 0.8120 +30836 84916 0.9890 +30836 84946 0.8580 +30836 88745 0.7320 +30836 90121 0.6600 +30836 91582 0.8230 +30836 91893 0.4970 +30836 92345 0.4150 +30836 92856 0.9960 +30836 116092 0.5160 +30836 117246 0.7040 +30836 118460 0.4020 +30836 126402 0.6420 +30836 128061 0.8010 +30836 140032 0.6180 +30836 153443 0.5560 +30836 155368 0.4240 +30836 161424 0.4080 +30836 165545 0.4580 +30836 221078 0.6110 +30836 221830 0.8300 +30836 285855 0.4130 +30836 345630 0.8400 +30836 641776 0.4530 +30836 643909 0.4530 +30836 728524 0.4530 +30836 100996746 0.4530 +30836 105180390 0.4530 +30836 105180391 0.4530 +30837 30849 0.5400 +30837 55697 0.5580 +30837 55752 0.5740 +30837 84174 0.6260 +30837 122809 0.6270 +30837 146850 0.5400 +30837 192111 0.4090 +30837 201798 0.4280 +30837 441925 0.5400 +30837 110117498 0.5400 +30844 30845 0.6220 +30844 30846 0.5570 +30844 64072 0.4970 +30844 64145 0.8550 +30844 85377 0.8170 +30844 133482 0.4400 +30845 30846 0.6210 +30845 50650 0.4590 +30845 51272 0.4510 +30845 51479 0.6240 +30845 57538 0.4220 +30845 64093 0.4110 +30845 64145 0.9950 +30845 84734 0.4100 +30845 84955 0.6190 +30845 85377 0.9310 +30845 90342 0.6830 +30845 112464 0.5690 +30845 117177 0.4010 +30845 140856 0.6100 +30845 144406 0.4660 +30845 200576 0.4120 +30845 284119 0.7850 +30846 55040 0.4660 +30846 60681 0.4700 +30846 63924 0.4180 +30846 64093 0.4400 +30846 64145 0.7450 +30846 85377 0.6240 +30846 90342 0.7390 +30846 112464 0.6890 +30846 133482 0.4160 +30846 147372 0.4400 +30846 284119 0.8930 +30848 51438 0.6100 +30848 54967 0.4360 +30848 55190 0.4710 +30848 56001 0.4160 +30848 64648 0.4300 +30848 64663 0.4260 +30848 81557 0.4740 +30848 139135 0.5390 +30848 158521 0.4650 +30848 266740 0.7960 +30848 389903 0.5750 +30848 541466 0.4930 +30848 548313 0.6250 +30848 653220 0.5190 +30848 727837 0.6620 +30848 728075 0.6160 +30848 728239 0.4760 +30848 728269 0.6150 +30848 728712 0.4700 +30848 729447 0.5380 +30848 100008586 0.4280 +30848 102723547 0.5800 +30849 51100 0.9450 +30849 51422 0.5710 +30849 53349 0.7540 +30849 53632 0.5470 +30849 53917 0.4320 +30849 54106 0.5430 +30849 55014 0.7370 +30849 55054 0.9370 +30849 55062 0.8150 +30849 55102 0.6530 +30849 55201 0.6010 +30849 55332 0.4060 +30849 55626 0.9980 +30849 55697 0.6850 +30849 55737 0.8280 +30849 55823 0.5490 +30849 56270 0.5830 +30849 57521 0.7100 +30849 57617 0.5640 +30849 57724 0.5990 +30849 60673 0.9850 +30849 64145 0.6080 +30849 64419 0.4500 +30849 64422 0.9200 +30849 64601 0.5550 +30849 65018 0.5740 +30849 79065 0.8570 +30849 79443 0.4330 +30849 80183 0.6530 +30849 81545 0.4070 +30849 81631 0.8670 +30849 81671 0.7380 +30849 83734 0.8160 +30849 84174 0.5610 +30849 84557 0.7820 +30849 84938 0.6530 +30849 84971 0.6430 +30849 85236 0.4030 +30849 89849 0.5870 +30849 115201 0.6560 +30849 122809 0.5490 +30849 124997 0.4430 +30849 139341 0.4100 +30849 140735 0.5150 +30849 140901 0.7270 +30849 146850 0.6120 +30849 149420 0.7100 +30849 152831 0.5020 +30849 200576 0.6120 +30849 285973 0.7230 +30849 286826 0.4370 +30849 440533 0.4730 +30849 440738 0.8030 +30849 441925 0.9990 +30849 493856 0.5100 +30849 110117498 0.5420 +30850 56896 0.5110 +30850 56990 0.4760 +30850 64231 0.4220 +30850 84968 0.4550 +30850 92737 0.4930 +30850 114824 0.5440 +30850 170261 0.9520 +30850 201725 0.6240 +30850 284058 0.4180 +30850 404093 0.5240 +30850 105373377 0.5070 +30851 51388 0.4080 +30851 55765 0.4260 +30851 57180 0.4250 +30851 57685 0.4380 +30851 63941 0.4460 +30851 79828 0.8760 +30851 79833 0.5150 +30851 81533 0.5100 +30851 157378 0.5910 +30851 162387 0.4750 +30851 260425 0.4320 +30851 337867 0.4480 +30851 100131755 0.4590 +30968 51021 0.4100 +30968 51069 0.6120 +30968 51079 0.5240 +30968 51081 0.7350 +30968 51116 0.4290 +30968 51253 0.7270 +30968 54840 0.4940 +30968 55004 0.4700 +30968 55486 0.8630 +30968 55651 0.4780 +30968 56993 0.4020 +30968 58509 0.7430 +30968 64976 0.6070 +30968 64983 0.4670 +30968 65003 0.4490 +30968 83547 0.4650 +30968 84233 0.4260 +30968 84305 0.4530 +30968 91689 0.4470 +30968 92609 0.5090 +30968 93380 0.4040 +30968 125988 0.4540 +30968 140823 0.4330 +30968 286451 0.4430 +30968 375190 0.4080 +30968 440498 0.4480 +43847 43849 0.5140 +43847 89778 0.4850 +43847 374454 0.4730 +43847 404203 0.9620 +43847 440387 0.4450 +43847 643394 0.5700 +43849 54544 0.4080 +43849 84651 0.4320 +43849 404203 0.9510 +43849 440387 0.4400 +49854 54093 0.4400 +49854 54101 0.4860 +49854 54148 0.4030 +49854 54866 0.4050 +49854 63977 0.4090 +49854 78987 0.4270 +49854 81573 0.4060 +49854 89766 0.4330 +49854 90874 0.4320 +49854 115353 0.4570 +49854 254158 0.5120 +49854 286753 0.4480 +49855 51594 0.4830 +49855 54765 0.4170 +49855 55699 0.4220 +49855 57562 0.4330 +49855 64843 0.4860 +49855 80256 0.5070 +49855 81669 0.5050 +49855 83445 0.4770 +49855 134359 0.4050 +49856 57470 0.4180 +49856 79596 0.6180 +49856 79882 0.4680 +49856 81559 0.4570 +49856 114883 0.4780 +49856 117178 0.9050 +49856 121441 0.5340 +49856 124997 0.4840 +49856 127262 0.5490 +49856 152185 0.6060 +49856 317781 0.4720 +49856 374659 0.5120 +49856 440145 0.4490 +49856 647286 0.4140 +49860 51297 0.4090 +49860 51458 0.4280 +49860 54544 0.7490 +49860 57152 0.4100 +49860 84518 0.5210 +49860 84648 0.4920 +49860 84651 0.6960 +49860 114771 0.4820 +49860 126637 0.6010 +49860 126638 0.5910 +49860 132724 0.8630 +49860 192666 0.4320 +49860 196374 0.7580 +49860 254910 0.4570 +49860 374897 0.4580 +49860 388533 0.6050 +49860 401024 0.4850 +49860 440854 0.4320 +49860 448834 0.5600 +49861 51208 0.6900 +49861 53842 0.7010 +49861 56288 0.6500 +49861 90952 0.6550 +49861 137075 0.8110 +49861 149461 0.6780 +49861 154043 0.5590 +49861 644672 0.7290 +49861 100132463 0.7710 +49861 100288814 0.6530 +49861 100506658 0.7230 +50484 50808 0.9370 +50484 51343 0.6250 +50484 51366 0.5230 +50484 51727 0.5150 +50484 55723 0.4560 +50484 55750 0.4440 +50484 56652 0.8800 +50484 57103 0.4890 +50484 63970 0.5070 +50484 64393 0.4950 +50484 79077 0.9160 +50484 81620 0.6530 +50484 83461 0.4450 +50484 83988 0.5030 +50484 84284 0.9020 +50484 84942 0.4260 +50484 92667 0.5970 +50484 94241 0.4120 +50484 122481 0.7480 +50484 124583 0.9200 +50484 129607 0.9150 +50484 158067 0.7480 +50484 166979 0.4250 +50484 221264 0.9410 +50484 246243 0.4390 +50484 254394 0.4400 +50484 259266 0.5550 +50484 284439 0.4310 +50484 374659 0.9130 +50484 377841 0.9140 +50484 654364 0.7450 +50484 102157402 0.6560 +50485 51004 0.5470 +50485 51196 0.5050 +50485 51455 0.4670 +50485 51750 0.5100 +50485 54465 0.6910 +50485 54962 0.7000 +50485 55086 0.7580 +50485 55159 0.6440 +50485 55215 0.4160 +50485 55218 0.4380 +50485 55388 0.4460 +50485 55723 0.5140 +50485 55929 0.5920 +50485 56852 0.5340 +50485 56897 0.5050 +50485 56916 0.4350 +50485 56941 0.4490 +50485 57107 0.6070 +50485 57697 0.8040 +50485 63967 0.5840 +50485 64423 0.5230 +50485 79728 0.5070 +50485 79915 0.4550 +50485 79934 0.4530 +50485 79991 0.9300 +50485 80010 0.4410 +50485 80119 0.6010 +50485 80198 0.8310 +50485 83932 0.4790 +50485 83990 0.6760 +50485 84083 0.5810 +50485 84126 0.6500 +50485 84464 0.7000 +50485 84893 0.7540 +50485 84942 0.5660 +50485 128710 0.4690 +50485 165918 0.4670 +50485 201973 0.9980 +50485 246243 0.4080 +50485 253714 0.5800 +50485 257218 0.4200 +50485 259282 0.5980 +50486 51099 0.7370 +50486 57104 0.9380 +50486 58488 0.4070 +50486 63924 0.5490 +50486 80205 0.4010 +50486 80339 0.4410 +50486 85441 0.4590 +50486 150379 0.4620 +50486 161247 0.4180 +50486 440503 0.4250 +50486 729359 0.4050 +50487 51069 0.5480 +50487 54947 0.7250 +50487 55349 0.6260 +50487 56994 0.6870 +50487 57128 0.5790 +50487 63931 0.4080 +50487 64600 0.8460 +50487 79153 0.6780 +50487 79888 0.7120 +50487 81490 0.6920 +50487 81579 0.9620 +50487 84647 0.6230 +50487 85465 0.6770 +50487 113612 0.7440 +50487 115019 0.4090 +50487 116369 0.4240 +50487 116832 0.4580 +50487 122618 0.6750 +50487 123745 0.4030 +50487 124454 0.4260 +50487 133121 0.6510 +50487 151056 0.7420 +50487 164395 0.4280 +50487 254531 0.6550 +50487 255043 0.6500 +50487 255189 0.4810 +50487 284161 0.6900 +50487 284541 0.6950 +50487 375775 0.7140 +50487 387521 0.6520 +50487 387522 0.6610 +50487 391013 0.5530 +50487 100137049 0.4270 +50487 101059915 0.4250 +50488 51278 0.5970 +50488 51368 0.4190 +50488 51400 0.5110 +50488 51451 0.5340 +50488 51765 0.4700 +50488 54518 0.4320 +50488 55571 0.4150 +50488 55844 0.7050 +50488 55893 0.5170 +50488 55917 0.5810 +50488 57650 0.6590 +50488 81839 0.4120 +50488 85369 0.7180 +50488 85456 0.5080 +50488 93986 0.4080 +50488 115795 0.4820 +50488 133482 0.4560 +50488 246175 0.4280 +50488 253260 0.4200 +50488 259173 0.4300 +50488 284119 0.4070 +50488 339345 0.5910 +50489 50616 0.6010 +50489 50856 0.4420 +50489 50943 0.6300 +50489 51284 0.4740 +50489 54106 0.4340 +50489 55509 0.5970 +50489 64581 0.7270 +50489 65258 0.5750 +50489 65983 0.5580 +50489 80381 0.4020 +50489 84818 0.4140 +50489 85480 0.5830 +50489 93978 0.4790 +50489 140685 0.4570 +50489 140885 0.5320 +50489 149233 0.4230 +50489 165530 0.7470 +50489 203328 0.4520 +50489 283420 0.4130 +50489 100526664 0.7840 +50506 50507 0.9240 +50506 50508 0.9460 +50506 51061 0.4020 +50506 51806 0.4900 +50506 53905 0.9620 +50506 54205 0.4370 +50506 64127 0.7590 +50506 79400 0.8280 +50506 83592 0.4160 +50506 90527 0.9810 +50506 124056 0.8060 +50506 130120 0.4600 +50506 257202 0.5500 +50506 389434 0.9300 +50506 405753 0.9990 +50506 493869 0.5500 +50506 653361 0.9140 +50507 50508 0.9920 +50507 51806 0.5440 +50507 53905 0.9920 +50507 54205 0.5930 +50507 59272 0.4130 +50507 79400 0.9930 +50507 90527 0.5750 +50507 91860 0.4650 +50507 93649 0.5730 +50507 114548 0.4570 +50507 124056 0.8730 +50507 137902 0.5860 +50507 140885 0.4760 +50507 163688 0.4650 +50507 257202 0.6290 +50507 376497 0.5110 +50507 405753 0.5740 +50507 493869 0.6500 +50507 653361 0.9980 +50508 51806 0.4480 +50508 53905 0.9900 +50508 79400 0.9860 +50508 90527 0.6530 +50508 124056 0.9960 +50508 257202 0.4260 +50508 285590 0.7500 +50508 405753 0.6240 +50508 493869 0.4230 +50508 653361 0.9910 +50508 729330 0.7840 +50509 55214 0.5640 +50509 57642 0.5200 +50509 64175 0.5140 +50509 79709 0.5590 +50509 80781 0.5150 +50509 81578 0.5590 +50509 84570 0.4980 +50509 85301 0.7020 +50509 91522 0.5520 +50509 93145 0.4690 +50509 131873 0.5030 +50509 136227 0.5600 +50509 140766 0.5220 +50509 169044 0.5660 +50509 255631 0.4890 +50509 283208 0.5230 +50509 340267 0.5480 +50511 51087 0.5320 +50511 54145 0.5450 +50511 54386 0.5190 +50511 54514 0.7830 +50511 54937 0.5650 +50511 55124 0.5740 +50511 55239 0.6410 +50511 55766 0.5520 +50511 56154 0.5130 +50511 56158 0.9590 +50511 56159 0.6210 +50511 56165 0.4050 +50511 56603 0.5520 +50511 56979 0.6500 +50511 56994 0.4070 +50511 57167 0.4190 +50511 57829 0.4340 +50511 63978 0.4080 +50511 66037 0.7400 +50511 79158 0.7830 +50511 79173 0.4700 +50511 79923 0.4060 +50511 83639 0.4350 +50511 83659 0.4010 +50511 84072 0.9730 +50511 84690 0.6350 +50511 84944 0.5270 +50511 85236 0.5430 +50511 85417 0.4810 +50511 93426 0.9380 +50511 93953 0.5230 +50511 94239 0.5360 +50511 122402 0.4410 +50511 124817 0.4390 +50511 128312 0.5440 +50511 135935 0.5670 +50511 143471 0.6370 +50511 145645 0.4910 +50511 147872 0.4010 +50511 150280 0.9790 +50511 150365 0.6050 +50511 158401 0.4060 +50511 164045 0.4450 +50511 166647 0.4030 +50511 171482 0.9050 +50511 254528 0.6970 +50511 255626 0.5850 +50511 256006 0.4700 +50511 256126 0.9700 +50511 283129 0.5180 +50511 283677 0.5280 +50511 283847 0.5170 +50511 284071 0.4980 +50511 285498 0.5750 +50511 317719 0.4450 +50511 317761 0.6000 +50511 339345 0.7550 +50511 339834 0.5760 +50511 340719 0.4080 +50511 342977 0.6200 +50511 344018 0.5500 +50511 346673 0.8470 +50511 359787 0.4790 +50511 388553 0.4650 +50511 402381 0.6470 +50511 440093 0.4290 +50511 440686 0.4290 +50511 474382 0.5520 +50511 642636 0.7450 +50511 644186 0.9480 +50511 653604 0.4290 +50511 729475 0.4360 +50511 100526761 0.5390 +50511 101928601 0.4180 +50512 54920 0.4470 +50512 55243 0.5190 +50512 55352 0.4460 +50512 79929 0.5540 +50512 118881 0.4660 +50512 147798 0.4360 +50512 348807 0.8750 +50515 51363 0.7300 +50515 54480 0.4270 +50515 55454 0.6440 +50515 55501 0.9140 +50515 55553 0.5270 +50515 55790 0.6630 +50515 55830 0.4400 +50515 56548 0.6730 +50515 63827 0.5120 +50515 64131 0.6330 +50515 64132 0.5060 +50515 79586 0.5370 +50515 166012 0.9070 +50515 266722 0.4080 +50515 337876 0.4160 +50515 442038 0.4030 +50515 102723407 0.4890 +50604 50615 0.6510 +50604 53832 0.9950 +50604 53833 0.9940 +50604 58985 0.9410 +50604 116379 0.6580 +50604 149233 0.6520 +50604 163702 0.6500 +50613 51065 0.4890 +50613 51069 0.4560 +50613 51081 0.4410 +50613 51121 0.4200 +50613 51154 0.4240 +50613 51608 0.4110 +50613 54948 0.4130 +50613 55173 0.4390 +50613 55272 0.4380 +50613 55316 0.4540 +50613 55666 0.4820 +50613 55768 0.4350 +50613 56675 0.4040 +50613 63931 0.4540 +50613 64963 0.5030 +50613 64969 0.4170 +50613 79590 0.4200 +50613 83473 0.4710 +50613 83714 0.4040 +50613 84231 0.5580 +50613 84301 0.5630 +50613 84678 0.4800 +50613 84691 0.5730 +50613 114987 0.4460 +50613 126402 0.4560 +50613 130560 0.5620 +50613 140032 0.4780 +50613 171169 0.5160 +50613 200916 0.4080 +50613 203228 0.4100 +50613 221302 0.4340 +50613 221409 0.4480 +50613 338661 0.4780 +50613 347487 0.4110 +50613 390066 0.4050 +50613 100529097 0.4480 +50613 100529239 0.4200 +50614 51046 0.4170 +50614 55808 0.9310 +50614 56667 0.4130 +50614 56913 0.7570 +50614 56975 0.4110 +50614 81849 0.4230 +50614 83987 0.5720 +50614 94025 0.4090 +50614 118430 0.4150 +50614 140453 0.4370 +50614 143662 0.4200 +50614 192134 0.9090 +50614 199964 0.4250 +50614 200958 0.4010 +50614 353116 0.4370 +50614 388743 0.5290 +50614 641700 0.4270 +50614 727897 0.4100 +50614 728819 0.6680 +50615 50616 0.8230 +50615 50943 0.6900 +50615 51131 0.4100 +50615 51561 0.7470 +50615 53342 0.7120 +50615 53832 0.5610 +50615 55884 0.4940 +50615 56832 0.6550 +50615 57379 0.5000 +50615 59067 0.9990 +50615 60468 0.4940 +50615 84824 0.4140 +50615 85480 0.7260 +50615 112744 0.5330 +50615 115650 0.5230 +50615 149233 0.6040 +50615 151888 0.5750 +50615 201633 0.4640 +50615 282616 0.6960 +50615 282617 0.7050 +50615 282618 0.6830 +50615 338376 0.6720 +50616 50943 0.7790 +50616 51176 0.4410 +50616 51284 0.5300 +50616 51497 0.4020 +50616 51554 0.5430 +50616 51561 0.8920 +50616 53342 0.5070 +50616 53832 0.9510 +50616 53833 0.9070 +50616 54106 0.5280 +50616 55540 0.4800 +50616 55801 0.8830 +50616 56253 0.6050 +50616 57817 0.4010 +50616 58985 0.9990 +50616 59067 0.6830 +50616 64127 0.6470 +50616 64135 0.5220 +50616 64170 0.5790 +50616 64581 0.5700 +50616 64806 0.8680 +50616 80381 0.4530 +50616 84639 0.4470 +50616 84818 0.8100 +50616 85480 0.6860 +50616 90865 0.7350 +50616 112744 0.9710 +50616 114548 0.4730 +50616 116379 0.9990 +50616 126206 0.4830 +50616 130120 0.8650 +50616 132014 0.4450 +50616 149233 0.9470 +50616 163702 0.9150 +50616 169355 0.4830 +50616 171389 0.4180 +50616 282616 0.9010 +50616 282617 0.7570 +50616 282618 0.7840 +50616 338442 0.4580 +50616 386653 0.7220 +50616 388698 0.5400 +50616 414325 0.6670 +50616 100289462 0.5230 +50616 100506658 0.5410 +50616 100526664 0.4370 +50617 51160 0.5070 +50617 51382 0.9980 +50617 51458 0.4180 +50617 51606 0.9990 +50617 55697 0.4370 +50617 57707 0.9120 +50617 64077 0.7740 +50617 79643 0.5270 +50617 79877 0.4170 +50617 80347 0.4170 +50617 84317 0.9100 +50617 84650 0.4470 +50617 90423 0.9930 +50617 127124 0.9600 +50617 147007 0.9440 +50617 155006 0.6500 +50617 155066 0.9460 +50617 163882 0.8290 +50617 200576 0.5120 +50617 203547 0.7410 +50617 221264 0.5400 +50617 245972 0.9990 +50617 245973 0.9820 +50617 256764 0.4350 +50617 440400 0.9920 +50618 51277 0.5400 +50618 51285 0.5400 +50618 51326 0.5360 +50618 51362 0.4460 +50618 51429 0.6960 +50618 51517 0.4220 +50618 51538 0.5080 +50618 51552 0.5400 +50618 51655 0.5480 +50618 53916 0.5400 +50618 54505 0.5200 +50618 54509 0.5490 +50618 54622 0.5360 +50618 54707 0.5360 +50618 54734 0.5510 +50618 54769 0.5400 +50618 54874 0.4160 +50618 55040 0.9600 +50618 55288 0.5450 +50618 55669 0.4380 +50618 55707 0.7120 +50618 55738 0.4190 +50618 55760 0.5080 +50618 55835 0.4520 +50618 56919 0.5170 +50618 57111 0.5360 +50618 57381 0.5800 +50618 57514 0.6640 +50618 57647 0.5400 +50618 57826 0.5440 +50618 58480 0.7890 +50618 58513 0.9860 +50618 60625 0.5400 +50618 64762 0.5300 +50618 64848 0.5400 +50618 65125 0.6640 +50618 65266 0.6960 +50618 65997 0.5400 +50618 79363 0.5400 +50618 79665 0.5220 +50618 79785 0.5400 +50618 80117 0.5360 +50618 80705 0.4560 +50618 83660 0.4710 +50618 84100 0.5360 +50618 84251 0.8750 +50618 84268 0.4750 +50618 84932 0.5390 +50618 85004 0.5400 +50618 85021 0.7080 +50618 85302 0.4110 +50618 85379 0.5400 +50618 85439 0.8420 +50618 89848 0.6170 +50618 89941 0.5400 +50618 90957 0.5700 +50618 91608 0.5400 +50618 113251 0.4040 +50618 115273 0.5360 +50618 115548 0.9850 +50618 115761 0.5420 +50618 118491 0.5400 +50618 121268 0.5400 +50618 122402 0.5080 +50618 127829 0.5430 +50618 130162 0.4190 +50618 132946 0.5360 +50618 140290 0.4520 +50618 140680 0.5400 +50618 147837 0.4560 +50618 148252 0.5400 +50618 150946 0.4320 +50618 155051 0.5400 +50618 161253 0.5400 +50618 165545 0.5080 +50618 170506 0.5170 +50618 170680 0.4640 +50618 171177 0.5890 +50618 221079 0.5370 +50618 285598 0.5360 +50618 387496 0.5400 +50618 390790 0.5360 +50618 644150 0.4320 +50619 51181 0.5310 +50619 54876 0.4040 +50619 57594 0.4530 +50619 79184 0.8220 +50619 143872 0.5630 +50619 148423 0.4340 +50619 283489 0.4110 +50624 51032 0.4740 +50624 63036 0.4700 +50624 131368 0.5220 +50624 342898 0.5150 +50624 643904 0.4320 +50626 51160 0.6170 +50626 51430 0.4250 +50626 54512 0.5950 +50626 55040 0.4450 +50626 55616 0.4350 +50626 58500 0.4420 +50626 80728 0.7040 +50626 80778 0.5340 +50626 81858 0.5110 +50626 84232 0.5640 +50626 84988 0.7000 +50626 90990 0.5420 +50626 113655 0.5330 +50626 203054 0.5460 +50626 225689 0.6190 +50626 284058 0.4060 +50626 286077 0.6100 +50626 340385 0.4180 +50626 441381 0.5220 +50626 727957 0.7940 +50628 51574 0.4960 +50628 51808 0.7640 +50628 53371 0.4110 +50628 54433 0.5450 +50628 54475 0.6600 +50628 54487 0.6020 +50628 54960 0.9900 +50628 55075 0.5390 +50628 55178 0.7080 +50628 55275 0.6260 +50628 55706 0.4910 +50628 55746 0.4890 +50628 56257 0.5350 +50628 57122 0.4730 +50628 57510 0.6620 +50628 65083 0.5570 +50628 79023 0.4260 +50628 79084 0.6390 +50628 79760 0.9970 +50628 79833 0.9980 +50628 79850 0.6090 +50628 79902 0.4410 +50628 80789 0.5360 +50628 81929 0.4260 +50628 84172 0.4840 +50628 84955 0.6360 +50628 96764 0.5830 +50628 114034 0.5410 +50628 120892 0.4880 +50628 122664 0.4140 +50628 129401 0.4850 +50628 134265 0.4410 +50628 151987 0.8050 +50628 192669 0.4850 +50628 192670 0.4860 +50628 284131 0.4280 +50628 348995 0.4050 +50628 100101267 0.4120 +50632 51286 0.4430 +50632 51335 0.4020 +50632 51440 0.4990 +50632 81629 0.5930 +50632 83482 0.4030 +50632 83942 0.5580 +50632 83983 0.6060 +50632 84080 0.4740 +50632 118611 0.4180 +50632 130162 0.4090 +50632 253559 0.4700 +50632 283629 0.6600 +50632 389432 0.4290 +50636 51063 0.4160 +50636 55450 0.4180 +50636 57414 0.5050 +50636 57522 0.4210 +50636 83481 0.4100 +50636 93109 0.4660 +50636 128239 0.4050 +50636 148362 0.4590 +50640 51003 0.4700 +50640 51099 0.4620 +50640 51107 0.5300 +50640 55744 0.4470 +50640 57104 0.5720 +50640 65125 0.4730 +50640 65266 0.4730 +50640 65267 0.4730 +50640 65268 0.4730 +50640 79133 0.4280 +50640 80339 0.6010 +50640 84246 0.5980 +50640 123745 0.4160 +50640 124817 0.4730 +50640 150379 0.6860 +50640 168451 0.6500 +50640 200150 0.4330 +50640 253558 0.4600 +50640 255189 0.4810 +50640 283748 0.4150 +50640 285848 0.6670 +50640 375775 0.5680 +50640 493753 0.4560 +50649 51195 0.4020 +50649 51557 0.4260 +50649 53841 0.4150 +50649 55114 0.4410 +50649 89780 0.4240 +50649 154796 0.4040 +50649 166824 0.4240 +50649 202559 0.4610 +50649 219287 0.4550 +50649 221061 0.4380 +50649 221178 0.9300 +50650 51272 0.4760 +50650 54509 0.4180 +50650 55615 0.4380 +50650 64223 0.5070 +50650 64798 0.5200 +50650 79109 0.5400 +50650 93432 0.4080 +50650 144406 0.4800 +50650 253260 0.7870 +50650 375033 0.4040 +50651 51741 0.4300 +50651 54206 0.4990 +50651 56674 0.4790 +50651 64682 0.4080 +50651 79050 0.4750 +50651 79643 0.4070 +50651 80045 0.4190 +50651 80737 0.4740 +50651 81543 0.4460 +50651 84249 0.4890 +50651 84274 0.4370 +50651 84275 0.4440 +50651 84328 0.5190 +50651 89822 0.4460 +50651 92002 0.4750 +50651 131096 0.4350 +50651 146206 0.6100 +50651 155184 0.4770 +50651 165257 0.4790 +50651 220134 0.4280 +50651 256356 0.4580 +50651 286148 0.5070 +50651 339105 0.4470 +50674 51124 0.5050 +50674 51738 0.6400 +50674 53820 0.4530 +50674 54738 0.5190 +50674 54937 0.4700 +50674 55502 0.4570 +50674 64321 0.6370 +50674 79923 0.4730 +50674 80834 0.4520 +50674 83756 0.4800 +50674 84504 0.8760 +50674 89780 0.4070 +50674 113878 0.5480 +50674 114131 0.5200 +50674 153572 0.4060 +50674 169026 0.4520 +50674 169792 0.7510 +50674 170302 0.5680 +50674 222546 0.8990 +50674 255877 0.4530 +50674 256297 0.4530 +50674 338557 0.4660 +50674 339345 0.6270 +50674 342977 0.4620 +50674 346562 0.4360 +50674 346673 0.5730 +50674 389692 0.7850 +50674 402381 0.5710 +50674 100526761 0.4470 +50700 51109 0.7470 +50700 51171 0.4130 +50700 53630 0.9390 +50700 54884 0.9340 +50700 54995 0.4470 +50700 57665 0.4640 +50700 63924 0.5940 +50700 64220 0.4950 +50700 64577 0.4080 +50700 112724 0.4550 +50700 112812 0.4630 +50700 121214 0.4340 +50700 145226 0.7880 +50700 157506 0.4580 +50700 158835 0.9050 +50700 339761 0.9220 +50717 50813 0.4920 +50717 51122 0.5310 +50717 51138 0.4900 +50717 51185 0.9340 +50717 51397 0.5380 +50717 51514 0.9080 +50717 54165 0.5210 +50717 54461 0.9030 +50717 54876 0.9000 +50717 54939 0.5080 +50717 54951 0.5110 +50717 55070 0.9050 +50717 55208 0.5170 +50717 55626 0.9270 +50717 55827 0.9160 +50717 55832 0.6110 +50717 57159 0.4040 +50717 64326 0.9020 +50717 64708 0.5340 +50717 79016 0.9530 +50717 79269 0.9230 +50717 79968 0.7530 +50717 80067 0.9140 +50717 80344 0.9510 +50717 81545 0.4140 +50717 84259 0.6360 +50717 84676 0.4120 +50717 90379 0.9520 +50717 138009 0.6030 +50717 139170 0.5970 +50717 139425 0.7030 +50717 149951 0.5170 +50717 150684 0.5270 +50717 170622 0.5130 +50717 285429 0.6030 +50717 340578 0.5970 +50717 347442 0.5500 +50801 51305 0.7130 +50801 51350 0.8840 +50801 51393 0.4920 +50801 54207 0.6850 +50801 56659 0.7260 +50801 56660 0.7440 +50801 56834 0.5650 +50801 59341 0.5830 +50801 60598 0.6590 +50801 63895 0.6290 +50801 79054 0.6300 +50801 83795 0.5990 +50801 89822 0.5930 +50801 117531 0.4310 +50801 161003 0.4780 +50801 162514 0.4440 +50801 283234 0.4870 +50801 338567 0.7040 +50804 51340 0.6770 +50804 51747 0.4860 +50804 55023 0.4720 +50804 55280 0.5910 +50804 56949 0.7340 +50804 57461 0.6400 +50804 81576 0.5920 +50804 114803 0.4420 +50804 143884 0.5880 +50804 151903 0.5920 +50804 283652 0.6420 +50804 399697 0.7510 +50804 100534599 0.6420 +50805 55190 0.4380 +50805 57057 0.5590 +50805 58498 0.6250 +50805 79192 0.4920 +50805 116039 0.4410 +50805 153572 0.4060 +50805 283078 0.4540 +50807 51306 0.4030 +50807 51429 0.6190 +50807 54536 0.6160 +50807 55616 0.9640 +50807 55763 0.5410 +50807 55770 0.5630 +50807 55824 0.5600 +50807 56903 0.5720 +50807 60412 0.5670 +50807 64411 0.4260 +50807 83660 0.4120 +50807 116984 0.4900 +50807 116987 0.4150 +50807 117177 0.7560 +50807 149371 0.5090 +50807 339145 0.4100 +50807 374872 0.5080 +50808 50940 0.9040 +50808 51069 0.4880 +50808 51073 0.4800 +50808 51081 0.4300 +50808 51121 0.4140 +50808 51154 0.4740 +50808 51251 0.9010 +50808 51727 0.4980 +50808 54948 0.4360 +50808 55143 0.4450 +50808 55173 0.5630 +50808 55176 0.5620 +50808 55272 0.4920 +50808 55276 0.5190 +50808 55316 0.4210 +50808 55471 0.4100 +50808 55591 0.4580 +50808 56474 0.4150 +50808 56953 0.9700 +50808 57505 0.4550 +50808 57590 0.4930 +50808 63875 0.5200 +50808 63931 0.4290 +50808 64374 0.4390 +50808 64963 0.4790 +50808 64965 0.5420 +50808 64969 0.5510 +50808 64979 0.6230 +50808 65008 0.4520 +50808 79590 0.4120 +50808 79631 0.4540 +50808 79694 0.4350 +50808 79717 0.5290 +50808 80135 0.4020 +50808 83475 0.4530 +50808 84284 0.9170 +50808 84618 0.9130 +50808 85476 0.4690 +50808 91875 0.4070 +50808 93034 0.9130 +50808 115024 0.9010 +50808 122481 0.6920 +50808 126402 0.4250 +50808 129607 0.7210 +50808 136332 0.6380 +50808 139596 0.4240 +50808 140801 0.4340 +50808 149175 0.4240 +50808 153830 0.5450 +50808 221092 0.7900 +50808 221264 0.9450 +50808 260425 0.4240 +50808 285855 0.4040 +50808 374659 0.4570 +50808 377841 0.9060 +50808 654364 0.9280 +50808 100526794 0.9130 +50808 100526842 0.4470 +50809 51574 0.6380 +50809 54207 0.4490 +50809 58487 0.4790 +50809 81853 0.5610 +50809 89853 0.4250 +50809 94239 0.4700 +50809 124245 0.4730 +50809 139886 0.4660 +50809 148014 0.8030 +50809 149628 0.5920 +50809 400745 0.4220 +50810 51755 0.4890 +50810 80298 0.4210 +50810 256158 0.5070 +50813 51122 0.4160 +50813 51138 0.9990 +50813 51185 0.7720 +50813 51397 0.4160 +50813 51514 0.5800 +50813 53339 0.6270 +50813 54165 0.5620 +50813 54617 0.4110 +50813 54939 0.4420 +50813 54951 0.4270 +50813 54979 0.4340 +50813 55070 0.6710 +50813 55076 0.7140 +50813 55208 0.4430 +50813 55238 0.4210 +50813 55317 0.4080 +50813 55643 0.6190 +50813 55827 0.5030 +50813 55832 0.4150 +50813 57559 0.4270 +50813 64326 0.5030 +50813 64708 0.9870 +50813 79016 0.7940 +50813 79269 0.5800 +50813 79641 0.6200 +50813 79913 0.4090 +50813 80013 0.7720 +50813 80067 0.4050 +50813 80344 0.8880 +50813 83444 0.4090 +50813 83743 0.5120 +50813 84259 0.4270 +50813 84954 0.5050 +50813 85439 0.4990 +50813 93973 0.4270 +50813 114826 0.4070 +50813 115290 0.4410 +50813 144699 0.5870 +50813 149951 0.4110 +50813 150678 0.9660 +50813 150684 0.4260 +50813 170622 0.4210 +50813 252839 0.5790 +50813 283899 0.4050 +50813 286187 0.4730 +50813 317719 0.5910 +50813 387357 0.7200 +50813 387521 0.5830 +50813 404672 0.5150 +50813 100527963 0.4840 +50814 51021 0.5110 +50814 51065 0.4720 +50814 51069 0.4750 +50814 51073 0.4740 +50814 51081 0.4850 +50814 51109 0.5560 +50814 51144 0.6790 +50814 51149 0.4640 +50814 51170 0.4680 +50814 51264 0.4680 +50814 51302 0.5950 +50814 51478 0.9960 +50814 55168 0.4010 +50814 55173 0.5140 +50814 55272 0.5070 +50814 55316 0.5110 +50814 55754 0.4420 +50814 55902 0.5280 +50814 56052 0.4080 +50814 57129 0.4740 +50814 60488 0.4770 +50814 63875 0.4830 +50814 63931 0.5200 +50814 64960 0.4750 +50814 64963 0.4830 +50814 64965 0.5210 +50814 64968 0.4740 +50814 64969 0.5100 +50814 64975 0.4390 +50814 64976 0.4380 +50814 64979 0.4520 +50814 64981 0.4330 +50814 64983 0.4520 +50814 65008 0.4080 +50814 65985 0.4670 +50814 81033 0.5840 +50814 84236 0.4310 +50814 84545 0.4390 +50814 91734 0.6320 +50814 92196 0.4080 +50814 112812 0.4100 +50814 114987 0.4670 +50814 126402 0.4660 +50814 126410 0.4340 +50814 132949 0.4790 +50814 134429 0.4380 +50814 137682 0.4010 +50814 140032 0.4270 +50814 197258 0.4190 +50814 200916 0.4750 +50814 285855 0.4140 +50814 347475 0.5010 +50814 387129 0.4030 +50814 100505478 0.4030 +50814 100526842 0.4310 +50814 100529239 0.4860 +50831 50832 0.8850 +50831 50833 0.5650 +50831 50834 0.5420 +50831 50835 0.4930 +50831 50836 0.5240 +50831 50837 0.5100 +50831 50838 0.5760 +50831 50839 0.6450 +50831 50840 0.5400 +50831 51764 0.5120 +50831 54429 0.5610 +50831 79295 0.4010 +50831 80834 0.8600 +50831 80835 0.6990 +50831 83756 0.7540 +50831 259285 0.5710 +50831 259286 0.5790 +50831 259287 0.5010 +50831 259289 0.5250 +50831 259290 0.5220 +50831 259292 0.5160 +50831 259293 0.5190 +50831 259294 0.5440 +50831 259295 0.5120 +50831 259296 0.5490 +50831 338398 0.5590 +50831 346562 0.9080 +50831 353164 0.4860 +50831 389161 0.4300 +50831 403277 0.4820 +50832 50833 0.6410 +50832 50834 0.6180 +50832 50835 0.6000 +50832 50836 0.6120 +50832 50837 0.6110 +50832 50838 0.6690 +50832 50839 0.6280 +50832 50840 0.6540 +50832 51764 0.5320 +50832 54429 0.6240 +50832 80834 0.9060 +50832 80835 0.7600 +50832 83756 0.9030 +50832 84539 0.4350 +50832 119687 0.4570 +50832 259285 0.5720 +50832 259286 0.5670 +50832 259287 0.5180 +50832 259289 0.6400 +50832 259290 0.6190 +50832 259292 0.6310 +50832 259293 0.5840 +50832 259294 0.6220 +50832 259295 0.5790 +50832 259296 0.6960 +50832 283297 0.5100 +50832 338398 0.5940 +50832 346562 0.9570 +50832 353164 0.5900 +50832 390079 0.4550 +50832 403277 0.4590 +50833 50834 0.7060 +50833 50835 0.7170 +50833 50836 0.6360 +50833 50837 0.6190 +50833 50838 0.6380 +50833 50839 0.6490 +50833 50840 0.6280 +50833 51764 0.5320 +50833 54429 0.5210 +50833 64106 0.4200 +50833 80834 0.7820 +50833 80835 0.8270 +50833 81127 0.4070 +50833 83756 0.7990 +50833 119692 0.5020 +50833 128366 0.4770 +50833 255239 0.6770 +50833 259285 0.6130 +50833 259286 0.6300 +50833 259287 0.5470 +50833 259289 0.6330 +50833 259290 0.6430 +50833 259292 0.6310 +50833 259293 0.5640 +50833 259294 0.6300 +50833 259295 0.5980 +50833 259296 0.6120 +50833 283092 0.4610 +50833 317701 0.4130 +50833 317703 0.4040 +50833 338398 0.4700 +50833 346562 0.8790 +50833 353164 0.5740 +50833 390084 0.4680 +50834 50835 0.5500 +50834 50836 0.5750 +50834 50837 0.5640 +50834 50838 0.5490 +50834 50839 0.6040 +50834 50840 0.6280 +50834 51725 0.6220 +50834 51764 0.5000 +50834 54413 0.6340 +50834 54429 0.5090 +50834 57502 0.6570 +50834 64326 0.5940 +50834 79816 0.5410 +50834 80834 0.8230 +50834 80835 0.8160 +50834 83597 0.4790 +50834 83756 0.7910 +50834 119678 0.4360 +50834 127247 0.5410 +50834 139411 0.4760 +50834 140733 0.4180 +50834 152330 0.6260 +50834 222545 0.5090 +50834 259285 0.7290 +50834 259286 0.5610 +50834 259287 0.5750 +50834 259289 0.5760 +50834 259290 0.5660 +50834 259292 0.5920 +50834 259293 0.5570 +50834 259294 0.5470 +50834 259295 0.7420 +50834 259296 0.5930 +50834 266743 0.4230 +50834 338398 0.5180 +50834 339512 0.5570 +50834 342372 0.5190 +50834 346562 0.9250 +50834 353164 0.6020 +50834 390437 0.4750 +50834 403277 0.4320 +50835 50836 0.5700 +50835 50837 0.4770 +50835 50838 0.5150 +50835 50839 0.4910 +50835 50840 0.5280 +50835 54429 0.5070 +50835 64106 0.4630 +50835 80834 0.6190 +50835 80835 0.5990 +50835 83756 0.6280 +50835 84539 0.4820 +50835 255022 0.4070 +50835 259285 0.5360 +50835 259286 0.6010 +50835 259287 0.4610 +50835 259289 0.5010 +50835 259290 0.4840 +50835 259292 0.5910 +50835 259293 0.4780 +50835 259294 0.4720 +50835 259295 0.4650 +50835 259296 0.5180 +50835 285231 0.4610 +50835 338398 0.4860 +50835 346562 0.8480 +50835 353164 0.5120 +50835 388333 0.4180 +50836 50837 0.4830 +50836 50838 0.5290 +50836 50839 0.5310 +50836 50840 0.5350 +50836 51764 0.5220 +50836 54429 0.5580 +50836 80834 0.6480 +50836 80835 0.6160 +50836 83756 0.6160 +50836 259285 0.5690 +50836 259286 0.5810 +50836 259287 0.5410 +50836 259289 0.5080 +50836 259290 0.5060 +50836 259292 0.4920 +50836 259293 0.5020 +50836 259294 0.4870 +50836 259295 0.4930 +50836 259296 0.5090 +50836 338398 0.5010 +50836 346562 0.9050 +50836 353164 0.5410 +50837 50838 0.5680 +50837 50839 0.5210 +50837 50840 0.4940 +50837 51764 0.5220 +50837 54429 0.5000 +50837 57117 0.4120 +50837 64780 0.4390 +50837 80834 0.7490 +50837 80835 0.7300 +50837 83756 0.7560 +50837 93343 0.4240 +50837 138802 0.4090 +50837 151195 0.4320 +50837 259285 0.5560 +50837 259286 0.5630 +50837 259287 0.5090 +50837 259289 0.4950 +50837 259290 0.4810 +50837 259292 0.4950 +50837 259293 0.4810 +50837 259294 0.4840 +50837 259295 0.4720 +50837 259296 0.5080 +50837 338398 0.4770 +50837 342372 0.4110 +50837 346562 0.9430 +50837 353164 0.5150 +50838 50839 0.5200 +50838 50840 0.4980 +50838 51764 0.6690 +50838 54429 0.5260 +50838 79541 0.4760 +50838 80834 0.7270 +50838 80835 0.6620 +50838 83756 0.6710 +50838 120776 0.5060 +50838 219869 0.5200 +50838 259285 0.5440 +50838 259286 0.5820 +50838 259287 0.5310 +50838 259289 0.5370 +50838 259290 0.5390 +50838 259292 0.5410 +50838 259293 0.4980 +50838 259294 0.5800 +50838 259295 0.4850 +50838 259296 0.6240 +50838 284521 0.5410 +50838 317703 0.4210 +50838 338398 0.5110 +50838 338751 0.6240 +50838 346562 0.9180 +50838 353164 0.5020 +50838 390067 0.5120 +50838 391195 0.5280 +50838 442186 0.4550 +50839 50840 0.5260 +50839 51764 0.6450 +50839 54429 0.5560 +50839 80834 0.6590 +50839 80835 0.6460 +50839 83756 0.6660 +50839 120776 0.4180 +50839 219869 0.4770 +50839 259285 0.5520 +50839 259286 0.5430 +50839 259287 0.5400 +50839 259289 0.5280 +50839 259290 0.4900 +50839 259292 0.5410 +50839 259293 0.4710 +50839 259294 0.5370 +50839 259295 0.4900 +50839 259296 0.5380 +50839 284521 0.4320 +50839 338398 0.5240 +50839 338751 0.5160 +50839 346562 0.9490 +50839 353164 0.4880 +50839 391195 0.4470 +50839 441933 0.4320 +50840 51764 0.6600 +50840 54429 0.5520 +50840 57191 0.4130 +50840 80834 0.7460 +50840 80835 0.6910 +50840 83756 0.7410 +50840 120776 0.4180 +50840 128178 0.4240 +50840 219869 0.4440 +50840 259285 0.5820 +50840 259286 0.5810 +50840 259287 0.5280 +50840 259289 0.4970 +50840 259290 0.4930 +50840 259292 0.4810 +50840 259293 0.4780 +50840 259294 0.5700 +50840 259295 0.5130 +50840 259296 0.5150 +50840 338398 0.5300 +50840 338751 0.4180 +50840 346562 0.8820 +50840 353164 0.5060 +50840 391195 0.4470 +50840 100128071 0.4330 +50846 50937 0.9990 +50846 51009 0.4990 +50846 51542 0.5040 +50846 51684 0.8050 +50846 54361 0.5740 +50846 55275 0.4980 +50846 55582 0.4620 +50846 55733 0.7180 +50846 57154 0.4710 +50846 57540 0.6630 +50846 57758 0.6730 +50846 58497 0.5420 +50846 64399 0.9990 +50846 64750 0.4500 +50846 84447 0.5060 +50846 84733 0.4350 +50846 84976 0.8870 +50846 85455 0.8580 +50846 91653 0.9980 +50846 122706 0.4010 +50846 143471 0.4010 +50846 147111 0.4820 +50846 374654 0.6220 +50848 50855 0.6150 +50848 51599 0.4390 +50848 51735 0.9800 +50848 55243 0.4700 +50848 56288 0.9890 +50848 57126 0.4830 +50848 57154 0.5200 +50848 57530 0.9920 +50848 58494 0.9690 +50848 64398 0.4600 +50848 80381 0.4360 +50848 83700 0.9700 +50848 84552 0.5220 +50848 84612 0.6030 +50848 84952 0.5420 +50848 90952 0.5200 +50848 91862 0.6870 +50848 93643 0.6680 +50848 120425 0.5540 +50848 146722 0.5800 +50848 149461 0.4610 +50848 149563 0.4050 +50848 150084 0.9770 +50848 153562 0.9310 +50848 100131439 0.7060 +50848 100506658 0.9980 +50852 51111 0.4350 +50852 51127 0.9240 +50852 51592 0.7460 +50852 53339 0.4120 +50852 53347 0.8260 +50852 53840 0.8200 +50852 54518 0.4090 +50852 54765 0.6080 +50852 54900 0.9440 +50852 55128 0.5060 +50852 55217 0.9300 +50852 55223 0.5970 +50852 55521 0.8200 +50852 56253 0.4180 +50852 56658 0.6550 +50852 57093 0.4160 +50852 57159 0.4740 +50852 57506 0.5740 +50852 60489 0.5230 +50852 64127 0.5760 +50852 64135 0.5170 +50852 79132 0.4290 +50852 80128 0.4800 +50852 80263 0.8320 +50852 81559 0.8450 +50852 81603 0.7940 +50852 81786 0.8300 +50852 81844 0.6680 +50852 84282 0.4460 +50852 84636 0.4510 +50852 84675 0.4300 +50852 84787 0.4290 +50852 84851 0.6040 +50852 85363 0.9470 +50852 89122 0.5830 +50852 89870 0.5940 +50852 90933 0.8510 +50852 91107 0.5760 +50852 91543 0.4170 +50852 114088 0.8620 +50852 114836 0.4270 +50852 115004 0.4480 +50852 117854 0.9120 +50852 131405 0.6040 +50852 135644 0.5700 +50852 135892 0.4780 +50852 140691 0.5870 +50852 147906 0.4770 +50852 171558 0.4130 +50852 200523 0.5840 +50852 201292 0.5960 +50852 283518 0.5470 +50852 286827 0.6980 +50852 339327 0.4300 +50852 387357 0.4850 +50852 440730 0.5910 +50852 442862 0.7730 +50852 445372 0.9230 +50852 493829 0.7140 +50853 57511 0.4990 +50853 57533 0.6100 +50853 83548 0.4490 +50853 147686 0.6160 +50855 51339 0.4260 +50855 56288 0.9990 +50855 57154 0.8860 +50855 57530 0.5860 +50855 57787 0.4210 +50855 58480 0.6820 +50855 64398 0.9840 +50855 64750 0.6880 +50855 79791 0.4890 +50855 84552 0.9080 +50855 84612 0.9290 +50855 85440 0.4160 +50855 92359 0.9540 +50855 117583 0.7420 +50855 144165 0.5700 +50855 171177 0.6640 +50855 201305 0.4870 +50855 261734 0.6980 +50856 51266 0.4310 +50856 51284 0.5410 +50856 51311 0.7170 +50856 53829 0.4450 +50856 54106 0.4680 +50856 55138 0.5180 +50856 57828 0.4200 +50856 58484 0.6290 +50856 64127 0.4010 +50856 64170 0.4230 +50856 64231 0.6020 +50856 64581 0.6850 +50856 80380 0.5200 +50856 120425 0.4220 +50856 131450 0.4470 +50856 140885 0.6050 +50856 160364 0.5440 +50856 202309 0.4730 +50856 100526664 0.8640 +50859 55188 0.4530 +50859 64093 0.4480 +50859 64770 0.4030 +50861 54923 0.4490 +50861 56731 0.4530 +50861 79025 0.4310 +50861 84619 0.5300 +50861 140679 0.4130 +50861 389073 0.4980 +50862 51222 0.4340 +50862 89765 0.4020 +50862 132851 0.4460 +50862 146849 0.4190 +50862 474354 0.5480 +50862 727800 0.4290 +50863 51255 0.4260 +50863 55022 0.6980 +50863 57699 0.4140 +50863 114798 0.4700 +50863 149281 0.4290 +50863 256158 0.4500 +50863 283521 0.4390 +50863 347730 0.4160 +50865 51315 0.4520 +50865 63940 0.4100 +50937 51684 0.4810 +50937 57758 0.6610 +50937 64399 0.5920 +50937 84976 0.6720 +50937 90273 0.5090 +50937 91653 0.9420 +50937 374654 0.4630 +50937 100271849 0.5260 +50939 55812 0.6550 +50939 55975 0.6810 +50939 64218 0.7060 +50939 79947 0.5830 +50939 84140 0.5820 +50939 92211 0.4470 +50939 94137 0.5210 +50939 130557 0.8070 +50939 137970 0.4300 +50939 145226 0.7740 +50939 157657 0.5810 +50939 202559 0.4120 +50939 221662 0.4470 +50939 346007 0.8560 +50939 346562 0.4030 +50939 375298 0.7870 +50939 388939 0.8410 +50939 768206 0.8200 +50940 51251 0.6840 +50940 55811 0.6640 +50940 56953 0.6500 +50940 79798 0.7260 +50940 83550 0.4810 +50940 84618 0.6500 +50940 93034 0.6910 +50940 114880 0.4560 +50940 115024 0.6840 +50940 122481 0.6670 +50940 124583 0.6770 +50940 150737 0.4110 +50940 158067 0.7090 +50940 196883 0.7190 +50940 221264 0.6660 +50940 377841 0.6500 +50940 100526794 0.6930 +50940 102157402 0.6500 +50943 51043 0.4980 +50943 51176 0.6050 +50943 51284 0.6110 +50943 51311 0.4730 +50943 51497 0.4520 +50943 51554 0.4400 +50943 51561 0.5770 +50943 51564 0.9530 +50943 51741 0.4920 +50943 51744 0.4330 +50943 54106 0.6310 +50943 54790 0.4050 +50943 55509 0.5100 +50943 55801 0.4060 +50943 57509 0.5700 +50943 59067 0.5920 +50943 60468 0.6390 +50943 64127 0.4940 +50943 64375 0.9240 +50943 64581 0.6140 +50943 65258 0.4470 +50943 79679 0.4800 +50943 80312 0.5440 +50943 80380 0.7380 +50943 80381 0.7290 +50943 84433 0.4160 +50943 84868 0.7870 +50943 85480 0.6020 +50943 90865 0.6510 +50943 93986 0.8430 +50943 112744 0.8030 +50943 114548 0.4210 +50943 130120 0.4470 +50943 131450 0.4040 +50943 137902 0.6190 +50943 140885 0.4970 +50943 149041 0.5020 +50943 149233 0.6500 +50943 151888 0.5860 +50943 168400 0.5920 +50943 169355 0.8410 +50943 170482 0.5010 +50943 201633 0.8220 +50943 246778 0.4470 +50943 259197 0.4420 +50943 283420 0.4050 +50943 284194 0.5840 +50943 338442 0.5100 +50943 390243 0.4480 +50943 440686 0.4050 +50943 653604 0.4050 +50943 654346 0.5840 +50943 729233 0.6100 +50943 729246 0.4870 +50943 729250 0.6660 +50943 100133941 0.6180 +50943 100526664 0.6630 +50944 54413 0.9040 +50944 54769 0.4050 +50944 55971 0.5400 +50944 57030 0.4770 +50944 57154 0.4190 +50944 57497 0.4560 +50944 57502 0.8940 +50944 57554 0.5400 +50944 57555 0.8680 +50944 58512 0.9200 +50944 59272 0.7360 +50944 64798 0.4140 +50944 80725 0.4520 +50944 80852 0.4030 +50944 81858 0.7640 +50944 84258 0.5520 +50944 85358 0.9820 +50944 116986 0.5120 +50944 139411 0.4210 +50944 140679 0.4280 +50944 148252 0.4060 +50944 284361 0.4220 +50944 729956 0.4320 +50945 51588 0.4280 +50945 53336 0.4750 +50945 56033 0.6190 +50945 80070 0.4110 +50945 80273 0.5070 +50945 81570 0.8680 +50945 116039 0.4580 +50945 158131 0.4400 +50945 165918 0.4890 +50945 388531 0.6100 +50945 431707 0.4070 +50964 51176 0.6390 +50964 51384 0.5960 +50964 54361 0.4190 +50964 55361 0.4280 +50964 56033 0.4340 +50964 56955 0.8090 +50964 64388 0.7850 +50964 79412 0.4540 +50964 83999 0.4500 +50964 84168 0.5120 +50964 89780 0.8630 +50964 91851 0.4510 +50964 92667 0.5260 +50964 113444 0.4100 +50964 118429 0.5160 +50964 121340 0.8610 +50964 129293 0.4420 +50964 252995 0.5470 +50964 375567 0.4230 +50964 375790 0.4060 +50999 51014 0.5330 +50999 51384 0.4320 +50999 54361 0.4320 +50999 54732 0.9700 +50999 80326 0.4450 +50999 81029 0.4320 +50999 89780 0.4320 +50999 115209 0.4320 +50999 152815 0.4050 +50999 222068 0.8200 +51000 51006 0.6660 +51000 55032 0.6070 +51000 55314 0.5040 +51000 55343 0.7170 +51000 55508 0.4130 +51000 79939 0.5190 +51000 113829 0.5380 +51000 152519 0.4480 +51000 222553 0.4930 +51000 340146 0.8530 +51000 347734 0.5670 +51001 51021 0.4950 +51001 51069 0.4770 +51001 51073 0.6490 +51001 51081 0.4880 +51001 51106 0.7860 +51001 51116 0.4070 +51001 51264 0.4560 +51001 51335 0.6020 +51001 54148 0.6050 +51001 54534 0.5440 +51001 55006 0.4990 +51001 55037 0.5590 +51001 55052 0.7840 +51001 55168 0.5330 +51001 55178 0.7790 +51001 55669 0.8280 +51001 55794 0.9090 +51001 56652 0.5140 +51001 58478 0.4600 +51001 63875 0.4710 +51001 64216 0.7950 +51001 64963 0.4060 +51001 64965 0.5550 +51001 64969 0.4040 +51001 64979 0.6870 +51001 65003 0.4620 +51001 65005 0.4710 +51001 65008 0.4390 +51001 65018 0.5670 +51001 79072 0.6520 +51001 79736 0.6780 +51001 79922 0.6600 +51001 80298 0.8490 +51001 81554 0.5210 +51001 81631 0.5040 +51001 81892 0.6170 +51001 84273 0.4590 +51001 84557 0.5080 +51001 84769 0.6320 +51001 84881 0.7370 +51001 84933 0.4370 +51001 85865 0.5300 +51001 92170 0.4890 +51001 92399 0.5970 +51001 112858 0.5460 +51001 115416 0.7330 +51001 123722 0.4550 +51001 130916 0.5720 +51001 219927 0.4690 +51001 253980 0.4460 +51001 285367 0.4810 +51001 387338 0.7620 +51002 51023 0.4780 +51002 51082 0.4320 +51002 51121 0.4160 +51002 51562 0.6430 +51002 51639 0.4380 +51002 54951 0.4100 +51002 55644 0.9990 +51002 64172 0.9680 +51002 79693 0.8750 +51002 84172 0.4070 +51002 84520 0.9990 +51002 112858 0.9990 +51002 121601 0.4820 +51002 348995 0.7990 +51003 51092 0.5450 +51003 51129 0.4990 +51003 51248 0.4690 +51003 51535 0.4800 +51003 51586 0.9970 +51003 51614 0.6560 +51003 51728 0.6810 +51003 51750 0.4270 +51003 54797 0.9990 +51003 54847 0.5450 +51003 55090 0.9980 +51003 55588 0.9970 +51003 55703 0.7030 +51003 55959 0.4530 +51003 57121 0.5450 +51003 65125 0.4380 +51003 65266 0.4380 +51003 65267 0.4380 +51003 65268 0.4380 +51003 79642 0.4810 +51003 80306 0.9990 +51003 80895 0.4160 +51003 81857 0.9810 +51003 83860 0.8010 +51003 83990 0.4270 +51003 84172 0.6370 +51003 84246 0.9990 +51003 84330 0.4170 +51003 84498 0.5070 +51003 85441 0.5420 +51003 90390 0.9960 +51003 112950 0.9970 +51003 116931 0.8930 +51003 121504 0.8040 +51003 124817 0.4420 +51003 126961 0.8140 +51003 127428 0.5250 +51003 129685 0.8430 +51003 133522 0.5400 +51003 149483 0.5460 +51003 151649 0.4150 +51003 151742 0.4150 +51003 152926 0.4150 +51003 153642 0.4580 +51003 154865 0.4150 +51003 170082 0.5260 +51003 246721 0.7800 +51003 256643 0.5400 +51003 286749 0.5150 +51003 333932 0.8140 +51003 340075 0.4810 +51003 340602 0.5450 +51003 347527 0.5540 +51003 387332 0.6430 +51003 399949 0.5310 +51003 400569 0.9960 +51003 404672 0.8230 +51003 448834 0.5450 +51003 548644 0.7800 +51003 554313 0.8040 +51003 653604 0.8380 +51003 728340 0.5500 +51003 100134938 0.5590 +51003 107983993 0.5590 +51003 122455342 0.5450 +51004 51011 0.4030 +51004 51031 0.4580 +51004 51102 0.4270 +51004 51117 0.9910 +51004 51167 0.4870 +51004 51196 0.6520 +51004 51230 0.4380 +51004 51805 0.9980 +51004 54840 0.5480 +51004 55034 0.4010 +51004 56052 0.4260 +51004 56954 0.4900 +51004 57017 0.9900 +51004 57107 0.9270 +51004 57143 0.6400 +51004 64397 0.4420 +51004 64423 0.6090 +51004 79934 0.9780 +51004 80219 0.7030 +51004 81889 0.4800 +51004 83478 0.4450 +51004 84274 0.9970 +51004 84693 0.4490 +51004 84942 0.6360 +51004 90956 0.5280 +51004 91734 0.4960 +51004 93058 0.7470 +51004 112812 0.7450 +51004 123688 0.4090 +51004 130013 0.4300 +51004 137682 0.6110 +51004 160760 0.4290 +51004 203054 0.5140 +51004 283576 0.4210 +51004 340390 0.5460 +51004 613227 0.4160 +51005 54187 0.4540 +51005 55276 0.5660 +51005 55577 0.8420 +51005 56156 0.4690 +51005 60488 0.4080 +51005 64841 0.4390 +51005 81442 0.4880 +51005 90956 0.4210 +51005 91373 0.4400 +51005 128372 0.4920 +51005 130589 0.5060 +51005 130951 0.7100 +51005 132789 0.9940 +51005 283209 0.5630 +51005 401548 0.4280 +51005 101929989 0.5500 +51006 55032 0.6000 +51006 55314 0.5170 +51006 55343 0.8040 +51006 55508 0.5800 +51006 57642 0.8310 +51006 79676 0.4570 +51006 79939 0.6950 +51006 80255 0.4080 +51006 84102 0.4740 +51006 84912 0.7200 +51006 91869 0.4320 +51006 94005 0.4400 +51006 113278 0.4320 +51006 113829 0.6140 +51006 145389 0.4840 +51006 148641 0.5520 +51006 152519 0.4550 +51006 159371 0.4700 +51006 197258 0.4640 +51006 222553 0.5630 +51006 340146 0.5700 +51006 347734 0.5180 +51008 51121 0.4610 +51008 51317 0.5430 +51008 54059 0.8320 +51008 54458 0.4120 +51008 55215 0.5440 +51008 55278 0.4360 +51008 57129 0.7680 +51008 63875 0.7650 +51008 64421 0.6150 +51008 65003 0.7600 +51008 79590 0.7610 +51008 79728 0.5480 +51008 79840 0.5490 +51008 80221 0.7590 +51008 84164 0.9990 +51008 84311 0.4540 +51008 84545 0.7600 +51008 90850 0.5530 +51008 91419 0.5590 +51008 94059 0.4170 +51008 115908 0.4790 +51008 125150 0.5590 +51008 126074 0.5430 +51008 219927 0.7600 +51008 221120 0.9460 +51008 286257 0.5430 +51008 643641 0.5220 +51008 100130742 0.4040 +51008 100130890 0.6430 +51008 100131187 0.6440 +51008 100423062 0.4100 +51008 105375355 0.5400 +51009 51035 0.6330 +51009 51272 0.4470 +51009 51290 0.8670 +51009 51439 0.7270 +51009 51465 0.9630 +51009 51726 0.5380 +51009 54431 0.7140 +51009 55432 0.4590 +51009 55666 0.9340 +51009 55741 0.6220 +51009 55829 0.9770 +51009 55831 0.9070 +51009 55858 0.4140 +51009 55968 0.6110 +51009 56605 0.4810 +51009 56886 0.4910 +51009 57142 0.7230 +51009 57414 0.6360 +51009 58515 0.6660 +51009 64422 0.5470 +51009 79029 0.5780 +51009 79139 0.9890 +51009 79174 0.4020 +51009 80124 0.5180 +51009 80233 0.8020 +51009 80235 0.4280 +51009 80267 0.5260 +51009 80343 0.6890 +51009 81555 0.5050 +51009 84313 0.4170 +51009 84447 0.9980 +51009 84720 0.4050 +51009 90522 0.4580 +51009 91319 0.9630 +51009 91445 0.5830 +51009 91544 0.4600 +51009 92305 0.4890 +51009 93594 0.4010 +51009 118424 0.5770 +51009 137886 0.4990 +51009 153830 0.4480 +51009 165324 0.4770 +51009 166378 0.5780 +51009 197131 0.4360 +51009 337867 0.7110 +51009 339416 0.5730 +51010 51013 0.9990 +51010 51073 0.4180 +51010 51077 0.7530 +51010 51082 0.5970 +51010 51096 0.8170 +51010 51106 0.4470 +51010 51118 0.8390 +51010 51149 0.4290 +51010 51154 0.4010 +51010 51202 0.4780 +51010 51388 0.4460 +51010 51593 0.4660 +51010 51602 0.7970 +51010 51654 0.9950 +51010 51691 0.4150 +51010 51692 0.6120 +51010 54464 0.7710 +51010 54512 0.9990 +51010 54534 0.4260 +51010 54555 0.5280 +51010 54973 0.4750 +51010 55127 0.7600 +51010 55226 0.6410 +51010 55272 0.8360 +51010 55299 0.4690 +51010 55596 0.9440 +51010 55651 0.4040 +51010 55802 0.5800 +51010 55813 0.7770 +51010 56829 0.6600 +51010 56902 0.4910 +51010 56903 0.4090 +51010 56915 0.9990 +51010 57038 0.5660 +51010 57050 0.7910 +51010 57379 0.4860 +51010 57647 0.5150 +51010 57696 0.4690 +51010 57819 0.4840 +51010 64216 0.5460 +51010 64282 0.6000 +51010 64895 0.4500 +51010 65083 0.7300 +51010 79042 0.5940 +51010 79050 0.8270 +51010 79571 0.4770 +51010 79954 0.6330 +51010 80135 0.8280 +51010 80349 0.7720 +51010 80746 0.5970 +51010 81887 0.6560 +51010 84128 0.8550 +51010 84135 0.7560 +51010 84186 0.6830 +51010 84365 0.4060 +51010 84549 0.4520 +51010 84916 0.7490 +51010 85441 0.7330 +51010 87178 0.9440 +51010 88745 0.4950 +51010 92856 0.8200 +51010 114034 0.5090 +51010 115752 0.9990 +51010 118460 0.9990 +51010 122809 0.4640 +51010 124245 0.5030 +51010 129563 0.9600 +51010 153443 0.4410 +51010 167227 0.6740 +51010 196441 0.9530 +51010 283989 0.6740 +51010 345630 0.4950 +51011 51239 0.4370 +51011 51252 0.4160 +51011 54511 0.4590 +51011 56897 0.4280 +51011 57590 0.4470 +51011 84874 0.4340 +51011 151313 0.7290 +51011 388962 0.7050 +51011 653689 0.4260 +51012 51499 0.9850 +51012 56910 0.4890 +51012 80218 0.4470 +51012 80724 0.5260 +51012 81027 0.4490 +51012 91419 0.4200 +51012 92400 0.4430 +51012 128611 0.5440 +51012 134147 0.4430 +51012 151473 0.4500 +51012 284346 0.5760 +51013 51065 0.4410 +51013 51077 0.8010 +51013 51081 0.4610 +51013 51082 0.5390 +51013 51096 0.8460 +51013 51106 0.6970 +51013 51118 0.8340 +51013 51119 0.4170 +51013 51149 0.4630 +51013 51154 0.4060 +51013 51202 0.5660 +51013 51388 0.8320 +51013 51504 0.4160 +51013 51602 0.8210 +51013 54464 0.8420 +51013 54512 0.9990 +51013 54555 0.4940 +51013 54870 0.4350 +51013 54952 0.5210 +51013 54984 0.4070 +51013 55003 0.4090 +51013 55127 0.7970 +51013 55226 0.6620 +51013 55272 0.8950 +51013 55299 0.4370 +51013 55596 0.8820 +51013 55601 0.4430 +51013 55646 0.5670 +51013 55651 0.7150 +51013 55759 0.4410 +51013 55781 0.4470 +51013 55802 0.5320 +51013 55813 0.8160 +51013 56902 0.5410 +51013 56903 0.4090 +51013 56915 0.9990 +51013 57050 0.8400 +51013 57647 0.5250 +51013 63948 0.4350 +51013 64216 0.6680 +51013 64282 0.4900 +51013 64895 0.4170 +51013 64963 0.5800 +51013 65083 0.7910 +51013 79005 0.5210 +51013 79050 0.8990 +51013 79145 0.4850 +51013 79159 0.6040 +51013 79571 0.5310 +51013 79760 0.4780 +51013 79954 0.6580 +51013 80135 0.6720 +51013 80349 0.8750 +51013 81887 0.4360 +51013 84128 0.8060 +51013 84135 0.8480 +51013 84154 0.7180 +51013 84186 0.7520 +51013 84294 0.5910 +51013 84365 0.7250 +51013 84752 0.4180 +51013 84916 0.8870 +51013 85441 0.8310 +51013 87178 0.9550 +51013 88745 0.5770 +51013 92856 0.8630 +51013 93973 0.4600 +51013 115752 0.9990 +51013 118460 0.9990 +51013 129563 0.9510 +51013 133482 0.4550 +51013 153443 0.4850 +51013 167227 0.6930 +51013 196441 0.9430 +51013 221830 0.4200 +51013 284252 0.4080 +51013 345630 0.5260 +51013 440686 0.4380 +51014 51021 0.5840 +51014 51023 0.4850 +51014 51026 0.4240 +51014 51069 0.5520 +51014 51073 0.5460 +51014 51081 0.5730 +51014 51116 0.5050 +51014 51128 0.6160 +51014 51149 0.4350 +51014 51226 0.9070 +51014 51263 0.4680 +51014 51264 0.5570 +51014 51272 0.5070 +51014 51594 0.5080 +51014 53407 0.5180 +51014 54732 0.8500 +51014 54872 0.4390 +51014 54948 0.5800 +51014 55168 0.4860 +51014 55173 0.5450 +51014 55272 0.4700 +51014 55738 0.5490 +51014 55754 0.4500 +51014 55850 0.5540 +51014 56681 0.9200 +51014 56889 0.6000 +51014 57129 0.5460 +51014 57410 0.9000 +51014 59349 0.9000 +51014 60488 0.6230 +51014 60559 0.4320 +51014 60561 0.5260 +51014 63875 0.5670 +51014 63908 0.5270 +51014 63931 0.5520 +51014 64083 0.4220 +51014 64432 0.4090 +51014 64689 0.4110 +51014 64960 0.5710 +51014 64963 0.6010 +51014 64965 0.5310 +51014 64968 0.5190 +51014 64969 0.5970 +51014 64975 0.5380 +51014 64976 0.5410 +51014 64979 0.5250 +51014 64981 0.5380 +51014 64983 0.5520 +51014 65080 0.5660 +51014 81876 0.6850 +51014 84364 0.5160 +51014 84545 0.5240 +51014 90313 0.4220 +51014 114609 0.4090 +51014 114781 0.4080 +51014 126402 0.4360 +51014 146456 0.5570 +51014 205428 0.9010 +51014 222068 0.5940 +51014 353376 0.6780 +51014 553115 0.9070 +51015 51144 0.4970 +51015 51268 0.4510 +51015 55066 0.4670 +51015 55191 0.4430 +51015 55825 0.5690 +51015 56954 0.4450 +51015 64802 0.5640 +51015 79814 0.5160 +51015 83693 0.4940 +51015 84263 0.5490 +51015 93100 0.7300 +51015 113174 0.4140 +51015 167410 0.4590 +51015 255426 0.4990 +51015 284273 0.4340 +51015 349565 0.5640 +51015 642475 0.7300 +51015 730249 0.4510 +51015 100127206 0.4790 +51016 51234 0.9990 +51016 55831 0.9990 +51016 56851 0.9990 +51016 57489 0.4020 +51016 83460 0.9990 +51016 93380 0.9990 +51016 284361 0.9980 +51018 51042 0.4810 +51018 51068 0.7310 +51018 51077 0.4240 +51018 51082 0.6820 +51018 51096 0.5930 +51018 51118 0.9030 +51018 51121 0.5360 +51018 51133 0.5100 +51018 51154 0.9580 +51018 51187 0.9570 +51018 51202 0.5080 +51018 51319 0.4790 +51018 51388 0.9620 +51018 51490 0.4260 +51018 51491 0.6600 +51018 51504 0.4150 +51018 51574 0.4260 +51018 51575 0.8280 +51018 51602 0.7930 +51018 51605 0.6270 +51018 54433 0.6340 +51018 54517 0.4260 +51018 54552 0.7900 +51018 54555 0.6050 +51018 54606 0.5730 +51018 54663 0.9680 +51018 54680 0.4190 +51018 54865 0.5460 +51018 55003 0.8900 +51018 55105 0.6420 +51018 55127 0.5260 +51018 55131 0.9190 +51018 55133 0.4890 +51018 55153 0.8820 +51018 55226 0.4710 +51018 55272 0.7510 +51018 55299 0.9840 +51018 55319 0.8240 +51018 55341 0.6470 +51018 55505 0.4250 +51018 55646 0.8600 +51018 55651 0.8340 +51018 55720 0.4630 +51018 55759 0.9070 +51018 55760 0.4190 +51018 55781 0.4950 +51018 55791 0.4810 +51018 55794 0.4730 +51018 55813 0.6910 +51018 56342 0.9660 +51018 56647 0.4360 +51018 56902 0.5270 +51018 57050 0.8600 +51018 57062 0.6360 +51018 57109 0.4140 +51018 57418 0.6250 +51018 57696 0.4750 +51018 64118 0.4420 +51018 64216 0.5310 +51018 64318 0.8250 +51018 64425 0.5750 +51018 64794 0.5320 +51018 65083 0.4120 +51018 65095 0.5710 +51018 79039 0.6350 +51018 79050 0.7750 +51018 79080 0.4930 +51018 79159 0.7860 +51018 79590 0.4830 +51018 79707 0.5290 +51018 79954 0.6070 +51018 80135 0.9890 +51018 81849 0.4220 +51018 81887 0.5720 +51018 83480 0.4100 +51018 83743 0.8000 +51018 84128 0.7060 +51018 84135 0.4760 +51018 84154 0.9850 +51018 84240 0.4040 +51018 84294 0.6660 +51018 84310 0.5970 +51018 84319 0.4870 +51018 84365 0.9910 +51018 84437 0.4050 +51018 84450 0.5190 +51018 84549 0.9720 +51018 84916 0.5660 +51018 84946 0.8620 +51018 88745 0.5850 +51018 90121 0.7140 +51018 90441 0.6930 +51018 92856 0.8450 +51018 112752 0.4260 +51018 116966 0.4840 +51018 117246 0.8230 +51018 128153 0.6310 +51018 129401 0.4300 +51018 145258 0.9540 +51018 146212 0.7180 +51018 149076 0.4340 +51018 153443 0.5010 +51018 165545 0.4140 +51018 221078 0.5810 +51018 221830 0.6000 +51018 285855 0.6620 +51018 339479 0.4390 +51018 345757 0.4020 +51018 387129 0.6430 +51018 692312 0.8580 +51018 100505478 0.5800 +51018 100526842 0.4640 +51019 51699 0.7480 +51019 54520 0.6430 +51019 54535 0.4750 +51019 55010 0.4490 +51019 55297 0.4720 +51019 55330 0.6220 +51019 55737 0.7420 +51019 55845 0.7260 +51019 57020 0.4930 +51019 57326 0.4260 +51019 57542 0.4440 +51019 58533 0.5110 +51019 60673 0.5090 +51019 65999 0.4990 +51019 79023 0.8530 +51019 81609 0.7310 +51019 90410 0.4370 +51019 112936 0.4800 +51019 115106 0.6480 +51019 123720 0.5100 +51019 124808 0.4870 +51019 133746 0.4280 +51019 150684 0.5440 +51019 253725 0.9990 +51019 256369 0.5910 +51019 282991 0.4870 +51019 284217 0.4120 +51019 387680 0.9840 +51019 440498 0.6390 +51019 100287171 0.9990 +51020 51233 0.4470 +51020 51292 0.4630 +51020 54870 0.4620 +51020 55152 0.4730 +51020 63931 0.6350 +51020 83594 0.7950 +51020 84284 0.4230 +51020 113179 0.6980 +51020 123879 0.4160 +51020 131118 0.5600 +51020 134637 0.6910 +51020 161823 0.4530 +51020 196074 0.4570 +51020 388969 0.4470 +51020 100131017 0.4610 +51021 51023 0.9980 +51021 51067 0.4090 +51021 51069 0.9980 +51021 51073 0.9990 +51021 51081 0.9990 +51021 51106 0.9300 +51021 51116 0.9990 +51021 51121 0.9680 +51021 51149 0.9690 +51021 51154 0.9840 +51021 51204 0.5900 +51021 51253 0.9020 +51021 51258 0.8860 +51021 51263 0.9900 +51021 51264 0.9990 +51021 51314 0.6220 +51021 51318 0.8920 +51021 51373 0.9950 +51021 51574 0.4080 +51021 51642 0.9040 +51021 51649 0.9940 +51021 51650 0.9930 +51021 51734 0.4020 +51021 54148 0.9140 +51021 54460 0.9930 +51021 54516 0.7530 +51021 54534 0.8930 +51021 54543 0.5290 +51021 54948 0.9980 +51021 54965 0.4900 +51021 54998 0.9870 +51021 55005 0.5020 +51021 55037 0.9770 +51021 55052 0.9990 +51021 55157 0.6490 +51021 55168 0.9980 +51021 55173 0.9990 +51021 55176 0.9130 +51021 55268 0.4720 +51021 55272 0.9830 +51021 55316 0.9650 +51021 55324 0.7800 +51021 55687 0.6060 +51021 55699 0.5190 +51021 55703 0.7940 +51021 55862 0.4820 +51021 55967 0.4310 +51021 56648 0.8890 +51021 56945 0.9990 +51021 56993 0.4090 +51021 57038 0.5410 +51021 57128 0.4170 +51021 57129 0.9950 +51021 57470 0.4440 +51021 57505 0.4350 +51021 58472 0.4490 +51021 60488 0.9980 +51021 60558 0.8770 +51021 60678 0.4200 +51021 63875 0.9990 +51021 63931 0.9990 +51021 64146 0.9510 +51021 64216 0.6360 +51021 64374 0.9040 +51021 64432 0.9990 +51021 64745 0.9720 +51021 64756 0.4100 +51021 64928 0.9220 +51021 64949 0.9970 +51021 64951 0.9940 +51021 64960 0.9990 +51021 64963 0.9990 +51021 64965 0.9990 +51021 64968 0.9990 +51021 64969 0.9990 +51021 64975 0.9970 +51021 64976 0.9970 +51021 64978 0.9680 +51021 64979 0.9990 +51021 64981 0.9930 +51021 64983 0.9990 +51021 65003 0.9980 +51021 65005 0.9990 +51021 65008 0.9960 +51021 65080 0.9960 +51021 65121 0.7110 +51021 65122 0.7110 +51021 65993 0.9990 +51021 78988 0.8950 +51021 79590 0.9960 +51021 79631 0.9230 +51021 79727 0.4400 +51021 79728 0.6020 +51021 79863 0.8430 +51021 80146 0.4900 +51021 80222 0.4740 +51021 80270 0.4890 +51021 80298 0.4270 +51021 80324 0.5810 +51021 81031 0.4180 +51021 81892 0.4130 +51021 83460 0.6160 +51021 83752 0.4610 +51021 84077 0.4140 +51021 84172 0.7940 +51021 84273 0.8300 +51021 84311 0.9270 +51021 84340 0.6480 +51021 84545 0.9970 +51021 84883 0.4010 +51021 85476 0.9970 +51021 87178 0.5180 +51021 90313 0.9020 +51021 90416 0.4140 +51021 90480 0.8470 +51021 90624 0.6670 +51021 91574 0.8210 +51021 91893 0.4540 +51021 92259 0.8390 +51021 92399 0.9960 +51021 93517 0.4890 +51021 112817 0.8120 +51021 114134 0.4180 +51021 114781 0.6460 +51021 116540 0.8430 +51021 116541 0.9820 +51021 118487 0.9930 +51021 118491 0.5790 +51021 122704 0.9430 +51021 123169 0.4040 +51021 123263 0.6230 +51021 123283 0.4430 +51021 124359 0.4710 +51021 124454 0.4670 +51021 124995 0.9760 +51021 126402 0.9690 +51021 128308 0.9380 +51021 131118 0.4110 +51021 133015 0.4370 +51021 135138 0.4290 +51021 140801 0.9020 +51021 142940 0.4330 +51021 143244 0.8890 +51021 148022 0.5740 +51021 149478 0.5750 +51021 150209 0.4010 +51021 153443 0.5570 +51021 154091 0.4180 +51021 157310 0.7820 +51021 158234 0.7830 +51021 196074 0.8750 +51021 219402 0.9280 +51021 219927 0.9990 +51021 246243 0.4400 +51021 253175 0.4710 +51021 255308 0.4070 +51021 284106 0.5930 +51021 285521 0.5390 +51021 285855 0.9670 +51021 339448 0.5660 +51021 343068 0.7110 +51021 343070 0.7110 +51021 345051 0.7220 +51021 347487 0.9060 +51021 353376 0.5740 +51021 374291 0.4820 +51021 374659 0.9510 +51021 387129 0.9390 +51021 390999 0.7110 +51021 391002 0.7110 +51021 400735 0.7110 +51021 400736 0.7110 +51021 440560 0.7110 +51021 440561 0.7110 +51021 441873 0.7110 +51021 641776 0.8270 +51021 643909 0.8270 +51021 645359 0.7110 +51021 653247 0.4180 +51021 653619 0.7110 +51021 654364 0.6130 +51021 728524 0.8270 +51021 729528 0.7110 +51021 100287482 0.9060 +51021 100302736 0.5740 +51021 100505478 0.9390 +51021 100526842 0.9690 +51021 100996746 0.8270 +51021 101929983 0.7110 +51021 105180390 0.8270 +51021 105180391 0.8270 +51021 114483834 0.7870 +51022 51027 0.4840 +51022 51218 0.7680 +51022 51314 0.5490 +51022 54205 0.5690 +51022 64359 0.4030 +51022 79577 0.4550 +51022 81570 0.5040 +51022 81689 0.6310 +51022 84203 0.4300 +51022 112812 0.5570 +51022 114112 0.5880 +51022 122961 0.5730 +51022 131474 0.5110 +51022 140809 0.5190 +51022 257202 0.5430 +51022 388962 0.4500 +51022 493869 0.5350 +51023 51069 0.9440 +51023 51073 0.9650 +51023 51077 0.4110 +51023 51079 0.4200 +51023 51081 0.9960 +51023 51106 0.8290 +51023 51116 0.9980 +51023 51121 0.5570 +51023 51149 0.6610 +51023 51154 0.5320 +51023 51253 0.8710 +51023 51258 0.9500 +51023 51263 0.9400 +51023 51264 0.9770 +51023 51318 0.9070 +51023 51373 0.9910 +51023 51574 0.4440 +51023 51642 0.9370 +51023 51649 0.9940 +51023 51650 0.9980 +51023 51699 0.4410 +51023 54108 0.4190 +51023 54148 0.9100 +51023 54460 0.9970 +51023 54516 0.5620 +51023 54534 0.9480 +51023 54543 0.4570 +51023 54948 0.9830 +51023 54998 0.9760 +51023 55037 0.9580 +51023 55052 0.9930 +51023 55168 0.9990 +51023 55173 0.9980 +51023 55272 0.6880 +51023 55316 0.6520 +51023 55967 0.6820 +51023 56945 0.9960 +51023 57129 0.9770 +51023 60488 0.9940 +51023 63875 0.9750 +51023 63931 0.9990 +51023 64374 0.5610 +51023 64432 0.9850 +51023 64745 0.9250 +51023 64928 0.8830 +51023 64949 0.9830 +51023 64951 0.9780 +51023 64960 0.9980 +51023 64963 0.9990 +51023 64965 0.9960 +51023 64968 0.9990 +51023 64969 0.9990 +51023 64975 0.9730 +51023 64976 0.9760 +51023 64978 0.9090 +51023 64979 0.9800 +51023 64981 0.9650 +51023 64983 0.9730 +51023 65003 0.9730 +51023 65005 0.9350 +51023 65008 0.9460 +51023 65080 0.9660 +51023 65121 0.4510 +51023 65122 0.4510 +51023 65993 0.9880 +51023 78988 0.8520 +51023 79590 0.9490 +51023 79863 0.8260 +51023 81892 0.6110 +51023 84142 0.4180 +51023 84273 0.8800 +51023 84274 0.5020 +51023 84311 0.8820 +51023 84545 0.9700 +51023 85476 0.8520 +51023 90313 0.7020 +51023 90480 0.8420 +51023 90624 0.4970 +51023 92170 0.4770 +51023 92259 0.6960 +51023 92399 0.9220 +51023 103910 0.6110 +51023 114781 0.4700 +51023 116228 0.4580 +51023 116540 0.9000 +51023 116541 0.9570 +51023 118487 0.9930 +51023 122704 0.9210 +51023 124995 0.9410 +51023 126402 0.6680 +51023 128308 0.9100 +51023 131118 0.4520 +51023 140801 0.5610 +51023 148022 0.4850 +51023 149478 0.4350 +51023 157310 0.5340 +51023 158234 0.7410 +51023 196074 0.8420 +51023 219402 0.9110 +51023 219927 0.9670 +51023 286075 0.5820 +51023 339487 0.5340 +51023 343068 0.4510 +51023 343070 0.4510 +51023 345051 0.5200 +51023 347487 0.5950 +51023 353376 0.4850 +51023 390999 0.4510 +51023 391002 0.4510 +51023 400735 0.4510 +51023 400736 0.4510 +51023 440560 0.4510 +51023 440561 0.4510 +51023 441873 0.4510 +51023 493753 0.6190 +51023 641776 0.4940 +51023 643909 0.4940 +51023 645359 0.4510 +51023 653619 0.4510 +51023 728524 0.4940 +51023 729528 0.4510 +51023 100287482 0.5950 +51023 100302736 0.4850 +51023 100526842 0.6100 +51023 100996746 0.4940 +51023 101929983 0.4510 +51023 105180390 0.4940 +51023 105180391 0.4940 +51024 51079 0.4010 +51024 51100 0.5100 +51024 51537 0.5650 +51024 54205 0.8680 +51024 54332 0.8850 +51024 54471 0.9640 +51024 54543 0.5330 +51024 54708 0.9650 +51024 55014 0.4880 +51024 55177 0.8250 +51024 55201 0.5610 +51024 55288 0.7030 +51024 55333 0.4780 +51024 55486 0.6700 +51024 55638 0.4760 +51024 55669 0.9370 +51024 55670 0.6940 +51024 56947 0.9890 +51024 56993 0.5430 +51024 64423 0.6170 +51024 64786 0.9990 +51024 65018 0.9310 +51024 66008 0.4590 +51024 78997 0.5530 +51024 79594 0.6150 +51024 79735 0.9960 +51024 80700 0.4880 +51024 81631 0.5760 +51024 84300 0.4820 +51024 84557 0.4680 +51024 84701 0.5470 +51024 84749 0.9180 +51024 84896 0.6610 +51024 89941 0.6390 +51024 90550 0.5520 +51024 91452 0.7090 +51024 92960 0.6650 +51024 114879 0.4150 +51024 115209 0.6770 +51024 118987 0.5120 +51024 120892 0.5090 +51024 125170 0.9240 +51024 133522 0.4790 +51024 137902 0.4170 +51024 139341 0.7230 +51024 158747 0.5670 +51024 192111 0.5580 +51024 221302 0.4080 +51024 387990 0.4450 +51024 493856 0.4480 +51024 100287932 0.4940 +51025 51161 0.7390 +51025 54543 0.6300 +51025 56993 0.7630 +51025 64979 0.4570 +51025 79585 0.8600 +51025 80273 0.9080 +51025 92609 0.9720 +51025 131118 0.9990 +51025 131474 0.5560 +51025 134266 0.7980 +51025 140823 0.8660 +51025 150274 0.5090 +51025 197257 0.4990 +51025 219927 0.4630 +51025 401505 0.4710 +51025 728489 0.5570 +51025 100188893 0.4440 +51025 100287932 0.9600 +51026 51124 0.4340 +51026 51167 0.5720 +51026 51569 0.4370 +51026 51700 0.5360 +51026 51706 0.5430 +51026 55270 0.5220 +51026 55726 0.7450 +51026 56256 0.4920 +51026 56681 0.5010 +51026 56896 0.6050 +51026 57142 0.5980 +51026 60561 0.5280 +51026 79831 0.4280 +51026 79912 0.4910 +51026 81555 0.5870 +51026 84826 0.5710 +51026 84926 0.4940 +51026 85865 0.4870 +51026 89894 0.6430 +51026 92106 0.5400 +51026 113201 0.4420 +51026 139596 0.4370 +51026 162417 0.4330 +51026 375035 0.4660 +51026 440026 0.5640 +51026 606495 0.5360 +51027 51218 0.9870 +51027 54344 0.4030 +51027 55316 0.4670 +51027 55847 0.4860 +51027 57019 0.9490 +51027 57128 0.7900 +51027 58473 0.4270 +51027 59286 0.5200 +51027 64210 0.5620 +51027 64428 0.4300 +51027 80224 0.5710 +51027 81689 0.7720 +51027 92014 0.4490 +51027 112812 0.8570 +51027 122961 0.7910 +51027 150274 0.4050 +51027 200205 0.7450 +51027 338699 0.4450 +51027 388962 0.9990 +51027 552900 0.8110 +51027 654483 0.8100 +51027 100303755 0.4920 +51028 51160 0.9990 +51028 51230 0.6260 +51028 51271 0.9630 +51028 51409 0.4330 +51028 51510 0.7730 +51028 51534 0.7300 +51028 51652 0.9900 +51028 51699 0.8910 +51028 55048 0.9720 +51028 55143 0.4290 +51028 55293 0.7990 +51028 55666 0.5670 +51028 55737 0.8040 +51028 57095 0.6160 +51028 57132 0.9690 +51028 64149 0.7440 +51028 64601 0.4170 +51028 79643 0.9990 +51028 79720 0.9570 +51028 81688 0.4550 +51028 83547 0.6370 +51028 84313 0.9990 +51028 84936 0.4140 +51028 89853 0.9570 +51028 91782 0.9570 +51028 92421 0.8520 +51028 93343 0.9720 +51028 115708 0.6330 +51028 128866 0.9610 +51028 137492 0.9770 +51028 155382 0.9520 +51028 200576 0.4170 +51028 284427 0.4630 +51028 390595 0.5400 +51028 100526767 0.9040 +51029 57337 0.5860 +51029 79894 0.4210 +51029 90580 0.4580 +51029 116228 0.5530 +51029 123228 0.4350 +51029 126917 0.4370 +51029 200159 0.4790 +51029 205564 0.6890 +51029 257044 0.4500 +51029 387082 0.4100 +51030 54432 0.5440 +51030 54482 0.4140 +51030 57515 0.4220 +51030 64518 0.5400 +51030 78992 0.5510 +51030 79971 0.4500 +51030 85025 0.6890 +51030 140901 0.4040 +51030 146822 0.7140 +51030 149420 0.4130 +51030 254272 0.5060 +51030 284040 0.6730 +51030 284098 0.4290 +51030 374286 0.4630 +51031 51102 0.4410 +51031 51110 0.4680 +51031 51167 0.4420 +51031 51179 0.5430 +51031 51497 0.5580 +51031 51501 0.4150 +51031 53343 0.4380 +51031 53938 0.4920 +51031 54187 0.5530 +51031 54363 0.5430 +51031 54840 0.4630 +51031 55011 0.4580 +51031 55272 0.4220 +51031 55967 0.4280 +51031 56922 0.5440 +51031 57019 0.5180 +51031 57470 0.4180 +51031 64087 0.6300 +51031 64359 0.5290 +51031 79893 0.4330 +51031 80335 0.5200 +51031 80349 0.6190 +51031 84263 0.4730 +51031 84264 0.5000 +51031 84681 0.4070 +51031 84816 0.4030 +51031 84842 0.6960 +51031 84869 0.4480 +51031 92106 0.4860 +51031 112812 0.5250 +51031 113179 0.4650 +51031 115817 0.4380 +51031 116254 0.4170 +51031 132851 0.4390 +51031 134637 0.4650 +51031 137872 0.4080 +51031 153364 0.4660 +51031 160777 0.4750 +51031 197257 0.5320 +51031 339977 0.5290 +51031 389434 0.6360 +51031 392465 0.4640 +51031 100130890 0.5080 +51031 100131187 0.5150 +51032 51200 0.5860 +51032 203259 0.4020 +51032 440387 0.5150 +51035 51132 0.7850 +51035 51366 0.6040 +51035 51608 0.4110 +51035 54941 0.7350 +51035 55432 0.4690 +51035 55643 0.5040 +51035 55658 0.5650 +51035 55666 0.9250 +51035 55768 0.8420 +51035 55968 0.9810 +51035 56893 0.5760 +51035 57506 0.8680 +51035 59349 0.5030 +51035 63906 0.4550 +51035 79058 0.6130 +51035 79139 0.9190 +51035 80124 0.5840 +51035 80700 0.9810 +51035 83892 0.9950 +51035 84078 0.7110 +51035 84861 0.5100 +51035 84936 0.4060 +51035 84950 0.4110 +51035 84993 0.4510 +51035 91319 0.5640 +51035 91544 0.6050 +51035 114781 0.9940 +51035 127733 0.6620 +51035 137886 0.6320 +51035 165324 0.9630 +51035 197131 0.5130 +51035 258010 0.9450 +51042 51068 0.9890 +51042 51069 0.4460 +51042 51077 0.5600 +51042 51082 0.8190 +51042 51096 0.4200 +51042 51118 0.4690 +51042 51121 0.4980 +51042 51154 0.9930 +51042 51187 0.9980 +51042 51202 0.4370 +51042 51236 0.4200 +51042 51319 0.4610 +51042 51333 0.4080 +51042 51388 0.9110 +51042 51490 0.5610 +51042 51491 0.6490 +51042 51575 0.6850 +51042 54433 0.4950 +51042 54463 0.6600 +51042 54475 0.9630 +51042 54512 0.5580 +51042 54552 0.9120 +51042 54555 0.4670 +51042 54606 0.7200 +51042 54663 0.5740 +51042 54865 0.4580 +51042 54881 0.9040 +51042 54948 0.4190 +51042 54984 0.5300 +51042 55003 0.6950 +51042 55006 0.5810 +51042 55131 0.4150 +51042 55152 0.4350 +51042 55153 0.9700 +51042 55272 0.8560 +51042 55299 0.7210 +51042 55319 0.8860 +51042 55341 0.7580 +51042 55591 0.5370 +51042 55646 0.4880 +51042 55651 0.8840 +51042 55718 0.5290 +51042 55720 0.5460 +51042 55759 0.5070 +51042 56342 0.5050 +51042 56647 0.4760 +51042 56902 0.4880 +51042 56915 0.4560 +51042 57050 0.4170 +51042 57418 0.9460 +51042 57696 0.5050 +51042 64216 0.4140 +51042 64318 0.4600 +51042 64425 0.4340 +51042 65003 0.4500 +51042 65095 0.4040 +51042 79029 0.5500 +51042 79038 0.4090 +51042 79050 0.7050 +51042 79137 0.5120 +51042 79159 0.5720 +51042 79571 0.4680 +51042 79590 0.4660 +51042 80135 0.5160 +51042 80347 0.4180 +51042 83475 0.7570 +51042 83743 0.8360 +51042 84154 0.9910 +51042 84273 0.5180 +51042 84294 0.6190 +51042 84298 0.8900 +51042 84365 0.9820 +51042 84549 0.6240 +51042 84916 0.4110 +51042 84946 0.4310 +51042 90121 0.6130 +51042 90441 0.7450 +51042 92170 0.5340 +51042 92856 0.8150 +51042 115098 0.4280 +51042 115708 0.6700 +51042 116832 0.4640 +51042 117246 0.4460 +51042 162427 0.5120 +51042 166378 0.5500 +51042 197131 0.6050 +51042 221078 0.5250 +51042 221830 0.4060 +51042 285855 0.6860 +51042 387129 0.6890 +51042 100505478 0.6690 +51043 51341 0.4710 +51043 64641 0.4930 +51043 64866 0.9000 +51043 92856 0.6260 +51043 149095 0.4350 +51043 283208 0.4600 +51046 55530 0.4120 +51046 114805 0.4150 +51046 129807 0.4010 +51046 146664 0.4420 +51046 160518 0.4010 +51046 390110 0.4120 +51046 643669 0.4080 +51050 57563 0.5410 +51050 80184 0.5230 +51050 93436 0.4370 +51050 114827 0.5400 +51050 123096 0.4950 +51050 152007 0.4710 +51050 170690 0.4080 +51050 219995 0.4370 +51050 257068 0.4050 +51050 283212 0.5000 +51050 389558 0.5660 +51050 643904 0.4540 +51052 51083 0.4140 +51052 51738 0.4120 +51052 64106 0.6580 +51052 64111 0.7400 +51052 80763 0.4970 +51052 80852 0.6770 +51052 84109 0.5070 +51052 113091 0.4700 +51052 117579 0.4380 +51052 129521 0.5120 +51052 256933 0.5250 +51052 283869 0.4230 +51052 347148 0.7820 +51052 594857 0.6690 +51053 51203 0.5720 +51053 51307 0.4360 +51053 51343 0.8300 +51053 51433 0.5150 +51053 51434 0.4090 +51053 51514 0.6190 +51053 51529 0.4130 +51053 51659 0.6340 +51053 54069 0.4160 +51053 54443 0.4500 +51053 54962 0.5870 +51053 55143 0.5730 +51053 55148 0.4450 +51053 55215 0.4950 +51053 55388 0.7680 +51053 55794 0.4580 +51053 57639 0.7390 +51053 64105 0.4680 +51053 64151 0.5300 +51053 64682 0.4250 +51053 64785 0.4760 +51053 79075 0.5130 +51053 79682 0.5480 +51053 79733 0.4620 +51053 79968 0.4020 +51053 81610 0.4010 +51053 81620 0.9990 +51053 83461 0.5190 +51053 83540 0.5940 +51053 83879 0.4520 +51053 84515 0.7170 +51053 90594 0.6190 +51053 113130 0.5410 +51053 157313 0.5110 +51053 246184 0.4530 +51053 283431 0.4540 +51053 284439 0.4020 +51053 286151 0.7020 +51053 345643 0.9560 +51053 387103 0.6320 +51053 388969 0.4200 +51056 51191 0.4470 +51056 54625 0.4340 +51056 54739 0.4520 +51056 54858 0.4890 +51056 55276 0.7330 +51056 55601 0.4260 +51056 55748 0.4950 +51056 56267 0.8240 +51056 57050 0.8260 +51056 59272 0.4430 +51056 63929 0.6180 +51056 64135 0.5600 +51056 64151 0.5380 +51056 65263 0.9010 +51056 79017 0.9050 +51056 79094 0.9060 +51056 80306 0.5770 +51056 83666 0.5370 +51056 91543 0.5320 +51056 94240 0.4780 +51056 115361 0.4200 +51056 115362 0.4220 +51056 124975 0.9310 +51056 137362 0.8620 +51056 152992 0.4470 +51056 200895 0.5310 +51056 202018 0.5450 +51056 206338 0.4140 +51056 219285 0.4040 +51056 254251 0.6130 +51056 494143 0.9060 +51057 54585 0.6230 +51057 54885 0.4970 +51057 54903 0.8790 +51057 55212 0.8140 +51057 57188 0.7760 +51057 57216 0.4170 +51057 57536 0.7830 +51057 57545 0.7610 +51057 57560 0.4700 +51057 57728 0.4310 +51057 79140 0.8200 +51057 79363 0.9260 +51057 79600 0.4200 +51057 79738 0.8620 +51057 79871 0.4060 +51057 80115 0.4170 +51057 80173 0.4230 +51057 80184 0.7790 +51057 80199 0.9910 +51057 84306 0.4790 +51057 90288 0.4100 +51057 91147 0.7610 +51057 92482 0.6980 +51057 112752 0.4200 +51057 123207 0.4350 +51057 129880 0.8170 +51057 144165 0.4130 +51057 144535 0.7750 +51057 145282 0.7800 +51057 157657 0.6100 +51057 166336 0.4040 +51057 166379 0.8720 +51057 166979 0.4110 +51057 221322 0.6530 +51057 285555 0.5940 +51057 375190 0.4650 +51057 389177 0.7830 +51057 400673 0.4750 +51058 79078 0.4200 +51058 150383 0.4850 +51058 378925 0.4020 +51059 53353 0.4800 +51059 79755 0.4490 +51059 79776 0.4490 +51059 114788 0.5490 +51059 129446 0.4040 +51059 162963 0.4130 +51059 388662 0.5120 +51059 401647 0.4080 +51060 51075 0.4120 +51060 51218 0.4620 +51060 51249 0.5530 +51060 51661 0.4030 +51060 54431 0.4990 +51060 54495 0.4140 +51060 56254 0.4020 +51060 56255 0.7250 +51060 56951 0.4430 +51060 64714 0.5240 +51060 79094 0.9020 +51060 80097 0.7750 +51060 81542 0.5570 +51060 81567 0.5980 +51060 85378 0.6600 +51060 112970 0.5000 +51060 114791 0.7850 +51060 119391 0.9010 +51060 121506 0.5230 +51060 124975 0.9120 +51060 204474 0.4570 +51060 221357 0.9070 +51060 257202 0.9080 +51060 339145 0.4470 +51060 493869 0.9110 +51060 494143 0.9040 +51060 653689 0.9070 +51060 653784 0.7160 +51061 53905 0.5100 +51061 54431 0.5660 +51061 55313 0.4080 +51061 55741 0.9660 +51061 56005 0.5310 +51061 56886 0.4990 +51061 57720 0.4160 +51061 80267 0.6330 +51061 81567 0.5690 +51061 83442 0.4370 +51061 84447 0.4380 +51061 92017 0.4440 +51061 92960 0.4280 +51061 129804 0.6110 +51061 201595 0.4660 +51061 339416 0.5350 +51061 387509 0.4100 +51062 51308 0.7440 +51062 51324 0.5770 +51062 54875 0.4790 +51062 55008 0.4230 +51062 57132 0.6980 +51062 57142 0.8340 +51062 64108 0.4430 +51062 65055 0.9830 +51062 80117 0.4010 +51062 80208 0.7330 +51062 80346 0.6050 +51062 80821 0.4230 +51062 80856 0.5490 +51062 92840 0.4660 +51062 115362 0.4260 +51062 118813 0.8100 +51062 123606 0.8610 +51062 128486 0.5580 +51062 221035 0.4180 +51062 345611 0.5800 +51062 388646 0.6100 +51063 54838 0.4530 +51063 54883 0.5490 +51063 54955 0.6120 +51063 55276 0.5230 +51063 60491 0.4400 +51063 79825 0.4450 +51063 80183 0.5740 +51063 93109 0.4970 +51063 128077 0.4130 +51063 133688 0.5580 +51063 140825 0.4320 +51063 167127 0.5580 +51063 167410 0.5860 +51063 283159 0.4010 +51063 389161 0.4430 +51063 494188 0.5270 +51063 645191 0.5380 +51065 51069 0.7620 +51065 51073 0.8290 +51065 51077 0.8600 +51065 51081 0.8490 +51065 51096 0.8540 +51065 51116 0.7320 +51065 51118 0.8720 +51065 51121 0.9530 +51065 51149 0.9030 +51065 51154 0.8530 +51065 51187 0.6390 +51065 51202 0.4500 +51065 51319 0.8550 +51065 51386 0.7520 +51065 51602 0.8740 +51065 51691 0.5170 +51065 51762 0.4500 +51065 54464 0.4260 +51065 54505 0.6120 +51065 54512 0.4160 +51065 54555 0.4430 +51065 54913 0.5260 +51065 54948 0.6540 +51065 55127 0.8770 +51065 55173 0.9180 +51065 55215 0.5590 +51065 55226 0.8030 +51065 55269 0.5510 +51065 55272 0.9500 +51065 55316 0.9140 +51065 55601 0.4140 +51065 55629 0.5080 +51065 55651 0.6390 +51065 55720 0.7470 +51065 55781 0.7510 +51065 55802 0.5380 +51065 55813 0.8730 +51065 55854 0.4340 +51065 56479 0.5040 +51065 56648 0.7660 +51065 56893 0.4960 +51065 56902 0.7550 +51065 57050 0.8650 +51065 57647 0.4900 +51065 60559 0.5260 +51065 60678 0.7790 +51065 63931 0.8080 +51065 64221 0.5030 +51065 64374 0.6360 +51065 64393 0.4870 +51065 64960 0.8680 +51065 64963 0.9250 +51065 64969 0.9030 +51065 65003 0.7130 +51065 65008 0.7900 +51065 65083 0.8630 +51065 65121 0.5700 +51065 65122 0.5700 +51065 79050 0.8740 +51065 79571 0.5140 +51065 79590 0.8560 +51065 79631 0.5670 +51065 79897 0.5000 +51065 79954 0.8070 +51065 80146 0.4790 +51065 80270 0.4710 +51065 83732 0.5310 +51065 83939 0.5900 +51065 84128 0.8540 +51065 84135 0.8530 +51065 84916 0.8550 +51065 84946 0.7310 +51065 84993 0.4960 +51065 85377 0.5320 +51065 85476 0.5610 +51065 90701 0.4190 +51065 92196 0.6180 +51065 92856 0.8580 +51065 93107 0.5040 +51065 93517 0.4750 +51065 93550 0.6040 +51065 114987 0.9140 +51065 116832 0.9440 +51065 124454 0.6810 +51065 126402 0.8400 +51065 140032 0.9370 +51065 140801 0.9320 +51065 143244 0.7660 +51065 143630 0.4890 +51065 164153 0.5710 +51065 169522 0.5040 +51065 170850 0.5040 +51065 200916 0.9600 +51065 220001 0.4470 +51065 254268 0.9050 +51065 255308 0.5770 +51065 283518 0.5040 +51065 285855 0.9370 +51065 343068 0.5700 +51065 343070 0.5700 +51065 345630 0.5900 +51065 347487 0.8180 +51065 387129 0.7690 +51065 390999 0.5700 +51065 391002 0.5700 +51065 400735 0.5700 +51065 400736 0.5700 +51065 440560 0.5700 +51065 440561 0.5700 +51065 441873 0.5700 +51065 641776 0.6540 +51065 643909 0.6540 +51065 645051 0.6500 +51065 645073 0.6500 +51065 645359 0.5700 +51065 653619 0.5700 +51065 728524 0.6540 +51065 728689 0.7260 +51065 729396 0.6500 +51065 729422 0.6500 +51065 729428 0.6500 +51065 729431 0.6500 +51065 729442 0.6500 +51065 729447 0.6500 +51065 729528 0.5700 +51065 100008586 0.6500 +51065 100132399 0.6500 +51065 100287482 0.6840 +51065 100505478 0.7380 +51065 100526842 0.9300 +51065 100529097 0.8380 +51065 100529239 0.9180 +51065 100996746 0.6540 +51065 101929983 0.5700 +51065 102724473 0.6500 +51065 105180390 0.6540 +51065 105180391 0.6540 +51066 55753 0.4020 +51066 64094 0.4630 +51066 93650 0.4310 +51066 115795 0.4190 +51066 195814 0.4040 +51066 200132 0.5270 +51066 343070 0.4400 +51067 51073 0.6410 +51067 51095 0.6430 +51067 51116 0.4060 +51067 51163 0.4480 +51067 51202 0.4050 +51067 51204 0.4560 +51067 51218 0.4060 +51067 51520 0.8870 +51067 54148 0.5720 +51067 54516 0.5520 +51067 54539 0.4090 +51067 54802 0.6100 +51067 54938 0.8740 +51067 54977 0.4920 +51067 55157 0.8810 +51067 55178 0.6150 +51067 55272 0.4610 +51067 55278 0.5050 +51067 55349 0.4570 +51067 55572 0.4610 +51067 55687 0.5320 +51067 55699 0.9190 +51067 55703 0.4280 +51067 55794 0.6340 +51067 57017 0.5300 +51067 57038 0.9250 +51067 57176 0.8910 +51067 57412 0.4350 +51067 57470 0.5940 +51067 57505 0.8900 +51067 60558 0.5950 +51067 65080 0.5160 +51067 79587 0.8430 +51067 79731 0.9260 +51067 79922 0.4940 +51067 80222 0.8630 +51067 80324 0.9560 +51067 83480 0.4410 +51067 84172 0.5410 +51067 84273 0.4280 +51067 84340 0.4860 +51067 84464 0.5040 +51067 84881 0.4030 +51067 85476 0.6440 +51067 87178 0.4190 +51067 91574 0.6110 +51067 91875 0.4060 +51067 91893 0.5960 +51067 92399 0.5720 +51067 92675 0.5320 +51067 92935 0.9390 +51067 93974 0.4810 +51067 112487 0.5580 +51067 115416 0.5060 +51067 123263 0.6740 +51067 123283 0.8340 +51067 124454 0.9090 +51067 139596 0.4820 +51067 150274 0.4260 +51067 285367 0.6260 +51067 374395 0.4610 +51067 440275 0.4740 +51067 101927367 0.5250 +51068 51069 0.5350 +51068 51073 0.5030 +51068 51096 0.7480 +51068 51118 0.6020 +51068 51119 0.6980 +51068 51121 0.5940 +51068 51154 0.9820 +51068 51187 0.9980 +51068 51202 0.6240 +51068 51236 0.4110 +51068 51319 0.5180 +51068 51388 0.8300 +51068 51575 0.4220 +51068 51602 0.9030 +51068 51605 0.4710 +51068 51808 0.4970 +51068 54433 0.5390 +51068 54463 0.8890 +51068 54475 0.6300 +51068 54517 0.4840 +51068 54552 0.9340 +51068 54555 0.8380 +51068 54606 0.6920 +51068 54663 0.8130 +51068 54700 0.5390 +51068 54881 0.4750 +51068 54948 0.6130 +51068 55003 0.7180 +51068 55027 0.5120 +51068 55127 0.6650 +51068 55131 0.6920 +51068 55140 0.7480 +51068 55153 0.8080 +51068 55226 0.8640 +51068 55272 0.4440 +51068 55299 0.8100 +51068 55319 0.9050 +51068 55341 0.9990 +51068 55591 0.6380 +51068 55622 0.6190 +51068 55651 0.6720 +51068 55703 0.4470 +51068 55720 0.9300 +51068 55759 0.9500 +51068 55760 0.4170 +51068 55781 0.9180 +51068 55794 0.4200 +51068 55813 0.6270 +51068 56000 0.5420 +51068 56001 0.4560 +51068 56342 0.5610 +51068 56902 0.7040 +51068 56931 0.4330 +51068 57050 0.6720 +51068 57062 0.4800 +51068 57418 0.7750 +51068 57510 0.4990 +51068 60487 0.6120 +51068 64216 0.4640 +51068 64318 0.6510 +51068 64374 0.6120 +51068 64425 0.4190 +51068 64794 0.4270 +51068 65083 0.5210 +51068 79029 0.5150 +51068 79039 0.4800 +51068 79050 0.6460 +51068 79137 0.7570 +51068 79571 0.4940 +51068 79590 0.5730 +51068 79631 0.7140 +51068 79954 0.5760 +51068 80135 0.7330 +51068 81610 0.4120 +51068 83732 0.6360 +51068 83743 0.8850 +51068 84128 0.6920 +51068 84135 0.7090 +51068 84154 0.9540 +51068 84172 0.7730 +51068 84273 0.6040 +51068 84294 0.5610 +51068 84298 0.8610 +51068 84365 0.7680 +51068 84549 0.6840 +51068 84660 0.4520 +51068 84916 0.8610 +51068 84946 0.9500 +51068 85464 0.4290 +51068 85476 0.6170 +51068 90121 0.4880 +51068 90441 0.9900 +51068 92170 0.6360 +51068 92399 0.5020 +51068 92856 0.7050 +51068 116832 0.5950 +51068 116966 0.6240 +51068 117246 0.7810 +51068 124454 0.4770 +51068 134218 0.8210 +51068 140801 0.9660 +51068 142940 0.4400 +51068 146212 0.4370 +51068 155368 0.5810 +51068 161424 0.5760 +51068 162427 0.7570 +51068 165545 0.4090 +51068 166378 0.5480 +51068 196403 0.4430 +51068 200916 0.5860 +51068 221078 0.6440 +51068 221830 0.6700 +51068 222484 0.4210 +51068 254268 0.4420 +51068 285855 0.6950 +51068 317781 0.4520 +51068 345630 0.4190 +51068 387129 0.6430 +51068 692312 0.4570 +51068 728343 0.4560 +51068 100505478 0.6320 +51068 100526842 0.5550 +51069 51073 0.9990 +51069 51079 0.4170 +51069 51081 0.9980 +51069 51116 0.9920 +51069 51119 0.5930 +51069 51121 0.8840 +51069 51149 0.8250 +51069 51154 0.8910 +51069 51184 0.6970 +51069 51187 0.7910 +51069 51250 0.8360 +51069 51253 0.9890 +51069 51258 0.9110 +51069 51263 0.9620 +51069 51264 0.9980 +51069 51295 0.7620 +51069 51318 0.9490 +51069 51319 0.6870 +51069 51373 0.8630 +51069 51398 0.4590 +51069 51555 0.4720 +51069 51574 0.5080 +51069 51642 0.9380 +51069 51649 0.8340 +51069 51650 0.8710 +51069 51720 0.5490 +51069 51727 0.4840 +51069 54059 0.4160 +51069 54148 0.9670 +51069 54460 0.9520 +51069 54516 0.5670 +51069 54534 0.9630 +51069 54948 0.9980 +51069 54998 0.8960 +51069 55037 0.8460 +51069 55052 0.9970 +51069 55143 0.5280 +51069 55157 0.4310 +51069 55168 0.9850 +51069 55173 0.9930 +51069 55176 0.8710 +51069 55178 0.8540 +51069 55272 0.8950 +51069 55316 0.8400 +51069 55324 0.5300 +51069 55591 0.7260 +51069 55651 0.7310 +51069 55699 0.4060 +51069 55703 0.7720 +51069 55794 0.9270 +51069 55893 0.5480 +51069 56479 0.4620 +51069 56648 0.7230 +51069 56731 0.5520 +51069 56893 0.4600 +51069 56945 0.8700 +51069 56965 0.7090 +51069 57129 0.9980 +51069 57136 0.6170 +51069 57471 0.4340 +51069 57609 0.4680 +51069 58505 0.4100 +51069 60488 0.9800 +51069 60558 0.6650 +51069 60678 0.5980 +51069 63875 0.9990 +51069 63931 0.9960 +51069 64146 0.7710 +51069 64374 0.7770 +51069 64432 0.9440 +51069 64928 0.9430 +51069 64949 0.8980 +51069 64951 0.8660 +51069 64960 0.9960 +51069 64963 0.9920 +51069 64965 0.9980 +51069 64968 0.9960 +51069 64969 0.9970 +51069 64975 0.9820 +51069 64976 0.9890 +51069 64978 0.9750 +51069 64979 0.9980 +51069 64981 0.9910 +51069 64983 0.9960 +51069 65003 0.9960 +51069 65005 0.9990 +51069 65008 0.9920 +51069 65080 0.9850 +51069 65083 0.6800 +51069 65121 0.5880 +51069 65122 0.5880 +51069 65993 0.9140 +51069 78988 0.8740 +51069 79590 0.9970 +51069 79631 0.8070 +51069 79668 0.7090 +51069 80146 0.4560 +51069 80221 0.5530 +51069 80270 0.4560 +51069 80273 0.4110 +51069 81570 0.4660 +51069 83548 0.4050 +51069 84154 0.4460 +51069 84172 0.8020 +51069 84311 0.9170 +51069 84340 0.9180 +51069 84545 0.9930 +51069 84993 0.4640 +51069 85476 0.9610 +51069 85865 0.8880 +51069 87178 0.6200 +51069 90313 0.4650 +51069 90480 0.9590 +51069 90624 0.5410 +51069 91574 0.8990 +51069 91647 0.4610 +51069 91893 0.4180 +51069 92170 0.8830 +51069 92196 0.5110 +51069 92399 0.9800 +51069 92856 0.6230 +51069 93107 0.4620 +51069 93517 0.4560 +51069 93550 0.4560 +51069 114781 0.5670 +51069 114987 0.8230 +51069 115098 0.4350 +51069 115416 0.9540 +51069 116138 0.4470 +51069 116540 0.9260 +51069 116541 0.9480 +51069 116832 0.6860 +51069 118487 0.8360 +51069 122481 0.4800 +51069 122622 0.4090 +51069 122704 0.9210 +51069 123263 0.4110 +51069 124454 0.6910 +51069 124995 0.9620 +51069 126328 0.4400 +51069 126402 0.8600 +51069 128308 0.9240 +51069 130916 0.9090 +51069 140032 0.8460 +51069 140801 0.7730 +51069 143244 0.7230 +51069 143630 0.4560 +51069 147011 0.5480 +51069 148022 0.5450 +51069 149478 0.4260 +51069 154288 0.5480 +51069 157310 0.6460 +51069 158067 0.4800 +51069 164153 0.4560 +51069 169522 0.4620 +51069 170850 0.4620 +51069 200916 0.7600 +51069 201595 0.5270 +51069 219402 0.6230 +51069 219927 0.9970 +51069 221264 0.4800 +51069 254268 0.4620 +51069 255308 0.6130 +51069 283518 0.4620 +51069 285367 0.4450 +51069 285521 0.5300 +51069 285855 0.8250 +51069 343068 0.5880 +51069 343070 0.5880 +51069 345051 0.6720 +51069 347487 0.7690 +51069 353376 0.5450 +51069 374291 0.6260 +51069 374659 0.8230 +51069 387129 0.8060 +51069 387338 0.9060 +51069 387712 0.4120 +51069 390999 0.5880 +51069 391002 0.5880 +51069 400735 0.5880 +51069 400736 0.5880 +51069 440560 0.5880 +51069 440561 0.5880 +51069 441873 0.5880 +51069 619279 0.5480 +51069 641776 0.6890 +51069 642987 0.5480 +51069 643909 0.6890 +51069 645051 0.6050 +51069 645073 0.6050 +51069 645359 0.5880 +51069 653619 0.5880 +51069 728524 0.6890 +51069 729396 0.6050 +51069 729422 0.6050 +51069 729428 0.6050 +51069 729431 0.6050 +51069 729442 0.6050 +51069 729447 0.6050 +51069 729528 0.5880 +51069 100008586 0.6050 +51069 100128731 0.4400 +51069 100132399 0.6050 +51069 100287482 0.7690 +51069 100302736 0.5450 +51069 100505478 0.8050 +51069 100526842 0.8350 +51069 100529097 0.7440 +51069 100529239 0.8460 +51069 100996746 0.6890 +51069 101929983 0.5880 +51069 102724473 0.6050 +51069 105180390 0.6890 +51069 105180391 0.6890 +51069 114483834 0.5190 +51069 127898561 0.8000 +51070 51451 0.4460 +51070 51759 0.5330 +51070 55374 0.4750 +51070 56975 0.4060 +51070 57333 0.4540 +51070 81576 0.4740 +51070 90864 0.4080 +51070 115677 0.6830 +51071 51102 0.4340 +51071 51324 0.4460 +51071 51409 0.5050 +51071 54205 0.4280 +51071 54819 0.4360 +51071 54995 0.4010 +51071 55276 0.9870 +51071 57687 0.4340 +51071 57818 0.8000 +51071 64078 0.4240 +51071 64080 0.9670 +51071 64577 0.4350 +51071 79058 0.4810 +51071 80201 0.8260 +51071 80308 0.4010 +51071 81570 0.5050 +51071 83440 0.8130 +51071 84076 0.9560 +51071 84529 0.4340 +51071 84816 0.4490 +51071 84893 0.4040 +51071 84955 0.6590 +51071 85007 0.5110 +51071 92483 0.8130 +51071 92579 0.8000 +51071 123263 0.5600 +51071 126133 0.9580 +51071 137872 0.8250 +51071 139596 0.5960 +51071 151531 0.5690 +51071 154141 0.4100 +51071 160287 0.8060 +51071 160428 0.4330 +51071 221823 0.4350 +51071 282991 0.4210 +51071 283209 0.8070 +51071 284273 0.4390 +51071 285555 0.4340 +51071 387712 0.8260 +51071 414328 0.4710 +51071 441531 0.8150 +51071 729020 0.5290 +51071 729025 0.4200 +51072 51646 0.5180 +51072 55219 0.4530 +51072 55312 0.4630 +51072 57662 0.4900 +51072 57703 0.4440 +51072 64223 0.4670 +51072 79618 0.5910 +51072 83607 0.4540 +51072 84058 0.4060 +51072 84061 0.4230 +51072 90025 0.6240 +51072 145957 0.4990 +51073 51077 0.5610 +51073 51081 0.9970 +51073 51096 0.5440 +51073 51116 0.9930 +51073 51118 0.5340 +51073 51119 0.4900 +51073 51121 0.8390 +51073 51149 0.8260 +51073 51154 0.9080 +51073 51187 0.8360 +51073 51250 0.8190 +51073 51253 0.9580 +51073 51258 0.9850 +51073 51263 0.9940 +51073 51264 0.9990 +51073 51314 0.4620 +51073 51318 0.9580 +51073 51319 0.6790 +51073 51335 0.4240 +51073 51373 0.8560 +51073 51386 0.4620 +51073 51388 0.5790 +51073 51398 0.4480 +51073 51520 0.4340 +51073 51550 0.4280 +51073 51574 0.4260 +51073 51602 0.7130 +51073 51642 0.9820 +51073 51649 0.8940 +51073 51650 0.8830 +51073 51720 0.4030 +51073 51727 0.4830 +51073 51734 0.4350 +51073 54148 0.9840 +51073 54460 0.8530 +51073 54516 0.6690 +51073 54534 0.9890 +51073 54552 0.4600 +51073 54555 0.5340 +51073 54663 0.5410 +51073 54948 0.9990 +51073 54998 0.8560 +51073 55037 0.8870 +51073 55052 0.9990 +51073 55127 0.6550 +51073 55143 0.4030 +51073 55153 0.4350 +51073 55168 0.9950 +51073 55173 0.9970 +51073 55176 0.8790 +51073 55178 0.9380 +51073 55210 0.4520 +51073 55225 0.4110 +51073 55226 0.5630 +51073 55272 0.9000 +51073 55299 0.6470 +51073 55316 0.8410 +51073 55324 0.6140 +51073 55341 0.4500 +51073 55591 0.6790 +51073 55651 0.8190 +51073 55703 0.7700 +51073 55759 0.6250 +51073 55781 0.4570 +51073 55794 0.9500 +51073 55813 0.6590 +51073 55893 0.4590 +51073 56479 0.4340 +51073 56648 0.7820 +51073 56731 0.4100 +51073 56902 0.4470 +51073 56945 0.9100 +51073 56965 0.6100 +51073 57038 0.4460 +51073 57050 0.5320 +51073 57062 0.4220 +51073 57129 0.9990 +51073 57136 0.6330 +51073 57470 0.4030 +51073 57696 0.4360 +51073 58505 0.4150 +51073 60488 0.9940 +51073 60558 0.6650 +51073 60678 0.6870 +51073 63875 0.9990 +51073 63931 0.9970 +51073 64146 0.7840 +51073 64318 0.5270 +51073 64374 0.7770 +51073 64432 0.9900 +51073 64928 0.9310 +51073 64949 0.8980 +51073 64951 0.8810 +51073 64960 0.9980 +51073 64963 0.9970 +51073 64965 0.9980 +51073 64968 0.9980 +51073 64969 0.9980 +51073 64975 0.9980 +51073 64976 0.9980 +51073 64978 0.9950 +51073 64979 0.9990 +51073 64981 0.9970 +51073 64983 0.9980 +51073 65003 0.9990 +51073 65005 0.9990 +51073 65008 0.9980 +51073 65080 0.9980 +51073 65083 0.6320 +51073 65121 0.6210 +51073 65122 0.6210 +51073 65993 0.9450 +51073 78988 0.9790 +51073 79050 0.7660 +51073 79571 0.4370 +51073 79590 0.9980 +51073 79631 0.8030 +51073 79668 0.6100 +51073 79954 0.5300 +51073 80135 0.5420 +51073 80146 0.4660 +51073 80270 0.4630 +51073 80298 0.4050 +51073 80324 0.4250 +51073 81031 0.4010 +51073 83858 0.4630 +51073 84128 0.5300 +51073 84135 0.5450 +51073 84154 0.4850 +51073 84172 0.7710 +51073 84273 0.5020 +51073 84300 0.4460 +51073 84311 0.9880 +51073 84340 0.9190 +51073 84365 0.6170 +51073 84545 0.9980 +51073 84549 0.6320 +51073 84881 0.6900 +51073 84916 0.5930 +51073 84946 0.4980 +51073 84993 0.4040 +51073 85377 0.4600 +51073 85476 0.9720 +51073 85865 0.8720 +51073 87178 0.6400 +51073 90313 0.6190 +51073 90480 0.9890 +51073 90624 0.7960 +51073 91574 0.9030 +51073 91647 0.4990 +51073 92170 0.8900 +51073 92196 0.4770 +51073 92399 0.9800 +51073 92856 0.6230 +51073 93107 0.4580 +51073 93517 0.4610 +51073 112812 0.5110 +51073 114134 0.4010 +51073 114781 0.7780 +51073 114987 0.8380 +51073 115098 0.4040 +51073 115416 0.9860 +51073 116540 0.9640 +51073 116541 0.9420 +51073 116832 0.6980 +51073 117246 0.4320 +51073 118487 0.8900 +51073 122481 0.4800 +51073 122704 0.9670 +51073 124454 0.7170 +51073 124739 0.4080 +51073 124995 0.9960 +51073 126402 0.9270 +51073 128308 0.9590 +51073 130916 0.8210 +51073 133015 0.4290 +51073 135138 0.4290 +51073 140032 0.8180 +51073 140801 0.7740 +51073 142940 0.4040 +51073 143244 0.7820 +51073 148022 0.5540 +51073 149478 0.4270 +51073 154091 0.4010 +51073 157310 0.6340 +51073 158067 0.4800 +51073 169522 0.4320 +51073 170850 0.4320 +51073 200916 0.8210 +51073 201595 0.5180 +51073 219402 0.5540 +51073 219927 0.9990 +51073 221264 0.4800 +51073 253827 0.4350 +51073 254268 0.4360 +51073 255308 0.6110 +51073 283518 0.4320 +51073 284106 0.4980 +51073 285367 0.6610 +51073 285521 0.5270 +51073 285855 0.8080 +51073 342538 0.4160 +51073 343068 0.6210 +51073 343070 0.6210 +51073 345051 0.8690 +51073 345630 0.5940 +51073 347487 0.7730 +51073 353376 0.5440 +51073 374659 0.7730 +51073 387129 0.8390 +51073 387338 0.8750 +51073 387712 0.6440 +51073 390999 0.6210 +51073 391002 0.6210 +51073 400735 0.6210 +51073 400736 0.6210 +51073 440560 0.6210 +51073 440561 0.6210 +51073 441873 0.6210 +51073 641776 0.7300 +51073 642987 0.4260 +51073 643909 0.7300 +51073 645051 0.5990 +51073 645073 0.5990 +51073 645359 0.6210 +51073 653247 0.4010 +51073 653619 0.6210 +51073 654364 0.4720 +51073 728524 0.7300 +51073 728689 0.5880 +51073 729396 0.5990 +51073 729422 0.5990 +51073 729428 0.5990 +51073 729431 0.5990 +51073 729442 0.5990 +51073 729447 0.5990 +51073 729528 0.6210 +51073 100008586 0.5990 +51073 100128731 0.4120 +51073 100132399 0.5990 +51073 100287482 0.7730 +51073 100302736 0.5440 +51073 100505478 0.8040 +51073 100526842 0.8350 +51073 100529097 0.7210 +51073 100529239 0.8300 +51073 100996746 0.7300 +51073 101929983 0.6210 +51073 102724473 0.5990 +51073 105180390 0.7300 +51073 105180391 0.7300 +51073 114483834 0.7030 +51073 127898561 0.8410 +51074 51164 0.4540 +51074 51691 0.4410 +51074 54205 0.7620 +51074 55256 0.9590 +51074 57469 0.4460 +51074 57595 0.4670 +51074 58478 0.9990 +51074 79873 0.4970 +51074 79944 0.4140 +51074 83440 0.5060 +51074 84076 0.4920 +51074 84245 0.9920 +51074 115939 0.4020 +51074 121665 0.4190 +51074 129831 0.4950 +51074 137872 0.4620 +51075 54495 0.6470 +51075 56255 0.6650 +51075 64714 0.5250 +51075 81542 0.7920 +51075 83795 0.4350 +51075 121506 0.4580 +51075 203228 0.4140 +51076 54059 0.5130 +51076 55191 0.6290 +51076 57089 0.4480 +51076 60558 0.4390 +51076 64080 0.4130 +51076 121391 0.5210 +51076 132789 0.4050 +51076 347527 0.5180 +51076 404093 0.4730 +51077 51081 0.6500 +51077 51082 0.6920 +51077 51096 0.9950 +51077 51106 0.5160 +51077 51118 0.9990 +51077 51149 0.7810 +51077 51154 0.7330 +51077 51187 0.7280 +51077 51202 0.8710 +51077 51319 0.5820 +51077 51388 0.9010 +51077 51406 0.8930 +51077 51504 0.4900 +51077 51575 0.4810 +51077 51602 0.9980 +51077 51691 0.4980 +51077 53981 0.5370 +51077 54512 0.7790 +51077 54552 0.4040 +51077 54555 0.8730 +51077 54606 0.4180 +51077 54822 0.4390 +51077 54881 0.5570 +51077 55003 0.4230 +51077 55027 0.4110 +51077 55051 0.4670 +51077 55127 0.9970 +51077 55131 0.6070 +51077 55226 0.9920 +51077 55248 0.4470 +51077 55272 0.9980 +51077 55299 0.8260 +51077 55341 0.5080 +51077 55505 0.6980 +51077 55608 0.4190 +51077 55646 0.6050 +51077 55651 0.8820 +51077 55720 0.7390 +51077 55750 0.4470 +51077 55759 0.6270 +51077 55781 0.6300 +51077 55798 0.5040 +51077 55813 0.9950 +51077 56252 0.4820 +51077 56647 0.4460 +51077 56902 0.9700 +51077 56915 0.7910 +51077 57050 0.9990 +51077 57418 0.5910 +51077 57546 0.4290 +51077 57647 0.9800 +51077 57700 0.4180 +51077 58496 0.5720 +51077 63906 0.4400 +51077 63923 0.4180 +51077 64216 0.6790 +51077 64419 0.4630 +51077 64434 0.6790 +51077 64960 0.6660 +51077 64963 0.6580 +51077 64969 0.4310 +51077 65083 0.9970 +51077 65095 0.6250 +51077 79009 0.5080 +51077 79050 0.9970 +51077 79089 0.4590 +51077 79159 0.5550 +51077 79571 0.7960 +51077 79707 0.7720 +51077 79882 0.5280 +51077 79954 0.9930 +51077 80135 0.7630 +51077 80153 0.4860 +51077 80218 0.4240 +51077 81887 0.5910 +51077 83607 0.5490 +51077 83743 0.4300 +51077 84128 0.9920 +51077 84135 0.9940 +51077 84154 0.8740 +51077 84172 0.4010 +51077 84294 0.8560 +51077 84298 0.4010 +51077 84365 0.7000 +51077 84549 0.6230 +51077 84916 0.9950 +51077 84946 0.5110 +51077 84950 0.6320 +51077 85406 0.4390 +51077 88745 0.7550 +51077 90121 0.4440 +51077 91582 0.8010 +51077 91949 0.4300 +51077 92856 0.9920 +51077 93643 0.4420 +51077 117246 0.6050 +51077 118460 0.7250 +51077 126402 0.6350 +51077 127428 0.4920 +51077 128061 0.8180 +51077 129563 0.4350 +51077 140032 0.6180 +51077 145483 0.4570 +51077 145497 0.4780 +51077 153443 0.6260 +51077 166378 0.4290 +51077 200014 0.4710 +51077 201626 0.4560 +51077 283571 0.4180 +51077 283820 0.7150 +51077 345630 0.9080 +51077 399671 0.4040 +51077 408050 0.7130 +51077 641776 0.4790 +51077 643909 0.4790 +51077 728524 0.4790 +51077 100996746 0.4790 +51077 102157402 0.4010 +51077 105180390 0.4790 +51077 105180391 0.4790 +51078 51116 0.6950 +51078 51281 0.5650 +51078 54963 0.4370 +51078 56906 0.5710 +51078 57215 0.9070 +51078 80764 0.6430 +51078 90326 0.5890 +51079 51102 0.4700 +51079 51103 0.9990 +51079 51258 0.4590 +51079 51264 0.4170 +51079 51295 0.9980 +51079 51300 0.9990 +51079 54205 0.4630 +51079 54464 0.7480 +51079 54534 0.4670 +51079 54539 0.9990 +51079 54902 0.4610 +51079 54927 0.4290 +51079 54998 0.6340 +51079 55028 0.4300 +51079 55471 0.7020 +51079 55572 0.8220 +51079 55728 0.4760 +51079 55744 0.5270 +51079 55863 0.9970 +51079 55967 0.9990 +51079 56667 0.4240 +51079 56901 0.7460 +51079 56964 0.5400 +51079 57017 0.4050 +51079 57379 0.5530 +51079 57407 0.7720 +51079 58509 0.5990 +51079 60489 0.5610 +51079 64127 0.6780 +51079 64928 0.4600 +51079 64975 0.4270 +51079 64976 0.4660 +51079 65018 0.6990 +51079 65993 0.4850 +51079 79002 0.5320 +51079 79085 0.7790 +51079 79133 0.7550 +51079 79135 0.4130 +51079 79598 0.6160 +51079 79728 0.9780 +51079 79893 0.4290 +51079 80195 0.7670 +51079 81341 0.5270 +51079 83443 0.4680 +51079 84266 0.5320 +51079 84277 0.4700 +51079 84304 0.4160 +51079 84545 0.5380 +51079 84701 0.9090 +51079 84833 0.6060 +51079 84869 0.4060 +51079 84886 0.7510 +51079 84939 0.9240 +51079 84987 0.6390 +51079 85413 0.6390 +51079 90353 0.6970 +51079 90550 0.4400 +51079 90634 0.4760 +51079 91300 0.5250 +51079 91689 0.5990 +51079 91942 0.9550 +51079 92609 0.5160 +51079 93974 0.6040 +51079 112812 0.6990 +51079 114789 0.8350 +51079 116085 0.6390 +51079 118460 0.5380 +51079 119391 0.5330 +51079 125965 0.5540 +51079 125988 0.7310 +51079 126328 0.9990 +51079 137682 0.6480 +51079 139221 0.9240 +51079 140453 0.4240 +51079 140564 0.5530 +51079 140823 0.7410 +51079 164668 0.5530 +51079 170712 0.4410 +51079 200315 0.5530 +51079 200316 0.5590 +51079 200958 0.4240 +51079 221154 0.4040 +51079 254863 0.4910 +51079 267020 0.6070 +51079 283459 0.5530 +51079 284427 0.7700 +51079 374291 0.9990 +51079 374887 0.5640 +51079 388753 0.5730 +51079 440567 0.8660 +51079 440574 0.4470 +51079 493856 0.6140 +51079 727897 0.4220 +51079 728317 0.9240 +51079 100287932 0.7690 +51079 100532726 0.9550 +51081 51096 0.6900 +51081 51106 0.9310 +51081 51116 0.9990 +51081 51118 0.7160 +51081 51119 0.4850 +51081 51121 0.8830 +51081 51149 0.8470 +51081 51154 0.9170 +51081 51187 0.5350 +51081 51204 0.6130 +51081 51253 0.9320 +51081 51258 0.9330 +51081 51263 0.9350 +51081 51264 0.9990 +51081 51314 0.5180 +51081 51318 0.9040 +51081 51319 0.8110 +51081 51373 0.9940 +51081 51386 0.5040 +51081 51491 0.4700 +51081 51574 0.4420 +51081 51602 0.6650 +51081 51642 0.9460 +51081 51649 0.9940 +51081 51650 0.9950 +51081 51693 0.4180 +51081 51727 0.4300 +51081 54148 0.9150 +51081 54460 0.9920 +51081 54516 0.8390 +51081 54534 0.8940 +51081 54575 0.4060 +51081 54576 0.4210 +51081 54577 0.4110 +51081 54578 0.4280 +51081 54596 0.4470 +51081 54657 0.4520 +51081 54658 0.4180 +51081 54948 0.9960 +51081 54998 0.9900 +51081 55037 0.9900 +51081 55052 0.9950 +51081 55127 0.6340 +51081 55143 0.4510 +51081 55157 0.4830 +51081 55168 0.9970 +51081 55173 0.9990 +51081 55176 0.8530 +51081 55178 0.6170 +51081 55226 0.6810 +51081 55244 0.4470 +51081 55272 0.9350 +51081 55316 0.8620 +51081 55324 0.6050 +51081 55591 0.6580 +51081 55611 0.4520 +51081 55651 0.7600 +51081 55703 0.7730 +51081 55720 0.4230 +51081 55781 0.6980 +51081 55794 0.4890 +51081 55813 0.6740 +51081 55854 0.4020 +51081 55867 0.4570 +51081 56474 0.4320 +51081 56479 0.5030 +51081 56648 0.8340 +51081 56893 0.4480 +51081 56902 0.5820 +51081 56915 0.4570 +51081 56945 0.9950 +51081 56965 0.6080 +51081 57038 0.6510 +51081 57050 0.6850 +51081 57129 0.9940 +51081 57136 0.5510 +51081 57470 0.4100 +51081 60386 0.4480 +51081 60488 0.9970 +51081 60558 0.7950 +51081 60678 0.6190 +51081 63875 0.9990 +51081 63931 0.9990 +51081 64146 0.7910 +51081 64216 0.6550 +51081 64374 0.7770 +51081 64432 0.9980 +51081 64745 0.9860 +51081 64928 0.9120 +51081 64949 0.9910 +51081 64951 0.9910 +51081 64960 0.9990 +51081 64963 0.9990 +51081 64965 0.9990 +51081 64968 0.9990 +51081 64969 0.9990 +51081 64975 0.9830 +51081 64976 0.9770 +51081 64978 0.9520 +51081 64979 0.9980 +51081 64981 0.9930 +51081 64983 0.9930 +51081 65003 0.9910 +51081 65005 0.9940 +51081 65008 0.9840 +51081 65080 0.9780 +51081 65083 0.7850 +51081 65121 0.5810 +51081 65122 0.5810 +51081 65993 0.9950 +51081 78988 0.9040 +51081 79050 0.7650 +51081 79571 0.5290 +51081 79590 0.9810 +51081 79631 0.8080 +51081 79668 0.6080 +51081 79736 0.5320 +51081 79863 0.9130 +51081 79922 0.4940 +51081 79954 0.6310 +51081 80146 0.4700 +51081 80222 0.4330 +51081 80270 0.4670 +51081 80273 0.4900 +51081 81031 0.4030 +51081 81892 0.5670 +51081 84128 0.6250 +51081 84135 0.7000 +51081 84172 0.7740 +51081 84273 0.9210 +51081 84311 0.9110 +51081 84340 0.7060 +51081 84545 0.9970 +51081 84881 0.5080 +51081 84916 0.6660 +51081 84946 0.6110 +51081 84993 0.4520 +51081 85320 0.5190 +51081 85377 0.4950 +51081 85476 0.9900 +51081 85865 0.4990 +51081 87178 0.6220 +51081 89845 0.5910 +51081 90313 0.5730 +51081 90480 0.9000 +51081 90624 0.4320 +51081 91574 0.6610 +51081 91647 0.4700 +51081 91875 0.4420 +51081 91893 0.4930 +51081 92170 0.4730 +51081 92196 0.5180 +51081 92259 0.8350 +51081 92399 0.9900 +51081 92856 0.7220 +51081 93107 0.5030 +51081 93517 0.4660 +51081 93550 0.4990 +51081 94160 0.6180 +51081 114134 0.4030 +51081 114571 0.5160 +51081 114781 0.4160 +51081 114987 0.8400 +51081 115098 0.4550 +51081 115416 0.5320 +51081 116540 0.8710 +51081 116541 0.9530 +51081 116832 0.7710 +51081 118487 0.9950 +51081 122481 0.4250 +51081 122622 0.4290 +51081 122704 0.9190 +51081 124454 0.7170 +51081 124995 0.9520 +51081 128308 0.9260 +51081 130916 0.4250 +51081 133482 0.5510 +51081 135152 0.4500 +51081 140032 0.8110 +51081 140801 0.8500 +51081 143244 0.8340 +51081 143630 0.4410 +51081 146802 0.4110 +51081 148022 0.5670 +51081 153443 0.5460 +51081 154091 0.4030 +51081 157310 0.5170 +51081 158067 0.4250 +51081 158234 0.6320 +51081 164153 0.4990 +51081 169522 0.5030 +51081 170850 0.5030 +51081 196074 0.8830 +51081 200916 0.7240 +51081 219402 0.9300 +51081 219927 0.9950 +51081 221264 0.4250 +51081 254268 0.7710 +51081 255308 0.6150 +51081 283518 0.5170 +51081 285367 0.5440 +51081 285855 0.8660 +51081 286075 0.4880 +51081 342538 0.5000 +51081 343068 0.5810 +51081 343070 0.5810 +51081 345051 0.4610 +51081 345630 0.6080 +51081 347487 0.8530 +51081 353376 0.5670 +51081 374659 0.8200 +51081 387129 0.8140 +51081 387338 0.4430 +51081 390999 0.5810 +51081 391002 0.5810 +51081 400735 0.5810 +51081 400736 0.5810 +51081 440560 0.5810 +51081 440561 0.5810 +51081 441873 0.5810 +51081 641776 0.6750 +51081 643909 0.6750 +51081 645051 0.5880 +51081 645073 0.5880 +51081 645359 0.5810 +51081 653247 0.4030 +51081 653619 0.5810 +51081 654364 0.5500 +51081 728524 0.6750 +51081 728689 0.6110 +51081 729396 0.5880 +51081 729422 0.5880 +51081 729428 0.5880 +51081 729431 0.5880 +51081 729442 0.5880 +51081 729447 0.5880 +51081 729528 0.5810 +51081 100008586 0.5880 +51081 100132399 0.5880 +51081 100287482 0.7690 +51081 100302736 0.5670 +51081 100505478 0.8050 +51081 100526842 0.8580 +51081 100529097 0.8010 +51081 100529239 0.8510 +51081 100996746 0.6750 +51081 101929983 0.5810 +51081 102724473 0.5880 +51081 105180390 0.6750 +51081 105180391 0.6750 +51081 114483834 0.6870 +51082 51096 0.5300 +51082 51118 0.7810 +51082 51119 0.5540 +51082 51154 0.9280 +51082 51184 0.8700 +51082 51187 0.8420 +51082 51202 0.4430 +51082 51319 0.4370 +51082 51388 0.9030 +51082 51389 0.4170 +51082 51491 0.5110 +51082 51504 0.6310 +51082 51575 0.6570 +51082 51602 0.4550 +51082 51611 0.4230 +51082 51728 0.9980 +51082 54512 0.4310 +51082 54517 0.6250 +51082 54552 0.6800 +51082 54606 0.5210 +51082 54700 0.9980 +51082 55003 0.7120 +51082 55011 0.4650 +51082 55127 0.5420 +51082 55272 0.9190 +51082 55290 0.7980 +51082 55299 0.8400 +51082 55319 0.7730 +51082 55341 0.5850 +51082 55505 0.9150 +51082 55644 0.5020 +51082 55646 0.6680 +51082 55651 0.9230 +51082 55703 0.9990 +51082 55718 0.9960 +51082 55720 0.6520 +51082 55813 0.6970 +51082 55814 0.9510 +51082 55854 0.4200 +51082 56342 0.5130 +51082 56647 0.5190 +51082 57050 0.6730 +51082 60487 0.5000 +51082 64118 0.5680 +51082 64172 0.4610 +51082 64216 0.5360 +51082 64425 0.9990 +51082 65083 0.5750 +51082 79050 0.5580 +51082 79101 0.6600 +51082 79159 0.4080 +51082 79657 0.7320 +51082 79693 0.4390 +51082 80135 0.6060 +51082 81572 0.4710 +51082 83448 0.4510 +51082 83743 0.7840 +51082 84128 0.6910 +51082 84154 0.8870 +51082 84172 0.9990 +51082 84232 0.9150 +51082 84265 0.9840 +51082 84273 0.4320 +51082 84294 0.4010 +51082 84298 0.6020 +51082 84365 0.8340 +51082 84549 0.5950 +51082 84916 0.7000 +51082 85236 0.4080 +51082 90121 0.7380 +51082 92856 0.8220 +51082 94239 0.4510 +51082 112495 0.5040 +51082 116143 0.4550 +51082 127428 0.6690 +51082 155368 0.6100 +51082 161424 0.5520 +51082 170082 0.6660 +51082 171568 0.9990 +51082 196883 0.5410 +51082 221078 0.4400 +51082 221830 0.9990 +51082 222484 0.9080 +51082 246721 0.4980 +51082 256536 0.4070 +51082 284119 0.5460 +51082 387332 0.5810 +51082 399949 0.5160 +51082 404672 0.5380 +51082 548644 0.4990 +51082 653604 0.4520 +51082 692312 0.5130 +51082 102157402 0.8230 +51083 51738 0.7170 +51083 54331 0.8060 +51083 56923 0.5960 +51083 57084 0.5400 +51083 63895 0.4770 +51083 64106 0.7220 +51083 80763 0.7490 +51083 84109 0.7570 +51083 84539 0.6120 +51083 85569 0.9430 +51083 129521 0.6440 +51083 134391 0.8360 +51083 140679 0.4160 +51083 256933 0.7500 +51083 283869 0.6830 +51083 340784 0.6680 +51083 347148 0.7830 +51083 400668 0.4670 +51083 594857 0.4460 +51084 51181 0.4390 +51084 51635 0.4120 +51084 51703 0.4750 +51084 51761 0.4200 +51084 54511 0.4530 +51084 54596 0.5230 +51084 54884 0.4580 +51084 54988 0.4600 +51084 54995 0.4020 +51084 55217 0.6240 +51084 55268 0.7380 +51084 55289 0.5990 +51084 55301 0.5230 +51084 55856 0.4120 +51084 55862 0.5080 +51084 55902 0.4720 +51084 56898 0.4100 +51084 57609 0.5250 +51084 64087 0.4040 +51084 65985 0.4590 +51084 79611 0.4600 +51084 79758 0.4610 +51084 79783 0.4530 +51084 80221 0.5390 +51084 80344 0.4190 +51084 80724 0.6770 +51084 83695 0.4480 +51084 84129 0.6750 +51084 84263 0.9010 +51084 84532 0.4740 +51084 84795 0.4400 +51084 116285 0.4590 +51084 123876 0.4590 +51084 124359 0.4690 +51084 134147 0.7870 +51084 134526 0.5130 +51084 137872 0.4340 +51084 140856 0.5140 +51084 143884 0.4390 +51084 157869 0.5230 +51084 197322 0.5300 +51084 202559 0.8190 +51084 207063 0.4460 +51084 253175 0.4690 +51084 254042 0.5750 +51084 283985 0.4880 +51084 284422 0.5990 +51084 317749 0.4070 +51084 341392 0.4590 +51084 348158 0.4610 +51084 374875 0.4240 +51084 376497 0.5810 +51084 109703458 0.5140 +51084 122405565 0.5990 +51085 51094 0.5250 +51085 51129 0.4070 +51085 51141 0.7720 +51085 51422 0.5600 +51085 53345 0.4820 +51085 54884 0.4210 +51085 55695 0.5770 +51085 55902 0.4680 +51085 57104 0.5910 +51085 57678 0.5280 +51085 57818 0.5870 +51085 60481 0.4320 +51085 60491 0.6830 +51085 60681 0.5730 +51085 63924 0.4570 +51085 78992 0.5160 +51085 79071 0.6560 +51085 79602 0.5430 +51085 80339 0.7210 +51085 83463 0.4020 +51085 84163 0.4050 +51085 84649 0.6340 +51085 84699 0.4280 +51085 92579 0.5910 +51085 116519 0.5320 +51085 133522 0.9440 +51085 135892 0.5950 +51085 148113 0.4450 +51085 152831 0.4110 +51085 200186 0.4460 +51085 222546 0.4840 +51085 326625 0.4050 +51085 389524 0.4070 +51086 51277 0.6170 +51086 51704 0.5860 +51086 53353 0.4420 +51086 54814 0.6190 +51086 54958 0.5910 +51086 55120 0.4320 +51086 55662 0.4230 +51086 57507 0.5410 +51086 64116 0.4030 +51086 79047 0.5320 +51086 79068 0.4850 +51086 89866 0.7180 +51086 127255 0.6570 +51086 129787 0.6600 +51086 132789 0.6630 +51086 134359 0.5830 +51086 148753 0.4350 +51086 158038 0.5600 +51086 219402 0.5960 +51086 253559 0.4780 +51086 257194 0.5250 +51086 390598 0.4480 +51086 100526835 0.9020 +51087 51574 0.4550 +51087 51764 0.4590 +51087 54487 0.4480 +51087 54514 0.5390 +51087 55300 0.4120 +51087 57829 0.4530 +51087 64506 0.6540 +51087 64848 0.5400 +51087 64979 0.4030 +51087 80336 0.4070 +51087 83639 0.4070 +51087 84461 0.4080 +51087 84895 0.4190 +51087 85437 0.4850 +51087 85438 0.4010 +51087 124535 0.4300 +51087 135935 0.8800 +51087 284071 0.4330 +51087 326340 0.4560 +51087 344018 0.8650 +51087 346673 0.4200 +51087 359787 0.4030 +51087 402381 0.8970 +51087 431707 0.8450 +51088 51122 0.5110 +51088 51397 0.5030 +51088 51434 0.5420 +51088 53339 0.4390 +51088 54165 0.5190 +51088 54939 0.4990 +51088 54951 0.5140 +51088 55175 0.4430 +51088 55208 0.5130 +51088 55728 0.4920 +51088 55832 0.5570 +51088 55958 0.4540 +51088 57542 0.5160 +51088 57728 0.5470 +51088 64410 0.4470 +51088 80008 0.6500 +51088 84259 0.5040 +51088 84541 0.4470 +51088 84861 0.4850 +51088 90293 0.4720 +51088 114907 0.4200 +51088 127396 0.4540 +51088 130576 0.4050 +51088 149951 0.4990 +51088 150684 0.5010 +51088 154881 0.4080 +51088 170622 0.4990 +51088 200845 0.4030 +51088 283162 0.4290 +51088 338675 0.4160 +51088 390594 0.4690 +51088 554251 0.4380 +51090 51192 0.8450 +51090 54860 0.4240 +51090 54918 0.6350 +51090 57471 0.4460 +51090 57571 0.4530 +51090 79152 0.5020 +51090 79170 0.4500 +51090 79853 0.4240 +51090 91663 0.9150 +51090 93377 0.6980 +51090 112616 0.5870 +51090 113540 0.4180 +51090 116173 0.4450 +51091 51540 0.7150 +51091 51714 0.5720 +51091 51734 0.4920 +51091 54938 0.9590 +51091 54952 0.9250 +51091 55313 0.5060 +51091 55829 0.5030 +51091 57038 0.5170 +51091 57190 0.5850 +51091 58515 0.5890 +51091 60678 0.9110 +51091 64850 0.4620 +51091 64902 0.4690 +51091 79042 0.7030 +51091 79048 0.8690 +51091 80746 0.6850 +51091 83544 0.8740 +51091 83642 0.4880 +51091 85007 0.4320 +51091 85465 0.4560 +51091 91050 0.4230 +51091 114112 0.5380 +51091 118672 0.9990 +51091 137902 0.5200 +51091 140606 0.4660 +51091 150962 0.4780 +51091 280636 0.5420 +51091 283989 0.6140 +51091 348303 0.5290 +51092 54623 0.4220 +51092 55677 0.4910 +51092 55703 0.4260 +51092 57192 0.4220 +51092 63874 0.4280 +51092 79577 0.4590 +51092 81030 0.4040 +51092 84172 0.4200 +51092 84246 0.4530 +51092 84337 0.4550 +51092 115817 0.4080 +51092 116154 0.4350 +51092 192670 0.4230 +51093 51108 0.5290 +51093 51603 0.4920 +51093 54093 0.4690 +51093 55316 0.4590 +51093 64745 0.5940 +51093 79829 0.4370 +51093 84326 0.4760 +51093 84626 0.4670 +51093 92342 0.4330 +51093 124637 0.4110 +51093 149281 0.4840 +51093 152992 0.4480 +51093 155368 0.4610 +51093 340371 0.4240 +51093 399671 0.4180 +51093 399818 0.4260 +51093 751071 0.4890 +51094 51422 0.5660 +51094 51629 0.5270 +51094 55198 0.4350 +51094 55437 0.5500 +51094 55600 0.4670 +51094 56729 0.7950 +51094 57104 0.5170 +51094 79602 0.9880 +51094 80700 0.4460 +51094 81567 0.6060 +51094 84666 0.7360 +51094 91300 0.4180 +51094 114898 0.6420 +51094 145264 0.4300 +51094 152559 0.4130 +51094 338872 0.5720 +51095 51185 0.5120 +51095 51493 0.5210 +51095 51520 0.4830 +51095 51699 0.4760 +51095 54059 0.4280 +51095 54512 0.4810 +51095 54517 0.4860 +51095 54802 0.7160 +51095 54888 0.4360 +51095 54931 0.6030 +51095 54974 0.6230 +51095 54977 0.4560 +51095 55006 0.4590 +51095 55139 0.4500 +51095 55149 0.5560 +51095 55157 0.4510 +51095 55278 0.5160 +51095 55520 0.6900 +51095 55621 0.4950 +51095 55687 0.5400 +51095 55699 0.4910 +51095 55781 0.4930 +51095 55856 0.5180 +51095 55892 0.4370 +51095 57038 0.5350 +51095 57102 0.4340 +51095 57136 0.6880 +51095 57505 0.4750 +51095 57570 0.5450 +51095 60528 0.7570 +51095 63899 0.4530 +51095 64216 0.4060 +51095 64431 0.5430 +51095 64895 0.4580 +51095 65080 0.4960 +51095 79587 0.4940 +51095 79693 0.5340 +51095 79731 0.6020 +51095 79736 0.4840 +51095 80222 0.4010 +51095 80324 0.6530 +51095 80758 0.5820 +51095 83448 0.5260 +51095 84128 0.4050 +51095 84705 0.5050 +51095 84967 0.4240 +51095 85441 0.5230 +51095 85476 0.4050 +51095 85865 0.5810 +51095 87178 0.8160 +51095 90381 0.4100 +51095 92399 0.5000 +51095 92935 0.5020 +51095 94240 0.6100 +51095 114792 0.4050 +51095 115708 0.4680 +51095 115752 0.5360 +51095 123263 0.4910 +51095 124454 0.4190 +51095 129563 0.5470 +51095 134637 0.4220 +51095 142940 0.4840 +51095 144811 0.4570 +51095 196074 0.4130 +51095 201626 0.5440 +51095 246243 0.5210 +51095 374659 0.4150 +51095 440138 0.4950 +51095 574414 0.7950 +51096 51106 0.5740 +51096 51118 0.9990 +51096 51149 0.7670 +51096 51154 0.7270 +51096 51187 0.6750 +51096 51202 0.7720 +51096 51319 0.5620 +51096 51388 0.8390 +51096 51406 0.8220 +51096 51490 0.6120 +51096 51538 0.5510 +51096 51575 0.9940 +51096 51602 0.9980 +51096 51605 0.4440 +51096 53371 0.4300 +51096 54433 0.4470 +51096 54463 0.4190 +51096 54475 0.8760 +51096 54505 0.4910 +51096 54512 0.8250 +51096 54517 0.4290 +51096 54552 0.6720 +51096 54555 0.8980 +51096 54606 0.5940 +51096 54663 0.7980 +51096 54881 0.7420 +51096 54888 0.5400 +51096 55003 0.5790 +51096 55051 0.5280 +51096 55127 0.9990 +51096 55131 0.8980 +51096 55140 0.6730 +51096 55153 0.8610 +51096 55226 0.9980 +51096 55272 0.9970 +51096 55299 0.7490 +51096 55319 0.5310 +51096 55341 0.5030 +51096 55505 0.4590 +51096 55596 0.5030 +51096 55601 0.4520 +51096 55621 0.4380 +51096 55622 0.7200 +51096 55646 0.4730 +51096 55651 0.7950 +51096 55696 0.4330 +51096 55703 0.7490 +51096 55718 0.5350 +51096 55720 0.8190 +51096 55759 0.9230 +51096 55760 0.6470 +51096 55781 0.6490 +51096 55794 0.4560 +51096 55813 0.9990 +51096 56342 0.7790 +51096 56902 0.9800 +51096 56915 0.8420 +51096 56919 0.6790 +51096 56934 0.5710 +51096 57050 0.9990 +51096 57062 0.4410 +51096 57109 0.4960 +51096 57418 0.8330 +51096 57647 0.9630 +51096 57696 0.5360 +51096 60487 0.6450 +51096 60625 0.6730 +51096 64118 0.4060 +51096 64216 0.7420 +51096 64318 0.7040 +51096 64425 0.8550 +51096 64434 0.9690 +51096 64794 0.8650 +51096 64848 0.4610 +51096 64960 0.6290 +51096 64963 0.6670 +51096 65083 0.9990 +51096 65095 0.8070 +51096 79009 0.4170 +51096 79039 0.5110 +51096 79050 0.9990 +51096 79159 0.7030 +51096 79571 0.8510 +51096 79665 0.5640 +51096 79693 0.4620 +51096 79707 0.7510 +51096 79922 0.4330 +51096 79954 0.9980 +51096 79979 0.5950 +51096 80135 0.8270 +51096 81627 0.4160 +51096 81887 0.6880 +51096 83732 0.5790 +51096 83743 0.9270 +51096 84128 0.9990 +51096 84135 0.9990 +51096 84154 0.8910 +51096 84172 0.7610 +51096 84186 0.6470 +51096 84294 0.7660 +51096 84365 0.7300 +51096 84549 0.6750 +51096 84916 0.9990 +51096 84946 0.8900 +51096 85441 0.4390 +51096 88745 0.9870 +51096 90121 0.6450 +51096 90381 0.6220 +51096 90441 0.4750 +51096 90957 0.4960 +51096 91582 0.8220 +51096 92345 0.4160 +51096 92856 0.9980 +51096 115752 0.5510 +51096 116966 0.6980 +51096 117246 0.8070 +51096 118460 0.6930 +51096 122402 0.4420 +51096 124245 0.4350 +51096 126402 0.6260 +51096 128061 0.8010 +51096 129563 0.5220 +51096 140032 0.6180 +51096 146212 0.4640 +51096 153443 0.7960 +51096 155368 0.4390 +51096 161424 0.7490 +51096 165545 0.6440 +51096 170506 0.5020 +51096 221078 0.6870 +51096 221830 0.6920 +51096 283106 0.5780 +51096 317781 0.6090 +51096 345630 0.9470 +51096 641776 0.4530 +51096 643909 0.4530 +51096 692312 0.7310 +51096 728524 0.4530 +51096 100996746 0.4530 +51096 105180390 0.4530 +51096 105180391 0.4530 +51097 54495 0.4740 +51097 55572 0.4470 +51097 56255 0.4690 +51097 56926 0.4220 +51097 60488 0.4090 +51097 79639 0.4510 +51097 84928 0.4240 +51097 163590 0.4220 +51097 163882 0.5400 +51097 256536 0.5240 +51097 285527 0.4920 +51098 51134 0.5580 +51098 51626 0.7190 +51098 51668 0.9990 +51098 51684 0.6070 +51098 55081 0.9990 +51098 55112 0.5260 +51098 55212 0.6760 +51098 55349 0.8720 +51098 55764 0.9200 +51098 56912 0.9990 +51098 57539 0.8950 +51098 57545 0.4580 +51098 57560 0.9990 +51098 57576 0.6780 +51098 57728 0.9330 +51098 64792 0.9990 +51098 79659 0.7220 +51098 79696 0.5510 +51098 79722 0.8400 +51098 79809 0.9050 +51098 79867 0.4470 +51098 79989 0.9970 +51098 80173 0.9990 +51098 80184 0.5710 +51098 80776 0.5050 +51098 83538 0.5690 +51098 84229 0.4290 +51098 84902 0.4690 +51098 84984 0.4290 +51098 85302 0.4710 +51098 89891 0.5280 +51098 90410 0.9950 +51098 91147 0.4070 +51098 92104 0.9940 +51098 112752 0.9010 +51098 129880 0.6670 +51098 132320 0.4760 +51098 150737 0.9990 +51098 153241 0.4480 +51098 164781 0.4480 +51098 199223 0.7060 +51098 200728 0.4650 +51098 200894 0.8850 +51098 254173 0.4280 +51098 255758 0.5400 +51098 261734 0.5150 +51098 283237 0.4890 +51098 374654 0.4020 +51099 51170 0.4520 +51099 57104 0.9990 +51099 57406 0.4810 +51099 57678 0.4170 +51099 59344 0.8660 +51099 60526 0.4800 +51099 63924 0.6310 +51099 79728 0.4950 +51099 80339 0.8960 +51099 81876 0.4080 +51099 83451 0.4130 +51099 84263 0.4340 +51099 84649 0.6610 +51099 84803 0.5040 +51099 116236 0.5700 +51099 126410 0.5790 +51099 129642 0.4120 +51099 132949 0.5760 +51099 137964 0.5880 +51099 145447 0.4190 +51099 150379 0.8170 +51099 158833 0.4520 +51099 171586 0.4100 +51099 204219 0.4990 +51099 285848 0.8490 +51099 286827 0.6950 +51099 345275 0.4530 +51099 348938 0.7700 +51099 376497 0.4250 +51099 440503 0.9460 +51099 643418 0.4190 +51099 729359 0.6520 +51100 54520 0.4020 +51100 55054 0.4490 +51100 55062 0.4530 +51100 55102 0.4160 +51100 55197 0.4520 +51100 55626 0.9850 +51100 56904 0.9360 +51100 57020 0.4890 +51100 57489 0.4930 +51100 60673 0.4400 +51100 64422 0.5110 +51100 81631 0.4210 +51100 83734 0.6780 +51100 84938 0.5100 +51100 129642 0.6490 +51100 150684 0.4800 +51100 286451 0.4320 +51100 345611 0.8540 +51101 54468 0.4690 +51101 55521 0.4260 +51101 79726 0.4520 +51101 84219 0.4070 +51101 84292 0.4950 +51101 652968 0.8720 +51101 729438 0.4060 +51102 51144 0.4590 +51102 51171 0.4410 +51102 51522 0.5440 +51102 51601 0.9130 +51102 54995 0.9830 +51102 55699 0.5820 +51102 55825 0.4340 +51102 56898 0.6430 +51102 79033 0.4540 +51102 79587 0.4770 +51102 84233 0.5220 +51102 84263 0.5310 +51102 84816 0.5570 +51102 84869 0.7620 +51102 115817 0.4160 +51102 126328 0.5110 +51102 197322 0.4610 +51102 220032 0.6960 +51102 254863 0.6300 +51102 387787 0.9180 +51102 401548 0.6200 +51102 440574 0.6630 +51102 109703458 0.9510 +51103 51295 0.9990 +51103 51300 0.9990 +51103 51765 0.6340 +51103 54465 0.4690 +51103 54539 0.9990 +51103 54968 0.6500 +51103 55101 0.5770 +51103 55168 0.4160 +51103 55471 0.7990 +51103 55572 0.9610 +51103 55744 0.7370 +51103 55863 0.9990 +51103 55967 0.9990 +51103 56901 0.5270 +51103 56964 0.5400 +51103 64976 0.4530 +51103 65008 0.7160 +51103 79085 0.5190 +51103 79133 0.9050 +51103 79728 0.5600 +51103 80224 0.7500 +51103 83858 0.9940 +51103 84060 0.4940 +51103 84233 0.5180 +51103 84300 0.4870 +51103 84939 0.4600 +51103 90353 0.6910 +51103 91647 0.4880 +51103 91942 0.9590 +51103 114789 0.5190 +51103 116540 0.4050 +51103 126328 0.9760 +51103 137682 0.9580 +51103 139221 0.4600 +51103 150274 0.4210 +51103 153562 0.4590 +51103 162427 0.4550 +51103 284427 0.5190 +51103 374291 0.9960 +51103 375337 0.4640 +51103 440145 0.4690 +51103 493753 0.4710 +51103 643338 0.4010 +51103 644096 0.4010 +51103 728317 0.4600 +51103 100532726 0.7700 +51104 51400 0.5160 +51104 53947 0.5360 +51104 55347 0.6110 +51104 55625 0.4380 +51104 57406 0.5080 +51104 58489 0.4220 +51104 63874 0.4300 +51104 81926 0.4180 +51104 83451 0.4870 +51104 84836 0.4210 +51104 84945 0.4500 +51104 116236 0.4210 +51104 122970 0.4450 +51104 125061 0.5050 +51104 127018 0.4820 +51104 138240 0.5770 +51104 140701 0.4200 +51104 253832 0.4270 +51104 340481 0.4300 +51105 51230 0.7470 +51105 51366 0.4150 +51105 51412 0.5530 +51105 51742 0.5160 +51105 53335 0.8000 +51105 53615 0.7030 +51105 54556 0.6670 +51105 54799 0.6960 +51105 54815 0.7920 +51105 54816 0.5570 +51105 54878 0.4780 +51105 54934 0.8470 +51105 55167 0.5700 +51105 55257 0.5450 +51105 55683 0.8660 +51105 55689 0.6290 +51105 55914 0.4570 +51105 55929 0.5570 +51105 57037 0.4640 +51105 57459 0.8030 +51105 57473 0.5010 +51105 57504 0.7360 +51105 57634 0.5760 +51105 57697 0.5360 +51105 64769 0.6890 +51105 80314 0.5820 +51105 81562 0.4020 +51105 84148 0.8820 +51105 84456 0.5140 +51105 126668 0.4180 +51105 151050 0.7170 +51105 284058 0.9020 +51105 286826 0.6130 +51105 339287 0.5970 +51105 345651 0.5530 +51106 51116 0.9040 +51106 51118 0.5120 +51106 51149 0.5190 +51106 51154 0.4750 +51106 51187 0.6570 +51106 51373 0.8570 +51106 51388 0.7550 +51106 51602 0.4910 +51106 51649 0.8440 +51106 51650 0.8200 +51106 54059 0.5240 +51106 54460 0.8280 +51106 54516 0.4460 +51106 54700 0.4180 +51106 54802 0.4810 +51106 54931 0.5260 +51106 54998 0.9260 +51106 55006 0.6390 +51106 55037 0.8980 +51106 55127 0.4750 +51106 55131 0.4160 +51106 55140 0.4550 +51106 55149 0.4650 +51106 55153 0.4300 +51106 55173 0.9300 +51106 55178 0.6790 +51106 55272 0.6260 +51106 55299 0.6470 +51106 55316 0.4770 +51106 55319 0.4270 +51106 55687 0.5620 +51106 55720 0.7360 +51106 55781 0.6500 +51106 55794 0.4920 +51106 55813 0.5620 +51106 56652 0.7440 +51106 56902 0.4580 +51106 56945 0.8350 +51106 57050 0.6560 +51106 57570 0.4050 +51106 60487 0.4560 +51106 60488 0.8220 +51106 60528 0.4050 +51106 60558 0.4270 +51106 63931 0.9030 +51106 64172 0.4510 +51106 64216 0.6090 +51106 64432 0.8570 +51106 64745 0.9440 +51106 64949 0.8200 +51106 64951 0.8350 +51106 64960 0.9220 +51106 64963 0.9120 +51106 64965 0.9370 +51106 64968 0.9140 +51106 64969 0.9200 +51106 65083 0.6150 +51106 65993 0.8460 +51106 79050 0.6280 +51106 79571 0.4500 +51106 79693 0.4090 +51106 79736 0.6180 +51106 79810 0.4460 +51106 79863 0.9190 +51106 79922 0.6270 +51106 79979 0.6470 +51106 80135 0.6800 +51106 80298 0.5680 +51106 80324 0.5170 +51106 81892 0.4210 +51106 83480 0.4830 +51106 84128 0.5160 +51106 84135 0.4700 +51106 84154 0.5840 +51106 84273 0.9470 +51106 84340 0.4860 +51106 84365 0.6200 +51106 84705 0.6850 +51106 84881 0.6180 +51106 84916 0.5150 +51106 84946 0.7090 +51106 84947 0.4270 +51106 85865 0.4220 +51106 87178 0.5220 +51106 90353 0.4200 +51106 92170 0.4200 +51106 92399 0.4960 +51106 92856 0.6950 +51106 115416 0.4040 +51106 123263 0.4180 +51106 126402 0.5430 +51106 130916 0.6920 +51106 133522 0.5070 +51106 154043 0.4760 +51106 196074 0.6690 +51106 219402 0.4060 +51106 246243 0.4020 +51106 285367 0.5130 +51106 345630 0.4350 +51106 347487 0.5250 +51106 387338 0.6970 +51106 729515 0.4880 +51106 100287482 0.4790 +51107 54103 0.7570 +51107 54933 0.8310 +51107 55534 0.5070 +51107 55851 0.9990 +51107 64837 0.4630 +51107 79258 0.7240 +51107 81502 0.7060 +51107 83464 0.9750 +51107 84441 0.5410 +51107 89953 0.4650 +51107 92737 0.5870 +51107 113878 0.5140 +51107 123096 0.5020 +51107 147700 0.4490 +51107 388585 0.5110 +51108 51163 0.4690 +51108 51439 0.4130 +51108 51603 0.6760 +51108 55798 0.6480 +51108 57181 0.4390 +51108 64745 0.5320 +51108 79609 0.4240 +51108 79828 0.6370 +51108 84190 0.7340 +51108 84193 0.4890 +51108 84326 0.4460 +51108 91057 0.4370 +51108 92342 0.6510 +51108 93436 0.4400 +51108 131965 0.4260 +51108 146183 0.6770 +51108 149281 0.4490 +51108 151194 0.4350 +51108 155368 0.5580 +51108 196410 0.6630 +51108 196541 0.5840 +51108 399818 0.4800 +51108 728464 0.5720 +51108 751071 0.4300 +51109 53630 0.9450 +51109 54884 0.9280 +51109 54995 0.4890 +51109 56603 0.5390 +51109 57016 0.4330 +51109 64220 0.5540 +51109 83875 0.4150 +51109 85414 0.5090 +51109 112812 0.4630 +51109 121214 0.4190 +51109 124590 0.4540 +51109 145226 0.9030 +51109 157506 0.9530 +51109 158835 0.9110 +51109 195814 0.4250 +51109 339761 0.9210 +51110 51179 0.4970 +51110 51692 0.4350 +51110 54059 0.6530 +51110 54363 0.4070 +51110 54973 0.4110 +51110 55520 0.4800 +51110 60496 0.5170 +51110 60528 0.5070 +51110 64858 0.4120 +51110 81892 0.4330 +51110 83451 0.4590 +51110 84264 0.5440 +51110 84656 0.4370 +51110 84693 0.4520 +51110 84842 0.4240 +51110 87178 0.4350 +51110 126306 0.4720 +51110 201626 0.5470 +51110 246243 0.4570 +51110 255374 0.6420 +51110 389668 0.6210 +51110 390916 0.4020 +51110 100130890 0.4400 +51110 100131187 0.4450 +51111 51592 0.5610 +51111 54496 0.4270 +51111 54665 0.5710 +51111 54904 0.5320 +51111 55170 0.4700 +51111 55209 0.5580 +51111 55729 0.5800 +51111 55870 0.6870 +51111 55904 0.4850 +51111 56341 0.4690 +51111 56950 0.6070 +51111 56979 0.4790 +51111 57680 0.5160 +51111 58508 0.5410 +51111 64324 0.6000 +51111 64754 0.5780 +51111 79723 0.7270 +51111 79813 0.6160 +51111 79823 0.7890 +51111 79918 0.4880 +51111 80155 0.4010 +51111 80853 0.4150 +51111 80854 0.6520 +51111 83852 0.5400 +51111 84193 0.5090 +51111 84444 0.6460 +51111 93166 0.4120 +51111 114825 0.4470 +51111 144233 0.4430 +51111 150572 0.4140 +51111 222194 0.4150 +51111 387893 0.8410 +51111 440093 0.4460 +51111 440686 0.4470 +51111 653604 0.4460 +51112 51399 0.9960 +51112 51693 0.9970 +51112 54221 0.4490 +51112 55262 0.8210 +51112 57533 0.8490 +51112 58485 0.9910 +51112 60684 0.9990 +51112 78990 0.5910 +51112 79090 0.9890 +51112 80006 0.9980 +51112 81876 0.6020 +51112 114822 0.4380 +51112 122553 0.9920 +51112 126003 0.9940 +51112 134147 0.6100 +51112 153769 0.4730 +51112 246243 0.4280 +51112 255743 0.4040 +51112 339122 0.6830 +51112 643707 0.4350 +51112 654254 0.4510 +51112 728597 0.4840 +51112 100128327 0.9770 +51112 100131755 0.4920 +51112 100505591 0.5250 +51114 51125 0.9990 +51114 51201 0.5840 +51114 51228 0.4010 +51114 51304 0.5620 +51114 55304 0.9090 +51114 55906 0.4510 +51114 65109 0.5150 +51114 79844 0.5670 +51114 81926 0.4190 +51114 84679 0.4140 +51114 90987 0.4300 +51114 94101 0.5910 +51114 94103 0.9060 +51114 165679 0.9090 +51114 171546 0.9120 +51114 253832 0.5660 +51114 254065 0.4580 +51114 401647 0.7180 +51115 54968 0.5240 +51115 55156 0.6450 +51115 56954 0.4690 +51115 57678 0.4020 +51115 80124 0.5170 +51115 84948 0.4140 +51115 132949 0.4470 +51115 134492 0.4070 +51115 157769 0.4980 +51115 161779 0.4260 +51115 440574 0.4170 +51116 51119 0.5040 +51116 51121 0.8410 +51116 51149 0.7720 +51116 51154 0.8330 +51116 51187 0.4780 +51116 51204 0.4980 +51116 51253 0.9170 +51116 51258 0.8840 +51116 51263 0.9330 +51116 51264 0.9920 +51116 51314 0.5440 +51116 51318 0.9020 +51116 51319 0.6110 +51116 51373 0.9930 +51116 51386 0.4580 +51116 51574 0.4160 +51116 51642 0.8690 +51116 51649 0.9990 +51116 51650 0.9970 +51116 54148 0.9020 +51116 54460 0.9970 +51116 54516 0.6860 +51116 54517 0.4670 +51116 54534 0.8990 +51116 54555 0.4070 +51116 54948 0.9900 +51116 54995 0.4250 +51116 54998 0.9900 +51116 55037 0.9970 +51116 55052 0.9920 +51116 55157 0.4250 +51116 55168 0.9940 +51116 55173 0.9990 +51116 55176 0.7830 +51116 55210 0.4310 +51116 55272 0.8580 +51116 55316 0.7960 +51116 55324 0.5150 +51116 55591 0.5600 +51116 55651 0.6870 +51116 55703 0.6850 +51116 55781 0.4610 +51116 56474 0.5800 +51116 56479 0.4220 +51116 56648 0.7550 +51116 56893 0.4190 +51116 56945 0.9990 +51116 56965 0.6430 +51116 57129 0.9760 +51116 57470 0.4740 +51116 60488 0.9980 +51116 60528 0.4290 +51116 60558 0.6260 +51116 60678 0.5560 +51116 63875 0.9940 +51116 63931 0.9990 +51116 64146 0.6400 +51116 64216 0.5430 +51116 64223 0.4960 +51116 64374 0.6860 +51116 64432 0.9980 +51116 64745 0.9740 +51116 64756 0.4140 +51116 64928 0.8680 +51116 64949 0.9910 +51116 64951 0.9920 +51116 64960 0.9990 +51116 64963 0.9990 +51116 64965 0.9990 +51116 64968 0.9990 +51116 64969 0.9990 +51116 64975 0.9880 +51116 64976 0.9760 +51116 64978 0.9530 +51116 64979 0.9930 +51116 64981 0.9760 +51116 64983 0.9910 +51116 65003 0.9870 +51116 65005 0.9930 +51116 65008 0.9790 +51116 65080 0.9900 +51116 65121 0.5560 +51116 65122 0.5560 +51116 65993 0.9980 +51116 78988 0.8640 +51116 79023 0.8100 +51116 79590 0.9720 +51116 79631 0.6960 +51116 79668 0.6430 +51116 79863 0.8340 +51116 80222 0.4310 +51116 80347 0.4150 +51116 83475 0.4280 +51116 84154 0.4180 +51116 84172 0.6850 +51116 84273 0.9050 +51116 84311 0.9100 +51116 84340 0.5160 +51116 84545 0.9890 +51116 84883 0.4030 +51116 84946 0.4820 +51116 85377 0.4380 +51116 85476 0.9400 +51116 90313 0.4910 +51116 90480 0.8980 +51116 90624 0.5320 +51116 91574 0.5280 +51116 91875 0.5100 +51116 92196 0.4710 +51116 92259 0.8320 +51116 92399 0.9810 +51116 93107 0.4220 +51116 114781 0.5220 +51116 114987 0.7990 +51116 115098 0.4530 +51116 115708 0.4180 +51116 116540 0.8280 +51116 116541 0.9030 +51116 116832 0.6410 +51116 118487 0.9920 +51116 122704 0.8630 +51116 124454 0.6370 +51116 124995 0.9540 +51116 126402 0.8160 +51116 128308 0.8750 +51116 139596 0.4040 +51116 140032 0.7520 +51116 140801 0.6800 +51116 142940 0.4120 +51116 143244 0.7550 +51116 148022 0.5150 +51116 153443 0.4820 +51116 157310 0.5780 +51116 158234 0.7850 +51116 169522 0.4220 +51116 170850 0.4220 +51116 196074 0.8820 +51116 200916 0.7160 +51116 219402 0.9070 +51116 219927 0.9900 +51116 254268 0.4220 +51116 255308 0.5370 +51116 283518 0.4220 +51116 285855 0.6940 +51116 286075 0.4190 +51116 343068 0.5560 +51116 343070 0.5560 +51116 345051 0.5620 +51116 353376 0.4980 +51116 374659 0.6350 +51116 387129 0.6860 +51116 387712 0.4610 +51116 390999 0.5560 +51116 391002 0.5560 +51116 400735 0.5560 +51116 400736 0.5560 +51116 440560 0.5560 +51116 440561 0.5560 +51116 441873 0.5560 +51116 641776 0.6800 +51116 643909 0.6800 +51116 645051 0.5300 +51116 645073 0.5300 +51116 645359 0.5560 +51116 653619 0.5560 +51116 654364 0.5450 +51116 728524 0.6800 +51116 728689 0.5690 +51116 729396 0.5300 +51116 729422 0.5300 +51116 729428 0.5300 +51116 729431 0.5300 +51116 729442 0.5300 +51116 729447 0.5300 +51116 729528 0.5560 +51116 100008586 0.5300 +51116 100132399 0.5300 +51116 100302736 0.4980 +51116 100505478 0.6860 +51116 100526842 0.7700 +51116 100529097 0.6850 +51116 100529239 0.7220 +51116 100996746 0.6800 +51116 101929983 0.5560 +51116 102724473 0.5300 +51116 105180390 0.6800 +51116 105180391 0.6800 +51116 114483834 0.4970 +51117 51167 0.4580 +51117 51805 0.9880 +51117 54840 0.5850 +51117 54994 0.4260 +51117 55837 0.4250 +51117 57017 0.9860 +51117 57107 0.8740 +51117 57143 0.6150 +51117 58472 0.5350 +51117 60343 0.4420 +51117 64795 0.4700 +51117 79934 0.9270 +51117 80219 0.7140 +51117 84274 0.9900 +51117 85458 0.4050 +51117 90956 0.6440 +51117 93058 0.7560 +51117 112812 0.5070 +51117 199953 0.4220 +51117 203054 0.6150 +51117 606495 0.4550 +51117 613227 0.4400 +51117 728489 0.4580 +51118 51149 0.7810 +51118 51154 0.8390 +51118 51187 0.8550 +51118 51202 0.8530 +51118 51236 0.4360 +51118 51319 0.6190 +51118 51388 0.8340 +51118 51406 0.8270 +51118 51490 0.7120 +51118 51575 0.8630 +51118 51602 0.9980 +51118 51808 0.4260 +51118 54512 0.8240 +51118 54552 0.6210 +51118 54555 0.8980 +51118 54606 0.5610 +51118 54881 0.6240 +51118 54984 0.4400 +51118 55003 0.5750 +51118 55127 0.9970 +51118 55131 0.8690 +51118 55153 0.7210 +51118 55173 0.4070 +51118 55226 0.9890 +51118 55272 0.9980 +51118 55299 0.9310 +51118 55319 0.7680 +51118 55341 0.5290 +51118 55646 0.7040 +51118 55651 0.7970 +51118 55718 0.4030 +51118 55720 0.4400 +51118 55759 0.7510 +51118 55760 0.4210 +51118 55781 0.5650 +51118 55813 0.9980 +51118 56342 0.5880 +51118 56647 0.6260 +51118 56902 0.9680 +51118 56915 0.8630 +51118 57050 0.9990 +51118 57062 0.8390 +51118 57109 0.5950 +51118 57418 0.6160 +51118 57461 0.4370 +51118 57647 0.9740 +51118 57835 0.4300 +51118 58496 0.5720 +51118 60487 0.5850 +51118 64118 0.5910 +51118 64216 0.6110 +51118 64318 0.7170 +51118 64960 0.7250 +51118 64963 0.6780 +51118 65083 0.9930 +51118 65095 0.5050 +51118 79050 0.9980 +51118 79159 0.8780 +51118 79571 0.7720 +51118 79707 0.5710 +51118 79896 0.4040 +51118 79954 0.9980 +51118 80135 0.8410 +51118 81887 0.5890 +51118 83707 0.4910 +51118 83743 0.4140 +51118 83986 0.4040 +51118 84128 0.9950 +51118 84135 0.9960 +51118 84154 0.9290 +51118 84294 0.9550 +51118 84319 0.4310 +51118 84365 0.8820 +51118 84549 0.9170 +51118 84916 0.9980 +51118 84946 0.7660 +51118 88745 0.7890 +51118 90121 0.7620 +51118 91582 0.8200 +51118 92856 0.9980 +51118 112849 0.4370 +51118 116966 0.4300 +51118 117246 0.7600 +51118 118460 0.6900 +51118 121512 0.4180 +51118 126402 0.6240 +51118 128061 0.8060 +51118 130535 0.4090 +51118 140032 0.6310 +51118 144108 0.4790 +51118 153443 0.5650 +51118 155368 0.4150 +51118 165545 0.4200 +51118 221830 0.8070 +51118 283106 0.5840 +51118 285855 0.4290 +51118 345630 0.9340 +51118 641776 0.4400 +51118 643909 0.4400 +51118 692312 0.5700 +51118 728524 0.4400 +51118 100534599 0.5750 +51118 100996746 0.4400 +51118 105180390 0.4400 +51118 105180391 0.4400 +51119 51121 0.5700 +51119 51149 0.5700 +51119 51154 0.8200 +51119 51187 0.5890 +51119 51319 0.5840 +51119 51388 0.7340 +51119 51428 0.4020 +51119 51750 0.5110 +51119 54512 0.5370 +51119 54517 0.4320 +51119 54857 0.4290 +51119 54948 0.4990 +51119 55003 0.4280 +51119 55131 0.4740 +51119 55135 0.4780 +51119 55173 0.5040 +51119 55272 0.5740 +51119 55299 0.4630 +51119 55316 0.5210 +51119 55341 0.6450 +51119 55505 0.6620 +51119 55651 0.7550 +51119 55759 0.5070 +51119 55781 0.4440 +51119 56965 0.4290 +51119 57697 0.4160 +51119 63931 0.5230 +51119 64374 0.5010 +51119 64960 0.5760 +51119 64963 0.5100 +51119 64969 0.5040 +51119 65008 0.6200 +51119 79590 0.5620 +51119 79631 0.9990 +51119 79668 0.4200 +51119 80135 0.6170 +51119 80169 0.4140 +51119 84154 0.4890 +51119 84324 0.4510 +51119 84522 0.4650 +51119 84916 0.4670 +51119 84946 0.4220 +51119 85476 0.6330 +51119 90441 0.4530 +51119 92399 0.5370 +51119 117246 0.5000 +51119 118460 0.4180 +51119 126402 0.4670 +51119 134218 0.7860 +51119 140032 0.5320 +51119 140801 0.5630 +51119 285855 0.4810 +51119 347487 0.5570 +51119 387129 0.4670 +51119 641776 0.4010 +51119 643909 0.4010 +51119 728524 0.4010 +51119 100287482 0.4900 +51119 100505478 0.4620 +51119 100526842 0.5640 +51119 100529097 0.4520 +51119 100996746 0.4010 +51119 105180390 0.4010 +51119 105180391 0.4010 +51121 51149 0.9490 +51121 51154 0.9460 +51121 51187 0.9010 +51121 51258 0.4610 +51121 51263 0.4380 +51121 51264 0.9780 +51121 51314 0.4480 +51121 51318 0.4550 +51121 51319 0.9330 +51121 51373 0.4690 +51121 51388 0.7990 +51121 51574 0.6690 +51121 51649 0.4930 +51121 51650 0.5820 +51121 51727 0.4150 +51121 54059 0.5990 +51121 54463 0.4590 +51121 54464 0.4490 +51121 54516 0.4910 +51121 54517 0.5180 +51121 54552 0.6020 +51121 54663 0.7950 +51121 54881 0.6780 +51121 54948 0.8440 +51121 55052 0.9600 +51121 55153 0.4790 +51121 55168 0.5650 +51121 55173 0.8950 +51121 55176 0.8870 +51121 55178 0.4830 +51121 55272 0.8920 +51121 55299 0.8500 +51121 55316 0.9340 +51121 55324 0.5530 +51121 55341 0.4760 +51121 55591 0.7330 +51121 55629 0.5060 +51121 55651 0.7940 +51121 55703 0.7530 +51121 55746 0.4580 +51121 55759 0.9050 +51121 55802 0.5060 +51121 55854 0.5190 +51121 55893 0.4750 +51121 56342 0.4260 +51121 56479 0.5160 +51121 56648 0.7110 +51121 56893 0.4360 +51121 56945 0.5390 +51121 56965 0.6710 +51121 57062 0.4500 +51121 57129 0.8760 +51121 57418 0.7180 +51121 57471 0.4120 +51121 57696 0.6060 +51121 58505 0.4650 +51121 60558 0.6170 +51121 60559 0.4400 +51121 60678 0.6890 +51121 63875 0.9820 +51121 63931 0.8400 +51121 64146 0.7730 +51121 64221 0.4990 +51121 64318 0.8210 +51121 64374 0.7790 +51121 64794 0.5390 +51121 64960 0.8570 +51121 64963 0.8770 +51121 64965 0.9750 +51121 64968 0.9740 +51121 64969 0.8900 +51121 64975 0.4630 +51121 64976 0.6060 +51121 64979 0.9810 +51121 64983 0.9560 +51121 65003 0.8080 +51121 65005 0.9620 +51121 65008 0.8590 +51121 65121 0.5800 +51121 65122 0.5800 +51121 65993 0.5500 +51121 79036 0.4490 +51121 79159 0.5590 +51121 79631 0.7910 +51121 79668 0.6710 +51121 79707 0.5300 +51121 79728 0.6070 +51121 79922 0.4530 +51121 80135 0.9060 +51121 81570 0.4390 +51121 81887 0.5130 +51121 81892 0.6160 +51121 83448 0.5220 +51121 84154 0.7330 +51121 84172 0.7530 +51121 84273 0.4470 +51121 84340 0.4380 +51121 84365 0.8700 +51121 84524 0.6090 +51121 84545 0.8510 +51121 84549 0.8480 +51121 84705 0.5890 +51121 84851 0.4290 +51121 84881 0.4690 +51121 84993 0.4300 +51121 85476 0.7910 +51121 85865 0.5020 +51121 90441 0.4630 +51121 90459 0.4030 +51121 90701 0.4420 +51121 91408 0.4870 +51121 91574 0.4710 +51121 91942 0.4180 +51121 92170 0.4480 +51121 92196 0.6660 +51121 92399 0.8670 +51121 93107 0.5160 +51121 93550 0.5210 +51121 112849 0.4180 +51121 113000 0.4670 +51121 114987 0.8800 +51121 115416 0.8540 +51121 116541 0.4320 +51121 116832 0.9470 +51121 117246 0.8370 +51121 122481 0.4100 +51121 122704 0.4430 +51121 123263 0.4290 +51121 124454 0.6860 +51121 126402 0.8560 +51121 128308 0.4610 +51121 140032 0.8700 +51121 140801 0.9850 +51121 143244 0.7110 +51121 143630 0.4200 +51121 146212 0.5770 +51121 158067 0.4100 +51121 164153 0.5210 +51121 169522 0.5160 +51121 170850 0.5160 +51121 200916 0.9430 +51121 201595 0.6030 +51121 219927 0.9780 +51121 221078 0.6000 +51121 221264 0.4100 +51121 254268 0.9280 +51121 255308 0.4500 +51121 283518 0.5160 +51121 284106 0.4400 +51121 285367 0.4700 +51121 285855 0.9470 +51121 342538 0.6670 +51121 343068 0.5800 +51121 343070 0.5800 +51121 347487 0.9270 +51121 348995 0.4590 +51121 374659 0.7770 +51121 387129 0.8580 +51121 390999 0.5800 +51121 391002 0.5800 +51121 400735 0.5800 +51121 400736 0.5800 +51121 440560 0.5800 +51121 440561 0.5800 +51121 441873 0.5800 +51121 641776 0.6890 +51121 643909 0.6890 +51121 645051 0.6430 +51121 645073 0.6430 +51121 645359 0.5800 +51121 653619 0.5800 +51121 654364 0.4200 +51121 728524 0.6890 +51121 729396 0.6430 +51121 729422 0.6430 +51121 729428 0.6430 +51121 729431 0.6430 +51121 729442 0.6430 +51121 729447 0.6430 +51121 729528 0.5800 +51121 100008586 0.6430 +51121 100128731 0.5410 +51121 100130890 0.4990 +51121 100131187 0.4990 +51121 100132399 0.6430 +51121 100287482 0.7700 +51121 100505478 0.8050 +51121 100526842 0.9860 +51121 100529097 0.8660 +51121 100529239 0.9910 +51121 100996746 0.6890 +51121 101929983 0.5800 +51121 102724473 0.6430 +51121 105180390 0.6890 +51121 105180391 0.6890 +51121 114483834 0.5720 +51122 51138 0.4600 +51122 51397 0.9870 +51122 51514 0.5120 +51122 51665 0.5040 +51122 51666 0.4990 +51122 51676 0.4990 +51122 51699 0.8930 +51122 53339 0.5030 +51122 54165 0.5790 +51122 54344 0.4890 +51122 54520 0.9340 +51122 54876 0.5040 +51122 54939 0.9870 +51122 54951 0.9720 +51122 55175 0.4990 +51122 55208 0.4990 +51122 55316 0.4030 +51122 55527 0.4990 +51122 55827 0.5660 +51122 55832 0.5340 +51122 55884 0.5130 +51122 55958 0.5170 +51122 56929 0.5060 +51122 56995 0.4990 +51122 57020 0.9130 +51122 57542 0.5070 +51122 64326 0.5210 +51122 64344 0.4990 +51122 64410 0.4990 +51122 64431 0.5310 +51122 64708 0.4270 +51122 79016 0.5070 +51122 79269 0.5100 +51122 79594 0.4090 +51122 79754 0.5050 +51122 79811 0.4600 +51122 79892 0.4330 +51122 79956 0.5190 +51122 80067 0.5170 +51122 80176 0.5070 +51122 80344 0.5010 +51122 81609 0.4300 +51122 84078 0.5140 +51122 84259 0.5440 +51122 84541 0.5120 +51122 84643 0.4610 +51122 84727 0.5070 +51122 84765 0.4570 +51122 84861 0.4990 +51122 89890 0.5170 +51122 90135 0.5000 +51122 90293 0.5010 +51122 90864 0.5070 +51122 92369 0.5070 +51122 92591 0.4990 +51122 93233 0.4220 +51122 113189 0.4240 +51122 115948 0.6920 +51122 122416 0.4990 +51122 122769 0.5140 +51122 123879 0.5000 +51122 124997 0.5750 +51122 127247 0.4990 +51122 136371 0.4990 +51122 140456 0.5080 +51122 140458 0.5080 +51122 140459 0.6150 +51122 140460 0.5160 +51122 140461 0.5100 +51122 140462 0.6150 +51122 140739 0.5040 +51122 140825 0.4990 +51122 142685 0.4990 +51122 142686 0.4990 +51122 142689 0.4990 +51122 147007 0.5300 +51122 149951 0.9670 +51122 150684 0.9740 +51122 154043 0.5310 +51122 154881 0.4990 +51122 170622 0.9720 +51122 200845 0.5090 +51122 222235 0.4160 +51122 389161 0.6180 +51122 390594 0.4990 +51122 401036 0.4990 +51122 404636 0.8640 +51122 441933 0.5890 +51122 493829 0.4710 +51122 100532731 0.6530 +51123 51366 0.4260 +51123 51582 0.4990 +51123 57821 0.4330 +51123 79170 0.5080 +51123 81567 0.5570 +51123 122416 0.5510 +51123 124997 0.4510 +51123 132141 0.5390 +51123 647174 0.5170 +51124 54460 0.4590 +51124 55829 0.4200 +51124 56851 0.5850 +51124 57129 0.4780 +51124 80232 0.4260 +51124 81555 0.7370 +51124 84064 0.5900 +51124 84272 0.5330 +51124 84919 0.4250 +51124 89839 0.4240 +51124 93587 0.5510 +51124 147685 0.4130 +51124 153339 0.6180 +51124 169792 0.5940 +51124 200185 0.6550 +51124 222546 0.6590 +51124 256297 0.5720 +51124 259266 0.4700 +51124 286451 0.7050 +51124 346171 0.5710 +51124 493856 0.5940 +51125 51201 0.7600 +51125 51304 0.7130 +51125 54916 0.5090 +51125 55304 0.9000 +51125 55621 0.4400 +51125 55625 0.4300 +51125 56650 0.8140 +51125 58515 0.4580 +51125 64429 0.6350 +51125 79683 0.4400 +51125 79844 0.5050 +51125 84287 0.4940 +51125 94101 0.6070 +51125 94103 0.9040 +51125 158866 0.5440 +51125 165679 0.9000 +51125 167555 0.4080 +51125 171546 0.9000 +51125 253832 0.6810 +51125 254359 0.4180 +51125 401647 0.5530 +51126 51340 0.6520 +51126 51611 0.4600 +51126 54453 0.5050 +51126 57148 0.4710 +51126 57325 0.5990 +51126 60560 0.9310 +51126 64412 0.4180 +51126 79567 0.4260 +51126 79612 0.8300 +51126 79829 0.8460 +51126 79903 0.7960 +51126 80018 0.9990 +51126 80155 0.9910 +51126 80218 0.9340 +51126 84316 0.7100 +51126 84779 0.6750 +51126 92292 0.4450 +51126 114799 0.6580 +51126 122830 0.9540 +51126 123688 0.4410 +51126 148932 0.4910 +51126 153527 0.5140 +51126 157570 0.6500 +51126 100132916 0.4390 +51127 51592 0.7310 +51127 54765 0.7700 +51127 55217 0.7150 +51127 56658 0.7280 +51127 56916 0.4930 +51127 81844 0.4770 +51127 114088 0.8010 +51127 131405 0.4510 +51127 283518 0.5990 +51127 440730 0.7650 +51127 442862 0.6970 +51128 51399 0.5760 +51128 51693 0.5180 +51128 55018 0.5740 +51128 56681 0.9610 +51128 58477 0.5750 +51128 58485 0.5640 +51128 59349 0.6970 +51128 64083 0.7720 +51128 64374 0.8190 +51128 64788 0.4340 +51128 79090 0.5120 +51128 79748 0.5580 +51128 80762 0.4170 +51128 81562 0.5550 +51128 81876 0.7300 +51128 89866 0.7600 +51128 90411 0.6620 +51128 91369 0.5770 +51128 93183 0.5680 +51128 122553 0.5320 +51128 126003 0.5110 +51128 149111 0.5660 +51128 254263 0.5660 +51128 258010 0.5490 +51128 375056 0.6680 +51128 553115 0.6340 +51129 51586 0.5110 +51129 54797 0.4990 +51129 55090 0.4990 +51129 55588 0.4990 +51129 56034 0.4240 +51129 57104 0.4430 +51129 64788 0.5490 +51129 79718 0.4100 +51129 80205 0.4020 +51129 80306 0.4990 +51129 81857 0.4990 +51129 84246 0.5000 +51129 84498 0.4990 +51129 85441 0.5250 +51129 90390 0.4990 +51129 96764 0.4230 +51129 112399 0.4500 +51129 112950 0.4990 +51129 116519 0.6190 +51129 130120 0.4090 +51129 140576 0.4170 +51129 255738 0.4460 +51129 338328 0.9260 +51129 400569 0.4990 +51131 51479 0.4110 +51131 54739 0.4750 +51131 55213 0.6240 +51131 55601 0.4170 +51131 55604 0.4080 +51131 57105 0.4600 +51131 57628 0.8190 +51131 80332 0.9050 +51131 81602 0.5930 +51131 81617 0.5470 +51131 83666 0.4510 +51131 83852 0.9890 +51131 85363 0.5270 +51131 85441 0.4420 +51131 94240 0.4020 +51131 117156 0.4950 +51131 219285 0.4330 +51131 387129 0.7210 +51131 404734 0.4080 +51131 101929989 0.4270 +51132 53344 0.7180 +51132 54778 0.5620 +51132 55906 0.5460 +51132 63893 0.4600 +51132 63947 0.4030 +51132 63978 0.4220 +51132 64750 0.6990 +51132 79923 0.6310 +51132 79993 0.4790 +51132 80311 0.6070 +51132 81887 0.4450 +51132 142689 0.4470 +51132 170394 0.4360 +51132 253943 0.4720 +51132 286451 0.4140 +51132 340533 0.7710 +51132 389874 0.4100 +51132 100532731 0.4760 +51133 54793 0.4020 +51133 55040 0.4650 +51133 55105 0.5790 +51133 55631 0.7410 +51133 57657 0.7080 +51133 64359 0.4900 +51133 79047 0.4240 +51133 81609 0.4980 +51133 81849 0.4140 +51133 83541 0.4790 +51133 84245 0.6190 +51133 84280 0.4620 +51133 84955 0.6290 +51133 92799 0.7620 +51133 128153 0.5660 +51133 146212 0.6450 +51133 147040 0.6240 +51133 154881 0.7070 +51133 222658 0.5280 +51133 253980 0.5170 +51133 284252 0.5090 +51133 339479 0.4290 +51133 100532731 0.4280 +51134 51175 0.5060 +51134 51199 0.8250 +51134 54806 0.6440 +51134 54875 0.4150 +51134 54903 0.4120 +51134 55835 0.4180 +51134 56623 0.4200 +51134 57728 0.5250 +51134 79598 0.7010 +51134 79809 0.4800 +51134 79848 0.4760 +51134 80184 0.7010 +51134 80323 0.5410 +51134 80705 0.5070 +51134 84902 0.9930 +51134 84984 0.4920 +51134 85302 0.9940 +51134 85444 0.5610 +51134 85478 0.4010 +51134 90060 0.6150 +51134 90410 0.7950 +51134 91147 0.6460 +51134 116840 0.5020 +51134 117177 0.7780 +51134 132320 0.9990 +51134 145508 0.6950 +51134 146057 0.7360 +51134 152185 0.4370 +51134 153241 0.6100 +51134 163786 0.4420 +51134 200894 0.6240 +51134 201255 0.6040 +51134 203286 0.4620 +51134 219844 0.4150 +51134 261734 0.4670 +51134 284086 0.4780 +51134 347240 0.5030 +51134 388468 0.7210 +51134 100287399 0.6470 +51135 51284 0.9630 +51135 51295 0.5010 +51135 51311 0.9210 +51135 54106 0.9420 +51135 54472 0.9780 +51135 55367 0.4200 +51135 55844 0.9000 +51135 57161 0.9600 +51135 57162 0.9950 +51135 57506 0.9430 +51135 59307 0.5320 +51135 64127 0.4890 +51135 64135 0.4540 +51135 64332 0.4790 +51135 79132 0.5790 +51135 80380 0.4770 +51135 81622 0.6140 +51135 81793 0.5800 +51135 84433 0.4200 +51135 90865 0.8690 +51135 114548 0.4720 +51135 114609 0.9950 +51135 148022 0.9570 +51135 246330 0.9080 +51135 257397 0.9680 +51135 282618 0.6380 +51135 353376 0.7110 +51135 653361 0.5730 +51135 100302736 0.6120 +51136 51174 0.4310 +51136 51651 0.4340 +51136 55298 0.4440 +51136 55819 0.4580 +51136 57508 0.4340 +51136 79665 0.4320 +51136 81790 0.5140 +51136 92305 0.4710 +51136 124773 0.5090 +51136 138065 0.4780 +51136 153830 0.4650 +51136 286827 0.4660 +51136 378925 0.4230 +51136 401934 0.5800 +51138 51185 0.8360 +51138 51239 0.4270 +51138 51397 0.5480 +51138 51514 0.7680 +51138 53339 0.6850 +51138 54165 0.5690 +51138 54537 0.4170 +51138 54617 0.4100 +51138 54939 0.4200 +51138 54951 0.5330 +51138 55070 0.6910 +51138 55208 0.4150 +51138 55276 0.4370 +51138 55317 0.4330 +51138 55643 0.6190 +51138 55827 0.4130 +51138 55832 0.5150 +51138 57559 0.6310 +51138 64326 0.5070 +51138 64708 0.9990 +51138 79016 0.6180 +51138 79184 0.5570 +51138 79269 0.4310 +51138 79913 0.4160 +51138 80067 0.4050 +51138 80344 0.8490 +51138 83444 0.4210 +51138 84259 0.4590 +51138 84954 0.6660 +51138 85439 0.6690 +51138 90293 0.6800 +51138 93973 0.4110 +51138 114803 0.5420 +51138 115290 0.8280 +51138 125476 0.4050 +51138 149951 0.4260 +51138 150678 0.9680 +51138 150684 0.4640 +51138 170622 0.4410 +51138 286187 0.7580 +51138 317719 0.6200 +51138 387357 0.7200 +51138 404672 0.5280 +51141 51360 0.5260 +51141 54329 0.7750 +51141 54520 0.5440 +51141 55723 0.4630 +51141 57678 0.4660 +51141 65062 0.5020 +51141 79047 0.5200 +51141 79068 0.5830 +51141 79071 0.4420 +51141 114294 0.4100 +51141 127018 0.4110 +51141 129787 0.4780 +51141 132789 0.4940 +51141 153830 0.7420 +51141 257194 0.4250 +51142 51287 0.5290 +51142 51373 0.5140 +51142 54205 0.4300 +51142 54832 0.6710 +51142 54927 0.7150 +51142 55737 0.7290 +51142 56942 0.5840 +51142 64377 0.4200 +51142 65018 0.6690 +51142 79135 0.4040 +51142 79145 0.5330 +51142 79608 0.5650 +51142 80208 0.4990 +51142 84269 0.5420 +51142 84303 0.8870 +51142 84701 0.6130 +51142 90639 0.4730 +51142 116442 0.5980 +51142 120892 0.6060 +51142 131474 0.7790 +51142 139322 0.4740 +51142 168620 0.4260 +51142 246243 0.5600 +51142 285513 0.4160 +51142 349075 0.4420 +51142 388753 0.6300 +51142 391356 0.5830 +51142 400916 0.8880 +51142 100272147 0.4150 +51143 51164 0.8300 +51143 51272 0.4990 +51143 51361 0.8020 +51143 51560 0.5520 +51143 51626 0.9520 +51143 51759 0.4410 +51143 51807 0.6780 +51143 54093 0.4010 +51143 54820 0.4980 +51143 54821 0.4260 +51143 55112 0.9260 +51143 55738 0.5130 +51143 55860 0.8190 +51143 57511 0.5040 +51143 64446 0.4930 +51143 64689 0.6140 +51143 79659 0.9460 +51143 79861 0.6570 +51143 81027 0.6590 +51143 81565 0.5080 +51143 83547 0.8650 +51143 83548 0.6390 +51143 83657 0.8810 +51143 83658 0.9870 +51143 84196 0.5080 +51143 84364 0.5130 +51143 84376 0.9860 +51143 84516 0.8030 +51143 84617 0.6700 +51143 84766 0.8220 +51143 84790 0.6590 +51143 89891 0.9230 +51143 91687 0.4460 +51143 91949 0.5040 +51143 92558 0.4260 +51143 93661 0.5380 +51143 112714 0.6540 +51143 113457 0.6880 +51143 140735 0.9680 +51143 140883 0.4350 +51143 151648 0.4800 +51143 158158 0.6490 +51143 200132 0.7360 +51143 200894 0.5220 +51143 203068 0.6710 +51143 255758 0.8010 +51143 283229 0.6030 +51143 338382 0.8010 +51143 343521 0.7420 +51143 347688 0.6640 +51143 347733 0.6690 +51143 348235 0.4750 +51143 401258 0.4520 +51144 51170 0.4560 +51144 51171 0.7260 +51144 51478 0.9710 +51144 51495 0.9810 +51144 51741 0.4850 +51144 54490 0.6710 +51144 54499 0.5100 +51144 54514 0.5850 +51144 54575 0.6620 +51144 54576 0.6620 +51144 54577 0.6620 +51144 54578 0.6620 +51144 54579 0.6620 +51144 54600 0.6620 +51144 54657 0.6620 +51144 54658 0.6620 +51144 54659 0.6620 +51144 54898 0.9450 +51144 55711 0.4490 +51144 55825 0.4420 +51144 56898 0.4200 +51144 56926 0.4100 +51144 56993 0.4380 +51144 57508 0.4420 +51144 60481 0.6320 +51144 64779 0.4500 +51144 64834 0.9740 +51144 79071 0.9540 +51144 79154 0.9410 +51144 79728 0.4420 +51144 79763 0.4910 +51144 79799 0.6620 +51144 79893 0.4780 +51144 79966 0.9320 +51144 79993 0.9470 +51144 80347 0.8680 +51144 83401 0.9340 +51144 84188 0.4720 +51144 84263 0.4950 +51144 84656 0.4320 +51144 132949 0.5380 +51144 133396 0.6240 +51144 197257 0.4750 +51144 201562 0.9830 +51144 253017 0.6250 +51144 389421 0.5180 +51144 401494 0.9790 +51144 441024 0.4690 +51144 574537 0.6620 +51146 51301 0.7250 +51146 55454 0.4120 +51146 56287 0.5500 +51146 56667 0.4540 +51146 56913 0.5770 +51146 92565 0.4520 +51146 94025 0.4310 +51146 140453 0.4320 +51146 200958 0.6060 +51146 394263 0.4130 +51146 727897 0.4990 +51147 51742 0.4160 +51147 54583 0.8510 +51147 55929 0.5980 +51147 64769 0.9990 +51147 79960 0.9980 +51147 80314 0.5060 +51147 84148 0.4210 +51147 84289 0.9220 +51147 84312 0.4790 +51147 84449 0.5800 +51147 112398 0.5770 +51147 112399 0.5470 +51147 126961 0.9540 +51147 333932 0.9140 +51147 440093 0.9660 +51147 440686 0.9660 +51147 653604 0.9660 +51147 728294 0.5700 +51148 57120 0.4330 +51148 64077 0.4450 +51149 51154 0.8810 +51149 51187 0.5550 +51149 51263 0.6340 +51149 51264 0.9690 +51149 51314 0.5710 +51149 51319 0.9210 +51149 51373 0.4590 +51149 51386 0.4770 +51149 51602 0.8640 +51149 54148 0.5140 +51149 54464 0.5010 +51149 54516 0.5170 +51149 54948 0.7660 +51149 54965 0.5110 +51149 54998 0.4140 +51149 55052 0.9700 +51149 55086 0.5310 +51149 55127 0.8410 +51149 55168 0.6610 +51149 55173 0.8750 +51149 55176 0.6800 +51149 55226 0.8120 +51149 55272 0.9330 +51149 55316 0.9340 +51149 55324 0.5880 +51149 55591 0.4790 +51149 55651 0.6340 +51149 55703 0.6140 +51149 55720 0.4300 +51149 55721 0.4790 +51149 55781 0.8640 +51149 55813 0.7990 +51149 55854 0.5500 +51149 56479 0.5010 +51149 56648 0.8100 +51149 56893 0.4090 +51149 56902 0.4740 +51149 56915 0.4920 +51149 56945 0.4050 +51149 56965 0.5520 +51149 57050 0.8010 +51149 57129 0.8260 +51149 57136 0.4760 +51149 60386 0.4080 +51149 60488 0.8380 +51149 60558 0.6970 +51149 60678 0.5710 +51149 63875 0.9680 +51149 63931 0.8290 +51149 64146 0.7760 +51149 64216 0.5310 +51149 64374 0.7670 +51149 64432 0.6800 +51149 64745 0.5570 +51149 64949 0.4300 +51149 64963 0.8270 +51149 64965 0.9740 +51149 64968 0.9540 +51149 64969 0.8750 +51149 64975 0.8070 +51149 64976 0.7870 +51149 64978 0.5320 +51149 64979 0.9350 +51149 64981 0.8240 +51149 64983 0.9690 +51149 65003 0.7730 +51149 65005 0.9440 +51149 65008 0.8350 +51149 65080 0.6080 +51149 65083 0.8420 +51149 65121 0.5730 +51149 65122 0.5730 +51149 65993 0.5240 +51149 79050 0.8410 +51149 79571 0.4740 +51149 79590 0.8280 +51149 79631 0.7590 +51149 79668 0.5400 +51149 79954 0.7920 +51149 80146 0.4640 +51149 80222 0.5110 +51149 80270 0.4640 +51149 84128 0.7710 +51149 84135 0.8080 +51149 84172 0.6140 +51149 84340 0.5850 +51149 84545 0.8320 +51149 84916 0.7830 +51149 84946 0.8430 +51149 85377 0.4760 +51149 85476 0.7590 +51149 87178 0.4760 +51149 90313 0.5670 +51149 90624 0.4240 +51149 91408 0.4460 +51149 91574 0.5190 +51149 92196 0.6180 +51149 92399 0.8850 +51149 92856 0.7760 +51149 93107 0.5010 +51149 93517 0.4640 +51149 93550 0.4860 +51149 114781 0.4240 +51149 114987 0.8810 +51149 116541 0.5660 +51149 116832 0.9220 +51149 118487 0.4640 +51149 123283 0.5120 +51149 124454 0.7020 +51149 124995 0.6660 +51149 126402 0.8470 +51149 140032 0.8550 +51149 140801 0.9130 +51149 142940 0.5490 +51149 143244 0.8100 +51149 148022 0.4350 +51149 149478 0.4240 +51149 153443 0.5190 +51149 155368 0.4070 +51149 157310 0.5320 +51149 164153 0.4860 +51149 169522 0.5010 +51149 170850 0.5010 +51149 200916 0.9050 +51149 203427 0.4080 +51149 219927 0.9610 +51149 252884 0.4350 +51149 254268 0.9280 +51149 255308 0.6740 +51149 283518 0.5010 +51149 283600 0.4080 +51149 285855 0.8480 +51149 343068 0.5730 +51149 343070 0.5730 +51149 345051 0.5710 +51149 345630 0.6650 +51149 347487 0.9170 +51149 353376 0.4350 +51149 374659 0.7940 +51149 387129 0.8480 +51149 387712 0.4320 +51149 387990 0.4320 +51149 390999 0.5730 +51149 391002 0.5730 +51149 400735 0.5730 +51149 400736 0.5730 +51149 440560 0.5730 +51149 440561 0.5730 +51149 441873 0.5730 +51149 641776 0.6780 +51149 643909 0.6780 +51149 645051 0.6590 +51149 645073 0.6590 +51149 645359 0.5730 +51149 653619 0.5730 +51149 654364 0.5210 +51149 728524 0.6780 +51149 728689 0.6890 +51149 729396 0.6590 +51149 729422 0.6590 +51149 729428 0.6590 +51149 729431 0.6590 +51149 729442 0.6590 +51149 729447 0.6590 +51149 729528 0.5730 +51149 100008586 0.6590 +51149 100132399 0.6590 +51149 100287482 0.7720 +51149 100302736 0.4350 +51149 100505478 0.7950 +51149 100526842 0.9300 +51149 100529097 0.8590 +51149 100529239 0.9120 +51149 100996746 0.6780 +51149 101929983 0.5730 +51149 102724473 0.6590 +51149 105180390 0.6780 +51149 105180391 0.6780 +51149 114483834 0.5540 +51151 54796 0.6160 +51151 54849 0.4840 +51151 55191 0.4960 +51151 55363 0.4020 +51151 55770 0.4800 +51151 60401 0.7880 +51151 79083 0.4050 +51151 79803 0.5900 +51151 80070 0.4580 +51151 81037 0.5910 +51151 83938 0.7040 +51151 84343 0.5240 +51151 89781 0.4900 +51151 123041 0.8560 +51151 126321 0.6970 +51151 206358 0.4440 +51151 219931 0.7990 +51151 283652 0.9850 +51151 353238 0.4410 +51151 388552 0.4780 +51154 51187 0.9990 +51154 51194 0.4940 +51154 51202 0.8840 +51154 51236 0.6280 +51154 51264 0.9820 +51154 51319 0.7800 +51154 51388 0.9990 +51154 51491 0.8000 +51154 51504 0.4660 +51154 51575 0.7970 +51154 51602 0.9460 +51154 51649 0.5390 +51154 51727 0.4740 +51154 51773 0.5110 +51154 54433 0.8170 +51154 54463 0.6190 +51154 54475 0.9730 +51154 54512 0.4320 +51154 54516 0.5280 +51154 54517 0.5390 +51154 54552 0.9830 +51154 54555 0.5280 +51154 54606 0.9090 +51154 54663 0.9970 +51154 54862 0.4850 +51154 54865 0.4280 +51154 54881 0.6480 +51154 54888 0.8330 +51154 54891 0.4970 +51154 54896 0.4320 +51154 54948 0.8330 +51154 54984 0.5530 +51154 55003 0.8980 +51154 55006 0.5410 +51154 55027 0.5590 +51154 55052 0.9820 +51154 55127 0.4710 +51154 55131 0.8050 +51154 55140 0.5120 +51154 55143 0.5190 +51154 55153 0.9780 +51154 55168 0.5490 +51154 55170 0.5040 +51154 55173 0.9490 +51154 55176 0.8590 +51154 55226 0.8680 +51154 55239 0.4620 +51154 55250 0.4270 +51154 55272 0.9690 +51154 55299 0.9970 +51154 55316 0.8890 +51154 55319 0.8600 +51154 55339 0.4820 +51154 55341 0.9070 +51154 55505 0.5720 +51154 55591 0.7440 +51154 55621 0.4960 +51154 55646 0.8360 +51154 55651 0.9870 +51154 55695 0.5460 +51154 55703 0.8480 +51154 55720 0.9360 +51154 55723 0.4420 +51154 55759 0.9970 +51154 55760 0.6850 +51154 55781 0.8810 +51154 55794 0.7230 +51154 55813 0.9370 +51154 55854 0.5570 +51154 56341 0.4980 +51154 56342 0.9190 +51154 56474 0.6250 +51154 56479 0.4260 +51154 56647 0.7740 +51154 56648 0.6230 +51154 56893 0.4320 +51154 56902 0.7380 +51154 56915 0.6710 +51154 56931 0.4750 +51154 56937 0.5120 +51154 56965 0.7040 +51154 57038 0.4850 +51154 57050 0.7220 +51154 57062 0.7760 +51154 57109 0.5840 +51154 57136 0.6720 +51154 57418 0.9060 +51154 57469 0.4120 +51154 57471 0.4460 +51154 57696 0.9030 +51154 58477 0.5190 +51154 58505 0.4330 +51154 59345 0.4180 +51154 60314 0.5300 +51154 60487 0.5290 +51154 60558 0.4400 +51154 63875 0.9850 +51154 63899 0.6490 +51154 63931 0.8940 +51154 64118 0.6870 +51154 64216 0.7590 +51154 64318 0.9880 +51154 64374 0.8310 +51154 64425 0.8930 +51154 64783 0.8220 +51154 64794 0.5490 +51154 64900 0.4540 +51154 64960 0.9120 +51154 64963 0.9080 +51154 64965 0.9810 +51154 64968 0.9810 +51154 64969 0.9450 +51154 64979 0.9820 +51154 64983 0.9820 +51154 65003 0.8690 +51154 65005 0.9810 +51154 65008 0.9100 +51154 65083 0.6840 +51154 65095 0.4130 +51154 65121 0.6090 +51154 65122 0.6090 +51154 79009 0.4970 +51154 79029 0.4260 +51154 79039 0.5750 +51154 79050 0.7350 +51154 79080 0.7770 +51154 79137 0.5520 +51154 79159 0.8830 +51154 79571 0.5590 +51154 79590 0.9190 +51154 79631 0.9010 +51154 79668 0.7040 +51154 79711 0.6610 +51154 79728 0.5850 +51154 79730 0.5120 +51154 79954 0.8670 +51154 80135 0.9940 +51154 80273 0.4090 +51154 80324 0.4650 +51154 81887 0.6140 +51154 83475 0.6370 +51154 83479 0.4740 +51154 83480 0.4730 +51154 83732 0.5180 +51154 83743 0.9460 +51154 84128 0.7920 +51154 84135 0.6190 +51154 84154 0.9990 +51154 84172 0.8720 +51154 84273 0.5950 +51154 84294 0.5710 +51154 84298 0.5330 +51154 84340 0.4320 +51154 84365 0.9980 +51154 84549 0.9900 +51154 84916 0.8890 +51154 84946 0.8630 +51154 84955 0.6290 +51154 84993 0.4340 +51154 85476 0.8650 +51154 85865 0.5700 +51154 87178 0.7030 +51154 88745 0.4100 +51154 89941 0.4450 +51154 90121 0.8050 +51154 90441 0.8830 +51154 90826 0.4100 +51154 91574 0.5300 +51154 91646 0.4540 +51154 91875 0.5640 +51154 91893 0.4810 +51154 92170 0.5900 +51154 92399 0.8480 +51154 92856 0.9270 +51154 93107 0.4210 +51154 93550 0.4320 +51154 114987 0.9270 +51154 115416 0.5020 +51154 115708 0.6940 +51154 116832 0.8580 +51154 116966 0.7630 +51154 117246 0.9960 +51154 122481 0.4740 +51154 122622 0.4190 +51154 124454 0.7010 +51154 126402 0.8880 +51154 134218 0.5120 +51154 140032 0.8590 +51154 140801 0.8500 +51154 142940 0.6610 +51154 143244 0.6190 +51154 143630 0.4240 +51154 146212 0.9410 +51154 153443 0.5080 +51154 155368 0.6550 +51154 158067 0.4740 +51154 161424 0.7060 +51154 162427 0.5520 +51154 164153 0.4240 +51154 165545 0.6850 +51154 166378 0.4340 +51154 169522 0.4210 +51154 170850 0.4210 +51154 171568 0.6570 +51154 200916 0.8700 +51154 201595 0.6060 +51154 219927 0.9830 +51154 221078 0.9730 +51154 221264 0.4740 +51154 221823 0.4200 +51154 221830 0.7810 +51154 254268 0.7810 +51154 283518 0.4210 +51154 285855 0.9290 +51154 317781 0.5120 +51154 342538 0.4230 +51154 343068 0.6090 +51154 343070 0.6090 +51154 344758 0.4520 +51154 345630 0.7820 +51154 347487 0.8200 +51154 348995 0.5190 +51154 374659 0.7650 +51154 387129 0.8870 +51154 387338 0.6610 +51154 387712 0.5110 +51154 390999 0.6090 +51154 391002 0.6090 +51154 400735 0.6090 +51154 400736 0.6090 +51154 440560 0.6090 +51154 440561 0.6090 +51154 441873 0.6090 +51154 641776 0.7370 +51154 643909 0.7370 +51154 645051 0.6610 +51154 645073 0.6610 +51154 645359 0.6090 +51154 653619 0.6090 +51154 654364 0.4620 +51154 692312 0.7440 +51154 728524 0.7370 +51154 729396 0.6610 +51154 729422 0.6610 +51154 729428 0.6610 +51154 729431 0.6610 +51154 729442 0.6610 +51154 729447 0.6610 +51154 729528 0.6090 +51154 100008586 0.6610 +51154 100128731 0.4290 +51154 100132399 0.6610 +51154 100287482 0.8200 +51154 100505478 0.8420 +51154 100526842 0.9370 +51154 100529097 0.7610 +51154 100529239 0.9050 +51154 100996746 0.7370 +51154 101929983 0.6090 +51154 102724473 0.6610 +51154 105180390 0.7370 +51154 105180391 0.7370 +51154 114483834 0.5920 +51155 58517 0.4050 +51155 90861 0.7240 +51156 54587 0.4270 +51156 54757 0.6540 +51156 56975 0.6320 +51156 57718 0.4950 +51156 158131 0.4750 +51156 284293 0.4540 +51156 375056 0.4770 +51156 440387 0.6680 +51160 51234 0.9600 +51160 51271 0.9990 +51160 51510 0.9200 +51160 51534 0.8570 +51160 51652 0.9860 +51160 51699 0.4050 +51160 53349 0.4090 +51160 55048 0.9990 +51160 55165 0.9140 +51160 55293 0.9480 +51160 55737 0.4320 +51160 55823 0.4660 +51160 57132 0.9750 +51160 60491 0.7030 +51160 64145 0.4600 +51160 64149 0.5510 +51160 79643 0.9980 +51160 79720 0.9990 +51160 81858 0.5480 +51160 84232 0.6140 +51160 84313 0.9980 +51160 84645 0.4300 +51160 84936 0.4710 +51160 84955 0.6220 +51160 89853 0.9990 +51160 90678 0.7860 +51160 91782 0.9590 +51160 92421 0.8390 +51160 92714 0.4790 +51160 93343 0.9990 +51160 126003 0.5120 +51160 128866 0.9430 +51160 137492 0.9990 +51160 148362 0.5410 +51160 148581 0.6150 +51160 155382 0.9910 +51160 390595 0.5400 +51160 727957 0.4170 +51160 100526767 0.8650 +51161 55127 0.4900 +51161 55898 0.4610 +51161 56993 0.4860 +51161 57706 0.4770 +51161 60343 0.4980 +51161 84311 0.5280 +51161 84696 0.5220 +51161 84886 0.5150 +51161 90411 0.4580 +51161 92609 0.4140 +51161 114294 0.4760 +51161 146862 0.4430 +51161 147179 0.4740 +51161 285203 0.4490 +51161 388284 0.4670 +51161 440955 0.4800 +51161 100287932 0.5670 +51162 51705 0.4220 +51162 51807 0.4540 +51162 54345 0.4920 +51162 54538 0.5900 +51162 54567 0.4600 +51162 54922 0.4230 +51162 56953 0.4110 +51162 79812 0.4870 +51162 80864 0.4330 +51162 90952 0.6840 +51162 161742 0.8130 +51162 387119 0.4500 +51163 51314 0.5160 +51163 54464 0.4090 +51163 54487 0.4920 +51163 55063 0.4010 +51163 55164 0.5350 +51163 55171 0.4180 +51163 55280 0.7710 +51163 55676 0.4430 +51163 55720 0.4750 +51163 56949 0.5520 +51163 57091 0.4060 +51163 57510 0.6930 +51163 65082 0.4450 +51163 91869 0.5330 +51163 136647 0.4280 +51163 143689 0.4020 +51163 143884 0.5740 +51164 51234 0.8890 +51164 51255 0.6460 +51164 51272 0.6100 +51164 51560 0.5110 +51164 55197 0.5290 +51164 55696 0.6600 +51164 55738 0.5040 +51164 55831 0.9030 +51164 55860 0.9990 +51164 56269 0.4920 +51164 56992 0.5510 +51164 57180 0.8230 +51164 57511 0.5130 +51164 57645 0.4370 +51164 60626 0.4350 +51164 64689 0.5210 +51164 64837 0.5280 +51164 79659 0.4160 +51164 79848 0.7170 +51164 80310 0.6860 +51164 81569 0.6980 +51164 81930 0.5480 +51164 83460 0.8880 +51164 83548 0.5940 +51164 83606 0.5120 +51164 83657 0.5410 +51164 83658 0.8910 +51164 84364 0.5100 +51164 84516 0.9990 +51164 84517 0.5380 +51164 84643 0.5020 +51164 85027 0.5500 +51164 89927 0.6690 +51164 89953 0.5040 +51164 90634 0.5930 +51164 91582 0.5950 +51164 91949 0.5070 +51164 91977 0.4460 +51164 92558 0.9120 +51164 93661 0.5580 +51164 140735 0.6370 +51164 140850 0.6800 +51164 147700 0.5640 +51164 150684 0.4810 +51164 284382 0.6980 +51164 285643 0.4990 +51164 345651 0.4260 +51164 653857 0.8970 +51166 51179 0.5560 +51166 51562 0.4920 +51166 54363 0.4580 +51166 54511 0.4270 +51166 54529 0.7340 +51166 54947 0.4220 +51166 55163 0.4240 +51166 55258 0.6740 +51166 55526 0.9400 +51166 56267 0.9600 +51166 60491 0.5670 +51166 64902 0.4690 +51166 79896 0.6830 +51166 84290 0.4200 +51166 84842 0.5240 +51166 85007 0.4630 +51166 124912 0.4720 +51166 125061 0.9550 +51166 130013 0.6200 +51166 132949 0.5120 +51166 169355 0.5890 +51166 201456 0.4110 +51166 285148 0.5130 +51166 388630 0.6660 +51167 51170 0.4100 +51167 51557 0.5940 +51167 54205 0.7270 +51167 54431 0.4020 +51167 54469 0.4550 +51167 54552 0.4590 +51167 55034 0.4210 +51167 55278 0.4120 +51167 55312 0.5360 +51167 56474 0.4340 +51167 56896 0.5710 +51167 57834 0.4060 +51167 58472 0.4760 +51167 79152 0.5040 +51167 79912 0.4560 +51167 79966 0.5500 +51167 80777 0.9690 +51167 84263 0.6200 +51167 84693 0.4420 +51167 84883 0.5100 +51167 89894 0.6810 +51167 112609 0.5840 +51167 112812 0.6100 +51167 124637 0.4810 +51167 127845 0.5530 +51167 134701 0.4780 +51167 150209 0.4410 +51167 158584 0.4310 +51167 199974 0.4090 +51167 200558 0.4260 +51167 260293 0.4050 +51167 283985 0.6900 +51167 339761 0.4430 +51167 389434 0.5480 +51168 51806 0.4290 +51168 53405 0.6350 +51168 53904 0.9050 +51168 56649 0.6970 +51168 57465 0.4470 +51168 57689 0.7200 +51168 64072 0.8370 +51168 64699 0.7740 +51168 64787 0.9630 +51168 65217 0.7710 +51168 79955 0.7150 +51168 83450 0.4120 +51168 83660 0.4820 +51168 83715 0.9700 +51168 84059 0.8350 +51168 103910 0.5040 +51168 117155 0.4100 +51168 117531 0.8590 +51168 117532 0.5590 +51168 124590 0.9110 +51168 125336 0.7220 +51168 126326 0.5840 +51168 129446 0.5810 +51168 140469 0.8460 +51168 146183 0.6990 +51168 152137 0.4180 +51168 153562 0.4470 +51168 161497 0.7780 +51168 222662 0.6490 +51168 246213 0.4400 +51168 257629 0.5530 +51168 259236 0.6790 +51168 283310 0.5260 +51168 286262 0.7880 +51168 286676 0.5450 +51168 339768 0.9100 +51168 340990 0.6400 +51168 375611 0.5870 +51168 388551 0.5090 +51168 389207 0.7530 +51168 494513 0.8170 +51168 643226 0.7250 +51170 51478 0.4060 +51170 54995 0.4470 +51170 55825 0.5120 +51170 57188 0.5460 +51170 64240 0.4050 +51170 84541 0.4340 +51170 112812 0.4640 +51170 116519 0.4470 +51170 132949 0.4750 +51170 137964 0.4650 +51170 196410 0.4930 +51170 347475 0.4060 +51171 54995 0.5110 +51171 55093 0.5300 +51171 55586 0.4200 +51171 55862 0.4910 +51171 57404 0.4160 +51171 57469 0.4360 +51171 57664 0.4020 +51171 83693 0.4150 +51171 83746 0.4300 +51171 84108 0.4650 +51171 112812 0.5370 +51171 132949 0.4240 +51171 391059 0.5210 +51172 51230 0.4020 +51172 51604 0.4460 +51172 54982 0.4580 +51172 55204 0.4400 +51172 57823 0.4250 +51172 79158 0.9750 +51172 80790 0.5210 +51172 84572 0.9850 +51172 93986 0.4410 +51172 121665 0.4370 +51172 128025 0.5780 +51172 149069 0.4220 +51172 728597 0.4240 +51172 728621 0.4080 +51174 51175 0.8920 +51174 51651 0.4860 +51174 55835 0.5960 +51174 57508 0.4730 +51174 63897 0.4410 +51174 79665 0.4020 +51174 80178 0.6650 +51174 80817 0.5040 +51174 81671 0.4180 +51174 83473 0.4010 +51174 85378 0.7140 +51174 85459 0.4110 +51174 85478 0.4480 +51174 114791 0.5620 +51174 121441 0.4780 +51174 124773 0.4090 +51174 134359 0.4970 +51174 146845 0.4040 +51174 153241 0.4470 +51174 163786 0.5860 +51174 163859 0.4160 +51174 197335 0.4080 +51174 282809 0.4880 +51174 283643 0.4480 +51174 730094 0.4320 +51175 51199 0.7890 +51175 51314 0.4610 +51175 51807 0.5170 +51175 55125 0.5740 +51175 55835 0.5460 +51175 57545 0.5770 +51175 79861 0.5150 +51175 80086 0.5210 +51175 80178 0.8620 +51175 80323 0.4160 +51175 80817 0.4030 +51175 84790 0.5180 +51175 84902 0.4490 +51175 112714 0.5100 +51175 113457 0.5210 +51175 114327 0.4570 +51175 116840 0.5070 +51175 132320 0.4710 +51175 134359 0.5030 +51175 135138 0.4410 +51175 136332 0.4590 +51175 145508 0.5950 +51175 151651 0.4020 +51175 152185 0.4410 +51175 153241 0.5120 +51175 163786 0.7190 +51175 197335 0.6990 +51175 282809 0.4980 +51175 283643 0.7710 +51176 51339 0.5440 +51176 51384 0.5570 +51176 51444 0.5730 +51176 51548 0.5220 +51176 51588 0.4560 +51176 51701 0.9930 +51176 54145 0.5510 +51176 54361 0.6580 +51176 54809 0.5000 +51176 55170 0.5330 +51176 55366 0.4920 +51176 55534 0.5840 +51176 55766 0.5050 +51176 55801 0.4370 +51176 56242 0.4090 +51176 56998 0.5850 +51176 59352 0.4110 +51176 60468 0.6380 +51176 60529 0.5740 +51176 63978 0.4990 +51176 64321 0.9530 +51176 64641 0.4300 +51176 64840 0.4180 +51176 64919 0.5730 +51176 79577 0.5310 +51176 79816 0.4220 +51176 79923 0.8290 +51176 79971 0.4450 +51176 80326 0.6560 +51176 80351 0.5700 +51176 81029 0.5680 +51176 83439 0.6100 +51176 84295 0.4820 +51176 84441 0.5830 +51176 84870 0.4090 +51176 85236 0.5570 +51176 85407 0.5510 +51176 89780 0.8610 +51176 90780 0.9470 +51176 92140 0.5080 +51176 94239 0.5060 +51176 116039 0.4790 +51176 121340 0.4400 +51176 122953 0.4360 +51176 123169 0.5200 +51176 128312 0.5270 +51176 137902 0.4010 +51176 147495 0.4700 +51176 219285 0.5020 +51176 221833 0.4940 +51176 255626 0.5260 +51176 283149 0.8050 +51176 284654 0.4660 +51176 340419 0.4130 +51176 343930 0.5920 +51176 344022 0.4400 +51176 387332 0.4990 +51176 387893 0.6180 +51176 431707 0.5290 +51176 440093 0.4050 +51176 440686 0.4060 +51176 441478 0.6320 +51176 474382 0.5230 +51176 653604 0.6900 +51177 55604 0.5930 +51177 57154 0.9410 +51177 92241 0.4230 +51179 51268 0.5310 +51179 51635 0.4700 +51179 51725 0.4680 +51179 51733 0.5010 +51179 54363 0.9290 +51179 54511 0.4580 +51179 54988 0.5410 +51179 55748 0.4620 +51179 55825 0.4950 +51179 55833 0.4860 +51179 56965 0.5480 +51179 57107 0.4680 +51179 58510 0.4360 +51179 64577 0.4900 +51179 64902 0.9000 +51179 79668 0.5480 +51179 79893 0.6260 +51179 79947 0.5840 +51179 83594 0.4810 +51179 84263 0.4950 +51179 84264 0.4260 +51179 84693 0.5430 +51179 84842 0.4410 +51179 112817 0.9220 +51179 116150 0.5840 +51179 116255 0.4390 +51179 123688 0.4480 +51179 123876 0.4360 +51179 153364 0.4070 +51179 197257 0.6080 +51179 219743 0.5450 +51179 254042 0.4230 +51179 283871 0.9340 +51179 284541 0.4190 +51179 348093 0.4600 +51179 348158 0.4950 +51181 55508 0.4140 +51181 55572 0.4160 +51181 55608 0.4410 +51181 57016 0.9320 +51181 64782 0.4110 +51181 79583 0.4050 +51181 84895 0.4220 +51181 84955 0.6210 +51181 90673 0.4920 +51181 120526 0.4080 +51181 154214 0.4120 +51182 51314 0.4300 +51182 51389 0.5570 +51182 51501 0.5980 +51182 51726 0.7010 +51182 53371 0.5080 +51182 54431 0.5790 +51182 54788 0.7230 +51182 55192 0.4510 +51182 55466 0.7310 +51182 55706 0.4640 +51182 55735 0.4760 +51182 55746 0.4610 +51182 55920 0.4600 +51182 56990 0.4220 +51182 57122 0.5280 +51182 64215 0.4550 +51182 64374 0.4130 +51182 79023 0.5350 +51182 79902 0.4600 +51182 79962 0.5450 +51182 79982 0.5820 +51182 80097 0.4650 +51182 80273 0.6960 +51182 80331 0.8360 +51182 81570 0.7180 +51182 81929 0.4470 +51182 83752 0.4030 +51182 85479 0.6980 +51182 94086 0.4290 +51182 96459 0.4200 +51182 113444 0.4370 +51182 116835 0.8030 +51182 120526 0.5160 +51182 129401 0.4920 +51182 134266 0.6080 +51182 136332 0.4400 +51182 140432 0.4200 +51182 150274 0.6260 +51182 150353 0.6510 +51182 150372 0.5480 +51182 165721 0.6750 +51182 171425 0.4200 +51182 202052 0.6600 +51182 259217 0.8210 +51182 285126 0.5770 +51182 285282 0.4280 +51182 348995 0.5950 +51182 374407 0.6590 +51182 548645 0.4780 +51182 552891 0.4200 +51182 100101267 0.4510 +51184 51434 0.5200 +51184 51699 0.4570 +51184 51728 0.7950 +51184 54606 0.4280 +51184 54707 0.7090 +51184 54942 0.5400 +51184 55011 0.8820 +51184 55090 0.4440 +51184 55197 0.6810 +51184 55703 0.8700 +51184 55718 0.8120 +51184 55726 0.4060 +51184 57521 0.4040 +51184 58490 0.8070 +51184 64425 0.4980 +51184 65083 0.7240 +51184 79023 0.5180 +51184 79657 0.7190 +51184 79871 0.9550 +51184 81488 0.8140 +51184 83548 0.6780 +51184 84138 0.6670 +51184 84172 0.7450 +51184 84950 0.6880 +51184 116143 0.4680 +51184 140459 0.4760 +51184 147808 0.4510 +51184 158747 0.6170 +51184 160760 0.4410 +51184 161424 0.6010 +51184 171568 0.6970 +51184 347735 0.4480 +51185 51377 0.4690 +51185 51514 0.9230 +51185 51566 0.4150 +51185 51710 0.6770 +51185 54461 0.9030 +51185 54855 0.4340 +51185 54862 0.8020 +51185 54876 0.9560 +51185 55070 0.9650 +51185 55148 0.4780 +51185 55626 0.9000 +51185 55657 0.7120 +51185 55827 0.9250 +51185 55905 0.5410 +51185 56957 0.4080 +51185 57167 0.8940 +51185 57488 0.4150 +51185 57633 0.4200 +51185 57823 0.4410 +51185 64326 0.9010 +51185 64412 0.4310 +51185 64708 0.4460 +51185 64946 0.4260 +51185 65980 0.4890 +51185 79016 0.9380 +51185 79269 0.9170 +51185 80067 0.9000 +51185 80344 0.9220 +51185 80818 0.6610 +51185 80829 0.9880 +51185 81620 0.6360 +51185 83752 0.8560 +51185 84955 0.6190 +51185 90379 0.9650 +51185 115560 0.6610 +51185 115950 0.6250 +51185 115992 0.4070 +51185 135398 0.4580 +51185 138009 0.5540 +51185 139170 0.5570 +51185 139425 0.5820 +51185 148266 0.6660 +51185 152485 0.4670 +51185 253461 0.5070 +51185 284390 0.6640 +51185 285429 0.5540 +51185 340578 0.5570 +51185 347442 0.5820 +51185 644815 0.6020 +51186 51309 0.4060 +51186 54994 0.4220 +51186 55859 0.5060 +51186 64795 0.7760 +51186 84707 0.5060 +51186 85012 0.4610 +51186 90843 0.5330 +51186 150678 0.5170 +51186 158931 0.6200 +51186 340543 0.5440 +51187 51202 0.7810 +51187 51236 0.6910 +51187 51319 0.6840 +51187 51388 0.9970 +51187 51389 0.4340 +51187 51490 0.4010 +51187 51575 0.8550 +51187 51602 0.9100 +51187 51611 0.4540 +51187 54433 0.4250 +51187 54463 0.7810 +51187 54475 0.9570 +51187 54517 0.4010 +51187 54543 0.4380 +51187 54552 0.9670 +51187 54555 0.5750 +51187 54606 0.8880 +51187 54663 0.9930 +51187 54865 0.4080 +51187 54881 0.6610 +51187 54888 0.6340 +51187 54948 0.5830 +51187 54984 0.5940 +51187 55003 0.9750 +51187 55006 0.6600 +51187 55027 0.5100 +51187 55127 0.7420 +51187 55131 0.8290 +51187 55153 0.9640 +51187 55173 0.5270 +51187 55226 0.6790 +51187 55272 0.9270 +51187 55299 0.9950 +51187 55316 0.5330 +51187 55319 0.9470 +51187 55341 0.9560 +51187 55505 0.4970 +51187 55591 0.6600 +51187 55646 0.7510 +51187 55651 0.9330 +51187 55695 0.6270 +51187 55720 0.8110 +51187 55759 0.9980 +51187 55760 0.6560 +51187 55781 0.6990 +51187 55794 0.7180 +51187 55813 0.7000 +51187 55854 0.5050 +51187 56204 0.5440 +51187 56342 0.8840 +51187 56647 0.4280 +51187 56902 0.8030 +51187 57050 0.8640 +51187 57062 0.7100 +51187 57109 0.7020 +51187 57418 0.8880 +51187 57647 0.4120 +51187 57696 0.9490 +51187 60487 0.6020 +51187 63899 0.6260 +51187 63931 0.5190 +51187 64118 0.4970 +51187 64216 0.7780 +51187 64318 0.9660 +51187 64374 0.5820 +51187 64425 0.6160 +51187 64794 0.6540 +51187 64960 0.5460 +51187 64963 0.6590 +51187 64969 0.5700 +51187 65003 0.5420 +51187 65008 0.8470 +51187 65083 0.4090 +51187 65121 0.4470 +51187 65122 0.4470 +51187 79009 0.6310 +51187 79029 0.6850 +51187 79039 0.7630 +51187 79050 0.6910 +51187 79137 0.6680 +51187 79159 0.8540 +51187 79571 0.7400 +51187 79590 0.8810 +51187 79631 0.6270 +51187 79707 0.4060 +51187 79730 0.6240 +51187 79752 0.4340 +51187 79954 0.8390 +51187 80135 0.9910 +51187 83475 0.6100 +51187 83479 0.4950 +51187 83732 0.4730 +51187 83743 0.8610 +51187 84128 0.7310 +51187 84135 0.4380 +51187 84154 0.9990 +51187 84172 0.6200 +51187 84273 0.7050 +51187 84294 0.8350 +51187 84298 0.8680 +51187 84319 0.6260 +51187 84340 0.4030 +51187 84364 0.4640 +51187 84365 0.9970 +51187 84549 0.9970 +51187 84916 0.8340 +51187 84946 0.9250 +51187 88745 0.6850 +51187 90121 0.8510 +51187 90441 0.8420 +51187 91646 0.4920 +51187 92170 0.6950 +51187 92255 0.4500 +51187 92856 0.8810 +51187 94101 0.4320 +51187 114987 0.5020 +51187 115708 0.7990 +51187 116832 0.8760 +51187 116966 0.7090 +51187 117246 0.9950 +51187 124454 0.6190 +51187 126402 0.5540 +51187 134218 0.6230 +51187 140032 0.5090 +51187 140801 0.8980 +51187 142940 0.4420 +51187 146212 0.8910 +51187 153443 0.7450 +51187 161424 0.5450 +51187 162427 0.6660 +51187 165545 0.6530 +51187 166378 0.6950 +51187 170622 0.4040 +51187 200916 0.8960 +51187 221078 0.9590 +51187 221830 0.8560 +51187 254268 0.8540 +51187 285855 0.9720 +51187 317781 0.5030 +51187 343068 0.4470 +51187 343070 0.4470 +51187 344758 0.4920 +51187 345630 0.4430 +51187 347487 0.6220 +51187 387129 0.9430 +51187 387338 0.6270 +51187 390999 0.4470 +51187 391002 0.4470 +51187 400735 0.4470 +51187 400736 0.4470 +51187 440560 0.4470 +51187 440561 0.4470 +51187 441873 0.4470 +51187 645051 0.5030 +51187 645073 0.5030 +51187 645359 0.4470 +51187 653619 0.4470 +51187 692312 0.7910 +51187 729396 0.5030 +51187 729422 0.5030 +51187 729428 0.5030 +51187 729431 0.5030 +51187 729442 0.5030 +51187 729447 0.5030 +51187 729528 0.4470 +51187 100008586 0.5030 +51187 100132399 0.5030 +51187 100287482 0.4650 +51187 100505478 0.9220 +51187 100526842 0.8690 +51187 100529097 0.8150 +51187 100529239 0.5370 +51187 100885848 0.4370 +51187 101929983 0.4470 +51187 102157402 0.4150 +51187 102724473 0.5030 +51188 51258 0.4550 +51188 51490 0.4200 +51188 54856 0.6180 +51188 55249 0.6250 +51188 55321 0.4180 +51188 57492 0.5320 +51188 57585 0.7010 +51188 65980 0.6040 +51188 79230 0.4160 +51188 80342 0.4020 +51188 84317 0.4560 +51188 548313 0.7500 +51188 727837 0.7500 +51191 51491 0.4200 +51191 54625 0.6180 +51191 54739 0.8620 +51191 54809 0.6470 +51191 55008 0.7980 +51191 55337 0.5030 +51191 55601 0.8740 +51191 56829 0.4670 +51191 57591 0.5440 +51191 57674 0.4520 +51191 64108 0.7330 +51191 64135 0.9250 +51191 64332 0.4630 +51191 64761 0.6460 +51191 64783 0.5760 +51191 79132 0.7130 +51191 80119 0.4770 +51191 81554 0.4470 +51191 83666 0.6600 +51191 84992 0.4050 +51191 85363 0.4610 +51191 85441 0.6110 +51191 91543 0.9230 +51191 91607 0.4320 +51191 94240 0.8640 +51191 115361 0.5250 +51191 115362 0.4740 +51191 129607 0.6980 +51191 150350 0.4500 +51191 161882 0.4400 +51191 219285 0.6480 +51192 54918 0.9610 +51192 91663 0.4570 +51192 112616 0.9640 +51192 113540 0.4400 +51192 116173 0.9450 +51192 123920 0.9680 +51192 146223 0.9630 +51192 146225 0.9700 +51192 152189 0.9390 +51193 54859 0.6690 +51193 57621 0.8060 +51193 79634 0.4190 +51193 85509 0.4880 +51194 53371 0.4380 +51194 55689 0.4410 +51194 55705 0.5330 +51194 55746 0.4190 +51194 57510 0.5070 +51194 64328 0.6570 +51194 64376 0.4350 +51194 64901 0.5050 +51194 79711 0.7600 +51194 81490 0.4270 +51194 84812 0.4300 +51194 89894 0.4690 +51194 402569 0.4320 +51194 100130733 0.8470 +51195 51196 0.4160 +51195 55007 0.4230 +51195 79701 0.5600 +51195 79929 0.4430 +51195 84900 0.4210 +51195 84947 0.4720 +51195 91750 0.4460 +51195 114787 0.4480 +51195 147179 0.4780 +51195 155185 0.4440 +51196 51761 0.4050 +51196 51763 0.7550 +51196 54928 0.6530 +51196 55300 0.6640 +51196 55361 0.6640 +51196 55613 0.6540 +51196 56623 0.6600 +51196 57107 0.5710 +51196 57569 0.4490 +51196 64318 0.6020 +51196 64419 0.6540 +51196 64423 0.9200 +51196 79837 0.7370 +51196 79934 0.5710 +51196 80271 0.6650 +51196 83478 0.4490 +51196 84812 0.6860 +51196 84942 0.4330 +51196 89869 0.6660 +51196 113026 0.6880 +51196 113278 0.8550 +51196 138429 0.7570 +51196 139189 0.6960 +51196 148304 0.4010 +51196 159371 0.4900 +51196 160851 0.7940 +51196 200576 0.9000 +51196 222643 0.5160 +51196 253430 0.9140 +51199 51361 0.6790 +51199 51637 0.9310 +51199 54801 0.5320 +51199 54820 0.4680 +51199 54875 0.8980 +51199 55125 0.7810 +51199 55140 0.5090 +51199 55722 0.4850 +51199 55755 0.6260 +51199 55835 0.6260 +51199 55857 0.4130 +51199 57545 0.6730 +51199 57662 0.6060 +51199 79000 0.4550 +51199 79598 0.5640 +51199 79902 0.7210 +51199 79959 0.4690 +51199 80184 0.7840 +51199 80323 0.9790 +51199 81565 0.5070 +51199 84376 0.7760 +51199 84902 0.8220 +51199 84984 0.4200 +51199 85302 0.8070 +51199 90060 0.9570 +51199 92558 0.6380 +51199 116840 0.8940 +51199 117178 0.5050 +51199 117286 0.4520 +51199 121441 0.7030 +51199 132320 0.8530 +51199 134359 0.5440 +51199 145508 0.9570 +51199 146057 0.4410 +51199 147179 0.5060 +51199 152185 0.5640 +51199 153241 0.6500 +51199 163786 0.7170 +51199 167691 0.6370 +51199 200894 0.5870 +51199 261734 0.5400 +51199 729440 0.7630 +51200 56925 0.9960 +51200 63036 0.5980 +51200 64499 0.6630 +51200 114960 0.5900 +51200 117194 0.4690 +51201 51304 0.5960 +51201 54503 0.4600 +51201 55213 0.4050 +51201 56675 0.4340 +51201 57509 0.4020 +51201 79844 0.6080 +51201 81926 0.4410 +51201 89970 0.4770 +51201 92591 0.4550 +51201 131601 0.4010 +51201 253832 0.4260 +51201 340481 0.4130 +51201 401036 0.4780 +51202 51340 0.4280 +51202 51388 0.7730 +51202 51428 0.4450 +51202 51491 0.4370 +51202 51575 0.9910 +51202 51602 0.8820 +51202 51605 0.6130 +51202 54433 0.6420 +51202 54512 0.6320 +51202 54552 0.7810 +51202 54555 0.9150 +51202 54606 0.8730 +51202 54663 0.8920 +51202 54865 0.5430 +51202 54881 0.8060 +51202 54888 0.4660 +51202 54984 0.7990 +51202 55003 0.4940 +51202 55006 0.4330 +51202 55035 0.5800 +51202 55127 0.8620 +51202 55131 0.8130 +51202 55140 0.4220 +51202 55153 0.5920 +51202 55226 0.7580 +51202 55272 0.5060 +51202 55299 0.8500 +51202 55341 0.5130 +51202 55601 0.4020 +51202 55622 0.4050 +51202 55646 0.4630 +51202 55651 0.7000 +51202 55703 0.4340 +51202 55720 0.8520 +51202 55759 0.9400 +51202 55760 0.4730 +51202 55781 0.5950 +51202 55813 0.6770 +51202 56342 0.6500 +51202 56647 0.4600 +51202 56902 0.6470 +51202 56915 0.5610 +51202 56919 0.5480 +51202 56931 0.4270 +51202 57050 0.9960 +51202 57062 0.7560 +51202 57109 0.6370 +51202 57136 0.4860 +51202 57418 0.8470 +51202 57647 0.9390 +51202 57696 0.8820 +51202 58517 0.4420 +51202 60487 0.4200 +51202 60625 0.4670 +51202 64216 0.4670 +51202 64318 0.7960 +51202 64425 0.4110 +51202 64434 0.4400 +51202 64794 0.7670 +51202 65083 0.8050 +51202 65095 0.5810 +51202 79009 0.4930 +51202 79039 0.7950 +51202 79050 0.8790 +51202 79159 0.5270 +51202 79571 0.6080 +51202 79665 0.4510 +51202 79707 0.6420 +51202 79954 0.7090 +51202 80135 0.6750 +51202 81887 0.6540 +51202 83732 0.4190 +51202 83743 0.8970 +51202 84128 0.7970 +51202 84135 0.6950 +51202 84154 0.8570 +51202 84294 0.4140 +51202 84365 0.8800 +51202 84549 0.7290 +51202 84916 0.8410 +51202 84946 0.5900 +51202 85441 0.4970 +51202 87178 0.5020 +51202 88745 0.7800 +51202 90121 0.4090 +51202 90353 0.4790 +51202 90957 0.4010 +51202 92856 0.7580 +51202 115708 0.6330 +51202 117246 0.9210 +51202 118460 0.6090 +51202 142940 0.4460 +51202 146212 0.4230 +51202 155368 0.4190 +51202 161424 0.5390 +51202 165545 0.4370 +51202 170506 0.5520 +51202 221078 0.6700 +51202 221830 0.7010 +51202 254394 0.5490 +51202 285855 0.6130 +51202 345630 0.4810 +51202 387129 0.5910 +51202 692312 0.6450 +51202 100287932 0.4710 +51203 51343 0.4010 +51203 51512 0.6820 +51203 51514 0.8340 +51203 51659 0.6610 +51203 54069 0.4710 +51203 54443 0.7120 +51203 54478 0.6470 +51203 54801 0.4150 +51203 54821 0.5480 +51203 54892 0.6730 +51203 55010 0.5490 +51203 55055 0.6440 +51203 55143 0.9490 +51203 55165 0.9300 +51203 55215 0.8400 +51203 55247 0.5340 +51203 55320 0.4120 +51203 55355 0.9260 +51203 55388 0.6940 +51203 55632 0.4490 +51203 55635 0.7110 +51203 55723 0.7390 +51203 55789 0.6470 +51203 55839 0.7360 +51203 56992 0.9260 +51203 57082 0.6720 +51203 57405 0.6620 +51203 63967 0.4520 +51203 64105 0.6180 +51203 64151 0.9310 +51203 79019 0.8500 +51203 79075 0.4450 +51203 79682 0.6980 +51203 79733 0.6300 +51203 79801 0.7140 +51203 81610 0.5250 +51203 81620 0.7300 +51203 81624 0.4610 +51203 81930 0.7130 +51203 83461 0.9050 +51203 83540 0.9110 +51203 83879 0.5530 +51203 84057 0.5900 +51203 84722 0.4040 +51203 90355 0.4220 +51203 90381 0.4290 +51203 90417 0.5520 +51203 113130 0.8320 +51203 116028 0.4030 +51203 128239 0.5120 +51203 146909 0.5940 +51203 147841 0.4630 +51203 150468 0.7490 +51203 151246 0.4140 +51203 151648 0.8010 +51203 157313 0.6800 +51203 157570 0.6280 +51203 166979 0.4340 +51203 220134 0.7380 +51203 221150 0.6080 +51203 259266 0.9400 +51203 283431 0.4660 +51203 387103 0.5070 +51203 729533 0.4110 +51204 51264 0.4230 +51204 51601 0.4070 +51204 51805 0.4990 +51204 54205 0.4690 +51204 54516 0.6090 +51204 54555 0.4310 +51204 54948 0.5020 +51204 54968 0.4080 +51204 55005 0.4680 +51204 55037 0.5280 +51204 55052 0.5540 +51204 55157 0.7770 +51204 55178 0.6470 +51204 55245 0.4600 +51204 55276 0.6050 +51204 55278 0.5840 +51204 55572 0.5920 +51204 55687 0.5000 +51204 55744 0.4090 +51204 55794 0.5350 +51204 56945 0.5150 +51204 57017 0.4030 +51204 57038 0.4970 +51204 57505 0.5060 +51204 57508 0.4030 +51204 60528 0.4490 +51204 60558 0.4230 +51204 63875 0.4450 +51204 64983 0.6110 +51204 65220 0.4080 +51204 65260 0.4950 +51204 65993 0.5390 +51204 79133 0.6090 +51204 79587 0.4800 +51204 79675 0.4730 +51204 79922 0.4510 +51204 80222 0.4360 +51204 80324 0.5730 +51204 81892 0.6100 +51204 84311 0.4440 +51204 84340 0.5820 +51204 84987 0.6840 +51204 85476 0.5750 +51204 90639 0.4410 +51204 91574 0.6290 +51204 91942 0.6090 +51204 92399 0.4190 +51204 115416 0.4520 +51204 116228 0.4490 +51204 116540 0.4150 +51204 118487 0.4380 +51204 118490 0.6770 +51204 118672 0.4250 +51204 123263 0.4380 +51204 124454 0.4360 +51204 127428 0.4680 +51204 137682 0.6650 +51204 150274 0.4210 +51204 219402 0.6430 +51204 283209 0.6040 +51204 285148 0.4850 +51204 285521 0.5550 +51204 374291 0.6730 +51204 388753 0.4070 +51204 493753 0.5190 +51204 644096 0.4520 +51204 100131801 0.6280 +51204 100303755 0.4510 +51205 51463 0.7260 +51205 54768 0.4240 +51205 200030 0.7040 +51205 284615 0.4610 +51205 390928 0.5410 +51205 653519 0.6390 +51206 51266 0.8940 +51206 51806 0.7070 +51206 64805 0.8560 +51206 80195 0.4060 +51206 80739 0.8650 +51206 81027 0.4010 +51206 83660 0.5400 +51206 83700 0.5200 +51206 91860 0.7030 +51206 131873 0.9110 +51206 146850 0.5100 +51206 163688 0.7030 +51206 284415 0.4020 +51206 340205 0.8810 +51206 375033 0.6790 +51206 377841 0.6300 +51206 653361 0.4350 +51207 84135 0.4880 +51207 113444 0.4100 +51207 131375 0.4040 +51207 142891 0.4520 +51208 53842 0.6800 +51208 56287 0.4070 +51208 56288 0.6600 +51208 83998 0.5210 +51208 90952 0.6730 +51208 117145 0.4540 +51208 117156 0.4980 +51208 137075 0.7510 +51208 149461 0.7410 +51208 151613 0.4040 +51208 153562 0.4140 +51208 200504 0.5140 +51208 340547 0.4860 +51208 644672 0.6940 +51208 653509 0.5720 +51208 729238 0.4250 +51208 100132463 0.6780 +51208 100288814 0.7850 +51208 100506658 0.8320 +51209 51542 0.5320 +51209 51622 0.6420 +51209 51699 0.4120 +51209 55275 0.6050 +51209 55737 0.5500 +51209 55823 0.8910 +51209 56850 0.6020 +51209 57617 0.8930 +51209 63908 0.6570 +51209 64601 0.8910 +51209 65082 0.8090 +51209 65979 0.4650 +51209 79961 0.6220 +51209 84315 0.5310 +51209 129049 0.6220 +51209 143187 0.6450 +51209 163259 0.6290 +51209 170692 0.4740 +51209 221960 0.6410 +51213 51438 0.4500 +51213 51585 0.5450 +51213 53371 0.4180 +51213 54502 0.4470 +51213 54967 0.4010 +51213 55110 0.4990 +51213 55175 0.5810 +51213 56853 0.4410 +51213 57122 0.4180 +51213 57187 0.7200 +51213 64693 0.4250 +51213 65109 0.6490 +51213 79023 0.4030 +51213 79228 0.5700 +51213 79366 0.4150 +51213 79869 0.5080 +51213 80145 0.5730 +51213 84248 0.7630 +51213 84271 0.6640 +51213 84321 0.5650 +51213 84324 0.6600 +51213 90737 0.4610 +51213 124912 0.5520 +51213 139135 0.4050 +51213 154197 0.4790 +51213 548313 0.5870 +51213 727837 0.5150 +51213 728343 0.4070 +51213 100101267 0.4270 +51218 51312 0.6760 +51218 51327 0.4290 +51218 51629 0.6270 +51218 51647 0.4020 +51218 51759 0.4360 +51218 54855 0.4840 +51218 54977 0.9430 +51218 55437 0.6520 +51218 57019 0.6230 +51218 57128 0.8630 +51218 64210 0.4210 +51218 64428 0.4800 +51218 79706 0.4290 +51218 80224 0.6090 +51218 80273 0.5930 +51218 80324 0.5670 +51218 81689 0.9590 +51218 81894 0.4520 +51218 84932 0.4750 +51218 90701 0.4220 +51218 112812 0.8610 +51218 119559 0.4270 +51218 122961 0.9710 +51218 140775 0.4270 +51218 150274 0.9440 +51218 200205 0.8120 +51218 257202 0.5720 +51218 387787 0.4530 +51218 388962 0.9960 +51218 493869 0.5660 +51218 552900 0.9050 +51218 654483 0.8790 +51222 53615 0.7460 +51222 54815 0.8430 +51222 57459 0.8300 +51222 57504 0.7880 +51222 57621 0.7120 +51222 79366 0.7500 +51222 84913 0.4090 +51222 85509 0.8360 +51222 125997 0.5260 +51222 192666 0.4620 +51222 222389 0.5970 +51224 51497 0.4990 +51224 51755 0.4990 +51224 54623 0.4990 +51224 55215 0.5020 +51224 55662 0.4930 +51224 55677 0.6910 +51224 55840 0.6390 +51224 57455 0.6940 +51224 57654 0.4290 +51224 79577 0.7610 +51224 79664 0.4660 +51224 80237 0.4100 +51224 80349 0.8000 +51224 84925 0.4670 +51224 85403 0.6500 +51224 123169 0.7670 +51224 140801 0.4310 +51224 200916 0.4540 +51224 285855 0.4390 +51224 387129 0.4060 +51224 388963 0.4470 +51224 404672 0.5260 +51224 645811 0.4320 +51224 647087 0.4140 +51224 100170841 0.6110 +51224 100526842 0.4390 +51225 51466 0.5170 +51225 54209 0.6500 +51225 54849 0.4150 +51225 55740 0.4210 +51225 55845 0.9650 +51225 64231 0.5270 +51225 79690 0.5140 +51225 79746 0.4410 +51225 126364 0.4590 +51225 146547 0.4720 +51225 388325 0.4900 +51226 51272 0.6030 +51226 51450 0.4510 +51226 51594 0.5240 +51226 53407 0.4990 +51226 54732 0.5470 +51226 54814 0.4360 +51226 55093 0.5730 +51226 55352 0.5030 +51226 55738 0.5010 +51226 55850 0.5010 +51226 57410 0.9050 +51226 60561 0.5050 +51226 60681 0.4650 +51226 63908 0.4990 +51226 80305 0.4990 +51226 81876 0.6110 +51226 84304 0.5250 +51226 84364 0.6860 +51226 84913 0.4620 +51226 114960 0.5600 +51226 120071 0.4730 +51226 145567 0.4670 +51226 146456 0.4910 +51226 200008 0.4110 +51226 205428 0.9000 +51226 389136 0.4380 +51227 51604 0.7440 +51227 53820 0.4510 +51227 54344 0.6380 +51227 54872 0.7210 +51227 55650 0.7800 +51227 64801 0.4500 +51227 65258 0.4070 +51227 79087 0.4440 +51227 80055 0.6210 +51227 80235 0.6250 +51227 84266 0.4170 +51227 84720 0.7770 +51227 84992 0.9990 +51227 90459 0.5910 +51227 93183 0.7460 +51227 93210 0.5180 +51227 94005 0.4830 +51227 128869 0.4610 +51227 140700 0.4490 +51227 284098 0.7140 +51227 100996939 0.8810 +51228 55004 0.4440 +51228 59341 0.4290 +51228 64781 0.4240 +51228 65977 0.9020 +51228 79058 0.5840 +51228 80772 0.7110 +51228 88455 0.4210 +51228 92799 0.6070 +51228 116173 0.5430 +51228 144347 0.4190 +51228 326625 0.4220 +51228 388323 0.5880 +51228 389541 0.4260 +51230 51412 0.5720 +51230 51535 0.4350 +51230 51710 0.6540 +51230 51720 0.4580 +51230 51773 0.4830 +51230 54107 0.4100 +51230 54556 0.7880 +51230 54737 0.4530 +51230 54764 0.5640 +51230 54799 0.7590 +51230 54881 0.9060 +51230 54934 0.9980 +51230 55072 0.6690 +51230 55167 0.7950 +51230 55257 0.7520 +51230 55666 0.9270 +51230 55683 0.9980 +51230 55689 0.6790 +51230 55869 0.4120 +51230 55929 0.7330 +51230 56950 0.4130 +51230 57446 0.4090 +51230 57634 0.7990 +51230 57680 0.9190 +51230 64426 0.7700 +51230 64769 0.7340 +51230 79718 0.4800 +51230 80314 0.7410 +51230 80818 0.6510 +51230 81858 0.5820 +51230 81887 0.9090 +51230 84083 0.5300 +51230 84148 0.9920 +51230 84661 0.6020 +51230 90268 0.4830 +51230 90665 0.4880 +51230 93081 0.4030 +51230 115560 0.6510 +51230 124944 0.9000 +51230 125476 0.9030 +51230 148266 0.6510 +51230 151050 0.5880 +51230 221302 0.4180 +51230 257397 0.8000 +51230 284058 0.9990 +51230 284390 0.6510 +51230 339287 0.7880 +51230 345651 0.5630 +51230 440093 0.5450 +51230 440686 0.5450 +51230 653604 0.5450 +51230 100529209 0.5400 +51231 55781 0.4640 +51231 81567 0.4320 +51231 83931 0.4030 +51231 84946 0.5860 +51231 92335 0.5030 +51231 140836 0.5870 +51231 147807 0.4760 +51231 222584 0.4180 +51231 285268 0.4380 +51231 286077 0.4060 +51232 51421 0.4100 +51232 56920 0.4470 +51232 57146 0.4420 +51232 94234 0.4670 +51233 83606 0.4770 +51233 123346 0.5350 +51233 126520 0.4230 +51233 138255 0.4480 +51233 146556 0.4900 +51233 150248 0.6040 +51233 150297 0.5070 +51233 202374 0.4140 +51233 266747 0.5540 +51233 285346 0.4140 +51233 348487 0.4810 +51233 388886 0.6220 +51233 643836 0.4390 +51233 729233 0.5070 +51233 729240 0.6650 +51233 100037417 0.4160 +51234 55611 0.4750 +51234 55831 0.9990 +51234 55967 0.4120 +51234 56851 0.9990 +51234 56926 0.4260 +51234 79709 0.4050 +51234 83460 0.9990 +51234 84316 0.4040 +51234 93380 0.9990 +51234 161142 0.4320 +51234 284361 0.9990 +51234 390064 0.4050 +51236 51504 0.4710 +51236 51575 0.4420 +51236 54475 0.4760 +51236 54512 0.4270 +51236 54552 0.4400 +51236 54555 0.4360 +51236 54606 0.5730 +51236 55003 0.4040 +51236 55006 0.5530 +51236 55010 0.4390 +51236 55027 0.5050 +51236 55131 0.6400 +51236 55140 0.4050 +51236 55153 0.5830 +51236 55226 0.5580 +51236 55299 0.5510 +51236 55646 0.4490 +51236 55695 0.4400 +51236 55732 0.4980 +51236 55759 0.4050 +51236 55813 0.4040 +51236 56342 0.4570 +51236 57062 0.4330 +51236 57109 0.4270 +51236 60487 0.6160 +51236 64118 0.4230 +51236 64216 0.4050 +51236 64425 0.4800 +51236 65083 0.4090 +51236 79039 0.4490 +51236 79050 0.4090 +51236 79803 0.4480 +51236 79902 0.4250 +51236 79954 0.4040 +51236 80135 0.5400 +51236 83743 0.7080 +51236 84154 0.8130 +51236 84294 0.4050 +51236 84365 0.6010 +51236 84549 0.6760 +51236 84916 0.5230 +51236 84934 0.4540 +51236 90121 0.5990 +51236 91893 0.4450 +51236 92856 0.6300 +51236 115708 0.7340 +51236 116966 0.6010 +51236 117246 0.4440 +51236 155368 0.4430 +51236 161424 0.4290 +51236 196483 0.4430 +51236 221078 0.4400 +51236 221830 0.6010 +51236 286262 0.4420 +51236 399818 0.4190 +51236 692312 0.4200 +51237 51303 0.4690 +51237 51726 0.4060 +51237 54205 0.4260 +51237 54431 0.7240 +51237 54900 0.6110 +51237 55958 0.4200 +51237 81567 0.5390 +51237 81618 0.4750 +51237 83416 0.6080 +51237 83417 0.4840 +51237 83648 0.5400 +51237 84824 0.5290 +51237 90293 0.4020 +51237 91319 0.8510 +51237 202051 0.4690 +51237 100423062 0.6820 +51239 51252 0.5900 +51239 51343 0.5700 +51239 51433 0.5520 +51239 51434 0.5500 +51239 51529 0.5660 +51239 51665 0.4550 +51239 51720 0.5910 +51239 54880 0.5400 +51239 55608 0.4260 +51239 57332 0.5400 +51239 57730 0.6710 +51239 64682 0.5480 +51239 79184 0.5730 +51239 79754 0.5120 +51239 80012 0.5400 +51239 81562 0.4630 +51239 84108 0.5410 +51239 84142 0.5400 +51239 84333 0.5400 +51239 84733 0.5400 +51239 84759 0.5520 +51239 84804 0.4410 +51239 84874 0.4780 +51239 90342 0.5040 +51239 91074 0.4750 +51239 92291 0.4210 +51239 92591 0.4200 +51239 93973 0.4010 +51239 115290 0.4200 +51239 118932 0.4060 +51239 119504 0.5400 +51239 125875 0.4360 +51239 140456 0.4510 +51239 140458 0.4700 +51239 140459 0.5490 +51239 140462 0.5090 +51239 142689 0.4590 +51239 147015 0.4760 +51239 150771 0.5550 +51239 151313 0.6220 +51239 166979 0.5700 +51239 200539 0.7730 +51239 220004 0.4140 +51239 246184 0.5520 +51239 284611 0.4990 +51239 374860 0.5070 +51239 431705 0.4380 +51239 728568 0.4780 +51241 51522 0.4760 +51241 51650 0.4770 +51241 54205 0.5140 +51241 55278 0.4590 +51241 55744 0.5820 +51241 79073 0.8040 +51241 80775 0.5710 +51241 81892 0.5080 +51241 84987 0.6470 +51241 90639 0.5490 +51241 116228 0.6600 +51241 122704 0.4170 +51241 152100 0.5730 +51241 285521 0.7450 +51241 388753 0.7740 +51241 389203 0.4420 +51241 100131801 0.6560 +51241 100303755 0.5810 +51244 51277 0.4330 +51244 51340 0.4150 +51244 54851 0.4610 +51244 55051 0.6980 +51244 57538 0.5220 +51244 64434 0.5170 +51244 79706 0.5120 +51244 91603 0.7940 +51244 127391 0.4790 +51246 55367 0.5400 +51246 56975 0.5030 +51246 64065 0.4380 +51246 644070 0.4180 +51247 51366 0.8100 +51247 80336 0.5540 +51247 113251 0.5550 +51247 132430 0.4590 +51247 140886 0.7370 +51247 149041 0.4800 +51247 202051 0.4480 +51247 202052 0.4030 +51247 283373 0.6700 +51247 340529 0.4520 +51248 54477 0.7770 +51248 55841 0.4240 +51248 56935 0.4360 +51248 57560 0.4190 +51248 57664 0.4970 +51248 81618 0.4650 +51248 83447 0.7430 +51248 84134 0.5500 +51248 84952 0.4940 +51248 116254 0.4200 +51248 117159 0.5400 +51248 126353 0.4460 +51248 144100 0.9330 +51248 340348 0.9580 +51249 54802 0.4150 +51249 55222 0.4650 +51249 55825 0.5240 +51249 57226 0.4150 +51249 60313 0.7460 +51249 64925 0.4440 +51249 84164 0.4550 +51249 84872 0.6000 +51249 112399 0.6090 +51249 114905 0.5300 +51249 117195 0.4640 +51249 126661 0.4550 +51249 152185 0.4300 +51249 284451 0.4150 +51249 339230 0.6520 +51249 643866 0.5810 +51249 728276 0.5490 +51249 728489 0.4790 +51250 51253 0.8100 +51250 51258 0.8330 +51250 51263 0.8220 +51250 51264 0.8210 +51250 51318 0.8300 +51250 51642 0.8130 +51250 54148 0.8510 +51250 54516 0.4620 +51250 54534 0.8310 +51250 54931 0.4040 +51250 54948 0.8630 +51250 55052 0.8120 +51250 55168 0.8220 +51250 55178 0.4570 +51250 55278 0.6600 +51250 57107 0.4120 +51250 57129 0.8130 +51250 63875 0.8120 +51250 64755 0.4610 +51250 64928 0.8270 +51250 64975 0.8120 +51250 64976 0.8570 +51250 64978 0.8200 +51250 64981 0.8140 +51250 64983 0.8380 +51250 65003 0.8280 +51250 65005 0.8540 +51250 65008 0.4100 +51250 65080 0.8290 +51250 78988 0.8680 +51250 79590 0.8330 +51250 79736 0.5570 +51250 81892 0.4970 +51250 84311 0.8160 +51250 84545 0.8110 +51250 84816 0.5910 +51250 84881 0.4460 +51250 85865 0.4330 +51250 90480 0.8120 +51250 91574 0.9500 +51250 115416 0.9130 +51250 116540 0.8260 +51250 116541 0.8400 +51250 122704 0.8090 +51250 124995 0.8290 +51250 128308 0.8250 +51250 131076 0.4070 +51250 196074 0.4720 +51250 219927 0.8310 +51250 100505876 0.5220 +51250 127898561 0.8000 +51251 51639 0.4330 +51251 51727 0.4910 +51251 51816 0.9170 +51251 55285 0.4690 +51251 56953 0.9760 +51251 79077 0.9040 +51251 84618 0.9570 +51251 91543 0.4260 +51251 93034 0.9470 +51251 115024 0.9040 +51251 122481 0.6540 +51251 122622 0.9010 +51251 124583 0.7080 +51251 129607 0.9390 +51251 131870 0.9140 +51251 139596 0.9000 +51251 146059 0.4740 +51251 151531 0.9210 +51251 158067 0.6890 +51251 221264 0.6770 +51251 221823 0.7830 +51251 377841 0.6740 +51251 100526794 0.9430 +51251 102157402 0.6500 +51252 57730 0.4600 +51252 64080 0.4240 +51252 79820 0.5280 +51252 81562 0.4470 +51252 84874 0.4460 +51252 90342 0.5070 +51252 150082 0.5310 +51252 150771 0.6000 +51252 151313 0.6960 +51252 159195 0.4230 +51252 160777 0.5260 +51252 200539 0.4120 +51252 375248 0.5700 +51252 400986 0.4800 +51252 431705 0.4340 +51253 51258 0.9680 +51253 51263 0.9500 +51253 51264 0.9640 +51253 51318 0.9060 +51253 51373 0.8530 +51253 51642 0.9280 +51253 51649 0.9270 +51253 51650 0.8610 +51253 54148 0.9770 +51253 54460 0.9350 +51253 54534 0.9790 +51253 54948 0.9770 +51253 54998 0.8390 +51253 55037 0.8480 +51253 55052 0.9320 +51253 55168 0.9390 +51253 55173 0.9010 +51253 55178 0.8620 +51253 55720 0.4500 +51253 55794 0.8490 +51253 56945 0.8810 +51253 57129 0.9860 +51253 60488 0.8460 +51253 63875 0.9570 +51253 63931 0.8900 +51253 64432 0.8460 +51253 64928 0.9110 +51253 64949 0.8670 +51253 64951 0.8370 +51253 64960 0.9240 +51253 64963 0.8910 +51253 64965 0.9170 +51253 64968 0.8480 +51253 64969 0.8930 +51253 64975 0.9870 +51253 64976 0.9820 +51253 64978 0.9750 +51253 64979 0.8470 +51253 64981 0.9190 +51253 64983 0.9620 +51253 65003 0.9860 +51253 65005 0.9830 +51253 65008 0.9370 +51253 65080 0.9760 +51253 65993 0.9020 +51253 78988 0.8970 +51253 79590 0.9890 +51253 83858 0.4710 +51253 84311 0.9810 +51253 84340 0.8150 +51253 84545 0.9170 +51253 85476 0.8510 +51253 85865 0.8150 +51253 90480 0.9830 +51253 91574 0.8110 +51253 92170 0.8570 +51253 92399 0.8450 +51253 92856 0.4430 +51253 115416 0.9500 +51253 116540 0.9260 +51253 116541 0.8810 +51253 118487 0.8690 +51253 122704 0.9150 +51253 124995 0.9260 +51253 128308 0.9730 +51253 129607 0.4050 +51253 130916 0.8420 +51253 219402 0.5880 +51253 219927 0.9340 +51253 387338 0.8280 +51253 127898561 0.8110 +51255 55148 0.5780 +51255 79602 0.4750 +51255 79647 0.4240 +51255 84433 0.6000 +51255 129303 0.4410 +51255 131405 0.4040 +51255 643236 0.4750 +51256 51520 0.4970 +51256 54468 0.5320 +51256 54541 0.9380 +51256 54662 0.4840 +51256 55004 0.5350 +51256 55011 0.4080 +51256 55296 0.5490 +51256 55582 0.6060 +51256 55615 0.4320 +51256 55633 0.4720 +51256 55846 0.5880 +51256 57474 0.4280 +51256 57521 0.6370 +51256 57533 0.4490 +51256 58528 0.6570 +51256 64121 0.7100 +51256 64223 0.5780 +51256 64284 0.4890 +51256 64786 0.4400 +51256 64798 0.5480 +51256 79109 0.5360 +51256 79726 0.5470 +51256 79735 0.4550 +51256 81929 0.4870 +51256 83874 0.4200 +51256 84219 0.5660 +51256 84224 0.4470 +51256 84335 0.5870 +51256 90990 0.4740 +51256 93627 0.4020 +51256 96459 0.4160 +51256 121268 0.5050 +51256 125058 0.4640 +51256 128637 0.5360 +51256 144577 0.5460 +51256 153129 0.5350 +51256 154743 0.4480 +51256 161514 0.5560 +51256 201163 0.5310 +51256 253260 0.5450 +51256 374403 0.4730 +51256 389541 0.4890 +51256 652968 0.5060 +51257 51614 0.4800 +51257 54708 0.8700 +51257 55016 0.4900 +51257 55327 0.4720 +51257 57120 0.5260 +51257 64844 0.5440 +51257 80700 0.5120 +51257 85236 0.5330 +51257 85363 0.4670 +51257 114569 0.5290 +51257 117584 0.4100 +51257 197131 0.4300 +51257 220972 0.5220 +51258 51263 0.9390 +51258 51264 0.9420 +51258 51318 0.9760 +51258 51373 0.9250 +51258 51490 0.4020 +51258 51504 0.6410 +51258 51529 0.4970 +51258 51642 0.9730 +51258 51649 0.9000 +51258 51650 0.9300 +51258 51693 0.5510 +51258 54148 0.9670 +51258 54460 0.9540 +51258 54516 0.6050 +51258 54534 0.9790 +51258 54948 0.9340 +51258 54998 0.8420 +51258 55037 0.8390 +51258 55052 0.9900 +51258 55168 0.9480 +51258 55173 0.9360 +51258 55178 0.8050 +51258 55794 0.8100 +51258 55967 0.6780 +51258 56945 0.9180 +51258 57129 0.9860 +51258 57223 0.5030 +51258 59286 0.4050 +51258 60488 0.8620 +51258 63875 0.9480 +51258 63931 0.9570 +51258 64432 0.9400 +51258 64928 0.9100 +51258 64949 0.8880 +51258 64951 0.9100 +51258 64960 0.9080 +51258 64963 0.8920 +51258 64965 0.8670 +51258 64968 0.8540 +51258 64969 0.8540 +51258 64975 0.9810 +51258 64976 0.9660 +51258 64978 0.9350 +51258 64979 0.9340 +51258 64981 0.8840 +51258 64983 0.9280 +51258 65003 0.9410 +51258 65005 0.9470 +51258 65008 0.9180 +51258 65080 0.9800 +51258 65993 0.8900 +51258 78988 0.9410 +51258 79590 0.9720 +51258 80273 0.5160 +51258 84274 0.4850 +51258 84300 0.4910 +51258 84311 0.9640 +51258 84317 0.4400 +51258 84337 0.4600 +51258 84340 0.8360 +51258 84545 0.9500 +51258 84817 0.7450 +51258 85476 0.8280 +51258 85865 0.8080 +51258 90313 0.4060 +51258 90480 0.9840 +51258 91574 0.8410 +51258 92170 0.8140 +51258 92399 0.8720 +51258 115416 0.8840 +51258 116540 0.9410 +51258 116541 0.9220 +51258 118487 0.9330 +51258 122704 0.9780 +51258 124995 0.9660 +51258 125150 0.5020 +51258 128308 0.9760 +51258 130916 0.8190 +51258 219402 0.6220 +51258 219927 0.9750 +51258 387338 0.8090 +51258 493753 0.5770 +51258 127898561 0.8110 +51259 51524 0.9360 +51259 54806 0.9850 +51259 54891 0.4240 +51259 54903 0.9870 +51259 55081 0.4540 +51259 55212 0.4540 +51259 55266 0.4540 +51259 56751 0.4170 +51259 56912 0.4930 +51259 57096 0.5260 +51259 57539 0.4140 +51259 57545 0.9970 +51259 57560 0.4750 +51259 57728 0.5140 +51259 64924 0.4490 +51259 65062 0.8720 +51259 65250 0.7720 +51259 79140 0.4010 +51259 79583 0.9870 +51259 79598 0.6060 +51259 79600 0.9950 +51259 79738 0.5060 +51259 79809 0.6300 +51259 79848 0.5380 +51259 79867 0.9800 +51259 80184 0.9900 +51259 80776 0.9930 +51259 83479 0.4760 +51259 84314 0.9660 +51259 91147 0.9980 +51259 91754 0.4970 +51259 95681 0.6690 +51259 117177 0.5980 +51259 126147 0.4360 +51259 129880 0.5000 +51259 166379 0.5230 +51259 200728 0.9520 +51259 200894 0.9190 +51259 219854 0.6120 +51259 221322 0.4380 +51259 261734 0.8510 +51259 266727 0.4040 +51259 284086 0.5450 +51259 374654 0.5810 +51260 55206 0.6180 +51260 57477 0.4640 +51260 114803 0.4920 +51260 115353 0.5060 +51260 136647 0.4130 +51260 149986 0.4060 +51260 159091 0.4570 +51260 254359 0.5700 +51263 51264 0.9860 +51263 51287 0.4100 +51263 51318 0.9660 +51263 51373 0.8950 +51263 51611 0.4010 +51263 51642 0.9540 +51263 51649 0.8820 +51263 51650 0.8780 +51263 54148 0.9770 +51263 54460 0.9280 +51263 54516 0.5130 +51263 54534 0.9780 +51263 54543 0.5310 +51263 54555 0.5390 +51263 54948 0.9960 +51263 54998 0.9190 +51263 55037 0.8740 +51263 55052 0.9680 +51263 55168 0.9820 +51263 55173 0.9760 +51263 55178 0.8400 +51263 55272 0.5630 +51263 55316 0.6310 +51263 55651 0.5470 +51263 55794 0.8460 +51263 56945 0.9340 +51263 57129 0.9950 +51263 57645 0.5060 +51263 57821 0.4900 +51263 60488 0.9750 +51263 63875 0.9950 +51263 63931 0.9870 +51263 64374 0.5280 +51263 64432 0.9670 +51263 64928 0.9240 +51263 64949 0.8850 +51263 64951 0.8620 +51263 64960 0.9860 +51263 64963 0.9710 +51263 64965 0.9670 +51263 64968 0.9730 +51263 64969 0.9700 +51263 64975 0.9940 +51263 64976 0.9920 +51263 64978 0.9690 +51263 64979 0.9850 +51263 64981 0.9900 +51263 64983 0.9840 +51263 65003 0.9800 +51263 65005 0.9370 +51263 65008 0.9530 +51263 65080 0.9840 +51263 65121 0.4650 +51263 65122 0.4650 +51263 65260 0.4380 +51263 65993 0.8790 +51263 78988 0.9540 +51263 79590 0.9530 +51263 80273 0.5490 +51263 84311 0.9350 +51263 84340 0.8180 +51263 84545 0.9860 +51263 85476 0.8390 +51263 85865 0.8480 +51263 90313 0.6440 +51263 90480 0.9810 +51263 90624 0.6060 +51263 91574 0.8370 +51263 92170 0.8010 +51263 92399 0.8780 +51263 114781 0.5590 +51263 115416 0.8640 +51263 115704 0.4610 +51263 116540 0.9210 +51263 116541 0.9570 +51263 118487 0.8890 +51263 122704 0.9720 +51263 124995 0.9770 +51263 126402 0.5790 +51263 128308 0.9280 +51263 130916 0.8220 +51263 131076 0.5250 +51263 140801 0.5210 +51263 148022 0.4490 +51263 149478 0.5300 +51263 157310 0.5790 +51263 219402 0.5340 +51263 219927 0.9340 +51263 285282 0.4180 +51263 285855 0.4030 +51263 343068 0.4650 +51263 343070 0.4650 +51263 345051 0.4280 +51263 347487 0.5080 +51263 353376 0.4490 +51263 387338 0.8160 +51263 390999 0.4650 +51263 391002 0.4650 +51263 400735 0.4650 +51263 400736 0.4650 +51263 440560 0.4650 +51263 440561 0.4650 +51263 441873 0.4650 +51263 645359 0.4650 +51263 653619 0.4650 +51263 729528 0.4650 +51263 100287482 0.5080 +51263 100302736 0.4490 +51263 100526842 0.6630 +51263 101929983 0.4650 +51263 127898561 0.8100 +51264 51314 0.5090 +51264 51318 0.9430 +51264 51373 0.8700 +51264 51520 0.4410 +51264 51642 0.9570 +51264 51649 0.8840 +51264 51650 0.8580 +51264 51693 0.4990 +51264 51734 0.4050 +51264 54148 0.9800 +51264 54460 0.8680 +51264 54516 0.7170 +51264 54534 0.9680 +51264 54543 0.4050 +51264 54802 0.4010 +51264 54948 0.9990 +51264 54998 0.8930 +51264 55037 0.8210 +51264 55052 0.9990 +51264 55157 0.4170 +51264 55168 0.9920 +51264 55173 0.9980 +51264 55176 0.8130 +51264 55178 0.8390 +51264 55268 0.4630 +51264 55272 0.9830 +51264 55316 0.9490 +51264 55324 0.8070 +51264 55651 0.5830 +51264 55703 0.7460 +51264 55794 0.9120 +51264 55862 0.4750 +51264 56648 0.9080 +51264 56945 0.8510 +51264 56993 0.4080 +51264 57038 0.4360 +51264 57129 0.9980 +51264 57471 0.4290 +51264 57628 0.5070 +51264 60488 0.9910 +51264 60558 0.8690 +51264 60678 0.4500 +51264 63875 0.9990 +51264 63931 0.9980 +51264 64146 0.9470 +51264 64374 0.8980 +51264 64432 0.9850 +51264 64756 0.4220 +51264 64928 0.9070 +51264 64949 0.8550 +51264 64951 0.8810 +51264 64960 0.9990 +51264 64963 0.9980 +51264 64965 0.9990 +51264 64968 0.9990 +51264 64969 0.9990 +51264 64975 0.9970 +51264 64976 0.9970 +51264 64978 0.9910 +51264 64979 0.9990 +51264 64981 0.9950 +51264 64983 0.9990 +51264 65003 0.9980 +51264 65005 0.9990 +51264 65008 0.9960 +51264 65080 0.9980 +51264 65121 0.6850 +51264 65122 0.6850 +51264 65993 0.9080 +51264 78988 0.9300 +51264 79590 0.9960 +51264 79631 0.9380 +51264 80146 0.4530 +51264 80270 0.4490 +51264 80298 0.4370 +51264 81031 0.4030 +51264 84172 0.7410 +51264 84311 0.9530 +51264 84313 0.4300 +51264 84340 0.9510 +51264 84545 0.9970 +51264 84833 0.4430 +51264 85476 0.9870 +51264 85865 0.9340 +51264 90313 0.8400 +51264 90353 0.4140 +51264 90480 0.9650 +51264 90624 0.7930 +51264 91574 0.9410 +51264 92170 0.8750 +51264 92399 0.9950 +51264 93517 0.4490 +51264 114134 0.4030 +51264 114781 0.7890 +51264 115416 0.9910 +51264 116540 0.9050 +51264 116541 0.9840 +51264 118487 0.9060 +51264 122704 0.9130 +51264 123263 0.4850 +51264 124359 0.4630 +51264 124995 0.9870 +51264 125988 0.4030 +51264 126402 0.9710 +51264 128308 0.9410 +51264 130916 0.8210 +51264 133015 0.4290 +51264 135138 0.4290 +51264 138428 0.5340 +51264 140801 0.8970 +51264 143244 0.9080 +51264 148022 0.5500 +51264 149478 0.6680 +51264 154091 0.4030 +51264 157310 0.8160 +51264 219402 0.5440 +51264 219927 0.9990 +51264 253175 0.4630 +51264 255308 0.4370 +51264 284106 0.4890 +51264 285367 0.4160 +51264 285855 0.9150 +51264 343068 0.6850 +51264 343070 0.6850 +51264 345051 0.8530 +51264 347487 0.9050 +51264 353376 0.5500 +51264 374659 0.9510 +51264 387129 0.9120 +51264 387338 0.8120 +51264 390999 0.6850 +51264 391002 0.6850 +51264 400735 0.6850 +51264 400736 0.6850 +51264 440560 0.6850 +51264 440561 0.6850 +51264 441873 0.6850 +51264 641776 0.8230 +51264 643909 0.8230 +51264 645359 0.6850 +51264 653247 0.4030 +51264 653619 0.6850 +51264 654364 0.5290 +51264 728524 0.8230 +51264 729528 0.6850 +51264 100287482 0.9050 +51264 100302736 0.5500 +51264 100505478 0.9120 +51264 100526842 0.9500 +51264 100996746 0.8230 +51264 101929983 0.6850 +51264 105180390 0.8230 +51264 105180391 0.8230 +51264 114483834 0.8080 +51264 127898561 0.8110 +51265 55608 0.4140 +51265 125997 0.4320 +51266 51348 0.8480 +51266 55576 0.4800 +51266 64805 0.6970 +51266 80739 0.7650 +51266 81027 0.5460 +51266 84519 0.4510 +51266 93978 0.5520 +51266 160364 0.5600 +51266 283420 0.6960 +51266 338339 0.4680 +51266 339390 0.7450 +51266 340205 0.6360 +51266 377841 0.4200 +51266 100431172 0.5170 +51267 93978 0.4860 +51267 127943 0.4080 +51267 160364 0.4010 +51267 161198 0.5310 +51267 204801 0.4490 +51267 338339 0.5880 +51267 339390 0.6080 +51268 51512 0.5280 +51268 51540 0.4940 +51268 51557 0.5650 +51268 51733 0.4630 +51268 54363 0.5160 +51268 54859 0.8350 +51268 55034 0.5960 +51268 55066 0.6480 +51268 55687 0.5260 +51268 58472 0.6210 +51268 64577 0.5050 +51268 64902 0.9420 +51268 79763 0.4520 +51268 79912 0.6210 +51268 84705 0.6710 +51268 84883 0.6210 +51268 85007 0.4830 +51268 112849 0.4040 +51268 114112 0.4280 +51268 150209 0.6210 +51268 196743 0.5060 +51268 219743 0.6150 +51268 441024 0.4690 +51270 54821 0.4300 +51270 54878 0.8550 +51270 55002 0.4880 +51270 79733 0.9000 +51270 91039 0.7860 +51270 144455 0.8920 +51271 51510 0.8270 +51271 51534 0.6500 +51271 51652 0.9490 +51271 55048 0.9650 +51271 55293 0.5400 +51271 55833 0.4030 +51271 57132 0.9380 +51271 63891 0.4440 +51271 79643 0.9560 +51271 79720 0.9900 +51271 83890 0.4550 +51271 84313 0.9530 +51271 89853 0.9660 +51271 91782 0.9410 +51271 92421 0.6880 +51271 93343 0.9760 +51271 128866 0.9290 +51271 137492 0.9990 +51271 140459 0.4360 +51271 148362 0.4080 +51271 155382 0.9560 +51271 347240 0.5380 +51271 390595 0.5400 +51271 100526767 0.4820 +51272 51332 0.4990 +51272 51465 0.4200 +51272 53407 0.8890 +51272 54732 0.5460 +51272 55014 0.7640 +51272 55666 0.5890 +51272 55850 0.7280 +51272 55860 0.5200 +51272 55968 0.4960 +51272 57134 0.5140 +51272 57511 0.6590 +51272 57731 0.4990 +51272 60626 0.5340 +51272 63908 0.6630 +51272 64689 0.6020 +51272 79991 0.4770 +51272 80124 0.7690 +51272 81876 0.6050 +51272 83452 0.5910 +51272 83548 0.7480 +51272 84229 0.4610 +51272 84447 0.4860 +51272 84516 0.5060 +51272 90506 0.4640 +51272 91949 0.6750 +51272 93661 0.5200 +51272 112755 0.6190 +51272 113746 0.4500 +51272 116841 0.6280 +51272 134957 0.5400 +51272 140735 0.5920 +51272 143187 0.7700 +51272 144406 0.4590 +51272 161502 0.4870 +51272 203062 0.7640 +51272 203245 0.5140 +51272 267002 0.4800 +51272 284001 0.4040 +51272 339302 0.5400 +51272 375190 0.5910 +51272 388730 0.4020 +51272 415117 0.6180 +51272 594855 0.5400 +51274 55553 0.5530 +51274 55827 0.4270 +51274 80008 0.4240 +51274 84733 0.5910 +51274 93986 0.4260 +51274 161882 0.6440 +51274 388581 0.4210 +51274 431707 0.5690 +51274 100532731 0.4230 +51277 51704 0.5160 +51277 54431 0.4760 +51277 54814 0.5970 +51277 54958 0.6210 +51277 55052 0.4370 +51277 55120 0.4040 +51277 55735 0.4900 +51277 57507 0.6060 +51277 58155 0.4320 +51277 64116 0.4180 +51277 64215 0.4590 +51277 64792 0.4470 +51277 64965 0.4040 +51277 64981 0.4200 +51277 65999 0.6010 +51277 79047 0.5340 +51277 79068 0.4470 +51277 79363 0.4660 +51277 79632 0.7090 +51277 79962 0.5830 +51277 85406 0.4270 +51277 89866 0.6650 +51277 94134 0.4260 +51277 120526 0.5640 +51277 124152 0.4030 +51277 129787 0.6070 +51277 132789 0.6180 +51277 134359 0.6140 +51277 158038 0.5510 +51277 200894 0.4560 +51277 219402 0.5730 +51277 253559 0.5400 +51277 257194 0.4640 +51277 285126 0.4300 +51277 390598 0.5200 +51277 548645 0.6000 +51277 100526835 0.6270 +51278 55844 0.6140 +51279 51741 0.4880 +51279 136541 0.4210 +51280 51608 0.5720 +51280 51699 0.4070 +51280 54757 0.4050 +51280 54808 0.4200 +51280 56975 0.6330 +51280 60560 0.6190 +51280 64083 0.8080 +51281 57140 0.4050 +51281 115704 0.4160 +51281 285093 0.4190 +51281 326340 0.4730 +51281 387923 0.4340 +51281 100129480 0.6210 +51282 54925 0.8340 +51282 54958 0.4150 +51282 54993 0.5140 +51282 54998 0.4070 +51282 55311 0.7450 +51282 55888 0.6220 +51282 57189 0.4780 +51282 64975 0.4090 +51282 65982 0.7460 +51282 79692 0.4640 +51282 84124 0.8000 +51282 84307 0.8370 +51282 84324 0.4170 +51282 84547 0.8370 +51282 158399 0.6840 +51282 203523 0.4200 +51282 222696 0.6850 +51282 252884 0.8310 +51282 342945 0.8200 +51282 387032 0.8310 +51282 441150 0.4550 +51283 55081 0.4460 +51283 57448 0.4020 +51283 79886 0.4500 +51283 80149 0.7620 +51284 51311 0.9970 +51284 51428 0.4170 +51284 51561 0.4010 +51284 54106 0.9920 +51284 54472 0.4130 +51284 55509 0.4790 +51284 56832 0.4500 +51284 57379 0.4840 +51284 57506 0.7590 +51284 58484 0.6360 +51284 59272 0.6220 +51284 59307 0.4120 +51284 60489 0.5880 +51284 64083 0.5460 +51284 64127 0.7140 +51284 64135 0.8550 +51284 64170 0.4360 +51284 64422 0.4140 +51284 64581 0.7130 +51284 65258 0.4730 +51284 79132 0.7490 +51284 79792 0.4150 +51284 80231 0.7090 +51284 80380 0.6230 +51284 80381 0.5240 +51284 81030 0.4220 +51284 81622 0.9970 +51284 81793 0.5610 +51284 84868 0.6530 +51284 85363 0.4170 +51284 90865 0.5620 +51284 91543 0.5800 +51284 93978 0.4760 +51284 112744 0.4110 +51284 114548 0.6320 +51284 114609 0.8190 +51284 115004 0.7850 +51284 115650 0.4320 +51284 121260 0.4440 +51284 140885 0.4530 +51284 148022 0.6610 +51284 163702 0.4820 +51284 168400 0.4390 +51284 169355 0.4580 +51284 170482 0.6850 +51284 257397 0.5380 +51284 282616 0.4800 +51284 282617 0.4480 +51284 282618 0.8560 +51284 283420 0.4640 +51284 338376 0.4360 +51284 340061 0.4480 +51284 345456 0.4790 +51284 353376 0.4860 +51284 375189 0.4830 +51284 405754 0.5290 +51284 730249 0.5100 +51284 100526664 0.5340 +51285 54753 0.4090 +51285 91608 0.4260 +51286 51646 0.4070 +51286 54806 0.4670 +51286 54961 0.4260 +51286 56893 0.4760 +51286 64405 0.4280 +51286 283999 0.4680 +51286 729956 0.4240 +51287 51805 0.5200 +51287 54927 0.5030 +51287 54948 0.4060 +51287 56942 0.7760 +51287 63875 0.7570 +51287 65260 0.6480 +51287 79145 0.6940 +51287 79590 0.5380 +51287 84269 0.4860 +51287 90624 0.5210 +51287 90639 0.7530 +51287 128308 0.4080 +51287 131474 0.8030 +51287 135154 0.5280 +51287 388753 0.8430 +51287 400916 0.4740 +51287 493753 0.5850 +51287 100272147 0.7970 +51289 59350 0.9890 +51289 63940 0.4040 +51289 79891 0.6070 +51289 117579 0.9990 +51289 122042 0.9830 +51289 151647 0.4180 +51289 339403 0.9100 +51290 51512 0.6030 +51290 51614 0.9990 +51290 51762 0.4670 +51290 55259 0.4130 +51290 55297 0.5050 +51290 55687 0.6030 +51290 64083 0.4090 +51290 79139 0.4280 +51290 80267 0.5580 +51290 80343 0.7910 +51290 81562 0.4250 +51290 84705 0.9310 +51290 84911 0.4410 +51290 90353 0.4300 +51290 91319 0.8480 +51290 200312 0.5950 +51290 283471 0.5710 +51290 285521 0.4500 +51290 729440 0.5300 +51291 57130 0.4340 +51291 80709 0.5440 +51291 84958 0.6880 +51291 90627 0.4080 +51291 94039 0.4480 +51291 374887 0.4810 +51292 55703 0.4580 +51292 81932 0.4080 +51292 84076 0.4280 +51292 84172 0.4580 +51292 91875 0.4030 +51292 122622 0.5770 +51293 55788 0.8860 +51293 64241 0.6300 +51293 81693 0.5070 +51293 166785 0.8750 +51293 171425 0.4190 +51293 326625 0.8460 +51294 65217 0.4470 +51294 83878 0.4580 +51294 255877 0.4300 +51295 51300 0.9990 +51295 51373 0.6740 +51295 54472 0.6250 +51295 54539 0.9980 +51295 54555 0.5240 +51295 54968 0.9960 +51295 55101 0.5460 +51295 55471 0.7600 +51295 55572 0.7830 +51295 55699 0.6390 +51295 55744 0.7640 +51295 55844 0.5110 +51295 55863 0.9990 +51295 55967 0.6590 +51295 57154 0.4010 +51295 57161 0.4880 +51295 57162 0.4880 +51295 57506 0.5590 +51295 64087 0.6510 +51295 64135 0.7030 +51295 64223 0.4090 +51295 64978 0.5090 +51295 79133 0.7750 +51295 79671 0.4030 +51295 80224 0.4990 +51295 83858 0.9940 +51295 84233 0.4220 +51295 89887 0.4500 +51295 91942 0.7500 +51295 92667 0.7470 +51295 126328 0.8000 +51295 137682 0.7670 +51295 150274 0.4090 +51295 153562 0.4200 +51295 171389 0.4060 +51295 201292 0.4390 +51295 246330 0.5040 +51295 286827 0.9580 +51295 374291 0.9220 +51296 55244 0.4350 +51296 57571 0.5280 +51296 64127 0.6260 +51296 65220 0.5320 +51296 92745 0.4050 +51296 353323 0.5910 +51297 55504 0.5470 +51297 65062 0.4570 +51297 80341 0.8230 +51297 84658 0.4090 +51297 90865 0.4080 +51297 92304 0.5680 +51297 92747 0.8830 +51297 117156 0.5060 +51297 124220 0.4140 +51297 128859 0.7880 +51297 128861 0.5150 +51297 131177 0.4280 +51297 140683 0.7300 +51297 149954 0.8490 +51297 170712 0.8250 +51297 254240 0.4220 +51297 359710 0.6500 +51297 727897 0.6810 +51298 53340 0.4160 +51298 54531 0.4590 +51298 55247 0.4270 +51298 84519 0.4680 +51298 91300 0.4360 +51298 124912 0.4940 +51298 221191 0.5720 +51298 256329 0.4340 +51298 284451 0.4320 +51298 353324 0.4430 +51298 389792 0.4230 +51298 441525 0.4140 +51299 64641 0.4290 +51299 84628 0.5120 +51299 112476 0.4170 +51299 119559 0.4130 +51299 146395 0.4220 +51299 146664 0.4180 +51299 257194 0.4200 +51299 375567 0.6320 +51299 400120 0.4640 +51299 402117 0.4890 +51300 54539 0.7940 +51300 54940 0.8500 +51300 54968 0.6310 +51300 55101 0.5500 +51300 55254 0.5160 +51300 55471 0.7190 +51300 55572 0.7650 +51300 55744 0.6150 +51300 55863 0.9990 +51300 55967 0.9980 +51300 56983 0.6520 +51300 57514 0.4120 +51300 79133 0.8200 +51300 79135 0.6820 +51300 79568 0.6410 +51300 80224 0.4850 +51300 80349 0.4410 +51300 84233 0.4780 +51300 84955 0.6350 +51300 89848 0.4560 +51300 89885 0.5650 +51300 90871 0.4180 +51300 91942 0.7140 +51300 92259 0.4010 +51300 126328 0.7130 +51300 137682 0.7550 +51300 284184 0.5430 +51300 285175 0.6340 +51300 374291 0.9970 +51300 440957 0.4030 +51301 53947 0.4910 +51301 56287 0.5080 +51301 56667 0.4790 +51301 56913 0.9690 +51301 57633 0.4210 +51301 79690 0.4560 +51301 94025 0.4600 +51301 140453 0.4580 +51301 143662 0.5720 +51301 192134 0.6060 +51301 200958 0.5710 +51301 394263 0.4370 +51301 727897 0.4920 +51301 728819 0.9010 +51302 51478 0.6970 +51302 54905 0.5200 +51302 57404 0.6250 +51302 57412 0.4760 +51302 64240 0.5220 +51302 64241 0.4350 +51302 80150 0.4150 +51302 80270 0.9780 +51302 83693 0.4470 +51302 93517 0.5190 +51302 120227 0.5330 +51302 123264 0.4920 +51302 132949 0.5330 +51302 151306 0.4420 +51302 200931 0.4560 +51302 286151 0.4760 +51302 340665 0.4520 +51303 55033 0.4150 +51303 58477 0.4500 +51303 81567 0.4700 +51303 84154 0.4040 +51303 90701 0.4460 +51303 91319 0.5760 +51303 387733 0.5190 +51304 54503 0.6140 +51304 55625 0.6080 +51304 79683 0.5200 +51304 79844 0.7780 +51304 80331 0.4560 +51304 81926 0.4580 +51304 84287 0.5610 +51304 92703 0.4510 +51304 253832 0.5920 +51304 653082 0.4320 +51305 51350 0.8810 +51305 54108 0.4240 +51305 54207 0.7880 +51305 54551 0.4040 +51305 56659 0.6350 +51305 56660 0.6800 +51305 60598 0.5570 +51305 79054 0.6610 +51305 81831 0.4120 +51305 83795 0.6530 +51305 89822 0.6740 +51305 259232 0.4370 +51305 338567 0.7240 +51305 390616 0.4710 +51306 51307 0.4580 +51306 54463 0.5180 +51306 55751 0.4790 +51306 149281 0.4390 +51306 202051 0.5130 +51306 202052 0.4520 +51306 255426 0.4640 +51306 111064649 0.4990 +51307 51780 0.5450 +51307 113263 0.4730 +51307 150864 0.5240 +51307 254225 0.4690 +51308 51324 0.4910 +51308 57165 0.4100 +51308 57704 0.4770 +51308 59284 0.4280 +51308 64108 0.4100 +51308 64225 0.5730 +51308 65055 0.8150 +51308 79152 0.4400 +51308 80055 0.4120 +51308 80208 0.5540 +51308 80333 0.4770 +51308 80346 0.7370 +51308 80821 0.4860 +51308 83597 0.4030 +51308 91574 0.5750 +51308 113612 0.4320 +51308 118813 0.5660 +51308 123606 0.5650 +51308 128637 0.4450 +51308 132112 0.4220 +51308 137492 0.4540 +51308 200205 0.5400 +51308 221035 0.6370 +51308 340075 0.4300 +51308 344892 0.4460 +51309 55288 0.6590 +51309 56271 0.4370 +51309 66008 0.5470 +51309 79921 0.4160 +51309 151790 0.4060 +51309 100133053 0.5170 +51310 55356 0.4760 +51310 55867 0.4200 +51310 56898 0.4400 +51310 387601 0.4610 +51310 387775 0.4680 +51311 51314 0.4470 +51311 51744 0.4050 +51311 53829 0.6850 +51311 54106 0.8690 +51311 54210 0.5350 +51311 54472 0.5900 +51311 55016 0.4650 +51311 57506 0.6500 +51311 58484 0.7590 +51311 59272 0.4660 +51311 64127 0.8280 +51311 64135 0.7800 +51311 64231 0.4820 +51311 64407 0.4960 +51311 64581 0.6460 +51311 79132 0.6550 +51311 79168 0.4700 +51311 80231 0.4290 +51311 81622 0.9610 +51311 81793 0.4730 +51311 84166 0.4110 +51311 84689 0.4600 +51311 84868 0.5450 +51311 89790 0.4540 +51311 91543 0.4450 +51311 93978 0.4550 +51311 114548 0.5930 +51311 114609 0.7910 +51311 115004 0.5910 +51311 117289 0.4440 +51311 124599 0.4890 +51311 136319 0.4920 +51311 140885 0.4200 +51311 146722 0.4910 +51311 148022 0.6300 +51311 160364 0.5710 +51311 163702 0.5940 +51311 170482 0.4640 +51311 219972 0.4810 +51311 257397 0.4750 +51311 282618 0.7960 +51311 283420 0.4610 +51311 338339 0.5440 +51311 345456 0.4450 +51311 353376 0.4920 +51311 353514 0.4250 +51311 375189 0.4490 +51311 653361 0.4180 +51311 100526664 0.4210 +51312 51327 0.5300 +51312 51522 0.5530 +51312 51629 0.5330 +51312 55154 0.5650 +51312 55240 0.5940 +51312 55640 0.4120 +51312 57019 0.4450 +51312 57128 0.5810 +51312 57380 0.4840 +51312 57817 0.4770 +51312 79689 0.5270 +51312 79731 0.8990 +51312 79901 0.5210 +51312 81689 0.5000 +51312 81894 0.4840 +51312 91300 0.4330 +51312 92609 0.4030 +51312 94081 0.4030 +51312 112812 0.4450 +51312 122961 0.4610 +51312 151613 0.4170 +51312 200205 0.4960 +51313 54757 0.5240 +51313 55314 0.4260 +51313 56899 0.4240 +51313 56975 0.4280 +51313 116135 0.4450 +51313 220107 0.4490 +51314 51338 0.5900 +51314 51364 0.5480 +51314 51726 0.4700 +51314 51807 0.5020 +51314 54209 0.5200 +51314 54431 0.5660 +51314 54768 0.6240 +51314 54788 0.4680 +51314 54829 0.4770 +51314 54839 0.4260 +51314 54919 0.6470 +51314 54979 0.4300 +51314 54993 0.5250 +51314 54995 0.4090 +51314 55036 0.7240 +51314 55052 0.4660 +51314 55063 0.7970 +51314 55112 0.4640 +51314 55130 0.6920 +51314 55172 0.9000 +51314 55173 0.6020 +51314 55259 0.5740 +51314 55272 0.4040 +51314 55316 0.4600 +51314 55367 0.4830 +51314 55466 0.4670 +51314 55567 0.7520 +51314 55703 0.6290 +51314 55735 0.4790 +51314 56171 0.7700 +51314 56474 0.6720 +51314 56648 0.4520 +51314 56683 0.6130 +51314 56945 0.4860 +51314 56990 0.5020 +51314 57091 0.8140 +51314 57110 0.4300 +51314 59283 0.4260 +51314 59284 0.4260 +51314 63931 0.4590 +51314 64231 0.7310 +51314 64374 0.4080 +51314 64446 0.9810 +51314 64960 0.5710 +51314 64963 0.5390 +51314 64965 0.4970 +51314 64968 0.5560 +51314 64969 0.4800 +51314 64979 0.4230 +51314 64983 0.4870 +51314 65003 0.5880 +51314 65999 0.4260 +51314 79165 0.4070 +51314 79590 0.4480 +51314 79631 0.4250 +51314 79645 0.4030 +51314 79659 0.4220 +51314 79728 0.4240 +51314 79746 0.4900 +51314 79819 0.7730 +51314 79848 0.4070 +51314 79861 0.4980 +51314 79890 0.7340 +51314 79962 0.4680 +51314 79982 0.4680 +51314 80086 0.4980 +51314 80213 0.6950 +51314 80308 0.4550 +51314 80331 0.4600 +51314 80834 0.4090 +51314 80835 0.4090 +51314 81027 0.4840 +51314 81570 0.4720 +51314 81616 0.4200 +51314 83450 0.5110 +51314 83538 0.5710 +51314 83544 0.7900 +51314 83657 0.6390 +51314 83658 0.6440 +51314 83661 0.4800 +51314 83756 0.4090 +51314 84125 0.4260 +51314 84172 0.6290 +51314 84203 0.6510 +51314 84284 0.4820 +51314 84617 0.4690 +51314 84790 0.5170 +51314 85444 0.4260 +51314 85476 0.4250 +51314 85478 0.7530 +51314 85479 0.5110 +51314 89765 0.5640 +51314 89891 0.4460 +51314 90506 0.4260 +51314 91875 0.6720 +51314 92737 0.4230 +51314 92749 0.7290 +51314 93233 0.9400 +51314 93550 0.4380 +51314 96459 0.4680 +51314 112714 0.4980 +51314 113444 0.4780 +51314 113457 0.4980 +51314 114112 0.4640 +51314 114548 0.5210 +51314 114908 0.4070 +51314 115399 0.5230 +51314 115948 0.7780 +51314 116835 0.4320 +51314 118461 0.4300 +51314 118491 0.5840 +51314 120526 0.4780 +51314 122664 0.4140 +51314 123041 0.7950 +51314 123872 0.8770 +51314 126402 0.5180 +51314 126820 0.8490 +51314 127255 0.4260 +51314 127602 0.6330 +51314 129607 0.4720 +51314 136332 0.6610 +51314 139212 0.4500 +51314 140432 0.4680 +51314 140735 0.5940 +51314 140801 0.4280 +51314 143244 0.4520 +51314 144132 0.7080 +51314 146754 0.7420 +51314 150082 0.4090 +51314 150353 0.4680 +51314 160762 0.5540 +51314 161582 0.6450 +51314 164684 0.4890 +51314 165721 0.4680 +51314 171425 0.4680 +51314 196385 0.4550 +51314 201625 0.7490 +51314 202051 0.4400 +51314 202052 0.4680 +51314 203068 0.4700 +51314 206338 0.4290 +51314 219670 0.4530 +51314 219927 0.5520 +51314 221264 0.5180 +51314 221421 0.9150 +51314 222545 0.4260 +51314 222950 0.4670 +51314 245802 0.6000 +51314 246243 0.4890 +51314 254050 0.4260 +51314 255220 0.5460 +51314 259217 0.4300 +51314 260334 0.4610 +51314 283234 0.4260 +51314 284418 0.4070 +51314 285126 0.4680 +51314 285190 0.4930 +51314 285282 0.4680 +51314 285755 0.4070 +51314 339416 0.4110 +51314 339829 0.7430 +51314 339896 0.4240 +51314 340895 0.4320 +51314 341418 0.4110 +51314 341883 0.4260 +51314 345895 0.9170 +51314 347487 0.5440 +51314 347688 0.4610 +51314 347733 0.4610 +51314 352909 0.6640 +51314 353345 0.4420 +51314 374407 0.6500 +51314 374659 0.5400 +51314 388389 0.8100 +51314 388633 0.4300 +51314 404636 0.5740 +51314 440435 0.4090 +51314 548645 0.4600 +51314 552891 0.4600 +51314 643680 0.6090 +51314 644591 0.4070 +51314 645142 0.4070 +51314 653505 0.4070 +51314 653598 0.4070 +51314 727851 0.4070 +51314 728945 0.4070 +51314 729475 0.4310 +51314 729857 0.4070 +51314 729920 0.5990 +51314 730262 0.4070 +51314 100287482 0.5440 +51314 105371242 0.4070 +51315 51329 0.5470 +51315 55258 0.4200 +51315 57018 0.4450 +51315 84146 0.4310 +51315 84336 0.4230 +51315 84542 0.4060 +51315 90806 0.4080 +51315 200523 0.4040 +51315 642843 0.4930 +51316 55571 0.4480 +51316 79718 0.5810 +51316 84299 0.4460 +51316 113246 0.7690 +51316 171568 0.7170 +51316 375790 0.4470 +51317 51460 0.5340 +51317 51742 0.6310 +51317 53615 0.5440 +51317 54556 0.6970 +51317 54815 0.6040 +51317 55170 0.5120 +51317 55215 0.5490 +51317 55758 0.6050 +51317 56950 0.4290 +51317 57459 0.5700 +51317 57504 0.5810 +51317 57621 0.5040 +51317 57697 0.4190 +51317 60529 0.4080 +51317 64324 0.4480 +51317 64421 0.9090 +51317 64426 0.5870 +51317 64769 0.4270 +51317 79685 0.5280 +51317 79728 0.5400 +51317 79840 0.9040 +51317 83860 0.4450 +51317 84164 0.5560 +51317 84444 0.4620 +51317 84530 0.4160 +51317 85235 0.4630 +51317 85236 0.4930 +51317 91419 0.9020 +51317 92815 0.4630 +51317 112398 0.5940 +51317 125150 0.9000 +51317 126074 0.9000 +51317 126961 0.5650 +51317 128312 0.4850 +51317 221613 0.4630 +51317 221656 0.6680 +51317 255626 0.4850 +51317 283248 0.5660 +51317 286257 0.9000 +51317 317649 0.4620 +51317 317772 0.4630 +51317 440093 0.8470 +51317 440686 0.8470 +51317 440689 0.4850 +51317 653604 0.9040 +51317 728378 0.4110 +51317 105375355 0.5400 +51318 51373 0.9110 +51318 51642 0.9290 +51318 51649 0.9100 +51318 51650 0.8740 +51318 54148 0.9810 +51318 54460 0.8850 +51318 54516 0.6340 +51318 54534 0.9690 +51318 54948 0.9290 +51318 54998 0.8250 +51318 55037 0.8280 +51318 55052 0.9790 +51318 55168 0.9570 +51318 55173 0.8970 +51318 55967 0.6590 +51318 56256 0.4070 +51318 56945 0.8640 +51318 57129 0.9680 +51318 60488 0.8720 +51318 63875 0.8900 +51318 63931 0.9570 +51318 64432 0.8900 +51318 64928 0.8590 +51318 64949 0.8690 +51318 64951 0.9000 +51318 64960 0.8710 +51318 64963 0.9430 +51318 64965 0.8920 +51318 64968 0.8570 +51318 64969 0.9010 +51318 64975 0.9490 +51318 64976 0.9690 +51318 64978 0.9720 +51318 64979 0.8890 +51318 64981 0.9200 +51318 64983 0.9290 +51318 65003 0.8560 +51318 65005 0.9800 +51318 65008 0.9380 +51318 65080 0.9280 +51318 65993 0.8930 +51318 78988 0.8400 +51318 79133 0.4160 +51318 79135 0.4180 +51318 79590 0.8870 +51318 79728 0.4460 +51318 80774 0.4180 +51318 84233 0.4020 +51318 84311 0.9610 +51318 84340 0.8030 +51318 84545 0.8760 +51318 84833 0.4960 +51318 85476 0.8180 +51318 90313 0.4090 +51318 90480 0.9660 +51318 91574 0.8560 +51318 92170 0.8010 +51318 92399 0.8630 +51318 115416 0.9270 +51318 116540 0.8870 +51318 116541 0.8950 +51318 118487 0.8770 +51318 122704 0.9340 +51318 124995 0.9660 +51318 128308 0.9350 +51318 130916 0.8210 +51318 131076 0.5010 +51318 219402 0.5260 +51318 219927 0.8880 +51318 284273 0.4070 +51318 387338 0.8010 +51318 100287932 0.5560 +51318 127898561 0.8110 +51319 51367 0.4320 +51319 51386 0.4980 +51319 51388 0.6490 +51319 51602 0.7640 +51319 51650 0.4130 +51319 51690 0.4360 +51319 54033 0.6160 +51319 54433 0.7000 +51319 54464 0.5100 +51319 54663 0.4730 +51319 54948 0.5970 +51319 55127 0.6440 +51319 55173 0.7970 +51319 55176 0.4150 +51319 55226 0.5730 +51319 55272 0.6920 +51319 55299 0.6550 +51319 55316 0.9280 +51319 55421 0.4820 +51319 55505 0.7920 +51319 55591 0.4680 +51319 55692 0.8640 +51319 55720 0.5070 +51319 55759 0.5620 +51319 55781 0.8630 +51319 55813 0.5940 +51319 55854 0.6300 +51319 56648 0.6190 +51319 56965 0.4970 +51319 57050 0.5260 +51319 60678 0.5190 +51319 63931 0.6750 +51319 64216 0.4350 +51319 64318 0.5020 +51319 64374 0.5940 +51319 64960 0.6370 +51319 64963 0.6840 +51319 64969 0.7130 +51319 65003 0.6280 +51319 65008 0.7070 +51319 65083 0.5450 +51319 65117 0.5380 +51319 65121 0.4960 +51319 65122 0.4960 +51319 79050 0.5520 +51319 79590 0.6780 +51319 79631 0.6580 +51319 79668 0.4970 +51319 79885 0.6470 +51319 79897 0.4730 +51319 79954 0.5160 +51319 80135 0.5860 +51319 84128 0.5640 +51319 84135 0.6430 +51319 84154 0.5540 +51319 84365 0.6620 +51319 84549 0.5220 +51319 84916 0.5860 +51319 84946 0.8970 +51319 85014 0.4990 +51319 85377 0.4980 +51319 85476 0.6680 +51319 92196 0.4280 +51319 92856 0.5600 +51319 93550 0.4950 +51319 94104 0.8440 +51319 114987 0.9000 +51319 116832 0.8130 +51319 117246 0.4390 +51319 124454 0.4800 +51319 126402 0.8090 +51319 126789 0.5240 +51319 140032 0.8380 +51319 140801 0.8780 +51319 142940 0.6250 +51319 143244 0.6130 +51319 152518 0.4110 +51319 164153 0.4910 +51319 200916 0.8610 +51319 201595 0.4280 +51319 253582 0.5030 +51319 254268 0.9020 +51319 255308 0.7000 +51319 285855 0.8350 +51319 339487 0.4120 +51319 343068 0.4960 +51319 343070 0.4960 +51319 345630 0.6330 +51319 347487 0.9280 +51319 387129 0.8320 +51319 390999 0.4960 +51319 391002 0.4960 +51319 399949 0.4010 +51319 400735 0.4960 +51319 400736 0.4960 +51319 440560 0.4960 +51319 440561 0.4960 +51319 441873 0.4960 +51319 613212 0.4480 +51319 641776 0.6350 +51319 643909 0.6350 +51319 645051 0.6540 +51319 645073 0.6540 +51319 645359 0.4960 +51319 653619 0.4960 +51319 728524 0.6350 +51319 728689 0.6960 +51319 729396 0.6540 +51319 729422 0.6540 +51319 729428 0.6540 +51319 729431 0.6540 +51319 729442 0.6540 +51319 729447 0.6540 +51319 729528 0.4960 +51319 100008586 0.6540 +51319 100132399 0.6540 +51319 100287482 0.6110 +51319 100505478 0.6510 +51319 100526842 0.8880 +51319 100529097 0.8440 +51319 100529239 0.8130 +51319 100996746 0.6350 +51319 101929983 0.4960 +51319 102724473 0.6540 +51319 105180390 0.6350 +51319 105180391 0.6350 +51320 51752 0.4970 +51320 54941 0.5470 +51320 55520 0.4560 +51320 55802 0.7350 +51320 56829 0.5650 +51320 56834 0.4200 +51320 57506 0.4190 +51320 79845 0.6120 +51320 84282 0.7010 +51320 84955 0.6220 +51320 89122 0.7550 +51320 147323 0.4260 +51320 170506 0.5220 +51321 54867 0.4320 +51321 57213 0.4350 +51321 57613 0.4480 +51321 127255 0.4470 +51321 147670 0.5270 +51321 353174 0.4340 +51322 51631 0.5100 +51322 51747 0.5440 +51322 54623 0.6330 +51322 55015 0.6200 +51322 55692 0.5250 +51322 55914 0.4890 +51322 55954 0.5500 +51322 56254 0.9680 +51322 57532 0.5030 +51322 58517 0.7130 +51322 60313 0.4990 +51322 60592 0.6700 +51322 79577 0.6180 +51322 79906 0.4620 +51322 80124 0.6650 +51322 80232 0.4920 +51322 80349 0.5060 +51322 80742 0.5550 +51322 83938 0.4550 +51322 84186 0.4490 +51322 84844 0.4490 +51322 84967 0.4950 +51322 85236 0.6410 +51322 123169 0.5480 +51322 220074 0.4550 +51322 220988 0.4080 +51322 255626 0.6410 +51322 255919 0.4800 +51322 347744 0.4820 +51322 392517 0.4390 +51322 100996928 0.5570 +51322 101669762 0.5480 +51324 51663 0.4680 +51324 51699 0.4370 +51324 55122 0.6530 +51324 57165 0.8200 +51324 57704 0.5540 +51324 64092 0.4060 +51324 64225 0.4070 +51324 65055 0.6150 +51324 79152 0.6160 +51324 80031 0.7150 +51324 80055 0.4450 +51324 80208 0.9490 +51324 80227 0.5570 +51324 80821 0.5310 +51324 83547 0.4650 +51324 85007 0.4950 +51324 91574 0.5740 +51324 91647 0.6720 +51324 113612 0.5140 +51324 118813 0.5480 +51324 123606 0.7650 +51324 126133 0.9520 +51324 137492 0.5440 +51324 340075 0.4780 +51326 91775 0.4650 +51326 162540 0.4790 +51326 222962 0.4030 +51326 284058 0.7690 +51326 285989 0.4200 +51326 374819 0.7290 +51326 474170 0.7420 +51326 104909134 0.4070 +51327 51629 0.5000 +51327 53335 0.5390 +51327 55363 0.7480 +51327 55437 0.5640 +51327 58157 0.5390 +51327 80149 0.6080 +51329 53349 0.5120 +51329 54454 0.4220 +51329 55140 0.4120 +51329 55425 0.6210 +51329 79676 0.5760 +51329 79837 0.6850 +51329 79882 0.4280 +51329 88745 0.4010 +51329 205428 0.4070 +51329 222698 0.4440 +51330 55109 0.6660 +51330 115650 0.7110 +51330 163702 0.4590 +51330 407977 0.6970 +51332 55800 0.5000 +51332 57731 0.9190 +51332 63908 0.5250 +51332 140731 0.4730 +51332 642574 0.4730 +51333 55758 0.4770 +51333 80774 0.4600 +51333 115416 0.4420 +51334 57479 0.5400 +51334 201799 0.4870 +51335 54148 0.4580 +51335 54534 0.4260 +51335 55178 0.7000 +51335 55794 0.7920 +51335 63875 0.4330 +51335 64745 0.4530 +51335 79675 0.4280 +51335 81554 0.8480 +51335 84881 0.9490 +51335 85865 0.6850 +51335 92170 0.5110 +51335 115416 0.5620 +51335 130916 0.5160 +51335 285367 0.8930 +51335 387338 0.4760 +51335 100996939 0.4190 +51337 113655 0.4700 +51337 114801 0.4580 +51337 114984 0.5080 +51337 254427 0.4470 +51337 388335 0.4290 +51338 54209 0.6660 +51338 55063 0.5810 +51338 55365 0.4910 +51338 56475 0.4870 +51338 57091 0.5290 +51338 57413 0.4820 +51338 64092 0.4170 +51338 64231 0.7110 +51338 64581 0.6050 +51338 79890 0.5300 +51338 84689 0.4280 +51338 84868 0.5550 +51338 123041 0.5560 +51338 245802 0.9800 +51338 341116 0.8320 +51339 57216 0.8900 +51339 63941 0.4080 +51339 80319 0.4750 +51339 81839 0.7440 +51339 85407 0.4980 +51339 90381 0.5860 +51339 91404 0.7490 +51339 123920 0.4010 +51339 144165 0.4450 +51339 147906 0.4530 +51339 168002 0.4240 +51339 284371 0.4240 +51340 51362 0.9990 +51340 51503 0.9990 +51340 51538 0.4220 +51340 51574 0.4140 +51340 51586 0.4590 +51340 51634 0.9390 +51340 51639 0.8530 +51340 51645 0.9950 +51340 51690 0.9550 +51340 53938 0.5950 +51340 54453 0.5070 +51340 54505 0.4590 +51340 54883 0.9480 +51340 54934 0.6560 +51340 55051 0.6750 +51340 55100 0.9110 +51340 55110 0.8090 +51340 55192 0.5040 +51340 55234 0.4220 +51340 55280 0.7040 +51340 55285 0.5900 +51340 55339 0.4150 +51340 55599 0.5730 +51340 55660 0.5090 +51340 55677 0.5250 +51340 55696 0.9990 +51340 55702 0.9970 +51340 55760 0.6780 +51340 55837 0.5020 +51340 55892 0.4630 +51340 56254 0.7480 +51340 56259 0.9700 +51340 56919 0.6490 +51340 56949 0.9990 +51340 57187 0.5170 +51340 57325 0.5140 +51340 57461 0.9980 +51340 57647 0.4440 +51340 57696 0.4720 +51340 57703 0.9990 +51340 57721 0.4760 +51340 57819 0.9670 +51340 58509 0.9440 +51340 59286 0.8840 +51340 60625 0.6560 +51340 64412 0.4120 +51340 64848 0.4230 +51340 79005 0.8420 +51340 79009 0.4300 +51340 79446 0.8950 +51340 79567 0.4030 +51340 79576 0.8150 +51340 79577 0.4780 +51340 79631 0.7790 +51340 79637 0.9220 +51340 79650 0.7080 +51340 79665 0.4520 +51340 79706 0.8990 +51340 79753 0.9630 +51340 80011 0.8040 +51340 80331 0.8540 +51340 80342 0.4300 +51340 81576 0.6300 +51340 83443 0.9010 +51340 83938 0.7890 +51340 84060 0.8120 +51340 84164 0.4960 +51340 84292 0.7050 +51340 84316 0.6380 +51340 84811 0.9800 +51340 84844 0.9650 +51340 84950 0.9140 +51340 84967 0.8550 +51340 85313 0.4120 +51340 85476 0.7270 +51340 85479 0.8510 +51340 91603 0.9690 +51340 93973 0.6460 +51340 96764 0.5490 +51340 124245 0.5240 +51340 126259 0.6380 +51340 138046 0.6480 +51340 143884 0.9660 +51340 144983 0.4460 +51340 147650 0.6380 +51340 151903 0.9970 +51340 153527 0.9140 +51340 154007 0.7340 +51340 163859 0.8960 +51340 164045 0.8060 +51340 165545 0.6690 +51340 199746 0.4990 +51340 220074 0.7890 +51340 222183 0.7920 +51340 256536 0.8400 +51340 284325 0.8540 +51340 343069 0.5110 +51340 392517 0.4100 +51340 440563 0.5100 +51340 494115 0.5360 +51340 649330 0.4900 +51340 100534599 0.9940 +51340 101669762 0.5030 +51341 53615 0.4110 +51341 54567 0.4090 +51341 54815 0.4900 +51341 54880 0.6110 +51341 55252 0.4090 +51341 57459 0.6250 +51341 57659 0.4730 +51341 57680 0.5680 +51341 64794 0.4580 +51341 201501 0.4040 +51341 441478 0.4350 +51343 51433 0.9990 +51343 51434 0.9990 +51343 51529 0.9490 +51343 51592 0.9940 +51343 54880 0.5700 +51343 55255 0.6180 +51343 57154 0.6430 +51343 57332 0.5660 +51343 57558 0.4790 +51343 57695 0.7080 +51343 63967 0.6450 +51343 64682 0.9980 +51343 65061 0.5270 +51343 79004 0.6190 +51343 79184 0.5640 +51343 79791 0.4760 +51343 79813 0.5480 +51343 79935 0.6200 +51343 80012 0.5900 +51343 80335 0.4070 +51343 81620 0.8290 +51343 81624 0.4470 +51343 81669 0.5060 +51343 83461 0.7480 +51343 84108 0.5450 +51343 84333 0.5450 +51343 84733 0.5490 +51343 84759 0.5490 +51343 85417 0.9050 +51343 90417 0.4280 +51343 92906 0.4150 +51343 119504 0.9830 +51343 122706 0.4020 +51343 126520 0.4720 +51343 140459 0.6460 +51343 143471 0.4020 +51343 146909 0.4550 +51343 163786 0.6000 +51343 166979 0.5670 +51343 221496 0.7920 +51343 246184 0.9960 +51343 286151 0.4740 +51343 375337 0.4050 +51343 387893 0.4420 +51343 388272 0.6750 +51343 494551 0.5220 +51347 51765 0.4920 +51347 55789 0.4080 +51347 55845 0.4050 +51347 55914 0.4120 +51347 57551 0.9440 +51347 161823 0.4390 +51348 51744 0.6790 +51348 53637 0.5990 +51348 54106 0.5630 +51348 55904 0.4150 +51348 57823 0.6660 +51348 79465 0.4270 +51348 80328 0.6050 +51348 80329 0.5530 +51348 83888 0.6760 +51348 84868 0.4320 +51348 92840 0.6980 +51348 114836 0.9360 +51348 117157 0.6810 +51348 135250 0.5270 +51348 154064 0.5080 +51348 201633 0.5320 +51348 259197 0.7900 +51348 353091 0.5070 +51348 374383 0.7000 +51348 387836 0.7950 +51350 54207 0.8830 +51350 56659 0.7160 +51350 56660 0.6660 +51350 59341 0.4470 +51350 60598 0.7160 +51350 63895 0.4440 +51350 79054 0.4800 +51350 83641 0.5590 +51350 83795 0.7220 +51350 89822 0.7200 +51350 112802 0.4210 +51350 121391 0.4250 +51350 140807 0.4230 +51350 144501 0.4050 +51350 196374 0.4730 +51350 286887 0.4330 +51350 319101 0.4120 +51350 338567 0.9870 +51350 338785 0.4180 +51350 374454 0.4350 +51351 127064 0.4460 +51351 128367 0.4180 +51351 139604 0.4790 +51351 148932 0.4470 +51351 390061 0.4160 +51351 391190 0.5060 +51351 441273 0.4550 +51351 548313 0.6480 +51360 55151 0.7220 +51360 55278 0.4250 +51360 60681 0.6870 +51360 64175 0.6240 +51360 64764 0.9010 +51360 79794 0.4150 +51360 79947 0.7390 +51360 81502 0.7090 +51360 81570 0.4100 +51360 84447 0.4580 +51360 84699 0.9530 +51360 90993 0.9260 +51360 92399 0.5320 +51360 116150 0.7380 +51360 139596 0.4400 +51360 148327 0.8860 +51360 151613 0.4150 +51360 158584 0.4470 +51360 387733 0.6050 +51360 404281 0.7460 +51360 440275 0.4960 +51361 51686 0.4030 +51361 54558 0.5880 +51361 55277 0.4460 +51361 57403 0.4280 +51361 57617 0.4270 +51361 57700 0.7790 +51361 57821 0.6640 +51361 64400 0.9940 +51361 64760 0.7080 +51361 64786 0.4210 +51361 66008 0.4030 +51361 80705 0.5360 +51361 81833 0.4940 +51361 83449 0.5750 +51361 83893 0.4060 +51361 84067 0.9900 +51361 84376 0.9870 +51361 85376 0.8830 +51361 89953 0.5380 +51361 90410 0.4540 +51361 92558 0.7120 +51361 136263 0.4490 +51361 136332 0.5770 +51361 140732 0.6930 +51361 146439 0.5140 +51361 158158 0.4080 +51361 254428 0.4230 +51361 256979 0.4800 +51361 283234 0.7680 +51361 283385 0.5690 +51361 283629 0.4980 +51361 374768 0.4090 +51361 400120 0.4320 +51361 729830 0.6970 +51362 51428 0.8740 +51362 51503 0.9990 +51362 51538 0.5480 +51362 51585 0.6200 +51362 51593 0.8160 +51362 51634 0.9370 +51362 51639 0.8740 +51362 51645 0.9990 +51362 51691 0.4280 +51362 51729 0.8580 +51362 51747 0.5410 +51362 51759 0.8190 +51362 53371 0.4660 +51362 53938 0.8720 +51362 54505 0.4030 +51362 54883 0.9970 +51362 55003 0.6420 +51362 55100 0.8540 +51362 55110 0.9200 +51362 55188 0.4220 +51362 55234 0.8210 +51362 55285 0.5570 +51362 55599 0.5140 +51362 55660 0.8440 +51362 55696 0.9990 +51362 55702 0.9970 +51362 55706 0.4130 +51362 55746 0.4930 +51362 55749 0.8170 +51362 55760 0.6260 +51362 56259 0.8600 +51362 56919 0.8180 +51362 56949 0.9990 +51362 57122 0.4370 +51362 57187 0.4850 +51362 57461 0.9930 +51362 57583 0.5140 +51362 57647 0.5750 +51362 57703 0.9990 +51362 57721 0.5240 +51362 57794 0.8070 +51362 57819 0.4330 +51362 58509 0.9680 +51362 58517 0.8240 +51362 59286 0.9640 +51362 60625 0.8430 +51362 63932 0.8170 +51362 64848 0.4380 +51362 65109 0.8160 +51362 79023 0.4380 +51362 79074 0.5340 +51362 79165 0.8450 +51362 79576 0.9650 +51362 79577 0.4590 +51362 79631 0.6030 +51362 79650 0.6020 +51362 79665 0.5380 +51362 79706 0.9870 +51362 79753 0.9590 +51362 79811 0.4200 +51362 79869 0.5340 +51362 79902 0.4470 +51362 80011 0.8010 +51362 80829 0.4440 +51362 81545 0.6010 +51362 81576 0.9670 +51362 81929 0.4680 +51362 83443 0.9570 +51362 83938 0.6170 +51362 84271 0.5080 +51362 84292 0.6630 +51362 84316 0.5320 +51362 84811 0.9890 +51362 84844 0.9610 +51362 84950 0.9740 +51362 84967 0.7700 +51362 85313 0.4350 +51362 85476 0.5910 +51362 90957 0.4030 +51362 91147 0.4430 +51362 96764 0.5710 +51362 113251 0.4710 +51362 124245 0.4400 +51362 126259 0.5310 +51362 129401 0.4210 +51362 138046 0.5890 +51362 140461 0.5350 +51362 143884 0.9980 +51362 147650 0.5310 +51362 151903 0.9970 +51362 153527 0.9700 +51362 154007 0.7150 +51362 163859 0.9800 +51362 164045 0.6560 +51362 165545 0.6230 +51362 199746 0.5420 +51362 220074 0.6170 +51362 221806 0.4460 +51362 222183 0.8760 +51362 246243 0.4300 +51362 283237 0.4310 +51362 348995 0.4500 +51362 392517 0.8450 +51362 100101267 0.4240 +51362 100534599 0.9870 +51363 54480 0.5350 +51363 55454 0.6700 +51363 55501 0.7560 +51363 55684 0.4400 +51363 55790 0.6620 +51363 56548 0.7720 +51363 63827 0.5110 +51363 64131 0.4090 +51363 79586 0.6040 +51363 92126 0.5870 +51363 113189 0.7370 +51363 166012 0.7820 +51363 222537 0.4160 +51363 254956 0.5390 +51364 54768 0.6190 +51364 54919 0.8520 +51364 54970 0.5560 +51364 55011 0.4370 +51364 55036 0.7730 +51364 55130 0.8260 +51364 55172 0.7170 +51364 55567 0.4300 +51364 55764 0.4200 +51364 56171 0.6460 +51364 56683 0.7770 +51364 57539 0.4340 +51364 57578 0.4110 +51364 57728 0.4730 +51364 64446 0.8110 +51364 79819 0.4650 +51364 79864 0.4380 +51364 80217 0.5220 +51364 83450 0.5860 +51364 83538 0.6030 +51364 83659 0.4660 +51364 83894 0.4410 +51364 84229 0.4210 +51364 85016 0.6280 +51364 85478 0.7350 +51364 89765 0.8440 +51364 90506 0.6630 +51364 92749 0.7590 +51364 93233 0.6890 +51364 112752 0.6280 +51364 115399 0.4050 +51364 115948 0.7060 +51364 116138 0.4240 +51364 116143 0.5660 +51364 117245 0.4220 +51364 120379 0.4010 +51364 123872 0.8440 +51364 132851 0.5210 +51364 133690 0.4070 +51364 139212 0.7620 +51364 146845 0.4700 +51364 154865 0.4330 +51364 160762 0.4190 +51364 161582 0.8070 +51364 164781 0.4210 +51364 199223 0.4300 +51364 200132 0.4140 +51364 219681 0.5700 +51364 220136 0.4140 +51364 221421 0.7390 +51364 283237 0.4860 +51364 339829 0.7890 +51364 345643 0.5360 +51364 345895 0.8160 +51364 352909 0.8580 +51364 374407 0.4670 +51364 388389 0.8050 +51364 642574 0.4470 +51365 80821 0.4180 +51365 81490 0.9260 +51365 84636 0.5110 +51365 89876 0.4380 +51365 129642 0.9150 +51365 154141 0.9200 +51365 254531 0.9120 +51366 51582 0.5410 +51366 51585 0.4780 +51366 51755 0.5150 +51366 51806 0.4630 +51366 54433 0.5170 +51366 54822 0.5640 +51366 55148 0.6480 +51366 55209 0.4500 +51366 55593 0.8530 +51366 55656 0.4440 +51366 55660 0.4420 +51366 55870 0.6130 +51366 56252 0.5230 +51366 57148 0.4260 +51366 57217 0.4720 +51366 57448 0.4490 +51366 57532 0.5370 +51366 57551 0.5180 +51366 57599 0.4550 +51366 58517 0.4550 +51366 64112 0.4230 +51366 65125 0.5310 +51366 79577 0.4940 +51366 79848 0.5390 +51366 80204 0.6220 +51366 80232 0.5490 +51366 84131 0.6580 +51366 84193 0.4010 +51366 84933 0.4370 +51366 91860 0.4630 +51366 125972 0.4830 +51366 140890 0.4590 +51366 152006 0.4630 +51366 163688 0.4630 +51366 165918 0.6970 +51366 197131 0.9330 +51366 221302 0.8550 +51366 253260 0.4120 +51366 100532731 0.4970 +51366 100533106 0.4060 +51367 51602 0.9130 +51367 54433 0.7270 +51367 54487 0.7200 +51367 54913 0.9990 +51367 54931 0.6420 +51367 55068 0.5510 +51367 55505 0.9450 +51367 55651 0.8970 +51367 65095 0.8690 +51367 79064 0.4360 +51367 79897 0.9990 +51367 80746 0.5490 +51367 83608 0.6840 +51367 92345 0.9000 +51367 138716 0.9810 +51367 192669 0.7200 +51367 192670 0.7200 +51367 283989 0.5710 +51367 345630 0.5820 +51368 54463 0.7720 +51368 57658 0.6740 +51368 64225 0.4200 +51368 79137 0.5160 +51368 81631 0.5710 +51368 83932 0.5060 +51368 84283 0.6810 +51368 90231 0.4540 +51368 117155 0.4190 +51368 162427 0.5630 +51371 51372 0.6680 +51371 51699 0.4390 +51371 54461 0.4040 +51371 56943 0.5250 +51371 56984 0.9970 +51371 80227 0.7050 +51371 80262 0.4200 +51371 84262 0.8850 +51371 84301 0.4100 +51371 122706 0.7030 +51371 125965 0.4310 +51371 126282 0.6480 +51371 139628 0.4240 +51371 143471 0.8650 +51371 219902 0.5440 +51371 388698 0.5940 +51371 389362 0.9020 +51371 100652824 0.9320 +51372 51504 0.4510 +51372 51639 0.4100 +51372 54543 0.4530 +51372 55505 0.4420 +51372 59286 0.7420 +51372 79714 0.4190 +51372 79741 0.4020 +51372 80774 0.4300 +51372 81892 0.4590 +51372 84901 0.4270 +51372 170622 0.4500 +51373 51642 0.9020 +51373 51649 0.9890 +51373 51650 0.9940 +51373 54148 0.8740 +51373 54460 0.9920 +51373 54516 0.5370 +51373 54534 0.8800 +51373 54948 0.8550 +51373 54998 0.9840 +51373 55037 0.9760 +51373 55052 0.9350 +51373 55168 0.9880 +51373 55173 0.9930 +51373 55316 0.4140 +51373 56945 0.9950 +51373 57129 0.8670 +51373 60488 0.9830 +51373 63875 0.9100 +51373 63931 0.9970 +51373 64432 0.9950 +51373 64745 0.8590 +51373 64928 0.8800 +51373 64949 0.9950 +51373 64951 0.9850 +51373 64960 0.9980 +51373 64963 0.9900 +51373 64965 0.9860 +51373 64968 0.9930 +51373 64969 0.9950 +51373 64975 0.8750 +51373 64976 0.8840 +51373 64978 0.8520 +51373 64979 0.8900 +51373 64981 0.9030 +51373 64983 0.8880 +51373 65003 0.9160 +51373 65005 0.8730 +51373 65008 0.8570 +51373 65080 0.9180 +51373 65993 0.9900 +51373 78988 0.8840 +51373 79590 0.8840 +51373 79863 0.8290 +51373 81892 0.4610 +51373 84273 0.8590 +51373 84311 0.9110 +51373 84545 0.8710 +51373 84617 0.6560 +51373 84769 0.4820 +51373 85476 0.8120 +51373 90480 0.8800 +51373 92259 0.8160 +51373 92399 0.8850 +51373 115416 0.4780 +51373 116540 0.8270 +51373 116541 0.8750 +51373 118487 0.9880 +51373 122704 0.8590 +51373 124995 0.8580 +51373 128308 0.8810 +51373 134218 0.4240 +51373 196074 0.8460 +51373 219402 0.9300 +51373 219927 0.8830 +51373 349075 0.5170 +51373 441531 0.4670 +51375 51429 0.5660 +51375 51699 0.7010 +51375 55227 0.4080 +51375 55614 0.4420 +51375 55737 0.7120 +51375 58533 0.7720 +51375 64422 0.4230 +51375 79856 0.4490 +51375 81609 0.4970 +51375 84062 0.5840 +51375 112936 0.6100 +51375 163404 0.5480 +51375 254122 0.7630 +51375 259266 0.5020 +51375 282991 0.8490 +51377 51633 0.5360 +51377 54556 0.9020 +51377 54617 0.9900 +51377 54726 0.4620 +51377 54764 0.5600 +51377 54801 0.6990 +51377 54891 0.9340 +51377 55031 0.5480 +51377 55119 0.8640 +51377 55252 0.8870 +51377 55559 0.8590 +51377 55593 0.4950 +51377 55611 0.6220 +51377 55929 0.5460 +51377 56254 0.5470 +51377 56957 0.4230 +51377 57154 0.6120 +51377 57510 0.4510 +51377 57559 0.5400 +51377 57599 0.4840 +51377 57602 0.4360 +51377 57634 0.9020 +51377 57646 0.6520 +51377 57663 0.4060 +51377 57695 0.5240 +51377 64431 0.6130 +51377 64750 0.8320 +51377 64854 0.4510 +51377 78990 0.4680 +51377 79184 0.5370 +51377 79913 0.9900 +51377 80124 0.4360 +51377 80212 0.8100 +51377 80227 0.9170 +51377 81611 0.9330 +51377 83444 0.9800 +51377 83844 0.5010 +51377 84196 0.4840 +51377 84220 0.4280 +51377 84301 0.4370 +51377 84640 0.4170 +51377 84749 0.4280 +51377 89777 0.4880 +51377 90557 0.5910 +51377 91409 0.8410 +51377 92552 0.5370 +51377 93973 0.9880 +51377 114803 0.4550 +51377 122706 0.6550 +51377 123228 0.4940 +51377 125476 0.9800 +51377 126119 0.6280 +51377 130617 0.5910 +51377 134510 0.6710 +51377 143471 0.6510 +51377 203562 0.4300 +51377 219333 0.5470 +51377 220213 0.4140 +51377 221302 0.8000 +51377 283899 0.9860 +51377 414301 0.4470 +51377 653499 0.4420 +51379 55352 0.6930 +51379 55803 0.7090 +51379 55813 0.8020 +51379 63920 0.5050 +51379 79736 0.7090 +51379 79915 0.6310 +51379 84282 0.5810 +51379 84313 0.4800 +51379 84440 0.6170 +51379 84859 0.4430 +51379 114659 0.7250 +51379 133121 0.4550 +51379 169841 0.4060 +51380 56920 0.4160 +51380 64850 0.4200 +51380 64902 0.9480 +51380 84890 0.9690 +51380 85007 0.4620 +51380 124975 0.9070 +51380 137362 0.8190 +51380 339896 0.9030 +51382 51528 0.4140 +51382 51606 0.9990 +51382 51631 0.4240 +51382 54468 0.5110 +51382 55004 0.6900 +51382 55119 0.4260 +51382 55846 0.4990 +51382 55860 0.4210 +51382 57019 0.4400 +51382 57465 0.4150 +51382 57521 0.5410 +51382 57707 0.9260 +51382 58528 0.5560 +51382 60592 0.4760 +51382 64077 0.6550 +51382 64121 0.6100 +51382 64223 0.4990 +51382 79095 0.8320 +51382 79726 0.5130 +51382 79877 0.5790 +51382 80148 0.4540 +51382 80347 0.5980 +51382 81929 0.5090 +51382 83667 0.4990 +51382 84219 0.4990 +51382 84317 0.9290 +51382 90423 0.9990 +51382 96459 0.4430 +51382 127124 0.9860 +51382 135112 0.5650 +51382 140711 0.6450 +51382 144577 0.4990 +51382 147007 0.9300 +51382 153129 0.5060 +51382 154743 0.4050 +51382 155066 0.9710 +51382 201163 0.5950 +51382 221264 0.4550 +51382 245972 0.9990 +51382 245973 0.9970 +51382 374897 0.4020 +51382 389541 0.6620 +51382 440400 0.9970 +51382 652968 0.4080 +51382 729438 0.4280 +51382 100996928 0.4220 +51382 102157402 0.7920 +51384 54361 0.7100 +51384 54556 0.4010 +51384 64222 0.4200 +51384 64840 0.9530 +51384 65084 0.5170 +51384 79971 0.8810 +51384 79974 0.7020 +51384 80129 0.4260 +51384 80326 0.6160 +51384 80351 0.4860 +51384 81029 0.7080 +51384 84870 0.4790 +51384 89780 0.7440 +51384 147111 0.9420 +51384 283149 0.4510 +51385 157807 0.4100 +51386 51493 0.5800 +51386 51647 0.6180 +51386 54505 0.5980 +51386 55173 0.5430 +51386 55272 0.4770 +51386 55316 0.4800 +51386 55601 0.4220 +51386 55651 0.4640 +51386 57470 0.4440 +51386 60678 0.5100 +51386 63931 0.4870 +51386 64960 0.4860 +51386 64963 0.5020 +51386 64969 0.5390 +51386 84954 0.4240 +51386 114987 0.5430 +51386 120892 0.5140 +51386 126402 0.4910 +51386 140032 0.5880 +51386 155061 0.4670 +51386 255308 0.5450 +51386 286187 0.4370 +51386 347487 0.4390 +51386 728689 0.9970 +51386 100287482 0.4220 +51386 100529239 0.5600 +51386 100996746 0.5490 +51388 51491 0.8230 +51388 51504 0.6630 +51388 51575 0.6320 +51388 51602 0.9360 +51388 51605 0.4610 +51388 51611 0.5700 +51388 51728 0.4260 +51388 54433 0.7900 +51388 54475 0.6490 +51388 54512 0.4780 +51388 54517 0.6360 +51388 54552 0.9540 +51388 54555 0.7660 +51388 54606 0.5260 +51388 54663 0.9780 +51388 54888 0.7440 +51388 55003 0.9230 +51388 55006 0.4180 +51388 55011 0.4070 +51388 55027 0.4070 +51388 55035 0.9690 +51388 55127 0.7470 +51388 55131 0.9380 +51388 55140 0.5170 +51388 55153 0.7680 +51388 55226 0.6970 +51388 55239 0.4840 +51388 55272 0.9550 +51388 55299 0.9990 +51388 55319 0.7480 +51388 55341 0.8340 +51388 55505 0.7390 +51388 55591 0.4200 +51388 55621 0.4050 +51388 55646 0.8730 +51388 55651 0.9750 +51388 55695 0.6960 +51388 55720 0.8840 +51388 55759 0.9990 +51388 55760 0.7150 +51388 55781 0.4710 +51388 55794 0.5150 +51388 55813 0.8990 +51388 56342 0.8660 +51388 56647 0.5640 +51388 56829 0.5590 +51388 56902 0.8380 +51388 56915 0.6950 +51388 56993 0.4680 +51388 57050 0.8320 +51388 57062 0.7210 +51388 57109 0.7720 +51388 57418 0.7970 +51388 57647 0.6090 +51388 57696 0.9330 +51388 58528 0.7180 +51388 60314 0.4230 +51388 60487 0.6380 +51388 63899 0.6860 +51388 64118 0.4900 +51388 64121 0.7230 +51388 64216 0.7940 +51388 64318 0.9790 +51388 64425 0.8390 +51388 64782 0.4610 +51388 64794 0.5990 +51388 65083 0.6520 +51388 65121 0.4180 +51388 65122 0.4180 +51388 79009 0.5040 +51388 79039 0.6360 +51388 79050 0.8190 +51388 79080 0.6550 +51388 79159 0.7850 +51388 79571 0.5960 +51388 79590 0.6650 +51388 79730 0.6880 +51388 79833 0.4730 +51388 79954 0.5960 +51388 80135 0.9970 +51388 80777 0.4440 +51388 81627 0.4190 +51388 81875 0.5520 +51388 81887 0.6290 +51388 83479 0.4880 +51388 83480 0.4040 +51388 83743 0.9190 +51388 84128 0.9020 +51388 84135 0.8190 +51388 84154 0.9960 +51388 84172 0.8010 +51388 84273 0.6290 +51388 84294 0.8380 +51388 84365 0.9990 +51388 84549 0.9930 +51388 84916 0.9140 +51388 84946 0.7350 +51388 88745 0.6310 +51388 90121 0.7160 +51388 90441 0.7060 +51388 91646 0.4860 +51388 92170 0.6130 +51388 92856 0.9690 +51388 115708 0.5870 +51388 116832 0.4730 +51388 116966 0.6070 +51388 117246 0.9950 +51388 118460 0.4770 +51388 130916 0.4310 +51388 133482 0.4260 +51388 142940 0.5970 +51388 146212 0.9320 +51388 146456 0.5060 +51388 153443 0.6260 +51388 161424 0.5760 +51388 165545 0.7120 +51388 200916 0.7940 +51388 221078 0.9670 +51388 221830 0.7480 +51388 253714 0.4260 +51388 254268 0.7480 +51388 285855 0.8800 +51388 317781 0.5770 +51388 343068 0.4180 +51388 343070 0.4180 +51388 344758 0.4830 +51388 345630 0.7240 +51388 375035 0.5400 +51388 387129 0.8130 +51388 387338 0.7420 +51388 390999 0.4180 +51388 391002 0.4180 +51388 400735 0.4180 +51388 400736 0.4180 +51388 440560 0.4180 +51388 440561 0.4180 +51388 441873 0.4180 +51388 645051 0.4540 +51388 645073 0.4540 +51388 645359 0.4180 +51388 653619 0.4180 +51388 692312 0.6420 +51388 729396 0.4540 +51388 729422 0.4540 +51388 729428 0.4540 +51388 729431 0.4540 +51388 729442 0.4540 +51388 729447 0.4540 +51388 729528 0.4180 +51388 100008586 0.4540 +51388 100132399 0.4540 +51388 100505478 0.7400 +51388 100526842 0.7810 +51388 101929983 0.4180 +51388 102724473 0.4540 +51389 51575 0.4590 +51389 55324 0.4490 +51389 55854 0.9170 +51389 56647 0.5130 +51389 65008 0.4070 +51389 80013 0.4520 +51389 84993 0.4720 +51389 90324 0.4870 +51389 112611 0.6750 +51389 116228 0.4820 +51389 126299 0.5180 +51389 134829 0.4430 +51389 201965 0.5910 +51389 494143 0.4590 +51389 100137047 0.4120 +51389 102724473 0.4470 +51390 55303 0.4410 +51390 55340 0.4930 +51390 56937 0.4480 +51390 80196 0.4420 +51390 93979 0.5850 +51390 155435 0.4350 +51390 168537 0.5580 +51390 170575 0.5320 +51390 474344 0.4040 +51393 51806 0.5450 +51393 54795 0.8480 +51393 54822 0.9780 +51393 55283 0.5230 +51393 57153 0.5020 +51393 57192 0.7560 +51393 63895 0.5150 +51393 64746 0.4950 +51393 79054 0.9290 +51393 80036 0.8250 +51393 80228 0.4220 +51393 84876 0.4640 +51393 91860 0.4600 +51393 93129 0.4650 +51393 139760 0.4530 +51393 140803 0.6800 +51393 163688 0.4530 +51393 222236 0.4090 +51393 255231 0.5440 +51393 388336 0.5440 +51397 51501 0.5550 +51397 51514 0.5030 +51397 51665 0.4990 +51397 51666 0.4990 +51397 51676 0.5140 +51397 51699 0.8640 +51397 53339 0.5240 +51397 54165 0.5520 +51397 54520 0.9710 +51397 54876 0.5000 +51397 54939 0.9570 +51397 54951 0.9700 +51397 55175 0.4990 +51397 55208 0.4990 +51397 55527 0.4990 +51397 55827 0.5580 +51397 55832 0.5170 +51397 55884 0.5040 +51397 55958 0.5210 +51397 56929 0.5110 +51397 56995 0.4990 +51397 57020 0.8760 +51397 57542 0.4990 +51397 64326 0.5070 +51397 64344 0.5020 +51397 64410 0.4990 +51397 64708 0.4350 +51397 79016 0.5210 +51397 79269 0.5440 +51397 79594 0.4050 +51397 79754 0.5000 +51397 80067 0.5100 +51397 80176 0.4990 +51397 80344 0.5040 +51397 84078 0.5040 +51397 84259 0.5230 +51397 84541 0.5040 +51397 84727 0.4990 +51397 84861 0.4990 +51397 89890 0.5000 +51397 90135 0.4990 +51397 90293 0.4990 +51397 90864 0.4990 +51397 92369 0.4990 +51397 92591 0.4990 +51397 93233 0.4310 +51397 122416 0.4990 +51397 122769 0.5110 +51397 123879 0.4990 +51397 127247 0.4990 +51397 136371 0.4990 +51397 140456 0.4990 +51397 140458 0.4990 +51397 140459 0.4990 +51397 140460 0.5040 +51397 140461 0.4990 +51397 140462 0.5000 +51397 140739 0.5040 +51397 140825 0.4990 +51397 142685 0.4990 +51397 142686 0.4990 +51397 142689 0.4990 +51397 143187 0.4570 +51397 149951 0.9760 +51397 150684 0.9800 +51397 154043 0.6060 +51397 154881 0.4990 +51397 170622 0.9780 +51397 200845 0.5170 +51397 390594 0.4990 +51397 392390 0.4310 +51397 401036 0.4990 +51397 404636 0.8270 +51397 441933 0.6070 +51398 51506 0.4070 +51398 51726 0.5400 +51398 54499 0.5990 +51398 55172 0.5400 +51398 55176 0.4290 +51398 55651 0.4080 +51398 55969 0.4840 +51398 56926 0.5160 +51398 56984 0.5550 +51398 57003 0.9090 +51398 59286 0.4670 +51398 79657 0.5400 +51398 81572 0.5520 +51398 83442 0.4040 +51398 83443 0.4160 +51398 84292 0.6690 +51398 84304 0.5470 +51398 116832 0.4480 +51398 120379 0.5400 +51398 140801 0.4620 +51398 143689 0.4860 +51398 150160 0.5400 +51398 200916 0.4450 +51398 347733 0.8940 +51398 389668 0.4320 +51398 391723 0.4720 +51398 100527943 0.4700 +51399 51693 0.9990 +51399 55014 0.5400 +51399 55256 0.4260 +51399 55262 0.8020 +51399 55275 0.4890 +51399 55684 0.5400 +51399 57111 0.4590 +51399 57533 0.7060 +51399 58485 0.9990 +51399 60684 0.9910 +51399 79033 0.5000 +51399 79090 0.9990 +51399 79370 0.7510 +51399 80006 0.9510 +51399 81551 0.6310 +51399 81876 0.9300 +51399 83452 0.5890 +51399 83460 0.4050 +51399 84299 0.4140 +51399 84952 0.5390 +51399 85438 0.7170 +51399 89866 0.5260 +51399 117177 0.6020 +51399 122553 0.9990 +51399 126003 0.9990 +51399 134147 0.4800 +51399 163782 0.6200 +51399 167691 0.8470 +51399 285180 0.4860 +51399 339122 0.6410 +51399 401409 0.6130 +51399 100128327 0.9960 +51400 51451 0.9200 +51400 55671 0.5070 +51400 55844 0.8600 +51400 57552 0.4490 +51400 57650 0.6730 +51400 58489 0.4070 +51400 79728 0.4960 +51400 81926 0.4490 +51400 83451 0.4090 +51400 83604 0.4020 +51400 132949 0.4220 +51400 151987 0.6970 +51400 261726 0.4890 +51406 51602 0.8200 +51406 54663 0.4750 +51406 55127 0.8130 +51406 55159 0.4250 +51406 55226 0.8080 +51406 55272 0.8270 +51406 55813 0.8200 +51406 56647 0.5350 +51406 56902 0.8090 +51406 57050 0.8180 +51406 57647 0.8040 +51406 63906 0.4630 +51406 64419 0.5770 +51406 65083 0.8100 +51406 79009 0.4810 +51406 79050 0.8290 +51406 79089 0.4500 +51406 79591 0.5650 +51406 79882 0.4590 +51406 79954 0.8670 +51406 81873 0.7720 +51406 83607 0.5470 +51406 84128 0.9310 +51406 84135 0.9210 +51406 84916 0.9570 +51406 84950 0.4870 +51406 84991 0.4470 +51406 85406 0.4270 +51406 91582 0.8200 +51406 91949 0.4120 +51406 92856 0.8290 +51406 128061 0.8030 +51409 51504 0.9170 +51409 51805 0.4190 +51409 54516 0.9780 +51409 54784 0.5520 +51409 55039 0.5010 +51409 55644 0.4700 +51409 60487 0.5450 +51409 64863 0.5290 +51409 79693 0.6120 +51409 79922 0.4410 +51409 84245 0.6590 +51409 90353 0.4020 +51409 91574 0.8220 +51409 91801 0.4810 +51409 92399 0.4770 +51409 127428 0.4150 +51409 144404 0.4260 +51409 147965 0.4510 +51409 219899 0.4610 +51409 221143 0.4850 +51409 284697 0.4580 +51409 285521 0.4180 +51409 399818 0.4990 +51412 51742 0.8910 +51412 51780 0.6510 +51412 53335 0.8950 +51412 54556 0.7980 +51412 54617 0.4680 +51412 54799 0.5940 +51412 54934 0.5750 +51412 55167 0.5510 +51412 55193 0.9580 +51412 55257 0.7380 +51412 55274 0.9920 +51412 55352 0.5020 +51412 55683 0.5550 +51412 55689 0.6940 +51412 55818 0.6620 +51412 55860 0.5260 +51412 55870 0.4200 +51412 55929 0.9590 +51412 57492 0.9640 +51412 57634 0.9370 +51412 58155 0.5910 +51412 58190 0.5090 +51412 64769 0.9270 +51412 64919 0.8860 +51412 65980 0.9330 +51412 78997 0.4320 +51412 79084 0.5740 +51412 79913 0.6290 +51412 80129 0.4560 +51412 80314 0.9100 +51412 83482 0.4390 +51412 84148 0.7530 +51412 84530 0.4170 +51412 93973 0.9000 +51412 94121 0.5430 +51412 94239 0.5720 +51412 125476 0.4880 +51412 140625 0.4010 +51412 151050 0.5400 +51412 196528 0.9680 +51412 222183 0.4050 +51412 255877 0.5610 +51412 284058 0.5520 +51412 339287 0.5860 +51412 345651 0.6980 +51412 375189 0.4480 +51412 440093 0.4680 +51412 440686 0.4680 +51412 653604 0.6660 +51412 728294 0.5920 +51412 728378 0.7300 +51421 55114 0.9390 +51421 55233 0.6970 +51421 57520 0.4020 +51421 57551 0.4550 +51421 60485 0.7780 +51421 64398 0.8080 +51421 80351 0.6970 +51421 81847 0.4840 +51421 83478 0.4460 +51421 92359 0.4160 +51421 92597 0.6910 +51421 122786 0.5590 +51421 126374 0.4220 +51421 154796 0.9660 +51421 154810 0.9170 +51422 51719 0.7770 +51422 51764 0.6610 +51422 51778 0.5880 +51422 53632 0.9460 +51422 54331 0.6590 +51422 55004 0.5190 +51422 55437 0.7340 +51422 55626 0.5100 +51422 55970 0.6510 +51422 57158 0.5740 +51422 57521 0.9310 +51422 57600 0.4100 +51422 57620 0.7610 +51422 57761 0.4250 +51422 58528 0.5650 +51422 59345 0.6700 +51422 60673 0.5160 +51422 64121 0.5500 +51422 64223 0.5260 +51422 64421 0.7990 +51422 79188 0.5670 +51422 79369 0.4130 +51422 79602 0.5590 +51422 81617 0.7240 +51422 81629 0.4250 +51422 81631 0.4750 +51422 81932 0.4160 +51422 83667 0.7010 +51422 83942 0.4530 +51422 83983 0.4250 +51422 84254 0.5390 +51422 84335 0.6810 +51422 84665 0.5320 +51422 85366 0.7140 +51422 91624 0.4330 +51422 92335 0.7390 +51422 92912 0.5310 +51422 94235 0.6500 +51422 96459 0.4500 +51422 116224 0.4030 +51422 125972 0.5370 +51422 129807 0.4050 +51422 134285 0.4200 +51422 140735 0.5140 +51422 140838 0.4160 +51422 143686 0.7120 +51422 146330 0.4040 +51422 153129 0.5060 +51422 200186 0.9150 +51422 282996 0.5250 +51422 283629 0.4250 +51422 389541 0.4990 +51422 100130890 0.4380 +51422 100131187 0.4380 +51426 51455 0.9840 +51426 54107 0.4460 +51426 56655 0.4480 +51426 56852 0.7490 +51426 57697 0.4930 +51426 64098 0.4990 +51426 79728 0.5280 +51426 79734 0.4770 +51426 80010 0.4470 +51426 80213 0.6240 +51426 80273 0.4030 +51426 81570 0.4340 +51426 83990 0.5850 +51426 116028 0.4080 +51426 124739 0.5260 +51426 353497 0.6060 +51427 83698 0.4700 +51427 171392 0.4010 +51427 100288413 0.4370 +51428 51631 0.4840 +51428 51645 0.8190 +51428 51692 0.4160 +51428 54106 0.5380 +51428 54505 0.4930 +51428 54540 0.4650 +51428 54555 0.5350 +51428 54606 0.5070 +51428 54790 0.4140 +51428 54809 0.4450 +51428 54883 0.5580 +51428 54963 0.4400 +51428 55094 0.5420 +51428 55100 0.5170 +51428 55131 0.4060 +51428 55154 0.4450 +51428 55601 0.6040 +51428 55660 0.4310 +51428 55696 0.4090 +51428 55702 0.5220 +51428 56259 0.6120 +51428 56919 0.5300 +51428 56949 0.4560 +51428 57506 0.7530 +51428 58517 0.5540 +51428 60625 0.6850 +51428 60626 0.4070 +51428 64135 0.6120 +51428 64601 0.5620 +51428 65109 0.8110 +51428 79084 0.4460 +51428 79102 0.5120 +51428 79132 0.5650 +51428 79228 0.4660 +51428 79576 0.8470 +51428 79665 0.4170 +51428 80198 0.4930 +51428 80347 0.4080 +51428 81030 0.6020 +51428 81844 0.5520 +51428 84081 0.5230 +51428 84271 0.5090 +51428 84295 0.4050 +51428 84955 0.6290 +51428 90933 0.4280 +51428 115004 0.8730 +51428 143884 0.4990 +51428 149628 0.4450 +51428 170506 0.7400 +51428 171023 0.4900 +51428 197358 0.4280 +51428 199746 0.5010 +51428 219285 0.4490 +51428 340061 0.8500 +51428 442862 0.5950 +51428 100996928 0.4750 +51429 51699 0.4700 +51429 54874 0.6920 +51429 54885 0.5130 +51429 55040 0.6990 +51429 55211 0.4380 +51429 55330 0.4990 +51429 55707 0.4350 +51429 55737 0.4890 +51429 58533 0.6040 +51429 64089 0.4750 +51429 79705 0.4220 +51429 81567 0.5100 +51429 81609 0.4100 +51429 84062 0.5000 +51429 84333 0.5310 +51429 84947 0.4880 +51429 89848 0.8130 +51429 90203 0.4430 +51429 112574 0.9620 +51429 115548 0.7350 +51429 130340 0.5060 +51429 133482 0.4630 +51429 254122 0.5440 +51429 257364 0.9680 +51429 286451 0.4990 +51429 388552 0.5090 +51429 404672 0.4180 +51429 114483834 0.4250 +51430 54583 0.4170 +51430 55016 0.4640 +51430 56943 0.4120 +51430 57003 0.4060 +51430 58511 0.4200 +51430 79852 0.4100 +51430 80321 0.4080 +51430 115703 0.6180 +51430 202018 0.6860 +51430 255738 0.4320 +51430 339416 0.4330 +51430 390598 0.5490 +51430 730159 0.4070 +51430 100423062 0.6050 +51430 102723407 0.5810 +51433 51434 0.9990 +51433 51529 0.9990 +51433 51592 0.9940 +51433 51668 0.8970 +51433 51759 0.4790 +51433 54880 0.9010 +51433 55379 0.4640 +51433 55746 0.4810 +51433 57332 0.9000 +51433 57505 0.7730 +51433 57587 0.6490 +51433 57695 0.4430 +51433 64431 0.4070 +51433 64682 0.9990 +51433 79184 0.9040 +51433 79813 0.5590 +51433 79917 0.6220 +51433 80012 0.9010 +51433 81556 0.4040 +51433 81620 0.5980 +51433 84108 0.9030 +51433 84333 0.5470 +51433 84446 0.4350 +51433 84733 0.9000 +51433 84759 0.5470 +51433 85417 0.7130 +51433 114880 0.4010 +51433 119504 0.9990 +51433 140459 0.5460 +51433 166979 0.7420 +51433 199857 0.4020 +51433 246184 0.9990 +51433 375061 0.8480 +51433 388272 0.6200 +51434 51529 0.9850 +51434 51592 0.9940 +51434 51649 0.4020 +51434 51668 0.5250 +51434 54880 0.9020 +51434 55226 0.5050 +51434 55339 0.4710 +51434 55705 0.4430 +51434 57332 0.9000 +51434 57505 0.4120 +51434 57510 0.5340 +51434 57587 0.6050 +51434 57695 0.4240 +51434 64682 0.9990 +51434 79075 0.4320 +51434 79184 0.9090 +51434 79813 0.5430 +51434 79902 0.4420 +51434 79917 0.6990 +51434 80012 0.9000 +51434 80212 0.4370 +51434 81620 0.6220 +51434 84108 0.9120 +51434 84333 0.5470 +51434 84516 0.4360 +51434 84733 0.9010 +51434 84759 0.5560 +51434 85417 0.7090 +51434 92105 0.4390 +51434 119504 0.9990 +51434 140459 0.5660 +51434 153770 0.4130 +51434 161145 0.4740 +51434 166979 0.6000 +51434 246184 0.9980 +51434 348995 0.4520 +51434 375061 0.5620 +51434 388272 0.6460 +51435 51692 0.9660 +51435 53981 0.7510 +51435 57085 0.4270 +51435 80341 0.4290 +51435 81035 0.4180 +51435 85302 0.5460 +51435 91522 0.4890 +51435 138050 0.4510 +51435 143689 0.4940 +51435 286133 0.5400 +51438 53340 0.7360 +51438 54780 0.6570 +51438 54967 0.4480 +51438 55511 0.8120 +51438 55743 0.4110 +51438 56001 0.5440 +51438 64110 0.4850 +51438 64648 0.4510 +51438 64663 0.5610 +51438 79677 0.5230 +51438 81603 0.5280 +51438 84519 0.4470 +51438 84696 0.4050 +51438 90737 0.7370 +51438 93273 0.4010 +51438 139135 0.6660 +51438 139422 0.4230 +51438 139599 0.4540 +51438 158511 0.4560 +51438 158521 0.4810 +51438 158809 0.4040 +51438 163126 0.4420 +51438 197370 0.5000 +51438 283208 0.5570 +51438 285489 0.4440 +51438 285782 0.4800 +51438 286053 0.4930 +51438 493861 0.6540 +51438 541466 0.6030 +51438 548313 0.5420 +51438 645073 0.4600 +51438 653220 0.4240 +51438 727837 0.6220 +51438 728343 0.5090 +51438 728712 0.4540 +51438 729447 0.5100 +51438 100008586 0.5200 +51439 51465 0.6340 +51439 55161 0.4800 +51439 55658 0.4160 +51439 55831 0.5940 +51439 57182 0.4830 +51439 57414 0.5400 +51439 64224 0.5040 +51439 64421 0.4140 +51439 64422 0.7290 +51439 79089 0.5070 +51439 79139 0.7010 +51439 79446 0.5330 +51439 81790 0.5090 +51439 83590 0.5740 +51439 84447 0.9880 +51439 91319 0.6450 +51439 91445 0.5090 +51439 92305 0.4300 +51439 131601 0.4730 +51439 144699 0.4690 +51439 200010 0.4600 +51439 284361 0.4890 +51439 337867 0.4110 +51439 401236 0.4740 +51440 54802 0.4350 +51440 59283 0.4630 +51440 79012 0.4160 +51440 84618 0.5080 +51440 146330 0.4430 +51440 197335 0.4300 +51440 348487 0.7130 +51441 51504 0.4030 +51441 51603 0.4720 +51441 51605 0.5590 +51441 51676 0.5710 +51441 54464 0.6860 +51441 54487 0.4790 +51441 54542 0.4930 +51441 54888 0.5730 +51441 54890 0.9050 +51441 54915 0.6930 +51441 54931 0.5120 +51441 55006 0.5040 +51441 55294 0.6170 +51441 55571 0.4040 +51441 55802 0.5170 +51441 56257 0.4460 +51441 56339 0.9520 +51441 57472 0.4910 +51441 57592 0.6690 +51441 57721 0.9580 +51441 63935 0.4810 +51441 64783 0.8570 +51441 64848 0.6740 +51441 64863 0.5990 +51441 79058 0.4920 +51441 79066 0.7920 +51441 79068 0.8920 +51441 79132 0.4100 +51441 79830 0.4160 +51441 79872 0.7240 +51441 91746 0.6940 +51441 115708 0.5430 +51441 149041 0.4590 +51441 167227 0.4810 +51441 196441 0.6010 +51441 221120 0.6190 +51441 246175 0.4860 +51441 253943 0.9800 +51441 284071 0.4960 +51442 55787 0.4340 +51442 121506 0.4080 +51442 139081 0.4170 +51442 389136 0.4270 +51444 51701 0.7000 +51444 55658 0.6080 +51444 56302 0.4220 +51444 56965 0.5200 +51444 57162 0.4230 +51444 57469 0.4640 +51444 64087 0.5470 +51444 79668 0.5240 +51444 79728 0.5860 +51444 137362 0.4220 +51444 143941 0.4540 +51444 154313 0.4130 +51444 165918 0.4350 +51444 266812 0.4470 +51444 100302736 0.4130 +51447 55213 0.4280 +51447 55527 0.4350 +51447 58510 0.4460 +51447 64768 0.9640 +51447 80824 0.7010 +51447 117283 0.9130 +51447 131601 0.4260 +51447 221830 0.7730 +51447 222484 0.6690 +51449 51599 0.5400 +51449 55033 0.4030 +51449 55829 0.7200 +51449 55911 0.5400 +51449 55937 0.8150 +51449 56983 0.4140 +51449 79135 0.5520 +51449 80020 0.4590 +51449 80325 0.4150 +51449 83989 0.5270 +51449 84270 0.4340 +51449 116519 0.7290 +51449 117159 0.4260 +51449 140730 0.4420 +51449 153770 0.5230 +51449 100528017 0.5650 +51449 100529261 0.4460 +51449 100996939 0.4700 +51450 60681 0.4860 +51450 84913 0.4650 +51450 117581 0.4220 +51451 51504 0.4570 +51451 51657 0.4070 +51451 55039 0.4770 +51451 55844 0.4100 +51451 57650 0.4150 +51451 57718 0.4430 +51451 58157 0.4450 +51451 64285 0.4300 +51451 84545 0.6330 +51451 127253 0.4750 +51451 129450 0.4520 +51451 151987 0.7480 +51451 261726 0.7250 +51451 283237 0.4400 +51454 51763 0.4240 +51454 55113 0.4900 +51454 55576 0.8640 +51454 55764 0.9900 +51454 57539 0.7680 +51454 58533 0.5460 +51454 63916 0.9380 +51454 79767 0.9070 +51454 84465 0.5450 +51454 84466 0.8700 +51454 84541 0.4030 +51454 91010 0.4180 +51454 91461 0.4100 +51454 91937 0.4800 +51454 93986 0.4030 +51454 202374 0.4170 +51454 375033 0.4850 +51454 387923 0.4820 +51454 729830 0.5110 +51455 51588 0.4410 +51455 51750 0.4330 +51455 54468 0.4360 +51455 54537 0.4200 +51455 54617 0.6610 +51455 55120 0.5040 +51455 55215 0.7360 +51455 55247 0.5480 +51455 56852 0.8600 +51455 56897 0.5690 +51455 56941 0.4480 +51455 57379 0.5860 +51455 57599 0.4470 +51455 57697 0.6790 +51455 60681 0.5250 +51455 79728 0.4630 +51455 79915 0.4010 +51455 80119 0.6580 +51455 80174 0.4330 +51455 80198 0.7270 +51455 80233 0.4320 +51455 83932 0.5270 +51455 83990 0.6800 +51455 84083 0.4840 +51455 84464 0.5290 +51455 84893 0.5790 +51455 90799 0.4780 +51455 91442 0.6060 +51455 113510 0.4410 +51455 114799 0.4690 +51455 124739 0.5380 +51455 199990 0.8950 +51455 200558 0.4340 +51455 201973 0.7160 +51455 252969 0.5320 +51455 257218 0.5560 +51455 353497 0.6650 +51455 375748 0.4280 +51455 387521 0.4060 +51455 387522 0.4470 +51455 548593 0.4200 +51455 100533467 0.4230 +51458 55215 0.4170 +51458 55317 0.4340 +51458 90381 0.4670 +51458 138046 0.6400 +51458 389015 0.5540 +51460 54165 0.4390 +51460 55758 0.4500 +51460 57486 0.4780 +51460 58492 0.4800 +51460 79369 0.5090 +51460 80128 0.4460 +51460 80205 0.4170 +51460 84108 0.4560 +51460 84456 0.6570 +51460 92799 0.4320 +51460 92912 0.4800 +51460 134285 0.5380 +51463 54768 0.4430 +51463 55253 0.5330 +51463 84265 0.5150 +51463 113510 0.4380 +51463 114803 0.4400 +51463 114879 0.6300 +51463 114882 0.6760 +51463 200030 0.7320 +51463 256471 0.4980 +51463 390212 0.5310 +51463 552900 0.4660 +51463 645142 0.4160 +51463 653519 0.7800 +51463 654483 0.4560 +51463 728833 0.4450 +51463 728945 0.4180 +51465 54431 0.6380 +51465 55236 0.7160 +51465 55284 0.6650 +51465 55432 0.5660 +51465 55585 0.6980 +51465 55658 0.4130 +51465 55666 0.7410 +51465 55831 0.5310 +51465 55858 0.4160 +51465 56852 0.4100 +51465 57448 0.4310 +51465 63893 0.4570 +51465 65264 0.6010 +51465 79102 0.5820 +51465 79139 0.9010 +51465 79876 0.6250 +51465 80124 0.4460 +51465 80235 0.4300 +51465 80267 0.5570 +51465 81790 0.6180 +51465 83590 0.4660 +51465 84447 0.9770 +51465 91319 0.7540 +51465 91445 0.5630 +51465 92305 0.4540 +51465 92912 0.4640 +51465 135293 0.5150 +51465 146310 0.4090 +51465 148581 0.4850 +51465 168433 0.4500 +51465 197131 0.6430 +51465 337867 0.4870 +51465 387522 0.5750 +51465 100506658 0.4450 +51466 54518 0.9590 +51466 55740 0.9990 +51466 57556 0.8920 +51466 57591 0.4990 +51466 65059 0.4800 +51466 79971 0.4880 +51466 81607 0.5310 +51466 91584 0.6430 +51466 114088 0.5080 +51466 266812 0.4280 +51466 345456 0.4840 +51466 375189 0.5200 +51466 388135 0.4330 +51466 440073 0.5250 +51466 642938 0.4310 +51473 51567 0.8630 +51473 55521 0.4790 +51473 55856 0.9220 +51473 58487 0.4090 +51473 64753 0.4310 +51473 79158 0.4350 +51473 79648 0.4250 +51473 79750 0.4620 +51473 79932 0.6550 +51473 80790 0.6480 +51473 84072 0.5320 +51473 93986 0.5980 +51473 140767 0.5760 +51473 152518 0.5630 +51473 161582 0.9780 +51473 222662 0.4930 +51473 259266 0.4230 +51474 54443 0.5350 +51474 54664 0.4440 +51474 55930 0.5280 +51474 57120 0.4870 +51474 85477 0.5580 +51474 91624 0.4720 +51474 121227 0.5440 +51474 129138 0.5460 +51474 144100 0.4460 +51474 342184 0.4140 +51474 345651 0.4140 +51475 53904 0.4630 +51475 64094 0.4870 +51475 64699 0.4530 +51475 117531 0.4400 +51475 125336 0.4030 +51475 161497 0.5280 +51475 259236 0.4340 +51475 286676 0.4250 +51475 340990 0.5200 +51475 389207 0.4340 +51475 401993 0.4470 +51475 494513 0.4600 +51475 643226 0.4780 +51477 51573 0.4500 +51477 54675 0.5940 +51477 54857 0.4200 +51477 54928 0.7610 +51477 55367 0.4040 +51477 55586 0.7010 +51477 55869 0.5050 +51477 56052 0.5020 +51477 56261 0.4360 +51477 64768 0.4520 +51477 79153 0.4200 +51477 81544 0.4250 +51477 81570 0.4340 +51477 85365 0.5020 +51477 85465 0.4270 +51477 89765 0.4080 +51477 114134 0.4760 +51477 128387 0.4500 +51477 130589 0.4450 +51477 150094 0.5980 +51477 220032 0.4200 +51477 253430 0.5520 +51477 284098 0.5010 +51477 284161 0.4200 +51477 440138 0.5020 +51477 644974 0.5010 +51478 54490 0.6600 +51478 54575 0.6770 +51478 54576 0.6770 +51478 54577 0.6770 +51478 54578 0.6750 +51478 54579 0.6600 +51478 54600 0.6600 +51478 54657 0.6760 +51478 54658 0.6770 +51478 54659 0.6600 +51478 55142 0.4770 +51478 56603 0.4250 +51478 57412 0.6160 +51478 65990 0.4350 +51478 79154 0.9890 +51478 79157 0.4680 +51478 79799 0.6600 +51478 80146 0.5120 +51478 80224 0.4040 +51478 80270 0.8510 +51478 84061 0.4520 +51478 91734 0.6650 +51478 93517 0.7810 +51478 134429 0.4800 +51478 137682 0.8520 +51478 196410 0.4180 +51478 285440 0.4880 +51478 286151 0.6160 +51478 340390 0.8520 +51478 347475 0.6480 +51478 387733 0.4220 +51478 389207 0.4040 +51478 574537 0.6600 +51479 51699 0.4680 +51479 54455 0.4570 +51479 54509 0.4160 +51479 54885 0.6940 +51479 55198 0.4430 +51479 55249 0.4310 +51479 55662 0.6360 +51479 55667 0.4380 +51479 55727 0.4350 +51479 55737 0.5510 +51479 55793 0.4150 +51479 57148 0.5110 +51479 57403 0.4170 +51479 57609 0.5380 +51479 57720 0.4830 +51479 64145 0.8600 +51479 64760 0.4890 +51479 79081 0.4210 +51479 81545 0.4550 +51479 81609 0.4840 +51479 83871 0.4290 +51479 84516 0.4290 +51479 85377 0.5930 +51479 85441 0.4570 +51479 123720 0.4180 +51479 158747 0.4140 +51480 90316 0.4180 +51480 90737 0.4150 +51480 93190 0.4160 +51480 115749 0.4330 +51480 147670 0.4180 +51480 152065 0.4790 +51480 167227 0.4370 +51480 170302 0.6470 +51480 206412 0.4320 +51480 493901 0.4340 +51480 100008586 0.4780 +51480 100130086 0.5060 +51480 100506164 0.4220 +51481 54464 0.5660 +51481 55802 0.4950 +51481 57502 0.4780 +51481 80153 0.6710 +51481 167227 0.8550 +51481 170302 0.5410 +51481 219874 0.4440 +51481 425054 0.9100 +51481 100130086 0.4480 +51490 51575 0.6280 +51490 54433 0.6570 +51490 54662 0.9350 +51490 55131 0.4540 +51490 55153 0.6070 +51490 55226 0.4370 +51490 55299 0.6410 +51490 55319 0.4520 +51490 55813 0.6090 +51490 56342 0.4290 +51490 57050 0.6130 +51490 64318 0.4500 +51490 64745 0.6620 +51490 79050 0.6960 +51490 79954 0.6130 +51490 83743 0.6160 +51490 84135 0.4570 +51490 84154 0.5890 +51490 84294 0.4220 +51490 84365 0.4160 +51490 84549 0.5630 +51490 84916 0.6190 +51490 84946 0.5380 +51490 90417 0.5880 +51490 92345 0.5790 +51490 92856 0.8920 +51490 93210 0.6220 +51490 142940 0.4910 +51490 221830 0.4050 +51490 388324 0.4120 +51491 51602 0.4300 +51491 51651 0.4390 +51491 54892 0.4620 +51491 55057 0.4540 +51491 55272 0.4400 +51491 55299 0.4930 +51491 55646 0.4070 +51491 55651 0.7580 +51491 55759 0.7110 +51491 56257 0.4610 +51491 56647 0.6360 +51491 56829 0.4190 +51491 57062 0.4160 +51491 79050 0.5080 +51491 84298 0.6880 +51491 84365 0.7980 +51491 92856 0.7560 +51491 192286 0.4460 +51491 285598 0.6060 +51491 285855 0.5120 +51493 51637 0.9990 +51493 51699 0.4290 +51493 54545 0.4210 +51493 54606 0.5050 +51493 55421 0.6330 +51493 55968 0.4320 +51493 56259 0.5370 +51493 57532 0.5950 +51493 79042 0.6560 +51493 79074 0.9950 +51493 79707 0.5280 +51493 80746 0.4890 +51493 83660 0.5120 +51493 83707 0.6720 +51493 84313 0.4710 +51493 87178 0.4680 +51493 89970 0.6470 +51493 116461 0.5310 +51493 124801 0.6090 +51493 147965 0.5940 +51493 220988 0.4440 +51493 283742 0.9990 +51493 283989 0.4460 +51493 339487 0.9970 +51493 100287932 0.4790 +51495 51741 0.4120 +51495 54898 0.9230 +51495 55627 0.4220 +51495 55825 0.4210 +51495 55843 0.4650 +51495 56926 0.4420 +51495 57480 0.4190 +51495 64834 0.4540 +51495 79071 0.9290 +51495 79759 0.4350 +51495 79966 0.9200 +51495 79993 0.4320 +51495 81037 0.4300 +51495 81556 0.5520 +51495 83693 0.6660 +51495 120892 0.5120 +51495 201562 0.9230 +51495 201595 0.4110 +51495 253017 0.7260 +51495 401494 0.9070 +51496 79676 0.4010 +51496 90806 0.4360 +51496 122773 0.5330 +51496 134510 0.5200 +51496 140901 0.6990 +51496 149420 0.8720 +51497 51604 0.4170 +51497 51755 0.5460 +51497 54511 0.5460 +51497 54623 0.9020 +51497 54973 0.8080 +51497 54995 0.6040 +51497 55215 0.5110 +51497 55250 0.7250 +51497 55268 0.4830 +51497 55278 0.5420 +51497 55656 0.8110 +51497 55756 0.8080 +51497 55840 0.9000 +51497 55862 0.4150 +51497 57508 0.8350 +51497 64087 0.9210 +51497 64131 0.6100 +51497 79577 0.9100 +51497 79664 0.9010 +51497 79728 0.4250 +51497 80237 0.9010 +51497 80349 0.9040 +51497 80789 0.8090 +51497 84148 0.4240 +51497 84263 0.4020 +51497 84337 0.5590 +51497 84524 0.9010 +51497 84693 0.5390 +51497 84842 0.7050 +51497 85403 0.9000 +51497 92105 0.8310 +51497 123169 0.9040 +51497 124359 0.4100 +51497 158584 0.5290 +51497 253175 0.4100 +51497 404672 0.4990 +51499 55332 0.4170 +51499 55367 0.4470 +51499 55591 0.4640 +51499 56910 0.5740 +51499 91419 0.6070 +51499 131474 0.5300 +51499 132001 0.6920 +51499 153768 0.6200 +51501 51545 0.5470 +51501 53371 0.4660 +51501 55706 0.4190 +51501 55746 0.4580 +51501 57122 0.5620 +51501 63931 0.5220 +51501 64216 0.4510 +51501 64963 0.4590 +51501 79023 0.5240 +51501 79902 0.4820 +51501 80349 0.5370 +51501 81570 0.6020 +51501 81929 0.4340 +51501 84661 0.4160 +51501 116835 0.5860 +51501 129401 0.5720 +51501 259217 0.5860 +51501 283237 0.4160 +51501 348995 0.4620 +51501 100101267 0.4490 +51503 51538 0.5600 +51503 51574 0.4350 +51503 51634 0.9280 +51503 51639 0.8850 +51503 51645 0.9950 +51503 51690 0.8200 +51503 51691 0.8220 +51503 51729 0.9630 +51503 53938 0.5380 +51503 54097 0.8620 +51503 54552 0.4790 +51503 54883 0.9610 +51503 54948 0.4090 +51503 54954 0.5710 +51503 55100 0.8090 +51503 55110 0.8420 +51503 55192 0.6370 +51503 55234 0.5400 +51503 55285 0.5990 +51503 55599 0.6030 +51503 55696 0.9990 +51503 55702 0.9800 +51503 56259 0.9990 +51503 56919 0.5570 +51503 56943 0.5120 +51503 56945 0.4160 +51503 56949 0.9980 +51503 57187 0.5340 +51503 57461 0.9870 +51503 57647 0.4440 +51503 57703 0.9970 +51503 57819 0.8170 +51503 58509 0.8030 +51503 59286 0.9040 +51503 60625 0.5910 +51503 64083 0.5940 +51503 79005 0.8180 +51503 79446 0.8500 +51503 79576 0.8050 +51503 79631 0.6590 +51503 79637 0.9220 +51503 79650 0.4630 +51503 79665 0.4400 +51503 79705 0.5350 +51503 79706 0.8160 +51503 79753 0.9380 +51503 79783 0.5780 +51503 80011 0.8050 +51503 80331 0.4850 +51503 81892 0.4350 +51503 83443 0.9690 +51503 83938 0.7950 +51503 83992 0.9100 +51503 84060 0.8080 +51503 84316 0.6090 +51503 84324 0.4690 +51503 84811 0.9140 +51503 84844 0.9430 +51503 84950 0.9260 +51503 84967 0.8200 +51503 84991 0.8290 +51503 85313 0.4020 +51503 85437 0.5020 +51503 85476 0.6590 +51503 85479 0.4850 +51503 114799 0.4380 +51503 118472 0.5330 +51503 126259 0.5910 +51503 136647 0.5920 +51503 136991 0.9090 +51503 143884 0.9050 +51503 147650 0.5910 +51503 151903 0.6000 +51503 153527 0.8940 +51503 154007 0.6690 +51503 163859 0.8970 +51503 164045 0.6440 +51503 199746 0.5660 +51503 220074 0.7950 +51503 222183 0.8070 +51503 256536 0.8400 +51503 284697 0.4360 +51503 400668 0.4790 +51503 100534599 0.9750 +51504 51575 0.5260 +51504 51605 0.7430 +51504 51690 0.4460 +51504 54496 0.4910 +51504 54517 0.4980 +51504 54859 0.5940 +51504 54888 0.5110 +51504 54890 0.4920 +51504 54920 0.5540 +51504 55006 0.4660 +51504 55039 0.9770 +51504 55127 0.4460 +51504 55140 0.6100 +51504 55170 0.5360 +51504 55226 0.5360 +51504 55272 0.6450 +51504 55299 0.4310 +51504 55505 0.7620 +51504 55621 0.6190 +51504 55651 0.7850 +51504 55695 0.5270 +51504 55720 0.8660 +51504 56339 0.5610 +51504 56341 0.5290 +51504 56647 0.4050 +51504 56834 0.4670 +51504 56902 0.8760 +51504 56937 0.5290 +51504 57412 0.5550 +51504 57570 0.8890 +51504 57604 0.9810 +51504 57647 0.5340 +51504 57721 0.6360 +51504 60487 0.9990 +51504 63935 0.5520 +51504 64216 0.4140 +51504 64425 0.4160 +51504 64783 0.4390 +51504 64848 0.4390 +51504 65990 0.4950 +51504 79066 0.6060 +51504 79133 0.4960 +51504 79807 0.4890 +51504 80324 0.4260 +51504 80745 0.6120 +51504 81605 0.7370 +51504 83480 0.4550 +51504 84128 0.5320 +51504 84154 0.6110 +51504 84190 0.4690 +51504 84916 0.5370 +51504 84946 0.8650 +51504 84955 0.6220 +51504 85395 0.8690 +51504 90121 0.4500 +51504 90353 0.7460 +51504 90826 0.5170 +51504 91801 0.9950 +51504 91893 0.4450 +51504 92856 0.4580 +51504 93587 0.4070 +51504 112970 0.5320 +51504 113179 0.5870 +51504 115708 0.7590 +51504 115939 0.5420 +51504 117246 0.4270 +51504 121504 0.8000 +51504 134145 0.4870 +51504 134637 0.5860 +51504 142940 0.4600 +51504 152992 0.4390 +51504 155368 0.7810 +51504 158234 0.4260 +51504 196410 0.5320 +51504 221078 0.4940 +51504 283234 0.4270 +51504 285381 0.6580 +51504 286151 0.4870 +51504 345630 0.4800 +51504 348180 0.4660 +51504 399818 0.4680 +51504 554313 0.8000 +51506 51569 0.9980 +51506 54149 0.4060 +51506 55236 0.4320 +51506 55325 0.8570 +51506 56851 0.4650 +51506 64839 0.5140 +51506 65992 0.9540 +51506 79876 0.9990 +51506 80279 0.8050 +51506 84936 0.4250 +51506 140739 0.4400 +51506 222068 0.4060 +51506 402682 0.8500 +51507 54962 0.4400 +51507 55421 0.4250 +51507 55621 0.8360 +51507 57477 0.4140 +51507 58517 0.4810 +51507 60682 0.4230 +51507 79871 0.6210 +51507 81576 0.5020 +51507 84301 0.5530 +51507 92104 0.4760 +51507 116151 0.4060 +51507 129530 0.5420 +51507 130026 0.5610 +51507 140831 0.4100 +51507 146691 0.4610 +51507 163859 0.4560 +51507 200232 0.5260 +51507 200916 0.4190 +51507 254122 0.5410 +51507 414301 0.6280 +51510 51534 0.9990 +51510 51652 0.9970 +51510 54862 0.7040 +51510 55017 0.4600 +51510 55048 0.6300 +51510 55165 0.4090 +51510 55255 0.4030 +51510 57132 0.9940 +51510 64149 0.4860 +51510 79643 0.9970 +51510 79720 0.8000 +51510 81551 0.6830 +51510 84313 0.9020 +51510 89853 0.7180 +51510 91782 0.9430 +51510 92421 0.9920 +51510 93343 0.7200 +51510 128866 0.9720 +51510 129531 0.6790 +51510 137492 0.7780 +51510 140290 0.4280 +51510 148362 0.9740 +51510 155382 0.6730 +51510 197259 0.9080 +51510 100526767 0.9930 +51512 51540 0.5200 +51512 51614 0.6030 +51512 51654 0.4770 +51512 51659 0.4160 +51512 54443 0.4810 +51512 54478 0.6230 +51512 54802 0.4490 +51512 54821 0.5290 +51512 55034 0.4160 +51512 55143 0.6430 +51512 55157 0.4200 +51512 55165 0.6550 +51512 55215 0.4570 +51512 55312 0.6220 +51512 55355 0.8890 +51512 55388 0.5820 +51512 55521 0.4580 +51512 55635 0.5150 +51512 55771 0.5130 +51512 55789 0.4400 +51512 56992 0.5500 +51512 57082 0.5160 +51512 57222 0.6030 +51512 57405 0.4800 +51512 57559 0.6230 +51512 63943 0.8170 +51512 64151 0.6360 +51512 64925 0.4370 +51512 64983 0.4050 +51512 79019 0.6460 +51512 79682 0.4230 +51512 79733 0.5030 +51512 79801 0.5100 +51512 80119 0.4720 +51512 80347 0.4040 +51512 81610 0.4460 +51512 81620 0.4710 +51512 81624 0.4100 +51512 81930 0.4580 +51512 83461 0.8160 +51512 83540 0.5310 +51512 83903 0.4020 +51512 84057 0.4430 +51512 84705 0.8840 +51512 90353 0.4350 +51512 90381 0.4940 +51512 113130 0.5040 +51512 115416 0.4270 +51512 122706 0.4100 +51512 123263 0.4360 +51512 132243 0.4060 +51512 143471 0.4100 +51512 146909 0.6250 +51512 147841 0.5190 +51512 150468 0.7360 +51512 151648 0.5970 +51512 157313 0.8040 +51512 220134 0.6100 +51512 221150 0.6180 +51512 246243 0.4180 +51512 259266 0.6890 +51512 730249 0.5260 +51513 57521 0.4110 +51513 80263 0.5090 +51513 84622 0.4770 +51513 91543 0.4200 +51513 115361 0.5470 +51513 115362 0.6120 +51513 115653 0.5180 +51513 116071 0.8660 +51513 118932 0.5740 +51513 126069 0.4260 +51513 222659 0.4140 +51513 253260 0.4130 +51514 51659 0.6160 +51514 54107 0.5340 +51514 54165 0.5450 +51514 54443 0.4690 +51514 54461 0.9210 +51514 54821 0.6380 +51514 54876 0.9140 +51514 54892 0.5310 +51514 54939 0.5100 +51514 54951 0.5050 +51514 54962 0.4400 +51514 55070 0.9280 +51514 55143 0.5490 +51514 55165 0.8170 +51514 55208 0.4990 +51514 55215 0.6890 +51514 55247 0.4550 +51514 55355 0.5580 +51514 55388 0.9150 +51514 55626 0.9040 +51514 55635 0.4390 +51514 55723 0.4950 +51514 55732 0.5020 +51514 55789 0.4400 +51514 55827 0.9060 +51514 55832 0.6180 +51514 56655 0.5010 +51514 56852 0.8180 +51514 56992 0.8070 +51514 57405 0.7850 +51514 57599 0.6180 +51514 57804 0.7310 +51514 63967 0.5660 +51514 64105 0.4420 +51514 64151 0.8300 +51514 64326 0.9130 +51514 79000 0.7390 +51514 79016 0.9510 +51514 79019 0.5590 +51514 79075 0.6390 +51514 79269 0.9110 +51514 79682 0.6750 +51514 79733 0.7080 +51514 79801 0.5400 +51514 79915 0.6190 +51514 80067 0.9010 +51514 80204 0.8600 +51514 80344 0.9150 +51514 81620 0.9980 +51514 81930 0.4330 +51514 83461 0.4400 +51514 83540 0.8160 +51514 83879 0.4840 +51514 83932 0.4140 +51514 83990 0.4180 +51514 84057 0.7420 +51514 84259 0.5420 +51514 84321 0.4110 +51514 84893 0.6420 +51514 84930 0.4200 +51514 90379 0.9250 +51514 90381 0.5710 +51514 113115 0.4110 +51514 113130 0.6760 +51514 114987 0.4630 +51514 116028 0.4180 +51514 138009 0.5540 +51514 139170 0.5490 +51514 139425 0.5400 +51514 144455 0.5340 +51514 149951 0.4990 +51514 150684 0.4990 +51514 157313 0.5170 +51514 157570 0.4880 +51514 163859 0.5510 +51514 170622 0.4990 +51514 221150 0.6320 +51514 257218 0.6130 +51514 259266 0.8480 +51514 285429 0.5540 +51514 340578 0.5600 +51514 347442 0.5400 +51514 387103 0.4660 +51514 387893 0.8910 +51517 54662 0.7660 +51517 54874 0.6090 +51517 54960 0.4320 +51517 55845 0.6020 +51517 57180 0.7980 +51517 57701 0.4370 +51517 60370 0.4740 +51517 64783 0.4250 +51517 64855 0.4080 +51517 79026 0.4350 +51517 79833 0.4220 +51517 81624 0.7440 +51517 81873 0.8640 +51517 84266 0.4320 +51517 89848 0.6100 +51517 90507 0.7790 +51517 137886 0.4610 +51517 140700 0.5230 +51517 147179 0.6950 +51517 151306 0.8360 +51517 375189 0.4070 +51517 644150 0.6070 +51517 653857 0.7670 +51520 51557 0.4340 +51520 54468 0.4210 +51520 54802 0.4170 +51520 54938 0.9240 +51520 54965 0.4170 +51520 55127 0.4930 +51520 55157 0.6980 +51520 55173 0.4210 +51520 55272 0.4880 +51520 55486 0.5410 +51520 55644 0.4040 +51520 55699 0.9960 +51520 55703 0.5060 +51520 55720 0.5420 +51520 55846 0.4380 +51520 55972 0.4750 +51520 56474 0.4720 +51520 57019 0.4720 +51520 57038 0.9900 +51520 57176 0.9540 +51520 57470 0.7820 +51520 57505 0.8320 +51520 57521 0.7460 +51520 58528 0.9700 +51520 60558 0.4390 +51520 60678 0.4080 +51520 64121 0.8030 +51520 64172 0.4490 +51520 64223 0.4220 +51520 64963 0.4830 +51520 64969 0.4940 +51520 64983 0.5890 +51520 65008 0.4610 +51520 79587 0.9350 +51520 79631 0.5200 +51520 79726 0.4160 +51520 79731 0.8600 +51520 80222 0.9760 +51520 81570 0.4570 +51520 81929 0.5400 +51520 83667 0.5500 +51520 83999 0.4080 +51520 84128 0.4160 +51520 84172 0.5160 +51520 84219 0.4460 +51520 84464 0.6050 +51520 84705 0.4040 +51520 85476 0.6610 +51520 87178 0.4260 +51520 91875 0.4140 +51520 91893 0.4540 +51520 92399 0.5030 +51520 92935 0.9930 +51520 93974 0.4630 +51520 96459 0.4910 +51520 116832 0.5190 +51520 123263 0.6110 +51520 123283 0.9940 +51520 124454 0.9240 +51520 138428 0.4240 +51520 144577 0.4080 +51520 153129 0.7310 +51520 154743 0.4900 +51520 201163 0.6970 +51520 374395 0.4950 +51520 440275 0.7530 +51520 652968 0.5550 +51520 100526842 0.4400 +51520 101927367 0.5830 +51522 51611 0.4790 +51522 51629 0.6480 +51522 54522 0.4130 +51522 54882 0.4610 +51522 54977 0.5010 +51522 55245 0.4780 +51522 55556 0.5730 +51522 55699 0.4240 +51522 80347 0.4820 +51522 81689 0.5920 +51522 81853 0.5260 +51522 81894 0.4310 +51522 84869 0.4520 +51522 94081 0.4510 +51522 126328 0.4860 +51522 200205 0.5860 +51522 254863 0.4620 +51522 440574 0.5580 +51523 54790 0.9460 +51523 79923 0.4970 +51523 80312 0.4960 +51523 80319 0.4510 +51523 84249 0.4060 +51523 84678 0.5060 +51523 89780 0.5780 +51523 139105 0.4480 +51524 51550 0.5330 +51524 54806 0.6000 +51524 54903 0.7080 +51524 55280 0.4360 +51524 57545 0.6670 +51524 58493 0.4500 +51524 65062 0.7880 +51524 65250 0.7200 +51524 79583 0.7700 +51524 79600 0.6290 +51524 79809 0.5200 +51524 79848 0.5960 +51524 79867 0.6460 +51524 80184 0.5950 +51524 80776 0.5950 +51524 84314 0.4460 +51524 91147 0.6680 +51524 95681 0.6640 +51524 126321 0.4480 +51524 200728 0.5740 +51524 200894 0.5070 +51524 220002 0.5850 +51524 261734 0.5860 +51524 374654 0.5750 +51526 54482 0.4200 +51526 129852 0.4740 +51527 55102 0.7880 +51527 63035 0.4390 +51527 375190 0.4020 +51528 55860 0.5350 +51528 58517 0.4970 +51528 112849 0.5870 +51528 729665 0.6430 +51529 51619 0.5400 +51529 51668 0.6670 +51529 54539 0.4320 +51529 54880 0.9030 +51529 54998 0.4150 +51529 55284 0.4370 +51529 55294 0.4780 +51529 57332 0.9000 +51529 57448 0.5140 +51529 57505 0.5780 +51529 64682 0.9990 +51529 64928 0.4170 +51529 65264 0.4330 +51529 79184 0.9080 +51529 79813 0.4990 +51529 80012 0.9000 +51529 81620 0.5620 +51529 84108 0.9000 +51529 84333 0.5400 +51529 84337 0.5220 +51529 84733 0.9000 +51529 84759 0.5400 +51529 119504 0.9910 +51529 120892 0.4180 +51529 126328 0.5140 +51529 140459 0.5580 +51529 140823 0.4970 +51529 166979 0.7370 +51529 246184 0.9960 +51529 286151 0.4640 +51529 374291 0.4270 +51530 54805 0.4740 +51530 54989 0.4080 +51530 55759 0.4920 +51530 57608 0.4160 +51530 58529 0.4670 +51530 60491 0.4060 +51530 65264 0.4240 +51530 80212 0.4110 +51530 84439 0.5070 +51530 84722 0.4590 +51530 84928 0.4160 +51530 115992 0.4440 +51530 221458 0.4160 +51530 221692 0.5070 +51530 259296 0.4730 +51530 375056 0.5070 +51531 53407 0.5190 +51531 54901 0.4150 +51531 55039 0.4870 +51531 55048 0.4640 +51531 55284 0.4090 +51531 55351 0.4950 +51531 55363 0.8210 +51531 55644 0.4400 +51531 55800 0.4350 +51531 57604 0.4040 +51531 64172 0.4480 +51531 79693 0.4400 +51531 84830 0.4950 +51531 85415 0.4810 +51531 113510 0.4360 +51531 132884 0.4910 +51531 158427 0.4420 +51531 285521 0.4690 +51531 347853 0.4910 +51531 392255 0.4280 +51531 643382 0.5320 +51531 104909134 0.4220 +51533 55631 0.4250 +51533 55729 0.4430 +51533 64110 0.6040 +51533 79729 0.4040 +51533 113444 0.4210 +51533 116138 0.4240 +51533 117245 0.4250 +51533 127003 0.4180 +51533 149345 0.4070 +51533 203245 0.4210 +51533 374973 0.4060 +51533 440093 0.6730 +51533 440686 0.6730 +51533 653604 0.6730 +51533 100507436 0.4200 +51534 51652 0.9420 +51534 53336 0.4630 +51534 55048 0.6170 +51534 55293 0.4390 +51534 55737 0.5690 +51534 57060 0.5570 +51534 57132 0.9990 +51534 57142 0.5210 +51534 79643 0.9020 +51534 79720 0.6960 +51534 80063 0.4200 +51534 80895 0.4320 +51534 81551 0.4800 +51534 84313 0.7460 +51534 84936 0.6960 +51534 85406 0.4250 +51534 89853 0.7240 +51534 91782 0.7930 +51534 92421 0.9060 +51534 93343 0.7090 +51534 128866 0.8510 +51534 137492 0.7520 +51534 148362 0.4810 +51534 155382 0.6260 +51534 344558 0.5320 +51534 100526767 0.8130 +51535 54476 0.5230 +51535 54737 0.9910 +51535 55037 0.4550 +51535 55744 0.4980 +51535 55795 0.4480 +51535 57698 0.5450 +51535 65125 0.4870 +51535 65266 0.4730 +51535 65267 0.4730 +51535 65268 0.4730 +51535 79837 0.4100 +51535 80114 0.7390 +51535 83448 0.4260 +51535 84246 0.5980 +51535 84950 0.5050 +51535 85437 0.4150 +51535 124245 0.4790 +51535 124817 0.4730 +51535 146434 0.4790 +51537 54205 0.5530 +51537 54332 0.4420 +51537 54471 0.4600 +51537 55669 0.5240 +51537 56947 0.5080 +51537 65018 0.4560 +51537 80213 0.4280 +51537 125170 0.4960 +51538 51575 0.5890 +51538 51602 0.4320 +51538 51634 0.4340 +51538 54555 0.6050 +51538 54865 0.4640 +51538 54984 0.4720 +51538 55020 0.4840 +51538 55272 0.6230 +51538 55760 0.4490 +51538 55813 0.5310 +51538 56949 0.4140 +51538 57050 0.5830 +51538 57466 0.6730 +51538 57698 0.4130 +51538 57703 0.5160 +51538 60312 0.4080 +51538 64434 0.5530 +51538 65083 0.5090 +51538 79050 0.4090 +51538 79446 0.5280 +51538 79570 0.4670 +51538 79576 0.4490 +51538 79954 0.4130 +51538 80006 0.4220 +51538 84916 0.4530 +51538 91646 0.4030 +51538 92856 0.5450 +51538 165545 0.4480 +51538 253461 0.5250 +51538 347735 0.4390 +51538 392517 0.4370 +51540 51714 0.5260 +51540 54205 0.6360 +51540 54938 0.4940 +51540 54952 0.5190 +51540 55034 0.8710 +51540 55236 0.4190 +51540 55527 0.4220 +51540 55687 0.5160 +51540 55829 0.6450 +51540 57128 0.7880 +51540 57190 0.5590 +51540 58515 0.6640 +51540 60678 0.6720 +51540 64111 0.6340 +51540 79017 0.4790 +51540 79048 0.6470 +51540 79728 0.6090 +51540 79876 0.4220 +51540 80308 0.5570 +51540 81689 0.7550 +51540 83642 0.4460 +51540 84705 0.4070 +51540 90353 0.4110 +51540 112812 0.6270 +51540 114112 0.9430 +51540 118672 0.7130 +51540 122961 0.7530 +51540 140606 0.6450 +51540 140739 0.4730 +51540 151651 0.4760 +51540 200205 0.5280 +51540 222484 0.4200 +51540 280636 0.4680 +51540 348303 0.5080 +51540 730249 0.4920 +51540 100130890 0.7180 +51540 100131187 0.7310 +51542 51560 0.6580 +51542 51659 0.6050 +51542 51699 0.4140 +51542 53407 0.4680 +51542 54536 0.7000 +51542 55088 0.5690 +51542 55275 0.9990 +51542 55610 0.9730 +51542 55737 0.6470 +51542 55763 0.5240 +51542 55770 0.5460 +51542 55823 0.4900 +51542 56923 0.4190 +51542 57120 0.5610 +51542 57511 0.8330 +51542 57589 0.6800 +51542 57617 0.5320 +51542 57679 0.5090 +51542 57704 0.5270 +51542 58485 0.4310 +51542 60412 0.5630 +51542 60561 0.5710 +51542 63908 0.5050 +51542 64601 0.5510 +51542 64645 0.5320 +51542 65082 0.5000 +51542 79571 0.6470 +51542 81833 0.5630 +51542 83548 0.8190 +51542 83893 0.5410 +51542 84203 0.4790 +51542 90196 0.6270 +51542 91949 0.7960 +51542 116841 0.4070 +51542 126208 0.5070 +51542 136263 0.5150 +51542 143187 0.7300 +51542 146923 0.4840 +51542 149371 0.5190 +51542 165055 0.4790 +51542 200576 0.4340 +51542 221079 0.4600 +51542 257397 0.5340 +51542 283417 0.5360 +51542 283629 0.4980 +51542 339122 0.5320 +51542 390790 0.4380 +51545 54769 0.4500 +51545 90324 0.6070 +51547 51564 0.6020 +51547 51601 0.4950 +51547 51602 0.5380 +51547 54487 0.5030 +51547 54606 0.7620 +51547 55191 0.9340 +51547 55869 0.6690 +51547 57805 0.4600 +51547 64425 0.7170 +51547 64802 0.9420 +51547 79084 0.6900 +51547 79885 0.7700 +51547 83594 0.9100 +51547 83933 0.6710 +51547 84148 0.4660 +51547 84532 0.4630 +51547 84898 0.4060 +51547 93100 0.4580 +51547 133686 0.9000 +51547 283373 0.6700 +51547 440093 0.5700 +51547 440686 0.5700 +51547 653604 0.5700 +51548 51564 0.5740 +51548 51601 0.4910 +51548 54145 0.5760 +51548 54677 0.4480 +51548 54932 0.5250 +51548 55170 0.4610 +51548 55191 0.9320 +51548 55766 0.5330 +51548 55869 0.6310 +51548 57805 0.4700 +51548 64802 0.9490 +51548 79885 0.7250 +51548 83594 0.9120 +51548 83933 0.6470 +51548 84148 0.4790 +51548 84444 0.5990 +51548 84532 0.4590 +51548 85236 0.5810 +51548 93100 0.4940 +51548 94239 0.5580 +51548 115004 0.4320 +51548 128312 0.5770 +51548 133686 0.9000 +51548 165918 0.5160 +51548 221656 0.5330 +51548 253260 0.4630 +51548 255626 0.5810 +51548 349565 0.4100 +51548 440093 0.6570 +51548 440686 0.6870 +51548 474382 0.5330 +51548 653604 0.8210 +51548 100132074 0.4260 +51550 51650 0.4360 +51550 54623 0.7440 +51550 54955 0.9180 +51550 55677 0.4950 +51550 56954 0.4350 +51550 64897 0.7740 +51550 79029 0.8440 +51550 79086 0.4460 +51550 79577 0.6160 +51550 84126 0.8520 +51550 84292 0.4730 +51550 84337 0.4590 +51550 85456 0.8070 +51550 91937 0.5820 +51550 123169 0.8050 +51550 166378 0.8690 +51552 51622 0.5010 +51552 51699 0.4050 +51552 54536 0.8150 +51552 55296 0.4750 +51552 55379 0.4140 +51552 55614 0.8430 +51552 55737 0.5330 +51552 55763 0.6300 +51552 55770 0.6400 +51552 57511 0.5940 +51552 60412 0.6570 +51552 64145 0.6910 +51552 79058 0.5110 +51552 79109 0.4310 +51552 80223 0.7010 +51552 80230 0.8490 +51552 81876 0.5100 +51552 84315 0.4270 +51552 84549 0.4950 +51552 84932 0.5370 +51552 85437 0.5090 +51552 117145 0.4260 +51552 118813 0.5110 +51552 149371 0.6410 +51552 158135 0.4190 +51552 201627 0.5760 +51552 221960 0.4830 +51554 56477 0.6010 +51554 58191 0.5700 +51554 140862 0.4340 +51555 51762 0.9330 +51555 55323 0.4310 +51555 55670 0.8130 +51555 57657 0.7010 +51555 84896 0.4160 +51555 92960 0.5030 +51555 160622 0.6850 +51555 222234 0.7290 +51555 348980 0.7980 +51557 51700 0.4720 +51557 51706 0.4720 +51557 54529 0.5970 +51557 54831 0.4120 +51557 55191 0.4560 +51557 55278 0.5810 +51557 55316 0.4180 +51557 56474 0.7000 +51557 58511 0.4680 +51557 60682 0.5150 +51557 64087 0.6410 +51557 79073 0.8590 +51557 79814 0.5660 +51557 89894 0.5520 +51557 91875 0.6080 +51557 92106 0.4720 +51557 112812 0.6620 +51557 114791 0.4160 +51557 119765 0.4300 +51557 122945 0.5390 +51557 127253 0.4590 +51557 144453 0.4120 +51557 150209 0.4680 +51557 155051 0.5270 +51557 158584 0.5810 +51557 197021 0.4610 +51557 202559 0.5650 +51557 266675 0.4120 +51557 283985 0.7400 +51557 285148 0.8180 +51557 402635 0.5660 +51557 606495 0.4720 +51557 730249 0.5570 +51559 51760 0.4590 +51559 64943 0.6390 +51559 81559 0.4520 +51559 90634 0.4050 +51559 284467 0.4340 +51559 337972 0.5140 +51560 54332 0.7790 +51560 55275 0.7240 +51560 55737 0.4720 +51560 55860 0.5160 +51560 57511 0.7370 +51560 57589 0.8670 +51560 63908 0.5490 +51560 65082 0.5770 +51560 79571 0.6180 +51560 81846 0.4080 +51560 81876 0.6160 +51560 83548 0.6040 +51560 84079 0.5140 +51560 84516 0.4990 +51560 85300 0.4690 +51560 90196 0.6370 +51560 91949 0.5970 +51560 93661 0.5410 +51560 117177 0.4480 +51560 140735 0.5230 +51560 143187 0.6180 +51560 339122 0.6090 +51561 53832 0.7250 +51561 53833 0.6880 +51561 58985 0.8040 +51561 64127 0.4250 +51561 64170 0.4430 +51561 64581 0.4800 +51561 84818 0.6480 +51561 112744 0.9210 +51561 116379 0.7080 +51561 149233 0.9990 +51561 163702 0.6710 +51561 246778 0.7800 +51561 284110 0.5000 +51562 51616 0.7780 +51562 54107 0.9040 +51562 55578 0.8270 +51562 55689 0.9940 +51562 56655 0.9400 +51562 56943 0.7240 +51562 56970 0.7490 +51562 56981 0.5140 +51562 57325 0.9800 +51562 64376 0.4030 +51562 79595 0.5040 +51562 79666 0.4480 +51562 81832 0.4160 +51562 83443 0.5990 +51562 84290 0.5370 +51562 84915 0.4180 +51562 93624 0.8210 +51562 112858 0.4600 +51562 112869 0.9850 +51562 117143 0.7870 +51562 139231 0.6010 +51562 220082 0.5250 +51562 256130 0.4180 +51562 100130348 0.5520 +51564 51742 0.4690 +51564 53615 0.6450 +51564 54145 0.7310 +51564 54815 0.5800 +51564 55506 0.6910 +51564 55534 0.5310 +51564 55766 0.6890 +51564 55869 0.6270 +51564 57167 0.5190 +51564 57332 0.5690 +51564 57459 0.5500 +51564 57504 0.6160 +51564 57649 0.4090 +51564 63035 0.7830 +51564 79718 0.6460 +51564 79723 0.4210 +51564 79885 0.4890 +51564 80012 0.5380 +51564 80854 0.4280 +51564 83714 0.5930 +51564 83787 0.4050 +51564 83933 0.6290 +51564 84232 0.5210 +51564 84288 0.4160 +51564 84441 0.5540 +51564 84733 0.5420 +51564 84942 0.6370 +51564 85236 0.7280 +51564 92815 0.6890 +51564 94239 0.7160 +51564 128312 0.7300 +51564 158983 0.7310 +51564 221613 0.6890 +51564 255626 0.7300 +51564 286436 0.7310 +51564 317772 0.6940 +51564 440093 0.5870 +51564 440686 0.5870 +51564 440689 0.7340 +51564 474381 0.6890 +51564 474382 0.6890 +51564 653604 0.5960 +51564 114483833 0.7310 +51566 54470 0.4310 +51566 54867 0.4680 +51566 55288 0.4490 +51566 57488 0.4830 +51566 60487 0.4460 +51566 64922 0.5100 +51566 66008 0.8460 +51566 84232 0.5990 +51567 51582 0.5120 +51567 54840 0.5870 +51567 55247 0.4240 +51567 55775 0.9180 +51567 55856 0.9350 +51567 57541 0.4170 +51567 64421 0.5480 +51567 79840 0.4050 +51567 80198 0.4930 +51567 81688 0.6050 +51567 83932 0.6800 +51567 93953 0.4540 +51567 116447 0.4920 +51567 161582 0.7000 +51567 339451 0.4010 +51567 387082 0.5360 +51569 55236 0.6760 +51569 55325 0.9980 +51569 59286 0.5500 +51569 60559 0.4400 +51569 65992 0.9720 +51569 79876 0.9990 +51569 79959 0.4070 +51569 80279 0.7670 +51569 81555 0.5200 +51569 81605 0.8030 +51569 84936 0.4240 +51569 90850 0.4390 +51569 120071 0.4150 +51569 122616 0.4120 +51569 126119 0.4650 +51569 145567 0.4100 +51569 146456 0.4270 +51569 221302 0.4980 +51569 387082 0.4440 +51569 402682 0.9970 +51571 55617 0.4600 +51571 56922 0.4540 +51571 79875 0.4490 +51571 81553 0.6980 +51571 84286 0.4530 +51571 120892 0.4030 +51573 54857 0.4200 +51573 56261 0.5360 +51573 57406 0.6110 +51573 63874 0.8700 +51573 64407 0.4410 +51573 64843 0.4890 +51573 65220 0.4700 +51573 79153 0.4900 +51573 79944 0.5510 +51573 81544 0.4080 +51573 85397 0.4460 +51573 139760 0.4180 +51573 157638 0.4200 +51573 158584 0.5740 +51573 221955 0.6330 +51573 222236 0.8540 +51573 254158 0.6090 +51573 431704 0.4490 +51574 51602 0.6670 +51574 51649 0.5450 +51574 51663 0.4800 +51574 51691 0.4540 +51574 51747 0.4370 +51574 51755 0.5060 +51574 51808 0.6260 +51574 53371 0.4150 +51574 54148 0.4010 +51574 54433 0.6090 +51574 54505 0.4370 +51574 54552 0.4010 +51574 54606 0.5530 +51574 54969 0.4860 +51574 55037 0.5180 +51574 55052 0.4610 +51574 55131 0.5020 +51574 55132 0.6010 +51574 55168 0.4100 +51574 55173 0.4780 +51574 55226 0.6810 +51574 55299 0.4480 +51574 55646 0.7530 +51574 55651 0.4240 +51574 55660 0.4530 +51574 55720 0.5670 +51574 55909 0.5790 +51574 55922 0.5640 +51574 56172 0.4510 +51574 56257 0.9990 +51574 56829 0.6840 +51574 56945 0.5630 +51574 56949 0.4830 +51574 57129 0.5580 +51574 57466 0.5500 +51574 57520 0.4200 +51574 57647 0.5290 +51574 57680 0.4480 +51574 57696 0.4240 +51574 57703 0.4760 +51574 57805 0.6250 +51574 57819 0.5660 +51574 58517 0.4670 +51574 60488 0.5430 +51574 63893 0.5570 +51574 63931 0.4670 +51574 64432 0.5300 +51574 64794 0.4500 +51574 64848 0.5780 +51574 64852 0.7210 +51574 64949 0.5190 +51574 64960 0.4470 +51574 64963 0.5060 +51574 64965 0.4340 +51574 64969 0.4660 +51574 64978 0.5520 +51574 65003 0.6730 +51574 65005 0.4210 +51574 65080 0.5750 +51574 65095 0.6190 +51574 65993 0.5400 +51574 79009 0.4300 +51574 79039 0.5750 +51574 79050 0.4720 +51574 79066 0.6650 +51574 79080 0.4860 +51574 79159 0.5110 +51574 79577 0.5150 +51574 79590 0.5780 +51574 79727 0.6470 +51574 79962 0.4030 +51574 80216 0.4280 +51574 80336 0.4060 +51574 80349 0.5630 +51574 81627 0.4130 +51574 84250 0.4970 +51574 84271 0.5990 +51574 84305 0.4100 +51574 84310 0.4470 +51574 84365 0.4550 +51574 84524 0.8620 +51574 84617 0.5290 +51574 84790 0.5510 +51574 84811 0.4450 +51574 84946 0.6960 +51574 84955 0.6240 +51574 85364 0.5500 +51574 85437 0.7080 +51574 90957 0.7400 +51574 96764 0.4170 +51574 113251 0.4070 +51574 116541 0.4140 +51574 117159 0.5100 +51574 117246 0.5930 +51574 118487 0.4140 +51574 123169 0.5070 +51574 124245 0.4200 +51574 124790 0.9980 +51574 124801 0.4050 +51574 128312 0.5370 +51574 140890 0.4400 +51574 143884 0.4610 +51574 170506 0.5010 +51574 203068 0.5330 +51574 219927 0.4040 +51574 286887 0.5320 +51574 317772 0.5310 +51574 389421 0.4790 +51575 51602 0.8840 +51575 51605 0.5820 +51575 54433 0.7050 +51575 54505 0.4190 +51575 54552 0.7930 +51575 54555 0.8110 +51575 54606 0.6920 +51575 54663 0.5630 +51575 54865 0.4950 +51575 54888 0.4470 +51575 54920 0.4080 +51575 54984 0.4400 +51575 55003 0.7520 +51575 55035 0.5170 +51575 55127 0.8840 +51575 55131 0.9140 +51575 55153 0.8780 +51575 55226 0.9910 +51575 55272 0.5590 +51575 55299 0.8510 +51575 55319 0.7260 +51575 55341 0.8520 +51575 55646 0.6930 +51575 55651 0.4540 +51575 55703 0.4730 +51575 55718 0.6480 +51575 55720 0.8250 +51575 55759 0.5570 +51575 55760 0.6900 +51575 55781 0.6500 +51575 55794 0.9060 +51575 55813 0.9950 +51575 55854 0.4610 +51575 56342 0.6180 +51575 56647 0.5930 +51575 56919 0.6470 +51575 57050 0.9980 +51575 57062 0.8520 +51575 57647 0.5930 +51575 57696 0.5250 +51575 60487 0.4840 +51575 60625 0.6430 +51575 64118 0.6060 +51575 64216 0.5520 +51575 64318 0.8610 +51575 64425 0.8270 +51575 64434 0.9770 +51575 64773 0.4590 +51575 64794 0.6600 +51575 64969 0.4240 +51575 65083 0.9940 +51575 65095 0.9200 +51575 79009 0.4260 +51575 79039 0.5320 +51575 79050 0.7720 +51575 79159 0.5470 +51575 79665 0.6120 +51575 79954 0.9290 +51575 79979 0.5160 +51575 80135 0.7810 +51575 83480 0.5780 +51575 83732 0.5180 +51575 83743 0.8250 +51575 84081 0.4140 +51575 84128 0.7880 +51575 84135 0.7210 +51575 84154 0.9320 +51575 84172 0.6880 +51575 84265 0.4280 +51575 84294 0.7870 +51575 84310 0.4140 +51575 84319 0.6690 +51575 84365 0.8680 +51575 84549 0.8510 +51575 84916 0.8640 +51575 84946 0.8710 +51575 84950 0.4070 +51575 88745 0.4450 +51575 90121 0.8060 +51575 92345 0.5250 +51575 92856 0.8360 +51575 115708 0.4080 +51575 116966 0.5560 +51575 117246 0.7520 +51575 128710 0.4780 +51575 142940 0.5360 +51575 146212 0.8260 +51575 153443 0.6260 +51575 155368 0.5510 +51575 161424 0.8170 +51575 165545 0.6900 +51575 221078 0.8240 +51575 221830 0.8700 +51575 283106 0.6000 +51575 285855 0.4630 +51575 387129 0.4300 +51575 692312 0.6100 +51575 100505478 0.4120 +51582 51686 0.9940 +51582 54498 0.6230 +51582 55362 0.4880 +51582 55748 0.4730 +51582 55856 0.4600 +51582 56267 0.4790 +51582 57591 0.5600 +51582 64081 0.7020 +51582 64837 0.5690 +51582 79661 0.6070 +51582 79814 0.7190 +51582 79896 0.4390 +51582 83475 0.5330 +51582 83548 0.6460 +51582 84680 0.4710 +51582 84706 0.4710 +51582 84735 0.4680 +51582 85413 0.4540 +51582 89894 0.4670 +51582 89953 0.6440 +51582 122622 0.5540 +51582 123688 0.4710 +51582 137362 0.5030 +51582 148811 0.4190 +51582 162417 0.4120 +51582 196743 0.4900 +51582 390110 0.4860 +51582 100526760 0.4190 +51585 51593 0.6320 +51585 51692 0.9980 +51585 51755 0.6160 +51585 51808 0.6760 +51585 53981 0.9980 +51585 54439 0.4350 +51585 54464 0.6160 +51585 54495 0.4360 +51585 54882 0.6540 +51585 54973 0.8260 +51585 55006 0.4100 +51585 55110 0.5670 +51585 55174 0.5860 +51585 55197 0.7570 +51585 55339 0.9550 +51585 55596 0.4300 +51585 55656 0.5460 +51585 55660 0.4480 +51585 55671 0.5550 +51585 55677 0.6630 +51585 55726 0.5510 +51585 55756 0.7910 +51585 56903 0.8850 +51585 57117 0.6340 +51585 57187 0.8520 +51585 57466 0.7420 +51585 57508 0.4950 +51585 58490 0.7180 +51585 60492 0.4140 +51585 64421 0.5270 +51585 64848 0.6420 +51585 64858 0.5230 +51585 64859 0.4380 +51585 64895 0.8940 +51585 65109 0.5370 +51585 65123 0.5310 +51585 79228 0.6690 +51585 79577 0.5070 +51585 79664 0.4820 +51585 79869 0.8890 +51585 79871 0.7480 +51585 79882 0.6150 +51585 80145 0.7660 +51585 80237 0.4350 +51585 80335 0.7270 +51585 80746 0.5480 +51585 80789 0.5290 +51585 81556 0.5730 +51585 81608 0.9760 +51585 84248 0.6760 +51585 84271 0.7700 +51585 84321 0.7650 +51585 84324 0.7130 +51585 84524 0.7070 +51585 91746 0.6480 +51585 92105 0.5080 +51585 126003 0.4820 +51585 129685 0.4110 +51585 136157 0.8070 +51585 143506 0.8070 +51585 149041 0.5320 +51585 196120 0.8070 +51585 196441 0.5760 +51585 199746 0.5330 +51585 338699 0.5920 +51585 376940 0.5620 +51585 390031 0.8070 +51585 390033 0.8070 +51585 441584 0.8070 +51585 642843 0.8060 +51585 643988 0.5980 +51586 51747 0.4600 +51586 54584 0.4900 +51586 54797 0.9990 +51586 54934 0.4040 +51586 55090 0.9970 +51586 55588 0.9990 +51586 56850 0.5080 +51586 56949 0.5120 +51586 57492 0.4480 +51586 79058 0.5160 +51586 80306 0.9990 +51586 80764 0.4340 +51586 81559 0.7780 +51586 81857 0.9970 +51586 83860 0.8290 +51586 84164 0.5370 +51586 84246 0.9990 +51586 84498 0.5080 +51586 84861 0.5060 +51586 85441 0.5100 +51586 90390 0.9940 +51586 91603 0.4170 +51586 112950 0.9960 +51586 116238 0.5210 +51586 116931 0.7950 +51586 121504 0.8000 +51586 126961 0.8000 +51586 129685 0.8500 +51586 133522 0.6650 +51586 150209 0.4340 +51586 333932 0.8000 +51586 400569 0.9970 +51586 404672 0.8120 +51586 554313 0.8000 +51586 653604 0.8260 +51588 51720 0.7970 +51588 54145 0.5260 +51588 54778 0.4500 +51588 55183 0.7420 +51588 55215 0.4780 +51588 55367 0.5780 +51588 56852 0.6580 +51588 56934 0.4350 +51588 57337 0.6010 +51588 64421 0.5640 +51588 79184 0.5170 +51588 83637 0.4130 +51588 84142 0.6960 +51588 84464 0.4650 +51588 84901 0.4690 +51588 85236 0.5260 +51588 116447 0.4220 +51588 123228 0.4370 +51588 128312 0.5260 +51588 148022 0.4170 +51588 165918 0.9570 +51588 205564 0.6760 +51588 255626 0.5230 +51588 286053 0.7660 +51588 387082 0.9730 +51592 51773 0.4390 +51592 53918 0.4550 +51592 54431 0.4350 +51592 54439 0.4550 +51592 54495 0.4350 +51592 54765 0.4280 +51592 55193 0.5690 +51592 55250 0.4200 +51592 55680 0.4500 +51592 55802 0.4360 +51592 56919 0.6380 +51592 57332 0.5600 +51592 64135 0.8280 +51592 64682 0.9940 +51592 64943 0.4210 +51592 79923 0.7210 +51592 81559 0.5360 +51592 83881 0.6470 +51592 84618 0.5440 +51592 84787 0.4390 +51592 91607 0.4280 +51592 92609 0.4370 +51592 126961 0.9080 +51592 145258 0.5700 +51592 160760 0.4670 +51592 196528 0.4710 +51592 197259 0.4310 +51592 257397 0.4690 +51592 333932 0.9080 +51592 387332 0.5420 +51592 440093 0.9720 +51592 440686 0.9720 +51592 653604 0.9730 +51593 51631 0.4930 +51593 51645 0.8260 +51593 51692 0.5140 +51593 51729 0.8310 +51593 51747 0.8710 +51593 51808 0.9870 +51593 53938 0.8010 +51593 53981 0.4420 +51593 54439 0.5820 +51593 54487 0.4750 +51593 54567 0.6600 +51593 55234 0.8420 +51593 55421 0.8410 +51593 55534 0.6940 +51593 55596 0.6400 +51593 55660 0.8790 +51593 55692 0.4970 +51593 55749 0.8570 +51593 55920 0.4490 +51593 56259 0.7330 +51593 56983 0.4190 +51593 57187 0.5660 +51593 57703 0.8550 +51593 57794 0.8200 +51593 57805 0.4730 +51593 58517 0.8970 +51593 59286 0.8030 +51593 64062 0.4610 +51593 65080 0.4510 +51593 65109 0.8080 +51593 79753 0.4960 +51593 80145 0.5500 +51593 84248 0.5710 +51593 84271 0.6540 +51593 84321 0.4960 +51593 84324 0.7030 +51593 84441 0.7010 +51593 84950 0.8690 +51593 84991 0.4640 +51593 124245 0.8200 +51593 143884 0.4990 +51593 151903 0.8020 +51593 153527 0.8530 +51593 192670 0.4660 +51593 196441 0.8300 +51593 253943 0.4040 +51593 388585 0.4800 +51593 392517 0.4760 +51594 53407 0.9940 +51594 54732 0.5180 +51594 55083 0.5020 +51594 55181 0.4930 +51594 55582 0.5040 +51594 55605 0.5030 +51594 55614 0.5280 +51594 55850 0.9840 +51594 55858 0.4170 +51594 56006 0.5280 +51594 56992 0.5020 +51594 57511 0.5240 +51594 60561 0.9980 +51594 63908 0.5320 +51594 64837 0.5070 +51594 65110 0.4410 +51594 81876 0.5330 +51594 81930 0.5030 +51594 84162 0.4170 +51594 84643 0.4990 +51594 89953 0.5060 +51594 90990 0.4990 +51594 124602 0.4990 +51594 129881 0.4060 +51594 146909 0.4990 +51594 147700 0.4990 +51594 148223 0.4420 +51594 152579 0.8580 +51594 221458 0.5020 +51594 285643 0.4990 +51599 55829 0.5400 +51599 55911 0.5400 +51599 55937 0.5400 +51599 79135 0.5400 +51599 91862 0.5230 +51599 116519 0.6020 +51599 153562 0.9490 +51599 387597 0.4630 +51599 100506658 0.5670 +51599 100528017 0.5400 +51601 51684 0.4220 +51601 54995 0.9130 +51601 55313 0.4770 +51601 55526 0.4680 +51601 57546 0.4230 +51601 60386 0.5740 +51601 80704 0.5180 +51601 81570 0.5210 +51601 114112 0.4120 +51601 116285 0.9390 +51601 118672 0.4630 +51601 122961 0.4880 +51601 127396 0.4570 +51601 159013 0.4710 +51601 196074 0.5530 +51601 197131 0.4280 +51601 200205 0.6010 +51601 340654 0.4380 +51601 387787 0.9980 +51601 388962 0.6490 +51602 51605 0.5020 +51602 51808 0.5710 +51602 54433 0.9850 +51602 54475 0.5080 +51602 54512 0.7900 +51602 54514 0.4520 +51602 54517 0.6740 +51602 54552 0.8860 +51602 54555 0.6340 +51602 54606 0.9590 +51602 54663 0.8170 +51602 54680 0.9710 +51602 54700 0.4270 +51602 54853 0.4870 +51602 54859 0.4040 +51602 54865 0.5430 +51602 54881 0.5820 +51602 54888 0.8340 +51602 54913 0.9190 +51602 54931 0.4720 +51602 54984 0.6240 +51602 55003 0.5380 +51602 55006 0.4030 +51602 55011 0.9940 +51602 55035 0.4670 +51602 55127 0.9990 +51602 55131 0.9170 +51602 55135 0.4040 +51602 55140 0.4330 +51602 55153 0.8490 +51602 55164 0.7500 +51602 55170 0.4020 +51602 55226 0.9990 +51602 55272 0.9970 +51602 55299 0.9730 +51602 55341 0.6690 +51602 55505 0.9840 +51602 55510 0.4520 +51602 55591 0.6190 +51602 55601 0.4090 +51602 55621 0.4370 +51602 55622 0.5180 +51602 55646 0.8000 +51602 55651 0.9990 +51602 55660 0.4050 +51602 55695 0.6090 +51602 55703 0.4620 +51602 55720 0.7670 +51602 55759 0.9740 +51602 55760 0.7830 +51602 55781 0.6140 +51602 55794 0.6250 +51602 55813 0.9980 +51602 55854 0.4310 +51602 56341 0.4300 +51602 56342 0.5160 +51602 56474 0.6130 +51602 56647 0.6620 +51602 56902 0.9780 +51602 56915 0.7980 +51602 56919 0.4270 +51602 57050 0.9990 +51602 57062 0.8480 +51602 57109 0.4820 +51602 57418 0.9180 +51602 57647 0.9350 +51602 57696 0.6510 +51602 57721 0.4420 +51602 63899 0.5990 +51602 64216 0.6310 +51602 64318 0.8590 +51602 64425 0.9070 +51602 64782 0.4370 +51602 64794 0.6210 +51602 64848 0.4210 +51602 64960 0.8060 +51602 64963 0.6620 +51602 65008 0.5000 +51602 65083 0.9990 +51602 65095 0.5330 +51602 79009 0.6410 +51602 79039 0.8070 +51602 79048 0.5050 +51602 79050 0.9980 +51602 79159 0.5500 +51602 79571 0.8630 +51602 79657 0.7050 +51602 79707 0.6240 +51602 79730 0.5420 +51602 79954 0.9990 +51602 79968 0.5190 +51602 80135 0.8150 +51602 80324 0.4510 +51602 81875 0.4250 +51602 81887 0.5590 +51602 83448 0.4380 +51602 83475 0.4740 +51602 83479 0.5850 +51602 83732 0.5420 +51602 83743 0.9070 +51602 84128 0.9990 +51602 84135 0.9990 +51602 84154 0.9500 +51602 84172 0.8780 +51602 84273 0.4310 +51602 84294 0.8710 +51602 84365 0.9870 +51602 84549 0.8700 +51602 84916 0.9990 +51602 84946 0.8600 +51602 84985 0.4070 +51602 88745 0.7410 +51602 90121 0.4060 +51602 90381 0.5480 +51602 91582 0.8070 +51602 91646 0.5550 +51602 91875 0.5460 +51602 92170 0.4180 +51602 92345 0.9270 +51602 92856 0.9980 +51602 93974 0.4630 +51602 96764 0.7390 +51602 115708 0.4850 +51602 115752 0.4060 +51602 116966 0.6740 +51602 117246 0.9970 +51602 118460 0.6540 +51602 120379 0.6800 +51602 121053 0.9330 +51602 122402 0.4130 +51602 126402 0.6580 +51602 128061 0.8160 +51602 129563 0.4050 +51602 133396 0.4520 +51602 134492 0.4020 +51602 138716 0.5630 +51602 140032 0.8110 +51602 142940 0.9360 +51602 146212 0.9190 +51602 153443 0.5670 +51602 161424 0.9100 +51602 165545 0.7830 +51602 168400 0.4520 +51602 170506 0.5570 +51602 200172 0.4520 +51602 221078 0.8550 +51602 221830 0.7670 +51602 254394 0.5610 +51602 285855 0.4910 +51602 317781 0.7350 +51602 344758 0.5550 +51602 345630 0.9940 +51602 387129 0.4590 +51602 387338 0.5900 +51602 641776 0.5470 +51602 643909 0.5470 +51602 692312 0.4650 +51602 728524 0.5470 +51602 728689 0.5740 +51602 100505478 0.4590 +51602 100996746 0.5470 +51602 105180390 0.5470 +51602 105180391 0.5470 +51602 114483834 0.4150 +51603 54888 0.4450 +51603 54890 0.4550 +51603 54915 0.4810 +51603 55471 0.4020 +51603 55798 0.6500 +51603 56339 0.5710 +51603 57037 0.4680 +51603 57721 0.9090 +51603 64783 0.6640 +51603 64848 0.5260 +51603 79066 0.6990 +51603 79609 0.4620 +51603 79828 0.5570 +51603 79872 0.4490 +51603 84190 0.6830 +51603 89884 0.4370 +51603 90861 0.4610 +51603 91746 0.4910 +51603 92342 0.4980 +51603 131965 0.4440 +51603 134145 0.4570 +51603 149281 0.4400 +51603 151194 0.5360 +51603 152992 0.6050 +51603 196410 0.5810 +51603 196483 0.4460 +51603 196541 0.6890 +51603 221120 0.4790 +51603 221143 0.4920 +51603 253943 0.4310 +51603 399818 0.8170 +51603 403313 0.4700 +51603 728464 0.6490 +51604 54344 0.4250 +51604 54872 0.7510 +51604 55650 0.8520 +51604 64795 0.4750 +51604 65258 0.4950 +51604 79465 0.5030 +51604 80055 0.9710 +51604 80235 0.6290 +51604 80328 0.4720 +51604 84290 0.5400 +51604 84720 0.9840 +51604 84992 0.7080 +51604 93183 0.8160 +51604 93210 0.7070 +51604 94005 0.9990 +51604 114770 0.4130 +51604 128869 0.9990 +51604 137868 0.4450 +51604 284098 0.8080 +51604 440138 0.4390 +51604 100507436 0.4350 +51605 54517 0.7460 +51605 54552 0.4220 +51605 54606 0.8360 +51605 54663 0.8250 +51605 54802 0.4170 +51605 54853 0.5690 +51605 54865 0.4160 +51605 54888 0.8110 +51605 54890 0.5020 +51605 54915 0.6170 +51605 54920 0.5510 +51605 54931 0.9570 +51605 54948 0.4330 +51605 54984 0.4230 +51605 55006 0.9950 +51605 55039 0.5140 +51605 55131 0.4980 +51605 55153 0.4870 +51605 55226 0.7100 +51605 55299 0.7230 +51605 55341 0.4930 +51605 55565 0.4690 +51605 55621 0.7560 +51605 55695 0.5440 +51605 55720 0.6330 +51605 55737 0.5820 +51605 55759 0.8500 +51605 55781 0.4610 +51605 55794 0.5850 +51605 55813 0.5940 +51605 56339 0.4540 +51605 56647 0.4210 +51605 56852 0.4060 +51605 56931 0.6070 +51605 57019 0.4090 +51605 57050 0.4580 +51605 57062 0.5400 +51605 57109 0.5860 +51605 57418 0.7140 +51605 57570 0.7590 +51605 57696 0.5030 +51605 57721 0.5240 +51605 60487 0.7880 +51605 63899 0.6730 +51605 64118 0.5480 +51605 64318 0.4940 +51605 64794 0.7110 +51605 79009 0.4520 +51605 79039 0.4250 +51605 79050 0.4100 +51605 79066 0.4970 +51605 79068 0.4100 +51605 79730 0.5270 +51605 79954 0.5110 +51605 79979 0.4570 +51605 80324 0.7410 +51605 81627 0.5870 +51605 81890 0.4320 +51605 83448 0.5110 +51605 83480 0.6590 +51605 83660 0.4240 +51605 83732 0.7190 +51605 83743 0.5370 +51605 84135 0.4620 +51605 84154 0.7920 +51605 84186 0.4170 +51605 84246 0.4070 +51605 84294 0.4340 +51605 84365 0.5280 +51605 84549 0.7030 +51605 84916 0.5330 +51605 84946 0.6910 +51605 85459 0.4440 +51605 88745 0.6100 +51605 90353 0.7410 +51605 91746 0.5580 +51605 91801 0.6330 +51605 92856 0.4600 +51605 93517 0.4700 +51605 93587 0.7580 +51605 113179 0.6710 +51605 115708 0.9990 +51605 117246 0.9210 +51605 124808 0.4570 +51605 126789 0.5250 +51605 131965 0.4110 +51605 134637 0.6440 +51605 142940 0.7820 +51605 146212 0.5360 +51605 152992 0.6870 +51605 158234 0.6820 +51605 161424 0.5710 +51605 221078 0.6660 +51605 221120 0.7090 +51605 253943 0.5550 +51605 387338 0.6740 +51606 54468 0.5130 +51606 55004 0.6590 +51606 55846 0.4990 +51606 57192 0.6250 +51606 57521 0.5080 +51606 57600 0.4100 +51606 57707 0.9250 +51606 58528 0.6110 +51606 64077 0.6720 +51606 64121 0.6460 +51606 64223 0.5170 +51606 79624 0.4850 +51606 79641 0.6960 +51606 79726 0.5580 +51606 81929 0.5520 +51606 83667 0.5010 +51606 84219 0.4990 +51606 84317 0.9170 +51606 90423 0.9890 +51606 90809 0.4360 +51606 96459 0.4720 +51606 127124 0.9690 +51606 144577 0.5110 +51606 147007 0.8780 +51606 153129 0.5060 +51606 154743 0.4050 +51606 155066 0.9860 +51606 163882 0.9490 +51606 201163 0.5170 +51606 245972 0.9970 +51606 245973 0.9920 +51606 285381 0.4580 +51606 389541 0.6900 +51606 440400 0.9960 +51608 54557 0.8990 +51608 55658 0.9560 +51608 55735 0.4690 +51608 57419 0.5720 +51608 60673 0.4020 +51608 80024 0.4240 +51608 80199 0.4930 +51608 80789 0.4420 +51608 118424 0.6330 +51608 123041 0.5720 +51608 164153 0.6640 +51608 220441 0.4220 +51608 283652 0.5720 +51608 344838 0.4290 +51611 54112 0.4490 +51611 54482 0.5020 +51611 55140 0.5820 +51611 55556 0.5820 +51611 55759 0.4600 +51611 60558 0.4720 +51611 64425 0.4700 +51611 64969 0.4760 +51611 65083 0.4830 +51611 79631 0.4650 +51611 79810 0.4430 +51611 80210 0.5720 +51611 81605 0.4050 +51611 84154 0.4500 +51611 85476 0.4890 +51611 89978 0.9720 +51611 92715 0.8760 +51611 93183 0.7090 +51611 120526 0.8180 +51611 124641 0.4250 +51611 148867 0.4650 +51611 148932 0.4930 +51611 285381 0.8570 +51611 101060200 0.4370 +51614 54850 0.4380 +51614 55687 0.6060 +51614 56605 0.4100 +51614 57222 0.6690 +51614 81537 0.4100 +51614 84705 0.9310 +51614 201232 0.4220 +51614 245812 0.4530 +51614 285521 0.4470 +51616 54107 0.7220 +51616 54145 0.4900 +51616 54457 0.9400 +51616 55578 0.9900 +51616 55689 0.7930 +51616 56655 0.7320 +51616 56943 0.9860 +51616 56970 0.9910 +51616 57325 0.7790 +51616 63931 0.4820 +51616 83443 0.8090 +51616 83860 0.9670 +51616 84101 0.4110 +51616 84749 0.4380 +51616 85235 0.5040 +51616 85236 0.7320 +51616 92815 0.5040 +51616 93624 0.9930 +51616 112869 0.9970 +51616 117143 0.9940 +51616 127002 0.7060 +51616 128312 0.7340 +51616 129685 0.9960 +51616 138474 0.9690 +51616 148156 0.4380 +51616 158880 0.7060 +51616 158983 0.4910 +51616 221613 0.5040 +51616 222255 0.5950 +51616 255626 0.7330 +51616 286436 0.4910 +51616 317772 0.5040 +51616 343070 0.4180 +51616 374395 0.5540 +51616 387332 0.8710 +51616 389856 0.7020 +51616 391742 0.7180 +51616 391746 0.7180 +51616 391747 0.7180 +51616 399949 0.5960 +51616 404672 0.9070 +51616 440689 0.7340 +51616 646066 0.7180 +51616 646103 0.7180 +51616 100287513 0.4110 +51616 102723526 0.7180 +51616 112488736 0.7180 +51616 112488737 0.7180 +51616 112488738 0.7180 +51616 112488739 0.7180 +51616 112488740 0.7180 +51616 112488745 0.7180 +51616 112488746 0.7180 +51616 112488747 0.7180 +51616 114483833 0.4910 +51617 84687 0.4930 +51617 158038 0.4570 +51617 440730 0.4460 +51617 643226 0.4930 +51619 54476 0.4230 +51619 55072 0.4510 +51619 55236 0.7740 +51619 55585 0.4280 +51619 55611 0.7490 +51619 55665 0.4790 +51619 64320 0.5510 +51619 79594 0.4520 +51619 79876 0.6030 +51619 80019 0.6060 +51619 83737 0.4720 +51619 84231 0.4610 +51619 92912 0.4290 +51619 113878 0.5310 +51619 135892 0.4220 +51619 148581 0.5100 +51619 387522 0.4390 +51619 494470 0.5040 +51621 54893 0.7310 +51621 58508 0.4640 +51621 79148 0.4380 +51621 89839 0.4520 +51621 161725 0.6530 +51621 400916 0.4210 +51622 51699 0.4130 +51622 55062 0.4080 +51622 55357 0.4570 +51622 55614 0.4040 +51622 55697 0.5080 +51622 55823 0.9450 +51622 56850 0.6770 +51622 57617 0.9440 +51622 57679 0.5180 +51622 64145 0.4390 +51622 64601 0.9510 +51622 64786 0.6060 +51622 65082 0.8630 +51622 79109 0.5530 +51622 79443 0.4570 +51622 79735 0.4340 +51622 79892 0.4360 +51622 80025 0.5320 +51622 80320 0.4240 +51622 81609 0.4140 +51622 84315 0.9990 +51622 85021 0.4390 +51622 89781 0.6270 +51622 124997 0.6300 +51622 221079 0.4750 +51622 221960 0.9680 +51622 338382 0.7030 +51622 100310846 0.4070 +51626 54903 0.4080 +51626 54916 0.4070 +51626 55081 0.6570 +51626 55112 0.9990 +51626 55212 0.5650 +51626 55764 0.7490 +51626 56912 0.4860 +51626 57539 0.7840 +51626 57560 0.7490 +51626 57728 0.7650 +51626 64792 0.4710 +51626 79659 0.9990 +51626 79800 0.4170 +51626 79809 0.6790 +51626 79989 0.6060 +51626 80173 0.4200 +51626 83657 0.8870 +51626 83658 0.9900 +51626 89765 0.4690 +51626 89891 0.9970 +51626 90410 0.5280 +51626 91147 0.4160 +51626 112752 0.6390 +51626 114327 0.4170 +51626 129880 0.5860 +51626 132884 0.6270 +51626 140735 0.9780 +51626 150737 0.4990 +51626 153241 0.5150 +51626 200132 0.7310 +51626 200894 0.4590 +51626 252983 0.4070 +51626 255758 0.9890 +51626 261734 0.4010 +51626 343521 0.7440 +51626 644890 0.4660 +51629 55437 0.6890 +51629 80700 0.5100 +51629 81689 0.6370 +51629 83606 0.5560 +51629 94081 0.4140 +51629 116151 0.5470 +51629 200205 0.5470 +51629 399512 0.5710 +51631 51690 0.5510 +51631 51747 0.8430 +51631 54606 0.4080 +51631 54819 0.4260 +51631 54952 0.5580 +51631 55015 0.8980 +51631 55421 0.8070 +51631 55660 0.6660 +51631 55692 0.9350 +51631 55954 0.5910 +51631 56257 0.5560 +51631 58517 0.8960 +51631 79005 0.9260 +51631 79696 0.4930 +51631 79882 0.4900 +51631 83443 0.4790 +51631 83938 0.5270 +51631 84271 0.4060 +51631 84316 0.4560 +51631 84844 0.5850 +51631 84967 0.5420 +51631 124245 0.6020 +51631 126259 0.4560 +51631 135295 0.5090 +51631 140890 0.5470 +51631 147650 0.4560 +51631 149041 0.5320 +51631 154791 0.6780 +51631 155066 0.5480 +51631 220074 0.5270 +51631 221092 0.4700 +51631 256536 0.5980 +51631 347744 0.5580 +51631 392517 0.6250 +51633 53339 0.4310 +51633 54468 0.4440 +51633 54491 0.4610 +51633 54726 0.6210 +51633 54764 0.4630 +51633 55432 0.6430 +51633 55435 0.4500 +51633 55593 0.6500 +51633 55611 0.8510 +51633 55643 0.4350 +51633 56957 0.5980 +51633 57602 0.5100 +51633 57646 0.5200 +51633 57663 0.4500 +51633 57695 0.4790 +51633 64854 0.4430 +51633 78990 0.5760 +51633 79868 0.4800 +51633 80124 0.6260 +51633 83844 0.4500 +51633 84101 0.4130 +51633 84196 0.4770 +51633 84640 0.4900 +51633 84669 0.4170 +51633 84955 0.6040 +51633 85015 0.5530 +51633 90268 0.5050 +51633 91801 0.4400 +51633 114803 0.5540 +51633 126119 0.4130 +51633 142940 0.4650 +51633 161725 0.6300 +51633 219333 0.4340 +51633 220213 0.5860 +51633 221302 0.9210 +51633 373509 0.4530 +51633 377630 0.4780 +51633 389856 0.4320 +51633 728373 0.4630 +51634 51639 0.9360 +51634 51645 0.8320 +51634 51690 0.9740 +51634 51691 0.9530 +51634 54865 0.5450 +51634 54883 0.6500 +51634 54957 0.4330 +51634 55094 0.5020 +51634 55100 0.5420 +51634 55110 0.9070 +51634 55234 0.9040 +51634 55660 0.7580 +51634 55696 0.9480 +51634 55702 0.6700 +51634 56259 0.8120 +51634 56949 0.9450 +51634 57187 0.6100 +51634 57461 0.6390 +51634 57703 0.9960 +51634 57819 0.9550 +51634 59286 0.8580 +51634 60625 0.5720 +51634 65109 0.5550 +51634 79005 0.8030 +51634 79169 0.5060 +51634 79171 0.4610 +51634 79446 0.5180 +51634 79576 0.7680 +51634 79637 0.9230 +51634 79753 0.9990 +51634 80198 0.4400 +51634 83443 0.9950 +51634 83550 0.4750 +51634 83938 0.5590 +51634 84060 0.8030 +51634 84081 0.4440 +51634 84450 0.4800 +51634 84530 0.5750 +51634 84811 0.9990 +51634 84844 0.9990 +51634 84950 0.9810 +51634 84967 0.4540 +51634 85313 0.4820 +51634 96764 0.4490 +51634 144983 0.4220 +51634 153527 0.9940 +51634 154007 0.7290 +51634 159090 0.4070 +51634 164045 0.6290 +51634 164781 0.4200 +51634 203522 0.4520 +51634 220074 0.5590 +51634 220988 0.4260 +51634 222183 0.8280 +51634 256536 0.8400 +51634 283349 0.4210 +51634 284325 0.4920 +51634 286499 0.4760 +51634 348793 0.4500 +51634 387640 0.4180 +51634 100534599 0.9220 +51634 101669762 0.4130 +51635 54995 0.4590 +51635 64577 0.4330 +51635 79041 0.5230 +51635 79654 0.4710 +51635 84233 0.5520 +51635 90231 0.4390 +51635 112812 0.4630 +51635 115817 0.4740 +51637 53371 0.4880 +51637 55177 0.7390 +51637 55234 0.5710 +51637 56257 0.4320 +51637 57532 0.5110 +51637 57544 0.4630 +51637 79074 0.9970 +51637 80821 0.4140 +51637 83540 0.4060 +51637 124801 0.6890 +51637 133482 0.4160 +51637 147965 0.7490 +51637 221400 0.4200 +51637 283742 0.9990 +51637 339487 0.9590 +51639 51645 0.8730 +51639 51690 0.9490 +51639 51691 0.8530 +51639 51729 0.8080 +51639 51747 0.5970 +51639 54883 0.5270 +51639 55094 0.4250 +51639 55100 0.4130 +51639 55110 0.6990 +51639 55234 0.8740 +51639 55285 0.8230 +51639 55599 0.9640 +51639 55671 0.4450 +51639 55696 0.8380 +51639 55702 0.5360 +51639 55954 0.8650 +51639 56259 0.9000 +51639 56949 0.8890 +51639 57092 0.4960 +51639 57703 0.8700 +51639 57794 0.5550 +51639 57819 0.8480 +51639 59286 0.8310 +51639 60625 0.4150 +51639 65109 0.4130 +51639 79005 0.8850 +51639 79637 0.9220 +51639 79753 0.9400 +51639 80218 0.4200 +51639 80349 0.5080 +51639 83443 0.9990 +51639 84060 0.8010 +51639 84081 0.4040 +51639 84661 0.4620 +51639 84811 0.9320 +51639 84844 0.9990 +51639 84950 0.8580 +51639 84991 0.6960 +51639 85313 0.4260 +51639 85437 0.8900 +51639 90324 0.9070 +51639 118487 0.4260 +51639 124245 0.4650 +51639 134492 0.4570 +51639 139804 0.5740 +51639 151987 0.6130 +51639 153527 0.8270 +51639 154007 0.8340 +51639 254394 0.5100 +51639 256536 0.8400 +51639 284695 0.4970 +51639 285855 0.4160 +51639 100534599 0.8180 +51642 51649 0.9220 +51642 51650 0.9380 +51642 54148 0.9710 +51642 54460 0.8960 +51642 54516 0.5680 +51642 54534 0.9660 +51642 54948 0.9030 +51642 54998 0.8560 +51642 55037 0.9170 +51642 55052 0.9470 +51642 55168 0.9200 +51642 55173 0.9340 +51642 55316 0.4220 +51642 56945 0.9320 +51642 57129 0.9710 +51642 60488 0.8570 +51642 63875 0.8690 +51642 63931 0.9280 +51642 64432 0.8830 +51642 64928 0.8630 +51642 64949 0.8950 +51642 64951 0.8660 +51642 64960 0.9220 +51642 64963 0.9000 +51642 64965 0.8370 +51642 64968 0.8570 +51642 64969 0.8860 +51642 64975 0.9570 +51642 64976 0.9680 +51642 64978 0.9530 +51642 64979 0.8910 +51642 64981 0.9110 +51642 64983 0.8440 +51642 65003 0.9100 +51642 65005 0.9100 +51642 65008 0.8870 +51642 65080 0.8920 +51642 65993 0.9210 +51642 78988 0.8810 +51642 79590 0.8810 +51642 80227 0.5520 +51642 84311 0.9410 +51642 84337 0.5740 +51642 84340 0.8310 +51642 84545 0.8450 +51642 84769 0.4930 +51642 85476 0.8670 +51642 90480 0.9670 +51642 91574 0.8610 +51642 92170 0.8140 +51642 92399 0.8770 +51642 115416 0.8780 +51642 116540 0.9130 +51642 116541 0.8810 +51642 118487 0.9070 +51642 122704 0.9350 +51642 124995 0.9510 +51642 125150 0.4740 +51642 128308 0.9510 +51642 130916 0.8310 +51642 134492 0.4570 +51642 219402 0.5870 +51642 219927 0.8990 +51642 387338 0.8590 +51642 440574 0.5530 +51642 493753 0.4870 +51642 127898561 0.8110 +51643 64135 0.7460 +51643 81033 0.4350 +51643 84298 0.5390 +51643 255520 0.4890 +51645 51759 0.8020 +51645 53938 0.9140 +51645 54883 0.8250 +51645 55094 0.5240 +51645 55100 0.8060 +51645 55110 0.8360 +51645 55234 0.4230 +51645 55280 0.4320 +51645 55696 0.9970 +51645 55702 0.8200 +51645 56949 0.9940 +51645 57129 0.4140 +51645 57461 0.9070 +51645 57542 0.4270 +51645 57703 0.9820 +51645 57819 0.6970 +51645 58509 0.9580 +51645 59286 0.4210 +51645 60491 0.4800 +51645 60625 0.5490 +51645 63932 0.8530 +51645 65003 0.4240 +51645 65109 0.8070 +51645 79084 0.5960 +51645 79165 0.8720 +51645 79171 0.6190 +51645 79446 0.5480 +51645 79576 0.9590 +51645 79706 0.9580 +51645 79753 0.8800 +51645 80011 0.8040 +51645 83443 0.8620 +51645 83938 0.5010 +51645 84292 0.8150 +51645 84811 0.8350 +51645 84844 0.8960 +51645 84950 0.5590 +51645 84967 0.4160 +51645 143884 0.9870 +51645 151903 0.9030 +51645 153527 0.4250 +51645 163859 0.9580 +51645 199746 0.4990 +51645 219927 0.4990 +51645 220074 0.5010 +51645 642489 0.4320 +51645 100534599 0.8350 +51646 51696 0.4690 +51646 54994 0.8850 +51646 57515 0.4370 +51646 57610 0.9490 +51646 64777 0.8320 +51646 64795 0.9430 +51646 79018 0.6960 +51646 80232 0.9390 +51646 84669 0.4180 +51646 153339 0.5090 +51646 221303 0.5430 +51646 253558 0.4660 +51646 284004 0.4620 +51647 51750 0.9000 +51647 54901 0.6830 +51647 55140 0.4590 +51647 55253 0.6010 +51647 57019 0.7300 +51647 57128 0.5080 +51647 64210 0.9990 +51647 64428 0.9940 +51647 80224 0.4550 +51647 81689 0.5120 +51647 83990 0.8520 +51647 84191 0.9650 +51647 122961 0.4850 +51647 140775 0.4190 +51647 150274 0.6240 +51647 200205 0.4860 +51647 220064 0.4130 +51647 388962 0.4310 +51649 51650 0.9940 +51649 51651 0.4080 +51649 54148 0.9130 +51649 54460 0.9910 +51649 54516 0.6070 +51649 54534 0.9140 +51649 54948 0.9180 +51649 54949 0.5550 +51649 54998 0.9740 +51649 55037 0.9960 +51649 55052 0.9320 +51649 55081 0.4070 +51649 55168 0.9780 +51649 55173 0.9930 +51649 55794 0.4170 +51649 55957 0.4170 +51649 56945 0.9970 +51649 57129 0.9060 +51649 60488 0.9960 +51649 63875 0.8630 +51649 63931 0.9960 +51649 64432 0.9930 +51649 64745 0.8900 +51649 64928 0.8710 +51649 64949 0.9870 +51649 64951 0.9910 +51649 64960 0.9950 +51649 64963 0.9950 +51649 64965 0.9980 +51649 64968 0.9930 +51649 64969 0.9980 +51649 64975 0.9400 +51649 64976 0.9110 +51649 64978 0.8970 +51649 64979 0.8740 +51649 64981 0.8780 +51649 64983 0.8740 +51649 65003 0.9440 +51649 65005 0.8820 +51649 65008 0.8790 +51649 65080 0.9180 +51649 65993 0.9960 +51649 78988 0.8670 +51649 79590 0.9050 +51649 79863 0.8410 +51649 80273 0.5490 +51649 84273 0.9020 +51649 84311 0.8950 +51649 84545 0.9270 +51649 85476 0.8280 +51649 90313 0.4080 +51649 90480 0.8620 +51649 91574 0.4410 +51649 92259 0.8830 +51649 92399 0.8760 +51649 92609 0.4590 +51649 116540 0.8240 +51649 116541 0.9250 +51649 118487 0.9940 +51649 122704 0.8860 +51649 124995 0.8890 +51649 128240 0.5810 +51649 128308 0.8810 +51649 131118 0.4030 +51649 131965 0.4530 +51649 158234 0.7800 +51649 196074 0.8320 +51649 219402 0.9050 +51649 219927 0.9180 +51649 347487 0.4030 +51649 404093 0.4810 +51649 654364 0.4060 +51649 100287482 0.4030 +51650 54148 0.8640 +51650 54460 0.9970 +51650 54516 0.7110 +51650 54534 0.9220 +51650 54543 0.6530 +51650 54948 0.8880 +51650 54998 0.9900 +51650 55037 0.9870 +51650 55052 0.9430 +51650 55168 0.9960 +51650 55173 0.9950 +51650 55316 0.5610 +51650 55602 0.5370 +51650 55967 0.4970 +51650 56945 0.9930 +51650 57001 0.4080 +51650 57129 0.9560 +51650 57226 0.4240 +51650 60488 0.9920 +51650 63875 0.8870 +51650 63931 0.9970 +51650 64432 0.9910 +51650 64745 0.8110 +51650 64928 0.8680 +51650 64949 0.9910 +51650 64951 0.9970 +51650 64960 0.9970 +51650 64963 0.9970 +51650 64965 0.9910 +51650 64968 0.9950 +51650 64969 0.9980 +51650 64975 0.9040 +51650 64976 0.9360 +51650 64978 0.8560 +51650 64979 0.8730 +51650 64981 0.8790 +51650 64983 0.8980 +51650 65003 0.8800 +51650 65005 0.8850 +51650 65008 0.8370 +51650 65080 0.8820 +51650 65993 0.9920 +51650 78988 0.9040 +51650 79590 0.9320 +51650 79716 0.4700 +51650 79863 0.8320 +51650 81892 0.5130 +51650 84077 0.4920 +51650 84273 0.8110 +51650 84311 0.9220 +51650 84545 0.8720 +51650 84833 0.4490 +51650 85476 0.8400 +51650 90288 0.4080 +51650 90313 0.6060 +51650 90416 0.4970 +51650 90480 0.8770 +51650 91574 0.5080 +51650 92259 0.8860 +51650 92399 0.8530 +51650 116228 0.4590 +51650 116540 0.9190 +51650 116541 0.9480 +51650 118487 0.9890 +51650 122704 0.9210 +51650 124995 0.8420 +51650 126328 0.4050 +51650 128240 0.5730 +51650 128308 0.9150 +51650 131118 0.4470 +51650 158234 0.7820 +51650 196074 0.8240 +51650 219402 0.9150 +51650 219927 0.9130 +51650 284106 0.6030 +51650 404672 0.4070 +51650 493753 0.4630 +51651 55117 0.4340 +51651 55278 0.4720 +51651 55288 0.4080 +51651 57003 0.4690 +51651 57017 0.4610 +51651 63897 0.4290 +51651 65080 0.4860 +51651 79073 0.7930 +51651 79594 0.4110 +51651 79665 0.4350 +51651 81671 0.4090 +51651 84749 0.6290 +51651 122553 0.4540 +51651 124773 0.4290 +51651 138428 0.4580 +51651 284697 0.4580 +51652 51807 0.5030 +51652 53336 0.4200 +51652 54862 0.7010 +51652 55048 0.9400 +51652 55137 0.4040 +51652 55165 0.4650 +51652 55293 0.6760 +51652 57132 0.9990 +51652 63932 0.4630 +51652 64149 0.5690 +51652 64750 0.4490 +51652 79643 0.9990 +51652 79720 0.9640 +51652 79792 0.4960 +51652 79861 0.5040 +51652 80086 0.4990 +51652 81027 0.4990 +51652 81631 0.4490 +51652 84313 0.9930 +51652 84557 0.4320 +51652 84617 0.5010 +51652 84790 0.5070 +51652 89853 0.9460 +51652 91782 0.9890 +51652 92421 0.9820 +51652 93343 0.9520 +51652 112714 0.4990 +51652 113457 0.4990 +51652 128866 0.9980 +51652 129531 0.7400 +51652 137492 0.9620 +51652 148362 0.4830 +51652 155382 0.9430 +51652 197259 0.9450 +51652 200014 0.6830 +51652 200576 0.4490 +51652 221496 0.6510 +51652 260334 0.4990 +51652 347688 0.5070 +51652 347733 0.5000 +51652 390595 0.5400 +51652 440738 0.4310 +51652 100526767 0.9420 +51654 54516 0.4080 +51654 54802 0.7870 +51654 54888 0.4440 +51654 54920 0.5190 +51654 54931 0.4020 +51654 54960 0.4500 +51654 55006 0.5430 +51654 55253 0.5330 +51654 55316 0.5440 +51654 55571 0.5140 +51654 55644 0.4160 +51654 55660 0.6930 +51654 55687 0.6560 +51654 56915 0.9940 +51654 57136 0.4050 +51654 57570 0.5030 +51654 60625 0.5110 +51654 63899 0.4670 +51654 64172 0.6060 +51654 64965 0.4740 +51654 79691 0.5750 +51654 79693 0.5860 +51654 79922 0.4380 +51654 79979 0.4240 +51654 80279 0.5170 +51654 80324 0.5380 +51654 80745 0.4490 +51654 81890 0.4550 +51654 83480 0.4870 +51654 84299 0.4160 +51654 84705 0.6580 +51654 84881 0.5250 +51654 87178 0.4430 +51654 90353 0.4790 +51654 91574 0.4120 +51654 92399 0.4850 +51654 113000 0.4030 +51654 129685 0.5920 +51654 171568 0.4880 +51654 196074 0.4800 +51654 196294 0.5610 +51654 219927 0.4070 +51654 255104 0.6920 +51654 284131 0.6320 +51654 285367 0.4930 +51655 51764 0.6680 +51655 51806 0.8230 +51655 54331 0.6500 +51655 54518 0.6450 +51655 55970 0.6520 +51655 59345 0.6920 +51655 64746 0.6090 +51655 81565 0.4500 +51655 83547 0.4240 +51655 83593 0.5010 +51655 83660 0.5100 +51655 91860 0.8080 +51655 94235 0.6500 +51655 163688 0.8080 +51655 255275 0.4140 +51657 55190 0.6460 +51657 56000 0.5050 +51657 56658 0.4490 +51657 80308 0.4520 +51657 83862 0.5230 +51657 127933 0.5540 +51657 284013 0.4090 +51659 51692 0.6920 +51659 53981 0.5100 +51659 54107 0.5180 +51659 54443 0.4090 +51659 54478 0.5350 +51659 54821 0.4520 +51659 54892 0.4640 +51659 54962 0.9760 +51659 55143 0.6770 +51659 55148 0.4340 +51659 55165 0.5310 +51659 55215 0.5110 +51659 55339 0.5830 +51659 55355 0.5090 +51659 55388 0.9380 +51659 55610 0.4210 +51659 55723 0.5400 +51659 55839 0.6940 +51659 56648 0.4480 +51659 56655 0.4420 +51659 56992 0.6960 +51659 57405 0.5440 +51659 63922 0.4050 +51659 63967 0.8970 +51659 64151 0.8520 +51659 64785 0.9990 +51659 64946 0.4360 +51659 79019 0.8350 +51659 79075 0.7180 +51659 79682 0.5480 +51659 79733 0.4450 +51659 79801 0.4030 +51659 79892 0.7270 +51659 79968 0.5740 +51659 80178 0.4920 +51659 81620 0.9060 +51659 83461 0.5660 +51659 83540 0.5410 +51659 83693 0.4280 +51659 83879 0.5660 +51659 84057 0.4360 +51659 84250 0.5110 +51659 84296 0.9990 +51659 84515 0.7830 +51659 84722 0.4080 +51659 90381 0.6100 +51659 113130 0.6830 +51659 116028 0.4650 +51659 116211 0.6990 +51659 122769 0.8600 +51659 136157 0.5190 +51659 143506 0.5190 +51659 147841 0.5840 +51659 150468 0.4870 +51659 157313 0.5200 +51659 157570 0.4130 +51659 157777 0.7030 +51659 196120 0.5190 +51659 220134 0.4720 +51659 254394 0.9140 +51659 259266 0.6410 +51659 283431 0.5590 +51659 387103 0.4860 +51659 390031 0.5190 +51659 390033 0.5190 +51659 404550 0.5130 +51659 441584 0.5190 +51659 643988 0.5190 +51660 113402 0.4350 +51660 132949 0.4040 +51661 53938 0.4030 +51661 65977 0.4030 +51661 83888 0.6100 +51661 256302 0.4010 +51663 54542 0.5040 +51663 54545 0.4840 +51663 55031 0.5600 +51663 55206 0.5420 +51663 55291 0.4510 +51663 55833 0.5960 +51663 56257 0.4360 +51663 79968 0.5100 +51663 84196 0.4840 +51663 85015 0.4640 +51663 113251 0.4880 +51663 114799 0.4010 +51663 118813 0.4040 +51663 149041 0.4390 +51663 340075 0.4050 +51665 54522 0.4120 +51665 54939 0.5190 +51665 54951 0.5430 +51665 55832 0.6460 +51665 57730 0.4110 +51665 84210 0.4220 +51665 127247 0.4910 +51665 136319 0.4060 +51665 140456 0.4090 +51665 140458 0.4890 +51665 140459 0.6690 +51665 140739 0.6100 +51665 149951 0.4990 +51665 150684 0.4990 +51665 154881 0.5040 +51665 170622 0.4990 +51665 200539 0.4980 +51665 401036 0.4020 +51665 554226 0.4780 +51666 54108 0.4230 +51666 54939 0.5190 +51666 54951 0.5430 +51666 55089 0.4170 +51666 55352 0.4150 +51666 55527 0.9000 +51666 55607 0.6030 +51666 55662 0.6720 +51666 55832 0.5010 +51666 56929 0.9000 +51666 57643 0.5460 +51666 57688 0.5460 +51666 64921 0.5020 +51666 65249 0.5460 +51666 79699 0.9000 +51666 84440 0.4170 +51666 116138 0.9000 +51666 118932 0.4410 +51666 122416 0.9000 +51666 122773 0.9040 +51666 140456 0.4240 +51666 140458 0.4460 +51666 140459 0.4900 +51666 140462 0.4240 +51666 140739 0.5170 +51666 142685 0.5460 +51666 142686 0.4650 +51666 149951 0.4990 +51666 150684 0.9190 +51666 165721 0.4970 +51666 166348 0.4790 +51666 170622 0.4990 +51666 266812 0.4240 +51666 339291 0.4390 +51666 347688 0.4300 +51666 390616 0.4180 +51666 440561 0.9000 +51666 440590 0.5400 +51666 653619 0.9000 +51667 54861 0.4010 +51667 55236 0.5720 +51667 55784 0.4050 +51667 57608 0.4100 +51667 59349 0.4560 +51667 84993 0.4810 +51667 115361 0.4450 +51667 120892 0.4150 +51667 122706 0.5110 +51667 123228 0.6430 +51667 143471 0.4990 +51668 54585 0.4250 +51668 54802 0.4350 +51668 55081 0.9970 +51668 55212 0.4150 +51668 55764 0.8270 +51668 56912 0.9990 +51668 57505 0.6090 +51668 57539 0.7940 +51668 57560 0.9850 +51668 57576 0.4850 +51668 57728 0.8020 +51668 64682 0.8860 +51668 64792 0.9990 +51668 79659 0.4290 +51668 79809 0.8190 +51668 79989 0.9920 +51668 80173 0.9980 +51668 84446 0.4240 +51668 90410 0.9890 +51668 92104 0.8840 +51668 94086 0.4320 +51668 112752 0.7970 +51668 126393 0.4590 +51668 129880 0.4490 +51668 150737 0.9960 +51668 199223 0.5460 +51668 200894 0.4780 +51668 375061 0.6610 +51668 388531 0.5330 +51669 55754 0.4030 +51669 57488 0.4270 +51669 57515 0.4300 +51669 57620 0.6330 +51669 80228 0.5510 +51669 83850 0.5320 +51669 84502 0.4310 +51669 84766 0.7550 +51669 84876 0.7760 +51669 93129 0.6310 +51669 149345 0.4460 +51669 151651 0.7170 +51669 159371 0.7270 +51669 375346 0.7820 +51673 89765 0.4320 +51673 117156 0.4760 +51673 128344 0.4560 +51673 283152 0.4340 +51676 54583 0.4800 +51676 54890 0.5920 +51676 54915 0.4780 +51676 54939 0.5190 +51676 54951 0.5430 +51676 55832 0.6890 +51676 56339 0.5860 +51676 57721 0.5850 +51676 64783 0.4160 +51676 64848 0.4700 +51676 79068 0.6620 +51676 91746 0.4420 +51676 92922 0.4550 +51676 123879 0.4910 +51676 127247 0.8630 +51676 140739 0.5220 +51676 149951 0.4990 +51676 150684 0.5030 +51676 157567 0.4440 +51676 170622 0.5340 +51676 283234 0.4010 +51676 343641 0.5890 +51676 651746 0.4080 +51678 54888 0.5990 +51678 55327 0.9240 +51678 55359 0.7660 +51678 57118 0.4470 +51678 57863 0.8780 +51678 64130 0.7230 +51678 199731 0.8880 +51678 284058 0.4010 +51678 337971 0.4790 +51678 100506243 0.4370 +51684 51715 0.8400 +51684 54903 0.4590 +51684 54986 0.8380 +51684 55081 0.5450 +51684 55138 0.4510 +51684 55582 0.8400 +51684 55764 0.6480 +51684 57459 0.4130 +51684 57720 0.4420 +51684 64399 0.6720 +51684 64839 0.7830 +51684 65988 0.8020 +51684 79659 0.6090 +51684 79809 0.8220 +51684 80199 0.4460 +51684 80331 0.4050 +51684 83737 0.7000 +51684 84231 0.4890 +51684 84976 0.5390 +51684 85455 0.4300 +51684 91653 0.5200 +51684 122706 0.4160 +51684 132884 0.7960 +51684 143471 0.4070 +51684 148979 0.5510 +51684 158763 0.4180 +51684 169792 0.9290 +51684 200894 0.4870 +51684 339745 0.9400 +51684 374654 0.9990 +51686 54558 0.6780 +51686 54855 0.4910 +51686 63926 0.4010 +51686 79893 0.7780 +51686 81616 0.4070 +51686 83983 0.6150 +51686 84895 0.4280 +51686 84988 0.4340 +51686 94086 0.5550 +51686 113451 0.9800 +51686 116840 0.6060 +51686 122616 0.5230 +51686 122664 0.5660 +51686 122706 0.4250 +51686 130560 0.4470 +51686 132671 0.4860 +51686 140732 0.5250 +51686 143471 0.4410 +51686 146849 0.5930 +51686 146852 0.4670 +51686 199720 0.5580 +51686 219938 0.6510 +51686 339976 0.4290 +51686 374768 0.4340 +51686 374955 0.4310 +51686 389124 0.4990 +51686 440955 0.4620 +51690 51691 0.9990 +51690 51729 0.8800 +51690 51747 0.5470 +51690 54464 0.9830 +51690 54521 0.5650 +51690 54957 0.9030 +51690 55015 0.6930 +51690 55110 0.9220 +51690 55173 0.4470 +51690 55234 0.9800 +51690 55285 0.6950 +51690 55374 0.4880 +51690 55599 0.6950 +51690 55651 0.5400 +51690 55660 0.6040 +51690 55692 0.5650 +51690 55696 0.8520 +51690 55723 0.6040 +51690 55749 0.5080 +51690 55802 0.6640 +51690 55954 0.7780 +51690 56257 0.4390 +51690 56892 0.4650 +51690 57703 0.9110 +51690 57794 0.5170 +51690 57819 0.9990 +51690 59286 0.9190 +51690 64320 0.4350 +51690 64779 0.6180 +51690 64837 0.5230 +51690 64852 0.4530 +51690 65003 0.4060 +51690 79171 0.9400 +51690 79650 0.4650 +51690 79753 0.9910 +51690 80153 0.7890 +51690 81892 0.4250 +51690 83443 0.9960 +51690 83938 0.5250 +51690 84135 0.5800 +51690 84316 0.8960 +51690 84619 0.4180 +51690 84681 0.4060 +51690 84811 0.9670 +51690 84844 0.9930 +51690 84950 0.9830 +51690 84967 0.7900 +51690 85437 0.5720 +51690 113444 0.5220 +51690 115265 0.6140 +51690 118460 0.5310 +51690 118472 0.4850 +51690 124801 0.6710 +51690 125988 0.4050 +51690 126259 0.6600 +51690 134353 0.5720 +51690 139804 0.6310 +51690 147650 0.6590 +51690 149986 0.4680 +51690 153527 0.9980 +51690 154007 0.5670 +51690 164045 0.5530 +51690 164781 0.7910 +51690 167227 0.7960 +51690 196513 0.6710 +51690 197135 0.9010 +51690 219988 0.9890 +51690 220074 0.5250 +51690 284325 0.9040 +51690 348793 0.7910 +51691 51729 0.9020 +51691 51747 0.5420 +51691 54464 0.9580 +51691 54512 0.4930 +51691 54757 0.4160 +51691 54957 0.8640 +51691 55110 0.9210 +51691 55234 0.9930 +51691 55285 0.4670 +51691 55599 0.4660 +51691 55651 0.5600 +51691 55696 0.8430 +51691 55749 0.5900 +51691 56892 0.4740 +51691 57703 0.9070 +51691 57794 0.5080 +51691 57819 0.9990 +51691 58517 0.4490 +51691 59286 0.9250 +51691 79171 0.9060 +51691 79631 0.4490 +51691 79650 0.6890 +51691 79753 0.9900 +51691 80153 0.6460 +51691 80218 0.4210 +51691 83443 0.9940 +51691 83706 0.5230 +51691 83930 0.4340 +51691 83938 0.5950 +51691 84240 0.4570 +51691 84316 0.6950 +51691 84811 0.9560 +51691 84844 0.9970 +51691 84950 0.9830 +51691 84967 0.9020 +51691 85476 0.4490 +51691 118460 0.7950 +51691 124801 0.6150 +51691 126259 0.6240 +51691 134353 0.5890 +51691 147650 0.6240 +51691 149986 0.4200 +51691 151903 0.5480 +51691 153527 0.9970 +51691 164045 0.5280 +51691 164781 0.8080 +51691 167227 0.6790 +51691 196513 0.4960 +51691 197135 0.4370 +51691 219988 0.5770 +51691 220074 0.5950 +51691 220988 0.4020 +51691 221830 0.4630 +51691 284325 0.8970 +51691 348793 0.8170 +51692 51741 0.4060 +51692 53371 0.4740 +51692 53981 0.9990 +51692 55174 0.4520 +51692 55339 0.9990 +51692 55520 0.4840 +51692 55706 0.5140 +51692 55726 0.4540 +51692 55746 0.4970 +51692 55756 0.5500 +51692 56903 0.9640 +51692 56916 0.4370 +51692 56949 0.4030 +51692 57117 0.5380 +51692 57122 0.6100 +51692 57466 0.4960 +51692 57508 0.4120 +51692 57710 0.8170 +51692 58517 0.4930 +51692 60491 0.6170 +51692 60528 0.7940 +51692 64421 0.4150 +51692 64848 0.4450 +51692 64852 0.7100 +51692 64858 0.6070 +51692 64895 0.9670 +51692 65123 0.5820 +51692 79023 0.6080 +51692 79084 0.8490 +51692 79577 0.6640 +51692 79869 0.9830 +51692 79902 0.5160 +51692 80335 0.9950 +51692 81556 0.4720 +51692 81608 0.9990 +51692 81929 0.4190 +51692 84524 0.6110 +51692 84967 0.9700 +51692 90025 0.8480 +51692 91746 0.4480 +51692 92105 0.7400 +51692 129401 0.4600 +51692 134353 0.9150 +51692 136157 0.8100 +51692 143506 0.8100 +51692 196120 0.8100 +51692 285148 0.4200 +51692 348995 0.4670 +51692 376940 0.5760 +51692 390031 0.8100 +51692 390033 0.8100 +51692 441584 0.8100 +51692 642843 0.9690 +51692 643988 0.6040 +51692 100101267 0.4740 +51693 54758 0.4370 +51693 55014 0.5130 +51693 55049 0.4830 +51693 55256 0.5910 +51693 55262 0.9050 +51693 57111 0.4060 +51693 57533 0.8270 +51693 57553 0.4960 +51693 58485 0.9990 +51693 60684 0.9980 +51693 64928 0.4800 +51693 79090 0.9970 +51693 79370 0.7910 +51693 80006 0.9870 +51693 81551 0.6050 +51693 81876 0.6780 +51693 84299 0.5780 +51693 85021 0.4320 +51693 85438 0.7870 +51693 89866 0.5060 +51693 91947 0.4470 +51693 113251 0.4480 +51693 117177 0.5210 +51693 118487 0.5010 +51693 122553 0.9990 +51693 126003 0.9990 +51693 134147 0.6060 +51693 146429 0.4380 +51693 167691 0.8430 +51693 197320 0.4520 +51693 197322 0.4030 +51693 219927 0.4660 +51693 285180 0.6090 +51693 339122 0.5700 +51693 100128327 0.9930 +51696 55644 0.4530 +51696 58473 0.5950 +51696 81669 0.4100 +51696 123803 0.4830 +51696 124460 0.8530 +51699 53407 0.4530 +51699 54520 0.9380 +51699 54939 0.8820 +51699 54951 0.8140 +51699 55275 0.5960 +51699 55471 0.5170 +51699 55610 0.4150 +51699 55667 0.4160 +51699 55737 0.9990 +51699 55860 0.5560 +51699 55907 0.6740 +51699 56851 0.5980 +51699 56942 0.5680 +51699 57020 0.9990 +51699 57182 0.8510 +51699 57537 0.4190 +51699 57617 0.4700 +51699 58533 0.9970 +51699 64786 0.4840 +51699 79065 0.6170 +51699 79594 0.5260 +51699 79971 0.8340 +51699 81609 0.9660 +51699 84079 0.9400 +51699 84313 0.6860 +51699 91612 0.4390 +51699 93343 0.5200 +51699 112574 0.4810 +51699 112936 0.9990 +51699 114815 0.5430 +51699 120892 0.5150 +51699 124997 0.4720 +51699 149951 0.8480 +51699 150684 0.8940 +51699 160760 0.4520 +51699 165918 0.9850 +51699 169166 0.6060 +51699 170622 0.8810 +51699 203430 0.4220 +51699 221960 0.4190 +51699 253725 0.8950 +51699 254122 0.6880 +51699 255104 0.6570 +51699 257364 0.4560 +51699 338382 0.5650 +51699 387680 0.6840 +51699 401548 0.6250 +51699 404636 0.9560 +51699 100287171 0.7050 +51700 54205 0.4270 +51700 55312 0.4820 +51700 56474 0.4130 +51700 56896 0.5620 +51700 80110 0.4620 +51700 80777 0.9940 +51700 89894 0.6130 +51700 119467 0.4250 +51700 124626 0.4120 +51700 124912 0.4080 +51700 127845 0.5360 +51700 151195 0.4340 +51700 283985 0.6080 +51700 339761 0.4090 +51700 341277 0.5050 +51700 389434 0.5480 +51701 55636 0.4040 +51701 55731 0.5380 +51701 80304 0.4100 +51701 83439 0.9560 +51701 84915 0.6020 +51701 89780 0.4260 +51701 192669 0.5060 +51701 192670 0.4990 +51702 149628 0.4200 +51702 388698 0.8460 +51702 653604 0.6220 +51703 55088 0.4410 +51703 55289 0.4160 +51703 55304 0.4940 +51703 55554 0.4810 +51703 55902 0.5390 +51703 56894 0.4220 +51703 57104 0.7520 +51703 57678 0.4830 +51703 60481 0.4280 +51703 64429 0.5190 +51703 65124 0.4790 +51703 79071 0.4980 +51703 79949 0.4370 +51703 79966 0.4300 +51703 80339 0.7360 +51703 80347 0.5830 +51703 80724 0.4470 +51703 81616 0.7290 +51703 83695 0.4420 +51703 83723 0.7130 +51703 84129 0.4780 +51703 84263 0.5090 +51703 84532 0.6530 +51703 84649 0.8240 +51703 84803 0.4630 +51703 85465 0.4160 +51703 119548 0.6410 +51703 126129 0.7920 +51703 129642 0.5350 +51703 132949 0.9110 +51703 137964 0.4840 +51703 143187 0.4600 +51703 150763 0.4180 +51703 158833 0.6560 +51703 254531 0.4250 +51703 376497 0.7820 +51703 647219 0.5430 +51703 109703458 0.4770 +51704 54814 0.4480 +51704 54958 0.5700 +51704 55120 0.6250 +51704 55572 0.4090 +51704 57507 0.5840 +51704 57512 0.5940 +51704 58473 0.4460 +51704 79047 0.4300 +51704 89866 0.5720 +51704 91133 0.4280 +51704 124152 0.6750 +51704 124274 0.5210 +51704 129787 0.4770 +51704 132789 0.5330 +51704 134285 0.4150 +51704 134359 0.4480 +51704 158038 0.4470 +51704 165829 0.5280 +51704 219402 0.4480 +51704 220296 0.4850 +51704 253559 0.4900 +51704 257194 0.5660 +51704 387509 0.4270 +51704 390598 0.4180 +51704 441631 0.4200 +51704 728116 0.4190 +51704 100526835 0.5860 +51705 54345 0.6100 +51705 54538 0.6940 +51705 54567 0.6290 +51705 55607 0.4650 +51705 55644 0.9260 +51705 57692 0.4120 +51705 64123 0.7820 +51705 64321 0.5690 +51705 79652 0.4610 +51705 79812 0.5630 +51705 80177 0.6430 +51705 83483 0.5220 +51705 90952 0.5330 +51705 91624 0.6190 +51705 92345 0.4380 +51705 116159 0.4400 +51705 121340 0.5120 +51705 123803 0.4740 +51705 126669 0.4940 +51705 143662 0.4740 +51705 146894 0.7160 +51705 161198 0.5160 +51705 171024 0.4790 +51705 201798 0.4190 +51705 201895 0.4010 +51705 221395 0.6130 +51705 641700 0.6410 +51705 100507679 0.4180 +51706 54205 0.4620 +51706 54495 0.4460 +51706 55312 0.4870 +51706 56474 0.4160 +51706 56896 0.5620 +51706 57017 0.4090 +51706 80777 0.9950 +51706 84883 0.4730 +51706 89894 0.6130 +51706 94121 0.4090 +51706 127845 0.5380 +51706 135228 0.4050 +51706 145226 0.4130 +51706 259215 0.4780 +51706 283985 0.6080 +51706 339761 0.4100 +51706 389434 0.5480 +51710 55432 0.7870 +51710 55666 0.5810 +51710 55929 0.4490 +51710 56943 0.5460 +51710 57645 0.4260 +51710 57805 0.4060 +51710 81856 0.5130 +51710 84101 0.7680 +51710 114548 0.4590 +51710 133482 0.4180 +51710 161725 0.7390 +51710 161882 0.5040 +51710 221302 0.8550 +51710 440093 0.4190 +51710 440686 0.4200 +51710 653604 0.4190 +51714 51734 0.8370 +51714 53373 0.4320 +51714 54952 0.4900 +51714 55829 0.9150 +51714 57190 0.8940 +51714 58515 0.9190 +51714 59343 0.4920 +51714 60678 0.7330 +51714 79048 0.8730 +51714 83642 0.8960 +51714 84299 0.8790 +51714 85465 0.8230 +51714 114112 0.8120 +51714 118672 0.5430 +51714 140606 0.8920 +51714 257202 0.6850 +51714 280636 0.8860 +51714 348303 0.8730 +51714 493869 0.5880 +51715 54886 0.6010 +51715 57539 0.4520 +51715 57576 0.6060 +51715 64792 0.6260 +51715 79363 0.6130 +51715 79600 0.7840 +51715 79809 0.8040 +51715 80199 0.4280 +51715 84440 0.4520 +51715 89846 0.4470 +51715 90410 0.4330 +51715 115704 0.7000 +51715 117177 0.4400 +51715 200894 0.6710 +51715 374654 0.4050 +51715 392509 0.4640 +51719 51765 0.9920 +51719 53632 0.7600 +51719 54861 0.8210 +51719 55437 0.9990 +51719 57521 0.4210 +51719 57551 0.4860 +51719 59286 0.4760 +51719 64067 0.4020 +51719 65125 0.4860 +51719 65266 0.4850 +51719 65267 0.4850 +51719 81617 0.9770 +51719 84260 0.4680 +51719 84446 0.5120 +51719 90678 0.5310 +51719 92335 0.9990 +51719 114790 0.5200 +51719 134553 0.4910 +51719 285527 0.5120 +51720 54145 0.5610 +51720 54948 0.4020 +51720 55183 0.6550 +51720 55215 0.5960 +51720 55611 0.4440 +51720 56852 0.5790 +51720 57128 0.5820 +51720 57406 0.5990 +51720 57599 0.4480 +51720 57695 0.4160 +51720 59348 0.4630 +51720 63931 0.4130 +51720 64397 0.4610 +51720 64421 0.6110 +51720 65263 0.4180 +51720 79184 0.9990 +51720 79664 0.4810 +51720 79728 0.5850 +51720 83990 0.5320 +51720 84142 0.9990 +51720 84446 0.4720 +51720 84515 0.4750 +51720 85235 0.4990 +51720 85236 0.5570 +51720 90249 0.5960 +51720 92815 0.4990 +51720 113510 0.4560 +51720 116832 0.4580 +51720 124454 0.4590 +51720 128312 0.5590 +51720 165918 0.9440 +51720 221037 0.5470 +51720 221302 0.5770 +51720 221613 0.4990 +51720 221711 0.4790 +51720 254225 0.6110 +51720 255626 0.5600 +51720 284417 0.5720 +51720 317772 0.5040 +51725 51778 0.4110 +51725 54363 0.4680 +51725 54413 0.6390 +51725 55832 0.4990 +51725 57107 0.4600 +51725 57502 0.6560 +51725 64326 0.8380 +51725 79816 0.5450 +51725 79947 0.5490 +51725 84676 0.4270 +51725 85358 0.5100 +51725 91734 0.6070 +51725 114907 0.4820 +51725 116150 0.4660 +51725 118461 0.4820 +51725 122416 0.4520 +51725 123879 0.4990 +51725 137682 0.5610 +51725 137735 0.4420 +51725 139411 0.5080 +51725 140456 0.6060 +51725 142686 0.4200 +51725 146862 0.4020 +51725 152330 0.6850 +51725 168400 0.4040 +51725 255798 0.4110 +51725 285195 0.4340 +51725 340390 0.5610 +51725 401265 0.4150 +51725 493829 0.4250 +51726 54431 0.6680 +51726 54658 0.5960 +51726 54788 0.6150 +51726 54979 0.4220 +51726 55172 0.5440 +51726 55757 0.6760 +51726 55829 0.4990 +51726 56886 0.7460 +51726 56984 0.7300 +51726 57003 0.5930 +51726 57110 0.4200 +51726 58477 0.4420 +51726 64215 0.5620 +51726 64374 0.6790 +51726 64714 0.7480 +51726 79053 0.5560 +51726 79174 0.7560 +51726 79583 0.4220 +51726 79657 0.5790 +51726 80020 0.5750 +51726 80224 0.5980 +51726 80273 0.5780 +51726 81037 0.4380 +51726 81567 0.6120 +51726 81570 0.5300 +51726 81572 0.5500 +51726 116835 0.4840 +51726 118461 0.4200 +51726 120379 0.5510 +51726 134266 0.4540 +51726 150160 0.5980 +51726 199221 0.5330 +51726 201595 0.5090 +51726 259217 0.5510 +51726 283219 0.4460 +51726 339416 0.4200 +51726 375484 0.4510 +51726 388633 0.4200 +51727 54902 0.6510 +51727 54948 0.4390 +51727 54963 0.5970 +51727 55173 0.4890 +51727 55176 0.5620 +51727 55272 0.4980 +51727 55276 0.6320 +51727 55316 0.4300 +51727 55471 0.4120 +51727 55526 0.4840 +51727 55591 0.4510 +51727 56474 0.6570 +51727 56953 0.7840 +51727 63875 0.5220 +51727 63931 0.4300 +51727 64078 0.4460 +51727 64374 0.4370 +51727 64963 0.4780 +51727 64965 0.5300 +51727 64969 0.5510 +51727 64979 0.6140 +51727 65008 0.4870 +51727 79590 0.4150 +51727 79631 0.4560 +51727 80135 0.4230 +51727 83475 0.4450 +51727 83549 0.6740 +51727 85476 0.4610 +51727 91875 0.4070 +51727 124583 0.4050 +51727 126402 0.4250 +51727 129607 0.9420 +51727 136332 0.5510 +51727 139596 0.6100 +51727 140801 0.4340 +51727 285855 0.4010 +51727 339487 0.4180 +51727 374659 0.4480 +51727 654364 0.4430 +51727 100526842 0.4470 +51728 54700 0.4590 +51728 54797 0.4030 +51728 55011 0.7870 +51728 55211 0.4130 +51728 55272 0.4180 +51728 55290 0.8160 +51728 55621 0.4420 +51728 55651 0.6070 +51728 55677 0.4450 +51728 55692 0.4400 +51728 55703 0.9990 +51728 55718 0.9990 +51728 55814 0.8530 +51728 64285 0.4460 +51728 64425 0.7410 +51728 65993 0.4060 +51728 79577 0.4030 +51728 79657 0.6630 +51728 79693 0.5570 +51728 81627 0.4330 +51728 84172 0.8250 +51728 84232 0.6880 +51728 84246 0.4260 +51728 84265 0.9830 +51728 112495 0.5380 +51728 117246 0.4430 +51728 123169 0.4780 +51728 171568 0.9950 +51728 221830 0.8640 +51728 246721 0.5700 +51728 284613 0.4680 +51728 387332 0.4980 +51728 401505 0.4040 +51728 548644 0.5760 +51728 100134938 0.4710 +51728 107983993 0.4710 +51729 55051 0.4170 +51729 55127 0.4070 +51729 55234 0.8610 +51729 55322 0.7080 +51729 55421 0.4240 +51729 55660 0.6530 +51729 55696 0.8650 +51729 56259 0.9270 +51729 57819 0.8980 +51729 58517 0.5900 +51729 59286 0.9740 +51729 79171 0.5200 +51729 79753 0.8350 +51729 83443 0.8030 +51729 84844 0.8270 +51729 84950 0.9710 +51729 85378 0.4590 +51729 123169 0.4310 +51729 124245 0.5510 +51729 151987 0.5240 +51729 153527 0.9680 +51729 254251 0.4470 +51729 283869 0.4610 +51729 285600 0.5050 +51729 440087 0.4900 +51733 54963 0.4860 +51733 55270 0.4750 +51733 55748 0.9280 +51733 56896 0.5060 +51733 57571 0.9110 +51733 64577 0.5020 +51733 64802 0.4150 +51733 64850 0.4230 +51733 64902 0.9290 +51733 83549 0.5760 +51733 84735 0.9270 +51733 85007 0.4160 +51733 151531 0.6280 +51733 197322 0.8640 +51733 339896 0.9090 +51733 349565 0.4050 +51733 388886 0.4320 +51734 55052 0.5440 +51734 55829 0.8020 +51734 56929 0.4350 +51734 57190 0.7970 +51734 58515 0.8650 +51734 60678 0.5490 +51734 63875 0.4100 +51734 64780 0.5400 +51734 64960 0.4040 +51734 64965 0.4040 +51734 64979 0.4360 +51734 65003 0.4280 +51734 79048 0.6240 +51734 83642 0.8620 +51734 84545 0.4050 +51734 85465 0.7420 +51734 114112 0.7760 +51734 118672 0.5050 +51734 140606 0.7390 +51734 257202 0.7920 +51734 280636 0.7870 +51734 343070 0.5340 +51734 348303 0.7370 +51734 440561 0.6140 +51734 493869 0.7520 +51734 653619 0.5310 +51735 55023 0.4180 +51735 56288 0.4040 +51735 56990 0.6480 +51735 57532 0.4020 +51735 81609 0.4050 +51735 197131 0.4070 +51735 260425 0.9140 +51738 54331 0.8020 +51738 56477 0.5210 +51738 56670 0.6780 +51738 56729 0.8390 +51738 56923 0.6410 +51738 57105 0.5090 +51738 59272 0.7250 +51738 60559 0.4160 +51738 60675 0.5240 +51738 79068 0.5050 +51738 80834 0.4800 +51738 80835 0.4250 +51738 83756 0.5260 +51738 84432 0.4930 +51738 84504 0.5070 +51738 84539 0.5690 +51738 84634 0.7110 +51738 84666 0.7370 +51738 114131 0.4460 +51738 115330 0.4220 +51738 115557 0.4990 +51738 116842 0.5840 +51738 124274 0.4370 +51738 128674 0.5380 +51738 129521 0.5940 +51738 137902 0.5790 +51738 151306 0.4270 +51738 222546 0.4090 +51738 252995 0.4730 +51738 256933 0.4650 +51738 257313 0.4290 +51738 338442 0.7120 +51738 338557 0.4950 +51738 346562 0.4430 +51738 347148 0.4180 +51738 350383 0.5350 +51738 387129 0.5610 +51738 594857 0.5760 +51738 619373 0.9910 +51738 104909134 0.4090 +51741 53981 0.4060 +51741 54715 0.4140 +51741 54806 0.4510 +51741 54916 0.4150 +51741 54995 0.4470 +51741 55210 0.5230 +51741 55215 0.4950 +51741 55660 0.4680 +51741 55746 0.5010 +51741 55832 0.4690 +51741 56674 0.4100 +51741 57402 0.4350 +51741 57687 0.6010 +51741 57805 0.4030 +51741 64067 0.4190 +51741 79090 0.4830 +51741 79712 0.4190 +51741 79728 0.4200 +51741 79763 0.4210 +51741 81027 0.4010 +51741 81552 0.5680 +51741 83452 0.4030 +51741 83657 0.4240 +51741 83693 0.4630 +51741 83737 0.6800 +51741 83943 0.4510 +51741 84263 0.4710 +51741 92017 0.4050 +51741 112812 0.4630 +51741 124152 0.4360 +51741 131920 0.7600 +51741 135138 0.4180 +51741 140733 0.5130 +51741 154796 0.6060 +51741 162461 0.4200 +51741 203068 0.4330 +51741 256356 0.5010 +51741 286148 0.4070 +51741 401145 0.4460 +51741 401934 0.4500 +51742 51773 0.6720 +51742 53615 0.5960 +51742 54145 0.5650 +51742 54454 0.4220 +51742 54509 0.4040 +51742 54556 0.5660 +51742 54790 0.5290 +51742 54815 0.6220 +51742 54904 0.4420 +51742 55193 0.7320 +51742 55257 0.6380 +51742 55689 0.5620 +51742 55766 0.5740 +51742 55869 0.6860 +51742 55870 0.6750 +51742 55904 0.5880 +51742 55929 0.5380 +51742 56946 0.5090 +51742 56987 0.4400 +51742 57459 0.6200 +51742 57504 0.6220 +51742 57649 0.9810 +51742 57758 0.5610 +51742 57798 0.4910 +51742 58516 0.9450 +51742 60436 0.5670 +51742 64426 0.9970 +51742 64769 0.4830 +51742 64951 0.4280 +51742 65117 0.7500 +51742 79142 0.6700 +51742 79595 0.9690 +51742 79685 0.8690 +51742 79885 0.4900 +51742 79893 0.4360 +51742 80274 0.4860 +51742 80312 0.7650 +51742 80314 0.6190 +51742 80319 0.4550 +51742 80755 0.5310 +51742 83463 0.5140 +51742 83933 0.4690 +51742 84148 0.4500 +51742 84289 0.4010 +51742 84312 0.9510 +51742 84942 0.4730 +51742 85235 0.4890 +51742 85236 0.5660 +51742 90316 0.5940 +51742 92815 0.4930 +51742 94239 0.7510 +51742 114803 0.5980 +51742 123720 0.4050 +51742 126961 0.5340 +51742 128312 0.5650 +51742 138151 0.4030 +51742 150275 0.4060 +51742 169044 0.5450 +51742 170692 0.4060 +51742 200424 0.4930 +51742 221120 0.5340 +51742 221613 0.4890 +51742 221937 0.5060 +51742 222663 0.4860 +51742 253143 0.4170 +51742 255626 0.5650 +51742 257236 0.4690 +51742 317772 0.4890 +51742 333932 0.5340 +51742 340096 0.5340 +51742 389151 0.4750 +51742 391769 0.5340 +51742 440093 0.5860 +51742 440686 0.5860 +51742 440689 0.4780 +51742 474382 0.5740 +51742 619279 0.4900 +51742 653604 0.7840 +51742 728695 0.4680 +51742 100316904 0.5300 +51744 56253 0.4180 +51744 56833 0.6050 +51744 57674 0.4390 +51744 57823 0.7620 +51744 64115 0.4190 +51744 80380 0.4600 +51744 80381 0.4500 +51744 84270 0.5910 +51744 84303 0.4690 +51744 84868 0.7300 +51744 89790 0.4620 +51744 89886 0.5410 +51744 92747 0.4040 +51744 114836 0.9380 +51744 117157 0.9940 +51744 126259 0.5520 +51744 131450 0.4700 +51744 146722 0.4070 +51744 151888 0.6600 +51744 160364 0.5010 +51744 201633 0.6830 +51744 259197 0.6930 +51744 378884 0.4810 +51744 654346 0.4040 +51744 100049587 0.4500 +51747 54625 0.5240 +51747 55015 0.9210 +51747 55082 0.7280 +51747 55119 0.6740 +51747 55234 0.6190 +51747 55599 0.6040 +51747 55660 0.8970 +51747 55692 0.8030 +51747 55749 0.7470 +51747 55954 0.5910 +51747 56252 0.4890 +51747 56850 0.5140 +51747 57035 0.4010 +51747 57187 0.4610 +51747 57794 0.8120 +51747 57819 0.5600 +51747 58517 0.9890 +51747 65117 0.4430 +51747 79058 0.5840 +51747 79171 0.5230 +51747 79684 0.4900 +51747 79696 0.4930 +51747 79811 0.4020 +51747 83443 0.7370 +51747 83938 0.5270 +51747 84316 0.4570 +51747 84321 0.4140 +51747 84844 0.7550 +51747 84967 0.5420 +51747 84991 0.5800 +51747 85403 0.4050 +51747 126259 0.4560 +51747 140890 0.7210 +51747 147650 0.4610 +51747 151613 0.4180 +51747 196441 0.4110 +51747 220074 0.5270 +51747 256536 0.5510 +51747 392517 0.4890 +51747 100996928 0.4790 +51750 54386 0.7510 +51750 54433 0.6750 +51750 54921 0.5170 +51750 54962 0.4550 +51750 55107 0.8710 +51750 55135 0.9080 +51750 55215 0.4730 +51750 55247 0.4490 +51750 55291 0.4770 +51750 55505 0.8670 +51750 55651 0.8960 +51750 55703 0.4370 +51750 56731 0.4550 +51750 56852 0.4480 +51750 57019 0.6310 +51750 57130 0.4340 +51750 57697 0.7570 +51750 63922 0.6400 +51750 64210 0.9790 +51750 64428 0.6510 +51750 64858 0.5210 +51750 79075 0.4230 +51750 79650 0.4820 +51750 79728 0.6210 +51750 79915 0.4090 +51750 79991 0.6880 +51750 80010 0.7300 +51750 80119 0.8500 +51750 80169 0.8750 +51750 80198 0.7560 +51750 80233 0.4350 +51750 81037 0.4720 +51750 83932 0.4370 +51750 83990 0.6320 +51750 84246 0.4120 +51750 84464 0.9550 +51750 84619 0.6110 +51750 84893 0.7500 +51750 91544 0.4200 +51750 92345 0.4710 +51750 113510 0.5090 +51750 116028 0.6850 +51750 124817 0.4440 +51750 146956 0.4710 +51750 154197 0.4430 +51750 163223 0.4360 +51750 170506 0.4080 +51750 201973 0.4030 +51750 220134 0.4470 +51750 246243 0.4160 +51750 285231 0.4830 +51750 348654 0.5650 +51750 399909 0.4480 +51750 548593 0.6260 +51750 727897 0.5780 +51750 728340 0.6390 +51750 729238 0.6060 +51751 57125 0.5170 +51751 79002 0.4020 +51751 84701 0.7200 +51751 84886 0.5700 +51751 125965 0.4050 +51751 164312 0.4020 +51751 219995 0.5030 +51751 221303 0.5710 +51751 283459 0.5590 +51751 387700 0.4060 +51751 388753 0.4200 +51752 55031 0.5150 +51752 55080 0.6260 +51752 55905 0.5080 +51752 64135 0.4420 +51752 64167 0.6070 +51752 64170 0.4810 +51752 64478 0.4050 +51752 79092 0.4030 +51752 80267 0.4840 +51752 83953 0.4370 +51752 84166 0.5380 +51752 84648 0.5890 +51752 113246 0.4400 +51752 118429 0.7760 +51752 125893 0.4870 +51752 149233 0.8000 +51752 254827 0.4270 +51752 353143 0.5710 +51752 353144 0.5060 +51752 414062 0.4180 +51754 64753 0.6790 +51754 158376 0.4740 +51754 392307 0.4150 +51755 54542 0.4180 +51755 54623 0.6910 +51755 55110 0.4890 +51755 55120 0.5810 +51755 55209 0.5900 +51755 55215 0.7370 +51755 55250 0.5780 +51755 55677 0.4120 +51755 55833 0.7890 +51755 55840 0.5420 +51755 56254 0.4420 +51755 56647 0.7370 +51755 56946 0.5300 +51755 57018 0.6330 +51755 57466 0.6440 +51755 57680 0.4170 +51755 64210 0.5550 +51755 79577 0.8640 +51755 79664 0.6030 +51755 79728 0.6670 +51755 79871 0.4940 +51755 80237 0.5520 +51755 80349 0.6490 +51755 81669 0.8740 +51755 84337 0.5400 +51755 84524 0.5720 +51755 84656 0.5820 +51755 84717 0.4930 +51755 84961 0.5980 +51755 85403 0.5430 +51755 85458 0.4850 +51755 92002 0.6700 +51755 93210 0.4910 +51755 114788 0.5070 +51755 120114 0.4480 +51755 123169 0.7880 +51755 124245 0.4430 +51755 154150 0.4850 +51755 345456 0.4060 +51755 375189 0.4200 +51755 404672 0.5770 +51755 728340 0.5430 +51759 54797 0.6830 +51759 54883 0.5200 +51759 55094 0.5040 +51759 55100 0.5470 +51759 55216 0.5410 +51759 55571 0.4300 +51759 55702 0.5170 +51759 55726 0.4910 +51759 55750 0.4110 +51759 55837 0.4770 +51759 57703 0.4600 +51759 60625 0.7570 +51759 63932 0.4060 +51759 79576 0.4390 +51759 80854 0.4160 +51759 84081 0.5280 +51759 84164 0.4510 +51759 84950 0.7930 +51759 85313 0.5060 +51759 128061 0.4310 +51759 143884 0.5040 +51759 153241 0.6650 +51759 199746 0.5250 +51760 84871 0.4400 +51760 126868 0.4220 +51760 146395 0.4010 +51760 728276 0.8450 +51761 55113 0.4280 +51761 55754 0.9440 +51761 57194 0.6280 +51761 57198 0.5970 +51761 57205 0.6220 +51761 57402 0.4360 +51761 79895 0.5930 +51761 80344 0.4320 +51761 83695 0.4360 +51761 84530 0.4140 +51761 113278 0.5750 +51761 124997 0.6570 +51761 134829 0.4390 +51761 148229 0.6030 +51761 161291 0.8930 +51761 170692 0.4700 +51761 219736 0.4080 +51761 221830 0.4290 +51761 286410 0.6620 +51761 339416 0.4040 +51762 51806 0.5100 +51762 54536 0.5000 +51762 55296 0.4710 +51762 55763 0.4350 +51762 55770 0.4950 +51762 57460 0.5060 +51762 57553 0.5900 +51762 57589 0.4700 +51762 60412 0.5040 +51762 64601 0.5160 +51762 64780 0.4590 +51762 79735 0.6250 +51762 79778 0.9560 +51762 79958 0.5120 +51762 81846 0.4740 +51762 81876 0.9020 +51762 84079 0.4710 +51762 85377 0.5700 +51762 90410 0.4430 +51762 91860 0.4760 +51762 94122 0.4470 +51762 117177 0.8900 +51762 160622 0.4580 +51762 163688 0.4760 +51762 196383 0.6080 +51762 203068 0.7390 +51762 254102 0.5110 +51762 283229 0.4150 +51762 353116 0.4270 +51763 56850 0.4050 +51763 63916 0.4440 +51763 80271 0.9250 +51763 83605 0.4860 +51763 84812 0.6730 +51763 85007 0.4880 +51763 85446 0.4230 +51763 85477 0.4620 +51763 89869 0.6730 +51763 113026 0.6750 +51763 124935 0.4260 +51763 253430 0.9210 +51763 727857 0.4060 +51764 53632 0.6520 +51764 54331 0.8490 +51764 54429 0.4990 +51764 55300 0.4220 +51764 55327 0.4840 +51764 55811 0.7400 +51764 55970 0.8870 +51764 56656 0.6790 +51764 56923 0.6250 +51764 57105 0.5580 +51764 57121 0.5270 +51764 57580 0.9000 +51764 59345 0.9990 +51764 63940 0.4080 +51764 64130 0.5480 +51764 64407 0.5790 +51764 64805 0.5030 +51764 79290 0.6780 +51764 79295 0.6780 +51764 79310 0.6780 +51764 79317 0.6500 +51764 79324 0.6780 +51764 79339 0.6780 +51764 79345 0.6780 +51764 79346 0.6780 +51764 79473 0.6780 +51764 79490 0.6780 +51764 79541 0.7330 +51764 79544 0.6530 +51764 79549 0.6780 +51764 80184 0.4260 +51764 80834 0.9230 +51764 80835 0.9230 +51764 81050 0.6780 +51764 81099 0.6780 +51764 81127 0.6810 +51764 81168 0.6500 +51764 81282 0.6780 +51764 81285 0.7180 +51764 81300 0.6780 +51764 81309 0.6500 +51764 81318 0.6780 +51764 81327 0.6780 +51764 81341 0.6700 +51764 81392 0.6800 +51764 81399 0.6780 +51764 81442 0.6780 +51764 81448 0.6780 +51764 81466 0.6780 +51764 81469 0.6780 +51764 81470 0.6780 +51764 81696 0.6850 +51764 81697 0.6870 +51764 81797 0.6850 +51764 83756 0.9260 +51764 83857 0.4890 +51764 84539 0.6100 +51764 85397 0.6070 +51764 94235 0.7560 +51764 115557 0.5350 +51764 117579 0.5000 +51764 119678 0.6780 +51764 119679 0.6780 +51764 119682 0.7080 +51764 119687 0.6780 +51764 119692 0.6780 +51764 119694 0.6780 +51764 119695 0.6780 +51764 119749 0.6780 +51764 119764 0.6780 +51764 119765 0.6780 +51764 119772 0.6780 +51764 119774 0.6780 +51764 120065 0.7040 +51764 120066 0.7570 +51764 120586 0.6780 +51764 120775 0.6780 +51764 120776 0.6780 +51764 120787 0.6780 +51764 120793 0.7530 +51764 121129 0.7700 +51764 121130 0.6790 +51764 121275 0.6580 +51764 121364 0.6790 +51764 122740 0.6500 +51764 122742 0.6500 +51764 122748 0.6780 +51764 124538 0.6840 +51764 125958 0.7360 +51764 125962 0.6780 +51764 125963 0.6780 +51764 126006 0.5310 +51764 126370 0.6780 +51764 126541 0.7180 +51764 127059 0.6780 +51764 127062 0.6780 +51764 127064 0.6500 +51764 127066 0.6780 +51764 127068 0.6780 +51764 127069 0.6780 +51764 127077 0.6780 +51764 127385 0.6780 +51764 127608 0.6780 +51764 127623 0.6780 +51764 128360 0.6780 +51764 128366 0.6780 +51764 128367 0.6780 +51764 128368 0.6780 +51764 128372 0.6780 +51764 129521 0.4990 +51764 130075 0.6780 +51764 132112 0.5560 +51764 134083 0.6780 +51764 135924 0.6780 +51764 135941 0.6780 +51764 135946 0.6790 +51764 135948 0.6790 +51764 138799 0.6780 +51764 138802 0.6780 +51764 138804 0.6780 +51764 138805 0.6780 +51764 138881 0.6800 +51764 138883 0.6780 +51764 143496 0.6780 +51764 143503 0.6790 +51764 144124 0.6840 +51764 144125 0.6780 +51764 146850 0.6880 +51764 150681 0.6500 +51764 158131 0.6820 +51764 162998 0.6780 +51764 196335 0.6500 +51764 196883 0.7120 +51764 219417 0.6780 +51764 219428 0.6500 +51764 219429 0.6500 +51764 219431 0.6780 +51764 219436 0.6820 +51764 219437 0.7470 +51764 219438 0.6910 +51764 219447 0.6780 +51764 219453 0.6780 +51764 219469 0.6780 +51764 219473 0.6780 +51764 219477 0.6500 +51764 219479 0.6780 +51764 219482 0.6500 +51764 219484 0.6500 +51764 219487 0.6810 +51764 219493 0.6780 +51764 219858 0.6780 +51764 219869 0.6780 +51764 219870 0.6780 +51764 219874 0.6780 +51764 219875 0.6780 +51764 219952 0.6780 +51764 219954 0.6780 +51764 219956 0.6780 +51764 219957 0.6780 +51764 219960 0.6510 +51764 219965 0.6780 +51764 219968 0.6780 +51764 219981 0.7450 +51764 219982 0.7480 +51764 219983 0.6780 +51764 219986 0.6780 +51764 221391 0.5600 +51764 254786 0.6780 +51764 254879 0.6780 +51764 254973 0.6800 +51764 255725 0.6780 +51764 256148 0.6780 +51764 259285 0.5070 +51764 259286 0.5030 +51764 259287 0.4990 +51764 259289 0.6220 +51764 259290 0.5770 +51764 259292 0.6640 +51764 259293 0.5940 +51764 259295 0.5990 +51764 259296 0.5940 +51764 282763 0.6810 +51764 282770 0.6790 +51764 282775 0.6780 +51764 283092 0.6780 +51764 283093 0.6810 +51764 283159 0.6810 +51764 283160 0.6850 +51764 283162 0.6780 +51764 283297 0.6790 +51764 283365 0.6780 +51764 283694 0.6780 +51764 284383 0.6800 +51764 284433 0.6780 +51764 284521 0.6980 +51764 284532 0.6780 +51764 285659 0.6780 +51764 286362 0.6780 +51764 338662 0.6780 +51764 338674 0.6780 +51764 338675 0.6780 +51764 338751 0.6780 +51764 338755 0.6780 +51764 340980 0.6780 +51764 341152 0.6780 +51764 341276 0.6790 +51764 341416 0.6790 +51764 341418 0.6780 +51764 341799 0.6780 +51764 343169 0.7010 +51764 343170 0.6780 +51764 343171 0.6790 +51764 343172 0.6500 +51764 343173 0.6780 +51764 343563 0.6780 +51764 344892 0.5100 +51764 346517 0.6780 +51764 346525 0.6780 +51764 346562 0.9820 +51764 347168 0.6800 +51764 347169 0.6780 +51764 347468 0.6780 +51764 348938 0.4140 +51764 387129 0.5440 +51764 387748 0.6500 +51764 388761 0.6780 +51764 390036 0.7020 +51764 390037 0.6780 +51764 390038 0.6780 +51764 390054 0.7620 +51764 390058 0.6800 +51764 390059 0.6790 +51764 390061 0.6810 +51764 390063 0.6790 +51764 390064 0.6790 +51764 390066 0.6830 +51764 390067 0.6780 +51764 390072 0.6780 +51764 390075 0.6780 +51764 390077 0.6780 +51764 390078 0.6780 +51764 390079 0.6780 +51764 390081 0.7600 +51764 390082 0.6780 +51764 390083 0.6500 +51764 390084 0.6500 +51764 390093 0.7980 +51764 390113 0.6780 +51764 390142 0.6820 +51764 390144 0.6780 +51764 390148 0.6780 +51764 390151 0.6780 +51764 390152 0.6780 +51764 390155 0.6780 +51764 390157 0.6780 +51764 390162 0.6500 +51764 390168 0.7660 +51764 390174 0.6780 +51764 390181 0.6780 +51764 390190 0.6780 +51764 390191 0.6780 +51764 390195 0.7640 +51764 390197 0.6780 +51764 390199 0.6780 +51764 390201 0.6780 +51764 390260 0.6780 +51764 390261 0.6780 +51764 390264 0.6780 +51764 390265 0.6780 +51764 390271 0.6780 +51764 390275 0.6780 +51764 390321 0.7670 +51764 390323 0.7140 +51764 390326 0.6780 +51764 390327 0.6780 +51764 390429 0.6780 +51764 390431 0.6500 +51764 390433 0.6500 +51764 390437 0.6780 +51764 390445 0.7810 +51764 390538 0.6780 +51764 390648 0.6780 +51764 390649 0.6780 +51764 390883 0.6780 +51764 390892 0.6790 +51764 391107 0.6810 +51764 391109 0.6800 +51764 391112 0.6780 +51764 391114 0.6500 +51764 391189 0.6780 +51764 391190 0.6780 +51764 391192 0.6780 +51764 391194 0.6780 +51764 391195 0.6500 +51764 391196 0.6780 +51764 391211 0.6780 +51764 392138 0.6780 +51764 392309 0.6660 +51764 392376 0.6780 +51764 392390 0.6800 +51764 392391 0.6780 +51764 392392 0.6800 +51764 393046 0.7890 +51764 401427 0.6780 +51764 401665 0.6780 +51764 401666 0.6780 +51764 401667 0.6780 +51764 401992 0.6780 +51764 401993 0.6780 +51764 401994 0.7080 +51764 402135 0.6780 +51764 402317 0.6950 +51764 403239 0.6780 +51764 403244 0.6780 +51764 403253 0.6780 +51764 403273 0.6780 +51764 403274 0.6780 +51764 403277 0.6780 +51764 403278 0.6780 +51764 403282 0.6780 +51764 403284 0.6790 +51764 431704 0.5240 +51764 440153 0.6780 +51764 441308 0.6780 +51764 441608 0.6780 +51764 441670 0.6990 +51764 441933 0.6780 +51764 442184 0.6780 +51764 442185 0.6500 +51764 442186 0.6640 +51764 442191 0.6780 +51764 442194 0.6850 +51764 442361 0.6780 +51764 594857 0.4990 +51764 644943 0.5200 +51764 102723532 0.6780 +51764 105369274 0.6780 +51764 105372280 0.5400 +51765 55233 0.4920 +51765 55286 0.8270 +51765 55917 0.9960 +51765 57464 0.9640 +51765 57551 0.6540 +51765 60485 0.4020 +51765 79567 0.7090 +51765 80143 0.9300 +51765 80342 0.9950 +51765 81617 0.6130 +51765 83605 0.6950 +51765 83992 0.9960 +51765 85369 0.9990 +51765 90678 0.8270 +51765 123355 0.4110 +51765 285527 0.4190 +51765 100529241 0.9360 +51768 55266 0.4100 +51768 55726 0.5860 +51768 56834 0.4550 +51768 56925 0.4130 +51768 57542 0.4570 +51768 80856 0.4520 +51768 81533 0.4050 +51768 151647 0.4200 +51773 54069 0.6870 +51773 54107 0.8460 +51773 54108 0.8870 +51773 55023 0.6820 +51773 55183 0.4460 +51773 55215 0.4560 +51773 55320 0.6800 +51773 55355 0.7060 +51773 55870 0.4870 +51773 56946 0.5350 +51773 57187 0.5240 +51773 79811 0.4620 +51773 92105 0.4800 +51773 124944 0.7210 +51773 201254 0.5780 +51773 259282 0.4160 +51773 378708 0.6000 +51773 653604 0.4860 +51773 100529209 0.5400 +51776 80108 0.6380 +51776 162239 0.6100 +51776 163081 0.8340 +51778 51806 0.4830 +51778 54866 0.4060 +51778 56203 0.4670 +51778 57158 0.6630 +51778 57159 0.5120 +51778 58529 0.4260 +51778 79933 0.4380 +51778 84665 0.7380 +51778 84676 0.5160 +51778 85366 0.5970 +51778 91624 0.5810 +51778 91860 0.4830 +51778 115353 0.4150 +51778 125972 0.5960 +51778 127294 0.5750 +51778 129446 0.7750 +51778 131377 0.4150 +51778 137735 0.6090 +51778 140458 0.4570 +51778 146862 0.6110 +51778 150572 0.5240 +51778 163688 0.4900 +51778 165904 0.5840 +51778 167838 0.4510 +51778 171024 0.5430 +51778 202333 0.7340 +51778 282996 0.5350 +51778 347273 0.5210 +51778 442721 0.8970 +51778 548596 0.4070 +51780 54439 0.4290 +51780 55693 0.5790 +51780 55818 0.9220 +51780 55870 0.4030 +51780 55904 0.4550 +51780 57466 0.4260 +51780 57492 0.7180 +51780 57634 0.4380 +51780 57680 0.5800 +51780 57794 0.4200 +51780 64324 0.4980 +51780 64754 0.5780 +51780 79663 0.4560 +51780 79697 0.4360 +51780 79813 0.4540 +51780 79831 0.5510 +51780 80853 0.7580 +51780 84159 0.5550 +51780 84181 0.4420 +51780 84678 0.6670 +51780 91746 0.9580 +51780 131965 0.4120 +51780 158399 0.4020 +51780 221656 0.4890 +51780 390245 0.5190 +51780 440093 0.4100 +51780 440686 0.4100 +51780 442247 0.4220 +51780 653604 0.6400 +51802 55515 0.9210 +51802 161003 0.6230 +51804 57381 0.6900 +51804 64641 0.4260 +51804 90506 0.4270 +51805 54187 0.4910 +51805 54205 0.5120 +51805 54539 0.4090 +51805 54823 0.4520 +51805 54884 0.4460 +51805 55347 0.4230 +51805 55631 0.4550 +51805 57017 0.9960 +51805 57107 0.8350 +51805 57143 0.8340 +51805 58472 0.4370 +51805 60491 0.4200 +51805 63933 0.5240 +51805 79726 0.4290 +51805 79728 0.4460 +51805 79934 0.9600 +51805 80219 0.7220 +51805 80308 0.4600 +51805 84263 0.4500 +51805 84274 0.9950 +51805 84524 0.4080 +51805 84553 0.6050 +51805 84795 0.4430 +51805 84816 0.4020 +51805 84869 0.4920 +51805 85015 0.5050 +51805 85450 0.7940 +51805 90956 0.8400 +51805 91734 0.4020 +51805 93058 0.7640 +51805 112812 0.6620 +51805 113444 0.4270 +51805 132949 0.4160 +51805 162073 0.7940 +51805 203054 0.8180 +51805 284131 0.4140 +51805 284697 0.4730 +51805 613227 0.5910 +51806 53343 0.4410 +51806 53373 0.4500 +51806 53904 0.5390 +51806 53905 0.5590 +51806 54205 0.6490 +51806 54704 0.5150 +51806 54795 0.6850 +51806 54822 0.4560 +51806 55107 0.6780 +51806 55503 0.6790 +51806 55636 0.6540 +51806 55811 0.4490 +51806 55827 0.4930 +51806 55859 0.7480 +51806 55930 0.5490 +51806 56302 0.7620 +51806 56479 0.7010 +51806 56704 0.5750 +51806 56964 0.4970 +51806 57101 0.5370 +51806 57118 0.9370 +51806 57158 0.6090 +51806 57172 0.8370 +51806 57192 0.6530 +51806 57338 0.5320 +51806 57524 0.4480 +51806 57534 0.4080 +51806 57576 0.4590 +51806 57620 0.7310 +51806 57731 0.5220 +51806 58529 0.7230 +51806 59272 0.5700 +51806 59341 0.8970 +51806 60558 0.5980 +51806 64220 0.7940 +51806 64359 0.4460 +51806 64374 0.4750 +51806 64781 0.6250 +51806 65108 0.9620 +51806 65220 0.4020 +51806 65975 0.4790 +51806 79012 0.4200 +51806 79054 0.4280 +51806 79400 0.8210 +51806 79598 0.4630 +51806 79660 0.6500 +51806 79781 0.4970 +51806 79929 0.6160 +51806 80228 0.4470 +51806 80271 0.4150 +51806 80333 0.5850 +51806 81565 0.4480 +51806 81669 0.5920 +51806 83442 0.4200 +51806 84033 0.6790 +51806 84152 0.4230 +51806 84168 0.4860 +51806 84254 0.9870 +51806 84288 0.4070 +51806 84502 0.5540 +51806 84676 0.6250 +51806 84687 0.5650 +51806 84707 0.7360 +51806 84876 0.8810 +51806 85366 0.9970 +51806 89801 0.6500 +51806 90550 0.4870 +51806 90673 0.6500 +51806 91179 0.4350 +51806 91404 0.4540 +51806 91624 0.4310 +51806 91807 0.9880 +51806 91860 0.9640 +51806 91977 0.5370 +51806 92291 0.5610 +51806 93129 0.4640 +51806 93974 0.4870 +51806 94032 0.6480 +51806 94274 0.5470 +51806 118429 0.5110 +51806 120892 0.4580 +51806 124152 0.4400 +51806 128153 0.5730 +51806 128239 0.7060 +51806 131890 0.6890 +51806 133482 0.5180 +51806 134359 0.5120 +51806 136991 0.4200 +51806 137902 0.5600 +51806 139728 0.5590 +51806 144406 0.4060 +51806 144535 0.5230 +51806 160622 0.5060 +51806 161497 0.5000 +51806 162514 0.7080 +51806 163688 0.9630 +51806 166614 0.4570 +51806 196883 0.7720 +51806 200373 0.7980 +51806 219537 0.4490 +51806 219670 0.7980 +51806 257202 0.4060 +51806 259232 0.4120 +51806 259266 0.5950 +51806 340156 0.7250 +51806 345456 0.6270 +51806 374897 0.5540 +51806 375189 0.6730 +51806 388533 0.4440 +51806 440093 0.4480 +51806 440387 0.4780 +51806 440686 0.4480 +51806 440854 0.5530 +51806 493869 0.4220 +51806 642489 0.5580 +51806 653145 0.6410 +51806 653499 0.5620 +51806 653604 0.4480 +51806 654231 0.5980 +51806 100271849 0.4790 +51807 54101 0.4220 +51807 56257 0.4100 +51807 56953 0.4460 +51807 57693 0.5140 +51807 64221 0.7640 +51807 79643 0.5000 +51807 79645 0.4250 +51807 79659 0.7420 +51807 79861 0.4300 +51807 80086 0.4380 +51807 81027 0.9630 +51807 83547 0.6570 +51807 84524 0.7100 +51807 84617 0.9640 +51807 84790 0.4280 +51807 91782 0.5000 +51807 92421 0.4990 +51807 112714 0.4270 +51807 113457 0.4270 +51807 114791 0.4760 +51807 128866 0.4990 +51807 136332 0.5070 +51807 150465 0.4440 +51807 151651 0.4490 +51807 153562 0.9000 +51807 197335 0.6530 +51807 200014 0.4990 +51807 203068 0.9780 +51807 221496 0.5470 +51807 260334 0.7560 +51807 337867 0.6440 +51807 338382 0.6610 +51807 339416 0.4280 +51807 345651 0.4570 +51807 347688 0.9630 +51807 347733 0.9630 +51808 53371 0.4570 +51808 54433 0.6450 +51808 54439 0.4020 +51808 54557 0.4360 +51808 54960 0.7510 +51808 55135 0.5620 +51808 55153 0.4880 +51808 55421 0.6810 +51808 55596 0.6740 +51808 55706 0.4100 +51808 55746 0.4110 +51808 55759 0.4510 +51808 57122 0.4130 +51808 57510 0.4970 +51808 57680 0.4520 +51808 57721 0.4050 +51808 64710 0.7880 +51808 65244 0.5220 +51808 65983 0.5600 +51808 79023 0.4590 +51808 79657 0.4130 +51808 79760 0.8180 +51808 79833 0.8320 +51808 79902 0.4110 +51808 80018 0.4680 +51808 80167 0.4210 +51808 81929 0.4080 +51808 84081 0.4540 +51808 84324 0.4100 +51808 96764 0.5880 +51808 114034 0.5520 +51808 123169 0.4230 +51808 124245 0.4870 +51808 129401 0.4460 +51808 196441 0.4010 +51808 253017 0.4200 +51808 253943 0.4250 +51808 348995 0.4210 +51808 389320 0.6170 +51808 392517 0.4870 +51808 100101267 0.4350 +51809 55808 0.9200 +51809 56913 0.7710 +51809 79695 0.6160 +51809 83440 0.4590 +51809 192134 0.9130 +51809 200958 0.4030 +51809 727897 0.4100 +51809 728819 0.7080 +51816 54826 0.4430 +51816 56952 0.4780 +51816 56953 0.9340 +51816 64080 0.4180 +51816 84153 0.4020 +51816 84618 0.9000 +51816 90362 0.4530 +51816 93034 0.9000 +51816 115024 0.9110 +51816 150165 0.4150 +51816 154141 0.4700 +51816 100526794 0.9000 +53335 53615 0.4660 +53335 54469 0.4020 +53335 54567 0.4300 +53335 55193 0.8520 +53335 55274 0.7430 +53335 55553 0.9420 +53335 55811 0.4240 +53335 57167 0.4530 +53335 57448 0.5410 +53335 57473 0.4670 +53335 57492 0.9670 +53335 64919 0.9890 +53335 65980 0.9520 +53335 79923 0.5050 +53335 80304 0.5010 +53335 85509 0.8330 +53335 125997 0.5450 +53335 161882 0.7650 +53335 196528 0.9160 +53335 200942 0.6480 +53335 221895 0.4250 +53335 255877 0.4850 +53335 282763 0.4180 +53335 728378 0.5130 +53336 53940 0.4390 +53336 56062 0.7200 +53336 57119 0.4790 +53336 63904 0.4680 +53336 79983 0.4180 +53336 90316 0.5710 +53336 117154 0.5160 +53336 118670 0.6260 +53336 139322 0.4180 +53336 166863 0.5810 +53336 171482 0.5020 +53336 221191 0.5310 +53336 256309 0.4830 +53336 284433 0.5070 +53336 339779 0.4560 +53336 340562 0.5830 +53336 340578 0.4550 +53336 378925 0.4490 +53336 389860 0.4840 +53336 440956 0.4900 +53336 442444 0.4660 +53336 728137 0.4470 +53339 54165 0.5400 +53339 54939 0.4990 +53339 54951 0.5500 +53339 55175 0.4110 +53339 55208 0.5480 +53339 55643 0.7430 +53339 55832 0.5430 +53339 55958 0.4970 +53339 57542 0.5350 +53339 64708 0.4900 +53339 80176 0.4020 +53339 84078 0.4080 +53339 84259 0.5270 +53339 84541 0.4520 +53339 84727 0.4020 +53339 84861 0.4630 +53339 85363 0.9030 +53339 89890 0.4100 +53339 90135 0.4410 +53339 90293 0.4780 +53339 92369 0.4020 +53339 93611 0.4220 +53339 115290 0.4280 +53339 117854 0.4910 +53339 122769 0.7610 +53339 123207 0.4860 +53339 126433 0.4340 +53339 149951 0.4990 +53339 150684 0.4990 +53339 170622 0.4990 +53339 200845 0.4450 +53339 255967 0.4060 +53339 390212 0.4110 +53339 390594 0.4290 +53339 445372 0.4930 +53340 54763 0.9750 +53340 55511 0.8150 +53340 56154 0.4600 +53340 64648 0.4600 +53340 64663 0.4600 +53340 79925 0.5050 +53340 80705 0.4870 +53340 83853 0.9750 +53340 84075 0.4690 +53340 84455 0.8420 +53340 84519 0.6460 +53340 90737 0.7200 +53340 93611 0.4280 +53340 114822 0.6820 +53340 140465 0.8010 +53340 158521 0.4160 +53340 158798 0.8690 +53340 219938 0.4170 +53340 246176 0.7670 +53340 728695 0.4100 +53340 729428 0.4780 +53340 729447 0.4780 +53340 729967 0.4260 +53342 53832 0.7230 +53342 53833 0.7250 +53342 54756 0.7860 +53342 55540 0.9440 +53342 58985 0.7390 +53342 64806 0.9760 +53342 84818 0.8180 +53342 116379 0.7270 +53342 132014 0.8170 +53342 149233 0.7700 +53342 163702 0.6700 +53343 54084 0.4240 +53343 54795 0.9220 +53343 54822 0.6240 +53343 54936 0.5130 +53343 55190 0.4040 +53343 55270 0.4600 +53343 55276 0.9010 +53343 56985 0.9000 +53343 79054 0.9160 +53343 79873 0.6700 +53343 80036 0.8400 +53343 83475 0.4020 +53343 83594 0.7160 +53343 84304 0.5820 +53343 91860 0.4410 +53343 131870 0.5770 +53343 140803 0.5470 +53343 142940 0.4400 +53343 163688 0.4410 +53343 200035 0.4750 +53343 221443 0.4530 +53343 221823 0.9250 +53343 256281 0.7350 +53344 63947 0.5400 +53344 66005 0.4260 +53344 84889 0.4500 +53344 286451 0.4160 +53344 340533 0.4560 +53344 389874 0.5180 +53344 728656 0.4070 +53345 54815 0.4180 +53345 57104 0.5440 +53345 57794 0.6000 +53345 64757 0.5820 +53345 79143 0.9090 +53345 79660 0.6950 +53345 80339 0.9160 +53345 84649 0.4010 +53345 127018 0.7220 +53345 133874 0.4720 +53345 137964 0.4280 +53345 147798 0.7280 +53345 148113 0.5830 +53345 255738 0.4040 +53345 345275 0.8810 +53345 404037 0.9720 +53346 84650 0.4380 +53346 130827 0.4990 +53346 340348 0.4470 +53346 404037 0.9480 +53347 54020 0.4470 +53347 55423 0.6090 +53347 58478 0.4950 +53347 60468 0.5580 +53347 64135 0.4270 +53347 64699 0.5450 +53347 65220 0.4830 +53347 84174 0.4080 +53347 88455 0.4760 +53347 89766 0.5250 +53347 114836 0.4280 +53347 114904 0.5710 +53347 117289 0.4470 +53347 441531 0.6880 +53349 54828 0.4180 +53349 55014 0.6430 +53349 55054 0.6950 +53349 55062 0.8550 +53349 55102 0.5110 +53349 55201 0.4550 +53349 55293 0.6320 +53349 55486 0.4030 +53349 55626 0.7290 +53349 55633 0.4690 +53349 55737 0.4260 +53349 56270 0.4960 +53349 57617 0.4160 +53349 60673 0.6990 +53349 63894 0.4700 +53349 64422 0.5860 +53349 65018 0.5230 +53349 79065 0.5330 +53349 79443 0.4300 +53349 80262 0.4840 +53349 81631 0.5350 +53349 81671 0.6100 +53349 83460 0.5010 +53349 83734 0.5730 +53349 84557 0.4750 +53349 84749 0.4380 +53349 84938 0.4350 +53349 115201 0.4270 +53349 123720 0.5300 +53349 133746 0.4380 +53349 139341 0.4470 +53349 202018 0.5940 +53349 440738 0.5390 +53349 644139 0.5410 +53353 54958 0.4180 +53353 55294 0.4210 +53353 57507 0.4200 +53353 58508 0.5880 +53353 64478 0.5930 +53353 79776 0.6160 +53353 79930 0.4240 +53353 83999 0.4540 +53353 84033 0.4750 +53353 84059 0.4310 +53353 84918 0.4240 +53353 93035 0.4470 +53353 94025 0.7740 +53353 114788 0.7790 +53353 129446 0.5840 +53353 140733 0.4520 +53353 158038 0.4770 +53353 253559 0.4920 +53353 375790 0.5440 +53353 653404 0.4010 +53353 729238 0.4300 +53353 100526835 0.4290 +53354 56342 0.4800 +53354 60490 0.9810 +53354 79646 0.9070 +53354 79717 0.9810 +53354 80025 0.9070 +53354 80067 0.4020 +53354 80347 0.9790 +53354 283927 0.4760 +53354 387700 0.5810 +53358 55108 0.4620 +53358 55800 0.4010 +53358 64096 0.4520 +53358 399694 0.5260 +53371 53981 0.4400 +53371 54149 0.5330 +53371 54596 0.5990 +53371 54830 0.9790 +53371 54960 0.4050 +53371 55110 0.6230 +53371 55143 0.4160 +53371 55153 0.4880 +53371 55301 0.5980 +53371 55339 0.4370 +53371 55706 0.9590 +53371 55746 0.9960 +53371 55763 0.4560 +53371 55795 0.4360 +53371 55916 0.5870 +53371 56001 0.4490 +53371 57122 0.9980 +53371 57187 0.4790 +53371 57488 0.4080 +53371 57563 0.5120 +53371 57609 0.5330 +53371 57727 0.7390 +53371 65109 0.5100 +53371 79023 0.9680 +53371 79228 0.4210 +53371 79711 0.6770 +53371 79760 0.4150 +53371 79833 0.4730 +53371 79902 0.9960 +53371 80145 0.4330 +53371 80221 0.5430 +53371 81608 0.4530 +53371 81929 0.9880 +53371 84220 0.5640 +53371 84248 0.4160 +53371 84271 0.5470 +53371 84321 0.5910 +53371 84324 0.4580 +53371 91181 0.4220 +53371 91408 0.4640 +53371 91754 0.4320 +53371 115825 0.4310 +53371 116835 0.4350 +53371 129401 0.9930 +53371 137362 0.4230 +53371 140609 0.4050 +53371 140735 0.4870 +53371 157869 0.5980 +53371 157922 0.4510 +53371 197322 0.6000 +53371 199746 0.4440 +53371 259217 0.4350 +53371 283987 0.5260 +53371 339965 0.5050 +53371 348995 0.9860 +53371 376497 0.6030 +53371 653489 0.5760 +53371 728343 0.7120 +53371 729540 0.5640 +53371 729857 0.7340 +53371 100101267 0.8700 +53373 55283 0.5450 +53373 57192 0.6580 +53373 57539 0.4200 +53373 57578 0.4190 +53373 80024 0.5270 +53373 80790 0.4600 +53373 90861 0.5170 +53373 115811 0.4970 +53373 117144 0.4270 +53373 123041 0.4490 +53373 155368 0.4090 +53373 167359 0.4530 +53373 219931 0.9780 +53373 255231 0.5400 +53405 53904 0.6230 +53405 54102 0.6270 +53405 64072 0.4680 +53405 64787 0.5840 +53405 65217 0.4540 +53405 83715 0.5940 +53405 84059 0.4600 +53405 84525 0.4490 +53405 117531 0.5210 +53405 129446 0.8390 +53405 140469 0.5680 +53405 221395 0.4280 +53405 286262 0.9970 +53405 339768 0.5110 +53405 340990 0.4060 +53405 344752 0.4500 +53405 375611 0.4350 +53405 389207 0.8240 +53405 494513 0.5830 +53405 643226 0.9310 +53407 54732 0.5090 +53407 54788 0.4410 +53407 55014 0.8640 +53407 55083 0.5000 +53407 55275 0.5060 +53407 55351 0.6060 +53407 55363 0.4400 +53407 55582 0.4990 +53407 55605 0.5070 +53407 55614 0.5090 +53407 55800 0.4280 +53407 55823 0.4470 +53407 55850 0.9990 +53407 56992 0.5090 +53407 57511 0.5150 +53407 58477 0.4530 +53407 59349 0.4340 +53407 60561 0.9940 +53407 63908 0.7080 +53407 64320 0.4510 +53407 64837 0.5040 +53407 81609 0.5230 +53407 81876 0.6230 +53407 81930 0.4990 +53407 83548 0.5400 +53407 83694 0.4030 +53407 84247 0.4080 +53407 84643 0.4990 +53407 84830 0.5030 +53407 89953 0.5030 +53407 90019 0.4150 +53407 90990 0.4990 +53407 112755 0.6820 +53407 115827 0.4390 +53407 116841 0.9410 +53407 124602 0.4990 +53407 126208 0.7920 +53407 132884 0.7010 +53407 134957 0.5460 +53407 139324 0.4030 +53407 143187 0.8940 +53407 146909 0.4990 +53407 147700 0.4990 +53407 148223 0.5300 +53407 149428 0.4520 +53407 152579 0.9000 +53407 160364 0.7700 +53407 166793 0.4260 +53407 203062 0.6680 +53407 221458 0.5000 +53407 285643 0.4990 +53407 339302 0.5400 +53407 347853 0.4690 +53407 375056 0.5600 +53407 392255 0.4240 +53407 415117 0.7350 +53407 440712 0.5250 +53407 594855 0.5400 +53407 104909134 0.4220 +53615 54145 0.5040 +53615 54790 0.4690 +53615 54815 0.9870 +53615 55684 0.7690 +53615 55766 0.5000 +53615 57167 0.8220 +53615 57332 0.5610 +53615 57459 0.9780 +53615 57473 0.6430 +53615 57504 0.9890 +53615 57592 0.4630 +53615 64426 0.6160 +53615 64769 0.4250 +53615 64919 0.6030 +53615 79685 0.5360 +53615 79923 0.4960 +53615 80012 0.4990 +53615 80312 0.5550 +53615 84232 0.5280 +53615 84289 0.4640 +53615 84733 0.5160 +53615 85236 0.5040 +53615 94239 0.5400 +53615 115426 0.4680 +53615 124245 0.4100 +53615 125997 0.6160 +53615 128312 0.5040 +53615 140685 0.6440 +53615 203259 0.5230 +53615 255626 0.5040 +53615 317772 0.4090 +53615 440689 0.4130 +53615 474382 0.5000 +53615 653604 0.6220 +53616 55203 0.9080 +53616 55972 0.4040 +53616 57587 0.4150 +53616 59283 0.5090 +53616 63898 0.4120 +53616 64779 0.4160 +53616 83592 0.4090 +53616 84059 0.4170 +53616 112755 0.4750 +53616 131368 0.4040 +53616 137970 0.4050 +53616 154661 0.5140 +53616 163175 0.9430 +53616 170482 0.5740 +53616 203190 0.9230 +53616 219557 0.5140 +53616 221303 0.4170 +53616 402665 0.4150 +53616 405754 0.4490 +53616 442117 0.4100 +53630 54884 0.5500 +53630 54898 0.4100 +53630 54979 0.4400 +53630 56603 0.4370 +53630 57110 0.4390 +53630 57665 0.4180 +53630 64220 0.5990 +53630 91464 0.9850 +53630 112724 0.4100 +53630 121214 0.4850 +53630 145226 0.9500 +53630 157506 0.9520 +53630 195814 0.9230 +53630 283521 0.4150 +53632 54331 0.6500 +53632 55004 0.5140 +53632 55437 0.7220 +53632 55626 0.5100 +53632 55970 0.6500 +53632 57521 0.9320 +53632 57761 0.4250 +53632 58528 0.5670 +53632 59345 0.6680 +53632 60673 0.5060 +53632 64121 0.5880 +53632 64223 0.5480 +53632 81617 0.7220 +53632 81629 0.4370 +53632 81932 0.4320 +53632 83667 0.6850 +53632 83942 0.4250 +53632 83983 0.4280 +53632 84254 0.4840 +53632 84335 0.7020 +53632 85366 0.5180 +53632 92335 0.7350 +53632 94235 0.6500 +53632 140735 0.5130 +53632 140838 0.4160 +53632 143686 0.6760 +53632 153129 0.5020 +53632 200186 0.9190 +53632 283629 0.4420 +53632 389541 0.4990 +53632 100130890 0.4380 +53632 100131187 0.4380 +53635 55893 0.4810 +53635 57697 0.5320 +53635 134265 0.4400 +53635 146562 0.4570 +53637 54331 0.8290 +53637 55304 0.4380 +53637 55630 0.4260 +53637 55937 0.4910 +53637 56848 0.8970 +53637 64781 0.4260 +53637 81537 0.4880 +53637 83888 0.6640 +53637 124976 0.6280 +53637 126006 0.4010 +53637 130367 0.4320 +53637 257101 0.5840 +53637 388931 0.6030 +53820 84684 0.4140 +53820 92610 0.6000 +53820 170302 0.4230 +53820 642574 0.5290 +53820 107986818 0.4180 +53822 53827 0.6820 +53822 53828 0.8290 +53822 342865 0.4860 +53826 53827 0.7290 +53826 55530 0.4870 +53826 79178 0.4530 +53827 53828 0.7190 +53827 56951 0.5030 +53827 57680 0.4700 +53827 140690 0.5500 +53827 147912 0.4260 +53827 100533181 0.7070 +53828 56901 0.5530 +53828 84651 0.5590 +53828 132671 0.4470 +53828 146862 0.4440 +53828 152065 0.4100 +53828 219770 0.9610 +53828 245973 0.5390 +53828 408187 0.5990 +53828 643394 0.5770 +53828 100505876 0.4220 +53828 100533181 0.5970 +53829 53831 0.4260 +53829 54209 0.6080 +53829 54440 0.4250 +53829 55911 0.4310 +53829 56670 0.4010 +53829 56944 0.5080 +53829 63940 0.4410 +53829 64231 0.5470 +53829 64407 0.4710 +53829 64581 0.5450 +53829 64805 0.9010 +53829 126006 0.4130 +53829 146722 0.4380 +53829 286530 0.4580 +53829 338773 0.6330 +53829 377841 0.5060 +53829 692312 0.8810 +53831 81566 0.4200 +53831 139760 0.7350 +53831 199675 0.5220 +53831 222545 0.4100 +53831 253782 0.4200 +53831 259307 0.4260 +53831 285601 0.5000 +53831 338339 0.5450 +53831 338442 0.5760 +53831 338557 0.8330 +53831 730249 0.4900 +53832 53833 0.9990 +53832 55801 0.9980 +53832 56832 0.6740 +53832 58985 0.9360 +53832 59067 0.6580 +53832 80381 0.4450 +53832 85480 0.7340 +53832 163702 0.5340 +53832 282616 0.8820 +53832 282617 0.9020 +53832 282618 0.9120 +53832 338376 0.6960 +53833 55801 0.8970 +53833 56832 0.6640 +53833 58985 0.9990 +53833 59067 0.6680 +53833 85480 0.7010 +53833 116379 0.5430 +53833 163702 0.4020 +53833 282616 0.7720 +53833 282617 0.8840 +53833 282618 0.8920 +53833 338376 0.6640 +53834 161742 0.7270 +53834 200734 0.7180 +53834 347734 0.4410 +53836 57720 0.4240 +53836 81491 0.4550 +53836 83447 0.4060 +53836 84985 0.4120 +53836 92211 0.4320 +53836 116931 0.4840 +53836 118442 0.4730 +53836 120787 0.4980 +53836 124274 0.4070 +53836 149708 0.5550 +53836 160492 0.4680 +53836 196335 0.5230 +53836 221393 0.4140 +53836 266977 0.4650 +53836 389336 0.4680 +53836 390083 0.4580 +53838 54732 0.4270 +53838 57687 0.5600 +53838 90317 0.4630 +53838 221710 0.4810 +53840 85363 0.4800 +53840 445372 0.8010 +53841 54825 0.9980 +53841 64072 0.8810 +53841 79751 0.4030 +53841 83715 0.5160 +53841 92211 0.4700 +53841 119467 0.4450 +53841 222662 0.5340 +53841 255252 0.4530 +53841 257629 0.8260 +53841 375323 0.5270 +53841 375612 0.5270 +53842 55602 0.4040 +53842 56288 0.6650 +53842 90952 0.6930 +53842 137075 0.8650 +53842 149461 0.6790 +53842 644672 0.6680 +53842 100132463 0.6560 +53842 100288814 0.7970 +53842 100506658 0.7170 +53904 54798 0.5010 +53904 55604 0.5400 +53904 56649 0.4560 +53904 56940 0.7200 +53904 64072 0.6420 +53904 64236 0.5450 +53904 64699 0.5860 +53904 64787 0.9180 +53904 65217 0.6760 +53904 79955 0.4620 +53904 83700 0.7200 +53904 83715 0.9720 +53904 84059 0.4780 +53904 84700 0.4570 +53904 91860 0.5400 +53904 92521 0.5720 +53904 117531 0.6760 +53904 117532 0.5750 +53904 118812 0.7490 +53904 124590 0.4390 +53904 125336 0.7450 +53904 126326 0.5920 +53904 129446 0.6110 +53904 140469 0.8180 +53904 146183 0.5800 +53904 152137 0.4330 +53904 161497 0.6450 +53904 163688 0.5400 +53904 219537 0.5720 +53904 222662 0.5930 +53904 254102 0.5420 +53904 259236 0.5290 +53904 286262 0.7700 +53904 286676 0.4250 +53904 339768 0.9580 +53904 342527 0.5720 +53904 375611 0.5490 +53904 388551 0.5240 +53904 389207 0.7840 +53904 494513 0.7440 +53904 643226 0.7130 +53904 652991 0.4560 +53905 54205 0.4930 +53905 55248 0.4020 +53905 58524 0.4210 +53905 79400 0.9840 +53905 83592 0.4140 +53905 90527 0.9990 +53905 91860 0.4380 +53905 124056 0.8900 +53905 163688 0.4380 +53905 257202 0.6020 +53905 389434 0.5300 +53905 405753 0.9990 +53905 493869 0.6020 +53905 653361 0.9850 +53916 64399 0.4080 +53916 79890 0.5620 +53916 79894 0.4560 +53916 80271 0.4780 +53916 92609 0.4150 +53916 112398 0.5090 +53916 123688 0.5180 +53916 284325 0.4090 +53917 55014 0.4030 +53917 55054 0.4580 +53917 55062 0.4570 +53917 55823 0.4340 +53917 57617 0.5000 +53917 64145 0.8140 +53917 64324 0.4050 +53917 64601 0.5730 +53917 83463 0.4570 +53917 84938 0.5570 +53917 84971 0.4560 +53917 89849 0.6290 +53917 114787 0.4220 +53917 115201 0.4230 +53917 140775 0.6470 +53917 285282 0.4790 +53917 375484 0.4590 +53917 768206 0.4090 +53918 54464 0.5540 +53918 54676 0.7330 +53918 54831 0.5210 +53918 55139 0.4480 +53918 55173 0.4040 +53918 55728 0.4280 +53918 57130 0.4050 +53918 57471 0.4160 +53918 60684 0.4310 +53918 79685 0.6080 +53918 84164 0.5470 +53918 87178 0.4090 +53918 90441 0.4300 +53918 90850 0.7090 +53918 92399 0.6210 +53918 114987 0.6040 +53918 144453 0.4400 +53918 266675 0.5490 +53918 284339 0.4850 +53918 100529239 0.4060 +53919 84525 0.4350 +53919 114571 0.4470 +53919 117247 0.8280 +53919 167410 0.5150 +53919 222962 0.4290 +53919 283985 0.4040 +53938 54707 0.5860 +53938 54952 0.5080 +53938 55234 0.4340 +53938 56949 0.4400 +53938 57703 0.8360 +53938 59286 0.4460 +53938 60491 0.7580 +53938 65109 0.8080 +53938 80335 0.5480 +53938 84135 0.4070 +53938 84296 0.5000 +53938 84545 0.5220 +53938 84950 0.5900 +53938 91603 0.4770 +53938 143884 0.5540 +53938 151903 0.8410 +53938 153527 0.4390 +53938 199746 0.5090 +53938 285172 0.6800 +53938 345630 0.4810 +53940 54967 0.4840 +53940 56156 0.4180 +53940 64396 0.4140 +53940 81569 0.4240 +53940 158511 0.4520 +53940 158521 0.4090 +53940 337974 0.4180 +53940 390260 0.5410 +53940 392309 0.4160 +53940 494118 0.4500 +53940 653220 0.4300 +53940 100509620 0.5590 +53942 57126 0.9100 +53942 64478 0.4800 +53942 79473 0.4960 +53942 83604 0.4450 +53942 84623 0.5030 +53942 85445 0.9640 +53942 93107 0.4100 +53942 129684 0.5730 +53942 152330 0.4410 +53942 341277 0.4650 +53942 390075 0.4920 +53942 642273 0.4360 +53944 84548 0.6120 +53944 197259 0.4250 +53947 56913 0.4210 +53947 64895 0.5050 +53947 79586 0.5130 +53947 80218 0.4080 +53947 84002 0.6230 +53947 84752 0.4300 +53947 112755 0.4920 +53947 127550 0.5920 +53947 171546 0.4100 +53981 54973 0.9710 +53981 55174 0.4570 +53981 55339 0.9990 +53981 55421 0.4130 +53981 55520 0.4470 +53981 55596 0.4970 +53981 55656 0.5610 +53981 55706 0.4650 +53981 55726 0.5360 +53981 55746 0.5130 +53981 55756 0.4260 +53981 56903 0.9310 +53981 57117 0.6040 +53981 57122 0.5050 +53981 57187 0.4160 +53981 57466 0.4500 +53981 57470 0.4220 +53981 57551 0.4360 +53981 57710 0.6740 +53981 58493 0.5120 +53981 64426 0.4870 +53981 64506 0.6130 +53981 64848 0.8950 +53981 64852 0.6360 +53981 64895 0.9350 +53981 65123 0.5430 +53981 79023 0.4780 +53981 79084 0.6790 +53981 79577 0.6450 +53981 79869 0.9850 +53981 79882 0.4460 +53981 79902 0.4700 +53981 80315 0.5250 +53981 80335 0.9920 +53981 80789 0.4110 +53981 81556 0.5420 +53981 81608 0.9990 +53981 81929 0.4610 +53981 84271 0.4040 +53981 84455 0.4250 +53981 84516 0.5150 +53981 84524 0.5750 +53981 84955 0.6540 +53981 84967 0.9340 +53981 90381 0.4320 +53981 91746 0.8870 +53981 92105 0.5970 +53981 123041 0.5280 +53981 129401 0.4550 +53981 132864 0.4760 +53981 134353 0.7100 +53981 136157 0.8090 +53981 143506 0.8090 +53981 167153 0.4290 +53981 192670 0.4230 +53981 196120 0.8090 +53981 348995 0.5410 +53981 376940 0.5900 +53981 390031 0.8090 +53981 390033 0.8090 +53981 441584 0.8090 +53981 642843 0.9460 +53981 643988 0.6030 +53981 100101267 0.4680 +54014 54876 0.4130 +54014 55870 0.4280 +54014 57728 0.4210 +54014 93349 0.4370 +54014 94104 0.4320 +54014 114803 0.4300 +54014 138474 0.4550 +54014 150082 0.4720 +54014 360023 0.4420 +54014 653604 0.7500 +54020 89765 0.4310 +54033 54039 0.4730 +54033 55596 0.8050 +54033 58517 0.6520 +54033 60561 0.4180 +54033 64092 0.4500 +54033 84991 0.4760 +54033 85302 0.4780 +54033 124245 0.4210 +54033 201232 0.4080 +54033 642489 0.4530 +54033 100130613 0.4110 +54039 54059 0.6100 +54039 55275 0.4370 +54039 57761 0.4320 +54039 60487 0.4110 +54039 84306 0.4480 +54058 54059 0.5800 +54058 54065 0.4050 +54058 56911 0.4470 +54058 57466 0.5000 +54058 84221 0.4790 +54058 116115 0.5530 +54058 253012 0.6010 +54058 337969 0.4770 +54059 54431 0.4270 +54059 54596 0.4260 +54059 54802 0.6530 +54059 54805 0.4300 +54059 55157 0.5770 +54059 55247 0.5100 +54059 55301 0.4260 +54059 55520 0.4760 +54059 55699 0.4490 +54059 55794 0.4040 +54059 57129 0.8500 +54059 57136 0.4010 +54059 57508 0.4060 +54059 57609 0.4260 +54059 59271 0.4370 +54059 60528 0.6640 +54059 63875 0.9270 +54059 64745 0.5520 +54059 64963 0.5940 +54059 64968 0.6020 +54059 64979 0.5380 +54059 65003 0.5740 +54059 65005 0.4520 +54059 65220 0.4830 +54059 79078 0.4360 +54059 79590 0.6330 +54059 79728 0.4390 +54059 79863 0.4230 +54059 79877 0.4470 +54059 80221 0.4260 +54059 80273 0.5390 +54059 80324 0.5180 +54059 80347 0.4470 +54059 83480 0.4900 +54059 84221 0.4570 +54059 84264 0.4370 +54059 84273 0.4930 +54059 84545 0.8510 +54059 84656 0.4060 +54059 87178 0.7360 +54059 90353 0.4340 +54059 92170 0.4610 +54059 92399 0.5390 +54059 115416 0.5490 +54059 115752 0.4330 +54059 126789 0.4790 +54059 153364 0.4370 +54059 157869 0.4260 +54059 196074 0.6030 +54059 197322 0.4270 +54059 219927 0.8790 +54059 374659 0.4340 +54059 376497 0.4300 +54059 100130890 0.8330 +54059 100131187 0.8360 +54065 94104 0.5030 +54069 54478 0.4120 +54069 55143 0.7410 +54069 55166 0.8440 +54069 55320 0.9990 +54069 55355 0.9640 +54069 55723 0.4180 +54069 55839 0.8230 +54069 55920 0.4630 +54069 57082 0.6930 +54069 57405 0.5230 +54069 57573 0.4570 +54069 63967 0.4830 +54069 64105 0.8460 +54069 64946 0.8430 +54069 79019 0.6820 +54069 79172 0.7290 +54069 79682 0.7130 +54069 79980 0.4640 +54069 80152 0.8110 +54069 81930 0.4410 +54069 83461 0.4400 +54069 83540 0.6480 +54069 84516 0.4360 +54069 91687 0.7090 +54069 132158 0.5910 +54069 151648 0.4900 +54069 157570 0.4920 +54069 201254 0.6070 +54069 220134 0.4300 +54069 378708 0.7760 +54069 387103 0.8480 +54069 401541 0.6860 +54069 440093 0.4070 +54069 440686 0.4070 +54069 653604 0.4070 +54069 727764 0.5350 +54069 128966690 0.5350 +54084 55150 0.4200 +54084 64699 0.4520 +54084 65217 0.4830 +54084 81932 0.5130 +54084 83715 0.5240 +54084 85395 0.4830 +54084 125336 0.4240 +54084 144717 0.6660 +54084 154664 0.5300 +54084 161497 0.5670 +54084 200634 0.5040 +54084 283310 0.5510 +54084 286262 0.5950 +54084 353323 0.4120 +54084 353332 0.4600 +54084 386677 0.5070 +54084 386680 0.5430 +54084 386681 0.4020 +54084 388551 0.6350 +54093 54904 0.4300 +54093 55170 0.4340 +54093 55209 0.5760 +54093 55278 0.4490 +54093 55316 0.4130 +54093 55870 0.4720 +54093 55904 0.4070 +54093 56341 0.4750 +54093 56950 0.4020 +54093 56980 0.5580 +54093 56981 0.4500 +54093 59336 0.4050 +54093 63977 0.6720 +54093 64754 0.4520 +54093 79918 0.7350 +54093 80853 0.4030 +54093 80854 0.4990 +54093 83852 0.5590 +54093 84193 0.5180 +54093 84255 0.4560 +54093 84620 0.4150 +54093 93134 0.4880 +54093 93166 0.4290 +54093 114799 0.4240 +54093 114826 0.5880 +54093 133383 0.4100 +54093 140883 0.4930 +54093 150572 0.4490 +54093 151230 0.4110 +54093 152992 0.4650 +54093 157570 0.4040 +54093 158405 0.6190 +54093 387893 0.4320 +54097 54954 0.5210 +54097 57506 0.5080 +54097 59272 0.4100 +54097 79783 0.6090 +54097 83992 0.7780 +54097 84270 0.5930 +54097 136647 0.7840 +54097 136991 0.6970 +54101 55679 0.4170 +54101 57495 0.4510 +54101 57822 0.5260 +54101 63977 0.4250 +54101 64922 0.4870 +54101 79363 0.4610 +54101 79861 0.4340 +54101 79987 0.4530 +54101 80086 0.4220 +54101 84231 0.4150 +54101 84617 0.5280 +54101 84790 0.4570 +54101 91608 0.4410 +54101 112714 0.4220 +54101 113457 0.4220 +54101 126695 0.6510 +54101 133015 0.4070 +54101 133121 0.4360 +54101 135138 0.4070 +54101 136332 0.4540 +54101 151651 0.4570 +54101 169044 0.4770 +54101 171177 0.5460 +54101 197335 0.8180 +54101 203068 0.5310 +54101 345193 0.4200 +54101 388559 0.4080 +54101 100128569 0.4020 +54102 64072 0.4320 +54102 65217 0.4320 +54102 84059 0.4480 +54102 117531 0.4950 +54102 219736 0.4030 +54102 286262 0.8490 +54102 375611 0.4330 +54102 643226 0.6500 +54103 54492 0.5280 +54103 54933 0.4550 +54103 55851 0.8320 +54103 83464 0.4320 +54106 54472 0.5600 +54106 54476 0.5440 +54106 55509 0.4010 +54106 55801 0.5170 +54106 56832 0.4370 +54106 57379 0.5020 +54106 57506 0.6630 +54106 57705 0.5250 +54106 58191 0.4640 +54106 58484 0.6930 +54106 59272 0.4110 +54106 59307 0.6170 +54106 64127 0.9200 +54106 64135 0.7200 +54106 64170 0.5010 +54106 64581 0.7830 +54106 65258 0.4200 +54106 79132 0.6300 +54106 80380 0.4240 +54106 80381 0.5760 +54106 81030 0.6210 +54106 81622 0.9700 +54106 81704 0.5530 +54106 81793 0.4960 +54106 83417 0.4040 +54106 83440 0.4850 +54106 84868 0.4520 +54106 85480 0.4200 +54106 90865 0.6580 +54106 91543 0.4060 +54106 93978 0.5280 +54106 114548 0.7460 +54106 114609 0.9880 +54106 114836 0.4710 +54106 115004 0.8120 +54106 115650 0.5710 +54106 121260 0.4340 +54106 137902 0.4360 +54106 140885 0.4790 +54106 146850 0.4690 +54106 148022 0.9690 +54106 149233 0.5780 +54106 152831 0.5170 +54106 168400 0.4390 +54106 169355 0.5050 +54106 170482 0.6720 +54106 170506 0.4590 +54106 171389 0.4470 +54106 282618 0.7670 +54106 283420 0.4740 +54106 340061 0.4900 +54106 345456 0.4800 +54106 353376 0.9430 +54106 375189 0.4840 +54106 405754 0.4050 +54106 730249 0.4350 +54106 100526664 0.6640 +54106 102723407 0.4280 +54107 54108 0.9990 +54107 54465 0.5110 +54107 54962 0.5860 +54107 55388 0.7210 +54107 55578 0.7410 +54107 55636 0.5350 +54107 55689 0.9320 +54107 56655 0.9990 +54107 56852 0.5720 +54107 56943 0.7490 +54107 56970 0.7200 +54107 57325 0.8720 +54107 57599 0.5260 +54107 57680 0.4090 +54107 57804 0.5640 +54107 64785 0.5020 +54107 79621 0.4020 +54107 79728 0.4820 +54107 80010 0.5020 +54107 80218 0.4610 +54107 81620 0.4640 +54107 83443 0.5500 +54107 83990 0.5070 +54107 84172 0.4990 +54107 84250 0.4390 +54107 84296 0.6730 +54107 84515 0.6380 +54107 93624 0.7640 +54107 112869 0.9050 +54107 116028 0.4860 +54107 117143 0.7260 +54107 124739 0.4990 +54107 124944 0.5400 +54107 245711 0.8050 +54107 387778 0.8050 +54107 440093 0.4260 +54107 440686 0.4210 +54107 653604 0.4260 +54107 100529209 0.5400 +54108 56655 0.9210 +54108 57109 0.4720 +54108 57210 0.5010 +54108 57804 0.5430 +54108 84700 0.4270 +54108 124944 0.5430 +54108 390616 0.4350 +54108 399687 0.5520 +54108 493753 0.4460 +54108 100529209 0.5400 +54112 54331 0.8320 +54112 57863 0.4670 +54112 81491 0.5880 +54112 84152 0.5250 +54112 118442 0.4710 +54112 128674 0.4320 +54112 134391 0.4400 +54112 285601 0.5290 +54112 353345 0.6480 +54112 390205 0.4330 +54145 54386 0.5460 +54145 54623 0.5360 +54145 54815 0.4990 +54145 54892 0.5090 +54145 54969 0.7650 +54145 55070 0.7270 +54145 55170 0.5340 +54145 55183 0.5310 +54145 55247 0.5140 +54145 55506 0.4090 +54145 55766 0.7260 +54145 55848 0.5850 +54145 55869 0.7270 +54145 56154 0.4310 +54145 56158 0.4990 +54145 56254 0.8550 +54145 56943 0.5430 +54145 56979 0.5390 +54145 57332 0.5280 +54145 57459 0.4990 +54145 57504 0.4990 +54145 58508 0.6390 +54145 64421 0.4990 +54145 64426 0.4990 +54145 79101 0.4030 +54145 79447 0.4990 +54145 79577 0.6460 +54145 79595 0.4990 +54145 79685 0.4990 +54145 79813 0.4950 +54145 79885 0.6990 +54145 80012 0.5440 +54145 83439 0.4990 +54145 83740 0.4730 +54145 83933 0.6980 +54145 84142 0.5160 +54145 84172 0.5550 +54145 84444 0.6590 +54145 84656 0.7650 +54145 84733 0.5070 +54145 84962 0.4990 +54145 85235 0.6360 +54145 85236 0.6800 +54145 90780 0.5470 +54145 92815 0.4640 +54145 93426 0.5010 +54145 94239 0.6940 +54145 114803 0.5400 +54145 121504 0.4120 +54145 121536 0.7320 +54145 123169 0.4410 +54145 126119 0.4850 +54145 126961 0.6790 +54145 128312 0.4580 +54145 165918 0.5970 +54145 192669 0.5240 +54145 192670 0.5370 +54145 221302 0.4350 +54145 221613 0.5000 +54145 255626 0.4600 +54145 256126 0.5090 +54145 283149 0.4990 +54145 317772 0.5080 +54145 333932 0.6510 +54145 387893 0.4870 +54145 440093 0.8740 +54145 440686 0.9240 +54145 474381 0.4570 +54145 474382 0.6360 +54145 554313 0.4110 +54145 644186 0.4990 +54145 653604 0.9610 +54145 723790 0.5480 +54145 115482686 0.4590 +54148 54460 0.8570 +54148 54516 0.5970 +54148 54534 0.9870 +54148 54948 0.9780 +54148 54998 0.8430 +54148 55037 0.8700 +54148 55052 0.9820 +54148 55157 0.4710 +54148 55168 0.9780 +54148 55173 0.8830 +54148 55178 0.9530 +54148 55316 0.5190 +54148 55794 0.8190 +54148 56945 0.9220 +54148 57129 0.9790 +54148 57176 0.4960 +54148 57470 0.4500 +54148 57505 0.4230 +54148 60488 0.8840 +54148 63875 0.9880 +54148 63931 0.9240 +54148 64432 0.8810 +54148 64928 0.9580 +54148 64949 0.8770 +54148 64951 0.8870 +54148 64960 0.9490 +54148 64963 0.8930 +54148 64965 0.9590 +54148 64968 0.9110 +54148 64969 0.9180 +54148 64975 0.9750 +54148 64976 0.9820 +54148 64978 0.9800 +54148 64979 0.9020 +54148 64981 0.9630 +54148 64983 0.9920 +54148 65003 0.9830 +54148 65005 0.9830 +54148 65008 0.9890 +54148 65080 0.9910 +54148 65993 0.8750 +54148 78988 0.9630 +54148 79590 0.9780 +54148 79736 0.4980 +54148 84311 0.9910 +54148 84340 0.8550 +54148 84545 0.9610 +54148 84705 0.5110 +54148 84881 0.5740 +54148 85476 0.8830 +54148 85865 0.8440 +54148 90480 0.9610 +54148 91574 0.8490 +54148 92170 0.9200 +54148 92399 0.9090 +54148 115416 0.9640 +54148 116159 0.4930 +54148 116540 0.9010 +54148 116541 0.8860 +54148 118487 0.9060 +54148 122704 0.9480 +54148 124995 0.9760 +54148 128308 0.9760 +54148 130916 0.8160 +54148 131076 0.5880 +54148 219402 0.5370 +54148 219927 0.9720 +54148 374659 0.5860 +54148 387338 0.8050 +54148 100526842 0.4300 +54148 127898561 0.8390 +54149 57561 0.4100 +54149 60592 0.4740 +54149 64839 0.4580 +54149 541578 0.4320 +54165 54876 0.5040 +54165 54919 0.4590 +54165 54939 0.5130 +54165 54951 0.5340 +54165 55153 0.4310 +54165 55175 0.5070 +54165 55208 0.4140 +54165 55327 0.4630 +54165 55527 0.5070 +54165 55827 0.5460 +54165 55832 0.9690 +54165 55958 0.5650 +54165 56658 0.4070 +54165 56929 0.5290 +54165 57542 0.5240 +54165 64326 0.5080 +54165 64344 0.4990 +54165 64410 0.5040 +54165 64708 0.6960 +54165 79016 0.5470 +54165 79269 0.5220 +54165 80067 0.5390 +54165 80344 0.5060 +54165 84078 0.5130 +54165 84259 0.5290 +54165 84541 0.5260 +54165 84861 0.5710 +54165 89890 0.5250 +54165 90135 0.5040 +54165 90293 0.6530 +54165 122769 0.5900 +54165 123228 0.6710 +54165 123879 0.5190 +54165 140739 0.9730 +54165 143384 0.5440 +54165 149951 0.5160 +54165 150684 0.5210 +54165 154881 0.4990 +54165 170622 0.5320 +54165 200845 0.4990 +54165 222235 0.4560 +54165 253738 0.5710 +54165 390594 0.5070 +54165 644524 0.9000 +54187 54414 0.5910 +54187 55120 0.4780 +54187 55808 0.5100 +54187 55907 0.9930 +54187 56052 0.5330 +54187 80896 0.9420 +54187 81849 0.4060 +54187 81889 0.5480 +54187 90407 0.4310 +54187 129807 0.4340 +54187 130589 0.4030 +54187 140838 0.9760 +54187 151648 0.5790 +54187 152006 0.5750 +54187 164118 0.4460 +54187 284098 0.4120 +54187 440138 0.4530 +54205 54363 0.4780 +54205 54432 0.4050 +54205 54434 0.4340 +54205 54471 0.4620 +54205 54708 0.4010 +54205 54838 0.6360 +54205 54927 0.4160 +54205 55034 0.7950 +54205 55075 0.7440 +54205 55143 0.4120 +54205 55177 0.5270 +54205 55201 0.4300 +54205 55288 0.4440 +54205 55304 0.4130 +54205 55349 0.4860 +54205 55367 0.4550 +54205 55486 0.5140 +54205 55669 0.8260 +54205 55967 0.7580 +54205 56848 0.4210 +54205 56947 0.6020 +54205 56993 0.5230 +54205 57099 0.4880 +54205 57103 0.4030 +54205 57379 0.4800 +54205 57448 0.4260 +54205 58157 0.9420 +54205 58472 0.5030 +54205 60489 0.5060 +54205 64216 0.4430 +54205 64422 0.4420 +54205 65018 0.8000 +54205 79002 0.6810 +54205 79017 0.5350 +54205 79135 0.4290 +54205 79156 0.5670 +54205 79400 0.4210 +54205 79444 0.6180 +54205 79680 0.7200 +54205 79728 0.4380 +54205 79792 0.8480 +54205 79934 0.4430 +54205 80777 0.9960 +54205 81341 0.7570 +54205 81631 0.6690 +54205 81669 0.7200 +54205 81689 0.4630 +54205 83447 0.9500 +54205 83985 0.5120 +54205 84260 0.5740 +54205 84271 0.4250 +54205 84557 0.5160 +54205 84701 0.9550 +54205 84706 0.4570 +54205 84833 0.4450 +54205 84883 0.5080 +54205 84886 0.7280 +54205 84919 0.4030 +54205 84987 0.4900 +54205 90427 0.5940 +54205 90550 0.6190 +54205 90639 0.7990 +54205 91300 0.7040 +54205 91860 0.6050 +54205 92609 0.4300 +54205 112812 0.4030 +54205 114548 0.4480 +54205 114907 0.5190 +54205 115209 0.5550 +54205 116228 0.5370 +54205 116844 0.8070 +54205 120892 0.5190 +54205 124976 0.4470 +54205 125170 0.4800 +54205 125965 0.7440 +54205 126328 0.5220 +54205 131474 0.7230 +54205 133522 0.8570 +54205 136319 0.4180 +54205 136895 0.4550 +54205 137902 0.8880 +54205 140564 0.4630 +54205 146713 0.4160 +54205 150572 0.4360 +54205 163688 0.6050 +54205 164668 0.4630 +54205 164684 0.4730 +54205 170712 0.4990 +54205 192111 0.4200 +54205 197259 0.5330 +54205 200315 0.4630 +54205 200316 0.4680 +54205 200895 0.5800 +54205 257202 0.7380 +54205 283459 0.5780 +54205 285521 0.5380 +54205 374291 0.5140 +54205 387990 0.4280 +54205 388753 0.6200 +54205 400746 0.4460 +54205 440093 0.4850 +54205 440387 0.6880 +54205 440567 0.7890 +54205 440686 0.4850 +54205 441925 0.4550 +54205 493856 0.4410 +54205 493869 0.7630 +54205 606495 0.4570 +54205 653145 0.6240 +54205 653361 0.4840 +54205 653604 0.4870 +54205 728378 0.6000 +54205 100287932 0.5070 +54206 353322 0.4010 +54207 55669 0.4200 +54207 55716 0.4140 +54207 56659 0.6720 +54207 56660 0.6710 +54207 57419 0.4330 +54207 59341 0.4120 +54207 60598 0.6300 +54207 63895 0.5130 +54207 79054 0.4600 +54207 81853 0.4990 +54207 83795 0.5870 +54207 89822 0.6060 +54207 338567 0.7750 +54209 54210 0.9870 +54209 55063 0.5140 +54209 55423 0.9030 +54209 55576 0.4200 +54209 56944 0.5160 +54209 57091 0.5390 +54209 64231 0.6990 +54209 64581 0.7490 +54209 64805 0.8740 +54209 79258 0.4750 +54209 79865 0.9620 +54209 79890 0.4760 +54209 80031 0.8890 +54209 81501 0.5270 +54209 91937 0.4300 +54209 114548 0.4040 +54209 123041 0.4630 +54209 124599 0.6640 +54209 126014 0.5750 +54209 131450 0.6980 +54209 140885 0.9650 +54209 146433 0.6850 +54209 146713 0.4010 +54209 146722 0.7120 +54209 146894 0.5590 +54209 203228 0.5590 +54209 245802 0.5270 +54209 285852 0.6480 +54209 338773 0.8140 +54209 340205 0.9750 +54209 342510 0.5010 +54209 643680 0.5130 +54209 100131439 0.4930 +54210 56729 0.4090 +54210 64127 0.4900 +54210 64170 0.4360 +54210 64581 0.4890 +54210 79865 0.9540 +54210 114548 0.5890 +54210 124599 0.7400 +54210 146722 0.6770 +54210 146894 0.5530 +54210 199675 0.5120 +54210 285852 0.7210 +54210 338339 0.4500 +54210 340205 0.9720 +54210 342510 0.5930 +54210 100131439 0.5610 +54212 54221 0.7620 +54212 55636 0.4520 +54212 84062 0.4010 +54212 137868 0.6970 +54221 54413 0.5260 +54221 57115 0.4380 +54221 57502 0.5400 +54221 57531 0.4080 +54221 79600 0.4070 +54221 80124 0.5510 +54221 80731 0.4730 +54221 85445 0.4290 +54221 114771 0.4380 +54221 137868 0.6850 +54221 285220 0.4040 +54221 286410 0.8730 +54221 642273 0.4300 +54221 654254 0.4070 +54328 389203 0.8830 +54329 64418 0.4390 +54329 140893 0.4220 +54329 257364 0.5150 +54329 387509 0.4230 +54329 389203 0.4590 +54331 55811 0.6500 +54331 55970 0.5750 +54331 56246 0.8000 +54331 56923 0.9040 +54331 56925 0.4860 +54331 57105 0.5420 +54331 57121 0.5130 +54331 57528 0.4260 +54331 57580 0.9810 +54331 59345 0.9990 +54331 63940 0.4420 +54331 64407 0.5740 +54331 64805 0.5470 +54331 64857 0.6710 +54331 79924 0.8000 +54331 80036 0.8120 +54331 80243 0.5120 +54331 80763 0.8060 +54331 84539 0.5740 +54331 84624 0.6560 +54331 84628 0.4620 +54331 85397 0.5360 +54331 93659 0.8000 +54331 94115 0.8000 +54331 94235 0.5430 +54331 113091 0.8000 +54331 115207 0.8390 +54331 115557 0.5000 +54331 116512 0.8230 +54331 117194 0.8000 +54331 117196 0.8000 +54331 117579 0.4990 +54331 124274 0.8160 +54331 126006 0.4080 +54331 129521 0.8950 +54331 139378 0.8280 +54331 146850 0.8790 +54331 196883 0.7230 +54331 221188 0.8290 +54331 221391 0.5410 +54331 222487 0.8300 +54331 259249 0.8440 +54331 259292 0.8000 +54331 266977 0.8170 +54331 283383 0.8220 +54331 346562 0.7290 +54331 387129 0.5410 +54331 390714 0.4330 +54331 431704 0.5370 +54331 594857 0.4990 +54331 100423062 0.8170 +54331 100526739 0.8030 +54331 100996758 0.8220 +54331 102723407 0.4330 +54331 104909134 0.8260 +54331 105372280 0.5580 +54332 54471 0.5390 +54332 55526 0.5520 +54332 55669 0.8890 +54332 55670 0.6920 +54332 55784 0.4160 +54332 56704 0.5480 +54332 56947 0.6360 +54332 57716 0.5440 +54332 59341 0.4800 +54332 59345 0.4180 +54332 64423 0.5850 +54332 65055 0.4960 +54332 79628 0.8000 +54332 81846 0.7410 +54332 83690 0.4050 +54332 84896 0.5990 +54332 85300 0.6360 +54332 90678 0.6220 +54332 91137 0.4640 +54332 91452 0.6620 +54332 121512 0.6820 +54332 125170 0.5270 +54332 133482 0.4610 +54332 137970 0.4110 +54332 139322 0.4190 +54332 221823 0.4460 +54332 285175 0.4150 +54332 375449 0.4170 +54332 389072 0.5120 +54344 54939 0.5240 +54344 54987 0.4040 +54344 55316 0.5140 +54344 55624 0.7720 +54344 55650 0.9070 +54344 56052 0.9450 +54344 57171 0.9500 +54344 79002 0.4040 +54344 79053 0.5150 +54344 79087 0.5890 +54344 79147 0.7740 +54344 79644 0.6280 +54344 79868 0.6020 +54344 79947 0.5360 +54344 79956 0.4120 +54344 80055 0.4100 +54344 84197 0.7320 +54344 84316 0.4630 +54344 84720 0.4640 +54344 84892 0.7580 +54344 84992 0.5290 +54344 85315 0.4110 +54344 93183 0.8930 +54344 116150 0.4730 +54344 116540 0.4350 +54344 120071 0.4630 +54344 128869 0.4730 +54344 148789 0.7450 +54344 151987 0.4230 +54344 199857 0.4480 +54344 200185 0.5790 +54344 284098 0.6070 +54344 440138 0.5780 +54344 729920 0.5480 +54345 54538 0.7760 +54345 54567 0.5490 +54345 54922 0.6420 +54345 55704 0.4070 +54345 57165 0.6040 +54345 64321 0.6290 +54345 79812 0.5320 +54345 79923 0.4970 +54345 80145 0.4200 +54345 83483 0.4270 +54345 83595 0.5990 +54345 90952 0.5400 +54345 116159 0.4760 +54345 140467 0.5020 +54345 147372 0.6890 +54345 161198 0.4480 +54345 221395 0.4170 +54345 255877 0.4490 +54345 342371 0.4240 +54345 100288687 0.4150 +54346 54842 0.5600 +54346 54868 0.4690 +54346 55530 0.6200 +54346 60598 0.4750 +54346 64645 0.5450 +54346 64747 0.4890 +54346 79847 0.5770 +54346 83985 0.4750 +54346 84641 0.4060 +54346 84804 0.6920 +54346 84975 0.5790 +54346 113402 0.4470 +54346 113655 0.5200 +54346 126321 0.5300 +54346 136306 0.6370 +54346 149095 0.4600 +54346 162387 0.5470 +54346 168090 0.4180 +54346 201305 0.4940 +54346 256471 0.4180 +54346 339665 0.4460 +54346 388931 0.4310 +54346 390059 0.4350 +54360 83605 0.4010 +54360 84734 0.5170 +54360 122046 0.4150 +54360 341392 0.4350 +54361 55366 0.4300 +54361 55553 0.4300 +54361 55591 0.4310 +54361 56955 0.5150 +54361 56956 0.5040 +54361 57216 0.7860 +54361 64840 0.9590 +54361 79866 0.4080 +54361 79971 0.9350 +54361 80326 0.5790 +54361 80351 0.4730 +54361 81029 0.5450 +54361 84870 0.5170 +54361 85407 0.4150 +54361 89780 0.7080 +54361 147111 0.9400 +54361 284654 0.9230 +54361 340419 0.4730 +54361 340784 0.5500 +54361 344018 0.4710 +54361 346673 0.4670 +54363 54498 0.4040 +54363 54511 0.4020 +54363 55297 0.4400 +54363 56255 0.4540 +54363 56965 0.5480 +54363 57107 0.4680 +54363 57805 0.8350 +54363 58499 0.4060 +54363 58510 0.5770 +54363 64577 0.4750 +54363 64902 0.8720 +54363 79668 0.5480 +54363 79893 0.6260 +54363 79947 0.5840 +54363 81494 0.4070 +54363 83594 0.4350 +54363 84263 0.4320 +54363 84264 0.4150 +54363 84693 0.5430 +54363 84706 0.4160 +54363 84842 0.4410 +54363 93432 0.7540 +54363 112817 0.9450 +54363 116150 0.5840 +54363 137902 0.7280 +54363 153364 0.4070 +54363 164091 0.4120 +54363 197257 0.6260 +54363 219743 0.6350 +54363 254042 0.4230 +54363 283871 0.9360 +54363 400746 0.5090 +54363 414328 0.4820 +54386 54433 0.6440 +54386 54921 0.5020 +54386 55135 0.6900 +54386 55247 0.4990 +54386 55291 0.5710 +54386 55505 0.7480 +54386 55651 0.7310 +54386 55660 0.4800 +54386 55766 0.5390 +54386 56158 0.4990 +54386 57804 0.5070 +54386 63922 0.5120 +54386 64858 0.9340 +54386 79075 0.5020 +54386 79991 0.8390 +54386 80119 0.4800 +54386 80169 0.8290 +54386 80198 0.7250 +54386 80351 0.4080 +54386 84464 0.9480 +54386 85236 0.5500 +54386 93426 0.4990 +54386 93624 0.4180 +54386 94239 0.5380 +54386 128312 0.5460 +54386 128710 0.8690 +54386 146956 0.7000 +54386 255626 0.5460 +54386 256126 0.4990 +54386 389493 0.4140 +54386 474382 0.5330 +54386 503835 0.4090 +54386 548593 0.7800 +54386 644186 0.4990 +54386 100033411 0.4600 +54386 100134934 0.7820 +54407 55117 0.4320 +54407 56301 0.4060 +54407 81539 0.9120 +54407 117247 0.4140 +54407 120103 0.6260 +54407 124935 0.6400 +54407 153129 0.6500 +54407 153201 0.5370 +54407 154091 0.4950 +54407 206358 0.6630 +54407 340024 0.5950 +54407 440275 0.5160 +54413 54715 0.4310 +54413 55243 0.5150 +54413 57030 0.5070 +54413 57502 0.7960 +54413 57555 0.6830 +54413 57575 0.4370 +54413 57669 0.4990 +54413 57680 0.5300 +54413 58512 0.7630 +54413 64326 0.6090 +54413 64359 0.6580 +54413 79816 0.4990 +54413 80059 0.4330 +54413 84063 0.4600 +54413 84631 0.5010 +54413 85358 0.9930 +54413 85445 0.4160 +54413 94030 0.5130 +54413 114798 0.4200 +54413 139189 0.4020 +54413 139411 0.8120 +54413 140679 0.5550 +54413 142689 0.4260 +54413 147381 0.4800 +54413 152330 0.7360 +54413 158866 0.4080 +54413 222553 0.4250 +54413 266727 0.6860 +54413 285195 0.6780 +54413 347730 0.6040 +54413 347731 0.4220 +54413 375323 0.5870 +54414 55609 0.4500 +54414 55808 0.4170 +54414 56940 0.4060 +54414 64921 0.7950 +54414 89858 0.4380 +54414 131566 0.5140 +54414 196463 0.4570 +54414 221223 0.5060 +54414 284266 0.4630 +54414 729515 0.4920 +54429 80834 0.7840 +54429 80835 0.7510 +54429 83756 0.7840 +54429 120776 0.4740 +54429 126006 0.4010 +54429 219869 0.4800 +54429 259285 0.5420 +54429 259286 0.5150 +54429 259287 0.5070 +54429 259289 0.5420 +54429 259290 0.5280 +54429 259292 0.4950 +54429 259293 0.5030 +54429 259294 0.5540 +54429 259295 0.5330 +54429 259296 0.5640 +54429 284521 0.5070 +54429 338398 0.4900 +54429 338751 0.5980 +54429 346562 0.9320 +54429 353164 0.5830 +54429 390067 0.4670 +54429 391195 0.5050 +54429 442186 0.5200 +54431 54596 0.4840 +54431 54979 0.5660 +54431 55173 0.4040 +54431 55301 0.4840 +54431 55666 0.4230 +54431 55703 0.4140 +54431 55741 0.6220 +54431 55757 0.6610 +54431 55829 0.4750 +54431 55967 0.5640 +54431 56255 0.4290 +54431 56605 0.5460 +54431 56886 0.7280 +54431 57110 0.5660 +54431 57142 0.4220 +54431 57407 0.4630 +54431 57544 0.5160 +54431 57609 0.4810 +54431 63875 0.4240 +54431 64374 0.6090 +54431 64968 0.4090 +54431 64979 0.5010 +54431 65003 0.7370 +54431 79139 0.4810 +54431 79728 0.6520 +54431 79738 0.4030 +54431 79962 0.4800 +54431 80020 0.8390 +54431 80195 0.4650 +54431 80221 0.4730 +54431 80267 0.7710 +54431 80273 0.7350 +54431 81533 0.4140 +54431 81567 0.4770 +54431 81570 0.7110 +54431 83648 0.5400 +54431 83752 0.4820 +54431 84061 0.5020 +54431 84447 0.6510 +54431 84705 0.4260 +54431 91319 0.4220 +54431 93550 0.5260 +54431 94031 0.4390 +54431 116835 0.6230 +54431 118461 0.5660 +54431 120526 0.4730 +54431 121506 0.5110 +54431 125972 0.5390 +54431 133522 0.4200 +54431 134266 0.6950 +54431 157869 0.4840 +54431 197322 0.5810 +54431 201595 0.5790 +54431 203100 0.4670 +54431 204474 0.5110 +54431 259217 0.5900 +54431 339416 0.5920 +54431 376497 0.4880 +54431 388633 0.5660 +54432 54880 0.4640 +54432 55644 0.4060 +54432 55829 0.4330 +54432 57159 0.4180 +54432 64223 0.4150 +54432 78992 0.6320 +54432 81555 0.5930 +54432 84272 0.7110 +54432 84676 0.8750 +54432 84678 0.4290 +54432 84914 0.4140 +54432 114907 0.9460 +54432 285525 0.5870 +54432 286451 0.9000 +54432 780776 0.5520 +54433 54475 0.5150 +54433 54517 0.4190 +54433 54552 0.9110 +54433 54865 0.5060 +54433 54881 0.4040 +54433 54913 0.7380 +54433 54984 0.5200 +54433 55006 0.5200 +54433 55127 0.5230 +54433 55131 0.7420 +54433 55135 0.9980 +54433 55164 0.9950 +54433 55170 0.4610 +54433 55226 0.9090 +54433 55272 0.4110 +54433 55291 0.4130 +54433 55299 0.5170 +54433 55352 0.4590 +54433 55505 0.9990 +54433 55646 0.4230 +54433 55651 0.9990 +54433 55703 0.4370 +54433 55720 0.6070 +54433 55759 0.5950 +54433 56341 0.5580 +54433 56342 0.4180 +54433 56474 0.5670 +54433 56902 0.4240 +54433 56937 0.4460 +54433 57050 0.4670 +54433 57418 0.4010 +54433 64216 0.4950 +54433 64425 0.4790 +54433 65985 0.7350 +54433 79009 0.5060 +54433 79050 0.4690 +54433 79084 0.5100 +54433 79571 0.4050 +54433 79760 0.4360 +54433 79833 0.4150 +54433 80119 0.4430 +54433 83479 0.4380 +54433 83732 0.5890 +54433 83743 0.6150 +54433 84128 0.5970 +54433 84135 0.4910 +54433 84154 0.6240 +54433 84172 0.7750 +54433 84294 0.4150 +54433 84365 0.6380 +54433 84549 0.4820 +54433 90826 0.4230 +54433 91646 0.4370 +54433 91875 0.4210 +54433 92345 0.9260 +54433 92856 0.4030 +54433 115708 0.5430 +54433 116966 0.4170 +54433 117246 0.4310 +54433 134353 0.7200 +54433 138716 0.5950 +54433 142940 0.9290 +54433 150962 0.4330 +54433 221078 0.6020 +54433 221830 0.5940 +54433 255308 0.4260 +54433 256643 0.4350 +54433 285855 0.4350 +54433 317781 0.5200 +54433 344758 0.4360 +54433 345630 0.9690 +54433 387129 0.4230 +54433 100505478 0.4030 +54433 114483834 0.4210 +54434 54961 0.9160 +54434 57026 0.6790 +54434 57175 0.5660 +54434 57404 0.4300 +54434 57522 0.4440 +54434 79269 0.4060 +54434 80207 0.4390 +54434 84749 0.4110 +54434 85464 0.9150 +54434 93953 0.4150 +54434 130026 0.4290 +54434 148206 0.4130 +54434 201595 0.4550 +54434 256356 0.4470 +54436 54985 0.4280 +54436 55830 0.4980 +54436 56946 0.4280 +54436 57537 0.4640 +54436 60312 0.5370 +54436 64718 0.4050 +54436 84448 0.4950 +54437 54549 0.5000 +54437 55558 0.7370 +54437 84925 0.4670 +54437 91584 0.4480 +54437 124152 0.4220 +54437 145173 0.4440 +54437 284992 0.4830 +54438 55300 0.4110 +54438 57148 0.5810 +54438 57186 0.7270 +54438 60509 0.4200 +54438 64802 0.4980 +54438 81031 0.4300 +54438 81577 0.7840 +54438 81624 0.4160 +54438 114134 0.4320 +54438 126789 0.4060 +54438 128239 0.4150 +54438 143872 0.4550 +54438 154091 0.4060 +54438 221692 0.4880 +54438 253959 0.6460 +54438 349565 0.4440 +54438 100151643 0.7240 +54439 54542 0.6120 +54439 55596 0.4610 +54439 55692 0.5490 +54439 57466 0.4830 +54439 83639 0.4330 +54439 84901 0.4450 +54439 116540 0.5590 +54439 124245 0.6010 +54439 140890 0.4630 +54439 149041 0.4750 +54439 153769 0.4140 +54439 196441 0.8070 +54439 246243 0.4690 +54439 494115 0.6230 +54439 100529063 0.4030 +54440 54518 0.4520 +54440 55843 0.4420 +54440 57705 0.5330 +54440 63940 0.4830 +54440 64005 0.4170 +54440 64098 0.5910 +54440 64926 0.8390 +54440 79626 0.4830 +54440 80342 0.5690 +54440 83706 0.4950 +54440 89857 0.5390 +54440 92241 0.5750 +54440 117289 0.6090 +54440 124460 0.5910 +54440 147138 0.5490 +54440 155038 0.4010 +54440 168537 0.4790 +54440 203328 0.4040 +54440 257106 0.7070 +54440 286530 0.4360 +54440 374403 0.5810 +54440 474344 0.4580 +54442 54540 0.4800 +54442 54800 0.5640 +54442 55076 0.4220 +54442 55958 0.6540 +54442 55975 0.5600 +54442 57542 0.5460 +54442 57563 0.5610 +54442 59349 0.5620 +54442 64410 0.5670 +54442 79047 0.5760 +54442 79734 0.9370 +54442 83892 0.6840 +54442 84078 0.6600 +54442 84280 0.5690 +54442 84541 0.5690 +54442 84861 0.5660 +54442 89890 0.6450 +54442 90293 0.5680 +54442 92714 0.5000 +54442 131377 0.5880 +54442 146212 0.5140 +54442 147040 0.7680 +54442 222658 0.5750 +54442 253980 0.7290 +54442 284252 0.6710 +54442 339745 0.5670 +54442 553115 0.5610 +54443 54478 0.5850 +54443 54566 0.4210 +54443 54821 0.4540 +54443 54892 0.5470 +54443 55010 0.4300 +54443 55055 0.5940 +54443 55063 0.4490 +54443 55143 0.7890 +54443 55165 0.9300 +54443 55215 0.4500 +54443 55355 0.6770 +54443 55388 0.4820 +54443 55632 0.4290 +54443 55635 0.8470 +54443 55752 0.5990 +54443 55789 0.7400 +54443 55839 0.4690 +54443 55914 0.5650 +54443 55922 0.4100 +54443 55930 0.4330 +54443 56992 0.6450 +54443 57082 0.4810 +54443 57175 0.4350 +54443 57405 0.4870 +54443 57584 0.4090 +54443 57650 0.4150 +54443 60312 0.4220 +54443 63967 0.4060 +54443 64105 0.5090 +54443 64151 0.6810 +54443 64423 0.7880 +54443 65124 0.4270 +54443 79000 0.4890 +54443 79075 0.4790 +54443 79621 0.4080 +54443 79682 0.4060 +54443 79733 0.5220 +54443 79801 0.7430 +54443 79915 0.4400 +54443 81610 0.5940 +54443 81620 0.5270 +54443 81624 0.9880 +54443 81839 0.5750 +54443 81873 0.4700 +54443 81930 0.5710 +54443 83461 0.6490 +54443 83478 0.4440 +54443 83540 0.8970 +54443 83879 0.4540 +54443 84057 0.5000 +54443 84135 0.4060 +54443 84722 0.5430 +54443 84823 0.5040 +54443 84930 0.4130 +54443 90381 0.4080 +54443 90627 0.4570 +54443 91010 0.4170 +54443 91624 0.7220 +54443 92521 0.4760 +54443 103910 0.4710 +54443 113130 0.6720 +54443 116369 0.7670 +54443 126353 0.4270 +54443 128239 0.7950 +54443 135228 0.4120 +54443 140465 0.4520 +54443 144402 0.4980 +54443 144455 0.4720 +54443 146909 0.4450 +54443 150468 0.8370 +54443 151011 0.6180 +54443 151246 0.5260 +54443 152098 0.4490 +54443 152330 0.4010 +54443 157313 0.6750 +54443 157570 0.4090 +54443 170954 0.4010 +54443 220134 0.4660 +54443 221150 0.6040 +54443 222584 0.4380 +54443 255626 0.4310 +54443 259266 0.9000 +54443 283431 0.4410 +54443 284119 0.5740 +54443 286262 0.4010 +54443 345456 0.4630 +54443 346288 0.5360 +54443 375189 0.5290 +54443 387103 0.4640 +54443 399687 0.4460 +54443 440073 0.4520 +54443 440093 0.4400 +54443 441873 0.5050 +54453 55565 0.4710 +54453 57165 0.4360 +54453 57419 0.5140 +54453 57679 0.4460 +54453 64759 0.4470 +54453 79890 0.5280 +54453 84779 0.4450 +54453 92344 0.5870 +54453 126432 0.4790 +54453 259173 0.4210 +54454 55023 0.5860 +54454 55140 0.4290 +54454 55814 0.5060 +54454 55870 0.4100 +54454 56061 0.4100 +54454 65980 0.5880 +54454 79944 0.4700 +54454 85456 0.4030 +54454 89872 0.4500 +54454 93349 0.4040 +54454 114803 0.6120 +54454 134510 0.4130 +54454 139231 0.4220 +54454 197131 0.5900 +54454 254065 0.5620 +54454 100509620 0.4500 +54454 100652824 0.4110 +54455 54778 0.4520 +54455 55030 0.5290 +54455 57130 0.4570 +54455 57805 0.4760 +54455 63932 0.4390 +54455 64145 0.4420 +54455 64224 0.4060 +54455 64320 0.5340 +54455 79034 0.4990 +54455 79791 0.4210 +54455 81545 0.5550 +54455 83746 0.4120 +54455 90025 0.4270 +54455 91833 0.4380 +54455 93611 0.4280 +54455 115290 0.4340 +54455 123207 0.4430 +54455 150726 0.4510 +54455 221785 0.4670 +54455 494188 0.4140 +54456 54514 0.9190 +54456 55124 0.9810 +54456 56154 0.4620 +54456 56159 0.4500 +54456 56163 0.6360 +54456 56165 0.9460 +54456 60681 0.5120 +54456 84944 0.8320 +54456 91646 0.9180 +54456 113802 0.7490 +54456 121355 0.6670 +54456 122402 0.8850 +54456 136991 0.9340 +54456 143689 0.8570 +54456 154197 0.5530 +54456 161829 0.5470 +54456 163589 0.7230 +54456 201164 0.8420 +54456 221400 0.5070 +54456 346673 0.4250 +54456 440822 0.5780 +54456 100129278 0.4130 +54457 54937 0.4030 +54457 56001 0.6310 +54457 56157 0.4330 +54457 56159 0.6710 +54457 56956 0.4040 +54457 63976 0.5110 +54457 83844 0.4230 +54457 83860 0.9580 +54457 84944 0.5020 +54457 117531 0.4070 +54457 129685 0.9930 +54457 138474 0.9240 +54457 284071 0.4120 +54457 339345 0.4560 +54457 346673 0.4530 +54457 387332 0.9000 +54457 391742 0.6770 +54457 391746 0.6770 +54457 391747 0.6770 +54457 399949 0.5960 +54457 402381 0.4360 +54457 404672 0.5400 +54457 646066 0.6770 +54457 646103 0.6770 +54457 728343 0.6260 +54457 100526761 0.4020 +54457 102723526 0.6770 +54457 112488736 0.6770 +54457 112488737 0.6770 +54457 112488738 0.6770 +54457 112488739 0.6770 +54457 112488740 0.6770 +54457 112488745 0.6770 +54457 112488746 0.6770 +54457 112488747 0.6770 +54458 55193 0.5110 +54458 114803 0.5880 +54460 54516 0.5230 +54460 54534 0.8880 +54460 54543 0.5440 +54460 54948 0.8670 +54460 54998 0.9930 +54460 55037 0.9820 +54460 55052 0.9050 +54460 55147 0.5760 +54460 55168 0.9870 +54460 55173 0.9930 +54460 55210 0.4290 +54460 55967 0.4350 +54460 56945 0.9910 +54460 57129 0.8760 +54460 60488 0.9800 +54460 63875 0.8930 +54460 63891 0.4590 +54460 63931 0.9930 +54460 64432 0.9920 +54460 64745 0.8140 +54460 64928 0.8730 +54460 64949 0.9920 +54460 64951 0.9930 +54460 64960 0.9980 +54460 64963 0.9980 +54460 64965 0.9950 +54460 64968 0.9980 +54460 64969 0.9960 +54460 64975 0.9250 +54460 64976 0.8910 +54460 64978 0.8970 +54460 64979 0.9310 +54460 64981 0.9110 +54460 64983 0.8780 +54460 65003 0.9190 +54460 65005 0.8880 +54460 65008 0.8440 +54460 65080 0.8700 +54460 65993 0.9940 +54460 78988 0.9150 +54460 79590 0.9190 +54460 79863 0.9160 +54460 81892 0.4180 +54460 84273 0.8370 +54460 84311 0.9150 +54460 84545 0.9150 +54460 85476 0.8180 +54460 90480 0.9220 +54460 92259 0.9000 +54460 92399 0.8640 +54460 116540 0.9040 +54460 116541 0.8910 +54460 118487 0.9930 +54460 122704 0.9370 +54460 123096 0.4060 +54460 124995 0.9200 +54460 126328 0.4410 +54460 128308 0.9220 +54460 150678 0.4150 +54460 158234 0.7800 +54460 196074 0.8330 +54460 219402 0.9200 +54460 219927 0.8860 +54460 654364 0.4010 +54461 54541 0.4950 +54461 54876 0.9000 +54461 55070 0.9060 +54461 55135 0.4050 +54461 55294 0.6320 +54461 55626 0.9040 +54461 55827 0.9040 +54461 55832 0.5510 +54461 57410 0.6260 +54461 64326 0.9000 +54461 79016 0.9080 +54461 79269 0.9050 +54461 79626 0.4460 +54461 80067 0.9000 +54461 80204 0.4410 +54461 80344 0.9010 +54461 81858 0.5450 +54461 84261 0.7780 +54461 84937 0.4400 +54461 90379 0.9040 +54461 94086 0.4200 +54461 123879 0.4990 +54461 126282 0.7370 +54461 138009 0.5400 +54461 139170 0.5400 +54461 139425 0.5470 +54461 144699 0.4100 +54461 153443 0.4450 +54461 163786 0.7610 +54461 284451 0.4220 +54461 285231 0.4620 +54461 285429 0.5400 +54461 340578 0.5400 +54461 347442 0.5470 +54461 388121 0.4460 +54462 54820 0.5140 +54462 80097 0.4080 +54462 81565 0.8250 +54462 81619 0.4580 +54462 84332 0.4830 +54462 143241 0.5550 +54462 150864 0.4130 +54462 285025 0.4600 +54463 54475 0.4790 +54463 54552 0.5530 +54463 55014 0.4360 +54463 55054 0.4350 +54463 55341 0.8130 +54463 55353 0.5950 +54463 55759 0.4110 +54463 57050 0.4340 +54463 57658 0.5480 +54463 64225 0.5060 +54463 65055 0.4200 +54463 65125 0.8890 +54463 79065 0.5300 +54463 80135 0.4710 +54463 80856 0.4640 +54463 81631 0.8290 +54463 83743 0.4310 +54463 84154 0.4580 +54463 84549 0.5440 +54463 84557 0.7490 +54463 84946 0.4320 +54463 116832 0.4640 +54463 134218 0.5680 +54463 139341 0.4680 +54463 140801 0.5790 +54463 200916 0.4970 +54463 285855 0.5290 +54463 387129 0.4370 +54463 643246 0.6410 +54463 100505478 0.4180 +54463 100526842 0.5180 +54464 54487 0.6660 +54464 54512 0.8580 +54464 54542 0.6560 +54464 54625 0.4190 +54464 54915 0.4200 +54464 54952 0.7600 +54464 55173 0.4740 +54464 55181 0.5620 +54464 55270 0.4210 +54464 55345 0.4280 +54464 55601 0.5430 +54464 55629 0.5790 +54464 55651 0.4200 +54464 55796 0.5050 +54464 55802 0.9990 +54464 56006 0.6320 +54464 56478 0.6640 +54464 56829 0.6130 +54464 56903 0.6120 +54464 56915 0.8090 +54464 57062 0.4250 +54464 57187 0.4050 +54464 57472 0.6790 +54464 57510 0.5950 +54464 57819 0.9780 +54464 64135 0.4220 +54464 64282 0.5420 +54464 64506 0.7780 +54464 64848 0.9890 +54464 64852 0.5280 +54464 64895 0.6800 +54464 64960 0.4080 +54464 64963 0.4250 +54464 64969 0.4310 +54464 65109 0.8190 +54464 65110 0.8310 +54464 79577 0.5040 +54464 79590 0.4200 +54464 79670 0.5550 +54464 80153 0.9990 +54464 80336 0.4570 +54464 80349 0.7570 +54464 80746 0.4210 +54464 83939 0.6670 +54464 84186 0.6810 +54464 84524 0.4690 +54464 84955 0.6270 +54464 85441 0.4400 +54464 87178 0.5700 +54464 90459 0.8910 +54464 90507 0.5320 +54464 90850 0.6030 +54464 91746 0.4900 +54464 114803 0.5990 +54464 114987 0.8010 +54464 115752 0.7280 +54464 116832 0.4290 +54464 118460 0.8440 +54464 122402 0.4030 +54464 128240 0.4910 +54464 129563 0.8150 +54464 131405 0.5030 +54464 131870 0.6990 +54464 132430 0.4640 +54464 140801 0.4350 +54464 140886 0.4190 +54464 142940 0.7710 +54464 143689 0.4860 +54464 149041 0.6400 +54464 149986 0.5630 +54464 154197 0.4600 +54464 167153 0.4840 +54464 167227 0.9990 +54464 192669 0.5320 +54464 192670 0.4490 +54464 196513 0.9930 +54464 197131 0.5120 +54464 197135 0.9980 +54464 201626 0.4110 +54464 219988 0.9990 +54464 246175 0.5600 +54464 253314 0.4690 +54464 255967 0.4090 +54464 284071 0.5270 +54464 284325 0.8840 +54464 317649 0.4590 +54464 340529 0.4210 +54464 347487 0.4310 +54464 347744 0.7580 +54464 374887 0.4830 +54464 375056 0.4820 +54464 390916 0.4880 +54464 100529239 0.4670 +54465 54962 0.4870 +54465 55159 0.4630 +54465 55237 0.4190 +54465 56655 0.5120 +54465 56902 0.4390 +54465 57697 0.6110 +54465 63967 0.4740 +54465 64087 0.5500 +54465 64745 0.4480 +54465 64969 0.4950 +54465 79728 0.4460 +54465 79783 0.4460 +54465 79830 0.5190 +54465 79991 0.6270 +54465 80010 0.5300 +54465 80184 0.4140 +54465 81037 0.4390 +54465 83990 0.4730 +54465 84083 0.4450 +54465 84126 0.9130 +54465 84268 0.5240 +54465 84464 0.5320 +54465 85378 0.4380 +54465 90381 0.4360 +54465 91801 0.4850 +54465 114791 0.4650 +54465 116028 0.4730 +54465 116143 0.6600 +54465 123283 0.4160 +54465 132949 0.4820 +54465 151246 0.5170 +54465 158358 0.4810 +54465 163702 0.4370 +54465 201973 0.4670 +54465 554251 0.5990 +54465 643641 0.4120 +54465 100131390 0.4490 +54466 58529 0.4760 +54466 144097 0.4460 +54467 54476 0.5750 +54467 57148 0.4570 +54467 57600 0.5370 +54467 57798 0.8160 +54467 79444 0.4510 +54467 84060 0.4880 +54467 143884 0.5520 +54467 401387 0.4320 +54467 643836 0.4880 +54468 54617 0.5520 +54468 55004 0.7050 +54468 55846 0.8250 +54468 57521 0.6700 +54468 57600 0.5210 +54468 57786 0.5260 +54468 58528 0.7960 +54468 60561 0.4190 +54468 64121 0.9980 +54468 64223 0.6050 +54468 64328 0.6360 +54468 79631 0.4210 +54468 79726 0.9990 +54468 79930 0.4260 +54468 80067 0.4490 +54468 81929 0.9990 +54468 83667 0.9900 +54468 84219 0.9990 +54468 85021 0.4410 +54468 90423 0.5460 +54468 91452 0.4570 +54468 96459 0.4950 +54468 127124 0.4990 +54468 143686 0.6230 +54468 144577 0.8290 +54468 153129 0.6120 +54468 154743 0.4070 +54468 155066 0.4990 +54468 201163 0.6270 +54468 220441 0.4080 +54468 245972 0.5160 +54468 245973 0.5050 +54468 389541 0.7640 +54468 652968 0.9920 +54468 729438 0.8970 +54469 54832 0.4920 +54469 54901 0.6150 +54469 55573 0.4610 +54469 55670 0.6430 +54469 55787 0.6240 +54469 55905 0.4680 +54469 56061 0.5050 +54469 56999 0.4020 +54469 57118 0.4800 +54469 57542 0.4520 +54469 60685 0.5360 +54469 79068 0.5500 +54469 79752 0.4770 +54469 80320 0.4810 +54469 83795 0.4660 +54469 84327 0.7060 +54469 94241 0.4420 +54469 116985 0.5430 +54469 136259 0.5970 +54469 200558 0.4560 +54469 221895 0.4300 +54469 392636 0.4370 +54470 85012 0.4240 +54470 219482 0.4750 +54470 388701 0.5070 +54470 414157 0.5740 +54471 54708 0.5940 +54471 55288 0.4850 +54471 55486 0.4430 +54471 55669 0.8480 +54471 56947 0.9660 +54471 64423 0.6360 +54471 65018 0.5330 +54471 78997 0.4040 +54471 79594 0.4410 +54471 93190 0.4290 +54471 115209 0.6180 +54471 115416 0.4150 +54471 115825 0.4350 +54471 125170 0.5870 +54471 127003 0.4370 +54471 130916 0.4770 +54471 137964 0.4370 +54471 138255 0.4290 +54471 139341 0.5070 +54471 151651 0.4290 +54471 192111 0.4680 +54471 197335 0.7340 +54471 257177 0.4290 +54471 388701 0.4290 +54471 100128569 0.4290 +54471 100287932 0.4440 +54471 127898561 0.4310 +54472 54959 0.6180 +54472 57161 0.5830 +54472 57162 0.6890 +54472 59307 0.7490 +54472 64127 0.4280 +54472 65018 0.4770 +54472 79102 0.6860 +54472 79991 0.4350 +54472 84528 0.6940 +54472 84557 0.6490 +54472 91039 0.4320 +54472 114609 0.9170 +54472 146691 0.9180 +54472 148022 0.5200 +54472 162540 0.6540 +54472 246330 0.6030 +54472 353376 0.4670 +54472 727897 0.6360 +54472 729238 0.4520 +54472 100302736 0.4770 +54474 54860 0.6020 +54474 55107 0.4480 +54474 56667 0.4730 +54474 57167 0.4730 +54474 79095 0.5980 +54474 83998 0.6800 +54474 125115 0.4690 +54474 140807 0.4530 +54474 144501 0.5100 +54474 147183 0.4200 +54474 162605 0.4210 +54474 192666 0.5730 +54474 342574 0.4730 +54474 353288 0.4270 +54474 390792 0.4260 +54474 644844 0.5100 +54474 653808 0.5650 +54475 54552 0.9530 +54475 54555 0.7270 +54475 54606 0.7450 +54475 54663 0.7400 +54475 54881 0.9010 +54475 55003 0.4380 +54475 55027 0.4420 +54475 55127 0.5710 +54475 55131 0.5040 +54475 55140 0.5690 +54475 55153 0.9870 +54475 55170 0.4180 +54475 55226 0.8580 +54475 55272 0.5750 +54475 55299 0.6610 +54475 55341 0.6740 +54475 55591 0.4620 +54475 55622 0.7330 +54475 55646 0.4470 +54475 55651 0.6870 +54475 55695 0.6590 +54475 55703 0.4510 +54475 55720 0.7510 +54475 55759 0.8590 +54475 55813 0.4060 +54475 56341 0.4110 +54475 56342 0.4540 +54475 56934 0.4110 +54475 56937 0.4060 +54475 57062 0.4300 +54475 57109 0.4270 +54475 57418 0.9860 +54475 57696 0.5710 +54475 57711 0.4680 +54475 58477 0.4360 +54475 60487 0.5910 +54475 60625 0.4240 +54475 64118 0.4320 +54475 64318 0.5420 +54475 64425 0.7620 +54475 64434 0.4770 +54475 64794 0.5740 +54475 65083 0.6850 +54475 79039 0.5560 +54475 79050 0.8470 +54475 79159 0.5220 +54475 79730 0.4030 +54475 79954 0.6410 +54475 79979 0.4080 +54475 80764 0.4310 +54475 83743 0.8800 +54475 84128 0.6060 +54475 84135 0.6710 +54475 84154 0.9570 +54475 84172 0.7840 +54475 84273 0.5630 +54475 84365 0.8980 +54475 84549 0.4090 +54475 84916 0.6780 +54475 90441 0.4840 +54475 92170 0.4920 +54475 92856 0.5880 +54475 115708 0.4920 +54475 116832 0.4910 +54475 116966 0.6580 +54475 117246 0.6690 +54475 124454 0.6170 +54475 134864 0.4060 +54475 144108 0.4090 +54475 146212 0.4320 +54475 155368 0.4050 +54475 221078 0.7110 +54475 285855 0.4690 +54475 345630 0.4420 +54475 377677 0.4110 +54475 387129 0.4580 +54475 100505478 0.4310 +54476 54726 0.6980 +54476 54816 0.4510 +54476 55100 0.4670 +54476 55843 0.4470 +54476 57154 0.4780 +54476 57506 0.4830 +54476 58509 0.4020 +54476 64135 0.4350 +54476 79837 0.4550 +54476 80028 0.4770 +54476 84282 0.4510 +54476 84722 0.4210 +54476 89122 0.4590 +54476 89910 0.4530 +54476 114609 0.6580 +54476 127544 0.4100 +54476 148022 0.6210 +54476 255488 0.4680 +54477 54737 0.5200 +54477 55860 0.5550 +54477 57664 0.5310 +54477 84435 0.4340 +54477 92714 0.4150 +54477 116254 0.4200 +54477 121536 0.4830 +54477 729025 0.4550 +54478 54821 0.5370 +54478 55143 0.6790 +54478 55165 0.6850 +54478 55215 0.4060 +54478 55247 0.4130 +54478 55355 0.7100 +54478 55388 0.4440 +54478 55632 0.4190 +54478 55635 0.6120 +54478 55723 0.4200 +54478 55839 0.4540 +54478 56992 0.5680 +54478 64151 0.6690 +54478 79019 0.5300 +54478 79075 0.5430 +54478 79682 0.4320 +54478 79733 0.4040 +54478 79801 0.5080 +54478 80341 0.4270 +54478 81610 0.5100 +54478 81611 0.4360 +54478 83461 0.8340 +54478 83540 0.6980 +54478 83879 0.4570 +54478 84722 0.6420 +54478 89958 0.4380 +54478 90417 0.4380 +54478 113130 0.6910 +54478 150468 0.5710 +54478 151648 0.4330 +54478 157313 0.6290 +54478 157570 0.5360 +54478 166979 0.4030 +54478 220134 0.4160 +54478 221150 0.5040 +54478 259266 0.6300 +54478 283431 0.5900 +54480 55454 0.9360 +54480 55501 0.5450 +54480 55790 0.9330 +54480 56548 0.4390 +54480 63827 0.5050 +54480 64131 0.5060 +54480 64132 0.4460 +54480 64174 0.4540 +54480 79586 0.8940 +54480 80745 0.4130 +54480 92126 0.4460 +54480 113189 0.5220 +54480 126792 0.5590 +54480 166012 0.5980 +54480 285016 0.4610 +54480 285203 0.4140 +54480 337876 0.8470 +54482 54931 0.5170 +54482 55006 0.4200 +54482 55119 0.4220 +54482 55178 0.4310 +54482 55322 0.5790 +54482 55776 0.5770 +54482 55783 0.5830 +54482 55916 0.4130 +54482 56339 0.4350 +54482 57109 0.4070 +54482 57396 0.4130 +54482 57604 0.5170 +54482 57696 0.4510 +54482 60314 0.4160 +54482 60487 0.6570 +54482 64318 0.4360 +54482 81543 0.4150 +54482 81627 0.4890 +54482 115708 0.5650 +54482 132949 0.4960 +54482 151613 0.4040 +54482 152992 0.5970 +54482 154007 0.4500 +54482 196074 0.4860 +54482 221078 0.4450 +54482 257160 0.4230 +54487 54512 0.5140 +54487 54584 0.8860 +54487 54890 0.4560 +54487 54913 0.7200 +54487 54915 0.4310 +54487 54931 0.5680 +54487 55285 0.4260 +54487 56339 0.9850 +54487 57510 0.9360 +54487 57721 0.9890 +54487 60561 0.5600 +54487 64506 0.5010 +54487 64848 0.4670 +54487 64859 0.4160 +54487 64976 0.4270 +54487 65080 0.4880 +54487 65083 0.4920 +54487 79066 0.4020 +54487 79068 0.4180 +54487 79670 0.4840 +54487 79727 0.7160 +54487 79897 0.7200 +54487 80746 0.5430 +54487 81887 0.4240 +54487 83641 0.4330 +54487 84881 0.4270 +54487 91746 0.4640 +54487 113251 0.4380 +54487 129563 0.4800 +54487 138716 0.5400 +54487 143689 0.6470 +54487 192669 0.8910 +54487 192670 0.9020 +54487 253943 0.4260 +54487 283989 0.5600 +54487 389421 0.6390 +54490 54768 0.4960 +54490 55586 0.9010 +54490 55672 0.4930 +54490 56603 0.6870 +54490 79644 0.6810 +54490 114799 0.4410 +54490 135152 0.8150 +54490 157570 0.4410 +54490 220074 0.8130 +54490 284541 0.7090 +54490 340665 0.6860 +54490 374875 0.6810 +54490 401667 0.4160 +54490 442038 0.6380 +54490 100861540 0.7600 +54491 54726 0.4930 +54491 54764 0.4460 +54491 55072 0.4370 +54491 55593 0.4770 +54491 57156 0.5200 +54491 57415 0.4590 +54491 78990 0.4340 +54491 79868 0.4300 +54491 139562 0.4950 +54491 161725 0.4560 +54491 220213 0.4500 +54492 54567 0.5700 +54492 55040 0.4660 +54492 57534 0.4140 +54492 64431 0.4860 +54492 83698 0.4080 +54492 84937 0.4410 +54492 131583 0.4110 +54492 142678 0.7610 +54492 150350 0.4210 +54492 340359 0.5200 +54492 728763 0.4080 +54494 56981 0.4450 +54494 84075 0.4180 +54494 84645 0.4320 +54494 84692 0.4480 +54494 85449 0.4960 +54494 92999 0.5330 +54494 112611 0.5650 +54494 120400 0.4390 +54494 120406 0.4050 +54494 128229 0.4450 +54494 159013 0.4040 +54494 100288695 0.4160 +54495 56255 0.6750 +54495 79608 0.5750 +54495 79770 0.4690 +54495 81542 0.5790 +54495 83460 0.4550 +54495 92126 0.5550 +54495 94121 0.4080 +54495 121506 0.5680 +54495 135228 0.4050 +54495 155465 0.4490 +54495 204474 0.4050 +54495 259215 0.4520 +54495 110806297 0.4660 +54496 55170 0.4710 +54496 55352 0.4350 +54496 56341 0.6620 +54496 56950 0.4690 +54496 57037 0.6360 +54496 57154 0.4770 +54496 64754 0.6310 +54496 79084 0.8200 +54496 79676 0.4380 +54496 79723 0.4610 +54496 79918 0.4130 +54496 80204 0.4310 +54496 80854 0.4790 +54496 83732 0.4400 +54496 84444 0.4750 +54496 84787 0.4240 +54496 90826 0.4180 +54496 140690 0.8970 +54496 144233 0.4150 +54496 199745 0.5110 +54496 387893 0.4560 +54496 440093 0.4540 +54496 440686 0.4510 +54496 653604 0.6570 +54497 54621 0.4330 +54497 55681 0.4130 +54497 55761 0.5160 +54497 57148 0.4330 +54497 60684 0.6430 +54497 79990 0.4190 +54497 85027 0.4120 +54497 114987 0.4170 +54497 130340 0.4920 +54497 345757 0.4560 +54497 389396 0.4530 +54498 79814 0.5230 +54498 83475 0.4640 +54498 85413 0.4560 +54498 113451 0.5150 +54499 55133 0.6180 +54499 55191 0.4040 +54499 55425 0.4930 +54499 55831 0.8210 +54499 55969 0.7500 +54499 56926 0.9340 +54499 57003 0.9760 +54499 57645 0.5200 +54499 60312 0.6170 +54499 64778 0.5840 +54499 80063 0.4410 +54499 81790 0.4530 +54499 83460 0.5850 +54499 89853 0.4440 +54499 90488 0.4090 +54499 136371 0.4940 +54499 220202 0.6060 +54499 387263 0.4550 +54499 408050 0.4300 +54499 440699 0.4390 +54499 100527943 0.5230 +54502 54845 0.5600 +54502 55728 0.5220 +54502 79923 0.5100 +54502 80004 0.6490 +54502 80008 0.4670 +54502 91050 0.4160 +54502 135295 0.4370 +54502 192670 0.4320 +54502 201895 0.4660 +54502 219654 0.6700 +54502 284358 0.4060 +54502 348093 0.4110 +54503 55146 0.4730 +54503 55625 0.4460 +54503 64429 0.6990 +54503 79844 0.6380 +54503 80331 0.4800 +54503 81926 0.4530 +54503 84287 0.4500 +54503 158866 0.4300 +54503 246269 0.6480 +54503 253832 0.4410 +54503 254359 0.4810 +54503 283576 0.6860 +54503 340481 0.4900 +54503 386746 0.4740 +54503 653082 0.4900 +54504 55211 0.4060 +54504 55752 0.5150 +54504 64170 0.4090 +54504 64231 0.4430 +54504 64746 0.5880 +54504 83543 0.4900 +54504 84516 0.4500 +54504 84735 0.5130 +54504 84959 0.4240 +54504 112937 0.4720 +54504 257019 0.6700 +54504 337867 0.4820 +54505 54555 0.4820 +54505 54606 0.5950 +54505 54883 0.4090 +54505 54991 0.4640 +54505 55601 0.7150 +54505 55781 0.4040 +54505 55813 0.5060 +54505 57062 0.6540 +54505 57506 0.6620 +54505 57551 0.4030 +54505 57696 0.4770 +54505 57703 0.4250 +54505 64135 0.5860 +54505 64397 0.4890 +54505 64963 0.5990 +54505 65083 0.4020 +54505 79009 0.6100 +54505 79050 0.4150 +54505 79810 0.4500 +54505 81688 0.4640 +54505 83786 0.4170 +54505 83939 0.6390 +54505 84916 0.4170 +54505 85464 0.4010 +54505 92935 0.5220 +54505 132243 0.4430 +54505 140032 0.5990 +54505 144132 0.4520 +54505 259282 0.4250 +54505 728689 0.4780 +54507 55214 0.4770 +54507 55720 0.4120 +54507 84467 0.4310 +54507 84627 0.4060 +54507 145173 0.6170 +54509 55240 0.5570 +54509 55619 0.6370 +54509 55763 0.4540 +54509 55789 0.4580 +54509 55971 0.6190 +54509 56893 0.4210 +54509 56990 0.4770 +54509 57584 0.4790 +54509 64855 0.4970 +54509 65124 0.5970 +54509 65997 0.4420 +54509 80005 0.4690 +54509 80115 0.5940 +54509 80728 0.5960 +54509 81624 0.7950 +54509 81839 0.5800 +54509 84144 0.4840 +54509 85360 0.5540 +54509 94134 0.5500 +54509 134548 0.4890 +54509 139818 0.4270 +54509 144404 0.5620 +54509 171177 0.4110 +54509 445582 0.6280 +54510 56104 0.4260 +54510 116068 0.4570 +54510 205428 0.7640 +54511 55258 0.4050 +54511 55268 0.6800 +54511 55862 0.4910 +54511 55902 0.4190 +54511 56898 0.9400 +54511 56922 0.6690 +54511 57705 0.4400 +54511 64064 0.9680 +54511 64087 0.8480 +54511 65985 0.9430 +54511 79896 0.4050 +54511 81889 0.4590 +54511 84263 0.4620 +54511 84532 0.4080 +54511 84693 0.4330 +54511 124359 0.4720 +54511 132949 0.4730 +54511 137872 0.6760 +54511 151313 0.4590 +54511 245937 0.4130 +54511 253175 0.4720 +54511 389434 0.4230 +54512 54555 0.5900 +54512 55003 0.4190 +54512 55127 0.9110 +54512 55226 0.6480 +54512 55272 0.8180 +54512 55294 0.4630 +54512 55299 0.4860 +54512 55520 0.4580 +54512 55596 0.7990 +54512 55651 0.5350 +54512 55802 0.6470 +54512 55813 0.7620 +54512 56902 0.4860 +54512 56903 0.4520 +54512 56915 0.9990 +54512 57050 0.8690 +54512 57136 0.6050 +54512 57418 0.4190 +54512 57647 0.5620 +54512 57819 0.5270 +54512 60528 0.4900 +54512 64216 0.4720 +54512 64282 0.5430 +54512 64432 0.4490 +54512 64895 0.4520 +54512 64979 0.4030 +54512 65083 0.7600 +54512 65109 0.4900 +54512 65263 0.5160 +54512 65993 0.4920 +54512 79050 0.8260 +54512 79571 0.4830 +54512 79954 0.5710 +54512 80349 0.8270 +54512 81858 0.4110 +54512 81887 0.4240 +54512 84128 0.7570 +54512 84135 0.7480 +54512 84154 0.4710 +54512 84186 0.7000 +54512 84844 0.4170 +54512 84916 0.7810 +54512 85441 0.7240 +54512 87178 0.9820 +54512 88745 0.5210 +54512 90459 0.4590 +54512 92856 0.7980 +54512 113655 0.4090 +54512 115708 0.4190 +54512 115752 0.9990 +54512 118460 0.9990 +54512 124245 0.4160 +54512 128240 0.5560 +54512 129563 0.9700 +54512 167227 0.7280 +54512 196441 0.9560 +54512 340371 0.4130 +54512 340390 0.4060 +54512 345630 0.5220 +54514 54606 0.4080 +54514 54888 0.4880 +54514 54937 0.4770 +54514 55124 0.9390 +54514 55143 0.4920 +54514 55695 0.4440 +54514 55802 0.4100 +54514 56163 0.6180 +54514 56165 0.9300 +54514 57136 0.4860 +54514 57167 0.5250 +54514 57610 0.4590 +54514 57829 0.4260 +54514 60681 0.4080 +54514 63978 0.5770 +54514 64318 0.4160 +54514 64794 0.4080 +54514 64848 0.4230 +54514 66037 0.7910 +54514 79727 0.6020 +54514 79730 0.4620 +54514 79923 0.5040 +54514 80153 0.4420 +54514 80176 0.4250 +54514 83639 0.5150 +54514 84072 0.4560 +54514 84833 0.4430 +54514 84944 0.9250 +54514 87178 0.4860 +54514 91646 0.8960 +54514 92369 0.4250 +54514 93953 0.4190 +54514 113802 0.6020 +54514 117178 0.4620 +54514 122402 0.8270 +54514 132612 0.4120 +54514 133396 0.7570 +54514 135935 0.5490 +54514 136991 0.8870 +54514 143689 0.7920 +54514 161931 0.4170 +54514 163351 0.4140 +54514 163589 0.5380 +54514 166647 0.5870 +54514 197135 0.4330 +54514 201164 0.4430 +54514 221400 0.5500 +54514 254528 0.4420 +54514 284071 0.4020 +54514 339345 0.6330 +54514 342977 0.6970 +54514 344018 0.5270 +54514 346673 0.7140 +54514 359787 0.6290 +54514 373863 0.5140 +54514 389421 0.5350 +54514 402381 0.5610 +54514 646480 0.4200 +54514 100526761 0.4550 +54516 54534 0.6460 +54516 54948 0.6780 +54516 54998 0.5260 +54516 55005 0.5350 +54516 55037 0.5910 +54516 55052 0.8640 +54516 55157 0.4250 +54516 55173 0.6460 +54516 55272 0.5360 +54516 55316 0.6220 +54516 55471 0.5390 +54516 56945 0.6780 +54516 57038 0.5170 +54516 57129 0.7530 +54516 57136 0.4530 +54516 57149 0.5700 +54516 57505 0.4430 +54516 60488 0.5580 +54516 60558 0.6800 +54516 63875 0.7190 +54516 63931 0.5800 +54516 64374 0.4830 +54516 64432 0.5590 +54516 64928 0.5080 +54516 64949 0.5310 +54516 64951 0.5390 +54516 64960 0.5770 +54516 64963 0.7420 +54516 64965 0.7290 +54516 64968 0.7270 +54516 64969 0.6120 +54516 64975 0.6150 +54516 64976 0.5810 +54516 64979 0.6760 +54516 64981 0.5180 +54516 64983 0.6790 +54516 65003 0.4300 +54516 65005 0.7070 +54516 65008 0.5820 +54516 65080 0.6560 +54516 65993 0.6400 +54516 78988 0.5070 +54516 79133 0.6660 +54516 79590 0.5860 +54516 80129 0.4710 +54516 84311 0.6580 +54516 84340 0.8520 +54516 84545 0.5350 +54516 85476 0.7310 +54516 85865 0.4630 +54516 87178 0.5950 +54516 90480 0.6230 +54516 91574 0.7240 +54516 92399 0.8780 +54516 93974 0.4430 +54516 115416 0.5310 +54516 118487 0.6350 +54516 122704 0.6010 +54516 124454 0.4670 +54516 124995 0.5510 +54516 126402 0.5650 +54516 128308 0.5420 +54516 137682 0.4150 +54516 140801 0.4250 +54516 219402 0.6990 +54516 219927 0.6750 +54516 285855 0.4230 +54516 347487 0.4920 +54516 374659 0.4400 +54516 387129 0.4020 +54516 751071 0.4510 +54516 100287482 0.4920 +54516 100505478 0.4020 +54516 100526842 0.5020 +54517 54552 0.6470 +54517 54606 0.5130 +54517 54663 0.4820 +54517 54802 0.6130 +54517 54888 0.8740 +54517 54920 0.5670 +54517 54931 0.4890 +54517 55003 0.4260 +54517 55006 0.5070 +54517 55127 0.4740 +54517 55131 0.8000 +54517 55140 0.4350 +54517 55153 0.6080 +54517 55164 0.4130 +54517 55178 0.8140 +54517 55226 0.5850 +54517 55299 0.7130 +54517 55341 0.6880 +54517 55505 0.6730 +54517 55621 0.6630 +54517 55623 0.6510 +54517 55651 0.7370 +54517 55695 0.5580 +54517 55720 0.4900 +54517 55759 0.5340 +54517 56339 0.4280 +54517 56931 0.5440 +54517 57062 0.4970 +54517 57129 0.7930 +54517 57570 0.5610 +54517 57696 0.4990 +54517 57721 0.4370 +54517 60487 0.4730 +54517 60528 0.5880 +54517 60561 0.7320 +54517 63875 0.8080 +54517 63899 0.5740 +54517 64118 0.5670 +54517 64318 0.8440 +54517 64425 0.4230 +54517 64434 0.4050 +54517 64794 0.4470 +54517 64969 0.4480 +54517 65003 0.8020 +54517 79039 0.5310 +54517 79050 0.5130 +54517 79066 0.4060 +54517 79180 0.4030 +54517 79590 0.7990 +54517 79693 0.4180 +54517 79728 0.6130 +54517 79730 0.4630 +54517 79922 0.5850 +54517 79954 0.5000 +54517 79979 0.4450 +54517 80018 0.4280 +54517 80135 0.5110 +54517 80324 0.9200 +54517 81034 0.4150 +54517 81627 0.5180 +54517 83480 0.8880 +54517 83743 0.5640 +54517 84128 0.7140 +54517 84154 0.7340 +54517 84172 0.8010 +54517 84273 0.4810 +54517 84365 0.8120 +54517 84545 0.7990 +54517 84549 0.8330 +54517 84705 0.8190 +54517 84881 0.8520 +54517 84916 0.8310 +54517 84946 0.4170 +54517 90353 0.4640 +54517 91801 0.4360 +54517 92170 0.8080 +54517 92856 0.5010 +54517 93587 0.6340 +54517 113000 0.8170 +54517 113179 0.4480 +54517 115294 0.4550 +54517 115416 0.7970 +54517 115708 0.4890 +54517 117246 0.6970 +54517 126789 0.6850 +54517 127253 0.5840 +54517 142940 0.9010 +54517 150962 0.8250 +54517 158234 0.4510 +54517 219927 0.8010 +54517 221078 0.6620 +54517 221830 0.4170 +54517 285367 0.8490 +54517 339175 0.4110 +54517 387338 0.5440 +54517 389320 0.4040 +54518 54756 0.4990 +54518 55740 0.9490 +54518 57475 0.6270 +54518 57495 0.4150 +54518 57569 0.4760 +54518 59274 0.6270 +54518 64098 0.4870 +54518 81704 0.4090 +54518 83593 0.7540 +54518 83660 0.9990 +54518 83706 0.9550 +54518 84106 0.4240 +54518 84661 0.4470 +54518 90417 0.5780 +54518 116984 0.4330 +54518 116985 0.4450 +54518 197335 0.4450 +54518 345456 0.9950 +54518 375189 0.9950 +54520 54939 0.9170 +54520 54951 0.9210 +54520 55275 0.4110 +54520 55610 0.4560 +54520 55737 0.6730 +54520 57020 0.9950 +54520 81609 0.5260 +54520 84643 0.5920 +54520 93233 0.4300 +54520 124997 0.4480 +54520 149951 0.8560 +54520 150684 0.9880 +54520 154043 0.5930 +54520 155435 0.4430 +54520 170622 0.9630 +54520 253725 0.7960 +54520 387680 0.8480 +54520 404636 0.9120 +54520 441933 0.6080 +54520 100287171 0.7290 +54520 100532731 0.4650 +54521 54934 0.4350 +54521 55972 0.5500 +54521 56180 0.4180 +54521 84440 0.4530 +54522 54780 0.4660 +54522 55251 0.4710 +54522 57178 0.4370 +54522 57505 0.4430 +54522 79943 0.4810 +54522 84893 0.6390 +54522 84991 0.4080 +54522 118932 0.4050 +54522 129138 0.4620 +54522 136319 0.4360 +54522 151903 0.4010 +54522 342850 0.4280 +54522 441459 0.4240 +54529 55157 0.4060 +54529 55278 0.5460 +54529 55617 0.4900 +54529 55703 0.4160 +54529 55781 0.6320 +54529 55892 0.4740 +54529 64343 0.4370 +54529 79009 0.4500 +54529 79073 0.7600 +54529 79871 0.4580 +54529 80150 0.4790 +54529 120534 0.4070 +54529 124808 0.4420 +54529 137362 0.5010 +54529 158584 0.5240 +54529 283985 0.5830 +54529 100129250 0.7810 +54529 110599588 0.7780 +54531 65117 0.4970 +54531 79696 0.4390 +54531 79813 0.4640 +54531 79901 0.6840 +54531 80174 0.4740 +54531 81099 0.4470 +54531 83746 0.7050 +54531 84108 0.6500 +54531 84146 0.4690 +54531 91300 0.4500 +54531 93643 0.4460 +54531 116987 0.4930 +54531 390155 0.4490 +54531 653656 0.5070 +54532 54726 0.4310 +54532 54764 0.4210 +54532 55331 0.4030 +54532 57558 0.4560 +54532 57602 0.4050 +54532 57663 0.4190 +54532 64854 0.4340 +54532 79791 0.4020 +54532 83844 0.4170 +54532 84101 0.4310 +54532 84196 0.5040 +54532 84640 0.4690 +54532 85015 0.4920 +54532 126119 0.4320 +54532 158880 0.4070 +54532 219333 0.4080 +54532 373509 0.5660 +54534 54886 0.5620 +54534 54931 0.4400 +54534 54948 0.9700 +54534 54998 0.8270 +54534 55037 0.8750 +54534 55052 0.9790 +54534 55168 0.9780 +54534 55173 0.9060 +54534 55178 0.8890 +54534 55720 0.4280 +54534 55794 0.8160 +54534 55863 0.4110 +54534 55967 0.5620 +54534 56945 0.9200 +54534 57002 0.4260 +54534 57129 0.9890 +54534 57415 0.4210 +54534 60488 0.8850 +54534 63875 0.9800 +54534 63931 0.9330 +54534 64432 0.8660 +54534 64928 0.9230 +54534 64949 0.8530 +54534 64951 0.8570 +54534 64960 0.8970 +54534 64963 0.8700 +54534 64965 0.9060 +54534 64968 0.9140 +54534 64969 0.8900 +54534 64975 0.9660 +54534 64976 0.9780 +54534 64978 0.9700 +54534 64979 0.8970 +54534 64981 0.9620 +54534 64983 0.9830 +54534 65003 0.9400 +54534 65005 0.9760 +54534 65008 0.9730 +54534 65080 0.9920 +54534 65993 0.8710 +54534 78988 0.9840 +54534 79590 0.9640 +54534 80775 0.4090 +54534 84274 0.4970 +54534 84311 0.9710 +54534 84340 0.8190 +54534 84545 0.9810 +54534 84816 0.4360 +54534 84955 0.4370 +54534 85476 0.8270 +54534 85865 0.8680 +54534 90480 0.9770 +54534 91574 0.8380 +54534 92170 0.8220 +54534 92399 0.8630 +54534 115416 0.9280 +54534 116540 0.9820 +54534 116541 0.8900 +54534 118487 0.9110 +54534 122704 0.9370 +54534 124995 0.9650 +54534 128308 0.9650 +54534 130916 0.8210 +54534 219402 0.6230 +54534 219927 0.9730 +54534 387338 0.8120 +54534 493753 0.4450 +54534 127898561 0.8110 +54535 54585 0.4490 +54535 54934 0.4280 +54535 55721 0.7770 +54535 57511 0.4220 +54535 80352 0.4910 +54535 84062 0.4130 +54535 84970 0.5350 +54535 84991 0.4220 +54535 85293 0.4560 +54535 91039 0.4470 +54535 126295 0.4430 +54535 148109 0.5600 +54535 170679 0.6450 +54535 170680 0.7780 +54535 220082 0.5450 +54535 220134 0.5000 +54535 283238 0.4670 +54535 319101 0.4440 +54535 390883 0.5350 +54535 394263 0.4370 +54535 100507679 0.5340 +54536 54567 0.6580 +54536 55275 0.7850 +54536 55763 0.9990 +54536 55770 0.9990 +54536 55930 0.4980 +54536 57511 0.4770 +54536 58485 0.4510 +54536 60412 0.9990 +54536 79058 0.5180 +54536 83548 0.5100 +54536 91828 0.7900 +54536 91949 0.4320 +54536 92359 0.4440 +54536 116841 0.4250 +54536 117177 0.9610 +54536 118813 0.6690 +54536 126208 0.4600 +54536 134957 0.4950 +54536 149371 0.9990 +54536 283849 0.8790 +54536 644145 0.8660 +54537 55183 0.6160 +54537 55857 0.4990 +54537 79728 0.4290 +54537 79991 0.4130 +54537 80006 0.4230 +54537 80169 0.6610 +54537 140680 0.6910 +54537 149840 0.9980 +54537 152519 0.5100 +54537 165918 0.4400 +54537 254263 0.4160 +54537 286257 0.5710 +54537 378949 0.4180 +54537 100134934 0.4920 +54537 112441434 0.9990 +54538 54567 0.5180 +54538 54922 0.5110 +54538 59277 0.5670 +54538 60506 0.5270 +54538 64123 0.4940 +54538 64221 0.4130 +54538 79812 0.7360 +54538 80728 0.6140 +54538 83483 0.4410 +54538 83595 0.4690 +54538 83878 0.4670 +54538 90952 0.5600 +54538 114990 0.5520 +54538 140706 0.4920 +54538 161198 0.6910 +54538 161742 0.4600 +54538 196883 0.4800 +54538 219699 0.9090 +54538 221395 0.5680 +54538 641700 0.5770 +54539 54968 0.6010 +54539 55028 0.4810 +54539 55101 0.5610 +54539 55471 0.5910 +54539 55572 0.8940 +54539 55744 0.5410 +54539 55863 0.8830 +54539 55967 0.9990 +54539 56901 0.6630 +54539 56964 0.5400 +54539 57379 0.5620 +54539 57407 0.6020 +54539 60489 0.5510 +54539 65005 0.4160 +54539 79002 0.4910 +54539 79133 0.6230 +54539 79598 0.6290 +54539 79728 0.9670 +54539 80195 0.5880 +54539 81542 0.5160 +54539 84277 0.7410 +54539 84336 0.4050 +54539 84701 0.8150 +54539 84833 0.4940 +54539 84886 0.7050 +54539 84939 0.8010 +54539 84987 0.5400 +54539 90353 0.6900 +54539 91689 0.6130 +54539 91942 0.8950 +54539 125965 0.4600 +54539 125988 0.4430 +54539 126328 0.9990 +54539 137682 0.6880 +54539 139221 0.8320 +54539 139322 0.5020 +54539 140564 0.5440 +54539 140823 0.6840 +54539 164668 0.5440 +54539 170712 0.4480 +54539 192286 0.4380 +54539 200315 0.5440 +54539 200316 0.5480 +54539 267020 0.5620 +54539 283459 0.4800 +54539 348801 0.4360 +54539 374291 0.9990 +54539 388753 0.5310 +54539 440567 0.5220 +54539 728317 0.8010 +54539 100532726 0.9680 +54540 54732 0.4460 +54540 56905 0.4050 +54540 80758 0.4980 +54540 201255 0.4100 +54540 203111 0.4480 +54541 57521 0.8400 +54541 57761 0.5460 +54541 58528 0.6530 +54541 64121 0.6570 +54541 64223 0.6680 +54541 64798 0.5710 +54541 79094 0.4900 +54541 79109 0.4130 +54541 81631 0.4050 +54541 83667 0.6160 +54541 84335 0.5030 +54541 84676 0.4360 +54541 89848 0.5130 +54541 90427 0.5050 +54541 114907 0.5470 +54541 120103 0.4700 +54541 206358 0.4950 +54541 253260 0.6760 +54542 54726 0.6160 +54542 54813 0.4050 +54542 54915 0.5750 +54542 55023 0.5440 +54542 55571 0.5620 +54542 56478 0.6210 +54542 56829 0.5240 +54542 56987 0.4100 +54542 57532 0.7750 +54542 80149 0.6800 +54542 84807 0.4180 +54542 85364 0.5140 +54542 85463 0.5030 +54542 89857 0.7900 +54542 114803 0.6930 +54542 149041 0.8190 +54542 197131 0.5770 +54542 219988 0.6250 +54542 246175 0.5320 +54542 253943 0.5070 +54542 255967 0.4260 +54542 340152 0.5100 +54542 340554 0.5500 +54542 345651 0.4410 +54543 54927 0.7750 +54543 55173 0.5540 +54543 55288 0.4790 +54543 55486 0.5910 +54543 55505 0.7560 +54543 55669 0.8080 +54543 55735 0.7470 +54543 55967 0.5660 +54543 55975 0.4210 +54543 56993 0.9990 +54543 64432 0.4900 +54543 64951 0.4540 +54543 65018 0.9640 +54543 79135 0.7830 +54543 81892 0.7450 +54543 83443 0.4150 +54543 84134 0.9680 +54543 84274 0.4640 +54543 84303 0.7640 +54543 84833 0.4880 +54543 89941 0.4010 +54543 90580 0.4730 +54543 92609 0.8380 +54543 115209 0.4320 +54543 116832 0.5540 +54543 118980 0.4270 +54543 125988 0.7900 +54543 131118 0.7310 +54543 131474 0.5770 +54543 139322 0.7810 +54543 140823 0.7010 +54543 150678 0.4060 +54543 170622 0.4180 +54543 267020 0.4020 +54543 283514 0.6330 +54543 345778 0.8690 +54543 387990 0.8080 +54543 401505 0.9990 +54543 440574 0.7690 +54543 493753 0.6210 +54543 100188893 0.9990 +54543 100287932 0.5110 +54544 57152 0.4380 +54544 80157 0.4400 +54544 83755 0.5710 +54544 84518 0.6010 +54544 84648 0.8340 +54544 84651 0.4280 +54544 85289 0.5910 +54544 85291 0.6070 +54544 149018 0.4740 +54544 149708 0.4510 +54544 196374 0.4440 +54544 338324 0.6460 +54544 339398 0.4390 +54544 353133 0.4030 +54544 353137 0.4720 +54544 353140 0.4450 +54544 353145 0.6470 +54544 374897 0.6230 +54544 388533 0.6380 +54544 448834 0.6760 +54544 448835 0.4600 +54544 574414 0.4950 +54544 643161 0.5600 +54544 100129271 0.6220 +54544 110806278 0.4160 +54545 54893 0.4320 +54545 55666 0.4990 +54545 64419 0.5070 +54545 136332 0.4950 +54545 196483 0.5240 +54545 342850 0.5980 +54545 387804 0.4200 +54546 55765 0.4080 +54546 56244 0.4100 +54546 57484 0.4540 +54546 64170 0.5320 +54546 83667 0.4420 +54546 136306 0.4490 +54546 138065 0.6280 +54546 143879 0.4290 +54546 148066 0.4570 +54546 149233 0.4320 +54546 221687 0.5750 +54546 283130 0.4150 +54546 285533 0.5030 +54546 347475 0.4230 +54549 57453 0.6870 +54549 57480 0.4220 +54549 81575 0.4290 +54549 90576 0.4180 +54549 93107 0.4010 +54549 222553 0.4450 +54549 101929926 0.5420 +54550 57030 0.4720 +54550 63941 0.8090 +54550 64168 0.7920 +54550 84708 0.4650 +54550 140689 0.4760 +54550 146167 0.5660 +54550 205860 0.5040 +54550 407738 0.5440 +54551 54780 0.5230 +54551 55737 0.6760 +54551 57194 0.8560 +54551 63893 0.5370 +54551 79677 0.4920 +54551 81614 0.5830 +54551 84108 0.5510 +54551 84332 0.4290 +54551 114791 0.6250 +54551 123606 0.5960 +54551 158511 0.7260 +54551 197370 0.5590 +54551 266743 0.6670 +54551 266812 0.5420 +54551 286053 0.5110 +54551 353500 0.5480 +54551 493861 0.4420 +54551 100287171 0.5780 +54552 54555 0.6120 +54552 54606 0.8250 +54552 54663 0.9290 +54552 54865 0.4440 +54552 54881 0.6600 +54552 54888 0.7460 +54552 54984 0.6740 +54552 55003 0.6690 +54552 55006 0.4030 +54552 55127 0.6860 +54552 55131 0.8540 +54552 55135 0.8140 +54552 55140 0.4330 +54552 55153 0.9780 +54552 55170 0.4300 +54552 55178 0.4710 +54552 55226 0.9660 +54552 55272 0.5150 +54552 55299 0.9660 +54552 55319 0.4120 +54552 55341 0.8230 +54552 55346 0.4320 +54552 55505 0.8070 +54552 55622 0.5550 +54552 55646 0.6590 +54552 55651 0.9310 +54552 55695 0.5100 +54552 55703 0.6460 +54552 55720 0.8950 +54552 55759 0.9590 +54552 55760 0.6530 +54552 55781 0.5950 +54552 55794 0.6740 +54552 55813 0.7050 +54552 56341 0.4320 +54552 56342 0.6340 +54552 56474 0.4760 +54552 56902 0.4350 +54552 56919 0.4340 +54552 56937 0.4280 +54552 57050 0.8480 +54552 57062 0.6840 +54552 57129 0.5550 +54552 57404 0.4290 +54552 57418 0.8130 +54552 57647 0.4250 +54552 57696 0.8740 +54552 60487 0.5610 +54552 63875 0.5280 +54552 63899 0.5950 +54552 63929 0.4150 +54552 64118 0.6330 +54552 64216 0.6180 +54552 64318 0.9570 +54552 64425 0.7250 +54552 64434 0.4520 +54552 64794 0.5850 +54552 65083 0.7710 +54552 65095 0.5850 +54552 79009 0.4910 +54552 79039 0.9100 +54552 79050 0.7370 +54552 79137 0.5090 +54552 79159 0.6490 +54552 79590 0.4650 +54552 79707 0.4470 +54552 79711 0.6990 +54552 79728 0.4690 +54552 79730 0.4960 +54552 79922 0.4520 +54552 79954 0.7140 +54552 79979 0.6340 +54552 80135 0.9650 +54552 83448 0.5850 +54552 83475 0.4700 +54552 83479 0.4280 +54552 83480 0.4040 +54552 83743 0.8530 +54552 84128 0.7610 +54552 84135 0.4160 +54552 84154 0.9770 +54552 84172 0.8450 +54552 84240 0.4040 +54552 84294 0.6240 +54552 84365 0.9830 +54552 84545 0.4960 +54552 84549 0.9540 +54552 84705 0.5640 +54552 84916 0.8360 +54552 84946 0.8670 +54552 90121 0.6860 +54552 90268 0.4100 +54552 90441 0.5590 +54552 90826 0.4210 +54552 91646 0.4230 +54552 91875 0.4110 +54552 92856 0.8100 +54552 115416 0.6390 +54552 115708 0.5850 +54552 116832 0.6280 +54552 116966 0.7030 +54552 117246 0.9710 +54552 120892 0.4010 +54552 134353 0.7250 +54552 139322 0.4920 +54552 142940 0.5890 +54552 146212 0.9130 +54552 155368 0.4090 +54552 161424 0.6320 +54552 162427 0.5070 +54552 163859 0.4800 +54552 165545 0.6500 +54552 200916 0.5670 +54552 219927 0.5670 +54552 221078 0.9280 +54552 221830 0.7340 +54552 254268 0.5150 +54552 285855 0.8000 +54552 317781 0.4410 +54552 342892 0.4380 +54552 344758 0.4230 +54552 345630 0.6380 +54552 387129 0.7720 +54552 387338 0.5910 +54552 692312 0.6260 +54552 100505478 0.5600 +54552 100526842 0.5490 +54552 114483834 0.4310 +54554 54916 0.4350 +54554 55095 0.4130 +54554 80335 0.7760 +54554 84332 0.5810 +54554 84661 0.7660 +54554 91272 0.5520 +54554 143241 0.5770 +54554 259282 0.5520 +54555 54606 0.8690 +54555 54663 0.8400 +54555 54853 0.4440 +54555 54881 0.6790 +54555 54888 0.4990 +54555 54984 0.4640 +54555 55003 0.4510 +54555 55127 0.7150 +54555 55131 0.6940 +54555 55153 0.6370 +54555 55178 0.4220 +54555 55226 0.7650 +54555 55272 0.5270 +54555 55299 0.5970 +54555 55324 0.4230 +54555 55341 0.5970 +54555 55621 0.5040 +54555 55651 0.4820 +54555 55695 0.4200 +54555 55720 0.6050 +54555 55756 0.6480 +54555 55759 0.9000 +54555 55760 0.6850 +54555 55781 0.4760 +54555 55794 0.5920 +54555 55813 0.5690 +54555 56342 0.5660 +54555 56902 0.6870 +54555 56915 0.6050 +54555 56919 0.7630 +54555 57050 0.9950 +54555 57062 0.5010 +54555 57109 0.7230 +54555 57136 0.4860 +54555 57418 0.9020 +54555 57647 0.9700 +54555 57696 0.7710 +54555 57794 0.4730 +54555 60625 0.7990 +54555 64118 0.4880 +54555 64216 0.4430 +54555 64318 0.5510 +54555 64425 0.4890 +54555 64434 0.5610 +54555 64794 0.6630 +54555 64852 0.4530 +54555 65083 0.9880 +54555 65095 0.5380 +54555 79009 0.5160 +54555 79036 0.5160 +54555 79039 0.7670 +54555 79050 0.9280 +54555 79159 0.5920 +54555 79571 0.4380 +54555 79665 0.7350 +54555 79707 0.5880 +54555 79954 0.6290 +54555 80135 0.7410 +54555 81554 0.4840 +54555 81576 0.4240 +54555 81887 0.6910 +54555 83479 0.4320 +54555 83743 0.4790 +54555 84128 0.7290 +54555 84135 0.8370 +54555 84154 0.7390 +54555 84271 0.4160 +54555 84294 0.6780 +54555 84365 0.5670 +54555 84549 0.6040 +54555 84916 0.7510 +54555 84946 0.5080 +54555 84993 0.5440 +54555 87178 0.4900 +54555 88745 0.7780 +54555 90353 0.6490 +54555 90957 0.4130 +54555 92856 0.7660 +54555 93436 0.6560 +54555 115708 0.5200 +54555 116966 0.4200 +54555 117246 0.8960 +54555 118460 0.5630 +54555 126382 0.5330 +54555 155368 0.4180 +54555 161424 0.7270 +54555 165545 0.5340 +54555 221078 0.5290 +54555 285855 0.4430 +54555 317781 0.4490 +54555 387129 0.4100 +54555 692312 0.4670 +54555 100996746 0.4650 +54556 54617 0.9160 +54556 54799 0.9640 +54556 54891 0.7340 +54556 54934 0.7830 +54556 55167 0.9050 +54556 55170 0.5370 +54556 55257 0.9930 +54556 55683 0.7350 +54556 55689 0.6710 +54556 55904 0.4100 +54556 55929 0.9980 +54556 57154 0.4870 +54556 57634 0.9890 +54556 58516 0.5200 +54556 64426 0.5520 +54556 64431 0.6420 +54556 64769 0.9980 +54556 79685 0.6880 +54556 79913 0.9040 +54556 79960 0.4400 +54556 79974 0.6960 +54556 80314 0.9960 +54556 81611 0.9410 +54556 83444 0.9020 +54556 83860 0.6210 +54556 84148 0.9470 +54556 84312 0.7030 +54556 84444 0.4370 +54556 85235 0.4630 +54556 92815 0.4630 +54556 93973 0.9140 +54556 94239 0.5350 +54556 112398 0.5630 +54556 112869 0.4320 +54556 125476 0.9000 +54556 139628 0.7890 +54556 151050 0.5480 +54556 221613 0.4630 +54556 221895 0.6990 +54556 255626 0.6740 +54556 283150 0.8270 +54556 283899 0.9030 +54556 284058 0.7220 +54556 317772 0.4630 +54556 339287 0.9060 +54556 345651 0.6460 +54556 440093 0.9400 +54556 440686 0.9400 +54556 441457 0.4240 +54556 653604 0.9400 +54557 55466 0.4750 +54557 79682 0.4200 +54557 80018 0.4500 +54557 81570 0.4680 +54557 123169 0.4750 +54557 164153 0.4640 +54557 284611 0.4190 +54557 338699 0.4700 +54558 54763 0.5520 +54558 54870 0.4550 +54558 54875 0.4370 +54558 55779 0.4640 +54558 55812 0.4230 +54558 64149 0.4180 +54558 64581 0.4470 +54558 64847 0.5940 +54558 80217 0.4810 +54558 80256 0.4430 +54558 80705 0.4390 +54558 83449 0.6550 +54558 83893 0.4070 +54558 84221 0.5940 +54558 84223 0.4020 +54558 84466 0.6310 +54558 91179 0.4790 +54558 116840 0.4660 +54558 128153 0.4880 +54558 130560 0.4230 +54558 132671 0.5750 +54558 132851 0.5030 +54558 140732 0.7480 +54558 150483 0.4490 +54558 162333 0.4460 +54558 219938 0.4930 +54558 246777 0.4510 +54558 283417 0.4120 +54558 283629 0.6070 +54558 284680 0.5170 +54558 339829 0.4220 +54558 375686 0.5000 +54566 57530 0.4320 +54566 81027 0.4760 +54566 121274 0.4970 +54566 134864 0.8500 +54566 138802 0.4340 +54566 343637 0.4010 +54567 55333 0.4390 +54567 55502 0.4290 +54567 55534 0.6860 +54567 57514 0.4450 +54567 57534 0.5990 +54567 57572 0.4120 +54567 57801 0.4920 +54567 64123 0.6110 +54567 64321 0.4850 +54567 64919 0.5300 +54567 83595 0.4080 +54567 84441 0.6960 +54567 89780 0.4070 +54567 121643 0.5320 +54567 122706 0.4720 +54567 142678 0.5080 +54567 161198 0.4290 +54567 219699 0.5650 +54567 255877 0.5100 +54567 256297 0.4750 +54567 260425 0.4320 +54567 285203 0.4680 +54567 388585 0.6250 +54567 441478 0.7330 +54575 54576 0.9950 +54575 54577 0.9940 +54575 54578 0.9940 +54575 54600 0.9940 +54575 54657 0.9940 +54575 54658 0.9950 +54575 54659 0.9940 +54575 55244 0.4530 +54575 55270 0.4470 +54575 55586 0.9010 +54575 56603 0.6970 +54575 64714 0.4390 +54575 79001 0.6510 +54575 79644 0.6640 +54575 84706 0.4170 +54575 114799 0.4210 +54575 133482 0.4080 +54575 135152 0.8510 +54575 157570 0.4200 +54575 220074 0.8190 +54575 284541 0.7050 +54575 340665 0.6860 +54575 374875 0.6750 +54575 442038 0.6560 +54575 445329 0.4120 +54575 100861540 0.8490 +54576 54577 0.9940 +54576 54578 0.9970 +54576 54600 0.9970 +54576 54657 0.9940 +54576 54658 0.9960 +54576 54659 0.9970 +54576 55244 0.4440 +54576 55270 0.4470 +54576 55586 0.9010 +54576 56603 0.6970 +54576 64714 0.4180 +54576 79001 0.6510 +54576 79644 0.6600 +54576 84706 0.4180 +54576 114799 0.4210 +54576 133482 0.4230 +54576 135152 0.8320 +54576 157570 0.4240 +54576 220074 0.8190 +54576 284541 0.7070 +54576 340665 0.6860 +54576 374875 0.6750 +54576 442038 0.6510 +54576 445329 0.4100 +54576 100861540 0.8450 +54577 54578 0.9940 +54577 54600 0.9940 +54577 54657 0.9940 +54577 54658 0.9940 +54577 54659 0.9940 +54577 55244 0.4440 +54577 55270 0.4480 +54577 55586 0.9010 +54577 56603 0.6970 +54577 64714 0.4250 +54577 79001 0.6560 +54577 79644 0.6600 +54577 84706 0.4180 +54577 114799 0.4280 +54577 133482 0.4130 +54577 135152 0.8290 +54577 157570 0.4250 +54577 220074 0.8180 +54577 284541 0.7190 +54577 340665 0.6860 +54577 374875 0.6750 +54577 442038 0.6460 +54577 100861540 0.8430 +54578 54600 0.9980 +54578 54657 0.9950 +54578 54658 0.9980 +54578 54659 0.9980 +54578 55244 0.4810 +54578 55270 0.4480 +54578 55586 0.9010 +54578 56603 0.7060 +54578 57016 0.5540 +54578 64078 0.4900 +54578 64714 0.4360 +54578 64816 0.4120 +54578 66002 0.4140 +54578 79001 0.6460 +54578 79644 0.6620 +54578 84706 0.4210 +54578 114799 0.4390 +54578 133482 0.4270 +54578 135152 0.8790 +54578 146802 0.4180 +54578 157570 0.4370 +54578 200931 0.4140 +54578 220074 0.8190 +54578 284541 0.7330 +54578 340665 0.6930 +54578 374875 0.6790 +54578 442038 0.6450 +54578 445329 0.4400 +54578 100861540 0.8640 +54579 55586 0.9010 +54579 56603 0.6870 +54579 79644 0.6740 +54579 114799 0.4410 +54579 157570 0.4390 +54579 220074 0.8150 +54579 284541 0.7130 +54579 340665 0.6860 +54579 374875 0.6910 +54579 442038 0.6580 +54579 100861540 0.7560 +54583 54681 0.6040 +54583 54790 0.5230 +54583 54949 0.5930 +54583 55654 0.6800 +54583 55662 0.8010 +54583 55818 0.4080 +54583 57037 0.6000 +54583 57446 0.5580 +54583 57817 0.4790 +54583 64067 0.4880 +54583 64344 0.9500 +54583 64428 0.6930 +54583 79901 0.4340 +54583 84260 0.4110 +54583 84289 0.5260 +54583 84925 0.5990 +54583 84962 0.5230 +54583 90423 0.4030 +54583 112398 0.9420 +54583 112399 0.9530 +54583 112483 0.6820 +54583 126374 0.5190 +54583 130497 0.5190 +54583 150472 0.5590 +54583 200424 0.4120 +54583 221143 0.4100 +54583 283652 0.4170 +54583 390245 0.4880 +54583 440093 0.7240 +54583 440686 0.7240 +54583 653604 0.7240 +54584 55011 0.4390 +54584 55759 0.4030 +54584 58510 0.4630 +54584 64976 0.4310 +54584 65078 0.4260 +54584 80764 0.4910 +54584 83667 0.4950 +54584 84522 0.4530 +54584 85359 0.7050 +54584 114987 0.4120 +54584 126789 0.5090 +54584 128977 0.6150 +54584 128989 0.5330 +54584 140775 0.4760 +54585 54716 0.8630 +54585 54806 0.4100 +54585 54903 0.6190 +54585 55212 0.9820 +54585 57664 0.4260 +54585 59272 0.4790 +54585 79443 0.8360 +54585 79738 0.7390 +54585 80173 0.5100 +54585 80184 0.5310 +54585 80776 0.4420 +54585 84100 0.6760 +54585 91039 0.6060 +54585 92482 0.8210 +54585 129880 0.9750 +54585 157378 0.4200 +54585 157657 0.5640 +54585 166379 0.7410 +54585 283152 0.5230 +54585 387522 0.4530 +54586 56832 0.4710 +54586 57136 0.4850 +54586 79817 0.5540 +54586 81623 0.4070 +54586 83639 0.4640 +54586 84688 0.4020 +54586 87178 0.4020 +54586 93034 0.4230 +54586 170370 0.4960 +54586 255967 0.5740 +54586 284359 0.4620 +54587 54757 0.7150 +54587 55760 0.4110 +54587 56975 0.5690 +54587 57707 0.4420 +54587 60496 0.4830 +54587 143458 0.4950 +54587 145264 0.4120 +54587 165257 0.4060 +54587 256394 0.4490 +54587 327657 0.4290 +54587 338761 0.4330 +54587 439921 0.5540 +54596 54830 0.4600 +54596 54988 0.4430 +54596 55173 0.4710 +54596 55211 0.7370 +54596 55237 0.4200 +54596 55746 0.5020 +54596 55902 0.4430 +54596 57122 0.4880 +54596 57129 0.4830 +54596 57167 0.4110 +54596 63875 0.4770 +54596 64087 0.4380 +54596 64960 0.4730 +54596 65985 0.4430 +54596 79611 0.4690 +54596 79727 0.9160 +54596 79728 0.6620 +54596 79902 0.4010 +54596 79923 0.6200 +54596 84263 0.8040 +54596 84532 0.4430 +54596 84545 0.4680 +54596 84891 0.4520 +54596 116285 0.4430 +54596 123876 0.4430 +54596 132949 0.7170 +54596 219927 0.4700 +54596 253175 0.4130 +54596 341392 0.4430 +54596 342346 0.4470 +54596 348158 0.4520 +54596 387763 0.4710 +54596 389434 0.4660 +54600 54657 0.9950 +54600 54658 0.9980 +54600 54659 0.9990 +54600 55244 0.4540 +54600 55586 0.9020 +54600 56603 0.6960 +54600 79644 0.6670 +54600 80205 0.4150 +54600 114799 0.4150 +54600 135152 0.8000 +54600 146802 0.4020 +54600 157570 0.4120 +54600 220074 0.8140 +54600 284541 0.7020 +54600 340665 0.6950 +54600 374875 0.6820 +54600 442038 0.6460 +54600 100861540 0.8070 +54606 54663 0.9750 +54606 54700 0.4250 +54606 54853 0.4290 +54606 54865 0.6750 +54606 54881 0.4800 +54606 54888 0.6480 +54606 54984 0.6170 +54606 55003 0.6560 +54606 55006 0.6170 +54606 55127 0.8440 +54606 55131 0.9310 +54606 55140 0.4740 +54606 55153 0.7960 +54606 55226 0.9050 +54606 55272 0.5550 +54606 55299 0.9460 +54606 55341 0.8130 +54606 55601 0.6230 +54606 55621 0.4770 +54606 55646 0.6150 +54606 55651 0.6330 +54606 55695 0.5750 +54606 55703 0.4210 +54606 55720 0.8870 +54606 55759 0.9170 +54606 55760 0.6150 +54606 55781 0.6270 +54606 55794 0.7940 +54606 55795 0.4070 +54606 55813 0.8200 +54606 56257 0.6210 +54606 56342 0.8480 +54606 56902 0.4990 +54606 56915 0.4280 +54606 56919 0.7160 +54606 56931 0.5050 +54606 57050 0.7030 +54606 57062 0.9540 +54606 57109 0.4800 +54606 57136 0.5000 +54606 57418 0.8690 +54606 57506 0.4540 +54606 57647 0.5720 +54606 57696 0.9420 +54606 60487 0.5690 +54606 60528 0.4470 +54606 60625 0.4390 +54606 63899 0.4560 +54606 64118 0.6890 +54606 64135 0.4790 +54606 64216 0.6030 +54606 64318 0.8020 +54606 64425 0.7320 +54606 64434 0.6740 +54606 64794 0.9010 +54606 65083 0.7780 +54606 65095 0.5380 +54606 79009 0.7090 +54606 79039 0.8920 +54606 79050 0.5160 +54606 79084 0.6810 +54606 79132 0.4720 +54606 79159 0.6180 +54606 79665 0.4220 +54606 79711 0.5720 +54606 79753 0.4570 +54606 79954 0.7750 +54606 79979 0.4160 +54606 80135 0.7150 +54606 80324 0.4990 +54606 81887 0.4360 +54606 83448 0.4140 +54606 83475 0.4020 +54606 83479 0.4970 +54606 83732 0.4230 +54606 83743 0.9630 +54606 84128 0.8890 +54606 84154 0.9870 +54606 84172 0.7490 +54606 84294 0.6440 +54606 84310 0.4250 +54606 84365 0.8610 +54606 84549 0.6840 +54606 84916 0.8200 +54606 84946 0.7750 +54606 87178 0.4900 +54606 88745 0.4920 +54606 90121 0.4360 +54606 90353 0.8340 +54606 90957 0.4670 +54606 92856 0.8350 +54606 112840 0.4480 +54606 115708 0.7860 +54606 116966 0.4500 +54606 117246 0.9610 +54606 121504 0.4330 +54606 142940 0.5230 +54606 146212 0.6980 +54606 161424 0.9050 +54606 165545 0.5430 +54606 170506 0.9960 +54606 221078 0.8450 +54606 221830 0.7030 +54606 285855 0.7390 +54606 317781 0.5170 +54606 345630 0.6210 +54606 387129 0.6800 +54606 387338 0.4700 +54606 554313 0.4350 +54606 692312 0.7710 +54606 728378 0.4650 +54606 114483834 0.5500 +54617 54891 0.9720 +54617 55140 0.4100 +54617 55257 0.5430 +54617 55929 0.8280 +54617 56934 0.4450 +54617 57634 0.9340 +54617 57680 0.5690 +54617 57697 0.6230 +54617 64431 0.6850 +54617 64708 0.4050 +54617 79913 0.9990 +54617 80314 0.4370 +54617 81611 0.9080 +54617 83444 0.9990 +54617 84661 0.4400 +54617 84893 0.4070 +54617 90268 0.4480 +54617 93973 0.9920 +54617 121504 0.8310 +54617 125476 0.9930 +54617 136332 0.5760 +54617 283899 0.9990 +54617 554313 0.8310 +54619 64919 0.4330 +54619 135935 0.6100 +54619 387707 0.5220 +54621 55164 0.4130 +54621 55279 0.5070 +54621 55761 0.5160 +54621 55884 0.5110 +54621 127018 0.4190 +54621 132203 0.4010 +54621 146705 0.5310 +54621 221424 0.5560 +54621 255231 0.4130 +54621 338692 0.5580 +54621 345757 0.4520 +54621 389396 0.4100 +54621 442197 0.4800 +54622 54805 0.5320 +54622 54822 0.4360 +54622 59336 0.4260 +54622 79722 0.6100 +54622 80122 0.4640 +54622 84870 0.4130 +54622 127018 0.6060 +54622 144348 0.4430 +54622 153364 0.5120 +54622 727936 0.4530 +54623 54847 0.4180 +54623 55133 0.5130 +54623 55209 0.5310 +54623 55250 0.7230 +54623 55677 0.5420 +54623 55703 0.4840 +54623 55840 0.9080 +54623 56254 0.9760 +54623 57121 0.4180 +54623 57472 0.6190 +54623 57654 0.8000 +54623 58492 0.4070 +54623 79577 0.9990 +54623 79664 0.9000 +54623 80237 0.9000 +54623 80313 0.6190 +54623 80349 0.9980 +54623 80820 0.5000 +54623 84148 0.4490 +54623 84172 0.4710 +54623 84337 0.7720 +54623 84524 0.9060 +54623 85236 0.7600 +54623 85403 0.9080 +54623 85456 0.8560 +54623 121504 0.9050 +54623 123169 0.9990 +54623 126789 0.4730 +54623 126961 0.8600 +54623 128312 0.5360 +54623 129880 0.4610 +54623 149483 0.4180 +54623 158983 0.5350 +54623 167465 0.4010 +54623 201626 0.6220 +54623 246175 0.6240 +54623 255626 0.7560 +54623 286436 0.5350 +54623 333932 0.8600 +54623 340602 0.4180 +54623 440093 0.4270 +54623 440686 0.4270 +54623 440689 0.5400 +54623 448834 0.4180 +54623 554313 0.8500 +54623 653604 0.8810 +54623 114483833 0.5360 +54623 122455342 0.4180 +54625 54739 0.8240 +54625 54809 0.5560 +54625 54936 0.6000 +54625 54956 0.7190 +54625 55008 0.5690 +54625 55601 0.6670 +54625 56829 0.5190 +54625 56850 0.4110 +54625 56965 0.6740 +54625 57169 0.4610 +54625 57674 0.7060 +54625 64108 0.6960 +54625 64135 0.8790 +54625 64761 0.7480 +54625 79058 0.4890 +54625 79132 0.5530 +54625 79668 0.6080 +54625 81847 0.4250 +54625 83666 0.9420 +54625 83707 0.4270 +54625 84166 0.4280 +54625 84875 0.8200 +54625 85441 0.7650 +54625 91543 0.7510 +54625 94240 0.8620 +54625 115361 0.7510 +54625 115362 0.5630 +54625 116071 0.5030 +54625 129607 0.5540 +54625 140733 0.4030 +54625 151636 0.9750 +54625 155038 0.4270 +54625 219285 0.8410 +54625 221443 0.5440 +54625 388646 0.4580 +54627 54993 0.4370 +54627 55262 0.6180 +54627 79884 0.4790 +54627 201514 0.4790 +54627 255426 0.4900 +54627 285237 0.4370 +54627 286380 0.4180 +54627 349334 0.4160 +54629 64215 0.4320 +54629 80013 0.5500 +54629 84182 0.5450 +54629 153364 0.4700 +54657 54658 0.9940 +54657 54659 0.9960 +54657 55244 0.4840 +54657 55270 0.4740 +54657 55586 0.9010 +54657 56603 0.6960 +54657 64714 0.4380 +54657 64816 0.4250 +54657 79001 0.6570 +54657 79644 0.6630 +54657 84706 0.4180 +54657 114799 0.4280 +54657 133482 0.4120 +54657 135152 0.8750 +54657 146802 0.4020 +54657 157570 0.4240 +54657 220074 0.8190 +54657 284541 0.7120 +54657 340665 0.6860 +54657 374875 0.6740 +54657 442038 0.6490 +54657 100861540 0.8700 +54658 54659 0.9980 +54658 55244 0.4530 +54658 55270 0.4740 +54658 55586 0.9010 +54658 56603 0.6960 +54658 64714 0.4180 +54658 79001 0.6580 +54658 79644 0.6730 +54658 84706 0.4340 +54658 114799 0.4290 +54658 133482 0.4270 +54658 135152 0.8190 +54658 157570 0.4250 +54658 220074 0.8180 +54658 284541 0.7050 +54658 340665 0.6860 +54658 374875 0.6750 +54658 442038 0.6460 +54658 100861540 0.8430 +54659 55586 0.9010 +54659 56603 0.6870 +54659 79644 0.6770 +54659 114799 0.4400 +54659 135152 0.6720 +54659 157570 0.4370 +54659 220074 0.8090 +54659 284541 0.7100 +54659 340665 0.6860 +54659 374875 0.6870 +54659 442038 0.6460 +54659 100861540 0.7780 +54662 54868 0.4640 +54662 54885 0.4210 +54662 55296 0.6410 +54662 55357 0.4680 +54662 55633 0.4710 +54662 55773 0.4900 +54662 57465 0.5530 +54662 57533 0.5400 +54662 79774 0.4740 +54662 83874 0.6410 +54662 128637 0.5070 +54662 158427 0.4260 +54662 158431 0.4210 +54662 161514 0.6340 +54662 254272 0.4180 +54662 374403 0.6200 +54662 431707 0.4710 +54663 54758 0.4120 +54663 54853 0.5940 +54663 54865 0.4170 +54663 54881 0.4010 +54663 54888 0.6160 +54663 54984 0.6160 +54663 55003 0.7710 +54663 55006 0.5250 +54663 55051 0.4620 +54663 55127 0.6460 +54663 55131 0.8000 +54663 55153 0.7280 +54663 55226 0.8440 +54663 55272 0.5430 +54663 55299 0.9900 +54663 55341 0.8730 +54663 55591 0.5050 +54663 55621 0.6040 +54663 55646 0.4570 +54663 55651 0.6740 +54663 55695 0.7510 +54663 55720 0.8770 +54663 55759 0.9980 +54663 55781 0.6830 +54663 55794 0.7520 +54663 55813 0.5410 +54663 56342 0.9410 +54663 56902 0.5420 +54663 56931 0.4230 +54663 57050 0.5060 +54663 57062 0.9450 +54663 57109 0.4490 +54663 57418 0.9190 +54663 57696 0.7970 +54663 60492 0.4940 +54663 63899 0.5060 +54663 64118 0.5690 +54663 64216 0.5340 +54663 64318 0.9580 +54663 64425 0.4500 +54663 64794 0.8790 +54663 65083 0.6160 +54663 65095 0.5500 +54663 79009 0.5770 +54663 79039 0.8730 +54663 79050 0.7020 +54663 79571 0.4250 +54663 79590 0.7080 +54663 79707 0.4260 +54663 79730 0.5650 +54663 79815 0.4900 +54663 79949 0.7540 +54663 79954 0.6290 +54663 80135 0.9970 +54663 80324 0.6600 +54663 81627 0.4440 +54663 81887 0.7010 +54663 83479 0.5070 +54663 83480 0.4180 +54663 83743 0.8670 +54663 84154 0.9790 +54663 84172 0.6240 +54663 84273 0.6060 +54663 84294 0.4020 +54663 84365 0.9870 +54663 84549 0.9970 +54663 84916 0.6470 +54663 84946 0.6910 +54663 88745 0.5580 +54663 90121 0.4170 +54663 90353 0.8260 +54663 90441 0.6750 +54663 91646 0.5020 +54663 92170 0.6080 +54663 92856 0.8800 +54663 115708 0.6290 +54663 116540 0.5120 +54663 116966 0.4340 +54663 117246 0.9970 +54663 126789 0.4100 +54663 134829 0.4880 +54663 142940 0.5590 +54663 146212 0.9250 +54663 161424 0.8340 +54663 169522 0.5650 +54663 196441 0.4480 +54663 221078 0.9400 +54663 221830 0.5200 +54663 254268 0.7630 +54663 284434 0.5080 +54663 285855 0.9180 +54663 317781 0.5780 +54663 344758 0.5020 +54663 345630 0.4090 +54663 387129 0.8940 +54663 387338 0.5100 +54663 645051 0.4120 +54663 645073 0.4120 +54663 692312 0.8360 +54663 729396 0.4120 +54663 729422 0.4120 +54663 729428 0.4120 +54663 729431 0.4120 +54663 729442 0.4120 +54663 729447 0.4120 +54663 100008586 0.4120 +54663 100132399 0.4120 +54663 100505478 0.7850 +54663 100526842 0.7950 +54663 102724473 0.4120 +54664 57120 0.4560 +54664 79022 0.4890 +54664 79908 0.4750 +54664 121227 0.5120 +54664 201931 0.4570 +54664 203228 0.7530 +54664 221806 0.4140 +54664 440026 0.5390 +54665 54788 0.4500 +54665 54893 0.4040 +54665 56944 0.4380 +54665 56987 0.4790 +54665 57693 0.4370 +54665 64858 0.4070 +54665 132864 0.4170 +54665 222194 0.6710 +54665 317781 0.6120 +54665 440603 0.5470 +54674 55022 0.4340 +54674 55144 0.4460 +54674 56650 0.5070 +54674 57124 0.4470 +54674 83943 0.5210 +54675 54886 0.4020 +54675 54947 0.9400 +54675 55266 0.5770 +54675 56261 0.4040 +54675 56894 0.4020 +54675 56985 0.4060 +54675 57171 0.4110 +54675 64748 0.4020 +54675 64949 0.4620 +54675 79133 0.8070 +54675 79888 0.9410 +54675 79948 0.4020 +54675 81537 0.4730 +54675 84317 0.4110 +54675 84513 0.4020 +54675 84515 0.7950 +54675 90441 0.4690 +54675 91942 0.5720 +54675 114971 0.6370 +54675 116150 0.4660 +54675 126328 0.6050 +54675 129607 0.4720 +54675 130367 0.4020 +54675 132001 0.6450 +54675 163404 0.4020 +54675 196051 0.4020 +54675 253558 0.9680 +54675 254531 0.9260 +54675 441024 0.5850 +54676 57704 0.4110 +54676 79152 0.4220 +54676 80025 0.4610 +54676 80067 0.7060 +54676 80347 0.5800 +54676 85021 0.5490 +54676 90850 0.4160 +54676 92399 0.7550 +54676 203197 0.4600 +54676 440275 0.4090 +54677 54758 0.6230 +54677 55972 0.4470 +54677 83594 0.4450 +54677 84129 0.4480 +54677 84188 0.4770 +54677 122970 0.4080 +54677 154661 0.5490 +54677 219743 0.6160 +54677 283927 0.4100 +54677 440275 0.4800 +54680 54853 0.4190 +54680 54984 0.5370 +54680 55011 0.9140 +54680 55035 0.6540 +54680 55135 0.4700 +54680 55153 0.4010 +54680 55164 0.4910 +54680 55239 0.4540 +54680 55622 0.5240 +54680 56647 0.6140 +54680 57587 0.5380 +54680 64318 0.4860 +54680 65095 0.4470 +54680 79657 0.6790 +54680 79954 0.4580 +54680 83444 0.6310 +54680 84186 0.4520 +54680 84240 0.4200 +54680 84294 0.5320 +54680 84365 0.4460 +54680 84549 0.4970 +54680 88745 0.5880 +54680 93343 0.5470 +54680 121053 0.4510 +54680 127018 0.5100 +54680 148423 0.4660 +54681 58508 0.4950 +54681 80012 0.8250 +54681 84661 0.4580 +54681 112398 0.6490 +54681 112399 0.6320 +54681 136332 0.5320 +54681 375035 0.5430 +54681 440957 0.4750 +54682 54918 0.4670 +54682 55248 0.4020 +54682 57613 0.4480 +54682 57787 0.4400 +54682 79042 0.4220 +54682 79370 0.5460 +54682 80824 0.4360 +54682 81575 0.4130 +54682 84669 0.4190 +54682 84818 0.4480 +54682 94015 0.4110 +54682 118426 0.4510 +54682 118461 0.4600 +54682 134285 0.5060 +54682 162427 0.5330 +54682 339559 0.4170 +54682 375341 0.4530 +54682 388633 0.4030 +54700 55127 0.4090 +54700 55623 0.4360 +54700 55703 0.6650 +54700 55720 0.4380 +54700 55813 0.6930 +54700 55814 0.4280 +54700 56902 0.4010 +54700 64216 0.4960 +54700 64425 0.9980 +54700 65083 0.6610 +54700 79101 0.7920 +54700 83737 0.5490 +54700 84172 0.9990 +54700 84232 0.5460 +54700 84916 0.4050 +54700 84946 0.6900 +54700 92856 0.5970 +54700 115817 0.4260 +54700 123803 0.6810 +54700 123811 0.4070 +54700 153443 0.4270 +54700 221830 0.9990 +54700 255027 0.5830 +54700 345630 0.4470 +54700 404672 0.5430 +54704 54714 0.6860 +54704 54861 0.4380 +54704 55066 0.8910 +54704 55095 0.4780 +54704 57546 0.5230 +54704 81570 0.4260 +54704 90550 0.4120 +54704 91147 0.4110 +54704 91860 0.5140 +54704 123263 0.4190 +54704 152926 0.5590 +54704 160760 0.9040 +54704 163688 0.5140 +54704 333926 0.4490 +54707 54853 0.4210 +54707 64087 0.4220 +54707 64897 0.4360 +54707 79613 0.5910 +54707 79871 0.6440 +54707 80207 0.6340 +54707 81488 0.8410 +54707 84138 0.6850 +54707 113457 0.4150 +54707 114826 0.4800 +54707 140459 0.6550 +54707 149466 0.4410 +54707 339855 0.5520 +54707 387338 0.4780 +54707 548644 0.7040 +54707 100506144 0.5700 +54708 54726 0.5220 +54708 54941 0.5090 +54708 55016 0.4570 +54708 55177 0.6420 +54708 55284 0.7040 +54708 55288 0.4830 +54708 55486 0.5140 +54708 55669 0.9510 +54708 55884 0.6250 +54708 56947 0.7230 +54708 57154 0.4680 +54708 57506 0.8530 +54708 57558 0.4470 +54708 65018 0.6080 +54708 65983 0.4910 +54708 79594 0.7860 +54708 79845 0.4220 +54708 84233 0.4370 +54708 84749 0.7590 +54708 89885 0.4410 +54708 89941 0.5480 +54708 91137 0.6450 +54708 91445 0.5360 +54708 92979 0.4310 +54708 115123 0.4380 +54708 115209 0.4790 +54708 125170 0.6630 +54708 139341 0.8370 +54708 192111 0.5560 +54708 205564 0.4630 +54708 220972 0.5300 +54714 54850 0.4010 +54714 57096 0.6570 +54714 80184 0.5460 +54714 84839 0.4650 +54714 92211 0.4990 +54714 92292 0.5960 +54714 93589 0.4450 +54714 94137 0.5120 +54714 94233 0.7390 +54714 131890 0.5460 +54714 145226 0.5180 +54714 157657 0.4150 +54714 157724 0.4800 +54714 169522 0.6460 +54714 261734 0.4210 +54714 343035 0.5020 +54714 346007 0.5050 +54714 375298 0.5190 +54714 388531 0.6560 +54714 388939 0.4470 +54714 401190 0.4180 +54714 768206 0.5420 +54715 54845 0.4620 +54715 55352 0.4950 +54715 55544 0.6190 +54715 55796 0.5160 +54715 56853 0.6230 +54715 56934 0.5040 +54715 57502 0.4250 +54715 58155 0.6200 +54715 60529 0.5480 +54715 60677 0.4540 +54715 63974 0.4350 +54715 64067 0.5240 +54715 64478 0.4410 +54715 80004 0.4150 +54715 84530 0.6900 +54715 85358 0.4040 +54715 89927 0.4040 +54715 93377 0.4390 +54715 114787 0.5490 +54715 140733 0.5390 +54715 144983 0.4330 +54715 145581 0.4200 +54715 146713 0.4670 +54715 192683 0.4180 +54715 202559 0.4490 +54715 220988 0.4330 +54715 221662 0.8690 +54715 266743 0.4230 +54715 282996 0.4720 +54715 388336 0.4560 +54716 55065 0.4630 +54716 57393 0.4380 +54716 57664 0.4050 +54716 59272 0.9980 +54716 64131 0.6490 +54716 64132 0.9200 +54716 64849 0.4330 +54716 79443 0.7840 +54716 80736 0.4270 +54716 91039 0.5680 +54716 153201 0.9590 +54716 206358 0.5010 +54716 285641 0.4730 +54716 387522 0.4080 +54726 54764 0.5610 +54726 54978 0.6540 +54726 55031 0.4250 +54726 55432 0.6130 +54726 55593 0.6240 +54726 55611 0.5900 +54726 56893 0.5560 +54726 56957 0.5840 +54726 57506 0.4970 +54726 57646 0.4180 +54726 57663 0.4980 +54726 78990 0.5910 +54726 80124 0.4190 +54726 80150 0.4040 +54726 83844 0.4750 +54726 84101 0.4120 +54726 84132 0.4030 +54726 84196 0.4460 +54726 84640 0.4500 +54726 85015 0.4730 +54726 90231 0.4660 +54726 90268 0.5510 +54726 90850 0.5790 +54726 91373 0.4250 +54726 114803 0.5180 +54726 121642 0.5460 +54726 124739 0.4160 +54726 124801 0.4210 +54726 126119 0.4520 +54726 139562 0.6130 +54726 149041 0.6470 +54726 161725 0.5470 +54726 164684 0.4510 +54726 192669 0.6180 +54726 220213 0.6010 +54726 221120 0.5690 +54726 221302 0.5420 +54726 373509 0.4660 +54726 377630 0.4260 +54726 728373 0.4050 +54729 147872 0.4080 +54729 157848 0.5190 +54729 222659 0.4170 +54729 388324 0.4290 +54732 55738 0.5880 +54732 55850 0.5420 +54732 56005 0.6070 +54732 56851 0.5090 +54732 60561 0.5040 +54732 63908 0.5140 +54732 64377 0.4370 +54732 64746 0.4400 +54732 80758 0.4190 +54732 81502 0.4020 +54732 81876 0.5860 +54732 84364 0.6570 +54732 93380 0.6110 +54732 146456 0.5550 +54732 222068 0.5190 +54732 337867 0.6540 +54733 54734 0.4590 +54733 54874 0.4220 +54733 55531 0.5750 +54733 64478 0.6160 +54733 64756 0.4010 +54733 83943 0.6060 +54733 84197 0.6260 +54733 89832 0.5800 +54733 143888 0.4610 +54733 148641 0.4600 +54733 162427 0.6920 +54733 340146 0.4580 +54733 343069 0.5830 +54734 57511 0.5610 +54734 79954 0.4620 +54734 83548 0.5980 +54734 91949 0.5480 +54734 116143 0.4210 +54734 116442 0.4700 +54734 117177 0.4720 +54734 143884 0.6130 +54734 203228 0.4010 +54734 283638 0.4980 +54734 347517 0.6160 +54734 401409 0.4950 +54737 54856 0.4150 +54737 54994 0.8610 +54737 55609 0.4970 +54737 55729 0.7150 +54737 55860 0.4870 +54737 55870 0.4250 +54737 55929 0.4760 +54737 56950 0.4230 +54737 79723 0.5550 +54737 79813 0.7680 +54737 80854 0.4300 +54737 83852 0.4770 +54737 126961 0.9320 +54737 133482 0.4450 +54737 144108 0.4490 +54737 146434 0.7690 +54737 192669 0.4120 +54737 333932 0.9320 +54737 387893 0.4120 +54737 440093 0.9810 +54737 440686 0.9810 +54737 653604 0.9810 +54738 57030 0.4360 +54738 121278 0.5470 +54738 222546 0.5600 +54738 246213 0.4230 +54738 388419 0.4750 +54739 54809 0.7370 +54739 55008 0.8640 +54739 55337 0.5220 +54739 55601 0.8500 +54739 55905 0.7840 +54739 57674 0.5540 +54739 64108 0.7810 +54739 64135 0.8490 +54739 64761 0.7300 +54739 79132 0.7630 +54739 79444 0.5530 +54739 80830 0.4940 +54739 83666 0.8940 +54739 84875 0.4990 +54739 85441 0.7340 +54739 91543 0.9000 +54739 94240 0.8620 +54739 115361 0.6330 +54739 115362 0.5170 +54739 115992 0.5590 +54739 116071 0.4290 +54739 129607 0.6530 +54739 133482 0.4040 +54739 149628 0.4720 +54739 151636 0.4450 +54739 219285 0.8700 +54742 55635 0.7070 +54742 57152 0.7160 +54742 58530 0.5150 +54742 66004 0.7420 +54742 80055 0.4060 +54742 83540 0.7090 +54742 83639 0.8150 +54742 130574 0.5950 +54742 137797 0.7940 +54742 147719 0.5920 +54742 160065 0.4200 +54742 171169 0.5730 +54742 204474 0.4780 +54742 284348 0.4630 +54742 338328 0.5640 +54742 390940 0.4180 +54742 399967 0.4470 +54742 399968 0.4470 +54742 100169851 0.5070 +54742 101928108 0.5220 +54749 54920 0.4680 +54749 79974 0.4950 +54749 83930 0.5470 +54749 85460 0.4640 +54749 115294 0.5710 +54749 144100 0.5290 +54749 169792 0.4500 +54749 282966 0.4510 +54749 399665 0.6090 +54751 55033 0.4010 +54751 55612 0.8040 +54751 55742 0.5210 +54751 55885 0.4430 +54751 83660 0.6140 +54751 83706 0.9280 +54751 89870 0.4610 +54751 124936 0.4590 +54751 388595 0.5600 +54752 56157 0.5300 +54752 79411 0.5940 +54752 89882 0.4240 +54752 127540 0.4470 +54752 140856 0.6700 +54752 152586 0.6090 +54752 285641 0.4860 +54752 338949 0.4800 +54752 392307 0.5030 +54753 79724 0.4250 +54753 83637 0.4140 +54753 112703 0.4850 +54753 401089 0.5070 +54753 728194 0.4790 +54754 56931 0.4140 +54754 127068 0.5070 +54754 169841 0.4730 +54754 171483 0.4560 +54754 220081 0.5430 +54754 221786 0.5710 +54754 285955 0.6280 +54756 55540 0.9600 +54756 55636 0.4210 +54756 60675 0.4850 +54756 63877 0.4260 +54756 64806 0.7800 +54756 79625 0.5920 +54756 81848 0.8710 +54756 84634 0.5280 +54756 84818 0.9880 +54756 112744 0.7870 +54756 128674 0.5880 +54756 132014 0.9590 +54756 203328 0.4160 +54756 389549 0.5000 +54757 54972 0.4110 +54757 56955 0.5130 +54757 56975 0.9980 +54757 57719 0.4840 +54757 64856 0.4080 +54757 79641 0.5060 +54757 79742 0.4260 +54757 79834 0.4180 +54757 80341 0.4740 +54757 83642 0.4070 +54757 84141 0.5560 +54757 84197 0.4270 +54757 91461 0.4580 +54757 91851 0.5110 +54757 93650 0.5960 +54757 116519 0.4380 +54757 123041 0.5330 +54757 145264 0.4470 +54757 147111 0.4130 +54757 152816 0.6650 +54757 255738 0.4460 +54757 255967 0.4880 +54757 256394 0.4700 +54757 256764 0.7080 +54757 286077 0.7440 +54757 327657 0.4550 +54757 374872 0.4730 +54757 388650 0.4020 +54757 401138 0.8190 +54757 729085 0.6650 +54758 55131 0.4220 +54758 55813 0.5380 +54758 63977 0.4500 +54758 79637 0.4510 +54758 79801 0.4570 +54758 83743 0.4250 +54758 83746 0.4360 +54758 84154 0.4050 +54758 84691 0.4030 +54758 90871 0.4310 +54758 93436 0.5390 +54760 55144 0.6340 +54760 84519 0.5020 +54760 255061 0.4130 +54760 347148 0.4210 +54760 723961 0.4970 +54762 56889 0.4160 +54762 57476 0.7390 +54762 59271 0.4050 +54762 65983 0.7810 +54762 81542 0.5150 +54762 116966 0.4540 +54762 136306 0.4550 +54762 152185 0.4880 +54762 195977 0.4640 +54762 255349 0.5040 +54762 374882 0.4630 +54762 401827 0.4470 +54763 54870 0.4700 +54763 55779 0.4750 +54763 80217 0.4820 +54763 80705 0.4660 +54763 81833 0.4650 +54763 83893 0.4260 +54763 84075 0.5780 +54763 84519 0.4650 +54763 85415 0.5270 +54763 85438 0.4840 +54763 93661 0.5310 +54763 113746 0.5000 +54763 114822 0.9870 +54763 146852 0.4080 +54763 147011 0.4080 +54763 150483 0.6220 +54763 152015 0.8840 +54763 161502 0.4290 +54763 162333 0.4630 +54763 163882 0.6060 +54763 219938 0.4550 +54763 254956 0.4280 +54763 283629 0.6080 +54763 286257 0.4200 +54763 339829 0.4340 +54763 375307 0.5020 +54763 401024 0.4900 +54763 402573 0.4070 +54763 644890 0.4850 +54764 55031 0.5580 +54764 55432 0.6270 +54764 55593 0.5970 +54764 55611 0.6720 +54764 55666 0.6680 +54764 55693 0.5950 +54764 55917 0.6500 +54764 56957 0.6320 +54764 57464 0.5800 +54764 57559 0.5880 +54764 57646 0.4110 +54764 57695 0.4210 +54764 64081 0.6010 +54764 64795 0.4280 +54764 78990 0.5760 +54764 79585 0.4110 +54764 79868 0.4060 +54764 80124 0.5520 +54764 83992 0.6140 +54764 84640 0.4590 +54764 84749 0.4930 +54764 85369 0.7270 +54764 90268 0.6900 +54764 114803 0.5460 +54764 126119 0.4630 +54764 139562 0.5660 +54764 159195 0.4130 +54764 192111 0.4830 +54764 219333 0.4260 +54764 220213 0.5590 +54764 221302 0.6230 +54764 257397 0.4170 +54764 373509 0.4620 +54764 377630 0.4090 +54765 55223 0.4260 +54765 80071 0.4200 +54765 81559 0.6470 +54765 81603 0.4590 +54765 81844 0.4010 +54765 84851 0.4180 +54765 90933 0.5340 +54765 91107 0.5580 +54765 114088 0.5340 +54765 117154 0.4200 +54765 149603 0.4010 +54765 286827 0.5270 +54765 378108 0.4110 +54766 57472 0.4350 +54766 64506 0.5570 +54766 79816 0.4480 +54766 126206 0.5140 +54766 147949 0.4070 +54766 169270 0.4670 +54766 197135 0.4580 +54766 246175 0.6460 +54766 326340 0.4310 +54766 353238 0.4500 +54766 390110 0.4140 +54766 390748 0.6050 +54766 494551 0.5770 +54766 646799 0.4960 +54768 54777 0.4250 +54768 54919 0.6440 +54768 55036 0.7760 +54768 55130 0.7140 +54768 55172 0.6110 +54768 55567 0.4310 +54768 55672 0.8610 +54768 55779 0.5480 +54768 56171 0.4170 +54768 56683 0.6070 +54768 57106 0.5070 +54768 57501 0.4120 +54768 64446 0.7260 +54768 79582 0.6240 +54768 79846 0.4430 +54768 79925 0.6000 +54768 80122 0.4530 +54768 80217 0.6070 +54768 81492 0.4330 +54768 83450 0.4370 +54768 83538 0.5260 +54768 84033 0.5130 +54768 85452 0.4510 +54768 85478 0.6730 +54768 89765 0.7200 +54768 89978 0.4130 +54768 92749 0.6890 +54768 93233 0.7010 +54768 93986 0.4790 +54768 94025 0.5860 +54768 114788 0.5360 +54768 115948 0.6280 +54768 123872 0.6810 +54768 136332 0.4300 +54768 139212 0.5080 +54768 143241 0.4690 +54768 144535 0.5460 +54768 144717 0.5350 +54768 149465 0.4280 +54768 151242 0.4140 +54768 160762 0.4010 +54768 161582 0.6340 +54768 164395 0.4130 +54768 200030 0.4740 +54768 200162 0.6260 +54768 200373 0.7090 +54768 221421 0.7640 +54768 259266 0.7510 +54768 286464 0.5470 +54768 339829 0.7630 +54768 345643 0.5700 +54768 345895 0.8020 +54768 352909 0.6520 +54768 374407 0.4740 +54768 388389 0.6910 +54769 128646 0.4100 +54769 148252 0.5900 +54769 222865 0.4100 +54776 56311 0.4260 +54776 57455 0.5270 +54776 58498 0.8390 +54776 58506 0.5430 +54776 63973 0.4340 +54776 80316 0.4230 +54776 80351 0.5210 +54776 81628 0.4140 +54776 84254 0.4140 +54776 84687 0.5590 +54776 84922 0.5190 +54776 91304 0.4870 +54776 91369 0.4180 +54776 93408 0.7980 +54776 94274 0.9490 +54776 103910 0.8440 +54776 112724 0.5080 +54776 115950 0.4060 +54776 116983 0.4570 +54776 140465 0.9180 +54776 142678 0.4130 +54776 163033 0.4220 +54776 171425 0.5290 +54776 283899 0.4590 +54776 317754 0.4060 +54776 388468 0.4050 +54776 404785 0.4090 +54776 641455 0.4090 +54776 100288966 0.4060 +54776 100996331 0.4130 +54776 102723502 0.4050 +54776 102724631 0.4050 +54777 85452 0.4860 +54777 120379 0.6050 +54777 144535 0.4460 +54777 200373 0.4400 +54777 219681 0.4850 +54777 254158 0.5840 +54777 342918 0.4460 +54777 101060226 0.4380 +54778 56946 0.4450 +54778 57148 0.7360 +54778 57154 0.5570 +54778 57337 0.4360 +54778 57609 0.4380 +54778 57680 0.4650 +54778 64750 0.8490 +54778 80004 0.6780 +54778 80204 0.5750 +54778 80854 0.4330 +54778 81545 0.5280 +54778 123228 0.4500 +54778 135644 0.4080 +54778 140460 0.4040 +54778 140739 0.5040 +54778 152006 0.4090 +54778 165918 0.6340 +54778 221895 0.4030 +54778 342371 0.4360 +54778 375484 0.5490 +54778 404672 0.4100 +54780 55719 0.8660 +54780 56160 0.9980 +54780 57692 0.5150 +54780 64110 0.7070 +54780 64219 0.8270 +54780 79568 0.4440 +54780 79677 0.9990 +54780 81557 0.6640 +54780 84250 0.8350 +54780 126272 0.4130 +54780 139081 0.5600 +54780 139599 0.4880 +54780 139604 0.4260 +54780 146434 0.8280 +54780 163126 0.4390 +54780 197370 0.9990 +54780 266740 0.4390 +54780 286053 0.9950 +54780 286514 0.6530 +54780 347541 0.4260 +54780 387082 0.9220 +54780 493861 0.9070 +54784 54890 0.5990 +54784 55217 0.4030 +54784 64863 0.6690 +54784 79068 0.5520 +54784 79177 0.5450 +54784 83475 0.5440 +54784 84266 0.8650 +54784 84292 0.4770 +54784 84964 0.8600 +54784 91801 0.7630 +54784 113878 0.5140 +54784 121642 0.7690 +54784 221120 0.6690 +54784 401265 0.4430 +54784 441273 0.4050 +54784 728294 0.4690 +54785 54820 0.4210 +54785 55004 0.7070 +54785 55075 0.4620 +54785 57489 0.4590 +54785 63915 0.5910 +54785 79036 0.9990 +54785 80772 0.4380 +54785 81565 0.6180 +54785 84062 0.5790 +54785 93611 0.5120 +54785 118426 0.9990 +54785 119032 0.9990 +54785 127829 0.5160 +54785 132320 0.4120 +54785 147807 0.6770 +54785 153129 0.4240 +54785 160857 0.4220 +54785 163786 0.4630 +54785 221079 0.5830 +54785 282991 0.9990 +54785 284001 0.4790 +54785 339344 0.4860 +54785 389541 0.7930 +54785 729991 0.9990 +54788 54902 0.6300 +54788 54979 0.4210 +54788 55757 0.4370 +54788 57003 0.4550 +54788 57110 0.4200 +54788 57128 0.4770 +54788 57129 0.4110 +54788 57695 0.4840 +54788 63875 0.4650 +54788 79139 0.4190 +54788 79982 0.5480 +54788 80273 0.6750 +54788 80331 0.4560 +54788 81570 0.5020 +54788 84285 0.4050 +54788 84545 0.4220 +54788 84617 0.4100 +54788 84942 0.5430 +54788 116835 0.4680 +54788 117584 0.4740 +54788 118461 0.4200 +54788 134266 0.4570 +54788 165721 0.5070 +54788 202052 0.4330 +54788 259217 0.5300 +54788 339416 0.4200 +54788 388633 0.4200 +54790 54888 0.4220 +54790 55252 0.5410 +54790 55269 0.5970 +54790 55279 0.4640 +54790 55294 0.4280 +54790 55388 0.4150 +54790 55500 0.5070 +54790 55695 0.4170 +54790 55777 0.4030 +54790 55870 0.4550 +54790 57167 0.5830 +54790 57379 0.6410 +54790 58508 0.6210 +54790 63035 0.6200 +54790 63899 0.4480 +54790 63978 0.8540 +54790 64324 0.4300 +54790 79191 0.4050 +54790 79730 0.4320 +54790 79753 0.7820 +54790 79923 0.9630 +54790 79944 0.4080 +54790 80198 0.4300 +54790 80312 0.8600 +54790 80319 0.9230 +54790 84295 0.7060 +54790 84444 0.4460 +54790 84619 0.4200 +54790 91746 0.4050 +54790 112399 0.4410 +54790 115426 0.6660 +54790 171023 0.9750 +54790 196528 0.4510 +54790 200424 0.9640 +54790 221078 0.4070 +54790 440093 0.5190 +54790 440686 0.5200 +54790 653604 0.5190 +54793 55314 0.4850 +54793 55677 0.4750 +54793 57146 0.5170 +54793 58477 0.4200 +54793 65987 0.4330 +54793 79047 0.4330 +54793 80005 0.4190 +54793 84280 0.4220 +54793 84328 0.4870 +54793 112970 0.4040 +54793 119467 0.4740 +54793 122416 0.4830 +54793 129401 0.6070 +54793 146212 0.5140 +54793 147040 0.6460 +54793 222658 0.4410 +54793 283219 0.4230 +54793 284252 0.6970 +54793 392509 0.4620 +54795 55081 0.4100 +54795 55107 0.4820 +54795 55283 0.5430 +54795 55503 0.7490 +54795 55800 0.8770 +54795 56302 0.7260 +54795 57192 0.7600 +54795 57620 0.4900 +54795 59341 0.8460 +54795 63895 0.4180 +54795 64838 0.4360 +54795 79054 0.4570 +54795 80228 0.4610 +54795 84876 0.4880 +54795 91860 0.6820 +54795 93129 0.4870 +54795 119395 0.4550 +54795 133060 0.4130 +54795 162514 0.7490 +54795 163688 0.6820 +54795 255022 0.5390 +54795 255231 0.5060 +54795 346562 0.4810 +54795 387082 0.4700 +54796 54849 0.4470 +54796 55966 0.4270 +54796 81793 0.4020 +54796 117248 0.4100 +54796 134359 0.4920 +54796 139189 0.4280 +54796 202374 0.4080 +54796 221458 0.4320 +54796 283652 0.5900 +54796 339210 0.4290 +54796 400916 0.4200 +54797 55090 0.9980 +54797 55588 0.9990 +54797 79902 0.6650 +54797 80306 0.9990 +54797 81488 0.5650 +54797 81857 0.9930 +54797 83860 0.8360 +54797 84246 0.9990 +54797 84498 0.5210 +54797 84950 0.6120 +54797 84955 0.6220 +54797 85441 0.5840 +54797 90390 0.9990 +54797 112950 0.9990 +54797 116931 0.9520 +54797 121504 0.8000 +54797 126961 0.8030 +54797 129685 0.8300 +54797 133522 0.9000 +54797 246721 0.6530 +54797 256643 0.5400 +54797 333932 0.8030 +54797 400569 0.9990 +54797 404672 0.8120 +54797 548644 0.6530 +54797 554313 0.8000 +54797 653604 0.8230 +54797 100134938 0.5870 +54797 107983993 0.5870 +54798 65217 0.4500 +54798 79862 0.4120 +54798 89876 0.5110 +54798 167410 0.4050 +54798 644994 0.6460 +54799 54813 0.4390 +54799 54934 0.7200 +54799 55167 0.9060 +54799 55257 0.9720 +54799 55683 0.7250 +54799 55689 0.5610 +54799 55929 0.9790 +54799 57634 0.9670 +54799 64769 0.9950 +54799 80314 0.9380 +54799 84148 0.9120 +54799 84289 0.4870 +54799 84765 0.4340 +54799 114991 0.4310 +54799 132625 0.5540 +54799 139628 0.7810 +54799 151050 0.6600 +54799 165918 0.4090 +54799 221895 0.9170 +54799 255626 0.6330 +54799 283150 0.8300 +54799 284058 0.7560 +54799 339287 0.9100 +54799 340602 0.7750 +54799 345651 0.5400 +54799 387893 0.4330 +54799 404281 0.5440 +54799 728118 0.5240 +54800 54813 0.6040 +54800 55958 0.7920 +54800 55975 0.7680 +54800 57019 0.6940 +54800 57542 0.7280 +54800 57563 0.7500 +54800 59349 0.7480 +54800 64410 0.7470 +54800 79734 0.7310 +54800 80204 0.4740 +54800 80311 0.4180 +54800 83892 0.7600 +54800 84078 0.7420 +54800 84541 0.7410 +54800 84861 0.7370 +54800 89890 0.7200 +54800 90293 0.7560 +54800 114907 0.4090 +54800 131377 0.7590 +54800 153222 0.7590 +54800 253980 0.7280 +54800 339745 0.7650 +54800 388403 0.4280 +54800 553115 0.7230 +54800 646262 0.4990 +54801 54820 0.6780 +54801 54930 0.9990 +54801 55125 0.8340 +54801 55142 0.9990 +54801 55559 0.9990 +54801 55632 0.4070 +54801 55722 0.7580 +54801 55755 0.6980 +54801 55835 0.7200 +54801 57662 0.4940 +54801 79441 0.9990 +54801 79866 0.7300 +54801 79915 0.4510 +54801 79959 0.5670 +54801 80184 0.6000 +54801 80304 0.5230 +54801 80321 0.5370 +54801 83540 0.5020 +54801 84131 0.6070 +54801 84930 0.4420 +54801 93323 0.9990 +54801 95681 0.5100 +54801 114088 0.4350 +54801 115106 0.9990 +54801 117177 0.4990 +54801 121441 0.9930 +54801 134359 0.4770 +54801 153241 0.4840 +54801 163786 0.5370 +54801 203068 0.5660 +54801 221150 0.6200 +54801 259266 0.4710 +54801 347240 0.5470 +54801 440145 0.4560 +54801 642515 0.4340 +54801 728642 0.4990 +54802 54851 0.9250 +54802 54888 0.5400 +54802 54901 0.5620 +54802 54920 0.7010 +54802 54931 0.6070 +54802 54974 0.4210 +54802 55005 0.4950 +54802 55006 0.5790 +54802 55039 0.5350 +54802 55140 0.4560 +54802 55157 0.6160 +54802 55178 0.5380 +54802 55621 0.7340 +54802 55644 0.5080 +54802 55687 0.7670 +54802 55739 0.4290 +54802 55798 0.4450 +54802 56931 0.4720 +54802 57038 0.4230 +54802 57107 0.4920 +54802 57470 0.4750 +54802 57570 0.8430 +54802 60487 0.4640 +54802 60528 0.4950 +54802 63899 0.5400 +54802 64118 0.4060 +54802 64172 0.6900 +54802 64216 0.4990 +54802 64968 0.4010 +54802 65005 0.4580 +54802 65080 0.4740 +54802 79587 0.4470 +54802 79691 0.5740 +54802 79693 0.7280 +54802 79828 0.5160 +54802 79922 0.4980 +54802 80273 0.5430 +54802 80324 0.7320 +54802 81627 0.4060 +54802 81890 0.5670 +54802 83480 0.6460 +54802 84232 0.4580 +54802 84618 0.5010 +54802 84705 0.7550 +54802 84881 0.5630 +54802 87178 0.5090 +54802 90353 0.5160 +54802 91801 0.5820 +54802 91893 0.4120 +54802 92399 0.5770 +54802 92935 0.4410 +54802 93587 0.6930 +54802 113000 0.4230 +54802 113179 0.5480 +54802 115416 0.4420 +54802 117246 0.7470 +54802 123263 0.6830 +54802 124454 0.4480 +54802 127391 0.4630 +54802 131965 0.4410 +54802 134266 0.5870 +54802 134637 0.4530 +54802 142940 0.6260 +54802 158234 0.5260 +54802 196074 0.6160 +54802 221078 0.4100 +54802 285367 0.5170 +54802 339175 0.4510 +54802 374659 0.4840 +54805 54822 0.6450 +54805 54828 0.4550 +54805 54838 0.4620 +54805 54946 0.6880 +54805 57185 0.6190 +54805 57380 0.5980 +54805 57412 0.8180 +54805 57480 0.4020 +54805 64207 0.4220 +54805 64241 0.4820 +54805 64478 0.4150 +54805 79739 0.4130 +54805 79815 0.6040 +54805 80323 0.4680 +54805 81614 0.5830 +54805 84061 0.5950 +54805 84102 0.6720 +54805 84439 0.4760 +54805 90627 0.7650 +54805 91752 0.4280 +54805 94026 0.4880 +54805 119032 0.6060 +54805 140803 0.7840 +54805 149461 0.5870 +54805 152519 0.7400 +54805 254428 0.7880 +54805 348938 0.5830 +54805 375056 0.5290 +54806 54820 0.4380 +54806 54903 0.9650 +54806 54916 0.4440 +54806 54961 0.4220 +54806 55812 0.5750 +54806 55835 0.4700 +54806 56623 0.4040 +54806 57096 0.7490 +54806 57545 0.9960 +54806 57560 0.4200 +54806 57728 0.4570 +54806 63901 0.4100 +54806 64577 0.4910 +54806 65062 0.7480 +54806 65250 0.6980 +54806 79140 0.4500 +54806 79583 0.9600 +54806 79598 0.5990 +54806 79600 0.9790 +54806 79648 0.4810 +54806 79738 0.4770 +54806 79809 0.5870 +54806 79848 0.6030 +54806 79867 0.9630 +54806 80184 0.9880 +54806 80776 0.9680 +54806 84107 0.4310 +54806 84314 0.8210 +54806 90410 0.4520 +54806 91147 0.9930 +54806 91754 0.4630 +54806 93986 0.4470 +54806 95681 0.6430 +54806 117177 0.6950 +54806 129880 0.4510 +54806 166379 0.5850 +54806 167691 0.4150 +54806 171023 0.4010 +54806 200728 0.8780 +54806 200894 0.9110 +54806 259266 0.5020 +54806 261734 0.8600 +54806 284086 0.5470 +54806 374654 0.5850 +54806 387707 0.4750 +54807 84455 0.4140 +54807 135398 0.4460 +54808 54878 0.4630 +54808 55291 0.4540 +54808 55610 0.5510 +54808 55727 0.4560 +54808 57578 0.4560 +54808 57582 0.4030 +54808 60684 0.4950 +54808 64131 0.4490 +54808 64399 0.4280 +54808 83452 0.5180 +54808 89781 0.4390 +54808 144608 0.4160 +54808 253461 0.4290 +54808 283987 0.6030 +54808 339287 0.4100 +54809 55008 0.7400 +54809 55601 0.8930 +54809 56829 0.4210 +54809 57169 0.4350 +54809 64108 0.6070 +54809 64135 0.8370 +54809 64761 0.6680 +54809 79132 0.5250 +54809 83666 0.8040 +54809 85441 0.6260 +54809 91543 0.8580 +54809 94240 0.6400 +54809 129607 0.6010 +54809 151636 0.4370 +54809 219285 0.7940 +54809 253012 0.6510 +54809 375748 0.5140 +54810 78987 0.4600 +54810 374986 0.4080 +54811 56658 0.4440 +54811 56916 0.4650 +54811 81556 0.4260 +54811 84859 0.5340 +54811 90933 0.4570 +54811 93134 0.7950 +54811 94030 0.4810 +54811 149603 0.4420 +54811 150946 0.4510 +54811 245927 0.4160 +54811 375035 0.4650 +54811 403273 0.5060 +54811 646951 0.4750 +54813 55015 0.4420 +54813 55295 0.6430 +54813 55958 0.4970 +54813 57565 0.7520 +54813 64839 0.6330 +54813 80018 0.4200 +54813 115992 0.6760 +54813 122525 0.6500 +54813 170589 0.4550 +54813 205717 0.4050 +54814 54958 0.6070 +54814 57118 0.5770 +54814 57507 0.5710 +54814 58155 0.4330 +54814 64116 0.4580 +54814 65264 0.4160 +54814 79047 0.5770 +54814 79068 0.4670 +54814 84304 0.4800 +54814 89866 0.6090 +54814 93436 0.4310 +54814 120071 0.4450 +54814 129787 0.5810 +54814 132789 0.6440 +54814 134359 0.5450 +54814 144233 0.4180 +54814 145567 0.4410 +54814 146456 0.4580 +54814 147912 0.4500 +54814 158038 0.5070 +54814 219402 0.6220 +54814 253559 0.5060 +54814 257194 0.5140 +54814 284273 0.4510 +54814 388553 0.4720 +54814 390598 0.5270 +54814 100526835 0.6200 +54815 55226 0.4710 +54815 55636 0.4160 +54815 55766 0.5050 +54815 56257 0.4720 +54815 57167 0.8090 +54815 57332 0.5750 +54815 57459 0.9890 +54815 57473 0.6760 +54815 57504 0.9950 +54815 57592 0.7620 +54815 57621 0.4850 +54815 57680 0.4190 +54815 57794 0.5690 +54815 64426 0.6850 +54815 64769 0.4410 +54815 64919 0.5590 +54815 79101 0.4050 +54815 79685 0.5140 +54815 80012 0.4990 +54815 84232 0.5070 +54815 84289 0.4300 +54815 84733 0.5360 +54815 85235 0.4060 +54815 85236 0.5040 +54815 85509 0.8690 +54815 92815 0.4060 +54815 94239 0.5070 +54815 114825 0.4670 +54815 124245 0.4160 +54815 125997 0.5940 +54815 128312 0.4990 +54815 140685 0.6130 +54815 152485 0.5490 +54815 203259 0.6030 +54815 221613 0.4640 +54815 255626 0.4990 +54815 317772 0.4160 +54815 374887 0.4240 +54815 440093 0.5300 +54815 440686 0.5300 +54815 440689 0.4080 +54815 474382 0.5050 +54815 653604 0.7590 +54816 55100 0.4670 +54816 55345 0.4600 +54816 83448 0.5510 +54816 84062 0.4010 +54816 84146 0.4540 +54816 84331 0.4190 +54816 161424 0.4330 +54816 246269 0.4150 +54816 257218 0.4390 +54816 285367 0.4310 +54816 286205 0.4670 +54816 387856 0.4330 +54816 654429 0.4200 +54816 728734 0.4640 +54819 54931 0.4610 +54819 55082 0.6870 +54819 55145 0.8560 +54819 55342 0.4110 +54819 55660 0.5390 +54819 56259 0.5230 +54819 79753 0.5120 +54819 84263 0.5370 +54819 84950 0.5480 +54819 118924 0.5850 +54819 134553 0.4100 +54819 246329 0.6010 +54819 256281 0.4250 +54820 54821 0.4320 +54820 54875 0.4750 +54820 54930 0.4990 +54820 55055 0.6870 +54820 55083 0.5430 +54820 55142 0.5210 +54820 55559 0.4990 +54820 55577 0.4380 +54820 55582 0.5730 +54820 55605 0.5860 +54820 55614 0.5650 +54820 55746 0.7900 +54820 55755 0.4340 +54820 55835 0.7690 +54820 55839 0.4370 +54820 55860 0.4210 +54820 56850 0.4780 +54820 56992 0.5850 +54820 57576 0.6350 +54820 57731 0.5470 +54820 63971 0.6400 +54820 64105 0.4370 +54820 64837 0.6360 +54820 79441 0.4990 +54820 79648 0.4020 +54820 79734 0.4140 +54820 79866 0.5430 +54820 80323 0.4230 +54820 81565 0.9820 +54820 81930 0.6210 +54820 84643 0.6250 +54820 85458 0.4490 +54820 89927 0.4520 +54820 89953 0.4440 +54820 90060 0.4720 +54820 90410 0.4100 +54820 90990 0.5570 +54820 93323 0.5000 +54820 93594 0.5560 +54820 115106 0.4990 +54820 117177 0.5990 +54820 123803 0.4530 +54820 123811 0.5870 +54820 124602 0.6130 +54820 145508 0.4690 +54820 146909 0.5990 +54820 147700 0.4410 +54820 150483 0.4280 +54820 153241 0.4340 +54820 203062 0.7870 +54820 221458 0.5400 +54820 255027 0.5170 +54820 259266 0.5730 +54820 283489 0.4190 +54820 284403 0.6270 +54820 347240 0.4060 +54820 374654 0.6190 +54820 401145 0.6740 +54820 728642 0.5340 +54821 54892 0.4050 +54821 55010 0.6230 +54821 55055 0.6750 +54821 55143 0.7530 +54821 55165 0.6030 +54821 55215 0.5800 +54821 55247 0.5210 +54821 55257 0.4980 +54821 55355 0.5520 +54821 55388 0.7930 +54821 55635 0.6760 +54821 55723 0.4690 +54821 55732 0.5030 +54821 55789 0.5190 +54821 55839 0.6430 +54821 55929 0.5680 +54821 56852 0.4870 +54821 56992 0.6590 +54821 57082 0.4920 +54821 57405 0.6150 +54821 57650 0.4240 +54821 57673 0.9120 +54821 57696 0.4390 +54821 57697 0.6360 +54821 63967 0.4840 +54821 64105 0.6690 +54821 64151 0.7160 +54821 64946 0.6440 +54821 79000 0.6530 +54821 79003 0.4170 +54821 79019 0.6860 +54821 79075 0.5130 +54821 79733 0.5830 +54821 79801 0.5800 +54821 79980 0.4140 +54821 80010 0.9750 +54821 80198 0.4950 +54821 81610 0.4900 +54821 81930 0.6640 +54821 83461 0.5370 +54821 83540 0.7480 +54821 83903 0.4410 +54821 84271 0.6070 +54821 84661 0.4370 +54821 84893 0.4720 +54821 90381 0.4850 +54821 91687 0.5470 +54821 113115 0.5410 +54821 113130 0.6520 +54821 113675 0.4270 +54821 115825 0.4550 +54821 116028 0.5680 +54821 136332 0.5760 +54821 138639 0.5240 +54821 144455 0.5100 +54821 146909 0.5580 +54821 146956 0.4280 +54821 147841 0.6200 +54821 148534 0.4130 +54821 150468 0.5860 +54821 151648 0.7480 +54821 157313 0.5150 +54821 157570 0.5080 +54821 220042 0.7940 +54821 220134 0.7440 +54821 221150 0.7430 +54821 253714 0.4300 +54821 259266 0.6170 +54821 284366 0.4280 +54821 348235 0.5680 +54821 348654 0.4570 +54821 493860 0.4550 +54822 54946 0.6790 +54822 55283 0.5400 +54822 55503 0.7470 +54822 55870 0.4700 +54822 56302 0.7250 +54822 57185 0.4230 +54822 57192 0.6370 +54822 57380 0.6020 +54822 57620 0.5660 +54822 59341 0.7540 +54822 63895 0.4020 +54822 80228 0.5460 +54822 81614 0.4230 +54822 83464 0.4240 +54822 84061 0.7070 +54822 84102 0.7370 +54822 84876 0.6010 +54822 84888 0.4220 +54822 84952 0.5490 +54822 91860 0.4630 +54822 93129 0.5750 +54822 140803 0.9740 +54822 149461 0.6100 +54822 152519 0.4550 +54822 154197 0.4590 +54822 162514 0.7300 +54822 163688 0.4530 +54822 197259 0.9320 +54822 254428 0.7800 +54822 255231 0.5660 +54822 256356 0.4560 +54822 353174 0.4220 +54823 57085 0.4450 +54823 63948 0.4310 +54823 81627 0.5840 +54823 158521 0.4990 +54823 205860 0.4750 +54823 404672 0.4420 +54823 645864 0.4440 +54825 57722 0.4330 +54825 65217 0.7580 +54825 80021 0.4040 +54825 83715 0.5170 +54825 84435 0.4820 +54825 85442 0.5300 +54825 114787 0.5840 +54825 257629 0.8150 +54825 389118 0.4310 +54825 390275 0.4100 +54826 54870 0.4100 +54826 54891 0.4780 +54826 57614 0.4730 +54826 57645 0.4580 +54826 57697 0.5540 +54826 63920 0.5410 +54826 64900 0.4050 +54826 79605 0.6740 +54826 79722 0.4160 +54826 79725 0.5900 +54826 83594 0.4180 +54826 84288 0.5280 +54826 84547 0.5130 +54826 90355 0.5540 +54826 90362 0.5490 +54826 114821 0.4450 +54826 124751 0.6660 +54826 145482 0.4310 +54826 203245 0.4070 +54826 267002 0.4380 +54826 283254 0.6030 +54826 284370 0.4130 +54826 441282 0.4800 +54826 643641 0.4830 +54827 54860 0.5450 +54827 120400 0.7920 +54827 148418 0.5190 +54827 387849 0.4790 +54827 730087 0.4020 +54828 55061 0.4190 +54828 55062 0.4890 +54828 55628 0.4280 +54828 55653 0.9830 +54828 56254 0.4390 +54828 56270 0.4300 +54828 56606 0.4760 +54828 57480 0.5080 +54828 57508 0.4060 +54828 57692 0.5580 +54828 63897 0.4860 +54828 80262 0.9470 +54828 80310 0.4170 +54828 81671 0.4370 +54828 83887 0.4390 +54828 84669 0.5010 +54828 90416 0.4490 +54828 92106 0.4480 +54828 114827 0.4450 +54828 124773 0.4560 +54828 126859 0.4590 +54828 138009 0.4150 +54828 140460 0.4030 +54828 147179 0.4520 +54828 150248 0.4350 +54828 151295 0.4790 +54828 160335 0.4140 +54828 169792 0.4400 +54828 170712 0.4220 +54828 256764 0.4260 +54828 285331 0.4040 +54828 375056 0.4400 +54828 387509 0.4080 +54828 728378 0.4130 +54829 56262 0.4310 +54829 64094 0.4940 +54829 79442 0.4680 +54829 79885 0.8080 +54829 80131 0.4590 +54829 84624 0.4830 +54829 85476 0.4030 +54829 116064 0.4140 +54829 122769 0.4660 +54829 148113 0.4530 +54829 151887 0.4470 +54829 339291 0.4270 +54829 376132 0.4490 +54829 390205 0.4500 +54829 440387 0.7260 +54829 474354 0.4230 +54830 55285 0.5750 +54830 55301 0.4440 +54830 55746 0.8380 +54830 55916 0.7060 +54830 57122 0.8600 +54830 57727 0.5630 +54830 79023 0.4840 +54830 79902 0.6880 +54830 81856 0.4110 +54830 81929 0.6810 +54830 90317 0.4300 +54830 91181 0.5000 +54830 127396 0.4800 +54830 129401 0.7170 +54830 137362 0.4020 +54830 138881 0.5010 +54830 139212 0.4960 +54830 157869 0.4440 +54830 197322 0.4540 +54830 283162 0.4790 +54830 338675 0.5170 +54830 348995 0.5280 +54830 376497 0.4440 +54830 390197 0.4100 +54830 390927 0.4320 +54830 442197 0.4340 +54830 554251 0.4730 +54830 653404 0.4800 +54830 100101267 0.5730 +54831 55107 0.5400 +54831 57101 0.4710 +54831 83546 0.4930 +54831 92595 0.5050 +54831 387509 0.4850 +54832 54873 0.4050 +54832 55102 0.4230 +54832 55187 0.4620 +54832 55668 0.4230 +54832 55737 0.7910 +54832 57568 0.5440 +54832 65018 0.6540 +54832 65992 0.4660 +54832 79608 0.5630 +54832 80194 0.4270 +54832 80208 0.6620 +54832 83930 0.4410 +54832 84162 0.5530 +54832 84286 0.5110 +54832 84955 0.6190 +54832 84966 0.4200 +54832 85329 0.6870 +54832 116442 0.6050 +54832 118987 0.6250 +54832 120892 0.6170 +54832 145741 0.5430 +54832 157680 0.6290 +54832 157807 0.4400 +54832 388125 0.5820 +54832 391356 0.6290 +54834 54936 0.5150 +54834 55506 0.7950 +54834 55737 0.5840 +54834 57616 0.4330 +54834 83666 0.7390 +54834 84335 0.5380 +54834 140733 0.4230 +54834 165631 0.7750 +54834 200162 0.4660 +54834 221443 0.6000 +54836 56302 0.5020 +54836 57111 0.4460 +54836 65267 0.4340 +54838 55669 0.4040 +54838 57412 0.5410 +54838 64478 0.6660 +54838 80018 0.4410 +54838 81552 0.4100 +54838 91752 0.6590 +54838 115209 0.4840 +54838 118980 0.4620 +54838 119032 0.5850 +54838 120376 0.4890 +54839 55181 0.4470 +54839 55296 0.8030 +54839 55323 0.5430 +54839 55755 0.4320 +54839 56906 0.6870 +54839 64770 0.4050 +54839 79096 0.9060 +54839 84276 0.9810 +54839 84542 0.8050 +54839 91978 0.9870 +54839 130940 0.5370 +54839 147650 0.4480 +54839 283461 0.4470 +54839 401097 0.4440 +54839 100130742 0.4270 +54840 55129 0.5670 +54840 55325 0.4020 +54840 55743 0.8300 +54840 55775 0.9640 +54840 57017 0.8450 +54840 57107 0.8230 +54840 64374 0.6050 +54840 64421 0.4300 +54840 64858 0.4030 +54840 65055 0.4220 +54840 79080 0.4090 +54840 79661 0.5190 +54840 79840 0.8060 +54840 81847 0.4080 +54840 84274 0.4500 +54840 84681 0.4650 +54840 116447 0.4430 +54840 140290 0.4520 +54840 200558 0.9920 +54840 252969 0.4130 +54840 286257 0.8330 +54840 348654 0.4010 +54840 643155 0.4320 +54840 653519 0.4440 +54841 55247 0.5420 +54841 55739 0.4010 +54841 57697 0.5790 +54841 79070 0.6400 +54841 79621 0.4010 +54841 80198 0.6670 +54841 84893 0.4660 +54841 139231 0.5280 +54841 253769 0.4450 +54841 374618 0.4230 +54842 55454 0.4480 +54842 55530 0.4630 +54842 55686 0.4010 +54842 64645 0.5100 +54842 64747 0.4320 +54842 79157 0.6100 +54842 79847 0.6020 +54842 84255 0.4840 +54842 84641 0.5150 +54842 84804 0.7050 +54842 84975 0.5640 +54842 94101 0.4120 +54842 113402 0.4160 +54842 126321 0.5770 +54842 136306 0.4860 +54842 147685 0.4750 +54842 150709 0.4300 +54842 160335 0.4570 +54842 201305 0.4150 +54842 256471 0.5600 +54842 374986 0.4900 +54842 375035 0.4030 +54842 388931 0.4510 +54842 100131211 0.5350 +54843 55319 0.4410 +54843 64145 0.4080 +54843 79083 0.9420 +54843 201294 0.5870 +54843 401258 0.4510 +54845 55103 0.4730 +54845 55109 0.5030 +54845 55160 0.4200 +54845 55740 0.9080 +54845 55750 0.5090 +54845 55796 0.4520 +54845 56829 0.4990 +54845 57085 0.5950 +54845 57111 0.7950 +54845 57448 0.4220 +54845 57670 0.5410 +54845 58155 0.4440 +54845 58495 0.6190 +54845 58517 0.4670 +54845 79954 0.4480 +54845 79977 0.8910 +54845 80004 0.9030 +54845 80312 0.4060 +54845 80853 0.5060 +54845 83894 0.4040 +54845 84530 0.4480 +54845 85414 0.4370 +54845 92906 0.4350 +54845 114569 0.5780 +54845 126695 0.4970 +54845 148266 0.4180 +54845 202559 0.5420 +54845 219654 0.4520 +54845 221662 0.4360 +54845 348093 0.7620 +54845 388523 0.4540 +54847 54932 0.4250 +54847 55233 0.4670 +54847 55677 0.4910 +54847 55703 0.4250 +54847 58986 0.4480 +54847 65985 0.4100 +54847 79577 0.4590 +54847 84172 0.4200 +54847 84246 0.4530 +54847 84337 0.4550 +54847 90459 0.6470 +54847 93594 0.4320 +54847 143689 0.4670 +54847 192669 0.4810 +54847 192670 0.4030 +54847 340152 0.5060 +54848 57117 0.6020 +54848 79807 0.5470 +54848 80164 0.4500 +54848 89848 0.4560 +54848 116835 0.5180 +54848 127069 0.4160 +54848 128272 0.5410 +54848 142686 0.4110 +54848 259217 0.5180 +54848 100271715 0.4690 +54849 64092 0.4310 +54849 64779 0.5080 +54849 79007 0.6750 +54849 79865 0.4280 +54849 81565 0.5810 +54849 84501 0.5990 +54849 92822 0.5640 +54849 124044 0.4550 +54849 124045 0.6020 +54849 146547 0.5340 +54850 55832 0.5680 +54850 59286 0.4550 +54850 92154 0.4170 +54850 93145 0.4050 +54850 123879 0.5030 +54850 144699 0.5090 +54850 162993 0.4690 +54850 222235 0.4190 +54851 55662 0.4310 +54851 57730 0.4150 +54851 57763 0.6320 +54851 60386 0.5300 +54851 63943 0.8890 +54851 83892 0.4450 +54851 84210 0.4170 +54851 84437 0.5310 +54851 90362 0.4710 +54851 91074 0.4170 +54851 91603 0.4460 +54851 124995 0.4220 +54851 136319 0.4490 +54851 136991 0.4080 +54851 317754 0.4700 +54851 375248 0.4110 +54851 388468 0.4700 +54851 388695 0.4150 +54851 400986 0.4030 +54851 404785 0.4700 +54851 554226 0.4600 +54851 641455 0.4730 +54851 100287399 0.4470 +54851 100288966 0.4710 +54851 100996331 0.4780 +54851 102723502 0.4740 +54851 102724631 0.4730 +54852 80777 0.4170 +54852 85315 0.5290 +54852 116254 0.4380 +54852 124936 0.6090 +54852 164091 0.5300 +54852 283554 0.4110 +54852 344838 0.4840 +54853 54974 0.4130 +54853 55127 0.4750 +54853 55131 0.4160 +54853 55256 0.4130 +54853 55622 0.6530 +54853 55720 0.4460 +54853 55759 0.9180 +54853 57002 0.4100 +54853 57226 0.5010 +54853 57418 0.5980 +54853 64318 0.4950 +54853 83743 0.4190 +54853 83786 0.5320 +54853 84058 0.4350 +54853 84128 0.4400 +54853 84154 0.4300 +54853 84172 0.4610 +54853 84285 0.6670 +54853 84365 0.5810 +54853 84908 0.4260 +54853 84942 0.4530 +54853 88745 0.4690 +54853 92856 0.4360 +54853 117246 0.5430 +54853 153527 0.4970 +54853 221830 0.4130 +54853 285855 0.5450 +54853 387338 0.4840 +54853 102157402 0.4110 +54854 55223 0.4670 +54854 80829 0.4140 +54854 146057 0.4430 +54854 149076 0.4550 +54854 158135 0.4640 +54854 392399 0.4120 +54855 55125 0.8320 +54855 55437 0.4420 +54855 64895 0.4150 +54855 116840 0.5190 +54855 146849 0.4990 +54855 255231 0.4370 +54855 439996 0.4100 +54855 100423062 0.4280 +54855 102723407 0.5160 +54856 54882 0.4770 +54856 55096 0.4170 +54856 55119 0.4470 +54856 55245 0.4380 +54856 55421 0.5340 +54856 55657 0.6000 +54856 55870 0.9590 +54856 57585 0.8720 +54856 58517 0.4720 +54856 79811 0.4840 +54856 80196 0.4590 +54856 84967 0.4650 +54856 119391 0.4560 +54856 123099 0.4600 +54856 134353 0.4190 +54856 164118 0.5750 +54856 259282 0.4270 +54856 441273 0.4190 +54857 64843 0.5970 +54857 65220 0.4370 +54857 79153 0.4650 +54857 79944 0.5470 +54857 84812 0.4190 +54857 114822 0.4520 +54857 342977 0.4020 +54858 55644 0.4260 +54858 57798 0.4350 +54858 79036 0.4590 +54858 81559 0.4250 +54858 83642 0.6290 +54858 126364 0.6220 +54858 126792 0.4240 +54858 132989 0.4440 +54858 653082 0.4160 +54859 55140 0.9960 +54859 55250 0.9920 +54859 55291 0.5630 +54859 55831 0.4290 +54859 57050 0.4930 +54859 81605 0.5100 +54859 90353 0.5990 +54859 91801 0.6450 +54859 285367 0.6160 +54859 285381 0.4960 +54859 348180 0.5790 +54859 389206 0.4150 +54859 653604 0.4530 +54860 55365 0.4870 +54860 64231 0.4160 +54860 64232 0.4820 +54860 80830 0.4250 +54860 83998 0.5040 +54860 92736 0.4350 +54860 139135 0.4640 +54860 245802 0.9310 +54860 388364 0.6240 +54860 643680 0.9150 +54860 653808 0.8010 +54860 107987155 0.5070 +54861 55784 0.4100 +54861 81792 0.7150 +54861 118788 0.4630 +54861 123096 0.4100 +54861 390323 0.4080 +54862 55422 0.4030 +54862 56987 0.4180 +54862 57335 0.5880 +54862 79643 0.8170 +54862 84313 0.6690 +54862 92421 0.9320 +54862 128866 0.7980 +54862 100526767 0.6670 +54863 54976 0.5220 +54863 57608 0.4900 +54863 64236 0.4910 +54863 91298 0.4100 +54863 163590 0.4440 +54863 285362 0.4510 +54865 54984 0.4030 +54865 55105 0.4550 +54865 55109 0.4550 +54865 55127 0.4150 +54865 55131 0.6230 +54865 55153 0.6650 +54865 55226 0.4300 +54865 55299 0.6060 +54865 55646 0.7390 +54865 55651 0.4870 +54865 55668 0.4510 +54865 55720 0.5930 +54865 55760 0.6650 +54865 55794 0.5370 +54865 56342 0.4930 +54865 56829 0.4340 +54865 56919 0.4640 +54865 57050 0.5280 +54865 57062 0.5540 +54865 57161 0.4210 +54865 57532 0.4250 +54865 57647 0.5150 +54865 57696 0.5220 +54865 58516 0.4840 +54865 60625 0.4580 +54865 64318 0.5680 +54865 64434 0.8730 +54865 64794 0.5220 +54865 65095 0.6430 +54865 79039 0.5590 +54865 79050 0.4680 +54865 79159 0.6280 +54865 79665 0.4990 +54865 79954 0.4760 +54865 80135 0.4260 +54865 83732 0.4280 +54865 84154 0.7470 +54865 84294 0.5540 +54865 84365 0.6910 +54865 84450 0.4210 +54865 84549 0.8630 +54865 84946 0.5300 +54865 88745 0.4320 +54865 91752 0.4510 +54865 92856 0.5750 +54865 94137 0.5030 +54865 117246 0.7460 +54865 128239 0.4030 +54865 161424 0.4130 +54865 165545 0.6650 +54865 219578 0.4510 +54865 221830 0.4130 +54865 253559 0.4240 +54865 283106 0.4700 +54865 339230 0.5580 +54865 339456 0.5950 +54865 345630 0.7710 +54865 374877 0.4120 +54865 375033 0.4550 +54865 386677 0.4030 +54865 401089 0.4160 +54865 692312 0.4670 +54866 56667 0.4770 +54866 81706 0.9240 +54866 94274 0.8590 +54866 115353 0.5180 +54866 286753 0.4580 +54867 54929 0.4290 +54867 54968 0.5440 +54867 55218 0.9200 +54867 55751 0.4130 +54867 57122 0.4200 +54867 60487 0.4810 +54867 60509 0.4360 +54867 64091 0.4880 +54867 64922 0.5240 +54867 79041 0.6300 +54867 81929 0.4970 +54867 83943 0.4460 +54867 84236 0.4890 +54867 84814 0.4800 +54867 131920 0.4140 +54867 147670 0.5760 +54867 158135 0.4550 +54867 199953 0.4930 +54867 202915 0.4140 +54867 401265 0.6000 +54868 55530 0.4880 +54868 64342 0.4370 +54868 65990 0.5660 +54868 136306 0.4700 +54868 170572 0.4500 +54868 201305 0.4450 +54869 83715 0.6000 +54869 129138 0.4700 +54869 222642 0.5160 +54869 448834 0.4060 +54870 55703 0.4670 +54870 55779 0.4730 +54870 57467 0.4810 +54870 57470 0.4050 +54870 79605 0.5360 +54870 84074 0.7390 +54870 84076 0.4280 +54870 84172 0.4580 +54870 84752 0.5050 +54870 84991 0.4970 +54870 113444 0.4280 +54870 122622 0.5610 +54870 145482 0.4030 +54870 150483 0.4750 +54870 162333 0.5100 +54870 221322 0.4060 +54870 283254 0.5470 +54870 283629 0.5600 +54870 401138 0.4540 +54870 401548 0.4390 +54872 55650 0.8060 +54872 57654 0.4170 +54872 64801 0.4620 +54872 65220 0.4160 +54872 65258 0.5910 +54872 79087 0.4100 +54872 80055 0.6940 +54872 80235 0.7490 +54872 81545 0.4540 +54872 84179 0.5520 +54872 84720 0.6360 +54872 84750 0.4350 +54872 84992 0.6920 +54872 93183 0.8450 +54872 93210 0.6320 +54872 94005 0.4670 +54872 128869 0.4450 +54872 153396 0.5600 +54872 170960 0.5150 +54872 284098 0.7370 +54873 57642 0.4380 +54873 64067 0.4240 +54873 64645 0.4640 +54873 79608 0.4270 +54873 79642 0.4690 +54873 80724 0.4240 +54873 83938 0.4430 +54873 84966 0.4590 +54873 90134 0.4280 +54873 121053 0.5410 +54873 153830 0.5080 +54873 157807 0.4750 +54873 163404 0.4570 +54873 391059 0.4120 +54873 401265 0.4460 +54874 55789 0.4140 +54874 55845 0.4130 +54874 57381 0.6570 +54874 57522 0.4590 +54874 64422 0.9170 +54874 80746 0.7830 +54874 81624 0.6390 +54874 81839 0.4160 +54874 91010 0.4890 +54874 115548 0.7690 +54874 115677 0.4370 +54874 128239 0.4070 +54874 147179 0.7080 +54874 200894 0.4210 +54875 55125 0.6110 +54875 55165 0.7620 +54875 55171 0.4300 +54875 55722 0.5710 +54875 55755 0.6700 +54875 55835 0.8750 +54875 57132 0.5120 +54875 57545 0.5840 +54875 64225 0.5960 +54875 64793 0.4160 +54875 79598 0.4730 +54875 79648 0.4090 +54875 79839 0.4440 +54875 79902 0.7840 +54875 79959 0.4030 +54875 80184 0.8190 +54875 80817 0.4950 +54875 81565 0.4100 +54875 81929 0.4200 +54875 84131 0.4880 +54875 84902 0.4460 +54875 85444 0.4780 +54875 85459 0.4490 +54875 95681 0.4020 +54875 116840 0.8450 +54875 121441 0.5510 +54875 123811 0.4710 +54875 132320 0.4030 +54875 140732 0.4670 +54875 152185 0.6080 +54875 153241 0.8030 +54875 161582 0.4220 +54875 162681 0.5530 +54875 163786 0.8230 +54875 200894 0.4600 +54875 201255 0.9230 +54875 259266 0.5150 +54875 284403 0.4500 +54875 375686 0.7930 +54875 101927581 0.4010 +54876 54939 0.5040 +54876 54951 0.4990 +54876 55070 0.9360 +54876 55208 0.5280 +54876 55626 0.9000 +54876 55827 0.9000 +54876 55832 0.5290 +54876 55905 0.7910 +54876 64151 0.7230 +54876 64326 0.9000 +54876 64708 0.4310 +54876 79016 0.9240 +54876 79269 0.9080 +54876 79707 0.4530 +54876 80067 0.9080 +54876 80306 0.5630 +54876 80344 0.9000 +54876 84259 0.5000 +54876 89781 0.4180 +54876 90379 0.9590 +54876 138009 0.5400 +54876 139170 0.5400 +54876 139425 0.5400 +54876 139886 0.5600 +54876 149951 0.4990 +54876 150684 0.5040 +54876 170622 0.4990 +54876 196074 0.4110 +54876 254251 0.7160 +54876 285268 0.4530 +54876 285429 0.5400 +54876 340578 0.5400 +54876 347442 0.5400 +54877 55216 0.4810 +54877 57614 0.6900 +54877 64282 0.4910 +54877 84640 0.4180 +54877 284417 0.4200 +54877 101060200 0.4850 +54878 55610 0.6300 +54878 57628 0.5540 +54878 57722 0.5310 +54878 79792 0.4750 +54878 79930 0.4250 +54878 127933 0.4370 +54878 197335 0.4490 +54879 55283 0.4240 +54879 60561 0.5950 +54880 55023 0.4670 +54880 57332 0.9710 +54880 63035 0.6930 +54880 64319 0.4750 +54880 64682 0.9020 +54880 79184 0.9120 +54880 80012 0.9280 +54880 84108 0.9320 +54880 84295 0.4130 +54880 84333 0.8500 +54880 84444 0.4950 +54880 84678 0.9860 +54880 84733 0.9420 +54880 84759 0.9990 +54880 85417 0.5300 +54880 119504 0.9000 +54880 140459 0.5400 +54880 166979 0.5700 +54880 246184 0.9000 +54880 729262 0.4930 +54881 54973 0.4360 +54881 55127 0.7470 +54881 55153 0.8820 +54881 55272 0.5870 +54881 55299 0.4270 +54881 55341 0.6310 +54881 55591 0.4190 +54881 55759 0.8290 +54881 55781 0.4870 +54881 55794 0.4200 +54881 55813 0.7410 +54881 56342 0.4880 +54881 56902 0.4170 +54881 56984 0.4570 +54881 57050 0.6330 +54881 57109 0.4520 +54881 57418 0.9990 +54881 57559 0.4070 +54881 57647 0.5930 +54881 57680 0.9080 +54881 57696 0.4580 +54881 64216 0.4480 +54881 64318 0.6070 +54881 65083 0.5730 +54881 79050 0.5750 +54881 79707 0.9710 +54881 79923 0.5340 +54881 79954 0.4230 +54881 80312 0.5020 +54881 81875 0.5320 +54881 81887 0.9980 +54881 84128 0.8750 +54881 84135 0.7570 +54881 84148 0.9010 +54881 84154 0.5620 +54881 84273 0.4730 +54881 84294 0.4240 +54881 84365 0.4740 +54881 84549 0.5710 +54881 84661 0.5830 +54881 84916 0.7150 +54881 84946 0.5340 +54881 88745 0.5910 +54881 90441 0.4080 +54881 90459 0.4680 +54881 92170 0.4490 +54881 92856 0.6580 +54881 116832 0.7080 +54881 124944 0.9010 +54881 125476 0.9040 +54881 140801 0.5000 +54881 200916 0.6670 +54881 284058 0.9000 +54881 285855 0.5400 +54881 374618 0.4170 +54881 387129 0.4520 +54881 647310 0.4250 +54881 100505478 0.4450 +54881 100529209 0.5400 +54882 55870 0.4570 +54882 55904 0.4040 +54882 65083 0.4460 +54882 79027 0.4850 +54882 79811 0.4380 +54882 83548 0.4070 +54882 83697 0.7160 +54882 196441 0.5430 +54882 375056 0.4220 +54883 54955 0.7880 +54883 55100 0.8000 +54883 55110 0.9790 +54883 55276 0.7880 +54883 55322 0.5300 +54883 55696 0.9830 +54883 55702 0.9990 +54883 55760 0.4360 +54883 56919 0.4720 +54883 56949 0.9740 +54883 57461 0.9930 +54883 57560 0.4950 +54883 57647 0.4020 +54883 57703 0.9970 +54883 58509 0.6700 +54883 60625 0.5170 +54883 63932 0.4990 +54883 79165 0.5510 +54883 79446 0.8760 +54883 79576 0.5470 +54883 79665 0.5030 +54883 79706 0.6900 +54883 79753 0.7060 +54883 80183 0.7880 +54883 83443 0.5000 +54883 83938 0.6420 +54883 84316 0.4530 +54883 84811 0.8240 +54883 84967 0.5480 +54883 85476 0.4070 +54883 90957 0.4260 +54883 126259 0.4530 +54883 128077 0.6420 +54883 133688 0.6420 +54883 134526 0.6420 +54883 146894 0.6640 +54883 147650 0.4540 +54883 154007 0.6780 +54883 163859 0.7050 +54883 164045 0.5690 +54883 165545 0.4140 +54883 167127 0.6420 +54883 167410 0.7880 +54883 170506 0.4030 +54883 196441 0.4120 +54883 220074 0.6420 +54883 221301 0.5490 +54883 222183 0.6420 +54883 223082 0.5420 +54883 257218 0.4350 +54883 440138 0.4950 +54883 645191 0.5440 +54883 100534599 0.9930 +54884 56603 0.4420 +54884 83875 0.4440 +54884 84173 0.4050 +54884 91734 0.4270 +54884 137682 0.8330 +54884 145226 0.9340 +54884 157506 0.9290 +54884 158835 0.9030 +54884 195814 0.9280 +54884 339761 0.9280 +54884 340390 0.8330 +54885 55076 0.5480 +54885 55330 0.4990 +54885 55633 0.4160 +54885 55773 0.4420 +54885 57188 0.5130 +54885 57536 0.5030 +54885 79710 0.4720 +54885 79871 0.4160 +54885 81567 0.5010 +54885 84062 0.4990 +54885 112479 0.4410 +54885 114926 0.4300 +54885 126868 0.5270 +54885 127829 0.4210 +54885 128637 0.5900 +54885 130340 0.5170 +54885 145282 0.7550 +54885 158158 0.4100 +54885 161514 0.5440 +54885 219858 0.4330 +54885 254272 0.4100 +54885 286451 0.5730 +54885 339122 0.4190 +54885 388552 0.4990 +54885 389177 0.5590 +54885 401024 0.4280 +54886 79948 0.5900 +54887 54899 0.5060 +54887 55024 0.4310 +54887 55833 0.4960 +54887 57184 0.4220 +54887 57661 0.6610 +54887 57705 0.4710 +54887 64771 0.5950 +54887 79660 0.4030 +54887 127018 0.4480 +54887 221895 0.4900 +54887 221937 0.4230 +54887 222663 0.5100 +54888 54890 0.5940 +54888 54915 0.6060 +54888 54920 0.5340 +54888 54931 0.5790 +54888 54974 0.5440 +54888 55006 0.6710 +54888 55039 0.5200 +54888 55131 0.5520 +54888 55140 0.5190 +54888 55153 0.6170 +54888 55170 0.4010 +54888 55226 0.8410 +54888 55250 0.5570 +54888 55299 0.8770 +54888 55341 0.5810 +54888 55621 0.8040 +54888 55623 0.4250 +54888 55646 0.4700 +54888 55651 0.4770 +54888 55687 0.4130 +54888 55695 0.7250 +54888 55720 0.7170 +54888 55759 0.7540 +54888 55783 0.4230 +54888 55798 0.4470 +54888 55813 0.4930 +54888 56339 0.8550 +54888 56902 0.5500 +54888 56931 0.5200 +54888 57062 0.4610 +54888 57570 0.6670 +54888 57604 0.5340 +54888 57696 0.4970 +54888 57721 0.7210 +54888 60487 0.7210 +54888 60528 0.6800 +54888 63899 0.6630 +54888 64118 0.5070 +54888 64216 0.4210 +54888 64318 0.7560 +54888 64425 0.5560 +54888 64783 0.4440 +54888 64794 0.5020 +54888 64848 0.5370 +54888 65083 0.4540 +54888 79039 0.6130 +54888 79066 0.5020 +54888 79068 0.5220 +54888 79159 0.5300 +54888 79691 0.5480 +54888 79730 0.8430 +54888 79872 0.4110 +54888 79954 0.4190 +54888 79979 0.5440 +54888 80135 0.5820 +54888 80324 0.7660 +54888 81627 0.6160 +54888 81890 0.6080 +54888 83448 0.4950 +54888 83480 0.6660 +54888 83743 0.7100 +54888 84128 0.7030 +54888 84154 0.7230 +54888 84172 0.6350 +54888 84273 0.5010 +54888 84365 0.8080 +54888 84549 0.6340 +54888 84916 0.6100 +54888 84946 0.5600 +54888 85476 0.5080 +54888 90353 0.5480 +54888 91746 0.7610 +54888 91801 0.6240 +54888 91893 0.4730 +54888 92170 0.4340 +54888 93587 0.7130 +54888 113179 0.6500 +54888 113802 0.5000 +54888 115708 0.7530 +54888 117246 0.7480 +54888 123263 0.7090 +54888 130916 0.5130 +54888 131965 0.4380 +54888 134637 0.4530 +54888 142940 0.6840 +54888 152992 0.5660 +54888 158234 0.4540 +54888 161424 0.4370 +54888 196074 0.4310 +54888 200916 0.4050 +54888 221078 0.8030 +54888 221120 0.5650 +54888 253943 0.4740 +54888 285855 0.4510 +54888 339175 0.4140 +54888 345630 0.4320 +54888 387129 0.4240 +54888 387338 0.6620 +54888 389840 0.5130 +54890 54915 0.9570 +54890 55421 0.5970 +54890 55695 0.4150 +54890 56339 0.9220 +54890 57721 0.9560 +54890 63935 0.5380 +54890 64783 0.8890 +54890 64848 0.9210 +54890 64863 0.7020 +54890 79066 0.8440 +54890 79068 0.9900 +54890 79730 0.5410 +54890 79828 0.4520 +54890 79830 0.4200 +54890 79872 0.7630 +54890 79923 0.5070 +54890 84266 0.6070 +54890 84964 0.6560 +54890 91746 0.9200 +54890 91801 0.6870 +54890 93587 0.4220 +54890 116372 0.4340 +54890 121642 0.6250 +54890 130074 0.4340 +54890 131965 0.4620 +54890 221120 0.7180 +54890 253943 0.9020 +54891 55929 0.5610 +54891 57634 0.7770 +54891 58508 0.4020 +54891 64318 0.4850 +54891 64431 0.6200 +54891 64900 0.4380 +54891 79913 0.9320 +54891 81611 0.7200 +54891 83444 0.9410 +54891 90362 0.4320 +54891 92747 0.4160 +54891 93973 0.9410 +54891 125476 0.9730 +54891 205717 0.4150 +54891 283899 0.9910 +54892 55010 0.5180 +54892 55055 0.7130 +54892 55112 0.6050 +54892 55143 0.7900 +54892 55165 0.5920 +54892 55215 0.8160 +54892 55320 0.4600 +54892 55355 0.5670 +54892 55388 0.6760 +54892 55635 0.6430 +54892 55723 0.4340 +54892 55766 0.4990 +54892 55789 0.4630 +54892 55839 0.7120 +54892 56992 0.5630 +54892 57082 0.4170 +54892 57405 0.5560 +54892 57488 0.6490 +54892 63967 0.4050 +54892 64105 0.5680 +54892 64151 0.9470 +54892 79019 0.4760 +54892 79172 0.5030 +54892 79648 0.8450 +54892 79677 0.4780 +54892 79682 0.6670 +54892 79801 0.8540 +54892 81620 0.5180 +54892 81930 0.5980 +54892 83540 0.8410 +54892 84057 0.6250 +54892 84296 0.4670 +54892 84823 0.5270 +54892 85236 0.5230 +54892 94239 0.5870 +54892 113130 0.5700 +54892 114799 0.4570 +54892 115426 0.4080 +54892 122769 0.4180 +54892 128312 0.5100 +54892 146909 0.4320 +54892 151648 0.8060 +54892 157313 0.4180 +54892 157570 0.5860 +54892 220134 0.5530 +54892 221150 0.7110 +54892 255626 0.5080 +54892 259266 0.6630 +54892 474382 0.4990 +54892 653604 0.6180 +54892 728637 0.4440 +54893 57530 0.4390 +54893 57560 0.7630 +54893 79659 0.6480 +54893 89832 0.5440 +54893 89839 0.6670 +54893 136332 0.4950 +54893 161725 0.8080 +54893 342184 0.6540 +54893 554282 0.4080 +54893 643699 0.5630 +54893 653075 0.4560 +54893 653820 0.4040 +54893 727909 0.4810 +54893 728498 0.4400 +54893 101059918 0.4280 +54894 55294 0.4480 +54894 55366 0.9920 +54894 57045 0.4080 +54894 57216 0.6030 +54894 58508 0.5640 +54894 59352 0.7810 +54894 64840 0.6080 +54894 79728 0.4020 +54894 84133 0.8770 +54894 84870 0.9720 +54894 85407 0.6420 +54894 89780 0.8130 +54894 89795 0.4230 +54894 139285 0.4810 +54894 147111 0.5500 +54894 284654 0.9990 +54894 340419 0.9910 +54894 343637 0.9730 +54896 55238 0.5940 +54896 55255 0.5450 +54896 57192 0.4160 +54896 140775 0.5670 +54896 151112 0.4500 +54896 153129 0.5380 +54896 203228 0.5750 +54896 206358 0.5650 +54897 57057 0.5210 +54897 94241 0.4510 +54897 116143 0.4320 +54897 162239 0.8930 +54897 196528 0.4030 +54898 79071 0.4090 +54898 79839 0.5700 +54898 79966 0.4910 +54898 80320 0.6270 +54898 83401 0.5530 +54898 84649 0.8410 +54898 115290 0.4380 +54898 128178 0.5810 +54898 136259 0.6710 +54898 138046 0.4040 +54898 158833 0.8650 +54898 201562 0.9340 +54898 221711 0.5540 +54898 286827 0.6150 +54898 401494 0.9220 +54899 55024 0.7820 +54899 57661 0.8210 +54899 60625 0.5290 +54899 65266 0.4250 +54899 79570 0.6930 +54899 79932 0.4460 +54899 79991 0.4460 +54899 80169 0.4770 +54899 81929 0.6950 +54899 83648 0.6080 +54899 84196 0.5460 +54899 118788 0.4190 +54899 163223 0.6040 +54899 200734 0.4740 +54899 200845 0.4860 +54899 221895 0.4470 +54899 286046 0.4700 +54900 54923 0.4640 +54900 79037 0.4370 +54900 114836 0.5490 +54900 150365 0.4090 +54900 151888 0.5840 +54900 166752 0.4120 +54900 388512 0.4290 +54900 389643 0.4500 +54901 55171 0.4330 +54901 55253 0.4490 +54901 55316 0.4230 +54901 55644 0.4470 +54901 55687 0.4510 +54901 56999 0.7830 +54901 57118 0.6690 +54901 57818 0.4180 +54901 60685 0.4450 +54901 63892 0.4430 +54901 64210 0.8340 +54901 64965 0.4460 +54901 79068 0.8720 +54901 79092 0.5880 +54901 79691 0.4200 +54901 80320 0.5070 +54901 80332 0.5090 +54901 83795 0.4260 +54901 84327 0.6820 +54901 84705 0.4240 +54901 87178 0.4110 +54901 89866 0.4310 +54901 90353 0.4790 +54901 92399 0.4780 +54901 93587 0.5850 +54901 116985 0.5930 +54901 129787 0.4060 +54901 132720 0.4360 +54901 132789 0.4780 +54901 136259 0.5750 +54901 145741 0.6220 +54901 154141 0.5460 +54901 158234 0.4060 +54901 169026 0.9260 +54901 169792 0.5420 +54901 196074 0.4870 +54901 221895 0.7620 +54901 284131 0.6320 +54901 388125 0.5440 +54901 392636 0.4810 +54902 55245 0.6710 +54902 55486 0.5290 +54902 57128 0.5200 +54902 57695 0.5190 +54902 63971 0.4270 +54902 83546 0.4260 +54902 84300 0.6790 +54902 84942 0.5420 +54902 90550 0.4060 +54902 90624 0.8090 +54902 92609 0.4900 +54902 94081 0.5200 +54902 114789 0.4340 +54902 121665 0.4570 +54902 123169 0.4830 +54902 125150 0.5500 +54902 201895 0.4650 +54902 221154 0.4160 +54902 644096 0.4450 +54902 790955 0.6880 +54902 100131801 0.4330 +54903 55212 0.8270 +54903 55764 0.4170 +54903 56912 0.4350 +54903 57096 0.6350 +54903 57539 0.4190 +54903 57545 0.9970 +54903 57560 0.4290 +54903 57728 0.4640 +54903 65062 0.7880 +54903 65250 0.6080 +54903 79140 0.8010 +54903 79583 0.9820 +54903 79598 0.6540 +54903 79600 0.9970 +54903 79738 0.9040 +54903 79809 0.6180 +54903 79848 0.5090 +54903 79867 0.9880 +54903 80184 0.9930 +54903 80776 0.9740 +54903 84314 0.8950 +54903 85302 0.5310 +54903 90410 0.4260 +54903 91147 0.9970 +54903 91754 0.5500 +54903 92482 0.6630 +54903 95681 0.5600 +54903 117177 0.6360 +54903 129880 0.8250 +54903 132320 0.4910 +54903 157657 0.5240 +54903 166379 0.8540 +54903 200728 0.9100 +54903 200894 0.6050 +54903 219854 0.6200 +54903 261734 0.9070 +54903 282809 0.5160 +54903 283232 0.4030 +54903 284086 0.5770 +54903 374654 0.4530 +54904 55205 0.7870 +54904 55209 0.4370 +54904 55870 0.4990 +54904 55904 0.5910 +54904 56254 0.5730 +54904 56950 0.6220 +54904 56979 0.4850 +54904 57680 0.7370 +54904 58508 0.5660 +54904 64754 0.6750 +54904 79142 0.6630 +54904 79823 0.7300 +54904 79915 0.5310 +54904 80139 0.4180 +54904 80223 0.4590 +54904 80335 0.4020 +54904 80854 0.7090 +54904 83852 0.4560 +54904 83877 0.5230 +54904 84193 0.7690 +54904 84444 0.6210 +54904 84513 0.6420 +54904 84661 0.6220 +54904 84678 0.4700 +54904 84787 0.4680 +54904 85236 0.8250 +54904 114826 0.4460 +54904 114991 0.4990 +54904 121504 0.8290 +54904 126961 0.9200 +54904 137994 0.5840 +54904 140609 0.4510 +54904 154150 0.5950 +54904 221656 0.8940 +54904 256646 0.8200 +54904 259282 0.4070 +54904 333932 0.9150 +54904 440093 0.9700 +54904 440686 0.9700 +54904 554313 0.8290 +54904 653604 0.9810 +54905 56603 0.4740 +54905 57834 0.5980 +54905 64816 0.4620 +54905 66002 0.4650 +54905 80777 0.4840 +54905 126410 0.4040 +54905 132949 0.5030 +54905 199974 0.4710 +54905 260293 0.5030 +54905 284541 0.6340 +54905 285440 0.4720 +54905 339761 0.4320 +54905 340665 0.6550 +54906 56154 0.4750 +54906 79754 0.4300 +54906 132228 0.4460 +54906 132946 0.4850 +54906 146434 0.5500 +54906 148103 0.4020 +54908 55010 0.4140 +54908 55055 0.8270 +54908 55143 0.4710 +54908 55165 0.7200 +54908 55355 0.4190 +54908 55839 0.4940 +54908 57082 0.4080 +54908 57509 0.4730 +54908 57562 0.4870 +54908 64105 0.4050 +54908 64151 0.5200 +54908 79682 0.4320 +54908 80380 0.5920 +54908 81930 0.4970 +54908 83540 0.5160 +54908 84868 0.4210 +54908 90417 0.4660 +54908 91272 0.9170 +54908 113130 0.4080 +54908 151246 0.6650 +54908 151648 0.4560 +54908 161582 0.4500 +54908 220134 0.9460 +54908 221150 0.9470 +54908 259266 0.4590 +54908 259282 0.5400 +54908 284257 0.5400 +54908 348235 0.9270 +54908 405754 0.4550 +54910 55558 0.4620 +54910 81609 0.4100 +54910 84708 0.4840 +54910 91584 0.4100 +54913 54931 0.5840 +54913 55505 0.9010 +54913 55651 0.7580 +54913 57184 0.4100 +54913 79897 0.9970 +54913 80746 0.6520 +54913 83608 0.8010 +54913 83742 0.4890 +54913 83759 0.6040 +54913 84267 0.4970 +54913 92092 0.4110 +54913 92345 0.9030 +54913 138716 0.9110 +54913 140032 0.4990 +54913 192669 0.7200 +54913 192670 0.7200 +54913 192683 0.6790 +54913 283989 0.5400 +54913 345630 0.5440 +54914 56915 0.4010 +54914 57099 0.6310 +54914 401494 0.6100 +54915 54931 0.5290 +54915 55006 0.5300 +54915 55571 0.6630 +54915 55833 0.4360 +54915 56257 0.4240 +54915 56339 0.9510 +54915 57721 0.9630 +54915 63935 0.4760 +54915 64221 0.5740 +54915 64783 0.8890 +54915 64848 0.8400 +54915 64863 0.6200 +54915 64866 0.4060 +54915 65264 0.4270 +54915 79066 0.8120 +54915 79068 0.8980 +54915 79830 0.4310 +54915 79872 0.7450 +54915 91746 0.9190 +54915 114609 0.5530 +54915 115708 0.6280 +54915 167227 0.5570 +54915 196441 0.5930 +54915 221120 0.6490 +54915 253943 0.9590 +54915 284071 0.4640 +54915 317649 0.6880 +54915 404734 0.4650 +54916 54968 0.4900 +54916 57514 0.4750 +54916 63901 0.5030 +54916 79600 0.4780 +54916 79800 0.4750 +54916 79840 0.4380 +54916 80169 0.4670 +54916 84126 0.4270 +54916 84282 0.4510 +54916 84464 0.4290 +54916 85366 0.4850 +54916 91801 0.5070 +54916 129285 0.4750 +54916 165918 0.4090 +54916 256471 0.4650 +54916 317662 0.4650 +54918 80380 0.4380 +54918 112616 0.9610 +54918 113540 0.8170 +54918 116173 0.7350 +54918 123920 0.7550 +54918 146223 0.5770 +54918 146225 0.7620 +54918 152189 0.9720 +54919 55011 0.5440 +54919 55036 0.7310 +54919 55122 0.4690 +54919 55130 0.7700 +54919 55172 0.7740 +54919 56683 0.8230 +54919 64446 0.8370 +54919 79657 0.4200 +54919 79819 0.4380 +54919 83538 0.5930 +54919 85016 0.6930 +54919 85478 0.7130 +54919 89765 0.6780 +54919 92749 0.7170 +54919 93233 0.7410 +54919 115399 0.5130 +54919 115948 0.6630 +54919 116143 0.5800 +54919 120379 0.5330 +54919 123872 0.8120 +54919 139212 0.7900 +54919 160762 0.4340 +54919 161582 0.7990 +54919 164781 0.4470 +54919 221421 0.7890 +54919 283237 0.4350 +54919 339829 0.7410 +54919 345643 0.6100 +54919 345895 0.7720 +54919 352909 0.8730 +54919 388389 0.8060 +54920 54974 0.4200 +54920 55006 0.5590 +54920 55178 0.4360 +54920 55299 0.6580 +54920 55341 0.5440 +54920 55352 0.4520 +54920 55621 0.7580 +54920 55623 0.6420 +54920 55651 0.4400 +54920 55687 0.5140 +54920 55695 0.5710 +54920 55794 0.6770 +54920 56931 0.4870 +54920 56943 0.4790 +54920 56986 0.5120 +54920 57050 0.5720 +54920 57172 0.4310 +54920 57533 0.4200 +54920 57570 0.7010 +54920 57610 0.4150 +54920 57657 0.4280 +54920 60487 0.5640 +54920 63899 0.4510 +54920 64118 0.6180 +54920 64172 0.4220 +54920 64216 0.4640 +54920 79691 0.4610 +54920 79693 0.4320 +54920 79730 0.4630 +54920 79929 0.4930 +54920 79979 0.4150 +54920 80324 0.5700 +54920 80745 0.4120 +54920 80746 0.4230 +54920 81627 0.4410 +54920 83480 0.6510 +54920 84128 0.4050 +54920 84549 0.4610 +54920 84705 0.5140 +54920 84811 0.5590 +54920 85455 0.4660 +54920 90353 0.4370 +54920 92856 0.4250 +54920 93587 0.5960 +54920 94104 0.4830 +54920 113000 0.4190 +54920 115708 0.6150 +54920 115939 0.5550 +54920 118881 0.5510 +54920 142940 0.6710 +54920 146212 0.4670 +54920 147798 0.4580 +54920 152992 0.5500 +54920 158234 0.4250 +54920 284058 0.4770 +54920 285367 0.4350 +54920 285605 0.5360 +54920 387338 0.4070 +54921 54962 0.7710 +54921 57804 0.4990 +54921 63922 0.9990 +54921 64785 0.4070 +54921 79075 0.9990 +54921 79915 0.7420 +54921 79991 0.5250 +54921 80169 0.5040 +54921 83990 0.5400 +54921 114799 0.9040 +54921 157570 0.8600 +54921 100134934 0.5040 +54922 57493 0.6960 +54922 57514 0.4150 +54922 64123 0.4650 +54922 79763 0.4770 +54922 83605 0.5060 +54922 91608 0.4130 +54922 126123 0.4710 +54922 136332 0.4600 +54922 140706 0.6330 +54922 146862 0.4040 +54922 161198 0.4490 +54922 170954 0.6260 +54922 284358 0.4040 +54922 284359 0.5350 +54922 340485 0.4080 +54923 55096 0.5430 +54923 55703 0.4420 +54923 56731 0.7270 +54923 64421 0.4200 +54923 79025 0.4320 +54923 80864 0.4740 +54923 84231 0.4070 +54923 84619 0.7090 +54923 92283 0.6020 +54923 140701 0.4870 +54923 340900 0.5180 +54923 390714 0.5610 +54923 100423062 0.5400 +54923 102723407 0.5400 +54925 54980 0.4570 +54925 55028 0.4530 +54925 55311 0.7330 +54925 55663 0.8450 +54925 63894 0.4400 +54925 64779 0.5320 +54925 64863 0.4070 +54925 65982 0.7850 +54925 79903 0.4320 +54925 80317 0.8490 +54925 80345 0.6360 +54925 84124 0.8350 +54925 84307 0.8020 +54925 84547 0.8280 +54925 114821 0.8420 +54925 140460 0.5120 +54925 146050 0.6970 +54925 222696 0.8240 +54925 252884 0.4020 +54925 284498 0.4710 +54925 342945 0.8530 +54925 387032 0.8890 +54925 100101467 0.8440 +54926 55072 0.4720 +54926 55236 0.9640 +54926 55294 0.6950 +54926 55585 0.7140 +54926 55636 0.4480 +54926 56254 0.4270 +54926 56852 0.4040 +54926 64682 0.4160 +54926 64754 0.4120 +54926 79876 0.6060 +54926 83737 0.4410 +54926 84231 0.4610 +54926 92912 0.6260 +54926 127428 0.4930 +54926 339287 0.4980 +54926 387522 0.5090 +54927 55669 0.8370 +54927 55735 0.9580 +54927 55967 0.4620 +54927 56942 0.4430 +54927 56993 0.9040 +54927 63877 0.4600 +54927 65260 0.4420 +54927 66008 0.6030 +54927 79135 0.9980 +54927 79145 0.4160 +54927 84134 0.6640 +54927 84269 0.8820 +54927 84270 0.6660 +54927 84303 0.9990 +54927 84693 0.4160 +54927 90639 0.5480 +54927 91137 0.5610 +54927 115209 0.4200 +54927 125988 0.9980 +54927 131474 0.7420 +54927 139322 0.9990 +54927 203286 0.4990 +54927 345778 0.8980 +54927 387990 0.5400 +54927 388753 0.5240 +54927 400916 0.9850 +54927 401505 0.7900 +54927 440574 0.9990 +54927 100188893 0.6280 +54927 100287932 0.5000 +54928 55284 0.5520 +54928 55454 0.4610 +54928 57003 0.4480 +54928 64131 0.4520 +54928 79145 0.5570 +54928 79718 0.4240 +54928 80308 0.5630 +54928 80829 0.4240 +54928 84068 0.4130 +54928 84812 0.6530 +54928 89869 0.6530 +54928 90362 0.5020 +54928 113026 0.6530 +54928 114786 0.5460 +54928 124583 0.5910 +54928 137695 0.4420 +54928 157769 0.4980 +54928 170572 0.4220 +54928 246175 0.4130 +54928 254251 0.4010 +54928 285362 0.4480 +54929 55198 0.4180 +54929 55316 0.4750 +54929 56255 0.4140 +54929 57513 0.4940 +54929 64091 0.5200 +54929 64776 0.5060 +54929 79041 0.5090 +54929 84236 0.4020 +54929 93436 0.5630 +54929 126789 0.4440 +54929 134288 0.4710 +54929 142686 0.4780 +54929 149175 0.4180 +54929 284439 0.6100 +54929 401265 0.4900 +54930 55038 0.4100 +54930 55071 0.5100 +54930 55125 0.5260 +54930 55142 0.9980 +54930 55559 0.9980 +54930 55722 0.5000 +54930 55755 0.5210 +54930 55835 0.5210 +54930 60686 0.5690 +54930 79441 0.9990 +54930 79866 0.5750 +54930 79959 0.4990 +54930 80184 0.5250 +54930 80321 0.5000 +54930 84131 0.4990 +54930 93323 0.9980 +54930 95681 0.4990 +54930 115106 0.9990 +54930 117177 0.5120 +54930 121441 0.6370 +54930 125488 0.5020 +54930 145748 0.4140 +54930 203068 0.5010 +54930 347240 0.5340 +54930 728642 0.4990 +54931 54938 0.4180 +54931 54974 0.4570 +54931 54998 0.4390 +54931 55006 0.9730 +54931 55149 0.5590 +54931 55178 0.5440 +54931 55299 0.4030 +54931 55687 0.4780 +54931 55695 0.4680 +54931 55781 0.5210 +54931 55783 0.4430 +54931 55794 0.5180 +54931 55798 0.4180 +54931 56339 0.4690 +54931 56945 0.4890 +54931 57129 0.7900 +54931 57570 0.7400 +54931 57721 0.5180 +54931 60487 0.5790 +54931 60493 0.5890 +54931 60528 0.8530 +54931 63899 0.5610 +54931 64216 0.6030 +54931 64965 0.4420 +54931 65003 0.5580 +54931 65008 0.6440 +54931 65080 0.5930 +54931 79654 0.4210 +54931 79675 0.4240 +54931 79691 0.4110 +54931 79730 0.4530 +54931 79736 0.6010 +54931 79810 0.4880 +54931 79828 0.5020 +54931 79897 0.5550 +54931 79922 0.6530 +54931 80135 0.9380 +54931 80324 0.6910 +54931 80746 0.5480 +54931 81892 0.5170 +54931 83480 0.6670 +54931 83732 0.4290 +54931 84135 0.4110 +54931 84154 0.4850 +54931 84273 0.4380 +54931 84294 0.4090 +54931 84365 0.6860 +54931 84549 0.4630 +54931 84705 0.4670 +54931 84881 0.5780 +54931 85476 0.4230 +54931 85865 0.4210 +54931 87178 0.6430 +54931 91746 0.5490 +54931 115708 0.9290 +54931 117246 0.5040 +54931 126789 0.4470 +54931 131965 0.5740 +54931 138716 0.5710 +54931 142940 0.4710 +54931 161835 0.8360 +54931 161931 0.4090 +54931 192669 0.5480 +54931 192670 0.5480 +54931 202658 0.4030 +54931 221078 0.5430 +54931 221120 0.6440 +54931 253943 0.4800 +54931 283989 0.5400 +54931 285367 0.5530 +54931 339175 0.4540 +54931 387338 0.5590 +54932 57732 0.7050 +54932 59272 0.4020 +54932 79725 0.4340 +54932 80174 0.5000 +54932 90120 0.4260 +54932 143689 0.4180 +54932 154197 0.4470 +54932 161829 0.5690 +54932 166863 0.6450 +54932 201164 0.4160 +54932 285533 0.4330 +54932 339500 0.6870 +54932 388962 0.4200 +54933 55486 0.5640 +54933 55851 0.8440 +54933 57414 0.5660 +54933 79807 0.4970 +54933 81502 0.6170 +54933 83464 0.5150 +54933 84236 0.5690 +54933 147700 0.4620 +54933 161003 0.4230 +54933 161198 0.4660 +54933 163486 0.4630 +54933 374655 0.4650 +54934 55167 0.8400 +54934 55257 0.7430 +54934 55683 0.9990 +54934 55689 0.7000 +54934 55929 0.7650 +54934 56949 0.4140 +54934 57634 0.7270 +54934 64769 0.7300 +54934 79142 0.5150 +54934 80314 0.7240 +54934 84148 0.9670 +54934 84164 0.4610 +54934 91603 0.6760 +54934 93081 0.4180 +54934 151050 0.7070 +54934 284058 0.9990 +54934 339287 0.8210 +54934 345651 0.5400 +54935 56940 0.6030 +54935 78986 0.4130 +54935 126520 0.4760 +54935 128853 0.7290 +54935 129531 0.4420 +54935 140836 0.5020 +54935 142679 0.4400 +54935 338599 0.4540 +54935 494551 0.5200 +54936 54956 0.5070 +54936 54969 0.7210 +54936 55795 0.4600 +54936 56829 0.5860 +54936 56965 0.4810 +54936 57097 0.5140 +54936 64761 0.5920 +54936 80351 0.4720 +54936 81847 0.4800 +54936 83666 0.5620 +54936 83707 0.6980 +54936 84875 0.6750 +54936 116969 0.4030 +54936 131870 0.7160 +54936 140733 0.8000 +54936 165631 0.6320 +54936 200558 0.5070 +54936 221443 0.7750 +54937 55124 0.4080 +54937 57167 0.4470 +54937 57829 0.4030 +54937 84072 0.4310 +54937 84944 0.4880 +54937 93426 0.5100 +54937 135935 0.7470 +54937 255877 0.5100 +54937 284359 0.4090 +54937 339345 0.6830 +54937 342977 0.5970 +54937 344018 0.7340 +54937 346673 0.6830 +54937 346689 0.4300 +54937 402381 0.9190 +54937 431707 0.6810 +54937 728591 0.5220 +54938 54952 0.5380 +54938 55157 0.6500 +54938 55172 0.4480 +54938 55699 0.9020 +54938 55798 0.4330 +54938 56474 0.4030 +54938 56888 0.6770 +54938 56942 0.4230 +54938 57038 0.9500 +54938 57176 0.8600 +54938 57505 0.7930 +54938 60678 0.8210 +54938 64965 0.4210 +54938 79048 0.6220 +54938 79587 0.8810 +54938 79693 0.4140 +54938 79728 0.5960 +54938 79731 0.8710 +54938 79828 0.4590 +54938 80222 0.8350 +54938 84464 0.4130 +54938 85476 0.4910 +54938 91875 0.4360 +54938 92399 0.4560 +54938 92935 0.8330 +54938 112464 0.6150 +54938 112869 0.4870 +54938 112970 0.5790 +54938 115290 0.4090 +54938 118672 0.9890 +54938 123263 0.5280 +54938 123283 0.8310 +54938 124454 0.7990 +54938 131965 0.6900 +54938 150274 0.4070 +54938 339175 0.4770 +54938 101927367 0.4440 +54939 54951 0.9680 +54939 55175 0.5150 +54939 55208 0.5050 +54939 55527 0.5430 +54939 55827 0.4990 +54939 55832 0.5090 +54939 55884 0.5310 +54939 55958 0.4990 +54939 56254 0.4990 +54939 56929 0.5160 +54939 56995 0.4990 +54939 57020 0.9080 +54939 57542 0.5150 +54939 64326 0.5000 +54939 64344 0.5120 +54939 64410 0.5000 +54939 64708 0.4110 +54939 79016 0.5130 +54939 79269 0.5040 +54939 79594 0.4130 +54939 79754 0.5190 +54939 79892 0.4880 +54939 79956 0.4640 +54939 80067 0.4990 +54939 80176 0.4990 +54939 80344 0.5350 +54939 84078 0.4990 +54939 84259 0.5150 +54939 84541 0.4990 +54939 84727 0.5010 +54939 84861 0.5070 +54939 89890 0.4990 +54939 90135 0.5000 +54939 90293 0.4990 +54939 90864 0.5010 +54939 92369 0.4990 +54939 92591 0.5190 +54939 93233 0.4310 +54939 112869 0.5090 +54939 122416 0.5190 +54939 122769 0.5180 +54939 123879 0.5050 +54939 124997 0.4630 +54939 127247 0.4990 +54939 130502 0.4640 +54939 136371 0.5190 +54939 140456 0.5190 +54939 140458 0.5190 +54939 140459 0.5230 +54939 140460 0.5160 +54939 140461 0.5230 +54939 140462 0.5200 +54939 140739 0.4990 +54939 140825 0.5000 +54939 142685 0.5190 +54939 142686 0.5190 +54939 142689 0.5190 +54939 149951 0.9510 +54939 150684 0.9760 +54939 154043 0.6060 +54939 154881 0.4990 +54939 170622 0.9680 +54939 200845 0.4990 +54939 390594 0.5150 +54939 401036 0.5190 +54939 404636 0.8690 +54939 441933 0.6070 +54939 493829 0.5940 +54939 100532731 0.6140 +54940 57606 0.5310 +54940 65991 0.4420 +54940 79568 0.4540 +54940 132299 0.4320 +54940 152518 0.4770 +54940 266747 0.5230 +54940 285521 0.4540 +54940 285527 0.4270 +54940 497661 0.4960 +54941 55593 0.4450 +54941 55666 0.9310 +54941 56965 0.5200 +54941 57469 0.4640 +54941 57506 0.8220 +54941 64087 0.5440 +54941 64135 0.9840 +54941 79132 0.7600 +54941 79575 0.4030 +54941 79668 0.5320 +54941 79671 0.4350 +54941 79728 0.5160 +54941 79845 0.6810 +54941 80149 0.4180 +54941 84282 0.7160 +54941 89122 0.5920 +54941 114548 0.4150 +54941 135644 0.5210 +54941 137362 0.4220 +54941 148022 0.4960 +54942 55333 0.8260 +54942 55670 0.8790 +54942 57185 0.4060 +54942 57213 0.4590 +54942 83693 0.4450 +54942 114757 0.4150 +54942 150962 0.8010 +54946 56996 0.4280 +54946 57185 0.5050 +54946 57213 0.6030 +54946 57380 0.6970 +54946 57722 0.4560 +54946 79849 0.5070 +54946 81614 0.4740 +54946 84061 0.5960 +54946 93380 0.5460 +54946 123606 0.4440 +54946 140803 0.7900 +54946 149461 0.5030 +54946 152519 0.4760 +54946 353174 0.5970 +54946 654790 0.4110 +54947 55326 0.4960 +54947 56894 0.5110 +54947 56895 0.5370 +54947 56994 0.9620 +54947 57678 0.5590 +54947 64582 0.4470 +54947 64600 0.7000 +54947 79888 0.9100 +54947 79966 0.4460 +54947 81579 0.7250 +54947 81832 0.4060 +54947 84290 0.6360 +54947 84647 0.6920 +54947 84649 0.4230 +54947 122618 0.9000 +54947 123745 0.7040 +54947 129642 0.6730 +54947 132949 0.4720 +54947 150763 0.6260 +54947 151056 0.6900 +54947 201456 0.4050 +54947 253558 0.9470 +54947 254531 0.9390 +54947 255189 0.6680 +54947 283748 0.6680 +54947 375775 0.7130 +54947 391013 0.6600 +54947 100137049 0.6680 +54948 54998 0.8700 +54948 55037 0.8620 +54948 55052 0.9970 +54948 55127 0.4360 +54948 55143 0.5910 +54948 55168 0.9930 +54948 55173 0.9970 +54948 55176 0.8150 +54948 55178 0.8230 +54948 55272 0.8520 +54948 55278 0.4290 +54948 55316 0.7770 +54948 55324 0.4970 +54948 55591 0.5930 +54948 55651 0.6600 +54948 55703 0.7210 +54948 55794 0.8540 +54948 55813 0.4290 +54948 55969 0.4190 +54948 56648 0.6570 +54948 56731 0.4010 +54948 56893 0.5070 +54948 56945 0.9050 +54948 56965 0.4780 +54948 57128 0.4090 +54948 57129 0.9980 +54948 57136 0.4610 +54948 57505 0.4120 +54948 60488 0.9960 +54948 60558 0.6120 +54948 60678 0.4040 +54948 63875 0.9990 +54948 63931 0.9970 +54948 64146 0.6680 +54948 64432 0.9800 +54948 64928 0.9390 +54948 64949 0.9020 +54948 64951 0.8660 +54948 64960 0.9990 +54948 64963 0.9980 +54948 64965 0.9980 +54948 64968 0.9980 +54948 64969 0.9980 +54948 64975 0.9980 +54948 64976 0.9970 +54948 64978 0.9870 +54948 64979 0.9980 +54948 64981 0.9950 +54948 64983 0.9960 +54948 65003 0.9980 +54948 65005 0.9980 +54948 65008 0.9790 +54948 65080 0.9940 +54948 65121 0.6290 +54948 65122 0.6290 +54948 65993 0.9150 +54948 78988 0.9320 +54948 79590 0.9930 +54948 79631 0.6970 +54948 79668 0.4780 +54948 80222 0.4610 +54948 81341 0.4310 +54948 84172 0.7180 +54948 84311 0.8900 +54948 84340 0.9080 +54948 84545 0.9950 +54948 84869 0.4770 +54948 85476 0.9450 +54948 85865 0.8720 +54948 87178 0.4670 +54948 90313 0.5980 +54948 90480 0.9740 +54948 90624 0.6750 +54948 91300 0.4310 +54948 91574 0.8930 +54948 92170 0.9130 +54948 92196 0.4710 +54948 92259 0.5050 +54948 92399 0.9810 +54948 114781 0.6740 +54948 114987 0.6550 +54948 115416 0.9440 +54948 116540 0.9070 +54948 116541 0.9690 +54948 116832 0.5330 +54948 118487 0.9040 +54948 122481 0.4340 +54948 122704 0.9410 +54948 124454 0.5370 +54948 124995 0.9980 +54948 126402 0.9220 +54948 127428 0.4540 +54948 128308 0.9320 +54948 130916 0.8330 +54948 140032 0.6740 +54948 143244 0.6570 +54948 148022 0.5790 +54948 157310 0.7950 +54948 158067 0.4340 +54948 200916 0.6100 +54948 201595 0.4560 +54948 219402 0.5560 +54948 219927 0.9980 +54948 221264 0.4340 +54948 285855 0.7130 +54948 343068 0.6290 +54948 343070 0.6290 +54948 345051 0.8620 +54948 347487 0.6760 +54948 353376 0.5790 +54948 374659 0.6260 +54948 387129 0.6920 +54948 387338 0.8300 +54948 390999 0.6290 +54948 391002 0.6290 +54948 400735 0.6290 +54948 400736 0.6290 +54948 440560 0.6290 +54948 440561 0.6290 +54948 441873 0.6290 +54948 641776 0.7320 +54948 643909 0.7320 +54948 645051 0.5110 +54948 645073 0.5110 +54948 645359 0.6290 +54948 653619 0.6290 +54948 654364 0.4600 +54948 728524 0.7320 +54948 729396 0.5110 +54948 729422 0.5110 +54948 729428 0.5110 +54948 729431 0.5110 +54948 729442 0.5110 +54948 729447 0.5110 +54948 729528 0.6290 +54948 100008586 0.5110 +54948 100132399 0.5110 +54948 100287482 0.6760 +54948 100302736 0.5790 +54948 100505478 0.6920 +54948 100526842 0.7740 +54948 100527943 0.4100 +54948 100529097 0.6640 +54948 100529239 0.7190 +54948 100996746 0.7320 +54948 101929983 0.6290 +54948 102724473 0.5110 +54948 105180390 0.7320 +54948 105180391 0.7320 +54948 114483834 0.5000 +54948 127898561 0.8180 +54949 55654 0.8900 +54949 57001 0.8490 +54949 112398 0.4510 +54949 135154 0.8950 +54949 220004 0.4420 +54949 644096 0.9280 +54951 55175 0.5060 +54951 55208 0.5230 +54951 55527 0.5430 +54951 55827 0.5110 +54951 55832 0.5110 +54951 55884 0.5490 +54951 55958 0.5150 +54951 56929 0.5460 +54951 56995 0.4990 +54951 57020 0.7930 +54951 57484 0.4850 +54951 57542 0.5070 +54951 64326 0.5240 +54951 64344 0.4990 +54951 64410 0.5110 +54951 64708 0.4180 +54951 79016 0.5240 +54951 79269 0.5200 +54951 79594 0.4050 +54951 79754 0.5440 +54951 80067 0.5100 +54951 80176 0.4990 +54951 80344 0.5260 +54951 83548 0.6190 +54951 84078 0.5070 +54951 84259 0.5660 +54951 84541 0.5150 +54951 84727 0.4990 +54951 84861 0.5030 +54951 89890 0.5070 +54951 90135 0.5030 +54951 90293 0.5030 +54951 90864 0.4990 +54951 91298 0.4860 +54951 91949 0.4780 +54951 92369 0.4990 +54951 92591 0.5430 +54951 93233 0.4220 +54951 115948 0.7050 +54951 122416 0.5430 +54951 122769 0.5530 +54951 123879 0.5220 +54951 127247 0.4990 +54951 132299 0.4790 +54951 136371 0.5430 +54951 140456 0.5430 +54951 140458 0.5430 +54951 140459 0.5430 +54951 140460 0.5460 +54951 140461 0.5430 +54951 140462 0.5430 +54951 140739 0.5070 +54951 140825 0.4990 +54951 142685 0.5430 +54951 142686 0.5430 +54951 142689 0.5430 +54951 149951 0.9540 +54951 150684 0.9580 +54951 154043 0.4760 +54951 154881 0.4990 +54951 170622 0.9550 +54951 171024 0.4270 +54951 200845 0.5040 +54951 201798 0.5390 +54951 201895 0.5100 +54951 390594 0.5060 +54951 401036 0.5430 +54951 404636 0.8270 +54951 441933 0.5420 +54951 493829 0.4510 +54952 55015 0.9470 +54952 55285 0.4080 +54952 55345 0.5390 +54952 55692 0.5780 +54952 55829 0.4800 +54952 57190 0.4640 +54952 57461 0.4940 +54952 58515 0.5270 +54952 58517 0.8380 +54952 60678 0.9130 +54952 64963 0.4030 +54952 79048 0.9220 +54952 83642 0.4120 +54952 83759 0.4180 +54952 84766 0.4470 +54952 84844 0.6060 +54952 92345 0.7520 +54952 114112 0.4100 +54952 115273 0.4100 +54952 116211 0.4580 +54952 118672 0.9380 +54952 124801 0.7570 +54952 138241 0.5140 +54952 140606 0.4860 +54952 158234 0.5780 +54952 197135 0.5170 +54952 219988 0.5160 +54952 253314 0.5740 +54952 280636 0.4210 +54952 345630 0.5480 +54952 348303 0.4470 +54952 392517 0.5740 +54952 402569 0.4080 +54952 100996928 0.5610 +54953 55325 0.7370 +54953 65992 0.4770 +54953 85406 0.4020 +54953 129881 0.4540 +54953 132112 0.4790 +54953 283635 0.4670 +54953 344892 0.5280 +54953 402682 0.5300 +54954 55023 0.4200 +54954 55286 0.4020 +54954 65267 0.8720 +54954 79783 0.6080 +54954 83992 0.5930 +54954 84331 0.4060 +54954 136647 0.7190 +54954 136991 0.4790 +54954 389857 0.4800 +54954 100533467 0.7150 +54955 55276 0.7720 +54955 55322 0.5320 +54955 63920 0.4330 +54955 65260 0.5380 +54955 65999 0.4070 +54955 79000 0.4040 +54955 79029 0.8360 +54955 80183 0.7880 +54955 128077 0.6420 +54955 133688 0.6120 +54955 134526 0.6420 +54955 146894 0.6890 +54955 147841 0.4850 +54955 154007 0.4160 +54955 166378 0.4640 +54955 167127 0.6120 +54955 167410 0.7880 +54955 221301 0.6120 +54955 254228 0.5350 +54955 440138 0.5300 +54955 441168 0.5350 +54955 494188 0.6010 +54955 645191 0.6040 +54955 100288797 0.5800 +54956 56829 0.6270 +54956 56965 0.4050 +54956 57097 0.7090 +54956 64761 0.7310 +54956 80351 0.6410 +54956 81847 0.4560 +54956 81888 0.4120 +54956 83666 0.6740 +54956 83707 0.4590 +54956 84875 0.7790 +54956 121441 0.4010 +54956 140733 0.4640 +54956 165631 0.8060 +54956 221443 0.5040 +54957 55565 0.4640 +54957 55720 0.6580 +54957 55781 0.7000 +54957 56902 0.4840 +54957 57819 0.7980 +54957 79171 0.5430 +54957 79753 0.4340 +54957 83443 0.5200 +54957 83732 0.6000 +54957 84316 0.4980 +54957 84811 0.4330 +54957 84844 0.5220 +54957 84946 0.6800 +54957 126259 0.4980 +54957 147650 0.4980 +54957 153527 0.7860 +54957 164045 0.4940 +54957 284325 0.6090 +54957 338657 0.8210 +54958 55120 0.4460 +54958 57507 0.6910 +54958 58155 0.5060 +54958 64116 0.4800 +54958 64975 0.4270 +54958 65990 0.4360 +54958 79047 0.5190 +54958 79971 0.4500 +54958 83475 0.4790 +54958 89866 0.5990 +54958 124152 0.4410 +54958 126003 0.4050 +54958 128240 0.5860 +54958 128977 0.4050 +54958 129787 0.5050 +54958 132789 0.6040 +54958 134359 0.6010 +54958 158038 0.5700 +54958 219402 0.6500 +54958 253559 0.5420 +54958 254863 0.4420 +54958 257194 0.5050 +54958 390598 0.4790 +54958 100526835 0.5990 +54959 56955 0.5060 +54959 93650 0.5350 +54959 152816 0.6530 +54959 256764 0.4220 +54959 260436 0.7150 +54959 401137 0.5070 +54959 401138 0.9630 +54960 55634 0.4340 +54960 55746 0.4050 +54960 56474 0.5090 +54960 57122 0.4860 +54960 57563 0.4200 +54960 79023 0.4050 +54960 79084 0.5050 +54960 79760 0.9990 +54960 79833 0.9990 +54960 79902 0.4050 +54960 84967 0.5160 +54960 96764 0.6180 +54960 114034 0.4720 +54960 119764 0.5060 +54960 129401 0.4280 +54960 139378 0.4530 +54960 170082 0.7490 +54960 348995 0.4300 +54960 100101267 0.4180 +54961 57026 0.5620 +54961 65056 0.4470 +54961 85464 0.9150 +54961 219902 0.4230 +54962 54970 0.4420 +54962 55055 0.6040 +54962 55148 0.4230 +54962 55159 0.4600 +54962 55215 0.4590 +54962 55299 0.4100 +54962 55388 0.9510 +54962 55536 0.4900 +54962 55723 0.5130 +54962 56852 0.5040 +54962 56938 0.4550 +54962 56941 0.4050 +54962 57697 0.5640 +54962 63895 0.8620 +54962 63922 0.7430 +54962 63967 0.9990 +54962 64785 0.9930 +54962 79075 0.8450 +54962 79621 0.4190 +54962 79682 0.4270 +54962 79892 0.4200 +54962 79915 0.7530 +54962 79968 0.4430 +54962 80010 0.5220 +54962 80119 0.5970 +54962 80198 0.5140 +54962 81533 0.7690 +54962 81620 0.8360 +54962 83540 0.4380 +54962 83879 0.4050 +54962 83990 0.5440 +54962 84126 0.6400 +54962 84250 0.4770 +54962 84296 0.9990 +54962 84515 0.6940 +54962 84893 0.6450 +54962 90381 0.4090 +54962 114799 0.4320 +54962 116028 0.4080 +54962 116211 0.6310 +54962 116447 0.4010 +54962 122769 0.8940 +54962 135458 0.5350 +54962 144715 0.4700 +54962 146956 0.4030 +54962 157570 0.5330 +54962 157777 0.6310 +54962 163859 0.4440 +54962 201973 0.9960 +54962 254394 0.8880 +54962 257218 0.4660 +54962 283431 0.4320 +54962 102800317 0.4660 +54963 55324 0.4610 +54963 55929 0.6300 +54963 56474 0.5850 +54963 57469 0.4150 +54963 83549 0.9280 +54963 113179 0.4020 +54963 124583 0.9200 +54963 127544 0.9540 +54963 129607 0.9180 +54963 134637 0.4110 +54963 139596 0.9960 +54963 151531 0.9820 +54963 377841 0.9190 +54963 729020 0.5640 +54964 56882 0.4570 +54964 122945 0.4080 +54965 55052 0.4010 +54965 55157 0.4660 +54965 55316 0.5230 +54965 57176 0.4860 +54965 57470 0.4540 +54965 57505 0.4280 +54965 57730 0.4870 +54965 63931 0.5600 +54965 64960 0.5680 +54965 64963 0.4400 +54965 64968 0.4550 +54965 64969 0.4180 +54965 65003 0.4330 +54965 65008 0.5420 +54965 84705 0.5720 +54965 84992 0.4520 +54965 92399 0.4160 +54965 93183 0.9950 +54965 374659 0.5100 +54965 440275 0.5930 +54965 100526842 0.4300 +54967 55124 0.4370 +54967 55511 0.5340 +54967 55571 0.4070 +54967 56001 0.4520 +54967 57119 0.5160 +54967 57617 0.6520 +54967 64601 0.7080 +54967 65082 0.6230 +54967 81569 0.5160 +54967 83639 0.4100 +54967 84779 0.4040 +54967 121053 0.4710 +54967 124912 0.4300 +54967 139135 0.5890 +54967 158809 0.4780 +54967 162517 0.4160 +54967 166863 0.4370 +54967 389903 0.4790 +54967 390616 0.4060 +54967 494118 0.4470 +54967 541466 0.5330 +54967 548313 0.4470 +54967 653067 0.4140 +54967 653220 0.5060 +54967 728075 0.5220 +54967 729447 0.5290 +54967 102723547 0.5050 +54968 55005 0.5210 +54968 55101 0.7950 +54968 55156 0.5010 +54968 55572 0.8900 +54968 55750 0.4150 +54968 55863 0.6190 +54968 56945 0.4830 +54968 57514 0.4120 +54968 63901 0.4340 +54968 64091 0.5240 +54968 64756 0.8000 +54968 79041 0.5920 +54968 79133 0.4340 +54968 79600 0.4050 +54968 80124 0.4610 +54968 80207 0.5210 +54968 84236 0.4280 +54968 84532 0.6280 +54968 84833 0.4300 +54968 84947 0.5420 +54968 91647 0.9600 +54968 91801 0.4090 +54968 93377 0.9520 +54968 131118 0.5860 +54968 137682 0.5440 +54968 197322 0.4250 +54968 388753 0.4940 +54968 401265 0.4150 +54968 493753 0.4740 +54968 729515 0.7070 +54969 56829 0.4770 +54969 56965 0.4860 +54969 57097 0.4670 +54969 57703 0.4550 +54969 64761 0.4270 +54969 84875 0.4540 +54969 85235 0.4550 +54969 85236 0.7650 +54969 126961 0.4950 +54969 140733 0.4640 +54969 165631 0.4410 +54969 200558 0.4120 +54969 333932 0.4950 +54969 440686 0.6050 +54969 653604 0.6160 +54970 55036 0.4790 +54970 55130 0.5210 +54970 55626 0.4110 +54970 55777 0.4130 +54970 56171 0.4710 +54970 60592 0.5240 +54970 79665 0.4230 +54970 81570 0.4300 +54970 84296 0.4200 +54970 84645 0.5990 +54970 85016 0.6000 +54970 89765 0.4060 +54970 120379 0.5520 +54970 123169 0.4750 +54970 123872 0.5590 +54970 152110 0.4420 +54970 200373 0.4400 +54970 246176 0.4470 +54970 255239 0.9460 +54970 339829 0.4700 +54970 343450 0.4920 +54970 352909 0.4080 +54971 57573 0.4720 +54971 57673 0.4140 +54971 64778 0.4830 +54971 79656 0.4820 +54971 84627 0.5710 +54971 84708 0.4100 +54971 117246 0.4080 +54971 139105 0.5700 +54971 221336 0.4450 +54971 400673 0.4690 +54971 642843 0.4480 +54972 56975 0.5170 +54972 64760 0.4490 +54972 80021 0.5110 +54972 84187 0.4150 +54972 89797 0.4150 +54972 146456 0.5580 +54972 146664 0.4210 +54972 341116 0.4060 +54973 55174 0.9970 +54973 55511 0.6130 +54973 55520 0.6090 +54973 55656 0.9970 +54973 55726 0.9780 +54973 55756 0.9990 +54973 56903 0.5530 +54973 57117 0.9950 +54973 57508 0.9970 +54973 58493 0.7360 +54973 60528 0.4210 +54973 64848 0.4360 +54973 64859 0.7520 +54973 64895 0.5580 +54973 65123 0.9990 +54973 79034 0.7360 +54973 79035 0.7560 +54973 79869 0.4040 +54973 80335 0.7390 +54973 80789 0.9990 +54973 81556 0.9680 +54973 81608 0.5680 +54973 84524 0.4220 +54973 91746 0.4110 +54973 92105 0.9990 +54973 114294 0.6860 +54973 146909 0.4200 +54973 203522 0.6550 +54973 284434 0.4840 +54973 376940 0.4500 +54973 441519 0.6130 +54973 441521 0.6130 +54973 541465 0.6130 +54973 541466 0.6130 +54973 642843 0.4120 +54973 728911 0.6130 +54973 101060211 0.6130 +54973 102723631 0.6130 +54973 102723680 0.6130 +54973 102723737 0.6130 +54974 55006 0.5190 +54974 55531 0.4200 +54974 57570 0.5540 +54974 63899 0.4370 +54974 64172 0.4290 +54974 79691 0.4140 +54974 80324 0.4820 +54974 83480 0.4650 +54974 84881 0.4370 +54974 134510 0.4920 +54974 144233 0.4070 +54974 147807 0.5560 +54974 201626 0.4470 +54974 387338 0.4190 +54976 55845 0.5940 +54976 57608 0.5520 +54976 64422 0.4580 +54977 55240 0.4810 +54977 80324 0.6070 +54977 81689 0.4350 +54977 84975 0.4660 +54977 94081 0.6020 +54977 115286 0.4740 +54977 126402 0.5050 +54977 200205 0.4290 +54978 56893 0.6100 +54978 84912 0.4950 +54978 91373 0.5070 +54978 116150 0.5070 +54978 347734 0.4740 +54978 387601 0.4460 +54978 728661 0.4560 +54979 55353 0.4480 +54979 55466 0.4550 +54979 55735 0.4200 +54979 56990 0.4200 +54979 64218 0.4220 +54979 79962 0.4320 +54979 79982 0.4200 +54979 80273 0.5880 +54979 80331 0.4200 +54979 81570 0.6790 +54979 85479 0.4210 +54979 91464 0.4270 +54979 96459 0.4200 +54979 113444 0.4330 +54979 120526 0.4330 +54979 134266 0.5880 +54979 136332 0.4400 +54979 136853 0.4320 +54979 140432 0.4200 +54979 145226 0.4150 +54979 150353 0.4200 +54979 157638 0.4960 +54979 165721 0.4210 +54979 171425 0.4210 +54979 202052 0.4200 +54979 285126 0.4200 +54979 285282 0.4200 +54979 374407 0.4250 +54979 548645 0.4200 +54979 552891 0.4200 +54980 55198 0.5230 +54980 63894 0.4510 +54980 64744 0.4320 +54980 64768 0.4250 +54980 79230 0.4670 +54980 81794 0.4310 +54980 113510 0.4320 +54980 166793 0.4800 +54980 171568 0.4240 +54980 222194 0.6790 +54980 348793 0.4440 +54980 653641 0.7200 +54981 55191 0.7260 +54981 57469 0.4150 +54981 64802 0.9830 +54981 65220 0.4520 +54981 83594 0.9220 +54981 84561 0.6140 +54981 93100 0.9780 +54981 130013 0.4150 +54981 138199 0.5590 +54981 139596 0.6470 +54981 157285 0.4060 +54981 349565 0.8020 +54981 729020 0.4140 +54982 80331 0.8630 +54982 89953 0.5930 +54982 91860 0.7330 +54982 154881 0.7980 +54982 256471 0.9470 +54982 378884 0.4860 +54982 115253422 0.4500 +54984 55105 0.8540 +54984 55109 0.4510 +54984 55127 0.4850 +54984 55131 0.6500 +54984 55153 0.8400 +54984 55299 0.4140 +54984 55646 0.8640 +54984 55651 0.5580 +54984 55668 0.8540 +54984 55720 0.7230 +54984 55756 0.4200 +54984 55759 0.4020 +54984 55760 0.6650 +54984 55794 0.5420 +54984 56342 0.5130 +54984 56919 0.5800 +54984 57050 0.6270 +54984 57062 0.4430 +54984 57109 0.4800 +54984 57647 0.4780 +54984 57696 0.4640 +54984 60625 0.5600 +54984 64318 0.4520 +54984 64434 0.9620 +54984 64794 0.4320 +54984 65083 0.4200 +54984 65095 0.6870 +54984 79039 0.7680 +54984 79665 0.4840 +54984 79954 0.6080 +54984 80135 0.6410 +54984 83732 0.5580 +54984 83743 0.4370 +54984 84154 0.5940 +54984 84172 0.4320 +54984 84294 0.6430 +54984 84365 0.6590 +54984 84549 0.8450 +54984 84946 0.6990 +54984 88745 0.4030 +54984 90353 0.4020 +54984 91752 0.4510 +54984 92856 0.6950 +54984 115708 0.5570 +54984 117246 0.8220 +54984 161424 0.5000 +54984 165545 0.6650 +54984 219578 0.4510 +54984 221078 0.4510 +54984 221830 0.5990 +54984 283106 0.6130 +54984 345630 0.8650 +54984 692312 0.4320 +54985 63926 0.4200 +54985 79228 0.5340 +54985 84256 0.4180 +54985 114984 0.5170 +54985 146439 0.4550 +54985 151649 0.4570 +54985 283999 0.4180 +54985 388581 0.4480 +54986 55536 0.4640 +54986 55582 0.5300 +54986 79598 0.4200 +54986 79747 0.4420 +54986 79781 0.5090 +54986 79834 0.4560 +54986 79848 0.5660 +54986 79864 0.4670 +54986 80217 0.4190 +54986 89832 0.5640 +54986 91050 0.4600 +54986 93323 0.5160 +54986 113026 0.4450 +54986 139341 0.4320 +54986 144100 0.5230 +54986 206358 0.4420 +54986 219621 0.4780 +54987 55192 0.4410 +54987 55196 0.4220 +54987 55316 0.4350 +54987 91433 0.4460 +54987 134510 0.4340 +54987 151354 0.4250 +54988 55301 0.4430 +54988 57591 0.4770 +54988 57609 0.4430 +54988 80221 0.6160 +54988 80724 0.4550 +54988 84263 0.7060 +54988 132949 0.4470 +54988 137872 0.4130 +54988 157869 0.4430 +54988 197322 0.5580 +54988 254042 0.4550 +54988 376497 0.5030 +54988 388559 0.4270 +54989 55279 0.5070 +54989 56916 0.5050 +54989 58486 0.4410 +54989 79159 0.5980 +54989 79442 0.5320 +54989 80143 0.5380 +54989 84365 0.5590 +54989 115992 0.4280 +54989 116150 0.5330 +54989 158427 0.4620 +54991 55593 0.4480 +54991 56245 0.4180 +54991 64397 0.5060 +54991 79663 0.4040 +54991 79810 0.5270 +54991 83786 0.5100 +54991 85464 0.4700 +54991 144132 0.5400 +54991 147912 0.4620 +54991 150696 0.4590 +54991 259282 0.4980 +54991 317662 0.4250 +54993 55778 0.4780 +54993 57461 0.5060 +54993 63876 0.4080 +54993 79020 0.4180 +54993 84289 0.4580 +54993 202051 0.5410 +54994 55130 0.4290 +54994 57610 0.9900 +54994 60560 0.4530 +54994 64426 0.4050 +54994 64777 0.9590 +54994 64795 0.9990 +54994 79018 0.9960 +54994 80210 0.4600 +54994 80232 0.9990 +54994 80258 0.4220 +54994 84926 0.8400 +54994 93436 0.4790 +54994 116225 0.6240 +54994 133482 0.5890 +54994 256302 0.4220 +54995 55157 0.4570 +54995 55191 0.4470 +54995 55272 0.4880 +54995 55703 0.5080 +54995 55739 0.4040 +54995 55768 0.4220 +54995 55825 0.5060 +54995 55833 0.4660 +54995 55856 0.5860 +54995 55902 0.4890 +54995 56898 0.5730 +54995 56922 0.7010 +54995 57128 0.4570 +54995 57226 0.8080 +54995 57665 0.4720 +54995 60496 0.7610 +54995 63875 0.4220 +54995 64087 0.4540 +54995 64963 0.4250 +54995 64968 0.4820 +54995 64983 0.6000 +54995 79071 0.9210 +54995 79154 0.4960 +54995 79587 0.4070 +54995 79605 0.4470 +54995 79631 0.4730 +54995 79728 0.9550 +54995 79758 0.4510 +54995 79966 0.4500 +54995 80347 0.5590 +54995 83480 0.4450 +54995 84076 0.4620 +54995 84172 0.4940 +54995 84263 0.6170 +54995 84532 0.4280 +54995 84693 0.5330 +54995 84869 0.9850 +54995 85476 0.4680 +54995 112724 0.4670 +54995 115817 0.4690 +54995 118490 0.4070 +54995 129642 0.4090 +54995 132949 0.5040 +54995 142680 0.5020 +54995 145226 0.4470 +54995 147015 0.4730 +54995 157506 0.4510 +54995 161779 0.4590 +54995 195814 0.4470 +54995 201140 0.4470 +54995 207063 0.4470 +54995 317749 0.4690 +54995 345275 0.4470 +54995 374875 0.4470 +54995 387787 0.8720 +54995 388963 0.4470 +54995 401505 0.4640 +54995 109703458 0.4590 +54996 64757 0.5780 +54996 79762 0.5480 +54996 80777 0.7490 +54996 84896 0.4260 +54996 91137 0.4080 +54996 91452 0.4710 +54996 284273 0.4090 +54997 64768 0.4100 +54997 79789 0.4360 +54997 83714 0.4020 +54997 84893 0.4130 +54997 642489 0.4440 +54998 55037 0.9890 +54998 55052 0.8650 +54998 55103 0.4670 +54998 55168 0.9670 +54998 55173 0.9900 +54998 56672 0.6440 +54998 56945 0.9840 +54998 56993 0.6150 +54998 57129 0.8730 +54998 60488 0.9820 +54998 60528 0.4450 +54998 63875 0.8720 +54998 63893 0.4430 +54998 63931 0.9830 +54998 64432 0.9830 +54998 64745 0.8000 +54998 64928 0.8720 +54998 64949 0.9870 +54998 64951 0.9860 +54998 64960 0.9960 +54998 64963 0.9940 +54998 64965 0.9860 +54998 64968 0.9710 +54998 64969 0.9890 +54998 64975 0.9680 +54998 64976 0.9410 +54998 64978 0.8560 +54998 64979 0.8960 +54998 64981 0.8460 +54998 64983 0.8300 +54998 65003 0.8620 +54998 65005 0.8560 +54998 65008 0.8170 +54998 65080 0.8330 +54998 65993 0.9930 +54998 78988 0.8740 +54998 79590 0.8920 +54998 79863 0.8130 +54998 79922 0.5630 +54998 84273 0.6510 +54998 84311 0.8550 +54998 84318 0.4470 +54998 84545 0.8860 +54998 84987 0.5750 +54998 85476 0.8050 +54998 90480 0.9320 +54998 91582 0.7820 +54998 92259 0.8330 +54998 92399 0.8450 +54998 92609 0.4760 +54998 115098 0.5990 +54998 116540 0.8750 +54998 116541 0.8650 +54998 118487 0.9890 +54998 122704 0.8450 +54998 124995 0.8470 +54998 125988 0.4250 +54998 126328 0.4720 +54998 128308 0.9030 +54998 140823 0.4280 +54998 196074 0.8440 +54998 219402 0.8980 +54998 219927 0.9340 +54998 374291 0.6830 +54998 100303755 0.4860 +55001 57474 0.4750 +55001 130535 0.4260 +55001 200634 0.5910 +55001 375190 0.4500 +55002 55208 0.4950 +55002 55795 0.4860 +55002 65010 0.4050 +55002 79774 0.6240 +55002 84245 0.4420 +55002 113622 0.5460 +55002 219743 0.4630 +55002 440077 0.4160 +55003 55006 0.4120 +55003 55127 0.4610 +55003 55131 0.7990 +55003 55153 0.6870 +55003 55226 0.6350 +55003 55272 0.4600 +55003 55299 0.8980 +55003 55319 0.6690 +55003 55341 0.6140 +55003 55646 0.6570 +55003 55703 0.4040 +55003 55720 0.4700 +55003 55759 0.8690 +55003 55760 0.5290 +55003 55781 0.5970 +55003 55794 0.4550 +55003 55813 0.4280 +55003 56342 0.8160 +55003 56647 0.6080 +55003 56902 0.4720 +55003 57050 0.6990 +55003 57062 0.5310 +55003 57418 0.5970 +55003 57696 0.5830 +55003 60487 0.4610 +55003 60560 0.5300 +55003 64118 0.4100 +55003 64216 0.5500 +55003 64318 0.6000 +55003 64425 0.6240 +55003 64794 0.5020 +55003 65083 0.4810 +55003 79039 0.5720 +55003 79050 0.7120 +55003 79159 0.6200 +55003 79446 0.4030 +55003 79954 0.6030 +55003 80135 0.7790 +55003 80349 0.5170 +55003 80829 0.5510 +55003 81545 0.4840 +55003 83480 0.4280 +55003 83732 0.5880 +55003 83743 0.8320 +55003 84128 0.6670 +55003 84135 0.5430 +55003 84154 0.9730 +55003 84172 0.4180 +55003 84294 0.8640 +55003 84310 0.4110 +55003 84319 0.5650 +55003 84365 0.8570 +55003 84549 0.8840 +55003 84916 0.8270 +55003 84946 0.6380 +55003 90121 0.4650 +55003 92856 0.7720 +55003 114987 0.4290 +55003 115708 0.5550 +55003 116966 0.5180 +55003 117246 0.7120 +55003 146212 0.5880 +55003 153443 0.4190 +55003 157753 0.4320 +55003 165545 0.5290 +55003 221078 0.6620 +55003 221830 0.6440 +55003 285855 0.4170 +55003 374986 0.4140 +55003 692312 0.5300 +55004 55075 0.4050 +55004 55240 0.4750 +55004 55255 0.7810 +55004 55717 0.4850 +55004 55789 0.4200 +55004 55845 0.6190 +55004 55846 0.6500 +55004 55968 0.4480 +55004 56924 0.4050 +55004 57144 0.4050 +55004 57381 0.5550 +55004 57521 0.9990 +55004 57589 0.9000 +55004 57600 0.9050 +55004 58528 0.9990 +55004 60673 0.5400 +55004 64121 0.9990 +55004 64223 0.9490 +55004 64798 0.4180 +55004 79726 0.7660 +55004 81624 0.4260 +55004 81839 0.4200 +55004 81929 0.7010 +55004 83667 0.6480 +55004 84219 0.7560 +55004 84232 0.4890 +55004 84327 0.4050 +55004 84335 0.6780 +55004 85442 0.7200 +55004 90423 0.6920 +55004 90809 0.5890 +55004 96459 0.6230 +55004 114885 0.4200 +55004 118426 0.6420 +55004 119032 0.6210 +55004 127124 0.5210 +55004 140775 0.7590 +55004 143098 0.4390 +55004 144402 0.4350 +55004 144577 0.6650 +55004 153129 0.9990 +55004 154743 0.5150 +55004 155066 0.5320 +55004 157769 0.4290 +55004 200894 0.4390 +55004 201163 0.9410 +55004 201931 0.5440 +55004 203228 0.7400 +55004 245972 0.5650 +55004 245973 0.6500 +55004 253959 0.4390 +55004 254863 0.5080 +55004 282991 0.5160 +55004 389541 0.9990 +55004 440498 0.4480 +55004 652968 0.6690 +55004 729438 0.6090 +55004 729991 0.6030 +55005 55687 0.4150 +55005 56652 0.5510 +55005 56945 0.4650 +55005 57107 0.4070 +55005 57480 0.4180 +55005 57570 0.7190 +55005 57621 0.8560 +55005 60528 0.4150 +55005 65080 0.4430 +55005 79624 0.8260 +55005 79736 0.5300 +55005 80129 0.7630 +55005 80324 0.4490 +55005 84135 0.4660 +55005 91574 0.4780 +55005 92667 0.4420 +55005 286753 0.4280 +55006 55178 0.7350 +55006 55226 0.7430 +55006 55621 0.5390 +55006 55623 0.4890 +55006 55687 0.4460 +55006 55695 0.5450 +55006 55720 0.6980 +55006 55794 0.5840 +55006 56339 0.4320 +55006 56902 0.4500 +55006 57418 0.5300 +55006 57570 0.6710 +55006 57696 0.6980 +55006 57721 0.4080 +55006 60487 0.7540 +55006 60493 0.4350 +55006 60528 0.5460 +55006 63892 0.4030 +55006 63899 0.6600 +55006 64118 0.4550 +55006 64216 0.6110 +55006 64318 0.4440 +55006 64794 0.5930 +55006 79039 0.4170 +55006 79068 0.4180 +55006 79587 0.6270 +55006 79691 0.4960 +55006 79730 0.4730 +55006 79731 0.4220 +55006 79922 0.6890 +55006 79979 0.7650 +55006 80324 0.7130 +55006 81890 0.4750 +55006 83480 0.6000 +55006 83743 0.5310 +55006 84128 0.4130 +55006 84154 0.4130 +55006 84365 0.6110 +55006 84549 0.4360 +55006 84881 0.6630 +55006 85865 0.4730 +55006 87178 0.4810 +55006 90353 0.5950 +55006 91746 0.4870 +55006 92170 0.4380 +55006 92856 0.4050 +55006 93587 0.5280 +55006 113179 0.5430 +55006 115416 0.4100 +55006 115708 0.9640 +55006 117246 0.7810 +55006 126789 0.4070 +55006 130916 0.4870 +55006 142940 0.6440 +55006 155368 0.4440 +55006 158234 0.5850 +55006 160760 0.5110 +55006 196074 0.5180 +55006 197322 0.4360 +55006 221078 0.5970 +55006 221120 0.6770 +55006 221830 0.4130 +55006 253943 0.5030 +55006 285367 0.4390 +55006 285855 0.4290 +55006 339229 0.6290 +55006 387129 0.4200 +55006 387338 0.7430 +55006 100505478 0.4170 +55007 55020 0.5280 +55007 55116 0.5250 +55007 55687 0.4640 +55007 64853 0.4460 +55007 79607 0.4490 +55007 84900 0.4220 +55007 92840 0.4660 +55007 137994 0.5060 +55007 150763 0.4380 +55007 157697 0.4750 +55007 201164 0.4360 +55007 202052 0.5270 +55007 342132 0.4530 +55007 653075 0.4160 +55007 653125 0.4430 +55007 100130988 0.4760 +55008 55337 0.5660 +55008 55601 0.9020 +55008 57674 0.4730 +55008 64108 0.7560 +55008 64135 0.8660 +55008 64761 0.7790 +55008 79132 0.7460 +55008 83666 0.6630 +55008 85363 0.4910 +55008 85441 0.5620 +55008 91543 0.9030 +55008 94240 0.6710 +55008 129607 0.6850 +55008 149628 0.4050 +55008 151636 0.4740 +55008 163351 0.4880 +55008 219285 0.5720 +55008 388646 0.4540 +55009 57418 0.4670 +55009 85444 0.4820 +55009 91300 0.4770 +55009 91304 0.5440 +55009 92305 0.4350 +55009 115098 0.4100 +55009 148223 0.5320 +55009 255057 0.5510 +55009 347475 0.4950 +55009 374291 0.4120 +55009 387885 0.4180 +55009 401466 0.5760 +55009 401612 0.4480 +55010 55055 0.5360 +55010 55143 0.5270 +55010 55165 0.6140 +55010 55215 0.5520 +55010 55247 0.4910 +55010 55355 0.4150 +55010 55388 0.5630 +55010 55635 0.5940 +55010 55732 0.7080 +55010 55789 0.5750 +55010 55839 0.6060 +55010 56992 0.6320 +55010 64105 0.5540 +55010 64151 0.7700 +55010 79023 0.5810 +55010 79682 0.4480 +55010 79728 0.4490 +55010 79801 0.4640 +55010 80119 0.5030 +55010 81930 0.7130 +55010 83461 0.4730 +55010 83540 0.5940 +55010 84057 0.5310 +55010 90381 0.4510 +55010 90417 0.5830 +55010 113115 0.4070 +55010 146909 0.4880 +55010 150468 0.4510 +55010 151648 0.4890 +55010 157313 0.4570 +55010 157570 0.5060 +55010 165055 0.4150 +55010 220042 0.4970 +55010 220134 0.5380 +55010 221150 0.6280 +55010 259266 0.6300 +55010 285643 0.4060 +55010 387103 0.4810 +55010 401541 0.4660 +55011 55164 0.6420 +55011 55172 0.6710 +55011 55651 0.6480 +55011 55703 0.8230 +55011 55718 0.8310 +55011 56683 0.5210 +55011 56979 0.4960 +55011 60681 0.4010 +55011 63922 0.6870 +55011 64319 0.4050 +55011 64446 0.4750 +55011 79618 0.4490 +55011 79657 0.9990 +55011 79871 0.9050 +55011 80185 0.7410 +55011 80321 0.5560 +55011 81488 0.7900 +55011 81572 0.9760 +55011 83444 0.4760 +55011 83538 0.4030 +55011 84859 0.5200 +55011 115399 0.5640 +55011 116143 0.9900 +55011 120379 0.7790 +55011 121053 0.4360 +55011 123872 0.5800 +55011 127845 0.4300 +55011 139212 0.7420 +55011 140460 0.5720 +55011 161582 0.6920 +55011 283237 0.4780 +55011 352909 0.5970 +55011 388389 0.4180 +55011 110599588 0.7160 +55012 55799 0.6500 +55012 55837 0.5090 +55012 55844 0.7790 +55012 59283 0.6550 +55012 59284 0.6550 +55012 59285 0.6500 +55012 83932 0.6800 +55012 84318 0.4280 +55012 84934 0.5860 +55012 84984 0.6110 +55012 93589 0.6500 +55013 63933 0.9970 +55013 79085 0.8430 +55013 79568 0.5380 +55013 79770 0.4810 +55013 80024 0.6540 +55013 83643 0.4260 +55013 90550 0.9690 +55013 91689 0.9990 +55013 221154 0.9990 +55013 286097 0.9940 +55014 55054 0.6700 +55014 55062 0.5770 +55014 55102 0.5240 +55014 55177 0.4170 +55014 55201 0.4470 +55014 55285 0.4790 +55014 55626 0.5900 +55014 55669 0.4940 +55014 55737 0.4270 +55014 55823 0.8890 +55014 55850 0.7160 +55014 56947 0.5870 +55014 57448 0.6260 +55014 57617 0.9120 +55014 57724 0.8110 +55014 58485 0.5070 +55014 60673 0.6740 +55014 63908 0.7810 +55014 64422 0.7380 +55014 64601 0.9520 +55014 64689 0.5660 +55014 64786 0.4320 +55014 65018 0.6740 +55014 65082 0.9350 +55014 79065 0.5780 +55014 79090 0.5130 +55014 79443 0.5240 +55014 79465 0.5920 +55014 79748 0.4990 +55014 80183 0.7540 +55014 81562 0.5170 +55014 81631 0.7520 +55014 81671 0.4310 +55014 81876 0.6180 +55014 83734 0.6740 +55014 84557 0.5150 +55014 90411 0.5120 +55014 112755 0.6520 +55014 116841 0.7720 +55014 122553 0.5350 +55014 125170 0.4650 +55014 126003 0.5330 +55014 132949 0.5290 +55014 134957 0.5960 +55014 139341 0.5330 +55014 143187 0.8780 +55014 149111 0.5510 +55014 192111 0.4220 +55014 203062 0.5750 +55014 205428 0.4010 +55014 221960 0.4030 +55014 245972 0.5350 +55014 254263 0.5510 +55014 339302 0.5400 +55014 345611 0.6560 +55014 400668 0.4820 +55014 415117 0.6880 +55014 440738 0.7220 +55014 594855 0.5400 +55015 55212 0.4250 +55015 55285 0.4380 +55015 55599 0.4620 +55015 55660 0.6760 +55015 55692 0.9210 +55015 55954 0.8390 +55015 57396 0.4140 +55015 57697 0.4350 +55015 58517 0.9420 +55015 79047 0.4040 +55015 79696 0.6120 +55015 80742 0.4110 +55015 83443 0.6100 +55015 83938 0.6900 +55015 84316 0.5830 +55015 84844 0.6760 +55015 84967 0.6920 +55015 90379 0.5130 +55015 113251 0.4360 +55015 122525 0.4250 +55015 126259 0.5830 +55015 140890 0.7140 +55015 147650 0.5830 +55015 151613 0.4500 +55015 196441 0.5220 +55015 220074 0.6900 +55015 347744 0.8420 +55015 392517 0.7810 +55015 100996928 0.8540 +55015 101669762 0.4170 +55016 55620 0.6320 +55016 80381 0.5520 +55017 55027 0.4960 +55017 79912 0.5240 +55017 79991 0.6060 +55017 80343 0.5400 +55017 84307 0.4470 +55017 84455 0.4700 +55017 92369 0.4470 +55017 93035 0.4120 +55017 119710 0.4470 +55017 123169 0.5060 +55017 126208 0.4710 +55017 130026 0.4610 +55017 133491 0.5150 +55017 144347 0.4470 +55017 219348 0.5250 +55017 282973 0.4800 +55017 284521 0.5070 +55018 56681 0.5740 +55018 89866 0.4640 +55020 55687 0.5850 +55020 55794 0.4400 +55020 84064 0.4430 +55020 84795 0.4120 +55020 84836 0.4970 +55020 115817 0.4390 +55020 125875 0.5080 +55020 143941 0.4160 +55020 158405 0.5460 +55020 340745 0.5560 +55020 100287284 0.5900 +55022 57117 0.5290 +55022 57211 0.4350 +55022 60672 0.4760 +55022 64399 0.4470 +55022 79807 0.5760 +55022 79875 0.5610 +55022 80309 0.4870 +55022 255743 0.4350 +55023 55183 0.4630 +55023 55193 0.5750 +55023 55681 0.4060 +55023 55814 0.6870 +55023 56478 0.4700 +55023 56987 0.4130 +55023 57187 0.6190 +55023 57448 0.5360 +55023 57507 0.4340 +55023 80205 0.4530 +55023 80315 0.4260 +55023 81620 0.4670 +55023 83860 0.4830 +55023 84295 0.4590 +55023 91607 0.4220 +55023 114803 0.5260 +55023 128497 0.5040 +55023 134728 0.5810 +55023 138474 0.5010 +55023 197131 0.5030 +55023 222229 0.4370 +55023 253260 0.4670 +55023 254065 0.5520 +55023 257218 0.4820 +55024 57661 0.7650 +55024 57705 0.5780 +55024 64116 0.4100 +55024 83648 0.6640 +55024 84824 0.5170 +55024 115350 0.4240 +55024 115352 0.4630 +55024 151888 0.4280 +55024 199786 0.7430 +55024 257019 0.4470 +55026 83737 0.5020 +55026 167410 0.4730 +55026 338692 0.4200 +55026 339665 0.4170 +55026 389161 0.4290 +55027 55226 0.4240 +55027 55341 0.5160 +55027 55720 0.5680 +55027 55759 0.4460 +55027 55781 0.4590 +55027 57418 0.4320 +55027 64282 0.5330 +55027 64434 0.4700 +55027 65980 0.4630 +55027 79712 0.4380 +55027 83743 0.8290 +55027 84154 0.8060 +55027 84946 0.4640 +55027 90121 0.7170 +55027 117246 0.4300 +55027 123970 0.4810 +55027 146050 0.5140 +55027 255919 0.5380 +55027 389073 0.4030 +55027 548313 0.5060 +55028 55143 0.7760 +55028 55791 0.4800 +55028 55967 0.6020 +55028 56901 0.4010 +55028 80213 0.6190 +55028 80304 0.5380 +55028 81833 0.4710 +55028 84833 0.8490 +55028 84886 0.4850 +55028 84923 0.4110 +55028 93974 0.5410 +55028 125965 0.4040 +55028 267020 0.8590 +55028 339977 0.4140 +55028 440567 0.4190 +55030 79791 0.4200 +55030 84085 0.7040 +55030 84640 0.4470 +55030 91624 0.4320 +55030 130888 0.4740 +55030 386684 0.5910 +55031 55432 0.4250 +55031 55593 0.5810 +55031 55611 0.5680 +55031 56957 0.4600 +55031 57161 0.4080 +55031 57599 0.6200 +55031 57646 0.4010 +55031 78990 0.4090 +55031 79184 0.4300 +55031 79885 0.4670 +55031 80124 0.5060 +55031 83844 0.4310 +55031 84669 0.4510 +55031 84749 0.5000 +55031 85015 0.4340 +55031 112817 0.4590 +55031 124739 0.4380 +55031 126119 0.5030 +55031 220213 0.4580 +55031 221302 0.6230 +55031 373509 0.7020 +55032 55343 0.6160 +55032 55454 0.4450 +55032 57468 0.4080 +55032 57835 0.5080 +55032 79939 0.5490 +55032 80351 0.4630 +55032 81618 0.5330 +55032 84912 0.6750 +55032 90196 0.4550 +55032 128209 0.4150 +55032 222553 0.5420 +55032 340146 0.5970 +55032 347734 0.4070 +55033 55333 0.4370 +55033 56203 0.4060 +55033 57404 0.4530 +55033 59283 0.4360 +55033 59339 0.4180 +55033 63906 0.4520 +55033 64149 0.4780 +55033 79269 0.4890 +55033 79645 0.5300 +55033 79939 0.4120 +55033 81031 0.4790 +55033 84447 0.5080 +55033 84627 0.6170 +55033 84725 0.4650 +55033 85403 0.4740 +55033 89970 0.4930 +55033 91252 0.6450 +55033 113189 0.6650 +55033 124460 0.4310 +55033 126792 0.6050 +55033 131965 0.4610 +55033 223082 0.4300 +55034 55197 0.4140 +55034 55236 0.5110 +55034 55250 0.5590 +55034 55270 0.5270 +55034 55742 0.6650 +55034 55785 0.4090 +55034 55971 0.4170 +55034 64111 0.7930 +55034 79178 0.4700 +55034 79876 0.5140 +55034 80131 0.4700 +55034 80308 0.5820 +55034 81689 0.5360 +55034 83608 0.4870 +55034 84955 0.6210 +55034 122961 0.5360 +55034 127829 0.4200 +55034 284716 0.6180 +55034 390110 0.4410 +55034 730249 0.5930 +55034 100130890 0.8160 +55034 100131187 0.8160 +55035 55153 0.8380 +55035 56647 0.4430 +55035 57696 0.5280 +55035 57703 0.4860 +55035 58528 0.8660 +55035 64121 0.8710 +55035 64283 0.4010 +55035 64318 0.4580 +55035 79101 0.6170 +55035 79954 0.4080 +55035 84450 0.4240 +55035 84549 0.5050 +55035 84916 0.4660 +55035 88745 0.4720 +55035 112840 0.7270 +55035 122704 0.4410 +55035 133482 0.4060 +55035 317781 0.7890 +55036 55130 0.7920 +55036 55172 0.7130 +55036 55567 0.4800 +55036 56171 0.6080 +55036 56683 0.6880 +55036 64446 0.8210 +55036 64800 0.4200 +55036 64946 0.4110 +55036 79645 0.4200 +55036 79925 0.6440 +55036 80217 0.6150 +55036 81492 0.5220 +55036 81610 0.4370 +55036 83450 0.7380 +55036 83538 0.5630 +55036 83894 0.7420 +55036 84229 0.7350 +55036 85016 0.5010 +55036 85478 0.9040 +55036 89765 0.7810 +55036 92129 0.4440 +55036 92749 0.8840 +55036 93233 0.9110 +55036 114327 0.4070 +55036 115948 0.7770 +55036 122481 0.7180 +55036 123872 0.8220 +55036 135138 0.6080 +55036 136332 0.5190 +55036 139212 0.6470 +55036 146754 0.4010 +55036 146845 0.4080 +55036 146849 0.4960 +55036 149465 0.5670 +55036 154865 0.4690 +55036 160762 0.6210 +55036 161582 0.7190 +55036 164395 0.4410 +55036 201625 0.5590 +55036 220136 0.4640 +55036 221421 0.8060 +55036 339829 0.9950 +55036 345643 0.6040 +55036 345895 0.8570 +55036 348807 0.4110 +55036 352909 0.7830 +55036 374407 0.4320 +55036 387885 0.4750 +55036 388389 0.8210 +55037 55052 0.8400 +55037 55149 0.4270 +55037 55168 0.9410 +55037 55173 0.9930 +55037 55178 0.4190 +55037 55210 0.4720 +55037 55250 0.4460 +55037 55308 0.4200 +55037 56945 0.9990 +55037 57129 0.8770 +55037 57505 0.4110 +55037 60488 0.9990 +55037 63875 0.8280 +55037 63931 0.9850 +55037 64216 0.5150 +55037 64432 0.9890 +55037 64745 0.8570 +55037 64928 0.8470 +55037 64949 0.9840 +55037 64951 0.9920 +55037 64960 0.9940 +55037 64963 0.9960 +55037 64965 0.9960 +55037 64968 0.9850 +55037 64969 0.9960 +55037 64975 0.8620 +55037 64976 0.8470 +55037 64978 0.8760 +55037 64979 0.8760 +55037 64981 0.8230 +55037 64983 0.8260 +55037 65003 0.8880 +55037 65005 0.8760 +55037 65008 0.8660 +55037 65080 0.8970 +55037 65993 0.9930 +55037 78988 0.8580 +55037 79590 0.8790 +55037 79664 0.4510 +55037 79675 0.5740 +55037 79736 0.6650 +55037 79810 0.7020 +55037 79863 0.8650 +55037 79922 0.4040 +55037 81892 0.5580 +55037 83858 0.4020 +55037 84273 0.8780 +55037 84311 0.8940 +55037 84340 0.5620 +55037 84545 0.8270 +55037 84881 0.4070 +55037 85476 0.9110 +55037 87178 0.5120 +55037 90480 0.8830 +55037 91574 0.5900 +55037 92170 0.4020 +55037 92259 0.9040 +55037 92399 0.9300 +55037 115416 0.4280 +55037 116540 0.8500 +55037 116541 0.8320 +55037 118487 0.9880 +55037 120892 0.5100 +55037 122704 0.8240 +55037 124995 0.8700 +55037 128308 0.8240 +55037 130916 0.4490 +55037 158234 0.7270 +55037 196074 0.8690 +55037 219402 0.9560 +55037 219927 0.8660 +55037 222484 0.4200 +55037 254042 0.5170 +55037 286075 0.4400 +55038 55143 0.7230 +55038 55844 0.6210 +55038 56256 0.5940 +55038 83461 0.5750 +55038 83540 0.5050 +55038 83879 0.6070 +55038 84733 0.4750 +55038 113130 0.7210 +55038 157313 0.6340 +55039 55093 0.4970 +55039 55140 0.5920 +55039 55253 0.8920 +55039 55621 0.4570 +55039 55623 0.4410 +55039 56986 0.4660 +55039 57570 0.8480 +55039 57604 0.5840 +55039 60487 0.5810 +55039 79083 0.4110 +55039 79710 0.4510 +55039 79979 0.4490 +55039 80032 0.4400 +55039 81627 0.4620 +55039 81890 0.4690 +55039 83480 0.4050 +55039 90353 0.6120 +55039 91801 0.5400 +55039 92935 0.4330 +55039 93587 0.7010 +55039 113179 0.4330 +55039 115708 0.5150 +55039 115939 0.7280 +55039 117246 0.4180 +55039 127253 0.9340 +55039 129450 0.8310 +55039 130916 0.4270 +55039 134637 0.4010 +55039 150962 0.5050 +55039 152992 0.5020 +55039 158234 0.4960 +55039 441250 0.4660 +55040 55707 0.6750 +55040 56479 0.5400 +55040 57154 0.5050 +55040 58513 0.9690 +55040 64145 0.4770 +55040 64847 0.4500 +55040 80115 0.5640 +55040 80351 0.4340 +55040 83715 0.5750 +55040 83892 0.4200 +55040 83988 0.5470 +55040 84174 0.5990 +55040 84251 0.6940 +55040 84270 0.4140 +55040 84557 0.4720 +55040 85021 0.4470 +55040 85439 0.6170 +55040 92799 0.5460 +55040 115548 0.7680 +55040 122616 0.5460 +55040 130162 0.4980 +55040 130340 0.5700 +55040 140893 0.4210 +55040 143187 0.4510 +55040 150350 0.5400 +55040 200576 0.5300 +55040 221302 0.5120 +55041 56853 0.6080 +55041 79583 0.4220 +55041 101059938 0.4350 +55048 55165 0.4550 +55048 55293 0.8050 +55048 57132 0.9180 +55048 63922 0.4120 +55048 79643 0.9510 +55048 79720 0.9190 +55048 84313 0.9560 +55048 89853 0.9780 +55048 91782 0.9120 +55048 92421 0.7760 +55048 93343 0.9850 +55048 93487 0.4610 +55048 128866 0.9320 +55048 128989 0.4170 +55048 137492 0.9240 +55048 155382 0.9130 +55048 200894 0.4080 +55048 390595 0.5400 +55048 100526767 0.4300 +55049 56948 0.4330 +55049 64975 0.4710 +55049 79002 0.4220 +55049 84988 0.5460 +55049 91978 0.6570 +55049 219487 0.4180 +55049 339229 0.4790 +55051 55094 0.6750 +55051 55422 0.4390 +55051 55425 0.4410 +55051 55596 0.7050 +55051 57169 0.4830 +55051 79713 0.4760 +55051 79774 0.4020 +55051 84186 0.5110 +55051 85378 0.4670 +55051 85406 0.4300 +55051 90459 0.5270 +55051 114790 0.5470 +55051 126520 0.5780 +55051 129684 0.4310 +55051 138162 0.4010 +55051 143689 0.4900 +55051 196441 0.7110 +55052 55157 0.4840 +55052 55168 0.9880 +55052 55173 0.9960 +55052 55176 0.6970 +55052 55178 0.8540 +55052 55272 0.9830 +55052 55316 0.9560 +55052 55324 0.8090 +55052 55633 0.4290 +55052 55651 0.6400 +55052 55703 0.7480 +55052 55794 0.8910 +55052 55862 0.4190 +55052 55967 0.4980 +55052 56474 0.4630 +55052 56648 0.8630 +55052 56945 0.8410 +55052 57129 0.9990 +55052 57136 0.7610 +55052 57470 0.5350 +55052 57471 0.4600 +55052 57696 0.4970 +55052 60488 0.9610 +55052 60558 0.9040 +55052 60678 0.4960 +55052 63875 0.9990 +55052 63931 0.9970 +55052 64146 0.9510 +55052 64374 0.8810 +55052 64432 0.8980 +55052 64928 0.9320 +55052 64949 0.8850 +55052 64951 0.8910 +55052 64960 0.9990 +55052 64963 0.9970 +55052 64965 0.9990 +55052 64968 0.9990 +55052 64969 0.9980 +55052 64975 0.9940 +55052 64976 0.8980 +55052 64978 0.9350 +55052 64979 0.9990 +55052 64981 0.9840 +55052 64983 0.9990 +55052 65003 0.9980 +55052 65005 0.9990 +55052 65008 0.9970 +55052 65080 0.9810 +55052 65121 0.6990 +55052 65122 0.6990 +55052 65260 0.4940 +55052 65993 0.9250 +55052 78988 0.8760 +55052 79133 0.4070 +55052 79590 0.9950 +55052 79631 0.9220 +55052 79728 0.7200 +55052 79877 0.4440 +55052 79922 0.4440 +55052 80222 0.4010 +55052 80298 0.4300 +55052 80347 0.4440 +55052 83479 0.5390 +55052 84172 0.7390 +55052 84273 0.4480 +55052 84311 0.8850 +55052 84340 0.9470 +55052 84545 0.9980 +55052 84881 0.4280 +55052 85476 0.9850 +55052 85865 0.9350 +55052 87178 0.7630 +55052 90313 0.4850 +55052 90480 0.9720 +55052 91419 0.5060 +55052 91574 0.9430 +55052 91875 0.4660 +55052 91893 0.4270 +55052 92170 0.8820 +55052 92399 0.9980 +55052 115416 0.9940 +55052 116540 0.8990 +55052 116541 0.9350 +55052 118487 0.9450 +55052 122704 0.9820 +55052 124995 0.9610 +55052 126328 0.4260 +55052 126402 0.9580 +55052 128308 0.8880 +55052 130916 0.8420 +55052 133015 0.4290 +55052 135138 0.4290 +55052 137682 0.4110 +55052 140801 0.8800 +55052 140890 0.4030 +55052 142940 0.4240 +55052 143244 0.8630 +55052 219402 0.5450 +55052 219927 0.9990 +55052 253827 0.5440 +55052 255308 0.4890 +55052 284106 0.5270 +55052 285367 0.4660 +55052 285855 0.9400 +55052 343068 0.6990 +55052 343070 0.6990 +55052 345051 0.7410 +55052 347487 0.9080 +55052 374659 0.9580 +55052 387129 0.9360 +55052 387338 0.8310 +55052 390999 0.6990 +55052 391002 0.6990 +55052 400735 0.6990 +55052 400736 0.6990 +55052 440560 0.6990 +55052 440561 0.6990 +55052 441873 0.6990 +55052 493753 0.5270 +55052 641776 0.8240 +55052 643909 0.8240 +55052 645359 0.6990 +55052 653619 0.6990 +55052 654364 0.4790 +55052 728524 0.8240 +55052 729528 0.6990 +55052 100287482 0.9080 +55052 100505478 0.9360 +55052 100526842 0.9670 +55052 100996746 0.8240 +55052 101929983 0.6990 +55052 105180390 0.8240 +55052 105180391 0.8240 +55052 114483834 0.8160 +55052 127898561 0.8110 +55054 55062 0.9900 +55054 55102 0.6850 +55054 55201 0.8360 +55054 55332 0.4320 +55054 55626 0.8090 +55054 56269 0.4520 +55054 56270 0.5750 +55054 57521 0.4130 +55054 57724 0.4670 +55054 58484 0.4180 +55054 60592 0.4030 +55054 60673 0.8970 +55054 64127 0.9990 +55054 64170 0.5450 +55054 64422 0.9990 +55054 65018 0.5170 +55054 79065 0.8970 +55054 79671 0.9490 +55054 80342 0.7890 +55054 81631 0.9550 +55054 81671 0.5450 +55054 83452 0.9990 +55054 83734 0.9730 +55054 84141 0.7200 +55054 84557 0.8540 +55054 84938 0.8100 +55054 84971 0.8060 +55054 85363 0.8050 +55054 89849 0.9370 +55054 90410 0.8070 +55054 112574 0.7540 +55054 114548 0.6730 +55054 115201 0.8170 +55054 120892 0.4500 +55054 132014 0.4410 +55054 140901 0.5830 +55054 149233 0.6690 +55054 149420 0.5750 +55054 157753 0.8080 +55054 159296 0.4790 +55054 162989 0.5290 +55054 285973 0.6750 +55054 339145 0.5510 +55054 345611 0.9700 +55054 400668 0.4720 +55054 400935 0.4930 +55054 440738 0.8700 +55054 441925 0.6170 +55054 643246 0.4810 +55055 55143 0.7790 +55055 55165 0.5640 +55055 55166 0.5660 +55055 55215 0.5710 +55055 55388 0.4580 +55055 55635 0.5890 +55055 55706 0.4420 +55055 55723 0.4010 +55055 55728 0.4260 +55055 55732 0.4590 +55055 55746 0.5140 +55055 55839 0.7760 +55055 56992 0.5080 +55055 57082 0.7590 +55055 57122 0.4050 +55055 57405 0.5160 +55055 57534 0.4080 +55055 60561 0.8440 +55055 64105 0.7910 +55055 64151 0.6880 +55055 64946 0.7130 +55055 79003 0.4490 +55055 79019 0.6700 +55055 79172 0.5080 +55055 79682 0.6920 +55055 79801 0.6740 +55055 79866 0.5670 +55055 79980 0.6910 +55055 80152 0.6050 +55055 81930 0.7040 +55055 83540 0.7650 +55055 84057 0.4140 +55055 84515 0.5740 +55055 84930 0.4090 +55055 90417 0.6400 +55055 113130 0.5770 +55055 128239 0.4520 +55055 146059 0.4120 +55055 147841 0.6220 +55055 148223 0.4200 +55055 151246 0.6460 +55055 151648 0.6750 +55055 157313 0.4110 +55055 163081 0.5040 +55055 220134 0.7330 +55055 221150 0.6900 +55055 259266 0.5480 +55055 348235 0.4160 +55055 378708 0.4310 +55055 387103 0.4100 +55055 401541 0.5140 +55057 55609 0.4180 +55057 198437 0.5070 +55057 345062 0.4450 +55057 645426 0.7000 +55061 55628 0.5510 +55061 114770 0.4220 +55061 114827 0.4950 +55061 257144 0.4250 +55061 377007 0.4430 +55061 388743 0.4140 +55062 55102 0.9960 +55062 55201 0.5050 +55062 55332 0.4510 +55062 55626 0.8270 +55062 55697 0.9600 +55062 55737 0.4700 +55062 55823 0.4210 +55062 56270 0.4680 +55062 56957 0.9620 +55062 57521 0.4730 +55062 57724 0.6340 +55062 58511 0.4760 +55062 60673 0.8970 +55062 64419 0.6220 +55062 64422 0.8340 +55062 65018 0.5850 +55062 79065 0.9110 +55062 79959 0.4930 +55062 81631 0.7300 +55062 81671 0.8020 +55062 83734 0.8030 +55062 84557 0.6600 +55062 84938 0.7020 +55062 84971 0.6880 +55062 89849 0.9790 +55062 115201 0.7670 +55062 128272 0.4030 +55062 139341 0.4200 +55062 140901 0.5190 +55062 149420 0.5190 +55062 200576 0.7020 +55062 221960 0.4070 +55062 285973 0.8660 +55062 345611 0.4180 +55062 440738 0.6580 +55062 441925 0.4300 +55062 643246 0.5330 +55062 644139 0.6660 +55063 56979 0.4250 +55063 57091 0.8120 +55063 64231 0.7190 +55063 79746 0.4370 +55063 79890 0.7200 +55063 83461 0.4180 +55063 83540 0.6440 +55063 83661 0.5130 +55063 90990 0.6160 +55063 91252 0.4580 +55063 123041 0.8270 +55063 221908 0.4080 +55063 222950 0.6160 +55063 245802 0.6060 +55063 259266 0.7420 +55063 402573 0.4550 +55063 643680 0.6220 +55064 64800 0.4170 +55064 79846 0.4730 +55064 84223 0.5060 +55064 90871 0.4760 +55064 158358 0.4260 +55064 283417 0.4030 +55065 55312 0.5570 +55065 80308 0.7550 +55065 80736 0.4060 +55065 81034 0.6370 +55066 55364 0.5880 +55066 55526 0.4890 +55066 55753 0.4340 +55066 56061 0.4140 +55066 57546 0.8900 +55066 57634 0.4980 +55066 63929 0.4340 +55066 79072 0.4140 +55066 79763 0.5020 +55066 84955 0.6240 +55066 85378 0.4540 +55066 114112 0.4370 +55066 130752 0.4120 +55066 200205 0.7130 +55066 200895 0.5240 +55066 374291 0.4430 +55066 441024 0.6660 +55066 730249 0.6340 +55068 64077 0.4590 +55068 79822 0.4480 +55068 83449 0.4870 +55068 83746 0.4350 +55068 90693 0.4760 +55068 118461 0.5180 +55068 127247 0.4360 +55068 129868 0.5940 +55068 138716 0.4200 +55068 147991 0.4220 +55068 153396 0.4600 +55068 162427 0.4050 +55068 201798 0.4470 +55068 219487 0.5390 +55068 219493 0.4280 +55068 643418 0.4050 +55069 55603 0.4790 +55069 57569 0.4450 +55069 57695 0.4200 +55069 79705 0.4070 +55069 83468 0.4790 +55069 84627 0.5060 +55069 128372 0.4470 +55069 138805 0.4310 +55069 144124 0.4180 +55069 154807 0.5920 +55069 219469 0.5050 +55069 286256 0.5810 +55069 390265 0.4160 +55069 100506049 0.4740 +55070 55294 0.4350 +55070 55626 0.9000 +55070 55827 0.9140 +55070 64326 0.9970 +55070 64708 0.6940 +55070 79016 0.9990 +55070 79269 0.9060 +55070 80067 0.9060 +55070 80119 0.5060 +55070 80344 0.9000 +55070 81620 0.6150 +55070 83737 0.4220 +55070 83931 0.8150 +55070 84678 0.4920 +55070 85236 0.7250 +55070 90379 0.9000 +55070 128312 0.7270 +55070 138009 0.5630 +55070 139170 0.5400 +55070 139425 0.5630 +55070 158983 0.7270 +55070 255626 0.7290 +55070 285429 0.5630 +55070 286436 0.7270 +55070 340578 0.5400 +55070 347442 0.5630 +55070 440689 0.7270 +55070 114483833 0.7270 +55071 57415 0.5100 +55071 92667 0.4030 +55071 162681 0.6060 +55071 165721 0.4680 +55071 284992 0.5680 +55071 342850 0.4470 +55072 55284 0.4180 +55072 55611 0.4070 +55072 55666 0.6320 +55072 55768 0.5090 +55072 56897 0.5160 +55072 56957 0.6330 +55072 57506 0.5280 +55072 63893 0.4340 +55072 63943 0.4240 +55072 64127 0.8640 +55072 80700 0.4220 +55072 81844 0.5590 +55072 81858 0.9990 +55072 83737 0.4260 +55072 84433 0.7650 +55072 90268 0.9990 +55072 124044 0.9220 +55072 135138 0.5940 +55072 197259 0.4570 +55072 220213 0.5390 +55072 221302 0.5840 +55072 257397 0.7870 +55072 284131 0.4160 +55074 129303 0.4330 +55074 347468 0.5140 +55075 55717 0.4120 +55075 55968 0.4160 +55075 56924 0.4160 +55075 57144 0.4160 +55075 79180 0.5720 +55075 79738 0.4190 +55075 81839 0.4450 +55075 84196 0.4810 +55075 84279 0.5820 +55075 91151 0.4780 +55075 114885 0.4230 +55075 136242 0.5290 +55075 140290 0.5000 +55075 157769 0.4010 +55075 253959 0.4090 +55075 343099 0.4770 +55076 55081 0.4050 +55076 55107 0.4890 +55076 55706 0.4500 +55076 57188 0.4220 +55076 57536 0.4340 +55076 79068 0.4500 +55076 79710 0.4780 +55076 79871 0.4220 +55076 80013 0.8680 +55076 80723 0.4380 +55076 84866 0.4820 +55076 89894 0.4530 +55076 92162 0.5410 +55076 118429 0.4080 +55076 131920 0.4300 +55076 145282 0.6230 +55076 155006 0.4710 +55076 203286 0.4310 +55076 252839 0.7110 +55076 387521 0.4460 +55076 389177 0.5430 +55076 389336 0.4150 +55079 55879 0.4680 +55079 57030 0.4780 +55079 57616 0.4910 +55079 63973 0.5930 +55079 63974 0.7510 +55079 64211 0.4840 +55079 64919 0.4180 +55079 78992 0.4180 +55079 93986 0.5280 +55079 122706 0.4090 +55079 137970 0.4660 +55079 390259 0.4480 +55080 55757 0.6390 +55080 56886 0.5430 +55080 64167 0.5380 +55080 89853 0.4470 +55081 55112 0.4270 +55081 55212 0.6410 +55081 55349 0.5810 +55081 55764 0.8820 +55081 56912 0.9990 +55081 57175 0.4480 +55081 57539 0.8670 +55081 57545 0.5080 +55081 57560 0.9990 +55081 57576 0.6210 +55081 57728 0.8830 +55081 64792 0.9980 +55081 79583 0.4480 +55081 79659 0.6610 +55081 79696 0.4590 +55081 79809 0.9220 +55081 79867 0.4930 +55081 79874 0.4440 +55081 79989 0.9950 +55081 80173 0.9980 +55081 80184 0.4600 +55081 84174 0.5600 +55081 89891 0.4940 +55081 90410 0.9990 +55081 91147 0.4780 +55081 92104 0.9730 +55081 92552 0.4290 +55081 112752 0.8550 +55081 129880 0.5380 +55081 132320 0.4110 +55081 134121 0.5930 +55081 138162 0.4320 +55081 150737 0.9950 +55081 161582 0.4510 +55081 199223 0.6580 +55081 200728 0.4870 +55081 200894 0.5780 +55081 261734 0.4180 +55081 282991 0.4210 +55081 283237 0.4180 +55082 55119 0.4900 +55082 55421 0.4730 +55082 58517 0.5570 +55082 64062 0.4750 +55082 64783 0.4150 +55082 79753 0.4770 +55082 92002 0.5670 +55082 140890 0.5030 +55082 219681 0.4340 +55082 284184 0.4890 +55082 728215 0.4340 +55083 55108 0.5300 +55083 55327 0.8380 +55083 55582 0.6130 +55083 55605 0.6120 +55083 55614 0.5860 +55083 55738 0.4990 +55083 55850 0.4990 +55083 56992 0.6050 +55083 57576 0.6100 +55083 60561 0.4990 +55083 63971 0.5840 +55083 64130 0.6100 +55083 64837 0.5950 +55083 79872 0.5340 +55083 81565 0.5430 +55083 81930 0.6290 +55083 84288 0.4480 +55083 84364 0.4990 +55083 84643 0.6190 +55083 84700 0.4490 +55083 89953 0.4210 +55083 90990 0.6380 +55083 114781 0.4050 +55083 124565 0.4280 +55083 124602 0.5960 +55083 146909 0.6060 +55083 147700 0.4590 +55083 221458 0.5840 +55083 285643 0.5150 +55083 374654 0.6040 +55084 92129 0.4080 +55086 56897 0.4440 +55086 57697 0.4060 +55086 80198 0.5860 +55086 84083 0.7250 +55086 84893 0.6630 +55086 201973 0.5380 +55086 253714 0.4990 +55086 259282 0.6220 +55088 55610 0.6340 +55088 55684 0.4650 +55088 57698 0.4490 +55088 57700 0.4620 +55088 64429 0.4670 +55088 79949 0.4810 +55088 80230 0.4870 +55088 81602 0.4460 +55088 84632 0.4270 +55088 143187 0.4620 +55088 146923 0.5450 +55088 165055 0.5260 +55088 283987 0.4020 +55088 374354 0.6050 +55089 55240 0.4130 +55089 56940 0.4020 +55089 57683 0.4840 +55089 57713 0.7180 +55089 64093 0.6060 +55089 79960 0.5200 +55089 84239 0.4520 +55089 85463 0.4210 +55089 124935 0.4610 +55089 136306 0.4150 +55089 153129 0.4360 +55089 153201 0.4250 +55089 169841 0.4480 +55089 206358 0.4220 +55089 266812 0.5300 +55089 340351 0.4130 +55089 353274 0.5110 +55090 55588 0.9980 +55090 56953 0.5770 +55090 79991 0.4970 +55090 80306 0.9990 +55090 81857 0.9880 +55090 83860 0.8150 +55090 84246 0.9990 +55090 84498 0.4990 +55090 85441 0.4990 +55090 90390 0.9970 +55090 112950 0.9970 +55090 116931 0.9210 +55090 121504 0.8000 +55090 126961 0.8000 +55090 129685 0.8150 +55090 133522 0.5430 +55090 134492 0.4960 +55090 256643 0.5400 +55090 333932 0.8000 +55090 400569 0.9970 +55090 404672 0.8130 +55090 554313 0.8000 +55090 653604 0.8000 +55092 55784 0.4570 +55092 55966 0.4210 +55092 55969 0.4220 +55092 57520 0.4240 +55092 57699 0.4680 +55092 64343 0.4420 +55092 83737 0.4200 +55092 83988 0.4290 +55092 84960 0.5350 +55092 114134 0.4330 +55092 115207 0.4380 +55092 137682 0.4430 +55092 144110 0.4490 +55092 283461 0.4060 +55092 286144 0.4090 +55092 401097 0.4470 +55093 64395 0.4060 +55093 79078 0.5740 +55093 80305 0.5300 +55093 81890 0.4910 +55093 84304 0.4270 +55093 115294 0.4750 +55093 123803 0.7760 +55093 146456 0.4070 +55093 157769 0.5040 +55093 197131 0.7560 +55094 55192 0.4820 +55094 55702 0.7760 +55094 55837 0.8300 +55094 57456 0.6320 +55094 57461 0.6120 +55094 57794 0.6020 +55094 58509 0.5360 +55094 60625 0.4260 +55094 63932 0.5000 +55094 65084 0.5510 +55094 79165 0.5160 +55094 79576 0.5170 +55094 79650 0.7940 +55094 79706 0.5550 +55094 79753 0.6540 +55094 79922 0.5010 +55094 80129 0.5670 +55094 84292 0.9130 +55094 84318 0.4150 +55094 84811 0.4930 +55094 126526 0.4440 +55094 143884 0.4330 +55094 151903 0.6790 +55094 163859 0.6280 +55094 389170 0.4370 +55095 56478 0.6890 +55095 57156 0.4050 +55095 57480 0.4100 +55095 124590 0.4950 +55095 340719 0.8000 +55095 374654 0.4110 +55095 100505876 0.4570 +55096 79843 0.4180 +55096 93986 0.4210 +55096 134187 0.4360 +55096 282890 0.5950 +55096 441272 0.5700 +55100 55696 0.8180 +55100 55702 0.8010 +55100 56949 0.8880 +55100 57703 0.8980 +55100 58509 0.5320 +55100 63932 0.5170 +55100 64417 0.5800 +55100 65250 0.9350 +55100 79165 0.5060 +55100 79576 0.5260 +55100 79706 0.6440 +55100 79753 0.4810 +55100 83443 0.4050 +55100 84064 0.4750 +55100 84811 0.6400 +55100 92255 0.4430 +55100 96764 0.4220 +55100 121793 0.4040 +55100 123207 0.4060 +55100 163859 0.5450 +55100 202151 0.4170 +55100 222234 0.4200 +55100 100129792 0.4610 +55100 100534599 0.8280 +55101 55245 0.4450 +55101 55572 0.8510 +55101 55863 0.5330 +55101 58527 0.4390 +55101 64746 0.4240 +55101 79414 0.4320 +55101 90273 0.4180 +55101 90871 0.7320 +55101 118487 0.4150 +55101 126298 0.5200 +55101 137682 0.4640 +55101 148014 0.6110 +55101 326625 0.4600 +55101 388228 0.4010 +55101 391189 0.4070 +55101 790955 0.4450 +55101 109703458 0.4340 +55102 55187 0.8140 +55102 55610 0.4950 +55102 55626 0.4990 +55102 56270 0.7840 +55102 57724 0.7230 +55102 60673 0.6330 +55102 60684 0.6000 +55102 64422 0.6900 +55102 79065 0.8090 +55102 81631 0.5120 +55102 81671 0.5920 +55102 83734 0.7250 +55102 84557 0.5310 +55102 84938 0.7030 +55102 84971 0.6670 +55102 89849 0.6430 +55102 115201 0.6660 +55102 140901 0.6050 +55102 149420 0.6050 +55102 197131 0.4680 +55102 285973 0.8350 +55102 440026 0.4400 +55102 440738 0.4530 +55103 57148 0.4740 +55103 80004 0.4160 +55103 84066 0.9530 +55103 96459 0.4280 +55103 143630 0.4670 +55103 353299 0.8470 +55103 390067 0.4470 +55105 55272 0.8410 +55105 55781 0.5310 +55105 55783 0.4300 +55105 55813 0.8660 +55105 56919 0.5170 +55105 57050 0.8420 +55105 60625 0.5320 +55105 64434 0.8450 +55105 65083 0.8800 +55105 83732 0.4740 +55105 84946 0.6390 +55105 88745 0.5710 +55105 121549 0.4050 +55105 128153 0.6520 +55105 339479 0.4080 +55106 57573 0.4580 +55106 63934 0.4460 +55106 65124 0.4850 +55106 89777 0.5060 +55107 55129 0.5290 +55107 55144 0.4350 +55107 56262 0.7180 +55107 57101 0.6370 +55107 57719 0.4610 +55107 59341 0.5430 +55107 65010 0.5040 +55107 80036 0.4580 +55107 80119 0.4070 +55107 80131 0.4120 +55107 83990 0.7850 +55107 84230 0.4220 +55107 90019 0.4380 +55107 91283 0.4150 +55107 91860 0.6890 +55107 115019 0.6140 +55107 144453 0.4900 +55107 163688 0.6570 +55107 220064 0.5840 +55107 266675 0.4050 +55107 400566 0.4470 +55108 55163 0.4060 +55108 55800 0.4460 +55108 57184 0.4860 +55108 57223 0.5420 +55108 81558 0.4400 +55108 84263 0.4600 +55108 115353 0.4220 +55109 55272 0.5180 +55109 55750 0.5050 +55109 55813 0.5430 +55109 55906 0.4450 +55109 56829 0.5150 +55109 57050 0.5370 +55109 57085 0.4990 +55109 57670 0.5130 +55109 64434 0.5140 +55109 65083 0.5260 +55109 79893 0.4090 +55109 80853 0.5120 +55109 88745 0.5210 +55109 92799 0.4280 +55109 114034 0.6090 +55109 122773 0.4310 +55109 126868 0.6290 +55109 407977 0.6990 +55110 55181 0.6050 +55110 55234 0.9210 +55110 55421 0.5480 +55110 55629 0.6480 +55110 55696 0.9260 +55110 55702 0.9810 +55110 55706 0.5220 +55110 55746 0.6290 +55110 55802 0.6940 +55110 56006 0.6140 +55110 56949 0.8180 +55110 57107 0.6890 +55110 57122 0.6010 +55110 57187 0.6890 +55110 57461 0.9800 +55110 57703 0.9930 +55110 57819 0.9250 +55110 58509 0.8320 +55110 64221 0.5310 +55110 65109 0.9960 +55110 65110 0.9960 +55110 79018 0.7430 +55110 79023 0.7280 +55110 79084 0.5120 +55110 79088 0.5930 +55110 79228 0.5980 +55110 79576 0.8010 +55110 79706 0.8280 +55110 79753 0.9050 +55110 79869 0.7120 +55110 79902 0.5400 +55110 80145 0.5830 +55110 81929 0.7060 +55110 83443 0.9360 +55110 84248 0.6300 +55110 84271 0.8960 +55110 84305 0.9990 +55110 84321 0.6000 +55110 84324 0.6840 +55110 84811 0.9020 +55110 84844 0.9530 +55110 84950 0.9190 +55110 129401 0.5730 +55110 143884 0.5970 +55110 153527 0.9180 +55110 163859 0.8020 +55110 199746 0.5510 +55110 317649 0.5120 +55110 348995 0.6160 +55110 100101267 0.5070 +55110 100534599 0.9020 +55111 57697 0.5320 +55111 64763 0.5160 +55111 94039 0.4130 +55111 116225 0.4620 +55111 144717 0.8380 +55111 150368 0.8320 +55111 219453 0.4780 +55111 221908 0.4820 +55111 282775 0.4690 +55112 55764 0.5350 +55112 57488 0.7170 +55112 57539 0.7000 +55112 57560 0.6780 +55112 57728 0.7620 +55112 64434 0.4980 +55112 79659 0.9990 +55112 79809 0.7170 +55112 83657 0.9560 +55112 83658 0.9970 +55112 89891 0.9990 +55112 112752 0.6560 +55112 128821 0.4090 +55112 132884 0.5980 +55112 140735 0.9230 +55112 153241 0.6450 +55112 200132 0.7290 +55112 255758 0.9920 +55112 343521 0.8280 +55113 55576 0.4530 +55113 55754 0.5800 +55113 57048 0.4170 +55113 79767 0.4190 +55113 91937 0.5090 +55113 196527 0.8000 +55113 219844 0.4450 +55113 286410 0.8310 +55114 56288 0.8570 +55114 57101 0.4940 +55114 64398 0.9260 +55114 81565 0.4120 +55114 154796 0.9990 +55114 154810 0.9380 +55114 221178 0.5070 +55114 259173 0.6360 +55116 92840 0.4270 +55116 202052 0.4150 +55116 283554 0.4010 +55117 55238 0.4420 +55117 81539 0.4210 +55117 84190 0.4740 +55117 92745 0.4230 +55117 121793 0.4490 +55117 124935 0.4470 +55118 57622 0.4220 +55118 342865 0.4380 +55118 643988 0.4190 +55119 55599 0.4350 +55119 55660 0.4100 +55119 55677 0.4680 +55119 55692 0.6600 +55119 58512 0.4240 +55119 58517 0.8370 +55119 60592 0.4560 +55119 65117 0.5150 +55119 79811 0.6800 +55119 80148 0.5060 +55119 84081 0.4930 +55119 84950 0.9190 +55119 124245 0.6400 +55119 140890 0.5890 +55119 146279 0.4060 +55119 284611 0.4870 +55120 55159 0.6020 +55120 55215 0.9990 +55120 55284 0.9740 +55120 56033 0.4040 +55120 56647 0.4210 +55120 56852 0.6000 +55120 57507 0.4650 +55120 57599 0.9570 +55120 57697 0.9990 +55120 64428 0.4460 +55120 64858 0.6490 +55120 79728 0.8830 +55120 80010 0.4530 +55120 80198 0.7500 +55120 80233 0.9990 +55120 83990 0.9120 +55120 84126 0.7540 +55120 84464 0.9000 +55120 91442 0.9990 +55120 116028 0.4070 +55120 129787 0.4370 +55120 146956 0.6950 +55120 164684 0.4080 +55120 197342 0.5750 +55120 199720 0.8500 +55120 199990 0.9990 +55120 201254 0.9990 +55120 353497 0.6580 +55120 378708 0.9990 +55120 548593 0.7460 +55120 100526835 0.4460 +55122 55705 0.5680 +55122 55860 0.6780 +55122 55929 0.6730 +55122 57038 0.5220 +55122 57515 0.4400 +55122 60682 0.4180 +55122 63891 0.5440 +55122 64332 0.9280 +55122 79647 0.8490 +55122 163859 0.4180 +55122 219988 0.4270 +55124 56154 0.4720 +55124 56159 0.4080 +55124 56163 0.8490 +55124 56164 0.6690 +55124 56165 0.9990 +55124 60681 0.4200 +55124 66037 0.4500 +55124 79923 0.4450 +55124 84944 0.9130 +55124 91646 0.9580 +55124 93082 0.4130 +55124 113802 0.7790 +55124 117178 0.4090 +55124 121355 0.7450 +55124 122402 0.9630 +55124 136991 0.9440 +55124 143689 0.7390 +55124 146852 0.4350 +55124 154197 0.4600 +55124 161829 0.8950 +55124 163589 0.8430 +55124 201164 0.7400 +55124 221400 0.9340 +55124 339345 0.5870 +55124 340719 0.5500 +55124 342977 0.5510 +55124 346673 0.6500 +55124 373863 0.4520 +55124 402381 0.4210 +55124 440822 0.6500 +55124 100129278 0.7310 +55125 55142 0.6360 +55125 55165 0.4500 +55125 55559 0.5000 +55125 55719 0.4500 +55125 55722 0.5060 +55125 55755 0.9500 +55125 55835 0.9220 +55125 57122 0.4180 +55125 57646 0.4620 +55125 57697 0.5070 +55125 64770 0.6630 +55125 64793 0.8470 +55125 79077 0.4090 +55125 79441 0.6560 +55125 79598 0.5920 +55125 79866 0.6440 +55125 79959 0.5750 +55125 80153 0.4430 +55125 80817 0.4880 +55125 81929 0.9230 +55125 84318 0.4080 +55125 85378 0.5150 +55125 85459 0.8590 +55125 91754 0.5140 +55125 93323 0.6160 +55125 93974 0.4040 +55125 112398 0.6780 +55125 115106 0.5500 +55125 116840 0.6620 +55125 117177 0.5140 +55125 121441 0.9070 +55125 134359 0.6470 +55125 145508 0.4010 +55125 149986 0.4180 +55125 152185 0.6110 +55125 153241 0.7200 +55125 159989 0.4310 +55125 163786 0.9210 +55125 201255 0.5110 +55125 221150 0.4120 +55125 282809 0.5390 +55125 440145 0.4840 +55125 728642 0.5580 +55127 55131 0.7930 +55127 55153 0.7610 +55127 55178 0.4150 +55127 55183 0.4860 +55127 55226 0.9990 +55127 55272 0.9960 +55127 55299 0.6900 +55127 55341 0.6770 +55127 55505 0.5240 +55127 55591 0.4060 +55127 55622 0.7740 +55127 55651 0.7530 +55127 55703 0.8310 +55127 55720 0.9220 +55127 55746 0.4210 +55127 55759 0.9080 +55127 55760 0.6040 +55127 55781 0.5610 +55127 55794 0.5960 +55127 55813 0.9990 +55127 55898 0.4360 +55127 56252 0.4290 +55127 56474 0.4470 +55127 56902 0.9820 +55127 56915 0.8200 +55127 56919 0.4860 +55127 57003 0.4720 +55127 57050 0.9980 +55127 57062 0.8370 +55127 57109 0.4840 +55127 57418 0.8670 +55127 57647 0.9430 +55127 57696 0.7250 +55127 60343 0.4420 +55127 63892 0.4060 +55127 64216 0.6570 +55127 64318 0.8040 +55127 64374 0.4390 +55127 64425 0.5580 +55127 64434 0.5750 +55127 64794 0.8170 +55127 64960 0.7730 +55127 64963 0.6410 +55127 65083 0.9990 +55127 65095 0.7580 +55127 79009 0.4320 +55127 79039 0.7800 +55127 79050 0.9980 +55127 79159 0.5140 +55127 79571 0.8650 +55127 79631 0.4090 +55127 79707 0.8440 +55127 79711 0.5710 +55127 79954 0.9980 +55127 81887 0.5840 +55127 83732 0.4200 +55127 83743 0.6640 +55127 84128 0.9990 +55127 84135 0.9990 +55127 84154 0.7860 +55127 84172 0.9430 +55127 84273 0.4310 +55127 84294 0.7570 +55127 84365 0.5060 +55127 84696 0.4540 +55127 84916 0.9990 +55127 84946 0.5640 +55127 85441 0.4050 +55127 88745 0.8790 +55127 90381 0.6430 +55127 91582 0.8110 +55127 92170 0.4200 +55127 92856 0.9960 +55127 115708 0.4710 +55127 116966 0.5000 +55127 117246 0.9120 +55127 118460 0.7160 +55127 124801 0.4260 +55127 126402 0.7130 +55127 128061 0.8060 +55127 129563 0.4060 +55127 140032 0.7710 +55127 140801 0.8680 +55127 142940 0.5700 +55127 146212 0.6650 +55127 146862 0.4150 +55127 153443 0.7680 +55127 161424 0.8350 +55127 165545 0.6020 +55127 220988 0.4220 +55127 221078 0.6120 +55127 221830 0.4270 +55127 345630 0.9540 +55127 641776 0.4870 +55127 643909 0.4870 +55127 728524 0.4870 +55127 728689 0.5340 +55127 729515 0.4850 +55127 100996746 0.4870 +55127 102157402 0.4150 +55127 105180390 0.4870 +55127 105180391 0.4870 +55128 78989 0.4040 +55128 79148 0.4590 +55128 84955 0.6190 +55128 114088 0.5680 +55128 135932 0.4690 +55128 284323 0.5290 +55128 345062 0.4750 +55129 63982 0.5550 +55129 93664 0.4090 +55129 137075 0.4340 +55129 169522 0.4220 +55129 400668 0.4070 +55129 646498 0.4760 +55130 55156 0.4420 +55130 55172 0.6600 +55130 55329 0.6410 +55130 55567 0.4830 +55130 56171 0.5960 +55130 56683 0.6750 +55130 64446 0.7980 +55130 64518 0.6520 +55130 64800 0.5740 +55130 79645 0.8380 +55130 79892 0.4200 +55130 79925 0.4860 +55130 80217 0.5350 +55130 80258 0.6160 +55130 81027 0.4190 +55130 83538 0.9600 +55130 83657 0.4250 +55130 83659 0.7190 +55130 83894 0.4810 +55130 84229 0.4300 +55130 84617 0.4420 +55130 85478 0.8030 +55130 89765 0.7020 +55130 89876 0.4380 +55130 90506 0.4570 +55130 92749 0.7470 +55130 93190 0.4580 +55130 93233 0.9880 +55130 114327 0.6570 +55130 114788 0.4180 +55130 115399 0.5060 +55130 115948 0.9800 +55130 116143 0.4500 +55130 122481 0.4870 +55130 123872 0.7260 +55130 127003 0.5660 +55130 129881 0.5310 +55130 133015 0.5470 +55130 135138 0.6930 +55130 138162 0.7100 +55130 138255 0.5990 +55130 139212 0.6800 +55130 140735 0.4460 +55130 145788 0.4040 +55130 146279 0.4700 +55130 146845 0.6810 +55130 149465 0.4790 +55130 150483 0.5420 +55130 151651 0.5810 +55130 154865 0.6920 +55130 158787 0.5550 +55130 160762 0.8820 +55130 161582 0.7440 +55130 164781 0.4980 +55130 197335 0.5670 +55130 200162 0.4590 +55130 219681 0.4550 +55130 220136 0.6440 +55130 221421 0.7570 +55130 257177 0.5590 +55130 283078 0.5470 +55130 286207 0.5230 +55130 339829 0.8190 +55130 345643 0.4820 +55130 345895 0.7900 +55130 347688 0.4490 +55130 352909 0.7540 +55130 374407 0.4690 +55130 375307 0.4800 +55130 388389 0.7490 +55130 388701 0.5070 +55130 493860 0.4140 +55130 727764 0.4830 +55130 100128569 0.6060 +55131 55140 0.4050 +55131 55153 0.9350 +55131 55160 0.5370 +55131 55226 0.9390 +55131 55272 0.6160 +55131 55294 0.6250 +55131 55299 0.9480 +55131 55308 0.5540 +55131 55319 0.6510 +55131 55341 0.8990 +55131 55621 0.4160 +55131 55646 0.6020 +55131 55651 0.6830 +55131 55695 0.4510 +55131 55703 0.5890 +55131 55720 0.8480 +55131 55759 0.9170 +55131 55760 0.6900 +55131 55781 0.6210 +55131 55794 0.4790 +55131 55798 0.4570 +55131 55813 0.9580 +55131 56342 0.8290 +55131 56829 0.4670 +55131 57050 0.9450 +55131 57062 0.9590 +55131 57109 0.6810 +55131 57418 0.4940 +55131 57647 0.6470 +55131 57696 0.6970 +55131 60487 0.4180 +55131 63899 0.4710 +55131 64101 0.5350 +55131 64216 0.6010 +55131 64318 0.8830 +55131 64425 0.6390 +55131 64434 0.8480 +55131 64794 0.7630 +55131 65083 0.8820 +55131 65095 0.6730 +55131 79009 0.4310 +55131 79039 0.8990 +55131 79050 0.6590 +55131 79159 0.7940 +55131 79639 0.4950 +55131 79730 0.4260 +55131 79828 0.4220 +55131 79954 0.8920 +55131 80135 0.8560 +55131 80324 0.4120 +55131 81627 0.4350 +55131 83448 0.6820 +55131 83479 0.4010 +55131 83732 0.6390 +55131 83743 0.8730 +55131 84128 0.8290 +55131 84135 0.6380 +55131 84154 0.9690 +55131 84172 0.6880 +55131 84273 0.4820 +55131 84294 0.8450 +55131 84310 0.4680 +55131 84319 0.6510 +55131 84365 0.9880 +55131 84549 0.9410 +55131 84916 0.9370 +55131 84946 0.8640 +55131 85461 0.4940 +55131 88745 0.7130 +55131 90121 0.7710 +55131 90441 0.5000 +55131 91646 0.4050 +55131 92170 0.4800 +55131 92345 0.4120 +55131 92856 0.9120 +55131 116966 0.7430 +55131 117246 0.9270 +55131 142940 0.7290 +55131 146212 0.6370 +55131 153443 0.4050 +55131 161424 0.6390 +55131 165545 0.6380 +55131 221078 0.8700 +55131 221830 0.8340 +55131 283349 0.4010 +55131 285855 0.7300 +55131 317781 0.4090 +55131 345630 0.5290 +55131 387129 0.5930 +55131 387338 0.5340 +55131 388228 0.4400 +55131 400506 0.5160 +55131 401190 0.4290 +55131 401399 0.4630 +55131 692312 0.8430 +55131 100505478 0.5840 +55132 55760 0.4210 +55132 56257 0.4270 +55132 80167 0.5970 +55132 83447 0.4260 +55132 84250 0.4120 +55132 84365 0.4460 +55132 113251 0.4060 +55132 124936 0.4160 +55132 142940 0.4210 +55132 165545 0.4160 +55132 344558 0.4060 +55132 374454 0.4250 +55132 389320 0.4470 +55132 389874 0.4420 +55132 645121 0.4320 +55132 646658 0.4540 +55133 55153 0.4740 +55133 55677 0.8630 +55133 55703 0.5860 +55133 55791 0.4310 +55133 60481 0.5780 +55133 64778 0.4280 +55133 64839 0.5310 +55133 64858 0.4330 +55133 79577 0.5940 +55133 79823 0.4740 +55133 84172 0.4380 +55133 84337 0.4490 +55133 84450 0.4570 +55133 85456 0.6450 +55133 90488 0.4050 +55133 92822 0.4990 +55133 123169 0.5760 +55133 136371 0.5850 +55133 149076 0.4950 +55133 152485 0.4510 +55133 160335 0.4410 +55133 203245 0.4520 +55133 220202 0.5050 +55135 55164 0.8130 +55135 55226 0.7630 +55135 55291 0.4010 +55135 55294 0.4500 +55135 55505 0.9990 +55135 55651 0.9990 +55135 55697 0.4370 +55135 57599 0.4850 +55135 63971 0.4100 +55135 79650 0.6010 +55135 79991 0.4080 +55135 80119 0.4870 +55135 80169 0.8730 +55135 83752 0.4980 +55135 84261 0.4360 +55135 92105 0.4420 +55135 114034 0.4770 +55135 115708 0.4210 +55135 131583 0.4200 +55135 134353 0.7960 +55135 140690 0.4140 +55135 145645 0.4070 +55135 165918 0.5190 +55135 283129 0.4060 +55137 55432 0.4070 +55137 64225 0.4090 +55137 90134 0.4270 +55137 131034 0.4740 +55137 285555 0.4140 +55137 100526767 0.4050 +55138 56052 0.7670 +55138 64419 0.5350 +55138 342931 0.8350 +55138 353149 0.4070 +55138 388272 0.4470 +55138 100287045 0.6290 +55139 55666 0.8420 +55139 55669 0.4490 +55139 55968 0.4570 +55139 57003 0.5710 +55139 57471 0.4190 +55139 57828 0.4730 +55139 79029 0.6430 +55139 80700 0.5600 +55139 84164 0.5790 +55139 84896 0.7400 +55139 90850 0.6020 +55139 116832 0.4290 +55139 138428 0.4860 +55139 140801 0.4370 +55139 166378 0.6440 +55140 55226 0.5500 +55140 55239 0.4870 +55140 55246 0.4230 +55140 55250 0.9990 +55140 55253 0.6740 +55140 55277 0.7030 +55140 55291 0.4300 +55140 55316 0.4780 +55140 55341 0.6500 +55140 55621 0.5270 +55140 55622 0.4190 +55140 55720 0.4740 +55140 55813 0.4540 +55140 55869 0.5010 +55140 56254 0.4500 +55140 57019 0.4540 +55140 57184 0.4880 +55140 57570 0.5680 +55140 57604 0.6410 +55140 57679 0.4870 +55140 60487 0.4840 +55140 60495 0.5810 +55140 60528 0.4460 +55140 64210 0.7500 +55140 64216 0.5490 +55140 64425 0.4550 +55140 65083 0.5080 +55140 79050 0.6060 +55140 79693 0.4280 +55140 79969 0.5360 +55140 80153 0.4370 +55140 80208 0.4160 +55140 80324 0.4590 +55140 80854 0.4410 +55140 81605 0.8070 +55140 81627 0.4810 +55140 81887 0.4160 +55140 81890 0.4730 +55140 83480 0.6290 +55140 83743 0.7000 +55140 84069 0.4380 +55140 84148 0.4990 +55140 84154 0.5620 +55140 84172 0.4060 +55140 84444 0.4400 +55140 84549 0.4410 +55140 84916 0.4100 +55140 89978 0.4410 +55140 90353 0.9260 +55140 91801 0.7510 +55140 92292 0.6250 +55140 92715 0.4170 +55140 92856 0.6230 +55140 93973 0.4450 +55140 112970 0.9260 +55140 114799 0.4070 +55140 117246 0.4900 +55140 130560 0.5050 +55140 153443 0.4440 +55140 155368 0.4570 +55140 161424 0.5390 +55140 221078 0.4410 +55140 285381 0.9270 +55140 348180 0.7110 +55140 440093 0.4800 +55140 440686 0.4800 +55140 653604 0.6790 +55142 55559 0.9990 +55142 55722 0.5660 +55142 55755 0.5820 +55142 55835 0.5080 +55142 57461 0.4890 +55142 58493 0.4260 +55142 63931 0.4110 +55142 64421 0.4690 +55142 79157 0.4360 +55142 79441 0.9990 +55142 79866 0.5210 +55142 79959 0.6370 +55142 80184 0.8150 +55142 80224 0.6230 +55142 80321 0.5470 +55142 84131 0.5290 +55142 84839 0.6290 +55142 90338 0.4050 +55142 93323 0.9990 +55142 95681 0.5170 +55142 115106 0.9990 +55142 117177 0.5090 +55142 121441 0.6470 +55142 136051 0.5250 +55142 203068 0.5680 +55142 347240 0.5040 +55142 401494 0.5330 +55142 440275 0.7720 +55142 728642 0.5190 +55143 55165 0.9230 +55143 55173 0.4080 +55143 55176 0.4620 +55143 55215 0.5200 +55143 55247 0.6580 +55143 55272 0.4800 +55143 55316 0.4270 +55143 55320 0.4340 +55143 55355 0.9230 +55143 55388 0.6810 +55143 55632 0.5040 +55143 55635 0.7720 +55143 55703 0.4470 +55143 55706 0.6150 +55143 55723 0.8290 +55143 55746 0.5290 +55143 55789 0.5760 +55143 55839 0.7060 +55143 55920 0.9330 +55143 56992 0.9020 +55143 57082 0.7570 +55143 57122 0.6330 +55143 57156 0.4340 +55143 57405 0.6810 +55143 57650 0.4360 +55143 63875 0.4760 +55143 63931 0.5710 +55143 63967 0.6720 +55143 64105 0.6190 +55143 64137 0.4650 +55143 64151 0.8300 +55143 64240 0.4550 +55143 64241 0.4540 +55143 64374 0.4360 +55143 64756 0.4110 +55143 64946 0.7570 +55143 64963 0.6020 +55143 64969 0.5030 +55143 64979 0.4130 +55143 65003 0.5460 +55143 65008 0.4530 +55143 79019 0.8230 +55143 79023 0.6570 +55143 79075 0.4380 +55143 79172 0.5680 +55143 79575 0.4140 +55143 79631 0.4510 +55143 79643 0.4680 +55143 79682 0.7590 +55143 79733 0.7690 +55143 79801 0.8180 +55143 79866 0.6190 +55143 79902 0.5760 +55143 79980 0.5850 +55143 80012 0.4590 +55143 80119 0.4090 +55143 80152 0.4740 +55143 81341 0.4210 +55143 81610 0.6690 +55143 81620 0.8340 +55143 81624 0.4790 +55143 81669 0.5290 +55143 81929 0.5700 +55143 81930 0.7420 +55143 83447 0.4560 +55143 83451 0.4140 +55143 83461 0.9750 +55143 83540 0.9260 +55143 83879 0.6700 +55143 83903 0.7850 +55143 84057 0.4970 +55143 84172 0.5000 +55143 84701 0.4630 +55143 84722 0.6290 +55143 84733 0.4270 +55143 84833 0.9120 +55143 84886 0.5020 +55143 84930 0.5550 +55143 85476 0.4730 +55143 89839 0.5280 +55143 90381 0.5410 +55143 90417 0.6830 +55143 91300 0.4210 +55143 91687 0.4650 +55143 92399 0.4100 +55143 92421 0.8510 +55143 93974 0.5030 +55143 113115 0.4270 +55143 113130 0.9610 +55143 116028 0.4360 +55143 126402 0.4400 +55143 126961 0.5260 +55143 128239 0.6330 +55143 129401 0.4520 +55143 133396 0.4920 +55143 140801 0.4400 +55143 144455 0.5690 +55143 146909 0.8380 +55143 147841 0.7820 +55143 150468 0.6690 +55143 151246 0.9600 +55143 151648 0.9960 +55143 157313 0.8890 +55143 157570 0.4940 +55143 166979 0.7260 +55143 203068 0.4490 +55143 220134 0.8280 +55143 221150 0.6500 +55143 221264 0.4140 +55143 259266 0.9500 +55143 267020 0.8630 +55143 283431 0.6480 +55143 347487 0.4750 +55143 348235 0.4540 +55143 348995 0.5770 +55143 378708 0.4190 +55143 387103 0.6520 +55143 401541 0.5430 +55143 440093 0.8270 +55143 440686 0.8360 +55143 554282 0.4170 +55143 653604 0.8370 +55143 653820 0.5260 +55143 728833 0.4430 +55143 729533 0.4720 +55143 100101267 0.4590 +55143 100526842 0.4350 +55144 55379 0.4260 +55144 56262 0.9550 +55144 57348 0.5230 +55144 57633 0.4010 +55144 80131 0.5310 +55144 80727 0.5010 +55144 84230 0.5370 +55144 94015 0.5750 +55144 220296 0.4470 +55144 255022 0.4050 +55144 375616 0.5120 +55145 55342 0.5440 +55145 56906 0.5300 +55145 57215 0.9060 +55145 63982 0.7770 +55145 79725 0.5320 +55145 79734 0.4340 +55145 80025 0.4470 +55145 80764 0.8750 +55145 81790 0.6550 +55145 83608 0.4480 +55145 112476 0.5770 +55145 138046 0.6110 +55146 64429 0.5090 +55146 79034 0.6860 +55146 81926 0.4400 +55146 84437 0.4510 +55146 158835 0.8020 +55146 254359 0.4220 +55146 283576 0.6900 +55147 55692 0.4730 +55147 58517 0.8150 +55147 90379 0.6840 +55147 163033 0.6950 +55147 390748 0.4400 +55148 57578 0.4550 +55148 79075 0.4200 +55148 79573 0.4170 +55148 79968 0.4500 +55148 80204 0.5320 +55148 81611 0.4400 +55148 197131 0.6620 +55148 283431 0.4540 +55148 474343 0.4280 +55149 55687 0.4640 +55149 56903 0.9340 +55149 57608 0.4720 +55149 57704 0.4060 +55149 60493 0.5010 +55149 60528 0.6400 +55149 64216 0.5640 +55149 64282 0.8070 +55149 64802 0.4670 +55149 64895 0.9410 +55149 65080 0.4140 +55149 79675 0.4630 +55149 79736 0.4560 +55149 79810 0.4020 +55149 80114 0.4250 +55149 80324 0.4030 +55149 81892 0.7620 +55149 87178 0.7360 +55149 91574 0.5020 +55149 129563 0.4520 +55149 201626 0.6240 +55149 285498 0.4040 +55149 338917 0.4800 +55150 388969 0.5710 +55150 646817 0.5060 +55150 651746 0.4470 +55150 100128071 0.6640 +55150 100271927 0.5700 +55151 55603 0.5730 +55151 58499 0.4730 +55151 60681 0.8320 +55151 64175 0.7960 +55151 79879 0.4870 +55151 83856 0.4280 +55151 90993 0.7330 +55151 121340 0.5970 +55151 202018 0.4850 +55151 387733 0.7750 +55152 55703 0.4530 +55152 55798 0.5990 +55152 56474 0.4320 +55152 57038 0.5500 +55152 57470 0.4030 +55152 64925 0.4790 +55152 79828 0.5020 +55152 84076 0.4280 +55152 84172 0.4530 +55152 91875 0.4030 +55152 118461 0.4100 +55152 122622 0.5740 +55152 131965 0.6030 +55152 339175 0.6050 +55152 345630 0.4050 +55153 55226 0.9160 +55153 55239 0.4560 +55153 55253 0.4440 +55153 55272 0.4750 +55153 55299 0.8690 +55153 55319 0.7230 +55153 55341 0.9660 +55153 55591 0.5630 +55153 55621 0.4030 +55153 55622 0.5850 +55153 55646 0.7080 +55153 55651 0.4910 +55153 55677 0.4560 +55153 55703 0.7280 +55153 55720 0.9300 +55153 55759 0.8710 +55153 55760 0.5970 +55153 55781 0.7370 +55153 55791 0.5100 +55153 55794 0.4820 +55153 55813 0.7250 +55153 56342 0.6020 +55153 56902 0.4340 +55153 57050 0.8910 +55153 57062 0.8540 +55153 57418 0.9760 +55153 57563 0.4970 +55153 57647 0.4020 +55153 57696 0.7070 +55153 57703 0.6380 +55153 60487 0.6130 +55153 63899 0.4380 +55153 64118 0.4020 +55153 64216 0.5900 +55153 64318 0.9240 +55153 64425 0.7060 +55153 64434 0.5660 +55153 64794 0.7490 +55153 65008 0.4240 +55153 65083 0.8230 +55153 65095 0.6300 +55153 79009 0.5750 +55153 79039 0.8480 +55153 79050 0.6870 +55153 79159 0.6070 +55153 79577 0.4040 +55153 79590 0.4440 +55153 79954 0.9520 +55153 79979 0.5250 +55153 80135 0.7250 +55153 81627 0.4670 +55153 83448 0.4290 +55153 83480 0.4120 +55153 83732 0.5240 +55153 83743 0.8440 +55153 84128 0.9210 +55153 84135 0.6570 +55153 84154 0.9670 +55153 84172 0.8720 +55153 84273 0.6530 +55153 84294 0.6740 +55153 84310 0.4590 +55153 84365 0.9710 +55153 84450 0.6860 +55153 84549 0.8930 +55153 84916 0.8860 +55153 84946 0.9210 +55153 89766 0.4140 +55153 90121 0.7040 +55153 92170 0.6490 +55153 92856 0.8560 +55153 96764 0.5270 +55153 112840 0.6070 +55153 115708 0.4180 +55153 116832 0.4460 +55153 116966 0.8010 +55153 117246 0.8950 +55153 123169 0.6230 +55153 123879 0.5070 +55153 124808 0.4630 +55153 146212 0.4870 +55153 149076 0.5510 +55153 153443 0.4790 +55153 161424 0.6450 +55153 165545 0.5940 +55153 220965 0.4710 +55153 221078 0.8450 +55153 221830 0.6980 +55153 266812 0.5540 +55153 285855 0.6680 +55153 339965 0.4280 +55153 387129 0.6140 +55153 387338 0.4450 +55153 692312 0.5960 +55153 100505478 0.5650 +55154 55239 0.4070 +55154 56947 0.4280 +55154 57130 0.5130 +55154 60386 0.4610 +55154 79751 0.4590 +55154 79888 0.4520 +55154 80273 0.5170 +55154 92609 0.4790 +55154 125170 0.4290 +55154 255104 0.4120 +55156 55735 0.8040 +55156 56181 0.8010 +55156 64432 0.4370 +55156 80124 0.4810 +55156 91137 0.4540 +55156 112755 0.5700 +55156 125988 0.6080 +55156 139322 0.5880 +55156 157769 0.4340 +55156 167555 0.5140 +55156 221481 0.5860 +55156 286053 0.4070 +55156 440574 0.4780 +55157 55272 0.5590 +55157 55278 0.9350 +55157 55644 0.4020 +55157 55687 0.6670 +55157 55699 0.8950 +55157 55703 0.5880 +55157 55706 0.7660 +55157 55741 0.5010 +55157 55892 0.4330 +55157 56474 0.7340 +55157 56648 0.4330 +55157 56945 0.5300 +55157 57038 0.8880 +55157 57136 0.5130 +55157 57176 0.9160 +55157 57470 0.5330 +55157 57505 0.9550 +55157 57570 0.4280 +55157 60558 0.5360 +55157 64146 0.5300 +55157 64172 0.4450 +55157 64960 0.4060 +55157 64963 0.4600 +55157 64965 0.5310 +55157 64968 0.5520 +55157 64969 0.6890 +55157 64983 0.6140 +55157 65005 0.5680 +55157 65008 0.5070 +55157 65080 0.5460 +55157 65220 0.4820 +55157 65992 0.4050 +55157 65993 0.4040 +55157 79587 0.7430 +55157 79631 0.4210 +55157 79731 0.7490 +55157 79877 0.4700 +55157 80222 0.7770 +55157 80324 0.4890 +55157 84172 0.4950 +55157 84340 0.5310 +55157 84464 0.4600 +55157 84614 0.6190 +55157 84705 0.5120 +55157 84881 0.5320 +55157 85476 0.5570 +55157 87178 0.5400 +55157 89894 0.5430 +55157 90353 0.5800 +55157 91574 0.5260 +55157 91647 0.4780 +55157 91875 0.7050 +55157 91893 0.5630 +55157 92399 0.4900 +55157 92935 0.7900 +55157 115209 0.5520 +55157 115416 0.4080 +55157 116832 0.6150 +55157 122961 0.4500 +55157 123263 0.6530 +55157 123283 0.6080 +55157 124454 0.9290 +55157 142940 0.4920 +55157 143244 0.4330 +55157 158584 0.9000 +55157 162417 0.4450 +55157 283985 0.7050 +55157 285367 0.5140 +55157 285521 0.4460 +55157 374395 0.4330 +55157 440275 0.8260 +55157 730159 0.4340 +55159 55215 0.7750 +55159 55729 0.5020 +55159 56941 0.5220 +55159 57510 0.4550 +55159 57697 0.6660 +55159 79152 0.4500 +55159 79726 0.4730 +55159 79728 0.5670 +55159 80233 0.4510 +55159 83990 0.6270 +55159 84083 0.4520 +55159 84126 0.4380 +55159 84464 0.6190 +55159 84515 0.4570 +55159 113510 0.4250 +55159 165918 0.4240 +55159 197259 0.7260 +55159 201973 0.9940 +55159 222229 0.4970 +55160 55196 0.5180 +55160 57606 0.4730 +55160 79005 0.4260 +55160 80004 0.5090 +55160 125061 0.4480 +55160 128272 0.4770 +55160 149986 0.6070 +55160 158787 0.4350 +55160 254956 0.4550 +55161 55706 0.5360 +55161 55746 0.6510 +55161 55831 0.4630 +55161 57142 0.4740 +55161 79102 0.7590 +55161 79188 0.6470 +55161 79902 0.5290 +55161 93380 0.4730 +55161 129401 0.4690 +55161 152573 0.4040 +55161 255119 0.5040 +55161 285429 0.4320 +55161 389206 0.4820 +55161 400668 0.4290 +55163 55238 0.4110 +55163 55312 0.4470 +55163 55739 0.6210 +55163 56521 0.4170 +55163 57026 0.9640 +55163 57526 0.5140 +55163 57582 0.4350 +55163 64081 0.4030 +55163 64838 0.4280 +55163 79170 0.5460 +55163 79751 0.5970 +55163 112476 0.4160 +55163 114881 0.4350 +55163 128240 0.9300 +55163 151188 0.4310 +55163 154881 0.4220 +55163 253143 0.4790 +55163 285148 0.4170 +55163 374887 0.9040 +55163 387921 0.5070 +55163 493911 0.9270 +55163 729440 0.4760 +55164 55171 0.7650 +55164 55505 0.9940 +55164 55651 0.9830 +55164 55695 0.4040 +55164 55813 0.4370 +55164 79613 0.4360 +55164 79657 0.5620 +55164 79954 0.5360 +55164 79959 0.4320 +55164 83448 0.5100 +55164 83752 0.4100 +55164 84071 0.4470 +55164 84294 0.4230 +55164 92345 0.8780 +55164 96764 0.4190 +55164 126393 0.7660 +55164 142940 0.7920 +55164 151987 0.4070 +55164 387694 0.4220 +55164 400506 0.4260 +55164 727936 0.5300 +55165 55200 0.5450 +55165 55215 0.5980 +55165 55247 0.5480 +55165 55355 0.9210 +55165 55388 0.7950 +55165 55635 0.8770 +55165 55671 0.4280 +55165 55696 0.4480 +55165 55723 0.6280 +55165 55771 0.4060 +55165 55789 0.8340 +55165 55839 0.6700 +55165 56155 0.9800 +55165 56992 0.8930 +55165 57082 0.6110 +55165 57132 0.4620 +55165 57405 0.8110 +55165 60558 0.4340 +55165 63967 0.5100 +55165 64105 0.5470 +55165 64151 0.8990 +55165 64770 0.6100 +55165 64946 0.4520 +55165 79019 0.7720 +55165 79075 0.4460 +55165 79643 0.6090 +55165 79682 0.6080 +55165 79720 0.7200 +55165 79733 0.6840 +55165 79801 0.7850 +55165 79866 0.5090 +55165 81610 0.6230 +55165 81620 0.4870 +55165 81624 0.5040 +55165 81930 0.7930 +55165 83461 0.8760 +55165 83540 0.9470 +55165 84057 0.7940 +55165 84823 0.4030 +55165 84930 0.4290 +55165 89839 0.5170 +55165 90417 0.7080 +55165 90678 0.7110 +55165 92421 0.7990 +55165 92714 0.5700 +55165 93343 0.7510 +55165 113115 0.4540 +55165 113130 0.8730 +55165 128239 0.4220 +55165 129531 0.5090 +55165 144455 0.6400 +55165 145508 0.4480 +55165 146909 0.7680 +55165 147841 0.4300 +55165 150468 0.8860 +55165 151246 0.6110 +55165 151648 0.7460 +55165 157313 0.7100 +55165 157570 0.6170 +55165 220134 0.7200 +55165 221150 0.6280 +55165 259266 0.9500 +55165 283130 0.4040 +55165 283431 0.4670 +55165 345930 0.4400 +55165 375056 0.4370 +55165 375316 0.5520 +55165 387103 0.5520 +55165 100526767 0.4640 +55166 55320 0.7110 +55166 55355 0.6660 +55166 55839 0.9990 +55166 57082 0.7820 +55166 57405 0.4290 +55166 64105 0.9990 +55166 64946 0.9990 +55166 79003 0.4430 +55166 79019 0.9990 +55166 79023 0.4110 +55166 79172 0.9990 +55166 79682 0.9990 +55166 79980 0.6260 +55166 80152 0.9980 +55166 81930 0.5280 +55166 83540 0.5250 +55166 90417 0.4260 +55166 91687 0.9990 +55166 121504 0.8000 +55166 147841 0.5710 +55166 201161 0.4380 +55166 201254 0.9930 +55166 220134 0.4460 +55166 378708 0.9980 +55166 387103 0.9940 +55166 401541 0.9990 +55166 554313 0.8000 +55166 101928601 0.4460 +55167 55257 0.7200 +55167 55683 0.8180 +55167 55689 0.5430 +55167 55929 0.9000 +55167 56254 0.5840 +55167 57634 0.9050 +55167 64769 0.9020 +55167 80314 0.9090 +55167 84148 0.9950 +55167 151050 0.5430 +55167 284058 0.8360 +55167 339287 0.9990 +55167 345651 0.5510 +55167 374354 0.4040 +55168 55173 0.9970 +55168 55178 0.8350 +55168 55272 0.6940 +55168 55316 0.6550 +55168 55328 0.4320 +55168 55735 0.4190 +55168 55794 0.8680 +55168 56945 0.9900 +55168 56984 0.5560 +55168 57129 0.9950 +55168 57693 0.5360 +55168 60488 0.9910 +55168 63875 0.9840 +55168 63931 0.9980 +55168 64222 0.4660 +55168 64374 0.5800 +55168 64432 0.9790 +55168 64745 0.6510 +55168 64928 0.9120 +55168 64949 0.9540 +55168 64951 0.9710 +55168 64960 0.9980 +55168 64963 0.9960 +55168 64965 0.9930 +55168 64968 0.9960 +55168 64969 0.9970 +55168 64975 0.9940 +55168 64976 0.9880 +55168 64978 0.9800 +55168 64979 0.9890 +55168 64981 0.9670 +55168 64983 0.9910 +55168 65003 0.9800 +55168 65005 0.9840 +55168 65008 0.9660 +55168 65080 0.9770 +55168 65121 0.4510 +55168 65122 0.4510 +55168 65993 0.9710 +55168 78988 0.9540 +55168 79590 0.9750 +55168 80298 0.4300 +55168 84311 0.9530 +55168 84340 0.8580 +55168 84545 0.9740 +55168 85413 0.4570 +55168 85476 0.8350 +55168 85865 0.8080 +55168 90313 0.7070 +55168 90480 0.9670 +55168 90624 0.4830 +55168 91574 0.8460 +55168 91869 0.4560 +55168 92170 0.9180 +55168 92259 0.7280 +55168 92399 0.9180 +55168 114781 0.4830 +55168 115416 0.8840 +55168 116540 0.9730 +55168 116541 0.9590 +55168 118487 0.9660 +55168 122704 0.9520 +55168 123283 0.4560 +55168 124995 0.9880 +55168 126402 0.6680 +55168 128308 0.9440 +55168 130916 0.8680 +55168 140801 0.5650 +55168 145853 0.4580 +55168 148022 0.4960 +55168 149478 0.4350 +55168 157310 0.5340 +55168 219402 0.5700 +55168 219927 0.9940 +55168 261734 0.4060 +55168 285315 0.5010 +55168 343068 0.4510 +55168 343070 0.4510 +55168 345051 0.5200 +55168 347487 0.5950 +55168 353376 0.4850 +55168 374291 0.4080 +55168 387338 0.8130 +55168 390999 0.4510 +55168 391002 0.4510 +55168 400735 0.4510 +55168 400736 0.4510 +55168 440560 0.4510 +55168 440561 0.4510 +55168 441873 0.4510 +55168 641776 0.4940 +55168 643338 0.4870 +55168 643909 0.4940 +55168 645359 0.4510 +55168 653619 0.4510 +55168 728524 0.4940 +55168 729528 0.4510 +55168 100287482 0.5950 +55168 100302736 0.4850 +55168 100526842 0.6100 +55168 100996746 0.4940 +55168 101929983 0.4510 +55168 105180390 0.4940 +55168 105180391 0.4940 +55168 127898561 0.8110 +55170 55226 0.4200 +55170 55651 0.4730 +55170 55720 0.4090 +55170 55766 0.5350 +55170 55904 0.6300 +55170 56341 0.4440 +55170 56950 0.4700 +55170 56979 0.4020 +55170 58508 0.6680 +55170 60487 0.4620 +55170 64754 0.6680 +55170 79084 0.5730 +55170 79723 0.4800 +55170 79918 0.4740 +55170 80854 0.5920 +55170 84154 0.5450 +55170 84444 0.6760 +55170 84661 0.5180 +55170 84787 0.4210 +55170 84916 0.4130 +55170 85235 0.4420 +55170 85236 0.5320 +55170 92815 0.4420 +55170 94239 0.5320 +55170 126961 0.5800 +55170 128312 0.5370 +55170 140690 0.4600 +55170 144233 0.4440 +55170 161882 0.5140 +55170 192669 0.4080 +55170 192670 0.4080 +55170 221078 0.4240 +55170 221613 0.4420 +55170 221656 0.5490 +55170 255626 0.5470 +55170 317772 0.4500 +55170 345630 0.4890 +55170 387893 0.4520 +55170 440093 0.7280 +55170 440686 0.7100 +55170 474382 0.5350 +55170 653604 0.8950 +55171 55280 0.4270 +55171 56253 0.4570 +55171 57719 0.4990 +55171 64802 0.4610 +55171 79707 0.4420 +55171 79906 0.5910 +55171 79959 0.5700 +55171 81577 0.5860 +55171 84626 0.6190 +55171 84792 0.4400 +55171 84915 0.4770 +55171 84984 0.4240 +55171 142679 0.4370 +55171 150353 0.4320 +55171 155051 0.4040 +55171 285282 0.4800 +55171 338692 0.4580 +55171 349136 0.4090 +55171 375686 0.4490 +55172 56681 0.4030 +55172 56683 0.7200 +55172 56912 0.4230 +55172 56984 0.5430 +55172 57003 0.5880 +55172 57038 0.4200 +55172 57649 0.4890 +55172 64446 0.9700 +55172 65009 0.4190 +55172 79582 0.4150 +55172 79657 0.7820 +55172 81572 0.5610 +55172 83538 0.5070 +55172 84896 0.5230 +55172 85016 0.5820 +55172 85478 0.6060 +55172 89765 0.5800 +55172 90025 0.6330 +55172 92749 0.6470 +55172 93233 0.6730 +55172 114088 0.4390 +55172 115399 0.4410 +55172 115948 0.6610 +55172 116143 0.6110 +55172 120379 0.8030 +55172 123872 0.9390 +55172 139212 0.9100 +55172 150160 0.5400 +55172 160762 0.5110 +55172 161582 0.8830 +55172 164781 0.5070 +55172 221421 0.9260 +55172 339829 0.7150 +55172 345643 0.4740 +55172 345895 0.9330 +55172 352909 0.7990 +55172 388389 0.7280 +55173 55176 0.8620 +55173 55239 0.5440 +55173 55272 0.9460 +55173 55316 0.8870 +55173 55324 0.5640 +55173 55591 0.6130 +55173 55601 0.4190 +55173 55651 0.7900 +55173 55703 0.8620 +55173 55720 0.5860 +55173 55781 0.8290 +55173 55854 0.4740 +55173 56474 0.4630 +55173 56479 0.5090 +55173 56648 0.8820 +55173 56893 0.4480 +55173 56902 0.4370 +55173 56945 0.9970 +55173 56965 0.5840 +55173 57129 0.9950 +55173 57136 0.6140 +55173 57470 0.4310 +55173 60370 0.4060 +55173 60488 0.9990 +55173 60558 0.8020 +55173 60678 0.6560 +55173 63875 0.9980 +55173 63931 0.9990 +55173 64146 0.8290 +55173 64216 0.6470 +55173 64374 0.8340 +55173 64432 0.9980 +55173 64745 0.9850 +55173 64928 0.9000 +55173 64949 0.9920 +55173 64951 0.9970 +55173 64960 0.9990 +55173 64963 0.9990 +55173 64965 0.9990 +55173 64968 0.9990 +55173 64969 0.9990 +55173 64975 0.9900 +55173 64976 0.9960 +55173 64978 0.9740 +55173 64979 0.9990 +55173 64981 0.9930 +55173 64983 0.9980 +55173 65003 0.9870 +55173 65005 0.9970 +55173 65008 0.9840 +55173 65080 0.9960 +55173 65121 0.6650 +55173 65122 0.6650 +55173 65993 0.9960 +55173 78988 0.8720 +55173 79571 0.4270 +55173 79590 0.9910 +55173 79631 0.8450 +55173 79668 0.5840 +55173 79728 0.4230 +55173 79863 0.8130 +55173 80146 0.5080 +55173 80270 0.5640 +55173 81570 0.4130 +55173 84154 0.4620 +55173 84172 0.8630 +55173 84273 0.8460 +55173 84311 0.9120 +55173 84340 0.6500 +55173 84365 0.5000 +55173 84545 0.9970 +55173 84883 0.4600 +55173 84946 0.8140 +55173 84993 0.4540 +55173 85377 0.5030 +55173 85476 0.9730 +55173 87178 0.6850 +55173 88745 0.4870 +55173 90313 0.6150 +55173 90480 0.8720 +55173 90624 0.6810 +55173 91574 0.6270 +55173 91875 0.4670 +55173 91893 0.4050 +55173 92196 0.4290 +55173 92259 0.8740 +55173 92399 0.9890 +55173 93107 0.5090 +55173 93517 0.5040 +55173 93550 0.4910 +55173 114781 0.7170 +55173 114803 0.4080 +55173 114987 0.9130 +55173 116540 0.8290 +55173 116541 0.9260 +55173 116832 0.7400 +55173 118487 0.9850 +55173 122481 0.4810 +55173 122704 0.8800 +55173 123263 0.5050 +55173 124454 0.7420 +55173 124995 0.9670 +55173 126402 0.9370 +55173 128308 0.9080 +55173 131118 0.4530 +55173 137994 0.4160 +55173 139596 0.4050 +55173 140032 0.8480 +55173 140801 0.8280 +55173 143244 0.8800 +55173 143630 0.4390 +55173 148022 0.5390 +55173 149478 0.4800 +55173 150209 0.4550 +55173 153443 0.6370 +55173 157310 0.8110 +55173 158067 0.4810 +55173 158234 0.7770 +55173 164153 0.4390 +55173 169522 0.5090 +55173 170850 0.5090 +55173 196074 0.8910 +55173 200916 0.8640 +55173 219402 0.9150 +55173 219927 0.9980 +55173 221264 0.4810 +55173 254268 0.5090 +55173 255308 0.7420 +55173 283237 0.4020 +55173 283518 0.5090 +55173 285282 0.4780 +55173 285855 0.9040 +55173 286075 0.5040 +55173 343068 0.6650 +55173 343070 0.6650 +55173 345051 0.4870 +55173 347487 0.8220 +55173 353376 0.5330 +55173 374659 0.8390 +55173 387129 0.8410 +55173 387712 0.4520 +55173 390999 0.6650 +55173 391002 0.6650 +55173 400735 0.6650 +55173 400736 0.6650 +55173 440560 0.6650 +55173 440561 0.6650 +55173 441873 0.6650 +55173 641776 0.7360 +55173 642987 0.4040 +55173 643909 0.7360 +55173 645051 0.6550 +55173 645073 0.6550 +55173 645359 0.6650 +55173 653619 0.6650 +55173 654364 0.5690 +55173 728524 0.7360 +55173 728689 0.6920 +55173 729396 0.6550 +55173 729422 0.6550 +55173 729428 0.6550 +55173 729431 0.6550 +55173 729442 0.6550 +55173 729447 0.6550 +55173 729528 0.6650 +55173 100008586 0.6550 +55173 100132399 0.6550 +55173 100287482 0.8220 +55173 100302736 0.5330 +55173 100505478 0.8400 +55173 100526842 0.8880 +55173 100529097 0.8630 +55173 100529239 0.9200 +55173 100996746 0.7360 +55173 101929983 0.6650 +55173 102724473 0.6550 +55173 105180390 0.7360 +55173 105180391 0.7360 +55173 114483834 0.6070 +55174 55511 0.6130 +55174 55527 0.4060 +55174 55656 0.9760 +55174 55726 0.9850 +55174 55756 0.9920 +55174 55768 0.4480 +55174 57117 0.9720 +55174 57508 0.9620 +55174 64859 0.5320 +55174 64927 0.4430 +55174 65123 0.9990 +55174 79034 0.7970 +55174 79035 0.5670 +55174 79770 0.4730 +55174 80210 0.4230 +55174 80789 0.9990 +55174 81556 0.9920 +55174 92105 0.9860 +55174 203522 0.7170 +55174 338657 0.4270 +55174 440163 0.4400 +55174 441519 0.6050 +55174 441521 0.6050 +55174 541465 0.6050 +55174 541466 0.6170 +55174 728911 0.6050 +55174 101060211 0.6050 +55174 102723631 0.6050 +55174 102723680 0.6050 +55174 102723737 0.6050 +55175 55208 0.5110 +55175 55832 0.5450 +55175 55958 0.5140 +55175 55975 0.4060 +55175 56896 0.5760 +55175 57542 0.4860 +55175 64410 0.4930 +55175 80176 0.4830 +55175 84078 0.4610 +55175 84259 0.5070 +55175 84541 0.4590 +55175 84708 0.4770 +55175 84727 0.4060 +55175 84861 0.4350 +55175 89890 0.4240 +55175 90135 0.4320 +55175 90293 0.4770 +55175 92369 0.4060 +55175 93611 0.5040 +55175 115290 0.4060 +55175 126433 0.4070 +55175 149951 0.4990 +55175 150684 0.4990 +55175 154881 0.5270 +55175 170622 0.4990 +55175 200845 0.4190 +55175 222484 0.5370 +55175 390594 0.6040 +55175 390980 0.5600 +55175 402665 0.5860 +55175 541578 0.4010 +55176 55272 0.8850 +55176 55316 0.8560 +55176 55437 0.5030 +55176 55526 0.5400 +55176 55591 0.6470 +55176 55651 0.4340 +55176 55703 0.7280 +55176 55821 0.4250 +55176 56926 0.5040 +55176 57003 0.5670 +55176 57136 0.6140 +55176 58477 0.6820 +55176 60559 0.4690 +55176 63875 0.9360 +55176 63931 0.8550 +55176 64374 0.8350 +55176 64714 0.4680 +55176 64960 0.6800 +55176 64963 0.8530 +55176 64965 0.8550 +55176 64968 0.9260 +55176 64969 0.8850 +55176 64979 0.9250 +55176 64983 0.7640 +55176 65003 0.7980 +55176 65005 0.9050 +55176 65008 0.8700 +55176 65121 0.6040 +55176 65122 0.6040 +55176 79139 0.4090 +55176 79590 0.8870 +55176 79631 0.6920 +55176 80305 0.4290 +55176 81502 0.4240 +55176 83449 0.4830 +55176 84061 0.5210 +55176 84172 0.7260 +55176 84447 0.4500 +55176 85476 0.6890 +55176 87178 0.6130 +55176 90701 0.5270 +55176 92335 0.5230 +55176 92399 0.5180 +55176 116832 0.6190 +55176 122481 0.5620 +55176 124454 0.5460 +55176 126402 0.8530 +55176 128387 0.4860 +55176 140801 0.8150 +55176 158067 0.5620 +55176 201595 0.8530 +55176 219927 0.7870 +55176 221264 0.5650 +55176 285521 0.8450 +55176 285855 0.8320 +55176 343068 0.6040 +55176 343070 0.6040 +55176 347487 0.7830 +55176 387129 0.8320 +55176 390999 0.6040 +55176 391002 0.6040 +55176 400735 0.6040 +55176 400736 0.6040 +55176 440560 0.6040 +55176 440561 0.6040 +55176 441873 0.6040 +55176 641776 0.6840 +55176 643909 0.6840 +55176 645359 0.6040 +55176 653619 0.6040 +55176 728524 0.6840 +55176 729528 0.6040 +55176 100287482 0.7830 +55176 100505478 0.8320 +55176 100526842 0.8800 +55176 100996746 0.6840 +55176 101929983 0.6040 +55176 105180390 0.6840 +55176 105180391 0.6840 +55177 55210 0.6150 +55177 55288 0.4800 +55177 55333 0.4680 +55177 55669 0.7270 +55177 55739 0.6560 +55177 56947 0.4960 +55177 57678 0.4020 +55177 64423 0.4990 +55177 65018 0.4450 +55177 79594 0.5950 +55177 79654 0.5470 +55177 80024 0.4130 +55177 83540 0.5200 +55177 83930 0.4860 +55177 84895 0.5340 +55177 90550 0.5830 +55177 91452 0.4930 +55177 114879 0.9910 +55177 114882 0.9890 +55177 118813 0.4060 +55177 118987 0.6680 +55177 132949 0.4450 +55177 139341 0.4480 +55177 151393 0.8770 +55177 153364 0.5710 +55177 158747 0.9300 +55177 221154 0.4160 +55177 101928527 0.4620 +55178 55341 0.5160 +55178 55687 0.4470 +55178 55794 0.9900 +55178 56339 0.4980 +55178 56652 0.4280 +55178 56931 0.4210 +55178 57129 0.9910 +55178 60493 0.4550 +55178 60528 0.5590 +55178 63875 0.9780 +55178 63899 0.4050 +55178 64216 0.5660 +55178 64425 0.4250 +55178 64745 0.4060 +55178 64928 0.8250 +55178 64965 0.4960 +55178 64975 0.8120 +55178 64978 0.8250 +55178 64981 0.8060 +55178 64983 0.8320 +55178 65003 0.9790 +55178 65005 0.8690 +55178 65080 0.8650 +55178 78988 0.8040 +55178 79587 0.5050 +55178 79590 0.9740 +55178 79728 0.7620 +55178 79863 0.5530 +55178 79922 0.8660 +55178 79979 0.6980 +55178 80324 0.4820 +55178 81627 0.5290 +55178 81892 0.5140 +55178 83448 0.8070 +55178 83460 0.4220 +55178 84273 0.7500 +55178 84311 0.8160 +55178 84545 0.9720 +55178 84705 0.9230 +55178 84769 0.5410 +55178 84881 0.9100 +55178 84916 0.4590 +55178 85441 0.4860 +55178 85865 0.9370 +55178 90353 0.4020 +55178 90480 0.8270 +55178 92170 0.9560 +55178 92856 0.4420 +55178 113000 0.6390 +55178 115416 0.9970 +55178 115708 0.4350 +55178 115752 0.4820 +55178 116540 0.8730 +55178 116541 0.8180 +55178 117246 0.6100 +55178 122704 0.8080 +55178 123263 0.4740 +55178 124995 0.8800 +55178 126789 0.4740 +55178 129563 0.4880 +55178 130916 0.6640 +55178 196074 0.7220 +55178 219927 0.9750 +55178 246243 0.4300 +55178 285367 0.7650 +55178 374659 0.4510 +55178 387338 0.7540 +55178 388364 0.4550 +55178 440957 0.4140 +55178 127898561 0.8670 +55180 79747 0.4230 +55180 84060 0.4490 +55180 85865 0.4410 +55180 152815 0.4550 +55181 55629 0.8420 +55181 55802 0.7790 +55181 56006 0.9990 +55181 64768 0.5190 +55181 65109 0.8410 +55181 65110 0.9450 +55181 80789 0.4750 +55181 84276 0.5910 +55181 91978 0.4930 +55181 113451 0.5930 +55181 140460 0.4570 +55182 55906 0.8690 +55182 57630 0.4440 +55182 79033 0.5450 +55182 79639 0.5980 +55182 79754 0.4710 +55182 149473 0.4970 +55182 440097 0.4020 +55183 55206 0.6600 +55183 55660 0.4510 +55183 55728 0.5110 +55183 55814 0.6190 +55183 56916 0.4030 +55183 64421 0.5230 +55183 79184 0.5580 +55183 79228 0.4800 +55183 80010 0.4040 +55183 80169 0.5050 +55183 84142 0.5270 +55183 85236 0.5270 +55183 120892 0.5450 +55183 128312 0.5300 +55183 149840 0.6070 +55183 165918 0.7010 +55183 255626 0.5270 +55183 100134934 0.5080 +55183 112441434 0.5190 +55184 55631 0.4190 +55184 57545 0.4390 +55184 58495 0.4830 +55184 84900 0.4710 +55184 145508 0.4450 +55184 151835 0.4200 +55184 164832 0.4040 +55184 167691 0.4090 +55184 441381 0.4160 +55184 643965 0.4700 +55186 56896 0.4230 +55186 115286 0.4360 +55186 130752 0.4470 +55186 158248 0.5040 +55186 401612 0.5670 +55187 55288 0.6280 +55187 55870 0.4010 +55187 84895 0.4830 +55187 84966 0.4260 +55187 90231 0.4880 +55187 157680 0.5730 +55187 221037 0.4120 +55187 440503 0.5210 +55188 57030 0.5070 +55188 57084 0.6960 +55188 65055 0.4870 +55188 80243 0.4470 +55188 83857 0.7840 +55188 126006 0.6020 +55188 132112 0.6640 +55188 140679 0.6960 +55188 146713 0.5830 +55188 260434 0.5050 +55188 344892 0.5960 +55188 346562 0.5260 +55190 55270 0.4600 +55190 55802 0.4780 +55190 56000 0.5170 +55190 56474 0.4180 +55190 56658 0.4330 +55190 60526 0.4320 +55190 83594 0.4940 +55190 84304 0.4120 +55190 127933 0.4890 +55190 158358 0.4380 +55190 170685 0.7060 +55190 196513 0.4780 +55190 256281 0.4320 +55191 55270 0.8990 +55191 56897 0.4690 +55191 64802 0.9900 +55191 65220 0.6680 +55191 79763 0.4470 +55191 79877 0.4030 +55191 80007 0.6550 +55191 80347 0.4410 +55191 83460 0.4830 +55191 83594 0.9840 +55191 93100 0.8340 +55191 93380 0.4830 +55191 115416 0.8160 +55191 120227 0.8470 +55191 125061 0.4780 +55191 133686 0.9470 +55191 144193 0.6730 +55191 169714 0.4240 +55191 219927 0.4200 +55191 219931 0.7990 +55191 349565 0.8870 +55191 642475 0.6300 +55191 100130890 0.6470 +55191 100131187 0.6720 +55192 55280 0.5910 +55192 55696 0.4310 +55192 56949 0.7330 +55192 57461 0.6650 +55192 83667 0.4220 +55192 84103 0.4180 +55192 84936 0.5520 +55192 122416 0.5050 +55192 131118 0.4090 +55192 143884 0.4370 +55192 151903 0.5070 +55192 255252 0.5110 +55192 340273 0.4410 +55192 348793 0.4340 +55192 643338 0.5850 +55193 55274 0.9990 +55193 55294 0.4140 +55193 55352 0.4990 +55193 55636 0.5540 +55193 55660 0.5780 +55193 55870 0.5600 +55193 56916 0.5270 +55193 57492 0.9980 +55193 57509 0.4550 +55193 57634 0.5790 +55193 57680 0.6290 +55193 58508 0.6770 +55193 64324 0.6630 +55193 64919 0.8510 +55193 65980 0.9680 +55193 79084 0.5320 +55193 79968 0.5460 +55193 84159 0.7440 +55193 90780 0.5150 +55193 93973 0.5450 +55193 94025 0.4300 +55193 114803 0.9140 +55193 121504 0.8560 +55193 126961 0.9320 +55193 138474 0.5330 +55193 138715 0.5260 +55193 196528 0.9990 +55193 201163 0.4010 +55193 284018 0.5110 +55193 333932 0.9320 +55193 387640 0.5110 +55193 425054 0.5110 +55193 440093 0.9920 +55193 440686 0.9920 +55193 554313 0.8560 +55193 653604 0.9950 +55193 728378 0.6010 +55194 55224 0.4070 +55194 63929 0.4040 +55194 79729 0.5140 +55194 83638 0.4700 +55194 129607 0.4420 +55194 146857 0.7670 +55194 169693 0.4100 +55195 79490 0.6150 +55195 135293 0.4460 +55195 145407 0.4030 +55195 245940 0.4450 +55195 341880 0.6440 +55195 441459 0.4780 +55196 55316 0.4070 +55196 64860 0.4920 +55196 84926 0.4480 +55196 125061 0.4480 +55196 151354 0.4020 +55196 203447 0.4060 +55196 374864 0.4060 +55196 401024 0.5370 +55197 55250 0.4530 +55197 55703 0.4540 +55197 55746 0.4200 +55197 57466 0.6100 +55197 58490 0.9820 +55197 58506 0.4990 +55197 60558 0.4070 +55197 79657 0.6240 +55197 79871 0.9800 +55197 80125 0.4180 +55197 81488 0.8230 +55197 83608 0.6800 +55197 84172 0.4770 +55197 129531 0.4220 +55197 140459 0.6010 +55198 57403 0.7890 +55198 64744 0.5170 +55198 79087 0.5920 +55198 79602 0.6450 +55198 79723 0.6360 +55198 85358 0.8600 +55198 171568 0.4200 +55198 283209 0.5120 +55198 284439 0.4310 +55198 415116 0.4310 +55200 79848 0.6420 +55200 81853 0.4270 +55200 89846 0.4080 +55200 128272 0.4650 +55200 388610 0.4480 +55200 100271715 0.4760 +55201 55521 0.4650 +55201 55626 0.6000 +55201 55686 0.4460 +55201 57104 0.4240 +55201 60673 0.5960 +55201 64422 0.7730 +55201 64786 0.4230 +55201 65018 0.5920 +55201 79065 0.4930 +55201 79443 0.5450 +55201 80174 0.4270 +55201 81631 0.9430 +55201 83593 0.6610 +55201 83734 0.6360 +55201 84557 0.9340 +55201 84938 0.5040 +55201 84971 0.4860 +55201 115201 0.4960 +55201 137902 0.4810 +55201 139341 0.6090 +55201 353513 0.4220 +55201 440738 0.8210 +55201 441925 0.6070 +55203 64093 0.4630 +55203 64839 0.4540 +55203 79441 0.4120 +55203 81831 0.4260 +55203 91050 0.4870 +55203 163175 0.4460 +55204 79586 0.4410 +55204 84072 0.6290 +55204 89944 0.4330 +55204 121665 0.4090 +55204 146664 0.4070 +55204 147660 0.4160 +55204 205428 0.4520 +55204 255738 0.8640 +55204 399687 0.7780 +55204 400720 0.4270 +55205 56172 0.4470 +55205 57507 0.4290 +55205 57592 0.4560 +55205 60313 0.4110 +55205 113278 0.4270 +55205 168850 0.4480 +55205 256646 0.7900 +55205 317772 0.4040 +55206 55291 0.4360 +55206 55660 0.4670 +55206 57187 0.4690 +55206 57448 0.5050 +55206 79676 0.4180 +55206 79697 0.7960 +55206 83732 0.8100 +55206 221002 0.8120 +55206 404734 0.6030 +55208 55527 0.7280 +55208 55827 0.5130 +55208 55832 0.7520 +55208 55958 0.5040 +55208 56929 0.7180 +55208 57542 0.5740 +55208 59339 0.4380 +55208 63891 0.4010 +55208 64326 0.4990 +55208 64344 0.4990 +55208 64410 0.5130 +55208 64708 0.4260 +55208 79016 0.5040 +55208 79269 0.5210 +55208 79594 0.4110 +55208 79774 0.5510 +55208 80067 0.5580 +55208 80344 0.4990 +55208 84078 0.5560 +55208 84259 0.5310 +55208 84287 0.4240 +55208 84541 0.5230 +55208 84861 0.5290 +55208 89890 0.5110 +55208 90135 0.5040 +55208 90293 0.5410 +55208 113622 0.6330 +55208 122769 0.5170 +55208 123228 0.4380 +55208 123879 0.5170 +55208 140739 0.8700 +55208 143384 0.4140 +55208 149951 0.4990 +55208 150684 0.4990 +55208 154881 0.5090 +55208 170622 0.4990 +55208 200845 0.5220 +55208 219436 0.4780 +55208 390594 0.5070 +55209 55250 0.4140 +55209 55421 0.4410 +55209 55854 0.4320 +55209 55870 0.5150 +55209 55904 0.7020 +55209 56978 0.4090 +55209 56980 0.4330 +55209 57148 0.4230 +55209 57492 0.4630 +55209 57680 0.6850 +55209 57697 0.5320 +55209 58508 0.4170 +55209 64754 0.4640 +55209 79577 0.4460 +55209 79718 0.4140 +55209 79813 0.4400 +55209 79918 0.4460 +55209 80349 0.4190 +55209 80854 0.4830 +55209 83852 0.4510 +55209 84193 0.5020 +55209 89970 0.4780 +55209 123169 0.4100 +55209 254048 0.5100 +55209 284697 0.4420 +55209 375323 0.4990 +55209 730094 0.4530 +55210 55735 0.5560 +55210 56945 0.5250 +55210 57128 0.5840 +55210 64965 0.4810 +55210 65993 0.4540 +55210 79590 0.4230 +55210 79934 0.4240 +55210 83743 0.4890 +55210 83858 0.6400 +55210 84275 0.4180 +55210 84311 0.4080 +55210 94033 0.5150 +55210 116225 0.4100 +55210 125228 0.5850 +55210 199953 0.4570 +55210 257202 0.4220 +55210 493869 0.4220 +55211 57167 0.6970 +55211 63978 0.5880 +55211 64321 0.4110 +55211 79727 0.7490 +55211 79923 0.8560 +55211 84456 0.6210 +55211 84891 0.5030 +55211 131405 0.4140 +55211 132625 0.6810 +55211 151871 0.7290 +55211 201456 0.4340 +55211 201516 0.5710 +55211 201799 0.4030 +55211 340168 0.6550 +55211 359787 0.6460 +55211 440093 0.5060 +55211 440686 0.5060 +55211 653604 0.5060 +55212 55764 0.5230 +55212 55805 0.4250 +55212 56623 0.4800 +55212 56912 0.5720 +55212 57096 0.4520 +55212 57539 0.5080 +55212 57545 0.4120 +55212 57560 0.6250 +55212 57576 0.5070 +55212 57728 0.7110 +55212 79140 0.8870 +55212 79659 0.4770 +55212 79738 0.9940 +55212 79809 0.5560 +55212 79831 0.4440 +55212 79867 0.4070 +55212 79989 0.4960 +55212 80173 0.6970 +55212 80184 0.8260 +55212 84100 0.8780 +55212 84467 0.4340 +55212 89891 0.4150 +55212 90410 0.6650 +55212 90990 0.5290 +55212 91147 0.7240 +55212 92482 0.9990 +55212 112752 0.4800 +55212 117177 0.9320 +55212 129880 0.9990 +55212 150737 0.4860 +55212 157657 0.5850 +55212 157680 0.5090 +55212 161003 0.6490 +55212 166379 0.9950 +55212 200894 0.5700 +55212 261734 0.6030 +55212 284403 0.4180 +55212 392509 0.4460 +55213 57213 0.5350 +55213 57507 0.4540 +55213 65993 0.4220 +55213 79797 0.6050 +55213 80224 0.4160 +55213 81442 0.4620 +55213 81602 0.6410 +55213 81617 0.4160 +55213 83852 0.6000 +55213 83930 0.4210 +55213 84650 0.4230 +55213 84955 0.6240 +55213 89970 0.4210 +55213 91369 0.4200 +55213 93973 0.4770 +55213 115761 0.4730 +55213 128372 0.5700 +55213 131601 0.4680 +55213 134492 0.6110 +55213 200933 0.4030 +55213 441608 0.4180 +55213 101929989 0.5180 +55214 57642 0.5550 +55214 60681 0.4010 +55214 64175 0.4570 +55214 80781 0.6070 +55214 81578 0.5360 +55214 84146 0.6700 +55214 84570 0.5030 +55214 85301 0.5850 +55214 91522 0.5030 +55214 131873 0.5720 +55214 136227 0.5160 +55214 150356 0.4200 +55214 169044 0.5560 +55214 255631 0.5100 +55214 283208 0.5010 +55214 283375 0.6340 +55214 340267 0.6340 +55215 55247 0.6770 +55215 55355 0.5500 +55215 55388 0.7160 +55215 55732 0.5180 +55215 55789 0.4280 +55215 56652 0.4110 +55215 56852 0.7540 +55215 56992 0.6640 +55215 57082 0.4190 +55215 57405 0.4240 +55215 57599 0.9980 +55215 57602 0.4820 +55215 57697 0.9980 +55215 59286 0.6220 +55215 63967 0.5980 +55215 64105 0.4070 +55215 64151 0.8420 +55215 64421 0.6530 +55215 64858 0.7610 +55215 65125 0.4030 +55215 79019 0.5310 +55215 79682 0.6040 +55215 79728 0.9880 +55215 79801 0.4810 +55215 79840 0.6580 +55215 79915 0.6050 +55215 79980 0.4250 +55215 80010 0.5940 +55215 80198 0.8590 +55215 80233 0.9960 +55215 81620 0.6370 +55215 81930 0.4610 +55215 83461 0.5200 +55215 83540 0.5760 +55215 83932 0.5060 +55215 83990 0.9940 +55215 84057 0.4510 +55215 84126 0.9560 +55215 84142 0.4010 +55215 84164 0.5410 +55215 84464 0.9670 +55215 84515 0.5010 +55215 84930 0.4280 +55215 90381 0.6240 +55215 91419 0.5430 +55215 91442 0.9850 +55215 113130 0.5810 +55215 113510 0.6180 +55215 115426 0.5010 +55215 116028 0.6330 +55215 125150 0.5400 +55215 126074 0.5400 +55215 133482 0.5160 +55215 146956 0.8430 +55215 150468 0.4510 +55215 151648 0.5080 +55215 157570 0.4380 +55215 165918 0.4280 +55215 197342 0.6490 +55215 199990 0.8620 +55215 201254 0.9650 +55215 220134 0.4640 +55215 221150 0.5240 +55215 259266 0.6290 +55215 286257 0.5820 +55215 348654 0.5240 +55215 353497 0.7700 +55215 378708 0.9590 +55215 404672 0.5830 +55215 548593 0.8490 +55215 105375355 0.5470 +55216 55622 0.4020 +55216 57693 0.4590 +55216 58509 0.4080 +55216 60559 0.4370 +55216 81563 0.4120 +55216 84542 0.4180 +55216 84640 0.4270 +55216 84950 0.4180 +55216 120379 0.5740 +55216 285636 0.4790 +55216 285672 0.5020 +55216 286499 0.4650 +55217 55521 0.8310 +55217 56987 0.6510 +55217 79814 0.4600 +55217 80263 0.7660 +55217 84443 0.4070 +55217 84869 0.4970 +55217 85363 0.7760 +55217 132949 0.5210 +55217 404636 0.4210 +55217 440574 0.4750 +55217 442862 0.5920 +55218 56897 0.5510 +55218 65983 0.4260 +55218 161829 0.6840 +55219 55831 0.4150 +55219 55852 0.4010 +55219 57035 0.6610 +55219 57610 0.4200 +55219 64786 0.4270 +55219 79596 0.4120 +55219 79608 0.4840 +55219 162989 0.4400 +55219 164153 0.4110 +55219 219539 0.5060 +55219 246175 0.4160 +55219 343263 0.4220 +55219 440021 0.5380 +55220 57718 0.4400 +55220 115273 0.4430 +55220 137835 0.4950 +55220 343099 0.4760 +55220 390205 0.4160 +55220 401399 0.4160 +55222 55379 0.4140 +55222 64925 0.4460 +55222 79041 0.5150 +55222 79442 0.6190 +55222 79883 0.4150 +55222 80059 0.4160 +55222 80131 0.4230 +55222 92340 0.5070 +55222 92591 0.4220 +55222 116844 0.4340 +55222 122769 0.4220 +55222 123355 0.4280 +55222 126755 0.4640 +55222 136371 0.4010 +55222 140456 0.4130 +55222 140458 0.4110 +55222 140461 0.4880 +55222 142689 0.5520 +55222 153478 0.4770 +55222 339291 0.7450 +55222 389257 0.5470 +55223 55702 0.4300 +55223 64170 0.8940 +55223 80128 0.4130 +55223 81844 0.4100 +55223 114088 0.4460 +55223 149076 0.5590 +55223 158135 0.4760 +55223 392399 0.4560 +55223 442862 0.4070 +55224 55500 0.5480 +55224 55666 0.4400 +55224 56261 0.9070 +55224 56994 0.5550 +55224 57521 0.5000 +55224 64850 0.9430 +55224 79109 0.6000 +55224 80714 0.4180 +55224 81490 0.4490 +55224 85465 0.7480 +55224 127845 0.6970 +55225 57685 0.5510 +55225 58155 0.5690 +55226 55239 0.5050 +55226 55272 0.9820 +55226 55299 0.8550 +55226 55324 0.4020 +55226 55341 0.8710 +55226 55505 0.8330 +55226 55601 0.4790 +55226 55621 0.5300 +55226 55622 0.8510 +55226 55623 0.9890 +55226 55646 0.7630 +55226 55651 0.9750 +55226 55695 0.5640 +55226 55703 0.8920 +55226 55720 0.9810 +55226 55759 0.7460 +55226 55760 0.7830 +55226 55781 0.7370 +55226 55794 0.6470 +55226 55813 0.9980 +55226 56342 0.6510 +55226 56474 0.5180 +55226 56902 0.9810 +55226 56915 0.6270 +55226 56919 0.4320 +55226 56931 0.5650 +55226 57050 0.9950 +55226 57062 0.8620 +55226 57106 0.5000 +55226 57418 0.7270 +55226 57510 0.5370 +55226 57570 0.5040 +55226 57647 0.7390 +55226 57696 0.7200 +55226 60487 0.6900 +55226 60528 0.5570 +55226 60625 0.4540 +55226 63892 0.4610 +55226 63899 0.5630 +55226 64118 0.7060 +55226 64216 0.4290 +55226 64318 0.8650 +55226 64425 0.9020 +55226 64434 0.9790 +55226 64794 0.8330 +55226 64848 0.4360 +55226 64960 0.6700 +55226 64963 0.6560 +55226 65083 0.9990 +55226 65095 0.7960 +55226 79009 0.4350 +55226 79039 0.8220 +55226 79050 0.9970 +55226 79159 0.4470 +55226 79571 0.8100 +55226 79665 0.4210 +55226 79707 0.6810 +55226 79711 0.8560 +55226 79730 0.4800 +55226 79828 0.4200 +55226 79915 0.4140 +55226 79954 0.9990 +55226 79979 0.6200 +55226 80135 0.5940 +55226 80218 0.4720 +55226 80324 0.5940 +55226 81627 0.4970 +55226 81887 0.4190 +55226 81890 0.4770 +55226 83448 0.4100 +55226 83480 0.5150 +55226 83732 0.5730 +55226 83743 0.9140 +55226 84128 0.9970 +55226 84135 0.9950 +55226 84154 0.9000 +55226 84172 0.9610 +55226 84273 0.4700 +55226 84294 0.6490 +55226 84365 0.8630 +55226 84549 0.7340 +55226 84811 0.4330 +55226 84916 0.9990 +55226 84946 0.7490 +55226 85441 0.4130 +55226 88745 0.5650 +55226 90121 0.5900 +55226 90353 0.6050 +55226 90381 0.6490 +55226 90957 0.4370 +55226 91875 0.4100 +55226 91893 0.4530 +55226 92292 0.4860 +55226 92345 0.5260 +55226 92856 0.9980 +55226 114799 0.8660 +55226 115708 0.8210 +55226 115752 0.4890 +55226 115939 0.4740 +55226 116966 0.6800 +55226 117246 0.9330 +55226 122830 0.5240 +55226 124454 0.4210 +55226 126402 0.6650 +55226 126789 0.4530 +55226 128061 0.8530 +55226 129563 0.5060 +55226 134353 0.7220 +55226 134637 0.4570 +55226 140032 0.6210 +55226 142940 0.8090 +55226 146212 0.6980 +55226 153443 0.4250 +55226 155368 0.4120 +55226 157570 0.8570 +55226 161424 0.7990 +55226 165545 0.7800 +55226 221078 0.8440 +55226 221830 0.8470 +55226 285855 0.5020 +55226 317781 0.4020 +55226 338657 0.4010 +55226 345630 0.9390 +55226 348180 0.4220 +55226 375607 0.4160 +55226 387129 0.4850 +55226 387338 0.5980 +55226 641776 0.4610 +55226 643909 0.4610 +55226 692312 0.5600 +55226 728524 0.4610 +55226 100505478 0.4730 +55226 100996746 0.4610 +55226 105180390 0.4610 +55226 105180391 0.4610 +55226 114483834 0.5810 +55227 55279 0.4270 +55227 55914 0.4050 +55227 57633 0.4730 +55227 84874 0.5550 +55227 389816 0.4560 +55228 57697 0.5320 +55228 64112 0.6620 +55228 79587 0.4220 +55228 79605 0.4790 +55228 84247 0.4240 +55228 135935 0.4460 +55228 164832 0.4180 +55228 170261 0.6780 +55231 90324 0.4790 +55231 131076 0.5130 +55231 147872 0.4310 +55231 149069 0.5620 +55231 253143 0.4800 +55231 340526 0.4420 +55233 57124 0.4550 +55233 57551 0.4380 +55233 60485 0.9670 +55233 83593 0.5160 +55233 84867 0.4200 +55233 92597 0.9820 +55233 154796 0.8170 +55233 154810 0.6670 +55233 285527 0.4210 +55234 55660 0.8310 +55234 55696 0.4250 +55234 55749 0.7150 +55234 56259 0.6410 +55234 56949 0.4690 +55234 57461 0.6240 +55234 57703 0.9120 +55234 57794 0.5080 +55234 57819 0.9800 +55234 58517 0.8840 +55234 59286 0.9690 +55234 63877 0.4300 +55234 64689 0.8350 +55234 64768 0.4220 +55234 79171 0.5210 +55234 79753 0.9010 +55234 81576 0.4460 +55234 83443 0.9810 +55234 84811 0.9040 +55234 84844 0.9830 +55234 84950 0.9950 +55234 84955 0.6480 +55234 91603 0.4310 +55234 114932 0.6420 +55234 124245 0.4740 +55234 151903 0.4280 +55234 153527 0.9960 +55234 220134 0.4460 +55234 220988 0.4410 +55236 55284 0.7480 +55236 55327 0.5310 +55236 55585 0.6130 +55236 55611 0.4910 +55236 57062 0.4480 +55236 57448 0.7370 +55236 63893 0.7500 +55236 64422 0.6250 +55236 65264 0.9950 +55236 79184 0.4170 +55236 79876 0.7200 +55236 81605 0.6120 +55236 81631 0.4530 +55236 83737 0.4970 +55236 84196 0.8200 +55236 84248 0.4540 +55236 84557 0.4130 +55236 90441 0.4270 +55236 92912 0.6590 +55236 114803 0.4410 +55236 118424 0.6820 +55236 140739 0.8110 +55236 148581 0.7360 +55236 197131 0.4510 +55236 221302 0.4240 +55236 254394 0.4180 +55236 338674 0.4220 +55236 387082 0.5330 +55236 440738 0.4630 +55237 55638 0.4430 +55237 56252 0.4290 +55237 79727 0.4610 +55237 79923 0.4490 +55237 84891 0.8550 +55237 116143 0.4830 +55237 145483 0.4330 +55237 145497 0.4880 +55237 157567 0.4840 +55237 201931 0.4690 +55237 203228 0.5910 +55237 283571 0.7260 +55237 646658 0.7140 +55238 120103 0.4510 +55238 124935 0.5350 +55238 153129 0.5450 +55238 206358 0.6320 +55238 340024 0.4090 +55239 55324 0.4260 +55239 55341 0.4140 +55239 55621 0.6950 +55239 55646 0.4300 +55239 55720 0.6830 +55239 56945 0.4390 +55239 64224 0.4740 +55239 79009 0.4680 +55239 79583 0.4300 +55239 79676 0.5610 +55239 79697 0.5920 +55239 79954 0.4050 +55239 81627 0.4160 +55239 83743 0.4220 +55239 84172 0.4520 +55239 84365 0.4490 +55239 84864 0.6200 +55239 84916 0.4240 +55239 91801 0.4680 +55239 92399 0.5640 +55239 116224 0.6160 +55239 129450 0.5500 +55239 171482 0.6410 +55239 171483 0.6410 +55239 171484 0.6410 +55239 392465 0.4620 +55239 497189 0.4260 +55239 114483834 0.6630 +55240 55640 0.5340 +55240 55847 0.4400 +55240 55971 0.4130 +55240 57381 0.5430 +55240 57498 0.4050 +55240 57817 0.5990 +55240 64116 0.5130 +55240 64902 0.4850 +55240 79180 0.4520 +55240 79901 0.7830 +55240 81609 0.6270 +55240 81624 0.4480 +55240 81839 0.4260 +55240 81894 0.4440 +55240 84883 0.5420 +55240 92421 0.5410 +55240 94033 0.4090 +55240 113235 0.4560 +55240 121793 0.4200 +55240 128239 0.4130 +55240 144402 0.4010 +55240 148738 0.5110 +55240 164656 0.4140 +55240 375035 0.4060 +55240 445582 0.4030 +55243 57502 0.5150 +55243 57554 0.5720 +55243 57555 0.5540 +55243 64423 0.4230 +55243 84168 0.6320 +55243 84623 0.8420 +55243 128360 0.4640 +55244 55315 0.4930 +55244 55867 0.7560 +55244 56606 0.4780 +55244 57469 0.4500 +55244 80704 0.4430 +55244 85413 0.5020 +55244 114571 0.7650 +55244 116085 0.5160 +55244 137682 0.5730 +55244 222962 0.7310 +55244 340024 0.4600 +55244 340390 0.5730 +55244 353189 0.7430 +55244 387332 0.5270 +55244 388662 0.4330 +55244 399949 0.5270 +55245 55657 0.4270 +55245 55741 0.4040 +55245 56945 0.4260 +55245 64756 0.4210 +55245 81341 0.4130 +55245 84274 0.4620 +55245 84300 0.9630 +55245 84311 0.4030 +55245 90624 0.7420 +55245 116228 0.7010 +55245 118490 0.4300 +55245 119391 0.4030 +55245 285521 0.4720 +55245 440957 0.4300 +55245 790955 0.7040 +55245 100131801 0.4200 +55245 101929926 0.5640 +55246 55677 0.4980 +55246 63898 0.4640 +55246 79644 0.4310 +55246 81034 0.5710 +55246 116228 0.4780 +55246 124808 0.4120 +55246 129787 0.4390 +55246 338674 0.4160 +55247 55270 0.4400 +55247 55355 0.5740 +55247 55388 0.6180 +55247 55635 0.7120 +55247 55766 0.4990 +55247 55775 0.5320 +55247 55789 0.5380 +55247 56992 0.6500 +55247 57082 0.4660 +55247 57405 0.5130 +55247 57650 0.4280 +55247 57697 0.6190 +55247 64105 0.5140 +55247 64151 0.5580 +55247 79661 0.9880 +55247 79733 0.5310 +55247 79801 0.4940 +55247 79877 0.7470 +55247 79915 0.5330 +55247 80119 0.5180 +55247 80198 0.4220 +55247 80312 0.5490 +55247 80347 0.7470 +55247 81624 0.4300 +55247 81930 0.5660 +55247 83461 0.5680 +55247 83540 0.5490 +55247 83990 0.6250 +55247 84464 0.5070 +55247 84893 0.4690 +55247 85236 0.5140 +55247 90381 0.4080 +55247 91442 0.4780 +55247 94239 0.5110 +55247 113510 0.5960 +55247 128312 0.5030 +55247 128611 0.4030 +55247 144455 0.4200 +55247 146909 0.5440 +55247 146956 0.4320 +55247 150468 0.4130 +55247 151246 0.4080 +55247 151648 0.5290 +55247 157570 0.4130 +55247 220134 0.5650 +55247 221150 0.5030 +55247 252969 0.6260 +55247 255626 0.5030 +55247 259266 0.5090 +55247 348654 0.6250 +55247 353497 0.6670 +55247 387103 0.4590 +55247 474382 0.4990 +55247 100533467 0.6230 +55248 57481 0.4220 +55248 64083 0.5780 +55248 84656 0.4420 +55248 89782 0.4810 +55248 114799 0.6070 +55248 157570 0.6080 +55248 253017 0.7200 +55248 283820 0.5700 +55248 405754 0.4180 +55248 408050 0.5440 +55249 55870 0.9450 +55249 84838 0.6470 +55249 147807 0.4510 +55249 163033 0.6220 +55250 55596 0.4080 +55250 55621 0.4220 +55250 55840 0.7200 +55250 57184 0.5140 +55250 64969 0.5000 +55250 79577 0.7680 +55250 79664 0.7650 +55250 80237 0.7220 +55250 80349 0.7600 +55250 81605 0.4690 +55250 81890 0.4310 +55250 83608 0.5510 +55250 84337 0.5450 +55250 84524 0.7470 +55250 85403 0.7200 +55250 90353 0.6030 +55250 91801 0.5460 +55250 93587 0.4610 +55250 113179 0.5970 +55250 123169 0.7710 +55250 285381 0.4410 +55250 348180 0.5510 +55250 619279 0.4570 +55250 653604 0.4620 +55251 59336 0.4730 +55251 124454 0.4460 +55251 142689 0.4350 +55251 154007 0.4240 +55251 221143 0.4600 +55251 402117 0.4610 +55252 55777 0.9030 +55252 57332 0.7210 +55252 58499 0.9150 +55252 58508 0.5560 +55252 63035 0.5240 +55252 63893 0.4350 +55252 80012 0.5570 +55252 80816 0.7860 +55252 84108 0.6390 +55252 84295 0.4770 +55252 84333 0.6140 +55252 84448 0.6190 +55252 84733 0.5980 +55252 84759 0.6520 +55252 85235 0.4150 +55252 90338 0.6460 +55252 92815 0.4150 +55252 114785 0.9390 +55252 114803 0.4280 +55252 121536 0.6360 +55252 126374 0.4750 +55252 132625 0.5660 +55252 164045 0.4680 +55252 171023 0.8520 +55252 221613 0.4150 +55252 221656 0.9530 +55252 221937 0.9620 +55252 317772 0.4150 +55252 404281 0.5660 +55253 55316 0.5320 +55253 55341 0.4140 +55253 57019 0.4030 +55253 57570 0.8820 +55253 64210 0.7140 +55253 64794 0.4150 +55253 79954 0.5620 +55253 81689 0.7000 +55253 83480 0.4220 +55253 113179 0.4010 +55253 122961 0.4150 +55253 127253 0.9150 +55253 129450 0.7630 +55253 150962 0.4480 +55253 152185 0.4220 +55253 284131 0.6790 +55253 285381 0.4330 +55254 55584 0.5750 +55254 56983 0.4130 +55254 57514 0.5210 +55254 91828 0.4130 +55254 654502 0.4180 +55255 57111 0.4830 +55255 57589 0.7220 +55255 60673 0.7850 +55255 64121 0.5350 +55255 64210 0.4900 +55255 65061 0.5360 +55255 85442 0.7200 +55255 92292 0.4030 +55255 96459 0.4570 +55255 116442 0.9710 +55255 126520 0.5770 +55255 127829 0.4210 +55255 140775 0.9990 +55255 166979 0.6180 +55255 201163 0.5550 +55255 203228 0.9990 +55255 219970 0.4030 +55255 376267 0.4570 +55255 389541 0.7210 +55255 494551 0.4540 +55255 644672 0.4400 +55255 728642 0.4400 +55255 100287520 0.4030 +55256 55262 0.4770 +55256 56267 0.5460 +55256 57556 0.4120 +55256 58478 0.9970 +55256 78989 0.4450 +55256 84245 0.9090 +55256 84680 0.5450 +55256 84706 0.5450 +55256 123688 0.5980 +55256 126003 0.4930 +55256 246243 0.7350 +55256 259307 0.9130 +55256 390110 0.5450 +55257 55683 0.7350 +55257 55689 0.7420 +55257 55929 0.9990 +55257 55969 0.4860 +55257 57501 0.4750 +55257 57634 0.9880 +55257 57649 0.5740 +55257 57798 0.4810 +55257 64431 0.4080 +55257 64769 0.9970 +55257 80314 0.9950 +55257 81611 0.4180 +55257 84148 0.8240 +55257 84289 0.6510 +55257 85235 0.4060 +55257 88745 0.6380 +55257 92815 0.4100 +55257 93621 0.8370 +55257 94239 0.6190 +55257 116225 0.4590 +55257 139628 0.8140 +55257 151050 0.5400 +55257 221613 0.4060 +55257 255626 0.6480 +55257 283150 0.8420 +55257 283871 0.4590 +55257 284058 0.7390 +55257 317772 0.4210 +55257 338657 0.4170 +55257 339287 0.7770 +55257 345651 0.5920 +55257 375748 0.4750 +55257 100527943 0.4160 +55258 56267 0.4280 +55258 63826 0.6820 +55258 84680 0.4330 +55258 84706 0.4390 +55258 113675 0.6880 +55258 123688 0.4310 +55258 127018 0.4930 +55258 150572 0.4760 +55258 162417 0.4140 +55258 167465 0.4280 +55258 200523 0.5680 +55258 285148 0.6250 +55258 344167 0.5120 +55258 374355 0.4880 +55258 374659 0.8240 +55258 390110 0.4280 +55258 100532724 0.4530 +55258 100874261 0.4440 +55259 55567 0.7500 +55259 55815 0.4030 +55259 56171 0.7620 +55259 64446 0.7690 +55259 79819 0.7950 +55259 80217 0.4250 +55259 83544 0.7820 +55259 85478 0.5610 +55259 90506 0.4090 +55259 92749 0.5070 +55259 93233 0.7680 +55259 118491 0.7860 +55259 126820 0.8440 +55259 144132 0.5920 +55259 144363 0.5160 +55259 146754 0.7820 +55259 160492 0.4880 +55259 201625 0.6190 +55259 283417 0.4660 +55259 388389 0.4940 +55260 84457 0.4460 +55260 93233 0.4770 +55260 93408 0.4010 +55262 55755 0.4060 +55262 58485 0.9180 +55262 60684 0.7830 +55262 63925 0.5360 +55262 79023 0.5200 +55262 79090 0.6400 +55262 79370 0.7760 +55262 79648 0.4180 +55262 80006 0.6710 +55262 81551 0.6940 +55262 85438 0.7900 +55262 117177 0.5850 +55262 122553 0.6660 +55262 126003 0.9360 +55262 163782 0.6370 +55262 284403 0.4500 +55262 285180 0.5220 +55262 375607 0.4450 +55262 100128327 0.7200 +55266 64924 0.5000 +55266 79847 0.4610 +55266 79947 0.4220 +55266 92747 0.4470 +55266 112487 0.6600 +55266 113174 0.5100 +55266 116150 0.4060 +55266 126147 0.5210 +55266 266727 0.4560 +55266 285521 0.6220 +55266 643418 0.4400 +55268 55289 0.5430 +55268 55664 0.4100 +55268 55825 0.4260 +55268 55902 0.4400 +55268 56922 0.5270 +55268 57129 0.4680 +55268 57591 0.4370 +55268 57687 0.5660 +55268 60488 0.4790 +55268 63875 0.4670 +55268 64064 0.4530 +55268 64087 0.5750 +55268 64965 0.5000 +55268 64968 0.4580 +55268 64969 0.4360 +55268 64975 0.4580 +55268 64976 0.4150 +55268 64979 0.4680 +55268 64981 0.4100 +55268 64983 0.4110 +55268 80221 0.5310 +55268 80724 0.4330 +55268 81892 0.6070 +55268 84129 0.5480 +55268 84263 0.7910 +55268 84532 0.4830 +55268 84545 0.4690 +55268 90353 0.4150 +55268 137872 0.4050 +55268 140856 0.4120 +55268 254042 0.4030 +55268 284422 0.4650 +55268 376497 0.4870 +55268 728489 0.4310 +55268 109703458 0.4120 +55268 122405565 0.4650 +55269 55646 0.4520 +55269 56252 0.5760 +55269 64784 0.4180 +55269 83940 0.4660 +55269 727837 0.4910 +55269 100526737 0.9900 +55270 55722 0.4030 +55270 56474 0.7020 +55270 56954 0.4800 +55270 79001 0.6140 +55270 79873 0.8440 +55270 80817 0.6520 +55270 81602 0.6460 +55270 83594 0.7670 +55270 84304 0.5860 +55270 84445 0.4310 +55270 87178 0.4110 +55270 91875 0.7000 +55270 93100 0.8590 +55270 127845 0.5060 +55270 131870 0.5380 +55270 167227 0.5710 +55270 170685 0.4300 +55270 200035 0.6920 +55270 221823 0.4090 +55270 254552 0.6670 +55270 256281 0.7680 +55270 283927 0.6300 +55270 340204 0.5910 +55270 389812 0.6090 +55270 390916 0.7130 +55270 642475 0.8590 +55272 55299 0.9100 +55272 55316 0.8950 +55272 55319 0.6300 +55272 55324 0.6130 +55272 55341 0.7330 +55272 55505 0.5670 +55272 55591 0.7250 +55272 55646 0.6740 +55272 55651 0.9380 +55272 55668 0.8410 +55272 55699 0.4020 +55272 55703 0.8650 +55272 55720 0.6180 +55272 55759 0.9860 +55272 55781 0.6510 +55272 55794 0.4930 +55272 55813 0.9980 +55272 56342 0.4760 +55272 56474 0.4860 +55272 56479 0.4950 +55272 56647 0.5570 +55272 56648 0.8690 +55272 56893 0.4510 +55272 56902 0.9670 +55272 56915 0.9040 +55272 56919 0.7030 +55272 56941 0.4500 +55272 56965 0.6660 +55272 57038 0.6680 +55272 57050 0.9990 +55272 57062 0.4440 +55272 57109 0.6570 +55272 57129 0.6700 +55272 57136 0.7610 +55272 57418 0.7160 +55272 57647 0.9220 +55272 58496 0.5880 +55272 60488 0.8510 +55272 60558 0.8330 +55272 60625 0.7010 +55272 60678 0.6070 +55272 63875 0.9840 +55272 63931 0.8930 +55272 64146 0.8300 +55272 64216 0.7800 +55272 64318 0.5750 +55272 64374 0.8290 +55272 64425 0.7230 +55272 64745 0.5400 +55272 64782 0.4170 +55272 64949 0.5710 +55272 64960 0.8940 +55272 64963 0.8990 +55272 64965 0.9840 +55272 64968 0.9820 +55272 64969 0.9440 +55272 64975 0.7350 +55272 64976 0.6580 +55272 64978 0.5830 +55272 64979 0.9840 +55272 64981 0.7830 +55272 64983 0.9830 +55272 65003 0.8470 +55272 65005 0.9880 +55272 65008 0.8880 +55272 65080 0.6710 +55272 65083 0.9960 +55272 65095 0.7120 +55272 65121 0.6090 +55272 65122 0.6090 +55272 65993 0.5630 +55272 79039 0.4170 +55272 79050 0.9970 +55272 79159 0.8820 +55272 79571 0.8330 +55272 79590 0.8960 +55272 79631 0.8440 +55272 79665 0.6210 +55272 79668 0.6630 +55272 79707 0.5320 +55272 79954 0.9940 +55272 80135 0.8450 +55272 80146 0.5030 +55272 80270 0.4930 +55272 80273 0.4130 +55272 80324 0.4280 +55272 81875 0.4170 +55272 81887 0.6100 +55272 83480 0.5080 +55272 83743 0.7370 +55272 84128 0.9970 +55272 84135 0.9920 +55272 84154 0.8650 +55272 84172 0.8690 +55272 84240 0.5970 +55272 84294 0.9300 +55272 84310 0.4110 +55272 84340 0.4750 +55272 84365 0.7950 +55272 84545 0.7420 +55272 84549 0.7110 +55272 84916 0.9950 +55272 84946 0.7780 +55272 84993 0.4520 +55272 85377 0.4550 +55272 85395 0.4830 +55272 85476 0.8480 +55272 87178 0.7590 +55272 88745 0.7670 +55272 90121 0.6780 +55272 90353 0.4120 +55272 90624 0.4360 +55272 91574 0.5420 +55272 91582 0.8420 +55272 91752 0.5070 +55272 91875 0.4890 +55272 91893 0.5470 +55272 92196 0.6180 +55272 92399 0.9590 +55272 92856 0.9990 +55272 93107 0.4950 +55272 93517 0.4930 +55272 93550 0.4380 +55272 114781 0.4160 +55272 114987 0.9110 +55272 116832 0.7100 +55272 116966 0.6120 +55272 117246 0.5940 +55272 118460 0.7170 +55272 122481 0.4880 +55272 122622 0.4940 +55272 124454 0.7180 +55272 124995 0.7430 +55272 126402 0.8880 +55272 128061 0.8370 +55272 137994 0.4200 +55272 140032 0.8730 +55272 140801 0.8290 +55272 143244 0.8690 +55272 143630 0.4380 +55272 148022 0.4690 +55272 149478 0.4160 +55272 153443 0.8180 +55272 155368 0.4860 +55272 157310 0.5150 +55272 158067 0.4880 +55272 161424 0.7160 +55272 164153 0.4380 +55272 169522 0.4950 +55272 170850 0.4950 +55272 171568 0.4140 +55272 200916 0.8740 +55272 219578 0.5070 +55272 219927 0.9820 +55272 221078 0.4070 +55272 221264 0.4880 +55272 221823 0.4560 +55272 221830 0.8090 +55272 254268 0.5370 +55272 255308 0.6140 +55272 283106 0.5900 +55272 283518 0.4950 +55272 285855 0.8450 +55272 343068 0.6090 +55272 343070 0.6090 +55272 345630 0.9390 +55272 347487 0.8280 +55272 353376 0.4690 +55272 374659 0.8590 +55272 387129 0.8420 +55272 387712 0.7070 +55272 390999 0.6090 +55272 391002 0.6090 +55272 400735 0.6090 +55272 400736 0.6090 +55272 440560 0.6090 +55272 440561 0.6090 +55272 441873 0.6090 +55272 641776 0.7360 +55272 643909 0.7360 +55272 645051 0.6510 +55272 645073 0.6510 +55272 645359 0.6090 +55272 653619 0.6090 +55272 692312 0.4520 +55272 728524 0.7360 +55272 728689 0.6500 +55272 729396 0.6510 +55272 729422 0.6510 +55272 729428 0.6510 +55272 729431 0.6510 +55272 729442 0.6510 +55272 729447 0.6510 +55272 729528 0.6090 +55272 100008586 0.6510 +55272 100132399 0.6510 +55272 100287482 0.8280 +55272 100302736 0.4690 +55272 100505478 0.8420 +55272 100526842 0.8880 +55272 100529097 0.8480 +55272 100529239 0.9240 +55272 100996746 0.7360 +55272 101929983 0.6090 +55272 102724473 0.6510 +55272 105180390 0.7360 +55272 105180391 0.7360 +55272 114483834 0.6120 +55273 58488 0.4140 +55273 126669 0.6180 +55273 203286 0.4010 +55274 55780 0.6200 +55274 55870 0.4420 +55274 57492 0.9690 +55274 58155 0.5370 +55274 58190 0.4380 +55274 64094 0.4330 +55274 64919 0.7350 +55274 65980 0.9610 +55274 79981 0.4790 +55274 83746 0.6740 +55274 84498 0.4310 +55274 94121 0.5460 +55274 114803 0.5500 +55274 121504 0.9050 +55274 168002 0.4610 +55274 196528 0.9990 +55274 246243 0.4310 +55274 253769 0.5830 +55274 387263 0.4510 +55274 554313 0.9050 +55274 728378 0.4430 +55275 55284 0.5210 +55275 55610 0.9990 +55275 55737 0.5620 +55275 55763 0.6850 +55275 55770 0.6780 +55275 55823 0.5140 +55275 57511 0.8340 +55275 57589 0.6240 +55275 58485 0.5560 +55275 60412 0.5380 +55275 60561 0.6110 +55275 63894 0.4250 +55275 63908 0.5000 +55275 63934 0.4270 +55275 64601 0.4360 +55275 65082 0.4970 +55275 79042 0.4650 +55275 79571 0.6870 +55275 79850 0.5960 +55275 80306 0.6380 +55275 80746 0.4430 +55275 83548 0.8370 +55275 84062 0.4190 +55275 84084 0.8300 +55275 84203 0.5370 +55275 90196 0.6450 +55275 91949 0.8930 +55275 126003 0.4010 +55275 126208 0.7030 +55275 134265 0.4600 +55275 143187 0.7640 +55275 146923 0.4270 +55275 149371 0.5400 +55275 150684 0.4930 +55275 163589 0.4320 +55275 339122 0.5440 +55275 341359 0.4520 +55275 347517 0.4230 +55275 359845 0.4440 +55276 55695 0.4350 +55276 56052 0.4240 +55276 56898 0.4230 +55276 56985 0.9020 +55276 57050 0.7010 +55276 57560 0.6660 +55276 57818 0.9020 +55276 64080 0.9560 +55276 64841 0.5320 +55276 65005 0.4100 +55276 79654 0.6020 +55276 80183 0.7890 +55276 80201 0.9380 +55276 81929 0.7030 +55276 83440 0.9530 +55276 84076 0.9380 +55276 84263 0.4880 +55276 85365 0.4360 +55276 90353 0.7380 +55276 91373 0.5930 +55276 92579 0.9060 +55276 112483 0.4100 +55276 122622 0.4360 +55276 132158 0.8000 +55276 133688 0.6380 +55276 134526 0.6460 +55276 146894 0.4950 +55276 151531 0.9090 +55276 167127 0.6400 +55276 167410 0.6020 +55276 171177 0.5980 +55276 196441 0.4960 +55276 221301 0.5230 +55276 221823 0.9400 +55276 257218 0.6230 +55276 283209 0.9050 +55276 284098 0.4160 +55276 440138 0.5750 +55276 644974 0.4120 +55276 729020 0.5600 +55277 55968 0.6260 +55277 57473 0.4600 +55277 57679 0.4200 +55277 79944 0.4930 +55277 83941 0.5010 +55277 85403 0.4300 +55277 89872 0.4590 +55277 114803 0.4990 +55277 134510 0.4080 +55277 155435 0.5100 +55277 203228 0.4570 +55277 256051 0.4340 +55277 256979 0.4030 +55277 400916 0.4040 +55277 100509620 0.4590 +55277 100652824 0.4230 +55278 55687 0.4890 +55278 55699 0.5400 +55278 55781 0.7550 +55278 56474 0.4250 +55278 56922 0.5930 +55278 56945 0.6580 +55278 56954 0.4470 +55278 57057 0.4620 +55278 57107 0.5140 +55278 57176 0.4860 +55278 57494 0.4730 +55278 57505 0.5120 +55278 60558 0.4180 +55278 64087 0.5100 +55278 79073 0.7880 +55278 79587 0.4520 +55278 79731 0.9800 +55278 79814 0.4520 +55278 80222 0.4740 +55278 84464 0.6350 +55278 84816 0.5650 +55278 84893 0.4230 +55278 85865 0.5900 +55278 89894 0.5670 +55278 91875 0.4450 +55278 92106 0.4580 +55278 92935 0.4490 +55278 93100 0.5390 +55278 93649 0.5510 +55278 116832 0.6760 +55278 118490 0.4100 +55278 123263 0.5850 +55278 124454 0.9080 +55278 135293 0.4520 +55278 138428 0.6890 +55278 140628 0.5960 +55278 158584 0.4060 +55278 161882 0.6050 +55278 196074 0.4060 +55278 221656 0.4300 +55278 222236 0.4070 +55278 256380 0.4100 +55278 283459 0.9990 +55278 283985 0.4920 +55278 284716 0.4710 +55278 285148 0.7490 +55278 606495 0.4030 +55278 642475 0.5380 +55279 92595 0.5430 +55279 140596 0.4960 +55279 144404 0.4300 +55279 149345 0.4320 +55279 167465 0.4550 +55279 203238 0.4310 +55279 285237 0.7140 +55279 503618 0.5040 +55280 55702 0.4320 +55280 56949 0.7600 +55280 57461 0.7650 +55280 65082 0.6380 +55280 81576 0.6290 +55280 83746 0.4750 +55280 84135 0.4160 +55280 84942 0.4310 +55280 131965 0.4730 +55280 138046 0.4940 +55280 143187 0.6300 +55280 143884 0.7650 +55280 148304 0.5640 +55280 151903 0.7340 +55280 159195 0.4240 +55280 100534599 0.5620 +55281 64108 0.4380 +55281 64418 0.4530 +55281 93343 0.5170 +55281 344558 0.4460 +55282 64232 0.4350 +55282 146212 0.5120 +55282 160298 0.4340 +55282 388284 0.4780 +55283 55503 0.5280 +55283 56302 0.9150 +55283 56479 0.4430 +55283 57192 0.9760 +55283 59341 0.5290 +55283 79054 0.5470 +55283 80036 0.5100 +55283 118932 0.4250 +55283 122786 0.6580 +55283 126695 0.4310 +55283 140803 0.4410 +55283 153733 0.5050 +55283 162514 0.4560 +55283 219931 0.6300 +55283 255231 0.9830 +55283 283130 0.5160 +55284 55585 0.5070 +55284 55611 0.5170 +55284 55905 0.4050 +55284 56254 0.4140 +55284 56852 0.5180 +55284 63893 0.4290 +55284 65264 0.5000 +55284 79876 0.6030 +55284 84937 0.5220 +55284 85363 0.6410 +55284 92552 0.7800 +55284 92912 0.4270 +55284 115992 0.5190 +55284 118424 0.7430 +55284 197131 0.4560 +55284 375061 0.5040 +55284 387082 0.4120 +55284 387521 0.4010 +55284 387522 0.5780 +55285 55599 0.5490 +55285 55692 0.4700 +55285 55696 0.5410 +55285 55702 0.4260 +55285 55954 0.7890 +55285 56474 0.4010 +55285 56949 0.6550 +55285 57054 0.4080 +55285 57135 0.4350 +55285 57187 0.5510 +55285 57461 0.4080 +55285 57472 0.4510 +55285 57819 0.4030 +55285 58517 0.4880 +55285 64859 0.5290 +55285 65083 0.5580 +55285 79446 0.5010 +55285 79631 0.4770 +55285 83443 0.7990 +55285 83759 0.4450 +55285 83938 0.4210 +55285 84187 0.4360 +55285 84316 0.5050 +55285 84844 0.8040 +55285 84881 0.5610 +55285 84967 0.5670 +55285 85437 0.7310 +55285 85476 0.4290 +55285 87178 0.4070 +55285 90736 0.4050 +55285 92906 0.4430 +55285 113251 0.5740 +55285 126259 0.5050 +55285 138046 0.5120 +55285 139804 0.6260 +55285 147650 0.5050 +55285 154007 0.7090 +55285 164045 0.4330 +55285 220074 0.4210 +55285 246175 0.4530 +55285 390748 0.4780 +55285 392517 0.5090 +55285 727866 0.4560 +55285 100534599 0.4040 +55286 57184 0.4320 +55286 79669 0.4290 +55286 84331 0.4180 +55286 339977 0.4360 +55286 340277 0.4580 +55287 85027 0.4790 +55287 441518 0.4460 +55287 728116 0.4460 +55288 55486 0.6100 +55288 55638 0.6990 +55288 55669 0.9640 +55288 55745 0.4130 +55288 55763 0.4680 +55288 55847 0.4430 +55288 56947 0.6270 +55288 56993 0.4490 +55288 64837 0.4210 +55288 65018 0.9560 +55288 66008 0.9980 +55288 79594 0.6730 +55288 80179 0.8960 +55288 83787 0.6300 +55288 84709 0.5160 +55288 84749 0.7860 +55288 89941 0.8120 +55288 90550 0.7050 +55288 91452 0.4910 +55288 120892 0.8600 +55288 125170 0.5060 +55288 138162 0.4680 +55288 139341 0.4960 +55288 197335 0.7160 +55289 55862 0.5360 +55289 55902 0.4790 +55289 64087 0.4830 +55289 64682 0.4660 +55289 79777 0.4630 +55289 79783 0.4070 +55289 80724 0.4680 +55289 84129 0.4870 +55289 84263 0.8210 +55289 84320 0.4630 +55289 84532 0.4240 +55289 84910 0.5030 +55289 91452 0.4630 +55289 116285 0.4180 +55289 124359 0.4780 +55289 129804 0.4110 +55289 132949 0.5440 +55289 140856 0.4470 +55289 253175 0.4780 +55289 255119 0.4630 +55289 341392 0.4040 +55289 376497 0.4140 +55289 376940 0.4500 +55289 414149 0.4730 +55289 109703458 0.5060 +55290 55703 0.9100 +55290 55718 0.8420 +55290 55814 0.9990 +55290 58512 0.4530 +55290 79698 0.4700 +55290 80223 0.5430 +55290 84172 0.4820 +55290 84232 0.5240 +55290 84265 0.7540 +55290 90326 0.4570 +55290 112495 0.7220 +55290 137362 0.4680 +55290 137994 0.5440 +55290 171568 0.8280 +55290 387332 0.7020 +55290 399949 0.6090 +55291 55505 0.4220 +55291 55651 0.4210 +55291 79974 0.4470 +55291 81605 0.4040 +55291 90353 0.4460 +55291 91526 0.9030 +55291 112970 0.6170 +55291 151987 0.4200 +55291 283373 0.8300 +55291 285381 0.6560 +55291 339965 0.4050 +55293 56965 0.5200 +55293 57132 0.6910 +55293 57469 0.5690 +55293 64087 0.5730 +55293 64149 0.4120 +55293 64802 0.4270 +55293 79109 0.4320 +55293 79643 0.7060 +55293 79668 0.5200 +55293 79720 0.8050 +55293 79728 0.5200 +55293 79912 0.4350 +55293 84313 0.6960 +55293 84706 0.4380 +55293 84936 0.6290 +55293 89853 0.8160 +55293 91782 0.6870 +55293 92421 0.6480 +55293 93343 0.8080 +55293 115004 0.4560 +55293 124773 0.4400 +55293 128866 0.6610 +55293 137362 0.4620 +55293 137492 0.8090 +55293 144108 0.6380 +55293 155382 0.8050 +55293 157697 0.4150 +55293 221322 0.5400 +55293 387522 0.4730 +55293 390595 0.5400 +55294 55534 0.6990 +55294 55611 0.4410 +55294 55692 0.5140 +55294 55832 0.7900 +55294 56947 0.5140 +55294 57551 0.4200 +55294 57602 0.5120 +55294 57634 0.4240 +55294 57646 0.9660 +55294 58508 0.5350 +55294 63967 0.4480 +55294 64601 0.4630 +55294 64798 0.4230 +55294 80204 0.4440 +55294 81610 0.5320 +55294 81669 0.4210 +55294 83732 0.5230 +55294 83737 0.4030 +55294 83752 0.4050 +55294 84246 0.4030 +55294 84260 0.5710 +55294 84261 0.4560 +55294 84295 0.6930 +55294 84441 0.6990 +55294 84678 0.4670 +55294 84790 0.5160 +55294 84961 0.4770 +55294 90993 0.4170 +55294 92140 0.4160 +55294 112950 0.5100 +55294 114907 0.4240 +55294 123879 0.5070 +55294 134111 0.5940 +55294 139285 0.5060 +55294 144699 0.4540 +55294 171023 0.4020 +55294 196528 0.4100 +55294 199990 0.5650 +55294 200933 0.7520 +55294 221302 0.4290 +55294 222235 0.4520 +55294 253260 0.8780 +55294 255488 0.4440 +55294 257218 0.5550 +55294 283807 0.4020 +55294 284403 0.4090 +55294 286151 0.4170 +55294 400569 0.5170 +55294 494188 0.4620 +55295 57565 0.5190 +55295 59349 0.6550 +55295 84256 0.4460 +55295 84812 0.4970 +55295 84861 0.4650 +55295 85479 0.4020 +55295 117286 0.5170 +55295 127254 0.5660 +55295 283726 0.4680 +55295 284352 0.4180 +55295 284451 0.5910 +55295 346525 0.5740 +55295 387778 0.4030 +55296 55357 0.4770 +55296 55633 0.5720 +55296 55773 0.4430 +55296 57216 0.4930 +55296 57337 0.4900 +55296 57403 0.4740 +55296 57465 0.4020 +55296 57533 0.5900 +55296 64786 0.4790 +55296 79096 0.6470 +55296 79735 0.5750 +55296 83452 0.4970 +55296 83874 0.5660 +55296 84276 0.8260 +55296 91978 0.6100 +55296 93627 0.5100 +55296 94104 0.4250 +55296 125058 0.4720 +55296 128637 0.5350 +55296 129049 0.4350 +55296 146057 0.4930 +55296 161514 0.6640 +55296 254272 0.4700 +55296 353116 0.4120 +55296 353149 0.4100 +55296 374403 0.5910 +55297 57542 0.5920 +55297 79023 0.4750 +55297 80007 0.6490 +55297 121506 0.4220 +55297 153339 0.4340 +55297 196472 0.4180 +55297 221421 0.4830 +55297 340419 0.4250 +55297 390433 0.4770 +55297 100287284 0.4200 +55298 55819 0.4510 +55298 81790 0.4400 +55298 84964 0.4140 +55298 91445 0.6530 +55298 100132963 0.4810 +55299 55319 0.8000 +55299 55341 0.9020 +55299 55505 0.6540 +55299 55591 0.5220 +55299 55621 0.5830 +55299 55623 0.4150 +55299 55646 0.8930 +55299 55651 0.9530 +55299 55695 0.6460 +55299 55720 0.8810 +55299 55759 0.9980 +55299 55760 0.7760 +55299 55781 0.8020 +55299 55794 0.7560 +55299 55813 0.8510 +55299 55854 0.4890 +55299 56342 0.8630 +55299 56647 0.8460 +55299 56829 0.5380 +55299 56902 0.6730 +55299 57050 0.7490 +55299 57062 0.8720 +55299 57109 0.4330 +55299 57418 0.7380 +55299 57570 0.4130 +55299 57696 0.9310 +55299 60314 0.4420 +55299 60487 0.6350 +55299 63899 0.7570 +55299 64118 0.4070 +55299 64216 0.8980 +55299 64318 0.9970 +55299 64417 0.4380 +55299 64425 0.8510 +55299 64434 0.6150 +55299 64794 0.5130 +55299 64965 0.4910 +55299 64968 0.4430 +55299 65008 0.5020 +55299 65083 0.6680 +55299 65095 0.4220 +55299 79009 0.5450 +55299 79039 0.6220 +55299 79050 0.8500 +55299 79159 0.9750 +55299 79571 0.5360 +55299 79590 0.6790 +55299 79730 0.6410 +55299 79954 0.7750 +55299 79979 0.4540 +55299 80135 0.9970 +55299 80324 0.4880 +55299 81627 0.6630 +55299 83448 0.5590 +55299 83475 0.5210 +55299 83479 0.4700 +55299 83480 0.5870 +55299 83732 0.4470 +55299 83743 0.9290 +55299 84128 0.8970 +55299 84135 0.8140 +55299 84154 0.9930 +55299 84172 0.7530 +55299 84273 0.6430 +55299 84294 0.8100 +55299 84298 0.5400 +55299 84319 0.6090 +55299 84365 0.9990 +55299 84549 0.9970 +55299 84916 0.8920 +55299 84946 0.9080 +55299 84950 0.4170 +55299 88745 0.5970 +55299 90121 0.7710 +55299 90441 0.5100 +55299 91646 0.4740 +55299 91893 0.6100 +55299 92170 0.6330 +55299 92856 0.9480 +55299 116832 0.4900 +55299 116966 0.8360 +55299 117246 0.9700 +55299 134218 0.5050 +55299 142940 0.7000 +55299 146212 0.9170 +55299 153443 0.6420 +55299 155368 0.4040 +55299 161424 0.6810 +55299 165545 0.5880 +55299 171568 0.4010 +55299 200916 0.8060 +55299 221078 0.9680 +55299 221830 0.8510 +55299 254268 0.7330 +55299 285605 0.4480 +55299 285855 0.8910 +55299 317781 0.4750 +55299 344758 0.4630 +55299 345630 0.7580 +55299 387129 0.8440 +55299 387338 0.7610 +55299 645051 0.4630 +55299 645073 0.4630 +55299 692312 0.7470 +55299 729396 0.4630 +55299 729422 0.4630 +55299 729428 0.4630 +55299 729431 0.4630 +55299 729442 0.4630 +55299 729447 0.4630 +55299 100008586 0.4630 +55299 100132399 0.4630 +55299 100505478 0.7850 +55299 100526842 0.7800 +55299 102724473 0.4630 +55300 55361 0.9080 +55300 55613 0.6810 +55300 56623 0.7000 +55300 64419 0.7140 +55300 79837 0.4870 +55300 84812 0.7010 +55300 89869 0.6640 +55300 113026 0.6990 +55300 138429 0.9210 +55300 200576 0.9390 +55300 348938 0.4160 +55301 55347 0.4230 +55301 55746 0.5020 +55301 55856 0.4780 +55301 55902 0.4700 +55301 57122 0.4770 +55301 57129 0.4680 +55301 63875 0.4680 +55301 65985 0.4430 +55301 79575 0.4340 +55301 79611 0.4450 +55301 79728 0.6520 +55301 84263 0.8040 +55301 84532 0.4430 +55301 84545 0.4680 +55301 116285 0.4430 +55301 123876 0.4430 +55301 132949 0.7440 +55301 219927 0.4680 +55301 253190 0.4410 +55301 340654 0.4600 +55301 341392 0.4430 +55301 348158 0.4430 +55301 389434 0.4660 +55303 55340 0.8980 +55303 58475 0.4260 +55303 79626 0.4010 +55303 80342 0.4680 +55303 128346 0.4260 +55303 155038 0.9110 +55303 168537 0.9290 +55303 170575 0.8180 +55303 196883 0.4690 +55303 257106 0.5400 +55303 285971 0.4120 +55303 474344 0.9070 +55303 100527949 0.5250 +55304 55331 0.6140 +55304 55512 0.5330 +55304 55627 0.5060 +55304 56624 0.7190 +55304 56848 0.7620 +55304 57591 0.4310 +55304 57678 0.4290 +55304 57704 0.4880 +55304 63826 0.8340 +55304 64781 0.7920 +55304 79152 0.5080 +55304 79603 0.8430 +55304 81537 0.6290 +55304 83723 0.8470 +55304 84725 0.4510 +55304 91012 0.7180 +55304 94101 0.9530 +55304 94103 0.9910 +55304 113675 0.8400 +55304 117246 0.4690 +55304 123099 0.7450 +55304 124976 0.4170 +55304 125981 0.7150 +55304 130367 0.5260 +55304 142891 0.4830 +55304 165679 0.9980 +55304 166929 0.5730 +55304 171546 0.9980 +55304 204219 0.6740 +55304 253782 0.7680 +55304 259230 0.6340 +55304 339221 0.5400 +55304 340485 0.6980 +55304 388931 0.4790 +55304 401647 0.5860 +55308 55421 0.4810 +55308 55666 0.5400 +55308 55798 0.4800 +55308 56919 0.5890 +55308 57062 0.4090 +55308 57409 0.9320 +55308 57696 0.4970 +55308 64145 0.4560 +55308 79707 0.4410 +55308 79813 0.4860 +55308 79882 0.5050 +55308 84289 0.6300 +55308 84516 0.4360 +55308 84859 0.4510 +55308 84881 0.4520 +55308 89781 0.4590 +55308 90957 0.5380 +55308 114548 0.8250 +55308 170506 0.4300 +55308 317781 0.4080 +55308 353500 0.4010 +55308 401993 0.4390 +55311 55663 0.8040 +55311 64581 0.5980 +55311 80317 0.7480 +55311 84307 0.7220 +55311 114821 0.7760 +55311 163033 0.5320 +55311 387032 0.7440 +55311 100101467 0.7890 +55312 55687 0.6250 +55312 57175 0.4300 +55312 57570 0.4450 +55312 60490 0.4360 +55312 65220 0.4570 +55312 79581 0.4650 +55312 79783 0.8020 +55312 79877 0.4860 +55312 79947 0.4010 +55312 80308 0.9980 +55312 80347 0.4990 +55312 81034 0.6280 +55312 84940 0.4300 +55312 90121 0.4690 +55312 92106 0.4820 +55312 112812 0.8030 +55312 113278 0.4930 +55312 116150 0.4140 +55312 124056 0.7020 +55312 138428 0.5030 +55312 142940 0.5200 +55312 162417 0.4600 +55312 389434 0.8860 +55312 606495 0.4820 +55313 65220 0.6900 +55313 83594 0.7340 +55313 83989 0.4860 +55313 84229 0.4140 +55313 341359 0.4460 +55314 55343 0.4770 +55314 56063 0.5070 +55314 80063 0.4330 +55314 84328 0.5570 +55314 112970 0.5370 +55314 266743 0.4180 +55315 57864 0.4240 +55315 64078 0.7600 +55315 64747 0.4040 +55315 84179 0.4290 +55315 84804 0.4650 +55315 85413 0.4680 +55315 113235 0.4730 +55315 340024 0.4320 +55315 388662 0.4620 +55316 55324 0.5690 +55316 55505 0.5590 +55316 55591 0.6420 +55316 55651 0.6810 +55316 55703 0.8210 +55316 55781 0.4250 +55316 55871 0.4550 +55316 56479 0.5010 +55316 56648 0.6650 +55316 56893 0.4890 +55316 56945 0.4490 +55316 56965 0.6180 +55316 57129 0.7930 +55316 57136 0.4570 +55316 60386 0.4040 +55316 60488 0.8460 +55316 60558 0.8790 +55316 60678 0.5270 +55316 63875 0.9700 +55316 64146 0.7610 +55316 64216 0.4770 +55316 64374 0.7760 +55316 64432 0.6730 +55316 64951 0.5140 +55316 64960 0.8280 +55316 64963 0.8350 +55316 64965 0.9580 +55316 64968 0.9680 +55316 64969 0.8910 +55316 64975 0.8230 +55316 64976 0.8110 +55316 64978 0.5730 +55316 64979 0.9710 +55316 64981 0.8170 +55316 64983 0.9550 +55316 65003 0.7770 +55316 65005 0.9650 +55316 65008 0.8460 +55316 65080 0.4940 +55316 65121 0.5800 +55316 65122 0.5800 +55316 65993 0.4710 +55316 79590 0.8420 +55316 79631 0.8090 +55316 79668 0.6040 +55316 79896 0.4360 +55316 80146 0.5150 +55316 80222 0.5400 +55316 80235 0.4860 +55316 80270 0.5110 +55316 84172 0.8250 +55316 84340 0.5750 +55316 84545 0.8330 +55316 84993 0.4540 +55316 85377 0.4700 +55316 85476 0.8190 +55316 87178 0.4530 +55316 90313 0.5410 +55316 90624 0.4070 +55316 91543 0.4440 +55316 91574 0.4940 +55316 92196 0.6180 +55316 92399 0.8590 +55316 93107 0.5010 +55316 93517 0.5110 +55316 93550 0.5930 +55316 114781 0.4020 +55316 114987 0.7920 +55316 116541 0.5240 +55316 116832 0.9370 +55316 116843 0.4140 +55316 118487 0.5100 +55316 122481 0.4210 +55316 123283 0.5290 +55316 124454 0.7150 +55316 124995 0.5830 +55316 126402 0.8580 +55316 140032 0.8420 +55316 140801 0.9010 +55316 143244 0.6650 +55316 143630 0.4540 +55316 149478 0.4020 +55316 150472 0.4550 +55316 151354 0.4060 +55316 153443 0.4730 +55316 157310 0.5200 +55316 158067 0.4210 +55316 164153 0.5650 +55316 169522 0.5010 +55316 170850 0.5010 +55316 200916 0.9090 +55316 203427 0.4040 +55316 219927 0.9630 +55316 220869 0.4550 +55316 221264 0.4210 +55316 254268 0.8350 +55316 255308 0.5890 +55316 283518 0.5010 +55316 285855 0.8510 +55316 343068 0.5800 +55316 343070 0.5800 +55316 345051 0.4500 +55316 347487 0.9070 +55316 348793 0.4660 +55316 374659 0.8090 +55316 387129 0.8510 +55316 390999 0.5800 +55316 391002 0.5800 +55316 400735 0.5800 +55316 400736 0.5800 +55316 403273 0.4180 +55316 440560 0.5800 +55316 440561 0.5800 +55316 440567 0.5340 +55316 441873 0.5800 +55316 445571 0.4550 +55316 641776 0.6890 +55316 643909 0.6890 +55316 644019 0.4550 +55316 645051 0.6440 +55316 645073 0.6440 +55316 645359 0.5800 +55316 653619 0.5800 +55316 654364 0.4520 +55316 728524 0.6890 +55316 728689 0.6260 +55316 729396 0.6440 +55316 729422 0.6440 +55316 729428 0.6440 +55316 729431 0.6440 +55316 729442 0.6440 +55316 729447 0.6440 +55316 729528 0.5800 +55316 100008586 0.6440 +55316 100132399 0.6440 +55316 100287482 0.7690 +55316 100505478 0.8050 +55316 100526842 0.9150 +55316 100529097 0.8100 +55316 100529239 0.9070 +55316 100996746 0.6890 +55316 101929983 0.5800 +55316 102724473 0.6440 +55316 105180390 0.6890 +55316 105180391 0.6890 +55316 114483834 0.5170 +55317 55745 0.9990 +55317 57731 0.6480 +55317 79842 0.5120 +55317 80208 0.9610 +55317 84251 0.7320 +55317 84364 0.4700 +55317 91056 0.9990 +55317 92104 0.4480 +55317 122616 0.5400 +55317 130340 0.5660 +55317 195828 0.4600 +55317 442197 0.4090 +55317 503542 0.5070 +55319 55341 0.7040 +55319 55646 0.7270 +55319 55813 0.5410 +55319 57050 0.7180 +55319 64216 0.6140 +55319 64318 0.6510 +55319 79050 0.6180 +55319 79159 0.5460 +55319 79707 0.4290 +55319 79954 0.6390 +55319 80135 0.4230 +55319 83480 0.5970 +55319 83743 0.5220 +55319 84128 0.4050 +55319 84154 0.8370 +55319 84294 0.6260 +55319 84298 0.8220 +55319 84310 0.6350 +55319 84319 0.4630 +55319 84365 0.7690 +55319 84457 0.5850 +55319 84549 0.7670 +55319 84916 0.5570 +55319 84946 0.5770 +55319 90121 0.6850 +55319 92856 0.8170 +55319 116154 0.5280 +55319 117246 0.5200 +55319 153443 0.4320 +55319 201931 0.5420 +55319 221078 0.5360 +55319 221830 0.6240 +55319 388722 0.4790 +55320 55355 0.9410 +55320 55839 0.8440 +55320 56992 0.4810 +55320 57082 0.7490 +55320 64105 0.7410 +55320 64151 0.7520 +55320 64946 0.8090 +55320 79019 0.6330 +55320 79075 0.5850 +55320 79172 0.7170 +55320 79682 0.6900 +55320 79921 0.4500 +55320 79980 0.4250 +55320 80152 0.7930 +55320 81930 0.7630 +55320 83540 0.7080 +55320 84445 0.4200 +55320 89887 0.4820 +55320 91687 0.7110 +55320 113130 0.6190 +55320 157313 0.7170 +55320 157570 0.4060 +55320 201254 0.6600 +55320 220134 0.4200 +55320 221150 0.6390 +55320 259266 0.4990 +55320 378708 0.7960 +55320 387103 0.7280 +55320 401541 0.6840 +55320 440093 0.4110 +55320 440686 0.4110 +55320 653604 0.4110 +55321 79785 0.4100 +55321 143941 0.4320 +55322 55676 0.5150 +55322 55776 0.5940 +55322 55916 0.4340 +55322 59349 0.5350 +55322 64417 0.4300 +55322 79072 0.4990 +55322 80183 0.4180 +55322 80742 0.4520 +55322 84337 0.5990 +55322 134266 0.4500 +55322 140803 0.4550 +55322 285636 0.5770 +55322 494188 0.4760 +55323 80213 0.5140 +55323 83538 0.4340 +55323 84693 0.4130 +55323 113251 0.7250 +55323 126868 0.4940 +55323 127018 0.4040 +55323 157848 0.4440 +55323 169026 0.4230 +55323 340146 0.4330 +55323 647309 0.4350 +55324 55703 0.4550 +55324 56648 0.4360 +55324 63875 0.7690 +55324 63931 0.5200 +55324 64137 0.5890 +55324 64240 0.4770 +55324 64241 0.4790 +55324 64374 0.5070 +55324 64960 0.5610 +55324 64963 0.5180 +55324 64965 0.7710 +55324 64968 0.7580 +55324 64969 0.5680 +55324 64979 0.7700 +55324 64983 0.7780 +55324 65005 0.4980 +55324 65008 0.5340 +55324 65083 0.4090 +55324 79590 0.5380 +55324 80347 0.4770 +55324 83743 0.4030 +55324 84916 0.4580 +55324 85320 0.4730 +55324 89845 0.4740 +55324 93973 0.6230 +55324 94160 0.4640 +55324 114803 0.4520 +55324 114987 0.4710 +55324 126402 0.5600 +55324 131408 0.4630 +55324 136332 0.4580 +55324 140801 0.4960 +55324 143244 0.4360 +55324 154664 0.4320 +55324 219927 0.7940 +55324 285855 0.5170 +55324 347487 0.4970 +55324 387129 0.5130 +55324 440275 0.5390 +55324 728689 0.4110 +55324 100287482 0.4690 +55324 100505478 0.4940 +55324 100526842 0.5320 +55324 114483834 0.5240 +55325 57117 0.4080 +55325 65992 0.9140 +55325 79080 0.4740 +55325 79876 0.9100 +55325 80279 0.8150 +55325 441054 0.4770 +55325 100507203 0.4180 +55326 55750 0.9110 +55326 56894 0.9290 +55326 56895 0.9250 +55326 57678 0.8790 +55326 64900 0.7650 +55326 79888 0.4360 +55326 83741 0.4250 +55326 84513 0.9220 +55326 84649 0.4110 +55326 84803 0.8800 +55326 85364 0.4380 +55326 122618 0.6500 +55326 129642 0.9500 +55326 132001 0.4720 +55326 132851 0.4470 +55326 132949 0.4480 +55326 137964 0.8780 +55326 139189 0.6740 +55326 150763 0.9040 +55326 154141 0.9280 +55326 160851 0.7130 +55326 196051 0.9210 +55326 253558 0.9140 +55326 254531 0.6300 +55327 55366 0.5670 +55327 56288 0.5040 +55327 57105 0.5990 +55327 57574 0.4890 +55327 57576 0.7150 +55327 64130 0.9130 +55327 64398 0.9560 +55327 79085 0.4960 +55327 84448 0.4810 +55327 91057 0.6260 +55327 92359 0.7970 +55327 92979 0.4270 +55327 94134 0.4810 +55327 131890 0.5490 +55327 132789 0.4280 +55327 143098 0.9590 +55327 149986 0.4330 +55327 154796 0.7420 +55327 221749 0.7310 +55327 259197 0.6470 +55327 260425 0.4460 +55327 441061 0.8470 +55328 83592 0.4920 +55328 83889 0.4860 +55328 84904 0.4320 +55328 85413 0.4090 +55328 129530 0.4330 +55328 142910 0.4730 +55328 162387 0.5230 +55328 169792 0.4400 +55328 196743 0.4480 +55329 55741 0.4870 +55329 56886 0.5020 +55329 64518 0.8440 +55329 64776 0.8030 +55329 64800 0.5390 +55329 79007 0.4190 +55329 79645 0.5420 +55329 79925 0.4230 +55329 80258 0.8630 +55329 80267 0.4320 +55329 83538 0.5820 +55329 83659 0.8660 +55329 83853 0.4200 +55329 84223 0.4790 +55329 89765 0.4870 +55329 93190 0.8210 +55329 93233 0.8160 +55329 114327 0.8610 +55329 114791 0.4630 +55329 115948 0.6540 +55329 127003 0.8330 +55329 129881 0.8380 +55329 134121 0.8050 +55329 135138 0.8490 +55329 138162 0.8740 +55329 138255 0.8250 +55329 145788 0.8380 +55329 146845 0.8240 +55329 150483 0.8310 +55329 151651 0.8570 +55329 160762 0.7400 +55329 161502 0.8730 +55329 219670 0.8310 +55329 220136 0.9020 +55329 254956 0.4480 +55329 257177 0.8250 +55329 339778 0.8000 +55329 388701 0.8180 +55329 389799 0.8000 +55329 440585 0.8000 +55329 730112 0.8550 +55329 100128569 0.5870 +55330 55653 0.5710 +55330 55845 0.4500 +55330 63915 0.9930 +55330 79803 0.8920 +55330 81567 0.8000 +55330 83850 0.4630 +55330 84062 0.9900 +55330 84343 0.8150 +55330 89781 0.7760 +55330 114971 0.4200 +55330 119032 0.5330 +55330 130340 0.4990 +55330 282809 0.6130 +55330 282991 0.9890 +55330 286451 0.4990 +55330 388552 0.9890 +55331 55627 0.5440 +55331 56624 0.9810 +55331 56848 0.9630 +55331 64781 0.6200 +55331 79603 0.9550 +55331 81537 0.9480 +55331 81544 0.4190 +55331 91012 0.9550 +55331 123099 0.9440 +55331 125981 0.5270 +55331 130367 0.9450 +55331 166929 0.5360 +55331 204219 0.9570 +55331 220032 0.4070 +55331 253782 0.9630 +55331 259230 0.5440 +55331 114515518 0.4680 +55332 55626 0.5100 +55332 55640 0.4050 +55332 57103 0.5260 +55332 60673 0.4090 +55332 64422 0.4930 +55332 64782 0.4360 +55332 81631 0.5080 +55332 83667 0.5140 +55332 83734 0.4450 +55332 84557 0.4650 +55332 84938 0.4600 +55332 84971 0.4330 +55332 89849 0.4540 +55332 115201 0.4420 +55332 157753 0.4090 +55332 285973 0.4040 +55333 55670 0.7020 +55333 56893 0.4740 +55333 56947 0.4080 +55333 57404 0.4360 +55333 57828 0.4480 +55333 59283 0.4050 +55333 64149 0.4820 +55333 79269 0.4710 +55333 117155 0.4510 +55333 158798 0.5980 +55333 257062 0.4440 +55333 388364 0.6230 +55333 100529257 0.8010 +55334 55532 0.6670 +55334 55630 0.7230 +55334 55676 0.8140 +55334 56061 0.4480 +55334 57181 0.8150 +55334 64116 0.7590 +55334 64924 0.8270 +55334 91252 0.8450 +55334 148867 0.8570 +55334 154743 0.4520 +55334 165140 0.6210 +55334 169026 0.5810 +55334 201266 0.8640 +55334 221074 0.5510 +55334 222545 0.6230 +55334 283375 0.7740 +55334 400224 0.7230 +55335 57864 0.4590 +55335 64420 0.4930 +55335 64779 0.5900 +55335 80017 0.4360 +55335 84135 0.4030 +55335 121599 0.8400 +55336 55832 0.5620 +55336 84961 0.5020 +55336 123879 0.4990 +55336 146330 0.4480 +55336 283807 0.5500 +55336 653319 0.4180 +55337 55601 0.4210 +55337 56829 0.4370 +55337 64108 0.4410 +55337 64761 0.5220 +55337 79132 0.4970 +55337 85441 0.5380 +55337 91543 0.5310 +55337 115361 0.4080 +55337 140691 0.4520 +55339 55596 0.5610 +55339 55660 0.5010 +55339 55677 0.5200 +55339 55706 0.4110 +55339 55746 0.4850 +55339 55749 0.4680 +55339 55854 0.4170 +55339 56903 0.9350 +55339 56916 0.4190 +55339 57122 0.4540 +55339 57223 0.4660 +55339 57466 0.5310 +55339 57599 0.6770 +55339 57664 0.4180 +55339 60313 0.6260 +55339 64682 0.4260 +55339 64895 0.9430 +55339 65123 0.5500 +55339 79023 0.4620 +55339 79577 0.4320 +55339 79828 0.4210 +55339 79869 0.9120 +55339 79902 0.4850 +55339 80335 0.9950 +55339 81608 0.9990 +55339 81929 0.4610 +55339 84967 0.5610 +55339 89941 0.4800 +55339 90381 0.4390 +55339 124245 0.4760 +55339 126789 0.5380 +55339 129401 0.4620 +55339 134353 0.5120 +55339 136157 0.8060 +55339 143506 0.8060 +55339 196120 0.8060 +55339 285193 0.4430 +55339 348995 0.6020 +55339 376940 0.4250 +55339 377007 0.4530 +55339 390031 0.8060 +55339 390033 0.8060 +55339 441584 0.8060 +55339 642843 0.9740 +55339 643988 0.5960 +55339 100101267 0.4270 +55340 79699 0.4870 +55340 155038 0.8250 +55340 168537 0.8300 +55340 170575 0.7100 +55340 285971 0.4710 +55340 474344 0.8290 +55340 493856 0.6420 +55340 100527949 0.8020 +55341 55505 0.4620 +55341 55651 0.5900 +55341 55695 0.5310 +55341 55703 0.4670 +55341 55718 0.5000 +55341 55720 0.9080 +55341 55759 0.8870 +55341 55760 0.4610 +55341 55781 0.8180 +55341 55794 0.4740 +55341 55813 0.5480 +55341 55854 0.4210 +55341 56000 0.4340 +55341 56001 0.4340 +55341 56342 0.5300 +55341 56902 0.5480 +55341 57050 0.8600 +55341 57062 0.5600 +55341 57129 0.5670 +55341 57418 0.6140 +55341 57696 0.6430 +55341 60487 0.5300 +55341 63875 0.5340 +55341 63899 0.4450 +55341 64118 0.6630 +55341 64318 0.8510 +55341 64425 0.5150 +55341 64434 0.4190 +55341 64794 0.6350 +55341 65083 0.7460 +55341 65095 0.4940 +55341 79009 0.4360 +55341 79039 0.5210 +55341 79050 0.7530 +55341 79137 0.5650 +55341 79159 0.7020 +55341 79572 0.4060 +55341 79590 0.5170 +55341 79631 0.6620 +55341 79728 0.4500 +55341 79730 0.4310 +55341 79922 0.4530 +55341 79954 0.8650 +55341 79979 0.4020 +55341 80135 0.8040 +55341 80724 0.5510 +55341 83448 0.5750 +55341 83480 0.4010 +55341 83732 0.7260 +55341 83743 0.7200 +55341 84128 0.8410 +55341 84129 0.8330 +55341 84135 0.6030 +55341 84154 0.9520 +55341 84172 0.6220 +55341 84294 0.6370 +55341 84365 0.8610 +55341 84545 0.5240 +55341 84549 0.9200 +55341 84705 0.5620 +55341 84916 0.7810 +55341 84946 0.8080 +55341 90121 0.7450 +55341 90441 0.9750 +55341 92170 0.6650 +55341 92399 0.6720 +55341 92856 0.8640 +55341 93109 0.5490 +55341 115416 0.7030 +55341 116832 0.5000 +55341 116966 0.5730 +55341 117246 0.9710 +55341 123169 0.7420 +55341 124454 0.6280 +55341 131583 0.5780 +55341 134218 0.6050 +55341 140801 0.8670 +55341 142940 0.4370 +55341 146212 0.5140 +55341 161424 0.7230 +55341 162427 0.5610 +55341 165545 0.4500 +55341 166378 0.4110 +55341 219927 0.5750 +55341 221078 0.7340 +55341 221830 0.5740 +55341 285855 0.5710 +55341 317781 0.4240 +55341 348995 0.4380 +55341 387129 0.5620 +55341 387338 0.4910 +55341 389114 0.4420 +55341 548645 0.4280 +55341 692312 0.4690 +55341 728343 0.4340 +55341 728945 0.4890 +55341 729085 0.4130 +55341 730262 0.4390 +55341 100505478 0.5600 +55341 100526842 0.4410 +55341 114483834 0.5160 +55342 57541 0.4540 +55342 57578 0.4260 +55342 64965 0.5330 +55342 80119 0.6750 +55342 84271 0.7040 +55343 55508 0.5270 +55343 56052 0.4810 +55343 56913 0.4090 +55343 57709 0.4070 +55343 79087 0.6300 +55343 79939 0.6900 +55343 80723 0.4580 +55343 84912 0.6490 +55343 85365 0.5800 +55343 93183 0.4320 +55343 113829 0.6100 +55343 148641 0.4410 +55343 152519 0.4240 +55343 159371 0.5200 +55343 170384 0.4250 +55343 197258 0.6250 +55343 222553 0.4760 +55343 340146 0.6150 +55343 347734 0.5900 +55344 207063 0.7210 +55344 286530 0.4510 +55344 342892 0.4780 +55344 728661 0.4020 +55345 57697 0.5460 +55345 65109 0.5620 +55345 65110 0.5570 +55345 79915 0.7800 +55345 80071 0.4020 +55345 84269 0.4170 +55345 167227 0.5180 +55345 285367 0.4310 +55345 347744 0.5350 +55345 387856 0.4410 +55345 653140 0.4310 +55346 57003 0.4720 +55346 79056 0.5850 +55346 91057 0.4050 +55346 91408 0.4020 +55346 91614 0.7390 +55346 91875 0.7540 +55346 120526 0.5150 +55346 120534 0.4890 +55346 142891 0.4060 +55346 201895 0.4180 +55346 203068 0.5990 +55346 347733 0.6800 +55346 493860 0.6440 +55346 100131378 0.5070 +55346 100820829 0.4360 +55347 56888 0.6260 +55347 57406 0.5670 +55347 57609 0.4190 +55347 58489 0.4890 +55347 58499 0.5120 +55347 59342 0.4260 +55347 63874 0.5220 +55347 79575 0.4810 +55347 79728 0.5170 +55347 81926 0.6970 +55347 83451 0.6070 +55347 84696 0.5510 +55347 84836 0.5420 +55347 84928 0.4360 +55347 84945 0.6370 +55347 114294 0.4070 +55347 116236 0.4840 +55347 124641 0.4440 +55347 127018 0.4210 +55347 132949 0.4670 +55347 140701 0.5530 +55347 145447 0.5680 +55347 171586 0.5790 +55347 221937 0.4100 +55349 55540 0.8530 +55349 56994 0.4940 +55349 57017 0.4040 +55349 58472 0.5280 +55349 58510 0.4510 +55349 64080 0.4840 +55349 64577 0.4010 +55349 64600 0.6000 +55349 79989 0.7930 +55349 81490 0.8060 +55349 81579 0.6030 +55349 84647 0.6050 +55349 85465 0.8430 +55349 92104 0.5710 +55349 93973 0.4970 +55349 112812 0.6350 +55349 122618 0.8050 +55349 123745 0.6030 +55349 129642 0.8100 +55349 150737 0.5710 +55349 151056 0.6370 +55349 154141 0.8880 +55349 254531 0.8020 +55349 255189 0.6060 +55349 283748 0.6030 +55349 391013 0.6000 +55349 414328 0.6220 +55349 100137049 0.6030 +55351 55363 0.4910 +55351 55800 0.4930 +55351 79109 0.4020 +55351 84830 0.4970 +55351 84894 0.5460 +55351 84955 0.6200 +55351 84960 0.5180 +55351 132884 0.7620 +55351 134391 0.4180 +55351 283953 0.5220 +55351 339145 0.4700 +55351 347853 0.5020 +55351 348487 0.4350 +55351 392255 0.4610 +55351 404037 0.4580 +55351 104909134 0.4240 +55352 55651 0.4180 +55352 55803 0.6370 +55352 55813 0.7970 +55352 57172 0.4170 +55352 57492 0.4990 +55352 57657 0.4190 +55352 79084 0.9250 +55352 79736 0.6350 +55352 79915 0.6670 +55352 79929 0.4890 +55352 83732 0.8540 +55352 84282 0.5360 +55352 84440 0.6730 +55352 85455 0.4550 +55352 94104 0.4600 +55352 94239 0.4010 +55352 114659 0.6230 +55352 118881 0.4670 +55352 147798 0.4420 +55352 196528 0.4990 +55353 55770 0.6510 +55353 56265 0.5180 +55353 57523 0.5240 +55353 58504 0.4460 +55353 64218 0.4070 +55353 79583 0.4400 +55353 91147 0.4290 +55353 284422 0.5860 +55353 400757 0.4630 +55355 55388 0.6310 +55355 55635 0.8320 +55355 55723 0.6730 +55355 55732 0.4690 +55355 55789 0.5260 +55355 55839 0.8860 +55355 56992 0.8680 +55355 57082 0.8140 +55355 57405 0.6410 +55355 64105 0.8640 +55355 64118 0.4250 +55355 64151 0.8820 +55355 64946 0.8860 +55355 79019 0.8270 +55355 79172 0.7550 +55355 79682 0.8010 +55355 79733 0.7710 +55355 79801 0.5060 +55355 80152 0.8510 +55355 81610 0.5720 +55355 81620 0.7640 +55355 81624 0.5940 +55355 81930 0.7330 +55355 83461 0.8370 +55355 83540 0.8900 +55355 83903 0.4030 +55355 84057 0.4900 +55355 84722 0.4540 +55355 90381 0.5160 +55355 91687 0.7170 +55355 113130 0.8610 +55355 121504 0.9020 +55355 126961 0.4110 +55355 128239 0.7090 +55355 144455 0.4790 +55355 146909 0.8640 +55355 147841 0.5690 +55355 150468 0.9130 +55355 151648 0.7610 +55355 157313 0.7500 +55355 157570 0.4580 +55355 166979 0.4990 +55355 201254 0.6520 +55355 202333 0.4160 +55355 220134 0.7210 +55355 221150 0.6100 +55355 259266 0.9310 +55355 339766 0.4310 +55355 378708 0.8110 +55355 387103 0.8300 +55355 401541 0.6810 +55355 440093 0.6040 +55355 440686 0.6020 +55355 554313 0.9020 +55355 653604 0.6030 +55356 55867 0.4480 +55356 56606 0.4800 +55356 63027 0.4980 +55356 80255 0.4760 +55356 84068 0.4030 +55356 126868 0.4940 +55356 284723 0.4870 +55356 387601 0.5020 +55356 387775 0.5000 +55357 56675 0.4130 +55357 64786 0.6950 +55357 79705 0.5540 +55357 83452 0.4060 +55357 83547 0.4140 +55357 84315 0.4430 +55357 128637 0.5000 +55357 161514 0.4650 +55357 221960 0.4530 +55359 64398 0.6980 +55359 197370 0.4300 +55361 55613 0.7320 +55361 56623 0.7290 +55361 56903 0.5480 +55361 57217 0.4200 +55361 64419 0.6840 +55361 64746 0.4500 +55361 64852 0.5940 +55361 64895 0.6320 +55361 79837 0.4230 +55361 84168 0.5160 +55361 84812 0.6670 +55361 89780 0.6220 +55361 89869 0.6640 +55361 113026 0.6670 +55361 118429 0.5130 +55361 138429 0.9210 +55361 151195 0.4520 +55361 200576 0.9430 +55361 338917 0.4240 +55362 56063 0.4400 +55362 83446 0.4290 +55362 83548 0.4980 +55362 83862 0.4180 +55362 285175 0.4320 +55362 286046 0.4770 +55363 55437 0.4200 +55363 55800 0.4260 +55363 84830 0.5050 +55363 132884 0.4420 +55363 148534 0.4570 +55363 203074 0.4180 +55363 253012 0.4850 +55363 283471 0.4330 +55363 347853 0.4440 +55363 392255 0.4660 +55363 100287404 0.4320 +55364 56934 0.4620 +55364 79598 0.5090 +55364 114112 0.5450 +55364 129607 0.8090 +55364 200895 0.7950 +55364 284439 0.5910 +55364 387103 0.5910 +55364 440275 0.5840 +55365 56265 0.4380 +55365 64231 0.5870 +55365 64232 0.5970 +55365 78997 0.4180 +55365 83604 0.4120 +55365 83661 0.4830 +55365 169693 0.4120 +55365 219995 0.5670 +55365 728588 0.6000 +55366 59350 0.4270 +55366 59352 0.9420 +55366 79797 0.4500 +55366 84133 0.9990 +55366 84870 0.9990 +55366 89780 0.5800 +55366 91057 0.6410 +55366 122769 0.6450 +55366 128239 0.4630 +55366 220416 0.4270 +55366 284654 0.9990 +55366 340419 0.9980 +55366 343637 0.9950 +55367 63970 0.4060 +55367 64065 0.4480 +55367 93145 0.4270 +55367 169044 0.4910 +55367 197335 0.5280 +55367 222643 0.4030 +55374 57679 0.4920 +55374 60686 0.4010 +55374 84220 0.4400 +55374 84457 0.6090 +55374 113230 0.5810 +55374 118472 0.7870 +55374 136332 0.4590 +55374 163049 0.4410 +55374 255762 0.5130 +55374 414918 0.4480 +55374 653489 0.4400 +55374 729540 0.4400 +55379 57650 0.4060 +55379 60487 0.4450 +55379 65084 0.4260 +55379 80059 0.4040 +55379 80271 0.4600 +55379 81502 0.4940 +55379 83937 0.4460 +55379 90355 0.4380 +55379 90850 0.4420 +55379 92140 0.4740 +55379 116064 0.4850 +55379 116844 0.4910 +55379 123355 0.4170 +55379 126364 0.4760 +55379 131578 0.4800 +55379 159989 0.4180 +55379 220416 0.4040 +55379 339291 0.4780 +55388 55635 0.7640 +55388 55723 0.7610 +55388 55732 0.4340 +55388 55789 0.7010 +55388 55839 0.7000 +55388 56655 0.6100 +55388 56992 0.8160 +55388 57082 0.5040 +55388 57405 0.6700 +55388 57650 0.4240 +55388 57697 0.5430 +55388 63922 0.6070 +55388 63967 0.9770 +55388 64105 0.5530 +55388 64151 0.8330 +55388 64785 0.9260 +55388 79000 0.6740 +55388 79019 0.6840 +55388 79075 0.6720 +55388 79682 0.4840 +55388 79733 0.7680 +55388 79801 0.7630 +55388 79892 0.8650 +55388 79915 0.7740 +55388 80119 0.6000 +55388 80174 0.5140 +55388 80198 0.5900 +55388 81610 0.4650 +55388 81620 0.9970 +55388 81624 0.5340 +55388 81930 0.5740 +55388 83461 0.6860 +55388 83540 0.5950 +55388 83879 0.5860 +55388 83903 0.6880 +55388 83990 0.5350 +55388 84057 0.7680 +55388 84083 0.5130 +55388 84126 0.6090 +55388 84250 0.6170 +55388 84296 0.9550 +55388 84464 0.5440 +55388 84515 0.9760 +55388 84619 0.4730 +55388 84930 0.4810 +55388 90381 0.9720 +55388 92797 0.4130 +55388 113130 0.7850 +55388 116028 0.4570 +55388 116211 0.7600 +55388 116447 0.5780 +55388 122769 0.4160 +55388 131377 0.4480 +55388 144455 0.4980 +55388 146909 0.4760 +55388 146956 0.6600 +55388 147841 0.4200 +55388 150468 0.5810 +55388 151648 0.5070 +55388 157313 0.6100 +55388 157570 0.8010 +55388 157777 0.8100 +55388 201973 0.4420 +55388 220042 0.4100 +55388 220134 0.7140 +55388 221150 0.7240 +55388 253714 0.4070 +55388 254394 0.9570 +55388 259266 0.7230 +55388 348654 0.4010 +55388 387103 0.4800 +55421 55596 0.7100 +55421 55660 0.7350 +55421 55677 0.4340 +55421 55749 0.4560 +55421 55795 0.5130 +55421 55884 0.5820 +55421 56252 0.4290 +55421 56257 0.4250 +55421 57187 0.9160 +55421 58485 0.4170 +55421 58517 0.5610 +55421 64210 0.6000 +55421 64434 0.5710 +55421 79228 0.8750 +55421 79753 0.7990 +55421 79759 0.5000 +55421 79813 0.5430 +55421 79882 0.7670 +55421 80145 0.7470 +55421 83640 0.9100 +55421 84248 0.8160 +55421 84271 0.6340 +55421 84289 0.4780 +55421 84321 0.7960 +55421 84324 0.7860 +55421 84859 0.4720 +55421 84950 0.4860 +55421 89781 0.4070 +55421 114823 0.6300 +55421 126526 0.6110 +55421 155435 0.6090 +55421 221092 0.6700 +55421 253314 0.7200 +55421 284695 0.4230 +55421 317649 0.7240 +55421 353267 0.5400 +55421 392517 0.5470 +55421 100996928 0.6000 +55422 56987 0.4080 +55422 57683 0.5040 +55422 59284 0.4040 +55422 65982 0.4370 +55422 78999 0.4330 +55422 166348 0.4150 +55422 503834 0.4750 +55422 100101490 0.4470 +55423 140885 0.9770 +55425 55900 0.4120 +55425 56905 0.4340 +55425 60314 0.4480 +55425 63929 0.4530 +55425 79442 0.5460 +55425 79753 0.5160 +55425 79780 0.5970 +55425 84859 0.4390 +55425 127428 0.5330 +55425 129685 0.4560 +55425 143570 0.4850 +55425 163087 0.4380 +55425 170959 0.4650 +55425 286205 0.4630 +55432 55593 0.6080 +55432 55611 0.6820 +55432 55666 0.9490 +55432 55968 0.9000 +55432 56957 0.5670 +55432 57506 0.4660 +55432 57593 0.5140 +55432 57646 0.4390 +55432 64641 0.5140 +55432 64854 0.4140 +55432 78990 0.6490 +55432 79029 0.6850 +55432 79139 0.5250 +55432 79663 0.4220 +55432 79714 0.4240 +55432 80124 0.6260 +55432 80233 0.8730 +55432 80700 0.9810 +55432 80818 0.7880 +55432 83737 0.7900 +55432 84447 0.5200 +55432 90268 0.5800 +55432 91544 0.8190 +55432 92552 0.5520 +55432 114803 0.4910 +55432 115560 0.7880 +55432 126119 0.6040 +55432 134111 0.4490 +55432 134510 0.4150 +55432 137886 0.8890 +55432 139562 0.7250 +55432 148266 0.7860 +55432 161725 0.4480 +55432 165324 0.8290 +55432 166378 0.6830 +55432 219333 0.5320 +55432 220213 0.6890 +55432 221302 0.8980 +55432 253738 0.5140 +55432 284390 0.7880 +55432 373509 0.4370 +55435 55773 0.4580 +55435 57213 0.4240 +55435 340527 0.4360 +55435 348110 0.5130 +55435 100526783 0.4850 +55437 57679 0.5640 +55437 64895 0.5850 +55437 66008 0.9290 +55437 79611 0.4180 +55437 80700 0.5900 +55437 81617 0.9940 +55437 83606 0.5400 +55437 84833 0.4180 +55437 84932 0.4690 +55437 92335 0.9110 +55437 116151 0.5810 +55437 124401 0.4390 +55437 150684 0.4230 +55437 401494 0.4270 +55450 55740 0.4370 +55450 57062 0.4080 +55450 79866 0.4090 +55450 114805 0.4220 +55450 128239 0.4120 +55450 140767 0.5410 +55450 163933 0.4770 +55450 192683 0.4350 +55450 222537 0.4010 +55454 55501 0.6930 +55454 55790 0.9440 +55454 55959 0.4060 +55454 56548 0.7020 +55454 63827 0.5000 +55454 64131 0.5490 +55454 64132 0.4830 +55454 64579 0.4240 +55454 64711 0.4780 +55454 79586 0.9590 +55454 80146 0.4290 +55454 92126 0.4950 +55454 92370 0.4030 +55454 113189 0.6300 +55454 126792 0.5160 +55454 163183 0.5950 +55454 166012 0.6860 +55454 337876 0.9240 +55454 374986 0.4460 +55466 56521 0.4400 +55466 57110 0.4480 +55466 57462 0.4360 +55466 63875 0.4020 +55466 64374 0.4970 +55466 79962 0.4460 +55466 80273 0.8090 +55466 81570 0.5860 +55466 84617 0.5460 +55466 94086 0.4280 +55466 96459 0.4910 +55466 116835 0.5950 +55466 118461 0.4480 +55466 120526 0.4800 +55466 134266 0.5340 +55466 259217 0.5570 +55466 339416 0.5550 +55466 374407 0.5790 +55466 388633 0.4480 +55471 55572 0.6390 +55471 55744 0.6500 +55471 55781 0.4420 +55471 55863 0.8200 +55471 55967 0.6720 +55471 60487 0.4790 +55471 63931 0.4210 +55471 64965 0.4480 +55471 79133 0.9200 +55471 80224 0.7900 +55471 84196 0.4830 +55471 91942 0.7900 +55471 124512 0.4460 +55471 126328 0.5310 +55471 137682 0.8410 +55471 254013 0.4280 +55471 284184 0.4030 +55471 343035 0.4390 +55471 374291 0.8130 +55471 388753 0.4200 +55471 399818 0.4160 +55471 751071 0.5080 +55486 55626 0.4470 +55486 55669 0.7870 +55486 56947 0.5660 +55486 56993 0.4740 +55486 57414 0.5030 +55486 63929 0.4260 +55486 64285 0.5550 +55486 65018 0.9490 +55486 79594 0.5190 +55486 79651 0.4780 +55486 81502 0.5710 +55486 84236 0.4990 +55486 84749 0.6210 +55486 89941 0.4180 +55486 90550 0.5020 +55486 91689 0.4140 +55486 92609 0.5280 +55486 115209 0.7890 +55486 125170 0.4760 +55486 139341 0.6980 +55486 162494 0.5170 +55486 192111 0.7780 +55486 196483 0.4250 +55486 200909 0.4120 +55486 221154 0.4710 +55486 100287932 0.6200 +55500 55553 0.5530 +55500 55729 0.5510 +55500 56261 0.9190 +55500 56994 0.4460 +55500 57521 0.5000 +55500 63035 0.4130 +55500 64850 0.9360 +55500 79109 0.6000 +55500 81037 0.6300 +55500 81490 0.4190 +55500 84295 0.4780 +55500 85465 0.8050 +55500 121441 0.4130 +55500 127845 0.4090 +55500 171023 0.5860 +55501 55790 0.6650 +55501 56548 0.8110 +55501 63827 0.5230 +55501 64131 0.4140 +55501 64132 0.4230 +55501 64579 0.4960 +55501 64711 0.4590 +55501 79586 0.5990 +55501 92126 0.4410 +55501 123688 0.4660 +55501 126792 0.4230 +55501 166012 0.9140 +55501 222537 0.4410 +55501 256329 0.4050 +55501 266722 0.4980 +55502 63973 0.4650 +55502 146664 0.4070 +55502 170825 0.5050 +55502 388585 0.6640 +55502 390992 0.5690 +55502 441478 0.4240 +55503 56302 0.7280 +55503 57192 0.5710 +55503 57620 0.4830 +55503 59341 0.5620 +55503 65010 0.4650 +55503 79054 0.7550 +55503 80228 0.4680 +55503 84876 0.5870 +55503 91860 0.5490 +55503 93129 0.5950 +55503 120227 0.4740 +55503 140803 0.7430 +55503 142680 0.4900 +55503 163688 0.5490 +55503 255231 0.5000 +55503 283652 0.4760 +55503 399697 0.4520 +55504 57142 0.7500 +55504 65078 0.9940 +55504 84894 0.9960 +55504 84957 0.7220 +55504 85407 0.6780 +55504 146760 0.4340 +55504 170712 0.5890 +55504 349667 0.7210 +55504 388585 0.4180 +55504 441478 0.4910 +55505 55646 0.7000 +55505 55651 0.9990 +55505 55703 0.4580 +55505 55759 0.5080 +55505 55781 0.4700 +55505 55967 0.5190 +55505 59286 0.5540 +55505 63931 0.4920 +55505 65095 0.4600 +55505 79650 0.6310 +55505 80119 0.5020 +55505 80169 0.8540 +55505 80324 0.6390 +55505 83448 0.5620 +55505 83480 0.5940 +55505 84128 0.4650 +55505 84154 0.7780 +55505 84172 0.4540 +55505 84277 0.4030 +55505 84294 0.4220 +55505 84916 0.4760 +55505 90121 0.4530 +55505 90231 0.4070 +55505 92345 0.9940 +55505 92856 0.4060 +55505 113000 0.4140 +55505 116832 0.6940 +55505 117246 0.5240 +55505 134353 0.7690 +55505 138716 0.5540 +55505 142940 0.9380 +55505 150962 0.6600 +55505 221830 0.4010 +55505 256646 0.7350 +55505 285367 0.4050 +55505 345630 0.8100 +55505 100128731 0.4420 +55506 55869 0.6940 +55506 79885 0.7240 +55506 83666 0.6420 +55506 83933 0.6910 +55506 84656 0.4170 +55506 85236 0.4310 +55506 128312 0.5080 +55506 140733 0.6760 +55506 158983 0.4860 +55506 165631 0.6730 +55506 200558 0.7150 +55506 255626 0.7150 +55506 286436 0.4380 +55506 340096 0.6140 +55506 391769 0.6120 +55506 440093 0.4520 +55506 440686 0.5180 +55506 440689 0.4090 +55506 653604 0.4270 +55506 114483833 0.4090 +55507 57823 0.6960 +55507 80321 0.7050 +55507 83416 0.8290 +55507 83896 0.4790 +55507 165829 0.4760 +55507 337880 0.4130 +55508 55670 0.4480 +55508 57122 0.7500 +55508 80723 0.4050 +55508 123207 0.7790 +55508 148641 0.4750 +55508 149345 0.4160 +55508 154214 0.4860 +55508 159371 0.5240 +55508 163087 0.4870 +55508 201931 0.4560 +55508 255252 0.4780 +55508 347734 0.4020 +55508 349075 0.4440 +55509 57705 0.4330 +55509 60468 0.7110 +55509 65258 0.8660 +55509 80380 0.4260 +55509 84247 0.5510 +55509 115004 0.4600 +55509 116071 0.9220 +55509 140685 0.7240 +55509 140885 0.6120 +55509 170482 0.4870 +55509 283420 0.7320 +55509 100133941 0.4550 +55509 100526664 0.5950 +55510 55511 0.8690 +55510 56001 0.4290 +55510 57136 0.4860 +55510 64318 0.4160 +55510 64693 0.4670 +55510 87178 0.4860 +55510 139135 0.5170 +55510 168400 0.5960 +55510 266740 0.5490 +55510 285782 0.4760 +55510 340168 0.4600 +55510 392517 0.4010 +55510 441161 0.5470 +55510 728343 0.4180 +55511 55656 0.5950 +55511 55726 0.5990 +55511 55756 0.6040 +55511 56001 0.5490 +55511 57117 0.6050 +55511 57508 0.6040 +55511 65123 0.6080 +55511 79034 0.5400 +55511 80789 0.6020 +55511 81556 0.6260 +55511 83844 0.4140 +55511 84519 0.5950 +55511 84696 0.4530 +55511 90737 0.7370 +55511 92105 0.6040 +55511 139135 0.5480 +55511 159091 0.5400 +55511 170062 0.4980 +55511 203522 0.5950 +55511 285782 0.5070 +55511 441519 0.5840 +55511 441521 0.6760 +55511 541465 0.5910 +55511 541466 0.6930 +55511 653220 0.4180 +55511 727837 0.4050 +55511 728343 0.5390 +55511 728911 0.5880 +55511 729447 0.5070 +55511 100008586 0.4690 +55511 101060211 0.5830 +55511 102723631 0.6320 +55511 102723680 0.6120 +55511 102723737 0.6180 +55511 115253422 0.5970 +55512 55627 0.9960 +55512 56624 0.8040 +55512 56848 0.4560 +55512 57704 0.9320 +55512 64781 0.9460 +55512 65084 0.4610 +55512 79603 0.9490 +55512 81537 0.9340 +55512 81552 0.4520 +55512 83723 0.4290 +55512 91012 0.9460 +55512 123099 0.9380 +55512 125981 0.7970 +55512 130367 0.9320 +55512 162466 0.4780 +55512 166929 0.9600 +55512 204219 0.9430 +55512 253782 0.9490 +55512 259230 0.9570 +55512 339221 0.9490 +55512 340485 0.7980 +55515 84811 0.4850 +55515 116519 0.4420 +55515 161003 0.4220 +55515 254102 0.5090 +55520 55756 0.6030 +55520 56915 0.4580 +55520 60528 0.9280 +55520 64858 0.4200 +55520 64968 0.4270 +55520 84705 0.4100 +55520 118460 0.4580 +55520 255374 0.5350 +55520 283358 0.5310 +55520 338707 0.5310 +55521 55700 0.5700 +55521 57509 0.4360 +55521 57630 0.4700 +55521 64946 0.8930 +55521 79649 0.4990 +55521 84722 0.4680 +55521 85438 0.4070 +55521 90933 0.5100 +55521 140686 0.5100 +55521 256714 0.4960 +55521 283431 0.4750 +55521 284697 0.4590 +55521 391714 0.4430 +55526 56922 0.5230 +55526 57449 0.4690 +55526 59345 0.4340 +55526 64423 0.4070 +55526 64902 0.4560 +55526 79628 0.5060 +55526 79814 0.4050 +55526 79944 0.4800 +55526 80724 0.4930 +55526 81846 0.4820 +55526 81889 0.4070 +55526 90678 0.4810 +55526 114112 0.6340 +55526 114771 0.5960 +55526 121512 0.4950 +55526 130752 0.4200 +55526 146862 0.5840 +55526 221823 0.4540 +55526 284716 0.4390 +55527 55832 0.5410 +55527 56929 0.9020 +55527 57506 0.5570 +55527 57643 0.5820 +55527 57688 0.5730 +55527 58510 0.4910 +55527 63891 0.4860 +55527 64344 0.5060 +55527 65249 0.5600 +55527 79066 0.5310 +55527 79699 0.9150 +55527 79939 0.5390 +55527 84259 0.5000 +55527 90933 0.5370 +55527 96459 0.4210 +55527 116138 0.9230 +55527 122769 0.4690 +55527 140739 0.5410 +55527 149951 0.5030 +55527 150684 0.9000 +55527 170622 0.4990 +55527 200205 0.6310 +55527 201514 0.4200 +55527 440561 0.9000 +55527 440590 0.6030 +55527 653619 0.9000 +55529 55613 0.9000 +55529 55644 0.6640 +55529 56623 0.9300 +55529 64419 0.9030 +55529 79837 0.9230 +55529 80279 0.4630 +55529 90809 0.9050 +55529 140467 0.4420 +55529 200576 0.9210 +55529 339665 0.4510 +55530 55800 0.5240 +55530 63910 0.4800 +55530 64645 0.4990 +55530 79031 0.6420 +55530 79157 0.6190 +55530 79847 0.5280 +55530 79935 0.4780 +55530 81622 0.4790 +55530 83985 0.5640 +55530 84804 0.6810 +55530 84975 0.6040 +55530 85439 0.4080 +55530 113655 0.4850 +55530 114794 0.4110 +55530 115827 0.4080 +55530 132204 0.5290 +55530 132954 0.4230 +55530 162387 0.4960 +55530 201305 0.5230 +55530 388931 0.4090 +55531 63916 0.4890 +55531 79767 0.4860 +55531 84173 0.7900 +55531 143888 0.5540 +55531 388325 0.5940 +55532 55584 0.4420 +55532 55630 0.5690 +55532 55676 0.7930 +55532 57181 0.6970 +55532 57818 0.5870 +55532 64116 0.7770 +55532 64924 0.5050 +55532 84684 0.7730 +55532 91252 0.6980 +55532 127018 0.4190 +55532 148266 0.4640 +55532 148867 0.4440 +55532 201266 0.6830 +55532 221074 0.6460 +55532 283375 0.7070 +55534 55654 0.5290 +55534 55851 0.5440 +55534 55869 0.5210 +55534 64783 0.5030 +55534 79718 0.5030 +55534 79885 0.5110 +55534 83933 0.5110 +55534 84441 0.9370 +55534 84759 0.4570 +55534 85417 0.4960 +55534 171558 0.6460 +55534 192669 0.4990 +55534 192670 0.5130 +55534 343930 0.5470 +55534 388585 0.7810 +55534 441478 0.5440 +55536 55677 0.5440 +55536 63895 0.4060 +55536 79915 0.5270 +55536 84250 0.6480 +55536 84717 0.5300 +55536 135458 0.6610 +55536 254528 0.4420 +55536 256130 0.4330 +55540 57697 0.5320 +55540 64806 0.9990 +55540 84818 0.9720 +55540 85480 0.8010 +55540 90865 0.9310 +55540 112744 0.9190 +55540 132014 0.9860 +55540 149233 0.6120 +55544 57060 0.4620 +55544 60677 0.5080 +55544 80004 0.4590 +55544 84419 0.4050 +55544 85437 0.5350 +55544 139804 0.5190 +55544 140886 0.4360 +55544 221662 0.6310 +55544 373863 0.4440 +55552 64116 0.4290 +55552 83607 0.4010 +55552 126295 0.5540 +55552 132200 0.5210 +55552 348751 0.4770 +55553 55827 0.4160 +55553 64105 0.6780 +55553 91687 0.5470 +55553 116448 0.4030 +55553 121340 0.6350 +55553 161882 0.6380 +55553 221833 0.4800 +55553 388585 0.5200 +55554 440387 0.4030 +55556 56159 0.4060 +55556 64714 0.4140 +55556 64863 0.4040 +55556 79090 0.4010 +55556 80210 0.4970 +55556 80896 0.5860 +55556 81035 0.5290 +55556 84343 0.4290 +55556 114882 0.4510 +55556 121601 0.4720 +55556 124460 0.5390 +55556 158405 0.4230 +55556 282969 0.4780 +55556 642597 0.5160 +55558 56896 0.5460 +55558 56920 0.8370 +55558 57553 0.4770 +55558 57556 0.9530 +55558 64218 0.6050 +55558 64780 0.8260 +55558 80031 0.7430 +55558 91584 0.7080 +55558 166336 0.4060 +55558 170482 0.4930 +55558 223117 0.8410 +55558 259232 0.4090 +55558 284217 0.5480 +55559 55722 0.5090 +55559 55755 0.5720 +55559 55835 0.5350 +55559 56180 0.4040 +55559 79441 0.9980 +55559 79866 0.5130 +55559 79959 0.4990 +55559 80184 0.5250 +55559 80321 0.4990 +55559 84131 0.5070 +55559 93323 0.9990 +55559 95681 0.4990 +55559 115106 0.9990 +55559 117177 0.4990 +55559 121441 0.6980 +55559 139728 0.4990 +55559 147808 0.4980 +55559 152185 0.4740 +55559 199857 0.4240 +55559 203068 0.5040 +55559 347240 0.4990 +55559 728642 0.5040 +55561 386674 0.4180 +55565 83449 0.4580 +55565 115708 0.4890 +55565 161176 0.4250 +55565 196528 0.4510 +55565 342371 0.6010 +55567 56171 0.9090 +55567 64446 0.8910 +55567 79819 0.8580 +55567 83450 0.4640 +55567 83544 0.8110 +55567 83657 0.5220 +55567 85478 0.5570 +55567 92749 0.5610 +55567 93233 0.8660 +55567 118491 0.9220 +55567 123872 0.4580 +55567 126820 0.8430 +55567 127602 0.6800 +55567 140735 0.4420 +55567 144132 0.5400 +55567 146754 0.9200 +55567 160762 0.4360 +55567 201625 0.7010 +55567 246176 0.5200 +55567 388389 0.4750 +55568 55808 0.9170 +55568 56667 0.4450 +55568 56913 0.7940 +55568 56923 0.4800 +55568 89866 0.4390 +55568 94025 0.4410 +55568 114792 0.5010 +55568 118430 0.4150 +55568 132789 0.4490 +55568 140453 0.4410 +55568 143662 0.4580 +55568 192134 0.9200 +55568 200958 0.4840 +55568 394263 0.4470 +55568 727897 0.4190 +55568 728819 0.6640 +55571 56157 0.6950 +55571 57472 0.9980 +55571 60313 0.6230 +55571 64793 0.4230 +55571 79596 0.7710 +55571 79893 0.9200 +55571 80755 0.4510 +55571 85456 0.9940 +55571 113246 0.4880 +55571 115795 0.4710 +55571 149041 0.8090 +55571 158787 0.7570 +55571 171568 0.5240 +55571 246175 0.9970 +55571 339345 0.8290 +55571 340719 0.5810 +55571 390748 0.4400 +55571 100885850 0.4520 +55572 55863 0.8170 +55572 55967 0.8370 +55572 56964 0.5400 +55572 57017 0.4660 +55572 57176 0.4190 +55572 57505 0.4430 +55572 79133 0.8790 +55572 79731 0.4500 +55572 80224 0.8590 +55572 84233 0.4140 +55572 84895 0.4810 +55572 90624 0.5660 +55572 90871 0.6130 +55572 91133 0.4460 +55572 91647 0.4430 +55572 91942 0.8690 +55572 124454 0.4090 +55572 124995 0.4250 +55572 126328 0.9120 +55572 137682 0.8690 +55572 284184 0.5560 +55572 285521 0.4400 +55572 374291 0.9450 +55572 388753 0.4100 +55572 493753 0.4560 +55572 100131801 0.4210 +55572 100532726 0.6070 +55573 55787 0.4970 +55573 66000 0.4530 +55573 113201 0.5060 +55576 55764 0.4310 +55576 84868 0.4790 +55576 91937 0.8350 +55576 123036 0.5730 +55576 124599 0.4090 +55576 134957 0.6070 +55576 165530 0.5210 +55576 170392 0.4340 +55576 286133 0.6960 +55576 339390 0.5120 +55577 55748 0.4560 +55577 56267 0.4260 +55577 64841 0.9800 +55577 79799 0.4030 +55577 83658 0.5700 +55577 84708 0.4180 +55577 91373 0.4830 +55577 132789 0.7760 +55577 162417 0.5780 +55578 55689 0.8740 +55578 56655 0.7420 +55578 56943 0.9940 +55578 56970 0.9950 +55578 57325 0.8820 +55578 79065 0.9650 +55578 79595 0.8130 +55578 83443 0.9760 +55578 91369 0.5900 +55578 93624 0.9910 +55578 112869 0.9990 +55578 117143 0.9990 +55578 127002 0.6890 +55578 158880 0.6990 +55578 221302 0.4080 +55578 222255 0.5800 +55578 343070 0.5060 +55578 374395 0.7880 +55578 387332 0.4970 +55578 389856 0.6960 +55578 653604 0.5410 +55582 55605 0.6560 +55582 55614 0.5840 +55582 55738 0.4990 +55582 55850 0.4990 +55582 56992 0.5980 +55582 57576 0.5820 +55582 60561 0.5140 +55582 63971 0.6150 +55582 64399 0.5050 +55582 64837 0.5620 +55582 80318 0.6430 +55582 81565 0.5700 +55582 81930 0.5890 +55582 84267 0.6280 +55582 84364 0.4990 +55582 84643 0.6260 +55582 84976 0.4630 +55582 85455 0.4240 +55582 89953 0.4030 +55582 90990 0.6830 +55582 124602 0.5980 +55582 126859 0.4850 +55582 146909 0.5740 +55582 147700 0.4680 +55582 221458 0.5920 +55582 285643 0.5440 +55582 374654 0.5870 +55582 375307 0.4080 +55582 730130 0.4510 +55584 55676 0.5650 +55584 55728 0.4070 +55584 57053 0.9340 +55584 57152 0.7500 +55584 89832 0.5800 +55584 132204 0.4010 +55584 134957 0.5450 +55584 148281 0.4080 +55584 347730 0.4040 +55584 432355 0.7190 +55584 643226 0.4720 +55584 645104 0.4660 +55585 55593 0.4760 +55585 63893 0.4670 +55585 64853 0.4360 +55585 65264 0.7540 +55585 79876 0.5370 +55585 92912 0.9210 +55585 114898 0.4390 +55585 118424 0.5210 +55585 134111 0.9030 +55585 140739 0.4070 +55585 148581 0.4190 +55586 57016 0.8200 +55586 79041 0.4330 +55586 79799 0.9010 +55586 79924 0.8100 +55586 83729 0.4590 +55586 114134 0.4670 +55586 120939 0.4410 +55586 134288 0.4520 +55586 200539 0.4190 +55586 390637 0.7160 +55586 574537 0.9010 +55588 60506 0.4120 +55588 79991 0.9940 +55588 80306 0.9990 +55588 81857 0.9930 +55588 83860 0.8030 +55588 84246 0.9980 +55588 84498 0.5200 +55588 84964 0.8920 +55588 85441 0.5040 +55588 90196 0.4350 +55588 90390 0.9990 +55588 92609 0.4050 +55588 112950 0.9990 +55588 116931 0.9400 +55588 121504 0.8130 +55588 126961 0.8000 +55588 129685 0.8140 +55588 133522 0.9000 +55588 151188 0.4840 +55588 221336 0.4180 +55588 256643 0.5400 +55588 283635 0.4410 +55588 333932 0.8000 +55588 400569 0.9990 +55588 404672 0.8260 +55588 554313 0.8000 +55588 653604 0.8080 +55591 55599 0.4340 +55591 55651 0.4680 +55591 55703 0.4590 +55591 55751 0.4410 +55591 55759 0.5150 +55591 55785 0.5250 +55591 56648 0.5490 +55591 63875 0.6250 +55591 63931 0.6450 +55591 64072 0.4240 +55591 64146 0.5560 +55591 64374 0.5950 +55591 64960 0.4790 +55591 64963 0.6460 +55591 64968 0.7220 +55591 64969 0.7190 +55591 64979 0.7310 +55591 64983 0.4230 +55591 65003 0.4250 +55591 65008 0.4770 +55591 65121 0.4090 +55591 65122 0.4090 +55591 65217 0.4170 +55591 79590 0.7310 +55591 79631 0.6130 +55591 79955 0.8890 +55591 80301 0.4240 +55591 84059 0.8990 +55591 84154 0.6130 +55591 84172 0.4660 +55591 84365 0.5510 +55591 85476 0.6310 +55591 92399 0.4300 +55591 92935 0.4230 +55591 94134 0.4320 +55591 116832 0.4180 +55591 122481 0.4430 +55591 124454 0.4340 +55591 126402 0.6550 +55591 134218 0.4570 +55591 140801 0.5940 +55591 142940 0.4050 +55591 143244 0.5480 +55591 158067 0.4430 +55591 158219 0.4710 +55591 200916 0.4580 +55591 219927 0.6880 +55591 221264 0.4480 +55591 285855 0.7430 +55591 343068 0.4090 +55591 343070 0.4090 +55591 347487 0.5600 +55591 387129 0.7240 +55591 390999 0.4090 +55591 391002 0.4090 +55591 400735 0.4090 +55591 400736 0.4090 +55591 440560 0.4090 +55591 440561 0.4090 +55591 441873 0.4090 +55591 641776 0.5100 +55591 643909 0.5100 +55591 645359 0.4090 +55591 653619 0.4090 +55591 728524 0.5100 +55591 729528 0.4090 +55591 100287482 0.5600 +55591 100505478 0.7240 +55591 100526842 0.7130 +55591 100996746 0.5100 +55591 101929983 0.4090 +55591 105180390 0.5100 +55591 105180391 0.5100 +55593 55611 0.7390 +55593 55770 0.5140 +55593 56850 0.4260 +55593 56957 0.6520 +55593 57506 0.6380 +55593 57559 0.5340 +55593 57602 0.4260 +55593 57646 0.4290 +55593 57663 0.4750 +55593 64135 0.6050 +55593 64343 0.5970 +55593 64397 0.4040 +55593 78990 0.6720 +55593 79810 0.4090 +55593 80124 0.5180 +55593 80149 0.4280 +55593 80342 0.5490 +55593 81030 0.5600 +55593 83786 0.4100 +55593 83844 0.4470 +55593 84101 0.4050 +55593 84132 0.4660 +55593 84196 0.4560 +55593 84282 0.6050 +55593 84640 0.4380 +55593 84669 0.4110 +55593 89122 0.4490 +55593 90231 0.4120 +55593 90268 0.6450 +55593 92552 0.4200 +55593 114803 0.5630 +55593 126119 0.5490 +55593 144132 0.4370 +55593 161725 0.7110 +55593 221302 0.8210 +55593 259282 0.4010 +55593 373509 0.4140 +55593 377630 0.5320 +55593 728373 0.5310 +55596 55656 0.4270 +55596 55844 0.6510 +55596 55930 0.5590 +55596 56915 0.8570 +55596 57120 0.6180 +55596 57696 0.4920 +55596 57819 0.4220 +55596 64062 0.5260 +55596 64282 0.9660 +55596 64895 0.4660 +55596 65117 0.5990 +55596 79066 0.4700 +55596 80212 0.4580 +55596 80349 0.4040 +55596 84186 0.9030 +55596 91746 0.4910 +55596 114825 0.5610 +55596 115752 0.5660 +55596 118460 0.6820 +55596 124245 0.7680 +55596 143187 0.4300 +55596 146705 0.4700 +55596 196441 0.8240 +55596 222545 0.4300 +55596 338657 0.4150 +55596 387119 0.4560 +55596 643382 0.4300 +55599 55696 0.4290 +55599 55702 0.4260 +55599 55954 0.9880 +55599 56949 0.6550 +55599 57156 0.4330 +55599 57461 0.4040 +55599 57590 0.4070 +55599 57819 0.4030 +55599 58517 0.5170 +55599 79446 0.5010 +55599 79631 0.4220 +55599 83443 0.9610 +55599 83938 0.4210 +55599 83989 0.4110 +55599 84316 0.5060 +55599 84844 0.9750 +55599 84967 0.5670 +55599 85437 0.9750 +55599 85476 0.4220 +55599 126259 0.5060 +55599 139804 0.6260 +55599 147650 0.5160 +55599 151613 0.5330 +55599 153770 0.5220 +55599 154007 0.9580 +55599 164045 0.4360 +55599 196441 0.6040 +55599 220074 0.4210 +55599 284992 0.4350 +55599 392517 0.5090 +55599 100534599 0.4040 +55599 102723407 0.4050 +55600 56729 0.7770 +55600 79602 0.4300 +55600 84666 0.8000 +55600 112939 0.4450 +55600 131920 0.5700 +55600 142683 0.8040 +55600 145264 0.8420 +55600 252995 0.4790 +55600 253012 0.4100 +55601 56829 0.5080 +55601 56919 0.6370 +55601 57050 0.4220 +55601 57062 0.4960 +55601 57506 0.4980 +55601 57674 0.4060 +55601 64108 0.8010 +55601 64135 0.9870 +55601 64761 0.8400 +55601 64969 0.4180 +55601 65083 0.4460 +55601 79009 0.4860 +55601 79050 0.4840 +55601 79132 0.9020 +55601 81030 0.4400 +55601 83666 0.8830 +55601 84128 0.4040 +55601 84154 0.4600 +55601 84166 0.4560 +55601 84916 0.4410 +55601 85363 0.4860 +55601 85364 0.4050 +55601 85441 0.6770 +55601 90957 0.5020 +55601 91543 0.9110 +55601 94240 0.7950 +55601 114987 0.4440 +55601 115004 0.4790 +55601 115361 0.5180 +55601 115362 0.4510 +55601 129607 0.8890 +55601 148022 0.4210 +55601 151636 0.5620 +55601 167838 0.4200 +55601 170506 0.7320 +55601 196441 0.5720 +55601 219285 0.8720 +55601 439996 0.4060 +55601 100529239 0.4270 +55602 55684 0.6290 +55602 56977 0.4630 +55602 60684 0.4590 +55602 80014 0.4930 +55602 284339 0.4990 +55603 56647 0.8080 +55603 60681 0.4760 +55603 64175 0.4510 +55603 64778 0.5690 +55603 79879 0.4050 +55603 80256 0.5080 +55603 81691 0.4040 +55603 90993 0.4340 +55603 153339 0.4290 +55603 221303 0.4530 +55603 286256 0.4230 +55603 387733 0.5110 +55604 55867 0.6570 +55604 56606 0.6210 +55604 56940 0.5400 +55604 57144 0.5780 +55604 64236 0.5400 +55604 83700 0.5400 +55604 83715 0.5400 +55604 85477 0.8160 +55604 92241 0.5230 +55604 92521 0.5420 +55604 116085 0.5990 +55604 136319 0.5060 +55604 219537 0.5400 +55604 220963 0.6670 +55604 253725 0.4630 +55604 254102 0.5410 +55604 342527 0.5400 +55605 55614 0.6210 +55605 55700 0.4060 +55605 55738 0.5060 +55605 55850 0.5040 +55605 56992 0.6730 +55605 57167 0.4400 +55605 57576 0.6780 +55605 60561 0.5040 +55605 63891 0.4350 +55605 63971 0.6170 +55605 64221 0.4450 +55605 64837 0.6730 +55605 79801 0.4060 +55605 81565 0.5890 +55605 81930 0.6890 +55605 83540 0.4850 +55605 84364 0.5040 +55605 84643 0.6470 +55605 89953 0.4950 +55605 90102 0.6680 +55605 90990 0.6740 +55605 120534 0.4470 +55605 124602 0.6740 +55605 146909 0.6550 +55605 147700 0.6740 +55605 221458 0.5990 +55605 259266 0.6450 +55605 283208 0.4200 +55605 285643 0.5220 +55605 347733 0.5050 +55605 374654 0.6580 +55607 57530 0.4680 +55607 64921 0.5510 +55607 84687 0.4070 +55607 91624 0.9080 +55607 266812 0.4350 +55608 83891 0.4800 +55608 84984 0.4740 +55608 92346 0.4520 +55608 116255 0.4450 +55608 317754 0.4720 +55608 339456 0.4880 +55608 388468 0.4750 +55608 404785 0.4730 +55608 554226 0.4760 +55608 641455 0.4750 +55608 100134934 0.5450 +55608 100287399 0.4640 +55608 100288966 0.4730 +55608 100996331 0.4780 +55608 102723502 0.4710 +55608 102724631 0.4690 +55609 84108 0.4170 +55609 84187 0.4330 +55609 203427 0.4650 +55609 340533 0.4170 +55610 55684 0.4910 +55610 55763 0.5730 +55610 56850 0.4660 +55610 57102 0.4310 +55610 60558 0.4360 +55610 64062 0.4650 +55610 64773 0.5070 +55610 79634 0.4440 +55610 80006 0.5380 +55610 91452 0.5330 +55610 122553 0.4780 +55610 143187 0.5100 +55610 146923 0.5440 +55610 165055 0.5240 +55610 219285 0.4020 +55610 253012 0.6700 +55610 257415 0.4770 +55610 285282 0.4590 +55611 55658 0.6270 +55611 55662 0.6800 +55611 55793 0.4290 +55611 55832 0.4990 +55611 56852 0.5310 +55611 56957 0.7120 +55611 57407 0.7220 +55611 57506 0.4830 +55611 57559 0.5540 +55611 57602 0.4640 +55611 57646 0.7260 +55611 57663 0.5210 +55611 57695 0.5350 +55611 57798 0.4290 +55611 63967 0.4740 +55611 64798 0.6570 +55611 64854 0.4300 +55611 65264 0.4680 +55611 79184 0.5630 +55611 79589 0.9820 +55611 80124 0.4670 +55611 83844 0.5290 +55611 84101 0.6120 +55611 84132 0.4380 +55611 84196 0.4860 +55611 84749 0.4550 +55611 84954 0.4280 +55611 85015 0.5260 +55611 90268 0.6860 +55611 92552 0.5400 +55611 114803 0.4770 +55611 124739 0.4820 +55611 126119 0.6070 +55611 139562 0.6030 +55611 158880 0.4550 +55611 161725 0.5030 +55611 165918 0.8750 +55611 219333 0.4570 +55611 220213 0.6550 +55611 221302 0.8910 +55611 377630 0.5200 +55611 387082 0.5520 +55611 389856 0.5030 +55612 55742 0.6430 +55612 83660 0.5330 +55612 83706 0.8080 +55612 89780 0.4180 +55613 55906 0.4330 +55613 58491 0.4650 +55613 64419 0.4690 +55613 66036 0.9880 +55613 79836 0.4400 +55613 79837 0.6500 +55613 83606 0.5930 +55613 84812 0.6660 +55613 89869 0.6570 +55613 90809 0.9000 +55613 113026 0.6660 +55613 136332 0.4950 +55613 142689 0.6320 +55613 148823 0.4380 +55613 168455 0.4230 +55613 200576 0.9170 +55613 389799 0.4270 +55613 728568 0.4480 +55614 55617 0.4410 +55614 55738 0.4990 +55614 55850 0.5120 +55614 56992 0.6040 +55614 57576 0.5920 +55614 60561 0.5360 +55614 63971 0.6370 +55614 64089 0.4320 +55614 64837 0.6510 +55614 79856 0.4320 +55614 81565 0.5690 +55614 81930 0.5940 +55614 84364 0.4990 +55614 84643 0.5620 +55614 89953 0.4690 +55614 90203 0.4100 +55614 90990 0.6110 +55614 124602 0.5790 +55614 146909 0.5890 +55614 147700 0.5290 +55614 200634 0.4160 +55614 221458 0.5750 +55614 253582 0.4300 +55614 285643 0.4800 +55614 374654 0.5930 +55615 57521 0.9850 +55615 57580 0.4210 +55615 64121 0.4730 +55615 64223 0.9990 +55615 64798 0.9980 +55615 79109 0.9990 +55615 79899 0.9910 +55615 80243 0.4190 +55615 80758 0.6780 +55615 83667 0.5110 +55615 84335 0.8660 +55615 124936 0.4110 +55615 143686 0.4810 +55615 253260 0.9990 +55615 574414 0.6650 +55616 79849 0.5230 +55616 116984 0.4630 +55617 79956 0.4820 +55617 84661 0.4090 +55617 286749 0.4590 +55617 374569 0.8770 +55619 57381 0.6300 +55619 57647 0.8920 +55619 58504 0.4640 +55619 80005 0.4600 +55619 113026 0.4840 +55619 122525 0.5970 +55619 139818 0.4240 +55620 85440 0.6670 +55620 220972 0.6530 +55621 55623 0.5410 +55621 55644 0.4440 +55621 55695 0.5480 +55621 55759 0.5300 +55621 55798 0.5030 +55621 56931 0.7090 +55621 57418 0.4040 +55621 57570 0.6500 +55621 60487 0.8850 +55621 63899 0.5400 +55621 64118 0.6170 +55621 64216 0.4320 +55621 64318 0.4510 +55621 79050 0.4280 +55621 79691 0.4470 +55621 79730 0.4640 +55621 79828 0.5110 +55621 79954 0.5400 +55621 79979 0.4340 +55621 80324 0.7150 +55621 80745 0.6300 +55621 81627 0.4500 +55621 81890 0.5490 +55621 83448 0.4190 +55621 83480 0.7350 +55621 83743 0.5760 +55621 84154 0.6640 +55621 84232 0.4680 +55621 84284 0.4050 +55621 84365 0.4090 +55621 84916 0.6130 +55621 90441 0.4220 +55621 92856 0.4990 +55621 93436 0.4640 +55621 93587 0.7280 +55621 113179 0.4540 +55621 115708 0.6800 +55621 117246 0.5420 +55621 122830 0.4710 +55621 127253 0.4740 +55621 131965 0.4620 +55621 142940 0.8240 +55621 150962 0.5200 +55621 152992 0.5310 +55621 158234 0.5450 +55621 221078 0.6620 +55621 285605 0.4980 +55621 339175 0.4840 +55621 339487 0.5180 +55621 387338 0.5160 +55622 55703 0.7540 +55622 55720 0.7150 +55622 55759 0.6360 +55622 55760 0.4120 +55622 55781 0.4420 +55622 55813 0.4600 +55622 55837 0.6720 +55622 57062 0.4220 +55622 57448 0.6050 +55622 57570 0.4600 +55622 60528 0.4100 +55622 63892 0.4580 +55622 64318 0.5080 +55622 64425 0.6990 +55622 64794 0.6000 +55622 65083 0.5710 +55622 79039 0.4470 +55622 79050 0.5840 +55622 79631 0.6470 +55622 79657 0.5110 +55622 79711 0.4660 +55622 79871 0.4120 +55622 79954 0.5260 +55622 83743 0.6080 +55622 84128 0.6800 +55622 84135 0.6900 +55622 84154 0.5790 +55622 84172 0.7700 +55622 84365 0.4010 +55622 84549 0.5170 +55622 84916 0.5600 +55622 84946 0.4380 +55622 92856 0.4160 +55622 117246 0.5000 +55622 167838 0.4070 +55622 200081 0.4250 +55622 221078 0.5340 +55622 221830 0.4450 +55623 64118 0.4690 +55623 80324 0.6610 +55623 81627 0.5400 +55623 81890 0.4770 +55623 84524 0.4700 +55623 91893 0.6230 +55623 115708 0.4510 +55623 142940 0.7110 +55623 152992 0.4260 +55623 253260 0.4320 +55624 57190 0.4320 +55624 60684 0.4130 +55624 64083 0.4060 +55624 78999 0.4670 +55624 79147 0.9860 +55624 79695 0.4010 +55624 83857 0.4660 +55624 84197 0.8900 +55624 84892 0.9850 +55624 120071 0.7390 +55624 133584 0.5940 +55624 146664 0.9830 +55624 148789 0.8340 +55624 203859 0.7210 +55624 347487 0.4780 +55624 375790 0.7510 +55624 729920 0.6950 +55625 58489 0.4160 +55625 79683 0.4250 +55625 80331 0.4070 +55625 81926 0.5460 +55625 90231 0.6220 +55625 93517 0.4280 +55625 221496 0.4500 +55626 55633 0.4830 +55626 55669 0.4460 +55626 55827 0.9010 +55626 56270 0.5340 +55626 56904 0.4230 +55626 57521 0.7090 +55626 57585 0.4280 +55626 57610 0.4360 +55626 57617 0.4960 +55626 57724 0.5310 +55626 57805 0.4520 +55626 60673 0.8660 +55626 64326 0.9070 +55626 64422 0.7530 +55626 64798 0.4260 +55626 65018 0.7270 +55626 79016 0.9870 +55626 79065 0.6880 +55626 79269 0.9370 +55626 79594 0.4870 +55626 80067 0.9180 +55626 80344 0.9050 +55626 81570 0.4380 +55626 81631 0.7960 +55626 81671 0.6920 +55626 83734 0.6780 +55626 84557 0.6640 +55626 84749 0.4470 +55626 84938 0.5840 +55626 84971 0.5360 +55626 85363 0.7800 +55626 89849 0.4260 +55626 90379 0.9060 +55626 91754 0.4260 +55626 115201 0.5390 +55626 138009 0.5400 +55626 139170 0.5430 +55626 139341 0.7450 +55626 139425 0.5400 +55626 140461 0.6250 +55626 140735 0.8290 +55626 149603 0.4350 +55626 155061 0.4120 +55626 196403 0.4210 +55626 285429 0.5400 +55626 285973 0.4930 +55626 340578 0.5430 +55626 342371 0.5340 +55626 345611 0.5740 +55626 347442 0.5400 +55626 399909 0.5610 +55626 440738 0.4100 +55626 441925 0.6850 +55627 55746 0.4110 +55627 56624 0.8140 +55627 56926 0.5890 +55627 57122 0.4710 +55627 57179 0.4430 +55627 57704 0.9390 +55627 57805 0.4450 +55627 64781 0.9460 +55627 79188 0.4190 +55627 79603 0.9460 +55627 79869 0.4550 +55627 79888 0.5270 +55627 81037 0.4090 +55627 81537 0.9330 +55627 91012 0.9400 +55627 123099 0.9510 +55627 125981 0.7870 +55627 130367 0.9290 +55627 166929 0.9590 +55627 201595 0.4340 +55627 204219 0.9390 +55627 253782 0.9520 +55627 259230 0.9680 +55627 339221 0.9590 +55627 340485 0.8120 +55628 57616 0.4220 +55628 80148 0.5150 +55628 84527 0.4130 +55628 114827 0.4990 +55628 151126 0.4620 +55628 158787 0.5040 +55628 254225 0.4480 +55628 284273 0.5930 +55628 284274 0.4830 +55628 374868 0.4460 +55628 619279 0.4170 +55629 55802 0.9990 +55629 56006 0.8240 +55629 57711 0.5050 +55629 65109 0.7780 +55629 65110 0.7840 +55629 80153 0.7360 +55629 116832 0.4990 +55629 140032 0.4990 +55629 140801 0.5340 +55629 149951 0.8270 +55629 167227 0.9340 +55629 196513 0.6240 +55629 200916 0.5010 +55630 55676 0.6840 +55630 56159 0.4160 +55630 64924 0.6640 +55630 91252 0.4350 +55630 113655 0.4940 +55630 148867 0.5800 +55630 169026 0.4900 +55630 201266 0.7070 +55630 203054 0.4750 +55631 55852 0.5040 +55631 56257 0.4110 +55631 79035 0.4560 +55631 79729 0.5100 +55631 79925 0.4870 +55631 79971 0.4220 +55631 80311 0.4560 +55631 84245 0.6820 +55631 84524 0.5050 +55631 113444 0.6000 +55631 140890 0.4550 +55631 146212 0.4930 +55631 149345 0.5110 +55631 151835 0.4440 +55631 154790 0.5110 +55631 200539 0.4170 +55631 203245 0.4890 +55631 222389 0.4310 +55631 245812 0.4450 +55631 255252 0.4380 +55631 284697 0.5050 +55631 285343 0.4340 +55631 347688 0.5580 +55631 441531 0.4570 +55632 79075 0.4730 +55632 79866 0.4160 +55632 79968 0.4280 +55632 81611 0.4300 +55632 83461 0.4120 +55632 83540 0.5340 +55632 84722 0.4570 +55632 90120 0.4180 +55632 112487 0.5020 +55632 157313 0.5800 +55632 157567 0.4720 +55632 283431 0.6600 +55632 729597 0.5070 +55633 55844 0.6530 +55633 56980 0.4130 +55633 57129 0.4290 +55633 57179 0.4050 +55633 57578 0.4060 +55633 60488 0.4590 +55633 64746 0.6630 +55633 64965 0.4170 +55633 64968 0.5800 +55633 64969 0.4290 +55633 64975 0.4560 +55633 64979 0.4520 +55633 79780 0.4590 +55633 79981 0.4080 +55633 81876 0.4670 +55633 83452 0.4030 +55633 83874 0.6310 +55633 84545 0.4330 +55633 128637 0.5940 +55633 147011 0.7070 +55633 161514 0.6450 +55633 219770 0.5110 +55633 219927 0.4140 +55633 254272 0.5340 +55633 255783 0.4540 +55633 353149 0.4910 +55633 374403 0.5930 +55633 375035 0.4710 +55633 414059 0.5420 +55634 56548 0.9520 +55634 57615 0.4220 +55634 63904 0.4370 +55634 79742 0.4250 +55634 80258 0.4280 +55634 80316 0.4500 +55634 84527 0.5170 +55634 84679 0.8960 +55634 170082 0.5020 +55634 203523 0.6890 +55634 346157 0.6410 +55635 55789 0.7980 +55635 55839 0.7300 +55635 56992 0.8540 +55635 57082 0.5720 +55635 57405 0.7560 +55635 57650 0.5280 +55635 64105 0.4610 +55635 64151 0.8240 +55635 64946 0.4010 +55635 79682 0.4290 +55635 79733 0.6230 +55635 79801 0.7800 +55635 79866 0.4270 +55635 81610 0.6250 +55635 81624 0.6650 +55635 81930 0.8510 +55635 83461 0.6830 +55635 83540 0.8980 +55635 84057 0.4850 +55635 90417 0.4110 +55635 113115 0.4080 +55635 113130 0.5000 +55635 128239 0.4150 +55635 144455 0.4250 +55635 146909 0.5920 +55635 150468 0.6520 +55635 151246 0.5990 +55635 151648 0.4980 +55635 157313 0.8170 +55635 157570 0.5140 +55635 220134 0.5960 +55635 221150 0.7140 +55635 259266 0.8610 +55635 387103 0.4050 +55635 400451 0.4530 +55636 55703 0.4980 +55636 55811 0.7850 +55636 57492 0.4330 +55636 57680 0.9570 +55636 57697 0.4620 +55636 58508 0.4280 +55636 60675 0.8700 +55636 63976 0.7800 +55636 79101 0.4040 +55636 79722 0.4270 +55636 79843 0.5700 +55636 80205 0.4320 +55636 80712 0.4430 +55636 84172 0.4040 +55636 84181 0.4540 +55636 84634 0.8000 +55636 85456 0.4850 +55636 91137 0.4180 +55636 91860 0.6540 +55636 114569 0.5790 +55636 116448 0.4680 +55636 128674 0.8560 +55636 133482 0.4560 +55636 163688 0.6540 +55636 170692 0.4260 +55636 196528 0.4690 +55636 260434 0.4350 +55636 389549 0.4940 +55636 392255 0.4020 +55636 440093 0.5570 +55636 440686 0.5570 +55636 653499 0.6020 +55636 653604 0.5570 +55638 56947 0.5070 +55638 64837 0.4070 +55638 66008 0.6070 +55638 84062 0.5920 +55638 84709 0.4010 +55638 89941 0.5350 +55638 112755 0.6700 +55638 134957 0.8730 +55638 167838 0.4620 +55640 55652 0.5330 +55640 79665 0.4570 +55640 84804 0.4110 +55640 113235 0.5960 +55643 56204 0.4190 +55643 64397 0.4290 +55643 64708 0.4810 +55643 80712 0.4180 +55643 83752 0.4880 +55643 84445 0.4450 +55643 85363 0.9510 +55643 92255 0.4660 +55643 112817 0.5090 +55643 117854 0.4910 +55643 150678 0.5510 +55643 151525 0.5380 +55643 340371 0.4050 +55643 445372 0.4930 +55644 55687 0.4230 +55644 55699 0.4350 +55644 55768 0.4570 +55644 55773 0.7910 +55644 55781 0.4300 +55644 57176 0.4100 +55644 57570 0.5240 +55644 64172 0.5920 +55644 64965 0.4210 +55644 65005 0.4040 +55644 79140 0.5570 +55644 79693 0.9760 +55644 79877 0.5510 +55644 80347 0.5510 +55644 81890 0.4310 +55644 84172 0.5770 +55644 84284 0.4720 +55644 84520 0.9990 +55644 84942 0.6820 +55644 90353 0.5010 +55644 90809 0.5210 +55644 92399 0.4230 +55644 112858 0.9990 +55644 123688 0.6370 +55644 133482 0.4410 +55644 348995 0.7580 +55646 55651 0.8900 +55646 55695 0.4300 +55646 55720 0.7220 +55646 55759 0.5820 +55646 55781 0.5420 +55646 55813 0.6610 +55646 56342 0.6690 +55646 56647 0.6720 +55646 56902 0.4160 +55646 56915 0.4260 +55646 57050 0.6960 +55646 57062 0.4310 +55646 64216 0.5500 +55646 64318 0.4980 +55646 64425 0.6520 +55646 65083 0.5390 +55646 65095 0.5420 +55646 79039 0.6240 +55646 79050 0.4590 +55646 79080 0.5900 +55646 79159 0.5260 +55646 79954 0.6250 +55646 80004 0.4140 +55646 80135 0.8150 +55646 80324 0.4890 +55646 83732 0.5200 +55646 83743 0.8360 +55646 84081 0.4400 +55646 84128 0.4380 +55646 84135 0.4360 +55646 84154 0.9070 +55646 84294 0.8100 +55646 84295 0.6380 +55646 84310 0.5170 +55646 84365 0.9210 +55646 84549 0.8610 +55646 84916 0.4190 +55646 84946 0.7500 +55646 85013 0.4020 +55646 88745 0.4260 +55646 90121 0.6900 +55646 92856 0.8570 +55646 115939 0.4240 +55646 117246 0.6500 +55646 128229 0.4240 +55646 139422 0.4200 +55646 140801 0.8200 +55646 146212 0.6920 +55646 155368 0.5950 +55646 166793 0.4410 +55646 221078 0.6050 +55646 221830 0.8340 +55646 222389 0.4570 +55646 285672 0.4530 +55646 285855 0.4280 +55646 387338 0.4170 +55646 692312 0.6810 +55646 100529239 0.8270 +55647 55739 0.4010 +55647 55823 0.4050 +55647 57617 0.4820 +55647 64145 0.5100 +55647 64601 0.4760 +55647 284716 0.4400 +55650 79053 0.4310 +55650 79087 0.6460 +55650 80055 0.6510 +55650 80067 0.4580 +55650 80235 0.8120 +55650 84720 0.9300 +55650 84992 0.8040 +55650 93183 0.9890 +55650 93210 0.7660 +55650 94005 0.5680 +55650 128869 0.6960 +55650 199857 0.4220 +55650 284098 0.8780 +55650 353299 0.4580 +55651 55695 0.4400 +55651 55706 0.4360 +55651 55720 0.5120 +55651 55759 0.8680 +55651 55781 0.6210 +55651 55794 0.4770 +55651 55813 0.7360 +55651 55854 0.4850 +55651 56341 0.4870 +55651 56342 0.6970 +55651 56647 0.5820 +55651 56648 0.6190 +55651 56902 0.5990 +55651 56915 0.6600 +55651 56937 0.4660 +55651 56965 0.5300 +55651 57050 0.7100 +55651 57819 0.5850 +55651 60314 0.4300 +55651 60678 0.5620 +55651 63875 0.5440 +55651 63931 0.6840 +55651 64118 0.4330 +55651 64216 0.5180 +55651 64318 0.6270 +55651 64374 0.6020 +55651 64425 0.6690 +55651 64951 0.4060 +55651 64960 0.6890 +55651 64963 0.6960 +55651 64969 0.7160 +55651 64976 0.4130 +55651 64978 0.4150 +55651 65003 0.7300 +55651 65005 0.4020 +55651 65008 0.6980 +55651 65083 0.5980 +55651 65095 0.5790 +55651 65121 0.4960 +55651 65122 0.4960 +55651 79009 0.4440 +55651 79039 0.5160 +55651 79048 0.5210 +55651 79050 0.7570 +55651 79077 0.4620 +55651 79080 0.5940 +55651 79159 0.6630 +55651 79571 0.5320 +55651 79590 0.7560 +55651 79618 0.5190 +55651 79631 0.6960 +55651 79650 0.6090 +55651 79657 0.5270 +55651 79668 0.5230 +55651 79897 0.5110 +55651 79954 0.6790 +55651 80119 0.5270 +55651 80135 0.8950 +55651 80169 0.8870 +55651 80324 0.7120 +55651 83443 0.5330 +55651 83448 0.6010 +55651 83480 0.5080 +55651 83743 0.8850 +55651 83990 0.4180 +55651 84128 0.7060 +55651 84135 0.7440 +55651 84154 0.9750 +55651 84172 0.5370 +55651 84294 0.8280 +55651 84298 0.6000 +55651 84316 0.4150 +55651 84319 0.4310 +55651 84365 0.9530 +55651 84549 0.8140 +55651 84916 0.8090 +55651 84946 0.6450 +55651 85476 0.6600 +55651 90121 0.7200 +55651 90826 0.4220 +55651 92196 0.4280 +55651 92345 0.9860 +55651 92856 0.9210 +55651 94104 0.4090 +55651 114987 0.6960 +55651 116832 0.5310 +55651 116966 0.6240 +55651 117246 0.6670 +55651 118460 0.4330 +55651 118881 0.4240 +55651 124454 0.4860 +55651 126328 0.4450 +55651 126402 0.6850 +55651 128308 0.4720 +55651 134353 0.7670 +55651 138716 0.5930 +55651 140032 0.6810 +55651 140801 0.6180 +55651 142940 0.8960 +55651 143244 0.6130 +55651 146212 0.5890 +55651 150962 0.5870 +55651 200916 0.6780 +55651 201595 0.4930 +55651 219927 0.5540 +55651 221078 0.7230 +55651 221830 0.8530 +55651 255308 0.5300 +55651 285367 0.4270 +55651 285855 0.6620 +55651 286451 0.4140 +55651 317781 0.4070 +55651 343068 0.4960 +55651 343070 0.4960 +55651 345630 0.9740 +55651 347487 0.6110 +55651 387129 0.6540 +55651 390999 0.4960 +55651 391002 0.4960 +55651 400735 0.4960 +55651 400736 0.4960 +55651 440560 0.4960 +55651 440561 0.4960 +55651 441873 0.4960 +55651 641776 0.5600 +55651 643909 0.5600 +55651 645051 0.5380 +55651 645073 0.5380 +55651 645359 0.4960 +55651 653619 0.4960 +55651 692312 0.6560 +55651 728524 0.5600 +55651 728689 0.5070 +55651 729396 0.5380 +55651 729422 0.5380 +55651 729428 0.5380 +55651 729431 0.5380 +55651 729442 0.5380 +55651 729447 0.5380 +55651 729528 0.4960 +55651 100008586 0.5380 +55651 100132399 0.5380 +55651 100287482 0.6110 +55651 100505478 0.6510 +55651 100526842 0.6760 +55651 100529097 0.6530 +55651 100529239 0.6980 +55651 100996746 0.5600 +55651 101929983 0.4960 +55651 102157402 0.6200 +55651 102724473 0.5380 +55651 105180390 0.5600 +55651 105180391 0.5600 +55652 113235 0.5990 +55653 55734 0.4010 +55653 55959 0.4760 +55653 57696 0.4570 +55653 63915 0.9130 +55653 64756 0.4410 +55653 79803 0.5410 +55653 80011 0.5160 +55653 80725 0.4870 +55653 84062 0.8640 +55653 84343 0.5400 +55653 89781 0.5400 +55653 90423 0.4720 +55653 115201 0.4220 +55653 116154 0.4040 +55653 118426 0.6250 +55653 119032 0.5890 +55653 129563 0.4220 +55653 132884 0.4120 +55653 282991 0.8930 +55653 340152 0.4210 +55653 388552 0.9200 +55653 388799 0.4500 +55653 729956 0.4670 +55654 57001 0.5150 +55654 79577 0.4050 +55654 79786 0.4510 +55654 112398 0.5180 +55654 200014 0.4460 +55654 201163 0.4710 +55654 644096 0.5110 +55655 55876 0.4970 +55655 56169 0.5400 +55655 58484 0.9740 +55655 59082 0.4950 +55655 64167 0.4340 +55655 79792 0.5180 +55655 79816 0.8130 +55655 84166 0.5190 +55655 84174 0.6750 +55655 84327 0.5840 +55655 91662 0.9250 +55655 114548 0.8100 +55655 126206 0.6890 +55655 147945 0.7030 +55655 154288 0.8050 +55655 171389 0.9020 +55655 199713 0.7580 +55655 260434 0.4530 +55655 284110 0.4730 +55655 338322 0.5530 +55655 346171 0.5440 +55655 353238 0.7410 +55655 441161 0.7790 +55655 494513 0.5060 +55656 55726 0.9470 +55656 55756 0.9950 +55656 55780 0.5070 +55656 57117 0.9530 +55656 57508 0.9980 +55656 57664 0.4680 +55656 64859 0.5030 +55656 65123 0.9990 +55656 79034 0.7820 +55656 79035 0.6000 +55656 80789 0.9990 +55656 81556 0.9620 +55656 92105 0.9940 +55656 203522 0.6770 +55656 221830 0.4780 +55656 441519 0.5950 +55656 441521 0.5950 +55656 541465 0.5950 +55656 541466 0.5950 +55656 728911 0.5950 +55656 101060211 0.5950 +55656 102723631 0.5950 +55656 102723680 0.5950 +55656 102723737 0.5950 +55657 115992 0.5780 +55657 119391 0.4030 +55657 152485 0.4040 +55658 55793 0.4200 +55658 57379 0.4980 +55658 121665 0.4970 +55658 146310 0.5290 +55658 164153 0.5120 +55658 165918 0.6570 +55658 222229 0.4270 +55658 254225 0.4530 +55659 57343 0.4120 +55659 284307 0.4160 +55659 387032 0.4880 +55660 55677 0.4480 +55660 55692 0.9750 +55660 55749 0.9350 +55660 55854 0.4460 +55660 56949 0.5520 +55660 57187 0.7350 +55660 57703 0.5300 +55660 57794 0.8360 +55660 58517 0.9980 +55660 59286 0.4090 +55660 60491 0.4980 +55660 65117 0.4650 +55660 79576 0.8440 +55660 79647 0.6000 +55660 79753 0.7740 +55660 79811 0.5010 +55660 79828 0.4270 +55660 79869 0.4690 +55660 81624 0.4600 +55660 84530 0.4120 +55660 84811 0.4620 +55660 84950 0.7180 +55660 84991 0.4650 +55660 85462 0.5330 +55660 91010 0.7320 +55660 114793 0.5890 +55660 118924 0.5000 +55660 124245 0.5930 +55660 127933 0.5830 +55660 129831 0.4130 +55660 140890 0.7290 +55660 153527 0.5400 +55660 170506 0.4830 +55660 220988 0.5490 +55660 285672 0.5210 +55660 342184 0.8020 +55660 345456 0.4230 +55660 345651 0.4660 +55660 375189 0.4300 +55660 377007 0.4440 +55660 392862 0.5550 +55660 541466 0.5310 +55660 100996928 0.5410 +55662 55869 0.4530 +55662 56957 0.6240 +55662 63941 0.4440 +55662 64344 0.5860 +55662 79697 0.4060 +55662 79705 0.4850 +55662 79722 0.4710 +55662 80351 0.9870 +55662 84461 0.4980 +55662 84864 0.4890 +55662 84925 0.5650 +55662 85302 0.4930 +55662 92591 0.5310 +55662 112398 0.7950 +55662 112399 0.7730 +55662 115761 0.5880 +55662 140459 0.4770 +55662 140460 0.6060 +55662 140461 0.6430 +55662 140462 0.7830 +55662 162514 0.9080 +55662 348094 0.6170 +55663 55830 0.4580 +55663 57799 0.4540 +55663 63891 0.4400 +55663 64779 0.4930 +55663 80345 0.5930 +55663 84219 0.4610 +55663 84307 0.8760 +55663 84547 0.8350 +55663 84838 0.5940 +55663 84861 0.4490 +55663 158399 0.7980 +55663 222696 0.6030 +55663 252884 0.8320 +55663 342945 0.6230 +55663 387032 0.8060 +55663 642475 0.4340 +55663 100101467 0.4990 +55664 79657 0.4340 +55664 140901 0.6580 +55664 283237 0.4240 +55664 100885850 0.4110 +55665 80013 0.6370 +55666 55768 0.6740 +55666 55829 0.8930 +55666 55968 0.9970 +55666 56886 0.4310 +55666 56893 0.4650 +55666 57154 0.4220 +55666 79029 0.6750 +55666 79058 0.9970 +55666 79139 0.9670 +55666 79752 0.4300 +55666 79989 0.9940 +55666 80124 0.9980 +55666 80173 0.9940 +55666 80700 0.7660 +55666 80818 0.5800 +55666 81858 0.4990 +55666 83473 0.4170 +55666 83932 0.7750 +55666 84083 0.4360 +55666 84296 0.4640 +55666 84447 0.8540 +55666 84896 0.5570 +55666 91319 0.8980 +55666 91544 0.4190 +55666 92552 0.6810 +55666 115560 0.5800 +55666 118424 0.4360 +55666 122706 0.5270 +55666 122769 0.4290 +55666 127733 0.9950 +55666 130617 0.6210 +55666 136319 0.6190 +55666 143471 0.5430 +55666 143630 0.4120 +55666 148266 0.5800 +55666 165324 0.4520 +55666 166378 0.6860 +55666 197131 0.5180 +55666 221302 0.4880 +55666 257397 0.6910 +55666 258010 0.9720 +55666 284390 0.5810 +55666 337867 0.9950 +55667 55737 0.4950 +55667 55793 0.4380 +55667 112936 0.4730 +55667 123720 0.4350 +55667 160518 0.4510 +55667 203238 0.4220 +55668 55813 0.8500 +55668 56919 0.4830 +55668 57050 0.8400 +55668 60625 0.4870 +55668 64434 0.8450 +55668 65083 0.8520 +55668 88745 0.5350 +55668 112752 0.4740 +55668 125919 0.5160 +55668 136306 0.4470 +55669 55735 0.7350 +55669 56947 0.9270 +55669 56993 0.9280 +55669 57506 0.9870 +55669 64225 0.4150 +55669 64423 0.5040 +55669 64426 0.4360 +55669 64786 0.4510 +55669 65018 0.9720 +55669 66008 0.6600 +55669 79135 0.7760 +55669 79269 0.4290 +55669 79594 0.6320 +55669 80207 0.5270 +55669 81631 0.8520 +55669 84134 0.6480 +55669 84260 0.4350 +55669 84300 0.6630 +55669 84303 0.7860 +55669 84557 0.7000 +55669 84701 0.5070 +55669 84749 0.6210 +55669 84896 0.5880 +55669 89941 0.9630 +55669 90550 0.7190 +55669 91137 0.6320 +55669 91689 0.5050 +55669 114879 0.4360 +55669 115209 0.7520 +55669 120892 0.9000 +55669 125170 0.8290 +55669 125988 0.7980 +55669 131474 0.4180 +55669 133522 0.5110 +55669 136991 0.4450 +55669 137902 0.4290 +55669 139322 0.7860 +55669 139341 0.6960 +55669 155061 0.4260 +55669 192111 0.5910 +55669 201164 0.5110 +55669 221154 0.5530 +55669 286097 0.4750 +55669 340061 0.6950 +55669 345778 0.7600 +55669 387990 0.7050 +55669 401505 0.9220 +55669 440574 0.7850 +55669 100188893 0.5950 +55669 100287932 0.4690 +55670 55798 0.4610 +55670 65985 0.5320 +55670 84188 0.4140 +55670 84376 0.4390 +55670 84859 0.4950 +55670 84896 0.6570 +55670 91452 0.6990 +55670 92960 0.4790 +55670 144404 0.5150 +55670 201931 0.4070 +55671 55844 0.6070 +55671 57091 0.4240 +55671 57223 0.9870 +55671 57337 0.4790 +55671 57532 0.4460 +55671 57585 0.4310 +55671 57718 0.6320 +55671 80232 0.4710 +55671 83443 0.4450 +55671 84144 0.5120 +55671 85360 0.4170 +55671 85407 0.5640 +55671 139420 0.9070 +55671 151987 0.9990 +55671 200185 0.4780 +55671 200186 0.9230 +55671 221120 0.4560 +55671 347732 0.4350 +55671 404552 0.4790 +55672 84224 0.7260 +55672 641339 0.5400 +55672 728524 0.5110 +55672 100996763 0.4120 +55676 55751 0.4520 +55676 57181 0.7590 +55676 60558 0.4710 +55676 64116 0.7120 +55676 64418 0.4510 +55676 64924 0.9970 +55676 79608 0.4510 +55676 80143 0.4450 +55676 91252 0.7700 +55676 148867 0.5020 +55676 169026 0.6600 +55676 201266 0.7690 +55676 201562 0.4370 +55676 221074 0.7380 +55676 283375 0.7640 +55676 387263 0.4380 +55677 55703 0.6610 +55677 55840 0.8130 +55677 56254 0.5050 +55677 57121 0.4910 +55677 57680 0.5040 +55677 57703 0.5300 +55677 79577 0.7320 +55677 79657 0.4560 +55677 80227 0.4130 +55677 80820 0.8580 +55677 81608 0.5230 +55677 84172 0.7670 +55677 84337 0.8850 +55677 84717 0.6210 +55677 85403 0.8120 +55677 85456 0.6780 +55677 123169 0.9470 +55677 127428 0.4770 +55677 149483 0.4910 +55677 170082 0.4460 +55677 246721 0.4950 +55677 340602 0.4910 +55677 440093 0.5480 +55677 440686 0.5480 +55677 448834 0.4910 +55677 548644 0.4950 +55677 653604 0.5600 +55677 100134938 0.4160 +55677 107983993 0.4160 +55677 122455342 0.4910 +55679 55742 0.9740 +55679 64098 0.7830 +55680 55691 0.5860 +55680 55930 0.5730 +55680 57614 0.5200 +55680 64081 0.5880 +55680 80230 0.8080 +55680 83452 0.4190 +55680 285180 0.6830 +55681 57147 0.4420 +55681 57148 0.4170 +55681 57410 0.4450 +55681 57590 0.4050 +55681 79646 0.4630 +55683 55689 0.7330 +55683 55904 0.4420 +55683 55929 0.7480 +55683 56731 0.5930 +55683 57540 0.4220 +55683 57634 0.7590 +55683 64769 0.7220 +55683 79142 0.4220 +55683 80314 0.7230 +55683 84148 0.9840 +55683 84941 0.4630 +55683 137872 0.5720 +55683 148479 0.4040 +55683 151050 0.8180 +55683 152185 0.4210 +55683 164045 0.6690 +55683 284058 0.9950 +55683 339287 0.8100 +55683 345651 0.5400 +55683 727897 0.4760 +55684 57128 0.5430 +55684 58485 0.5590 +55684 65082 0.5790 +55684 79090 0.4040 +55684 84651 0.5790 +55684 84897 0.7740 +55684 84960 0.6580 +55684 112812 0.4390 +55684 122553 0.4030 +55684 126003 0.5160 +55684 165055 0.4890 +55684 167691 0.4450 +55684 285282 0.5710 +55684 100128327 0.4450 +55686 79083 0.8100 +55686 79876 0.4220 +55686 80067 0.4230 +55686 81631 0.4140 +55686 83547 0.5870 +55686 146664 0.4050 +55687 56652 0.4430 +55687 56945 0.5040 +55687 57038 0.4780 +55687 57184 0.4940 +55687 57222 0.6030 +55687 57505 0.4470 +55687 57570 0.6600 +55687 60528 0.5670 +55687 63899 0.5630 +55687 64172 0.5430 +55687 64979 0.5250 +55687 64983 0.4100 +55687 65005 0.4070 +55687 79691 0.5420 +55687 79693 0.4820 +55687 80324 0.7360 +55687 80347 0.4810 +55687 81605 0.4880 +55687 81890 0.4620 +55687 83480 0.4300 +55687 84311 0.4090 +55687 84340 0.5080 +55687 84705 0.9750 +55687 84881 0.4200 +55687 85476 0.5260 +55687 90353 0.6940 +55687 91574 0.4890 +55687 92399 0.4150 +55687 115416 0.4220 +55687 118490 0.4570 +55687 123263 0.6890 +55687 124454 0.5750 +55687 125704 0.4340 +55687 246243 0.4110 +55687 285367 0.4430 +55687 348180 0.6260 +55687 730249 0.5260 +55689 55756 0.4570 +55689 55929 0.8520 +55689 56655 0.9380 +55689 56910 0.6760 +55689 56943 0.7610 +55689 56970 0.7830 +55689 57325 0.9940 +55689 57634 0.7390 +55689 64376 0.5530 +55689 64769 0.7540 +55689 79595 0.5950 +55689 79693 0.4170 +55689 79929 0.4810 +55689 80314 0.7490 +55689 83443 0.6690 +55689 84148 0.7380 +55689 84661 0.4120 +55689 84838 0.4780 +55689 93624 0.9610 +55689 112869 0.9950 +55689 117143 0.8370 +55689 129685 0.4980 +55689 138474 0.4810 +55689 143884 0.4910 +55689 151050 0.5490 +55689 220082 0.5240 +55689 283638 0.4410 +55689 284058 0.6250 +55689 339287 0.5730 +55689 345651 0.6640 +55689 401474 0.6700 +55689 440093 0.7350 +55689 440686 0.7350 +55689 653604 0.8380 +55690 64083 0.5150 +55690 64978 0.4350 +55690 112574 0.5050 +55690 115201 0.4200 +55690 116842 0.4420 +55690 261734 0.5330 +55691 55930 0.4760 +55691 64005 0.5110 +55691 91894 0.4710 +55691 114818 0.4040 +55691 116236 0.4150 +55691 129303 0.4030 +55691 140609 0.4500 +55691 140901 0.4220 +55691 221035 0.4980 +55691 643680 0.4100 +55692 55954 0.5910 +55692 56257 0.5200 +55692 56259 0.5530 +55692 57466 0.5100 +55692 58517 0.9970 +55692 58986 0.4070 +55692 79005 0.4310 +55692 79009 0.5650 +55692 79696 0.4930 +55692 80829 0.4460 +55692 81669 0.4670 +55692 83443 0.4220 +55692 83938 0.5270 +55692 83986 0.4510 +55692 84268 0.4010 +55692 84271 0.4110 +55692 84292 0.4360 +55692 84316 0.4560 +55692 84844 0.5700 +55692 84950 0.4270 +55692 84967 0.5420 +55692 124245 0.6080 +55692 126259 0.4560 +55692 147650 0.4560 +55692 160364 0.4270 +55692 220074 0.5270 +55692 246243 0.4870 +55692 256536 0.5980 +55692 347744 0.5580 +55692 392517 0.6250 +55692 100996928 0.6080 +55693 55818 0.6240 +55693 79697 0.4610 +55693 79723 0.5100 +55693 79831 0.5300 +55693 80853 0.6300 +55693 84678 0.5310 +55693 90313 0.4150 +55693 221037 0.8780 +55693 221656 0.5220 +55693 440093 0.5220 +55693 440686 0.5220 +55693 653604 0.7010 +55695 55720 0.4130 +55695 55759 0.6500 +55695 55798 0.4930 +55695 55813 0.4010 +55695 56339 0.4820 +55695 56342 0.4890 +55695 56931 0.4390 +55695 57721 0.4580 +55695 60487 0.5430 +55695 60681 0.7380 +55695 63899 0.9320 +55695 64118 0.5310 +55695 64318 0.6430 +55695 64848 0.4240 +55695 65083 0.5100 +55695 79050 0.7780 +55695 79159 0.5580 +55695 79730 0.4900 +55695 79828 0.6170 +55695 79922 0.4260 +55695 79954 0.4340 +55695 79979 0.4870 +55695 80135 0.6940 +55695 80324 0.5380 +55695 81890 0.4360 +55695 83480 0.4730 +55695 84154 0.5500 +55695 84163 0.5840 +55695 84172 0.4260 +55695 84273 0.4640 +55695 84277 0.4040 +55695 84365 0.6570 +55695 84549 0.5420 +55695 91893 0.4710 +55695 92170 0.4450 +55695 92856 0.5370 +55695 93587 0.4910 +55695 113802 0.4090 +55695 115708 0.5990 +55695 115939 0.4850 +55695 117246 0.6360 +55695 123263 0.7160 +55695 126789 0.5110 +55695 130916 0.5720 +55695 131965 0.7320 +55695 135892 0.7710 +55695 142940 0.4830 +55695 158234 0.5040 +55695 161931 0.4110 +55695 221078 0.7660 +55695 285367 0.4380 +55695 285855 0.4110 +55695 339175 0.4840 +55695 345630 0.4640 +55695 378108 0.4460 +55695 387338 0.9240 +55695 389524 0.5830 +55695 692312 0.4650 +55696 55702 0.9910 +55696 55854 0.4050 +55696 56259 0.9530 +55696 56919 0.6010 +55696 56949 0.9990 +55696 57461 0.9930 +55696 57647 0.4610 +55696 57703 0.9980 +55696 57819 0.8680 +55696 58509 0.8010 +55696 58517 0.4030 +55696 59286 0.8980 +55696 60625 0.6060 +55696 64062 0.4480 +55696 79446 0.6550 +55696 79576 0.8050 +55696 79631 0.5180 +55696 79650 0.6410 +55696 79665 0.4060 +55696 79706 0.8690 +55696 79753 0.9790 +55696 79811 0.4300 +55696 80011 0.8010 +55696 83443 0.9180 +55696 83938 0.5340 +55696 84316 0.4690 +55696 84811 0.9590 +55696 84844 0.9190 +55696 84950 0.9360 +55696 84967 0.5100 +55696 85027 0.4580 +55696 85476 0.4860 +55696 91603 0.8700 +55696 92400 0.4160 +55696 126259 0.4690 +55696 138046 0.8530 +55696 143884 0.9250 +55696 147650 0.4690 +55696 151903 0.5100 +55696 153527 0.8880 +55696 154007 0.4470 +55696 163859 0.8380 +55696 164045 0.5200 +55696 199746 0.5400 +55696 219988 0.4220 +55696 220074 0.5340 +55696 222183 0.6500 +55696 256536 0.8560 +55696 343069 0.4920 +55696 390748 0.6100 +55696 100534599 0.9690 +55697 57130 0.5470 +55697 57192 0.4890 +55697 64786 0.4840 +55697 79574 0.4210 +55697 79719 0.4150 +55697 83931 0.4520 +55697 84174 0.5400 +55697 84461 0.4510 +55697 84557 0.7600 +55697 85440 0.4520 +55697 92154 0.7810 +55697 121512 0.4290 +55697 122809 0.5450 +55697 132321 0.4770 +55697 144110 0.4020 +55697 146850 0.5400 +55697 197258 0.4280 +55697 200576 0.9990 +55697 205428 0.6550 +55697 221960 0.5000 +55697 284040 0.4220 +55697 374354 0.4810 +55697 388389 0.4580 +55697 441925 0.5680 +55697 110117498 0.5440 +55698 136332 0.4600 +55698 255426 0.5040 +55698 399693 0.5910 +55699 55703 0.4290 +55699 55746 0.4200 +55699 56474 0.5060 +55699 56945 0.5120 +55699 57038 0.9870 +55699 57176 0.8650 +55699 57470 0.7440 +55699 57505 0.9180 +55699 60558 0.4020 +55699 64172 0.4370 +55699 64963 0.4550 +55699 64965 0.4040 +55699 64969 0.4110 +55699 65005 0.4310 +55699 79072 0.7620 +55699 79587 0.9440 +55699 79590 0.4410 +55699 79631 0.4170 +55699 79693 0.5330 +55699 79731 0.9040 +55699 80222 0.9020 +55699 81570 0.4470 +55699 84172 0.4420 +55699 84340 0.4680 +55699 84464 0.5010 +55699 84869 0.4480 +55699 84893 0.4030 +55699 85476 0.6580 +55699 87178 0.5650 +55699 90353 0.4330 +55699 91875 0.4960 +55699 91893 0.5080 +55699 92399 0.5980 +55699 92609 0.4700 +55699 92935 0.9950 +55699 93974 0.4740 +55699 116832 0.6390 +55699 123263 0.6560 +55699 123283 0.8960 +55699 124454 0.9300 +55699 134359 0.4530 +55699 150274 0.5340 +55699 196074 0.4520 +55699 254863 0.4160 +55699 374291 0.4160 +55699 374395 0.4610 +55699 440275 0.4300 +55699 440574 0.4200 +55700 57662 0.4010 +55700 84461 0.4670 +55701 64283 0.4040 +55701 84167 0.4540 +55701 100271715 0.4610 +55702 55760 0.7790 +55702 56654 0.4020 +55702 56919 0.4970 +55702 56949 0.9990 +55702 57461 0.9980 +55702 57703 0.9990 +55702 58509 0.6420 +55702 60625 0.8850 +55702 63932 0.6350 +55702 79165 0.5730 +55702 79446 0.8780 +55702 79576 0.6100 +55702 79650 0.5040 +55702 79706 0.7920 +55702 79753 0.5960 +55702 79960 0.4670 +55702 80331 0.5470 +55702 83443 0.4980 +55702 83938 0.6540 +55702 84292 0.6430 +55702 84316 0.4790 +55702 84464 0.4810 +55702 84811 0.7220 +55702 84967 0.4630 +55702 85479 0.5470 +55702 126259 0.4850 +55702 143884 0.6150 +55702 147650 0.4780 +55702 151903 0.7030 +55702 154007 0.5930 +55702 163859 0.7390 +55702 164045 0.5710 +55702 165545 0.7790 +55702 220074 0.6540 +55702 222183 0.6350 +55702 391365 0.4930 +55702 100534599 0.9980 +55703 55718 0.9990 +55703 55720 0.7640 +55703 55760 0.4780 +55703 55813 0.6160 +55703 55814 0.9690 +55703 56342 0.4850 +55703 56474 0.5480 +55703 56931 0.4160 +55703 57038 0.5080 +55703 57050 0.6290 +55703 57062 0.4470 +55703 57121 0.4250 +55703 57136 0.7000 +55703 57165 0.4080 +55703 57176 0.5180 +55703 57470 0.5170 +55703 57505 0.4690 +55703 57696 0.5840 +55703 58490 0.4630 +55703 63875 0.9200 +55703 63892 0.4020 +55703 63931 0.8230 +55703 64135 0.4100 +55703 64318 0.5570 +55703 64374 0.7170 +55703 64421 0.4710 +55703 64425 0.8410 +55703 64682 0.4310 +55703 64794 0.5150 +55703 64960 0.6250 +55703 64963 0.7750 +55703 64965 0.7880 +55703 64968 0.8340 +55703 64969 0.8610 +55703 64979 0.8470 +55703 64983 0.6240 +55703 65003 0.7710 +55703 65005 0.7750 +55703 65008 0.6980 +55703 65083 0.8080 +55703 65121 0.5640 +55703 65122 0.5640 +55703 79577 0.5970 +55703 79590 0.7530 +55703 79631 0.6790 +55703 79657 0.8230 +55703 79671 0.4060 +55703 79871 0.6440 +55703 79954 0.6070 +55703 79979 0.4630 +55703 80820 0.4460 +55703 81570 0.4430 +55703 81627 0.4640 +55703 83480 0.4330 +55703 83743 0.4350 +55703 84128 0.5410 +55703 84135 0.4220 +55703 84154 0.6280 +55703 84172 0.9130 +55703 84232 0.9140 +55703 84246 0.5930 +55703 84265 0.9980 +55703 84337 0.7430 +55703 84627 0.4160 +55703 84893 0.5800 +55703 84916 0.6250 +55703 84946 0.4160 +55703 85456 0.5190 +55703 85476 0.6920 +55703 87178 0.7240 +55703 90488 0.4680 +55703 91875 0.5540 +55703 91893 0.4240 +55703 92399 0.5130 +55703 92856 0.4370 +55703 112495 0.5020 +55703 117246 0.6610 +55703 122622 0.4410 +55703 123169 0.5160 +55703 124454 0.4030 +55703 126402 0.7690 +55703 127428 0.4790 +55703 140801 0.7150 +55703 142940 0.4400 +55703 149483 0.4250 +55703 165545 0.4640 +55703 170082 0.4840 +55703 171568 0.9990 +55703 219927 0.6990 +55703 221078 0.6230 +55703 221264 0.4010 +55703 221830 0.8810 +55703 246721 0.5200 +55703 255394 0.5700 +55703 285025 0.4140 +55703 285855 0.7180 +55703 340602 0.4250 +55703 343068 0.5640 +55703 343070 0.5640 +55703 345630 0.6070 +55703 347487 0.6780 +55703 387129 0.7150 +55703 387332 0.5170 +55703 390999 0.5640 +55703 391002 0.5640 +55703 399949 0.4160 +55703 400735 0.5640 +55703 400736 0.5640 +55703 440560 0.5640 +55703 440561 0.5640 +55703 440672 0.4100 +55703 441873 0.5640 +55703 448834 0.4250 +55703 548644 0.5200 +55703 641776 0.6010 +55703 643909 0.6010 +55703 645359 0.5640 +55703 653619 0.5640 +55703 653689 0.4490 +55703 692312 0.4570 +55703 728524 0.6010 +55703 728689 0.4200 +55703 729528 0.5640 +55703 100134938 0.5170 +55703 100287482 0.6780 +55703 100505478 0.7150 +55703 100526842 0.8000 +55703 100996746 0.6010 +55703 101929983 0.5640 +55703 105180390 0.6010 +55703 105180391 0.6010 +55703 107983993 0.5170 +55703 122455342 0.4250 +55704 60626 0.4470 +55704 80145 0.4390 +55704 81565 0.7380 +55704 85458 0.4120 +55705 55832 0.4720 +55705 57510 0.7090 +55705 64328 0.5550 +55705 79711 0.7570 +55705 81611 0.4160 +55705 84516 0.4390 +55705 94239 0.4740 +55705 149345 0.6780 +55705 266812 0.5130 +55705 345456 0.7220 +55705 375189 0.7730 +55705 387332 0.4940 +55705 399949 0.4290 +55705 402569 0.4650 +55706 55746 0.9560 +55706 57122 0.9740 +55706 57187 0.4050 +55706 64418 0.5000 +55706 65109 0.5100 +55706 79023 0.9640 +55706 79228 0.4160 +55706 79760 0.4050 +55706 79833 0.4270 +55706 79902 0.9840 +55706 80145 0.4280 +55706 81608 0.4110 +55706 81929 0.9880 +55706 83597 0.4740 +55706 84248 0.4040 +55706 84271 0.5090 +55706 84321 0.4240 +55706 84324 0.4100 +55706 84866 0.5410 +55706 89894 0.5060 +55706 91754 0.4120 +55706 92162 0.4460 +55706 124404 0.5600 +55706 129401 0.9990 +55706 131920 0.4330 +55706 155006 0.4800 +55706 157313 0.4140 +55706 200728 0.4950 +55706 259266 0.4160 +55706 348995 0.9810 +55706 728343 0.5020 +55706 100101267 0.6300 +55707 55738 0.4110 +55707 56479 0.7200 +55707 57095 0.4390 +55707 58513 0.8320 +55707 60592 0.4110 +55707 80115 0.7200 +55707 83988 0.7200 +55707 84251 0.7750 +55707 85021 0.5040 +55707 115548 0.7110 +55707 118424 0.8740 +55707 122616 0.5400 +55707 130340 0.5430 +55707 132320 0.4210 +55707 150350 0.5980 +55707 441150 0.4180 +55707 100532724 0.5180 +55709 56204 0.4160 +55709 64062 0.4490 +55709 93166 0.6210 +55709 114971 0.4640 +55709 143384 0.6160 +55709 151887 0.4050 +55709 255374 0.4600 +55709 376940 0.4240 +55711 84188 0.9060 +55711 115817 0.4570 +55711 132141 0.6010 +55711 132949 0.4790 +55711 158833 0.4720 +55711 158835 0.4580 +55711 195814 0.4550 +55711 200150 0.4230 +55714 56134 0.4150 +55714 64067 0.4640 +55714 338917 0.4710 +55715 55758 0.4380 +55715 56916 0.4120 +55715 64096 0.4990 +55715 79929 0.4100 +55715 79930 0.4520 +55715 92922 0.5020 +55715 285489 0.5130 +55715 339366 0.5490 +55716 55788 0.4200 +55716 55904 0.4090 +55716 57491 0.7000 +55716 60681 0.5700 +55716 79091 0.4450 +55716 79807 0.4010 +55716 79962 0.4890 +55716 80262 0.4110 +55716 84961 0.5110 +55716 116443 0.4020 +55716 145773 0.5020 +55716 158234 0.4400 +55717 55968 0.4050 +55717 57590 0.5390 +55717 60412 0.5650 +55717 60684 0.6840 +55717 64149 0.9440 +55717 79829 0.8400 +55717 80208 0.5560 +55717 114885 0.4410 +55717 157769 0.6470 +55717 160428 0.6190 +55717 253959 0.4260 +55718 55814 0.9830 +55718 56647 0.5150 +55718 57050 0.6320 +55718 64425 0.6340 +55718 79042 0.6020 +55718 79050 0.4950 +55718 79657 0.7490 +55718 80758 0.4430 +55718 81572 0.4640 +55718 81627 0.5320 +55718 81932 0.4380 +55718 84172 0.8560 +55718 84232 0.9100 +55718 84265 0.9970 +55718 84294 0.4450 +55718 84299 0.4830 +55718 84549 0.4190 +55718 84916 0.4040 +55718 112495 0.4990 +55718 116143 0.7300 +55718 127428 0.4330 +55718 146177 0.6190 +55718 170082 0.4330 +55718 171568 0.9990 +55718 255762 0.5110 +55718 387332 0.4730 +55718 730094 0.4540 +55719 56160 0.9040 +55719 56652 0.7640 +55719 56852 0.9240 +55719 64925 0.4020 +55719 79677 0.9550 +55719 84250 0.9990 +55719 85395 0.4080 +55719 146050 0.4710 +55719 153657 0.4150 +55719 197370 0.9270 +55719 254225 0.4420 +55719 286053 0.8830 +55719 375484 0.5420 +55719 387082 0.5400 +55719 493861 0.5400 +55719 100289635 0.4520 +55720 55759 0.9480 +55720 55760 0.6850 +55720 55781 0.9990 +55720 55794 0.7240 +55720 55813 0.8750 +55720 56342 0.6140 +55720 56902 0.9980 +55720 57050 0.8140 +55720 57062 0.8350 +55720 57418 0.5950 +55720 57459 0.5030 +55720 57510 0.5430 +55720 57647 0.5700 +55720 57696 0.5510 +55720 60487 0.4150 +55720 63899 0.4010 +55720 64216 0.9720 +55720 64318 0.9000 +55720 64425 0.7590 +55720 64434 0.4830 +55720 64794 0.7780 +55720 64960 0.4520 +55720 64969 0.4890 +55720 65080 0.5240 +55720 65083 0.9240 +55720 65095 0.6580 +55720 79009 0.4610 +55720 79039 0.8570 +55720 79050 0.9330 +55720 79571 0.8880 +55720 79711 0.4480 +55720 79863 0.4480 +55720 79954 0.9500 +55720 79979 0.4900 +55720 80135 0.7500 +55720 83475 0.5900 +55720 83732 0.9430 +55720 83743 0.9160 +55720 84128 0.9300 +55720 84135 0.7540 +55720 84154 0.9050 +55720 84172 0.9910 +55720 84273 0.5180 +55720 84294 0.6840 +55720 84319 0.4710 +55720 84365 0.8620 +55720 84549 0.8700 +55720 84916 0.8890 +55720 84946 0.9990 +55720 85395 0.9300 +55720 90121 0.9530 +55720 92170 0.4860 +55720 92856 0.8630 +55720 92949 0.4370 +55720 114987 0.5210 +55720 115708 0.8330 +55720 115939 0.8270 +55720 116966 0.7610 +55720 117246 0.9570 +55720 140032 0.6400 +55720 146212 0.7710 +55720 147991 0.5800 +55720 153443 0.7470 +55720 155368 0.6020 +55720 161424 0.9030 +55720 165545 0.6830 +55720 221078 0.8250 +55720 221830 0.8460 +55720 285855 0.5820 +55720 317781 0.4490 +55720 345630 0.4530 +55720 387129 0.5350 +55720 387338 0.4640 +55720 692312 0.5860 +55720 100505478 0.4110 +55720 100529239 0.8950 +55720 102157402 0.4950 +55720 102800317 0.4720 +55720 114483834 0.4780 +55721 79140 0.5040 +55721 79906 0.5330 +55721 80174 0.4070 +55721 89796 0.4790 +55721 148137 0.7920 +55721 246330 0.4930 +55721 252884 0.4640 +55722 55755 0.4190 +55722 55857 0.6620 +55722 55930 0.4620 +55722 57559 0.4240 +55722 57662 0.4440 +55722 64770 0.8110 +55722 79441 0.5070 +55722 79866 0.5530 +55722 80184 0.7950 +55722 93323 0.5200 +55722 115106 0.5180 +55722 117177 0.5400 +55722 117178 0.4790 +55722 121441 0.4020 +55722 126731 0.4390 +55722 152206 0.5950 +55722 153241 0.4540 +55722 157848 0.4470 +55722 162282 0.5940 +55722 164395 0.5940 +55722 201255 0.4110 +55722 256815 0.5940 +55722 285331 0.5410 +55722 388963 0.6020 +55722 728642 0.4990 +55723 55789 0.4090 +55723 55833 0.4010 +55723 55839 0.5690 +55723 56943 0.4490 +55723 56992 0.4490 +55723 57405 0.4440 +55723 57697 0.4470 +55723 63922 0.4150 +55723 64151 0.4830 +55723 64779 0.5970 +55723 64946 0.4360 +55723 79019 0.6920 +55723 79711 0.9660 +55723 79733 0.4640 +55723 79915 0.4250 +55723 80119 0.7550 +55723 81620 0.6470 +55723 83461 0.8090 +55723 83540 0.4890 +55723 83879 0.5050 +55723 84135 0.6930 +55723 84529 0.7320 +55723 84942 0.4510 +55723 90381 0.4450 +55723 92797 0.5360 +55723 94239 0.6900 +55723 113130 0.6030 +55723 113444 0.6200 +55723 121504 0.9460 +55723 126961 0.9610 +55723 128239 0.4580 +55723 140767 0.4030 +55723 146059 0.8900 +55723 146909 0.5150 +55723 151648 0.5180 +55723 166979 0.5560 +55723 220134 0.5890 +55723 221120 0.4100 +55723 246243 0.4010 +55723 253714 0.8740 +55723 254048 0.7930 +55723 254394 0.4490 +55723 257218 0.4100 +55723 259266 0.6030 +55723 266743 0.5760 +55723 333932 0.9390 +55723 340096 0.4440 +55723 391769 0.4420 +55723 440093 0.9190 +55723 440686 0.9180 +55723 554313 0.9450 +55723 653604 0.9910 +55726 55756 0.9630 +55726 57117 0.9290 +55726 57508 0.9730 +55726 60488 0.4350 +55726 64859 0.6300 +55726 65083 0.5270 +55726 65123 0.9990 +55726 79027 0.5910 +55726 79034 0.8820 +55726 79035 0.5520 +55726 80789 0.9990 +55726 81556 0.9990 +55726 92105 0.9770 +55726 203522 0.7890 +55726 441519 0.5990 +55726 441521 0.5990 +55726 541465 0.5990 +55726 541466 0.5990 +55726 728911 0.5990 +55726 101060211 0.5990 +55726 102723631 0.5990 +55726 102723680 0.5990 +55726 102723737 0.5990 +55727 55959 0.5070 +55727 57578 0.4490 +55727 64410 0.4620 +55727 84541 0.4460 +55728 55967 0.5200 +55728 80008 0.4630 +55728 80205 0.5290 +55728 91584 0.5910 +55728 112812 0.4180 +55728 119391 0.4260 +55728 163081 0.5530 +55728 201895 0.4110 +55728 102723555 0.4470 +55729 57654 0.4420 +55729 80063 0.7470 +55729 81037 0.7080 +55729 81848 0.5540 +55729 83852 0.7290 +55729 84319 0.4110 +55729 84787 0.5170 +55729 120534 0.9420 +55729 283820 0.4340 +55729 408050 0.4260 +55729 440093 0.7470 +55729 440686 0.7410 +55729 644100 0.4830 +55729 653604 0.8390 +55731 57116 0.4320 +55731 80745 0.4300 +55731 136853 0.4840 +55731 137209 0.4880 +55731 158234 0.4470 +55731 255762 0.6410 +55731 283635 0.4300 +55731 285989 0.4520 +55731 390038 0.5260 +55732 56992 0.6200 +55732 57732 0.5010 +55732 63979 0.6630 +55732 64151 0.6320 +55732 83540 0.4810 +55732 84515 0.4220 +55732 90488 0.4410 +55732 133584 0.4350 +55732 146909 0.5060 +55732 151246 0.5590 +55732 203197 0.4650 +55732 259266 0.5400 +55733 57758 0.5660 +55733 64840 0.6270 +55733 79728 0.8070 +55733 80344 0.4720 +55733 84694 0.4170 +55733 84976 0.4230 +55733 132949 0.8000 +55733 169841 0.4490 +55733 619373 0.6110 +55734 57505 0.4630 +55734 64782 0.4240 +55734 83746 0.4560 +55734 84069 0.4300 +55734 84273 0.4460 +55734 124454 0.4530 +55734 221785 0.4360 +55734 339453 0.4180 +55735 56993 0.7830 +55735 57110 0.4200 +55735 64210 0.4990 +55735 65260 0.4850 +55735 79135 0.9550 +55735 79962 0.4020 +55735 80273 0.6470 +55735 80305 0.4240 +55735 80789 0.4780 +55735 81570 0.5010 +55735 83858 0.4890 +55735 84134 0.6710 +55735 84277 0.5770 +55735 84303 0.9190 +55735 84717 0.4110 +55735 85406 0.4130 +55735 90326 0.6280 +55735 91137 0.6270 +55735 116835 0.4850 +55735 118461 0.4200 +55735 120526 0.4410 +55735 125988 0.9260 +55735 131118 0.4370 +55735 134266 0.4570 +55735 139322 0.9580 +55735 140459 0.4020 +55735 145853 0.4010 +55735 220441 0.4340 +55735 259217 0.4320 +55735 285315 0.4090 +55735 339416 0.4280 +55735 344838 0.4420 +55735 345778 0.8590 +55735 387990 0.5630 +55735 388633 0.4200 +55735 400916 0.5600 +55735 401505 0.7250 +55735 440574 0.9380 +55735 643338 0.4310 +55735 100188893 0.5520 +55737 55795 0.4830 +55737 55907 0.6230 +55737 57020 0.7260 +55737 57182 0.7810 +55737 57537 0.7610 +55737 57617 0.5470 +55737 58533 0.9970 +55737 64083 0.6970 +55737 64215 0.4570 +55737 64601 0.4980 +55737 64786 0.6180 +55737 65018 0.8540 +55737 79065 0.7040 +55737 79594 0.7030 +55737 79608 0.5520 +55737 79922 0.6210 +55737 79971 0.8520 +55737 80208 0.6060 +55737 81609 0.9840 +55737 83871 0.4320 +55737 84079 0.8410 +55737 84084 0.4110 +55737 84196 0.5740 +55737 84286 0.4340 +55737 84313 0.6380 +55737 90324 0.4850 +55737 112574 0.4490 +55737 112936 0.9990 +55737 114815 0.7350 +55737 115708 0.6120 +55737 116442 0.6400 +55737 120892 0.9040 +55737 124997 0.4090 +55737 150684 0.7010 +55737 165918 0.5240 +55737 200576 0.4320 +55737 221424 0.4200 +55737 253725 0.9260 +55737 254122 0.6410 +55737 257364 0.4550 +55737 338382 0.6470 +55737 347517 0.4110 +55737 387680 0.9010 +55737 388272 0.4270 +55737 391356 0.4230 +55737 401548 0.6620 +55737 100287171 0.8650 +55738 55860 0.5290 +55738 56926 0.4610 +55738 56992 0.5060 +55738 57410 0.6330 +55738 60682 0.4220 +55738 64083 0.4110 +55738 64837 0.5560 +55738 65083 0.4370 +55738 79654 0.4550 +55738 80198 0.4500 +55738 81876 0.5840 +55738 81930 0.4990 +55738 84364 0.8990 +55738 84516 0.5130 +55738 84643 0.4990 +55738 85021 0.4360 +55738 89953 0.5310 +55738 90990 0.5500 +55738 93661 0.4990 +55738 115548 0.4250 +55738 120892 0.5330 +55738 124602 0.4990 +55738 140735 0.5090 +55738 146909 0.4990 +55738 147700 0.5170 +55738 221458 0.4990 +55738 285643 0.4990 +55738 399909 0.4690 +55739 55787 0.5040 +55739 55862 0.4980 +55739 79587 0.4260 +55739 80153 0.7840 +55739 128240 0.9610 +55739 203062 0.5060 +55739 374887 0.8680 +55740 64689 0.4220 +55740 65059 0.7350 +55740 80004 0.9040 +55740 81607 0.6560 +55740 147179 0.6710 +55740 345456 0.6910 +55740 375189 0.7150 +55740 388939 0.4560 +55741 55757 0.6680 +55741 56886 0.6980 +55741 57446 0.4060 +55741 63917 0.4460 +55741 64714 0.4010 +55741 79139 0.5360 +55741 80267 0.9580 +55741 81567 0.4690 +55741 84447 0.5700 +55741 84975 0.4390 +55741 91319 0.4880 +55741 91373 0.5650 +55741 129804 0.4710 +55741 283991 0.4890 +55742 55823 0.4300 +55742 57514 0.5680 +55742 64098 0.9400 +55742 80895 0.4800 +55742 83660 0.9410 +55742 83706 0.6040 +55742 96626 0.8840 +55742 146562 0.4370 +55742 253959 0.4130 +55742 285641 0.6560 +55742 100288695 0.4460 +55743 64420 0.4790 +55743 81847 0.5680 +55743 84897 0.4030 +55743 140628 0.4500 +55743 196403 0.6150 +55743 200558 0.9790 +55744 55863 0.6880 +55744 55967 0.5240 +55744 79133 0.7780 +55744 84987 0.8020 +55744 90639 0.4020 +55744 91942 0.6080 +55744 118490 0.7540 +55744 126328 0.5390 +55744 137682 0.5320 +55744 374291 0.5160 +55744 388753 0.5960 +55744 389203 0.5270 +55744 493753 0.5510 +55744 100131801 0.4830 +55744 100303755 0.5400 +55745 57510 0.4340 +55745 57704 0.4580 +55745 58508 0.5000 +55745 64420 0.4600 +55745 80208 0.8380 +55745 81492 0.4220 +55745 84251 0.7380 +55745 89884 0.5420 +55745 91056 0.9960 +55745 122553 0.4870 +55745 122616 0.5400 +55745 130340 0.7500 +55745 140462 0.4560 +55745 345895 0.4220 +55745 100423062 0.4480 +55745 100526783 0.4310 +55746 57122 0.9990 +55746 57187 0.6190 +55746 57510 0.4150 +55746 57609 0.4320 +55746 57727 0.6680 +55746 59343 0.7660 +55746 60558 0.4380 +55746 65109 0.5500 +55746 79023 0.9990 +55746 79228 0.4160 +55746 79760 0.4160 +55746 79833 0.4530 +55746 79902 0.9990 +55746 80145 0.4480 +55746 81565 0.4780 +55746 81608 0.4570 +55746 81929 0.9990 +55746 84220 0.4190 +55746 84248 0.5280 +55746 84271 0.5700 +55746 84321 0.5950 +55746 84324 0.5450 +55746 84823 0.4020 +55746 84942 0.6320 +55746 91181 0.4760 +55746 91754 0.4770 +55746 112858 0.4970 +55746 116835 0.4240 +55746 120892 0.6110 +55746 129401 0.9850 +55746 137362 0.4990 +55746 140609 0.4050 +55746 140735 0.6340 +55746 157869 0.5020 +55746 197322 0.5110 +55746 199746 0.4310 +55746 221150 0.4430 +55746 259217 0.4240 +55746 283987 0.4660 +55746 284403 0.4010 +55746 348995 0.9990 +55746 376497 0.5060 +55746 389170 0.4060 +55746 653489 0.4280 +55746 728343 0.6220 +55746 729540 0.4190 +55746 729857 0.8030 +55746 100101267 0.8360 +55748 56267 0.5280 +55748 56896 0.4160 +55748 57571 0.9630 +55748 64081 0.5100 +55748 64174 0.5790 +55748 64180 0.4540 +55748 64714 0.4960 +55748 81494 0.5440 +55748 84735 0.9640 +55748 113451 0.4680 +55748 121260 0.4140 +55748 123228 0.4060 +55748 138199 0.9350 +55748 162417 0.4380 +55748 285782 0.7910 +55748 339896 0.9180 +55749 57187 0.5330 +55749 57794 0.8030 +55749 57819 0.5070 +55749 58517 0.8820 +55749 79009 0.5610 +55749 79171 0.5480 +55749 84246 0.4090 +55749 84842 0.4080 +55749 125206 0.4020 +55749 140890 0.5010 +55749 162989 0.5110 +55749 219736 0.5610 +55749 259282 0.4560 +55750 56829 0.5020 +55750 56894 0.9160 +55750 56895 0.9090 +55750 57085 0.5240 +55750 57104 0.9100 +55750 57670 0.6710 +55750 57678 0.9110 +55750 64969 0.4580 +55750 79731 0.4460 +55750 80168 0.9050 +55750 80339 0.9000 +55750 80853 0.4990 +55750 81031 0.4540 +55750 83607 0.4090 +55750 84803 0.9140 +55750 84947 0.6240 +55750 84950 0.5590 +55750 90580 0.9990 +55750 92609 0.5300 +55750 92667 0.4890 +55750 94081 0.4130 +55750 114971 0.4790 +55750 116255 0.9040 +55750 118980 0.5050 +55750 119548 0.9020 +55750 119559 0.4250 +55750 129642 0.9160 +55750 131118 0.5370 +55750 132001 0.5420 +55750 137964 0.9080 +55750 148581 0.4130 +55750 150763 0.9070 +55750 154141 0.9000 +55750 158234 0.5400 +55750 253558 0.9210 +55750 346606 0.9130 +55750 374291 0.4250 +55750 100287932 0.4120 +55751 57102 0.6300 +55751 63877 0.6260 +55751 81631 0.4110 +55751 84240 0.4980 +55751 84320 0.5650 +55751 84557 0.4090 +55751 84661 0.4370 +55751 90826 0.7320 +55751 113829 0.4330 +55751 131920 0.4740 +55751 221458 0.4260 +55751 440738 0.4190 +55751 643246 0.4090 +55752 55964 0.9780 +55752 56155 0.4330 +55752 90120 0.5570 +55752 116983 0.6110 +55752 122809 0.5920 +55752 124404 0.9860 +55752 148170 0.5100 +55752 151011 0.9790 +55752 167555 0.4230 +55752 346288 0.8620 +55753 56954 0.8110 +55753 57494 0.8250 +55753 64577 0.4270 +55753 80325 0.4180 +55753 83787 0.4130 +55753 84076 0.4520 +55753 84706 0.8380 +55753 92259 0.8140 +55753 114112 0.6360 +55753 114884 0.4260 +55753 130752 0.6010 +55753 137362 0.8900 +55753 160287 0.4010 +55753 259307 0.8050 +55753 285343 0.6100 +55753 414149 0.4010 +55754 57194 0.9890 +55754 57198 0.9750 +55754 57205 0.9850 +55754 79895 0.9400 +55754 90701 0.4230 +55754 126549 0.4400 +55754 143458 0.4520 +55754 148229 0.8780 +55754 161291 0.6350 +55754 196527 0.4920 +55754 286410 0.9990 +55754 374868 0.6720 +55755 55835 0.9510 +55755 57082 0.5130 +55755 57448 0.6210 +55755 57701 0.7920 +55755 63925 0.5990 +55755 64770 0.6350 +55755 79096 0.4130 +55755 79441 0.5530 +55755 79648 0.9420 +55755 79705 0.4620 +55755 79866 0.5040 +55755 80097 0.4350 +55755 85378 0.7050 +55755 85459 0.6150 +55755 93323 0.6300 +55755 114791 0.6610 +55755 115106 0.6100 +55755 116840 0.6820 +55755 117177 0.5010 +55755 117178 0.6160 +55755 121441 0.7840 +55755 134359 0.4090 +55755 152185 0.4120 +55755 153241 0.5170 +55755 163786 0.7300 +55755 201134 0.5180 +55755 201255 0.7670 +55755 259266 0.9340 +55755 284403 0.8870 +55755 343099 0.5290 +55755 440145 0.6990 +55755 653784 0.9470 +55755 728642 0.5040 +55756 56903 0.4800 +55756 57117 0.9760 +55756 57508 0.9880 +55756 60528 0.5040 +55756 63894 0.5300 +55756 64848 0.4020 +55756 64859 0.6420 +55756 64895 0.4960 +55756 65123 0.9990 +55756 79034 0.7300 +55756 79035 0.8110 +55756 80335 0.6460 +55756 80789 0.9990 +55756 81556 0.9750 +55756 81608 0.4600 +55756 84524 0.4860 +55756 92105 0.9990 +55756 114294 0.7670 +55756 143884 0.5240 +55756 203522 0.7040 +55756 255374 0.4640 +55756 283638 0.4600 +55756 441519 0.6040 +55756 441521 0.6040 +55756 541465 0.6040 +55756 541466 0.6040 +55756 728911 0.6040 +55756 101060211 0.6040 +55756 102723631 0.6040 +55756 102723680 0.6040 +55756 102723737 0.6040 +55757 55829 0.4590 +55757 55856 0.4100 +55757 56886 0.9110 +55757 57134 0.4160 +55757 57521 0.6440 +55757 57541 0.4130 +55757 79087 0.4420 +55757 79139 0.4620 +55757 80020 0.5690 +55757 80267 0.6270 +55757 83719 0.4090 +55757 84061 0.4280 +55757 84572 0.4090 +55757 125972 0.4300 +55757 140432 0.4250 +55757 140606 0.5390 +55757 201595 0.6220 +55757 440138 0.4530 +55757 728591 0.4030 +55758 65117 0.4800 +55758 84456 0.4320 +55758 84922 0.4090 +55758 90806 0.4480 +55758 112885 0.7990 +55758 221656 0.5590 +55758 283248 0.4960 +55758 440730 0.4290 +55759 55760 0.4400 +55759 55781 0.6650 +55759 55794 0.7320 +55759 55813 0.8810 +55759 56342 0.8310 +55759 56647 0.6910 +55759 56902 0.7960 +55759 56915 0.4790 +55759 57050 0.7560 +55759 57062 0.9400 +55759 57109 0.6220 +55759 57418 0.9660 +55759 57647 0.6700 +55759 57696 0.9770 +55759 60487 0.7230 +55759 63899 0.6390 +55759 64118 0.4030 +55759 64216 0.6520 +55759 64318 0.9920 +55759 64425 0.6730 +55759 64794 0.8740 +55759 64968 0.5870 +55759 65008 0.4020 +55759 65065 0.5210 +55759 65083 0.7840 +55759 65095 0.6120 +55759 65264 0.7490 +55759 79009 0.6020 +55759 79023 0.4310 +55759 79039 0.8070 +55759 79050 0.9250 +55759 79137 0.4190 +55759 79159 0.8830 +55759 79571 0.6000 +55759 79590 0.6790 +55759 79631 0.5150 +55759 79707 0.7620 +55759 79720 0.6280 +55759 79730 0.6390 +55759 79954 0.7170 +55759 80135 0.9920 +55759 80324 0.7920 +55759 81627 0.5260 +55759 81887 0.6420 +55759 81929 0.6500 +55759 83473 0.4140 +55759 83475 0.4050 +55759 83479 0.5580 +55759 83480 0.5800 +55759 83743 0.9080 +55759 84128 0.9250 +55759 84135 0.8690 +55759 84154 0.9940 +55759 84172 0.8600 +55759 84273 0.6870 +55759 84294 0.6610 +55759 84319 0.4670 +55759 84365 0.9980 +55759 84439 0.4710 +55759 84549 0.9980 +55759 84722 0.4930 +55759 84916 0.9390 +55759 84946 0.7840 +55759 85476 0.4140 +55759 87178 0.5410 +55759 88745 0.6690 +55759 90441 0.7210 +55759 91646 0.5990 +55759 91782 0.4270 +55759 92170 0.6570 +55759 92856 0.9900 +55759 116832 0.7170 +55759 116966 0.6620 +55759 117246 0.9960 +55759 126789 0.5760 +55759 130026 0.5710 +55759 140801 0.7190 +55759 142940 0.8290 +55759 146212 0.9630 +55759 150160 0.4020 +55759 150864 0.4480 +55759 153443 0.6910 +55759 161424 0.8110 +55759 162427 0.4160 +55759 165545 0.4370 +55759 200916 0.8950 +55759 221078 0.9470 +55759 221692 0.5710 +55759 221830 0.8360 +55759 254268 0.7320 +55759 256471 0.4970 +55759 285855 0.9450 +55759 317781 0.6620 +55759 344758 0.5470 +55759 345630 0.5250 +55759 375056 0.5110 +55759 387129 0.8610 +55759 387338 0.6640 +55759 645051 0.4120 +55759 645073 0.4120 +55759 692312 0.5310 +55759 729396 0.4120 +55759 729422 0.4120 +55759 729428 0.4120 +55759 729431 0.4120 +55759 729442 0.4120 +55759 729447 0.4120 +55759 100008586 0.4120 +55759 100132399 0.4120 +55759 100505478 0.7850 +55759 100526842 0.7650 +55759 100529097 0.4790 +55759 102157402 0.4930 +55759 102724473 0.4120 +55760 55781 0.5100 +55760 55794 0.4370 +55760 55813 0.6350 +55760 56342 0.4470 +55760 56647 0.9630 +55760 56902 0.4380 +55760 56919 0.5680 +55760 56949 0.5940 +55760 57050 0.9100 +55760 57062 0.6090 +55760 57647 0.6440 +55760 57696 0.5770 +55760 57707 0.4890 +55760 60487 0.4600 +55760 60625 0.5580 +55760 64216 0.4890 +55760 64318 0.6160 +55760 64425 0.6080 +55760 64434 0.4290 +55760 64794 0.5480 +55760 65083 0.7020 +55760 79009 0.4820 +55760 79039 0.6400 +55760 79050 0.5950 +55760 79446 0.6260 +55760 79571 0.4380 +55760 79665 0.6090 +55760 79954 0.6210 +55760 80135 0.4380 +55760 80331 0.5920 +55760 83479 0.4690 +55760 83743 0.5970 +55760 84128 0.7140 +55760 84135 0.5670 +55760 84140 0.6820 +55760 84154 0.7750 +55760 84172 0.7330 +55760 84294 0.4360 +55760 84365 0.5910 +55760 84549 0.4150 +55760 84916 0.7020 +55760 84946 0.6450 +55760 84955 0.8110 +55760 85479 0.5880 +55760 90957 0.4160 +55760 92565 0.7100 +55760 92856 0.6670 +55760 116966 0.7000 +55760 117246 0.4130 +55760 129807 0.4170 +55760 139231 0.6050 +55760 142940 0.5070 +55760 146212 0.4210 +55760 152687 0.4580 +55760 161424 0.5120 +55760 162427 0.4090 +55760 200879 0.5430 +55760 221078 0.6030 +55760 221830 0.5950 +55760 254427 0.4140 +55760 317781 0.4590 +55760 340745 0.4760 +55760 345630 0.5080 +55760 348995 0.4110 +55760 401647 0.4370 +55760 402635 0.5120 +55760 728116 0.4800 +55760 100131827 0.4690 +55760 101927581 0.4090 +55761 56061 0.4890 +55761 79037 0.4070 +55761 127018 0.4020 +55761 147699 0.4010 +55761 246175 0.5310 +55761 255231 0.4150 +55761 345757 0.4110 +55761 389396 0.4020 +55762 59348 0.4790 +55762 90333 0.5420 +55762 90576 0.4010 +55762 125893 0.7760 +55762 163050 0.4840 +55762 165545 0.4080 +55762 170958 0.4860 +55762 259293 0.4040 +55762 284613 0.4220 +55762 388558 0.6430 +55762 391712 0.4640 +55763 55770 0.9990 +55763 57511 0.7180 +55763 58480 0.4390 +55763 58485 0.4040 +55763 60412 0.9990 +55763 63027 0.4030 +55763 64762 0.4160 +55763 79058 0.5000 +55763 79657 0.4190 +55763 83540 0.4220 +55763 83548 0.6980 +55763 84062 0.4470 +55763 91828 0.8320 +55763 112755 0.5090 +55763 114088 0.5750 +55763 116841 0.4110 +55763 117177 0.7170 +55763 134957 0.4960 +55763 149371 0.9990 +55763 150946 0.4160 +55763 283849 0.9680 +55763 375189 0.4680 +55763 376267 0.4160 +55763 440730 0.4100 +55763 644145 0.5400 +55764 56623 0.4910 +55764 56912 0.8860 +55764 57539 0.9990 +55764 57545 0.4020 +55764 57560 0.9050 +55764 57576 0.4070 +55764 57728 0.9990 +55764 58533 0.8210 +55764 63916 0.7940 +55764 64753 0.4320 +55764 64792 0.8010 +55764 79659 0.7580 +55764 79738 0.4200 +55764 79767 0.7140 +55764 79809 0.9990 +55764 79867 0.4560 +55764 79989 0.8820 +55764 80173 0.8460 +55764 80184 0.5270 +55764 80776 0.4130 +55764 84465 0.7230 +55764 84466 0.8580 +55764 89891 0.6730 +55764 90410 0.8930 +55764 91147 0.4780 +55764 92104 0.6670 +55764 112752 0.9990 +55764 119710 0.9550 +55764 129880 0.6320 +55764 132884 0.4790 +55764 150737 0.8400 +55764 199223 0.7560 +55764 200894 0.4740 +55764 255758 0.5200 +55764 261734 0.4410 +55764 339829 0.6870 +55764 374654 0.4220 +55765 55860 0.4440 +55765 84516 0.4540 +55765 112869 0.4440 +55765 100130733 0.4010 +55766 55869 0.6860 +55766 56158 0.5000 +55766 56979 0.5290 +55766 57209 0.4210 +55766 57332 0.6020 +55766 57459 0.5050 +55766 57504 0.5330 +55766 58508 0.6020 +55766 64425 0.4180 +55766 64426 0.5000 +55766 79084 0.4030 +55766 79101 0.4010 +55766 79447 0.5030 +55766 79595 0.4990 +55766 79685 0.5210 +55766 79813 0.4910 +55766 79885 0.6890 +55766 80012 0.4990 +55766 83439 0.4990 +55766 83933 0.6890 +55766 84172 0.5440 +55766 84733 0.5110 +55766 84962 0.4990 +55766 85235 0.8790 +55766 85236 0.7710 +55766 90780 0.5530 +55766 93426 0.4990 +55766 94239 0.6190 +55766 121504 0.9290 +55766 121536 0.6390 +55766 126961 0.8620 +55766 128312 0.6860 +55766 157680 0.4040 +55766 158431 0.4570 +55766 192669 0.4990 +55766 192670 0.4990 +55766 221613 0.4080 +55766 255626 0.7180 +55766 256126 0.5010 +55766 283149 0.4990 +55766 317772 0.8030 +55766 333932 0.8610 +55766 341567 0.4340 +55766 387893 0.4670 +55766 440689 0.9420 +55766 474382 0.4330 +55766 554313 0.9240 +55766 644186 0.5200 +55766 653604 0.9270 +55766 723790 0.8030 +55766 728378 0.4590 +55768 55968 0.5650 +55768 56893 0.4350 +55768 64772 0.7880 +55768 79139 0.9050 +55768 79956 0.4160 +55768 80700 0.4110 +55768 83606 0.4760 +55768 84301 0.7240 +55768 84447 0.4850 +55768 87178 0.4210 +55768 90268 0.8150 +55768 91304 0.5050 +55768 93550 0.4180 +55768 137886 0.7330 +55768 143630 0.4410 +55768 151903 0.4680 +55768 414301 0.5940 +55769 548313 0.6470 +55770 56940 0.5710 +55770 57148 0.5840 +55770 57209 0.4470 +55770 57506 0.5470 +55770 57511 0.5580 +55770 59349 0.4440 +55770 60412 0.9990 +55770 64343 0.6270 +55770 64762 0.4110 +55770 79058 0.5440 +55770 79657 0.4580 +55770 79968 0.5170 +55770 80196 0.4360 +55770 81030 0.5790 +55770 81573 0.4460 +55770 83548 0.5040 +55770 91828 0.8570 +55770 116841 0.4130 +55770 117177 0.7350 +55770 123041 0.5660 +55770 133482 0.4310 +55770 135458 0.4900 +55770 149371 0.9990 +55770 150946 0.4110 +55770 158431 0.4180 +55770 252983 0.4590 +55770 283849 0.9800 +55770 285381 0.7890 +55770 340061 0.6190 +55770 376267 0.4160 +55770 644145 0.9510 +55771 63977 0.4600 +55771 79759 0.4200 +55771 84296 0.4120 +55771 146909 0.4400 +55771 150468 0.5130 +55771 348235 0.6170 +55773 55892 0.4510 +55773 56654 0.4200 +55773 57038 0.4090 +55773 57213 0.4190 +55773 57465 0.4840 +55773 57533 0.5430 +55773 57823 0.4200 +55773 64149 0.8320 +55773 64343 0.5420 +55773 64786 0.5160 +55773 79571 0.5490 +55773 81844 0.4090 +55773 93627 0.5260 +55773 114984 0.6050 +55773 125058 0.5350 +55773 128637 0.7100 +55773 157769 0.8190 +55773 161514 0.4830 +55773 254272 0.4360 +55773 387680 0.6390 +55773 729877 0.4250 +55773 100131187 0.4240 +55775 56852 0.4790 +55775 57697 0.7220 +55775 64421 0.6110 +55775 79008 0.4170 +55775 79661 0.6790 +55775 79840 0.6970 +55775 80198 0.8150 +55775 83932 0.7300 +55775 84464 0.4650 +55775 84901 0.4340 +55775 90141 0.4610 +55775 91442 0.4950 +55775 116447 0.8860 +55775 146956 0.5300 +55775 200558 0.9050 +55775 252969 0.5160 +55775 283677 0.4190 +55775 348654 0.5040 +55775 548593 0.5590 +55776 55916 0.4470 +55776 57149 0.4010 +55776 79269 0.4410 +55776 83795 0.4240 +55776 89822 0.4720 +55776 154007 0.4170 +55776 201140 0.6480 +55776 283489 0.4630 +55776 348262 0.6160 +55777 57492 0.4090 +55777 57680 0.5600 +55777 58508 0.4030 +55777 79813 0.6110 +55777 84679 0.4110 +55777 85235 0.4530 +55777 85358 0.4340 +55777 92815 0.4530 +55777 114785 0.5750 +55777 130574 0.4550 +55777 130576 0.5690 +55777 171023 0.8020 +55777 221613 0.4530 +55777 221656 0.8080 +55777 221937 0.8120 +55777 253959 0.4020 +55777 254048 0.4360 +55777 284058 0.4110 +55777 317772 0.4530 +55777 376940 0.5850 +55778 91833 0.5230 +55778 114826 0.4730 +55778 122616 0.4900 +55778 149095 0.4130 +55778 285267 0.4060 +55779 56650 0.4450 +55779 57639 0.4660 +55779 57728 0.6720 +55779 60494 0.4800 +55779 79819 0.4470 +55779 79846 0.8000 +55779 79925 0.6760 +55779 80217 0.6250 +55779 83449 0.4420 +55779 83894 0.6650 +55779 84071 0.6650 +55779 84074 0.8080 +55779 84229 0.4800 +55779 85452 0.4320 +55779 89876 0.6090 +55779 90288 0.6110 +55779 118491 0.7220 +55779 122481 0.6000 +55779 127254 0.6250 +55779 140732 0.4410 +55779 144406 0.4600 +55779 144535 0.4040 +55779 146754 0.5530 +55779 150483 0.4570 +55779 159686 0.5970 +55779 162333 0.4620 +55779 196385 0.4370 +55779 199223 0.6930 +55779 219557 0.5250 +55779 255101 0.5520 +55779 257236 0.4800 +55779 283417 0.4310 +55779 283629 0.4900 +55779 286464 0.5580 +55779 339829 0.6290 +55779 348793 0.5460 +55779 374407 0.4800 +55779 401024 0.6640 +55780 79633 0.5160 +55780 79738 0.7720 +55780 80273 0.5630 +55780 81570 0.4700 +55780 83752 0.4340 +55780 84140 0.7420 +55780 84197 0.4100 +55780 84498 0.5070 +55780 84892 0.4200 +55780 134266 0.5630 +55780 148789 0.4150 +55780 150160 0.9170 +55780 160418 0.5390 +55780 168090 0.4320 +55780 207063 0.5140 +55780 253769 0.4700 +55780 338382 0.4640 +55780 399693 0.4190 +55781 55813 0.7190 +55781 55892 0.7770 +55781 56342 0.7110 +55781 56902 0.9960 +55781 56952 0.4250 +55781 57050 0.6610 +55781 57470 0.4970 +55781 57521 0.4110 +55781 57696 0.5390 +55781 57703 0.4060 +55781 57721 0.4770 +55781 60487 0.4760 +55781 63931 0.4410 +55781 64172 0.4280 +55781 64216 0.9090 +55781 64318 0.5200 +55781 64425 0.6390 +55781 64431 0.4850 +55781 64794 0.4010 +55781 64960 0.6530 +55781 64963 0.5500 +55781 64969 0.7780 +55781 65083 0.6520 +55781 65095 0.4360 +55781 79009 0.6210 +55781 79039 0.4660 +55781 79050 0.8660 +55781 79571 0.8880 +55781 79954 0.6390 +55781 80135 0.6460 +55781 80143 0.4290 +55781 83480 0.4010 +55781 83732 0.9850 +55781 83743 0.5530 +55781 83939 0.5340 +55781 84128 0.7840 +55781 84135 0.6990 +55781 84154 0.7340 +55781 84186 0.5090 +55781 84285 0.4100 +55781 84294 0.6840 +55781 84306 0.4710 +55781 84365 0.6550 +55781 84549 0.5800 +55781 84630 0.4640 +55781 84916 0.5340 +55781 84946 0.9990 +55781 85395 0.6580 +55781 90121 0.8000 +55781 92856 0.8040 +55781 112858 0.4610 +55781 114987 0.8500 +55781 115708 0.4430 +55781 115939 0.4870 +55781 117246 0.6770 +55781 120534 0.4830 +55781 123169 0.5030 +55781 126402 0.6810 +55781 140032 0.7890 +55781 146057 0.4780 +55781 153443 0.7070 +55781 155368 0.5730 +55781 161424 0.6700 +55781 165545 0.4430 +55781 167410 0.5820 +55781 221830 0.6920 +55781 253260 0.4790 +55781 317781 0.4200 +55781 345757 0.5270 +55781 347487 0.6310 +55781 692312 0.6280 +55781 100287482 0.4530 +55781 100529239 0.7540 +55781 102157402 0.5810 +55781 102800317 0.6240 +55783 57721 0.4550 +55783 63899 0.4660 +55783 63935 0.4390 +55783 80011 0.5070 +55783 81627 0.4100 +55783 83640 0.4960 +55783 117246 0.4200 +55783 140460 0.4320 +55783 145483 0.4390 +55783 152992 0.4910 +55783 221184 0.4820 +55784 56942 0.4250 +55784 56963 0.5800 +55784 57231 0.4270 +55784 57699 0.4720 +55784 63977 0.4300 +55784 83988 0.4620 +55784 114134 0.4120 +55784 121601 0.4990 +55784 130827 0.4720 +55784 154664 0.4060 +55784 285175 0.4300 +55784 375449 0.4260 +55784 390323 0.5110 +55785 57761 0.6690 +55785 84106 0.4080 +55785 84190 0.5440 +55785 116449 0.4230 +55785 127933 0.4020 +55785 147699 0.5200 +55785 257144 0.4840 +55786 84671 0.4270 +55786 162963 0.5130 +55786 647589 0.4290 +55787 56474 0.4160 +55787 57481 0.5160 +55787 57502 0.5410 +55787 65983 0.5980 +55787 79088 0.4240 +55787 80765 0.4430 +55787 90316 0.4730 +55787 90655 0.4590 +55787 90665 0.5320 +55787 94056 0.5470 +55787 152518 0.4360 +55787 167838 0.6480 +55787 200081 0.8530 +55787 283489 0.5680 +55787 342538 0.4080 +55787 643311 0.5070 +55788 81693 0.5410 +55788 84693 0.6150 +55788 112609 0.4140 +55788 166785 0.9750 +55788 197322 0.4180 +55788 222553 0.4140 +55788 285761 0.4480 +55788 326625 0.9550 +55789 55839 0.4060 +55789 55914 0.4110 +55789 55971 0.4130 +55789 56992 0.8170 +55789 57082 0.4710 +55789 57381 0.5530 +55789 57405 0.5730 +55789 57650 0.4490 +55789 58480 0.6170 +55789 63967 0.4060 +55789 64105 0.4310 +55789 64151 0.7390 +55789 64682 0.6060 +55789 64793 0.4680 +55789 64946 0.4200 +55789 65124 0.4220 +55789 79019 0.4460 +55789 79733 0.5870 +55789 79801 0.5870 +55789 79807 0.4670 +55789 79866 0.5350 +55789 79993 0.4230 +55789 80346 0.4480 +55789 81610 0.6990 +55789 81624 0.6210 +55789 81839 0.4190 +55789 81930 0.5260 +55789 83461 0.5660 +55789 83540 0.8100 +55789 83879 0.5140 +55789 84057 0.7760 +55789 84318 0.5460 +55789 90381 0.4120 +55789 90624 0.4130 +55789 91057 0.5420 +55789 91942 0.4170 +55789 92255 0.5110 +55789 113130 0.5590 +55789 128239 0.5520 +55789 143098 0.4060 +55789 144402 0.4060 +55789 146909 0.4130 +55789 150468 0.6450 +55789 151246 0.5320 +55789 151648 0.4820 +55789 157313 0.7230 +55789 157570 0.5240 +55789 162681 0.4450 +55789 171177 0.5710 +55789 195828 0.6050 +55789 200894 0.4130 +55789 220042 0.4050 +55789 220134 0.5400 +55789 221150 0.6010 +55789 259266 0.6510 +55789 284119 0.4330 +55789 284992 0.5480 +55789 387103 0.4080 +55789 653820 0.4280 +55790 56255 0.4870 +55790 56548 0.6650 +55790 63827 0.6130 +55790 64131 0.6340 +55790 64132 0.5660 +55790 64711 0.4150 +55790 79586 0.9610 +55790 92126 0.4050 +55790 92370 0.4030 +55790 113189 0.5990 +55790 126792 0.5480 +55790 166012 0.6070 +55790 253559 0.4140 +55790 266722 0.4090 +55790 337876 0.9240 +55790 347734 0.4540 +55791 57610 0.4340 +55791 64795 0.4290 +55791 66008 0.5300 +55791 84328 0.4890 +55791 84450 0.4730 +55791 125997 0.4010 +55791 129868 0.4160 +55791 100288687 0.6220 +55793 57646 0.4530 +55793 78990 0.4040 +55793 79864 0.4160 +55793 80013 0.5420 +55793 84182 0.6490 +55793 84196 0.4160 +55793 84749 0.4170 +55793 84954 0.5120 +55793 123720 0.4070 +55793 126119 0.5800 +55793 139562 0.4170 +55793 221302 0.6150 +55793 284111 0.7900 +55794 56342 0.5940 +55794 56652 0.4520 +55794 56902 0.4900 +55794 56919 0.4180 +55794 56931 0.5280 +55794 57050 0.9280 +55794 57062 0.6620 +55794 57129 0.8880 +55794 57136 0.4900 +55794 57418 0.6080 +55794 57647 0.4130 +55794 57696 0.7910 +55794 60493 0.5330 +55794 60528 0.4130 +55794 60625 0.4480 +55794 63875 0.8990 +55794 63899 0.4530 +55794 64216 0.5610 +55794 64318 0.7190 +55794 64434 0.4220 +55794 64794 0.7220 +55794 64928 0.8050 +55794 64965 0.4250 +55794 64975 0.8130 +55794 64978 0.9100 +55794 64981 0.8230 +55794 64983 0.8580 +55794 65003 0.9150 +55794 65005 0.8600 +55794 65080 0.8540 +55794 65083 0.4770 +55794 65095 0.4740 +55794 78988 0.8400 +55794 79009 0.4340 +55794 79039 0.5990 +55794 79571 0.4930 +55794 79590 0.8850 +55794 79665 0.4190 +55794 79863 0.4760 +55794 79922 0.6920 +55794 79954 0.4250 +55794 80135 0.5640 +55794 80789 0.4360 +55794 81554 0.4080 +55794 81892 0.5590 +55794 83479 0.4310 +55794 83743 0.7240 +55794 84154 0.7380 +55794 84273 0.6550 +55794 84311 0.8420 +55794 84365 0.7340 +55794 84545 0.8420 +55794 84549 0.5980 +55794 84769 0.6340 +55794 84881 0.9040 +55794 84916 0.4500 +55794 84946 0.4120 +55794 85865 0.9550 +55794 87178 0.5980 +55794 88745 0.4890 +55794 90480 0.8050 +55794 91647 0.4470 +55794 92170 0.7980 +55794 92856 0.8070 +55794 114034 0.4750 +55794 115416 0.9720 +55794 115708 0.5310 +55794 116540 0.8100 +55794 116541 0.8050 +55794 117246 0.7930 +55794 122704 0.8440 +55794 124995 0.8330 +55794 126789 0.5010 +55794 130916 0.6840 +55794 142940 0.4400 +55794 146212 0.5350 +55794 155368 0.4190 +55794 161424 0.5000 +55794 219927 0.8700 +55794 221078 0.5050 +55794 221830 0.6270 +55794 285367 0.7090 +55794 285855 0.5950 +55794 317781 0.4080 +55794 340745 0.5480 +55794 387129 0.5910 +55794 387338 0.7710 +55794 440957 0.4220 +55794 692312 0.5800 +55794 100287284 0.5700 +55794 127898561 0.8640 +55795 56943 0.9990 +55795 58533 0.6180 +55795 79774 0.5690 +55795 80145 0.4450 +55795 81620 0.4270 +55795 84271 0.4220 +55795 84321 0.5040 +55795 84324 0.4970 +55795 114823 0.9660 +55795 129401 0.5950 +55795 246243 0.5010 +55795 729920 0.4930 +55796 56853 0.5720 +55796 60680 0.5270 +55796 84524 0.4370 +55796 114793 0.4600 +55796 147912 0.4350 +55796 203228 0.4340 +55796 282996 0.4680 +55796 283373 0.5510 +55796 285525 0.5070 +55796 389874 0.4320 +55798 56339 0.4280 +55798 57570 0.4270 +55798 57721 0.5120 +55798 64172 0.4270 +55798 64745 0.4380 +55798 64897 0.4800 +55798 79066 0.6830 +55798 79691 0.4990 +55798 79693 0.4790 +55798 79707 0.5340 +55798 79833 0.5380 +55798 81627 0.4230 +55798 83480 0.5360 +55798 84190 0.7560 +55798 84326 0.4320 +55798 87178 0.4680 +55798 92342 0.4480 +55798 93587 0.5790 +55798 113179 0.4380 +55798 123263 0.4560 +55798 134637 0.4080 +55798 146779 0.6270 +55798 152992 0.4340 +55798 155368 0.4240 +55798 158234 0.5700 +55798 162333 0.4120 +55798 196074 0.4310 +55798 196410 0.6370 +55798 196541 0.6910 +55798 201931 0.4590 +55798 221078 0.4790 +55798 285521 0.4370 +55798 399818 0.5530 +55798 728464 0.6530 +55799 55844 0.6500 +55799 57685 0.6020 +55799 57828 0.5400 +55799 59283 0.6470 +55799 59284 0.6780 +55799 59285 0.7560 +55799 64094 0.4400 +55799 79820 0.5820 +55799 93589 0.6560 +55799 115727 0.6500 +55799 117144 0.5800 +55799 117155 0.6830 +55799 246329 0.5400 +55799 257044 0.5590 +55799 257062 0.5640 +55799 259232 0.4540 +55799 284521 0.4300 +55799 285588 0.5400 +55799 340393 0.5400 +55799 347732 0.6620 +55799 378807 0.5850 +55799 389860 0.6100 +55799 644994 0.4020 +55799 100130348 0.5400 +55800 57709 0.4060 +55800 57731 0.5440 +55800 79192 0.5420 +55800 84830 0.5040 +55800 132884 0.4280 +55800 347853 0.4280 +55800 376132 0.4250 +55800 392255 0.4220 +55800 104909134 0.4140 +55801 58985 0.9210 +55801 79837 0.4520 +55801 85480 0.4420 +55801 112744 0.7850 +55801 116379 0.6420 +55801 146433 0.4530 +55801 149233 0.7530 +55801 163702 0.8200 +55801 167826 0.4490 +55801 282616 0.8110 +55801 282617 0.7410 +55801 282618 0.7970 +55801 345611 0.4390 +55801 414325 0.4530 +55802 56006 0.7170 +55802 56165 0.4390 +55802 56478 0.7580 +55802 56829 0.5710 +55802 56915 0.5820 +55802 57472 0.5060 +55802 57819 0.6910 +55802 60489 0.5220 +55802 64506 0.4550 +55802 65109 0.7630 +55802 65110 0.7320 +55802 80153 0.9990 +55802 83887 0.4500 +55802 84206 0.8360 +55802 84934 0.6190 +55802 92312 0.8290 +55802 116832 0.4990 +55802 118460 0.5660 +55802 128240 0.5960 +55802 140032 0.4990 +55802 140801 0.4990 +55802 149951 0.7000 +55802 149986 0.8250 +55802 150465 0.4500 +55802 164714 0.4500 +55802 167227 0.9990 +55802 170685 0.4780 +55802 192669 0.6570 +55802 196513 0.9910 +55802 197135 0.4750 +55802 200316 0.4710 +55802 200916 0.5090 +55802 219988 0.9990 +55802 221908 0.6060 +55802 246175 0.5320 +55802 254173 0.4500 +55802 254552 0.4790 +55802 256281 0.4780 +55802 283237 0.4210 +55802 283927 0.4780 +55802 374887 0.5930 +55802 390916 0.4820 +55802 399664 0.7570 +55802 440672 0.4780 +55802 550643 0.4980 +55802 100526693 0.4500 +55803 55813 0.7070 +55803 63971 0.4410 +55803 79736 0.6460 +55803 79915 0.6250 +55803 83892 0.5400 +55803 84282 0.8100 +55803 84440 0.6340 +55803 85462 0.4990 +55803 85464 0.4920 +55803 114659 0.6910 +55803 221472 0.4730 +55803 100507436 0.4160 +55805 57763 0.5340 +55805 80343 0.5430 +55805 345193 0.4180 +55806 348487 0.5230 +55806 100137047 0.4440 +55808 56913 0.9800 +55808 57452 0.9200 +55808 63917 0.9280 +55808 64409 0.9160 +55808 64921 0.4710 +55808 79695 0.9310 +55808 81849 0.7120 +55808 83733 0.7950 +55808 85477 0.6410 +55808 89790 0.4610 +55808 89858 0.4040 +55808 117248 0.9230 +55808 129807 0.4190 +55808 192134 0.9590 +55808 256435 0.5920 +55808 374378 0.9250 +55808 442117 0.9100 +55808 728819 0.9230 +55808 100049587 0.4490 +55809 64773 0.4180 +55809 91748 0.8690 +55809 116092 0.9700 +55809 146212 0.4760 +55809 166824 0.4120 +55809 168451 0.4780 +55809 284697 0.5070 +55809 100128927 0.4560 +55810 57459 0.5300 +55810 64784 0.5600 +55810 79596 0.4020 +55810 112399 0.5430 +55810 171017 0.4190 +55811 55970 0.6530 +55811 59345 0.6550 +55811 64083 0.4550 +55811 84284 0.9000 +55811 84305 0.4200 +55811 91860 0.4490 +55811 94235 0.6500 +55811 117144 0.5190 +55811 133482 0.4940 +55811 137902 0.6800 +55811 157855 0.4040 +55811 163688 0.4500 +55811 221264 0.6720 +55811 260434 0.7340 +55811 284525 0.4300 +55811 285335 0.7660 +55811 286205 0.6540 +55811 377841 0.6600 +55811 643376 0.4120 +55811 654364 0.7030 +55811 692312 0.4400 +55812 55975 0.5480 +55812 57010 0.5500 +55812 57096 0.9510 +55812 64218 0.4460 +55812 64802 0.5330 +55812 64847 0.4400 +55812 79947 0.5070 +55812 80184 0.8400 +55812 84140 0.6270 +55812 84950 0.4420 +55812 92211 0.4740 +55812 128153 0.5200 +55812 130557 0.6550 +55812 145226 0.9160 +55812 157657 0.5750 +55812 161436 0.4530 +55812 167691 0.8830 +55812 261734 0.6830 +55812 283638 0.4420 +55812 343035 0.8920 +55812 346007 0.6590 +55812 375298 0.6960 +55812 388939 0.6700 +55812 401124 0.4640 +55812 768206 0.6710 +55813 56342 0.6180 +55813 56902 0.9660 +55813 56915 0.7710 +55813 56919 0.6550 +55813 57050 0.9990 +55813 57062 0.5380 +55813 57418 0.7560 +55813 57647 0.9530 +55813 58496 0.5720 +55813 60487 0.6810 +55813 60625 0.6580 +55813 64118 0.6040 +55813 64216 0.7610 +55813 64318 0.7230 +55813 64374 0.4250 +55813 64425 0.6990 +55813 64434 0.9710 +55813 64794 0.7890 +55813 64848 0.4180 +55813 64960 0.6880 +55813 64963 0.6440 +55813 65083 0.9990 +55813 65095 0.7610 +55813 79039 0.5090 +55813 79050 0.9980 +55813 79159 0.5700 +55813 79571 0.7980 +55813 79665 0.5400 +55813 79707 0.5810 +55813 79736 0.7250 +55813 79915 0.6530 +55813 79954 0.9990 +55813 79979 0.5610 +55813 80135 0.7520 +55813 80306 0.4530 +55813 81887 0.6510 +55813 83732 0.4640 +55813 83743 0.7000 +55813 84128 0.9990 +55813 84135 0.9990 +55813 84154 0.8970 +55813 84172 0.6730 +55813 84282 0.5060 +55813 84294 0.7520 +55813 84365 0.7760 +55813 84440 0.6460 +55813 84549 0.6360 +55813 84916 0.9990 +55813 84946 0.7600 +55813 84950 0.4670 +55813 88745 0.9870 +55813 90121 0.5950 +55813 90381 0.6340 +55813 90957 0.4330 +55813 91582 0.8240 +55813 91752 0.5200 +55813 92345 0.4250 +55813 92856 0.9990 +55813 114659 0.7280 +55813 115708 0.4100 +55813 115825 0.4780 +55813 116966 0.4070 +55813 117246 0.9090 +55813 118460 0.7010 +55813 126402 0.6510 +55813 128061 0.8030 +55813 140032 0.6180 +55813 140801 0.8400 +55813 153443 0.7950 +55813 161424 0.8640 +55813 165545 0.6310 +55813 170506 0.4320 +55813 219578 0.5200 +55813 221078 0.6910 +55813 221830 0.8460 +55813 285855 0.4890 +55813 345630 0.9440 +55813 387129 0.4540 +55813 387338 0.4070 +55813 641776 0.4650 +55813 643909 0.4650 +55813 692312 0.5760 +55813 728524 0.4650 +55813 100505478 0.4160 +55813 100996746 0.4650 +55813 105180390 0.4650 +55813 105180391 0.4650 +55814 80205 0.5250 +55814 84172 0.5030 +55814 84232 0.9350 +55814 84265 0.8390 +55814 112495 0.6080 +55814 114803 0.5070 +55814 171568 0.9220 +55814 387332 0.8910 +55814 388015 0.4660 +55814 399949 0.7060 +55814 642623 0.7610 +55815 57228 0.4340 +55815 57639 0.5920 +55815 57697 0.4210 +55815 60494 0.4790 +55815 63926 0.6180 +55815 64419 0.4820 +55815 64518 0.6270 +55815 79781 0.4310 +55815 79819 0.4220 +55815 85452 0.6150 +55815 85478 0.4430 +55815 90506 0.6210 +55815 114327 0.4540 +55815 114827 0.4300 +55815 123872 0.4540 +55815 129531 0.4290 +55815 130888 0.6140 +55815 132612 0.5040 +55815 132671 0.4450 +55815 132851 0.4070 +55815 146212 0.4210 +55815 146845 0.5800 +55815 149465 0.5610 +55815 149499 0.6120 +55815 151112 0.5700 +55815 151827 0.5200 +55815 161502 0.5530 +55815 162333 0.4330 +55815 196385 0.6110 +55815 200373 0.4400 +55815 200403 0.6130 +55815 222967 0.5730 +55815 266629 0.4090 +55815 283726 0.4870 +55815 339829 0.4410 +55815 388284 0.5060 +55816 64096 0.4990 +55816 85366 0.4060 +55818 57492 0.7010 +55818 57496 0.4010 +55818 57591 0.6570 +55818 79663 0.4440 +55818 79723 0.4800 +55818 79813 0.5140 +55818 79831 0.5560 +55818 79923 0.6020 +55818 80312 0.4030 +55818 80853 0.8050 +55818 80854 0.4770 +55818 84159 0.5230 +55818 84678 0.6120 +55818 84733 0.4510 +55818 93649 0.6140 +55818 166824 0.6260 +55818 221656 0.7470 +55818 221833 0.4260 +55818 346171 0.4910 +55818 390245 0.6140 +55818 440093 0.7370 +55818 440686 0.7370 +55818 653604 0.8370 +55818 100129053 0.4010 +55819 57670 0.6180 +55819 84900 0.4390 +55819 138065 0.4300 +55819 401934 0.4950 +55821 56896 0.4880 +55821 57189 0.4540 +55821 78989 0.4940 +55821 83449 0.4290 +55821 100529097 0.4280 +55823 56850 0.4510 +55823 57111 0.4810 +55823 57403 0.4620 +55823 57617 0.9990 +55823 63894 0.6650 +55823 64145 0.4650 +55823 64284 0.5180 +55823 64601 0.9990 +55823 65082 0.9990 +55823 79763 0.4280 +55823 83547 0.4770 +55823 84251 0.4260 +55823 84315 0.6800 +55823 90196 0.4810 +55823 123591 0.5770 +55823 124997 0.4230 +55823 127829 0.4220 +55823 143187 0.9730 +55823 148022 0.4470 +55823 203062 0.6270 +55823 203245 0.6170 +55823 221079 0.4450 +55823 221960 0.9440 +55823 285973 0.5430 +55823 338382 0.8680 +55823 100526783 0.4130 +55824 255324 0.4990 +55825 55902 0.4100 +55825 60481 0.4360 +55825 63876 0.5680 +55825 79876 0.4600 +55825 80185 0.4240 +55825 81616 0.4030 +55825 83693 0.4260 +55825 84188 0.4480 +55825 84693 0.4270 +55825 84872 0.4750 +55825 92106 0.4190 +55825 112812 0.4630 +55825 129446 0.4750 +55825 132949 0.4560 +55825 195814 0.4650 +55825 201562 0.4240 +55825 219743 0.6300 +55825 284697 0.4860 +55825 339230 0.5070 +55825 643866 0.4720 +55825 728276 0.5030 +55827 55832 0.5500 +55827 64326 0.9040 +55827 64708 0.4940 +55827 79016 0.9280 +55827 79269 0.9360 +55827 80067 0.9040 +55827 80232 0.4750 +55827 80344 0.9230 +55827 84259 0.5170 +55827 85437 0.4320 +55827 90379 0.9050 +55827 91860 0.4930 +55827 115950 0.4360 +55827 138009 0.6670 +55827 139170 0.6700 +55827 139425 0.5430 +55827 149951 0.4990 +55827 150684 0.5270 +55827 163688 0.4930 +55827 170622 0.4990 +55827 285429 0.6670 +55827 340578 0.6540 +55827 347442 0.5430 +55829 55911 0.5400 +55829 55937 0.7200 +55829 56886 0.4430 +55829 57190 0.8710 +55829 58515 0.9820 +55829 60678 0.7840 +55829 78992 0.4230 +55829 79048 0.7920 +55829 79135 0.5400 +55829 79139 0.9910 +55829 81502 0.7290 +55829 81876 0.4600 +55829 83642 0.8730 +55829 84447 0.9750 +55829 85465 0.8320 +55829 90522 0.5510 +55829 91319 0.4180 +55829 92305 0.8580 +55829 114112 0.7680 +55829 116138 0.5570 +55829 116519 0.7790 +55829 118424 0.8350 +55829 118672 0.5340 +55829 140606 0.8760 +55829 257202 0.5920 +55829 258010 0.6700 +55829 280636 0.8230 +55829 348303 0.8140 +55829 493869 0.4500 +55829 100528017 0.5400 +55830 57542 0.5140 +55830 221545 0.5390 +55830 283237 0.4050 +55830 285203 0.4340 +55830 347365 0.4380 +55830 403282 0.5810 +55831 55852 0.4050 +55831 56851 0.9990 +55831 57003 0.5480 +55831 64795 0.4410 +55831 65992 0.4080 +55831 79982 0.4740 +55831 80267 0.6130 +55831 83460 0.9990 +55831 84317 0.4260 +55831 84522 0.4420 +55831 93380 0.9990 +55831 202052 0.4820 +55831 219348 0.4180 +55831 284361 0.9990 +55831 285368 0.4330 +55831 285521 0.5060 +55831 337867 0.8760 +55831 342527 0.4630 +55831 392517 0.5240 +55831 503841 0.4220 +55832 55884 0.5180 +55832 55958 0.5970 +55832 56929 0.5900 +55832 56995 0.5950 +55832 57162 0.4340 +55832 57542 0.5760 +55832 64326 0.5040 +55832 64410 0.5020 +55832 64708 0.5240 +55832 79016 0.6720 +55832 79269 0.5220 +55832 79577 0.4380 +55832 79754 0.5120 +55832 79791 0.5040 +55832 80028 0.6340 +55832 80067 0.5150 +55832 80176 0.5390 +55832 80204 0.7130 +55832 80344 0.5840 +55832 80856 0.5170 +55832 81620 0.4690 +55832 83694 0.4090 +55832 83932 0.5140 +55832 84078 0.5040 +55832 84085 0.5160 +55832 84259 0.8530 +55832 84261 0.6610 +55832 84516 0.4550 +55832 84541 0.5600 +55832 84727 0.4990 +55832 84861 0.5110 +55832 84961 0.5210 +55832 89890 0.5090 +55832 90135 0.6120 +55832 90293 0.5230 +55832 90864 0.4990 +55832 92369 0.4990 +55832 92591 0.5140 +55832 93611 0.5550 +55832 114907 0.5660 +55832 115290 0.5030 +55832 121512 0.4090 +55832 122416 0.5010 +55832 122769 0.5760 +55832 123228 0.4980 +55832 123879 0.8880 +55832 126433 0.5030 +55832 127247 0.4990 +55832 133482 0.5310 +55832 136371 0.5140 +55832 140456 0.5660 +55832 140458 0.5290 +55832 140459 0.5050 +55832 140460 0.5050 +55832 140461 0.5110 +55832 140462 0.5570 +55832 140739 0.8130 +55832 140825 0.5200 +55832 142685 0.5010 +55832 142686 0.5220 +55832 142689 0.5390 +55832 143384 0.6310 +55832 144699 0.6020 +55832 146330 0.5950 +55832 149951 0.5130 +55832 150684 0.5830 +55832 150726 0.5060 +55832 154881 0.4990 +55832 166752 0.4020 +55832 170622 0.5170 +55832 200845 0.5260 +55832 201456 0.5400 +55832 222235 0.5550 +55832 283807 0.5750 +55832 285231 0.5260 +55832 337867 0.6230 +55832 390594 0.5180 +55832 401036 0.5140 +55833 57519 0.4240 +55833 57532 0.5600 +55833 83737 0.4600 +55833 92259 0.4020 +55833 112812 0.4630 +55833 132949 0.4290 +55833 110806297 0.4530 +55835 56992 0.5740 +55835 57082 0.5940 +55835 57787 0.9000 +55835 60386 0.4750 +55835 63876 0.4310 +55835 63925 0.6480 +55835 64682 0.6020 +55835 79441 0.6520 +55835 79598 0.4960 +55835 79648 0.9160 +55835 79866 0.6270 +55835 79959 0.5040 +55835 80097 0.9000 +55835 80184 0.6680 +55835 81609 0.4050 +55835 81631 0.4650 +55835 84879 0.4200 +55835 85378 0.9440 +55835 85459 0.7400 +55835 93323 0.6910 +55835 114791 0.9240 +55835 115106 0.6200 +55835 116840 0.6900 +55835 117177 0.5750 +55835 121441 0.5870 +55835 134359 0.7400 +55835 152185 0.7650 +55835 153241 0.8150 +55835 163786 0.9980 +55835 201931 0.4330 +55835 219844 0.8310 +55835 259266 0.9420 +55835 282809 0.5390 +55835 282991 0.9210 +55835 283652 0.4060 +55835 284403 0.8270 +55835 347733 0.9370 +55835 440145 0.9250 +55835 653784 0.7250 +55835 728642 0.5330 +55837 57221 0.4130 +55837 57456 0.6970 +55837 60625 0.8280 +55837 65056 0.4270 +55837 79650 0.6190 +55837 84138 0.6110 +55837 84292 0.6560 +55837 84445 0.4220 +55837 171546 0.4350 +55837 199953 0.4200 +55837 256356 0.4260 +55839 56942 0.6370 +55839 56992 0.6140 +55839 57082 0.8440 +55839 57405 0.5890 +55839 64105 0.9990 +55839 64151 0.6880 +55839 64946 0.9990 +55839 79003 0.4470 +55839 79019 0.9990 +55839 79075 0.4940 +55839 79172 0.9990 +55839 79682 0.9990 +55839 79801 0.7390 +55839 79980 0.7870 +55839 80152 0.9990 +55839 81610 0.4320 +55839 81620 0.6160 +55839 81930 0.5660 +55839 83461 0.5840 +55839 83540 0.7300 +55839 84057 0.4920 +55839 84365 0.4400 +55839 84897 0.4780 +55839 90417 0.5830 +55839 91687 0.9990 +55839 93081 0.4820 +55839 113115 0.4950 +55839 113130 0.8110 +55839 114569 0.4510 +55839 121504 0.9050 +55839 122769 0.4020 +55839 146909 0.4810 +55839 147841 0.7100 +55839 150468 0.4630 +55839 151648 0.6810 +55839 157313 0.6540 +55839 201254 0.9930 +55839 220134 0.7000 +55839 221150 0.7770 +55839 259266 0.5560 +55839 378708 0.9970 +55839 387103 0.9990 +55839 401541 0.9990 +55839 440093 0.6780 +55839 440686 0.6780 +55839 440689 0.9670 +55839 554313 0.9050 +55839 653604 0.6780 +55839 100527963 0.4590 +55840 79577 0.9000 +55840 79664 0.9430 +55840 80237 0.9890 +55840 80349 0.9080 +55840 84337 0.5400 +55840 84524 0.9000 +55840 85403 0.9820 +55840 123169 0.9100 +55841 79981 0.6070 +55841 154796 0.4580 +55843 57381 0.4780 +55843 57580 0.4070 +55843 64005 0.4440 +55843 64926 0.4750 +55843 79712 0.7190 +55843 80342 0.4850 +55843 84636 0.5190 +55843 151888 0.4790 +55843 339229 0.4780 +55843 728215 0.5830 +55844 55929 0.4720 +55844 56256 0.7950 +55844 57223 0.6100 +55844 59283 0.6710 +55844 59284 0.6710 +55844 59285 0.6500 +55844 80025 0.4430 +55844 84152 0.4950 +55844 84930 0.9780 +55844 85407 0.7240 +55844 93589 0.6500 +55844 116224 0.5270 +55844 138639 0.6940 +55844 139420 0.5510 +55844 147011 0.6570 +55844 151246 0.5730 +55844 151648 0.4820 +55844 151987 0.8000 +55844 158506 0.5200 +55844 221150 0.5750 +55844 100506658 0.9060 +55845 55914 0.4110 +55845 55971 0.4790 +55845 57224 0.4520 +55845 57556 0.4220 +55845 57575 0.8740 +55845 57608 0.4330 +55845 63916 0.6840 +55845 64236 0.4110 +55845 79658 0.4080 +55845 79663 0.4240 +55845 81624 0.5160 +55845 81873 0.9330 +55845 84062 0.5110 +55845 84661 0.4370 +55845 84925 0.4350 +55845 122809 0.4220 +55845 123720 0.5390 +55845 133746 0.4420 +55845 138715 0.4490 +55845 143098 0.4010 +55845 147179 0.5110 +55845 155185 0.4400 +55845 340527 0.4900 +55845 390714 0.4990 +55845 644150 0.5750 +55846 57521 0.6000 +55846 57600 0.4050 +55846 58528 0.7120 +55846 60558 0.4380 +55846 60559 0.4010 +55846 64121 0.7270 +55846 64223 0.5910 +55846 79726 0.9980 +55846 81929 0.8090 +55846 83667 0.7090 +55846 83943 0.7150 +55846 84219 0.9980 +55846 90423 0.5160 +55846 94086 0.6760 +55846 96459 0.4880 +55846 114898 0.4110 +55846 127124 0.4990 +55846 144577 0.9990 +55846 153129 0.5460 +55846 154743 0.9820 +55846 155066 0.5080 +55846 201163 0.4960 +55846 220441 0.4520 +55846 245972 0.5320 +55846 245973 0.5240 +55846 389541 0.7300 +55846 474383 0.4310 +55846 652968 0.7670 +55846 729438 0.7380 +55846 101929469 0.4330 +55847 55967 0.4010 +55847 56893 0.4030 +55847 57019 0.4880 +55847 79587 0.4840 +55847 80221 0.4200 +55847 84883 0.5200 +55847 122961 0.5390 +55847 131076 0.4350 +55847 132949 0.4080 +55847 150274 0.4150 +55847 150696 0.4170 +55847 284106 0.9920 +55847 388962 0.5340 +55847 552900 0.4420 +55847 654483 0.4230 +55848 57589 0.4930 +55848 85236 0.5640 +55848 120534 0.4770 +55848 126328 0.4770 +55848 128312 0.5840 +55848 130355 0.4780 +55848 158358 0.4570 +55848 158983 0.5850 +55848 255626 0.5640 +55848 286436 0.5850 +55848 440689 0.5840 +55848 114483833 0.5850 +55850 56992 0.5030 +55850 57617 0.4290 +55850 60561 0.9850 +55850 63908 0.5820 +55850 64837 0.5380 +55850 79885 0.4670 +55850 81876 0.5130 +55850 81930 0.4990 +55850 83548 0.4720 +55850 83933 0.5070 +55850 84643 0.4990 +55850 89953 0.5430 +55850 90990 0.5000 +55850 112755 0.6600 +55850 116841 0.8230 +55850 124602 0.4990 +55850 126208 0.6910 +55850 129450 0.6260 +55850 134957 0.5400 +55850 143187 0.7960 +55850 146909 0.4990 +55850 147700 0.5170 +55850 148223 0.7020 +55850 152579 0.8630 +55850 203062 0.6400 +55850 221458 0.4990 +55850 285643 0.4990 +55850 339302 0.5400 +55850 415117 0.7210 +55850 594855 0.5400 +55851 56983 0.4900 +55851 64837 0.4660 +55851 79258 0.6850 +55851 81502 0.6560 +55851 83464 0.9990 +55851 84441 0.5520 +55851 89953 0.4740 +55851 92737 0.4740 +55851 113878 0.4980 +55851 121665 0.4020 +55851 147700 0.4790 +55852 56992 0.4100 +55852 57701 0.5130 +55852 64801 0.4680 +55852 65992 0.4050 +55852 84317 0.4040 +55852 84321 0.6700 +55852 113177 0.4640 +55852 118987 0.5850 +55852 122046 0.5070 +55852 145567 0.4850 +55852 402117 0.4510 +55852 647310 0.5040 +55854 57050 0.5810 +55854 57187 0.6680 +55854 64960 0.5130 +55854 64969 0.5320 +55854 65993 0.4770 +55854 79091 0.4800 +55854 79228 0.5970 +55854 79590 0.4390 +55854 80145 0.6410 +55854 84033 0.4250 +55854 84154 0.4990 +55854 84321 0.6340 +55854 84365 0.4510 +55854 84549 0.6100 +55854 84922 0.5030 +55854 84946 0.5780 +55854 89970 0.5600 +55854 90121 0.4100 +55854 114987 0.5350 +55854 115098 0.5100 +55854 116832 0.4300 +55854 131601 0.4580 +55854 140801 0.5100 +55854 200916 0.4910 +55854 201965 0.5600 +55854 285193 0.4790 +55854 285855 0.4020 +55854 347487 0.5200 +55854 100137047 0.4180 +55854 100526842 0.4630 +55854 100529239 0.4220 +55854 114483834 0.4980 +55856 57541 0.4210 +55856 58488 0.9560 +55856 81688 0.4750 +55856 83719 0.4170 +55856 84263 0.5490 +55856 84918 0.4280 +55856 91663 0.4040 +55856 91942 0.4060 +55856 113451 0.4150 +55856 117145 0.4820 +55856 122622 0.4360 +55856 122970 0.5960 +55856 132949 0.4290 +55856 134526 0.7330 +55856 140609 0.4070 +55856 161582 0.6950 +55856 284486 0.5160 +55856 641371 0.7330 +55856 641372 0.5650 +55857 57519 0.4070 +55857 57697 0.6300 +55857 64412 0.5070 +55857 132320 0.8430 +55857 147645 0.4530 +55857 203076 0.4720 +55857 342979 0.4070 +55857 644524 0.5070 +55857 112441434 0.5580 +55858 56913 0.4800 +55858 57583 0.4050 +55858 64083 0.4450 +55858 79087 0.4110 +55858 79139 0.4340 +55858 79644 0.6920 +55858 79939 0.4820 +55858 80235 0.4430 +55858 84068 0.5620 +55858 84447 0.4010 +55858 84720 0.5220 +55858 85365 0.5900 +55858 91949 0.4820 +55858 132954 0.4800 +55858 157378 0.4330 +55858 171546 0.4190 +55858 375743 0.4430 +55858 102800317 0.5190 +55859 56849 0.4200 +55859 85012 0.6500 +55859 90843 0.4390 +55859 91860 0.7480 +55859 114928 0.4880 +55859 140597 0.5430 +55859 158931 0.6560 +55859 163688 0.7480 +55859 169966 0.4260 +55859 340542 0.4920 +55859 340543 0.6920 +55860 56992 0.4990 +55860 57180 0.4020 +55860 57511 0.5520 +55860 60626 0.4430 +55860 64689 0.5050 +55860 64837 0.5570 +55860 66008 0.5410 +55860 79848 0.6500 +55860 80179 0.4810 +55860 80218 0.4140 +55860 80310 0.6200 +55860 81569 0.7400 +55860 81873 0.4370 +55860 81930 0.5160 +55860 83548 0.5060 +55860 83658 0.8320 +55860 84364 0.5280 +55860 84376 0.4790 +55860 84516 0.9990 +55860 84517 0.6580 +55860 84643 0.5030 +55860 89927 0.5960 +55860 89953 0.5640 +55860 90634 0.5510 +55860 91582 0.5930 +55860 91949 0.5070 +55860 92558 0.8890 +55860 93661 0.6220 +55860 93973 0.5360 +55860 139741 0.4670 +55860 140625 0.4680 +55860 140735 0.5850 +55860 140850 0.6970 +55860 147700 0.5850 +55860 284382 0.7400 +55860 285643 0.5240 +55860 345651 0.5370 +55860 375189 0.4350 +55860 445582 0.4580 +55860 653269 0.4580 +55860 728378 0.4670 +55861 79007 0.5040 +55861 79039 0.4480 +55861 79134 0.4870 +55861 90196 0.5810 +55861 203562 0.4500 +55862 55902 0.9420 +55862 56898 0.4170 +55862 56922 0.4230 +55862 57129 0.4990 +55862 57591 0.4360 +55862 60488 0.5340 +55862 63875 0.4790 +55862 64064 0.5520 +55862 64087 0.4920 +55862 64902 0.8500 +55862 64965 0.5240 +55862 64968 0.4690 +55862 64969 0.4470 +55862 64975 0.4480 +55862 64976 0.4230 +55862 64979 0.4720 +55862 64981 0.4170 +55862 64983 0.4340 +55862 65985 0.4630 +55862 79611 0.9460 +55862 79783 0.4200 +55862 80221 0.5270 +55862 80724 0.4610 +55862 81847 0.5530 +55862 84129 0.4640 +55862 84263 0.8230 +55862 84532 0.9420 +55862 84545 0.4720 +55862 84656 0.4090 +55862 84693 0.9560 +55862 124359 0.5700 +55862 128240 0.4040 +55862 137872 0.4240 +55862 140856 0.4120 +55862 219927 0.4210 +55862 253175 0.5770 +55862 254042 0.4030 +55862 284422 0.5340 +55862 347487 0.4200 +55862 348158 0.4530 +55862 376497 0.4090 +55862 387104 0.4880 +55862 109703458 0.4450 +55862 122405565 0.5340 +55863 55967 0.7680 +55863 56159 0.4120 +55863 57092 0.4240 +55863 57536 0.4950 +55863 60496 0.8510 +55863 79133 0.8310 +55863 80224 0.5850 +55863 83666 0.4170 +55863 84233 0.5770 +55863 90624 0.4300 +55863 91942 0.7890 +55863 114932 0.4360 +55863 117144 0.4180 +55863 124783 0.4900 +55863 126328 0.7830 +55863 137682 0.8450 +55863 196951 0.5180 +55863 284184 0.5480 +55863 374291 0.7190 +55863 388753 0.4380 +55863 643803 0.5000 +55863 729515 0.4900 +55867 56606 0.9770 +55867 63027 0.4310 +55867 64078 0.4260 +55867 64849 0.5490 +55867 79369 0.4250 +55867 92912 0.4050 +55867 116085 0.5700 +55867 134285 0.4450 +55867 146802 0.7720 +55867 157724 0.4470 +55867 159963 0.7510 +55867 160728 0.7120 +55867 220963 0.7630 +55867 345274 0.4810 +55867 353189 0.6710 +55869 55904 0.5120 +55869 56946 0.5090 +55869 57649 0.6030 +55869 64422 0.4520 +55869 64426 0.8840 +55869 79718 0.7700 +55869 79885 0.5200 +55869 83933 0.6400 +55869 84148 0.4690 +55869 84271 0.4640 +55869 84441 0.5110 +55869 84444 0.4600 +55869 85235 0.4630 +55869 85236 0.7250 +55869 90427 0.4290 +55869 90665 0.6750 +55869 91750 0.6690 +55869 92292 0.5140 +55869 92815 0.6860 +55869 94239 0.7840 +55869 114799 0.5510 +55869 128312 0.7310 +55869 132660 0.5010 +55869 157570 0.7390 +55869 158983 0.7280 +55869 221120 0.5350 +55869 221613 0.6860 +55869 255626 0.7280 +55869 286436 0.7280 +55869 317772 0.6860 +55869 440093 0.7990 +55869 440686 0.7990 +55869 440689 0.7280 +55869 474381 0.6860 +55869 474382 0.6860 +55869 493856 0.5770 +55869 653604 0.8740 +55869 114483833 0.7280 +55870 55904 0.6350 +55870 56950 0.6810 +55870 56979 0.5630 +55870 56981 0.4870 +55870 57148 0.4240 +55870 57530 0.8490 +55870 57680 0.6020 +55870 58508 0.5440 +55870 64324 0.5490 +55870 64754 0.5740 +55870 79823 0.7860 +55870 80205 0.4150 +55870 80335 0.4820 +55870 80764 0.4270 +55870 80853 0.4410 +55870 80854 0.6050 +55870 84162 0.4920 +55870 84181 0.4550 +55870 84193 0.6770 +55870 84444 0.6380 +55870 84661 0.4900 +55870 84678 0.5220 +55870 84787 0.5690 +55870 150572 0.4870 +55870 160419 0.4130 +55870 196528 0.4860 +55870 197131 0.4680 +55870 253959 0.4600 +55870 254048 0.4010 +55870 285527 0.4590 +55870 340096 0.4630 +55870 391769 0.4630 +55870 440093 0.6820 +55870 440686 0.6280 +55870 643136 0.4440 +55870 653604 0.7670 +55871 63931 0.4620 +55871 81704 0.4820 +55871 84210 0.4030 +55871 136895 0.4180 +55871 150472 0.9290 +55871 285605 0.4220 +55871 554282 0.4470 +55871 644019 0.6260 +55871 653820 0.4430 +55871 728833 0.4050 +55876 56169 0.9770 +55876 56946 0.4480 +55876 58484 0.5140 +55876 80332 0.4470 +55876 84299 0.5220 +55876 85480 0.5070 +55876 90865 0.5240 +55876 93210 0.7130 +55876 94103 0.9710 +55876 114548 0.4450 +55876 124626 0.9550 +55876 140290 0.4170 +55876 149628 0.4880 +55876 163486 0.5760 +55876 171389 0.4750 +55876 199713 0.5610 +55876 222256 0.6290 +55876 494513 0.8300 +55876 100505591 0.6160 +55879 66008 0.9030 +55879 145957 0.5020 +55879 401498 0.4620 +55884 79753 0.6510 +55884 79882 0.4850 +55884 80335 0.6140 +55884 130074 0.4730 +55884 140739 0.5840 +55884 142689 0.4210 +55884 149951 0.4990 +55884 150684 0.5040 +55884 170622 0.4990 +55885 56956 0.4310 +55885 63974 0.4610 +55885 64843 0.5550 +55885 89884 0.5730 +55885 120237 0.4210 +55885 167410 0.4010 +55885 170463 0.5980 +55888 84547 0.4550 +55888 170082 0.4900 +55888 222696 0.4320 +55888 342945 0.4570 +55888 387032 0.7150 +55889 64591 0.4780 +55889 89839 0.4350 +55889 200030 0.4030 +55889 401647 0.4760 +55889 442247 0.4390 +55889 642799 0.5570 +55889 645836 0.5760 +55889 728888 0.5580 +55889 100288332 0.5580 +55890 56834 0.4500 +55890 57211 0.4280 +55890 57512 0.5300 +55890 57720 0.4440 +55890 81491 0.4280 +55890 94015 0.4200 +55890 151556 0.4440 +55890 165829 0.4910 +55890 344758 0.4460 +55890 441027 0.4580 +55891 80308 0.5310 +55891 85294 0.4040 +55891 149643 0.4750 +55891 342865 0.4100 +55891 391114 0.4740 +55892 57721 0.5520 +55892 79004 0.4350 +55892 79009 0.4410 +55892 79782 0.5840 +55892 80006 0.4820 +55892 84517 0.7340 +55892 85415 0.5420 +55892 91833 0.5090 +55892 151827 0.8100 +55892 168850 0.4810 +55892 344657 0.7350 +55893 57128 0.5790 +55893 63931 0.4080 +55893 79891 0.4540 +55893 116832 0.4640 +55893 124454 0.4250 +55893 203068 0.4380 +55893 374928 0.4640 +55894 65121 0.4180 +55894 140596 0.4730 +55894 245908 0.4530 +55894 245909 0.5840 +55894 245910 0.5710 +55894 245927 0.4320 +55894 245940 0.5300 +55894 390892 0.4790 +55894 414325 0.9620 +55894 503614 0.6380 +55894 503841 0.5490 +55894 653423 0.4250 +55897 58498 0.4480 +55897 64321 0.8020 +55897 79923 0.4350 +55897 83595 0.4340 +55897 83881 0.6140 +55897 93649 0.4530 +55897 93986 0.4340 +55897 94234 0.5660 +55897 388585 0.5710 +55898 55930 0.4680 +55898 60343 0.4780 +55898 80179 0.4420 +55898 81567 0.4490 +55898 84696 0.4560 +55898 140609 0.4410 +55898 162333 0.6810 +55898 286077 0.6600 +55900 57763 0.4440 +55900 65977 0.4670 +55900 79057 0.4780 +55900 84866 0.4080 +55900 284402 0.4160 +55901 57674 0.4080 +55901 58512 0.4640 +55901 83660 0.5290 +55901 145173 0.4090 +55901 148741 0.5160 +55901 170689 0.4460 +55901 171558 0.4490 +55901 286144 0.4240 +55902 57591 0.4770 +55902 57609 0.4480 +55902 57678 0.6370 +55902 60481 0.4020 +55902 64064 0.4140 +55902 64080 0.4130 +55902 64577 0.4080 +55902 64841 0.4080 +55902 64902 0.8270 +55902 79071 0.5280 +55902 79611 0.9210 +55902 80221 0.5520 +55902 80347 0.4610 +55902 81616 0.4110 +55902 84076 0.4790 +55902 84129 0.4290 +55902 84148 0.5260 +55902 84263 0.7060 +55902 84532 0.9090 +55902 84649 0.4870 +55902 126133 0.4080 +55902 132949 0.5150 +55902 134526 0.9590 +55902 137872 0.4530 +55902 137964 0.4820 +55902 157869 0.4430 +55902 160428 0.4150 +55902 197322 0.4820 +55902 254042 0.4590 +55902 339983 0.4100 +55902 376497 0.4980 +55904 56950 0.4970 +55904 56979 0.5780 +55904 57634 0.4760 +55904 58508 0.7530 +55904 64754 0.8050 +55904 79718 0.7390 +55904 79723 0.4410 +55904 79813 0.5500 +55904 79823 0.7470 +55904 80854 0.6870 +55904 83852 0.5110 +55904 83860 0.4260 +55904 84193 0.6560 +55904 84661 0.5880 +55904 90665 0.7330 +55904 93081 0.4030 +55904 114826 0.5170 +55904 114836 0.5780 +55904 117143 0.6080 +55904 126961 0.9080 +55904 150572 0.4710 +55904 161882 0.5180 +55904 192669 0.4630 +55904 192670 0.4550 +55904 221037 0.5740 +55904 259197 0.8710 +55904 283106 0.4010 +55904 333932 0.9080 +55904 374383 0.6820 +55904 440093 0.9400 +55904 440686 0.9400 +55904 653604 0.9680 +55904 100532731 0.5110 +55905 56893 0.8230 +55905 57097 0.8040 +55905 57506 0.4180 +55905 60685 0.4270 +55905 64135 0.4630 +55905 64761 0.6470 +55905 79092 0.4740 +55905 84875 0.4190 +55905 90379 0.5440 +55905 115992 0.6430 +55905 125893 0.4410 +55905 149233 0.4470 +55905 163702 0.4550 +55905 196403 0.4720 +55905 353143 0.5070 +55905 353144 0.4770 +55906 58500 0.4720 +55906 81887 0.5140 +55906 84376 0.4440 +55906 116442 0.4280 +55906 124842 0.4430 +55906 126321 0.4280 +55906 286075 0.4440 +55906 340533 0.4970 +55907 58533 0.4090 +55907 80155 0.4900 +55907 80896 0.5510 +55907 112936 0.5270 +55907 120892 0.4460 +55907 129807 0.4780 +55907 140838 0.9630 +55907 254122 0.4010 +55907 400916 0.4200 +55909 56257 0.9220 +55909 144233 0.5670 +55909 168002 0.4560 +55909 389337 0.7590 +55909 541565 0.4390 +55911 55937 0.5610 +55911 58475 0.5200 +55911 79135 0.5400 +55911 79874 0.5700 +55911 79887 0.5110 +55911 112869 0.5270 +55911 116519 0.7400 +55911 124989 0.4530 +55911 135112 0.4150 +55911 148022 0.4230 +55911 196264 0.4020 +55911 254268 0.4060 +55911 285782 0.4080 +55911 388228 0.4190 +55911 100528017 0.5420 +55914 55971 0.4090 +55914 64127 0.9930 +55914 65124 0.4320 +55914 81624 0.4250 +55914 81839 0.4620 +55914 84905 0.4480 +55914 91010 0.4050 +55914 128239 0.5650 +55914 143098 0.4620 +55914 145957 0.5290 +55914 157285 0.4120 +55914 260425 0.4770 +55914 284119 0.4090 +55915 57449 0.4070 +55915 79020 0.4220 +55915 80013 0.5960 +55915 81552 0.6820 +55915 222008 0.5430 +55915 346288 0.5700 +55916 56000 0.9980 +55916 56001 0.9630 +55916 56941 0.4350 +55916 56942 0.5940 +55916 56943 0.7350 +55916 57001 0.5750 +55916 57529 0.4350 +55916 84187 0.4420 +55916 84314 0.4500 +55916 85397 0.5110 +55916 115265 0.5910 +55916 129401 0.5950 +55916 158835 0.5420 +55916 728343 0.9950 +55917 57464 0.9970 +55917 63978 0.6130 +55917 80143 0.7240 +55917 83992 0.9940 +55917 85369 0.9990 +55917 85462 0.4220 +55917 147179 0.4690 +55920 63932 0.4330 +55920 83903 0.8020 +55920 90231 0.4590 +55920 340481 0.4900 +55922 57621 0.4430 +55922 63932 0.4640 +55922 79576 0.4470 +55922 79753 0.5000 +55922 80344 0.7120 +55922 84365 0.5280 +55922 120892 0.4660 +55922 124245 0.4370 +55924 57057 0.4370 +55924 79827 0.5180 +55924 145508 0.6090 +55929 56916 0.4020 +55929 57180 0.4620 +55929 57501 0.5590 +55929 57609 0.9840 +55929 57634 0.9990 +55929 57685 0.4150 +55929 57794 0.4060 +55929 63941 0.4260 +55929 64431 0.9620 +55929 64769 0.9990 +55929 79077 0.4060 +55929 79158 0.5760 +55929 79639 0.4580 +55929 79913 0.5840 +55929 80129 0.6190 +55929 80314 0.9990 +55929 80818 0.4770 +55929 81611 0.9040 +55929 83444 0.7460 +55929 83852 0.4080 +55929 84083 0.4250 +55929 84148 0.9650 +55929 84289 0.6970 +55929 84364 0.4610 +55929 84572 0.5870 +55929 84901 0.5930 +55929 85235 0.4740 +55929 90204 0.5070 +55929 90378 0.6010 +55929 92815 0.4740 +55929 93973 0.7660 +55929 94239 0.7900 +55929 112869 0.5510 +55929 115560 0.4410 +55929 125476 0.7180 +55929 139628 0.7780 +55929 140831 0.4920 +55929 148266 0.4460 +55929 148418 0.5900 +55929 151050 0.5500 +55929 162387 0.4480 +55929 203069 0.4680 +55929 221613 0.4740 +55929 221895 0.6220 +55929 255626 0.6710 +55929 283150 0.8110 +55929 283899 0.6360 +55929 284058 0.7260 +55929 284371 0.4700 +55929 284390 0.4510 +55929 317772 0.4790 +55929 337867 0.4720 +55929 339287 0.9030 +55929 345651 0.7020 +55929 375748 0.5620 +55929 440093 0.4910 +55929 440686 0.4910 +55929 653604 0.4990 +55929 728294 0.8340 +55929 100131755 0.4380 +55929 100532731 0.8320 +55930 57120 0.5250 +55930 57175 0.5330 +55930 57591 0.4120 +55930 60412 0.4530 +55930 64423 0.4500 +55930 79083 0.6130 +55930 81569 0.4050 +55930 83858 0.4320 +55930 91624 0.4220 +55930 121227 0.5110 +55930 124989 0.4740 +55930 136332 0.4600 +55930 146779 0.4740 +55930 146862 0.4680 +55930 196383 0.6290 +55930 286262 0.4250 +55930 399687 0.4650 +55930 445815 0.4490 +55930 647024 0.4190 +55937 56848 0.5560 +55937 79135 0.7220 +55937 84649 0.4100 +55937 116519 0.9420 +55937 124976 0.5350 +55937 388931 0.5710 +55937 100528017 0.5430 +55954 58517 0.8400 +55954 63894 0.4480 +55954 65117 0.4190 +55954 79039 0.4460 +55954 79637 0.4130 +55954 79696 0.5500 +55954 83443 0.8950 +55954 83938 0.6400 +55954 84164 0.4580 +55954 84266 0.4040 +55954 84316 0.6160 +55954 84844 0.9400 +55954 84955 0.4290 +55954 84967 0.7030 +55954 85437 0.9610 +55954 92017 0.4550 +55954 94120 0.4250 +55954 126259 0.6080 +55954 139804 0.6120 +55954 147650 0.6070 +55954 154007 0.9810 +55954 220074 0.6400 +55954 339318 0.4280 +55954 392517 0.5840 +55954 100996928 0.5910 +55954 101669762 0.4800 +55957 57649 0.4040 +55957 57697 0.5320 +55957 91750 0.9990 +55957 127262 0.4940 +55957 132660 0.9990 +55957 201798 0.4720 +55957 286826 0.9990 +55958 55975 0.9220 +55958 56832 0.5070 +55958 57542 0.9280 +55958 57563 0.9130 +55958 59349 0.9220 +55958 64410 0.9250 +55958 79734 0.9080 +55958 83892 0.7300 +55958 84078 0.9120 +55958 84259 0.5270 +55958 84541 0.9270 +55958 84861 0.9490 +55958 89890 0.9140 +55958 90135 0.5540 +55958 90293 0.9960 +55958 114818 0.4520 +55958 131377 0.8410 +55958 149951 0.4990 +55958 150684 0.4990 +55958 154881 0.4680 +55958 170622 0.5140 +55958 200845 0.5950 +55958 253980 0.9120 +55958 338376 0.5600 +55958 339745 0.9060 +55958 390594 0.5940 +55958 553115 0.7530 +55959 64579 0.4410 +55959 64711 0.4130 +55959 79642 0.4100 +55959 81796 0.4990 +55959 84246 0.4360 +55959 89780 0.5440 +55959 90161 0.5930 +55959 221895 0.5980 +55959 256949 0.4260 +55959 266722 0.5180 +55959 285362 0.4790 +55959 340075 0.4030 +55959 347527 0.5020 +55964 56155 0.4610 +55964 79962 0.4580 +55964 84446 0.4690 +55964 84869 0.7840 +55964 90120 0.5400 +55964 116983 0.6120 +55964 124404 0.9530 +55964 148170 0.4360 +55964 150368 0.4470 +55964 151011 0.9400 +55964 283373 0.4430 +55964 346288 0.9370 +55966 79783 0.4180 +55966 80110 0.4780 +55966 81617 0.4100 +55966 119180 0.4470 +55966 148268 0.5060 +55966 196500 0.5700 +55966 340260 0.4650 +55966 441061 0.5630 +55967 56901 0.9170 +55967 56964 0.5400 +55967 57379 0.5170 +55967 57407 0.8150 +55967 57552 0.5110 +55967 58509 0.4420 +55967 60489 0.5250 +55967 63931 0.5310 +55967 64111 0.6060 +55967 64981 0.4510 +55967 65018 0.6700 +55967 79002 0.6550 +55967 79085 0.7490 +55967 79133 0.7600 +55967 79135 0.5330 +55967 79590 0.4120 +55967 79598 0.6070 +55967 79728 0.9710 +55967 79893 0.5140 +55967 80195 0.8130 +55967 80221 0.5140 +55967 80224 0.6550 +55967 81341 0.5400 +55967 81892 0.4280 +55967 84233 0.6560 +55967 84274 0.5290 +55967 84277 0.4700 +55967 84300 0.4570 +55967 84303 0.4270 +55967 84693 0.5620 +55967 84701 0.7910 +55967 84833 0.8570 +55967 84886 0.7440 +55967 84939 0.9380 +55967 90353 0.6900 +55967 90634 0.5200 +55967 91300 0.5400 +55967 91942 0.9980 +55967 93380 0.4300 +55967 93974 0.9190 +55967 112812 0.6610 +55967 114789 0.7480 +55967 116541 0.4590 +55967 118487 0.4610 +55967 119391 0.5530 +55967 125061 0.4740 +55967 125965 0.7660 +55967 126328 0.9990 +55967 126767 0.5030 +55967 130752 0.5350 +55967 131118 0.4950 +55967 137682 0.6850 +55967 139221 0.9380 +55967 139322 0.7510 +55967 140564 0.5170 +55967 140823 0.4620 +55967 150274 0.4160 +55967 164668 0.5170 +55967 170712 0.6040 +55967 200315 0.5170 +55967 200316 0.5230 +55967 267020 0.7450 +55967 283459 0.7320 +55967 284427 0.7480 +55967 343066 0.5030 +55967 344752 0.5030 +55967 374291 0.9990 +55967 388753 0.6030 +55967 388962 0.7500 +55967 440567 0.9430 +55967 440574 0.4580 +55967 493856 0.4620 +55967 728317 0.9380 +55967 100532726 0.9660 +55968 56924 0.4080 +55968 57144 0.4080 +55968 79029 0.6710 +55968 79058 0.9970 +55968 79139 0.9140 +55968 80017 0.5040 +55968 80124 0.9990 +55968 80700 0.9990 +55968 84129 0.9940 +55968 84896 0.4140 +55968 84923 0.6540 +55968 91304 0.4530 +55968 91319 0.5270 +55968 91544 0.6990 +55968 114294 0.9940 +55968 114885 0.4050 +55968 127733 0.9960 +55968 134429 0.4140 +55968 137886 0.6420 +55968 157769 0.4050 +55968 165324 0.9990 +55968 166378 0.6730 +55968 253959 0.4140 +55968 258010 0.9280 +55969 56926 0.5300 +55969 57003 0.5040 +55969 60625 0.4940 +55969 79050 0.4130 +55969 79139 0.4750 +55969 83460 0.4680 +55969 84985 0.4700 +55969 93594 0.5120 +55970 56923 0.5490 +55970 56924 0.9000 +55970 57105 0.5410 +55970 57121 0.5000 +55970 57144 0.9000 +55970 57580 0.9010 +55970 59345 0.9990 +55970 63940 0.4240 +55970 64005 0.4090 +55970 64407 0.5460 +55970 64805 0.5030 +55970 84539 0.5410 +55970 85397 0.5500 +55970 89846 0.9020 +55970 94235 0.5450 +55970 115557 0.5160 +55970 117579 0.5130 +55970 126006 0.4180 +55970 129521 0.4990 +55970 135228 0.4090 +55970 146850 0.6500 +55970 196883 0.6660 +55970 221391 0.5440 +55970 285672 0.4160 +55970 346562 0.6670 +55970 387129 0.5410 +55970 431704 0.5480 +55970 594857 0.4990 +55970 105372280 0.5400 +55971 56882 0.4210 +55971 56990 0.4070 +55971 65124 0.4400 +55971 79053 0.4340 +55971 79087 0.8400 +55971 80114 0.5190 +55971 80115 0.5050 +55971 80157 0.4200 +55971 80728 0.4260 +55971 81624 0.5230 +55971 81839 0.4200 +55971 83715 0.5740 +55971 89848 0.4040 +55971 92154 0.5380 +55971 117283 0.4480 +55971 143098 0.4280 +55971 201595 0.4080 +55971 389337 0.4020 +55971 445582 0.4060 +55972 58512 0.4040 +55972 79161 0.5130 +55972 154661 0.6620 +55974 114134 0.4490 +55974 154091 0.4470 +55974 200185 0.4240 +55975 57380 0.4270 +55975 57542 0.9120 +55975 57563 0.9120 +55975 59349 0.9170 +55975 64218 0.6600 +55975 64410 0.9140 +55975 64839 0.4890 +55975 79734 0.9040 +55975 80311 0.4490 +55975 83892 0.7220 +55975 84078 0.9010 +55975 84140 0.4340 +55975 84541 0.9150 +55975 84861 0.9120 +55975 85015 0.5030 +55975 89890 0.9070 +55975 90293 0.9170 +55975 116179 0.4550 +55975 124590 0.4180 +55975 130557 0.7080 +55975 131377 0.7730 +55975 145226 0.6700 +55975 253980 0.9000 +55975 339745 0.9070 +55975 346007 0.6670 +55975 375298 0.7410 +55975 388939 0.6810 +55975 553115 0.7220 +55975 768206 0.6900 +55997 78987 0.6060 +55997 118856 0.4030 +55997 130399 0.6600 +55997 137814 0.7790 +55997 168507 0.5830 +55997 199699 0.5380 +55997 220136 0.5730 +56000 56001 0.5790 +56000 56658 0.4140 +56000 56943 0.4400 +56000 57122 0.5300 +56000 57187 0.4880 +56000 65109 0.9050 +56000 65110 0.9070 +56000 79882 0.4700 +56000 79902 0.4860 +56000 80145 0.4820 +56000 84271 0.5030 +56000 205428 0.4600 +56000 266743 0.6310 +56000 389170 0.4010 +56000 392517 0.5590 +56000 727837 0.4220 +56000 728343 0.5780 +56001 56159 0.5230 +56001 56943 0.4400 +56001 57122 0.4370 +56001 57532 0.4280 +56001 57576 0.4120 +56001 79882 0.4700 +56001 79902 0.4550 +56001 84271 0.5030 +56001 121355 0.5420 +56001 139135 0.4810 +56001 147323 0.4160 +56001 158521 0.6620 +56001 266743 0.5810 +56001 389170 0.4010 +56001 392517 0.5590 +56001 541466 0.5820 +56001 653220 0.4450 +56001 728343 0.9130 +56001 729447 0.4700 +56005 64806 0.8400 +56005 79086 0.4330 +56005 79174 0.5110 +56005 125972 0.4710 +56006 65109 0.7740 +56006 65110 0.9470 +56006 83746 0.4350 +56006 93643 0.5610 +56006 200014 0.5320 +56033 56131 0.4120 +56033 85360 0.4160 +56033 116039 0.5870 +56033 431707 0.6500 +56034 80310 0.9850 +56034 81608 0.6400 +56052 57107 0.4190 +56052 57171 0.4370 +56052 57697 0.5120 +56052 79053 0.8010 +56052 79087 0.8360 +56052 79644 0.6380 +56052 79868 0.9820 +56052 79934 0.4100 +56052 80146 0.4470 +56052 83641 0.4190 +56052 84317 0.4120 +56052 85365 0.9820 +56052 91869 0.7390 +56052 93183 0.4720 +56052 131405 0.4380 +56052 143689 0.5130 +56052 192669 0.4940 +56052 192670 0.4940 +56052 199857 0.9790 +56052 201595 0.5280 +56052 283209 0.4120 +56052 348180 0.4040 +56052 440138 0.9360 +56052 440822 0.4610 +56052 553115 0.6540 +56061 56893 0.4430 +56061 57559 0.4120 +56061 60685 0.4610 +56061 79184 0.5410 +56061 79187 0.4740 +56061 83473 0.5440 +56061 84056 0.4120 +56061 84516 0.6450 +56061 84954 0.5370 +56061 114803 0.5870 +56061 124454 0.5880 +56061 143471 0.4050 +56061 256356 0.4050 +56061 286187 0.4190 +56061 375057 0.4030 +56061 100652824 0.5310 +56062 79983 0.4190 +56062 117154 0.5740 +56062 139322 0.4880 +56062 207063 0.4050 +56062 340562 0.5890 +56062 390437 0.4220 +56063 57156 0.4520 +56063 79140 0.4600 +56063 79825 0.4310 +56063 143379 0.4180 +56063 255394 0.4660 +56063 402415 0.4540 +56097 56098 0.7040 +56097 56134 0.4880 +56097 65217 0.5250 +56098 56134 0.4750 +56099 56103 0.5550 +56099 56105 0.5180 +56099 56111 0.6780 +56100 56103 0.4890 +56100 80207 0.6100 +56100 137075 0.4180 +56100 441061 0.4180 +56100 645414 0.4180 +56101 56102 0.7130 +56101 56103 0.5170 +56101 56104 0.6110 +56101 56106 0.4280 +56101 56111 0.4100 +56101 90649 0.4180 +56101 342909 0.4800 +56101 387104 0.4160 +56102 56103 0.9180 +56102 56104 0.8330 +56102 56107 0.5680 +56102 56108 0.4390 +56102 56111 0.8690 +56102 56112 0.4680 +56102 56113 0.6490 +56102 80164 0.5050 +56103 56104 0.8360 +56103 56107 0.5780 +56103 56109 0.4160 +56103 56111 0.7980 +56103 56113 0.5060 +56103 56133 0.4630 +56103 80164 0.4470 +56104 56107 0.5080 +56104 56108 0.5750 +56104 56111 0.7980 +56104 56113 0.5160 +56104 56133 0.4300 +56104 80164 0.4780 +56104 221061 0.5340 +56105 56112 0.6480 +56105 64881 0.4890 +56105 128366 0.4160 +56106 56111 0.5720 +56106 56137 0.4180 +56106 56138 0.5920 +56106 56144 0.5240 +56106 128366 0.4760 +56106 145814 0.4480 +56107 56110 0.6120 +56107 56111 0.7600 +56107 56112 0.5960 +56107 128366 0.4390 +56107 645414 0.4470 +56108 56109 0.6070 +56108 56110 0.5550 +56108 56111 0.7180 +56108 128366 0.4750 +56109 56110 0.7460 +56109 56111 0.5620 +56109 80164 0.4360 +56109 128366 0.4450 +56109 222826 0.4180 +56110 56111 0.5400 +56110 56114 0.7580 +56110 80164 0.4780 +56110 128366 0.4790 +56111 56112 0.8730 +56111 56113 0.9990 +56111 80164 0.4480 +56111 119695 0.4310 +56111 128366 0.4690 +56112 56113 0.9990 +56112 56114 0.4490 +56112 80164 0.4300 +56112 122740 0.4180 +56112 128366 0.4320 +56112 390437 0.4440 +56113 80164 0.4340 +56113 122740 0.4300 +56113 128366 0.4410 +56113 390437 0.4470 +56114 57717 0.5540 +56114 65217 0.4680 +56114 128366 0.4050 +56114 390437 0.4180 +56121 56122 0.6470 +56121 56124 0.6420 +56121 56126 0.5450 +56121 56129 0.4910 +56121 57717 0.4380 +56121 79544 0.4220 +56121 342918 0.4180 +56121 390431 0.4170 +56122 56126 0.4880 +56122 56129 0.4880 +56122 56138 0.6510 +56122 57717 0.7770 +56122 378951 0.4910 +56123 56124 0.4930 +56123 56125 0.6410 +56123 56128 0.4470 +56123 56132 0.5690 +56123 57717 0.6430 +56124 56125 0.6110 +56124 56126 0.6400 +56124 56128 0.4500 +56124 56129 0.8520 +56124 56130 0.5620 +56124 56131 0.4590 +56124 56132 0.5310 +56125 56127 0.4190 +56125 56128 0.4530 +56125 56130 0.4400 +56125 56132 0.4090 +56125 57717 0.4960 +56125 653333 0.4120 +56126 79544 0.4200 +56126 79971 0.4640 +56126 390431 0.4150 +56127 57717 0.6640 +56128 56129 0.4430 +56128 56130 0.6980 +56128 56132 0.5950 +56128 56133 0.4470 +56128 57717 0.5070 +56129 56130 0.5080 +56129 56131 0.4860 +56129 56132 0.4750 +56129 57717 0.8890 +56129 79776 0.4260 +56129 92815 0.4300 +56129 441478 0.4060 +56130 56131 0.4660 +56130 56132 0.4490 +56130 57717 0.7720 +56130 79544 0.4240 +56130 389762 0.4470 +56130 390431 0.4170 +56131 56132 0.5960 +56131 56647 0.4220 +56131 57717 0.4160 +56131 91544 0.4570 +56131 92815 0.4370 +56132 56133 0.5410 +56132 57717 0.5280 +56132 79544 0.4120 +56132 92815 0.4290 +56132 390431 0.4050 +56133 57717 0.5230 +56133 79799 0.4030 +56134 56135 0.5070 +56134 56138 0.5640 +56134 80309 0.4450 +56134 130589 0.5010 +56135 56138 0.4830 +56135 56139 0.4990 +56135 130589 0.5070 +56135 140730 0.4070 +56135 163255 0.4750 +56135 286336 0.4490 +56136 56139 0.6710 +56136 56140 0.5230 +56136 136051 0.4800 +56136 401993 0.4120 +56137 56138 0.9200 +56137 56139 0.6830 +56137 56140 0.4720 +56137 56141 0.6240 +56137 56144 0.6340 +56138 56139 0.7930 +56138 56141 0.4560 +56138 56144 0.7010 +56138 56145 0.7980 +56138 56147 0.7260 +56138 83752 0.4320 +56139 56140 0.6290 +56139 56141 0.8470 +56139 56142 0.8480 +56139 56144 0.6600 +56139 56145 0.6470 +56139 56146 0.6910 +56140 56141 0.6430 +56140 56142 0.5970 +56140 56145 0.5790 +56140 56146 0.8830 +56140 56147 0.6120 +56141 56142 0.8400 +56141 56143 0.4040 +56141 56144 0.8530 +56141 56145 0.5480 +56141 56146 0.7520 +56142 56145 0.9030 +56142 56146 0.6140 +56143 56145 0.4120 +56144 56147 0.6110 +56144 83752 0.4750 +56144 339416 0.4250 +56144 729993 0.6110 +56145 56146 0.8410 +56145 56147 0.8930 +56147 130589 0.5750 +56154 56155 0.5400 +56154 56158 0.5570 +56154 56159 0.7300 +56154 56165 0.4880 +56154 57167 0.4140 +56154 79723 0.4100 +56154 79728 0.4300 +56154 84072 0.4630 +56154 84225 0.5650 +56154 84515 0.4450 +56154 84690 0.4190 +56154 84944 0.4630 +56154 85236 0.4310 +56154 85456 0.4150 +56154 89885 0.4350 +56154 90853 0.5440 +56154 91646 0.4760 +56154 93426 0.6020 +56154 121355 0.5220 +56154 122402 0.4590 +56154 128312 0.4310 +56154 139135 0.4700 +56154 143689 0.5370 +56154 146894 0.4170 +56154 148137 0.4200 +56154 150280 0.4800 +56154 150365 0.5550 +56154 158521 0.4160 +56154 161829 0.4580 +56154 164153 0.9310 +56154 169792 0.4070 +56154 222826 0.5060 +56154 254528 0.6690 +56154 255626 0.4320 +56154 256006 0.4080 +56154 283417 0.4210 +56154 388662 0.7620 +56154 402381 0.4480 +56154 541466 0.4100 +56154 729428 0.4470 +56154 729475 0.4090 +56154 100129278 0.4910 +56155 56159 0.5450 +56155 116412 0.4460 +56155 124404 0.4620 +56155 151011 0.4330 +56155 254528 0.4760 +56155 346288 0.4330 +56155 375316 0.7590 +56155 100527963 0.4300 +56156 57492 0.5860 +56156 79097 0.4180 +56156 84916 0.4160 +56156 196528 0.6090 +56156 340547 0.4140 +56157 56163 0.4290 +56157 57472 0.6990 +56157 79596 0.4220 +56157 83874 0.5920 +56157 84072 0.4390 +56157 84193 0.4760 +56157 84916 0.4880 +56157 121793 0.4130 +56157 150280 0.4090 +56157 200523 0.4270 +56157 246175 0.6590 +56158 56159 0.4570 +56158 84072 0.7600 +56158 84690 0.4330 +56158 85236 0.4990 +56158 93081 0.4640 +56158 93426 0.9970 +56158 94239 0.4990 +56158 121793 0.4220 +56158 122402 0.4380 +56158 126402 0.4100 +56158 128312 0.4990 +56158 150280 0.6080 +56158 150365 0.4230 +56158 171484 0.4050 +56158 254528 0.4470 +56158 255626 0.5160 +56158 256126 0.9990 +56158 283129 0.4030 +56158 285498 0.4320 +56158 317761 0.8660 +56158 474382 0.5010 +56158 642636 0.5930 +56158 644186 0.9930 +56159 56979 0.4140 +56159 57536 0.4610 +56159 57697 0.5440 +56159 80198 0.5730 +56159 83844 0.4570 +56159 83893 0.4770 +56159 84057 0.4380 +56159 84072 0.7300 +56159 84225 0.6330 +56159 84515 0.5130 +56159 84690 0.4940 +56159 84944 0.4210 +56159 93426 0.6810 +56159 117144 0.4260 +56159 122402 0.5400 +56159 124783 0.4600 +56159 150280 0.6970 +56159 150365 0.5350 +56159 157777 0.4880 +56159 158401 0.8330 +56159 164045 0.8770 +56159 254528 0.6840 +56159 256126 0.4310 +56159 283417 0.5250 +56159 283847 0.4800 +56159 285498 0.7870 +56159 317719 0.4850 +56159 317761 0.4010 +56159 340719 0.4520 +56159 346673 0.4040 +56159 388649 0.7980 +56159 400629 0.4250 +56159 402381 0.5580 +56159 642636 0.4910 +56159 643803 0.4640 +56159 644186 0.4180 +56159 647310 0.4390 +56159 728343 0.5180 +56159 729991 0.6190 +56159 100507650 0.5770 +56160 64219 0.8720 +56160 79677 0.9990 +56160 79991 0.6410 +56160 84250 0.7450 +56160 84708 0.4060 +56160 124245 0.4400 +56160 126272 0.5730 +56160 146434 0.8340 +56160 158511 0.8150 +56160 163126 0.4240 +56160 197370 0.9990 +56160 266743 0.7710 +56160 286053 0.9990 +56160 375484 0.4260 +56160 387082 0.9140 +56160 493861 0.9960 +56163 56164 0.6730 +56163 56165 0.4130 +56163 57523 0.4710 +56163 83447 0.4080 +56163 83853 0.5310 +56163 83890 0.4040 +56163 83893 0.5200 +56163 84072 0.4670 +56163 84944 0.6220 +56163 89869 0.4440 +56163 91646 0.5800 +56163 117155 0.4340 +56163 122402 0.5790 +56163 136991 0.4240 +56163 138724 0.4060 +56163 143689 0.6550 +56163 148581 0.5620 +56163 150159 0.4670 +56163 161142 0.5450 +56163 163589 0.5320 +56163 164684 0.4610 +56163 166863 0.4070 +56163 192669 0.4010 +56163 200232 0.4170 +56163 201164 0.4360 +56163 221143 0.4790 +56163 253832 0.4400 +56163 257169 0.4240 +56163 283461 0.4740 +56163 284697 0.4760 +56163 346673 0.4560 +56163 440822 0.5760 +56163 643866 0.4150 +56164 56165 0.6360 +56164 56521 0.4170 +56164 58524 0.4450 +56164 63901 0.4280 +56164 79072 0.4670 +56164 84072 0.4700 +56164 84944 0.4690 +56164 115294 0.4390 +56164 120787 0.4260 +56164 122402 0.7260 +56164 126668 0.4010 +56164 128414 0.4850 +56164 145873 0.4130 +56164 152405 0.4130 +56164 155185 0.5080 +56164 163589 0.6530 +56164 201299 0.4450 +56164 202333 0.4190 +56164 219874 0.4300 +56164 284001 0.4610 +56164 340277 0.6210 +56164 341640 0.4200 +56164 390199 0.4250 +56164 400720 0.4080 +56164 100129278 0.4670 +56164 110806297 0.5170 +56165 56203 0.4310 +56165 60681 0.4730 +56165 79727 0.4710 +56165 83639 0.4220 +56165 84944 0.8730 +56165 91646 0.9370 +56165 113802 0.7390 +56165 121355 0.6320 +56165 122402 0.8950 +56165 126668 0.4310 +56165 136991 0.9200 +56165 143689 0.9570 +56165 149699 0.4670 +56165 160728 0.4230 +56165 161829 0.5700 +56165 163589 0.4320 +56165 192669 0.4690 +56165 201164 0.6850 +56165 221400 0.6070 +56165 339345 0.4100 +56165 340706 0.4980 +56165 440822 0.7210 +56165 643376 0.4620 +56169 58484 0.5420 +56169 64127 0.4260 +56169 79742 0.4130 +56169 114548 0.4470 +56169 157638 0.6010 +56169 171389 0.5450 +56169 199713 0.5830 +56169 494513 0.8400 +56171 64446 0.9030 +56171 64800 0.5190 +56171 79819 0.8680 +56171 80086 0.4110 +56171 80217 0.4140 +56171 83450 0.5440 +56171 83544 0.8330 +56171 83657 0.6100 +56171 83658 0.4150 +56171 83659 0.4510 +56171 84059 0.4240 +56171 85463 0.4250 +56171 85478 0.5550 +56171 92749 0.5060 +56171 93233 0.8540 +56171 114327 0.4120 +56171 118491 0.9240 +56171 123872 0.5280 +56171 126820 0.8460 +56171 127602 0.5940 +56171 140735 0.4400 +56171 144132 0.5400 +56171 146177 0.4130 +56171 146754 0.9600 +56171 146845 0.4060 +56171 154865 0.4010 +56171 159686 0.4080 +56171 160762 0.4580 +56171 200373 0.4100 +56171 201625 0.6600 +56171 339829 0.5130 +56171 340351 0.4380 +56171 388389 0.4620 +56172 84277 0.4150 +56172 90423 0.4030 +56172 90488 0.4490 +56172 162466 0.5270 +56172 388946 0.4570 +56172 440730 0.4100 +56180 83930 0.5310 +56180 130888 0.4330 +56180 150275 0.4430 +56180 158747 0.7370 +56180 195977 0.4720 +56180 221409 0.4200 +56180 286234 0.4450 +56180 548645 0.4130 +56181 57506 0.4110 +56181 65082 0.4740 +56181 79568 0.4290 +56181 83787 0.4520 +56181 84561 0.4850 +56181 125988 0.4040 +56203 56907 0.4580 +56203 84501 0.4540 +56203 84665 0.6740 +56203 84700 0.6100 +56203 124093 0.4090 +56203 130827 0.4330 +56203 131377 0.8800 +56203 133746 0.5000 +56203 140469 0.4380 +56203 142679 0.4550 +56203 246329 0.4180 +56203 345456 0.4680 +56203 375189 0.4880 +56203 390594 0.8160 +56203 100288072 0.4860 +56204 84720 0.4260 +56204 92255 0.5730 +56204 130617 0.4810 +56204 255374 0.4880 +56204 256764 0.4590 +56204 376940 0.4510 +56241 64420 0.5100 +56241 128209 0.4790 +56241 140862 0.5080 +56241 145501 0.4160 +56241 149954 0.4020 +56241 387695 0.7410 +56242 81931 0.4420 +56242 171392 0.4840 +56242 283385 0.4350 +56242 389677 0.4010 +56242 645121 0.4500 +56242 100129842 0.7770 +56243 57584 0.4160 +56243 57614 0.4400 +56243 81545 0.4190 +56243 84898 0.4320 +56243 85476 0.4920 +56243 135886 0.4770 +56244 64127 0.6170 +56244 79092 0.4010 +56244 126259 0.4570 +56244 130502 0.5080 +56244 169522 0.4080 +56244 284361 0.5980 +56245 79810 0.4140 +56245 115749 0.5070 +56245 131408 0.4730 +56245 144132 0.4050 +56245 147015 0.4180 +56245 147670 0.5070 +56245 150297 0.4780 +56245 152065 0.5760 +56245 152586 0.4310 +56245 219990 0.4340 +56245 284274 0.4460 +56245 284498 0.4790 +56245 286183 0.4030 +56245 317662 0.4700 +56245 340204 0.4740 +56245 342850 0.4770 +56245 353324 0.4180 +56245 387707 0.4790 +56245 388333 0.4710 +56245 493901 0.5400 +56245 646892 0.4800 +56245 647286 0.4480 +56245 100132916 0.4320 +56246 63924 0.4130 +56246 89846 0.8080 +56246 112609 0.5890 +56246 400258 0.4060 +56246 594857 0.4350 +56252 57634 0.6750 +56252 65059 0.4680 +56252 65125 0.4790 +56252 80341 0.4860 +56252 83694 0.4360 +56252 166378 0.4270 +56252 200424 0.4340 +56252 283571 0.5210 +56252 389677 0.4810 +56252 646658 0.4020 +56253 57456 0.5700 +56253 57823 0.5030 +56253 64092 0.6020 +56253 64802 0.4250 +56253 79652 0.5020 +56253 81577 0.4280 +56253 201633 0.6250 +56253 256957 0.4620 +56253 257101 0.5260 +56253 339145 0.4200 +56254 56852 0.6330 +56254 56943 0.5100 +56254 56949 0.4040 +56254 56970 0.5170 +56254 57019 0.4370 +56254 57448 0.4420 +56254 57504 0.4460 +56254 57634 0.5710 +56254 57680 0.6320 +56254 63893 0.4140 +56254 64320 0.4120 +56254 64750 0.6940 +56254 64783 0.4540 +56254 65264 0.4070 +56254 79095 0.5220 +56254 79577 0.9820 +56254 80335 0.9190 +56254 80349 0.7150 +56254 84101 0.5400 +56254 84444 0.7590 +56254 84661 0.4350 +56254 85236 0.9190 +56254 94239 0.4330 +56254 123169 0.8920 +56254 126961 0.4050 +56254 128312 0.8560 +56254 148581 0.8440 +56254 158880 0.4580 +56254 158983 0.8550 +56254 165918 0.4850 +56254 197131 0.5540 +56254 221302 0.4020 +56254 255626 0.9200 +56254 286436 0.8550 +56254 339287 0.4630 +56254 389677 0.4830 +56254 440093 0.7640 +56254 440686 0.7640 +56254 440689 0.8570 +56254 653604 0.7690 +56254 114483833 0.8560 +56255 56261 0.4700 +56255 57647 0.4500 +56255 64714 0.5050 +56255 79001 0.4850 +56255 84236 0.4150 +56255 85450 0.4190 +56255 121506 0.4750 +56255 150771 0.4210 +56255 155465 0.4380 +56255 162073 0.4240 +56255 171558 0.4050 +56256 65065 0.4470 +56256 83643 0.4170 +56256 158506 0.7890 +56256 162239 0.4580 +56256 170371 0.4010 +56256 100287718 0.4120 +56257 56970 0.4240 +56257 57016 0.4100 +56257 57520 0.4070 +56257 57805 0.4830 +56257 57819 0.4300 +56257 63893 0.7640 +56257 64852 0.5770 +56257 65005 0.4480 +56257 79066 0.8280 +56257 79693 0.4170 +56257 79727 0.5310 +56257 81608 0.4810 +56257 84365 0.4280 +56257 96764 0.4650 +56257 124790 0.9980 +56257 151987 0.4470 +56257 220988 0.4300 +56257 221092 0.5020 +56259 56949 0.9740 +56259 57379 0.8990 +56259 57461 0.8040 +56259 58155 0.6060 +56259 59286 0.8820 +56259 79068 0.4500 +56259 79084 0.4280 +56259 79753 0.8260 +56259 80335 0.4200 +56259 83443 0.8420 +56259 83591 0.4240 +56259 84081 0.7660 +56259 84324 0.4160 +56259 84811 0.8380 +56259 84844 0.8940 +56259 84950 0.9020 +56259 84991 0.4930 +56259 91603 0.6070 +56259 128434 0.5330 +56259 153527 0.8920 +56259 199746 0.5770 +56259 100534599 0.6560 +56261 56994 0.5880 +56261 65220 0.4470 +56261 79944 0.5470 +56261 81544 0.5890 +56261 83473 0.5870 +56261 84056 0.4020 +56261 90806 0.4830 +56261 91227 0.4380 +56261 128387 0.5300 +56261 130576 0.4090 +56261 131149 0.4720 +56261 149840 0.4510 +56261 151056 0.9170 +56261 157695 0.4550 +56261 162466 0.9090 +56261 222389 0.4660 +56261 253558 0.4260 +56261 340146 0.5740 +56261 375775 0.9260 +56262 56650 0.4490 +56262 57348 0.5220 +56262 57554 0.4490 +56262 57633 0.4370 +56262 59341 0.6410 +56262 78999 0.4420 +56262 79414 0.4260 +56262 80131 0.9850 +56262 80727 0.5220 +56262 84230 0.9950 +56262 94015 0.5480 +56262 144453 0.4570 +56262 196527 0.4680 +56262 220296 0.6940 +56262 255022 0.5330 +56262 375387 0.4880 +56262 375616 0.6150 +56262 654429 0.4450 +56265 57523 0.6320 +56265 58504 0.5440 +56265 78997 0.4330 +56265 83604 0.4280 +56265 140685 0.4510 +56265 284422 0.6390 +56267 56954 0.5420 +56267 57226 0.4620 +56267 79017 0.8030 +56267 79717 0.8400 +56267 79896 0.4330 +56267 84706 0.4120 +56267 84842 0.4240 +56267 113451 0.4710 +56267 113675 0.8690 +56267 114112 0.9180 +56267 125061 0.9640 +56267 130013 0.5690 +56267 132949 0.4160 +56267 137362 0.9300 +56267 169355 0.5510 +56267 388630 0.4030 +56267 494115 0.4430 +56269 80028 0.4030 +56270 56957 0.8530 +56270 57724 0.5790 +56270 60673 0.5280 +56270 64422 0.5610 +56270 79065 0.4990 +56270 80262 0.4360 +56270 81671 0.4850 +56270 83734 0.5180 +56270 84817 0.4700 +56270 285973 0.5000 +56270 440738 0.4180 +56271 56849 0.4800 +56271 79921 0.5080 +56271 84707 0.5510 +56271 90843 0.4350 +56271 140597 0.4700 +56287 200504 0.7310 +56287 283951 0.4840 +56287 340547 0.4760 +56287 352999 0.4350 +56288 57154 0.5770 +56288 57216 0.5540 +56288 57530 0.7740 +56288 57669 0.4480 +56288 58494 0.9590 +56288 59272 0.5180 +56288 64398 0.9730 +56288 81607 0.9010 +56288 83593 0.4470 +56288 83700 0.9800 +56288 84552 0.9960 +56288 84612 0.9980 +56288 84708 0.4190 +56288 92359 0.6810 +56288 117583 0.4880 +56288 137075 0.6730 +56288 149461 0.6800 +56288 153562 0.4180 +56288 154796 0.8890 +56288 158038 0.4210 +56288 260425 0.6010 +56288 261734 0.5660 +56288 283349 0.4510 +56288 286204 0.6420 +56288 387755 0.6600 +56288 440193 0.5920 +56288 644672 0.6680 +56288 100132463 0.6510 +56288 100288814 0.6500 +56288 100506658 0.9440 +56300 64332 0.5670 +56300 84639 0.6300 +56300 84648 0.5220 +56300 90865 0.5760 +56300 338324 0.5450 +56300 353145 0.4090 +56300 387695 0.4080 +56301 57709 0.4350 +56301 63826 0.4310 +56301 81539 0.4050 +56301 153201 0.5220 +56301 219623 0.4060 +56301 341277 0.5210 +56301 414919 0.4360 +56302 57192 0.5860 +56302 65125 0.4070 +56302 65266 0.6370 +56302 65267 0.4010 +56302 79054 0.7020 +56302 79849 0.4630 +56302 80324 0.4240 +56302 84876 0.4180 +56302 91860 0.6890 +56302 120227 0.4300 +56302 129401 0.4200 +56302 140803 0.7890 +56302 142680 0.6070 +56302 149461 0.4550 +56302 152831 0.6960 +56302 163688 0.6890 +56302 197021 0.7530 +56302 255231 0.5280 +56311 57037 0.4220 +56311 57677 0.4140 +56311 84075 0.4290 +56311 84692 0.4390 +56311 128229 0.4560 +56311 136991 0.5220 +56311 142689 0.5050 +56311 149473 0.4310 +56311 151254 0.4450 +56311 157567 0.4770 +56311 100288695 0.4080 +56339 57489 0.4040 +56339 57628 0.4890 +56339 57721 0.9990 +56339 63935 0.6110 +56339 64745 0.5200 +56339 64783 0.9990 +56339 64848 0.9460 +56339 64863 0.9990 +56339 64866 0.4180 +56339 79066 0.9900 +56339 79068 0.9000 +56339 79730 0.5430 +56339 79828 0.4630 +56339 79830 0.5780 +56339 79872 0.9990 +56339 79923 0.4550 +56339 84071 0.4060 +56339 84159 0.4180 +56339 91746 0.9530 +56339 91801 0.4760 +56339 93587 0.4160 +56339 113802 0.4450 +56339 115708 0.4180 +56339 121642 0.4200 +56339 131965 0.4280 +56339 154150 0.4110 +56339 158234 0.4270 +56339 196074 0.4570 +56339 200734 0.4350 +56339 221078 0.4080 +56339 221120 0.6100 +56339 253943 0.9890 +56339 343069 0.4030 +56339 440093 0.5050 +56339 100507679 0.4060 +56341 56950 0.4420 +56341 56979 0.4080 +56341 60487 0.4590 +56341 64754 0.6630 +56341 79084 0.5680 +56341 79723 0.4700 +56341 80854 0.6500 +56341 84154 0.5360 +56341 84365 0.4620 +56341 84444 0.4530 +56341 84787 0.4680 +56341 90806 0.6330 +56341 144233 0.4410 +56341 220988 0.4760 +56341 221078 0.4240 +56341 221092 0.5390 +56341 283742 0.4030 +56341 345630 0.4670 +56341 387893 0.4480 +56342 56931 0.4080 +56342 57050 0.6740 +56342 57062 0.7190 +56342 57109 0.7930 +56342 57418 0.4800 +56342 57696 0.4690 +56342 60490 0.5990 +56342 64118 0.4630 +56342 64216 0.5790 +56342 64282 0.4180 +56342 64318 0.6190 +56342 64425 0.6560 +56342 64773 0.4010 +56342 64794 0.5850 +56342 65083 0.6760 +56342 65095 0.7560 +56342 79039 0.8090 +56342 79050 0.7240 +56342 79159 0.5220 +56342 79646 0.4370 +56342 79707 0.5910 +56342 79717 0.4960 +56342 79730 0.4330 +56342 79954 0.8150 +56342 80135 0.9170 +56342 80347 0.4660 +56342 81627 0.4350 +56342 81875 0.4400 +56342 81887 0.7000 +56342 83732 0.5660 +56342 83743 0.8120 +56342 84128 0.6520 +56342 84135 0.4940 +56342 84154 0.9000 +56342 84172 0.4780 +56342 84186 0.4210 +56342 84294 0.6000 +56342 84365 0.8150 +56342 84549 0.9060 +56342 84916 0.5690 +56342 84946 0.6550 +56342 88745 0.4020 +56342 90121 0.4160 +56342 90441 0.6980 +56342 91893 0.5310 +56342 92856 0.7110 +56342 115708 0.5720 +56342 117246 0.8360 +56342 142940 0.5390 +56342 146212 0.4980 +56342 161424 0.6560 +56342 221078 0.6910 +56342 221830 0.4080 +56342 285855 0.5030 +56342 317781 0.6310 +56342 339230 0.4380 +56342 345630 0.4140 +56342 387129 0.4890 +56342 643836 0.4760 +56342 100505478 0.4700 +56344 79959 0.4270 +56344 89872 0.4380 +56344 126006 0.4780 +56344 338917 0.4580 +56344 339302 0.4200 +56344 340205 0.4270 +56344 374920 0.5180 +56413 57105 0.8570 +56413 115557 0.4990 +56413 165140 0.5230 +56474 56952 0.4040 +56474 57038 0.6960 +56474 57136 0.6790 +56474 57176 0.4500 +56474 57505 0.4250 +56474 60558 0.6370 +56474 63947 0.4730 +56474 64965 0.4260 +56474 65008 0.4490 +56474 65083 0.4040 +56474 79073 0.6980 +56474 79631 0.4360 +56474 79711 0.5430 +56474 79947 0.4360 +56474 80745 0.4090 +56474 81570 0.4300 +56474 83549 0.5660 +56474 84172 0.7180 +56474 84187 0.4030 +56474 84284 0.6670 +56474 84916 0.4080 +56474 85476 0.4610 +56474 87178 0.6900 +56474 91574 0.4660 +56474 92399 0.4740 +56474 94056 0.5430 +56474 114803 0.4070 +56474 116150 0.4310 +56474 122481 0.4070 +56474 122622 0.4910 +56474 126402 0.4310 +56474 139596 0.5580 +56474 158067 0.4070 +56474 158584 0.4470 +56474 170082 0.6540 +56474 170685 0.4160 +56474 220359 0.7370 +56474 221264 0.9380 +56474 255308 0.5230 +56474 283985 0.4890 +56474 345630 0.4020 +56474 347487 0.5150 +56474 377841 0.9320 +56474 387712 0.4090 +56474 606495 0.4240 +56474 654364 0.9360 +56474 100287482 0.5100 +56475 157753 0.4160 +56475 256933 0.4070 +56475 388512 0.4870 +56477 57007 0.5200 +56477 58191 0.5820 +56477 284340 0.9940 +56477 414301 0.7390 +56478 57649 0.4340 +56478 57697 0.4380 +56478 58513 0.5430 +56478 64506 0.7950 +56478 64599 0.6290 +56478 80114 0.4400 +56478 80153 0.7230 +56478 80315 0.4870 +56478 81602 0.4070 +56478 83746 0.4300 +56478 84515 0.4680 +56478 85456 0.4080 +56478 90957 0.4190 +56478 92312 0.4430 +56478 93426 0.4390 +56478 149041 0.4640 +56478 149986 0.9800 +56478 164045 0.5130 +56478 167153 0.5160 +56478 167227 0.5890 +56478 192669 0.4480 +56478 196513 0.4150 +56478 197135 0.7230 +56478 219988 0.8220 +56478 220047 0.4470 +56478 253314 0.8890 +56478 254394 0.5440 +56478 340719 0.5830 +56478 402381 0.4340 +56478 404734 0.4210 +56479 56648 0.4270 +56479 57030 0.4200 +56479 57369 0.4430 +56479 58513 0.5400 +56479 63931 0.5010 +56479 64960 0.5010 +56479 64963 0.5010 +56479 64969 0.4640 +56479 65003 0.4780 +56479 65008 0.4710 +56479 79590 0.5160 +56479 80115 0.7380 +56479 83988 0.9120 +56479 84251 0.7250 +56479 90134 0.4630 +56479 91860 0.6110 +56479 114987 0.4460 +56479 122616 0.5400 +56479 126402 0.5030 +56479 130340 0.5520 +56479 140032 0.4890 +56479 143244 0.4260 +56479 150350 0.5400 +56479 163688 0.6120 +56479 200916 0.4760 +56479 285855 0.4500 +56479 347487 0.4220 +56479 375759 0.5790 +56479 387129 0.4680 +56479 643136 0.4180 +56479 646960 0.5840 +56479 100134444 0.9150 +56479 100287482 0.4220 +56479 100505478 0.4500 +56479 100526842 0.5030 +56479 100529097 0.4960 +56479 100529239 0.5030 +56521 58524 0.4070 +56521 63901 0.4260 +56521 64215 0.5350 +56521 79072 0.4420 +56521 112479 0.5660 +56521 120787 0.4180 +56521 121278 0.6540 +56521 128414 0.4590 +56521 155185 0.4590 +56521 165721 0.4350 +56521 201299 0.4290 +56521 202052 0.4300 +56521 202333 0.4010 +56521 284001 0.4480 +56521 387990 0.5520 +56521 390199 0.4420 +56521 392392 0.4320 +56521 400720 0.4010 +56521 548645 0.5450 +56521 642574 0.4550 +56548 60484 0.4330 +56548 63827 0.5000 +56548 64131 0.4410 +56548 64132 0.4150 +56548 64579 0.4170 +56548 64711 0.4580 +56548 79586 0.5320 +56548 84679 0.8480 +56548 113189 0.6990 +56548 166012 0.8110 +56548 222537 0.4200 +56548 266722 0.4230 +56548 347344 0.4830 +56548 641339 0.8420 +56548 646262 0.5610 +56603 57404 0.5150 +56603 57665 0.4240 +56603 57709 0.4040 +56603 57834 0.4830 +56603 64220 0.6540 +56603 79575 0.4370 +56603 79799 0.6870 +56603 80777 0.4720 +56603 83875 0.4150 +56603 121214 0.4950 +56603 126410 0.4120 +56603 132949 0.5170 +56603 145226 0.4370 +56603 157506 0.7510 +56603 195814 0.4310 +56603 284541 0.9270 +56603 339345 0.9560 +56603 340665 0.9220 +56603 346673 0.9340 +56603 574537 0.7020 +56603 100861540 0.9320 +56605 64714 0.8510 +56605 81567 0.9590 +56605 84447 0.4210 +56605 91319 0.4470 +56605 121506 0.4470 +56605 128178 0.5090 +56605 169714 0.4730 +56605 339416 0.4740 +56606 64849 0.4410 +56606 81031 0.4440 +56606 85413 0.4400 +56606 85460 0.5350 +56606 114571 0.7380 +56606 116085 0.9960 +56606 126133 0.6440 +56606 146802 0.4760 +56606 154091 0.4630 +56606 159963 0.7420 +56606 160728 0.7580 +56606 220963 0.7320 +56606 387775 0.6520 +56623 57585 0.4510 +56623 58509 0.4590 +56623 63916 0.4270 +56623 79738 0.4800 +56623 79837 0.9250 +56623 80184 0.5150 +56623 84256 0.5560 +56623 84467 0.4440 +56623 84812 0.6680 +56623 85302 0.5100 +56623 85477 0.4590 +56623 89869 0.6600 +56623 90809 0.9180 +56623 93643 0.5070 +56623 113026 0.6670 +56623 132320 0.4370 +56623 138429 0.9070 +56623 146059 0.5330 +56623 157680 0.4570 +56623 166379 0.4990 +56623 200576 0.4570 +56623 200894 0.9560 +56623 261734 0.5100 +56624 56848 0.9780 +56624 57704 0.9520 +56624 64781 0.9750 +56624 79603 0.9620 +56624 81537 0.9390 +56624 83723 0.5240 +56624 91012 0.9610 +56624 123099 0.9450 +56624 125981 0.9850 +56624 130367 0.9440 +56624 142891 0.4150 +56624 166929 0.9550 +56624 204219 0.9520 +56624 253782 0.9650 +56624 259230 0.9650 +56624 339221 0.8880 +56624 340485 0.9870 +56624 375298 0.4600 +56647 56902 0.4330 +56647 56915 0.6780 +56647 57418 0.5560 +56647 57697 0.4420 +56647 79711 0.4140 +56647 80135 0.6360 +56647 83743 0.7080 +56647 84154 0.8720 +56647 84193 0.5890 +56647 84294 0.5470 +56647 84298 0.5630 +56647 84365 0.7910 +56647 84549 0.4090 +56647 84916 0.4830 +56647 84946 0.4320 +56647 88745 0.5020 +56647 90121 0.6140 +56647 92140 0.9450 +56647 92856 0.7000 +56647 115572 0.4290 +56647 150159 0.5410 +56647 161424 0.4490 +56647 167153 0.6830 +56647 201973 0.4020 +56647 221830 0.4280 +56647 284613 0.4540 +56647 388021 0.4720 +56647 102157402 0.5740 +56648 57038 0.4070 +56648 63875 0.8300 +56648 63931 0.6620 +56648 64328 0.7740 +56648 64374 0.6570 +56648 64960 0.8100 +56648 64963 0.7650 +56648 64965 0.9430 +56648 64968 0.8820 +56648 64969 0.8010 +56648 64979 0.8380 +56648 64983 0.9390 +56648 65003 0.6340 +56648 65005 0.8810 +56648 65008 0.8000 +56648 65121 0.5100 +56648 65122 0.5100 +56648 65993 0.4090 +56648 79590 0.7040 +56648 79631 0.7050 +56648 79814 0.4100 +56648 79834 0.4030 +56648 83475 0.9800 +56648 84296 0.4820 +56648 84340 0.4260 +56648 85476 0.7090 +56648 91893 0.4080 +56648 92196 0.5180 +56648 92399 0.4640 +56648 93107 0.4260 +56648 114987 0.8210 +56648 116832 0.7670 +56648 124454 0.6050 +56648 126402 0.8340 +56648 138428 0.4080 +56648 140032 0.7570 +56648 140801 0.7100 +56648 169522 0.4260 +56648 170850 0.4260 +56648 200916 0.8310 +56648 219927 0.9340 +56648 221823 0.4180 +56648 254268 0.6010 +56648 255308 0.4810 +56648 283383 0.6570 +56648 283518 0.4260 +56648 285855 0.7990 +56648 342538 0.4300 +56648 343068 0.5100 +56648 343070 0.5100 +56648 347487 0.7810 +56648 387129 0.6810 +56648 390999 0.5100 +56648 391002 0.5100 +56648 400735 0.5100 +56648 400736 0.5100 +56648 440560 0.5100 +56648 440561 0.5100 +56648 441873 0.5100 +56648 641776 0.6260 +56648 643909 0.6260 +56648 645051 0.4920 +56648 645073 0.4920 +56648 645359 0.5100 +56648 653619 0.5100 +56648 654364 0.4090 +56648 728524 0.6260 +56648 729396 0.4920 +56648 729422 0.4920 +56648 729428 0.4920 +56648 729431 0.4920 +56648 729442 0.4920 +56648 729447 0.4920 +56648 729528 0.5100 +56648 100008586 0.4920 +56648 100132399 0.4920 +56648 100287482 0.7550 +56648 100505478 0.6780 +56648 100526842 0.8130 +56648 100529097 0.7160 +56648 100529239 0.6060 +56648 100996746 0.6260 +56648 101929983 0.5100 +56648 102724473 0.4920 +56648 105180390 0.6260 +56648 105180391 0.6260 +56649 57393 0.4530 +56649 59272 0.7360 +56649 64072 0.6200 +56649 65217 0.5410 +56649 83715 0.4060 +56649 117531 0.6870 +56649 125336 0.6120 +56649 126326 0.5180 +56649 146183 0.5900 +56649 161497 0.6050 +56649 222662 0.4790 +56649 259236 0.5820 +56649 286262 0.5100 +56649 286676 0.5340 +56649 339967 0.4200 +56649 340990 0.4130 +56649 389207 0.5080 +56649 389208 0.4600 +56649 494513 0.7380 +56650 79629 0.4290 +56650 80119 0.4180 +56650 340745 0.4090 +56652 57626 0.6990 +56652 64216 0.7570 +56652 79675 0.5890 +56652 79736 0.7030 +56652 80119 0.5550 +56652 80324 0.4140 +56652 84545 0.8060 +56652 87178 0.4020 +56652 90381 0.4120 +56652 92667 0.8570 +56652 116447 0.5040 +56652 130916 0.5610 +56652 164045 0.4970 +56652 201973 0.7180 +56652 246243 0.8690 +56654 57571 0.4680 +56654 81035 0.6100 +56654 84960 0.5390 +56654 158056 0.5070 +56654 170954 0.4440 +56654 196500 0.7080 +56654 285966 0.4220 +56654 286256 0.5100 +56654 339390 0.5650 +56655 56852 0.5480 +56655 56943 0.7330 +56655 56970 0.7200 +56655 57325 0.8640 +56655 57461 0.4460 +56655 57599 0.5130 +56655 57804 0.5460 +56655 64785 0.5460 +56655 79728 0.4990 +56655 80010 0.4860 +56655 81890 0.4320 +56655 83443 0.5750 +56655 83444 0.4120 +56655 83990 0.4640 +56655 84296 0.5880 +56655 84515 0.5430 +56655 84865 0.4120 +56655 93624 0.7290 +56655 112869 0.8820 +56655 116028 0.4880 +56655 117143 0.7200 +56655 124739 0.5180 +56656 125958 0.5100 +56656 131368 0.4210 +56656 204474 0.4150 +56656 284521 0.5130 +56656 391196 0.5120 +56656 401427 0.5140 +56658 58509 0.7760 +56658 63943 0.4320 +56658 64112 0.8020 +56658 79744 0.5600 +56658 79897 0.5440 +56658 80019 0.6760 +56658 80700 0.4610 +56658 83607 0.4380 +56658 84260 0.4140 +56658 90060 0.5170 +56658 114088 0.5130 +56658 114781 0.5130 +56658 116173 0.4660 +56658 202658 0.8060 +56658 285268 0.4770 +56658 442862 0.5060 +56659 56660 0.8560 +56659 60598 0.6310 +56659 64805 0.4900 +56659 83795 0.6700 +56659 89822 0.6530 +56659 338567 0.8760 +56660 60598 0.6570 +56660 64409 0.4450 +56660 65009 0.4550 +56660 83795 0.6700 +56660 89822 0.6530 +56660 170850 0.4810 +56660 285051 0.4720 +56660 338567 0.8500 +56660 441151 0.4020 +56666 57369 0.4920 +56666 84892 0.4280 +56666 116843 0.4430 +56666 255022 0.4690 +56667 56913 0.5480 +56667 63917 0.4020 +56667 64409 0.4020 +56667 65217 0.4080 +56667 79369 0.4050 +56667 79574 0.5210 +56667 79623 0.9120 +56667 79695 0.4030 +56667 79747 0.4330 +56667 79781 0.4300 +56667 83998 0.4580 +56667 84002 0.6260 +56667 84752 0.4120 +56667 91050 0.4170 +56667 93010 0.4160 +56667 94025 0.9110 +56667 114805 0.4140 +56667 117248 0.4590 +56667 118430 0.5920 +56667 119467 0.4100 +56667 130120 0.4830 +56667 139135 0.4010 +56667 140453 0.9690 +56667 143662 0.9400 +56667 192134 0.4910 +56667 200958 0.9490 +56667 256435 0.4160 +56667 374378 0.4020 +56667 374907 0.4150 +56667 394263 0.9150 +56667 442117 0.4090 +56667 727897 0.9260 +56667 100506658 0.4100 +56667 100507679 0.6450 +56670 63940 0.4250 +56670 64805 0.4220 +56670 80835 0.4150 +56670 338442 0.7110 +56670 346562 0.4310 +56670 730249 0.4630 +56672 123228 0.5390 +56672 201140 0.6070 +56672 282809 0.4810 +56673 56676 0.4170 +56673 80086 0.4790 +56673 114825 0.6780 +56673 115749 0.6230 +56673 160298 0.4540 +56673 221545 0.5420 +56674 79050 0.5000 +56674 79643 0.4370 +56674 80737 0.4970 +56674 81543 0.4730 +56674 84274 0.4730 +56674 89822 0.4730 +56674 92002 0.5480 +56674 131096 0.4440 +56674 165257 0.4650 +56674 220134 0.4630 +56674 253782 0.4200 +56674 256356 0.4900 +56674 286148 0.5430 +56675 56893 0.4040 +56675 56984 0.5400 +56675 84301 0.6020 +56675 84993 0.4040 +56675 132299 0.4600 +56675 143630 0.4040 +56675 221687 0.4140 +56675 390275 0.4450 +56675 414301 0.8070 +56675 493860 0.4180 +56676 84320 0.5090 +56676 137964 0.4090 +56676 168620 0.4220 +56676 283152 0.4820 +56676 345079 0.4410 +56681 58477 0.4790 +56681 59349 0.9250 +56681 64083 0.8460 +56681 81555 0.4700 +56681 81876 0.5550 +56681 89866 0.8590 +56681 91369 0.6540 +56681 93183 0.4360 +56681 133619 0.6140 +56681 375056 0.5980 +56681 553115 0.9170 +56683 64446 0.6990 +56683 83538 0.5910 +56683 85016 0.7350 +56683 85478 0.7470 +56683 89765 0.6490 +56683 92749 0.6670 +56683 93233 0.6990 +56683 115399 0.5590 +56683 115948 0.7160 +56683 116143 0.6560 +56683 120379 0.5030 +56683 123872 0.8700 +56683 139212 0.7270 +56683 160762 0.4180 +56683 161582 0.8090 +56683 164781 0.4060 +56683 200132 0.4090 +56683 221421 0.6210 +56683 339829 0.6510 +56683 342897 0.4200 +56683 345643 0.5070 +56683 345895 0.6550 +56683 352909 0.8120 +56683 388389 0.7290 +56704 57158 0.5850 +56704 57338 0.5980 +56704 57620 0.4150 +56704 84502 0.6390 +56704 91860 0.5680 +56704 126306 0.5030 +56704 163688 0.5640 +56704 246329 0.5940 +56704 284612 0.7910 +56704 440712 0.4200 +56704 493829 0.4550 +56729 57104 0.4560 +56729 57818 0.6830 +56729 60686 0.4920 +56729 63924 0.4430 +56729 63976 0.4340 +56729 79602 0.8690 +56729 92579 0.7070 +56729 133396 0.5190 +56729 145264 0.7200 +56729 199675 0.5680 +56729 252995 0.5400 +56729 386653 0.5360 +56729 728358 0.5710 +56731 57128 0.5790 +56731 57473 0.5850 +56731 60412 0.4350 +56731 63931 0.4080 +56731 64847 0.4180 +56731 79025 0.4390 +56731 80178 0.4780 +56731 84619 0.6910 +56731 116832 0.4620 +56731 124454 0.4300 +56731 140701 0.4830 +56731 163050 0.4110 +56731 164045 0.5470 +56731 203068 0.4080 +56731 728763 0.4590 +56731 100271849 0.4640 +56751 56956 0.7720 +56751 64211 0.6660 +56751 64843 0.4710 +56751 84107 0.4560 +56751 200894 0.4280 +56751 256297 0.5950 +56751 643226 0.4220 +56776 56907 0.9920 +56776 64388 0.4090 +56776 81624 0.4010 +56776 84501 0.9150 +56776 85462 0.5290 +56776 116966 0.5780 +56776 123720 0.4990 +56776 133746 0.5660 +56776 342184 0.5250 +56776 345456 0.6870 +56776 375189 0.7540 +56776 392862 0.5240 +56829 56915 0.8680 +56829 56965 0.6200 +56829 57062 0.4890 +56829 57085 0.5010 +56829 57169 0.5120 +56829 57506 0.4660 +56829 57664 0.4280 +56829 57670 0.5920 +56829 60489 0.4070 +56829 63977 0.5040 +56829 64135 0.6380 +56829 64282 0.5860 +56829 64761 0.7100 +56829 64802 0.5390 +56829 79132 0.4990 +56829 79159 0.6270 +56829 79668 0.5420 +56829 79811 0.6550 +56829 80853 0.5160 +56829 81844 0.4730 +56829 83666 0.6420 +56829 83707 0.5640 +56829 84196 0.4680 +56829 84298 0.6130 +56829 84365 0.5420 +56829 84549 0.4820 +56829 84656 0.4550 +56829 84875 0.4020 +56829 85363 0.5160 +56829 85441 0.4270 +56829 90957 0.4380 +56829 91543 0.6050 +56829 129607 0.4390 +56829 132430 0.4200 +56829 140733 0.4700 +56829 149041 0.5070 +56829 151636 0.5490 +56829 165631 0.4700 +56829 167227 0.4450 +56829 170506 0.4710 +56829 221443 0.4370 +56829 400668 0.5030 +56832 57506 0.4310 +56832 58985 0.6890 +56832 64135 0.5280 +56832 79817 0.6460 +56832 115004 0.4450 +56832 116379 0.6640 +56832 149233 0.6730 +56832 158038 0.4780 +56832 163702 0.8570 +56832 282616 0.7010 +56832 282617 0.7010 +56832 282618 0.7260 +56832 338376 0.7230 +56833 57823 0.5390 +56833 89886 0.7300 +56833 114836 0.6380 +56833 115362 0.4280 +56833 117157 0.4850 +56833 118932 0.4220 +56833 126823 0.5350 +56833 257106 0.5790 +56833 343413 0.5250 +56833 375387 0.4720 +56833 441168 0.4110 +56834 56927 0.5560 +56834 57512 0.6230 +56834 57720 0.4040 +56834 64582 0.4230 +56834 79637 0.4390 +56834 80772 0.4630 +56834 81565 0.4030 +56834 84304 0.4810 +56834 84878 0.4570 +56834 116835 0.4420 +56834 131601 0.4250 +56834 151556 0.4490 +56834 222894 0.4670 +56834 283234 0.4970 +56834 390212 0.4460 +56848 57704 0.4130 +56848 64781 0.4050 +56848 79603 0.9570 +56848 80233 0.4670 +56848 81537 0.9910 +56848 83723 0.8790 +56848 84219 0.4540 +56848 91012 0.9560 +56848 123099 0.9450 +56848 124976 0.7730 +56848 125981 0.9690 +56848 130367 0.9750 +56848 166929 0.4480 +56848 204219 0.9500 +56848 253782 0.9630 +56848 259230 0.4770 +56848 266629 0.4020 +56848 339221 0.4520 +56848 340485 0.9710 +56848 388931 0.6960 +56848 440093 0.9640 +56848 440686 0.9620 +56848 653308 0.4060 +56848 653604 0.9620 +56849 79921 0.4650 +56849 85012 0.4670 +56849 140597 0.5060 +56849 158931 0.9700 +56849 340542 0.4350 +56849 340543 0.6380 +56850 58513 0.4360 +56850 64145 0.5080 +56850 79058 0.4770 +56850 80852 0.8490 +56850 81565 0.4160 +56850 84960 0.4370 +56850 90353 0.4260 +56850 139285 0.4440 +56850 139628 0.4170 +56850 165055 0.4120 +56850 170954 0.5920 +56850 221960 0.6850 +56850 338382 0.4350 +56850 441925 0.5380 +56851 57520 0.4230 +56851 79971 0.5670 +56851 83460 0.9990 +56851 93380 0.9990 +56851 200185 0.5840 +56851 222068 0.4230 +56851 284361 0.9990 +56851 286451 0.5370 +56852 56897 0.8930 +56852 57082 0.4800 +56852 57178 0.4310 +56852 57448 0.4140 +56852 57599 0.7620 +56852 57697 0.9570 +56852 57804 0.5390 +56852 63893 0.4420 +56852 63922 0.4300 +56852 63967 0.5950 +56852 64210 0.4030 +56852 64858 0.4910 +56852 65264 0.4160 +56852 79677 0.8300 +56852 79728 0.6890 +56852 79915 0.7320 +56852 80010 0.5460 +56852 80198 0.7570 +56852 80233 0.4830 +56852 81620 0.4660 +56852 83546 0.4220 +56852 83637 0.4310 +56852 83695 0.4820 +56852 83932 0.8070 +56852 83990 0.6280 +56852 84083 0.6240 +56852 84126 0.5510 +56852 84250 0.9560 +56852 84464 0.6170 +56852 84893 0.9000 +56852 91442 0.6210 +56852 114799 0.4920 +56852 115560 0.5660 +56852 125476 0.4270 +56852 146956 0.4260 +56852 148581 0.5160 +56852 157570 0.5590 +56852 165918 0.8490 +56852 197131 0.5850 +56852 199990 0.4470 +56852 201973 0.5780 +56852 221302 0.4350 +56852 254225 0.7340 +56852 257218 0.9940 +56852 286053 0.5440 +56852 286183 0.4030 +56852 348654 0.4300 +56852 353497 0.7570 +56852 387082 0.8320 +56852 548593 0.4560 +56852 653604 0.4970 +56852 100533467 0.4450 +56853 146713 0.4310 +56882 128272 0.4370 +56884 57554 0.4480 +56884 79740 0.4960 +56884 80023 0.4830 +56884 85445 0.4160 +56884 91851 0.4230 +56884 116255 0.4130 +56884 132204 0.4080 +56884 151790 0.4390 +56884 168667 0.4670 +56884 219770 0.4480 +56884 286183 0.4690 +56886 57134 0.4670 +56886 57521 0.6750 +56886 79087 0.5440 +56886 79139 0.4920 +56886 80267 0.7340 +56886 81562 0.4010 +56886 81567 0.5980 +56886 84061 0.5300 +56886 84572 0.4760 +56886 84955 0.6220 +56886 120787 0.4710 +56886 125972 0.4750 +56886 140606 0.4890 +56886 197131 0.4120 +56886 201595 0.7150 +56886 283464 0.9150 +56886 440138 0.4990 +56886 727936 0.9110 +56888 63905 0.4030 +56888 128822 0.6870 +56888 197131 0.4270 +56888 221981 0.6180 +56889 136263 0.5430 +56889 222068 0.4900 +56889 284680 0.4400 +56889 374882 0.4020 +56889 440026 0.4610 +56890 57231 0.6960 +56890 83891 0.6140 +56890 83930 0.5670 +56890 201973 0.5360 +56890 399979 0.5450 +56891 80832 0.4570 +56891 142683 0.4950 +56892 57819 0.4630 +56893 63931 0.4620 +56893 64963 0.5100 +56893 64969 0.4280 +56893 65008 0.4100 +56893 65997 0.4040 +56893 79590 0.4460 +56893 83473 0.4720 +56893 83714 0.4040 +56893 84231 0.5840 +56893 84301 0.5350 +56893 84557 0.4150 +56893 84678 0.4920 +56893 84936 0.5960 +56893 84991 0.6030 +56893 91373 0.4190 +56893 114987 0.4470 +56893 124454 0.4100 +56893 126402 0.4410 +56893 127002 0.4060 +56893 130340 0.4240 +56893 140032 0.4780 +56893 143471 0.9940 +56893 200916 0.4160 +56893 203228 0.4980 +56893 221302 0.4280 +56893 283237 0.4610 +56893 285855 0.4020 +56893 342371 0.5290 +56893 347487 0.4110 +56893 414328 0.4060 +56893 100529097 0.4480 +56893 100529239 0.4200 +56894 56895 0.9370 +56894 56994 0.4170 +56894 57678 0.9120 +56894 60481 0.4160 +56894 64900 0.8430 +56894 79071 0.4730 +56894 79143 0.9310 +56894 79888 0.5550 +56894 80168 0.5020 +56894 81490 0.4030 +56894 84188 0.4010 +56894 84513 0.9210 +56894 84649 0.6170 +56894 84803 0.8870 +56894 116255 0.6130 +56894 122618 0.6500 +56894 129642 0.9590 +56894 132001 0.4280 +56894 132949 0.5120 +56894 137964 0.9060 +56894 139189 0.6650 +56894 150763 0.8570 +56894 154141 0.9220 +56894 160851 0.6770 +56894 196051 0.9210 +56894 253558 0.9140 +56894 254531 0.6360 +56894 653519 0.4090 +56895 57678 0.9110 +56895 64900 0.8450 +56895 79143 0.9150 +56895 79888 0.4420 +56895 79966 0.4080 +56895 84513 0.9210 +56895 84649 0.4950 +56895 84803 0.8930 +56895 122618 0.6500 +56895 129642 0.9550 +56895 132001 0.4360 +56895 132949 0.4260 +56895 137964 0.8800 +56895 139189 0.6650 +56895 150763 0.8940 +56895 154141 0.9440 +56895 160851 0.7360 +56895 196051 0.9210 +56895 253558 0.9110 +56895 254531 0.6010 +56895 642938 0.4280 +56896 57628 0.7290 +56896 84107 0.7840 +56896 84275 0.4230 +56896 84735 0.4420 +56896 89894 0.6230 +56896 91584 0.5550 +56896 92106 0.5620 +56896 92737 0.7260 +56896 127845 0.6050 +56896 148811 0.4160 +56896 283985 0.4370 +56896 347862 0.4840 +56896 402665 0.7210 +56896 606495 0.5620 +56896 100526760 0.4160 +56897 57122 0.6220 +56897 57697 0.4940 +56897 79915 0.4990 +56897 80119 0.4410 +56897 80198 0.5800 +56897 83990 0.4440 +56897 84083 0.6830 +56897 84464 0.4960 +56897 84893 0.6330 +56897 92797 0.4010 +56897 201973 0.6680 +56897 246243 0.4310 +56897 254394 0.5100 +56897 257218 0.4280 +56897 259282 0.6050 +56897 285800 0.4790 +56898 64064 0.9510 +56898 65985 0.9390 +56898 84693 0.4130 +56898 84869 0.4300 +56898 112812 0.4630 +56898 132949 0.4430 +56898 133308 0.6870 +56898 150159 0.5530 +56898 200205 0.4120 +56899 57091 0.4010 +56899 57554 0.4680 +56899 65975 0.4730 +56899 83987 0.4350 +56899 84958 0.4300 +56899 91977 0.4610 +56899 119391 0.4060 +56899 129684 0.5400 +56899 133584 0.4690 +56899 152330 0.4190 +56899 153090 0.6230 +56899 170691 0.4010 +56899 220107 0.4270 +56899 221692 0.4640 +56900 57231 0.4340 +56900 83894 0.4190 +56900 122553 0.4760 +56900 127003 0.4610 +56900 163479 0.4740 +56900 164153 0.4560 +56900 199692 0.4330 +56900 254268 0.4550 +56900 284611 0.4710 +56900 386684 0.5830 +56901 65018 0.6930 +56901 79728 0.4960 +56901 84419 0.6530 +56901 84651 0.4710 +56901 84701 0.8360 +56901 84833 0.6140 +56901 91942 0.5170 +56901 125965 0.5360 +56901 126328 0.5440 +56901 132671 0.4370 +56901 146862 0.4200 +56901 170712 0.7100 +56901 267020 0.5910 +56901 341947 0.6040 +56901 374291 0.4780 +56901 388753 0.5040 +56901 408187 0.5320 +56901 440567 0.8350 +56901 643394 0.5270 +56901 100532726 0.6650 +56902 56915 0.8150 +56902 57050 0.9620 +56902 57418 0.5780 +56902 57470 0.8840 +56902 57647 0.8800 +56902 64216 0.6010 +56902 64794 0.5580 +56902 64960 0.5030 +56902 64963 0.5170 +56902 65083 0.9800 +56902 79050 0.9820 +56902 79954 0.9610 +56902 80135 0.6020 +56902 83732 0.9800 +56902 83743 0.6040 +56902 84128 0.9750 +56902 84135 0.9800 +56902 84154 0.8440 +56902 84172 0.4300 +56902 84285 0.4710 +56902 84294 0.6200 +56902 84306 0.4950 +56902 84365 0.7460 +56902 84549 0.7050 +56902 84916 0.9720 +56902 84946 0.9980 +56902 85395 0.8730 +56902 90121 0.5800 +56902 91582 0.8040 +56902 92856 0.9740 +56902 114987 0.4400 +56902 115708 0.5580 +56902 116143 0.5690 +56902 117246 0.5790 +56902 118460 0.4840 +56902 126402 0.5120 +56902 128061 0.8010 +56902 140032 0.7410 +56902 153443 0.4890 +56902 155368 0.4030 +56902 161424 0.4420 +56902 165545 0.4380 +56902 221830 0.5230 +56902 285855 0.4050 +56902 345630 0.6530 +56902 554251 0.4880 +56902 102157402 0.4980 +56903 57710 0.5780 +56903 63928 0.4660 +56903 64282 0.7870 +56903 64421 0.4720 +56903 64506 0.8720 +56903 64848 0.4980 +56903 64852 0.9130 +56903 64858 0.4720 +56903 64895 0.9060 +56903 79084 0.5900 +56903 79670 0.5820 +56903 79869 0.5040 +56903 79882 0.5130 +56903 80315 0.5190 +56903 80335 0.8350 +56903 80336 0.4490 +56903 81608 0.9570 +56903 81892 0.5270 +56903 84186 0.9940 +56903 84524 0.5040 +56903 85302 0.4500 +56903 87178 0.5840 +56903 91746 0.5050 +56903 115752 0.4340 +56903 118460 0.4310 +56903 129563 0.4690 +56903 132864 0.5340 +56903 136157 0.4630 +56903 143506 0.4630 +56903 143689 0.4090 +56903 154197 0.6080 +56903 167153 0.8690 +56903 167227 0.4470 +56903 196120 0.4630 +56903 196441 0.8510 +56903 376940 0.5040 +56903 390031 0.4630 +56903 390033 0.4630 +56903 441584 0.4630 +56903 642843 0.6680 +56903 643988 0.4630 +56903 100529063 0.4820 +56904 57217 0.4010 +56904 79090 0.5070 +56904 84668 0.4300 +56904 84971 0.5310 +56904 116983 0.4590 +56904 129642 0.6500 +56904 145567 0.4600 +56904 286451 0.4240 +56905 57184 0.5810 +56905 84993 0.4800 +56905 126526 0.4510 +56905 192683 0.4040 +56906 57215 0.5700 +56906 79725 0.6000 +56906 80764 0.5730 +56906 83591 0.5110 +56906 90326 0.5700 +56906 140735 0.5820 +56906 152815 0.6110 +56906 168451 0.5830 +56906 199745 0.7010 +56907 64423 0.6970 +56907 79886 0.4120 +56907 79959 0.5720 +56907 80179 0.4180 +56907 81624 0.4520 +56907 84501 0.4530 +56907 123720 0.4360 +56907 133746 0.5880 +56907 255738 0.6280 +56907 342184 0.9560 +56907 345456 0.4210 +56907 375189 0.4770 +56907 442721 0.4700 +56910 57519 0.4900 +56910 80765 0.6450 +56910 84457 0.4100 +56910 84549 0.4130 +56910 90627 0.4360 +56910 91151 0.4030 +56910 134429 0.4790 +56910 134526 0.4750 +56910 147323 0.4270 +56910 151313 0.4180 +56910 401474 0.7570 +56911 56996 0.4830 +56911 79785 0.4520 +56911 84221 0.4050 +56911 257397 0.6910 +56911 389125 0.4250 +56912 57539 0.8810 +56912 57545 0.4420 +56912 57560 0.9980 +56912 57576 0.7590 +56912 57728 0.8960 +56912 63939 0.4810 +56912 64080 0.4800 +56912 64446 0.4050 +56912 64792 0.9990 +56912 79659 0.5880 +56912 79696 0.6210 +56912 79722 0.8320 +56912 79809 0.8850 +56912 79989 0.9990 +56912 80173 0.9990 +56912 80776 0.5350 +56912 85016 0.4470 +56912 90410 0.9910 +56912 92104 0.9870 +56912 112752 0.9220 +56912 112812 0.6370 +56912 115948 0.8520 +56912 124602 0.5180 +56912 127733 0.4090 +56912 129880 0.4930 +56912 150737 0.9990 +56912 154141 0.4630 +56912 160762 0.4380 +56912 161582 0.4460 +56912 164781 0.9830 +56912 199223 0.6000 +56912 200894 0.8920 +56912 414328 0.6250 +56913 57452 0.7140 +56913 63917 0.8160 +56913 64409 0.7340 +56913 79586 0.4970 +56913 79623 0.5430 +56913 79695 0.8150 +56913 83417 0.5900 +56913 84002 0.4210 +56913 94025 0.6210 +56913 117248 0.7410 +56913 124872 0.4790 +56913 140453 0.5320 +56913 143662 0.4670 +56913 192134 0.9720 +56913 200958 0.5620 +56913 256435 0.4950 +56913 374378 0.7820 +56913 374907 0.4180 +56913 394263 0.5030 +56913 442117 0.7070 +56913 727897 0.5260 +56913 728819 0.9230 +56914 57053 0.4460 +56914 146183 0.4310 +56914 150677 0.5410 +56914 340307 0.4470 +56914 441294 0.4760 +56914 643854 0.5090 +56914 100142659 0.4330 +56915 57050 0.7990 +56915 57109 0.4740 +56915 57136 0.5920 +56915 57647 0.5040 +56915 57819 0.5140 +56915 60528 0.4770 +56915 64216 0.5470 +56915 64282 0.5290 +56915 65083 0.8780 +56915 79050 0.8070 +56915 79571 0.8110 +56915 79954 0.5830 +56915 80135 0.4190 +56915 80349 0.7790 +56915 81887 0.4430 +56915 83743 0.4680 +56915 84128 0.9100 +56915 84135 0.8230 +56915 84154 0.4450 +56915 84186 0.6680 +56915 84294 0.4830 +56915 84916 0.8390 +56915 84955 0.4840 +56915 85441 0.7400 +56915 87178 0.9730 +56915 88745 0.5560 +56915 90459 0.5520 +56915 92856 0.8680 +56915 115752 0.9990 +56915 118460 0.9990 +56915 129563 0.9650 +56915 133482 0.4520 +56915 155368 0.4100 +56915 167227 0.7390 +56915 196441 0.9630 +56915 345630 0.5030 +56916 57418 0.4690 +56916 57614 0.4270 +56916 57680 0.4450 +56916 79813 0.4500 +56916 79923 0.4430 +56916 80010 0.4010 +56916 81887 0.5210 +56916 81931 0.8200 +56916 83746 0.4130 +56916 114803 0.4050 +56916 125893 0.4340 +56916 165918 0.4590 +56916 196528 0.4680 +56916 375748 0.4160 +56917 80714 0.9040 +56917 163223 0.4570 +56917 196541 0.4360 +56917 644974 0.4160 +56919 56949 0.6520 +56919 57050 0.6820 +56919 57062 0.6620 +56919 57506 0.9920 +56919 57602 0.8490 +56919 57696 0.4960 +56919 57703 0.6240 +56919 58484 0.7830 +56919 64135 0.4890 +56919 64434 0.7120 +56919 65083 0.6580 +56919 79009 0.6190 +56919 79039 0.5960 +56919 79050 0.4710 +56919 79132 0.4450 +56919 79446 0.5280 +56919 79792 0.7940 +56919 79954 0.4220 +56919 81030 0.4180 +56919 84916 0.4970 +56919 84946 0.4540 +56919 92856 0.6630 +56919 114548 0.9980 +56919 165545 0.5480 +56919 170506 0.4060 +56919 171389 0.9410 +56919 222183 0.4880 +56919 317781 0.4580 +56919 338321 0.9230 +56920 91584 0.6720 +56920 339896 0.4210 +56922 64064 0.6550 +56922 64087 0.9990 +56922 64710 0.4520 +56922 79072 0.5010 +56922 79728 0.4320 +56922 81615 0.4310 +56922 83878 0.6030 +56922 84263 0.4060 +56922 84286 0.6590 +56922 84660 0.7730 +56922 84693 0.7110 +56922 84842 0.6960 +56922 84869 0.4020 +56922 85463 0.4560 +56922 91683 0.6630 +56922 92483 0.4250 +56922 112755 0.4470 +56922 120892 0.6590 +56922 124359 0.4100 +56922 130013 0.7760 +56922 131118 0.5600 +56922 146198 0.4330 +56922 151613 0.5350 +56922 158584 0.5290 +56922 162417 0.4220 +56922 169792 0.4290 +56922 252884 0.4230 +56922 253175 0.4100 +56922 100129583 0.4800 +56922 100631383 0.5050 +56923 57121 0.4360 +56923 59345 0.5620 +56923 60675 0.5130 +56923 64407 0.4990 +56923 84432 0.5220 +56923 84539 0.4160 +56923 84634 0.4440 +56923 94235 0.5410 +56923 115557 0.4990 +56923 128674 0.4440 +56923 129521 0.9990 +56923 256933 0.5720 +56923 257313 0.5040 +56923 283869 0.5640 +56923 387129 0.5180 +56923 431704 0.5050 +56923 594857 0.7100 +56924 57144 0.6450 +56924 57381 0.7450 +56924 58480 0.5150 +56924 79705 0.4640 +56924 80728 0.4260 +56924 81624 0.4180 +56924 81839 0.4240 +56924 84708 0.4270 +56924 84866 0.4190 +56924 85366 0.6910 +56924 91807 0.6820 +56924 114885 0.4170 +56924 120892 0.7910 +56924 144402 0.4370 +56924 155038 0.5020 +56924 157769 0.4280 +56924 171177 0.9010 +56924 201255 0.6100 +56924 340156 0.6990 +56924 641649 0.4140 +56925 79841 0.5460 +56925 84444 0.4270 +56925 84628 0.5750 +56925 93979 0.4260 +56925 153090 0.5560 +56925 167410 0.4060 +56926 56948 0.4910 +56926 57003 0.9430 +56926 57130 0.4280 +56926 57696 0.4400 +56926 64131 0.5480 +56926 79002 0.4990 +56926 79188 0.4850 +56926 79639 0.4360 +56926 79888 0.4730 +56926 81037 0.4810 +56926 83590 0.4170 +56926 83862 0.4040 +56926 84061 0.5140 +56926 84928 0.4830 +56926 120892 0.5100 +56926 201595 0.5770 +56926 219793 0.7430 +56926 283820 0.9960 +56926 337972 0.4800 +56926 339965 0.4900 +56926 408050 0.8920 +56926 100527943 0.4350 +56927 57512 0.4310 +56927 79317 0.4130 +56927 79932 0.6590 +56927 80045 0.4110 +56927 131601 0.5430 +56927 158248 0.4170 +56927 283554 0.5290 +56927 390212 0.6310 +56928 81502 0.4210 +56928 85378 0.4060 +56928 114790 0.5010 +56928 121665 0.4090 +56928 283377 0.4260 +56928 440087 0.4040 +56929 57643 0.5760 +56929 57688 0.5870 +56929 63891 0.4430 +56929 64344 0.5060 +56929 64374 0.5590 +56929 64750 0.4190 +56929 65249 0.5590 +56929 79345 0.4900 +56929 79699 0.9220 +56929 80204 0.4420 +56929 84259 0.5300 +56929 96459 0.4440 +56929 116138 0.9410 +56929 122769 0.4860 +56929 140739 0.5310 +56929 149951 0.4990 +56929 150684 0.9000 +56929 153733 0.4100 +56929 170622 0.4990 +56929 440561 0.9380 +56929 440590 0.5960 +56929 653619 0.9290 +56931 57455 0.4560 +56931 57570 0.4740 +56931 60487 0.4720 +56931 64118 0.5040 +56931 64794 0.4340 +56931 79033 0.6260 +56931 79039 0.4670 +56931 79979 0.4060 +56931 80324 0.7780 +56931 81627 0.4060 +56931 83475 0.4320 +56931 83743 0.4470 +56931 84172 0.5040 +56931 84549 0.4140 +56931 90353 0.5000 +56931 93587 0.5980 +56931 113178 0.4120 +56931 115708 0.7270 +56931 117246 0.6890 +56931 126789 0.4420 +56931 142940 0.4390 +56931 158234 0.4050 +56931 163154 0.5490 +56931 221078 0.4340 +56931 221786 0.4230 +56931 388946 0.4180 +56934 56978 0.4160 +56934 56984 0.6010 +56934 58157 0.4130 +56934 64318 0.5000 +56934 79047 0.4460 +56934 83482 0.4010 +56934 83743 0.4510 +56934 84152 0.4750 +56934 84154 0.5610 +56934 84262 0.4220 +56934 128025 0.5250 +56934 130916 0.4220 +56934 138046 0.4410 +56934 158931 0.4160 +56934 340371 0.4770 +56934 387338 0.4400 +56934 389362 0.5580 +56935 374946 0.4270 +56935 387804 0.5640 +56936 79165 0.5620 +56936 80022 0.5370 +56936 91978 0.4930 +56936 114787 0.4080 +56936 116159 0.4080 +56936 121643 0.4620 +56936 255649 0.4690 +56936 646962 0.5310 +56936 100529257 0.4480 +56936 102723502 0.4520 +56936 102724631 0.4510 +56937 60487 0.4540 +56937 84154 0.5360 +56937 221078 0.4240 +56937 345630 0.4390 +56938 57491 0.7460 +56938 64344 0.4110 +56938 79365 0.5670 +56938 85457 0.8580 +56938 118932 0.4790 +56938 139135 0.7780 +56938 148523 0.4640 +56938 266743 0.5660 +56938 283130 0.4690 +56938 102800317 0.6150 +56940 64236 0.5630 +56940 83700 0.7200 +56940 83715 0.7270 +56940 84124 0.4560 +56940 84239 0.4060 +56940 84700 0.4030 +56940 92521 0.5470 +56940 94032 0.4180 +56940 123103 0.4050 +56940 128853 0.4250 +56940 135458 0.4450 +56940 169841 0.4550 +56940 219537 0.5470 +56940 254102 0.5520 +56940 284325 0.4500 +56940 342527 0.5980 +56940 445328 0.4420 +56940 100996758 0.4690 +56941 57001 0.4470 +56941 83932 0.6800 +56941 90121 0.4730 +56941 90529 0.5070 +56941 727800 0.5410 +56941 729627 0.4450 +56942 56943 0.4750 +56942 57001 0.4730 +56942 63977 0.4230 +56942 64960 0.4020 +56942 79145 0.7440 +56942 81892 0.4940 +56942 84124 0.4510 +56942 84314 0.5140 +56942 84437 0.4260 +56942 90639 0.7270 +56942 92259 0.4130 +56942 115825 0.4400 +56942 131474 0.5320 +56942 152100 0.5120 +56942 158835 0.6660 +56942 285175 0.4230 +56942 375449 0.4170 +56942 388753 0.7030 +56942 400916 0.4910 +56942 493753 0.4680 +56942 100272147 0.8310 +56943 56970 0.9990 +56943 57187 0.7030 +56943 57325 0.7760 +56943 79016 0.4560 +56943 79595 0.8060 +56943 80145 0.8510 +56943 80818 0.5450 +56943 81892 0.4430 +56943 83443 0.8120 +56943 84101 0.6690 +56943 84271 0.4700 +56943 84324 0.7420 +56943 84437 0.4590 +56943 84749 0.6040 +56943 84955 0.7310 +56943 85236 0.5430 +56943 92342 0.4230 +56943 93550 0.4590 +56943 93624 0.9940 +56943 112869 0.9990 +56943 115560 0.5470 +56943 117143 0.9890 +56943 127002 0.9810 +56943 128312 0.5430 +56943 129401 0.6080 +56943 148266 0.5470 +56943 158835 0.8230 +56943 158880 0.9910 +56943 158983 0.5430 +56943 161753 0.4740 +56943 164153 0.4510 +56943 221302 0.6980 +56943 222255 0.9730 +56943 255626 0.5430 +56943 284390 0.5460 +56943 286436 0.5430 +56943 374395 0.5200 +56943 387332 0.5960 +56943 389856 0.9790 +56943 399949 0.4940 +56943 440093 0.4800 +56943 440686 0.4830 +56943 440689 0.5500 +56943 552889 0.8460 +56943 653604 0.6770 +56943 728343 0.4400 +56943 729920 0.7260 +56943 100287513 0.5960 +56943 114483833 0.5430 +56944 64805 0.7330 +56944 163259 0.4050 +56944 338773 0.7820 +56945 57129 0.9340 +56945 57505 0.5240 +56945 60488 0.9980 +56945 63875 0.8590 +56945 63931 0.9940 +56945 64432 0.9980 +56945 64745 0.8270 +56945 64928 0.9100 +56945 64949 0.9980 +56945 64951 0.9810 +56945 64960 0.9980 +56945 64963 0.9980 +56945 64965 0.9970 +56945 64968 0.9940 +56945 64969 0.9980 +56945 64975 0.8870 +56945 64976 0.9260 +56945 64978 0.9030 +56945 64979 0.9260 +56945 64981 0.8700 +56945 64983 0.8890 +56945 65003 0.9480 +56945 65005 0.8690 +56945 65008 0.9330 +56945 65080 0.9640 +56945 65993 0.9990 +56945 78988 0.8410 +56945 79072 0.7600 +56945 79590 0.9120 +56945 79731 0.4760 +56945 79736 0.4240 +56945 79796 0.4370 +56945 79863 0.8530 +56945 79922 0.4880 +56945 80222 0.4960 +56945 80273 0.6000 +56945 80324 0.4950 +56945 81892 0.5580 +56945 83858 0.4750 +56945 84233 0.4640 +56945 84273 0.8790 +56945 84311 0.9370 +56945 84365 0.6790 +56945 84545 0.8440 +56945 84769 0.5000 +56945 85476 0.9780 +56945 85865 0.4050 +56945 87178 0.5010 +56945 90313 0.5140 +56945 90480 0.8500 +56945 91574 0.6600 +56945 92259 0.8520 +56945 92399 0.9080 +56945 112817 0.7640 +56945 115416 0.5430 +56945 116039 0.4750 +56945 116540 0.8720 +56945 116541 0.9400 +56945 118487 0.9820 +56945 122704 0.8750 +56945 124454 0.4780 +56945 124995 0.8630 +56945 126402 0.4250 +56945 128308 0.8790 +56945 131118 0.4730 +56945 196074 0.8660 +56945 219402 0.9220 +56945 219927 0.9060 +56945 654364 0.5530 +56946 57649 0.9600 +56946 57680 0.4170 +56946 57798 0.9190 +56946 57805 0.4800 +56946 64426 0.6140 +56946 79728 0.7320 +56946 81570 0.4190 +56946 84079 0.5170 +56946 84312 0.4040 +56946 85480 0.4500 +56946 91137 0.4840 +56946 92105 0.4460 +56946 94103 0.5010 +56946 115265 0.5910 +56946 126074 0.4190 +56946 132660 0.4930 +56946 134285 0.4200 +56946 284382 0.4920 +56946 440854 0.6050 +56946 642987 0.5370 +56947 56993 0.4950 +56947 57506 0.5980 +56947 64423 0.6470 +56947 65018 0.6890 +56947 66008 0.4120 +56947 78997 0.5300 +56947 79594 0.5210 +56947 81631 0.4360 +56947 84749 0.4420 +56947 89941 0.5080 +56947 90550 0.4840 +56947 90693 0.4260 +56947 91137 0.5040 +56947 91452 0.4320 +56947 92960 0.4120 +56947 115209 0.6440 +56947 125170 0.9810 +56947 139341 0.6260 +56947 192111 0.5970 +56947 205564 0.4980 +56947 253782 0.6080 +56948 57523 0.5880 +56948 79719 0.4370 +56948 85378 0.5470 +56948 168537 0.5640 +56948 254359 0.4140 +56948 643866 0.5100 +56949 57187 0.5670 +56949 57455 0.4050 +56949 57461 0.9990 +56949 57647 0.4560 +56949 57654 0.7140 +56949 57696 0.4650 +56949 57703 0.9990 +56949 58509 0.8390 +56949 58517 0.4230 +56949 59286 0.8800 +56949 60625 0.6950 +56949 64210 0.4590 +56949 64601 0.6110 +56949 64848 0.4350 +56949 79446 0.8930 +56949 79576 0.8000 +56949 79631 0.7120 +56949 79650 0.7880 +56949 79665 0.4300 +56949 79706 0.8230 +56949 79753 0.9540 +56949 79827 0.4870 +56949 80011 0.9030 +56949 80331 0.4830 +56949 81576 0.6930 +56949 81857 0.4060 +56949 83443 0.9130 +56949 83938 0.8310 +56949 84164 0.4800 +56949 84292 0.7040 +56949 84316 0.6190 +56949 84811 0.9520 +56949 84844 0.9140 +56949 84950 0.9310 +56949 84967 0.8490 +56949 85476 0.7110 +56949 85479 0.4690 +56949 90957 0.4020 +56949 91603 0.9790 +56949 124245 0.6190 +56949 126259 0.6200 +56949 135295 0.4050 +56949 138046 0.7130 +56949 142940 0.4240 +56949 143884 0.9690 +56949 147650 0.6180 +56949 151903 0.7730 +56949 153527 0.9150 +56949 154007 0.5220 +56949 163859 0.8180 +56949 164045 0.8290 +56949 165545 0.5940 +56949 199746 0.5440 +56949 200186 0.4600 +56949 220074 0.8310 +56949 222183 0.5610 +56949 339761 0.4160 +56949 343069 0.4640 +56949 100533467 0.4750 +56949 100534599 0.9970 +56950 56979 0.4970 +56950 58508 0.4210 +56950 63925 0.4420 +56950 63977 0.4340 +56950 64324 0.6090 +56950 79084 0.4060 +56950 79697 0.4460 +56950 79723 0.6530 +56950 79813 0.6290 +56950 79823 0.8260 +56950 79918 0.5040 +56950 80335 0.4190 +56950 80854 0.8600 +56950 83852 0.4120 +56950 84193 0.7260 +56950 84444 0.6720 +56950 84661 0.4250 +56950 84678 0.4390 +56950 84787 0.5660 +56950 93166 0.4590 +56950 113146 0.4300 +56950 114826 0.4320 +56950 126961 0.4250 +56950 144233 0.4140 +56950 151194 0.4510 +56950 387893 0.7860 +56950 440093 0.5760 +56950 440686 0.5760 +56950 653604 0.7340 +56951 84240 0.4030 +56951 114908 0.4230 +56951 388795 0.4340 +56952 57469 0.4410 +56952 79722 0.6020 +56952 79892 0.4380 +56952 81706 0.4330 +56952 90353 0.5020 +56952 93190 0.4290 +56952 122622 0.4570 +56952 126282 0.4280 +56952 127003 0.4640 +56952 138255 0.4290 +56952 139596 0.4970 +56952 151531 0.6870 +56952 151651 0.4290 +56952 161823 0.4780 +56952 196483 0.7920 +56952 197335 0.7080 +56952 199777 0.4960 +56952 257177 0.4290 +56952 388701 0.4290 +56952 100128569 0.4290 +56953 64802 0.9120 +56953 79077 0.9220 +56953 83594 0.9560 +56953 84618 0.9630 +56953 93034 0.9610 +56953 93100 0.9050 +56953 115024 0.9560 +56953 122481 0.6840 +56953 122622 0.9060 +56953 124583 0.7280 +56953 129607 0.9670 +56953 131870 0.9050 +56953 139596 0.9050 +56953 151531 0.9400 +56953 158067 0.6840 +56953 221264 0.7380 +56953 256302 0.4030 +56953 340348 0.4680 +56953 377841 0.7080 +56953 100526794 0.9570 +56953 102157402 0.6500 +56954 64428 0.4700 +56954 64802 0.4280 +56954 64850 0.4150 +56954 64902 0.4790 +56954 79763 0.5120 +56954 84706 0.5570 +56954 85007 0.4270 +56954 91461 0.4270 +56954 123688 0.4490 +56954 137362 0.9060 +56954 259307 0.9250 +56954 349565 0.4050 +56955 56975 0.8120 +56955 64151 0.4590 +56955 121340 0.5440 +56955 125228 0.4460 +56955 142680 0.5070 +56955 162466 0.4140 +56955 341019 0.4050 +56955 401138 0.5890 +56956 57057 0.4870 +56956 57556 0.4690 +56956 57706 0.5760 +56956 63973 0.6160 +56956 64221 0.6210 +56956 84733 0.4650 +56956 120237 0.5510 +56956 140609 0.6500 +56956 163486 0.7230 +56956 170463 0.8060 +56956 284654 0.5170 +56956 286204 0.5400 +56956 338917 0.6090 +56956 343472 0.4800 +56956 389549 0.5460 +56956 390259 0.4360 +56956 390992 0.4080 +56957 57506 0.4700 +56957 57559 0.4750 +56957 57646 0.4570 +56957 57663 0.4240 +56957 57695 0.4050 +56957 64223 0.4560 +56957 64854 0.4570 +56957 78990 0.5960 +56957 79155 0.5950 +56957 80124 0.5570 +56957 81858 0.5700 +56957 83695 0.4050 +56957 84196 0.4500 +56957 84749 0.4580 +56957 86614 0.5440 +56957 90268 0.8460 +56957 114803 0.4580 +56957 126119 0.4990 +56957 133482 0.4960 +56957 135398 0.4920 +56957 139562 0.6080 +56957 161725 0.5920 +56957 219333 0.4300 +56957 220213 0.6010 +56957 221302 0.7170 +56957 257397 0.5900 +56957 373509 0.4250 +56957 377630 0.4370 +56957 728373 0.4200 +56961 126669 0.4430 +56963 149111 0.4800 +56963 219699 0.6520 +56963 285704 0.9090 +56963 400451 0.4290 +56963 644168 0.8610 +56964 57495 0.5270 +56964 80157 0.4500 +56964 85452 0.4940 +56964 91860 0.4980 +56964 92369 0.4050 +56964 126328 0.5400 +56964 130162 0.4300 +56964 140730 0.4670 +56964 145376 0.4560 +56964 158293 0.4180 +56964 163688 0.4970 +56964 200373 0.8740 +56964 284391 0.4740 +56964 374291 0.5400 +56964 401236 0.4850 +56964 100532726 0.5400 +56965 57097 0.6840 +56965 57103 0.4910 +56965 57469 0.5070 +56965 63931 0.6040 +56965 64374 0.4780 +56965 64761 0.6720 +56965 64960 0.5400 +56965 64963 0.5980 +56965 64969 0.6890 +56965 65003 0.5540 +56965 65008 0.5420 +56965 79590 0.6710 +56965 79728 0.4320 +56965 79893 0.4020 +56965 80351 0.6320 +56965 81888 0.5000 +56965 83666 0.6380 +56965 84076 0.4240 +56965 84875 0.7170 +56965 92483 0.5360 +56965 114112 0.4260 +56965 116969 0.4310 +56965 126402 0.6080 +56965 130752 0.6010 +56965 132299 0.4470 +56965 140032 0.6520 +56965 140733 0.4140 +56965 140801 0.4780 +56965 160287 0.5360 +56965 160897 0.4180 +56965 165631 0.7080 +56965 197257 0.4100 +56965 285855 0.6100 +56965 338949 0.4020 +56965 347487 0.6430 +56965 387129 0.6060 +56965 387712 0.6680 +56965 441531 0.5930 +56965 641776 0.5400 +56965 643909 0.5400 +56965 645051 0.4960 +56965 645073 0.4960 +56965 728524 0.5400 +56965 729396 0.4960 +56965 729422 0.4960 +56965 729428 0.4960 +56965 729431 0.4960 +56965 729442 0.4960 +56965 729447 0.4960 +56965 100008586 0.4960 +56965 100132399 0.4960 +56965 100287482 0.6430 +56965 100505478 0.6040 +56965 100526842 0.6840 +56965 100529097 0.5080 +56965 100996746 0.5400 +56965 102724473 0.4960 +56965 105180390 0.5400 +56965 105180391 0.5400 +56967 221786 0.4460 +56967 284257 0.4340 +56967 284418 0.5060 +56970 57325 0.8050 +56970 58506 0.4160 +56970 79595 0.8280 +56970 79877 0.4150 +56970 80851 0.5990 +56970 83443 0.6340 +56970 84101 0.4350 +56970 84687 0.5020 +56970 93624 0.9870 +56970 112869 0.9920 +56970 117143 0.9940 +56970 127002 0.9830 +56970 155061 0.4770 +56970 158880 0.9590 +56970 221302 0.5840 +56970 222255 0.9690 +56970 254394 0.4010 +56970 374655 0.5490 +56970 387332 0.4860 +56970 389856 0.9800 +56970 653604 0.5630 +56971 90273 0.6520 +56971 125931 0.7410 +56971 146547 0.5810 +56971 147710 0.4500 +56971 729767 0.8220 +56975 57104 0.5170 +56975 57719 0.5110 +56975 64856 0.5240 +56975 80341 0.5370 +56975 84141 0.5350 +56975 91461 0.7070 +56975 91851 0.5280 +56975 116519 0.6740 +56975 142680 0.5010 +56975 147111 0.5260 +56975 255738 0.7960 +56975 375056 0.5280 +56975 389362 0.4100 +56975 401138 0.7620 +56975 653247 0.5840 +56975 729085 0.7140 +56977 57654 0.4310 +56977 60684 0.5090 +56977 79568 0.5590 +56977 143872 0.4770 +56977 165545 0.4080 +56977 284071 0.4400 +56977 284339 0.4970 +56977 441054 0.4210 +56977 646960 0.4560 +56978 56980 0.5450 +56978 56981 0.4960 +56978 57593 0.4670 +56978 63976 0.4840 +56978 63977 0.5170 +56978 93166 0.6170 +56978 118429 0.5930 +56978 128408 0.4230 +56978 148281 0.4010 +56978 154865 0.4450 +56978 378884 0.8000 +56978 401498 0.4570 +56979 58508 0.6570 +56979 60681 0.4100 +56979 64324 0.4900 +56979 64754 0.7140 +56979 79723 0.5040 +56979 79813 0.4430 +56979 79823 0.7450 +56979 80854 0.5410 +56979 83852 0.4040 +56979 84072 0.6240 +56979 84193 0.4450 +56979 84444 0.4630 +56979 84661 0.5500 +56979 84690 0.4950 +56979 84787 0.4600 +56979 85236 0.5390 +56979 90378 0.4190 +56979 93426 0.5190 +56979 94239 0.5360 +56979 114826 0.4060 +56979 128312 0.5400 +56979 130951 0.4640 +56979 150280 0.6070 +56979 150365 0.5710 +56979 150572 0.4530 +56979 152098 0.4390 +56979 254528 0.5980 +56979 255626 0.5540 +56979 256006 0.5870 +56979 256126 0.5750 +56979 283677 0.6270 +56979 284071 0.4460 +56979 285498 0.7210 +56979 339345 0.5260 +56979 339834 0.7820 +56979 346673 0.5580 +56979 387893 0.4450 +56979 440093 0.8290 +56979 440686 0.8290 +56979 474382 0.5440 +56979 642636 0.5360 +56979 653604 0.9100 +56979 100507650 0.4480 +56979 101928601 0.5700 +56980 57541 0.4570 +56980 57684 0.4160 +56980 64754 0.4160 +56980 81930 0.4450 +56980 114798 0.5150 +56980 114826 0.4280 +56980 114990 0.4750 +56980 132884 0.4010 +56980 140460 0.5540 +56980 145957 0.4290 +56980 150350 0.5030 +56980 150572 0.4010 +56980 153770 0.4320 +56981 59335 0.5420 +56981 59336 0.4810 +56981 63976 0.6000 +56981 84290 0.5180 +56981 91754 0.4790 +56981 112611 0.4290 +56981 728340 0.4460 +56983 57514 0.4240 +56983 57544 0.4180 +56983 152002 0.8080 +56983 283464 0.7270 +56983 285203 0.7750 +56983 727936 0.7220 +56984 57003 0.5430 +56984 79657 0.5490 +56984 80227 0.6070 +56984 81572 0.5490 +56984 84262 0.9680 +56984 84955 0.6260 +56984 120379 0.5400 +56984 122706 0.5320 +56984 143471 0.8530 +56984 150160 0.5720 +56984 221409 0.6830 +56984 348235 0.4170 +56984 389362 0.9980 +56984 100652824 0.5970 +56985 57678 0.9210 +56985 64005 0.4620 +56985 84803 0.9010 +56985 137964 0.9010 +56985 150763 0.9000 +56985 221491 0.6220 +56985 221823 0.9040 +56985 388335 0.6870 +56985 645811 0.4490 +56986 84365 0.4730 +56986 113828 0.4120 +56986 115939 0.7090 +56986 115950 0.4800 +56986 148198 0.5670 +56986 152485 0.4300 +56986 284353 0.4470 +56986 285605 0.7590 +56986 317762 0.5290 +56987 57335 0.4750 +56987 57473 0.4390 +56987 84450 0.4090 +56987 84619 0.4290 +56987 84692 0.4700 +56987 169792 0.4090 +56987 221937 0.4970 +56987 388272 0.4780 +56990 57110 0.4200 +56990 80273 0.4850 +56990 80975 0.5820 +56990 81570 0.4910 +56990 90624 0.5220 +56990 92255 0.4230 +56990 116835 0.4200 +56990 118461 0.4200 +56990 134266 0.4660 +56990 256130 0.4350 +56990 259217 0.4200 +56990 284058 0.4010 +56990 339416 0.4200 +56990 341880 0.4710 +56990 388633 0.4200 +56990 441476 0.4310 +56990 442184 0.5070 +56992 57082 0.6190 +56992 57405 0.8270 +56992 57576 0.7040 +56992 57650 0.5640 +56992 60561 0.5160 +56992 63922 0.4540 +56992 63967 0.6160 +56992 63971 0.5950 +56992 64105 0.6970 +56992 64151 0.9190 +56992 64837 0.7650 +56992 64946 0.5770 +56992 79019 0.7470 +56992 79075 0.4780 +56992 79682 0.6050 +56992 79733 0.8000 +56992 79801 0.6460 +56992 80119 0.4070 +56992 80152 0.4920 +56992 81565 0.5770 +56992 81610 0.4950 +56992 81620 0.4940 +56992 81624 0.4700 +56992 81930 0.9430 +56992 83461 0.7880 +56992 83540 0.9360 +56992 83879 0.4950 +56992 83903 0.4500 +56992 84057 0.7970 +56992 84364 0.5210 +56992 84516 0.6000 +56992 84643 0.6810 +56992 84823 0.5210 +56992 84930 0.4480 +56992 89953 0.4210 +56992 90381 0.5600 +56992 90990 0.6670 +56992 93661 0.4990 +56992 113115 0.5430 +56992 113130 0.6540 +56992 124602 0.7370 +56992 128239 0.4170 +56992 131616 0.4460 +56992 144455 0.4510 +56992 146909 0.8800 +56992 147700 0.5150 +56992 147841 0.5930 +56992 150468 0.6520 +56992 151246 0.6350 +56992 151648 0.7230 +56992 157313 0.7330 +56992 157570 0.6700 +56992 166979 0.5790 +56992 220134 0.6180 +56992 221150 0.6360 +56992 221458 0.5540 +56992 259266 0.9710 +56992 285643 0.6090 +56992 374654 0.6120 +56992 387103 0.5920 +56993 57129 0.4470 +56993 57506 0.4070 +56993 64969 0.4450 +56993 65003 0.4650 +56993 65018 0.9000 +56993 79135 0.7900 +56993 80273 0.5410 +56993 84134 0.9880 +56993 84303 0.8360 +56993 84311 0.5650 +56993 84749 0.6210 +56993 89941 0.5220 +56993 90580 0.5350 +56993 92609 0.9390 +56993 116541 0.4060 +56993 125988 0.8010 +56993 131118 0.7830 +56993 131474 0.7230 +56993 139322 0.7970 +56993 140823 0.6310 +56993 267020 0.5540 +56993 285521 0.4990 +56993 345778 0.9180 +56993 387990 0.8810 +56993 401505 0.9990 +56993 440574 0.7980 +56993 728489 0.4140 +56993 100188893 0.9990 +56993 100287932 0.9460 +56994 64600 0.6500 +56994 64900 0.9360 +56994 79888 0.9580 +56994 80758 0.4240 +56994 81490 0.5740 +56994 81579 0.7590 +56994 84513 0.9190 +56994 84647 0.6980 +56994 85465 0.9230 +56994 92949 0.4290 +56994 122618 0.9130 +56994 123745 0.6900 +56994 129642 0.6470 +56994 139189 0.6610 +56994 151056 0.7500 +56994 151295 0.4690 +56994 154141 0.4510 +56994 160851 0.6710 +56994 196051 0.9190 +56994 254531 0.9330 +56994 255189 0.6610 +56994 283748 0.8010 +56994 391013 0.6540 +56994 100137049 0.6780 +56995 57092 0.4650 +56995 57520 0.4120 +56995 57583 0.5060 +56995 57722 0.4700 +56995 80000 0.4640 +56995 84947 0.6110 +56995 126353 0.7200 +56995 134145 0.4720 +56995 140739 0.4990 +56995 149951 0.4990 +56995 150684 0.4990 +56995 166752 0.4080 +56995 170622 0.5020 +56995 389136 0.4220 +56995 404672 0.5440 +56995 729515 0.5250 +56996 64084 0.4880 +56996 79939 0.4220 +56996 222553 0.4370 +56996 285636 0.4170 +56996 338692 0.5460 +56996 402682 0.4300 +56996 414157 0.4490 +56998 79412 0.4030 +56998 202051 0.5020 +56998 115253422 0.4430 +56999 57118 0.6420 +56999 79068 0.5070 +56999 80070 0.4140 +56999 127018 0.4590 +56999 145173 0.7820 +56999 147015 0.5610 +56999 167681 0.4460 +56999 169026 0.6010 +56999 221895 0.6970 +56999 387715 0.5070 +57001 57128 0.7220 +57001 57149 0.7230 +57001 57226 0.6480 +57001 80224 0.4390 +57001 84437 0.4800 +57001 90624 0.6710 +57001 135154 0.9800 +57001 144363 0.6680 +57001 150274 0.4510 +57001 154791 0.5010 +57001 201229 0.5080 +57001 388962 0.4700 +57001 644096 0.9040 +57002 57019 0.6140 +57002 57727 0.4220 +57002 64210 0.6460 +57002 64428 0.6570 +57002 80224 0.4730 +57002 85294 0.4270 +57002 200205 0.4100 +57002 220064 0.9480 +57002 348751 0.7510 +57002 442191 0.4470 +57003 79139 0.4300 +57003 79657 0.5740 +57003 81572 0.5400 +57003 83460 0.4460 +57003 92335 0.4190 +57003 93380 0.4680 +57003 114609 0.4130 +57003 120379 0.5580 +57003 133022 0.4070 +57003 150160 0.5400 +57003 158747 0.4530 +57003 201595 0.4100 +57003 408050 0.4350 +57003 100527943 0.4080 +57007 58191 0.6710 +57010 57096 0.6260 +57010 60506 0.8480 +57010 60558 0.4290 +57010 64802 0.4400 +57010 80184 0.4700 +57010 84839 0.4700 +57010 93589 0.6930 +57010 94137 0.5640 +57010 133584 0.6290 +57010 138428 0.4410 +57010 145226 0.5940 +57010 167691 0.5220 +57010 169522 0.5580 +57010 343035 0.5500 +57010 345193 0.7960 +57010 388531 0.5870 +57010 390212 0.4910 +57010 401124 0.4340 +57010 440435 0.7300 +57010 101060233 0.4130 +57016 57818 0.8160 +57016 79924 0.7630 +57016 80201 0.8980 +57016 90637 0.4180 +57016 92579 0.8150 +57016 121278 0.9020 +57016 130589 0.9130 +57016 140809 0.4810 +57016 200895 0.9090 +57016 221357 0.4030 +57016 257202 0.4160 +57016 441282 0.5970 +57016 493869 0.4300 +57017 57019 0.4410 +57017 57107 0.9710 +57017 57143 0.6170 +57017 58472 0.6010 +57017 79934 0.9470 +57017 80219 0.6720 +57017 84263 0.5070 +57017 84274 0.9930 +57017 84693 0.4790 +57017 90956 0.6220 +57017 91133 0.4250 +57017 91942 0.4570 +57017 93058 0.6750 +57017 112812 0.4730 +57017 119559 0.4900 +57017 136306 0.6230 +57017 136332 0.4930 +57017 160760 0.4660 +57017 203054 0.5450 +57017 219654 0.4190 +57017 284403 0.4270 +57017 374291 0.4550 +57018 81669 0.4920 +57018 92822 0.5120 +57018 94104 0.4460 +57018 728642 0.9820 +57019 57128 0.7150 +57019 57571 0.4100 +57019 64210 0.7970 +57019 64428 0.9030 +57019 80224 0.5780 +57019 81689 0.5860 +57019 81894 0.4310 +57019 83990 0.6740 +57019 84191 0.6200 +57019 84993 0.6710 +57019 85459 0.4250 +57019 91419 0.6060 +57019 93517 0.4490 +57019 112812 0.5100 +57019 122961 0.5770 +57019 126299 0.6870 +57019 126969 0.6240 +57019 131474 0.6910 +57019 150274 0.4480 +57019 200205 0.6670 +57019 220064 0.5040 +57019 284106 0.4180 +57019 388962 0.6910 +57019 493856 0.4530 +57019 552900 0.7970 +57019 654483 0.8440 +57020 81609 0.7520 +57020 112936 0.4540 +57020 150684 0.9880 +57020 154043 0.5960 +57020 169166 0.5380 +57020 170622 0.9500 +57020 253725 0.4470 +57020 387680 0.7690 +57020 404636 0.9190 +57020 441933 0.6100 +57020 100287171 0.5130 +57026 63897 0.4940 +57026 85464 0.5220 +57026 93649 0.4890 +57026 403313 0.4310 +57026 493911 0.9000 +57030 57084 0.9180 +57030 57369 0.4350 +57030 57468 0.5560 +57030 57502 0.4770 +57030 57555 0.5720 +57030 63827 0.4010 +57030 63973 0.5530 +57030 63974 0.5320 +57030 64919 0.5780 +57030 83482 0.4450 +57030 84152 0.5190 +57030 84530 0.4020 +57030 84894 0.4810 +57030 85358 0.5050 +57030 93377 0.4560 +57030 93986 0.4040 +57030 94030 0.4090 +57030 112755 0.4180 +57030 116448 0.4270 +57030 127833 0.6050 +57030 132204 0.5870 +57030 137902 0.4330 +57030 140679 0.9960 +57030 146713 0.7590 +57030 246213 0.9030 +57030 266743 0.5120 +57030 338917 0.4090 +57030 347730 0.5320 +57035 80011 0.6090 +57035 254158 0.6070 +57035 100507203 0.5070 +57037 57560 0.4540 +57037 57763 0.4630 +57037 81562 0.4410 +57037 114926 0.4670 +57037 122618 0.4980 +57037 192669 0.8850 +57037 192670 0.4440 +57037 219858 0.4210 +57037 317754 0.4220 +57037 388468 0.4270 +57037 404785 0.4260 +57037 554226 0.4090 +57037 641455 0.4310 +57037 729920 0.4400 +57037 100288966 0.4230 +57037 100506049 0.6290 +57037 100996331 0.4280 +57037 102723502 0.4210 +57037 102724631 0.4240 +57038 57136 0.4470 +57038 57176 0.9350 +57038 57470 0.5890 +57038 57505 0.9050 +57038 57570 0.4820 +57038 60528 0.4850 +57038 60558 0.5690 +57038 64216 0.4100 +57038 64963 0.4030 +57038 64965 0.4370 +57038 64968 0.4440 +57038 64969 0.4590 +57038 64983 0.4350 +57038 65005 0.4580 +57038 65008 0.4050 +57038 79042 0.7760 +57038 79587 0.8890 +57038 79731 0.8820 +57038 80222 0.8070 +57038 80324 0.4750 +57038 80746 0.7450 +57038 84172 0.4840 +57038 84340 0.6610 +57038 84464 0.4680 +57038 84705 0.5670 +57038 85476 0.6240 +57038 87178 0.5030 +57038 90381 0.4150 +57038 91574 0.6060 +57038 91875 0.6960 +57038 91893 0.4840 +57038 92399 0.5910 +57038 92935 0.9710 +57038 93974 0.4490 +57038 114034 0.5320 +57038 116461 0.4810 +57038 116832 0.5240 +57038 123263 0.6690 +57038 123283 0.7910 +57038 124454 0.9180 +57038 126402 0.6240 +57038 143244 0.4070 +57038 162417 0.8260 +57038 219927 0.6080 +57038 221823 0.4180 +57038 283989 0.9520 +57038 374395 0.5410 +57038 440275 0.4450 +57038 101927367 0.4650 +57045 57817 0.5230 +57045 84976 0.4320 +57045 148738 0.4550 +57045 151176 0.4970 +57045 164656 0.5000 +57045 168667 0.7520 +57045 220001 0.7220 +57045 339291 0.4950 +57048 254863 0.4070 +57050 57062 0.6210 +57050 57109 0.4040 +57050 57418 0.6410 +57050 57647 0.9870 +57050 57696 0.5320 +57050 60487 0.4130 +57050 60625 0.6730 +57050 64118 0.6980 +57050 64216 0.7480 +57050 64318 0.8310 +57050 64425 0.6770 +57050 64434 0.9880 +57050 64794 0.7550 +57050 64960 0.6780 +57050 64963 0.6470 +57050 65083 0.9990 +57050 65095 0.8840 +57050 79009 0.4370 +57050 79039 0.8640 +57050 79050 0.9990 +57050 79137 0.4070 +57050 79159 0.7730 +57050 79571 0.7420 +57050 79665 0.6090 +57050 79692 0.4070 +57050 79707 0.5570 +57050 79954 0.9980 +57050 80007 0.5060 +57050 80025 0.4060 +57050 80135 0.8370 +57050 81887 0.5580 +57050 83480 0.5940 +57050 83732 0.5220 +57050 83743 0.7350 +57050 84128 0.9980 +57050 84135 0.9960 +57050 84154 0.9220 +57050 84172 0.8380 +57050 84240 0.4160 +57050 84294 0.9260 +57050 84310 0.4800 +57050 84319 0.6090 +57050 84365 0.9040 +57050 84549 0.8910 +57050 84916 0.9990 +57050 84946 0.9370 +57050 88745 0.9960 +57050 90121 0.7670 +57050 90381 0.4420 +57050 90441 0.4870 +57050 90957 0.4040 +57050 91582 0.8250 +57050 91752 0.5060 +57050 92856 0.9990 +57050 112840 0.4970 +57050 116966 0.6740 +57050 117246 0.9060 +57050 118460 0.7160 +57050 126402 0.6620 +57050 128061 0.8530 +57050 129563 0.4110 +57050 140032 0.6180 +57050 146212 0.8230 +57050 153443 0.6950 +57050 155368 0.4070 +57050 161424 0.9730 +57050 165545 0.9090 +57050 219578 0.5060 +57050 219743 0.4820 +57050 221078 0.7980 +57050 221830 0.7900 +57050 282809 0.5230 +57050 285855 0.4430 +57050 345630 0.9480 +57050 374618 0.4850 +57050 387129 0.4310 +57050 641776 0.4690 +57050 643909 0.4690 +57050 692312 0.6630 +57050 728524 0.4690 +57050 100505478 0.4200 +57050 100996746 0.4690 +57050 105180390 0.4690 +57050 105180391 0.4690 +57050 111064647 0.4370 +57053 57152 0.6530 +57053 81617 0.4050 +57053 89832 0.5720 +57053 124590 0.4080 +57053 134957 0.5450 +57053 161497 0.4760 +57053 340990 0.5080 +57053 375611 0.4310 +57053 432355 0.6680 +57053 643226 0.4950 +57053 645104 0.4870 +57054 64591 0.5920 +57054 86614 0.4010 +57054 90655 0.4600 +57054 124359 0.5940 +57054 140032 0.4770 +57054 253175 0.6670 +57054 353513 0.7030 +57054 442862 0.7400 +57054 442867 0.8810 +57054 442868 0.8810 +57054 728132 0.4310 +57055 64591 0.5830 +57055 86614 0.4350 +57055 90655 0.5180 +57055 124359 0.6350 +57055 140032 0.5490 +57055 159163 0.4010 +57055 253175 0.6830 +57055 353513 0.7170 +57055 442862 0.7680 +57055 442867 0.8980 +57055 442868 0.8980 +57055 728132 0.4900 +57055 728395 0.4430 +57057 58498 0.5680 +57057 64843 0.4300 +57057 78987 0.4100 +57057 79190 0.4260 +57057 89874 0.8100 +57057 93649 0.4970 +57057 137814 0.4070 +57057 140628 0.7670 +57057 144165 0.4300 +57057 145258 0.8630 +57057 148479 0.8140 +57057 161882 0.5710 +57060 85406 0.5260 +57060 85865 0.4220 +57060 116840 0.4020 +57060 117283 0.4080 +57060 163051 0.4230 +57062 57109 0.6500 +57062 57136 0.4860 +57062 57418 0.6760 +57062 57696 0.8120 +57062 60625 0.4640 +57062 64061 0.5030 +57062 64135 0.4350 +57062 64318 0.9470 +57062 64434 0.4800 +57062 64794 0.8980 +57062 65083 0.7710 +57062 65095 0.5690 +57062 79009 0.6710 +57062 79039 0.9410 +57062 79159 0.5900 +57062 79665 0.5740 +57062 79866 0.4270 +57062 79954 0.7840 +57062 80135 0.6460 +57062 80324 0.4910 +57062 81545 0.4810 +57062 83448 0.4450 +57062 83479 0.5500 +57062 83732 0.5760 +57062 83743 0.5380 +57062 84128 0.5460 +57062 84154 0.8510 +57062 84172 0.6440 +57062 84294 0.6340 +57062 84365 0.8920 +57062 84450 0.4990 +57062 84549 0.8050 +57062 84916 0.6090 +57062 84946 0.4340 +57062 85313 0.5000 +57062 87178 0.4870 +57062 90050 0.4110 +57062 92856 0.4730 +57062 116966 0.5270 +57062 117246 0.8940 +57062 122402 0.4040 +57062 142940 0.4730 +57062 146212 0.7700 +57062 161424 0.8160 +57062 165545 0.5500 +57062 170506 0.6650 +57062 221078 0.8230 +57062 285855 0.5060 +57062 317781 0.5620 +57062 387129 0.5000 +57062 387338 0.4060 +57062 388951 0.4790 +57062 692312 0.5450 +57082 57405 0.9580 +57082 57650 0.4710 +57082 57697 0.7640 +57082 63925 0.5870 +57082 64105 0.8540 +57082 64151 0.6520 +57082 64946 0.9000 +57082 79003 0.9980 +57082 79019 0.8090 +57082 79172 0.9200 +57082 79648 0.5500 +57082 79682 0.8950 +57082 79801 0.4460 +57082 79823 0.5110 +57082 79915 0.4980 +57082 79980 0.9960 +57082 80119 0.4080 +57082 80152 0.8830 +57082 80198 0.4600 +57082 81620 0.4700 +57082 81624 0.5020 +57082 81930 0.7020 +57082 83473 0.4600 +57082 83540 0.9920 +57082 83903 0.6800 +57082 84057 0.5880 +57082 84072 0.4340 +57082 84324 0.5200 +57082 84893 0.6080 +57082 90417 0.5070 +57082 91687 0.7670 +57082 113130 0.7260 +57082 118461 0.4730 +57082 147841 0.9920 +57082 150280 0.4020 +57082 150468 0.4740 +57082 151246 0.7090 +57082 151648 0.7930 +57082 157313 0.9140 +57082 157570 0.6330 +57082 163786 0.5840 +57082 201254 0.7630 +57082 220134 0.7680 +57082 221150 0.8180 +57082 254528 0.4700 +57082 259266 0.7550 +57082 283489 0.4420 +57082 284403 0.6150 +57082 348235 0.6040 +57082 348654 0.4740 +57082 378708 0.7790 +57082 387103 0.7920 +57082 401541 0.7460 +57082 440093 0.5110 +57082 440686 0.5110 +57082 653604 0.5110 +57082 100527963 0.8190 +57084 57468 0.4970 +57084 57555 0.5620 +57084 57689 0.4110 +57084 63973 0.5070 +57084 63974 0.5410 +57084 83482 0.4920 +57084 84152 0.4900 +57084 84530 0.4190 +57084 93986 0.4370 +57084 94233 0.4250 +57084 113091 0.4270 +57084 115827 0.4170 +57084 120237 0.5290 +57084 127833 0.5690 +57084 132204 0.4050 +57084 137902 0.4150 +57084 140679 0.9910 +57084 146713 0.7280 +57084 246213 0.9060 +57084 338917 0.4820 +57084 342865 0.4080 +57084 613212 0.4240 +57085 57670 0.5570 +57085 80853 0.4990 +57085 90231 0.4450 +57085 116985 0.6430 +57088 337966 0.5910 +57089 57715 0.4600 +57091 64231 0.7030 +57091 79746 0.4960 +57091 79865 0.5700 +57091 79890 0.7330 +57091 83661 0.4800 +57091 84148 0.4440 +57091 84888 0.4040 +57091 92906 0.4210 +57091 123041 0.7300 +57091 137682 0.4110 +57091 245802 0.5730 +57091 643680 0.5830 +57092 57520 0.4150 +57092 64844 0.4310 +57092 80218 0.5130 +57092 83641 0.4900 +57092 90390 0.4080 +57092 114908 0.4440 +57092 115426 0.8980 +57093 65121 0.4670 +57093 65122 0.5570 +57093 80013 0.5080 +57093 125997 0.4130 +57093 129868 0.4240 +57093 283116 0.4060 +57093 342900 0.4260 +57093 343070 0.5040 +57093 390999 0.4460 +57093 400736 0.5210 +57093 440560 0.5420 +57093 441873 0.5080 +57093 642612 0.9990 +57093 653619 0.5010 +57093 653657 0.5620 +57093 100129128 0.4760 +57094 201456 0.5990 +57094 440387 0.5560 +57095 81689 0.4170 +57095 84932 0.4040 +57095 151195 0.4040 +57095 219771 0.4480 +57095 653319 0.4740 +57096 57545 0.6380 +57096 64218 0.6410 +57096 64398 0.4810 +57096 64802 0.5360 +57096 65062 0.6500 +57096 79583 0.5610 +57096 79600 0.4720 +57096 79809 0.5310 +57096 79867 0.4300 +57096 80173 0.4920 +57096 80184 0.9510 +57096 80776 0.6330 +57096 81554 0.7490 +57096 83394 0.7230 +57096 84059 0.4550 +57096 84140 0.6070 +57096 84314 0.4420 +57096 84839 0.7260 +57096 91133 0.4200 +57096 91147 0.6670 +57096 92211 0.7560 +57096 93589 0.4200 +57096 94137 0.4970 +57096 131890 0.4510 +57096 145226 0.8660 +57096 157657 0.6100 +57096 167691 0.8950 +57096 169522 0.6030 +57096 200728 0.5350 +57096 254173 0.4310 +57096 261734 0.9970 +57096 282808 0.5590 +57096 282809 0.6170 +57096 284086 0.5730 +57096 343035 0.8600 +57096 346007 0.5520 +57096 375298 0.6460 +57096 388531 0.4190 +57096 388939 0.4820 +57096 768206 0.5530 +57097 79668 0.7130 +57097 81847 0.4950 +57097 83707 0.6980 +57097 92092 0.8870 +57097 115992 0.7110 +57097 131870 0.4040 +57097 140733 0.4740 +57097 390980 0.4120 +57099 145567 0.4240 +57099 170506 0.5040 +57099 389384 0.4670 +57101 83592 0.4290 +57101 91860 0.5400 +57101 114815 0.4180 +57101 124538 0.4200 +57101 131368 0.4230 +57101 132112 0.4540 +57101 134083 0.4160 +57101 163688 0.5340 +57101 221303 0.4480 +57101 259173 0.5600 +57101 344892 0.6130 +57101 442117 0.4180 +57101 729852 0.4160 +57101 101929926 0.4740 +57102 57570 0.4380 +57102 79008 0.5250 +57102 79022 0.5290 +57102 84067 0.4630 +57102 93627 0.8920 +57102 129285 0.8180 +57102 140290 0.6250 +57102 149371 0.6200 +57102 266655 0.4180 +57102 341883 0.4140 +57102 347862 0.4020 +57102 548593 0.5250 +57103 57469 0.4720 +57103 58478 0.4820 +57103 64393 0.4460 +57103 79668 0.4950 +57103 80201 0.7630 +57103 83667 0.5120 +57103 84076 0.4050 +57103 246243 0.5490 +57103 387712 0.5890 +57104 57678 0.5890 +57104 63874 0.4200 +57104 63924 0.6830 +57104 63976 0.5910 +57104 64900 0.7190 +57104 79071 0.5080 +57104 80168 0.7410 +57104 80339 0.9190 +57104 81616 0.6570 +57104 83401 0.4820 +57104 84513 0.9400 +57104 84649 0.9100 +57104 84666 0.4220 +57104 84803 0.4810 +57104 92579 0.4010 +57104 116255 0.7720 +57104 119548 0.9030 +57104 126129 0.5490 +57104 128486 0.4250 +57104 132949 0.4860 +57104 137902 0.4440 +57104 137964 0.5870 +57104 139189 0.6560 +57104 158833 0.5750 +57104 160851 0.6660 +57104 196051 0.9400 +57104 346606 0.7070 +57104 375775 0.4630 +57104 376497 0.5970 +57104 440503 0.9840 +57104 729359 0.6310 +57105 57121 0.4340 +57105 59345 0.5590 +57105 59350 0.4500 +57105 60675 0.6870 +57105 64106 0.4090 +57105 64805 0.4740 +57105 79924 0.4990 +57105 81602 0.4990 +57105 81617 0.4250 +57105 83852 0.4340 +57105 84109 0.4650 +57105 84432 0.5040 +57105 84539 0.4030 +57105 94235 0.5410 +57105 113091 0.4990 +57105 115557 0.5470 +57105 116512 0.4180 +57105 117579 0.5350 +57105 122042 0.4420 +57105 122876 0.5030 +57105 129521 0.4990 +57105 151306 0.4750 +57105 170589 0.5000 +57105 222545 0.4080 +57105 257313 0.6460 +57105 338557 0.4450 +57105 347148 0.4990 +57105 387129 0.4420 +57105 594857 0.4990 +57106 60560 0.8220 +57106 64853 0.4120 +57106 79763 0.5250 +57106 79903 0.4330 +57106 84922 0.6190 +57106 163033 0.7250 +57106 339983 0.5540 +57107 57143 0.5190 +57107 58472 0.4330 +57107 64423 0.5460 +57107 65084 0.4370 +57107 79139 0.4890 +57107 79934 0.8610 +57107 79947 0.9530 +57107 80219 0.5740 +57107 84274 0.8560 +57107 84816 0.4470 +57107 84942 0.5160 +57107 90956 0.4970 +57107 91734 0.5520 +57107 93058 0.6330 +57107 112812 0.5120 +57107 116150 0.9450 +57107 137682 0.6230 +57107 339229 0.4340 +57107 340390 0.5610 +57109 57136 0.4170 +57109 57418 0.7140 +57109 57696 0.8110 +57109 64318 0.5640 +57109 64794 0.6910 +57109 65095 0.4300 +57109 79039 0.4810 +57109 79786 0.4120 +57109 84154 0.6680 +57109 84240 0.7340 +57109 84294 0.7370 +57109 84310 0.4270 +57109 84365 0.6230 +57109 84450 0.6580 +57109 84549 0.4130 +57109 84946 0.5340 +57109 87178 0.4120 +57109 90353 0.4140 +57109 92856 0.7840 +57109 115708 0.8190 +57109 117246 0.5720 +57109 161424 0.4150 +57109 255967 0.5740 +57109 285855 0.5730 +57109 692312 0.4520 +57110 79962 0.4200 +57110 79982 0.4200 +57110 80273 0.5880 +57110 80331 0.7570 +57110 81570 0.6790 +57110 84260 0.4590 +57110 84266 0.6140 +57110 85479 0.4200 +57110 96459 0.4200 +57110 113444 0.4330 +57110 120526 0.4330 +57110 134266 0.5880 +57110 136332 0.4400 +57110 140432 0.4200 +57110 145226 0.4820 +57110 146760 0.4890 +57110 150353 0.4200 +57110 151354 0.4540 +57110 157638 0.5950 +57110 165721 0.4250 +57110 171425 0.4200 +57110 200879 0.4460 +57110 202052 0.4200 +57110 222236 0.4550 +57110 255809 0.4350 +57110 285126 0.4200 +57110 285282 0.4370 +57110 374407 0.4200 +57110 494143 0.4490 +57110 548645 0.4200 +57110 552891 0.4200 +57111 57402 0.5920 +57111 58485 0.4580 +57111 58495 0.4550 +57111 58504 0.4110 +57111 79090 0.4040 +57111 79170 0.4260 +57111 79977 0.6680 +57111 80223 0.9810 +57111 80851 0.4680 +57111 84440 0.8520 +57111 114569 0.4950 +57111 122553 0.4010 +57111 126003 0.4570 +57111 126695 0.7180 +57111 140775 0.4570 +57111 140893 0.4650 +57111 161291 0.4300 +57111 200634 0.4140 +57111 203228 0.5510 +57113 81502 0.4450 +57113 84817 0.7720 +57115 80731 0.4520 +57115 114770 0.5120 +57115 114771 0.9440 +57115 148281 0.4330 +57115 154664 0.4290 +57115 353131 0.7260 +57115 353143 0.8000 +57115 353144 0.7230 +57116 60485 0.4200 +57116 84148 0.4280 +57116 220929 0.4080 +57117 57211 0.4160 +57117 57508 0.9310 +57117 64801 0.4500 +57117 64859 0.5870 +57117 65123 0.9990 +57117 79034 0.8010 +57117 79035 0.5770 +57117 79807 0.7750 +57117 79875 0.5710 +57117 80789 0.9990 +57117 81556 0.9510 +57117 92105 0.9640 +57117 203522 0.7120 +57117 255743 0.5830 +57117 403313 0.4360 +57117 441519 0.5990 +57117 441521 0.5990 +57117 541465 0.5990 +57117 541466 0.6090 +57117 728911 0.5990 +57117 101060211 0.5990 +57117 102723631 0.5990 +57117 102723680 0.5990 +57117 102723737 0.5990 +57118 57172 0.6020 +57118 64764 0.6630 +57118 79068 0.5070 +57118 80320 0.4190 +57118 83643 0.4370 +57118 84327 0.4720 +57118 84699 0.6510 +57118 90993 0.6670 +57118 91860 0.9260 +57118 116985 0.4830 +57118 136259 0.4640 +57118 145741 0.4820 +57118 146779 0.4110 +57118 148327 0.6600 +57118 163688 0.9250 +57118 169026 0.6340 +57118 221895 0.6990 +57118 388125 0.4840 +57119 81569 0.4070 +57119 81623 0.5490 +57119 140686 0.4510 +57119 140832 0.6110 +57119 140881 0.4030 +57119 164237 0.4700 +57119 221191 0.4360 +57119 259240 0.4500 +57119 391253 0.7160 +57119 100652824 0.4080 +57120 57704 0.4500 +57120 64072 0.6670 +57120 64083 0.7560 +57120 64130 0.4220 +57120 64645 0.4280 +57120 64744 0.4120 +57120 79849 0.5680 +57120 79989 0.4460 +57120 81833 0.5890 +57120 83893 0.8130 +57120 84247 0.5330 +57120 93649 0.4310 +57120 121227 0.6520 +57120 124808 0.5480 +57120 166793 0.4860 +57120 171482 0.4200 +57120 222545 0.4590 +57120 260425 0.4290 +57120 283417 0.6340 +57120 285761 0.4070 +57120 345611 0.4830 +57120 387119 0.6310 +57121 59345 0.6070 +57121 63940 0.4600 +57121 64407 0.5820 +57121 79153 0.6150 +57121 79577 0.4590 +57121 80834 0.4760 +57121 80835 0.5910 +57121 83756 0.5430 +57121 84172 0.4200 +57121 84246 0.4530 +57121 84337 0.4550 +57121 84539 0.4130 +57121 94235 0.5100 +57121 115557 0.5020 +57121 116512 0.5150 +57121 126006 0.4160 +57121 139760 0.5070 +57121 146850 0.6720 +57121 222545 0.5980 +57121 284161 0.6130 +57121 338557 0.6310 +57121 431704 0.5220 +57122 57187 0.5420 +57122 57510 0.4450 +57122 57727 0.7250 +57122 59343 0.6850 +57122 65109 0.5510 +57122 79023 0.9990 +57122 79228 0.4610 +57122 79760 0.4160 +57122 79833 0.4380 +57122 79902 0.9990 +57122 79980 0.4060 +57122 80145 0.4320 +57122 81608 0.4380 +57122 81929 0.9990 +57122 84128 0.5180 +57122 84219 0.4560 +57122 84248 0.4490 +57122 84271 0.5510 +57122 84321 0.4200 +57122 84324 0.5400 +57122 84515 0.5160 +57122 84823 0.4330 +57122 84928 0.5810 +57122 84942 0.6430 +57122 91181 0.4810 +57122 91754 0.4730 +57122 94239 0.4270 +57122 112858 0.5100 +57122 116835 0.4340 +57122 120892 0.5180 +57122 129401 0.9940 +57122 137362 0.4900 +57122 140609 0.4050 +57122 140735 0.5120 +57122 147841 0.4780 +57122 157869 0.4770 +57122 164045 0.4480 +57122 197322 0.4870 +57122 199746 0.4040 +57122 254394 0.5390 +57122 259217 0.4340 +57122 348995 0.9990 +57122 376497 0.4810 +57122 389170 0.4230 +57122 727851 0.5250 +57122 728343 0.7330 +57122 728858 0.4740 +57122 729857 0.8270 +57122 100101267 0.9330 +57124 57125 0.8240 +57124 60485 0.4160 +57124 79812 0.4920 +57124 84168 0.5310 +57124 135228 0.6130 +57125 64759 0.4210 +57125 84168 0.5450 +57125 84961 0.4260 +57125 100129583 0.4160 +57125 100631383 0.4330 +57126 80781 0.6450 +57126 83639 0.4490 +57126 83700 0.4560 +57126 199675 0.4320 +57126 221481 0.4020 +57126 284348 0.4300 +57126 390940 0.4140 +57126 100133941 0.4800 +57126 101928108 0.4190 +57127 80271 0.4170 +57127 389015 0.5260 +57127 100528020 0.4660 +57128 57149 0.6880 +57128 57226 0.7180 +57128 57695 0.4640 +57128 63931 0.4200 +57128 64087 0.4040 +57128 64210 0.6710 +57128 64428 0.7440 +57128 64963 0.4410 +57128 64979 0.4490 +57128 65003 0.4730 +57128 65010 0.4970 +57128 79728 0.4930 +57128 79863 0.4830 +57128 80224 0.7190 +57128 80273 0.5310 +57128 81341 0.8200 +57128 81689 0.8130 +57128 81876 0.5460 +57128 81894 0.5610 +57128 83452 0.5530 +57128 84191 0.4110 +57128 84942 0.5340 +57128 84952 0.5420 +57128 90624 0.6810 +57128 91300 0.8200 +57128 94033 0.5200 +57128 112812 0.9530 +57128 115019 0.4970 +57128 115111 0.4970 +57128 116369 0.4970 +57128 122416 0.5110 +57128 122961 0.8070 +57128 124989 0.5950 +57128 144363 0.7060 +57128 147011 0.5790 +57128 150274 0.8660 +57128 154288 0.5790 +57128 154791 0.4350 +57128 200205 0.8160 +57128 201229 0.6130 +57128 219927 0.4170 +57128 257202 0.4220 +57128 258010 0.4150 +57128 284129 0.4970 +57128 339122 0.5450 +57128 375611 0.4970 +57128 388962 0.8490 +57128 401409 0.5420 +57128 493869 0.4220 +57128 552900 0.7090 +57128 619279 0.5790 +57128 642987 0.5790 +57128 644096 0.7390 +57128 654483 0.7080 +57129 57609 0.4720 +57129 58472 0.4090 +57129 60488 0.9950 +57129 63875 0.9990 +57129 63931 0.9930 +57129 64374 0.6430 +57129 64432 0.9770 +57129 64928 0.9510 +57129 64949 0.8650 +57129 64951 0.9180 +57129 64960 0.9950 +57129 64963 0.9920 +57129 64965 0.9940 +57129 64968 0.9920 +57129 64969 0.9950 +57129 64975 0.9990 +57129 64976 0.9980 +57129 64978 0.9920 +57129 64979 0.9950 +57129 64981 0.9970 +57129 64983 0.9980 +57129 65003 0.9980 +57129 65005 0.9990 +57129 65008 0.9850 +57129 65080 0.9980 +57129 65121 0.4970 +57129 65122 0.4970 +57129 65993 0.8730 +57129 78988 0.9690 +57129 79133 0.5600 +57129 79165 0.4140 +57129 79590 0.9980 +57129 79728 0.8220 +57129 79848 0.4170 +57129 79912 0.4110 +57129 79922 0.8140 +57129 79962 0.4070 +57129 79982 0.4100 +57129 80146 0.4590 +57129 80221 0.9340 +57129 80270 0.4590 +57129 83448 0.7890 +57129 84060 0.4870 +57129 84273 0.6130 +57129 84311 0.9920 +57129 84340 0.8240 +57129 84365 0.4350 +57129 84545 0.9980 +57129 84705 0.8980 +57129 84881 0.7250 +57129 84883 0.4640 +57129 85476 0.8710 +57129 85865 0.8290 +57129 90313 0.8710 +57129 90480 0.9800 +57129 90624 0.7020 +57129 91574 0.8320 +57129 92170 0.9880 +57129 92399 0.8670 +57129 93517 0.4630 +57129 96459 0.4070 +57129 113000 0.6120 +57129 114781 0.6940 +57129 114908 0.4140 +57129 114987 0.4490 +57129 115416 0.9960 +57129 116540 0.9480 +57129 116541 0.9810 +57129 118487 0.9490 +57129 122704 0.9120 +57129 124359 0.4680 +57129 124995 0.9910 +57129 126402 0.8190 +57129 128308 0.9790 +57129 130916 0.8190 +57129 133015 0.4290 +57129 135138 0.4290 +57129 137682 0.4600 +57129 140432 0.4070 +57129 140801 0.6340 +57129 148022 0.5360 +57129 149478 0.6370 +57129 150209 0.4590 +57129 150353 0.4070 +57129 157310 0.7510 +57129 157869 0.4680 +57129 165721 0.4070 +57129 171425 0.5010 +57129 197322 0.4860 +57129 202052 0.4080 +57129 219402 0.5850 +57129 219927 0.9990 +57129 253175 0.4680 +57129 284106 0.5830 +57129 284418 0.4120 +57129 285126 0.4070 +57129 285190 0.4120 +57129 285282 0.4500 +57129 285367 0.7320 +57129 285755 0.4130 +57129 343068 0.4970 +57129 343070 0.4970 +57129 345051 0.8720 +57129 347487 0.6500 +57129 353376 0.5360 +57129 374407 0.4070 +57129 376497 0.4720 +57129 387338 0.8050 +57129 390999 0.4970 +57129 391002 0.4970 +57129 400735 0.4970 +57129 400736 0.4970 +57129 440145 0.4460 +57129 440560 0.4970 +57129 440561 0.4970 +57129 441873 0.4970 +57129 641776 0.4830 +57129 643909 0.4830 +57129 644591 0.4120 +57129 645142 0.4120 +57129 645359 0.4970 +57129 653505 0.4170 +57129 653598 0.4120 +57129 653619 0.4970 +57129 727851 0.4120 +57129 728524 0.4830 +57129 728945 0.4120 +57129 729528 0.4970 +57129 729857 0.4120 +57129 730262 0.4120 +57129 100130890 0.7580 +57129 100131187 0.7580 +57129 100287482 0.6500 +57129 100302736 0.5360 +57129 100526842 0.8310 +57129 100996746 0.4830 +57129 101929983 0.4970 +57129 105180390 0.4830 +57129 105180391 0.4830 +57129 105371242 0.4120 +57129 127898561 0.8110 +57130 84896 0.4840 +57130 94039 0.4510 +57130 120892 0.5120 +57130 374354 0.4010 +57130 374887 0.4950 +57130 399909 0.7900 +57132 64149 0.4350 +57132 64225 0.7550 +57132 64750 0.4850 +57132 79643 0.9900 +57132 79720 0.9570 +57132 84313 0.9720 +57132 84936 0.7540 +57132 89853 0.9220 +57132 90417 0.7980 +57132 91782 0.9830 +57132 92421 0.9680 +57132 93343 0.9490 +57132 128866 0.9940 +57132 129531 0.5910 +57132 137492 0.9380 +57132 155382 0.9290 +57132 197259 0.9440 +57132 390595 0.5400 +57132 100526767 0.9950 +57134 57185 0.4290 +57134 57511 0.5170 +57134 63908 0.4990 +57134 83452 0.4990 +57134 83548 0.5220 +57134 91949 0.5100 +57134 146664 0.4860 +57134 163071 0.4170 +57134 348487 0.5020 +57135 124359 0.6300 +57135 140032 0.5060 +57135 253175 0.6200 +57135 353513 0.6620 +57135 442862 0.7300 +57135 442867 0.8570 +57135 442868 0.8570 +57136 57455 0.4020 +57136 57696 0.4860 +57136 63875 0.7310 +57136 63931 0.4570 +57136 64374 0.4580 +57136 64782 0.4170 +57136 64794 0.4860 +57136 64960 0.4890 +57136 64963 0.6150 +57136 64965 0.5040 +57136 64968 0.4080 +57136 64969 0.5390 +57136 64983 0.4620 +57136 65003 0.4020 +57136 65005 0.4530 +57136 65008 0.6300 +57136 79009 0.4860 +57136 79039 0.4870 +57136 79631 0.6680 +57136 79896 0.4770 +57136 79947 0.5300 +57136 80745 0.5770 +57136 81691 0.4020 +57136 81875 0.4180 +57136 83479 0.5690 +57136 84172 0.7000 +57136 85441 0.6100 +57136 85476 0.6820 +57136 91574 0.4530 +57136 91646 0.4860 +57136 91875 0.6770 +57136 91893 0.7930 +57136 92399 0.5640 +57136 93974 0.4920 +57136 115752 0.5650 +57136 116150 0.5100 +57136 118460 0.5970 +57136 122622 0.4030 +57136 126402 0.5480 +57136 129563 0.5660 +57136 133396 0.4860 +57136 140801 0.4560 +57136 142940 0.5450 +57136 146212 0.4860 +57136 168400 0.4860 +57136 200172 0.4860 +57136 317781 0.4860 +57136 344758 0.4860 +57136 374659 0.5060 +57136 387712 0.5380 +57139 57148 0.5150 +57139 253959 0.4120 +57139 401720 0.4450 +57140 58190 0.4080 +57140 90861 0.4520 +57140 146542 0.4170 +57140 147965 0.5290 +57140 256364 0.4300 +57142 63827 0.4060 +57142 64225 0.6100 +57142 65055 0.5760 +57142 65078 0.9990 +57142 79139 0.6370 +57142 80346 0.4580 +57142 80856 0.5180 +57142 83452 0.4970 +57142 83851 0.4980 +57142 84816 0.9890 +57142 84894 0.9910 +57142 85013 0.4270 +57142 89796 0.5360 +57142 92840 0.5410 +57142 116150 0.9410 +57142 130074 0.4010 +57142 132720 0.7630 +57142 146760 0.9510 +57142 162427 0.5860 +57142 196410 0.4540 +57142 349667 0.8760 +57142 386724 0.4150 +57143 79672 0.4030 +57143 79934 0.4920 +57143 84274 0.6210 +57143 90956 0.6250 +57143 93058 0.4130 +57143 158471 0.4610 +57143 160760 0.4210 +57143 100288797 0.4740 +57144 57381 0.4430 +57144 58480 0.4500 +57144 80017 0.4220 +57144 81839 0.4060 +57144 85360 0.4590 +57144 85366 0.6580 +57144 91807 0.6560 +57144 114885 0.4170 +57144 115557 0.6760 +57144 157769 0.4280 +57144 171177 0.4490 +57144 340156 0.6820 +57146 128486 0.4050 +57147 114781 0.4390 +57147 144233 0.6230 +57148 57186 0.9640 +57148 57609 0.7200 +57148 57680 0.6060 +57148 57720 0.4950 +57148 79665 0.5190 +57148 81545 0.4660 +57148 83992 0.4050 +57148 84271 0.4270 +57148 85021 0.4230 +57148 115703 0.4610 +57148 122830 0.4300 +57148 139231 0.4350 +57148 149371 0.4530 +57148 149685 0.4730 +57148 153527 0.4800 +57148 157769 0.5330 +57148 253959 0.8250 +57148 373863 0.4520 +57148 374354 0.4370 +57149 57226 0.7890 +57149 90624 0.6870 +57149 144363 0.8210 +57149 154791 0.5950 +57149 201229 0.7430 +57149 644096 0.5280 +57149 127898561 0.4320 +57150 90025 0.4380 +57150 112611 0.4250 +57150 154313 0.5510 +57150 206412 0.6180 +57150 284427 0.4510 +57150 387990 0.4070 +57150 728927 0.4350 +57150 100132963 0.6260 +57150 100505993 0.6550 +57151 84079 0.5040 +57151 140856 0.4860 +57151 259308 0.4400 +57151 283377 0.4420 +57151 339669 0.4380 +57151 339779 0.5110 +57151 374973 0.4580 +57151 401565 0.4240 +57151 431705 0.4930 +57151 728858 0.5310 +57152 58496 0.4030 +57152 66004 0.9670 +57152 80740 0.4740 +57152 83639 0.5450 +57152 116372 0.7950 +57152 130574 0.9520 +57152 130576 0.4250 +57152 147645 0.4550 +57152 147719 0.5810 +57152 160065 0.5050 +57152 171169 0.4790 +57152 284348 0.5880 +57152 338328 0.6400 +57152 347527 0.4180 +57152 390940 0.4720 +57152 399967 0.5130 +57152 399968 0.5910 +57152 432355 0.9670 +57152 100169851 0.5070 +57152 101928108 0.5140 +57152 111188157 0.5710 +57153 60482 0.5640 +57153 64072 0.4130 +57154 57506 0.5350 +57154 57530 0.5060 +57154 57561 0.4070 +57154 57646 0.4370 +57154 57761 0.5280 +57154 64750 0.9880 +57154 65018 0.6010 +57154 79594 0.5050 +57154 80762 0.7880 +57154 83605 0.9140 +57154 84552 0.5640 +57154 84612 0.5880 +57154 84639 0.5490 +57154 90678 0.4280 +57154 91947 0.4900 +57154 92714 0.5270 +57154 123228 0.4370 +57154 139341 0.4310 +57154 144165 0.6780 +57154 220213 0.5480 +57154 402569 0.6870 +57156 57484 0.4560 +57156 80021 0.4050 +57156 83862 0.4430 +57156 85369 0.5470 +57156 117532 0.4170 +57156 203069 0.4280 +57156 283578 0.4090 +57157 65991 0.4130 +57157 84250 0.4970 +57157 85025 0.4400 +57157 133060 0.4020 +57157 138255 0.4050 +57157 257218 0.4570 +57158 57338 0.5910 +57158 64091 0.4100 +57158 84033 0.4330 +57158 84502 0.6340 +57158 84665 0.5610 +57158 85366 0.5250 +57158 91624 0.5420 +57158 91860 0.6020 +57158 125972 0.6200 +57158 126306 0.4630 +57158 163688 0.6030 +57158 246329 0.5690 +57158 282996 0.4710 +57158 284612 0.7680 +57158 493829 0.4270 +57159 58529 0.4580 +57159 78990 0.4260 +57159 84033 0.4930 +57159 84676 0.5820 +57159 84767 0.4520 +57159 84851 0.4380 +57159 85363 0.4330 +57159 85366 0.4610 +57159 114907 0.8010 +57159 116969 0.4090 +57159 131377 0.4030 +57159 140691 0.4380 +57159 140825 0.4380 +57159 146862 0.4190 +57159 200539 0.4070 +57159 202333 0.4660 +57159 347273 0.7020 +57159 442721 0.4440 +57161 57162 0.6520 +57161 64844 0.5300 +57161 84231 0.4400 +57161 246330 0.4230 +57161 257397 0.4140 +57162 65975 0.4730 +57162 148022 0.4500 +57162 246330 0.4230 +57162 257397 0.4540 +57162 353376 0.4110 +57165 57369 0.4160 +57165 57471 0.4630 +57165 57704 0.4040 +57165 65055 0.4170 +57165 79152 0.5650 +57165 80208 0.7790 +57165 80821 0.4360 +57165 81025 0.4440 +57165 84668 0.8990 +57165 84694 0.4280 +57165 91574 0.4240 +57165 123606 0.4810 +57165 125111 0.4520 +57165 127534 0.4430 +57165 137492 0.4320 +57165 147372 0.6120 +57165 219770 0.4180 +57165 349149 0.5160 +57165 100126572 0.7730 +57167 57332 0.5420 +57167 57459 0.8310 +57167 57473 0.4950 +57167 57504 0.7180 +57167 63978 0.9080 +57167 64221 0.7000 +57167 64321 0.5600 +57167 79191 0.4740 +57167 79727 0.9050 +57167 79923 0.9990 +57167 80012 0.5060 +57167 80312 0.5390 +57167 83595 0.4010 +57167 84232 0.4990 +57167 84678 0.5530 +57167 84733 0.5980 +57167 84891 0.8690 +57167 92002 0.7840 +57167 112939 0.4080 +57167 131405 0.4640 +57167 148979 0.5080 +57167 151871 0.6280 +57167 170692 0.4210 +57167 201456 0.4820 +57167 339345 0.5480 +57167 340168 0.4700 +57167 342977 0.5020 +57167 346673 0.4730 +57167 359787 0.5220 +57167 389421 0.5130 +57167 400566 0.4450 +57167 402381 0.5950 +57167 100526761 0.4380 +57167 100532731 0.5190 +57168 79639 0.5760 +57168 84320 0.5310 +57168 89781 0.4620 +57168 145173 0.4670 +57168 402055 0.6360 +57169 57506 0.4590 +57169 57674 0.4640 +57169 64135 0.6440 +57169 64282 0.4990 +57169 64761 0.6870 +57169 79132 0.4320 +57169 79594 0.4750 +57169 83666 0.6350 +57169 85441 0.5600 +57169 94240 0.4410 +57169 129607 0.6700 +57169 167153 0.5540 +57169 192669 0.4440 +57169 192670 0.4350 +57169 219285 0.4290 +57171 64748 0.4470 +57171 79053 0.4610 +57171 79087 0.4860 +57171 79644 0.7270 +57171 79868 0.4860 +57171 79947 0.7740 +57171 80789 0.5210 +57171 84285 0.4020 +57171 84513 0.4520 +57171 84814 0.4110 +57171 114971 0.4260 +57171 116150 0.6950 +57171 130814 0.4580 +57171 196051 0.4350 +57171 199857 0.4810 +57171 201595 0.9060 +57171 254773 0.4360 +57171 341208 0.4310 +57171 391123 0.4370 +57171 440138 0.5240 +57171 643853 0.4600 +57172 64764 0.6630 +57172 79929 0.5060 +57172 80023 0.4290 +57172 84699 0.6510 +57172 90993 0.6630 +57172 91860 0.8000 +57172 94032 0.4350 +57172 94104 0.4390 +57172 118881 0.4470 +57172 147798 0.4290 +57172 148327 0.6600 +57172 163688 0.8090 +57172 440279 0.4530 +57175 63943 0.4940 +57175 83481 0.4940 +57175 84940 0.7870 +57175 89870 0.4100 +57175 200895 0.4500 +57176 57470 0.5570 +57176 57505 0.9370 +57176 57819 0.4990 +57176 63875 0.4620 +57176 64969 0.4480 +57176 65008 0.4060 +57176 79587 0.8840 +57176 79731 0.8510 +57176 80222 0.8890 +57176 84154 0.9070 +57176 84172 0.5110 +57176 84464 0.4190 +57176 85476 0.6210 +57176 90381 0.4130 +57176 91875 0.4460 +57176 91893 0.4450 +57176 92399 0.5440 +57176 92935 0.8790 +57176 122622 0.4060 +57176 123263 0.7610 +57176 123283 0.8820 +57176 124454 0.8760 +57176 135644 0.4690 +57176 135656 0.4190 +57176 222696 0.5650 +57176 374395 0.5190 +57176 389376 0.4180 +57176 440275 0.4640 +57176 101927367 0.4890 +57178 57542 0.4510 +57178 84901 0.5280 +57178 92241 0.4770 +57178 150223 0.5130 +57178 286053 0.5410 +57178 387082 0.5390 +57179 79159 0.4430 +57179 79983 0.4770 +57179 84888 0.4260 +57179 140686 0.4260 +57179 140894 0.5850 +57180 57685 0.4200 +57180 63917 0.4950 +57180 63941 0.4170 +57180 81873 0.9790 +57180 84376 0.4310 +57180 84516 0.8900 +57180 91612 0.6330 +57180 123720 0.9190 +57180 151306 0.6970 +57180 337867 0.4010 +57180 345456 0.4670 +57180 375189 0.5540 +57180 653857 0.6530 +57180 100131755 0.4060 +57181 64924 0.7790 +57181 80704 0.4090 +57181 84879 0.4620 +57181 91252 0.4460 +57181 148867 0.7540 +57181 169026 0.5930 +57181 201266 0.7730 +57181 388662 0.4390 +57182 64421 0.4180 +57182 79446 0.5240 +57182 79633 0.4180 +57182 81609 0.8110 +57182 84079 0.4730 +57182 91419 0.4050 +57182 112936 0.4610 +57182 113246 0.9940 +57182 131601 0.4620 +57182 132612 0.4040 +57182 132946 0.4220 +57182 144699 0.4590 +57182 146845 0.4430 +57182 166378 0.4150 +57182 200010 0.4690 +57182 200894 0.4450 +57182 284361 0.4500 +57182 100287171 0.4490 +57184 79748 0.4470 +57184 79768 0.4030 +57184 340277 0.4790 +57185 57213 0.4320 +57185 57380 0.5150 +57185 83693 0.4140 +57185 84061 0.7890 +57185 84102 0.5060 +57185 93380 0.5750 +57185 140803 0.5710 +57185 254428 0.6540 +57185 348487 0.5260 +57186 157657 0.4080 +57186 199920 0.4290 +57186 100506564 0.4400 +57187 57703 0.6480 +57187 58517 0.4730 +57187 64328 0.8500 +57187 64783 0.4730 +57187 64848 0.5000 +57187 65109 0.6510 +57187 79023 0.4990 +57187 79228 0.9990 +57187 79753 0.4370 +57187 79811 0.5960 +57187 79869 0.5990 +57187 79882 0.6010 +57187 79902 0.5100 +57187 80145 0.9990 +57187 80349 0.4250 +57187 81929 0.4550 +57187 83443 0.4710 +57187 84248 0.9090 +57187 84271 0.8460 +57187 84321 0.9990 +57187 84324 0.9840 +57187 84811 0.6240 +57187 84844 0.4560 +57187 85437 0.6460 +57187 124245 0.8120 +57187 129080 0.5650 +57187 129401 0.5120 +57187 170506 0.4560 +57187 220988 0.4120 +57187 246243 0.4080 +57187 284325 0.4710 +57187 348995 0.4620 +57187 392517 0.8720 +57187 100101267 0.4660 +57188 57536 0.9990 +57188 79068 0.4150 +57188 79871 0.6680 +57188 126868 0.6310 +57188 145173 0.4380 +57188 145282 0.9990 +57188 203102 0.4760 +57188 254251 0.4250 +57188 375190 0.4930 +57188 389177 0.7620 +57189 57589 0.5030 +57189 83452 0.4680 +57189 84304 0.4490 +57189 90594 0.4140 +57189 201627 0.9340 +57189 404636 0.9370 +57190 58515 0.9130 +57190 60678 0.6720 +57190 79048 0.8610 +57190 79147 0.5760 +57190 83642 0.9040 +57190 84466 0.4880 +57190 85465 0.7870 +57190 114112 0.7660 +57190 118672 0.5050 +57190 124093 0.5920 +57190 131377 0.4070 +57190 140606 0.8590 +57190 257202 0.7320 +57190 280636 0.7960 +57190 348303 0.7750 +57190 390594 0.5190 +57190 493869 0.6580 +57191 57583 0.4230 +57191 79541 0.4300 +57191 81696 0.4180 +57191 125958 0.4410 +57191 339761 0.4370 +57191 340562 0.4320 +57191 340980 0.4460 +57191 341276 0.4310 +57191 343169 0.4460 +57191 388567 0.9530 +57191 390067 0.4160 +57191 390079 0.4710 +57191 400720 0.9520 +57191 401666 0.4330 +57191 440087 0.5420 +57192 57617 0.4530 +57192 59341 0.6120 +57192 79054 0.6350 +57192 80036 0.6270 +57192 81631 0.4360 +57192 84286 0.4760 +57192 84557 0.6030 +57192 90809 0.4930 +57192 91860 0.6460 +57192 122786 0.8260 +57192 140803 0.5470 +57192 162514 0.5530 +57192 163688 0.6460 +57192 200576 0.6760 +57192 219931 0.7680 +57192 255231 0.9840 +57192 285973 0.4310 +57194 57198 0.5900 +57194 57205 0.9390 +57194 79895 0.5900 +57194 81614 0.6200 +57194 114791 0.6590 +57194 123606 0.6020 +57194 148229 0.6010 +57194 161291 0.8450 +57194 286410 0.6100 +57194 353500 0.5690 +57198 57205 0.5850 +57198 57538 0.4340 +57198 79895 0.6150 +57198 118490 0.4370 +57198 142689 0.4790 +57198 148229 0.5830 +57198 161291 0.9650 +57198 170394 0.4690 +57198 286410 0.6170 +57205 57552 0.5420 +57205 64174 0.4190 +57205 64232 0.4280 +57205 79656 0.5120 +57205 79895 0.5900 +57205 148229 0.6050 +57205 161291 0.8700 +57205 203197 0.4100 +57205 221395 0.4260 +57205 255043 0.5640 +57205 286410 0.6160 +57205 339976 0.5130 +57209 57519 0.4200 +57209 78991 0.4280 +57209 89122 0.4790 +57209 90557 0.4450 +57209 161829 0.4260 +57209 254359 0.4700 +57209 283464 0.4070 +57210 79574 0.4340 +57210 79780 0.4250 +57210 84313 0.4820 +57211 64399 0.4180 +57211 79807 0.5300 +57211 79875 0.4550 +57211 79949 0.4560 +57211 81846 0.7140 +57211 163175 0.4490 +57211 389421 0.6670 +57213 64776 0.4850 +57213 79621 0.4110 +57213 79849 0.6530 +57213 81617 0.4280 +57213 83693 0.4750 +57213 84650 0.5330 +57213 84947 0.4190 +57213 144811 0.6390 +57213 152519 0.4040 +57213 160857 0.6410 +57213 220107 0.4600 +57213 283377 0.4100 +57213 283518 0.6740 +57213 353174 0.4400 +57214 340706 0.4940 +57215 79725 0.5450 +57215 80764 0.9550 +57215 83591 0.8900 +57215 90326 0.8890 +57215 168451 0.6510 +57215 199745 0.5810 +57216 57619 0.4290 +57216 64399 0.4250 +57216 79633 0.8670 +57216 79738 0.4300 +57216 80319 0.4170 +57216 81029 0.4250 +57216 81839 0.9680 +57216 85407 0.5800 +57216 89780 0.6250 +57216 90410 0.5780 +57216 115908 0.6630 +57216 144165 0.9980 +57216 166336 0.9970 +57216 166379 0.4430 +57216 260425 0.7390 +57216 374654 0.4370 +57217 81704 0.4370 +57217 84668 0.8800 +57217 90411 0.4190 +57217 129303 0.7240 +57217 130557 0.4330 +57217 130574 0.4140 +57217 285172 0.6730 +57217 285203 0.5640 +57221 80059 0.4790 +57221 90134 0.4340 +57221 91782 0.4240 +57221 154467 0.5070 +57221 643382 0.5410 +57222 57561 0.5110 +57222 84705 0.9310 +57222 117246 0.4390 +57222 153222 0.4680 +57222 285016 0.4430 +57222 285521 0.4580 +57222 730249 0.4010 +57223 57337 0.4450 +57223 57585 0.5630 +57223 57718 0.5320 +57223 64927 0.4750 +57223 79807 0.4070 +57223 85407 0.5400 +57223 139420 0.9030 +57223 151987 0.9990 +57223 167227 0.5260 +57223 200185 0.4880 +57223 200186 0.9190 +57223 404552 0.4470 +57224 57648 0.5850 +57224 155185 0.6130 +57226 90624 0.6900 +57226 144363 0.7930 +57226 154791 0.5830 +57226 201229 0.7610 +57226 494115 0.4470 +57226 644096 0.5470 +57228 84065 0.4750 +57228 118932 0.4050 +57228 129531 0.4070 +57228 645414 0.4790 +57231 57711 0.5890 +57231 57724 0.5850 +57231 58477 0.4240 +57231 58533 0.5020 +57231 64407 0.4470 +57231 79772 0.4080 +57231 80208 0.4480 +57231 81533 0.4450 +57231 81609 0.5290 +57231 83891 0.5590 +57231 85397 0.4720 +57231 114034 0.4280 +57231 203547 0.4140 +57231 254122 0.4120 +57231 378884 0.4130 +57231 390616 0.4090 +57231 431704 0.4720 +57231 751071 0.4080 +57232 91966 0.4480 +57232 203522 0.4450 +57232 283365 0.4330 +57232 286464 0.5050 +57232 347365 0.4890 +57232 389852 0.4450 +57232 728492 0.4180 +57232 729201 0.6270 +57282 57468 0.4960 +57282 65010 0.4840 +57282 90134 0.5750 +57282 112476 0.4910 +57282 115019 0.4400 +57282 115111 0.4080 +57282 124637 0.4190 +57282 283999 0.5550 +57282 389015 0.4380 +57325 57419 0.4360 +57325 58500 0.5270 +57325 64412 0.4430 +57325 79595 0.5280 +57325 79612 0.6720 +57325 80155 0.6670 +57325 83443 0.6250 +57325 84148 0.4330 +57325 84779 0.6400 +57325 92675 0.4350 +57325 93624 0.9340 +57325 112869 0.9990 +57325 117143 0.8330 +57325 122830 0.4510 +57325 140836 0.4270 +57325 220082 0.5460 +57325 221710 0.5620 +57325 653604 0.5100 +57325 728361 0.4080 +57326 64395 0.4510 +57326 89765 0.4170 +57326 127579 0.4880 +57326 349149 0.4290 +57332 57459 0.5260 +57332 57504 0.5050 +57332 63035 0.4030 +57332 64319 0.5060 +57332 64682 0.9000 +57332 79039 0.4790 +57332 79184 0.9000 +57332 79366 0.4220 +57332 80012 0.9980 +57332 80816 0.5540 +57332 83544 0.4350 +57332 83746 0.4670 +57332 84108 0.9860 +57332 84232 0.5110 +57332 84333 0.9810 +57332 84444 0.5550 +57332 84450 0.4450 +57332 84678 0.8630 +57332 84733 0.9980 +57332 84759 0.9930 +57332 85236 0.6120 +57332 94239 0.5890 +57332 117246 0.4410 +57332 119504 0.9000 +57332 121536 0.9310 +57332 124359 0.4350 +57332 128312 0.5340 +57332 132625 0.6350 +57332 140459 0.5400 +57332 161882 0.4400 +57332 166979 0.5460 +57332 171023 0.9090 +57332 192669 0.5120 +57332 192670 0.5120 +57332 246184 0.9000 +57332 255626 0.6530 +57332 404281 0.6450 +57332 440093 0.6810 +57332 440686 0.6820 +57332 474382 0.5430 +57332 642636 0.4670 +57332 653604 0.8680 +57332 100170841 0.4980 +57332 100532731 0.9890 +57333 60681 0.4940 +57333 541468 0.4040 +57335 125704 0.4290 +57336 91409 0.4470 +57336 222223 0.4220 +57336 339512 0.4180 +57336 728591 0.4300 +57337 59343 0.5550 +57337 83852 0.6900 +57337 84896 0.5360 +57337 84901 0.4840 +57337 123228 0.6500 +57337 139420 0.5040 +57337 146057 0.4380 +57337 154215 0.5510 +57337 205564 0.6280 +57337 286053 0.5070 +57337 387082 0.8150 +57338 79913 0.4390 +57338 80025 0.4860 +57338 84502 0.7190 +57338 91860 0.5250 +57338 114794 0.4150 +57338 126306 0.4090 +57338 163688 0.5200 +57338 246329 0.4520 +57338 284612 0.7300 +57343 57646 0.5100 +57343 84276 0.4620 +57343 130733 0.4480 +57343 283162 0.4100 +57343 554251 0.4090 +57348 80131 0.5470 +57348 84230 0.5710 +57348 94059 0.5510 +57348 114823 0.6480 +57348 143282 0.4210 +57348 148170 0.6170 +57348 375616 0.4600 +57369 79698 0.5730 +57369 81025 0.4640 +57369 84319 0.5050 +57369 84694 0.4470 +57369 84708 0.4090 +57369 94233 0.4020 +57369 125111 0.4250 +57369 127534 0.4420 +57369 128408 0.4020 +57369 219770 0.4420 +57369 222484 0.4620 +57369 349149 0.4450 +57369 375519 0.4090 +57369 643136 0.6230 +57369 646960 0.5250 +57369 100126572 0.6840 +57379 57505 0.4700 +57379 59067 0.5470 +57379 60468 0.7690 +57379 64111 0.4630 +57379 64135 0.4070 +57379 79002 0.5880 +57379 79728 0.4130 +57379 80312 0.4890 +57379 83417 0.5380 +57379 84126 0.5430 +57379 84886 0.7360 +57379 115650 0.5470 +57379 125965 0.5880 +57379 164684 0.4310 +57379 200424 0.4620 +57379 283459 0.6610 +57379 388753 0.5880 +57379 389643 0.4410 +57379 403314 0.8730 +57379 440567 0.6870 +57379 100271849 0.4010 +57379 100423062 0.6300 +57379 100532726 0.4600 +57379 102723407 0.8850 +57380 79731 0.4870 +57380 79815 0.4750 +57380 81614 0.5150 +57380 81894 0.4790 +57380 84061 0.6480 +57380 84102 0.6920 +57380 84277 0.4460 +57380 93380 0.5630 +57380 123606 0.4170 +57380 140803 0.6540 +57380 152519 0.5560 +57380 254428 0.7610 +57380 348938 0.4490 +57381 57580 0.6590 +57381 57584 0.4890 +57381 57647 0.5920 +57381 80005 0.4310 +57381 80243 0.4090 +57381 80755 0.4200 +57381 81624 0.6930 +57381 81704 0.9220 +57381 81839 0.6020 +57381 84552 0.7880 +57381 84612 0.8890 +57381 85360 0.5420 +57381 85440 0.6480 +57381 91010 0.7400 +57381 128239 0.6380 +57381 133482 0.4460 +57381 139818 0.8180 +57381 143098 0.5900 +57381 144402 0.5500 +57381 147179 0.6120 +57381 200894 0.6130 +57381 283635 0.4440 +57393 340024 0.9570 +57393 348932 0.5460 +57396 59286 0.5510 +57396 284111 0.4610 +57396 386682 0.4240 +57396 647589 0.4170 +57402 113278 0.4440 +57402 116254 0.4880 +57402 140576 0.9700 +57402 170591 0.5730 +57402 221830 0.4120 +57402 338324 0.6430 +57402 388697 0.7980 +57403 57589 0.5070 +57403 57617 0.5290 +57403 57706 0.4310 +57403 64145 0.9430 +57403 64601 0.5230 +57403 79735 0.4370 +57403 81846 0.4100 +57403 83874 0.7780 +57403 84079 0.5430 +57403 89781 0.4300 +57403 92714 0.5460 +57403 117177 0.4070 +57403 126432 0.4190 +57403 163486 0.4180 +57403 285282 0.4440 +57404 57474 0.4710 +57404 59283 0.4380 +57404 64149 0.5420 +57404 65065 0.4240 +57404 79269 0.5180 +57404 79644 0.4310 +57404 80207 0.5240 +57404 80270 0.5620 +57404 115761 0.4010 +57404 117177 0.4060 +57404 119504 0.4270 +57404 124936 0.4480 +57404 130026 0.5510 +57404 132949 0.5210 +57404 148206 0.4650 +57404 199974 0.4640 +57404 256356 0.5570 +57404 339761 0.5130 +57404 340665 0.4540 +57404 342892 0.4980 +57404 353088 0.5160 +57405 57650 0.5010 +57405 58513 0.4780 +57405 64105 0.6490 +57405 64151 0.8660 +57405 64946 0.5530 +57405 79003 0.9710 +57405 79019 0.6000 +57405 79682 0.5900 +57405 79733 0.5460 +57405 79801 0.6870 +57405 79866 0.4800 +57405 79980 0.9630 +57405 80152 0.9510 +57405 81610 0.4470 +57405 81620 0.4270 +57405 81930 0.7030 +57405 83461 0.7300 +57405 83540 0.9990 +57405 84057 0.7910 +57405 84900 0.4160 +57405 90417 0.4080 +57405 113115 0.6280 +57405 113130 0.6250 +57405 115548 0.4220 +57405 147841 0.9990 +57405 150468 0.4240 +57405 151246 0.6100 +57405 151648 0.6230 +57405 157313 0.5510 +57405 157570 0.5080 +57405 220134 0.6920 +57405 221150 0.7710 +57405 259266 0.8520 +57405 348235 0.4210 +57405 387103 0.5130 +57406 57552 0.6360 +57406 58489 0.4400 +57406 59283 0.4860 +57406 59284 0.4090 +57406 63874 0.7420 +57406 64840 0.6100 +57406 79728 0.4990 +57406 80167 0.4120 +57406 81926 0.5300 +57406 83451 0.6820 +57406 84696 0.4530 +57406 84836 0.4550 +57406 84945 0.4490 +57406 93145 0.4060 +57406 116236 0.4370 +57406 118427 0.4060 +57406 126129 0.5420 +57406 132949 0.4350 +57406 139760 0.5220 +57406 140701 0.4770 +57406 145447 0.5780 +57406 146395 0.4580 +57406 149111 0.4750 +57406 158584 0.6870 +57406 171586 0.6210 +57406 221955 0.8120 +57406 222236 0.8210 +57406 254263 0.6230 +57406 375567 0.4040 +57406 402117 0.4590 +57406 729956 0.4870 +57406 729993 0.4950 +57407 57599 0.4370 +57407 78990 0.6530 +57407 79085 0.4240 +57407 79180 0.4260 +57407 79598 0.4930 +57407 79728 0.6890 +57407 81341 0.5340 +57407 84886 0.4420 +57407 84939 0.6690 +57407 90507 0.4070 +57407 91300 0.5340 +57407 91942 0.4760 +57407 112724 0.4780 +57407 112812 0.4200 +57407 114789 0.4200 +57407 126328 0.4830 +57407 139221 0.6660 +57407 150684 0.7220 +57407 284427 0.4200 +57407 342346 0.4020 +57407 374291 0.6800 +57407 399979 0.5270 +57407 440567 0.6020 +57407 728317 0.6660 +57407 100532726 0.5650 +57409 60386 0.6040 +57409 90459 0.5060 +57409 399909 0.5050 +57410 60626 0.4590 +57410 79065 0.5170 +57410 84915 0.4230 +57410 92344 0.9900 +57410 197021 0.4970 +57410 205428 0.9060 +57412 79068 0.4280 +57412 84274 0.4540 +57412 91752 0.4080 +57412 94026 0.4630 +57412 119032 0.8510 +57412 119391 0.6220 +57412 255308 0.4790 +57412 340075 0.4060 +57412 347475 0.4760 +57412 347527 0.6190 +57412 127814297 0.4180 +57413 220108 0.4700 +57413 388364 0.5830 +57414 64285 0.6660 +57414 64422 0.5460 +57414 79139 0.5660 +57414 79651 0.4890 +57414 84236 0.6340 +57414 84447 0.5460 +57414 91319 0.5730 +57414 148362 0.4590 +57414 162494 0.4740 +57414 168507 0.5120 +57414 284058 0.4150 +57414 337867 0.5730 +57415 84318 0.5600 +57415 84902 0.7660 +57415 92667 0.4250 +57415 162681 0.5910 +57415 195828 0.4560 +57415 284992 0.5590 +57415 340562 0.4490 +57415 728498 0.4470 +57418 57647 0.6670 +57418 57696 0.6500 +57418 57728 0.4380 +57418 60487 0.5140 +57418 64216 0.5530 +57418 64318 0.7640 +57418 64794 0.6270 +57418 64949 0.4590 +57418 65083 0.7730 +57418 79009 0.4680 +57418 79039 0.7310 +57418 79050 0.9090 +57418 79571 0.5020 +57418 79707 0.9880 +57418 79954 0.6700 +57418 80324 0.4160 +57418 81620 0.9770 +57418 81689 0.4140 +57418 81875 0.6030 +57418 81887 0.9910 +57418 83475 0.6180 +57418 83743 0.8550 +57418 84128 0.8390 +57418 84135 0.7520 +57418 84154 0.8900 +57418 84172 0.6330 +57418 84365 0.9000 +57418 84549 0.4530 +57418 84916 0.9010 +57418 84946 0.4310 +57418 88745 0.6770 +57418 90459 0.4110 +57418 91304 0.4410 +57418 92856 0.8910 +57418 115708 0.6290 +57418 116832 0.7240 +57418 116966 0.4840 +57418 117246 0.8790 +57418 140801 0.5140 +57418 146212 0.4840 +57418 155368 0.4510 +57418 161424 0.7610 +57418 200916 0.6470 +57418 221078 0.5540 +57418 221830 0.4020 +57418 285855 0.6080 +57418 317781 0.4280 +57418 377677 0.4250 +57418 387129 0.5900 +57419 81533 0.4320 +57419 160518 0.4590 +57419 338567 0.4210 +57419 389177 0.4270 +57446 79716 0.4240 +57446 81932 0.4780 +57446 84174 0.4390 +57448 57474 0.4370 +57448 57664 0.4880 +57448 58508 0.4130 +57448 64324 0.4600 +57448 79444 0.9220 +57448 79648 0.6020 +57448 79811 0.4110 +57448 80304 0.5040 +57448 80351 0.4060 +57448 81631 0.6120 +57448 83737 0.4190 +57448 84077 0.4700 +57448 84231 0.5070 +57448 84461 0.4850 +57448 84557 0.4070 +57448 90850 0.4700 +57448 92002 0.5200 +57448 114803 0.4230 +57448 197131 0.5110 +57448 257218 0.4390 +57448 387522 0.5030 +57448 440738 0.4190 +57449 59345 0.4910 +57449 79628 0.4200 +57449 84708 0.4490 +57449 89857 0.4140 +57449 116179 0.5070 +57449 203286 0.4040 +57449 222484 0.4570 +57449 401251 0.5600 +57451 64067 0.4570 +57451 120400 0.5000 +57451 343578 0.4130 +57452 85379 0.4760 +57452 92922 0.4920 +57452 118430 0.4040 +57452 140453 0.4010 +57452 192134 0.9070 +57452 374907 0.4030 +57452 728819 0.6660 +57452 100529257 0.4200 +57453 57554 0.4510 +57453 57556 0.4330 +57453 79152 0.4750 +57453 91584 0.4640 +57453 94233 0.4040 +57453 116519 0.7270 +57453 126147 0.4810 +57453 154215 0.4300 +57455 58506 0.8150 +57455 80349 0.4010 +57455 81691 0.9160 +57455 83855 0.5680 +57455 85441 0.4110 +57455 87178 0.4530 +57455 92822 0.4240 +57455 113178 0.4210 +57455 115950 0.4770 +57455 148223 0.4070 +57455 255967 0.5740 +57455 256364 0.5300 +57455 317781 0.4880 +57455 100507290 0.4880 +57456 57461 0.5310 +57456 60625 0.5930 +57456 64092 0.6060 +57456 79652 0.7210 +57456 79959 0.4650 +57456 84292 0.6160 +57456 115352 0.4310 +57456 123904 0.5400 +57456 138802 0.4800 +57456 151903 0.6690 +57456 388536 0.5070 +57456 100131187 0.4620 +57458 57718 0.4150 +57458 84899 0.5050 +57458 160335 0.4460 +57458 286006 0.4380 +57458 375341 0.4130 +57458 388512 0.4450 +57459 57473 0.6610 +57459 57504 0.9930 +57459 57621 0.4430 +57459 57680 0.5930 +57459 64426 0.6440 +57459 64769 0.4450 +57459 64919 0.5630 +57459 79685 0.5080 +57459 80012 0.5070 +57459 84232 0.5100 +57459 84289 0.4030 +57459 84733 0.4990 +57459 85235 0.4060 +57459 85236 0.4990 +57459 85509 0.8680 +57459 92815 0.4060 +57459 93611 0.4380 +57459 93986 0.6240 +57459 94239 0.5060 +57459 125997 0.5350 +57459 128312 0.4990 +57459 140685 0.6180 +57459 203259 0.4430 +57459 221613 0.4060 +57459 255626 0.4990 +57459 317772 0.4140 +57459 440689 0.4050 +57459 474382 0.5050 +57459 653604 0.5940 +57460 64746 0.5960 +57460 79490 0.4170 +57460 80895 0.4070 +57460 83547 0.4180 +57460 120892 0.4500 +57460 152926 0.5140 +57460 160760 0.5310 +57460 196383 0.7060 +57460 333926 0.6160 +57460 353116 0.6840 +57461 57703 0.9940 +57461 59286 0.6780 +57461 60625 0.5940 +57461 79446 0.7990 +57461 79631 0.5540 +57461 79650 0.7780 +57461 79753 0.6430 +57461 79825 0.6000 +57461 81576 0.5430 +57461 83938 0.5970 +57461 84292 0.7060 +57461 84316 0.4390 +57461 84811 0.5180 +57461 84950 0.5350 +57461 85476 0.5590 +57461 90806 0.4300 +57461 91603 0.9460 +57461 96764 0.4450 +57461 123811 0.8400 +57461 126259 0.4340 +57461 138046 0.4030 +57461 143884 0.7540 +57461 145173 0.5280 +57461 145258 0.8400 +57461 147650 0.4340 +57461 151903 0.8060 +57461 153527 0.4600 +57461 154007 0.6080 +57461 164045 0.5970 +57461 199746 0.5530 +57461 220074 0.5970 +57461 222183 0.6710 +57461 339122 0.5950 +57461 340784 0.5720 +57461 100534599 0.9000 +57462 79549 0.4200 +57462 84572 0.5350 +57462 84688 0.6470 +57462 84814 0.5330 +57462 203259 0.4250 +57464 63978 0.6810 +57464 79567 0.4010 +57464 80143 0.9980 +57464 80342 0.9940 +57464 83992 0.9970 +57464 85369 0.9970 +57464 128025 0.4290 +57465 57526 0.5140 +57465 57575 0.4350 +57465 57582 0.6470 +57465 57707 0.4340 +57465 79751 0.6140 +57465 83874 0.4800 +57465 93627 0.4430 +57465 112476 0.5860 +57465 117531 0.4640 +57465 125336 0.4100 +57465 128637 0.4650 +57465 140838 0.6950 +57465 154881 0.4050 +57466 58490 0.6110 +57466 58506 0.6670 +57466 64282 0.5440 +57466 65260 0.5700 +57466 79871 0.4270 +57466 81035 0.4200 +57466 84186 0.4670 +57466 84337 0.4820 +57466 124245 0.4100 +57466 203547 0.5720 +57466 392517 0.5070 +57466 100101267 0.4580 +57467 58529 0.4390 +57467 60484 0.4060 +57467 79728 0.8070 +57467 84752 0.4910 +57467 129642 0.4580 +57467 131377 0.4670 +57467 132949 0.8000 +57467 142689 0.4450 +57467 200539 0.4480 +57467 340359 0.4160 +57467 347731 0.4210 +57467 619373 0.4070 +57468 57555 0.4400 +57468 57835 0.4550 +57468 65125 0.8250 +57468 65266 0.7840 +57468 65267 0.8870 +57468 65268 0.6660 +57468 81831 0.8130 +57468 85313 0.4190 +57468 89846 0.4680 +57468 140679 0.7070 +57468 146713 0.5220 +57469 79631 0.4330 +57469 79668 0.5070 +57469 83549 0.4150 +57469 84076 0.6560 +57469 84879 0.4440 +57469 85476 0.4430 +57469 92483 0.4640 +57469 126321 0.4440 +57469 130752 0.4640 +57469 137362 0.4430 +57469 137682 0.5840 +57469 146802 0.4500 +57469 160287 0.4640 +57469 170261 0.4060 +57469 246243 0.7580 +57469 340390 0.5850 +57469 387332 0.4810 +57469 387712 0.6630 +57469 388931 0.4440 +57469 399949 0.4810 +57469 401190 0.4290 +57469 441531 0.4720 +57469 649238 0.6140 +57470 57505 0.4340 +57470 60678 0.4460 +57470 63875 0.4530 +57470 64793 0.4090 +57470 64969 0.4240 +57470 64983 0.4180 +57470 65003 0.4060 +57470 65005 0.4480 +57470 65008 0.5060 +57470 79587 0.4220 +57470 79630 0.4650 +57470 80222 0.4500 +57470 83732 0.9540 +57470 84172 0.5230 +57470 84285 0.9260 +57470 84464 0.4470 +57470 84926 0.4210 +57470 91893 0.9360 +57470 92399 0.4070 +57470 92935 0.5000 +57470 116832 0.4170 +57470 120892 0.5100 +57470 123263 0.4280 +57470 123283 0.4390 +57470 124454 0.4480 +57470 138428 0.4070 +57470 148870 0.5190 +57470 221154 0.4150 +57470 255308 0.4660 +57470 339448 0.5090 +57470 347487 0.4520 +57470 728689 0.5370 +57470 100287482 0.4520 +57471 60484 0.7120 +57471 63875 0.4290 +57471 64979 0.4360 +57471 64983 0.4290 +57471 65003 0.4200 +57471 79152 0.6210 +57471 79590 0.4120 +57471 80303 0.4880 +57471 84337 0.4770 +57471 84919 0.4020 +57471 90850 0.4180 +57471 93377 0.8440 +57471 94274 0.5060 +57471 116448 0.4060 +57471 118442 0.4120 +57471 219927 0.4290 +57471 222865 0.5610 +57471 245927 0.4190 +57471 349149 0.4090 +57471 100526842 0.4420 +57472 63925 0.9000 +57472 79577 0.8250 +57472 80153 0.5020 +57472 85456 0.9650 +57472 93624 0.4280 +57472 114034 0.4700 +57472 115795 0.4820 +57472 154197 0.4800 +57472 158787 0.6750 +57472 167227 0.6600 +57472 197135 0.6000 +57472 219988 0.9980 +57472 246175 0.9990 +57472 254170 0.4310 +57472 339345 0.7790 +57472 340719 0.7270 +57472 390748 0.5630 +57473 57504 0.5620 +57473 57585 0.5610 +57473 60685 0.4640 +57473 79081 0.5720 +57473 79724 0.4230 +57473 80764 0.5200 +57473 84131 0.4130 +57473 84619 0.5140 +57473 114825 0.4230 +57473 140700 0.5610 +57473 148479 0.4420 +57473 171177 0.5900 +57473 728763 0.4900 +57474 79707 0.4120 +57474 84224 0.5890 +57474 84279 0.5710 +57474 85359 0.4890 +57474 119559 0.4120 +57474 136242 0.4490 +57474 200634 0.4440 +57474 284349 0.4600 +57474 343099 0.4300 +57474 388552 0.4630 +57474 728661 0.4290 +57475 136288 0.4480 +57475 220963 0.4580 +57476 57655 0.6600 +57476 65983 0.7500 +57476 84253 0.4620 +57476 84897 0.4210 +57476 114879 0.5320 +57476 114883 0.4040 +57476 118987 0.4180 +57476 138199 0.4240 +57476 196996 0.4770 +57476 340784 0.4390 +57477 57619 0.4100 +57477 64397 0.4880 +57477 79849 0.4360 +57477 89790 0.4090 +57477 92104 0.4670 +57477 129530 0.5070 +57477 134549 0.4360 +57477 139189 0.4110 +57477 140831 0.4220 +57477 150696 0.5450 +57477 353274 0.4250 +57477 389857 0.5070 +57477 641339 0.4290 +57478 64072 0.4250 +57478 64965 0.4160 +57478 65003 0.4110 +57478 84749 0.4680 +57478 93953 0.4100 +57478 121601 0.4090 +57478 143282 0.4090 +57478 219927 0.4160 +57478 284716 0.4020 +57478 338440 0.4180 +57478 374462 0.5480 +57478 100271715 0.5470 +57479 58506 0.8020 +57479 60385 0.4040 +57479 79447 0.4870 +57479 84922 0.4420 +57479 255783 0.4300 +57479 256329 0.4440 +57479 387755 0.4230 +57479 100131017 0.5100 +57479 100142659 0.5100 +57479 100507290 0.7110 +57480 57621 0.4510 +57480 79624 0.4720 +57480 79666 0.4180 +57480 79739 0.4300 +57480 80129 0.4470 +57480 83887 0.4670 +57480 92106 0.4710 +57480 170712 0.4530 +57480 202374 0.4550 +57480 254428 0.4140 +57480 344758 0.4410 +57480 387509 0.4330 +57480 389434 0.5670 +57480 101929926 0.5710 +57481 59353 0.4150 +57481 85417 0.4580 +57481 124936 0.5540 +57481 128821 0.4200 +57481 146779 0.4450 +57481 158584 0.4150 +57481 158798 0.4600 +57481 340547 0.4220 +57481 375316 0.4020 +57482 114804 0.5470 +57482 132946 0.4170 +57482 159091 0.4010 +57482 169044 0.4590 +57482 729991 0.4010 +57484 64777 0.5130 +57484 132299 0.4620 +57484 138065 0.5660 +57484 171024 0.5090 +57484 201798 0.5300 +57484 201895 0.4970 +57484 221687 0.4670 +57484 285533 0.5140 +57486 59272 0.4270 +57486 79258 0.5150 +57486 91419 0.4680 +57486 104909134 0.5550 +57488 57620 0.4760 +57488 57655 0.4080 +57488 79139 0.6510 +57488 81671 0.4570 +57488 83850 0.9090 +57488 84502 0.4140 +57488 84876 0.5320 +57488 90231 0.4830 +57488 114879 0.5400 +57488 114882 0.6360 +57488 153364 0.4930 +57488 157922 0.4430 +57488 196996 0.4870 +57489 64770 0.6430 +57489 83890 0.4050 +57489 83983 0.4430 +57489 91544 0.4360 +57489 153733 0.4430 +57489 219938 0.4070 +57489 220082 0.4690 +57489 374618 0.4320 +57489 374768 0.4120 +57489 442444 0.4090 +57491 57763 0.7300 +57491 64005 0.6320 +57491 139135 0.4690 +57492 57634 0.4530 +57492 57680 0.6840 +57492 58508 0.7570 +57492 64324 0.4460 +57492 64919 0.9660 +57492 65980 0.9890 +57492 79084 0.5390 +57492 79718 0.4080 +57492 79923 0.4050 +57492 84159 0.5280 +57492 90780 0.4910 +57492 114803 0.4340 +57492 144321 0.4010 +57492 163786 0.4020 +57492 196528 0.9970 +57492 255877 0.5120 +57492 653604 0.5460 +57492 728378 0.6910 +57492 729515 0.4110 +57493 83605 0.8470 +57493 92922 0.4700 +57493 118461 0.4330 +57493 140706 0.6180 +57494 83445 0.4910 +57494 158584 0.4710 +57494 162417 0.6080 +57494 284716 0.9030 +57494 339983 0.9630 +57494 389434 0.4030 +57495 80129 0.4120 +57495 92370 0.5120 +57495 94134 0.4060 +57495 139411 0.4410 +57495 146705 0.4300 +57495 147949 0.4190 +57495 152110 0.4220 +57495 152940 0.4370 +57495 165215 0.5150 +57495 256380 0.4470 +57495 340120 0.4020 +57495 399949 0.4840 +57496 60468 0.5400 +57496 64783 0.7490 +57496 65998 0.6750 +57496 114805 0.4060 +57496 131096 0.4160 +57496 137735 0.5330 +57496 221692 0.9440 +57496 254170 0.4100 +57496 284358 0.4710 +57496 402569 0.4570 +57497 57622 0.6380 +57497 64084 0.4050 +57497 78999 0.5170 +57497 84628 0.4130 +57497 116443 0.4150 +57497 152404 0.4320 +57497 222643 0.6110 +57497 254263 0.4510 +57497 283659 0.5680 +57497 347731 0.5410 +57497 647024 0.5310 +57498 64837 0.4240 +57498 81609 0.7320 +57498 85378 0.4060 +57501 57697 0.4770 +57501 80352 0.5230 +57501 84661 0.4960 +57501 84893 0.4030 +57501 128153 0.6800 +57501 136332 0.6840 +57501 200162 0.6700 +57501 200373 0.5910 +57501 255349 0.4450 +57501 286464 0.4250 +57501 100506049 0.5430 +57502 57555 0.7040 +57502 57669 0.4990 +57502 57680 0.4850 +57502 58512 0.7370 +57502 64326 0.6060 +57502 64359 0.6410 +57502 79816 0.4970 +57502 83473 0.4060 +57502 83943 0.4780 +57502 84063 0.4610 +57502 84631 0.5090 +57502 85358 0.9950 +57502 90665 0.4380 +57502 94030 0.5010 +57502 114798 0.5590 +57502 139411 0.8190 +57502 140679 0.4860 +57502 143425 0.4100 +57502 147381 0.4260 +57502 148281 0.4320 +57502 152330 0.7910 +57502 266727 0.6130 +57502 285195 0.6800 +57502 347730 0.5440 +57502 375323 0.4990 +57504 64426 0.6550 +57504 64919 0.5490 +57504 79101 0.4050 +57504 79685 0.5090 +57504 79874 0.4100 +57504 79923 0.4610 +57504 80012 0.5060 +57504 84232 0.5000 +57504 84619 0.4950 +57504 84733 0.4990 +57504 84942 0.5270 +57504 85235 0.4010 +57504 85236 0.4990 +57504 85509 0.8800 +57504 92815 0.4410 +57504 94239 0.5040 +57504 125997 0.5230 +57504 128312 0.4990 +57504 168850 0.4220 +57504 203259 0.5870 +57504 221613 0.4010 +57504 255626 0.4990 +57504 317772 0.4060 +57504 440689 0.4030 +57504 474382 0.5010 +57504 653604 0.6200 +57505 57647 0.5180 +57505 60528 0.5520 +57505 60558 0.5090 +57505 63977 0.4460 +57505 64682 0.8340 +57505 65080 0.4220 +57505 65993 0.4260 +57505 79587 0.8240 +57505 79731 0.8450 +57505 79979 0.4260 +57505 80222 0.9100 +57505 80324 0.4970 +57505 83990 0.6450 +57505 84126 0.6530 +57505 84172 0.4100 +57505 84273 0.4300 +57505 84464 0.4920 +57505 84618 0.4090 +57505 84705 0.5500 +57505 84720 0.4760 +57505 84955 0.6240 +57505 85476 0.6320 +57505 87178 0.4300 +57505 91574 0.5350 +57505 92399 0.6400 +57505 92935 0.8530 +57505 93974 0.6960 +57505 115416 0.4200 +57505 118672 0.4340 +57505 121642 0.4280 +57505 123263 0.5650 +57505 123283 0.8700 +57505 124454 0.9270 +57505 128308 0.4430 +57505 129563 0.4440 +57505 146059 0.7820 +57505 202500 0.4560 +57505 221785 0.5300 +57505 375061 0.5770 +57505 440275 0.5140 +57505 728689 0.4050 +57505 101927367 0.4350 +57506 57558 0.5850 +57506 58484 0.4790 +57506 59272 0.4740 +57506 60489 0.4530 +57506 64127 0.9950 +57506 64135 0.9990 +57506 64170 0.4060 +57506 64221 0.4220 +57506 64750 0.4690 +57506 78990 0.4450 +57506 79132 0.9980 +57506 79594 0.7940 +57506 79671 0.9990 +57506 79792 0.4080 +57506 79939 0.7720 +57506 80143 0.6400 +57506 80149 0.4090 +57506 80196 0.5200 +57506 80342 0.4010 +57506 80762 0.4250 +57506 81030 0.4960 +57506 81844 0.6480 +57506 83737 0.8890 +57506 84166 0.9130 +57506 84282 0.8500 +57506 84557 0.5890 +57506 84749 0.5630 +57506 85363 0.4630 +57506 89122 0.7450 +57506 89870 0.4950 +57506 90550 0.4180 +57506 90933 0.7180 +57506 91543 0.6240 +57506 91662 0.4780 +57506 114548 0.9990 +57506 114609 0.4950 +57506 115004 0.8030 +57506 115650 0.5210 +57506 115992 0.4120 +57506 117854 0.4270 +57506 135644 0.5100 +57506 136991 0.4120 +57506 142678 0.4720 +57506 148022 0.8670 +57506 153364 0.4080 +57506 163702 0.6160 +57506 170506 0.5320 +57506 171389 0.8680 +57506 192111 0.4460 +57506 197358 0.4410 +57506 201292 0.4430 +57506 204801 0.4800 +57506 221302 0.4350 +57506 256987 0.4120 +57506 282616 0.5700 +57506 282617 0.5420 +57506 282618 0.6000 +57506 286827 0.5290 +57506 338323 0.5150 +57506 338376 0.4340 +57506 340061 0.9990 +57506 400668 0.4280 +57506 442862 0.4180 +57506 445372 0.4180 +57507 58155 0.4560 +57507 64116 0.4470 +57507 65983 0.5460 +57507 79047 0.4800 +57507 89866 0.5470 +57507 90874 0.4070 +57507 124152 0.4300 +57507 129787 0.4800 +57507 132789 0.5410 +57507 134359 0.5770 +57507 146227 0.4590 +57507 158038 0.5170 +57507 202151 0.4560 +57507 203523 0.4010 +57507 219402 0.5940 +57507 253559 0.5100 +57507 257194 0.4180 +57507 343472 0.4180 +57507 390598 0.4470 +57507 100127206 0.4180 +57507 100526835 0.5700 +57507 100996939 0.5030 +57508 58505 0.4740 +57508 63897 0.5840 +57508 64859 0.5690 +57508 65123 0.9990 +57508 79034 0.9260 +57508 79035 0.5230 +57508 79637 0.4270 +57508 79665 0.4180 +57508 79728 0.5370 +57508 80789 0.9990 +57508 81556 0.9650 +57508 83693 0.4680 +57508 84276 0.4290 +57508 92105 0.9960 +57508 124773 0.5840 +57508 130733 0.4300 +57508 196074 0.4800 +57508 200765 0.5320 +57508 201562 0.4030 +57508 203522 0.7210 +57508 253017 0.4180 +57508 390980 0.4990 +57508 441519 0.6040 +57508 441521 0.6040 +57508 541465 0.6040 +57508 541466 0.6040 +57508 728911 0.6040 +57508 101060211 0.6040 +57508 102723631 0.6040 +57508 102723680 0.6040 +57508 102723737 0.6040 +57509 64115 0.4670 +57509 80380 0.7200 +57509 80381 0.5060 +57509 83449 0.5700 +57509 84868 0.8170 +57509 94025 0.4090 +57509 115004 0.4180 +57509 132851 0.4900 +57509 151888 0.4720 +57509 168400 0.4470 +57509 169355 0.4330 +57509 201633 0.7830 +57509 203190 0.6590 +57509 255520 0.5540 +57509 317761 0.4490 +57509 378708 0.5430 +57509 399474 0.5410 +57510 57679 0.5040 +57510 57727 0.4140 +57510 60528 0.4810 +57510 64328 0.7120 +57510 65083 0.5510 +57510 79711 0.7130 +57510 79727 0.5220 +57510 84172 0.5910 +57510 84220 0.4010 +57510 84946 0.4260 +57510 124454 0.4680 +57510 129563 0.4020 +57510 143689 0.6310 +57510 167227 0.9290 +57510 192669 0.8860 +57510 192670 0.8920 +57510 221421 0.4220 +57510 283383 0.5330 +57510 389421 0.5060 +57510 402569 0.6820 +57510 653489 0.4060 +57510 729540 0.4010 +57510 100526737 0.4080 +57511 57589 0.6940 +57511 58485 0.5120 +57511 60412 0.5510 +57511 60561 0.6390 +57511 63908 0.5920 +57511 63943 0.4240 +57511 65082 0.4390 +57511 79086 0.6730 +57511 79571 0.5730 +57511 80006 0.4500 +57511 83452 0.6310 +57511 83548 0.9990 +57511 84062 0.4590 +57511 84236 0.4540 +57511 84516 0.5110 +57511 84826 0.4120 +57511 85477 0.5010 +57511 90196 0.5890 +57511 91949 0.9990 +57511 93661 0.5180 +57511 126208 0.4030 +57511 132612 0.4430 +57511 140735 0.5130 +57511 143187 0.8220 +57511 146456 0.4340 +57511 149371 0.5260 +57511 200312 0.6950 +57511 339122 0.6020 +57511 347517 0.6520 +57512 165829 0.6760 +57512 222545 0.7710 +57512 245972 0.4490 +57512 390212 0.5240 +57512 401190 0.5430 +57513 116064 0.4030 +57513 133482 0.4400 +57513 283208 0.4400 +57514 57572 0.7000 +57514 58480 0.6080 +57514 63901 0.4160 +57514 84218 0.4890 +57514 91010 0.4560 +57514 91801 0.4030 +57514 285203 0.6800 +57514 344558 0.4790 +57515 79065 0.4840 +57515 79664 0.4160 +57515 146705 0.4180 +57515 246175 0.6740 +57515 285605 0.4110 +57519 58488 0.5080 +57519 58499 0.4290 +57519 80765 0.4930 +57519 84936 0.4300 +57519 134429 0.4390 +57519 144132 0.5010 +57519 147323 0.5430 +57519 150709 0.4230 +57519 158431 0.4590 +57519 254359 0.4090 +57519 255252 0.4790 +57519 339105 0.4760 +57519 399909 0.4500 +57520 57540 0.4590 +57520 57561 0.6060 +57520 57578 0.4010 +57520 57688 0.4850 +57520 63891 0.5470 +57520 63893 0.4820 +57520 79698 0.4670 +57520 80762 0.4880 +57520 91947 0.5180 +57520 92714 0.7150 +57520 154796 0.4510 +57520 154810 0.8090 +57521 57580 0.6250 +57521 57600 0.4040 +57521 57787 0.4100 +57521 58528 0.9990 +57521 60673 0.9730 +57521 64121 0.9990 +57521 64223 0.9990 +57521 64422 0.5510 +57521 64798 0.9990 +57521 79092 0.5670 +57521 79109 0.9960 +57521 79726 0.6760 +57521 79899 0.9400 +57521 81631 0.5490 +57521 81929 0.6520 +57521 83667 0.7020 +57521 84219 0.7750 +57521 84232 0.6100 +57521 84335 0.9990 +57521 84557 0.4500 +57521 84938 0.4620 +57521 84955 0.6240 +57521 84971 0.4590 +57521 85451 0.4620 +57521 89848 0.4980 +57521 90423 0.5010 +57521 92335 0.4140 +57521 96459 0.4430 +57521 114907 0.4060 +57521 115201 0.4270 +57521 120103 0.7020 +57521 120892 0.4110 +57521 121268 0.4990 +57521 124599 0.4690 +57521 127124 0.4990 +57521 137902 0.4120 +57521 143686 0.5870 +57521 144577 0.5950 +57521 153129 0.7780 +57521 154743 0.6320 +57521 155066 0.4990 +57521 200186 0.4020 +57521 200576 0.4230 +57521 201163 0.5720 +57521 206358 0.4930 +57521 245972 0.5350 +57521 245973 0.4990 +57521 253260 0.9990 +57521 389541 0.9990 +57521 392517 0.5120 +57521 440275 0.5900 +57521 645545 0.4110 +57521 652968 0.6740 +57521 729438 0.5450 +57522 80746 0.4760 +57522 93953 0.4090 +57522 128239 0.4360 +57522 148362 0.4070 +57523 57645 0.4380 +57523 57697 0.5320 +57523 58504 0.5690 +57523 63920 0.4410 +57523 79605 0.4420 +57523 79725 0.4200 +57523 84547 0.4570 +57523 124751 0.6260 +57523 140685 0.5250 +57523 170261 0.4260 +57523 284422 0.6590 +57523 643641 0.4370 +57523 643866 0.5820 +57524 57576 0.5530 +57524 58512 0.4530 +57524 91860 0.4480 +57524 94030 0.4250 +57524 133482 0.4630 +57524 146310 0.4050 +57524 163688 0.4490 +57524 283870 0.4490 +57524 345651 0.4410 +57526 57582 0.6620 +57526 79751 0.8470 +57526 79868 0.4550 +57526 84679 0.5370 +57526 85358 0.5460 +57526 112476 0.6580 +57526 144165 0.4160 +57526 170302 0.8240 +57528 65243 0.6100 +57528 81555 0.4130 +57528 84280 0.4520 +57528 115207 0.4900 +57528 146212 0.4750 +57528 147040 0.4150 +57528 222658 0.5110 +57528 386617 0.4540 +57528 653567 0.4480 +57529 57697 0.5320 +57529 81575 0.4240 +57529 84187 0.6310 +57529 84247 0.8100 +57529 85364 0.4500 +57529 91851 0.4370 +57529 134549 0.4980 +57529 162979 0.4300 +57529 203430 0.4610 +57529 256714 0.5560 +57529 340526 0.4400 +57529 340595 0.7160 +57529 389643 0.5410 +57529 441457 0.6690 +57530 57662 0.5090 +57530 64398 0.6770 +57530 84952 0.5380 +57530 90952 0.4540 +57530 91862 0.5440 +57530 92359 0.4270 +57530 93643 0.4330 +57530 144100 0.8840 +57530 153090 0.7670 +57530 153562 0.9890 +57530 154796 0.4750 +57530 100506658 0.9950 +57531 57535 0.9420 +57531 197131 0.4240 +57531 221322 0.4630 +57532 57551 0.6300 +57532 60313 0.4800 +57532 80149 0.4040 +57532 80232 0.5410 +57532 84503 0.4800 +57532 84553 0.4990 +57532 114991 0.4050 +57532 124801 0.8360 +57532 149041 0.8810 +57532 149986 0.5810 +57532 160335 0.4610 +57532 196441 0.4070 +57532 386682 0.4240 +57532 440023 0.4200 +57532 728343 0.4280 +57533 58485 0.6380 +57533 60684 0.8220 +57533 64786 0.5410 +57533 79735 0.5990 +57533 80006 0.8370 +57533 83452 0.5310 +57533 112574 0.5300 +57533 122553 0.7460 +57533 126003 0.7900 +57533 128637 0.5290 +57533 161514 0.4930 +57533 285533 0.4180 +57534 57669 0.6530 +57534 64770 0.6910 +57534 79722 0.4890 +57534 91860 0.4020 +57534 117178 0.4800 +57534 142678 0.6050 +57534 163688 0.4020 +57534 171586 0.4140 +57534 257218 0.4760 +57534 388585 0.4790 +57535 341799 0.4040 +57535 401546 0.4630 +57535 100529215 0.4300 +57536 64770 0.7120 +57536 79871 0.9990 +57536 81573 0.4120 +57536 83666 0.4260 +57536 84619 0.5910 +57536 117144 0.4730 +57536 121053 0.6650 +57536 124783 0.5660 +57536 126868 0.4310 +57536 145282 0.9990 +57536 205327 0.4120 +57536 375190 0.5170 +57536 389177 0.4820 +57536 643803 0.5780 +57536 100526740 0.4100 +57537 84448 0.4550 +57537 84722 0.6700 +57537 112936 0.4700 +57537 143471 0.4100 +57538 80216 0.4800 +57538 84033 0.4100 +57538 84942 0.4180 +57538 118490 0.4400 +57538 140803 0.4320 +57538 165904 0.4790 +57538 282996 0.4020 +57539 57545 0.4830 +57539 57560 0.9620 +57539 57728 0.9990 +57539 63916 0.9830 +57539 64792 0.8930 +57539 79363 0.4440 +57539 79659 0.7550 +57539 79767 0.9930 +57539 79809 0.9990 +57539 79989 0.9030 +57539 80005 0.4550 +57539 80173 0.8320 +57539 80184 0.4290 +57539 84284 0.4220 +57539 84466 0.5080 +57539 89891 0.7500 +57539 90410 0.8820 +57539 91147 0.5040 +57539 92104 0.7520 +57539 112752 0.9990 +57539 117155 0.4200 +57539 119710 0.8410 +57539 129880 0.4990 +57539 130502 0.7390 +57539 132884 0.6760 +57539 150737 0.8940 +57539 153241 0.4510 +57539 199223 0.8050 +57539 200162 0.4500 +57539 200894 0.4580 +57539 219931 0.4200 +57539 255758 0.5690 +57539 259232 0.4200 +57539 285641 0.5040 +57539 347732 0.4200 +57539 729830 0.4400 +57540 84976 0.4730 +57540 85455 0.4240 +57540 90134 0.4040 +57540 139411 0.6440 +57540 164153 0.4150 +57540 442213 0.6190 +57541 79183 0.4120 +57541 83719 0.4270 +57541 84168 0.4240 +57541 84271 0.5300 +57541 147658 0.4020 +57541 155061 0.7740 +57541 389677 0.4870 +57541 100289678 0.7960 +57542 57563 0.9200 +57542 59349 0.9250 +57542 60685 0.4580 +57542 64410 0.9250 +57542 79023 0.4230 +57542 79722 0.4770 +57542 79734 0.9000 +57542 80196 0.5050 +57542 83795 0.4010 +57542 83892 0.7350 +57542 84078 0.9110 +57542 84259 0.5170 +57542 84541 0.9030 +57542 84861 0.9170 +57542 89890 0.9150 +57542 90135 0.4670 +57542 90293 0.9250 +57542 131377 0.7860 +57542 140459 0.5440 +57542 148113 0.4470 +57542 149951 0.5070 +57542 150684 0.5000 +57542 150726 0.4550 +57542 154881 0.4110 +57542 170622 0.5010 +57542 200845 0.4240 +57542 252983 0.6230 +57542 253980 0.9000 +57542 339745 0.9030 +57542 390594 0.4540 +57542 553115 0.7290 +57544 79815 0.4760 +57544 80020 0.9180 +57544 80821 0.5350 +57544 125972 0.4060 +57544 159091 0.4160 +57544 252983 0.4700 +57544 283554 0.6710 +57545 57553 0.5340 +57545 57560 0.4840 +57545 57728 0.5280 +57545 65062 0.8800 +57545 65250 0.7220 +57545 79583 0.9940 +57545 79598 0.6090 +57545 79600 0.9980 +57545 79659 0.5240 +57545 79809 0.6320 +57545 79848 0.6060 +57545 79867 0.9960 +57545 80184 0.9960 +57545 80323 0.4460 +57545 80776 0.9970 +57545 84314 0.9290 +57545 84902 0.4280 +57545 90060 0.5360 +57545 90410 0.4080 +57545 91147 0.9980 +57545 91754 0.5430 +57545 94137 0.4620 +57545 95681 0.6590 +57545 117177 0.6710 +57545 129880 0.5230 +57545 132320 0.4110 +57545 153241 0.4250 +57545 157657 0.4110 +57545 166379 0.4140 +57545 167691 0.5120 +57545 200728 0.9560 +57545 200894 0.9320 +57545 203286 0.4310 +57545 219854 0.5990 +57545 261734 0.8600 +57545 283232 0.5230 +57545 284086 0.5550 +57545 374654 0.5900 +57546 80335 0.4080 +57546 90550 0.4120 +57546 93550 0.4260 +57546 123263 0.4580 +57546 148252 0.4960 +57546 152926 0.4930 +57546 160760 0.4860 +57546 164153 0.4050 +57546 387787 0.4670 +57547 440585 0.5140 +57549 84966 0.6010 +57549 92558 0.4030 +57549 222171 0.4320 +57551 60485 0.5260 +57551 92335 0.4560 +57551 92597 0.4020 +57551 285527 0.4150 +57551 100505385 0.7300 +57552 79041 0.4910 +57552 79728 0.4880 +57552 83451 0.5380 +57553 64780 0.4340 +57553 81876 0.5680 +57553 91584 0.6300 +57553 92369 0.4410 +57553 114327 0.4160 +57553 375298 0.4310 +57553 376267 0.4740 +57554 58512 0.4390 +57554 60484 0.4290 +57554 80728 0.4510 +57554 84107 0.4270 +57554 84687 0.5170 +57554 85358 0.6790 +57554 94032 0.4670 +57554 129684 0.4080 +57554 144402 0.4180 +57554 163590 0.4460 +57554 257194 0.4290 +57555 57669 0.4990 +57555 57680 0.4320 +57555 57689 0.4130 +57555 58512 0.7090 +57555 64101 0.5380 +57555 64359 0.6680 +57555 78999 0.4630 +57555 80059 0.4650 +57555 81609 0.4190 +57555 84063 0.4990 +57555 84631 0.4550 +57555 85358 0.9350 +57555 85360 0.4780 +57555 93664 0.4370 +57555 94030 0.6090 +57555 116840 0.4690 +57555 133584 0.4560 +57555 140679 0.6400 +57555 142689 0.4080 +57555 147381 0.4750 +57555 266727 0.9940 +57555 284217 0.7250 +57555 347730 0.6250 +57555 347731 0.4520 +57555 374768 0.4170 +57555 375323 0.9290 +57555 375612 0.9020 +57555 388135 0.6170 +57555 401494 0.4520 +57555 440073 0.5010 +57556 91584 0.9990 +57556 161145 0.4090 +57556 219902 0.4900 +57558 57599 0.6520 +57558 65018 0.4120 +57558 79155 0.5640 +57558 84749 0.7670 +57558 114803 0.4050 +57558 139562 0.4210 +57558 159195 0.4540 +57558 221302 0.5640 +57558 283219 0.5160 +57558 340061 0.5190 +57559 57663 0.4120 +57559 57695 0.4350 +57559 64708 0.4020 +57559 78990 0.4550 +57559 79184 0.6540 +57559 83473 0.5550 +57559 84142 0.4150 +57559 84954 0.6110 +57559 85021 0.6250 +57559 90268 0.4800 +57559 92552 0.4160 +57559 114803 0.6240 +57559 118932 0.6090 +57559 126119 0.5760 +57559 134510 0.4570 +57559 139562 0.4990 +57559 220213 0.4010 +57559 221302 0.9180 +57559 340156 0.4340 +57559 373509 0.4410 +57559 728689 0.4330 +57559 100652824 0.4120 +57560 57576 0.4750 +57560 57728 0.9550 +57560 64792 0.9900 +57560 79659 0.9710 +57560 79738 0.4030 +57560 79809 0.9250 +57560 79867 0.5790 +57560 79989 0.9900 +57560 80173 0.9950 +57560 80183 0.4710 +57560 80184 0.5800 +57560 89891 0.6900 +57560 90410 0.9970 +57560 91147 0.5430 +57560 92104 0.9770 +57560 112752 0.9120 +57560 129880 0.6670 +57560 132884 0.6000 +57560 150737 0.9960 +57560 153241 0.6080 +57560 164781 0.4160 +57560 167691 0.5130 +57560 199223 0.6480 +57560 200894 0.4650 +57560 252983 0.4080 +57560 255758 0.5850 +57560 283571 0.4460 +57560 286827 0.7570 +57560 342184 0.4340 +57561 64750 0.4520 +57561 78991 0.4280 +57561 83737 0.8210 +57561 116068 0.5490 +57561 404093 0.4500 +57562 64770 0.4110 +57562 65250 0.5560 +57562 85016 0.5270 +57562 85459 0.4280 +57562 90113 0.4150 +57562 145508 0.5090 +57562 151903 0.4330 +57562 152206 0.4570 +57562 253935 0.5590 +57562 343099 0.4810 +57562 375337 0.4990 +57562 100527963 0.5080 +57562 100532731 0.4200 +57563 59349 0.9070 +57563 64410 0.9090 +57563 79734 0.9090 +57563 80124 0.4470 +57563 80311 0.4110 +57563 80333 0.4370 +57563 83892 0.7230 +57563 84078 0.9100 +57563 84541 0.9060 +57563 84861 0.9100 +57563 89890 0.9120 +57563 90293 0.9140 +57563 114827 0.6680 +57563 131377 0.7540 +57563 133022 0.4520 +57563 149428 0.4800 +57563 170679 0.4720 +57563 253980 0.9000 +57563 339745 0.9130 +57563 553115 0.7290 +57565 64839 0.6180 +57565 80308 0.4260 +57565 90019 0.4400 +57565 114884 0.4090 +57565 140838 0.4550 +57565 283219 0.4590 +57567 64320 0.4320 +57567 65264 0.4390 +57567 201305 0.4320 +57567 284996 0.5290 +57567 643853 0.4910 +57568 65992 0.5670 +57568 79006 0.4180 +57568 79188 0.4040 +57568 84286 0.4250 +57568 84445 0.6340 +57568 88745 0.4930 +57568 89953 0.4150 +57568 91461 0.4470 +57568 122553 0.4280 +57568 146325 0.5750 +57568 161145 0.4330 +57568 166348 0.5230 +57568 170850 0.4620 +57568 200942 0.4970 +57568 253769 0.4210 +57568 339834 0.4540 +57568 375567 0.4440 +57568 100130988 0.4710 +57569 83446 0.4070 +57569 83468 0.4440 +57569 83732 0.4060 +57569 116984 0.4410 +57569 116985 0.4310 +57569 254065 0.9580 +57569 254552 0.4610 +57569 283927 0.5940 +57569 286256 0.4350 +57569 341032 0.4440 +57569 399947 0.4040 +57570 60487 0.7470 +57570 60528 0.5330 +57570 63899 0.6190 +57570 64118 0.5490 +57570 64172 0.6440 +57570 64216 0.4080 +57570 79072 0.4040 +57570 79691 0.5210 +57570 79693 0.6680 +57570 79736 0.4250 +57570 79922 0.4430 +57570 79979 0.4390 +57570 80308 0.6470 +57570 80324 0.7120 +57570 81890 0.5720 +57570 83480 0.6220 +57570 84128 0.4170 +57570 84154 0.4010 +57570 84705 0.5650 +57570 84881 0.4750 +57570 90353 0.6080 +57570 91419 0.4290 +57570 91801 0.5450 +57570 93587 0.8430 +57570 113179 0.7020 +57570 115708 0.7570 +57570 115939 0.4870 +57570 117246 0.5280 +57570 123263 0.4280 +57570 124454 0.4110 +57570 127253 0.8830 +57570 129450 0.6510 +57570 131965 0.4850 +57570 134637 0.5530 +57570 142940 0.6330 +57570 150962 0.5510 +57570 152992 0.5100 +57570 155368 0.4170 +57570 158234 0.7580 +57570 283767 0.4460 +57570 285367 0.4290 +57570 348180 0.4640 +57570 387338 0.5080 +57570 441250 0.4420 +57570 643699 0.4120 +57570 727909 0.4240 +57570 728047 0.4250 +57571 64428 0.4750 +57571 64582 0.4770 +57571 84612 0.4290 +57571 84735 0.9790 +57571 92558 0.4070 +57571 121260 0.5470 +57571 138199 0.9760 +57571 155038 0.4630 +57571 161145 0.4050 +57571 170954 0.5600 +57571 222171 0.4320 +57571 339896 0.9250 +57571 375607 0.4180 +57572 57647 0.5960 +57572 64285 0.4200 +57572 80005 0.4190 +57572 80821 0.5170 +57572 81704 0.8810 +57572 84859 0.8510 +57572 85440 0.4430 +57572 92597 0.5950 +57572 285203 0.7140 +57573 79846 0.4220 +57573 85449 0.4500 +57573 91949 0.4520 +57573 375190 0.4780 +57573 399823 0.4090 +57574 64844 0.4740 +57574 84447 0.4410 +57574 162333 0.5820 +57575 57582 0.5950 +57575 79751 0.8090 +57575 84679 0.4470 +57575 85358 0.4530 +57575 112476 0.5940 +57575 132321 0.4280 +57575 170302 0.6340 +57575 205428 0.8400 +57575 285195 0.4270 +57576 57728 0.5110 +57576 63971 0.6320 +57576 64130 0.4990 +57576 64792 0.4480 +57576 64837 0.6730 +57576 79659 0.5650 +57576 79809 0.4870 +57576 79989 0.7400 +57576 80173 0.4870 +57576 80184 0.4220 +57576 81565 0.6380 +57576 81930 0.7300 +57576 84643 0.6630 +57576 89839 0.4080 +57576 89953 0.4570 +57576 90410 0.5930 +57576 90990 0.7280 +57576 91860 0.4550 +57576 92104 0.4810 +57576 112752 0.4750 +57576 124602 0.6370 +57576 146909 0.5940 +57576 147700 0.5330 +57576 150737 0.6550 +57576 163688 0.4550 +57576 200894 0.5530 +57576 221458 0.5900 +57576 259266 0.5640 +57576 261734 0.6470 +57576 374654 0.6200 +57576 392509 0.5280 +57576 728343 0.4040 +57577 57639 0.4570 +57577 84708 0.4090 +57577 118663 0.4800 +57577 171484 0.6230 +57577 339145 0.4730 +57577 374286 0.5640 +57578 60592 0.4040 +57578 63982 0.4070 +57578 79809 0.4140 +57578 84216 0.4370 +57578 90050 0.4230 +57578 117155 0.4260 +57578 145741 0.7020 +57578 199223 0.4120 +57578 219931 0.4110 +57578 256356 0.4880 +57578 259232 0.9990 +57578 285175 0.9990 +57578 347732 0.4350 +57578 375323 0.4650 +57578 728215 0.9680 +57579 140701 0.4070 +57579 145773 0.4420 +57579 442319 0.4340 +57580 58480 0.4570 +57580 59345 0.9370 +57580 63916 0.4820 +57580 94235 0.9000 +57580 171177 0.4500 +57580 253260 0.6840 +57580 653361 0.4930 +57582 63982 0.4040 +57582 79751 0.6300 +57582 79868 0.4310 +57582 112476 0.6320 +57582 157855 0.4230 +57582 158067 0.4330 +57582 158135 0.4330 +57582 200844 0.4350 +57582 348980 0.4910 +57582 392399 0.4370 +57582 402381 0.4710 +57583 57720 0.4870 +57583 59344 0.4070 +57583 259230 0.5860 +57584 57636 0.5030 +57584 58490 0.4220 +57584 114800 0.5380 +57584 144165 0.7710 +57584 166336 0.5510 +57584 317762 0.5340 +57584 401251 0.4750 +57585 57621 0.4100 +57585 65990 0.5380 +57585 79081 0.6390 +57585 80764 0.5280 +57585 90861 0.5670 +57585 93624 0.4050 +57585 115939 0.4830 +57585 151987 0.4830 +57585 100288072 0.6510 +57586 83851 0.4160 +57586 115827 0.4670 +57586 341359 0.4830 +57587 64682 0.6190 +57587 79577 0.4380 +57587 84074 0.4240 +57587 92400 0.4630 +57587 119504 0.6390 +57587 123169 0.5050 +57587 137970 0.4250 +57587 148137 0.4180 +57587 441054 0.5240 +57587 101929355 0.5920 +57589 63908 0.5360 +57589 79571 0.5390 +57589 79608 0.4050 +57589 79956 0.6750 +57589 80006 0.4480 +57589 80380 0.4100 +57589 81876 0.4410 +57589 83452 0.9010 +57589 83548 0.8730 +57589 83871 0.4870 +57589 83889 0.4120 +57589 84084 0.5950 +57589 85442 0.7450 +57589 89781 0.4560 +57589 90196 0.7310 +57589 90871 0.5270 +57589 91949 0.7890 +57589 115426 0.4840 +57589 117177 0.4120 +57589 128637 0.4020 +57589 140775 0.7380 +57589 143187 0.5560 +57589 149466 0.4810 +57589 158358 0.7110 +57589 202018 0.4720 +57589 203228 0.7420 +57589 339122 0.6020 +57589 347517 0.5360 +57589 375743 0.5120 +57589 389541 0.9000 +57589 404636 0.5280 +57590 57705 0.5290 +57590 84455 0.4120 +57590 84955 0.6290 +57590 91300 0.4500 +57590 114908 0.6010 +57590 130340 0.6710 +57590 203259 0.4200 +57591 63826 0.6690 +57591 64577 0.4350 +57591 64783 0.9540 +57591 65985 0.4770 +57591 79611 0.4770 +57591 81603 0.6710 +57591 84263 0.8770 +57591 84532 0.4830 +57591 93649 0.8300 +57591 113451 0.5610 +57591 113675 0.6690 +57591 116285 0.4770 +57591 123876 0.4770 +57591 124359 0.4460 +57591 126133 0.4390 +57591 130013 0.4070 +57591 134510 0.4050 +57591 137872 0.9550 +57591 140862 0.4310 +57591 142680 0.4380 +57591 145501 0.4310 +57591 160428 0.4340 +57591 161882 0.5780 +57591 221692 0.8980 +57591 253175 0.4460 +57591 254042 0.5140 +57591 284358 0.4120 +57591 286205 0.5830 +57591 341392 0.4770 +57591 348158 0.4770 +57592 63893 0.7660 +57592 64061 0.7740 +57592 65123 0.9940 +57592 80232 0.6520 +57592 80789 0.9940 +57592 128611 0.4530 +57592 166647 0.4180 +57592 166863 0.4350 +57593 63976 0.5660 +57593 79813 0.4690 +57593 83857 0.8170 +57594 127343 0.4340 +57594 139324 0.4170 +57594 150572 0.4840 +57594 196513 0.4790 +57594 202333 0.4490 +57595 79849 0.4180 +57595 83742 0.4130 +57595 83860 0.5120 +57595 222484 0.4470 +57595 643418 0.5280 +57595 100506164 0.4720 +57597 58516 0.7800 +57597 90316 0.5990 +57599 57646 0.4480 +57599 57697 0.7620 +57599 57804 0.5080 +57599 64854 0.9990 +57599 64858 0.5190 +57599 79819 0.4060 +57599 79915 0.9730 +57599 80198 0.5860 +57599 80233 0.7370 +57599 81545 0.6420 +57599 81608 0.5820 +57599 83737 0.4710 +57599 83844 0.6430 +57599 83932 0.4700 +57599 83990 0.4800 +57599 84464 0.6650 +57599 84640 0.6870 +57599 91442 0.7430 +57599 91833 0.9990 +57599 114799 0.4330 +57599 114803 0.4530 +57599 115286 0.4510 +57599 123036 0.4610 +57599 126820 0.4110 +57599 127544 0.4270 +57599 146956 0.5730 +57599 152006 0.5210 +57599 160492 0.4340 +57599 197342 0.4870 +57599 199990 0.6450 +57599 201254 0.6330 +57599 219333 0.9990 +57599 221302 0.7100 +57599 338917 0.4140 +57599 373509 0.5590 +57599 378708 0.5920 +57599 548593 0.5980 +57599 653499 0.4150 +57600 58528 0.9590 +57600 60684 0.4200 +57600 64121 0.9970 +57600 79726 0.4940 +57600 81929 0.4750 +57600 84219 0.5020 +57600 96459 0.9960 +57600 140775 0.4740 +57600 144577 0.4160 +57600 152940 0.5100 +57600 153129 0.9350 +57600 201163 0.9990 +57600 245972 0.4340 +57600 245973 0.4900 +57600 389541 0.9540 +57600 652968 0.4340 +57602 57646 0.6750 +57602 79724 0.4290 +57602 79753 0.4070 +57602 84749 0.5630 +57602 84954 0.4230 +57602 90268 0.4040 +57602 90850 0.4180 +57602 126119 0.4690 +57602 130813 0.4310 +57602 201516 0.4460 +57602 201973 0.4580 +57602 221302 0.7970 +57604 60487 0.6450 +57604 81605 0.4350 +57604 81627 0.4260 +57604 90353 0.6500 +57604 91694 0.4510 +57604 91801 0.4200 +57604 157773 0.4530 +57604 286826 0.4860 +57605 79676 0.5100 +57605 114879 0.4750 +57605 114882 0.4320 +57606 84326 0.4780 +57606 124245 0.5600 +57606 125061 0.4270 +57606 152518 0.5490 +57606 201780 0.5650 +57606 285527 0.4770 +57606 339977 0.4250 +57608 64236 0.4300 +57608 84439 0.4410 +57608 90576 0.4390 +57608 260425 0.4230 +57608 285498 0.4520 +57609 57701 0.4940 +57609 57720 0.4460 +57609 60684 0.4570 +57609 63875 0.4720 +57609 65985 0.4480 +57609 79611 0.4480 +57609 79668 0.4590 +57609 79728 0.6550 +57609 84263 0.8070 +57609 84532 0.4510 +57609 84545 0.4710 +57609 84864 0.4390 +57609 85441 0.4280 +57609 91012 0.4280 +57609 116285 0.4430 +57609 118924 0.4180 +57609 120376 0.4020 +57609 121006 0.4080 +57609 123876 0.4430 +57609 132949 0.7320 +57609 154043 0.6200 +57609 219927 0.4720 +57609 283871 0.4320 +57609 341032 0.4320 +57609 341392 0.4430 +57609 348158 0.4430 +57609 349075 0.4840 +57609 389434 0.4660 +57610 63891 0.4050 +57610 63893 0.4390 +57610 64777 0.8540 +57610 64795 0.9770 +57610 79018 0.9900 +57610 79654 0.4480 +57610 80232 0.9950 +57610 80258 0.4220 +57610 83873 0.4180 +57610 84067 0.5300 +57610 112939 0.4620 +57610 133396 0.4050 +57610 144321 0.5980 +57610 146212 0.5010 +57610 203068 0.6230 +57610 219539 0.5250 +57610 282808 0.4310 +57611 79102 0.4280 +57611 80125 0.4820 +57611 84993 0.4700 +57611 222183 0.4370 +57611 342096 0.5070 +57613 127255 0.4790 +57613 144608 0.4390 +57613 541468 0.4970 +57614 63897 0.4230 +57614 79441 0.5200 +57614 92105 0.4690 +57614 201627 0.5040 +57614 399671 0.4230 +57614 643382 0.4180 +57615 79290 0.4180 +57615 170082 0.4390 +57615 171392 0.6390 +57615 317749 0.4010 +57615 337969 0.4470 +57615 340562 0.4390 +57615 344758 0.4270 +57615 653820 0.4100 +57615 730087 0.5550 +57616 84527 0.4520 +57616 85446 0.4170 +57616 147694 0.4580 +57616 151126 0.4690 +57616 152485 0.4570 +57616 161829 0.4320 +57616 197320 0.4530 +57616 340385 0.4520 +57616 342132 0.5010 +57616 347344 0.4280 +57616 349075 0.4320 +57617 63894 0.6620 +57617 64145 0.7380 +57617 64284 0.5570 +57617 64601 0.9990 +57617 65082 0.9990 +57617 79643 0.4240 +57617 83547 0.4720 +57617 84067 0.5990 +57617 84313 0.6730 +57617 84315 0.6500 +57617 90678 0.4420 +57617 91056 0.4370 +57617 124997 0.6160 +57617 127829 0.4010 +57617 143187 0.9690 +57617 162494 0.4370 +57617 203062 0.6670 +57617 203245 0.6620 +57617 221079 0.4340 +57617 221960 0.9440 +57617 285973 0.4890 +57617 338382 0.8670 +57619 57630 0.4710 +57619 59269 0.4020 +57619 65979 0.4010 +57619 79029 0.6530 +57619 79656 0.4260 +57619 134549 0.4190 +57619 157285 0.4330 +57619 200933 0.4310 +57619 340260 0.4190 +57619 341019 0.5260 +57620 79054 0.4150 +57620 80228 0.9990 +57620 84766 0.5630 +57620 84876 0.9990 +57620 91860 0.7070 +57620 93129 0.9990 +57620 153241 0.4540 +57620 159371 0.4810 +57620 163688 0.7000 +57620 375346 0.4630 +57621 57727 0.4490 +57621 79009 0.4560 +57621 79039 0.4290 +57621 79080 0.4160 +57621 79624 0.6430 +57621 80129 0.6170 +57621 80311 0.5130 +57621 81706 0.4050 +57621 85509 0.6930 +57621 254048 0.5650 +57622 57689 0.4560 +57622 78999 0.5460 +57622 81609 0.4550 +57622 84628 0.4160 +57622 168417 0.4020 +57622 254263 0.4390 +57622 345079 0.5570 +57622 347730 0.5250 +57623 64151 0.6480 +57623 85463 0.5430 +57623 201305 0.4600 +57623 254251 0.6380 +57623 284352 0.4060 +57624 79927 0.4240 +57624 80758 0.4070 +57624 118812 0.5030 +57624 222950 0.4860 +57626 79866 0.4490 +57626 440145 0.4030 +57628 57721 0.6530 +57628 64783 0.4100 +57628 80023 0.4450 +57628 80332 0.7870 +57628 80333 0.4830 +57628 84107 0.7310 +57628 91039 0.5460 +57628 92737 0.7140 +57628 93986 0.4830 +57628 94103 0.4950 +57628 114815 0.4430 +57628 140885 0.4520 +57628 152330 0.5740 +57628 163486 0.4070 +57628 387129 0.6630 +57628 402665 0.8930 +57628 554235 0.4450 +57630 64750 0.4520 +57630 79754 0.4100 +57630 84340 0.4110 +57630 114883 0.4130 +57630 153769 0.4100 +57630 171177 0.5760 +57630 202559 0.4260 +57630 203197 0.4220 +57630 284403 0.4330 +57630 751071 0.4520 +57631 81704 0.7760 +57631 84859 0.6430 +57631 85440 0.6480 +57631 92597 0.4820 +57631 130502 0.4650 +57631 131831 0.4230 +57631 154796 0.4780 +57631 340596 0.6110 +57633 57689 0.4710 +57633 64101 0.4760 +57633 79442 0.4150 +57633 79690 0.4510 +57633 285362 0.5280 +57634 57649 0.5210 +57634 57680 0.5750 +57634 57697 0.4240 +57634 58508 0.4650 +57634 64431 0.9300 +57634 64769 0.9940 +57634 79913 0.9430 +57634 79923 0.6230 +57634 80314 0.9760 +57634 80335 0.4050 +57634 81611 0.9920 +57634 83444 0.9210 +57634 84148 0.9340 +57634 84181 0.4270 +57634 84289 0.5290 +57634 84844 0.5310 +57634 85235 0.5080 +57634 90780 0.4910 +57634 92815 0.5080 +57634 93973 0.9500 +57634 94239 0.9470 +57634 125476 0.9500 +57634 128312 0.4480 +57634 139628 0.8370 +57634 151050 0.7370 +57634 221613 0.5080 +57634 221895 0.7840 +57634 255626 0.7560 +57634 283150 0.8430 +57634 283899 0.9140 +57634 284058 0.7630 +57634 317772 0.5110 +57634 339287 0.9400 +57634 345651 0.6720 +57634 440093 0.4610 +57634 440686 0.4600 +57634 474381 0.4220 +57634 653604 0.4630 +57634 100101267 0.5340 +57636 79714 0.5080 +57636 80725 0.5280 +57636 84215 0.5280 +57636 114800 0.6170 +57636 144165 0.6130 +57636 317762 0.6270 +57636 401251 0.6110 +57639 57697 0.5320 +57639 60494 0.5420 +57639 64446 0.4110 +57639 80127 0.4120 +57639 80217 0.4090 +57639 83450 0.4280 +57639 84229 0.5460 +57639 85452 0.5050 +57639 85478 0.6360 +57639 89876 0.4200 +57639 90506 0.4190 +57639 117177 0.6200 +57639 118491 0.5670 +57639 120935 0.5090 +57639 126075 0.5170 +57639 132671 0.5360 +57639 136895 0.5480 +57639 145508 0.4420 +57639 146845 0.5520 +57639 149465 0.4900 +57639 151112 0.5210 +57639 151827 0.5770 +57639 152206 0.4320 +57639 161502 0.5580 +57639 164592 0.4830 +57639 222967 0.5100 +57639 257236 0.6580 +57639 283726 0.4670 +57639 348807 0.5290 +57639 441054 0.5480 +57642 64175 0.6300 +57642 64798 0.4750 +57642 79608 0.4290 +57642 79642 0.4480 +57642 79709 0.5090 +57642 80724 0.4180 +57642 80781 0.4670 +57642 81578 0.5010 +57642 84570 0.5770 +57642 85301 0.5320 +57642 89866 0.4220 +57642 91522 0.6110 +57642 131873 0.5260 +57642 136227 0.6430 +57642 149111 0.4900 +57642 169044 0.5290 +57642 255631 0.5400 +57642 283208 0.5580 +57642 340267 0.5850 +57642 401265 0.4260 +57643 57688 0.5490 +57643 65249 0.5500 +57643 79699 0.5710 +57643 116138 0.5770 +57643 150684 0.5400 +57643 374920 0.4970 +57643 400224 0.5260 +57643 440561 0.5400 +57643 440590 0.5730 +57643 653619 0.5400 +57645 57648 0.4100 +57645 59349 0.4370 +57645 63920 0.4990 +57645 79441 0.4070 +57645 79605 0.4810 +57645 79725 0.4470 +57645 84449 0.4200 +57645 84547 0.4900 +57645 84948 0.5780 +57645 91151 0.5690 +57645 115704 0.5070 +57645 117143 0.4240 +57645 127687 0.4770 +57645 166815 0.4770 +57645 203245 0.5500 +57645 220359 0.5410 +57645 267002 0.5300 +57645 283254 0.4790 +57645 286676 0.4800 +57645 387597 0.5110 +57645 440699 0.5120 +57646 57663 0.5980 +57646 57695 0.6670 +57646 63967 0.9000 +57646 64750 0.4760 +57646 64854 0.6260 +57646 78990 0.5930 +57646 79184 0.4360 +57646 83549 0.4730 +57646 83737 0.5570 +57646 83844 0.4790 +57646 84101 0.5290 +57646 84132 0.5140 +57646 84669 0.5500 +57646 84675 0.4690 +57646 84749 0.5310 +57646 85015 0.4940 +57646 92552 0.5380 +57646 114803 0.4820 +57646 126119 0.5130 +57646 139562 0.5000 +57646 158880 0.5330 +57646 166348 0.4480 +57646 219333 0.5240 +57646 221302 0.6930 +57646 257218 0.5570 +57646 373509 0.4960 +57646 377630 0.5440 +57646 728373 0.4430 +57646 112441434 0.4760 +57647 57696 0.4810 +57647 57703 0.5080 +57647 57707 0.4300 +57647 64434 0.6720 +57647 64794 0.5180 +57647 65083 0.9750 +57647 79009 0.4010 +57647 79039 0.7180 +57647 79050 0.9780 +57647 79159 0.4840 +57647 79446 0.5320 +57647 79707 0.5440 +57647 79954 0.4220 +57647 80005 0.5970 +57647 81704 0.5710 +57647 81887 0.5540 +57647 83479 0.4740 +57647 84128 0.9370 +57647 84135 0.9380 +57647 84365 0.4580 +57647 84916 0.9520 +57647 84946 0.5240 +57647 85395 0.5190 +57647 85440 0.7180 +57647 88745 0.6180 +57647 91039 0.4690 +57647 91582 0.8070 +57647 92856 0.9250 +57647 117246 0.5850 +57647 118460 0.5200 +57647 139818 0.8920 +57647 165545 0.5650 +57647 317781 0.4430 +57648 94134 0.4570 +57648 374286 0.4050 +57649 57798 0.9650 +57649 58513 0.5450 +57649 58516 0.9080 +57649 64426 0.9130 +57649 65125 0.4770 +57649 79142 0.5280 +57649 79595 0.6560 +57649 79685 0.6930 +57649 79966 0.4610 +57649 80205 0.4130 +57649 80312 0.5400 +57649 81794 0.4440 +57649 83860 0.4750 +57649 83933 0.4340 +57649 84312 0.8770 +57649 84942 0.5370 +57649 93621 0.5260 +57649 124925 0.5980 +57649 140738 0.4790 +57649 200162 0.4440 +57649 257236 0.4040 +57650 64151 0.5860 +57650 79915 0.4090 +57650 79923 0.4250 +57650 81930 0.4830 +57650 83540 0.5500 +57650 151246 0.4460 +57650 151648 0.5160 +57650 157313 0.5060 +57650 157570 0.4530 +57650 171023 0.4400 +57650 220134 0.5190 +57650 221150 0.4420 +57650 259266 0.4210 +57654 63977 0.4470 +57654 79568 0.4730 +57654 79577 0.8060 +57654 79661 0.4130 +57654 80349 0.8670 +57654 84337 0.6560 +57654 84851 0.4360 +57654 123169 0.8480 +57654 143872 0.4190 +57654 200558 0.4270 +57654 404672 0.5070 +57654 100533467 0.4590 +57655 58488 0.4300 +57655 65983 0.5730 +57655 79171 0.5250 +57655 83850 0.5400 +57655 114879 0.4610 +57655 114882 0.4120 +57655 120425 0.4130 +57655 253959 0.4130 +57655 337876 0.4070 +57657 79929 0.4250 +57657 94104 0.4310 +57657 118881 0.4170 +57657 259232 0.4650 +57657 348980 0.9340 +57658 81631 0.5100 +57658 83719 0.4060 +57658 84557 0.5100 +57658 440738 0.5320 +57659 85014 0.4440 +57659 115426 0.6610 +57659 253461 0.6100 +57659 346171 0.4750 +57661 58506 0.5240 +57661 60528 0.4260 +57661 83648 0.5780 +57661 283232 0.4360 +57661 286046 0.4140 +57661 440093 0.5080 +57661 440686 0.5090 +57661 653604 0.5080 +57662 57664 0.4390 +57662 60684 0.5000 +57662 79003 0.4200 +57662 79969 0.4220 +57662 84952 0.6690 +57662 121441 0.5260 +57662 126695 0.4090 +57662 144100 0.9930 +57662 347733 0.9060 +57662 388591 0.4420 +57663 63967 0.6330 +57663 84101 0.5060 +57663 84196 0.4760 +57663 84640 0.4300 +57663 85015 0.4340 +57663 114026 0.7200 +57663 114803 0.4280 +57663 115004 0.4280 +57663 126119 0.4870 +57663 139562 0.6490 +57663 159195 0.4180 +57663 220213 0.4300 +57663 221302 0.5450 +57664 59338 0.5140 +57664 59339 0.4080 +57664 59349 0.8150 +57664 65977 0.4960 +57664 91775 0.4720 +57664 144097 0.4350 +57664 157378 0.5070 +57664 255061 0.4350 +57665 57795 0.4180 +57665 64220 0.4590 +57665 64577 0.4200 +57665 79078 0.4120 +57665 83875 0.4380 +57665 112812 0.4680 +57665 121214 0.6350 +57665 132949 0.4030 +57665 195814 0.4180 +57666 64319 0.4110 +57666 84333 0.7450 +57666 115795 0.4180 +57666 388419 0.4090 +57666 390437 0.4920 +57669 57703 0.4140 +57669 64359 0.8540 +57669 64398 0.8450 +57669 79134 0.4740 +57669 80205 0.4650 +57669 91368 0.4910 +57669 92359 0.8710 +57669 259282 0.4260 +57669 286204 0.8980 +57670 65998 0.5970 +57670 80853 0.5120 +57670 127707 0.4110 +57670 283297 0.4530 +57670 346007 0.4660 +57673 65986 0.4250 +57673 79656 0.4230 +57673 84816 0.4400 +57673 138151 0.4650 +57673 147495 0.4070 +57673 100506658 0.4450 +57674 64108 0.7520 +57674 64135 0.4770 +57674 79132 0.4210 +57674 83597 0.6280 +57674 83666 0.6220 +57674 84181 0.4100 +57674 84955 0.6190 +57674 85441 0.5030 +57674 91543 0.4490 +57674 91544 0.5600 +57674 94240 0.4560 +57674 115361 0.4050 +57674 125336 0.4540 +57674 129607 0.4660 +57674 135892 0.4290 +57674 151636 0.4950 +57674 152185 0.4070 +57674 165631 0.6770 +57674 171222 0.8090 +57674 219285 0.5450 +57674 284129 0.6850 +57674 643669 0.4390 +57674 100272147 0.4530 +57677 79744 0.4620 +57677 79896 0.4100 +57677 84911 0.5690 +57677 149473 0.4090 +57677 100289635 0.5570 +57678 60481 0.6010 +57678 63924 0.5060 +57678 64900 0.4130 +57678 79071 0.6500 +57678 79728 0.5710 +57678 79888 0.5870 +57678 79966 0.8580 +57678 80339 0.5300 +57678 84188 0.4700 +57678 84649 0.7280 +57678 84803 0.9950 +57678 116255 0.4610 +57678 129642 0.8350 +57678 132001 0.4120 +57678 137964 0.9920 +57678 150763 0.9190 +57678 151393 0.4020 +57678 154141 0.7660 +57678 158833 0.4620 +57678 253558 0.8410 +57678 254531 0.5540 +57678 374354 0.4020 +57678 376497 0.5130 +57678 400961 0.4020 +57679 60412 0.5040 +57679 60491 0.6740 +57679 64283 0.4160 +57679 66008 0.6960 +57679 79890 0.7000 +57679 80208 0.7980 +57679 81492 0.4740 +57679 81554 0.4570 +57679 84315 0.5140 +57679 123606 0.4100 +57679 126432 0.5820 +57679 132204 0.5490 +57679 203228 0.8190 +57679 221960 0.5240 +57679 259173 0.6380 +57679 345895 0.4740 +57679 347730 0.4030 +57679 400916 0.7240 +57679 402569 0.4880 +57680 57697 0.4470 +57680 58508 0.5210 +57680 64324 0.6690 +57680 79577 0.5070 +57680 79718 0.4300 +57680 79813 0.5510 +57680 79843 0.7600 +57680 80205 0.4490 +57680 80816 0.4580 +57680 81887 0.9140 +57680 83473 0.7100 +57680 83992 0.4330 +57680 84148 0.9160 +57680 84181 0.5890 +57680 84661 0.7150 +57680 84901 0.4570 +57680 85358 0.6640 +57680 85456 0.4790 +57680 123169 0.4690 +57680 124245 0.4350 +57680 124944 0.9000 +57680 125476 0.9180 +57680 140690 0.7020 +57680 147912 0.4410 +57680 253143 0.7920 +57680 253980 0.4390 +57680 254048 0.4010 +57680 254065 0.5070 +57680 284058 0.9260 +57680 285989 0.4500 +57680 387893 0.4250 +57680 440093 0.5860 +57680 440686 0.5840 +57680 442247 0.4080 +57680 653604 0.5920 +57680 100529209 0.5400 +57683 79903 0.4030 +57683 80726 0.4040 +57683 84502 0.4210 +57683 90987 0.4140 +57683 91833 0.4310 +57683 114788 0.4030 +57683 116969 0.4280 +57683 132320 0.4230 +57683 146434 0.5870 +57683 157285 0.4100 +57683 200008 0.4510 +57683 266812 0.4950 +57683 346171 0.4790 +57683 353274 0.5450 +57683 374393 0.4320 +57683 493860 0.4580 +57683 100101490 0.6000 +57684 90316 0.4420 +57684 140831 0.4110 +57684 283337 0.4130 +57685 57828 0.5400 +57685 59283 0.5400 +57685 59284 0.5550 +57685 59285 0.5450 +57685 63941 0.4780 +57685 79820 0.5730 +57685 83852 0.4120 +57685 84447 0.4060 +57685 84455 0.4270 +57685 91304 0.4750 +57685 93589 0.6460 +57685 117144 0.5770 +57685 117155 0.6620 +57685 148581 0.4080 +57685 162387 0.5380 +57685 221935 0.4010 +57685 246329 0.5580 +57685 257044 0.5430 +57685 257062 0.5430 +57685 284371 0.5420 +57685 285588 0.5400 +57685 337867 0.4520 +57685 340393 0.5400 +57685 347732 0.6620 +57685 378807 0.5770 +57685 100130348 0.5400 +57685 100131755 0.5060 +57687 84263 0.5360 +57687 207063 0.4060 +57687 283927 0.4390 +57687 645974 0.4130 +57687 100130958 0.4980 +57688 65249 0.5560 +57688 79699 0.5760 +57688 116138 0.5680 +57688 150684 0.5400 +57688 440561 0.5400 +57688 440590 0.5630 +57688 653619 0.5400 +57689 84059 0.6720 +57689 84628 0.9990 +57689 90249 0.4340 +57689 118429 0.4790 +57689 124590 0.6680 +57689 137970 0.4850 +57689 145581 0.4180 +57689 169166 0.4030 +57689 347730 0.5730 +57691 63920 0.4090 +57691 81833 0.4560 +57692 79677 0.4920 +57692 126272 0.7070 +57692 197370 0.6600 +57692 285782 0.4070 +57692 286053 0.4750 +57692 493861 0.4390 +57693 64782 0.4320 +57693 84811 0.4570 +57693 727924 0.5070 +57693 105369274 0.5070 +57695 78990 0.4130 +57695 79184 0.4660 +57695 81620 0.6860 +57695 84196 0.5290 +57695 84942 0.5100 +57695 85015 0.4230 +57695 114803 0.4090 +57695 126119 0.4450 +57695 132660 0.4090 +57695 139562 0.4310 +57695 144699 0.4860 +57695 159195 0.4320 +57695 220213 0.4240 +57695 221302 0.6240 +57695 377630 0.5920 +57696 60625 0.5810 +57696 64216 0.6540 +57696 64318 0.9620 +57696 64434 0.6440 +57696 64782 0.4300 +57696 64794 0.7690 +57696 65083 0.4200 +57696 65095 0.4870 +57696 79002 0.5270 +57696 79009 0.5340 +57696 79039 0.8910 +57696 79159 0.9620 +57696 79665 0.5200 +57696 79707 0.4240 +57696 79954 0.6840 +57696 80011 0.5020 +57696 80135 0.5820 +57696 81875 0.4970 +57696 83448 0.4370 +57696 83479 0.4730 +57696 83608 0.4080 +57696 83732 0.5550 +57696 83743 0.6200 +57696 84154 0.8450 +57696 84172 0.4950 +57696 84271 0.6210 +57696 84294 0.5640 +57696 84365 0.9620 +57696 84549 0.5880 +57696 84916 0.6160 +57696 84946 0.6690 +57696 85476 0.4270 +57696 87178 0.5570 +57696 88745 0.4870 +57696 90423 0.4780 +57696 90957 0.4090 +57696 92856 0.4990 +57696 113251 0.5140 +57696 115708 0.8350 +57696 116966 0.4500 +57696 117246 0.9840 +57696 124245 0.4560 +57696 129563 0.5720 +57696 142940 0.5680 +57696 146212 0.6400 +57696 170506 0.4710 +57696 200916 0.4420 +57696 203069 0.4160 +57696 221078 0.9410 +57696 285855 0.6590 +57696 317781 0.4940 +57696 387129 0.6370 +57696 692312 0.4540 +57696 100526842 0.4580 +57696 102157402 0.4100 +57697 57818 0.5320 +57697 60561 0.5130 +57697 63940 0.5320 +57697 63967 0.5650 +57697 63979 0.7150 +57697 64112 0.5320 +57697 64135 0.6060 +57697 64421 0.4730 +57697 64858 0.8060 +57697 79039 0.4270 +57697 79132 0.5990 +57697 79412 0.8790 +57697 79621 0.4040 +57697 79677 0.7650 +57697 79728 0.9400 +57697 79731 0.4520 +57697 79915 0.8140 +57697 79991 0.4220 +57697 80010 0.9990 +57697 80119 0.7950 +57697 80129 0.4190 +57697 80152 0.4540 +57697 80198 0.9940 +57697 80205 0.4320 +57697 80233 0.9990 +57697 80832 0.5330 +57697 80833 0.5320 +57697 81575 0.5320 +57697 81857 0.5320 +57697 83932 0.5670 +57697 83990 0.9690 +57697 83999 0.8790 +57697 84057 0.5520 +57697 84072 0.4030 +57697 84083 0.8350 +57697 84126 0.9550 +57697 84142 0.5130 +57697 84181 0.4240 +57697 84247 0.5320 +57697 84250 0.4950 +57697 84464 0.9380 +57697 84515 0.5760 +57697 84893 0.9900 +57697 85365 0.6270 +57697 90957 0.4940 +57697 91442 0.9990 +57697 92579 0.5320 +57697 92797 0.6390 +57697 93426 0.4090 +57697 112885 0.4190 +57697 113510 0.6010 +57697 114821 0.6400 +57697 114824 0.5320 +57697 116028 0.9990 +57697 116447 0.5120 +57697 124751 0.5320 +57697 124773 0.4190 +57697 127550 0.5320 +57697 145508 0.4930 +57697 145957 0.5320 +57697 146956 0.8630 +57697 147664 0.5320 +57697 158401 0.5090 +57697 163786 0.4880 +57697 164045 0.6860 +57697 170261 0.5320 +57697 197342 0.8070 +57697 199990 0.9990 +57697 201254 0.9990 +57697 201973 0.5260 +57697 203430 0.5320 +57697 219621 0.5320 +57697 246243 0.5350 +57697 254394 0.5710 +57697 254528 0.9630 +57697 257218 0.7090 +57697 284098 0.5120 +57697 286053 0.7210 +57697 340526 0.5320 +57697 340595 0.5320 +57697 348654 0.8200 +57697 353497 0.7620 +57697 375748 0.6240 +57697 378708 0.9990 +57697 387103 0.4890 +57697 387521 0.4650 +57697 387522 0.4650 +57697 388015 0.5320 +57697 405754 0.5320 +57697 440138 0.5060 +57697 441518 0.5320 +57697 548593 0.8710 +57697 644974 0.5120 +57697 100271846 0.5320 +57697 100288413 0.5320 +57697 100526739 0.9190 +57697 100533467 0.7180 +57697 101929989 0.5320 +57697 110806277 0.5320 +57698 80114 0.5880 +57698 84708 0.7600 +57698 85451 0.4380 +57698 114825 0.4160 +57698 222484 0.4170 +57698 259217 0.5550 +57698 286343 0.5070 +57699 83988 0.4920 +57699 114134 0.4240 +57699 115207 0.4370 +57699 147381 0.4250 +57699 284695 0.4740 +57700 64400 0.5420 +57700 84066 0.4580 +57700 84067 0.4740 +57700 84376 0.7840 +57700 84734 0.5600 +57700 142940 0.5840 +57700 143162 0.4100 +57700 220108 0.4850 +57700 619279 0.4450 +57700 646174 0.4320 +57700 729747 0.4180 +57700 729830 0.5110 +57701 64794 0.4790 +57701 84070 0.4770 +57701 89910 0.5820 +57701 137886 0.5310 +57701 150590 0.4460 +57701 221786 0.4470 +57703 57819 0.9230 +57703 58509 0.8580 +57703 59286 0.4500 +57703 60625 0.6620 +57703 64848 0.4640 +57703 65008 0.4380 +57703 65109 0.9060 +57703 65110 0.5370 +57703 79005 0.8010 +57703 79446 0.8710 +57703 79576 0.8870 +57703 79631 0.6930 +57703 79637 0.9220 +57703 79665 0.4930 +57703 79706 0.8730 +57703 79753 0.9980 +57703 80011 0.8040 +57703 81576 0.4340 +57703 81608 0.4050 +57703 83443 0.9920 +57703 83938 0.5690 +57703 84060 0.8100 +57703 84186 0.5410 +57703 84216 0.4110 +57703 84316 0.4690 +57703 84811 0.9980 +57703 84844 0.9930 +57703 84950 0.9510 +57703 84967 0.4550 +57703 85313 0.5610 +57703 85476 0.6740 +57703 96764 0.7900 +57703 114799 0.4680 +57703 116541 0.4720 +57703 123099 0.4040 +57703 126259 0.4690 +57703 143884 0.6830 +57703 147650 0.4690 +57703 151903 0.8010 +57703 153396 0.4640 +57703 153527 0.9480 +57703 154007 0.7210 +57703 158521 0.4390 +57703 163859 0.8140 +57703 164045 0.8210 +57703 166348 0.4120 +57703 170506 0.4300 +57703 171482 0.4140 +57703 199746 0.4990 +57703 220074 0.5690 +57703 222183 0.8230 +57703 345062 0.4420 +57703 100534599 0.9930 +57704 64781 0.9440 +57704 65055 0.4760 +57704 79152 0.6530 +57704 79603 0.9250 +57704 80055 0.4480 +57704 80208 0.6370 +57704 80821 0.6340 +57704 81537 0.9160 +57704 81833 0.4880 +57704 83893 0.4730 +57704 84725 0.4090 +57704 91012 0.9290 +57704 91574 0.5060 +57704 113612 0.5710 +57704 118813 0.5460 +57704 123099 0.9260 +57704 123606 0.4750 +57704 125981 0.9360 +57704 130367 0.9150 +57704 137492 0.5350 +57704 166929 0.9370 +57704 170680 0.4090 +57704 204219 0.9300 +57704 221421 0.4470 +57704 253782 0.9300 +57704 259230 0.9260 +57704 283417 0.4980 +57704 339221 0.9220 +57704 340075 0.4150 +57704 340485 0.9350 +57704 692094 0.9520 +57705 64098 0.4360 +57705 64135 0.5210 +57705 64410 0.4140 +57705 65258 0.4300 +57705 79856 0.5600 +57705 80231 0.4350 +57705 84174 0.4560 +57705 91433 0.4940 +57705 115825 0.5870 +57705 117289 0.4640 +57705 127068 0.4090 +57705 196513 0.4010 +57705 200312 0.4050 +57705 219972 0.4270 +57705 474354 0.7270 +57706 63892 0.6430 +57706 64083 0.4060 +57706 79958 0.5010 +57706 83874 0.4540 +57706 84187 0.4440 +57706 84467 0.6230 +57706 84909 0.7370 +57706 140609 0.6840 +57706 163486 0.8190 +57706 252969 0.5530 +57706 286204 0.7070 +57706 286749 0.4640 +57706 400120 0.4120 +57706 414918 0.4120 +57707 58504 0.4560 +57707 90423 0.5510 +57707 112611 0.4660 +57707 127124 0.5080 +57707 128977 0.4420 +57707 155066 0.5420 +57707 163882 0.5510 +57707 245972 0.5550 +57707 245973 0.6260 +57707 317762 0.4220 +57707 401647 0.4950 +57707 440400 0.9560 +57707 101927581 0.4960 +57708 79901 0.7390 +57708 84159 0.6450 +57708 90806 0.4720 +57708 157769 0.4260 +57708 166968 0.4490 +57708 255626 0.4490 +57708 388272 0.7350 +57708 100532731 0.4640 +57709 157724 0.4780 +57709 200916 0.4390 +57709 257629 0.4140 +57710 63939 0.6950 +57710 64895 0.5770 +57710 79707 0.4530 +57710 80335 0.8320 +57710 81608 0.8280 +57710 115701 0.4110 +57710 121006 0.4060 +57710 136157 0.4750 +57710 140893 0.4370 +57710 143506 0.4750 +57710 196120 0.4750 +57710 374786 0.4150 +57710 390031 0.4750 +57710 390033 0.4750 +57710 441584 0.4750 +57710 643988 0.4750 +57710 100507050 0.4110 +57711 58477 0.4060 +57711 84911 0.4070 +57711 112703 0.4770 +57711 147694 0.4450 +57713 63893 0.4860 +57713 64093 0.6270 +57713 79960 0.6630 +57713 266812 0.4180 +57713 440093 0.5340 +57713 440686 0.5350 +57713 653604 0.5340 +57715 100287441 0.4470 +57716 79026 0.9410 +57716 79628 0.5230 +57716 81846 0.5400 +57716 168002 0.4070 +57716 199731 0.4010 +57717 65217 0.4120 +57718 93487 0.4010 +57718 135293 0.4290 +57718 144347 0.4410 +57718 151987 0.7900 +57718 222553 0.4860 +57718 282973 0.4470 +57718 344758 0.4240 +57719 64802 0.4050 +57719 81577 0.4990 +57719 114879 0.4450 +57719 114882 0.4390 +57719 118461 0.5270 +57719 196996 0.4150 +57719 203859 0.4590 +57719 388419 0.5190 +57719 644100 0.4960 +57720 80045 0.4830 +57720 84910 0.4480 +57720 91750 0.4130 +57720 115330 0.6650 +57720 130074 0.6310 +57720 131601 0.5360 +57720 283554 0.5190 +57720 342371 0.5170 +57720 345193 0.5910 +57721 63899 0.5360 +57721 63935 0.6080 +57721 64761 0.4200 +57721 64783 0.9990 +57721 64848 0.9310 +57721 64863 0.9920 +57721 79066 0.9960 +57721 79068 0.9390 +57721 79074 0.4630 +57721 79577 0.6400 +57721 79664 0.6370 +57721 79730 0.4040 +57721 79828 0.5250 +57721 79830 0.4650 +57721 79872 0.9990 +57721 79923 0.4040 +57721 80324 0.4100 +57721 91746 0.9530 +57721 91801 0.5510 +57721 115708 0.4250 +57721 116835 0.4090 +57721 120534 0.5130 +57721 131965 0.5650 +57721 196074 0.4370 +57721 221078 0.5000 +57721 221120 0.5980 +57721 253943 0.9360 +57721 259217 0.4090 +57721 285282 0.5380 +57721 339175 0.4800 +57721 387338 0.5040 +57721 440093 0.6850 +57721 440686 0.6850 +57721 653604 0.7730 +57721 100526737 0.4380 +57722 58986 0.4530 +57722 81556 0.4860 +57722 84628 0.4300 +57722 84640 0.4510 +57722 114088 0.4500 +57722 126147 0.5500 +57722 134145 0.4580 +57722 150084 0.4440 +57722 374946 0.5470 +57724 60673 0.5930 +57724 64422 0.6060 +57724 79065 0.5280 +57724 79443 0.4760 +57724 80208 0.5460 +57724 81671 0.6670 +57724 83547 0.4710 +57724 83734 0.4120 +57724 84557 0.5210 +57724 115201 0.4050 +57724 128637 0.4030 +57724 203547 0.4090 +57724 440026 0.4270 +57724 440738 0.4090 +57727 64405 0.5140 +57727 79716 0.4520 +57727 79902 0.6800 +57727 80232 0.4250 +57727 81929 0.6650 +57727 84220 0.4170 +57727 84811 0.4760 +57727 128602 0.4520 +57727 171017 0.4440 +57727 376497 0.4230 +57727 653489 0.4210 +57727 729540 0.4170 +57728 64792 0.8950 +57728 65062 0.4510 +57728 65250 0.4060 +57728 79583 0.4540 +57728 79600 0.5240 +57728 79659 0.7730 +57728 79809 0.9990 +57728 79867 0.4630 +57728 79925 0.4940 +57728 79989 0.9030 +57728 80008 0.5050 +57728 80173 0.8440 +57728 80184 0.6810 +57728 80217 0.5570 +57728 80776 0.4670 +57728 83894 0.5570 +57728 84071 0.4600 +57728 84074 0.5470 +57728 84284 0.4220 +57728 89891 0.7560 +57728 90410 0.8450 +57728 91147 0.6530 +57728 91754 0.4220 +57728 92104 0.7330 +57728 92482 0.4330 +57728 112752 0.9990 +57728 114327 0.4130 +57728 118491 0.4730 +57728 119710 0.9220 +57728 122481 0.4890 +57728 129880 0.6680 +57728 132884 0.6140 +57728 146177 0.4510 +57728 146754 0.4880 +57728 150737 0.8490 +57728 153241 0.6110 +57728 199223 0.8530 +57728 200894 0.5500 +57728 203286 0.4900 +57728 255758 0.6270 +57728 261734 0.5890 +57728 284086 0.4710 +57728 374407 0.4330 +57728 401024 0.5190 +57730 81871 0.4760 +57730 81873 0.4600 +57730 84874 0.4400 +57730 90485 0.4120 +57730 136319 0.4450 +57730 136991 0.4710 +57730 142689 0.4430 +57730 150771 0.4090 +57730 151313 0.4760 +57730 161823 0.4090 +57730 283767 0.4330 +57730 375248 0.9830 +57730 378951 0.4050 +57730 386674 0.5090 +57730 400986 0.8960 +57731 60484 0.6920 +57731 63827 0.6860 +57731 63908 0.5590 +57731 81565 0.5630 +57731 91860 0.5150 +57731 140731 0.4730 +57731 163688 0.5160 +57731 166752 0.5010 +57731 199731 0.4130 +57731 342035 0.8070 +57731 642574 0.4730 +57732 114798 0.4770 +57732 166863 0.6900 +57732 339500 0.6730 +57732 344558 0.4920 +57732 388962 0.5710 +57758 64399 0.4150 +57758 79191 0.4240 +57758 84976 0.6220 +57758 85455 0.5690 +57758 91653 0.5080 +57761 64326 0.9030 +57761 79094 0.9660 +57761 79718 0.4260 +57761 79924 0.4660 +57761 80023 0.4210 +57761 80205 0.4040 +57761 83667 0.5640 +57761 83729 0.4730 +57761 83931 0.8850 +57761 85441 0.4650 +57761 96764 0.4290 +57761 134266 0.4650 +57761 160428 0.4180 +57761 200315 0.4540 +57761 259217 0.4140 +57761 347862 0.6530 +57761 440275 0.5070 +57763 83987 0.9800 +57763 84135 0.4090 +57763 90874 0.4500 +57763 142685 0.4990 +57763 157567 0.5150 +57763 253650 0.4020 +57763 284338 0.8260 +57763 728780 0.4020 +57786 91801 0.4490 +57786 133482 0.5120 +57786 153241 0.4790 +57786 286075 0.4630 +57787 79598 0.4480 +57787 80097 0.9000 +57787 85378 0.9020 +57787 114548 0.6450 +57787 114791 0.9000 +57787 116986 0.4430 +57787 117177 0.5500 +57787 282991 0.9050 +57787 388552 0.6130 +57787 440145 0.9000 +57787 653784 0.7200 +57794 57819 0.5150 +57794 58517 0.8690 +57794 64682 0.4510 +57794 64852 0.4780 +57794 79171 0.6540 +57794 79706 0.4760 +57794 79939 0.4470 +57794 80774 0.4240 +57794 81857 0.4420 +57794 84276 0.4120 +57794 84936 0.4370 +57794 84991 0.9960 +57794 90324 0.4280 +57794 91647 0.4070 +57794 116540 0.4320 +57794 124245 0.4240 +57794 126382 0.5520 +57794 136647 0.4280 +57794 148113 0.4270 +57794 319100 0.4470 +57794 374887 0.4330 +57794 554226 0.4870 +57795 84457 0.4090 +57795 339479 0.6760 +57795 342918 0.4460 +57798 64426 0.5480 +57798 79188 0.4010 +57798 79595 0.4290 +57798 79685 0.4370 +57798 84060 0.5270 +57798 84312 0.4740 +57798 84336 0.4330 +57798 84634 0.4330 +57798 84665 0.4320 +57798 125972 0.4740 +57798 257415 0.4880 +57798 282996 0.4690 +57799 64601 0.4570 +57799 64779 0.4920 +57799 84079 0.5240 +57799 84193 0.4050 +57799 84315 0.4120 +57799 84878 0.4110 +57799 92305 0.4710 +57799 170394 0.4370 +57799 196383 0.4380 +57799 282808 0.4830 +57801 84441 0.4120 +57801 441478 0.6320 +57804 63922 0.5040 +57804 79075 0.4990 +57804 124739 0.4990 +57805 60626 0.5320 +57805 65980 0.4410 +57805 79869 0.4870 +57805 80818 0.4050 +57805 84148 0.5210 +57805 84271 0.5200 +57805 84842 0.4080 +57805 85313 0.6510 +57805 85369 0.4650 +57805 91582 0.7840 +57805 115560 0.4050 +57805 148266 0.4220 +57805 171017 0.4420 +57805 284390 0.4050 +57805 284695 0.9800 +57805 541565 0.4710 +57817 64116 0.4450 +57817 79901 0.9260 +57817 80314 0.5240 +57817 84699 0.7130 +57817 112398 0.4800 +57817 112399 0.4800 +57817 113235 0.5110 +57817 114757 0.4790 +57817 116842 0.9190 +57817 148738 0.9830 +57817 151176 0.8400 +57817 164656 0.9620 +57817 285704 0.4010 +57817 337879 0.4950 +57817 440275 0.4290 +57817 100423062 0.9670 +57818 80201 0.9420 +57818 83440 0.9000 +57818 84076 0.8430 +57818 84504 0.4120 +57818 84666 0.6800 +57818 92579 0.9130 +57818 114131 0.4500 +57818 130589 0.9080 +57818 132158 0.8190 +57818 133522 0.5510 +57818 169026 0.7190 +57818 169792 0.4520 +57818 200186 0.5810 +57818 257202 0.4270 +57818 388125 0.4780 +57818 493869 0.4270 +57819 57827 0.4340 +57819 59286 0.9040 +57819 65003 0.4130 +57819 79171 0.9190 +57819 79650 0.5760 +57819 79753 0.9910 +57819 79797 0.5240 +57819 79833 0.4280 +57819 79912 0.6080 +57819 80153 0.8760 +57819 81844 0.6210 +57819 83443 0.9920 +57819 84316 0.8130 +57819 84811 0.9540 +57819 84844 0.9940 +57819 84950 0.9860 +57819 84967 0.8340 +57819 118460 0.5220 +57819 124801 0.7780 +57819 126259 0.6430 +57819 128240 0.4060 +57819 134353 0.6000 +57819 147650 0.6430 +57819 149986 0.5100 +57819 153527 0.9960 +57819 164045 0.5110 +57819 164781 0.6110 +57819 167227 0.8330 +57819 196513 0.6550 +57819 197135 0.8900 +57819 219988 0.9950 +57819 284325 0.9440 +57819 348793 0.6140 +57821 79817 0.4470 +57821 122416 0.4900 +57821 126823 0.4230 +57821 129881 0.4500 +57821 132141 0.5260 +57821 145864 0.6990 +57821 220004 0.5740 +57821 256435 0.4850 +57821 283349 0.4110 +57821 285349 0.6090 +57821 285676 0.4330 +57821 341799 0.4470 +57822 58495 0.4600 +57822 79755 0.7370 +57822 79977 0.4260 +57822 164832 0.4180 +57822 374897 0.4060 +57822 391123 0.4290 +57823 79810 0.4240 +57823 80321 0.4740 +57823 83416 0.6070 +57823 84868 0.4390 +57823 89790 0.4060 +57823 114836 0.5980 +57823 115362 0.4290 +57823 117157 0.8800 +57823 201633 0.5760 +57823 259197 0.6260 +57824 64005 0.5710 +57824 153770 0.5060 +57826 60678 0.4800 +57826 90167 0.4790 +57827 80741 0.5740 +57828 59283 0.7290 +57828 59284 0.7260 +57828 59285 0.7200 +57828 79820 0.9920 +57828 83893 0.4950 +57828 93589 0.7200 +57828 117144 0.9980 +57828 117155 0.9350 +57828 117166 0.4210 +57828 123872 0.4480 +57828 128229 0.6000 +57828 246329 0.7200 +57828 255220 0.4590 +57828 257044 0.9480 +57828 257062 0.9880 +57828 285588 0.9240 +57828 340393 0.7200 +57828 347732 0.9320 +57828 378807 0.9060 +57828 100130348 0.8560 +57828 100529257 0.4480 +57829 66037 0.4070 +57829 79816 0.4100 +57829 84898 0.5390 +57829 117144 0.4110 +57829 126206 0.6590 +57829 132243 0.5050 +57829 135935 0.6720 +57829 160335 0.4100 +57829 219990 0.4230 +57829 246777 0.4780 +57829 255649 0.5070 +57829 284359 0.5760 +57829 326340 0.5110 +57829 344018 0.7690 +57829 347688 0.4540 +57829 353238 0.4250 +57829 402381 0.5340 +57829 431705 0.6640 +57829 431707 0.4490 +57829 494551 0.4520 +57829 100526761 0.4060 +57830 387273 0.5830 +57830 440021 0.4670 +57830 440050 0.5350 +57834 64816 0.4410 +57834 80777 0.4920 +57834 113612 0.4560 +57834 120227 0.4090 +57834 132949 0.5170 +57835 65010 0.4740 +57835 83986 0.4500 +57835 115019 0.5440 +57835 115111 0.4620 +57835 389015 0.4790 +57862 120227 0.4610 +57862 159013 0.4010 +57863 199731 0.8620 +57863 253559 0.6310 +57864 64420 0.5190 +57864 64645 0.4270 +57864 84804 0.5460 +57864 124961 0.5070 +57864 219793 0.4650 +57864 392399 0.4030 +58155 80004 0.4640 +58155 80309 0.4260 +58155 83641 0.4320 +58155 84206 0.4270 +58155 84530 0.9270 +58155 89866 0.4090 +58155 134359 0.4130 +58155 219402 0.4470 +58157 79747 0.8500 +58157 80777 0.6390 +58157 84570 0.4220 +58157 85445 0.4520 +58157 90637 0.4260 +58157 93377 0.4020 +58157 114757 0.9750 +58157 130617 0.4260 +58157 158931 0.4160 +58157 257202 0.4880 +58157 493869 0.4880 +58157 642968 0.4240 +58158 121643 0.9440 +58158 338917 0.6530 +58158 343472 0.5130 +58158 388585 0.4930 +58189 94031 0.4690 +58189 259239 0.4110 +58190 60491 0.7680 +58190 79607 0.4020 +58190 83461 0.9270 +58190 127018 0.4350 +58190 134510 0.8210 +58191 63940 0.4250 +58191 84225 0.5710 +58191 90865 0.5890 +58191 284340 0.7230 +58191 414062 0.6260 +58472 60488 0.4340 +58472 64965 0.4060 +58472 64968 0.4160 +58472 64969 0.4520 +58472 64983 0.4180 +58472 65080 0.4250 +58472 79587 0.4990 +58472 84274 0.5170 +58472 84280 0.4240 +58472 84955 0.6190 +58472 112812 0.6090 +58472 730249 0.6250 +58472 100131187 0.5610 +58473 122046 0.5170 +58475 64231 0.7910 +58475 84689 0.6880 +58475 128346 0.4500 +58475 148022 0.4760 +58475 219972 0.4890 +58476 81671 0.9640 +58476 84557 0.6760 +58476 389493 0.6280 +58476 440738 0.6130 +58477 58505 0.4140 +58477 65992 0.6970 +58477 65993 0.4120 +58477 80279 0.5320 +58477 84447 0.5930 +58477 91445 0.4400 +58477 114803 0.4180 +58477 201595 0.4120 +58477 221079 0.4510 +58477 256281 0.4380 +58477 100526842 0.8150 +58478 64170 0.6300 +58478 79668 0.5850 +58478 79944 0.4160 +58478 84245 0.9750 +58478 84959 0.5610 +58478 117145 0.7110 +58478 146050 0.4010 +58478 153020 0.5050 +58478 441531 0.4660 +58480 79834 0.5520 +58480 80005 0.5190 +58480 81839 0.6660 +58480 84552 0.4290 +58480 84612 0.4010 +58480 91010 0.4310 +58480 115548 0.4620 +58480 140686 0.4610 +58480 142684 0.4180 +58480 257106 0.8490 +58484 59082 0.4810 +58484 64127 0.9210 +58484 64135 0.5270 +58484 64170 0.4720 +58484 64581 0.5450 +58484 79132 0.4590 +58484 79444 0.5000 +58484 79671 0.7560 +58484 79792 0.9430 +58484 80013 0.4780 +58484 84166 0.9560 +58484 90865 0.4230 +58484 91662 0.9960 +58484 114548 0.9990 +58484 114609 0.4200 +58484 115004 0.4300 +58484 115362 0.4490 +58484 126014 0.4240 +58484 126204 0.6930 +58484 126206 0.4020 +58484 140609 0.6210 +58484 147945 0.7540 +58484 171389 0.9990 +58484 197259 0.4490 +58484 197358 0.6670 +58484 199675 0.4680 +58484 199713 0.9950 +58484 201292 0.4010 +58484 260434 0.8370 +58484 284110 0.6420 +58484 338321 0.8910 +58484 338322 0.7680 +58484 338339 0.4530 +58484 494513 0.5060 +58485 60684 0.9950 +58485 79033 0.5340 +58485 79090 0.9990 +58485 79370 0.8010 +58485 80006 0.9920 +58485 81551 0.7830 +58485 81876 0.9370 +58485 83452 0.5910 +58485 83548 0.5600 +58485 84952 0.5550 +58485 85438 0.8000 +58485 89866 0.5250 +58485 117177 0.6040 +58485 122553 0.9970 +58485 126003 0.9990 +58485 134147 0.6080 +58485 163782 0.7780 +58485 167691 0.8400 +58485 285180 0.6100 +58485 339122 0.7600 +58485 390980 0.4360 +58485 401409 0.6370 +58485 100128327 0.9600 +58486 79830 0.4650 +58486 153657 0.4470 +58486 254552 0.4180 +58486 342892 0.4240 +58486 645864 0.4780 +58486 100101467 0.4420 +58486 100381270 0.4470 +58487 64848 0.4970 +58487 65083 0.4860 +58487 79707 0.8460 +58487 84699 0.4280 +58487 92856 0.5660 +58487 148327 0.7950 +58488 80765 0.9400 +58488 90627 0.4040 +58488 92745 0.8370 +58488 134429 0.9400 +58488 134526 0.5650 +58488 147323 0.9260 +58488 162282 0.4630 +58488 252983 0.4350 +58489 81926 0.5140 +58489 83451 0.4510 +58489 84945 0.4570 +58489 127018 0.5440 +58489 728741 0.5070 +58490 58506 0.5040 +58490 79657 0.5670 +58490 79871 0.9830 +58490 80125 0.4180 +58490 81488 0.8530 +58490 81556 0.4300 +58490 84172 0.5090 +58490 140459 0.6330 +58490 342371 0.5340 +58491 80108 0.4300 +58491 148823 0.4280 +58492 84276 0.4950 +58492 387032 0.5600 +58493 64859 0.9850 +58493 65082 0.4720 +58493 65123 0.9990 +58493 79035 0.9990 +58493 79098 0.4600 +58493 81556 0.5110 +58493 81786 0.4580 +58493 84197 0.4580 +58493 85359 0.5910 +58493 152815 0.4530 +58493 170463 0.4700 +58494 64689 0.6020 +58494 78987 0.4330 +58494 83700 0.9900 +58494 84612 0.5640 +58494 120425 0.5880 +58494 150084 0.9680 +58494 153562 0.4160 +58494 100506658 0.7340 +58495 79977 0.8320 +58495 80004 0.4310 +58495 126695 0.4660 +58495 140893 0.4990 +58496 58530 0.4750 +58496 65083 0.6210 +58496 79050 0.5740 +58496 80740 0.6960 +58496 80741 0.7320 +58496 83639 0.4180 +58496 84135 0.5730 +58496 85456 0.4460 +58496 88745 0.5720 +58496 92856 0.5780 +58496 137797 0.4790 +58496 147719 0.5120 +58496 160065 0.5710 +58496 161753 0.4260 +58496 171169 0.5410 +58496 221491 0.4210 +58496 259215 0.6110 +58496 283106 0.5880 +58496 284348 0.5740 +58496 390940 0.5990 +58496 399967 0.5820 +58496 399968 0.5750 +58496 100169851 0.6410 +58496 101928108 0.6580 +58497 85300 0.4810 +58497 85477 0.5360 +58497 139596 0.4030 +58497 149428 0.6030 +58497 374659 0.9000 +58498 79784 0.6940 +58498 83881 0.4100 +58498 84700 0.4080 +58498 85366 0.7670 +58498 91807 0.9450 +58498 93408 0.5560 +58498 93649 0.4240 +58498 103910 0.5250 +58498 140465 0.7490 +58498 140628 0.4210 +58498 149281 0.4370 +58498 150572 0.4180 +58498 340156 0.7380 +58498 343263 0.7160 +58499 79813 0.6780 +58499 84146 0.5610 +58499 89910 0.4240 +58499 138639 0.4060 +58499 158399 0.6920 +58499 161829 0.4680 +58499 219621 0.4250 +58499 254359 0.4320 +58500 65265 0.4520 +58500 79673 0.5540 +58500 84933 0.4070 +58500 84948 0.4260 +58500 147694 0.4710 +58500 256051 0.6530 +58500 283742 0.4120 +58500 374928 0.5070 +58503 90070 0.5840 +58503 653247 0.4190 +58503 653269 0.4400 +58503 727897 0.5050 +58503 728945 0.4110 +58504 80313 0.4470 +58504 84898 0.4420 +58504 89797 0.4040 +58504 90853 0.4150 +58504 140685 0.4390 +58504 143162 0.4480 +58504 284422 0.6220 +58504 400745 0.4110 +58505 79590 0.4210 +58505 84061 0.8820 +58505 90701 0.4640 +58505 116832 0.4370 +58505 140801 0.4360 +58505 200185 0.9910 +58505 200916 0.4610 +58505 201595 0.9440 +58505 254268 0.4290 +58505 285855 0.4820 +58505 387129 0.4270 +58505 100128731 0.9920 +58505 100526842 0.4290 +58505 100529097 0.4390 +58505 100529239 0.5560 +58506 64319 0.4090 +58506 81857 0.4640 +58506 84687 0.6340 +58506 112939 0.7870 +58506 283899 0.4780 +58506 100131017 0.5780 +58506 100507290 0.6560 +58508 64324 0.4030 +58508 64754 0.6820 +58508 64783 0.4060 +58508 79447 0.9950 +58508 79633 0.5360 +58508 79728 0.4070 +58508 79776 0.4810 +58508 79823 0.7930 +58508 79977 0.6420 +58508 80312 0.4040 +58508 80335 0.6930 +58508 80816 0.5190 +58508 80854 0.7060 +58508 84181 0.4910 +58508 84193 0.6610 +58508 84444 0.4650 +58508 84661 0.9990 +58508 84678 0.4490 +58508 84787 0.4550 +58508 84962 0.5320 +58508 85236 0.9240 +58508 89884 0.4220 +58508 94025 0.4860 +58508 94239 0.5340 +58508 114788 0.4400 +58508 120114 0.4540 +58508 121504 0.8550 +58508 126961 0.9250 +58508 128312 0.6390 +58508 161882 0.5270 +58508 171023 0.6260 +58508 192669 0.4680 +58508 192670 0.4410 +58508 196528 0.6710 +58508 221037 0.6570 +58508 221656 0.5270 +58508 255626 0.6380 +58508 259282 0.5260 +58508 333932 0.8540 +58508 440093 0.8390 +58508 440686 0.8390 +58508 474382 0.6020 +58508 554313 0.8550 +58508 653604 0.9820 +58508 102723407 0.6080 +58509 60625 0.6120 +58509 63932 0.6170 +58509 65109 0.8030 +58509 79085 0.4430 +58509 79576 0.8390 +58509 79706 0.9480 +58509 80011 0.9220 +58509 81559 0.5390 +58509 83881 0.4070 +58509 84081 0.4990 +58509 112812 0.4870 +58509 114088 0.5600 +58509 114789 0.4370 +58509 143884 0.4990 +58509 146059 0.4410 +58509 163859 0.9150 +58509 199746 0.5090 +58509 284427 0.4320 +58510 60482 0.4340 +58510 64577 0.4810 +58510 64850 0.4010 +58510 64902 0.4780 +58510 64976 0.4740 +58510 65263 0.9240 +58510 79814 0.4750 +58510 80258 0.4030 +58510 84807 0.4280 +58510 85359 0.4430 +58510 112817 0.6440 +58510 115584 0.4410 +58510 123876 0.4660 +58510 125206 0.4420 +58510 159963 0.4420 +58510 160728 0.4330 +58510 200010 0.4570 +58510 283365 0.5200 +58510 285555 0.4280 +58510 403282 0.4450 +58510 644096 0.4430 +58510 728361 0.5310 +58510 100130771 0.4480 +58511 84059 0.4020 +58511 134548 0.4870 +58512 60592 0.4210 +58512 80148 0.4730 +58512 85358 0.9920 +58512 114798 0.7690 +58512 116986 0.4650 +58512 143425 0.4540 +58512 148281 0.4240 +58512 160622 0.8870 +58512 729956 0.4170 +58513 79903 0.4440 +58513 80115 0.5400 +58513 83988 0.5590 +58513 84251 0.9180 +58513 85439 0.9840 +58513 115548 0.9130 +58513 122616 0.5400 +58513 125972 0.4480 +58513 127833 0.6210 +58513 130340 0.5470 +58513 132320 0.4450 +58513 150350 0.7790 +58513 255324 0.4990 +58515 60678 0.6710 +58515 64429 0.8930 +58515 79048 0.9000 +58515 83642 0.9180 +58515 85465 0.8110 +58515 114112 0.8010 +58515 116138 0.5100 +58515 118672 0.6300 +58515 140606 0.8780 +58515 257202 0.5330 +58515 280636 0.8800 +58515 348303 0.8570 +58516 64426 0.9630 +58516 79595 0.9220 +58516 79685 0.9580 +58516 80312 0.6130 +58516 84312 0.9540 +58516 84629 0.7630 +58516 90316 0.5340 +58516 126075 0.4730 +58516 261729 0.4170 +58516 339456 0.5030 +58516 388272 0.4610 +58517 59286 0.4070 +58517 65117 0.8690 +58517 79576 0.4100 +58517 79696 0.6740 +58517 79753 0.5190 +58517 79811 0.8130 +58517 79869 0.4640 +58517 80004 0.4280 +58517 83443 0.5490 +58517 83938 0.6940 +58517 84081 0.5290 +58517 84316 0.5570 +58517 84811 0.5110 +58517 84844 0.7030 +58517 84945 0.4160 +58517 84950 0.7100 +58517 84967 0.6200 +58517 84991 0.4660 +58517 91746 0.6290 +58517 124245 0.6620 +58517 126259 0.5570 +58517 140890 0.8610 +58517 147650 0.5580 +58517 153527 0.5320 +58517 220074 0.6940 +58517 220988 0.4570 +58517 256536 0.5240 +58517 317781 0.4410 +58517 347744 0.8160 +58517 392517 0.8680 +58517 100996928 0.8940 +58517 101669762 0.8140 +58524 63901 0.4170 +58524 63950 0.4440 +58524 63951 0.4210 +58524 79072 0.4360 +58524 79956 0.4270 +58524 81704 0.4500 +58524 83592 0.5010 +58524 84465 0.4300 +58524 115426 0.4080 +58524 120787 0.4020 +58524 128153 0.4270 +58524 128414 0.4560 +58524 129804 0.4160 +58524 155185 0.4560 +58524 201299 0.4230 +58524 202333 0.4080 +58524 284001 0.4400 +58524 100505478 0.4340 +58524 105376230 0.4780 +58526 116254 0.4050 +58526 653121 0.4790 +58527 79414 0.4350 +58527 126298 0.4940 +58527 148014 0.5040 +58527 159013 0.4480 +58527 388228 0.4290 +58527 100507341 0.5540 +58528 60673 0.5900 +58528 64121 0.9990 +58528 64223 0.9080 +58528 64798 0.8090 +58528 79109 0.4430 +58528 79726 0.8360 +58528 81929 0.8160 +58528 83667 0.7490 +58528 84219 0.8580 +58528 84232 0.4650 +58528 84335 0.9480 +58528 84946 0.4180 +58528 90423 0.5140 +58528 96459 0.9610 +58528 120103 0.6070 +58528 127124 0.5500 +58528 144577 0.7280 +58528 153129 0.9980 +58528 154743 0.6880 +58528 155066 0.5360 +58528 201163 0.9830 +58528 206358 0.6240 +58528 245972 0.5750 +58528 245973 0.5520 +58528 253260 0.6820 +58528 253314 0.4010 +58528 389541 0.9990 +58528 652968 0.7380 +58528 729438 0.6520 +58529 79933 0.9330 +58529 84033 0.4440 +58529 84665 0.7540 +58529 84675 0.4820 +58529 84676 0.7020 +58529 85366 0.5520 +58529 91860 0.7230 +58529 91977 0.5010 +58529 129446 0.5560 +58529 131377 0.4520 +58529 139886 0.4950 +58529 145482 0.4050 +58529 163688 0.7320 +58529 165904 0.4640 +58529 169981 0.4810 +58529 171024 0.6780 +58529 200539 0.4380 +58529 202333 0.5200 +58529 219537 0.4740 +58529 442721 0.5110 +58529 474343 0.4760 +58529 729092 0.4180 +58530 80739 0.4780 +58530 80740 0.7620 +58530 83639 0.5160 +58530 116372 0.4520 +58530 130576 0.4900 +58530 137797 0.5370 +58530 147719 0.5610 +58530 171169 0.5850 +58530 259215 0.8660 +58530 284348 0.5930 +58530 338328 0.4900 +58530 646627 0.4890 +58530 100169851 0.4310 +58530 101928108 0.4460 +58531 83983 0.4470 +58531 124912 0.4610 +58531 140823 0.4890 +58531 338661 0.4510 +58531 341567 0.4110 +58531 100129669 0.4480 +58531 100289187 0.4060 +58533 64786 0.5140 +58533 81565 0.4120 +58533 81609 0.9010 +58533 83891 0.4650 +58533 84312 0.4670 +58533 112574 0.6090 +58533 112936 0.9140 +58533 158471 0.4220 +58533 169166 0.4170 +58533 254122 0.9870 +58533 257364 0.6310 +58533 340277 0.6160 +58533 347252 0.4370 +58533 401548 0.4010 +58533 100287171 0.5020 +58538 64398 0.9310 +58538 131890 0.7810 +58538 150165 0.4050 +58538 255762 0.5110 +58538 286204 0.4670 +58985 59067 0.7570 +58985 64806 0.5820 +58985 84818 0.7660 +58985 85480 0.7700 +58985 112744 0.4800 +58985 116379 0.8210 +58985 123775 0.4730 +58985 130120 0.6000 +58985 149233 0.4180 +58985 160298 0.4240 +58985 163702 0.8220 +58985 282616 0.8550 +58985 282617 0.8890 +58985 282618 0.8870 +58985 338376 0.6880 +58985 414325 0.5320 +58986 80055 0.4720 +58986 83986 0.4100 +58986 84079 0.4560 +58986 93210 0.5320 +58986 125981 0.5390 +58986 199223 0.4790 +58986 340485 0.4890 +59067 112744 0.4920 +59067 116379 0.6810 +59067 132612 0.4070 +59067 149233 0.7770 +59067 163702 0.6530 +59082 84674 0.4240 +59082 114548 0.5760 +59082 286430 0.4630 +59082 338322 0.4880 +59084 65220 0.4120 +59084 80034 0.4950 +59084 80309 0.4710 +59084 80310 0.4470 +59084 81706 0.4080 +59084 117156 0.4290 +59269 84221 0.4180 +59269 122706 0.4100 +59269 132001 0.4140 +59269 133522 0.5010 +59269 143471 0.4100 +59269 170692 0.4270 +59269 200008 0.8470 +59269 200634 0.4250 +59269 202500 0.4080 +59269 343521 0.4070 +59271 80174 0.4320 +59271 84539 0.4180 +59271 94104 0.4710 +59271 118987 0.4200 +59271 137970 0.4540 +59271 444882 0.4020 +59271 100129792 0.4120 +59272 64083 0.5480 +59272 64135 0.5430 +59272 64398 0.4890 +59272 79258 0.6590 +59272 81609 0.7680 +59272 84000 0.4210 +59272 84706 0.4280 +59272 85358 0.5100 +59272 91860 0.5910 +59272 92521 0.4460 +59272 114548 0.5320 +59272 116511 0.7900 +59272 116512 0.5870 +59272 136991 0.4800 +59272 137902 0.5120 +59272 160622 0.6850 +59272 163688 0.5670 +59272 200576 0.4790 +59272 219931 0.4420 +59272 282618 0.4020 +59272 339390 0.5110 +59272 339967 0.6870 +59272 340024 0.9990 +59272 342371 0.8810 +59272 400668 0.5450 +59272 405754 0.9920 +59272 440387 0.4040 +59272 100423062 0.8230 +59274 65059 0.4160 +59274 83605 0.7390 +59274 143903 0.4780 +59277 84628 0.6470 +59277 90249 0.9060 +59277 137970 0.5450 +59277 219699 0.9390 +59277 284217 0.6220 +59283 59284 0.9440 +59283 59285 0.9120 +59283 64149 0.4790 +59283 64840 0.5390 +59283 79269 0.4730 +59283 79820 0.7330 +59283 79953 0.4890 +59283 80207 0.4390 +59283 83729 0.4160 +59283 93145 0.7420 +59283 93589 0.9230 +59283 115727 0.6700 +59283 115761 0.4070 +59283 116443 0.7430 +59283 116444 0.7580 +59283 117144 0.7300 +59283 117155 0.7450 +59283 118427 0.5170 +59283 126129 0.4820 +59283 146395 0.6760 +59283 149111 0.9170 +59283 152940 0.4170 +59283 170572 0.5500 +59283 200909 0.5430 +59283 246329 0.7200 +59283 254263 0.9900 +59283 257044 0.7850 +59283 257062 0.7330 +59283 285242 0.5470 +59283 285588 0.7390 +59283 340393 0.7200 +59283 347732 0.7280 +59283 375567 0.5900 +59283 378807 0.7430 +59283 388336 0.7390 +59283 402117 0.6010 +59283 440829 0.5550 +59283 644070 0.4200 +59283 729956 0.8040 +59283 729993 0.9480 +59283 100130348 0.7200 +59284 59285 0.9330 +59284 60370 0.4640 +59284 64840 0.4070 +59284 79820 0.7440 +59284 93145 0.7630 +59284 93589 0.9300 +59284 115727 0.6670 +59284 116443 0.8040 +59284 116444 0.8160 +59284 117144 0.7370 +59284 117155 0.7330 +59284 118427 0.5070 +59284 126129 0.4080 +59284 140730 0.4210 +59284 149111 0.7800 +59284 170572 0.5530 +59284 200909 0.5430 +59284 246329 0.7200 +59284 254263 0.8960 +59284 257044 0.7490 +59284 257062 0.7310 +59284 285242 0.5470 +59284 285588 0.7390 +59284 340393 0.7200 +59284 347732 0.7510 +59284 375567 0.5730 +59284 378807 0.7430 +59284 388336 0.5950 +59284 402117 0.6100 +59284 440829 0.5600 +59284 729956 0.6290 +59284 729993 0.7620 +59284 100130348 0.7200 +59285 79820 0.7200 +59285 93589 0.9010 +59285 115727 0.6500 +59285 117144 0.7220 +59285 117155 0.7230 +59285 246329 0.7340 +59285 257044 0.7200 +59285 257062 0.7210 +59285 285588 0.7200 +59285 340393 0.7200 +59285 347732 0.7260 +59285 378807 0.7200 +59285 100130348 0.7200 +59286 64969 0.4200 +59286 65018 0.4210 +59286 79094 0.4400 +59286 79171 0.4050 +59286 79753 0.8200 +59286 81605 0.6010 +59286 83443 0.9250 +59286 84292 0.7280 +59286 84811 0.8200 +59286 84844 0.9000 +59286 84950 0.9930 +59286 91603 0.4010 +59286 93145 0.4450 +59286 140823 0.4820 +59286 150678 0.4620 +59286 151903 0.4830 +59286 153527 0.9750 +59286 440567 0.4490 +59286 493753 0.4300 +59286 100534599 0.4850 +59286 112268293 0.5400 +59307 64127 0.4010 +59307 84639 0.5740 +59307 84868 0.5100 +59307 90865 0.8270 +59307 114609 0.7750 +59307 338440 0.5740 +59307 342979 0.6790 +59335 83550 0.4140 +59335 120237 0.4500 +59335 391189 0.4110 +59335 644168 0.5760 +59336 84193 0.4150 +59336 84524 0.4260 +59336 84553 0.4580 +59336 124454 0.4110 +59336 126204 0.4330 +59336 146223 0.4040 +59336 147991 0.4720 +59336 256297 0.6150 +59336 648791 0.4420 +59338 59339 0.7380 +59338 65977 0.5460 +59338 83872 0.6660 +59338 118663 0.5760 +59338 387715 0.9150 +59339 65977 0.5090 +59339 79698 0.4380 +59339 83541 0.4700 +59339 83877 0.6200 +59339 84725 0.4750 +59339 114791 0.4140 +59339 203100 0.5440 +59339 203102 0.5150 +59340 85480 0.4170 +59340 386653 0.5700 +59340 100128731 0.4220 +59340 100131439 0.5480 +59341 63895 0.6920 +59341 65266 0.6030 +59341 79054 0.8920 +59341 79628 0.4460 +59341 80036 0.7920 +59341 84876 0.4930 +59341 89910 0.7970 +59341 90627 0.5020 +59341 91860 0.8780 +59341 114548 0.4850 +59341 140803 0.6590 +59341 162514 0.4440 +59341 163688 0.8770 +59341 202915 0.4020 +59341 220296 0.5900 +59341 246213 0.4790 +59341 255231 0.4740 +59341 441027 0.4250 +59342 91608 0.4860 +59342 162282 0.4110 +59342 339210 0.4130 +59342 342527 0.4240 +59343 79066 0.4410 +59343 79711 0.4370 +59343 84823 0.7680 +59343 84901 0.4620 +59343 205564 0.4980 +59343 348995 0.6080 +59343 387082 0.7480 +59343 402569 0.4970 +59343 653437 0.4730 +59343 729857 0.5870 +59344 80216 0.4200 +59344 121214 0.6890 +59344 126410 0.8680 +59344 126823 0.4350 +59344 170680 0.5370 +59344 204219 0.7350 +59344 257000 0.5930 +59344 285848 0.8010 +59344 339512 0.4460 +59344 348938 0.9240 +59344 643418 0.6830 +59345 63940 0.4130 +59345 64130 0.5570 +59345 64407 0.6210 +59345 64805 0.5030 +59345 79628 0.4180 +59345 84539 0.5950 +59345 85397 0.6210 +59345 90507 0.4010 +59345 90678 0.4180 +59345 94235 0.9980 +59345 115557 0.5000 +59345 117579 0.5060 +59345 122786 0.6110 +59345 126006 0.4310 +59345 129521 0.4990 +59345 139760 0.6020 +59345 146850 0.6500 +59345 151306 0.7630 +59345 196883 0.6830 +59345 221391 0.5590 +59345 284004 0.4270 +59345 346562 0.8870 +59345 387129 0.7690 +59345 431704 0.6620 +59345 594857 0.4990 +59345 100506013 0.4290 +59345 104909134 0.5010 +59345 105372280 0.7280 +59348 64750 0.4520 +59348 79184 0.4190 +59348 79898 0.4440 +59348 83737 0.4460 +59348 83990 0.5450 +59348 84142 0.4220 +59348 89839 0.4230 +59349 60561 0.4680 +59349 64410 0.9080 +59349 64839 0.8590 +59349 79734 0.9160 +59349 80856 0.6620 +59349 81876 0.4250 +59349 83892 0.7730 +59349 84078 0.9050 +59349 84541 0.9280 +59349 84861 0.9190 +59349 84955 0.6380 +59349 85365 0.4530 +59349 89890 0.9070 +59349 90293 0.9180 +59349 122706 0.4160 +59349 131377 0.7700 +59349 140838 0.5620 +59349 143471 0.4180 +59349 253980 0.9010 +59349 285636 0.4610 +59349 339745 0.9100 +59349 375056 0.6320 +59349 553115 0.9970 +59350 59352 0.4130 +59350 117579 0.9980 +59350 122042 0.9390 +59350 339403 0.9850 +59350 390664 0.8940 +59352 79442 0.5060 +59352 84133 0.8770 +59352 84870 0.9580 +59352 89780 0.4440 +59352 122769 0.4020 +59352 284654 0.9980 +59352 340419 0.9620 +59352 343637 0.9820 +59352 349633 0.5720 +59353 79608 0.5710 +59353 80728 0.4740 +59353 130589 0.4400 +59353 100506144 0.4800 +60312 64778 0.4930 +60312 84448 0.5560 +60312 768239 0.4350 +60313 79705 0.4250 +60313 85451 0.4110 +60313 90592 0.5760 +60313 126661 0.4450 +60313 149483 0.8980 +60313 246175 0.6300 +60313 339345 0.6240 +60313 653073 0.4470 +60314 64077 0.6020 +60314 79096 0.5090 +60314 79797 0.4670 +60314 83475 0.4740 +60314 84975 0.6380 +60314 326625 0.4270 +60314 388677 0.6220 +60314 448834 0.4750 +60343 64743 0.5430 +60343 84696 0.4820 +60343 146862 0.4250 +60370 64396 0.4320 +60370 83742 0.4370 +60370 84266 0.4810 +60370 90355 0.4730 +60370 93185 0.4040 +60370 140700 0.5690 +60370 150094 0.4210 +60370 353323 0.5110 +60385 81629 0.7220 +60385 83942 0.8860 +60385 83983 0.7250 +60385 254187 0.4050 +60385 282991 0.4510 +60385 283629 0.7240 +60385 389677 0.5900 +60386 63924 0.4330 +60386 63976 0.4790 +60386 79648 0.4800 +60386 80704 0.7460 +60386 259266 0.4220 +60386 284403 0.5220 +60386 387787 0.4970 +60386 100526842 0.4070 +60401 79868 0.4170 +60401 83693 0.4220 +60401 128178 0.7300 +60401 220001 0.4050 +60401 283652 0.8270 +60412 60684 0.7910 +60412 64762 0.4220 +60412 79058 0.5190 +60412 83548 0.5450 +60412 84062 0.6310 +60412 91828 0.8620 +60412 91949 0.4590 +60412 93627 0.4350 +60412 116841 0.5120 +60412 117177 0.7980 +60412 134957 0.5500 +60412 149371 0.9990 +60412 150946 0.4220 +60412 201514 0.5070 +60412 203062 0.4230 +60412 282991 0.4460 +60412 283849 0.9690 +60412 376267 0.4220 +60412 644145 0.9480 +60436 64321 0.4040 +60436 64426 0.5380 +60436 79595 0.4860 +60436 79685 0.4720 +60436 84312 0.4750 +60436 140886 0.7880 +60437 64072 0.5820 +60437 64403 0.5400 +60437 64405 0.6160 +60437 222256 0.6690 +60437 440854 0.6070 +60468 64919 0.4680 +60468 79365 0.4580 +60468 79718 0.4850 +60468 80018 0.4990 +60468 114904 0.6800 +60468 117289 0.6460 +60468 723961 0.4450 +60481 64240 0.4030 +60481 79071 0.5490 +60481 79603 0.4050 +60481 79839 0.4590 +60481 79966 0.6230 +60481 80320 0.5880 +60481 83401 0.4560 +60481 84649 0.4970 +60481 116255 0.4140 +60481 128178 0.5170 +60481 132949 0.5760 +60481 136259 0.6150 +60481 171546 0.4040 +60481 201562 0.4750 +60481 221711 0.4740 +60481 286827 0.5860 +60482 80736 0.4270 +60482 84255 0.4400 +60482 84620 0.4890 +60482 126969 0.5190 +60482 127833 0.4070 +60482 140679 0.5130 +60482 160728 0.4580 +60482 199857 0.4370 +60482 201780 0.5550 +60482 204962 0.5330 +60482 440387 0.6290 +60484 63827 0.6510 +60484 79152 0.5220 +60484 93377 0.6270 +60484 203190 0.4100 +60484 283999 0.4950 +60484 342035 0.5650 +60484 348938 0.4170 +60484 389123 0.4140 +60485 79633 0.5960 +60485 81532 0.4330 +60485 83593 0.8750 +60485 84955 0.6210 +60485 84962 0.9580 +60485 92597 0.9390 +60485 122786 0.6360 +60485 126374 0.9830 +60485 147923 0.5360 +60485 154796 0.9060 +60485 154810 0.7450 +60485 166824 0.6220 +60485 283349 0.5890 +60487 63892 0.4230 +60487 63899 0.5850 +60487 64118 0.8210 +60487 64216 0.5300 +60487 64425 0.5330 +60487 64922 0.5720 +60487 65083 0.5550 +60487 65084 0.4930 +60487 79050 0.6120 +60487 79730 0.4920 +60487 79922 0.4080 +60487 79954 0.5560 +60487 79979 0.4480 +60487 80135 0.5810 +60487 80745 0.6630 +60487 81627 0.5600 +60487 83480 0.4840 +60487 83743 0.6850 +60487 83943 0.5430 +60487 84128 0.6890 +60487 84135 0.4040 +60487 84154 0.7260 +60487 84172 0.4030 +60487 84294 0.4060 +60487 84365 0.4110 +60487 84549 0.5640 +60487 84916 0.5990 +60487 85015 0.4680 +60487 90121 0.4400 +60487 90353 0.5160 +60487 90355 0.6140 +60487 90826 0.4630 +60487 91801 0.7690 +60487 92856 0.6890 +60487 93587 0.6700 +60487 112970 0.4530 +60487 113179 0.5780 +60487 115708 0.8060 +60487 116966 0.4320 +60487 117246 0.6490 +60487 134637 0.5540 +60487 135112 0.4330 +60487 135114 0.4790 +60487 148252 0.4830 +60487 152992 0.5180 +60487 153443 0.4090 +60487 155368 0.4950 +60487 158234 0.6030 +60487 159989 0.4480 +60487 162239 0.4420 +60487 165545 0.4550 +60487 221078 0.6510 +60487 221830 0.6360 +60487 345630 0.4020 +60487 387338 0.4920 +60488 63875 0.9950 +60488 63931 0.9990 +60488 64374 0.6740 +60488 64432 0.9980 +60488 64745 0.9730 +60488 64928 0.8530 +60488 64949 0.9930 +60488 64951 0.9970 +60488 64960 0.9990 +60488 64963 0.9990 +60488 64965 0.9990 +60488 64968 0.9980 +60488 64969 0.9990 +60488 64975 0.9930 +60488 64976 0.9930 +60488 64978 0.9620 +60488 64979 0.9940 +60488 64981 0.9880 +60488 64983 0.9940 +60488 65003 0.9800 +60488 65005 0.9460 +60488 65008 0.9090 +60488 65080 0.9920 +60488 65121 0.5250 +60488 65122 0.5250 +60488 65993 0.9900 +60488 78988 0.8440 +60488 79590 0.8960 +60488 79863 0.8150 +60488 79912 0.4130 +60488 80146 0.4670 +60488 80270 0.4620 +60488 84273 0.8120 +60488 84311 0.8980 +60488 84545 0.9920 +60488 85476 0.8450 +60488 90313 0.8290 +60488 90480 0.8400 +60488 90624 0.6560 +60488 91574 0.5010 +60488 92259 0.8890 +60488 92399 0.8810 +60488 93517 0.4620 +60488 114781 0.6410 +60488 116540 0.8150 +60488 116541 0.9650 +60488 118487 0.9810 +60488 122704 0.8460 +60488 124359 0.4790 +60488 124995 0.9690 +60488 126402 0.8400 +60488 128308 0.8510 +60488 131076 0.6460 +60488 140801 0.6660 +60488 148022 0.5940 +60488 149478 0.5680 +60488 157310 0.7960 +60488 158234 0.6970 +60488 196074 0.8260 +60488 219402 0.9260 +60488 219927 0.9660 +60488 253175 0.4790 +60488 343068 0.5250 +60488 343070 0.5250 +60488 345051 0.7420 +60488 347487 0.6730 +60488 353376 0.5940 +60488 387849 0.4490 +60488 390999 0.5250 +60488 391002 0.5250 +60488 400735 0.5250 +60488 400736 0.5250 +60488 401548 0.5420 +60488 440560 0.5250 +60488 440561 0.5250 +60488 441873 0.5250 +60488 641776 0.5210 +60488 643909 0.5210 +60488 645359 0.5250 +60488 653619 0.5250 +60488 728524 0.5210 +60488 729528 0.5250 +60488 100287482 0.6730 +60488 100302736 0.5940 +60488 100526842 0.8200 +60488 100996746 0.5210 +60488 101929983 0.5250 +60488 105180390 0.5210 +60488 105180391 0.5210 +60489 63931 0.4240 +60489 64111 0.4630 +60489 64135 0.4130 +60489 79002 0.5890 +60489 79741 0.4320 +60489 84886 0.7360 +60489 85363 0.9290 +60489 91543 0.4020 +60489 91607 0.4790 +60489 115004 0.4480 +60489 115362 0.4740 +60489 125965 0.5880 +60489 150684 0.4680 +60489 164668 0.4200 +60489 164684 0.4260 +60489 167227 0.6450 +60489 200316 0.9330 +60489 256987 0.5570 +60489 283459 0.6610 +60489 388753 0.5940 +60489 403314 0.7880 +60489 405754 0.4390 +60489 440567 0.6870 +60489 728317 0.5220 +60489 100532726 0.4600 +60490 64714 0.4050 +60490 79646 0.9750 +60490 79717 0.9970 +60490 79877 0.6270 +60490 80025 0.9760 +60490 80347 0.9990 +60490 112970 0.4950 +60490 192683 0.5460 +60490 283150 0.6260 +60490 283871 0.4510 +60490 284439 0.5560 +60490 326625 0.4700 +60490 387103 0.4250 +60490 692312 0.4960 +60490 728621 0.6610 +60491 63875 0.4640 +60491 63948 0.4500 +60491 79023 0.4650 +60491 79077 0.4340 +60491 79078 0.4530 +60491 79720 0.4760 +60491 79828 0.4210 +60491 80145 0.9570 +60491 81932 0.4230 +60491 84688 0.4220 +60491 90353 0.4610 +60491 151246 0.4010 +60491 246243 0.5520 +60491 285172 0.6480 +60491 377007 0.5380 +60492 63933 0.6670 +60492 64118 0.4110 +60492 79815 0.5650 +60492 81542 0.4700 +60492 81627 0.5770 +60492 91894 0.4460 +60492 116540 0.5440 +60492 128239 0.4090 +60492 158830 0.4730 +60492 283284 0.4870 +60492 338699 0.5370 +60492 339977 0.4580 +60493 60528 0.5380 +60493 79671 0.8250 +60493 79810 0.4410 +60493 84881 0.4700 +60493 87178 0.4420 +60493 285367 0.4470 +60494 80125 0.4110 +60494 80133 0.4410 +60494 84229 0.4500 +60494 118491 0.5740 +60494 136895 0.4720 +60494 147949 0.4640 +60494 149465 0.5970 +60494 152206 0.4500 +60494 196385 0.4460 +60494 222826 0.4790 +60494 222967 0.4610 +60494 257236 0.6230 +60494 388325 0.4400 +60494 388946 0.4450 +60494 390152 0.4320 +60494 390261 0.4470 +60494 441054 0.4610 +60494 728194 0.5280 +60494 728568 0.4180 +60495 90070 0.4540 +60495 92292 0.5280 +60495 166614 0.4180 +60495 221914 0.5110 +60495 375790 0.5780 +60496 65008 0.4140 +60496 79728 0.4840 +60496 79937 0.5930 +60496 80006 0.5090 +60496 80347 0.9130 +60496 84233 0.8310 +60496 84271 0.7020 +60496 84437 0.5370 +60496 90362 0.4090 +60496 129684 0.6290 +60496 132949 0.9820 +60496 146434 0.5110 +60496 440093 0.4960 +60496 440686 0.4960 +60496 653604 0.5000 +60496 728577 0.5910 +60496 100289279 0.6360 +60506 79883 0.4370 +60506 90167 0.7990 +60506 91056 0.4360 +60506 93589 0.5850 +60506 123355 0.6030 +60506 127435 0.4330 +60506 133418 0.4310 +60506 133584 0.4240 +60506 134549 0.4850 +60506 285555 0.4830 +60506 339291 0.4180 +60506 345193 0.6170 +60506 376132 0.5540 +60506 388531 0.5200 +60506 390205 0.4850 +60506 440435 0.8180 +60509 79739 0.4310 +60509 84071 0.4090 +60509 84141 0.4370 +60509 84871 0.5180 +60509 95681 0.4360 +60509 114805 0.4240 +60509 114880 0.4370 +60509 115004 0.6260 +60509 148789 0.4220 +60509 150465 0.5750 +60509 150737 0.4040 +60509 158135 0.4740 +60509 254173 0.5440 +60509 284076 0.7020 +60509 284680 0.4970 +60526 64342 0.6220 +60526 222546 0.4380 +60528 60625 0.4110 +60528 63891 0.4660 +60528 63899 0.4790 +60528 64216 0.4780 +60528 64858 0.5590 +60528 64968 0.4230 +60528 65080 0.5480 +60528 65083 0.4920 +60528 79042 0.4440 +60528 79072 0.4910 +60528 79736 0.5620 +60528 79810 0.5290 +60528 79922 0.6890 +60528 79979 0.4040 +60528 80324 0.5740 +60528 81887 0.4690 +60528 81892 0.5210 +60528 83743 0.4410 +60528 84273 0.4530 +60528 84705 0.6820 +60528 84881 0.4710 +60528 85414 0.4550 +60528 87178 0.6410 +60528 91574 0.4270 +60528 92399 0.4130 +60528 93587 0.6630 +60528 115708 0.6100 +60528 118460 0.4770 +60528 123263 0.4450 +60528 124454 0.4910 +60528 129563 0.4060 +60528 130916 0.4110 +60528 150274 0.4060 +60528 161835 0.4790 +60528 192669 0.4060 +60528 201626 0.4900 +60528 221895 0.4540 +60528 255374 0.4860 +60528 283358 0.5310 +60528 285367 0.4360 +60528 338707 0.5310 +60528 387332 0.5630 +60528 387338 0.4890 +60529 65009 0.4370 +60529 84830 0.4330 +60529 84941 0.4330 +60529 93166 0.6030 +60529 169026 0.6030 +60529 347853 0.4250 +60529 392255 0.4010 +60558 60678 0.4320 +60558 63875 0.8770 +60558 63931 0.6640 +60558 64146 0.4560 +60558 64374 0.5880 +60558 64848 0.4070 +60558 64960 0.7050 +60558 64963 0.6910 +60558 64965 0.9020 +60558 64968 0.9040 +60558 64969 0.8490 +60558 64979 0.8560 +60558 64983 0.9040 +60558 65003 0.6290 +60558 65005 0.8450 +60558 65008 0.7290 +60558 79590 0.6140 +60558 79691 0.4260 +60558 80067 0.4910 +60558 80333 0.4280 +60558 81892 0.4010 +60558 83943 0.4380 +60558 83988 0.5380 +60558 84172 0.4600 +60558 84340 0.6140 +60558 84881 0.4340 +60558 84893 0.4020 +60558 85476 0.6800 +60558 85865 0.5280 +60558 90701 0.4470 +60558 91574 0.6090 +60558 91860 0.5520 +60558 91875 0.6370 +60558 92399 0.6880 +60558 112858 0.4750 +60558 117286 0.4650 +60558 122830 0.4200 +60558 126402 0.6890 +60558 131177 0.4730 +60558 134266 0.4210 +60558 140801 0.5870 +60558 147700 0.4030 +60558 163688 0.5530 +60558 164633 0.5970 +60558 196074 0.4880 +60558 196294 0.4450 +60558 219927 0.8680 +60558 221154 0.5070 +60558 246243 0.4030 +60558 285855 0.5810 +60558 347487 0.6200 +60558 387129 0.5720 +60558 641776 0.5190 +60558 643909 0.5190 +60558 728524 0.5190 +60558 100287482 0.6200 +60558 100505478 0.5720 +60558 100526842 0.6640 +60558 100996746 0.5190 +60558 105180390 0.5190 +60558 105180391 0.5190 +60559 81873 0.4850 +60559 83943 0.4010 +60559 84365 0.4350 +60559 90701 0.9990 +60559 116832 0.4270 +60559 116966 0.5370 +60559 140032 0.4160 +60559 140458 0.5920 +60559 196294 0.4060 +60559 200916 0.4820 +60559 201595 0.4310 +60559 256369 0.4030 +60560 79612 0.9620 +60560 79829 0.7290 +60560 79903 0.6530 +60560 80018 0.9380 +60560 80155 0.9790 +60560 80218 0.9210 +60560 84056 0.4630 +60560 84135 0.4540 +60560 84316 0.9990 +60560 84779 0.9620 +60560 90196 0.4370 +60560 96764 0.4560 +60560 114799 0.5200 +60560 122830 0.9990 +60560 126259 0.4420 +60560 147650 0.4420 +60560 158427 0.4040 +60560 158431 0.4210 +60560 339983 0.8090 +60560 389766 0.4160 +60561 63908 0.5300 +60561 64794 0.4530 +60561 64837 0.5360 +60561 79072 0.4020 +60561 79728 0.5050 +60561 80153 0.6300 +60561 80314 0.5960 +60561 81876 0.6990 +60561 81930 0.5570 +60561 83548 0.7340 +60561 83694 0.5560 +60561 84142 0.5520 +60561 84643 0.4990 +60561 84649 0.4760 +60561 89953 0.5180 +60561 90990 0.5110 +60561 124602 0.5100 +60561 126208 0.8210 +60561 132949 0.4990 +60561 139324 0.5560 +60561 146909 0.5100 +60561 147700 0.5200 +60561 148223 0.8770 +60561 152518 0.6150 +60561 152579 0.8890 +60561 203259 0.4010 +60561 221458 0.4990 +60561 285643 0.4990 +60561 348654 0.4470 +60561 353116 0.4870 +60561 375056 0.5930 +60592 79571 0.4360 +60592 80148 0.4960 +60592 152586 0.5060 +60592 159371 0.4850 +60592 253559 0.4560 +60592 255239 0.4080 +60592 256714 0.4320 +60592 343450 0.6800 +60592 389073 0.5270 +60598 80262 0.4120 +60598 83795 0.6470 +60598 89822 0.6650 +60598 338567 0.6950 +60625 63932 0.5510 +60625 64318 0.4270 +60625 64434 0.6550 +60625 64794 0.4770 +60625 65083 0.7090 +60625 79009 0.4890 +60625 79039 0.5430 +60625 79050 0.4490 +60625 79139 0.4210 +60625 79165 0.6040 +60625 79446 0.5380 +60625 79576 0.5230 +60625 79650 0.7720 +60625 79706 0.5410 +60625 79753 0.5670 +60625 79954 0.4260 +60625 79991 0.4870 +60625 80169 0.5450 +60625 80222 0.4760 +60625 81887 0.4890 +60625 83443 0.5050 +60625 83479 0.4330 +60625 83737 0.4540 +60625 84128 0.4750 +60625 84172 0.4240 +60625 84292 0.7640 +60625 84811 0.6440 +60625 84916 0.4560 +60625 84946 0.4210 +60625 84985 0.4250 +60625 90957 0.5380 +60625 92105 0.4440 +60625 92856 0.6580 +60625 93594 0.6520 +60625 124245 0.4690 +60625 140685 0.4110 +60625 149465 0.4160 +60625 151903 0.4680 +60625 163223 0.6730 +60625 163859 0.5620 +60625 165545 0.5410 +60625 222183 0.4880 +60625 253769 0.4770 +60625 317762 0.4240 +60625 644994 0.5050 +60625 100527943 0.4750 +60626 64407 0.5510 +60626 80198 0.4650 +60626 83857 0.6710 +60626 84516 0.5010 +60626 85397 0.5370 +60626 91782 0.5300 +60626 113746 0.6160 +60626 126006 0.6570 +60626 346562 0.8480 +60626 431704 0.5890 +60672 89941 0.4960 +60672 90231 0.4990 +60673 64121 0.6200 +60673 64127 0.4480 +60673 64223 0.9450 +60673 64419 0.4570 +60673 64422 0.8570 +60673 65018 0.4790 +60673 79065 0.8710 +60673 79594 0.4270 +60673 81631 0.7170 +60673 81671 0.7590 +60673 83667 0.6380 +60673 83734 0.8430 +60673 84335 0.9570 +60673 84557 0.7640 +60673 84938 0.6270 +60673 84971 0.6560 +60673 89849 0.5310 +60673 90441 0.5460 +60673 115201 0.7310 +60673 140735 0.5080 +60673 140775 0.8950 +60673 153129 0.5860 +60673 203228 0.9790 +60673 285973 0.5750 +60673 389541 0.5910 +60673 392307 0.6690 +60673 440738 0.7620 +60673 441925 0.9470 +60675 80712 0.4180 +60675 81848 0.4430 +60675 84432 0.4710 +60675 84539 0.5580 +60675 84634 0.9180 +60675 115557 0.4990 +60675 128674 0.9990 +60675 129521 0.6860 +60675 146225 0.6480 +60675 199675 0.4330 +60675 257313 0.4920 +60675 317649 0.4320 +60675 387129 0.5760 +60675 389549 0.5470 +60675 594857 0.5230 +60676 203100 0.4470 +60677 146713 0.4400 +60677 221662 0.5110 +60678 63875 0.4580 +60678 63931 0.5270 +60678 64374 0.4070 +60678 64960 0.5810 +60678 64963 0.5570 +60678 64965 0.4110 +60678 64968 0.4160 +60678 64969 0.6730 +60678 64983 0.4250 +60678 65005 0.4570 +60678 79048 0.9990 +60678 79587 0.5270 +60678 79807 0.5480 +60678 83642 0.7410 +60678 84172 0.4460 +60678 84340 0.4460 +60678 85377 0.5040 +60678 85465 0.5390 +60678 85476 0.6080 +60678 92935 0.4330 +60678 112869 0.4270 +60678 114112 0.5750 +60678 114987 0.5670 +60678 116832 0.5890 +60678 118672 0.9930 +60678 126402 0.6130 +60678 140032 0.7870 +60678 140606 0.6210 +60678 140801 0.6840 +60678 143244 0.4130 +60678 200916 0.5410 +60678 219927 0.5420 +60678 257202 0.4210 +60678 280636 0.6000 +60678 347487 0.5370 +60678 347744 0.4290 +60678 348303 0.5170 +60678 641776 0.4310 +60678 643909 0.4310 +60678 728524 0.4310 +60678 728689 0.6970 +60678 100287482 0.5370 +60678 100529239 0.5680 +60678 100996746 0.4310 +60678 105180390 0.4310 +60678 105180391 0.4310 +60680 146713 0.5080 +60680 400961 0.5430 +60681 64093 0.4880 +60681 64175 0.8660 +60681 79709 0.4040 +60681 84163 0.4970 +60681 84944 0.4600 +60681 84955 0.6270 +60681 90993 0.6750 +60681 91646 0.4330 +60681 121340 0.6070 +60681 122402 0.4090 +60681 135892 0.7560 +60681 147372 0.4260 +60681 283208 0.4520 +60681 387733 0.7390 +60681 389524 0.4980 +60681 401251 0.4700 +60682 64744 0.6440 +60682 92104 0.4340 +60682 129530 0.4780 +60682 140831 0.4470 +60682 160518 0.5200 +60682 221154 0.4600 +60684 64837 0.4260 +60684 78990 0.4750 +60684 79090 0.9650 +60684 79147 0.4670 +60684 80006 0.9960 +60684 80208 0.4850 +60684 80776 0.4220 +60684 81545 0.7960 +60684 81876 0.4780 +60684 83547 0.4150 +60684 84197 0.4170 +60684 122553 0.9960 +60684 126003 0.9950 +60684 134147 0.6100 +60684 151188 0.4740 +60684 167691 0.5460 +60684 203859 0.4180 +60684 246329 0.4090 +60684 284339 0.5200 +60684 339122 0.6330 +60684 100128327 0.9080 +60685 79571 0.6130 +60685 83795 0.6000 +60685 84327 0.4180 +60685 128486 0.5790 +60685 140902 0.6210 +60685 145741 0.5450 +60685 169792 0.4510 +60686 84666 0.4440 +60686 93621 0.4070 +60686 388701 0.5430 +60686 401251 0.4470 +63027 79657 0.4230 +63027 80224 0.4860 +63027 84310 0.4490 +63027 85452 0.4340 +63027 116843 0.4560 +63027 220963 0.4460 +63027 221749 0.4490 +63027 387601 0.5020 +63027 387775 0.4590 +63035 64319 0.4490 +63035 64769 0.4750 +63035 84108 0.6670 +63035 84295 0.7090 +63035 84333 0.5730 +63035 84678 0.9880 +63035 84733 0.4900 +63035 84759 0.9960 +63035 85456 0.4260 +63035 171023 0.7450 +63035 221895 0.4180 +63035 222950 0.4730 +63035 340602 0.4070 +63036 93979 0.4730 +63036 130120 0.4460 +63036 342898 0.4900 +63826 79896 0.6930 +63826 113675 0.9340 +63826 116443 0.4090 +63826 132949 0.4130 +63826 137362 0.4930 +63826 137872 0.5010 +63826 140809 0.4400 +63826 267012 0.4770 +63827 63923 0.6070 +63827 64131 0.5430 +63827 64132 0.4930 +63827 79586 0.5890 +63827 92126 0.4490 +63827 113189 0.4870 +63827 126792 0.4780 +63827 135152 0.4780 +63827 146760 0.4410 +63827 166012 0.4760 +63827 170689 0.4660 +63827 221914 0.6400 +63827 337876 0.4050 +63827 342035 0.4770 +63827 375790 0.7810 +63827 404037 0.6690 +63874 79153 0.5040 +63874 79575 0.4580 +63874 79728 0.4950 +63874 80167 0.5020 +63874 80339 0.4800 +63874 81926 0.4610 +63874 83451 0.5290 +63874 84696 0.4450 +63874 84836 0.4120 +63874 84945 0.4320 +63874 116236 0.4940 +63874 117245 0.4300 +63874 132949 0.4170 +63874 140701 0.4580 +63874 145447 0.5400 +63874 150379 0.4810 +63874 158584 0.6230 +63874 171586 0.6290 +63874 221955 0.6770 +63874 222236 0.8530 +63874 284161 0.5500 +63875 63931 0.9990 +63875 64146 0.9530 +63875 64374 0.9110 +63875 64432 0.9810 +63875 64928 0.9150 +63875 64949 0.8910 +63875 64951 0.8820 +63875 64960 0.9990 +63875 64963 0.9990 +63875 64965 0.9990 +63875 64968 0.9990 +63875 64969 0.9990 +63875 64975 0.9990 +63875 64976 0.9950 +63875 64978 0.9810 +63875 64979 0.9990 +63875 64981 0.9960 +63875 64983 0.9990 +63875 65003 0.9990 +63875 65005 0.9990 +63875 65008 0.9960 +63875 65080 0.9950 +63875 65121 0.7170 +63875 65122 0.7170 +63875 65993 0.9050 +63875 78988 0.8530 +63875 79165 0.4220 +63875 79590 0.9990 +63875 79631 0.9320 +63875 79728 0.9030 +63875 79848 0.4130 +63875 79863 0.4320 +63875 79922 0.6750 +63875 79962 0.4600 +63875 79982 0.4600 +63875 80146 0.4440 +63875 80221 0.9330 +63875 80270 0.4460 +63875 80324 0.7780 +63875 83448 0.8040 +63875 83480 0.7820 +63875 84172 0.9030 +63875 84273 0.5250 +63875 84311 0.9510 +63875 84340 0.9130 +63875 84545 0.9940 +63875 84705 0.9000 +63875 84881 0.6980 +63875 85476 0.9880 +63875 85865 0.9200 +63875 87178 0.7410 +63875 90313 0.9050 +63875 90480 0.9700 +63875 90624 0.6750 +63875 91574 0.9420 +63875 92170 0.9790 +63875 92399 0.9980 +63875 92856 0.5690 +63875 93517 0.4460 +63875 96459 0.4600 +63875 113000 0.6760 +63875 114781 0.6630 +63875 114908 0.4170 +63875 115416 0.9930 +63875 116540 0.9160 +63875 116541 0.9880 +63875 118487 0.8960 +63875 122481 0.5180 +63875 122704 0.9430 +63875 124359 0.4670 +63875 124995 0.9890 +63875 126402 0.9710 +63875 126789 0.7910 +63875 128308 0.9220 +63875 130916 0.8190 +63875 133015 0.4290 +63875 135138 0.4290 +63875 138428 0.4100 +63875 140432 0.4600 +63875 140801 0.9090 +63875 142940 0.6530 +63875 143244 0.8290 +63875 148022 0.5650 +63875 149478 0.6000 +63875 150353 0.4820 +63875 157310 0.7830 +63875 157869 0.4680 +63875 158067 0.5180 +63875 165721 0.5250 +63875 171425 0.4760 +63875 197322 0.4710 +63875 202052 0.4600 +63875 219402 0.5400 +63875 219927 0.9990 +63875 221264 0.5180 +63875 246243 0.4190 +63875 253175 0.4670 +63875 255308 0.4440 +63875 284106 0.5720 +63875 284418 0.4130 +63875 285126 0.4600 +63875 285190 0.4130 +63875 285282 0.4790 +63875 285367 0.6840 +63875 285521 0.4950 +63875 285755 0.4130 +63875 285855 0.9450 +63875 343068 0.7170 +63875 343070 0.7170 +63875 345051 0.8500 +63875 347487 0.9060 +63875 353376 0.5630 +63875 374407 0.4600 +63875 374659 0.9460 +63875 376497 0.4720 +63875 387129 0.9440 +63875 387338 0.8030 +63875 390999 0.7170 +63875 391002 0.7170 +63875 400735 0.7170 +63875 400736 0.7170 +63875 440560 0.7170 +63875 440561 0.7170 +63875 441873 0.7170 +63875 641776 0.8360 +63875 643909 0.8360 +63875 644591 0.4130 +63875 645142 0.4130 +63875 645359 0.7170 +63875 653505 0.4130 +63875 653598 0.4130 +63875 653619 0.7170 +63875 727851 0.4130 +63875 728524 0.8360 +63875 728945 0.4130 +63875 729528 0.7170 +63875 729857 0.4130 +63875 730262 0.4130 +63875 100130890 0.7820 +63875 100131187 0.7820 +63875 100287482 0.9060 +63875 100302736 0.5630 +63875 100505478 0.9440 +63875 100526842 0.9710 +63875 100996746 0.8360 +63875 101929983 0.7170 +63875 105180390 0.8360 +63875 105180391 0.8360 +63875 105371242 0.4130 +63875 114483834 0.7710 +63875 127898561 0.8110 +63876 79618 0.4350 +63876 80714 0.7270 +63876 90060 0.4200 +63876 134553 0.5910 +63876 146562 0.5410 +63876 219844 0.9070 +63876 219855 0.4290 +63877 79020 0.4780 +63877 90362 0.4330 +63877 91369 0.4460 +63877 160777 0.4220 +63877 257415 0.4960 +63877 283635 0.4730 +63877 388021 0.4230 +63891 64135 0.5900 +63891 83890 0.4520 +63891 83998 0.4930 +63891 84196 0.6280 +63891 84315 0.4470 +63891 84993 0.4540 +63891 140459 0.4280 +63891 146754 0.4380 +63891 285331 0.4500 +63891 285848 0.4780 +63891 347240 0.4120 +63891 389118 0.5220 +63892 64328 0.4180 +63892 79800 0.4760 +63892 115708 0.4090 +63892 117246 0.6800 +63892 129563 0.4660 +63892 143187 0.4360 +63892 221895 0.4490 +63892 285268 0.4370 +63893 64763 0.4210 +63893 79876 0.6620 +63893 80232 0.7200 +63893 80829 0.4400 +63893 84231 0.4650 +63893 118424 0.5480 +63893 148581 0.4190 +63893 150274 0.5330 +63893 154214 0.4090 +63893 171023 0.4890 +63893 221937 0.4880 +63893 284119 0.4370 +63893 284996 0.4010 +63893 286075 0.4770 +63893 387522 0.4390 +63894 64145 0.4060 +63894 64601 0.8870 +63894 65082 0.9780 +63894 79631 0.4420 +63894 80270 0.4170 +63894 84343 0.4340 +63894 122945 0.4830 +63895 63922 0.4450 +63895 79054 0.6120 +63895 80036 0.4070 +63895 80119 0.4170 +63895 84296 0.4700 +63895 84893 0.5330 +63895 116512 0.5210 +63895 117531 0.5750 +63895 117532 0.6850 +63895 144715 0.4060 +63895 161003 0.6760 +63895 222662 0.6390 +63895 246213 0.4070 +63895 254394 0.5940 +63895 441027 0.6220 +63897 79665 0.4030 +63897 84669 0.4470 +63897 92105 0.4630 +63897 124773 0.4860 +63897 399671 0.4460 +63898 64779 0.5100 +63898 80071 0.5570 +63898 221955 0.4290 +63898 360203 0.4330 +63898 375686 0.4050 +63898 643812 0.5070 +63899 64172 0.4580 +63899 64216 0.4530 +63899 64318 0.6950 +63899 64848 0.4280 +63899 79039 0.4330 +63899 79159 0.4090 +63899 79691 0.5490 +63899 79693 0.4340 +63899 79730 0.8680 +63899 79979 0.4580 +63899 80135 0.5770 +63899 80324 0.6450 +63899 81627 0.4230 +63899 81890 0.5110 +63899 83448 0.4810 +63899 83480 0.5850 +63899 84154 0.5900 +63899 84172 0.4580 +63899 84273 0.5010 +63899 84365 0.6500 +63899 84549 0.5400 +63899 84705 0.5400 +63899 84881 0.4440 +63899 91893 0.5910 +63899 92170 0.4300 +63899 115708 0.6380 +63899 117246 0.6210 +63899 123263 0.7920 +63899 126789 0.4280 +63899 130916 0.6840 +63899 142940 0.4790 +63899 158586 0.5970 +63899 221078 0.6830 +63899 285367 0.4440 +63899 285855 0.4240 +63899 345630 0.4080 +63899 387129 0.4240 +63899 387338 0.6050 +63901 79072 0.4550 +63901 79600 0.4190 +63901 83932 0.5280 +63901 91801 0.4240 +63901 93953 0.5070 +63901 128414 0.4570 +63901 145873 0.4040 +63901 155185 0.4720 +63901 201299 0.4380 +63901 202333 0.4090 +63901 284001 0.4540 +63901 341640 0.4090 +63901 414301 0.4300 +63904 79742 0.5020 +63904 80316 0.4810 +63904 127731 0.4600 +63904 284433 0.4800 +63904 389610 0.4200 +63905 64763 0.4990 +63905 203111 0.4270 +63905 255252 0.4110 +63905 285051 0.5060 +63906 64320 0.4780 +63906 64419 0.4720 +63906 79009 0.4510 +63906 79089 0.4960 +63906 79645 0.5320 +63906 79797 0.9990 +63906 79882 0.5650 +63906 80153 0.4740 +63906 83607 0.5900 +63906 84619 0.5850 +63906 84725 0.4560 +63906 84950 0.4740 +63906 85403 0.5500 +63906 89970 0.5700 +63906 91949 0.4780 +63906 124460 0.4430 +63906 131965 0.4780 +63906 200014 0.5780 +63906 222166 0.4360 +63906 223082 0.4870 +63908 64689 0.5210 +63908 79571 0.4990 +63908 79748 0.5290 +63908 81562 0.5030 +63908 81876 0.5820 +63908 83548 0.5460 +63908 90196 0.5010 +63908 90411 0.4990 +63908 91949 0.4990 +63908 112755 0.9530 +63908 116841 0.7990 +63908 134957 0.5760 +63908 143187 0.9480 +63908 149111 0.5080 +63908 203062 0.7800 +63908 203245 0.5450 +63908 254263 0.5620 +63908 339302 0.5400 +63908 415117 0.7930 +63908 474383 0.4470 +63908 594855 0.5710 +63910 65082 0.4180 +63910 85302 0.4020 +63910 116843 0.4280 +63910 140679 0.4510 +63910 147837 0.5060 +63910 643677 0.4560 +63910 692312 0.4280 +63915 65082 0.4830 +63915 79705 0.4250 +63915 79803 0.8820 +63915 81567 0.5450 +63915 84062 0.9960 +63915 84066 0.7780 +63915 84343 0.9190 +63915 84991 0.4270 +63915 89781 0.8360 +63915 140691 0.7080 +63915 282991 0.9940 +63915 345222 0.4080 +63915 388552 0.9950 +63915 404734 0.5430 +63915 729991 0.5350 +63916 79767 0.9780 +63916 80005 0.8640 +63916 81624 0.4290 +63916 84173 0.4990 +63916 84466 0.5320 +63916 255520 0.5330 +63916 390714 0.5020 +63917 64787 0.4290 +63917 64838 0.4160 +63917 118430 0.4870 +63917 140453 0.4020 +63917 143662 0.4230 +63917 192134 0.9210 +63917 199699 0.4760 +63917 200894 0.4090 +63917 200958 0.4010 +63917 727897 0.4150 +63917 728819 0.7770 +63920 79605 0.4770 +63920 79725 0.5860 +63920 84547 0.4890 +63920 151194 0.7320 +63920 203245 0.4600 +63920 267002 0.6920 +63920 283254 0.4330 +63920 643641 0.5010 +63922 63967 0.5850 +63922 64151 0.5980 +63922 64785 0.4420 +63922 79075 0.9990 +63922 79657 0.6530 +63922 79892 0.6080 +63922 79915 0.9240 +63922 79991 0.5800 +63922 80119 0.4930 +63922 80169 0.5630 +63922 80198 0.5110 +63922 81533 0.4930 +63922 81620 0.7240 +63922 83990 0.6160 +63922 84296 0.6050 +63922 84893 0.5250 +63922 84896 0.4160 +63922 90381 0.4270 +63922 113000 0.5800 +63922 113130 0.5170 +63922 114799 0.9640 +63922 151648 0.4030 +63922 152789 0.4540 +63922 157570 0.9480 +63922 162466 0.4990 +63922 201255 0.4240 +63922 254394 0.7840 +63922 100134934 0.5040 +63923 283820 0.4940 +63923 284217 0.5590 +63923 408050 0.4920 +63924 63976 0.4090 +63924 79071 0.4310 +63924 79888 0.4200 +63924 80339 0.4080 +63924 83401 0.4380 +63924 84522 0.4140 +63924 84649 0.6380 +63924 84699 0.7400 +63924 84803 0.5220 +63924 116255 0.6230 +63924 116519 0.5930 +63924 128486 0.5430 +63924 137964 0.4940 +63924 149685 0.5050 +63924 161247 0.5070 +63924 284119 0.4920 +63924 286753 0.4540 +63924 440503 0.6680 +63924 729359 0.7780 +63925 63935 0.6210 +63925 79023 0.4370 +63925 79648 0.6520 +63925 84879 0.6820 +63925 85378 0.4380 +63925 90204 0.5090 +63925 128497 0.5170 +63925 140825 0.4590 +63925 150165 0.5180 +63925 163786 0.6960 +63925 259266 0.6060 +63925 280664 0.4680 +63925 284403 0.7090 +63925 286451 0.7810 +63926 64518 0.6160 +63926 81492 0.5470 +63926 85478 0.6070 +63926 85865 0.4500 +63926 122616 0.5610 +63926 128710 0.4160 +63926 130888 0.6020 +63926 196385 0.6060 +63926 345895 0.5470 +63926 401551 0.6190 +63926 100128927 0.4040 +63928 64895 0.4010 +63928 642489 0.4440 +63928 653808 0.4910 +63929 64146 0.4570 +63929 79809 0.4170 +63929 80184 0.7380 +63929 81570 0.4100 +63929 83752 0.4160 +63929 83943 0.5950 +63929 84859 0.4200 +63929 91147 0.4330 +63929 91419 0.5430 +63929 115209 0.5660 +63929 123872 0.8010 +63929 124401 0.4990 +63929 151313 0.4590 +63929 196294 0.4880 +63929 254042 0.4720 +63929 284086 0.4160 +63929 285521 0.4200 +63931 64146 0.7660 +63931 64216 0.4870 +63931 64374 0.7790 +63931 64432 0.9990 +63931 64745 0.9400 +63931 64928 0.8830 +63931 64949 0.9890 +63931 64951 0.9970 +63931 64960 0.9990 +63931 64963 0.9990 +63931 64965 0.9990 +63931 64968 0.9990 +63931 64969 0.9990 +63931 64975 0.9950 +63931 64976 0.9940 +63931 64978 0.9600 +63931 64979 0.9990 +63931 64981 0.9960 +63931 64983 0.9970 +63931 65003 0.9970 +63931 65005 0.9960 +63931 65008 0.9810 +63931 65080 0.9960 +63931 65121 0.6550 +63931 65122 0.6550 +63931 65993 0.9970 +63931 78988 0.8660 +63931 79590 0.9940 +63931 79631 0.8050 +63931 79668 0.6040 +63931 79728 0.4100 +63931 79863 0.8290 +63931 79922 0.4270 +63931 80146 0.5110 +63931 80222 0.5640 +63931 80270 0.5110 +63931 81031 0.4040 +63931 84172 0.8210 +63931 84273 0.8090 +63931 84311 0.8780 +63931 84340 0.6400 +63931 84545 0.9930 +63931 84901 0.4290 +63931 84993 0.6270 +63931 85377 0.4700 +63931 85476 0.9610 +63931 87178 0.4910 +63931 90313 0.5240 +63931 90480 0.8530 +63931 90624 0.6550 +63931 91252 0.4330 +63931 91574 0.5570 +63931 92196 0.5180 +63931 92259 0.8310 +63931 92399 0.9730 +63931 93107 0.5010 +63931 93517 0.5110 +63931 93550 0.4670 +63931 114134 0.4030 +63931 114781 0.6490 +63931 114987 0.7630 +63931 116540 0.8920 +63931 116541 0.9120 +63931 116832 0.7060 +63931 118487 0.9880 +63931 122481 0.4210 +63931 122704 0.8590 +63931 123283 0.5560 +63931 124454 0.7060 +63931 124995 0.9760 +63931 126402 0.9340 +63931 128308 0.9440 +63931 131118 0.6180 +63931 140032 0.8180 +63931 140801 0.7740 +63931 143244 0.6620 +63931 143630 0.4540 +63931 147011 0.4080 +63931 148022 0.5420 +63931 149478 0.4020 +63931 150472 0.4590 +63931 152100 0.4170 +63931 153443 0.4770 +63931 154091 0.4030 +63931 154288 0.4080 +63931 157310 0.7790 +63931 158067 0.4210 +63931 158234 0.7850 +63931 164153 0.4670 +63931 169522 0.5010 +63931 170850 0.5010 +63931 196074 0.8450 +63931 200916 0.8190 +63931 205717 0.4090 +63931 219402 0.9130 +63931 219927 0.9970 +63931 220869 0.4550 +63931 221264 0.4250 +63931 254268 0.5010 +63931 255308 0.5140 +63931 283518 0.5010 +63931 285126 0.4310 +63931 285282 0.4390 +63931 285855 0.8200 +63931 286075 0.6040 +63931 343068 0.6550 +63931 343070 0.6550 +63931 345051 0.6710 +63931 347487 0.7690 +63931 353376 0.5420 +63931 374659 0.8240 +63931 387082 0.5560 +63931 387129 0.8050 +63931 388512 0.4610 +63931 390999 0.6550 +63931 391002 0.6550 +63931 400735 0.6550 +63931 400736 0.6550 +63931 440560 0.6550 +63931 440561 0.6550 +63931 441873 0.6550 +63931 445571 0.4550 +63931 619279 0.4080 +63931 641776 0.7430 +63931 642987 0.4080 +63931 643909 0.7430 +63931 644019 0.4550 +63931 645051 0.5810 +63931 645073 0.5810 +63931 645359 0.6550 +63931 653247 0.4030 +63931 653619 0.6550 +63931 654364 0.4800 +63931 728524 0.7430 +63931 728689 0.5460 +63931 729396 0.5810 +63931 729422 0.5810 +63931 729428 0.5810 +63931 729431 0.5810 +63931 729442 0.5810 +63931 729447 0.5810 +63931 729528 0.6550 +63931 100008586 0.5810 +63931 100132399 0.5810 +63931 100287482 0.7690 +63931 100302736 0.5420 +63931 100505478 0.8050 +63931 100526842 0.8370 +63931 100529097 0.7610 +63931 100529239 0.8540 +63931 100996746 0.7430 +63931 101929983 0.6550 +63931 102724473 0.5810 +63931 105180390 0.7430 +63931 105180391 0.7430 +63931 114483834 0.5230 +63932 64978 0.4430 +63932 65109 0.8210 +63932 65991 0.4660 +63932 79786 0.4590 +63932 79869 0.4100 +63932 83447 0.4870 +63932 84081 0.5280 +63932 90231 0.4410 +63932 112755 0.4390 +63932 122773 0.4390 +63932 126823 0.4390 +63932 143884 0.4990 +63932 144983 0.4150 +63932 157310 0.4390 +63932 199746 0.5130 +63932 203427 0.6360 +63932 253769 0.6450 +63932 283106 0.5130 +63932 415117 0.4200 +63933 79085 0.9600 +63933 80024 0.7060 +63933 90550 0.9340 +63933 91689 0.9950 +63933 221154 0.9980 +63933 286097 0.9920 +63934 388566 0.7840 +63935 64783 0.4610 +63935 64848 0.4480 +63935 64863 0.6240 +63935 79066 0.6330 +63935 79068 0.5770 +63935 79872 0.4680 +63935 90204 0.4020 +63935 91746 0.4840 +63935 115708 0.4010 +63935 140825 0.4030 +63935 221120 0.4510 +63935 253943 0.4300 +63939 80223 0.5910 +63939 123355 0.5050 +63939 125972 0.4240 +63939 140461 0.5580 +63940 63943 0.4390 +63940 79930 0.4310 +63940 80834 0.4160 +63940 80835 0.4180 +63940 80863 0.6610 +63940 80864 0.7290 +63940 83756 0.4280 +63940 94235 0.4110 +63940 126006 0.5780 +63940 163589 0.4010 +63940 165140 0.4500 +63940 221472 0.5700 +63940 257106 0.4180 +63940 338398 0.4090 +63940 338442 0.4280 +63940 346562 0.4130 +63941 64168 0.7980 +63941 83852 0.4280 +63941 84447 0.4370 +63941 128864 0.4800 +63941 162387 0.5200 +63941 197335 0.4690 +63941 284371 0.4150 +63941 337867 0.4610 +63941 100131755 0.5240 +63943 79812 0.4780 +63943 80222 0.5170 +63943 80863 0.4250 +63943 80864 0.5720 +63943 123169 0.4760 +63943 140862 0.4090 +63946 81602 0.4200 +63946 132141 0.4670 +63946 133491 0.5020 +63946 147719 0.6290 +63946 148870 0.4430 +63946 220047 0.4660 +63946 399814 0.5130 +63947 90161 0.4180 +63947 728656 0.7860 +63948 158521 0.4190 +63948 166863 0.6280 +63948 205860 0.4460 +63948 346673 0.4460 +63948 387718 0.4480 +63950 79618 0.4530 +63950 116843 0.4440 +63950 116033993 0.4110 +63951 390259 0.4400 +63967 64151 0.4770 +63967 64785 0.9720 +63967 78990 0.4370 +63967 79075 0.5750 +63967 79648 0.5400 +63967 79682 0.4190 +63967 79733 0.5230 +63967 79866 0.6690 +63967 79915 0.8630 +63967 79968 0.5130 +63967 79991 0.4100 +63967 80174 0.4660 +63967 80198 0.4310 +63967 81620 0.7220 +63967 81930 0.6530 +63967 83461 0.4320 +63967 83540 0.5610 +63967 83695 0.8670 +63967 83879 0.4950 +63967 83903 0.4750 +63967 83990 0.9040 +63967 84083 0.4370 +63967 84126 0.9740 +63967 84250 0.4020 +63967 84296 0.9300 +63967 84515 0.7090 +63967 85015 0.4190 +63967 90381 0.6580 +63967 93323 0.4120 +63967 94025 0.4270 +63967 113130 0.4910 +63967 122769 0.8890 +63967 144455 0.4830 +63967 144715 0.4210 +63967 146909 0.4490 +63967 151648 0.4970 +63967 157313 0.4410 +63967 157570 0.5770 +63967 169355 0.4200 +63967 201973 0.9960 +63967 220134 0.4050 +63967 253714 0.5120 +63967 259266 0.6970 +63970 64065 0.4070 +63970 94241 0.6240 +63970 147923 0.8300 +63971 64837 0.6480 +63971 81565 0.6350 +63971 81930 0.6180 +63971 83752 0.4200 +63971 84643 0.5720 +63971 89953 0.4540 +63971 90957 0.5070 +63971 90990 0.6320 +63971 124602 0.5980 +63971 130340 0.6140 +63971 146909 0.5980 +63971 147700 0.4950 +63971 221458 0.5730 +63971 252983 0.4050 +63971 374654 0.6000 +63971 378884 0.4790 +63971 401236 0.6450 +63973 64211 0.4850 +63973 64843 0.8050 +63973 64919 0.4830 +63973 79727 0.4700 +63973 79923 0.4290 +63973 84504 0.5310 +63973 89780 0.4090 +63973 120237 0.5960 +63973 121643 0.4590 +63973 146713 0.5860 +63973 170825 0.6190 +63973 219409 0.4670 +63973 221833 0.4080 +63973 338917 0.5710 +63973 388585 0.6380 +63973 100507003 0.4950 +63974 64919 0.4640 +63974 83482 0.4210 +63974 84525 0.4010 +63974 84684 0.4490 +63974 132204 0.4090 +63974 137970 0.4110 +63974 140679 0.5170 +63974 146713 0.4690 +63974 154215 0.5490 +63974 388585 0.4340 +63976 64641 0.7910 +63976 64784 0.4070 +63976 79813 0.9620 +63976 83401 0.7510 +63976 84676 0.4080 +63976 114907 0.4680 +63976 126129 0.5060 +63976 133060 0.4200 +63976 133522 0.8720 +63976 137392 0.4200 +63976 140625 0.5190 +63976 145957 0.4100 +63976 151449 0.4640 +63976 219623 0.7950 +63976 252995 0.6220 +63976 253738 0.5560 +63976 283248 0.4290 +63976 376497 0.4320 +63976 431707 0.5240 +63976 644994 0.5060 +63976 653604 0.5840 +63977 64434 0.4380 +63977 64754 0.4620 +63977 64968 0.4240 +63977 83852 0.4560 +63977 84193 0.4640 +63977 114826 0.6470 +63977 129563 0.5330 +63977 146059 0.7810 +63977 154664 0.4230 +63977 200008 0.4860 +63977 221785 0.5320 +63977 256646 0.4250 +63977 285175 0.4580 +63977 285267 0.4370 +63977 285331 0.4070 +63977 375449 0.4240 +63977 643155 0.4720 +63977 100289678 0.4360 +63978 64321 0.6350 +63978 66037 0.4640 +63978 79727 0.9280 +63978 79813 0.4030 +63978 79923 0.9790 +63978 80312 0.8830 +63978 83992 0.6810 +63978 84891 0.8520 +63978 85369 0.6110 +63978 93166 0.8810 +63978 116154 0.5130 +63978 132625 0.5280 +63978 151647 0.5140 +63978 151871 0.6120 +63978 201456 0.6430 +63978 342977 0.7990 +63978 346673 0.4480 +63978 359787 0.7230 +63978 373863 0.6090 +63978 389421 0.4520 +63979 80198 0.4180 +63979 83932 0.4220 +63979 126074 0.6830 +63979 137886 0.4800 +63979 375567 0.4600 +63979 440712 0.4670 +63979 100130988 0.5300 +63982 79734 0.5630 +63982 112476 0.5710 +63982 119765 0.4470 +63982 219493 0.4020 +63982 221692 0.4150 +63982 259232 0.4270 +64005 64105 0.4250 +64005 79019 0.7220 +64005 79990 0.4590 +64005 91687 0.4240 +64005 94239 0.6230 +64005 221491 0.4630 +64005 339229 0.5260 +64005 374403 0.4720 +64061 64110 0.4130 +64061 64208 0.4300 +64061 94239 0.4810 +64061 388951 0.6630 +64061 389857 0.4180 +64061 100130086 0.4470 +64061 100506164 0.4110 +64062 64318 0.4480 +64062 64773 0.5480 +64062 79612 0.4290 +64062 92092 0.4070 +64062 114034 0.4260 +64062 140890 0.4600 +64062 196441 0.7470 +64062 376940 0.4260 +64062 100529063 0.4030 +64063 136853 0.4590 +64063 157855 0.4470 +64063 390321 0.4440 +64063 729627 0.4750 +64064 65985 0.9420 +64064 83475 0.7750 +64064 84263 0.4960 +64064 84842 0.4170 +64064 124359 0.4310 +64064 148109 0.4180 +64064 253175 0.4300 +64064 730005 0.4180 +64065 64393 0.4810 +64065 65124 0.4580 +64065 147409 0.6550 +64067 81617 0.4020 +64067 83938 0.4060 +64067 84261 0.5060 +64067 84966 0.4450 +64067 93986 0.5030 +64067 112398 0.4690 +64067 112399 0.6540 +64067 126147 0.4400 +64067 139135 0.4120 +64067 157807 0.4490 +64067 266743 0.4820 +64072 64403 0.5500 +64072 64405 0.5950 +64072 64699 0.7020 +64072 65217 0.9990 +64072 79651 0.5460 +64072 79784 0.4400 +64072 79955 0.7390 +64072 83605 0.4250 +64072 83715 0.6520 +64072 84059 0.9700 +64072 84530 0.4790 +64072 113278 0.4110 +64072 117531 0.8400 +64072 117532 0.8750 +64072 124590 0.9920 +64072 125336 0.6970 +64072 126326 0.5620 +64072 146183 0.5980 +64072 150677 0.6240 +64072 161497 0.7420 +64072 222256 0.7270 +64072 222662 0.7760 +64072 246213 0.4650 +64072 255043 0.4380 +64072 257629 0.4340 +64072 259236 0.6710 +64072 283310 0.4590 +64072 286262 0.4790 +64072 286676 0.4750 +64072 340990 0.5890 +64072 344752 0.4180 +64072 346007 0.4860 +64072 375611 0.6450 +64072 388551 0.4940 +64072 388939 0.4370 +64072 389118 0.4820 +64072 389207 0.7270 +64072 414152 0.4050 +64072 494513 0.6260 +64073 94274 0.7800 +64073 284532 0.4330 +64073 394263 0.4080 +64077 79026 0.4060 +64077 83449 0.4030 +64077 83746 0.4490 +64077 84064 0.4940 +64077 84159 0.4770 +64077 90423 0.7150 +64077 121665 0.4380 +64077 126328 0.5050 +64077 153396 0.6510 +64077 192111 0.5120 +64077 245972 0.6990 +64077 245973 0.7380 +64077 374291 0.5220 +64077 388677 0.4920 +64077 390077 0.4790 +64077 101929926 0.5070 +64078 64881 0.4050 +64078 85413 0.4630 +64078 114571 0.4160 +64078 222962 0.7020 +64080 64326 0.4060 +64080 83440 0.4010 +64080 84076 0.9600 +64080 122622 0.5810 +64080 129831 0.4080 +64080 130589 0.5570 +64080 130752 0.5310 +64080 150921 0.4290 +64080 151531 0.6280 +64080 161823 0.4170 +64080 221823 0.9590 +64080 284273 0.4780 +64080 414328 0.5500 +64080 729020 0.4590 +64081 79949 0.4670 +64081 84735 0.5150 +64081 113451 0.7020 +64081 115708 0.4790 +64081 148811 0.5090 +64081 160335 0.4210 +64081 220202 0.6700 +64081 100526760 0.5120 +64083 64689 0.8180 +64083 64746 0.5610 +64083 65977 0.4560 +64083 79717 0.4520 +64083 81554 0.4790 +64083 81555 0.6860 +64083 81876 0.4960 +64083 83452 0.4210 +64083 83548 0.4660 +64083 83992 0.5710 +64083 84364 0.4390 +64083 84618 0.6440 +64083 84700 0.5920 +64083 84725 0.4260 +64083 85477 0.4860 +64083 89866 0.5120 +64083 91949 0.5320 +64083 92335 0.6840 +64083 116987 0.6110 +64083 133482 0.4610 +64083 136991 0.5960 +64083 137902 0.4310 +64083 143187 0.4230 +64083 149111 0.4380 +64083 157310 0.4100 +64083 205428 0.5340 +64083 254263 0.5660 +64083 255738 0.8890 +64083 375056 0.5430 +64083 399687 0.9710 +64083 405754 0.4060 +64084 64837 0.7070 +64084 79023 0.4820 +64084 89953 0.7000 +64084 147700 0.5690 +64084 196951 0.4200 +64084 348995 0.4200 +64084 349565 0.9020 +64087 64965 0.4250 +64087 79072 0.5360 +64087 79611 0.4720 +64087 79728 0.5420 +64087 83878 0.9600 +64087 84060 0.5490 +64087 84263 0.6110 +64087 84693 0.6810 +64087 84842 0.8600 +64087 84959 0.4200 +64087 92483 0.5440 +64087 120892 0.4440 +64087 124359 0.4770 +64087 128240 0.5180 +64087 130752 0.5440 +64087 158584 0.5060 +64087 160287 0.5440 +64087 253175 0.4760 +64087 283985 0.5350 +64087 284422 0.4830 +64087 326625 0.4030 +64087 375337 0.5460 +64087 440145 0.5500 +64087 122405565 0.4830 +64089 79752 0.4500 +64089 81609 0.5040 +64089 83891 0.4580 +64089 89848 0.5990 +64089 90203 0.5050 +64089 112574 0.4310 +64089 124460 0.5400 +64089 221458 0.6020 +64089 254122 0.4070 +64089 257364 0.4180 +64089 259173 0.4750 +64089 338661 0.4470 +64089 360023 0.4170 +64090 129807 0.9040 +64090 442038 0.5880 +64091 79041 0.4970 +64091 84236 0.4470 +64091 115557 0.5070 +64091 165904 0.6170 +64091 203859 0.4220 +64091 401265 0.4480 +64092 79652 0.5150 +64092 115352 0.4890 +64092 146547 0.4660 +64092 389432 0.4060 +64093 64839 0.4040 +64093 79960 0.5920 +64093 80031 0.4170 +64093 164633 0.4250 +64093 266812 0.4010 +64094 79981 0.5010 +64094 81545 0.4900 +64094 83643 0.4600 +64094 84525 0.4680 +64094 157695 0.5430 +64094 168002 0.5270 +64094 253769 0.5110 +64094 345222 0.4480 +64094 401236 0.5120 +64096 85358 0.4990 +64096 220164 0.5750 +64098 64926 0.5170 +64098 79758 0.4800 +64098 80263 0.4020 +64098 80755 0.4530 +64098 80895 0.4210 +64098 83660 0.8640 +64098 83706 0.6720 +64098 84106 0.4240 +64098 96626 0.7260 +64098 117289 0.4540 +64098 146722 0.4150 +64098 257106 0.4850 +64098 374403 0.4700 +64100 83639 0.5000 +64100 127670 0.4990 +64100 256710 0.5540 +64100 374393 0.4590 +64100 374920 0.5170 +64101 79807 0.4980 +64101 84628 0.9990 +64101 254050 0.4290 +64102 84283 0.5960 +64102 151449 0.7190 +64102 283078 0.8560 +64102 389125 0.4260 +64102 392255 0.5320 +64102 642658 0.9510 +64105 64151 0.6490 +64105 64946 0.9990 +64105 79003 0.4350 +64105 79019 0.9990 +64105 79172 0.9990 +64105 79682 0.9990 +64105 79801 0.4510 +64105 79915 0.4130 +64105 79980 0.6580 +64105 80152 0.9980 +64105 81930 0.7290 +64105 83461 0.5790 +64105 83540 0.7930 +64105 83879 0.5860 +64105 84057 0.5750 +64105 90417 0.4700 +64105 91687 0.9990 +64105 113130 0.4660 +64105 114569 0.5240 +64105 121504 0.8010 +64105 147841 0.6850 +64105 151246 0.5400 +64105 151648 0.5400 +64105 157313 0.4590 +64105 157570 0.4970 +64105 201254 0.9950 +64105 220134 0.6440 +64105 221150 0.5830 +64105 259266 0.5910 +64105 378708 0.9980 +64105 387103 0.9960 +64105 401541 0.9980 +64105 554313 0.8010 +64106 64111 0.9820 +64106 115557 0.5130 +64106 162998 0.5230 +64106 342132 0.5150 +64106 347148 0.8910 +64106 730005 0.4770 +64108 64135 0.8030 +64108 64761 0.6080 +64108 79132 0.7750 +64108 81030 0.6330 +64108 81573 0.4420 +64108 83597 0.4150 +64108 83666 0.8050 +64108 84166 0.4140 +64108 85441 0.5070 +64108 91543 0.9270 +64108 94240 0.7300 +64108 115361 0.5260 +64108 115362 0.4420 +64108 116071 0.5670 +64108 129607 0.6700 +64108 165631 0.5030 +64108 219285 0.7110 +64108 388646 0.5040 +64108 439996 0.4350 +64110 64210 0.6730 +64110 79677 0.6370 +64110 158511 0.8240 +64110 163126 0.4950 +64110 197370 0.8400 +64110 266740 0.4960 +64110 266743 0.7820 +64110 283951 0.4050 +64110 286053 0.6180 +64110 493861 0.6590 +64111 79002 0.5110 +64111 80763 0.4510 +64111 81341 0.7160 +64111 84109 0.5060 +64111 84634 0.8640 +64111 84701 0.5760 +64111 84886 0.7280 +64111 91300 0.7040 +64111 125965 0.5120 +64111 131474 0.4030 +64111 140564 0.4630 +64111 164668 0.4630 +64111 164684 0.4730 +64111 200315 0.4630 +64111 200316 0.4630 +64111 283459 0.5740 +64111 347148 0.7640 +64111 388753 0.5110 +64111 440567 0.6950 +64112 81631 0.4050 +64112 83593 0.8110 +64112 84968 0.6690 +64112 166824 0.9010 +64112 283349 0.5140 +64114 139322 0.4320 +64114 285180 0.4690 +64115 79679 0.6450 +64115 80380 0.6090 +64115 80381 0.5960 +64115 83706 0.4060 +64115 84305 0.5940 +64115 84868 0.7040 +64115 89790 0.4260 +64115 126259 0.7290 +64115 151888 0.7970 +64115 152404 0.9720 +64115 201633 0.6790 +64115 284194 0.6500 +64115 374383 0.4070 +64115 654346 0.6500 +64116 64924 0.7290 +64116 79047 0.4010 +64116 79901 0.4700 +64116 84102 0.4040 +64116 89866 0.4410 +64116 91252 0.4680 +64116 132789 0.4170 +64116 134359 0.4200 +64116 148867 0.7480 +64116 151393 0.5530 +64116 169026 0.5980 +64116 201266 0.7230 +64116 261729 0.4820 +64116 100526835 0.4260 +64118 64425 0.4540 +64118 64794 0.4230 +64118 79039 0.4300 +64118 79050 0.7080 +64118 79954 0.4060 +64118 79979 0.5620 +64118 80135 0.6830 +64118 80308 0.6780 +64118 80324 0.5060 +64118 83480 0.6160 +64118 83743 0.6480 +64118 84128 0.6280 +64118 84154 0.6040 +64118 84549 0.6830 +64118 84916 0.6020 +64118 84946 0.4190 +64118 90231 0.4780 +64118 90353 0.4440 +64118 92856 0.6970 +64118 93587 0.5590 +64118 115708 0.7320 +64118 115939 0.5430 +64118 117246 0.5470 +64118 152992 0.4250 +64118 221078 0.4650 +64121 64223 0.9840 +64121 64798 0.8430 +64121 79109 0.5370 +64121 79726 0.8480 +64121 81929 0.8430 +64121 83667 0.7910 +64121 84219 0.9990 +64121 84232 0.4880 +64121 84335 0.9910 +64121 84946 0.8940 +64121 90423 0.5300 +64121 96459 0.9690 +64121 120103 0.6040 +64121 121268 0.4390 +64121 127124 0.5710 +64121 140775 0.5640 +64121 144577 0.7420 +64121 153129 0.9990 +64121 154743 0.7490 +64121 155066 0.5350 +64121 201163 0.9990 +64121 203228 0.4550 +64121 206358 0.8520 +64121 245972 0.5640 +64121 245973 0.5270 +64121 253260 0.7270 +64121 337878 0.4070 +64121 389541 0.9990 +64121 440275 0.4090 +64121 652968 0.7920 +64121 654346 0.7800 +64121 729438 0.6530 +64122 161514 0.4950 +64122 164656 0.4090 +64123 79812 0.4650 +64123 80177 0.6360 +64123 90952 0.4370 +64123 140706 0.4300 +64123 147463 0.4590 +64123 161198 0.5800 +64123 169611 0.4060 +64123 221395 0.5290 +64123 374618 0.4040 +64123 374986 0.4770 +64123 641700 0.4840 +64127 64135 0.8550 +64127 64170 0.9950 +64127 64581 0.7090 +64127 79092 0.7710 +64127 79132 0.6540 +64127 79792 0.5010 +64127 80712 0.4140 +64127 81603 0.4160 +64127 81793 0.5170 +64127 81858 0.8310 +64127 83737 0.5380 +64127 84166 0.4720 +64127 84433 0.5750 +64127 84674 0.5980 +64127 84929 0.4020 +64127 85407 0.4030 +64127 90268 0.4410 +64127 90865 0.4260 +64127 90933 0.4290 +64127 91662 0.5970 +64127 93978 0.5210 +64127 114548 0.6690 +64127 114609 0.5710 +64127 115004 0.4570 +64127 115362 0.4850 +64127 117289 0.4330 +64127 120892 0.5290 +64127 121260 0.5710 +64127 124460 0.4620 +64127 130120 0.5740 +64127 136991 0.4120 +64127 144811 0.6990 +64127 147945 0.5080 +64127 148022 0.4190 +64127 149233 0.9090 +64127 159296 0.6580 +64127 160857 0.7040 +64127 246330 0.4280 +64127 257397 0.6440 +64127 339145 0.4260 +64127 345611 0.8980 +64127 400935 0.4680 +64127 440275 0.4010 +64127 100289462 0.6050 +64129 83732 0.4330 +64129 90480 0.4990 +64129 202915 0.4790 +64129 222584 0.4080 +64129 344018 0.4630 +64130 64398 0.7630 +64130 143098 0.6930 +64130 221749 0.6100 +64130 259197 0.6870 +64130 346562 0.4690 +64131 64132 0.9530 +64131 64711 0.4320 +64131 79586 0.6000 +64131 80146 0.6600 +64131 84068 0.4080 +64131 92370 0.4640 +64131 113189 0.5000 +64131 124583 0.6860 +64131 126792 0.8090 +64131 132884 0.4110 +64131 148789 0.4100 +64131 152002 0.4870 +64131 166012 0.4370 +64131 221914 0.5580 +64131 283464 0.4360 +64131 283820 0.8010 +64131 337876 0.4260 +64131 375790 0.5030 +64131 408050 0.9180 +64132 79586 0.5040 +64132 80146 0.6010 +64132 84197 0.6220 +64132 92370 0.4400 +64132 113189 0.4770 +64132 126792 0.7960 +64132 153201 0.4680 +64132 162427 0.4880 +64132 166012 0.4380 +64132 221914 0.5770 +64132 340024 0.5040 +64132 347734 0.5880 +64132 348932 0.5040 +64132 375790 0.4960 +64135 64170 0.7650 +64135 64581 0.4490 +64135 64761 0.7990 +64135 79009 0.5050 +64135 79132 0.9990 +64135 79621 0.6500 +64135 79671 0.9040 +64135 79677 0.5290 +64135 80013 0.5020 +64135 80143 0.6110 +64135 80198 0.5620 +64135 81030 0.6580 +64135 81622 0.5020 +64135 81793 0.4010 +64135 81844 0.5020 +64135 83666 0.8880 +64135 83737 0.5950 +64135 84153 0.6230 +64135 84166 0.9940 +64135 84276 0.4370 +64135 84282 0.9160 +64135 84618 0.4470 +64135 84893 0.5560 +64135 85363 0.5650 +64135 85364 0.7670 +64135 85441 0.6320 +64135 87178 0.5880 +64135 89122 0.6930 +64135 90134 0.7050 +64135 91543 0.9540 +64135 91947 0.6530 +64135 94240 0.8510 +64135 114548 0.5920 +64135 114609 0.5000 +64135 115004 0.8670 +64135 115361 0.6560 +64135 115362 0.6210 +64135 122509 0.4120 +64135 126206 0.4330 +64135 129607 0.8080 +64135 135644 0.8450 +64135 148022 0.8570 +64135 151636 0.6380 +64135 152137 0.5610 +64135 163702 0.5790 +64135 165631 0.7130 +64135 170506 0.5710 +64135 201292 0.9800 +64135 219285 0.8100 +64135 221302 0.4160 +64135 254528 0.4120 +64135 282616 0.6080 +64135 282617 0.5800 +64135 282618 0.6820 +64135 338376 0.5280 +64135 340061 0.6560 +64135 345611 0.5550 +64135 377630 0.5700 +64135 392188 0.4990 +64135 400668 0.4180 +64135 401447 0.4990 +64135 439996 0.5520 +64135 645402 0.4990 +64135 645836 0.4990 +64135 728373 0.5850 +64135 728386 0.4990 +64135 100287144 0.4990 +64135 100287178 0.4990 +64135 100287205 0.4990 +64135 100287238 0.4990 +64135 100287327 0.4990 +64135 100287364 0.4990 +64135 100287404 0.4990 +64135 100287441 0.4990 +64135 100287478 0.4990 +64135 100287513 0.4990 +64137 64240 0.4160 +64137 79671 0.5210 +64137 85320 0.5280 +64137 89845 0.5290 +64137 114483834 0.5580 +64145 64284 0.6080 +64145 64601 0.5540 +64145 65082 0.6990 +64145 84315 0.4280 +64145 85377 0.4550 +64145 143187 0.4410 +64145 200576 0.4510 +64145 221960 0.4590 +64145 285268 0.4380 +64146 64374 0.6180 +64146 64960 0.7800 +64146 64963 0.7810 +64146 64965 0.9460 +64146 64968 0.9440 +64146 64969 0.8240 +64146 64979 0.8210 +64146 64983 0.9410 +64146 65003 0.7140 +64146 65005 0.9460 +64146 65121 0.4140 +64146 65122 0.4140 +64146 79590 0.7940 +64146 91574 0.5000 +64146 92399 0.7070 +64146 92935 0.4260 +64146 123263 0.9040 +64146 126402 0.7680 +64146 140801 0.6040 +64146 219927 0.9590 +64146 254042 0.6640 +64146 285855 0.6270 +64146 343068 0.4140 +64146 343070 0.4140 +64146 347487 0.6070 +64146 374659 0.5220 +64146 387129 0.6240 +64146 390999 0.4140 +64146 391002 0.4140 +64146 400735 0.4140 +64146 400736 0.4140 +64146 440560 0.4140 +64146 440561 0.4140 +64146 441024 0.4180 +64146 441873 0.4140 +64146 641776 0.4850 +64146 643909 0.4850 +64146 645359 0.4140 +64146 653619 0.4140 +64146 728524 0.4850 +64146 729528 0.4140 +64146 100287482 0.6070 +64146 100505478 0.6240 +64146 100526842 0.7990 +64146 100996746 0.4850 +64146 101929983 0.4140 +64146 105180390 0.4850 +64146 105180391 0.4850 +64149 79269 0.5810 +64149 79932 0.4500 +64149 80207 0.4210 +64149 80227 0.4600 +64149 84313 0.8960 +64149 91782 0.4010 +64149 92421 0.5690 +64149 115761 0.4090 +64149 117177 0.4570 +64149 119504 0.4160 +64149 124936 0.4270 +64149 128866 0.5880 +64149 130026 0.4250 +64149 148206 0.4990 +64149 157769 0.9650 +64149 256356 0.4490 +64149 283316 0.4310 +64149 100526767 0.5660 +64151 64946 0.4550 +64151 79019 0.6340 +64151 79145 0.5030 +64151 79677 0.7410 +64151 79682 0.8460 +64151 79733 0.6240 +64151 79801 0.8300 +64151 79866 0.4870 +64151 80306 0.5420 +64151 81610 0.5380 +64151 81620 0.6310 +64151 81624 0.4670 +64151 81626 0.6130 +64151 81930 0.8130 +64151 83461 0.8100 +64151 83540 0.9300 +64151 83879 0.4770 +64151 84057 0.8240 +64151 84296 0.6660 +64151 84930 0.4870 +64151 84946 0.4020 +64151 90362 0.4120 +64151 90381 0.5060 +64151 90417 0.4940 +64151 113130 0.8860 +64151 144455 0.5460 +64151 146909 0.6260 +64151 147841 0.5570 +64151 150468 0.8640 +64151 151246 0.5730 +64151 151648 0.7190 +64151 157313 0.8600 +64151 157570 0.5730 +64151 220134 0.7430 +64151 221150 0.7790 +64151 254251 0.8640 +64151 259266 0.9720 +64151 345930 0.6230 +64151 387103 0.5850 +64167 64170 0.4300 +64167 84166 0.5050 +64167 84868 0.4050 +64167 149233 0.4030 +64168 79645 0.4130 +64168 114792 0.4100 +64168 140578 0.4030 +64168 197335 0.5660 +64168 386672 0.4160 +64170 64581 0.9730 +64170 79092 0.6140 +64170 81704 0.4690 +64170 84433 0.8210 +64170 84674 0.4330 +64170 84818 0.4800 +64170 93978 0.9220 +64170 112744 0.5070 +64170 114548 0.7560 +64170 117145 0.4680 +64170 149233 0.7090 +64170 159296 0.5660 +64170 338339 0.7150 +64170 345611 0.5230 +64170 653689 0.6610 +64170 728489 0.4830 +64170 100289462 0.4420 +64172 64965 0.4230 +64172 79691 0.4930 +64172 79693 0.9890 +64172 79828 0.4020 +64172 79877 0.5430 +64172 79896 0.4430 +64172 80222 0.5030 +64172 80347 0.5390 +64172 81890 0.4180 +64172 83480 0.4480 +64172 84172 0.6330 +64172 84520 0.8880 +64172 84705 0.6010 +64172 84881 0.4440 +64172 90353 0.4470 +64172 94101 0.4770 +64172 112858 0.9580 +64172 123263 0.4360 +64172 123283 0.4380 +64172 150709 0.9320 +64172 196074 0.4190 +64172 339175 0.4420 +64172 100131211 0.5650 +64174 64180 0.7020 +64174 79656 0.4790 +64174 84735 0.4100 +64174 283897 0.4310 +64174 339976 0.4990 +64175 79078 0.4070 +64175 79709 0.5190 +64175 80010 0.6790 +64175 80781 0.6130 +64175 81578 0.6700 +64175 84300 0.4330 +64175 84570 0.5030 +64175 84955 0.6190 +64175 85301 0.7120 +64175 90993 0.6480 +64175 91522 0.5220 +64175 121340 0.5830 +64175 131873 0.5310 +64175 136227 0.5470 +64175 155382 0.4480 +64175 169044 0.6310 +64175 255631 0.6170 +64175 283208 0.5980 +64175 340267 0.6730 +64175 387733 0.7220 +64180 83639 0.8160 +64180 113444 0.4110 +64180 171169 0.4050 +64184 83639 0.4890 +64184 84075 0.4300 +64184 90199 0.5370 +64184 136895 0.4750 +64184 140881 0.4240 +64184 259239 0.4440 +64184 259240 0.4980 +64184 619208 0.4750 +64184 100507055 0.5670 +64207 359948 0.7900 +64208 80133 0.4030 +64208 115557 0.5010 +64208 144402 0.4620 +64208 390892 0.4800 +64210 64428 0.9980 +64210 80224 0.5480 +64210 81689 0.4890 +64210 83874 0.4420 +64210 83990 0.9610 +64210 84191 0.9960 +64210 92105 0.4630 +64210 120892 0.5300 +64210 122961 0.4890 +64210 140775 0.4950 +64210 150274 0.6370 +64210 200205 0.5970 +64210 220064 0.6610 +64210 388962 0.5030 +64210 404672 0.7020 +64210 552900 0.5200 +64210 654483 0.5260 +64210 728340 0.6450 +64210 100533467 0.5000 +64211 79190 0.4090 +64211 120237 0.5990 +64211 219409 0.4130 +64211 256297 0.4980 +64211 343472 0.5240 +64211 389549 0.5510 +64211 440097 0.4180 +64211 652991 0.4490 +64215 64374 0.4790 +64215 79962 0.4840 +64215 112869 0.5030 +64215 116835 0.5330 +64215 118881 0.5130 +64215 120526 0.4260 +64215 131118 0.4460 +64215 134218 0.5280 +64215 259217 0.5800 +64215 440387 0.7670 +64215 548645 0.4170 +64216 64318 0.6110 +64216 64425 0.4400 +64216 64434 0.5440 +64216 64745 0.4300 +64216 64794 0.5800 +64216 64960 0.5810 +64216 64963 0.5370 +64216 64965 0.6320 +64216 64968 0.5780 +64216 64969 0.6100 +64216 65083 0.8430 +64216 79050 0.8130 +64216 79571 0.5740 +64216 79675 0.4390 +64216 79693 0.4480 +64216 79736 0.8210 +64216 79863 0.4080 +64216 79922 0.4770 +64216 79954 0.5470 +64216 79979 0.5740 +64216 80135 0.8610 +64216 80298 0.6340 +64216 80324 0.5690 +64216 81627 0.5550 +64216 81892 0.4330 +64216 83475 0.4010 +64216 83480 0.4810 +64216 83743 0.6060 +64216 84128 0.6330 +64216 84135 0.6670 +64216 84154 0.7340 +64216 84172 0.5430 +64216 84294 0.6210 +64216 84319 0.4260 +64216 84340 0.5490 +64216 84365 0.7930 +64216 84549 0.4640 +64216 84622 0.4590 +64216 84705 0.4830 +64216 84808 0.4400 +64216 84881 0.4140 +64216 84916 0.5800 +64216 84946 0.9480 +64216 85441 0.4040 +64216 85476 0.4030 +64216 87178 0.5650 +64216 90121 0.5980 +64216 90353 0.4970 +64216 91942 0.4120 +64216 92399 0.4580 +64216 92667 0.4600 +64216 92856 0.8270 +64216 112840 0.4150 +64216 112950 0.4360 +64216 112970 0.4280 +64216 115708 0.5780 +64216 115752 0.4090 +64216 116966 0.4020 +64216 117246 0.6970 +64216 118460 0.4730 +64216 123263 0.4010 +64216 126069 0.4310 +64216 126402 0.5430 +64216 129563 0.4090 +64216 130916 0.6040 +64216 133522 0.5760 +64216 155368 0.4710 +64216 165545 0.4360 +64216 196074 0.4500 +64216 221830 0.6300 +64216 246243 0.4840 +64216 285855 0.5790 +64216 345630 0.4550 +64216 347487 0.5210 +64216 387129 0.5650 +64216 387338 0.5340 +64216 692312 0.5230 +64216 100287482 0.4790 +64216 102157402 0.4030 +64218 83394 0.7670 +64218 84140 0.4160 +64218 84839 0.6920 +64218 84868 0.4980 +64218 91584 0.6100 +64218 92211 0.6670 +64218 130557 0.7190 +64218 145226 0.6690 +64218 157657 0.5870 +64218 346007 0.6660 +64218 375298 0.7470 +64218 388939 0.6880 +64218 768206 0.6910 +64219 78990 0.4410 +64219 79677 0.7880 +64219 79837 0.4010 +64219 81557 0.8100 +64219 92552 0.4190 +64219 286514 0.4160 +64220 83758 0.4360 +64220 83875 0.4700 +64220 91860 0.7430 +64220 112724 0.4280 +64220 121214 0.5910 +64220 145226 0.4780 +64220 157506 0.7310 +64220 163688 0.7430 +64220 164832 0.4090 +64220 338917 0.4410 +64220 340665 0.5060 +64220 392255 0.4890 +64221 65109 0.5940 +64221 65110 0.5670 +64221 79861 0.7690 +64221 84790 0.7690 +64221 112714 0.7690 +64221 113457 0.7640 +64221 116832 0.5010 +64221 122706 0.4020 +64221 140032 0.4990 +64221 140801 0.5010 +64221 143471 0.4020 +64221 200916 0.5020 +64222 89866 0.4230 +64222 91869 0.6440 +64222 163589 0.5080 +64222 163590 0.6870 +64222 284293 0.4780 +64223 64422 0.4280 +64223 64798 0.9990 +64223 64978 0.4760 +64223 79109 0.9990 +64223 79657 0.4620 +64223 79726 0.5980 +64223 79899 0.9990 +64223 81929 0.6000 +64223 83667 0.6330 +64223 84219 0.6760 +64223 84232 0.5870 +64223 84335 0.9990 +64223 90423 0.4990 +64223 90957 0.5210 +64223 93436 0.6360 +64223 96459 0.4200 +64223 115098 0.4090 +64223 120103 0.4780 +64223 121268 0.4140 +64223 127124 0.4990 +64223 143686 0.4980 +64223 144577 0.5990 +64223 153129 0.7290 +64223 154743 0.6520 +64223 155066 0.5170 +64223 201163 0.5970 +64223 206358 0.4830 +64223 245972 0.5290 +64223 245973 0.5230 +64223 253260 0.9990 +64223 389541 0.9390 +64223 652968 0.6360 +64223 729438 0.5340 +64224 79034 0.5160 +64224 79089 0.4930 +64224 83590 0.4060 +64224 390648 0.4330 +64225 65055 0.9500 +64225 80117 0.4170 +64225 80346 0.5180 +64225 80856 0.5780 +64225 118813 0.6330 +64225 123606 0.5390 +64225 128486 0.4900 +64225 132112 0.4910 +64225 221035 0.4580 +64225 344892 0.4910 +64225 375035 0.5050 +64231 64407 0.4010 +64231 79746 0.4210 +64231 79865 0.4560 +64231 79890 0.6400 +64231 83661 0.6430 +64231 84689 0.4340 +64231 123041 0.6730 +64231 124152 0.4480 +64231 128346 0.5310 +64231 219972 0.4950 +64231 219995 0.4830 +64231 341116 0.8580 +64231 388325 0.4690 +64231 643680 0.9870 +64231 728588 0.5280 +64232 79856 0.4180 +64232 161142 0.5790 +64232 219990 0.5570 +64232 219995 0.5190 +64232 245802 0.5900 +64232 255043 0.4510 +64232 374969 0.4600 +64232 643680 0.5790 +64232 728588 0.5320 +64232 107987155 0.6950 +64236 80774 0.6910 +64236 83700 0.5400 +64236 83715 0.5450 +64236 84700 0.4440 +64236 84962 0.5580 +64236 92521 0.5490 +64236 126374 0.5620 +64236 150684 0.5900 +64236 154810 0.5310 +64236 219537 0.5490 +64236 254102 0.6190 +64236 342527 0.5580 +64236 541565 0.4170 +64240 64241 0.9990 +64240 79661 0.4460 +64240 84649 0.4250 +64240 89845 0.4690 +64240 116519 0.5810 +64240 123264 0.6260 +64240 151306 0.4270 +64240 152831 0.4210 +64240 200931 0.6060 +64240 255738 0.6950 +64240 646625 0.4010 +64240 114483834 0.4590 +64241 79661 0.4450 +64241 84649 0.4320 +64241 84699 0.4080 +64241 85320 0.4920 +64241 116519 0.6080 +64241 123264 0.5900 +64241 158219 0.4160 +64241 200931 0.5200 +64241 221264 0.4960 +64241 255738 0.6750 +64241 375056 0.4050 +64241 646625 0.4310 +64241 114483834 0.4620 +64282 64506 0.5190 +64282 64852 0.7430 +64282 64895 0.7910 +64282 79670 0.4740 +64282 84186 0.9990 +64282 84240 0.4020 +64282 84365 0.4090 +64282 85364 0.4020 +64282 115752 0.6000 +64282 118460 0.5610 +64282 123970 0.4470 +64282 129563 0.5970 +64282 154197 0.4390 +64282 167153 0.5280 +64282 167227 0.4090 +64282 196441 0.6070 +64282 255919 0.5000 +64282 353267 0.4990 +64282 389874 0.4020 +64282 649238 0.4020 +64282 105373377 0.4020 +64283 83660 0.5390 +64283 84687 0.4640 +64283 89796 0.4180 +64283 115557 0.4240 +64283 260425 0.4600 +64284 64601 0.5520 +64284 65082 0.4420 +64284 79083 0.4500 +64284 79643 0.6030 +64285 83786 0.5800 +64285 84236 0.5410 +64285 337867 0.5290 +64285 388963 0.4300 +64285 645811 0.4300 +64288 120935 0.4440 +64288 222698 0.5150 +64318 64425 0.5110 +64318 64434 0.7160 +64318 64599 0.4240 +64318 64794 0.7870 +64318 64900 0.4830 +64318 65008 0.4250 +64318 65083 0.6970 +64318 65095 0.5000 +64318 79009 0.5510 +64318 79039 0.7540 +64318 79050 0.8790 +64318 79074 0.4300 +64318 79159 0.8190 +64318 79590 0.6510 +64318 79649 0.5300 +64318 79730 0.6350 +64318 79954 0.9390 +64318 79979 0.5220 +64318 80135 0.9630 +64318 80336 0.4640 +64318 81620 0.9640 +64318 81627 0.4440 +64318 83448 0.6250 +64318 83479 0.4710 +64318 83480 0.5190 +64318 83743 0.8380 +64318 84128 0.8670 +64318 84135 0.4810 +64318 84154 0.9750 +64318 84172 0.8410 +64318 84273 0.6900 +64318 84294 0.6440 +64318 84319 0.4470 +64318 84365 0.9950 +64318 84515 0.6310 +64318 84549 0.9970 +64318 84916 0.8120 +64318 84946 0.8340 +64318 89846 0.4410 +64318 91646 0.4670 +64318 92170 0.6950 +64318 92856 0.8240 +64318 93974 0.4180 +64318 114034 0.4160 +64318 116211 0.6190 +64318 116832 0.4560 +64318 116966 0.5590 +64318 117246 0.9880 +64318 132430 0.4630 +64318 133396 0.4160 +64318 142940 0.4950 +64318 146212 0.9050 +64318 153443 0.4850 +64318 157777 0.6190 +64318 159371 0.4850 +64318 161424 0.6960 +64318 165545 0.6090 +64318 168400 0.4160 +64318 200172 0.4160 +64318 200916 0.7750 +64318 221078 0.9580 +64318 221143 0.4480 +64318 221830 0.4130 +64318 254268 0.7500 +64318 285855 0.8850 +64318 317781 0.4750 +64318 344758 0.4670 +64318 387129 0.7360 +64318 387338 0.6950 +64318 645051 0.4120 +64318 645073 0.4120 +64318 692312 0.5910 +64318 729396 0.4120 +64318 729422 0.4120 +64318 729428 0.4120 +64318 729431 0.4120 +64318 729442 0.4120 +64318 729447 0.4120 +64318 100008586 0.4120 +64318 100132399 0.4120 +64318 100505478 0.6990 +64318 100526842 0.7910 +64318 102724473 0.4120 +64319 78994 0.5250 +64319 83746 0.4360 +64319 84108 0.8710 +64319 84333 0.9560 +64319 84678 0.4140 +64319 84733 0.4490 +64319 84759 0.6540 +64319 114785 0.6160 +64319 390437 0.4160 +64319 100532731 0.5120 +64320 79594 0.5310 +64320 79797 0.7790 +64320 84065 0.4340 +64320 84873 0.4420 +64320 85409 0.6030 +64321 79572 0.5200 +64321 79727 0.5690 +64321 79923 0.8710 +64321 83439 0.9480 +64321 83595 0.6240 +64321 83881 0.8500 +64321 84504 0.6050 +64321 89780 0.7690 +64321 128209 0.4400 +64321 132625 0.5720 +64321 140628 0.5340 +64321 145873 0.6740 +64321 256297 0.4880 +64321 342977 0.5360 +64321 359787 0.4750 +64324 64754 0.4500 +64324 79142 0.7480 +64324 79823 0.7720 +64324 80335 0.6450 +64324 80854 0.5950 +64324 84193 0.6210 +64324 84444 0.6480 +64324 84656 0.5890 +64324 84661 0.4280 +64324 84678 0.5670 +64324 84787 0.5360 +64324 84838 0.7810 +64324 114787 0.4260 +64324 171023 0.4310 +64324 196528 0.4280 +64324 221656 0.4060 +64324 254065 0.4380 +64324 440093 0.6040 +64324 440686 0.6010 +64324 653604 0.7510 +64326 64708 0.5020 +64326 64839 0.4320 +64326 79016 0.9600 +64326 79269 0.9080 +64326 79816 0.5200 +64326 80067 0.9000 +64326 80344 0.9190 +64326 83931 0.8950 +64326 84259 0.5030 +64326 84307 0.4280 +64326 85358 0.4840 +64326 90379 0.9000 +64326 91663 0.4010 +64326 138009 0.5400 +64326 139170 0.5400 +64326 139411 0.4970 +64326 139425 0.5400 +64326 149951 0.5000 +64326 150684 0.5040 +64326 152330 0.6440 +64326 170622 0.4990 +64326 253152 0.4380 +64326 255967 0.4090 +64326 285429 0.5400 +64326 340533 0.4030 +64326 340578 0.5400 +64326 347442 0.5400 +64326 780776 0.4640 +64327 64434 0.7370 +64327 79772 0.4130 +64327 116151 0.4510 +64327 140545 0.7990 +64327 151963 0.4010 +64327 155435 0.5540 +64327 727857 0.5180 +64328 64901 0.4510 +64328 79711 0.5350 +64328 83475 0.5610 +64328 143244 0.8450 +64328 196951 0.4570 +64328 221143 0.7940 +64328 283383 0.4360 +64332 64651 0.5430 +64332 80149 0.8310 +64332 80319 0.4630 +64332 84807 0.4970 +64332 117245 0.7900 +64332 730249 0.4630 +64342 64779 0.4370 +64342 80346 0.5310 +64342 90203 0.4670 +64342 112574 0.4480 +64342 124460 0.4400 +64342 151449 0.4410 +64342 158038 0.4160 +64342 286183 0.4290 +64342 339398 0.4520 +64343 81030 0.6010 +64343 137682 0.4150 +64343 142678 0.5170 +64343 152100 0.5120 +64344 83667 0.6830 +64344 84259 0.4990 +64344 84962 0.5340 +64344 112398 0.9580 +64344 112399 0.9450 +64344 122706 0.4110 +64344 122769 0.5010 +64344 126374 0.5470 +64344 143471 0.4070 +64344 149951 0.4990 +64344 150684 0.5140 +64344 170622 0.4990 +64344 391104 0.4610 +64359 64374 0.4560 +64359 64398 0.4980 +64359 80212 0.4080 +64359 84203 0.5030 +64359 84817 0.5520 +64359 84955 0.6210 +64359 91860 0.4460 +64359 92359 0.7600 +64359 130574 0.4190 +64359 158046 0.4270 +64359 163688 0.4460 +64359 286204 0.6480 +64374 64432 0.5400 +64374 64960 0.7700 +64374 64963 0.7780 +64374 64965 0.9090 +64374 64968 0.9030 +64374 64969 0.8300 +64374 64975 0.6520 +64374 64976 0.6910 +64374 64978 0.4960 +64374 64979 0.9070 +64374 64981 0.6690 +64374 64983 0.8770 +64374 65003 0.6800 +64374 65005 0.9030 +64374 65008 0.7790 +64374 65080 0.4820 +64374 65121 0.5440 +64374 65122 0.5440 +64374 79590 0.7780 +64374 79631 0.6970 +64374 79668 0.4780 +64374 80273 0.5520 +64374 81570 0.5500 +64374 84172 0.7170 +64374 84340 0.4120 +64374 84545 0.6590 +64374 84955 0.6320 +64374 85476 0.6970 +64374 87178 0.4640 +64374 90313 0.4820 +64374 91408 0.4490 +64374 91574 0.4250 +64374 91860 0.4540 +64374 92196 0.4710 +64374 92399 0.8100 +64374 96459 0.6670 +64374 112937 0.5830 +64374 114987 0.6550 +64374 115416 0.5860 +64374 116541 0.4750 +64374 116832 0.5260 +64374 120526 0.4220 +64374 122481 0.4340 +64374 124454 0.5300 +64374 124995 0.5580 +64374 126402 0.7740 +64374 140032 0.6740 +64374 143244 0.6570 +64374 157310 0.4880 +64374 158046 0.4710 +64374 158067 0.4340 +64374 163688 0.4540 +64374 169522 0.4200 +64374 200916 0.6020 +64374 201595 0.5230 +64374 202051 0.4310 +64374 202052 0.5440 +64374 219927 0.9020 +64374 221264 0.4340 +64374 255104 0.4200 +64374 285855 0.6940 +64374 339416 0.6600 +64374 343068 0.5440 +64374 343070 0.5440 +64374 345051 0.5000 +64374 347487 0.6760 +64374 374407 0.6670 +64374 374659 0.6150 +64374 387129 0.6920 +64374 390999 0.5440 +64374 391002 0.5440 +64374 400735 0.5440 +64374 400736 0.5440 +64374 440560 0.5440 +64374 440561 0.5440 +64374 441873 0.5440 +64374 641776 0.5970 +64374 643909 0.5970 +64374 645051 0.5110 +64374 645073 0.5110 +64374 645359 0.5440 +64374 653619 0.5440 +64374 728524 0.5970 +64374 729396 0.5110 +64374 729422 0.5110 +64374 729428 0.5110 +64374 729431 0.5110 +64374 729442 0.5110 +64374 729447 0.5110 +64374 729528 0.5440 +64374 100008586 0.5110 +64374 100132399 0.5110 +64374 100287482 0.6760 +64374 100505478 0.6920 +64374 100526842 0.7740 +64374 100529097 0.6640 +64374 100529239 0.7190 +64374 100996746 0.5970 +64374 101929983 0.5440 +64374 102724473 0.5110 +64374 105180390 0.5970 +64374 105180391 0.5970 +64374 111064649 0.4760 +64374 114483834 0.4970 +64375 64376 0.7120 +64375 127700 0.4210 +64375 375323 0.4130 +64376 79872 0.4700 +64377 79047 0.4580 +64377 83539 0.9090 +64377 126364 0.4220 +64377 144233 0.4420 +64377 159371 0.4310 +64377 201501 0.4270 +64377 222068 0.4200 +64377 256536 0.4430 +64377 283358 0.9190 +64377 338707 0.9230 +64377 340895 0.4520 +64386 118932 0.4330 +64386 123041 0.4200 +64386 152816 0.6060 +64386 256764 0.5830 +64386 286077 0.5820 +64386 401138 0.5450 +64388 91851 0.5530 +64388 128178 0.4470 +64388 151449 0.7230 +64388 168667 0.4760 +64388 199699 0.5580 +64388 353500 0.6850 +64388 392255 0.7250 +64393 64782 0.4750 +64393 79068 0.5320 +64393 80067 0.6310 +64395 64396 0.4060 +64395 83648 0.5720 +64395 83878 0.5200 +64395 139886 0.5130 +64395 170626 0.5980 +64395 645073 0.5460 +64395 729428 0.4200 +64395 729447 0.4750 +64395 102724473 0.5910 +64396 83740 0.4740 +64396 255308 0.4780 +64396 285643 0.4930 +64396 342538 0.4320 +64396 494115 0.4350 +64396 729428 0.4740 +64396 729447 0.6040 +64397 79664 0.4430 +64397 79810 0.4630 +64397 83786 0.4460 +64397 85464 0.4890 +64397 114785 0.4080 +64397 144132 0.4730 +64397 147912 0.4190 +64397 150696 0.5100 +64397 259282 0.4890 +64397 283576 0.5420 +64397 400506 0.7060 +64398 81565 0.4030 +64398 83700 0.4460 +64398 84552 0.9410 +64398 84612 0.9430 +64398 84708 0.7170 +64398 92359 0.9990 +64398 117583 0.5120 +64398 122786 0.4650 +64398 143098 0.4800 +64398 144100 0.4170 +64398 149371 0.4230 +64398 153562 0.6310 +64398 154796 0.9990 +64398 154810 0.8790 +64398 220108 0.4310 +64398 221178 0.4100 +64398 222484 0.4850 +64398 259197 0.4470 +64398 261734 0.7930 +64398 286204 0.9970 +64398 286887 0.4890 +64398 100506658 0.7770 +64399 79807 0.6320 +64399 79875 0.5190 +64399 79890 0.4980 +64399 91653 0.6190 +64399 123688 0.4180 +64399 166752 0.4750 +64399 255743 0.4480 +64399 374654 0.6420 +64400 64760 0.5170 +64400 81786 0.4010 +64400 84067 0.9980 +64400 84376 0.9920 +64400 123811 0.4050 +64400 375307 0.5040 +64400 729830 0.9300 +64403 64405 0.5790 +64403 84435 0.5180 +64403 85442 0.5790 +64403 126208 0.4830 +64403 222256 0.5400 +64403 728780 0.5200 +64405 84628 0.4350 +64405 85019 0.4600 +64405 147463 0.4010 +64405 200844 0.4470 +64405 222256 0.5690 +64405 114108587 0.5630 +64407 79626 0.4620 +64407 81027 0.4290 +64407 83539 0.4850 +64407 83891 0.4100 +64407 84539 0.4990 +64407 85397 0.5320 +64407 94235 0.5600 +64407 115557 0.6340 +64407 116443 0.4320 +64407 129521 0.4990 +64407 137835 0.4260 +64407 146722 0.4520 +64407 160364 0.4290 +64407 199675 0.4050 +64407 202309 0.4660 +64407 219972 0.4220 +64407 285172 0.4060 +64407 346562 0.6640 +64407 353299 0.7760 +64407 375033 0.4210 +64407 388531 0.4750 +64407 401190 0.7210 +64407 431704 0.5960 +64409 79827 0.4070 +64409 83698 0.5560 +64409 94025 0.4010 +64409 118430 0.4290 +64409 140453 0.4030 +64409 143662 0.4210 +64409 148789 0.4050 +64409 155368 0.4190 +64409 192134 0.9220 +64409 200958 0.4010 +64409 285203 0.4030 +64409 727897 0.4230 +64409 728819 0.6690 +64410 79365 0.4350 +64410 79734 0.9060 +64410 80311 0.4310 +64410 83892 0.7310 +64410 84078 0.9060 +64410 84259 0.5190 +64410 84541 0.9370 +64410 84861 0.9150 +64410 84898 0.4300 +64410 89890 0.9060 +64410 90135 0.4650 +64410 90293 0.9250 +64410 115939 0.4450 +64410 127068 0.4800 +64410 129080 0.4570 +64410 131377 0.7650 +64410 140625 0.4370 +64410 140838 0.4550 +64410 149951 0.4990 +64410 150684 0.4990 +64410 154881 0.4050 +64410 170622 0.4990 +64410 200845 0.6250 +64410 220441 0.4420 +64410 253980 0.9010 +64410 256130 0.5060 +64410 283807 0.4530 +64410 339745 0.9060 +64410 341880 0.5290 +64410 390594 0.4700 +64410 442184 0.5800 +64410 553115 0.7230 +64411 196883 0.4090 +64412 84532 0.4070 +64412 115992 0.4360 +64412 128817 0.5110 +64412 128821 0.5350 +64412 140460 0.4750 +64412 140880 0.4560 +64412 342371 0.4380 +64417 84064 0.4740 +64417 92255 0.4850 +64417 133686 0.4100 +64417 195827 0.5210 +64417 375444 0.4490 +64418 83446 0.5000 +64418 116225 0.4310 +64418 151613 0.4470 +64418 154743 0.4170 +64418 345757 0.5330 +64419 66036 0.5220 +64419 79089 0.5030 +64419 79591 0.4510 +64419 79837 0.7000 +64419 79882 0.4980 +64419 80153 0.4260 +64419 81846 0.4840 +64419 83607 0.5250 +64419 84812 0.6540 +64419 84950 0.4930 +64419 89869 0.6540 +64419 90809 0.9030 +64419 91949 0.4610 +64419 113026 0.6830 +64419 124093 0.6430 +64419 132612 0.4040 +64419 200576 0.9270 +64419 284612 0.4540 +64419 390594 0.4280 +64420 80208 0.4480 +64420 84317 0.5380 +64420 128876 0.4010 +64420 140876 0.4520 +64420 196472 0.4790 +64420 391123 0.4080 +64420 440163 0.4220 +64420 654254 0.4270 +64421 64848 0.4020 +64421 64895 0.4830 +64421 79184 0.5990 +64421 79728 0.6400 +64421 79840 0.9920 +64421 80198 0.4940 +64421 80335 0.5680 +64421 81608 0.4410 +64421 81704 0.4790 +64421 84142 0.5790 +64421 84164 0.5430 +64421 85236 0.5010 +64421 91419 0.9220 +64421 92105 0.4040 +64421 112703 0.4150 +64421 125150 0.9000 +64421 126074 0.9000 +64421 128312 0.4990 +64421 131601 0.4100 +64421 152789 0.6150 +64421 165918 0.6300 +64421 255626 0.4990 +64421 283373 0.4340 +64421 286257 0.9280 +64421 100533467 0.4590 +64421 105375355 0.5400 +64422 65018 0.6550 +64422 79065 0.7340 +64422 79139 0.5430 +64422 79443 0.4290 +64422 79876 0.6330 +64422 81631 0.9980 +64422 81671 0.6750 +64422 83734 0.9580 +64422 84447 0.7310 +64422 84557 0.9970 +64422 84938 0.9080 +64422 84971 0.9240 +64422 89849 0.9680 +64422 91319 0.5400 +64422 92552 0.5310 +64422 115201 0.9160 +64422 120892 0.4380 +64422 140901 0.7280 +64422 149420 0.7240 +64422 285973 0.6640 +64422 345611 0.4810 +64422 440275 0.4360 +64422 440738 0.9710 +64422 441925 0.6770 +64422 643246 0.9210 +64423 79038 0.4110 +64423 79628 0.4490 +64423 79934 0.5710 +64423 80179 0.4040 +64423 81846 0.4560 +64423 83478 0.6180 +64423 84501 0.4500 +64423 84942 0.4800 +64423 90550 0.4170 +64423 90678 0.4620 +64423 114569 0.5190 +64423 115209 0.4180 +64423 118987 0.4610 +64423 121512 0.4360 +64423 123720 0.5210 +64423 125170 0.6120 +64423 163782 0.4390 +64423 286204 0.4150 +64423 345456 0.7160 +64423 375189 0.7220 +64425 64434 0.4030 +64425 64794 0.7880 +64425 65083 0.7810 +64425 65095 0.5210 +64425 79050 0.6140 +64425 79101 0.6950 +64425 79711 0.4250 +64425 79954 0.5650 +64425 80135 0.6210 +64425 81611 0.4440 +64425 81887 0.4530 +64425 83743 0.9140 +64425 84128 0.7420 +64425 84135 0.5950 +64425 84154 0.9000 +64425 84172 0.9990 +64425 84294 0.6700 +64425 84365 0.6740 +64425 84549 0.7200 +64425 84916 0.8110 +64425 84946 0.6180 +64425 90121 0.6050 +64425 91801 0.4360 +64425 92856 0.8510 +64425 94239 0.4050 +64425 115708 0.4460 +64425 116966 0.6860 +64425 117246 0.6100 +64425 127428 0.5360 +64425 142940 0.4870 +64425 146212 0.5280 +64425 155368 0.4680 +64425 161424 0.5140 +64425 165545 0.6000 +64425 170082 0.5320 +64425 171568 0.6120 +64425 221078 0.6930 +64425 221830 0.9990 +64425 284119 0.5550 +64425 345630 0.4460 +64425 404672 0.6360 +64425 474382 0.4180 +64425 653604 0.5510 +64425 692312 0.6400 +64425 114483834 0.4670 +64426 79142 0.8240 +64426 79595 0.9400 +64426 79685 0.9430 +64426 79885 0.4090 +64426 80025 0.4120 +64426 80232 0.5120 +64426 80312 0.6430 +64426 83463 0.6660 +64426 84289 0.4620 +64426 84295 0.5170 +64426 84312 0.9060 +64426 84516 0.4610 +64426 85236 0.4990 +64426 89853 0.4250 +64426 90316 0.5290 +64426 94239 0.5970 +64426 128312 0.4990 +64426 144811 0.4490 +64426 164832 0.4440 +64426 221937 0.6710 +64426 255626 0.4990 +64426 317772 0.4080 +64426 377630 0.8450 +64426 392188 0.4990 +64426 401447 0.4990 +64426 440689 0.4080 +64426 474382 0.4990 +64426 619279 0.6920 +64426 645402 0.4990 +64426 645836 0.5610 +64426 653604 0.6020 +64426 728373 0.7250 +64426 728386 0.4990 +64426 100287144 0.4990 +64426 100287178 0.4990 +64426 100287205 0.4990 +64426 100287238 0.4990 +64426 100287327 0.4990 +64426 100287364 0.4990 +64426 100287404 0.4990 +64426 100287441 0.4990 +64426 100287478 0.4990 +64426 100287513 0.5310 +64426 100316904 0.4730 +64427 64969 0.4310 +64427 79039 0.4410 +64427 79087 0.4500 +64427 79573 0.4420 +64427 81691 0.4800 +64427 83607 0.4140 +64427 84445 0.4710 +64427 84759 0.4590 +64427 84865 0.6780 +64427 130502 0.4070 +64427 151613 0.4340 +64427 165545 0.6500 +64427 388963 0.4820 +64428 65990 0.4220 +64428 80224 0.6680 +64428 81689 0.7930 +64428 83990 0.7320 +64428 84191 0.9910 +64428 112812 0.7400 +64428 122961 0.5550 +64428 126075 0.4690 +64428 150274 0.5070 +64428 196403 0.5820 +64428 200205 0.5640 +64428 220064 0.5020 +64428 388962 0.4690 +64429 79949 0.4560 +64429 81926 0.4650 +64429 83483 0.4430 +64429 84888 0.4420 +64429 143187 0.5150 +64429 254359 0.4790 +64429 283576 0.4670 +64429 340481 0.4640 +64429 374354 0.4730 +64429 401647 0.4090 +64430 80817 0.4710 +64431 79913 0.6300 +64431 80006 0.5130 +64431 81611 0.7230 +64431 83444 0.7040 +64431 84181 0.4100 +64431 84901 0.6930 +64431 93661 0.4600 +64431 93973 0.7430 +64431 94239 0.6670 +64431 120863 0.5180 +64431 125476 0.6580 +64431 126321 0.4070 +64431 128312 0.4360 +64431 137886 0.4310 +64431 147746 0.4610 +64431 255626 0.7580 +64431 283208 0.5220 +64431 283899 0.6380 +64431 340359 0.4930 +64432 64745 0.8960 +64432 64928 0.8800 +64432 64949 0.9970 +64432 64951 0.9890 +64432 64960 0.9990 +64432 64963 0.9990 +64432 64965 0.9980 +64432 64968 0.9970 +64432 64969 0.9990 +64432 64975 0.9750 +64432 64976 0.9850 +64432 64978 0.9290 +64432 64979 0.9860 +64432 64981 0.9730 +64432 64983 0.9700 +64432 65003 0.9430 +64432 65005 0.8880 +64432 65008 0.8860 +64432 65080 0.9870 +64432 65121 0.4580 +64432 65122 0.4580 +64432 65993 0.9960 +64432 78988 0.8420 +64432 79590 0.9060 +64432 79863 0.8690 +64432 84273 0.8780 +64432 84311 0.9480 +64432 84545 0.9840 +64432 85476 0.8520 +64432 90313 0.8510 +64432 90480 0.8730 +64432 90624 0.5920 +64432 91942 0.4290 +64432 92259 0.8640 +64432 92399 0.8940 +64432 114781 0.5610 +64432 116540 0.8240 +64432 116541 0.9780 +64432 118487 0.9810 +64432 122704 0.8810 +64432 124995 0.9730 +64432 126402 0.7350 +64432 128308 0.9400 +64432 131831 0.4280 +64432 140801 0.5270 +64432 149478 0.5370 +64432 155435 0.4310 +64432 157310 0.6240 +64432 158234 0.7980 +64432 196074 0.8350 +64432 219402 0.9090 +64432 219927 0.9120 +64432 343068 0.4580 +64432 343070 0.4580 +64432 347487 0.6200 +64432 390999 0.4580 +64432 391002 0.4580 +64432 400735 0.4580 +64432 400736 0.4580 +64432 440560 0.4580 +64432 440561 0.4580 +64432 441873 0.4580 +64432 645359 0.4580 +64432 653619 0.4580 +64432 729528 0.4580 +64432 100287482 0.6200 +64432 100526842 0.5790 +64432 101929983 0.4580 +64434 64794 0.4770 +64434 65095 0.4330 +64434 79039 0.6780 +64434 79050 0.9740 +64434 79624 0.5980 +64434 79665 0.6050 +64434 79707 0.7300 +64434 79954 0.6090 +64434 80135 0.4060 +64434 83743 0.6350 +64434 84128 0.4260 +64434 84154 0.4200 +64434 84172 0.4940 +64434 84549 0.4110 +64434 84916 0.6440 +64434 84946 0.7170 +64434 88745 0.9800 +64434 90957 0.4320 +64434 91752 0.5100 +64434 114794 0.4050 +64434 116966 0.4370 +64434 117246 0.7040 +64434 140545 0.7750 +64434 153443 0.4950 +64434 155435 0.6590 +64434 161424 0.4780 +64434 165545 0.4240 +64434 166378 0.4330 +64434 219578 0.5100 +64434 221078 0.6180 +64434 283106 0.5830 +64434 284827 0.4610 +64446 79645 0.4400 +64446 79657 0.4620 +64446 79659 0.6590 +64446 79819 0.7970 +64446 79925 0.5620 +64446 80217 0.4090 +64446 81492 0.4600 +64446 83450 0.4110 +64446 83538 0.6520 +64446 83544 0.8630 +64446 83657 0.6560 +64446 83658 0.7020 +64446 83659 0.4710 +64446 84229 0.4980 +64446 85016 0.5330 +64446 85478 0.8520 +64446 89765 0.7690 +64446 91893 0.5940 +64446 92749 0.8180 +64446 93233 0.9630 +64446 94015 0.5320 +64446 115399 0.5310 +64446 115948 0.7710 +64446 116143 0.4360 +64446 118491 0.8210 +64446 120379 0.5340 +64446 123872 0.9830 +64446 124602 0.5560 +64446 126820 0.8070 +64446 127602 0.6240 +64446 132203 0.4470 +64446 139212 0.7920 +64446 140735 0.5860 +64446 144132 0.7000 +64446 146754 0.8840 +64446 146845 0.4020 +64446 149465 0.4490 +64446 160762 0.4460 +64446 161582 0.7370 +64446 164781 0.4670 +64446 196385 0.6910 +64446 200132 0.6630 +64446 201625 0.8700 +64446 221421 0.9560 +64446 246176 0.4080 +64446 255758 0.4060 +64446 257236 0.4640 +64446 283237 0.4790 +64446 339829 0.8360 +64446 345643 0.5170 +64446 345895 0.9600 +64446 352909 0.8500 +64446 374407 0.4740 +64446 388389 0.8890 +64478 79633 0.4230 +64478 79648 0.5290 +64478 79739 0.4020 +64478 79776 0.4660 +64478 80333 0.4650 +64478 80731 0.4110 +64478 84033 0.4140 +64478 84648 0.4030 +64478 89832 0.4170 +64478 91752 0.6100 +64478 94025 0.4350 +64478 120114 0.4640 +64478 129446 0.4340 +64478 137868 0.4240 +64478 140733 0.4030 +64478 152330 0.4430 +64478 159371 0.4310 +64478 162282 0.4050 +64478 253559 0.4230 +64478 254827 0.4790 +64499 197335 0.4080 +64499 347733 0.4180 +64506 64895 0.8710 +64506 66037 0.6280 +64506 79577 0.4520 +64506 80153 0.6610 +64506 80315 0.7830 +64506 80336 0.7770 +64506 117178 0.5940 +64506 131405 0.5020 +64506 132864 0.6810 +64506 149986 0.6820 +64506 154197 0.5760 +64506 167153 0.9880 +64506 167227 0.6080 +64506 197135 0.4370 +64506 219988 0.5460 +64506 253314 0.6430 +64506 254427 0.4060 +64506 286151 0.4740 +64506 326340 0.4740 +64506 340719 0.4840 +64506 349136 0.4510 +64506 494551 0.4590 +64518 64776 0.8200 +64518 64800 0.6880 +64518 65061 0.4070 +64518 79645 0.6350 +64518 80258 0.8600 +64518 83538 0.6200 +64518 83659 0.8750 +64518 83853 0.4050 +64518 83894 0.5020 +64518 84229 0.4010 +64518 93190 0.8240 +64518 93233 0.6340 +64518 112942 0.4040 +64518 114327 0.8770 +64518 115948 0.5690 +64518 127003 0.8280 +64518 129881 0.8350 +64518 130888 0.7280 +64518 132851 0.4140 +64518 134121 0.8250 +64518 135138 0.8410 +64518 138162 0.8620 +64518 138255 0.8460 +64518 145788 0.8620 +64518 146822 0.5800 +64518 146845 0.8590 +64518 149499 0.6360 +64518 150483 0.8540 +64518 151651 0.8640 +64518 158297 0.4680 +64518 160762 0.6190 +64518 161502 0.8300 +64518 196385 0.6230 +64518 200162 0.6300 +64518 201158 0.4220 +64518 202500 0.4260 +64518 219670 0.8690 +64518 219681 0.5900 +64518 219743 0.4200 +64518 220136 0.8850 +64518 257177 0.8440 +64518 284040 0.5800 +64518 337879 0.4980 +64518 339778 0.8150 +64518 340706 0.4610 +64518 388611 0.6460 +64518 388701 0.8190 +64518 389799 0.8160 +64518 401024 0.4690 +64518 440585 0.8180 +64518 613212 0.4430 +64518 730112 0.8340 +64518 100128569 0.6260 +64518 100533496 0.4100 +64577 64850 0.4050 +64577 64902 0.5770 +64577 65220 0.4220 +64577 79611 0.4080 +64577 84263 0.7210 +64577 84532 0.4080 +64577 84693 0.5310 +64577 112724 0.4590 +64577 121214 0.4150 +64577 123876 0.5760 +64577 130013 0.9610 +64577 137872 0.6270 +64577 157506 0.4680 +64577 196996 0.4140 +64577 284541 0.4190 +64577 348158 0.5210 +64577 441024 0.4330 +64577 109703458 0.4100 +64579 79750 0.5240 +64579 80790 0.5020 +64579 90161 0.5220 +64579 113189 0.4050 +64579 133022 0.4480 +64579 221914 0.6360 +64579 266722 0.6350 +64579 375790 0.5200 +64581 64805 0.6560 +64581 79443 0.4540 +64581 79595 0.4970 +64581 80381 0.5010 +64581 81793 0.5700 +64581 84433 0.5960 +64581 84929 0.4200 +64581 85027 0.5810 +64581 90865 0.4290 +64581 91937 0.5210 +64581 93978 0.6120 +64581 112744 0.4710 +64581 114548 0.6110 +64581 114609 0.4070 +64581 140885 0.4290 +64581 160364 0.5090 +64581 283420 0.5690 +64581 284194 0.9830 +64581 338339 0.8290 +64581 338773 0.6680 +64581 387836 0.6420 +64581 654346 0.9830 +64581 100526664 0.7220 +64582 117579 0.5680 +64582 118442 0.6330 +64582 285601 0.4530 +64582 350383 0.4290 +64582 353345 0.4390 +64591 86614 0.5070 +64591 94239 0.4080 +64591 140883 0.4540 +64591 159163 0.6700 +64591 353513 0.5750 +64591 378948 0.7030 +64591 378949 0.4830 +64591 378950 0.5860 +64591 378951 0.6760 +64591 645836 0.5700 +64598 83930 0.5400 +64598 118813 0.4610 +64598 158747 0.6430 +64599 64793 0.4560 +64599 78992 0.4270 +64599 81628 0.4110 +64599 84292 0.4100 +64599 90850 0.9580 +64599 114823 0.6230 +64599 148137 0.5090 +64599 219988 0.7720 +64600 79153 0.6650 +64600 79888 0.7250 +64600 81490 0.6500 +64600 81579 0.7980 +64600 84647 0.6320 +64600 85465 0.6500 +64600 113612 0.6550 +64600 122618 0.6550 +64600 123745 0.4060 +64600 133121 0.6500 +64600 151056 0.7300 +64600 254531 0.6690 +64600 255043 0.6500 +64600 255189 0.4480 +64600 283748 0.6920 +64600 284161 0.6650 +64600 284541 0.6930 +64600 375775 0.7150 +64600 387521 0.6520 +64600 387522 0.6670 +64600 100137049 0.6390 +64601 64760 0.4200 +64601 64762 0.4870 +64601 64773 0.5220 +64601 65082 0.9990 +64601 80198 0.7900 +64601 83547 0.5490 +64601 83548 0.4830 +64601 84313 0.4210 +64601 84315 0.6120 +64601 90678 0.4390 +64601 124997 0.4390 +64601 143187 0.9690 +64601 150946 0.4870 +64601 200576 0.4450 +64601 203062 0.7090 +64601 203245 0.7030 +64601 221079 0.4100 +64601 221960 0.9510 +64601 282808 0.4010 +64601 283229 0.4360 +64601 284325 0.4480 +64601 338382 0.8430 +64601 376267 0.4870 +64641 79813 0.6330 +64641 83857 0.8470 +64641 119559 0.4310 +64641 219623 0.5070 +64641 253738 0.6910 +64645 64747 0.4620 +64645 79157 0.5430 +64645 79847 0.4590 +64645 81833 0.4970 +64645 83893 0.5130 +64645 83985 0.4560 +64645 84804 0.4610 +64645 84975 0.6170 +64645 113235 0.4650 +64645 113655 0.6280 +64645 126321 0.4710 +64645 136306 0.5230 +64645 140894 0.4260 +64645 162387 0.4880 +64645 201305 0.4380 +64645 283417 0.5380 +64648 64663 0.4220 +64648 89885 0.5060 +64648 139067 0.5830 +64648 139081 0.4580 +64648 158521 0.4780 +64648 165721 0.4120 +64648 266740 0.4240 +64648 441525 0.6550 +64648 541466 0.4460 +64648 541578 0.4340 +64648 645073 0.5410 +64648 646862 0.4780 +64648 653220 0.5020 +64648 728695 0.4180 +64648 729428 0.6020 +64648 729447 0.6030 +64648 100129239 0.4310 +64651 80149 0.4190 +64651 85450 0.4900 +64651 90007 0.5420 +64651 150094 0.4500 +64663 81557 0.4460 +64663 89885 0.5060 +64663 165721 0.4120 +64663 266740 0.4540 +64663 541466 0.4120 +64663 645073 0.5290 +64663 653220 0.5100 +64663 728239 0.4470 +64663 728695 0.7870 +64663 729428 0.6170 +64663 729447 0.6180 +64682 65061 0.4570 +64682 79184 0.9040 +64682 79657 0.4540 +64682 79813 0.5190 +64682 79917 0.6010 +64682 80012 0.9000 +64682 80119 0.8280 +64682 81620 0.4290 +64682 84108 0.9030 +64682 84172 0.5640 +64682 84220 0.4340 +64682 84333 0.5540 +64682 84524 0.4380 +64682 84733 0.9020 +64682 84759 0.5430 +64682 84910 0.5000 +64682 85417 0.6870 +64682 115106 0.4450 +64682 119504 0.9990 +64682 128344 0.4220 +64682 129804 0.4070 +64682 140459 0.5500 +64682 166979 0.8060 +64682 246184 0.9990 +64682 375061 0.8480 +64682 376940 0.4650 +64682 388272 0.6260 +64689 64746 0.5220 +64689 79571 0.5930 +64689 79654 0.4570 +64689 79748 0.5410 +64689 81562 0.5790 +64689 81876 0.7670 +64689 83452 0.5020 +64689 83548 0.4620 +64689 83700 0.6030 +64689 84516 0.5040 +64689 90411 0.5200 +64689 92335 0.5910 +64689 93661 0.4990 +64689 140735 0.5660 +64689 149111 0.5760 +64689 254263 0.5760 +64689 375056 0.6000 +64693 80323 0.9550 +64693 728712 0.5060 +64699 65217 0.6310 +64699 83715 0.4770 +64699 84059 0.4330 +64699 89766 0.4510 +64699 117531 0.7820 +64699 125336 0.7070 +64699 126326 0.6240 +64699 146183 0.6670 +64699 152137 0.4480 +64699 153562 0.4620 +64699 161497 0.6830 +64699 222662 0.5810 +64699 259236 0.7310 +64699 286262 0.6290 +64699 286676 0.5880 +64699 340990 0.4930 +64699 375611 0.4590 +64699 388551 0.4330 +64699 389207 0.6320 +64699 494513 0.7940 +64699 643226 0.4550 +64708 79016 0.6390 +64708 79269 0.4050 +64708 79913 0.4520 +64708 80067 0.4400 +64708 80344 0.7670 +64708 83444 0.4090 +64708 84259 0.4450 +64708 84954 0.4080 +64708 85439 0.4990 +64708 93973 0.4110 +64708 115290 0.7980 +64708 125476 0.4200 +64708 128025 0.4150 +64708 129563 0.4310 +64708 149951 0.4260 +64708 150678 0.9610 +64708 150684 0.4160 +64708 170622 0.4260 +64708 283899 0.4090 +64708 286187 0.4730 +64708 317719 0.4810 +64708 387357 0.7200 +64708 389766 0.4180 +64708 404672 0.5150 +64710 84286 0.5060 +64710 85414 0.8230 +64710 120892 0.6830 +64710 148811 0.9270 +64710 254428 0.9350 +64710 100129583 0.4450 +64711 90161 0.5420 +64711 119678 0.4030 +64711 221914 0.5540 +64711 266722 0.6340 +64711 284615 0.4490 +64711 375790 0.5170 +64714 79090 0.4100 +64714 81567 0.5480 +64714 114882 0.4340 +64714 122046 0.4030 +64714 125972 0.4460 +64714 133482 0.4010 +64714 155465 0.4470 +64714 203068 0.4280 +64714 283208 0.5340 +64714 339416 0.5350 +64714 347733 0.4230 +64718 64781 0.4290 +64718 84254 0.4620 +64718 166647 0.4480 +64718 221061 0.5170 +64743 80196 0.4140 +64743 84650 0.4910 +64743 89801 0.4530 +64743 112840 0.4680 +64743 126003 0.5060 +64743 200162 0.4440 +64743 347344 0.4590 +64744 65243 0.5130 +64744 116085 0.4590 +64744 339559 0.4520 +64745 64949 0.8620 +64745 64951 0.9170 +64745 64960 0.9860 +64745 64963 0.9490 +64745 64965 0.9520 +64745 64968 0.9440 +64745 64969 0.9900 +64745 65993 0.8850 +64745 79727 0.4970 +64745 79728 0.4420 +64745 79828 0.4140 +64745 79863 0.8860 +64745 79954 0.6070 +64745 79979 0.4430 +64745 80324 0.5140 +64745 83480 0.5330 +64745 84060 0.4480 +64745 84190 0.5420 +64745 84233 0.4880 +64745 84273 0.8440 +64745 84326 0.4810 +64745 84656 0.4320 +64745 84881 0.5140 +64745 85865 0.5010 +64745 92342 0.5570 +64745 118487 0.5180 +64745 126402 0.4960 +64745 126789 0.5570 +64745 131965 0.4730 +64745 149281 0.5440 +64745 155368 0.6720 +64745 196074 0.7890 +64745 196410 0.4600 +64745 285367 0.5440 +64745 339175 0.4250 +64745 347487 0.4340 +64745 375337 0.4430 +64745 387787 0.4560 +64745 399818 0.4150 +64745 440145 0.4430 +64745 100130890 0.4290 +64745 100131187 0.4290 +64745 100287482 0.4340 +64745 100996939 0.4320 +64746 79591 0.7240 +64746 84320 0.6200 +64746 84725 0.4030 +64746 84976 0.4280 +64746 90809 0.4260 +64746 91452 0.4760 +64746 132949 0.4480 +64746 134359 0.5700 +64746 151742 0.4490 +64746 222068 0.4380 +64746 414149 0.4630 +64747 79157 0.5200 +64747 84179 0.5160 +64747 84804 0.5740 +64747 84975 0.4180 +64747 85476 0.4740 +64747 113655 0.5090 +64747 201266 0.4770 +64747 256471 0.4610 +64748 65220 0.4860 +64748 126074 0.4540 +64748 126075 0.6340 +64748 128218 0.4690 +64748 149461 0.4650 +64748 257160 0.4510 +64748 375341 0.4190 +64748 100130742 0.4320 +64750 65264 0.5060 +64750 80204 0.5250 +64750 80762 0.7440 +64750 80854 0.4550 +64750 91947 0.5020 +64750 92714 0.5450 +64750 122706 0.4040 +64750 143471 0.4310 +64750 144165 0.6960 +64750 221302 0.6140 +64750 404093 0.4620 +64750 100526767 0.4470 +64753 79741 0.4150 +64753 79750 0.6060 +64753 81833 0.4190 +64753 83992 0.5720 +64753 84465 0.6190 +64753 84466 0.8320 +64753 84519 0.4830 +64753 89790 0.5260 +64753 93233 0.4210 +64753 114132 0.4590 +64753 114785 0.4330 +64753 147011 0.4770 +64753 153745 0.5230 +64753 161582 0.5440 +64753 200081 0.5030 +64753 259308 0.4310 +64753 401024 0.4480 +64753 441317 0.5700 +64753 107983988 0.4630 +64754 79723 0.6360 +64754 79813 0.5170 +64754 79823 0.8180 +64754 79918 0.4920 +64754 80335 0.4310 +64754 80854 0.6780 +64754 83852 0.4650 +64754 84193 0.7390 +64754 84444 0.6120 +64754 84661 0.6620 +64754 84787 0.5470 +64754 114826 0.5360 +64754 387893 0.5850 +64754 440093 0.7280 +64754 440686 0.7270 +64754 653604 0.8290 +64755 81688 0.4180 +64755 100505876 0.6080 +64756 79728 0.4070 +64756 84274 0.5010 +64756 90423 0.5430 +64756 90624 0.4520 +64756 91419 0.6510 +64756 91647 0.9860 +64756 92399 0.4260 +64756 114971 0.4170 +64756 131118 0.4040 +64756 285367 0.4280 +64756 374973 0.4420 +64756 729515 0.4580 +64757 79143 0.5140 +64757 80339 0.5410 +64757 80777 0.9490 +64757 257160 0.4340 +64757 345275 0.6780 +64757 441250 0.5190 +64759 83660 0.4220 +64759 83932 0.6020 +64759 84708 0.4160 +64759 84898 0.4090 +64759 100129361 0.4200 +64760 81551 0.4620 +64760 84067 0.4360 +64760 84256 0.4780 +64760 84376 0.7330 +64760 85378 0.4240 +64760 257169 0.4480 +64761 64783 0.4350 +64761 79132 0.6650 +64761 79668 0.6170 +64761 81847 0.4380 +64761 83666 0.7520 +64761 83707 0.4950 +64761 84875 0.4960 +64761 84955 0.6200 +64761 85441 0.6450 +64761 91543 0.6820 +64761 94240 0.6190 +64761 115992 0.4490 +64761 129607 0.7240 +64761 140733 0.4610 +64761 151636 0.5880 +64761 165631 0.5770 +64761 219285 0.5910 +64761 221443 0.4760 +64762 79705 0.4800 +64762 81876 0.4440 +64762 83608 0.4480 +64762 85358 0.4130 +64762 85364 0.4820 +64762 91156 0.4630 +64762 117177 0.4860 +64762 150946 0.6370 +64762 374864 0.4510 +64763 65993 0.4100 +64763 79797 0.6460 +64763 81627 0.4510 +64763 84134 0.4020 +64763 84219 0.5330 +64763 84450 0.4060 +64763 84518 0.5960 +64763 93587 0.4330 +64763 284338 0.4640 +64763 284339 0.5880 +64764 84699 0.9400 +64764 90993 0.9550 +64764 148327 0.9260 +64764 200186 0.9110 +64766 90806 0.5300 +64766 91523 0.6160 +64766 124220 0.5170 +64766 127428 0.4360 +64766 348995 0.4020 +64766 375061 0.4780 +64768 80271 0.4260 +64768 117283 0.9600 +64768 138639 0.4840 +64768 253430 0.9850 +64768 653641 0.5260 +64769 79960 0.9960 +64769 80314 0.9990 +64769 84148 0.9750 +64769 84289 0.9990 +64769 84530 0.4600 +64769 85235 0.4910 +64769 90204 0.4910 +64769 90378 0.5300 +64769 92815 0.4910 +64769 94239 0.5780 +64769 139628 0.7820 +64769 140831 0.4910 +64769 148418 0.5300 +64769 151050 0.5410 +64769 221613 0.4910 +64769 221895 0.9310 +64769 255626 0.6340 +64769 283150 0.8320 +64769 284058 0.7850 +64769 317772 0.4910 +64769 339287 0.9010 +64769 340602 0.6940 +64769 345651 0.6800 +64769 401934 0.5180 +64769 440093 0.5190 +64769 440686 0.5190 +64769 643677 0.4520 +64769 653604 0.6990 +64769 728118 0.5270 +64769 728294 0.7320 +64769 729262 0.4220 +64770 64793 0.4140 +64770 79677 0.4870 +64770 79848 0.7640 +64770 79959 0.6170 +64770 80184 0.7970 +64770 84260 0.4900 +64770 84318 0.6990 +64770 84960 0.4030 +64770 85459 0.7350 +64770 93594 0.7460 +64770 117178 0.7920 +64770 123811 0.5320 +64770 132320 0.4600 +64770 152185 0.4660 +64770 152206 0.6410 +64770 153241 0.5000 +64770 153733 0.4960 +64770 163786 0.6780 +64770 165055 0.5940 +64770 197335 0.4720 +64770 285331 0.8310 +64770 343099 0.8730 +64770 348654 0.5090 +64770 374618 0.6920 +64770 729440 0.4030 +64771 221491 0.5770 +64771 339210 0.4460 +64772 146705 0.4650 +64772 375061 0.4840 +64772 414301 0.4270 +64772 728294 0.4590 +64773 79983 0.4700 +64773 128710 0.5980 +64776 80258 0.8000 +64776 83659 0.8110 +64776 84614 0.4470 +64776 93190 0.8220 +64776 114327 0.8000 +64776 127003 0.8000 +64776 129881 0.8020 +64776 134121 0.8100 +64776 135138 0.8010 +64776 138162 0.8040 +64776 138255 0.8000 +64776 145788 0.8000 +64776 146845 0.8020 +64776 150483 0.8190 +64776 151651 0.8220 +64776 161502 0.8000 +64776 162655 0.4510 +64776 219670 0.8000 +64776 220136 0.8040 +64776 257177 0.8000 +64776 339778 0.8000 +64776 388701 0.8000 +64776 389799 0.8110 +64776 440585 0.8000 +64776 442319 0.5760 +64776 730112 0.8000 +64777 64795 0.9010 +64777 79018 0.8530 +64777 80232 0.9800 +64777 84926 0.4730 +64777 85007 0.4430 +64777 116225 0.4320 +64777 138065 0.4060 +64777 149643 0.4180 +64777 391114 0.4180 +64778 64859 0.4710 +64778 79718 0.4100 +64778 81671 0.4070 +64778 84627 0.6210 +64778 84708 0.4960 +64778 286256 0.4420 +64779 80198 0.4590 +64779 83693 0.4650 +64779 84135 0.7890 +64779 84936 0.4560 +64779 85302 0.4370 +64779 90678 0.4360 +64779 93134 0.4010 +64779 113444 0.8190 +64779 123263 0.4980 +64779 129831 0.4200 +64779 142684 0.4180 +64779 150763 0.5310 +64779 152185 0.4470 +64779 221955 0.4570 +64779 266743 0.6750 +64779 282808 0.4180 +64779 441024 0.7240 +64779 645369 0.5460 +64780 79778 0.4190 +64780 81876 0.6130 +64780 91584 0.8450 +64780 376267 0.4820 +64781 79087 0.4470 +64781 79603 0.9650 +64781 80772 0.5710 +64781 81537 0.6000 +64781 83723 0.6250 +64781 84221 0.4120 +64781 84725 0.5120 +64781 91012 0.9620 +64781 91860 0.6230 +64781 123099 0.9530 +64781 124976 0.4750 +64781 125981 0.9700 +64781 130367 0.5670 +64781 142891 0.4870 +64781 163688 0.6230 +64781 166929 0.9560 +64781 200634 0.4220 +64781 204219 0.9570 +64781 221061 0.4290 +64781 253782 0.9690 +64781 259230 0.9670 +64781 339221 0.9390 +64781 340485 0.9710 +64781 653308 0.4500 +64782 87178 0.4120 +64782 92856 0.4160 +64782 117246 0.4130 +64782 255967 0.5740 +64783 64848 0.8990 +64783 64863 0.8600 +64783 79066 0.9960 +64783 79068 0.8300 +64783 79872 0.9990 +64783 84441 0.5020 +64783 84557 0.4250 +64783 89797 0.5310 +64783 91746 0.8970 +64783 124245 0.4950 +64783 161882 0.5680 +64783 221120 0.5760 +64783 253943 0.8310 +64784 133522 0.4240 +64784 150094 0.6810 +64784 161436 0.4380 +64784 200186 0.9520 +64785 65009 0.4680 +64785 79075 0.5480 +64785 79892 0.4450 +64785 79915 0.4780 +64785 81620 0.8780 +64785 83540 0.4530 +64785 84250 0.4800 +64785 84296 0.9990 +64785 84515 0.7950 +64785 90381 0.8840 +64785 116211 0.6980 +64785 117584 0.4350 +64785 122769 0.8670 +64785 157570 0.4510 +64785 157777 0.7430 +64785 254394 0.9100 +64785 388591 0.5930 +64786 65018 0.4880 +64786 79065 0.4270 +64786 79443 0.4230 +64786 79635 0.6180 +64786 79735 0.9930 +64786 81631 0.4920 +64786 83547 0.4100 +64786 84315 0.5610 +64786 84376 0.4540 +64786 112936 0.4070 +64786 118813 0.4360 +64786 118987 0.4400 +64786 121278 0.4430 +64786 125170 0.4090 +64786 128637 0.5860 +64786 139341 0.4810 +64786 196441 0.4090 +64786 221960 0.6060 +64786 254428 0.4500 +64786 337867 0.5180 +64786 338382 0.9400 +64786 374403 0.4460 +64787 80115 0.4120 +64787 83715 0.9490 +64787 84958 0.4370 +64787 91544 0.4320 +64787 117531 0.4140 +64787 117532 0.5670 +64787 129446 0.6160 +64787 140469 0.8800 +64787 160777 0.4860 +64787 222662 0.4120 +64787 286262 0.6270 +64787 339768 0.9120 +64787 389207 0.6320 +64787 494513 0.5740 +64787 643226 0.6800 +64788 65990 0.4500 +64788 84699 0.5530 +64788 91289 0.6520 +64788 116519 0.8810 +64788 255275 0.4740 +64788 255738 0.4180 +64788 338328 0.8940 +64789 80820 0.4560 +64792 79363 0.5480 +64792 79696 0.4810 +64792 79809 0.8080 +64792 79989 0.9930 +64792 80173 0.9990 +64792 84105 0.4580 +64792 90410 0.9790 +64792 91147 0.4150 +64792 92104 0.9700 +64792 112752 0.8670 +64792 115948 0.7970 +64792 129880 0.4360 +64792 147906 0.4250 +64792 149473 0.4180 +64792 150737 0.9970 +64792 199223 0.5590 +64792 200894 0.9140 +64792 285282 0.4400 +64793 79807 0.4730 +64793 80346 0.4910 +64793 80817 0.5260 +64793 84318 0.5750 +64793 91057 0.4700 +64793 115106 0.5270 +64793 152185 0.4310 +64793 163786 0.5740 +64793 165055 0.4960 +64793 195828 0.4540 +64793 257160 0.4140 +64793 283991 0.4080 +64793 284992 0.5360 +64794 65083 0.6450 +64794 65095 0.4280 +64794 79009 0.5380 +64794 79039 0.7630 +64794 79050 0.4490 +64794 79159 0.5850 +64794 79571 0.5360 +64794 79954 0.6920 +64794 80135 0.5650 +64794 80324 0.4690 +64794 83479 0.5020 +64794 83732 0.4230 +64794 83743 0.6640 +64794 84128 0.4600 +64794 84135 0.4960 +64794 84154 0.7490 +64794 84172 0.7650 +64794 84294 0.5280 +64794 84365 0.7270 +64794 84549 0.5690 +64794 84916 0.7540 +64794 84946 0.4730 +64794 87178 0.4900 +64794 88745 0.4810 +64794 90353 0.6400 +64794 92797 0.4290 +64794 92856 0.5110 +64794 92935 0.4970 +64794 115708 0.7170 +64794 116966 0.4360 +64794 117246 0.9360 +64794 142940 0.4360 +64794 144132 0.4570 +64794 146212 0.6290 +64794 149986 0.4570 +64794 161424 0.7260 +64794 165545 0.5320 +64794 221078 0.6450 +64794 221786 0.6330 +64794 284406 0.4490 +64794 285855 0.5980 +64794 317781 0.4850 +64794 387129 0.4980 +64794 387338 0.4010 +64794 692312 0.4530 +64795 79018 0.9910 +64795 80232 0.9970 +64795 80258 0.4450 +64795 84859 0.4170 +64795 84926 0.4620 +64795 84948 0.4200 +64795 90060 0.4220 +64795 116225 0.9070 +64795 124401 0.4200 +64795 126074 0.5560 +64795 144321 0.5640 +64795 200845 0.4080 +64795 342527 0.4360 +64798 79109 0.9990 +64798 79899 0.9630 +64798 84335 0.9990 +64798 153129 0.4600 +64798 154743 0.4270 +64798 253260 0.9990 +64799 145853 0.4250 +64800 79645 0.6670 +64800 79925 0.6440 +64800 80258 0.7140 +64800 83450 0.4930 +64800 83538 0.6150 +64800 83659 0.6800 +64800 84698 0.4030 +64800 85478 0.6480 +64800 93233 0.6120 +64800 114327 0.6450 +64800 115811 0.4530 +64800 115948 0.5610 +64800 124411 0.4090 +64800 127003 0.5200 +64800 129881 0.5610 +64800 130888 0.6150 +64800 133015 0.4890 +64800 135138 0.5550 +64800 138162 0.6600 +64800 138255 0.5190 +64800 146177 0.4790 +64800 146279 0.4780 +64800 146754 0.4030 +64800 146845 0.5840 +64800 150483 0.6230 +64800 151651 0.5840 +64800 158787 0.5630 +64800 160762 0.5010 +64800 161502 0.4300 +64800 196385 0.6480 +64800 200162 0.6740 +64800 202500 0.4080 +64800 219681 0.6100 +64800 220136 0.5470 +64800 257177 0.5280 +64800 388701 0.5070 +64800 440585 0.4710 +64800 727764 0.5370 +64800 100128569 0.7900 +64801 84992 0.4480 +64802 65220 0.6760 +64802 79763 0.5710 +64802 80184 0.5450 +64802 81577 0.6250 +64802 83594 0.9400 +64802 84275 0.4160 +64802 84328 0.5680 +64802 84450 0.5710 +64802 84561 0.6110 +64802 84618 0.9000 +64802 91582 0.5640 +64802 92014 0.5330 +64802 93034 0.9000 +64802 93100 0.9900 +64802 115416 0.6950 +64802 133686 0.9480 +64802 145226 0.5980 +64802 167691 0.5070 +64802 284349 0.5350 +64802 285521 0.4790 +64802 343035 0.4480 +64802 400506 0.5280 +64802 642475 0.6290 +64802 100526794 0.9000 +64805 94235 0.5120 +64805 126006 0.4130 +64805 140885 0.4390 +64805 146433 0.5280 +64805 146713 0.4290 +64805 153396 0.4760 +64805 338773 0.8680 +64805 346562 0.5190 +64805 375033 0.4960 +64805 377841 0.6720 +64806 84818 0.9080 +64806 85480 0.7910 +64806 90865 0.8640 +64806 112744 0.9570 +64806 132014 0.8620 +64806 282616 0.5590 +64806 386653 0.4800 +64816 66002 0.4390 +64816 80777 0.4500 +64816 113612 0.4550 +64816 120227 0.4820 +64816 132949 0.5090 +64816 199974 0.4260 +64816 260293 0.4250 +64816 284541 0.4420 +64816 390079 0.4970 +64834 79152 0.4160 +64834 79603 0.5320 +64834 79966 0.5690 +64834 79993 0.9040 +64834 83401 0.9420 +64834 84649 0.6880 +64834 91012 0.4390 +64834 126410 0.4020 +64834 158833 0.7180 +64834 201562 0.4540 +64834 204219 0.6910 +64834 253782 0.4610 +64834 401494 0.4570 +64837 66008 0.7500 +64837 78999 0.4830 +64837 79443 0.6410 +64837 81565 0.6380 +64837 81930 0.6550 +64837 84316 0.4760 +64837 84364 0.5100 +64837 84516 0.5040 +64837 84643 0.5400 +64837 85300 0.4480 +64837 89796 0.4640 +64837 89953 0.9850 +64837 90627 0.4140 +64837 90990 0.7280 +64837 93661 0.5170 +64837 117286 0.5270 +64837 118813 0.4190 +64837 123169 0.4790 +64837 124602 0.5420 +64837 127829 0.5250 +64837 146909 0.5540 +64837 147700 0.9850 +64837 151188 0.4200 +64837 163183 0.7090 +64837 192683 0.4670 +64837 221079 0.7150 +64837 221458 0.5560 +64837 254827 0.4380 +64837 283106 0.6790 +64837 285643 0.4150 +64837 374654 0.5730 +64837 100532724 0.4160 +64838 79635 0.5410 +64838 84283 0.4560 +64838 84450 0.5940 +64838 130557 0.4160 +64838 200634 0.5640 +64838 221395 0.6330 +64838 285025 0.4020 +64838 390940 0.5050 +64838 729440 0.5470 +64839 65986 0.5660 +64839 84078 0.4410 +64839 137868 0.4360 +64839 140685 0.4340 +64839 195827 0.4460 +64839 195828 0.4150 +64839 201514 0.5180 +64839 339451 0.5640 +64839 375743 0.4250 +64839 780776 0.4550 +64840 79971 0.7850 +64840 80326 0.9580 +64840 80351 0.5820 +64840 81029 0.9610 +64840 84133 0.5600 +64840 84870 0.5980 +64840 85407 0.5640 +64840 89780 0.9820 +64840 146395 0.4010 +64840 147111 0.5140 +64840 149111 0.4680 +64840 254263 0.6010 +64840 284654 0.5160 +64840 340419 0.4700 +64840 402117 0.4220 +64840 729956 0.4480 +64840 729993 0.5040 +64841 80201 0.9320 +64841 83932 0.4080 +64841 85460 0.5000 +64841 91373 0.6540 +64841 92292 0.4270 +64841 114799 0.5390 +64841 132789 0.9610 +64841 157570 0.5550 +64841 554235 0.4890 +64843 79190 0.4550 +64843 79191 0.4250 +64843 81544 0.7620 +64843 84504 0.5210 +64843 89884 0.9670 +64843 91734 0.7850 +64843 120237 0.4720 +64843 123591 0.4340 +64843 148423 0.4050 +64843 170463 0.8490 +64843 220202 0.5020 +64843 256297 0.4280 +64843 338917 0.5510 +64843 387890 0.4590 +64843 440097 0.4500 +64844 79029 0.4410 +64844 79184 0.4870 +64844 92979 0.4580 +64844 114548 0.5820 +64844 115123 0.4880 +64844 140609 0.4190 +64844 284695 0.4050 +64844 441061 0.6150 +64844 100131897 0.4030 +64847 80347 0.4140 +64847 80726 0.4040 +64847 84690 0.4550 +64847 85007 0.5700 +64847 126789 0.4970 +64847 128153 0.4890 +64847 128497 0.4650 +64847 130560 0.4580 +64847 132851 0.5320 +64847 256957 0.4090 +64847 257236 0.4260 +64847 284680 0.5270 +64847 728763 0.4430 +64848 64863 0.5890 +64848 64895 0.5470 +64848 65083 0.4110 +64848 79033 0.4080 +64848 79050 0.4010 +64848 79066 0.8110 +64848 79068 0.8520 +64848 79730 0.5470 +64848 79809 0.5530 +64848 79828 0.4490 +64848 79872 0.7810 +64848 80067 0.4710 +64848 81608 0.8120 +64848 83852 0.4390 +64848 84072 0.5940 +64848 84811 0.4280 +64848 84916 0.4080 +64848 85441 0.4240 +64848 91746 0.6570 +64848 113802 0.4320 +64848 131965 0.4300 +64848 132612 0.4050 +64848 139804 0.4620 +64848 150280 0.6150 +64848 164045 0.4100 +64848 197131 0.4100 +64848 221078 0.4150 +64848 221120 0.5980 +64848 253461 0.4450 +64848 253943 0.6890 +64848 284071 0.9650 +64848 285855 0.4380 +64848 387338 0.4010 +64848 494115 0.4520 +64849 114571 0.4420 +64849 116085 0.4560 +64849 159963 0.5260 +64849 160728 0.4520 +64849 729025 0.7370 +64850 79814 0.4660 +64850 79944 0.4090 +64850 84258 0.4380 +64850 84647 0.4030 +64850 84735 0.4310 +64850 91608 0.6370 +64850 123688 0.9320 +64850 132949 0.6800 +64850 137362 0.4550 +64850 137872 0.5100 +64850 162417 0.4860 +64850 162466 0.9110 +64850 286006 0.4900 +64850 339896 0.4220 +64850 375775 0.4360 +64852 64895 0.9380 +64852 65083 0.4100 +64852 79650 0.5960 +64852 79670 0.4040 +64852 79727 0.8760 +64852 80114 0.4250 +64852 80153 0.4860 +64852 80198 0.4480 +64852 80789 0.7750 +64852 84219 0.7310 +64852 84936 0.4380 +64852 89970 0.4580 +64852 90459 0.4970 +64852 115752 0.5540 +64852 129563 0.8200 +64852 338657 0.7920 +64852 338917 0.5070 +64852 389421 0.7150 +64853 389860 0.4470 +64854 79084 0.4330 +64854 79087 0.4210 +64854 84687 0.6270 +64854 84749 0.5600 +64854 84960 0.4720 +64854 85015 0.4130 +64854 91833 0.9880 +64854 114803 0.5220 +64854 126119 0.4410 +64854 139562 0.4060 +64854 159195 0.4700 +64854 161725 0.4600 +64854 219333 0.8440 +64854 221302 0.6500 +64854 339977 0.4460 +64854 347475 0.4820 +64854 404037 0.4750 +64854 100288413 0.5430 +64855 144404 0.4750 +64856 79812 0.4600 +64856 83483 0.4240 +64856 112942 0.4510 +64856 123624 0.4790 +64856 153643 0.4090 +64857 89801 0.4220 +64858 64895 0.4720 +64858 80169 0.4380 +64858 80198 0.8900 +64858 80233 0.5710 +64858 80335 0.6310 +64858 81608 0.4360 +64858 83990 0.4580 +64858 84464 0.9440 +64858 91442 0.6970 +64858 92105 0.4040 +64858 92822 0.4610 +64858 146956 0.7590 +64858 152485 0.5370 +64858 153364 0.4960 +64858 195828 0.4240 +64858 197342 0.5670 +64858 199990 0.5430 +64858 201254 0.5490 +64858 203245 0.4730 +64858 255374 0.4150 +64858 348654 0.4780 +64858 353497 0.7120 +64858 378708 0.6230 +64858 548593 0.7970 +64858 642489 0.4350 +64859 65083 0.4810 +64859 65123 0.9990 +64859 79035 0.9060 +64859 79718 0.4480 +64859 80789 0.9970 +64859 81556 0.6010 +64859 81608 0.5770 +64859 84881 0.4980 +64859 92105 0.4990 +64859 113251 0.5290 +64859 220382 0.5000 +64859 359948 0.5070 +64860 79868 0.4030 +64860 80823 0.4150 +64860 81552 0.4640 +64860 114928 0.4390 +64860 125919 0.5100 +64860 134510 0.5410 +64860 158931 0.4030 +64860 390431 0.4310 +64860 401024 0.4210 +64860 729665 0.4060 +64863 79066 0.7260 +64863 79068 0.6400 +64863 79872 0.4270 +64863 91746 0.5960 +64863 91801 0.4510 +64863 121642 0.4190 +64863 134359 0.5340 +64863 196074 0.4790 +64863 253943 0.5970 +64863 399818 0.4710 +64866 642987 0.4020 +64866 112577516 0.6240 +64881 140578 0.4720 +64895 65110 0.4670 +64895 79084 0.5890 +64895 79670 0.6540 +64895 79869 0.5420 +64895 79882 0.5530 +64895 80315 0.5140 +64895 80335 0.8410 +64895 80336 0.4280 +64895 81608 0.9580 +64895 81892 0.5280 +64895 84186 0.9950 +64895 84524 0.5080 +64895 85302 0.4480 +64895 85569 0.4240 +64895 87178 0.5930 +64895 90806 0.5430 +64895 91746 0.5180 +64895 115752 0.4520 +64895 118460 0.4350 +64895 129563 0.4970 +64895 132864 0.5250 +64895 136157 0.4630 +64895 143506 0.4630 +64895 143689 0.4040 +64895 154197 0.6100 +64895 167153 0.8710 +64895 167227 0.5010 +64895 196120 0.4630 +64895 196441 0.8920 +64895 376940 0.5140 +64895 390031 0.4630 +64895 390033 0.4630 +64895 441584 0.4630 +64895 642843 0.6680 +64895 643988 0.4630 +64895 100529063 0.4800 +64897 79177 0.4470 +64897 79833 0.4560 +64897 79974 0.4350 +64897 80207 0.4360 +64897 83786 0.4710 +64897 84292 0.4530 +64897 88455 0.5360 +64897 123263 0.4370 +64897 126272 0.4200 +64897 134111 0.4190 +64897 149297 0.5500 +64897 170589 0.4780 +64897 326625 0.4500 +64897 347404 0.4140 +64900 80168 0.7780 +64900 80235 0.5960 +64900 80339 0.7230 +64900 84513 0.9200 +64900 84649 0.8090 +64900 84803 0.5530 +64900 85465 0.9200 +64900 116255 0.7740 +64900 119548 0.6710 +64900 122618 0.6590 +64900 129642 0.7260 +64900 137964 0.6170 +64900 154141 0.6500 +64900 196051 0.9200 +64900 253558 0.6970 +64900 255919 0.5880 +64900 346606 0.7430 +64901 64919 0.7590 +64901 79711 0.5280 +64901 92335 0.4280 +64901 283385 0.4160 +64902 79611 0.8280 +64902 79689 0.4120 +64902 79814 0.6910 +64902 79944 0.4010 +64902 81494 0.6480 +64902 84532 0.8310 +64902 84706 0.9350 +64902 84735 0.4960 +64902 92483 0.8450 +64902 112817 0.8640 +64902 113675 0.8730 +64902 123096 0.4560 +64902 123688 0.7800 +64902 130013 0.4480 +64902 132949 0.6800 +64902 133688 0.4460 +64902 137872 0.5820 +64902 148811 0.4180 +64902 160287 0.8450 +64902 160428 0.4210 +64902 162417 0.4950 +64902 339896 0.9470 +64902 554235 0.4050 +64919 65980 0.9500 +64919 79576 0.4370 +64919 80012 0.4320 +64919 84152 0.5720 +64919 84295 0.4440 +64919 84525 0.4660 +64919 93986 0.6310 +64919 137970 0.4890 +64919 146713 0.6350 +64919 162979 0.4960 +64919 170825 0.5630 +64919 171558 0.5190 +64919 196528 0.9110 +64919 255877 0.5020 +64919 440093 0.4360 +64919 440686 0.4360 +64919 653604 0.4360 +64919 728378 0.5410 +64919 102723407 0.4950 +64921 129807 0.5680 +64921 390616 0.4450 +64922 79799 0.4110 +64922 79817 0.5060 +64922 80173 0.4370 +64922 80323 0.4370 +64922 83943 0.5190 +64922 84541 0.4760 +64922 284346 0.4090 +64924 79608 0.4660 +64924 84061 0.4540 +64924 91252 0.8040 +64924 126147 0.4250 +64924 153562 0.7650 +64924 169026 0.4790 +64924 201266 0.7450 +64924 221074 0.6730 +64924 266727 0.4030 +64924 283375 0.7730 +64924 340204 0.4260 +64924 100506658 0.5120 +64925 79803 0.4760 +64925 80851 0.5240 +64925 84747 0.5800 +64925 85395 0.5540 +64925 92255 0.4550 +64925 115950 0.4630 +64925 118429 0.5920 +64925 155185 0.4280 +64925 221785 0.4590 +64926 79958 0.4990 +64926 80342 0.4350 +64926 80760 0.4970 +64926 84433 0.4400 +64926 117289 0.4430 +64926 147138 0.4140 +64926 153090 0.4780 +64926 155038 0.4300 +64926 161742 0.4340 +64926 200734 0.4340 +64926 203328 0.4200 +64926 256364 0.4670 +64926 257106 0.5090 +64926 283234 0.4190 +64926 374403 0.8090 +64926 399473 0.4400 +64926 474344 0.4060 +64927 79770 0.5210 +64927 80210 0.4440 +64927 84455 0.6420 +64927 137392 0.5150 +64927 145814 0.5540 +64927 153328 0.4210 +64927 374355 0.4470 +64928 64949 0.8670 +64928 64951 0.8730 +64928 64960 0.8740 +64928 64963 0.8910 +64928 64965 0.8490 +64928 64968 0.8490 +64928 64969 0.8710 +64928 64975 0.9370 +64928 64976 0.9250 +64928 64978 0.8810 +64928 64979 0.9770 +64928 64981 0.8710 +64928 64983 0.8860 +64928 65003 0.9370 +64928 65005 0.8820 +64928 65008 0.8530 +64928 65080 0.9230 +64928 65993 0.8700 +64928 78988 0.8350 +64928 79590 0.9170 +64928 84311 0.8360 +64928 84340 0.8030 +64928 84545 0.8680 +64928 85476 0.8240 +64928 85865 0.9010 +64928 90313 0.7090 +64928 90480 0.9560 +64928 91574 0.8440 +64928 92170 0.8750 +64928 92399 0.8350 +64928 115416 0.9810 +64928 116540 0.8710 +64928 116541 0.9470 +64928 118487 0.9490 +64928 122704 0.9050 +64928 124995 0.9110 +64928 128308 0.8970 +64928 130916 0.8820 +64928 140823 0.5370 +64928 150590 0.4800 +64928 219402 0.5380 +64928 219927 0.9310 +64928 387338 0.8660 +64928 127898561 0.8110 +64943 80212 0.4270 +64943 126823 0.4200 +64943 128821 0.4220 +64943 132160 0.4630 +64943 144348 0.4480 +64943 144363 0.4570 +64943 150274 0.4070 +64943 151354 0.4610 +64943 205327 0.4360 +64943 375346 0.5100 +64943 387103 0.4940 +64943 403313 0.4290 +64943 440957 0.5120 +64946 79003 0.7740 +64946 79019 0.9990 +64946 79075 0.4180 +64946 79172 0.9990 +64946 79682 0.9990 +64946 79801 0.4500 +64946 79980 0.7180 +64946 80152 0.9990 +64946 81620 0.4050 +64946 81930 0.6130 +64946 83540 0.9740 +64946 84057 0.7280 +64946 84250 0.5530 +64946 90417 0.4340 +64946 91687 0.9990 +64946 92259 0.4830 +64946 113130 0.4480 +64946 121504 0.8100 +64946 147841 0.7540 +64946 151246 0.4030 +64946 151648 0.5250 +64946 157570 0.4430 +64946 201254 0.9950 +64946 220134 0.7710 +64946 221150 0.5610 +64946 378708 0.9980 +64946 387103 0.9970 +64946 401541 0.9990 +64946 440093 0.4700 +64946 440686 0.4820 +64946 554313 0.8100 +64946 653604 0.4810 +64949 64951 0.9930 +64949 64960 0.9970 +64949 64963 0.9940 +64949 64965 0.9950 +64949 64968 0.9940 +64949 64969 0.9960 +64949 64975 0.9210 +64949 64976 0.8650 +64949 64978 0.9300 +64949 64979 0.8980 +64949 64981 0.8690 +64949 64983 0.8800 +64949 65003 0.9260 +64949 65005 0.9270 +64949 65008 0.8610 +64949 65080 0.8540 +64949 65992 0.4200 +64949 65993 0.9980 +64949 78988 0.8800 +64949 79133 0.4580 +64949 79590 0.8660 +64949 79863 0.8480 +64949 84273 0.8950 +64949 84311 0.9100 +64949 84545 0.8930 +64949 85476 0.8230 +64949 90480 0.9010 +64949 92259 0.8130 +64949 92399 0.8430 +64949 116540 0.8240 +64949 116541 0.8470 +64949 118487 0.9800 +64949 122704 0.8540 +64949 124995 0.8550 +64949 128308 0.8790 +64949 158234 0.7750 +64949 196074 0.8220 +64949 219402 0.9090 +64949 219927 0.8810 +64949 654364 0.4920 +64951 64960 0.9970 +64951 64963 0.9950 +64951 64965 0.9950 +64951 64968 0.9870 +64951 64969 0.9950 +64951 64975 0.8770 +64951 64976 0.8980 +64951 64978 0.8640 +64951 64979 0.8820 +64951 64981 0.8710 +64951 64983 0.8690 +64951 65003 0.8720 +64951 65005 0.8750 +64951 65008 0.8510 +64951 65080 0.8830 +64951 65993 0.9950 +64951 78988 0.8580 +64951 79590 0.8940 +64951 79863 0.8260 +64951 79897 0.4440 +64951 80222 0.4650 +64951 83460 0.5550 +64951 84273 0.8030 +64951 84311 0.8610 +64951 84331 0.4160 +64951 84545 0.8760 +64951 84888 0.4440 +64951 85476 0.8330 +64951 90480 0.8600 +64951 92259 0.8180 +64951 92399 0.8460 +64951 116540 0.8540 +64951 116541 0.8870 +64951 118487 0.9910 +64951 122704 0.9070 +64951 124995 0.8390 +64951 126402 0.4570 +64951 128308 0.8960 +64951 158234 0.6930 +64951 196074 0.8240 +64951 219402 0.9180 +64951 219927 0.9160 +64951 254863 0.5190 +64951 401505 0.4540 +64960 64963 0.9990 +64960 64965 0.9990 +64960 64968 0.9990 +64960 64969 0.9990 +64960 64975 0.9950 +64960 64976 0.9940 +64960 64978 0.9680 +64960 64979 0.9980 +64960 64981 0.9960 +64960 64983 0.9980 +64960 65003 0.9980 +64960 65005 0.9970 +64960 65008 0.9730 +64960 65080 0.9940 +64960 65083 0.7710 +64960 65121 0.6500 +64960 65122 0.6500 +64960 65993 0.9960 +64960 78988 0.9050 +64960 79050 0.7710 +64960 79571 0.4610 +64960 79590 0.9920 +64960 79631 0.7610 +64960 79668 0.5400 +64960 79863 0.8490 +64960 79954 0.6680 +64960 80146 0.4640 +64960 80222 0.5910 +64960 80270 0.4640 +64960 81031 0.4060 +64960 81892 0.5650 +64960 83479 0.4510 +64960 83931 0.4400 +64960 84128 0.6490 +64960 84135 0.6820 +64960 84172 0.6180 +64960 84273 0.9340 +64960 84311 0.9230 +64960 84340 0.6000 +64960 84437 0.4760 +64960 84545 0.9950 +64960 84916 0.6560 +64960 84946 0.6090 +64960 85377 0.4760 +64960 85476 0.9570 +64960 87178 0.4950 +64960 90313 0.6340 +64960 90480 0.8930 +64960 90624 0.6640 +64960 91574 0.5210 +64960 92196 0.5180 +64960 92259 0.9010 +64960 92399 0.9790 +64960 92856 0.7020 +64960 93107 0.5010 +64960 93517 0.4640 +64960 114134 0.4060 +64960 114781 0.6580 +64960 114987 0.8270 +64960 115416 0.4060 +64960 116540 0.8510 +64960 116541 0.9560 +64960 116832 0.7170 +64960 118487 0.9830 +64960 122704 0.9220 +64960 123283 0.5670 +64960 124245 0.5140 +64960 124454 0.7130 +64960 124995 0.9780 +64960 126402 0.9220 +64960 127700 0.4890 +64960 128308 0.9260 +64960 133015 0.4290 +64960 135138 0.4290 +64960 140032 0.8060 +64960 140801 0.7770 +64960 142940 0.5490 +64960 143244 0.8100 +64960 148022 0.5650 +64960 149478 0.4240 +64960 153443 0.5220 +64960 154091 0.4060 +64960 157310 0.7930 +64960 158234 0.8330 +64960 169522 0.5010 +64960 170850 0.5010 +64960 196074 0.8710 +64960 200916 0.7880 +64960 219402 0.9300 +64960 219927 0.9990 +64960 220869 0.4180 +64960 254268 0.5010 +64960 255308 0.5880 +64960 283518 0.5010 +64960 284106 0.5340 +64960 285855 0.7990 +64960 343068 0.6500 +64960 343070 0.6500 +64960 345051 0.8600 +64960 345630 0.6180 +64960 347487 0.7720 +64960 353376 0.5650 +64960 374659 0.7980 +64960 387129 0.7950 +64960 387712 0.4290 +64960 390999 0.6500 +64960 391002 0.6500 +64960 400735 0.6500 +64960 400736 0.6500 +64960 440560 0.6500 +64960 440561 0.6500 +64960 441873 0.6500 +64960 641776 0.7290 +64960 643909 0.7290 +64960 645051 0.5910 +64960 645073 0.5910 +64960 645359 0.6500 +64960 653247 0.4060 +64960 653619 0.6500 +64960 654364 0.5810 +64960 728524 0.7290 +64960 728689 0.5950 +64960 729396 0.5910 +64960 729422 0.5910 +64960 729428 0.5910 +64960 729431 0.5910 +64960 729442 0.5910 +64960 729447 0.5910 +64960 729528 0.6500 +64960 100008586 0.5910 +64960 100132399 0.5910 +64960 100287482 0.7720 +64960 100302736 0.5650 +64960 100505478 0.7950 +64960 100526842 0.8270 +64960 100529097 0.8170 +64960 100529239 0.8380 +64960 100996746 0.7290 +64960 101929983 0.6500 +64960 102724473 0.5910 +64960 105180390 0.7290 +64960 105180391 0.7290 +64960 114483834 0.5730 +64963 64965 0.9990 +64963 64968 0.9990 +64963 64969 0.9990 +64963 64975 0.9950 +64963 64976 0.9940 +64963 64978 0.9640 +64963 64979 0.9990 +64963 64981 0.9900 +64963 64983 0.9980 +64963 65003 0.9970 +64963 65005 0.9950 +64963 65008 0.9780 +64963 65080 0.9920 +64963 65083 0.6430 +64963 65121 0.6550 +64963 65122 0.6550 +64963 65993 0.9940 +64963 78988 0.8870 +64963 79050 0.6650 +64963 79159 0.4260 +64963 79571 0.5140 +64963 79590 0.9910 +64963 79631 0.8090 +64963 79668 0.5980 +64963 79760 0.5080 +64963 79863 0.9070 +64963 79954 0.6300 +64963 80146 0.4680 +64963 80222 0.4480 +64963 80270 0.4680 +64963 80349 0.4500 +64963 80774 0.4070 +64963 83939 0.5850 +64963 84128 0.6090 +64963 84135 0.6250 +64963 84172 0.7720 +64963 84273 0.6660 +64963 84311 0.8870 +64963 84340 0.6810 +64963 84545 0.9920 +64963 84814 0.4040 +64963 84883 0.4100 +64963 84916 0.6500 +64963 84946 0.5840 +64963 84993 0.5120 +64963 85377 0.4880 +64963 85476 0.9650 +64963 87178 0.6610 +64963 90313 0.7460 +64963 90480 0.8750 +64963 90624 0.6600 +64963 91574 0.5670 +64963 91647 0.4050 +64963 91875 0.4020 +64963 92196 0.5180 +64963 92259 0.8190 +64963 92399 0.9830 +64963 92856 0.6550 +64963 93107 0.5010 +64963 93517 0.4680 +64963 93550 0.5030 +64963 114781 0.6530 +64963 114803 0.4050 +64963 114987 0.8430 +64963 115098 0.4440 +64963 115294 0.4220 +64963 116540 0.8900 +64963 116541 0.9590 +64963 116832 0.7590 +64963 118487 0.9930 +64963 122481 0.4700 +64963 122704 0.9080 +64963 123283 0.4280 +64963 124454 0.7130 +64963 124995 0.9730 +64963 126328 0.4460 +64963 126402 0.9340 +64963 128308 0.9130 +64963 140032 0.9090 +64963 140801 0.7740 +64963 143244 0.7650 +64963 143630 0.5030 +64963 148022 0.5830 +64963 150209 0.4060 +64963 153443 0.5310 +64963 157310 0.7730 +64963 158067 0.4700 +64963 158234 0.7930 +64963 164153 0.5030 +64963 169522 0.5010 +64963 170850 0.5010 +64963 196074 0.8780 +64963 200916 0.7840 +64963 219402 0.9310 +64963 219927 0.9970 +64963 221264 0.4700 +64963 254268 0.5010 +64963 255308 0.5470 +64963 283518 0.5010 +64963 285367 0.4060 +64963 285855 0.8100 +64963 343068 0.6550 +64963 343070 0.6550 +64963 345051 0.5120 +64963 345630 0.5630 +64963 346157 0.4190 +64963 347487 0.7730 +64963 353376 0.5830 +64963 374291 0.5390 +64963 374659 0.7930 +64963 387129 0.8100 +64963 387712 0.5350 +64963 390999 0.6550 +64963 391002 0.6550 +64963 400735 0.6550 +64963 400736 0.6550 +64963 440560 0.6550 +64963 440561 0.6550 +64963 441873 0.6550 +64963 641776 0.7410 +64963 643909 0.7410 +64963 645051 0.6000 +64963 645073 0.6000 +64963 645359 0.6550 +64963 653619 0.6550 +64963 654364 0.5120 +64963 728524 0.7410 +64963 728689 0.5900 +64963 729396 0.6000 +64963 729422 0.6000 +64963 729428 0.6000 +64963 729431 0.6000 +64963 729442 0.6000 +64963 729447 0.6000 +64963 729528 0.6550 +64963 100008586 0.6000 +64963 100132399 0.6000 +64963 100287482 0.7730 +64963 100302736 0.5830 +64963 100505478 0.8050 +64963 100526842 0.8360 +64963 100529097 0.7680 +64963 100529239 0.8470 +64963 100996746 0.7410 +64963 101929983 0.6550 +64963 102157402 0.8060 +64963 102724473 0.6000 +64963 105180390 0.7410 +64963 105180391 0.7410 +64963 114483834 0.5760 +64965 64968 0.9990 +64965 64969 0.9990 +64965 64975 0.9920 +64965 64976 0.9920 +64965 64978 0.9710 +64965 64979 0.9970 +64965 64981 0.9930 +64965 64983 0.9990 +64965 65003 0.9980 +64965 65005 0.9990 +64965 65008 0.9950 +64965 65080 0.9960 +64965 65121 0.7150 +64965 65122 0.7150 +64965 65993 0.9920 +64965 78988 0.8330 +64965 79587 0.4030 +64965 79590 0.9960 +64965 79631 0.9430 +64965 79863 0.8370 +64965 79912 0.4110 +64965 79922 0.5640 +64965 79979 0.4150 +64965 80146 0.6130 +64965 80222 0.4140 +64965 80270 0.5110 +64965 80298 0.4110 +64965 80324 0.4330 +64965 81570 0.4480 +64965 83479 0.4090 +64965 83480 0.4490 +64965 83743 0.4150 +64965 83858 0.5720 +64965 84154 0.4770 +64965 84172 0.7540 +64965 84273 0.9260 +64965 84311 0.9100 +64965 84340 0.6290 +64965 84545 0.9940 +64965 84669 0.4180 +64965 84881 0.4730 +64965 84883 0.5310 +64965 85476 0.9890 +64965 87178 0.4330 +64965 90313 0.8110 +64965 90480 0.8630 +64965 90624 0.7160 +64965 91574 0.7390 +64965 91875 0.5480 +64965 91893 0.4280 +64965 92170 0.4510 +64965 92259 0.8580 +64965 92399 0.9980 +64965 93517 0.5110 +64965 114781 0.6440 +64965 116540 0.8130 +64965 116541 0.9700 +64965 118487 0.9810 +64965 122481 0.5260 +64965 122704 0.8320 +64965 123169 0.4540 +64965 123283 0.4100 +64965 124359 0.4980 +64965 124739 0.4160 +64965 124995 0.9810 +64965 126402 0.9700 +64965 126789 0.4860 +64965 128308 0.9030 +64965 131118 0.4710 +64965 133015 0.4310 +64965 135138 0.4290 +64965 140801 0.9080 +64965 143244 0.9430 +64965 148022 0.5300 +64965 149478 0.5720 +64965 150209 0.4490 +64965 153443 0.6090 +64965 157310 0.7760 +64965 158067 0.5260 +64965 158234 0.7430 +64965 196074 0.8970 +64965 203100 0.4220 +64965 219402 0.9220 +64965 219927 0.9990 +64965 221264 0.5260 +64965 253175 0.4980 +64965 253827 0.4040 +64965 254272 0.4160 +64965 284106 0.4290 +64965 285367 0.4680 +64965 285521 0.5460 +64965 285855 0.9310 +64965 343068 0.7150 +64965 343070 0.7150 +64965 345051 0.6690 +64965 347487 0.9070 +64965 353149 0.4160 +64965 353376 0.5300 +64965 373509 0.4160 +64965 374659 0.9660 +64965 387129 0.9290 +64965 390999 0.7150 +64965 391002 0.7150 +64965 400735 0.7150 +64965 400736 0.7150 +64965 440560 0.7150 +64965 440561 0.7150 +64965 441873 0.7150 +64965 641776 0.8360 +64965 643836 0.4300 +64965 643909 0.8360 +64965 645359 0.7150 +64965 653619 0.7150 +64965 654364 0.5120 +64965 728524 0.8360 +64965 729528 0.7150 +64965 100287482 0.9070 +64965 100302736 0.5300 +64965 100505478 0.9290 +64965 100526842 0.9710 +64965 100996746 0.8360 +64965 101929983 0.7150 +64965 105180390 0.8360 +64965 105180391 0.8360 +64965 114483834 0.7670 +64968 64969 0.9990 +64968 64975 0.9940 +64968 64976 0.9930 +64968 64978 0.9540 +64968 64979 0.9990 +64968 64981 0.9890 +64968 64983 0.9990 +64968 65003 0.9950 +64968 65005 0.9990 +64968 65008 0.9950 +64968 65080 0.9920 +64968 65121 0.7110 +64968 65122 0.7110 +64968 65993 0.9940 +64968 78988 0.8430 +64968 79587 0.4010 +64968 79590 0.9940 +64968 79631 0.9420 +64968 79693 0.4770 +64968 79728 0.4540 +64968 79863 0.8230 +64968 79922 0.4490 +64968 80146 0.4700 +64968 80222 0.4580 +64968 80258 0.4710 +64968 80270 0.4630 +64968 84172 0.8310 +64968 84273 0.9050 +64968 84311 0.8360 +64968 84340 0.5710 +64968 84439 0.4180 +64968 84545 0.9920 +64968 84722 0.4800 +64968 84883 0.4020 +64968 85476 0.9880 +64968 87178 0.4160 +64968 90313 0.8420 +64968 90480 0.8500 +64968 90624 0.6600 +64968 91574 0.7340 +64968 92259 0.8450 +64968 92399 0.9950 +64968 93517 0.4630 +64968 94031 0.4900 +64968 114781 0.6540 +64968 116540 0.8230 +64968 116541 0.9670 +64968 118487 0.9920 +64968 122704 0.8440 +64968 122961 0.4300 +64968 123283 0.4550 +64968 124359 0.4880 +64968 124995 0.9640 +64968 126402 0.9710 +64968 128308 0.8740 +64968 134218 0.5090 +64968 140801 0.9020 +64968 142940 0.4310 +64968 143244 0.8820 +64968 148022 0.5150 +64968 149478 0.5830 +64968 153443 0.5710 +64968 157310 0.7730 +64968 196074 0.8850 +64968 219402 0.9140 +64968 219927 0.9990 +64968 221692 0.5710 +64968 221823 0.4530 +64968 253175 0.4880 +64968 255308 0.4070 +64968 285855 0.9350 +64968 343068 0.7110 +64968 343070 0.7110 +64968 345051 0.7780 +64968 347487 0.9030 +64968 353376 0.5150 +64968 374659 0.9520 +64968 375056 0.5440 +64968 387129 0.9340 +64968 390637 0.5530 +64968 390999 0.7110 +64968 391002 0.7110 +64968 400735 0.7110 +64968 400736 0.7110 +64968 440560 0.7110 +64968 440561 0.7110 +64968 441873 0.7110 +64968 641776 0.8270 +64968 643909 0.8270 +64968 645359 0.7110 +64968 653619 0.7110 +64968 654364 0.5340 +64968 728524 0.8270 +64968 729528 0.7110 +64968 100287482 0.9030 +64968 100302736 0.5150 +64968 100505478 0.9340 +64968 100526842 0.9690 +64968 100996746 0.8270 +64968 101929983 0.7110 +64968 105180390 0.8270 +64968 105180391 0.8270 +64968 114483834 0.7580 +64969 64975 0.9940 +64969 64976 0.9920 +64969 64978 0.9700 +64969 64979 0.9990 +64969 64981 0.9920 +64969 64983 0.9980 +64969 65003 0.9970 +64969 65005 0.9960 +64969 65008 0.9850 +64969 65080 0.9940 +64969 65083 0.7020 +64969 65121 0.6740 +64969 65122 0.6740 +64969 65993 0.9950 +64969 78988 0.8580 +64969 79009 0.4690 +64969 79590 0.9860 +64969 79631 0.8440 +64969 79668 0.6860 +64969 79863 0.8170 +64969 79882 0.5190 +64969 80146 0.5030 +64969 80222 0.4640 +64969 80270 0.5010 +64969 80343 0.7690 +64969 81570 0.4100 +64969 83607 0.4470 +64969 84060 0.4950 +64969 84172 0.8610 +64969 84273 0.8200 +64969 84306 0.4920 +64969 84311 0.9180 +64969 84340 0.5150 +64969 84545 0.9920 +64969 84701 0.5080 +64969 84874 0.4720 +64969 84883 0.5810 +64969 84946 0.7930 +64969 84950 0.5460 +64969 84993 0.4270 +64969 85377 0.5190 +64969 85476 0.9720 +64969 87178 0.5870 +64969 90313 0.5690 +64969 90480 0.8820 +64969 90624 0.6420 +64969 91574 0.6650 +64969 91875 0.4450 +64969 91893 0.4340 +64969 92196 0.6180 +64969 92259 0.8730 +64969 92399 0.9870 +64969 93107 0.4640 +64969 93517 0.5010 +64969 93550 0.4170 +64969 114781 0.6350 +64969 114987 0.9320 +64969 116540 0.8210 +64969 116541 0.9150 +64969 116832 0.6560 +64969 118487 0.9850 +64969 122481 0.5470 +64969 122704 0.8490 +64969 123283 0.4560 +64969 124359 0.4390 +64969 124454 0.6530 +64969 124995 0.9790 +64969 126402 0.9380 +64969 128308 0.8900 +64969 133015 0.4330 +64969 135138 0.4290 +64969 137994 0.4610 +64969 140032 0.8770 +64969 140801 0.8330 +64969 143244 0.8010 +64969 143630 0.4170 +64969 148022 0.5910 +64969 149478 0.4360 +64969 150209 0.5790 +64969 153443 0.5930 +64969 157310 0.8010 +64969 158067 0.5470 +64969 158234 0.7430 +64969 164153 0.4170 +64969 169522 0.4640 +64969 170850 0.4640 +64969 196074 0.8790 +64969 200916 0.8390 +64969 219402 0.9070 +64969 219927 0.9980 +64969 221264 0.5470 +64969 253175 0.4390 +64969 254268 0.4640 +64969 255308 0.6960 +64969 283518 0.4640 +64969 284106 0.4510 +64969 285855 0.8820 +64969 286075 0.4630 +64969 343068 0.6740 +64969 343070 0.6740 +64969 345051 0.8020 +64969 345630 0.4210 +64969 347487 0.8210 +64969 353376 0.5910 +64969 374659 0.8940 +64969 375337 0.4910 +64969 387129 0.8420 +64969 387712 0.4860 +64969 390271 0.4350 +64969 390999 0.6740 +64969 391002 0.6740 +64969 400735 0.6740 +64969 400736 0.6740 +64969 440145 0.5610 +64969 440560 0.6740 +64969 440561 0.6740 +64969 441873 0.6740 +64969 641776 0.7670 +64969 643909 0.7670 +64969 645051 0.6630 +64969 645073 0.6630 +64969 645359 0.6740 +64969 653619 0.6740 +64969 654364 0.4580 +64969 728524 0.7670 +64969 728689 0.6780 +64969 729396 0.6630 +64969 729422 0.6630 +64969 729428 0.6630 +64969 729431 0.6630 +64969 729442 0.6630 +64969 729447 0.6630 +64969 729528 0.6740 +64969 100008586 0.6630 +64969 100132399 0.6630 +64969 100287482 0.8210 +64969 100302736 0.5910 +64969 100505478 0.8420 +64969 100526842 0.8880 +64969 100529097 0.7920 +64969 100529239 0.9150 +64969 100996746 0.7670 +64969 101929983 0.6740 +64969 102724473 0.6630 +64969 105180390 0.7670 +64969 105180391 0.7670 +64969 114483834 0.5740 +64975 64976 0.9980 +64975 64978 0.9890 +64975 64979 0.9970 +64975 64981 0.9980 +64975 64983 0.9970 +64975 65003 0.9980 +64975 65005 0.9900 +64975 65008 0.9430 +64975 65080 0.9970 +64975 65121 0.4740 +64975 65122 0.4740 +64975 65993 0.9550 +64975 78988 0.9610 +64975 79590 0.9890 +64975 80146 0.4320 +64975 80270 0.4320 +64975 84266 0.4290 +64975 84311 0.9690 +64975 84340 0.8180 +64975 84545 0.9960 +64975 85476 0.8360 +64975 85865 0.8050 +64975 90313 0.8820 +64975 90480 0.9860 +64975 90624 0.6680 +64975 91574 0.8310 +64975 92170 0.8400 +64975 92259 0.4900 +64975 92399 0.8490 +64975 93517 0.4320 +64975 114781 0.6620 +64975 115416 0.9290 +64975 116540 0.9170 +64975 116541 0.9830 +64975 118487 0.9130 +64975 122704 0.9640 +64975 124359 0.4450 +64975 124995 0.9930 +64975 126003 0.5040 +64975 126328 0.4540 +64975 126402 0.8140 +64975 128308 0.9870 +64975 129285 0.4970 +64975 130916 0.8210 +64975 140801 0.6440 +64975 140823 0.4020 +64975 148022 0.5340 +64975 149478 0.6000 +64975 157310 0.7770 +64975 219402 0.5830 +64975 219927 0.9890 +64975 253175 0.4450 +64975 285282 0.4260 +64975 343068 0.4740 +64975 343070 0.4740 +64975 345051 0.8460 +64975 347487 0.6790 +64975 353376 0.5340 +64975 374291 0.4340 +64975 387338 0.8010 +64975 390999 0.4740 +64975 391002 0.4740 +64975 400735 0.4740 +64975 400736 0.4740 +64975 440560 0.4740 +64975 440561 0.4740 +64975 441873 0.4740 +64975 641776 0.5170 +64975 643909 0.5170 +64975 645359 0.4740 +64975 653619 0.4740 +64975 728524 0.5170 +64975 729528 0.4740 +64975 100287482 0.6790 +64975 100302736 0.5340 +64975 100526842 0.7930 +64975 100996746 0.5170 +64975 101929983 0.4740 +64975 105180390 0.5170 +64975 105180391 0.5170 +64975 127898561 0.8110 +64976 64978 0.9950 +64976 64979 0.9980 +64976 64981 0.9910 +64976 64983 0.9970 +64976 65003 0.9850 +64976 65005 0.9540 +64976 65008 0.9520 +64976 65080 0.9940 +64976 65121 0.4720 +64976 65122 0.4720 +64976 65993 0.9270 +64976 78988 0.8810 +64976 79590 0.9460 +64976 80146 0.4300 +64976 80270 0.4300 +64976 84101 0.4900 +64976 84311 0.9460 +64976 84340 0.8190 +64976 84545 0.9920 +64976 85359 0.5810 +64976 85476 0.8250 +64976 90313 0.8410 +64976 90480 0.9860 +64976 90624 0.6860 +64976 91574 0.8410 +64976 92170 0.8150 +64976 92399 0.8990 +64976 93517 0.4300 +64976 114781 0.6760 +64976 115098 0.4890 +64976 115416 0.8790 +64976 116540 0.9560 +64976 116541 0.9760 +64976 118487 0.9090 +64976 122704 0.9600 +64976 124359 0.4590 +64976 124995 0.9920 +64976 125893 0.4460 +64976 126328 0.4190 +64976 126402 0.8120 +64976 128308 0.9810 +64976 128989 0.7610 +64976 130916 0.8220 +64976 140801 0.6530 +64976 144108 0.4710 +64976 148022 0.5340 +64976 149478 0.6170 +64976 150209 0.5720 +64976 157310 0.8440 +64976 219402 0.5500 +64976 219927 0.9740 +64976 253175 0.4590 +64976 286530 0.4190 +64976 338657 0.4840 +64976 343068 0.4720 +64976 343070 0.4720 +64976 345051 0.5070 +64976 347487 0.6340 +64976 353376 0.5340 +64976 387338 0.8040 +64976 390999 0.4720 +64976 391002 0.4720 +64976 400735 0.4720 +64976 400736 0.4720 +64976 440560 0.4720 +64976 440561 0.4720 +64976 441873 0.4720 +64976 641776 0.4310 +64976 643909 0.4310 +64976 645359 0.4720 +64976 653619 0.4720 +64976 728524 0.4310 +64976 729528 0.4720 +64976 100287482 0.6340 +64976 100302736 0.5340 +64976 100526842 0.7740 +64976 100996746 0.4310 +64976 101929983 0.4720 +64976 105180390 0.4310 +64976 105180391 0.4310 +64976 127898561 0.8000 +64978 64979 0.9730 +64978 64981 0.9690 +64978 64983 0.9800 +64978 65003 0.9640 +64978 65005 0.9750 +64978 65008 0.9220 +64978 65065 0.4220 +64978 65080 0.9880 +64978 65993 0.9340 +64978 78988 0.9220 +64978 79590 0.9530 +64978 79956 0.4720 +64978 80775 0.4160 +64978 84311 0.9490 +64978 84340 0.8030 +64978 84545 0.9810 +64978 85302 0.6430 +64978 85476 0.8260 +64978 85865 0.8110 +64978 90313 0.5560 +64978 90480 0.9690 +64978 90624 0.5060 +64978 91107 0.6710 +64978 91574 0.8470 +64978 91949 0.4500 +64978 92170 0.8300 +64978 92399 0.8690 +64978 114781 0.4920 +64978 115416 0.8480 +64978 116540 0.8620 +64978 116541 0.9330 +64978 118487 0.8830 +64978 122704 0.9840 +64978 123207 0.4470 +64978 124995 0.9790 +64978 126402 0.5170 +64978 128308 0.8590 +64978 130916 0.8260 +64978 140801 0.4880 +64978 149478 0.4620 +64978 201292 0.6600 +64978 219402 0.5770 +64978 219927 0.9630 +64978 345051 0.4460 +64978 347487 0.4880 +64978 387338 0.8100 +64978 100287482 0.4880 +64978 100526842 0.5320 +64978 100527963 0.4100 +64978 127898561 0.8170 +64979 64981 0.9950 +64979 64983 0.9990 +64979 65003 0.9980 +64979 65005 0.9980 +64979 65008 0.9970 +64979 65080 0.9910 +64979 65121 0.7190 +64979 65122 0.7190 +64979 65993 0.9400 +64979 78988 0.8820 +64979 79590 0.9970 +64979 79631 0.9350 +64979 79727 0.4030 +64979 79728 0.5830 +64979 80146 0.4240 +64979 80222 0.4150 +64979 80270 0.4320 +64979 80298 0.5240 +64979 81031 0.4100 +64979 81892 0.5190 +64979 84172 0.8480 +64979 84233 0.4290 +64979 84311 0.8910 +64979 84340 0.9200 +64979 84545 0.9960 +64979 85476 0.9870 +64979 85865 0.4550 +64979 90313 0.8370 +64979 90321 0.4150 +64979 90480 0.9610 +64979 90624 0.6660 +64979 91574 0.6650 +64979 91893 0.4020 +64979 91942 0.4870 +64979 92170 0.8600 +64979 92399 0.9920 +64979 93517 0.4330 +64979 114134 0.4100 +64979 114781 0.6610 +64979 115416 0.9370 +64979 116540 0.8800 +64979 116541 0.9720 +64979 118487 0.8900 +64979 122481 0.6140 +64979 122704 0.8810 +64979 123283 0.4170 +64979 124359 0.4680 +64979 124995 0.9830 +64979 126402 0.9710 +64979 126789 0.4270 +64979 128308 0.9310 +64979 130916 0.8550 +64979 133015 0.4290 +64979 135138 0.4290 +64979 140801 0.9070 +64979 140823 0.4630 +64979 143244 0.8370 +64979 148022 0.5250 +64979 149478 0.5980 +64979 154091 0.4100 +64979 157310 0.7950 +64979 158067 0.6140 +64979 219402 0.5500 +64979 219927 0.9990 +64979 221264 0.6140 +64979 253175 0.4680 +64979 253827 0.4320 +64979 284106 0.4910 +64979 285855 0.9460 +64979 343068 0.7190 +64979 343070 0.7190 +64979 345051 0.7740 +64979 347487 0.8890 +64979 353376 0.5250 +64979 374291 0.5180 +64979 374659 0.9520 +64979 387129 0.9440 +64979 387338 0.8300 +64979 388753 0.4140 +64979 389421 0.4030 +64979 390999 0.7190 +64979 391002 0.7190 +64979 400735 0.7190 +64979 400736 0.7190 +64979 401505 0.5670 +64979 440560 0.7190 +64979 440561 0.7190 +64979 441873 0.7190 +64979 641776 0.8360 +64979 643909 0.8360 +64979 645359 0.7190 +64979 653247 0.4100 +64979 653619 0.7190 +64979 728524 0.8360 +64979 729528 0.7190 +64979 100287482 0.8890 +64979 100302736 0.5250 +64979 100505478 0.9440 +64979 100526842 0.9680 +64979 100996746 0.8360 +64979 101929983 0.7190 +64979 105180390 0.8360 +64979 105180391 0.8360 +64979 114483834 0.7630 +64979 127898561 0.8110 +64981 64983 0.9910 +64981 65003 0.9510 +64981 65005 0.9790 +64981 65008 0.8950 +64981 65080 0.9920 +64981 65121 0.4700 +64981 65122 0.4700 +64981 65993 0.9070 +64981 78988 0.9040 +64981 79575 0.5140 +64981 79590 0.9340 +64981 80146 0.4280 +64981 80270 0.4240 +64981 84311 0.9030 +64981 84340 0.8050 +64981 84545 0.9970 +64981 84987 0.4420 +64981 85476 0.8060 +64981 85865 0.8040 +64981 90313 0.8200 +64981 90480 0.9610 +64981 90624 0.6650 +64981 91574 0.8450 +64981 92170 0.8240 +64981 92399 0.8750 +64981 93517 0.4240 +64981 114781 0.6600 +64981 115416 0.8170 +64981 116540 0.9120 +64981 116541 0.9780 +64981 118487 0.8780 +64981 122704 0.9160 +64981 124359 0.4080 +64981 124995 0.9890 +64981 126402 0.7850 +64981 128308 0.9110 +64981 130916 0.8190 +64981 140801 0.6580 +64981 148022 0.5350 +64981 149478 0.5980 +64981 157310 0.7810 +64981 205717 0.4320 +64981 219402 0.5130 +64981 219927 0.9660 +64981 253175 0.4080 +64981 284067 0.5300 +64981 343068 0.4700 +64981 343070 0.4700 +64981 345051 0.8280 +64981 347487 0.5960 +64981 353376 0.5350 +64981 387338 0.8020 +64981 390999 0.4700 +64981 391002 0.4700 +64981 400735 0.4700 +64981 400736 0.4700 +64981 440560 0.4700 +64981 440561 0.4700 +64981 441873 0.4700 +64981 641776 0.4990 +64981 643909 0.4990 +64981 645359 0.4700 +64981 653619 0.4700 +64981 728524 0.4990 +64981 729528 0.4700 +64981 100287482 0.5930 +64981 100302736 0.5350 +64981 100526842 0.8100 +64981 100996746 0.4990 +64981 101929983 0.4700 +64981 105180390 0.4990 +64981 105180391 0.4990 +64981 127898561 0.8110 +64983 65003 0.9920 +64983 65005 0.9990 +64983 65008 0.9970 +64983 65080 0.9950 +64983 65121 0.6880 +64983 65122 0.6880 +64983 65993 0.8980 +64983 78988 0.9120 +64983 79590 0.9900 +64983 79631 0.9210 +64983 79728 0.7710 +64983 79912 0.4070 +64983 80146 0.4450 +64983 80270 0.4440 +64983 80273 0.4440 +64983 81576 0.4540 +64983 84172 0.6240 +64983 84311 0.9540 +64983 84340 0.9090 +64983 84365 0.4380 +64983 84545 0.9890 +64983 84881 0.5280 +64983 84883 0.4390 +64983 85476 0.9840 +64983 85865 0.9180 +64983 87178 0.4860 +64983 90313 0.8440 +64983 90480 0.9640 +64983 90624 0.6840 +64983 91574 0.9370 +64983 91893 0.4890 +64983 92170 0.8810 +64983 92399 0.9970 +64983 93517 0.4450 +64983 113000 0.4830 +64983 114781 0.6780 +64983 115416 0.9960 +64983 116540 0.9180 +64983 116541 0.9700 +64983 118487 0.8780 +64983 122704 0.9420 +64983 124359 0.4080 +64983 124995 0.9900 +64983 126402 0.9650 +64983 128308 0.9220 +64983 130916 0.8500 +64983 140801 0.8740 +64983 142940 0.4330 +64983 143244 0.9390 +64983 148022 0.5410 +64983 149478 0.6190 +64983 150209 0.4290 +64983 157310 0.7880 +64983 219402 0.5300 +64983 219927 0.9990 +64983 253175 0.4080 +64983 285367 0.4930 +64983 285855 0.9380 +64983 343068 0.6880 +64983 343070 0.6880 +64983 345051 0.6150 +64983 347487 0.9070 +64983 353376 0.5410 +64983 374659 0.9440 +64983 387129 0.9370 +64983 387338 0.8290 +64983 390999 0.6880 +64983 391002 0.6880 +64983 400735 0.6880 +64983 400736 0.6880 +64983 401505 0.4480 +64983 440560 0.6880 +64983 440561 0.6880 +64983 441873 0.6880 +64983 641776 0.8260 +64983 643909 0.8260 +64983 645359 0.6880 +64983 653619 0.6880 +64983 654364 0.4980 +64983 728524 0.8260 +64983 729528 0.6880 +64983 100287482 0.9070 +64983 100302736 0.5410 +64983 100505478 0.9370 +64983 100526842 0.9500 +64983 100996746 0.8260 +64983 101929983 0.6880 +64983 105180390 0.8260 +64983 105180391 0.8260 +64983 114483834 0.7740 +64983 127898561 0.8110 +65003 65005 0.9980 +65003 65008 0.9980 +65003 65080 0.9920 +65003 65121 0.6290 +65003 65122 0.6290 +65003 65993 0.9350 +65003 78988 0.8460 +65003 79009 0.4370 +65003 79077 0.4080 +65003 79165 0.4490 +65003 79590 0.9980 +65003 79631 0.6950 +65003 79668 0.5540 +65003 79728 0.7600 +65003 79738 0.4350 +65003 79848 0.4440 +65003 79922 0.6650 +65003 80221 0.9330 +65003 80222 0.4540 +65003 81892 0.5920 +65003 83448 0.7950 +65003 84154 0.4060 +65003 84172 0.7720 +65003 84273 0.5620 +65003 84311 0.9740 +65003 84340 0.8560 +65003 84545 0.9960 +65003 84669 0.4110 +65003 84705 0.9540 +65003 84769 0.4400 +65003 84881 0.7150 +65003 85476 0.9480 +65003 85865 0.9480 +65003 87178 0.5150 +65003 89795 0.4090 +65003 90313 0.6180 +65003 90480 0.9900 +65003 90624 0.5090 +65003 91419 0.4270 +65003 91574 0.8770 +65003 91646 0.4040 +65003 92170 0.9850 +65003 92399 0.9640 +65003 92856 0.5470 +65003 93107 0.4780 +65003 113000 0.6220 +65003 114781 0.4870 +65003 114908 0.4480 +65003 114987 0.6840 +65003 115416 0.9920 +65003 116540 0.9310 +65003 116541 0.9600 +65003 116832 0.6420 +65003 118487 0.8880 +65003 122622 0.5760 +65003 122704 0.9380 +65003 123283 0.4510 +65003 124454 0.6240 +65003 124739 0.4110 +65003 124995 0.9970 +65003 125988 0.4240 +65003 126402 0.8990 +65003 128308 0.8850 +65003 130916 0.8500 +65003 133015 0.4300 +65003 135138 0.4290 +65003 140032 0.7500 +65003 140801 0.6850 +65003 143244 0.6340 +65003 157310 0.5650 +65003 169522 0.4780 +65003 170850 0.4780 +65003 200916 0.7600 +65003 201595 0.4680 +65003 219402 0.5120 +65003 219927 0.9990 +65003 253827 0.4240 +65003 254268 0.4930 +65003 254272 0.4110 +65003 283518 0.4780 +65003 284106 0.5290 +65003 284418 0.4440 +65003 285175 0.4430 +65003 285190 0.4440 +65003 285282 0.4020 +65003 285367 0.6570 +65003 285755 0.4440 +65003 285855 0.7140 +65003 343068 0.6290 +65003 343070 0.6290 +65003 347487 0.6730 +65003 353149 0.4110 +65003 373509 0.4110 +65003 374462 0.4200 +65003 374659 0.7390 +65003 376132 0.4230 +65003 387129 0.6960 +65003 387338 0.8440 +65003 390999 0.6290 +65003 391002 0.6290 +65003 400735 0.6290 +65003 400736 0.6290 +65003 440560 0.6290 +65003 440561 0.6290 +65003 441873 0.6290 +65003 641776 0.6970 +65003 643909 0.6970 +65003 644591 0.4440 +65003 645051 0.5640 +65003 645073 0.5640 +65003 645142 0.4440 +65003 645359 0.6290 +65003 653505 0.4440 +65003 653598 0.4440 +65003 653619 0.6290 +65003 727851 0.4440 +65003 728524 0.6970 +65003 728945 0.4440 +65003 729396 0.5640 +65003 729422 0.5640 +65003 729428 0.5640 +65003 729431 0.5640 +65003 729442 0.5640 +65003 729447 0.5640 +65003 729528 0.6290 +65003 729857 0.4440 +65003 730262 0.4440 +65003 100008586 0.5640 +65003 100130890 0.7760 +65003 100131187 0.7810 +65003 100132399 0.5640 +65003 100287482 0.6730 +65003 100505478 0.6940 +65003 100526842 0.7760 +65003 100529097 0.6780 +65003 100529239 0.7110 +65003 100996746 0.6970 +65003 101929983 0.6290 +65003 102724473 0.5640 +65003 105180390 0.6970 +65003 105180391 0.6970 +65003 105371242 0.4440 +65003 127898561 0.8000 +65005 65008 0.9970 +65005 65080 0.9730 +65005 65121 0.7100 +65005 65122 0.7100 +65005 65993 0.8850 +65005 78988 0.8360 +65005 79005 0.4660 +65005 79590 0.9980 +65005 79631 0.9420 +65005 79922 0.4140 +65005 80273 0.4650 +65005 80298 0.4010 +65005 84172 0.7750 +65005 84311 0.9670 +65005 84340 0.9190 +65005 84545 0.9930 +65005 84881 0.4560 +65005 85476 0.9890 +65005 85865 0.9100 +65005 87178 0.4580 +65005 90353 0.4740 +65005 90480 0.9820 +65005 91574 0.9380 +65005 92170 0.8310 +65005 92399 0.9960 +65005 115416 0.9700 +65005 116540 0.9420 +65005 116541 0.9040 +65005 118487 0.8670 +65005 122704 0.9400 +65005 123263 0.4560 +65005 124995 0.9860 +65005 126402 0.9650 +65005 128308 0.9450 +65005 130916 0.8210 +65005 134266 0.4310 +65005 138428 0.4970 +65005 140801 0.9020 +65005 142940 0.4620 +65005 143244 0.8810 +65005 196074 0.4320 +65005 203100 0.4620 +65005 219402 0.5340 +65005 219927 0.9990 +65005 255308 0.4500 +65005 283209 0.4050 +65005 285367 0.4780 +65005 285855 0.9400 +65005 343068 0.7100 +65005 343070 0.7100 +65005 345051 0.6340 +65005 347487 0.9010 +65005 374659 0.8490 +65005 387129 0.9380 +65005 387338 0.8040 +65005 390999 0.7100 +65005 391002 0.7100 +65005 400735 0.7100 +65005 400736 0.7100 +65005 440560 0.7100 +65005 440561 0.7100 +65005 441873 0.7100 +65005 641776 0.8270 +65005 643909 0.8270 +65005 645359 0.7100 +65005 653619 0.7100 +65005 728524 0.8270 +65005 729528 0.7100 +65005 100287482 0.9010 +65005 100505478 0.9380 +65005 100526842 0.9690 +65005 100996746 0.8270 +65005 101929983 0.7100 +65005 105180390 0.8270 +65005 105180391 0.8270 +65005 114483834 0.4950 +65005 127898561 0.8110 +65008 65080 0.9320 +65008 65121 0.5800 +65008 65122 0.5800 +65008 65993 0.9270 +65008 78988 0.9110 +65008 79590 0.9820 +65008 79631 0.8100 +65008 79668 0.5420 +65008 80145 0.4480 +65008 80222 0.5400 +65008 84154 0.5120 +65008 84172 0.6910 +65008 84233 0.4400 +65008 84311 0.9420 +65008 84365 0.6920 +65008 84545 0.9280 +65008 84705 0.8220 +65008 84993 0.4100 +65008 85476 0.9650 +65008 85865 0.5550 +65008 87178 0.6440 +65008 90480 0.9300 +65008 91574 0.6010 +65008 91875 0.4470 +65008 91942 0.4280 +65008 92259 0.4450 +65008 92399 0.9160 +65008 93107 0.4690 +65008 93550 0.4100 +65008 114987 0.8280 +65008 115416 0.4940 +65008 116540 0.9520 +65008 116541 0.9180 +65008 116832 0.6590 +65008 118487 0.8790 +65008 122481 0.4440 +65008 122622 0.4070 +65008 122704 0.9670 +65008 123096 0.4100 +65008 123263 0.4380 +65008 123283 0.6380 +65008 124454 0.6620 +65008 124995 0.9800 +65008 126402 0.8360 +65008 128308 0.8100 +65008 131118 0.4900 +65008 140032 0.8120 +65008 140801 0.7730 +65008 143244 0.7990 +65008 158067 0.4440 +65008 169522 0.4690 +65008 170850 0.4690 +65008 200916 0.7600 +65008 219402 0.5690 +65008 219927 0.9970 +65008 221264 0.4450 +65008 254268 0.4690 +65008 283518 0.4690 +65008 285855 0.8440 +65008 343068 0.5800 +65008 343070 0.5800 +65008 347487 0.7660 +65008 387129 0.8050 +65008 387712 0.4260 +65008 390999 0.5800 +65008 391002 0.5800 +65008 400735 0.5800 +65008 400736 0.5800 +65008 440560 0.5800 +65008 440561 0.5800 +65008 441873 0.5800 +65008 641776 0.6750 +65008 643909 0.6750 +65008 645051 0.5930 +65008 645073 0.5930 +65008 645359 0.5800 +65008 653619 0.5800 +65008 728524 0.6750 +65008 729396 0.5930 +65008 729422 0.5930 +65008 729428 0.5930 +65008 729431 0.5930 +65008 729442 0.5930 +65008 729447 0.5930 +65008 729528 0.5800 +65008 100008586 0.5930 +65008 100132399 0.5930 +65008 100287482 0.7660 +65008 100505478 0.8050 +65008 100526842 0.8370 +65008 100529097 0.7730 +65008 100529239 0.7900 +65008 100996746 0.6750 +65008 101929983 0.5800 +65008 102724473 0.5930 +65008 105180390 0.6750 +65008 105180391 0.6750 +65008 114483834 0.5270 +65009 115557 0.4550 +65009 116173 0.4120 +65009 375759 0.5150 +65009 388591 0.5070 +65010 65125 0.4120 +65010 83697 0.6010 +65010 142680 0.5010 +65010 200185 0.4280 +65010 285195 0.4070 +65010 389015 0.5320 +65018 66008 0.5360 +65018 79065 0.6490 +65018 79109 0.4210 +65018 79594 0.7520 +65018 79608 0.4890 +65018 79735 0.4360 +65018 79814 0.4240 +65018 80024 0.4550 +65018 80025 0.4240 +65018 80208 0.5620 +65018 80700 0.5500 +65018 81631 0.9130 +65018 81671 0.5910 +65018 83734 0.4960 +65018 84141 0.4050 +65018 84557 0.7280 +65018 84701 0.5020 +65018 84749 0.8130 +65018 84993 0.4040 +65018 89941 0.9720 +65018 90550 0.5670 +65018 92552 0.4040 +65018 92609 0.4200 +65018 114548 0.4570 +65018 114907 0.5070 +65018 115209 0.5710 +65018 116442 0.5380 +65018 120892 0.9550 +65018 125170 0.5860 +65018 126328 0.6560 +65018 135138 0.4530 +65018 137902 0.4360 +65018 139341 0.8730 +65018 155061 0.5890 +65018 192111 0.8810 +65018 201456 0.4700 +65018 203228 0.4800 +65018 253260 0.4650 +65018 257202 0.4690 +65018 283514 0.5120 +65018 374291 0.7090 +65018 401505 0.5130 +65018 440738 0.4580 +65018 441531 0.4720 +65018 441925 0.9430 +65018 493869 0.4710 +65018 100188893 0.4780 +65018 100287932 0.6700 +65055 79152 0.5580 +65055 79628 0.4470 +65055 80208 0.7410 +65055 80346 0.7310 +65055 80821 0.6150 +65055 91574 0.5090 +65055 113612 0.4470 +65055 118813 0.9370 +65055 123606 0.9010 +65055 125958 0.4110 +65055 132112 0.9740 +65055 135946 0.4010 +65055 137492 0.4370 +65055 140290 0.4320 +65055 192111 0.4380 +65055 219438 0.4320 +65055 219493 0.4010 +65055 219858 0.4010 +65055 219968 0.4200 +65055 221035 0.5360 +65055 282775 0.4010 +65055 284521 0.5130 +65055 344892 0.9850 +65055 390082 0.4060 +65055 390155 0.4010 +65055 390275 0.4010 +65055 391196 0.4010 +65055 401427 0.5090 +65055 442184 0.4400 +65056 65117 0.4650 +65056 79025 0.6720 +65059 80256 0.5070 +65059 81624 0.4950 +65059 83593 0.4590 +65059 83660 0.8400 +65059 84247 0.4690 +65059 94134 0.5200 +65059 197335 0.4450 +65059 283349 0.4100 +65059 345456 0.8540 +65059 375189 0.8550 +65061 79935 0.5360 +65061 85417 0.5360 +65061 92292 0.4210 +65061 166979 0.5280 +65061 219771 0.7670 +65061 219970 0.4220 +65061 345079 0.4400 +65061 400954 0.4240 +65061 401024 0.4340 +65061 494551 0.4200 +65061 645121 0.4400 +65061 100287520 0.4210 +65062 65250 0.7300 +65062 79581 0.4550 +65062 79583 0.9250 +65062 79600 0.8620 +65062 79809 0.6000 +65062 79812 0.4070 +65062 79848 0.5950 +65062 79867 0.8310 +65062 80184 0.8420 +65062 80776 0.8540 +65062 84314 0.8610 +65062 84899 0.4320 +65062 91147 0.9430 +65062 92747 0.5310 +65062 94097 0.5670 +65062 95681 0.7090 +65062 151254 0.5220 +65062 167691 0.4070 +65062 200728 0.8770 +65062 200894 0.6100 +65062 219854 0.5180 +65062 261734 0.8340 +65062 283232 0.6870 +65062 374654 0.5850 +65065 79800 0.4740 +65065 91107 0.4180 +65065 130026 0.6930 +65065 150864 0.6540 +65065 201292 0.4370 +65065 100506581 0.4180 +65065 100527963 0.4480 +65078 66004 0.4590 +65078 78999 0.4590 +65078 79414 0.4200 +65078 79442 0.4320 +65078 79932 0.8670 +65078 84152 0.4030 +65078 84894 0.9950 +65078 90249 0.4330 +65078 113655 0.4120 +65078 116064 0.4170 +65078 116150 0.6690 +65078 122769 0.5210 +65078 130074 0.6770 +65078 158038 0.7340 +65078 254427 0.4260 +65078 255252 0.4450 +65078 339291 0.4550 +65078 376132 0.4910 +65078 390205 0.4920 +65078 474354 0.4140 +65080 65121 0.4790 +65080 65122 0.4790 +65080 65993 0.9440 +65080 78988 0.8610 +65080 79590 0.9650 +65080 79922 0.4370 +65080 80222 0.4110 +65080 80324 0.4590 +65080 84311 0.9410 +65080 84340 0.8740 +65080 84545 0.9980 +65080 84705 0.4080 +65080 84883 0.4220 +65080 85476 0.9060 +65080 85865 0.8600 +65080 87178 0.4470 +65080 90313 0.5630 +65080 90480 0.9690 +65080 90624 0.6790 +65080 91574 0.9110 +65080 92170 0.8510 +65080 92399 0.9160 +65080 114781 0.6600 +65080 115416 0.9160 +65080 116540 0.9240 +65080 116541 0.9270 +65080 118487 0.9180 +65080 122704 0.9180 +65080 123263 0.6060 +65080 124359 0.5820 +65080 124995 0.9940 +65080 126328 0.6320 +65080 126402 0.7970 +65080 128308 0.8700 +65080 130916 0.8420 +65080 131118 0.4430 +65080 140801 0.4740 +65080 148022 0.5600 +65080 149478 0.4380 +65080 150209 0.4170 +65080 157310 0.6340 +65080 192669 0.4990 +65080 192670 0.4990 +65080 219402 0.5540 +65080 219927 0.9790 +65080 246243 0.4030 +65080 253175 0.5820 +65080 343068 0.4790 +65080 343070 0.4790 +65080 345051 0.5550 +65080 347487 0.5200 +65080 353376 0.5560 +65080 374659 0.4450 +65080 387338 0.8490 +65080 390999 0.4790 +65080 391002 0.4790 +65080 400735 0.4790 +65080 400736 0.4790 +65080 440560 0.4790 +65080 440561 0.4790 +65080 441873 0.4790 +65080 641776 0.4750 +65080 643909 0.4750 +65080 645359 0.4790 +65080 653619 0.4790 +65080 728524 0.4750 +65080 729528 0.4790 +65080 100287482 0.5200 +65080 100302736 0.5560 +65080 100526842 0.5750 +65080 100996746 0.4750 +65080 101929983 0.4790 +65080 105180390 0.4750 +65080 105180391 0.4750 +65080 127898561 0.8170 +65082 81876 0.7720 +65082 83452 0.5450 +65082 83871 0.5570 +65082 84084 0.5770 +65082 84315 0.6040 +65082 84516 0.4610 +65082 84952 0.4850 +65082 85302 0.4080 +65082 124997 0.4340 +65082 133957 0.4480 +65082 143187 0.9160 +65082 147007 0.4970 +65082 147837 0.5170 +65082 165055 0.4620 +65082 203062 0.5730 +65082 203245 0.5810 +65082 221079 0.4280 +65082 221960 0.8670 +65082 338382 0.7410 +65082 339122 0.4890 +65082 347517 0.5770 +65082 349565 0.4100 +65082 401409 0.4810 +65082 643677 0.4570 +65083 65095 0.8130 +65083 79039 0.8870 +65083 79050 0.9980 +65083 79159 0.7030 +65083 79571 0.8500 +65083 79665 0.5160 +65083 79707 0.6010 +65083 79711 0.7230 +65083 79954 0.9990 +65083 79979 0.4350 +65083 80135 0.5280 +65083 81887 0.7530 +65083 83480 0.5760 +65083 83548 0.6800 +65083 83732 0.4180 +65083 83743 0.7890 +65083 83746 0.5020 +65083 84128 0.9990 +65083 84135 0.9980 +65083 84154 0.7720 +65083 84172 0.9620 +65083 84294 0.7320 +65083 84319 0.4600 +65083 84365 0.5200 +65083 84450 0.4250 +65083 84881 0.5890 +65083 84916 0.9990 +65083 84946 0.5250 +65083 85395 0.4920 +65083 85441 0.4430 +65083 88745 0.8990 +65083 90121 0.4370 +65083 90381 0.6410 +65083 90957 0.5130 +65083 91582 0.8050 +65083 91752 0.5260 +65083 92856 0.9980 +65083 113251 0.4960 +65083 115752 0.5100 +65083 117246 0.9230 +65083 118460 0.6580 +65083 118812 0.4730 +65083 124454 0.5720 +65083 126402 0.7820 +65083 128061 0.8000 +65083 129563 0.5510 +65083 140032 0.7730 +65083 142940 0.5000 +65083 146212 0.4920 +65083 149041 0.4360 +65083 153443 0.8420 +65083 161424 0.9280 +65083 165545 0.7000 +65083 170506 0.4040 +65083 219578 0.5260 +65083 221078 0.7030 +65083 221830 0.7200 +65083 266812 0.7360 +65083 283106 0.7990 +65083 345630 0.9760 +65083 387338 0.4300 +65083 641776 0.5000 +65083 643909 0.5000 +65083 692312 0.6270 +65083 728524 0.5000 +65083 100996746 0.5000 +65083 105180390 0.5000 +65083 105180391 0.5000 +65083 114483834 0.5780 +65084 80129 0.4580 +65084 84769 0.4670 +65084 84896 0.4160 +65084 90355 0.4580 +65084 91452 0.5140 +65084 159989 0.6480 +65095 79039 0.6610 +65095 79050 0.7110 +65095 79159 0.6740 +65095 79663 0.4460 +65095 79897 0.7880 +65095 79922 0.4240 +65095 79954 0.6270 +65095 80135 0.4530 +65095 80726 0.4080 +65095 83605 0.4940 +65095 83743 0.6360 +65095 84154 0.7610 +65095 84172 0.4050 +65095 84294 0.8960 +65095 84365 0.8420 +65095 84549 0.4090 +65095 84916 0.8030 +65095 84946 0.8540 +65095 85395 0.4030 +65095 85437 0.6450 +65095 88745 0.6790 +65095 90121 0.6430 +65095 92856 0.8630 +65095 117246 0.7340 +65095 124245 0.4250 +65095 139420 0.4350 +65095 142940 0.4620 +65095 153443 0.7270 +65095 161424 0.6690 +65095 221078 0.6140 +65095 221830 0.4550 +65095 257236 0.4030 +65095 285855 0.4740 +65095 387129 0.4580 +65095 692312 0.6540 +65095 100505478 0.4280 +65108 65998 0.4090 +65108 80010 0.7010 +65108 91860 0.9620 +65108 129401 0.4910 +65108 163688 0.9620 +65109 65110 0.9660 +65109 79023 0.5240 +65109 79228 0.5110 +65109 79576 0.4370 +65109 79706 0.8080 +65109 79753 0.4130 +65109 79869 0.5620 +65109 79902 0.5060 +65109 80145 0.5130 +65109 81572 0.4220 +65109 81929 0.5080 +65109 83443 0.4710 +65109 84248 0.5560 +65109 84271 0.6210 +65109 84305 0.9810 +65109 84321 0.5100 +65109 84324 0.5130 +65109 84811 0.4270 +65109 129401 0.5070 +65109 143884 0.5690 +65109 151903 0.8370 +65109 163859 0.8030 +65109 167227 0.7610 +65109 199746 0.5040 +65109 254065 0.5170 +65109 348995 0.5080 +65109 728343 0.9020 +65109 100101267 0.5220 +65110 79707 0.5080 +65110 80153 0.5530 +65110 84305 0.8390 +65110 93643 0.4080 +65110 167227 0.7300 +65110 728343 0.9020 +65117 79811 0.4870 +65117 84922 0.5230 +65117 91746 0.6080 +65117 116225 0.4110 +65117 140890 0.5790 +65117 143684 0.4250 +65117 151613 0.4450 +65117 257415 0.5210 +65121 79097 0.5250 +65121 79295 0.4320 +65121 79590 0.6550 +65121 79631 0.5600 +65121 80221 0.4080 +65121 80759 0.6210 +65121 84154 0.4040 +65121 84172 0.5640 +65121 84365 0.4490 +65121 84545 0.4520 +65121 84705 0.4470 +65121 84767 0.5170 +65121 85476 0.5600 +65121 90313 0.4740 +65121 92399 0.6210 +65121 114987 0.5470 +65121 115416 0.4220 +65121 116541 0.4740 +65121 116832 0.5100 +65121 124454 0.5100 +65121 125997 0.6770 +65121 126402 0.5830 +65121 129868 0.7230 +65121 140032 0.5430 +65121 140801 0.5440 +65121 143244 0.5100 +65121 200916 0.5790 +65121 201516 0.6860 +65121 219927 0.6900 +65121 285855 0.5600 +65121 342900 0.6380 +65121 347487 0.5390 +65121 348487 0.4180 +65121 374659 0.4380 +65121 387129 0.5600 +65121 440563 0.4250 +65121 442247 0.4930 +65121 503835 0.4300 +65121 641776 0.4930 +65121 643909 0.4930 +65121 645051 0.4480 +65121 645073 0.4480 +65121 649330 0.4250 +65121 653657 0.4380 +65121 728524 0.4930 +65121 729396 0.4480 +65121 729422 0.4480 +65121 729428 0.4480 +65121 729431 0.4480 +65121 729442 0.4480 +65121 729447 0.4480 +65121 100008586 0.4490 +65121 100129128 0.6080 +65121 100132399 0.4480 +65121 100287482 0.5390 +65121 100288687 0.5980 +65121 100505478 0.5600 +65121 100526842 0.5800 +65121 100529097 0.5520 +65121 100529239 0.5690 +65121 100996746 0.4930 +65121 102724473 0.4480 +65121 105180390 0.4930 +65121 105180391 0.4930 +65122 79097 0.4260 +65122 79590 0.6550 +65122 79631 0.5600 +65122 80221 0.4080 +65122 80759 0.6230 +65122 84154 0.4040 +65122 84172 0.5640 +65122 84365 0.4490 +65122 84545 0.4520 +65122 84705 0.4470 +65122 84767 0.4200 +65122 85476 0.5600 +65122 90313 0.4740 +65122 92399 0.6210 +65122 114987 0.5470 +65122 115416 0.4220 +65122 116541 0.4740 +65122 116832 0.5100 +65122 124454 0.5100 +65122 125997 0.5610 +65122 126402 0.5810 +65122 129868 0.7490 +65122 140032 0.5430 +65122 140801 0.5440 +65122 143244 0.5100 +65122 196477 0.4230 +65122 200916 0.5790 +65122 201516 0.4870 +65122 219927 0.6900 +65122 285855 0.5600 +65122 337960 0.7720 +65122 342900 0.7160 +65122 343172 0.4070 +65122 347487 0.5390 +65122 374659 0.4380 +65122 387129 0.5600 +65122 440563 0.4230 +65122 442247 0.4830 +65122 641776 0.4930 +65122 643909 0.4930 +65122 645051 0.4590 +65122 645073 0.4600 +65122 649330 0.4220 +65122 728524 0.4930 +65122 729240 0.4080 +65122 729396 0.4480 +65122 729422 0.4590 +65122 729428 0.4580 +65122 729431 0.4480 +65122 729442 0.4480 +65122 729447 0.4610 +65122 100008586 0.4600 +65122 100129128 0.7230 +65122 100132399 0.4590 +65122 100287482 0.5390 +65122 100288687 0.5350 +65122 100505478 0.5600 +65122 100526842 0.5800 +65122 100529097 0.5520 +65122 100529239 0.5690 +65122 100996746 0.4930 +65122 102724473 0.4480 +65122 105180390 0.4930 +65122 105180391 0.4930 +65123 79034 0.9980 +65123 79035 0.9990 +65123 79657 0.8110 +65123 79871 0.8410 +65123 80010 0.4710 +65123 80789 0.9990 +65123 81556 0.9990 +65123 81608 0.5160 +65123 84126 0.5190 +65123 92105 0.9990 +65123 203245 0.9940 +65123 203522 0.9980 +65123 441519 0.6080 +65123 441521 0.6080 +65123 541465 0.6080 +65123 541466 0.6080 +65123 728911 0.6080 +65123 101060211 0.6080 +65123 102723631 0.6080 +65123 102723680 0.6080 +65123 102723737 0.6080 +65124 79794 0.4050 +65124 80223 0.4700 +65124 80728 0.4230 +65124 81341 0.5400 +65124 81624 0.4240 +65124 81839 0.4350 +65124 128239 0.4060 +65124 151011 0.5340 +65124 284119 0.4200 +65124 285676 0.5320 +65124 390883 0.4070 +65124 445582 0.4330 +65125 65267 0.8270 +65125 65268 0.9690 +65125 83903 0.4460 +65125 84246 0.4470 +65125 84335 0.4530 +65125 84662 0.5850 +65125 84894 0.4840 +65125 115019 0.4290 +65125 127833 0.7170 +65125 131965 0.4450 +65125 133482 0.4680 +65125 283358 0.4010 +65125 440193 0.4430 +65217 79633 0.4520 +65217 79747 0.4230 +65217 79784 0.4230 +65217 79955 0.7410 +65217 83715 0.6560 +65217 84059 0.9290 +65217 84530 0.4730 +65217 84955 0.6190 +65217 91050 0.4210 +65217 92211 0.4750 +65217 117531 0.8930 +65217 117532 0.8730 +65217 124590 0.9840 +65217 125336 0.7000 +65217 126326 0.4840 +65217 129446 0.4090 +65217 140469 0.4700 +65217 146183 0.5440 +65217 161497 0.7430 +65217 222662 0.9910 +65217 246213 0.4700 +65217 259236 0.7900 +65217 283310 0.4410 +65217 286262 0.4310 +65217 286676 0.4450 +65217 340990 0.4900 +65217 346007 0.4510 +65217 375323 0.5400 +65217 375611 0.6690 +65217 375612 0.6040 +65217 388551 0.4560 +65217 388939 0.4040 +65217 389207 0.4750 +65217 442038 0.5200 +65217 494513 0.6330 +65217 645104 0.4480 +65220 79153 0.4580 +65220 80347 0.4760 +65220 81544 0.4370 +65220 84076 0.4450 +65220 84720 0.4040 +65220 84959 0.4830 +65220 90407 0.5440 +65220 91860 0.4060 +65220 93100 0.6640 +65220 114112 0.6600 +65220 121260 0.5330 +65220 126133 0.4310 +65220 133121 0.4060 +65220 133686 0.7920 +65220 137682 0.6900 +65220 160428 0.4500 +65220 163688 0.4160 +65220 169200 0.5300 +65220 200879 0.5300 +65220 220032 0.4370 +65220 246243 0.8250 +65220 283229 0.4260 +65220 284161 0.4430 +65220 339221 0.4060 +65220 340390 0.6900 +65220 349565 0.6530 +65220 374659 0.5990 +65220 390928 0.6760 +65220 440026 0.5300 +65220 642475 0.4230 +65220 729025 0.5160 +65243 114794 0.4250 +65243 285382 0.5070 +65243 342346 0.4620 +65243 641371 0.5350 +65244 80774 0.4330 +65249 79699 0.5400 +65249 116138 0.5450 +65249 150684 0.5400 +65249 440561 0.5400 +65249 440590 0.5400 +65249 646457 0.4770 +65249 653619 0.5400 +65250 79583 0.7220 +65250 79600 0.6730 +65250 79659 0.4020 +65250 79809 0.4830 +65250 79848 0.6050 +65250 79867 0.6740 +65250 79925 0.4470 +65250 80184 0.6660 +65250 80776 0.5820 +65250 83479 0.5480 +65250 84314 0.5070 +65250 91147 0.7290 +65250 95681 0.6710 +65250 153241 0.4560 +65250 200894 0.5360 +65250 221322 0.4020 +65250 261734 0.4340 +65250 317662 0.4090 +65250 374654 0.6090 +65258 79087 0.5050 +65258 79856 0.4360 +65258 80055 0.5630 +65258 84720 0.4870 +65258 93183 0.4710 +65258 93210 0.6910 +65258 122706 0.4680 +65258 132789 0.6980 +65258 140685 0.6440 +65258 140885 0.6920 +65258 170482 0.5940 +65258 283420 0.8520 +65258 284098 0.4390 +65258 100133941 0.4760 +65258 100526664 0.5940 +65260 79139 0.4480 +65260 84447 0.6470 +65260 84987 0.4140 +65260 91419 0.5390 +65260 92667 0.4540 +65260 124454 0.4720 +65260 131474 0.7390 +65260 139322 0.4780 +65260 192111 0.4850 +65260 203547 0.5650 +65260 221154 0.4070 +65260 388753 0.6250 +65260 493753 0.6020 +65260 100272147 0.4340 +65260 100303755 0.4120 +65260 100505876 0.4690 +65263 81559 0.4190 +65263 84875 0.4130 +65263 84948 0.6320 +65263 112849 0.7330 +65263 114881 0.4580 +65263 122945 0.4490 +65263 123688 0.4220 +65263 128308 0.4560 +65263 340371 0.4720 +65264 79876 0.6260 +65264 84231 0.4950 +65264 84439 0.4650 +65264 92912 0.4510 +65264 148581 0.5440 +65264 197131 0.6060 +65264 387522 0.4530 +65265 79075 0.4320 +65265 83743 0.7390 +65265 84524 0.4810 +65265 84933 0.4650 +65265 84948 0.4370 +65265 84955 0.4620 +65265 92856 0.6380 +65265 197407 0.4480 +65265 400506 0.5210 +65265 100533106 0.4200 +65266 65267 0.5030 +65266 84246 0.4470 +65266 91862 0.4780 +65266 115019 0.4330 +65266 124817 0.6310 +65266 127833 0.5030 +65266 147872 0.4240 +65266 163183 0.4190 +65266 401265 0.4250 +65267 81628 0.4200 +65267 84246 0.4470 +65267 89846 0.7100 +65267 115019 0.4660 +65267 127833 0.5160 +65267 133482 0.4510 +65267 101060200 0.4040 +65268 81628 0.4200 +65268 84246 0.4470 +65268 89846 0.7610 +65268 127833 0.6150 +65975 79608 0.5020 +65975 83987 0.4500 +65975 84734 0.4300 +65975 84958 0.4030 +65975 93517 0.4770 +65975 118491 0.4150 +65975 140901 0.4290 +65975 143941 0.4730 +65977 84725 0.4090 +65977 114781 0.4630 +65977 132243 0.4480 +65977 727764 0.4360 +65977 128966690 0.4360 +65979 85464 0.5190 +65980 84678 0.4870 +65980 114803 0.4090 +65980 114991 0.5130 +65980 196528 0.9870 +65980 255877 0.4470 +65980 256646 0.5910 +65980 375307 0.4910 +65980 440093 0.6000 +65980 440686 0.5990 +65980 653604 0.5980 +65980 728378 0.4910 +65981 219771 0.5510 +65981 388581 0.4550 +65982 79673 0.4450 +65982 79891 0.4550 +65982 83987 0.4340 +65982 84547 0.8340 +65982 222663 0.4020 +65982 252884 0.8310 +65982 283212 0.5160 +65982 284312 0.8080 +65982 342945 0.4870 +65982 399823 0.4250 +65983 79188 0.4020 +65983 83786 0.4200 +65983 113201 0.5590 +65983 115123 0.4080 +65983 196996 0.6060 +65983 200081 0.4060 +65983 389320 0.5290 +65983 100127206 0.4790 +65985 79071 0.5970 +65985 80221 0.5560 +65985 80347 0.4050 +65985 81577 0.4920 +65985 84263 0.7210 +65985 90459 0.4610 +65985 132949 0.4770 +65985 137872 0.4470 +65985 144404 0.7720 +65985 157869 0.4430 +65985 197322 0.6870 +65985 254042 0.4550 +65985 285440 0.5850 +65985 376497 0.5370 +65985 389813 0.4910 +65985 728642 0.4100 +65986 79177 0.4100 +65986 114818 0.4570 +65986 140685 0.4210 +65986 442247 0.4260 +65987 84280 0.4160 +65987 85027 0.5130 +65987 92105 0.4390 +65987 130535 0.4790 +65987 146212 0.4780 +65987 147040 0.4330 +65987 197322 0.4570 +65987 202915 0.6070 +65987 222658 0.4890 +65987 284325 0.4850 +65987 399473 0.4150 +65987 100532726 0.4370 +65988 286075 0.4340 +65989 79570 0.4240 +65989 80864 0.5070 +65990 79006 0.6110 +65990 79091 0.4460 +65990 79609 0.4730 +65990 83896 0.4010 +65990 84264 0.5220 +65990 92342 0.5160 +65990 115939 0.5920 +65990 124512 0.4400 +65990 151194 0.4950 +65990 196483 0.4710 +65990 201229 0.4310 +65990 221143 0.5370 +65990 254013 0.4740 +65990 337880 0.4090 +65990 339229 0.5660 +65990 388789 0.4430 +65990 399818 0.4370 +65990 729515 0.4570 +65990 101928527 0.4030 +65991 79184 0.4100 +65991 84437 0.4030 +65991 116442 0.4230 +65991 139341 0.6670 +65991 192111 0.4020 +65991 220869 0.4310 +65991 100272147 0.5940 +65992 79876 0.8550 +65992 80262 0.4080 +65992 80279 0.9890 +65992 80347 0.4030 +65992 84317 0.4160 +65992 84447 0.4200 +65992 147991 0.4070 +65992 167465 0.4260 +65992 195828 0.4100 +65992 399687 0.4060 +65992 402682 0.7990 +65993 78988 0.8960 +65993 79590 0.9180 +65993 79863 0.8700 +65993 84081 0.4520 +65993 84134 0.4230 +65993 84266 0.5580 +65993 84273 0.9610 +65993 84284 0.4970 +65993 84311 0.8940 +65993 84545 0.9540 +65993 84922 0.5100 +65993 85476 0.8820 +65993 87178 0.4010 +65993 89970 0.5270 +65993 90480 0.9380 +65993 92259 0.8600 +65993 92399 0.9250 +65993 116540 0.8580 +65993 116541 0.8890 +65993 118487 0.9870 +65993 122704 0.9040 +65993 124995 0.9080 +65993 126402 0.5090 +65993 128308 0.8880 +65993 131601 0.4180 +65993 143244 0.4090 +65993 158234 0.7430 +65993 196074 0.8660 +65993 219402 0.9180 +65993 219927 0.9300 +65993 246243 0.4840 +65993 285367 0.4530 +65993 347487 0.5070 +65993 374659 0.5440 +65993 387103 0.4330 +65993 100287482 0.4930 +65997 84144 0.5000 +65997 84708 0.4690 +65997 91869 0.4310 +65997 126364 0.4020 +65997 132946 0.8510 +65997 202243 0.4540 +65998 79607 0.8240 +65998 139628 0.4510 +65998 340602 0.5350 +65999 79632 0.6130 +65999 79874 0.4620 +65999 84626 0.6370 +65999 136051 0.4500 +65999 140733 0.4310 +65999 155054 0.4520 +65999 155066 0.4370 +65999 201514 0.5070 +65999 202865 0.4790 +65999 256380 0.4750 +65999 284417 0.4320 +65999 285971 0.4370 +65999 392843 0.4870 +65999 399671 0.4460 +65999 653857 0.6070 +65999 100289678 0.4320 +65999 100527949 0.4630 +66000 79953 0.4380 +66000 128025 0.4310 +66000 646658 0.4980 +66002 80777 0.4030 +66002 113612 0.4830 +66002 120227 0.4280 +66002 132949 0.5310 +66004 79608 0.5010 +66004 85443 0.4030 +66004 116372 0.6330 +66004 130574 0.7770 +66004 130576 0.6000 +66004 137797 0.7760 +66004 147719 0.4210 +66004 160065 0.5060 +66004 171169 0.4030 +66004 284348 0.4930 +66004 338328 0.6260 +66004 389336 0.4060 +66004 390940 0.4470 +66004 399967 0.5220 +66004 399968 0.6070 +66004 432355 0.5800 +66004 100169851 0.5060 +66004 101928108 0.5070 +66005 80258 0.5120 +66005 80835 0.4580 +66005 84735 0.4010 +66005 84912 0.4570 +66005 114327 0.5120 +66005 133015 0.4430 +66005 135138 0.4430 +66005 151651 0.5070 +66005 197335 0.7650 +66005 200844 0.4070 +66005 219670 0.5450 +66005 284013 0.4170 +66005 642636 0.4840 +66008 80179 0.8160 +66008 83787 0.6340 +66008 84270 0.5070 +66008 84376 0.4250 +66008 84709 0.5710 +66008 89941 0.9940 +66008 89953 0.7670 +66008 92558 0.4810 +66008 130540 0.5060 +66008 147700 0.6820 +66035 81031 0.4600 +66035 114134 0.4940 +66035 115584 0.4250 +66035 154091 0.5390 +66035 200010 0.5340 +66035 388886 0.4160 +66036 79734 0.4200 +66036 83605 0.4590 +66036 83648 0.8710 +66036 136332 0.4950 +66036 150082 0.5410 +66036 157285 0.4260 +66036 252969 0.4390 +66036 286046 0.6630 +66036 403313 0.4740 +66037 79876 0.8190 +66037 83659 0.5770 +66037 92906 0.5500 +66037 130132 0.5120 +66037 136991 0.4610 +66037 140886 0.4270 +66037 143689 0.4190 +66037 166979 0.8770 +66037 253175 0.4050 +66037 339345 0.4310 +66037 340719 0.4400 +66037 342977 0.5450 +66037 346673 0.5420 +78986 79845 0.4970 +78986 113444 0.4100 +78986 266743 0.4200 +78987 79087 0.4820 +78987 285368 0.4010 +78988 79590 0.8880 +78988 83446 0.4570 +78988 84311 0.8230 +78988 84340 0.8110 +78988 84545 0.9560 +78988 85476 0.8120 +78988 85865 0.8080 +78988 89874 0.4110 +78988 90480 0.9720 +78988 91574 0.8310 +78988 92170 0.8120 +78988 92399 0.8470 +78988 115416 0.8600 +78988 116540 0.8850 +78988 116541 0.9110 +78988 118487 0.8850 +78988 122704 0.9770 +78988 124995 0.9680 +78988 128308 0.8570 +78988 130916 0.8240 +78988 219402 0.5530 +78988 219927 0.8330 +78988 387338 0.8060 +78988 127898561 0.8110 +78989 140460 0.4690 +78989 160364 0.8600 +78990 79589 0.8200 +78990 80006 0.4510 +78990 80124 0.4380 +78990 83844 0.4610 +78990 84101 0.4920 +78990 84196 0.4340 +78990 85015 0.4990 +78990 90268 0.5470 +78990 92552 0.4150 +78990 114803 0.4250 +78990 122553 0.4720 +78990 126119 0.5470 +78990 139562 0.6350 +78990 161725 0.5450 +78990 165918 0.6020 +78990 220213 0.6360 +78990 221302 0.7840 +78990 377630 0.4260 +78991 134265 0.4560 +78991 157680 0.4040 +78991 158431 0.4610 +78991 161829 0.4090 +78991 254359 0.4260 +78992 81555 0.6350 +78992 84159 0.4850 +78992 84272 0.7870 +78992 90522 0.4780 +78992 285525 0.6020 +78992 286451 0.8700 +78994 90324 0.4680 +78994 114785 0.4360 +78994 140836 0.4030 +78994 339105 0.5060 +78994 342132 0.4160 +78995 80129 0.4300 +78995 83930 0.4470 +78995 84515 0.7530 +78995 112703 0.4310 +78995 125228 0.4450 +78995 139231 0.4470 +78995 162681 0.4170 +78995 254394 0.6130 +78995 341019 0.4330 +78995 440955 0.5070 +78996 79840 0.6080 +78996 83853 0.6370 +78996 84245 0.8900 +78996 84337 0.4060 +78996 149840 0.4140 +78996 200558 0.5320 +78996 286257 0.6910 +78996 375748 0.8120 +78996 550643 0.4470 +78997 83604 0.4380 +78997 84502 0.4060 +78997 125170 0.4330 +78997 146330 0.4530 +78997 256472 0.4870 +78997 441151 0.4040 +78999 80131 0.4630 +78999 81609 0.6430 +78999 84076 0.4300 +78999 84628 0.4980 +78999 92235 0.4370 +78999 122769 0.4320 +78999 140679 0.4920 +78999 147700 0.4430 +78999 151112 0.5520 +78999 151651 0.4650 +78999 347731 0.4710 +78999 390205 0.4200 +78999 440603 0.4590 +79000 79075 0.4200 +79000 81620 0.4740 +79000 113130 0.4910 +79000 221150 0.4770 +79000 400891 0.4790 +79000 100532726 0.4460 +79001 83707 0.4340 +79001 154807 0.9490 +79001 221044 0.4820 +79001 282617 0.4750 +79001 339105 0.4580 +79002 79728 0.4850 +79002 79763 0.4140 +79002 79852 0.5320 +79002 81341 0.6630 +79002 84701 0.8160 +79002 84886 0.8100 +79002 91300 0.5320 +79002 123346 0.4360 +79002 140564 0.5900 +79002 151987 0.4130 +79002 164668 0.5880 +79002 164684 0.6010 +79002 170712 0.4830 +79002 192286 0.4740 +79002 200315 0.5880 +79002 200316 0.5910 +79002 267020 0.4670 +79002 283459 0.7710 +79002 374291 0.5120 +79002 440567 0.7950 +79002 613227 0.4020 +79002 100532726 0.4900 +79002 105372267 0.4420 +79003 79172 0.4290 +79003 79682 0.4130 +79003 79980 0.9990 +79003 80152 0.7440 +79003 83540 0.9860 +79003 84643 0.5000 +79003 91687 0.4380 +79003 147841 0.9930 +79003 151648 0.5950 +79003 220134 0.5060 +79003 378708 0.5870 +79003 387103 0.4350 +79003 100527963 0.6110 +79004 79102 0.5160 +79004 79847 0.4580 +79004 129303 0.4480 +79004 131544 0.5740 +79004 404093 0.5300 +79005 79637 0.9490 +79005 79753 0.8000 +79005 83443 0.8120 +79005 84060 0.8810 +79005 84811 0.8020 +79005 84844 0.8060 +79005 91543 0.5470 +79005 158787 0.4500 +79005 254956 0.4770 +79005 388695 0.4790 +79005 653583 0.4440 +79005 100996928 0.9260 +79006 88745 0.4500 +79006 89953 0.4010 +79006 91461 0.4190 +79006 146325 0.5250 +79006 166348 0.4660 +79006 170850 0.4120 +79006 252995 0.7040 +79006 339834 0.4170 +79006 375567 0.4600 +79007 84501 0.5400 +79007 92822 0.4640 +79007 124044 0.4890 +79007 124045 0.5600 +79008 79447 0.5090 +79008 80010 0.4280 +79008 80198 0.6920 +79008 83719 0.4310 +79008 84464 0.9810 +79008 146956 0.6280 +79008 253980 0.4060 +79008 253982 0.4480 +79008 445329 0.4980 +79008 548593 0.9350 +79008 552900 0.6370 +79008 654483 0.6100 +79008 728340 0.4660 +79008 107282092 0.4830 +79009 79039 0.7200 +79009 79089 0.4600 +79009 79631 0.4290 +79009 79665 0.5120 +79009 79882 0.5280 +79009 79954 0.4680 +79009 80135 0.5540 +79009 80153 0.4830 +79009 83607 0.5770 +79009 83743 0.5440 +79009 84154 0.5240 +79009 84365 0.6930 +79009 84549 0.5030 +79009 84946 0.4100 +79009 84950 0.5400 +79009 87178 0.4910 +79009 90957 0.5200 +79009 92856 0.4290 +79009 117246 0.6300 +79009 155435 0.4200 +79009 161424 0.4180 +79009 165545 0.5210 +79009 170506 0.5850 +79009 219736 0.5010 +79009 221078 0.4450 +79009 261726 0.4930 +79009 285855 0.4150 +79009 345630 0.4730 +79009 387129 0.4070 +79009 643376 0.4040 +79012 284058 0.4420 +79012 389118 0.4300 +79016 79269 0.9150 +79016 80067 0.9570 +79016 80198 0.4330 +79016 80344 0.9670 +79016 84259 0.5070 +79016 90379 0.9980 +79016 118424 0.4440 +79016 138009 0.5400 +79016 139170 0.5400 +79016 139425 0.5880 +79016 149951 0.5580 +79016 150684 0.5200 +79016 170622 0.5170 +79016 197342 0.4550 +79016 285429 0.5980 +79016 340578 0.5400 +79016 347442 0.6270 +79017 79094 0.9450 +79017 79156 0.8410 +79017 87769 0.4140 +79017 124975 0.9380 +79017 137362 0.8030 +79017 139818 0.5440 +79017 374897 0.5030 +79017 494143 0.9420 +79017 728226 0.7510 +79018 80232 0.9720 +79018 84926 0.6990 +79018 91647 0.4100 +79018 116225 0.5450 +79018 144321 0.5940 +79018 221687 0.4770 +79019 79022 0.4360 +79019 79172 0.9990 +79019 79682 0.9990 +79019 79733 0.4810 +79019 79801 0.5350 +79019 79980 0.4760 +79019 80152 0.9990 +79019 80178 0.4180 +79019 81620 0.6600 +79019 81930 0.5190 +79019 83461 0.8350 +79019 83540 0.6980 +79019 84057 0.5500 +79019 91687 0.9990 +79019 113130 0.7150 +79019 115650 0.4300 +79019 121504 0.8000 +79019 146909 0.4280 +79019 147841 0.7840 +79019 151648 0.4870 +79019 201254 0.9890 +79019 220134 0.7740 +79019 221150 0.4510 +79019 259266 0.6260 +79019 284293 0.4180 +79019 378708 0.9970 +79019 387103 0.9950 +79019 389124 0.4990 +79019 401541 0.9980 +79019 404037 0.4230 +79019 440093 0.4100 +79019 440686 0.4100 +79019 554313 0.8000 +79019 653604 0.4100 +79020 81552 0.4990 +79020 84292 0.5510 +79020 84792 0.4330 +79020 254158 0.6660 +79020 727897 0.4030 +79020 100507203 0.5800 +79022 79657 0.4570 +79022 340348 0.5030 +79023 79228 0.4760 +79023 79726 0.4090 +79023 79760 0.4370 +79023 79833 0.5500 +79023 79902 0.9990 +79023 80145 0.5050 +79023 81608 0.4620 +79023 81929 0.9990 +79023 84248 0.4350 +79023 84271 0.6500 +79023 84321 0.6600 +79023 84324 0.4900 +79023 84661 0.4160 +79023 91754 0.4260 +79023 116835 0.4450 +79023 129401 0.9900 +79023 140609 0.4230 +79023 259217 0.4450 +79023 348995 0.9990 +79023 728343 0.5160 +79023 729857 0.6090 +79023 100101267 0.5960 +79024 85027 0.4180 +79024 388588 0.4460 +79025 84619 0.5410 +79025 133418 0.4350 +79025 140701 0.5270 +79025 252983 0.4240 +79026 83481 0.5000 +79026 84955 0.6190 +79026 113146 0.9440 +79026 126306 0.4680 +79026 152006 0.5350 +79026 284119 0.5250 +79026 374739 0.4260 +79026 493829 0.6780 +79026 653145 0.5590 +79027 81556 0.4710 +79027 220082 0.4120 +79029 79034 0.4470 +79029 79058 0.5790 +79029 79139 0.7280 +79029 80233 0.6770 +79029 80343 0.5160 +79029 84447 0.5930 +79029 84954 0.4180 +79029 91319 0.5780 +79029 128822 0.4500 +79029 137886 0.6730 +79029 166378 0.8940 +79031 84838 0.4110 +79031 123103 0.4220 +79031 132954 0.4780 +79031 139741 0.6210 +79031 140625 0.5220 +79031 153770 0.4290 +79031 200942 0.4550 +79031 203068 0.6860 +79031 349136 0.4550 +79031 441531 0.4300 +79033 79639 0.5340 +79033 80725 0.4040 +79033 84916 0.4290 +79033 90459 0.5680 +79033 149473 0.5260 +79033 440574 0.4260 +79034 80789 0.9980 +79034 81552 0.4430 +79034 81556 0.8400 +79034 84792 0.4740 +79034 84922 0.5180 +79034 92105 0.8920 +79034 116224 0.4460 +79034 203245 0.4340 +79034 203522 0.7110 +79034 221496 0.4430 +79034 441519 0.5400 +79034 441521 0.5400 +79034 541465 0.5400 +79034 541466 0.5400 +79034 728911 0.5400 +79034 729515 0.4470 +79034 101060211 0.5400 +79034 102723631 0.5400 +79034 102723680 0.5400 +79034 102723737 0.5400 +79035 79729 0.4440 +79035 80311 0.4870 +79035 80789 0.9970 +79035 81556 0.5800 +79035 84134 0.4040 +79035 84142 0.4110 +79035 92105 0.6280 +79035 113444 0.4210 +79035 149345 0.4530 +79035 203245 0.4300 +79035 203522 0.5320 +79036 84062 0.6090 +79036 90410 0.4520 +79036 91408 0.4290 +79036 91875 0.5070 +79036 116832 0.4290 +79036 118426 0.9990 +79036 119032 0.9980 +79036 121273 0.4180 +79036 127829 0.6330 +79036 140801 0.4290 +79036 145781 0.5250 +79036 164127 0.4690 +79036 201255 0.7430 +79036 205860 0.4220 +79036 221079 0.6060 +79036 254268 0.4290 +79036 282991 0.9990 +79036 285855 0.4440 +79036 342538 0.4020 +79036 388552 0.4550 +79036 645051 0.4730 +79036 645073 0.4730 +79036 729396 0.4730 +79036 729422 0.4730 +79036 729428 0.4730 +79036 729431 0.4730 +79036 729442 0.4730 +79036 729447 0.4730 +79036 729991 0.9980 +79036 100008586 0.4730 +79036 100132399 0.4730 +79036 100526842 0.4290 +79036 102724473 0.4730 +79037 81607 0.5220 +79037 84868 0.4410 +79037 114836 0.4300 +79037 148753 0.4180 +79037 149628 0.4260 +79037 151888 0.4050 +79037 201266 0.4200 +79037 201633 0.7270 +79037 374403 0.4650 +79038 81839 0.4110 +79038 122402 0.4400 +79038 200162 0.4560 +79039 79050 0.6410 +79039 79132 0.5230 +79039 79159 0.7670 +79039 79665 0.5700 +79039 79711 0.4190 +79039 79954 0.7280 +79039 79979 0.6040 +79039 80135 0.5630 +79039 83475 0.4400 +79039 83479 0.5260 +79039 83732 0.4270 +79039 83743 0.7350 +79039 84128 0.4180 +79039 84154 0.9040 +79039 84172 0.8540 +79039 84294 0.6260 +79039 84319 0.5300 +79039 84365 0.9480 +79039 84450 0.4070 +79039 84549 0.6410 +79039 84916 0.6790 +79039 84946 0.8370 +79039 87178 0.4900 +79039 88745 0.7750 +79039 90957 0.7620 +79039 92345 0.4130 +79039 92856 0.6680 +79039 115708 0.6620 +79039 116966 0.4640 +79039 117246 0.9520 +79039 124245 0.4620 +79039 142940 0.5620 +79039 146212 0.6230 +79039 149986 0.4370 +79039 161424 0.8390 +79039 165545 0.5540 +79039 221078 0.9200 +79039 285855 0.4450 +79039 317781 0.5310 +79039 345630 0.4140 +79039 387129 0.4290 +79039 387338 0.4440 +79039 692312 0.7270 +79041 79064 0.4340 +79041 79086 0.6680 +79041 79639 0.4760 +79041 80345 0.4220 +79041 83862 0.4980 +79041 84233 0.4790 +79041 84236 0.4430 +79041 84814 0.7580 +79041 94120 0.5020 +79041 126006 0.5910 +79041 134285 0.4170 +79041 142689 0.4420 +79041 151871 0.5310 +79041 199953 0.5180 +79041 200539 0.5090 +79041 201799 0.5780 +79041 284451 0.4170 +79041 284612 0.4090 +79041 339291 0.4520 +79041 389257 0.4750 +79041 401265 0.5890 +79041 100130519 0.5000 +79042 79143 0.5480 +79042 79165 0.4930 +79042 80746 0.9990 +79042 83707 0.6060 +79042 114034 0.4830 +79042 116461 0.9990 +79042 138716 0.4050 +79042 283989 0.9990 +79042 345630 0.4410 +79042 375341 0.4080 +79047 79068 0.8660 +79047 83741 0.5990 +79047 84280 0.4010 +79047 89866 0.8110 +79047 127018 0.5300 +79047 129787 0.9560 +79047 132789 0.9550 +79047 134359 0.5060 +79047 144233 0.6460 +79047 158038 0.5060 +79047 219402 0.5060 +79047 222658 0.4420 +79047 253559 0.4180 +79047 257194 0.9330 +79047 283219 0.4250 +79047 284252 0.6040 +79047 339488 0.5990 +79047 100526835 0.5270 +79048 83642 0.7700 +79048 85465 0.5710 +79048 96764 0.4210 +79048 114112 0.7360 +79048 118672 0.8860 +79048 140606 0.6350 +79048 257202 0.4830 +79048 280636 0.6430 +79048 339416 0.5350 +79048 348303 0.7680 +79048 389434 0.4720 +79048 493869 0.4620 +79050 79159 0.6480 +79050 79571 0.8630 +79050 79643 0.4690 +79050 79665 0.4250 +79050 79707 0.5530 +79050 79711 0.5560 +79050 79730 0.5610 +79050 79954 0.9990 +79050 80135 0.6650 +79050 80324 0.4770 +79050 80737 0.4900 +79050 80854 0.4020 +79050 81543 0.4590 +79050 81627 0.4260 +79050 81887 0.5940 +79050 83480 0.5640 +79050 83732 0.7710 +79050 83743 0.9200 +79050 84128 0.9990 +79050 84135 0.9990 +79050 84154 0.8360 +79050 84172 0.6240 +79050 84274 0.4550 +79050 84294 0.7380 +79050 84319 0.4050 +79050 84365 0.8210 +79050 84549 0.6380 +79050 84916 0.9990 +79050 84946 0.9410 +79050 85395 0.8250 +79050 85441 0.5000 +79050 88745 0.7380 +79050 89822 0.4590 +79050 90121 0.5560 +79050 90381 0.5990 +79050 90957 0.4680 +79050 91582 0.8240 +79050 91893 0.4480 +79050 92002 0.5070 +79050 92856 0.9990 +79050 94056 0.4810 +79050 112840 0.4040 +79050 115752 0.5370 +79050 115939 0.4020 +79050 116966 0.5650 +79050 117246 0.6130 +79050 118460 0.6970 +79050 126402 0.7490 +79050 128061 0.8000 +79050 129563 0.5350 +79050 131096 0.4330 +79050 140032 0.7730 +79050 146212 0.4450 +79050 153443 0.8200 +79050 155368 0.5720 +79050 161424 0.7470 +79050 165257 0.4600 +79050 165545 0.5950 +79050 170506 0.4160 +79050 220134 0.4520 +79050 221078 0.7120 +79050 221830 0.5880 +79050 253782 0.4250 +79050 254013 0.4300 +79050 256356 0.4730 +79050 286148 0.5310 +79050 317781 0.5050 +79050 345630 0.9530 +79050 387129 0.4120 +79050 641776 0.4700 +79050 643909 0.4700 +79050 692312 0.6560 +79050 728524 0.4700 +79050 100526740 0.4090 +79050 100527943 0.4080 +79050 100996746 0.4700 +79050 105180390 0.4700 +79050 105180391 0.4700 +79050 114483834 0.4210 +79053 79087 0.8780 +79053 79644 0.6600 +79053 79796 0.4750 +79053 79868 0.7190 +79053 79947 0.4590 +79053 80115 0.4050 +79053 84061 0.5060 +79053 84920 0.9650 +79053 85365 0.6720 +79053 92856 0.5110 +79053 93183 0.4990 +79053 144245 0.9660 +79053 199221 0.4130 +79053 199857 0.7260 +79053 201595 0.6460 +79053 283219 0.4710 +79053 440138 0.7610 +79054 80036 0.4030 +79054 80228 0.4150 +79054 84876 0.4470 +79054 91860 0.4260 +79054 93129 0.4850 +79054 116512 0.6510 +79054 131601 0.4290 +79054 162514 0.9720 +79054 163688 0.4260 +79054 165140 0.4040 +79054 221692 0.5020 +79054 255231 0.5050 +79054 266977 0.4290 +79054 285966 0.5370 +79054 338567 0.4900 +79054 342372 0.4060 +79056 79075 0.4150 +79056 80762 0.4200 +79056 83482 0.4140 +79056 91614 0.4760 +79056 195814 0.4560 +79056 221044 0.4360 +79056 252983 0.4650 +79056 283078 0.4040 +79056 338339 0.5750 +79056 340719 0.4130 +79056 493860 0.6050 +79057 80762 0.6130 +79057 164592 0.4690 +79057 221044 0.5850 +79057 256949 0.4160 +79057 440699 0.4100 +79057 100130742 0.6500 +79058 79609 0.5070 +79058 80233 0.4040 +79058 80700 0.9960 +79058 83473 0.4590 +79058 84154 0.4030 +79058 91544 0.5360 +79058 126637 0.4200 +79058 127733 0.9960 +79058 137886 0.9970 +79058 149371 0.5150 +79058 165324 0.9970 +79058 166378 0.5750 +79058 171017 0.4190 +79064 79639 0.6050 +79064 84336 0.6240 +79064 94005 0.4880 +79064 201799 0.4860 +79064 388564 0.5240 +79064 440957 0.6290 +79064 728568 0.4640 +79064 790955 0.4390 +79065 79671 0.4170 +79065 81631 0.8120 +79065 81671 0.5790 +79065 83734 0.6740 +79065 84141 0.4050 +79065 84557 0.8830 +79065 84938 0.6960 +79065 84971 0.7330 +79065 89849 0.6680 +79065 112936 0.4570 +79065 115201 0.7430 +79065 140901 0.6210 +79065 149420 0.6040 +79065 157753 0.7550 +79065 203245 0.4510 +79065 285973 0.9130 +79065 440738 0.5010 +79065 441925 0.5870 +79065 643246 0.5150 +79065 654346 0.6190 +79065 729830 0.4180 +79066 79068 0.7920 +79066 79707 0.4970 +79066 79828 0.5180 +79066 79872 0.9260 +79066 84190 0.6400 +79066 91746 0.8240 +79066 124245 0.5300 +79066 142940 0.4090 +79066 196074 0.5710 +79066 221078 0.4830 +79066 221120 0.5780 +79066 253943 0.7980 +79066 399818 0.5710 +79066 728464 0.5240 +79068 79190 0.7840 +79068 79191 0.8120 +79068 79192 0.6590 +79068 79710 0.4690 +79068 79730 0.5020 +79068 79872 0.6990 +79068 80320 0.4180 +79068 84159 0.5010 +79068 84266 0.5500 +79068 84327 0.5600 +79068 84964 0.5210 +79068 89866 0.7210 +79068 91746 0.8890 +79068 91801 0.7420 +79068 93587 0.5650 +79068 113802 0.4310 +79068 116519 0.6130 +79068 116985 0.4400 +79068 121642 0.7190 +79068 127018 0.5070 +79068 129787 0.9050 +79068 132789 0.8800 +79068 133522 0.4240 +79068 136259 0.4670 +79068 144233 0.4780 +79068 145741 0.4180 +79068 164045 0.6390 +79068 169026 0.8140 +79068 219402 0.4480 +79068 221120 0.8160 +79068 221895 0.5810 +79068 253943 0.8830 +79068 257194 0.8600 +79068 257218 0.4220 +79068 338557 0.6360 +79068 100526835 0.5130 +79070 143888 0.4600 +79070 152002 0.6000 +79070 283464 0.6300 +79070 285203 0.5350 +79070 727936 0.6200 +79071 79966 0.9680 +79071 80339 0.5450 +79071 81616 0.4770 +79071 84649 0.6110 +79071 116255 0.4850 +79071 201562 0.9520 +79071 401494 0.9180 +79072 79086 0.4090 +79072 79675 0.4730 +79072 80222 0.6650 +79072 81573 0.4430 +79072 84881 0.4230 +79072 85476 0.7190 +79072 87178 0.7520 +79072 120787 0.4260 +79072 128414 0.4760 +79072 129831 0.5500 +79072 145873 0.4300 +79072 155185 0.5190 +79072 201299 0.4580 +79072 202333 0.4380 +79072 219537 0.4880 +79072 219874 0.4490 +79072 284001 0.4910 +79072 341640 0.4250 +79072 348793 0.4910 +79072 390199 0.4210 +79073 79731 0.7320 +79073 84233 0.4820 +79073 84464 0.7300 +79073 84668 0.4540 +79073 89894 0.6180 +79073 90407 0.5420 +79073 90701 0.4920 +79073 91875 0.6950 +79073 112849 0.8590 +79073 115426 0.4210 +79073 116832 0.6450 +79073 124454 0.6470 +79073 140894 0.4610 +79073 158584 0.7830 +79073 219654 0.4870 +79073 283985 0.8150 +79073 285148 0.8260 +79073 341116 0.4440 +79073 375775 0.4580 +79073 441151 0.4070 +79074 90957 0.4330 +79074 144108 0.4040 +79074 147965 0.5630 +79074 154007 0.5340 +79074 221143 0.4410 +79074 283742 0.9980 +79074 339487 0.9480 +79075 79682 0.4990 +79075 79733 0.4900 +79075 79801 0.4400 +79075 79915 0.7930 +79075 79968 0.4630 +79075 79991 0.5270 +79075 80169 0.4990 +79075 80723 0.4100 +79075 81620 0.5660 +79075 81930 0.4530 +79075 83461 0.4890 +79075 83540 0.7040 +79075 83879 0.5530 +79075 83990 0.5310 +79075 84057 0.4770 +79075 84296 0.5410 +79075 90381 0.4800 +79075 113115 0.4100 +79075 113130 0.7220 +79075 114799 0.8890 +79075 157313 0.4840 +79075 157570 0.9030 +79075 220134 0.4070 +79075 221150 0.5370 +79075 259266 0.4160 +79075 283431 0.5550 +79075 340719 0.4460 +79075 100134934 0.4990 +79077 83852 0.4600 +79077 84328 0.5140 +79077 84618 0.9090 +79077 93034 0.9080 +79077 115024 0.9060 +79077 123920 0.4260 +79077 129607 0.9000 +79077 221264 0.9290 +79077 284371 0.4460 +79077 337867 0.4410 +79077 654364 0.9130 +79077 100526794 0.9080 +79078 83862 0.4040 +79078 374969 0.4540 +79078 440585 0.5060 +79078 728621 0.4160 +79080 80142 0.4630 +79080 83743 0.5140 +79080 83941 0.4580 +79080 84365 0.4480 +79080 85437 0.5810 +79080 92421 0.4120 +79080 257236 0.4080 +79080 341116 0.4310 +79081 80764 0.5400 +79083 79710 0.4200 +79083 81031 0.4970 +79083 84501 0.4680 +79083 84958 0.6620 +79083 196383 0.6650 +79083 201294 0.5790 +79084 79723 0.4030 +79084 79760 0.5210 +79084 79833 0.5120 +79084 80335 0.8360 +79084 81608 0.8330 +79084 83732 0.9900 +79084 84444 0.5780 +79084 85235 0.4030 +79084 94239 0.5520 +79084 114034 0.5070 +79084 121504 0.8190 +79084 134353 0.5710 +79084 136157 0.4750 +79084 143506 0.4750 +79084 192111 0.4790 +79084 196120 0.4750 +79084 196528 0.5240 +79084 219333 0.4580 +79084 221613 0.4030 +79084 221895 0.5170 +79084 284695 0.6020 +79084 390031 0.4750 +79084 390033 0.4750 +79084 441584 0.4750 +79084 474382 0.4030 +79084 554313 0.8190 +79084 643988 0.4750 +79084 653604 0.6790 +79085 79728 0.5120 +79085 80024 0.4640 +79085 80195 0.4230 +79085 84939 0.5820 +79085 90550 0.7580 +79085 91689 0.5940 +79085 91860 0.5670 +79085 112812 0.4070 +79085 114789 0.7880 +79085 119391 0.4040 +79085 139221 0.5870 +79085 163688 0.5670 +79085 221154 0.9110 +79085 286097 0.7280 +79085 374291 0.7600 +79085 493856 0.4320 +79085 728317 0.5780 +79086 80345 0.4070 +79086 81573 0.4980 +79086 83548 0.7310 +79086 91949 0.4220 +79086 94120 0.4180 +79086 126626 0.4990 +79086 127253 0.4170 +79086 201799 0.4780 +79086 284451 0.5820 +79086 100293516 0.4770 +79087 79174 0.5550 +79087 79644 0.4490 +79087 79676 0.4460 +79087 79796 0.9730 +79087 79868 0.7610 +79087 79947 0.4300 +79087 80115 0.8050 +79087 80235 0.6470 +79087 80305 0.4050 +79087 84061 0.5810 +79087 84720 0.5430 +79087 84920 0.6640 +79087 85358 0.8210 +79087 85365 0.7100 +79087 85378 0.4380 +79087 91289 0.4640 +79087 93183 0.6150 +79087 124454 0.4090 +79087 144245 0.9660 +79087 153642 0.4660 +79087 199857 0.7360 +79087 201595 0.7140 +79087 219333 0.4250 +79087 284098 0.4360 +79087 415116 0.5940 +79087 440138 0.7950 +79088 114824 0.5510 +79088 128488 0.5200 +79088 388381 0.4180 +79089 79591 0.5460 +79089 79639 0.4490 +79089 79877 0.4220 +79089 79882 0.4310 +79089 80153 0.4340 +79089 81790 0.4230 +79089 83590 0.8440 +79089 83607 0.5920 +79089 84950 0.4560 +79089 85406 0.5940 +79089 91304 0.8200 +79089 91445 0.8740 +79089 91949 0.4840 +79089 114790 0.4150 +79089 200014 0.4600 +79089 221981 0.4430 +79089 337867 0.4110 +79089 387263 0.4990 +79090 80006 0.9330 +79090 81876 0.8170 +79090 83452 0.4130 +79090 84922 0.4320 +79090 84952 0.4040 +79090 89866 0.5590 +79090 114882 0.4010 +79090 117177 0.5900 +79090 122553 0.9280 +79090 126003 0.9990 +79090 167691 0.6720 +79090 284353 0.4840 +79090 339122 0.4150 +79090 401409 0.5020 +79090 100128327 0.9370 +79091 79609 0.7360 +79091 79823 0.6500 +79091 83743 0.4040 +79091 92342 0.7160 +79091 124512 0.7160 +79091 134145 0.4940 +79091 151194 0.8140 +79091 196483 0.6480 +79091 196541 0.4820 +79091 221143 0.5470 +79091 221937 0.4590 +79091 254013 0.8080 +79091 285193 0.4600 +79091 399818 0.5850 +79091 401612 0.5450 +79091 751071 0.5130 +79092 79755 0.6270 +79092 80332 0.4700 +79092 83889 0.4540 +79092 84270 0.4380 +79092 84433 0.9200 +79092 84648 0.4390 +79092 84674 0.4890 +79092 85463 0.4790 +79092 91614 0.6310 +79092 124599 0.5450 +79092 125058 0.4510 +79092 125893 0.4070 +79092 130340 0.7780 +79092 145282 0.5480 +79092 149233 0.6200 +79092 339366 0.4410 +79092 353143 0.5280 +79092 353144 0.4470 +79094 79924 0.4360 +79094 83667 0.6080 +79094 83729 0.5280 +79094 119391 0.7360 +79094 124975 0.9180 +79094 134266 0.5740 +79094 221357 0.6620 +79094 257202 0.9090 +79094 259217 0.4250 +79094 440275 0.4340 +79094 493869 0.9120 +79094 494143 0.9070 +79094 653689 0.6760 +79095 80184 0.5560 +79095 90423 0.6650 +79095 199745 0.4510 +79095 221491 0.4380 +79095 319101 0.4680 +79096 79797 0.5670 +79096 84276 0.8180 +79096 84542 0.6270 +79096 84975 0.5610 +79096 91978 0.7530 +79096 93594 0.4450 +79096 126526 0.4180 +79096 374618 0.4160 +79096 448834 0.5260 +79096 790955 0.4870 +79097 81168 0.5050 +79097 81318 0.4160 +79097 120586 0.4470 +79097 143879 0.4450 +79097 219428 0.4180 +79097 219436 0.4470 +79097 219447 0.4360 +79097 219453 0.4040 +79097 282775 0.4090 +79097 338674 0.4760 +79097 390144 0.4690 +79097 390148 0.4160 +79097 390151 0.4470 +79097 390152 0.4160 +79097 390999 0.4020 +79097 400736 0.5450 +79097 440560 0.5330 +79097 554226 0.4040 +79097 100129128 0.4790 +79098 79170 0.4540 +79098 388559 0.4480 +79098 401546 0.4290 +79101 79722 0.4280 +79101 84172 0.7070 +79101 84647 0.4080 +79101 85236 0.4030 +79101 85403 0.6250 +79101 94239 0.4460 +79101 128312 0.5300 +79101 165679 0.4320 +79101 204474 0.4760 +79101 221830 0.7160 +79101 255626 0.4310 +79101 282809 0.4470 +79101 284119 0.4990 +79101 404672 0.4990 +79101 474382 0.4010 +79101 653604 0.4160 +79102 79188 0.7090 +79102 79594 0.5140 +79102 79671 0.4610 +79102 81844 0.6550 +79102 84245 0.4410 +79102 84289 0.4120 +79102 91445 0.5900 +79102 92715 0.4760 +79102 121643 0.4240 +79102 197358 0.5440 +79102 283150 0.4510 +79102 286204 0.4160 +79102 340061 0.6700 +79109 79899 0.9990 +79109 80025 0.4690 +79109 83667 0.5510 +79109 84335 0.9980 +79109 117145 0.5360 +79109 143686 0.5230 +79109 253260 0.9990 +79132 79671 0.6270 +79132 79677 0.5250 +79132 80143 0.5280 +79132 80198 0.5660 +79132 81030 0.6430 +79132 81622 0.4260 +79132 83666 0.5460 +79132 84166 0.5780 +79132 84282 0.8150 +79132 84514 0.7200 +79132 84875 0.5200 +79132 84893 0.5560 +79132 85363 0.4260 +79132 85441 0.6590 +79132 87178 0.5040 +79132 89122 0.4090 +79132 90957 0.4840 +79132 91543 0.8740 +79132 94240 0.6030 +79132 114548 0.5390 +79132 114609 0.4440 +79132 115004 0.6810 +79132 115361 0.4940 +79132 115362 0.4080 +79132 129607 0.6850 +79132 148022 0.6600 +79132 163702 0.4080 +79132 165631 0.4060 +79132 170506 0.5820 +79132 197358 0.4120 +79132 219285 0.5950 +79132 254528 0.4120 +79132 282616 0.4080 +79132 282617 0.4040 +79132 282618 0.5340 +79132 340061 0.6960 +79132 345611 0.4560 +79133 80224 0.8290 +79133 84274 0.4140 +79133 84515 0.4160 +79133 91942 0.9470 +79133 118487 0.4290 +79133 126328 0.8510 +79133 134266 0.6640 +79133 137682 0.9880 +79133 196403 0.4920 +79133 284184 0.9480 +79133 374291 0.9990 +79133 399818 0.4450 +79133 493753 0.5080 +79133 751071 0.4460 +79133 100996939 0.5780 +79134 79803 0.4760 +79134 80209 0.4220 +79134 84548 0.5400 +79134 374393 0.4470 +79135 80311 0.6050 +79135 84134 0.5430 +79135 84233 0.5250 +79135 84269 0.8570 +79135 84303 0.9990 +79135 84833 0.4340 +79135 91137 0.5030 +79135 115209 0.4790 +79135 116519 0.6170 +79135 125988 0.9990 +79135 131474 0.4550 +79135 139322 0.9980 +79135 286451 0.4150 +79135 345778 0.7920 +79135 387990 0.5690 +79135 400916 0.9670 +79135 401505 0.7940 +79135 440574 0.9890 +79135 100188893 0.6260 +79135 100287932 0.4180 +79135 100528017 0.5400 +79137 79844 0.4760 +79137 81631 0.4770 +79137 84154 0.4210 +79137 84549 0.4220 +79137 84557 0.4310 +79137 84946 0.4160 +79137 134218 0.4880 +79137 140801 0.5020 +79137 200916 0.4330 +79137 285855 0.4410 +79137 387129 0.4370 +79137 100505478 0.4180 +79139 80233 0.8750 +79139 80235 0.4330 +79139 80267 0.4840 +79139 80343 0.8520 +79139 80700 0.4780 +79139 81502 0.9390 +79139 83451 0.6490 +79139 84447 0.9990 +79139 84720 0.4090 +79139 84985 0.4380 +79139 90196 0.5560 +79139 90522 0.6340 +79139 91319 0.9660 +79139 91445 0.8260 +79139 91544 0.4520 +79139 92305 0.9470 +79139 93594 0.5210 +79139 113115 0.4310 +79139 118424 0.9010 +79139 137886 0.8840 +79139 137964 0.4350 +79139 153830 0.5180 +79139 157769 0.4110 +79139 165324 0.4870 +79139 166378 0.7260 +79139 258010 0.6440 +79139 337867 0.5120 +79139 339416 0.5730 +79139 340061 0.4880 +79140 79738 0.8010 +79140 80173 0.4010 +79140 80184 0.6940 +79140 91147 0.7540 +79140 92482 0.5050 +79140 129880 0.8780 +79140 157657 0.4350 +79140 166379 0.8170 +79140 200081 0.4270 +79140 285672 0.5470 +79142 79595 0.6120 +79142 83860 0.4920 +79142 84312 0.5870 +79142 90678 0.5710 +79142 93081 0.4030 +79142 284114 0.4320 +79142 389333 0.4010 +79142 440093 0.6520 +79142 440686 0.6490 +79142 653604 0.6490 +79143 79165 0.6890 +79143 79660 0.5840 +79143 80339 0.8860 +79143 81555 0.4220 +79143 127018 0.6210 +79143 135398 0.5210 +79143 147798 0.9010 +79143 253558 0.9400 +79143 254531 0.4400 +79143 345275 0.8740 +79144 128229 0.4030 +79144 346389 0.4790 +79145 81849 0.4700 +79145 84269 0.5750 +79145 84274 0.4500 +79145 84987 0.4410 +79145 90362 0.6130 +79145 90639 0.8200 +79145 92399 0.4020 +79145 96764 0.4110 +79145 114786 0.6230 +79145 116228 0.6320 +79145 118490 0.4090 +79145 131118 0.4450 +79145 131474 0.7800 +79145 137695 0.6940 +79145 137886 0.4700 +79145 152100 0.5030 +79145 195814 0.7230 +79145 254251 0.5480 +79145 388753 0.7420 +79145 400916 0.4830 +79145 493753 0.7860 +79145 100272147 0.5350 +79145 100303755 0.5340 +79147 79694 0.4200 +79147 84197 0.8460 +79147 84892 0.8620 +79147 120071 0.7340 +79147 133584 0.5590 +79147 148789 0.8290 +79147 149175 0.4210 +79147 203859 0.8670 +79147 342898 0.4230 +79147 375790 0.7200 +79147 729920 0.7760 +79148 118932 0.4350 +79148 256957 0.4020 +79149 80759 0.4480 +79149 129868 0.4270 +79149 541578 0.5400 +79152 79726 0.4420 +79152 79966 0.4350 +79152 80025 0.7360 +79152 80055 0.4040 +79152 80067 0.7180 +79152 80208 0.6500 +79152 80347 0.7170 +79152 80777 0.5180 +79152 80821 0.5430 +79152 91574 0.4470 +79152 93377 0.4090 +79152 113612 0.5960 +79152 123099 0.4710 +79152 123606 0.5010 +79152 124637 0.4180 +79152 137492 0.5060 +79152 197259 0.5000 +79152 204219 0.4320 +79152 392636 0.9430 +79153 79447 0.5050 +79153 79944 0.5470 +79153 81544 0.4010 +79153 81579 0.6850 +79153 83719 0.6620 +79153 83723 0.4130 +79153 84647 0.6580 +79153 112476 0.4280 +79153 123745 0.6950 +79153 124446 0.4450 +79153 133121 0.9380 +79153 146378 0.4770 +79153 151056 0.6910 +79153 200879 0.4460 +79153 220032 0.4450 +79153 222236 0.5270 +79153 253980 0.5210 +79153 253982 0.5720 +79153 254531 0.9100 +79153 255043 0.9090 +79153 255189 0.6910 +79153 283748 0.6880 +79153 283897 0.4790 +79153 283899 0.4700 +79153 284161 0.9070 +79153 339221 0.4060 +79153 391013 0.6650 +79153 653808 0.4010 +79153 100137049 0.6920 +79154 79893 0.7150 +79154 79922 0.6420 +79154 80179 0.5640 +79154 84693 0.5370 +79154 112812 0.4740 +79154 121214 0.4390 +79154 161835 0.8860 +79154 220074 0.4350 +79154 284086 0.5830 +79154 284098 0.5910 +79154 284099 0.4180 +79154 346673 0.5490 +79155 79931 0.7640 +79155 81858 0.4200 +79155 154796 0.4100 +79155 154810 0.4200 +79156 81559 0.7690 +79156 148523 0.4030 +79157 79847 0.6440 +79157 80262 0.4360 +79157 81622 0.4820 +79157 83985 0.5700 +79157 84061 0.4620 +79157 84255 0.5020 +79157 84641 0.4780 +79157 84804 0.6880 +79157 84879 0.4680 +79157 84975 0.7840 +79157 91833 0.4290 +79157 113655 0.6450 +79157 124411 0.4620 +79157 124512 0.5650 +79157 126272 0.4170 +79157 126321 0.6260 +79157 129285 0.5090 +79157 136306 0.6400 +79157 146664 0.4330 +79157 154091 0.4390 +79157 162387 0.6500 +79157 201305 0.5480 +79157 256471 0.5920 +79157 388931 0.5200 +79157 390162 0.5050 +79158 80790 0.4580 +79158 84572 0.9990 +79158 131368 0.4500 +79158 137868 0.4200 +79158 138050 0.4710 +79158 200576 0.4110 +79159 79706 0.6040 +79159 79730 0.4640 +79159 79759 0.6870 +79159 79954 0.5980 +79159 80135 0.6700 +79159 84128 0.5600 +79159 84135 0.4580 +79159 84154 0.8290 +79159 84186 0.5130 +79159 84294 0.5780 +79159 84319 0.4060 +79159 84365 0.9730 +79159 84450 0.5030 +79159 84549 0.7190 +79159 84811 0.6280 +79159 84916 0.5880 +79159 88745 0.6390 +79159 90957 0.4550 +79159 92170 0.4250 +79159 92856 0.7720 +79159 115098 0.4470 +79159 115509 0.4820 +79159 117246 0.9640 +79159 146212 0.6320 +79159 200916 0.4770 +79159 221078 0.8350 +79159 285855 0.5470 +79159 339230 0.7420 +79159 387129 0.5320 +79159 387338 0.5070 +79159 692312 0.6390 +79159 100505478 0.4630 +79159 100526737 0.4250 +79161 84259 0.4120 +79161 154661 0.5820 +79161 167555 0.4040 +79161 222223 0.4150 +79161 440574 0.4350 +79161 107986818 0.4740 +79165 79590 0.4350 +79165 80221 0.4390 +79165 84081 0.5130 +79165 84545 0.4310 +79165 85313 0.5530 +79165 92170 0.4300 +79165 94059 0.4560 +79165 115416 0.4050 +79165 118924 0.6650 +79165 127066 0.4780 +79165 143884 0.5500 +79165 147798 0.4280 +79165 199746 0.5180 +79165 219927 0.4480 +79165 353514 0.4180 +79165 731220 0.5520 +79168 284021 0.4150 +79169 79753 0.4330 +79169 84080 0.4390 +79169 128308 0.4310 +79169 286499 0.4320 +79169 441381 0.4460 +79170 114881 0.4740 +79170 114960 0.5600 +79170 140461 0.4790 +79170 222171 0.5800 +79170 387856 0.4080 +79170 388559 0.5010 +79170 401546 0.5870 +79171 79441 0.4510 +79171 79753 0.4710 +79171 81576 0.4170 +79171 83443 0.8270 +79171 84811 0.4430 +79171 84844 0.8070 +79171 84950 0.6980 +79171 112487 0.5300 +79171 116841 0.4740 +79171 124245 0.4730 +79171 153527 0.7770 +79171 199870 0.4180 +79171 219402 0.4180 +79171 252839 0.4790 +79171 390937 0.4470 +79172 79682 0.9990 +79172 79980 0.6990 +79172 80152 0.9990 +79172 81930 0.4870 +79172 83540 0.5500 +79172 83903 0.5310 +79172 90417 0.4170 +79172 91687 0.9990 +79172 113130 0.4550 +79172 121504 0.8070 +79172 147841 0.6270 +79172 150468 0.4590 +79172 151648 0.5400 +79172 201254 0.9940 +79172 220134 0.5850 +79172 221150 0.6580 +79172 378708 0.9980 +79172 387103 0.9930 +79172 391356 0.4190 +79172 401541 0.9990 +79172 554313 0.8070 +79173 84072 0.4050 +79173 84076 0.6100 +79173 84690 0.6200 +79173 150280 0.4090 +79173 254528 0.6150 +79173 256126 0.4500 +79173 386676 0.4630 +79173 646457 0.5410 +79174 84447 0.4260 +79174 91319 0.6230 +79174 441549 0.4520 +79175 79669 0.4020 +79175 134829 0.4080 +79175 140901 0.4170 +79175 342125 0.5370 +79177 84292 0.5300 +79177 84962 0.5640 +79178 79876 0.6110 +79178 80704 0.4040 +79178 84284 0.9060 +79178 116238 0.4040 +79178 135932 0.5060 +79178 136051 0.4550 +79178 100533181 0.4410 +79180 80728 0.4080 +79180 81624 0.4080 +79180 144402 0.4370 +79180 100526693 0.5200 +79183 80331 0.4690 +79183 219957 0.4330 +79184 79728 0.6290 +79184 80006 0.5820 +79184 80012 0.9030 +79184 83473 0.5590 +79184 83844 0.4410 +79184 83990 0.6810 +79184 84101 0.5030 +79184 84108 0.9030 +79184 84142 0.9990 +79184 84333 0.5520 +79184 84733 0.9000 +79184 84759 0.5700 +79184 84954 0.4470 +79184 85235 0.4990 +79184 92815 0.4990 +79184 114548 0.9790 +79184 114803 0.6030 +79184 119504 0.9050 +79184 122706 0.5610 +79184 126119 0.4370 +79184 129852 0.4710 +79184 134510 0.5750 +79184 138241 0.6220 +79184 140459 0.5770 +79184 143471 0.4850 +79184 165918 0.6660 +79184 166378 0.4020 +79184 166979 0.5550 +79184 219333 0.4010 +79184 221302 0.7120 +79184 221613 0.4990 +79184 246184 0.9090 +79184 317772 0.5000 +79184 377630 0.4110 +79184 548645 0.6390 +79184 728689 0.4320 +79184 100652824 0.5490 +79187 80820 0.4010 +79187 134510 0.4270 +79187 348110 0.4480 +79187 494143 0.4330 +79188 81502 0.4220 +79188 84665 0.4020 +79188 88745 0.4480 +79188 125972 0.4180 +79188 146325 0.5070 +79188 165904 0.4040 +79188 166348 0.4600 +79188 170850 0.4060 +79188 200185 0.4640 +79188 200942 0.4200 +79188 201595 0.4320 +79188 282996 0.5810 +79188 337867 0.6780 +79188 339834 0.4090 +79190 79192 0.6560 +79190 84159 0.6060 +79190 84504 0.5450 +79190 120237 0.5390 +79190 150572 0.5400 +79190 283078 0.4960 +79190 338917 0.4440 +79190 343472 0.4070 +79190 440097 0.6010 +79191 79192 0.5610 +79191 80714 0.4340 +79191 84159 0.6050 +79191 84504 0.5650 +79191 116448 0.4070 +79191 120237 0.5900 +79191 150572 0.5570 +79191 153572 0.5330 +79191 167826 0.4240 +79191 170690 0.4510 +79191 170692 0.4060 +79191 199720 0.4510 +79191 283078 0.4030 +79191 285888 0.4390 +79191 440097 0.6520 +79192 80714 0.4150 +79192 84159 0.6100 +79192 150572 0.7890 +79192 153572 0.5960 +79192 283078 0.4960 +79192 652991 0.5350 +79228 79869 0.5110 +79228 79902 0.4810 +79228 80145 0.9990 +79228 81929 0.4350 +79228 84248 0.8330 +79228 84271 0.7190 +79228 84321 0.9990 +79228 84324 0.9760 +79228 114984 0.4450 +79228 129401 0.4200 +79228 348995 0.4810 +79228 100101267 0.4830 +79230 79696 0.4340 +79230 80131 0.5030 +79230 81099 0.4710 +79230 152815 0.5350 +79230 161779 0.4900 +79230 441581 0.4330 +79230 653656 0.5380 +79230 653657 0.4300 +79258 79837 0.5680 +79258 89780 0.4060 +79258 89953 0.4050 +79258 167826 0.4380 +79258 205428 0.4610 +79269 79659 0.4820 +79269 80067 0.9010 +79269 80344 0.9180 +79269 83594 0.5030 +79269 84259 0.5110 +79269 90379 0.9330 +79269 114987 0.4290 +79269 115761 0.4080 +79269 117177 0.4420 +79269 119504 0.4050 +79269 124936 0.4230 +79269 130026 0.4250 +79269 138009 0.5750 +79269 139170 0.5770 +79269 139425 0.5430 +79269 148206 0.4280 +79269 149951 0.4990 +79269 150684 0.4990 +79269 170622 0.5040 +79269 220213 0.5080 +79269 256356 0.4600 +79269 285429 0.5750 +79269 340578 0.5770 +79269 347442 0.5430 +79269 728819 0.5540 +79290 79864 0.4310 +79290 90485 0.4470 +79290 340562 0.4870 +79290 346606 0.4060 +79295 132112 0.4240 +79295 353164 0.4200 +79295 730130 0.4800 +79310 84766 0.4100 +79310 126402 0.4470 +79310 158158 0.4310 +79310 196477 0.4510 +79310 245940 0.4320 +79310 283229 0.5250 +79310 388795 0.4310 +79310 728137 0.4180 +79310 100132015 0.5110 +79310 100289087 0.4330 +79317 158248 0.5290 +79317 348932 0.4060 +79317 641455 0.4180 +79324 119694 0.6670 +79324 119695 0.8660 +79324 146845 0.4470 +79324 219287 0.4370 +79339 79345 0.9990 +79339 140870 0.4050 +79339 282763 0.4400 +79339 390058 0.4470 +79339 390063 0.5460 +79339 390066 0.4300 +79345 282763 0.4490 +79345 390058 0.5520 +79345 390059 0.4980 +79345 390063 0.7810 +79345 390064 0.4960 +79345 390066 0.6750 +79345 390110 0.4180 +79346 90736 0.4440 +79346 100131827 0.5700 +79363 80199 0.9640 +79363 112752 0.5800 +79363 115704 0.4600 +79363 146057 0.4680 +79363 200894 0.6270 +79363 221322 0.4630 +79363 347240 0.4450 +79363 388394 0.4050 +79364 93624 0.4730 +79364 221496 0.4930 +79365 148523 0.7350 +79365 102800317 0.7390 +79366 80011 0.4370 +79366 80705 0.5340 +79366 219938 0.4640 +79366 728137 0.4910 +79366 100289087 0.5010 +79368 81494 0.4060 +79368 81793 0.4520 +79368 83416 0.6170 +79368 84824 0.5730 +79368 115350 0.6630 +79368 115352 0.4820 +79368 151888 0.4130 +79368 199786 0.4470 +79369 80128 0.5470 +79369 84284 0.4440 +79369 84915 0.4300 +79369 92912 0.5970 +79369 94025 0.4300 +79369 134285 0.6200 +79369 140453 0.4050 +79369 200958 0.4050 +79369 394263 0.4050 +79370 84871 0.4460 +79370 90427 0.4410 +79370 122553 0.8260 +79370 126003 0.8040 +79370 150356 0.4270 +79370 440603 0.6490 +79370 441925 0.4570 +79400 81856 0.4030 +79400 84329 0.5560 +79400 90527 0.7310 +79400 91860 0.6970 +79400 124056 0.7960 +79400 124989 0.4540 +79400 146779 0.4600 +79400 163688 0.6970 +79400 257202 0.4760 +79400 405753 0.7090 +79400 493869 0.4760 +79400 653361 0.9470 +79411 80313 0.4830 +79411 151651 0.4140 +79411 158062 0.4290 +79411 160065 0.4030 +79411 342346 0.5160 +79411 347735 0.4070 +79411 389383 0.4470 +79411 399967 0.5600 +79411 399968 0.4240 +79411 100169851 0.5930 +79411 100527949 0.4140 +79411 100862671 0.6960 +79412 83999 0.7700 +79412 84256 0.4460 +79412 89780 0.6050 +79412 284654 0.7260 +79413 728858 0.4160 +79414 126298 0.4710 +79414 145581 0.4340 +79414 148014 0.5170 +79414 347730 0.4690 +79414 388228 0.4120 +79415 84233 0.4320 +79415 84928 0.4330 +79415 653361 0.5610 +79441 79730 0.4910 +79441 79866 0.5850 +79441 79959 0.5830 +79441 80184 0.5470 +79441 80321 0.5370 +79441 83540 0.4750 +79441 83548 0.6090 +79441 84131 0.5520 +79441 93323 0.9990 +79441 95681 0.5040 +79441 113510 0.5700 +79441 115106 0.9990 +79441 117177 0.5040 +79441 121441 0.8690 +79441 152185 0.4080 +79441 202018 0.5010 +79441 203068 0.5170 +79441 347240 0.5400 +79441 353497 0.5480 +79441 728642 0.5260 +79442 79780 0.5130 +79442 79883 0.4690 +79442 80059 0.4910 +79442 83597 0.5150 +79442 114990 0.4300 +79442 116844 0.5300 +79442 118429 0.4290 +79442 140456 0.4510 +79442 142685 0.4230 +79442 142689 0.4190 +79442 259173 0.4310 +79442 339398 0.4370 +79442 347731 0.4510 +79442 375387 0.4790 +79442 389257 0.4060 +79442 389816 0.4870 +79443 80036 0.4360 +79443 80323 0.4130 +79443 81631 0.9970 +79443 83547 0.6180 +79443 83930 0.5560 +79443 84557 0.9620 +79443 91039 0.4820 +79443 118813 0.8810 +79443 127829 0.4130 +79443 147700 0.5050 +79443 163259 0.4280 +79443 163786 0.7260 +79443 221079 0.5570 +79443 221937 0.4510 +79443 282808 0.8570 +79443 283953 0.5000 +79443 338382 0.9160 +79443 387522 0.4030 +79443 440738 0.7890 +79444 152006 0.4590 +79446 79631 0.5980 +79446 79633 0.4150 +79446 79665 0.5280 +79446 79753 0.5430 +79446 81576 0.8490 +79446 83443 0.5450 +79446 83938 0.6170 +79446 84219 0.4100 +79446 84316 0.5370 +79446 84334 0.4480 +79446 84727 0.4360 +79446 84811 0.8600 +79446 84844 0.5420 +79446 84967 0.7740 +79446 85476 0.5710 +79446 91419 0.4440 +79446 113540 0.4330 +79446 123096 0.5970 +79446 126259 0.5310 +79446 131601 0.5800 +79446 143884 0.8710 +79446 144699 0.4770 +79446 147650 0.5310 +79446 151903 0.8430 +79446 154007 0.6350 +79446 164045 0.6440 +79446 165545 0.6230 +79446 200010 0.4920 +79446 220074 0.6170 +79446 222183 0.6350 +79446 392517 0.5220 +79446 100534599 0.8000 +79447 80335 0.4010 +79447 83719 0.6150 +79447 83723 0.4630 +79447 84332 0.5720 +79447 84661 0.9960 +79447 84962 0.4990 +79447 85236 0.4990 +79447 94239 0.5070 +79447 112476 0.4890 +79447 124446 0.5200 +79447 128312 0.4990 +79447 146378 0.5830 +79447 253980 0.6340 +79447 253982 0.6340 +79447 255626 0.4990 +79447 283897 0.5940 +79447 283899 0.6780 +79447 440093 0.4100 +79447 440686 0.4100 +79447 474382 0.4990 +79447 552900 0.4480 +79447 653604 0.6920 +79447 653808 0.4030 +79447 654483 0.4300 +79465 80328 0.9170 +79465 80329 0.9650 +79465 114836 0.5950 +79465 135250 0.4020 +79465 259197 0.7780 +79465 374383 0.6340 +79465 100507436 0.6120 +79473 148281 0.4170 +79473 341277 0.6630 +79473 390075 0.7790 +79490 127733 0.5170 +79490 341880 0.5750 +79541 344892 0.4040 +79549 88745 0.4710 +79549 126767 0.4800 +79549 149345 0.4470 +79567 79716 0.4430 +79567 85369 0.4360 +79567 388284 0.4720 +79568 90550 0.5110 +79568 91689 0.7760 +79568 92609 0.4310 +79568 121549 0.4940 +79568 125988 0.4290 +79568 131118 0.4390 +79568 143872 0.5200 +79568 205327 0.4970 +79568 221154 0.5200 +79568 284071 0.4900 +79568 286097 0.4990 +79568 348751 0.4160 +79568 646960 0.4960 +79570 80852 0.5040 +79570 146713 0.8240 +79570 347735 0.5140 +79571 79954 0.7890 +79571 80135 0.5740 +79571 83548 0.5580 +79571 83732 0.4740 +79571 83743 0.4070 +79571 83795 0.5830 +79571 84128 0.8610 +79571 84135 0.7770 +79571 84154 0.6890 +79571 84294 0.4420 +79571 84365 0.6570 +79571 84916 0.8470 +79571 84946 0.8860 +79571 90196 0.6550 +79571 91949 0.6550 +79571 92856 0.8620 +79571 114987 0.4400 +79571 115708 0.5540 +79571 117246 0.5390 +79571 118460 0.4670 +79571 126402 0.5120 +79571 128486 0.5440 +79571 140032 0.4870 +79571 140902 0.6090 +79571 143187 0.7200 +79571 145741 0.4790 +79571 153443 0.4490 +79571 155368 0.4030 +79571 161424 0.4280 +79571 165545 0.4380 +79571 169792 0.4460 +79571 339122 0.5520 +79571 345630 0.6490 +79571 727851 0.5750 +79572 93109 0.4800 +79572 116843 0.5330 +79572 152002 0.4170 +79572 222553 0.4920 +79572 440275 0.6430 +79573 79989 0.4040 +79573 81127 0.6200 +79573 84542 0.4150 +79573 91978 0.5740 +79573 123169 0.4750 +79573 127544 0.4020 +79573 130502 0.4070 +79573 148170 0.5180 +79573 151613 0.4260 +79573 154214 0.4610 +79573 159090 0.4960 +79573 388419 0.4910 +79574 80117 0.4370 +79574 83715 0.6080 +79574 85369 0.4370 +79574 92154 0.4510 +79574 126859 0.4400 +79574 147409 0.4910 +79574 147495 0.4220 +79574 147710 0.4500 +79574 197258 0.4420 +79574 340024 0.4060 +79575 79629 0.4770 +79575 79728 0.5150 +79575 80167 0.6470 +79575 81926 0.4300 +79575 83451 0.5420 +79575 84696 0.4990 +79575 84836 0.4340 +79575 84945 0.5570 +79575 116236 0.5130 +79575 124044 0.5140 +79575 126549 0.7370 +79575 132949 0.4170 +79575 140701 0.6370 +79575 145447 0.5480 +79575 147965 0.4280 +79575 161779 0.4260 +79575 170371 0.4320 +79576 79706 0.8810 +79576 79753 0.4350 +79576 84081 0.6200 +79576 84950 0.6200 +79576 85313 0.5190 +79576 118924 0.6370 +79576 143884 0.5260 +79576 151613 0.5840 +79576 163049 0.5380 +79576 163859 0.8810 +79576 199746 0.5090 +79576 222194 0.4110 +79576 222698 0.6190 +79576 285672 0.4480 +79576 400793 0.6030 +79577 79643 0.4660 +79577 79657 0.5480 +79577 79664 0.9060 +79577 79871 0.5100 +79577 80237 0.9100 +79577 80313 0.6470 +79577 80335 0.4080 +79577 80349 0.9990 +79577 80820 0.5860 +79577 80854 0.4380 +79577 81573 0.4360 +79577 81608 0.4360 +79577 83439 0.5210 +79577 84172 0.5990 +79577 84295 0.7850 +79577 84321 0.4400 +79577 84337 0.9340 +79577 84524 0.9130 +79577 84844 0.4230 +79577 85236 0.8130 +79577 85403 0.9010 +79577 85456 0.8710 +79577 90780 0.5750 +79577 94239 0.4040 +79577 113251 0.4010 +79577 121504 0.8680 +79577 123169 0.9990 +79577 124245 0.4830 +79577 126961 0.8570 +79577 127428 0.4430 +79577 128312 0.6490 +79577 149483 0.4590 +79577 151987 0.4590 +79577 158471 0.5210 +79577 158983 0.6460 +79577 170082 0.4310 +79577 201626 0.6670 +79577 221830 0.5370 +79577 246175 0.6520 +79577 246721 0.5590 +79577 255626 0.8130 +79577 283149 0.4170 +79577 286436 0.6460 +79577 333932 0.8570 +79577 340602 0.4590 +79577 440093 0.5170 +79577 440686 0.5170 +79577 440689 0.6550 +79577 448834 0.4590 +79577 548644 0.5590 +79577 554313 0.8680 +79577 653604 0.9010 +79577 100134938 0.4880 +79577 107983993 0.4880 +79577 114483833 0.6480 +79577 122455342 0.4590 +79581 80308 0.6780 +79581 80704 0.4360 +79581 81034 0.5980 +79581 203054 0.5870 +79581 727957 0.4140 +79582 200162 0.6750 +79582 200373 0.4850 +79582 644890 0.9610 +79583 79600 0.9950 +79583 79809 0.5180 +79583 79848 0.5520 +79583 79867 0.9910 +79583 79908 0.4720 +79583 80184 0.9780 +79583 80776 0.9960 +79583 83479 0.4730 +79583 84314 0.9630 +79583 91147 0.9930 +79583 92399 0.4110 +79583 95681 0.6190 +79583 129880 0.4610 +79583 166379 0.5320 +79583 200728 0.9670 +79583 200894 0.6310 +79583 219854 0.7300 +79583 261734 0.8360 +79583 283232 0.7580 +79583 284086 0.4160 +79583 284996 0.4220 +79583 374654 0.5240 +79583 392465 0.4970 +79583 497189 0.4260 +79585 115992 0.4580 +79585 388730 0.4310 +79586 84002 0.4750 +79586 84752 0.4850 +79586 113189 0.5480 +79586 118460 0.4930 +79586 126792 0.5480 +79586 148789 0.4890 +79586 166012 0.5980 +79586 285016 0.4610 +79586 337876 0.9490 +79586 388963 0.4060 +79586 100288842 0.4190 +79587 79731 0.8660 +79587 79922 0.6030 +79587 80222 0.8000 +79587 80308 0.4080 +79587 84340 0.4380 +79587 84464 0.4110 +79587 85476 0.4770 +79587 90353 0.4030 +79587 92399 0.5370 +79587 92935 0.8330 +79587 114327 0.4090 +79587 123263 0.5810 +79587 123283 0.7890 +79587 124454 0.8380 +79587 157567 0.4110 +79587 257019 0.5010 +79587 339229 0.6220 +79587 374395 0.4100 +79587 374659 0.5150 +79587 440275 0.5050 +79587 440498 0.4260 +79587 101927367 0.4390 +79589 84640 0.4490 +79589 142678 0.4040 +79589 165918 0.5470 +79589 170591 0.4150 +79589 221302 0.6970 +79590 79631 0.7920 +79590 79668 0.6710 +79590 79728 0.8140 +79590 79848 0.4350 +79590 79922 0.6440 +79590 80135 0.7900 +79590 80221 0.9330 +79590 80324 0.4130 +79590 83448 0.7930 +79590 84154 0.5720 +79590 84172 0.7530 +79590 84273 0.5090 +79590 84311 0.9710 +79590 84340 0.9120 +79590 84365 0.7890 +79590 84545 0.9930 +79590 84549 0.6420 +79590 84705 0.8980 +79590 84881 0.7160 +79590 84993 0.4300 +79590 85476 0.9640 +79590 85865 0.8890 +79590 90480 0.9720 +79590 91574 0.9080 +79590 92170 0.9810 +79590 92196 0.5180 +79590 92399 0.9700 +79590 93107 0.5160 +79590 93550 0.4200 +79590 93974 0.4190 +79590 113000 0.5980 +79590 114908 0.4350 +79590 114987 0.8320 +79590 115416 0.9920 +79590 116540 0.9230 +79590 116541 0.9150 +79590 116832 0.6860 +79590 117246 0.4920 +79590 118487 0.9030 +79590 122481 0.4100 +79590 122704 0.9570 +79590 123263 0.4030 +79590 124454 0.6900 +79590 124995 0.9550 +79590 125988 0.5020 +79590 126402 0.8370 +79590 126789 0.5090 +79590 128240 0.4610 +79590 128308 0.9260 +79590 130916 0.8810 +79590 140032 0.8170 +79590 140801 0.7760 +79590 143244 0.7040 +79590 143630 0.4200 +79590 158067 0.4100 +79590 164153 0.4200 +79590 169522 0.5160 +79590 170850 0.5160 +79590 200916 0.8580 +79590 201266 0.5260 +79590 201595 0.5220 +79590 219402 0.5450 +79590 219927 0.9990 +79590 221264 0.4100 +79590 254268 0.5490 +79590 283518 0.5160 +79590 284106 0.7040 +79590 284418 0.4350 +79590 285190 0.4350 +79590 285367 0.6730 +79590 285755 0.4350 +79590 285855 0.8080 +79590 342538 0.4430 +79590 343068 0.6550 +79590 343070 0.6550 +79590 347487 0.7700 +79590 374659 0.8110 +79590 387129 0.8050 +79590 387338 0.8690 +79590 390999 0.6550 +79590 391002 0.6550 +79590 400735 0.6550 +79590 400736 0.6550 +79590 440560 0.6550 +79590 440561 0.6550 +79590 441873 0.6550 +79590 641776 0.6750 +79590 643909 0.6750 +79590 644591 0.4350 +79590 645051 0.5800 +79590 645073 0.5800 +79590 645142 0.4350 +79590 645359 0.6550 +79590 653505 0.4430 +79590 653598 0.4350 +79590 653619 0.6550 +79590 654364 0.4690 +79590 727851 0.4350 +79590 728524 0.6750 +79590 728945 0.4350 +79590 729396 0.5800 +79590 729422 0.5800 +79590 729428 0.5800 +79590 729431 0.5800 +79590 729442 0.5800 +79590 729447 0.5800 +79590 729528 0.6550 +79590 729857 0.4350 +79590 730262 0.4350 +79590 100008586 0.5800 +79590 100128731 0.4090 +79590 100130890 0.7790 +79590 100131187 0.7810 +79590 100132399 0.5800 +79590 100287482 0.7700 +79590 100505478 0.8050 +79590 100526842 0.8350 +79590 100529097 0.8090 +79590 100529239 0.8640 +79590 100996746 0.6750 +79590 101928527 0.4450 +79590 101929983 0.6550 +79590 102724473 0.5800 +79590 105180390 0.6750 +79590 105180391 0.6750 +79590 105371242 0.4350 +79590 114483834 0.5550 +79590 127898561 0.8170 +79591 83607 0.4780 +79591 91949 0.4700 +79591 282991 0.4180 +79591 644150 0.4430 +79594 81844 0.5810 +79594 84065 0.5310 +79594 84259 0.4160 +79594 84749 0.8290 +79594 84769 0.4370 +79594 84975 0.4820 +79594 90441 0.4470 +79594 91137 0.4480 +79594 91445 0.7080 +79594 115209 0.4140 +79594 125170 0.5170 +79594 132141 0.5280 +79594 139341 0.6520 +79594 149951 0.4050 +79594 150684 0.4100 +79594 170622 0.4230 +79594 192111 0.4100 +79594 205564 0.4750 +79594 340061 0.4070 +79595 79685 0.8990 +79595 80312 0.5720 +79595 83463 0.5860 +79595 84220 0.4240 +79595 84312 0.7660 +79595 85236 0.5090 +79595 90316 0.5570 +79595 93624 0.9000 +79595 94239 0.5110 +79595 112869 0.8130 +79595 117143 0.8030 +79595 120787 0.6060 +79595 128312 0.4990 +79595 137695 0.4230 +79595 221937 0.4500 +79595 255626 0.4990 +79595 255725 0.4820 +79595 285190 0.4310 +79595 345222 0.5700 +79595 347732 0.4960 +79595 474382 0.4990 +79595 619279 0.6240 +79595 653489 0.4390 +79595 653604 0.5160 +79595 727851 0.4270 +79595 729540 0.4240 +79595 729857 0.4340 +79596 85456 0.5780 +79596 149041 0.5140 +79596 170082 0.6140 +79596 222229 0.6790 +79596 246175 0.6130 +79598 79600 0.6270 +79598 79633 0.4270 +79598 79728 0.6720 +79598 79848 0.4270 +79598 79867 0.6380 +79598 79959 0.8380 +79598 80184 0.9360 +79598 80195 0.4930 +79598 80776 0.6360 +79598 80817 0.7590 +79598 83892 0.7400 +79598 84131 0.6020 +79598 84461 0.8590 +79598 84886 0.4040 +79598 84902 0.6460 +79598 84939 0.4950 +79598 84984 0.5280 +79598 85302 0.5440 +79598 85459 0.4800 +79598 90410 0.4360 +79598 91147 0.6740 +79598 91775 0.4500 +79598 91860 0.4590 +79598 116840 0.4210 +79598 121441 0.5360 +79598 126328 0.4540 +79598 128344 0.4180 +79598 129607 0.5140 +79598 132320 0.5860 +79598 134359 0.5230 +79598 139221 0.4950 +79598 145508 0.4340 +79598 146057 0.7290 +79598 146330 0.4710 +79598 152185 0.4670 +79598 153241 0.5770 +79598 163688 0.4590 +79598 163786 0.6170 +79598 171177 0.5640 +79598 200894 0.5610 +79598 201255 0.4190 +79598 221908 0.4870 +79598 222235 0.4670 +79598 261734 0.6630 +79598 282809 0.5290 +79598 347240 0.9480 +79598 374291 0.4950 +79598 728317 0.4950 +79598 100532726 0.5780 +79600 79809 0.5790 +79600 79848 0.5490 +79600 79867 0.9970 +79600 80184 0.9840 +79600 80776 0.9970 +79600 84314 0.9140 +79600 84984 0.4520 +79600 85445 0.4040 +79600 89891 0.4210 +79600 90410 0.5060 +79600 90529 0.4510 +79600 91147 0.9940 +79600 91801 0.4100 +79600 95681 0.6930 +79600 112752 0.4900 +79600 117177 0.6060 +79600 200728 0.9480 +79600 200894 0.7210 +79600 261734 0.7560 +79600 283232 0.4280 +79600 284086 0.4100 +79600 374654 0.6030 +79600 392509 0.4320 +79600 727800 0.5190 +79602 84666 0.7340 +79602 116238 0.4090 +79602 145264 0.4320 +79602 152559 0.4180 +79603 81537 0.9570 +79603 83723 0.6400 +79603 91012 0.9350 +79603 113675 0.4840 +79603 123099 0.9720 +79603 125981 0.9650 +79603 130367 0.9460 +79603 166929 0.9570 +79603 204219 0.9110 +79603 253782 0.9280 +79603 259230 0.9610 +79603 339221 0.9430 +79603 340485 0.9640 +79603 100131801 0.4090 +79605 79725 0.8020 +79605 84547 0.5630 +79605 112812 0.4630 +79605 128876 0.5050 +79605 145482 0.4200 +79605 155435 0.5000 +79605 203245 0.4950 +79605 267002 0.5420 +79605 283254 0.6630 +79605 284339 0.6270 +79605 343702 0.6080 +79605 643641 0.4500 +79605 100170765 0.4300 +79607 84441 0.4180 +79607 92105 0.4610 +79607 93973 0.4840 +79607 256646 0.4720 +79607 340602 0.4140 +79608 79642 0.4430 +79608 80208 0.5050 +79608 80724 0.4160 +79608 83590 0.4470 +79608 89832 0.4800 +79608 116442 0.4210 +79608 120227 0.4440 +79608 123099 0.8700 +79608 170572 0.4390 +79608 200909 0.4860 +79608 202018 0.4810 +79608 285242 0.4070 +79608 391356 0.5720 +79608 401265 0.4240 +79609 79823 0.6330 +79609 80700 0.8540 +79609 84190 0.4130 +79609 84444 0.4010 +79609 92342 0.7300 +79609 124512 0.4550 +79609 134145 0.4950 +79609 149281 0.4470 +79609 151194 0.4320 +79609 196483 0.7140 +79609 221143 0.6270 +79609 254013 0.6960 +79609 399818 0.7490 +79609 751071 0.5310 +79609 110599564 0.5610 +79611 80059 0.4120 +79611 80221 0.5160 +79611 80724 0.4420 +79611 84263 0.7330 +79611 84298 0.4620 +79611 84532 0.9210 +79611 84833 0.4220 +79611 126133 0.4080 +79611 128497 0.4170 +79611 132949 0.5330 +79611 137872 0.5080 +79611 140825 0.4030 +79611 157869 0.4530 +79611 197322 0.4920 +79611 253827 0.4780 +79611 254042 0.4550 +79611 376497 0.4480 +79611 401494 0.4970 +79611 731220 0.4600 +79612 79829 0.5930 +79612 79903 0.7950 +79612 80018 0.8280 +79612 80155 0.9820 +79612 80209 0.4040 +79612 80218 0.9950 +79612 84316 0.9090 +79612 84779 0.9980 +79612 115701 0.6080 +79612 122830 0.9660 +79612 221710 0.6610 +79612 254187 0.7200 +79613 84138 0.4870 +79613 113174 0.4420 +79613 127391 0.4280 +79613 129563 0.4470 +79613 221785 0.4550 +79613 339287 0.5310 +79613 389072 0.4010 +79613 399671 0.4170 +79613 100653515 0.4470 +79616 91056 0.4230 +79616 201292 0.4140 +79616 645121 0.4330 +79618 80169 0.5370 +79618 122953 0.4070 +79618 140460 0.4660 +79618 140735 0.4570 +79618 204851 0.5080 +79621 80198 0.5190 +79621 81620 0.4990 +79621 84153 0.9990 +79621 115004 0.4940 +79621 220107 0.4600 +79621 246243 0.5730 +79621 340061 0.4770 +79623 94025 0.4700 +79623 128861 0.4650 +79623 140453 0.4210 +79623 143662 0.4310 +79623 200958 0.4080 +79623 394263 0.4840 +79623 440854 0.5060 +79623 727897 0.4140 +79624 80129 0.8310 +79624 84612 0.4180 +79624 85409 0.4220 +79625 201780 0.4430 +79626 126637 0.4230 +79626 155038 0.4790 +79628 81545 0.4180 +79628 81846 0.7880 +79628 90678 0.6230 +79628 121512 0.7320 +79628 200407 0.4280 +79628 221823 0.4800 +79629 84332 0.4150 +79629 116238 0.4360 +79629 221491 0.4010 +79629 374882 0.4700 +79631 79728 0.4010 +79631 79789 0.4270 +79631 81576 0.4800 +79631 84172 0.6820 +79631 84316 0.4430 +79631 84811 0.5230 +79631 84967 0.5640 +79631 87178 0.6700 +79631 90441 0.4700 +79631 91875 0.4120 +79631 91893 0.4580 +79631 92196 0.4930 +79631 92399 0.9230 +79631 93973 0.4320 +79631 114987 0.6780 +79631 116832 0.5400 +79631 117246 0.5550 +79631 122481 0.4460 +79631 122622 0.5040 +79631 124454 0.5520 +79631 126259 0.4430 +79631 126402 0.8060 +79631 134218 0.7240 +79631 140032 0.7510 +79631 140801 0.7300 +79631 143244 0.7120 +79631 143884 0.4940 +79631 147650 0.4430 +79631 151903 0.4800 +79631 154007 0.5230 +79631 158067 0.4460 +79631 164045 0.5430 +79631 200916 0.5570 +79631 219927 0.9400 +79631 221264 0.4500 +79631 221823 0.4130 +79631 222183 0.5060 +79631 254268 0.4120 +79631 256536 0.4060 +79631 285855 0.7580 +79631 317781 0.4320 +79631 343068 0.5600 +79631 343070 0.5600 +79631 347487 0.6900 +79631 348793 0.4430 +79631 387129 0.7590 +79631 387712 0.5010 +79631 390999 0.5600 +79631 391002 0.5600 +79631 400735 0.5600 +79631 400736 0.5600 +79631 440560 0.5600 +79631 440561 0.5600 +79631 441873 0.5600 +79631 641776 0.6150 +79631 643909 0.6150 +79631 645051 0.5410 +79631 645073 0.5410 +79631 645359 0.5600 +79631 653619 0.5600 +79631 728524 0.6150 +79631 729396 0.5410 +79631 729422 0.5410 +79631 729428 0.5410 +79631 729431 0.5410 +79631 729442 0.5410 +79631 729447 0.5410 +79631 729528 0.5600 +79631 100008586 0.5410 +79631 100132399 0.5410 +79631 100287482 0.6890 +79631 100505478 0.7580 +79631 100526842 0.8060 +79631 100529097 0.5890 +79631 100529239 0.5810 +79631 100534599 0.5510 +79631 100996746 0.6150 +79631 101929983 0.5600 +79631 102724473 0.5410 +79631 105180390 0.6150 +79631 105180391 0.6150 +79631 114483834 0.4110 +79632 80301 0.4690 +79632 85352 0.5430 +79633 79776 0.5720 +79633 80351 0.6050 +79633 84033 0.5070 +79633 84168 0.4650 +79633 94025 0.5710 +79633 112703 0.4420 +79633 114788 0.5740 +79633 120114 0.4140 +79633 122786 0.4440 +79633 133584 0.4030 +79633 144165 0.4480 +79633 147372 0.5790 +79633 154810 0.6130 +79633 158880 0.6400 +79633 166336 0.4670 +79633 200728 0.4160 +79633 253559 0.4030 +79633 339221 0.4770 +79633 727897 0.4390 +79634 140461 0.4410 +79634 150572 0.4280 +79634 285343 0.4740 +79635 79735 0.8170 +79635 84450 0.7290 +79635 200634 0.6540 +79637 79753 0.9220 +79637 83443 0.9220 +79637 84060 0.9960 +79637 84811 0.9290 +79637 84844 0.9220 +79637 90871 0.4440 +79637 93436 0.4770 +79637 284004 0.4190 +79637 286753 0.4680 +79637 389114 0.5460 +79637 729085 0.5060 +79639 83590 0.4690 +79639 84233 0.4450 +79639 84284 0.4430 +79639 84320 0.5520 +79639 84928 0.5050 +79639 145173 0.4900 +79639 201799 0.4730 +79639 339541 0.4790 +79639 340371 0.4060 +79639 388564 0.5480 +79641 83451 0.5550 +79641 84656 0.7010 +79641 90423 0.4780 +79641 114826 0.4560 +79641 152816 0.5290 +79641 256764 0.5070 +79641 284111 0.4730 +79641 286077 0.4480 +79642 80724 0.4310 +79642 84246 0.4550 +79642 153642 0.9010 +79642 285362 0.7610 +79642 340075 0.4570 +79642 347527 0.6990 +79642 401265 0.4470 +79643 79720 0.9570 +79643 79792 0.5040 +79643 79861 0.5040 +79643 80086 0.4990 +79643 80737 0.4170 +79643 81027 0.5000 +79643 81631 0.4300 +79643 84274 0.4060 +79643 84313 0.9990 +79643 84557 0.4490 +79643 84617 0.5010 +79643 84790 0.5040 +79643 84936 0.5450 +79643 89846 0.4230 +79643 89853 0.9510 +79643 91782 0.9690 +79643 92002 0.4350 +79643 92421 0.9410 +79643 93343 0.9560 +79643 112714 0.4990 +79643 113457 0.5060 +79643 128866 0.9950 +79643 131096 0.4250 +79643 137492 0.9560 +79643 148362 0.6170 +79643 155382 0.9310 +79643 197259 0.9060 +79643 200014 0.7130 +79643 200894 0.4150 +79643 221496 0.6660 +79643 253782 0.4120 +79643 256356 0.4090 +79643 260334 0.4990 +79643 286148 0.4460 +79643 347688 0.5040 +79643 347733 0.4990 +79643 390595 0.5400 +79643 100526767 0.9990 +79644 79799 0.6750 +79644 79868 0.5090 +79644 79947 0.7370 +79644 80270 0.4110 +79644 85365 0.5510 +79644 116150 0.6480 +79644 132954 0.4900 +79644 253017 0.9220 +79644 440138 0.6110 +79644 574537 0.6800 +79645 79825 0.4600 +79645 79861 0.4080 +79645 79998 0.4610 +79645 80086 0.5320 +79645 80129 0.4340 +79645 80258 0.7800 +79645 83538 0.7890 +79645 83659 0.6560 +79645 84455 0.4330 +79645 84725 0.4560 +79645 85403 0.5620 +79645 89970 0.5750 +79645 90141 0.4410 +79645 93233 0.7200 +79645 112714 0.4060 +79645 114327 0.6060 +79645 115948 0.7440 +79645 124460 0.4620 +79645 127003 0.6300 +79645 129881 0.5570 +79645 131965 0.4840 +79645 133015 0.4580 +79645 134121 0.6160 +79645 135138 0.5840 +79645 138162 0.7950 +79645 138255 0.5400 +79645 145788 0.4060 +79645 146279 0.4180 +79645 146845 0.6260 +79645 150483 0.4840 +79645 151651 0.5560 +79645 154865 0.6460 +79645 155006 0.4120 +79645 158787 0.4650 +79645 160762 0.5590 +79645 197335 0.4300 +79645 219621 0.4390 +79645 219681 0.7810 +79645 220136 0.5790 +79645 222166 0.4370 +79645 223082 0.4970 +79645 254956 0.6540 +79645 255119 0.5120 +79645 257177 0.5560 +79645 257236 0.6120 +79645 348807 0.4330 +79645 388701 0.5110 +79645 401551 0.4480 +79645 441054 0.6140 +79645 727764 0.4840 +79645 100128569 0.6970 +79646 79717 0.9760 +79646 79877 0.4090 +79646 80025 0.9610 +79646 80347 0.9680 +79646 90639 0.4620 +79646 283927 0.4190 +79647 127933 0.5470 +79647 220988 0.4730 +79647 100288797 0.4850 +79648 84464 0.5320 +79648 84766 0.6050 +79648 93986 0.5920 +79648 163786 0.4710 +79648 259266 0.9880 +79648 284403 0.8210 +79649 79884 0.4160 +79649 80128 0.4080 +79649 92979 0.4330 +79649 168090 0.4180 +79649 170062 0.5560 +79649 170506 0.4180 +79649 203522 0.4110 +79649 340562 0.5370 +79649 344758 0.4370 +79650 79903 0.4300 +79650 80169 0.5380 +79650 84292 0.6900 +79650 84522 0.4050 +79650 143884 0.7670 +79650 146434 0.4330 +79650 151903 0.7260 +79650 339501 0.5970 +79651 83786 0.8250 +79651 84236 0.4510 +79651 114757 0.8510 +79651 337867 0.4340 +79652 88745 0.4140 +79652 130733 0.4930 +79652 161198 0.5410 +79652 161502 0.4040 +79652 166348 0.5080 +79652 168537 0.5600 +79652 170850 0.4110 +79652 221395 0.5340 +79652 339834 0.4400 +79652 387758 0.4790 +79652 474344 0.4020 +79654 81576 0.4460 +79654 84271 0.4120 +79654 90231 0.5630 +79654 113419 0.4380 +79654 283209 0.4610 +79654 284654 0.4470 +79656 84871 0.8710 +79656 139105 0.5060 +79656 221336 0.6850 +79656 339976 0.5970 +79657 79871 0.9630 +79657 80185 0.7620 +79657 81572 0.9870 +79657 83541 0.4080 +79657 84172 0.5130 +79657 116143 0.9950 +79657 120379 0.9020 +79657 121053 0.5110 +79657 123169 0.6000 +79657 139212 0.7210 +79657 140460 0.7780 +79657 150160 0.5730 +79657 161582 0.4330 +79657 166378 0.6880 +79657 283237 0.4250 +79657 388389 0.5870 +79657 100885850 0.4210 +79657 110599588 0.7250 +79659 79809 0.8010 +79659 79819 0.4800 +79659 79861 0.7420 +79659 79989 0.4110 +79659 80173 0.6800 +79659 80184 0.5170 +79659 81027 0.7380 +79659 81930 0.4290 +79659 83547 0.8000 +79659 83657 0.8910 +79659 83658 0.9780 +79659 84617 0.7420 +79659 84790 0.7420 +79659 89891 0.9990 +79659 90410 0.5910 +79659 90990 0.4190 +79659 91147 0.5340 +79659 93233 0.4030 +79659 112714 0.7420 +79659 112752 0.7010 +79659 113457 0.7580 +79659 126374 0.4140 +79659 126820 0.4470 +79659 129880 0.4240 +79659 132884 0.6020 +79659 140735 0.9700 +79659 153241 0.5030 +79659 200132 0.6380 +79659 200894 0.4950 +79659 201625 0.5240 +79659 203068 0.7380 +79659 255758 0.9640 +79659 338382 0.8030 +79659 342184 0.4320 +79659 343521 0.6580 +79659 347688 0.7380 +79659 347733 0.7380 +79659 374654 0.5400 +79660 80339 0.7180 +79660 83648 0.6610 +79660 84687 0.5520 +79660 84919 0.5710 +79660 89801 0.9290 +79660 90506 0.5540 +79660 90673 0.9330 +79660 91860 0.6500 +79660 114928 0.5350 +79660 127018 0.7900 +79660 137075 0.8910 +79660 158219 0.5470 +79660 163688 0.6500 +79660 254050 0.5540 +79660 286046 0.4990 +79660 286187 0.5400 +79660 345275 0.6130 +79660 648791 0.6180 +79661 80312 0.5920 +79661 83903 0.4970 +79661 84181 0.7340 +79661 90480 0.4950 +79661 116028 0.4310 +79661 252969 0.9970 +79661 284131 0.4160 +79663 79676 0.4270 +79663 79697 0.6810 +79663 84864 0.5600 +79663 84925 0.7460 +79663 145376 0.5020 +79663 166863 0.4690 +79663 653404 0.4830 +79664 79871 0.5450 +79664 80155 0.9470 +79664 80237 0.9720 +79664 80349 0.9020 +79664 84337 0.5400 +79664 84524 0.9830 +79664 85403 0.9740 +79664 90806 0.5340 +79664 123169 0.9020 +79664 163479 0.4050 +79665 79921 0.6690 +79665 79924 0.4040 +79665 79954 0.4440 +79665 81545 0.6190 +79665 83479 0.4400 +79665 84081 0.6340 +79665 84135 0.4530 +79665 84669 0.4840 +79665 84916 0.4470 +79665 85313 0.7910 +79665 92856 0.5510 +79665 112840 0.4190 +79665 124773 0.4990 +79665 165545 0.5590 +79665 317781 0.4280 +79665 341880 0.5070 +79665 388403 0.6340 +79666 92017 0.4100 +79666 200576 0.4730 +79668 79893 0.4050 +79668 80351 0.5380 +79668 81888 0.4470 +79668 83666 0.6050 +79668 84076 0.4240 +79668 84875 0.7000 +79668 92483 0.5360 +79668 114112 0.4260 +79668 116969 0.4160 +79668 126402 0.6080 +79668 130752 0.6020 +79668 140032 0.6520 +79668 140801 0.4780 +79668 160287 0.5360 +79668 162968 0.4060 +79668 165631 0.6830 +79668 197257 0.4100 +79668 285855 0.6090 +79668 347487 0.6430 +79668 387129 0.6060 +79668 387712 0.6680 +79668 441531 0.5930 +79668 641776 0.5400 +79668 643909 0.5400 +79668 645051 0.4960 +79668 645073 0.4960 +79668 728524 0.5400 +79668 729396 0.4960 +79668 729422 0.4960 +79668 729428 0.4960 +79668 729431 0.4960 +79668 729442 0.4960 +79668 729447 0.4960 +79668 100008586 0.4960 +79668 100132399 0.4960 +79668 100287482 0.6430 +79668 100505478 0.6040 +79668 100526842 0.6840 +79668 100529097 0.5080 +79668 100996746 0.5400 +79668 102724473 0.4960 +79668 105180390 0.5400 +79668 105180391 0.5400 +79669 114798 0.4460 +79669 134829 0.4150 +79669 200879 0.6490 +79669 646174 0.4740 +79670 79727 0.9710 +79670 80114 0.4250 +79670 90459 0.4990 +79670 115572 0.4010 +79670 115752 0.6080 +79670 129563 0.8350 +79670 144233 0.4060 +79670 154197 0.4650 +79670 169966 0.4160 +79670 389421 0.6700 +79671 79849 0.6080 +79671 80143 0.4970 +79671 81793 0.4390 +79671 81844 0.4620 +79671 83985 0.4090 +79671 84166 0.5650 +79671 84282 0.6350 +79671 89122 0.5140 +79671 115004 0.4160 +79671 148022 0.5560 +79671 197358 0.4020 +79671 284434 0.4590 +79671 340061 0.8430 +79672 81576 0.4230 +79672 83475 0.4350 +79672 90070 0.4330 +79672 146712 0.4630 +79672 154467 0.4490 +79672 283871 0.4880 +79672 404217 0.4280 +79673 256051 0.5300 +79674 84437 0.4510 +79674 84465 0.5310 +79674 150275 0.6060 +79674 152940 0.4960 +79675 84881 0.5250 +79675 87178 0.4040 +79675 113174 0.4080 +79675 118487 0.4650 +79675 221656 0.4060 +79675 285367 0.5430 +79676 84292 0.5480 +79676 84936 0.4580 +79676 219854 0.5420 +79676 374887 0.4450 +79677 79991 0.6660 +79677 80010 0.6230 +79677 80110 0.4750 +79677 80119 0.4860 +79677 80198 0.8090 +79677 84250 0.8670 +79677 84311 0.6360 +79677 84515 0.4140 +79677 84893 0.4430 +79677 84901 0.5640 +79677 84939 0.4510 +79677 114799 0.7820 +79677 119467 0.4440 +79677 139081 0.5640 +79677 139599 0.4920 +79677 139604 0.4920 +79677 146434 0.8390 +79677 146956 0.4570 +79677 151195 0.4300 +79677 157570 0.6720 +79677 165918 0.4140 +79677 197370 0.9990 +79677 266740 0.4920 +79677 286053 0.9990 +79677 343930 0.4250 +79677 347541 0.4920 +79677 348654 0.6990 +79677 375484 0.4940 +79677 387082 0.9400 +79677 493861 0.9990 +79677 548593 0.5590 +79677 642636 0.6100 +79677 100533467 0.4150 +79679 79865 0.4180 +79679 80380 0.9350 +79679 83988 0.5120 +79679 84868 0.6440 +79679 91584 0.4700 +79679 94025 0.4080 +79679 126259 0.7550 +79679 151888 0.9880 +79679 169355 0.4760 +79679 201633 0.5410 +79679 284194 0.4610 +79679 374383 0.6210 +79679 654346 0.4610 +79680 90427 0.7160 +79682 79733 0.4520 +79682 79980 0.6970 +79682 80152 0.9990 +79682 80351 0.4200 +79682 81930 0.5890 +79682 83540 0.7530 +79682 83879 0.4220 +79682 84057 0.8050 +79682 90417 0.4100 +79682 91687 0.9980 +79682 113130 0.7050 +79682 114569 0.4250 +79682 121504 0.8010 +79682 147841 0.6100 +79682 151246 0.4330 +79682 151648 0.4690 +79682 157313 0.6740 +79682 163859 0.4510 +79682 201254 0.9950 +79682 201965 0.4520 +79682 220134 0.4910 +79682 221150 0.6170 +79682 259266 0.6240 +79682 378708 0.9980 +79682 387103 0.9970 +79682 401541 0.9990 +79682 440093 0.4810 +79682 440686 0.4810 +79682 554313 0.8010 +79683 84859 0.4220 +79683 126017 0.5080 +79683 283576 0.4990 +79683 386724 0.4710 +79683 729515 0.4440 +79684 83855 0.5620 +79684 91283 0.4810 +79684 157922 0.4520 +79685 80312 0.5690 +79685 83463 0.6420 +79685 84312 0.9250 +79685 84948 0.4060 +79685 85236 0.5070 +79685 90316 0.5920 +79685 92815 0.4050 +79685 93624 0.4370 +79685 94239 0.5400 +79685 128312 0.4990 +79685 255626 0.4990 +79685 283337 0.4540 +79685 284716 0.4090 +79685 474382 0.4990 +79685 619279 0.6280 +79685 653604 0.5080 +79685 100316904 0.6120 +79689 79901 0.4530 +79689 219557 0.5120 +79690 126364 0.4590 +79691 79693 0.5460 +79691 79707 0.4880 +79691 79979 0.5390 +79691 80324 0.5180 +79691 80745 0.5610 +79691 81890 0.9990 +79691 83480 0.5710 +79691 84705 0.6540 +79691 84881 0.4780 +79691 87178 0.6530 +79691 90353 0.4810 +79691 92340 0.4760 +79691 93587 0.4590 +79691 113000 0.4160 +79691 123263 0.4280 +79691 128387 0.4620 +79691 142940 0.4980 +79691 221078 0.4380 +79691 285367 0.4670 +79691 387338 0.4630 +79692 94026 0.4450 +79693 79979 0.4150 +79693 80222 0.4150 +79693 80324 0.4840 +79693 80745 0.4860 +79693 81890 0.4360 +79693 83480 0.5850 +79693 84172 0.5040 +79693 84520 0.7630 +79693 84705 0.6040 +79693 84881 0.4130 +79693 84942 0.4090 +79693 90353 0.5480 +79693 112858 0.8470 +79693 113179 0.4730 +79693 118460 0.4070 +79693 123263 0.5850 +79693 131965 0.4150 +79693 134637 0.4260 +79693 201626 0.5170 +79693 339175 0.4410 +79693 474343 0.7820 +79694 80781 0.4710 +79694 81491 0.4750 +79694 84069 0.4480 +79694 84661 0.4060 +79694 84735 0.5100 +79694 84937 0.4530 +79694 89978 0.4270 +79694 114792 0.4570 +79694 122481 0.4240 +79694 146664 0.5240 +79694 158067 0.4240 +79694 221264 0.4430 +79694 223082 0.4420 +79694 252884 0.4200 +79694 253714 0.4330 +79694 285220 0.4240 +79695 94025 0.4520 +79695 118430 0.4830 +79695 140453 0.4930 +79695 143662 0.4230 +79695 192134 0.9230 +79695 195828 0.4790 +79695 200958 0.4250 +79695 727897 0.4760 +79695 728819 0.7690 +79696 80173 0.4630 +79696 80742 0.5550 +79696 83694 0.5510 +79696 83938 0.4550 +79696 84844 0.4400 +79696 84935 0.4320 +79696 84967 0.4950 +79696 89778 0.4320 +79696 91754 0.4640 +79696 92104 0.6230 +79696 146177 0.4540 +79696 170960 0.4200 +79696 220074 0.4550 +79696 375444 0.4330 +79696 390155 0.5710 +79696 392517 0.4390 +79696 100996928 0.4930 +79696 101669762 0.5480 +79697 79831 0.6480 +79697 80853 0.4200 +79697 83732 0.8070 +79697 84193 0.4340 +79697 84678 0.6260 +79697 91801 0.4050 +79697 121340 0.9200 +79697 129450 0.7020 +79697 221002 0.7970 +79697 221656 0.4460 +79697 387640 0.4590 +79697 390245 0.4440 +79697 399671 0.4290 +79697 100137047 0.4200 +79698 80114 0.4170 +79698 83541 0.4890 +79698 83877 0.4890 +79698 83878 0.5340 +79698 94059 0.4080 +79698 160518 0.4690 +79698 388336 0.4770 +79698 392636 0.4100 +79698 404217 0.4220 +79698 646960 0.4760 +79699 90624 0.4660 +79699 112937 0.4460 +79699 116138 0.9310 +79699 122769 0.6990 +79699 150684 0.9010 +79699 340204 0.4220 +79699 440561 0.9000 +79699 440590 0.5600 +79699 653619 0.9000 +79701 91750 0.4880 +79701 339229 0.5200 +79705 83737 0.4270 +79705 84309 0.4220 +79705 84627 0.4570 +79705 90203 0.4320 +79705 114609 0.4390 +79705 116362 0.4340 +79705 120892 0.7000 +79705 157807 0.4220 +79705 286256 0.4060 +79705 339669 0.4220 +79705 340595 0.4010 +79705 340596 0.5160 +79706 80011 0.8570 +79706 81576 0.5550 +79706 84081 0.5780 +79706 143884 0.7090 +79706 151613 0.4640 +79706 163859 0.9150 +79706 199746 0.5130 +79706 221184 0.5210 +79706 441273 0.4470 +79706 548644 0.4040 +79707 79954 0.6210 +79707 80772 0.4570 +79707 80835 0.5050 +79707 81577 0.4330 +79707 81875 0.6380 +79707 81887 0.9990 +79707 83756 0.4550 +79707 84128 0.5860 +79707 84135 0.7320 +79707 84916 0.6220 +79707 84946 0.5870 +79707 84961 0.4210 +79707 88745 0.6650 +79707 90025 0.4010 +79707 90353 0.4430 +79707 90459 0.4110 +79707 92856 0.6070 +79707 116832 0.4990 +79707 140801 0.4990 +79707 142679 0.4910 +79707 166378 0.4910 +79707 200916 0.5030 +79707 317781 0.5830 +79707 339665 0.4140 +79707 342892 0.4960 +79707 388591 0.4710 +79707 474382 0.4790 +79707 692312 0.4650 +79707 728661 0.4140 +79709 80781 0.5480 +79709 81578 0.4990 +79709 84570 0.4990 +79709 84934 0.6100 +79709 85301 0.5170 +79709 91522 0.8220 +79709 114897 0.4350 +79709 131873 0.5390 +79709 136227 0.5540 +79709 169044 0.5570 +79709 255631 0.4990 +79709 340267 0.5170 +79709 387911 0.4310 +79710 84759 0.7290 +79710 136541 0.5110 +79710 145282 0.4300 +79710 440093 0.4460 +79710 440686 0.4460 +79710 653604 0.4460 +79711 83743 0.6580 +79711 84128 0.4090 +79711 84172 0.8620 +79711 84271 0.4990 +79711 84916 0.6220 +79711 121504 0.9420 +79711 126961 0.9490 +79711 146059 0.7670 +79711 205564 0.4360 +79711 221078 0.6060 +79711 283383 0.7960 +79711 333932 0.9290 +79711 340096 0.4320 +79711 345630 0.6480 +79711 391769 0.4280 +79711 402569 0.5160 +79711 440093 0.9410 +79711 440686 0.9410 +79711 554313 0.9420 +79711 653604 0.9410 +79711 114483834 0.6690 +79712 130576 0.4740 +79712 284827 0.4470 +79713 84109 0.4040 +79713 118461 0.4010 +79713 123169 0.4750 +79713 147920 0.5510 +79713 347475 0.4670 +79713 374918 0.7680 +79713 388555 0.7020 +79713 107986096 0.5150 +79714 80775 0.6200 +79714 84215 0.5340 +79714 340273 0.4390 +79716 79892 0.4710 +79716 84126 0.5240 +79716 124565 0.4370 +79716 128602 0.4980 +79716 149345 0.4480 +79716 153830 0.4640 +79716 390190 0.5820 +79717 79877 0.6510 +79717 80025 0.9770 +79717 80347 0.9900 +79717 90639 0.6280 +79717 137362 0.8000 +79717 284439 0.5640 +79717 387103 0.4170 +79718 79885 0.5800 +79718 80205 0.5820 +79718 80829 0.4340 +79718 81608 0.5050 +79718 83933 0.5710 +79718 84101 0.8220 +79718 84433 0.4340 +79718 84441 0.5030 +79718 85235 0.4030 +79718 85236 0.4770 +79718 85441 0.5340 +79718 90665 0.9990 +79718 92815 0.4030 +79718 96764 0.5450 +79718 113246 0.4820 +79718 116519 0.4440 +79718 117143 0.5350 +79718 126206 0.4350 +79718 128312 0.4650 +79718 148479 0.4760 +79718 171568 0.6050 +79718 221613 0.4030 +79718 221937 0.4730 +79718 246175 0.4620 +79718 255626 0.4620 +79718 317772 0.4040 +79718 359948 0.4080 +79718 375790 0.5930 +79718 376497 0.4200 +79718 440689 0.4680 +79718 653604 0.6020 +79719 83548 0.4190 +79719 84317 0.4930 +79719 84804 0.5720 +79719 90416 0.7690 +79719 93210 0.5660 +79719 120103 0.4230 +79719 130340 0.7990 +79719 146227 0.4040 +79719 195827 0.4030 +79720 84313 0.9850 +79720 89853 0.9970 +79720 91782 0.9410 +79720 92421 0.7510 +79720 93343 0.9990 +79720 128866 0.9370 +79720 137492 0.9310 +79720 155382 0.9110 +79720 200894 0.4080 +79720 390595 0.5400 +79720 729852 0.6030 +79720 100526767 0.6630 +79722 79989 0.4920 +79722 80173 0.8190 +79722 84870 0.4110 +79722 90355 0.5480 +79722 92104 0.8040 +79722 118429 0.4950 +79722 127018 0.5230 +79722 130162 0.4670 +79722 131540 0.4150 +79722 150737 0.7780 +79722 151354 0.4540 +79722 160335 0.4460 +79722 165055 0.4760 +79722 197335 0.4180 +79722 199777 0.6140 +79722 204474 0.4450 +79722 338645 0.4090 +79722 387804 0.4070 +79723 79813 0.5750 +79723 79823 0.8120 +79723 80853 0.5690 +79723 80854 0.6370 +79723 83852 0.6030 +79723 84146 0.4860 +79723 84193 0.4770 +79723 84444 0.6400 +79723 84661 0.4860 +79723 84678 0.4340 +79723 84787 0.7300 +79723 114826 0.4480 +79723 150572 0.4890 +79723 255308 0.9020 +79723 378708 0.4310 +79723 390245 0.4290 +79723 391769 0.4150 +79723 440093 0.7410 +79723 440686 0.7410 +79723 653604 0.8370 +79724 79873 0.4010 +79724 84148 0.4700 +79724 84922 0.4290 +79724 93190 0.4180 +79724 118472 0.4940 +79724 123720 0.4120 +79724 206412 0.4340 +79725 79734 0.4260 +79725 80174 0.4690 +79725 84547 0.5370 +79725 168451 0.4030 +79725 199745 0.5820 +79725 267002 0.5630 +79725 283254 0.5920 +79725 285533 0.4600 +79725 643641 0.5380 +79725 100526760 0.5730 +79726 81929 0.9990 +79726 83667 0.9860 +79726 84219 0.9990 +79726 84289 0.4920 +79726 84851 0.4370 +79726 90423 0.4990 +79726 96459 0.4920 +79726 127124 0.4990 +79726 143686 0.7110 +79726 144577 0.9980 +79726 153129 0.5820 +79726 154743 0.5050 +79726 155066 0.4990 +79726 201163 0.6860 +79726 245972 0.5180 +79726 245973 0.5050 +79726 253260 0.5820 +79726 348995 0.4710 +79726 389541 0.7880 +79726 652968 0.9840 +79726 729438 0.8950 +79727 79923 0.9800 +79727 80312 0.6760 +79727 84891 0.7520 +79727 84962 0.4410 +79727 124540 0.5520 +79727 129563 0.7990 +79727 131405 0.7940 +79727 132625 0.7060 +79727 143689 0.4590 +79727 148979 0.5330 +79727 149076 0.5460 +79727 151871 0.5790 +79727 167153 0.4900 +79727 201456 0.8000 +79727 339345 0.5270 +79727 340168 0.5990 +79727 342977 0.5240 +79727 346673 0.5330 +79727 359787 0.7660 +79727 388112 0.4860 +79727 402381 0.4560 +79727 100532731 0.4370 +79728 79840 0.7250 +79728 79852 0.4950 +79728 79922 0.5290 +79728 79991 0.6000 +79728 80010 0.6850 +79728 80195 0.6890 +79728 80198 0.7240 +79728 80221 0.6550 +79728 80233 0.6320 +79728 81341 0.5710 +79728 83448 0.6010 +79728 83451 0.5000 +79728 83693 0.4480 +79728 83990 0.9980 +79728 84126 0.4920 +79728 84142 0.7010 +79728 84164 0.5400 +79728 84260 0.4980 +79728 84263 0.5830 +79728 84273 0.4450 +79728 84464 0.8680 +79728 84498 0.4020 +79728 84516 0.4160 +79728 84545 0.8170 +79728 84656 0.4970 +79728 84701 0.4770 +79728 84705 0.7970 +79728 84833 0.4430 +79728 84836 0.4950 +79728 84881 0.5590 +79728 84886 0.4260 +79728 84893 0.5670 +79728 84939 0.7930 +79728 90353 0.5150 +79728 90381 0.4130 +79728 91300 0.5710 +79728 91419 0.5480 +79728 91442 0.6390 +79728 91607 0.4750 +79728 91942 0.6720 +79728 92170 0.7770 +79728 92483 0.5160 +79728 112812 0.6240 +79728 113000 0.6150 +79728 114789 0.5160 +79728 115416 0.8070 +79728 116028 0.6500 +79728 119391 0.4230 +79728 123263 0.4510 +79728 125061 0.4230 +79728 125150 0.5400 +79728 125965 0.4850 +79728 126074 0.6870 +79728 126328 0.8070 +79728 126767 0.4870 +79728 126789 0.4330 +79728 130752 0.5480 +79728 132949 0.9880 +79728 136541 0.8160 +79728 139221 0.7750 +79728 139285 0.4970 +79728 142910 0.4950 +79728 146956 0.7630 +79728 150763 0.5510 +79728 152206 0.8070 +79728 153364 0.4020 +79728 157869 0.6520 +79728 160287 0.5160 +79728 165918 0.9180 +79728 196074 0.4790 +79728 197322 0.6520 +79728 197342 0.6970 +79728 199990 0.5050 +79728 200315 0.4390 +79728 201254 0.4450 +79728 219927 0.9580 +79728 246243 0.4090 +79728 253152 0.4950 +79728 253190 0.4990 +79728 253714 0.4290 +79728 267020 0.4640 +79728 283459 0.5110 +79728 284427 0.5120 +79728 284697 0.4960 +79728 285282 0.4170 +79728 285367 0.5580 +79728 286257 0.6690 +79728 340654 0.4950 +79728 343066 0.4870 +79728 344752 0.4870 +79728 348654 0.7450 +79728 353497 0.5550 +79728 374291 0.9520 +79728 374395 0.5960 +79728 374659 0.6550 +79728 376497 0.6520 +79728 388649 0.4950 +79728 388753 0.4870 +79728 440567 0.6480 +79728 548593 0.7090 +79728 643414 0.4950 +79728 643418 0.4950 +79728 728317 0.7750 +79728 100130890 0.4370 +79728 100131187 0.4370 +79728 100532726 0.9340 +79728 100533467 0.4470 +79728 105375355 0.5400 +79729 80311 0.4480 +79729 84524 0.4690 +79729 113444 0.4580 +79729 149345 0.5100 +79729 154790 0.4010 +79729 197021 0.4790 +79729 200539 0.4030 +79729 203245 0.4850 +79729 222389 0.5240 +79729 100652824 0.4250 +79730 79828 0.4700 +79730 79979 0.5170 +79730 80135 0.6700 +79730 80324 0.4500 +79730 81627 0.4280 +79730 81890 0.4550 +79730 83448 0.4990 +79730 83480 0.4450 +79730 84154 0.5460 +79730 84273 0.4300 +79730 84365 0.6470 +79730 84549 0.5320 +79730 91893 0.4660 +79730 92170 0.4300 +79730 92856 0.4200 +79730 93587 0.4580 +79730 113802 0.4530 +79730 115708 0.5050 +79730 117246 0.5660 +79730 123263 0.7020 +79730 130916 0.4800 +79730 131965 0.5280 +79730 132612 0.4260 +79730 142940 0.4480 +79730 158234 0.5030 +79730 161931 0.4640 +79730 202018 0.4450 +79730 221078 0.8570 +79730 345630 0.6180 +79730 387338 0.8550 +79730 692312 0.4330 +79731 80222 0.9000 +79731 81894 0.8970 +79731 84340 0.4610 +79731 84947 0.4230 +79731 85476 0.5970 +79731 87178 0.5050 +79731 91893 0.4930 +79731 92399 0.5360 +79731 92935 0.8950 +79731 93974 0.4090 +79731 123263 0.4800 +79731 123283 0.8870 +79731 124454 0.9130 +79731 158584 0.6320 +79731 283459 0.9640 +79731 374395 0.4680 +79731 101927367 0.4150 +79733 79801 0.6490 +79733 79968 0.4750 +79733 81620 0.6020 +79733 81930 0.5300 +79733 83461 0.6510 +79733 83540 0.5820 +79733 83879 0.4220 +79733 84057 0.4950 +79733 90381 0.4040 +79733 113130 0.4720 +79733 144455 0.9810 +79733 146909 0.6380 +79733 151648 0.4190 +79733 157313 0.5430 +79733 157570 0.4070 +79733 166979 0.4690 +79733 195828 0.4600 +79733 220134 0.5200 +79733 253714 0.4280 +79733 259266 0.6640 +79733 283431 0.4010 +79734 81565 0.4050 +79734 83892 0.7920 +79734 84078 0.9140 +79734 84280 0.4370 +79734 84541 0.9060 +79734 84861 0.9090 +79734 89890 0.9140 +79734 90293 0.9060 +79734 90410 0.4120 +79734 131377 0.7380 +79734 146212 0.4740 +79734 147040 0.6970 +79734 222658 0.5010 +79734 253980 0.9340 +79734 339745 0.9050 +79734 553115 0.7200 +79735 81631 0.4600 +79735 81857 0.4010 +79735 84335 0.5620 +79735 84557 0.4830 +79735 128637 0.5540 +79735 139341 0.4320 +79735 221960 0.4320 +79735 337867 0.4890 +79735 338382 0.9230 +79735 374403 0.4340 +79736 79810 0.4550 +79736 79915 0.6840 +79736 80298 0.6160 +79736 81892 0.4410 +79736 84078 0.5510 +79736 84282 0.5950 +79736 84440 0.6910 +79736 87178 0.5020 +79736 92667 0.5230 +79736 114659 0.6260 +79736 130916 0.6130 +79736 133015 0.5100 +79736 219402 0.4260 +79736 219927 0.4390 +79736 246243 0.4800 +79738 79809 0.4300 +79738 80173 0.4260 +79738 80184 0.8780 +79738 80273 0.5630 +79738 81570 0.4740 +79738 83752 0.4350 +79738 84140 0.7090 +79738 84467 0.5390 +79738 91147 0.8020 +79738 91419 0.4010 +79738 92482 0.8920 +79738 116835 0.4370 +79738 129880 0.9800 +79738 134266 0.5720 +79738 140290 0.4690 +79738 144453 0.4070 +79738 150160 0.8670 +79738 157657 0.6130 +79738 157680 0.5210 +79738 161003 0.5670 +79738 166379 0.9990 +79738 200894 0.4180 +79738 259217 0.4380 +79738 261734 0.4010 +79738 339416 0.5930 +79738 376132 0.4460 +79739 79969 0.5090 +79739 84288 0.4590 +79739 84871 0.5440 +79739 119587 0.5050 +79739 128025 0.4320 +79739 254428 0.4160 +79739 285180 0.4190 +79739 374969 0.4810 +79740 80023 0.5190 +79740 80217 0.4470 +79740 80816 0.4560 +79740 83659 0.4630 +79740 83894 0.4910 +79740 90506 0.4750 +79740 90668 0.4460 +79740 128602 0.5780 +79740 132203 0.4420 +79740 133690 0.4240 +79740 146177 0.5000 +79740 146845 0.6510 +79740 150483 0.4610 +79740 151790 0.7510 +79740 219770 0.5240 +79740 317761 0.4130 +79740 338699 0.5940 +79740 345895 0.4390 +79740 388531 0.4640 +79740 727764 0.4610 +79741 147664 0.4960 +79741 284312 0.4230 +79741 405754 0.5160 +79741 728317 0.4420 +79741 100129520 0.4750 +79741 100130742 0.4180 +79741 100271846 0.5110 +79742 80258 0.4250 +79742 84197 0.5090 +79742 91461 0.4800 +79742 125704 0.7240 +79742 138311 0.5730 +79742 157638 0.4280 +79742 170082 0.4290 +79742 347487 0.5060 +79742 388650 0.6570 +79744 84924 0.4710 +79744 115196 0.5230 +79744 143678 0.4180 +79744 284293 0.5720 +79744 374899 0.4660 +79744 442361 0.4790 +79744 100289635 0.6460 +79745 112703 0.4460 +79745 163071 0.7770 +79745 284001 0.4080 +79745 375759 0.5710 +79746 123041 0.4180 +79746 254427 0.5070 +79746 388325 0.5410 +79747 79781 0.5080 +79747 80122 0.4100 +79747 80217 0.4500 +79747 83894 0.5060 +79747 91050 0.5200 +79747 114757 0.7420 +79747 126820 0.4740 +79747 135924 0.4760 +79747 136332 0.6250 +79747 139212 0.4910 +79747 143241 0.4730 +79747 144535 0.4110 +79747 158787 0.4150 +79747 158798 0.4570 +79747 164684 0.4580 +79747 168090 0.4710 +79747 200162 0.4180 +79747 206358 0.4300 +79747 255119 0.4270 +79747 286464 0.4850 +79747 374973 0.4310 +79747 389432 0.4700 +79748 80125 0.4240 +79748 81562 0.5550 +79748 84465 0.4760 +79748 89866 0.5420 +79748 90411 0.8230 +79748 90701 0.5310 +79748 149111 0.5070 +79748 254263 0.5290 +79748 284451 0.4140 +79748 594855 0.6590 +79750 80790 0.4830 +79750 161582 0.5340 +79750 267002 0.4460 +79751 83733 0.6110 +79751 120892 0.5100 +79751 170302 0.7810 +79751 728489 0.4760 +79752 81034 0.4190 +79752 83940 0.4330 +79752 93550 0.4170 +79752 286148 0.4240 +79752 347051 0.4860 +79753 79882 0.4660 +79753 80725 0.4470 +79753 83443 0.9940 +79753 84060 0.8200 +79753 84081 0.5260 +79753 84811 0.9990 +79753 84844 0.9960 +79753 84950 0.9870 +79753 84967 0.4320 +79753 84991 0.4290 +79753 85313 0.4920 +79753 91746 0.6090 +79753 126364 0.4100 +79753 135295 0.5070 +79753 151613 0.5620 +79753 151903 0.4970 +79753 153527 0.9890 +79753 154007 0.4780 +79753 164045 0.5580 +79753 164781 0.4600 +79753 222183 0.5350 +79753 284325 0.4700 +79753 348793 0.4700 +79753 100534599 0.8290 +79754 114907 0.4170 +79754 129138 0.5010 +79754 140460 0.6410 +79754 140739 0.5060 +79754 149951 0.5000 +79754 150684 0.4990 +79754 157567 0.4550 +79754 170622 0.5020 +79754 200845 0.4370 +79754 342850 0.4340 +79754 343637 0.4560 +79755 196264 0.4740 +79758 112812 0.4630 +79758 116238 0.4980 +79758 140691 0.5160 +79758 145942 0.5420 +79758 197322 0.6520 +79758 200035 0.5420 +79758 259173 0.4600 +79758 338661 0.6480 +79759 80852 0.6620 +79759 83475 0.4160 +79759 84148 0.5430 +79759 84219 0.5350 +79759 84299 0.4040 +79759 84450 0.4560 +79759 84826 0.4710 +79759 84878 0.7790 +79759 84911 0.4820 +79759 90835 0.4300 +79759 91869 0.4840 +79759 113000 0.5300 +79759 126299 0.4670 +79759 129025 0.5660 +79759 146547 0.4960 +79759 148014 0.4270 +79759 220929 0.4030 +79759 339105 0.4050 +79759 348180 0.4520 +79760 79833 0.9990 +79760 79902 0.4160 +79760 81929 0.4150 +79760 96764 0.6110 +79760 129401 0.4210 +79760 134353 0.6570 +79760 348995 0.4360 +79760 100101267 0.4160 +79760 102288414 0.4530 +79762 131375 0.4810 +79762 253582 0.5280 +79762 255426 0.4880 +79763 79814 0.5220 +79763 81570 0.4050 +79763 83693 0.4900 +79763 84263 0.4500 +79763 84922 0.5380 +79763 93100 0.7480 +79763 112724 0.5010 +79763 126123 0.5730 +79763 133482 0.4300 +79763 163033 0.5920 +79763 255043 0.5520 +79763 349565 0.5640 +79763 642475 0.7420 +79763 730249 0.4510 +79763 100129669 0.4050 +79767 80005 0.8150 +79767 84173 0.5140 +79767 84466 0.5530 +79767 126695 0.4140 +79767 255520 0.4890 +79767 283849 0.4040 +79768 83473 0.6310 +79768 84056 0.9540 +79768 131076 0.5720 +79768 203859 0.4550 +79768 284403 0.4820 +79768 340277 0.4220 +79768 390980 0.5090 +79770 81542 0.5400 +79770 84105 0.4220 +79770 91147 0.4040 +79770 126308 0.4040 +79770 137392 0.5020 +79770 147965 0.5030 +79770 153328 0.4510 +79770 200185 0.4350 +79770 202018 0.4220 +79770 202243 0.4080 +79770 347732 0.5640 +79772 79912 0.4480 +79772 83989 0.5570 +79772 84250 0.5330 +79772 90141 0.6180 +79772 93109 0.4150 +79772 124152 0.5620 +79772 134187 0.4130 +79772 340578 0.4690 +79772 100130613 0.5260 +79774 91977 0.4810 +79774 113622 0.7370 +79774 128637 0.4760 +79774 201456 0.4330 +79774 203111 0.4110 +79774 221322 0.4380 +79774 284323 0.5370 +79774 339122 0.4010 +79774 440574 0.4730 +79776 83872 0.4100 +79776 84033 0.5070 +79776 84105 0.4070 +79776 89795 0.5040 +79776 94025 0.5830 +79776 114788 0.6640 +79776 120114 0.5730 +79776 129446 0.5450 +79776 440279 0.4530 +79777 79825 0.4610 +79777 79877 0.4660 +79777 80724 0.4100 +79777 92960 0.4130 +79777 284422 0.4360 +79777 122405565 0.4360 +79778 259173 0.4800 +79780 728047 0.4040 +79781 83450 0.4450 +79781 84223 0.4640 +79781 84229 0.6270 +79781 84288 0.5800 +79781 85478 0.5210 +79781 91050 0.5310 +79781 91860 0.4900 +79781 115811 0.4940 +79781 124637 0.4440 +79781 126820 0.4550 +79781 136895 0.4520 +79781 158297 0.4910 +79781 159686 0.4370 +79781 163688 0.4900 +79781 164781 0.5730 +79781 202500 0.6710 +79781 206358 0.4640 +79781 222235 0.4570 +79781 283953 0.4340 +79781 339829 0.4010 +79781 401036 0.4500 +79781 619208 0.4270 +79781 100507055 0.5200 +79782 84517 0.5250 +79782 130574 0.4260 +79782 134288 0.5580 +79782 151525 0.4020 +79782 151827 0.6520 +79782 344657 0.7080 +79782 440854 0.5710 +79782 645104 0.4250 +79782 100131897 0.4120 +79782 100653515 0.5010 +79783 80013 0.5490 +79783 83992 0.5760 +79783 84263 0.8830 +79783 92922 0.4610 +79783 136647 0.9860 +79783 136991 0.5070 +79783 140856 0.4670 +79783 157769 0.4490 +79783 158427 0.5050 +79783 171425 0.7710 +79783 197322 0.4530 +79783 284422 0.4090 +79783 389434 0.8230 +79783 503834 0.4110 +79783 109703458 0.4670 +79783 122405565 0.4090 +79784 83548 0.5930 +79784 84700 0.5660 +79784 91607 0.4200 +79784 93099 0.4310 +79784 93408 0.6940 +79784 103910 0.9330 +79784 124590 0.4380 +79784 140465 0.9280 +79784 257629 0.4420 +79784 388551 0.6250 +79784 399687 0.5890 +79785 84256 0.4430 +79786 135138 0.5690 +79786 136263 0.4470 +79786 166614 0.6020 +79786 339145 0.6280 +79786 389799 0.4470 +79786 729025 0.5710 +79788 84671 0.6550 +79788 84911 0.5620 +79788 124751 0.4850 +79788 221458 0.4040 +79788 284391 0.5670 +79788 374899 0.4830 +79789 84632 0.4150 +79789 127255 0.4120 +79789 140732 0.5930 +79789 147872 0.5510 +79789 161176 0.6280 +79789 220081 0.4600 +79789 221458 0.4470 +79789 256979 0.5930 +79791 123879 0.5030 +79792 81030 0.4910 +79792 91039 0.4290 +79792 91662 0.5500 +79792 91782 0.5550 +79792 92421 0.5080 +79792 114548 0.9900 +79792 115004 0.5790 +79792 128866 0.4050 +79792 137902 0.4010 +79792 140609 0.7950 +79792 171389 0.9100 +79792 197259 0.8540 +79792 199713 0.6090 +79792 200845 0.6910 +79792 201161 0.5070 +79792 338321 0.8540 +79792 494513 0.4550 +79794 90407 0.5500 +79794 266747 0.4140 +79796 91893 0.7940 +79796 285268 0.4480 +79796 374354 0.4750 +79796 440138 0.4230 +79797 80321 0.4900 +79797 84219 0.5380 +79797 84619 0.5410 +79797 84727 0.4420 +79797 84975 0.6270 +79797 148398 0.4100 +79797 221504 0.4910 +79797 346007 0.4900 +79797 348180 0.5370 +79797 448834 0.4970 +79798 84133 0.4160 +79798 283933 0.4030 +79799 114799 0.4530 +79799 135152 0.4530 +79799 157570 0.4560 +79799 220074 0.8130 +79799 284541 0.7100 +79799 340665 0.6860 +79799 374875 0.6810 +79799 442038 0.6380 +79799 574537 0.5860 +79799 100861540 0.7840 +79800 93979 0.4770 +79800 644890 0.4010 +79801 79968 0.4130 +79801 81610 0.5230 +79801 81620 0.6150 +79801 81624 0.4800 +79801 81930 0.7010 +79801 83461 0.5730 +79801 83540 0.7010 +79801 84057 0.4780 +79801 84271 0.8270 +79801 84930 0.4320 +79801 90381 0.4180 +79801 90506 0.4570 +79801 113115 0.5490 +79801 113130 0.5830 +79801 146909 0.4010 +79801 147841 0.4540 +79801 150468 0.6170 +79801 151246 0.4890 +79801 151648 0.6300 +79801 157313 0.4150 +79801 157570 0.6140 +79801 220134 0.7350 +79801 221150 0.5470 +79801 221302 0.4300 +79801 259266 0.6990 +79802 127069 0.4750 +79802 259308 0.4310 +79802 390081 0.4580 +79802 400823 0.4100 +79803 80789 0.5770 +79803 83938 0.6010 +79803 84062 0.9820 +79803 84343 0.9990 +79803 89781 0.9950 +79803 90167 0.4180 +79803 140775 0.4720 +79803 146167 0.5060 +79803 282991 0.9140 +79803 283652 0.5760 +79803 388552 0.9850 +79805 81027 0.4190 +79805 84617 0.4400 +79805 84790 0.4380 +79805 112714 0.4380 +79805 113457 0.4380 +79805 150465 0.6070 +79805 347733 0.8820 +79805 374969 0.9950 +79807 79875 0.7020 +79807 79890 0.4590 +79807 79959 0.4500 +79807 80346 0.4530 +79807 83890 0.5070 +79807 83938 0.5230 +79807 84071 0.4180 +79807 84083 0.4620 +79807 84318 0.5450 +79807 91057 0.4880 +79807 112869 0.4460 +79807 118429 0.4730 +79807 120935 0.4160 +79807 147700 0.4970 +79807 161003 0.4580 +79807 163486 0.4970 +79807 195828 0.4530 +79807 255743 0.6680 +79807 284992 0.5280 +79809 79848 0.5060 +79809 79867 0.5330 +79809 79989 0.8420 +79809 80067 0.4410 +79809 80173 0.9380 +79809 80184 0.7020 +79809 80776 0.4740 +79809 81833 0.4310 +79809 83478 0.4090 +79809 84662 0.4330 +79809 84942 0.4130 +79809 89891 0.6910 +79809 90410 0.8980 +79809 91147 0.7020 +79809 91754 0.4570 +79809 92104 0.6950 +79809 95681 0.5370 +79809 112752 0.9990 +79809 129880 0.6320 +79809 132884 0.5780 +79809 150737 0.8380 +79809 153241 0.5800 +79809 166379 0.4350 +79809 199223 0.5580 +79809 200894 0.6200 +79809 203286 0.4680 +79809 255758 0.5820 +79809 261734 0.6540 +79809 284086 0.6210 +79809 374654 0.4990 +79810 81892 0.4030 +79810 83786 0.5730 +79810 84881 0.4010 +79810 85464 0.4290 +79810 92399 0.4460 +79810 144132 0.4890 +79810 147912 0.4180 +79810 150696 0.4220 +79810 259282 0.4530 +79810 285367 0.4080 +79810 317662 0.4100 +79811 84811 0.4010 +79811 124245 0.4770 +79811 131118 0.6080 +79811 140890 0.4130 +79811 147007 0.4060 +79811 400506 0.4270 +79812 83878 0.7540 +79812 90952 0.4540 +79812 129080 0.4760 +79812 134265 0.4280 +79812 140706 0.4370 +79812 149233 0.4620 +79812 161198 0.9270 +79812 196883 0.4450 +79812 221395 0.5810 +79812 339977 0.4020 +79812 375790 0.4410 +79812 641700 0.4430 +79812 643161 0.4670 +79813 79823 0.7870 +79813 79918 0.4040 +79813 80335 0.4060 +79813 80854 0.5930 +79813 83746 0.7350 +79813 84108 0.7250 +79813 84146 0.6670 +79813 84193 0.4240 +79813 84289 0.5320 +79813 84444 0.6040 +79813 84661 0.4350 +79813 84678 0.5360 +79813 84787 0.6300 +79813 85236 0.5010 +79813 93166 0.5130 +79813 94239 0.4950 +79813 114826 0.5200 +79813 119504 0.5040 +79813 126961 0.9260 +79813 127064 0.4310 +79813 128312 0.4980 +79813 140685 0.4390 +79813 150572 0.4300 +79813 221656 0.4450 +79813 246184 0.5020 +79813 253738 0.4570 +79813 255626 0.5710 +79813 333932 0.9230 +79813 440093 0.9630 +79813 440686 0.9630 +79813 474382 0.4770 +79813 653604 0.9770 +79814 83475 0.5640 +79814 85007 0.4560 +79814 89894 0.4020 +79814 112483 0.9090 +79814 113451 0.9910 +79814 122945 0.4340 +79814 158584 0.4530 +79814 162417 0.4420 +79814 196743 0.5250 +79815 84061 0.7540 +79815 93380 0.4510 +79815 116540 0.4300 +79815 128239 0.4730 +79815 140803 0.5400 +79815 157680 0.4790 +79815 252983 0.4260 +79815 254428 0.6230 +79816 80759 0.4350 +79816 84327 0.6890 +79816 126206 0.9940 +79816 152330 0.5140 +79816 154288 0.9930 +79816 197135 0.6710 +79816 199713 0.5390 +79816 326340 0.5080 +79816 340168 0.4560 +79816 347688 0.5910 +79816 353238 0.9500 +79816 441161 0.9990 +79816 494551 0.6430 +79816 645832 0.4230 +79816 653145 0.6450 +79817 84085 0.4730 +79817 158038 0.6140 +79817 203228 0.5460 +79819 80217 0.5970 +79819 81492 0.4760 +79819 83544 0.7970 +79819 83657 0.6540 +79819 83658 0.5290 +79819 83853 0.4270 +79819 85478 0.4670 +79819 92749 0.4300 +79819 93233 0.8400 +79819 118491 0.7810 +79819 123872 0.6040 +79819 126820 0.9480 +79819 127602 0.5550 +79819 132203 0.4280 +79819 140735 0.4940 +79819 144132 0.7020 +79819 144406 0.5700 +79819 146754 0.8820 +79819 146845 0.5430 +79819 150483 0.4060 +79819 160762 0.4980 +79819 196385 0.6180 +79819 200132 0.6750 +79819 201625 0.7580 +79819 221421 0.7030 +79819 255758 0.4680 +79819 257177 0.6350 +79819 345895 0.5080 +79819 388389 0.4750 +79820 93589 0.7450 +79820 117144 0.9990 +79820 117155 0.9690 +79820 123036 0.6900 +79820 124404 0.4400 +79820 133482 0.4520 +79820 157855 0.4030 +79820 158431 0.4440 +79820 160777 0.4410 +79820 246329 0.7200 +79820 254359 0.4140 +79820 255220 0.5000 +79820 257044 0.9730 +79820 257062 0.9960 +79820 285335 0.5470 +79820 285588 0.9640 +79820 340393 0.7850 +79820 347732 0.9890 +79820 353189 0.4480 +79820 378807 0.9920 +79820 388564 0.5730 +79820 100130348 0.9400 +79820 100289255 0.5730 +79822 79929 0.4200 +79822 91133 0.5510 +79822 116840 0.4290 +79822 118461 0.5110 +79822 145389 0.4040 +79822 284217 0.4270 +79822 642597 0.5410 +79822 643418 0.4030 +79823 79980 0.4020 +79823 80854 0.8470 +79823 81930 0.4060 +79823 83540 0.5200 +79823 83852 0.7530 +79823 84444 0.8610 +79823 84643 0.5090 +79823 84787 0.7520 +79823 92342 0.6070 +79823 93166 0.6760 +79823 124512 0.4290 +79823 147841 0.4690 +79823 150572 0.7070 +79823 151194 0.6480 +79823 196483 0.5530 +79823 196541 0.5160 +79823 221143 0.5470 +79823 254013 0.6610 +79823 387893 0.8210 +79823 399818 0.5570 +79823 440093 0.5710 +79823 440686 0.5710 +79823 653604 0.5710 +79825 80258 0.4730 +79825 84455 0.4460 +79825 90141 0.5080 +79825 91452 0.4610 +79825 112703 0.4830 +79825 119395 0.4450 +79825 339122 0.4520 +79825 387694 0.4180 +79825 440955 0.5800 +79825 100131801 0.5360 +79825 100534599 0.5810 +79827 150084 0.5650 +79827 100506658 0.6060 +79828 81627 0.4580 +79828 81846 0.4220 +79828 83480 0.4410 +79828 84190 0.7850 +79828 92342 0.4480 +79828 93587 0.5350 +79828 113802 0.4170 +79828 114826 0.4950 +79828 124790 0.6150 +79828 129685 0.4350 +79828 131965 0.4810 +79828 148534 0.6460 +79828 158234 0.6490 +79828 196074 0.4430 +79828 196410 0.6180 +79828 196541 0.4010 +79828 221078 0.4320 +79828 221120 0.4070 +79828 377007 0.4620 +79828 399818 0.6040 +79829 79903 0.8750 +79829 80018 0.6790 +79829 80155 0.8230 +79829 80218 0.9060 +79829 83639 0.4470 +79829 84779 0.7080 +79829 89953 0.4740 +79829 92292 0.5430 +79829 122830 0.8220 +79830 645864 0.4050 +79831 79874 0.4950 +79831 80853 0.5640 +79831 81576 0.7330 +79831 84678 0.5250 +79831 84864 0.5940 +79831 91433 0.9060 +79831 221037 0.4830 +79831 221656 0.4370 +79831 390245 0.4890 +79831 440093 0.4160 +79831 440686 0.4160 +79831 653604 0.4160 +79833 79902 0.4200 +79833 81929 0.4210 +79833 96764 0.4860 +79833 113802 0.4290 +79833 123263 0.6310 +79833 129401 0.4260 +79833 192669 0.4700 +79833 192670 0.4240 +79833 284131 0.4950 +79833 348995 0.4450 +79833 100101267 0.4160 +79834 83475 0.5390 +79834 92335 0.4970 +79834 143244 0.4760 +79834 169436 0.4970 +79834 171177 0.5630 +79834 197259 0.4440 +79834 255967 0.4090 +79834 284656 0.4590 +79834 374872 0.5120 +79836 192669 0.4720 +79836 442247 0.4200 +79837 84722 0.4420 +79837 84812 0.7440 +79837 85403 0.4010 +79837 85477 0.9030 +79837 89869 0.7400 +79837 90809 0.9210 +79837 113026 0.7850 +79837 116254 0.5070 +79837 138429 0.9060 +79837 140465 0.6740 +79837 167826 0.6260 +79837 197021 0.4370 +79837 200576 0.9290 +79838 81792 0.4720 +79838 131096 0.5080 +79838 149499 0.4230 +79838 152100 0.4540 +79838 255349 0.4240 +79838 283554 0.4200 +79838 285533 0.4350 +79838 389161 0.4290 +79838 100130519 0.4730 +79838 100287718 0.4140 +79839 80071 0.4860 +79839 80817 0.5040 +79839 91133 0.4700 +79839 92922 0.5180 +79839 119548 0.4180 +79839 201255 0.4320 +79839 220164 0.5520 +79840 80169 0.4710 +79840 80198 0.4580 +79840 84126 0.6520 +79840 84164 0.5520 +79840 84811 0.4590 +79840 91419 0.9050 +79840 91801 0.4120 +79840 125150 0.9000 +79840 126074 0.9000 +79840 151295 0.7300 +79840 165918 0.5410 +79840 200558 0.8790 +79840 286257 0.9990 +79840 375748 0.4830 +79840 102723407 0.6130 +79840 105375355 0.5400 +79841 91252 0.4260 +79841 201931 0.4610 +79841 340351 0.5020 +79841 388698 0.5960 +79842 84364 0.4190 +79842 115196 0.4220 +79842 118461 0.4050 +79842 126382 0.4280 +79842 195828 0.4440 +79843 84734 0.4370 +79843 84842 0.4070 +79843 89796 0.4030 +79843 149175 0.4480 +79843 220108 0.4330 +79843 221178 0.4440 +79843 400451 0.5210 +79843 441272 0.4140 +79843 442361 0.4780 +79844 253832 0.5510 +79844 254359 0.4590 +79844 283576 0.6920 +79845 81790 0.4070 +79845 83986 0.4640 +79845 84282 0.5790 +79845 89122 0.5820 +79845 112849 0.4740 +79845 135644 0.5930 +79845 146310 0.4210 +79845 167838 0.4690 +79845 220108 0.4130 +79846 79925 0.6830 +79846 80217 0.8060 +79846 83450 0.4610 +79846 83894 0.6390 +79846 84071 0.6790 +79846 84074 0.7060 +79846 85452 0.4270 +79846 85865 0.5030 +79846 89876 0.6610 +79846 114327 0.5410 +79846 118491 0.6960 +79846 122481 0.5860 +79846 144406 0.7320 +79846 146754 0.5430 +79846 159686 0.5880 +79846 160419 0.4360 +79846 160857 0.6300 +79846 199223 0.6500 +79846 200373 0.4390 +79846 201456 0.6110 +79846 255101 0.4740 +79846 286464 0.5180 +79846 339829 0.4350 +79846 374407 0.4220 +79846 401024 0.6920 +79846 728621 0.5600 +79847 81622 0.4050 +79847 83985 0.4120 +79847 84255 0.4980 +79847 84641 0.4440 +79847 84804 0.6680 +79847 84879 0.4380 +79847 84975 0.5950 +79847 90288 0.4770 +79847 113655 0.5250 +79847 118980 0.4560 +79847 119032 0.4180 +79847 126321 0.6130 +79847 136306 0.5340 +79847 150709 0.4550 +79847 162387 0.6200 +79847 201305 0.4870 +79847 256471 0.4870 +79847 388931 0.4900 +79848 79867 0.5430 +79848 80184 0.6900 +79848 80221 0.4390 +79848 80776 0.4340 +79848 83541 0.9470 +79848 84516 0.7150 +79848 84545 0.4120 +79848 90362 0.9480 +79848 91147 0.6110 +79848 92170 0.4300 +79848 95681 0.5920 +79848 115416 0.4050 +79848 153241 0.5300 +79848 200894 0.5860 +79848 219927 0.4310 +79848 282809 0.5050 +79848 374654 0.4510 +79848 642273 0.9420 +79849 79968 0.4400 +79849 83416 0.4200 +79849 83693 0.4370 +79849 89790 0.4250 +79849 114132 0.4280 +79850 126321 0.5050 +79850 136332 0.5210 +79850 222546 0.4090 +79850 285051 0.4160 +79850 374618 0.4070 +79852 80020 0.4260 +79852 84945 0.4100 +79852 85360 0.4090 +79852 116236 0.4290 +79852 132949 0.4680 +79852 140701 0.4100 +79852 145447 0.4070 +79852 653061 0.4470 +79853 83693 0.4200 +79853 90993 0.4930 +79853 113419 0.4450 +79853 116151 0.4200 +79853 116211 0.5280 +79853 116441 0.6070 +79853 147710 0.4490 +79853 158248 0.4430 +79853 389812 0.4230 +79856 90203 0.4720 +79856 92017 0.4170 +79856 116449 0.5270 +79856 140685 0.4760 +79856 200035 0.4910 +79856 256329 0.4500 +79856 257144 0.5090 +79856 284613 0.4980 +79856 284680 0.5890 +79856 338382 0.4660 +79858 81704 0.4380 +79858 92979 0.4290 +79858 284086 0.4650 +79861 80086 0.4210 +79861 81027 0.9630 +79861 83473 0.4100 +79861 83547 0.6500 +79861 84517 0.4010 +79861 84617 0.9640 +79861 84790 0.4330 +79861 84955 0.6290 +79861 91782 0.5110 +79861 92421 0.5000 +79861 112714 0.4080 +79861 113457 0.4070 +79861 128866 0.5130 +79861 136332 0.5070 +79861 151651 0.4520 +79861 153562 0.9000 +79861 197335 0.6530 +79861 200014 0.5040 +79861 203068 0.9790 +79861 221496 0.5480 +79861 255394 0.4530 +79861 260334 0.7570 +79861 338382 0.6610 +79861 339416 0.4280 +79861 345651 0.4120 +79861 347688 0.9660 +79861 347733 0.9630 +79862 284615 0.4480 +79862 728741 0.4750 +79862 101060321 0.4340 +79863 79979 0.5950 +79863 80148 0.5990 +79863 84881 0.5220 +79863 85865 0.4930 +79863 93974 0.5810 +79863 115416 0.4940 +79863 116541 0.5220 +79863 126789 0.4870 +79863 130916 0.5010 +79863 132158 0.4470 +79863 196074 0.9570 +79863 219402 0.9170 +79863 387338 0.5590 +79863 440498 0.4620 +79863 127898561 0.4180 +79864 84124 0.4110 +79864 120066 0.4180 +79864 221421 0.4710 +79864 256051 0.4070 +79864 339829 0.4060 +79865 79890 0.4390 +79865 80381 0.9550 +79865 118987 0.4020 +79865 124599 0.6010 +79865 146547 0.4540 +79865 146722 0.4420 +79865 146894 0.4650 +79865 285852 0.5670 +79865 340205 0.9860 +79865 342510 0.4280 +79865 388325 0.4270 +79865 401258 0.4340 +79865 729475 0.4330 +79865 100131439 0.4060 +79866 79959 0.5140 +79866 80184 0.5310 +79866 80321 0.5510 +79866 81565 0.5400 +79866 81620 0.4140 +79866 81930 0.5630 +79866 83540 0.4320 +79866 84131 0.5190 +79866 84661 0.4040 +79866 84930 0.4270 +79866 84962 0.8280 +79866 93323 0.5220 +79866 95681 0.5530 +79866 115106 0.6820 +79866 121441 0.5870 +79866 151246 0.4550 +79866 151648 0.4640 +79866 203068 0.5340 +79866 221150 0.4110 +79866 259266 0.4320 +79866 440145 0.6850 +79867 79989 0.4100 +79867 80184 0.9790 +79867 80776 0.9930 +79867 84314 0.9120 +79867 91147 0.9950 +79867 91754 0.4320 +79867 95681 0.6300 +79867 117177 0.6170 +79867 129880 0.4440 +79867 132884 0.4170 +79867 200728 0.9330 +79867 200894 0.6450 +79867 261734 0.6170 +79867 283232 0.4050 +79867 284086 0.4280 +79867 374654 0.5710 +79868 79869 0.4920 +79868 79873 0.4480 +79868 79947 0.5200 +79868 85365 0.6730 +79868 90268 0.4170 +79868 116150 0.4480 +79868 139562 0.5230 +79868 161725 0.4900 +79868 199857 0.9990 +79868 201595 0.4260 +79868 284098 0.5140 +79868 340596 0.5530 +79868 440138 0.8250 +79868 644974 0.4380 +79868 100128731 0.4550 +79869 80145 0.5620 +79869 81608 0.8620 +79869 84248 0.5270 +79869 84271 0.6850 +79869 84321 0.5540 +79869 84324 0.5160 +79869 91746 0.4070 +79869 136157 0.5790 +79869 140890 0.4340 +79869 143506 0.5790 +79869 171017 0.8560 +79869 192670 0.4710 +79869 196120 0.5790 +79869 199746 0.5670 +79869 390031 0.5790 +79869 390033 0.5790 +79869 441584 0.5790 +79869 642843 0.5820 +79870 171023 0.4160 +79871 81488 0.8790 +79871 81572 0.7090 +79871 84138 0.5350 +79871 84172 0.6290 +79871 85360 0.4650 +79871 92105 0.4580 +79871 116143 0.6500 +79871 121053 0.9770 +79871 140459 0.6130 +79871 145282 0.9990 +79871 145781 0.4380 +79871 246721 0.5730 +79871 375035 0.4780 +79871 375190 0.4310 +79871 548644 0.7640 +79871 100134938 0.4760 +79871 107983993 0.4760 +79872 81608 0.4370 +79872 91746 0.7760 +79872 221120 0.5580 +79872 253943 0.7630 +79873 83594 0.7140 +79873 84304 0.7160 +79873 126541 0.4100 +79873 200035 0.7380 +79873 254552 0.4990 +79873 256281 0.7500 +79873 283927 0.4840 +79874 80146 0.4040 +79874 83985 0.5940 +79874 84901 0.5900 +79874 93550 0.4160 +79874 112869 0.5700 +79874 140460 0.4870 +79874 163126 0.5740 +79874 203062 0.4560 +79874 284433 0.4070 +79874 388569 0.6520 +79874 728689 0.4950 +79874 728734 0.4530 +79874 100507607 0.5510 +79875 81794 0.4500 +79875 83938 0.5150 +79875 84071 0.4040 +79875 145173 0.5100 +79875 255743 0.4910 +79875 342979 0.4510 +79876 80279 0.7140 +79876 81605 0.7020 +79876 81631 0.5490 +79876 84557 0.4880 +79876 90639 0.4340 +79876 92912 0.6330 +79876 112858 0.4910 +79876 118424 0.6020 +79876 140739 0.7360 +79876 148581 0.6030 +79876 166979 0.7540 +79876 387082 0.4560 +79876 402682 0.8460 +79876 440738 0.5600 +79876 100131187 0.4030 +79877 80347 0.8460 +79877 90423 0.5660 +79877 90639 0.4490 +79877 113026 0.4250 +79877 124783 0.4450 +79877 124790 0.4650 +79877 163882 0.5740 +79877 474170 0.4020 +79877 728621 0.4690 +79877 730005 0.4320 +79879 79891 0.4020 +79879 91057 0.4330 +79879 113201 0.4820 +79879 150365 0.6610 +79879 166929 0.4170 +79879 348262 0.4370 +79879 387733 0.4150 +79879 388569 0.4610 +79879 441457 0.4510 +79882 80145 0.5570 +79882 80153 0.4350 +79882 80315 0.4460 +79882 80336 0.4320 +79882 83607 0.5270 +79882 84271 0.6660 +79882 84324 0.6340 +79882 84950 0.5480 +79882 91949 0.4590 +79882 116115 0.5020 +79882 124540 0.8330 +79882 132430 0.4320 +79882 138046 0.4850 +79882 140886 0.4350 +79882 155435 0.5030 +79882 161436 0.4820 +79882 200014 0.4090 +79882 392517 0.8600 +79882 728343 0.4700 +79883 122769 0.5790 +79883 123355 0.4430 +79883 339291 0.4890 +79883 376132 0.4960 +79883 390205 0.5040 +79883 474354 0.4710 +79883 646457 0.4740 +79884 91775 0.4540 +79884 151648 0.4330 +79884 152185 0.4080 +79885 81620 0.7730 +79885 83933 0.6250 +79885 84148 0.4370 +79885 84441 0.5150 +79885 85236 0.7000 +79885 92292 0.5470 +79885 92815 0.6870 +79885 94104 0.4330 +79885 94239 0.7210 +79885 128312 0.7020 +79885 157570 0.4050 +79885 158983 0.6990 +79885 221613 0.6860 +79885 255626 0.7050 +79885 286436 0.6990 +79885 317772 0.6860 +79885 440093 0.6130 +79885 440686 0.6140 +79885 440689 0.7020 +79885 474381 0.6860 +79885 474382 0.6860 +79885 653604 0.6130 +79885 114483833 0.6990 +79886 80000 0.4590 +79886 90806 0.4630 +79886 253582 0.4470 +79887 80309 0.4370 +79887 123745 0.4050 +79887 128611 0.4630 +79887 151056 0.4230 +79887 255189 0.4050 +79887 283748 0.4050 +79887 100137049 0.4050 +79888 79966 0.4610 +79888 81037 0.6010 +79888 81579 0.7110 +79888 84320 0.4120 +79888 84647 0.7240 +79888 84649 0.5950 +79888 120892 0.4010 +79888 122618 0.9000 +79888 123745 0.6900 +79888 129642 0.6340 +79888 132949 0.5080 +79888 150763 0.5340 +79888 151056 0.7410 +79888 201595 0.4190 +79888 253558 0.9430 +79888 254531 0.9220 +79888 255189 0.6860 +79888 283748 0.6880 +79888 375775 0.7270 +79888 391013 0.6890 +79888 653509 0.4250 +79888 100137049 0.6640 +79890 79974 0.4040 +79890 81501 0.4020 +79890 83661 0.4480 +79890 84888 0.4560 +79890 90231 0.4160 +79890 123041 0.8300 +79890 126432 0.6320 +79890 245802 0.5140 +79890 259173 0.6130 +79890 388325 0.4230 +79890 643680 0.5050 +79890 647087 0.4270 +79891 140730 0.4180 +79891 151647 0.4790 +79891 286336 0.4890 +79891 389658 0.4180 +79892 79915 0.4220 +79892 81545 0.4090 +79892 81620 0.8050 +79892 84296 0.7090 +79892 84515 0.8990 +79892 116211 0.5920 +79892 150864 0.5040 +79892 157777 0.6680 +79892 254225 0.4600 +79892 254394 0.8510 +79892 261726 0.4850 +79893 79922 0.6470 +79893 80146 0.4610 +79893 80179 0.6430 +79893 83693 0.4760 +79893 83893 0.4120 +79893 84693 0.4330 +79893 132851 0.4640 +79893 144100 0.4180 +79893 199720 0.6670 +79893 220082 0.4010 +79893 284098 0.7960 +79893 284099 0.6140 +79893 414918 0.4370 +79894 80851 0.4910 +79894 91057 0.4130 +79894 200159 0.6040 +79894 267002 0.4870 +79895 91614 0.4660 +79895 148229 0.5810 +79895 158747 0.4050 +79895 161291 0.9550 +79895 286410 0.6100 +79896 84680 0.4280 +79896 84706 0.4400 +79896 84735 0.4270 +79896 91409 0.4200 +79896 113675 0.6880 +79896 123688 0.4330 +79896 162417 0.4140 +79896 285148 0.6250 +79896 374659 0.8310 +79896 390110 0.4280 +79896 414919 0.5470 +79897 80746 0.5790 +79897 81887 0.4090 +79897 138716 0.9200 +79897 140032 0.4990 +79897 152992 0.4210 +79897 192669 0.7210 +79897 192670 0.7210 +79897 283461 0.4800 +79897 283989 0.5430 +79897 401097 0.4790 +79898 84418 0.4620 +79898 90576 0.7800 +79898 125893 0.4840 +79898 284370 0.4980 +79898 388284 0.4790 +79898 388536 0.4640 +79899 84335 0.4200 +79899 253260 0.9990 +79901 84699 0.4050 +79901 113235 0.6760 +79901 113746 0.4040 +79901 148738 0.7880 +79901 151176 0.4790 +79901 164656 0.7080 +79901 261729 0.6740 +79901 391059 0.5070 +79902 80145 0.4730 +79902 80184 0.4360 +79902 81608 0.4200 +79902 81929 0.9990 +79902 84220 0.4490 +79902 84248 0.4280 +79902 84271 0.5860 +79902 84321 0.5040 +79902 84324 0.4130 +79902 91181 0.4770 +79902 91754 0.4560 +79902 91782 0.4370 +79902 116835 0.4090 +79902 116840 0.7020 +79902 129401 0.9930 +79902 133482 0.4700 +79902 137362 0.4810 +79902 140609 0.4050 +79902 140735 0.4900 +79902 150094 0.4460 +79902 152185 0.4470 +79902 153241 0.6510 +79902 197322 0.4260 +79902 199746 0.4390 +79902 259217 0.4090 +79902 283987 0.4060 +79902 348995 0.9990 +79902 375686 0.7110 +79902 376497 0.4020 +79902 389170 0.4540 +79902 653489 0.4490 +79902 728343 0.7160 +79902 729540 0.4490 +79902 729857 0.7360 +79902 100101267 0.8760 +79903 80018 0.6410 +79903 80155 0.8950 +79903 80218 0.8760 +79903 84148 0.4020 +79903 84779 0.7900 +79903 92292 0.6210 +79903 112869 0.5560 +79903 114799 0.4260 +79903 122830 0.7750 +79903 146434 0.7300 +79903 221710 0.5580 +79903 339983 0.4180 +79905 127255 0.7420 +79905 257019 0.6120 +79905 389432 0.5880 +79906 83540 0.4310 +79906 84502 0.5150 +79906 90987 0.5030 +79906 149840 0.4490 +79906 254956 0.5340 +79906 440077 0.4530 +79908 90864 0.4150 +79908 132949 0.4750 +79908 143662 0.5130 +79912 80228 0.5020 +79912 84294 0.4370 +79912 112812 0.6060 +79912 130026 0.4220 +79912 139596 0.8430 +79912 219348 0.4340 +79912 283985 0.5690 +79912 284521 0.4190 +79912 730249 0.6210 +79913 80196 0.4150 +79913 80205 0.4010 +79913 81611 0.9020 +79913 83444 0.9980 +79913 84181 0.4100 +79913 85378 0.5330 +79913 93973 0.9980 +79913 117584 0.4350 +79913 121504 0.8000 +79913 124995 0.8200 +79913 125476 0.9990 +79913 164684 0.6270 +79913 283899 0.9990 +79913 554313 0.8000 +79915 80119 0.7370 +79915 80198 0.7500 +79915 81620 0.8010 +79915 81930 0.4610 +79915 83932 0.4440 +79915 83990 0.5540 +79915 84083 0.5930 +79915 84250 0.4330 +79915 84282 0.4770 +79915 84440 0.6040 +79915 84464 0.4360 +79915 84515 0.4950 +79915 84893 0.6630 +79915 84901 0.4380 +79915 90381 0.5080 +79915 114659 0.6530 +79915 114799 0.7670 +79915 144715 0.5090 +79915 157570 0.7630 +79915 163786 0.4080 +79915 201973 0.4060 +79915 253714 0.4760 +79915 254394 0.5020 +79915 254528 0.4790 +79915 257218 0.4660 +79915 259266 0.4680 +79915 285755 0.4750 +79915 348654 0.5970 +79915 387082 0.4850 +79915 653604 0.4510 +79917 119504 0.7070 +79917 246184 0.7630 +79918 80854 0.5970 +79918 83852 0.4330 +79918 84193 0.5090 +79918 387893 0.5360 +79919 285093 0.4180 +79919 444882 0.4780 +79919 728763 0.4470 +79921 84707 0.4170 +79921 85012 0.7760 +79921 85313 0.4700 +79921 89887 0.5830 +79921 90843 0.5770 +79921 128229 0.4490 +79921 140597 0.7790 +79921 340542 0.4660 +79921 388695 0.4180 +79922 79979 0.6290 +79922 80179 0.6410 +79922 80324 0.5380 +79922 81627 0.4180 +79922 81892 0.5020 +79922 83448 0.5780 +79922 84273 0.7260 +79922 84545 0.7000 +79922 84705 0.8120 +79922 84769 0.5540 +79922 84881 0.8270 +79922 84916 0.4060 +79922 85441 0.4760 +79922 85865 0.6330 +79922 87178 0.4360 +79922 90353 0.4240 +79922 91647 0.6470 +79922 91833 0.4270 +79922 91942 0.4920 +79922 92170 0.8870 +79922 112936 0.6170 +79922 113000 0.5690 +79922 115416 0.8840 +79922 115752 0.4630 +79922 117246 0.5750 +79922 126789 0.4360 +79922 129563 0.4640 +79922 130916 0.6490 +79922 134266 0.6680 +79922 162282 0.4330 +79922 196074 0.6180 +79922 201626 0.4260 +79922 219927 0.7370 +79922 284098 0.6570 +79922 284099 0.6210 +79922 285367 0.7190 +79922 374659 0.4440 +79922 387338 0.7240 +79922 728299 0.4400 +79923 80312 0.9930 +79923 80319 0.4830 +79923 80712 0.4780 +79923 83439 0.6720 +79923 83595 0.6030 +79923 83881 0.7540 +79923 84159 0.4990 +79923 84444 0.4680 +79923 84525 0.4900 +79923 84661 0.7350 +79923 84678 0.7150 +79923 84733 0.4090 +79923 84759 0.4190 +79923 84891 0.9060 +79923 89780 0.5300 +79923 112939 0.7770 +79923 117581 0.4100 +79923 128209 0.4700 +79923 132625 0.8780 +79923 134187 0.5100 +79923 137902 0.5570 +79923 140690 0.5860 +79923 145258 0.5180 +79923 146713 0.4040 +79923 147658 0.4530 +79923 148979 0.6750 +79923 151871 0.6610 +79923 162979 0.4210 +79923 200424 0.8860 +79923 201456 0.8590 +79923 201516 0.5420 +79923 256297 0.5120 +79923 284695 0.4020 +79923 286133 0.4060 +79923 340168 0.7800 +79923 340273 0.4120 +79923 342977 0.5350 +79923 346673 0.4880 +79923 359787 0.8130 +79923 373863 0.4110 +79923 387332 0.8090 +79923 388112 0.9800 +79923 389421 0.6980 +79923 390992 0.4100 +79923 440093 0.7280 +79923 440686 0.7280 +79923 642623 0.6010 +79923 653604 0.7990 +79923 728378 0.4530 +79923 100133941 0.7270 +79923 100532731 0.8160 +79924 81889 0.4120 +79924 113091 0.5120 +79924 117579 0.5400 +79924 122876 0.4560 +79924 170589 0.4110 +79924 199800 0.7900 +79924 255061 0.4090 +79924 594857 0.4210 +79925 80217 0.7350 +79925 81492 0.4120 +79925 83894 0.6240 +79925 84071 0.7170 +79925 84074 0.6090 +79925 84217 0.4380 +79925 85452 0.4020 +79925 85478 0.5530 +79925 89765 0.5450 +79925 89876 0.6410 +79925 90410 0.6990 +79925 115399 0.4690 +79925 115948 0.4530 +79925 118491 0.6830 +79925 122481 0.6030 +79925 123872 0.4520 +79925 130106 0.5530 +79925 133690 0.4560 +79925 135138 0.4460 +79925 136263 0.5030 +79925 136332 0.6780 +79925 144406 0.6210 +79925 144535 0.7440 +79925 146754 0.5020 +79925 149465 0.4510 +79925 154865 0.4030 +79925 159686 0.5050 +79925 199223 0.6990 +79925 200162 0.7140 +79925 200373 0.6570 +79925 221421 0.5130 +79925 255101 0.4080 +79925 283629 0.4590 +79925 286464 0.4930 +79925 339829 0.6410 +79925 345895 0.6420 +79925 374407 0.5580 +79925 401024 0.6350 +79927 114991 0.5760 +79927 149420 0.4470 +79927 342527 0.4760 +79929 84940 0.4760 +79929 85455 0.4930 +79929 90113 0.4590 +79929 91860 0.6160 +79929 94104 0.5020 +79929 112703 0.4160 +79929 118881 0.5140 +79929 124274 0.4050 +79929 131408 0.4360 +79929 147798 0.4740 +79929 158297 0.6330 +79929 163688 0.6160 +79929 283726 0.4600 +79929 347475 0.4480 +79929 647286 0.4870 +79930 84058 0.4330 +79930 285489 0.4530 +79930 374403 0.4690 +79931 81603 0.4270 +79931 125115 0.4450 +79932 80724 0.5600 +79932 157769 0.4500 +79932 161582 0.6470 +79933 84700 0.4620 +79933 84909 0.6100 +79933 165904 0.4020 +79933 256369 0.4010 +79933 387758 0.4070 +79934 80219 0.7260 +79934 83478 0.4230 +79934 84274 0.9170 +79934 84942 0.4830 +79934 90956 0.7160 +79934 93058 0.7420 +79934 112812 0.4600 +79934 160760 0.4110 +79934 203054 0.4970 +79934 613227 0.4480 +79935 83461 0.5660 +79935 92292 0.4030 +79935 92335 0.4190 +79935 126520 0.5940 +79935 166979 0.7520 +79935 219970 0.4030 +79935 402569 0.5890 +79935 494551 0.4540 +79935 644672 0.4400 +79935 728642 0.4400 +79935 100287520 0.4030 +79937 728577 0.6050 +79939 80723 0.4650 +79939 84912 0.6070 +79939 113829 0.5370 +79939 117286 0.4710 +79939 126382 0.5310 +79939 159371 0.5740 +79939 222553 0.5850 +79939 284439 0.4760 +79939 340146 0.5650 +79939 347734 0.5470 +79943 80975 0.4310 +79943 84626 0.5500 +79943 92595 0.4680 +79943 254773 0.5220 +79943 284069 0.4170 +79943 387836 0.5280 +79943 389668 0.4200 +79944 81544 0.5470 +79944 83473 0.4720 +79944 84056 0.4660 +79944 84274 0.4160 +79944 85007 0.4010 +79944 137872 0.6190 +79944 158234 0.4050 +79944 220032 0.5470 +79944 256356 0.5030 +79944 284161 0.5570 +79944 728294 0.9830 +79947 80347 0.4540 +79947 80745 0.6060 +79947 84140 0.7080 +79947 84317 0.4680 +79947 84650 0.4280 +79947 87178 0.5140 +79947 91734 0.7380 +79947 91875 0.4360 +79947 92211 0.4450 +79947 92399 0.7770 +79947 116150 0.9980 +79947 130557 0.6020 +79947 145226 0.5000 +79947 157657 0.5800 +79947 199857 0.4340 +79947 346007 0.5740 +79947 375298 0.6270 +79947 388939 0.5700 +79947 440138 0.4340 +79947 768206 0.5420 +79947 100529261 0.4380 +79948 84866 0.4310 +79948 91304 0.5120 +79948 116444 0.4630 +79948 124930 0.4350 +79948 340348 0.5290 +79948 641649 0.4230 +79949 79998 0.4540 +79949 143187 0.4760 +79949 285381 0.4660 +79949 348093 0.4590 +79949 374354 0.4750 +79949 440955 0.4450 +79953 81832 0.4150 +79953 89797 0.4240 +79953 90317 0.4260 +79953 112476 0.5930 +79953 146395 0.6970 +79953 146664 0.4630 +79953 149111 0.5890 +79953 254263 0.7160 +79953 286753 0.5540 +79953 387890 0.5130 +79953 388336 0.4190 +79953 642515 0.4470 +79953 644070 0.6100 +79953 729956 0.4090 +79953 729993 0.7040 +79954 80135 0.8710 +79954 81627 0.5500 +79954 83480 0.6180 +79954 83732 0.6720 +79954 83743 0.9160 +79954 84128 0.9970 +79954 84135 0.9960 +79954 84154 0.8270 +79954 84172 0.8730 +79954 84294 0.8700 +79954 84319 0.6540 +79954 84365 0.8780 +79954 84549 0.9110 +79954 84916 0.9990 +79954 84946 0.9130 +79954 85441 0.4810 +79954 88745 0.5060 +79954 90121 0.6400 +79954 90381 0.4180 +79954 91893 0.4140 +79954 92345 0.4270 +79954 92856 0.9980 +79954 93594 0.5020 +79954 112840 0.4800 +79954 113251 0.5670 +79954 115708 0.4090 +79954 115752 0.5060 +79954 115825 0.4760 +79954 115939 0.4410 +79954 116143 0.4600 +79954 116966 0.6490 +79954 117246 0.8800 +79954 124808 0.4350 +79954 126402 0.6180 +79954 128061 0.8080 +79954 129563 0.5360 +79954 130814 0.5130 +79954 140032 0.6180 +79954 142940 0.5380 +79954 146212 0.5300 +79954 153443 0.4590 +79954 155368 0.4200 +79954 161424 0.7450 +79954 165545 0.6110 +79954 221078 0.8440 +79954 221830 0.6380 +79954 245973 0.4090 +79954 317781 0.6850 +79954 345630 0.9250 +79954 402117 0.4210 +79954 641776 0.4530 +79954 643909 0.4530 +79954 692312 0.7610 +79954 728524 0.4530 +79954 100996746 0.4530 +79954 105180390 0.4530 +79954 105180391 0.4530 +79955 83715 0.5060 +79955 84059 0.9970 +79955 84131 0.4630 +79955 89848 0.4870 +79955 117531 0.6000 +79955 117532 0.5750 +79955 124590 0.9680 +79955 125336 0.4510 +79955 126326 0.4440 +79955 133482 0.4590 +79955 146183 0.4500 +79955 148870 0.4770 +79955 161497 0.6400 +79955 222662 0.5560 +79955 259236 0.4890 +79955 283310 0.4500 +79955 286262 0.5210 +79955 286676 0.4060 +79955 340990 0.4610 +79955 388939 0.4740 +79955 389207 0.4360 +79955 643226 0.4510 +79956 84928 0.4160 +79956 113189 0.4510 +79956 115426 0.4790 +79956 124997 0.4740 +79956 147007 0.4040 +79956 151531 0.5400 +79956 158358 0.6120 +79956 160335 0.4670 +79956 201232 0.4160 +79956 401152 0.4180 +79957 80777 0.4210 +79957 85315 0.4050 +79957 124222 0.4460 +79957 124936 0.6040 +79957 152559 0.4370 +79957 164091 0.8160 +79957 344838 0.9150 +79958 160518 0.4540 +79958 163486 0.4910 +79958 374403 0.5040 +79959 80184 0.8680 +79959 81929 0.5740 +79959 84083 0.5010 +79959 84131 0.5440 +79959 84304 0.4080 +79959 84461 0.6350 +79959 84902 0.5480 +79959 84984 0.4020 +79959 85397 0.4800 +79959 91687 0.5220 +79959 93323 0.5510 +79959 115106 0.5220 +79959 116840 0.4120 +79959 117177 0.5090 +79959 120071 0.4750 +79959 129450 0.4780 +79959 134359 0.6400 +79959 146456 0.4910 +79959 153241 0.6200 +79959 163786 0.6480 +79959 166378 0.4410 +79959 199221 0.6070 +79959 282809 0.5240 +79959 284654 0.4690 +79959 347240 0.5660 +79959 375686 0.5460 +79959 728642 0.4990 +79960 84289 0.9900 +79960 261734 0.7290 +79960 440093 0.6660 +79960 440686 0.6660 +79960 653604 0.6660 +79961 80273 0.6170 +79961 81029 0.4670 +79961 128344 0.5240 +79961 148423 0.4390 +79962 80273 0.4520 +79962 81570 0.4890 +79962 84545 0.4060 +79962 116835 0.5500 +79962 118461 0.4200 +79962 120526 0.5710 +79962 134266 0.4520 +79962 202052 0.5590 +79962 259217 0.4950 +79962 339416 0.4200 +79962 374407 0.4720 +79962 388633 0.4200 +79962 548645 0.5100 +79966 79993 0.4830 +79966 83401 0.5330 +79966 84649 0.4490 +79966 84735 0.4010 +79966 84803 0.5130 +79966 137964 0.5330 +79966 201562 0.9180 +79966 254531 0.4430 +79966 401494 0.9170 +79968 83481 0.5100 +79968 83879 0.4330 +79968 84128 0.4540 +79968 84196 0.5520 +79968 84790 0.5260 +79968 84978 0.4230 +79968 85236 0.4040 +79968 91694 0.4550 +79968 115426 0.4390 +79968 195828 0.4990 +79968 203068 0.5370 +79968 283431 0.5830 +79968 474343 0.5610 +79968 653604 0.5880 +79968 654364 0.5100 +79969 92292 0.4460 +79969 150465 0.6050 +79969 164714 0.4420 +79969 254173 0.4830 +79969 256126 0.4100 +79969 352999 0.4100 +79971 80194 0.4500 +79971 80326 0.8140 +79971 81029 0.8530 +79971 84870 0.4220 +79971 89780 0.9940 +79971 147111 0.4820 +79971 219738 0.4740 +79971 284098 0.4500 +79971 286451 0.4500 +79971 100188893 0.4500 +79973 80352 0.4400 +79973 284382 0.4010 +79974 90488 0.4060 +79974 125228 0.5070 +79974 284358 0.4410 +79974 100129669 0.4800 +79977 80004 0.4310 +79977 114569 0.4260 +79977 153562 0.4340 +79977 389207 0.4670 +79979 80324 0.4580 +79979 80745 0.4800 +79979 81627 0.5940 +79979 81890 0.5300 +79979 83448 0.4390 +79979 83480 0.4090 +79979 83743 0.6040 +79979 84128 0.5250 +79979 84154 0.6330 +79979 84172 0.4770 +79979 84266 0.4090 +79979 84340 0.4170 +79979 84881 0.6540 +79979 114826 0.4630 +79979 115708 0.7240 +79979 117246 0.5050 +79979 131965 0.4200 +79979 142940 0.4460 +79979 160760 0.4290 +79979 196074 0.7580 +79979 221078 0.5070 +79979 283989 0.6190 +79979 285367 0.4340 +79979 339229 0.4320 +79979 387338 0.6750 +79980 80152 0.8260 +79980 81930 0.4070 +79980 83540 0.9910 +79980 83903 0.5790 +79980 84174 0.4080 +79980 84643 0.4470 +79980 90417 0.6130 +79980 91687 0.6240 +79980 92667 0.4170 +79980 92922 0.4220 +79980 147841 0.9930 +79980 151246 0.4780 +79980 151648 0.7320 +79980 157313 0.4540 +79980 201254 0.5210 +79980 220134 0.5940 +79980 221150 0.6580 +79980 348235 0.6150 +79980 378708 0.5020 +79980 387103 0.6380 +79980 401541 0.5860 +79980 440093 0.4320 +79980 440686 0.4330 +79980 653604 0.4330 +79980 100527963 0.9980 +79981 80014 0.5460 +79981 81872 0.5060 +79981 90506 0.4250 +79981 113402 0.4180 +79981 122786 0.9140 +79981 147872 0.4610 +79981 152065 0.4500 +79981 152189 0.4650 +79981 163778 0.4450 +79981 168002 0.5650 +79981 168090 0.4050 +79981 253769 0.5500 +79981 391365 0.4290 +79981 728279 0.4680 +79981 100271715 0.4240 +79982 80273 0.6350 +79982 81570 0.4890 +79982 84545 0.4060 +79982 90624 0.4050 +79982 116835 0.5100 +79982 117584 0.4320 +79982 118461 0.4200 +79982 134266 0.4530 +79982 202052 0.4060 +79982 259217 0.4700 +79982 339416 0.4200 +79982 388633 0.4200 +79983 117154 0.6800 +79983 135935 0.8690 +79983 139322 0.5100 +79983 164045 0.4600 +79983 254065 0.4140 +79983 340562 0.6270 +79983 344018 0.8600 +79983 345456 0.4020 +79983 375189 0.4020 +79989 80173 0.9840 +79989 83538 0.4470 +79989 90410 0.9470 +79989 91875 0.4560 +79989 92104 0.9870 +79989 112752 0.8040 +79989 123775 0.4810 +79989 125488 0.4050 +79989 127733 0.9950 +79989 129880 0.5170 +79989 130502 0.4040 +79989 150737 0.9970 +79989 164781 0.5050 +79989 199223 0.6490 +79989 200894 0.5000 +79989 222950 0.4680 +79989 254048 0.5150 +79989 283237 0.5660 +79989 284958 0.4780 +79989 346689 0.4100 +79989 100507055 0.4450 +79990 80179 0.5250 +79990 90167 0.4520 +79990 92104 0.4580 +79990 124590 0.4740 +79990 142685 0.5070 +79990 151790 0.5760 +79990 257629 0.4740 +79990 338094 0.4660 +79990 389333 0.4620 +79990 402635 0.4820 +79991 80003 0.4310 +79991 80010 0.5970 +79991 80169 0.9990 +79991 80198 0.4940 +79991 81620 0.4840 +79991 81857 0.9940 +79991 84083 0.4070 +79991 84126 0.7730 +79991 84908 0.4160 +79991 90390 0.9940 +79991 91039 0.4820 +79991 112950 0.9940 +79991 149840 0.4890 +79991 151827 0.5100 +79991 162540 0.4860 +79991 163223 0.6680 +79991 197370 0.7310 +79991 222229 0.4320 +79991 246243 0.4180 +79991 254528 0.6460 +79991 440087 0.4700 +79991 440093 0.4840 +79991 440686 0.4830 +79991 653604 0.4830 +79991 653857 0.4830 +79991 100134934 0.9990 +79993 80724 0.4390 +79993 83401 0.9310 +79993 83862 0.4030 +79993 201562 0.4020 +79993 494188 0.5060 +79998 126668 0.5780 +79998 317754 0.4160 +79998 360205 0.4180 +79998 100288966 0.4170 +80000 80746 0.5210 +80000 85019 0.4640 +80000 199221 0.4140 +80000 389136 0.5040 +80003 643382 0.4470 +80004 149986 0.4990 +80004 202559 0.5300 +80005 81624 0.4220 +80005 81704 0.4130 +80005 85440 0.6440 +80005 115761 0.4720 +80005 134548 0.4520 +80005 139818 0.4420 +80005 171177 0.4190 +80005 202374 0.4360 +80005 342667 0.4170 +80006 81876 0.6420 +80006 84328 0.4750 +80006 91408 0.7190 +80006 92400 0.4430 +80006 122553 0.9830 +80006 126003 0.9850 +80006 134147 0.6090 +80006 134510 0.4880 +80006 261726 0.4610 +80006 339122 0.5770 +80006 100128327 0.6450 +80006 112441434 0.5360 +80007 84167 0.5520 +80007 85021 0.4020 +80007 120227 0.6000 +80007 129831 0.4670 +80007 148137 0.4300 +80007 222484 0.4230 +80007 374618 0.5560 +80008 80723 0.4100 +80008 81793 0.4990 +80008 136991 0.4590 +80008 199964 0.5340 +80008 201895 0.5240 +80008 282617 0.4120 +80008 282618 0.4030 +80008 339977 0.4350 +80010 80119 0.6460 +80010 80198 0.9550 +80010 80233 0.9960 +80010 83695 0.5210 +80010 83990 0.7570 +80010 84126 0.7160 +80010 84464 0.8330 +80010 84893 0.7100 +80010 85365 0.4580 +80010 90379 0.4220 +80010 91442 0.8930 +80010 92797 0.4240 +80010 116028 0.9990 +80010 116447 0.7210 +80010 128710 0.4600 +80010 144715 0.5430 +80010 146956 0.8570 +80010 152185 0.4300 +80010 164045 0.4680 +80010 197342 0.6660 +80010 201254 0.9950 +80010 201973 0.5420 +80010 286053 0.6540 +80010 348654 0.8830 +80010 378708 0.9960 +80010 388649 0.4180 +80010 548593 0.8960 +80011 89970 0.4580 +80011 91409 0.4180 +80011 118460 0.4920 +80011 129563 0.4300 +80011 135458 0.4540 +80011 142684 0.7020 +80011 145258 0.9540 +80011 221184 0.5440 +80011 282808 0.7010 +80011 283629 0.4100 +80012 80816 0.5400 +80012 84108 0.9720 +80012 84232 0.4990 +80012 84333 0.9670 +80012 84678 0.6440 +80012 84733 0.9960 +80012 84759 0.9720 +80012 85236 0.5430 +80012 94239 0.6480 +80012 112817 0.7150 +80012 119504 0.9020 +80012 121536 0.9110 +80012 128312 0.5430 +80012 132625 0.5410 +80012 140459 0.5400 +80012 146713 0.4470 +80012 166979 0.5440 +80012 171023 0.9000 +80012 192669 0.5640 +80012 192670 0.5040 +80012 246184 0.9000 +80012 253260 0.5560 +80012 255626 0.5400 +80012 404281 0.5410 +80012 414301 0.4570 +80012 440093 0.7970 +80012 440686 0.7970 +80012 474382 0.4990 +80012 653604 0.8940 +80012 100170841 0.4320 +80012 100532731 0.6920 +80013 84166 0.4820 +80013 84270 0.4470 +80013 84665 0.4800 +80013 84674 0.8050 +80013 126299 0.4140 +80013 221302 0.4290 +80013 252839 0.7750 +80014 92597 0.4040 +80014 122786 0.4170 +80014 154796 0.5910 +80014 284339 0.4330 +80017 83700 0.4100 +80017 123207 0.4480 +80017 134429 0.4690 +80017 414919 0.4510 +80018 80155 0.9930 +80018 80218 0.8820 +80018 80724 0.5540 +80018 84316 0.7200 +80018 84779 0.7900 +80018 85476 0.4750 +80018 87178 0.4110 +80018 89894 0.7000 +80018 114799 0.6470 +80018 114904 0.5650 +80018 117289 0.5010 +80018 119032 0.4790 +80018 122830 0.9420 +80018 132612 0.4790 +80018 145781 0.4080 +80018 157570 0.6080 +80018 283450 0.4900 +80018 345611 0.4440 +80018 389792 0.4020 +80019 80745 0.4110 +80019 84065 0.4300 +80019 143162 0.4340 +80019 158358 0.5550 +80019 389383 0.4370 +80020 80267 0.4250 +80020 121506 0.4100 +80020 390667 0.4120 +80021 84187 0.4880 +80021 283377 0.4290 +80022 80712 0.4310 +80022 121643 0.4600 +80022 124590 0.5440 +80022 146279 0.4700 +80022 147650 0.5420 +80022 257629 0.5320 +80022 392433 0.4800 +80022 401565 0.4180 +80022 619189 0.4350 +80022 646962 0.5600 +80022 102723502 0.5300 +80022 102724631 0.5060 +80023 140885 0.4050 +80023 152330 0.4520 +80023 219770 0.4800 +80023 345757 0.4220 +80023 400935 0.4070 +80023 554235 0.4290 +80024 81562 0.4110 +80024 84876 0.4150 +80024 90550 0.7900 +80024 91689 0.6660 +80024 219931 0.5050 +80024 221154 0.7740 +80024 286097 0.6670 +80025 80067 0.7470 +80025 80208 0.4300 +80025 80347 0.9810 +80025 85021 0.4880 +80025 90639 0.4340 +80025 124402 0.4840 +80025 221960 0.4950 +80025 283927 0.4170 +80028 123879 0.5040 +80028 144699 0.4690 +80028 146330 0.5710 +80031 80208 0.7580 +80031 84466 0.4100 +80031 89874 0.4150 +80031 91584 0.9380 +80032 124401 0.4100 +80032 126123 0.5090 +80032 133923 0.4490 +80032 387849 0.4310 +80034 80309 0.4410 +80034 80310 0.4100 +80034 117156 0.4540 +80034 160492 0.4530 +80036 158405 0.4440 +80036 162514 0.7910 +80036 255231 0.5190 +80036 283953 0.4040 +80036 440279 0.4450 +80045 84275 0.4600 +80045 84328 0.6640 +80045 84548 0.4110 +80045 131601 0.4520 +80045 165100 0.4780 +80045 283383 0.4640 +80045 283554 0.5580 +80045 344758 0.4180 +80045 347148 0.4480 +80055 80157 0.4930 +80055 80235 0.4240 +80055 80821 0.4380 +80055 84720 0.6520 +80055 84992 0.6150 +80055 91574 0.4330 +80055 93183 0.6930 +80055 93210 0.8040 +80055 94005 0.9500 +80055 128869 0.9400 +80055 137492 0.4840 +80055 147719 0.4160 +80055 204474 0.4040 +80055 284098 0.7330 +80055 340075 0.4180 +80059 84298 0.4600 +80059 90161 0.4010 +80059 122769 0.5140 +80059 123355 0.4240 +80059 149111 0.4020 +80059 154467 0.4880 +80059 255252 0.4750 +80059 347730 0.5000 +80059 347731 0.6320 +80059 376132 0.4820 +80059 474354 0.4820 +80059 731220 0.4560 +80063 83852 0.4980 +80063 120534 0.8120 +80063 144321 0.4530 +80063 101060684 0.4740 +80067 80344 0.9020 +80067 80347 0.7690 +80067 84259 0.5200 +80067 85015 0.5420 +80067 85021 0.6060 +80067 90379 0.9020 +80067 91801 0.4870 +80067 138009 0.5400 +80067 139170 0.5400 +80067 139425 0.5400 +80067 149951 0.4990 +80067 150684 0.5000 +80067 170622 0.4990 +80067 254394 0.4020 +80067 285429 0.5400 +80067 340578 0.5400 +80067 347442 0.5400 +80070 83448 0.4010 +80070 93650 0.4100 +80070 115939 0.4360 +80070 145173 0.6580 +80070 219931 0.4330 +80070 346007 0.4270 +80071 256126 0.4040 +80071 285613 0.5280 +80071 375686 0.4460 +80071 553158 0.5710 +80071 645811 0.4460 +80086 81027 0.7140 +80086 83657 0.4200 +80086 83659 0.4800 +80086 84517 0.4310 +80086 84617 0.7200 +80086 84790 0.5260 +80086 91782 0.5110 +80086 92421 0.6300 +80086 112714 0.4150 +80086 113457 0.4230 +80086 115948 0.4170 +80086 128866 0.4990 +80086 136332 0.5140 +80086 139741 0.4100 +80086 140625 0.4080 +80086 151651 0.4540 +80086 197335 0.6530 +80086 200014 0.4990 +80086 203068 0.6030 +80086 221496 0.5470 +80086 260334 0.7590 +80086 339416 0.4370 +80086 345651 0.4100 +80086 347688 0.7690 +80086 347733 0.7140 +80095 84077 0.4870 +80095 133491 0.4790 +80095 158405 0.4290 +80097 84948 0.4440 +80097 85378 0.9910 +80097 85395 0.4040 +80097 114791 0.9930 +80097 121441 0.9990 +80097 125988 0.4800 +80097 127687 0.4160 +80097 282991 0.9000 +80097 440145 0.9990 +80097 441150 0.5040 +80097 653784 0.8700 +80097 100130958 0.4530 +80110 84620 0.5070 +80110 90317 0.4730 +80110 119467 0.5370 +80110 124599 0.4910 +80110 143425 0.5400 +80110 151195 0.5470 +80110 157922 0.4930 +80110 284370 0.5190 +80114 91754 0.5620 +80114 117178 0.5600 +80114 124401 0.7490 +80114 147798 0.4250 +80114 167153 0.6310 +80114 169792 0.4080 +80114 203286 0.6480 +80114 222553 0.4030 +80114 253559 0.4140 +80114 284086 0.5910 +80114 284252 0.4110 +80114 646960 0.4310 +80115 80728 0.4190 +80115 81624 0.4660 +80115 83988 0.7200 +80115 84251 0.7280 +80115 89848 0.4610 +80115 92154 0.5960 +80115 122616 0.6280 +80115 130340 0.5400 +80115 150350 0.5400 +80115 283521 0.5200 +80115 445582 0.4120 +80117 83694 0.4850 +80117 120534 0.8010 +80117 126859 0.4480 +80117 151742 0.4790 +80117 166752 0.5900 +80117 541468 0.4900 +80119 80198 0.7690 +80119 80323 0.4080 +80119 81620 0.5940 +80119 83990 0.8530 +80119 84083 0.5640 +80119 84135 0.5980 +80119 84296 0.6970 +80119 84464 0.4130 +80119 84893 0.7730 +80119 90381 0.5850 +80119 116447 0.4790 +80119 124602 0.4200 +80119 146909 0.7300 +80119 146956 0.4930 +80119 157313 0.4390 +80119 166979 0.4070 +80119 170506 0.6000 +80119 201973 0.6300 +80119 246243 0.7080 +80119 254394 0.4010 +80119 348654 0.4870 +80119 548593 0.4460 +80122 80731 0.4410 +80122 83659 0.4570 +80122 92335 0.4480 +80122 124751 0.5150 +80122 133690 0.4360 +80122 139212 0.4670 +80122 144809 0.4980 +80122 146177 0.4980 +80122 146845 0.4270 +80122 149499 0.4780 +80122 158798 0.4320 +80122 161003 0.4450 +80122 200403 0.4310 +80122 219681 0.4170 +80122 225689 0.4010 +80122 257177 0.4660 +80122 266629 0.4360 +80122 389161 0.5260 +80122 399949 0.5800 +80122 100287718 0.4890 +80124 80267 0.6150 +80124 80700 0.7140 +80124 83932 0.7520 +80124 84196 0.5720 +80124 84232 0.4200 +80124 84447 0.5320 +80124 84640 0.4040 +80124 84669 0.4990 +80124 90268 0.4760 +80124 92552 0.6530 +80124 117245 0.5240 +80124 126119 0.4530 +80124 130106 0.4080 +80124 137886 0.9950 +80124 139562 0.5690 +80124 147339 0.6180 +80124 149041 0.4440 +80124 149371 0.4530 +80124 157769 0.5490 +80124 161725 0.4990 +80124 165324 0.9950 +80124 199857 0.4100 +80124 220213 0.4760 +80124 221302 0.5100 +80124 258010 0.4400 +80124 373509 0.5900 +80124 373863 0.4200 +80125 84229 0.5790 +80125 84959 0.4430 +80125 84993 0.6610 +80125 85302 0.6170 +80125 152206 0.4150 +80125 257236 0.4730 +80125 286207 0.4970 +80125 342096 0.4190 +80125 399949 0.5500 +80127 81797 0.4320 +80127 83450 0.4400 +80127 83538 0.4080 +80127 124093 0.5840 +80127 130888 0.4900 +80127 136288 0.4340 +80127 148304 0.4790 +80128 81565 0.5160 +80128 81786 0.4310 +80128 92912 0.4800 +80128 134285 0.5750 +80128 200185 0.7080 +80128 256714 0.5190 +80129 89765 0.4090 +80129 94239 0.5800 +80129 134121 0.5050 +80129 138162 0.4440 +80129 146705 0.4450 +80129 154865 0.4440 +80129 158067 0.4890 +80129 219681 0.4160 +80129 255119 0.4110 +80129 257236 0.4680 +80129 441054 0.4260 +80131 80727 0.6040 +80131 84230 0.5200 +80131 94015 0.5880 +80131 140467 0.4870 +80131 220296 0.4750 +80131 222484 0.4400 +80131 255022 0.4620 +80131 339398 0.4490 +80131 375616 0.5210 +80131 389816 0.4990 +80133 133558 0.4260 +80133 147463 0.4010 +80133 163589 0.4010 +80133 222826 0.5120 +80133 222967 0.4040 +80133 339766 0.6000 +80133 390152 0.4790 +80133 390174 0.4440 +80133 390261 0.5070 +80133 728194 0.4470 +80135 80324 0.5970 +80135 81887 0.7050 +80135 83448 0.5230 +80135 83479 0.4030 +80135 83480 0.5420 +80135 83732 0.4230 +80135 83743 0.7170 +80135 84128 0.5270 +80135 84154 0.9840 +80135 84172 0.5330 +80135 84273 0.6370 +80135 84294 0.6780 +80135 84319 0.4090 +80135 84365 0.9990 +80135 84450 0.4230 +80135 84549 0.9980 +80135 84916 0.5590 +80135 84946 0.8710 +80135 85437 0.4460 +80135 88745 0.5370 +80135 90121 0.5840 +80135 90441 0.7500 +80135 92170 0.6320 +80135 92345 0.4010 +80135 92856 0.9110 +80135 115509 0.4270 +80135 116832 0.4410 +80135 116966 0.6310 +80135 117246 0.9910 +80135 146212 0.9290 +80135 153443 0.6540 +80135 155368 0.5400 +80135 161424 0.5560 +80135 165545 0.4340 +80135 200916 0.7720 +80135 221078 0.9400 +80135 221830 0.7660 +80135 254268 0.7220 +80135 285855 0.9040 +80135 345630 0.4740 +80135 387129 0.8990 +80135 387338 0.5850 +80135 645051 0.4730 +80135 645073 0.4730 +80135 692312 0.8270 +80135 729396 0.4730 +80135 729422 0.4730 +80135 729428 0.4730 +80135 729431 0.4730 +80135 729442 0.4730 +80135 729447 0.4730 +80135 100008586 0.4730 +80135 100132399 0.4730 +80135 100505478 0.8280 +80135 100526842 0.8440 +80135 102724473 0.4730 +80139 80223 0.4930 +80139 84513 0.5760 +80139 338917 0.4620 +80142 80755 0.5110 +80142 387914 0.4650 +80142 100885850 0.6400 +80143 80342 0.9950 +80143 83992 0.6390 +80143 84282 0.5820 +80143 85369 0.9980 +80143 89122 0.5070 +80143 143879 0.5210 +80143 340527 0.4950 +80144 83872 0.6920 +80144 91156 0.4150 +80144 126321 0.4210 +80144 128497 0.4400 +80144 132884 0.4240 +80144 148753 0.4270 +80144 255743 0.8690 +80144 340706 0.4140 +80144 341640 0.9820 +80144 400668 0.4420 +80144 401024 0.4240 +80145 81929 0.4130 +80145 84248 0.8870 +80145 84271 0.8300 +80145 84321 0.9990 +80145 84324 0.9900 +80145 84709 0.4480 +80145 85437 0.6720 +80145 112950 0.5650 +80145 115286 0.5280 +80145 126526 0.4020 +80145 129401 0.4360 +80145 132200 0.4330 +80145 155435 0.5070 +80145 348995 0.4160 +80145 388591 0.4360 +80145 100101267 0.4640 +80146 80221 0.4810 +80146 81616 0.4320 +80146 84545 0.4330 +80146 85365 0.4110 +80146 92196 0.4080 +80146 114987 0.4670 +80146 126402 0.4660 +80146 126792 0.4910 +80146 128025 0.5160 +80146 132949 0.4120 +80146 140032 0.4270 +80146 143244 0.4180 +80146 143884 0.4260 +80146 197258 0.5100 +80146 200916 0.4630 +80146 285855 0.4130 +80146 344558 0.5300 +80146 347734 0.5670 +80146 387129 0.4030 +80146 390637 0.4070 +80146 440138 0.5460 +80146 100505478 0.4030 +80146 100526842 0.4310 +80146 100529239 0.4860 +80148 91137 0.5290 +80148 148203 0.4040 +80148 284485 0.4650 +80148 374868 0.6580 +80148 388389 0.4370 +80148 440498 0.4900 +80149 83998 0.4450 +80149 84807 0.6180 +80149 93643 0.4750 +80149 149041 0.7710 +80149 221302 0.4800 +80149 340152 0.4070 +80150 90231 0.4750 +80150 122622 0.9100 +80150 137362 0.9210 +80150 259307 0.9060 +80150 339896 0.8180 +80150 339983 0.9000 +80150 374569 0.9360 +80150 554235 0.8000 +80152 83540 0.7730 +80152 91687 0.9960 +80152 121504 0.8000 +80152 147841 0.9900 +80152 151246 0.4570 +80152 151648 0.4460 +80152 161247 0.4250 +80152 201254 0.9990 +80152 220134 0.4740 +80152 221150 0.4370 +80152 284439 0.5470 +80152 378708 0.9990 +80152 387103 0.9990 +80152 401541 0.9970 +80152 440093 0.8010 +80152 440686 0.8050 +80152 554313 0.8000 +80152 653604 0.8050 +80152 100526739 0.5670 +80152 100527963 0.6550 +80153 83607 0.6200 +80153 84172 0.4200 +80153 84271 0.5200 +80153 84950 0.5130 +80153 85406 0.4110 +80153 91445 0.4540 +80153 91949 0.4780 +80153 124801 0.6410 +80153 149986 0.8690 +80153 150465 0.8610 +80153 152518 0.5640 +80153 167227 0.9990 +80153 192669 0.4530 +80153 196513 0.9980 +80153 197135 0.5580 +80153 200014 0.4050 +80153 219988 0.9990 +80153 221908 0.5840 +80153 284325 0.4500 +80153 390916 0.4460 +80155 80218 0.9990 +80155 84316 0.9520 +80155 84779 0.9970 +80155 92292 0.5860 +80155 114799 0.7410 +80155 115701 0.4820 +80155 122830 0.9790 +80155 157570 0.7390 +80155 221710 0.6610 +80157 80217 0.4410 +80157 81930 0.4060 +80157 93210 0.5080 +80157 220296 0.4150 +80157 245929 0.4150 +80157 343990 0.5120 +80157 401665 0.4270 +80162 121642 0.5660 +80162 130589 0.8640 +80162 171389 0.5640 +80162 286451 0.6140 +80162 338440 0.4200 +80162 338707 0.7070 +80162 387733 0.6270 +80162 402778 0.5310 +80162 641649 0.4210 +80162 646658 0.4970 +80164 115704 0.5070 +80167 83451 0.5810 +80167 83642 0.4700 +80167 84696 0.4600 +80167 84945 0.4540 +80167 116236 0.4720 +80167 140701 0.5320 +80167 145447 0.4650 +80167 154313 0.4140 +80167 253152 0.4050 +80167 256471 0.5240 +80167 285172 0.4780 +80167 389320 0.6450 +80168 80339 0.7130 +80168 84513 0.9260 +80168 84649 0.9130 +80168 84803 0.4430 +80168 116255 0.9100 +80168 119548 0.6610 +80168 132949 0.4570 +80168 137964 0.4270 +80168 139189 0.6610 +80168 160851 0.6930 +80168 196051 0.9260 +80168 346606 0.9130 +80168 100129924 0.4140 +80169 84126 0.5040 +80169 84314 0.4200 +80169 84464 0.4030 +80169 149840 0.7850 +80169 163223 0.6980 +80169 165918 0.4600 +80169 171023 0.4280 +80169 283129 0.5120 +80169 283847 0.7060 +80169 286257 0.4230 +80169 100134934 0.9990 +80173 80184 0.6660 +80173 84984 0.4410 +80173 85302 0.4060 +80173 89891 0.4340 +80173 90410 0.9830 +80173 90417 0.4610 +80173 91147 0.4470 +80173 92104 0.9830 +80173 92482 0.5190 +80173 112752 0.8380 +80173 115948 0.7370 +80173 127733 0.9950 +80173 129880 0.6450 +80173 150737 0.9980 +80173 157657 0.4160 +80173 164781 0.5220 +80173 166379 0.4740 +80173 167691 0.4780 +80173 197335 0.4540 +80173 199223 0.7380 +80173 200894 0.8970 +80174 84250 0.4380 +80174 84296 0.4160 +80174 84515 0.5130 +80174 90381 0.5020 +80174 116211 0.4270 +80174 126520 0.4930 +80174 130749 0.4270 +80174 133482 0.4060 +80174 157777 0.4270 +80174 254394 0.6110 +80174 284403 0.4570 +80174 285533 0.4940 +80176 84676 0.4020 +80176 90864 0.4930 +80176 93974 0.4250 +80176 114907 0.4910 +80176 122769 0.4280 +80176 133396 0.4250 +80176 140739 0.5300 +80176 149951 0.4990 +80176 150684 0.4990 +80176 170622 0.4990 +80177 161198 0.4860 +80178 80262 0.5410 +80178 80817 0.4520 +80178 81620 0.5000 +80178 113130 0.4940 +80178 144097 0.4220 +80178 148223 0.4540 +80178 203260 0.4330 +80178 282890 0.5090 +80178 283643 0.8600 +80178 283870 0.4300 +80179 84501 0.4240 +80179 89941 0.9520 +80179 93408 0.5400 +80179 123720 0.4320 +80179 136332 0.4600 +80179 140465 0.4570 +80179 284098 0.6140 +80179 284099 0.5750 +80183 80230 0.5900 +80183 83700 0.6030 +80183 128077 0.6290 +80183 133688 0.6290 +80183 134526 0.6430 +80183 146894 0.6130 +80183 147948 0.4880 +80183 151647 0.5820 +80183 167127 0.6290 +80183 167410 0.7720 +80183 196441 0.4760 +80183 221301 0.5670 +80183 284312 0.4470 +80183 431707 0.4210 +80183 440138 0.4140 +80183 441168 0.4290 +80184 80776 0.9700 +80184 81554 0.6140 +80184 83857 0.5040 +80184 83987 0.4040 +80184 84131 0.4980 +80184 84140 0.5230 +80184 84314 0.9160 +80184 84461 0.8010 +80184 84662 0.4140 +80184 84902 0.5920 +80184 85302 0.5430 +80184 85444 0.5010 +80184 85459 0.4010 +80184 90410 0.6340 +80184 91147 0.9970 +80184 91754 0.5990 +80184 92482 0.5850 +80184 93323 0.5350 +80184 95681 0.6080 +80184 112752 0.5180 +80184 115106 0.5380 +80184 117177 0.7490 +80184 117178 0.6190 +80184 123872 0.6160 +80184 124590 0.6150 +80184 129880 0.8480 +80184 132320 0.6020 +80184 134359 0.5670 +80184 145226 0.8080 +80184 146057 0.5880 +80184 152206 0.5250 +80184 153241 0.7730 +80184 157657 0.5610 +80184 163786 0.7150 +80184 166379 0.8070 +80184 167691 0.8250 +80184 200728 0.9050 +80184 200894 0.9050 +80184 203286 0.5000 +80184 221476 0.5180 +80184 261734 0.9760 +80184 282809 0.5700 +80184 283232 0.4800 +80184 284086 0.6960 +80184 285331 0.6100 +80184 343035 0.8060 +80184 346007 0.6080 +80184 347240 0.6840 +80184 374654 0.6940 +80184 375298 0.4540 +80184 392509 0.4470 +80184 401124 0.4050 +80184 728642 0.5490 +80184 100271715 0.4040 +80185 84549 0.4660 +80185 132949 0.5360 +80185 284697 0.4410 +80194 81790 0.4250 +80194 92703 0.4050 +80194 113452 0.4040 +80194 138428 0.4840 +80194 222234 0.4990 +80194 390212 0.4770 +80195 81341 0.5340 +80195 84283 0.4440 +80195 84332 0.4290 +80195 84886 0.4470 +80195 84939 0.6660 +80195 91300 0.5340 +80195 91942 0.4670 +80195 114789 0.4520 +80195 122876 0.5220 +80195 126328 0.4640 +80195 126549 0.4420 +80195 139221 0.6660 +80195 143241 0.4670 +80195 166348 0.4450 +80195 219348 0.6080 +80195 284427 0.4200 +80195 338707 0.4400 +80195 374291 0.6660 +80195 387694 0.4330 +80195 390199 0.5780 +80195 440567 0.6020 +80195 728317 0.6660 +80195 730112 0.4310 +80195 100532726 0.5650 +80196 84455 0.5860 +80196 84747 0.6390 +80196 117584 0.7090 +80196 140459 0.4950 +80196 220972 0.4190 +80196 387496 0.4360 +80198 80233 0.8260 +80198 80820 0.4370 +80198 81620 0.4310 +80198 83990 0.8990 +80198 84057 0.5930 +80198 84072 0.4690 +80198 84083 0.7330 +80198 84126 0.4970 +80198 84250 0.4410 +80198 84464 0.9990 +80198 84619 0.5280 +80198 84893 0.8720 +80198 84901 0.4900 +80198 85365 0.7930 +80198 90678 0.4640 +80198 91442 0.9380 +80198 113510 0.4670 +80198 114790 0.4630 +80198 116028 0.8460 +80198 116447 0.6560 +80198 124817 0.4900 +80198 128710 0.9100 +80198 146956 0.9990 +80198 148479 0.4220 +80198 150280 0.4560 +80198 158401 0.4470 +80198 164045 0.7790 +80198 197342 0.9990 +80198 199990 0.6130 +80198 201254 0.6990 +80198 201973 0.4840 +80198 246243 0.4520 +80198 254528 0.5280 +80198 259282 0.4470 +80198 285498 0.5860 +80198 286053 0.6670 +80198 348180 0.4140 +80198 348654 0.9390 +80198 353497 0.6950 +80198 378708 0.7760 +80198 388649 0.5280 +80198 548593 0.9990 +80198 100533467 0.7270 +80199 112752 0.4440 +80201 83440 0.9180 +80201 84076 0.8340 +80201 92579 0.9450 +80201 93432 0.9160 +80201 130589 0.9120 +80201 132158 0.8340 +80201 132789 0.9160 +80201 197258 0.8040 +80201 283209 0.4090 +80204 84063 0.4200 +80204 84893 0.4090 +80204 84961 0.4990 +80204 85366 0.4660 +80204 90864 0.4090 +80204 123879 0.6020 +80204 126393 0.4200 +80204 144699 0.7720 +80204 197131 0.4540 +80204 200933 0.6540 +80204 222235 0.4480 +80204 254170 0.4970 +80204 256380 0.4560 +80204 283807 0.4220 +80204 359948 0.4130 +80205 84181 0.4920 +80205 85441 0.5820 +80205 85456 0.4590 +80205 96764 0.5810 +80205 114803 0.4060 +80205 116519 0.4460 +80205 376497 0.4300 +80206 91010 0.4760 +80207 84233 0.9320 +80207 84816 0.4740 +80207 84896 0.4730 +80207 84947 0.6000 +80207 87178 0.4010 +80207 91137 0.4560 +80207 91574 0.5880 +80207 92609 0.4320 +80207 124936 0.4150 +80207 130026 0.5040 +80207 131118 0.8810 +80207 148206 0.4940 +80207 256356 0.5370 +80207 353088 0.4600 +80207 493856 0.5950 +80208 80821 0.6170 +80208 91056 0.9800 +80208 91574 0.4520 +80208 93627 0.4110 +80208 113612 0.4780 +80208 118813 0.4510 +80208 123606 0.6430 +80208 137492 0.4940 +80208 157680 0.6350 +80208 200576 0.4150 +80208 203228 0.6230 +80208 285527 0.4660 +80208 391356 0.4080 +80208 400916 0.6240 +80209 161003 0.5890 +80209 164633 0.5310 +80209 285600 0.4470 +80209 341640 0.5120 +80209 387921 0.6830 +80209 728591 0.4750 +80210 84229 0.4670 +80210 93436 0.4200 +80210 95681 0.4170 +80210 127703 0.4420 +80210 166863 0.4750 +80210 196743 0.4010 +80210 374654 0.4030 +80212 80227 0.6080 +80212 83446 0.5050 +80212 89866 0.6150 +80212 91409 0.4410 +80212 92558 0.4130 +80212 121256 0.4600 +80212 144348 0.7980 +80212 196385 0.7940 +80212 202243 0.5260 +80212 203562 0.4790 +80212 205860 0.4320 +80212 257236 0.5560 +80213 83877 0.5710 +80213 83941 0.5810 +80213 84693 0.4500 +80213 123283 0.7170 +80213 374354 0.6320 +80213 389541 0.4350 +80213 390649 0.5990 +80216 92610 0.9340 +80216 115701 0.5700 +80216 257397 0.5040 +80216 392636 0.4060 +80217 81492 0.4900 +80217 83449 0.4440 +80217 83450 0.6110 +80217 83538 0.4230 +80217 83659 0.4410 +80217 83894 0.8260 +80217 84071 0.7230 +80217 84074 0.7940 +80217 84229 0.5810 +80217 85452 0.5410 +80217 85478 0.4990 +80217 89765 0.4440 +80217 89876 0.7740 +80217 90506 0.4120 +80217 92749 0.4130 +80217 93233 0.4770 +80217 118491 0.7880 +80217 122481 0.6040 +80217 123872 0.5410 +80217 126820 0.4420 +80217 128344 0.4860 +80217 133690 0.4190 +80217 136332 0.4630 +80217 139212 0.4250 +80217 140732 0.4790 +80217 144406 0.8070 +80217 144535 0.4590 +80217 146754 0.5990 +80217 146845 0.5920 +80217 150483 0.4640 +80217 154313 0.4310 +80217 159686 0.6910 +80217 162333 0.4390 +80217 168090 0.4080 +80217 196385 0.4340 +80217 199223 0.7410 +80217 201625 0.5110 +80217 219681 0.4020 +80217 220136 0.5720 +80217 255101 0.6240 +80217 283417 0.4420 +80217 283629 0.4760 +80217 283726 0.4050 +80217 286464 0.6990 +80217 339829 0.7470 +80217 345895 0.6280 +80217 374407 0.5750 +80217 401024 0.6860 +80218 84316 0.8810 +80218 84779 0.9880 +80218 92292 0.5820 +80218 92346 0.5360 +80218 112869 0.5400 +80218 114799 0.5140 +80218 116832 0.4910 +80218 120534 0.4440 +80218 122830 0.8760 +80218 134492 0.4640 +80218 140801 0.4290 +80218 151188 0.4360 +80218 157570 0.4880 +80218 221710 0.5660 +80218 254187 0.4610 +80219 84274 0.6530 +80219 85461 0.4520 +80219 90956 0.4840 +80219 112812 0.4200 +80219 203054 0.4680 +80219 285521 0.4140 +80221 80724 0.4890 +80221 83451 0.4040 +80221 84263 0.8160 +80221 84532 0.5260 +80221 84545 0.9330 +80221 84883 0.5500 +80221 112812 0.4490 +80221 113612 0.4010 +80221 114908 0.4390 +80221 115817 0.4040 +80221 116285 0.5460 +80221 123876 0.5540 +80221 125988 0.4940 +80221 128977 0.4160 +80221 132949 0.8160 +80221 153328 0.4110 +80221 219927 0.9390 +80221 283130 0.4110 +80221 284418 0.4390 +80221 285190 0.4390 +80221 285755 0.4390 +80221 341392 0.5340 +80221 343068 0.4080 +80221 343070 0.4080 +80221 348158 0.5600 +80221 389434 0.5090 +80221 390999 0.4080 +80221 391002 0.4080 +80221 400735 0.4080 +80221 400736 0.4080 +80221 440560 0.4080 +80221 440561 0.4080 +80221 441873 0.4080 +80221 644591 0.4390 +80221 645142 0.4390 +80221 645359 0.4080 +80221 653505 0.4390 +80221 653598 0.4390 +80221 653619 0.4080 +80221 727851 0.4390 +80221 728116 0.4470 +80221 728945 0.4390 +80221 729528 0.4080 +80221 729857 0.4390 +80221 730262 0.4390 +80221 100130890 0.7650 +80221 100131187 0.7730 +80221 101929983 0.4080 +80221 105371242 0.4390 +80222 83746 0.6270 +80222 84705 0.6600 +80222 85476 0.6290 +80222 91574 0.4060 +80222 92399 0.6500 +80222 92935 0.8380 +80222 93974 0.4270 +80222 94160 0.4360 +80222 112487 0.4550 +80222 123263 0.4500 +80222 123283 0.9190 +80222 124454 0.8770 +80222 284695 0.4760 +80222 374659 0.6880 +80222 440275 0.6460 +80222 100526842 0.4300 +80223 84440 0.9340 +80223 84513 0.5140 +80223 84957 0.4300 +80223 117584 0.4250 +80223 131177 0.4110 +80223 137362 0.5270 +80223 137994 0.5680 +80224 81689 0.8200 +80224 87178 0.4170 +80224 90624 0.5220 +80224 91942 0.8830 +80224 92399 0.4170 +80224 112487 0.5780 +80224 112812 0.6380 +80224 115677 0.4050 +80224 122961 0.7790 +80224 126328 0.7210 +80224 137682 0.7560 +80224 140775 0.4680 +80224 145482 0.4340 +80224 150274 0.7240 +80224 200205 0.7980 +80224 285605 0.4260 +80224 374291 0.8570 +80224 374986 0.4240 +80224 388962 0.7230 +80224 440275 0.4790 +80224 441024 0.4010 +80224 644096 0.4250 +80224 101929989 0.4550 +80227 84262 0.6500 +80227 84942 0.4440 +80227 126133 0.6560 +80227 130617 0.8340 +80227 134510 0.6480 +80227 255252 0.4640 +80227 389362 0.6330 +80227 414301 0.4100 +80228 84766 0.6200 +80228 84876 0.9940 +80228 91860 0.4200 +80228 93129 0.9980 +80228 163688 0.4200 +80228 196394 0.4180 +80228 283229 0.4120 +80230 115825 0.4620 +80230 116442 0.5750 +80230 117177 0.4510 +80230 339210 0.4890 +80231 84419 0.4090 +80231 121260 0.8850 +80232 80258 0.4220 +80232 83719 0.5600 +80232 83743 0.4880 +80232 84312 0.4540 +80232 84926 0.7690 +80232 145258 0.9540 +80232 197021 0.4300 +80232 219539 0.4690 +80232 252995 0.4230 +80232 285172 0.4070 +80232 338761 0.4540 +80232 339287 0.5170 +80232 388403 0.4810 +80233 83473 0.4130 +80233 83990 0.7290 +80233 84058 0.4280 +80233 84126 0.7050 +80233 84219 0.7700 +80233 84447 0.4470 +80233 84464 0.8460 +80233 84896 0.4040 +80233 91319 0.8020 +80233 91442 0.9990 +80233 92305 0.4640 +80233 116028 0.9960 +80233 146956 0.6610 +80233 166378 0.6740 +80233 197342 0.6230 +80233 199990 0.9990 +80233 201254 0.9990 +80233 221927 0.6410 +80233 353497 0.5600 +80233 378708 0.9990 +80233 548593 0.7200 +80235 84302 0.6690 +80235 84447 0.4030 +80235 84720 0.7210 +80235 84992 0.7160 +80235 93183 0.7800 +80235 94160 0.4380 +80235 116211 0.4760 +80235 128869 0.5720 +80235 200933 0.5030 +80235 254187 0.5630 +80235 255758 0.4950 +80235 255798 0.4700 +80235 282770 0.4310 +80235 283254 0.5040 +80235 284098 0.7330 +80235 348793 0.6710 +80235 390162 0.4690 +80237 80349 0.9000 +80237 84337 0.5750 +80237 84524 0.9180 +80237 85403 0.9920 +80237 123169 0.9080 +80237 619189 0.4500 +80243 116328 0.4170 +80255 80723 0.5340 +80255 84068 0.4850 +80255 84912 0.4110 +80255 85007 0.4280 +80255 89970 0.4180 +80255 91252 0.4280 +80255 114571 0.4510 +80255 149069 0.4080 +80255 340146 0.4270 +80256 83695 0.5050 +80256 139886 0.4380 +80256 285172 0.4290 +80256 286410 0.5260 +80256 100505876 0.5850 +80258 83538 0.6240 +80258 83659 0.8970 +80258 84455 0.4410 +80258 90141 0.4930 +80258 93190 0.8320 +80258 93233 0.5980 +80258 114327 0.8810 +80258 115948 0.5920 +80258 127003 0.8440 +80258 129881 0.8290 +80258 133015 0.6250 +80258 134121 0.8090 +80258 135138 0.9430 +80258 138162 0.8750 +80258 138255 0.8290 +80258 139341 0.4140 +80258 145788 0.8710 +80258 146845 0.8530 +80258 150483 0.8730 +80258 151651 0.9100 +80258 160762 0.4810 +80258 161502 0.9150 +80258 163175 0.4350 +80258 197335 0.8750 +80258 200844 0.5070 +80258 219670 0.9260 +80258 219681 0.4670 +80258 220136 0.8800 +80258 257177 0.8550 +80258 284827 0.4800 +80258 339778 0.8030 +80258 347475 0.5330 +80258 388701 0.8170 +80258 389799 0.8130 +80258 440585 0.8080 +80258 730112 0.8690 +80258 100128569 0.7970 +80262 84085 0.4240 +80262 84930 0.4820 +80262 91409 0.4740 +80262 123720 0.4510 +80262 158763 0.4470 +80262 282890 0.5700 +80262 642636 0.6380 +80263 80755 0.6240 +80263 90933 0.7770 +80263 115653 0.7670 +80263 442862 0.4610 +80264 84167 0.4360 +80264 200407 0.4140 +80264 255308 0.5720 +80264 285672 0.4140 +80267 81567 0.6000 +80267 84447 0.4330 +80267 84955 0.6240 +80267 91319 0.4370 +80267 201595 0.7000 +80270 84545 0.4290 +80270 92196 0.4080 +80270 114987 0.4670 +80270 126402 0.4660 +80270 132949 0.4380 +80270 140032 0.4270 +80270 197258 0.4160 +80270 200916 0.4630 +80270 285855 0.4030 +80270 340390 0.4070 +80270 347475 0.5010 +80270 387129 0.4030 +80270 100505478 0.4030 +80270 100526842 0.4310 +80270 100529239 0.4860 +80271 83648 0.5590 +80271 84812 0.6580 +80271 84876 0.5140 +80271 89869 0.6580 +80271 91860 0.4240 +80271 113026 0.6580 +80271 163688 0.4240 +80271 169200 0.4310 +80271 253430 0.9490 +80271 254827 0.4930 +80271 284325 0.4790 +80273 80331 0.5520 +80273 81570 0.9930 +80273 81689 0.5370 +80273 83752 0.7130 +80273 84076 0.5300 +80273 84140 0.5630 +80273 84277 0.4740 +80273 84886 0.7830 +80273 84955 0.6270 +80273 85365 0.4810 +80273 85476 0.4990 +80273 85479 0.4520 +80273 92399 0.5310 +80273 92609 0.7860 +80273 92856 0.7820 +80273 96459 0.4520 +80273 112812 0.4410 +80273 113444 0.5560 +80273 115209 0.5230 +80273 116835 0.5880 +80273 118461 0.5880 +80273 120526 0.5270 +80273 122961 0.5310 +80273 126393 0.5950 +80273 128308 0.4200 +80273 131118 0.8830 +80273 131474 0.4560 +80273 134266 0.7640 +80273 140432 0.4520 +80273 140823 0.7300 +80273 150274 0.8620 +80273 150353 0.6080 +80273 165721 0.6680 +80273 171425 0.4520 +80273 197257 0.5130 +80273 200205 0.4820 +80273 202052 0.6080 +80273 259217 0.5960 +80273 285126 0.4520 +80273 285282 0.4670 +80273 339416 0.5880 +80273 374407 0.4520 +80273 388633 0.5880 +80273 404636 0.4170 +80273 548645 0.4570 +80273 552891 0.4520 +80273 728489 0.5640 +80273 100287932 0.8140 +80274 222663 0.7580 +80279 135948 0.4450 +80279 201255 0.4330 +80279 402682 0.6000 +80298 81892 0.4040 +80298 84629 0.5330 +80298 84874 0.4150 +80298 92399 0.5370 +80298 130916 0.7840 +80298 219927 0.5160 +80298 387338 0.6200 +80301 80308 0.4200 +80303 94233 0.4230 +80303 165100 0.4210 +80304 84955 0.6320 +80304 92949 0.4240 +80304 129285 0.4230 +80305 81890 0.4140 +80305 83642 0.4250 +80305 84304 0.4510 +80305 84330 0.4120 +80305 91289 0.4360 +80305 120071 0.4070 +80305 129293 0.4870 +80305 146456 0.4160 +80305 284106 0.4290 +80305 389677 0.5100 +80306 81857 0.9990 +80306 83860 0.8080 +80306 84246 0.9990 +80306 84498 0.5010 +80306 85441 0.5010 +80306 90390 0.9990 +80306 112950 0.9990 +80306 116931 0.9070 +80306 121504 0.8000 +80306 126961 0.8000 +80306 129685 0.8270 +80306 133522 0.5400 +80306 254251 0.4890 +80306 256643 0.5400 +80306 333932 0.8000 +80306 400569 0.9990 +80306 404672 0.8150 +80306 554313 0.8000 +80306 653604 0.8130 +80308 80347 0.4810 +80308 81034 0.7740 +80308 81875 0.4850 +80308 92014 0.4070 +80308 93953 0.4270 +80308 112812 0.4490 +80308 113278 0.6680 +80308 283985 0.5000 +80308 414328 0.8090 +80309 84281 0.5140 +80309 117156 0.4310 +80310 84516 0.6730 +80310 84525 0.4310 +80310 259266 0.4130 +80310 375056 0.4920 +80311 81887 0.4750 +80311 84541 0.5240 +80311 84861 0.4150 +80311 90293 0.4780 +80311 113444 0.4060 +80311 131377 0.4270 +80311 149345 0.4580 +80311 221079 0.4040 +80311 339745 0.4150 +80311 344658 0.4290 +80311 388969 0.4200 +80312 84148 0.5370 +80312 84312 0.5960 +80312 84444 0.4050 +80312 84678 0.4680 +80312 91746 0.4420 +80312 115426 0.5410 +80312 132625 0.4390 +80312 200424 0.7790 +80312 252969 0.5230 +80312 359787 0.5060 +80312 387893 0.4140 +80312 440093 0.5730 +80312 440686 0.5700 +80312 653604 0.5700 +80313 93624 0.4170 +80313 115749 0.4470 +80313 147670 0.4370 +80313 150297 0.4160 +80313 152065 0.5090 +80313 197135 0.6000 +80313 219988 0.6000 +80313 282973 0.4430 +80313 284498 0.4210 +80313 339977 0.4100 +80313 342850 0.4190 +80313 387707 0.4220 +80313 493901 0.4470 +80313 646892 0.4180 +80314 81611 0.4410 +80314 84148 0.9580 +80314 84289 0.6930 +80314 84699 0.4220 +80314 85235 0.5130 +80314 90378 0.5160 +80314 92815 0.5140 +80314 139628 0.7940 +80314 148418 0.5160 +80314 151050 0.5620 +80314 164656 0.4310 +80314 221613 0.5130 +80314 221895 0.7610 +80314 255626 0.7380 +80314 283150 0.8340 +80314 284058 0.7650 +80314 317772 0.5230 +80314 339287 0.9100 +80314 345651 0.6750 +80314 440093 0.4270 +80314 440686 0.4250 +80314 653604 0.4250 +80314 728294 0.6590 +80315 80336 0.4050 +80315 132864 0.7670 +80315 167153 0.6820 +80315 257019 0.4600 +80316 128497 0.4080 +80316 255313 0.4180 +80316 494118 0.4160 +80316 653282 0.4400 +80316 728036 0.4400 +80316 728042 0.4400 +80316 728049 0.4330 +80316 728062 0.4400 +80316 728072 0.4350 +80316 728082 0.4400 +80316 728090 0.4400 +80316 728096 0.4330 +80316 728763 0.4570 +80316 100506581 0.4350 +80316 100507170 0.4320 +80317 83890 0.4440 +80317 84071 0.4260 +80317 84307 0.8400 +80317 84547 0.8280 +80317 120935 0.4900 +80317 158399 0.6840 +80317 222696 0.6300 +80317 222698 0.4360 +80317 252884 0.8620 +80317 284349 0.4660 +80317 349075 0.4260 +80317 387032 0.8330 +80317 641339 0.4710 +80318 83538 0.4230 +80318 84267 0.5570 +80318 84645 0.5070 +80318 128229 0.5220 +80318 140625 0.4470 +80318 151254 0.4800 +80319 89780 0.5450 +80319 200424 0.5310 +80319 359787 0.4850 +80320 84231 0.4140 +80320 84315 0.6160 +80320 84327 0.4790 +80320 116985 0.5070 +80320 128178 0.4620 +80320 169026 0.4480 +80320 221895 0.4770 +80320 286827 0.5970 +80320 352909 0.6400 +80320 643418 0.8800 +80320 100288801 0.4750 +80321 80381 0.4180 +80321 83416 0.5260 +80321 84868 0.4470 +80321 93323 0.5030 +80321 115106 0.6640 +80321 117177 0.5260 +80321 124093 0.4410 +80321 140453 0.4910 +80321 159989 0.4960 +80321 160364 0.4780 +80321 405754 0.4950 +80321 728642 0.4990 +80323 84902 0.5710 +80323 85302 0.4990 +80323 90060 0.9760 +80323 129881 0.4040 +80323 132320 0.4840 +80323 145508 0.9620 +80323 147323 0.5470 +80323 201255 0.4620 +80323 254439 0.4680 +80323 339302 0.4720 +80323 375056 0.4320 +80323 729440 0.7200 +80324 81605 0.4670 +80324 81627 0.4390 +80324 81890 0.5960 +80324 81892 0.6640 +80324 83448 0.8130 +80324 83480 0.6660 +80324 84154 0.4150 +80324 84232 0.4890 +80324 84705 0.7360 +80324 84881 0.7820 +80324 85476 0.5840 +80324 87178 0.4790 +80324 90353 0.6800 +80324 91574 0.4510 +80324 92856 0.4610 +80324 93587 0.7210 +80324 113000 0.7470 +80324 113179 0.4640 +80324 115708 0.7090 +80324 117246 0.5660 +80324 123263 0.6710 +80324 124454 0.4860 +80324 134637 0.4860 +80324 142940 0.9450 +80324 146212 0.4030 +80324 150274 0.4430 +80324 150962 0.8150 +80324 152992 0.6020 +80324 158234 0.5640 +80324 196074 0.6100 +80324 201229 0.4160 +80324 221078 0.5320 +80324 285367 0.7660 +80324 387338 0.5980 +80324 100130890 0.4060 +80324 100131187 0.4100 +80325 83719 0.5400 +80325 84270 0.4940 +80325 113622 0.4950 +80325 116092 0.5200 +80325 140458 0.4110 +80325 493829 0.4140 +80325 641649 0.4440 +80325 100507055 0.4480 +80326 81029 0.5480 +80326 89780 0.5510 +80326 128178 0.7350 +80326 147111 0.9300 +80328 80329 0.9110 +80328 114836 0.4730 +80328 135250 0.6880 +80328 259197 0.7850 +80328 353091 0.4170 +80328 374383 0.6810 +80328 100507436 0.8440 +80329 84868 0.4080 +80329 114836 0.4800 +80329 259197 0.8260 +80329 374383 0.6410 +80329 100507436 0.8130 +80331 81570 0.5850 +80331 83938 0.4600 +80331 84316 0.4470 +80331 84896 0.6640 +80331 116835 0.5140 +80331 118461 0.4200 +80331 126259 0.4470 +80331 131118 0.4110 +80331 134218 0.4010 +80331 134266 0.4570 +80331 140679 0.9100 +80331 143425 0.4260 +80331 147650 0.4470 +80331 154881 0.7130 +80331 165545 0.5880 +80331 220074 0.4600 +80331 246213 0.8380 +80331 256471 0.8380 +80331 259217 0.5860 +80331 339416 0.4330 +80331 388633 0.4200 +80332 85480 0.4180 +80332 94103 0.6400 +80332 117156 0.4930 +80332 339366 0.4650 +80332 387129 0.6980 +80333 91860 0.5820 +80333 126638 0.4070 +80333 127933 0.8020 +80333 133015 0.5010 +80333 163688 0.5820 +80333 166647 0.4180 +80333 197335 0.4300 +80333 387804 0.4140 +80333 401145 0.4230 +80335 80349 0.5260 +80335 80854 0.4800 +80335 81608 0.9930 +80335 84295 0.4120 +80335 84332 0.5410 +80335 84444 0.8110 +80335 84524 0.6530 +80335 84661 0.9930 +80335 91272 0.8060 +80335 112869 0.4810 +80335 123169 0.4970 +80335 136157 0.6000 +80335 143241 0.5410 +80335 143506 0.6000 +80335 146845 0.4960 +80335 148252 0.4090 +80335 150572 0.4340 +80335 196120 0.6000 +80335 221895 0.8900 +80335 259282 0.6980 +80335 282809 0.5480 +80335 284434 0.5090 +80335 376940 0.7390 +80335 390031 0.6000 +80335 390033 0.6000 +80335 401551 0.5410 +80335 440093 0.8120 +80335 440686 0.8120 +80335 441584 0.6000 +80335 642843 0.8840 +80335 643988 0.6000 +80335 653604 0.8140 +80336 149986 0.7310 +80336 154197 0.6070 +80336 167153 0.7400 +80336 167227 0.4370 +80336 197135 0.4790 +80336 219988 0.4340 +80336 253314 0.7540 +80336 255967 0.5450 +80336 284131 0.4350 +80336 317649 0.4040 +80336 390748 0.4060 +80336 400961 0.4370 +80339 81616 0.6890 +80339 84513 0.9400 +80339 84649 0.8420 +80339 84706 0.4880 +80339 116255 0.7600 +80339 119548 0.9180 +80339 127018 0.7700 +80339 139189 0.6600 +80339 147798 0.6960 +80339 158833 0.4280 +80339 160851 0.6600 +80339 196051 0.9380 +80339 282617 0.5810 +80339 345275 0.8780 +80339 346606 0.6760 +80339 440503 0.5020 +80341 92747 0.8890 +80341 116519 0.4250 +80341 124220 0.4370 +80341 128859 0.6450 +80341 128861 0.6290 +80341 130106 0.4030 +80341 140683 0.7750 +80341 140732 0.4490 +80341 149951 0.4370 +80341 149954 0.6200 +80341 254773 0.6600 +80341 352999 0.4520 +80341 359710 0.4330 +80341 388795 0.4790 +80341 727897 0.4680 +80342 85369 0.9960 +80342 91662 0.4130 +80342 114836 0.4080 +80342 120425 0.4640 +80342 147138 0.4600 +80342 148304 0.5440 +80342 168537 0.4490 +80342 197358 0.4090 +80342 257106 0.5700 +80342 374403 0.7500 +80342 474344 0.4440 +80343 84447 0.7270 +80343 91319 0.6890 +80343 128218 0.4080 +80343 166378 0.5160 +80343 729431 0.4740 +80343 729442 0.5400 +80344 83695 0.4560 +80344 84259 0.5010 +80344 90379 0.9300 +80344 138009 0.5820 +80344 139170 0.7280 +80344 139425 0.5550 +80344 149951 0.5060 +80344 150678 0.4310 +80344 150684 0.5030 +80344 170622 0.5040 +80344 252969 0.6350 +80344 285429 0.5820 +80344 340578 0.5880 +80344 347442 0.5550 +80345 94120 0.4320 +80345 201799 0.5370 +80345 220416 0.4750 +80345 220929 0.4240 +80345 222698 0.6080 +80345 342945 0.4870 +80345 100526773 0.5070 +80346 84318 0.4830 +80346 91057 0.4830 +80346 162427 0.4010 +80346 221035 0.5400 +80346 283991 0.4130 +80346 284992 0.5280 +80347 84263 0.4190 +80347 84532 0.4120 +80347 84649 0.5660 +80347 84912 0.4450 +80347 85021 0.4040 +80347 90423 0.5660 +80347 90639 0.9070 +80347 113675 0.4100 +80347 116840 0.4960 +80347 126789 0.4560 +80347 163882 0.5730 +80347 201562 0.4640 +80347 254552 0.4530 +80347 283927 0.4370 +80347 341208 0.4330 +80347 376497 0.7190 +80347 728621 0.9050 +80349 83443 0.4740 +80349 84186 0.5540 +80349 84337 0.6020 +80349 84524 0.9010 +80349 84549 0.4940 +80349 84844 0.5130 +80349 85236 0.5700 +80349 85403 0.9080 +80349 115752 0.5660 +80349 116832 0.4420 +80349 118460 0.7470 +80349 121504 0.8000 +80349 123169 0.9990 +80349 126961 0.8090 +80349 140801 0.5040 +80349 164045 0.4020 +80349 165545 0.4150 +80349 255626 0.5700 +80349 283677 0.6940 +80349 317781 0.4540 +80349 333932 0.8090 +80349 440093 0.5000 +80349 440686 0.5000 +80349 554313 0.8000 +80349 653604 0.8960 +80349 100529097 0.4650 +80349 101928601 0.6200 +80351 80851 0.5680 +80351 81847 0.9520 +80351 83666 0.5150 +80351 84138 0.5960 +80351 84875 0.6100 +80351 85456 0.9710 +80351 89780 0.5240 +80351 122706 0.4330 +80351 143471 0.4530 +80351 154796 0.6310 +80351 154810 0.5060 +80351 253012 0.4840 +80351 283149 0.5840 +80351 348110 0.9780 +80351 100526783 0.9480 +80352 126295 0.4490 +80352 138307 0.4010 +80352 143879 0.4090 +80352 346171 0.4860 +80352 414152 0.5780 +80380 80381 0.5560 +80380 84868 0.9250 +80380 126259 0.5810 +80380 131450 0.4290 +80380 140885 0.4390 +80380 149233 0.4490 +80380 151888 0.7490 +80380 169355 0.6160 +80380 201633 0.8590 +80380 284194 0.6860 +80380 284266 0.5750 +80380 285704 0.9740 +80380 374383 0.5560 +80380 405754 0.5870 +80380 654346 0.6850 +80380 102723407 0.5360 +80381 84868 0.7360 +80381 85480 0.4340 +80381 91937 0.5780 +80381 126259 0.5810 +80381 131450 0.6370 +80381 135228 0.5660 +80381 140885 0.4490 +80381 149233 0.4660 +80381 151888 0.7700 +80381 169355 0.5960 +80381 201633 0.6610 +80381 220972 0.4750 +80381 259197 0.4430 +80381 284194 0.4950 +80381 374383 0.7970 +80381 654346 0.4950 +80381 100526664 0.4330 +80700 81858 0.4800 +80700 83473 0.4660 +80700 83606 0.5390 +80700 83932 0.5180 +80700 84447 0.4150 +80700 84923 0.7420 +80700 91544 0.6060 +80700 92552 0.6210 +80700 122769 0.4010 +80700 127733 0.9970 +80700 134111 0.4090 +80700 137886 0.6540 +80700 165324 0.9930 +80700 258010 0.9590 +80704 84076 0.4760 +80704 84879 0.4120 +80704 84952 0.4140 +80704 113235 0.4860 +80704 113278 0.4360 +80704 146802 0.4600 +80704 222962 0.5340 +80704 387787 0.4950 +80704 388662 0.4250 +80705 83449 0.7310 +80705 84071 0.4020 +80705 84221 0.4890 +80705 84528 0.4240 +80705 85459 0.4120 +80705 116840 0.4110 +80705 118491 0.4110 +80705 124912 0.4340 +80705 140732 0.6930 +80705 146849 0.4180 +80705 146852 0.5560 +80705 163786 0.4550 +80705 201134 0.5920 +80705 219938 0.4560 +80709 85459 0.4570 +80709 339145 0.4020 +80712 83893 0.4040 +80712 89884 0.8420 +80712 115004 0.5480 +80712 117144 0.4060 +80712 121643 0.4060 +80712 128674 0.6720 +80712 138724 0.4200 +80712 139135 0.4020 +80712 139604 0.4540 +80712 145942 0.4340 +80712 200232 0.4320 +80712 257169 0.4380 +80712 283461 0.4590 +80712 343035 0.5190 +80712 389549 0.4010 +80712 646962 0.4060 +80714 84722 0.5130 +80714 93343 0.4600 +80714 148113 0.8270 +80714 219409 0.4060 +80714 285267 0.4240 +80714 326625 0.5080 +80714 374887 0.4290 +80723 83597 0.4320 +80723 84866 0.4350 +80723 89894 0.4180 +80723 155006 0.4340 +80723 161291 0.4760 +80723 199964 0.5060 +80724 81616 0.4630 +80724 84245 0.8420 +80724 84263 0.7500 +80724 89894 0.6490 +80724 124359 0.4730 +80724 128602 0.4460 +80724 132949 0.4040 +80724 140856 0.4900 +80724 197322 0.4420 +80724 253175 0.4780 +80724 283450 0.6760 +80724 341392 0.4310 +80724 348158 0.4210 +80724 376497 0.4880 +80724 390081 0.4780 +80724 390648 0.4770 +80724 401265 0.4090 +80724 109703458 0.5860 +80725 84687 0.4250 +80725 84811 0.4670 +80725 91624 0.5370 +80725 143941 0.4220 +80726 84527 0.4040 +80726 85438 0.4440 +80726 138724 0.4090 +80726 140469 0.4060 +80726 140873 0.4800 +80726 145942 0.4360 +80726 256957 0.4600 +80726 257236 0.5390 +80726 282775 0.4180 +80726 282973 0.4700 +80726 388963 0.6480 +80726 645811 0.5950 +80726 647087 0.5720 +80726 728310 0.4940 +80727 84230 0.6270 +80727 116988 0.4410 +80727 168544 0.4250 +80727 284339 0.5310 +80727 375616 0.4710 +80728 81624 0.4170 +80728 84988 0.5910 +80728 90990 0.4560 +80728 113655 0.4660 +80728 144402 0.4060 +80728 154043 0.5020 +80728 225689 0.5540 +80728 286077 0.7250 +80728 414919 0.4340 +80728 441381 0.4150 +80728 445582 0.4380 +80728 474343 0.4650 +80728 727957 0.7240 +80731 114771 0.4530 +80731 152687 0.5820 +80731 219437 0.4210 +80736 122616 0.5940 +80737 80740 0.5760 +80737 80741 0.4920 +80737 81543 0.4890 +80737 81552 0.6130 +80737 84274 0.4490 +80737 89782 0.4730 +80737 89822 0.4620 +80737 92002 0.4910 +80737 131096 0.4310 +80737 165257 0.4520 +80737 220134 0.4370 +80737 253782 0.4020 +80737 256356 0.4730 +80737 259215 0.4770 +80737 286148 0.5280 +80737 401251 0.5700 +80739 80740 0.5870 +80739 259215 0.6380 +80739 340205 0.6440 +80740 80741 0.7960 +80740 81533 0.4390 +80740 137797 0.4470 +80740 147719 0.5060 +80740 160065 0.5070 +80740 171169 0.4820 +80740 259215 0.6690 +80740 284348 0.5390 +80740 390940 0.5710 +80740 399967 0.5410 +80740 399968 0.5070 +80740 653499 0.4750 +80740 100169851 0.5930 +80740 100532724 0.4450 +80740 101928108 0.6030 +80741 137797 0.4180 +80741 147719 0.4760 +80741 160065 0.5150 +80741 171169 0.5050 +80741 259215 0.5790 +80741 284348 0.5290 +80741 390940 0.5770 +80741 399967 0.5480 +80741 399968 0.5190 +80741 100128071 0.4520 +80741 100169851 0.5980 +80741 101928108 0.6100 +80742 135656 0.5380 +80742 378951 0.7440 +80742 101669762 0.7680 +80745 81627 0.5420 +80745 81890 0.4920 +80745 83940 0.4300 +80745 84248 0.5320 +80745 84614 0.4480 +80745 84881 0.4930 +80745 87178 0.5980 +80745 90353 0.4040 +80745 91801 0.4260 +80745 91875 0.4040 +80745 113000 0.4970 +80745 116150 0.6060 +80745 150962 0.4460 +80745 153443 0.4040 +80745 158234 0.4660 +80745 221078 0.4050 +80745 285367 0.4710 +80745 339175 0.4010 +80745 339487 0.4990 +80746 81887 0.4150 +80746 83546 0.4540 +80746 83707 0.5590 +80746 84186 0.4050 +80746 89848 0.4760 +80746 114034 0.4730 +80746 116461 0.9990 +80746 138716 0.5750 +80746 192669 0.5430 +80746 192670 0.5400 +80746 196513 0.4470 +80746 283989 0.9990 +80746 647135 0.4760 +80746 653464 0.4760 +80755 121504 0.4710 +80755 729422 0.4450 +80755 100885848 0.8000 +80757 158056 0.4430 +80757 283643 0.5260 +80757 400720 0.4030 +80757 647286 0.4500 +80757 647310 0.4170 +80758 84851 0.4480 +80758 574414 0.8710 +80759 90576 0.4760 +80759 125997 0.6090 +80759 126206 0.4220 +80759 129868 0.6970 +80759 154288 0.9810 +80759 201516 0.5780 +80759 340168 0.9800 +80759 342900 0.6270 +80759 400736 0.4180 +80759 440560 0.4750 +80759 441161 0.9740 +80759 442247 0.4790 +80759 503582 0.4400 +80759 541578 0.4160 +80759 100288687 0.5700 +80760 392465 0.4680 +80762 83737 0.8980 +80762 94233 0.4730 +80762 133482 0.4400 +80763 84417 0.5750 +80763 85569 0.5730 +80763 127845 0.4150 +80763 347148 0.5830 +80764 84861 0.5340 +80764 85359 0.4460 +80764 90326 0.5070 +80764 91179 0.4370 +80764 128977 0.4310 +80764 140894 0.4350 +80764 145497 0.4420 +80764 146542 0.4170 +80764 150209 0.6650 +80764 375775 0.4150 +80764 400891 0.4550 +80765 90627 0.5210 +80765 134429 0.4100 +80765 134526 0.5190 +80765 145814 0.5270 +80772 83756 0.4190 +80772 84878 0.4820 +80772 147807 0.6310 +80774 143098 0.4350 +80775 84311 0.4360 +80775 116228 0.7750 +80775 285521 0.5420 +80775 388753 0.5840 +80775 100131801 0.5070 +80775 100303755 0.5600 +80776 84314 0.9360 +80776 90324 0.4170 +80776 91147 0.9940 +80776 91754 0.4930 +80776 95681 0.5730 +80776 117177 0.6470 +80776 129880 0.4400 +80776 132884 0.4560 +80776 150737 0.5700 +80776 164395 0.4270 +80776 166379 0.5030 +80776 200728 0.9510 +80776 200894 0.5800 +80776 203286 0.4190 +80776 219854 0.6620 +80776 261734 0.8830 +80776 283232 0.6530 +80776 284086 0.5570 +80776 284339 0.4690 +80776 374654 0.4490 +80776 392509 0.4050 +80776 641649 0.5510 +80777 84263 0.4140 +80777 84769 0.4110 +80777 85315 0.4310 +80777 93380 0.4020 +80777 124936 0.6710 +80777 199974 0.4330 +80777 285440 0.4580 +80777 339761 0.4310 +80777 340665 0.4440 +80777 497661 0.4250 +80777 606495 0.9940 +80777 100861540 0.4370 +80778 84217 0.4580 +80778 284353 0.6060 +80778 727957 0.4980 +80778 101928603 0.5700 +80781 81578 0.4910 +80781 84245 0.4060 +80781 84570 0.4750 +80781 85301 0.6440 +80781 91522 0.8330 +80781 121227 0.4670 +80781 131873 0.4290 +80781 136227 0.6650 +80781 169044 0.4630 +80781 255631 0.5770 +80781 283208 0.4130 +80781 284217 0.7790 +80781 338872 0.5090 +80781 340267 0.4380 +80781 375790 0.5880 +80789 81556 0.9990 +80789 84219 0.6460 +80789 92105 0.9990 +80789 135293 0.4370 +80789 203245 0.9940 +80789 203522 0.9970 +80789 220441 0.4370 +80789 344838 0.4510 +80789 441519 0.6020 +80789 441521 0.6020 +80789 541465 0.6020 +80789 541466 0.6020 +80789 728911 0.6020 +80789 101060211 0.6020 +80789 102723631 0.6020 +80789 102723680 0.6020 +80789 102723737 0.6020 +80790 84572 0.4830 +80790 93986 0.5720 +80790 144348 0.4420 +80790 149069 0.4600 +80790 152518 0.6480 +80790 161582 0.5920 +80790 728597 0.4600 +80816 83992 0.4770 +80816 84108 0.5670 +80816 84146 0.4970 +80816 84333 0.5720 +80816 84733 0.5630 +80816 84759 0.5840 +80816 114803 0.4090 +80816 121536 0.5730 +80816 126374 0.4670 +80816 132625 0.5690 +80816 171023 0.7700 +80816 221937 0.5470 +80816 404281 0.5650 +80816 646498 0.4350 +80817 84083 0.4360 +80817 85459 0.5690 +80817 129607 0.5760 +80817 134359 0.4100 +80817 139596 0.4260 +80817 144245 0.4370 +80817 151531 0.5650 +80817 152185 0.5300 +80817 153241 0.5020 +80817 163786 0.5010 +80817 200895 0.4130 +80817 201255 0.4020 +80817 219844 0.4480 +80817 221908 0.4330 +80817 255520 0.4960 +80817 282809 0.6170 +80817 283643 0.5110 +80817 284439 0.4730 +80817 387103 0.4110 +80817 387640 0.4830 +80818 83852 0.4490 +80818 84101 0.7840 +80818 114548 0.4610 +80818 133482 0.4160 +80818 161725 0.7390 +80818 161882 0.5150 +80818 221302 0.8550 +80818 440093 0.4180 +80818 440686 0.4180 +80818 653604 0.4170 +80820 84172 0.4230 +80820 84337 0.4490 +80820 85456 0.6430 +80820 123169 0.5490 +80820 152573 0.4520 +80820 197342 0.5440 +80820 255220 0.4230 +80821 91574 0.5870 +80821 113612 0.6030 +80821 118813 0.4180 +80821 123606 0.5200 +80821 137492 0.5150 +80821 140460 0.4020 +80821 160335 0.4140 +80821 200879 0.4470 +80821 201164 0.5230 +80821 283554 0.5390 +80823 85458 0.4960 +80824 118426 0.4900 +80824 221830 0.8110 +80829 90850 0.4120 +80829 115992 0.5560 +80829 127933 0.4350 +80829 128876 0.4280 +80829 152485 0.5390 +80829 246175 0.4110 +80829 404734 0.4780 +80830 80832 0.4820 +80830 80833 0.4470 +80830 83666 0.6420 +80830 85363 0.5010 +80830 114880 0.4250 +80830 115361 0.5510 +80830 115362 0.6400 +80830 139135 0.4320 +80830 222659 0.4210 +80831 339778 0.4470 +80832 124872 0.4460 +80832 284433 0.4210 +80832 728734 0.4400 +80833 115361 0.4850 +80834 80835 0.9730 +80834 83756 0.9980 +80834 91749 0.4160 +80834 119395 0.5190 +80834 126006 0.4340 +80834 133060 0.6150 +80834 139760 0.4510 +80834 151651 0.4050 +80834 197335 0.5770 +80834 255022 0.7040 +80834 259285 0.8360 +80834 259286 0.7040 +80834 259287 0.7980 +80834 259289 0.7450 +80834 259290 0.7460 +80834 259292 0.7940 +80834 259293 0.7110 +80834 259294 0.7030 +80834 259295 0.6930 +80834 259296 0.8060 +80834 338398 0.7570 +80834 338557 0.7910 +80834 342372 0.6510 +80834 346562 0.9980 +80834 353164 0.8120 +80835 83756 0.9980 +80835 119395 0.4950 +80835 126006 0.4420 +80835 133060 0.5410 +80835 139760 0.4130 +80835 151651 0.4050 +80835 197335 0.5800 +80835 222545 0.4090 +80835 255022 0.6080 +80835 259285 0.7570 +80835 259286 0.5810 +80835 259287 0.8000 +80835 259289 0.7260 +80835 259290 0.7270 +80835 259292 0.7770 +80835 259293 0.6290 +80835 259294 0.7050 +80835 259295 0.6760 +80835 259296 0.7390 +80835 338398 0.7580 +80835 338557 0.5730 +80835 339403 0.4570 +80835 342372 0.6320 +80835 346562 0.9950 +80835 350383 0.5990 +80835 353164 0.7880 +80851 81847 0.5500 +80851 84687 0.4650 +80851 149643 0.4180 +80851 155061 0.4380 +80851 160857 0.4130 +80851 391114 0.4180 +80852 83714 0.5280 +80852 85378 0.5420 +80852 91608 0.4070 +80852 114791 0.5120 +80852 131669 0.4340 +80852 147687 0.4830 +80852 283160 0.5230 +80852 339541 0.4570 +80852 440145 0.5190 +80852 653784 0.4050 +80853 80854 0.4220 +80853 83942 0.4060 +80853 84159 0.4780 +80853 84255 0.4290 +80853 84444 0.4270 +80853 221037 0.6820 +80853 221656 0.6280 +80853 284058 0.4220 +80853 390245 0.5400 +80853 440093 0.5410 +80853 440686 0.5410 +80853 653604 0.7130 +80854 83732 0.4010 +80854 83852 0.4250 +80854 84193 0.7160 +80854 84444 0.6770 +80854 84661 0.8360 +80854 84678 0.4260 +80854 84787 0.6400 +80854 84942 0.4980 +80854 92002 0.4160 +80854 133383 0.4640 +80854 144233 0.5020 +80854 150572 0.5240 +80854 221656 0.4670 +80854 256356 0.4590 +80854 286148 0.4690 +80854 387893 0.8450 +80854 440093 0.8550 +80854 440686 0.8550 +80854 653604 0.9100 +80856 81533 0.4060 +80856 92840 0.5050 +80856 118987 0.5220 +80856 119764 0.5840 +80856 119765 0.6610 +80856 132204 0.5930 +80856 162427 0.4540 +80856 344191 0.8790 +80856 374395 0.5250 +80863 80864 0.5470 +80863 92840 0.4270 +80863 219738 0.5180 +80863 221527 0.5440 +80863 387890 0.4020 +80864 414152 0.5820 +80895 84944 0.4600 +80895 123263 0.4240 +80895 131408 0.4940 +80895 160760 0.4500 +80895 333926 0.4090 +80895 388323 0.5060 +80896 118471 0.4050 +80896 140838 0.4700 +80896 728116 0.4250 +80975 84626 0.4070 +80975 135112 0.4320 +80975 145942 0.5010 +80975 148738 0.4750 +80975 643965 0.4390 +81025 84694 0.4240 +81025 125111 0.4160 +81025 127534 0.4150 +81025 219770 0.4520 +81025 253714 0.4410 +81025 284307 0.4360 +81025 349149 0.4370 +81025 375519 0.5470 +81025 100126572 0.4810 +81027 83473 0.4390 +81027 83547 0.6500 +81027 83637 0.4950 +81027 84519 0.7840 +81027 84617 0.4130 +81027 84790 0.9630 +81027 89872 0.4310 +81027 91782 0.4990 +81027 92421 0.6300 +81027 112714 0.9630 +81027 113457 0.9630 +81027 128866 0.4990 +81027 135138 0.5170 +81027 136332 0.4590 +81027 150465 0.5230 +81027 151651 0.4140 +81027 197335 0.6260 +81027 200014 0.5320 +81027 221496 0.5450 +81027 260334 0.4070 +81027 338382 0.6500 +81027 340205 0.5390 +81027 347688 0.4100 +81027 347733 0.5270 +81027 374969 0.4650 +81027 375033 0.5440 +81027 414325 0.4360 +81029 84870 0.4510 +81029 85407 0.4310 +81029 89780 0.6960 +81029 147111 0.9280 +81029 346689 0.4530 +81030 84941 0.4260 +81030 91543 0.5100 +81030 114548 0.6190 +81030 115004 0.6110 +81030 147945 0.5110 +81030 170506 0.4600 +81030 197259 0.7200 +81030 340061 0.4100 +81031 81577 0.4520 +81031 84545 0.4110 +81031 91252 0.4340 +81031 113189 0.4380 +81031 144195 0.4320 +81031 155184 0.4130 +81031 387775 0.4330 +81033 90134 0.4370 +81034 92014 0.6570 +81034 94081 0.4700 +81034 113235 0.5300 +81034 113278 0.5920 +81034 115286 0.4190 +81034 115294 0.4340 +81034 147407 0.6320 +81034 160428 0.4020 +81034 401612 0.6040 +81034 441024 0.5730 +81034 100528064 0.4700 +81035 83695 0.4340 +81035 128977 0.4300 +81035 160364 0.4310 +81035 196500 0.6060 +81035 339390 0.4580 +81035 642597 0.4120 +81037 123688 0.6110 +81037 201595 0.4410 +81037 340024 0.4410 +81037 348932 0.6960 +81037 390077 0.4180 +81099 84069 0.4510 +81099 125958 0.5130 +81099 284428 0.4750 +81099 284521 0.4990 +81099 284565 0.4210 +81099 391196 0.5160 +81099 401427 0.5160 +81099 497190 0.4730 +81099 653656 0.6100 +81099 653657 0.5070 +81099 653820 0.4350 +81127 91978 0.5640 +81127 219539 0.4240 +81168 84767 0.4760 +81282 85376 0.4180 +81282 119687 0.7260 +81282 119692 0.7800 +81282 401665 0.7910 +81282 401666 0.4010 +81285 125958 0.5410 +81285 284521 0.5520 +81285 341208 0.4200 +81285 391123 0.4200 +81285 391196 0.4990 +81285 401427 0.5670 +81300 257194 0.4010 +81300 399671 0.4090 +81309 390144 0.4200 +81318 90864 0.4180 +81318 91227 0.4480 +81341 84701 0.5800 +81341 84886 0.5290 +81341 84929 0.4210 +81341 84939 0.6610 +81341 84985 0.4130 +81341 112812 0.4140 +81341 125965 0.6630 +81341 128876 0.4130 +81341 139221 0.6610 +81341 164684 0.4110 +81341 170712 0.4640 +81341 283459 0.5420 +81341 374291 0.6610 +81341 388753 0.5170 +81341 440567 0.8330 +81341 642987 0.4210 +81341 728317 0.6610 +81392 112849 0.4180 +81392 199777 0.4030 +81392 221301 0.4850 +81399 255104 0.5050 +81399 728255 0.4790 +81399 729759 0.9990 +81399 100129515 0.5820 +81399 101928677 0.5810 +81442 337882 0.5300 +81442 643803 0.4800 +81442 101929989 0.6410 +81448 219539 0.4570 +81466 391190 0.7820 +81466 391192 0.7750 +81469 387273 0.6310 +81469 439915 0.5440 +81469 440050 0.6080 +81469 440051 0.6660 +81470 387273 0.5840 +81470 439915 0.4790 +81470 440050 0.5730 +81470 440051 0.5270 +81472 100529063 0.4800 +81488 90390 0.4150 +81488 112950 0.4400 +81488 140459 0.6170 +81488 146223 0.4130 +81488 246721 0.5840 +81488 340527 0.4810 +81488 548644 0.7590 +81488 100820829 0.9330 +81488 128706665 0.5710 +81490 81579 0.6910 +81490 84647 0.6500 +81490 85465 0.9560 +81490 122618 0.9000 +81490 123745 0.6950 +81490 129642 0.9270 +81490 151056 0.6500 +81490 154141 0.9160 +81490 254531 0.9110 +81490 255189 0.6530 +81490 283748 0.6530 +81490 391013 0.6500 +81490 100137049 0.6530 +81491 83873 0.4700 +81491 114792 0.6770 +81491 114815 0.4330 +81491 253714 0.4690 +81491 285601 0.5110 +81492 83450 0.7220 +81492 84223 0.4010 +81492 84229 0.5900 +81492 84946 0.4010 +81492 85478 0.4350 +81492 89765 0.8610 +81492 93233 0.6010 +81492 122481 0.7120 +81492 130888 0.4610 +81492 149499 0.4680 +81492 158787 0.4090 +81492 160762 0.6140 +81492 161753 0.4230 +81492 200162 0.4490 +81492 202500 0.4690 +81492 220136 0.4380 +81492 221421 0.9840 +81492 222967 0.5730 +81492 283383 0.4050 +81492 339829 0.4830 +81492 345895 0.4180 +81492 401551 0.4100 +81494 360023 0.4250 +81494 387715 0.5050 +81501 126014 0.8210 +81501 128506 0.9340 +81501 140885 0.4310 +81501 245972 0.8660 +81502 83464 0.4130 +81502 84236 0.4500 +81502 84447 0.7960 +81502 84888 0.4290 +81502 121665 0.5960 +81502 162494 0.4260 +81502 162540 0.4340 +81502 199953 0.4020 +81502 337867 0.5940 +81502 100101490 0.6130 +81532 84251 0.4240 +81532 116461 0.4540 +81532 134147 0.4370 +81532 285527 0.4740 +81532 387264 0.4770 +81533 140710 0.4420 +81533 160518 0.4720 +81533 374395 0.5240 +81537 83723 0.8980 +81537 91012 0.9470 +81537 123099 0.9350 +81537 124976 0.6000 +81537 125981 0.9360 +81537 130367 0.9150 +81537 166929 0.9420 +81537 204219 0.9450 +81537 253782 0.9510 +81537 259230 0.9470 +81537 339221 0.9240 +81537 340485 0.9360 +81537 388931 0.4330 +81539 120103 0.4400 +81539 124935 0.6040 +81539 153129 0.5620 +81539 206358 0.5090 +81539 340024 0.4770 +81542 81627 0.4400 +81542 84418 0.5740 +81542 121506 0.4850 +81542 130574 0.4050 +81542 155465 0.4520 +81542 204474 0.4570 +81543 84274 0.4270 +81543 89822 0.4370 +81543 92002 0.4620 +81543 114548 0.6900 +81543 114805 0.5130 +81543 131096 0.4090 +81543 165257 0.4620 +81543 256356 0.4510 +81543 286148 0.4930 +81544 84897 0.4220 +81544 113178 0.4530 +81544 140809 0.7190 +81544 149428 0.4080 +81545 85313 0.5870 +81545 90678 0.4380 +81545 92105 0.5500 +81545 115426 0.4160 +81545 125150 0.4270 +81545 157695 0.6160 +81545 254225 0.5500 +81551 93377 0.4540 +81551 122553 0.7000 +81551 126003 0.7580 +81551 140679 0.5470 +81551 150465 0.9110 +81551 219287 0.4420 +81551 347733 0.9180 +81552 85352 0.4080 +81552 116159 0.4450 +81552 131920 0.6170 +81552 152573 0.4250 +81552 160518 0.4680 +81552 222008 0.5290 +81552 346288 0.4950 +81552 401207 0.4780 +81553 85415 0.5390 +81553 138009 0.4180 +81553 151354 0.5590 +81553 196951 0.4960 +81554 84881 0.8740 +81554 85865 0.5940 +81554 89910 0.4570 +81554 140609 0.7300 +81554 201895 0.4470 +81554 282808 0.6470 +81554 285367 0.8080 +81554 285381 0.4120 +81554 653361 0.5860 +81555 81876 0.5670 +81555 90411 0.4650 +81555 90522 0.8940 +81555 92745 0.4320 +81555 92840 0.4690 +81555 112464 0.4220 +81555 133619 0.4790 +81555 197257 0.5130 +81555 286451 0.6300 +81555 375743 0.4240 +81556 92105 0.9530 +81556 112479 0.4840 +81556 123169 0.4980 +81556 203522 0.8600 +81556 403273 0.4480 +81556 441519 0.5670 +81556 441521 0.5670 +81556 541465 0.5670 +81556 541466 0.5950 +81556 728911 0.5670 +81556 101060211 0.5670 +81556 102723631 0.5670 +81556 102723680 0.5670 +81556 102723737 0.5670 +81557 145567 0.4010 +81557 197370 0.4330 +81557 203068 0.5960 +81557 286053 0.4040 +81557 493861 0.6480 +81557 548313 0.5410 +81557 727837 0.5060 +81557 728239 0.9990 +81558 84445 0.5320 +81558 254225 0.5410 +81558 285659 0.4240 +81559 84033 0.4240 +81559 84948 0.4940 +81559 84955 0.6190 +81559 114088 0.4210 +81559 128308 0.4850 +81559 128434 0.4540 +81559 140461 0.4360 +81559 221785 0.4560 +81559 440193 0.4280 +81559 442862 0.5270 +81562 83483 0.4650 +81562 84282 0.4140 +81562 89866 0.5050 +81562 90342 0.4450 +81562 90411 0.8830 +81562 149111 0.5380 +81562 151313 0.4920 +81562 253782 0.4520 +81562 254263 0.5380 +81563 84548 0.4560 +81563 162540 0.4340 +81565 81930 0.6080 +81565 84643 0.6300 +81565 84962 0.4530 +81565 85458 0.8410 +81565 89953 0.5260 +81565 90990 0.5720 +81565 91860 0.4480 +81565 93594 0.5550 +81565 124602 0.6260 +81565 146909 0.5700 +81565 147700 0.4660 +81565 154796 0.4330 +81565 163688 0.4480 +81565 221458 0.5400 +81565 374654 0.5810 +81565 401145 0.7650 +81566 89795 0.4390 +81566 139231 0.5310 +81566 150590 0.4340 +81566 203259 0.4780 +81566 283373 0.4270 +81567 81618 0.4610 +81567 84062 0.8000 +81567 117177 0.4570 +81567 121506 0.5130 +81567 125972 0.5240 +81567 130340 0.4990 +81567 286451 0.5930 +81567 388552 0.8000 +81569 81873 0.4440 +81569 84516 0.6730 +81569 93973 0.4590 +81569 139135 0.5600 +81569 140690 0.4460 +81569 158511 0.4140 +81569 158809 0.4260 +81569 170626 0.6680 +81569 203413 0.5620 +81569 284382 0.5640 +81569 375189 0.4830 +81569 389903 0.4180 +81569 541466 0.5170 +81569 646603 0.4410 +81569 653220 0.4470 +81569 728137 0.5010 +81569 729447 0.5030 +81569 100509620 0.5780 +81569 102723547 0.4320 +81570 83752 0.8430 +81570 84140 0.4700 +81570 84172 0.4310 +81570 84277 0.4100 +81570 84893 0.4570 +81570 85476 0.4380 +81570 85479 0.4890 +81570 87178 0.4430 +81570 91875 0.4240 +81570 96459 0.5220 +81570 113444 0.5780 +81570 115209 0.5990 +81570 116835 0.6790 +81570 117246 0.4790 +81570 118461 0.6800 +81570 120526 0.6470 +81570 126393 0.5810 +81570 134266 0.9100 +81570 140432 0.4890 +81570 150353 0.4890 +81570 165721 0.5130 +81570 171425 0.4980 +81570 196074 0.4240 +81570 202052 0.4890 +81570 259217 0.6790 +81570 285126 0.4890 +81570 285282 0.4960 +81570 285521 0.4260 +81570 339416 0.6800 +81570 374407 0.5230 +81570 374659 0.4410 +81570 388633 0.6790 +81570 548596 0.6230 +81570 548645 0.4890 +81570 552891 0.4890 +81572 84065 0.4100 +81572 116143 0.9950 +81572 120379 0.5980 +81572 120534 0.4530 +81572 140460 0.4430 +81572 150160 0.5400 +81572 261726 0.4460 +81572 337960 0.4200 +81572 110599588 0.9000 +81573 91452 0.4090 +81573 134553 0.4280 +81573 205327 0.4900 +81573 100526740 0.4180 +81575 222553 0.4270 +81576 84245 0.4370 +81576 85476 0.4760 +81576 89885 0.4050 +81576 90864 0.4460 +81576 91433 0.4200 +81576 135152 0.6640 +81576 143884 0.6370 +81576 151613 0.4940 +81576 151903 0.6330 +81576 163154 0.4570 +81576 163859 0.4770 +81576 646457 0.5420 +81576 100534599 0.5400 +81577 84080 0.7600 +81577 84926 0.4350 +81577 112724 0.4340 +81577 114134 0.4540 +81577 131408 0.4630 +81577 142679 0.4210 +81577 147015 0.4150 +81577 150353 0.4170 +81577 154091 0.4320 +81577 349565 0.4450 +81578 84570 0.5950 +81578 85301 0.6230 +81578 89866 0.4660 +81578 91522 0.5740 +81578 114897 0.6160 +81578 131873 0.5060 +81578 136227 0.7270 +81578 140766 0.4290 +81578 149111 0.5440 +81578 169044 0.8490 +81578 202559 0.4090 +81578 255631 0.6430 +81578 283208 0.4200 +81578 340267 0.5680 +81579 85465 0.6980 +81579 113612 0.7390 +81579 122618 0.6870 +81579 133121 0.6500 +81579 151056 0.7230 +81579 254531 0.6500 +81579 255043 0.6520 +81579 284161 0.6710 +81579 284541 0.6560 +81579 375775 0.7240 +81579 387521 0.6560 +81579 387522 0.6550 +81579 391013 0.6170 +81602 81617 0.6660 +81602 81928 0.4120 +81602 83852 0.6470 +81602 84223 0.4460 +81602 115761 0.4860 +81602 129607 0.5760 +81602 139596 0.4140 +81602 151313 0.4310 +81602 151531 0.5420 +81602 155185 0.4030 +81602 157753 0.4270 +81602 220047 0.5830 +81602 284439 0.4120 +81602 374354 0.4440 +81602 387103 0.4070 +81603 114088 0.4580 +81603 135644 0.4910 +81605 83480 0.5610 +81605 90353 0.9990 +81605 91801 0.6020 +81605 93973 0.4140 +81605 112970 0.6840 +81605 285381 0.6520 +81605 348180 0.9520 +81605 387082 0.4010 +81606 254228 0.4180 +81607 81688 0.5490 +81607 114836 0.4460 +81607 126823 0.4670 +81607 147948 0.6470 +81607 201633 0.4570 +81608 81929 0.4560 +81608 84524 0.6660 +81608 84950 0.4570 +81608 91746 0.8050 +81608 124245 0.5840 +81608 129401 0.5240 +81608 136157 0.8020 +81608 143506 0.8020 +81608 151987 0.4160 +81608 152579 0.5370 +81608 196120 0.8020 +81608 348995 0.4430 +81608 376940 0.6740 +81608 390031 0.8020 +81608 390033 0.8020 +81608 441584 0.8020 +81608 642843 0.9780 +81608 643988 0.5870 +81608 100101267 0.4210 +81608 100529063 0.5180 +81609 81873 0.4670 +81609 83891 0.6040 +81609 84079 0.5590 +81609 90268 0.9940 +81609 90416 0.4370 +81609 92799 0.6230 +81609 112936 0.9770 +81609 124997 0.4170 +81609 133482 0.4470 +81609 139411 0.4170 +81609 253260 0.5700 +81609 253725 0.7860 +81609 254122 0.6310 +81609 257364 0.4990 +81609 387680 0.6240 +81609 399979 0.4060 +81609 100287171 0.8060 +81610 81930 0.4460 +81610 83461 0.5920 +81610 83540 0.7390 +81610 84988 0.4420 +81610 113130 0.6290 +81610 122011 0.4840 +81610 144455 0.4450 +81610 146909 0.6050 +81610 147841 0.4120 +81610 150468 0.5440 +81610 157313 0.5870 +81610 220134 0.4880 +81610 221150 0.5250 +81610 259266 0.5990 +81611 83444 0.9000 +81611 83540 0.4600 +81611 84248 0.4370 +81611 93973 0.9000 +81611 94239 0.5970 +81611 125476 0.9220 +81611 255626 0.4240 +81611 283431 0.4370 +81611 283899 0.9010 +81614 84061 0.7340 +81614 84102 0.4640 +81614 93380 0.5450 +81614 114791 0.9970 +81614 123606 0.8010 +81614 140803 0.5290 +81614 152687 0.4160 +81614 254428 0.6090 +81615 84286 0.5070 +81615 84660 0.4470 +81615 130013 0.5710 +81615 100631383 0.4320 +81616 84129 0.5580 +81616 84263 0.5090 +81616 119548 0.6040 +81616 126129 0.7210 +81616 126820 0.4500 +81616 132949 0.5700 +81616 140856 0.4550 +81616 154664 0.4400 +81616 164684 0.5460 +81616 200726 0.4730 +81616 206338 0.4380 +81616 285440 0.4010 +81616 376497 0.4770 +81616 109703458 0.4770 +81617 83852 0.5680 +81617 84216 0.4120 +81617 90678 0.5430 +81617 92335 0.9960 +81617 125336 0.4040 +81617 652991 0.4060 +81618 85442 0.5260 +81618 85449 0.4540 +81618 388135 0.4100 +81619 84332 0.6110 +81619 93185 0.4310 +81619 143241 0.6430 +81619 253260 0.4560 +81619 340348 0.5580 +81619 387694 0.5910 +81619 643155 0.4470 +81620 81669 0.5440 +81620 81930 0.4480 +81620 83461 0.6080 +81620 83540 0.7140 +81620 83743 0.9690 +81620 83879 0.4170 +81620 84057 0.5000 +81620 84126 0.4090 +81620 84250 0.4240 +81620 84296 0.8250 +81620 84515 0.9750 +81620 84823 0.5650 +81620 84930 0.4190 +81620 90381 0.8170 +81620 113130 0.8420 +81620 116028 0.4440 +81620 116211 0.8560 +81620 116447 0.4010 +81620 119504 0.4250 +81620 140739 0.5210 +81620 140767 0.4260 +81620 144455 0.5270 +81620 146909 0.4720 +81620 147841 0.5430 +81620 150468 0.4460 +81620 151648 0.4150 +81620 157313 0.4450 +81620 157777 0.8660 +81620 166979 0.6520 +81620 220134 0.5360 +81620 221150 0.5220 +81620 222229 0.7340 +81620 246184 0.4870 +81620 254394 0.9920 +81620 254427 0.4110 +81620 259266 0.5780 +81620 348654 0.4010 +81620 387103 0.4880 +81620 387893 0.6980 +81620 440093 0.5620 +81620 440686 0.5640 +81620 653604 0.5630 +81621 161291 0.5810 +81622 81793 0.4830 +81622 83985 0.4670 +81622 84804 0.5320 +81622 94239 0.4010 +81622 114609 0.4360 +81622 121260 0.4180 +81622 122618 0.4210 +81622 136306 0.4560 +81622 148022 0.6170 +81622 245812 0.4180 +81622 282618 0.6990 +81622 375189 0.4250 +81623 117285 0.8870 +81623 140596 0.7310 +81623 140850 0.8610 +81623 140881 0.8230 +81623 245908 0.7710 +81623 245909 0.5430 +81623 245910 0.7390 +81623 245911 0.6720 +81623 245913 0.7530 +81623 245927 0.7880 +81623 245928 0.8340 +81623 245929 0.7280 +81623 245930 0.7670 +81623 245932 0.7570 +81623 245934 0.7730 +81623 245936 0.7030 +81623 245937 0.7370 +81623 245938 0.7980 +81623 245939 0.8210 +81623 245940 0.6240 +81623 400830 0.7420 +81623 414325 0.6960 +81623 503614 0.4520 +81623 503618 0.4310 +81623 503841 0.8020 +81623 613209 0.5550 +81623 613210 0.5810 +81623 613211 0.4990 +81623 644414 0.7280 +81623 653423 0.5440 +81623 728358 0.5810 +81623 100133267 0.5960 +81624 81839 0.4470 +81624 81930 0.5010 +81624 83461 0.4260 +81624 83540 0.4590 +81624 84960 0.4200 +81624 85415 0.4730 +81624 90381 0.4170 +81624 91010 0.7370 +81624 91452 0.4330 +81624 92906 0.4080 +81624 114793 0.6120 +81624 114822 0.5360 +81624 115703 0.4050 +81624 122769 0.4230 +81624 128239 0.6010 +81624 143098 0.4300 +81624 144402 0.4160 +81624 144455 0.4340 +81624 147179 0.4880 +81624 150468 0.4560 +81624 151648 0.4490 +81624 157313 0.4550 +81624 157570 0.4120 +81624 200894 0.4510 +81624 220134 0.4560 +81624 221150 0.5280 +81624 259266 0.7660 +81624 284119 0.4050 +81624 345456 0.8150 +81624 375189 0.8470 +81624 399693 0.4020 +81624 445582 0.4540 +81624 494513 0.5520 +81626 84692 0.4640 +81626 85438 0.6550 +81626 127391 0.4980 +81626 130560 0.5440 +81626 132954 0.4840 +81626 140873 0.4470 +81626 145942 0.4990 +81626 146310 0.4230 +81626 153643 0.4020 +81626 158830 0.4450 +81626 160419 0.4550 +81626 160492 0.4270 +81626 200232 0.4370 +81626 259266 0.4080 +81626 339669 0.4250 +81626 399693 0.4570 +81626 494188 0.4550 +81626 644994 0.4250 +81626 728464 0.4410 +81627 83448 0.4450 +81627 83480 0.4630 +81627 83743 0.5730 +81627 84128 0.4320 +81627 84154 0.6530 +81627 84172 0.4120 +81627 84265 0.6750 +81627 84284 0.5900 +81627 84294 0.4340 +81627 84365 0.5620 +81627 84450 0.4610 +81627 84916 0.6060 +81627 84946 0.4860 +81627 92856 0.4030 +81627 93587 0.4380 +81627 115708 0.4160 +81627 117246 0.4090 +81627 131965 0.4360 +81627 142940 0.5420 +81627 152992 0.4510 +81627 154007 0.4220 +81627 171568 0.5950 +81627 221078 0.5020 +81627 285605 0.4160 +81627 339175 0.4460 +81627 387338 0.4060 +81628 89884 0.7300 +81628 133482 0.4890 +81628 150465 0.4200 +81628 153918 0.4180 +81628 221908 0.4050 +81628 222950 0.4680 +81628 340371 0.8260 +81628 402573 0.9260 +81629 83446 0.4110 +81629 84203 0.5250 +81629 115265 0.5960 +81629 130106 0.4850 +81629 136263 0.4170 +81629 170370 0.4450 +81629 317719 0.5740 +81629 100128071 0.4180 +81631 81671 0.4530 +81631 83658 0.4190 +81631 83667 0.6920 +81631 83734 0.8600 +81631 84078 0.5120 +81631 84141 0.4070 +81631 84557 0.8600 +81631 84676 0.5540 +81631 84938 0.9150 +81631 84971 0.8790 +81631 85358 0.4240 +81631 85363 0.6610 +81631 89849 0.5670 +81631 89890 0.6380 +81631 91754 0.5080 +81631 91782 0.4080 +81631 92421 0.5060 +81631 114548 0.4180 +81631 114907 0.6080 +81631 115201 0.9200 +81631 128866 0.5010 +81631 136991 0.4950 +81631 137902 0.7010 +81631 139341 0.9990 +81631 140901 0.4380 +81631 142678 0.5260 +81631 146713 0.4120 +81631 149420 0.4380 +81631 152137 0.4900 +81631 201163 0.4310 +81631 201931 0.4910 +81631 202915 0.4090 +81631 203228 0.5090 +81631 225689 0.6120 +81631 285973 0.5990 +81631 345611 0.6750 +81631 400668 0.4690 +81631 440093 0.4220 +81631 440686 0.4210 +81631 440738 0.5400 +81631 441925 0.6640 +81631 494513 0.7020 +81631 653604 0.4240 +81631 728378 0.4900 +81669 84260 0.7400 +81669 85417 0.7880 +81669 91768 0.5290 +81669 91860 0.5910 +81669 92822 0.4510 +81669 133482 0.5780 +81669 137902 0.5180 +81669 163688 0.5910 +81669 219771 0.6880 +81669 359948 0.4720 +81669 440093 0.7120 +81669 440686 0.7120 +81669 653604 0.7120 +81669 728642 0.9270 +81671 83734 0.6200 +81671 84938 0.5100 +81671 84971 0.4660 +81671 90407 0.4860 +81671 115201 0.5270 +81671 132949 0.4090 +81671 285973 0.5630 +81671 389493 0.4970 +81671 440026 0.8670 +81671 440738 0.4590 +81671 441925 0.9350 +81688 84313 0.4220 +81689 81894 0.4770 +81689 83475 0.5800 +81689 84191 0.4330 +81689 90353 0.4250 +81689 94086 0.4100 +81689 112812 0.8520 +81689 122961 0.9970 +81689 134266 0.4500 +81689 142684 0.6240 +81689 149473 0.5030 +81689 150274 0.8470 +81689 200205 0.9930 +81689 282808 0.6880 +81689 388962 0.8390 +81689 552900 0.5070 +81689 654483 0.5030 +81691 84154 0.4330 +81691 87178 0.4060 +81691 255967 0.5740 +81691 387849 0.4020 +81693 388364 0.4260 +81696 317701 0.4190 +81696 317703 0.4520 +81697 359710 0.4180 +81697 100129583 0.4490 +81697 100631383 0.4790 +81704 84061 0.4180 +81704 84433 0.5080 +81704 84859 0.9290 +81704 84905 0.6140 +81704 85440 0.8820 +81704 146206 0.5950 +81704 147138 0.5710 +81704 170959 0.4100 +81704 201294 0.4040 +81706 84708 0.4280 +81706 126282 0.4440 +81706 135295 0.4040 +81706 254827 0.4640 +81706 389434 0.5910 +81786 131377 0.4700 +81786 221481 0.4590 +81786 100996939 0.4250 +81789 127665 0.4320 +81789 148213 0.4460 +81789 169270 0.5110 +81789 203245 0.4810 +81789 283254 0.4690 +81789 390072 0.4740 +81789 644974 0.4760 +81790 83590 0.7980 +81790 84376 0.4690 +81790 84447 0.4940 +81790 91304 0.4390 +81790 91445 0.5210 +81790 92305 0.5900 +81790 138428 0.4070 +81790 148066 0.5650 +81790 153830 0.4490 +81790 162427 0.4430 +81790 387263 0.5560 +81790 387921 0.4570 +81790 390212 0.4420 +81792 145173 0.5520 +81792 342979 0.4190 +81793 84639 0.4040 +81793 84824 0.5490 +81793 114609 0.6720 +81793 115350 0.4520 +81793 148022 0.6210 +81793 151888 0.5000 +81793 282618 0.4400 +81793 345456 0.7270 +81793 353376 0.6280 +81793 375189 0.7260 +81793 388512 0.4680 +81793 100302736 0.5610 +81794 81926 0.4850 +81794 84897 0.5130 +81794 145173 0.5890 +81796 91298 0.4770 +81796 154214 0.4520 +81796 257044 0.4880 +81797 89870 0.4330 +81797 135644 0.4210 +81797 282890 0.5790 +81797 100507679 0.4110 +81831 254263 0.5110 +81831 112577516 0.4030 +81832 84290 0.5150 +81832 84628 0.5170 +81832 93107 0.4570 +81832 149111 0.4280 +81832 201456 0.5170 +81832 254263 0.5280 +81832 729993 0.4840 +81832 112577516 0.6220 +81833 83639 0.4620 +81833 83893 0.6880 +81833 83983 0.5160 +81833 84519 0.5370 +81833 84660 0.6240 +81833 89765 0.4710 +81833 93661 0.5120 +81833 113177 0.4630 +81833 115286 0.4760 +81833 122258 0.4040 +81833 122664 0.5350 +81833 124626 0.4170 +81833 124912 0.7060 +81833 132228 0.5400 +81833 136242 0.4320 +81833 136263 0.7140 +81833 136332 0.4810 +81833 140732 0.4310 +81833 146849 0.4290 +81833 147650 0.4680 +81833 147719 0.4450 +81833 147744 0.5240 +81833 147746 0.4350 +81833 150483 0.5050 +81833 171169 0.5710 +81833 246777 0.6640 +81833 256710 0.4350 +81833 259308 0.4010 +81833 283417 0.7660 +81833 283629 0.5770 +81833 284359 0.7940 +81833 284680 0.6660 +81833 338949 0.4880 +81833 339168 0.4190 +81833 402573 0.4370 +81833 100131137 0.5240 +81833 107983988 0.4160 +81839 84078 0.4680 +81839 89780 0.4110 +81839 91010 0.4410 +81839 128239 0.4370 +81839 143098 0.4860 +81839 144165 0.9920 +81839 157769 0.4050 +81839 166336 0.9940 +81839 171177 0.6990 +81839 200894 0.5160 +81839 260425 0.5730 +81839 284119 0.4140 +81839 445582 0.4080 +81844 84767 0.4780 +81844 84851 0.4670 +81844 85363 0.6100 +81844 85364 0.5790 +81844 89122 0.4430 +81844 90933 0.6520 +81844 91445 0.5380 +81844 115004 0.7040 +81844 117854 0.4910 +81844 135644 0.4770 +81844 135892 0.4750 +81844 140691 0.5240 +81844 148022 0.4980 +81844 197358 0.4620 +81844 285782 0.4470 +81844 340061 0.9040 +81844 375593 0.4690 +81844 378108 0.5310 +81844 442862 0.4460 +81844 445372 0.4860 +81844 493829 0.4100 +81846 90678 0.5550 +81846 121512 0.7860 +81846 200576 0.4480 +81846 283383 0.7190 +81846 389421 0.6490 +81847 84875 0.5600 +81847 113878 0.4160 +81847 122706 0.4060 +81847 131870 0.4930 +81847 143471 0.4060 +81847 154796 0.6160 +81847 154810 0.4310 +81847 200558 0.5990 +81847 221443 0.4130 +81847 352999 0.4100 +81848 128674 0.5210 +81848 161742 0.5500 +81848 200734 0.7090 +81848 389549 0.4470 +81849 89790 0.4180 +81849 147948 0.4180 +81849 151790 0.4250 +81849 389941 0.4080 +81849 431707 0.4330 +81849 692094 0.4170 +81849 100049587 0.4110 +81850 81851 0.8610 +81850 81870 0.8030 +81850 81872 0.8350 +81850 83755 0.6010 +81850 83895 0.7720 +81850 83896 0.7620 +81850 83897 0.8060 +81850 83900 0.8020 +81850 83901 0.7300 +81850 83902 0.5170 +81850 84616 0.6260 +81850 85280 0.6460 +81850 85285 0.5750 +81850 85289 0.5920 +81850 85290 0.7900 +81850 85291 0.7520 +81850 112802 0.4070 +81850 140258 0.4510 +81850 147409 0.4610 +81850 254950 0.4270 +81850 337878 0.6140 +81850 337879 0.6580 +81850 337880 0.7300 +81850 337882 0.5310 +81850 337960 0.4550 +81850 337966 0.5120 +81850 337967 0.4740 +81850 337970 0.4870 +81850 337979 0.5060 +81850 387267 0.4050 +81850 388818 0.4090 +81850 643803 0.5150 +81850 643812 0.4590 +81850 653240 0.4740 +81850 728224 0.5460 +81850 728255 0.4320 +81850 728279 0.4070 +81850 100132476 0.8130 +81851 81870 0.7740 +81851 81872 0.7520 +81851 83755 0.5330 +81851 83895 0.8650 +81851 83896 0.8730 +81851 83897 0.8320 +81851 83900 0.6800 +81851 83901 0.8020 +81851 83902 0.5730 +81851 84616 0.5280 +81851 85280 0.6690 +81851 85285 0.5340 +81851 85289 0.6010 +81851 85290 0.6740 +81851 85291 0.7760 +81851 85293 0.4300 +81851 85294 0.4410 +81851 112802 0.5640 +81851 140258 0.5740 +81851 147183 0.4680 +81851 254950 0.4650 +81851 337878 0.7170 +81851 337879 0.7030 +81851 337880 0.7700 +81851 337882 0.4110 +81851 337959 0.5570 +81851 337960 0.5530 +81851 337966 0.6360 +81851 337967 0.5810 +81851 337968 0.6050 +81851 337970 0.4360 +81851 337975 0.4320 +81851 337976 0.4180 +81851 337979 0.5060 +81851 342574 0.5300 +81851 386676 0.4820 +81851 386678 0.5630 +81851 386681 0.4030 +81851 387267 0.6210 +81851 388818 0.5060 +81851 643803 0.6220 +81851 728224 0.6250 +81851 728255 0.4120 +81851 728279 0.4910 +81851 730755 0.5540 +81851 100131902 0.4230 +81851 100132476 0.7980 +81851 100170229 0.4350 +81851 112441428 0.5070 +81853 89839 0.6090 +81853 148198 0.4710 +81853 150472 0.4550 +81853 342527 0.4380 +81853 388610 0.4730 +81853 388677 0.5200 +81853 100996763 0.4890 +81856 84072 0.4270 +81856 91775 0.4590 +81856 138881 0.4450 +81856 171392 0.4860 +81856 222967 0.4020 +81856 283162 0.4320 +81856 338675 0.4750 +81856 388558 0.4020 +81856 403273 0.4180 +81856 554251 0.4110 +81856 653404 0.4790 +81857 83860 0.8000 +81857 84246 0.9960 +81857 84498 0.5120 +81857 85441 0.5320 +81857 90390 0.9880 +81857 112950 0.9760 +81857 116931 0.6140 +81857 121504 0.8040 +81857 124245 0.4440 +81857 126961 0.8070 +81857 129685 0.8010 +81857 133522 0.5400 +81857 256643 0.5400 +81857 333932 0.8070 +81857 400569 0.9840 +81857 404672 0.8120 +81857 554313 0.8040 +81857 653604 0.8120 +81858 83660 0.4700 +81858 84232 0.7880 +81858 85358 0.6600 +81858 90268 0.9770 +81858 124044 0.9250 +81858 149603 0.4150 +81858 197259 0.4370 +81858 220213 0.4720 +81858 221302 0.4730 +81858 257397 0.7070 +81870 81872 0.7720 +81870 83755 0.4980 +81870 83895 0.5340 +81870 83896 0.5660 +81870 83897 0.7970 +81870 83899 0.4820 +81870 83900 0.8610 +81870 83901 0.8510 +81870 83902 0.4680 +81870 84616 0.6660 +81870 85280 0.7890 +81870 85285 0.6520 +81870 85289 0.5700 +81870 85290 0.7890 +81870 85291 0.6510 +81870 90736 0.5060 +81870 112487 0.4750 +81870 337878 0.4110 +81870 337880 0.4480 +81870 337882 0.4080 +81870 337970 0.4080 +81870 386675 0.4150 +81870 386680 0.4170 +81870 388468 0.5330 +81870 400506 0.4770 +81870 400986 0.4180 +81870 439915 0.4470 +81870 440051 0.4470 +81870 641455 0.5080 +81870 643664 0.5710 +81870 653240 0.4790 +81870 653489 0.4840 +81870 728224 0.6810 +81870 728318 0.4270 +81870 100132476 0.8140 +81870 100505724 0.4710 +81870 112267897 0.6210 +81871 83896 0.5230 +81871 83902 0.5270 +81871 84616 0.6190 +81871 85285 0.4920 +81871 85289 0.7460 +81871 85290 0.5480 +81871 85291 0.5880 +81871 85293 0.4830 +81871 90736 0.4750 +81871 114824 0.4180 +81871 340204 0.5070 +81871 353323 0.4720 +81871 403244 0.4790 +81871 442247 0.4800 +81871 653240 0.4330 +81871 728224 0.4310 +81871 100132386 0.4320 +81871 100132476 0.5130 +81871 100288801 0.4460 +81871 102723631 0.4370 +81872 83755 0.7750 +81872 83895 0.6210 +81872 83896 0.8650 +81872 83897 0.8040 +81872 83900 0.7710 +81872 83901 0.7700 +81872 83902 0.5370 +81872 84616 0.7240 +81872 85280 0.6450 +81872 85285 0.8200 +81872 85289 0.7710 +81872 85290 0.7960 +81872 85291 0.7740 +81872 85294 0.4290 +81872 112802 0.4340 +81872 163778 0.5160 +81872 254225 0.4230 +81872 254950 0.4730 +81872 267012 0.4010 +81872 337878 0.5360 +81872 337879 0.6810 +81872 337880 0.8680 +81872 337882 0.4780 +81872 337960 0.6310 +81872 337970 0.6160 +81872 643803 0.6160 +81872 653240 0.7710 +81872 728224 0.7770 +81872 728255 0.5620 +81872 728279 0.4260 +81872 730755 0.4160 +81872 100132476 0.7780 +81872 100271715 0.5450 +81873 90507 0.6890 +81873 151306 0.8260 +81873 345651 0.4120 +81873 653857 0.7730 +81873 100526693 0.7490 +81875 81887 0.4820 +81875 84294 0.4840 +81875 87178 0.4640 +81875 90459 0.4330 +81875 92856 0.4040 +81875 116832 0.4070 +81875 117246 0.4980 +81875 140801 0.4140 +81875 200916 0.4240 +81875 255374 0.4250 +81875 255967 0.5740 +81875 376940 0.4020 +81876 83452 0.4730 +81876 83548 0.6200 +81876 84364 0.6200 +81876 84932 0.4840 +81876 89866 0.5740 +81876 90522 0.5390 +81876 91949 0.4230 +81876 112724 0.5550 +81876 112812 0.4280 +81876 113829 0.4440 +81876 117177 0.4290 +81876 120892 0.5780 +81876 122553 0.8040 +81876 126003 0.9260 +81876 126549 0.4190 +81876 128637 0.9970 +81876 150946 0.4440 +81876 167691 0.4450 +81876 285525 0.4700 +81876 376267 0.4760 +81876 100128327 0.7330 +81887 84128 0.6390 +81887 84135 0.5550 +81887 84148 0.9020 +81887 84154 0.4470 +81887 84172 0.4050 +81887 84549 0.7390 +81887 84661 0.5580 +81887 84916 0.6280 +81887 87178 0.4100 +81887 88745 0.5660 +81887 90121 0.4240 +81887 90441 0.5760 +81887 90459 0.4160 +81887 92856 0.8000 +81887 115752 0.4130 +81887 116832 0.4990 +81887 117246 0.7040 +81887 118460 0.5030 +81887 120892 0.5100 +81887 124944 0.9000 +81887 125476 0.9000 +81887 126321 0.4030 +81887 129563 0.4310 +81887 140801 0.5030 +81887 149628 0.4120 +81887 200916 0.5070 +81887 256364 0.4060 +81887 283989 0.4240 +81887 284058 0.9000 +81887 474382 0.4310 +81887 100529209 0.5400 +81888 83475 0.4900 +81888 83707 0.4200 +81888 132158 0.6330 +81888 165631 0.4060 +81889 83451 0.4020 +81889 87178 0.7210 +81889 146310 0.4410 +81889 283870 0.5090 +81889 653689 0.4070 +81890 83480 0.5250 +81890 84267 0.4250 +81890 84304 0.4290 +81890 84705 0.5870 +81890 90353 0.4910 +81890 91801 0.4400 +81890 93587 0.5330 +81890 113179 0.5370 +81890 134637 0.4360 +81890 142940 0.6510 +81890 221078 0.4910 +81890 387338 0.4040 +81890 102157402 0.5360 +81892 83480 0.5190 +81892 84273 0.4260 +81892 84300 0.4040 +81892 84316 0.4490 +81892 84437 0.4100 +81892 84833 0.4540 +81892 84881 0.4040 +81892 84987 0.4570 +81892 87178 0.6680 +81892 92170 0.4430 +81892 92259 0.4500 +81892 92399 0.4550 +81892 93974 0.4270 +81892 115416 0.5350 +81892 130916 0.5170 +81892 140823 0.4250 +81892 201626 0.7010 +81892 219402 0.5520 +81892 219927 0.5710 +81892 387338 0.4990 +81892 440957 0.4120 +81892 100131801 0.4420 +81894 122961 0.4240 +81894 154091 0.4380 +81894 164656 0.4420 +81894 200205 0.4680 +81894 284339 0.4720 +81926 83451 0.4780 +81926 84287 0.5220 +81926 84836 0.4580 +81926 84945 0.4700 +81926 89978 0.4440 +81926 116236 0.4680 +81926 127018 0.5840 +81926 140701 0.5120 +81926 158866 0.4440 +81926 253832 0.4220 +81926 254359 0.4650 +81926 255758 0.5490 +81926 340481 0.4070 +81928 84922 0.4650 +81928 140893 0.6430 +81928 149986 0.4410 +81929 83667 0.9660 +81929 84219 0.9990 +81929 84248 0.4290 +81929 84271 0.5300 +81929 84321 0.4090 +81929 84324 0.4360 +81929 84928 0.4980 +81929 84955 0.6720 +81929 90423 0.4990 +81929 91754 0.4230 +81929 127124 0.4990 +81929 129401 0.9940 +81929 133482 0.4420 +81929 137362 0.4400 +81929 140609 0.4110 +81929 140735 0.4580 +81929 143686 0.4150 +81929 144577 0.8200 +81929 153129 0.4950 +81929 154743 0.4160 +81929 155066 0.4990 +81929 201163 0.4900 +81929 245972 0.5070 +81929 245973 0.4990 +81929 348995 0.9990 +81929 389170 0.4730 +81929 389541 0.7400 +81929 652968 0.9700 +81929 728343 0.6410 +81929 729438 0.7650 +81929 729857 0.5360 +81929 100101267 0.8990 +81930 83461 0.5180 +81930 83540 0.9460 +81930 83903 0.4440 +81930 83990 0.4240 +81930 84057 0.5850 +81930 84364 0.4990 +81930 84516 0.5330 +81930 84643 0.8740 +81930 84823 0.4510 +81930 84930 0.5390 +81930 89953 0.5950 +81930 90417 0.5760 +81930 90990 0.7840 +81930 91687 0.4360 +81930 93661 0.5100 +81930 113130 0.5900 +81930 117286 0.8250 +81930 124565 0.4130 +81930 124602 0.7820 +81930 144132 0.5000 +81930 144455 0.4300 +81930 146754 0.4270 +81930 146909 0.7680 +81930 147700 0.6740 +81930 147841 0.4140 +81930 150350 0.4580 +81930 150468 0.7820 +81930 151246 0.7090 +81930 151648 0.8620 +81930 157313 0.6580 +81930 157570 0.7390 +81930 196385 0.4270 +81930 220042 0.4010 +81930 220134 0.8480 +81930 221150 0.7110 +81930 221458 0.5760 +81930 259266 0.8650 +81930 285643 0.5980 +81930 286826 0.4230 +81930 343990 0.4160 +81930 347733 0.9390 +81930 374654 0.6040 +81930 387103 0.4760 +81930 401541 0.4930 +81931 90649 0.4080 +81931 341799 0.4480 +81932 83594 0.5050 +81932 143282 0.4690 +81932 341276 0.4160 +81932 399814 0.5050 +81932 729092 0.4750 +83259 86614 0.5710 +83259 90316 0.4580 +83259 90655 0.7030 +83259 90665 0.9240 +83259 140032 0.4530 +83259 140886 0.4450 +83259 353513 0.5070 +83259 442862 0.4740 +83259 442867 0.4460 +83259 442868 0.4460 +83394 84839 0.8140 +83394 92211 0.7270 +83394 93589 0.4270 +83394 157657 0.5190 +83394 169522 0.4390 +83394 254173 0.4020 +83394 282809 0.4160 +83394 375298 0.4240 +83401 84649 0.6880 +83401 126129 0.5470 +83401 133060 0.5730 +83401 148811 0.5670 +83401 158833 0.8550 +83401 219623 0.5970 +83401 257000 0.5380 +83416 83417 0.4780 +83416 84824 0.6100 +83416 84830 0.4060 +83416 89790 0.4490 +83416 91319 0.6010 +83416 115350 0.5680 +83416 115352 0.4280 +83416 115650 0.4530 +83416 147710 0.4690 +83416 151888 0.5610 +83416 199786 0.4870 +83416 221481 0.4210 +83417 115350 0.5830 +83417 115650 0.4040 +83417 143662 0.6320 +83417 102723407 0.4340 +83439 85236 0.4990 +83439 89780 0.4750 +83439 89797 0.6850 +83439 90780 0.5870 +83439 94239 0.4990 +83439 123169 0.5450 +83439 128312 0.4990 +83439 255626 0.4990 +83439 283149 0.6420 +83439 474382 0.4990 +83439 653604 0.5620 +83440 84076 0.8060 +83440 85021 0.7670 +83440 92579 0.9120 +83440 126298 0.4700 +83440 130589 0.9100 +83440 132158 0.8470 +83440 283209 0.4770 +83440 338949 0.4070 +83442 91860 0.4200 +83442 93627 0.4290 +83442 140739 0.4030 +83442 163688 0.4200 +83443 83475 0.4020 +83443 83938 0.5090 +83443 84060 0.8000 +83443 84316 0.7390 +83443 84661 0.4030 +83443 84811 0.9950 +83443 84844 0.9990 +83443 84946 0.4200 +83443 84950 0.9790 +83443 84967 0.8050 +83443 84991 0.5380 +83443 85313 0.5790 +83443 85437 0.7470 +83443 90324 0.8960 +83443 93624 0.8950 +83443 112869 0.9630 +83443 117143 0.9570 +83443 126259 0.6160 +83443 127002 0.4450 +83443 139804 0.6020 +83443 147650 0.6160 +83443 151987 0.6160 +83443 153339 0.4030 +83443 153527 0.9900 +83443 154007 0.8340 +83443 164045 0.5570 +83443 164781 0.4150 +83443 220074 0.5090 +83443 220988 0.4430 +83443 222183 0.4700 +83443 246721 0.4710 +83443 284325 0.5600 +83443 348793 0.4160 +83443 389203 0.4290 +83443 548644 0.4710 +83443 100134938 0.4190 +83443 100534599 0.8320 +83443 100996928 0.4190 +83443 107983993 0.4190 +83444 84058 0.4770 +83444 84865 0.4750 +83444 84922 0.4100 +83444 93973 0.9860 +83444 121053 0.4320 +83444 121504 0.8190 +83444 123169 0.5250 +83444 125476 0.9970 +83444 130951 0.4160 +83444 165545 0.4680 +83444 283899 0.9950 +83444 554313 0.8190 +83444 729440 0.4570 +83444 100885850 0.4130 +83446 89885 0.5570 +83446 91409 0.5690 +83446 92558 0.4050 +83446 146849 0.4670 +83446 147409 0.4480 +83446 166336 0.5120 +83446 200844 0.5370 +83446 202243 0.5370 +83446 257236 0.5530 +83446 389610 0.5070 +83446 440138 0.5370 +83447 84134 0.5850 +83447 84944 0.5810 +83447 114908 0.4390 +83447 117159 0.5400 +83447 123207 0.4870 +83447 144100 0.7280 +83447 256471 0.4750 +83447 340348 0.7200 +83447 349667 0.4130 +83447 401612 0.4030 +83448 83480 0.8580 +83448 84128 0.5880 +83448 84154 0.6050 +83448 84172 0.4400 +83448 84216 0.4290 +83448 84273 0.4710 +83448 84365 0.4580 +83448 84545 0.7960 +83448 84549 0.4270 +83448 84705 0.7970 +83448 84881 0.8630 +83448 84916 0.6340 +83448 84936 0.5040 +83448 85437 0.4370 +83448 85865 0.4680 +83448 90353 0.4290 +83448 92170 0.8060 +83448 92856 0.4750 +83448 113000 0.8870 +83448 115416 0.7880 +83448 117246 0.4750 +83448 126789 0.7620 +83448 142940 0.8190 +83448 147657 0.4600 +83448 150962 0.8140 +83448 219927 0.7980 +83448 221078 0.5060 +83448 257218 0.4640 +83448 283234 0.4380 +83448 283578 0.4110 +83448 285367 0.8720 +83448 387338 0.4920 +83448 402117 0.4250 +83449 83894 0.4710 +83449 84221 0.5800 +83449 132851 0.4570 +83449 140732 0.8040 +83449 153396 0.4240 +83449 159686 0.4150 +83449 199223 0.4490 +83449 201134 0.6230 +83449 255520 0.5380 +83449 374407 0.4780 +83449 374946 0.4440 +83449 401024 0.4250 +83449 100527963 0.6210 +83450 84223 0.6680 +83450 84229 0.7110 +83450 85478 0.7270 +83450 91647 0.4340 +83450 92749 0.7070 +83450 93233 0.7120 +83450 115399 0.4620 +83450 118491 0.4850 +83450 122481 0.6640 +83450 130888 0.6130 +83450 138162 0.4400 +83450 146845 0.4180 +83450 160762 0.6770 +83450 164781 0.4050 +83450 200373 0.4970 +83450 201625 0.5110 +83450 202500 0.7210 +83450 221421 0.5640 +83450 222235 0.7160 +83450 256302 0.5140 +83450 339829 0.4330 +83450 345895 0.7450 +83451 84277 0.4300 +83451 84696 0.6070 +83451 84836 0.4100 +83451 84945 0.5480 +83451 116236 0.4740 +83451 132949 0.4170 +83451 135886 0.4050 +83451 140701 0.5300 +83451 145447 0.5040 +83451 155368 0.4960 +83451 158584 0.4190 +83451 171586 0.5820 +83451 221830 0.4070 +83451 285148 0.5510 +83452 83548 0.7490 +83452 89849 0.9490 +83452 91949 0.5570 +83452 93487 0.5660 +83452 112812 0.4250 +83452 116442 0.4910 +83452 122553 0.4780 +83452 125150 0.4860 +83452 126003 0.5420 +83452 128637 0.4960 +83452 167691 0.4540 +83452 404636 0.4680 +83452 100128327 0.4450 +83460 93380 0.9990 +83460 116541 0.4030 +83460 128308 0.6020 +83460 219348 0.4260 +83460 284361 0.9980 +83460 100527943 0.4230 +83461 83540 0.8440 +83461 83879 0.6190 +83461 84057 0.4560 +83461 84722 0.5000 +83461 90381 0.4690 +83461 90417 0.7550 +83461 113130 0.8940 +83461 124602 0.4280 +83461 144455 0.4470 +83461 146909 0.7640 +83461 147841 0.8250 +83461 150468 0.8000 +83461 151648 0.7170 +83461 152098 0.4180 +83461 157313 0.9100 +83461 157570 0.5320 +83461 166979 0.8700 +83461 220134 0.7720 +83461 221150 0.5860 +83461 259266 0.8640 +83461 283431 0.4720 +83461 387103 0.7010 +83463 84312 0.5120 +83463 122046 0.4960 +83464 92737 0.4850 +83464 113878 0.4650 +83464 147700 0.4050 +83464 169166 0.4030 +83468 84627 0.4390 +83468 114882 0.4360 +83468 154807 0.4300 +83468 286256 0.4600 +83468 387758 0.5340 +83473 84064 0.5320 +83473 84263 0.4320 +83473 84570 0.4260 +83473 84617 0.4630 +83473 84790 0.4130 +83473 84954 0.5550 +83473 84993 0.4750 +83473 85358 0.4390 +83473 85369 0.6060 +83473 85459 0.4040 +83473 89872 0.4780 +83473 90806 0.4810 +83473 93550 0.4930 +83473 112714 0.4010 +83473 113457 0.4010 +83473 114803 0.6860 +83473 122706 0.5600 +83473 125336 0.4570 +83473 128387 0.5530 +83473 130576 0.4880 +83473 131149 0.4720 +83473 133584 0.4350 +83473 134510 0.5790 +83473 143471 0.5600 +83473 143630 0.4810 +83473 149840 0.4140 +83473 164153 0.4560 +83473 202151 0.4530 +83473 203068 0.4560 +83473 222389 0.4890 +83473 259266 0.5100 +83473 286187 0.5550 +83473 339745 0.4530 +83473 347688 0.4500 +83473 100509620 0.4780 +83473 100652824 0.8210 +83475 83743 0.7360 +83475 84154 0.6220 +83475 84549 0.4530 +83475 84946 0.4730 +83475 113451 0.5170 +83475 115708 0.5650 +83475 122481 0.4520 +83475 122622 0.8030 +83475 122961 0.5800 +83475 133482 0.4410 +83475 143244 0.8700 +83475 146212 0.4500 +83475 158067 0.4520 +83475 196743 0.4970 +83475 221264 0.4520 +83475 348180 0.7650 +83478 163782 0.4180 +83479 84154 0.4410 +83479 84365 0.4220 +83479 84549 0.4140 +83479 87178 0.4900 +83479 90957 0.4140 +83479 93973 0.4320 +83479 117246 0.5040 +83479 132320 0.4730 +83479 221322 0.5740 +83479 283899 0.5010 +83479 285855 0.4070 +83479 387129 0.4070 +83479 645191 0.4050 +83479 100190949 0.4480 +83480 84128 0.4180 +83480 84154 0.6510 +83480 84365 0.5410 +83480 84705 0.4570 +83480 84881 0.8400 +83480 84946 0.4350 +83480 90121 0.4200 +83480 90353 0.6160 +83480 92856 0.6250 +83480 93587 0.7490 +83480 113000 0.7830 +83480 113179 0.6290 +83480 115708 0.4760 +83480 117246 0.6140 +83480 131965 0.4650 +83480 134637 0.4750 +83480 142940 0.9130 +83480 150962 0.7840 +83480 152992 0.5170 +83480 158234 0.5790 +83480 196074 0.6020 +83480 221078 0.6510 +83480 285367 0.7630 +83480 339175 0.4890 +83480 387338 0.5500 +83480 100130890 0.4060 +83480 100131187 0.4060 +83480 102157402 0.4690 +83481 84955 0.6240 +83481 113146 0.4220 +83481 144568 0.5740 +83481 100529097 0.4110 +83482 140679 0.5200 +83482 195814 0.4100 +83482 203054 0.4040 +83482 642968 0.4020 +83483 90952 0.4180 +83483 114885 0.4940 +83483 161198 0.4010 +83483 221395 0.4010 +83483 284312 0.7280 +83538 83659 0.7590 +83538 84229 0.7100 +83538 84332 0.5630 +83538 84645 0.5940 +83538 85016 0.5490 +83538 85478 0.5610 +83538 89765 0.5850 +83538 91875 0.4190 +83538 92749 0.5550 +83538 93233 0.9830 +83538 114327 0.6310 +83538 115399 0.6340 +83538 115948 0.9850 +83538 120379 0.5200 +83538 123169 0.4750 +83538 123872 0.5560 +83538 127003 0.5350 +83538 128229 0.5800 +83538 129881 0.5930 +83538 133015 0.4460 +83538 135138 0.5460 +83538 138162 0.5790 +83538 138255 0.5230 +83538 139212 0.6680 +83538 140625 0.4260 +83538 146279 0.4310 +83538 146845 0.6950 +83538 150483 0.6040 +83538 151254 0.4600 +83538 151651 0.5370 +83538 158787 0.4640 +83538 160762 0.7740 +83538 161582 0.7280 +83538 164781 0.5930 +83538 200728 0.4780 +83538 219681 0.5550 +83538 220136 0.6590 +83538 221421 0.5430 +83538 254173 0.4600 +83538 257177 0.5710 +83538 283237 0.5510 +83538 339145 0.4570 +83538 339829 0.5520 +83538 345643 0.4830 +83538 345895 0.5500 +83538 352909 0.5610 +83538 374407 0.5950 +83538 375307 0.4500 +83538 388389 0.6300 +83538 388701 0.5070 +83538 727764 0.5220 +83538 100128569 0.6540 +83539 130502 0.5300 +83539 283358 0.9350 +83539 338707 0.9250 +83540 83879 0.6630 +83540 84057 0.8290 +83540 84643 0.5310 +83540 84722 0.5120 +83540 84930 0.4550 +83540 85378 0.4570 +83540 90381 0.4260 +83540 90417 0.8470 +83540 91687 0.5690 +83540 93953 0.4020 +83540 113115 0.5370 +83540 113130 0.9310 +83540 114799 0.4780 +83540 115106 0.5510 +83540 133482 0.5540 +83540 144455 0.4610 +83540 146909 0.7290 +83540 147841 0.9990 +83540 150468 0.7650 +83540 151246 0.8520 +83540 151648 0.8580 +83540 152098 0.6440 +83540 157313 0.8860 +83540 157570 0.7640 +83540 166979 0.4950 +83540 220134 0.9390 +83540 221150 0.8930 +83540 259266 0.9800 +83540 283431 0.6220 +83540 283685 0.5040 +83540 285643 0.5260 +83540 345930 0.4160 +83540 347733 0.8460 +83540 348235 0.5990 +83540 378708 0.4640 +83540 387103 0.7780 +83540 401541 0.5160 +83540 440093 0.4580 +83540 440686 0.4590 +83540 653604 0.4610 +83540 100527963 0.4910 +83541 83550 0.4600 +83541 83877 0.5100 +83541 84243 0.4790 +83541 92017 0.4190 +83541 221710 0.4460 +83541 407738 0.4360 +83544 84557 0.8130 +83544 85478 0.4690 +83544 92749 0.4370 +83544 93233 0.8050 +83544 118491 0.7570 +83544 126820 0.7920 +83544 127602 0.4990 +83544 144132 0.6340 +83544 146754 0.8050 +83544 160762 0.4200 +83544 201625 0.6610 +83544 388389 0.5600 +83546 148014 0.4350 +83547 83871 0.9330 +83547 84617 0.6500 +83547 84790 0.6500 +83547 112714 0.6500 +83547 113457 0.6500 +83547 114876 0.9280 +83547 132160 0.4680 +83547 196383 0.6310 +83547 201163 0.4460 +83547 203068 0.6550 +83547 338382 0.9550 +83547 347688 0.6500 +83547 347733 0.6500 +83548 84317 0.4440 +83548 84516 0.5070 +83548 85477 0.4490 +83548 90196 0.7440 +83548 90956 0.6340 +83548 91949 0.9990 +83548 92344 0.4190 +83548 93661 0.4990 +83548 124997 0.4570 +83548 126208 0.6680 +83548 140735 0.5120 +83548 143187 0.8430 +83548 149371 0.5540 +83548 200312 0.5780 +83548 253512 0.7180 +83548 339122 0.6160 +83548 343099 0.4260 +83548 347517 0.5600 +83548 347734 0.4610 +83549 124583 0.9200 +83549 129607 0.9180 +83549 139596 0.9990 +83549 151531 0.9820 +83549 221264 0.4170 +83549 377841 0.9190 +83549 654364 0.4070 +83549 729020 0.5610 +83550 118442 0.4980 +83550 142689 0.4850 +83550 170394 0.4020 +83550 285601 0.4440 +83551 134860 0.6020 +83551 134864 0.5050 +83551 319100 0.5320 +83552 114902 0.8950 +83552 219854 0.4780 +83552 338917 0.7900 +83552 343035 0.7280 +83552 646960 0.7620 +83590 84233 0.5490 +83590 84447 0.4840 +83590 91304 0.8990 +83590 91445 0.8690 +83590 116988 0.4290 +83590 124402 0.4540 +83590 337867 0.4790 +83590 349136 0.4320 +83590 387263 0.4950 +83591 131405 0.4810 +83591 165721 0.4590 +83591 389677 0.4670 +83591 401498 0.4320 +83592 83889 0.6060 +83592 84869 0.4750 +83592 114815 0.4330 +83592 131368 0.4910 +83592 162387 0.4990 +83592 221303 0.5080 +83592 266722 0.4620 +83592 442117 0.4790 +83593 83660 0.5290 +83593 83706 0.5730 +83593 83737 0.6000 +83593 83937 0.4370 +83593 85450 0.5310 +83593 90417 0.6180 +83593 92597 0.4990 +83593 147746 0.9020 +83593 204851 0.9290 +83593 257106 0.4620 +83593 644943 0.6350 +83594 84304 0.7250 +83594 84618 0.9090 +83594 90355 0.4520 +83594 93034 0.9070 +83594 93100 0.9320 +83594 131870 0.6700 +83594 133686 0.9260 +83594 137682 0.4470 +83594 140838 0.5090 +83594 167227 0.6000 +83594 200035 0.7610 +83594 246243 0.8470 +83594 254552 0.6010 +83594 256281 0.8030 +83594 283927 0.7130 +83594 340390 0.4470 +83594 390916 0.7810 +83594 390928 0.7340 +83594 100526794 0.9070 +83595 83881 0.5320 +83595 90952 0.4200 +83595 94137 0.8610 +83597 84866 0.5710 +83597 89894 0.5130 +83597 131920 0.4790 +83597 155006 0.5280 +83597 199964 0.4400 +83597 259295 0.5670 +83597 353164 0.4560 +83597 389161 0.4060 +83604 91608 0.4170 +83604 92703 0.4330 +83604 130733 0.4740 +83604 170062 0.5810 +83604 389813 0.7290 +83604 642273 0.4790 +83605 84288 0.4580 +83605 90627 0.4130 +83605 150082 0.5290 +83605 168667 0.5240 +83605 284021 0.4470 +83605 286046 0.5280 +83605 114515518 0.4220 +83606 84164 0.6020 +83606 150248 0.5800 +83606 388886 0.6520 +83607 84950 0.5450 +83607 85406 0.5050 +83607 91949 0.5460 +83607 129831 0.4460 +83607 171017 0.5410 +83607 200014 0.5020 +83607 342371 0.5340 +83608 84307 0.4870 +83608 84968 0.4790 +83608 125488 0.4420 +83608 138716 0.5930 +83608 252884 0.5080 +83608 283373 0.4150 +83608 374864 0.5070 +83637 84162 0.5590 +83637 84901 0.4390 +83637 90070 0.5080 +83637 128272 0.4740 +83637 150709 0.4070 +83637 203068 0.4460 +83637 259173 0.5720 +83637 286053 0.5070 +83637 375033 0.4630 +83637 387082 0.4230 +83639 125972 0.4170 +83639 136242 0.5060 +83639 144195 0.4470 +83639 146852 0.4120 +83639 160065 0.6240 +83639 171169 0.7690 +83639 203074 0.5320 +83639 204474 0.5450 +83639 219938 0.4370 +83639 256710 0.4190 +83639 284346 0.5030 +83639 284348 0.5950 +83639 338328 0.4240 +83639 338879 0.5260 +83639 390940 0.5820 +83639 399967 0.4800 +83639 399968 0.5060 +83639 646480 0.4070 +83639 653583 0.6260 +83639 100169851 0.5710 +83639 101928108 0.5700 +83639 111216276 0.4560 +83640 123207 0.4930 +83640 253314 0.7200 +83640 317649 0.7380 +83640 353267 0.5430 +83640 392517 0.5400 +83641 85397 0.4710 +83641 143689 0.4010 +83642 85465 0.8390 +83642 114112 0.7980 +83642 118672 0.4820 +83642 140606 0.8580 +83642 254013 0.4220 +83642 255967 0.4090 +83642 257202 0.5350 +83642 280636 0.8330 +83642 348303 0.8300 +83642 374872 0.4550 +83643 85449 0.4280 +83643 114770 0.4060 +83643 254427 0.4430 +83648 84504 0.4240 +83648 286046 0.7440 +83648 613211 0.4360 +83650 158219 0.4450 +83650 286046 0.5800 +83650 613211 0.4180 +83657 83658 0.8210 +83657 83659 0.5110 +83657 84688 0.6800 +83657 85445 0.4400 +83657 89765 0.6060 +83657 89891 0.9560 +83657 126820 0.5950 +83657 128344 0.5430 +83657 131368 0.4610 +83657 139760 0.5000 +83657 140735 0.9460 +83657 146754 0.4540 +83657 160762 0.4040 +83657 196385 0.4320 +83657 200132 0.8130 +83657 201625 0.5350 +83657 219681 0.4610 +83657 255758 0.9700 +83657 257177 0.6000 +83657 343521 0.8600 +83657 345895 0.4070 +83657 389177 0.5650 +83657 644890 0.5530 +83658 83877 0.4050 +83658 84516 0.8480 +83658 84557 0.4510 +83658 89891 0.9960 +83658 92558 0.8460 +83658 112714 0.4100 +83658 112752 0.4490 +83658 126820 0.5540 +83658 131368 0.4610 +83658 140735 0.9540 +83658 200132 0.7850 +83658 255758 0.9730 +83658 283234 0.4090 +83658 343521 0.8360 +83659 83853 0.4800 +83659 83894 0.5490 +83659 84229 0.4600 +83659 89765 0.6390 +83659 90506 0.5600 +83659 91942 0.4090 +83659 92749 0.5940 +83659 93190 0.8700 +83659 93233 0.7210 +83659 114327 0.9090 +83659 115811 0.4050 +83659 115948 0.6290 +83659 118491 0.4790 +83659 123872 0.5950 +83659 124637 0.5140 +83659 127003 0.8860 +83659 127254 0.4830 +83659 127795 0.4950 +83659 128344 0.5850 +83659 128602 0.4770 +83659 129401 0.4040 +83659 129881 0.8840 +83659 132203 0.6980 +83659 133690 0.5660 +83659 134121 0.8460 +83659 135138 0.8460 +83659 136332 0.4090 +83659 138162 0.9420 +83659 138255 0.8860 +83659 139212 0.5160 +83659 144809 0.6150 +83659 145788 0.8400 +83659 146177 0.5270 +83659 146845 0.9240 +83659 149465 0.4130 +83659 149499 0.5350 +83659 150483 0.9230 +83659 151651 0.8560 +83659 158798 0.5860 +83659 159686 0.4010 +83659 160762 0.6000 +83659 161003 0.6210 +83659 161502 0.8760 +83659 161582 0.5000 +83659 164781 0.6250 +83659 168090 0.4240 +83659 200162 0.5340 +83659 200403 0.4300 +83659 201625 0.4580 +83659 202500 0.4930 +83659 219670 0.8330 +83659 219681 0.7760 +83659 220136 0.8490 +83659 221421 0.4690 +83659 246176 0.7530 +83659 254956 0.7450 +83659 257177 0.9630 +83659 339778 0.8250 +83659 340719 0.5010 +83659 341567 0.4430 +83659 345895 0.6150 +83659 388701 0.8220 +83659 389161 0.4170 +83659 389799 0.8120 +83659 399949 0.7270 +83659 401551 0.4880 +83659 440585 0.8820 +83659 727764 0.5850 +83659 730112 0.8320 +83659 100128569 0.5280 +83660 83700 0.4370 +83660 83706 0.8170 +83660 84033 0.5020 +83660 84174 0.7850 +83660 84259 0.4930 +83660 84301 0.6150 +83660 84993 0.4860 +83660 85477 0.9350 +83660 90102 0.6470 +83660 90627 0.6020 +83660 115708 0.4740 +83660 133482 0.5810 +83660 143903 0.9640 +83660 163782 0.4030 +83660 200576 0.4210 +83660 285641 0.5620 +83660 345456 0.5450 +83660 375189 0.5700 +83660 100506658 0.5150 +83661 123041 0.4700 +83661 245802 0.9260 +83661 338599 0.4400 +83661 643680 0.7130 +83666 83707 0.4090 +83666 84166 0.5460 +83666 84875 0.5000 +83666 85441 0.8040 +83666 91543 0.8660 +83666 94240 0.9000 +83666 115361 0.6510 +83666 115362 0.6090 +83666 116071 0.5580 +83666 124783 0.4370 +83666 129607 0.7690 +83666 140733 0.4280 +83666 151636 0.9990 +83666 165631 0.7590 +83666 196403 0.8480 +83666 219285 0.8720 +83666 221443 0.5190 +83666 375287 0.6550 +83666 388646 0.4430 +83666 643803 0.4350 +83667 84219 0.9950 +83667 90423 0.5200 +83667 94241 0.4170 +83667 127124 0.5160 +83667 140775 0.7330 +83667 140809 0.4700 +83667 143686 0.9100 +83667 144577 0.6920 +83667 153129 0.6660 +83667 154743 0.7530 +83667 155066 0.4990 +83667 201163 0.4640 +83667 245972 0.5210 +83667 245973 0.4990 +83667 253260 0.8220 +83667 389541 0.6490 +83667 440275 0.4740 +83667 652968 0.7220 +83667 729438 0.5440 +83690 144347 0.4140 +83690 154661 0.4530 +83693 84188 0.4490 +83693 84263 0.5420 +83693 84656 0.4430 +83693 84947 0.4290 +83693 115817 0.4570 +83693 132949 0.4990 +83693 197257 0.4750 +83693 201140 0.5590 +83693 201562 0.6750 +83693 253017 0.6250 +83693 401494 0.5980 +83693 441024 0.4690 +83693 643155 0.4220 +83694 84215 0.6800 +83694 147807 0.7150 +83694 166752 0.4780 +83694 221421 0.4410 +83694 283571 0.5170 +83694 374655 0.6720 +83694 399671 0.4980 +83695 83714 0.4090 +83695 83990 0.8220 +83695 84126 0.6920 +83695 90381 0.4780 +83695 116028 0.5700 +83695 128977 0.4840 +83695 144715 0.5150 +83695 101929469 0.4790 +83697 84896 0.6660 +83697 115019 0.6020 +83697 115111 0.5850 +83697 127124 0.5500 +83697 245973 0.4770 +83697 284129 0.4640 +83697 404734 0.4410 +83697 405754 0.4440 +83698 140862 0.6210 +83698 440073 0.4740 +83698 653567 0.4710 +83699 167691 0.4050 +83699 222166 0.6170 +83699 285513 0.4540 +83700 83715 0.7640 +83700 90952 0.5390 +83700 92359 0.5450 +83700 92521 0.5400 +83700 120425 0.5850 +83700 149461 0.4480 +83700 150084 0.9670 +83700 153562 0.4480 +83700 219537 0.5400 +83700 254102 0.5640 +83700 342527 0.5400 +83700 100506658 0.7310 +83706 84876 0.5410 +83706 151888 0.4500 +83706 257106 0.5130 +83707 84304 0.8620 +83707 84875 0.7440 +83707 126789 0.5220 +83707 131870 0.4880 +83707 140733 0.4980 +83707 165631 0.6900 +83707 283742 0.4520 +83707 283989 0.5320 +83707 100534599 0.5020 +83714 84766 0.4050 +83714 84993 0.4040 +83714 143630 0.4060 +83714 163255 0.4320 +83714 165904 0.4230 +83714 285676 0.4320 +83714 440073 0.5090 +83714 101929469 0.5050 +83715 84059 0.4830 +83715 84700 0.4540 +83715 85477 0.4910 +83715 92521 0.5400 +83715 117531 0.6300 +83715 117532 0.4460 +83715 118812 0.4910 +83715 125336 0.5020 +83715 126326 0.5200 +83715 129446 0.6590 +83715 140469 0.9850 +83715 146183 0.4790 +83715 161497 0.7350 +83715 219537 0.5400 +83715 222662 0.5760 +83715 254102 0.5570 +83715 259236 0.5410 +83715 286262 0.7970 +83715 339768 0.8340 +83715 342527 0.5400 +83715 375611 0.6060 +83715 388551 0.4430 +83715 389207 0.7840 +83715 494513 0.7000 +83715 643226 0.7550 +83716 152007 0.4580 +83719 83723 0.5040 +83719 84961 0.5690 +83719 112476 0.5590 +83719 124446 0.6120 +83719 146378 0.6070 +83719 155054 0.4060 +83719 253980 0.6510 +83719 253982 0.6870 +83719 283897 0.6000 +83719 283899 0.6200 +83719 552900 0.4190 +83719 653808 0.4760 +83719 654483 0.4170 +83723 84649 0.5430 +83723 91012 0.6620 +83723 112476 0.4670 +83723 124446 0.4010 +83723 125981 0.5200 +83723 136332 0.5210 +83723 146378 0.5550 +83723 204219 0.5920 +83723 253782 0.7280 +83723 253980 0.5330 +83723 253982 0.6120 +83723 259230 0.4310 +83723 283897 0.5450 +83723 283899 0.5090 +83723 340485 0.4610 +83729 130399 0.9520 +83732 83743 0.4250 +83732 84154 0.5960 +83732 84285 0.9770 +83732 84294 0.4510 +83732 84365 0.5540 +83732 84549 0.6170 +83732 84916 0.4420 +83732 84946 0.9990 +83732 85395 0.5020 +83732 88745 0.4050 +83732 90121 0.6840 +83732 96764 0.6690 +83732 112858 0.5920 +83732 115939 0.4560 +83732 117246 0.6830 +83732 124454 0.4360 +83732 140032 0.5260 +83732 149041 0.5720 +83732 161424 0.7550 +83732 221002 0.7960 +83732 221830 0.6380 +83732 348995 0.4030 +83732 692312 0.5530 +83732 102157402 0.5340 +83733 85477 0.5480 +83733 120227 0.4470 +83734 84557 0.9400 +83734 84938 0.8570 +83734 84971 0.8480 +83734 89849 0.6630 +83734 115201 0.8640 +83734 285973 0.6650 +83734 345611 0.9900 +83734 440738 0.8510 +83734 441925 0.5260 +83734 643246 0.6560 +83737 84282 0.6160 +83737 84678 0.5480 +83737 88455 0.4240 +83737 89122 0.5140 +83737 91947 0.6200 +83737 92714 0.8620 +83737 113251 0.4110 +83737 113878 0.6570 +83737 114793 0.5830 +83737 122706 0.4040 +83737 143458 0.5470 +83737 143471 0.4180 +83737 151636 0.4290 +83737 153562 0.4820 +83737 154796 0.7710 +83737 154810 0.4520 +83737 162461 0.5020 +83737 197259 0.6610 +83737 219333 0.5760 +83737 221302 0.4750 +83737 257218 0.4500 +83737 283373 0.4780 +83737 645432 0.4080 +83737 100506658 0.5550 +83740 85236 0.4190 +83740 121504 0.9310 +83740 139741 0.4310 +83740 255626 0.4930 +83740 474381 0.9020 +83740 474384 0.5440 +83740 554313 0.9310 +83741 85364 0.4410 +83741 132851 0.4470 +83741 163732 0.5350 +83741 284252 0.5990 +83741 339488 0.4860 +83741 728741 0.4190 +83742 84267 0.5260 +83742 148932 0.4220 +83742 255275 0.4040 +83742 643418 0.7950 +83743 84128 0.8470 +83743 84135 0.7260 +83743 84154 0.9490 +83743 84172 0.8690 +83743 84294 0.6080 +83743 84365 0.9290 +83743 84549 0.8100 +83743 84916 0.9170 +83743 84946 0.8050 +83743 84955 0.6220 +83743 88745 0.5390 +83743 90121 0.8700 +83743 90441 0.5910 +83743 91893 0.5940 +83743 92342 0.6730 +83743 92856 0.9240 +83743 115708 0.6980 +83743 116966 0.8670 +83743 117246 0.8490 +83743 118460 0.5010 +83743 124512 0.4060 +83743 142940 0.5880 +83743 146212 0.8040 +83743 151194 0.4400 +83743 161424 0.8530 +83743 165545 0.6870 +83743 171568 0.4490 +83743 196541 0.4590 +83743 221078 0.8250 +83743 221830 0.7240 +83743 254013 0.4720 +83743 285855 0.6730 +83743 317781 0.5500 +83743 345630 0.7210 +83743 377677 0.4510 +83743 387129 0.5070 +83743 387338 0.4060 +83743 692312 0.6900 +83743 100505478 0.4820 +83744 114926 0.5140 +83744 100132963 0.6380 +83746 84108 0.9970 +83746 84146 0.4540 +83746 84333 0.5230 +83746 84678 0.5960 +83746 84733 0.4270 +83746 84759 0.6510 +83746 90459 0.4340 +83746 112479 0.4620 +83746 114826 0.5000 +83746 132625 0.5510 +83746 132660 0.6660 +83746 147719 0.4130 +83746 150356 0.4010 +83746 153396 0.4080 +83746 165918 0.6930 +83746 254225 0.5010 +83746 387893 0.4910 +83746 404281 0.5440 +83746 441457 0.4140 +83746 100532731 0.6170 +83752 84140 0.4340 +83752 115209 0.5670 +83752 134266 0.7120 +83752 153443 0.4530 +83752 162517 0.4100 +83752 219743 0.8980 +83752 221421 0.5910 +83752 259217 0.4280 +83752 340371 0.4330 +83752 387694 0.4770 +83755 83895 0.6850 +83755 83896 0.8720 +83755 83897 0.5300 +83755 83899 0.4340 +83755 83900 0.7120 +83755 83901 0.6560 +83755 83902 0.7430 +83755 84616 0.4730 +83755 85280 0.5710 +83755 85285 0.6530 +83755 85289 0.7300 +83755 85290 0.7840 +83755 85291 0.7760 +83755 85293 0.4600 +83755 91526 0.4370 +83755 93185 0.4570 +83755 112802 0.6020 +83755 125115 0.4030 +83755 147183 0.4710 +83755 254910 0.5910 +83755 337880 0.7000 +83755 342574 0.4890 +83755 353131 0.5910 +83755 353132 0.4750 +83755 353135 0.6000 +83755 353140 0.5910 +83755 390792 0.4440 +83755 440023 0.4700 +83755 653240 0.5120 +83755 728224 0.7760 +83755 100132476 0.7800 +83756 84221 0.4070 +83756 93432 0.4500 +83756 119395 0.4730 +83756 126006 0.4480 +83756 133060 0.5180 +83756 139760 0.4520 +83756 151651 0.4050 +83756 197335 0.5770 +83756 200634 0.4140 +83756 255022 0.5970 +83756 259285 0.7600 +83756 259286 0.5910 +83756 259287 0.7810 +83756 259289 0.7500 +83756 259290 0.7420 +83756 259292 0.7030 +83756 259293 0.7020 +83756 259294 0.7420 +83756 259295 0.6860 +83756 259296 0.7260 +83756 338398 0.7290 +83756 338557 0.8020 +83756 342372 0.6130 +83756 346562 0.9980 +83756 350383 0.4740 +83756 353164 0.7770 +83756 619373 0.4210 +83758 84661 0.5230 +83758 105375355 0.4140 +83759 83939 0.5880 +83759 129831 0.5920 +83786 85464 0.4230 +83786 144132 0.4720 +83786 147912 0.4130 +83786 150696 0.4140 +83786 160777 0.4690 +83786 163479 0.4190 +83786 220359 0.6370 +83786 254102 0.5410 +83786 259282 0.4420 +83786 283130 0.6260 +83787 222235 0.4550 +83787 340745 0.4530 +83795 84258 0.4330 +83795 89822 0.7580 +83795 128486 0.5710 +83795 140902 0.6820 +83795 145741 0.4790 +83795 169026 0.4730 +83795 169792 0.4790 +83795 338567 0.6790 +83844 84101 0.5410 +83844 84196 0.5290 +83844 84640 0.4900 +83844 84696 0.4380 +83844 85015 0.4100 +83844 91833 0.6260 +83844 114803 0.4620 +83844 126119 0.4900 +83844 139562 0.5070 +83844 144699 0.4390 +83844 159195 0.4400 +83844 219333 0.5860 +83844 220213 0.4610 +83844 221302 0.6030 +83844 347475 0.4330 +83844 377630 0.5190 +83849 195977 0.4880 +83850 84876 0.5330 +83850 114879 0.5620 +83850 114882 0.4250 +83850 196996 0.6300 +83850 203328 0.4010 +83850 375346 0.6010 +83851 115827 0.4590 +83851 149371 0.4060 +83851 154865 0.4550 +83851 200844 0.4810 +83852 84193 0.4500 +83852 84444 0.4580 +83852 84787 0.4300 +83852 114826 0.4600 +83852 120534 0.9460 +83852 128372 0.4070 +83852 162387 0.4460 +83852 221656 0.4150 +83852 284371 0.5100 +83852 284996 0.4090 +83852 337867 0.4120 +83852 387893 0.4010 +83852 440093 0.6260 +83852 440686 0.6260 +83852 644100 0.4550 +83852 653604 0.7660 +83852 100131755 0.4560 +83852 101929989 0.4030 +83853 83893 0.6120 +83853 83894 0.4570 +83853 84075 0.5890 +83853 84255 0.4020 +83853 85438 0.4880 +83853 89765 0.5140 +83853 89869 0.4960 +83853 114822 0.8600 +83853 117144 0.4650 +83853 132203 0.4490 +83853 132851 0.4980 +83853 134147 0.4760 +83853 138724 0.4470 +83853 139604 0.4090 +83853 140873 0.4820 +83853 145942 0.4750 +83853 150159 0.4440 +83853 152405 0.4320 +83853 158798 0.5450 +83853 161142 0.5640 +83853 161502 0.4220 +83853 164684 0.4730 +83853 196951 0.4640 +83853 200232 0.4820 +83853 219938 0.4100 +83853 254956 0.5150 +83853 257169 0.4330 +83853 257236 0.4290 +83853 283461 0.4480 +83853 317719 0.4070 +83853 345895 0.4240 +83853 375307 0.5050 +83853 375341 0.4030 +83853 644890 0.5430 +83855 90850 0.5360 +83855 112939 0.6270 +83855 126208 0.6270 +83855 283337 0.4620 +83857 84152 0.5440 +83857 84687 0.4300 +83857 123169 0.4750 +83857 253738 0.6810 +83858 90624 0.4150 +83858 391003 0.4320 +83860 84246 0.8030 +83860 90390 0.8000 +83860 112869 0.5160 +83860 112950 0.8180 +83860 121504 0.8020 +83860 126961 0.8230 +83860 128497 0.6100 +83860 129685 0.9970 +83860 138474 0.7350 +83860 333932 0.8210 +83860 387332 0.9930 +83860 391742 0.6030 +83860 391746 0.6030 +83860 391747 0.6030 +83860 400569 0.8000 +83860 404672 0.9800 +83860 440093 0.8700 +83860 440686 0.8300 +83860 554313 0.8020 +83860 646066 0.6030 +83860 646103 0.6030 +83860 653604 0.9640 +83860 102723526 0.6030 +83860 112488736 0.6030 +83860 112488737 0.6030 +83860 112488738 0.6030 +83860 112488739 0.6030 +83860 112488740 0.6030 +83860 112488745 0.6030 +83860 112488746 0.6030 +83860 112488747 0.6030 +83862 84197 0.4200 +83862 84336 0.5180 +83862 84814 0.6440 +83862 85025 0.5130 +83862 117531 0.4010 +83862 144404 0.6330 +83862 285386 0.5350 +83862 285971 0.4400 +83862 441027 0.5410 +83871 196383 0.4370 +83871 201163 0.5390 +83871 440279 0.5530 +83872 84839 0.6330 +83872 94025 0.5930 +83872 113146 0.4600 +83872 114788 0.5800 +83872 129446 0.4920 +83872 140453 0.4430 +83872 285641 0.5640 +83872 341640 0.4540 +83872 387715 0.8520 +83873 114804 0.4870 +83873 284612 0.4040 +83873 285601 0.5030 +83873 390598 0.4010 +83874 84958 0.9240 +83874 128637 0.5000 +83874 129049 0.4020 +83874 161514 0.5690 +83875 91464 0.6230 +83875 112724 0.5080 +83875 157506 0.4840 +83875 166348 0.5050 +83875 339145 0.4250 +83876 440097 0.4570 +83877 83941 0.9790 +83877 84300 0.6680 +83877 84513 0.5880 +83877 93183 0.4020 +83877 137994 0.4100 +83877 203100 0.4900 +83877 374354 0.5690 +83877 389541 0.4240 +83878 221395 0.4810 +83879 90381 0.4020 +83879 113130 0.6910 +83879 157313 0.7190 +83879 254042 0.4380 +83879 259266 0.4770 +83881 89780 0.5100 +83881 132625 0.4400 +83881 145873 0.5420 +83881 147991 0.4170 +83881 343930 0.4080 +83881 387332 0.5250 +83881 390992 0.5220 +83884 401612 0.4700 +83884 100132963 0.4740 +83884 100505993 0.4930 +83886 136853 0.5480 +83886 196374 0.4590 +83886 440023 0.4740 +83887 84692 0.4610 +83887 85438 0.4200 +83887 114798 0.4020 +83887 123624 0.4150 +83887 127391 0.4540 +83887 140873 0.4260 +83887 153643 0.4030 +83887 158830 0.4160 +83887 160419 0.4170 +83887 167227 0.4910 +83887 168090 0.4310 +83887 170712 0.4980 +83887 196513 0.4500 +83887 200232 0.4220 +83887 284418 0.4820 +83887 387509 0.4740 +83887 399693 0.4570 +83888 117157 0.4230 +83888 257101 0.5730 +83888 343413 0.4640 +83889 144448 0.4600 +83889 162387 0.5190 +83889 170572 0.4900 +83889 202018 0.5140 +83889 284021 0.4290 +83889 285242 0.4760 +83890 83893 0.4380 +83890 83938 0.5810 +83890 84071 0.5720 +83890 120935 0.6260 +83890 128497 0.4320 +83890 140459 0.4940 +83890 220082 0.4960 +83890 284680 0.4970 +83890 317671 0.4420 +83890 347240 0.4580 +83890 375686 0.5140 +83890 100506581 0.5440 +83891 85397 0.4120 +83891 112574 0.4060 +83891 113444 0.4010 +83891 124460 0.4750 +83891 254122 0.4460 +83891 353322 0.4190 +83891 431704 0.4700 +83892 84078 0.7620 +83892 84193 0.4410 +83892 84280 0.5870 +83892 84541 0.7200 +83892 84861 0.7270 +83892 89890 0.7530 +83892 90293 0.7200 +83892 131377 0.7200 +83892 146212 0.4770 +83892 147040 0.6000 +83892 148870 0.5220 +83892 222658 0.7000 +83892 253980 0.9790 +83892 283518 0.4070 +83892 326625 0.4160 +83892 339745 0.7200 +83892 553115 0.7390 +83893 84071 0.4380 +83893 84660 0.5810 +83893 84692 0.4400 +83893 89869 0.6540 +83893 93550 0.4750 +83893 117144 0.5920 +83893 124404 0.5250 +83893 128229 0.4980 +83893 130560 0.6170 +83893 132671 0.4830 +83893 138724 0.6030 +83893 139604 0.5140 +83893 140732 0.5470 +83893 145942 0.5980 +83893 146177 0.4220 +83893 146852 0.4210 +83893 150159 0.4510 +83893 151254 0.5960 +83893 161142 0.5380 +83893 164684 0.5360 +83893 171169 0.4210 +83893 199720 0.4420 +83893 200232 0.6260 +83893 219938 0.4460 +83893 220082 0.4740 +83893 221409 0.4430 +83893 257169 0.5430 +83893 283417 0.8980 +83893 283461 0.5800 +83893 284680 0.6400 +83893 317719 0.6220 +83893 341567 0.4480 +83893 374768 0.6000 +83893 402573 0.6790 +83893 111064647 0.4130 +83894 84071 0.6590 +83894 84074 0.6370 +83894 84217 0.4980 +83894 85452 0.5380 +83894 89876 0.7120 +83894 92104 0.5320 +83894 93233 0.4460 +83894 112942 0.5750 +83894 118491 0.6830 +83894 122481 0.6420 +83894 126820 0.4620 +83894 127795 0.4320 +83894 128602 0.4890 +83894 129446 0.4050 +83894 132203 0.5370 +83894 133690 0.4390 +83894 134121 0.4320 +83894 136332 0.4550 +83894 139212 0.5730 +83894 140710 0.5190 +83894 143241 0.4410 +83894 144406 0.6470 +83894 144809 0.4480 +83894 146754 0.6100 +83894 146845 0.5590 +83894 151556 0.4530 +83894 154313 0.4780 +83894 158798 0.7780 +83894 159686 0.6710 +83894 160762 0.5020 +83894 161003 0.5120 +83894 164781 0.4020 +83894 168090 0.5320 +83894 199223 0.7320 +83894 201134 0.5170 +83894 219681 0.4820 +83894 254956 0.4710 +83894 255101 0.5110 +83894 255119 0.6370 +83894 257062 0.4680 +83894 257177 0.4280 +83894 283726 0.4320 +83894 286464 0.7030 +83894 339829 0.4860 +83894 345895 0.5540 +83894 374407 0.4800 +83894 399949 0.7710 +83894 401024 0.6230 +83894 401551 0.4320 +83894 642987 0.4010 +83894 100170765 0.4450 +83895 83896 0.8780 +83895 83897 0.8250 +83895 83900 0.6870 +83895 83901 0.8010 +83895 83902 0.6840 +83895 84616 0.6670 +83895 85280 0.8370 +83895 85285 0.5620 +83895 85289 0.6110 +83895 85290 0.7220 +83895 85291 0.8620 +83895 112802 0.4430 +83895 121391 0.4340 +83895 147183 0.4030 +83895 254910 0.4570 +83895 337878 0.4890 +83895 337879 0.4550 +83895 337880 0.6250 +83895 337882 0.6020 +83895 337970 0.4030 +83895 342574 0.5260 +83895 353132 0.5970 +83895 353134 0.5590 +83895 353135 0.4480 +83895 353141 0.4390 +83895 353142 0.5910 +83895 388468 0.4050 +83895 440051 0.5010 +83895 643664 0.4180 +83895 653240 0.4710 +83895 728224 0.7530 +83895 730755 0.5320 +83895 100132476 0.6730 +83895 112267897 0.5290 +83896 83897 0.8650 +83896 83899 0.4470 +83896 83900 0.9100 +83896 83901 0.8720 +83896 83902 0.8500 +83896 84616 0.7320 +83896 85280 0.8990 +83896 85285 0.8870 +83896 85289 0.8430 +83896 85290 0.9000 +83896 85291 0.8620 +83896 85293 0.4450 +83896 112802 0.7530 +83896 121391 0.6560 +83896 125115 0.5110 +83896 140258 0.8170 +83896 144501 0.5390 +83896 147183 0.5100 +83896 147409 0.6650 +83896 163778 0.4170 +83896 254773 0.4100 +83896 254950 0.7330 +83896 337878 0.7440 +83896 337879 0.7900 +83896 337880 0.9360 +83896 337882 0.4810 +83896 337960 0.6150 +83896 337966 0.4050 +83896 337970 0.5370 +83896 342574 0.7520 +83896 353288 0.4380 +83896 353332 0.4690 +83896 388818 0.5730 +83896 390792 0.4910 +83896 643803 0.5330 +83896 653240 0.6670 +83896 728224 0.8520 +83896 728255 0.4390 +83896 730755 0.4510 +83896 100132386 0.5570 +83896 100132476 0.7940 +83897 83899 0.4840 +83897 83900 0.8000 +83897 83901 0.7670 +83897 83902 0.7850 +83897 84616 0.5990 +83897 85280 0.7740 +83897 85285 0.8400 +83897 85289 0.7460 +83897 85290 0.8920 +83897 85291 0.7740 +83897 85293 0.4460 +83897 85294 0.4300 +83897 112802 0.6870 +83897 121391 0.5830 +83897 140258 0.4850 +83897 147183 0.6900 +83897 147409 0.4400 +83897 337878 0.6250 +83897 337879 0.6480 +83897 337880 0.7490 +83897 337882 0.6800 +83897 337960 0.5330 +83897 337966 0.4170 +83897 337967 0.5220 +83897 337968 0.4900 +83897 337970 0.4630 +83897 337979 0.4470 +83897 342574 0.8230 +83897 353132 0.5210 +83897 353139 0.4120 +83897 387267 0.4020 +83897 388818 0.5910 +83897 440050 0.4180 +83897 643803 0.5160 +83897 653240 0.4310 +83897 728224 0.7140 +83897 728255 0.6460 +83897 728279 0.4670 +83897 730755 0.5770 +83897 100132386 0.4230 +83897 100132476 0.8660 +83897 100505753 0.4800 +83899 83900 0.5770 +83899 83901 0.5400 +83899 83902 0.4950 +83899 85280 0.6230 +83899 85291 0.4330 +83899 90333 0.4440 +83899 140258 0.6110 +83899 199834 0.6380 +83899 254950 0.4290 +83899 337880 0.4780 +83899 337959 0.5500 +83899 337960 0.5010 +83899 337966 0.5560 +83899 337968 0.4140 +83899 337969 0.4970 +83899 337970 0.5380 +83899 337975 0.5290 +83899 337976 0.4200 +83899 342574 0.5450 +83899 353132 0.6800 +83899 386675 0.4580 +83899 386676 0.5640 +83899 386677 0.5900 +83899 386678 0.4730 +83899 386681 0.4380 +83899 387267 0.5970 +83899 390792 0.4780 +83899 440021 0.5910 +83899 440023 0.5320 +83899 643803 0.4470 +83899 728255 0.5040 +83899 728318 0.4400 +83899 100505724 0.4670 +83899 112441428 0.5270 +83900 83901 0.8830 +83900 83902 0.8850 +83900 84616 0.8310 +83900 85280 0.9990 +83900 85285 0.8480 +83900 85289 0.8350 +83900 85290 0.8330 +83900 85291 0.8300 +83900 85293 0.5550 +83900 112802 0.7520 +83900 121391 0.4480 +83900 147183 0.5380 +83900 147409 0.4440 +83900 254773 0.4290 +83900 337878 0.4410 +83900 337879 0.5300 +83900 337880 0.7900 +83900 337882 0.5330 +83900 337960 0.5690 +83900 337970 0.6380 +83900 342574 0.7880 +83900 353134 0.5910 +83900 386675 0.4280 +83900 386676 0.4080 +83900 386678 0.4670 +83900 386681 0.4020 +83900 653240 0.4510 +83900 728224 0.7990 +83900 728318 0.4250 +83900 100132476 0.7880 +83900 100505724 0.5370 +83901 83902 0.9220 +83901 84616 0.8450 +83901 85280 0.9090 +83901 85285 0.8320 +83901 85289 0.8020 +83901 85290 0.9980 +83901 85291 0.8460 +83901 85293 0.5320 +83901 85294 0.6700 +83901 112802 0.6340 +83901 146853 0.4480 +83901 147183 0.5210 +83901 147409 0.4350 +83901 337878 0.5140 +83901 337879 0.5240 +83901 337880 0.7840 +83901 337882 0.4550 +83901 337970 0.6320 +83901 339168 0.4840 +83901 342574 0.7460 +83901 353131 0.4870 +83901 386675 0.6180 +83901 386681 0.6210 +83901 386683 0.5940 +83901 388335 0.4450 +83901 440023 0.4870 +83901 653240 0.5780 +83901 728224 0.7940 +83901 728318 0.4370 +83901 730755 0.5470 +83901 100132476 0.7760 +83901 100505724 0.4970 +83901 101060351 0.4320 +83902 84616 0.8440 +83902 85280 0.8780 +83902 85285 0.7950 +83902 85289 0.8590 +83902 85290 0.8650 +83902 85291 0.8780 +83902 85294 0.4300 +83902 90050 0.4180 +83902 112802 0.6660 +83902 121391 0.6330 +83902 140258 0.4140 +83902 147183 0.4430 +83902 147409 0.4680 +83902 170591 0.4950 +83902 171484 0.4810 +83902 202151 0.5010 +83902 254773 0.4750 +83902 337878 0.4460 +83902 337879 0.7140 +83902 337880 0.8650 +83902 337882 0.4380 +83902 337970 0.4780 +83902 342574 0.8090 +83902 347516 0.4200 +83902 378108 0.4120 +83902 386678 0.5230 +83902 388818 0.4540 +83902 643803 0.5420 +83902 653240 0.5020 +83902 728224 0.8620 +83902 728318 0.4700 +83902 100131902 0.4280 +83902 100132386 0.4590 +83902 100132476 0.7650 +83902 100505724 0.5940 +83902 100505753 0.4160 +83902 100533177 0.4410 +83903 84930 0.4140 +83903 90381 0.5560 +83903 113130 0.7540 +83903 146956 0.4250 +83903 150468 0.4690 +83903 151246 0.6710 +83903 151648 0.8770 +83903 157313 0.7560 +83903 157570 0.6320 +83903 220134 0.4940 +83903 415116 0.5620 +83903 440093 0.8030 +83903 440686 0.8030 +83903 653604 0.8080 +83930 93973 0.4240 +83930 114879 0.4470 +83930 118813 0.6040 +83930 125228 0.4940 +83930 133482 0.4700 +83930 134429 0.5160 +83930 147323 0.4990 +83930 151393 0.4540 +83930 158747 0.7240 +83930 256130 0.4480 +83930 341019 0.5830 +83930 341880 0.4800 +83930 399979 0.4550 +83930 442184 0.5400 +83931 92335 0.4460 +83931 127700 0.4310 +83931 149420 0.4010 +83932 84083 0.5120 +83932 84301 0.5030 +83932 84464 0.5480 +83932 84617 0.5130 +83932 92400 0.4080 +83932 93953 0.7570 +83932 122769 0.4300 +83932 163859 0.6580 +83932 199990 0.4180 +83932 201973 0.4220 +83932 202151 0.4410 +83932 285368 0.4770 +83932 414301 0.5360 +83933 84148 0.4140 +83933 84441 0.5140 +83933 85235 0.4680 +83933 85236 0.7060 +83933 85378 0.5210 +83933 92714 0.4440 +83933 92815 0.6890 +83933 94239 0.7130 +83933 128312 0.7020 +83933 158983 0.6980 +83933 221613 0.6890 +83933 255626 0.7020 +83933 286436 0.7000 +83933 317772 0.6890 +83933 440093 0.5270 +83933 440686 0.5270 +83933 440689 0.7020 +83933 474381 0.6890 +83933 474382 0.6890 +83933 653604 0.7040 +83933 114483833 0.6980 +83938 84062 0.4550 +83938 84071 0.4480 +83938 84316 0.5030 +83938 84343 0.5770 +83938 84811 0.5410 +83938 84966 0.4780 +83938 84967 0.5750 +83938 85479 0.4620 +83938 89781 0.5810 +83938 90134 0.4300 +83938 90167 0.4330 +83938 120935 0.5120 +83938 126259 0.4850 +83938 143884 0.4280 +83938 144423 0.4200 +83938 146167 0.4500 +83938 147650 0.4860 +83938 153527 0.5020 +83938 154007 0.5240 +83938 157807 0.4760 +83938 222183 0.5240 +83938 256536 0.5670 +83938 283652 0.7730 +83938 284325 0.4910 +83938 374355 0.5680 +83938 388552 0.5710 +83938 644150 0.4280 +83938 100534599 0.5970 +83938 100996928 0.5270 +83938 101669762 0.6490 +83939 140032 0.5740 +83939 255308 0.7050 +83939 440275 0.7750 +83940 84364 0.4620 +83941 90410 0.5320 +83941 92181 0.4600 +83941 128239 0.4280 +83941 152815 0.4360 +83941 171222 0.4160 +83941 374354 0.5780 +83941 389541 0.4360 +83942 93661 0.4740 +83942 130106 0.4140 +83942 131544 0.6110 +83943 84216 0.4200 +83943 84340 0.4790 +83943 84631 0.6470 +83943 89832 0.4760 +83943 91419 0.5200 +83943 114781 0.4660 +83943 114798 0.8030 +83943 115209 0.4800 +83943 137682 0.4610 +83943 140733 0.4400 +83943 151126 0.4090 +83943 153396 0.4500 +83943 166348 0.4750 +83943 168451 0.4010 +83943 196294 0.7410 +83943 338811 0.4330 +83943 343069 0.4460 +83943 644890 0.4180 +83943 654463 0.4240 +83953 115350 0.4050 +83953 152877 0.4060 +83953 199713 0.4040 +83953 390714 0.5010 +83959 84627 0.4470 +83959 116159 0.6520 +83959 123624 0.8130 +83959 125336 0.7980 +83959 130733 0.4430 +83959 145173 0.5380 +83959 163782 0.5700 +83959 245973 0.4040 +83959 344561 0.4100 +83982 91543 0.4470 +83983 84074 0.4110 +83983 89765 0.4040 +83983 89869 0.5330 +83983 93661 0.4250 +83983 94039 0.4340 +83983 112858 0.4040 +83983 113177 0.4360 +83983 117144 0.4250 +83983 124404 0.4400 +83983 125972 0.4560 +83983 128153 0.4200 +83983 128229 0.5150 +83983 130106 0.5060 +83983 132141 0.4590 +83983 132851 0.4560 +83983 133874 0.4470 +83983 140625 0.4170 +83983 140701 0.4240 +83983 146849 0.4990 +83983 146852 0.4540 +83983 147650 0.6210 +83983 150365 0.4060 +83983 170370 0.4330 +83983 201243 0.4680 +83983 219938 0.4120 +83983 220082 0.4710 +83983 246777 0.4020 +83983 284359 0.6660 +83983 286234 0.4330 +83983 317719 0.5230 +83983 341567 0.4160 +83983 374768 0.6290 +83983 374887 0.5460 +83983 100129669 0.4390 +83985 84804 0.6710 +83985 84901 0.5020 +83985 84975 0.4850 +83985 113655 0.4960 +83985 136306 0.4510 +83985 162387 0.4100 +83985 388931 0.8570 +83986 112849 0.4540 +83986 121512 0.4380 +83986 130535 0.4380 +83987 84188 0.4280 +83987 84617 0.4230 +83987 84790 0.4270 +83987 84958 0.4070 +83987 90102 0.4500 +83987 91057 0.4850 +83987 93517 0.4630 +83987 114928 0.4580 +83987 283212 0.4830 +83987 374864 0.4500 +83987 649238 0.4020 +83987 105373377 0.4220 +83988 84251 0.7550 +83988 114134 0.4110 +83988 114898 0.7510 +83988 115207 0.4320 +83988 122616 0.5440 +83988 130340 0.5480 +83988 132320 0.4160 +83988 150350 0.5470 +83988 197335 0.4300 +83988 347733 0.4030 +83988 651746 0.6310 +83989 84250 0.5890 +83989 133491 0.4310 +83989 134187 0.6120 +83989 153770 0.7090 +83989 192670 0.4120 +83989 285600 0.5120 +83990 84083 0.5180 +83990 84126 0.8270 +83990 84142 0.6750 +83990 84246 0.4140 +83990 84260 0.6500 +83990 84464 0.9070 +83990 84515 0.4390 +83990 84893 0.7130 +83990 90381 0.5640 +83990 91442 0.7740 +83990 113510 0.5430 +83990 116028 0.7520 +83990 144715 0.5660 +83990 146956 0.7280 +83990 157570 0.5610 +83990 170506 0.5930 +83990 197342 0.5640 +83990 199990 0.5750 +83990 201254 0.5980 +83990 201973 0.5280 +83990 220134 0.5190 +83990 246243 0.4180 +83990 285231 0.4830 +83990 348654 0.7130 +83990 353497 0.5830 +83990 378708 0.5160 +83990 548593 0.8030 +83990 728340 0.5890 +83992 85369 0.9980 +83992 136647 0.5820 +83992 136991 0.6170 +83992 221035 0.5200 +83998 135656 0.4160 +83998 140453 0.5880 +83998 155465 0.4160 +83998 646424 0.4250 +83998 653808 0.4860 +83999 84133 0.6440 +83999 84870 0.4090 +83999 89780 0.6350 +83999 113277 0.4080 +83999 284654 0.6590 +84000 85289 0.5440 +84000 120863 0.4120 +84000 405754 0.6410 +84000 440270 0.4190 +84002 94025 0.4780 +84002 121665 0.4070 +84002 127550 0.4650 +84002 140453 0.4130 +84002 143662 0.4310 +84002 145173 0.4140 +84002 170384 0.4700 +84002 200958 0.6080 +84002 345274 0.4890 +84002 347902 0.5870 +84002 394263 0.4450 +84002 727897 0.4250 +84033 84665 0.4090 +84033 84676 0.6600 +84033 91860 0.6000 +84033 94025 0.7540 +84033 113146 0.4230 +84033 114788 0.5510 +84033 118461 0.4160 +84033 129446 0.4730 +84033 140453 0.4090 +84033 163688 0.6090 +84033 169355 0.4080 +84033 200845 0.5900 +84033 202333 0.5020 +84033 259266 0.4300 +84033 282996 0.5070 +84033 285498 0.4370 +84034 255324 0.4220 +84056 89872 0.4500 +84056 114803 0.4430 +84056 134510 0.4080 +84056 339745 0.4260 +84056 100509620 0.4500 +84056 100652824 0.4110 +84057 84072 0.5880 +84057 84296 0.4030 +84057 84515 0.5110 +84057 85236 0.4080 +84057 113115 0.7680 +84057 113130 0.6870 +84057 116028 0.4160 +84057 119392 0.6190 +84057 128312 0.4050 +84057 134829 0.4140 +84057 144455 0.4410 +84057 146956 0.5000 +84057 150280 0.5830 +84057 150468 0.6200 +84057 151246 0.4880 +84057 151648 0.4240 +84057 157313 0.5260 +84057 157570 0.4710 +84057 164045 0.7710 +84057 220134 0.4580 +84057 221150 0.7660 +84057 254394 0.4410 +84057 254528 0.4750 +84057 259266 0.7920 +84057 387103 0.6670 +84057 642636 0.4120 +84058 84865 0.5550 +84058 85437 0.4320 +84058 85474 0.4450 +84058 127700 0.7840 +84058 150771 0.5600 +84058 165545 0.4020 +84058 203260 0.4380 +84058 246329 0.5020 +84058 348793 0.4690 +84058 388963 0.4710 +84059 84435 0.5020 +84059 94025 0.4060 +84059 114327 0.4100 +84059 116068 0.4990 +84059 117531 0.6960 +84059 117532 0.5400 +84059 124590 0.9640 +84059 125336 0.5990 +84059 146183 0.4530 +84059 148870 0.4430 +84059 161497 0.6680 +84059 166647 0.4950 +84059 167691 0.6380 +84059 170589 0.4140 +84059 222662 0.6480 +84059 246213 0.4780 +84059 283310 0.5120 +84059 286262 0.4460 +84059 340990 0.5910 +84059 344752 0.4420 +84059 346007 0.5050 +84059 375611 0.6390 +84059 389207 0.6530 +84059 643677 0.4140 +84060 84070 0.5310 +84060 84811 0.8050 +84060 84844 0.8020 +84060 85378 0.4430 +84060 114791 0.4310 +84060 158399 0.4250 +84060 199745 0.5070 +84060 253012 0.4450 +84060 257415 0.5520 +84061 84102 0.6180 +84061 93380 0.5870 +84061 140803 0.6350 +84061 144245 0.5090 +84061 146206 0.4440 +84061 152519 0.7560 +84061 200185 0.9220 +84061 201294 0.5830 +84061 201595 0.9990 +84061 254428 0.7630 +84061 348938 0.7320 +84061 100128731 0.9950 +84062 84066 0.4480 +84062 84343 0.9780 +84062 89781 0.9720 +84062 91752 0.7350 +84062 123041 0.4080 +84062 130340 0.4990 +84062 140691 0.4290 +84062 167838 0.6420 +84062 202333 0.8400 +84062 220074 0.5440 +84062 267012 0.8660 +84062 282991 0.9990 +84062 283652 0.4340 +84062 286451 0.4990 +84062 319100 0.6160 +84062 388552 0.9990 +84062 729991 0.6860 +84063 84623 0.4390 +84063 256297 0.5220 +84063 652991 0.5430 +84064 84836 0.4330 +84064 85007 0.4210 +84064 92255 0.4320 +84064 652991 0.4150 +84065 84246 0.4160 +84065 84337 0.4460 +84065 153396 0.4040 +84065 553115 0.4350 +84066 118426 0.6010 +84066 119032 0.6290 +84066 128497 0.5110 +84066 130560 0.5000 +84066 149643 0.6640 +84066 200159 0.4920 +84066 200523 0.6360 +84066 219938 0.4930 +84066 220082 0.5010 +84066 221301 0.4220 +84066 282991 0.6870 +84066 284254 0.5370 +84066 353299 0.9130 +84066 374768 0.5390 +84066 375686 0.4850 +84066 389320 0.6590 +84067 84376 0.9960 +84067 92840 0.5890 +84067 136332 0.4360 +84067 146439 0.4320 +84067 146705 0.4660 +84067 219738 0.4460 +84068 84102 0.4110 +84068 124583 0.4240 +84068 201780 0.6900 +84068 202559 0.4060 +84068 345274 0.7380 +84068 347051 0.7930 +84068 653567 0.4060 +84069 84779 0.4330 +84069 84808 0.4920 +84069 89978 0.4300 +84069 138639 0.4700 +84069 200844 0.5590 +84069 252884 0.5090 +84069 389114 0.4110 +84069 389177 0.4720 +84070 140625 0.5050 +84071 84074 0.6990 +84071 89765 0.4030 +84071 89876 0.5850 +84071 93436 0.4970 +84071 118491 0.7040 +84071 120935 0.6050 +84071 122481 0.5600 +84071 124404 0.4400 +84071 144406 0.6460 +84071 146754 0.5270 +84071 159686 0.6130 +84071 199223 0.6890 +84071 255101 0.4530 +84071 283417 0.4010 +84071 284680 0.5330 +84071 374407 0.5610 +84071 401024 0.6070 +84072 84690 0.6000 +84072 84944 0.5160 +84072 93426 0.8320 +84072 124817 0.4400 +84072 135458 0.4110 +84072 140732 0.4220 +84072 144715 0.4400 +84072 145645 0.5680 +84072 147872 0.4230 +84072 150280 0.4500 +84072 150365 0.7220 +84072 157777 0.4570 +84072 158401 0.4740 +84072 164045 0.5440 +84072 203413 0.5350 +84072 254394 0.6400 +84072 254528 0.6380 +84072 256006 0.5730 +84072 256126 0.7870 +84072 283129 0.6260 +84072 283677 0.7190 +84072 283847 0.6480 +84072 284071 0.6120 +84072 285498 0.6480 +84072 317761 0.5200 +84072 339834 0.9480 +84072 346673 0.5450 +84072 400629 0.4140 +84072 494188 0.5700 +84072 541466 0.4310 +84072 642636 0.7180 +84072 644186 0.7320 +84072 653808 0.6930 +84072 729475 0.4330 +84072 100526761 0.4290 +84072 101928601 0.6460 +84074 85452 0.4660 +84074 89876 0.6130 +84074 118491 0.6540 +84074 122481 0.5820 +84074 144406 0.6690 +84074 146754 0.5520 +84074 159686 0.5940 +84074 199223 0.6940 +84074 255101 0.4590 +84074 283629 0.5760 +84074 339829 0.6160 +84074 374407 0.5920 +84074 401024 0.6350 +84075 84645 0.4010 +84075 84692 0.4920 +84075 85438 0.4720 +84075 89876 0.4700 +84075 93034 0.4080 +84075 128229 0.4180 +84075 136895 0.5140 +84075 140625 0.4190 +84075 147744 0.5710 +84075 149018 0.4550 +84075 151254 0.4170 +84075 200162 0.4760 +84075 202500 0.4150 +84075 401024 0.4760 +84075 619208 0.5180 +84075 100507055 0.5940 +84076 84532 0.4440 +84076 87178 0.4150 +84076 92399 0.4040 +84076 92483 0.9090 +84076 92579 0.8470 +84076 114112 0.4980 +84076 129831 0.7240 +84076 130589 0.4450 +84076 134266 0.5040 +84076 137362 0.4210 +84076 151112 0.7230 +84076 160287 0.9050 +84076 221823 0.9530 +84076 283677 0.5320 +84076 286451 0.4450 +84076 387712 0.8900 +84076 400745 0.5380 +84076 414328 0.4970 +84076 441531 0.8550 +84076 729020 0.9940 +84077 85376 0.5060 +84077 118487 0.4720 +84077 122704 0.4210 +84077 126382 0.4470 +84077 133491 0.5760 +84077 143678 0.5700 +84077 146378 0.4190 +84077 146852 0.4230 +84077 150221 0.5440 +84077 161931 0.4080 +84077 219417 0.4310 +84077 340900 0.4790 +84077 342346 0.5700 +84077 344905 0.4280 +84077 374973 0.5340 +84077 440804 0.5810 +84077 645432 0.4480 +84077 728637 0.4100 +84078 84259 0.5050 +84078 84541 0.9490 +84078 84861 0.9010 +84078 89890 0.9950 +84078 90293 0.9100 +84078 131377 0.7200 +84078 149951 0.4990 +84078 150684 0.4990 +84078 154881 0.4080 +84078 161742 0.4700 +84078 170622 0.5080 +84078 200734 0.4380 +84078 200845 0.5720 +84078 253980 0.9040 +84078 339745 0.9210 +84078 387338 0.4870 +84078 390594 0.5330 +84078 399473 0.4290 +84078 440738 0.5020 +84078 553115 0.7230 +84079 89781 0.5480 +84079 91544 0.5390 +84079 112936 0.4960 +84079 117177 0.5870 +84079 124995 0.5520 +84079 199223 0.4690 +84079 219931 0.4030 +84079 253260 0.4930 +84079 440854 0.5990 +84080 84179 0.4270 +84080 92305 0.5600 +84080 130162 0.5610 +84080 246329 0.4200 +84080 338692 0.4540 +84081 84811 0.4160 +84081 85313 0.6540 +84081 118881 0.4140 +84081 163859 0.5770 +84081 374786 0.7250 +84083 84126 0.4800 +84083 84464 0.5610 +84083 84893 0.7740 +84083 114826 0.4140 +84083 196074 0.4210 +84083 201973 0.7260 +84083 253714 0.5080 +84083 257218 0.4430 +84083 259282 0.6030 +84083 392636 0.4270 +84085 85477 0.4350 +84085 123879 0.5360 +84085 257218 0.6860 +84100 84455 0.4920 +84100 92482 0.8400 +84100 129880 0.7600 +84100 131544 0.6600 +84100 157657 0.4180 +84100 166379 0.5530 +84101 93624 0.4710 +84101 112869 0.6100 +84101 114803 0.5250 +84101 115560 0.7900 +84101 116540 0.5050 +84101 126119 0.5240 +84101 148266 0.7870 +84101 165918 0.5120 +84101 221302 0.6420 +84101 255626 0.5100 +84101 284390 0.7840 +84102 84255 0.4460 +84102 93380 0.4520 +84102 123606 0.5080 +84102 140803 0.7540 +84102 145389 0.4660 +84102 149461 0.4240 +84102 152519 0.4670 +84103 84450 0.5780 +84103 93034 0.4410 +84103 198437 0.6700 +84103 645432 0.5070 +84103 100526794 0.4460 +84105 84842 0.4910 +84105 121278 0.9770 +84105 133482 0.4360 +84105 137362 0.5510 +84105 161779 0.5540 +84105 347732 0.9360 +84105 389434 0.8080 +84106 91662 0.4010 +84106 126014 0.4290 +84106 140545 0.5010 +84106 147699 0.4310 +84106 150372 0.4380 +84106 199675 0.4620 +84107 92737 0.8160 +84107 131096 0.4500 +84107 402665 0.7010 +84108 84333 0.9690 +84108 84678 0.7190 +84108 84733 0.9840 +84108 84759 0.9830 +84108 112398 0.5110 +84108 112399 0.4990 +84108 119504 0.9000 +84108 121536 0.9460 +84108 132625 0.5880 +84108 140459 0.5430 +84108 164684 0.6260 +84108 166979 0.5450 +84108 171023 0.9130 +84108 246184 0.9000 +84108 404281 0.5630 +84108 100170841 0.6300 +84108 100532731 0.8230 +84109 115557 0.4990 +84109 347148 0.9990 +84124 84307 0.7990 +84124 89839 0.4660 +84124 441869 0.4280 +84124 101060684 0.4780 +84125 92565 0.4570 +84125 118491 0.4940 +84125 144448 0.5320 +84125 146845 0.5670 +84125 168090 0.4320 +84125 200162 0.5250 +84125 219699 0.4150 +84126 84464 0.4850 +84126 84515 0.5980 +84126 84902 0.6080 +84126 90381 0.5630 +84126 91442 0.8070 +84126 91801 0.4280 +84126 116028 0.6760 +84126 144715 0.5840 +84126 165918 0.4930 +84126 199990 0.5560 +84126 201254 0.5530 +84126 201973 0.4550 +84126 253714 0.4090 +84126 284086 0.5460 +84126 378708 0.5580 +84128 84135 0.9990 +84128 84154 0.9250 +84128 84172 0.7890 +84128 84294 0.4890 +84128 84365 0.8150 +84128 84524 0.4300 +84128 84549 0.7540 +84128 84916 0.9990 +84128 84946 0.7860 +84128 88745 0.7100 +84128 90381 0.6170 +84128 90441 0.4350 +84128 91582 0.8080 +84128 91694 0.4600 +84128 91893 0.4810 +84128 92856 0.9970 +84128 94101 0.4130 +84128 112840 0.5680 +84128 115752 0.4040 +84128 116966 0.7180 +84128 117246 0.8050 +84128 118460 0.6460 +84128 126402 0.6180 +84128 126917 0.4130 +84128 128061 0.8220 +84128 140032 0.6180 +84128 146212 0.4390 +84128 150709 0.5230 +84128 153443 0.5710 +84128 161424 0.6240 +84128 165545 0.6330 +84128 221078 0.6970 +84128 221830 0.4150 +84128 345630 0.9030 +84128 641776 0.4400 +84128 643909 0.4400 +84128 692312 0.5590 +84128 728524 0.4400 +84128 100996746 0.4400 +84128 105180390 0.4400 +84128 105180391 0.4400 +84129 84245 0.8220 +84129 84263 0.8180 +84129 84532 0.4350 +84129 124359 0.4730 +84129 126129 0.4450 +84129 132949 0.4170 +84129 140856 0.4900 +84129 142679 0.4410 +84129 145482 0.4460 +84129 219743 0.4870 +84129 253175 0.4840 +84129 284273 0.4610 +84129 341392 0.4270 +84129 376497 0.4660 +84129 550643 0.4650 +84129 109703458 0.5860 +84131 84140 0.4160 +84131 84984 0.4290 +84131 91544 0.4530 +84131 93323 0.5220 +84131 93594 0.4900 +84131 95681 0.4960 +84131 115106 0.5350 +84131 117177 0.5040 +84131 124590 0.4120 +84131 130560 0.5010 +84131 132320 0.4810 +84131 157570 0.4100 +84131 157657 0.5670 +84131 159989 0.4760 +84131 192111 0.4190 +84131 254173 0.4930 +84131 282809 0.4420 +84131 388595 0.5200 +84131 728642 0.5070 +84132 84133 0.4050 +84132 159195 0.4030 +84132 160335 0.4310 +84132 221302 0.5740 +84132 284654 0.4310 +84133 84319 0.4820 +84133 84870 0.9900 +84133 89780 0.7490 +84133 147111 0.5430 +84133 147495 0.5470 +84133 223082 0.4470 +84133 284654 0.9990 +84133 340419 0.9990 +84133 343637 0.9760 +84133 346673 0.4120 +84133 643136 0.5060 +84134 84303 0.5970 +84134 84524 0.4380 +84134 92609 0.7270 +84134 113444 0.4360 +84134 117159 0.5400 +84134 125988 0.5470 +84134 131474 0.4260 +84134 139322 0.5400 +84134 144100 0.5470 +84134 148109 0.4030 +84134 149345 0.4400 +84134 340348 0.5500 +84134 345778 0.8750 +84134 387990 0.8260 +84134 401505 0.8050 +84134 440574 0.6340 +84134 100188893 0.8430 +84134 100287932 0.6910 +84135 84154 0.7400 +84135 84172 0.8040 +84135 84193 0.5240 +84135 84294 0.7260 +84135 84365 0.5630 +84135 84549 0.5860 +84135 84618 0.5200 +84135 84916 0.9990 +84135 84946 0.7120 +84135 85476 0.4200 +84135 88745 0.6530 +84135 90381 0.6340 +84135 91298 0.4820 +84135 91582 0.8030 +84135 92856 0.9940 +84135 93034 0.5200 +84135 113444 0.8350 +84135 115752 0.4670 +84135 116966 0.5790 +84135 117246 0.7540 +84135 118460 0.7020 +84135 126402 0.6940 +84135 128061 0.8030 +84135 140032 0.6290 +84135 146212 0.5510 +84135 153443 0.6030 +84135 165545 0.4770 +84135 221830 0.5730 +84135 266743 0.6840 +84135 345630 0.9110 +84135 641776 0.4510 +84135 643909 0.4510 +84135 728524 0.4510 +84135 100526794 0.5200 +84135 100996746 0.4510 +84135 105180390 0.4510 +84135 105180391 0.4510 +84138 84172 0.4590 +84138 246721 0.4510 +84138 548644 0.4500 +84138 100134938 0.4500 +84138 107983993 0.4500 +84140 92211 0.5500 +84140 94137 0.5270 +84140 130557 0.6050 +84140 134266 0.5630 +84140 134359 0.9400 +84140 145226 0.5610 +84140 150160 0.7790 +84140 157657 0.6090 +84140 167691 0.8150 +84140 169522 0.5010 +84140 197335 0.7120 +84140 261734 0.4430 +84140 282809 0.9520 +84140 339804 0.4230 +84140 346007 0.6900 +84140 375298 0.6960 +84140 388939 0.6450 +84140 768206 0.5820 +84141 92737 0.4100 +84141 114805 0.4140 +84141 114880 0.4300 +84141 157753 0.4040 +84142 84464 0.4070 +84142 84954 0.4050 +84142 85235 0.4990 +84142 85236 0.5190 +84142 92815 0.5290 +84142 113510 0.5820 +84142 114803 0.4430 +84142 128312 0.5160 +84142 150483 0.4650 +84142 165918 0.7760 +84142 221613 0.4990 +84142 255626 0.5140 +84142 317772 0.4990 +84142 348654 0.4490 +84144 92400 0.4390 +84144 116840 0.4650 +84144 126382 0.4110 +84144 148423 0.4770 +84144 348654 0.4270 +84146 91298 0.5220 +84146 134285 0.4430 +84146 147040 0.4260 +84146 149473 0.4990 +84146 153222 0.4340 +84146 201973 0.5100 +84146 254225 0.5010 +84146 283375 0.6870 +84146 283489 0.5200 +84146 284695 0.4690 +84146 285513 0.5110 +84146 643136 0.4900 +84146 646960 0.5110 +84148 84289 0.4320 +84148 84661 0.6850 +84148 91392 0.4420 +84148 92292 0.5420 +84148 94239 0.6540 +84148 124944 0.9090 +84148 125476 0.9050 +84148 151050 0.7790 +84148 197407 0.4830 +84148 284058 0.9960 +84148 339287 0.9950 +84148 345651 0.6140 +84148 353274 0.4300 +84148 374900 0.4190 +84148 387893 0.5620 +84148 440093 0.5820 +84148 440686 0.5860 +84148 653604 0.5720 +84148 728294 0.4580 +84148 100529209 0.5400 +84152 84299 0.4730 +84152 84687 0.6780 +84152 84867 0.5560 +84152 84930 0.5610 +84152 85406 0.4540 +84152 91860 0.4180 +84152 93210 0.5130 +84152 93986 0.4640 +84152 140679 0.4460 +84152 146713 0.6390 +84152 148281 0.4050 +84152 163688 0.4180 +84152 170825 0.5440 +84152 200539 0.5060 +84152 220074 0.4060 +84152 340419 0.5200 +84152 440093 0.5290 +84152 440686 0.5290 +84152 653604 0.5350 +84153 115004 0.4450 +84153 340061 0.4750 +84154 84172 0.8310 +84154 84265 0.4030 +84154 84273 0.6020 +84154 84294 0.8680 +84154 84310 0.4200 +84154 84319 0.6050 +84154 84365 0.9990 +84154 84549 0.9800 +84154 84916 0.9090 +84154 84946 0.9240 +84154 88745 0.6150 +84154 90121 0.8710 +84154 90441 0.5220 +84154 90826 0.4900 +84154 91646 0.4450 +84154 91893 0.6190 +84154 91942 0.6090 +84154 92170 0.5830 +84154 92856 0.9520 +84154 112495 0.6650 +84154 112840 0.4960 +84154 115708 0.5340 +84154 115939 0.4430 +84154 116832 0.6980 +84154 116966 0.8450 +84154 117246 0.9810 +84154 124454 0.4260 +84154 126637 0.4680 +84154 126789 0.4120 +84154 135656 0.4280 +84154 140801 0.4220 +84154 142940 0.6130 +84154 146212 0.8240 +84154 153443 0.6260 +84154 155368 0.5930 +84154 161424 0.8330 +84154 162427 0.4180 +84154 165545 0.7710 +84154 200916 0.5820 +84154 201965 0.4010 +84154 203068 0.4100 +84154 221078 0.9310 +84154 221830 0.9090 +84154 254268 0.5410 +84154 285855 0.8450 +84154 317781 0.4690 +84154 343068 0.4040 +84154 343070 0.4040 +84154 344758 0.4400 +84154 345630 0.6880 +84154 377677 0.5610 +84154 387129 0.8350 +84154 387338 0.6040 +84154 390999 0.4040 +84154 391002 0.4040 +84154 400506 0.4800 +84154 400735 0.4040 +84154 400736 0.4040 +84154 440560 0.4040 +84154 440561 0.4040 +84154 441873 0.4040 +84154 645359 0.4040 +84154 653619 0.4040 +84154 692312 0.8310 +84154 729528 0.4040 +84154 100505478 0.8170 +84154 100526842 0.6620 +84154 101929983 0.4040 +84159 84295 0.4650 +84159 84435 0.4050 +84159 89932 0.4530 +84159 114803 0.4260 +84159 196528 0.6740 +84159 219621 0.4240 +84159 219790 0.5200 +84159 253461 0.4150 +84159 255626 0.6280 +84159 286530 0.4770 +84159 388272 0.8520 +84159 653604 0.5350 +84162 90070 0.4690 +84162 117289 0.7400 +84162 128272 0.5410 +84162 132332 0.4320 +84162 132612 0.9670 +84162 157680 0.4200 +84162 259173 0.5530 +84162 285527 0.4670 +84163 84277 0.4550 +84163 135892 0.6370 +84163 378108 0.4070 +84163 389524 0.9650 +84163 390980 0.4320 +84163 554282 0.4040 +84163 653361 0.7870 +84163 653464 0.4160 +84163 653820 0.4070 +84164 90506 0.4210 +84164 90850 0.7350 +84164 91419 0.5400 +84164 91603 0.4780 +84164 125150 0.5400 +84164 126074 0.5400 +84164 221120 0.9570 +84164 286257 0.5780 +84164 374395 0.4700 +84164 105375355 0.5400 +84166 84282 0.7640 +84166 89122 0.5520 +84166 91543 0.4120 +84166 91662 0.6440 +84166 94240 0.4130 +84166 114548 0.9300 +84166 115361 0.4950 +84166 115362 0.5220 +84166 151636 0.5370 +84166 171389 0.8570 +84166 197358 0.6450 +84166 199713 0.7980 +84166 338321 0.5100 +84167 126070 0.4790 +84167 148137 0.7060 +84167 284001 0.4040 +84168 91860 0.4860 +84168 118429 0.9430 +84168 155054 0.4820 +84168 163688 0.4860 +84168 219477 0.4700 +84171 84289 0.5210 +84171 84695 0.5910 +84171 84955 0.6190 +84171 118487 0.4110 +84172 84232 0.4290 +84172 84246 0.5480 +84172 84265 0.5940 +84172 84319 0.4020 +84172 84337 0.7450 +84172 84365 0.7050 +84172 84520 0.6280 +84172 84549 0.7090 +84172 84893 0.5800 +84172 84916 0.8380 +84172 84946 0.7240 +84172 85236 0.5550 +84172 85456 0.5190 +84172 85476 0.7570 +84172 87178 0.8020 +84172 91875 0.7060 +84172 91893 0.4310 +84172 92399 0.5740 +84172 92856 0.7770 +84172 92935 0.4870 +84172 94239 0.4050 +84172 116541 0.4190 +84172 116966 0.6300 +84172 117246 0.7120 +84172 122622 0.4410 +84172 123169 0.5150 +84172 124454 0.5710 +84172 126402 0.7690 +84172 127428 0.4900 +84172 128312 0.5550 +84172 140801 0.7150 +84172 142940 0.4740 +84172 146212 0.4520 +84172 149483 0.4200 +84172 161424 0.4110 +84172 165545 0.7000 +84172 170082 0.4790 +84172 171568 0.9060 +84172 203068 0.4770 +84172 219927 0.7110 +84172 221078 0.8420 +84172 221830 0.9990 +84172 246721 0.5950 +84172 255308 0.4330 +84172 255626 0.5550 +84172 284119 0.5010 +84172 285855 0.7390 +84172 340602 0.4200 +84172 343068 0.5640 +84172 343070 0.5640 +84172 345630 0.7890 +84172 347487 0.6780 +84172 387129 0.7150 +84172 387338 0.5100 +84172 390999 0.5640 +84172 391002 0.5640 +84172 400735 0.5640 +84172 400736 0.5640 +84172 404672 0.5800 +84172 440560 0.5640 +84172 440561 0.5640 +84172 441873 0.5640 +84172 448834 0.4200 +84172 474382 0.5440 +84172 548644 0.5950 +84172 641776 0.6010 +84172 643909 0.6010 +84172 645359 0.5640 +84172 653604 0.5920 +84172 653619 0.5640 +84172 653689 0.4490 +84172 728340 0.4700 +84172 728524 0.6010 +84172 728689 0.4310 +84172 729528 0.5640 +84172 100134938 0.5330 +84172 100287482 0.6780 +84172 100505478 0.7150 +84172 100526842 0.8000 +84172 100996746 0.6010 +84172 101929983 0.5640 +84172 105180390 0.6010 +84172 105180391 0.6010 +84172 107983993 0.5330 +84172 114483834 0.5380 +84172 122455342 0.4200 +84173 85378 0.4300 +84173 151516 0.4300 +84173 255520 0.4320 +84173 284948 0.6970 +84173 388325 0.4130 +84173 388969 0.4040 +84174 92283 0.6130 +84174 115548 0.4780 +84174 122809 0.6150 +84174 146850 0.5500 +84174 441925 0.5520 +84174 110117498 0.5670 +84179 256471 0.4470 +84181 85456 0.4590 +84181 152185 0.4340 +84181 171023 0.4320 +84181 192111 0.4240 +84181 252969 0.5930 +84182 84542 0.4180 +84182 85453 0.4320 +84182 128646 0.4180 +84182 130535 0.4550 +84182 160851 0.4340 +84182 339804 0.4470 +84182 375190 0.4550 +84186 84240 0.5690 +84186 115752 0.5850 +84186 118460 0.6250 +84186 129563 0.5220 +84186 196441 0.7640 +84186 389206 0.4180 +84187 84631 0.4630 +84187 84775 0.4070 +84187 157769 0.5310 +84187 159013 0.4680 +84187 400120 0.5300 +84187 727866 0.4440 +84188 84955 0.6290 +84188 85465 0.4250 +84188 91452 0.4400 +84188 132949 0.5160 +84188 158835 0.4100 +84188 387521 0.5100 +84188 387522 0.4300 +84189 114991 0.4290 +84189 340990 0.4590 +84189 387700 0.4040 +84189 388630 0.4430 +84189 100144748 0.4040 +84190 84233 0.5420 +84190 84326 0.5530 +84190 84328 0.4630 +84190 127933 0.5100 +84190 131965 0.4260 +84190 149281 0.4740 +84190 151194 0.4630 +84190 155368 0.5370 +84190 170572 0.4500 +84190 196410 0.7480 +84190 196541 0.5800 +84190 220064 0.4010 +84190 285601 0.4270 +84190 339175 0.5280 +84190 399818 0.8000 +84190 728464 0.5560 +84190 751071 0.4890 +84191 84267 0.4780 +84191 91543 0.4700 +84193 84444 0.4320 +84193 84661 0.5020 +84193 92342 0.5770 +84193 114826 0.4140 +84193 133383 0.4320 +84193 138199 0.6050 +84193 150572 0.4600 +84193 221143 0.4690 +84193 317762 0.4920 +84193 387893 0.4090 +84193 653604 0.6140 +84196 84669 0.5100 +84196 84749 0.5700 +84196 84993 0.5460 +84196 114803 0.4420 +84196 126119 0.4340 +84196 139562 0.4220 +84196 159195 0.4390 +84196 221302 0.5830 +84196 221927 0.4110 +84197 84376 0.4690 +84197 84892 0.8920 +84197 91461 0.7460 +84197 120071 0.6540 +84197 124936 0.4200 +84197 133584 0.4180 +84197 138050 0.5290 +84197 144404 0.4380 +84197 148789 0.9870 +84197 253782 0.4610 +84197 375790 0.4570 +84197 388650 0.4460 +84197 390081 0.5200 +84197 729920 0.7060 +84203 84519 0.4510 +84203 84817 0.4260 +84203 114112 0.5120 +84203 124626 0.4580 +84203 124912 0.4640 +84203 145258 0.5040 +84203 158046 0.5060 +84203 339291 0.4610 +84203 347736 0.5220 +84203 404636 0.4260 +84203 642597 0.4310 +84206 84530 0.4090 +84206 92312 0.5610 +84206 126298 0.4490 +84206 133121 0.5320 +84206 147906 0.4180 +84206 148014 0.4360 +84210 92591 0.4280 +84210 136319 0.4280 +84210 136991 0.4490 +84210 139170 0.4440 +84210 140456 0.4120 +84210 140458 0.4430 +84210 142685 0.4800 +84210 142689 0.4270 +84210 157567 0.4240 +84210 387104 0.4200 +84210 390538 0.4730 +84210 445571 0.4420 +84210 554282 0.4180 +84210 644019 0.4420 +84210 653820 0.4070 +84215 113622 0.4410 +84215 116092 0.7260 +84215 146212 0.4790 +84215 374655 0.5180 +84215 727832 0.4180 +84216 85437 0.5120 +84216 114134 0.5290 +84216 138429 0.4400 +84216 153396 0.5090 +84216 166348 0.5250 +84216 196527 0.4420 +84216 254827 0.4600 +84216 283464 0.4580 +84216 392197 0.4450 +84217 129530 0.4490 +84217 143241 0.5330 +84217 149465 0.4280 +84217 162968 0.4790 +84217 284992 0.4800 +84217 728621 0.4730 +84217 101928603 0.6540 +84218 124773 0.4300 +84218 146861 0.4470 +84218 256223 0.5700 +84218 284099 0.4700 +84218 388333 0.4330 +84218 643664 0.4470 +84218 728279 0.4160 +84218 729873 0.4630 +84219 84315 0.4770 +84219 84335 0.4400 +84219 84720 0.4480 +84219 84861 0.5240 +84219 84878 0.6330 +84219 84955 0.6190 +84219 90423 0.5040 +84219 90678 0.4450 +84219 96459 0.4930 +84219 124401 0.5090 +84219 127124 0.5080 +84219 143686 0.8270 +84219 144577 0.9980 +84219 153129 0.5830 +84219 154743 0.4980 +84219 155066 0.5130 +84219 197335 0.5000 +84219 201163 0.6460 +84219 220441 0.4440 +84219 245972 0.5170 +84219 245973 0.5030 +84219 389541 0.7770 +84219 652968 0.9870 +84219 729438 0.8980 +84220 91409 0.4420 +84220 96626 0.6010 +84220 283383 0.7030 +84220 402569 0.4530 +84220 644591 0.5870 +84220 645142 0.5930 +84220 653505 0.5970 +84220 653598 0.5940 +84220 728945 0.6810 +84220 730262 0.6600 +84220 100101267 0.4180 +84220 100101467 0.4220 +84220 100133093 0.5730 +84220 100288695 0.6500 +84220 105371242 0.5760 +84221 84699 0.4050 +84221 84960 0.4040 +84221 123722 0.4650 +84221 140732 0.5310 +84221 148811 0.6260 +84221 155368 0.4690 +84221 200634 0.5100 +84221 201134 0.4640 +84221 374618 0.4340 +84221 387601 0.4160 +84223 84229 0.7140 +84223 84288 0.4660 +84223 85478 0.5230 +84223 114791 0.4400 +84223 116369 0.4670 +84223 126820 0.5500 +84223 132141 0.4730 +84223 202500 0.7080 +84223 220047 0.5720 +84223 222235 0.5940 +84223 283417 0.4280 +84224 158724 0.4840 +84224 170062 0.4040 +84224 220929 0.4020 +84224 105371346 0.4720 +84224 112268164 0.4650 +84225 84515 0.4010 +84225 93426 0.5070 +84225 122402 0.5420 +84225 202309 0.4100 +84225 254528 0.5310 +84225 374768 0.5320 +84229 84288 0.5850 +84229 85478 0.8430 +84229 90506 0.5490 +84229 92749 0.8600 +84229 114327 0.5210 +84229 115811 0.5430 +84229 118491 0.4500 +84229 122481 0.4780 +84229 123872 0.4160 +84229 126669 0.4380 +84229 140700 0.4560 +84229 146279 0.4310 +84229 152206 0.4990 +84229 158067 0.4520 +84229 160762 0.4440 +84229 161502 0.5330 +84229 164395 0.5550 +84229 196385 0.4870 +84229 200728 0.4740 +84229 201625 0.4050 +84229 202500 0.8380 +84229 221421 0.5350 +84229 222235 0.6460 +84229 254173 0.5970 +84229 257177 0.5650 +84229 257236 0.4740 +84229 286207 0.5880 +84229 339829 0.6770 +84229 345895 0.5850 +84229 374407 0.4980 +84229 387707 0.4140 +84229 401551 0.4590 +84230 94015 0.6690 +84230 145581 0.4650 +84230 220296 0.5070 +84230 255022 0.4050 +84230 347731 0.4280 +84230 375616 0.5030 +84231 84993 0.5660 +84231 93550 0.5580 +84231 112939 0.4630 +84231 143384 0.4320 +84231 143630 0.5580 +84231 164153 0.5580 +84231 171222 0.4070 +84232 84265 0.6560 +84232 84337 0.5310 +84232 84733 0.4990 +84232 93621 0.4710 +84232 115939 0.4410 +84232 153129 0.4580 +84232 171568 0.4330 +84232 389541 0.4810 +84232 440275 0.4330 +84232 727957 0.4190 +84233 84816 0.7210 +84233 84896 0.5560 +84233 84928 0.5400 +84233 90407 0.5130 +84233 90701 0.4470 +84233 91137 0.4320 +84233 91574 0.4350 +84233 94081 0.4660 +84233 115209 0.4440 +84233 126328 0.4650 +84233 131076 0.5340 +84233 147007 0.4470 +84233 155368 0.5190 +84233 219927 0.4380 +84233 254863 0.4350 +84233 401505 0.4820 +84233 440574 0.4320 +84233 494513 0.4140 +84236 113278 0.4220 +84236 162494 0.6020 +84236 401265 0.4310 +84239 169841 0.5130 +84240 84294 0.4600 +84240 84365 0.6060 +84240 84549 0.5660 +84240 84946 0.4750 +84240 84954 0.4500 +84240 129531 0.4370 +84240 171546 0.4560 +84243 283576 0.5090 +84245 90050 0.5400 +84245 123263 0.4760 +84245 252839 0.4480 +84245 286204 0.4160 +84245 729020 0.6030 +84246 84498 0.5010 +84246 85441 0.5070 +84246 90390 0.9990 +84246 90637 0.4290 +84246 112950 0.9990 +84246 116931 0.9020 +84246 121504 0.8120 +84246 124817 0.4470 +84246 126961 0.8060 +84246 129685 0.8090 +84246 133522 0.5400 +84246 134111 0.4540 +84246 149483 0.4530 +84246 153642 0.4370 +84246 246721 0.5760 +84246 256643 0.5400 +84246 286749 0.5250 +84246 333932 0.8060 +84246 340075 0.4550 +84246 340602 0.4530 +84246 347527 0.5400 +84246 387332 0.5710 +84246 399949 0.4790 +84246 400569 0.9990 +84246 404672 0.8120 +84246 448834 0.4530 +84246 548644 0.5760 +84246 554313 0.8120 +84246 653604 0.8150 +84246 728340 0.5690 +84246 100134938 0.5060 +84246 101928601 0.4500 +84246 107983993 0.5060 +84246 122455342 0.4530 +84247 84968 0.5310 +84247 85364 0.4210 +84247 203430 0.7470 +84247 340595 0.8100 +84247 388015 0.6730 +84248 84271 0.9520 +84248 84321 0.8270 +84248 84324 0.9870 +84248 91298 0.4080 +84248 124245 0.4110 +84248 129401 0.4790 +84248 147339 0.4830 +84248 348995 0.4260 +84248 100101267 0.4160 +84249 84457 0.4050 +84249 92840 0.4310 +84249 94137 0.4460 +84250 84296 0.4670 +84250 84464 0.4190 +84250 134187 0.4280 +84250 135458 0.4070 +84250 144715 0.6380 +84250 165918 0.6000 +84250 169044 0.4650 +84250 197370 0.8040 +84250 254225 0.5370 +84250 286053 0.7650 +84250 387082 0.5750 +84250 493861 0.6180 +84251 85021 0.8890 +84251 85439 0.5380 +84251 91056 0.7600 +84251 114987 0.6060 +84251 115548 0.5730 +84251 122616 0.5400 +84251 126520 0.4120 +84251 130340 0.5690 +84251 146212 0.4120 +84251 150350 0.5980 +84251 200132 0.7190 +84251 253959 0.4550 +84253 84897 0.4930 +84253 85397 0.5210 +84253 138199 0.5370 +84253 386677 0.4180 +84254 91860 0.9850 +84254 163688 0.9850 +84254 221061 0.4260 +84255 84620 0.4380 +84255 84641 0.4970 +84255 84804 0.5230 +84256 124222 0.6060 +84256 159686 0.4580 +84256 200014 0.4240 +84256 254225 0.4050 +84256 260429 0.4170 +84258 90019 0.4720 +84258 90353 0.4520 +84258 94030 0.4880 +84258 94032 0.4140 +84258 127255 0.4210 +84258 148281 0.7340 +84258 284361 0.4340 +84258 341359 0.8040 +84258 342918 0.5650 +84259 84541 0.5080 +84259 84861 0.5040 +84259 84993 0.5410 +84259 89890 0.5130 +84259 90135 0.5050 +84259 90293 0.5440 +84259 122769 0.5460 +84259 123879 0.5580 +84259 140739 0.8530 +84259 143384 0.4020 +84259 149951 0.5070 +84259 150684 0.5030 +84259 154881 0.4990 +84259 170622 0.5110 +84259 196541 0.4730 +84259 200845 0.5040 +84259 390594 0.5070 +84259 646643 0.5240 +84260 84883 0.5040 +84260 90480 0.7000 +84260 92335 0.5190 +84260 93621 0.4150 +84260 112398 0.5560 +84260 112399 0.5260 +84260 112939 0.4310 +84260 137902 0.4460 +84260 149708 0.4220 +84260 152206 0.5960 +84260 219287 0.4090 +84260 440093 0.4530 +84260 440686 0.4530 +84260 653604 0.4530 +84261 90324 0.4200 +84261 123879 0.5030 +84261 285231 0.5440 +84262 90639 0.4370 +84262 115330 0.4490 +84262 116225 0.4700 +84262 122706 0.4210 +84262 128344 0.4260 +84262 199857 0.4540 +84262 221409 0.5120 +84262 389362 0.9990 +84263 84529 0.5270 +84263 84532 0.7270 +84263 84693 0.5680 +84263 84816 0.5390 +84263 84869 0.4490 +84263 112812 0.6490 +84263 116285 0.7000 +84263 123876 0.7340 +84263 124359 0.8070 +84263 124637 0.4070 +84263 126133 0.6860 +84263 132949 0.5430 +84263 137872 0.8890 +84263 150274 0.4440 +84263 157869 0.8040 +84263 160428 0.6860 +84263 197322 0.8040 +84263 221711 0.4180 +84263 253175 0.8100 +84263 253190 0.4440 +84263 254042 0.4370 +84263 283209 0.4700 +84263 284273 0.6310 +84263 284422 0.7800 +84263 285555 0.5360 +84263 338699 0.5110 +84263 340390 0.4530 +84263 341392 0.7000 +84263 348158 0.7420 +84263 376497 0.8180 +84263 390916 0.4760 +84263 109703458 0.5480 +84263 122405565 0.7800 +84264 84656 0.4360 +84264 84842 0.4390 +84264 92340 0.4510 +84264 124093 0.4610 +84264 126789 0.4180 +84264 153364 0.5070 +84264 255374 0.5150 +84264 339448 0.4470 +84264 642475 0.4120 +84264 100130890 0.4400 +84264 100131187 0.4400 +84265 112495 0.5040 +84265 114803 0.4600 +84265 128077 0.6440 +84265 148741 0.5840 +84265 171568 0.9980 +84265 200030 0.4420 +84265 200035 0.4490 +84265 284615 0.5840 +84265 653519 0.5420 +84266 84964 0.8760 +84266 91801 0.8120 +84266 113246 0.4070 +84266 121642 0.7590 +84266 125988 0.5800 +84266 126328 0.5750 +84266 140700 0.5320 +84266 221120 0.6480 +84266 374291 0.5480 +84266 441150 0.4190 +84267 256472 0.4480 +84268 119504 0.4860 +84268 246243 0.4030 +84269 84303 0.8330 +84269 90639 0.6110 +84269 125988 0.9490 +84269 131474 0.8140 +84269 139322 0.8050 +84269 388753 0.5110 +84269 400916 0.6780 +84269 100272147 0.5650 +84270 84811 0.4450 +84270 114800 0.4800 +84270 139322 0.5330 +84270 140458 0.4300 +84270 203328 0.5410 +84270 221927 0.4080 +84270 283229 0.5910 +84271 84321 0.7860 +84271 84324 0.9950 +84271 129401 0.5180 +84271 199746 0.5400 +84271 201161 0.6170 +84271 345630 0.4360 +84271 348995 0.5220 +84271 392517 0.4360 +84271 728343 0.5030 +84271 100101267 0.5780 +84272 84978 0.4830 +84272 90522 0.6740 +84272 130814 0.4260 +84272 147138 0.4070 +84272 388569 0.5400 +84272 643853 0.4510 +84272 100507421 0.4020 +84273 84365 0.7270 +84273 84545 0.5240 +84273 84549 0.5980 +84273 84705 0.6250 +84273 84769 0.4350 +84273 84881 0.7210 +84273 84946 0.4200 +84273 85865 0.6980 +84273 87178 0.5550 +84273 90441 0.4040 +84273 92170 0.8230 +84273 92399 0.4440 +84273 92856 0.4320 +84273 114902 0.4260 +84273 115416 0.8620 +84273 117246 0.5440 +84273 124454 0.6500 +84273 126789 0.4330 +84273 130916 0.5990 +84273 142940 0.4220 +84273 158234 0.7600 +84273 219927 0.5910 +84273 221078 0.4410 +84273 221785 0.4470 +84273 285367 0.6240 +84273 285855 0.5690 +84273 387129 0.5600 +84273 387338 0.7970 +84273 100505478 0.5600 +84273 100526842 0.4190 +84274 85450 0.4400 +84274 89822 0.4270 +84274 90956 0.6540 +84274 92002 0.4670 +84274 92558 0.4310 +84274 93058 0.7020 +84274 112812 0.5120 +84274 116540 0.4280 +84274 131096 0.4050 +84274 160760 0.4320 +84274 162073 0.4400 +84274 165257 0.4250 +84274 203054 0.6150 +84274 256356 0.4470 +84274 286148 0.5040 +84274 374946 0.4080 +84274 613227 0.7850 +84274 100131801 0.4580 +84275 84328 0.5370 +84275 147407 0.5680 +84275 199953 0.5960 +84275 401612 0.5400 +84276 84542 0.8280 +84276 91978 0.9710 +84276 117246 0.5170 +84276 130733 0.6140 +84277 84690 0.4550 +84277 113791 0.4250 +84277 118460 0.5770 +84277 124930 0.5160 +84277 131118 0.4490 +84277 135886 0.5110 +84277 135892 0.4010 +84277 155382 0.4090 +84277 161753 0.4390 +84277 201595 0.4970 +84277 348793 0.5110 +84277 374291 0.4250 +84277 389524 0.4380 +84277 646658 0.4670 +84279 115399 0.4310 +84279 119559 0.5850 +84279 136242 0.6220 +84279 283927 0.5000 +84279 343099 0.5880 +84280 92799 0.5870 +84280 115207 0.4820 +84280 130535 0.4180 +84280 146212 0.6410 +84280 147040 0.5050 +84280 149466 0.4080 +84280 154881 0.4290 +84280 200845 0.5060 +84280 222658 0.4740 +84280 253980 0.4780 +84280 283219 0.5160 +84280 283518 0.5790 +84280 284252 0.6390 +84280 386617 0.4810 +84281 92340 0.4180 +84281 150709 0.4310 +84282 84440 0.4830 +84282 85364 0.4030 +84282 85462 0.7630 +84282 85464 0.7630 +84282 89122 0.5870 +84282 114659 0.5710 +84282 115004 0.4250 +84282 135644 0.4490 +84282 442862 0.4780 +84283 125981 0.4010 +84283 149428 0.4160 +84283 154865 0.4910 +84283 196264 0.6500 +84283 388698 0.5140 +84284 84320 0.6130 +84284 91875 0.6760 +84284 120892 0.5100 +84284 122481 0.9060 +84284 124583 0.4030 +84284 158067 0.9410 +84284 196883 0.9030 +84284 221264 0.9120 +84284 377841 0.9290 +84284 400668 0.4180 +84284 654364 0.9450 +84284 102157402 0.9150 +84285 128387 0.5210 +84285 153643 0.4020 +84285 387496 0.4780 +84286 84660 0.4140 +84286 91683 0.4710 +84286 120892 0.7200 +84286 161145 0.5730 +84286 219931 0.4660 +84286 100129583 0.4310 +84286 100631383 0.5050 +84287 84328 0.4480 +84287 283871 0.4350 +84287 340481 0.4750 +84287 401647 0.4260 +84288 84547 0.4470 +84288 85478 0.4670 +84288 90141 0.5310 +84288 91860 0.4130 +84288 115811 0.5940 +84288 116228 0.5230 +84288 129285 0.4460 +84288 202500 0.6180 +84288 222235 0.4400 +84288 377007 0.4420 +84289 89797 0.6880 +84289 92715 0.4470 +84289 114826 0.4210 +84289 144404 0.4320 +84289 153527 0.4460 +84289 221895 0.6330 +84289 388324 0.6430 +84289 440093 0.4700 +84289 440686 0.4790 +84289 653604 0.6680 +84289 728294 0.5220 +84290 92291 0.6810 +84290 94005 0.5400 +84290 128077 0.5070 +84290 128869 0.5400 +84290 147968 0.6540 +84290 201456 0.4790 +84290 388743 0.6680 +84290 440854 0.6840 +84292 92359 0.4680 +84292 112399 0.9480 +84292 112479 0.4120 +84292 114034 0.5010 +84292 140730 0.4220 +84292 143884 0.7780 +84292 151903 0.7900 +84293 84833 0.4080 +84293 195827 0.4350 +84293 728378 0.5050 +84294 84319 0.7290 +84294 84365 0.8870 +84294 84549 0.8440 +84294 84916 0.8190 +84294 84946 0.7840 +84294 85437 0.5220 +84294 88745 0.8310 +84294 90121 0.7370 +84294 90390 0.6650 +84294 91893 0.4460 +84294 92856 0.9210 +84294 115708 0.4800 +84294 117246 0.6890 +84294 121006 0.4330 +84294 127253 0.6010 +84294 142940 0.4080 +84294 153443 0.6300 +84294 161424 0.6800 +84294 169026 0.4160 +84294 171568 0.4250 +84294 221078 0.5940 +84294 221830 0.7960 +84294 317781 0.4690 +84294 345630 0.5980 +84294 386682 0.4240 +84294 692312 0.5950 +84295 121536 0.4750 +84295 123169 0.7630 +84295 148479 0.4310 +84295 159090 0.5010 +84295 159091 0.4040 +84295 171023 0.7550 +84295 254065 0.4730 +84295 286530 0.6560 +84296 84515 0.8530 +84296 85456 0.5620 +84296 90381 0.8980 +84296 91687 0.4530 +84296 116211 0.7240 +84296 122769 0.8950 +84296 146909 0.5460 +84296 147841 0.4790 +84296 150094 0.6470 +84296 157570 0.6110 +84296 157777 0.8090 +84296 254394 0.9200 +84298 85352 0.4830 +84298 90441 0.4040 +84298 92797 0.4420 +84298 253827 0.5640 +84298 257019 0.4070 +84298 731220 0.5270 +84299 93210 0.8380 +84299 94103 0.4020 +84299 113246 0.4030 +84299 126299 0.4750 +84299 171568 0.5250 +84299 257202 0.5660 +84299 348303 0.4240 +84299 493869 0.5490 +84300 84316 0.4940 +84300 84987 0.4560 +84300 90624 0.6240 +84300 90639 0.4230 +84300 91942 0.5660 +84300 116228 0.8870 +84300 118487 0.4150 +84300 118490 0.4470 +84300 135154 0.4750 +84300 140823 0.4560 +84300 283951 0.6160 +84300 388753 0.4160 +84300 790955 0.7000 +84301 84993 0.4210 +84301 127933 0.4240 +84301 134510 0.4490 +84301 143630 0.5070 +84301 414301 0.4820 +84302 84720 0.5410 +84302 93210 0.4480 +84302 94005 0.4170 +84302 114987 0.4600 +84302 388531 0.4030 +84303 91137 0.4550 +84303 125988 0.9980 +84303 131474 0.4460 +84303 139322 0.9990 +84303 345778 0.8580 +84303 387990 0.5400 +84303 400916 0.9850 +84303 401505 0.7700 +84303 440574 0.9960 +84303 100188893 0.6230 +84304 90594 0.4180 +84304 120071 0.5330 +84304 126789 0.4760 +84304 145567 0.4090 +84304 146456 0.4270 +84304 167555 0.4900 +84304 200035 0.7460 +84304 254552 0.4980 +84304 256281 0.7870 +84304 283927 0.5450 +84304 390916 0.5100 +84305 84816 0.6940 +84305 92667 0.4150 +84306 84946 0.4730 +84306 128710 0.5580 +84306 199720 0.6660 +84306 266812 0.6590 +84307 84547 0.7850 +84307 84838 0.4730 +84307 84961 0.4180 +84307 114821 0.7260 +84307 146050 0.4830 +84307 158399 0.6520 +84307 342945 0.4500 +84307 387032 0.8400 +84307 100101467 0.8490 +84309 128366 0.4180 +84309 131870 0.5660 +84310 84319 0.4090 +84310 84365 0.5690 +84310 84549 0.6620 +84310 84946 0.4100 +84310 85452 0.4690 +84310 91893 0.4860 +84310 117246 0.5030 +84310 124245 0.4240 +84310 142940 0.4450 +84310 165545 0.4320 +84310 197342 0.4580 +84310 440077 0.4180 +84311 84340 0.8510 +84311 84545 0.8590 +84311 84769 0.5140 +84311 85476 0.8650 +84311 85865 0.8100 +84311 90411 0.4500 +84311 90480 0.9710 +84311 91574 0.8500 +84311 92170 0.8470 +84311 92259 0.4390 +84311 92399 0.8830 +84311 115416 0.8830 +84311 116540 0.9520 +84311 116541 0.9040 +84311 118487 0.8850 +84311 122704 0.9270 +84311 124995 0.9710 +84311 128308 0.8410 +84311 129080 0.4400 +84311 130916 0.8390 +84311 147179 0.4590 +84311 197370 0.4300 +84311 219402 0.7150 +84311 219927 0.8940 +84311 285203 0.4380 +84311 285521 0.6050 +84311 286053 0.4790 +84311 387338 0.8140 +84311 643641 0.5050 +84311 127898561 0.8000 +84312 84337 0.4250 +84312 90316 0.4700 +84312 221937 0.6430 +84312 619279 0.6180 +84312 100316904 0.5010 +84313 84545 0.4780 +84313 84936 0.5200 +84313 89853 0.9540 +84313 91782 0.9920 +84313 92421 0.9570 +84313 93343 0.9780 +84313 128866 0.9740 +84313 137492 0.9790 +84313 148362 0.4930 +84313 155382 0.9430 +84313 390595 0.5400 +84313 100526767 0.9300 +84314 84437 0.5440 +84314 91147 0.8960 +84314 146754 0.4230 +84314 200728 0.9240 +84314 219854 0.6010 +84314 261734 0.7510 +84314 283232 0.4660 +84315 89781 0.4390 +84315 118813 0.4530 +84315 118987 0.4060 +84315 124997 0.4950 +84315 221960 0.9990 +84315 338382 0.6710 +84315 389118 0.4960 +84316 84681 0.4560 +84316 84779 0.9100 +84316 84811 0.5180 +84316 84844 0.4760 +84316 84908 0.4040 +84316 84967 0.8130 +84316 84987 0.4440 +84316 85476 0.4430 +84316 85479 0.4470 +84316 90196 0.6210 +84316 112483 0.5150 +84316 116541 0.4520 +84316 118487 0.4560 +84316 122830 0.9990 +84316 124637 0.4790 +84316 124801 0.5060 +84316 126003 0.4130 +84316 140823 0.4780 +84316 153527 0.5860 +84316 154007 0.4470 +84316 164045 0.4190 +84316 164781 0.4390 +84316 220074 0.4850 +84316 222183 0.4470 +84316 256536 0.4160 +84316 284325 0.5890 +84316 348793 0.4390 +84316 392517 0.4030 +84316 100534599 0.4340 +84316 100996928 0.4560 +84317 85365 0.5380 +84317 90231 0.6100 +84317 116150 0.4510 +84317 127124 0.5900 +84317 137695 0.4140 +84317 147007 0.9970 +84317 147686 0.4880 +84317 155066 0.7340 +84317 245972 0.9850 +84317 245973 0.6610 +84317 255349 0.4830 +84317 285381 0.4920 +84317 440400 0.8290 +84318 91057 0.5450 +84318 115098 0.4410 +84318 121441 0.5010 +84318 152185 0.4800 +84318 162681 0.6450 +84318 165055 0.4850 +84318 195828 0.4850 +84318 197335 0.4810 +84318 283991 0.4770 +84318 284992 0.6160 +84318 285533 0.4570 +84318 440073 0.4330 +84318 101929469 0.5420 +84319 84365 0.7210 +84319 84549 0.4420 +84319 84916 0.4940 +84319 84946 0.8630 +84319 90121 0.4020 +84319 91300 0.4360 +84319 139067 0.4180 +84319 162989 0.4540 +84319 284654 0.4200 +84319 643136 0.7340 +84320 91452 0.4090 +84320 93185 0.4220 +84320 135886 0.4190 +84320 145173 0.4580 +84320 284422 0.4360 +84320 122405565 0.4360 +84321 84324 0.9840 +84321 85437 0.7470 +84321 92856 0.4390 +84321 118424 0.4440 +84321 122665 0.4120 +84321 129401 0.4110 +84321 284346 0.4290 +84321 285237 0.4980 +84321 348995 0.4540 +84321 100101267 0.4610 +84324 85406 0.7140 +84324 129401 0.5570 +84324 340554 0.4040 +84324 348995 0.4540 +84324 100101267 0.4710 +84326 125061 0.4310 +84326 131965 0.4090 +84326 147965 0.4940 +84326 149281 0.4770 +84326 154467 0.4250 +84326 155368 0.5380 +84326 196410 0.4100 +84326 342933 0.4180 +84326 728464 0.4100 +84327 116985 0.5750 +84327 126206 0.7200 +84327 136259 0.5450 +84327 145741 0.4480 +84327 169026 0.4470 +84327 221895 0.4300 +84327 353238 0.7050 +84327 392636 0.4480 +84327 441161 0.7340 +84327 100381270 0.5440 +84328 84795 0.4250 +84328 112970 0.5460 +84328 199953 0.4120 +84329 117144 0.5070 +84329 117155 0.4530 +84329 133060 0.4400 +84329 157855 0.6220 +84329 257062 0.4200 +84329 285335 0.5810 +84329 347732 0.4330 +84329 378807 0.4300 +84329 440699 0.4180 +84329 653361 0.4760 +84329 102723407 0.6620 +84330 90324 0.4390 +84330 203069 0.4200 +84330 220108 0.4390 +84330 284325 0.4460 +84331 118881 0.5410 +84331 124801 0.7450 +84331 283383 0.4010 +84332 84661 0.7020 +84332 91272 0.5740 +84332 115273 0.4560 +84332 143241 0.7120 +84332 146845 0.4600 +84332 199964 0.5100 +84332 219654 0.4400 +84332 259282 0.5490 +84332 339145 0.6130 +84332 387694 0.6460 +84333 84678 0.6820 +84333 84733 0.9740 +84333 84759 0.9860 +84333 119504 0.5470 +84333 121536 0.9290 +84333 132625 0.5590 +84333 140459 0.5400 +84333 143279 0.4480 +84333 166979 0.5450 +84333 171023 0.9040 +84333 246184 0.5400 +84333 404281 0.5590 +84333 100170841 0.5140 +84333 100532731 0.6800 +84334 388021 0.4790 +84335 84922 0.4290 +84335 140733 0.5380 +84335 153129 0.7020 +84335 253260 0.9930 +84335 389541 0.6400 +84336 114827 0.4110 +84336 124801 0.4570 +84336 138716 0.4500 +84336 167691 0.4320 +84336 220382 0.4770 +84337 84524 0.5400 +84337 85403 0.5420 +84337 85456 0.4650 +84337 123169 0.9230 +84337 125150 0.5310 +84337 149483 0.4550 +84337 246721 0.6010 +84337 340602 0.4550 +84337 375748 0.5680 +84337 440574 0.5870 +84337 448834 0.4550 +84337 548644 0.6030 +84337 100134938 0.5210 +84337 107983993 0.5210 +84337 122455342 0.4550 +84340 84545 0.8150 +84340 84705 0.4150 +84340 85476 0.5190 +84340 87178 0.4410 +84340 90480 0.8130 +84340 91574 0.7090 +84340 92399 0.9980 +84340 92935 0.4680 +84340 114882 0.4130 +84340 114883 0.4890 +84340 116540 0.8660 +84340 116541 0.8030 +84340 122704 0.8110 +84340 123263 0.4530 +84340 124454 0.5160 +84340 124995 0.8140 +84340 125170 0.8900 +84340 126402 0.4310 +84340 128308 0.8120 +84340 138428 0.4840 +84340 142940 0.4570 +84340 143244 0.4260 +84340 145853 0.4470 +84340 219402 0.6870 +84340 219927 0.9100 +84340 254042 0.6330 +84340 285315 0.4440 +84340 285521 0.6290 +84340 374659 0.4130 +84340 643338 0.4780 +84340 100526842 0.4820 +84343 89781 0.9960 +84343 126321 0.4040 +84343 136306 0.5290 +84343 146167 0.4420 +84343 282991 0.8730 +84343 283652 0.5500 +84343 388552 0.9880 +84364 84516 0.5170 +84364 84643 0.4990 +84364 89953 0.5340 +84364 90990 0.5050 +84364 93621 0.5410 +84364 93661 0.4990 +84364 114960 0.6010 +84364 124602 0.4990 +84364 128209 0.6660 +84364 140735 0.5040 +84364 146909 0.4990 +84364 147700 0.5080 +84364 195828 0.4270 +84364 221458 0.4990 +84364 283989 0.4580 +84364 285643 0.4990 +84365 84549 0.9980 +84365 84811 0.5120 +84365 84916 0.8500 +84365 84946 0.9240 +84365 85364 0.5030 +84365 85437 0.4580 +84365 88745 0.7090 +84365 90121 0.8270 +84365 90441 0.4990 +84365 91582 0.4400 +84365 91646 0.4840 +84365 91893 0.5830 +84365 92170 0.7320 +84365 92345 0.4050 +84365 92856 0.9340 +84365 93587 0.4290 +84365 115708 0.6920 +84365 116832 0.7980 +84365 116966 0.7040 +84365 117246 0.9970 +84365 123169 0.4180 +84365 124454 0.5090 +84365 142940 0.7580 +84365 144108 0.4960 +84365 146212 0.9260 +84365 153443 0.6820 +84365 158234 0.4230 +84365 161424 0.6170 +84365 165545 0.5230 +84365 200916 0.8170 +84365 221078 0.9740 +84365 221830 0.8510 +84365 254268 0.7340 +84365 285855 0.9720 +84365 317762 0.4600 +84365 317781 0.4270 +84365 339230 0.6010 +84365 343068 0.4490 +84365 343070 0.4490 +84365 344758 0.4170 +84365 345630 0.6920 +84365 387129 0.9320 +84365 387338 0.6600 +84365 390999 0.4490 +84365 391002 0.4490 +84365 400735 0.4490 +84365 400736 0.4490 +84365 440560 0.4490 +84365 440561 0.4490 +84365 441873 0.4490 +84365 645051 0.4120 +84365 645073 0.4120 +84365 645359 0.4490 +84365 653619 0.4490 +84365 692312 0.8410 +84365 729396 0.4120 +84365 729422 0.4120 +84365 729428 0.4120 +84365 729431 0.4120 +84365 729442 0.4120 +84365 729447 0.4120 +84365 729528 0.4490 +84365 100008586 0.4120 +84365 100132399 0.4120 +84365 100505478 0.8720 +84365 100526842 0.7920 +84365 101929983 0.4490 +84365 102724473 0.4120 +84366 163255 0.4490 +84366 286336 0.4320 +84366 360205 0.9900 +84376 84766 0.4130 +84376 85440 0.4990 +84376 92558 0.8210 +84376 121599 0.5110 +84376 138050 0.4750 +84376 146439 0.5400 +84376 153241 0.5530 +84376 157769 0.4310 +84376 158158 0.4020 +84376 166655 0.4050 +84376 168417 0.4520 +84376 201255 0.4160 +84376 254428 0.4500 +84376 340252 0.4180 +84376 345611 0.4100 +84376 390081 0.4900 +84376 492311 0.4810 +84376 653857 0.4520 +84376 728927 0.4260 +84376 729830 0.8970 +84417 256691 0.4210 +84419 84701 0.5580 +84419 170712 0.5400 +84419 341947 0.5400 +84419 440567 0.5450 +84419 653808 0.4360 +84432 84539 0.5770 +84432 84634 0.6410 +84432 112609 0.4630 +84432 115557 0.4990 +84432 128674 0.9970 +84432 129521 0.5620 +84432 257313 0.5140 +84432 387129 0.5910 +84432 594857 0.5680 +84433 84674 0.5060 +84433 84905 0.4450 +84433 89857 0.5210 +84433 115650 0.4180 +84433 146206 0.6470 +84433 257397 0.4460 +84433 259197 0.4460 +84433 100271849 0.6110 +84433 100423062 0.4050 +84433 102723407 0.5150 +84435 84873 0.6290 +84435 85442 0.6980 +84435 89932 0.4870 +84435 165082 0.6020 +84435 221188 0.6640 +84435 221393 0.5940 +84435 221395 0.5720 +84435 222487 0.6380 +84435 266977 0.6110 +84435 387509 0.4320 +84437 90362 0.5060 +84437 92259 0.4180 +84437 114786 0.4250 +84437 143879 0.5340 +84437 150275 0.5360 +84437 196740 0.4350 +84439 375056 0.4580 +84440 114659 0.6640 +84440 145258 0.8410 +84440 257313 0.4410 +84440 391475 0.4370 +84441 154796 0.4080 +84441 171558 0.6450 +84441 192669 0.5030 +84441 192670 0.5020 +84441 343930 0.5530 +84441 388585 0.7880 +84441 441478 0.5520 +84443 124842 0.4620 +84443 257169 0.4050 +84444 84678 0.5860 +84444 84787 0.6280 +84444 85235 0.9170 +84444 85236 0.9640 +84444 114826 0.4270 +84444 121504 0.9370 +84444 126961 0.9680 +84444 128312 0.6650 +84444 133482 0.4650 +84444 150572 0.4910 +84444 151194 0.4180 +84444 158983 0.6600 +84444 162239 0.5050 +84444 221613 0.4340 +84444 221656 0.6230 +84444 255626 0.6620 +84444 286204 0.6200 +84444 286436 0.6600 +84444 333932 0.9320 +84444 339210 0.4600 +84444 387893 0.6670 +84444 399818 0.4760 +84444 440093 0.8780 +84444 440686 0.8780 +84444 440689 0.6610 +84444 554313 0.9370 +84444 653604 0.9970 +84444 114483833 0.6600 +84445 84747 0.4380 +84445 85358 0.8090 +84445 116840 0.4210 +84445 144110 0.4100 +84445 148137 0.4840 +84445 254225 0.4600 +84445 729830 0.5960 +84446 84515 0.5670 +84446 84687 0.5970 +84446 84787 0.7760 +84446 90120 0.4010 +84446 124404 0.4100 +84446 138307 0.4660 +84446 221711 0.5060 +84446 266812 0.4730 +84446 284417 0.6350 +84446 494551 0.5460 +84447 91319 0.9700 +84447 91445 0.4220 +84447 92305 0.6110 +84447 118424 0.5570 +84447 162387 0.4370 +84447 166378 0.5920 +84447 192669 0.4090 +84447 192670 0.4090 +84447 197131 0.7560 +84447 258010 0.6490 +84447 337867 0.7000 +84447 100131755 0.4270 +84448 91624 0.4220 +84448 137735 0.9560 +84448 221656 0.5860 +84448 342527 0.4690 +84450 84811 0.6590 +84450 149076 0.6540 +84450 200634 0.6040 +84450 317781 0.4460 +84450 400506 0.4220 +84450 643909 0.5860 +84450 728524 0.5820 +84450 100996746 0.4920 +84451 85366 0.5710 +84451 89780 0.4480 +84451 92344 0.5170 +84451 112802 0.5080 +84451 149420 0.5540 +84451 340419 0.5660 +84455 90141 0.4840 +84455 117584 0.6190 +84455 132884 0.8980 +84455 153657 0.6080 +84455 158798 0.7870 +84455 200894 0.4260 +84456 90378 0.8540 +84456 91133 0.4030 +84456 148418 0.6870 +84456 342908 0.4280 +84456 100532731 0.5470 +84457 116154 0.5220 +84457 255426 0.4070 +84458 121536 0.7930 +84458 254251 0.4710 +84458 284697 0.4030 +84458 100170841 0.8390 +84460 152065 0.4320 +84460 152586 0.4860 +84460 159091 0.4380 +84460 493901 0.4120 +84460 100033411 0.4230 +84461 84654 0.4760 +84461 85302 0.4690 +84461 85478 0.6580 +84461 116840 0.5610 +84461 120892 0.6300 +84461 142678 0.4040 +84461 153241 0.6080 +84461 163786 0.4590 +84461 201255 0.4360 +84464 84893 0.5190 +84464 85015 0.4060 +84464 91442 0.8860 +84464 92935 0.5580 +84464 116028 0.8340 +84464 124454 0.4840 +84464 128710 0.9880 +84464 146956 0.9990 +84464 158584 0.6320 +84464 165918 0.4030 +84464 197342 0.7330 +84464 199990 0.8030 +84464 201254 0.7660 +84464 285498 0.4280 +84464 286053 0.5570 +84464 348654 0.9080 +84464 353497 0.6870 +84464 374395 0.4370 +84464 378708 0.7280 +84464 548593 0.9990 +84464 100533467 0.5050 +84464 101927367 0.4150 +84465 84934 0.4470 +84465 144423 0.4280 +84465 150275 0.5960 +84465 196541 0.4670 +84465 219417 0.4100 +84466 85445 0.5160 +84466 124093 0.5430 +84466 390594 0.4240 +84467 84909 0.5010 +84467 135644 0.4170 +84467 157680 0.5020 +84467 166379 0.4560 +84498 90390 0.5130 +84498 112950 0.5060 +84498 115426 0.4060 +84498 197131 0.7220 +84498 253769 0.5150 +84498 387263 0.4030 +84498 400569 0.5080 +84498 100533467 0.7480 +84501 92822 0.6060 +84501 124045 0.4870 +84501 133746 0.5990 +84501 255738 0.6700 +84501 342184 0.8510 +84501 375189 0.4250 +84501 403278 0.4490 +84501 442721 0.4690 +84502 91860 0.5540 +84502 93035 0.4090 +84502 112476 0.5070 +84502 118812 0.4720 +84502 126306 0.4610 +84502 129446 0.4040 +84502 132320 0.4570 +84502 163688 0.5440 +84502 200008 0.4510 +84502 246329 0.4980 +84502 284612 0.7520 +84502 374393 0.4310 +84502 375346 0.5410 +84502 493860 0.4580 +84502 729956 0.4320 +84503 161779 0.5630 +84504 114131 0.5960 +84504 116448 0.6410 +84504 153572 0.4590 +84504 169026 0.4950 +84504 169792 0.4250 +84504 222546 0.7590 +84504 256297 0.7550 +84504 389692 0.5750 +84513 84649 0.9480 +84513 84650 0.4310 +84513 84814 0.5140 +84513 85465 0.9190 +84513 116255 0.9260 +84513 119548 0.9040 +84513 122618 0.9000 +84513 129642 0.9210 +84513 137994 0.4990 +84513 154141 0.9050 +84513 196051 0.9240 +84513 203102 0.4560 +84513 245972 0.5240 +84513 253558 0.9210 +84513 346606 0.9260 +84513 403313 0.5450 +84514 284119 0.8320 +84515 93426 0.6440 +84515 113510 0.5920 +84515 135935 0.5340 +84515 144455 0.4070 +84515 157570 0.4860 +84515 157777 0.5380 +84515 164045 0.6930 +84515 221711 0.5990 +84515 253714 0.4320 +84515 254394 0.9990 +84515 254528 0.6720 +84515 259266 0.4100 +84515 284417 0.6210 +84515 344018 0.4970 +84515 348654 0.4080 +84515 387103 0.5010 +84515 402381 0.4940 +84516 84517 0.4710 +84516 84643 0.4990 +84516 84950 0.4370 +84516 89953 0.5040 +84516 90634 0.6960 +84516 91949 0.7020 +84516 92558 0.9390 +84516 93661 0.5480 +84516 113000 0.4890 +84516 124454 0.5130 +84516 124602 0.4030 +84516 140735 0.5340 +84516 140850 0.7350 +84516 147700 0.4990 +84516 284382 0.6730 +84516 285643 0.5140 +84516 388611 0.5070 +84516 653857 0.8960 +84517 84519 0.4100 +84517 85366 0.4400 +84517 93973 0.4610 +84517 151827 0.7000 +84517 161502 0.4700 +84517 344657 0.7440 +84517 345456 0.6500 +84517 375189 0.5230 +84517 388559 0.5260 +84517 100131897 0.4190 +84518 84648 0.7420 +84518 84651 0.4300 +84518 93099 0.4320 +84518 116115 0.4760 +84518 144501 0.5340 +84518 196374 0.4890 +84518 284338 0.4320 +84518 284339 0.4860 +84518 353145 0.5080 +84518 374897 0.6060 +84518 387522 0.4390 +84518 388533 0.8050 +84518 448835 0.4320 +84519 89872 0.5080 +84519 90737 0.4480 +84519 113177 0.5060 +84519 114785 0.4670 +84519 116173 0.5270 +84519 124626 0.6850 +84519 124912 0.5610 +84519 139105 0.4780 +84519 147199 0.5300 +84519 158521 0.4460 +84519 171558 0.5470 +84519 219938 0.4760 +84519 246777 0.4530 +84519 283417 0.4540 +84519 284359 0.4560 +84519 285782 0.6060 +84519 340205 0.7750 +84519 100131137 0.4930 +84520 84942 0.4710 +84520 112858 0.9990 +84520 161145 0.4470 +84522 92579 0.5530 +84522 134218 0.4640 +84522 157680 0.5010 +84522 285368 0.4510 +84524 84910 0.4740 +84524 85403 0.9020 +84524 85437 0.7370 +84524 113444 0.5290 +84524 123169 0.9030 +84524 126204 0.4510 +84524 145258 0.7820 +84524 146223 0.4750 +84524 147991 0.4940 +84524 149345 0.4090 +84524 154790 0.4180 +84524 222389 0.4160 +84524 285343 0.4180 +84524 402381 0.4040 +84524 648791 0.4580 +84525 92312 0.4340 +84525 117156 0.4040 +84525 167410 0.4050 +84525 284654 0.4710 +84525 653509 0.4670 +84525 100532731 0.6310 +84527 90594 0.4580 +84527 147965 0.4770 +84527 148979 0.4080 +84527 151126 0.5060 +84527 152485 0.5060 +84527 199704 0.4930 +84527 256051 0.6550 +84527 374928 0.4840 +84527 386677 0.4760 +84528 90316 0.6110 +84528 129807 0.4610 +84528 146852 0.5420 +84528 503834 0.4340 +84528 727940 0.4620 +84528 100033411 0.4050 +84528 100288687 0.4210 +84529 89978 0.4940 +84529 94120 0.4140 +84529 146059 0.9230 +84529 283742 0.5840 +84529 388649 0.5780 +84530 117531 0.4310 +84530 117532 0.4070 +84530 140767 0.5830 +84530 146713 0.4350 +84530 344752 0.4600 +84532 124995 0.4830 +84532 126133 0.4120 +84532 128817 0.4070 +84532 128821 0.4090 +84532 132949 0.6460 +84532 134526 0.9550 +84532 137872 0.4250 +84532 157869 0.4430 +84532 160428 0.4380 +84532 197322 0.4970 +84532 254042 0.4590 +84532 376497 0.4910 +84539 94235 0.5410 +84539 115557 0.4990 +84539 116449 0.4190 +84539 128674 0.4150 +84539 129521 0.4990 +84539 256933 0.6070 +84539 257313 0.5170 +84539 283869 0.5390 +84539 387129 0.4400 +84539 431704 0.4990 +84539 594857 0.4990 +84541 84861 0.9150 +84541 89890 0.9200 +84541 90135 0.4070 +84541 90293 0.9210 +84541 114818 0.7740 +84541 131377 0.7570 +84541 149951 0.4990 +84541 150684 0.4990 +84541 154881 0.4700 +84541 170622 0.4990 +84541 200845 0.5040 +84541 253980 0.9010 +84541 339745 0.9140 +84541 390594 0.4580 +84541 553115 0.7820 +84542 91978 0.6100 +84542 128646 0.5070 +84542 137994 0.4180 +84542 150962 0.4580 +84542 159090 0.4300 +84542 221303 0.4480 +84542 339804 0.6680 +84545 84705 0.8980 +84545 84881 0.6300 +84545 85476 0.8220 +84545 85865 0.8060 +84545 90313 0.8510 +84545 90480 0.9710 +84545 90624 0.6840 +84545 91574 0.8290 +84545 92170 0.9800 +84545 92399 0.9030 +84545 93517 0.4280 +84545 96459 0.4060 +84545 112939 0.5840 +84545 113000 0.6010 +84545 114134 0.4110 +84545 114781 0.6750 +84545 114908 0.4120 +84545 115416 0.9950 +84545 116540 0.9140 +84545 116541 0.9790 +84545 118487 0.8990 +84545 122704 0.9270 +84545 124359 0.4680 +84545 124995 0.9880 +84545 126328 0.4990 +84545 126402 0.8170 +84545 128308 0.9340 +84545 130916 0.8220 +84545 133015 0.4440 +84545 135138 0.4290 +84545 140432 0.4060 +84545 140801 0.6610 +84545 146542 0.5420 +84545 148022 0.5210 +84545 149478 0.6170 +84545 150353 0.4060 +84545 154091 0.4110 +84545 157310 0.7790 +84545 157869 0.4680 +84545 165721 0.4060 +84545 171425 0.4060 +84545 197322 0.4720 +84545 202052 0.4100 +84545 219402 0.5330 +84545 219927 0.9980 +84545 253175 0.4680 +84545 253827 0.4020 +84545 284106 0.4790 +84545 284418 0.4120 +84545 285126 0.4060 +84545 285190 0.4120 +84545 285282 0.4220 +84545 285367 0.6380 +84545 285755 0.4120 +84545 343068 0.4520 +84545 343070 0.4520 +84545 345051 0.8360 +84545 347487 0.7240 +84545 353376 0.5210 +84545 374291 0.6200 +84545 374407 0.4060 +84545 376497 0.4750 +84545 387338 0.8030 +84545 390999 0.4520 +84545 391002 0.4520 +84545 400735 0.4520 +84545 400736 0.4520 +84545 440560 0.4520 +84545 440561 0.4520 +84545 441873 0.4520 +84545 641776 0.5550 +84545 643909 0.5550 +84545 644591 0.4130 +84545 645142 0.4130 +84545 645359 0.4520 +84545 653247 0.4110 +84545 653505 0.4130 +84545 653598 0.4130 +84545 653619 0.4520 +84545 654364 0.4310 +84545 727851 0.4120 +84545 728524 0.5550 +84545 728945 0.4130 +84545 729528 0.4520 +84545 729857 0.4120 +84545 730262 0.4130 +84545 100130890 0.7580 +84545 100131187 0.7620 +84545 100287482 0.7240 +84545 100302736 0.5210 +84545 100526842 0.8170 +84545 100996746 0.5550 +84545 101929983 0.4520 +84545 105180390 0.5550 +84545 105180391 0.5550 +84545 105371242 0.4130 +84545 127898561 0.8110 +84547 84838 0.4020 +84547 85569 0.4840 +84547 203245 0.4160 +84547 222698 0.5960 +84547 252884 0.8310 +84547 267002 0.6530 +84547 284312 0.7860 +84547 342945 0.6230 +84547 387032 0.8400 +84547 643641 0.5760 +84548 91966 0.5100 +84548 118924 0.6580 +84548 144402 0.4520 +84548 147007 0.4240 +84548 147409 0.4320 +84548 245972 0.4590 +84548 283554 0.4670 +84548 541578 0.4930 +84548 100129239 0.4450 +84548 100130086 0.4790 +84548 101927685 0.5430 +84549 84916 0.8670 +84549 84946 0.9490 +84549 88745 0.8060 +84549 90121 0.6930 +84549 90441 0.8280 +84549 91646 0.4120 +84549 92170 0.5910 +84549 92856 0.8450 +84549 115708 0.4090 +84549 116832 0.4680 +84549 116966 0.6750 +84549 117246 0.9970 +84549 122786 0.4280 +84549 146212 0.9120 +84549 153443 0.4050 +84549 162427 0.4090 +84549 165545 0.4030 +84549 200916 0.7750 +84549 221078 0.9170 +84549 221830 0.8920 +84549 254268 0.7150 +84549 285855 0.8660 +84549 317781 0.4690 +84549 344758 0.4100 +84549 387129 0.8330 +84549 387338 0.5460 +84549 400506 0.4810 +84549 645051 0.4520 +84549 645073 0.4520 +84549 692312 0.7880 +84549 729396 0.4520 +84549 729422 0.4520 +84549 729428 0.4520 +84549 729431 0.4520 +84549 729442 0.4520 +84549 729447 0.4520 +84549 100008586 0.4520 +84549 100132399 0.4520 +84549 100505478 0.7330 +84549 100526842 0.8150 +84549 100529097 0.4210 +84549 102724473 0.4520 +84552 84612 0.9630 +84552 92359 0.9320 +84552 117583 0.7170 +84553 85015 0.5600 +84553 85302 0.4460 +84553 92106 0.4460 +84553 150350 0.4540 +84553 160335 0.5220 +84553 256764 0.4150 +84553 374618 0.5420 +84557 84938 0.8350 +84557 84971 0.8370 +84557 89849 0.4840 +84557 91754 0.4110 +84557 92421 0.5000 +84557 94241 0.4370 +84557 115004 0.5210 +84557 115201 0.8740 +84557 124540 0.4080 +84557 128866 0.5070 +84557 137902 0.5140 +84557 139341 0.9590 +84557 140901 0.4380 +84557 142678 0.5370 +84557 149420 0.4380 +84557 162427 0.6080 +84557 200576 0.7500 +84557 202915 0.4110 +84557 285973 0.7960 +84557 338382 0.4650 +84557 400668 0.4540 +84557 440738 0.5500 +84557 441925 0.5980 +84560 345643 0.4060 +84561 92014 0.4270 +84561 93100 0.5090 +84561 349565 0.5710 +84569 90070 0.6210 +84569 117159 0.6250 +84569 653247 0.4530 +84569 728358 0.4310 +84570 85301 0.5800 +84570 90637 0.4240 +84570 91522 0.5940 +84570 115908 0.4560 +84570 130617 0.4240 +84570 131873 0.5280 +84570 136227 0.9160 +84570 147372 0.5360 +84570 165186 0.4470 +84570 169044 0.5240 +84570 255631 0.5840 +84570 283208 0.4400 +84570 338761 0.4480 +84570 340267 0.5510 +84570 342035 0.4300 +84572 84688 0.5360 +84572 93432 0.5350 +84572 131368 0.6060 +84572 138050 0.5000 +84572 728597 0.4020 +84612 92359 0.9610 +84612 117583 0.7510 +84612 171177 0.7000 +84612 222171 0.4380 +84612 285598 0.4080 +84614 91687 0.5710 +84614 126299 0.4470 +84614 149041 0.4620 +84614 256356 0.4480 +84614 284525 0.4430 +84614 339416 0.5410 +84614 730159 0.6420 +84616 85280 0.8030 +84616 85285 0.8030 +84616 85289 0.9040 +84616 85290 0.8740 +84616 85291 0.9070 +84616 85293 0.4870 +84616 112802 0.4190 +84616 337878 0.4900 +84616 337879 0.4980 +84616 337880 0.5720 +84616 337970 0.4830 +84616 342574 0.5120 +84616 386680 0.4050 +84616 386681 0.6710 +84616 386683 0.6520 +84616 653240 0.6510 +84616 728224 0.8590 +84616 100132386 0.4430 +84616 100132476 0.8670 +84616 100996717 0.5910 +84617 84790 0.9810 +84617 91782 0.5340 +84617 92421 0.6300 +84617 92609 0.4150 +84617 112714 0.9630 +84617 113457 0.9630 +84617 120892 0.7420 +84617 121441 0.4400 +84617 124773 0.4610 +84617 128866 0.5040 +84617 135138 0.4030 +84617 136332 0.4590 +84617 136371 0.4030 +84617 140735 0.6150 +84617 150465 0.5480 +84617 151651 0.4090 +84617 165721 0.4230 +84617 197335 0.6260 +84617 200014 0.5330 +84617 221496 0.5460 +84617 260334 0.4090 +84617 338382 0.6750 +84617 345651 0.5490 +84617 347688 0.4160 +84617 347733 0.4320 +84617 441531 0.4190 +84617 728378 0.6170 +84618 93034 0.9050 +84618 93100 0.9220 +84618 113444 0.5650 +84618 115024 0.9460 +84618 122481 0.6960 +84618 122622 0.9290 +84618 123103 0.4870 +84618 123169 0.4750 +84618 124583 0.7340 +84618 129607 0.9100 +84618 131870 0.9000 +84618 139596 0.9030 +84618 149111 0.8200 +84618 151531 0.9290 +84618 158067 0.6960 +84618 221264 0.7410 +84618 254263 0.8780 +84618 377841 0.7090 +84618 100526794 0.9050 +84618 102157402 0.6540 +84619 114034 0.4390 +84619 140685 0.4240 +84619 140701 0.4980 +84619 146956 0.4980 +84619 148479 0.4550 +84619 642987 0.5120 +84620 128025 0.4800 +84620 129807 0.4950 +84620 448834 0.4440 +84622 112950 0.4810 +84622 114804 0.4470 +84623 85445 0.4260 +84623 116085 0.4470 +84623 152330 0.4120 +84623 347731 0.4680 +84624 115908 0.4700 +84624 131578 0.4010 +84626 85002 0.4800 +84626 124751 0.4470 +84626 152206 0.5290 +84626 155066 0.4630 +84626 202865 0.4780 +84626 254773 0.4790 +84626 285971 0.5330 +84626 349136 0.4700 +84626 387836 0.4580 +84626 392843 0.4500 +84626 442247 0.4240 +84626 100527949 0.4630 +84627 84708 0.5780 +84627 91252 0.5620 +84627 113189 0.9790 +84627 126792 0.5330 +84627 148022 0.4390 +84627 286256 0.5240 +84627 388553 0.4080 +84628 85013 0.4230 +84628 90249 0.5630 +84628 94030 0.7960 +84628 137970 0.5150 +84628 140679 0.4490 +84628 219699 0.4340 +84628 246213 0.4130 +84628 266727 0.6340 +84628 284217 0.5580 +84628 347730 0.4100 +84629 90316 0.4980 +84629 114880 0.4770 +84629 116541 0.4740 +84629 374378 0.4510 +84630 84946 0.5860 +84631 84966 0.4400 +84631 114798 0.4430 +84631 122769 0.4110 +84631 158521 0.5780 +84631 285220 0.4500 +84631 494118 0.4280 +84631 100129239 0.5070 +84632 374354 0.4460 +84634 84698 0.4290 +84634 115557 0.5620 +84634 128674 0.5590 +84634 129521 0.5470 +84634 256933 0.4230 +84634 257313 0.5090 +84634 347148 0.6210 +84634 387129 0.4320 +84634 389203 0.4210 +84634 594857 0.5720 +84636 114836 0.4610 +84636 151888 0.5250 +84636 221188 0.4200 +84639 90865 0.6760 +84639 402569 0.8380 +84640 84749 0.4600 +84640 90268 0.4960 +84640 114803 0.5010 +84640 126119 0.4480 +84640 147945 0.4300 +84640 159195 0.4900 +84640 163486 0.4290 +84640 166752 0.5410 +84640 220213 0.4260 +84640 221302 0.5020 +84641 84804 0.4430 +84641 84975 0.5890 +84641 113655 0.4870 +84641 126321 0.4820 +84641 128387 0.4380 +84641 149499 0.4620 +84641 162387 0.4820 +84641 201305 0.4210 +84643 89953 0.5210 +84643 90417 0.4860 +84643 90990 0.6270 +84643 93661 0.6260 +84643 117286 0.4060 +84643 124602 0.6930 +84643 140735 0.5150 +84643 146909 0.7650 +84643 147700 0.4150 +84643 147841 0.4950 +84643 151246 0.4380 +84643 163259 0.4190 +84643 196951 0.4430 +84643 221458 0.6030 +84643 283638 0.6100 +84643 285643 0.5730 +84643 374654 0.6140 +84645 84691 0.5860 +84645 84692 0.5970 +84645 85376 0.4710 +84645 93661 0.4770 +84645 120379 0.4540 +84645 123872 0.5970 +84645 127391 0.4820 +84645 128229 0.6630 +84645 138724 0.4160 +84645 140625 0.5110 +84645 140873 0.4890 +84645 151254 0.5400 +84645 153643 0.4140 +84645 154313 0.4370 +84645 158830 0.4790 +84645 160419 0.4500 +84645 200232 0.4470 +84645 203102 0.4340 +84645 339669 0.4570 +84645 399693 0.4780 +84647 84699 0.4100 +84647 85465 0.7050 +84647 90634 0.4720 +84647 113612 0.6590 +84647 118471 0.4310 +84647 122618 0.7110 +84647 133121 0.6610 +84647 151056 0.6900 +84647 254531 0.6500 +84647 255043 0.6650 +84647 257629 0.6060 +84647 284161 0.6580 +84647 284541 0.6790 +84647 375775 0.7740 +84647 387521 0.6550 +84647 387522 0.6550 +84647 391013 0.7430 +84647 729330 0.4220 +84648 84651 0.5570 +84648 84659 0.4530 +84648 125893 0.5950 +84648 126638 0.7760 +84648 128488 0.4370 +84648 149018 0.5300 +84648 163778 0.5250 +84648 196374 0.5410 +84648 199834 0.6910 +84648 254910 0.7160 +84648 337971 0.4120 +84648 338324 0.5340 +84648 353131 0.7730 +84648 353132 0.8140 +84648 353133 0.8480 +84648 353134 0.7380 +84648 353135 0.8260 +84648 353137 0.7880 +84648 353139 0.7760 +84648 353140 0.9270 +84648 353141 0.8910 +84648 353142 0.8980 +84648 353143 0.5590 +84648 353144 0.6240 +84648 353145 0.9990 +84648 374897 0.6200 +84648 388533 0.6820 +84648 388698 0.5330 +84648 448834 0.6670 +84648 448835 0.7510 +84649 84803 0.7430 +84649 116255 0.9100 +84649 119548 0.6590 +84649 126129 0.4180 +84649 128486 0.5310 +84649 129642 0.5360 +84649 132949 0.8680 +84649 137964 0.7500 +84649 139189 0.6680 +84649 150763 0.4920 +84649 160851 0.6860 +84649 196051 0.9510 +84649 346606 0.9100 +84649 376497 0.9840 +84649 440503 0.6290 +84649 729359 0.5800 +84650 115761 0.4350 +84650 115939 0.4830 +84650 150275 0.4150 +84650 220107 0.4660 +84650 245972 0.5400 +84650 440138 0.4440 +84651 116372 0.4070 +84651 132671 0.4600 +84651 132724 0.5880 +84651 144568 0.4050 +84651 146862 0.4390 +84651 153218 0.5750 +84651 196374 0.5880 +84651 339967 0.4470 +84651 374897 0.4950 +84651 388533 0.5430 +84651 404203 0.6260 +84651 408187 0.4140 +84651 440854 0.6170 +84651 643394 0.4300 +84651 646424 0.5080 +84654 126637 0.5110 +84654 132851 0.4230 +84654 140856 0.4320 +84656 85235 0.4190 +84656 85236 0.7650 +84656 124359 0.4170 +84656 126961 0.7540 +84656 128312 0.4570 +84656 153364 0.4370 +84656 158983 0.4570 +84656 196074 0.4170 +84656 221656 0.9470 +84656 253017 0.4180 +84656 253175 0.4170 +84656 255626 0.4570 +84656 286436 0.4570 +84656 333932 0.7540 +84656 340096 0.7730 +84656 391769 0.7730 +84656 440093 0.8010 +84656 440686 0.7850 +84656 440689 0.4610 +84656 653604 0.7900 +84656 114483833 0.4570 +84658 120534 0.4470 +84658 146225 0.4290 +84658 646457 0.4180 +84659 117159 0.6690 +84659 122651 0.5810 +84659 140596 0.5250 +84659 338324 0.4310 +84659 414325 0.7990 +84659 440163 0.4190 +84659 503618 0.5070 +84659 100289462 0.5280 +84660 91683 0.7200 +84660 112755 0.5760 +84660 120892 0.5100 +84660 130013 0.7760 +84660 151254 0.5070 +84660 283417 0.5960 +84660 400891 0.4110 +84660 401024 0.4200 +84660 402573 0.5390 +84660 100129583 0.5800 +84660 100631383 0.5810 +84661 84844 0.4210 +84661 85236 0.8210 +84661 85452 0.5150 +84661 90835 0.7240 +84661 91272 0.8180 +84661 94239 0.6040 +84661 121504 0.8610 +84661 122481 0.4030 +84661 124944 0.9430 +84661 125476 0.5410 +84661 126961 0.8550 +84661 128153 0.6630 +84661 136332 0.8840 +84661 143241 0.7140 +84661 145258 0.8410 +84661 149175 0.4060 +84661 150572 0.4750 +84661 158067 0.5410 +84661 161882 0.6160 +84661 192669 0.4030 +84661 200162 0.6930 +84661 200373 0.6000 +84661 202915 0.4260 +84661 221264 0.4560 +84661 259282 0.6080 +84661 260425 0.4050 +84661 284058 0.6580 +84661 286464 0.4050 +84661 333932 0.8550 +84661 375748 0.4320 +84661 387893 0.5940 +84661 440093 0.7810 +84661 440686 0.7810 +84661 554313 0.8610 +84661 653604 0.9760 +84661 100289087 0.6050 +84661 100529209 0.5560 +84662 91147 0.5130 +84662 91754 0.4060 +84662 148979 0.4630 +84662 157848 0.4500 +84662 259197 0.7060 +84662 261734 0.4760 +84662 284086 0.5690 +84665 84676 0.6980 +84665 84700 0.6430 +84665 84992 0.4060 +84665 85366 0.5990 +84665 125972 0.5770 +84665 129446 0.4270 +84665 131377 0.7280 +84665 146862 0.4260 +84665 165904 0.4330 +84665 171024 0.4140 +84665 200539 0.8080 +84665 202333 0.4210 +84665 282996 0.6580 +84665 390594 0.6800 +84666 90865 0.4450 +84666 92579 0.6830 +84666 130120 0.4960 +84666 133396 0.5210 +84666 145264 0.7200 +84666 252995 0.5070 +84666 386653 0.5380 +84667 145873 0.5890 +84668 127833 0.4360 +84668 129303 0.6320 +84668 130574 0.4230 +84668 130813 0.4750 +84668 145567 0.9950 +84668 219654 0.4440 +84669 114803 0.5130 +84669 124773 0.5240 +84669 153339 0.4870 +84669 159195 0.4080 +84669 219927 0.4160 +84669 221302 0.4300 +84669 221303 0.4520 +84669 414059 0.7470 +84669 729873 0.9180 +84671 84911 0.4890 +84671 162967 0.4920 +84671 284391 0.9190 +84671 388566 0.4150 +84671 390927 0.4700 +84671 440515 0.4900 +84674 341116 0.4170 +84675 84676 0.6380 +84675 84851 0.5060 +84675 85363 0.4500 +84675 123103 0.4180 +84675 166348 0.4410 +84675 340359 0.4170 +84675 353376 0.4830 +84675 377007 0.4060 +84675 390231 0.4180 +84675 100302736 0.5110 +84676 85366 0.5230 +84676 91860 0.6220 +84676 93611 0.4200 +84676 114907 0.9590 +84676 122416 0.4890 +84676 133522 0.4590 +84676 140456 0.5570 +84676 142686 0.4520 +84676 158506 0.4700 +84676 163688 0.6380 +84678 84733 0.7870 +84678 84759 0.9990 +84678 84993 0.4800 +84678 93550 0.5370 +84678 121536 0.5100 +84678 126961 0.4540 +84678 143630 0.4800 +84678 148979 0.5930 +84678 164153 0.5250 +84678 221037 0.5580 +84678 221656 0.6170 +84678 387893 0.4250 +84678 390245 0.4610 +84678 440093 0.7090 +84678 440686 0.7090 +84678 653604 0.8470 +84678 100170841 0.4180 +84678 100532731 0.7580 +84679 133308 0.8880 +84679 150159 0.4460 +84679 192683 0.4630 +84679 205428 0.6330 +84679 266743 0.4430 +84679 285335 0.4260 +84679 347344 0.4290 +84679 641339 0.7080 +84680 84842 0.4240 +84680 85302 0.6150 +84680 113451 0.4750 +84680 201163 0.7460 +84681 91966 0.4200 +84681 135114 0.7740 +84681 138716 0.4960 +84684 145741 0.4050 +84684 169026 0.7680 +84684 100133941 0.5710 +84687 84708 0.4430 +84687 84919 0.9320 +84687 89801 0.5610 +84687 90506 0.5590 +84687 90673 0.5610 +84687 91624 0.7580 +84687 91860 0.5650 +84687 116986 0.6400 +84687 155061 0.4930 +84687 157313 0.4910 +84687 163688 0.5650 +84687 166614 0.5830 +84687 201191 0.9340 +84687 221178 0.8180 +84687 254050 0.5440 +84687 260425 0.4760 +84687 286187 0.5400 +84687 648791 0.5520 +84688 128344 0.4760 +84688 128602 0.4680 +84688 133690 0.4170 +84688 138716 0.4470 +84688 145942 0.4200 +84688 153643 0.4270 +84688 154313 0.4260 +84688 203259 0.5660 +84688 254956 0.4340 +84688 347475 0.4400 +84689 84886 0.4580 +84689 146722 0.4040 +84689 148229 0.4250 +84689 245802 0.5040 +84689 390061 0.4440 +84689 728588 0.6900 +84689 107987155 0.6200 +84690 93426 0.5650 +84690 115353 0.4700 +84690 128153 0.5180 +84690 130951 0.4120 +84690 132851 0.5040 +84690 140894 0.4360 +84690 145645 0.4610 +84690 150280 0.5500 +84690 150365 0.4620 +84690 158401 0.4900 +84690 158521 0.4110 +84690 164045 0.5710 +84690 254528 0.9670 +84690 256126 0.5970 +84690 283847 0.4630 +84690 284071 0.4670 +84690 285498 0.4050 +84690 317761 0.4220 +84690 339834 0.4140 +84690 642636 0.4870 +84690 644186 0.6170 +84691 84692 0.5170 +84691 85438 0.4120 +84691 93661 0.4450 +84691 114960 0.4560 +84691 127391 0.4880 +84691 128229 0.4760 +84691 129787 0.4180 +84691 130560 0.6430 +84691 134288 0.4530 +84691 135886 0.5840 +84691 136263 0.4820 +84691 140873 0.4470 +84691 145942 0.5080 +84691 147011 0.4230 +84691 149699 0.5120 +84691 151254 0.4490 +84691 153643 0.4250 +84691 154313 0.4360 +84691 158830 0.4470 +84691 160298 0.4680 +84691 160419 0.5470 +84691 171169 0.6230 +84691 196477 0.4590 +84691 200232 0.4470 +84691 221409 0.4800 +84691 254956 0.4340 +84691 259308 0.4230 +84691 338661 0.6290 +84691 339669 0.6430 +84691 339779 0.4260 +84691 374973 0.4580 +84691 399693 0.5200 +84691 401565 0.4130 +84692 85376 0.5120 +84692 85438 0.5250 +84692 89869 0.4630 +84692 93661 0.4170 +84692 120379 0.4520 +84692 127391 0.6250 +84692 128229 0.4660 +84692 132612 0.4140 +84692 138724 0.4530 +84692 140625 0.4250 +84692 140873 0.5490 +84692 145942 0.4630 +84692 147011 0.4500 +84692 150221 0.4280 +84692 151254 0.4600 +84692 153643 0.4860 +84692 154313 0.4510 +84692 158830 0.5070 +84692 160419 0.5630 +84692 165721 0.4580 +84692 200232 0.5020 +84692 203413 0.4270 +84692 219938 0.4570 +84692 221481 0.4320 +84692 339669 0.4840 +84692 399693 0.5430 +84692 100288695 0.4320 +84693 84842 0.6730 +84693 84869 0.5480 +84693 112812 0.5310 +84693 113179 0.4650 +84693 113675 0.4210 +84693 116173 0.4570 +84693 134637 0.4700 +84693 137872 0.4250 +84693 153364 0.4130 +84693 166785 0.9490 +84693 197257 0.4530 +84693 197322 0.9470 +84693 200895 0.7300 +84693 326625 0.7980 +84693 389434 0.6390 +84693 392465 0.4230 +84693 100130890 0.5080 +84693 100131187 0.5120 +84694 125111 0.4120 +84694 127534 0.4010 +84694 169841 0.4520 +84694 219770 0.4470 +84694 253714 0.4270 +84694 349149 0.4310 +84694 375519 0.4040 +84694 100126572 0.5160 +84696 84836 0.4570 +84696 84945 0.5180 +84696 89869 0.4190 +84696 140701 0.6290 +84696 145447 0.4920 +84696 146862 0.4340 +84696 200558 0.4080 +84696 253152 0.4470 +84699 90993 0.9500 +84699 116519 0.7950 +84699 148327 0.9300 +84699 148738 0.6350 +84699 164656 0.7250 +84699 200186 0.9420 +84699 200634 0.4090 +84699 338328 0.4030 +84700 103910 0.7100 +84700 118461 0.6140 +84700 129446 0.4280 +84700 131377 0.7280 +84700 140465 0.8110 +84700 140469 0.4360 +84700 140735 0.7430 +84700 146862 0.6520 +84700 219537 0.4410 +84700 246329 0.4910 +84700 254102 0.4560 +84700 347273 0.4550 +84700 390594 0.6210 +84700 399687 0.5990 +84700 402055 0.4010 +84701 84886 0.9360 +84701 84939 0.4280 +84701 84987 0.5480 +84701 91300 0.5560 +84701 93974 0.8300 +84701 118490 0.4710 +84701 125965 0.9260 +84701 126328 0.4960 +84701 128853 0.4210 +84701 133522 0.4160 +84701 139221 0.4280 +84701 164684 0.6110 +84701 170712 0.8500 +84701 192286 0.4600 +84701 267020 0.5930 +84701 283459 0.8620 +84701 285521 0.4390 +84701 341947 0.8200 +84701 374291 0.7880 +84701 388753 0.9100 +84701 400916 0.4530 +84701 440567 0.9260 +84701 440574 0.4080 +84701 728317 0.4280 +84701 100532726 0.6350 +84701 105372267 0.4820 +84705 84881 0.8140 +84705 84893 0.5490 +84705 85865 0.5450 +84705 87178 0.4270 +84705 90353 0.5310 +84705 92170 0.9360 +84705 113000 0.7610 +84705 113179 0.4940 +84705 115416 0.8980 +84705 123263 0.5240 +84705 123283 0.5850 +84705 124454 0.5280 +84705 142940 0.4090 +84705 160428 0.4310 +84705 196074 0.4390 +84705 219927 0.9310 +84705 285367 0.8170 +84705 285521 0.4590 +84705 343068 0.4470 +84705 343070 0.4470 +84705 374659 0.4070 +84705 390999 0.4470 +84705 391002 0.4470 +84705 400735 0.4470 +84705 400736 0.4470 +84705 440560 0.4470 +84705 440561 0.4470 +84705 441873 0.4470 +84705 645359 0.4470 +84705 653619 0.4470 +84705 729528 0.4470 +84705 730249 0.6710 +84705 101929983 0.4470 +84706 84842 0.4360 +84706 84988 0.6130 +84706 92483 0.6280 +84706 113451 0.4780 +84706 114757 0.5050 +84706 117145 0.4990 +84706 132949 0.4070 +84706 137362 0.9730 +84706 137902 0.4310 +84706 145226 0.4460 +84706 148738 0.4170 +84706 160287 0.6160 +84706 162417 0.9400 +84706 170589 0.5250 +84706 257202 0.6540 +84706 284486 0.4200 +84706 493869 0.6760 +84706 728226 0.4380 +84706 729020 0.4530 +84707 85012 0.5660 +84707 90843 0.4960 +84707 91860 0.7360 +84707 140597 0.5750 +84707 158931 0.5240 +84707 163688 0.7360 +84707 340542 0.6270 +84707 340543 0.5680 +84708 90952 0.5150 +84708 91862 0.4100 +84708 117583 0.4720 +84708 144125 0.4720 +84708 150084 0.7360 +84708 152579 0.5670 +84708 169522 0.7770 +84708 169693 0.4040 +84708 254827 0.5680 +84708 286514 0.9830 +84708 340481 0.5670 +84708 389125 0.6040 +84708 440193 0.5060 +84709 89941 0.5090 +84709 375190 0.4500 +84709 644096 0.4350 +84717 126961 0.9490 +84717 333932 0.9050 +84717 374407 0.4630 +84717 653604 0.9210 +84720 84992 0.7730 +84720 92255 0.4970 +84720 93183 0.8450 +84720 93210 0.7650 +84720 94005 0.9640 +84720 128869 0.9610 +84720 284098 0.8370 +84720 399909 0.4060 +84722 114815 0.6690 +84722 116519 0.5620 +84722 116841 0.4260 +84722 140460 0.5950 +84722 148113 0.5440 +84722 157313 0.4870 +84722 220042 0.5970 +84722 221692 0.5750 +84722 255738 0.8120 +84722 283431 0.5400 +84722 284612 0.5200 +84722 343263 0.7990 +84722 375056 0.6030 +84725 84899 0.4860 +84725 85403 0.4270 +84725 89970 0.4790 +84725 222166 0.6900 +84725 223082 0.4560 +84725 388323 0.4310 +84727 90864 0.4860 +84727 122769 0.4050 +84727 128821 0.4520 +84727 140739 0.5040 +84727 149951 0.5000 +84727 150684 0.5030 +84727 170622 0.5000 +84733 84759 0.9940 +84733 85236 0.5070 +84733 90957 0.5030 +84733 94239 0.5440 +84733 113130 0.4110 +84733 119504 0.9000 +84733 121536 0.9380 +84733 124359 0.4680 +84733 126961 0.9380 +84733 128312 0.5070 +84733 132625 0.5750 +84733 140459 0.5400 +84733 161882 0.4360 +84733 166979 0.5460 +84733 171023 0.9100 +84733 192669 0.4990 +84733 192670 0.4990 +84733 246184 0.9000 +84733 255626 0.5070 +84733 333932 0.9090 +84733 404281 0.5460 +84733 440093 0.8520 +84733 440686 0.9840 +84733 474382 0.5110 +84733 653604 0.9930 +84733 100170841 0.5850 +84733 100532731 0.9950 +84734 220108 0.5670 +84734 343413 0.4810 +84735 113451 0.4690 +84735 121260 0.4230 +84735 123228 0.4050 +84735 135293 0.4130 +84735 138199 0.9410 +84735 162417 0.4380 +84735 169693 0.4520 +84735 257019 0.5420 +84735 339896 0.9180 +84747 85481 0.8100 +84747 92689 0.4360 +84747 112942 0.4350 +84747 192668 0.8770 +84747 200894 0.4770 +84749 84954 0.4050 +84749 89941 0.4600 +84749 90268 0.4060 +84749 91452 0.4070 +84749 92552 0.4850 +84749 93624 0.5360 +84749 112869 0.6160 +84749 114803 0.4520 +84749 115209 0.4360 +84749 124739 0.5070 +84749 125170 0.4220 +84749 126119 0.4610 +84749 127002 0.4230 +84749 139341 0.5450 +84749 139562 0.4160 +84749 161725 0.4370 +84749 192111 0.4480 +84749 221302 0.9260 +84749 373509 0.5200 +84750 153396 0.4780 +84752 140453 0.4050 +84752 157777 0.4190 +84752 200958 0.4090 +84752 283849 0.4050 +84752 394263 0.4050 +84752 653319 0.4770 +84752 727897 0.4090 +84752 728130 0.4790 +84752 100288072 0.4070 +84759 85417 0.5510 +84759 85474 0.4230 +84759 112398 0.5000 +84759 112399 0.4810 +84759 119504 0.5400 +84759 121536 0.9520 +84759 132625 0.5810 +84759 140459 0.5690 +84759 165545 0.4220 +84759 166979 0.5450 +84759 171023 0.9150 +84759 246184 0.5430 +84759 283237 0.4370 +84759 404281 0.5590 +84759 440093 0.4630 +84759 440686 0.4640 +84759 653604 0.4640 +84759 100170841 0.6310 +84759 100532731 0.8580 +84765 85452 0.4100 +84765 374470 0.5050 +84766 84876 0.8280 +84766 92558 0.4970 +84766 93129 0.5980 +84766 116211 0.4440 +84766 146439 0.4690 +84766 151651 0.6180 +84766 158234 0.4170 +84766 159371 0.4800 +84766 375346 0.7010 +84766 643037 0.5830 +84767 84851 0.4580 +84767 85414 0.6660 +84767 120586 0.4420 +84767 219436 0.4330 +84767 219447 0.4180 +84767 338674 0.4470 +84767 390144 0.4460 +84767 390151 0.4310 +84767 400736 0.5200 +84767 440560 0.5550 +84767 100129128 0.4480 +84769 90288 0.4120 +84769 92170 0.4840 +84769 115416 0.6240 +84769 126789 0.6260 +84769 130916 0.5400 +84769 196074 0.5320 +84769 196483 0.4360 +84769 255027 0.9030 +84769 387338 0.5590 +84769 497661 0.4360 +84775 124930 0.4060 +84775 131540 0.4130 +84775 284338 0.4710 +84779 85481 0.4950 +84779 122830 0.9440 +84779 140801 0.4730 +84779 165100 0.4670 +84779 200844 0.4440 +84779 252884 0.4200 +84787 93166 0.5410 +84787 144233 0.4520 +84787 387893 0.8100 +84787 440093 0.4490 +84787 440686 0.4490 +84787 653604 0.4490 +84790 91782 0.5210 +84790 91875 0.4500 +84790 92421 0.5080 +84790 112714 0.4050 +84790 113457 0.5280 +84790 120892 0.5580 +84790 128866 0.5290 +84790 136332 0.5180 +84790 140735 0.4310 +84790 150465 0.6220 +84790 151651 0.4700 +84790 153562 0.9000 +84790 197335 0.6530 +84790 200014 0.5040 +84790 203068 0.9940 +84790 221496 0.5480 +84790 255394 0.7100 +84790 260334 0.7550 +84790 338382 0.6670 +84790 339416 0.4280 +84790 345651 0.4580 +84790 347688 0.9790 +84790 347733 0.9710 +84790 374969 0.4490 +84792 84915 0.4390 +84792 255275 0.4160 +84792 338692 0.4250 +84792 390061 0.4490 +84795 137682 0.8330 +84795 340390 0.8350 +84803 116255 0.5430 +84803 129642 0.8420 +84803 132001 0.4060 +84803 132949 0.5030 +84803 137964 0.9030 +84803 150763 0.9830 +84803 154141 0.7200 +84803 158833 0.4300 +84803 253558 0.7930 +84803 376497 0.4280 +84804 84879 0.4180 +84804 84975 0.6940 +84804 91749 0.5670 +84804 113235 0.4780 +84804 113655 0.6330 +84804 126321 0.6410 +84804 130827 0.6710 +84804 136306 0.7130 +84804 162387 0.6510 +84804 201305 0.6190 +84804 222962 0.4200 +84804 256471 0.4140 +84804 388931 0.5400 +84804 389015 0.4210 +84807 149041 0.4230 +84807 259307 0.4220 +84808 115350 0.4190 +84808 386682 0.4180 +84811 84844 0.9960 +84811 84950 0.9850 +84811 84967 0.4380 +84811 85313 0.6490 +84811 96764 0.6040 +84811 113251 0.4030 +84811 116519 0.8320 +84811 126259 0.5150 +84811 147650 0.5150 +84811 153527 0.9910 +84811 154007 0.6440 +84811 164045 0.6450 +84811 164781 0.4180 +84811 220074 0.5410 +84811 222183 0.7120 +84811 254102 0.4930 +84811 256536 0.8430 +84811 284325 0.5180 +84811 341880 0.4320 +84811 348793 0.5210 +84811 442184 0.4770 +84811 100534599 0.8930 +84811 101669762 0.4530 +84812 89869 0.7080 +84812 113026 0.9100 +84812 117286 0.4040 +84812 122618 0.7030 +84812 127254 0.4570 +84812 138429 0.7300 +84812 139189 0.6760 +84812 160851 0.7110 +84812 200576 0.9000 +84812 219770 0.4610 +84812 253430 0.9160 +84812 255022 0.4120 +84812 284451 0.4990 +84814 84928 0.4530 +84814 123099 0.4960 +84814 140467 0.4380 +84814 196051 0.5440 +84814 199953 0.5250 +84814 221496 0.5720 +84816 84869 0.4580 +84816 256380 0.4030 +84817 84833 0.4810 +84817 118487 0.4640 +84817 375748 0.4270 +84818 112744 0.9990 +84818 132014 0.9570 +84818 149233 0.6150 +84823 90850 0.4360 +84823 120892 0.5180 +84823 124404 0.4130 +84823 129401 0.6040 +84823 137902 0.6510 +84823 140836 0.6480 +84823 145645 0.4130 +84823 151648 0.4770 +84823 221496 0.4680 +84823 256979 0.4600 +84823 283129 0.4490 +84823 440093 0.5060 +84823 440686 0.5160 +84823 653604 0.5180 +84823 729857 0.6640 +84824 115350 0.5650 +84824 115352 0.5070 +84824 115650 0.4480 +84824 147710 0.4320 +84824 151888 0.4490 +84824 199786 0.7800 +84824 100423062 0.4550 +84826 84944 0.4310 +84826 113402 0.5180 +84826 127845 0.5450 +84826 137872 0.4040 +84830 130502 0.5070 +84830 132884 0.4910 +84830 147710 0.4250 +84830 221481 0.4090 +84830 347853 0.4930 +84830 375056 0.5060 +84830 392255 0.4340 +84830 400793 0.4070 +84830 104909134 0.4440 +84833 84987 0.5830 +84833 91647 0.4140 +84833 93974 0.8270 +84833 118487 0.4850 +84833 118980 0.4410 +84833 133396 0.4430 +84833 140823 0.4570 +84833 150678 0.5380 +84833 192286 0.4860 +84833 267020 0.9680 +84833 388753 0.4600 +84833 401494 0.4360 +84833 440574 0.4220 +84833 100287932 0.4170 +84833 100526740 0.5400 +84833 100532726 0.5980 +84836 84945 0.4830 +84836 85004 0.4280 +84836 90507 0.4990 +84836 116236 0.5010 +84836 132949 0.4170 +84836 140701 0.5130 +84836 145447 0.5290 +84836 148932 0.4370 +84836 219854 0.4180 +84838 127623 0.5580 +84838 153918 0.4440 +84838 158399 0.6460 +84838 284312 0.4610 +84838 342945 0.6260 +84838 387032 0.6110 +84838 653404 0.4380 +84839 84922 0.4300 +84839 92211 0.7370 +84839 93589 0.4480 +84839 94137 0.5190 +84839 115861 0.4290 +84839 124590 0.4420 +84839 126205 0.4040 +84839 127062 0.4150 +84839 128338 0.4320 +84839 136051 0.4970 +84839 157657 0.5890 +84839 160728 0.5400 +84839 169522 0.5380 +84839 254173 0.4800 +84839 282809 0.4790 +84839 339302 0.6000 +84839 375298 0.5110 +84839 401494 0.4590 +84839 440153 0.4620 +84839 440275 0.4240 +84839 440503 0.4300 +84839 503834 0.5250 +84842 121278 0.4080 +84842 123688 0.4240 +84842 137362 0.6520 +84842 153364 0.4290 +84842 343521 0.4460 +84842 390110 0.4240 +84842 392465 0.5820 +84844 84950 0.9850 +84844 84967 0.5640 +84844 84991 0.8790 +84844 85437 0.8400 +84844 89796 0.4810 +84844 90324 0.6230 +84844 126259 0.4360 +84844 139804 0.6100 +84844 147372 0.4250 +84844 147650 0.4360 +84844 148479 0.4050 +84844 153527 0.9910 +84844 154007 0.9280 +84844 164045 0.5330 +84844 164781 0.4150 +84844 197370 0.4070 +84844 220988 0.4300 +84844 222183 0.4760 +84844 246243 0.4060 +84844 246721 0.6520 +84844 284325 0.6030 +84844 343069 0.4380 +84844 347744 0.6030 +84844 348793 0.4500 +84844 548644 0.6520 +84844 100534599 0.8300 +84844 100996928 0.5660 +84851 140801 0.4290 +84851 158234 0.4780 +84851 285855 0.4390 +84851 285989 0.5490 +84851 286827 0.4670 +84851 375593 0.4800 +84851 378108 0.4770 +84851 390231 0.4200 +84851 100526842 0.4290 +84858 118881 0.4390 +84858 147906 0.4790 +84858 170825 0.4190 +84858 219409 0.4020 +84859 84955 0.6200 +84859 85440 0.9760 +84859 131540 0.4560 +84859 163049 0.4660 +84859 170959 0.4720 +84859 192669 0.5570 +84861 84937 0.4580 +84861 89890 0.9070 +84861 90135 0.4160 +84861 90293 0.9790 +84861 90678 0.5470 +84861 91179 0.6170 +84861 131377 0.7550 +84861 149951 0.5060 +84861 150209 0.5120 +84861 150684 0.5000 +84861 154743 0.4610 +84861 154881 0.5180 +84861 170622 0.4990 +84861 200845 0.4270 +84861 220441 0.5710 +84861 253980 0.9200 +84861 254225 0.4250 +84861 339745 0.9060 +84861 390594 0.4340 +84861 553115 0.7260 +84861 652968 0.4300 +84864 85441 0.4070 +84864 91801 0.4330 +84864 92400 0.4200 +84864 129450 0.7420 +84864 390245 0.4040 +84864 653604 0.5600 +84864 100137047 0.5130 +84865 85474 0.4350 +84865 116540 0.4740 +84865 130951 0.4590 +84865 165545 0.5030 +84865 388963 0.6010 +84865 728498 0.4140 +84865 728586 0.4740 +84865 101059918 0.4050 +84866 89894 0.5460 +84866 92162 0.4680 +84866 94031 0.4490 +84866 124930 0.5330 +84866 131920 0.6500 +84866 138429 0.4950 +84866 155006 0.5420 +84866 161291 0.4960 +84866 199964 0.4220 +84866 349667 0.4560 +84866 374395 0.5440 +84866 389073 0.4180 +84866 641649 0.5290 +84868 84969 0.4430 +84868 89790 0.5190 +84868 91937 0.4470 +84868 114132 0.5820 +84868 114836 0.5340 +84868 126259 0.4800 +84868 131450 0.5070 +84868 140885 0.6330 +84868 143903 0.5030 +84868 151888 0.8160 +84868 152404 0.5710 +84868 160364 0.7080 +84868 168400 0.5220 +84868 169355 0.6050 +84868 201633 0.8970 +84868 259197 0.5850 +84868 284194 0.9980 +84868 284266 0.5840 +84868 339390 0.6520 +84868 654346 0.9980 +84868 100133941 0.5250 +84868 100423062 0.9060 +84868 102723407 0.9200 +84869 112812 0.4630 +84869 116285 0.4040 +84869 126328 0.4390 +84869 132949 0.4980 +84869 148223 0.5550 +84869 197322 0.4050 +84869 254863 0.4320 +84869 440574 0.5140 +84869 109703458 0.9450 +84870 89780 0.7770 +84870 112802 0.4480 +84870 127018 0.4840 +84870 147991 0.5140 +84870 284654 0.5620 +84870 340419 0.5770 +84870 343637 0.5860 +84871 92949 0.4020 +84871 115004 0.6310 +84871 119587 0.6370 +84871 150465 0.6530 +84871 164395 0.4240 +84871 254173 0.4560 +84871 284076 0.7410 +84871 440307 0.5410 +84872 85437 0.4260 +84872 144233 0.5390 +84872 339230 0.6300 +84872 643866 0.5330 +84872 728276 0.5590 +84873 388633 0.4700 +84874 150771 0.4030 +84874 151313 0.4780 +84874 163154 0.4790 +84874 200765 0.4380 +84874 100529239 0.4780 +84875 85441 0.4950 +84875 116969 0.4260 +84875 131870 0.4940 +84875 140733 0.7500 +84875 151636 0.5340 +84875 203054 0.4250 +84875 219285 0.4010 +84875 221443 0.7100 +84875 375686 0.4250 +84876 90139 0.4820 +84876 90550 0.4150 +84876 91860 0.8750 +84876 93129 0.9980 +84876 151651 0.5740 +84876 159371 0.7170 +84876 163688 0.8750 +84876 375346 0.7040 +84878 89887 0.4160 +84878 113000 0.5540 +84878 113179 0.4430 +84878 114781 0.4510 +84878 124402 0.5600 +84878 126526 0.4300 +84878 222234 0.5210 +84878 255783 0.4720 +84878 256364 0.4440 +84878 646000 0.4790 +84879 130589 0.4030 +84879 163786 0.6190 +84879 284403 0.4600 +84879 405754 0.9980 +84879 100506658 0.5000 +84881 85865 0.7790 +84881 87178 0.4600 +84881 92170 0.8020 +84881 92399 0.5010 +84881 113251 0.4920 +84881 115416 0.9020 +84881 121457 0.6000 +84881 126789 0.7470 +84881 130916 0.6460 +84881 137695 0.4950 +84881 142940 0.7300 +84881 150962 0.7150 +84881 196074 0.7010 +84881 201626 0.4200 +84881 219927 0.7040 +84881 285367 0.7480 +84881 387338 0.8210 +84881 100996939 0.4460 +84883 90480 0.7660 +84883 90624 0.4160 +84883 112812 0.6100 +84883 118487 0.4190 +84883 132949 0.4230 +84883 150209 0.4040 +84883 150696 0.4120 +84883 219743 0.4590 +84883 730249 0.6210 +84885 219437 0.4550 +84885 254359 0.5670 +84885 283576 0.6450 +84886 84939 0.4040 +84886 91300 0.5370 +84886 123346 0.5680 +84886 125965 0.8100 +84886 131118 0.5150 +84886 134266 0.7840 +84886 139221 0.4020 +84886 140564 0.7360 +84886 164668 0.7360 +84886 164684 0.5990 +84886 170712 0.5390 +84886 192286 0.5680 +84886 200315 0.7360 +84886 200316 0.7360 +84886 259307 0.4590 +84886 267020 0.6340 +84886 283459 0.8970 +84886 339416 0.4840 +84886 374291 0.4020 +84886 388753 0.8100 +84886 440567 0.8810 +84886 613227 0.5680 +84886 728317 0.4020 +84886 100287932 0.7900 +84886 100532726 0.5950 +84886 105372267 0.5320 +84888 94056 0.5310 +84888 149233 0.4250 +84888 388325 0.4830 +84889 115825 0.4180 +84889 146167 0.4130 +84889 157724 0.7550 +84889 399512 0.4070 +84890 143684 0.5740 +84890 339896 0.9480 +84892 90529 0.5050 +84892 120071 0.6270 +84892 131377 0.4170 +84892 133584 0.5090 +84892 146664 0.6380 +84892 148789 0.9890 +84892 375790 0.4720 +84892 727800 0.5310 +84892 729920 0.7440 +84893 84901 0.5740 +84893 85365 0.5310 +84893 92797 0.6380 +84893 113510 0.5320 +84893 126074 0.4010 +84893 148581 0.5580 +84893 158584 0.4210 +84893 201973 0.4900 +84893 253714 0.4490 +84893 257218 0.4970 +84893 259282 0.6130 +84893 283237 0.4670 +84893 348654 0.5520 +84893 375748 0.4050 +84893 387082 0.5710 +84893 387522 0.4170 +84893 100533467 0.4810 +84894 116448 0.4850 +84894 146760 0.4040 +84894 147700 0.4140 +84894 153020 0.4510 +84894 158038 0.5430 +84894 386724 0.4900 +84894 404037 0.4260 +84895 124565 0.4130 +84895 201164 0.5720 +84895 284184 0.4100 +84895 339229 0.4090 +84895 374986 0.9340 +84895 440503 0.4480 +84895 100131801 0.4300 +84896 91137 0.4220 +84896 91452 0.6290 +84896 200895 0.4500 +84896 405754 0.7960 +84896 653689 0.5160 +84897 94239 0.4230 +84897 138199 0.4430 +84897 283337 0.6340 +84897 283899 0.5890 +84898 115353 0.4370 +84898 160335 0.5010 +84898 440712 0.4080 +84899 123169 0.4790 +84899 131034 0.4950 +84899 138724 0.4090 +84899 286148 0.5200 +84899 440712 0.4220 +84900 89970 0.4160 +84900 92305 0.4480 +84900 114787 0.4330 +84900 138065 0.4670 +84900 285800 0.4410 +84900 401934 0.5670 +84901 124245 0.4400 +84901 153527 0.5120 +84901 171222 0.5090 +84901 205564 0.4150 +84901 282679 0.4730 +84901 283208 0.4490 +84901 286053 0.6320 +84901 653437 0.4730 +84902 84984 0.6520 +84902 85302 0.9830 +84902 85459 0.4150 +84902 90060 0.6370 +84902 90410 0.5470 +84902 91147 0.4120 +84902 116840 0.4550 +84902 117177 0.7430 +84902 132320 0.9960 +84902 134359 0.5550 +84902 145508 0.7600 +84902 146057 0.6750 +84902 152185 0.4420 +84902 153241 0.6130 +84902 200894 0.5440 +84902 201255 0.7850 +84902 282809 0.4100 +84902 347240 0.4510 +84904 92610 0.5920 +84904 151648 0.4030 +84904 203260 0.4020 +84904 389337 0.4770 +84905 89887 0.6180 +84905 203245 0.4540 +84905 646862 0.4240 +84908 223117 0.6130 +84908 340990 0.4540 +84908 388650 0.5960 +84909 89932 0.4040 +84909 206338 0.4160 +84909 220081 0.4760 +84909 252969 0.5040 +84910 129804 0.7580 +84910 376940 0.5680 +84911 129025 0.5160 +84911 148268 0.5260 +84911 163087 0.4040 +84911 284391 0.5120 +84911 284406 0.4630 +84911 374899 0.6880 +84911 374900 0.5230 +84911 388566 0.5510 +84911 390927 0.6360 +84911 729440 0.4580 +84912 113829 0.5540 +84912 222553 0.5270 +84912 340146 0.8850 +84912 347734 0.4810 +84913 283298 0.4440 +84913 389136 0.4740 +84915 136288 0.4600 +84915 220004 0.4550 +84915 338692 0.4640 +84916 84946 0.7650 +84916 85441 0.4440 +84916 88745 0.6590 +84916 90121 0.6640 +84916 90381 0.6450 +84916 90957 0.4230 +84916 91582 0.8130 +84916 92856 0.9990 +84916 115708 0.4090 +84916 115752 0.5140 +84916 116966 0.7160 +84916 117246 0.8930 +84916 118460 0.6380 +84916 122402 0.4060 +84916 126402 0.6420 +84916 128061 0.8650 +84916 129563 0.5200 +84916 133482 0.4240 +84916 140032 0.6280 +84916 146212 0.5650 +84916 153443 0.8240 +84916 161424 0.9240 +84916 165545 0.7020 +84916 170506 0.4380 +84916 221078 0.6850 +84916 221830 0.8790 +84916 345630 0.9680 +84916 641776 0.4530 +84916 643909 0.4530 +84916 692312 0.5540 +84916 728524 0.4530 +84916 100996746 0.4530 +84916 105180390 0.4530 +84916 105180391 0.4530 +84918 91663 0.4200 +84918 116254 0.4670 +84919 85403 0.4340 +84919 89801 0.5510 +84919 90506 0.5400 +84919 90673 0.5510 +84919 127845 0.4210 +84919 149371 0.7720 +84919 254050 0.5400 +84919 256329 0.4760 +84919 286187 0.5400 +84919 440275 0.5470 +84919 648791 0.5510 +84920 144245 0.9030 +84920 201595 0.9150 +84920 219578 0.4070 +84922 89970 0.5630 +84922 126208 0.4200 +84922 147808 0.5540 +84922 163033 0.4390 +84922 339344 0.4670 +84923 84932 0.4350 +84923 93624 0.7480 +84923 133957 0.8480 +84923 137886 0.8390 +84923 140460 0.7180 +84923 348378 0.5190 +84924 163081 0.4210 +84924 374899 0.4100 +84924 653657 0.4440 +84925 112398 0.5830 +84925 112399 0.6580 +84925 124152 0.4040 +84925 284992 0.4570 +84925 374659 0.4470 +84926 84975 0.7360 +84926 85865 0.5070 +84926 113201 0.4830 +84926 131601 0.4010 +84926 200845 0.5250 +84926 200933 0.7850 +84926 285282 0.4260 +84928 90624 0.4640 +84928 114960 0.4750 +84928 131076 0.4440 +84928 160418 0.4300 +84928 199953 0.4140 +84928 348995 0.5670 +84929 124857 0.4650 +84929 347148 0.4530 +84930 85417 0.4190 +84930 90381 0.5130 +84930 91452 0.4590 +84930 151246 0.6200 +84930 151648 0.7630 +84930 259266 0.6750 +84930 286151 0.4010 +84930 339965 0.4180 +84932 92689 0.5300 +84932 149647 0.5830 +84932 285172 0.4480 +84932 346653 0.8390 +84932 388799 0.4160 +84932 493856 0.4140 +84933 84948 0.4770 +84933 84955 0.4660 +84933 286053 0.4980 +84933 286077 0.4620 +84934 115708 0.4570 +84934 115811 0.4360 +84934 126789 0.4680 +84934 147746 0.4690 +84934 204851 0.4620 +84934 387885 0.5320 +84935 126003 0.4350 +84935 145173 0.5930 +84935 221391 0.4410 +84935 374877 0.4510 +84936 85451 0.4660 +84936 92421 0.8240 +84936 116224 0.4450 +84936 128866 0.4140 +84936 129531 0.5370 +84936 130617 0.4490 +84936 134829 0.4280 +84936 161829 0.4030 +84936 255252 0.5260 +84936 283237 0.4640 +84936 402117 0.4490 +84936 643338 0.4790 +84936 728911 0.5100 +84936 102723737 0.5060 +84937 148066 0.6000 +84937 149175 0.4650 +84937 162998 0.4090 +84937 220441 0.4560 +84937 645432 0.4030 +84938 84971 0.6100 +84938 85440 0.5160 +84938 89849 0.6820 +84938 115201 0.4910 +84938 140901 0.5690 +84938 149420 0.5790 +84938 285973 0.7160 +84938 345611 0.4080 +84938 440738 0.8440 +84938 441925 0.4710 +84938 643246 0.6200 +84939 90381 0.4410 +84939 91300 0.6610 +84939 91942 0.6620 +84939 112812 0.5930 +84939 114789 0.5780 +84939 119391 0.5130 +84939 126328 0.5930 +84939 283459 0.4170 +84939 284427 0.5780 +84939 440567 0.6140 +84939 100532726 0.6230 +84940 126298 0.4820 +84940 200895 0.4500 +84940 221662 0.4660 +84940 222663 0.4220 +84940 283212 0.5370 +84941 116362 0.4200 +84941 653145 0.5010 +84942 112858 0.7120 +84942 123720 0.5250 +84942 132660 0.4420 +84942 140767 0.4490 +84942 286204 0.4280 +84942 286826 0.5900 +84942 100527963 0.4100 +84944 91646 0.7580 +84944 93426 0.5320 +84944 113802 0.7140 +84944 121355 0.6370 +84944 122402 0.9690 +84944 132612 0.4560 +84944 136991 0.7970 +84944 143689 0.9570 +84944 154197 0.4170 +84944 163589 0.6350 +84944 192669 0.4470 +84944 201164 0.6450 +84944 221400 0.6540 +84944 346673 0.4470 +84944 440822 0.4940 +84944 100526761 0.4700 +84945 93081 0.4090 +84945 116236 0.5070 +84945 127018 0.4910 +84945 140701 0.6000 +84945 145447 0.4240 +84945 171586 0.5230 +84945 253152 0.4700 +84946 85395 0.9590 +84946 88745 0.4090 +84946 90121 0.8510 +84946 90441 0.5840 +84946 92170 0.4140 +84946 92345 0.6190 +84946 92856 0.8480 +84946 114987 0.8610 +84946 115939 0.5470 +84946 116966 0.6460 +84946 117246 0.9170 +84946 123169 0.4710 +84946 126402 0.6030 +84946 140032 0.7820 +84946 146057 0.5860 +84946 146212 0.5390 +84946 153443 0.7240 +84946 153918 0.4060 +84946 155368 0.6680 +84946 161424 0.6740 +84946 162427 0.4150 +84946 165545 0.5710 +84946 221078 0.7580 +84946 221830 0.7990 +84946 285855 0.4230 +84946 345630 0.4390 +84946 345895 0.4040 +84946 347487 0.5720 +84946 387129 0.4100 +84946 641776 0.4740 +84946 643909 0.4740 +84946 692312 0.5810 +84946 728524 0.4740 +84946 100287482 0.4590 +84946 100505478 0.4060 +84946 100529239 0.8160 +84946 100996746 0.4740 +84946 102157402 0.4950 +84946 102800317 0.8450 +84946 105180390 0.4740 +84946 105180391 0.4740 +84947 84957 0.5540 +84947 114826 0.4490 +84947 131118 0.5830 +84947 404672 0.5720 +84947 729515 0.6140 +84948 85395 0.4130 +84948 113655 0.4800 +84948 127687 0.4440 +84948 149473 0.4870 +84948 201798 0.5220 +84948 203245 0.5420 +84948 220359 0.4710 +84948 441150 0.5070 +84948 100533106 0.4470 +84950 90956 0.6780 +84950 91603 0.5420 +84950 91949 0.4860 +84950 151903 0.4400 +84950 153241 0.4160 +84950 153527 0.9990 +84950 200014 0.4820 +84950 222698 0.5970 +84950 256536 0.8690 +84951 100129361 0.4320 +84952 91862 0.4640 +84952 112812 0.4250 +84952 122553 0.4030 +84952 126003 0.5120 +84952 144100 0.8300 +84952 147495 0.4040 +84952 153562 0.6360 +84952 167691 0.4590 +84952 100128327 0.4450 +84952 100506658 0.7480 +84954 92552 0.5780 +84954 122706 0.5610 +84954 126119 0.6690 +84954 134510 0.5370 +84954 139562 0.4200 +84954 143471 0.4970 +84954 221302 0.5390 +84954 286262 0.4480 +84954 377630 0.4150 +84954 728689 0.4320 +84954 729440 0.5420 +84954 100652824 0.5490 +84955 85456 0.6190 +84955 90293 0.6820 +84955 90390 0.6980 +84955 90459 0.6570 +84955 91107 0.6190 +84955 112950 0.6220 +84955 113878 0.6190 +84955 114294 0.6240 +84955 134492 0.6400 +84955 136853 0.7190 +84955 138716 0.6220 +84955 151636 0.6270 +84955 157769 0.6520 +84955 170463 0.6190 +84955 192670 0.6190 +84955 200879 0.4200 +84955 283219 0.6190 +84955 347688 0.6270 +84955 375790 0.6210 +84955 400569 0.6250 +84957 90113 0.4090 +84957 122616 0.5030 +84957 126075 0.4280 +84957 140462 0.4800 +84957 152816 0.4030 +84957 222229 0.4210 +84957 253012 0.4590 +84957 256764 0.4490 +84957 285613 0.6290 +84957 768211 0.5500 +84958 91544 0.4360 +84958 93517 0.4630 +84958 95681 0.4670 +84958 124989 0.4190 +84958 139599 0.4680 +84958 146779 0.4560 +84958 160777 0.4740 +84958 163259 0.4130 +84958 201294 0.6010 +84958 653361 0.6920 +84959 116985 0.6380 +84959 117166 0.4090 +84959 200232 0.5710 +84959 285527 0.4150 +84959 337867 0.4970 +84959 342667 0.4100 +84959 441531 0.8580 +84960 85014 0.6310 +84960 92749 0.4020 +84960 119016 0.4230 +84960 123775 0.4520 +84960 134391 0.5990 +84960 146923 0.4220 +84960 158056 0.5910 +84960 284352 0.4130 +84960 286256 0.5970 +84960 375341 0.4310 +84960 404037 0.5290 +84961 123879 0.5040 +84961 127428 0.5340 +84961 129685 0.4390 +84961 148327 0.5430 +84961 192669 0.4610 +84961 254170 0.4480 +84961 388403 0.4140 +84961 554251 0.4220 +84962 85236 0.5000 +84962 94239 0.5040 +84962 112399 0.5500 +84962 122706 0.4160 +84962 126374 0.9100 +84962 128312 0.4990 +84962 128710 0.4260 +84962 143872 0.4160 +84962 255626 0.4990 +84962 474382 0.4990 +84962 653604 0.5430 +84964 91801 0.4310 +84964 121642 0.8400 +84964 199745 0.4640 +84964 221120 0.6740 +84966 90134 0.5380 +84966 127707 0.4730 +84966 140469 0.4540 +84966 145376 0.4180 +84966 152404 0.5600 +84966 157807 0.5300 +84966 283284 0.4740 +84967 85476 0.5640 +84967 124801 0.4750 +84967 126259 0.6200 +84967 134353 0.9990 +84967 143884 0.4240 +84967 147650 0.6200 +84967 153527 0.4510 +84967 154007 0.4650 +84967 164045 0.5050 +84967 164781 0.4290 +84967 220074 0.5710 +84967 222183 0.4650 +84967 246721 0.4360 +84967 256536 0.7470 +84967 284325 0.6080 +84967 348793 0.4480 +84967 392517 0.5900 +84967 548644 0.4360 +84967 100134938 0.4360 +84967 100996928 0.5420 +84967 107983993 0.4360 +84968 284615 0.4310 +84968 441518 0.4500 +84968 728317 0.5310 +84968 101059938 0.5660 +84968 101059953 0.5660 +84969 92283 0.9270 +84969 201633 0.4320 +84970 85300 0.4580 +84970 93487 0.4220 +84970 132430 0.5330 +84970 253982 0.6020 +84970 256957 0.4050 +84970 257019 0.5180 +84970 339487 0.6460 +84971 89849 0.6510 +84971 115201 0.4950 +84971 140901 0.5780 +84971 149420 0.5700 +84971 285973 0.6880 +84971 345611 0.4060 +84971 440738 0.8330 +84971 441925 0.4550 +84971 643246 0.6430 +84975 91368 0.4050 +84975 113655 0.7250 +84975 126321 0.5460 +84975 136306 0.6260 +84975 162387 0.5600 +84975 201305 0.5470 +84975 347734 0.4730 +84975 388931 0.5120 +84975 448834 0.4930 +84975 114483834 0.4140 +84976 91653 0.4760 +84976 166863 0.4160 +84976 374654 0.4920 +84978 286362 0.4760 +84978 388569 0.4800 +84984 85302 0.4490 +84984 90410 0.4780 +84984 116211 0.5120 +84984 123811 0.5770 +84984 131540 0.5220 +84984 132320 0.6050 +84984 145508 0.5280 +84984 146057 0.4480 +84984 153241 0.4680 +84984 200894 0.5250 +84984 200933 0.4290 +84984 255758 0.5880 +84984 255798 0.6330 +84984 348793 0.5930 +84984 375387 0.4740 +84985 90313 0.4630 +84985 93594 0.5350 +84985 100527943 0.4230 +84987 90639 0.5680 +84987 91012 0.4090 +84987 113251 0.4990 +84987 116228 0.6570 +84987 118490 0.8010 +84987 123346 0.5330 +84987 126328 0.6990 +84987 128308 0.4800 +84987 130355 0.4540 +84987 140823 0.5320 +84987 152100 0.6800 +84987 192286 0.7430 +84987 285521 0.6240 +84987 374291 0.5050 +84987 388753 0.7330 +84987 389203 0.6890 +84987 493753 0.7100 +84987 100131801 0.6800 +84987 100303755 0.6240 +84988 90990 0.5540 +84988 113655 0.6310 +84988 157567 0.4470 +84988 203054 0.5520 +84988 256329 0.4360 +84988 317754 0.4130 +84988 388468 0.4210 +84988 404785 0.4230 +84988 441381 0.5170 +84988 554226 0.4370 +84988 641455 0.4250 +84988 727957 0.6170 +84988 100288966 0.4130 +84988 100996331 0.4260 +84988 102723502 0.4130 +84988 102724631 0.4110 +84991 90324 0.4050 +84991 115825 0.4320 +84991 342371 0.7030 +84991 100996928 0.4470 +84992 90459 0.5460 +84992 93183 0.7410 +84992 93210 0.7110 +84992 121665 0.4030 +84992 284098 0.7880 +84992 100996939 0.9120 +84993 90007 0.4340 +84993 90324 0.4410 +84993 93550 0.4590 +84993 114987 0.4550 +84993 126299 0.7110 +84993 126402 0.4410 +84993 126969 0.5450 +84993 140032 0.4780 +84993 196996 0.4180 +84993 200916 0.4180 +84993 283237 0.4170 +84993 285855 0.4460 +84993 342096 0.4430 +84993 347487 0.4110 +84993 645073 0.4630 +84993 729428 0.5660 +84993 729447 0.5020 +84993 100529097 0.4480 +84993 100529239 0.4200 +84993 102724473 0.6110 +85002 93109 0.4840 +85002 124751 0.5110 +85002 144404 0.4180 +85002 613209 0.5770 +85002 613211 0.5770 +85004 256051 0.4220 +85007 91522 0.4040 +85007 123688 0.9950 +85007 126133 0.4110 +85007 127396 0.4570 +85007 132949 0.7100 +85007 137872 0.5210 +85007 162417 0.4860 +85007 222484 0.4010 +85007 284346 0.4230 +85007 339896 0.4300 +85012 90843 0.6100 +85012 142684 0.4660 +85012 283159 0.4370 +85012 340542 0.7040 +85013 92736 0.4520 +85013 130560 0.4180 +85013 133060 0.6790 +85013 166793 0.5800 +85013 202915 0.4180 +85013 283987 0.4330 +85013 388021 0.4790 +85013 401427 0.4790 +85013 442444 0.5060 +85014 126789 0.5520 +85014 158056 0.5560 +85014 253582 0.5930 +85014 286148 0.4030 +85014 286256 0.5770 +85014 414332 0.5210 +85015 103910 0.4380 +85015 114803 0.4300 +85015 159195 0.4540 +85015 167691 0.4350 +85015 196074 0.4550 +85015 197131 0.4820 +85015 221302 0.4350 +85016 85478 0.4440 +85016 114908 0.4670 +85016 115399 0.5690 +85016 116143 0.5610 +85016 120379 0.6640 +85016 123872 0.6160 +85016 139212 0.7050 +85016 146845 0.5130 +85016 158798 0.4220 +85016 161582 0.6180 +85016 164781 0.5640 +85016 221421 0.4140 +85016 285755 0.4690 +85016 339829 0.5540 +85016 352909 0.6920 +85016 388389 0.6060 +85019 91768 0.4850 +85019 92691 0.4020 +85019 147463 0.5300 +85019 152877 0.4600 +85019 100293516 0.4490 +85021 85439 0.6160 +85021 115548 0.5340 +85021 126298 0.5680 +85025 94107 0.4770 +85025 113402 0.4520 +85025 144404 0.4940 +85025 256764 0.5040 +85025 441869 0.4180 +85025 619208 0.5690 +85025 653567 0.4040 +85025 100507607 0.4200 +85027 91977 0.4490 +85027 148534 0.4920 +85027 284325 0.4630 +85027 345757 0.4260 +85027 388588 0.5300 +85027 389396 0.4190 +85027 399473 0.4890 +85027 441518 0.4790 +85027 100507203 0.4770 +85235 85236 0.9810 +85235 92815 0.4350 +85235 93624 0.5390 +85235 94239 0.6140 +85235 114785 0.4530 +85235 114803 0.5750 +85235 121504 0.9340 +85235 121536 0.4120 +85235 126961 0.9580 +85235 128312 0.7140 +85235 171023 0.4340 +85235 221613 0.4110 +85235 221656 0.4950 +85235 221937 0.4080 +85235 255626 0.6690 +85235 317772 0.9110 +85235 333932 0.9560 +85235 440689 0.7380 +85235 474382 0.4320 +85235 554313 0.9310 +85235 653604 0.9720 +85235 723790 0.8140 +85235 114483833 0.4820 +85236 90780 0.5470 +85236 92815 0.7200 +85236 93426 0.5010 +85236 93624 0.5840 +85236 94239 0.6800 +85236 114569 0.4370 +85236 114803 0.5390 +85236 115004 0.9130 +85236 121504 0.9710 +85236 121536 0.7320 +85236 123169 0.7040 +85236 126119 0.4760 +85236 126961 0.9380 +85236 128312 0.4740 +85236 165918 0.5940 +85236 170506 0.4620 +85236 192669 0.5240 +85236 192670 0.5350 +85236 221302 0.4180 +85236 221613 0.6640 +85236 255626 0.4600 +85236 256126 0.5090 +85236 283149 0.4990 +85236 317772 0.7390 +85236 333932 0.9310 +85236 387893 0.9470 +85236 391769 0.8680 +85236 440093 0.9830 +85236 440533 0.4390 +85236 440686 0.9510 +85236 440689 0.4330 +85236 474381 0.4940 +85236 474382 0.6360 +85236 554313 0.9710 +85236 644186 0.4990 +85236 653604 0.9940 +85236 723790 0.9620 +85236 115482686 0.4190 +85280 85285 0.8160 +85280 85289 0.7960 +85280 85290 0.7940 +85280 85291 0.8290 +85280 85293 0.4910 +85280 112802 0.7270 +85280 121391 0.4530 +85280 147183 0.4730 +85280 200634 0.4310 +85280 337878 0.4530 +85280 337879 0.6230 +85280 337880 0.7760 +85280 337882 0.4910 +85280 337960 0.5230 +85280 337970 0.5170 +85280 342574 0.8380 +85280 386678 0.4280 +85280 386681 0.4160 +85280 448834 0.4120 +85280 653240 0.4350 +85280 728224 0.7920 +85280 728318 0.4260 +85280 100132476 0.7800 +85280 100505724 0.5320 +85285 85289 0.8510 +85285 85290 0.8700 +85285 85291 0.8730 +85285 85293 0.5790 +85285 112802 0.5100 +85285 147409 0.4580 +85285 337878 0.5980 +85285 337879 0.6550 +85285 337880 0.7150 +85285 337882 0.4970 +85285 337960 0.4930 +85285 337966 0.4470 +85285 337967 0.4790 +85285 337968 0.4800 +85285 337970 0.4970 +85285 337979 0.5170 +85285 342574 0.5700 +85285 353323 0.4350 +85285 387267 0.5720 +85285 388818 0.5250 +85285 440051 0.5740 +85285 643803 0.4750 +85285 653240 0.6560 +85285 728224 0.8690 +85285 728255 0.5130 +85285 730755 0.4470 +85285 100132386 0.4320 +85285 100132476 0.8650 +85289 85290 0.8770 +85289 85291 0.9280 +85289 85294 0.4370 +85289 112802 0.5240 +85289 121391 0.4160 +85289 140258 0.4960 +85289 220081 0.4340 +85289 254773 0.4320 +85289 337878 0.5720 +85289 337879 0.6480 +85289 337880 0.7880 +85289 337882 0.4080 +85289 337970 0.6380 +85289 342574 0.5320 +85289 353140 0.5910 +85289 353144 0.5990 +85289 386678 0.5050 +85289 400720 0.4340 +85289 403244 0.4160 +85289 440270 0.6030 +85289 653240 0.7120 +85289 728224 0.8610 +85289 100132386 0.4380 +85289 100132476 0.8640 +85290 85291 0.8730 +85290 85293 0.5200 +85290 112802 0.6170 +85290 121391 0.5730 +85290 147183 0.5780 +85290 147409 0.4440 +85290 220388 0.4450 +85290 337878 0.6660 +85290 337879 0.7100 +85290 337880 0.7890 +85290 337882 0.4880 +85290 337960 0.5160 +85290 337966 0.5950 +85290 337967 0.5090 +85290 337968 0.4900 +85290 337970 0.7670 +85290 337979 0.5320 +85290 342574 0.7210 +85290 387267 0.5980 +85290 388468 0.4320 +85290 440051 0.6000 +85290 441581 0.4470 +85290 641455 0.4250 +85290 643664 0.4470 +85290 643803 0.6040 +85290 653240 0.7160 +85290 728224 0.8740 +85290 728279 0.4860 +85290 100131902 0.4150 +85290 100132386 0.4910 +85290 100132476 0.8730 +85290 112267897 0.5800 +85291 85293 0.5440 +85291 112802 0.6610 +85291 140258 0.4360 +85291 147183 0.4200 +85291 337878 0.7240 +85291 337879 0.6670 +85291 337880 0.8650 +85291 337882 0.4780 +85291 337966 0.6170 +85291 337970 0.6570 +85291 337978 0.6050 +85291 342574 0.6000 +85291 353132 0.5020 +85291 353139 0.4010 +85291 353142 0.5980 +85291 353144 0.4320 +85291 353332 0.6220 +85291 386678 0.5110 +85291 386680 0.4660 +85291 387267 0.4800 +85291 440023 0.6440 +85291 440050 0.6890 +85291 440051 0.4940 +85291 653240 0.6830 +85291 728224 0.8680 +85291 100131902 0.4950 +85291 100132386 0.4420 +85291 100132476 0.8690 +85293 112802 0.4030 +85293 140258 0.4670 +85293 147183 0.4020 +85293 319101 0.5100 +85293 337879 0.4990 +85293 337880 0.6150 +85293 337966 0.4310 +85293 337967 0.4340 +85293 337968 0.4030 +85293 337979 0.4160 +85293 353332 0.5040 +85293 388818 0.4390 +85293 643803 0.4480 +85293 728224 0.4240 +85293 728255 0.4660 +85293 728318 0.5760 +85293 100132476 0.5440 +85293 100505753 0.4470 +85294 340900 0.4310 +85294 386672 0.5440 +85294 386675 0.4800 +85294 386676 0.5820 +85294 386678 0.5410 +85294 386680 0.5170 +85294 386681 0.4790 +85294 386682 0.5700 +85294 643803 0.4600 +85294 728279 0.4470 +85294 728318 0.4470 +85294 730755 0.4250 +85294 100505724 0.6000 +85300 642489 0.7070 +85301 89866 0.4360 +85301 91522 0.5710 +85301 131873 0.5480 +85301 136227 0.5470 +85301 140766 0.6080 +85301 149111 0.5240 +85301 169044 0.6480 +85301 255631 0.4850 +85301 283208 0.6430 +85301 340267 0.5560 +85302 90060 0.5860 +85302 90410 0.7720 +85302 91107 0.5970 +85302 116840 0.5500 +85302 117177 0.7410 +85302 132320 0.9970 +85302 145508 0.6550 +85302 146057 0.7400 +85302 147837 0.5070 +85302 152185 0.4030 +85302 153241 0.6170 +85302 167153 0.5820 +85302 200894 0.5430 +85302 201255 0.7090 +85302 201292 0.5780 +85302 219844 0.5900 +85302 261734 0.5410 +85302 643677 0.4580 +85313 90441 0.4530 +85313 121260 0.4290 +85313 143884 0.5660 +85315 114327 0.9420 +85315 124936 0.5300 +85315 151987 0.4090 +85315 164091 0.5140 +85315 221938 0.4640 +85315 284098 0.4180 +85320 85366 0.4120 +85320 94160 0.6630 +85320 114571 0.4170 +85320 149563 0.5000 +85320 340273 0.4370 +85320 401024 0.4660 +85320 114483834 0.5660 +85329 133418 0.4740 +85329 196740 0.4760 +85329 286753 0.4270 +85352 116159 0.5020 +85352 138151 0.4030 +85352 152573 0.4260 +85352 348378 0.5780 +85354 112802 0.4120 +85354 147183 0.4160 +85354 337977 0.6370 +85354 342574 0.4200 +85358 85445 0.4200 +85358 93986 0.4020 +85358 116986 0.4140 +85358 139411 0.7110 +85358 140679 0.4310 +85358 145581 0.4720 +85358 152330 0.6500 +85358 390174 0.4210 +85358 415116 0.7050 +85359 85376 0.4740 +85359 128977 0.4820 +85359 128989 0.4560 +85359 388552 0.4290 +85359 728229 0.4240 +85360 116840 0.4520 +85360 149420 0.4050 +85360 284071 0.4360 +85363 91543 0.5490 +85363 91607 0.5350 +85363 115004 0.5120 +85363 117854 0.5630 +85363 137902 0.4330 +85363 140564 0.5740 +85363 164668 0.5390 +85363 200315 0.4420 +85363 200316 0.7040 +85363 220972 0.4170 +85363 256987 0.5930 +85363 257397 0.5730 +85363 442862 0.6680 +85363 445372 0.7700 +85363 619189 0.4750 +85363 643246 0.6110 +85363 729857 0.5730 +85364 89122 0.5230 +85364 115004 0.6990 +85364 124245 0.5590 +85364 132851 0.4590 +85364 149041 0.5100 +85364 340526 0.4140 +85365 91949 0.6040 +85365 115817 0.4590 +85365 134266 0.4430 +85365 147007 0.4080 +85365 199857 0.6330 +85365 283209 0.4120 +85365 286451 0.4530 +85365 440138 0.9690 +85365 644974 0.6140 +85366 91574 0.5960 +85366 91624 0.4470 +85366 91689 0.5020 +85366 91860 0.9970 +85366 91977 0.5270 +85366 92344 0.5150 +85366 93408 0.7520 +85366 103910 0.9400 +85366 112802 0.4210 +85366 125972 0.5670 +85366 140465 0.9390 +85366 149420 0.5740 +85366 163688 0.9980 +85366 282996 0.4730 +85366 340419 0.4740 +85369 93973 0.4610 +85369 128025 0.4290 +85376 85438 0.4330 +85376 136332 0.4600 +85376 138724 0.4480 +85376 140873 0.5190 +85376 145942 0.4500 +85376 146849 0.4260 +85376 150221 0.8120 +85376 283385 0.5740 +85376 440270 0.4480 +85376 440804 0.8100 +85376 728229 0.5830 +85376 100129239 0.4330 +85377 114987 0.5430 +85377 126402 0.4910 +85377 140032 0.5070 +85377 255308 0.5230 +85377 286187 0.4370 +85377 347487 0.4390 +85377 376267 0.7570 +85377 728689 0.8370 +85377 100287482 0.4220 +85377 100529239 0.5540 +85377 100996746 0.5730 +85378 89941 0.5390 +85378 90990 0.4430 +85378 114791 0.9990 +85378 121441 0.9880 +85378 124995 0.5350 +85378 146059 0.4150 +85378 163786 0.4390 +85378 221927 0.4480 +85378 222229 0.4760 +85378 259266 0.4610 +85378 282991 0.9040 +85378 375337 0.4380 +85378 440145 0.9990 +85378 653784 0.9180 +85379 92922 0.5340 +85379 146562 0.4520 +85379 165055 0.4220 +85379 220388 0.4240 +85379 344657 0.4290 +85379 386677 0.4330 +85379 441581 0.4320 +85395 88745 0.4480 +85395 92856 0.5250 +85395 92922 0.4600 +85395 161424 0.4600 +85395 353323 0.4600 +85395 386679 0.4180 +85395 386681 0.4400 +85395 441150 0.4480 +85397 92737 0.4490 +85397 94235 0.5300 +85397 115557 0.6960 +85397 116443 0.4210 +85397 126129 0.4480 +85397 346562 0.6670 +85397 353299 0.8000 +85397 388531 0.5190 +85397 401190 0.7700 +85397 431704 0.5530 +85403 89970 0.6010 +85403 123169 0.9110 +85403 124460 0.4630 +85403 127247 0.4460 +85403 131965 0.6060 +85403 223082 0.5410 +85406 93185 0.5950 +85406 114790 0.4450 +85406 116840 0.4070 +85406 120526 0.4210 +85406 155038 0.4280 +85406 221409 0.4510 +85407 85409 0.9150 +85407 89780 0.5650 +85407 124460 0.5310 +85407 139420 0.5400 +85407 144165 0.4870 +85407 145873 0.4300 +85407 147111 0.8200 +85407 147495 0.6120 +85407 151987 0.7200 +85407 388585 0.4770 +85407 441478 0.6190 +85409 89780 0.4490 +85409 147495 0.4240 +85409 166336 0.4020 +85409 387712 0.4350 +85413 115362 0.4770 +85413 116285 0.7860 +85413 340024 0.4100 +85414 121268 0.4010 +85414 124583 0.5930 +85414 145282 0.4550 +85414 148811 0.8080 +85414 221895 0.6580 +85414 254428 0.8210 +85414 261729 0.6970 +85415 91010 0.4160 +85415 92421 0.6000 +85415 114822 0.4680 +85415 128239 0.4840 +85415 128866 0.5940 +85415 148362 0.4150 +85415 157310 0.4320 +85416 140432 0.4570 +85417 92292 0.4030 +85417 92906 0.4050 +85417 126520 0.5790 +85417 150365 0.4390 +85417 166979 0.6190 +85417 219771 0.8580 +85417 219970 0.4030 +85417 246184 0.7500 +85417 259266 0.4100 +85417 283008 0.4370 +85417 284071 0.4180 +85417 494551 0.5540 +85417 642636 0.5150 +85417 644672 0.4400 +85417 728642 0.4400 +85417 729262 0.6680 +85417 100287520 0.4030 +85417 100288687 0.7260 +85437 92140 0.4510 +85437 124540 0.4170 +85437 139804 0.7490 +85437 144983 0.4550 +85437 154007 0.9680 +85437 159163 0.4670 +85437 221662 0.5650 +85437 283464 0.5880 +85437 378951 0.4670 +85437 390748 0.4760 +85438 93661 0.5190 +85438 119180 0.4040 +85438 126003 0.7860 +85438 127391 0.4780 +85438 132612 0.4370 +85438 136332 0.4410 +85438 136895 0.5310 +85438 138724 0.5140 +85438 140873 0.5920 +85438 145942 0.5510 +85438 153643 0.4290 +85438 158830 0.4360 +85438 160419 0.5340 +85438 199223 0.5020 +85438 200232 0.4810 +85438 219670 0.4350 +85438 256957 0.4480 +85438 257236 0.4550 +85438 339669 0.4240 +85438 399693 0.4760 +85438 401137 0.5430 +85438 619208 0.4770 +85438 100507055 0.5810 +85439 90019 0.5620 +85439 90416 0.5840 +85439 115548 0.5520 +85439 127833 0.9620 +85439 130752 0.4130 +85439 143425 0.7210 +85439 145508 0.6000 +85439 158248 0.5050 +85439 158431 0.4200 +85439 284427 0.4630 +85440 92597 0.4510 +85440 114609 0.4510 +85440 152273 0.4210 +85440 201305 0.4580 +85440 222658 0.4830 +85441 87178 0.6660 +85441 90390 0.6820 +85441 91543 0.6870 +85441 92399 0.4040 +85441 94240 0.7570 +85441 96764 0.6400 +85441 112950 0.5420 +85441 116519 0.4070 +85441 118460 0.7080 +85441 129607 0.5740 +85441 167227 0.4180 +85441 219285 0.6850 +85441 283871 0.4440 +85441 376497 0.4570 +85441 400569 0.5000 +85442 120103 0.4340 +85442 140775 0.7200 +85442 143162 0.4380 +85442 146050 0.5180 +85442 149499 0.5030 +85442 203228 0.7200 +85442 389541 0.7200 +85443 114781 0.4320 +85443 167465 0.5450 +85443 100431172 0.4050 +85444 91304 0.4010 +85444 138046 0.4860 +85444 147965 0.4790 +85444 153241 0.4050 +85444 157724 0.4050 +85444 202915 0.4040 +85444 259308 0.4180 +85444 286053 0.4790 +85444 389072 0.4180 +85444 389124 0.5560 +85444 401466 0.5490 +85444 440955 0.6670 +85444 729440 0.5850 +85445 93377 0.4220 +85445 127833 0.4470 +85445 140689 0.4020 +85445 152330 0.5450 +85445 222484 0.4150 +85445 246213 0.4440 +85446 128553 0.4230 +85446 161198 0.4430 +85449 92999 0.4600 +85449 112611 0.4840 +85449 117248 0.4010 +85449 128434 0.4560 +85449 199974 0.4040 +85449 202151 0.4920 +85449 222553 0.4890 +85449 285025 0.4500 +85449 341359 0.5420 +85449 343578 0.4410 +85449 400954 0.4460 +85450 145553 0.4560 +85450 196527 0.4160 +85450 283349 0.6070 +85450 286006 0.4990 +85451 171017 0.4370 +85452 90506 0.4950 +85452 90835 0.5720 +85452 93190 0.4360 +85452 118491 0.4470 +85452 122481 0.5180 +85452 123872 0.4830 +85452 127064 0.4340 +85452 136332 0.8650 +85452 144406 0.4290 +85452 144535 0.4150 +85452 146754 0.4410 +85452 146845 0.5090 +85452 149465 0.4830 +85452 151112 0.5000 +85452 151827 0.4510 +85452 157777 0.4020 +85452 159686 0.4290 +85452 161502 0.4020 +85452 200162 0.5980 +85452 200373 0.8180 +85452 221458 0.5510 +85452 222967 0.6950 +85452 255101 0.4700 +85452 256051 0.4130 +85452 259173 0.4420 +85452 283726 0.4700 +85452 286207 0.4090 +85452 286464 0.6160 +85452 339456 0.5610 +85452 375307 0.4370 +85452 391003 0.4780 +85452 401024 0.4700 +85452 100652824 0.4710 +85453 90853 0.4310 +85453 94239 0.4080 +85453 129530 0.4020 +85453 162963 0.4210 +85453 342357 0.4410 +85455 94104 0.4790 +85455 118881 0.4820 +85455 128077 0.4630 +85455 147798 0.4520 +85455 149175 0.4150 +85455 222234 0.5060 +85456 115795 0.4800 +85456 118461 0.4260 +85456 123169 0.8950 +85456 124773 0.4590 +85456 127428 0.5160 +85456 149041 0.6440 +85456 158787 0.6470 +85456 159013 0.4380 +85456 160760 0.4730 +85456 246175 0.9910 +85456 246721 0.4970 +85456 257364 0.4240 +85456 283638 0.4040 +85456 339345 0.6890 +85456 340719 0.5680 +85456 390748 0.4390 +85456 548644 0.4970 +85456 100134938 0.4180 +85456 107983993 0.4180 +85457 148523 0.5310 +85457 100526664 0.4140 +85458 112849 0.4600 +85458 147495 0.4370 +85458 100528062 0.4810 +85459 93517 0.4510 +85459 116840 0.6090 +85459 118611 0.4420 +85459 134359 0.6600 +85459 135935 0.4160 +85459 140290 0.4820 +85459 152185 0.8400 +85459 153241 0.6710 +85459 163786 0.8310 +85459 221908 0.6460 +85459 282809 0.7210 +85459 285753 0.4590 +85459 374355 0.4180 +85459 645104 0.4100 +85460 113452 0.4160 +85460 116449 0.4180 +85460 136259 0.4040 +85460 162979 0.4310 +85461 113246 0.4830 +85461 116987 0.6180 +85461 116988 0.9940 +85461 151525 0.5990 +85461 283349 0.4040 +85461 388228 0.4440 +85461 401190 0.4340 +85462 85464 0.7000 +85462 345456 0.6680 +85462 375189 0.8160 +85462 392862 0.4840 +85463 117289 0.4250 +85463 136306 0.4530 +85463 137075 0.4170 +85463 140469 0.4060 +85463 143879 0.5460 +85463 146198 0.4250 +85463 149041 0.4470 +85463 169792 0.5090 +85463 340351 0.4810 +85464 144132 0.4480 +85464 259282 0.4810 +85465 114112 0.7240 +85465 118672 0.4120 +85465 122618 0.9080 +85465 123745 0.6610 +85465 129642 0.9490 +85465 132001 0.4670 +85465 139189 0.6510 +85465 140606 0.7780 +85465 151056 0.7210 +85465 154141 0.9200 +85465 160851 0.6540 +85465 196051 0.9180 +85465 254531 0.9270 +85465 255043 0.4170 +85465 255189 0.6610 +85465 257202 0.4410 +85465 280636 0.8070 +85465 283748 0.6610 +85465 348303 0.7960 +85465 387521 0.9320 +85465 387522 0.9320 +85465 391013 0.6500 +85465 100137049 0.6610 +85476 87178 0.8420 +85476 90480 0.8130 +85476 91574 0.5790 +85476 91875 0.4120 +85476 91893 0.4540 +85476 92196 0.4930 +85476 92399 0.9950 +85476 92935 0.5000 +85476 93974 0.8380 +85476 112817 0.7180 +85476 114987 0.6780 +85476 115416 0.4190 +85476 116540 0.8400 +85476 116541 0.8010 +85476 116832 0.5460 +85476 118487 0.8040 +85476 122481 0.4570 +85476 122622 0.5040 +85476 122704 0.8090 +85476 123263 0.5110 +85476 123283 0.5750 +85476 124454 0.7900 +85476 124995 0.8280 +85476 125170 0.8100 +85476 125228 0.5460 +85476 126259 0.4430 +85476 126402 0.8060 +85476 128308 0.8410 +85476 140032 0.7510 +85476 140801 0.6950 +85476 143244 0.7050 +85476 143884 0.5080 +85476 147650 0.4430 +85476 151903 0.4760 +85476 153443 0.4540 +85476 154007 0.5230 +85476 158067 0.4460 +85476 164045 0.5140 +85476 200916 0.5520 +85476 201626 0.4070 +85476 219402 0.5040 +85476 219927 0.9900 +85476 221264 0.4460 +85476 221823 0.4130 +85476 222183 0.5060 +85476 256536 0.4060 +85476 285440 0.8300 +85476 285855 0.7710 +85476 343068 0.5600 +85476 343070 0.5600 +85476 347487 0.6890 +85476 374291 0.4680 +85476 387129 0.7590 +85476 387712 0.5010 +85476 388566 0.6160 +85476 390999 0.5600 +85476 391002 0.5600 +85476 400735 0.5600 +85476 400736 0.5600 +85476 440275 0.4050 +85476 440560 0.5600 +85476 440561 0.5600 +85476 441873 0.5600 +85476 641776 0.6150 +85476 643909 0.6150 +85476 645051 0.5410 +85476 645073 0.5410 +85476 645359 0.5600 +85476 653619 0.5600 +85476 728524 0.6150 +85476 729396 0.5410 +85476 729422 0.5410 +85476 729428 0.5410 +85476 729431 0.5410 +85476 729442 0.5410 +85476 729447 0.5410 +85476 729528 0.5600 +85476 100008586 0.5410 +85476 100132399 0.5410 +85476 100287482 0.6890 +85476 100505478 0.7580 +85476 100526842 0.8060 +85476 100529097 0.5890 +85476 100529239 0.5720 +85476 100534599 0.5520 +85476 100996746 0.6150 +85476 101929983 0.5600 +85476 102724473 0.5410 +85476 105180390 0.6150 +85476 105180391 0.6150 +85477 136306 0.4160 +85477 137075 0.4250 +85477 146198 0.4180 +85477 200576 0.9160 +85477 221692 0.4930 +85477 252884 0.4310 +85477 345456 0.8800 +85477 345651 0.6150 +85477 375189 0.8960 +85477 728378 0.4850 +85477 100528017 0.6590 +85477 100529144 0.4250 +85478 89765 0.7610 +85478 89876 0.4400 +85478 90506 0.4090 +85478 92749 0.9400 +85478 93233 0.8260 +85478 114327 0.4240 +85478 115399 0.4820 +85478 115811 0.4120 +85478 115948 0.6570 +85478 118491 0.5290 +85478 123872 0.7180 +85478 126820 0.6760 +85478 127602 0.4530 +85478 129831 0.7410 +85478 129881 0.4620 +85478 132203 0.5070 +85478 132671 0.4120 +85478 139212 0.6000 +85478 144132 0.4580 +85478 146754 0.6010 +85478 146845 0.5970 +85478 149465 0.5390 +85478 151827 0.5110 +85478 152206 0.4280 +85478 154865 0.4400 +85478 160762 0.4240 +85478 161502 0.5490 +85478 161582 0.6700 +85478 164781 0.5640 +85478 196385 0.6980 +85478 200373 0.4670 +85478 201625 0.6660 +85478 202500 0.7940 +85478 219681 0.4690 +85478 220047 0.6830 +85478 221421 0.8060 +85478 222235 0.4270 +85478 222967 0.4170 +85478 257236 0.4880 +85478 283726 0.4740 +85478 339829 0.8920 +85478 345643 0.5930 +85478 345895 0.8080 +85478 352909 0.6890 +85478 374407 0.4700 +85478 388389 0.8210 +85478 401124 0.4280 +85479 94086 0.4100 +85479 116835 0.6700 +85479 118461 0.4200 +85479 122258 0.4350 +85479 126259 0.4470 +85479 134266 0.4520 +85479 147650 0.4470 +85479 165545 0.5880 +85479 203100 0.4940 +85479 220074 0.4600 +85479 259217 0.5720 +85479 284451 0.4020 +85479 339416 0.4330 +85479 388633 0.4200 +85480 90865 0.9300 +85480 94103 0.5430 +85480 112744 0.4900 +85480 116379 0.6960 +85480 133396 0.4500 +85480 149233 0.7490 +85480 163702 0.7080 +85480 222256 0.4550 +85480 282616 0.4660 +85480 282618 0.4180 +85480 286530 0.5850 +85480 386653 0.7370 +85480 388698 0.7160 +85480 440854 0.6250 +85480 100423062 0.8020 +85481 115557 0.4070 +85481 203054 0.4130 +85481 255967 0.5100 +85481 374872 0.4500 +85509 125963 0.4800 +85509 148156 0.4810 +85509 162979 0.6930 +85509 222389 0.6720 +85509 284383 0.5900 +85509 343068 0.4740 +85569 92370 0.9360 +85569 135138 0.5070 +85569 347148 0.4220 +85865 87178 0.4650 +85865 90480 0.8080 +85865 91574 0.4090 +85865 92170 0.8520 +85865 92399 0.6410 +85865 113201 0.4330 +85865 115416 0.9860 +85865 116540 0.8160 +85865 116541 0.8140 +85865 122704 0.8010 +85865 123263 0.4250 +85865 124220 0.4180 +85865 124995 0.8240 +85865 126789 0.4640 +85865 130916 0.7350 +85865 138428 0.4220 +85865 152815 0.5070 +85865 196074 0.6910 +85865 219927 0.9240 +85865 261729 0.4570 +85865 285367 0.6770 +85865 285855 0.5180 +85865 374659 0.5140 +85865 387338 0.7830 +85865 440957 0.4540 +85865 127898561 0.8750 +86614 90655 0.5130 +86614 90665 0.5210 +86614 129025 0.4260 +86614 140032 0.6330 +86614 140883 0.5940 +86614 159163 0.4220 +86614 353513 0.7200 +86614 402415 0.4130 +86614 442862 0.6640 +86614 442867 0.7600 +86614 442868 0.7600 +86614 100133093 0.4180 +87178 91574 0.5660 +87178 91646 0.4890 +87178 91875 0.6770 +87178 91893 0.7940 +87178 92170 0.4030 +87178 92399 0.7280 +87178 92667 0.4050 +87178 93974 0.6070 +87178 115752 0.9680 +87178 116150 0.5200 +87178 118460 0.9740 +87178 122622 0.4030 +87178 126402 0.5480 +87178 129563 0.8610 +87178 133396 0.4860 +87178 140801 0.4560 +87178 142940 0.5810 +87178 146212 0.4860 +87178 150274 0.6000 +87178 153443 0.4110 +87178 168400 0.4860 +87178 196441 0.9150 +87178 200172 0.4860 +87178 201626 0.6290 +87178 246243 0.4970 +87178 285521 0.4250 +87178 285855 0.5560 +87178 317781 0.5100 +87178 344758 0.4860 +87178 374659 0.5070 +87178 387712 0.7310 +87178 440400 0.4760 +87769 114112 0.5020 +87769 117245 0.5930 +88455 170589 0.4330 +88745 89953 0.5440 +88745 90353 0.5470 +88745 91461 0.5170 +88745 91752 0.5170 +88745 91893 0.4860 +88745 92856 0.7400 +88745 115939 0.4370 +88745 116138 0.8580 +88745 117246 0.8250 +88745 118460 0.5060 +88745 122553 0.5260 +88745 146212 0.7790 +88745 146325 0.6470 +88745 153339 0.4440 +88745 153443 0.5960 +88745 161424 0.7390 +88745 166348 0.5890 +88745 170850 0.4990 +88745 200942 0.5320 +88745 219578 0.5170 +88745 221830 0.4320 +88745 283106 0.5040 +88745 285855 0.5170 +88745 339834 0.5060 +88745 375567 0.4910 +88745 402055 0.7630 +88745 100130988 0.5380 +89122 114088 0.4350 +89122 287015 0.4560 +89765 92749 0.7720 +89765 93233 0.8140 +89765 115948 0.6810 +89765 122664 0.4830 +89765 123872 0.6890 +89765 128344 0.6650 +89765 132203 0.4420 +89765 132671 0.4180 +89765 133690 0.4470 +89765 139212 0.6020 +89765 150082 0.4390 +89765 161582 0.7180 +89765 164395 0.6500 +89765 200373 0.6070 +89765 201625 0.4340 +89765 219681 0.6020 +89765 220136 0.4900 +89765 221421 0.9820 +89765 257177 0.4020 +89765 283385 0.7130 +89765 285755 0.4230 +89765 339829 0.7730 +89765 345643 0.6090 +89765 345895 0.9900 +89765 352909 0.6910 +89765 374407 0.5530 +89765 388389 0.8130 +89765 474354 0.4180 +89765 644890 0.4150 +89766 126859 0.4920 +89766 220965 0.4710 +89766 255349 0.4010 +89766 340260 0.4420 +89766 353333 0.4710 +89766 401827 0.5070 +89777 119548 0.4880 +89777 145264 0.4750 +89777 163778 0.5260 +89777 196374 0.4400 +89777 220296 0.4240 +89777 253012 0.4530 +89777 339302 0.4190 +89777 353137 0.4590 +89777 374454 0.4760 +89777 374897 0.5080 +89777 388533 0.5210 +89777 388697 0.4960 +89777 388698 0.5270 +89777 448834 0.6590 +89777 448835 0.4640 +89777 100129271 0.4130 +89778 90576 0.4790 +89778 445571 0.4200 +89778 728489 0.4680 +89780 115908 0.4740 +89780 121340 0.5120 +89780 137902 0.4650 +89780 139285 0.6380 +89780 145873 0.4490 +89780 147111 0.9600 +89780 147495 0.9620 +89780 284654 0.9030 +89780 340419 0.6110 +89780 343637 0.4140 +89780 343930 0.4320 +89780 440193 0.5100 +89781 91754 0.4420 +89781 221960 0.6160 +89781 282991 0.8020 +89781 283652 0.4740 +89781 388552 0.9770 +89782 405754 0.5970 +89790 91937 0.4330 +89790 92747 0.4260 +89790 114785 0.4140 +89790 115350 0.4320 +89790 126364 0.4600 +89790 140885 0.5670 +89790 146722 0.5360 +89790 150372 0.4230 +89790 284266 0.4210 +89790 100133941 0.9980 +89792 138805 0.4180 +89795 89797 0.6480 +89795 114788 0.5380 +89795 120114 0.4540 +89795 129446 0.4760 +89795 144455 0.4210 +89795 374462 0.4550 +89796 89953 0.4650 +89796 117245 0.4360 +89796 147700 0.4620 +89796 259232 0.5130 +89797 146664 0.4640 +89801 90060 0.4410 +89801 90506 0.5540 +89801 90673 0.9420 +89801 91860 0.6500 +89801 163688 0.6520 +89801 246330 0.4520 +89801 254050 0.5540 +89801 284358 0.4890 +89801 286187 0.5400 +89801 550643 0.5140 +89801 645811 0.4090 +89801 648791 0.6170 +89801 729442 0.4180 +89801 102724473 0.5720 +89822 90835 0.4290 +89822 92002 0.4620 +89822 130535 0.4250 +89822 131096 0.5130 +89822 165257 0.4420 +89822 256356 0.4480 +89822 286148 0.4930 +89822 338567 0.8420 +89822 348807 0.4360 +89832 89839 0.5820 +89832 134957 0.5450 +89832 161725 0.9620 +89832 343069 0.5700 +89839 161725 0.6280 +89839 259266 0.7220 +89839 388610 0.6300 +89839 388677 0.6780 +89839 414157 0.4090 +89839 552900 0.4890 +89839 554282 0.6160 +89839 647135 0.5750 +89839 653464 0.7200 +89839 653820 0.6150 +89839 654483 0.4790 +89839 728833 0.5830 +89839 729533 0.4670 +89839 100996763 0.6750 +89845 340273 0.5610 +89845 114483834 0.4990 +89846 91734 0.4790 +89846 121512 0.5830 +89846 152273 0.4020 +89846 203328 0.6440 +89846 257106 0.4490 +89846 100271715 0.4380 +89848 92154 0.4780 +89848 112574 0.5230 +89848 115548 0.4790 +89848 115677 0.4470 +89848 257364 0.5470 +89848 285613 0.4710 +89848 389337 0.5400 +89849 115201 0.6850 +89849 140901 0.5750 +89849 145482 0.4090 +89849 149420 0.5750 +89849 151525 0.4420 +89849 157753 0.4630 +89849 169966 0.4430 +89849 285973 0.7380 +89849 338692 0.5150 +89849 345611 0.4800 +89849 349136 0.4550 +89849 440738 0.4510 +89849 653319 0.4180 +89853 91782 0.9480 +89853 92421 0.6990 +89853 93343 0.9360 +89853 113263 0.4040 +89853 128866 0.9150 +89853 137492 0.9920 +89853 148362 0.4090 +89853 155382 0.9750 +89853 164832 0.4920 +89853 196074 0.4260 +89853 200894 0.4130 +89853 390595 0.5400 +89853 100526767 0.4910 +89857 116179 0.4870 +89857 100271849 0.4560 +89858 113419 0.4690 +89858 284266 0.4690 +89858 375056 0.4650 +89866 90411 0.4990 +89866 91369 0.4630 +89866 122553 0.5590 +89866 126003 0.5150 +89866 127018 0.5290 +89866 129787 0.8710 +89866 132789 0.8720 +89866 134359 0.5710 +89866 140766 0.5400 +89866 144233 0.6910 +89866 149111 0.6890 +89866 158038 0.5760 +89866 163589 0.4040 +89866 169044 0.4450 +89866 219402 0.6090 +89866 253559 0.4790 +89866 254263 0.5380 +89866 257194 0.7680 +89866 261734 0.4150 +89866 390598 0.4790 +89866 100526835 0.7190 +89869 93661 0.6780 +89869 113026 0.7170 +89869 117144 0.5000 +89869 138429 0.7300 +89869 138724 0.5120 +89869 139189 0.6820 +89869 145264 0.4330 +89869 145942 0.5240 +89869 150159 0.4340 +89869 160851 0.7300 +89869 161142 0.5150 +89869 164684 0.8080 +89869 200232 0.5390 +89869 200576 0.9040 +89869 253430 0.9150 +89869 257169 0.4090 +89869 283417 0.6150 +89869 283461 0.4610 +89869 284359 0.5830 +89869 286151 0.4470 +89869 431705 0.4410 +89869 494551 0.4470 +89870 140576 0.4010 +89870 205860 0.4140 +89870 442862 0.5070 +89872 116173 0.4190 +89872 129285 0.5720 +89872 147199 0.4340 +89872 256356 0.4600 +89872 282679 0.9410 +89872 340205 0.6240 +89872 653437 0.5450 +89874 90353 0.4540 +89874 115286 0.4170 +89874 145282 0.7880 +89876 114327 0.4170 +89876 118491 0.6970 +89876 122481 0.6670 +89876 128153 0.4850 +89876 144406 0.8230 +89876 146754 0.5030 +89876 154313 0.4990 +89876 159686 0.5350 +89876 199223 0.6000 +89876 200162 0.4640 +89876 200373 0.5150 +89876 255101 0.4140 +89876 286464 0.5860 +89876 345895 0.4950 +89876 401024 0.5880 +89882 122258 0.4670 +89882 149420 0.4570 +89884 128408 0.4420 +89884 128674 0.6560 +89884 148423 0.4470 +89884 170463 0.8110 +89884 390259 0.4870 +89884 102723407 0.4070 +89885 92736 0.4890 +89885 138065 0.7850 +89885 158521 0.5300 +89885 219938 0.4360 +89885 254427 0.6590 +89885 256309 0.4470 +89885 285782 0.4340 +89885 340547 0.4280 +89885 653220 0.4470 +89886 117157 0.5480 +89886 124404 0.4870 +89887 113000 0.4290 +89887 113179 0.4400 +89887 124402 0.6410 +89887 151887 0.4560 +89887 192683 0.4150 +89887 255783 0.4860 +89887 100381270 0.4230 +89887 100507290 0.4260 +89890 90293 0.9040 +89890 91582 0.4100 +89890 131377 0.7230 +89890 149951 0.4990 +89890 150684 0.4990 +89890 154881 0.4150 +89890 170622 0.5030 +89890 200845 0.5080 +89890 253980 0.9040 +89890 339745 0.9090 +89890 390594 0.4380 +89890 440738 0.5290 +89890 553115 0.7510 +89890 112267897 0.4200 +89891 93594 0.4450 +89891 112752 0.7530 +89891 114987 0.4120 +89891 116143 0.5260 +89891 132884 0.5900 +89891 140735 0.9460 +89891 153241 0.6010 +89891 200132 0.7290 +89891 255758 0.9910 +89891 257397 0.8360 +89891 343521 0.8210 +89894 92106 0.6190 +89894 113451 0.4670 +89894 122622 0.4480 +89894 127845 0.6430 +89894 131920 0.5750 +89894 139596 0.4690 +89894 155006 0.5950 +89894 158584 0.5680 +89894 162417 0.6520 +89894 199964 0.5080 +89894 256472 0.4100 +89894 283450 0.5450 +89894 283985 0.5360 +89894 285148 0.5870 +89894 401265 0.4570 +89894 441151 0.4180 +89894 606495 0.6270 +89894 619279 0.4990 +89894 643236 0.6230 +89894 643382 0.5390 +89910 163859 0.4060 +89910 246213 0.6390 +89927 123811 0.7180 +89927 255027 0.5850 +89927 256714 0.4160 +89932 118472 0.4180 +89932 203069 0.4150 +89941 91289 0.4470 +89941 124401 0.4240 +89941 138162 0.4680 +89941 192111 0.4060 +89941 197335 0.8620 +89944 134265 0.4240 +89944 160065 0.5430 +89944 170959 0.4250 +89944 245929 0.4810 +89944 389383 0.4470 +89944 399967 0.5600 +89944 399968 0.4230 +89944 100130613 0.5020 +89944 100169851 0.5950 +89953 90990 0.5260 +89953 91461 0.4440 +89953 93661 0.5170 +89953 117286 0.4930 +89953 123169 0.4770 +89953 124602 0.4030 +89953 127829 0.4690 +89953 146325 0.5290 +89953 146909 0.4030 +89953 147700 0.9750 +89953 163183 0.6400 +89953 166348 0.5110 +89953 170850 0.4180 +89953 221079 0.6650 +89953 221458 0.4210 +89953 283106 0.6740 +89953 283820 0.4170 +89953 285643 0.4430 +89953 339834 0.4240 +89953 375567 0.4120 +89953 100532724 0.4120 +89958 113130 0.4620 +89958 126353 0.5230 +89958 254427 0.4250 +89958 440503 0.5580 +89970 90799 0.4250 +89970 124460 0.4980 +89970 131601 0.5280 +89970 131965 0.5780 +89970 149699 0.4360 +89970 222166 0.4160 +89970 223082 0.5320 +89970 339967 0.4320 +89970 389152 0.5670 +89978 91749 0.5020 +89978 92715 0.8520 +89978 120526 0.7610 +89978 140469 0.4130 +89978 151242 0.4600 +89978 200844 0.4470 +89978 252884 0.4210 +89978 285381 0.8110 +90019 127833 0.5880 +90019 143425 0.5870 +90025 158506 0.5890 +90025 206412 0.4610 +90050 124152 0.4630 +90050 140731 0.4470 +90050 143241 0.4090 +90050 145270 0.4530 +90050 145567 0.4420 +90050 254050 0.6090 +90050 255403 0.4790 +90050 284521 0.4570 +90050 286464 0.4970 +90050 337974 0.5070 +90050 375316 0.4430 +90050 388701 0.4800 +90050 389320 0.5670 +90050 390260 0.5070 +90050 392309 0.5220 +90060 116173 0.5640 +90060 132320 0.6380 +90060 145508 0.9700 +90060 201255 0.5140 +90060 284358 0.4380 +90060 360200 0.5280 +90060 729440 0.7220 +90070 117159 0.6140 +90070 118471 0.4540 +90070 124220 0.4490 +90070 128272 0.4920 +90070 130940 0.4220 +90070 259173 0.5280 +90070 284654 0.4250 +90075 284402 0.4790 +90102 144165 0.7420 +90113 90381 0.4180 +90113 122616 0.6090 +90113 131408 0.4860 +90113 157638 0.4290 +90113 222229 0.4820 +90113 344558 0.4400 +90113 388963 0.4780 +90120 124404 0.5400 +90120 151011 0.5570 +90120 164684 0.4930 +90120 346288 0.5570 +90120 728075 0.5050 +90120 728661 0.5050 +90120 100507170 0.5840 +90121 90441 0.4390 +90121 92856 0.8530 +90121 115939 0.9050 +90121 116966 0.5910 +90121 117246 0.6070 +90121 134218 0.4230 +90121 147991 0.5760 +90121 155368 0.4260 +90121 221078 0.6020 +90121 221830 0.8360 +90121 692312 0.4020 +90121 102157402 0.5310 +90134 93107 0.4160 +90134 157807 0.5000 +90134 170850 0.4050 +90135 90293 0.4320 +90135 124491 0.4450 +90135 124751 0.4010 +90135 149951 0.5070 +90135 150684 0.5030 +90135 154881 0.4240 +90135 170622 0.5010 +90135 200845 0.5760 +90135 256281 0.4060 +90135 390594 0.5620 +90135 647310 0.5070 +90135 653082 0.4770 +90139 222698 0.4680 +90141 124152 0.6630 +90141 150864 0.5040 +90141 285025 0.4370 +90141 375287 0.4440 +90161 221914 0.5640 +90161 222537 0.5330 +90161 346562 0.4090 +90161 375790 0.5180 +90167 94137 0.4940 +90167 132884 0.4150 +90167 146167 0.6450 +90167 151790 0.4640 +90167 158763 0.4660 +90167 203427 0.4940 +90167 283652 0.4110 +90187 129080 0.4210 +90196 90203 0.4010 +90196 90204 0.4350 +90196 91949 0.6030 +90196 122830 0.5020 +90196 128497 0.4610 +90196 143187 0.5930 +90196 280664 0.4470 +90196 339122 0.5400 +90196 389813 0.4180 +90196 643155 0.4930 +90196 100526760 0.5130 +90199 140686 0.5580 +90199 140832 0.6390 +90199 140850 0.4440 +90199 140870 0.8120 +90199 149708 0.5100 +90199 153218 0.5190 +90199 160065 0.5960 +90199 164237 0.5750 +90199 259239 0.5020 +90199 259240 0.6830 +90199 391253 0.8080 +90199 613211 0.5060 +90199 644414 0.4780 +90199 653423 0.4140 +90203 90204 0.5110 +90203 92017 0.6200 +90203 128497 0.5350 +90203 140686 0.5130 +90203 140825 0.4490 +90203 257364 0.4280 +90203 280664 0.5330 +90203 283989 0.4200 +90204 90933 0.4530 +90204 128497 0.6340 +90204 140686 0.5070 +90204 140825 0.5510 +90204 280664 0.5800 +90204 283768 0.4790 +90204 374920 0.7310 +90204 401498 0.4130 +90226 114131 0.9980 +90226 104909134 0.9660 +90231 147007 0.6830 +90231 153364 0.6020 +90231 200942 0.4080 +90231 203547 0.6750 +90231 221078 0.4190 +90231 245972 0.6660 +90231 253769 0.4250 +90231 254173 0.4120 +90233 125919 0.5490 +90233 132228 0.5050 +90233 134553 0.4310 +90233 151230 0.6090 +90249 126147 0.5730 +90249 137970 0.5530 +90249 147991 0.5300 +90249 219699 0.5550 +90249 374946 0.4940 +90268 139562 0.4690 +90268 161725 0.4990 +90268 220213 0.6330 +90268 221302 0.7050 +90268 257397 0.5140 +90273 151651 0.4670 +90273 405754 0.4500 +90288 115948 0.6020 +90288 148523 0.4100 +90288 220388 0.6000 +90288 100652824 0.4720 +90293 131377 0.8080 +90293 142685 0.4610 +90293 149951 0.4990 +90293 150684 0.4990 +90293 170622 0.4990 +90293 200845 0.4310 +90293 219623 0.4850 +90293 253980 0.9000 +90293 339745 0.9050 +90293 374354 0.5030 +90293 390594 0.5170 +90293 553115 0.7220 +90313 90624 0.4030 +90313 114781 0.4030 +90313 116236 0.4100 +90313 118487 0.4520 +90313 122704 0.4160 +90313 124995 0.8450 +90313 126402 0.5660 +90313 140801 0.4770 +90313 157310 0.5440 +90313 219927 0.5000 +90313 343068 0.4740 +90313 343070 0.4740 +90313 347487 0.4580 +90313 390999 0.4740 +90313 391002 0.4740 +90313 400735 0.4740 +90313 400736 0.4740 +90313 440560 0.4740 +90313 440561 0.4740 +90313 441873 0.4740 +90313 644096 0.4090 +90313 645359 0.4740 +90313 653619 0.4740 +90313 729528 0.4740 +90313 100287482 0.4580 +90313 100526842 0.5490 +90313 101929983 0.4740 +90316 90655 0.8710 +90316 131368 0.4140 +90316 133491 0.4310 +90316 140886 0.9440 +90316 287015 0.5190 +90316 340562 0.4350 +90316 399814 0.5370 +90316 425054 0.4550 +90316 440077 0.4480 +90316 727940 0.4920 +90317 93134 0.4590 +90317 138881 0.4750 +90317 283162 0.4480 +90317 338675 0.5060 +90317 339324 0.4400 +90317 442197 0.4160 +90317 554251 0.4290 +90317 653404 0.5070 +90321 90324 0.4090 +90321 94039 0.5680 +90321 163049 0.7980 +90321 163087 0.5160 +90321 170959 0.7810 +90321 171392 0.4990 +90321 440515 0.4930 +90324 126299 0.4830 +90324 284325 0.4370 +90324 102724473 0.4470 +90326 152815 0.6240 +90326 199745 0.5030 +90333 91664 0.4480 +90333 125893 0.7690 +90333 162966 0.4420 +90333 162967 0.7720 +90338 164045 0.5630 +90342 150771 0.4160 +90342 151313 0.5120 +90342 643382 0.4480 +90353 91801 0.7020 +90353 91942 0.7050 +90353 92105 0.4050 +90353 92399 0.4830 +90353 93587 0.4510 +90353 93650 0.4260 +90353 112970 0.7300 +90353 113000 0.4600 +90353 113179 0.6540 +90353 115708 0.6960 +90353 115939 0.5360 +90353 117246 0.8550 +90353 122961 0.4310 +90353 123263 0.4580 +90353 126328 0.5050 +90353 126789 0.5590 +90353 127255 0.4190 +90353 132949 0.4130 +90353 134637 0.5340 +90353 138428 0.7460 +90353 142940 0.4830 +90353 150962 0.4120 +90353 153443 0.4190 +90353 158234 0.4120 +90353 161424 0.4260 +90353 196074 0.4190 +90353 283209 0.7370 +90353 285381 0.5210 +90353 317781 0.4290 +90353 348180 0.9980 +90353 728489 0.4740 +90353 729767 0.4650 +90353 100130890 0.4010 +90353 100131187 0.4020 +90353 100532726 0.4730 +90355 159989 0.4470 +90355 255252 0.6070 +90355 284274 0.4310 +90362 113277 0.4030 +90362 114786 0.5980 +90362 137695 0.6240 +90362 137886 0.6810 +90362 150709 0.4080 +90362 152926 0.4370 +90362 195814 0.5880 +90362 254251 0.4680 +90378 90379 0.4010 +90378 94239 0.4190 +90378 643904 0.4710 +90378 646457 0.4710 +90379 138009 0.6200 +90379 139170 0.5400 +90379 139425 0.5410 +90379 285429 0.5630 +90379 340578 0.5400 +90379 347442 0.5410 +90381 92856 0.5560 +90381 113115 0.4340 +90381 113130 0.5030 +90381 122616 0.4760 +90381 139221 0.4410 +90381 144455 0.4900 +90381 146956 0.4610 +90381 150468 0.4080 +90381 151648 0.4640 +90381 157313 0.5890 +90381 157570 0.5260 +90381 220042 0.5760 +90381 221150 0.5500 +90381 222229 0.6190 +90381 259266 0.5510 +90381 345630 0.6760 +90381 374291 0.4410 +90381 647309 0.6310 +90381 728317 0.4410 +90390 112950 0.9990 +90390 116931 0.7150 +90390 121504 0.8000 +90390 126961 0.8000 +90390 129685 0.8010 +90390 133522 0.9000 +90390 140890 0.4020 +90390 256643 0.5400 +90390 333932 0.8250 +90390 400569 0.9990 +90390 404672 0.8120 +90390 554313 0.8000 +90390 653604 0.8110 +90407 90701 0.5210 +90407 130814 0.5640 +90407 135941 0.4580 +90407 169200 0.4950 +90407 221303 0.4100 +90407 643853 0.5880 +90410 91147 0.5910 +90410 92104 0.9120 +90410 92482 0.4200 +90410 112752 0.8850 +90410 115106 0.4250 +90410 117177 0.7520 +90410 129880 0.5670 +90410 132320 0.5330 +90410 146057 0.4750 +90410 150737 0.9690 +90410 159989 0.5550 +90410 167691 0.4410 +90410 199223 0.7910 +90410 200894 0.7080 +90410 261734 0.5850 +90410 284086 0.4220 +90410 392509 0.4330 +90411 91860 0.5490 +90411 147179 0.4060 +90411 149111 0.5010 +90411 254263 0.4990 +90411 389383 0.4070 +90416 118487 0.4790 +90416 122704 0.4210 +90416 147179 0.5060 +90416 285598 0.4470 +90416 390155 0.4310 +90416 653140 0.4180 +90416 110091775 0.5820 +90416 115253422 0.4460 +90417 113130 0.4830 +90417 146909 0.4570 +90417 147841 0.4620 +90417 151246 0.5250 +90417 151648 0.5250 +90417 157313 0.4770 +90417 159989 0.4200 +90417 220134 0.7480 +90417 221150 0.6580 +90423 96459 0.4150 +90423 127124 0.9780 +90423 140625 0.4200 +90423 144577 0.5280 +90423 147007 0.5860 +90423 153129 0.5120 +90423 154743 0.4050 +90423 155066 0.9430 +90423 163882 0.9750 +90423 201163 0.4750 +90423 221264 0.6750 +90423 245972 0.9960 +90423 245973 0.9970 +90423 388946 0.7310 +90423 389541 0.6500 +90423 440400 0.8410 +90423 440730 0.4310 +90423 652968 0.4090 +90423 102157402 0.8040 +90427 140735 0.9710 +90441 92856 0.4600 +90441 116832 0.4650 +90441 117246 0.7230 +90441 134218 0.7050 +90441 140801 0.9450 +90441 200916 0.5000 +90441 285855 0.5640 +90441 387129 0.4370 +90441 441061 0.4110 +90441 100505478 0.4180 +90441 100526842 0.5180 +90459 112479 0.5250 +90459 115752 0.4120 +90459 118460 0.4560 +90459 121355 0.6520 +90459 126549 0.4800 +90459 129563 0.5910 +90459 134353 0.8020 +90459 140801 0.4740 +90459 143689 0.4240 +90459 167153 0.5230 +90459 167227 0.4750 +90459 200916 0.4290 +90480 91574 0.8330 +90480 92170 0.8380 +90480 92259 0.4540 +90480 92399 0.8580 +90480 112939 0.9130 +90480 115416 0.8840 +90480 116540 0.9640 +90480 116541 0.9170 +90480 118487 0.9220 +90480 122704 0.9810 +90480 124995 0.9730 +90480 128308 0.9100 +90480 130916 0.8420 +90480 146227 0.4290 +90480 149708 0.7150 +90480 219402 0.5720 +90480 219927 0.9690 +90480 252969 0.4850 +90480 387338 0.9120 +90480 127898561 0.8110 +90485 120066 0.4490 +90485 147645 0.4030 +90485 161823 0.4390 +90485 199974 0.4110 +90485 346606 0.4030 +90488 255394 0.5580 +90488 283237 0.4230 +90506 90507 0.4150 +90506 90673 0.5540 +90506 90678 0.4200 +90506 115399 0.4140 +90506 128344 0.4200 +90506 128602 0.5220 +90506 146845 0.5400 +90506 146923 0.4160 +90506 149465 0.6110 +90506 151112 0.4110 +90506 151790 0.4490 +90506 158787 0.5660 +90506 160492 0.4220 +90506 161502 0.6740 +90506 162333 0.4600 +90506 200373 0.5390 +90506 222967 0.4190 +90506 254050 0.5600 +90506 257177 0.4330 +90506 283726 0.5360 +90506 286187 0.5430 +90506 342909 0.4620 +90506 345895 0.4480 +90506 648791 0.5540 +90506 100130742 0.4530 +90522 92235 0.4530 +90522 147965 0.4030 +90522 165918 0.4320 +90522 285525 0.7780 +90522 286451 0.4420 +90523 146562 0.4450 +90523 353174 0.4740 +90527 115111 0.4210 +90527 124056 0.6510 +90527 389434 0.6170 +90527 405753 0.6470 +90527 642987 0.4350 +90527 653361 0.4820 +90529 126969 0.4780 +90529 727800 0.6420 +90550 91689 0.9990 +90550 91860 0.4400 +90550 92609 0.4380 +90550 114789 0.5310 +90550 115209 0.4040 +90550 118987 0.5370 +90550 125170 0.4200 +90550 163688 0.4400 +90550 197259 0.4440 +90550 221154 0.9990 +90550 286097 0.9510 +90550 100287932 0.4090 +90557 91409 0.9130 +90557 113675 0.4360 +90557 147687 0.4440 +90557 148534 0.4370 +90557 149465 0.4580 +90557 403244 0.5070 +90576 125893 0.7940 +90576 163050 0.4600 +90576 259292 0.4790 +90580 92609 0.4590 +90580 94081 0.4830 +90580 158234 0.5620 +90580 283229 0.4200 +90580 388753 0.4110 +90580 401505 0.4780 +90580 100287932 0.6060 +90589 100528021 0.4470 +90589 100529257 0.5110 +90594 143884 0.4460 +90594 341799 0.5830 +90624 91647 0.4620 +90624 91942 0.4520 +90624 92255 0.4690 +90624 94081 0.4190 +90624 116541 0.4120 +90624 124995 0.4830 +90624 126402 0.4160 +90624 134266 0.4400 +90624 135154 0.5480 +90624 144363 0.7300 +90624 150274 0.8730 +90624 154791 0.5370 +90624 157310 0.4920 +90624 200205 0.4510 +90624 201229 0.6430 +90624 285521 0.5780 +90624 345051 0.4480 +90624 644096 0.7270 +90624 790955 0.7220 +90624 100303755 0.4300 +90624 100526842 0.4700 +90627 94241 0.4210 +90627 120406 0.4190 +90627 147323 0.4580 +90634 112812 0.4180 +90634 114991 0.5230 +90634 119391 0.4320 +90634 157807 0.5450 +90634 162461 0.5150 +90634 257629 0.5070 +90637 93550 0.4590 +90637 286006 0.4610 +90637 388946 0.4240 +90639 91419 0.4960 +90639 116228 0.5480 +90639 118490 0.4890 +90639 131474 0.8410 +90639 135154 0.4350 +90639 136051 0.5030 +90639 284439 0.4130 +90639 285521 0.5290 +90639 387103 0.4120 +90639 388753 0.8360 +90639 400916 0.4520 +90639 493753 0.7740 +90639 728621 0.6250 +90639 100131801 0.4540 +90639 100272147 0.4700 +90639 100303755 0.5410 +90649 148003 0.4040 +90649 199777 0.6300 +90649 253650 0.4030 +90655 90665 0.4470 +90655 140032 0.4800 +90655 140886 0.9310 +90655 159119 0.4410 +90655 159163 0.4240 +90655 353513 0.6210 +90655 378948 0.5020 +90655 442867 0.5050 +90655 442868 0.5050 +90655 728132 0.5450 +90655 728395 0.5810 +90665 116092 0.4330 +90665 117143 0.5340 +90665 140032 0.6730 +90665 147660 0.4050 +90665 148479 0.4760 +90665 353513 0.4750 +90665 440093 0.5250 +90665 440686 0.5250 +90665 653604 0.5250 +90668 284339 0.5220 +90668 642273 0.4210 +90673 91860 0.6500 +90673 163688 0.6500 +90673 254050 0.5540 +90673 286187 0.5400 +90673 648791 0.6240 +90678 114790 0.4610 +90678 115992 0.7070 +90678 121512 0.5880 +90678 221823 0.4170 +90693 114880 0.4090 +90693 116966 0.5410 +90693 127247 0.5070 +90693 140700 0.4160 +90693 147991 0.5830 +90693 162394 0.4320 +90693 219487 0.6240 +90693 219493 0.5710 +90693 340745 0.6250 +90693 402635 0.4780 +90693 442197 0.5190 +90701 116832 0.4860 +90701 140801 0.4040 +90701 200916 0.4230 +90736 347365 0.4150 +90736 389860 0.5430 +90736 400986 0.4710 +90736 403244 0.4160 +90736 643664 0.4470 +90736 653240 0.4470 +90736 728224 0.4470 +90736 100131827 0.5790 +90736 100288801 0.5150 +90736 112267897 0.5410 +90737 158511 0.4270 +90737 158521 0.4660 +90737 203569 0.4080 +90737 285782 0.4470 +90737 645073 0.4140 +90737 653220 0.5020 +90737 100008586 0.4760 +90780 94239 0.5520 +90780 114803 0.5880 +90780 126961 0.9160 +90780 128312 0.5530 +90780 255626 0.5550 +90780 283149 0.9930 +90780 333932 0.9160 +90780 440093 0.9790 +90780 440686 0.9790 +90780 474382 0.5530 +90780 653604 0.9890 +90799 152185 0.6060 +90799 389152 0.4790 +90806 91801 0.4100 +90806 114034 0.8360 +90806 125336 0.4550 +90806 128387 0.6330 +90806 130576 0.4970 +90806 131149 0.5330 +90806 149840 0.4600 +90806 201626 0.4340 +90806 222389 0.5580 +90806 337966 0.4520 +90809 118426 0.5890 +90809 118813 0.5130 +90809 119032 0.4140 +90809 127829 0.4120 +90809 200576 0.9240 +90809 221079 0.4090 +90809 282991 0.4370 +90826 113510 0.4710 +90826 132949 0.4100 +90827 284257 0.4320 +90835 128153 0.5060 +90835 135932 0.4800 +90835 136332 0.8610 +90835 144535 0.4450 +90835 146456 0.4320 +90835 146547 0.5710 +90835 162333 0.4420 +90835 200162 0.6970 +90835 200373 0.6220 +90835 219681 0.6250 +90835 255762 0.5970 +90835 286464 0.4320 +90835 339105 0.4780 +90835 339168 0.7060 +90835 344657 0.4940 +90835 348807 0.4810 +90843 140597 0.5070 +90843 158931 0.5830 +90843 340543 0.6780 +90850 92399 0.5550 +90850 112939 0.5380 +90850 115752 0.6180 +90850 149986 0.4330 +90850 283870 0.4020 +90850 283899 0.4700 +90850 440275 0.4010 +90850 100529239 0.4010 +90853 122402 0.4910 +90853 342357 0.5430 +90853 400745 0.4710 +90861 124801 0.6500 +90861 219931 0.5860 +90861 554235 0.4750 +90864 92369 0.4220 +90864 140739 0.5110 +90864 144699 0.4980 +90864 147463 0.4430 +90864 149951 0.5040 +90864 150684 0.4990 +90864 170622 0.5030 +90864 283870 0.4010 +90864 340359 0.4490 +90865 94103 0.5720 +90865 112744 0.5930 +90865 114548 0.5860 +90865 132014 0.5170 +90865 133396 0.4570 +90865 146433 0.4540 +90865 222256 0.4790 +90865 282616 0.4250 +90865 386653 0.7200 +90865 388698 0.5420 +90865 474382 0.4590 +90871 115426 0.4040 +90871 145853 0.4310 +90871 283951 0.4170 +90874 388561 0.4480 +90933 91445 0.5060 +90933 115004 0.5240 +90933 118924 0.4200 +90933 287015 0.4710 +90933 442862 0.8330 +90952 120425 0.5000 +90952 137075 0.6600 +90952 149461 0.6930 +90952 150084 0.6040 +90952 153562 0.5890 +90952 161198 0.4590 +90952 221395 0.4110 +90952 375033 0.4510 +90952 641700 0.4510 +90952 644672 0.6770 +90952 100132463 0.6530 +90952 100288814 0.6500 +90952 100506658 0.9890 +90956 93058 0.5020 +90956 203054 0.5900 +90957 130733 0.4050 +90957 146050 0.4670 +90957 252983 0.5340 +90957 317781 0.4030 +90957 378884 0.4420 +90957 100271715 0.4460 +90987 114824 0.5890 +90987 128488 0.5640 +90987 284001 0.5280 +90990 113655 0.4480 +90990 116983 0.4600 +90990 124093 0.4080 +90990 124602 0.6980 +90990 146909 0.7110 +90990 147700 0.5730 +90990 152098 0.6130 +90990 221458 0.6090 +90990 259266 0.4030 +90990 285643 0.5570 +90990 374654 0.6850 +90990 441381 0.4560 +90990 645811 0.4380 +90990 727957 0.4110 +90990 100532724 0.4450 +90993 121340 0.4410 +90993 148327 0.9280 +90993 169026 0.6210 +90993 200186 0.9100 +90993 387733 0.6320 +91010 114822 0.4160 +91010 128239 0.4540 +91010 143098 0.4240 +91010 147179 0.5030 +91010 171177 0.4050 +91010 200894 0.4210 +91010 342184 0.4270 +91010 345456 0.5270 +91010 375189 0.5460 +91012 123099 0.9670 +91012 125981 0.9530 +91012 130367 0.9400 +91012 142891 0.4580 +91012 166929 0.9490 +91012 171546 0.4390 +91012 204219 0.9270 +91012 253782 0.9370 +91012 259230 0.9510 +91012 339221 0.9390 +91012 340485 0.9580 +91039 157378 0.4220 +91039 162540 0.5520 +91039 200014 0.6300 +91039 260434 0.4860 +91039 284058 0.4130 +91039 727897 0.5040 +91039 729238 0.4180 +91050 126820 0.4180 +91050 129285 0.4780 +91050 151393 0.6000 +91050 164684 0.4170 +91050 202018 0.4390 +91050 206338 0.4080 +91050 206358 0.4630 +91056 122616 0.5400 +91056 123355 0.4850 +91056 130340 0.5520 +91056 151306 0.4400 +91056 345062 0.4380 +91057 124808 0.4550 +91057 154467 0.4030 +91057 159989 0.4330 +91057 165055 0.4190 +91057 195828 0.4800 +91057 283991 0.4090 +91057 284992 0.5490 +91057 374864 0.4530 +91057 728586 0.4790 +91074 136991 0.6110 +91074 140458 0.4190 +91074 140462 0.4430 +91074 142685 0.4890 +91074 219771 0.4230 +91074 374860 0.4920 +91074 445582 0.4340 +91074 646862 0.4150 +91107 136991 0.4460 +91107 140691 0.4070 +91107 201294 0.4840 +91107 286827 0.6670 +91107 287015 0.4790 +91107 100527963 0.5160 +91133 128977 0.5150 +91133 387758 0.4540 +91133 642597 0.5700 +91133 645369 0.4220 +91137 125988 0.4690 +91137 139322 0.5640 +91137 153328 0.4660 +91137 642987 0.6280 +91147 91754 0.5920 +91147 92482 0.4530 +91147 95681 0.6440 +91147 112752 0.4060 +91147 117177 0.6400 +91147 129880 0.7410 +91147 137682 0.4700 +91147 153241 0.4120 +91147 157657 0.4660 +91147 166379 0.7410 +91147 200728 0.9400 +91147 200894 0.9100 +91147 203286 0.4950 +91147 219854 0.6050 +91147 221322 0.5060 +91147 261734 0.9690 +91147 283232 0.5500 +91147 284086 0.6490 +91147 374654 0.5860 +91147 100190949 0.4180 +91151 127665 0.4470 +91151 148213 0.4850 +91151 200765 0.4590 +91151 203245 0.4920 +91151 283254 0.4060 +91151 390072 0.4800 +91156 113146 0.4090 +91156 118490 0.4930 +91156 400736 0.4140 +91156 401024 0.5560 +91156 643988 0.4010 +91179 128989 0.4680 +91179 150209 0.4630 +91181 129401 0.5360 +91181 145942 0.4380 +91181 147660 0.4460 +91181 151050 0.4090 +91181 157777 0.4170 +91181 202500 0.4240 +91181 221409 0.4520 +91181 284546 0.5110 +91181 387778 0.4190 +91181 389766 0.5090 +91181 643376 0.4260 +91181 100101267 0.4580 +91227 124975 0.9060 +91227 129025 0.6210 +91227 140883 0.6000 +91227 283093 0.4320 +91252 113189 0.5990 +91252 123041 0.4770 +91252 126792 0.6120 +91252 148867 0.7850 +91252 169026 0.6160 +91252 201266 0.8050 +91252 221074 0.4260 +91252 283375 0.4630 +91252 399888 0.6040 +91272 143241 0.5590 +91272 220134 0.9320 +91272 221150 0.9330 +91272 259282 0.6130 +91272 284257 0.8530 +91272 348235 0.9270 +91289 440836 0.5240 +91298 123207 0.4880 +91298 144404 0.4090 +91298 160419 0.6050 +91298 221927 0.4130 +91300 91978 0.4440 +91300 112812 0.4140 +91300 125965 0.5230 +91300 126567 0.4310 +91300 139221 0.6610 +91300 164684 0.4110 +91300 170712 0.4060 +91300 255057 0.4010 +91300 283459 0.5420 +91300 284451 0.4780 +91300 374291 0.6610 +91300 388753 0.5170 +91300 440567 0.6380 +91300 728317 0.6610 +91304 91445 0.8830 +91304 116444 0.4550 +91304 255783 0.4120 +91304 387263 0.5080 +91304 401466 0.4620 +91319 91445 0.5760 +91319 91544 0.4520 +91319 118424 0.4010 +91319 137886 0.4830 +91319 153830 0.5040 +91319 165324 0.4520 +91319 166378 0.5780 +91319 259173 0.4740 +91319 339416 0.5730 +91368 126272 0.5360 +91368 151194 0.4310 +91368 285605 0.4080 +91368 374986 0.4610 +91368 440956 0.4470 +91369 124540 0.4370 +91369 168451 0.4210 +91369 284131 0.4480 +91369 340596 0.4460 +91373 114790 0.4310 +91373 125061 0.7920 +91373 219855 0.4010 +91373 283209 0.5900 +91392 222698 0.4020 +91404 91860 0.4540 +91404 163688 0.4540 +91404 219670 0.4210 +91404 257397 0.5530 +91408 93487 0.4400 +91408 116832 0.4220 +91408 140801 0.5530 +91408 285855 0.5040 +91408 342538 0.9150 +91408 347487 0.4090 +91408 387129 0.4740 +91408 645051 0.4270 +91408 645073 0.4270 +91408 729396 0.4270 +91408 729422 0.4270 +91408 729428 0.4270 +91408 729431 0.4270 +91408 729442 0.4270 +91408 729447 0.4270 +91408 100008586 0.4270 +91408 100132399 0.4270 +91408 100505478 0.4730 +91408 100526842 0.5360 +91408 102724473 0.4270 +91409 121274 0.4460 +91409 126823 0.4290 +91409 140731 0.5280 +91409 146849 0.4220 +91409 150472 0.5410 +91409 164714 0.4700 +91409 202243 0.6230 +91409 220416 0.6670 +91409 256710 0.4020 +91409 257236 0.5310 +91409 338657 0.4180 +91409 339512 0.4470 +91409 374470 0.5230 +91409 442444 0.4720 +91409 728591 0.4760 +91419 91647 0.6360 +91419 92609 0.4720 +91419 115209 0.6350 +91419 125150 0.9000 +91419 126074 0.9000 +91419 128977 0.5820 +91419 129401 0.6020 +91419 131474 0.8990 +91419 144453 0.4320 +91419 196294 0.5430 +91419 286257 0.9000 +91419 376132 0.4650 +91419 493753 0.4490 +91419 105375355 0.5400 +91433 126364 0.4660 +91433 126549 0.4490 +91433 129450 0.4370 +91433 163059 0.4250 +91433 388335 0.4330 +91442 116028 0.6400 +91442 122616 0.4360 +91442 146956 0.7860 +91442 158401 0.4320 +91442 197342 0.8250 +91442 199990 0.9970 +91442 201254 0.9990 +91442 348654 0.4170 +91442 353497 0.6650 +91442 378708 0.9990 +91442 548593 0.8440 +91442 100526739 0.4090 +91442 100533467 0.4640 +91445 92305 0.6030 +91445 115004 0.5900 +91445 117584 0.4120 +91445 153830 0.4450 +91445 200312 0.4540 +91445 285533 0.5160 +91445 337867 0.4500 +91445 387263 0.4540 +91452 92960 0.4020 +91452 93380 0.4290 +91452 118987 0.4780 +91452 128239 0.4080 +91452 132949 0.4300 +91452 135114 0.5290 +91452 284422 0.4360 +91452 414149 0.6010 +91452 122405565 0.4360 +91461 146325 0.5640 +91461 166348 0.5130 +91461 170850 0.5720 +91461 200942 0.4290 +91461 205428 0.4050 +91461 339834 0.4450 +91461 342667 0.4780 +91461 375567 0.4350 +91461 388650 0.5180 +91461 729085 0.4160 +91464 145226 0.4490 +91522 128153 0.4120 +91522 131873 0.5250 +91522 136227 0.7700 +91522 169044 0.5910 +91522 255631 0.5610 +91522 283208 0.4200 +91522 340267 0.5560 +91522 100191040 0.4800 +91526 130132 0.4790 +91526 223082 0.5050 +91543 94240 0.9000 +91543 115004 0.5440 +91543 115361 0.6870 +91543 115362 0.6290 +91543 116071 0.5510 +91543 129607 0.9760 +91543 146857 0.4680 +91543 149628 0.4390 +91543 163702 0.4460 +91543 165631 0.4130 +91543 200315 0.4830 +91543 219285 0.7810 +91543 282616 0.5580 +91543 282617 0.5150 +91543 282618 0.6020 +91543 340061 0.4610 +91543 387733 0.4090 +91543 388646 0.4870 +91543 439996 0.6290 +91543 730249 0.4130 +91544 122742 0.4330 +91544 124995 0.5730 +91544 127733 0.6460 +91544 137886 0.5400 +91544 147650 0.4010 +91544 160777 0.5080 +91544 165324 0.6450 +91544 652991 0.4420 +91574 92399 0.6660 +91574 92935 0.4040 +91574 112817 0.8260 +91574 113612 0.6540 +91574 115416 0.8930 +91574 116540 0.8320 +91574 116541 0.8280 +91574 118487 0.4240 +91574 118813 0.5210 +91574 122704 0.8410 +91574 123263 0.5880 +91574 123606 0.4570 +91574 124454 0.5720 +91574 124995 0.8350 +91574 126129 0.4720 +91574 126402 0.5650 +91574 128308 0.8440 +91574 137492 0.4770 +91574 140801 0.4250 +91574 200205 0.5790 +91574 219402 0.4310 +91574 219927 0.9290 +91574 221823 0.4380 +91574 285855 0.4220 +91574 340075 0.4210 +91574 347487 0.5570 +91574 387129 0.4020 +91574 100287482 0.4920 +91574 100505478 0.4020 +91574 100526842 0.5020 +91574 127898561 0.8000 +91582 92856 0.8310 +91582 200186 0.4380 +91584 166336 0.4160 +91584 170482 0.4400 +91584 223117 0.6300 +91584 284217 0.5410 +91584 100132074 0.7670 +91603 118924 0.5650 +91603 153527 0.4570 +91603 199746 0.5780 +91603 200373 0.4700 +91607 94239 0.4200 +91607 115362 0.5390 +91608 91614 0.4280 +91608 133482 0.4270 +91608 145447 0.4160 +91608 152065 0.4180 +91608 342527 0.4440 +91608 342850 0.4100 +91608 401665 0.4370 +91614 145447 0.4090 +91614 283635 0.4260 +91614 493860 0.5560 +91614 100131378 0.4180 +91624 91860 0.4310 +91624 125972 0.5070 +91624 163688 0.4310 +91624 171024 0.4320 +91624 282996 0.7680 +91624 374986 0.7160 +91624 642938 0.4440 +91646 112479 0.6030 +91646 113802 0.6250 +91646 117246 0.5000 +91646 121355 0.6430 +91646 122402 0.8660 +91646 126668 0.5070 +91646 136991 0.8760 +91646 143689 0.7860 +91646 161829 0.9800 +91646 163589 0.7130 +91646 169792 0.4070 +91646 198437 0.4470 +91646 201164 0.5130 +91646 221400 0.6100 +91646 285855 0.4120 +91646 340168 0.4340 +91646 387129 0.4070 +91646 390916 0.5160 +91646 440822 0.4100 +91646 645432 0.4050 +91646 100129278 0.5830 +91647 93973 0.5300 +91647 125115 0.4530 +91647 146691 0.4260 +91647 154791 0.8250 +91647 285203 0.4810 +91647 339229 0.4800 +91647 644096 0.4550 +91647 729515 0.4180 +91653 374654 0.5000 +91653 440387 0.4320 +91653 100271849 0.5260 +91661 158584 0.5290 +91662 114548 0.9840 +91662 115727 0.4160 +91662 123041 0.4060 +91662 140609 0.4620 +91662 147945 0.7600 +91662 152138 0.4440 +91662 171389 0.9860 +91662 199713 0.9800 +91662 260434 0.7400 +91662 338322 0.4540 +91663 115196 0.4780 +91663 117289 0.5440 +91663 143903 0.4030 +91663 151306 0.4250 +91664 115992 0.4270 +91664 125893 0.5430 +91664 146562 0.4180 +91664 317703 0.4490 +91664 414919 0.5110 +91683 112755 0.6720 +91683 120892 0.5070 +91683 130013 0.6680 +91683 134957 0.4090 +91687 121504 0.8170 +91687 147841 0.5180 +91687 151246 0.6270 +91687 151648 0.6710 +91687 201254 0.9900 +91687 339416 0.4470 +91687 348235 0.5470 +91687 378708 0.9960 +91687 387103 0.9910 +91687 401541 0.9980 +91687 554313 0.8170 +91687 730159 0.4180 +91689 150368 0.4490 +91689 221154 0.9990 +91689 286097 0.9960 +91689 493861 0.4890 +91694 157773 0.5470 +91703 339983 0.4690 +91703 100132396 0.4200 +91734 116150 0.7200 +91734 137682 0.4040 +91734 143684 0.4330 +91734 170463 0.8350 +91734 340390 0.4060 +91746 92140 0.4920 +91746 115708 0.5230 +91746 138046 0.4720 +91746 140890 0.4250 +91746 202559 0.6350 +91746 221120 0.6410 +91746 253943 0.7600 +91746 266743 0.4220 +91746 284071 0.5700 +91746 343069 0.4120 +91746 348995 0.4450 +91746 378951 0.5020 +91748 116092 0.9970 +91748 146212 0.5460 +91749 117247 0.4950 +91749 125206 0.4570 +91750 115330 0.4240 +91750 132660 0.9990 +91750 144233 0.5020 +91750 145483 0.4940 +91750 145497 0.5050 +91750 286826 0.9990 +91752 154664 0.4420 +91752 160851 0.4230 +91752 267012 0.7660 +91752 319100 0.5460 +91754 121441 0.6100 +91754 124401 0.7670 +91754 129401 0.4290 +91754 140609 0.9990 +91754 200894 0.4540 +91754 203286 0.9790 +91754 261734 0.6880 +91754 283677 0.6470 +91754 348995 0.4260 +91754 100101267 0.4390 +91768 171586 0.4330 +91768 220107 0.4210 +91768 253461 0.4010 +91775 474170 0.5070 +91782 92105 0.4590 +91782 92421 0.9800 +91782 93343 0.9420 +91782 112714 0.4990 +91782 113457 0.4990 +91782 128866 0.9680 +91782 137492 0.9520 +91782 140836 0.5000 +91782 148362 0.4240 +91782 154467 0.4930 +91782 155382 0.9100 +91782 197259 0.9060 +91782 200014 0.7530 +91782 203069 0.6780 +91782 221496 0.9960 +91782 260334 0.4990 +91782 347688 0.5290 +91782 347733 0.5000 +91782 390595 0.5400 +91782 100526767 0.8940 +91801 93587 0.4670 +91801 113179 0.6190 +91801 115708 0.5370 +91801 121642 0.8350 +91801 129450 0.5680 +91801 142940 0.5020 +91801 143879 0.5880 +91801 143884 0.6670 +91801 221120 0.7700 +91801 348180 0.6420 +91807 91860 0.9870 +91807 93408 0.7380 +91807 94274 0.6090 +91807 103910 0.9680 +91807 140465 0.9350 +91807 163688 0.9870 +91807 100506658 0.4430 +91828 115650 0.4150 +91828 149371 0.8490 +91828 259173 0.5060 +91828 283849 0.7210 +91828 341032 0.4540 +91828 644145 0.7940 +91828 654502 0.4810 +91833 219333 0.9990 +91833 221302 0.5290 +91833 266812 0.4200 +91833 338917 0.6200 +91833 346171 0.4150 +91833 388015 0.4730 +91833 100101490 0.4800 +91851 256691 0.4490 +91860 91977 0.5370 +91860 92291 0.5600 +91860 93129 0.4350 +91860 93974 0.4840 +91860 94032 0.6480 +91860 94274 0.5410 +91860 118429 0.5110 +91860 124152 0.4400 +91860 128153 0.5660 +91860 128239 0.6100 +91860 131890 0.6890 +91860 133482 0.5180 +91860 136991 0.4200 +91860 137902 0.5730 +91860 139728 0.4570 +91860 144406 0.4060 +91860 144535 0.5230 +91860 160622 0.5050 +91860 161497 0.5010 +91860 162514 0.6460 +91860 163688 0.9610 +91860 166614 0.4570 +91860 196883 0.7790 +91860 200373 0.7980 +91860 219670 0.7990 +91860 257202 0.4070 +91860 259266 0.5530 +91860 340156 0.7070 +91860 345456 0.6250 +91860 375189 0.6400 +91860 440093 0.4300 +91860 440387 0.4780 +91860 440686 0.4300 +91860 440854 0.5460 +91860 493869 0.4080 +91860 653145 0.6440 +91860 653604 0.4300 +91860 654231 0.5990 +91860 100271849 0.4660 +91862 92359 0.4660 +91862 113146 0.4150 +91862 113230 0.4780 +91862 126695 0.4120 +91862 137075 0.4290 +91862 150084 0.4380 +91862 153562 0.9280 +91862 387597 0.4060 +91862 100506658 0.8900 +91869 440138 0.9540 +91869 619279 0.5620 +91875 92399 0.4960 +91875 116150 0.4310 +91875 122481 0.4070 +91875 122622 0.4390 +91875 125488 0.4820 +91875 126402 0.4310 +91875 133746 0.9290 +91875 158067 0.4070 +91875 158584 0.4200 +91875 203068 0.9040 +91875 221264 0.4180 +91875 255394 0.5920 +91875 283985 0.4890 +91875 284451 0.4090 +91875 285555 0.4510 +91875 342538 0.8210 +91875 347487 0.5150 +91875 347733 0.5910 +91875 100287482 0.5100 +91893 123263 0.4700 +91893 124454 0.4210 +91893 126402 0.4890 +91893 138428 0.4030 +91893 143244 0.4030 +91893 151295 0.4050 +91893 161424 0.5070 +91893 221078 0.4800 +91893 339745 0.4050 +91893 387338 0.4970 +91893 692312 0.5220 +91894 144110 0.4210 +91937 114609 0.4070 +91937 124599 0.6510 +91937 140885 0.5450 +91937 146722 0.4400 +91937 165530 0.6650 +91937 166378 0.4900 +91937 201633 0.4050 +91937 202333 0.4160 +91937 284194 0.6010 +91937 339390 0.4080 +91937 654346 0.6010 +91942 126328 0.9300 +91942 129401 0.4380 +91942 135154 0.4220 +91942 137682 0.9130 +91942 139221 0.6620 +91942 219927 0.4720 +91942 284184 0.5190 +91942 341567 0.4090 +91942 374291 0.9850 +91942 375449 0.5070 +91942 388962 0.4420 +91942 644096 0.4560 +91942 728317 0.6620 +91942 100288072 0.5550 +91942 100532726 0.5360 +91947 145814 0.4400 +91947 201292 0.6930 +91949 93661 0.4990 +91949 124997 0.4310 +91949 126208 0.4470 +91949 140735 0.6080 +91949 143187 0.7840 +91949 149371 0.4620 +91949 200014 0.4170 +91949 200312 0.5550 +91949 339122 0.5380 +91949 347517 0.5170 +91966 139067 0.4460 +91966 441525 0.4470 +91966 445328 0.4180 +91966 494118 0.4160 +91966 494119 0.4180 +91966 541578 0.8770 +91966 100129239 0.5130 +91966 101927685 0.6080 +91975 345611 0.8310 +91977 119391 0.4460 +91977 163688 0.5430 +91977 201456 0.4150 +91977 219487 0.4080 +91977 284323 0.5200 +91977 440574 0.4580 +91978 114787 0.4990 +91978 152405 0.5260 +91978 158067 0.5040 +91978 222235 0.5230 +91978 283768 0.4460 +91978 284451 0.5220 +91978 375307 0.5720 +91978 100130771 0.4480 +92002 92822 0.4210 +92002 131096 0.4380 +92002 154150 0.4390 +92002 165257 0.4640 +92002 207063 0.4230 +92002 220134 0.4380 +92002 253782 0.4280 +92002 256356 0.4770 +92002 286148 0.5350 +92002 403239 0.4470 +92002 643311 0.5710 +92014 114789 0.4090 +92014 153328 0.4790 +92014 203427 0.4340 +92014 253512 0.4690 +92014 284723 0.4990 +92014 342945 0.4370 +92014 349565 0.4880 +92014 390980 0.4630 +92014 399512 0.5310 +92017 112770 0.4210 +92017 118429 0.4510 +92017 124460 0.4690 +92017 128025 0.4090 +92017 131583 0.4790 +92017 345222 0.4780 +92017 399979 0.4370 +92017 407738 0.4120 +92086 124975 0.9090 +92092 94059 0.4280 +92092 202865 0.4750 +92092 219557 0.4790 +92092 375287 0.4370 +92104 112752 0.5640 +92104 113802 0.4440 +92104 129530 0.5780 +92104 140831 0.4570 +92104 142685 0.4330 +92104 150737 0.9590 +92104 151790 0.4770 +92104 151827 0.4780 +92104 154313 0.4020 +92104 199223 0.5870 +92104 200894 0.8290 +92105 127255 0.4200 +92105 203522 0.6340 +92105 338657 0.4100 +92105 399671 0.4910 +92105 441519 0.6040 +92105 441521 0.6040 +92105 541465 0.6040 +92105 541466 0.6040 +92105 728911 0.6040 +92105 101060211 0.6040 +92105 102723631 0.6040 +92105 102723680 0.6040 +92105 102723737 0.6040 +92106 93550 0.4370 +92106 117248 0.4150 +92106 121274 0.5630 +92106 127845 0.5360 +92106 151112 0.5340 +92106 165904 0.8840 +92106 166752 0.4340 +92106 283985 0.6080 +92106 285381 0.7360 +92106 389434 0.5480 +92126 113189 0.5520 +92126 166012 0.5390 +92126 110806297 0.4790 +92129 145873 0.6970 +92129 340260 0.5080 +92129 343930 0.4220 +92140 100506658 0.4450 +92154 127933 0.4070 +92154 285175 0.4800 +92154 374462 0.4320 +92154 376132 0.4200 +92154 389337 0.5570 +92162 93190 0.4850 +92162 130733 0.4550 +92162 131920 0.4380 +92162 375567 0.4350 +92170 92856 0.4640 +92170 113000 0.6070 +92170 114908 0.4300 +92170 115416 0.9970 +92170 116540 0.8160 +92170 116541 0.8220 +92170 117246 0.4880 +92170 118487 0.4660 +92170 122704 0.8240 +92170 124995 0.8100 +92170 128308 0.8590 +92170 130916 0.9640 +92170 142940 0.4100 +92170 196743 0.5780 +92170 219927 0.9800 +92170 221078 0.4340 +92170 282969 0.4700 +92170 284418 0.4300 +92170 285190 0.4300 +92170 285367 0.7550 +92170 285755 0.4300 +92170 285855 0.5630 +92170 387129 0.5600 +92170 387338 0.9720 +92170 503542 0.9660 +92170 644591 0.4370 +92170 645142 0.4370 +92170 653505 0.4370 +92170 653598 0.4370 +92170 727851 0.4300 +92170 728945 0.4370 +92170 729857 0.4300 +92170 730262 0.4370 +92170 100505478 0.5600 +92170 100526842 0.4190 +92170 105371242 0.4370 +92170 127898561 0.8610 +92181 133874 0.5190 +92181 285590 0.4010 +92196 93517 0.4120 +92196 114987 0.5970 +92196 116832 0.6180 +92196 124454 0.4590 +92196 126402 0.5210 +92196 140032 0.5180 +92196 140801 0.6180 +92196 143244 0.5180 +92196 200916 0.5970 +92196 254268 0.6180 +92196 283152 0.5630 +92196 285855 0.6180 +92196 347487 0.6180 +92196 387129 0.5180 +92196 641776 0.4080 +92196 643909 0.4080 +92196 728524 0.4080 +92196 100287482 0.4710 +92196 100505478 0.4930 +92196 100526842 0.6180 +92196 100529097 0.5180 +92196 100529239 0.6180 +92196 100996746 0.4080 +92196 105180390 0.4080 +92196 105180391 0.4080 +92211 93589 0.4410 +92211 94137 0.4550 +92211 145226 0.4600 +92211 149708 0.4360 +92211 157657 0.6570 +92211 167691 0.4070 +92211 169522 0.6040 +92211 254173 0.4760 +92211 282809 0.4020 +92211 340745 0.6290 +92211 346007 0.5860 +92211 375298 0.6870 +92211 388531 0.4540 +92211 388939 0.4840 +92211 389336 0.4180 +92211 768206 0.5290 +92235 129446 0.4580 +92235 151651 0.5150 +92235 340359 0.5670 +92241 147138 0.4910 +92241 286530 0.6580 +92255 92822 0.4330 +92255 115950 0.4750 +92255 133686 0.4870 +92255 133690 0.6730 +92255 160418 0.4620 +92255 202151 0.4830 +92255 283375 0.4490 +92255 399664 0.4430 +92259 118487 0.8860 +92259 122704 0.4800 +92259 131076 0.4510 +92259 150274 0.4160 +92259 219402 0.7780 +92259 219927 0.4620 +92259 285343 0.6140 +92283 120863 0.4220 +92283 284370 0.7960 +92283 100289462 0.4500 +92285 219983 0.4500 +92285 283464 0.4140 +92285 374900 0.4190 +92291 136332 0.4620 +92291 163688 0.5600 +92291 100526773 0.4420 +92292 94233 0.8510 +92292 112483 0.8000 +92292 114799 0.8800 +92292 117245 0.4160 +92292 157570 0.8780 +92292 196743 0.7620 +92292 345079 0.4030 +92292 388531 0.7830 +92292 440093 0.4600 +92292 440686 0.4610 +92292 644672 0.4210 +92292 645121 0.4030 +92292 653604 0.4600 +92292 728642 0.4210 +92293 126668 0.5260 +92293 126755 0.4740 +92293 129684 0.4660 +92293 144423 0.4040 +92293 166752 0.4840 +92293 360205 0.5260 +92304 92747 0.7270 +92304 117156 0.5870 +92304 147199 0.4440 +92304 653509 0.6760 +92304 727897 0.5570 +92305 118424 0.9510 +92305 148066 0.4070 +92305 152877 0.6650 +92305 153830 0.4300 +92305 347475 0.4110 +92305 401934 0.5040 +92312 254428 0.4160 +92312 283248 0.4120 +92335 114790 0.7130 +92335 124401 0.5050 +92335 133482 0.5170 +92335 134553 0.6850 +92335 140609 0.4030 +92342 124512 0.6590 +92342 131965 0.4170 +92342 134145 0.5220 +92342 149281 0.5800 +92342 151194 0.7430 +92342 155368 0.6100 +92342 196483 0.6230 +92342 196541 0.6030 +92342 221143 0.5930 +92342 254013 0.6950 +92342 399818 0.6110 +92342 751071 0.4630 +92344 112802 0.5210 +92344 113189 0.4040 +92344 126792 0.4140 +92344 144717 0.5330 +92344 149420 0.6670 +92344 163786 0.4010 +92345 92856 0.5220 +92345 117246 0.4500 +92345 138716 0.5810 +92345 142940 0.7690 +92345 171482 0.4800 +92345 221078 0.4210 +92345 221830 0.5500 +92345 345630 0.6740 +92345 347744 0.7540 +92346 146429 0.4370 +92346 199920 0.4790 +92346 283310 0.4500 +92346 346689 0.4160 +92346 347475 0.5090 +92346 653061 0.6690 +92346 728945 0.5900 +92346 730262 0.5150 +92359 117177 0.4890 +92359 126695 0.5150 +92359 153562 0.4670 +92359 154796 0.6580 +92359 286204 0.9350 +92359 100506658 0.5320 +92369 93974 0.4250 +92369 122769 0.4280 +92369 133396 0.4250 +92369 140459 0.4440 +92369 140739 0.5380 +92369 149951 0.4990 +92369 150684 0.4990 +92369 170622 0.4990 +92370 126792 0.5160 +92370 256130 0.4200 +92370 256380 0.4110 +92370 440138 0.5870 +92399 92935 0.4980 +92399 93974 0.7000 +92399 115416 0.7170 +92399 115752 0.4210 +92399 116150 0.7660 +92399 116540 0.8590 +92399 116541 0.8580 +92399 118487 0.8840 +92399 122704 0.8410 +92399 123263 0.7030 +92399 123283 0.5390 +92399 124454 0.6240 +92399 124995 0.8550 +92399 125170 0.7100 +92399 126402 0.8840 +92399 126789 0.4420 +92399 128308 0.8440 +92399 129563 0.4640 +92399 130916 0.4180 +92399 134266 0.4300 +92399 138428 0.5020 +92399 140801 0.8050 +92399 143244 0.4640 +92399 196074 0.4830 +92399 219402 0.7020 +92399 219927 0.9960 +92399 285521 0.4070 +92399 285855 0.6900 +92399 326625 0.4680 +92399 343068 0.6210 +92399 343070 0.6210 +92399 347487 0.8880 +92399 374659 0.4870 +92399 387129 0.6620 +92399 387338 0.4480 +92399 390999 0.6210 +92399 391002 0.6210 +92399 392465 0.4530 +92399 400735 0.6210 +92399 400736 0.6210 +92399 440275 0.4500 +92399 440560 0.6210 +92399 440561 0.6210 +92399 441873 0.6210 +92399 497189 0.4120 +92399 641776 0.6930 +92399 643909 0.6930 +92399 645359 0.6210 +92399 653619 0.6210 +92399 728524 0.6930 +92399 729528 0.6210 +92399 100287482 0.8880 +92399 100505478 0.6620 +92399 100526842 0.8720 +92399 100996746 0.6930 +92399 101929983 0.6210 +92399 105180390 0.6930 +92399 105180391 0.6930 +92400 123811 0.4090 +92400 146310 0.4560 +92400 153527 0.4350 +92400 261726 0.5340 +92421 93343 0.7440 +92421 112714 0.6300 +92421 113457 0.4990 +92421 114822 0.4900 +92421 128866 0.9730 +92421 137492 0.7600 +92421 148362 0.7360 +92421 153562 0.4610 +92421 155382 0.7330 +92421 197259 0.9420 +92421 200014 0.8310 +92421 200894 0.4020 +92421 221496 0.5660 +92421 260334 0.4990 +92421 347688 0.6300 +92421 347733 0.4990 +92421 390595 0.5400 +92421 440738 0.4670 +92421 100526767 0.9600 +92482 112752 0.4730 +92482 117177 0.9490 +92482 129880 0.9990 +92482 157657 0.5720 +92482 166379 0.8300 +92483 113675 0.8200 +92483 124975 0.6390 +92483 132158 0.8230 +92483 137362 0.9820 +92483 197257 0.9660 +92483 387712 0.5650 +92483 548596 0.7460 +92521 219537 0.5530 +92521 254102 0.5870 +92521 257202 0.4200 +92521 284427 0.4220 +92521 342527 0.5400 +92521 400668 0.8750 +92521 493869 0.4240 +92552 114803 0.4040 +92552 126119 0.5280 +92552 127002 0.6520 +92552 139562 0.4130 +92552 220213 0.4060 +92552 221302 0.6980 +92552 222255 0.6390 +92552 373509 0.4140 +92552 440738 0.4760 +92552 441925 0.9140 +92558 158158 0.5300 +92558 202243 0.4850 +92558 257236 0.4600 +92558 374946 0.4220 +92558 644100 0.4380 +92565 115196 0.4430 +92565 118491 0.4590 +92565 132851 0.5590 +92565 137886 0.5400 +92565 139231 0.5910 +92565 146845 0.4730 +92565 148254 0.4470 +92565 152687 0.4070 +92565 163479 0.4230 +92565 200162 0.4120 +92565 254427 0.4110 +92565 340895 0.5040 +92565 408263 0.4060 +92565 643988 0.4550 +92565 100131827 0.5180 +92579 130589 0.9190 +92579 132158 0.8200 +92579 133522 0.5560 +92579 200186 0.5710 +92579 257202 0.4350 +92579 493869 0.4350 +92591 129138 0.4080 +92591 136319 0.4280 +92591 140739 0.5140 +92591 142689 0.5890 +92591 149951 0.4990 +92591 150684 0.4990 +92591 170622 0.4990 +92591 317754 0.5050 +92591 339291 0.4640 +92591 388468 0.4860 +92591 404785 0.4820 +92591 554226 0.4720 +92591 641455 0.4870 +92591 100287399 0.4590 +92591 100288966 0.5070 +92591 100996331 0.4890 +92591 102723502 0.4840 +92591 102724631 0.4840 +92595 283870 0.4650 +92595 387509 0.5090 +92595 729440 0.4200 +92597 122786 0.4110 +92597 128077 0.4340 +92597 150094 0.4880 +92597 154796 0.7270 +92597 154810 0.6620 +92609 94081 0.5380 +92609 112714 0.8110 +92609 114789 0.4490 +92609 131118 0.9730 +92609 131474 0.7400 +92609 134266 0.7450 +92609 140823 0.8310 +92609 150274 0.5450 +92609 160760 0.4400 +92609 197257 0.5130 +92609 200576 0.5130 +92609 221154 0.4450 +92609 285521 0.5600 +92609 345778 0.4350 +92609 401505 0.5980 +92609 728489 0.4590 +92609 100188893 0.6140 +92609 100287932 0.9990 +92610 257397 0.4990 +92610 387357 0.4660 +92610 497189 0.6700 +92667 116447 0.5670 +92667 162681 0.5040 +92667 201973 0.4980 +92667 246243 0.6670 +92667 284992 0.4690 +92691 152006 0.4970 +92691 201780 0.4950 +92703 116150 0.4910 +92703 145567 0.4090 +92703 405754 0.4890 +92714 137492 0.7600 +92715 116225 0.4280 +92715 120526 0.8090 +92715 121793 0.5190 +92715 285381 0.8450 +92715 388324 0.4530 +92736 266675 0.7460 +92736 283987 0.4180 +92736 388364 0.4940 +92736 388595 0.4880 +92736 729330 0.5990 +92737 93377 0.4760 +92737 113878 0.5760 +92737 260425 0.4530 +92737 402665 0.7240 +92745 124935 0.4030 +92745 153129 0.4640 +92745 153201 0.4240 +92745 206358 0.4390 +92745 340024 0.4810 +92747 126147 0.4560 +92747 128859 0.7540 +92747 128861 0.7500 +92747 140683 0.8480 +92747 149954 0.6940 +92747 283518 0.6720 +92747 352999 0.7340 +92747 359710 0.5970 +92747 727897 0.7550 +92749 93233 0.8230 +92749 114327 0.4380 +92749 115948 0.6570 +92749 118491 0.5360 +92749 123872 0.7100 +92749 126820 0.5250 +92749 127003 0.4350 +92749 127602 0.4090 +92749 139212 0.6620 +92749 144132 0.4230 +92749 146754 0.6380 +92749 154313 0.5070 +92749 159686 0.4450 +92749 160762 0.4260 +92749 161582 0.6740 +92749 201625 0.6600 +92749 202500 0.5540 +92749 219681 0.4230 +92749 221421 0.8080 +92749 257177 0.4020 +92749 339829 0.8740 +92749 345643 0.5760 +92749 345895 0.7870 +92749 352909 0.7000 +92749 374407 0.4490 +92749 388389 0.8550 +92797 246243 0.4100 +92799 93986 0.4030 +92799 133015 0.4860 +92799 146212 0.6150 +92799 147040 0.5490 +92799 154881 0.5970 +92799 222658 0.4560 +92815 93624 0.5390 +92815 114785 0.4530 +92815 114803 0.5750 +92815 121504 0.5130 +92815 126961 0.4250 +92815 128312 0.8050 +92815 171023 0.4340 +92815 221613 0.4140 +92815 221656 0.4950 +92815 221937 0.4080 +92815 255626 0.7630 +92815 317772 0.4350 +92815 440689 0.6360 +92815 554313 0.4430 +92815 653604 0.6240 +92822 115992 0.5460 +92822 129025 0.4070 +92822 146705 0.4430 +92822 152485 0.6670 +92822 203245 0.5350 +92822 389257 0.4440 +92822 653121 0.4790 +92840 94137 0.5770 +92840 113675 0.4270 +92840 115861 0.5330 +92840 124491 0.4650 +92840 137994 0.4450 +92840 145226 0.4070 +92840 158046 0.4430 +92840 202052 0.4400 +92840 338751 0.4220 +92840 390084 0.5220 +92840 651746 0.4670 +92856 115708 0.4730 +92856 116966 0.5680 +92856 117246 0.8100 +92856 118460 0.6910 +92856 126402 0.6220 +92856 128061 0.8110 +92856 140032 0.6280 +92856 146212 0.8540 +92856 153443 0.8510 +92856 155368 0.6150 +92856 161424 0.8110 +92856 165545 0.6650 +92856 170506 0.4290 +92856 221078 0.7390 +92856 221830 0.8960 +92856 285855 0.6050 +92856 345630 0.9550 +92856 387129 0.5950 +92856 641776 0.4400 +92856 643909 0.4400 +92856 692312 0.6750 +92856 728524 0.4400 +92856 100505478 0.5470 +92856 100996746 0.4400 +92856 102157402 0.5280 +92856 105180390 0.4400 +92856 105180391 0.4400 +92906 144983 0.4400 +92906 203068 0.4100 +92906 402055 0.4150 +92906 102723407 0.4460 +92912 118424 0.4280 +92912 134111 0.9030 +92912 134285 0.6080 +92912 196996 0.4590 +92922 125875 0.4540 +92922 143903 0.4460 +92922 404636 0.4570 +92935 93974 0.7060 +92935 116832 0.4720 +92935 123263 0.9650 +92935 123283 0.8060 +92935 124454 0.9770 +92935 137682 0.4170 +92935 374395 0.4050 +92935 440275 0.6200 +92949 115939 0.4120 +92949 145173 0.7390 +92949 147991 0.4050 +92960 126003 0.4600 +92960 219743 0.4160 +92960 222234 0.4570 +92960 374877 0.4700 +92979 162333 0.6420 +92979 392465 0.4310 +92999 112611 0.4760 +92999 259217 0.4030 +92999 376940 0.4300 +93010 94025 0.4030 +93010 124872 0.4210 +93010 140453 0.4070 +93010 200958 0.4110 +93010 337985 0.5410 +93010 394263 0.4050 +93010 727897 0.4160 +93034 93100 0.9100 +93034 113444 0.5670 +93034 115024 0.9580 +93034 122481 0.6960 +93034 122622 0.9320 +93034 123169 0.4750 +93034 124583 0.6870 +93034 129607 0.9180 +93034 131870 0.9000 +93034 139596 0.9030 +93034 151531 0.9050 +93034 153745 0.4410 +93034 158067 0.6960 +93034 198437 0.5060 +93034 221264 0.7020 +93034 259308 0.4540 +93034 338949 0.5160 +93034 339779 0.4260 +93034 377841 0.7250 +93034 645432 0.4090 +93034 100033411 0.4310 +93034 100130771 0.4830 +93034 100526794 0.9000 +93034 102157402 0.6540 +93034 107983988 0.4550 +93035 114788 0.5950 +93035 129446 0.4950 +93035 132320 0.4110 +93035 200008 0.4460 +93035 374393 0.4230 +93035 375449 0.4080 +93058 112812 0.4380 +93058 203054 0.4840 +93081 121793 0.6050 +93081 140701 0.4300 +93081 146279 0.4270 +93081 148479 0.4050 +93081 171484 0.5320 +93081 317761 0.4060 +93081 100129520 0.4720 +93099 221662 0.4200 +93099 374897 0.7600 +93099 388533 0.7330 +93100 115416 0.4220 +93100 125061 0.5220 +93100 130013 0.5330 +93100 133686 0.4520 +93100 158584 0.5350 +93100 169355 0.4690 +93100 221823 0.4080 +93100 349565 0.8810 +93100 642475 0.5680 +93100 100130890 0.4470 +93100 100131187 0.4560 +93100 100526794 0.9100 +93107 94233 0.5020 +93107 114987 0.4780 +93107 126402 0.5240 +93107 131096 0.4030 +93107 140032 0.4890 +93107 143244 0.4260 +93107 147138 0.4240 +93107 162998 0.4490 +93107 164633 0.4230 +93107 170850 0.4860 +93107 199699 0.4300 +93107 200916 0.4750 +93107 285855 0.4500 +93107 347487 0.4220 +93107 387129 0.4520 +93107 401036 0.4650 +93107 401387 0.4580 +93107 100287482 0.4220 +93107 100505478 0.4500 +93107 100526842 0.5030 +93107 100529097 0.4960 +93107 100529239 0.5030 +93109 131583 0.5090 +93109 154007 0.4130 +93109 170954 0.5180 +93109 285180 0.4010 +93109 400793 0.4160 +93129 163688 0.4350 +93129 196394 0.4180 +93134 400629 0.4200 +93145 116443 0.7270 +93145 116444 0.7250 +93145 118427 0.6120 +93145 149111 0.7800 +93145 150921 0.4010 +93145 170572 0.5560 +93145 200909 0.5530 +93145 254263 0.8170 +93145 285242 0.5750 +93145 375567 0.5500 +93145 386682 0.4750 +93145 388336 0.5830 +93145 402117 0.5610 +93145 440829 0.5810 +93145 729956 0.5840 +93145 729993 0.7200 +93166 644186 0.6080 +93183 93210 0.7040 +93183 94005 0.5170 +93183 128869 0.5790 +93183 284098 0.9820 +93183 440138 0.4850 +93183 100133941 0.4820 +93185 246777 0.4250 +93190 114327 0.8280 +93190 126767 0.6760 +93190 127003 0.8580 +93190 129881 0.8350 +93190 130813 0.4540 +93190 134121 0.8400 +93190 135138 0.8970 +93190 138162 0.8340 +93190 138255 0.8250 +93190 145788 0.8240 +93190 146845 0.9030 +93190 150483 0.8160 +93190 151651 0.8690 +93190 155006 0.4260 +93190 161502 0.8230 +93190 166979 0.9350 +93190 197335 0.4340 +93190 206412 0.5760 +93190 219670 0.8320 +93190 219681 0.4890 +93190 220136 0.8320 +93190 257177 0.8490 +93190 280664 0.5140 +93190 339778 0.8170 +93190 388701 0.8170 +93190 389799 0.8120 +93190 400891 0.4620 +93190 401236 0.5330 +93190 401551 0.4510 +93190 440585 0.8000 +93190 730112 0.8120 +93190 100128569 0.5070 +93190 100132386 0.4500 +93210 94103 0.7450 +93210 124626 0.5910 +93210 125981 0.4670 +93210 284098 0.7720 +93210 284110 0.5410 +93210 340485 0.4550 +93210 387263 0.5190 +93233 114327 0.5630 +93233 115399 0.4760 +93233 115948 0.9920 +93233 118491 0.8040 +93233 122481 0.5950 +93233 123872 0.7380 +93233 126820 0.8280 +93233 127003 0.5720 +93233 127602 0.6570 +93233 129881 0.6860 +93233 130888 0.5970 +93233 135138 0.5660 +93233 138162 0.6220 +93233 138255 0.5230 +93233 139212 0.6470 +93233 144132 0.6810 +93233 144809 0.4040 +93233 145788 0.4990 +93233 146754 0.8390 +93233 146845 0.6420 +93233 149499 0.4860 +93233 149951 0.4750 +93233 150483 0.5720 +93233 151651 0.5430 +93233 158787 0.4680 +93233 161582 0.7210 +93233 164395 0.5480 +93233 164781 0.4590 +93233 170622 0.4460 +93233 196385 0.4580 +93233 197335 0.5830 +93233 200132 0.4090 +93233 201625 0.8080 +93233 219681 0.5970 +93233 220136 0.7190 +93233 221421 0.7670 +93233 257177 0.6840 +93233 286207 0.4270 +93233 339829 0.7820 +93233 345643 0.5230 +93233 345895 0.8630 +93233 345930 0.4610 +93233 347688 0.4140 +93233 348807 0.4820 +93233 352909 0.7510 +93233 374407 0.4370 +93233 388389 0.8580 +93233 388701 0.5070 +93233 389161 0.4080 +93233 401551 0.4190 +93233 404636 0.4800 +93233 727764 0.5090 +93233 100128569 0.6380 +93273 126549 0.4450 +93273 219938 0.4210 +93273 221496 0.4750 +93323 94134 0.4390 +93323 95681 0.5090 +93323 115106 0.9990 +93323 115353 0.4300 +93323 116841 0.5170 +93323 117177 0.4990 +93323 121441 0.8310 +93323 130951 0.4360 +93323 134359 0.4080 +93323 152185 0.5360 +93323 153020 0.4410 +93323 163786 0.4680 +93323 203068 0.5160 +93323 256126 0.4670 +93323 283554 0.5250 +93323 347240 0.5240 +93323 494188 0.4560 +93323 728642 0.5250 +93343 95681 0.7010 +93343 123879 0.4950 +93343 128866 0.9290 +93343 137492 0.9950 +93343 148362 0.4340 +93343 148581 0.6190 +93343 155382 0.9750 +93343 200894 0.4150 +93343 390595 0.5400 +93343 100526767 0.5430 +93349 254065 0.4210 +93377 116173 0.4010 +93377 116448 0.5500 +93377 118442 0.5150 +93377 129807 0.4160 +93377 132204 0.5060 +93377 133121 0.5710 +93377 140679 0.5740 +93377 147670 0.4460 +93377 158931 0.4430 +93377 203190 0.4330 +93377 221074 0.4260 +93377 221938 0.4180 +93377 256472 0.4200 +93377 283999 0.8590 +93377 285800 0.4170 +93377 339896 0.4390 +93377 392617 0.4100 +93377 402381 0.4060 +93377 441151 0.4170 +93377 642968 0.4320 +93380 123606 0.4250 +93380 139231 0.4760 +93380 140803 0.4020 +93380 152519 0.6430 +93380 254428 0.5800 +93380 284361 0.9990 +93380 337867 0.4040 +93380 348938 0.4550 +93408 103910 0.5260 +93408 140465 0.7070 +93408 340156 0.7380 +93408 399687 0.4390 +93426 94239 0.4990 +93426 113130 0.4180 +93426 128312 0.5010 +93426 135935 0.5280 +93426 145483 0.5910 +93426 147872 0.4230 +93426 150280 0.7240 +93426 150365 0.7160 +93426 158401 0.5010 +93426 164045 0.6770 +93426 254394 0.6210 +93426 254528 0.7000 +93426 255626 0.5380 +93426 256006 0.5750 +93426 256126 0.9990 +93426 283129 0.4290 +93426 283677 0.4810 +93426 283847 0.4410 +93426 285498 0.5410 +93426 317761 0.8690 +93426 339834 0.4820 +93426 342977 0.4100 +93426 344018 0.5350 +93426 346673 0.4690 +93426 402381 0.6170 +93426 474382 0.4990 +93426 503542 0.5290 +93426 642636 0.6430 +93426 644186 0.9940 +93426 100526761 0.4830 +93436 219681 0.4260 +93436 221927 0.4890 +93436 257068 0.5470 +93436 284273 0.5310 +93474 101060321 0.4760 +93487 119504 0.4910 +93487 135293 0.5290 +93487 256714 0.4150 +93487 376267 0.5680 +93487 100288413 0.4340 +93517 114987 0.4710 +93517 126402 0.4660 +93517 132949 0.4480 +93517 140032 0.4270 +93517 197258 0.4180 +93517 200916 0.4630 +93517 285855 0.4030 +93517 347475 0.5010 +93517 387129 0.4030 +93517 100505478 0.4030 +93517 100526842 0.4310 +93517 100529239 0.4860 +93550 114792 0.5380 +93550 114987 0.5530 +93550 115749 0.4310 +93550 116832 0.4860 +93550 117144 0.4480 +93550 121642 0.4210 +93550 126402 0.4990 +93550 134510 0.4190 +93550 138724 0.5910 +93550 139604 0.5600 +93550 140032 0.5300 +93550 140801 0.4800 +93550 142678 0.4100 +93550 145942 0.5330 +93550 147670 0.4180 +93550 148252 0.4920 +93550 150159 0.4010 +93550 152065 0.4780 +93550 161142 0.4520 +93550 162517 0.4100 +93550 164153 0.5610 +93550 164684 0.4130 +93550 195977 0.4670 +93550 200232 0.5900 +93550 200916 0.5270 +93550 253725 0.6240 +93550 254268 0.4780 +93550 257169 0.5960 +93550 283461 0.5450 +93550 285855 0.4790 +93550 342850 0.4440 +93550 347487 0.5030 +93550 387129 0.4790 +93550 387707 0.4120 +93550 493901 0.4320 +93550 645051 0.4080 +93550 645073 0.4080 +93550 729396 0.4080 +93550 729422 0.4080 +93550 729428 0.4080 +93550 729431 0.4080 +93550 729442 0.4080 +93550 729447 0.4080 +93550 100008586 0.4080 +93550 100132399 0.4080 +93550 100526842 0.4890 +93550 100529097 0.5050 +93550 100529239 0.5090 +93550 102724473 0.4080 +93587 113179 0.6260 +93587 113802 0.4050 +93587 115708 0.7080 +93587 115939 0.4820 +93587 117246 0.4910 +93587 131965 0.5580 +93587 142940 0.6600 +93587 221078 0.5370 +93587 339175 0.5970 +93589 115727 0.6570 +93589 117144 0.7550 +93589 117155 0.8070 +93589 157657 0.5120 +93589 169522 0.5760 +93589 246329 0.7390 +93589 257044 0.7240 +93589 257062 0.7350 +93589 282809 0.4120 +93589 285588 0.7200 +93589 340393 0.7200 +93589 345193 0.6120 +93589 347732 0.7940 +93589 378807 0.7470 +93589 388939 0.4320 +93589 440435 0.4810 +93589 654429 0.5820 +93589 100130348 0.7200 +93594 115825 0.4910 +93594 116225 0.4290 +93594 117178 0.4100 +93594 123811 0.4960 +93594 165055 0.6200 +93594 167153 0.4210 +93594 254173 0.4120 +93594 619279 0.4490 +93594 729440 0.5520 +93594 100527943 0.5080 +93611 114088 0.4640 +93611 114907 0.4590 +93611 115290 0.6230 +93611 122416 0.5350 +93611 123879 0.4990 +93611 126433 0.5950 +93611 140456 0.5410 +93611 142686 0.5080 +93611 353299 0.4690 +93621 114932 0.7210 +93621 283989 0.4440 +93624 112869 0.9990 +93624 117143 0.9880 +93624 121274 0.4780 +93624 127002 0.7920 +93624 128312 0.6030 +93624 133957 0.7200 +93624 138474 0.4530 +93624 140460 0.7240 +93624 158880 0.6850 +93624 201626 0.4210 +93624 221613 0.5390 +93624 222255 0.6790 +93624 246175 0.4210 +93624 255626 0.5850 +93624 283337 0.4780 +93624 317772 0.5390 +93624 389856 0.6770 +93624 440093 0.5690 +93624 440686 0.5690 +93624 440689 0.5850 +93624 653604 0.7300 +93624 100287513 0.4710 +93624 100288072 0.5450 +93627 128637 0.4830 +93627 129285 0.6080 +93627 140290 0.5930 +93627 256471 0.4110 +93643 112479 0.6480 +93643 115752 0.4430 +93643 129563 0.4330 +93643 167227 0.5360 +93643 200014 0.5430 +93643 340554 0.4340 +93649 114907 0.5390 +93649 153443 0.6690 +93649 171024 0.5190 +93649 221692 0.8040 +93649 284358 0.4240 +93650 123041 0.4330 +93650 147409 0.4620 +93650 152816 0.6200 +93650 256764 0.5390 +93650 286077 0.4340 +93650 339403 0.4680 +93650 346007 0.4080 +93650 390928 0.5130 +93650 401138 0.6870 +93650 646625 0.4180 +93659 94115 0.9990 +93659 148003 0.4050 +93659 170589 0.4130 +93659 692312 0.4710 +93661 122258 0.4050 +93661 127391 0.4110 +93661 136319 0.7530 +93661 140625 0.5310 +93661 140735 0.5460 +93661 140873 0.4030 +93661 147700 0.5090 +93661 160419 0.4260 +93661 170370 0.4990 +93661 283417 0.4650 +93661 285643 0.4990 +93661 399693 0.4300 +93664 113146 0.4100 +93664 137075 0.4210 +93664 374877 0.5270 +93953 342977 0.4470 +93953 346673 0.5370 +93973 125476 0.9970 +93973 139741 0.4590 +93973 140625 0.4590 +93973 147841 0.4230 +93973 283899 0.9900 +93973 284382 0.4590 +93973 317754 0.4640 +93973 339416 0.4500 +93973 345651 0.4590 +93973 387338 0.4110 +93973 445582 0.4590 +93973 653269 0.4590 +93973 728378 0.4780 +93973 100288966 0.4670 +93974 117178 0.5450 +93974 123263 0.5950 +93974 123283 0.4260 +93974 124454 0.5740 +93974 126328 0.4460 +93974 163688 0.4790 +93974 219402 0.6520 +93974 267020 0.4620 +93974 374291 0.4240 +93978 112744 0.6820 +93978 114548 0.4440 +93978 115004 0.4600 +93978 160364 0.6340 +93978 338339 0.9700 +93979 114960 0.5540 +93979 440387 0.4280 +93986 120237 0.4080 +93986 128229 0.4470 +93986 146713 0.4460 +93986 147381 0.4540 +93986 152330 0.5130 +93986 161582 0.6980 +93986 170825 0.4310 +93986 221937 0.5000 +93986 259266 0.5910 +94005 114770 0.4580 +94005 128869 0.9990 +94005 153642 0.4130 +94005 284098 0.4730 +94015 375616 0.5630 +94015 388419 0.5020 +94025 113146 0.4930 +94025 114788 0.7210 +94025 114805 0.4300 +94025 117156 0.4360 +94025 117248 0.4530 +94025 118430 0.5910 +94025 120114 0.5470 +94025 129446 0.5440 +94025 140453 0.9270 +94025 140885 0.4850 +94025 143662 0.9050 +94025 154664 0.4550 +94025 169355 0.4670 +94025 192134 0.5130 +94025 200958 0.8650 +94025 256435 0.4180 +94025 375790 0.4090 +94025 394263 0.8330 +94025 727897 0.8670 +94025 100507679 0.5400 +94026 140432 0.4180 +94026 285955 0.4120 +94026 442191 0.5010 +94026 100101267 0.9000 +94027 692312 0.5260 +94030 138639 0.4510 +94030 140679 0.4390 +94030 145581 0.4290 +94030 347730 0.4370 +94031 100526773 0.4740 +94032 163688 0.6480 +94032 440279 0.4140 +94033 257202 0.4460 +94033 493869 0.4530 +94033 114515518 0.5280 +94039 129685 0.4720 +94039 133874 0.4330 +94039 170959 0.4360 +94039 374887 0.5250 +94039 729991 0.4090 +94056 253260 0.4380 +94056 283635 0.4370 +94059 114823 0.6210 +94059 138199 0.4650 +94059 148170 0.6440 +94059 255104 0.4230 +94059 404636 0.4420 +94059 441864 0.4120 +94081 118980 0.5930 +94081 119559 0.5220 +94081 120892 0.5180 +94081 123263 0.4030 +94081 414301 0.5500 +94086 116835 0.4430 +94086 122664 0.4170 +94086 126393 0.6860 +94086 202052 0.5410 +94101 94103 0.5580 +94101 150709 0.6140 +94101 165679 0.7820 +94101 171546 0.8280 +94101 401647 0.6620 +94101 100131211 0.4790 +94103 124626 0.9360 +94103 149628 0.5070 +94103 163486 0.6800 +94103 165679 0.9350 +94103 171546 0.9980 +94103 222256 0.6270 +94103 284110 0.8040 +94103 387129 0.7170 +94103 401647 0.6080 +94103 100505591 0.6050 +94104 118881 0.4890 +94104 140890 0.4440 +94104 147798 0.4600 +94104 219793 0.4850 +94104 222894 0.4020 +94107 115939 0.6280 +94115 148003 0.5170 +94115 170626 0.4160 +94120 137492 0.4190 +94120 201294 0.5470 +94120 201799 0.5940 +94120 286826 0.4770 +94121 135228 0.4030 +94121 136319 0.4420 +94121 201294 0.5780 +94122 201294 0.5710 +94122 347404 0.4300 +94134 171177 0.6260 +94134 221687 0.4140 +94137 94233 0.4020 +94137 124590 0.4140 +94137 130557 0.4370 +94137 132884 0.4760 +94137 145226 0.4880 +94137 157657 0.6630 +94137 157680 0.4170 +94137 169522 0.4860 +94137 203074 0.4470 +94137 254173 0.4100 +94137 346007 0.6440 +94137 375298 0.5220 +94137 388697 0.4240 +94137 388939 0.6520 +94160 254187 0.5220 +94160 282770 0.5500 +94160 340273 0.4330 +94160 390162 0.4160 +94160 401024 0.4710 +94160 114483834 0.5370 +94233 115557 0.5210 +94233 220202 0.4630 +94233 246213 0.4080 +94233 338917 0.4710 +94233 100423062 0.6270 +94234 135112 0.4120 +94234 144501 0.4150 +94234 145873 0.4450 +94234 653145 0.4080 +94235 115557 0.4990 +94235 117579 0.5040 +94235 120066 0.4220 +94235 121129 0.4030 +94235 126006 0.4200 +94235 129521 0.4990 +94235 135250 0.4650 +94235 146850 0.6510 +94235 149699 0.4040 +94235 196883 0.6710 +94235 221391 0.5410 +94235 346562 0.6790 +94235 387129 0.5410 +94235 390093 0.4600 +94235 390321 0.4410 +94235 390445 0.4220 +94235 393046 0.4570 +94235 431704 0.5270 +94235 594857 0.4990 +94235 105372280 0.5400 +94239 121504 0.9490 +94239 121536 0.5450 +94239 126961 0.5160 +94239 128312 0.6980 +94239 132243 0.5290 +94239 149345 0.4690 +94239 158983 0.4040 +94239 192669 0.6230 +94239 192670 0.5150 +94239 221120 0.4220 +94239 221613 0.6990 +94239 221830 0.5010 +94239 255626 0.7090 +94239 256126 0.5030 +94239 266812 0.5850 +94239 283149 0.4990 +94239 317772 0.4980 +94239 333932 0.4850 +94239 340096 0.6280 +94239 387082 0.4720 +94239 387893 0.6010 +94239 388951 0.4080 +94239 391769 0.6210 +94239 440093 0.6690 +94239 440686 0.6680 +94239 440689 0.7990 +94239 474381 0.4400 +94239 474382 0.6450 +94239 554313 0.9500 +94239 644186 0.4990 +94239 646817 0.4800 +94239 653604 0.8550 +94239 728132 0.4080 +94239 728137 0.4080 +94239 728395 0.4080 +94239 728403 0.4080 +94239 100289087 0.4080 +94239 115482686 0.4060 +94240 115361 0.7670 +94240 115362 0.6980 +94240 116071 0.4060 +94240 129607 0.8320 +94240 151636 0.6340 +94240 219285 0.8900 +94240 219623 0.4900 +94241 169026 0.4990 +94241 221895 0.5340 +94274 103910 0.6390 +94274 163688 0.5410 +95681 112752 0.4120 +95681 114960 0.4440 +95681 115106 0.5360 +95681 117177 0.5190 +95681 124989 0.4200 +95681 130560 0.4580 +95681 136332 0.4500 +95681 139599 0.4680 +95681 146779 0.4580 +95681 147965 0.4550 +95681 148281 0.4120 +95681 153241 0.4210 +95681 200894 0.6390 +95681 284076 0.8600 +95681 374654 0.6230 +95681 388595 0.4910 +95681 728642 0.4990 +96459 116835 0.4200 +96459 118461 0.4200 +96459 127124 0.4410 +96459 134266 0.4540 +96459 140775 0.6340 +96459 144577 0.4620 +96459 153129 0.5050 +96459 154743 0.4100 +96459 201163 0.9990 +96459 219855 0.4760 +96459 245972 0.4290 +96459 245973 0.4240 +96459 259217 0.4200 +96459 339416 0.4200 +96459 375616 0.6190 +96459 388633 0.4200 +96459 389541 0.6370 +96626 729540 0.5850 +96626 107282092 0.4350 +96764 116519 0.4110 +96764 283635 0.4220 +96764 392517 0.4980 +96764 101669762 0.4580 +103910 140465 0.9740 +103910 340156 0.9200 +103910 399687 0.8710 +103910 768239 0.5040 +112398 112399 0.9540 +112398 440093 0.9170 +112398 440686 0.9170 +112398 653604 0.9170 +112399 126374 0.5460 +112399 143471 0.4090 +112399 339448 0.4830 +112399 353322 0.4100 +112399 391104 0.4160 +112399 440093 0.7520 +112399 440686 0.7520 +112399 653604 0.7520 +112464 284119 0.8940 +112464 347273 0.5780 +112476 112755 0.6920 +112476 124446 0.4660 +112476 127833 0.5930 +112476 132320 0.4280 +112476 146378 0.5140 +112476 253558 0.4230 +112476 253980 0.5970 +112476 253982 0.6190 +112476 256472 0.4660 +112476 283897 0.5070 +112476 283899 0.5130 +112476 285368 0.5170 +112476 343641 0.4810 +112476 374393 0.4040 +112476 375567 0.4600 +112476 402117 0.5050 +112476 414301 0.5040 +112476 646658 0.4380 +112479 124411 0.4060 +112479 161829 0.4470 +112479 403273 0.4180 +112483 196743 0.8950 +112487 123283 0.4690 +112487 285521 0.4520 +112487 643664 0.4320 +112487 653240 0.4180 +112487 728224 0.4310 +112487 112267897 0.5070 +112495 146540 0.4320 +112495 171568 0.5070 +112495 283767 0.5730 +112495 643699 0.5180 +112495 727909 0.5300 +112495 728047 0.5420 +112574 112936 0.4040 +112574 115548 0.6210 +112574 254122 0.5710 +112574 257364 0.9230 +112574 339145 0.4200 +112609 285761 0.4400 +112611 128977 0.4630 +112611 201965 0.4820 +112611 206412 0.4800 +112616 113540 0.9460 +112616 116173 0.7710 +112616 123920 0.8960 +112616 134288 0.4870 +112616 146223 0.4260 +112616 146225 0.9460 +112616 152189 0.9820 +112703 122664 0.4250 +112703 127255 0.4340 +112703 145942 0.4180 +112703 163049 0.4180 +112703 196477 0.5070 +112703 200010 0.5330 +112703 254956 0.5190 +112703 284361 0.5710 +112703 339669 0.5070 +112703 401089 0.5780 +112703 440955 0.6080 +112703 441308 0.5730 +112703 727800 0.4710 +112703 100132386 0.4460 +112714 113457 0.4330 +112714 128866 0.4990 +112714 136332 0.5070 +112714 150465 0.6230 +112714 151651 0.4520 +112714 153562 0.9000 +112714 197335 0.6530 +112714 200014 0.4990 +112714 203068 0.9780 +112714 221496 0.5470 +112714 255394 0.6410 +112714 260334 0.7560 +112714 338382 0.6610 +112714 339416 0.4280 +112714 347688 0.9630 +112714 347733 0.9700 +112714 374969 0.4490 +112724 112812 0.4670 +112724 163033 0.4420 +112724 201514 0.4140 +112724 219487 0.4160 +112724 222068 0.6440 +112744 126206 0.4520 +112744 130120 0.4170 +112744 132014 0.9660 +112744 149233 0.9240 +112744 282616 0.4030 +112744 386653 0.5930 +112752 119710 0.9430 +112752 123228 0.4260 +112752 129880 0.5340 +112752 132884 0.5280 +112752 146057 0.4720 +112752 150737 0.8190 +112752 199223 0.6410 +112752 200894 0.4530 +112752 255758 0.6280 +112755 115827 0.4840 +112755 116841 0.8170 +112755 123207 0.4390 +112755 127833 0.6550 +112755 130013 0.5180 +112755 134957 0.9170 +112755 143187 0.6640 +112755 203062 0.6230 +112755 203190 0.5520 +112755 339302 0.5970 +112755 415117 0.5730 +112755 594855 0.6430 +112770 166012 0.4560 +112770 390714 0.4020 +112770 441925 0.4570 +112770 102723407 0.4020 +112802 121391 0.8600 +112802 140807 0.5320 +112802 144501 0.4230 +112802 147183 0.8750 +112802 147409 0.5710 +112802 149420 0.5470 +112802 162605 0.4220 +112802 196374 0.4310 +112802 254773 0.4730 +112802 286887 0.4240 +112802 319101 0.4970 +112802 337878 0.4450 +112802 337879 0.4970 +112802 337880 0.8520 +112802 337882 0.4030 +112802 338785 0.5070 +112802 339779 0.4200 +112802 340419 0.9100 +112802 342574 0.8690 +112802 344167 0.4570 +112802 353288 0.4280 +112802 374454 0.4730 +112802 728224 0.4790 +112802 728318 0.4200 +112802 100132476 0.7740 +112812 114789 0.4060 +112812 115098 0.4200 +112812 115817 0.4630 +112812 119391 0.4990 +112812 122961 0.8560 +112812 128240 0.5730 +112812 139221 0.5910 +112812 142680 0.4630 +112812 145226 0.4630 +112812 147015 0.4680 +112812 150209 0.6060 +112812 150274 0.7270 +112812 157506 0.4630 +112812 161779 0.4640 +112812 195814 0.4630 +112812 200205 0.8050 +112812 201140 0.4630 +112812 207063 0.4680 +112812 254042 0.7190 +112812 283985 0.8680 +112812 284427 0.4060 +112812 317749 0.4680 +112812 339122 0.4250 +112812 345275 0.4640 +112812 374291 0.6130 +112812 374875 0.4710 +112812 387787 0.4180 +112812 388962 0.9000 +112812 388963 0.4630 +112812 389434 0.8400 +112812 401409 0.4250 +112812 493856 0.5710 +112812 552900 0.7530 +112812 654483 0.7430 +112812 728317 0.5910 +112812 100125288 0.4350 +112817 137362 0.9110 +112817 142680 0.4280 +112817 149461 0.4030 +112817 100130705 0.5890 +112840 146227 0.4380 +112840 149473 0.4980 +112840 283638 0.4370 +112840 388946 0.4780 +112840 390790 0.4300 +112849 122945 0.5490 +112849 123688 0.4800 +112849 130535 0.4810 +112849 200916 0.4790 +112849 222642 0.5360 +112849 283578 0.5500 +112858 115939 0.5450 +112858 121601 0.4680 +112858 348995 0.8190 +112869 117143 0.9970 +112869 126961 0.9200 +112869 127002 0.8230 +112869 127687 0.5580 +112869 158880 0.8790 +112869 195828 0.4390 +112869 221302 0.5280 +112869 222255 0.6000 +112869 333932 0.9200 +112869 374395 0.7800 +112869 378807 0.4200 +112869 389856 0.8960 +112869 440093 0.9690 +112869 440686 0.9690 +112869 653604 0.9810 +112869 100287513 0.5970 +112885 148479 0.5860 +112885 283248 0.4550 +112885 553158 0.4770 +112936 114815 0.5480 +112936 139411 0.4510 +112936 150684 0.4850 +112936 169166 0.4230 +112936 221424 0.4370 +112936 253725 0.4950 +112936 254122 0.6280 +112936 257160 0.4640 +112936 338382 0.4200 +112936 387680 0.5260 +112936 392517 0.4190 +112936 401466 0.4210 +112936 401548 0.5690 +112936 100287171 0.5180 +112937 160065 0.5800 +112937 389383 0.5070 +112937 399967 0.5900 +112937 408187 0.4810 +112937 440163 0.4150 +112937 100169851 0.6260 +112939 126208 0.4250 +112942 124152 0.4170 +112942 145483 0.6210 +112942 152185 0.4550 +112942 153643 0.5420 +112942 160762 0.5100 +112942 200894 0.4060 +112942 257236 0.4530 +112950 116931 0.7400 +112950 121504 0.8000 +112950 126069 0.4210 +112950 126961 0.8000 +112950 129685 0.8550 +112950 133522 0.9000 +112950 157570 0.5100 +112950 256643 0.5400 +112950 333932 0.8000 +112950 400569 0.9990 +112950 404672 0.8250 +112950 554313 0.8000 +112950 653604 0.8070 +112970 118672 0.6930 +112970 285172 0.5200 +112970 285381 0.8090 +112970 374395 0.4880 +113000 113179 0.4680 +113000 115416 0.7260 +113000 115708 0.5060 +113000 124402 0.4280 +113000 126789 0.9090 +113000 142940 0.6690 +113000 150223 0.4410 +113000 150962 0.7430 +113000 219927 0.6810 +113000 255783 0.4340 +113000 285367 0.8090 +113000 348180 0.4020 +113026 138429 0.7320 +113026 139189 0.6660 +113026 144100 0.4190 +113026 160851 0.7110 +113026 200576 0.9000 +113026 219621 0.6730 +113026 253430 0.9120 +113091 117579 0.4870 +113091 122876 0.4130 +113091 170589 0.4090 +113091 283933 0.4340 +113091 285343 0.5090 +113091 594857 0.5160 +113115 113130 0.5180 +113115 157570 0.4330 +113115 201725 0.4170 +113115 221150 0.5050 +113115 259266 0.4260 +113115 337974 0.4310 +113115 387103 0.4540 +113115 653820 0.4040 +113115 728833 0.4750 +113130 114799 0.7250 +113130 116028 0.4770 +113130 144455 0.5120 +113130 146909 0.5910 +113130 146956 0.4900 +113130 147841 0.6550 +113130 150468 0.8480 +113130 151246 0.7810 +113130 151648 0.9320 +113130 157313 0.8670 +113130 157570 0.7770 +113130 220042 0.5040 +113130 220134 0.8130 +113130 221150 0.6530 +113130 256126 0.5180 +113130 259266 0.7460 +113130 387103 0.6050 +113130 642636 0.4440 +113146 114788 0.4170 +113146 137075 0.4180 +113146 140453 0.4730 +113146 155038 0.4010 +113146 169522 0.4500 +113146 259307 0.4070 +113146 388015 0.4340 +113146 100287178 0.4270 +113174 389072 0.4060 +113174 401667 0.4180 +113177 121504 0.4010 +113177 124912 0.4330 +113177 126123 0.8240 +113177 146279 0.4130 +113177 203102 0.5350 +113177 246777 0.4950 +113177 256710 0.4090 +113177 284359 0.8180 +113177 554313 0.4010 +113177 645121 0.4210 +113177 729515 0.4140 +113177 100129669 0.8280 +113177 100131187 0.4010 +113178 113179 0.4460 +113178 152002 0.4640 +113178 400451 0.4770 +113179 115708 0.6930 +113179 129607 0.5240 +113179 131965 0.4080 +113179 132612 0.4400 +113179 134637 0.9990 +113179 139596 0.7700 +113179 151531 0.4860 +113179 161931 0.5040 +113179 162417 0.6890 +113179 339175 0.4610 +113179 348180 0.4930 +113179 389434 0.4400 +113179 403314 0.4180 +113189 124583 0.4280 +113189 126792 0.7150 +113189 135152 0.4390 +113189 170384 0.6220 +113189 442038 0.6040 +113230 125875 0.6000 +113230 126353 0.5990 +113230 255762 0.6230 +113230 445815 0.4990 +113235 114571 0.4230 +113235 148738 0.4180 +113235 200895 0.6260 +113235 390243 0.5870 +113246 116988 0.4590 +113246 171568 0.6650 +113246 375790 0.4310 +113251 253943 0.4070 +113263 390260 0.4470 +113263 729852 0.4790 +113263 104909134 0.4480 +113277 153643 0.4420 +113277 391742 0.5720 +113277 391746 0.6440 +113277 391747 0.6440 +113277 646066 0.6440 +113277 646103 0.6440 +113277 102723526 0.5410 +113277 112488736 0.6440 +113277 112488737 0.6440 +113277 112488738 0.6440 +113278 117531 0.4420 +113278 219736 0.4120 +113278 221830 0.4280 +113278 222643 0.4010 +113278 344752 0.4860 +113278 375611 0.4260 +113402 114569 0.4460 +113402 127845 0.5190 +113402 131583 0.4960 +113402 159091 0.4340 +113402 168090 0.5930 +113402 285800 0.6510 +113419 122046 0.5060 +113419 147407 0.4470 +113419 158248 0.5360 +113419 220108 0.4180 +113419 254158 0.4450 +113419 359710 0.4490 +113419 653437 0.4200 +113444 115209 0.4150 +113444 116835 0.4330 +113444 118461 0.4330 +113444 130576 0.4070 +113444 134266 0.5200 +113444 144402 0.4180 +113444 149345 0.6490 +113444 154790 0.4760 +113444 197021 0.4890 +113444 203245 0.5660 +113444 222389 0.6150 +113444 259217 0.4330 +113444 266743 0.6820 +113444 284697 0.4640 +113444 285343 0.4590 +113444 338599 0.4100 +113444 339416 0.4800 +113444 388633 0.4330 +113444 388951 0.4550 +113444 100526794 0.5650 +113451 123688 0.4810 +113451 137362 0.5030 +113451 148811 0.4190 +113451 162417 0.5510 +113451 196743 0.7040 +113451 390110 0.4710 +113451 100526760 0.4190 +113452 124751 0.4110 +113452 162461 0.4480 +113452 440515 0.4050 +113452 728492 0.4040 +113457 128866 0.4990 +113457 136332 0.5070 +113457 150465 0.6400 +113457 151651 0.4500 +113457 153562 0.9000 +113457 197335 0.6530 +113457 200014 0.4990 +113457 203068 0.9780 +113457 221496 0.5470 +113457 255394 0.4290 +113457 260334 0.7550 +113457 338382 0.6610 +113457 339416 0.4280 +113457 347688 0.9630 +113457 347733 0.9620 +113457 374969 0.4490 +113457 389799 0.4290 +113510 254394 0.6350 +113510 339965 0.4690 +113510 353497 0.9930 +113540 116173 0.8490 +113540 123920 0.9750 +113540 146223 0.9680 +113540 146225 0.5360 +113540 152189 0.7540 +113612 123606 0.4600 +113612 123745 0.6970 +113612 126410 0.4690 +113612 132949 0.5070 +113612 137492 0.4780 +113612 151056 0.7010 +113612 199974 0.4810 +113612 255189 0.7270 +113612 260293 0.5280 +113612 283748 0.6520 +113612 284541 0.9450 +113612 285440 0.4650 +113612 391013 0.6550 +113612 100137049 0.6640 +113622 132228 0.5020 +113622 143384 0.4020 +113655 126321 0.4210 +113655 136306 0.5110 +113655 162387 0.5090 +113655 201305 0.5660 +113655 203054 0.6490 +113655 221264 0.4890 +113655 388931 0.5600 +113655 441150 0.4190 +113655 441381 0.5590 +113655 727957 0.4960 +113675 137872 0.5340 +113675 160287 0.8200 +113675 401494 0.4340 +113730 441308 0.4160 +113730 645104 0.4900 +113746 122258 0.4560 +113746 135138 0.5220 +113746 146279 0.4200 +113746 146852 0.8390 +113746 219670 0.4460 +113746 219938 0.5430 +113791 389257 0.4470 +113802 121355 0.6090 +113802 122402 0.7960 +113802 129530 0.4790 +113802 131965 0.4470 +113802 132612 0.4280 +113802 136991 0.6840 +113802 143689 0.8890 +113802 144233 0.4300 +113802 154197 0.6860 +113802 158234 0.4090 +113802 161829 0.4210 +113802 161931 0.4730 +113802 163589 0.4720 +113802 192669 0.6480 +113802 192670 0.6480 +113802 201164 0.7320 +113802 221400 0.5710 +113802 284131 0.5470 +113802 345630 0.4630 +113802 374768 0.4590 +113802 440822 0.6190 +113802 100125288 0.4470 +113828 115950 0.4690 +113828 147965 0.4060 +113828 148198 0.4470 +113829 222553 0.4730 +113829 340146 0.5700 +113829 347734 0.4420 +113829 109703458 0.4350 +113878 222546 0.8830 +114026 199699 0.4320 +114026 283847 0.4550 +114026 441234 0.7850 +114034 116461 0.4940 +114034 154197 0.4100 +114034 246175 0.4550 +114034 283989 0.7100 +114088 135892 0.4090 +114088 415117 0.4640 +114088 653361 0.4120 +114112 118672 0.4130 +114112 131669 0.4760 +114112 137682 0.4890 +114112 140606 0.7390 +114112 140809 0.4390 +114112 200205 0.5230 +114112 200895 0.4990 +114112 257202 0.8320 +114112 280636 0.7820 +114112 340390 0.4540 +114112 347736 0.4050 +114112 348303 0.7370 +114112 441024 0.5020 +114112 493869 0.8050 +114112 730249 0.4280 +114131 169026 0.4820 +114131 257177 0.5920 +114131 104909134 0.9770 +114132 131450 0.4700 +114132 284266 0.6430 +114132 100049587 0.4950 +114134 115207 0.4150 +114134 115584 0.5950 +114134 144195 0.4070 +114134 153396 0.4290 +114134 155184 0.4320 +114134 166348 0.4520 +114134 283464 0.4010 +114294 120776 0.4500 +114294 146198 0.4080 +114294 151742 0.8910 +114294 165324 0.9940 +114294 257194 0.4120 +114294 548596 0.4840 +114327 115948 0.5440 +114327 118491 0.4220 +114327 127003 0.8350 +114327 129881 0.8290 +114327 133015 0.6270 +114327 134121 0.8130 +114327 135138 0.9660 +114327 138162 0.8540 +114327 138255 0.8260 +114327 145788 0.8500 +114327 146279 0.4960 +114327 146845 0.9180 +114327 150483 0.8650 +114327 151651 0.9090 +114327 158787 0.4090 +114327 160335 0.4010 +114327 160762 0.5010 +114327 161502 0.8850 +114327 164395 0.4500 +114327 197335 0.9090 +114327 200844 0.5110 +114327 203068 0.4040 +114327 219670 0.9210 +114327 219681 0.4840 +114327 220136 0.8350 +114327 257177 0.8680 +114327 284013 0.5080 +114327 339778 0.8000 +114327 339829 0.5030 +114327 345895 0.5500 +114327 388701 0.8170 +114327 389799 0.8130 +114327 440585 0.8130 +114327 730112 0.8420 +114327 100128569 0.7050 +114335 114336 0.4130 +114335 201514 0.4100 +114335 646862 0.4740 +114336 146852 0.4460 +114548 114609 0.4390 +114548 115004 0.7220 +114548 115362 0.8060 +114548 115560 0.4590 +114548 136991 0.5320 +114548 137902 0.4470 +114548 140609 0.9990 +114548 147945 0.8590 +114548 148266 0.4620 +114548 171389 0.9980 +114548 197259 0.9590 +114548 199713 0.9840 +114548 257202 0.4110 +114548 260434 0.8120 +114548 284110 0.6520 +114548 284390 0.4590 +114548 338321 0.9440 +114548 338442 0.4040 +114548 345611 0.5990 +114548 373509 0.4030 +114548 493869 0.4120 +114548 494513 0.4060 +114548 100289462 0.4430 +114548 100506658 0.4020 +114569 151354 0.4060 +114569 153562 0.4250 +114569 161291 0.4070 +114569 100506658 0.6440 +114571 146802 0.7670 +114571 159963 0.4620 +114571 160728 0.4100 +114571 220963 0.4120 +114571 345274 0.5050 +114571 353189 0.6900 +114571 387775 0.4480 +114609 148022 0.9080 +114609 257397 0.4710 +114609 345456 0.4930 +114609 353376 0.9430 +114609 375189 0.4970 +114609 401262 0.5760 +114609 730249 0.4770 +114609 100302736 0.8210 +114625 116449 0.4300 +114625 132949 0.4840 +114625 143662 0.5410 +114625 729665 0.4520 +114659 728741 0.4060 +114757 192668 0.4160 +114757 257202 0.6220 +114757 373156 0.4650 +114757 414301 0.6750 +114757 493869 0.6180 +114757 768206 0.4140 +114770 114771 0.4670 +114771 128488 0.4540 +114771 196374 0.4630 +114771 245927 0.4210 +114771 245929 0.4450 +114771 254240 0.4560 +114771 353131 0.7380 +114771 353143 0.7670 +114771 353144 0.7360 +114781 116541 0.4030 +114781 124995 0.4630 +114781 126402 0.4160 +114781 148022 0.4220 +114781 157310 0.4920 +114781 167465 0.4260 +114781 253980 0.4360 +114781 345051 0.4480 +114781 353376 0.4080 +114781 390598 0.8840 +114781 100302736 0.4080 +114781 100526842 0.4700 +114784 129684 0.4340 +114785 150684 0.4970 +114785 171023 0.6890 +114785 221613 0.4530 +114785 221656 0.7330 +114785 221937 0.6700 +114785 317772 0.4530 +114786 137695 0.7900 +114786 195814 0.5360 +114786 286410 0.5310 +114786 389015 0.4530 +114787 152940 0.4820 +114787 285513 0.4160 +114787 493860 0.4070 +114788 120114 0.6780 +114788 129446 0.6290 +114788 140453 0.5180 +114788 342979 0.4390 +114788 392255 0.6430 +114788 401024 0.4030 +114789 119391 0.4360 +114789 139221 0.5780 +114789 163688 0.5730 +114789 221154 0.4960 +114789 374291 0.7620 +114789 493856 0.4320 +114789 728317 0.5780 +114790 162540 0.4610 +114790 203062 0.4560 +114790 100133941 0.4260 +114791 121441 0.9880 +114791 123606 0.9960 +114791 259266 0.4600 +114791 282991 0.9000 +114791 375337 0.4280 +114791 440145 0.9990 +114791 653784 0.9860 +114792 115749 0.4180 +114792 127254 0.4640 +114792 147670 0.4590 +114792 152065 0.4750 +114792 195977 0.4520 +114792 253714 0.5960 +114792 282991 0.4300 +114792 493901 0.4370 +114793 127247 0.4530 +114793 128239 0.4560 +114793 151188 0.6500 +114793 160335 0.4030 +114793 283373 0.4620 +114793 345456 0.6270 +114793 375189 0.6410 +114794 284827 0.4510 +114794 285382 0.4140 +114795 222553 0.4080 +114798 122769 0.4610 +114798 150350 0.4800 +114798 153770 0.4110 +114798 170712 0.4190 +114798 347730 0.4140 +114798 387509 0.4620 +114799 114803 0.4820 +114799 124599 0.4360 +114799 138050 0.8030 +114799 151648 0.5560 +114799 157570 0.7210 +114799 170960 0.4420 +114799 339983 0.5300 +114799 440093 0.4560 +114799 440686 0.4560 +114799 442038 0.5830 +114799 574537 0.4410 +114799 642636 0.6600 +114799 653604 0.4560 +114800 122740 0.4120 +114800 317762 0.4520 +114800 390437 0.4420 +114801 114984 0.4020 +114801 123036 0.4500 +114801 154075 0.4410 +114801 284013 0.4650 +114801 645832 0.4750 +114803 114987 0.4330 +114803 115209 0.4200 +114803 122706 0.5610 +114803 124739 0.4690 +114803 126119 0.4590 +114803 128312 0.5400 +114803 134510 0.6330 +114803 138715 0.4260 +114803 139562 0.5420 +114803 143384 0.4840 +114803 143471 0.5200 +114803 149041 0.6180 +114803 158983 0.5400 +114803 163778 0.4130 +114803 166378 0.4030 +114803 169044 0.5080 +114803 196528 0.4520 +114803 197131 0.4920 +114803 219333 0.5320 +114803 220213 0.5140 +114803 221302 0.6180 +114803 221613 0.5750 +114803 254065 0.4550 +114803 255626 0.5400 +114803 256356 0.4670 +114803 257218 0.5340 +114803 284018 0.5880 +114803 286436 0.5400 +114803 317772 0.5750 +114803 345651 0.5280 +114803 373509 0.5530 +114803 387640 0.5880 +114803 425054 0.5880 +114803 440093 0.4330 +114803 440686 0.4330 +114803 440689 0.5400 +114803 653519 0.4050 +114803 653604 0.4330 +114803 728689 0.4320 +114803 100529239 0.4820 +114803 100652824 0.6330 +114803 114483833 0.5400 +114804 146862 0.4340 +114804 154075 0.4530 +114804 157567 0.4870 +114804 159091 0.4240 +114804 729991 0.4780 +114804 730094 0.6150 +114805 118430 0.4240 +114805 139411 0.5440 +114805 140453 0.4090 +114805 143662 0.4240 +114805 200958 0.4570 +114805 222537 0.4910 +114805 245937 0.4580 +114805 254170 0.4180 +114805 727897 0.4510 +114815 131368 0.4250 +114815 143471 0.4100 +114815 144348 0.4590 +114815 152330 0.5500 +114815 221303 0.4440 +114815 253559 0.4080 +114815 266722 0.4300 +114815 339559 0.6050 +114815 442117 0.4330 +114818 116236 0.4630 +114818 102723502 0.4390 +114818 102724631 0.4270 +114821 124751 0.4240 +114821 140691 0.4310 +114821 222696 0.6750 +114821 252884 0.8290 +114821 267002 0.4070 +114821 387032 0.8170 +114821 391123 0.4020 +114822 128239 0.4220 +114822 128866 0.5030 +114822 148362 0.4330 +114822 150483 0.5270 +114822 153769 0.4800 +114822 255743 0.4050 +114822 256329 0.5010 +114822 727764 0.4610 +114822 100131755 0.4620 +114823 148170 0.6720 +114823 284415 0.4770 +114823 353514 0.4100 +114823 728763 0.4320 +114824 128488 0.5300 +114824 284307 0.5660 +114824 340526 0.4210 +114824 541465 0.4180 +114824 653121 0.5340 +114825 162979 0.4890 +114825 388272 0.5070 +114826 129685 0.4380 +114826 146760 0.4870 +114826 150572 0.4540 +114826 169841 0.4920 +114827 126755 0.4330 +114827 149465 0.4200 +114827 200162 0.4040 +114827 219681 0.4780 +114827 220382 0.4510 +114827 282775 0.4520 +114827 341208 0.4230 +114827 100287898 0.4830 +114836 115352 0.5330 +114836 117157 0.9730 +114836 149628 0.4870 +114836 151888 0.5650 +114836 201633 0.6460 +114836 259197 0.9140 +114836 374383 0.4230 +114876 158747 0.9610 +114876 644145 0.5060 +114879 114881 0.4120 +114879 114882 0.7540 +114879 114883 0.5160 +114879 118813 0.6460 +114879 118987 0.6220 +114879 158747 0.5180 +114879 196996 0.4370 +114879 375346 0.4210 +114879 653519 0.6300 +114880 114881 0.5250 +114880 114883 0.4030 +114880 116541 0.4640 +114880 154664 0.4250 +114880 374378 0.4380 +114880 494513 0.5680 +114881 114882 0.4070 +114881 114883 0.5340 +114881 114885 0.4030 +114881 285971 0.4070 +114881 441250 0.5760 +114882 118987 0.5420 +114882 153364 0.4730 +114882 158747 0.4850 +114882 196996 0.4020 +114882 653519 0.6770 +114883 114884 0.4730 +114883 114885 0.9940 +114883 202559 0.4130 +114883 389799 0.4450 +114884 114885 0.9940 +114884 116496 0.4790 +114884 118788 0.4300 +114884 118932 0.4080 +114884 192111 0.6250 +114884 201595 0.4030 +114884 344787 0.5430 +114885 157769 0.4610 +114885 253959 0.4340 +114885 339291 0.4090 +114897 114904 0.7940 +114897 151176 0.6240 +114897 165257 0.4550 +114897 338761 0.4570 +114897 388581 0.5410 +114897 389941 0.4650 +114898 221468 0.4760 +114898 388581 0.4460 +114898 121725057 0.5050 +114899 151176 0.4780 +114899 388581 0.6030 +114900 170961 0.5590 +114900 284018 0.4280 +114900 388581 0.4060 +114900 399888 0.5490 +114902 284612 0.4530 +114904 117289 0.6390 +114904 345611 0.4220 +114904 388581 0.5180 +114905 339230 0.4720 +114905 388581 0.5460 +114905 728276 0.5450 +114907 117159 0.4170 +114907 122416 0.4410 +114907 123879 0.5050 +114907 133522 0.5790 +114907 137902 0.4210 +114907 140456 0.5160 +114907 200845 0.4190 +114907 283807 0.4590 +114908 115416 0.4070 +114908 164237 0.4020 +114908 219927 0.4320 +114908 317749 0.4280 +114926 133383 0.4320 +114926 219793 0.4350 +114926 219858 0.5710 +114926 221491 0.5070 +114926 390271 0.5280 +114926 100132963 0.4320 +114928 128344 0.8050 +114928 203523 0.4480 +114932 139422 0.5050 +114932 162427 0.4100 +114932 375341 0.5330 +114932 653075 0.4050 +114932 653125 0.4470 +114932 102723737 0.4320 +114960 136259 0.4030 +114960 136263 0.5720 +114971 131118 0.4320 +114971 132001 0.7770 +114971 253558 0.4100 +114984 124411 0.4730 +114984 146439 0.4860 +114984 283999 0.4470 +114987 115098 0.4220 +114987 116832 0.7710 +114987 124454 0.6110 +114987 126248 0.4950 +114987 126402 0.8410 +114987 140032 0.8560 +114987 140801 0.8670 +114987 143244 0.8210 +114987 143630 0.4480 +114987 151525 0.5800 +114987 164153 0.5210 +114987 169522 0.4460 +114987 170371 0.4450 +114987 170850 0.4460 +114987 200916 0.9190 +114987 254268 0.8490 +114987 255308 0.5610 +114987 283518 0.4510 +114987 285855 0.8090 +114987 342132 0.4830 +114987 342538 0.4900 +114987 343068 0.5470 +114987 343070 0.5470 +114987 347487 0.8930 +114987 349075 0.4840 +114987 349136 0.4830 +114987 387129 0.8090 +114987 388531 0.4890 +114987 390928 0.4230 +114987 390999 0.5470 +114987 391002 0.5470 +114987 400735 0.5470 +114987 400736 0.5470 +114987 440560 0.5470 +114987 440561 0.5470 +114987 441873 0.5470 +114987 641776 0.6470 +114987 642489 0.4620 +114987 643909 0.6470 +114987 645051 0.6260 +114987 645073 0.6260 +114987 645359 0.5470 +114987 653619 0.5470 +114987 728524 0.6470 +114987 728689 0.8240 +114987 729396 0.6260 +114987 729422 0.6260 +114987 729428 0.6260 +114987 729431 0.6260 +114987 729442 0.6260 +114987 729447 0.6260 +114987 729528 0.5470 +114987 100008586 0.6260 +114987 100132399 0.6260 +114987 100287482 0.8900 +114987 100287718 0.4710 +114987 100505478 0.8070 +114987 100507607 0.5010 +114987 100526842 0.8550 +114987 100529097 0.8290 +114987 100529239 0.9160 +114987 100996746 0.6470 +114987 101929983 0.5470 +114987 102724473 0.6260 +114987 105180390 0.6470 +114987 105180391 0.6470 +114990 116064 0.4030 +114990 339291 0.4410 +114990 376132 0.4630 +114990 390205 0.4310 +114990 474354 0.4510 +114991 115426 0.4640 +114991 146542 0.4110 +114991 157807 0.5120 +114991 162461 0.4910 +114991 256646 0.5350 +115004 115362 0.4120 +115004 121504 0.8100 +115004 126961 0.8120 +115004 149628 0.4660 +115004 151636 0.5080 +115004 170506 0.5910 +115004 197259 0.4320 +115004 282618 0.4560 +115004 333932 0.8120 +115004 338339 0.4210 +115004 338376 0.4180 +115004 340061 0.9910 +115004 389856 0.4490 +115004 405754 0.4910 +115004 440093 0.4860 +115004 440738 0.4700 +115004 554313 0.8100 +115004 653604 0.8630 +115004 723790 0.9050 +115019 116369 0.5700 +115019 284129 0.4270 +115024 122481 0.6540 +115024 122622 0.9010 +115024 124583 0.6770 +115024 129607 0.9040 +115024 131870 0.9040 +115024 139596 0.9000 +115024 151531 0.9000 +115024 158067 0.6680 +115024 221264 0.6690 +115024 377841 0.6810 +115024 100526794 0.9510 +115024 102157402 0.6500 +115098 140801 0.8770 +115098 145226 0.5060 +115098 256364 0.4690 +115098 375444 0.7480 +115098 642446 0.4340 +115098 645142 0.4720 +115106 117177 0.4990 +115106 121441 0.8320 +115106 140691 0.6570 +115106 143187 0.4300 +115106 203068 0.5900 +115106 256364 0.4280 +115106 347240 0.5410 +115106 440145 0.4580 +115106 494470 0.4170 +115106 644186 0.5120 +115106 728642 0.5180 +115111 153201 0.4060 +115111 284129 0.4260 +115111 389434 0.6790 +115111 390191 0.4340 +115111 405753 0.5590 +115123 162333 0.6270 +115123 389320 0.5730 +115123 401207 0.5700 +115123 100127206 0.4320 +115196 163087 0.4460 +115196 340895 0.4130 +115196 349075 0.4890 +115196 388558 0.6440 +115201 140901 0.5730 +115201 149420 0.5930 +115201 285973 0.6920 +115201 345611 0.4230 +115201 389812 0.4930 +115201 440738 0.8550 +115201 441925 0.4990 +115201 643246 0.7100 +115207 146212 0.5100 +115207 147040 0.6660 +115207 222658 0.5380 +115207 253980 0.5360 +115207 386617 0.4080 +115209 125170 0.6430 +115209 134266 0.5230 +115209 139322 0.4680 +115209 139341 0.4650 +115209 140823 0.6040 +115209 192111 0.4750 +115209 196294 0.4160 +115209 201164 0.4250 +115265 401541 0.5910 +115273 137835 0.4200 +115273 143241 0.4850 +115273 199964 0.4790 +115273 388284 0.4310 +115286 147407 0.4100 +115286 401612 0.4330 +115290 123879 0.4990 +115290 126433 0.4310 +115290 150678 0.4690 +115294 144100 0.7280 +115294 146050 0.4030 +115294 282966 0.5190 +115294 399665 0.6010 +115294 100289635 0.4250 +115330 124274 0.6190 +115330 285601 0.4110 +115330 344561 0.4380 +115330 350383 0.4530 +115330 387509 0.4790 +115350 115352 0.6600 +115350 115650 0.4170 +115350 127943 0.4180 +115350 151888 0.4760 +115350 199786 0.4210 +115352 148741 0.4600 +115352 149628 0.4770 +115352 151888 0.5000 +115352 199786 0.4760 +115352 201633 0.6240 +115353 116841 0.4290 +115353 130951 0.4160 +115353 136647 0.5070 +115353 161882 0.4040 +115353 256126 0.4710 +115353 283554 0.5670 +115353 286753 0.5250 +115353 387680 0.4150 +115361 115362 0.8530 +115361 116071 0.6310 +115361 129607 0.5330 +115361 151636 0.4600 +115361 219285 0.6500 +115361 441168 0.4860 +115362 116071 0.8060 +115362 116285 0.7830 +115362 117289 0.4680 +115362 118932 0.5730 +115362 129607 0.4770 +115362 149628 0.4040 +115362 219285 0.7180 +115362 220972 0.5170 +115362 256987 0.5520 +115362 345611 0.4070 +115362 441168 0.6070 +115362 730249 0.4020 +115399 115948 0.6310 +115399 116143 0.4500 +115399 120379 0.6000 +115399 123872 0.5830 +115399 139212 0.4570 +115399 149465 0.4540 +115399 160762 0.5750 +115399 161582 0.5080 +115399 164781 0.5100 +115399 200373 0.5890 +115399 246176 0.6470 +115399 339829 0.4440 +115399 352909 0.5490 +115399 388389 0.5350 +115399 727857 0.4280 +115416 116540 0.8690 +115416 116541 0.8180 +115416 118487 0.5250 +115416 122704 0.8630 +115416 123263 0.4660 +115416 124995 0.9330 +115416 126789 0.4840 +115416 128308 0.8710 +115416 130916 0.9640 +115416 140801 0.5880 +115416 196074 0.4390 +115416 219402 0.4220 +115416 219927 0.9950 +115416 284346 0.4600 +115416 284418 0.4050 +115416 285190 0.4050 +115416 285367 0.8520 +115416 285755 0.4060 +115416 285855 0.6650 +115416 343068 0.4220 +115416 343070 0.4220 +115416 349565 0.6950 +115416 387129 0.6570 +115416 387338 0.9680 +115416 390999 0.4220 +115416 391002 0.4220 +115416 400735 0.4220 +115416 400736 0.4220 +115416 440560 0.4220 +115416 440561 0.4220 +115416 440957 0.4680 +115416 441873 0.4220 +115416 642475 0.4220 +115416 644591 0.4050 +115416 645142 0.4050 +115416 645359 0.4220 +115416 653505 0.4150 +115416 653598 0.4050 +115416 653619 0.4220 +115416 727851 0.4050 +115416 728945 0.4050 +115416 729528 0.4220 +115416 729857 0.4050 +115416 730262 0.4050 +115416 100505478 0.6570 +115416 100526842 0.7810 +115416 101929983 0.4220 +115416 105371242 0.4050 +115416 127898561 0.9400 +115426 200424 0.5390 +115426 219654 0.4120 +115426 253461 0.6680 +115426 346171 0.4020 +115509 253461 0.4480 +115509 388569 0.4110 +115548 115677 0.4210 +115548 134285 0.4810 +115548 134288 0.5220 +115548 138799 0.5050 +115557 128674 0.4990 +115557 129521 0.4990 +115557 139728 0.4720 +115557 222545 0.5050 +115557 257313 0.4990 +115557 338557 0.4990 +115557 347148 0.4990 +115557 387129 0.5190 +115557 431704 0.6660 +115557 594857 0.4990 +115560 133482 0.4180 +115560 161725 0.7400 +115560 161882 0.5040 +115560 221302 0.8560 +115560 440093 0.4170 +115560 440686 0.4170 +115560 653604 0.4160 +115572 167153 0.4270 +115584 154091 0.4820 +115584 159963 0.4040 +115584 160728 0.4280 +115650 122706 0.4010 +115650 151888 0.4440 +115650 163882 0.4340 +115650 407977 0.6040 +115650 100423062 0.7540 +115650 102723407 0.4510 +115701 128611 0.4480 +115701 157313 0.4760 +115703 128239 0.4290 +115704 116983 0.4420 +115708 115939 0.4690 +115708 117246 0.8940 +115708 126789 0.6770 +115708 134637 0.6540 +115708 142940 0.6910 +115708 150962 0.4550 +115708 152992 0.6710 +115708 155368 0.4880 +115708 158234 0.5720 +115708 171568 0.5660 +115708 221078 0.6600 +115708 221120 0.6720 +115708 253943 0.5510 +115708 285855 0.4260 +115708 348180 0.5760 +115708 387129 0.4200 +115708 387338 0.6140 +115708 692312 0.4280 +115708 100505478 0.4170 +115727 126364 0.4970 +115727 147409 0.4410 +115727 150372 0.5040 +115727 221002 0.6550 +115749 123103 0.4300 +115749 147670 0.5770 +115749 150297 0.5440 +115749 152065 0.6200 +115749 152586 0.5050 +115749 155006 0.4330 +115749 221545 0.4770 +115749 284274 0.5070 +115749 284498 0.5440 +115749 285605 0.4470 +115749 286183 0.4470 +115749 340204 0.5120 +115749 342850 0.5430 +115749 353324 0.4790 +115749 375759 0.4350 +115749 387707 0.5440 +115749 388333 0.5270 +115749 392399 0.4320 +115749 448835 0.4180 +115749 493901 0.5820 +115749 646892 0.5710 +115749 647286 0.5070 +115749 100132916 0.4790 +115752 118460 0.9990 +115752 129563 0.6850 +115752 167153 0.4350 +115752 167227 0.5650 +115752 196441 0.9380 +115752 246243 0.4020 +115752 285016 0.4830 +115752 389812 0.4320 +115761 130026 0.4030 +115761 148206 0.4210 +115795 151835 0.4370 +115795 246175 0.5910 +115795 285368 0.4790 +115795 339976 0.5300 +115795 100129792 0.4430 +115811 123872 0.4250 +115811 146177 0.5450 +115811 146845 0.4790 +115811 150483 0.4360 +115811 154865 0.5970 +115811 155368 0.6060 +115811 202500 0.6860 +115811 219681 0.5320 +115811 220136 0.4850 +115811 222235 0.5190 +115811 254240 0.4780 +115811 387885 0.5090 +115811 440585 0.5430 +115817 132949 0.4320 +115817 157506 0.4270 +115817 284346 0.4150 +115817 285521 0.4590 +115817 389434 0.4310 +115825 116092 0.4230 +115825 130340 0.5440 +115825 158067 0.4080 +115825 220082 0.4440 +115825 220108 0.4030 +115825 386618 0.4110 +115825 647174 0.5180 +115827 127833 0.5300 +115827 132204 0.4720 +115827 140730 0.4580 +115827 192683 0.4680 +115827 283229 0.4010 +115827 387849 0.9160 +115861 157657 0.4560 +115861 165100 0.4010 +115861 169522 0.5010 +115861 338917 0.8160 +115908 131873 0.5090 +115908 147372 0.4830 +115908 255631 0.4680 +115908 342035 0.4260 +115939 131965 0.8500 +115939 145173 0.4420 +115939 147991 0.6150 +115939 155368 0.4580 +115939 256130 0.5070 +115939 285605 0.7320 +115939 341880 0.5440 +115939 442184 0.5830 +115948 123872 0.6700 +115948 127003 0.6020 +115948 129881 0.5210 +115948 133015 0.4580 +115948 135138 0.6050 +115948 136332 0.6380 +115948 138162 0.5570 +115948 138255 0.5280 +115948 139212 0.5700 +115948 146845 0.6040 +115948 150483 0.4780 +115948 151651 0.5150 +115948 158787 0.4820 +115948 160762 0.8630 +115948 161582 0.7130 +115948 164781 0.5990 +115948 197335 0.4510 +115948 219681 0.6060 +115948 220136 0.6850 +115948 221421 0.6920 +115948 257177 0.5490 +115948 286207 0.5190 +115948 339829 0.7360 +115948 345643 0.5670 +115948 345895 0.7070 +115948 352909 0.7360 +115948 374407 0.4650 +115948 375307 0.4320 +115948 388389 0.7490 +115948 388701 0.5070 +115948 727764 0.4780 +115948 100128569 0.5990 +115948 107983988 0.4410 +115950 115992 0.6740 +115950 130557 0.4400 +115950 729440 0.5230 +115992 139599 0.6700 +115992 148198 0.4200 +115992 152485 0.6030 +115992 154810 0.4440 +115992 333929 0.4180 +116028 144715 0.6310 +116028 146279 0.4250 +116028 146956 0.8220 +116028 197342 0.6560 +116028 201973 0.4570 +116028 348654 0.8590 +116028 378708 0.9950 +116028 548593 0.8130 +116039 347853 0.4370 +116064 116135 0.4160 +116064 153339 0.4320 +116064 165829 0.5030 +116064 199221 0.4760 +116064 221336 0.4150 +116064 344758 0.4560 +116064 344787 0.5640 +116064 375337 0.4730 +116064 375387 0.4390 +116064 389816 0.7040 +116064 440699 0.4380 +116068 153364 0.6500 +116068 256586 0.4320 +116068 400451 0.4960 +116068 552891 0.4800 +116071 118932 0.7100 +116071 120425 0.4020 +116071 129607 0.4560 +116071 219285 0.4620 +116071 441168 0.4630 +116085 118980 0.4660 +116085 134288 0.4250 +116085 142680 0.4030 +116085 146802 0.5050 +116085 157724 0.4440 +116085 159963 0.9680 +116085 160728 0.9700 +116085 220963 0.7400 +116085 353189 0.5470 +116092 133482 0.4480 +116092 140686 0.5140 +116092 146212 0.6630 +116092 146542 0.4150 +116092 164237 0.4670 +116092 280664 0.4080 +116092 391253 0.4340 +116092 493911 0.4800 +116115 120534 0.4480 +116115 162989 0.4100 +116115 284338 0.4270 +116115 317781 0.4380 +116115 342945 0.6300 +116135 219736 0.4500 +116135 375337 0.4790 +116135 400224 0.4460 +116138 117245 0.4670 +116138 132141 0.4280 +116138 132851 0.4700 +116138 140894 0.4280 +116138 150684 0.9010 +116138 253558 0.4210 +116138 348303 0.4700 +116138 440561 0.9420 +116138 440590 0.6440 +116138 653619 0.9320 +116143 120379 0.6270 +116143 123872 0.4570 +116143 139212 0.7210 +116143 140460 0.6900 +116143 160762 0.4190 +116143 161582 0.6130 +116143 197335 0.4300 +116143 352909 0.6730 +116143 388389 0.4290 +116143 554251 0.4390 +116143 642489 0.5420 +116143 100131390 0.5510 +116143 110599588 0.7810 +116150 199857 0.4580 +116151 283847 0.4300 +116154 147670 0.4900 +116154 151647 0.7300 +116154 388799 0.4370 +116159 151473 0.4360 +116159 161198 0.6150 +116159 221395 0.4440 +116159 729422 0.4180 +116159 100996492 0.4180 +116173 139105 0.4380 +116173 146223 0.8210 +116173 146225 0.8480 +116173 152189 0.7480 +116173 222166 0.4380 +116173 285800 0.4350 +116173 340205 0.7980 +116179 222662 0.4470 +116211 122830 0.4590 +116211 131540 0.5380 +116211 152098 0.4360 +116211 158234 0.4580 +116211 200933 0.4420 +116211 221091 0.4720 +116211 254394 0.8060 +116211 255758 0.5190 +116211 255798 0.6440 +116211 348793 0.6140 +116211 375387 0.4150 +116224 159090 0.8210 +116225 124044 0.4040 +116225 144321 0.6120 +116225 151613 0.4380 +116225 203068 0.7460 +116225 221908 0.4500 +116225 253980 0.4330 +116228 118490 0.5070 +116228 283951 0.6820 +116228 285521 0.8100 +116228 388753 0.7110 +116228 493753 0.6300 +116228 100131801 0.6350 +116228 100303755 0.5860 +116236 140701 0.5800 +116236 140803 0.4280 +116236 145447 0.4800 +116236 253152 0.4850 +116236 257629 0.5370 +116238 133022 0.4430 +116238 221491 0.4230 +116238 388795 0.4270 +116254 197021 0.5720 +116254 337880 0.4460 +116254 387509 0.4360 +116255 119548 0.6640 +116255 137964 0.4010 +116255 139189 0.6560 +116255 160851 0.7180 +116255 161247 0.4280 +116255 196051 0.9320 +116255 346606 0.9110 +116285 132949 0.5290 +116285 137872 0.4020 +116285 140545 0.5200 +116285 157869 0.4430 +116285 197322 0.4930 +116285 254042 0.4550 +116285 376497 0.4740 +116328 127003 0.6070 +116328 140460 0.5080 +116328 147685 0.4470 +116328 152405 0.5100 +116328 389161 0.4430 +116328 100130771 0.4410 +116337 377841 0.4140 +116362 122809 0.4260 +116369 117144 0.4350 +116369 124404 0.4120 +116369 161142 0.4600 +116369 170370 0.4100 +116369 283417 0.4400 +116369 284129 0.4540 +116369 374407 0.5150 +116372 130574 0.4460 +116372 646864 0.4310 +116379 130120 0.7590 +116379 163702 0.6940 +116379 282616 0.8630 +116379 282617 0.9020 +116379 282618 0.8930 +116379 338376 0.6680 +116412 340390 0.5630 +116412 441381 0.5270 +116441 128229 0.4490 +116441 157378 0.4100 +116442 117177 0.5540 +116442 120892 0.5800 +116442 140775 0.9790 +116442 160518 0.4230 +116442 196383 0.5310 +116442 203228 0.9830 +116442 353116 0.4250 +116442 391356 0.5920 +116443 116444 0.9950 +116443 118427 0.4050 +116443 149111 0.7850 +116443 170572 0.5670 +116443 200909 0.5740 +116443 254263 0.7630 +116443 285242 0.5660 +116443 285513 0.4030 +116443 337879 0.4050 +116443 375567 0.5490 +116443 388336 0.6670 +116443 402117 0.5740 +116443 431704 0.4050 +116443 440829 0.5400 +116443 729956 0.6400 +116443 729993 0.7840 +116444 149111 0.7210 +116444 170572 0.5810 +116444 200909 0.5860 +116444 254263 0.7460 +116444 285242 0.5760 +116444 375567 0.5400 +116444 388336 0.5810 +116444 402117 0.5520 +116444 439921 0.5510 +116444 440829 0.5400 +116444 729956 0.5810 +116444 729993 0.7480 +116447 246243 0.5460 +116447 286053 0.4250 +116448 117157 0.6320 +116448 120237 0.4120 +116448 140679 0.4420 +116448 146713 0.5500 +116448 388585 0.5780 +116449 147699 0.5050 +116449 155006 0.4110 +116449 257144 0.5260 +116449 283420 0.4010 +116449 729665 0.4090 +116461 283989 0.9990 +116496 100500938 0.4770 +116512 116534 0.4520 +116512 124274 0.4870 +116512 133396 0.4970 +116512 151647 0.4870 +116512 246213 0.5420 +116512 348801 0.5750 +116519 148113 0.4470 +116519 254102 0.4500 +116519 255738 0.6640 +116519 256394 0.5120 +116519 283600 0.4520 +116519 326625 0.4480 +116519 338328 0.8730 +116519 100528017 0.5640 +116534 124274 0.4800 +116534 401236 0.4180 +116540 116541 0.9500 +116540 118487 0.8860 +116540 122704 0.9350 +116540 124995 0.9760 +116540 128308 0.9070 +116540 130916 0.8560 +116540 145853 0.4590 +116540 219402 0.5960 +116540 219927 0.9350 +116540 285315 0.4670 +116540 285521 0.4190 +116540 387338 0.8010 +116540 643338 0.4860 +116540 127898561 0.8000 +116541 118487 0.9240 +116541 122704 0.9370 +116541 124995 0.9870 +116541 125988 0.6150 +116541 126003 0.4250 +116541 126328 0.5490 +116541 126402 0.5660 +116541 128308 0.9060 +116541 130916 0.8160 +116541 140801 0.4840 +116541 157310 0.5450 +116541 219402 0.5130 +116541 219927 0.9340 +116541 343068 0.4740 +116541 343070 0.4740 +116541 347487 0.4580 +116541 374378 0.4420 +116541 387338 0.8040 +116541 390999 0.4740 +116541 391002 0.4740 +116541 400735 0.4740 +116541 400736 0.4740 +116541 440560 0.4740 +116541 440561 0.4740 +116541 441873 0.4740 +116541 645359 0.4740 +116541 653619 0.4740 +116541 729528 0.4740 +116541 100287482 0.4580 +116541 100526842 0.5490 +116541 101929983 0.4740 +116541 127898561 0.8000 +116729 131377 0.4420 +116729 136371 0.4340 +116729 140458 0.4640 +116729 140462 0.4330 +116729 143162 0.4620 +116729 149345 0.5120 +116729 200539 0.6040 +116729 284131 0.4030 +116729 388468 0.4030 +116729 404785 0.4030 +116729 554226 0.4310 +116729 641455 0.4120 +116729 648791 0.4110 +116729 100996331 0.4050 +116832 117246 0.8460 +116832 126402 0.7680 +116832 140032 0.9380 +116832 140801 0.9690 +116832 143244 0.7510 +116832 147011 0.4590 +116832 154288 0.4580 +116832 158584 0.6760 +116832 164153 0.6330 +116832 200916 0.9390 +116832 221823 0.4090 +116832 254268 0.9310 +116832 266812 0.5150 +116832 285855 0.9350 +116832 342538 0.4150 +116832 343068 0.5100 +116832 343070 0.5100 +116832 347487 0.9020 +116832 387129 0.7740 +116832 390999 0.5100 +116832 391002 0.5100 +116832 400735 0.5100 +116832 400736 0.5100 +116832 440560 0.5100 +116832 440561 0.5100 +116832 441873 0.5100 +116832 619279 0.4580 +116832 641776 0.6160 +116832 642987 0.4580 +116832 643909 0.6160 +116832 645051 0.6440 +116832 645073 0.6440 +116832 645359 0.5100 +116832 653619 0.5100 +116832 728524 0.6160 +116832 729396 0.6440 +116832 729422 0.6440 +116832 729428 0.6440 +116832 729431 0.6440 +116832 729442 0.6440 +116832 729447 0.6440 +116832 729528 0.5100 +116832 100008586 0.6440 +116832 100128731 0.4660 +116832 100132399 0.6440 +116832 100287482 0.6270 +116832 100505478 0.5820 +116832 100526842 0.9250 +116832 100529097 0.8990 +116832 100529239 0.8620 +116832 100996746 0.6160 +116832 101929983 0.5100 +116832 102724473 0.6440 +116832 105180390 0.6160 +116832 105180391 0.6160 +116835 120526 0.4330 +116835 134266 0.5880 +116835 136332 0.4400 +116835 140432 0.4200 +116835 150353 0.4200 +116835 161198 0.5570 +116835 165721 0.5530 +116835 171425 0.4200 +116835 202052 0.5500 +116835 222894 0.4420 +116835 255877 0.5640 +116835 256949 0.4830 +116835 259217 0.8670 +116835 285126 0.6060 +116835 285282 0.4200 +116835 348995 0.4190 +116835 374407 0.5390 +116835 548645 0.5500 +116835 552891 0.4200 +116835 100101267 0.4380 +116840 121441 0.4540 +116840 134359 0.6590 +116840 140732 0.4160 +116840 145508 0.4450 +116840 146849 0.6440 +116840 152185 0.5790 +116840 153241 0.7620 +116840 163786 0.7550 +116840 200894 0.4310 +116840 201255 0.4030 +116840 221908 0.4110 +116840 282809 0.5760 +116840 284403 0.4190 +116840 347240 0.4260 +116841 127833 0.6430 +116841 134957 0.7560 +116841 143187 0.6960 +116841 160364 0.4390 +116841 203062 0.6780 +116841 203069 0.4590 +116841 253582 0.5140 +116841 286753 0.4790 +116841 339302 0.5400 +116841 388135 0.4210 +116841 415117 0.8010 +116841 440730 0.5290 +116841 594855 0.5630 +116842 158747 0.5740 +116842 619373 0.5240 +116843 168975 0.4220 +116843 201514 0.4320 +116843 201780 0.4860 +116844 122769 0.4850 +116844 220416 0.4240 +116844 376132 0.5360 +116844 474354 0.5220 +116931 133522 0.5400 +116931 256643 0.5400 +116931 400569 0.8760 +116966 117246 0.5840 +116966 132851 0.5030 +116966 140458 0.5740 +116966 140711 0.5000 +116966 146325 0.4420 +116966 147948 0.5420 +116966 147949 0.5110 +116966 161424 0.5190 +116966 165545 0.6290 +116966 221078 0.5580 +116966 221830 0.5700 +116966 340745 0.5740 +116966 345630 0.4010 +116966 374882 0.4400 +116966 401827 0.4120 +116966 402635 0.4910 +116966 651746 0.4170 +116969 140733 0.5430 +116969 165631 0.4880 +116969 493829 0.4620 +116969 100996492 0.4130 +116983 118424 0.6340 +116983 126789 0.6080 +116983 151011 0.6110 +116983 283899 0.4430 +116983 100131017 0.4760 +116984 126637 0.4060 +116984 147463 0.4020 +116984 169611 0.4020 +116985 136259 0.5730 +116985 145741 0.5720 +116985 169026 0.5760 +116985 221895 0.5140 +116985 388125 0.5170 +116985 440093 0.4120 +116985 440686 0.4120 +116985 653604 0.4120 +116986 133584 0.4300 +116986 219699 0.9260 +116987 116988 0.5900 +116987 201163 0.4890 +116988 136259 0.4090 +116988 201163 0.4380 +116988 349136 0.4380 +116988 375323 0.4680 +117143 127002 0.6660 +117143 139628 0.4240 +117143 158880 0.6800 +117143 222255 0.5300 +117143 387332 0.4980 +117143 389856 0.6630 +117143 653604 0.5230 +117144 117155 0.9830 +117144 123041 0.5180 +117144 124783 0.4740 +117144 133482 0.4680 +117144 138724 0.4760 +117144 139604 0.4730 +117144 145942 0.4560 +117144 150159 0.4740 +117144 150483 0.4020 +117144 157855 0.7290 +117144 161142 0.4040 +117144 164684 0.4080 +117144 200232 0.4990 +117144 219931 0.5200 +117144 246329 0.7260 +117144 257044 0.9500 +117144 257062 0.9890 +117144 257169 0.5090 +117144 283417 0.5630 +117144 283461 0.5340 +117144 283571 0.4540 +117144 285335 0.5820 +117144 285588 0.9880 +117144 340393 0.7200 +117144 347732 0.9850 +117144 353189 0.4680 +117144 374768 0.4250 +117144 378807 0.9830 +117144 388564 0.5130 +117144 440699 0.5540 +117144 643803 0.4750 +117144 100130348 0.8560 +117144 100289255 0.5130 +117145 121053 0.4320 +117145 122970 0.9220 +117145 253260 0.5040 +117145 284486 0.9480 +117145 641371 0.9150 +117145 653689 0.5110 +117154 139322 0.5080 +117154 340562 0.6090 +117155 133482 0.4310 +117155 146059 0.8010 +117155 146183 0.4460 +117155 150483 0.4290 +117155 157855 0.4880 +117155 161497 0.9940 +117155 246329 0.7230 +117155 257044 0.9790 +117155 257062 0.9870 +117155 284697 0.4770 +117155 285335 0.4520 +117155 285588 0.9660 +117155 340393 0.7200 +117155 347732 0.9860 +117155 353189 0.4310 +117155 378807 0.9720 +117155 440307 0.4450 +117155 100130348 0.8560 +117155 100529257 0.4400 +117156 132203 0.4510 +117156 147199 0.5060 +117156 389376 0.4740 +117156 404552 0.5450 +117156 653486 0.4630 +117156 653509 0.9030 +117156 727897 0.4620 +117156 729238 0.5930 +117157 259197 0.4890 +117159 118430 0.4610 +117159 144100 0.5400 +117159 340348 0.5400 +117159 414325 0.6100 +117159 448834 0.4340 +117166 140870 0.4370 +117166 152404 0.4980 +117166 286676 0.4790 +117166 391253 0.4270 +117166 391365 0.5080 +117166 440387 0.6140 +117177 117178 0.5990 +117177 121441 0.5130 +117177 122553 0.4320 +117177 126003 0.4950 +117177 129880 0.9330 +117177 132320 0.7380 +117177 146057 0.7120 +117177 149371 0.7010 +117177 150946 0.4810 +117177 200894 0.4970 +117177 203068 0.4990 +117177 261734 0.6480 +117177 282808 0.7520 +117177 284114 0.4430 +117177 285282 0.4780 +117177 341019 0.6410 +117177 347240 0.6600 +117177 376267 0.5480 +117177 548313 0.5880 +117177 727837 0.5640 +117178 121441 0.4180 +117178 132320 0.4390 +117178 133396 0.4620 +117178 139135 0.4380 +117178 143689 0.4090 +117178 145508 0.4730 +117178 152185 0.4740 +117178 163786 0.4340 +117178 165055 0.5580 +117178 196528 0.4260 +117178 197335 0.4960 +117178 340719 0.5260 +117178 440822 0.4090 +117178 548313 0.8080 +117178 727837 0.8150 +117194 341276 0.4020 +117194 386653 0.4330 +117194 100526739 0.9000 +117195 339230 0.4060 +117196 151306 0.4330 +117245 123745 0.4630 +117245 132851 0.5430 +117245 222236 0.4530 +117245 246269 0.4190 +117246 123169 0.5930 +117246 124454 0.4350 +117246 129563 0.4090 +117246 130733 0.5020 +117246 142940 0.7480 +117246 146212 0.9590 +117246 155368 0.5430 +117246 158234 0.5580 +117246 161424 0.8970 +117246 165545 0.4020 +117246 200916 0.7930 +117246 221078 0.9740 +117246 221830 0.6510 +117246 254268 0.7310 +117246 285855 0.8900 +117246 317781 0.5440 +117246 344758 0.5000 +117246 345630 0.5250 +117246 387129 0.8470 +117246 387338 0.7160 +117246 400506 0.4810 +117246 645051 0.4230 +117246 645073 0.4230 +117246 692312 0.6050 +117246 729396 0.4230 +117246 729422 0.4230 +117246 729428 0.4230 +117246 729431 0.4230 +117246 729442 0.4230 +117246 729447 0.4230 +117246 100008586 0.4230 +117246 100132399 0.4230 +117246 100505478 0.5680 +117246 100526842 0.7590 +117246 102724473 0.4230 +117246 114483834 0.4890 +117247 124935 0.5630 +117247 340024 0.4670 +117248 118430 0.4190 +117248 139411 0.4950 +117248 140453 0.4410 +117248 143662 0.4560 +117248 192134 0.9040 +117248 200958 0.4310 +117248 285381 0.4370 +117248 388646 0.4240 +117248 394263 0.4500 +117248 727897 0.4050 +117248 728819 0.6610 +117283 221830 0.4510 +117283 374378 0.4730 +117285 122665 0.4120 +117285 140596 0.7420 +117285 140850 0.8430 +117285 140881 0.8690 +117285 245908 0.7360 +117285 245910 0.7030 +117285 245911 0.7470 +117285 245913 0.7530 +117285 245927 0.6650 +117285 245928 0.8590 +117285 245929 0.8030 +117285 245930 0.8250 +117285 245932 0.8490 +117285 245934 0.5900 +117285 245936 0.6540 +117285 245937 0.6660 +117285 245938 0.7690 +117285 245939 0.6430 +117285 245940 0.7190 +117285 259240 0.5130 +117285 343563 0.4080 +117285 400830 0.7960 +117285 414325 0.6850 +117285 503614 0.4660 +117285 503618 0.4220 +117285 503841 0.7500 +117285 613209 0.7120 +117285 613210 0.5700 +117285 613211 0.5830 +117285 644414 0.7830 +117285 653423 0.4260 +117285 728358 0.5830 +117285 100133267 0.5730 +117285 100169851 0.4300 +117286 117531 0.9780 +117286 117532 0.8490 +117286 124602 0.6960 +117286 126382 0.5130 +117286 127254 0.4320 +117286 128209 0.4870 +117286 131368 0.4600 +117286 146909 0.6540 +117286 147700 0.4990 +117286 155465 0.4250 +117286 283870 0.5430 +117286 284439 0.4030 +117286 284451 0.5210 +117289 118788 0.4110 +117289 124460 0.4220 +117289 132612 0.6800 +117289 150962 0.5310 +117289 199834 0.6210 +117289 345611 0.4690 +117289 100129271 0.5420 +117531 117532 0.8930 +117531 124590 0.7820 +117531 125336 0.7880 +117531 126326 0.5930 +117531 130106 0.4440 +117531 146183 0.6440 +117531 152137 0.4180 +117531 153562 0.4520 +117531 161497 0.7590 +117531 220074 0.5250 +117531 222662 0.9970 +117531 246213 0.6430 +117531 259236 0.9890 +117531 283310 0.4980 +117531 286262 0.5820 +117531 286676 0.5440 +117531 340990 0.5730 +117531 344752 0.4600 +117531 374462 0.4160 +117531 375611 0.7560 +117531 388551 0.5260 +117531 389207 0.5970 +117531 494513 0.6830 +117531 645104 0.5050 +117531 654231 0.4920 +117532 124590 0.6510 +117532 125336 0.5440 +117532 130106 0.6160 +117532 161497 0.5550 +117532 219736 0.4200 +117532 222662 0.9940 +117532 246213 0.4730 +117532 259236 0.9320 +117532 283310 0.4280 +117532 339768 0.4230 +117532 375611 0.4890 +117532 652991 0.4900 +117532 654231 0.4150 +117579 122042 0.9540 +117579 122876 0.4890 +117579 129521 0.4210 +117579 170589 0.4260 +117579 196883 0.5110 +117579 255061 0.4400 +117579 256933 0.5460 +117579 283869 0.4640 +117579 339403 0.9990 +117579 594857 0.7780 +117579 104909134 0.5170 +117581 130497 0.4860 +117581 333929 0.5870 +117583 387755 0.8490 +117584 131601 0.4370 +117584 388591 0.6080 +117608 375484 0.4320 +117854 340980 0.4610 +117854 442862 0.4160 +118424 126792 0.7450 +118424 140739 0.4160 +118424 148581 0.5070 +118426 119032 0.9990 +118426 127829 0.6000 +118426 221079 0.6020 +118426 282991 0.9980 +118426 339344 0.6100 +118426 389541 0.7570 +118426 729991 0.9990 +118427 149111 0.4090 +118427 254263 0.5700 +118427 375567 0.4770 +118427 388336 0.4760 +118427 402117 0.4940 +118427 440829 0.4020 +118427 729956 0.5650 +118427 729993 0.4800 +118429 145581 0.6210 +118429 147700 0.4810 +118429 149233 0.5490 +118429 163486 0.4470 +118429 163688 0.5110 +118429 196527 0.4020 +118429 255119 0.4260 +118430 140453 0.5690 +118430 143662 0.6150 +118430 146712 0.4150 +118430 200958 0.6200 +118430 219970 0.5370 +118430 256435 0.4090 +118430 374378 0.4170 +118430 389336 0.4530 +118430 394263 0.6220 +118430 442117 0.4150 +118430 727897 0.6240 +118442 222826 0.4200 +118442 285601 0.4710 +118442 387509 0.4150 +118460 129563 0.9350 +118460 167227 0.6810 +118460 196441 0.9480 +118460 196513 0.5160 +118460 284346 0.4030 +118461 120526 0.4330 +118461 129446 0.4390 +118461 134266 0.5880 +118461 136332 0.4400 +118461 140432 0.4200 +118461 150353 0.4290 +118461 165721 0.4450 +118461 165904 0.4060 +118461 168433 0.4020 +118461 171425 0.4210 +118461 202052 0.4200 +118461 285126 0.4220 +118461 285282 0.4200 +118461 343521 0.4160 +118461 374407 0.4200 +118461 442721 0.4560 +118461 548645 0.4200 +118461 552891 0.4200 +118461 643418 0.4760 +118461 653423 0.5070 +118471 282969 0.4960 +118472 130617 0.4890 +118472 169611 0.4740 +118472 203259 0.5660 +118472 282969 0.5170 +118472 284348 0.5410 +118472 285268 0.4350 +118472 389114 0.5070 +118487 122704 0.8970 +118487 124995 0.8590 +118487 126402 0.5650 +118487 127829 0.4050 +118487 128308 0.8870 +118487 131474 0.5490 +118487 132612 0.4580 +118487 154467 0.4020 +118487 219402 0.9310 +118487 219927 0.9500 +118487 221184 0.4200 +118487 344892 0.4900 +118487 347487 0.5120 +118487 401505 0.4090 +118487 654364 0.4840 +118487 790955 0.5090 +118487 100287482 0.5110 +118487 109703458 0.4450 +118490 339855 0.4490 +118490 353322 0.4730 +118490 100131801 0.4550 +118490 100303755 0.5310 +118491 122481 0.5210 +118491 123872 0.4810 +118491 126820 0.7570 +118491 132851 0.4390 +118491 136332 0.5370 +118491 138162 0.6550 +118491 144132 0.5770 +118491 144406 0.6900 +118491 146754 0.9570 +118491 146845 0.6140 +118491 149499 0.4330 +118491 152206 0.4600 +118491 154313 0.4680 +118491 159686 0.6330 +118491 164781 0.4390 +118491 196385 0.4880 +118491 197335 0.7880 +118491 199223 0.6980 +118491 200162 0.5210 +118491 200373 0.4070 +118491 201625 0.7200 +118491 220136 0.6280 +118491 255101 0.6150 +118491 257236 0.5110 +118491 286464 0.5990 +118491 339829 0.4670 +118491 374407 0.5190 +118491 388389 0.4150 +118491 389161 0.4540 +118491 401024 0.5890 +118611 219858 0.4040 +118663 147991 0.4520 +118663 387715 0.4070 +118670 150946 0.5110 +118670 339779 0.6040 +118670 378925 0.5550 +118670 440956 0.6120 +118670 780776 0.5070 +118672 127428 0.4360 +118672 140606 0.4870 +118672 280636 0.5520 +118672 348303 0.5170 +118738 128025 0.4170 +118738 171023 0.5100 +118738 195977 0.5050 +118738 256714 0.4040 +118788 390714 0.5260 +118788 401494 0.4290 +118812 140469 0.7230 +118812 254956 0.6440 +118812 339768 0.5490 +118812 729967 0.4530 +118813 118987 0.8610 +118813 123606 0.7750 +118813 127829 0.4220 +118813 137492 0.4290 +118813 158747 0.5690 +118813 200205 0.4530 +118813 221079 0.4490 +118856 146845 0.5290 +118856 168507 0.5940 +118856 220136 0.5020 +118856 728642 0.7670 +118881 129831 0.4090 +118881 147798 0.4870 +118881 340390 0.4040 +118881 401505 0.4090 +118924 151613 0.6010 +118932 128611 0.4770 +118932 136319 0.4160 +118932 136371 0.4570 +118932 136991 0.4010 +118932 140458 0.4130 +118932 140462 0.4580 +118932 142686 0.4210 +118932 147463 0.4390 +118932 157567 0.4450 +118932 200539 0.4770 +118932 283130 0.5730 +118932 317754 0.5350 +118932 388468 0.4910 +118932 404785 0.4900 +118932 641455 0.4920 +118932 643414 0.4510 +118932 100287399 0.4580 +118932 100288966 0.5370 +118932 100996331 0.4880 +118932 102723502 0.4840 +118932 102724631 0.4850 +118980 119559 0.4800 +118980 728568 0.4140 +118987 158747 0.4380 +118987 100505993 0.4330 +119016 284352 0.4200 +119016 414189 0.9250 +119016 653269 0.4030 +119016 653781 0.4020 +119016 729092 0.5380 +119032 127829 0.5570 +119032 221079 0.5960 +119032 282991 0.9990 +119032 339344 0.6100 +119032 389541 0.6800 +119032 729991 0.9980 +119032 127814297 0.5400 +119180 138724 0.4530 +119180 140873 0.5200 +119180 254773 0.4100 +119391 123099 0.4110 +119391 124975 0.7230 +119391 133482 0.6630 +119391 221357 0.8170 +119391 256536 0.4170 +119391 257202 0.7900 +119391 373156 0.7540 +119391 493869 0.7950 +119391 494143 0.7030 +119391 653689 0.9130 +119392 254528 0.4960 +119395 125962 0.4930 +119395 133060 0.6430 +119395 148823 0.4760 +119395 255022 0.9460 +119395 346562 0.4730 +119467 124599 0.4560 +119467 124808 0.4830 +119467 145553 0.4750 +119467 151195 0.4910 +119467 157922 0.4480 +119467 255057 0.4910 +119467 257629 0.4840 +119467 340024 0.5650 +119467 388364 0.7280 +119467 401024 0.4560 +119504 124936 0.5700 +119504 130026 0.4240 +119504 140459 0.5400 +119504 148206 0.4410 +119504 166979 0.5400 +119504 219293 0.4050 +119504 246184 0.9990 +119504 256356 0.4290 +119504 283237 0.4510 +119504 388272 0.6290 +119548 139189 0.6550 +119548 160851 0.6550 +119548 196051 0.9040 +119548 346606 0.6590 +119548 374897 0.4540 +119548 729396 0.4180 +119548 729422 0.4720 +119559 136242 0.4920 +119559 255631 0.4380 +119559 257194 0.4040 +119559 339345 0.4060 +119559 343099 0.4710 +119587 150465 0.5410 +119587 220965 0.4590 +119678 222537 0.4700 +119679 146325 0.6940 +119679 151963 0.4180 +119679 101060233 0.5560 +119682 125958 0.5790 +119682 146325 0.7070 +119682 284521 0.4990 +119682 391196 0.4990 +119682 401427 0.4990 +119687 119692 0.6520 +119687 317701 0.4370 +119687 317703 0.4750 +119687 401665 0.6440 +119687 401666 0.6340 +119692 119694 0.4020 +119692 401665 0.6550 +119694 119695 0.5070 +119695 119710 0.5820 +119695 125958 0.5250 +119695 132112 0.5280 +119695 135946 0.5310 +119695 219438 0.5480 +119695 219477 0.5290 +119695 219493 0.5310 +119695 219858 0.5410 +119695 219957 0.5360 +119695 219968 0.5020 +119695 282775 0.5500 +119695 284521 0.4990 +119695 344892 0.5340 +119695 390059 0.4990 +119695 390082 0.5330 +119695 390155 0.5550 +119695 390157 0.5160 +119695 390275 0.5080 +119695 390892 0.5230 +119695 391196 0.4990 +119695 401427 0.5230 +119695 442184 0.5160 +119710 100131378 0.4340 +119749 348327 0.5070 +119764 139378 0.4870 +119764 257169 0.5710 +119764 259232 0.5450 +119764 348932 0.4990 +119764 729873 0.5070 +119764 101060321 0.5070 +119764 101060389 0.5730 +119765 259232 0.5710 +119772 158787 0.4160 +119772 159091 0.4760 +119772 317701 0.4480 +119772 317703 0.4970 +119774 259289 0.4480 +119774 259290 0.4790 +119774 317701 0.4730 +119774 317703 0.5070 +119774 390036 0.7950 +120065 282763 0.4160 +120065 647042 0.4380 +120065 100271927 0.4470 +120066 125958 0.5250 +120066 284521 0.5330 +120066 346606 0.4010 +120066 391196 0.5170 +120066 401427 0.5100 +120071 133584 0.4180 +120071 145567 0.4750 +120071 146456 0.5000 +120071 148789 0.6490 +120071 375790 0.5440 +120071 729920 0.5210 +120103 153129 0.6070 +120103 153201 0.9070 +120103 160728 0.4460 +120103 206358 0.9070 +120114 123775 0.4200 +120114 129446 0.4060 +120114 146664 0.4020 +120114 284217 0.6010 +120114 340267 0.4010 +120146 287015 0.4600 +120146 653423 0.4300 +120224 132954 0.4150 +120224 199964 0.4390 +120224 646892 0.5420 +120227 132949 0.6510 +120227 142680 0.4450 +120227 144193 0.7400 +120227 260293 0.4290 +120227 284541 0.4020 +120227 339761 0.4260 +120227 100861540 0.4040 +120237 167826 0.6090 +120237 221833 0.4070 +120237 431707 0.5050 +120376 341032 0.9140 +120376 399947 0.4680 +120376 644186 0.4150 +120379 123872 0.4050 +120379 127391 0.4640 +120379 130888 0.4690 +120379 139212 0.8480 +120379 140873 0.4310 +120379 146754 0.4030 +120379 150160 0.5860 +120379 153643 0.4460 +120379 154313 0.4740 +120379 158830 0.4340 +120379 160419 0.4080 +120379 161582 0.7510 +120379 200232 0.4340 +120379 221409 0.4420 +120379 352909 0.5850 +120379 388389 0.5300 +120379 399693 0.4670 +120379 642843 0.4180 +120400 120406 0.4220 +120425 130120 0.4230 +120425 150084 0.6710 +120425 160364 0.4500 +120425 196264 0.4840 +120425 202309 0.5180 +120425 257106 0.5460 +120526 120534 0.5380 +120526 124637 0.4980 +120526 129450 0.4340 +120526 131118 0.4480 +120526 134218 0.6870 +120526 134266 0.5170 +120526 145376 0.5330 +120526 152404 0.4060 +120526 152815 0.4640 +120526 196294 0.9330 +120526 202052 0.5620 +120526 220323 0.4480 +120526 221496 0.5620 +120526 259217 0.4330 +120526 285381 0.8900 +120526 339416 0.4840 +120526 341019 0.9320 +120526 388633 0.4330 +120534 122402 0.4050 +120534 127700 0.4650 +120775 120776 0.7890 +120775 134265 0.4310 +120775 144124 0.8340 +120775 144125 0.6430 +120775 163059 0.4320 +120775 283297 0.9870 +120775 341276 0.7170 +120775 400713 0.4710 +120776 144124 0.7750 +120776 144125 0.7840 +120776 259296 0.4740 +120776 283297 0.4850 +120776 317701 0.4190 +120776 317703 0.4470 +120776 341276 0.4780 +120787 145873 0.4060 +120787 201299 0.4320 +120787 202333 0.4160 +120787 284001 0.4180 +120787 341640 0.4070 +120787 345222 0.5710 +120787 347732 0.5720 +120787 400720 0.4870 +120793 125958 0.5640 +120793 284521 0.4990 +120793 338751 0.5590 +120793 390084 0.5370 +120793 391196 0.5080 +120793 401427 0.5200 +120863 341799 0.5990 +120863 353355 0.5170 +120863 399671 0.4990 +120863 440353 0.5050 +120863 613037 0.4470 +120863 728224 0.5810 +120863 100132247 0.4480 +120863 100529215 0.6200 +120892 130013 0.4490 +120892 135138 0.5050 +120892 144811 0.6190 +120892 148811 0.6170 +120892 160857 0.7200 +120892 192670 0.5160 +120892 196383 0.4210 +120892 203068 0.8210 +120892 203228 0.5880 +120892 254428 0.6260 +120892 345611 0.5330 +120892 353116 0.4090 +120892 374291 0.4330 +120892 728378 0.4990 +120935 136895 0.5840 +120935 146849 0.8080 +120935 148137 0.4610 +120935 164592 0.5620 +120935 221481 0.4020 +120935 256815 0.4750 +120935 257236 0.5900 +120935 352909 0.4610 +120935 387885 0.6320 +120935 441054 0.5810 +120939 123745 0.4690 +121006 170370 0.4750 +121006 283685 0.5170 +121006 342892 0.4340 +121006 374786 0.4090 +121006 442444 0.5730 +121006 654463 0.4470 +121053 145282 0.7790 +121129 339761 0.4320 +121130 126205 0.4600 +121130 339761 0.4160 +121130 646643 0.4180 +121130 100130613 0.5050 +121214 126410 0.7220 +121214 145226 0.4170 +121214 157506 0.4300 +121214 201140 0.4380 +121214 204219 0.6520 +121214 285848 0.7400 +121214 340665 0.5050 +121214 348938 0.6950 +121214 643418 0.5790 +121227 148738 0.4690 +121227 245812 0.4570 +121227 387119 0.4440 +121227 388662 0.4340 +121227 729830 0.4600 +121256 144423 0.4690 +121256 256536 0.5600 +121256 353497 0.4780 +121256 402117 0.4270 +121260 144423 0.4500 +121260 153129 0.4190 +121260 206358 0.4820 +121260 728276 0.4680 +121273 130752 0.4350 +121273 139793 0.6620 +121274 202243 0.4100 +121274 339512 0.4260 +121274 728591 0.4280 +121274 100101267 0.4090 +121275 131149 0.4340 +121275 386746 0.4190 +121278 169355 0.9520 +121278 200895 0.9040 +121278 220074 0.4900 +121278 246213 0.4650 +121278 255239 0.4720 +121278 259307 0.9040 +121278 339896 0.4240 +121340 137902 0.4870 +121340 151647 0.4630 +121340 153769 0.4490 +121340 221044 0.6610 +121340 221833 0.4960 +121340 387733 0.6080 +121355 122402 0.6870 +121355 132612 0.4320 +121355 136991 0.5350 +121355 140873 0.4460 +121355 143689 0.8560 +121355 154007 0.5190 +121355 154197 0.4370 +121355 161829 0.5690 +121355 163589 0.4210 +121355 170680 0.5050 +121355 201164 0.5160 +121355 440822 0.4100 +121355 441519 0.4470 +121355 728343 0.5280 +121364 133558 0.4180 +121391 140807 0.4830 +121391 144501 0.4450 +121391 147183 0.7060 +121391 147409 0.4430 +121391 196374 0.4320 +121391 200879 0.4830 +121391 254773 0.4650 +121391 286887 0.4320 +121391 319101 0.4960 +121391 337880 0.5290 +121391 338785 0.4740 +121391 340419 0.4020 +121391 342574 0.8620 +121391 374454 0.4830 +121441 134359 0.4570 +121441 152185 0.4610 +121441 153241 0.6910 +121441 163786 0.6800 +121441 201255 0.5050 +121441 203068 0.5210 +121441 221150 0.4290 +121441 259266 0.4140 +121441 440145 0.9820 +121441 653784 0.9680 +121441 728642 0.5120 +121504 123169 0.8600 +121504 126961 0.9650 +121504 128312 0.9430 +121504 129685 0.8000 +121504 132243 0.7060 +121504 144108 0.9040 +121504 196528 0.8000 +121504 201254 0.8040 +121504 221613 0.9530 +121504 255626 0.9420 +121504 317772 0.9540 +121504 333932 0.9650 +121504 341567 0.5130 +121504 378708 0.8120 +121504 387103 0.8180 +121504 387893 0.9150 +121504 391769 0.9350 +121504 400569 0.8170 +121504 401541 0.8060 +121504 404672 0.8170 +121504 440093 0.9370 +121504 440689 0.8950 +121504 474381 0.9310 +121504 554313 0.9520 +121504 653604 0.9480 +121504 723790 0.9530 +121504 728378 0.5550 +121504 100885850 0.4760 +121504 114483833 0.4520 +121506 129530 0.4190 +121506 144608 0.5400 +121506 155465 0.5040 +121506 440087 0.4210 +121512 124997 0.4830 +121512 200576 0.4590 +121512 221823 0.4320 +121512 339829 0.4180 +121536 128312 0.6370 +121536 132625 0.5430 +121536 171023 0.9170 +121536 196528 0.6380 +121536 255626 0.6370 +121536 340602 0.5420 +121536 387640 0.4360 +121536 387893 0.4680 +121536 404281 0.5400 +121536 440093 0.6210 +121536 440686 0.6550 +121536 474382 0.6390 +121536 653604 0.8200 +121536 723790 0.4120 +121536 100170841 0.9370 +121549 143872 0.4280 +121551 100130274 0.4470 +121601 143282 0.4350 +121601 246213 0.7850 +121601 338440 0.4300 +121601 390323 0.4340 +121601 100271715 0.5060 +121642 133482 0.4630 +121642 221120 0.6090 +121642 284131 0.4190 +121642 286451 0.5640 +121642 389812 0.6030 +121643 166979 0.5780 +121643 220202 0.6990 +121643 256297 0.7540 +121643 338917 0.6880 +121643 343472 0.6690 +121643 345643 0.4300 +121643 643641 0.6170 +121643 646962 0.4460 +121793 149018 0.4010 +121793 153733 0.6690 +121793 171484 0.4880 +121793 200523 0.4050 +121793 388722 0.4320 +121793 401067 0.4380 +121793 613227 0.4140 +121793 729475 0.4790 +121793 100129520 0.4680 +121793 101928147 0.5700 +122011 222584 0.4200 +122011 644815 0.6860 +122011 100133093 0.5070 +122042 145173 0.8490 +122042 253827 0.4680 +122042 254251 0.4260 +122042 339403 0.9800 +122046 132851 0.4590 +122046 219738 0.5060 +122046 286464 0.4200 +122046 374618 0.4490 +122046 442197 0.4800 +122046 647310 0.5070 +122183 148545 0.5070 +122183 339761 0.4180 +122183 391742 0.6950 +122183 391746 0.7700 +122183 391747 0.7700 +122183 646066 0.7700 +122183 646103 0.7700 +122183 728075 0.6170 +122183 729233 0.9990 +122183 729240 0.9990 +122183 729246 0.9990 +122183 729250 0.9990 +122183 729528 0.4790 +122183 102723526 0.6660 +122183 112488736 0.7700 +122183 112488737 0.7700 +122183 112488738 0.7700 +122258 124912 0.4040 +122258 127003 0.5070 +122258 162387 0.4980 +122258 171169 0.4860 +122258 220388 0.5590 +122258 256710 0.5750 +122402 126668 0.4450 +122402 136991 0.8390 +122402 143689 0.9950 +122402 150763 0.4870 +122402 161829 0.6210 +122402 163589 0.8570 +122402 164045 0.4510 +122402 192669 0.6020 +122402 201164 0.8200 +122402 221400 0.7460 +122402 254528 0.4720 +122402 373863 0.4310 +122402 440822 0.6910 +122402 100129278 0.6060 +122402 110806297 0.4470 +122416 122773 0.9040 +122416 132141 0.5720 +122416 136371 0.5220 +122416 140456 0.6490 +122416 140739 0.5590 +122416 142686 0.6400 +122416 149951 0.5010 +122416 150684 0.4990 +122416 170622 0.4990 +122416 283349 0.4200 +122416 442319 0.4490 +122481 126402 0.4250 +122481 129607 0.4100 +122481 129881 0.4190 +122481 130888 0.6250 +122481 136332 0.6540 +122481 139596 0.4200 +122481 140801 0.4420 +122481 144406 0.5420 +122481 146754 0.4580 +122481 146845 0.4540 +122481 147744 0.4930 +122481 149175 0.4240 +122481 158067 0.8920 +122481 159686 0.4170 +122481 160762 0.6430 +122481 199223 0.5250 +122481 200162 0.4500 +122481 200373 0.4590 +122481 221264 0.8270 +122481 221421 0.7530 +122481 260425 0.4280 +122481 286464 0.4800 +122481 345895 0.7480 +122481 374407 0.5940 +122481 374659 0.4440 +122481 377841 0.6730 +122481 401024 0.5540 +122481 401551 0.6550 +122481 654364 0.7490 +122481 100526794 0.6960 +122481 100526842 0.4470 +122509 387733 0.5140 +122509 439996 0.6050 +122525 401720 0.4020 +122553 126003 0.9970 +122553 145581 0.4630 +122553 146325 0.6040 +122553 163050 0.4450 +122553 166348 0.5390 +122553 167691 0.6730 +122553 170850 0.4660 +122553 200942 0.5220 +122553 254170 0.4980 +122553 284422 0.4850 +122553 284697 0.5080 +122553 285180 0.5800 +122553 339122 0.6690 +122553 339834 0.4710 +122553 388701 0.4180 +122553 401409 0.5020 +122553 414157 0.4700 +122553 100128327 0.9810 +122553 100130988 0.4920 +122616 130340 0.5400 +122616 150350 0.5400 +122616 157638 0.5070 +122616 199920 0.4470 +122616 222229 0.5410 +122616 257407 0.5830 +122616 339230 0.4140 +122616 374955 0.4900 +122616 400793 0.5060 +122616 404217 0.6050 +122618 123745 0.6950 +122618 129642 0.9110 +122618 139189 0.6640 +122618 151056 0.6860 +122618 154141 0.9080 +122618 160851 0.6620 +122618 196051 0.9010 +122618 201164 0.7100 +122618 253558 0.6500 +122618 254531 0.9000 +122618 255189 0.6560 +122618 283748 0.6560 +122618 387521 0.9000 +122618 387522 0.9000 +122618 391013 0.6500 +122618 647310 0.4150 +122618 100137049 0.6570 +122622 124583 0.9030 +122622 126402 0.4290 +122622 131870 0.9000 +122622 137362 0.9220 +122622 139596 0.4370 +122622 144193 0.4260 +122622 154141 0.4700 +122622 221823 0.6080 +122622 259307 0.9000 +122622 285148 0.4030 +122622 339896 0.8040 +122622 339983 0.9000 +122622 377841 0.9070 +122622 387712 0.4690 +122622 441024 0.5450 +122622 554235 0.8000 +122622 100526794 0.9330 +122622 100526842 0.4440 +122651 122665 0.6050 +122651 168090 0.4530 +122651 338879 0.4700 +122651 440163 0.5060 +122651 493901 0.6560 +122664 203074 0.5190 +122664 283471 0.5070 +122665 338879 0.5070 +122665 440163 0.4870 +122665 493901 0.5470 +122665 100130348 0.5910 +122704 124995 0.9280 +122704 128308 0.9890 +122704 130916 0.8190 +122704 219402 0.5370 +122704 219927 0.9690 +122704 387338 0.8010 +122704 100131801 0.5470 +122704 127898561 0.8110 +122706 123228 0.4990 +122706 126321 0.4270 +122706 126374 0.4160 +122706 134510 0.5050 +122706 143471 0.9660 +122706 144165 0.4160 +122706 161742 0.4160 +122706 200734 0.4160 +122706 219793 0.4400 +122706 349633 0.5410 +122706 389362 0.4290 +122706 399473 0.4160 +122706 100526664 0.5880 +122706 100652824 0.6140 +122740 126123 0.5070 +122742 125958 0.5540 +122742 165215 0.5070 +122742 283685 0.4450 +122742 284521 0.4990 +122742 391196 0.5170 +122742 401427 0.5210 +122742 441581 0.5730 +122742 646962 0.4890 +122742 101060226 0.5810 +122748 125958 0.5420 +122748 284521 0.5160 +122748 391196 0.5040 +122748 401427 0.5170 +122769 127435 0.5250 +122769 131578 0.4150 +122769 139065 0.4150 +122769 145581 0.4290 +122769 149951 0.4990 +122769 150678 0.5060 +122769 150684 0.5070 +122769 170622 0.5030 +122769 220134 0.4530 +122769 253461 0.4360 +122769 339291 0.4970 +122769 347730 0.4250 +122769 347731 0.4560 +122769 440590 0.7060 +122769 645191 0.4160 +122773 123207 0.4510 +122773 131377 0.5200 +122773 142686 0.4970 +122773 390594 0.5310 +122773 401265 0.4670 +122786 154796 0.4620 +122786 154810 0.4390 +122786 255231 0.6490 +122786 260425 0.4140 +122786 286204 0.6170 +122809 140462 0.6040 +122809 146850 0.5400 +122809 441925 0.5400 +122809 110117498 0.5400 +122830 151987 0.4560 +122830 374354 0.4680 +122876 170589 0.9990 +122876 390199 0.4460 +122876 594857 0.4960 +122876 653519 0.4200 +122945 161394 0.5130 +122945 221477 0.4360 +122945 283578 0.6360 +122945 643382 0.5800 +122953 124599 0.4020 +122961 131076 0.4920 +122961 131118 0.4790 +122961 150274 0.7950 +122961 200205 0.9980 +122961 387787 0.5940 +122961 388323 0.4700 +122961 388962 0.8410 +122961 552900 0.5410 +122961 644096 0.4030 +122961 654483 0.5330 +122970 125061 0.4900 +122970 219743 0.5900 +122970 284486 0.9120 +122970 399671 0.4330 +122970 641371 0.9050 +123036 134957 0.6340 +123036 286133 0.5960 +123036 101059938 0.4560 +123041 152816 0.6960 +123041 219931 0.9150 +123041 222950 0.4560 +123041 245802 0.5450 +123041 256764 0.6890 +123041 286077 0.6430 +123041 399888 0.4740 +123041 401138 0.5450 +123041 643680 0.5710 +123096 389558 0.5170 +123099 125981 0.9560 +123099 130367 0.9400 +123099 142891 0.5050 +123099 166929 0.9490 +123099 204219 0.9630 +123099 253782 0.9680 +123099 259230 0.9430 +123099 283212 0.4320 +123099 339221 0.9350 +123099 340485 0.9540 +123103 135293 0.5150 +123103 147670 0.4310 +123103 152065 0.4780 +123103 284498 0.4110 +123103 342850 0.4210 +123103 401265 0.4100 +123103 493901 0.4460 +123103 647286 0.4100 +123169 124245 0.5660 +123169 124808 0.6220 +123169 125476 0.4020 +123169 126961 0.8760 +123169 127428 0.4860 +123169 128312 0.4390 +123169 130502 0.4750 +123169 147700 0.4750 +123169 158248 0.4750 +123169 158983 0.4420 +123169 159013 0.4900 +123169 160335 0.4760 +123169 160418 0.4990 +123169 161582 0.4790 +123169 164118 0.4750 +123169 170082 0.4820 +123169 221120 0.4100 +123169 255626 0.7040 +123169 283237 0.5050 +123169 286436 0.4420 +123169 333932 0.8750 +123169 340096 0.4010 +123169 391769 0.4010 +123169 439996 0.4750 +123169 440093 0.6940 +123169 440686 0.6940 +123169 440689 0.4460 +123169 554313 0.8610 +123169 653604 0.9380 +123169 728642 0.5730 +123169 100526794 0.4750 +123169 100532724 0.4750 +123169 114483833 0.4440 +123207 123720 0.4780 +123207 123722 0.4500 +123207 126823 0.4460 +123207 157310 0.4390 +123207 205327 0.4590 +123207 254427 0.5600 +123207 283106 0.5130 +123207 390883 0.5420 +123207 401207 0.4700 +123207 414919 0.5790 +123207 415117 0.4200 +123207 494188 0.4100 +123207 548644 0.4430 +123228 123879 0.4120 +123228 126119 0.4190 +123228 130013 0.8960 +123228 140739 0.7700 +123228 143471 0.4990 +123228 148811 0.4100 +123228 205564 0.6230 +123228 221302 0.4450 +123228 100526760 0.4240 +123228 102157402 0.6110 +123263 124454 0.6500 +123263 132949 0.5830 +123263 138428 0.4360 +123263 142940 0.5870 +123263 147699 0.4190 +123263 151649 0.4190 +123263 151742 0.4190 +123263 152926 0.5350 +123263 154865 0.4190 +123263 158584 0.4530 +123263 160760 0.4280 +123263 196074 0.4440 +123263 200895 0.9570 +123263 219927 0.5190 +123263 221078 0.7040 +123263 254042 0.4120 +123263 285521 0.4490 +123263 387338 0.7810 +123263 440275 0.4290 +123263 441024 0.9810 +123263 729020 0.4040 +123264 151306 0.5830 +123264 152831 0.5430 +123264 200931 0.9990 +123264 347051 0.4050 +123283 124454 0.7820 +123283 374659 0.6710 +123283 440275 0.6470 +123283 100526842 0.4300 +123346 125965 0.4850 +123346 126520 0.4540 +123346 138241 0.5000 +123346 140823 0.4250 +123346 146556 0.5310 +123346 200895 0.4520 +123346 283459 0.5590 +123346 343172 0.4160 +123346 388753 0.5190 +123346 729233 0.4350 +123346 729240 0.5960 +123355 140461 0.4810 +123355 375387 0.4010 +123355 389816 0.4370 +123591 202051 0.4360 +123591 202052 0.4170 +123591 203197 0.6170 +123591 339768 0.4910 +123591 341880 0.5960 +123606 137492 0.5130 +123606 203228 0.4160 +123606 254428 0.4680 +123624 125336 0.8160 +123624 163782 0.7090 +123688 342132 0.4560 +123720 123722 0.4360 +123720 145447 0.5730 +123720 345456 0.4340 +123720 375189 0.4460 +123720 442721 0.4010 +123720 653857 0.9090 +123722 137209 0.4450 +123722 388591 0.5030 +123722 401265 0.4020 +123745 133121 0.6960 +123745 151056 0.7290 +123745 222236 0.4470 +123745 254531 0.6600 +123745 255043 0.6500 +123745 255189 0.4820 +123745 283748 0.4860 +123745 284161 0.6990 +123745 284541 0.6610 +123745 375775 0.7730 +123745 387521 0.6500 +123745 387522 0.6500 +123745 646262 0.4150 +123745 100137049 0.4580 +123775 253143 0.4060 +123803 130560 0.4150 +123803 140856 0.4250 +123803 146894 0.5800 +123803 197131 0.7080 +123803 255027 0.5740 +123803 388595 0.4410 +123811 145258 0.9540 +123811 154141 0.4170 +123811 165055 0.5330 +123811 254173 0.4510 +123811 255027 0.6680 +123811 375307 0.5960 +123811 408050 0.5730 +123811 642799 0.4080 +123811 729440 0.6250 +123811 100288332 0.4110 +123811 100534599 0.8400 +123872 128229 0.4270 +123872 139212 0.8250 +123872 146754 0.5160 +123872 146845 0.4890 +123872 149465 0.5180 +123872 160762 0.4490 +123872 161582 0.8610 +123872 164781 0.6120 +123872 196385 0.4520 +123872 200162 0.4540 +123872 200373 0.4310 +123872 201625 0.5930 +123872 202500 0.4370 +123872 221421 0.9310 +123872 338699 0.5990 +123872 339829 0.8050 +123872 344387 0.4610 +123872 345643 0.5170 +123872 345895 0.9430 +123872 352909 0.8860 +123872 374407 0.4200 +123872 388389 0.8240 +123876 132949 0.5440 +123876 137872 0.4010 +123876 157869 0.4530 +123876 197322 0.5200 +123876 254042 0.4590 +123876 348158 0.9990 +123876 376497 0.4500 +123876 387601 0.6330 +123876 100129583 0.4920 +123876 100631383 0.4480 +123879 126433 0.4990 +123879 140739 0.9900 +123879 143384 0.4120 +123879 144699 0.4990 +123879 146330 0.4990 +123879 149951 0.4990 +123879 150684 0.4990 +123879 150726 0.4990 +123879 170622 0.5000 +123879 201456 0.5070 +123879 222235 0.4990 +123879 283807 0.4990 +123879 285231 0.4990 +123904 388394 0.5260 +123904 100131187 0.4280 +123920 146223 0.9660 +123920 146225 0.9680 +123920 146227 0.4470 +123920 148932 0.4640 +123920 152189 0.7610 +123920 166863 0.4080 +123920 337867 0.4350 +123970 124460 0.4220 +123970 255919 0.5950 +123970 728498 0.4150 +123970 101059918 0.4110 +124044 124045 0.4300 +124045 389320 0.5600 +124056 405753 0.6360 +124056 653361 0.9960 +124093 131377 0.4870 +124093 146439 0.5950 +124093 159989 0.7460 +124093 166979 0.4110 +124093 246329 0.4370 +124093 345643 0.6040 +124093 390594 0.6190 +124152 163688 0.4400 +124152 254050 0.4890 +124152 284992 0.5130 +124152 286464 0.4280 +124152 400506 0.7520 +124220 401137 0.5390 +124220 100128927 0.4430 +124222 148327 0.5340 +124222 344838 0.5740 +124245 135295 0.5450 +124245 140890 0.4510 +124245 196441 0.6280 +124245 200316 0.4340 +124245 221496 0.4170 +124245 284695 0.4590 +124245 494115 0.4810 +124245 728642 0.4700 +124274 134391 0.5730 +124274 285601 0.4680 +124274 344561 0.4760 +124274 344758 0.6250 +124274 353345 0.4310 +124274 387509 0.4730 +124274 390212 0.4800 +124274 647286 0.5410 +124359 126961 0.9230 +124359 140856 0.4130 +124359 254042 0.4030 +124359 284422 0.4840 +124359 333932 0.9230 +124359 353513 0.6060 +124359 402415 0.4050 +124359 440686 0.9350 +124359 653604 0.9350 +124359 100526842 0.4160 +124359 109703458 0.5000 +124359 122405565 0.4840 +124401 140609 0.9370 +124401 197335 0.5680 +124401 201255 0.6390 +124401 203286 0.9940 +124401 261734 0.4810 +124401 284086 0.9130 +124401 645191 0.4140 +124402 255783 0.4920 +124402 342346 0.4470 +124402 100507290 0.4480 +124404 136263 0.4410 +124404 140732 0.5040 +124404 145645 0.4030 +124404 148170 0.5010 +124404 150365 0.4250 +124404 151011 0.9370 +124404 255220 0.4930 +124404 256979 0.5090 +124404 283417 0.4910 +124404 283629 0.4650 +124404 284680 0.5030 +124404 317719 0.4370 +124404 346288 0.6390 +124404 374407 0.5040 +124404 399823 0.4050 +124411 129285 0.4500 +124411 197335 0.4110 +124411 730094 0.4250 +124446 146378 0.5920 +124446 253980 0.6570 +124446 253982 0.6320 +124446 283897 0.6610 +124446 283899 0.6930 +124446 440699 0.4200 +124446 653808 0.4470 +124446 112267897 0.4120 +124454 126402 0.6750 +124454 140032 0.6530 +124454 140801 0.5260 +124454 143244 0.6050 +124454 147011 0.4250 +124454 150274 0.4110 +124454 154288 0.4250 +124454 158584 0.7060 +124454 200916 0.6590 +124454 221823 0.4080 +124454 283459 0.6560 +124454 285855 0.5950 +124454 343068 0.5100 +124454 343070 0.5100 +124454 347487 0.6270 +124454 348995 0.4320 +124454 374395 0.4190 +124454 387129 0.5820 +124454 390999 0.5100 +124454 391002 0.5100 +124454 400735 0.5100 +124454 400736 0.5100 +124454 440560 0.5100 +124454 440561 0.5100 +124454 441873 0.5100 +124454 619279 0.4250 +124454 641776 0.5370 +124454 642987 0.4250 +124454 643909 0.5370 +124454 645051 0.5170 +124454 645073 0.5170 +124454 645359 0.5100 +124454 653619 0.5100 +124454 728524 0.5370 +124454 729396 0.5170 +124454 729422 0.5170 +124454 729428 0.5170 +124454 729431 0.5170 +124454 729442 0.5170 +124454 729447 0.5170 +124454 729528 0.5100 +124454 100008586 0.5170 +124454 100132399 0.5170 +124454 100287482 0.6270 +124454 100505478 0.5820 +124454 100526842 0.6640 +124454 100529097 0.6930 +124454 100529239 0.6280 +124454 100885850 0.4620 +124454 100996746 0.5370 +124454 101929983 0.5100 +124454 102724473 0.5170 +124454 105180390 0.5370 +124454 105180391 0.5370 +124460 131965 0.4660 +124460 223082 0.4350 +124460 257106 0.6400 +124491 219738 0.4290 +124491 653082 0.5200 +124491 653567 0.4100 +124512 134145 0.4400 +124512 146664 0.4330 +124512 196483 0.6190 +124512 200424 0.4510 +124512 221143 0.5660 +124512 254013 0.6180 +124512 399818 0.5880 +124512 439921 0.4690 +124535 133874 0.4180 +124535 149699 0.4760 +124538 125958 0.5600 +124538 284521 0.5110 +124538 391196 0.5120 +124538 401427 0.5180 +124540 202559 0.4280 +124565 153129 0.5410 +124565 100142659 0.4500 +124583 126792 0.4340 +124583 139596 0.9000 +124583 158067 0.4780 +124583 221264 0.7640 +124583 374659 0.9000 +124583 377841 0.9370 +124583 654364 0.7260 +124583 100526794 0.6870 +124590 145483 0.5910 +124590 146183 0.4240 +124590 161497 0.6350 +124590 222662 0.6030 +124590 246213 0.4290 +124590 259236 0.4210 +124590 286262 0.4030 +124590 340990 0.5830 +124590 375298 0.4630 +124590 388939 0.4510 +124590 389207 0.5720 +124590 494513 0.4190 +124590 643226 0.4890 +124599 146722 0.8730 +124599 146894 0.4820 +124599 151195 0.4500 +124599 157570 0.4300 +124599 157922 0.4150 +124599 160364 0.4410 +124599 285852 0.6340 +124599 340205 0.6650 +124599 342510 0.7680 +124599 100131439 0.7370 +124602 146909 0.6090 +124602 147700 0.4040 +124602 152110 0.4050 +124602 221458 0.6060 +124602 259266 0.4100 +124602 285643 0.5730 +124602 342918 0.4470 +124602 374654 0.6150 +124602 388419 0.6050 +124626 124912 0.4280 +124626 133491 0.4890 +124626 158297 0.4070 +124626 163486 0.4510 +124626 200162 0.4220 +124626 203102 0.4640 +124626 284110 0.6610 +124626 399814 0.4640 +124626 100505591 0.7180 +124637 140432 0.5170 +124637 159686 0.4600 +124637 284371 0.4070 +124641 285148 0.4020 +124641 102288414 0.4510 +124739 126119 0.4280 +124739 139562 0.4250 +124739 159195 0.5750 +124739 161725 0.4830 +124739 219927 0.4160 +124739 646424 0.4380 +124751 124923 0.4300 +124751 170261 0.5270 +124773 124989 0.4430 +124773 146861 0.4930 +124773 148870 0.4680 +124773 153572 0.4760 +124773 162387 0.4350 +124773 162517 0.4540 +124773 245936 0.5800 +124773 254272 0.5120 +124773 256223 0.5830 +124773 339168 0.4310 +124773 353149 0.4580 +124773 374286 0.4450 +124773 387104 0.4180 +124773 388333 0.4740 +124773 388403 0.4270 +124773 414059 0.4180 +124773 643664 0.4800 +124773 100505591 0.4700 +124773 100505724 0.4060 +124773 101060321 0.4470 +124783 643803 0.5730 +124790 128312 0.4250 +124790 148534 0.5620 +124790 222894 0.7550 +124801 134353 0.5940 +124801 149986 0.5570 +124801 196513 0.4780 +124801 347744 0.7520 +124801 348262 0.7200 +124801 100131244 0.4670 +124808 221937 0.4640 +124817 150280 0.4270 +124817 284338 0.4890 +124817 285498 0.8440 +124817 548593 0.4370 +124842 126321 0.4980 +124842 253769 0.4690 +124842 255349 0.4620 +124842 283554 0.4600 +124842 728361 0.4410 +124842 100130519 0.5890 +124857 152404 0.5340 +124857 286676 0.5190 +124857 345193 0.4240 +124872 148789 0.4080 +124872 283358 0.4140 +124872 646960 0.4290 +124912 139135 0.4500 +124912 140823 0.4410 +124912 147744 0.6570 +124912 171169 0.4510 +124912 219972 0.5340 +124912 246777 0.5910 +124912 256309 0.5670 +124912 256710 0.4190 +124912 284359 0.5830 +124912 431705 0.5180 +124912 728137 0.5590 +124912 100289087 0.4380 +124923 254272 0.4200 +124923 256223 0.5050 +124923 388364 0.4030 +124925 348378 0.4480 +124930 138429 0.5220 +124930 345062 0.4720 +124930 349667 0.4910 +124930 641649 0.5340 +124930 646658 0.5320 +124935 145389 0.4750 +124935 151258 0.4320 +124935 340024 0.6050 +124936 130026 0.4490 +124936 148206 0.4610 +124936 149041 0.4260 +124936 164091 0.4960 +124936 256356 0.4400 +124936 344838 0.5340 +124936 353088 0.4150 +124944 125476 0.9000 +124944 284058 0.9000 +124944 100529209 0.5430 +124975 137362 0.7320 +124975 160287 0.6360 +124975 221357 0.6850 +124975 257202 0.7400 +124975 493869 0.7310 +124975 494143 0.9060 +124975 548596 0.4510 +124975 653689 0.7070 +124975 728226 0.8830 +124976 130367 0.4850 +124976 388931 0.9900 +124989 139599 0.4270 +124989 146779 0.4920 +124989 146861 0.4210 +124989 148103 0.4180 +124989 148109 0.4790 +124989 254272 0.4580 +124989 256223 0.5070 +124989 283238 0.4810 +124989 284349 0.4170 +124989 284433 0.4640 +124989 353149 0.4070 +124989 390883 0.4460 +124989 642489 0.4880 +124989 643664 0.4180 +124989 728734 0.5300 +124989 100505591 0.4130 +124989 100507607 0.4890 +124995 126402 0.5740 +124995 128308 0.9650 +124995 130916 0.8330 +124995 140801 0.5750 +124995 149478 0.4320 +124995 157310 0.6600 +124995 219402 0.5480 +124995 219927 0.9640 +124995 285282 0.4150 +124995 347487 0.5530 +124995 387338 0.8340 +124995 100287482 0.5530 +124995 100526842 0.5230 +124995 127898561 0.8380 +124997 126321 0.4530 +124997 157638 0.4180 +124997 221960 0.6300 +124997 286077 0.4090 +124997 347734 0.4110 +124997 440738 0.7990 +124997 727910 0.5010 +125058 128637 0.5520 +125058 151742 0.4380 +125058 374403 0.4270 +125058 400451 0.4330 +125061 130013 0.6870 +125061 143689 0.4410 +125061 169355 0.9740 +125061 255027 0.4010 +125111 127534 0.7570 +125111 219770 0.4630 +125111 349149 0.4640 +125111 375519 0.4260 +125111 100126572 0.7020 +125113 284615 0.4120 +125113 388558 0.4060 +125115 147183 0.5050 +125115 147409 0.4160 +125115 162605 0.4820 +125115 192666 0.4500 +125115 337878 0.4200 +125115 342574 0.5540 +125115 353288 0.5000 +125115 390792 0.4640 +125150 126074 0.9960 +125150 136647 0.4320 +125150 139599 0.4960 +125150 152485 0.4460 +125150 283847 0.4370 +125150 286257 0.9000 +125150 440574 0.4740 +125150 474170 0.4180 +125150 105375355 0.5400 +125170 139341 0.5810 +125170 192111 0.4470 +125206 127845 0.4530 +125206 160728 0.4050 +125206 160760 0.4080 +125206 200844 0.4060 +125206 644815 0.4600 +125228 341019 0.5270 +125336 126326 0.6150 +125336 128387 0.5130 +125336 131149 0.4570 +125336 146183 0.6320 +125336 152137 0.4320 +125336 153562 0.4280 +125336 161497 0.6940 +125336 163782 0.6660 +125336 222389 0.4410 +125336 222662 0.4790 +125336 259236 0.5240 +125336 286262 0.5400 +125336 286676 0.5060 +125336 340990 0.4830 +125336 375611 0.5920 +125336 388551 0.5540 +125336 389207 0.6000 +125336 494470 0.5940 +125336 494513 0.5730 +125336 643226 0.4520 +125336 652991 0.5920 +125476 164684 0.6350 +125476 283899 0.9910 +125476 284058 0.9000 +125476 440093 0.4650 +125476 440686 0.4650 +125476 653604 0.4650 +125476 100529209 0.5400 +125488 283237 0.5100 +125704 164832 0.4160 +125704 253559 0.4220 +125704 377007 0.4650 +125875 128861 0.4960 +125875 140683 0.4150 +125875 149954 0.4040 +125875 220004 0.4340 +125875 728568 0.4370 +125893 126017 0.6980 +125893 390538 0.5070 +125893 401992 0.5430 +125919 147687 0.5550 +125919 374928 0.4610 +125919 390431 0.4800 +125919 390883 0.4160 +125931 340596 0.4010 +125931 645414 0.4860 +125931 729767 0.4770 +125958 127385 0.5370 +125958 127623 0.5100 +125958 128366 0.5550 +125958 128367 0.5160 +125958 132112 0.6890 +125958 135946 0.5230 +125958 143503 0.5290 +125958 196477 0.4070 +125958 219436 0.5440 +125958 219438 0.5290 +125958 219473 0.5300 +125958 219477 0.5160 +125958 219493 0.5310 +125958 219858 0.5170 +125958 219957 0.5840 +125958 219968 0.5200 +125958 282763 0.5350 +125958 282775 0.5220 +125958 283093 0.5220 +125958 283159 0.5090 +125958 284433 0.5140 +125958 284521 0.5050 +125958 338398 0.4470 +125958 340980 0.5190 +125958 341152 0.5080 +125958 343169 0.5160 +125958 343171 0.5180 +125958 344892 0.6770 +125958 388761 0.5040 +125958 390038 0.5340 +125958 390059 0.5220 +125958 390082 0.5130 +125958 390093 0.5560 +125958 390155 0.5510 +125958 390157 0.5300 +125958 390174 0.5410 +125958 390264 0.5540 +125958 390265 0.5540 +125958 390271 0.5300 +125958 390275 0.5100 +125958 390892 0.5350 +125958 391194 0.5280 +125958 391196 0.5510 +125958 392138 0.5220 +125958 401427 0.5170 +125958 402317 0.5130 +125958 442184 0.5310 +125958 442185 0.5160 +125958 442186 0.5510 +125958 442191 0.5340 +125962 374879 0.4340 +125962 728299 0.4420 +125963 144132 0.4730 +125963 163859 0.4550 +125963 347541 0.5180 +125965 126328 0.5500 +125965 140564 0.5910 +125965 164668 0.5880 +125965 164684 0.6010 +125965 170712 0.8380 +125965 192286 0.4850 +125965 200315 0.5880 +125965 200316 0.5880 +125965 219938 0.4300 +125965 259307 0.4170 +125965 267020 0.4990 +125965 283459 0.7700 +125965 341947 0.6810 +125965 374291 0.6460 +125965 388753 0.4690 +125965 440567 0.8630 +125965 613227 0.4020 +125965 100532726 0.5350 +125965 105372267 0.4420 +125972 136242 0.6200 +125972 140894 0.4240 +125972 201595 0.4440 +125972 203074 0.4700 +125972 204474 0.7490 +125972 282996 0.4480 +125972 338879 0.5190 +125972 339416 0.6390 +125981 130367 0.9430 +125981 147409 0.4240 +125981 166929 0.9530 +125981 204219 0.9650 +125981 253782 0.9640 +125981 259230 0.9580 +125981 339221 0.8090 +125981 340485 0.9150 +125981 375298 0.4240 +125981 653308 0.5900 +125988 126328 0.6410 +125988 139322 0.9990 +125988 140823 0.6370 +125988 165100 0.4220 +125988 345778 0.7910 +125988 374875 0.4530 +125988 387990 0.5400 +125988 400916 0.9780 +125988 401505 0.8190 +125988 440574 0.9840 +125988 100188893 0.6860 +125997 129868 0.8420 +125997 140686 0.4450 +125997 162979 0.4320 +125997 201516 0.7740 +125997 284383 0.4800 +125997 284428 0.6610 +125997 342900 0.7820 +125997 343068 0.6050 +125997 343070 0.5960 +125997 390999 0.6290 +125997 400735 0.4420 +125997 440560 0.5230 +125997 440561 0.5770 +125997 441873 0.5170 +125997 442247 0.4850 +125997 503835 0.4330 +125997 653619 0.7360 +125997 653657 0.8680 +125997 100033411 0.4710 +125997 100129128 0.6320 +125997 100288687 0.7180 +126003 163782 0.7000 +126003 167691 0.8720 +126003 285180 0.6040 +126003 339122 0.7250 +126003 374877 0.4780 +126003 401409 0.5960 +126003 100128327 0.9930 +126006 128822 0.4570 +126006 165140 0.4160 +126006 199675 0.4570 +126006 200407 0.4610 +126006 284611 0.5120 +126006 338442 0.4090 +126006 342371 0.4420 +126006 346562 0.5870 +126006 643866 0.5050 +126006 100131801 0.5410 +126014 128506 0.6480 +126014 199675 0.4200 +126014 245972 0.6030 +126017 162967 0.4370 +126017 170958 0.7660 +126017 195977 0.4630 +126068 143884 0.4430 +126068 339778 0.5280 +126069 143884 0.4790 +126070 143884 0.4360 +126070 341418 0.5740 +126070 727764 0.6210 +126070 128966690 0.6210 +126074 126075 0.4830 +126074 254528 0.6420 +126074 286257 0.9020 +126074 403273 0.4310 +126074 105375355 0.5400 +126075 374882 0.4550 +126119 128312 0.4850 +126119 139562 0.4820 +126119 144699 0.4020 +126119 158983 0.4840 +126119 199675 0.5850 +126119 219333 0.4620 +126119 219743 0.6140 +126119 220074 0.5060 +126119 220213 0.4760 +126119 221302 0.7340 +126119 255626 0.4770 +126119 284111 0.6450 +126119 286436 0.4840 +126119 373509 0.5410 +126119 377630 0.5280 +126119 389856 0.4080 +126119 440689 0.4850 +126119 114483833 0.4850 +126123 162998 0.5020 +126123 171169 0.5180 +126123 203102 0.5720 +126123 256710 0.4630 +126123 283847 0.4630 +126123 284359 0.7520 +126123 390437 0.5250 +126123 100129669 0.8480 +126129 132949 0.8300 +126129 133522 0.4520 +126129 254263 0.4680 +126129 375567 0.4210 +126129 376497 0.5910 +126129 387082 0.5490 +126133 130013 0.4290 +126133 137872 0.4430 +126133 150864 0.4460 +126133 109703458 0.4100 +126147 137970 0.4670 +126147 219699 0.4060 +126147 266727 0.4840 +126204 146223 0.4250 +126204 147991 0.5060 +126204 402381 0.4620 +126204 648791 0.4620 +126206 132243 0.4410 +126206 135935 0.4070 +126206 154288 0.9930 +126206 197135 0.5230 +126206 204474 0.4140 +126206 219990 0.4210 +126206 283518 0.4550 +126206 326340 0.7250 +126206 340168 0.4480 +126206 344018 0.4790 +126206 346171 0.5020 +126206 353238 0.8730 +126206 359787 0.4400 +126206 374955 0.4020 +126206 441161 0.9960 +126206 494551 0.4270 +126208 147808 0.4220 +126208 149371 0.4180 +126208 219348 0.4020 +126208 440348 0.4260 +126208 728780 0.5440 +126248 142689 0.4860 +126248 202374 0.4160 +126248 353141 0.4400 +126259 131450 0.4160 +126259 151888 0.5100 +126259 153527 0.5760 +126259 154007 0.4470 +126259 164045 0.4190 +126259 164781 0.4390 +126259 201633 0.4470 +126259 220074 0.4850 +126259 222183 0.4470 +126259 256536 0.4160 +126259 284325 0.5890 +126259 348793 0.4390 +126259 388364 0.4240 +126259 392517 0.4030 +126259 100534599 0.4340 +126259 100996928 0.4560 +126272 163126 0.4010 +126272 493861 0.6760 +126282 152940 0.4990 +126298 148014 0.5680 +126298 284307 0.4300 +126298 345611 0.4050 +126298 388228 0.4330 +126298 389177 0.4020 +126299 126969 0.6560 +126299 494143 0.4130 +126299 102724473 0.4720 +126306 246329 0.6860 +126306 284612 0.5620 +126308 388559 0.5070 +126321 130589 0.4110 +126321 162387 0.6240 +126321 219931 0.5070 +126321 256471 0.5150 +126321 283652 0.6080 +126321 284612 0.5280 +126321 400451 0.4120 +126326 146183 0.5840 +126326 148066 0.7720 +126326 152137 0.4330 +126326 153562 0.4090 +126326 161497 0.5150 +126326 222662 0.5420 +126326 253827 0.4320 +126326 259236 0.5530 +126326 286262 0.5840 +126326 286676 0.5120 +126326 375611 0.4280 +126326 388551 0.4690 +126326 389207 0.6900 +126326 494513 0.5480 +126326 643226 0.5020 +126328 128308 0.5000 +126328 137682 0.6500 +126328 139221 0.5920 +126328 140823 0.6380 +126328 170712 0.4990 +126328 192286 0.4970 +126328 219927 0.4880 +126328 254863 0.4890 +126328 374291 0.9990 +126328 404672 0.4170 +126328 440574 0.4360 +126328 728317 0.5920 +126328 100532726 0.8380 +126353 445815 0.5710 +126364 126792 0.4140 +126364 150372 0.7870 +126364 170463 0.4950 +126364 653361 0.4120 +126364 100049587 0.5740 +126370 158809 0.4310 +126370 283999 0.5180 +126370 386683 0.5940 +126370 390664 0.4370 +126374 145567 0.4690 +126374 284402 0.5070 +126374 115253422 0.4180 +126382 196483 0.4430 +126382 284439 0.4880 +126382 374887 0.4320 +126393 161514 0.4070 +126393 165721 0.4290 +126393 259217 0.4190 +126402 128308 0.4090 +126402 133558 0.4440 +126402 139804 0.5070 +126402 140032 0.8100 +126402 140801 0.8490 +126402 143244 0.8340 +126402 143630 0.4410 +126402 148022 0.4360 +126402 153443 0.5430 +126402 157310 0.5180 +126402 158067 0.4250 +126402 164153 0.5200 +126402 169522 0.5030 +126402 170850 0.5030 +126402 200916 0.7180 +126402 219927 0.9690 +126402 219981 0.4150 +126402 221264 0.4250 +126402 254268 0.7740 +126402 255308 0.6150 +126402 283518 0.5030 +126402 285855 0.8140 +126402 342538 0.5000 +126402 343068 0.5810 +126402 343070 0.5810 +126402 345051 0.4610 +126402 345630 0.6010 +126402 347487 0.8530 +126402 353376 0.4360 +126402 374659 0.8010 +126402 374786 0.4380 +126402 387103 0.4340 +126402 387129 0.8140 +126402 388795 0.4480 +126402 390999 0.5900 +126402 391002 0.5810 +126402 400735 0.5810 +126402 400736 0.5810 +126402 440560 0.5990 +126402 440561 0.5810 +126402 441873 0.5810 +126402 641776 0.6750 +126402 643909 0.6750 +126402 644186 0.4120 +126402 645051 0.5880 +126402 645073 0.5880 +126402 645359 0.5810 +126402 653619 0.5810 +126402 654364 0.5090 +126402 728524 0.6750 +126402 728689 0.6080 +126402 729396 0.5880 +126402 729422 0.5880 +126402 729428 0.5880 +126402 729431 0.5880 +126402 729442 0.5880 +126402 729447 0.5880 +126402 729528 0.5810 +126402 100008586 0.5880 +126402 100132015 0.5440 +126402 100132399 0.5880 +126402 100287482 0.7690 +126402 100302736 0.4360 +126402 100505478 0.8050 +126402 100526842 0.8580 +126402 100529097 0.8010 +126402 100529239 0.8510 +126402 100996746 0.6750 +126402 101929983 0.5810 +126402 102724473 0.5880 +126402 105180390 0.6750 +126402 105180391 0.6750 +126402 114483834 0.5600 +126410 132949 0.5170 +126410 204219 0.8060 +126410 285848 0.8870 +126410 348938 0.9860 +126410 643418 0.8720 +126432 259173 0.6230 +126432 643669 0.4860 +126433 134111 0.5480 +126433 201931 0.4640 +126520 146556 0.4050 +126520 166979 0.4890 +126520 286151 0.4650 +126520 494551 0.4130 +126520 642636 0.6410 +126526 148014 0.4450 +126526 163131 0.4190 +126526 166815 0.4370 +126526 220108 0.4330 +126526 284323 0.4490 +126526 284325 0.4840 +126526 339327 0.4290 +126541 347404 0.4770 +126541 780776 0.5070 +126549 140836 0.4890 +126549 161291 0.4750 +126549 163747 0.5670 +126549 221472 0.4270 +126549 221496 0.6560 +126549 342908 0.4250 +126549 348654 0.4820 +126549 548593 0.5160 +126567 284451 0.4730 +126626 163087 0.5540 +126626 256356 0.5070 +126626 374860 0.4350 +126626 554226 0.4730 +126626 641455 0.5070 +126637 126638 0.4150 +126637 146779 0.4060 +126637 147183 0.4140 +126637 147645 0.4040 +126637 149018 0.6330 +126637 163778 0.6340 +126637 164633 0.4200 +126637 170591 0.4550 +126637 339105 0.4540 +126637 339398 0.4370 +126637 340526 0.4650 +126637 353140 0.4030 +126637 353144 0.5010 +126637 374454 0.4580 +126637 388698 0.4190 +126637 448834 0.5220 +126637 647024 0.4160 +126637 654364 0.4220 +126638 147409 0.5530 +126638 149018 0.6930 +126638 163778 0.5130 +126638 170591 0.5710 +126638 199834 0.5160 +126638 254910 0.7550 +126638 353131 0.5920 +126638 353132 0.7200 +126638 353133 0.7210 +126638 353134 0.6360 +126638 353135 0.6970 +126638 353137 0.6340 +126638 353139 0.6980 +126638 353140 0.6640 +126638 353141 0.6070 +126638 353142 0.7540 +126638 353143 0.7870 +126638 353144 0.8270 +126638 353145 0.7550 +126638 388533 0.4200 +126638 388697 0.4420 +126638 388698 0.5190 +126638 390061 0.4360 +126638 448834 0.5840 +126638 448835 0.6330 +126638 729767 0.4690 +126661 388595 0.5300 +126661 644596 0.5060 +126661 100131755 0.4730 +126668 126669 0.6410 +126668 163589 0.5260 +126668 360205 0.5940 +126695 128218 0.6090 +126695 140893 0.4780 +126695 149466 0.4670 +126695 200634 0.4030 +126731 152185 0.4080 +126731 153241 0.4500 +126731 387119 0.4170 +126731 541578 0.4320 +126755 127428 0.5220 +126755 142689 0.4710 +126755 157855 0.5840 +126755 282775 0.4170 +126755 339291 0.4870 +126755 376132 0.4310 +126755 389257 0.4640 +126755 389816 0.5640 +126755 391002 0.4590 +126755 645974 0.4310 +126767 131831 0.4020 +126767 148811 0.4010 +126767 195827 0.4590 +126767 643394 0.4610 +126767 646625 0.4010 +126789 130916 0.4560 +126789 142940 0.8020 +126789 150223 0.5430 +126789 150962 0.6160 +126789 196074 0.6530 +126789 219743 0.4380 +126789 221078 0.4040 +126789 253582 0.5590 +126789 285367 0.7590 +126789 339451 0.4330 +126789 387338 0.5660 +126789 100130890 0.5120 +126789 100131187 0.5120 +126789 101928527 0.4330 +126789 127898561 0.4310 +126792 163183 0.4360 +126792 166012 0.4460 +126792 221914 0.5550 +126792 347734 0.5540 +126792 375790 0.5480 +126820 127602 0.5750 +126820 140735 0.5120 +126820 144132 0.7030 +126820 146754 0.8770 +126820 154664 0.4400 +126820 160762 0.4560 +126820 164684 0.4950 +126820 196385 0.6010 +126820 201625 0.7080 +126820 202915 0.5010 +126820 206338 0.4790 +126820 345895 0.5560 +126820 388389 0.5080 +126823 147011 0.5020 +126823 257106 0.5820 +126823 339512 0.6750 +126823 388324 0.4460 +126823 728591 0.4140 +126859 254158 0.7500 +126859 284067 0.5430 +126859 339779 0.5180 +126859 342918 0.5830 +126868 145282 0.4220 +126868 151963 0.6010 +126868 246329 0.5590 +126868 345643 0.4580 +126868 389177 0.5580 +126868 401024 0.5100 +126868 642597 0.4800 +126868 647309 0.4930 +126917 643155 0.4470 +126961 128312 0.8910 +126961 129685 0.8000 +126961 144097 0.8000 +126961 144108 0.9090 +126961 152098 0.9120 +126961 253175 0.8470 +126961 255626 0.4830 +126961 317772 0.9510 +126961 333932 0.9810 +126961 387893 0.9160 +126961 400569 0.8000 +126961 404672 0.8210 +126961 440093 0.8720 +126961 440686 0.9010 +126961 440689 0.9040 +126961 474381 0.4160 +126961 554313 0.9640 +126961 653604 0.9310 +126961 723790 0.9600 +126961 114483833 0.4130 +126969 153201 0.5020 +126969 727800 0.5060 +127002 146057 0.4500 +127002 158880 0.6810 +127002 284613 0.4280 +127002 387332 0.4040 +127002 389856 0.6850 +127002 552889 0.5210 +127003 128344 0.4420 +127003 128602 0.4310 +127003 129881 0.8720 +127003 133690 0.5310 +127003 134121 0.8750 +127003 135138 0.8460 +127003 138162 0.8490 +127003 138255 0.8470 +127003 139212 0.4380 +127003 145788 0.8280 +127003 146845 0.8710 +127003 150483 0.8340 +127003 151651 0.8300 +127003 152110 0.5360 +127003 158798 0.4450 +127003 160762 0.4550 +127003 161502 0.8360 +127003 197335 0.4310 +127003 219670 0.8570 +127003 219681 0.7030 +127003 220136 0.8500 +127003 220388 0.4580 +127003 254268 0.4390 +127003 254956 0.5070 +127003 257177 0.9310 +127003 284257 0.4780 +127003 339778 0.8410 +127003 388701 0.8360 +127003 389799 0.8150 +127003 401551 0.5270 +127003 402573 0.4180 +127003 440585 0.8160 +127003 730112 0.8220 +127003 100128569 0.5070 +127018 129787 0.5490 +127018 132789 0.5980 +127018 157848 0.4040 +127018 221895 0.4730 +127018 222234 0.4180 +127018 257194 0.4450 +127018 340146 0.4170 +127018 345275 0.5580 +127059 391194 0.7810 +127059 728299 0.4850 +127064 148932 0.4740 +127064 391195 0.4060 +127064 400713 0.5070 +127066 731220 0.4150 +127068 140625 0.5420 +127068 375484 0.4180 +127069 284451 0.4820 +127069 100287404 0.4320 +127077 171484 0.5070 +127124 144577 0.4990 +127124 147007 0.7220 +127124 153129 0.4990 +127124 154743 0.4140 +127124 155006 0.4050 +127124 155066 0.8820 +127124 163486 0.4420 +127124 163882 0.7540 +127124 245972 0.9610 +127124 245973 0.9510 +127124 389541 0.4990 +127124 440400 0.8960 +127247 140456 0.5670 +127247 140460 0.4770 +127247 140462 0.4700 +127247 140739 0.4990 +127247 147991 0.4850 +127247 149951 0.4990 +127247 150684 0.4990 +127247 153443 0.5080 +127247 170622 0.4990 +127247 219487 0.6060 +127247 219493 0.5450 +127247 266743 0.4430 +127247 339512 0.5970 +127247 343641 0.7710 +127247 387837 0.5060 +127247 401036 0.4960 +127247 442197 0.4820 +127253 129450 0.7480 +127253 136263 0.4280 +127253 150962 0.4190 +127253 441250 0.5560 +127253 646498 0.5700 +127254 129881 0.4570 +127254 149483 0.4310 +127254 283726 0.5140 +127254 284451 0.5410 +127254 338811 0.4930 +127254 440073 0.4470 +127254 729359 0.4360 +127255 149473 0.4140 +127255 196951 0.7340 +127255 257019 0.6450 +127255 257194 0.4010 +127255 389432 0.6700 +127255 440955 0.5070 +127255 653619 0.4330 +127255 100287178 0.4790 +127255 100526835 0.6490 +127262 148870 0.4180 +127262 317781 0.4270 +127262 387509 0.4360 +127262 404037 0.4290 +127294 131377 0.4280 +127294 140465 0.4160 +127294 146862 0.4450 +127294 150572 0.4720 +127294 442721 0.4320 +127385 284521 0.5230 +127385 391196 0.5300 +127385 401427 0.4990 +127391 128360 0.5400 +127391 138724 0.4820 +127391 140873 0.5310 +127391 145942 0.5970 +127391 147011 0.4660 +127391 153643 0.4930 +127391 154313 0.4640 +127391 158830 0.5500 +127391 160419 0.5650 +127391 200232 0.5260 +127391 203413 0.4360 +127391 219938 0.4290 +127391 339559 0.4760 +127391 339669 0.5050 +127391 399693 0.5580 +127396 133957 0.4590 +127396 138881 0.5430 +127396 144717 0.5440 +127396 149483 0.6500 +127396 283162 0.5740 +127396 338675 0.5790 +127396 390197 0.4650 +127396 442197 0.4950 +127396 554251 0.6240 +127396 653404 0.5690 +127396 727857 0.5100 +127428 129685 0.7730 +127428 150275 0.4620 +127428 163087 0.4940 +127428 221830 0.6060 +127428 246721 0.4120 +127428 255252 0.4790 +127428 256356 0.4780 +127428 286205 0.4520 +127428 374928 0.4560 +127428 388633 0.4090 +127428 548644 0.4720 +127428 554251 0.4760 +127428 100134938 0.4120 +127428 107983993 0.4120 +127435 339291 0.4240 +127435 376132 0.4240 +127534 163882 0.4160 +127534 219770 0.4350 +127534 349149 0.4830 +127534 100126572 0.6570 +127540 132141 0.4010 +127544 154214 0.4190 +127579 147650 0.7480 +127579 149095 0.5200 +127579 171169 0.4400 +127579 284359 0.6160 +127579 339168 0.6920 +127602 146050 0.4180 +127602 146754 0.5710 +127602 196385 0.4050 +127602 201625 0.9460 +127602 729528 0.4790 +127602 100131244 0.4600 +127602 100131755 0.5430 +127602 100289635 0.4350 +127623 128954 0.4330 +127623 146310 0.4330 +127623 158506 0.4200 +127623 284521 0.5080 +127623 391196 0.5090 +127623 401427 0.5090 +127623 100101467 0.4350 +127623 100191040 0.5050 +127665 390072 0.5100 +127670 138307 0.5850 +127670 140880 0.5570 +127670 158062 0.5790 +127670 160065 0.4530 +127670 161753 0.4880 +127670 245938 0.4460 +127670 392399 0.6390 +127670 399967 0.4790 +127670 405754 0.6080 +127670 414332 0.4440 +127670 646643 0.5650 +127687 167838 0.6830 +127687 200081 0.4590 +127687 441150 0.5350 +127687 105372481 0.4470 +127700 128077 0.4030 +127700 154313 0.4030 +127700 245938 0.4200 +127700 729967 0.4200 +127703 154796 0.4690 +127707 283130 0.4170 +127707 333926 0.4330 +127731 148870 0.4700 +127731 387804 0.5420 +127731 389610 0.5070 +127731 390790 0.4980 +127731 100652824 0.6720 +127733 137886 0.6250 +127733 146177 0.6360 +127733 165324 0.9970 +127733 196385 0.6050 +127733 254050 0.6070 +127733 255104 0.4040 +127733 341676 0.5000 +127733 401474 0.4150 +127733 440695 0.4110 +127733 645974 0.4240 +127733 100130311 0.4160 +127795 129881 0.4090 +127795 132203 0.4010 +127795 139212 0.6200 +127795 144809 0.4890 +127795 158798 0.5420 +127795 161003 0.5210 +127795 200403 0.4890 +127795 220296 0.4930 +127795 255119 0.4260 +127795 286464 0.4080 +127795 399949 0.4220 +127795 401551 0.5180 +127795 729993 0.4240 +127829 147700 0.4500 +127829 201931 0.5950 +127829 282991 0.5170 +127829 729991 0.5640 +127833 132204 0.4470 +127833 140679 0.5410 +127833 143425 0.6740 +127833 199857 0.4430 +127833 203068 0.4400 +127833 246213 0.5220 +127833 440279 0.4820 +127845 139596 0.4320 +127845 162417 0.4370 +127845 169522 0.4780 +127845 220107 0.4080 +127845 341276 0.5300 +127845 606495 0.5360 +127933 157769 0.4880 +127933 220988 0.4240 +127933 285175 0.4640 +127933 374462 0.4350 +127933 374986 0.4380 +127933 102723407 0.4260 +128025 200150 0.5080 +128025 728621 0.6190 +128061 339230 0.4670 +128061 441459 0.5410 +128061 653820 0.4470 +128077 134526 0.5580 +128077 146894 0.5280 +128077 148741 0.5310 +128077 200030 0.4450 +128077 200035 0.4470 +128077 221301 0.4020 +128077 284615 0.5550 +128077 440138 0.5160 +128077 645191 0.5220 +128153 130576 0.4070 +128153 132851 0.7380 +128153 136332 0.6030 +128153 144321 0.5100 +128153 150365 0.4340 +128153 163688 0.5660 +128153 200162 0.6430 +128153 200373 0.4570 +128153 221656 0.6140 +128153 255101 0.4730 +128153 286464 0.4980 +128153 653140 0.4250 +128153 100506049 0.4170 +128178 136259 0.4950 +128178 286827 0.4390 +128209 340168 0.5880 +128209 359787 0.5210 +128209 503582 0.6020 +128209 653619 0.4090 +128218 149461 0.4680 +128229 140290 0.4170 +128229 140625 0.5180 +128229 145407 0.5460 +128229 150221 0.4180 +128229 151254 0.5680 +128229 164127 0.4100 +128229 203102 0.4480 +128229 345557 0.4110 +128229 389493 0.4570 +128229 100288695 0.4320 +128239 140465 0.7000 +128239 143098 0.4160 +128239 144402 0.4110 +128239 146909 0.5220 +128239 147179 0.4100 +128239 163688 0.6080 +128239 164118 0.4390 +128239 259266 0.6150 +128239 399693 0.4460 +128240 146212 0.4490 +128240 158234 0.4330 +128240 167227 0.7720 +128240 196513 0.5960 +128240 252839 0.4330 +128240 256281 0.7280 +128240 374291 0.4400 +128272 153478 0.5300 +128272 259173 0.5620 +128272 345930 0.4020 +128272 445328 0.7700 +128272 100271715 0.4710 +128308 130916 0.8190 +128308 146227 0.4740 +128308 197257 0.4670 +128308 199704 0.4310 +128308 219402 0.5560 +128308 219927 0.9540 +128308 285521 0.4450 +128308 387338 0.8020 +128308 127898561 0.8000 +128312 165918 0.5990 +128312 192669 0.5240 +128312 192670 0.5350 +128312 221302 0.4350 +128312 221613 0.6580 +128312 255626 0.8760 +128312 256126 0.5090 +128312 283149 0.4990 +128312 317772 0.7510 +128312 333932 0.8750 +128312 387893 0.4900 +128312 440093 0.8730 +128312 440686 0.8740 +128312 440689 0.4490 +128312 474382 0.6080 +128312 554313 0.9410 +128312 644186 0.4990 +128312 653604 0.9840 +128312 723790 0.4690 +128338 157657 0.4390 +128338 254173 0.4020 +128338 282809 0.4570 +128344 132203 0.5090 +128344 132320 0.4010 +128344 133690 0.6330 +128344 153643 0.5410 +128344 167838 0.4760 +128344 219681 0.5820 +128344 222256 0.4620 +128344 257177 0.5920 +128344 347240 0.4510 +128344 441476 0.4480 +128360 401827 0.4760 +128366 284521 0.5200 +128366 342926 0.4470 +128366 391196 0.5280 +128366 401427 0.5300 +128367 139604 0.4750 +128367 283238 0.4460 +128367 284521 0.4990 +128367 391196 0.5130 +128367 401427 0.5180 +128368 283999 0.5820 +128368 386683 0.6520 +128368 389761 0.4040 +128368 389762 0.4510 +128368 390664 0.5060 +128372 165082 0.4180 +128372 338398 0.4480 +128372 391114 0.4470 +128372 101929989 0.6580 +128387 130576 0.5700 +128387 131149 0.6040 +128387 149840 0.5180 +128387 222389 0.6250 +128387 246175 0.4850 +128408 338917 0.5750 +128408 389816 0.4060 +128408 647219 0.5620 +128408 727857 0.4700 +128414 145873 0.4280 +128414 155185 0.5190 +128414 164312 0.4820 +128414 201299 0.4560 +128414 202333 0.4920 +128414 219874 0.4170 +128414 284001 0.4730 +128414 341640 0.4290 +128414 105375355 0.4410 +128434 134548 0.4840 +128434 138162 0.4440 +128434 144402 0.4950 +128434 147381 0.4800 +128434 151126 0.4990 +128434 152330 0.4670 +128434 343578 0.4670 +128434 404217 0.4100 +128434 643866 0.4040 +128486 137964 0.5230 +128486 140902 0.7750 +128486 145741 0.4180 +128486 169792 0.4200 +128486 440503 0.5400 +128486 729359 0.5360 +128488 128822 0.4320 +128488 128861 0.5110 +128488 140686 0.5180 +128488 140850 0.4370 +128488 149708 0.9770 +128488 245929 0.4770 +128488 245939 0.4400 +128488 254240 0.5870 +128488 259239 0.5540 +128488 284307 0.5370 +128488 644414 0.4160 +128497 129685 0.6100 +128497 130560 0.4660 +128497 134728 0.4840 +128497 140686 0.5190 +128497 140825 0.7200 +128497 140832 0.5670 +128497 280664 0.5810 +128497 284680 0.5470 +128497 653282 0.4180 +128497 728036 0.4180 +128497 728042 0.4180 +128497 728049 0.4120 +128497 728062 0.4180 +128497 728072 0.4180 +128497 728082 0.4180 +128497 728090 0.4180 +128497 728096 0.4140 +128497 100507170 0.4030 +128506 149095 0.4840 +128506 245972 0.7740 +128553 161829 0.4380 +128602 132203 0.7710 +128602 133690 0.6330 +128602 134121 0.4240 +128602 144809 0.4520 +128602 147744 0.6250 +128602 151790 0.4600 +128602 158798 0.7680 +128602 219681 0.4440 +128602 254158 0.5830 +128602 257062 0.4100 +128602 257177 0.5410 +128602 342918 0.4750 +128602 345895 0.4030 +128602 388633 0.5940 +128602 390883 0.4180 +128602 399949 0.7320 +128602 401551 0.4350 +128611 129446 0.4110 +128611 149628 0.4230 +128611 219487 0.4290 +128611 219621 0.4320 +128611 256380 0.4500 +128611 374403 0.4510 +128611 387357 0.5800 +128611 653361 0.4150 +128637 161514 0.6000 +128637 163486 0.4390 +128637 339122 0.5160 +128637 374403 0.5390 +128646 221303 0.4770 +128646 339804 0.5700 +128653 387700 0.5060 +128674 129521 0.5860 +128674 166752 0.4730 +128674 257313 0.5510 +128674 285025 0.5140 +128674 285313 0.4470 +128674 387129 0.4120 +128674 389549 0.5980 +128674 408263 0.5910 +128674 594857 0.5200 +128710 146956 0.8250 +128710 548593 0.9100 +128817 128822 0.6000 +128817 140880 0.4880 +128817 440956 0.4960 +128821 128822 0.6610 +128821 140880 0.5180 +128821 148753 0.4740 +128821 245932 0.5130 +128821 286514 0.4330 +128821 340547 0.4870 +128822 128861 0.5060 +128822 140850 0.4570 +128822 140880 0.6130 +128822 164045 0.4330 +128822 169270 0.4140 +128822 245932 0.4330 +128822 245939 0.4130 +128822 285498 0.4520 +128822 441376 0.4310 +128853 134111 0.4510 +128853 220004 0.4290 +128859 128861 0.7050 +128859 130106 0.5370 +128859 140683 0.7290 +128859 140706 0.4140 +128859 149951 0.4770 +128859 149954 0.6100 +128859 164395 0.4180 +128859 245932 0.4170 +128861 130106 0.4210 +128861 140683 0.6780 +128861 140850 0.5460 +128861 140881 0.4550 +128861 149954 0.7570 +128861 162394 0.4100 +128861 245939 0.4490 +128861 254956 0.4150 +128861 359710 0.6870 +128861 392307 0.4110 +128861 440854 0.4780 +128861 644414 0.4180 +128866 137492 0.9310 +128866 148362 0.9840 +128866 155382 0.9300 +128866 197259 0.9010 +128866 200014 0.8580 +128866 221496 0.6310 +128866 260334 0.4990 +128866 283953 0.7350 +128866 347688 0.5290 +128866 347733 0.5000 +128866 390595 0.5400 +128866 440738 0.4940 +128866 100526767 0.9720 +128869 284098 0.5710 +128876 146057 0.4310 +128876 155435 0.5060 +128876 286077 0.4080 +128954 150160 0.5200 +128954 150221 0.5290 +128954 400891 0.5470 +128954 100101467 0.4310 +128954 100191040 0.4790 +128977 128989 0.4500 +128977 153364 0.4270 +128977 201229 0.4320 +128977 254863 0.4120 +128977 101928527 0.4700 +128989 150209 0.4600 +128989 285521 0.4270 +129025 140883 0.4230 +129025 146429 0.4090 +129025 168455 0.4460 +129025 440804 0.4460 +129025 642574 0.6010 +129049 150248 0.4450 +129049 161514 0.4540 +129049 256536 0.4310 +129080 388611 0.4460 +129080 643669 0.4210 +129138 136319 0.4560 +129138 140458 0.4400 +129138 140462 0.4920 +129138 142689 0.4110 +129138 257364 0.5910 +129285 285051 0.4770 +129285 286749 0.5710 +129285 340784 0.7820 +129285 347862 0.9180 +129285 388849 0.5710 +129285 388946 0.4180 +129285 100509620 0.5720 +129293 147111 0.4490 +129293 147495 0.5710 +129303 145567 0.6650 +129303 284948 0.4040 +129303 388969 0.4180 +129401 140609 0.4030 +129401 199953 0.4680 +129401 341567 0.4090 +129401 348995 0.9920 +129401 445815 0.4270 +129401 728343 0.5180 +129401 729857 0.5810 +129401 100101267 0.7570 +129446 131377 0.6150 +129446 132320 0.4260 +129446 137735 0.5390 +129446 140453 0.4110 +129446 140458 0.6200 +129446 140469 0.6010 +129446 146862 0.5810 +129446 148738 0.4060 +129446 150572 0.4490 +129446 165904 0.5700 +129446 168975 0.4790 +129446 171024 0.4940 +129446 202333 0.5290 +129446 286262 0.8290 +129446 317719 0.4320 +129446 339768 0.6130 +129446 347273 0.5760 +129446 389207 0.8220 +129446 442721 0.8530 +129446 494513 0.8110 +129446 643226 0.8190 +129450 130535 0.5200 +129450 131965 0.5860 +129450 150962 0.4180 +129450 205327 0.5980 +129450 284680 0.4200 +129450 348751 0.6100 +129521 256933 0.7620 +129521 257313 0.4920 +129521 283869 0.7200 +129521 347148 0.5410 +129521 387129 0.5760 +129521 431704 0.4990 +129521 594857 0.7380 +129530 140831 0.5070 +129530 200916 0.4480 +129531 159013 0.4130 +129531 196383 0.4810 +129531 199704 0.4310 +129531 219899 0.5130 +129531 644150 0.4020 +129531 100526767 0.7240 +129563 151613 0.4420 +129563 154197 0.4250 +129563 167153 0.6650 +129563 167227 0.5880 +129563 196441 0.6750 +129563 221785 0.4530 +129563 389421 0.5770 +129563 643155 0.4120 +129607 134637 0.5240 +129607 139596 0.9370 +129607 146857 0.4580 +129607 149628 0.4670 +129607 151531 0.5010 +129607 151636 0.4950 +129607 158067 0.4100 +129607 162417 0.4240 +129607 163351 0.5450 +129607 200895 0.7010 +129607 219285 0.6950 +129607 221264 0.9520 +129607 377841 0.9010 +129607 387103 0.4010 +129607 439996 0.4150 +129607 654364 0.9350 +129607 100526794 0.9180 +129642 132001 0.5990 +129642 137964 0.9580 +129642 139189 0.7170 +129642 148534 0.5030 +129642 150763 0.8010 +129642 151056 0.9140 +129642 154141 0.9040 +129642 160851 0.7400 +129642 196051 0.9230 +129642 201164 0.4040 +129642 253558 0.9510 +129642 254531 0.9680 +129642 375775 0.9130 +129684 150275 0.4390 +129684 152330 0.5510 +129684 166752 0.4750 +129685 138474 0.9420 +129685 255252 0.5340 +129685 333932 0.8000 +129685 387332 0.9190 +129685 391742 0.6300 +129685 391746 0.6300 +129685 391747 0.6300 +129685 399949 0.7760 +129685 400569 0.8270 +129685 404672 0.9810 +129685 554313 0.8000 +129685 606495 0.4260 +129685 646066 0.6300 +129685 646103 0.6300 +129685 653604 0.8180 +129685 102723526 0.6300 +129685 112488736 0.6300 +129685 112488737 0.6300 +129685 112488738 0.6300 +129685 112488739 0.6300 +129685 112488740 0.6300 +129685 112488745 0.6300 +129685 112488746 0.6300 +129685 112488747 0.6300 +129787 132789 0.9570 +129787 134359 0.5780 +129787 144233 0.6000 +129787 158038 0.5060 +129787 219402 0.6090 +129787 253559 0.5070 +129787 257194 0.9320 +129787 390598 0.4160 +129787 100526835 0.6650 +129804 376940 0.5350 +129807 139231 0.4140 +129807 146330 0.4680 +129831 132789 0.6020 +129831 132949 0.4780 +129831 146713 0.8920 +129831 220074 0.4130 +129831 220988 0.4350 +129831 414328 0.4140 +129831 729020 0.8680 +129831 120356740 0.4080 +129852 254956 0.4610 +129852 339977 0.5060 +129852 388951 0.5070 +129868 140686 0.5110 +129868 201516 0.7830 +129868 284428 0.6220 +129868 340096 0.4950 +129868 342900 0.7460 +129868 343070 0.4420 +129868 390999 0.6170 +129868 391769 0.4680 +129868 400736 0.4460 +129868 440560 0.5260 +129868 440561 0.5140 +129868 441873 0.4450 +129868 642612 0.4990 +129868 653619 0.4390 +129868 653657 0.5490 +129868 100033411 0.4020 +129868 100129128 0.7260 +129868 100288687 0.7760 +129880 157657 0.6230 +129880 166379 0.9490 +129880 200894 0.4920 +129880 261734 0.5450 +129881 134121 0.8450 +129881 135138 0.8360 +129881 138162 0.8330 +129881 138255 0.8360 +129881 145788 0.8150 +129881 146845 0.8520 +129881 149483 0.5670 +129881 150483 0.8210 +129881 151651 0.8380 +129881 152206 0.5240 +129881 158798 0.4070 +129881 160762 0.4370 +129881 160777 0.5420 +129881 161502 0.8190 +129881 169841 0.4760 +129881 219670 0.8280 +129881 220136 0.8510 +129881 221264 0.4860 +129881 257177 0.8910 +129881 339512 0.5510 +129881 339778 0.8060 +129881 339829 0.4730 +129881 345895 0.4860 +129881 347475 0.5660 +129881 388701 0.8170 +129881 389799 0.9050 +129881 440585 0.8000 +129881 730112 0.8110 +129881 100128569 0.5070 +130013 160428 0.4240 +130013 169355 0.5490 +130026 146691 0.4660 +130026 148206 0.4540 +130026 150864 0.6550 +130026 254122 0.5510 +130026 256356 0.5520 +130026 353088 0.5020 +130026 730005 0.4110 +130026 100527963 0.4310 +130074 146223 0.4760 +130074 344561 0.4060 +130074 729442 0.4450 +130106 136263 0.6280 +130106 136332 0.5670 +130106 149954 0.4310 +130106 150921 0.4360 +130106 170370 0.4900 +130106 199857 0.4370 +130106 220382 0.4340 +130106 283629 0.6250 +130106 374655 0.4020 +130106 642489 0.4440 +130120 171389 0.4550 +130120 405753 0.4550 +130120 646627 0.5200 +130120 100289462 0.4180 +130120 100506658 0.5410 +130132 133060 0.4190 +130132 151188 0.5510 +130132 158747 0.4500 +130132 196463 0.4880 +130132 389643 0.4540 +130162 131540 0.4910 +130162 150350 0.4980 +130162 158293 0.4300 +130162 284274 0.4340 +130162 285268 0.4500 +130162 338645 0.4880 +130162 100506581 0.4500 +130340 134829 0.5210 +130340 150350 0.5700 +130340 157807 0.5210 +130340 221421 0.4410 +130340 255104 0.4020 +130340 286451 0.5040 +130340 388552 0.5600 +130367 166929 0.9350 +130367 204219 0.9410 +130367 253782 0.9480 +130367 259230 0.9580 +130367 339221 0.9120 +130367 340485 0.9370 +130399 151449 0.6230 +130399 199699 0.4990 +130399 392255 0.6410 +130497 202018 0.4350 +130502 131831 0.4710 +130502 151613 0.4340 +130502 221692 0.4160 +130502 283450 0.4880 +130535 146212 0.6020 +130535 147040 0.4780 +130535 205327 0.5170 +130535 222658 0.6080 +130535 286187 0.4080 +130535 375190 0.4470 +130540 151254 0.5170 +130540 221421 0.6040 +130540 342908 0.4800 +130540 345930 0.5940 +130540 374819 0.4340 +130540 400224 0.4040 +130540 401551 0.6330 +130540 474170 0.4450 +130557 130574 0.4320 +130557 145226 0.7380 +130557 157657 0.5810 +130557 200634 0.5290 +130557 285440 0.4180 +130557 346007 0.7740 +130557 375298 0.7840 +130557 388939 0.8010 +130557 399979 0.4890 +130557 768206 0.8060 +130560 132671 0.5330 +130560 132954 0.4970 +130560 135886 0.5440 +130560 139422 0.4210 +130560 147011 0.4170 +130560 147179 0.5060 +130560 147650 0.5250 +130560 149643 0.5230 +130560 149699 0.4520 +130560 153745 0.4610 +130560 162514 0.4120 +130560 165100 0.5710 +130560 171169 0.6900 +130560 200523 0.4020 +130560 202051 0.5020 +130560 219938 0.5620 +130560 220082 0.6100 +130560 221409 0.7310 +130560 245932 0.5010 +130560 245937 0.4780 +130560 259308 0.4970 +130560 283417 0.4500 +130560 284680 0.5530 +130560 286234 0.4830 +130560 338661 0.5990 +130560 339766 0.4400 +130560 374768 0.6020 +130560 374955 0.6270 +130560 375686 0.4990 +130560 388595 0.5600 +130560 389320 0.5220 +130560 107983988 0.5050 +130574 130576 0.4870 +130574 134288 0.4560 +130574 137695 0.4200 +130574 151827 0.4820 +130574 338328 0.4760 +130574 375567 0.4230 +130574 399967 0.4470 +130574 399968 0.4770 +130574 729665 0.4860 +130574 100131897 0.6280 +130574 100169851 0.4180 +130576 131149 0.5050 +130576 149499 0.4760 +130576 149840 0.4380 +130576 222389 0.6150 +130576 284348 0.4100 +130576 399967 0.4450 +130576 399968 0.4180 +130576 432355 0.4350 +130576 647589 0.4520 +130589 197258 0.8220 +130589 282969 0.5270 +130589 338674 0.4260 +130589 388931 0.4030 +130612 139285 0.4790 +130612 163933 0.4370 +130617 140460 0.4260 +130617 203259 0.5350 +130617 203562 0.4220 +130733 388021 0.4360 +130733 442213 0.4950 +130733 643965 0.4270 +130752 137362 0.6100 +130752 158248 0.5960 +130752 387712 0.4840 +130752 391475 0.7510 +130752 642987 0.4090 +130813 145567 0.5930 +130813 166979 0.4830 +130813 221264 0.5900 +130814 151393 0.5600 +130814 158358 0.5160 +130814 245973 0.4320 +130814 643853 0.5980 +130827 131377 0.4130 +130827 389827 0.4330 +130827 402117 0.4380 +130827 407738 0.4220 +130827 100132916 0.4400 +130888 160762 0.4610 +130888 165100 0.5670 +130888 196385 0.6110 +130888 200403 0.6030 +130888 221409 0.4990 +130888 339766 0.4760 +130888 345895 0.4800 +130888 548645 0.4280 +130916 145853 0.4260 +130916 196074 0.4340 +130916 219927 0.8240 +130916 221078 0.6030 +130916 285315 0.4490 +130916 285367 0.4270 +130916 387338 0.9990 +130916 643338 0.4610 +130916 127898561 0.8640 +130940 151531 0.4270 +130940 151963 0.4020 +130940 160140 0.4250 +130940 283385 0.4720 +130940 374618 0.6310 +130940 645121 0.4510 +130951 132789 0.5240 +130951 150365 0.5580 +130951 158401 0.5450 +130951 161931 0.5150 +130951 256126 0.4060 +130951 283554 0.4090 +130951 284071 0.5650 +130951 285555 0.5820 +130951 374973 0.4280 +130951 403277 0.4470 +130951 494188 0.5960 +130951 642636 0.4780 +131034 253738 0.5500 +131076 131118 0.5620 +131076 203859 0.4940 +131076 401548 0.4790 +131096 165257 0.4450 +131096 256356 0.4240 +131096 286148 0.4610 +131096 102723407 0.4240 +131118 131474 0.6080 +131118 132001 0.4440 +131118 134218 0.4580 +131118 134266 0.7740 +131118 140823 0.8020 +131118 150274 0.8260 +131118 151613 0.5230 +131118 152330 0.4410 +131118 197257 0.5160 +131118 219927 0.4300 +131118 401505 0.6330 +131118 728489 0.4220 +131118 100188893 0.5950 +131118 100287932 0.9090 +131149 133060 0.6210 +131149 135924 0.5240 +131149 149840 0.4600 +131149 222389 0.5640 +131149 246175 0.4320 +131149 283297 0.5330 +131149 283310 0.6720 +131149 340990 0.7170 +131149 375611 0.5400 +131149 401097 0.4470 +131149 729330 0.8180 +131368 133491 0.4950 +131368 148870 0.4330 +131368 155465 0.4350 +131368 158297 0.4250 +131368 163479 0.5230 +131368 221303 0.4950 +131368 266722 0.4550 +131368 283870 0.5650 +131368 287015 0.4980 +131368 340990 0.4450 +131368 399814 0.5190 +131368 442117 0.4800 +131368 728276 0.4300 +131368 729092 0.4160 +131375 253582 0.5110 +131375 255426 0.4770 +131375 283377 0.4320 +131375 374973 0.4040 +131375 390038 0.4320 +131375 431705 0.4530 +131375 728858 0.5180 +131377 136895 0.6120 +131377 137735 0.4490 +131377 150572 0.4790 +131377 165904 0.6240 +131377 221481 0.4590 +131377 245806 0.4740 +131377 246329 0.4820 +131377 253980 0.7200 +131377 339745 0.7390 +131377 347344 0.4110 +131377 377007 0.4310 +131377 390594 0.9210 +131377 401265 0.4980 +131377 442721 0.6280 +131377 553115 0.7230 +131405 149076 0.7340 +131405 167227 0.4510 +131405 389421 0.7540 +131405 399664 0.6050 +131408 147015 0.4790 +131408 286148 0.5400 +131408 390201 0.4790 +131450 140885 0.8730 +131450 151888 0.4970 +131450 201633 0.4600 +131450 344807 0.5500 +131474 133957 0.4210 +131474 139341 0.4200 +131474 152100 0.4060 +131474 169714 0.5380 +131474 221154 0.6730 +131474 285521 0.5260 +131474 388753 0.8230 +131474 400916 0.8160 +131474 401505 0.5460 +131474 440574 0.4310 +131474 493753 0.7780 +131474 728489 0.4430 +131474 100188893 0.4580 +131474 100272147 0.5360 +131474 100287932 0.5160 +131540 200931 0.6170 +131540 200933 0.5940 +131540 205564 0.4980 +131540 255758 0.4770 +131540 255798 0.6740 +131540 283576 0.6320 +131540 338645 0.4300 +131540 348793 0.6130 +131540 375387 0.4750 +131566 144455 0.5570 +131566 254050 0.4160 +131566 259266 0.5360 +131578 391123 0.5030 +131578 474354 0.4950 +131583 152002 0.4640 +131601 144699 0.4480 +131601 200010 0.4440 +131601 284361 0.4460 +131616 149473 0.4120 +131616 149708 0.4010 +131616 219902 0.4010 +131616 284067 0.5120 +131616 100190949 0.5410 +131669 144193 0.8810 +131669 158511 0.4470 +131669 387775 0.5290 +131669 389903 0.4160 +131669 653720 0.5060 +131831 140876 0.4060 +131831 157697 0.5050 +131831 255252 0.4200 +131831 374786 0.4490 +131870 140733 0.6100 +131870 167227 0.7060 +131870 200035 0.5410 +131870 221264 0.9000 +131870 221443 0.5480 +131870 256281 0.4940 +131870 377841 0.9020 +131870 390916 0.4850 +131870 654364 0.9020 +131870 100526794 0.9000 +131873 136227 0.5020 +131873 147372 0.5230 +131873 169044 0.4950 +131873 255631 0.5580 +131873 283208 0.7590 +131873 340267 0.5610 +131890 163688 0.6920 +131890 341359 0.4030 +131890 388531 0.5400 +131920 134288 0.5220 +131920 155006 0.6040 +131920 199964 0.4190 +131920 256130 0.4540 +131920 643236 0.4290 +131965 149281 0.4050 +131965 152992 0.4360 +131965 155368 0.4630 +131965 158234 0.6780 +131965 196074 0.4980 +131965 196410 0.4190 +131965 223082 0.4570 +131965 399818 0.4750 +132001 201164 0.4600 +132001 253558 0.5270 +132001 253714 0.4260 +132001 100129924 0.4310 +132014 149233 0.4450 +132014 339145 0.4910 +132112 135946 0.5040 +132112 219438 0.5960 +132112 219477 0.5060 +132112 219493 0.5040 +132112 219858 0.5040 +132112 219957 0.5160 +132112 219968 0.5280 +132112 282775 0.5040 +132112 284521 0.6130 +132112 284532 0.4080 +132112 340527 0.4070 +132112 343170 0.4110 +132112 344892 0.5160 +132112 390059 0.5160 +132112 390082 0.5070 +132112 390155 0.5040 +132112 390157 0.5280 +132112 390195 0.4550 +132112 390275 0.5060 +132112 390892 0.5320 +132112 391196 0.6750 +132112 401427 0.6140 +132112 403274 0.4100 +132112 442184 0.6970 +132141 136242 0.4220 +132141 140894 0.5390 +132141 161514 0.4150 +132141 170370 0.5090 +132141 220047 0.6280 +132141 255220 0.4480 +132141 283349 0.4480 +132141 317719 0.6740 +132141 374768 0.4860 +132141 619208 0.4960 +132141 101927581 0.5570 +132158 160287 0.8230 +132158 387712 0.9380 +132158 389762 0.4180 +132158 441531 0.9210 +132158 101060200 0.4340 +132160 150290 0.4020 +132160 152926 0.5750 +132160 160760 0.5650 +132160 353116 0.4340 +132203 133690 0.7520 +132203 134121 0.5260 +132203 136288 0.4610 +132203 139212 0.6450 +132203 144809 0.6990 +132203 146845 0.4200 +132203 147744 0.4200 +132203 153643 0.5610 +132203 155465 0.4500 +132203 158798 0.7630 +132203 159686 0.4630 +132203 166979 0.5660 +132203 201625 0.5870 +132203 219681 0.5010 +132203 255119 0.4420 +132203 257062 0.4630 +132203 257177 0.4510 +132203 283726 0.5380 +132203 345895 0.4580 +132203 388633 0.7260 +132203 389177 0.4880 +132203 399949 0.4260 +132203 440829 0.5170 +132203 100130771 0.4010 +132204 140679 0.5390 +132204 146713 0.4180 +132204 148281 0.4380 +132204 345051 0.4480 +132204 347730 0.5440 +132204 388662 0.4500 +132204 642968 0.4010 +132228 134553 0.5060 +132228 151230 0.4180 +132228 257240 0.4950 +132228 286006 0.4460 +132243 135935 0.5530 +132243 157313 0.4130 +132243 166378 0.4430 +132243 221613 0.4130 +132243 255626 0.4550 +132243 255649 0.5140 +132243 326340 0.6820 +132243 340096 0.4350 +132243 341567 0.9520 +132243 342931 0.4420 +132243 344018 0.6390 +132243 390231 0.4100 +132243 391769 0.4490 +132243 440093 0.4340 +132243 440686 0.4360 +132243 474381 0.4890 +132243 474382 0.4440 +132243 554313 0.7150 +132243 645832 0.4450 +132299 158293 0.4340 +132299 160897 0.4510 +132299 171024 0.4720 +132299 201798 0.5190 +132299 201895 0.4950 +132299 221687 0.4690 +132320 133482 0.4420 +132320 145508 0.7250 +132320 146057 0.7090 +132320 153241 0.5210 +132320 200008 0.4510 +132320 200894 0.5650 +132320 201255 0.7720 +132320 219844 0.4920 +132320 221322 0.7170 +132320 347240 0.4180 +132320 374393 0.4540 +132320 493860 0.4580 +132321 164127 0.4790 +132321 202559 0.4590 +132430 149986 0.4190 +132430 167227 0.4640 +132430 221662 0.4060 +132430 253314 0.4320 +132430 255967 0.5350 +132430 284131 0.4550 +132430 317649 0.4040 +132430 392517 0.4100 +132430 100529063 0.4500 +132612 140873 0.4490 +132612 145942 0.4610 +132612 164832 0.4390 +132612 344892 0.4490 +132612 345630 0.4640 +132625 139322 0.4610 +132625 151871 0.6850 +132625 171023 0.5650 +132625 201456 0.6150 +132625 205860 0.6110 +132625 339976 0.5750 +132625 340168 0.6270 +132625 359787 0.7050 +132625 404281 0.5640 +132660 286826 0.9990 +132660 373509 0.5130 +132660 100288801 0.6200 +132671 145508 0.4130 +132671 146845 0.4750 +132671 146862 0.5400 +132671 148156 0.4780 +132671 149643 0.6260 +132671 151827 0.4940 +132671 153218 0.4840 +132671 161502 0.5720 +132671 219938 0.6070 +132671 284680 0.4120 +132671 338949 0.4340 +132671 389177 0.4450 +132671 389320 0.5150 +132671 408187 0.5380 +132671 643394 0.4860 +132720 137868 0.6570 +132720 146547 0.4070 +132720 729092 0.5210 +132724 144568 0.4760 +132724 196374 0.6680 +132724 283471 0.4720 +132724 440854 0.4700 +132789 133522 0.4690 +132789 134359 0.6120 +132789 144233 0.6530 +132789 158038 0.5130 +132789 219402 0.5880 +132789 253559 0.5080 +132789 257194 0.9310 +132789 338557 0.5430 +132789 390598 0.4470 +132789 414328 0.6270 +132789 100526835 0.6680 +132851 140458 0.5620 +132851 197335 0.7540 +132851 200162 0.4900 +132851 200844 0.4090 +132851 219938 0.4570 +132851 220082 0.5140 +132851 221409 0.4140 +132851 245936 0.4110 +132851 255520 0.5350 +132851 374618 0.4470 +132851 474354 0.4440 +132864 167153 0.6650 +132864 284106 0.4200 +132884 153241 0.4470 +132884 255758 0.4350 +132884 347853 0.4690 +132884 374654 0.5130 +132884 392255 0.4260 +132884 104909134 0.4220 +132946 132954 0.4350 +132946 387496 0.9160 +132949 134526 0.4080 +132949 137695 0.4290 +132949 137964 0.5780 +132949 142910 0.4930 +132949 151393 0.4470 +132949 152206 0.8160 +132949 153579 0.4670 +132949 157869 0.7170 +132949 158833 0.4650 +132949 197322 0.7650 +132949 199974 0.5170 +132949 222236 0.4360 +132949 246778 0.5030 +132949 253152 0.4680 +132949 253190 0.4220 +132949 253558 0.4740 +132949 254295 0.4170 +132949 254531 0.6430 +132949 256471 0.4440 +132949 260293 0.5170 +132949 284422 0.5450 +132949 284541 0.5170 +132949 284697 0.4740 +132949 285440 0.5210 +132949 317749 0.4290 +132949 339761 0.5070 +132949 340252 0.4540 +132949 340654 0.5260 +132949 340665 0.5120 +132949 341208 0.4340 +132949 341392 0.4330 +132949 345275 0.4150 +132949 347475 0.5510 +132949 348158 0.6050 +132949 376497 0.9730 +132949 388649 0.4680 +132949 414301 0.7500 +132949 643414 0.4530 +132949 643418 0.4910 +132949 643836 0.4640 +132949 100861540 0.5030 +132949 122405565 0.5450 +132954 139170 0.4040 +132954 160298 0.5070 +132954 221091 0.4530 +132954 339977 0.4790 +132954 389206 0.4250 +132989 152816 0.5200 +132989 255119 0.6130 +132989 260436 0.4450 +132989 401137 0.6290 +133015 151651 0.6160 +133015 166647 0.4910 +133015 197335 0.9000 +133015 200844 0.5480 +133015 219670 0.6470 +133015 219681 0.4370 +133015 219927 0.4290 +133015 246269 0.4380 +133015 338699 0.5050 +133015 642636 0.4130 +133015 644890 0.7940 +133015 100128569 0.4290 +133060 255022 0.6270 +133060 340990 0.4740 +133060 342372 0.4540 +133060 346562 0.4190 +133060 729330 0.9030 +133121 146923 0.4200 +133121 151056 0.6640 +133121 254531 0.9180 +133121 255043 0.9340 +133121 255189 0.6640 +133121 283748 0.6710 +133121 284161 0.9400 +133121 391013 0.7020 +133121 100137049 0.6640 +133308 284525 0.6570 +133308 285195 0.7830 +133308 285335 0.6360 +133308 389015 0.5840 +133383 166968 0.6170 +133396 348801 0.4640 +133396 386653 0.9990 +133396 389421 0.5150 +133418 151473 0.4530 +133418 168400 0.6630 +133418 201161 0.6700 +133418 373863 0.4200 +133418 100271846 0.4020 +133482 137902 0.6700 +133482 147841 0.4890 +133482 148266 0.4160 +133482 163688 0.5210 +133482 167691 0.4240 +133482 170261 0.4410 +133482 200316 0.5080 +133482 221120 0.4590 +133482 221302 0.4030 +133482 221357 0.7290 +133482 221692 0.4800 +133482 257044 0.6090 +133482 257062 0.4360 +133482 257202 0.6350 +133482 284390 0.4180 +133482 285381 0.4680 +133482 285588 0.5110 +133482 333926 0.4240 +133482 340273 0.4140 +133482 347732 0.4340 +133482 378807 0.4490 +133482 389677 0.4180 +133482 440093 0.8650 +133482 440387 0.4180 +133482 440686 0.8650 +133482 441869 0.4090 +133482 493869 0.6330 +133482 553115 0.4840 +133482 653604 0.8650 +133482 653689 0.6430 +133482 100130348 0.4380 +133482 100532731 0.4850 +133491 147719 0.5690 +133491 148870 0.6040 +133491 158297 0.5870 +133491 164127 0.5960 +133491 220082 0.4890 +133491 255119 0.4850 +133491 287015 0.5690 +133491 399814 0.6710 +133491 400629 0.4370 +133522 256643 0.5400 +133522 257194 0.4890 +133522 338557 0.4780 +133522 400569 0.9000 +133558 140836 0.4370 +133558 151963 0.4510 +133558 285382 0.4180 +133558 339766 0.4620 +133558 374977 0.5070 +133558 727957 0.4220 +133584 148789 0.4110 +133584 345193 0.5420 +133584 375790 0.5150 +133584 392617 0.5270 +133584 440435 0.7250 +133584 729920 0.5020 +133619 144132 0.4540 +133619 389320 0.4180 +133619 100127206 0.5070 +133686 202151 0.4840 +133686 349565 0.4620 +133688 134526 0.6380 +133688 167127 0.5590 +133688 167410 0.5930 +133688 199857 0.5430 +133688 221301 0.5610 +133688 440138 0.5460 +133688 494188 0.5270 +133688 645191 0.5310 +133688 100861540 0.4010 +133690 134121 0.4490 +133690 139212 0.4560 +133690 146779 0.4120 +133690 146845 0.4490 +133690 151651 0.6120 +133690 153643 0.5810 +133690 158798 0.5300 +133690 166979 0.4420 +133690 219670 0.4780 +133690 219681 0.6410 +133690 254956 0.4700 +133690 255119 0.4990 +133690 257177 0.7200 +133690 341032 0.4120 +133690 399949 0.5850 +133690 401551 0.5190 +133690 654502 0.4300 +133690 100287718 0.4060 +133746 345456 0.4700 +133746 375189 0.4780 +133746 442721 0.5270 +133874 148113 0.4220 +133874 149699 0.5030 +133874 256957 0.5070 +133874 404037 0.4680 +133923 149465 0.4920 +133923 161502 0.5450 +133923 388561 0.4800 +133957 140460 0.7160 +133957 140880 0.4350 +133957 255252 0.4100 +133957 283162 0.4510 +133957 338675 0.4340 +133957 352999 0.4170 +133957 388569 0.4440 +133957 389257 0.4990 +133957 390927 0.4110 +133957 554251 0.4620 +133957 100130705 0.6390 +133957 100505876 0.5090 +134083 100529063 0.5060 +134111 222865 0.5100 +134111 283349 0.4060 +134111 387640 0.4130 +134111 645974 0.4530 +134121 135138 0.8190 +134121 138162 0.9470 +134121 138255 0.8220 +134121 145788 0.8260 +134121 146845 0.8730 +134121 150483 0.8080 +134121 151651 0.8370 +134121 154865 0.5190 +134121 158798 0.4780 +134121 161502 0.8510 +134121 219621 0.6210 +134121 219670 0.8780 +134121 219681 0.6420 +134121 220136 0.8730 +134121 255119 0.7070 +134121 257177 0.8610 +134121 257236 0.5710 +134121 339778 0.8040 +134121 348807 0.4960 +134121 388701 0.8000 +134121 389799 0.8170 +134121 440585 0.8160 +134121 441054 0.6770 +134121 730112 0.8090 +134145 134147 0.8840 +134145 151194 0.4920 +134145 196483 0.4560 +134145 221143 0.5340 +134145 399818 0.5010 +134147 137872 0.8620 +134147 151473 0.4210 +134147 163071 0.4010 +134147 284346 0.4910 +134147 317662 0.4130 +134187 285600 0.4020 +134187 388112 0.4240 +134187 441272 0.4180 +134218 155435 0.4180 +134218 162427 0.4880 +134218 375748 0.4430 +134218 404093 0.4030 +134218 494143 0.5460 +134265 134266 0.6630 +134265 163589 0.4620 +134265 221395 0.4310 +134265 341359 0.4710 +134266 140432 0.4520 +134266 140823 0.6940 +134266 150274 0.7000 +134266 150353 0.4520 +134266 154791 0.7830 +134266 165721 0.4520 +134266 171425 0.4530 +134266 197257 0.5130 +134266 202052 0.4540 +134266 259217 0.7980 +134266 285126 0.4520 +134266 285282 0.4670 +134266 339229 0.8160 +134266 339416 0.5880 +134266 374407 0.4520 +134266 388633 0.5880 +134266 404636 0.4230 +134266 548645 0.4520 +134266 552891 0.4520 +134266 728489 0.4600 +134266 100287932 0.7490 +134285 134288 0.4680 +134285 138799 0.5050 +134285 162427 0.5020 +134285 167465 0.5360 +134285 220963 0.4060 +134285 255349 0.4350 +134285 283554 0.5290 +134285 353345 0.5030 +134285 100130519 0.5720 +134288 151827 0.4290 +134288 167465 0.4380 +134288 337879 0.4250 +134288 344657 0.4350 +134288 348932 0.4790 +134288 100131897 0.5910 +134359 152185 0.7180 +134359 153241 0.7540 +134359 158038 0.5800 +134359 158135 0.4550 +134359 163786 0.7820 +134359 197335 0.8700 +134359 219402 0.5500 +134359 221458 0.4190 +134359 221908 0.4860 +134359 253559 0.4730 +134359 257194 0.4760 +134359 282809 0.9650 +134359 285753 0.4270 +134359 339210 0.4270 +134359 348793 0.7780 +134359 390598 0.4780 +134359 100526835 0.5960 +134391 153769 0.4880 +134391 285601 0.4100 +134391 286753 0.4870 +134391 344758 0.4620 +134391 404037 0.4280 +134429 134526 0.4180 +134429 147323 0.5120 +134492 136647 0.4330 +134492 148268 0.4460 +134492 340359 0.4630 +134510 143471 0.5190 +134510 153830 0.5250 +134510 256356 0.4090 +134510 286187 0.4660 +134510 100652824 0.5430 +134526 146894 0.6150 +134526 147323 0.5090 +134526 167127 0.5330 +134526 167410 0.6420 +134526 221301 0.4020 +134526 284716 0.4070 +134526 348158 0.4830 +134526 641371 0.6260 +134526 641372 0.5650 +134526 653121 0.5290 +134548 134549 0.4820 +134548 138162 0.5830 +134548 144501 0.4580 +134548 158056 0.4100 +134548 159091 0.4470 +134548 645121 0.4680 +134549 147645 0.4040 +134549 284358 0.4500 +134549 345062 0.4160 +134549 643226 0.4070 +134549 645121 0.4340 +134553 347732 0.4470 +134637 139596 0.7720 +134637 151531 0.4860 +134637 161931 0.4560 +134637 162417 0.6740 +134637 339175 0.4080 +134637 389434 0.4400 +134637 403314 0.4980 +134701 145873 0.8070 +134701 340260 0.5640 +134701 343930 0.5890 +134701 387104 0.4070 +134701 646658 0.4530 +134829 154043 0.4060 +134829 161829 0.4330 +134829 284434 0.5200 +134829 285175 0.4110 +134829 375567 0.5550 +134829 402117 0.5420 +134829 729665 0.6240 +134860 134864 0.6700 +134860 319100 0.5540 +134860 390067 0.4070 +134860 394263 0.4210 +134864 319100 0.4750 +134864 350383 0.5560 +134957 143187 0.6690 +134957 149371 0.4610 +134957 203062 0.5680 +134957 286133 0.5130 +134957 339302 0.5510 +134957 389432 0.4830 +134957 415117 0.9110 +134957 594855 0.5400 +135112 145942 0.4570 +135114 201456 0.5750 +135138 138162 0.8440 +135138 138255 0.8250 +135138 140732 0.4400 +135138 144811 0.4080 +135138 145788 0.8260 +135138 146845 0.8930 +135138 150483 0.8330 +135138 151651 0.9290 +135138 160762 0.5140 +135138 160857 0.5840 +135138 161502 0.8250 +135138 168090 0.4780 +135138 197335 0.9020 +135138 200844 0.5440 +135138 203068 0.5720 +135138 219670 0.9450 +135138 219681 0.5430 +135138 219927 0.4290 +135138 220047 0.4080 +135138 220136 0.8320 +135138 253769 0.4810 +135138 254170 0.4780 +135138 256979 0.4030 +135138 257177 0.8740 +135138 283385 0.6110 +135138 339778 0.8140 +135138 339829 0.5190 +135138 345895 0.4930 +135138 347733 0.6500 +135138 388701 0.8210 +135138 389799 0.8090 +135138 440585 0.8000 +135138 642636 0.4130 +135138 644890 0.9900 +135138 730112 0.8180 +135138 100128569 0.5070 +135152 220074 0.4960 +135152 221914 0.4680 +135152 375790 0.4220 +135152 442038 0.4820 +135152 574537 0.4960 +135154 144811 0.4440 +135154 150274 0.4840 +135154 285521 0.5390 +135154 644096 0.8370 +135250 154064 0.9230 +135250 222235 0.4100 +135250 259197 0.4720 +135250 353091 0.9310 +135250 374383 0.5850 +135293 148811 0.4280 +135295 143884 0.5510 +135295 220988 0.4050 +135458 144715 0.9970 +135458 150280 0.4390 +135458 254528 0.5800 +135458 100507203 0.5060 +135644 201292 0.5700 +135644 222696 0.5520 +135644 260434 0.7410 +135644 375593 0.4180 +135644 378108 0.4350 +135644 388591 0.4440 +135644 389856 0.4570 +135644 442184 0.4020 +135656 200504 0.5400 +135656 386682 0.4470 +135656 389376 0.5440 +135656 394263 0.4460 +135656 494119 0.5060 +135656 100507679 0.4680 +135886 135892 0.5870 +135886 145814 0.4790 +135886 149699 0.5730 +135886 155368 0.6200 +135886 155382 0.4370 +135886 171169 0.5070 +135886 221409 0.5620 +135886 338661 0.6900 +135886 375593 0.4180 +135886 378108 0.4340 +135892 389524 0.6210 +135892 440730 0.4140 +135927 147650 0.5410 +135927 284359 0.4660 +135927 339168 0.6380 +135932 148137 0.5280 +135935 164045 0.5060 +135935 171568 0.4260 +135935 254394 0.5060 +135935 255649 0.4460 +135935 256957 0.4430 +135935 326340 0.5290 +135935 342931 0.4830 +135935 342977 0.5930 +135935 344018 0.9850 +135935 346673 0.5350 +135935 353238 0.4430 +135935 359787 0.4130 +135935 402381 0.9420 +135935 431707 0.9270 +135935 645832 0.4340 +135935 100526761 0.7460 +135941 221303 0.4720 +135941 254910 0.4100 +135941 654463 0.4010 +135941 100132476 0.4790 +135946 219438 0.5420 +135946 219477 0.5520 +135946 219493 0.5740 +135946 219858 0.5240 +135946 219957 0.5520 +135946 219968 0.5110 +135946 282775 0.5820 +135946 284521 0.5160 +135946 344892 0.5020 +135946 390059 0.5210 +135946 390082 0.5170 +135946 390155 0.5400 +135946 390157 0.5380 +135946 390275 0.5280 +135946 390892 0.5300 +135946 391196 0.5080 +135946 401427 0.5080 +135946 442184 0.5600 +135948 257160 0.6250 +136051 162966 0.4200 +136051 202865 0.5100 +136051 221785 0.4390 +136051 342945 0.4420 +136051 349136 0.4270 +136051 392843 0.4810 +136051 401494 0.4510 +136051 440275 0.6260 +136051 100527949 0.4780 +136157 143506 0.5440 +136157 196120 0.5440 +136157 221895 0.5130 +136157 390031 0.5430 +136157 390033 0.5430 +136157 441584 0.5430 +136157 642843 0.7680 +136227 136306 0.4510 +136227 146198 0.4340 +136227 158046 0.4080 +136227 169044 0.5650 +136227 255631 0.5600 +136227 283208 0.4600 +136227 340267 0.6290 +136242 170370 0.4870 +136242 203074 0.6920 +136242 204474 0.6780 +136242 221191 0.6520 +136242 283927 0.4320 +136242 338879 0.6150 +136242 343099 0.5090 +136242 360226 0.4030 +136242 387885 0.4140 +136242 440804 0.4300 +136242 100129278 0.4570 +136242 111216276 0.5640 +136259 169026 0.5060 +136259 221895 0.5130 +136259 286827 0.6340 +136263 136332 0.5740 +136263 139818 0.5000 +136263 170370 0.5280 +136263 203074 0.4230 +136263 222068 0.4200 +136263 283417 0.4090 +136263 283471 0.4510 +136263 283629 0.6250 +136263 284680 0.6940 +136263 389799 0.5140 +136288 136895 0.5100 +136288 138716 0.4710 +136288 220004 0.5820 +136288 222171 0.4410 +136288 256979 0.6560 +136288 282966 0.5060 +136288 392307 0.5270 +136288 399814 0.5710 +136288 643236 0.4460 +136306 136332 0.5850 +136306 137075 0.4470 +136306 146167 0.4300 +136306 146198 0.4570 +136306 155006 0.4030 +136306 162387 0.5130 +136306 200150 0.4050 +136306 201305 0.5860 +136306 202865 0.4040 +136306 203069 0.5090 +136306 252884 0.4090 +136306 255349 0.4630 +136306 256356 0.4250 +136306 284403 0.4880 +136306 340351 0.4850 +136306 388931 0.4340 +136306 399512 0.4140 +136306 100101490 0.4740 +136319 136371 0.4820 +136319 136991 0.4510 +136319 140456 0.4490 +136319 140462 0.5040 +136319 142685 0.5940 +136319 142686 0.5180 +136319 146198 0.4180 +136319 157567 0.4360 +136319 317754 0.5140 +136319 374860 0.4440 +136319 375248 0.4230 +136319 388468 0.5160 +136319 404785 0.5180 +136319 554226 0.4880 +136319 641455 0.5200 +136319 100287399 0.4910 +136319 100288966 0.5140 +136319 100996331 0.5190 +136319 102723502 0.5150 +136319 102724631 0.5150 +136332 144535 0.6090 +136332 146198 0.5220 +136332 147700 0.4570 +136332 147968 0.4490 +136332 148534 0.5210 +136332 149465 0.5370 +136332 154313 0.4540 +136332 154865 0.4470 +136332 158067 0.6540 +136332 169044 0.4370 +136332 199221 0.4030 +136332 200162 0.9000 +136332 200373 0.8490 +136332 203068 0.4590 +136332 219670 0.4110 +136332 221264 0.6610 +136332 222967 0.5640 +136332 259217 0.4400 +136332 260334 0.4590 +136332 283208 0.5350 +136332 283385 0.6290 +136332 283629 0.5410 +136332 284358 0.4600 +136332 284403 0.5350 +136332 286464 0.7460 +136332 339829 0.4260 +136332 341676 0.5540 +136332 347688 0.4590 +136332 347733 0.4590 +136332 375748 0.5760 +136332 387712 0.6850 +136332 388633 0.5030 +136332 388743 0.4500 +136332 402569 0.4590 +136332 440854 0.4490 +136332 474354 0.6360 +136332 644041 0.5070 +136332 100129278 0.4130 +136332 100527978 0.5210 +136371 140456 0.4090 +136371 140458 0.4130 +136371 140739 0.5140 +136371 142685 0.4620 +136371 142686 0.4110 +136371 142689 0.4660 +136371 149951 0.4990 +136371 150684 0.4990 +136371 170622 0.5140 +136371 200539 0.4240 +136371 201140 0.4350 +136371 339291 0.5440 +136371 389257 0.4400 +136371 390594 0.4320 +136371 392843 0.6220 +136541 162540 0.4300 +136541 200172 0.4910 +136541 203100 0.7680 +136541 360203 0.4250 +136541 387718 0.5040 +136541 441476 0.5400 +136647 136991 0.5210 +136647 404672 0.7340 +136853 137209 0.4360 +136853 285989 0.4150 +136895 149018 0.4780 +136895 164592 0.5830 +136895 202051 0.4850 +136895 257236 0.6530 +136895 282966 0.5710 +136895 283953 0.4490 +136895 285268 0.5050 +136895 399814 0.6060 +136895 441054 0.6940 +136895 619208 0.6130 +136895 100507055 0.7050 +136991 143689 0.7520 +136991 157567 0.5000 +136991 161829 0.4480 +136991 163589 0.5170 +136991 163688 0.4240 +136991 201164 0.7460 +136991 221400 0.4720 +136991 256227 0.4790 +136991 375248 0.4300 +136991 400668 0.5660 +136991 400986 0.4350 +136991 401036 0.4230 +136991 404785 0.5920 +136991 641455 0.5330 +136991 728780 0.4170 +137075 146198 0.4180 +137075 149461 0.7550 +137075 340351 0.4160 +137075 441317 0.4770 +137075 644672 0.7390 +137075 100132463 0.7340 +137075 100288814 0.7720 +137075 100506658 0.7830 +137209 140890 0.4360 +137209 151393 0.4430 +137209 157638 0.4720 +137209 196792 0.4040 +137209 200407 0.4980 +137209 285672 0.5270 +137209 285753 0.5930 +137209 286053 0.4220 +137209 386682 0.4240 +137362 137994 0.5900 +137362 160287 0.9820 +137362 162417 0.9180 +137362 259307 0.9060 +137362 339896 0.8230 +137362 339983 0.9200 +137362 390110 0.4610 +137362 548596 0.6540 +137362 554235 0.8260 +137392 199221 0.6210 +137392 285600 0.5930 +137492 155382 0.9180 +137492 200894 0.4220 +137492 340075 0.4350 +137492 390595 0.5400 +137492 729597 0.4770 +137492 100526767 0.6430 +137682 146802 0.5730 +137682 221656 0.4970 +137682 284184 0.5570 +137682 374291 0.8610 +137682 387332 0.4850 +137682 388962 0.4160 +137682 399949 0.4850 +137695 147670 0.5570 +137695 150763 0.4510 +137695 195814 0.6780 +137695 340359 0.4140 +137735 140458 0.4180 +137735 146862 0.4740 +137735 165904 0.5030 +137735 196541 0.4010 +137735 442721 0.6470 +137735 644019 0.4120 +137797 147719 0.5850 +137797 160065 0.5060 +137797 171169 0.4800 +137797 259215 0.4910 +137797 283152 0.5770 +137797 284348 0.5710 +137797 390940 0.5380 +137797 399967 0.5430 +137797 399968 0.5410 +137797 492307 0.4840 +137797 100169851 0.5980 +137797 101928108 0.5930 +137835 343099 0.4450 +137835 653140 0.4350 +137868 201514 0.4380 +137868 221035 0.4680 +137868 282775 0.4430 +137868 728310 0.5070 +137872 140856 0.4600 +137872 160428 0.4960 +137872 284273 0.4880 +137872 326625 0.4030 +137872 348158 0.4010 +137872 728294 0.6460 +137872 109703458 0.4600 +137886 150709 0.4400 +137886 166378 0.6690 +137886 253012 0.4440 +137886 375061 0.4840 +137902 144811 0.6050 +137902 146713 0.7370 +137902 163688 0.5480 +137902 253260 0.4490 +137902 255738 0.4100 +137902 257202 0.7030 +137902 259307 0.4850 +137902 405754 0.5080 +137902 440093 0.7180 +137902 440387 0.4640 +137902 440686 0.7380 +137902 441925 0.4180 +137902 493869 0.6970 +137902 653145 0.5890 +137902 653361 0.5060 +137902 653604 0.7380 +137902 728378 0.5660 +137902 100133941 0.4870 +137902 100506658 0.6990 +137902 100532731 0.4270 +137964 150763 0.9810 +137964 154141 0.6720 +137964 158833 0.4640 +137964 196410 0.4500 +137964 253558 0.8120 +137964 254531 0.4310 +137964 376497 0.4390 +137964 440503 0.4870 +137964 729359 0.4530 +137970 153020 0.4100 +137970 153769 0.4190 +137970 167410 0.4120 +137970 202559 0.4080 +137970 219699 0.6670 +137994 201164 0.4230 +137994 202052 0.4690 +138009 139170 0.5990 +138009 139425 0.6100 +138009 140460 0.4470 +138009 160335 0.4310 +138009 285429 0.5580 +138009 340578 0.6000 +138009 347442 0.6030 +138046 151903 0.6660 +138046 158038 0.4710 +138046 220359 0.7000 +138046 221092 0.4460 +138046 343069 0.7310 +138046 348235 0.6050 +138046 390075 0.7100 +138046 390616 0.4940 +138046 401466 0.4900 +138046 440563 0.7310 +138046 619279 0.4360 +138046 649330 0.4390 +138050 157570 0.8020 +138050 168417 0.4250 +138050 256471 0.5490 +138050 285362 0.4690 +138050 390081 0.4950 +138065 148066 0.4630 +138065 220441 0.4240 +138065 255488 0.4330 +138065 285533 0.4890 +138151 221336 0.4310 +138162 138255 0.8320 +138162 144501 0.4480 +138162 145788 0.8860 +138162 146845 0.8380 +138162 150483 0.8590 +138162 151651 0.8350 +138162 154865 0.5580 +138162 160762 0.4450 +138162 161502 0.8780 +138162 199699 0.4380 +138162 219621 0.4180 +138162 219670 0.8280 +138162 219681 0.7340 +138162 220136 0.8820 +138162 255119 0.5570 +138162 257177 0.8600 +138162 257236 0.6320 +138162 339778 0.8060 +138162 340706 0.4940 +138162 388701 0.8240 +138162 389799 0.8140 +138162 440585 0.8100 +138162 441054 0.6000 +138162 730112 0.8660 +138162 100128569 0.7460 +138199 161753 0.4200 +138199 375607 0.5420 +138240 138241 0.7160 +138241 146556 0.4740 +138241 729240 0.4340 +138255 145788 0.8240 +138255 146845 0.8480 +138255 150483 0.8320 +138255 151651 0.8440 +138255 160762 0.4290 +138255 161502 0.8240 +138255 197335 0.4220 +138255 203259 0.4790 +138255 219670 0.8170 +138255 219681 0.5370 +138255 220136 0.8390 +138255 245972 0.4970 +138255 254956 0.7000 +138255 257177 0.8440 +138255 285386 0.4030 +138255 339778 0.8160 +138255 388701 0.8170 +138255 389799 0.8000 +138255 440585 0.8000 +138255 492307 0.4120 +138255 730112 0.8080 +138255 100128569 0.5070 +138307 140880 0.8300 +138307 158062 0.8300 +138307 245932 0.4170 +138307 245939 0.4400 +138307 259239 0.4090 +138307 259240 0.4610 +138307 286256 0.6200 +138307 338879 0.4940 +138307 389812 0.5590 +138307 391253 0.4680 +138307 392399 0.8940 +138307 401562 0.5490 +138307 414332 0.7350 +138307 653423 0.4110 +138311 388650 0.4500 +138311 440699 0.4720 +138428 143244 0.4080 +138428 152815 0.4490 +138428 158584 0.6780 +138428 196074 0.4010 +138428 219927 0.5300 +138428 221143 0.4070 +138428 390212 0.5020 +138428 402635 0.5050 +138429 154141 0.4040 +138429 392197 0.4480 +138429 399665 0.4870 +138429 402635 0.4020 +138429 641649 0.4510 +138474 254065 0.5110 +138474 387332 0.8060 +138474 391742 0.7120 +138474 391746 0.7120 +138474 391747 0.7120 +138474 399949 0.5980 +138474 400954 0.4390 +138474 404672 0.6290 +138474 646066 0.7120 +138474 646103 0.7120 +138474 102723526 0.7120 +138474 112488736 0.7120 +138474 112488737 0.7120 +138474 112488738 0.7120 +138474 112488739 0.7120 +138474 112488740 0.7120 +138474 112488745 0.7120 +138474 112488746 0.7120 +138474 112488747 0.7120 +138639 154865 0.4030 +138639 200844 0.4750 +138639 252884 0.4480 +138639 284366 0.4750 +138639 493860 0.5340 +138715 203259 0.4480 +138715 259308 0.4330 +138715 728763 0.4660 +138716 192669 0.5400 +138716 192670 0.5400 +138716 203259 0.6640 +138716 259308 0.4340 +138716 283989 0.5430 +138716 339229 0.5240 +138716 345630 0.5440 +138716 375704 0.5270 +138724 139604 0.6060 +138724 140873 0.6380 +138724 145942 0.5900 +138724 150159 0.4090 +138724 158830 0.4800 +138724 160419 0.4720 +138724 161142 0.4930 +138724 164684 0.4280 +138724 200232 0.6460 +138724 256957 0.4300 +138724 257169 0.6450 +138724 257236 0.4810 +138724 283461 0.6750 +138724 339669 0.4400 +138724 399693 0.4930 +138799 168537 0.5060 +138799 200845 0.4710 +138799 388125 0.5070 +138799 100131378 0.5070 +138799 100507679 0.4150 +138802 170062 0.5290 +138802 199221 0.4820 +138802 285877 0.4310 +138802 388536 0.5070 +138802 389257 0.5160 +138802 653567 0.5040 +138802 728229 0.5440 +138804 285877 0.4660 +138804 286362 0.4450 +138804 286380 0.4780 +138804 349334 0.5240 +138805 153478 0.4180 +138805 338398 0.4390 +138881 390927 0.4780 +138881 554251 0.5110 +138881 653404 0.5790 +138881 727857 0.4460 +138881 100287404 0.4350 +138883 439915 0.4800 +138883 440050 0.5750 +138883 440051 0.5050 +138883 728299 0.6890 +139065 158866 0.4090 +139065 285220 0.4280 +139067 158787 0.4550 +139067 280658 0.4470 +139067 387712 0.4110 +139067 541578 0.5700 +139067 100129239 0.5450 +139067 100130086 0.4350 +139067 101927685 0.4210 +139081 158809 0.5270 +139081 197370 0.5950 +139081 286053 0.4750 +139081 347541 0.4020 +139081 440955 0.4470 +139081 441525 0.4800 +139081 493861 0.4270 +139081 541578 0.4180 +139081 728712 0.4200 +139081 100129239 0.4180 +139105 139135 0.4410 +139105 147199 0.4710 +139105 158521 0.4030 +139105 219670 0.4110 +139105 221336 0.4320 +139105 340205 0.6260 +139105 342892 0.4190 +139105 389206 0.5300 +139105 645864 0.4290 +139105 100128327 0.4400 +139135 158511 0.5700 +139135 221191 0.4640 +139135 266743 0.5440 +139135 389903 0.4730 +139135 541466 0.5360 +139135 548313 0.4350 +139135 653220 0.4530 +139135 727837 0.4720 +139135 728137 0.4300 +139135 728343 0.4760 +139135 728712 0.4050 +139135 729447 0.6060 +139135 100008586 0.4070 +139135 102723547 0.4790 +139170 139425 0.7600 +139170 285429 0.5970 +139170 340578 0.7800 +139170 347442 0.7470 +139189 154141 0.6770 +139189 160851 0.4460 +139189 222194 0.5260 +139189 253558 0.6650 +139189 259266 0.4160 +139189 346606 0.6610 +139212 140894 0.4290 +139212 143241 0.4190 +139212 144809 0.5720 +139212 146845 0.4790 +139212 154865 0.5140 +139212 158787 0.4900 +139212 158798 0.8220 +139212 160762 0.4220 +139212 161003 0.4970 +139212 161582 0.9610 +139212 164781 0.5780 +139212 168090 0.4300 +139212 200403 0.4280 +139212 201625 0.6870 +139212 219681 0.4440 +139212 221421 0.5260 +139212 246176 0.7080 +139212 254956 0.5000 +139212 255119 0.6440 +139212 257062 0.4840 +139212 286464 0.5420 +139212 339829 0.6930 +139212 345643 0.4530 +139212 345895 0.6230 +139212 352909 0.8400 +139212 374407 0.5320 +139212 388389 0.7090 +139212 399949 0.4770 +139212 401551 0.4080 +139221 159090 0.4020 +139221 283459 0.4170 +139221 284427 0.5780 +139221 440567 0.6140 +139221 100532726 0.6230 +139231 152687 0.5220 +139231 254427 0.4520 +139231 100131827 0.5780 +139285 150864 0.4540 +139285 192111 0.4360 +139322 169966 0.4160 +139322 254065 0.4650 +139322 340562 0.6130 +139322 345778 0.8710 +139322 387990 0.5590 +139322 400916 0.9650 +139322 401505 0.7640 +139322 440574 0.9930 +139322 100188893 0.5950 +139322 100287932 0.4140 +139324 388588 0.5720 +139341 192111 0.9800 +139341 283106 0.9090 +139341 440738 0.6670 +139378 146562 0.4340 +139411 152330 0.6090 +139411 168400 0.7280 +139411 285195 0.6680 +139420 140730 0.4140 +139420 150280 0.4180 +139420 151987 0.9540 +139420 200185 0.4710 +139420 200186 0.9000 +139420 389730 0.4160 +139420 404552 0.5700 +139422 170626 0.4440 +139422 197370 0.4920 +139422 203074 0.4830 +139422 389860 0.4770 +139425 146429 0.4300 +139425 285429 0.6030 +139425 340578 0.7920 +139425 347442 0.5980 +139562 158880 0.4520 +139562 159195 0.4080 +139562 161725 0.6290 +139562 219333 0.4800 +139562 220213 0.6580 +139562 221302 0.9160 +139562 344022 0.4460 +139562 373509 0.4530 +139562 377630 0.4510 +139562 389856 0.4720 +139562 728393 0.4030 +139562 728400 0.4030 +139562 728405 0.4030 +139562 728419 0.4030 +139596 144193 0.8830 +139596 151531 0.9690 +139596 158067 0.4200 +139596 162417 0.8210 +139596 200895 0.5260 +139596 221264 0.4200 +139596 221823 0.4100 +139596 359948 0.4590 +139596 377841 0.9000 +139596 100526794 0.9030 +139599 146779 0.4500 +139599 169966 0.4040 +139599 197370 0.5000 +139599 283847 0.4280 +139599 286053 0.4750 +139599 493861 0.5020 +139599 619208 0.5430 +139604 145942 0.5660 +139604 161142 0.4750 +139604 164684 0.4240 +139604 170062 0.4480 +139604 197370 0.5000 +139604 200232 0.6250 +139604 219493 0.5320 +139604 220082 0.4460 +139604 257169 0.5840 +139604 283238 0.5830 +139604 283461 0.6140 +139604 286053 0.4750 +139604 347404 0.5380 +139604 387775 0.5230 +139604 390061 0.4720 +139604 390113 0.4700 +139604 391190 0.5880 +139604 493861 0.4260 +139604 728591 0.4180 +139628 221037 0.4570 +139628 399823 0.4500 +139628 442425 0.4600 +139628 553115 0.6190 +139716 146433 0.5000 +139728 163688 0.4590 +139728 283820 0.5070 +139728 408050 0.5070 +139735 148741 0.5330 +139741 140625 0.4760 +139741 284680 0.4320 +139741 375189 0.4830 +139741 387332 0.4050 +139741 474381 0.4130 +139741 100130613 0.5230 +139760 151306 0.7420 +139760 221955 0.4300 +139760 222236 0.6850 +139760 222545 0.4040 +139760 266977 0.4190 +139760 338557 0.7800 +139760 350383 0.6900 +139804 154007 0.6190 +139804 221662 0.5120 +139804 344657 0.4020 +139818 728226 0.5290 +140032 140801 0.9290 +140032 143244 0.7570 +140032 143630 0.4780 +140032 159163 0.4330 +140032 164153 0.5300 +140032 169522 0.4890 +140032 170850 0.4890 +140032 200916 0.8700 +140032 254268 0.8350 +140032 255308 0.5980 +140032 283518 0.4890 +140032 285855 0.8740 +140032 342538 0.5390 +140032 343068 0.5430 +140032 343070 0.5430 +140032 345630 0.6050 +140032 347487 0.8470 +140032 353513 0.5440 +140032 378948 0.5630 +140032 378949 0.4710 +140032 378950 0.5590 +140032 387129 0.8240 +140032 390999 0.5430 +140032 391002 0.5430 +140032 400735 0.5430 +140032 400736 0.5430 +140032 440560 0.5430 +140032 440561 0.5430 +140032 441873 0.5430 +140032 442862 0.5070 +140032 442867 0.5420 +140032 442868 0.5420 +140032 641776 0.6650 +140032 643909 0.6650 +140032 645051 0.6070 +140032 645073 0.6160 +140032 645359 0.5430 +140032 653619 0.5430 +140032 728132 0.4350 +140032 728395 0.5470 +140032 728403 0.4490 +140032 728524 0.6650 +140032 728689 0.5980 +140032 729396 0.6600 +140032 729422 0.6070 +140032 729428 0.6460 +140032 729431 0.6070 +140032 729442 0.6070 +140032 729447 0.6280 +140032 729528 0.5430 +140032 100008586 0.6230 +140032 100132399 0.6070 +140032 100287482 0.7520 +140032 100505478 0.7960 +140032 100526842 0.8770 +140032 100529097 0.8420 +140032 100529239 0.8490 +140032 100996746 0.6650 +140032 101929983 0.5430 +140032 102724473 0.6070 +140032 105180390 0.6650 +140032 105180391 0.6650 +140258 147409 0.4920 +140258 254950 0.4860 +140258 337878 0.9270 +140258 337879 0.9130 +140258 337880 0.5980 +140258 337959 0.4220 +140258 337960 0.4390 +140258 337963 0.4190 +140258 337966 0.6280 +140258 337967 0.7130 +140258 337968 0.6040 +140258 337969 0.5930 +140258 337970 0.6910 +140258 337975 0.7560 +140258 337976 0.7790 +140258 337979 0.6690 +140258 342574 0.4230 +140258 353323 0.4440 +140258 353332 0.5150 +140258 388818 0.6950 +140258 643803 0.7760 +140258 643812 0.6450 +140258 728255 0.5080 +140258 100132476 0.5360 +140258 100505753 0.5050 +140258 112441428 0.6960 +140290 140680 0.4220 +140290 163786 0.4780 +140290 317754 0.4310 +140290 100288966 0.4380 +140432 259217 0.4200 +140432 337867 0.4140 +140432 339416 0.4200 +140432 340578 0.4840 +140432 375593 0.4160 +140432 378108 0.4320 +140432 388633 0.4200 +140453 143662 0.9320 +140453 146712 0.4680 +140453 192134 0.5080 +140453 200958 0.9290 +140453 256435 0.4140 +140453 374378 0.4020 +140453 374907 0.4050 +140453 375790 0.4420 +140453 388697 0.5010 +140453 394263 0.8540 +140453 442117 0.4170 +140453 653808 0.4140 +140453 727897 0.9180 +140453 100507679 0.5940 +140456 140459 0.6190 +140456 140739 0.5290 +140456 142686 0.5020 +140456 148741 0.4090 +140456 149951 0.4990 +140456 150684 0.4990 +140456 157567 0.4270 +140456 170622 0.5040 +140456 317754 0.4920 +140456 339291 0.4690 +140456 388468 0.4950 +140456 404785 0.4880 +140456 554226 0.4970 +140456 641455 0.4920 +140456 100287399 0.4690 +140456 100288966 0.4920 +140456 100996331 0.4980 +140456 102723502 0.4920 +140456 102724631 0.4910 +140458 140459 0.5600 +140458 140462 0.4260 +140458 140739 0.5060 +140458 140825 0.5060 +140458 142685 0.4040 +140458 146862 0.4100 +140458 149951 0.4990 +140458 150572 0.4350 +140458 150684 0.4990 +140458 157567 0.4140 +140458 170622 0.5040 +140458 202333 0.4210 +140458 221662 0.4040 +140458 317754 0.5180 +140458 339291 0.4960 +140458 347273 0.4190 +140458 375248 0.4470 +140458 388468 0.5190 +140458 400986 0.4530 +140458 404093 0.4100 +140458 404785 0.5150 +140458 442721 0.4600 +140458 641455 0.5150 +140458 100287399 0.4950 +140458 100288966 0.5180 +140458 100996331 0.5230 +140458 100996492 0.4370 +140458 102723502 0.5180 +140458 102724631 0.5170 +140459 140460 0.6400 +140459 140462 0.5230 +140459 140739 0.5510 +140459 142685 0.5370 +140459 142689 0.5430 +140459 149951 0.4990 +140459 150684 0.5040 +140459 166979 0.5700 +140459 170622 0.4990 +140459 200539 0.4540 +140459 222235 0.4030 +140459 246184 0.5430 +140459 347240 0.4250 +140460 140739 0.6020 +140460 144347 0.4610 +140460 149951 0.4990 +140460 150684 0.4990 +140460 160335 0.5780 +140460 170622 0.4990 +140460 387712 0.4120 +140460 388569 0.4930 +140460 442319 0.4220 +140461 140739 0.5520 +140461 149951 0.5010 +140461 150684 0.5110 +140461 170622 0.4990 +140461 200312 0.5520 +140461 339291 0.4920 +140461 389257 0.4280 +140461 392843 0.4110 +140462 140739 0.6080 +140462 149951 0.4990 +140462 150684 0.4990 +140462 157567 0.4650 +140462 158747 0.5140 +140462 170622 0.5850 +140462 253650 0.4310 +140462 283521 0.5240 +140462 342850 0.4270 +140462 441459 0.4300 +140462 548596 0.8330 +140462 645864 0.4270 +140465 140735 0.7870 +140465 340156 0.9400 +140465 399687 0.7290 +140467 221938 0.4670 +140467 339665 0.4640 +140467 441150 0.4350 +140469 151242 0.4030 +140469 157777 0.4080 +140469 285141 0.4080 +140469 286262 0.5560 +140469 339768 0.9620 +140469 388963 0.4640 +140469 389058 0.5120 +140469 389207 0.6030 +140469 494513 0.5030 +140469 643226 0.6290 +140469 645811 0.4500 +140469 647087 0.4160 +140545 155435 0.6640 +140545 100506049 0.4050 +140564 164684 0.4260 +140564 200316 0.5290 +140564 283459 0.6610 +140564 284695 0.4400 +140564 388753 0.5880 +140564 403314 0.8180 +140564 440567 0.6870 +140564 100532726 0.4600 +140576 337867 0.4060 +140576 338324 0.5190 +140576 653145 0.4730 +140578 140689 0.4300 +140578 165904 0.4260 +140578 286753 0.4180 +140578 342865 0.4070 +140578 440026 0.5230 +140596 140850 0.6010 +140596 140881 0.5680 +140596 245908 0.9590 +140596 245909 0.8490 +140596 245910 0.9200 +140596 245911 0.8710 +140596 245913 0.6400 +140596 245927 0.5390 +140596 245928 0.6670 +140596 245929 0.5210 +140596 245930 0.5130 +140596 245932 0.6230 +140596 245934 0.6590 +140596 245936 0.6550 +140596 245937 0.6930 +140596 245938 0.5220 +140596 245939 0.6400 +140596 245940 0.5250 +140596 400830 0.5770 +140596 414325 0.9820 +140596 503614 0.5040 +140596 503618 0.8910 +140596 503841 0.9510 +140596 504180 0.8190 +140596 613209 0.5290 +140596 613210 0.4990 +140596 613211 0.4990 +140596 644414 0.6270 +140596 728358 0.8490 +140596 100133267 0.5530 +140597 340542 0.7160 +140606 257202 0.5140 +140606 280636 0.8010 +140606 348303 0.7750 +140606 403278 0.4310 +140609 163486 0.6640 +140609 171389 0.4930 +140609 199713 0.5000 +140609 203286 0.9020 +140609 256364 0.4050 +140609 284086 0.5470 +140609 284110 0.4340 +140609 286204 0.6560 +140609 348995 0.4010 +140609 100101267 0.4050 +140612 147948 0.4010 +140612 388566 0.4600 +140625 148870 0.4080 +140625 149018 0.4260 +140625 149643 0.4380 +140625 151254 0.4750 +140625 161502 0.4960 +140625 246777 0.4270 +140625 283629 0.4950 +140625 284382 0.5790 +140625 284680 0.4320 +140625 339779 0.4750 +140625 375189 0.4840 +140625 388946 0.4710 +140628 161882 0.6910 +140628 405754 0.4440 +140679 140689 0.4640 +140679 145581 0.4120 +140679 146713 0.6860 +140679 165257 0.4340 +140679 246213 0.9820 +140679 266743 0.4280 +140679 343578 0.4760 +140679 347730 0.4090 +140679 375323 0.4010 +140679 388662 0.4500 +140679 642968 0.4030 +140679 645974 0.4230 +140680 148003 0.4010 +140680 149840 0.4430 +140680 112441434 0.6480 +140683 149954 0.8550 +140683 352999 0.5400 +140683 359710 0.5820 +140685 140885 0.5100 +140685 170482 0.4010 +140685 283420 0.5880 +140685 284422 0.5010 +140685 100133941 0.4250 +140685 100526664 0.4630 +140686 140825 0.4010 +140686 140832 0.5980 +140686 140870 0.4060 +140686 149708 0.5550 +140686 164237 0.6930 +140686 171177 0.5950 +140686 280664 0.7130 +140686 345062 0.4690 +140686 391253 0.5440 +140686 440561 0.4790 +140686 100288687 0.6060 +140688 140831 0.4030 +140688 149951 0.4620 +140688 196951 0.4980 +140688 221150 0.5970 +140688 374618 0.7380 +140690 147912 0.6150 +140690 170626 0.4300 +140690 390874 0.4130 +140690 440093 0.5300 +140690 440686 0.5300 +140690 642636 0.6530 +140690 653604 0.5300 +140691 145942 0.4700 +140691 205860 0.4130 +140691 282991 0.6300 +140691 287015 0.4760 +140691 338661 0.5590 +140691 389434 0.6240 +140700 155368 0.4170 +140700 162394 0.4460 +140700 201191 0.5180 +140700 340527 0.4050 +140700 344658 0.4090 +140700 389432 0.5150 +140700 400713 0.4180 +140701 145447 0.6760 +140701 171586 0.4730 +140701 253152 0.4650 +140701 339168 0.4360 +140706 196883 0.4120 +140706 221395 0.4260 +140706 343702 0.6280 +140710 151556 0.5190 +140710 201514 0.4230 +140711 163747 0.5300 +140711 201243 0.6070 +140711 441381 0.5510 +140730 163255 0.5050 +140730 202559 0.4080 +140730 219578 0.4230 +140730 286336 0.4800 +140730 386617 0.4320 +140730 389658 0.4470 +140730 100996939 0.5010 +140731 143241 0.4760 +140731 164284 0.4100 +140731 164714 0.5030 +140731 220416 0.6320 +140731 254050 0.5720 +140731 286464 0.5250 +140731 374470 0.4820 +140731 388701 0.6090 +140731 389320 0.5270 +140731 442444 0.5200 +140732 144406 0.4110 +140732 146849 0.5590 +140732 147872 0.8120 +140732 150280 0.4440 +140732 153745 0.4240 +140732 161176 0.7930 +140732 163183 0.7230 +140732 199223 0.4220 +140732 199953 0.4040 +140732 201134 0.5710 +140732 219793 0.4470 +140732 219938 0.5600 +140732 256979 0.7800 +140732 283129 0.4140 +140732 283417 0.6830 +140732 283629 0.4670 +140732 283847 0.4530 +140732 317719 0.4120 +140732 374407 0.6150 +140732 388795 0.4810 +140732 401024 0.5130 +140732 107983988 0.4180 +140732 111216276 0.4260 +140733 165631 0.4850 +140733 196528 0.4250 +140733 200558 0.4520 +140733 202559 0.4010 +140733 221443 0.8110 +140733 401145 0.4040 +140735 144132 0.4940 +140735 150864 0.6230 +140735 154796 0.6070 +140735 161829 0.6740 +140735 196385 0.4530 +140735 200132 0.7480 +140735 200894 0.5710 +140735 203068 0.5030 +140735 219681 0.4110 +140735 255758 0.8830 +140735 283461 0.4930 +140735 343521 0.7560 +140738 152007 0.5400 +140738 284611 0.4050 +140739 140825 0.4990 +140739 142685 0.5060 +140739 142686 0.5060 +140739 142689 0.5020 +140739 149951 0.5370 +140739 150684 0.5350 +140739 170622 0.5430 +140739 401036 0.5280 +140766 145173 0.4640 +140766 147372 0.4680 +140766 149111 0.5620 +140766 255631 0.5710 +140767 161582 0.4570 +140767 221264 0.8300 +140767 254394 0.4350 +140775 201163 0.6720 +140775 203228 0.9990 +140775 376267 0.4600 +140775 389541 0.7200 +140801 143244 0.7160 +140801 157310 0.4880 +140801 158067 0.4340 +140801 162427 0.5040 +140801 164153 0.7160 +140801 200916 0.9170 +140801 201595 0.5830 +140801 219927 0.9010 +140801 221264 0.4340 +140801 254268 0.8060 +140801 285855 0.9310 +140801 342538 0.6790 +140801 343068 0.5440 +140801 343070 0.5440 +140801 345051 0.5000 +140801 347487 0.9110 +140801 374659 0.6090 +140801 387129 0.7700 +140801 390999 0.5440 +140801 391002 0.5440 +140801 400735 0.5440 +140801 400736 0.5440 +140801 440560 0.5450 +140801 440561 0.5440 +140801 441873 0.5440 +140801 641776 0.6620 +140801 643909 0.6620 +140801 645051 0.6520 +140801 645073 0.6520 +140801 645359 0.5440 +140801 653619 0.5440 +140801 728524 0.6620 +140801 729396 0.6520 +140801 729422 0.6520 +140801 729428 0.6520 +140801 729431 0.6520 +140801 729442 0.6520 +140801 729447 0.6520 +140801 729528 0.5440 +140801 100008586 0.6520 +140801 100128731 0.4300 +140801 100132399 0.6520 +140801 100287482 0.6760 +140801 100505478 0.6920 +140801 100526842 0.9860 +140801 100529097 0.8180 +140801 100529239 0.9860 +140801 100996746 0.6620 +140801 101929983 0.5440 +140801 102724473 0.6520 +140801 105180390 0.6620 +140801 105180391 0.6620 +140801 114483834 0.4930 +140803 149461 0.8090 +140803 152519 0.5730 +140803 162514 0.6830 +140803 254428 0.7990 +140803 255231 0.4750 +140803 348938 0.4800 +140807 144501 0.4340 +140807 196374 0.6490 +140807 286887 0.4250 +140807 319101 0.9990 +140807 338785 0.4250 +140807 342574 0.4430 +140807 353288 0.4340 +140807 374454 0.4410 +140809 257202 0.5420 +140809 404636 0.4410 +140809 493869 0.5920 +140823 192286 0.5650 +140823 254863 0.5950 +140823 374291 0.6550 +140823 401505 0.4330 +140823 100188893 0.4120 +140823 100287932 0.8510 +140825 149951 0.5040 +140825 150684 0.5010 +140825 170622 0.5000 +140825 280664 0.4810 +140831 257044 0.4270 +140831 257629 0.4880 +140831 387032 0.7810 +140832 140870 0.5960 +140832 164237 0.6640 +140832 245934 0.4360 +140832 259239 0.6040 +140832 259240 0.6670 +140832 391253 0.6190 +140836 140873 0.4660 +140836 163747 0.6180 +140836 199953 0.4080 +140836 221496 0.8480 +140836 254122 0.4140 +140836 440093 0.8390 +140836 440686 0.8390 +140836 653604 0.8390 +140836 728361 0.4580 +140838 340359 0.4550 +140838 377007 0.5550 +140850 140881 0.8620 +140850 221223 0.4270 +140850 245908 0.5580 +140850 245910 0.6250 +140850 245911 0.7410 +140850 245913 0.8340 +140850 245927 0.7770 +140850 245928 0.8690 +140850 245929 0.8170 +140850 245930 0.8050 +140850 245932 0.8320 +140850 245934 0.5530 +140850 245936 0.5880 +140850 245937 0.8430 +140850 245938 0.8910 +140850 245939 0.7310 +140850 245940 0.5810 +140850 391253 0.4590 +140850 392399 0.4330 +140850 400830 0.8430 +140850 414325 0.6370 +140850 503841 0.7680 +140850 613209 0.8350 +140850 613210 0.5100 +140850 613211 0.8680 +140850 644414 0.7920 +140850 728358 0.5830 +140850 100133267 0.5290 +140856 246100 0.4780 +140856 253175 0.4130 +140856 284382 0.4530 +140856 284422 0.4130 +140856 339669 0.5180 +140856 389763 0.4940 +140856 414328 0.5430 +140856 122405565 0.4130 +140870 164237 0.5770 +140870 280664 0.4920 +140870 284366 0.4120 +140870 391253 0.8100 +140870 100526773 0.4690 +140873 145942 0.5790 +140873 147011 0.4290 +140873 153643 0.4480 +140873 154313 0.4360 +140873 158830 0.5440 +140873 160419 0.5270 +140873 200232 0.5070 +140873 219938 0.4050 +140873 256957 0.4870 +140873 257236 0.5060 +140873 339669 0.5130 +140873 399693 0.5440 +140876 345275 0.4610 +140876 374786 0.4120 +140880 158062 0.5420 +140880 245932 0.5440 +140880 245939 0.4970 +140880 259240 0.4430 +140880 338879 0.5080 +140880 392399 0.8050 +140880 414332 0.4080 +140880 653423 0.4080 +140880 100130705 0.6230 +140881 245908 0.6550 +140881 245909 0.4140 +140881 245910 0.5410 +140881 245911 0.6060 +140881 245913 0.7800 +140881 245927 0.7660 +140881 245928 0.7570 +140881 245929 0.6990 +140881 245930 0.7890 +140881 245932 0.8200 +140881 245934 0.8210 +140881 245936 0.7550 +140881 245937 0.7620 +140881 245938 0.8860 +140881 245939 0.8330 +140881 245940 0.6100 +140881 259239 0.4170 +140881 259240 0.5330 +140881 400830 0.7510 +140881 414325 0.5970 +140881 503841 0.6930 +140881 613209 0.6790 +140881 613210 0.4990 +140881 613211 0.7030 +140881 644414 0.7330 +140881 653423 0.4080 +140881 728358 0.5940 +140881 100133267 0.6250 +140883 155054 0.4740 +140883 157574 0.4550 +140883 159119 0.4020 +140885 151888 0.4020 +140885 153579 0.4070 +140885 160364 0.6250 +140885 168400 0.6240 +140885 170482 0.4470 +140885 199675 0.4990 +140885 283420 0.6430 +140885 338323 0.4300 +140885 344807 0.4760 +140885 653509 0.4220 +140885 100133941 0.8800 +140885 100423062 0.9330 +140885 100526664 0.5920 +140886 167227 0.4450 +140886 203523 0.4020 +140886 221662 0.4210 +140886 253314 0.4040 +140886 255967 0.4770 +140886 284131 0.4500 +140886 317649 0.4040 +140886 100529063 0.5250 +140890 196441 0.4360 +140890 200407 0.4180 +140890 220988 0.4920 +140890 284695 0.4490 +140890 285672 0.7910 +140890 100526760 0.4790 +140894 152815 0.4350 +140894 168975 0.5490 +140894 283847 0.4780 +140894 317719 0.4670 +140894 317761 0.4330 +140894 374768 0.4390 +140894 375337 0.4480 +140901 143884 0.4520 +140901 201158 0.4040 +140901 284040 0.4040 +140901 285973 0.6040 +140901 339448 0.4200 +140901 440738 0.4380 +140901 441925 0.5740 +140901 643246 0.4380 +140901 643836 0.4300 +140901 780776 0.4040 +140901 100533496 0.4040 +140902 145741 0.5060 +140902 152007 0.4590 +140902 152065 0.4450 +140902 169792 0.5070 +140902 388125 0.4470 +140902 388419 0.4330 +140947 100170765 0.5110 +142678 157697 0.4610 +142678 440738 0.5080 +142678 643246 0.5080 +142679 152559 0.4500 +142680 149461 0.4380 +142680 337876 0.4180 +142680 643596 0.6310 +142684 158931 0.4960 +142684 196383 0.4830 +142684 282808 0.8420 +142684 340542 0.4300 +142685 149951 0.4990 +142685 150684 0.5780 +142685 151790 0.4750 +142685 154865 0.5320 +142685 170622 0.4990 +142685 339291 0.4490 +142685 374860 0.5110 +142685 402635 0.4080 +142685 442721 0.5790 +142685 554226 0.5050 +142685 646019 0.4130 +142686 149951 0.4990 +142686 150684 0.5310 +142686 157567 0.4530 +142686 170622 0.4990 +142686 102724488 0.4030 +142689 149951 0.4990 +142689 150684 0.4990 +142689 157567 0.4020 +142689 158866 0.5110 +142689 170394 0.5490 +142689 170622 0.4990 +142689 200539 0.4130 +142689 317754 0.5020 +142689 339291 0.6080 +142689 341416 0.4430 +142689 360200 0.5040 +142689 374860 0.4370 +142689 375248 0.4560 +142689 388468 0.5040 +142689 389257 0.5850 +142689 400986 0.4540 +142689 404785 0.5080 +142689 554226 0.4910 +142689 641455 0.5090 +142689 100287399 0.4830 +142689 100288966 0.5030 +142689 100996331 0.5050 +142689 102723502 0.5020 +142689 102724631 0.5020 +142891 253782 0.4340 +142910 341392 0.4070 +142940 146212 0.6010 +142940 150962 0.8470 +142940 152992 0.6100 +142940 158234 0.4390 +142940 161424 0.5070 +142940 165545 0.4510 +142940 221078 0.6460 +142940 221830 0.5310 +142940 285367 0.7380 +142940 285855 0.4010 +142940 345630 0.8400 +142940 387338 0.5030 +142940 692312 0.5330 +142940 728689 0.4230 +143098 144402 0.4030 +143098 146059 0.4110 +143098 147179 0.4160 +143098 154796 0.5700 +143098 200894 0.4310 +143098 221322 0.4550 +143098 284427 0.5060 +143098 100506658 0.4850 +143162 195977 0.4270 +143162 414189 0.4420 +143187 150350 0.4130 +143187 160364 0.7060 +143187 203062 0.8080 +143187 203245 0.6100 +143187 221960 0.4130 +143187 339122 0.5690 +143187 339302 0.5500 +143187 339487 0.4180 +143187 374354 0.4450 +143187 415117 0.7220 +143187 594855 0.5400 +143241 158798 0.4280 +143241 199964 0.5710 +143241 254050 0.5780 +143241 259282 0.5590 +143241 286464 0.5350 +143241 387694 0.6860 +143241 388701 0.5400 +143241 389320 0.4870 +143241 494188 0.5120 +143244 169522 0.4260 +143244 170850 0.4260 +143244 200916 0.6150 +143244 219927 0.9340 +143244 221823 0.4150 +143244 254268 0.6010 +143244 283383 0.6570 +143244 283518 0.4260 +143244 285855 0.7990 +143244 342538 0.4300 +143244 343068 0.5100 +143244 343070 0.5100 +143244 347487 0.7810 +143244 387129 0.6810 +143244 390999 0.5100 +143244 391002 0.5100 +143244 400735 0.5100 +143244 400736 0.5100 +143244 440560 0.5100 +143244 440561 0.5100 +143244 441873 0.5100 +143244 641776 0.6260 +143244 643909 0.6260 +143244 645051 0.4920 +143244 645073 0.4920 +143244 645359 0.5100 +143244 653619 0.5100 +143244 654364 0.4990 +143244 728524 0.6260 +143244 729396 0.4920 +143244 729422 0.4920 +143244 729428 0.4920 +143244 729431 0.4920 +143244 729442 0.4920 +143244 729447 0.4920 +143244 729528 0.5100 +143244 100008586 0.4920 +143244 100132399 0.4920 +143244 100287482 0.7550 +143244 100505478 0.6780 +143244 100526842 0.8200 +143244 100529097 0.7160 +143244 100529239 0.6050 +143244 100996746 0.6260 +143244 101929983 0.5100 +143244 102724473 0.4920 +143244 105180390 0.6260 +143244 105180391 0.6260 +143279 729233 0.4340 +143282 100271715 0.4750 +143282 107986096 0.4550 +143384 339745 0.5970 +143384 387338 0.4450 +143425 203068 0.7560 +143458 339390 0.5560 +143471 317761 0.5500 +143471 644186 0.4510 +143471 728637 0.4730 +143471 100652824 0.6450 +143496 387715 0.4480 +143503 284521 0.5700 +143503 338442 0.5700 +143503 344892 0.4270 +143503 391196 0.5380 +143503 401427 0.5490 +143506 196120 0.5430 +143506 221895 0.5130 +143506 390031 0.5430 +143506 390033 0.5430 +143506 441584 0.5430 +143506 642843 0.7680 +143570 162394 0.4090 +143630 199223 0.4290 +143630 200916 0.4080 +143630 347487 0.4110 +143630 389320 0.4490 +143630 390067 0.5440 +143630 100529097 0.4480 +143630 100529239 0.4200 +143662 146712 0.4200 +143662 153579 0.5190 +143662 192134 0.4930 +143662 200958 0.9150 +143662 256435 0.4050 +143662 374378 0.4200 +143662 394263 0.8910 +143662 442117 0.4200 +143662 643904 0.4250 +143662 653808 0.4330 +143662 727897 0.8450 +143662 100507679 0.6960 +143678 146378 0.4180 +143678 146852 0.4180 +143678 158431 0.5430 +143678 161931 0.4130 +143678 256148 0.4750 +143678 374973 0.5450 +143678 442361 0.7350 +143678 644890 0.4030 +143678 645432 0.4750 +143678 728637 0.4180 +143684 386678 0.4570 +143686 162239 0.5500 +143686 253260 0.7530 +143689 154197 0.5310 +143689 161829 0.6520 +143689 163589 0.8160 +143689 192669 0.4660 +143689 192670 0.6470 +143689 201164 0.8150 +143689 221400 0.8040 +143689 284131 0.4800 +143689 339345 0.5860 +143689 340719 0.5700 +143689 342977 0.5750 +143689 387332 0.4640 +143689 440093 0.5600 +143689 440686 0.5590 +143689 653604 0.5590 +143689 100129278 0.6640 +143872 144100 0.4100 +143872 152586 0.5080 +143872 284071 0.4210 +143872 389073 0.5130 +143872 389337 0.4670 +143872 445328 0.4290 +143872 646960 0.4290 +143872 100151643 0.7090 +143879 100289187 0.5920 +143884 151903 0.8200 +143884 163859 0.5640 +143884 170370 0.4800 +143884 199746 0.4990 +143884 207063 0.4100 +143884 220074 0.4280 +143884 220988 0.5510 +143884 283638 0.5560 +143884 338811 0.4690 +143884 349565 0.4110 +143884 643836 0.5470 +143884 100534599 0.5400 +143888 152002 0.4790 +143888 160140 0.6650 +143888 283464 0.5810 +143888 285203 0.5450 +143888 727936 0.4930 +143903 201633 0.4790 +144097 149041 0.5110 +144097 163589 0.4180 +144097 169981 0.7080 +144097 333932 0.8000 +144097 440093 0.8200 +144097 440686 0.8200 +144097 474343 0.8390 +144097 553158 0.4460 +144097 653604 0.8200 +144100 169792 0.4160 +144100 219621 0.5390 +144100 282966 0.4200 +144100 340348 0.9110 +144100 399665 0.5830 +144100 399687 0.4140 +144100 100506658 0.4410 +144108 333932 0.9090 +144108 344787 0.4070 +144108 554313 0.9040 +144108 653604 0.9110 +144110 728269 0.4350 +144110 100505591 0.4840 +144124 144125 0.4880 +144124 283297 0.9990 +144124 284098 0.4240 +144124 338398 0.4180 +144124 341276 0.9990 +144132 146754 0.5860 +144132 147912 0.4340 +144132 150696 0.4330 +144132 201625 0.5400 +144132 221786 0.4230 +144132 259282 0.4660 +144132 342346 0.4260 +144132 386674 0.4460 +144132 388389 0.4340 +144132 441272 0.4140 +144165 154881 0.8120 +144165 253260 0.4850 +144165 285590 0.4150 +144165 378884 0.6810 +144193 151230 0.5920 +144193 151531 0.6620 +144195 154091 0.4350 +144195 387775 0.5180 +144233 146542 0.4100 +144233 257194 0.5710 +144233 728741 0.4180 +144245 201595 0.9490 +144245 219983 0.4180 +144245 440138 0.4010 +144245 646862 0.5100 +144245 729085 0.4180 +144321 147015 0.4700 +144347 144348 0.5430 +144347 339210 0.4620 +144348 196385 0.7020 +144348 387748 0.4470 +144363 154791 0.5960 +144363 160492 0.4780 +144363 199870 0.4200 +144363 201229 0.7070 +144363 284184 0.5070 +144363 497661 0.4440 +144363 644096 0.5640 +144363 101059938 0.5070 +144363 127898561 0.4180 +144402 147381 0.4380 +144402 151126 0.4570 +144402 152330 0.4150 +144402 200894 0.4130 +144402 253827 0.4050 +144402 341359 0.4460 +144404 283385 0.4440 +144404 388730 0.4330 +144406 146754 0.5600 +144406 146845 0.5910 +144406 150483 0.4140 +144406 154313 0.4630 +144406 159686 0.6110 +144406 163688 0.4060 +144406 199223 0.6390 +144406 201625 0.4090 +144406 254528 0.4040 +144406 255101 0.4360 +144406 286464 0.5710 +144406 337985 0.5700 +144406 387332 0.4910 +144406 401024 0.6400 +144448 144809 0.5180 +144448 166979 0.4030 +144448 338596 0.4220 +144448 341350 0.4660 +144448 389177 0.4550 +144448 728276 0.4130 +144453 285175 0.4590 +144453 376132 0.5620 +144453 128125814 0.5780 +144455 150468 0.4730 +144455 157313 0.5270 +144455 220042 0.4230 +144455 259266 0.7240 +144455 374462 0.4090 +144501 163778 0.4080 +144501 196374 0.4800 +144501 257000 0.6460 +144501 286887 0.4440 +144501 319101 0.4200 +144501 338785 0.4550 +144501 374454 0.4410 +144501 388533 0.5300 +144535 146845 0.4990 +144535 163688 0.5230 +144535 200162 0.5650 +144535 200373 0.7110 +144535 286464 0.4390 +144535 339829 0.4020 +144535 345895 0.4240 +144535 374378 0.4390 +144535 389177 0.9800 +144535 401024 0.4640 +144535 111216276 0.4340 +144568 342897 0.4340 +144568 388533 0.4810 +144568 440387 0.8250 +144568 440854 0.4110 +144568 728358 0.4080 +144577 153129 0.5930 +144577 154743 0.9870 +144577 155066 0.4990 +144577 201163 0.5020 +144577 220441 0.4540 +144577 222234 0.4090 +144577 245972 0.4990 +144577 245973 0.4990 +144577 389541 0.7420 +144577 652968 0.7800 +144577 729438 0.7410 +144608 200844 0.4470 +144608 339500 0.4500 +144608 440087 0.6150 +144699 200010 0.4180 +144699 200933 0.6430 +144699 254170 0.4690 +144699 283807 0.4300 +144699 284361 0.4120 +144699 377630 0.5460 +144699 389856 0.4550 +144699 554251 0.4040 +144699 654429 0.5100 +144715 254528 0.4490 +144717 149483 0.5410 +144717 150368 0.8220 +144717 154664 0.5480 +144717 259266 0.5090 +144717 337974 0.4740 +144717 390260 0.4030 +144809 149499 0.5990 +144809 158798 0.5290 +144809 161003 0.5840 +144809 164781 0.4750 +144809 166979 0.4170 +144809 200132 0.4850 +144809 201625 0.4400 +144809 254956 0.5900 +144809 338596 0.4020 +144809 341350 0.4490 +144809 345895 0.4190 +144809 389161 0.5760 +144809 389177 0.5750 +144809 399949 0.6690 +144809 100287718 0.4910 +144811 160857 0.9490 +144811 285973 0.4670 +144983 146713 0.4030 +144983 159163 0.5020 +144983 220988 0.4470 +144983 378948 0.5080 +144983 378949 0.5080 +144983 378950 0.5080 +144983 378951 0.5020 +144983 400891 0.4710 +145173 157869 0.4060 +145173 170689 0.4300 +145173 170690 0.4440 +145173 170691 0.6710 +145173 170692 0.6880 +145173 171019 0.4330 +145173 339366 0.4800 +145173 387715 0.6200 +145173 100288842 0.4230 +145173 100534599 0.4240 +145226 157506 0.6510 +145226 157657 0.5670 +145226 158835 0.9080 +145226 167691 0.8480 +145226 169522 0.4720 +145226 285440 0.4860 +145226 339761 0.9240 +145226 343035 0.8510 +145226 346007 0.8130 +145226 348110 0.4200 +145226 375298 0.8280 +145226 375444 0.4600 +145226 388531 0.4080 +145226 388939 0.7890 +145226 401124 0.4290 +145226 768206 0.7390 +145258 255220 0.5040 +145258 286053 0.7460 +145258 376940 0.7820 +145258 387332 0.5640 +145258 780776 0.4500 +145258 100529241 0.8400 +145258 100534599 0.8400 +145264 163486 0.5580 +145264 252995 0.4330 +145264 284293 0.5010 +145264 374454 0.6460 +145264 388698 0.8140 +145264 100129271 0.4030 +145282 347252 0.4420 +145282 375035 0.4390 +145282 375190 0.4260 +145282 389177 0.4780 +145282 644994 0.4480 +145282 100130742 0.4010 +145376 152404 0.4200 +145376 399814 0.5700 +145376 647174 0.4490 +145376 728537 0.7200 +145389 153129 0.4820 +145389 206358 0.4340 +145407 339541 0.4790 +145407 401399 0.4340 +145407 101928603 0.5580 +145447 171392 0.4360 +145447 171586 0.4820 +145447 253152 0.4500 +145447 340527 0.4080 +145447 646603 0.4750 +145447 728276 0.5770 +145482 145483 0.5100 +145482 145497 0.4700 +145482 169966 0.4860 +145482 254042 0.4680 +145482 286451 0.4050 +145482 337971 0.4470 +145483 145497 0.6970 +145497 151790 0.5730 +145497 389761 0.6300 +145497 389762 0.6820 +145501 161394 0.4300 +145508 146057 0.4520 +145508 153241 0.5410 +145508 160777 0.4040 +145508 161502 0.4580 +145508 200894 0.4630 +145508 201255 0.4040 +145508 374618 0.4400 +145508 729440 0.7340 +145553 100528064 0.4260 +145567 146456 0.4920 +145567 285172 0.6620 +145567 728239 0.4030 +145581 254170 0.5570 +145581 257194 0.5050 +145581 266727 0.4830 +145581 643988 0.4280 +145645 147872 0.8390 +145645 150280 0.5370 +145645 158401 0.4390 +145645 219874 0.4740 +145645 245711 0.7600 +145645 254528 0.4310 +145645 256126 0.4130 +145645 283129 0.9990 +145645 283847 0.9990 +145645 317761 0.5130 +145645 401993 0.4800 +145645 644186 0.4510 +145741 169026 0.5860 +145741 169792 0.4730 +145741 201232 0.4380 +145741 221895 0.4450 +145741 259232 0.7170 +145741 285175 0.6780 +145748 149281 0.4100 +145748 256586 0.6260 +145748 375057 0.5070 +145748 400451 0.5740 +145748 643853 0.4740 +145773 146456 0.4130 +145773 255725 0.5910 +145773 284339 0.4390 +145773 338645 0.4150 +145773 374286 0.4710 +145773 388021 0.4750 +145773 389766 0.5070 +145773 392391 0.5960 +145773 643965 0.4600 +145773 646643 0.4370 +145781 339855 0.4060 +145781 347862 0.5050 +145781 389203 0.5050 +145788 146845 0.8140 +145788 150483 0.8340 +145788 151651 0.8250 +145788 161502 0.8630 +145788 219670 0.8020 +145788 220136 0.8950 +145788 257177 0.8310 +145788 339778 0.8010 +145788 388701 0.8240 +145788 389799 0.8040 +145788 440585 0.8020 +145788 730112 0.8480 +145788 100128569 0.5780 +145853 283951 0.5220 +145853 284184 0.4300 +145853 285315 0.7010 +145853 643338 0.6300 +145864 256435 0.4040 +145864 285349 0.5440 +145873 155185 0.4560 +145873 201299 0.4120 +145873 284001 0.4360 +145873 340260 0.6790 +145873 388585 0.6180 +145873 390199 0.4160 +145873 392392 0.4220 +145873 400720 0.4060 +145873 441478 0.5600 +145942 153643 0.4210 +145942 158067 0.4760 +145942 158830 0.4320 +145942 159686 0.4550 +145942 160419 0.4080 +145942 161142 0.4600 +145942 164684 0.4090 +145942 196477 0.4140 +145942 200035 0.5390 +145942 200232 0.7050 +145942 219938 0.4020 +145942 254956 0.4170 +145942 256957 0.4380 +145942 257169 0.6160 +145942 257236 0.4530 +145942 259173 0.4030 +145942 283461 0.6370 +145942 338661 0.6480 +145942 339669 0.6140 +145942 399693 0.4640 +145942 644994 0.4180 +145957 255324 0.6130 +146050 197320 0.4220 +146050 200008 0.4160 +146050 222696 0.4850 +146050 283337 0.4450 +146050 285313 0.4120 +146050 100131755 0.4860 +146057 146227 0.4630 +146057 200894 0.5970 +146057 202500 0.4130 +146057 222255 0.4480 +146057 261734 0.4600 +146057 347240 0.6300 +146057 353116 0.4040 +146059 161497 0.8110 +146059 221785 0.4370 +146059 256691 0.4930 +146059 100289678 0.6300 +146167 153129 0.5740 +146167 399512 0.4550 +146177 158131 0.4240 +146177 200403 0.4250 +146177 202500 0.4970 +146177 219681 0.5840 +146177 246176 0.6230 +146177 255762 0.7580 +146177 375298 0.5940 +146177 390155 0.4790 +146177 401551 0.5040 +146177 408263 0.4440 +146177 440585 0.5650 +146177 730094 0.6530 +146183 150677 0.5370 +146183 152137 0.5910 +146183 153562 0.4470 +146183 222662 0.6050 +146183 259236 0.5820 +146183 286262 0.5450 +146183 286676 0.4780 +146183 340990 0.9550 +146183 343071 0.4230 +146183 375611 0.5060 +146183 388551 0.5090 +146183 389207 0.5410 +146183 494513 0.5710 +146206 253725 0.4080 +146212 161424 0.5580 +146212 165545 0.4220 +146212 200916 0.5290 +146212 221078 0.8110 +146212 222658 0.6430 +146212 253980 0.4440 +146212 254268 0.5310 +146212 255275 0.4130 +146212 283518 0.5060 +146212 285855 0.6700 +146212 345630 0.5610 +146212 386617 0.5320 +146212 387129 0.6700 +146212 388284 0.4470 +146212 692312 0.4980 +146212 728637 0.5460 +146212 100526842 0.5550 +146223 146225 0.9630 +146223 147991 0.4710 +146223 152189 0.4120 +146223 197021 0.4160 +146223 648791 0.4320 +146225 148932 0.4180 +146225 152189 0.7400 +146225 199675 0.4310 +146227 643866 0.4320 +146227 100996717 0.4350 +146227 100996939 0.5310 +146279 100128569 0.5020 +146310 148066 0.4070 +146310 151112 0.4130 +146310 158506 0.4270 +146310 168433 0.5560 +146310 219938 0.4010 +146310 283870 0.5190 +146310 285533 0.4890 +146310 286499 0.5440 +146310 378925 0.4370 +146310 541466 0.4370 +146310 646892 0.4740 +146310 728464 0.4730 +146310 122513141 0.4790 +146325 166348 0.6760 +146325 170850 0.5810 +146325 200942 0.5960 +146325 283948 0.8150 +146325 339834 0.5990 +146325 375567 0.6090 +146325 401666 0.7100 +146325 401667 0.6800 +146325 100130988 0.6150 +146330 148252 0.4600 +146330 157574 0.5980 +146330 254427 0.4070 +146378 147650 0.4300 +146378 253980 0.5980 +146378 253982 0.6790 +146378 255762 0.4610 +146378 283897 0.6920 +146378 283899 0.5710 +146378 339168 0.4350 +146378 653808 0.4790 +146395 149111 0.6460 +146395 254263 0.7660 +146395 375567 0.5390 +146395 388336 0.4560 +146395 440184 0.5190 +146395 729956 0.5290 +146395 729993 0.8590 +146429 146861 0.4180 +146429 151176 0.4160 +146429 197320 0.5140 +146429 347475 0.4560 +146429 387601 0.6230 +146429 646000 0.4780 +146433 338773 0.6070 +146434 197370 0.8360 +146434 286053 0.8390 +146439 147700 0.6570 +146439 158158 0.4870 +146439 283999 0.4320 +146439 284739 0.5450 +146456 192286 0.4430 +146456 440956 0.4810 +146456 106865373 0.5980 +146456 110091775 0.5780 +146540 158405 0.4260 +146542 729233 0.4780 +146547 284352 0.4100 +146547 100287898 0.4300 +146556 157310 0.5750 +146562 255758 0.4150 +146562 339965 0.4480 +146664 152586 0.9110 +146664 388818 0.4270 +146691 404093 0.4050 +146705 171568 0.4720 +146705 221424 0.6250 +146705 283899 0.4590 +146705 338657 0.4650 +146705 338692 0.6440 +146712 200958 0.4130 +146712 284207 0.4550 +146712 727897 0.4050 +146713 221662 0.5080 +146713 266743 0.5900 +146713 338773 0.4780 +146713 440073 0.8480 +146713 440093 0.4920 +146713 440686 0.4930 +146713 653604 0.4930 +146722 146894 0.4690 +146722 150372 0.5060 +146722 160364 0.5710 +146722 163702 0.4340 +146722 202309 0.4440 +146722 285852 0.5130 +146722 340205 0.7010 +146722 342510 0.6900 +146722 100131439 0.7550 +146754 159686 0.4580 +146754 160762 0.4250 +146754 199223 0.5800 +146754 201625 0.8520 +146754 221421 0.4230 +146754 284434 0.4920 +146754 339829 0.4210 +146754 374407 0.5180 +146754 388389 0.5410 +146754 401024 0.4950 +146760 284656 0.4640 +146760 376132 0.4350 +146760 388662 0.4550 +146779 162333 0.5830 +146779 284058 0.4600 +146779 339175 0.6700 +146779 389123 0.6740 +146779 642489 0.4880 +146779 100507203 0.5980 +146779 104909134 0.4100 +146802 222962 0.7220 +146802 340390 0.5770 +146802 353189 0.6870 +146802 387332 0.5270 +146802 399949 0.5550 +146822 201158 0.5790 +146822 254552 0.5150 +146822 256223 0.6370 +146822 284040 0.6210 +146822 374286 0.5770 +146822 388336 0.4180 +146822 100287284 0.4290 +146822 100533496 0.5740 +146845 150483 0.8740 +146845 151112 0.4670 +146845 151651 0.8610 +146845 151827 0.5080 +146845 153643 0.4510 +146845 158798 0.5840 +146845 160762 0.5370 +146845 161502 0.9280 +146845 162333 0.4500 +146845 168090 0.4020 +146845 200162 0.4410 +146845 200373 0.5020 +146845 201625 0.4720 +146845 219287 0.4500 +146845 219670 0.8960 +146845 219681 0.6160 +146845 220136 0.9470 +146845 221421 0.4480 +146845 222967 0.4980 +146845 254956 0.5150 +146845 255119 0.4320 +146845 257177 0.8980 +146845 283726 0.5860 +146845 286207 0.4170 +146845 339778 0.8250 +146845 339829 0.4240 +146845 345895 0.5210 +146845 374569 0.4720 +146845 388701 0.8240 +146845 389799 0.8010 +146845 399949 0.5130 +146845 401551 0.4350 +146845 440585 0.8180 +146845 730112 0.8330 +146845 100128569 0.5070 +146849 160762 0.4090 +146849 202243 0.4120 +146849 257236 0.4410 +146849 339829 0.4960 +146849 348807 0.5250 +146849 474354 0.4180 +146849 101927581 0.4380 +146850 201305 0.4130 +146850 441925 0.5400 +146850 110117498 0.5450 +146852 203068 0.4040 +146852 219938 0.5890 +146852 220082 0.4680 +146852 374768 0.4440 +146852 374973 0.4850 +146852 440836 0.4600 +146853 146861 0.4180 +146853 201243 0.6750 +146853 254272 0.4630 +146853 256223 0.5070 +146853 284067 0.6910 +146853 388381 0.6950 +146853 643664 0.4180 +146853 728318 0.4120 +146853 729877 0.4750 +146853 100505724 0.5450 +146853 101060351 0.5700 +146853 101060389 0.4320 +146861 147407 0.4480 +146861 162387 0.4430 +146861 162517 0.4290 +146861 254272 0.5490 +146861 256223 0.6030 +146861 283238 0.4210 +146861 339168 0.4470 +146861 353149 0.4790 +146861 374286 0.4470 +146861 387601 0.4040 +146861 388333 0.5050 +146861 414059 0.4470 +146861 728661 0.4250 +146861 100130933 0.4180 +146861 100191040 0.5280 +146861 100505591 0.4480 +146861 101060321 0.4760 +146862 150572 0.7010 +146862 153218 0.4590 +146862 154075 0.4260 +146862 165904 0.4600 +146862 401265 0.4710 +146862 408187 0.5140 +146862 442721 0.6030 +146862 643394 0.4750 +146862 100288072 0.4910 +146894 153579 0.6080 +146894 167410 0.6060 +146894 285852 0.4680 +146894 340205 0.5110 +146894 342510 0.5540 +146894 400258 0.4730 +146894 100131439 0.4550 +146909 147700 0.4030 +146909 147841 0.5820 +146909 150468 0.6220 +146909 151246 0.5820 +146909 151648 0.5920 +146909 157313 0.5990 +146909 157570 0.4020 +146909 166979 0.6000 +146909 220134 0.6000 +146909 221150 0.5140 +146909 221458 0.5790 +146909 259266 0.7330 +146909 284403 0.6340 +146909 285643 0.6650 +146909 374654 0.5850 +146923 100885848 0.4410 +146956 148479 0.4560 +146956 155435 0.5830 +146956 164045 0.6190 +146956 197342 0.9850 +146956 199990 0.5940 +146956 201254 0.6220 +146956 285498 0.4180 +146956 348654 0.9310 +146956 353497 0.6370 +146956 378708 0.6590 +146956 388649 0.6100 +146956 548593 0.9970 +147007 155066 0.7200 +147007 203547 0.8310 +147007 220001 0.4670 +147007 245972 0.9860 +147007 245973 0.6420 +147007 440400 0.7770 +147011 153643 0.4130 +147011 153745 0.4640 +147011 158830 0.4310 +147011 200232 0.4280 +147011 259308 0.5240 +147011 340359 0.4060 +147011 388324 0.4540 +147011 399693 0.4670 +147011 646174 0.4070 +147011 107983988 0.4860 +147015 148198 0.4040 +147015 148823 0.4130 +147015 167681 0.5640 +147015 200942 0.4520 +147015 284266 0.4750 +147040 200845 0.5850 +147040 222658 0.5330 +147040 253980 0.5510 +147040 386617 0.6800 +147111 147495 0.5600 +147111 284654 0.4020 +147138 257106 0.4320 +147138 374403 0.4040 +147138 388569 0.4330 +147179 160518 0.4250 +147179 200894 0.4260 +147179 345456 0.4020 +147179 375189 0.5470 +147179 644150 0.9220 +147183 147409 0.5480 +147183 162605 0.5820 +147183 192666 0.4260 +147183 254773 0.4570 +147183 284110 0.4520 +147183 337880 0.5020 +147183 337882 0.4540 +147183 342574 0.8790 +147183 353288 0.4790 +147183 390792 0.4720 +147183 100132476 0.4350 +147199 149954 0.5410 +147199 340205 0.6290 +147199 359710 0.5840 +147199 404552 0.4300 +147323 158521 0.4770 +147323 161835 0.4360 +147323 259239 0.4480 +147323 339302 0.5200 +147323 646174 0.4300 +147323 728343 0.4100 +147339 338917 0.4200 +147339 494470 0.6450 +147339 645369 0.4790 +147339 110806297 0.5070 +147372 148753 0.4050 +147381 151126 0.4560 +147381 152330 0.4850 +147381 643866 0.5100 +147381 104909134 0.4240 +147407 153328 0.4930 +147407 203427 0.4380 +147407 254158 0.4180 +147407 283130 0.4310 +147407 283600 0.4510 +147407 284723 0.4130 +147407 399512 0.4320 +147407 646000 0.5180 +147409 147495 0.4450 +147409 163778 0.4490 +147409 200879 0.5790 +147409 284110 0.6370 +147409 337878 0.5480 +147409 337879 0.6050 +147409 337880 0.5940 +147409 337882 0.4360 +147409 337970 0.4280 +147409 339403 0.4180 +147409 342574 0.5730 +147409 346007 0.4090 +147409 391123 0.4030 +147409 401138 0.4050 +147409 448834 0.4300 +147409 100132476 0.4570 +147463 158067 0.4010 +147463 159090 0.4200 +147463 169611 0.4520 +147463 220108 0.4540 +147463 339855 0.4120 +147463 647174 0.5050 +147645 161823 0.4140 +147645 254956 0.4630 +147645 400818 0.4220 +147650 149095 0.6920 +147650 153527 0.5760 +147650 154007 0.4470 +147650 164045 0.4230 +147650 164781 0.4390 +147650 171169 0.5070 +147650 220074 0.4850 +147650 222183 0.4480 +147650 256536 0.4160 +147650 284325 0.5890 +147650 284359 0.8110 +147650 339168 0.9090 +147650 348793 0.4390 +147650 390243 0.5850 +147650 392517 0.4030 +147650 100534599 0.4340 +147650 100996928 0.4560 +147657 257218 0.6560 +147657 259173 0.4030 +147658 342357 0.4130 +147660 374470 0.4270 +147664 148213 0.4760 +147664 284312 0.4210 +147664 100288413 0.6390 +147670 150297 0.5400 +147670 152065 0.6080 +147670 152586 0.4790 +147670 155006 0.4340 +147670 284274 0.5060 +147670 284498 0.5400 +147670 286183 0.4470 +147670 340204 0.5150 +147670 342850 0.5270 +147670 353324 0.4750 +147670 375759 0.4180 +147670 387707 0.5410 +147670 388333 0.5070 +147670 392399 0.4330 +147670 448835 0.4180 +147670 493901 0.5820 +147670 646892 0.5430 +147670 647286 0.5070 +147670 100132916 0.4790 +147685 283635 0.4470 +147686 165545 0.4560 +147686 255349 0.5570 +147687 283160 0.6240 +147687 339977 0.4010 +147687 390059 0.4470 +147694 151126 0.5610 +147694 256051 0.5710 +147694 374928 0.4930 +147699 199675 0.4360 +147699 257144 0.5080 +147699 340745 0.4550 +147699 341116 0.4080 +147700 161003 0.4560 +147700 163183 0.8220 +147700 163486 0.4450 +147700 219938 0.4430 +147700 221079 0.6840 +147700 221458 0.4320 +147700 283106 0.6740 +147700 285643 0.4700 +147700 374654 0.4690 +147700 100532724 0.4220 +147710 389812 0.4760 +147710 400793 0.4720 +147710 729767 0.4030 +147719 148870 0.5000 +147719 158297 0.5240 +147719 160065 0.5690 +147719 171169 0.5880 +147719 220082 0.4040 +147719 259215 0.5070 +147719 284348 0.5470 +147719 287015 0.4660 +147719 390940 0.5850 +147719 399814 0.5840 +147719 399967 0.5890 +147719 399968 0.5880 +147719 646627 0.4190 +147719 100169851 0.6240 +147719 101928108 0.6300 +147744 202915 0.5100 +147744 219681 0.4500 +147744 284359 0.5740 +147744 388633 0.4030 +147744 401024 0.5030 +147744 729201 0.4600 +147746 148014 0.4850 +147746 283417 0.5060 +147746 389384 0.4080 +147798 254531 0.4450 +147798 345275 0.6420 +147798 399671 0.4140 +147807 159013 0.4270 +147807 284114 0.4310 +147808 257313 0.4170 +147808 285643 0.4120 +147808 442247 0.4560 +147837 284001 0.4070 +147837 349565 0.5000 +147837 643677 0.5020 +147841 151246 0.4160 +147841 151648 0.5160 +147841 157313 0.4440 +147841 166979 0.5950 +147841 201254 0.4290 +147841 220134 0.8690 +147841 221150 0.7470 +147841 259266 0.5550 +147841 348235 0.6620 +147841 378708 0.5360 +147841 387103 0.7610 +147841 391123 0.4230 +147841 401541 0.6180 +147841 100527963 0.6640 +147872 150280 0.4500 +147872 151246 0.4110 +147872 152189 0.4550 +147872 158401 0.4460 +147872 161176 0.8480 +147872 163183 0.9190 +147872 222659 0.4030 +147872 245711 0.4080 +147872 254528 0.4650 +147872 256979 0.8230 +147872 283129 0.8610 +147872 283847 0.8900 +147872 643376 0.4050 +147906 168002 0.9280 +147912 203228 0.4110 +147912 259282 0.4040 +147912 388553 0.4820 +147920 389336 0.4280 +147923 148266 0.4130 +147923 163081 0.4670 +147945 171389 0.5730 +147945 199713 0.7190 +147945 338321 0.4870 +147945 338322 0.4040 +147945 340061 0.6010 +147948 151647 0.5790 +147948 431707 0.4940 +147949 148268 0.4710 +147949 256435 0.4310 +147949 388946 0.5110 +147949 389206 0.4830 +147949 728568 0.4820 +147965 147968 0.4130 +147965 254863 0.4570 +147965 257415 0.4750 +147965 283742 0.5620 +147965 286451 0.5130 +147965 339487 0.5490 +147968 162494 0.4440 +147968 164633 0.4420 +147968 205717 0.4550 +147968 253582 0.4390 +147991 149175 0.4270 +147991 157869 0.4460 +147991 158586 0.4070 +147991 200931 0.4310 +147991 219487 0.4920 +147991 219493 0.5020 +147991 402381 0.4420 +147991 441250 0.4090 +147991 648791 0.5160 +148003 162967 0.4360 +148003 163126 0.4440 +148003 255308 0.4370 +148014 157697 0.4640 +148014 284325 0.4270 +148014 388228 0.4680 +148022 257397 0.6590 +148022 340061 0.4530 +148022 345456 0.4430 +148022 353376 0.9860 +148022 375189 0.4440 +148022 388553 0.4330 +148022 100302736 0.7060 +148066 221687 0.4760 +148066 223082 0.5950 +148066 257000 0.4180 +148066 285533 0.4990 +148103 201965 0.4050 +148103 284402 0.5110 +148103 100130988 0.4070 +148103 100529063 0.4500 +148109 158747 0.4120 +148109 165215 0.4790 +148109 200172 0.6100 +148109 219493 0.4240 +148109 220082 0.6500 +148109 255104 0.6200 +148109 283238 0.6650 +148109 317719 0.4290 +148109 387775 0.4620 +148109 390883 0.7510 +148113 161247 0.4180 +148113 326625 0.4780 +148113 374887 0.4860 +148137 246330 0.4790 +148137 284001 0.4770 +148137 348807 0.5940 +148156 284383 0.6350 +148156 353141 0.4130 +148156 391712 0.6570 +148156 729528 0.4030 +148170 254910 0.4780 +148170 387914 0.4520 +148170 100128071 0.4450 +148203 283991 0.4340 +148203 284992 0.4480 +148203 339324 0.4310 +148203 345079 0.4300 +148203 389763 0.4510 +148206 157697 0.4160 +148206 170959 0.5700 +148206 219293 0.6150 +148206 255308 0.4090 +148206 256356 0.4660 +148206 342892 0.6390 +148213 390072 0.5400 +148213 653489 0.4350 +148223 152579 0.7460 +148223 255057 0.4060 +148223 283643 0.4820 +148229 161291 0.8700 +148229 222553 0.4310 +148229 286410 0.6290 +148252 151835 0.4010 +148252 162239 0.4500 +148252 164153 0.5210 +148252 401665 0.4200 +148254 286234 0.5050 +148254 340895 0.4210 +148266 148268 0.4240 +148266 161725 0.7390 +148266 161882 0.4410 +148266 221302 0.8580 +148266 374899 0.4600 +148266 440093 0.4160 +148266 440686 0.4160 +148266 653604 0.4150 +148268 163087 0.4300 +148268 374899 0.7910 +148268 374900 0.7910 +148268 375341 0.4510 +148268 401089 0.5070 +148268 441869 0.5070 +148281 341359 0.8030 +148281 390075 0.4110 +148281 594855 0.4530 +148281 646658 0.4960 +148304 159195 0.5160 +148304 170506 0.4050 +148304 440712 0.4460 +148327 153222 0.7520 +148327 200186 0.9310 +148327 283985 0.4020 +148345 219982 0.4650 +148362 375056 0.5060 +148362 100526767 0.4820 +148398 339451 0.5300 +148398 344658 0.6390 +148418 387849 0.5060 +148418 401474 0.4030 +148423 155435 0.4500 +148423 338657 0.4060 +148523 266743 0.4500 +148523 284273 0.4130 +148534 253012 0.4160 +148545 158724 0.4360 +148545 642799 0.4080 +148545 645027 0.5470 +148545 653149 0.9990 +148545 728888 0.4100 +148545 729233 0.5070 +148545 100288332 0.4120 +148545 100996763 0.4430 +148545 105371346 0.4280 +148545 112268164 0.4210 +148581 197131 0.6570 +148581 375057 0.4140 +148581 387521 0.4120 +148581 387522 0.5890 +148641 161003 0.4100 +148641 219578 0.4220 +148641 222234 0.4790 +148641 389792 0.4250 +148738 151176 0.5330 +148738 164656 0.9970 +148738 442721 0.4340 +148738 644168 0.6510 +148741 171558 0.4650 +148741 200030 0.4780 +148741 200035 0.4350 +148741 729967 0.4050 +148753 163590 0.4720 +148753 256691 0.4610 +148753 407738 0.4140 +148753 751071 0.4480 +148753 100526835 0.4350 +148789 285203 0.5490 +148789 375790 0.4250 +148789 729920 0.6810 +148789 100288842 0.4760 +148808 342909 0.4180 +148808 642574 0.5710 +148811 158833 0.4340 +148811 200634 0.4600 +148811 254428 0.9230 +148811 338785 0.4120 +148811 643394 0.4160 +148823 401474 0.4900 +148867 169026 0.5610 +148867 201266 0.8070 +148867 221074 0.6860 +148867 283375 0.7680 +148870 158297 0.5460 +148870 199699 0.4530 +148870 220082 0.4960 +148870 255119 0.4260 +148870 283847 0.5270 +148870 286234 0.4490 +148870 287015 0.4990 +148870 339448 0.6600 +148870 399814 0.6430 +148870 401387 0.6300 +148870 441234 0.4330 +148930 151230 0.4850 +148930 375341 0.4770 +148930 389118 0.4320 +148932 219854 0.4660 +148932 255275 0.5040 +148932 284612 0.4040 +148932 390061 0.4370 +148932 390081 0.4020 +148932 390648 0.4490 +148932 728780 0.5350 +148979 151126 0.4180 +148979 152485 0.4090 +148979 339745 0.4140 +149013 200030 0.7860 +149013 644591 0.9860 +149013 645142 0.4950 +149013 653505 0.9860 +149013 653598 0.9880 +149013 728945 0.4950 +149013 730262 0.9890 +149013 100996763 0.4800 +149018 153745 0.4550 +149018 163778 0.6390 +149018 199834 0.4990 +149018 254910 0.4990 +149018 339779 0.4500 +149018 341567 0.5110 +149018 353131 0.4990 +149018 353132 0.5040 +149018 353133 0.4990 +149018 353134 0.4990 +149018 353135 0.5000 +149018 353137 0.4990 +149018 353139 0.5730 +149018 353140 0.6060 +149018 353141 0.5890 +149018 353142 0.6070 +149018 353143 0.6360 +149018 353144 0.6710 +149018 353145 0.5260 +149018 374454 0.4360 +149018 388698 0.4530 +149018 401067 0.4060 +149018 448834 0.6450 +149018 448835 0.4990 +149018 574414 0.5730 +149018 619208 0.4610 +149018 100129271 0.4980 +149018 100507055 0.5810 +149041 219988 0.6030 +149041 246175 0.7240 +149041 253260 0.4250 +149041 255967 0.4150 +149041 284695 0.5820 +149041 340152 0.4370 +149041 340554 0.4700 +149041 404734 0.5670 +149069 151230 0.4770 +149069 161582 0.6360 +149069 162387 0.4460 +149069 729025 0.4140 +149076 158067 0.4170 +149076 158135 0.4750 +149076 389813 0.5230 +149076 392399 0.4790 +149076 402381 0.4230 +149095 171169 0.4710 +149095 196996 0.4680 +149095 284359 0.5560 +149095 339168 0.7450 +149111 169044 0.5800 +149111 170572 0.5400 +149111 200909 0.5400 +149111 254263 0.7280 +149111 255631 0.5070 +149111 285242 0.5400 +149111 375567 0.5850 +149111 388336 0.6380 +149111 389206 0.4320 +149111 402117 0.5910 +149111 440829 0.5550 +149111 644070 0.5630 +149111 729956 0.5750 +149111 729993 0.8400 +149175 149420 0.4370 +149175 155185 0.4130 +149175 158067 0.4240 +149175 158586 0.4320 +149175 221264 0.4240 +149175 223082 0.4490 +149175 284615 0.4530 +149233 159296 0.4790 +149233 171389 0.4040 +149233 282616 0.6920 +149233 282617 0.6740 +149233 282618 0.7080 +149233 338376 0.6630 +149233 339145 0.4540 +149233 345611 0.6550 +149233 353143 0.5440 +149233 353144 0.5300 +149233 400757 0.5050 +149233 100289462 0.4180 +149281 151194 0.4680 +149281 155368 0.5790 +149281 196410 0.4480 +149281 196541 0.4550 +149281 254013 0.4100 +149281 399818 0.4510 +149281 402665 0.5060 +149345 154790 0.4440 +149345 197021 0.4750 +149345 203245 0.4830 +149345 222389 0.5300 +149345 266812 0.5250 +149345 284131 0.4320 +149345 285343 0.4060 +149345 387332 0.4940 +149345 399949 0.4290 +149371 283849 0.9210 +149371 440163 0.4330 +149371 441925 0.6170 +149371 644145 0.9390 +149420 151525 0.4700 +149420 201158 0.4040 +149420 284040 0.4040 +149420 285973 0.6040 +149420 339448 0.7060 +149420 340419 0.5620 +149420 440738 0.4380 +149420 441925 0.5740 +149420 643246 0.4380 +149420 780776 0.4040 +149420 100533496 0.4040 +149428 196513 0.4800 +149428 348180 0.4370 +149461 153562 0.4470 +149461 254428 0.5590 +149461 400746 0.4560 +149461 644672 0.6880 +149461 100132463 0.6800 +149461 100288814 0.7090 +149461 100506658 0.8630 +149465 151112 0.4390 +149465 151790 0.4330 +149465 151827 0.4890 +149465 161502 0.5010 +149465 163223 0.4500 +149465 200373 0.5620 +149465 201625 0.4160 +149465 220136 0.4080 +149465 222967 0.4580 +149465 246176 0.4180 +149465 283726 0.4560 +149465 339829 0.5470 +149465 100505841 0.4660 +149466 256764 0.4240 +149466 284418 0.6110 +149466 345079 0.4540 +149473 201895 0.4340 +149473 284067 0.4780 +149473 284723 0.4090 +149473 100190949 0.5150 +149473 105378952 0.4500 +149478 157310 0.4620 +149478 246243 0.5080 +149478 378951 0.4040 +149478 100526842 0.4700 +149483 389799 0.5070 +149499 149986 0.4130 +149499 161003 0.4500 +149499 164781 0.4320 +149499 200132 0.4810 +149499 345895 0.5140 +149499 375033 0.5660 +149499 389161 0.5800 +149499 399949 0.5190 +149499 440695 0.5950 +149499 647589 0.5670 +149499 100287718 0.5410 +149628 154075 0.4780 +149628 163351 0.4560 +149628 163486 0.4900 +149628 170506 0.5080 +149628 201633 0.4480 +149628 221301 0.4210 +149628 254773 0.4120 +149643 219938 0.4640 +149643 220082 0.5270 +149643 353144 0.4250 +149643 374768 0.5410 +149643 375337 0.4050 +149643 375686 0.5230 +149643 389320 0.6830 +149643 391114 0.5800 +149643 400757 0.4460 +149647 254956 0.5110 +149647 100505989 0.4710 +149699 154007 0.4070 +149699 167555 0.4900 +149699 171169 0.4310 +149699 221409 0.4820 +149699 256957 0.4980 +149699 338661 0.6490 +149699 644054 0.4800 +149708 164237 0.4440 +149708 221393 0.4590 +149708 348938 0.4140 +149708 374897 0.4300 +149708 388533 0.7120 +149708 388698 0.4940 +149708 389336 0.5810 +149840 222389 0.4770 +149840 375748 0.4360 +149840 100134934 0.4180 +149840 112441434 0.9940 +149951 149954 0.4020 +149951 150684 0.9660 +149951 154043 0.6100 +149951 154881 0.4990 +149951 170622 0.9550 +149951 200845 0.5000 +149951 388795 0.4680 +149951 390594 0.4990 +149951 401036 0.4990 +149951 404636 0.8270 +149951 441933 0.6100 +149954 389812 0.4450 +149986 167227 0.8870 +149986 196513 0.7460 +149986 197135 0.8160 +149986 219988 0.6770 +149986 253314 0.8130 +149986 374887 0.4050 +149986 100131017 0.4670 +150082 151651 0.5410 +150082 160777 0.4700 +150082 167691 0.4950 +150082 197335 0.5770 +150082 201625 0.5370 +150082 286046 0.5390 +150082 337978 0.5850 +150084 153562 0.6530 +150084 167838 0.4580 +150084 222484 0.5220 +150084 260425 0.4190 +150084 387597 0.4550 +150084 653567 0.4690 +150084 100506658 0.9060 +150094 200186 0.9750 +150159 161142 0.5510 +150159 164684 0.4950 +150159 200232 0.4170 +150159 257169 0.4240 +150159 283461 0.4510 +150159 284525 0.6390 +150159 285195 0.6020 +150159 285335 0.7070 +150159 389015 0.4950 +150160 150165 0.4060 +150160 150221 0.5250 +150160 339416 0.4050 +150160 390148 0.4790 +150160 399947 0.4790 +150160 400891 0.5710 +150165 220388 0.4100 +150165 386677 0.4310 +150165 441581 0.4200 +150209 730249 0.6210 +150221 267020 0.4480 +150221 339665 0.4330 +150221 387885 0.4110 +150221 400891 0.5470 +150221 440804 0.8030 +150221 653333 0.5410 +150221 727909 0.4160 +150221 100129278 0.4190 +150223 152831 0.4240 +150223 164592 0.5000 +150223 197021 0.4240 +150223 254552 0.4070 +150223 343071 0.4240 +150223 391003 0.4240 +150223 391004 0.4240 +150223 404734 0.4320 +150223 645382 0.4240 +150223 645414 0.4240 +150248 266747 0.4810 +150248 388886 0.7180 +150248 100037417 0.5070 +150274 197257 0.4030 +150274 200205 0.7540 +150274 201626 0.4080 +150274 283459 0.4200 +150274 326625 0.4110 +150274 374291 0.4210 +150274 388962 0.6160 +150274 389813 0.5070 +150274 641371 0.4060 +150274 644096 0.9040 +150274 100287932 0.5380 +150275 347734 0.4810 +150275 401466 0.4360 +150280 150365 0.5720 +150280 164045 0.4560 +150280 253725 0.4180 +150280 254528 0.6120 +150280 256006 0.4940 +150280 256126 0.7060 +150280 256979 0.4110 +150280 283129 0.6090 +150280 283677 0.6070 +150280 283847 0.7080 +150280 284071 0.6170 +150280 285498 0.5870 +150280 317761 0.4470 +150280 339834 0.5620 +150280 346673 0.4380 +150280 642636 0.6330 +150280 644186 0.5390 +150280 728637 0.4380 +150280 729475 0.4080 +150280 101928601 0.5100 +150297 152065 0.5900 +150297 152586 0.4470 +150297 284274 0.4850 +150297 284498 0.5070 +150297 286183 0.4200 +150297 340204 0.4790 +150297 342850 0.5070 +150297 348487 0.4800 +150297 353324 0.4500 +150297 387707 0.5070 +150297 388333 0.4950 +150297 493901 0.5690 +150297 646892 0.5070 +150297 647286 0.4770 +150297 100132916 0.4460 +150350 254187 0.4730 +150350 254528 0.4080 +150350 100527978 0.5750 +150353 160287 0.5210 +150353 259217 0.4280 +150353 339416 0.4320 +150353 388633 0.4200 +150353 390874 0.5560 +150365 158401 0.4040 +150365 200845 0.5420 +150365 254528 0.5330 +150365 254552 0.4780 +150365 256006 0.7760 +150365 256126 0.5990 +150365 283677 0.9060 +150365 283847 0.4900 +150365 284071 0.5380 +150365 285498 0.4360 +150365 339834 0.8050 +150365 642636 0.5060 +150365 101928601 0.7930 +150368 164684 0.4470 +150368 282966 0.4480 +150383 339229 0.4850 +150465 167227 0.4910 +150465 196513 0.4580 +150465 260334 0.4510 +150465 284076 0.4200 +150465 347688 0.5060 +150465 347733 0.9500 +150465 374969 0.7760 +150468 151246 0.4970 +150468 151648 0.7470 +150468 157313 0.8710 +150468 157570 0.4840 +150468 220134 0.5900 +150468 221150 0.7840 +150468 259266 0.8830 +150468 283431 0.4230 +150468 387103 0.4760 +150468 441476 0.4470 +150472 259217 0.5770 +150472 389376 0.4020 +150472 644019 0.8280 +150483 151651 0.8340 +150483 158067 0.6130 +150483 160762 0.4150 +150483 161502 0.8140 +150483 162333 0.4810 +150483 202500 0.5240 +150483 219670 0.8100 +150483 219681 0.5200 +150483 220136 0.8300 +150483 257177 0.8620 +150483 283629 0.5200 +150483 339778 0.8140 +150483 339829 0.4990 +150483 347732 0.4230 +150483 375307 0.4610 +150483 388701 0.8210 +150483 389799 0.8080 +150483 404217 0.4610 +150483 440585 0.8830 +150483 730112 0.8060 +150483 100128569 0.4530 +150572 153572 0.5080 +150572 154150 0.4270 +150572 165904 0.4240 +150572 167465 0.4440 +150572 195828 0.4920 +150572 200523 0.4880 +150572 201140 0.4160 +150572 202333 0.4010 +150572 440093 0.4700 +150572 440686 0.4700 +150572 653604 0.4700 +150590 155006 0.4500 +150677 150678 0.4380 +150677 340990 0.4420 +150677 344658 0.4850 +150677 729330 0.4080 +150678 387357 0.7200 +150681 343990 0.4470 +150681 344892 0.4710 +150681 402117 0.4800 +150684 154043 0.4750 +150684 154881 0.5130 +150684 170622 0.9950 +150684 200845 0.5150 +150684 253725 0.4270 +150684 266812 0.6100 +150684 387680 0.5460 +150684 390594 0.4990 +150684 401036 0.4990 +150684 404636 0.9260 +150684 440561 0.9000 +150684 440590 0.5400 +150684 441933 0.5310 +150684 493829 0.4830 +150684 653619 0.9000 +150684 100287171 0.4580 +150684 100532731 0.4560 +150696 259282 0.4050 +150709 195814 0.4180 +150709 205717 0.4800 +150709 221264 0.4670 +150709 339210 0.4570 +150709 100131211 0.6750 +150726 285231 0.4230 +150737 151827 0.4960 +150737 199223 0.6020 +150737 284076 0.4580 +150737 100271715 0.4020 +150763 154141 0.6690 +150763 201164 0.5890 +150763 253558 0.8060 +150763 254531 0.5890 +150763 400961 0.4020 +150771 151313 0.6080 +150771 151963 0.4160 +150771 284114 0.4980 +150771 375248 0.4960 +150771 400986 0.4510 +150864 254225 0.6250 +150864 375287 0.4930 +150864 730005 0.4160 +150921 162998 0.4570 +150921 164592 0.4200 +150921 344018 0.6250 +150921 374786 0.4230 +150962 221078 0.4120 +150962 285367 0.7160 +150962 339804 0.4310 +151011 344558 0.4620 +151011 346288 0.9350 +151050 284058 0.5990 +151050 339287 0.5620 +151050 345651 0.5400 +151056 154141 0.9210 +151056 196463 0.4680 +151056 254531 0.9130 +151056 255043 0.6870 +151056 255189 0.7180 +151056 259307 0.6680 +151056 283748 0.7180 +151056 284161 0.6930 +151056 284541 0.6520 +151056 374569 0.4740 +151056 375775 0.9150 +151056 387521 0.6500 +151056 387522 0.6500 +151056 391013 0.7650 +151056 100137049 0.7320 +151112 151827 0.4600 +151112 161502 0.4520 +151112 168433 0.4340 +151112 222553 0.4090 +151112 222967 0.4970 +151112 283726 0.4250 +151112 339976 0.4330 +151126 152330 0.4280 +151126 152485 0.4500 +151126 158405 0.4130 +151126 197320 0.5410 +151126 340385 0.5110 +151126 342132 0.5720 +151126 345462 0.4180 +151126 347344 0.8700 +151126 349075 0.4800 +151126 389549 0.4580 +151126 641339 0.8560 +151126 100287898 0.4030 +151176 164656 0.5810 +151176 338872 0.5270 +151176 389941 0.4350 +151188 196463 0.5180 +151188 200186 0.5130 +151194 151195 0.5770 +151194 152992 0.4720 +151194 196483 0.6900 +151194 196541 0.4650 +151194 221143 0.6730 +151194 254013 0.7160 +151194 399818 0.7610 +151194 751071 0.5000 +151194 110599564 0.4990 +151195 151987 0.4390 +151195 157922 0.4680 +151195 164684 0.4390 +151195 219771 0.7020 +151195 374768 0.4530 +151195 389072 0.4490 +151230 404734 0.4480 +151230 493911 0.6350 +151230 553158 0.5050 +151230 728597 0.5050 +151230 100526842 0.4790 +151230 116033993 0.4370 +151246 151648 0.9920 +151246 157313 0.5780 +151246 157570 0.5670 +151246 220134 0.4540 +151246 221150 0.4600 +151246 259266 0.5530 +151246 343099 0.4070 +151246 348235 0.4570 +151246 440686 0.5280 +151246 642636 0.8170 +151246 728637 0.5830 +151254 203102 0.4410 +151254 283417 0.4680 +151254 285588 0.6260 +151254 374872 0.4430 +151254 400823 0.4130 +151254 401024 0.4760 +151254 402573 0.6780 +151258 153129 0.5600 +151258 219770 0.4010 +151258 342346 0.5530 +151258 345051 0.5940 +151295 220963 0.4770 +151295 221357 0.4200 +151306 152831 0.5810 +151306 200931 0.6230 +151306 338442 0.5530 +151306 338557 0.5180 +151306 350383 0.5910 +151306 653857 0.6970 +151313 200403 0.4180 +151313 200539 0.4330 +151313 375248 0.6290 +151313 388962 0.5000 +151313 400986 0.5190 +151313 431705 0.4470 +151313 653689 0.4070 +151354 168002 0.6050 +151393 340120 0.4200 +151449 283078 0.4930 +151449 642658 0.5030 +151449 645369 0.5090 +151473 159963 0.4910 +151473 160728 0.4870 +151473 284346 0.5190 +151516 285848 0.5100 +151516 348938 0.4810 +151516 388698 0.5240 +151525 349136 0.4730 +151531 154141 0.5540 +151531 283209 0.9420 +151531 283985 0.6130 +151531 100526794 0.9040 +151556 152789 0.5310 +151556 254956 0.4120 +151613 196441 0.6100 +151613 347735 0.4860 +151636 165631 0.9540 +151636 219285 0.5270 +151636 375287 0.6500 +151647 246213 0.5700 +151647 431707 0.4020 +151648 157313 0.7500 +151648 157570 0.8220 +151648 161198 0.4180 +151648 166979 0.5350 +151648 220134 0.7780 +151648 221150 0.7160 +151648 259266 0.7340 +151648 348235 0.5900 +151648 378708 0.6060 +151648 387103 0.6100 +151648 387104 0.4350 +151648 388963 0.4820 +151648 402569 0.4030 +151648 440093 0.4990 +151648 440686 0.4990 +151648 653604 0.4990 +151648 728637 0.6550 +151649 158297 0.4990 +151649 160760 0.4920 +151649 391253 0.5070 +151651 160762 0.4370 +151651 161502 0.8290 +151651 197335 0.9440 +151651 200844 0.5230 +151651 219670 0.9220 +151651 219681 0.5690 +151651 220136 0.8480 +151651 222545 0.4050 +151651 257169 0.4460 +151651 257177 0.8480 +151651 283726 0.4490 +151651 339768 0.4950 +151651 339778 0.8120 +151651 347688 0.4240 +151651 347733 0.4100 +151651 388701 0.8170 +151651 389799 0.8140 +151651 440435 0.4050 +151651 440585 0.8010 +151651 642636 0.4170 +151651 730112 0.8060 +151651 100128569 0.5070 +151742 160760 0.5640 +151790 220108 0.5130 +151790 283768 0.5490 +151790 388795 0.4600 +151790 402635 0.4980 +151790 643382 0.5830 +151790 728763 0.5070 +151827 161502 0.5500 +151827 162540 0.4140 +151827 222967 0.4760 +151827 344657 0.7300 +151827 374355 0.4320 +151827 374618 0.4030 +151827 100131897 0.6070 +151835 285368 0.4030 +151835 375567 0.4470 +151835 407738 0.4060 +151871 201456 0.4980 +151871 201516 0.6300 +151871 201799 0.5320 +151871 340168 0.7040 +151871 359787 0.6310 +151871 503582 0.4030 +151887 389136 0.4700 +151888 152404 0.4830 +151888 169355 0.4370 +151888 201633 0.8320 +151888 257144 0.4020 +151888 283420 0.4180 +151888 284194 0.8050 +151888 339390 0.5280 +151888 654346 0.8050 +151903 152206 0.4480 +151903 153527 0.4500 +151903 158830 0.4080 +151903 199746 0.5340 +151903 199870 0.6850 +151903 221830 0.4920 +151903 256536 0.8400 +151903 343099 0.4750 +151903 100534599 0.6380 +151963 162073 0.4620 +151963 285382 0.4710 +151987 261726 0.8220 +151987 283464 0.4120 +151987 284098 0.4370 +151987 340481 0.4170 +151987 727936 0.5950 +151987 102723737 0.5170 +152002 221035 0.4140 +152002 283464 0.5630 +152002 285203 0.5760 +152002 400451 0.4440 +152002 440138 0.4190 +152002 727936 0.7870 +152006 196403 0.4120 +152006 345757 0.4220 +152007 256710 0.4270 +152007 441317 0.4740 +152015 152405 0.5700 +152015 375307 0.5020 +152015 644890 0.4830 +152015 100130771 0.4820 +152065 152586 0.5440 +152065 155006 0.4790 +152065 163778 0.4320 +152065 284274 0.5780 +152065 284498 0.5930 +152065 286183 0.5080 +152065 340204 0.5780 +152065 342850 0.5890 +152065 348932 0.4180 +152065 353324 0.5470 +152065 375759 0.4880 +152065 387707 0.5910 +152065 388333 0.5810 +152065 392399 0.4790 +152065 448835 0.4740 +152065 493901 0.6210 +152065 646892 0.5960 +152065 647286 0.5740 +152065 100132916 0.5400 +152098 259266 0.7420 +152098 333932 0.9120 +152098 345930 0.4060 +152098 440093 0.9200 +152098 440686 0.9200 +152098 653604 0.9200 +152100 196441 0.4800 +152100 388753 0.5280 +152100 493753 0.6320 +152100 100131801 0.4430 +152100 100303755 0.4910 +152110 252983 0.4610 +152137 222662 0.4770 +152137 259236 0.4800 +152137 286262 0.4350 +152137 389207 0.4470 +152137 728586 0.8900 +152138 260434 0.6060 +152185 153241 0.9940 +152185 163786 0.5470 +152185 197335 0.4470 +152185 219844 0.4810 +152185 256364 0.4240 +152185 282809 0.5810 +152185 374946 0.5940 +152185 387119 0.4050 +152189 255275 0.4660 +152206 160777 0.5210 +152206 196385 0.4160 +152206 257236 0.4960 +152206 285331 0.4260 +152206 339512 0.4420 +152206 343099 0.6220 +152206 347475 0.4770 +152206 374407 0.4130 +152206 374618 0.4910 +152206 401036 0.4100 +152217 392517 0.6160 +152273 345930 0.4150 +152330 203062 0.4750 +152330 222537 0.4420 +152330 285195 0.4360 +152330 285362 0.7900 +152404 201633 0.5410 +152404 286676 0.5160 +152404 340547 0.4540 +152405 158067 0.4610 +152405 200523 0.6390 +152405 203074 0.5870 +152405 203102 0.4620 +152405 221191 0.6790 +152405 222235 0.4550 +152405 283685 0.5220 +152405 283768 0.4090 +152405 284485 0.5280 +152405 375307 0.5810 +152405 727832 0.6020 +152405 100130771 0.6390 +152485 203245 0.4580 +152485 220929 0.4900 +152485 342132 0.5600 +152485 349075 0.4720 +152518 152519 0.4460 +152518 161582 0.5910 +152518 201780 0.4340 +152518 246243 0.4890 +152518 339977 0.4170 +152518 642489 0.5000 +152519 254428 0.6240 +152559 221938 0.6340 +152559 344838 0.4660 +152573 246176 0.4680 +152573 255119 0.4820 +152573 256051 0.4800 +152573 339977 0.4400 +152573 388630 0.4180 +152573 389206 0.4660 +152573 644070 0.6100 +152586 220416 0.5230 +152586 255520 0.4780 +152586 284274 0.4180 +152586 284498 0.4470 +152586 340204 0.4330 +152586 342850 0.4490 +152586 387707 0.4470 +152586 388333 0.4450 +152586 389073 0.6620 +152586 493901 0.5060 +152586 646892 0.4720 +152586 647286 0.4300 +152687 219437 0.4790 +152687 286380 0.4810 +152687 653427 0.5350 +152815 163087 0.4830 +152815 168451 0.5000 +152815 199745 0.6830 +152815 221143 0.4740 +152815 284349 0.5220 +152815 375775 0.4150 +152815 494188 0.4950 +152815 641339 0.4220 +152816 256764 0.8130 +152816 286077 0.7730 +152816 401138 0.7200 +152831 200931 0.5910 +152877 374918 0.4110 +152926 160760 0.6420 +152926 284086 0.4560 +152926 333926 0.4630 +152940 283209 0.5700 +152992 283461 0.4470 +152992 399818 0.5590 +152992 401097 0.4460 +153090 158135 0.4760 +153090 161742 0.5000 +153090 200734 0.4480 +153090 257240 0.4430 +153090 392399 0.4100 +153090 399473 0.4320 +153090 440093 0.5080 +153090 440686 0.5080 +153090 653361 0.4710 +153090 653604 0.5080 +153129 154743 0.6800 +153129 155066 0.4990 +153129 201163 0.9420 +153129 206358 0.7020 +153129 245972 0.6190 +153129 245973 0.5220 +153129 389541 0.9990 +153129 440275 0.4300 +153129 652968 0.8750 +153129 654346 0.7560 +153129 729438 0.6310 +153201 206358 0.9040 +153201 219623 0.5750 +153201 285641 0.4820 +153201 340024 0.9560 +153201 348932 0.9570 +153201 401036 0.6500 +153218 404203 0.5970 +153218 408187 0.6070 +153218 643394 0.5410 +153222 388403 0.4670 +153241 158297 0.5110 +153241 163786 0.7050 +153241 197335 0.4170 +153241 200894 0.6030 +153241 219844 0.5420 +153241 221908 0.4330 +153241 255758 0.6220 +153241 259266 0.4670 +153241 282809 0.6840 +153328 220963 0.4630 +153328 347732 0.4100 +153328 401612 0.4290 +153339 221303 0.5640 +153339 252839 0.4180 +153364 201229 0.4540 +153364 253832 0.4720 +153364 254863 0.4500 +153364 255374 0.6640 +153364 100130890 0.4400 +153364 100131187 0.4640 +153364 101928527 0.4400 +153396 166348 0.5600 +153396 254827 0.4320 +153396 257194 0.4010 +153396 338811 0.4540 +153396 439921 0.5290 +153396 728591 0.5090 +153443 161424 0.6050 +153443 221830 0.4930 +153443 246243 0.4520 +153443 340371 0.4710 +153443 345630 0.4300 +153443 347487 0.4790 +153443 375316 0.5200 +153443 387837 0.4600 +153443 100287482 0.4790 +153443 100885848 0.4340 +153443 114515518 0.6040 +153478 389257 0.4800 +153478 392843 0.4180 +153478 100271715 0.4290 +153527 164045 0.5990 +153527 164781 0.7420 +153527 220074 0.5020 +153527 256536 0.8400 +153527 284325 0.7170 +153527 348793 0.7450 +153562 161497 0.4400 +153562 222662 0.4080 +153562 259236 0.4800 +153562 260425 0.5440 +153562 286676 0.8630 +153562 387597 0.8940 +153562 389207 0.4680 +153562 100506658 0.9920 +153572 343472 0.4080 +153579 442862 0.4040 +153642 285362 0.7780 +153642 285605 0.4350 +153642 340075 0.9110 +153642 347527 0.7700 +153643 154313 0.4660 +153643 158830 0.4730 +153643 160419 0.4430 +153643 200232 0.4670 +153643 219670 0.6540 +153643 219681 0.7060 +153643 257177 0.4290 +153643 285141 0.5940 +153643 285600 0.4020 +153643 339669 0.4200 +153643 399693 0.4910 +153643 401551 0.6200 +153657 154313 0.4760 +153657 285605 0.4840 +153657 408187 0.5060 +153733 340533 0.4440 +153733 374618 0.8690 +153743 153745 0.5070 +153745 168090 0.5070 +153745 196477 0.4160 +153745 254956 0.5290 +153745 259308 0.5780 +153745 283297 0.4360 +153745 338949 0.4020 +153745 100526794 0.4350 +153745 107983988 0.5760 +153768 153769 0.4900 +153768 153770 0.4030 +153768 169044 0.4650 +153768 643226 0.4780 +153769 153770 0.4110 +153769 255743 0.4190 +153769 643226 0.4340 +153769 100131755 0.5100 +153770 162967 0.4470 +153770 169044 0.4290 +153770 170392 0.4270 +153770 219670 0.4530 +153770 643226 0.4530 +153918 283576 0.6460 +153918 642968 0.7350 +153918 652968 0.4070 +154007 164045 0.5430 +154007 220074 0.5240 +154007 338657 0.4200 +154007 100534599 0.5890 +154043 170622 0.6090 +154043 283726 0.4590 +154043 285267 0.4780 +154043 285513 0.4390 +154043 375567 0.4060 +154043 404636 0.6080 +154043 729665 0.5630 +154064 353091 0.9060 +154064 100507436 0.6070 +154091 155184 0.4620 +154091 200010 0.4380 +154091 387775 0.4150 +154141 160851 0.7440 +154141 161823 0.4700 +154141 196051 0.9050 +154141 253558 0.9360 +154141 254531 0.9490 +154141 375775 0.9060 +154141 402635 0.5210 +154141 728116 0.4890 +154150 170394 0.4200 +154197 163589 0.5940 +154197 167153 0.8850 +154197 167227 0.4890 +154197 201164 0.7310 +154197 201626 0.4680 +154288 197135 0.5060 +154288 199713 0.9190 +154288 326340 0.5250 +154288 346171 0.6110 +154288 347688 0.4290 +154288 353238 0.8290 +154288 441161 0.9870 +154288 100129128 0.4410 +154313 158798 0.4820 +154313 158830 0.4360 +154313 159686 0.4930 +154313 160419 0.4250 +154313 200232 0.4400 +154313 206412 0.5290 +154313 219681 0.4390 +154313 221421 0.4740 +154313 245938 0.4060 +154313 285555 0.4580 +154313 286464 0.4690 +154313 345895 0.7870 +154313 399693 0.4860 +154313 100130771 0.5300 +154467 374864 0.4650 +154467 442444 0.4160 +154661 222658 0.4040 +154664 164684 0.4290 +154664 166752 0.4170 +154664 206338 0.4330 +154664 222553 0.4250 +154664 267012 0.4640 +154664 285175 0.4170 +154664 319100 0.4270 +154664 401024 0.5350 +154664 114483834 0.4790 +154743 201163 0.4970 +154743 220441 0.4420 +154743 245972 0.4280 +154743 389541 0.5980 +154743 652968 0.7630 +154743 729438 0.4340 +154790 154791 0.4460 +154790 222389 0.4580 +154790 284697 0.4040 +154790 285343 0.4380 +154790 402117 0.4330 +154790 440077 0.4500 +154791 201229 0.6040 +154791 254048 0.5050 +154791 339229 0.6450 +154791 346689 0.4200 +154791 644096 0.5320 +154796 154810 0.9860 +154796 221178 0.5060 +154796 260425 0.6020 +154796 340596 0.6710 +154796 377630 0.5200 +154807 286256 0.5050 +154810 201798 0.4400 +154810 283659 0.4120 +154865 161582 0.4700 +154865 219621 0.4160 +154865 219670 0.4790 +154865 219681 0.6780 +154865 220136 0.5420 +154865 221421 0.5510 +154865 255119 0.5280 +154865 257236 0.6060 +154865 338699 0.6240 +154865 339829 0.4370 +154865 339834 0.4220 +154865 389158 0.4140 +154865 441054 0.6420 +154865 441376 0.5050 +154865 100506049 0.4830 +154881 170622 0.4990 +154881 200845 0.4790 +154881 256471 0.7760 +154881 283897 0.4140 +154881 378884 0.7250 +154881 390594 0.4160 +155006 166979 0.7640 +155006 199964 0.5430 +155006 202865 0.4450 +155006 221458 0.5010 +155006 284498 0.4370 +155006 342850 0.4130 +155006 400891 0.7420 +155006 493901 0.4470 +155006 643236 0.4590 +155038 168537 0.8950 +155038 170575 0.8930 +155038 201255 0.6200 +155038 284114 0.4330 +155038 285971 0.5360 +155038 474344 0.9130 +155038 100527949 0.6120 +155051 202865 0.4150 +155051 349136 0.5180 +155051 392843 0.4070 +155051 400451 0.4120 +155051 402635 0.5900 +155054 202865 0.5070 +155054 349136 0.4430 +155054 392843 0.4830 +155054 100527949 0.4790 +155061 192111 0.4010 +155066 163882 0.7770 +155066 201163 0.4060 +155066 245972 0.9710 +155066 245973 0.9500 +155066 267020 0.5460 +155066 389541 0.5170 +155066 440400 0.9570 +155066 652968 0.4040 +155066 100526740 0.5400 +155066 100996928 0.5440 +155184 200010 0.5390 +155184 387775 0.4280 +155184 442194 0.4340 +155185 201299 0.4760 +155185 202333 0.4600 +155185 219874 0.5050 +155185 284001 0.5210 +155185 284099 0.4170 +155185 340277 0.4010 +155185 341152 0.4150 +155185 341640 0.4470 +155368 196410 0.4470 +155368 196541 0.4440 +155368 221078 0.4440 +155368 285368 0.4300 +155368 339175 0.4200 +155368 404552 0.4920 +155382 200894 0.4080 +155382 390595 0.5400 +155382 100526767 0.4600 +155435 285888 0.5410 +155465 204474 0.4590 +155465 283870 0.5060 +157285 284656 0.4180 +157285 374872 0.5310 +157310 161502 0.5730 +157310 196477 0.5090 +157310 254956 0.5340 +157310 339669 0.4520 +157310 345051 0.4460 +157310 347487 0.4880 +157310 100287482 0.4880 +157310 100526842 0.5320 +157313 157570 0.6320 +157313 166979 0.4870 +157313 220042 0.4070 +157313 220134 0.6540 +157313 221150 0.8740 +157313 259266 0.8360 +157313 283431 0.5760 +157313 387103 0.5620 +157313 728741 0.4360 +157378 199800 0.4040 +157378 255061 0.4160 +157378 283742 0.4690 +157378 100289187 0.4080 +157506 158835 0.9110 +157506 339761 0.9320 +157506 340665 0.6970 +157567 170589 0.4560 +157567 283377 0.4330 +157567 317754 0.4910 +157567 388468 0.4930 +157567 404785 0.4940 +157567 554226 0.4870 +157567 641455 0.4990 +157567 100287399 0.4620 +157567 100288966 0.4920 +157567 100996331 0.4920 +157567 102723502 0.4870 +157567 102724631 0.4900 +157570 220134 0.5060 +157570 221150 0.6180 +157570 253714 0.8240 +157570 259266 0.5230 +157570 339983 0.5300 +157570 348654 0.4150 +157570 374393 0.5080 +157570 387103 0.4430 +157570 440093 0.4560 +157570 440686 0.4560 +157570 442038 0.5830 +157570 574537 0.4410 +157570 642636 0.7760 +157570 653604 0.4560 +157574 222235 0.4570 +157638 222229 0.4180 +157657 166379 0.5910 +157657 169522 0.5710 +157657 200894 0.4540 +157657 254173 0.5230 +157657 282809 0.6680 +157657 285605 0.4330 +157657 346007 0.5790 +157657 375298 0.6750 +157657 388939 0.5810 +157657 768206 0.5160 +157680 158431 0.4130 +157680 166379 0.5840 +157680 283635 0.4570 +157680 285527 0.4100 +157695 157697 0.5610 +157695 169270 0.6580 +157697 169270 0.6050 +157697 222194 0.4570 +157697 441308 0.4200 +157724 283238 0.4390 +157724 284525 0.4500 +157724 387775 0.4710 +157724 646000 0.4250 +157753 285973 0.5970 +157753 440738 0.4190 +157769 200081 0.4190 +157769 253959 0.5950 +157769 286183 0.4070 +157769 400120 0.5050 +157769 503834 0.4440 +157773 254778 0.4350 +157773 729747 0.5780 +157777 158401 0.5480 +157777 164045 0.4070 +157777 254394 0.8930 +157777 254528 0.5220 +157777 285498 0.4410 +157777 317761 0.4540 +157777 440957 0.4060 +157777 645121 0.4640 +157777 100288072 0.4030 +157807 162461 0.5220 +157848 159296 0.5400 +157848 169026 0.4180 +157848 340146 0.4340 +157855 219527 0.5350 +157855 257062 0.4660 +157855 285335 0.7010 +157855 285588 0.4880 +157855 378807 0.5100 +157855 389816 0.6290 +157855 390321 0.4170 +157855 440699 0.9140 +157869 219927 0.4680 +157869 341392 0.4430 +157869 348158 0.4450 +157869 389434 0.4700 +157869 619208 0.4330 +157922 158067 0.4490 +157922 203068 0.9070 +157922 257218 0.4040 +157922 347733 0.9030 +158038 203228 0.4060 +158038 219402 0.5840 +158038 253559 0.4940 +158038 257194 0.5370 +158038 390598 0.4310 +158038 643226 0.4590 +158038 100526835 0.5720 +158056 197342 0.4430 +158056 220001 0.4630 +158056 286256 0.5590 +158056 728780 0.4770 +158056 100129515 0.4710 +158056 101928677 0.4470 +158062 245939 0.4370 +158062 286256 0.5890 +158062 340390 0.4280 +158062 391253 0.4090 +158062 392399 0.7870 +158062 401562 0.5170 +158062 414332 0.8720 +158062 100131137 0.4120 +158067 158135 0.4090 +158067 170082 0.4360 +158067 221264 0.8530 +158067 222235 0.4430 +158067 246176 0.6030 +158067 257177 0.4290 +158067 260425 0.4240 +158067 285555 0.4330 +158067 374407 0.4360 +158067 374659 0.4440 +158067 375307 0.5760 +158067 377841 0.6750 +158067 654364 0.7490 +158067 727764 0.5150 +158067 100526794 0.6960 +158067 100526842 0.4470 +158067 102157402 0.4690 +158131 161142 0.4860 +158131 401551 0.5880 +158135 158234 0.4940 +158135 164395 0.4610 +158135 392399 0.5340 +158135 402381 0.4330 +158158 196383 0.4280 +158158 199800 0.4110 +158158 257019 0.6210 +158158 100132963 0.4490 +158158 100505993 0.4930 +158219 203238 0.5290 +158234 161835 0.4180 +158234 161931 0.4330 +158234 169841 0.4780 +158234 221078 0.5660 +158234 339175 0.5800 +158234 339779 0.4600 +158234 100132476 0.4450 +158248 205860 0.5960 +158248 359710 0.4450 +158248 441234 0.4860 +158297 202500 0.4430 +158297 220082 0.4960 +158297 255119 0.4010 +158297 287015 0.5140 +158297 391253 0.4450 +158297 399814 0.6140 +158297 646019 0.4940 +158358 201232 0.5090 +158358 387885 0.4180 +158376 285095 0.5290 +158376 392307 0.4450 +158376 550643 0.5260 +158376 646962 0.6040 +158376 100507027 0.6900 +158376 100507537 0.6660 +158376 101929726 0.4230 +158376 107984345 0.5910 +158376 110806279 0.4480 +158376 112163659 0.5700 +158376 127898561 0.4750 +158399 283232 0.5300 +158399 342527 0.4030 +158399 342945 0.5320 +158399 387032 0.7770 +158401 161931 0.5830 +158401 164045 0.7400 +158401 254528 0.5320 +158401 283847 0.5250 +158401 285498 0.7130 +158401 317761 0.4690 +158401 339834 0.4220 +158401 388649 0.6660 +158401 642636 0.5370 +158401 100507650 0.4110 +158405 100287898 0.5380 +158427 158431 0.5550 +158431 161829 0.4740 +158431 222234 0.4390 +158431 254359 0.5220 +158431 283464 0.5770 +158431 374354 0.4010 +158431 442361 0.5930 +158431 100288413 0.4370 +158506 169966 0.4260 +158506 340562 0.4470 +158506 440087 0.5710 +158511 266740 0.7580 +158511 266743 0.8180 +158511 441519 0.4740 +158511 728343 0.4500 +158511 728712 0.5910 +158511 729447 0.4530 +158511 100509620 0.5180 +158511 102723631 0.4470 +158521 161835 0.4320 +158521 205860 0.4340 +158521 220047 0.5290 +158521 388799 0.5110 +158521 541578 0.4460 +158521 645864 0.4280 +158521 653220 0.4120 +158521 728343 0.6540 +158521 100129239 0.5820 +158521 101927685 0.5420 +158584 221656 0.4300 +158584 221955 0.6510 +158584 222236 0.8070 +158584 283985 0.4920 +158584 284716 0.4750 +158584 285148 0.7000 +158584 642475 0.5350 +158724 254048 0.5050 +158724 284565 0.4440 +158724 340533 0.4500 +158724 653149 0.4350 +158747 645864 0.4770 +158763 257313 0.4590 +158763 259266 0.5620 +158763 282890 0.4270 +158763 375567 0.4590 +158763 390181 0.6280 +158763 642968 0.4190 +158787 158798 0.4850 +158787 159013 0.4420 +158787 159091 0.4840 +158787 160762 0.4580 +158787 170082 0.4790 +158787 219333 0.4180 +158787 219681 0.5340 +158787 246175 0.7190 +158787 254956 0.6240 +158787 401993 0.5450 +158787 494197 0.4360 +158787 100128569 0.4290 +158798 161003 0.4730 +158798 168090 0.4910 +158798 219681 0.4450 +158798 254956 0.4700 +158798 255119 0.4440 +158798 257062 0.4780 +158798 257177 0.4370 +158798 286464 0.4330 +158798 345895 0.5090 +158798 389852 0.4030 +158798 399949 0.6330 +158798 401551 0.5320 +158809 280658 0.4250 +158809 389903 0.4470 +158809 728712 0.4380 +158809 102723547 0.4730 +158830 160419 0.5180 +158830 200232 0.5300 +158830 339669 0.5070 +158830 399693 0.5440 +158830 645432 0.4780 +158833 338442 0.4090 +158833 338785 0.4270 +158833 347365 0.4570 +158833 347516 0.5600 +158833 376497 0.8430 +158835 195814 0.9050 +158835 339761 0.9010 +158866 164832 0.4650 +158866 254065 0.4360 +158866 283576 0.6290 +158866 340533 0.6240 +158866 341416 0.4170 +158880 159195 0.4250 +158880 161725 0.4310 +158880 165918 0.4330 +158880 200933 0.4240 +158880 221302 0.6380 +158880 222255 0.5950 +158880 254225 0.4350 +158880 374395 0.4760 +158880 389856 0.8240 +158931 283159 0.4160 +158931 283999 0.4080 +158931 340542 0.7180 +158931 340578 0.4720 +158983 221302 0.4350 +158983 317772 0.4440 +158983 340096 0.4860 +158983 391769 0.4830 +158983 440093 0.8640 +158983 440686 0.8630 +158983 474381 0.5230 +158983 474382 0.5010 +158983 653604 0.8630 +159013 170082 0.5310 +159013 404636 0.4240 +159090 203522 0.4510 +159090 389860 0.4340 +159090 541565 0.4750 +159119 159163 0.4370 +159119 353513 0.4460 +159119 378948 0.4830 +159119 378949 0.4040 +159119 442867 0.5840 +159119 442868 0.5840 +159119 728132 0.4350 +159119 728395 0.4750 +159119 100129239 0.4180 +159119 100133093 0.5070 +159163 253175 0.4280 +159163 353513 0.5430 +159163 442862 0.7780 +159163 442867 0.8500 +159163 442868 0.8500 +159163 642659 0.4550 +159163 728132 0.6120 +159163 728395 0.5170 +159195 219333 0.4090 +159195 373509 0.6320 +159296 345611 0.5410 +159296 389015 0.4680 +159296 100289462 0.4910 +159371 162282 0.4740 +159371 284018 0.4410 +159371 343450 0.4360 +159371 347734 0.4510 +159371 375346 0.5690 +159371 728661 0.4410 +159686 199223 0.6290 +159686 220136 0.4200 +159686 255101 0.4160 +159686 388633 0.4160 +159686 401024 0.4410 +159963 200010 0.4210 +159989 160851 0.5230 +159989 163786 0.6540 +159989 166979 0.6630 +159989 168090 0.4650 +159989 345643 0.6370 +159989 647309 0.6220 +160065 171169 0.5480 +160065 221223 0.4170 +160065 259215 0.5220 +160065 284348 0.5830 +160065 389383 0.4350 +160065 390940 0.6200 +160065 399967 0.7690 +160065 399968 0.6960 +160065 440163 0.4940 +160065 100169851 0.9200 +160065 101928108 0.6680 +160287 197257 0.9390 +160287 387712 0.5460 +160287 548596 0.7500 +160298 246777 0.4470 +160335 286148 0.4540 +160335 374462 0.4640 +160364 199675 0.6570 +160364 338339 0.6580 +160364 387837 0.7380 +160364 100526664 0.5030 +160418 170572 0.4610 +160418 282809 0.4290 +160418 286148 0.5810 +160418 353174 0.5110 +160418 374395 0.4070 +160419 200035 0.4030 +160419 200232 0.5050 +160419 339669 0.4890 +160419 389177 0.5330 +160419 399693 0.5230 +160428 200895 0.9460 +160428 441024 0.9690 +160492 400891 0.5610 +160492 401124 0.4600 +160492 474354 0.5400 +160492 100129583 0.5420 +160492 100631383 0.5350 +160518 401207 0.4540 +160622 163688 0.5060 +160728 200010 0.4620 +160728 338442 0.7870 +160728 440503 0.4920 +160728 652991 0.4160 +160760 333926 0.5030 +160762 161582 0.4330 +160762 164781 0.5170 +160762 196385 0.4390 +160762 197335 0.5770 +160762 202500 0.4210 +160762 219681 0.4040 +160762 220136 0.4860 +160762 245934 0.4070 +160762 257177 0.5030 +160762 283450 0.7000 +160762 345895 0.6240 +160762 345930 0.4610 +160762 352909 0.5210 +160762 388389 0.4610 +160762 388701 0.4290 +160762 390081 0.4820 +160762 390648 0.5430 +160762 727764 0.4150 +160762 729440 0.4150 +160762 100128569 0.4730 +160777 201501 0.4120 +160777 339512 0.4760 +160777 347475 0.4770 +160777 374618 0.5420 +160851 253558 0.7270 +160851 259266 0.4170 +160851 346606 0.6640 +160857 339230 0.5080 +160857 374355 0.4200 +161003 163486 0.4490 +161003 166379 0.4970 +161003 257177 0.4650 +161003 345895 0.4170 +161003 387921 0.4070 +161003 389161 0.4990 +161003 399949 0.6410 +161142 164684 0.5780 +161142 200232 0.5060 +161142 257169 0.4370 +161142 283461 0.4590 +161142 390064 0.5590 +161142 401551 0.4380 +161142 644186 0.5280 +161145 339105 0.4240 +161145 360200 0.4610 +161176 163183 0.9430 +161176 256979 0.9120 +161176 389610 0.4160 +161176 100132396 0.4030 +161198 221395 0.4890 +161198 255877 0.5760 +161198 256949 0.4030 +161198 338339 0.4090 +161198 388963 0.4170 +161198 641700 0.5490 +161247 375704 0.4010 +161247 440503 0.4630 +161247 729359 0.4410 +161291 199964 0.4450 +161291 286410 0.9650 +161291 374868 0.6640 +161394 283578 0.6000 +161394 285596 0.4720 +161394 405754 0.5920 +161424 165545 0.5120 +161424 221078 0.6340 +161424 253650 0.4800 +161424 692312 0.6550 +161497 163688 0.5010 +161497 201514 0.4510 +161497 222662 0.6890 +161497 246213 0.4080 +161497 259236 0.5820 +161497 283310 0.9550 +161497 286262 0.5050 +161497 286676 0.4450 +161497 339768 0.4680 +161497 340990 0.9720 +161497 375611 0.5770 +161497 388551 0.6550 +161497 389207 0.5800 +161497 494513 0.5620 +161497 643226 0.6870 +161497 645104 0.5430 +161497 654231 0.5300 +161502 162333 0.4070 +161502 203259 0.4340 +161502 219670 0.8970 +161502 220136 0.8530 +161502 222967 0.4570 +161502 254956 0.5650 +161502 257177 0.8850 +161502 283726 0.4810 +161502 339778 0.8530 +161502 345930 0.5940 +161502 388633 0.6290 +161502 388701 0.8090 +161502 389799 0.8000 +161502 401124 0.4380 +161502 440585 0.8130 +161502 440836 0.4180 +161502 730112 0.8700 +161502 100128569 0.5940 +161502 100505841 0.5220 +161514 162993 0.4740 +161514 221481 0.6280 +161514 254272 0.4550 +161514 283629 0.4860 +161514 374403 0.5930 +161514 389396 0.4140 +161514 414059 0.4190 +161582 164781 0.6750 +161582 201625 0.4240 +161582 205327 0.4830 +161582 221421 0.6920 +161582 283237 0.4820 +161582 339829 0.7330 +161582 345643 0.5070 +161582 345895 0.7070 +161582 352909 0.9010 +161582 388389 0.7760 +161582 728597 0.6080 +161725 220213 0.4750 +161725 221302 0.8430 +161725 284390 0.7390 +161725 375323 0.4410 +161725 389856 0.4790 +161725 554282 0.4320 +161725 643699 0.4740 +161725 653820 0.4300 +161725 728833 0.4110 +161725 729438 0.4060 +161725 729533 0.4080 +161742 200734 0.8920 +161742 399473 0.4870 +161753 245938 0.4470 +161753 245940 0.4470 +161753 284106 0.4530 +161753 386674 0.6090 +161753 552889 0.5890 +161779 200765 0.4530 +161779 201798 0.4350 +161779 267002 0.4090 +161779 283237 0.4570 +161779 389792 0.4010 +161829 163589 0.5550 +161829 169792 0.4020 +161829 201164 0.4360 +161829 254359 0.4370 +161829 283847 0.5350 +161829 342850 0.4390 +161829 402117 0.4340 +161829 100129278 0.4840 +161835 401024 0.4230 +161882 192669 0.4110 +161882 192670 0.4110 +161882 284390 0.4390 +161931 254528 0.4810 +161931 283847 0.4720 +161931 345630 0.5290 +161931 374973 0.4760 +161931 642636 0.5200 +161931 646019 0.4910 +162073 164118 0.4020 +162073 646851 0.4470 +162282 164395 0.6110 +162282 252983 0.4270 +162282 256223 0.4770 +162282 284018 0.4470 +162282 339210 0.5610 +162282 388963 0.6000 +162282 408263 0.4290 +162282 729665 0.5940 +162333 283629 0.5530 +162333 283726 0.4360 +162333 285051 0.4290 +162333 339175 0.4520 +162333 345062 0.4160 +162333 348807 0.5850 +162333 441061 0.7420 +162387 201305 0.4970 +162387 202018 0.4520 +162387 220388 0.4380 +162387 222826 0.4780 +162387 254272 0.4720 +162387 256223 0.5420 +162387 256471 0.4540 +162387 337867 0.4920 +162387 353149 0.4140 +162387 388333 0.4180 +162387 388931 0.4130 +162387 390152 0.4300 +162387 390261 0.4470 +162387 643664 0.4450 +162387 728194 0.4310 +162387 100131755 0.5600 +162394 400713 0.4140 +162417 284716 0.6090 +162417 389333 0.4310 +162427 200916 0.4330 +162427 219738 0.4030 +162427 253782 0.6680 +162427 285855 0.4400 +162427 387129 0.4370 +162427 100505478 0.4180 +162461 201516 0.5870 +162461 404093 0.4200 +162461 440561 0.4710 +162461 441873 0.4120 +162461 100505724 0.4780 +162494 197335 0.4340 +162494 337867 0.4220 +162494 342527 0.4040 +162514 163688 0.6530 +162514 255231 0.4300 +162517 200162 0.5400 +162517 254272 0.4450 +162517 256223 0.5070 +162517 353149 0.4120 +162517 374286 0.4060 +162517 387694 0.5430 +162517 643664 0.4180 +162540 200172 0.5560 +162540 246744 0.5940 +162540 284058 0.6290 +162540 360203 0.4990 +162540 374819 0.4300 +162540 387718 0.5450 +162540 403314 0.4480 +162540 441476 0.5700 +162540 474170 0.4710 +162540 727897 0.5060 +162540 729238 0.4180 +162540 104909134 0.5310 +162605 192666 0.4220 +162605 284110 0.4070 +162605 342574 0.5010 +162605 353288 0.4840 +162605 390792 0.4830 +162655 388468 0.4050 +162681 195828 0.5390 +162681 284992 0.5960 +162962 644019 0.4300 +162966 162967 0.5530 +162966 101060684 0.5340 +162967 255308 0.4350 +162967 440515 0.4230 +162968 284992 0.4020 +162968 727800 0.5890 +162968 101928603 0.5800 +162979 342900 0.4080 +162989 219539 0.4540 +162989 284338 0.4760 +162993 169270 0.4510 +162998 257169 0.4790 +162998 401036 0.4460 +162998 401387 0.4440 +162998 441234 0.5370 +162998 645432 0.4600 +162998 730005 0.4970 +163049 192669 0.6380 +163049 441308 0.4440 +163051 255725 0.4200 +163059 286234 0.4470 +163059 388335 0.4750 +163071 220001 0.4860 +163071 374286 0.4880 +163071 404093 0.4220 +163081 163259 0.4190 +163081 171392 0.4990 +163081 100130958 0.4900 +163087 170959 0.4790 +163087 255252 0.4790 +163087 284349 0.4810 +163087 285521 0.4390 +163087 349075 0.4580 +163087 641339 0.4540 +163126 388569 0.6370 +163126 493861 0.9210 +163131 220929 0.5350 +163131 283999 0.5370 +163131 730112 0.5110 +163154 199800 0.6400 +163154 257062 0.5800 +163154 284427 0.4860 +163154 388946 0.5530 +163154 100533952 0.4070 +163175 203190 0.4370 +163175 643965 0.4230 +163183 199953 0.4160 +163183 256979 0.7490 +163183 100506658 0.4210 +163223 196541 0.4720 +163223 391211 0.4740 +163223 644974 0.5790 +163227 645432 0.4030 +163255 202559 0.4480 +163255 286336 0.5720 +163255 389658 0.4790 +163259 200844 0.5420 +163259 100130958 0.4120 +163351 345611 0.4280 +163351 388646 0.4360 +163479 165100 0.4090 +163479 284611 0.5050 +163479 643988 0.6150 +163479 728276 0.5890 +163486 286204 0.5700 +163486 388722 0.5250 +163486 414918 0.4010 +163589 163590 0.4820 +163589 201164 0.6500 +163589 221400 0.4260 +163589 256126 0.4070 +163589 341359 0.4190 +163589 342977 0.6020 +163589 440822 0.6880 +163589 100129278 0.5220 +163590 347744 0.4830 +163688 166614 0.4570 +163688 196883 0.7560 +163688 200373 0.7980 +163688 219670 0.7980 +163688 257202 0.4080 +163688 259266 0.5530 +163688 340156 0.7230 +163688 345456 0.6250 +163688 375189 0.6260 +163688 440093 0.4200 +163688 440387 0.4780 +163688 440686 0.4200 +163688 440854 0.5460 +163688 493869 0.4090 +163688 653145 0.6330 +163688 653604 0.4200 +163688 654231 0.5990 +163688 100271849 0.4820 +163688 100996693 0.4520 +163702 282616 0.9990 +163702 282617 0.9990 +163702 282618 0.9990 +163702 338376 0.8610 +163702 399671 0.4090 +163732 222894 0.4160 +163732 339488 0.5190 +163732 399474 0.4360 +163747 201243 0.5270 +163747 221496 0.4840 +163778 170680 0.4040 +163778 353131 0.5760 +163778 353133 0.4960 +163778 353134 0.4350 +163778 353135 0.4340 +163778 353137 0.4840 +163778 353139 0.7030 +163778 353140 0.5220 +163778 353141 0.4960 +163778 353142 0.5540 +163778 353144 0.5670 +163778 353145 0.5840 +163778 374454 0.5670 +163778 388698 0.5160 +163778 448834 0.6940 +163778 448835 0.5810 +163778 574414 0.4510 +163778 728279 0.4510 +163778 100271715 0.4050 +163782 285676 0.4060 +163786 197335 0.4660 +163786 254528 0.6500 +163786 259266 0.5410 +163786 282809 0.6860 +163786 284403 0.6260 +163786 345643 0.4360 +163786 647309 0.4100 +163859 197131 0.4180 +163859 199746 0.5260 +163882 221264 0.4570 +163882 245972 0.9740 +163882 245973 0.8650 +163882 440400 0.8410 +163933 220965 0.4050 +163933 221421 0.4110 +163933 285800 0.5580 +163933 401647 0.4320 +164045 164781 0.4830 +164045 170370 0.4380 +164045 222183 0.5460 +164045 254394 0.7110 +164045 254528 0.6380 +164045 256536 0.4760 +164045 257218 0.6220 +164045 283677 0.6190 +164045 284325 0.4370 +164045 285498 0.6750 +164045 317761 0.5250 +164045 344018 0.5380 +164045 348793 0.4830 +164045 388649 0.8850 +164045 402381 0.4540 +164045 548593 0.4540 +164045 644150 0.4210 +164045 100507650 0.6250 +164045 100534599 0.5970 +164045 101928601 0.4180 +164127 282890 0.4470 +164127 347732 0.5680 +164127 400629 0.4060 +164153 200916 0.4990 +164153 254268 0.4900 +164153 285855 0.4700 +164153 347487 0.4870 +164153 387129 0.4700 +164153 388662 0.9260 +164153 401944 0.4470 +164153 645051 0.4030 +164153 645073 0.4030 +164153 729396 0.4030 +164153 729422 0.4030 +164153 729428 0.4030 +164153 729431 0.4030 +164153 729442 0.4030 +164153 729447 0.4030 +164153 100008586 0.4030 +164153 100132399 0.4030 +164153 100526842 0.4890 +164153 100529097 0.5050 +164153 100529239 0.5090 +164153 102724473 0.4030 +164237 259239 0.7290 +164237 259240 0.7350 +164237 280664 0.6620 +164237 391253 0.7740 +164237 440163 0.4520 +164312 105375355 0.7380 +164395 200728 0.4800 +164395 284067 0.4370 +164395 345895 0.4420 +164395 374407 0.4900 +164395 729665 0.5960 +164592 200523 0.5420 +164592 257236 0.5850 +164592 284067 0.4470 +164592 374786 0.5110 +164592 375316 0.4370 +164592 402135 0.4590 +164592 440699 0.4680 +164592 440804 0.4340 +164592 441054 0.5800 +164592 100190949 0.5060 +164592 100506049 0.4510 +164668 164684 0.4260 +164668 200315 0.7650 +164668 200316 0.4140 +164668 267020 0.4330 +164668 283459 0.6610 +164668 388753 0.5880 +164668 403314 0.9150 +164668 440567 0.6870 +164668 100532726 0.4600 +164684 200232 0.4440 +164684 200315 0.4270 +164684 200316 0.4260 +164684 206338 0.4770 +164684 257169 0.4520 +164684 283459 0.5110 +164684 283461 0.4720 +164684 386683 0.4180 +164684 388753 0.5690 +164714 167227 0.4910 +164714 196513 0.4500 +164714 220416 0.5320 +164714 374470 0.4540 +164714 374969 0.4320 +164714 442444 0.4180 +164781 200132 0.4630 +164781 257177 0.4060 +164781 284325 0.5940 +164781 339829 0.4590 +164781 352909 0.6710 +164781 388389 0.5540 +164781 389161 0.4700 +164781 399949 0.4850 +164781 100287718 0.4040 +165055 197335 0.4370 +165055 254173 0.5690 +165055 729440 0.5910 +165082 166647 0.4340 +165082 388611 0.5010 +165082 390075 0.4180 +165082 401665 0.4620 +165100 200523 0.6900 +165100 339766 0.6030 +165100 400823 0.5830 +165140 222545 0.6220 +165186 346653 0.4710 +165186 348378 0.4220 +165186 401666 0.4200 +165186 441234 0.4240 +165186 728130 0.4480 +165215 284339 0.4400 +165215 388021 0.4290 +165215 402415 0.4180 +165215 441581 0.4300 +165215 444882 0.4320 +165215 643965 0.4640 +165257 222658 0.4160 +165257 256356 0.4680 +165257 286148 0.4910 +165257 338761 0.4040 +165257 338872 0.4420 +165257 389941 0.4910 +165257 390664 0.4910 +165324 166378 0.4100 +165324 258010 0.9570 +165530 339390 0.4570 +165545 221078 0.6030 +165545 221830 0.5950 +165545 345630 0.5080 +165545 388963 0.4470 +165545 653404 0.4200 +165631 221443 0.6010 +165679 171546 0.9530 +165679 253558 0.4720 +165679 338596 0.4320 +165679 401647 0.6560 +165721 259217 0.5280 +165721 339416 0.4200 +165721 388633 0.4200 +165721 729428 0.4640 +165829 222545 0.4800 +165829 376940 0.4030 +165904 202333 0.5440 +165904 347273 0.4670 +165904 442721 0.4120 +165918 171023 0.4080 +165918 200933 0.5060 +165918 205564 0.5320 +165918 221037 0.4250 +165918 221302 0.7280 +165918 254225 0.7840 +165918 255626 0.5960 +165918 255798 0.5330 +165918 286204 0.4330 +165918 286257 0.4260 +165918 348793 0.6270 +165918 387082 0.5030 +165918 387893 0.6950 +165918 100532731 0.4250 +166012 245937 0.5030 +166348 170850 0.5290 +166348 200942 0.5830 +166348 254827 0.4640 +166348 285555 0.4470 +166348 338811 0.5440 +166348 339834 0.5330 +166348 375567 0.5310 +166348 100130988 0.5540 +166378 246269 0.9840 +166378 399473 0.4260 +166379 200894 0.4290 +166614 200186 0.4610 +166614 729025 0.4220 +166647 166863 0.4010 +166647 221061 0.4320 +166647 221188 0.6080 +166647 221393 0.5110 +166647 222487 0.5800 +166647 339345 0.4740 +166647 346673 0.4280 +166647 387509 0.4770 +166647 402381 0.4040 +166655 168417 0.5170 +166655 287015 0.4180 +166655 340252 0.4330 +166655 390081 0.4620 +166655 728927 0.6080 +166752 222553 0.4620 +166752 257313 0.5030 +166785 326625 0.9890 +166815 203245 0.4580 +166815 221710 0.4530 +166815 283254 0.5210 +166815 284325 0.4180 +166815 285513 0.4880 +166815 401145 0.4170 +166815 100996939 0.4050 +166824 219287 0.4280 +166824 283349 0.6470 +166824 644943 0.7900 +166863 221191 0.4250 +166863 256309 0.5140 +166863 283464 0.4370 +166863 284071 0.4910 +166863 338661 0.4600 +166863 339500 0.6680 +166863 359948 0.4110 +166863 378807 0.4920 +166929 204219 0.9510 +166929 253782 0.9600 +166929 259230 0.9090 +166929 339221 0.9260 +166929 340485 0.9520 +166968 255626 0.6050 +166968 388272 0.7900 +166968 391475 0.4410 +166979 221458 0.5930 +166979 246184 0.5400 +166979 259266 0.6260 +166979 345643 0.5900 +166979 387103 0.4850 +166979 399949 0.4250 +166979 400891 0.7830 +166979 401236 0.6180 +166979 401551 0.4100 +166979 647309 0.4550 +167127 167410 0.5950 +167127 199857 0.5430 +167127 221301 0.5580 +167127 440138 0.5520 +167127 494188 0.5270 +167127 645191 0.5310 +167153 169966 0.4130 +167153 340719 0.4200 +167153 389421 0.4400 +167153 399664 0.5250 +167227 192669 0.8700 +167227 192670 0.8160 +167227 196513 0.9990 +167227 197135 0.7260 +167227 200035 0.4950 +167227 200316 0.4740 +167227 219988 0.9990 +167227 221908 0.6190 +167227 246175 0.5630 +167227 254173 0.4910 +167227 284325 0.5130 +167227 317649 0.4120 +167227 340529 0.4500 +167227 374887 0.7720 +167227 425054 0.5000 +167227 550643 0.4090 +167227 100526693 0.4910 +167359 283748 0.4340 +167359 654790 0.4870 +167359 100129792 0.4290 +167410 221301 0.5890 +167410 255426 0.4570 +167410 286133 0.5160 +167410 345757 0.4370 +167410 347252 0.4100 +167410 440138 0.5980 +167410 494188 0.5240 +167410 645191 0.6010 +167465 219484 0.4740 +167555 340120 0.5070 +167555 645191 0.5180 +167555 729991 0.4260 +167681 202151 0.4170 +167691 282809 0.4210 +167691 339122 0.4450 +167691 343035 0.8720 +167691 346007 0.5140 +167691 375298 0.6180 +167691 388939 0.4630 +167691 401409 0.4450 +167691 100129239 0.4290 +167826 440097 0.4980 +167838 200081 0.7910 +167838 202333 0.4320 +167838 222256 0.4430 +167838 339965 0.5160 +167838 388336 0.4330 +167838 653567 0.6270 +168002 253769 0.5160 +168002 388849 0.5210 +168090 253769 0.4440 +168090 257177 0.6340 +168090 285800 0.6300 +168090 387263 0.4460 +168090 399949 0.4710 +168090 401551 0.4280 +168374 255349 0.4920 +168374 286075 0.4490 +168400 201633 0.4350 +168417 390081 0.5350 +168433 378925 0.9990 +168451 353345 0.5110 +168451 643641 0.4130 +168507 199699 0.5890 +168507 220136 0.5120 +168507 342372 0.5120 +168507 345643 0.4140 +168537 170575 0.8330 +168537 285971 0.5120 +168537 474344 0.8880 +168537 100527949 0.5760 +168620 246243 0.4290 +168620 283869 0.4350 +168667 283106 0.4050 +168667 375567 0.4880 +168975 391109 0.4310 +169026 169792 0.6020 +169026 201266 0.5580 +169026 221074 0.5520 +169026 221895 0.6960 +169026 222546 0.4570 +169026 283375 0.5950 +169026 340146 0.4290 +169026 388125 0.6080 +169026 392636 0.5200 +169044 197335 0.8230 +169044 255631 0.6310 +169044 283208 0.5590 +169044 340267 0.5510 +169044 345193 0.4780 +169166 196528 0.5180 +169166 100131244 0.4270 +169200 728858 0.4450 +169270 441308 0.4720 +169270 646799 0.4310 +169355 201633 0.5160 +169355 259197 0.4610 +169355 259307 0.9250 +169355 284194 0.4340 +169355 440275 0.5810 +169355 653361 0.4390 +169355 654346 0.4240 +169436 255967 0.5160 +169436 285600 0.4280 +169436 374872 0.4520 +169436 646643 0.4780 +169522 200916 0.4750 +169522 254173 0.4450 +169522 282809 0.4040 +169522 285855 0.4500 +169522 339302 0.4990 +169522 347487 0.4220 +169522 375298 0.5300 +169522 387129 0.4520 +169522 388531 0.5230 +169522 388939 0.4440 +169522 100287482 0.4220 +169522 100505478 0.4500 +169522 100526842 0.5030 +169522 100529097 0.4960 +169522 100529239 0.5030 +169611 100129654 0.5060 +169693 255798 0.5910 +169693 284013 0.4200 +169792 221895 0.4390 +169792 222546 0.6890 +169792 256297 0.6300 +169792 339745 0.4140 +169792 340351 0.4450 +169792 344758 0.4080 +169792 388125 0.6000 +169792 389434 0.4870 +169792 390212 0.8020 +169792 392636 0.5230 +169792 399665 0.4980 +169841 195827 0.4210 +169841 441457 0.5010 +169966 254065 0.4830 +169966 286499 0.5420 +169966 340562 0.4550 +169966 441525 0.5440 +169981 653140 0.4470 +170062 286464 0.5320 +170062 340562 0.6090 +170062 347404 0.4360 +170062 389257 0.4470 +170062 389840 0.5100 +170062 389874 0.4590 +170062 653567 0.4440 +170062 728229 0.5760 +170082 221830 0.6060 +170082 246721 0.4120 +170082 548644 0.4120 +170082 100134938 0.4120 +170082 107983993 0.4120 +170261 641339 0.4220 +170261 110806277 0.4990 +170302 353513 0.4970 +170302 389692 0.4650 +170302 425054 0.6710 +170370 203074 0.5270 +170370 283471 0.4740 +170370 283629 0.5290 +170370 390999 0.4380 +170370 401024 0.4820 +170370 474354 0.4820 +170370 644150 0.5910 +170371 195977 0.4180 +170371 196740 0.4790 +170371 414189 0.4480 +170371 100287718 0.4230 +170392 339390 0.4430 +170394 388969 0.4730 +170394 728224 0.4440 +170463 431707 0.5060 +170482 284217 0.4260 +170482 100526664 0.5710 +170506 171389 0.4070 +170506 197131 0.4410 +170506 221092 0.6270 +170506 253461 0.4440 +170506 344758 0.5430 +170506 102723407 0.6110 +170572 200909 0.9950 +170572 254263 0.6060 +170572 285242 0.9620 +170572 375567 0.5400 +170572 388336 0.5400 +170572 402117 0.5450 +170572 440829 0.5400 +170572 729956 0.5400 +170572 729993 0.6000 +170575 349136 0.4060 +170575 474344 0.8270 +170589 285220 0.5760 +170589 326625 0.4080 +170589 594857 0.4600 +170589 653519 0.4740 +170591 338324 0.5730 +170591 388697 0.6970 +170622 200845 0.4990 +170622 390594 0.4990 +170622 401036 0.4990 +170622 404636 0.8770 +170622 441933 0.6100 +170626 389761 0.4480 +170626 441525 0.5710 +170626 653067 0.9190 +170626 653220 0.9470 +170679 170680 0.6300 +170679 401250 0.4940 +170679 442194 0.4630 +170680 284110 0.4210 +170680 390637 0.4450 +170680 401251 0.5030 +170680 448834 0.4020 +170680 100129271 0.4210 +170685 196513 0.4780 +170689 647174 0.4290 +170690 221914 0.4060 +170691 204219 0.4460 +170692 339416 0.5150 +170712 267020 0.4160 +170712 283459 0.4910 +170712 285527 0.4070 +170712 341947 0.7590 +170712 386617 0.4280 +170712 387509 0.4590 +170712 388753 0.6670 +170712 440567 0.8560 +170712 100509620 0.5070 +170825 221833 0.6890 +170825 340419 0.4380 +170825 431707 0.5340 +170825 100131390 0.4820 +170850 200916 0.4750 +170850 200942 0.4770 +170850 285855 0.4500 +170850 339834 0.4580 +170850 347487 0.4220 +170850 347730 0.4530 +170850 375567 0.4480 +170850 387129 0.4520 +170850 100130988 0.4750 +170850 100287482 0.4220 +170850 100505478 0.4500 +170850 100526842 0.5030 +170850 100529097 0.4960 +170850 100529239 0.5030 +170954 643226 0.4100 +170958 196792 0.4180 +170958 388558 0.7780 +170958 441519 0.4020 +170958 645121 0.4600 +170959 171392 0.4860 +170959 192669 0.4620 +170959 284443 0.4540 +170959 342892 0.5450 +170959 440515 0.4900 +170959 730051 0.4720 +170960 390155 0.4460 +170961 387496 0.4010 +170961 387856 0.4080 +170961 389207 0.4520 +170961 474384 0.4200 +171017 256646 0.5000 +171017 286530 0.4550 +171017 440387 0.4290 +171017 100288687 0.7960 +171019 100127206 0.4580 +171023 221302 0.5240 +171023 221613 0.4340 +171023 221656 0.9090 +171023 221937 0.9870 +171023 317772 0.4340 +171023 404281 0.5800 +171023 440093 0.4070 +171023 440686 0.4040 +171023 653604 0.4030 +171024 201798 0.4680 +171024 201895 0.4380 +171169 221409 0.6240 +171169 256710 0.5260 +171169 259215 0.4790 +171169 283417 0.4070 +171169 284348 0.6120 +171169 284359 0.5830 +171169 338661 0.5880 +171169 390940 0.5710 +171169 399967 0.5760 +171169 399968 0.5730 +171169 432355 0.4470 +171169 100169851 0.6200 +171169 101928108 0.6290 +171177 283209 0.4670 +171222 257160 0.5250 +171222 387522 0.5830 +171222 100128731 0.4180 +171389 199713 0.9880 +171389 260434 0.9120 +171389 284110 0.5730 +171389 338321 0.9580 +171389 494513 0.4960 +171425 259217 0.4200 +171425 326625 0.4060 +171425 339416 0.4200 +171425 388633 0.4200 +171482 284119 0.4200 +171483 221037 0.4140 +171483 442444 0.4140 +171483 100129669 0.4150 +171483 100272147 0.4050 +171484 100129520 0.4780 +171546 253782 0.4520 +171546 401647 0.6510 +171558 201191 0.4480 +171558 340205 0.4990 +171558 441478 0.5140 +171568 220002 0.4110 +171568 221424 0.4680 +171568 221830 0.4210 +171568 254394 0.4130 +171568 338692 0.4730 +171568 375790 0.5070 +171568 387332 0.4750 +171586 285148 0.4570 +192111 197259 0.9910 +192134 200958 0.5030 +192134 374378 0.9030 +192134 394263 0.5050 +192134 442117 0.9020 +192134 727897 0.5610 +192134 728819 0.9370 +192286 254863 0.4060 +192286 283459 0.5590 +192286 284021 0.4070 +192286 285598 0.5440 +192286 388753 0.5720 +192286 100188893 0.7800 +192286 101928527 0.6110 +192286 110091775 0.5430 +192666 337959 0.4070 +192666 342574 0.4620 +192666 353288 0.4290 +192666 390792 0.4310 +192668 283871 0.4930 +192668 374654 0.5460 +192669 192670 0.9660 +192669 201164 0.7140 +192669 202658 0.4140 +192669 221400 0.4240 +192669 246175 0.4350 +192669 255252 0.4550 +192669 255626 0.5240 +192669 283989 0.5400 +192669 284131 0.5450 +192669 285989 0.4370 +192669 375035 0.4280 +192669 387332 0.6740 +192669 440093 0.6030 +192669 440686 0.6030 +192669 474382 0.4990 +192669 641372 0.4020 +192669 653604 0.7930 +192670 202658 0.4140 +192670 255626 0.5350 +192670 283989 0.5400 +192670 284131 0.5450 +192670 387332 0.4370 +192670 440093 0.4240 +192670 440686 0.4250 +192670 474382 0.4990 +192670 653604 0.7000 +195814 339761 0.9180 +195814 340665 0.4260 +195827 195828 0.5760 +195827 343066 0.4870 +195827 344752 0.4530 +195828 219621 0.4220 +195828 256380 0.4030 +195828 284992 0.5120 +195828 347240 0.4490 +195828 374393 0.4570 +195977 196740 0.4180 +195977 414189 0.5090 +195977 474354 0.4390 +195977 642517 0.5430 +195977 643161 0.5940 +195977 644054 0.5420 +195977 653308 0.4160 +195977 102724488 0.5140 +196051 245972 0.5860 +196051 253558 0.9210 +196051 346606 0.9260 +196051 403313 0.5120 +196074 219927 0.4790 +196074 285367 0.4800 +196074 387338 0.6890 +196074 399818 0.4460 +196074 100130890 0.4290 +196074 100131187 0.4290 +196074 100287404 0.5060 +196120 221895 0.5130 +196120 390031 0.5430 +196120 390033 0.5430 +196120 441584 0.5430 +196120 642843 0.7680 +196294 254042 0.4730 +196294 341019 0.9070 +196294 493860 0.4180 +196374 284366 0.4100 +196374 284739 0.4040 +196374 286887 0.4980 +196374 319101 0.4380 +196374 338785 0.4610 +196374 374454 0.4840 +196374 374897 0.5140 +196374 388533 0.4150 +196374 448834 0.7910 +196383 254102 0.5030 +196383 282808 0.4390 +196383 339122 0.4570 +196383 401258 0.4750 +196385 199223 0.4700 +196385 200162 0.6600 +196385 200403 0.6370 +196385 201625 0.6480 +196385 257236 0.4290 +196385 345895 0.4080 +196385 375298 0.5960 +196385 101059953 0.4150 +196394 254170 0.5100 +196394 391714 0.6340 +196410 399818 0.5990 +196410 728464 0.4130 +196441 253943 0.6070 +196463 221613 0.4090 +196472 220929 0.4800 +196477 245940 0.4380 +196477 254956 0.6190 +196477 283385 0.4210 +196477 339669 0.6580 +196477 343563 0.5090 +196477 728137 0.4370 +196477 100289087 0.4510 +196477 100507003 0.4080 +196483 196541 0.6410 +196483 221143 0.6420 +196483 254013 0.6680 +196483 342850 0.5630 +196483 399818 0.8060 +196500 339390 0.5780 +196500 389072 0.4330 +196513 197135 0.4690 +196513 219988 0.8290 +196513 254173 0.4500 +196513 254552 0.4830 +196513 256281 0.4780 +196513 283927 0.4780 +196513 348180 0.4090 +196513 374887 0.5930 +196513 390916 0.4830 +196513 440672 0.4780 +196513 550643 0.4100 +196513 100526693 0.4500 +196513 101929469 0.4330 +196527 286410 0.6430 +196527 389158 0.4820 +196527 389668 0.4600 +196528 255877 0.4910 +196528 554313 0.8000 +196528 653604 0.5350 +196528 728378 0.6020 +196541 219417 0.5910 +196541 221143 0.5260 +196541 254013 0.6480 +196541 339175 0.4690 +196541 399818 0.7790 +196541 728464 0.4860 +196541 751071 0.4250 +196541 100528020 0.5160 +196740 414189 0.4300 +196743 219743 0.6610 +196743 100527963 0.4970 +196792 221786 0.5060 +196792 645121 0.4330 +196792 100129278 0.4390 +196883 221264 0.7150 +196883 221395 0.4520 +196883 283298 0.4440 +196883 346562 0.5760 +196883 377841 0.6670 +196883 474344 0.4860 +196883 654364 0.6630 +196951 254778 0.6150 +196996 285141 0.4740 +197131 256380 0.4660 +197131 285527 0.4450 +197131 375056 0.4710 +197135 201626 0.4470 +197135 246175 0.6010 +197135 253314 0.4590 +197135 284325 0.7830 +197135 326340 0.4280 +197135 347688 0.7200 +197135 347744 0.5230 +197135 353238 0.5000 +197135 441161 0.4310 +197135 494551 0.7150 +197257 387712 0.4110 +197257 414328 0.4320 +197257 100287932 0.5890 +197258 283677 0.7280 +197258 729020 0.5200 +197259 284110 0.6030 +197259 100526767 0.9450 +197320 100527978 0.5720 +197322 219927 0.4720 +197322 326625 0.6290 +197322 341392 0.4870 +197322 348158 0.4910 +197322 389434 0.5000 +197322 109703458 0.4980 +197335 203068 0.6270 +197335 219670 0.7980 +197335 219681 0.5670 +197335 222545 0.5770 +197335 257177 0.4260 +197335 260334 0.6260 +197335 282809 0.7470 +197335 347688 0.6260 +197335 347733 0.6260 +197335 374786 0.4380 +197335 386672 0.4450 +197335 388701 0.4220 +197335 440435 0.5770 +197335 642636 0.5530 +197335 654231 0.4280 +197335 729440 0.4260 +197335 100128569 0.8080 +197335 100131755 0.4360 +197335 100507290 0.4040 +197342 199990 0.5650 +197342 201254 0.5970 +197342 348654 0.6780 +197342 353497 0.6750 +197342 378708 0.5580 +197342 548593 0.6790 +197342 100131980 0.4010 +197358 283897 0.4570 +197358 286430 0.4330 +197358 340061 0.5950 +197358 374403 0.4010 +197370 266740 0.5510 +197370 286053 0.9990 +197370 286514 0.5940 +197370 347541 0.5000 +197370 375484 0.6130 +197370 387082 0.9150 +197370 493861 0.9980 +197370 728239 0.4330 +198437 645426 0.8800 +198437 645432 0.6110 +198437 100526794 0.5070 +199221 339145 0.4980 +199223 255101 0.4790 +199223 286464 0.5070 +199223 374407 0.5770 +199223 375337 0.4570 +199223 401024 0.7010 +199675 222487 0.4490 +199675 338339 0.6350 +199675 353514 0.4030 +199675 100131801 0.4440 +199692 259296 0.5780 +199692 441933 0.6200 +199699 253782 0.5500 +199699 401036 0.4630 +199699 401387 0.4620 +199704 257160 0.4800 +199713 204801 0.4180 +199713 260434 0.7810 +199713 284110 0.5430 +199713 286430 0.4800 +199713 346171 0.5240 +199713 353238 0.5870 +199713 441161 0.6350 +199713 494513 0.5650 +199731 253012 0.4630 +199731 253559 0.5000 +199731 342035 0.4180 +199745 257415 0.4480 +199745 441459 0.5700 +199746 100101267 0.4150 +199746 101669762 0.5970 +199777 653073 0.4070 +199786 256329 0.4490 +199786 257019 0.5960 +199786 388512 0.5410 +199786 414157 0.4330 +199834 219447 0.4710 +199834 254910 0.9890 +199834 353131 0.9640 +199834 353132 0.7940 +199834 353133 0.7970 +199834 353134 0.7560 +199834 353135 0.7570 +199834 353137 0.7790 +199834 353139 0.8440 +199834 353140 0.8970 +199834 353141 0.8720 +199834 353142 0.7320 +199834 353143 0.6460 +199834 353144 0.7150 +199834 353145 0.6480 +199834 448834 0.4880 +199834 448835 0.8590 +199834 653240 0.5420 +199834 100129271 0.8510 +199857 201595 0.4540 +199857 285489 0.6650 +199857 375790 0.4180 +199857 440138 0.7720 +199870 284451 0.4750 +199870 101059938 0.6550 +199920 400793 0.4550 +199953 221496 0.4550 +199953 256979 0.4980 +199964 643236 0.4130 +199974 202151 0.4110 +199974 260293 0.7880 +199974 340665 0.4060 +199990 201254 0.9860 +199990 353497 0.5670 +199990 378708 0.9850 +199990 548593 0.7040 +200008 253769 0.5070 +200008 285346 0.6970 +200008 344167 0.4280 +200008 374393 0.4500 +200008 374977 0.5400 +200008 391365 0.4200 +200008 441869 0.4750 +200008 493860 0.5610 +200010 201232 0.4480 +200010 283130 0.4530 +200010 284361 0.4330 +200010 388630 0.4710 +200014 219931 0.4510 +200014 221496 0.6800 +200014 260334 0.5320 +200014 347688 0.5360 +200014 347733 0.5330 +200014 646424 0.4060 +200030 200035 0.4470 +200030 284615 0.4200 +200030 442590 0.4500 +200030 645142 0.4910 +200030 653519 0.5170 +200030 728945 0.4930 +200030 730262 0.4180 +200030 100996763 0.5710 +200035 254552 0.4510 +200035 256281 0.7170 +200035 283927 0.5100 +200035 284615 0.5200 +200035 338661 0.5970 +200035 339451 0.4510 +200035 390916 0.7400 +200081 400120 0.4160 +200081 405754 0.4460 +200132 255758 0.6310 +200132 343521 0.7180 +200132 389161 0.5030 +200132 391475 0.4140 +200132 440955 0.5070 +200132 100287718 0.4220 +200150 201164 0.7110 +200150 387129 0.4070 +200159 257044 0.4560 +200162 200373 0.8070 +200162 201625 0.4360 +200162 283385 0.4130 +200162 286464 0.5140 +200162 339829 0.4260 +200162 340706 0.4610 +200162 348807 0.4230 +200162 374618 0.5070 +200162 389320 0.4400 +200162 402569 0.4660 +200172 317719 0.4390 +200172 360203 0.6330 +200172 387718 0.6820 +200172 401546 0.4740 +200172 441476 0.6960 +200172 643311 0.4710 +200172 645027 0.5710 +200172 100287482 0.6440 +200172 100293516 0.5310 +200185 201595 0.9560 +200185 100128731 0.9550 +200205 200895 0.8410 +200205 220064 0.4050 +200205 387787 0.6460 +200205 388962 0.8750 +200205 441024 0.8400 +200205 552900 0.4310 +200205 644096 0.4440 +200205 654483 0.4300 +200232 257169 0.6670 +200232 283461 0.6260 +200232 339669 0.4790 +200232 374395 0.5070 +200232 388799 0.4690 +200232 390212 0.4060 +200232 399693 0.5260 +200232 653567 0.4460 +200312 283471 0.6660 +200312 286676 0.4760 +200312 550631 0.5470 +200312 574414 0.5440 +200315 200316 0.5000 +200315 283459 0.6610 +200315 388753 0.5880 +200315 403314 0.8950 +200315 440567 0.6870 +200315 100532726 0.4600 +200316 283459 0.6610 +200316 388753 0.5940 +200316 403314 0.8140 +200316 440567 0.6870 +200316 619189 0.4550 +200316 100532726 0.4600 +200350 221504 0.5140 +200350 348093 0.4950 +200373 221421 0.4290 +200373 221458 0.4700 +200373 222967 0.4740 +200373 246176 0.5200 +200373 283726 0.4020 +200373 286464 0.5180 +200373 341019 0.4670 +200373 345895 0.4680 +200373 388389 0.4460 +200403 286464 0.6300 +200403 375298 0.5940 +200403 401551 0.4420 +200407 285051 0.4760 +200407 285672 0.5180 +200424 221656 0.4430 +200424 253461 0.4180 +200424 346171 0.4520 +200424 359787 0.6220 +200424 440093 0.4790 +200424 440686 0.4840 +200424 653604 0.4840 +200504 283951 0.5080 +200504 643834 0.4140 +200523 203074 0.5710 +200523 221191 0.5090 +200523 284067 0.4940 +200523 285126 0.4070 +200523 286234 0.4900 +200523 337967 0.5910 +200523 339779 0.4640 +200523 344167 0.5150 +200523 387718 0.6310 +200523 493860 0.4150 +200523 100129520 0.4620 +200523 100190949 0.5070 +200523 100506049 0.4470 +200539 202333 0.4740 +200539 254773 0.4150 +200539 284611 0.4580 +200558 252969 0.4120 +200558 255626 0.7280 +200558 286257 0.7210 +200558 440686 0.4560 +200576 205428 0.5940 +200576 206358 0.6110 +200576 219931 0.6710 +200576 253260 0.5360 +200576 255231 0.4120 +200576 100287932 0.5840 +200576 100526767 0.4460 +200634 203328 0.4240 +200634 222826 0.4350 +200634 388559 0.5270 +200634 390261 0.4160 +200728 200894 0.4460 +200728 219854 0.7310 +200728 254173 0.4470 +200728 261734 0.7750 +200728 283232 0.4450 +200728 374355 0.4160 +200728 399947 0.4610 +200734 399473 0.4950 +200844 219670 0.4860 +200844 252884 0.5070 +200844 389177 0.4470 +200845 200933 0.4200 +200845 222658 0.4770 +200845 254910 0.4750 +200845 390594 0.5370 +200879 284161 0.4570 +200894 201627 0.4010 +200894 255520 0.4120 +200894 261734 0.7300 +200894 284086 0.5030 +200894 347240 0.4630 +200894 374654 0.6250 +200895 390243 0.4450 +200895 441024 0.5980 +200909 254263 0.6120 +200909 285242 0.8900 +200909 375567 0.5400 +200909 388336 0.5400 +200909 402117 0.5450 +200909 440829 0.5400 +200909 729956 0.5400 +200909 729993 0.6100 +200916 201595 0.5880 +200916 221078 0.5720 +200916 254268 0.8990 +200916 283518 0.4750 +200916 285855 0.9300 +200916 343068 0.5790 +200916 343070 0.5790 +200916 347487 0.8910 +200916 387129 0.8000 +200916 390999 0.5790 +200916 391002 0.5790 +200916 400673 0.6170 +200916 400735 0.5790 +200916 400736 0.5790 +200916 440560 0.5790 +200916 440561 0.5790 +200916 441873 0.5790 +200916 641776 0.6390 +200916 643909 0.6390 +200916 645051 0.6630 +200916 645073 0.6630 +200916 645359 0.5790 +200916 653619 0.5790 +200916 728524 0.6390 +200916 729396 0.6630 +200916 729422 0.6630 +200916 729428 0.6630 +200916 729431 0.6630 +200916 729442 0.6630 +200916 729447 0.6630 +200916 729528 0.5790 +200916 100008586 0.6630 +200916 100128731 0.4490 +200916 100132399 0.6630 +200916 100287482 0.7110 +200916 100505478 0.7430 +200916 100526842 0.8480 +200916 100529097 0.8150 +200916 100529239 0.9050 +200916 100996746 0.6390 +200916 101929983 0.5790 +200916 102724473 0.6630 +200916 105180390 0.6390 +200916 105180391 0.6390 +200931 205564 0.4150 +200931 255798 0.5250 +200931 390079 0.4510 +200931 648791 0.4160 +200933 205564 0.5270 +200933 222235 0.4030 +200933 255758 0.4670 +200933 255798 0.5580 +200933 348793 0.7430 +200933 375387 0.4250 +200933 554251 0.4030 +200942 220359 0.5020 +200942 284439 0.4430 +200942 286499 0.5360 +200942 375567 0.4020 +200942 100130988 0.5160 +200958 256435 0.4060 +200958 374378 0.4010 +200958 374907 0.4120 +200958 375790 0.5250 +200958 394263 0.8960 +200958 442117 0.4460 +200958 727897 0.9170 +200958 100507679 0.6960 +201140 348262 0.6060 +201140 387804 0.4190 +201158 284040 0.7420 +201158 390595 0.4790 +201158 101927581 0.5200 +201161 259197 0.4790 +201163 203228 0.4980 +201163 245972 0.5450 +201163 245973 0.5440 +201163 389541 0.9400 +201163 390110 0.7460 +201163 652968 0.5480 +201164 202052 0.4190 +201164 221400 0.5110 +201164 374986 0.5990 +201164 440822 0.6200 +201191 344658 0.5270 +201191 389432 0.4720 +201229 254863 0.4110 +201229 339229 0.4850 +201229 644096 0.5960 +201229 729515 0.4570 +201229 101928527 0.4420 +201232 283130 0.4550 +201243 284067 0.5800 +201243 374768 0.4140 +201243 388381 0.5840 +201243 100505724 0.4180 +201243 101060351 0.4180 +201243 107983988 0.6840 +201254 353497 0.5270 +201254 378708 0.9990 +201254 387103 0.9990 +201254 401541 0.9900 +201254 440093 0.5360 +201254 440686 0.5370 +201254 548593 0.6960 +201254 554313 0.8040 +201254 653604 0.5360 +201254 100526739 0.6180 +201255 203111 0.5550 +201255 221692 0.4060 +201255 728763 0.5450 +201266 221074 0.7810 +201266 283375 0.7720 +201292 442862 0.4330 +201292 100527963 0.4750 +201294 415117 0.8700 +201299 202333 0.4160 +201299 219874 0.4010 +201299 284001 0.4920 +201299 341640 0.4120 +201299 390199 0.4550 +201299 392392 0.4390 +201299 400720 0.4140 +201305 260429 0.4010 +201305 388931 0.5400 +201305 389730 0.4570 +201456 284323 0.4580 +201456 340168 0.4870 +201456 359787 0.5070 +201456 440574 0.4120 +201501 340895 0.4600 +201514 203062 0.4540 +201514 221035 0.4380 +201514 646862 0.6580 +201516 284428 0.5270 +201516 340096 0.4550 +201516 342900 0.6820 +201516 343070 0.4270 +201516 359787 0.4750 +201516 390999 0.4810 +201516 391769 0.4390 +201516 401447 0.4300 +201516 441873 0.5450 +201516 442247 0.4920 +201516 503835 0.6120 +201516 642623 0.6430 +201516 653619 0.4920 +201516 653657 0.5030 +201516 100033411 0.4660 +201516 100129128 0.5810 +201516 100288687 0.7740 +201562 253017 0.7250 +201562 401494 0.9240 +201595 254268 0.6010 +201595 285855 0.6290 +201595 347487 0.4080 +201595 374569 0.4940 +201595 387129 0.5600 +201595 440138 0.5120 +201595 100128731 0.9990 +201595 100505478 0.5350 +201595 100526842 0.5990 +201595 100529097 0.5070 +201625 219670 0.4610 +201625 219681 0.5460 +201625 286207 0.4340 +201625 339829 0.4570 +201625 345895 0.4730 +201625 352909 0.4150 +201625 388389 0.5480 +201626 219988 0.4580 +201626 387338 0.4670 +201627 404636 0.9360 +201633 257101 0.4420 +201633 259197 0.6420 +201633 284194 0.9500 +201633 284266 0.5950 +201633 339390 0.6090 +201633 405754 0.4610 +201633 654346 0.9510 +201725 221078 0.4180 +201725 647286 0.6310 +201725 727857 0.5870 +201780 204962 0.4010 +201780 347051 0.4210 +201798 201895 0.5580 +201798 203245 0.4950 +201798 402682 0.4100 +201799 388564 0.4130 +201799 646262 0.4800 +201931 283377 0.8200 +201931 285521 0.5090 +201931 359710 0.4900 +201931 654790 0.5160 +201965 340390 0.4750 +201965 342850 0.4530 +201965 441054 0.4470 +201973 246243 0.4300 +201973 257218 0.4380 +201973 283375 0.4310 +201973 353497 0.4850 +202018 254251 0.4360 +202018 387733 0.4070 +202018 441457 0.4020 +202051 202052 0.6720 +202051 286234 0.4470 +202051 374955 0.5030 +202051 389333 0.5610 +202051 619208 0.5540 +202051 641700 0.4830 +202051 100507055 0.5810 +202051 111064649 0.6640 +202052 259217 0.5420 +202052 339416 0.4200 +202052 388633 0.4200 +202052 641700 0.5240 +202052 111064649 0.6230 +202151 387758 0.4240 +202151 440097 0.4180 +202243 257236 0.6160 +202243 339512 0.4300 +202243 389766 0.5140 +202243 727910 0.4310 +202243 728591 0.4530 +202333 219874 0.4070 +202333 284001 0.4660 +202333 341640 0.4290 +202333 345778 0.4320 +202333 390199 0.4390 +202333 392392 0.4280 +202333 400720 0.4170 +202333 442721 0.4200 +202374 286183 0.4140 +202374 342667 0.4870 +202374 344758 0.4740 +202374 348487 0.4320 +202374 643669 0.4330 +202500 219681 0.4310 +202500 221409 0.6150 +202500 221421 0.5970 +202500 222235 0.6700 +202500 339829 0.4760 +202500 345895 0.5000 +202500 387885 0.4130 +202500 440585 0.4520 +202500 100129278 0.4120 +202559 221662 0.4520 +202559 390748 0.4420 +202865 285971 0.4480 +202865 346689 0.4350 +202865 349136 0.4770 +202865 392843 0.5700 +202865 643641 0.4350 +202865 100289678 0.4790 +202865 100527949 0.5140 +202915 390083 0.4450 +202915 440738 0.4090 +202915 643246 0.4090 +202915 100170765 0.4440 +203054 256364 0.4230 +203054 286075 0.4100 +203054 340390 0.4580 +203054 441381 0.4880 +203054 727957 0.6140 +203054 100130827 0.4380 +203062 339302 0.5400 +203062 415117 0.6160 +203062 594855 0.5400 +203068 222484 0.4590 +203068 338382 0.6500 +203068 342538 0.8170 +203068 347688 0.4190 +203068 375033 0.4360 +203068 728378 0.7800 +203068 728642 0.5470 +203074 203076 0.4030 +203074 204474 0.5530 +203074 283629 0.5620 +203074 338879 0.5290 +203074 111216276 0.4720 +203076 286046 0.4160 +203076 340562 0.4790 +203076 400757 0.4350 +203076 644524 0.5490 +203076 729967 0.6030 +203100 203102 0.4170 +203100 387715 0.4310 +203102 100128569 0.4640 +203102 100129669 0.4270 +203111 255252 0.4550 +203111 284451 0.4060 +203190 642778 0.4330 +203197 341880 0.6140 +203228 220988 0.7490 +203228 376267 0.4200 +203228 389541 0.7200 +203228 400668 0.4360 +203228 400916 0.7200 +203238 283284 0.4260 +203238 339512 0.4060 +203238 728591 0.4190 +203245 220359 0.5050 +203245 222389 0.4030 +203245 267002 0.4560 +203245 283254 0.9220 +203259 259308 0.5280 +203259 375704 0.5760 +203259 401498 0.4180 +203260 338657 0.4900 +203286 221322 0.4800 +203286 261734 0.6180 +203286 284086 0.9930 +203328 339977 0.5260 +203413 399693 0.4300 +203413 541466 0.4180 +203413 646603 0.4320 +203427 401612 0.6770 +203427 100526842 0.4070 +203430 441518 0.5410 +203447 337878 0.5290 +203447 401024 0.4300 +203522 286464 0.4130 +203522 347365 0.5010 +203522 403282 0.6210 +203522 441519 0.5900 +203522 441521 0.6010 +203522 541465 0.6010 +203522 541466 0.6050 +203522 728911 0.5890 +203522 101060211 0.5400 +203522 102723631 0.5860 +203522 102723680 0.5400 +203522 102723737 0.5890 +203547 245972 0.9590 +203569 728712 0.4360 +203859 221938 0.8560 +204219 253782 0.9270 +204219 259230 0.9750 +204219 285848 0.8100 +204219 339221 0.9210 +204219 340485 0.9580 +204219 348938 0.7490 +204219 643418 0.6570 +204474 256764 0.4340 +204474 283518 0.4500 +204474 338879 0.6270 +204474 340260 0.4280 +204474 111216276 0.4160 +204801 260434 0.4020 +204962 245910 0.4710 +204962 375612 0.4380 +204962 646498 0.5070 +205251 284739 0.5730 +205251 550643 0.5830 +205251 100507027 0.5070 +205251 100507537 0.5440 +205327 340533 0.4080 +205327 348751 0.5070 +205327 414919 0.4710 +205327 100526740 0.4180 +205428 266743 0.8170 +205428 285195 0.8610 +205428 388650 0.5710 +205428 727837 0.4080 +205564 286053 0.5380 +205564 348793 0.6690 +205564 387082 0.7330 +205717 253582 0.4470 +205717 257397 0.6060 +205717 284992 0.4550 +205860 282991 0.4260 +206358 340024 0.4950 +206412 280664 0.5180 +206412 375519 0.4180 +206412 100132386 0.4790 +207063 338382 0.4350 +207063 100506049 0.4440 +219285 253012 0.6960 +219285 375748 0.5190 +219287 375759 0.4210 +219293 390637 0.4610 +219293 440295 0.4470 +219293 100130742 0.5400 +219333 221302 0.9380 +219333 338917 0.6160 +219348 282973 0.4200 +219348 503582 0.4600 +219348 503834 0.4190 +219348 503835 0.4480 +219348 100033411 0.6080 +219348 100288687 0.4400 +219402 219927 0.5470 +219402 253559 0.4720 +219402 257194 0.4460 +219402 390598 0.4240 +219402 100526835 0.5960 +219409 221833 0.4960 +219409 256297 0.4720 +219409 431707 0.5320 +219409 100131390 0.4190 +219417 259289 0.5070 +219417 259293 0.4490 +219417 259294 0.4470 +219417 386674 0.4780 +219417 100131827 0.4740 +219428 259292 0.4080 +219428 390142 0.4100 +219428 642612 0.5420 +219431 257194 0.4250 +219431 100996758 0.4500 +219436 219493 0.4720 +219436 284521 0.5180 +219436 391196 0.5240 +219436 401427 0.5270 +219437 374899 0.4470 +219437 728299 0.5410 +219438 219477 0.5480 +219438 219493 0.6260 +219438 219858 0.5320 +219438 219957 0.5580 +219438 219968 0.5100 +219438 282775 0.5650 +219438 284521 0.5130 +219438 344892 0.6050 +219438 390059 0.5030 +219438 390082 0.5220 +219438 390155 0.5670 +219438 390157 0.5430 +219438 390275 0.5250 +219438 390892 0.5650 +219438 391196 0.5240 +219438 401427 0.5310 +219438 442184 0.5440 +219469 255426 0.4740 +219469 338398 0.5060 +219473 283238 0.4030 +219473 284521 0.5220 +219473 391196 0.5360 +219473 401427 0.5130 +219473 440295 0.5220 +219473 100287178 0.5300 +219473 100287364 0.5930 +219477 219493 0.5410 +219477 219858 0.5240 +219477 219957 0.5410 +219477 219968 0.5070 +219477 282775 0.5400 +219477 284521 0.4990 +219477 344892 0.5350 +219477 353137 0.5800 +219477 390059 0.4990 +219477 390082 0.5130 +219477 390155 0.5710 +219477 390157 0.5380 +219477 390275 0.5140 +219477 390892 0.5360 +219477 391196 0.5090 +219477 401427 0.5210 +219477 442184 0.5270 +219477 100271715 0.5210 +219482 388701 0.5760 +219482 414157 0.6040 +219482 728492 0.4250 +219484 222223 0.5750 +219487 101060321 0.4470 +219493 219858 0.5210 +219493 219957 0.5560 +219493 219968 0.5060 +219493 282775 0.5360 +219493 283238 0.6520 +219493 284521 0.5200 +219493 344892 0.5380 +219493 390059 0.5090 +219493 390082 0.5170 +219493 390144 0.4800 +219493 390155 0.5550 +219493 390157 0.5620 +219493 390275 0.5200 +219493 390892 0.5460 +219493 391196 0.5140 +219493 401427 0.5100 +219493 442184 0.5310 +219527 389816 0.4080 +219527 399697 0.4130 +219537 254102 0.5660 +219537 342527 0.6150 +219537 442721 0.4410 +219537 727800 0.5190 +219539 222642 0.4230 +219557 219578 0.6780 +219557 261729 0.4750 +219557 284273 0.4180 +219578 222223 0.5080 +219578 643382 0.4760 +219621 255119 0.4710 +219621 257236 0.4900 +219621 392307 0.4770 +219621 441054 0.5020 +219623 252995 0.5730 +219623 376497 0.5870 +219623 431707 0.6290 +219623 101929726 0.4410 +219654 221938 0.4100 +219654 344558 0.4770 +219670 219681 0.5710 +219670 220136 0.8420 +219670 221421 0.5000 +219670 255119 0.4610 +219670 257177 0.8430 +219670 339778 0.8120 +219670 388701 0.8000 +219670 389799 0.8100 +219670 440585 0.8140 +219670 642636 0.4990 +219670 730112 0.8060 +219681 220213 0.4310 +219681 254956 0.5020 +219681 255119 0.5090 +219681 256815 0.5480 +219681 257177 0.7490 +219681 257236 0.5860 +219681 286207 0.5670 +219681 339168 0.6650 +219681 345895 0.5050 +219681 348807 0.4200 +219681 388701 0.4290 +219681 389761 0.4410 +219681 399949 0.5740 +219681 401551 0.5410 +219681 440585 0.4640 +219681 441054 0.6030 +219681 100128569 0.4480 +219736 344752 0.4910 +219738 317662 0.4480 +219738 374655 0.4160 +219738 389158 0.4760 +219738 100130742 0.5270 +219743 255919 0.4810 +219743 283927 0.6110 +219743 284273 0.5820 +219743 373156 0.6270 +219743 390916 0.7210 +219749 255426 0.4130 +219770 255022 0.4750 +219770 349149 0.4200 +219770 375519 0.4330 +219770 100126572 0.5820 +219844 374654 0.5750 +219854 261734 0.4440 +219854 283232 0.4630 +219854 388633 0.4460 +219854 390205 0.4380 +219858 219957 0.5250 +219858 219968 0.5080 +219858 282775 0.5340 +219858 283159 0.6360 +219858 283160 0.7820 +219858 283162 0.7830 +219858 284521 0.5100 +219858 344892 0.5020 +219858 390059 0.4990 +219858 390082 0.5150 +219858 390155 0.5290 +219858 390157 0.5240 +219858 390271 0.5560 +219858 390275 0.5630 +219858 390892 0.5150 +219858 391196 0.5090 +219858 401427 0.5090 +219858 439915 0.4320 +219858 440050 0.5070 +219858 440051 0.4370 +219858 442184 0.5100 +219858 728299 0.6090 +219869 219870 0.4530 +219869 259296 0.4800 +219869 317701 0.4750 +219869 317703 0.5170 +219869 390265 0.5440 +219870 390264 0.6500 +219870 390265 0.7860 +219874 256957 0.5420 +219874 260436 0.4180 +219874 284001 0.4610 +219874 284099 0.5400 +219874 340277 0.5800 +219875 338662 0.5590 +219899 261726 0.5730 +219899 284697 0.4090 +219902 254173 0.4480 +219902 284067 0.4750 +219902 391189 0.5050 +219902 100190949 0.5070 +219927 254272 0.4160 +219927 254552 0.4150 +219927 255308 0.5380 +219927 284106 0.5940 +219927 284418 0.4310 +219927 285190 0.4310 +219927 285367 0.6860 +219927 285755 0.4310 +219927 285855 0.9490 +219927 343068 0.6900 +219927 343070 0.6900 +219927 345051 0.6340 +219927 347487 0.9040 +219927 353149 0.4160 +219927 373509 0.4160 +219927 374291 0.4930 +219927 374659 0.9460 +219927 376497 0.4690 +219927 387129 0.9370 +219927 387338 0.8410 +219927 390999 0.6900 +219927 391002 0.6900 +219927 400735 0.6900 +219927 400736 0.6900 +219927 440560 0.6900 +219927 440561 0.6900 +219927 441873 0.6900 +219927 641776 0.8290 +219927 643909 0.8290 +219927 644591 0.4310 +219927 645142 0.4310 +219927 645359 0.6900 +219927 653505 0.4320 +219927 653598 0.4310 +219927 653619 0.6900 +219927 654364 0.5740 +219927 727851 0.4310 +219927 728524 0.8290 +219927 728945 0.4310 +219927 729528 0.6900 +219927 729857 0.4310 +219927 730262 0.4310 +219927 100130890 0.7920 +219927 100131187 0.7970 +219927 100287482 0.9040 +219927 100505478 0.9370 +219927 100526842 0.9680 +219927 100996746 0.8290 +219927 101929983 0.6900 +219927 105180390 0.8290 +219927 105180391 0.8290 +219927 105371242 0.4310 +219927 114483834 0.7950 +219927 127898561 0.8400 +219931 220064 0.4880 +219931 255231 0.6590 +219931 283652 0.9030 +219938 220082 0.5010 +219938 221400 0.4690 +219938 256309 0.4480 +219938 374768 0.5070 +219938 375686 0.4590 +219938 389320 0.5000 +219938 399693 0.4110 +219954 414918 0.4480 +219956 100287404 0.4350 +219957 219968 0.5230 +219957 282775 0.5350 +219957 284521 0.4990 +219957 344892 0.5190 +219957 390059 0.5010 +219957 390082 0.5340 +219957 390155 0.5500 +219957 390157 0.5370 +219957 390275 0.5180 +219957 390892 0.5640 +219957 391196 0.5130 +219957 401427 0.5200 +219957 442184 0.5360 +219968 282775 0.5160 +219968 284521 0.5140 +219968 344892 0.5170 +219968 390059 0.4990 +219968 390082 0.4990 +219968 390155 0.5070 +219968 390157 0.5090 +219968 390275 0.5090 +219968 390892 0.5130 +219968 391196 0.5100 +219968 401427 0.5190 +219968 442184 0.5070 +219970 345079 0.4030 +219970 644672 0.4210 +219970 645121 0.4030 +219970 728642 0.4210 +219972 653361 0.4210 +219981 259290 0.4460 +219981 100132015 0.4820 +219983 390197 0.4800 +219983 646862 0.5830 +219983 729085 0.4740 +219988 246175 0.6440 +219988 284325 0.7850 +219988 347744 0.5160 +219988 404734 0.4380 +219988 550643 0.4240 +219990 255649 0.7080 +219990 317662 0.4090 +219990 344018 0.4760 +219990 728588 0.6640 +219990 107987155 0.6220 +219990 112577461 0.7690 +219995 245802 0.5390 +220001 375567 0.6010 +220002 391059 0.4780 +220004 728568 0.4180 +220032 282679 0.4410 +220032 653140 0.4180 +220042 100271849 0.4480 +220047 256309 0.4360 +220047 317719 0.4700 +220064 221336 0.6100 +220064 441933 0.4630 +220074 222183 0.5240 +220074 255239 0.6330 +220074 256536 0.5670 +220074 257202 0.5440 +220074 284325 0.4910 +220074 493869 0.5430 +220074 574537 0.8170 +220074 100534599 0.5970 +220074 100996928 0.5270 +220074 101669762 0.6490 +220074 120356740 0.5620 +220081 283659 0.4430 +220082 283238 0.5530 +220082 286234 0.4770 +220082 287015 0.4460 +220082 339976 0.4080 +220082 374768 0.5880 +220082 375686 0.5550 +220082 386618 0.6050 +220082 387775 0.4170 +220082 389320 0.5100 +220082 390883 0.6010 +220082 399814 0.5190 +220082 646019 0.7080 +220082 100132963 0.5280 +220082 100505993 0.5580 +220107 220108 0.4110 +220107 283212 0.4700 +220107 283518 0.4840 +220107 341276 0.5020 +220108 550631 0.4610 +220108 647174 0.4990 +220134 221150 0.9990 +220134 256356 0.4090 +220134 259266 0.6490 +220134 259282 0.5440 +220134 266812 0.4470 +220134 284257 0.5440 +220134 286148 0.4460 +220134 348235 0.9990 +220134 378708 0.6430 +220134 387103 0.5580 +220136 257062 0.4280 +220136 257177 0.8390 +220136 339778 0.8160 +220136 345895 0.4790 +220136 388633 0.4380 +220136 388701 0.8210 +220136 389799 0.8000 +220136 440585 0.8010 +220136 440829 0.4410 +220136 440956 0.4490 +220136 441054 0.4070 +220136 730112 0.8340 +220136 100128569 0.5520 +220164 285489 0.4590 +220202 338917 0.8200 +220202 343472 0.5210 +220202 388585 0.4030 +220213 221302 0.9270 +220213 257397 0.4590 +220213 377630 0.4950 +220213 389856 0.4380 +220213 728373 0.4110 +220296 253559 0.4690 +220323 221496 0.4310 +220359 254102 0.6090 +220359 283130 0.6180 +220359 375607 0.4200 +220359 390075 0.4740 +220382 280664 0.4710 +220388 386677 0.5070 +220388 441581 0.5070 +220388 728132 0.4350 +220388 728395 0.4760 +220388 101927581 0.5430 +220416 283659 0.4250 +220416 374470 0.5680 +220416 389816 0.4540 +220416 441519 0.5060 +220416 442444 0.5640 +220416 474354 0.4700 +220416 100526773 0.6530 +220441 344838 0.4410 +220441 652968 0.4640 +220441 729438 0.4150 +220441 122513141 0.5060 +220929 222698 0.4100 +220929 254187 0.4180 +220929 284323 0.5690 +220929 339327 0.5520 +220963 387601 0.4280 +220965 348487 0.4460 +220965 401827 0.4290 +220992 221002 0.4770 +221035 221037 0.9010 +221037 221656 0.4410 +221037 375033 0.4880 +221037 390245 0.6970 +221037 440093 0.5330 +221037 440686 0.5340 +221037 653604 0.7170 +221037 100129053 0.6240 +221061 644943 0.6340 +221074 221078 0.4050 +221078 221079 0.4100 +221078 221830 0.6920 +221078 254268 0.5250 +221078 285855 0.6770 +221078 345630 0.7400 +221078 387129 0.6600 +221078 387338 0.7080 +221078 692312 0.6900 +221078 100526842 0.5460 +221079 221960 0.4710 +221079 282991 0.4490 +221079 285180 0.5520 +221079 729991 0.6280 +221092 343069 0.6070 +221092 100996928 0.4820 +221092 101060301 0.4640 +221120 253943 0.6150 +221143 221154 0.5520 +221143 253832 0.5840 +221143 254013 0.6220 +221143 340204 0.4140 +221143 399818 0.7860 +221143 751071 0.4060 +221150 259266 0.6730 +221150 259282 0.5530 +221150 284257 0.5530 +221150 285643 0.4750 +221150 348235 0.9990 +221150 387103 0.6950 +221154 253832 0.4600 +221154 286097 0.9870 +221154 100287932 0.4420 +221188 222487 0.4350 +221188 266977 0.4160 +221188 283383 0.4870 +221191 284498 0.4790 +221191 284680 0.5180 +221191 390113 0.4580 +221191 392391 0.6020 +221191 728137 0.4140 +221223 391253 0.4560 +221264 245972 0.4370 +221264 245973 0.4730 +221264 260425 0.4320 +221264 284439 0.4140 +221264 374659 0.9420 +221264 374986 0.4050 +221264 377841 0.6940 +221264 387103 0.4140 +221264 390327 0.4360 +221264 391192 0.4180 +221264 654364 0.9340 +221264 100526794 0.7020 +221264 100526842 0.4470 +221264 102157402 0.8510 +221294 221301 0.5470 +221294 254228 0.4990 +221294 284958 0.4650 +221294 399697 0.4440 +221294 403282 0.4800 +221294 100129792 0.4750 +221301 254240 0.4080 +221301 390174 0.4560 +221301 494188 0.5270 +221301 645191 0.5380 +221302 221937 0.4610 +221302 255626 0.4190 +221302 284111 0.6230 +221302 284390 0.8550 +221302 286436 0.4350 +221302 373509 0.4890 +221302 377630 0.9110 +221302 389856 0.6610 +221302 440689 0.4340 +221302 728373 0.5930 +221302 114483833 0.4360 +221303 266722 0.5430 +221303 339541 0.5640 +221303 339804 0.5060 +221303 442117 0.4910 +221303 643382 0.4890 +221322 317662 0.8860 +221336 222389 0.6490 +221336 400745 0.4110 +221336 441933 0.6100 +221357 257202 0.7320 +221357 493869 0.7210 +221357 494143 0.6540 +221357 653689 0.8110 +221391 284459 0.4570 +221393 389336 0.4570 +221400 284427 0.4080 +221400 440822 0.6810 +221409 257101 0.4100 +221409 338661 0.6180 +221409 441151 0.4790 +221421 222967 0.5720 +221421 254956 0.5070 +221421 257177 0.6810 +221421 285755 0.4310 +221421 339829 0.8340 +221421 345643 0.6260 +221421 345895 0.9990 +221421 352909 0.7570 +221421 374407 0.6120 +221421 388389 0.7850 +221421 401551 0.6340 +221421 613212 0.4240 +221421 728194 0.5110 +221424 283297 0.4630 +221424 338692 0.6650 +221458 259296 0.5830 +221458 285643 0.4900 +221458 342132 0.4400 +221458 374654 0.5970 +221458 400891 0.4570 +221468 253512 0.4050 +221476 221477 0.4720 +221477 391356 0.6270 +221481 374973 0.4230 +221481 400793 0.4270 +221481 414189 0.4120 +221496 260334 0.5450 +221496 347688 0.5470 +221496 347733 0.5450 +221496 100131017 0.4990 +221504 653404 0.4300 +221545 254552 0.4160 +221545 645811 0.4180 +221613 221656 0.4950 +221613 221937 0.4080 +221613 255626 0.9930 +221613 317772 0.4100 +221613 341567 0.4850 +221613 440689 0.6240 +221613 474382 0.4790 +221613 554313 0.9500 +221613 653604 0.5940 +221613 114483833 0.4940 +221656 221937 0.9110 +221656 283248 0.5400 +221656 317772 0.4950 +221656 340390 0.4970 +221656 346171 0.4350 +221656 390245 0.4970 +221656 440093 0.6240 +221656 440686 0.6230 +221656 653604 0.7640 +221662 282996 0.6630 +221662 390748 0.4660 +221662 401236 0.5700 +221687 285533 0.5180 +221692 339302 0.4210 +221692 375056 0.5720 +221711 284417 0.6100 +221711 645369 0.5420 +221749 222194 0.4360 +221749 643965 0.4150 +221749 100131017 0.4270 +221785 221786 0.5220 +221785 284312 0.4410 +221785 342945 0.6420 +221786 285989 0.4560 +221806 246176 0.4290 +221806 283237 0.5930 +221823 729020 0.5720 +221830 222894 0.4310 +221830 284119 0.5320 +221830 285855 0.4050 +221830 345630 0.6200 +221830 404672 0.5260 +221830 653604 0.4520 +221895 255626 0.6210 +221895 340602 0.6210 +221895 388125 0.4450 +221895 390031 0.5130 +221895 390033 0.5130 +221895 392636 0.4410 +221895 441584 0.5130 +221895 643988 0.5130 +221895 728118 0.7040 +221895 729262 0.5500 +221895 100170841 0.4830 +221908 222950 0.4540 +221908 282809 0.4310 +221908 402573 0.5710 +221908 110599588 0.4470 +221914 222537 0.5610 +221914 266722 0.5650 +221914 375790 0.6490 +221927 388324 0.4410 +221927 643311 0.5140 +221935 285659 0.6090 +221937 283373 0.4640 +221937 317772 0.4140 +221938 338596 0.4260 +221955 222236 0.8900 +221960 285636 0.5390 +221960 338382 0.7030 +221960 100310846 0.4050 +221981 388021 0.4670 +221981 100130988 0.4570 +222008 346288 0.4620 +222068 353376 0.4060 +222166 253980 0.6040 +222166 375337 0.4720 +222166 388364 0.4020 +222166 100527978 0.4740 +222171 388559 0.5060 +222183 100534599 0.6710 +222223 259173 0.4070 +222223 284369 0.4050 +222229 387893 0.5170 +222229 653784 0.4240 +222234 222235 0.5430 +222235 283807 0.5070 +222235 285231 0.4750 +222235 375307 0.5290 +222235 554251 0.4330 +222235 100130771 0.4220 +222236 284161 0.5810 +222255 387332 0.4040 +222255 389856 0.6710 +222255 552889 0.5140 +222256 388633 0.5610 +222256 440829 0.4540 +222256 642987 0.4050 +222389 246175 0.4130 +222389 284697 0.4290 +222389 285343 0.4370 +222484 286514 0.5610 +222537 254170 0.4160 +222537 266722 0.6230 +222537 375790 0.5310 +222537 442038 0.4850 +222545 222546 0.4190 +222545 259285 0.5390 +222545 338398 0.5030 +222545 338557 0.4380 +222545 350383 0.4910 +222545 353164 0.5040 +222545 440435 0.4350 +222546 256297 0.7250 +222546 346171 0.4940 +222553 285025 0.5790 +222553 285761 0.5240 +222553 340146 0.5930 +222553 387119 0.6050 +222553 388591 0.4990 +222584 388468 0.4350 +222584 643909 0.4800 +222584 728524 0.4770 +222642 400451 0.4210 +222643 245934 0.4710 +222658 222659 0.4450 +222658 253980 0.5070 +222658 283219 0.5110 +222658 283518 0.4670 +222658 284252 0.5400 +222658 386617 0.5380 +222658 386618 0.4660 +222659 388324 0.4040 +222659 389384 0.4180 +222659 442721 0.4620 +222659 731220 0.4150 +222662 246213 0.5040 +222662 253827 0.5620 +222662 259236 0.9960 +222662 286262 0.5410 +222662 286676 0.4800 +222662 342125 0.4270 +222662 375611 0.4880 +222662 388551 0.4800 +222662 389207 0.5710 +222662 494513 0.6260 +222662 730094 0.5110 +222663 283212 0.4780 +222663 112577516 0.4380 +222696 342945 0.5150 +222696 387032 0.6310 +222696 644596 0.4180 +222696 100101467 0.6320 +222698 339327 0.4120 +222698 360023 0.4050 +222698 387032 0.7220 +222698 391107 0.4340 +222698 101060226 0.4020 +222826 222967 0.5050 +222826 283471 0.5020 +222826 283514 0.4080 +222826 339768 0.4310 +222826 390152 0.5710 +222826 390174 0.5070 +222826 390261 0.5810 +222826 728194 0.5430 +222865 284339 0.4710 +222865 285175 0.4280 +222865 388021 0.4240 +222865 643965 0.4210 +222950 266743 0.4140 +222950 399888 0.4470 +222950 100507055 0.6640 +222967 255101 0.4750 +222967 256006 0.4400 +222967 283726 0.4160 +222967 286464 0.4510 +222967 345895 0.5570 +222967 390152 0.4450 +222967 390261 0.4740 +222967 728194 0.9990 +222967 100310846 0.7130 +223117 642658 0.4820 +225689 286077 0.5310 +225689 727957 0.5990 +245711 283129 0.5210 +245711 283847 0.7330 +245711 100125288 0.4490 +245802 284058 0.4380 +245802 341116 0.9300 +245802 643680 0.9780 +245802 728588 0.5250 +245802 107987155 0.4790 +245812 285888 0.5840 +245908 245909 0.9030 +245908 245910 0.9410 +245908 245911 0.9030 +245908 245913 0.7940 +245908 245927 0.6870 +245908 245928 0.5230 +245908 245929 0.6370 +245908 245930 0.5420 +245908 245932 0.7090 +245908 245934 0.6690 +245908 245936 0.6820 +245908 245937 0.4990 +245908 245938 0.5100 +245908 245939 0.5590 +245908 245940 0.5760 +245908 389151 0.5080 +245908 389152 0.4610 +245908 392197 0.4900 +245908 400830 0.4990 +245908 414325 0.9370 +245908 441317 0.5150 +245908 441328 0.4790 +245908 503614 0.5780 +245908 503618 0.8370 +245908 503841 0.9650 +245908 613209 0.5390 +245908 613210 0.4990 +245908 613211 0.4990 +245908 644414 0.5690 +245908 645402 0.5180 +245908 645836 0.4030 +245908 728358 0.6540 +245908 729627 0.5040 +245908 100131608 0.5830 +245908 100133251 0.5830 +245908 100133267 0.5590 +245909 245910 0.9190 +245909 245911 0.7990 +245909 245913 0.5780 +245909 245927 0.6060 +245909 245932 0.4950 +245909 245934 0.4530 +245909 245936 0.4850 +245909 389151 0.5470 +245909 389152 0.5050 +245909 392188 0.4610 +245909 392197 0.5770 +245909 414325 0.8080 +245909 441317 0.5960 +245909 441328 0.5750 +245909 503614 0.6530 +245909 503841 0.8200 +245909 504180 0.6700 +245909 645402 0.5920 +245909 645836 0.4710 +245909 653333 0.4470 +245909 729627 0.5590 +245909 100131608 0.6630 +245909 100133251 0.6630 +245910 245911 0.8720 +245910 245913 0.8560 +245910 245927 0.7480 +245910 245928 0.5870 +245910 245929 0.6410 +245910 245930 0.7100 +245910 245932 0.6090 +245910 245934 0.5350 +245910 245936 0.5500 +245910 245937 0.6280 +245910 245938 0.5100 +245910 245939 0.6290 +245910 245940 0.6850 +245910 375612 0.4060 +245910 389151 0.5450 +245910 389152 0.5020 +245910 392188 0.4470 +245910 392197 0.5730 +245910 400830 0.4990 +245910 401447 0.4790 +245910 414325 0.8790 +245910 441328 0.5720 +245910 503618 0.5550 +245910 503841 0.9360 +245910 504180 0.8070 +245910 613209 0.5220 +245910 613210 0.5130 +245910 613211 0.4990 +245910 644414 0.6500 +245910 645402 0.5840 +245910 645836 0.4480 +245910 653333 0.4470 +245910 728358 0.6570 +245910 729627 0.5540 +245910 100131608 0.6610 +245910 100133251 0.6680 +245910 100133267 0.5670 +245911 245913 0.4990 +245911 245927 0.4990 +245911 245928 0.7060 +245911 245929 0.4990 +245911 245930 0.7480 +245911 245932 0.6500 +245911 245934 0.7860 +245911 245936 0.7540 +245911 245937 0.5060 +245911 245938 0.5210 +245911 245939 0.5100 +245911 245940 0.5630 +245911 392188 0.4480 +245911 392197 0.5790 +245911 400830 0.5030 +245911 401447 0.4050 +245911 414325 0.8260 +245911 441328 0.5770 +245911 503618 0.6970 +245911 503841 0.9230 +245911 504180 0.4180 +245911 613209 0.4990 +245911 613210 0.4990 +245911 613211 0.4990 +245911 644414 0.6850 +245911 645402 0.5940 +245911 645836 0.4740 +245911 653333 0.4480 +245911 728358 0.6090 +245911 100133267 0.5090 +245913 245927 0.8780 +245913 245928 0.7990 +245913 245929 0.7880 +245913 245930 0.6860 +245913 245932 0.7670 +245913 245934 0.7630 +245913 245936 0.6860 +245913 245937 0.6600 +245913 245938 0.6740 +245913 245939 0.7660 +245913 245940 0.6010 +245913 400830 0.7410 +245913 414325 0.7240 +245913 503841 0.7860 +245913 504180 0.6210 +245913 613209 0.6010 +245913 613210 0.6360 +245913 613211 0.7510 +245913 644414 0.7310 +245913 728358 0.6080 +245913 100133267 0.5740 +245927 245928 0.6990 +245927 245929 0.7420 +245927 245930 0.6850 +245927 245932 0.6930 +245927 245934 0.8180 +245927 245936 0.6680 +245927 245937 0.7430 +245927 245938 0.6700 +245927 245939 0.7790 +245927 245940 0.5860 +245927 400830 0.6720 +245927 403273 0.4960 +245927 414325 0.6450 +245927 503614 0.5150 +245927 503841 0.7680 +245927 613209 0.6150 +245927 613210 0.5940 +245927 613211 0.5130 +245927 644414 0.6150 +245927 653423 0.5500 +245927 728072 0.4220 +245927 728358 0.6170 +245927 100133267 0.6150 +245928 245929 0.7380 +245928 245930 0.7610 +245928 245932 0.6480 +245928 245934 0.5500 +245928 245936 0.6890 +245928 245937 0.8010 +245928 245938 0.8370 +245928 245939 0.8060 +245928 245940 0.5610 +245928 400830 0.6470 +245928 414325 0.7770 +245928 503841 0.6340 +245928 613209 0.8230 +245928 613210 0.5100 +245928 613211 0.8300 +245928 644414 0.5210 +245928 728358 0.6370 +245928 100133267 0.5340 +245929 245930 0.8160 +245929 245932 0.7980 +245929 245934 0.8120 +245929 245936 0.7880 +245929 245937 0.6610 +245929 245938 0.6650 +245929 245939 0.7310 +245929 245940 0.5840 +245929 254240 0.4920 +245929 400830 0.6850 +245929 414325 0.5790 +245929 442319 0.5070 +245929 503841 0.6260 +245929 613209 0.5230 +245929 613210 0.5170 +245929 613211 0.4990 +245929 644414 0.6760 +245929 728358 0.5980 +245929 730087 0.4400 +245929 100133267 0.5350 +245930 245932 0.7870 +245930 245934 0.7610 +245930 245936 0.8360 +245930 245937 0.7650 +245930 245938 0.8310 +245930 245939 0.7840 +245930 245940 0.5830 +245930 400830 0.4990 +245930 414325 0.6600 +245930 503614 0.5740 +245930 503841 0.5590 +245930 613209 0.5170 +245930 613210 0.6010 +245930 613211 0.4990 +245930 644414 0.4990 +245930 728358 0.5720 +245930 100133267 0.6120 +245932 245934 0.8550 +245932 245936 0.8530 +245932 245937 0.7930 +245932 245938 0.8270 +245932 245939 0.7960 +245932 245940 0.6280 +245932 259239 0.4730 +245932 259240 0.5280 +245932 392399 0.4560 +245932 400830 0.7310 +245932 414325 0.5750 +245932 503841 0.7340 +245932 613209 0.7340 +245932 613210 0.6610 +245932 613211 0.6010 +245932 644414 0.5850 +245932 653423 0.5070 +245932 728358 0.5650 +245932 100133267 0.5470 +245934 245936 0.6570 +245934 245937 0.5110 +245934 245938 0.5290 +245934 245939 0.6050 +245934 245940 0.4990 +245934 400830 0.5000 +245934 414325 0.5650 +245934 503841 0.7430 +245934 613209 0.7830 +245934 613210 0.5100 +245934 613211 0.4990 +245934 644414 0.7630 +245934 728358 0.5820 +245934 100133267 0.5500 +245936 245937 0.7700 +245936 245938 0.8150 +245936 245939 0.7620 +245936 245940 0.5670 +245936 347475 0.4490 +245936 400830 0.6650 +245936 401612 0.4050 +245936 414325 0.6400 +245936 503841 0.7100 +245936 613209 0.5850 +245936 613210 0.5650 +245936 613211 0.4990 +245936 644414 0.7120 +245936 728358 0.4990 +245936 100133267 0.5880 +245936 102723631 0.5060 +245937 245938 0.8990 +245937 245939 0.8960 +245937 245940 0.5650 +245937 390066 0.4110 +245937 391253 0.4160 +245937 400830 0.7040 +245937 414325 0.5760 +245937 503618 0.4180 +245937 503841 0.6060 +245937 613209 0.8960 +245937 613210 0.5910 +245937 613211 0.8200 +245937 644414 0.4990 +245937 728358 0.5390 +245937 100133267 0.5650 +245938 245939 0.9180 +245938 245940 0.7590 +245938 285555 0.5050 +245938 400830 0.7520 +245938 414325 0.4990 +245938 503841 0.6370 +245938 613209 0.8830 +245938 613210 0.4990 +245938 613211 0.8310 +245938 644414 0.4990 +245938 728358 0.5950 +245938 100130771 0.5400 +245938 100133267 0.6400 +245939 245940 0.5870 +245939 254240 0.4700 +245939 391253 0.4590 +245939 392399 0.5060 +245939 400830 0.8020 +245939 414325 0.6990 +245939 503841 0.7550 +245939 613209 0.8840 +245939 613210 0.6160 +245939 613211 0.8460 +245939 644414 0.7510 +245939 653423 0.4250 +245939 728358 0.6590 +245939 100133267 0.6120 +245940 343563 0.4720 +245940 400830 0.5760 +245940 414325 0.6840 +245940 503841 0.6220 +245940 613209 0.7340 +245940 613210 0.6620 +245940 613211 0.4990 +245940 644414 0.7190 +245940 653423 0.4090 +245940 728358 0.5930 +245940 728957 0.5930 +245940 100130705 0.5980 +245940 100133267 0.4990 +245940 100289087 0.4160 +245972 245973 0.9740 +245972 389541 0.5060 +245972 440400 0.9550 +245972 652968 0.4440 +245973 256764 0.5120 +245973 389541 0.6500 +245973 440400 0.9230 +246100 339669 0.4350 +246100 653067 0.5830 +246100 728269 0.4320 +246175 339345 0.8190 +246175 340719 0.7060 +246175 390748 0.6490 +246176 256957 0.4630 +246176 375307 0.6280 +246176 388633 0.4540 +246184 375061 0.4100 +246184 388272 0.6080 +246213 253827 0.4110 +246213 283310 0.4680 +246213 340990 0.5070 +246213 375611 0.6100 +246213 494513 0.4700 +246213 654231 0.4180 +246243 285521 0.5270 +246243 387712 0.5920 +246243 441531 0.5220 +246243 654364 0.4740 +246329 257044 0.7200 +246329 257062 0.7200 +246329 285588 0.7200 +246329 340393 0.7200 +246329 347273 0.4770 +246329 347732 0.7270 +246329 378807 0.7200 +246329 440023 0.4310 +246329 100130348 0.7240 +246330 257397 0.4120 +246721 387332 0.4690 +246721 441273 0.5910 +246721 548644 0.9000 +246721 728340 0.5700 +246744 284058 0.9040 +246744 104909134 0.8620 +246777 283629 0.4840 +246777 284359 0.5810 +246778 386653 0.4180 +252839 254439 0.4880 +252884 353274 0.7040 +252884 387032 0.8350 +252884 389177 0.4420 +252884 390231 0.4920 +252969 284131 0.4220 +252983 342908 0.4530 +252995 284207 0.6480 +252995 339479 0.4420 +252995 375704 0.6080 +253012 257415 0.4830 +253012 284418 0.4360 +253012 284996 0.4480 +253012 286151 0.4570 +253012 374897 0.4110 +253017 254268 0.4370 +253017 347240 0.4190 +253017 401494 0.7220 +253143 340481 0.5270 +253143 387921 0.6750 +253143 100101267 0.4010 +253152 340533 0.4380 +253152 780776 0.4890 +253175 254042 0.4030 +253175 284422 0.4840 +253175 333932 0.8470 +253175 378949 0.4170 +253175 440093 0.8470 +253175 440686 0.8470 +253175 442862 0.5710 +253175 442867 0.8100 +253175 442868 0.8100 +253175 653604 0.8470 +253175 100526842 0.4160 +253175 109703458 0.5000 +253175 122405565 0.4840 +253190 390075 0.4160 +253190 644596 0.4090 +253314 286148 0.4380 +253314 317649 0.7790 +253314 340529 0.4250 +253314 347744 0.5740 +253314 353267 0.5860 +253314 390748 0.4320 +253314 392517 0.6930 +253314 402569 0.4610 +253314 414328 0.4620 +253314 645974 0.4940 +253461 401494 0.4130 +253512 401612 0.4910 +253558 254531 0.9650 +253558 338596 0.4300 +253559 343450 0.4190 +253559 391189 0.4450 +253559 440279 0.4760 +253559 100526835 0.4750 +253582 255426 0.5250 +253582 391190 0.4300 +253582 100507203 0.5740 +253639 256006 0.5090 +253639 414189 0.4740 +253650 642938 0.4010 +253650 110806297 0.6060 +253714 254394 0.4040 +253714 375035 0.5290 +253714 728741 0.4100 +253725 343071 0.5050 +253725 387680 0.9630 +253725 100287171 0.9980 +253769 374977 0.4680 +253769 387263 0.6100 +253769 391356 0.4480 +253769 644994 0.4180 +253782 256356 0.4080 +253782 259230 0.9610 +253782 286148 0.4390 +253782 339221 0.9460 +253782 340485 0.9660 +253827 259236 0.4460 +253827 286262 0.4860 +253827 286676 0.4210 +253827 389207 0.4890 +253827 494513 0.4890 +253827 731220 0.4380 +253832 283576 0.5200 +253832 340481 0.4280 +253832 401647 0.4640 +253935 389558 0.4190 +253943 257218 0.4010 +253943 284071 0.4920 +253980 253982 0.8140 +253980 283897 0.6010 +253980 283899 0.6370 +253980 339745 0.9000 +253980 552900 0.4460 +253980 553115 0.7220 +253980 653808 0.4180 +253980 654483 0.4440 +253982 255762 0.4580 +253982 283897 0.8030 +253982 283899 0.6780 +253982 339487 0.4300 +253982 552900 0.4160 +253982 653808 0.5430 +253982 654483 0.4080 +254013 286148 0.4050 +254013 399818 0.7480 +254013 751071 0.6090 +254042 341392 0.4550 +254042 348158 0.4550 +254042 389434 0.8860 +254048 346689 0.6590 +254048 442721 0.4340 +254048 728656 0.4270 +254050 286187 0.5490 +254050 286464 0.6460 +254050 388701 0.5820 +254050 389320 0.6880 +254050 648791 0.5540 +254065 340533 0.4140 +254065 340562 0.4210 +254065 347344 0.4290 +254065 101060200 0.4270 +254102 283130 0.4780 +254102 342527 0.5540 +254102 353116 0.6440 +254122 257364 0.6370 +254122 401548 0.5580 +254122 728361 0.4940 +254158 342918 0.7710 +254158 100507203 0.7700 +254170 391714 0.6140 +254170 554251 0.4450 +254170 101060200 0.4790 +254173 282809 0.5180 +254173 284076 0.4850 +254173 374969 0.4810 +254187 282770 0.6010 +254187 339669 0.4340 +254187 390162 0.6110 +254228 284371 0.4460 +254240 388698 0.4250 +254240 100288797 0.5900 +254251 401145 0.4270 +254263 285242 0.6010 +254263 375567 0.6580 +254263 388336 0.7490 +254263 402117 0.6100 +254263 440829 0.5880 +254263 644070 0.5360 +254263 729956 0.7450 +254263 729993 0.9490 +254268 284611 0.4640 +254268 285855 0.7690 +254268 340990 0.4600 +254268 347487 0.8860 +254268 387129 0.7690 +254268 641776 0.6420 +254268 643909 0.6420 +254268 645051 0.6500 +254268 645073 0.6500 +254268 728524 0.6420 +254268 729396 0.6500 +254268 729422 0.6500 +254268 729428 0.6500 +254268 729431 0.6500 +254268 729442 0.6500 +254268 729447 0.6500 +254268 100008586 0.6530 +254268 100128731 0.4290 +254268 100132399 0.6500 +254268 100287482 0.4220 +254268 100505478 0.4500 +254268 100526842 0.9050 +254268 100529097 0.8210 +254268 100529239 0.9080 +254268 100996492 0.5200 +254268 100996746 0.6420 +254268 102724473 0.6500 +254268 105180390 0.6420 +254268 105180391 0.6420 +254272 256223 0.6210 +254272 339168 0.4790 +254272 374286 0.4790 +254272 388333 0.5150 +254272 643664 0.5420 +254272 100130933 0.4470 +254272 100505591 0.4800 +254272 100505724 0.4180 +254295 388284 0.4170 +254295 100132396 0.4200 +254359 283464 0.4090 +254359 653082 0.4300 +254394 254528 0.7150 +254394 344018 0.4650 +254394 375035 0.4290 +254394 402381 0.4820 +254427 256536 0.4120 +254427 388335 0.4440 +254427 388886 0.5810 +254428 348938 0.5860 +254439 266675 0.4490 +254439 284293 0.4790 +254528 256006 0.4220 +254528 256126 0.5440 +254528 283847 0.5320 +254528 284071 0.5080 +254528 285498 0.4850 +254528 317761 0.5450 +254528 340719 0.4010 +254528 342977 0.4110 +254528 346673 0.4630 +254528 402381 0.4470 +254528 642636 0.5740 +254528 644186 0.6450 +254528 646019 0.4210 +254528 729475 0.4010 +254531 255043 0.9340 +254531 255189 0.6720 +254531 283748 0.6610 +254531 284161 0.9080 +254531 375775 0.9080 +254531 387521 0.9060 +254531 387522 0.9060 +254531 391013 0.6600 +254531 100137049 0.6630 +254552 256281 0.4300 +254552 284439 0.4770 +254552 390916 0.6580 +254552 400451 0.4670 +254773 337880 0.4630 +254773 342574 0.5400 +254773 387836 0.4930 +254773 100132476 0.4040 +254786 100287399 0.4820 +254786 102723502 0.4450 +254786 102724631 0.4340 +254827 285525 0.4600 +254827 338811 0.5250 +254827 401145 0.4610 +254827 728215 0.4130 +254863 374291 0.4040 +254863 440574 0.5540 +254863 100506049 0.4220 +254863 101928527 0.4360 +254910 353131 0.9710 +254910 353132 0.7920 +254910 353133 0.8380 +254910 353134 0.8150 +254910 353135 0.7790 +254910 353137 0.8100 +254910 353139 0.7650 +254910 353140 0.8450 +254910 353141 0.7890 +254910 353142 0.7170 +254910 353143 0.6190 +254910 353144 0.7700 +254910 353145 0.7540 +254910 386676 0.5910 +254910 387266 0.5910 +254910 387267 0.5910 +254910 388697 0.4180 +254910 448835 0.8190 +254950 284827 0.4270 +254950 337878 0.8280 +254950 337879 0.8980 +254950 337880 0.8200 +254950 337959 0.4910 +254950 337960 0.5150 +254950 337963 0.4190 +254950 337966 0.7290 +254950 337967 0.7560 +254950 337968 0.7720 +254950 337975 0.8850 +254950 337976 0.8440 +254950 337977 0.6400 +254950 337978 0.6310 +254950 337979 0.8530 +254950 342574 0.4070 +254950 353332 0.6190 +254950 387267 0.5150 +254950 388818 0.8030 +254950 643803 0.8710 +254950 643812 0.7920 +254950 728255 0.5600 +254950 728279 0.4480 +254950 100131902 0.5500 +254950 100505753 0.5420 +254950 112441428 0.7990 +254956 257177 0.4560 +254956 283385 0.7810 +254956 339669 0.5920 +254956 345895 0.4700 +254956 399949 0.4880 +254956 401124 0.4830 +254956 401551 0.4380 +254956 440836 0.4770 +254973 389668 0.4460 +254973 392390 0.9990 +255022 342372 0.5070 +255022 346562 0.5820 +255027 408050 0.4470 +255027 100288332 0.4180 +255043 255189 0.6500 +255043 283748 0.6500 +255043 284161 0.9050 +255043 339451 0.4130 +255043 391013 0.6520 +255043 392636 0.5770 +255043 100128071 0.4550 +255043 100137049 0.6500 +255057 401024 0.4550 +255061 283869 0.4430 +255061 392391 0.4280 +255101 286464 0.6520 +255101 401024 0.4480 +255104 729759 0.5070 +255104 100129515 0.5800 +255104 101928677 0.5750 +255119 257236 0.6320 +255119 285093 0.4120 +255119 399814 0.5070 +255119 399949 0.4050 +255119 401137 0.4610 +255119 441054 0.6700 +255119 642987 0.4680 +255189 283748 0.4940 +255189 284161 0.6890 +255189 284541 0.6750 +255189 375775 0.7790 +255189 387521 0.6500 +255189 387522 0.6500 +255189 780776 0.4290 +255189 100137049 0.4630 +255220 285190 0.4400 +255220 344752 0.4420 +255220 347736 0.5100 +255220 404636 0.4260 +255239 401551 0.4650 +255252 375387 0.4570 +255275 445328 0.4300 +255308 283237 0.4260 +255308 286151 0.4790 +255308 347487 0.6740 +255308 440275 0.5500 +255308 494115 0.4080 +255308 641776 0.4340 +255308 643909 0.4340 +255308 728524 0.4340 +255308 728689 0.8270 +255308 100287482 0.5370 +255308 100529239 0.6150 +255308 100996746 0.4340 +255308 105180390 0.4340 +255308 105180391 0.4340 +255313 347541 0.4140 +255313 388951 0.4310 +255313 389761 0.5060 +255313 494118 0.4180 +255313 494197 0.4180 +255313 728049 0.4200 +255313 728090 0.4180 +255324 441024 0.6810 +255349 283554 0.4960 +255349 339778 0.5060 +255349 401827 0.4530 +255349 441027 0.4200 +255349 728361 0.4770 +255349 100130519 0.5510 +255374 376940 0.4790 +255394 283554 0.4720 +255394 402415 0.4340 +255488 375287 0.4660 +255488 401934 0.4450 +255520 388325 0.4720 +255520 653509 0.6510 +255520 727897 0.4180 +255520 729238 0.7930 +255626 256126 0.5270 +255626 283149 0.4990 +255626 317772 0.7030 +255626 340096 0.5840 +255626 341567 0.5190 +255626 387893 0.4920 +255626 388272 0.4200 +255626 391769 0.5570 +255626 440093 0.8660 +255626 440686 0.8690 +255626 440689 0.4420 +255626 474381 0.6200 +255626 474382 0.7670 +255626 554313 0.9420 +255626 644186 0.4990 +255626 653604 0.9160 +255626 723790 0.4410 +255631 257194 0.4140 +255631 283208 0.5140 +255631 340267 0.5450 +255649 285311 0.4320 +255649 326340 0.4360 +255649 342931 0.5260 +255649 431705 0.4330 +255649 728588 0.5060 +255649 100526761 0.4030 +255649 112577461 0.5830 +255725 285346 0.4220 +255725 345222 0.5190 +255725 347732 0.4350 +255725 392391 0.6630 +255738 338328 0.4180 +255738 375056 0.4520 +255738 100423062 0.9100 +255743 341640 0.8720 +255743 100131755 0.4260 +255758 255798 0.6490 +255758 261726 0.4330 +255758 343521 0.8400 +255758 348793 0.6580 +255758 646851 0.5940 +255758 729665 0.5940 +255762 283897 0.4910 +255762 390038 0.5330 +255762 730094 0.4350 +255783 375035 0.4100 +255798 348793 0.7510 +255798 375387 0.5320 +255798 442721 0.4360 +255798 647286 0.4570 +255798 100130613 0.4280 +255798 100130827 0.4460 +255798 100289087 0.4180 +255877 339345 0.6290 +255877 342977 0.5130 +255877 346673 0.6790 +255877 386675 0.4370 +255877 386677 0.4240 +255877 402381 0.6410 +255877 728378 0.4620 +255877 100526761 0.5110 +255967 340529 0.4030 +255967 374872 0.4910 +255967 645974 0.4030 +256006 256126 0.4620 +256006 283677 0.9870 +256006 339834 0.8700 +256006 414189 0.4030 +256006 646019 0.4720 +256006 100137049 0.4070 +256006 101928601 0.7430 +256051 374928 0.7920 +256051 388566 0.5290 +256126 283129 0.4400 +256126 283554 0.4980 +256126 283847 0.4570 +256126 285498 0.4570 +256126 317761 0.8860 +256126 339834 0.4270 +256126 342977 0.4790 +256126 346673 0.4140 +256126 474382 0.5010 +256126 494188 0.4320 +256126 642636 0.6150 +256126 644186 0.9960 +256126 100130958 0.5120 +256130 341880 0.6130 +256130 442184 0.6430 +256130 541565 0.4180 +256130 729515 0.4380 +256148 283999 0.4450 +256148 386683 0.5220 +256158 284532 0.4060 +256158 285641 0.5560 +256223 284067 0.4160 +256223 339168 0.5710 +256223 353149 0.5820 +256223 374286 0.5710 +256223 388333 0.5910 +256223 388650 0.5060 +256223 414059 0.5700 +256223 494188 0.4480 +256223 643664 0.6040 +256223 729877 0.4180 +256223 100130933 0.5200 +256223 100505591 0.5720 +256223 100505724 0.5050 +256223 101060321 0.5800 +256223 101060351 0.5060 +256227 390445 0.4780 +256281 283927 0.4280 +256281 374887 0.4140 +256281 390916 0.5660 +256281 647310 0.5070 +256297 338917 0.5680 +256297 343472 0.6630 +256297 346171 0.4240 +256297 652991 0.4490 +256309 339976 0.5280 +256309 441054 0.4320 +256329 399949 0.4540 +256329 102724536 0.5060 +256356 285175 0.5630 +256356 285268 0.4300 +256356 286148 0.5460 +256356 353088 0.5110 +256356 100509620 0.4860 +256356 100652824 0.4160 +256435 285349 0.5800 +256435 338596 0.6380 +256435 727897 0.4130 +256472 283999 0.5650 +256472 284339 0.4360 +256472 284498 0.4330 +256472 388021 0.4850 +256472 388564 0.4340 +256472 643382 0.6150 +256472 100289187 0.4730 +256536 100996928 0.6000 +256586 388121 0.4440 +256643 256714 0.4920 +256643 282617 0.4060 +256643 282618 0.4220 +256643 400569 0.5420 +256646 285175 0.4020 +256646 342900 0.4480 +256646 100288687 0.5850 +256646 102723407 0.4420 +256710 284359 0.5350 +256710 728591 0.4060 +256714 389643 0.4540 +256714 441457 0.5900 +256764 286077 0.8290 +256764 374618 0.4020 +256764 401138 0.6590 +256764 100874261 0.4120 +256815 348807 0.6100 +256815 388963 0.6020 +256933 283869 0.9990 +256933 594857 0.4880 +256949 493860 0.5240 +256957 257236 0.5050 +256957 340277 0.4450 +256979 283847 0.4100 +256979 100506564 0.5280 +257019 389432 0.6160 +257044 257062 0.9660 +257044 285588 0.9430 +257044 340393 0.8250 +257044 347732 0.9510 +257044 353189 0.6060 +257044 378807 0.9470 +257044 100130348 0.8560 +257062 285335 0.4380 +257062 285588 0.9410 +257062 340393 0.7720 +257062 347732 0.9860 +257062 353189 0.4360 +257062 378807 0.9740 +257062 388564 0.5750 +257062 100130348 0.8560 +257062 100289255 0.5750 +257062 100529257 0.4440 +257062 111216276 0.4460 +257068 388228 0.4030 +257106 286336 0.4970 +257106 374403 0.4650 +257106 388324 0.4320 +257144 327657 0.5230 +257169 283461 0.6700 +257169 341152 0.4510 +257169 345651 0.4200 +257177 284485 0.4320 +257177 339778 0.8270 +257177 345895 0.5640 +257177 388701 0.8170 +257177 389799 0.8100 +257177 399949 0.6660 +257177 401551 0.5350 +257177 440585 0.8190 +257177 730112 0.8170 +257177 100128569 0.5070 +257194 338557 0.5900 +257194 402665 0.9120 +257194 414062 0.4160 +257194 100526835 0.5330 +257202 280636 0.5060 +257202 348303 0.5560 +257202 373156 0.4090 +257202 493869 0.9280 +257202 494143 0.9000 +257202 653361 0.6830 +257202 653689 0.7460 +257202 100506658 0.4490 +257218 283373 0.4980 +257218 285331 0.4470 +257218 440093 0.5510 +257218 440686 0.5510 +257218 653604 0.5510 +257236 374355 0.5710 +257236 441054 0.7760 +257236 730112 0.4560 +257313 342125 0.4400 +257313 375567 0.4960 +257313 387129 0.5460 +257313 594857 0.5080 +257364 339145 0.5190 +257364 375189 0.4100 +257397 353376 0.6300 +257415 283373 0.4760 +257415 400506 0.4700 +257415 401551 0.4430 +257629 339291 0.4040 +257629 388633 0.4600 +257629 654254 0.5300 +259173 338661 0.4180 +259197 374383 0.9990 +259197 100507436 0.6270 +259197 100526664 0.5070 +259215 284348 0.5290 +259215 390940 0.5770 +259215 399967 0.5700 +259215 399968 0.5250 +259215 100169851 0.6040 +259215 101928108 0.6210 +259217 285126 0.5440 +259217 285282 0.4200 +259217 348995 0.4190 +259217 374407 0.5450 +259217 402682 0.4390 +259217 548645 0.5250 +259217 552891 0.4200 +259217 100101267 0.4380 +259230 339221 0.9350 +259230 340485 0.9580 +259232 285175 0.9990 +259232 728215 0.9810 +259232 100533467 0.4090 +259236 286262 0.5710 +259236 286676 0.5710 +259236 375611 0.4730 +259236 389207 0.5820 +259236 494513 0.5710 +259239 259240 0.4270 +259239 280664 0.4970 +259239 285190 0.4360 +259239 401067 0.5010 +259239 494197 0.4760 +259239 646174 0.5530 +259239 653423 0.4070 +259240 391253 0.5820 +259240 440163 0.4780 +259240 653423 0.4660 +259266 284403 0.9680 +259266 285643 0.6460 +259266 347240 0.4090 +259266 387103 0.5600 +259282 284257 0.5710 +259282 317662 0.4080 +259282 348235 0.5530 +259285 259286 0.5090 +259285 259287 0.5800 +259285 259289 0.5800 +259285 259290 0.5480 +259285 259292 0.5770 +259285 259293 0.5530 +259285 259294 0.5560 +259285 259295 0.5790 +259285 259296 0.5900 +259285 338398 0.5290 +259285 342372 0.5180 +259285 346562 0.7600 +259285 353164 0.5530 +259285 392399 0.4630 +259286 259287 0.5580 +259286 259289 0.5650 +259286 259290 0.5640 +259286 259292 0.5540 +259286 259293 0.5720 +259286 259294 0.4990 +259286 259295 0.5640 +259286 259296 0.6120 +259286 338398 0.4460 +259286 346562 0.6000 +259286 353164 0.5290 +259286 392399 0.4070 +259287 259289 0.5090 +259287 259290 0.4590 +259287 259292 0.5070 +259287 259293 0.4340 +259287 259294 0.5430 +259287 259295 0.4890 +259287 259296 0.5050 +259287 282775 0.5040 +259287 338398 0.5100 +259287 342372 0.5600 +259287 346562 0.6020 +259287 353164 0.5630 +259287 390064 0.4850 +259287 441933 0.4480 +259289 259290 0.4550 +259289 259292 0.6080 +259289 259293 0.4680 +259289 259294 0.4990 +259289 259295 0.4400 +259289 259296 0.5790 +259289 338398 0.5830 +259289 340980 0.4450 +259289 346562 0.9380 +259289 353164 0.5070 +259289 391195 0.4460 +259289 100533464 0.4360 +259290 259292 0.4570 +259290 259293 0.4680 +259290 259294 0.4640 +259290 259295 0.4630 +259290 259296 0.4610 +259290 338398 0.5600 +259290 340980 0.4730 +259290 346562 0.8800 +259290 353164 0.4850 +259292 259293 0.4550 +259292 259294 0.4540 +259292 259295 0.4450 +259292 259296 0.4700 +259292 338398 0.5840 +259292 342372 0.4550 +259292 346562 0.9510 +259292 353164 0.5020 +259292 390321 0.4160 +259293 259294 0.4470 +259293 259295 0.4400 +259293 259296 0.4620 +259293 338398 0.4760 +259293 346562 0.7110 +259293 353164 0.4970 +259294 259295 0.4490 +259294 259296 0.5540 +259294 338398 0.5600 +259294 342372 0.4470 +259294 353164 0.5270 +259295 259296 0.4510 +259295 338398 0.5250 +259295 346562 0.6370 +259295 353164 0.5170 +259296 284521 0.5730 +259296 338398 0.6950 +259296 338751 0.6430 +259296 342372 0.5410 +259296 346562 0.7440 +259296 353164 0.5230 +259296 390067 0.4310 +259296 391195 0.5050 +259296 441933 0.9790 +259296 442186 0.5740 +259307 339896 0.8130 +259307 339983 0.9010 +259307 554235 0.8000 +259308 338949 0.4140 +259308 339779 0.5260 +259308 374973 0.5200 +259308 389124 0.5810 +259308 390081 0.4800 +259308 401024 0.5130 +259308 401565 0.4760 +259308 440955 0.5830 +259308 729830 0.4090 +259308 100526794 0.4490 +259308 107983988 0.5830 +260334 347688 0.4040 +260334 347733 0.4050 +260334 374969 0.4010 +260425 387712 0.4230 +260425 440603 0.4360 +260425 100506658 0.5170 +260434 286205 0.4460 +260434 286430 0.4300 +260434 338322 0.5020 +260436 401137 0.5700 +260436 401138 0.5380 +261726 375035 0.6910 +261729 339456 0.4410 +261734 282809 0.4850 +261734 283232 0.5130 +261734 284086 0.7820 +261734 339451 0.4830 +261734 374654 0.4270 +261734 387707 0.4440 +261734 392509 0.5120 +266629 284904 0.5960 +266675 388364 0.4290 +266675 388595 0.4510 +266722 375790 0.4940 +266722 442117 0.4670 +266740 283208 0.4850 +266740 286053 0.5050 +266740 339416 0.4400 +266740 389903 0.6700 +266740 493861 0.4260 +266740 541466 0.4490 +266740 645073 0.5260 +266740 653220 0.5030 +266740 727837 0.4240 +266740 729428 0.4960 +266740 729447 0.5860 +266740 100008586 0.4100 +266740 102723547 0.5060 +266743 285195 0.7380 +266743 339512 0.4560 +266743 341359 0.6430 +266743 440073 0.5540 +266743 728343 0.5990 +266747 388886 0.5070 +266812 346171 0.6310 +266812 353274 0.4260 +266812 388015 0.5050 +266812 390616 0.4270 +266812 100101490 0.7200 +267002 283254 0.4490 +267002 643641 0.6030 +267012 319100 0.6850 +267020 283459 0.6310 +267020 339665 0.5070 +267020 374291 0.4550 +267020 388753 0.4660 +267020 440400 0.5610 +267020 440567 0.7310 +267020 440804 0.5400 +267020 100037417 0.4710 +267020 100526740 0.5400 +267020 100532726 0.6150 +280636 348303 0.8540 +280658 283284 0.5840 +280658 441525 0.4710 +280658 494118 0.4180 +280658 494119 0.4300 +280658 645974 0.4800 +280658 100130311 0.4800 +280664 391253 0.6440 +280664 100132386 0.4180 +282616 282617 0.9980 +282616 282618 0.9890 +282616 338376 0.7230 +282616 386653 0.4330 +282617 282618 0.9920 +282617 338376 0.7060 +282618 338376 0.7310 +282679 387082 0.4730 +282763 283160 0.4030 +282763 284521 0.5570 +282763 391196 0.4990 +282763 401427 0.5580 +282775 284521 0.5110 +282775 341208 0.4300 +282775 344892 0.5270 +282775 388963 0.4970 +282775 390059 0.5340 +282775 390082 0.5250 +282775 390155 0.5600 +282775 390157 0.5300 +282775 390275 0.5130 +282775 390892 0.5380 +282775 391196 0.4990 +282775 401427 0.5160 +282775 442184 0.5630 +282775 645811 0.4470 +282775 647087 0.4350 +282775 728310 0.6690 +282808 340542 0.4100 +282809 100528030 0.4570 +282890 442184 0.5800 +282890 442191 0.4470 +282890 100507679 0.4010 +282966 374355 0.6410 +282966 399665 0.5070 +282966 399814 0.6070 +282969 404636 0.6430 +282969 619207 0.4200 +282973 388963 0.5300 +282973 440087 0.4880 +282973 645811 0.5090 +282973 647087 0.4790 +282973 728310 0.4160 +282991 339344 0.4830 +282991 388552 0.9990 +282991 389541 0.5680 +282991 440145 0.9000 +282991 644150 0.4110 +282991 653784 0.7200 +282991 729991 0.9980 +282991 100287171 0.7530 +282996 283373 0.4910 +283078 392255 0.4350 +283078 642658 0.7500 +283093 284521 0.5180 +283093 391196 0.5090 +283093 401427 0.5290 +283116 387680 0.4180 +283116 403253 0.5290 +283116 494197 0.5090 +283116 642612 0.5200 +283116 100271927 0.5520 +283129 283847 0.9910 +283129 284071 0.4350 +283129 317761 0.4570 +283129 644186 0.4220 +283129 728637 0.4980 +283129 729475 0.4290 +283149 474382 0.4990 +283149 653604 0.5580 +283150 338657 0.4900 +283150 100528020 0.4540 +283159 283160 0.7900 +283159 283162 0.4610 +283159 284521 0.5090 +283159 391196 0.4990 +283159 401427 0.5100 +283159 647286 0.4800 +283160 283162 0.8190 +283160 339327 0.4870 +283160 390271 0.5230 +283160 442038 0.4630 +283162 390271 0.7830 +283162 390927 0.5270 +283162 554251 0.5490 +283162 653404 0.5710 +283162 727857 0.5000 +283162 100130827 0.5260 +283208 340267 0.4530 +283209 284098 0.4120 +283209 389792 0.4230 +283209 440138 0.4780 +283209 643836 0.4210 +283209 644974 0.4120 +283209 729020 0.4400 +283212 389558 0.4850 +283219 284613 0.7290 +283219 403282 0.4470 +283229 376267 0.5370 +283232 286753 0.4880 +283237 339829 0.4810 +283237 352909 0.5050 +283238 390883 0.6340 +283238 391190 0.5400 +283238 646000 0.4790 +283248 440730 0.4180 +283254 375035 0.4350 +283284 340156 0.5620 +283297 341276 0.7650 +283298 404217 0.4110 +283310 286262 0.4450 +283310 340990 0.9030 +283310 374462 0.6710 +283310 375611 0.4080 +283310 388551 0.7470 +283316 399474 0.4060 +283349 387640 0.4240 +283349 388228 0.4010 +283349 401190 0.4410 +283349 644943 0.6150 +283358 338707 0.9090 +283358 101929469 0.4420 +283373 283638 0.4210 +283375 403284 0.4420 +283377 346157 0.4210 +283377 440087 0.5390 +283377 728858 0.5270 +283383 345895 0.4050 +283383 389421 0.7040 +283383 402569 0.4850 +283383 653489 0.7030 +283383 729540 0.7030 +283385 645121 0.4560 +283417 284359 0.4290 +283417 284680 0.5900 +283417 317719 0.4170 +283417 402573 0.6350 +283420 285852 0.4390 +283420 338339 0.7160 +283420 339390 0.4080 +283420 100526664 0.7870 +283431 107986096 0.4290 +283459 285440 0.5390 +283459 374291 0.4170 +283459 388753 0.7720 +283459 440567 0.7950 +283459 613227 0.5590 +283459 728317 0.4170 +283459 100532726 0.5170 +283459 105372267 0.4650 +283461 374462 0.5050 +283461 401097 0.5950 +283464 285203 0.5190 +283464 727936 0.9080 +283471 353299 0.4090 +283471 389761 0.5020 +283471 390152 0.4230 +283471 390261 0.4420 +283471 728194 0.4150 +283518 285855 0.4500 +283518 347487 0.4220 +283518 387129 0.4520 +283518 100287482 0.4220 +283518 100505478 0.4500 +283518 100526842 0.5030 +283518 100529097 0.4960 +283518 100529239 0.5030 +283554 389177 0.4120 +283554 441027 0.4190 +283554 494188 0.4520 +283554 728361 0.4770 +283554 100130519 0.6290 +283571 399671 0.4460 +283571 404217 0.4370 +283571 646658 0.5410 +283571 653149 0.4460 +283571 653567 0.4120 +283576 286827 0.6910 +283576 642968 0.6890 +283576 653082 0.4410 +283578 442194 0.4180 +283600 401612 0.4770 +283600 653140 0.4160 +283600 100526842 0.4070 +283629 284359 0.4680 +283629 317719 0.5680 +283629 339829 0.5220 +283629 100653515 0.4320 +283635 284827 0.5060 +283635 285343 0.4020 +283638 338811 0.4070 +283652 388552 0.4790 +283652 399697 0.6150 +283659 389421 0.4180 +283677 285498 0.5410 +283677 339834 0.9530 +283677 388649 0.4320 +283677 414157 0.4660 +283677 100507650 0.6000 +283677 101928601 0.9970 +283685 654463 0.4180 +283694 283767 0.4370 +283694 317703 0.4820 +283694 387273 0.4460 +283694 727832 0.4470 +283694 728299 0.5110 +283694 100287327 0.5430 +283726 284451 0.4470 +283726 340542 0.5790 +283726 341392 0.4420 +283726 345895 0.4270 +283726 359710 0.4520 +283726 404734 0.4030 +283742 339487 0.9720 +283742 100287404 0.5070 +283748 284161 0.6870 +283748 284541 0.6680 +283748 338324 0.4070 +283748 339366 0.6890 +283748 375775 0.7510 +283748 387521 0.6500 +283748 387522 0.6500 +283748 643904 0.4540 +283748 646262 0.4180 +283748 100137049 0.4560 +283767 390174 0.4490 +283767 390538 0.5090 +283767 391195 0.4500 +283767 643699 0.4230 +283767 653519 0.4440 +283767 727909 0.4260 +283767 728047 0.4270 +283768 728763 0.5500 +283807 345930 0.4010 +283807 554251 0.4380 +283820 285335 0.5070 +283847 284071 0.4260 +283847 285641 0.7710 +283847 317761 0.4910 +283847 342850 0.4370 +283847 401387 0.9510 +283847 642636 0.6250 +283847 644186 0.4570 +283847 100288797 0.5340 +283848 100862671 0.4770 +283849 644145 0.7940 +283849 653319 0.5910 +283870 729440 0.4720 +283897 283899 0.5960 +283897 389643 0.4130 +283897 653808 0.4790 +283899 284273 0.4680 +283899 653808 0.4470 +283927 343099 0.4630 +283927 390916 0.7350 +283948 284451 0.5080 +283948 342357 0.4210 +283951 284184 0.4210 +283953 387700 0.5170 +283953 619208 0.4350 +283953 100507055 0.5320 +283971 387911 0.5050 +283985 285148 0.7940 +283985 441024 0.4910 +283985 606495 0.6080 +283989 100507203 0.4210 +283991 284992 0.5160 +283991 286006 0.4080 +283991 348013 0.4310 +283999 353274 0.4870 +283999 375323 0.4460 +283999 386683 0.5420 +283999 390036 0.4470 +283999 390063 0.5180 +283999 390064 0.5410 +283999 390664 0.4090 +283999 392391 0.5420 +283999 441151 0.5720 +283999 730112 0.5770 +284001 284099 0.4020 +284001 341152 0.4030 +284001 341640 0.4320 +284001 374872 0.4470 +284001 390199 0.4140 +284001 400720 0.4230 +284004 389114 0.5060 +284004 729085 0.4480 +284021 400668 0.4410 +284040 341883 0.4790 +284040 100529209 0.5710 +284040 100533496 0.7370 +284058 339287 0.8070 +284058 345651 0.5400 +284058 374819 0.7300 +284058 474170 0.6810 +284058 100529209 0.5400 +284058 104909134 0.8600 +284067 285126 0.4590 +284067 285231 0.4380 +284067 388381 0.5820 +284067 100190949 0.6100 +284067 100505724 0.4480 +284067 101060351 0.4460 +284071 346673 0.5760 +284071 646019 0.4090 +284098 284099 0.6000 +284099 340277 0.4340 +284099 101060321 0.4180 +284106 493856 0.9620 +284110 284348 0.4290 +284110 494513 0.6210 +284110 100505591 0.5980 +284111 729025 0.9530 +284119 347273 0.6610 +284119 404672 0.4990 +284119 493829 0.8390 +284131 340529 0.4660 +284131 353497 0.4390 +284131 441250 0.6150 +284161 339221 0.4250 +284161 391013 0.6650 +284161 100137049 0.6860 +284184 374291 0.4120 +284184 388753 0.4060 +284184 388962 0.4910 +284194 339390 0.4500 +284217 375790 0.6000 +284252 284371 0.4330 +284252 339488 0.5990 +284252 653192 0.4310 +284257 348235 0.5510 +284257 100271927 0.5220 +284257 100287226 0.4590 +284266 100049587 0.5670 +284273 284274 0.6210 +284273 387914 0.4120 +284273 390916 0.5200 +284274 284498 0.4840 +284274 285268 0.4330 +284274 286183 0.4010 +284274 340204 0.4470 +284274 342850 0.4740 +284274 353324 0.4300 +284274 374977 0.4470 +284274 387707 0.4800 +284274 388333 0.4470 +284274 493901 0.5070 +284274 644596 0.4760 +284274 646892 0.4790 +284274 647286 0.4450 +284274 100132916 0.4160 +284274 100506581 0.4470 +284293 340811 0.4260 +284293 647174 0.4760 +284307 541578 0.4790 +284312 100271846 0.4470 +284323 284325 0.4310 +284323 386675 0.4710 +284323 388569 0.4450 +284323 440574 0.5170 +284323 105372481 0.4180 +284325 348793 0.5980 +284325 399473 0.4880 +284325 440026 0.5920 +284325 641649 0.4080 +284338 284339 0.7470 +284338 285382 0.5130 +284338 285498 0.4360 +284338 286499 0.4110 +284338 342945 0.4480 +284338 493860 0.4960 +284339 388021 0.4370 +284339 641649 0.4210 +284339 643965 0.4930 +284346 374920 0.4020 +284346 653583 0.6220 +284346 727800 0.4710 +284348 338328 0.4720 +284348 390940 0.7300 +284348 399967 0.6050 +284348 399968 0.5860 +284348 100169851 0.6660 +284348 101928108 0.6700 +284349 641339 0.5550 +284352 341116 0.4310 +284353 285126 0.4250 +284353 285172 0.4270 +284359 339168 0.8720 +284359 340547 0.4420 +284359 390243 0.9990 +284359 431705 0.4100 +284359 100129669 0.7450 +284359 100526761 0.4080 +284366 338324 0.5410 +284366 493860 0.4920 +284370 339324 0.4340 +284370 339965 0.4570 +284370 729767 0.4070 +284371 347736 0.4030 +284371 441273 0.5420 +284382 284383 0.5950 +284382 284680 0.4190 +284382 375189 0.4830 +284382 642987 0.4940 +284383 643382 0.5410 +284390 440093 0.4160 +284390 440686 0.4170 +284390 653604 0.4160 +284391 388566 0.4390 +284391 440515 0.5180 +284402 339318 0.5050 +284403 347733 0.4750 +284406 342926 0.5250 +284406 388566 0.4370 +284418 353299 0.4880 +284418 390174 0.5730 +284422 414149 0.4360 +284422 109703458 0.4130 +284427 374291 0.7490 +284427 399512 0.4980 +284427 493856 0.4320 +284427 728317 0.5780 +284427 100132963 0.6060 +284427 100505993 0.6250 +284428 342900 0.6270 +284428 343070 0.5900 +284428 441873 0.6150 +284428 442247 0.4420 +284428 653192 0.4180 +284428 653619 0.6250 +284428 653657 0.7800 +284428 100033411 0.4710 +284428 100288687 0.4470 +284433 284521 0.4990 +284433 391196 0.5140 +284433 401427 0.5040 +284433 728734 0.6060 +284433 100507607 0.5780 +284434 390064 0.4350 +284434 391211 0.4940 +284434 494513 0.4170 +284439 728621 0.4090 +284443 440515 0.4760 +284451 400954 0.5140 +284467 337972 0.5780 +284467 339779 0.4160 +284485 643008 0.4220 +284485 100130771 0.4470 +284486 285848 0.4570 +284486 339398 0.5040 +284486 390980 0.4600 +284486 641371 0.9190 +284486 100191040 0.4690 +284498 285600 0.5970 +284498 286183 0.4240 +284498 340204 0.4790 +284498 342850 0.5650 +284498 353324 0.4540 +284498 375759 0.4010 +284498 387707 0.5070 +284498 388333 0.5050 +284498 390113 0.6030 +284498 392391 0.6920 +284498 400818 0.5950 +284498 493901 0.5700 +284498 646892 0.5070 +284498 647286 0.4780 +284498 100132916 0.4460 +284521 340980 0.5610 +284521 341152 0.5340 +284521 343169 0.5200 +284521 343171 0.5670 +284521 344892 0.6230 +284521 388761 0.4990 +284521 390038 0.4990 +284521 390059 0.5000 +284521 390082 0.4990 +284521 390093 0.4990 +284521 390113 0.4010 +284521 390155 0.5120 +284521 390157 0.5060 +284521 390174 0.5120 +284521 390264 0.5200 +284521 390265 0.5120 +284521 390271 0.5200 +284521 390275 0.4990 +284521 390892 0.5140 +284521 391194 0.5060 +284521 391196 0.5080 +284521 392138 0.5130 +284521 401427 0.5480 +284521 402317 0.5340 +284521 442184 0.4990 +284521 442185 0.4990 +284521 442186 0.5430 +284521 442191 0.5040 +284525 285195 0.4930 +284525 286464 0.4460 +284525 339416 0.7680 +284525 646000 0.4480 +284525 730159 0.5610 +284532 387273 0.5090 +284532 439915 0.4470 +284532 440050 0.5400 +284532 440051 0.4500 +284541 340665 0.9350 +284541 391013 0.7110 +284541 574537 0.6900 +284541 100137049 0.6610 +284541 100861540 0.9340 +284546 100506540 0.4810 +284565 442590 0.4180 +284565 645142 0.4630 +284565 653619 0.4010 +284565 653820 0.4610 +284565 728945 0.4640 +284565 100287178 0.4490 +284565 100996763 0.5400 +284565 105371346 0.4390 +284565 112268164 0.4340 +284612 340260 0.5750 +284612 343263 0.4900 +284612 493829 0.5050 +284615 342908 0.4050 +284654 340419 0.5700 +284654 343637 0.6030 +284654 344018 0.4500 +284654 643136 0.4180 +284654 100532731 0.4190 +284656 285220 0.4520 +284656 388662 0.4280 +284680 286151 0.4640 +284697 285343 0.4200 +284697 440307 0.5090 +284697 110806296 0.4440 +284716 339983 0.9600 +284716 387856 0.4220 +284716 389434 0.4030 +284716 441054 0.5370 +284716 445571 0.4780 +284716 728621 0.5350 +284723 348487 0.4280 +284723 388595 0.6130 +284723 401612 0.4900 +284805 653269 0.4520 +284827 337963 0.4200 +284904 642843 0.4030 +284948 388969 0.4800 +284992 101928603 0.5810 +284996 390980 0.4080 +285016 390598 0.5230 +285016 642273 0.5610 +285025 285313 0.4500 +285025 340359 0.5040 +285025 341359 0.4760 +285025 389549 0.4470 +285051 286749 0.4450 +285051 388946 0.5410 +285051 554226 0.5280 +285095 387723 0.5300 +285095 100129515 0.7200 +285095 100505989 0.4470 +285095 100506374 0.6210 +285095 100507537 0.4790 +285095 101927367 0.6310 +285095 101928677 0.7170 +285095 101929726 0.4800 +285095 107984345 0.7940 +285095 110806279 0.7630 +285095 110806296 0.6210 +285095 110806299 0.7160 +285095 112163659 0.7950 +285095 112441428 0.6700 +285095 112441437 0.7940 +285095 112441438 0.7940 +285095 113523638 0.6230 +285095 114515518 0.5710 +285126 339416 0.4210 +285126 374407 0.4700 +285126 388633 0.4200 +285126 100190949 0.4760 +285141 401551 0.5940 +285141 100129654 0.4720 +285172 286343 0.4050 +285172 388531 0.4060 +285175 343990 0.4190 +285175 374462 0.4420 +285175 375449 0.4320 +285175 376132 0.4050 +285175 728215 0.9580 +285180 285533 0.4060 +285180 386681 0.4180 +285190 344752 0.4020 +285190 401067 0.4120 +285190 494197 0.4050 +285190 644591 0.5330 +285190 645142 0.5400 +285190 646174 0.4400 +285190 653505 0.5450 +285190 653598 0.5410 +285190 728945 0.5410 +285190 730262 0.5410 +285190 100287238 0.5700 +285190 105371242 0.5210 +285193 390664 0.4580 +285195 285335 0.5420 +285220 389073 0.4120 +285231 728340 0.5200 +285231 100190949 0.4480 +285242 375567 0.5400 +285242 388336 0.5400 +285242 402117 0.5450 +285242 440829 0.5400 +285242 729956 0.5400 +285242 729993 0.5980 +285267 285605 0.4430 +285267 342945 0.4370 +285268 100506581 0.4460 +285282 339416 0.4200 +285282 388633 0.4200 +285282 440026 0.4230 +285311 441161 0.4760 +285313 100289635 0.4280 +285315 643338 0.6260 +285331 343099 0.4860 +285331 768206 0.5740 +285335 347732 0.5240 +285335 378807 0.4260 +285335 389015 0.4100 +285335 408050 0.5060 +285362 340075 0.7590 +285362 347527 0.7260 +285367 374659 0.4230 +285367 387338 0.5210 +285367 387856 0.4160 +285367 728299 0.4460 +285367 100996939 0.4520 +285368 101929926 0.5810 +285382 493860 0.4790 +285382 100132476 0.4200 +285429 340578 0.5950 +285429 347442 0.6030 +285440 340665 0.4010 +285440 346007 0.4970 +285440 643866 0.4330 +285489 375790 0.9910 +285498 317761 0.5810 +285498 339834 0.4050 +285498 388649 0.6110 +285498 392843 0.5230 +285498 548593 0.4810 +285498 642636 0.5800 +285498 101928601 0.4390 +285513 401145 0.4060 +285521 387338 0.4520 +285521 388753 0.7120 +285521 100131801 0.5880 +285521 100303755 0.5930 +285525 286451 0.5500 +285525 386617 0.4220 +285527 374354 0.5080 +285555 728591 0.4480 +285555 100130771 0.5560 +285588 340393 0.7680 +285588 347732 0.9830 +285588 353189 0.5110 +285588 378807 0.9700 +285588 389170 0.4110 +285588 440699 0.4900 +285588 100130348 0.8560 +285596 389799 0.4470 +285596 390231 0.4800 +285598 387496 0.8670 +285598 392509 0.5480 +285598 728310 0.4780 +285598 100506049 0.4810 +285598 110091775 0.6080 +285600 392391 0.6470 +285600 401399 0.4740 +285601 344561 0.4450 +285601 387509 0.4330 +285601 390212 0.4010 +285601 100507588 0.4860 +285605 339287 0.4590 +285605 644019 0.4750 +285636 643853 0.4510 +285641 340024 0.4890 +285641 348932 0.4730 +285641 401387 0.7530 +285641 100288797 0.5320 +285659 348235 0.4180 +285671 391189 0.5930 +285672 643155 0.6360 +285672 100132916 0.4290 +285704 345757 0.4460 +285704 644168 0.8780 +285755 345895 0.4840 +285755 374407 0.4010 +285761 619208 0.4460 +285782 319100 0.4160 +285782 404217 0.6200 +285800 440829 0.4950 +285800 643965 0.4090 +285848 348938 0.8610 +285848 375775 0.5360 +285848 643418 0.7950 +285852 340205 0.7170 +285852 342510 0.7820 +285852 100131439 0.5720 +285855 317781 0.4790 +285855 342538 0.6100 +285855 343068 0.5600 +285855 343070 0.5600 +285855 344758 0.4070 +285855 345630 0.4900 +285855 347487 0.8490 +285855 374659 0.6430 +285855 387338 0.4390 +285855 387712 0.4360 +285855 390999 0.5600 +285855 391002 0.5600 +285855 400735 0.5600 +285855 400736 0.5600 +285855 440560 0.5600 +285855 440561 0.5600 +285855 441873 0.5600 +285855 641776 0.6590 +285855 643909 0.6590 +285855 645051 0.5980 +285855 645073 0.5980 +285855 645359 0.5600 +285855 653619 0.5600 +285855 692312 0.4890 +285855 728524 0.6590 +285855 729396 0.5980 +285855 729422 0.5980 +285855 729428 0.5980 +285855 729431 0.5980 +285855 729442 0.5980 +285855 729447 0.5980 +285855 729528 0.5600 +285855 100008586 0.5980 +285855 100128731 0.4470 +285855 100132399 0.5980 +285855 100287482 0.6860 +285855 100526842 0.9330 +285855 100529097 0.8480 +285855 100529239 0.9270 +285855 100996746 0.6590 +285855 101929983 0.5600 +285855 102724473 0.5980 +285855 105180390 0.6590 +285855 105180391 0.6590 +285855 114483834 0.5070 +285877 390431 0.5290 +285888 643866 0.4240 +285888 768239 0.8920 +285955 346528 0.4180 +285955 441273 0.6290 +285955 442590 0.9990 +285955 729597 0.7650 +285955 100310812 0.7690 +285966 340307 0.4470 +285971 349136 0.4130 +285971 392843 0.4470 +285971 474344 0.4790 +285971 100130958 0.4490 +285971 100527949 0.5210 +285973 440738 0.5770 +285973 441925 0.4190 +285973 643246 0.4120 +285989 387893 0.4490 +285989 641372 0.5230 +286006 375341 0.4450 +286046 474354 0.4250 +286053 286514 0.4040 +286053 347541 0.4750 +286053 387082 0.9620 +286053 493861 0.9980 +286075 340390 0.4990 +286075 441381 0.4030 +286075 541565 0.4360 +286077 401138 0.6400 +286077 727957 0.6330 +286077 100533106 0.4610 +286144 345630 0.4520 +286144 388931 0.4440 +286144 390445 0.5700 +286144 440400 0.4330 +286144 441518 0.4410 +286151 347475 0.4760 +286151 494188 0.5630 +286151 494551 0.5890 +286183 340204 0.4140 +286183 342850 0.4180 +286183 387707 0.4400 +286183 493901 0.4760 +286183 646892 0.4310 +286187 375190 0.4040 +286187 387885 0.4150 +286187 648791 0.5400 +286187 728689 0.4320 +286187 100129278 0.4140 +286187 100652824 0.4120 +286204 338094 0.4610 +286207 348807 0.4170 +286207 387885 0.4390 +286207 388633 0.4380 +286234 375686 0.4600 +286256 389812 0.6710 +286256 391253 0.4340 +286256 392399 0.7860 +286256 414332 0.6060 +286257 375748 0.4560 +286257 105375355 0.5430 +286262 286676 0.4860 +286262 339768 0.5480 +286262 374462 0.5190 +286262 375611 0.4200 +286262 388551 0.6100 +286262 389207 0.9280 +286262 494513 0.7420 +286262 643226 0.9230 +286262 100529144 0.4610 +286319 731220 0.4860 +286319 100129669 0.4350 +286336 389658 0.4470 +286380 647042 0.4270 +286410 389668 0.6440 +286436 317772 0.4110 +286436 440093 0.8620 +286436 440686 0.8620 +286436 653604 0.8620 +286451 388552 0.4990 +286464 347365 0.4400 +286464 347404 0.4710 +286464 388701 0.5060 +286464 389320 0.4870 +286464 401024 0.4770 +286464 401551 0.4450 +286499 390437 0.4050 +286499 441525 0.5410 +286499 541466 0.4630 +286514 493861 0.4890 +286530 340533 0.8530 +286530 374403 0.4450 +286530 102723407 0.6220 +286676 345193 0.5760 +286676 375611 0.4390 +286676 388551 0.4370 +286676 389207 0.5120 +286676 440699 0.4770 +286676 494513 0.5050 +286676 100506658 0.5630 +286749 387332 0.5730 +286749 399949 0.5580 +286749 728340 0.5080 +286753 400258 0.6280 +286753 641649 0.5080 +286753 642515 0.4460 +286753 646658 0.4600 +286753 727857 0.9200 +286753 729359 0.6430 +286827 390231 0.4040 +286827 440730 0.4550 +286887 319101 0.4140 +286887 338785 0.4430 +286887 374454 0.5800 +287015 347541 0.4460 +287015 390231 0.5430 +287015 391714 0.4470 +287015 399473 0.4530 +287015 399814 0.6040 +317649 340529 0.4040 +317649 353267 0.5670 +317649 392517 0.6540 +317649 645974 0.4040 +317649 727936 0.4340 +317662 100130742 0.4790 +317671 387849 0.4160 +317701 338751 0.4310 +317701 340980 0.4470 +317701 341276 0.4810 +317701 343169 0.4470 +317701 353345 0.5310 +317701 390036 0.4480 +317701 390067 0.4190 +317701 390079 0.5460 +317701 391195 0.4470 +317701 401666 0.5070 +317703 338751 0.4690 +317703 340980 0.4790 +317703 341276 0.5180 +317703 342926 0.4180 +317703 343169 0.4790 +317703 390036 0.4800 +317703 390067 0.4470 +317703 390079 0.5860 +317703 391195 0.4790 +317703 401666 0.5440 +317719 341418 0.4310 +317719 392399 0.4150 +317719 101927581 0.4110 +317749 339229 0.4720 +317749 653404 0.4660 +317749 653820 0.4850 +317749 728294 0.5000 +317749 728340 0.4730 +317749 729533 0.4340 +317754 388468 0.7020 +317754 102724631 0.4620 +317761 642636 0.4650 +317761 644186 0.8220 +317772 333932 0.9440 +317772 440689 0.8460 +317772 554313 0.9510 +317772 653604 0.9750 +317772 723790 0.8190 +317772 114483833 0.4050 +317781 387129 0.4070 +317781 387509 0.4550 +317781 692312 0.6120 +319101 338785 0.4330 +319101 342574 0.4040 +319101 374454 0.4360 +319101 100505753 0.4160 +326340 344018 0.5750 +326340 353238 0.5900 +326340 359787 0.4790 +326340 441161 0.6110 +326625 339230 0.4320 +326625 389434 0.8390 +333926 353116 0.4220 +333932 387893 0.9160 +333932 400569 0.8000 +333932 404672 0.8210 +333932 440093 0.8710 +333932 440686 0.9000 +333932 440689 0.8990 +333932 554313 0.9660 +333932 653604 0.9310 +333932 723790 0.9630 +333932 101928147 0.4470 +337867 497661 0.4740 +337867 100131755 0.4750 +337878 337879 0.9620 +337878 337880 0.9140 +337878 337882 0.7000 +337878 337959 0.5810 +337878 337960 0.7760 +337878 337966 0.7220 +337878 337967 0.7730 +337878 337968 0.6710 +337878 337970 0.8790 +337878 337972 0.4650 +337878 337975 0.7900 +337878 337976 0.7850 +337878 337977 0.6240 +337878 337978 0.6680 +337878 337979 0.7080 +337878 342574 0.5540 +337878 353323 0.4340 +337878 386675 0.4450 +337878 386678 0.6710 +337878 386680 0.4490 +337878 388533 0.4050 +337878 388818 0.7320 +337878 643803 0.8510 +337878 643812 0.5430 +337878 728224 0.4420 +337878 728255 0.5700 +337878 100131902 0.4050 +337878 100288323 0.6700 +337878 100505753 0.4710 +337878 112441428 0.7200 +337879 337880 0.9770 +337879 337882 0.7620 +337879 337959 0.5410 +337879 337960 0.7590 +337879 337966 0.7980 +337879 337967 0.7650 +337879 337968 0.7460 +337879 337970 0.8780 +337879 337972 0.5370 +337879 337975 0.7800 +337879 337976 0.7790 +337879 337977 0.6160 +337879 337978 0.6340 +337879 337979 0.7720 +337879 342574 0.4520 +337879 353323 0.4420 +337879 386675 0.4360 +337879 386678 0.6930 +337879 386680 0.4700 +337879 387267 0.5270 +337879 388818 0.8410 +337879 643803 0.9160 +337879 643812 0.7260 +337879 728224 0.4880 +337879 728255 0.6360 +337879 728279 0.5330 +337879 100131902 0.6210 +337879 100132476 0.4650 +337879 100288323 0.6730 +337879 100505753 0.6590 +337879 100533177 0.4020 +337879 112441428 0.7200 +337880 337882 0.6810 +337880 337960 0.7030 +337880 337966 0.7030 +337880 337967 0.7430 +337880 337968 0.6350 +337880 337970 0.5730 +337880 337975 0.7190 +337880 337976 0.6900 +337880 337977 0.4720 +337880 337978 0.5000 +337880 337979 0.7010 +337880 342574 0.6200 +337880 353288 0.4510 +337880 353332 0.6720 +337880 386678 0.4060 +337880 386684 0.5990 +337880 387267 0.4200 +337880 388818 0.6260 +337880 643803 0.8520 +337880 643812 0.4470 +337880 653240 0.5490 +337880 728224 0.6370 +337880 728255 0.4780 +337880 728279 0.4370 +337880 728318 0.5300 +337880 100131902 0.6130 +337880 100132476 0.8130 +337880 100505753 0.4050 +337880 100533177 0.4130 +337880 112441428 0.6700 +337882 337959 0.5780 +337882 337970 0.8570 +337882 337971 0.4390 +337882 337972 0.6980 +337882 342574 0.5630 +337882 386675 0.5070 +337882 386678 0.6320 +337882 386680 0.5260 +337882 440050 0.4730 +337882 643803 0.4880 +337882 728224 0.4220 +337882 100132476 0.5200 +337882 100505753 0.5420 +337959 337960 0.4110 +337959 337963 0.4140 +337959 337969 0.6010 +337959 337970 0.7320 +337959 337972 0.5900 +337959 337973 0.6230 +337959 347169 0.5730 +337959 353133 0.4040 +337959 353139 0.4350 +337959 353140 0.4450 +337959 353141 0.4340 +337959 353145 0.4010 +337959 386678 0.4110 +337959 386680 0.4440 +337959 100170229 0.6670 +337960 337963 0.4360 +337960 337966 0.7080 +337960 337967 0.7880 +337960 337968 0.7350 +337960 337975 0.8010 +337960 337976 0.7990 +337960 337977 0.4960 +337960 337978 0.5960 +337960 337979 0.8090 +337960 387267 0.5440 +337960 388818 0.7260 +337960 440051 0.4770 +337960 643803 0.8660 +337960 643812 0.7180 +337960 728255 0.6600 +337960 728279 0.5180 +337960 730755 0.4460 +337960 100131902 0.5810 +337960 112441428 0.7710 +337966 337967 0.8890 +337966 337968 0.9220 +337966 337975 0.8060 +337966 337976 0.8050 +337966 337977 0.5990 +337966 337978 0.6340 +337966 337979 0.8850 +337966 353323 0.4710 +337966 353333 0.5820 +337966 387267 0.6690 +337966 388818 0.8080 +337966 439915 0.5050 +337966 440051 0.5280 +337966 643803 0.7450 +337966 728255 0.6100 +337966 728279 0.5050 +337966 100131902 0.5630 +337966 100505753 0.5910 +337966 112441428 0.7200 +337967 337968 0.8780 +337967 337975 0.7820 +337967 337976 0.7900 +337967 337977 0.5060 +337967 337978 0.5880 +337967 337979 0.8040 +337967 353323 0.5350 +337967 353332 0.4060 +337967 387267 0.5830 +337967 388818 0.7950 +337967 440051 0.4460 +337967 643803 0.8040 +337967 728255 0.6820 +337967 100131902 0.6000 +337967 100505753 0.5270 +337967 112441428 0.7900 +337968 337973 0.5940 +337968 337975 0.8780 +337968 337976 0.7980 +337968 337977 0.7170 +337968 337978 0.6960 +337968 337979 0.8880 +337968 387267 0.7190 +337968 388818 0.8080 +337968 440051 0.4470 +337968 643803 0.7840 +337968 728255 0.6630 +337968 100131902 0.6040 +337968 112441428 0.7720 +337969 337970 0.7510 +337969 337971 0.5350 +337969 337972 0.4110 +337969 337973 0.5000 +337969 337974 0.4430 +337969 337976 0.5360 +337969 337979 0.4500 +337969 728299 0.4400 +337970 337971 0.4530 +337970 337972 0.4830 +337970 337973 0.4260 +337970 337974 0.4380 +337970 337979 0.5910 +337970 353139 0.4320 +337970 353140 0.4350 +337970 353141 0.4310 +337970 386675 0.5950 +337970 386678 0.7300 +337970 386680 0.6020 +337970 653240 0.4490 +337970 728224 0.4830 +337970 728299 0.4120 +337970 100132476 0.4880 +337971 337972 0.4810 +337971 337973 0.4800 +337971 337974 0.5250 +337971 337979 0.4420 +337971 728299 0.4590 +337971 100506243 0.6920 +337972 337974 0.4200 +337972 337976 0.5010 +337972 337979 0.4110 +337972 386675 0.5260 +337972 386678 0.5800 +337972 386680 0.5440 +337973 337974 0.5090 +337973 337977 0.5930 +337973 337978 0.6360 +337973 337979 0.4420 +337973 646627 0.4920 +337973 728299 0.4270 +337974 337979 0.4540 +337974 390260 0.5900 +337974 392309 0.5810 +337975 337976 0.4590 +337975 337977 0.6670 +337975 337978 0.6160 +337975 337979 0.8980 +337975 387267 0.6200 +337975 388818 0.8200 +337975 643803 0.8790 +337975 643812 0.7860 +337975 728255 0.5460 +337975 100131902 0.6150 +337975 100505753 0.5710 +337975 112441428 0.8740 +337976 337977 0.6370 +337976 337978 0.6160 +337976 337979 0.8810 +337976 387267 0.5070 +337976 388818 0.8030 +337976 643803 0.8330 +337976 643812 0.7290 +337976 728255 0.5890 +337976 728299 0.5770 +337976 100131902 0.5790 +337976 112441428 0.8700 +337977 337978 0.8570 +337977 337979 0.6660 +337977 342574 0.4280 +337977 387267 0.4120 +337977 388818 0.6570 +337977 574414 0.4130 +337977 643803 0.4960 +337977 100288323 0.8560 +337977 112441428 0.5700 +337978 337979 0.6160 +337978 388818 0.6050 +337978 643803 0.5830 +337978 728279 0.5140 +337978 100131902 0.5320 +337978 100288323 0.8680 +337978 112441428 0.6210 +337979 387267 0.6250 +337979 388818 0.8440 +337979 439915 0.4180 +337979 440051 0.4790 +337979 643803 0.8500 +337979 643812 0.6700 +337979 728255 0.6190 +337979 728279 0.5800 +337979 728299 0.6050 +337979 100131902 0.6000 +337979 112441428 0.7940 +337985 729447 0.5910 +338324 388697 0.5070 +338328 390940 0.4470 +338328 100169851 0.4180 +338328 101928108 0.4800 +338339 387837 0.5580 +338376 440093 0.4140 +338376 440686 0.4140 +338376 653604 0.4140 +338382 347688 0.6500 +338382 347733 0.6500 +338398 342372 0.5720 +338398 346562 0.4470 +338398 353164 0.5650 +338398 390265 0.4180 +338398 402135 0.4700 +338557 346562 0.6810 +338557 350383 0.4470 +338596 494188 0.4020 +338657 339512 0.4300 +338657 347744 0.6130 +338657 728591 0.4240 +338661 100289187 0.6530 +338674 442444 0.5150 +338675 390927 0.5070 +338675 554251 0.5700 +338675 653404 0.5940 +338675 727857 0.4760 +338699 388468 0.4040 +338699 402055 0.4190 +338699 404785 0.4030 +338699 554226 0.4020 +338699 641455 0.4040 +338707 100507421 0.4100 +338751 386746 0.4180 +338751 390084 0.4690 +338761 338872 0.5580 +338761 342035 0.4050 +338761 388581 0.4340 +338761 390664 0.4780 +338773 647024 0.4130 +338785 339291 0.4260 +338785 342574 0.5960 +338785 349633 0.4650 +338785 374454 0.4700 +338811 440073 0.4350 +338811 728215 0.5370 +338811 101928603 0.4750 +338872 387911 0.7810 +338872 388581 0.6000 +338872 389941 0.4460 +338872 101059915 0.4470 +338879 392399 0.5630 +338879 111216276 0.4790 +338917 392255 0.6520 +338917 729440 0.4180 +338949 389763 0.5870 +338949 390197 0.5630 +338949 392307 0.6460 +338949 100526794 0.5370 +338949 107983988 0.4450 +339105 349075 0.4150 +339105 100505385 0.4150 +339122 353116 0.4520 +339122 100128327 0.4450 +339122 100534599 0.6160 +339145 400935 0.4890 +339145 408187 0.4420 +339168 353149 0.4200 +339168 388333 0.4350 +339168 390243 0.5250 +339168 643664 0.4470 +339168 728318 0.4340 +339168 100505724 0.5780 +339168 101060321 0.4160 +339210 389558 0.4370 +339210 100131137 0.5710 +339221 340485 0.7980 +339221 727897 0.4430 +339221 100131980 0.5410 +339229 388789 0.4810 +339229 401207 0.4350 +339229 729515 0.5010 +339229 101928527 0.4780 +339230 343702 0.5290 +339230 643866 0.5730 +339230 728276 0.5320 +339287 345651 0.5840 +339291 339398 0.4780 +339291 339456 0.4590 +339291 339768 0.5960 +339291 340665 0.4970 +339291 340706 0.4590 +339291 347730 0.4370 +339291 375387 0.4580 +339291 387890 0.4460 +339291 389257 0.6090 +339291 389816 0.4770 +339291 441549 0.5950 +339302 388531 0.4230 +339302 415117 0.5450 +339302 594855 0.9040 +339327 339977 0.4080 +339327 391196 0.4380 +339327 442038 0.4120 +339345 344018 0.4200 +339345 346673 0.9590 +339345 359787 0.4180 +339345 373863 0.7670 +339345 375316 0.4600 +339345 402381 0.6880 +339345 100526761 0.6710 +339390 654346 0.4500 +339398 344657 0.4230 +339398 376132 0.4930 +339398 390205 0.4310 +339398 474354 0.4890 +339403 342898 0.5220 +339403 350383 0.4560 +339403 401138 0.4230 +339403 646625 0.4160 +339416 374407 0.4320 +339416 441549 0.5410 +339416 548645 0.4300 +339416 552891 0.4300 +339416 647042 0.4380 +339416 730159 0.6330 +339448 653282 0.4160 +339448 728036 0.4160 +339448 728042 0.4160 +339448 728062 0.4160 +339448 728072 0.4120 +339448 728082 0.4160 +339448 728090 0.4160 +339451 374887 0.4290 +339456 340204 0.4050 +339500 388962 0.5090 +339500 389677 0.4670 +339501 644591 0.4790 +339501 646851 0.5270 +339501 653505 0.4340 +339501 653598 0.5140 +339501 730262 0.5070 +339512 347475 0.4960 +339512 728591 0.4780 +339541 389668 0.4800 +339541 401409 0.4890 +339541 101928603 0.8750 +339559 387597 0.5060 +339665 347051 0.4210 +339665 440804 0.5070 +339665 646851 0.5070 +339669 399693 0.5060 +339745 553115 0.7250 +339745 102723526 0.4120 +339761 341418 0.4800 +339761 387911 0.4110 +339761 403284 0.5720 +339761 606495 0.4370 +339766 642475 0.4090 +339766 728780 0.4200 +339768 389207 0.7400 +339768 390205 0.4190 +339768 390261 0.4020 +339768 494513 0.5230 +339768 643226 0.6070 +339768 653319 0.5600 +339768 728194 0.4100 +339778 388701 0.8000 +339778 389799 0.8000 +339778 440585 0.8160 +339778 730112 0.8080 +339779 374973 0.5530 +339779 378925 0.4750 +339779 401565 0.4770 +339779 440956 0.5060 +339779 100132476 0.4770 +339779 100526794 0.4340 +339804 728734 0.5290 +339829 345643 0.6390 +339829 345895 0.8760 +339829 352909 0.8320 +339829 374407 0.4510 +339829 387885 0.4780 +339829 388389 0.8180 +339829 646851 0.5940 +339834 375567 0.4520 +339834 642636 0.5450 +339834 101928601 0.9130 +339855 340359 0.4110 +339855 493829 0.4670 +339896 339983 0.8050 +339965 653567 0.5400 +339965 100129583 0.4110 +339965 100631383 0.4360 +339967 390181 0.4250 +339976 374378 0.4180 +339976 441054 0.4070 +339976 448831 0.4790 +339977 389206 0.4570 +339977 414149 0.4460 +339983 492307 0.4620 +339983 554235 0.8240 +340024 388364 0.6040 +340061 641700 0.4340 +340075 347527 0.7060 +340096 342900 0.4390 +340096 474381 0.6770 +340096 474382 0.6790 +340096 653657 0.4600 +340096 100288687 0.4950 +340146 346171 0.4180 +340146 347734 0.8480 +340168 359787 0.8230 +340168 503582 0.4340 +340168 100129128 0.4320 +340204 342850 0.4790 +340204 353324 0.4180 +340204 387707 0.4790 +340204 388333 0.4740 +340204 400830 0.4180 +340204 442247 0.4490 +340204 493901 0.5700 +340204 646603 0.5780 +340204 646892 0.4800 +340204 647286 0.4720 +340204 100132916 0.4340 +340204 100169851 0.4780 +340204 102723631 0.4120 +340205 342510 0.5360 +340205 375033 0.4060 +340205 100131439 0.4470 +340252 390081 0.4610 +340252 100529239 0.4340 +340260 343472 0.4070 +340260 343930 0.5240 +340260 441061 0.5640 +340267 389558 0.5100 +340273 100133941 0.4500 +340277 349075 0.4840 +340277 390059 0.5710 +340277 390927 0.4600 +340307 375056 0.7800 +340351 388698 0.4570 +340351 644041 0.4420 +340359 389668 0.4280 +340359 390594 0.4410 +340359 401265 0.4490 +340390 342850 0.5340 +340390 387332 0.4850 +340390 399949 0.4850 +340390 441381 0.4790 +340390 727957 0.4550 +340393 347732 0.7200 +340393 378807 0.7200 +340393 100130348 0.7200 +340419 343637 0.5540 +340481 387921 0.5920 +340485 375298 0.4130 +340485 653308 0.6060 +340526 340595 0.5180 +340533 780776 0.4780 +340542 340543 0.6290 +340562 347365 0.4390 +340562 389874 0.4290 +340562 400757 0.4550 +340562 440087 0.6070 +340562 642475 0.4630 +340578 347442 0.7800 +340595 340596 0.6180 +340595 388015 0.6270 +340595 441518 0.4730 +340602 440093 0.4340 +340602 440686 0.4340 +340602 653604 0.4400 +340602 728118 0.5640 +340602 100170841 0.5830 +340654 387787 0.4320 +340665 346673 0.8230 +340665 574537 0.6860 +340665 100861540 0.9250 +340706 341640 0.4780 +340706 374354 0.5810 +340706 375307 0.4610 +340706 389761 0.4280 +340706 389762 0.4740 +340719 373863 0.7540 +340719 388610 0.4020 +340719 402381 0.4270 +340745 387695 0.5710 +340745 402635 0.5580 +340745 100287284 0.6700 +340784 431707 0.5020 +340784 100534599 0.5720 +340811 653308 0.4330 +340895 728734 0.4600 +340900 342346 0.5050 +340900 342909 0.4760 +340980 375341 0.4340 +340980 391196 0.5070 +340980 401427 0.5240 +340980 445372 0.4760 +340990 375611 0.5960 +340990 388551 0.7570 +340990 643226 0.4840 +340990 729330 0.5870 +341019 349075 0.4020 +341019 493860 0.5790 +341032 399947 0.4790 +341032 654502 0.4800 +341116 643680 0.9290 +341152 391196 0.5120 +341152 400720 0.4440 +341152 401427 0.5420 +341208 387748 0.4470 +341208 387804 0.4490 +341208 387890 0.4520 +341277 390075 0.6600 +341277 403244 0.4030 +341392 359710 0.4040 +341392 376497 0.4690 +341392 387778 0.4470 +341392 391003 0.4750 +341405 401720 0.5050 +341418 727764 0.7200 +341418 128966690 0.7200 +341567 374768 0.5250 +341567 399693 0.4420 +341567 474381 0.4140 +341567 474382 0.4230 +341567 554313 0.5430 +341640 390199 0.4280 +341640 392392 0.4220 +341676 474354 0.4800 +341799 342865 0.5060 +341799 353355 0.5990 +341799 374928 0.5810 +341799 389206 0.4450 +341799 100529215 0.6950 +341880 442184 0.6650 +341883 401474 0.5280 +341883 653720 0.6210 +341883 100505989 0.6100 +341947 440567 0.5400 +342035 388121 0.6050 +342096 389384 0.4180 +342096 401647 0.4140 +342096 728741 0.4590 +342096 729442 0.4470 +342132 349075 0.4290 +342184 345456 0.7600 +342184 375189 0.8100 +342184 391189 0.4500 +342346 342931 0.4030 +342346 727897 0.4420 +342346 729974 0.4030 +342371 401236 0.4580 +342371 100288687 0.5280 +342372 346562 0.5660 +342372 353164 0.5720 +342510 100131439 0.6100 +342538 347487 0.6000 +342538 387129 0.4800 +342538 100505478 0.4770 +342538 100526842 0.9380 +342538 100529097 0.4630 +342538 100529239 0.4310 +342574 353288 0.5990 +342574 390792 0.4790 +342574 441376 0.5910 +342574 448835 0.4360 +342574 574414 0.4960 +342574 728224 0.4680 +342574 100132386 0.4480 +342574 100132476 0.5210 +342667 399949 0.4150 +342667 414332 0.4220 +342850 353324 0.4460 +342850 387707 0.5090 +342850 388333 0.4800 +342850 493901 0.5440 +342850 646892 0.5070 +342850 647286 0.4760 +342850 100132916 0.4450 +342865 654790 0.4180 +342892 442444 0.4520 +342892 645864 0.5070 +342892 728661 0.4890 +342898 440387 0.5790 +342898 653808 0.7310 +342900 343068 0.5720 +342900 343070 0.4850 +342900 359787 0.4880 +342900 360030 0.5810 +342900 390245 0.4580 +342900 391769 0.4370 +342900 440561 0.5720 +342900 441873 0.5200 +342900 442247 0.4060 +342900 503834 0.8250 +342900 503835 0.7460 +342900 647589 0.5530 +342900 653619 0.5990 +342900 653657 0.7010 +342900 728118 0.4180 +342900 100033411 0.7350 +342900 100129128 0.8030 +342900 100288687 0.7490 +342908 374819 0.4320 +342908 400224 0.4130 +342908 474170 0.4740 +342909 493860 0.4310 +342918 388419 0.5410 +342918 100507421 0.5070 +342931 342933 0.4280 +342931 442247 0.7950 +342931 729974 0.7850 +342933 401427 0.4180 +342977 344018 0.5190 +342977 346673 0.6850 +342977 359787 0.5810 +342977 373863 0.8070 +342977 375316 0.4360 +342977 402381 0.6160 +342977 431707 0.4180 +342977 100526761 0.5930 +342979 343171 0.4130 +342979 439996 0.4550 +342979 646457 0.4760 +343035 388939 0.4030 +343035 401124 0.4890 +343035 768206 0.5170 +343066 378925 0.4210 +343066 401934 0.6230 +343066 100885850 0.4050 +343068 347487 0.5390 +343068 353143 0.4180 +343068 374659 0.4380 +343068 387129 0.5600 +343068 400735 0.6860 +343068 440561 0.4920 +343068 503835 0.4550 +343068 641776 0.4930 +343068 643909 0.4930 +343068 645051 0.4480 +343068 645073 0.4480 +343068 653619 0.6480 +343068 653657 0.5050 +343068 728524 0.4930 +343068 729396 0.4480 +343068 729422 0.4480 +343068 729428 0.4480 +343068 729431 0.4480 +343068 729442 0.4480 +343068 729447 0.4480 +343068 100008586 0.4480 +343068 100132399 0.4480 +343068 100287482 0.5390 +343068 100505478 0.5600 +343068 100526842 0.5800 +343068 100529097 0.5520 +343068 100529239 0.5690 +343068 100996746 0.4930 +343068 102724473 0.4480 +343068 105180390 0.4930 +343068 105180391 0.4930 +343069 390748 0.4190 +343069 391003 0.4160 +343069 400735 0.4060 +343069 401992 0.4350 +343069 440560 0.4600 +343069 440563 0.5870 +343070 347487 0.5390 +343070 374659 0.4380 +343070 387129 0.5600 +343070 442247 0.5730 +343070 641776 0.4930 +343070 643909 0.4930 +343070 645051 0.4480 +343070 645073 0.4480 +343070 653192 0.5220 +343070 653269 0.4890 +343070 653657 0.6150 +343070 728524 0.4930 +343070 729396 0.4480 +343070 729422 0.4480 +343070 729428 0.4480 +343070 729431 0.4480 +343070 729442 0.4480 +343070 729447 0.4480 +343070 100008586 0.4480 +343070 100129128 0.4630 +343070 100132399 0.4480 +343070 100287482 0.5390 +343070 100505478 0.5600 +343070 100526842 0.5800 +343070 100529097 0.5520 +343070 100529239 0.5690 +343070 100996746 0.4930 +343070 102724473 0.4480 +343070 105180390 0.4930 +343070 105180391 0.4930 +343071 387680 0.5190 +343071 391004 0.8310 +343071 440153 0.5770 +343071 541578 0.4830 +343071 100131827 0.4740 +343099 374618 0.4020 +343099 100506144 0.4780 +343169 387273 0.5170 +343169 391196 0.5100 +343169 401427 0.5110 +343169 440050 0.4450 +343169 440051 0.5750 +343169 441933 0.5200 +343171 391196 0.5120 +343171 401427 0.5500 +343521 389177 0.4430 +343521 401565 0.4040 +343563 353149 0.4800 +343563 728137 0.4470 +343563 100289087 0.4740 +343563 100533464 0.6010 +343578 102288414 0.5070 +343990 346689 0.4040 +343990 402117 0.4010 +343990 474344 0.5100 +343990 100130274 0.5070 +344018 346673 0.5980 +344018 353238 0.5060 +344018 359787 0.4180 +344018 402381 0.9470 +344018 431707 0.9680 +344018 441161 0.4140 +344018 100125288 0.4220 +344018 100526761 0.7340 +344022 391003 0.4470 +344022 391013 0.6270 +344022 100131439 0.4800 +344148 403239 0.4240 +344191 347365 0.5080 +344387 388960 0.4450 +344387 404217 0.4610 +344558 651746 0.4180 +344561 350383 0.4500 +344561 353345 0.4470 +344561 390212 0.5140 +344657 389816 0.4700 +344657 440695 0.4200 +344657 100131897 0.4850 +344752 375611 0.4960 +344752 388698 0.5610 +344758 387129 0.4070 +344758 387509 0.4860 +344787 375337 0.4020 +344787 390081 0.4320 +344787 390648 0.6210 +344838 390212 0.4020 +344838 100101467 0.4540 +344892 390059 0.5040 +344892 390082 0.5040 +344892 390155 0.5230 +344892 390157 0.5030 +344892 390261 0.4220 +344892 390275 0.5020 +344892 390892 0.5180 +344892 391196 0.5100 +344892 401427 0.6610 +344892 442184 0.5080 +345051 347487 0.4100 +345051 100287482 0.4100 +345051 100526842 0.5790 +345051 105378803 0.4200 +345079 494551 0.4120 +345079 644672 0.4400 +345079 728642 0.4400 +345079 100287520 0.4030 +345193 387597 0.4590 +345193 388531 0.5430 +345193 392617 0.4100 +345193 440435 0.7730 +345222 347732 0.5410 +345222 388633 0.4470 +345275 644145 0.4060 +345456 353376 0.4990 +345456 375189 0.9320 +345456 387521 0.4800 +345456 392862 0.5510 +345456 440093 0.4510 +345456 440686 0.4510 +345456 442721 0.4930 +345456 642489 0.5230 +345456 653604 0.4520 +345456 653857 0.4530 +345456 100302736 0.4930 +345456 100529144 0.4800 +345462 646799 0.5840 +345611 388646 0.4500 +345611 440738 0.5550 +345630 347744 0.5480 +345630 387338 0.4160 +345630 392433 0.4390 +345630 401250 0.4650 +345630 641776 0.4440 +345630 643909 0.4440 +345630 728524 0.4440 +345630 100996746 0.4440 +345630 105180390 0.4440 +345630 105180391 0.4440 +345630 114483834 0.4140 +345643 345895 0.6630 +345643 352909 0.5470 +345643 388389 0.5220 +345643 388633 0.4690 +345643 440829 0.4440 +345643 647309 0.9010 +345651 375189 0.4920 +345651 100287399 0.4270 +345757 353189 0.4010 +345757 389396 0.4710 +345757 390201 0.4470 +345778 387990 0.6780 +345778 390437 0.4490 +345778 401505 0.7830 +345778 440574 0.7210 +345778 100188893 0.6100 +345895 352909 0.7820 +345895 374407 0.6430 +345895 388389 0.8170 +345895 399949 0.4080 +345895 401551 0.5290 +345895 728194 0.4610 +345930 494188 0.5860 +345930 554251 0.5900 +345930 101059938 0.5080 +345930 101059953 0.5070 +346007 375298 0.8570 +346007 388939 0.8410 +346007 768206 0.8000 +346157 375444 0.4100 +346157 401251 0.5420 +346171 359787 0.7460 +346171 388015 0.4010 +346171 441161 0.4390 +346171 100101490 0.4180 +346288 349075 0.5170 +346525 100170229 0.5050 +346562 348980 0.6650 +346562 353164 0.4290 +346562 353299 0.4420 +346562 431704 0.8670 +346562 105372280 0.6600 +346606 646480 0.4110 +346653 401666 0.5750 +346673 359787 0.5150 +346673 388553 0.7860 +346673 402381 0.7360 +346673 644186 0.4330 +346673 100526761 0.6800 +346689 347475 0.4010 +346689 389730 0.4740 +346689 391003 0.5100 +347051 643382 0.4750 +347148 594857 0.6490 +347168 100287404 0.5940 +347169 100130733 0.4740 +347169 100170229 0.6200 +347240 348807 0.4240 +347252 374946 0.4250 +347252 494188 0.4280 +347273 442721 0.4840 +347273 100526694 0.4030 +347344 729201 0.4180 +347365 403282 0.6670 +347442 389730 0.5440 +347442 389763 0.4340 +347454 360023 0.6010 +347454 728689 0.5170 +347468 594857 0.4460 +347475 401612 0.4670 +347487 374659 0.6010 +347487 387129 0.8490 +347487 387712 0.4620 +347487 390999 0.5390 +347487 391002 0.5390 +347487 400735 0.5390 +347487 400736 0.5390 +347487 440560 0.5390 +347487 440561 0.5390 +347487 441873 0.5390 +347487 613227 0.4800 +347487 641776 0.6640 +347487 643909 0.6640 +347487 645051 0.6260 +347487 645073 0.6260 +347487 645359 0.5390 +347487 653619 0.5390 +347487 654364 0.5070 +347487 728524 0.6640 +347487 728689 0.7160 +347487 729396 0.6260 +347487 729422 0.6260 +347487 729428 0.6260 +347487 729431 0.6260 +347487 729442 0.6260 +347487 729447 0.6260 +347487 729528 0.5390 +347487 100008586 0.6260 +347487 100132399 0.6260 +347487 100505478 0.6860 +347487 100526842 0.9320 +347487 100529097 0.8310 +347487 100529239 0.8980 +347487 100996746 0.6640 +347487 101929983 0.5390 +347487 102724473 0.6260 +347487 105180390 0.6640 +347487 105180391 0.6640 +347487 114483834 0.4690 +347541 389766 0.5690 +347541 493861 0.4260 +347541 728137 0.4090 +347541 100289087 0.4270 +347688 347733 0.4850 +347688 353238 0.4300 +347688 374969 0.4180 +347688 494551 0.6060 +347730 376132 0.4820 +347730 390205 0.5050 +347730 474354 0.4560 +347731 376132 0.4270 +347731 390205 0.4680 +347731 474354 0.4620 +347732 353189 0.4290 +347732 374768 0.5270 +347732 378807 0.9850 +347732 100129669 0.4180 +347732 100130348 0.8560 +347732 101928603 0.4740 +347733 374654 0.9190 +347733 374969 0.8810 +347733 400954 0.7820 +347736 404636 0.4260 +347736 441273 0.4350 +347744 375316 0.5070 +347744 392517 0.5740 +347744 402569 0.4080 +347744 100996928 0.5580 +347853 392255 0.4480 +347853 431707 0.4450 +347853 104909134 0.4220 +347862 352909 0.5620 +348013 100289187 0.5060 +348093 100287482 0.4710 +348110 100526783 0.8000 +348158 376497 0.4530 +348158 109703458 0.5400 +348235 378708 0.5610 +348262 441457 0.5140 +348262 728318 0.4430 +348303 493869 0.5040 +348487 388595 0.6540 +348487 391003 0.5820 +348487 440563 0.4160 +348487 645142 0.5700 +348487 649330 0.4160 +348654 548593 0.8860 +348793 375387 0.4690 +348807 352909 0.6180 +348807 387885 0.6050 +348938 643418 0.7620 +348995 728343 0.6250 +348995 729857 0.6070 +348995 100101267 0.7310 +349075 390927 0.5720 +349075 403273 0.4140 +349075 641339 0.5260 +349075 100507607 0.4230 +349136 392843 0.4890 +349136 440695 0.4500 +349136 100289678 0.4250 +349136 100527949 0.4330 +349149 375519 0.4250 +349149 100126572 0.4790 +349565 642475 0.6290 +349565 643677 0.4520 +349667 375387 0.4550 +349667 376132 0.4230 +349667 390205 0.4690 +349667 641649 0.4600 +350383 353345 0.4200 +350383 388419 0.4100 +352909 374407 0.4110 +352909 388389 0.8390 +352909 389203 0.5620 +352999 387104 0.6370 +352999 100130705 0.5590 +353091 100507436 0.5940 +353116 388743 0.4250 +353116 641700 0.4310 +353131 353132 0.9790 +353131 353133 0.9380 +353131 353134 0.9890 +353131 353135 0.8890 +353131 353137 0.9580 +353131 353139 0.9030 +353131 353140 0.9900 +353131 353141 0.9990 +353131 353142 0.8030 +353131 353143 0.9360 +353131 353144 0.9460 +353131 353145 0.8270 +353131 448834 0.4300 +353131 448835 0.9780 +353131 100129271 0.6650 +353132 353133 0.9880 +353132 353134 0.9450 +353132 353135 0.9870 +353132 353137 0.9020 +353132 353139 0.9060 +353132 353140 0.9250 +353132 353141 0.8990 +353132 353142 0.8000 +353132 353143 0.7970 +353132 353144 0.8290 +353132 353145 0.8040 +353132 386683 0.5910 +353132 388698 0.6330 +353132 448835 0.8050 +353132 100129271 0.4150 +353133 353134 0.9280 +353133 353135 0.9620 +353133 353137 0.9470 +353133 353139 0.9240 +353133 353140 0.9350 +353133 353141 0.9420 +353133 353142 0.8480 +353133 353143 0.8060 +353133 353144 0.8010 +353133 353145 0.8920 +353133 448834 0.5270 +353133 448835 0.8330 +353134 353135 0.9970 +353134 353137 0.9760 +353134 353139 0.8680 +353134 353140 0.9200 +353134 353141 0.9500 +353134 353142 0.7550 +353134 353143 0.8530 +353134 353144 0.7860 +353134 353145 0.7700 +353134 440051 0.5910 +353134 448835 0.8810 +353135 353137 0.9030 +353135 353139 0.7950 +353135 353140 0.8960 +353135 353141 0.8720 +353135 353142 0.7220 +353135 353143 0.8410 +353135 353144 0.7340 +353135 353145 0.8190 +353135 440051 0.5910 +353135 448835 0.8120 +353135 644974 0.4030 +353137 353139 0.8820 +353137 353140 0.9490 +353137 353141 0.9180 +353137 353142 0.7910 +353137 353143 0.7040 +353137 353144 0.7390 +353137 353145 0.8190 +353137 386683 0.5910 +353137 448835 0.8750 +353139 353140 0.9130 +353139 353141 0.7330 +353139 353142 0.8600 +353139 353143 0.6710 +353139 353144 0.7860 +353139 353145 0.8220 +353139 386675 0.4340 +353139 386678 0.4470 +353139 386680 0.6110 +353139 448834 0.5290 +353139 448835 0.8750 +353140 353141 0.9990 +353140 353142 0.7900 +353140 353143 0.7660 +353140 353144 0.7940 +353140 353145 0.9120 +353140 374454 0.4640 +353140 386675 0.4540 +353140 386678 0.4470 +353140 386680 0.4940 +353140 448834 0.4980 +353140 448835 0.9700 +353141 353142 0.7400 +353141 353143 0.5220 +353141 353144 0.7940 +353141 353145 0.9040 +353141 374454 0.4420 +353141 448835 0.9990 +353141 100129271 0.5330 +353142 353143 0.7780 +353142 353144 0.7040 +353142 353145 0.6860 +353142 388697 0.4620 +353142 388698 0.4230 +353142 448834 0.4170 +353142 448835 0.7390 +353142 574414 0.4120 +353143 353144 0.6190 +353143 353145 0.5560 +353143 387267 0.5440 +353143 388697 0.4070 +353143 388698 0.4930 +353143 448835 0.7310 +353144 353145 0.6400 +353144 386680 0.6150 +353144 388697 0.4180 +353144 388698 0.4460 +353144 401667 0.5140 +353144 448834 0.4300 +353144 448835 0.8010 +353145 386676 0.4590 +353145 448834 0.6540 +353145 448835 0.8260 +353149 374286 0.4360 +353149 388333 0.4720 +353149 388468 0.4320 +353149 643664 0.4790 +353149 100505591 0.4330 +353164 390054 0.4160 +353164 730130 0.4030 +353174 389118 0.4520 +353189 378807 0.4490 +353189 387775 0.5190 +353189 100130348 0.4380 +353238 388698 0.4030 +353238 441161 0.9650 +353238 494551 0.4040 +353238 653604 0.6040 +353267 392517 0.7380 +353274 441054 0.4320 +353274 730112 0.4430 +353288 386672 0.4050 +353288 386676 0.4470 +353288 386682 0.4160 +353288 390792 0.5140 +353299 389761 0.4320 +353299 431704 0.7710 +353299 643965 0.4290 +353322 441054 0.5060 +353323 353332 0.8460 +353323 386675 0.4910 +353323 386677 0.4670 +353323 386678 0.5210 +353323 386680 0.4230 +353323 386681 0.5300 +353323 386683 0.5080 +353323 386684 0.5410 +353323 386685 0.5680 +353323 643803 0.5200 +353323 728318 0.4660 +353323 100132476 0.4920 +353324 387707 0.4510 +353324 388333 0.4330 +353324 493901 0.4800 +353324 646892 0.4470 +353324 647286 0.4180 +353332 386677 0.7130 +353332 386679 0.6570 +353332 386680 0.7680 +353332 386681 0.6130 +353332 386683 0.5130 +353332 386684 0.4750 +353332 388818 0.6730 +353332 728318 0.6110 +353332 100132476 0.5800 +353333 386672 0.5850 +353333 386674 0.4430 +353333 386675 0.7350 +353333 386676 0.7150 +353333 386677 0.7120 +353333 386678 0.7560 +353333 386679 0.5850 +353333 386680 0.5840 +353333 386681 0.5720 +353333 386682 0.7090 +353333 386685 0.6590 +353376 375189 0.5010 +353376 653247 0.4600 +353376 100302736 0.8000 +353497 378708 0.5190 +353497 548593 0.6500 +353497 654254 0.4050 +353513 378948 0.5710 +353513 378951 0.5050 +353513 442862 0.8570 +353513 442867 0.9170 +353513 442868 0.9170 +353513 728132 0.5070 +353513 728395 0.4670 +359710 374877 0.4180 +359710 654790 0.4940 +359787 373863 0.4020 +359787 389421 0.7530 +359787 440093 0.5470 +359787 440686 0.5440 +359787 441161 0.4470 +359787 503582 0.5090 +359787 653604 0.5440 +359845 100506243 0.4180 +360023 375743 0.4510 +360030 391004 0.6040 +360030 441519 0.4180 +360030 503582 0.6350 +360030 503834 0.7200 +360030 503835 0.6280 +360030 647589 0.6450 +360030 727940 0.4800 +360030 100033411 0.6090 +360200 100170765 0.4180 +360203 387718 0.6180 +360203 389558 0.4790 +360203 441476 0.6700 +373156 493869 0.4440 +373156 653689 0.7520 +373509 100130348 0.4770 +373509 100288801 0.6650 +373509 101059915 0.4490 +373863 400961 0.4220 +374286 388333 0.4450 +374286 643664 0.4480 +374286 646643 0.4240 +374286 100505591 0.4040 +374286 101060321 0.4180 +374291 388753 0.4360 +374291 440567 0.6360 +374291 100532726 0.9000 +374354 389541 0.4300 +374355 728118 0.4180 +374355 730112 0.5200 +374355 100129543 0.5740 +374378 727897 0.4100 +374378 728819 0.6770 +374383 100507436 0.4580 +374393 388795 0.4060 +374393 493860 0.4500 +374395 388021 0.4480 +374395 389856 0.4760 +374395 653567 0.4710 +374395 101927367 0.4440 +374407 388389 0.4410 +374407 388633 0.4360 +374407 401024 0.4760 +374454 388533 0.6170 +374454 388698 0.6370 +374462 376132 0.4580 +374470 390927 0.4010 +374470 442444 0.4310 +374470 100129543 0.4470 +374569 440275 0.4930 +374618 400629 0.4470 +374618 647310 0.4180 +374659 377841 0.9020 +374659 387129 0.6430 +374659 390999 0.4380 +374659 391002 0.4380 +374659 400735 0.4380 +374659 400736 0.4380 +374659 440560 0.4380 +374659 440561 0.4380 +374659 441873 0.4380 +374659 641776 0.4970 +374659 643909 0.4970 +374659 645359 0.4380 +374659 653619 0.4380 +374659 654364 0.9460 +374659 728524 0.4970 +374659 729528 0.4380 +374659 100287482 0.6010 +374659 100505478 0.6430 +374659 100526842 0.7690 +374659 100996746 0.4970 +374659 101929983 0.4380 +374659 105180390 0.4970 +374659 105180391 0.4970 +374768 378807 0.5080 +374768 387712 0.4890 +374768 389320 0.5270 +374786 441150 0.4470 +374786 100532724 0.5460 +374819 442590 0.6080 +374819 642799 0.4760 +374819 728888 0.4760 +374819 100131980 0.4060 +374819 100271927 0.4010 +374819 100288332 0.4760 +374819 104909134 0.4800 +374872 100874261 0.5710 +374875 574537 0.6810 +374877 100129271 0.4480 +374877 100289678 0.4800 +374882 401827 0.4100 +374887 100289635 0.4480 +374897 388533 0.9520 +374897 388698 0.5150 +374897 653499 0.4940 +374899 374900 0.6690 +374899 389170 0.4220 +374907 394263 0.4050 +374907 727897 0.4090 +374918 386672 0.4180 +374918 386676 0.4470 +374918 386678 0.4040 +374918 386682 0.4180 +374918 387695 0.5340 +374920 100131755 0.4230 +374928 388536 0.4040 +374928 388566 0.4420 +374928 654364 0.4370 +374973 390038 0.5300 +374973 401565 0.5120 +374973 494188 0.4480 +374973 644890 0.4670 +374973 645432 0.4890 +374973 728637 0.4550 +374977 388633 0.4340 +374977 399671 0.4640 +374977 100507421 0.4150 +375033 440695 0.4040 +375035 445815 0.4780 +375061 440730 0.4230 +375189 387082 0.4050 +375189 387521 0.4800 +375189 392862 0.5380 +375189 440093 0.4490 +375189 440686 0.4490 +375189 442721 0.5120 +375189 445582 0.4830 +375189 642489 0.5820 +375189 653269 0.4830 +375189 653604 0.4490 +375189 653857 0.5480 +375189 728378 0.5240 +375189 100302736 0.4930 +375189 100529144 0.4800 +375190 389177 0.4020 +375190 647042 0.4320 +375248 400986 0.9990 +375248 100129924 0.6520 +375248 100287238 0.4470 +375287 440073 0.4820 +375298 387712 0.6370 +375298 388939 0.8050 +375298 653308 0.4020 +375298 768206 0.8000 +375307 402117 0.5630 +375307 646851 0.6100 +375307 727764 0.4610 +375307 100130771 0.4980 +375323 388135 0.5130 +375323 729956 0.4850 +375341 441869 0.4790 +375346 389125 0.7110 +375387 376132 0.4710 +375387 390205 0.4790 +375387 474354 0.4540 +375519 100126572 0.7520 +375567 388336 0.6060 +375567 402117 0.5860 +375567 440829 0.5580 +375567 729665 0.5980 +375567 729956 0.6160 +375567 729993 0.5620 +375567 100130988 0.4160 +375593 389658 0.5400 +375593 494197 0.4070 +375593 100271927 0.4450 +375611 388551 0.5360 +375611 389207 0.5440 +375611 405754 0.5070 +375611 494513 0.5750 +375611 654231 0.8960 +375612 388135 0.4500 +375686 389320 0.4980 +375704 399814 0.4610 +375743 653073 0.4140 +375759 493901 0.4440 +375759 646892 0.4070 +375775 391013 0.6500 +375775 100137049 0.7490 +375790 394263 0.4060 +375790 729920 0.4190 +376132 389816 0.6990 +376132 440699 0.4480 +376132 645191 0.4440 +376267 387849 0.8840 +376267 474382 0.4230 +376497 389434 0.4660 +377007 401265 0.4170 +377630 387893 0.4420 +377630 392188 0.4060 +377630 392197 0.6810 +377630 401447 0.4040 +377630 645402 0.4210 +377630 645836 0.4060 +377630 728373 0.7750 +377630 728386 0.4070 +377630 100287144 0.4070 +377630 100287178 0.4660 +377630 100287205 0.4040 +377630 100287238 0.4040 +377630 100287327 0.4060 +377630 100287364 0.4040 +377630 100287404 0.4060 +377630 100287441 0.4220 +377630 100287478 0.4040 +377630 100287513 0.4490 +377841 654364 0.6850 +377841 692312 0.5810 +377841 100526794 0.7080 +377841 102157402 0.6500 +378708 387103 0.9990 +378708 387893 0.4160 +378708 401541 0.9960 +378708 440093 0.6840 +378708 440686 0.6840 +378708 548593 0.6710 +378708 554313 0.8120 +378708 653604 0.6840 +378708 100526739 0.4160 +378807 100130348 0.9400 +378884 390616 0.4070 +378925 401934 0.5060 +378925 440956 0.4520 +378948 378949 0.8020 +378948 378950 0.8020 +378948 390748 0.4030 +378948 642659 0.4660 +378948 728132 0.7260 +378948 728137 0.4260 +378948 728395 0.7210 +378948 728403 0.5860 +378949 378950 0.8020 +378949 390748 0.4050 +378949 442862 0.7280 +378949 442867 0.8180 +378949 442868 0.8180 +378949 642659 0.4670 +378949 728403 0.4890 +378950 378951 0.4440 +378950 390748 0.4060 +378950 642659 0.4670 +378950 728395 0.5920 +378950 728403 0.7220 +378951 442862 0.4350 +378951 642659 0.4550 +378951 728132 0.6740 +378951 728395 0.5880 +386653 388698 0.6550 +386672 386674 0.5390 +386672 386675 0.8660 +386672 386676 0.7810 +386672 386677 0.6730 +386672 386678 0.7360 +386672 386679 0.5940 +386672 386680 0.7270 +386672 386681 0.7610 +386672 386682 0.6810 +386672 386685 0.6520 +386672 730755 0.4500 +386674 386675 0.5360 +386674 386676 0.4620 +386674 386677 0.5470 +386674 386678 0.4710 +386674 386679 0.4720 +386674 386680 0.5410 +386674 386681 0.4670 +386674 386682 0.4730 +386674 386685 0.4780 +386674 728118 0.4180 +386675 386676 0.8840 +386675 386677 0.7800 +386675 386678 0.9990 +386675 386679 0.6550 +386675 386680 0.7690 +386675 386681 0.7470 +386675 386682 0.6560 +386675 386683 0.6370 +386675 386685 0.8670 +386675 730755 0.4050 +386676 386677 0.7140 +386676 386678 0.8690 +386676 386679 0.5740 +386676 386680 0.8670 +386676 386681 0.8940 +386676 386682 0.7370 +386676 386685 0.7230 +386676 730755 0.5060 +386677 386678 0.6630 +386677 386679 0.4830 +386677 386680 0.8650 +386677 386681 0.5930 +386677 386682 0.7840 +386677 386685 0.6670 +386677 387264 0.6580 +386677 440023 0.4240 +386677 441581 0.5230 +386678 386679 0.6550 +386678 386680 0.6630 +386678 386681 0.7610 +386678 386682 0.6610 +386678 386685 0.8990 +386678 389123 0.4440 +386678 389124 0.4180 +386678 728224 0.4700 +386678 730755 0.4470 +386679 386680 0.5090 +386679 386681 0.5080 +386679 386682 0.6670 +386679 386685 0.5770 +386680 386681 0.8070 +386680 386682 0.7010 +386680 386685 0.5930 +386680 730755 0.4540 +386681 386682 0.5560 +386681 386683 0.7850 +386681 386684 0.5050 +386681 386685 0.6780 +386682 386685 0.5880 +386682 730755 0.4740 +386683 386684 0.5010 +386683 390036 0.5220 +386683 390063 0.5830 +386683 390064 0.5930 +386683 390664 0.4470 +386683 392391 0.6050 +386683 653240 0.5700 +387032 100101467 0.4510 +387082 389336 0.4190 +387082 493861 0.9230 +387082 653437 0.5490 +387103 401541 0.9940 +387103 440093 0.5890 +387103 440686 0.5900 +387103 554313 0.8120 +387103 653604 0.5890 +387103 728621 0.4090 +387103 100526739 0.5850 +387104 553158 0.4020 +387129 387338 0.4240 +387129 387712 0.4390 +387129 390999 0.5600 +387129 391002 0.5600 +387129 400735 0.5600 +387129 400736 0.5600 +387129 440560 0.5600 +387129 440561 0.5600 +387129 441873 0.5600 +387129 594857 0.9990 +387129 641776 0.6590 +387129 643909 0.6590 +387129 645051 0.5980 +387129 645073 0.5980 +387129 645359 0.5600 +387129 653619 0.5600 +387129 692312 0.5010 +387129 728524 0.6590 +387129 729396 0.5980 +387129 729422 0.5980 +387129 729428 0.5980 +387129 729431 0.5980 +387129 729442 0.5980 +387129 729447 0.5980 +387129 729528 0.5600 +387129 100008586 0.5980 +387129 100128731 0.4470 +387129 100132399 0.5980 +387129 100287482 0.6860 +387129 100526842 0.8500 +387129 100529097 0.7220 +387129 100529239 0.8230 +387129 100996746 0.6590 +387129 101929983 0.5600 +387129 102724473 0.5980 +387129 104909134 0.4650 +387129 105180390 0.6590 +387129 105180391 0.6590 +387129 114483834 0.4940 +387263 389677 0.4430 +387263 391356 0.4190 +387264 387266 0.4340 +387264 402778 0.4540 +387264 439915 0.7310 +387264 440021 0.5320 +387264 440023 0.4290 +387267 388818 0.5710 +387267 439915 0.6540 +387267 440021 0.7000 +387267 440023 0.5000 +387267 440050 0.4910 +387267 440051 0.6740 +387267 643803 0.5710 +387267 728255 0.5970 +387267 100131902 0.4760 +387267 112441428 0.6000 +387273 390538 0.4470 +387273 391189 0.4750 +387273 439915 0.4090 +387273 440050 0.7520 +387273 440051 0.4110 +387273 441933 0.5360 +387273 645974 0.5440 +387273 653437 0.5110 +387332 391742 0.4100 +387332 391746 0.4100 +387332 391747 0.4100 +387332 548644 0.4690 +387332 646066 0.4100 +387332 646103 0.4100 +387332 728340 0.4850 +387332 100125288 0.4360 +387332 100129669 0.5170 +387332 102723526 0.4100 +387332 112488736 0.4100 +387332 112488737 0.4100 +387332 112488738 0.4100 +387332 112488739 0.4100 +387332 112488740 0.4100 +387332 112488745 0.4100 +387332 112488746 0.4100 +387332 112488747 0.4100 +387338 127898561 0.8520 +387509 388591 0.4620 +387521 387522 0.9030 +387521 391013 0.6520 +387521 100137049 0.6500 +387522 391013 0.6670 +387522 100137049 0.7090 +387597 100506658 0.6600 +387601 646000 0.4480 +387601 728661 0.4460 +387680 100287171 0.9940 +387700 651746 0.4170 +387700 100144748 0.4730 +387707 388333 0.5050 +387707 493901 0.5700 +387707 646892 0.5080 +387707 647286 0.4780 +387707 100132916 0.4460 +387712 441531 0.9580 +387712 729020 0.4590 +387712 100287482 0.4610 +387712 100505478 0.4350 +387712 100526842 0.4030 +387718 441476 0.7410 +387718 100129520 0.4950 +387718 100132015 0.4120 +387723 100129515 0.4350 +387723 100505989 0.6210 +387723 100506374 0.7690 +387723 101927367 0.6010 +387723 101928677 0.4310 +387723 107984345 0.5910 +387723 110806279 0.4490 +387723 110806296 0.7690 +387723 110806299 0.4310 +387723 112163659 0.5700 +387723 112441437 0.5700 +387723 112441438 0.5700 +387723 113523638 0.5970 +387723 114515518 0.7130 +387733 402778 0.4660 +387733 439996 0.4830 +387763 730005 0.5120 +387775 390883 0.4150 +387775 391190 0.5180 +387778 643376 0.4150 +387787 388820 0.7160 +387787 388962 0.6690 +387836 100431172 0.9990 +387837 388591 0.4280 +387837 388611 0.4260 +387882 647024 0.4680 +387882 100131897 0.4070 +387885 440804 0.4860 +387885 100129278 0.4630 +387890 641649 0.6350 +387890 642515 0.5470 +387890 646658 0.5930 +387893 440093 0.5890 +387893 440686 0.5890 +387893 474382 0.4670 +387893 554313 0.9150 +387893 653604 0.9730 +387911 100128071 0.5820 +387914 100529097 0.4710 +387990 401505 0.5490 +387990 440574 0.5750 +387990 100132963 0.5820 +387990 100188893 0.5400 +387990 100505993 0.5970 +387990 100506144 0.5270 +388021 390648 0.4800 +388021 390649 0.5700 +388021 400258 0.4030 +388021 641649 0.4040 +388021 643965 0.5300 +388125 390980 0.4030 +388125 392636 0.6000 +388135 440073 0.6620 +388135 642938 0.7150 +388135 100528020 0.6000 +388228 401190 0.4450 +388272 442319 0.5710 +388284 652968 0.5190 +388333 414059 0.4320 +388333 493901 0.5400 +388333 643664 0.5060 +388333 646892 0.5060 +388333 647286 0.4480 +388333 100130933 0.4040 +388333 100132916 0.4320 +388333 100505591 0.4460 +388333 101060321 0.4470 +388335 643904 0.5260 +388335 100505724 0.5420 +388336 402117 0.6360 +388336 440829 0.5640 +388336 644070 0.5690 +388336 646960 0.5550 +388336 729956 0.6470 +388336 729993 0.6070 +388364 653808 0.5310 +388381 100505724 0.4330 +388381 101060351 0.4340 +388419 390437 0.5110 +388419 100131439 0.4180 +388468 404785 0.6010 +388468 439915 0.4030 +388468 440051 0.4050 +388468 643664 0.4480 +388468 653240 0.4780 +388468 653489 0.4160 +388468 728224 0.4770 +388468 100132386 0.4300 +388468 100287441 0.6030 +388468 100293516 0.4630 +388468 102724631 0.5020 +388468 112267897 0.5720 +388523 441054 0.5020 +388531 401190 0.9550 +388531 431704 0.4980 +388531 440435 0.4770 +388533 388698 0.6630 +388533 448834 0.4590 +388533 653499 0.6190 +388533 101059915 0.4460 +388536 400720 0.4770 +388551 389207 0.4970 +388553 100125288 0.5980 +388564 391365 0.5710 +388581 389941 0.5840 +388585 441478 0.7390 +388588 401399 0.4300 +388610 647024 0.4340 +388611 414149 0.4240 +388611 643669 0.5420 +388633 389177 0.5310 +388633 440829 0.5800 +388633 548645 0.4200 +388633 552891 0.4200 +388677 653464 0.5640 +388677 653820 0.4070 +388677 100132406 0.4310 +388677 100996763 0.4100 +388677 101060226 0.6680 +388695 653583 0.5120 +388697 448834 0.6590 +388697 653145 0.4800 +388698 414325 0.4720 +388698 440854 0.6130 +388698 448834 0.6660 +388698 100129271 0.5910 +388698 100289462 0.4430 +388698 100506658 0.4270 +388701 389320 0.5740 +388701 389799 0.8080 +388701 414157 0.6510 +388701 440585 0.8010 +388701 730112 0.8010 +388701 100128569 0.5070 +388722 101928147 0.5910 +388743 641700 0.4190 +388753 400916 0.5740 +388753 401262 0.4080 +388753 440567 0.8920 +388753 493753 0.7540 +388753 613227 0.4020 +388753 100131801 0.6810 +388753 100272147 0.5660 +388753 100303755 0.7080 +388753 100532726 0.4900 +388753 105372267 0.4420 +388761 391196 0.5110 +388761 401427 0.4990 +388761 441933 0.5440 +388789 729515 0.4110 +388795 100132015 0.5060 +388818 643803 0.6840 +388818 643812 0.8590 +388818 728255 0.6770 +388818 100131902 0.8590 +388818 100505753 0.4710 +388818 100533177 0.4130 +388818 112441428 0.7720 +388886 100037417 0.5420 +388939 768206 0.8320 +388946 440730 0.5070 +388946 728568 0.4730 +388951 389761 0.5090 +388951 494197 0.4120 +388951 653282 0.4440 +388951 728036 0.4540 +388951 728042 0.4560 +388951 728049 0.4450 +388951 728062 0.4440 +388951 728072 0.4460 +388951 728082 0.4550 +388951 728090 0.4550 +388951 728096 0.4340 +388951 100507170 0.4320 +388962 552900 0.9940 +388962 644096 0.4130 +388962 654483 0.9940 +388963 645811 0.6550 +388963 647087 0.6200 +388963 728310 0.5710 +388963 100287898 0.6040 +388969 100131017 0.4800 +388969 100271927 0.4790 +389015 100289462 0.4910 +389058 494143 0.5850 +389075 646480 0.4130 +389114 729085 0.6060 +389123 729422 0.4310 +389123 100132399 0.4120 +389124 401024 0.4200 +389124 404037 0.5570 +389124 440955 0.7120 +389125 442721 0.4400 +389151 392197 0.4470 +389151 414325 0.4080 +389151 441328 0.5940 +389151 503841 0.4880 +389151 645402 0.4790 +389152 441328 0.5290 +389152 503841 0.4410 +389152 645402 0.4180 +389161 399949 0.5210 +389161 653275 0.5070 +389161 100287718 0.5450 +389170 728343 0.4010 +389177 401024 0.7040 +389177 100130519 0.4700 +389197 122513141 0.4200 +389203 100303755 0.4550 +389207 494513 0.7930 +389207 643226 0.8400 +389257 392843 0.4740 +389257 653567 0.4980 +389257 728229 0.5050 +389320 401207 0.4520 +389320 100127206 0.6070 +389333 641700 0.4020 +389333 111064649 0.5710 +389337 445328 0.5210 +389337 100271715 0.4020 +389376 653509 0.6320 +389376 729238 0.5150 +389383 399967 0.4480 +389383 100169851 0.5240 +389384 399888 0.4180 +389384 441925 0.4760 +389384 729442 0.5710 +389384 729475 0.4100 +389396 653550 0.4160 +389396 729264 0.4160 +389396 102724101 0.4180 +389396 102724127 0.4180 +389434 405753 0.9520 +389434 606495 0.5610 +389524 390980 0.4340 +389524 554282 0.4140 +389524 653361 0.7790 +389524 653464 0.4180 +389524 653820 0.4080 +389541 652968 0.6750 +389541 729438 0.6240 +389541 729991 0.5580 +389549 390259 0.4450 +389558 404636 0.4360 +389610 401447 0.4470 +389610 100170229 0.5990 +389643 440712 0.4590 +389643 441457 0.6260 +389668 402415 0.4350 +389730 100131980 0.5990 +389730 100287482 0.6080 +389761 494197 0.5320 +389761 653282 0.5070 +389761 728036 0.5070 +389761 728042 0.5070 +389761 728049 0.5070 +389761 728062 0.5070 +389761 728072 0.5070 +389761 728075 0.4050 +389761 728082 0.5070 +389761 728090 0.5070 +389761 728096 0.5070 +389761 100507170 0.5070 +389762 390064 0.4040 +389762 392391 0.4070 +389799 440585 0.8030 +389799 730112 0.8010 +389812 392399 0.6820 +389816 390205 0.5180 +389816 440699 0.5020 +389816 474354 0.4790 +389827 101929726 0.9610 +389856 101060200 0.4040 +389903 441525 0.5010 +389903 541466 0.5060 +389903 548313 0.4460 +389903 653220 0.4120 +389903 727837 0.5050 +389903 728075 0.6360 +389903 728695 0.4100 +389903 728712 0.6340 +389903 729447 0.4800 +389941 390664 0.4650 +390031 390033 0.5430 +390031 441584 0.5430 +390031 642843 0.7680 +390033 441584 0.5430 +390033 642843 0.7680 +390038 391196 0.4990 +390038 401427 0.4990 +390038 728458 0.4300 +390038 101060233 0.6840 +390054 730130 0.4800 +390058 390059 0.9990 +390058 390061 0.7850 +390058 390063 0.8020 +390058 390064 0.9990 +390058 390066 0.7680 +390058 728255 0.4420 +390059 390061 0.9990 +390059 390063 0.9930 +390059 390064 0.9990 +390059 390066 0.9350 +390059 390082 0.5100 +390059 390155 0.4990 +390059 390157 0.4990 +390059 390275 0.4990 +390059 390892 0.4990 +390059 391196 0.5210 +390059 401427 0.5190 +390059 442184 0.5470 +390061 390063 0.5440 +390061 390064 0.7880 +390061 390066 0.6570 +390061 728780 0.4640 +390063 390064 0.9990 +390063 390066 0.9990 +390063 390664 0.4370 +390064 390066 0.9990 +390064 390664 0.4470 +390064 401551 0.4920 +390075 440563 0.4750 +390075 649330 0.4750 +390079 390081 0.8520 +390079 390082 0.4760 +390081 390082 0.6320 +390081 728927 0.4850 +390081 730291 0.4680 +390082 390155 0.5290 +390082 390157 0.5050 +390082 390275 0.5020 +390082 390892 0.5130 +390082 391196 0.4990 +390082 401427 0.4990 +390082 442184 0.5170 +390083 439915 0.4460 +390083 440050 0.5150 +390083 440051 0.4470 +390083 728299 0.6210 +390093 391196 0.4990 +390093 401427 0.5150 +390093 730130 0.4750 +390142 390790 0.4470 +390144 642446 0.5990 +390148 399947 0.5070 +390152 647310 0.5060 +390152 728194 0.4800 +390155 390157 0.5430 +390155 390275 0.5210 +390155 390892 0.5370 +390155 391196 0.5220 +390155 401427 0.5210 +390155 442184 0.5390 +390157 390275 0.5100 +390157 390892 0.5370 +390157 391196 0.5580 +390157 401427 0.5160 +390157 442184 0.5360 +390174 391196 0.5250 +390174 401427 0.5360 +390174 728194 0.4470 +390181 392843 0.4250 +390190 390191 0.7450 +390195 390940 0.4760 +390197 390927 0.4210 +390197 554251 0.4520 +390197 653404 0.4800 +390199 400720 0.5020 +390205 645191 0.4180 +390205 646658 0.4330 +390212 653519 0.5080 +390245 440093 0.4160 +390245 440686 0.4160 +390245 653604 0.4160 +390245 653657 0.4360 +390261 728194 0.5070 +390264 390265 0.7800 +390264 391196 0.5400 +390264 401427 0.5110 +390265 391196 0.5490 +390265 401427 0.5330 +390271 391196 0.5130 +390271 401427 0.5250 +390275 390892 0.5140 +390275 391196 0.5110 +390275 401427 0.5120 +390275 442184 0.5090 +390313 654790 0.4030 +390327 401565 0.5740 +390429 441670 0.4090 +390431 441670 0.4200 +390437 729330 0.4240 +390445 400120 0.4450 +390538 727832 0.4490 +390595 100533496 0.4770 +390598 100526835 0.4490 +390637 100130742 0.6650 +390648 400258 0.4790 +390649 400258 0.5440 +390664 392391 0.4470 +390667 401258 0.5010 +390714 100423062 0.8340 +390714 102723407 0.5900 +390748 642843 0.4400 +390748 100529063 0.9180 +390883 100529063 0.5050 +390892 391196 0.5220 +390892 401427 0.5170 +390892 442184 0.5320 +390927 442197 0.4180 +390927 554251 0.5000 +390927 653404 0.5100 +390927 727857 0.4530 +390940 399967 0.6460 +390940 399968 0.5940 +390940 646627 0.4930 +390940 100169851 0.6970 +390940 101928108 0.7170 +390999 391002 0.4160 +390999 401067 0.4430 +390999 442247 0.4630 +390999 641776 0.4930 +390999 643909 0.4930 +390999 645051 0.4480 +390999 645073 0.4480 +390999 728524 0.4930 +390999 729396 0.4480 +390999 729422 0.4480 +390999 729428 0.4480 +390999 729431 0.4480 +390999 729442 0.4480 +390999 729447 0.4480 +390999 729528 0.4400 +390999 100008586 0.4480 +390999 100132399 0.4480 +390999 100287482 0.5390 +390999 100288687 0.4010 +390999 100505478 0.5600 +390999 100526842 0.5800 +390999 100529097 0.5520 +390999 100529239 0.5690 +390999 100996746 0.4930 +390999 102724473 0.4480 +390999 105180390 0.4930 +390999 105180391 0.4930 +391002 400735 0.4010 +391002 641776 0.4930 +391002 643909 0.4930 +391002 645051 0.4740 +391002 645073 0.4760 +391002 728524 0.4930 +391002 729396 0.4480 +391002 729422 0.4820 +391002 729428 0.4740 +391002 729431 0.4600 +391002 729442 0.4480 +391002 729447 0.4820 +391002 100008586 0.4810 +391002 100132399 0.4820 +391002 100287482 0.5390 +391002 100505478 0.5600 +391002 100526842 0.5800 +391002 100529097 0.5520 +391002 100529239 0.5690 +391002 100996746 0.4930 +391002 102724473 0.4480 +391002 105180390 0.4930 +391002 105180391 0.4930 +391003 440563 0.5240 +391003 649330 0.5220 +391003 728661 0.4740 +391013 100131439 0.4350 +391059 391114 0.4090 +391059 441273 0.4160 +391107 401827 0.5120 +391109 401827 0.4730 +391114 400757 0.4460 +391123 414152 0.4180 +391123 574414 0.5050 +391189 439915 0.4180 +391189 440050 0.4800 +391189 440051 0.4180 +391190 391192 0.4450 +391194 391196 0.5310 +391194 401427 0.5150 +391194 728255 0.5270 +391195 644591 0.4360 +391195 727832 0.4740 +391196 392138 0.5120 +391196 401427 0.5150 +391196 402317 0.5080 +391196 442038 0.4470 +391196 442184 0.5430 +391196 442185 0.5090 +391196 442186 0.5300 +391196 442191 0.5140 +391211 403244 0.6490 +391253 392399 0.6240 +391253 399968 0.4380 +391742 391746 0.5440 +391742 391747 0.5440 +391742 404672 0.5940 +391742 646066 0.5440 +391742 646103 0.5440 +391742 728075 0.6200 +391742 102723526 0.5440 +391742 112488736 0.5440 +391742 112488737 0.5440 +391742 112488738 0.5440 +391742 112488739 0.5440 +391742 112488740 0.5440 +391742 112488745 0.5440 +391742 112488746 0.5440 +391742 112488747 0.5440 +391746 391747 0.5430 +391746 404672 0.5940 +391746 646066 0.5430 +391746 646103 0.5430 +391746 728075 0.6540 +391746 102723526 0.5440 +391746 112488736 0.5430 +391746 112488737 0.5430 +391746 112488738 0.5430 +391746 112488739 0.5440 +391746 112488740 0.5450 +391746 112488745 0.5430 +391746 112488746 0.5440 +391746 112488747 0.5430 +391747 404672 0.5940 +391747 646066 0.5430 +391747 646103 0.5430 +391747 728075 0.6540 +391747 102723526 0.5440 +391747 112488736 0.5430 +391747 112488737 0.5430 +391747 112488738 0.5430 +391747 112488739 0.5440 +391747 112488740 0.5450 +391747 112488745 0.5430 +391747 112488746 0.5440 +391747 112488747 0.5430 +391769 474381 0.6750 +391769 474382 0.6920 +391769 554313 0.9350 +391769 653657 0.5170 +391769 100288687 0.4700 +392138 401427 0.5120 +392188 401447 0.4040 +392188 503841 0.4080 +392188 645402 0.4210 +392188 645836 0.4090 +392188 728373 0.4070 +392188 728386 0.4160 +392188 100287144 0.4250 +392188 100287178 0.4040 +392188 100287205 0.4230 +392188 100287238 0.4040 +392188 100287327 0.4040 +392188 100287364 0.4090 +392188 100287404 0.4040 +392188 100287441 0.4040 +392188 100287478 0.4040 +392188 100287513 0.4180 +392197 441328 0.7200 +392197 503841 0.5050 +392197 728373 0.6280 +392197 729627 0.4460 +392197 100131608 0.4460 +392197 100133251 0.4460 +392307 111064649 0.4160 +392391 414301 0.4110 +392392 400720 0.4960 +392399 401562 0.4610 +392399 402381 0.4380 +392399 414332 0.7590 +392399 493901 0.4480 +392465 497189 0.5090 +392517 402569 0.4890 +392517 728343 0.5590 +392517 100996928 0.6250 +392517 101669762 0.4370 +392843 643641 0.4220 +392843 100289678 0.4770 +392843 100527949 0.5250 +394263 727897 0.8370 +399512 401612 0.6130 +399512 642843 0.4850 +399671 641371 0.5880 +399671 646658 0.4290 +399687 541468 0.7460 +399687 105375355 0.4220 +399814 728537 0.8150 +399818 728464 0.5980 +399818 751071 0.7170 +399818 110599564 0.7340 +399818 110599583 0.4160 +399823 100130274 0.4140 +399888 729442 0.4460 +399888 100132399 0.4460 +399888 100507607 0.4120 +399939 729384 0.4410 +399947 399949 0.4300 +399949 401551 0.4830 +399949 100287718 0.5440 +399949 102724536 0.4330 +399967 399968 0.8260 +399967 440163 0.5080 +399967 100169851 0.8470 +399967 101928108 0.6970 +399968 100169851 0.8220 +399968 101928108 0.6440 +400224 100529257 0.5750 +400451 414332 0.4380 +400506 401551 0.4820 +400506 643836 0.6230 +400506 728299 0.5170 +400569 404672 0.8350 +400569 554313 0.8000 +400569 653604 0.8100 +400581 401562 0.4870 +400581 441381 0.4030 +400629 642636 0.4160 +400629 647310 0.4330 +400629 100505478 0.5710 +400668 440138 0.4810 +400713 729359 0.4660 +400735 440560 0.4410 +400735 641776 0.4930 +400735 643909 0.4930 +400735 645051 0.4980 +400735 645073 0.5060 +400735 728524 0.4930 +400735 729396 0.4480 +400735 729422 0.5090 +400735 729428 0.5010 +400735 729431 0.4670 +400735 729442 0.4630 +400735 729447 0.5050 +400735 100008586 0.5060 +400735 100132399 0.5090 +400735 100287482 0.5390 +400735 100505478 0.5600 +400735 100526842 0.5800 +400735 100529097 0.5520 +400735 100529239 0.5690 +400735 100996746 0.4930 +400735 102724473 0.4480 +400735 105180390 0.4930 +400735 105180391 0.4930 +400736 641776 0.4930 +400736 643909 0.4930 +400736 645051 0.4480 +400736 645073 0.4480 +400736 728524 0.4930 +400736 729396 0.4480 +400736 729422 0.4480 +400736 729428 0.4480 +400736 729431 0.4480 +400736 729442 0.4480 +400736 729447 0.4480 +400736 100008586 0.4480 +400736 100129128 0.5070 +400736 100132399 0.4480 +400736 100287482 0.5390 +400736 100505478 0.5600 +400736 100526842 0.5800 +400736 100529097 0.5520 +400736 100529239 0.5690 +400736 100996746 0.4930 +400736 102724473 0.4480 +400736 105180390 0.4930 +400736 105180391 0.4930 +400745 404217 0.5510 +400793 100134934 0.4750 +400797 550643 0.4470 +400818 441250 0.4310 +400818 442590 0.4830 +400818 100996763 0.4450 +400830 414325 0.5550 +400830 441250 0.4020 +400830 503841 0.5340 +400830 613209 0.4990 +400830 613210 0.4990 +400830 613211 0.7550 +400830 644414 0.7050 +400830 728358 0.5070 +400830 100133267 0.4990 +400830 100169851 0.4160 +400891 401124 0.4440 +400891 474354 0.5170 +400891 100129583 0.5390 +400891 100631383 0.5570 +400916 440574 0.8750 +400916 100272147 0.4140 +400961 654231 0.4040 +400986 100131827 0.5070 +400986 100288801 0.4400 +400986 112267897 0.4760 +401024 402573 0.4050 +401024 440955 0.4630 +401024 643677 0.4350 +401024 100130705 0.5010 +401024 107983988 0.4100 +401067 494197 0.4460 +401067 646174 0.4800 +401089 404203 0.5120 +401089 100134444 0.5710 +401097 404550 0.5020 +401097 646862 0.4020 +401115 440348 0.4180 +401115 100529209 0.4480 +401124 440836 0.4370 +401124 474354 0.4420 +401152 100130933 0.8040 +401152 100507027 0.6760 +401152 100507537 0.6840 +401190 431704 0.7240 +401190 440435 0.4510 +401207 403273 0.4480 +401207 414919 0.4500 +401207 100127206 0.5420 +401236 646658 0.4470 +401250 442194 0.4870 +401387 100288797 0.4370 +401397 440335 0.5400 +401397 550643 0.5280 +401397 100507537 0.4180 +401399 728780 0.4470 +401409 100128327 0.4450 +401427 402317 0.5270 +401427 442184 0.5120 +401427 442185 0.5130 +401427 442186 0.5210 +401427 442191 0.4990 +401447 441328 0.6610 +401447 441873 0.5190 +401447 645402 0.4080 +401447 645836 0.4040 +401447 728373 0.4040 +401447 728386 0.4040 +401447 100287144 0.4040 +401447 100287178 0.4090 +401447 100287205 0.4040 +401447 100287238 0.4040 +401447 100287327 0.4040 +401447 100287364 0.4040 +401447 100287404 0.4040 +401447 100287441 0.4090 +401447 100287478 0.4040 +401447 100287513 0.4230 +401474 100996717 0.4470 +401494 440275 0.6280 +401505 440574 0.7900 +401505 100188893 0.9990 +401505 100287932 0.4450 +401541 554313 0.8060 +401546 100287482 0.5060 +401562 414332 0.5910 +401565 441476 0.6280 +401565 100529209 0.5320 +401647 101927581 0.4960 +401665 728255 0.5160 +401666 401667 0.4870 +401934 497189 0.6980 +401934 643677 0.4880 +401992 642623 0.4450 +401992 122394733 0.4030 +402117 440829 0.5550 +402117 642968 0.5760 +402117 729956 0.6710 +402117 729993 0.5790 +402381 431707 0.9620 +402381 648791 0.4340 +402381 100526761 0.9180 +402415 444882 0.4720 +402569 653489 0.4530 +402569 729540 0.4530 +402569 100101267 0.4630 +402635 728116 0.5350 +402778 642515 0.4180 +403239 441457 0.5950 +403239 100131827 0.4030 +403239 100288801 0.5070 +403253 100132476 0.4720 +403273 653423 0.4450 +403277 403278 0.7820 +403313 100506049 0.4300 +404203 408187 0.5990 +404203 440387 0.4110 +404217 548645 0.4200 +404217 727764 0.4610 +404550 643669 0.4160 +404552 102723796 0.6260 +404636 414918 0.4460 +404636 441933 0.6100 +404636 646817 0.4160 +404636 653519 0.4250 +404672 554313 0.8170 +404672 646066 0.5940 +404672 646103 0.5940 +404672 653604 0.8260 +404672 728340 0.9430 +404672 729515 0.4840 +404672 100533467 0.5530 +404672 102723526 0.5940 +404672 112488736 0.5940 +404672 112488737 0.5940 +404672 112488738 0.5940 +404672 112488739 0.5940 +404672 112488740 0.5940 +404672 112488745 0.5940 +404672 112488746 0.5940 +404672 112488747 0.5940 +404734 729330 0.4900 +404785 441670 0.4180 +405753 642987 0.4250 +405753 653361 0.4270 +405754 653509 0.5710 +405754 729238 0.6950 +405754 100133941 0.4050 +407738 100130771 0.4030 +408187 643394 0.7290 +408187 646424 0.4530 +408263 110806279 0.5820 +414059 474384 0.4180 +414059 642778 0.5130 +414059 643664 0.4580 +414059 101060211 0.4480 +414060 642778 0.6710 +414060 642799 0.4530 +414060 101060211 0.6200 +414149 643669 0.4170 +414149 122405565 0.4360 +414189 474354 0.4490 +414189 642517 0.4680 +414189 643161 0.4800 +414189 653308 0.4480 +414189 728888 0.4130 +414189 729092 0.5310 +414189 102724488 0.4010 +414325 503614 0.4160 +414325 503618 0.8920 +414325 503841 0.9270 +414325 504180 0.7310 +414325 613209 0.5490 +414325 613210 0.4990 +414325 613211 0.5830 +414325 644414 0.6070 +414325 728358 0.8720 +414325 729627 0.4010 +414325 100133267 0.4990 +414328 729020 0.7010 +414918 644186 0.4030 +415116 497189 0.4190 +415117 594855 0.5610 +425054 442444 0.4410 +425054 100130086 0.5400 +425054 100272147 0.4180 +425054 100506164 0.4660 +431707 100526761 0.6770 +432355 111188157 0.8000 +439915 440021 0.4130 +439915 440050 0.7900 +439915 441933 0.4120 +439915 643664 0.4160 +439915 643803 0.4050 +439915 645974 0.4390 +439915 728255 0.4090 +439915 728299 0.5060 +439915 112267897 0.4880 +439996 440275 0.9020 +440021 440050 0.4780 +440023 440050 0.8600 +440023 100131902 0.4310 +440050 440051 0.8400 +440050 440353 0.4480 +440050 441933 0.4790 +440050 442444 0.4470 +440050 613037 0.5740 +440050 728299 0.5800 +440050 100132247 0.4180 +440050 100505753 0.5270 +440051 441933 0.6070 +440051 643664 0.4180 +440051 643803 0.4470 +440051 645974 0.4450 +440051 653240 0.4710 +440051 728224 0.4160 +440051 728299 0.5060 +440051 112267897 0.5130 +440073 642938 0.4300 +440073 653567 0.5090 +440073 101929469 0.4480 +440087 441161 0.4490 +440087 642475 0.5610 +440087 642799 0.4690 +440087 644139 0.4170 +440093 440686 0.8710 +440093 440689 0.8710 +440093 474381 0.5180 +440093 474382 0.4770 +440093 554313 0.9350 +440093 653604 0.8710 +440093 728378 0.5190 +440093 100170841 0.5070 +440093 100532731 0.7360 +440093 102723407 0.5930 +440093 114483833 0.8700 +440138 100128731 0.4260 +440138 100423062 0.4040 +440145 653784 0.9990 +440163 493901 0.4610 +440163 100169851 0.5450 +440295 100287178 0.6220 +440295 100287364 0.6930 +440335 550643 0.6000 +440335 100507027 0.4760 +440348 541565 0.4800 +440350 728689 0.4370 +440353 728224 0.4790 +440387 643834 0.4390 +440387 643847 0.4410 +440400 100526740 0.5400 +440498 646851 0.4380 +440503 729359 0.4680 +440560 541578 0.4160 +440560 641776 0.4930 +440560 643909 0.4930 +440560 645051 0.4720 +440560 645073 0.4720 +440560 653619 0.4010 +440560 728524 0.4930 +440560 729396 0.4480 +440560 729422 0.4720 +440560 729428 0.4720 +440560 729431 0.4600 +440560 729442 0.4480 +440560 729447 0.4730 +440560 100008586 0.4720 +440560 100129128 0.5170 +440560 100132399 0.4720 +440560 100287482 0.5390 +440560 100505478 0.5600 +440560 100526842 0.5800 +440560 100529097 0.5520 +440560 100529239 0.5690 +440560 100996746 0.4930 +440560 102724473 0.4480 +440560 105180390 0.4930 +440560 105180391 0.4930 +440561 440590 0.5400 +440561 641776 0.4930 +440561 643909 0.4930 +440561 645051 0.4480 +440561 645073 0.4480 +440561 653619 0.9370 +440561 728524 0.4930 +440561 729396 0.4480 +440561 729422 0.4480 +440561 729428 0.4480 +440561 729431 0.4480 +440561 729442 0.4480 +440561 729447 0.4480 +440561 100008586 0.4480 +440561 100132399 0.4480 +440561 100287482 0.5390 +440561 100505478 0.5600 +440561 100526842 0.5800 +440561 100529097 0.5520 +440561 100529239 0.5690 +440561 100996746 0.4930 +440561 102724473 0.4480 +440561 105180390 0.4930 +440561 105180391 0.4930 +440567 728317 0.6140 +440567 100532726 0.6860 +440574 100188893 0.5540 +440585 728621 0.4180 +440585 730112 0.8000 +440585 100129924 0.4460 +440590 653619 0.5400 +440686 440689 0.8750 +440686 474381 0.5320 +440686 474382 0.4470 +440686 653604 0.9030 +440686 728378 0.5270 +440686 100170841 0.5070 +440686 100532731 0.7800 +440686 102723407 0.5940 +440686 114483833 0.8710 +440689 554313 0.8940 +440689 653604 0.9860 +440689 723790 0.4950 +440689 100532731 0.6330 +440695 645974 0.4530 +440695 100130311 0.4470 +440804 728229 0.6200 +440804 100037417 0.4160 +440804 100129278 0.4810 +440822 100129278 0.7430 +440829 729956 0.6040 +440829 729993 0.7280 +440957 728568 0.4890 +441024 643338 0.4160 +441024 730249 0.4690 +441024 100528021 0.9000 +441027 728361 0.4170 +441027 100130519 0.4830 +441150 100532724 0.6620 +441151 643382 0.6200 +441161 645832 0.4590 +441161 100129128 0.4220 +441168 645191 0.4190 +441234 730087 0.4040 +441272 727957 0.4210 +441272 729528 0.4320 +441272 100287898 0.4450 +441273 442590 0.7840 +441273 548644 0.5970 +441273 100310812 0.6260 +441282 654364 0.4960 +441308 727800 0.4790 +441317 503841 0.5400 +441317 504180 0.5820 +441328 503841 0.5050 +441328 645402 0.7620 +441328 728373 0.4350 +441328 729627 0.5830 +441328 100131608 0.5830 +441328 100133251 0.5830 +441376 100506049 0.4480 +441381 100529241 0.4490 +441457 728318 0.5180 +441457 100288801 0.4460 +441519 441521 0.5490 +441519 541465 0.5480 +441519 541466 0.5490 +441519 728911 0.5460 +441519 100526773 0.5710 +441519 101060211 0.5430 +441519 102723631 0.6920 +441519 102723680 0.5430 +441519 102723737 0.5450 +441521 541465 0.5430 +441521 541466 0.8800 +441521 728911 0.5490 +441521 729447 0.4500 +441521 100008586 0.4160 +441521 100132399 0.4790 +441521 101060211 0.5470 +441521 102723631 0.8020 +441521 102723680 0.5810 +441521 102723737 0.7650 +441525 541578 0.5740 +441525 653220 0.4730 +441525 728712 0.9170 +441525 100129239 0.5710 +441525 100130086 0.4450 +441525 100130613 0.4780 +441525 101927685 0.4180 +441549 768239 0.6900 +441581 646962 0.4180 +441584 642843 0.7680 +441631 728116 0.4030 +441670 641455 0.5400 +441869 642987 0.4590 +441873 442247 0.5790 +441873 641776 0.4930 +441873 643909 0.4930 +441873 645051 0.4480 +441873 645073 0.4480 +441873 653192 0.5470 +441873 653657 0.6390 +441873 728524 0.4930 +441873 729396 0.4480 +441873 729422 0.4480 +441873 729428 0.4480 +441873 729431 0.4480 +441873 729442 0.4480 +441873 729447 0.4480 +441873 100008586 0.4480 +441873 100129128 0.4960 +441873 100132399 0.4480 +441873 100287482 0.5390 +441873 100505478 0.5600 +441873 100526842 0.5800 +441873 100529097 0.5520 +441873 100529239 0.5690 +441873 100996746 0.4930 +441873 102724473 0.4480 +441873 105180390 0.4930 +441873 105180391 0.4930 +441925 100528021 0.4570 +441925 110117498 0.5450 +442038 445329 0.6320 +442038 574537 0.6390 +442117 727897 0.4190 +442117 728819 0.6640 +442197 554251 0.4710 +442197 653404 0.5070 +442197 727857 0.4160 +442247 653619 0.5550 +442247 653657 0.4830 +442247 100129128 0.5580 +442247 100288687 0.4120 +442361 100288413 0.4470 +442425 644524 0.4090 +442444 100272147 0.4250 +442444 100287226 0.4020 +442590 647042 0.5070 +442590 100310812 0.5370 +442862 442867 0.9430 +442862 442868 0.9430 +442862 445372 0.4480 +442862 493829 0.6810 +445328 554282 0.4520 +445328 653820 0.4510 +445328 728833 0.4090 +445328 100101467 0.4180 +445328 100271715 0.4360 +445571 554282 0.4890 +445571 642612 0.4710 +445571 653820 0.4830 +445571 728833 0.4490 +445571 729533 0.4260 +445582 100132015 0.4150 +448831 100288687 0.9400 +448834 574414 0.4880 +448834 100129271 0.7300 +448835 493901 0.4340 +448835 100129271 0.8080 +474170 100507607 0.4290 +474344 100527949 0.7490 +474381 554313 0.9310 +474381 653604 0.5150 +474382 644186 0.5200 +474382 653604 0.6550 +474383 474384 0.8010 +493753 100131801 0.6580 +493753 100272147 0.4210 +493753 100303755 0.7720 +493860 100131378 0.4470 +493869 494143 0.9020 +493869 653361 0.6840 +493869 653689 0.7530 +493869 100506658 0.5000 +493901 646892 0.5710 +493901 647286 0.5280 +493901 100132916 0.5060 +493911 497661 0.4460 +493911 553158 0.5790 +493911 100526842 0.6040 +494118 541578 0.5130 +494118 653282 0.4340 +494118 728036 0.4340 +494118 728042 0.4340 +494118 728049 0.4310 +494118 728062 0.4340 +494118 728072 0.4330 +494118 728082 0.4340 +494118 728090 0.4340 +494118 728096 0.4310 +494118 100129239 0.5070 +494118 100130086 0.4020 +494118 100507170 0.4200 +494119 541578 0.5200 +494119 100129239 0.5110 +494119 100130086 0.4040 +494119 100131827 0.4390 +494119 100289087 0.4180 +494143 653689 0.6870 +494188 554251 0.5660 +494188 116033993 0.5070 +494197 646174 0.4760 +494197 653282 0.4330 +494197 728036 0.4330 +494197 728042 0.4330 +494197 728049 0.4310 +494197 728062 0.4330 +494197 728072 0.4320 +494197 728082 0.4330 +494197 728090 0.4330 +494197 728096 0.4310 +494197 100271927 0.4780 +494197 100507170 0.4180 +494470 645369 0.4390 +494470 652991 0.4650 +494513 643226 0.6770 +494551 642636 0.6330 +494551 644672 0.4180 +494551 645121 0.4120 +494551 646799 0.4460 +494551 728642 0.4180 +497190 644100 0.5750 +497661 553158 0.4040 +497661 100526842 0.4070 +503582 503835 0.7240 +503582 647589 0.5570 +503582 727940 0.5230 +503582 100033411 0.7380 +503582 100129128 0.5320 +503582 100288687 0.4390 +503614 503618 0.5320 +503614 503841 0.6030 +503614 504180 0.6160 +503618 503841 0.8360 +503618 504180 0.8320 +503618 728358 0.4870 +503834 503835 0.4070 +503834 647589 0.5170 +503834 727940 0.6410 +503834 100033411 0.8170 +503834 100288687 0.4180 +503835 647589 0.4390 +503835 653619 0.4170 +503835 653657 0.5330 +503835 727940 0.4480 +503841 504180 0.7460 +503841 613209 0.5210 +503841 613210 0.5160 +503841 613211 0.5160 +503841 644414 0.5770 +503841 645402 0.5240 +503841 728358 0.6920 +503841 729627 0.4780 +503841 100131608 0.5940 +503841 100133251 0.6050 +503841 100133267 0.5880 +541465 541466 0.5500 +541465 728911 0.5490 +541465 101060211 0.5430 +541465 102723631 0.5450 +541465 102723680 0.5430 +541465 102723737 0.5490 +541466 548313 0.4160 +541466 645073 0.4270 +541466 653067 0.4840 +541466 653220 0.6110 +541466 727837 0.5200 +541466 728075 0.6020 +541466 728343 0.5830 +541466 728695 0.4180 +541466 728712 0.6170 +541466 728911 0.5490 +541466 729428 0.5090 +541466 729447 0.6150 +541466 101060211 0.5470 +541466 102723547 0.4790 +541466 102723631 0.8280 +541466 102723680 0.5890 +541466 102723737 0.6850 +541578 100129239 0.6460 +541578 100130086 0.5420 +541578 100506164 0.4470 +541578 101927685 0.7200 +548313 728075 0.4710 +548313 728239 0.5240 +548313 729447 0.4640 +548313 102723547 0.4490 +548593 552900 0.4980 +548593 654483 0.4770 +548644 728340 0.5720 +550631 647174 0.5940 +550643 100507027 0.5830 +550643 100507537 0.5070 +550643 112267897 0.4450 +552900 645414 0.4040 +552900 653464 0.5060 +552900 653519 0.5340 +552900 654483 0.6560 +552900 728888 0.4180 +553158 100526842 0.5410 +554251 653404 0.5100 +554251 727857 0.4710 +554282 644019 0.4900 +554282 644974 0.4200 +554282 647135 0.5900 +554282 653464 0.5170 +554282 653820 0.9990 +554282 728340 0.4560 +554282 728833 0.6260 +554313 653604 0.9430 +554313 723790 0.9610 +554313 728378 0.5440 +554313 114483833 0.4520 +574414 100129271 0.4960 +574537 100861540 0.7610 +594857 104909134 0.5690 +613037 728224 0.4440 +613209 613210 0.6710 +613209 613211 0.9090 +613209 644414 0.5570 +613209 728358 0.5460 +613209 728957 0.6540 +613209 100133267 0.5630 +613209 100506581 0.5060 +613210 613211 0.6690 +613210 644414 0.5230 +613210 728358 0.4990 +613210 100133267 0.6780 +613211 644414 0.7610 +613211 728358 0.5390 +613211 100133267 0.5100 +613212 100127206 0.4450 +613227 101928147 0.5180 +619208 100507055 0.7020 +619208 100507607 0.5710 +619279 100130274 0.4100 +641455 642446 0.4900 +641455 643664 0.4460 +641455 653240 0.4660 +641455 653489 0.4520 +641455 728224 0.4750 +641455 100132386 0.4120 +641455 112267897 0.5530 +641649 642515 0.5530 +641649 643965 0.4220 +641649 644070 0.6170 +641700 100101467 0.4270 +641700 111064649 0.4020 +641776 645051 0.5220 +641776 645073 0.5220 +641776 645359 0.4930 +641776 653619 0.4930 +641776 728689 0.4370 +641776 729396 0.5220 +641776 729422 0.5220 +641776 729428 0.5220 +641776 729431 0.5220 +641776 729442 0.5220 +641776 729447 0.5220 +641776 729528 0.4930 +641776 100008586 0.5220 +641776 100132399 0.5220 +641776 100287482 0.5950 +641776 100505478 0.6150 +641776 100526842 0.6870 +641776 100529097 0.6470 +641776 100529239 0.6450 +641776 101929983 0.4930 +641776 102724473 0.5220 +642446 645142 0.6040 +642446 653423 0.4490 +642475 100130890 0.4470 +642475 100131187 0.4470 +642489 644591 0.4240 +642515 646658 0.5080 +642517 643161 0.5190 +642517 644054 0.4480 +642517 729092 0.4450 +642612 653781 0.4740 +642623 649137 0.4040 +642623 728927 0.4500 +642636 644186 0.4920 +642636 101928601 0.4190 +642778 729873 0.5470 +642778 101060211 0.5990 +642778 101060321 0.5480 +642843 643988 0.5170 +642938 654429 0.4050 +643008 100130933 0.4590 +643037 729967 0.6930 +643136 646960 0.4790 +643155 731220 0.4400 +643161 728130 0.5280 +643161 100507607 0.4790 +643226 645104 0.5840 +643236 100131897 0.4340 +643311 653519 0.7660 +643382 768211 0.4340 +643418 100131390 0.7950 +643641 100527949 0.4400 +643664 653240 0.5070 +643664 653489 0.4340 +643664 728224 0.5070 +643664 100130933 0.4300 +643664 100132386 0.5070 +643664 100505591 0.4490 +643664 101060321 0.4760 +643664 112267897 0.5900 +643669 100316904 0.4240 +643680 107987155 0.4460 +643803 643812 0.9120 +643803 728255 0.6860 +643803 728279 0.4870 +643803 730755 0.5320 +643803 100131902 0.8690 +643803 100505753 0.6970 +643803 100533177 0.4430 +643803 112441428 0.8220 +643812 728255 0.7040 +643812 100131902 0.8900 +643812 112441428 0.7730 +643834 643847 0.9800 +643836 729233 0.4180 +643836 729240 0.5820 +643866 728276 0.5560 +643866 100271715 0.4420 +643909 645051 0.5220 +643909 645073 0.5220 +643909 645359 0.4930 +643909 653082 0.6420 +643909 653619 0.4930 +643909 728689 0.4370 +643909 729396 0.5220 +643909 729422 0.5220 +643909 729428 0.5220 +643909 729431 0.5220 +643909 729442 0.5220 +643909 729447 0.5220 +643909 729528 0.4930 +643909 100008586 0.5220 +643909 100132399 0.5220 +643909 100287482 0.5950 +643909 100505478 0.6150 +643909 100526842 0.6870 +643909 100529097 0.6470 +643909 100529239 0.6450 +643909 101929983 0.4930 +643909 102724473 0.5220 +643965 646892 0.4470 +644019 653820 0.4830 +644019 728833 0.4490 +644019 729533 0.4270 +644070 646658 0.6430 +644070 729993 0.4740 +644096 728361 0.4750 +644096 100131801 0.4770 +644186 729475 0.4500 +644414 728358 0.5180 +644414 100133267 0.5420 +644591 653489 0.5910 +644591 727851 0.5280 +644591 729540 0.5870 +644591 729857 0.5280 +644596 653437 0.4510 +644672 645121 0.4400 +644672 100132463 0.6700 +644672 100287520 0.4210 +644672 100288814 0.8470 +644672 100506658 0.7250 +644844 728215 0.5440 +644844 729396 0.4730 +644844 100131211 0.4750 +644890 654463 0.5800 +644890 100130274 0.4470 +644974 101059953 0.4230 +644994 100505385 0.5050 +645051 645073 0.8170 +645051 645359 0.4480 +645051 653619 0.4480 +645051 728524 0.5220 +645051 729428 0.4300 +645051 729447 0.7740 +645051 729528 0.4480 +645051 100008586 0.7980 +645051 100287482 0.5300 +645051 100505478 0.5840 +645051 100526842 0.6590 +645051 100529097 0.5980 +645051 100529239 0.6560 +645051 100996746 0.5220 +645051 101929983 0.4480 +645051 105180390 0.5220 +645051 105180391 0.5220 +645073 645359 0.4480 +645073 653220 0.4810 +645073 653619 0.4480 +645073 728524 0.5220 +645073 728695 0.4180 +645073 728712 0.4380 +645073 729428 0.5600 +645073 729447 0.8470 +645073 729528 0.6650 +645073 100008586 0.9990 +645073 100287482 0.5300 +645073 100505478 0.5840 +645073 100526842 0.6590 +645073 100529097 0.5980 +645073 100529239 0.6560 +645073 100996746 0.5220 +645073 101929983 0.4480 +645073 105180390 0.5220 +645073 105180391 0.5220 +645104 100653515 0.5300 +645121 728642 0.4400 +645121 100287520 0.4030 +645142 653489 0.5980 +645142 727851 0.5350 +645142 727905 0.7200 +645142 729540 0.5930 +645142 729857 0.5360 +645359 728524 0.4930 +645359 729396 0.4480 +645359 729422 0.4480 +645359 729428 0.4480 +645359 729431 0.4480 +645359 729442 0.4480 +645359 729447 0.4480 +645359 100008586 0.4480 +645359 100132399 0.4480 +645359 100287482 0.5390 +645359 100505478 0.5600 +645359 100526842 0.5800 +645359 100529097 0.5520 +645359 100529239 0.5690 +645359 100996746 0.4930 +645359 102724473 0.4480 +645359 105180390 0.4930 +645359 105180391 0.4930 +645402 645836 0.4260 +645402 728373 0.4070 +645402 728386 0.4040 +645402 729627 0.4760 +645402 100131608 0.4770 +645402 100133251 0.4770 +645402 100287144 0.4150 +645402 100287178 0.4170 +645402 100287205 0.4040 +645402 100287238 0.4040 +645402 100287327 0.4040 +645402 100287364 0.4040 +645402 100287404 0.4040 +645402 100287441 0.4040 +645402 100287478 0.4040 +645402 100287513 0.4290 +645432 100049587 0.4150 +645432 100526794 0.4120 +645811 647087 0.5940 +645811 728310 0.5330 +645836 728373 0.4050 +645836 728386 0.4040 +645836 729240 0.5120 +645836 100287144 0.4040 +645836 100287178 0.4040 +645836 100287205 0.4210 +645836 100287238 0.4040 +645836 100287327 0.4040 +645836 100287364 0.4040 +645836 100287404 0.4190 +645836 100287441 0.4040 +645836 100287478 0.4040 +645836 100287513 0.4180 +645974 653437 0.5530 +645974 100130311 0.5430 +646000 728661 0.5440 +646066 646103 0.5430 +646066 728075 0.6540 +646066 102723526 0.5440 +646066 112488736 0.5430 +646066 112488737 0.5430 +646066 112488738 0.5430 +646066 112488739 0.5440 +646066 112488740 0.5450 +646066 112488745 0.5430 +646066 112488746 0.5440 +646066 112488747 0.5430 +646103 728075 0.6540 +646103 102723526 0.5440 +646103 112488736 0.5430 +646103 112488737 0.5430 +646103 112488738 0.5430 +646103 112488739 0.5440 +646103 112488740 0.5450 +646103 112488745 0.5430 +646103 112488746 0.5440 +646103 112488747 0.5430 +646603 100271846 0.4470 +646627 653808 0.6470 +646627 100169851 0.4200 +646627 101928108 0.4800 +646658 111216276 0.4710 +646817 100128071 0.5440 +646862 729085 0.6060 +646864 100507421 0.6080 +646892 647286 0.4790 +646892 100132916 0.4470 +646951 728116 0.4320 +646960 647286 0.4250 +646962 102723502 0.4790 +646962 102724631 0.4750 +647024 100131897 0.5960 +647042 728276 0.4240 +647087 728310 0.5070 +647135 653464 0.6390 +647135 653820 0.5890 +647135 728833 0.6900 +647135 729533 0.4110 +647219 648791 0.4470 +647219 727857 0.5320 +647219 100113407 0.4830 +647286 727857 0.5730 +647286 100130613 0.4470 +647286 100130827 0.4770 +647286 100132916 0.4310 +647310 100129520 0.4790 +647589 100033411 0.5180 +649238 728075 0.4790 +652968 729438 0.9890 +653061 728945 0.7150 +653061 730262 0.6470 +653061 102724631 0.5050 +653067 653220 0.9990 +653073 100271927 0.4800 +653082 728524 0.6210 +653082 100996746 0.5760 +653125 728276 0.4470 +653140 731220 0.4300 +653145 728113 0.4900 +653149 105371346 0.4270 +653149 112268164 0.4190 +653192 653619 0.5200 +653192 653657 0.4470 +653220 727837 0.4290 +653220 728075 0.4770 +653220 728343 0.4560 +653220 728712 0.5470 +653220 729447 0.6060 +653220 100008586 0.4400 +653220 102723547 0.4300 +653240 653489 0.4380 +653240 728224 0.6990 +653240 100132386 0.4520 +653240 100132476 0.6450 +653240 112267897 0.5820 +653247 653509 0.5150 +653247 729238 0.5470 +653275 100134938 0.4100 +653333 653464 0.4310 +653333 727909 0.5710 +653333 728957 0.4800 +653333 100142659 0.4460 +653333 101060200 0.4480 +653361 100529144 0.4930 +653404 727857 0.4460 +653464 653820 0.6510 +653464 654483 0.5020 +653464 728833 0.4590 +653464 100996763 0.5410 +653486 729877 0.4710 +653486 101060351 0.5420 +653486 101060389 0.4180 +653489 653505 0.6020 +653489 653598 0.5980 +653489 728224 0.4400 +653489 728945 0.5980 +653489 730262 0.5980 +653489 100101267 0.4260 +653489 105371242 0.5800 +653489 112267897 0.5210 +653505 727851 0.5400 +653505 729540 0.5970 +653505 729857 0.5410 +653509 727897 0.5140 +653509 729238 0.9560 +653519 654483 0.5320 +653519 727909 0.4060 +653519 728047 0.4180 +653519 728075 0.9520 +653567 728229 0.4760 +653598 727851 0.5360 +653598 729540 0.5940 +653598 729857 0.5370 +653604 723790 0.9450 +653604 728378 0.5280 +653604 100170841 0.5070 +653604 100532731 0.7800 +653604 102723407 0.5930 +653604 114483833 0.8710 +653619 653657 0.6980 +653619 728524 0.4930 +653619 729396 0.4480 +653619 729422 0.4480 +653619 729428 0.4480 +653619 729431 0.4480 +653619 729442 0.4480 +653619 729447 0.4580 +653619 100008586 0.4480 +653619 100129128 0.4680 +653619 100132399 0.4480 +653619 100287178 0.5820 +653619 100287482 0.5390 +653619 100505478 0.5600 +653619 100526842 0.5800 +653619 100529097 0.5520 +653619 100529239 0.5690 +653619 100996746 0.4930 +653619 102724473 0.4480 +653619 105180390 0.4930 +653619 105180391 0.4930 +653657 100033411 0.5020 +653657 100129128 0.4320 +653689 100037417 0.5810 +653720 100505989 0.6650 +653720 102724631 0.4760 +653820 728340 0.4730 +653820 728833 0.6400 +653820 729438 0.4500 +653820 729533 0.6360 +653820 100996763 0.4180 +654364 100287482 0.4930 +654364 100527949 0.4050 +654364 100529241 0.4800 +654364 102157402 0.7100 +654429 101929469 0.5280 +654483 102288414 0.4470 +654502 729627 0.5830 +692312 100505478 0.4700 +723790 100532731 0.4230 +727764 100128569 0.4530 +727830 728577 0.6210 +727837 728239 0.5050 +727837 728343 0.4360 +727837 729447 0.4170 +727837 102723547 0.5070 +727851 728945 0.5350 +727851 730262 0.5350 +727851 105371242 0.5150 +727897 729238 0.6490 +727897 100507679 0.5730 +727940 100033411 0.5160 +727940 100288687 0.5030 +728036 728042 0.9990 +728036 728049 0.9990 +728036 728072 0.9990 +728036 728075 0.8190 +728036 728082 0.9990 +728036 728090 0.9990 +728042 728049 0.9990 +728042 728072 0.9990 +728042 728075 0.8190 +728042 728082 0.9990 +728042 728090 0.9990 +728049 728072 0.9990 +728049 728075 0.8190 +728049 728082 0.9990 +728049 728090 0.9990 +728049 728369 0.4790 +728049 728379 0.4790 +728072 728075 0.8190 +728072 728082 0.9990 +728072 728090 0.9990 +728075 728082 0.8190 +728075 728090 0.8190 +728075 728712 0.5070 +728075 729233 0.5340 +728075 102723526 0.5440 +728075 102723547 0.5200 +728075 112488736 0.6540 +728075 112488737 0.6540 +728075 112488738 0.6540 +728082 728090 0.9990 +728118 729262 0.7680 +728194 100288695 0.4470 +728194 100310846 0.6040 +728194 107282092 0.5820 +728224 100132247 0.4460 +728224 100132386 0.4670 +728224 100132476 0.8690 +728224 112267897 0.5940 +728255 729759 0.5040 +728255 730755 0.4420 +728255 100131902 0.4920 +728255 112441428 0.6080 +728269 101927685 0.4470 +728279 729877 0.5120 +728279 730755 0.4350 +728279 100131902 0.4160 +728279 100132386 0.4630 +728279 100271715 0.5070 +728279 101060321 0.4180 +728279 101060351 0.5900 +728279 101060389 0.4780 +728317 100129239 0.6430 +728317 100130361 0.7210 +728317 100132994 0.7270 +728317 100532726 0.6230 +728317 122394733 0.5050 +728318 100505724 0.4490 +728340 728492 0.4790 +728340 728833 0.4330 +728340 729533 0.4460 +728340 100134938 0.4270 +728340 100533467 0.4600 +728340 100996758 0.4250 +728340 107983993 0.4270 +728343 729447 0.4710 +728343 100101267 0.6500 +728358 100133267 0.4990 +728361 100130519 0.5190 +728369 728373 0.9990 +728369 728379 0.9990 +728373 728379 0.9990 +728373 728386 0.4480 +728373 100287144 0.4430 +728373 100287178 0.4330 +728373 100287205 0.4330 +728373 100287238 0.4300 +728373 100287327 0.4230 +728373 100287364 0.4280 +728373 100287404 0.4320 +728373 100287441 0.4330 +728373 100287478 0.4530 +728373 100287513 0.4940 +728386 100287144 0.4680 +728386 100287178 0.4040 +728386 100287205 0.5040 +728386 100287238 0.4320 +728386 100287327 0.4230 +728386 100287364 0.4230 +728386 100287404 0.4440 +728386 100287441 0.4230 +728386 100287478 0.4640 +728386 100287513 0.4310 +728393 728400 0.9990 +728393 728405 0.9990 +728393 728419 0.9990 +728400 728405 0.9990 +728400 728419 0.9990 +728405 728419 0.9990 +728524 728689 0.4370 +728524 729396 0.5220 +728524 729422 0.5220 +728524 729428 0.5220 +728524 729431 0.5220 +728524 729442 0.5220 +728524 729447 0.5220 +728524 729528 0.4930 +728524 100008586 0.5220 +728524 100132399 0.5220 +728524 100287482 0.5950 +728524 100505478 0.6150 +728524 100526842 0.6870 +728524 100529097 0.6470 +728524 100529239 0.6450 +728524 101929983 0.4930 +728524 102724473 0.5220 +728621 101928603 0.5430 +728642 100287520 0.4210 +728689 728741 0.4200 +728689 100287482 0.5690 +728689 100507607 0.4510 +728689 100529239 0.7180 +728689 100996746 0.4370 +728689 105180390 0.4370 +728689 105180391 0.4370 +728695 729428 0.5700 +728695 729447 0.4460 +728712 729428 0.5280 +728712 729447 0.4840 +728712 100129239 0.5050 +728712 102723547 0.4770 +728833 729533 0.4780 +728911 101060211 0.5430 +728911 102723631 0.5460 +728911 102723680 0.5430 +728911 102723737 0.5430 +728945 729540 0.6910 +728945 729857 0.5360 +728945 100529063 0.5530 +729233 729240 0.9990 +729233 729246 0.9990 +729233 729250 0.9990 +729233 729528 0.4760 +729240 729246 0.9990 +729240 729250 0.9990 +729246 729250 0.9990 +729262 107282092 0.4460 +729355 102724101 0.4360 +729355 102724127 0.5600 +729396 729528 0.4480 +729396 100287482 0.5300 +729396 100505478 0.5840 +729396 100526842 0.6590 +729396 100529097 0.5980 +729396 100529239 0.6560 +729396 100996746 0.5220 +729396 101060211 0.5410 +729396 101929983 0.4480 +729396 105180390 0.5220 +729396 105180391 0.5220 +729422 729528 0.4480 +729422 100132399 0.9990 +729422 100287482 0.5300 +729422 100505478 0.5840 +729422 100526842 0.6590 +729422 100529097 0.5980 +729422 100529239 0.6560 +729422 100885850 0.4470 +729422 100996746 0.5220 +729422 101929983 0.4480 +729422 105180390 0.5220 +729422 105180391 0.5220 +729428 729447 0.5170 +729428 729528 0.4480 +729428 100008586 0.4540 +729428 100287482 0.5300 +729428 100505478 0.5840 +729428 100526842 0.6590 +729428 100529097 0.5980 +729428 100529239 0.6560 +729428 100996746 0.5220 +729428 101060211 0.4790 +729428 101929983 0.4480 +729428 105180390 0.5220 +729428 105180391 0.5220 +729431 729528 0.4480 +729431 100287482 0.5300 +729431 100505478 0.5840 +729431 100526842 0.6590 +729431 100529097 0.5980 +729431 100529239 0.6560 +729431 100996746 0.5220 +729431 101929983 0.4480 +729431 105180390 0.5220 +729431 105180391 0.5220 +729438 729533 0.4240 +729438 100133093 0.4800 +729442 729528 0.4480 +729442 100287482 0.5300 +729442 100505478 0.5840 +729442 100526842 0.6590 +729442 100529097 0.5980 +729442 100529239 0.6560 +729442 100996746 0.5220 +729442 101929983 0.4480 +729442 105180390 0.5220 +729442 105180391 0.5220 +729447 729528 0.4480 +729447 100008586 0.8480 +729447 100287482 0.5300 +729447 100505478 0.5840 +729447 100526842 0.6590 +729447 100529097 0.5980 +729447 100529239 0.6560 +729447 100996746 0.5220 +729447 101929983 0.4480 +729447 102723547 0.4800 +729447 105180390 0.5220 +729447 105180391 0.5220 +729515 751071 0.4430 +729515 101928527 0.4940 +729528 100008586 0.6970 +729528 100132399 0.4480 +729528 100287482 0.5390 +729528 100505478 0.5600 +729528 100526842 0.5800 +729528 100529097 0.5520 +729528 100529239 0.5690 +729528 100996746 0.4930 +729528 102724473 0.4480 +729528 105180390 0.4930 +729528 105180391 0.4930 +729540 730262 0.6690 +729540 100101267 0.4170 +729540 100101467 0.4350 +729540 100133093 0.5840 +729540 100288695 0.6140 +729540 105371242 0.5760 +729597 100310812 0.6330 +729759 100129515 0.5910 +729759 101928677 0.5820 +729857 730262 0.5360 +729857 100101267 0.4330 +729857 105371242 0.5160 +729873 101060211 0.4790 +729877 100130933 0.4790 +729877 100132386 0.5070 +729877 100505724 0.4470 +729920 100506049 0.4770 +729956 729993 0.6320 +729967 100271715 0.4330 +729967 100288797 0.5060 +729991 100271849 0.5580 +730005 730291 0.4940 +730051 110806279 0.5060 +730112 100128569 0.5760 +730262 100529063 0.4840 +730755 100505724 0.5070 +751071 110599583 0.4470 +768239 100132994 0.4020 +790955 109703458 0.4030 +100008586 100287482 0.5300 +100008586 100505478 0.5840 +100008586 100526842 0.6590 +100008586 100529097 0.5980 +100008586 100529239 0.6560 +100008586 100996746 0.5220 +100008586 101929983 0.4480 +100008586 105180390 0.5220 +100008586 105180391 0.5220 +100033411 100129128 0.4310 +100033411 100526794 0.4360 +100101467 100191040 0.4820 +100128731 100188893 0.4040 +100128731 100526842 0.4540 +100129128 100288687 0.5940 +100129239 100130086 0.5400 +100129239 100130361 0.6910 +100129239 100132994 0.6970 +100129239 100506164 0.4470 +100129239 101927685 0.5060 +100129250 110599588 0.5580 +100129515 100506374 0.5420 +100129515 101927367 0.5710 +100129515 107984345 0.5260 +100129515 110806279 0.4450 +100129515 110806296 0.5420 +100129515 112163659 0.5270 +100129515 112441428 0.6030 +100129515 112441437 0.7280 +100129515 112441438 0.7280 +100129515 113523638 0.5700 +100129515 114515518 0.4490 +100130361 100132994 0.9990 +100130613 100130827 0.4790 +100130771 100526794 0.4890 +100130933 100507027 0.7140 +100130933 100507537 0.7290 +100130933 101060351 0.5710 +100130933 101060389 0.4440 +100131439 101059938 0.4640 +100131439 101059953 0.4640 +100131608 100133251 0.8190 +100131755 100289635 0.5260 +100131801 100303755 0.8530 +100131827 100288801 0.6110 +100131902 100505753 0.4580 +100131902 112441428 0.7910 +100132386 100132476 0.4880 +100132386 101060321 0.4040 +100132386 101060351 0.5810 +100132386 101060389 0.4480 +100132386 112267897 0.5370 +100132399 100287482 0.5300 +100132399 100505478 0.5840 +100132399 100526842 0.6590 +100132399 100529097 0.5980 +100132399 100529239 0.6560 +100132399 100996746 0.5220 +100132399 101929983 0.4480 +100132399 102723631 0.4470 +100132399 105180390 0.5220 +100132399 105180391 0.5220 +100132406 100996763 0.5430 +100132406 101060684 0.4560 +100132463 100288814 0.8770 +100132463 100506658 0.7350 +100132963 100505993 0.7860 +100133093 100507607 0.6640 +100133093 100527943 0.5250 +100133941 100526664 0.4160 +100133941 100532731 0.6400 +100134444 101929796 0.4200 +100134934 112441434 0.4540 +100137047 100137049 0.6240 +100137047 127814297 0.4450 +100142659 101060200 0.5030 +100169851 101928108 0.7610 +100271846 100288413 0.6220 +100287144 100287178 0.4040 +100287144 100287205 0.4460 +100287144 100287238 0.4800 +100287144 100287327 0.4240 +100287144 100287364 0.4200 +100287144 100287404 0.4270 +100287144 100287441 0.4280 +100287144 100287478 0.4910 +100287144 100287513 0.4340 +100287178 100287205 0.4040 +100287178 100287238 0.4040 +100287178 100287327 0.4090 +100287178 100287364 0.4360 +100287178 100287404 0.4040 +100287178 100287441 0.4440 +100287178 100287478 0.4040 +100287178 100287513 0.5730 +100287205 100287238 0.4360 +100287205 100287327 0.4200 +100287205 100287364 0.4240 +100287205 100287404 0.4910 +100287205 100287441 0.4250 +100287205 100287478 0.4930 +100287205 100287513 0.4340 +100287238 100287327 0.4660 +100287238 100287364 0.4170 +100287238 100287404 0.4380 +100287238 100287441 0.4150 +100287238 100287478 0.4910 +100287238 100287513 0.4230 +100287327 100287364 0.4150 +100287327 100287404 0.4230 +100287327 100287441 0.4310 +100287327 100287478 0.4560 +100287327 100287513 0.4510 +100287364 100287404 0.4310 +100287364 100287441 0.4560 +100287364 100287478 0.4300 +100287364 100287513 0.4290 +100287399 102724631 0.4050 +100287404 100287441 0.4240 +100287404 100287478 0.4460 +100287404 100287513 0.4440 +100287441 100287478 0.4240 +100287441 100287513 0.4940 +100287441 100293516 0.6250 +100287478 100287513 0.4290 +100287482 100505478 0.6860 +100287482 100526842 0.7700 +100287482 100529097 0.6850 +100287482 100529239 0.7220 +100287482 100996746 0.5950 +100287482 101929983 0.5390 +100287482 102724473 0.5300 +100287482 105180390 0.5950 +100287482 105180391 0.5950 +100287482 114483834 0.4690 +100288413 105372481 0.4310 +100288687 102723407 0.5920 +100288687 102723713 0.5410 +100288695 107282092 0.5440 +100288814 100506658 0.6500 +100289678 100527949 0.4700 +100423062 102723407 0.9990 +100505478 100526842 0.8050 +100505478 100529097 0.7070 +100505478 100529239 0.7980 +100505478 100996746 0.6150 +100505478 101929983 0.5600 +100505478 102724473 0.5840 +100505478 105180390 0.6150 +100505478 105180391 0.6150 +100505478 105376230 0.8430 +100505478 114483834 0.4940 +100505591 101060321 0.4180 +100505724 101060351 0.5260 +100505724 101060389 0.4160 +100505753 100533177 0.4940 +100505989 100506374 0.4790 +100505989 101927367 0.4970 +100505989 107984345 0.4800 +100505989 110806296 0.4780 +100505989 112163659 0.4740 +100505989 112441437 0.4730 +100505989 112441438 0.4730 +100505989 113523638 0.7130 +100505989 114515518 0.6300 +100506374 101927367 0.6640 +100506374 101928677 0.5290 +100506374 107984345 0.6430 +100506374 110806279 0.5750 +100506374 110806296 0.8290 +100506374 110806299 0.5280 +100506374 112163659 0.6440 +100506374 112441428 0.4800 +100506374 112441437 0.6430 +100506374 112441438 0.6430 +100506374 113523638 0.6620 +100506374 114515518 0.7740 +100507027 100507537 0.8710 +100507537 101929726 0.5330 +100507537 107984345 0.5190 +100507537 110806279 0.4160 +100507537 112163659 0.5060 +100526794 102157402 0.6540 +100526794 107983988 0.4820 +100526842 100529097 0.8660 +100526842 100529239 0.9810 +100526842 100534599 0.4050 +100526842 100996746 0.6870 +100526842 101929983 0.5800 +100526842 102724473 0.6590 +100526842 105180390 0.6870 +100526842 105180391 0.6870 +100526842 114483834 0.5320 +100527949 100862671 0.6220 +100528021 100529257 0.5820 +100529063 127814297 0.4030 +100529097 100529239 0.8450 +100529097 100996746 0.6470 +100529097 101929983 0.5520 +100529097 102724473 0.5980 +100529097 105180390 0.6470 +100529097 105180391 0.6470 +100529239 100996746 0.6450 +100529239 101929983 0.5690 +100529239 102724473 0.6560 +100529239 105180390 0.6450 +100529239 105180391 0.6450 +100996717 101060226 0.7910 +100996746 101929983 0.4930 +100996746 102724473 0.5220 +100996758 102724488 0.4140 +100996763 101060226 0.5150 +101060211 101060321 0.4800 +101060211 102723631 0.5430 +101060211 102723680 0.5430 +101060211 102723737 0.5810 +101927367 101928677 0.5440 +101927367 107984345 0.6690 +101927367 110806279 0.5810 +101927367 110806296 0.7710 +101927367 110806299 0.5430 +101927367 112163659 0.6590 +101927367 112441428 0.5060 +101927367 112441437 0.6570 +101927367 112441438 0.6570 +101927367 113523638 0.6770 +101927367 114515518 0.5990 +101928677 107984345 0.5110 +101928677 110806279 0.4330 +101928677 110806296 0.5290 +101928677 112163659 0.5120 +101928677 112441428 0.5970 +101928677 112441437 0.7230 +101928677 112441438 0.7230 +101928677 113523638 0.5420 +101928677 114515518 0.4470 +101929726 107984345 0.5240 +101929726 110806279 0.4180 +101929726 112163659 0.5070 +101929726 127898561 0.4180 +101929983 102724473 0.4480 +101929983 105180390 0.4930 +101929983 105180391 0.4930 +102723526 112488736 0.5440 +102723526 112488737 0.5440 +102723526 112488738 0.5440 +102723526 112488739 0.5440 +102723526 112488740 0.5440 +102723526 112488745 0.5440 +102723526 112488746 0.5440 +102723526 112488747 0.5440 +102723631 102723680 0.5470 +102723631 102723737 0.5500 +102723680 102723737 0.9990 +102724473 105180390 0.5220 +102724473 105180391 0.5220 +107984345 110806279 0.7650 +107984345 110806296 0.6430 +107984345 110806299 0.5070 +107984345 112163659 0.8120 +107984345 112441428 0.4770 +107984345 112441437 0.6210 +107984345 112441438 0.6210 +107984345 113523638 0.6630 +107984345 114515518 0.5850 +109703458 122405565 0.4130 +110599588 127898561 0.5750 +110599588 128706665 0.7200 +110806279 110806296 0.5740 +110806279 110806299 0.4320 +110806279 112163659 0.7660 +110806279 112441437 0.5710 +110806279 112441438 0.5710 +110806279 113523638 0.5800 +110806279 114515518 0.4800 +110806296 110806299 0.5270 +110806296 112163659 0.6440 +110806296 112441428 0.4800 +110806296 112441437 0.6420 +110806296 112441438 0.6420 +110806296 113523638 0.6620 +110806296 114515518 0.7860 +110806299 112163659 0.5110 +110806299 112441428 0.5960 +110806299 112441437 0.7210 +110806299 112441438 0.7210 +110806299 113523638 0.5420 +110806299 114515518 0.4470 +112163659 112441428 0.4780 +112163659 112441437 0.6220 +112163659 112441438 0.6220 +112163659 113523638 0.6540 +112163659 114515518 0.5800 +112441428 112441437 0.7120 +112441428 112441438 0.7120 +112441428 113523638 0.5060 +112441428 114515518 0.4160 +112441437 112441438 0.8170 +112441437 113523638 0.6510 +112441437 114515518 0.5800 +112441438 113523638 0.6510 +112441438 114515518 0.5800 +112488736 112488737 0.5430 +112488736 112488738 0.5430 +112488736 112488739 0.5440 +112488736 112488740 0.5450 +112488736 112488745 0.5430 +112488736 112488746 0.5440 +112488736 112488747 0.5430 +112488737 112488738 0.5430 +112488737 112488739 0.5440 +112488737 112488740 0.5450 +112488737 112488745 0.5430 +112488737 112488746 0.5440 +112488737 112488747 0.5430 +112488738 112488739 0.5440 +112488738 112488740 0.5450 +112488738 112488745 0.5430 +112488738 112488746 0.5440 +112488738 112488747 0.5430 +112488739 112488740 0.5450 +112488739 112488745 0.5440 +112488739 112488746 0.5430 +112488739 112488747 0.5440 +112488740 112488745 0.5450 +112488740 112488746 0.5450 +112488740 112488747 0.5450 +112488745 112488746 0.5440 +112488745 112488747 0.5430 +112488746 112488747 0.5440 +113523638 114515518 0.5840 diff --git a/test/test_cli.py b/test/test_cli.py deleted file mode 100644 index 59c6a2f1..00000000 --- a/test/test_cli.py +++ /dev/null @@ -1,39 +0,0 @@ -import os - -import geneplexus.cli - - -class PatchGP: - avgps = None - df_convert_out = None - df_convert_out_subset = None - df_probs = None - df_edge = None - df_edge_sym = None - df_sim = None - pos_genes_in_net = None - negative_genes = None - net_genes = None - neutral_gene_info = None - mdl_weights = None - isolated_genes = None - isolated_genes_sym = None - - def dump_config(self, path): - return - - -def test_save_results(mocker, tmpdir): - mocker.patch("numpy.savetxt") - mocker.patch("geneplexus.cli.df_to_tsv") - print(f"{tmpdir=}") - geneplexus.cli.save_results( - gp=PatchGP(), - outdir=tmpdir, - zip_output=False, - overwrite=True, - skip_mdl_sim=False, - skip_sm_edgelist=False, - ) - - assert not os.path.isfile(geneplexus.cli.TMP_LOG_PATH) diff --git a/test/test_geneplexus.py b/test/test_geneplexus.py index e87a27ee..9e7b931d 100644 --- a/test/test_geneplexus.py +++ b/test/test_geneplexus.py @@ -1,7 +1,11 @@ +import os.path as osp +import shutil + import numpy as np import pytest import geneplexus +from geneplexus.exception import NoPositivesError # @pytest.mark.usefixtures("data") @@ -25,9 +29,8 @@ def gp(): @pytest.mark.parametrize("min_num_pos_cv,cross_validate", [(100, True), (100, False), (200, True)]) @pytest.mark.parametrize( "min_num_pos,excepted_error_message", - [(10, None), (200, "There were not enough positive genes to train the model with")], + [(10, None), (200, "There were not enough positive genes to train the model")], ) # current example geneset has 183 genes -# @pytest.mark.usefixtures("data") def test_run_sl( gp, caplog, @@ -45,8 +48,8 @@ def test_run_sl( lambda w, x, y, z: np.random.random((30000, 5)), ) - with pytest.raises(Exception) as excinfo: - gp.fit_and_predict( + try: + gp.fit( min_num_pos=min_num_pos, min_num_pos_cv=min_num_pos_cv, num_folds=num_folds, @@ -54,16 +57,75 @@ def test_run_sl( cross_validate=cross_validate, ) - assert excepted_error_message in str(excinfo.value) - if not cross_validate: assert "Skipping cross validation." in caplog.text - assert gp.avgps == [null_val] * num_folds - elif min_num_pos_cv > len(gp.pos_genes_in_net): + assert gp.model_info["All-Genes"].avgps == [null_val] * num_folds + elif min_num_pos_cv > len(gp.model_info["All-Genes"].pos_genes_in_net): assert "Insufficient number of positive genes" in caplog.text - assert f"{len(gp.pos_genes_in_net)} ({min_num_pos_cv} needed)" in caplog.text - assert gp.avgps == [null_val] * num_folds + assert f"{len(gp.model_info['All-Genes'].pos_genes_in_net)} ({min_num_pos_cv} needed)" in caplog.text + assert gp.model_info["All-Genes"].avgps == [null_val] * num_folds else: assert "Performing cross validation." in caplog.text - assert len(gp.avgps) == num_folds + assert len(gp.model_info["All-Genes"].avgps) == num_folds + + except NoPositivesError as e: + assert excepted_error_message in str(e) + + +@pytest.mark.parametrize("sp_res", ["Human", ["Human", "Mouse"]]) +def test_res_params( + caplog, + mocker, + sp_res, +): + # Use random 5 dimensional vectors as features to speed up test + mocker.patch( + "geneplexus.util.load_gene_features", + lambda w, x, y, z: np.random.random((30000, 5)), + ) + + gp2 = geneplexus.GenePlexus( + file_loc=pytest.DATADIR, + net_type="STRING", + features="SixSpeciesN2V", + sp_trn="Human", + sp_res=sp_res, + gsc_trn="Combined", + gsc_res="Combined", + ) + gp2.load_genes(geneplexus.util.read_gene_list(pytest.GENELIST_PATH)) + gp2.fit() + gp2.predict() + + if sp_res == "Human": + assert "Human-Combined" in gp2.model_info["All-Genes"].results + elif sp_res == ["Human", "Mouse"]: + assert "Human-Combined" in gp2.model_info["All-Genes"].results + assert "Mouse-Combined" in gp2.model_info["All-Genes"].results + + +@pytest.mark.parametrize("clust_method", ["louvain"]) # add domino back when it is finished +def test_clustering( + gp, + caplog, + mocker, + clust_method, +): + # Use random 5 dimensional vectors as features to speed up test + mocker.patch( + "geneplexus.util.load_gene_features", + lambda w, x, y, z: np.random.random((30000, 5)), + ) + extra_el = osp.join(pytest.HOMEDIR, "test", "extra_test_data", "Edgelist__Human__STRING.edg") + shutil.copy(extra_el, pytest.DATADIR) + + gp.cluster_input(clust_method=clust_method) + gp.fit() + gp.predict() + + assert "Cluster-01" in gp.model_info + + +if __name__ == "__main__": + unittest.main() diff --git a/test/test_pipeline.py b/test/test_pipeline.py index 722ec691..c715d489 100644 --- a/test/test_pipeline.py +++ b/test/test_pipeline.py @@ -1,7 +1,10 @@ +import json +import os import os.path as osp import shutil import tempfile import unittest +from collections import Counter import pandas as pd import pytest @@ -43,33 +46,13 @@ def test_load_genes(self): self.gp.load_genes(input_genes) self.assertEqual(self.gp.input_genes, input_genes) - @pytest.mark.order(2) - def test_dump_config(self): - self.gp.dump_config(self.tmpdir) - with open(osp.join(pytest.ANSWERDIR, "config.yaml")) as f1, open( - osp.join(self.tmpdir, "config.yaml"), - ) as f2: - cfg1, cfg2 = yaml.load(f1, yaml.Loader), yaml.load(f2, yaml.Loader) - for param in [ - "net_type", - "features", - "sp_trn", - "sp_res", - "gsc_trn", - "gsc_res", - "auto_download", - "log_level", - "input_genes", - ]: - self.assertEqual(cfg1[param], cfg2[param]) - @pytest.mark.order(2) def test_df_convert_out(self): df_convert_out = self.gp.df_convert_out.copy() columns = ["Original ID", "Entrez ID"] df_convert_out[columns] = df_convert_out[columns].astype(str) - path = osp.join(pytest.ANSWERDIR, "df_convert_out.tsv") + path = osp.join(pytest.ANSWERDIR, "expected_pipeline", "df_convert_out.tsv") df_convert_out_expected = pd.read_csv(path, sep="\t", dtype=str, keep_default_na=False) self.assertEqual( df_convert_out[df_convert_out_expected.columns].values.tolist(), @@ -81,11 +64,12 @@ def test_fit_and_predict(self): # First check if the gene IDs and the corresponding attributes are # aligned. Then check if the computed probabilities are close to the # expected results (up to third places) - self.gp.fit_and_predict() - df_probs = self.gp.df_probs.copy() + self.gp.fit() + self.gp.predict() + df_probs = self.gp.model_info["All-Genes"].results["Mouse-Combined"].df_probs.copy() df_probs["Entrez"] = df_probs["Entrez"].astype(str) - path = osp.join(pytest.ANSWERDIR, "df_probs.tsv") + path = osp.join(pytest.ANSWERDIR, "expected_pipeline", "All-Genes", "Mouse-Combined", "df_probs.tsv") df_probs_expected = pd.read_csv(path, sep="\t", keep_default_na=False) df_probs_expected["Entrez"] = df_probs_expected["Entrez"].astype(str) @@ -107,19 +91,20 @@ def test_fit_and_predict(self): def test_make_sim_df(self): # First check if Task and ID and Name are aligned. Then check if the computed # similarities are close to the expected results (up to third places) - df_sim_GO, weights_dict = self.gp.make_sim_dfs() + self.gp.make_sim_dfs() + df_sim = self.gp.model_info["All-Genes"].results["Mouse-Combined"].df_sim.copy() columns = ["Task", "ID", "Name"] - path = osp.join(pytest.ANSWERDIR, "df_sim.tsv") - df_sim_GO_expected = pd.read_csv(path, sep="\t", keep_default_na=False) + path = osp.join(pytest.ANSWERDIR, "expected_pipeline", "All-Genes", "Mouse-Combined", "df_sim.tsv") + df_sim_expected = pd.read_csv(path, sep="\t", keep_default_na=False) self.assertEqual( - df_sim_GO.sort_values("ID")[columns].values.tolist(), - df_sim_GO_expected.sort_values("ID")[columns].values.tolist(), + df_sim.sort_values("ID")[columns].values.tolist(), + df_sim_expected.sort_values("ID")[columns].values.tolist(), ) for sim, sim_expected in zip( - df_sim_GO.sort_values("ID")["Similarity"], - df_sim_GO_expected.sort_values("ID")["Similarity"], + df_sim.sort_values("ID")["Similarity"], + df_sim_expected.sort_values("ID")["Similarity"], ): self.assertAlmostEqual(sim, sim_expected, places=3) @@ -129,9 +114,9 @@ def test_make_small_edgelist(self): columns = ["Node1", "Node2"] with self.subTest("Edge"): - df_edge = self.gp.df_edge.copy() + df_edge = self.gp.model_info["All-Genes"].results["Mouse-Combined"].df_edge.copy() df_edge[columns] = df_edge[columns].astype(str) - path = osp.join(pytest.ANSWERDIR, "df_edge.tsv") + path = osp.join(pytest.ANSWERDIR, "expected_pipeline", "All-Genes", "Mouse-Combined", "df_edge.tsv") df_edge_expected = pd.read_csv(path, sep="\t", keep_default_na=False) df_edge_expected[columns] = df_edge_expected[columns].astype(str) self.assertEqual( @@ -145,8 +130,8 @@ def test_make_small_edgelist(self): self.assertAlmostEqual(weight, weight_expected, places=2) with self.subTest("Edge sym"): - df_edge_sym = self.gp.df_edge_sym.copy() - path = osp.join(pytest.ANSWERDIR, "df_edge_sym.tsv") + df_edge_sym = self.gp.model_info["All-Genes"].results["Mouse-Combined"].df_edge_sym.copy() + path = osp.join(pytest.ANSWERDIR, "expected_pipeline", "All-Genes", "Mouse-Combined", "df_edge_sym.tsv") df_edge_sym_expected = pd.read_csv(path, sep="\t", keep_default_na=False) self.assertEqual( df_edge_sym[columns].values.tolist(), @@ -159,19 +144,38 @@ def test_make_small_edgelist(self): self.assertAlmostEqual(weight, weight_expected, places=2) @pytest.mark.order(6) - def test_alter_validation_df(self): - self.gp.alter_validation_df() - df_convert_out_subset = self.gp.df_convert_out_subset.copy() - columns = ["Original ID", "Entrez ID"] - df_convert_out_subset[columns] = df_convert_out_subset[columns].astype(str) + def test_save_class(self): + self.gp.save_class( + output_dir=pytest.RESULTSDIR, + overwrite=True, + ) - path = osp.join(pytest.ANSWERDIR, "df_convert_out_subset.tsv") - df_convert_out_subset_expected = pd.read_csv(path, sep="\t", dtype=str, keep_default_na=False) - self.assertEqual( - df_convert_out_subset.values.tolist(), - df_convert_out_subset_expected.values.tolist(), + with self.subTest("TopLevel"): + with open(osp.join(pytest.RESULTSDIR, "top_level_config.json")) as f: + top_level_json = json.load(f) + with open(osp.join(pytest.ANSWERDIR, "expected_pipeline", "top_level_config.json")) as f: + top_level_json_expected = json.load(f) + assert Counter(list(top_level_json)) == Counter(list(top_level_json_expected)) + + with self.subTest("ModelLevel"): + with open(osp.join(pytest.RESULTSDIR, "All-Genes", "model_level_config.json")) as f: + model_level_json = json.load(f) + with open(osp.join(pytest.ANSWERDIR, "expected_pipeline", "All-Genes", "model_level_config.json")) as f: + model_level_json_expected = json.load(f) + assert Counter(list(model_level_json)) == Counter(list(model_level_json_expected)) + + @pytest.mark.order(7) + def test_cli_main(self): + os.system( + f"geneplexus -i {pytest.GENELIST_PATH} -fl {pytest.DATADIR} -od {pytest.CLIRESULTSDIR} -sr Mouse --overwrite", ) + assert os.path.isfile(osp.join(pytest.CLIRESULTSDIR, "top_level_config.json")) + + assert os.path.isfile(osp.join(pytest.CLIRESULTSDIR, "geneplexus.log")) + + assert os.path.isfile(osp.join(pytest.CLIRESULTSDIR, "All-Genes", "Mouse-Combined/df_probs.tsv")) + if __name__ == "__main__": unittest.main() diff --git a/tox.ini b/tox.ini index 5a2801d9..24a6a6f0 100644 --- a/tox.ini +++ b/tox.ini @@ -4,18 +4,18 @@ envlist = flake8 mypy doctest - python3.9 python3.10 - python3.11 - python3.12 + python3.11 + python3.12 + python3.13 isolated_build = true [gh-actions] python = - 3.9: python3.9 3.10: python3.10 - 3.11: python3.11 - 3.12: python3.12, setuptools + 3.11: python3.11 + 3.12: python3.12, setuptools + 3.13: python3.13, setuptools [testenv] setenv =